diff --git a/.gitignore b/.gitignore index 41ad8fe0..bc2da09b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ - -venv/ -venv-pygeoapi/ +.env +postgis/config.ini +python/config.ini +.DS_Store diff --git a/README.md b/README.md index 25dac822..855d8fec 100644 --- a/README.md +++ b/README.md @@ -6,71 +6,16 @@ REST API for OpenDRR data ## Setup in your local environment ### Prerequisites - - Elasticsearch 7.1.0+ running locally on port 9200 - - E.g. http://localhost:9200/ -- pygeoapi 0.7.0+ with Elasticsearch provider running locally - - E.g. http://localhost:5000/ -- GeoJSON file(s) - - Sample provided in `sample-data` directory - -### Setup - -#### Deploy stack using Docker (Recommended) - -##### Prerequisites - Docker engine installed and running -- Curl installed - -Easiest way to get the API stack setup is to use `deploy-stack.sh`. This script will deploy Elasticsearch and pygeoapi in Docker containers and load the sample data. - - $ . deploy-stack.sh - -#### Deploy stack components seperately - -Install and start Elasticsearch on localhost - - $ docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.6.2 - -> NOTE: if you have Elasticsearch installed on localhost already simply start it: - - $ elasticsearch - -Add `dataset` to pygeoapi using the Elasticsearch provider - - datasets: - economic_loss: - title: Economic Loss - description: Economic consequences aggregated - keywords: - - earthquake - links: - - type: text/html - rel: canonical - title: information - href: http://www.riskprofiler.ca/ - hreflang: en-US - extents: - spatial: - bbox: [-180,-90,180,90] - crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 - temporal: - begin: 2011-11-11 - end: null # or empty (either means open ended) - provider: - name: Elasticsearch - data: http://localhost:9200/economic_loss_agg_view - id_field: Sauid -> NOTE: a sample configuration is provided in `configuration/local.config.yml` +### Run docker-compose -Install and start pygeoapi on localhost + $ docker-compose up --build - $ . deploy-pygeoapi.sh - -Run `load_es_data.py` script passing in a property that you want to use as the `id` (e.g. Sauid) - - $ python scripts/load_es_data.py sample-data/dsra_sim6p8_cr2022_rlz_1_b0_economic_loss_agg_view.geojson Sauid +Once the stack is built (~20min) you can stop it with `Ctrl-C`. See below on how you can bring the stack back up without re-building. + +### Verify that everything is working Check Elasticsearch to ensure that the index was created @@ -81,7 +26,7 @@ You should see something similar to: health status index ... green open economic_loss_agg_view XnIFL7LNTBWupGSXJOFjig ... -Check pygeoapi to make sure that the feature collection can be acccesed +Check pygeoapi to make sure that the feature collection can be accessed $ http://localhost:5000/collections/economic_loss/items?f=json&limit=1 @@ -152,6 +97,8 @@ You should see something similar to: "timeStamp": "2020-03-25T19:21:13.065240Z" } +## Interacting with the endpoints + ### Querying pygeoapi Refer to the pygeoapi documentation for general guidance: @@ -219,3 +166,17 @@ Refer to the pygeoapi documentation for general guidance: ] } }' + +## Start/Stop the stack + +Once the stack is built you only need to re-build when there is new data. The `docker-compose-run.yml` script is an override that you can use to run the built stack - it doesn't create the python container that pulls the latest code and data from GitHub to populate the stack. + +To start the stack: + + $ docker-compose -f docker-compose-run.yml start + +To stop the stack: + + $ docker-compose -f docker-compose-run.yml stop + + diff --git a/configuration/local.config.yml b/configuration/local.config.yml deleted file mode 100644 index fe0a9949..00000000 --- a/configuration/local.config.yml +++ /dev/null @@ -1,112 +0,0 @@ -# ================================================================= -# -# Authors: Tom Kralidis -# -# Copyright (c) 2020 Tom Kralidis -# -# Permission is hereby granted, free of charge, to any person -# obtaining a copy of this software and associated documentation -# files (the "Software"), to deal in the Software without -# restriction, including without limitation the rights to use, -# copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following -# conditions: -# -# The above copyright notice and this permission notice shall be -# included in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -# OTHER DEALINGS IN THE SOFTWARE. -# -# ================================================================= - -server: - bind: - host: 0.0.0.0 - port: 5000 - url: http://localhost:5000/ - mimetype: application/json; charset=UTF-8 - encoding: utf-8 - language: en-US - # cors: true - pretty_print: true - limit: 10 - # templates: /path/to/templates - map: - url: https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png - attribution: 'Wikimedia maps | Map data © OpenStreetMap contributors' - # ogc_schemas_location: /opt/schemas.opengis.net - -logging: - level: ERROR - #logfile: /tmp/pygeoapi.log - -metadata: - identification: - title: pygeoapi default instance - description: pygeoapi provides an API to geospatial data - keywords: - - geospatial - - data - - api - keywords_type: theme - terms_of_service: null - url: http://example.org - license: - name: CC-BY 4.0 license - url: https://creativecommons.org/licenses/by/4.0/ - provider: - name: Organization Name - url: https://pygeoapi.io - contact: - name: Lastname, Firstname - position: Position Title - address: Mailing Address - city: City - stateorprovince: Administrative Area - postalcode: Zip or Postal Code - country: Country - phone: +xx-xxx-xxx-xxxx - fax: +xx-xxx-xxx-xxxx - email: you@example.org - url: Contact URL - hours: Mo-Fr 08:00-17:00 - instructions: During hours of service. Off on weekends. - role: pointOfContact - -resources: - economic_loss: - type: collection - title: Economic Loss - description: Economic consequences aggregated - keywords: - - earthquake - links: - - type: text/html - rel: canonical - title: information - href: http://www.riskprofiler.ca/ - hreflang: en-US - extents: - spatial: - bbox: [-180,-90,180,90] - crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 - temporal: - begin: 2011-11-11 - end: null # or empty (either means open ended) - provider: - name: Elasticsearch - data: http://elasticsearch:9200/dsra_sim6p8_cr2022_rlz_1_b0_economic_loss_agg_view - id_field: Sauid - - hello-world: - type: process - processor: - name: HelloWorld diff --git a/deploy-pygeoapi.sh b/deploy-pygeoapi.sh deleted file mode 100644 index 92529beb..00000000 --- a/deploy-pygeoapi.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash -m -# -*- coding: utf-8 -*- - -ROOT=$( pwd ) -OPTIND=1 - -function print_help -{ - echo ' - Deploy the application. - - Usage: - -c clean install - -h show help - ' -} - -while getopts "ch" opt; do - case ${opt} in - c) - clean=1 - ;; - \?|h) - print_help - exit 0 - ;; - esac -done - -# clean up previous cloned repo -if [ "${clean}" ]; then - echo "Starting a clean install..." - rm -r -f pygeoapi -fi - -# Stop any running process -lsof -ti:5000 | xargs kill - -if [ ! -d "$ROOT/venv" ]; then - python3 -m venv "venv" -fi -source "$ROOT/venv/bin/activate" - -cd venv -. bin/activate - -# clean up previous cloned repo -if [ "${clean}" ]; then - echo "Starting a clean install..." - rm -r -f pygeoapi -fi - -if [ ! -d "pygeoapi" ]; then - - git clone https://github.com/geopython/pygeoapi.git - cd pygeoapi - pip install -r requirements.txt - pip install -r requirements-dev.txt - pip install -r requirements-provider.txt - pip install -e . - # generate OpenAPI Document - pygeoapi generate-openapi-document -c local.config.yml > openapi.yml - -fi - -# copy local configuration -cp $ROOT/configuration/local.config.yml local.config.yml - -export PYGEOAPI_CONFIG=$(pwd)/local.config.yml -export PYGEOAPI_OPENAPI=$(pwd)/openapi.yml - -pygeoapi serve \ No newline at end of file diff --git a/deploy-stack.sh b/deploy-stack.sh deleted file mode 100644 index 009144e3..00000000 --- a/deploy-stack.sh +++ /dev/null @@ -1,92 +0,0 @@ -#!/bin/bash -m -# -*- coding: utf-8 -*- - -function check_dep { - for i in "$@"; do - command -v "$i" &> /dev/null || { - echo -e "!! Please install $i first. Aborting." >&2 - exit 1 - } - done -} - -check_dep curl git python3 pip docker - -ROOT=$( pwd ) - -# create the network -docker network create opendrr-net > /dev/null 2>&1 - -# start Elasticsearch -container_es=elasticsearch - -if [ $(docker inspect -f '{{.State.Running}}' $container_es) = "true" ]; then - printf "\nElasticsearch container running. Stopping...\n" - docker stop $container_es > /dev/null 2>&1 -fi -docker rm $container_es > /dev/null 2>&1 -printf "\nInitializing Elasticsearch container...\n\n" -docker run -d --network opendrr-net --name $container_es -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.7.1 - -spin='-\|/' -i=0 -until $(curl --output /dev/null --silent --head --fail http://localhost:9200); do - i=$(( (i+1) %4 )) - printf "\r${spin:$i:1}" - sleep .1 -done -printf "\r " - -# load sample data into Elasticsearch -if [ ! -d "$ROOT/venv" ]; then - python3 -m venv "venv" -fi -source "$ROOT/venv/bin/activate" - -printf "\nInstalling dependencies...\n" -pip install elasticsearch && - -printf "\nLoading data into Elasticsearch...\n" -python3 $ROOT/scripts/load_es_data.py $ROOT/sample-data/dsra_sim6p8_cr2022_rlz_1_b0_economic_loss_agg_view.geojson Sauid && -printf "\nData load complete!\n" - -printf "\nDeactivating virtualenv...\n" -deactivate - -# start pygeoapi -container_pygeoapi=opendrr-api-pygeoapi - -if [ $(docker inspect -f '{{.State.Running}}' $container_pygeoapi) = "true" ]; then - printf "\npygeoapi container running. Stopping...\n" - docker stop $container_pygeoapi > /dev/null 2>&1 -fi -docker rm $container_pygeoapi > /dev/null 2>&1 -printf "\nInitializing pygeoapi container...\n\n" -docker pull geopython/pygeoapi -docker run -d --network opendrr-net --name $container_pygeoapi -p 5000:80 -v $ROOT/configuration/local.config.yml:/pygeoapi/local.config.yml -it geopython/pygeoapi && - -# start Kibana -container_kibana=opendrr-api-kibana - -if [ $(docker inspect -f '{{.State.Running}}' $container_kibana) = "true" ]; then - printf "\nKibana container running. Stopping...\n" - docker stop $container_kibana > /dev/null 2>&1 -fi -docker rm $container_kibana > /dev/null 2>&1 -printf "\nInitializing Kibana container...\n\n" -docker run -d --network opendrr-net --name $container_kibana -p 5601:5601 docker.elastic.co/kibana/kibana:7.7.1 - -spin='-\|/' -i=0 -until $(curl --output /dev/null --silent --head --fail http://localhost:5601); do - i=$(( (i+1) %4 )) - printf "\r${spin:$i:1}" - sleep .1 -done -printf "\r " - -printf "\nDone!\n" -printf "\nElasticsearch: http://localhost:9200" -printf "\nIndices: http://localhost:9200/_cat/indices?v&pretty" -printf "\nKibana: http://localhost:5601" -printf "\npygeoapi: http://localhost:5000\n\n" \ No newline at end of file diff --git a/docker-compose-run.yml b/docker-compose-run.yml new file mode 100644 index 00000000..a4bc071f --- /dev/null +++ b/docker-compose-run.yml @@ -0,0 +1,61 @@ +version: "3" + +volumes: + pg-data: + +services: + + kibana-opendrr: + image: kibana:7.7.1 + + environment: + ELASTICSEARCH_HOSTS: http://elasticsearch-opendrr:9200 + + ports: + - 5601:5601 + + depends_on: + - elasticsearch-opendrr + + elasticsearch-opendrr: + image: elasticsearch:7.7.1 + + environment: + - discovery.type=single-node + + ports: + - 9200:9200 + + # pygeoapi-opendrr: + # image: geopython/pygeoapi + # build: ./pygeoapi + + # ports: + # - 5000:80 + + # depends_on: + # - elasticsearch-opendrr + + # restart: unless-stopped + + db-opendrr: + image: postgis/postgis + build: ./postgis + shm_size: 1g + + env_file: + - .env + + volumes: + - pg-data:/var/lib/postgresql + + ports: + - ${POSTGRES_PORT}:5432 + + environment: + POSTGRES_HOST_AUTH_METHOD: trust + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASS: ${POSTGRES_PASS} + POSTGRES_DB: ${DB_NAME} + + restart: on-failure diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..7141a082 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,78 @@ +version: "3" + +volumes: + pg-data: + opendrr-scripts: + +services: + + python-opendrr: + image: opendrr/python-env + build: ./python + + env_file: + - .env + + depends_on: + - db-opendrr + - elasticsearch-opendrr + + volumes: + - opendrr-scripts:/usr/src/app + + + kibana-opendrr: + image: kibana:7.7.1 + + environment: + ELASTICSEARCH_HOSTS: http://elasticsearch-opendrr:9200 + + ports: + - 5601:5601 + + depends_on: + - elasticsearch-opendrr + + elasticsearch-opendrr: + image: elasticsearch:7.7.1 + + environment: + - discovery.type=single-node + + ports: + - 9200:9200 + + pygeoapi-opendrr: + image: geopython/pygeoapi + build: ./pygeoapi + + ports: + - 5000:80 + + depends_on: + - elasticsearch-opendrr + + restart: unless-stopped + + db-opendrr: + image: postgis/postgis + build: ./postgis + shm_size: 1g + + env_file: + - .env + + volumes: + - pg-data:/var/lib/postgresql + - opendrr-scripts:/usr/src/app + + ports: + - ${POSTGRES_PORT}:5432 + + environment: + POSTGRES_HOST_AUTH_METHOD: trust + POSTGRES_USER: ${POSTGRES_USER} + POSTGRES_PASS: ${POSTGRES_PASS} + POSTGRES_DB: ${DB_NAME} + + restart: on-failure diff --git a/postgis/Dockerfile b/postgis/Dockerfile new file mode 100644 index 00000000..1bcba336 --- /dev/null +++ b/postgis/Dockerfile @@ -0,0 +1,39 @@ +# ================================================================= +# +# Author: Joost van Ulden +# +# Copyright (c) 2020 Government of Canada +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +# ================================================================= + +FROM postgis/postgis + +LABEL maintainer="Joost van Ulden " + +USER root + +COPY create_db.sh /docker-entrypoint-initdb.d/create_db.sh +COPY schema.sql /schema.sql + +RUN chmod +x /docker-entrypoint-initdb.d/create_db.sh diff --git a/postgis/create_db.sh b/postgis/create_db.sh new file mode 100644 index 00000000..ee7c4787 --- /dev/null +++ b/postgis/create_db.sh @@ -0,0 +1,40 @@ +#!/bin/bash +# ================================================================= +# +# Copyright (c) 2019 MartinHeinz +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +# ================================================================= + +set -e + +POSTGRES="psql --username ${POSTGRES_USER}" + +echo "Creating database: ${DB_NAME}" + +$POSTGRES < +# +# Copyright (c) 2020 Tom Kralidis +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +# ================================================================= + +server: + bind: + host: 0.0.0.0 + port: 5000 + url: http://localhost:5000/ + mimetype: application/json; charset=UTF-8 + encoding: utf-8 + language: en-US + cors: true + pretty_print: true + limit: 10 + # templates: /path/to/templates + map: + url: https://maps.wikimedia.org/osm-intl/{z}/{x}/{y}.png + attribution: 'Wikimedia maps | Map data © OpenStreetMap contributors' + # ogc_schemas_location: /opt/schemas.opengis.net + +logging: + level: ERROR + #logfile: /tmp/pygeoapi.log + +metadata: + identification: + title: OpenDRR Geospatial API + description: Geospatial API for Open Disaster Risk Reduction data + keywords: + - geospatial + - data + - api + keywords_type: theme + terms_of_service: null + url: https://github.com/OpenDRR + license: + name: CC-BY 4.0 license + url: https://creativecommons.org/licenses/by/4.0/ + provider: + name: Geological Survey of Canada + url: https://www.nrcan.gc.ca/science-data/research-centres-labs/geological-survey-canada/17100 + contact: + name: Lastname, Firstname + position: Position Title + address: Mailing Address + city: City + stateorprovince: Administrative Area + postalcode: Zip or Postal Code + country: Country + phone: +xx-xxx-xxx-xxxx + fax: +xx-xxx-xxx-xxxx + email: you@example.org + url: Contact URL + hours: Mo-Fr 08:00-17:00 + instructions: During hours of service. Off on weekends. + role: pointOfContact + +resources: + afm7p2_lrdmf_economic_loss_building: + type: collection + title: Economic loss buildings + description: Economic consequences aggregated + keywords: + - earthquake + links: + - type: text/html + rel: canonical + title: information + href: http://www.riskprofiler.ca/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-08-06 + end: null # or empty (either means open ended) + providers: + - type: feature + name: Elasticsearch + data: http://elasticsearch-opendrr:9200/afm7p2_lrdmf_economic_loss_building + id_field: Sauid + + afm7p2_lrdmf_damage_state_building: + type: collection + title: Damage state buildings + description: Damage state aggregated + keywords: + - earthquake + links: + - type: text/html + rel: canonical + title: information + href: http://www.riskprofiler.ca/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-08-06 + end: null # or empty (either means open ended) + providers: + - type: feature + name: Elasticsearch + data: http://elasticsearch-opendrr:9200/afm7p2_lrdmf_damage_state_building + id_field: Sauid + + afm7p2_lrdmf_social_disruption_building: + type: collection + title: Social disruption buildings + description: Social disruption aggregated + keywords: + - earthquake + links: + - type: text/html + rel: canonical + title: information + href: http://www.riskprofiler.ca/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-08-06 + end: null # or empty (either means open ended) + providers: + - type: feature + name: Elasticsearch + data: http://elasticsearch-opendrr:9200/afm7p2_lrdmf_social_disruption_building + id_field: Sauid + + afm7p2_lrdmf_recovery_time_building: + type: collection + title: Recovery time buildings + description: Recovery time aggregated + keywords: + - earthquake + links: + - type: text/html + rel: canonical + title: information + href: http://www.riskprofiler.ca/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-08-06 + end: null # or empty (either means open ended) + providers: + - type: feature + name: Elasticsearch + data: http://elasticsearch-opendrr:9200/afm7p2_lrdmf_recovery_time_building + id_field: Sauid + + afm7p2_lrdmf_scenario_shakemap_intensity_building: + type: collection + title: Scenario shakemap intensity buildings + description: Scenario shakemap intensity aggregated + keywords: + - earthquake + links: + - type: text/html + rel: canonical + title: information + href: http://www.riskprofiler.ca/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-08-06 + end: null # or empty (either means open ended) + providers: + - type: feature + name: Elasticsearch + data: http://elasticsearch-opendrr:9200/afm7p2_lrdmf_scenario_shakemap_intensity_building + id_field: Sauid + + afm7p2_lrdmf_casualties_building: + type: collection + title: Casualties buildings + description: Casualties aggregated + keywords: + - earthquake + links: + - type: text/html + rel: canonical + title: information + href: http://www.riskprofiler.ca/ + hreflang: en-US + extents: + spatial: + bbox: [-180,-90,180,90] + crs: http://www.opengis.net/def/crs/OGC/1.3/CRS84 + temporal: + begin: 2020-08-06 + end: null # or empty (either means open ended) + providers: + - type: feature + name: Elasticsearch + data: http://elasticsearch-opendrr:9200/afm7p2_lrdmf_casualties_building + id_field: Sauid \ No newline at end of file diff --git a/python/Dockerfile b/python/Dockerfile new file mode 100644 index 00000000..4e7691af --- /dev/null +++ b/python/Dockerfile @@ -0,0 +1,12 @@ +FROM opendrr/python-env + +LABEL maintainer="Joost van Ulden " + +WORKDIR /usr/src/app + +COPY . . + +#RUN chmod +x docker-entrypoint.sh && chmod +x add_data.sh +RUN chmod +x add_data.sh +#ENTRYPOINT ["/usr/src/app/docker-entrypoint.sh"] +CMD ./add_data.sh ${POSTGRES_USER} ${POSTGRES_PASS} ${POSTGRES_PORT} ${DB_NAME} \ No newline at end of file diff --git a/python/add_data.sh b/python/add_data.sh new file mode 100644 index 00000000..a828671d --- /dev/null +++ b/python/add_data.sh @@ -0,0 +1,172 @@ +#!/bin/bash + +set -e + +POSTGRES_USER=$1 +POSTGRES_PASS=$2 +POSTGRES_PORT=$3 +DB_NAME=$4 + +# make sure PostGIS is ready to accept connections +until pg_isready -h db-opendrr -p 5432 -U ${POSTGRES_USER} +do + echo "Waiting for postgres..." + sleep 2; +done + +#get github token +GITHUB_TOKEN=`grep -o 'github_token = *.*' config.ini | cut -f2- -d=` + +#get list of earthquake scenarios +# curl -H "Authorization: token ${GITHUB_TOKEN}" \ +# -O \ +# -L https://api.github.com/repos/OpenDRR/openquake-models/contents/deterministic/outputs +# EQSCENARIO_LIST=`grep -P -o '"name": "s_lossesbyasset_*.*r2' outputs | cut -f3- -d_` +# EQSCENARIO_LIST=($(echo $EQSCENARIO_LIST | tr ' ' '\n')) +# for item in ${!EQSCENARIO_LIST[@]} +# do +# EQSCENARIO_LIST[item]=${EQSCENARIO_LIST[item]:0:${#EQSCENARIO_LIST[item]}-3} +# EQSCENARIO_LIST[item]=${EQSCENARIO_LIST[item],,} +# done +EQSCENARIO_LIST=afm7p2_lrdmf + +# get model-factory scripts +git clone https://github.com/OpenDRR/model-factory.git --depth 1 || (cd model-factory ; git pull) + +# get boundary files +git clone https://github.com/OpenDRR/boundaries.git --depth 1 || (cd boundaries ; git pull) + +# copy model-factory scripts to working directory +cp model-factory/scripts/*.* . +rm -rf model-factory + +echo "\n Importing Census Boundaries" +# create boundaries schema geometry tables from default geopackages. Change ogr2ogr PATH / geopackage path if nessessary to run. +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_ADAUID.gpkg" -nln boundaries."Geometry ADAUID" -lco LAUNDER=NO +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_CANADA.gpkg" -nln boundaries."Geometry CANADA" -lco LAUNDER=NO +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_CDUID.gpkg" -nln boundaries."Geometry CDUID" -lco LAUNDER=NO +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_CSDUID.gpkg" -nln boundaries."Geometry CSDUID" -lco LAUNDER=NO +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_ERUID.gpkg" -nln boundaries."Geometry ERUID" -lco LAUNDER=NO +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_FSAUID.gpkg" -nln boundaries."Geometry FSAUID" -lco LAUNDER=NO +ogr2ogr -f "PostgreSQL" PG:"host=db-opendrr user=${POSTGRES_USER} dbname=${DB_NAME} password=${POSTGRES_PASS}" "boundaries/Geometry_SAUID.gpkg" -nln boundaries."Geometry SAUID" -lco LAUNDER=NO +rm -rf boundaries + +echo "\n Importing scenario outputs into PostGIS..." +for eqscenario in ${EQSCENARIO_LIST[*]} +do +python3 DSRA_outputs2postgres_lfs.py --dsraModelDir=https://github.com/OpenDRR/openquake-models/tree/master/deterministic/outputs --columnsINI=DSRA_outputs2postgres.ini +done + +echo "\n Importing Physical Exposure Model into PostGIS" +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -o BldgExp_Canada.csv \ + -L https://api.github.com/repos/OpenDRR/model-inputs/contents/exposure/general-building-stock/BldgExp_Canada.csv?ref=ab1b2d58dcea80a960c079ad2aff337bc22487c5 + +DOWNLOAD_URL=`grep -o '"download_url": *.*' BldgExp_Canada.csv | cut -f2- -d: | tr -d '"'| tr -d ',' ` +curl -o BldgExp_Canada.csv \ + -L $DOWNLOAD_URL +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_table_canada_exposure.sql + +echo "\n Importing VS30 Model into PostGIS..." +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -H "Accept: application/vnd.github.v3.raw+json" \ + -o vs30_BC_site_model.csv \ + -L https://api.github.com/repos/OpenDRR/model-inputs/git/blobs/2adfaa9cc7fea73562dfe6d4ef80675ca9172e31 +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_table_vs_30_BC_site_model.sql +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_table_vs_30_BC_site_model_update.sql + +echo "\n Importing GMF Model" +for eqscenario in ${EQSCENARIO_LIST[*]} +do +python3 DSRA_gmf2postgres_lfs.py --gmfDir="https://github.com/OpenDRR/openquake-models/tree/master/deterministic/outputs" --eqScenario=AFM7p2_LRDMF + +echo "\n Importing Sitemesh" +python3 DSRA_sitemesh2postgres_lfs.py --sitemeshDir="https://github.com/OpenDRR/openquake-models/tree/master/deterministic/outputs" --eqScenario=AFM7p2_LRDMF + +echo "\n Creating GMF Sitemesh xref" +python3 DSRA_sitemesh_gmf_xref.py --eqScenario=$eqscenario +done + +echo "\n Importing Rupture Model" +python3 DSRA_ruptures2postgres.py --dsraRuptureDir="https://github.com/OpenDRR/openquake-models/tree/master/deterministic/ruptures" + +echo "\n Importing Census Data" +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -o census-attributes-2016.csv \ + -L https://api.github.com/repos/OpenDRR/model-inputs/contents/exposure/census-ref-sauid/census-attributes-2016.csv?ref=ab1b2d58dcea80a960c079ad2aff337bc22487c5 +DOWNLOAD_URL=`grep -o '"download_url": *.*' census-attributes-2016.csv | cut -f2- -d: | tr -d '"'| tr -d ',' ` +curl -o census-attributes-2016.csv \ + -L $DOWNLOAD_URL +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_table_2016_census_v3.sql + + +echo "\n Importing Sovi" +#need to source tables +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -O \ + -L https://api.github.com/repos/OpenDRR/model-inputs/contents/social-vulnerability/social-vulnerability-census.csv +DOWNLOAD_URL=`grep -o '"download_url": *.*' social-vulnerability-census.csv | cut -f2- -d: | tr -d '"'| tr -d ',' ` +curl -o social-vulnerability-census.csv \ + -L $DOWNLOAD_URL + +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -O \ + -L https://api.github.com/repos/OpenDRR/model-inputs/contents/social-vulnerability/social-vulnerability-index.csv +DOWNLOAD_URL=`grep -o '"download_url": *.*' social-vulnerability-index.csv | cut -f2- -d: | tr -d '"'| tr -d ',' ` +curl -o social-vulnerability-index.csv \ + -L $DOWNLOAD_URL + +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_table_sovi_index_canada_v2.sql +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_table_sovi_census_canada.sql + +echo "\n Importing LUTs" +#Collapse Probability +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -o collapse_probability.csv \ + -L https://api.github.com/repos/OpenDRR/model-inputs/contents/exposure/general-building-stock/documentation/collapse_probability.csv?ref=73d15ca7e48291ee98d8a8dd7fb49ae30548f34e +DOWNLOAD_URL=`grep -o '"download_url": *.*' collapse_probability.csv | cut -f2- -d: | tr -d '"'| tr -d ',' ` +curl -o collapse_probability.csv \ + -L $DOWNLOAD_URL +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_collapse_probability_table.sql +#Retrofit Costs +curl -H "Authorization: token ${GITHUB_TOKEN}" \ + -o retrofit_costs.csv \ + -L https://api.github.com/repos/OpenDRR/model-inputs/contents/exposure/general-building-stock/documentation/retrofit_costs.csv?ref=73d15ca7e48291ee98d8a8dd7fb49ae30548f34e + +DOWNLOAD_URL=`grep -o '"download_url": *.*' retrofit_costs.csv | cut -f2- -d: | tr -d '"'| tr -d ',' ` +curl -o retrofit_costs.csv \ + -L $DOWNLOAD_URL +psql -h db-opendrr -U ${POSTGRES_USER} -d ${DB_NAME} -a -f Create_retrofit_costs_table.sql + + +echo "\n Generating indicator views..." +for eqscenario in ${EQSCENARIO_LIST[*]} +do +python3 DSRA_createRiskProfileIndicators.py --eqScenario=$eqscenario --aggregation=building +python3 DSRA_createRiskProfileIndicators.py --eqScenario=$eqscenario --aggregation=sauid +done + +# make sure Elasticsearch is ready prior to creating indexes +until $(curl -sSf -XGET --insecure 'http://elasticsearch-opendrr:9200/_cluster/health?wait_for_status=yellow' > /dev/null); do + printf 'No status yellow from Elasticsearch, trying again in 10 seconds \n' + sleep 10 +done + +for eqscenario in ${EQSCENARIO_LIST[*]} +do +echo "\nCreating elasticsearch indexes..." +python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="casualties" --idField="building" +python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="damage_state" --idField="building" +python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="economic_loss" --idField="building" +python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="recovery_time" --idField="building" +python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="scenario_shakemap_intensity" --idField="building" +python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="social_disruption" --idField="building" + +# python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="casualties" --idField="sauid" +# python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="damage_state" --idField="sauid" +# python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="economic_loss" --idField="sauid" +# python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="recovery_time" --idField="sauid" +# python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="scenario_shakemap_intensity" --idField="sauid" +# python3 dsra_postgres2es.py --eqScenario=$eqscenario --dbview="social_disruption" --idField="sauid" + +done \ No newline at end of file diff --git a/python/calculate_all_dsra_jenks.py b/python/calculate_all_dsra_jenks.py new file mode 100644 index 00000000..85fc8875 --- /dev/null +++ b/python/calculate_all_dsra_jenks.py @@ -0,0 +1,44 @@ +# ================================================================= +# +# Authors: Drew Rotheram +# +# ================================================================= + + +import os +import configparser + +from elasticsearch import Elasticsearch + +def get_config_params(args): + """ + Parse Input/Output columns from supplied *.ini file + """ + configParseObj = configparser.ConfigParser() + configParseObj.read(args) + return configParseObj + + + +for eqScenario in ['sim6p8_cr2022_rlz_1']: + for retrofitPrefix in ['b0','r1','r2']: + for view in ['casualties_agg_view', + 'damage_state_agg_view', + 'economic_loss_agg_view', + #'full_retrofit_agg_view', + 'functional_state_agg_view', + #'partial_retrofit_agg_view', + 'recovery_agg_view', + 'scenario_hazard_agg_view', + 'scenario_hazard_threat_agg_view', + 'scenario_rupture_agg_view', + 'social_disruption_agg_view']: + indexName = 'dsra_{eqScenario}_{retrofitPrefix}_{view}'.format(**{'eqScenario':eqScenario, 'retrofitPrefix':retrofitPrefix, 'view':view}) + viewIndex = es.indices.get(index=indexName) + list = [] + for field in viewIndex[indexName]['mappings']['properties']['properties']['properties']: + list.append(field) + for field in list: + print('Calculating break points for: '+'dsra_{eqScenario}_{retrofitPrefix}_{view}: {field}'.format(**{'eqScenario':eqScenario, 'retrofitPrefix':retrofitPrefix, 'view':view, 'field':field})) + try: + os.system('python3 caclulateJenks.py --eqScenario={eqScenario} --retrofitPrefix={retrofitPrefix} --dbview={view} --field={field} --bins=5'.format(**{'eqScenario':eqScenario, 'retrofitPrefix':retrofitPrefix, 'view':view})) \ No newline at end of file diff --git a/python/dsra_postgres2es.py b/python/dsra_postgres2es.py new file mode 100644 index 00000000..9c91ba18 --- /dev/null +++ b/python/dsra_postgres2es.py @@ -0,0 +1,165 @@ +# ================================================================= +# +# Authors: Tom Kralidis +# +# Copyright (c) 2020 Tom Kralidis +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +# ================================================================= + +import json +import os +import sys +import psycopg2 +import configparser +import logging +import argparse +import decimal + +from elasticsearch import Elasticsearch +from elasticsearch import helpers + +''' +Script to convert DSRA indicator views to ElasticSearch Index +Can be run from the command line with mandatory arguments +Run this script with a command like: +python3 dsra_postgres2es.py --eqScenario="sim6p8_cr2022_rlz_1" --dbview=casualties_agg_view --idField="Sauid" +''' + +#Main Function +def main(): + logging.basicConfig(level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + handlers=[logging.FileHandler('{}.log'.format(os.path.splitext(sys.argv[0])[0])), + logging.StreamHandler()]) + auth = get_config_params('config.ini') + args = parse_args() + view = "{eq_scenario}_{dbview}_{idField}".format(**{'eq_scenario':args.eqScenario, 'dbview':args.dbview, 'idField':args.idField}) + if args.idField == 'sauid': + id_field = 'Sauid' + elif args.idField == 'building': + id_field = 'AssetID' + + #es = Elasticsearch() + es = Elasticsearch([auth.get('es', 'es_endpoint')], http_auth=(auth.get('es', 'es_un'), auth.get('es', 'es_pw'))) + sqlquerystring = 'SELECT *, ST_AsGeoJSON(geom_point) FROM results_{eqScenario}.{view}'.format(**{'eqScenario':args.eqScenario, 'view':view}) + connection = None + try: + #Connect to the PostGIS database hosted on RDS + connection = psycopg2.connect(user = auth.get('rds', 'postgres_un'), + password = auth.get('rds', 'postgres_pw'), + host = auth.get('rds', 'postgres_host'), + port = auth.get('rds', 'postgres_port'), + database = auth.get('rds', 'postgres_db')) + #Query the entire view with the geometries in geojson format + cur = connection.cursor() + cur.execute(sqlquerystring) + rows = cur.fetchall() + columns = [name[0] for name in cur.description] + geomIndex = columns.index('st_asgeojson') + feature_collection = {'type': 'FeatureCollection', 'features': []} + + #Format the table into a geojson format for ES/Kibana consumption + for row in rows: + feature = { + 'type': 'Feature', + 'geometry': json.loads(row[geomIndex]), + 'properties': {}, + } + for index, column in enumerate(columns): + if column != "st_asgeojson": + value =row[index] + feature['properties'][column] = value + feature_collection['features'].append(feature) + geojsonobject = json.dumps(feature_collection, indent=2, default=decimal_default) + + except (Exception, psycopg2.Error) as error : + logging.error(error) + + finally: + if(connection): + # cursor.close() + connection.close() + + # index settings + settings = { + 'settings': { + 'number_of_shards': 1, + 'number_of_replicas': 0 + }, + 'mappings': { + 'properties': { + 'geometry': { + 'type': 'geo_shape' + }, + 'geom_point': { + 'type': 'geo_point' + } + } + } + } + # create index + if es.indices.exists(view): + es.indices.delete(view) + + es.indices.create(index=view, body=settings, request_timeout=90) + + d = json.loads(geojsonobject) + + helpers.bulk(es, gendata(d, view, id_field), raise_on_error=False) + + return + +def gendata(data, view, id_field): + for item in data['features']: + yield { + "_index": view, + "_id": item['properties'][id_field], + "_source": item + } + +#Function to handle decimal encoder error +def decimal_default(obj): + if isinstance(obj, decimal.Decimal): + return float(obj) + raise TypeError + +def get_config_params(args): + """ + Parse Input/Output columns from supplied *.ini file + """ + configParseObj = configparser.ConfigParser() + configParseObj.read(args) + return configParseObj + +def parse_args(): + parser = argparse.ArgumentParser(description="script description") + parser.add_argument("--eqScenario", type=str, help="Earthquake scenario id", required=True) + parser.add_argument("--dbview", type=str, help=" Thematic Database View. Allowable values: (casualties, damage_state, economic_loss, functional_state, recovery, scenario_hazard, scenario_hazard_threat,scenario_rupture, social_disruption)", required=True) + parser.add_argument("--idField", type=str, help="Field to use as ElasticSearch Index ID", required=True) + args = parser.parse_args() + + return args + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/python/exposure_postgres2es.py b/python/exposure_postgres2es.py new file mode 100644 index 00000000..20c0fde5 --- /dev/null +++ b/python/exposure_postgres2es.py @@ -0,0 +1,174 @@ +# ================================================================= +# +# Authors: Tom Kralidis +# +# Copyright (c) 2020 Tom Kralidis +# +# Permission is hereby granted, free of charge, to any person +# obtaining a copy of this software and associated documentation +# files (the "Software"), to deal in the Software without +# restriction, including without limitation the rights to use, +# copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following +# conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +# OTHER DEALINGS IN THE SOFTWARE. +# +# ================================================================= + +import json +import os +import sys +import psycopg2 +import configparser +import logging +import argparse + +from elasticsearch import Elasticsearch +from elasticsearch import helpers +from decimal import Decimal +from tqdm import tqdm + +''' +Script to convert Physical Exposure Views to ElasticSearch Index +Can be run from the command line with mandatory arguments +Run this script with a command like: +python3 exposure_postgres2es.py --type="buildings" --aggregation="building" --geometry=geom_point --idField="AssetID" +''' + +#Main Function +def main(): + logging.basicConfig(level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + handlers=[logging.FileHandler('{}.log'.format(os.path.splitext(sys.argv[0])[0])), + logging.StreamHandler()]) + tracer = logging.getLogger('elasticsearch') + tracer.setLevel(logging.ERROR) + tracer.addHandler(logging.FileHandler('{}.log'.format(os.path.splitext(sys.argv[0])[0]))) + auth = get_config_params('config.ini') + args = parse_args() + + if args.geometry == "geom_point": + geoType = "geo_point" + elif args.geometry =="geom_poly": + geoType = "geo_shape" + else: + raise Exception("Unrecognized Geometry Type") + + # index settings + settings = { + 'settings': { + 'number_of_shards': 1, + 'number_of_replicas': 0 + }, + 'mappings': { + 'properties': { + 'geometry': { + 'type': '{}'.format(geoType) + } + } + } + } + + view = "canada_exposure_{type}_{aggregation}".format(**{'type':args.type, 'aggregation':args.aggregation}) + id_field = args.idField + + es = Elasticsearch() + #es = Elasticsearch([auth.get('es', 'es_endpoint')], http_auth=(auth.get('es', 'es_un'), auth.get('es', 'es_pw'))) + # create index + if es.indices.exists(view): + es.indices.delete(view) + es.indices.create(index=view, body=settings, request_timeout=90) + + sqlquerystring = 'SELECT *, ST_AsGeoJSON({geometry}) FROM "results_canada_exposure"."{view}"'.format(**{'geometry':args.geometry, 'view':view}) + connection = None + try: + #Connect to the PostGIS database hosted on RDS + connection = psycopg2.connect(user = auth.get('rds', 'postgres_un'), + password = auth.get('rds', 'postgres_pw'), + host = auth.get('rds', 'postgres_host'), + port = auth.get('rds', 'postgres_port'), + database = auth.get('rds', 'postgres_db')) + #Query the entire view with the geometries in geojson format + cur = connection.cursor() + cur.execute(sqlquerystring) + rows = cur.fetchall() + columns = [name[0] for name in cur.description] + geomIndex = columns.index('st_asgeojson') + feature_collection = {'type': 'FeatureCollection', 'features': []} + + #Format the table into a geojson format for ES/Kibana consumption + i = 0 + for row in tqdm(rows): + feature = { + 'type': 'Feature', + 'geometry': json.loads(row[geomIndex]), + 'properties': {}, + } + for index, column in enumerate(columns): + if column != "st_asgeojson": + value =row[index] + if isinstance(value, Decimal): + value = float(value) + feature['properties'][column] = value + feature_collection['features'].append(feature) + i+=1 + if i==10000: + geojsonobject = json.dumps(feature_collection, indent=2) + d = json.loads(geojsonobject) + helpers.bulk(es, gendata(d, view, id_field), raise_on_error=False, request_timeout=30) + feature_collection = {'type': 'FeatureCollection', 'features': []} + i=0 + geojsonobject = json.dumps(feature_collection, indent=2) + d = json.loads(geojsonobject) + helpers.bulk(es, gendata(d, view, id_field), raise_on_error=False, request_timeout=30) + feature_collection = {'type': 'FeatureCollection', 'features': []} + + except (Exception, psycopg2.Error) as error : + logging.error(error) + + finally: + if(connection): + # cursor.close() + connection.close() + return + +def gendata(data, view, id_field): + for item in data['features']: + yield { + "_index": view, + "_id": item['properties'][id_field], + "_source": item + } + +def get_config_params(args): + """ + Parse Input/Output columns from supplied *.ini file + """ + configParseObj = configparser.ConfigParser() + configParseObj.read(args) + return configParseObj + +def parse_args(): + parser = argparse.ArgumentParser(description="load exposure data from PostGIS to ElasticSearch Index") + parser.add_argument("--type", type=str, help="buildings or people", required=True) + parser.add_argument("--aggregation", type=str, help="building or Sauid", required=True) + parser.add_argument("--geometry", type=str, help="geom_point or geom_poly", required=True) + parser.add_argument("--idField", type=str, help="Field to use as ElasticSearch Index ID. AssetID or Sauid", required=True) + args = parser.parse_args() + + return args + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/scripts/load_es_data.py b/python/load_es_data.py similarity index 100% rename from scripts/load_es_data.py rename to python/load_es_data.py diff --git a/python/sample_config.ini b/python/sample_config.ini new file mode 100644 index 00000000..434cf787 --- /dev/null +++ b/python/sample_config.ini @@ -0,0 +1,20 @@ + +[auth] +#Github Token for Private Repo Accesss +github_token = + +[rds] +#PostGIS Connection Details +postgres_address = +postgres_un = +postgres_pw = +postgres_host = +postgres_port = +postgres_db = + +[es] +#ElasticSearch Username, password and enpoints +es_un = +es_pw = +es_endpoint = +kibana_endpoint = \ No newline at end of file diff --git a/sample-data/dsra_sim6p8_cr2022_rlz_1_b0_economic_loss_agg_view.geojson b/sample-data/dsra_sim6p8_cr2022_rlz_1_b0_economic_loss_agg_view.geojson deleted file mode 100644 index 96312737..00000000 --- a/sample-data/dsra_sim6p8_cr2022_rlz_1_b0_economic_loss_agg_view.geojson +++ /dev/null @@ -1,15204 +0,0 @@ -{ -"type": "FeatureCollection", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "Sauid": "59003286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.9", "sL_BldgLoss": "42.9", "sL_StrLoss": "42.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000903A112FD5C55DC074F8186A1CBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.089811877999963, 49.468882999000122 ], [ -119.089805505999976, 49.468835391 ], [ -119.089588783999929, 49.468202299000048 ], [ -119.08949436499995, 49.468055862000071 ], [ -119.092433188999962, 49.468243630000067 ], [ -119.092314844999962, 49.469032569000021 ], [ -119.092428540999919, 49.469039832000099 ], [ -119.092035169999988, 49.471662092000095 ], [ -119.091915785999959, 49.471639794000112 ], [ -119.091379903999922, 49.471471803000036 ], [ -119.090705205999939, 49.471102293000094 ], [ -119.090297139999947, 49.470713394000057 ], [ -119.090213108999947, 49.470633290000094 ], [ -119.089971309999953, 49.470075506000072 ], [ -119.089909960999961, 49.469616825000067 ], [ -119.089811877999963, 49.468882999000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2965250", "BldgCostT": "2045000", "sL_LossRatio": "0.999996489480807", "sL_AssetLoss": "230.8205583", "sL_BldgLoss": "230.819748", "sL_StrLoss": "230.800388", "sL_NStrLoss": "0.01936", "sL_ContLoss": "0.0008103", "geom_point": "0101000020E61000007350BADB52CB5DC047C15B39DEDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.177807463999898, 49.744219308000012 ], [ -119.177926853999907, 49.743418482000067 ], [ -119.177694314999925, 49.74340390600009 ], [ -119.177727224999956, 49.74318315500004 ], [ -119.177239715, 49.743152594000051 ], [ -119.177271060999928, 49.742942344000092 ], [ -119.175982803999958, 49.742861577000099 ], [ -119.17599471699998, 49.74312782100003 ], [ -119.174746453999958, 49.743151270000034 ], [ -119.174698221999932, 49.742072714000081 ], [ -119.174282142999985, 49.742080527000056 ], [ -119.174294198999945, 49.742350167000055 ], [ -119.17262987299992, 49.742381405000053 ], [ -119.172617826999954, 49.742111766000022 ], [ -119.17178566699998, 49.742127376000056 ], [ -119.171773624999972, 49.741857737000053 ], [ -119.171357546999957, 49.741865539000074 ], [ -119.17132143, 49.741056620000066 ], [ -119.172985712999946, 49.741025401000073 ], [ -119.172961617999988, 49.740486122000085 ], [ -119.172545552, 49.740493929000081 ], [ -119.172485328999954, 49.7391457310001 ], [ -119.172901381999978, 49.739137925000072 ], [ -119.172889335999912, 49.738868285000088 ], [ -119.174137489999964, 49.738844856000128 ], [ -119.174209812999948, 49.74046269300009 ], [ -119.174625876999954, 49.740454880000065 ], [ -119.174637935999968, 49.740724519000032 ], [ -119.175054001999953, 49.740716705000068 ], [ -119.17506606099991, 49.740986343000031 ], [ -119.17533376199998, 49.740981315000077 ], [ -119.175595952999984, 49.739223075000091 ], [ -119.175957604999951, 49.739245754000088 ], [ -119.176172905999948, 49.737801785000052 ], [ -119.18060355599999, 49.738079524000128 ], [ -119.18044379299999, 49.738128406000023 ], [ -119.180301298999964, 49.738337687000069 ], [ -119.179318818999889, 49.739058406000112 ], [ -119.179110896999958, 49.739052706000052 ], [ -119.179094687000017, 49.738981502000044 ], [ -119.179631882999942, 49.738602591000053 ], [ -119.17948979399999, 49.738497202000133 ], [ -119.179132720999988, 49.738594101000103 ], [ -119.17891701299996, 49.738759291000065 ], [ -119.178520792999905, 49.738893104000034 ], [ -119.178624487999954, 49.7393589120001 ], [ -119.178969391999942, 49.73959530300008 ], [ -119.179002285999971, 49.740026792000052 ], [ -119.178858988999977, 49.740254694000043 ], [ -119.179065200000011, 49.740483995000034 ], [ -119.179488192999926, 49.740629303000048 ], [ -119.180380205999938, 49.740747510000098 ], [ -119.18049321899997, 49.741077907000069 ], [ -119.180342812, 49.741441087000091 ], [ -119.1808252229999, 49.741683200000054 ], [ -119.181175896999932, 49.742369598000053 ], [ -119.181181414999955, 49.742809703 ], [ -119.180799521, 49.743293998000098 ], [ -119.180743897999918, 49.743591597000069 ], [ -119.180955911999931, 49.744416613000091 ], [ -119.177807463999898, 49.744219308000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "43.8", "sL_BldgLoss": "43.8", "sL_StrLoss": "43.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000086A371C92DC45DC0A6A9F1146AAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.064835794999922, 49.338301511000125 ], [ -119.068413951999943, 49.337330948000051 ], [ -119.068242814999905, 49.33847128200005 ], [ -119.067968336999954, 49.340300101000054 ], [ -119.067077619, 49.340242827000154 ], [ -119.067041607999954, 49.340482722000104 ], [ -119.061568322999946, 49.340130626000089 ], [ -119.06177561, 49.33875079300006 ], [ -119.06179982, 49.33858961800005 ], [ -119.064835794999922, 49.338301511000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F07F70D359C15DC01D55B03AB0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.018892838999989, 49.261282065000032 ], [ -119.023207178999925, 49.261561856000093 ], [ -119.022666920999924, 49.265144357000082 ], [ -119.019219784999919, 49.264920820000029 ], [ -119.01914899799999, 49.264343691000086 ], [ -119.01931441, 49.263675795000012 ], [ -119.019434584999885, 49.262926608000051 ], [ -119.019309193999931, 49.261858508000017 ], [ -119.018892838999989, 49.261282065000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.9", "sL_BldgLoss": "35.9", "sL_StrLoss": "35.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000160445E2D4BA5DC01EBE337700DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.918373960999972, 49.725823411000079 ], [ -118.920453990999974, 49.725788933000032 ], [ -118.920496561999954, 49.726867665000093 ], [ -118.920080545999966, 49.726874563000116 ], [ -118.92009118699994, 49.727144246000073 ], [ -118.91925915299997, 49.727158039000138 ], [ -118.919269788999912, 49.727427721 ], [ -118.918021728999946, 49.727448400000036 ], [ -118.917989840999951, 49.72663935100006 ], [ -118.918405853999914, 49.726632460000062 ], [ -118.918373960999972, 49.725823411000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "172.9", "sL_BldgLoss": "172.9", "sL_StrLoss": "172.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EBB2F391AFC25DC024F323D9FEA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.040070863999915, 49.302748003000048 ], [ -119.044104933999947, 49.303008576000103 ], [ -119.043565807999968, 49.306590958000065 ], [ -119.039598028999961, 49.306334669000073 ], [ -119.039575532999891, 49.306484049000076 ], [ -119.039255852999958, 49.306463393000065 ], [ -119.040156584000016, 49.305742699000078 ], [ -119.040393396999946, 49.305154503000118 ], [ -119.040379982000019, 49.304839693000062 ], [ -119.04008049499997, 49.304259988000112 ], [ -119.040089275999932, 49.30281159300003 ], [ -119.040070863999915, 49.302748003000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "204", "sL_BldgLoss": "204", "sL_StrLoss": "204", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D04DF9767C05DC07BE35AA354A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.003958842999936, 49.249608211000094 ], [ -119.004044564999901, 49.249457060000104 ], [ -119.005430480999919, 49.249547176000121 ], [ -119.005778681999956, 49.247243186000084 ], [ -119.007997256999928, 49.247387404000058 ], [ -119.007733289999962, 49.247936799000087 ], [ -119.007449190000017, 49.249056297000095 ], [ -119.007254991999929, 49.249356800000051 ], [ -119.006817400000031, 49.249742704000099 ], [ -119.006311689999905, 49.249805415000026 ], [ -119.004930420999955, 49.249648703000048 ], [ -119.00448099599997, 49.249755611000097 ], [ -119.004106917999962, 49.250338093000046 ], [ -119.004063085999974, 49.250986107000067 ], [ -119.004541586999963, 49.251562898000017 ], [ -119.005500283999964, 49.252499998000111 ], [ -119.006088080999959, 49.252769194000109 ], [ -119.006794108999927, 49.253224893 ], [ -119.007459615999963, 49.253699205000018 ], [ -119.008732505999916, 49.254953889000028 ], [ -119.00947175099995, 49.2555548610001 ], [ -119.009345192999959, 49.25639258600016 ], [ -119.006453543999982, 49.256204680000046 ], [ -119.00585660299997, 49.255696493000123 ], [ -119.005561993999933, 49.255358544000053 ], [ -119.005309982999947, 49.255069501000143 ], [ -119.004918571999923, 49.254508076000036 ], [ -119.004700295999967, 49.254195013000107 ], [ -119.004231964999946, 49.253207995 ], [ -119.003878180999919, 49.252462394000126 ], [ -119.003564295999979, 49.251800798000076 ], [ -119.003872846999954, 49.249759842000067 ], [ -119.003958842999936, 49.249608211000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19468667", "BldgCostT": "13426667", "sL_LossRatio": "1", "sL_AssetLoss": "1585", "sL_BldgLoss": "1585", "sL_StrLoss": "1585", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000828FFB355DC55DC04E591B9D52B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.071897151999949, 49.450750028000073 ], [ -119.072074244999911, 49.449572431 ], [ -119.071409752999955, 49.44952983800011 ], [ -119.071948389999989, 49.445948079000047 ], [ -119.074503817999954, 49.446111856000115 ], [ -119.074617909, 49.445352838000062 ], [ -119.074969943000013, 49.445375396000067 ], [ -119.075149948, 49.444177748000101 ], [ -119.076866957999968, 49.444287750000044 ], [ -119.076910474999963, 49.443998130000075 ], [ -119.078385144999956, 49.444038182000106 ], [ -119.078401827, 49.440953762000035 ], [ -119.078575144999917, 49.440964863000076 ], [ -119.078663956999932, 49.440970551000113 ], [ -119.078802012999944, 49.440051418000046 ], [ -119.079178720999948, 49.440075544000067 ], [ -119.079212908, 49.439847927000095 ], [ -119.079611407999906, 49.439873448000043 ], [ -119.079667906999973, 49.43949723700009 ], [ -119.080008071999956, 49.439519021000095 ], [ -119.080040400999934, 49.439303745000096 ], [ -119.080266291999962, 49.439318209000092 ], [ -119.080470053999946, 49.437961251000033 ], [ -119.081040186999957, 49.437997758000037 ], [ -119.081052332999917, 49.437916864000115 ], [ -119.08160325299994, 49.437952138000121 ], [ -119.081622012999972, 49.437827176000106 ], [ -119.081779669999904, 49.437837269000084 ], [ -119.081940555999893, 49.436765580000056 ], [ -119.082193697, 49.436781787000093 ], [ -119.082280671999911, 49.43620238700008 ], [ -119.082510977999931, 49.436217131000035 ], [ -119.082584684999915, 49.435726093000021 ], [ -119.08265653399998, 49.435730693000075 ], [ -119.082719200999918, 49.435313194000081 ], [ -119.082720555999956, 49.435313280000038 ], [ -119.083047936999975, 49.433132070000035 ], [ -119.083093018999989, 49.432831695000068 ], [ -119.083209751999959, 49.432839168000065 ], [ -119.08325802799996, 49.432517498000067 ], [ -119.08360877299999, 49.432539952000127 ], [ -119.083653724999948, 49.432240406000126 ], [ -119.083703335999985, 49.432243582000062 ], [ -119.08384356699996, 49.431309109000047 ], [ -119.084884851999959, 49.431375759000012 ], [ -119.084913227999934, 49.431186633000031 ], [ -119.085399816999924, 49.431217775000057 ], [ -119.085405050999967, 49.431182882000023 ], [ -119.085439518, 49.430953143000039 ], [ -119.085562861999946, 49.430961037000039 ], [ -119.085703757, 49.430021847000106 ], [ -119.088829085999976, 49.430221814000106 ], [ -119.089670481999946, 49.430275634000104 ], [ -119.091187864999966, 49.430372675000072 ], [ -119.091181815999946, 49.430413024000053 ], [ -119.091631254999982, 49.430441762000044 ], [ -119.091630597999981, 49.430446144000122 ], [ -119.092067040999922, 49.430474050000065 ], [ -119.092055224, 49.430552900000116 ], [ -119.093169211999964, 49.430624119000036 ], [ -119.092914535999938, 49.432323546000099 ], [ -119.0929596299999, 49.432326429000057 ], [ -119.092932059999953, 49.43251039800009 ], [ -119.093184575999942, 49.432526540000019 ], [ -119.092419480999979, 49.432893195000077 ], [ -119.092165781999938, 49.433085498000011 ], [ -119.092108721999963, 49.434337405000093 ], [ -119.092234175, 49.435185293000067 ], [ -119.092359694, 49.436033593000033 ], [ -119.092763797999922, 49.437087492000025 ], [ -119.09365165199992, 49.438056517000035 ], [ -119.09362975499999, 49.438202630000049 ], [ -119.091964670999943, 49.438096199000043 ], [ -119.091957779999944, 49.438142168000091 ], [ -119.091798881000017, 49.438132011000043 ], [ -119.091743988999937, 49.438498172000052 ], [ -119.091474939999927, 49.438480971000061 ], [ -119.091367610999924, 49.439196879000129 ], [ -119.090915507999981, 49.439167974000085 ], [ -119.090702158999946, 49.440590890000074 ], [ -119.089385232, 49.440506684000077 ], [ -119.08934750799996, 49.440758221000131 ], [ -119.089195234000016, 49.440748483000064 ], [ -119.089136120999967, 49.441142624000108 ], [ -119.088983862999953, 49.441132888000077 ], [ -119.088924732999914, 49.441527128000068 ], [ -119.088859167999942, 49.441522935000052 ], [ -119.088795348999938, 49.441948429000014 ], [ -119.086508644999952, 49.441802168000024 ], [ -119.086458260999962, 49.442137983000052 ], [ -119.085673717999924, 49.442087790000073 ], [ -119.085367718999976, 49.444126901000097 ], [ -119.084977006999978, 49.444101903000075 ], [ -119.084907323999943, 49.444566210000112 ], [ -119.084394934999949, 49.444533425000081 ], [ -119.084363009999947, 49.44474612300008 ], [ -119.083835236999974, 49.444712350000081 ], [ -119.083779803999974, 49.445081634000111 ], [ -119.083061253999972, 49.445035650000086 ], [ -119.083006788, 49.445398452000063 ], [ -119.08258855299999, 49.445371684000079 ], [ -119.082541684, 49.445683861000084 ], [ -119.08219910699998, 49.445661935000018 ], [ -119.082184281999943, 49.445760677000131 ], [ -119.082978956999938, 49.445811539000012 ], [ -119.082867193999959, 49.446555968000041 ], [ -119.083982073999891, 49.446627313000128 ], [ -119.08344436299997, 49.45020912800009 ], [ -119.08205435299999, 49.450120174000048 ], [ -119.081506710999918, 49.449723990000088 ], [ -119.08068989, 49.449049709000043 ], [ -119.080138227999953, 49.448487983000071 ], [ -119.080129011999972, 49.448478591000033 ], [ -119.079639383999918, 49.447893899000043 ], [ -119.078606696999884, 49.446444606000107 ], [ -119.07855794799994, 49.446319017000171 ], [ -119.078430025, 49.445989407000148 ], [ -119.078396378999955, 49.445770295000067 ], [ -119.077813971999959, 49.446158590000046 ], [ -119.077468522999965, 49.44638890100002 ], [ -119.076559102999923, 49.446950534000067 ], [ -119.076546721999961, 49.446958202000104 ], [ -119.076281511, 49.447266610000021 ], [ -119.076241608999965, 49.447348186000099 ], [ -119.076215541999943, 49.447486145000049 ], [ -119.07610440799999, 49.448074443000046 ], [ -119.076084165999958, 49.448181653000105 ], [ -119.076051595999942, 49.448353986000029 ], [ -119.075707501999943, 49.450651248000035 ], [ -119.071897151999949, 49.450750028000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.8", "sL_BldgLoss": "52.8", "sL_StrLoss": "52.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040557D9559C45DC0C8704410CAD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.067422305999955, 49.647856950000062 ], [ -119.067381219999959, 49.646887191000147 ], [ -119.066965923999973, 49.646894608000117 ], [ -119.066954500999913, 49.646624945000056 ], [ -119.066539208000037, 49.646632361000115 ], [ -119.066504947999931, 49.645823374000081 ], [ -119.06858138099993, 49.645786281000021 ], [ -119.068592811999935, 49.646055942000046 ], [ -119.069008099, 49.646048518000107 ], [ -119.06908813699998, 49.647936153000103 ], [ -119.06756932899999, 49.647963296000064 ], [ -119.067426918999928, 49.647965839000058 ], [ -119.067422305999955, 49.647856950000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "189.5", "sL_BldgLoss": "189.5", "sL_StrLoss": "189.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009757CFC5F6C55DC0AFD007CB58974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09021164399995, 49.183506904000076 ], [ -119.090217900999932, 49.183464927000031 ], [ -119.089964039000023, 49.183448599 ], [ -119.089975419999931, 49.183441498000043 ], [ -119.090371306999955, 49.18305559300007 ], [ -119.090659898999917, 49.182430297000039 ], [ -119.090401993999961, 49.181867815000011 ], [ -119.089806113999956, 49.181421716000052 ], [ -119.08988558099999, 49.180888613000036 ], [ -119.090847907999901, 49.181031800000042 ], [ -119.09139351599994, 49.181273894000071 ], [ -119.092568695999915, 49.181496105000051 ], [ -119.093951111999928, 49.181407789000041 ], [ -119.094888113999971, 49.18118408800008 ], [ -119.095780489, 49.180825312000096 ], [ -119.095905902, 49.180563196000044 ], [ -119.095901925999939, 49.180255145000075 ], [ -119.096200396999947, 49.180274328000095 ], [ -119.095666706999964, 49.183857634000084 ], [ -119.09021164399995, 49.183506904000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "91.7", "sL_BldgLoss": "91.7", "sL_StrLoss": "91.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D13707C6BC25DC0C1FF56B2E3A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.034921840999971, 49.302010062000086 ], [ -119.039628963999974, 49.302314326000065 ], [ -119.039785804999937, 49.303096505000077 ], [ -119.039601608999959, 49.30399939200003 ], [ -119.039700701999976, 49.304356885000082 ], [ -119.039688684999945, 49.305086095000014 ], [ -119.039281709999941, 49.305912106000051 ], [ -119.039106780999987, 49.30598619200007 ], [ -119.038730058999974, 49.306429418000022 ], [ -119.038006270000011, 49.306382645000042 ], [ -119.037899685999932, 49.305954893000077 ], [ -119.037682103999927, 49.30558448700004 ], [ -119.037380888, 49.305228716000059 ], [ -119.037028193999973, 49.30494139700005 ], [ -119.036886968999951, 49.304826368000107 ], [ -119.036693919999919, 49.304669113000124 ], [ -119.036254489999934, 49.304311191000053 ], [ -119.036010166999958, 49.304053195000051 ], [ -119.03595798899994, 49.30399810600008 ], [ -119.035824878999975, 49.303774094000069 ], [ -119.03565510199995, 49.303488400000063 ], [ -119.035156831999956, 49.302483911000074 ], [ -119.035103221999947, 49.302375783000052 ], [ -119.034921840999971, 49.302010062000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D4C087F9CFC35DC0F7BB248C6EC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.058855272999963, 49.572825575000074 ], [ -119.058843925999923, 49.572555908000062 ], [ -119.059258592999953, 49.57254852800002 ], [ -119.059247243, 49.572278862000118 ], [ -119.060491234999972, 49.572256713000066 ], [ -119.060513949000011, 49.572796046000072 ], [ -119.06077393, 49.572791414000037 ], [ -119.060928615999956, 49.572788659000075 ], [ -119.060985413999902, 49.574136994000064 ], [ -119.060570734999914, 49.574144380000156 ], [ -119.060582093999983, 49.57441404700009 ], [ -119.060452747999975, 49.574416351000067 ], [ -119.060167409999934, 49.574421432000079 ], [ -119.06019012199998, 49.574960766000054 ], [ -119.058382121999955, 49.574992949 ], [ -119.058116684999931, 49.574997671000091 ], [ -119.058082651999911, 49.57418866900008 ], [ -119.058497333999981, 49.574181291000066 ], [ -119.058440603999941, 49.572832955000067 ], [ -119.058709240999974, 49.572828175000012 ], [ -119.058855272999963, 49.572825575000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "116", "sL_BldgLoss": "116", "sL_StrLoss": "116", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041B64D6DC0C65DC088218326D3BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.107408794999927, 49.486079338000089 ], [ -119.106395003999964, 49.485157208000039 ], [ -119.104928515000012, 49.483777676000052 ], [ -119.103153213999974, 49.482107499000115 ], [ -119.102637116000011, 49.481630938000066 ], [ -119.103903134999982, 49.481607908000086 ], [ -119.103868459999958, 49.48079891600004 ], [ -119.104571245999978, 49.480786127000023 ], [ -119.105110097999983, 49.480776318000018 ], [ -119.10512166299999, 49.481045982000076 ], [ -119.105535543999963, 49.481038445000102 ], [ -119.105558679999959, 49.48157777200008 ], [ -119.105972564999917, 49.481570235000049 ], [ -119.105995704999927, 49.482109561000122 ], [ -119.106409594999946, 49.482102023000031 ], [ -119.106444314999933, 49.482911012000081 ], [ -119.106858210999917, 49.4829034710001 ], [ -119.106892938, 49.483712461000039 ], [ -119.107306841999943, 49.483704918000107 ], [ -119.107329996999951, 49.484244245000085 ], [ -119.107743905999953, 49.484236700000103 ], [ -119.107778649999943, 49.485045689000103 ], [ -119.107364733999972, 49.485053233000031 ], [ -119.107376312999918, 49.485322895000067 ], [ -119.106962396999933, 49.485330439000023 ], [ -119.10697397399997, 49.485600102000049 ], [ -119.107387892999924, 49.485592559000082 ], [ -119.107408794999927, 49.486079338000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "48.6", "sL_BldgLoss": "48.6", "sL_StrLoss": "48.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8BA32A085C05DC0B6B721E7799A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.007650026999954, 49.205405958000021 ], [ -119.007672959999979, 49.205395139000139 ], [ -119.007911108999934, 49.205535291000118 ], [ -119.008562808999955, 49.205721901000061 ], [ -119.010130190000012, 49.206134897000041 ], [ -119.010462180999966, 49.206373167000081 ], [ -119.010345544999922, 49.207146194000075 ], [ -119.010031080999951, 49.207755606000021 ], [ -119.010146539999965, 49.208130257000079 ], [ -119.008451542999978, 49.208020012000098 ], [ -119.008360500999956, 49.208623230000129 ], [ -119.008032424999939, 49.2082823020001 ], [ -119.007679624999923, 49.207972607000045 ], [ -119.007355307999958, 49.207747999000084 ], [ -119.006500376999924, 49.207314307000026 ], [ -119.006094237999918, 49.207124832000041 ], [ -119.005071802999964, 49.206647914000044 ], [ -119.005273288999973, 49.206527094000123 ], [ -119.007514090999962, 49.205470091000038 ], [ -119.007625346999987, 49.205417603000051 ], [ -119.007650026999954, 49.205405958000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.4", "sL_BldgLoss": "60.4", "sL_StrLoss": "60.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007036678EB6CB5DC05C9E7BCDFADE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.182246786999954, 49.740568006000082 ], [ -119.182604013999963, 49.739877301000028 ], [ -119.182817216, 49.739684994000065 ], [ -119.183036516999934, 49.739646136000033 ], [ -119.18299881199999, 49.739899266000101 ], [ -119.18329531799999, 49.739917839000107 ], [ -119.183262436999939, 49.740138593000047 ], [ -119.18374991799999, 49.740169126000119 ], [ -119.183679801999929, 49.740639891000043 ], [ -119.184023540999959, 49.740661420000038 ], [ -119.183490189999944, 49.744242214000053 ], [ -119.183378968999961, 49.744235247000091 ], [ -119.183329799999981, 49.744565317000117 ], [ -119.182906097999975, 49.744538779000052 ], [ -119.182101894999946, 49.742917989000048 ], [ -119.182195702999977, 49.742512097000052 ], [ -119.182097603999964, 49.741892490000119 ], [ -119.182300686999938, 49.741439605000053 ], [ -119.182246786999954, 49.740568006000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.1", "sL_BldgLoss": "42.1", "sL_StrLoss": "42.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6E231C929C15DC00BF1A375AFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.017730494999967, 49.261293910000063 ], [ -119.018144392999943, 49.261276014000131 ], [ -119.018447809999941, 49.261315900000021 ], [ -119.018603582000011, 49.261448302000097 ], [ -119.018949603999928, 49.262151902000078 ], [ -119.019104492999972, 49.262950910000079 ], [ -119.019033496999981, 49.263527697000079 ], [ -119.018679103999958, 49.264271085000111 ], [ -119.018685107999957, 49.264756808000115 ], [ -119.018724968999919, 49.264888723000027 ], [ -119.01763800400002, 49.264818208000037 ], [ -119.017392972999943, 49.264802311000061 ], [ -119.017226510999947, 49.264633272 ], [ -119.017265721999962, 49.264373481000057 ], [ -119.017730494999967, 49.261293910000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21648501", "BldgCostT": "14930001", "sL_LossRatio": "1", "sL_AssetLoss": "1128.2", "sL_BldgLoss": "1128.2", "sL_StrLoss": "1128.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000067493E7E88BB5DC0598D78F437DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.923832909999973, 49.727962490000081 ], [ -118.923857122999948, 49.727805892000063 ], [ -118.921397046, 49.727645823000103 ], [ -118.921950635999934, 49.72406625000005 ], [ -118.922832167999942, 49.724123615000082 ], [ -118.922956627999952, 49.723318668000033 ], [ -118.921606166999979, 49.723341087000044 ], [ -118.921616813999961, 49.723610768000107 ], [ -118.920368855, 49.723631472000108 ], [ -118.920400778999962, 49.724440521000055 ], [ -118.920816773999917, 49.724433620000134 ], [ -118.920848705999958, 49.725242669000089 ], [ -118.919600702999986, 49.725263363000074 ], [ -118.919611339999975, 49.725533046000038 ], [ -118.918363329999977, 49.725553728000065 ], [ -118.918352698999968, 49.725284045000116 ], [ -118.917936695999956, 49.725290936000114 ], [ -118.917915439999931, 49.72475157000008 ], [ -118.917499441999922, 49.724758459000036 ], [ -118.917467565999956, 49.723949410000031 ], [ -118.917883555999978, 49.72394252 ], [ -118.91781979299995, 49.722324421000025 ], [ -118.918235770999971, 49.722317531000158 ], [ -118.918225140999979, 49.722047848000052 ], [ -118.918641114999957, 49.722040956000072 ], [ -118.918630485000023, 49.72177127300008 ], [ -118.919878398999955, 49.721750590000084 ], [ -118.919867760999963, 49.721480906000117 ], [ -118.921531635999898, 49.721453307000054 ], [ -118.921520988999958, 49.721183624000048 ], [ -118.92193695499999, 49.721176722000017 ], [ -118.921915656999957, 49.720637356000097 ], [ -118.922331616999941, 49.720630451000062 ], [ -118.922320966999933, 49.720360769000095 ], [ -118.921489048999916, 49.720374577000044 ], [ -118.921478402999938, 49.720104894000038 ], [ -118.92106244699994, 49.720111796000069 ], [ -118.921051802999955, 49.719842113000105 ], [ -118.920635846999957, 49.719849013000122 ], [ -118.920593283999963, 49.718770281000069 ], [ -118.921009229999981, 49.71876338000007 ], [ -118.920987942999901, 49.718224015000068 ], [ -118.920572002999904, 49.718230915000021 ], [ -118.92052944199996, 49.717152183000046 ], [ -118.923856890999971, 49.717096946000041 ], [ -118.923846232999907, 49.71682726300002 ], [ -118.924262160999945, 49.716820352000084 ], [ -118.924251500999958, 49.716550669000085 ], [ -118.925499276999943, 49.716529927000039 ], [ -118.925488609999931, 49.716260245000051 ], [ -118.926320454999882, 49.716246409000114 ], [ -118.926299113999988, 49.71570704500008 ], [ -118.927546865999929, 49.715686281000103 ], [ -118.927557544999971, 49.715955963000049 ], [ -118.927973466, 49.715949039000094 ], [ -118.927994824999942, 49.716488403000092 ], [ -118.929242597999959, 49.716467619000085 ], [ -118.929231910999988, 49.716197937000054 ], [ -118.928815987999954, 49.716204866000055 ], [ -118.92880530399998, 49.715935185000028 ], [ -118.928389382999981, 49.715942112000072 ], [ -118.928368018999933, 49.715402748000059 ], [ -118.927952102999924, 49.71540967400005 ], [ -118.927917434000037, 49.714534176 ], [ -118.92788802599992, 49.713791582000113 ], [ -118.928303925999984, 49.713784657000119 ], [ -118.928293244999907, 49.713514975000109 ], [ -118.929540939999981, 49.713494189000038 ], [ -118.929551628999945, 49.713763872000101 ], [ -118.929967529999928, 49.713756940000053 ], [ -118.929987057999938, 49.71424957 ], [ -118.93002592, 49.715229801000106 ], [ -118.93104865, 49.715296291000129 ], [ -118.931178962000018, 49.714452335000047 ], [ -118.936695828, 49.714810831000086 ], [ -118.936584023999941, 49.715535490000136 ], [ -118.941272054999956, 49.715456987000039 ], [ -118.94126130199993, 49.715187307000029 ], [ -118.942093120999942, 49.715173358000072 ], [ -118.942071604999967, 49.714633999000057 ], [ -118.943319317999979, 49.714613065000037 ], [ -118.943330083999967, 49.714882745000111 ], [ -118.944577802999945, 49.714861797000054 ], [ -118.944588574999969, 49.715131477000078 ], [ -118.945836301000014, 49.715110516000053 ], [ -118.945847079999922, 49.715380195000115 ], [ -118.947510719999983, 49.715352225000103 ], [ -118.947543086999957, 49.716161262000128 ], [ -118.948374918999917, 49.716147267000061 ], [ -118.948428887999981, 49.717495661000065 ], [ -118.948012960999918, 49.717502659000061 ], [ -118.948023752999958, 49.717772338000017 ], [ -118.946775960999943, 49.717793323000116 ], [ -118.946754389999967, 49.717253966000051 ], [ -118.946338463999936, 49.7172609570001 ], [ -118.94636003, 49.717800315000041 ], [ -118.94469630599994, 49.717828269000094 ], [ -118.944707077999965, 49.718097948000086 ], [ -118.943459275999928, 49.71811889800005 ], [ -118.943470043999952, 49.718388577000091 ], [ -118.942638169999967, 49.718402537000074 ], [ -118.942648933999948, 49.718672217000098 ], [ -118.941401112999969, 49.718693144000078 ], [ -118.941411869999911, 49.718962825000034 ], [ -118.940579986, 49.718976769000037 ], [ -118.940590736999937, 49.719246448000042 ], [ -118.940174792999969, 49.719253418000051 ], [ -118.940185542, 49.719523098000124 ], [ -118.939769594999987, 49.719530067000051 ], [ -118.939780340999945, 49.719799747000096 ], [ -118.938116541999932, 49.719827606000088 ], [ -118.93808433, 49.719018566000074 ], [ -118.938500271999914, 49.719011603000069 ], [ -118.93848953199992, 49.718741924000071 ], [ -118.936825767999935, 49.718769764000022 ], [ -118.936815036, 49.718500085000137 ], [ -118.935983157999928, 49.718513996000119 ], [ -118.93597781899993, 49.718379763000044 ], [ -118.934977736999983, 49.718314795 ], [ -118.93484748399996, 49.719158752000091 ], [ -118.930586939999969, 49.718881873000058 ], [ -118.930597322, 49.719143637000073 ], [ -118.931013267999973, 49.719136702000064 ], [ -118.93103466599996, 49.719676064000055 ], [ -118.931866566999958, 49.719662188000108 ], [ -118.931873839999938, 49.719845451000012 ], [ -118.934049262999977, 49.719986816000059 ], [ -118.933985593999978, 49.720399277000041 ], [ -118.934080088999949, 49.720405416000084 ], [ -118.933984309999971, 49.721025897000054 ], [ -118.934150827999957, 49.721036716000086 ], [ -118.933598224, 49.724616365000017 ], [ -118.933230463999934, 49.724592471000086 ], [ -118.933202116999979, 49.724776073000093 ], [ -118.932887672999968, 49.724755642000041 ], [ -118.932827819999957, 49.725143281000143 ], [ -118.932672552999975, 49.725133192000015 ], [ -118.932627127000018, 49.72542738500006 ], [ -118.932318236999933, 49.725407314000059 ], [ -118.932263328999952, 49.72576289200002 ], [ -118.931267334999973, 49.725698167000111 ], [ -118.931013260999947, 49.727343217000055 ], [ -118.930504545999909, 49.727310154000101 ], [ -118.930464250999989, 49.727571029000039 ], [ -118.92997171, 49.727539015000076 ], [ -118.92990104799999, 49.727996440000034 ], [ -118.929406504999974, 49.727964294000103 ], [ -118.929351342999965, 49.728321350000101 ], [ -118.923832909999973, 49.727962490000081 ] ], [ [ -118.929754737999986, 49.718887823000031 ], [ -118.93048994899999, 49.718875568000044 ], [ -118.9297523499999, 49.718827617000073 ], [ -118.929754737999986, 49.718887823000031 ] ], [ [ -118.92935722799993, 49.718624588000068 ], [ -118.929482594999939, 49.717812919000046 ], [ -118.929296036999929, 49.717816028000122 ], [ -118.929306726999954, 49.718085709000029 ], [ -118.927642973999951, 49.71811341900009 ], [ -118.927664333999928, 49.718652782000042 ], [ -118.92935722799993, 49.718624588000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13056000", "BldgCostT": "7530000", "sL_LossRatio": "1", "sL_AssetLoss": "285.1", "sL_BldgLoss": "285.1", "sL_StrLoss": "285.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D0BC80336C15DC04F360E8AA09C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.017221382999963, 49.224498593000085 ], [ -119.016831001999947, 49.223318004000078 ], [ -119.016371018999976, 49.222470597000054 ], [ -119.01603959199997, 49.222090290000011 ], [ -119.015109213999978, 49.221178795000057 ], [ -119.0141185, 49.220459589000022 ], [ -119.013947682999984, 49.220003792000107 ], [ -119.01403455, 49.219517828000086 ], [ -119.014678660999948, 49.219559680000067 ], [ -119.014688174999932, 49.219496606000071 ], [ -119.018660301999944, 49.219754615000106 ], [ -119.019736165999987, 49.219824472000013 ], [ -119.020146890999968, 49.219851139000092 ], [ -119.019888952999949, 49.221562507000066 ], [ -119.019732156999979, 49.222602761000076 ], [ -119.019805360999925, 49.222607513000113 ], [ -119.021667722999922, 49.222728403000183 ], [ -119.021442473999954, 49.22422312500003 ], [ -119.022803885999977, 49.224311476000025 ], [ -119.02226403, 49.227894177000046 ], [ -119.020756726999963, 49.227796357000081 ], [ -119.02073006899991, 49.227973211000098 ], [ -119.018262705999959, 49.227813039000061 ], [ -119.017558727000036, 49.227767329000152 ], [ -119.017493610999963, 49.227763101000043 ], [ -119.018092306999947, 49.226669108000095 ], [ -119.017978509999978, 49.225905805000089 ], [ -119.017221382999963, 49.224498593000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "265.4", "sL_BldgLoss": "265.4", "sL_StrLoss": "265.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000527CDF6CB1C55DC05AB7A41773BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.088556545999936, 49.461645576000109 ], [ -119.088545078, 49.461375909000019 ], [ -119.088267429, 49.461380923000021 ], [ -119.088218387999987, 49.4609403890001 ], [ -119.088092399999951, 49.460466899000089 ], [ -119.088074040999928, 49.460035044000136 ], [ -119.087964510999939, 49.460037023000069 ], [ -119.087350369999982, 49.458662877000087 ], [ -119.087170594999975, 49.458260619000043 ], [ -119.087154959999935, 49.457892643000072 ], [ -119.087007334999953, 49.457895309000023 ], [ -119.086223906, 49.456142227000029 ], [ -119.086246279999969, 49.455993169000088 ], [ -119.08623596299995, 49.455750234000057 ], [ -119.086282868999959, 49.455749388000115 ], [ -119.086594152999936, 49.453675336000096 ], [ -119.087661380999947, 49.453743584000087 ], [ -119.092081074999925, 49.454026105000068 ], [ -119.091543904999952, 49.457607921000061 ], [ -119.089277110999973, 49.457463044000114 ], [ -119.088791409999914, 49.457431995000128 ], [ -119.088832656999969, 49.458402093000075 ], [ -119.089246352999979, 49.458394618000113 ], [ -119.089303697999966, 49.459742955000145 ], [ -119.089717404999945, 49.459735477000045 ], [ -119.08979771099996, 49.46162314700009 ], [ -119.088556545999936, 49.461645576000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "227.1", "sL_BldgLoss": "227.1", "sL_StrLoss": "227.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E6F516C5A1C25DC0FE31A5DC1AAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.038113841999959, 49.329053346000109 ], [ -119.037170417999945, 49.327277070000022 ], [ -119.037244423999965, 49.326786040000059 ], [ -119.037899881999962, 49.326828382000052 ], [ -119.037904288999968, 49.326842293000112 ], [ -119.038028894999982, 49.327191191000097 ], [ -119.038327501999916, 49.32743759200013 ], [ -119.038969686999963, 49.327632806000018 ], [ -119.039475908999947, 49.327607103000034 ], [ -119.0409576099999, 49.327157084000092 ], [ -119.041410409999941, 49.327085909000083 ], [ -119.042711784999966, 49.3271670150001 ], [ -119.04269161299996, 49.327300963 ], [ -119.043415720999988, 49.32734770200004 ], [ -119.043960704999947, 49.327518794000085 ], [ -119.044398592999983, 49.32778409100009 ], [ -119.04391482199999, 49.330996977000041 ], [ -119.038976903999966, 49.330678198 ], [ -119.038113841999959, 49.329053346000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.5", "sL_BldgLoss": "41.5", "sL_StrLoss": "41.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9F7D3F3ACBA5DC0EC14ED22B3DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.916295802999969, 49.715333308000055 ], [ -118.917543555999927, 49.715312651000055 ], [ -118.917578023999951, 49.716187734000059 ], [ -118.917596668999948, 49.716661068000043 ], [ -118.917180740999953, 49.716667956000045 ], [ -118.917212605999964, 49.717477007000106 ], [ -118.915964799000022, 49.717497662000078 ], [ -118.915932955999935, 49.716688609000137 ], [ -118.916348883999902, 49.716681727000115 ], [ -118.916338196999931, 49.716410239000027 ], [ -118.916295802999969, 49.715333308000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "163", "sL_BldgLoss": "163", "sL_StrLoss": "163", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D382599957C55DC0F43E44592ECE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.08098875499995, 49.608823451000077 ], [ -119.086494117999948, 49.609174425000063 ], [ -119.085954704999892, 49.612755407000158 ], [ -119.080448916999984, 49.612404408000025 ], [ -119.08098875499995, 49.608823451000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "359.8", "sL_BldgLoss": "359.8", "sL_StrLoss": "359.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1E8CEFA31C15DC04AA1240BB59B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.016882801999927, 49.219077178000099 ], [ -119.017159015999965, 49.217245236000046 ], [ -119.014958377999932, 49.217102273000123 ], [ -119.015349817999947, 49.216622799000049 ], [ -119.015375182999932, 49.216253890000125 ], [ -119.015051587999963, 49.215404990000124 ], [ -119.014682702999949, 49.215068888000069 ], [ -119.01431844299999, 49.214888117000079 ], [ -119.014534299999966, 49.213456885000049 ], [ -119.017867801999927, 49.213673458000066 ], [ -119.018446554999954, 49.213711048000064 ], [ -119.019992304999946, 49.213811429000074 ], [ -119.01971622399995, 49.215643388000096 ], [ -119.022881236999964, 49.215848852000128 ], [ -119.022341485999917, 49.219431600000121 ], [ -119.019686480999923, 49.219259251000061 ], [ -119.018701301999954, 49.219195280000086 ], [ -119.016882801999927, 49.219077178000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5548666", "BldgCostT": "3826666", "sL_LossRatio": "1", "sL_AssetLoss": "411.5", "sL_BldgLoss": "411.5", "sL_StrLoss": "411.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E6827BD4EC65DC0646A3B3BD3B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09836878, 49.43933813800006 ], [ -119.098357268999948, 49.439068471000105 ], [ -119.09794373899993, 49.439075977000101 ], [ -119.097935140999965, 49.438874514000105 ], [ -119.09793223099993, 49.438806310000132 ], [ -119.096123851999948, 49.43883911400011 ], [ -119.095864588999973, 49.43884381600008 ], [ -119.095862714999939, 49.438799845000091 ], [ -119.095853092999931, 49.438574149000047 ], [ -119.095356145, 49.438583157000082 ], [ -119.09502604, 49.438589140000083 ], [ -119.095014546999963, 49.438319473000092 ], [ -119.094601021999921, 49.438326966000069 ], [ -119.094564245999933, 49.437463822000041 ], [ -119.093962056999928, 49.437425338000075 ], [ -119.093949531999939, 49.43750892500001 ], [ -119.093735766999899, 49.43749526300013 ], [ -119.093734515000023, 49.437503615000033 ], [ -119.093386618999929, 49.43713020400002 ], [ -119.093115718999982, 49.4366047030001 ], [ -119.093118985999979, 49.436027890000069 ], [ -119.092680998000034, 49.43546960500008 ], [ -119.092683147999963, 49.435277081000081 ], [ -119.092706704999955, 49.433166708000059 ], [ -119.093235603999915, 49.432904589000088 ], [ -119.093796180999945, 49.432823391000049 ], [ -119.094327098999912, 49.432984389000076 ], [ -119.09464331799991, 49.433327442000106 ], [ -119.094565371999977, 49.433847658000069 ], [ -119.09544623499994, 49.433903949000083 ], [ -119.09547079599993, 49.433917205000064 ], [ -119.096014799999949, 49.434078208000102 ], [ -119.096555681999945, 49.434122306000106 ], [ -119.096943788999937, 49.433999633000091 ], [ -119.097294088999973, 49.43402201300006 ], [ -119.097222320999975, 49.434501180000083 ], [ -119.097334625999935, 49.43449914300011 ], [ -119.097323121999935, 49.434229476000098 ], [ -119.09773661199992, 49.434221973000028 ], [ -119.097725106999974, 49.43395230600008 ], [ -119.098138592999959, 49.433944802000092 ], [ -119.098127084999931, 49.433675135000051 ], [ -119.098540569999926, 49.433667629000063 ], [ -119.098529060999937, 49.433397962000129 ], [ -119.100596467999978, 49.433360412000084 ], [ -119.100607990999933, 49.433630078000121 ], [ -119.101434954999959, 49.433615047000032 ], [ -119.101458007999966, 49.434154381000035 ], [ -119.102264770000019, 49.434139711000086 ], [ -119.102284983999979, 49.434139343000048 ], [ -119.102312017999935, 49.434771631000068 ], [ -119.10327003499999, 49.434832783000047 ], [ -119.104867083999977, 49.434934705000082 ], [ -119.104331128, 49.43851668500016 ], [ -119.102608229999987, 49.438406730000089 ], [ -119.09997722699994, 49.438238767000051 ], [ -119.099999866999937, 49.438768768000045 ], [ -119.099586339999931, 49.438776279000074 ], [ -119.099609374999943, 49.439315612000065 ], [ -119.09836878, 49.43933813800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "217.2", "sL_BldgLoss": "217.2", "sL_StrLoss": "217.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BBF50348DC05DC0B72A68DE1AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.006987017999947, 49.25293299700008 ], [ -119.005565705, 49.252102689000026 ], [ -119.004833210999934, 49.251323608000085 ], [ -119.004420111999977, 49.250620103000088 ], [ -119.004581809999948, 49.25018570300012 ], [ -119.004847212999948, 49.249956390000065 ], [ -119.00539801799998, 49.249964898000073 ], [ -119.006090081999957, 49.250114494000087 ], [ -119.006557113, 49.250124396000032 ], [ -119.007152599999969, 49.249880904000086 ], [ -119.007795686999927, 49.24915031200009 ], [ -119.008261311999917, 49.248431006000082 ], [ -119.008510441999988, 49.247420758000096 ], [ -119.01005755700001, 49.247521293000069 ], [ -119.010739809999919, 49.24756562000001 ], [ -119.01124059199999, 49.247598154000073 ], [ -119.011091893999918, 49.248582863000088 ], [ -119.011667343999989, 49.248620245000062 ], [ -119.011126346, 49.252202758000031 ], [ -119.009708516999922, 49.252110649000024 ], [ -119.009636546999943, 49.252587096000077 ], [ -119.009605614999927, 49.252791864000137 ], [ -119.009886377999976, 49.252810105000101 ], [ -119.009654590999943, 49.254344528000111 ], [ -119.009531649999971, 49.255158361000028 ], [ -119.006987017999947, 49.25293299700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "90.8", "sL_BldgLoss": "90.8", "sL_StrLoss": "90.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A16E6F3C0C75DC068FE5E2B1DBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.121152502999962, 49.491773539000114 ], [ -119.121164015999938, 49.491696502000117 ], [ -119.122123275999925, 49.492145994000033 ], [ -119.122736993999951, 49.492611687000093 ], [ -119.12297771599999, 49.49305750700006 ], [ -119.123018894, 49.4933708000001 ], [ -119.1228994, 49.49411998900009 ], [ -119.122732911999918, 49.494411887000076 ], [ -119.122043342000012, 49.494897205000072 ], [ -119.121934098999958, 49.494818703000114 ], [ -119.121762991999987, 49.494696189000116 ], [ -119.121374402999919, 49.494417986 ], [ -119.120612817999984, 49.493977202000039 ], [ -119.120115325000015, 49.493728150000074 ], [ -119.119903502999989, 49.493622079000062 ], [ -119.119106122999966, 49.493222857000035 ], [ -119.119340023999939, 49.49165829300005 ], [ -119.121152502999962, 49.491773539000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "280.6", "sL_BldgLoss": "280.6", "sL_StrLoss": "280.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDCCE28B97C55DC05BC0FCFC94CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.085216759, 49.603540432000102 ], [ -119.0907215229999, 49.603891195000116 ], [ -119.090182499999969, 49.607472225000045 ], [ -119.089718816999948, 49.607442691000095 ], [ -119.089532837999982, 49.608678037000111 ], [ -119.084027509999927, 49.608327216000141 ], [ -119.084567021999987, 49.604746220000095 ], [ -119.085030675, 49.604775778 ], [ -119.085216759, 49.603540432000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "1", "sL_AssetLoss": "178.2", "sL_BldgLoss": "178.2", "sL_StrLoss": "178.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F5EC3C2BFC65DC0B5055B5712B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.102650174999937, 49.424245011000046 ], [ -119.102756763999977, 49.423532626000046 ], [ -119.102243525999938, 49.423499855000088 ], [ -119.102779470999934, 49.419917807000026 ], [ -119.108262510999964, 49.420267776000053 ], [ -119.108095354999975, 49.421385925000052 ], [ -119.10860857199998, 49.421418669000104 ], [ -119.10807306199996, 49.425000738000044 ], [ -119.103831663999955, 49.424730067000056 ], [ -119.103283701999914, 49.424392111000067 ], [ -119.102650174999937, 49.424245011000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "211.6", "sL_BldgLoss": "211.6", "sL_StrLoss": "211.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D6C9A90F9C05DC0E4D8DDB0AB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.012979306999938, 49.210700890000147 ], [ -119.013157317999969, 49.209520723000011 ], [ -119.011074926999981, 49.209385341000058 ], [ -119.011316894999936, 49.207781509000107 ], [ -119.010589768999921, 49.207734227000088 ], [ -119.010581651999956, 49.207706012000138 ], [ -119.010584209999962, 49.207689061000025 ], [ -119.01114160099999, 49.207341190000115 ], [ -119.011602899999986, 49.20721578800007 ], [ -119.011668808999943, 49.206818498000104 ], [ -119.011408189999941, 49.206453896000077 ], [ -119.010825091999891, 49.20609248200013 ], [ -119.010901226000016, 49.205587845000103 ], [ -119.010948977999959, 49.205603410000101 ], [ -119.011546876999944, 49.205798293000036 ], [ -119.012086604999979, 49.20605680200002 ], [ -119.012557307999941, 49.206343979000025 ], [ -119.012796794999957, 49.206490107000022 ], [ -119.013127439999892, 49.20674179500007 ], [ -119.013160495999927, 49.206766941000083 ], [ -119.013907312999919, 49.20681560000007 ], [ -119.014981200999941, 49.206563600000102 ], [ -119.016207208999944, 49.205992503000111 ], [ -119.017267983999943, 49.205740394000024 ], [ -119.017373716999899, 49.205612201000058 ], [ -119.017219084999937, 49.205202008000114 ], [ -119.017384195999938, 49.204893004000063 ], [ -119.01732489299999, 49.204629577000048 ], [ -119.018160380999944, 49.204683857000049 ], [ -119.017752047999977, 49.207393175000099 ], [ -119.018976932, 49.207472741000089 ], [ -119.018436976999965, 49.211055514000059 ], [ -119.017097861, 49.210968528000095 ], [ -119.017078633999944, 49.210967280000077 ], [ -119.012979306999938, 49.210700890000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "88.9", "sL_BldgLoss": "88.9", "sL_StrLoss": "88.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063324DBF21C45DC0B463B8742BAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.063033117999964, 49.336365756000099 ], [ -119.068505968999943, 49.336717779000033 ], [ -119.068466475999969, 49.33698095400009 ], [ -119.066882804999949, 49.337509586000095 ], [ -119.064921885999965, 49.338048001000118 ], [ -119.064210509999938, 49.338160508000065 ], [ -119.061879405999917, 49.338337085000035 ], [ -119.061840519999919, 49.338318689000062 ], [ -119.062106447999966, 49.336548336000064 ], [ -119.062997090999914, 49.336605650000095 ], [ -119.063033117999964, 49.336365756000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58.8", "sL_BldgLoss": "58.8", "sL_StrLoss": "58.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E913922F95C25DC08CCB6561D7A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.039701764999947, 49.311957561000014 ], [ -119.03968935899999, 49.31165719800002 ], [ -119.039572943999985, 49.311659254000112 ], [ -119.039377337999923, 49.311206282000093 ], [ -119.039245338999976, 49.310900648000057 ], [ -119.039232335999941, 49.310585749000033 ], [ -119.03964480399992, 49.310578468000102 ], [ -119.039633665999958, 49.310308784000043 ], [ -119.040871064, 49.3102869310001 ], [ -119.040893353999977, 49.310826295000076 ], [ -119.041305825, 49.310819008000138 ], [ -119.041361562999896, 49.312167419000012 ], [ -119.039804268999902, 49.312194927000021 ], [ -119.039701764999947, 49.311957561000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "180.1", "sL_BldgLoss": "180.1", "sL_StrLoss": "180.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D048211CF5C55DC0D3BF2495A9B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.090611911999986, 49.425083944000072 ], [ -119.096095470999927, 49.425434526000117 ], [ -119.095558944999965, 49.429016512000075 ], [ -119.090074964999971, 49.428665905000095 ], [ -119.090611911999986, 49.425083944000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "48.3", "sL_BldgLoss": "48.3", "sL_StrLoss": "48.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5B70695FCC05DC0D87F9D9BB69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.015270394999959, 49.227618713000069 ], [ -119.015351533999933, 49.227080815000058 ], [ -119.015005021, 49.227058306000032 ], [ -119.015541934999973, 49.223498796000037 ], [ -119.012845039999931, 49.223323572000091 ], [ -119.013107564999984, 49.222472688000067 ], [ -119.01326059099992, 49.221976609000052 ], [ -119.013372951999912, 49.221231649000075 ], [ -119.013419625, 49.220922406000042 ], [ -119.013518719, 49.219484308000055 ], [ -119.01365266599997, 49.219493013 ], [ -119.013591093999977, 49.220315700000057 ], [ -119.013710720999882, 49.22055639900006 ], [ -119.015433893999912, 49.222056103000043 ], [ -119.01602631499999, 49.222801008000033 ], [ -119.016534709999945, 49.223817882000034 ], [ -119.016619118999984, 49.224562697000074 ], [ -119.01757020699992, 49.225949895000042 ], [ -119.017642091999932, 49.226407107000114 ], [ -119.017599917, 49.2267218060001 ], [ -119.017063408999988, 49.227685998000034 ], [ -119.017061654999949, 49.22773505100011 ], [ -119.015270394999959, 49.227618713000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "219.8", "sL_BldgLoss": "219.8", "sL_StrLoss": "219.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083D83E89B4C65DC0655E60B952B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.102007542999957, 49.410843580000048 ], [ -119.102069149999977, 49.410431740000092 ], [ -119.10146525199994, 49.410393166000077 ], [ -119.102001104999957, 49.406811052000059 ], [ -119.102145393999962, 49.406820268000118 ], [ -119.102217520999901, 49.406338055000035 ], [ -119.107698945999942, 49.406688059000103 ], [ -119.107565321999971, 49.407582119000018 ], [ -119.108024895999932, 49.407611452000047 ], [ -119.107489499999986, 49.411193592000096 ], [ -119.102007542999957, 49.410843580000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "99.1", "sL_BldgLoss": "99.1", "sL_StrLoss": "99.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F57F711D61C65DC0BB1B97B3EFB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.100488335999927, 49.392071231000067 ], [ -119.100476832999959, 49.391801563000065 ], [ -119.099650566999969, 49.391816577000036 ], [ -119.09963906899999, 49.391546908000052 ], [ -119.098399675999985, 49.391569419000128 ], [ -119.098388183999958, 49.391299749000069 ], [ -119.097975055999896, 49.391307251000036 ], [ -119.097963565999962, 49.391037581000035 ], [ -119.097550439999978, 49.39104508 ], [ -119.097493006999954, 49.389696735000072 ], [ -119.097906122999973, 49.389689237000077 ], [ -119.097860169999961, 49.388610560000082 ], [ -119.098273274999897, 49.388603060000037 ], [ -119.098250295999947, 49.388063722000027 ], [ -119.099335194999952, 49.388044019000077 ], [ -119.100315801999955, 49.388026202000084 ], [ -119.100338803999932, 49.388565538000073 ], [ -119.100751909999985, 49.388558030000091 ], [ -119.100786419999935, 49.38936703600011 ], [ -119.101199533999974, 49.389359526000099 ], [ -119.101234051999896, 49.390168532000047 ], [ -119.101647170999925, 49.390161019000047 ], [ -119.101681699000025, 49.39097002500003 ], [ -119.102094823999948, 49.390962511000097 ], [ -119.102129360999939, 49.391771516000027 ], [ -119.101716228999976, 49.391779030000109 ], [ -119.10171756699999, 49.391810365000012 ], [ -119.101727737999965, 49.392048698000089 ], [ -119.100488335999927, 49.392071231000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.999990023771426", "sL_AssetLoss": "606.742313", "sL_BldgLoss": "606.73626", "sL_StrLoss": "606.7", "sL_NStrLoss": "0.03626", "sL_ContLoss": "0.006053", "geom_point": "0101000020E61000004D88B13322CB5DC0500C5E2EC1E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.16876974399996, 49.757909039000054 ], [ -119.169007406, 49.756317471000074 ], [ -119.170270428999956, 49.756396713000065 ], [ -119.170344150999966, 49.755902898000052 ], [ -119.167191731999978, 49.755705087000131 ], [ -119.167374342, 49.75448242200013 ], [ -119.167415708999982, 49.75442130100005 ], [ -119.167684191999982, 49.754515307000119 ], [ -119.167875794999958, 49.754456906000073 ], [ -119.168121319999926, 49.754048202000057 ], [ -119.168430984999972, 49.753852994000063 ], [ -119.16890678599999, 49.754240403000104 ], [ -119.169103000999968, 49.75428169 ], [ -119.169346778999952, 49.754169198000064 ], [ -119.169458409999976, 49.753870085000159 ], [ -119.16939731299999, 49.753744788000112 ], [ -119.170467404999926, 49.753743408000055 ], [ -119.170594722999951, 49.753471401000112 ], [ -119.170842406999952, 49.753411489000072 ], [ -119.171235497999973, 49.75353120000004 ], [ -119.172052013999973, 49.754082292000106 ], [ -119.17229842099999, 49.75401400200009 ], [ -119.172767484999952, 49.753627995000073 ], [ -119.17272720899993, 49.753062609000033 ], [ -119.17213988599994, 49.752974301000052 ], [ -119.171864897999981, 49.752717911000083 ], [ -119.172053701000024, 49.75259830800006 ], [ -119.172114793999981, 49.752398892000031 ], [ -119.172410585999955, 49.752491497000079 ], [ -119.172558724999945, 49.752175971000078 ], [ -119.173820964999948, 49.75225513000008 ], [ -119.173698456999915, 49.753076216000096 ], [ -119.175583145999965, 49.753194383000029 ], [ -119.17517589499991, 49.753474187000052 ], [ -119.173965503999923, 49.754676190000076 ], [ -119.173860605999948, 49.754812984000097 ], [ -119.173871584999944, 49.755065007000027 ], [ -119.1746411029999, 49.755797091000062 ], [ -119.17474789399999, 49.756648790000035 ], [ -119.174961394, 49.75673560500006 ], [ -119.175460096999956, 49.756707200000079 ], [ -119.175865104999957, 49.756141784000093 ], [ -119.176260378, 49.75600929700007 ], [ -119.176565782999944, 49.755651806000174 ], [ -119.176744685999935, 49.755630500000031 ], [ -119.177501480999979, 49.755805603000042 ], [ -119.178139188000031, 49.755452410000025 ], [ -119.178476575999952, 49.755534994000058 ], [ -119.178919880999928, 49.755527901000121 ], [ -119.179578409999934, 49.755352691000041 ], [ -119.179929083999937, 49.75483430000007 ], [ -119.180010303999964, 49.754157811000049 ], [ -119.179924995999926, 49.753995916000044 ], [ -119.181192726999882, 49.754075329000081 ], [ -119.180658997999942, 49.757656042000058 ], [ -119.180353588999964, 49.75763691100007 ], [ -119.180320294999973, 49.757860249000089 ], [ -119.179104375999913, 49.757784078000057 ], [ -119.179069349999963, 49.758018977000035 ], [ -119.178752839999959, 49.757999148000124 ], [ -119.178739061999948, 49.758091552000089 ], [ -119.175515417999961, 49.758025327000048 ], [ -119.172292912, 49.757967084000072 ], [ -119.171252820999968, 49.757949327000127 ], [ -119.16992288699997, 49.757927324000022 ], [ -119.16876974399996, 49.757909039000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3581500", "BldgCostT": "2470000", "sL_LossRatio": "1", "sL_AssetLoss": "192.7", "sL_BldgLoss": "192.7", "sL_StrLoss": "192.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD5B15D104C85DC0374BF2F143BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.123324106999974, 49.493383684000015 ], [ -119.12322600499999, 49.493026208000067 ], [ -119.12273851, 49.492324089000078 ], [ -119.121729401999943, 49.491658910000091 ], [ -119.121517300999926, 49.491590171000055 ], [ -119.121546342999949, 49.491395842000067 ], [ -119.122116136, 49.491432064000016 ], [ -119.122373897999964, 49.489707057000025 ], [ -119.127865371999945, 49.490055997000056 ], [ -119.127572285999918, 49.492018951000077 ], [ -119.127795103999915, 49.492033104000058 ], [ -119.127573141999932, 49.49351963600003 ], [ -119.128192889999937, 49.493558996000047 ], [ -119.127658060999977, 49.49714078300012 ], [ -119.1276540699999, 49.497140530000138 ], [ -119.127590581999982, 49.49756568400008 ], [ -119.127375803999954, 49.497552043000056 ], [ -119.127391340999949, 49.497910349000065 ], [ -119.127136095999973, 49.497915044000131 ], [ -119.126989727999927, 49.498895094000012 ], [ -119.12660427499999, 49.498870612000118 ], [ -119.126633447999922, 49.4995435330001 ], [ -119.125720476, 49.499560319000096 ], [ -119.125698815999982, 49.499705320000047 ], [ -119.123173381999933, 49.499544869000069 ], [ -119.123831094999986, 49.498244992000096 ], [ -119.123882484999967, 49.498100413000031 ], [ -119.124041602999981, 49.497652807000122 ], [ -119.124063514999975, 49.497357687000054 ], [ -119.124065482999967, 49.497229372000085 ], [ -119.124068605999966, 49.497026204000107 ], [ -119.123983602999957, 49.49669541100014 ], [ -119.123938722999966, 49.496605285000079 ], [ -119.123933869999917, 49.496595579000015 ], [ -119.123875940999952, 49.496479229000101 ], [ -119.123841777999971, 49.496410701000038 ], [ -119.123451661999965, 49.496030150000038 ], [ -119.12311230099999, 49.495699099 ], [ -119.122713493999925, 49.495390067000059 ], [ -119.122513606999959, 49.495235198000096 ], [ -119.122354537, 49.495120874000051 ], [ -119.12220466399998, 49.495013161000031 ], [ -119.122770608999971, 49.494662608000105 ], [ -119.123009584999963, 49.494397697000082 ], [ -119.123272814999922, 49.49381659900012 ], [ -119.123324106999974, 49.493383684000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "65.3", "sL_BldgLoss": "65.3", "sL_StrLoss": "65.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099AF79F2BCAD5DC017CA91E75D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.712220020999922, 49.047764705000127 ], [ -118.717656289000018, 49.048134640000107 ], [ -118.717095031999932, 49.051716751000036 ], [ -118.711658350999969, 49.051346789000057 ], [ -118.712220020999922, 49.047764705000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41", "sL_BldgLoss": "41", "sL_StrLoss": "41", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF162CD545C25DC0D536AC4602A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.034106471, 49.306130545000066 ], [ -119.034189449999985, 49.30557995000008 ], [ -119.033909400999974, 49.305561841000042 ], [ -119.034449262999928, 49.301979503000076 ], [ -119.034921840999971, 49.302010062000086 ], [ -119.035103221999947, 49.302375783000052 ], [ -119.035156831999956, 49.302483911000074 ], [ -119.03565510199995, 49.303488400000063 ], [ -119.035824878999975, 49.303774094000069 ], [ -119.03595798899994, 49.30399810600008 ], [ -119.036010166999958, 49.304053195000051 ], [ -119.036254489999934, 49.304311191000053 ], [ -119.036693919999919, 49.304669113000124 ], [ -119.036886968999951, 49.304826368000107 ], [ -119.037028193999973, 49.30494139700005 ], [ -119.037380888, 49.305228716000059 ], [ -119.037682103999927, 49.30558448700004 ], [ -119.037899685999932, 49.305954893000077 ], [ -119.038006270000011, 49.306382645000042 ], [ -119.034106471, 49.306130545000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73.1", "sL_BldgLoss": "73.1", "sL_StrLoss": "73.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000995B8C474AB95DC0865C252F9D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.893587681999975, 49.244618323000076 ], [ -118.897892942999931, 49.244902682000081 ], [ -118.896627304999953, 49.248500792000122 ], [ -118.89662440299999, 49.248771402000038 ], [ -118.897281779999915, 49.249093292000033 ], [ -118.897553484999932, 49.249331098000027 ], [ -118.897746289999944, 49.24943534700013 ], [ -118.892693849999972, 49.249101649000067 ], [ -118.893243946999959, 49.245519718000061 ], [ -118.893447203999969, 49.245533147000117 ], [ -118.893587681999975, 49.244618323000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "37.7", "sL_BldgLoss": "37.7", "sL_StrLoss": "37.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EBAD1E8357B95DC08C868C4729A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.893509395999942, 49.272726006000042 ], [ -118.898973440999924, 49.273086641000084 ], [ -118.898423457999925, 49.276668452000052 ], [ -118.892958995999933, 49.276307790000033 ], [ -118.893509395999942, 49.272726006000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "98.7", "sL_BldgLoss": "98.7", "sL_StrLoss": "98.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007FC5B70377C45DC0A5CC727E2FBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.06702844599999, 49.45651 ], [ -119.067118745999949, 49.455910052000021 ], [ -119.06647376799998, 49.455868686000066 ], [ -119.067012859999963, 49.45228698500005 ], [ -119.072499468999951, 49.452638746000034 ], [ -119.072409244999946, 49.45323870200005 ], [ -119.073054190999954, 49.453280033000084 ], [ -119.072515555999985, 49.456861758000031 ], [ -119.06702844599999, 49.45651 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "65.4", "sL_BldgLoss": "65.4", "sL_StrLoss": "65.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000097B8E1B9EFAA5DC0E983C025DB894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.668444749999964, 49.075023396000077 ], [ -118.673883849999967, 49.075395530000058 ], [ -118.67341646899996, 49.078358733000066 ], [ -118.673318900999959, 49.078977260000066 ], [ -118.66787938899999, 49.078605099000121 ], [ -118.668093411999962, 49.077249281000071 ], [ -118.668444749999964, 49.075023396000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "124.4", "sL_BldgLoss": "124.4", "sL_StrLoss": "124.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000976625730DAB5DC0A6415575248F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.67261022, 49.115871546000029 ], [ -118.674297149999916, 49.115986818000117 ], [ -118.674906408999945, 49.116280100000047 ], [ -118.67552458599998, 49.116703098000137 ], [ -118.675665194999965, 49.116835511000019 ], [ -118.675657889999982, 49.117043510000045 ], [ -118.675012010999978, 49.118168589000099 ], [ -118.675101006999938, 49.118382191000087 ], [ -118.675913518999934, 49.118602533000129 ], [ -118.675739436, 49.119705481000089 ], [ -118.675434764999977, 49.119684670000076 ], [ -118.675406182999936, 49.119865744 ], [ -118.675326352999932, 49.120371488000089 ], [ -118.675014750999949, 49.120350202000125 ], [ -118.67496635199997, 49.120656796000034 ], [ -118.669521958999965, 49.120284742000088 ], [ -118.66966041799995, 49.119408268 ], [ -118.670087700999943, 49.116703261000112 ], [ -118.670399275999984, 49.116724561000062 ], [ -118.6704477, 49.116417968000114 ], [ -118.670752346999933, 49.116438793000086 ], [ -118.67086081799998, 49.115751975000158 ], [ -118.67261022, 49.115871546000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "75.1", "sL_BldgLoss": "75.1", "sL_StrLoss": "75.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C52454575BB35DC03BEE4A813BCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.799980824999963, 49.577968467000034 ], [ -118.805480319999987, 49.578333670000113 ], [ -118.804919430999973, 49.581913389000078 ], [ -118.799419512999947, 49.581548161000057 ], [ -118.799980824999963, 49.577968467000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "256.6", "sL_BldgLoss": "256.6", "sL_StrLoss": "256.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000597C96295EB85DC0CF6782D9EBA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.877015791999938, 49.323321932000063 ], [ -118.877286851999912, 49.321563948000041 ], [ -118.876224483999962, 49.321493715000052 ], [ -118.876487243999961, 49.319789670000084 ], [ -118.875161786999954, 49.319702029000062 ], [ -118.876101816999906, 49.31853630600002 ], [ -118.876751007999943, 49.317500892000105 ], [ -118.877351408999942, 49.316303208000072 ], [ -118.877350216999972, 49.316228750000057 ], [ -118.880240101999973, 49.316419767000127 ], [ -118.879981599999951, 49.318097221000102 ], [ -118.88057176199996, 49.318136221000046 ], [ -118.880839120999923, 49.316401146000061 ], [ -118.886308213999953, 49.316762399000034 ], [ -118.885756732999965, 49.320343910000119 ], [ -118.883748394999927, 49.32021128500002 ], [ -118.883481122999967, 49.321946357000044 ], [ -118.883273688, 49.321932657000097 ], [ -118.883012991999976, 49.32362486300007 ], [ -118.882499909000032, 49.323590974000119 ], [ -118.882485672999934, 49.323683374000019 ], [ -118.877015791999938, 49.323321932000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73.8", "sL_BldgLoss": "73.8", "sL_StrLoss": "73.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F901604E2AD5DC08E249C71F5814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.714484222999928, 49.013326750000061 ], [ -118.719916497999975, 49.013696590000102 ], [ -118.719355829999984, 49.017278906000072 ], [ -118.717891402999939, 49.017179233000078 ], [ -118.717053876999941, 49.017122219000015 ], [ -118.713923140999952, 49.016909039000062 ], [ -118.714484222999928, 49.013326750000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "75.4", "sL_BldgLoss": "75.4", "sL_StrLoss": "75.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F407772511AC5DC0835AE39EF4934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.686348457999912, 49.153922143000067 ], [ -118.69152888399999, 49.154275072000068 ], [ -118.691210090999959, 49.154833413000098 ], [ -118.690640485999907, 49.156190704000089 ], [ -118.690721809999971, 49.15655809400009 ], [ -118.691084178999944, 49.157129296000051 ], [ -118.691254277999988, 49.157735893000073 ], [ -118.691232393999925, 49.157874714000037 ], [ -118.685783516999919, 49.157503504000069 ], [ -118.686348457999912, 49.153922143000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "46.3", "sL_BldgLoss": "46.3", "sL_StrLoss": "46.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000675E50D741B25DC08BF21659FCCC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.782799008999945, 49.599478239000078 ], [ -118.788300935999956, 49.599844298000093 ], [ -118.787738447999985, 49.603423819000071 ], [ -118.782236098999959, 49.60305773200011 ], [ -118.782799008999945, 49.599478239000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8E6529E31B05DC060329FBDC4D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.751093166999922, 49.64464004400007 ], [ -118.75560574899994, 49.644941314000036 ], [ -118.755040165999915, 49.648520434000083 ], [ -118.749532683999988, 49.648152717000109 ], [ -118.749562103999949, 49.647966703000044 ], [ -118.749894398999956, 49.647944587000083 ], [ -118.750300411999959, 49.647695309000071 ], [ -118.750553980999953, 49.647413293000099 ], [ -118.751149217999938, 49.645900808000121 ], [ -118.751093166999922, 49.64464004400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "148.9", "sL_BldgLoss": "148.9", "sL_StrLoss": "148.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD814DC646C05DC02F18D83AA39A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.002626685999957, 49.210098604000045 ], [ -119.002844113999913, 49.208659216000036 ], [ -119.000634619999971, 49.208515352000127 ], [ -119.00117591899999, 49.204932654000061 ], [ -119.001478704999968, 49.204952373 ], [ -119.002002209999944, 49.205235108000117 ], [ -119.005071802999964, 49.206647914000044 ], [ -119.006094237999918, 49.207124832000041 ], [ -119.006500376999924, 49.207314307000026 ], [ -119.007355307999958, 49.207747999000084 ], [ -119.007679624999923, 49.207972607000045 ], [ -119.008032424999939, 49.2082823020001 ], [ -119.008360500999956, 49.208623230000129 ], [ -119.008084205999978, 49.210453752000092 ], [ -119.002626685999957, 49.210098604000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "123.3", "sL_BldgLoss": "123.3", "sL_StrLoss": "123.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000093D264ADBEA85DC0FCA5EAC39F904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.634666625999955, 49.127730392000032 ], [ -118.64011161099998, 49.128104204000095 ], [ -118.63980085699994, 49.130062948000088 ], [ -118.639543424999971, 49.131685464000036 ], [ -118.63867231799999, 49.13162568000012 ], [ -118.638609603999925, 49.132020885000074 ], [ -118.633164171999965, 49.131646998000029 ], [ -118.633208229, 49.131369570000068 ], [ -118.633732847999923, 49.128065772000063 ], [ -118.634603883999887, 49.128125597000086 ], [ -118.634666625999955, 49.127730392000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.8", "sL_BldgLoss": "55.8", "sL_StrLoss": "55.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FAF98426A8C75DC06B76EE8769BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.118139031999988, 49.497924321000092 ], [ -119.118601243999976, 49.494833240000055 ], [ -119.118557186, 49.494834048000101 ], [ -119.118510607999923, 49.493755406000048 ], [ -119.119027919999937, 49.493745927000063 ], [ -119.119106122999966, 49.493222857000035 ], [ -119.119903502999989, 49.493622079000062 ], [ -119.120115325000015, 49.493728150000074 ], [ -119.120612817999984, 49.493977202000039 ], [ -119.121374402999919, 49.494417986 ], [ -119.121762991999987, 49.494696189000116 ], [ -119.121934098999958, 49.494818703000114 ], [ -119.122043342000012, 49.494897205000072 ], [ -119.12030640899998, 49.496119591000074 ], [ -119.119712912999958, 49.496733391000106 ], [ -119.119164581999982, 49.497508194000041 ], [ -119.118981037999959, 49.497977866000078 ], [ -119.118139031999988, 49.497924321000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.2", "sL_BldgLoss": "44.2", "sL_StrLoss": "44.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000003A74601C5B25DC0C4F06CEA97CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.792386241999964, 49.592138904000102 ], [ -118.792567034999962, 49.590987404000053 ], [ -118.791682925999964, 49.590928624000099 ], [ -118.792054346, 49.588563085000068 ], [ -118.792550686999959, 49.588767209000103 ], [ -118.794375488999918, 49.589863909000044 ], [ -118.795053483999965, 49.590960495000097 ], [ -118.794962081999955, 49.591510301000056 ], [ -118.79461652399999, 49.591866304000028 ], [ -118.794233697999928, 49.591988805000035 ], [ -118.792704080999968, 49.592175393000055 ], [ -118.792386241999964, 49.592138904000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "71.3", "sL_BldgLoss": "71.3", "sL_StrLoss": "71.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F4545DE6AB05DC066097C8FC4854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.754083791999975, 49.043085941000079 ], [ -118.759519846999979, 49.043453760000084 ], [ -118.75896186199999, 49.047036116000086 ], [ -118.753525393999951, 49.046668270000055 ], [ -118.754083791999975, 49.043085941000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "98.3", "sL_BldgLoss": "98.3", "sL_StrLoss": "98.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000002EF05E20CBE5DC0A18478A816974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.968128210999936, 49.182057722000053 ], [ -118.968341233999951, 49.180653562000089 ], [ -118.968016917999989, 49.180659091000066 ], [ -118.968038313999983, 49.181198491000046 ], [ -118.967626904999975, 49.181205505000037 ], [ -118.967637601, 49.181475205000055 ], [ -118.966680703999927, 49.181491511000011 ], [ -118.966399146999962, 49.181389930000115 ], [ -118.966392671000037, 49.181226534000061 ], [ -118.965759979999973, 49.181237309000032 ], [ -118.965152763, 49.181104261000073 ], [ -118.965147753999958, 49.180977850000076 ], [ -118.964736344999935, 49.180984851000119 ], [ -118.964725666000021, 49.180715151000037 ], [ -118.964314256999984, 49.180722152000051 ], [ -118.964292901999968, 49.180182750000071 ], [ -118.964121774999953, 49.180185660000099 ], [ -118.964368390999965, 49.179754202000055 ], [ -118.964729534999961, 49.178825904000092 ], [ -118.966296470999936, 49.178799226000123 ], [ -118.966285782999989, 49.178529525000094 ], [ -118.969165499999974, 49.178480440000023 ], [ -118.96917402099993, 49.178695158000068 ], [ -118.974097153999963, 49.179017319000053 ], [ -118.973554070999967, 49.182600022 ], [ -118.968352421999967, 49.1822596310001 ], [ -118.96817940399994, 49.182082788000045 ], [ -118.968128210999936, 49.182057722000053 ] ], [ [ -118.968410314999929, 49.180198185000037 ], [ -118.968464375999972, 49.17984181300011 ], [ -118.968396221999939, 49.179842975000049 ], [ -118.968410314999929, 49.180198185000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "68.7", "sL_BldgLoss": "68.7", "sL_StrLoss": "68.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000745AF95DBFA85DC0294D3915DF844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.638688948999942, 49.036385761000062 ], [ -118.639680920999965, 49.036453989000023 ], [ -118.639113817999913, 49.040035756000037 ], [ -118.633679119999954, 49.039661842000058 ], [ -118.633824888999968, 49.038741904000091 ], [ -118.634246634999954, 49.036080101000053 ], [ -118.638688948999942, 49.036385761000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027AE5BEBE8AE5DC0506C687786D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.734135290999973, 49.665674862000067 ], [ -118.735858013999945, 49.665790112000131 ], [ -118.73529063899997, 49.669369023000037 ], [ -118.734508024999982, 49.669316670000093 ], [ -118.734490507999965, 49.669427140000053 ], [ -118.73371454699999, 49.669375227000081 ], [ -118.73369257899999, 49.669513758000043 ], [ -118.733360191999935, 49.66949151900009 ], [ -118.733243397999956, 49.670227967000081 ], [ -118.728050466999917, 49.669880385000077 ], [ -118.72804660299991, 49.669870305000082 ], [ -118.72813419499991, 49.669616796000099 ], [ -118.728340591999952, 49.6695326870001 ], [ -118.729487206, 49.669417385000052 ], [ -118.729940621000011, 49.669301999000083 ], [ -118.730156879, 49.669155294000085 ], [ -118.730582674999937, 49.668672492000027 ], [ -118.731090296999966, 49.667755314000019 ], [ -118.731756404999913, 49.667017609000062 ], [ -118.73307470899999, 49.6662414050001 ], [ -118.733919984999915, 49.665851101000086 ], [ -118.734135290999973, 49.665674862000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "77.7", "sL_BldgLoss": "77.7", "sL_StrLoss": "77.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088C32D7A82AC5DC0D45B0BCC6D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.693855309999961, 49.165436072000112 ], [ -118.698230540999973, 49.165733775000078 ], [ -118.697666368999947, 49.169315133000076 ], [ -118.692216099999953, 49.168944256000017 ], [ -118.692309554999937, 49.168351478000062 ], [ -118.69276300599995, 49.168142704000033 ], [ -118.693000488999957, 49.167869203000095 ], [ -118.693076596999958, 49.16768829100004 ], [ -118.692928915999929, 49.167374999000074 ], [ -118.693086998999945, 49.166806803000028 ], [ -118.69335340899994, 49.166199999000121 ], [ -118.693838797999959, 49.165499290000078 ], [ -118.693855309999961, 49.165436072000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "75", "sL_BldgLoss": "75", "sL_StrLoss": "75", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000076B73EEED3AD5DC066B864C9DA844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.713623377999909, 49.035950800000087 ], [ -118.71905828099996, 49.036320672000031 ], [ -118.718816765999918, 49.037862888000113 ], [ -118.718497273999958, 49.039902856 ], [ -118.713061957999983, 49.039532958000073 ], [ -118.713063264999946, 49.039524622000066 ], [ -118.713623377999909, 49.035950800000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "76", "sL_BldgLoss": "76", "sL_StrLoss": "76", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003CB1FB4C85B95DC045AC5151EDA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.896265133999975, 49.294347832000064 ], [ -118.901731746999985, 49.294708315999983 ], [ -118.9011817199999, 49.298290024000096 ], [ -118.895718711999933, 49.297929779000029 ], [ -118.896155892999957, 49.297500805000091 ], [ -118.896154888, 49.297131907000114 ], [ -118.895891374999962, 49.296779912000069 ], [ -118.896265133999975, 49.294347832000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "113", "sL_BldgLoss": "113", "sL_StrLoss": "113", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B946572B8BB95DC092859E831DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.897070468999956, 49.268164124000116 ], [ -118.897117954999928, 49.267854881000083 ], [ -118.894780218, 49.267700562000073 ], [ -118.895060861999951, 49.265873478000096 ], [ -118.895430898, 49.265693888000143 ], [ -118.896098587999958, 49.26516118900004 ], [ -118.897539781999953, 49.264390704000036 ], [ -118.897663716999929, 49.264272751000128 ], [ -118.898759476999956, 49.264345066 ], [ -118.898796810999954, 49.264577306000078 ], [ -118.899174898999959, 49.265092905000081 ], [ -118.899383917999927, 49.265196807000095 ], [ -118.900098510999939, 49.265185398 ], [ -118.900708595999902, 49.264950411000051 ], [ -118.900933827, 49.264800910000112 ], [ -118.903083570999982, 49.264942706000106 ], [ -118.902534001999982, 49.268524582000076 ], [ -118.897070468999956, 49.268164124000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3272167", "BldgCostT": "2256667", "sL_LossRatio": "1", "sL_AssetLoss": "138.8", "sL_BldgLoss": "138.8", "sL_StrLoss": "138.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B8E63FB7BAC5DC0EDAE58680C864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.692223432999981, 49.052091345000086 ], [ -118.692370451999921, 49.051156304000123 ], [ -118.691239764999949, 49.051079121000086 ], [ -118.691776994999913, 49.047662533000079 ], [ -118.691778183999958, 49.047654971000085 ], [ -118.691770690999974, 49.047434179000085 ], [ -118.691658801999935, 49.047426540000082 ], [ -118.690474877999947, 49.047345708000108 ], [ -118.69091480099992, 49.044548059000086 ], [ -118.691038126999928, 49.043763712000022 ], [ -118.69256186399997, 49.043867743000071 ], [ -118.693350452999979, 49.04392157400008 ], [ -118.69419465699994, 49.043979195000048 ], [ -118.694372232999939, 49.042849284000063 ], [ -118.694573226, 49.042863002000047 ], [ -118.694625040999981, 49.04253329000008 ], [ -118.696694121999926, 49.042674483000027 ], [ -118.700060557999933, 49.042904118000074 ], [ -118.699498013999985, 49.046486167000069 ], [ -118.69929700499992, 49.046472458000082 ], [ -118.699245219999952, 49.046802170000014 ], [ -118.6960884759999, 49.046586837000049 ], [ -118.695910924999964, 49.047716744000098 ], [ -118.69341680199993, 49.04754654300006 ], [ -118.693418868999956, 49.047607440000064 ], [ -118.697239074999914, 49.047868110000074 ], [ -118.697092163999955, 49.048803162000098 ], [ -118.698222805999947, 49.048880285000031 ], [ -118.697660047999989, 49.052462290000037 ], [ -118.692933172999957, 49.052139788000026 ], [ -118.692223432999981, 49.052091345000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "216.7", "sL_BldgLoss": "216.7", "sL_StrLoss": "216.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5BC1B0BCAAE5DC0401C1CD3B0834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.735687172999945, 49.026051033000073 ], [ -118.7376552899999, 49.026184627000085 ], [ -118.737095832999955, 49.029766965000064 ], [ -118.732897928999975, 49.029481972000013 ], [ -118.732685001999954, 49.030844462000104 ], [ -118.730395997999921, 49.030688993000098 ], [ -118.730196055999954, 49.031967915000031 ], [ -118.7286562419999, 49.031863302000083 ], [ -118.724761570999988, 49.031598605000092 ], [ -118.725321997999941, 49.028016341000097 ], [ -118.727610853999934, 49.028171920000034 ], [ -118.72781085099993, 49.02689299500004 ], [ -118.732008488999952, 49.027178188000036 ], [ -118.732221419999959, 49.025815692000023 ], [ -118.735687172999945, 49.026051033000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "68.8", "sL_BldgLoss": "68.8", "sL_StrLoss": "68.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016AE607EDBB75DC076B2CC0977AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.871342412999965, 49.329820570000038 ], [ -118.874827921999938, 49.330051071000099 ], [ -118.874586008999984, 49.33044409900009 ], [ -118.874389896999944, 49.331067905000104 ], [ -118.874370698999925, 49.331671788000108 ], [ -118.874514619999928, 49.332200205000099 ], [ -118.87454040199998, 49.332882406000166 ], [ -118.874305133999911, 49.333634418000059 ], [ -118.870789621999933, 49.333401935000118 ], [ -118.871342412999965, 49.329820570000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "107.4", "sL_BldgLoss": "107.4", "sL_StrLoss": "107.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B1F3BFB4CB35DC09FA9194AD4CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.798731252999985, 49.586670830000102 ], [ -118.798870208999944, 49.585784902000107 ], [ -118.798354198999945, 49.585750622000077 ], [ -118.798915645999969, 49.582170956000041 ], [ -118.804415633999909, 49.582536210000107 ], [ -118.80427679499995, 49.583422149000036 ], [ -118.804792781999964, 49.583456401000021 ], [ -118.80423177599998, 49.587036090000062 ], [ -118.798731252999985, 49.586670830000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2015500", "BldgCostT": "1390000", "sL_LossRatio": "1", "sL_AssetLoss": "83", "sL_BldgLoss": "83", "sL_StrLoss": "83", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E75411F2EAB25DC02B4F074F74CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.794046391999984, 49.593710700000074 ], [ -118.793899398999912, 49.593487113000073 ], [ -118.792977299999976, 49.59362810600004 ], [ -118.79238070199996, 49.593582486000102 ], [ -118.792168588, 49.593525106000087 ], [ -118.792330092999947, 49.592496525000058 ], [ -118.793529592999946, 49.592423192000055 ], [ -118.7949727, 49.592139795000044 ], [ -118.795273103999989, 49.592062898000059 ], [ -118.795459722999951, 49.591853505000067 ], [ -118.795560083999987, 49.590853693000028 ], [ -118.79532692199993, 49.590154404000081 ], [ -118.794604989999982, 49.589284215000092 ], [ -118.792768394999953, 49.588270192000081 ], [ -118.791082804999988, 49.587615490000054 ], [ -118.79154022699997, 49.584702196000052 ], [ -118.797040457999941, 49.585067821000067 ], [ -118.79663675799999, 49.587640939000096 ], [ -118.797745508000034, 49.587714607000073 ], [ -118.797364583999965, 49.590142650000097 ], [ -118.800080396999959, 49.590323049000069 ], [ -118.799518941999935, 49.593902678000084 ], [ -118.797687088999965, 49.593781005000089 ], [ -118.797635072999967, 49.594112521000099 ], [ -118.794028194999953, 49.593872857000065 ], [ -118.794046391999984, 49.593710700000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "303.9", "sL_BldgLoss": "303.9", "sL_StrLoss": "303.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004831E5E816AB5DC072D6D09B448D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.670016698999959, 49.110626779000064 ], [ -118.670071311999948, 49.110280970000062 ], [ -118.669784714999977, 49.110261374000082 ], [ -118.669911392999893, 49.109459261000062 ], [ -118.66912894799998, 49.109405758000023 ], [ -118.66945509899999, 49.107340688000072 ], [ -118.66898527799998, 49.107308559000025 ], [ -118.669550903999891, 49.103727009000046 ], [ -118.672215113999982, 49.103909177000133 ], [ -118.672635401999941, 49.101246571000125 ], [ -118.672635920999966, 49.101246607000078 ], [ -118.672635987999953, 49.101235273000107 ], [ -118.67055543099994, 49.101093018000014 ], [ -118.670615283999979, 49.100713920000025 ], [ -118.670486554999982, 49.100705117000082 ], [ -118.670556580999971, 49.100261581000076 ], [ -118.670469383999915, 49.100255618000091 ], [ -118.670539927999954, 49.099808797000016 ], [ -118.670373508999916, 49.099797416000044 ], [ -118.67050981199999, 49.098934084000113 ], [ -118.670384564999964, 49.098925519000041 ], [ -118.670466377999929, 49.098407316000134 ], [ -118.670213393999916, 49.098390015000113 ], [ -118.670275303999972, 49.097997885000062 ], [ -118.670274320999965, 49.097997818000081 ], [ -118.670839734999987, 49.094416210000112 ], [ -118.671096796999961, 49.094433790000025 ], [ -118.671113422999923, 49.094328460000035 ], [ -118.671045985999953, 49.094323848000023 ], [ -118.671611295999952, 49.090742216000088 ], [ -118.672188051999981, 49.090781658000033 ], [ -118.672420535999919, 49.089308430000152 ], [ -118.673234811999947, 49.089364111000094 ], [ -118.67325290299999, 49.089249448000075 ], [ -118.673301206999966, 49.089252751000103 ], [ -118.673143436999922, 49.089889800000037 ], [ -118.673058592999965, 49.090269482000053 ], [ -118.673042441999939, 49.091284809000058 ], [ -118.673055350999931, 49.0922739230001 ], [ -118.674222597999972, 49.095265812000072 ], [ -118.673239844999927, 49.096224032000087 ], [ -118.673114252999966, 49.097065065000038 ], [ -118.673103414999943, 49.097163595000076 ], [ -118.673003523999981, 49.098203935000107 ], [ -118.672979803999922, 49.09885826900004 ], [ -118.673179205999972, 49.100222091000042 ], [ -118.673110851999965, 49.104702001000078 ], [ -118.673085549999925, 49.106328687000072 ], [ -118.673043050999965, 49.108405497000035 ], [ -118.673045849999937, 49.108523818 ], [ -118.673171629999985, 49.108523864000055 ], [ -118.673781424999945, 49.10852414400005 ], [ -118.677959981999919, 49.108440131000066 ], [ -118.678166664999964, 49.108323939000051 ], [ -118.678319187999989, 49.108238195000055 ], [ -118.678484993999987, 49.108235972000081 ], [ -118.6809005699999, 49.108203656000079 ], [ -118.682051529999967, 49.108188217000112 ], [ -118.681654715, 49.110704974000043 ], [ -118.680753747999944, 49.110643467000045 ], [ -118.680743776999975, 49.11070669500009 ], [ -118.678921146999969, 49.110582244000021 ], [ -118.678958684999898, 49.110455105000021 ], [ -118.678897509999942, 49.11025850500004 ], [ -118.678743700000027, 49.110178803000082 ], [ -118.678608582, 49.110208692000086 ], [ -118.678491849999972, 49.110552926000075 ], [ -118.677670198999948, 49.110496809000097 ], [ -118.67676990199999, 49.110435313000018 ], [ -118.676711810999933, 49.110803487000041 ], [ -118.675503815999974, 49.110720961 ], [ -118.67545996799997, 49.11099881400002 ], [ -118.670016698999959, 49.110626779000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "75.3", "sL_BldgLoss": "75.3", "sL_StrLoss": "75.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3AF48C066AC5DC0F3D5234799834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.691369507999937, 49.030267376000033 ], [ -118.691526867999968, 49.029266180000043 ], [ -118.690176536999928, 49.029173946000114 ], [ -118.690405766, 49.027715674000106 ], [ -118.690739587999957, 49.025591850000076 ], [ -118.69246015799996, 49.025709371000069 ], [ -118.696173103, 49.025962885000077 ], [ -118.696015853999967, 49.02696409200005 ], [ -118.697366132999917, 49.027056254000044 ], [ -118.696803572999954, 49.030638377000074 ], [ -118.694777016999964, 49.030500051000125 ], [ -118.691369507999937, 49.030267376000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "81.1", "sL_BldgLoss": "81.1", "sL_StrLoss": "81.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BB56A19A1AB5DC018FA168C80924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.679266754999986, 49.142571448000055 ], [ -118.68471383399999, 49.142942995000112 ], [ -118.684148897999961, 49.146524409000094 ], [ -118.678701404999956, 49.146152835000109 ], [ -118.679266754999986, 49.142571448000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "83.1", "sL_BldgLoss": "83.1", "sL_StrLoss": "83.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006584BF78E9B75DC04304FB33ACAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.870625174999958, 49.370658974000051 ], [ -118.876100596999919, 49.371020714000082 ], [ -118.875547680999944, 49.374601883000039 ], [ -118.87285902299999, 49.374424290000093 ], [ -118.872049725999943, 49.37316190500006 ], [ -118.870909985999958, 49.3717860960001 ], [ -118.870546601999948, 49.371167531000083 ], [ -118.870625174999958, 49.370658974000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "108.3", "sL_BldgLoss": "108.3", "sL_StrLoss": "108.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E7272B752AA5DC08A79B18B7D8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.659408768999981, 49.08774803000005 ], [ -118.664849279999942, 49.088120614000097 ], [ -118.664683508999957, 49.089170037000024 ], [ -118.664283482999934, 49.091702226000038 ], [ -118.663214024999931, 49.091629008000012 ], [ -118.663188640999962, 49.09178965100007 ], [ -118.658228838999932, 49.091449949000065 ], [ -118.657747714, 49.091416984000055 ], [ -118.658314009999941, 49.087835406000082 ], [ -118.65938337399993, 49.087908673000094 ], [ -118.659408768999981, 49.08774803000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "79.1", "sL_BldgLoss": "79.1", "sL_StrLoss": "79.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B5AD128D5AC5DC0A5BCB96C32854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.698073896999915, 49.038624956000085 ], [ -118.703508987999925, 49.038995612000122 ], [ -118.703416155999889, 49.039587108 ], [ -118.703355881999954, 49.039971134000076 ], [ -118.702946755999932, 49.042577700000081 ], [ -118.697511250999966, 49.042207018000042 ], [ -118.697628686999948, 49.041459419000041 ], [ -118.698073896999915, 49.038624956000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.2", "sL_BldgLoss": "37.2", "sL_StrLoss": "37.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9A3C25CBBB65DC0AC00BE5F75854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.852741201999919, 49.044782878000042 ], [ -118.853287090999956, 49.041231690000103 ], [ -118.858004996999938, 49.041546544000049 ], [ -118.857998212999917, 49.04165263900012 ], [ -118.858003906999926, 49.041805463000074 ], [ -118.858009580999962, 49.041958322000013 ], [ -118.858042642999976, 49.042110715000078 ], [ -118.858116695999939, 49.042262467000086 ], [ -118.858244817999946, 49.042395340000098 ], [ -118.858372952, 49.042528235000091 ], [ -118.858488391999941, 49.042688277000074 ], [ -118.85854433599998, 49.042762298000085 ], [ -118.858462189999955, 49.043297099000036 ], [ -118.858312351999956, 49.043247621000063 ], [ -118.858289996999986, 49.043240248000075 ], [ -118.85809583799994, 49.043171426000136 ], [ -118.857874684999899, 49.043112004000115 ], [ -118.857654184999916, 49.043070572000026 ], [ -118.85740667099995, 49.043038574000065 ], [ -118.857172814999913, 49.04300635300006 ], [ -118.856952671999977, 49.04297392400008 ], [ -118.85667947499995, 49.04298730599999 ], [ -118.85649031699991, 49.043053326000098 ], [ -118.856301883999947, 49.043137314000099 ], [ -118.856127089999973, 49.043221116000055 ], [ -118.855937965999956, 49.043287123000056 ], [ -118.85573449099995, 49.043335371000104 ], [ -118.855517005999971, 49.043374837000044 ], [ -118.85531384799998, 49.043432096000096 ], [ -118.855138732999961, 49.043506882000052 ], [ -118.854950612999971, 49.043599883000091 ], [ -118.854777177999935, 49.043719620000047 ], [ -118.854645071999954, 49.043847696000071 ], [ -118.854512309999947, 49.043957781000074 ], [ -118.854394923999948, 49.044112586000068 ], [ -118.854290183999922, 49.044240230000078 ], [ -118.85419878499999, 49.044358641000045 ], [ -118.854052662999905, 49.044477935000039 ], [ -118.853891890999961, 49.044570480000054 ], [ -118.853633700999978, 49.044619630000057 ], [ -118.853387862999952, 49.044632574000069 ], [ -118.853143701999912, 49.044690471000081 ], [ -118.852926522999951, 49.044738943000041 ], [ -118.852741201999919, 49.044782878000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "62.4", "sL_BldgLoss": "62.4", "sL_StrLoss": "62.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A229D8D2E5AB5DC0B92BA2C3CF884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.687594011000016, 49.067145798000062 ], [ -118.688903407999987, 49.067235190000083 ], [ -118.68833971299992, 49.070817045000069 ], [ -118.686461612999949, 49.070688822000065 ], [ -118.682901031999904, 49.070445639000042 ], [ -118.683465140999957, 49.066863811000133 ], [ -118.687594011000016, 49.067145798000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "45.3", "sL_BldgLoss": "45.3", "sL_StrLoss": "45.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008EFD13F901C35DC04BC395583EBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.044521220999968, 49.476497942000059 ], [ -119.050010532999963, 49.476850828000124 ], [ -119.049469835999986, 49.480432316000069 ], [ -119.04398010199999, 49.48007940400003 ], [ -119.044521220999968, 49.476497942000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.8", "sL_BldgLoss": "39.8", "sL_StrLoss": "39.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083A5786405AC5DC0690D109226914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.686184050999913, 49.135611952 ], [ -118.686195175999956, 49.135538196000049 ], [ -118.685981590999944, 49.135288999000061 ], [ -118.686196141999972, 49.134910502 ], [ -118.686639513, 49.134128305000061 ], [ -118.686904508999987, 49.13345889900009 ], [ -118.687041691, 49.132206997000011 ], [ -118.687139620999943, 49.132057122 ], [ -118.689332979999961, 49.132206640000064 ], [ -118.688768532000012, 49.135788136000073 ], [ -118.687797932999928, 49.135721979000088 ], [ -118.686864614999948, 49.135658352000036 ], [ -118.686841903999948, 49.135636495000028 ], [ -118.686579810999945, 49.135595201000122 ], [ -118.686546530999962, 49.135636666000067 ], [ -118.686184050999913, 49.135611952 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "73.8", "sL_BldgLoss": "73.8", "sL_StrLoss": "73.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000105ACD4254BC5DC065EE10B5A39B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.940949692999936, 49.213978510000054 ], [ -118.946407194999964, 49.214336777000085 ], [ -118.945861563999955, 49.217919147000032 ], [ -118.944346657, 49.217819727000126 ], [ -118.944336197000027, 49.217888382000083 ], [ -118.938878293999934, 49.217530012000104 ], [ -118.93942445799999, 49.213947674000082 ], [ -118.940939228, 49.2140471640001 ], [ -118.940949692999936, 49.213978510000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "38.8", "sL_BldgLoss": "38.8", "sL_StrLoss": "38.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E28A2576AAC5DC04EF5BFB7C4974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.691546971999955, 49.183714751000117 ], [ -118.696998967999917, 49.184085654000064 ], [ -118.696434478999905, 49.187666906000089 ], [ -118.690982068000011, 49.18729597600008 ], [ -118.691546971999955, 49.183714751000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "87.9", "sL_BldgLoss": "87.9", "sL_StrLoss": "87.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E005BE603FB75DC089008EDAD0834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.86130687, 49.0275476300001 ], [ -118.862351365999984, 49.027617297000077 ], [ -118.86312390499991, 49.027929400000069 ], [ -118.863663943999939, 49.028241172000037 ], [ -118.863845186999967, 49.028345802000032 ], [ -118.864936331999928, 49.029230031000012 ], [ -118.865089807999979, 49.029354389000034 ], [ -118.865470746999947, 49.029663084000035 ], [ -118.865981815999973, 49.030077193000075 ], [ -118.866350971999907, 49.030459148000077 ], [ -118.866192383999987, 49.031493027000103 ], [ -118.860756888999916, 49.031130599000051 ], [ -118.86130687, 49.0275476300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E77926EABBAA5DC0CACE914B52844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.667160619999919, 49.035882291000064 ], [ -118.667151603000022, 49.035612538000066 ], [ -118.666741325999965, 49.035618467000042 ], [ -118.666735473999964, 49.035443380000082 ], [ -118.664716566999971, 49.035305020000138 ], [ -118.664924607999978, 49.033986359000075 ], [ -118.665281647999947, 49.031723091000067 ], [ -118.670715672999947, 49.032095411000029 ], [ -118.670524272999913, 49.033309620000097 ], [ -118.670151005999983, 49.035677366000087 ], [ -118.668792558999925, 49.035584316000019 ], [ -118.668801734999974, 49.035858564000087 ], [ -118.667160619999919, 49.035882291000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6425917", "BldgCostT": "4431667", "sL_LossRatio": "1", "sL_AssetLoss": "343.5", "sL_BldgLoss": "343.5", "sL_StrLoss": "343.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C49A8886DEAB5DC0B1AF2B1CF7894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.684920941999934, 49.087711495000072 ], [ -118.684911812999928, 49.08744174800006 ], [ -118.684501112999925, 49.087447743000062 ], [ -118.684491985999941, 49.08717799600003 ], [ -118.68408128699997, 49.087183990000085 ], [ -118.68404478699992, 49.086104999000057 ], [ -118.683657027999985, 49.086110657000084 ], [ -118.683665509, 49.084970174000027 ], [ -118.683647013999973, 49.084626955000097 ], [ -118.683627918999917, 49.084422210000156 ], [ -118.683481471999983, 49.082947720000107 ], [ -118.683483076999963, 49.082887085000038 ], [ -118.683485693999913, 49.082788804000067 ], [ -118.68351884399999, 49.081537720000021 ], [ -118.683534342, 49.08095277500005 ], [ -118.683543567999948, 49.080604127000065 ], [ -118.683552896999956, 49.080252801000029 ], [ -118.683413000999977, 49.080154600000142 ], [ -118.683638822999981, 49.079950113000017 ], [ -118.683530162999929, 49.07978989800008 ], [ -118.683473188, 49.079705823000111 ], [ -118.683412193999914, 49.079615919000013 ], [ -118.683192933999933, 49.079616497000075 ], [ -118.67791571199993, 49.07963109800005 ], [ -118.677061404999961, 49.07968215500005 ], [ -118.677107954999926, 49.079386906000096 ], [ -118.677188037999898, 49.079392380000051 ], [ -118.677233565999956, 49.079103608000011 ], [ -118.677399829999956, 49.079114973000046 ], [ -118.677437267999935, 49.078877511000037 ], [ -118.677716311999973, 49.078896585000074 ], [ -118.677780372999905, 49.078490218000105 ], [ -118.679613015999934, 49.078615465000041 ], [ -118.680153245999946, 49.075187462000052 ], [ -118.68044937699996, 49.075207698000064 ], [ -118.680630084999933, 49.074060868000039 ], [ -118.681663467999954, 49.074131476000069 ], [ -118.681680542999942, 49.074023093000079 ], [ -118.682160996000022, 49.074055917000109 ], [ -118.682433898999989, 49.072323505000057 ], [ -118.68322195399999, 49.07237733900007 ], [ -118.683306786999978, 49.071838723000042 ], [ -118.68615986399999, 49.072033577000077 ], [ -118.688745632999911, 49.072210107000032 ], [ -118.688469749999953, 49.073962962000024 ], [ -118.690425896999926, 49.074096465000082 ], [ -118.690304725999979, 49.074866499000059 ], [ -118.691567112999977, 49.074952636 ], [ -118.691557107999955, 49.075016230000131 ], [ -118.692112499999936, 49.075054120000097 ], [ -118.691548955999934, 49.078635948000056 ], [ -118.690822082999929, 49.07858635700007 ], [ -118.690786533999969, 49.078812265000103 ], [ -118.690718070999935, 49.078807594000089 ], [ -118.690624157999977, 49.079404366000048 ], [ -118.68997922699999, 49.079360362000045 ], [ -118.690003665999939, 49.080080502000079 ], [ -118.68959302799999, 49.080086515000083 ], [ -118.68960218, 49.080356263000091 ], [ -118.689191538999978, 49.080362274000045 ], [ -118.689200691999957, 49.080632021000049 ], [ -118.688456966, 49.080642906000023 ], [ -118.688424740999949, 49.080847613000103 ], [ -118.688386217999948, 49.080844983000091 ], [ -118.688397697999974, 49.081183535000065 ], [ -118.687576402, 49.081195549000086 ], [ -118.687594686999958, 49.081735043000037 ], [ -118.687477709999897, 49.081736754000048 ], [ -118.687417363999913, 49.082120032000077 ], [ -118.686784553999956, 49.082076837000031 ], [ -118.686791657999947, 49.082286546 ], [ -118.685970344999973, 49.082298549 ], [ -118.685979478000021, 49.082568297000122 ], [ -118.685568817999936, 49.082574297000086 ], [ -118.685577949, 49.082844043000065 ], [ -118.684973167999942, 49.08285287600004 ], [ -118.684845348999943, 49.083664385000127 ], [ -118.685194677999931, 49.08365928400007 ], [ -118.685203808999916, 49.083929032000071 ], [ -118.685614477999977, 49.083923034000073 ], [ -118.685623611000011, 49.084192783000091 ], [ -118.686034285999966, 49.084186783000114 ], [ -118.686070824999931, 49.085265772000078 ], [ -118.68524946, 49.085277770000118 ], [ -118.685267722999939, 49.085817265000088 ], [ -118.685678410999984, 49.085811267000032 ], [ -118.685705810999977, 49.086620510000081 ], [ -118.686937887999974, 49.086602505000059 ], [ -118.686974450999969, 49.087681494000066 ], [ -118.684920941999934, 49.087711495000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "121.4", "sL_BldgLoss": "121.4", "sL_StrLoss": "121.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C05CCD32B2BC5DC08FD7CDD60B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.946257122999924, 49.209139816000103 ], [ -118.951714098, 49.209497818000067 ], [ -118.951168933999924, 49.213080241000092 ], [ -118.950559367999944, 49.21304026500006 ], [ -118.950495824999933, 49.213457755000064 ], [ -118.945038394000022, 49.213099695000089 ], [ -118.945584030999953, 49.209517302000016 ], [ -118.946193545999961, 49.209557306000143 ], [ -118.946257122999924, 49.209139816000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001246790774BE5DC0D7472BE720964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.977800449999975, 49.177161495000099 ], [ -118.977903439999977, 49.176481618000075 ], [ -118.977799093999948, 49.176474795000019 ], [ -118.978010634999947, 49.17507828400003 ], [ -118.976927757999931, 49.175007476000125 ], [ -118.977242514999929, 49.172929735000018 ], [ -118.972366453999982, 49.172610754000075 ], [ -118.972380424000022, 49.172518590000088 ], [ -118.971432131999961, 49.172456528000104 ], [ -118.971776579999954, 49.170184432000028 ], [ -118.97237089599993, 49.169452892000066 ], [ -118.972397811999926, 49.169394447000045 ], [ -118.972495060999961, 49.16939379700009 ], [ -118.974831314999989, 49.16944756600008 ], [ -118.97491515399993, 49.16959756800005 ], [ -118.975076996999974, 49.169727706000081 ], [ -118.975227707999963, 49.169819429000043 ], [ -118.975199031999949, 49.169862723000037 ], [ -118.97515504899999, 49.16992897900009 ], [ -118.97512565199996, 49.16997333299999 ], [ -118.975041515999948, 49.170100189000053 ], [ -118.975379105999977, 49.170398199000019 ], [ -118.975782185999947, 49.170663302 ], [ -118.976196719999948, 49.171062211000091 ], [ -118.976617707999978, 49.171581732000064 ], [ -118.977753311999919, 49.172983101000085 ], [ -118.978072516999987, 49.173325131000034 ], [ -118.979030208999959, 49.174351091000112 ], [ -118.979447904999972, 49.174813216000082 ], [ -118.979560658999901, 49.17493795700009 ], [ -118.979961798999923, 49.175381694000102 ], [ -118.980310802999966, 49.175895702000069 ], [ -118.980620994999981, 49.176647683000049 ], [ -118.980837196999943, 49.177360003000075 ], [ -118.977800449999975, 49.177161495000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000170D7CB98DBF5DC0D65668F796994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.99146160399998, 49.200723916000101 ], [ -118.991896179999955, 49.197850906000063 ], [ -118.99265501499994, 49.198640093000058 ], [ -118.993903987999886, 49.199753596000114 ], [ -118.994268468999948, 49.19996979900003 ], [ -118.995529380999955, 49.200717800000099 ], [ -118.995616865999949, 49.200769693000069 ], [ -118.995938880999958, 49.201015827000077 ], [ -118.99146160399998, 49.200723916000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B277B1F618AD5DC00B664450D28C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.704321075999943, 49.102270060000116 ], [ -118.704302595999948, 49.101730572000072 ], [ -118.703891782999932, 49.101736638000055 ], [ -118.703882546000017, 49.101466894000097 ], [ -118.703471734999965, 49.101472958000066 ], [ -118.703462498999912, 49.10120321300009 ], [ -118.703051690999985, 49.101209277000066 ], [ -118.703049762, 49.101152908000088 ], [ -118.701793709999947, 49.101067391000065 ], [ -118.701896003999948, 49.100416683000134 ], [ -118.701791582999974, 49.100418223000077 ], [ -118.701766507999977, 49.099685002000051 ], [ -118.701763907999961, 49.099608990000085 ], [ -118.702023574999942, 49.099605160000088 ], [ -118.702074473999971, 49.099281359000067 ], [ -118.702356737999978, 49.097485634000108 ], [ -118.707798728999961, 49.097856040000124 ], [ -118.707236116, 49.10143782300009 ], [ -118.70615542899999, 49.101364290000078 ], [ -118.70593360799991, 49.101349194000107 ], [ -118.705973597999957, 49.102515526000047 ], [ -118.705562775999951, 49.102521596000024 ], [ -118.705581269999968, 49.103061085000085 ], [ -118.705170445999954, 49.103067156000058 ], [ -118.705179690999969, 49.103336900000073 ], [ -118.704768863999931, 49.103342968000085 ], [ -118.704778104999917, 49.103612713000089 ], [ -118.701902298000022, 49.103655157000091 ], [ -118.701900797999926, 49.10361130600009 ], [ -118.701874617, 49.102845924000107 ], [ -118.703107087999982, 49.10282774300002 ], [ -118.703097855999928, 49.102557998000115 ], [ -118.70391949499998, 49.102545870000029 ], [ -118.703910257999937, 49.102276127000081 ], [ -118.704321075999943, 49.102270060000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "77.5", "sL_BldgLoss": "77.5", "sL_StrLoss": "77.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E812E6D7AB45DC09139E00470C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.817505218999912, 49.524883814000113 ], [ -118.822998523999928, 49.525248159000121 ], [ -118.822439639, 49.528828244000152 ], [ -118.816945910999962, 49.528463873000085 ], [ -118.817505218999912, 49.524883814000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "1", "sL_AssetLoss": "221.5", "sL_BldgLoss": "221.5", "sL_StrLoss": "221.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000726083CFA0C65DC024BDE28839BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.106423927999955, 49.49208709600002 ], [ -119.106412349999943, 49.491817433000101 ], [ -119.105998377, 49.491824973000085 ], [ -119.105986804999944, 49.49155531000013 ], [ -119.105572833999929, 49.491562849000097 ], [ -119.105561261999952, 49.491293186000085 ], [ -119.105147293999934, 49.491300723000045 ], [ -119.105135725999943, 49.491031061000044 ], [ -119.10472176, 49.491038596000074 ], [ -119.104710193999907, 49.490768932000037 ], [ -119.104296227999953, 49.490776466000042 ], [ -119.104261536999914, 49.489967477000043 ], [ -119.103847579, 49.489975009000105 ], [ -119.103836017999981, 49.489705346000108 ], [ -119.10300810699999, 49.489720406000067 ], [ -119.102984993999939, 49.489181079000126 ], [ -119.10257104399993, 49.489188607000088 ], [ -119.102559488999958, 49.488918943000066 ], [ -119.102145539000034, 49.488926469000077 ], [ -119.102133987999963, 49.48865680600003 ], [ -119.10172004199994, 49.488664330000042 ], [ -119.101696943999968, 49.48812500300005 ], [ -119.101283001999917, 49.488132526000065 ], [ -119.101259908, 49.487593199000081 ], [ -119.10084597099997, 49.487600719000106 ], [ -119.100822880999942, 49.487061392000022 ], [ -119.100408949000013, 49.487068911000065 ], [ -119.100385864999978, 49.48652958200006 ], [ -119.099971935999974, 49.486537101000053 ], [ -119.09994885899998, 49.485997773000129 ], [ -119.099121008999958, 49.486012804000048 ], [ -119.099086407999948, 49.485203811000119 ], [ -119.09867248899991, 49.485211324000083 ], [ -119.098649427999945, 49.484671995000078 ], [ -119.09823551199996, 49.484679506000099 ], [ -119.098212455999914, 49.484140178000125 ], [ -119.097798546999954, 49.484147688000078 ], [ -119.097752441999916, 49.483069029000141 ], [ -119.098994144999921, 49.48304649500016 ], [ -119.09900567699999, 49.483316160000065 ], [ -119.099419578999942, 49.483308646000047 ], [ -119.09944264799995, 49.483847974000099 ], [ -119.09985655399997, 49.48384045800001 ], [ -119.099879629999975, 49.484379788000076 ], [ -119.100293540999971, 49.484372269000062 ], [ -119.100328161000036, 49.485181262000069 ], [ -119.100742077999953, 49.485173743000082 ], [ -119.100753620999939, 49.485443407000069 ], [ -119.101167540999938, 49.485435886000126 ], [ -119.101179085999931, 49.485705551000045 ], [ -119.101593006999948, 49.485698029000055 ], [ -119.101616102999969, 49.486237356000075 ], [ -119.102030028999977, 49.486229832000078 ], [ -119.102053128999941, 49.48676915900009 ], [ -119.102467059999952, 49.486761634000096 ], [ -119.102478612999931, 49.487031298 ], [ -119.102892544999989, 49.487023770000093 ], [ -119.102927212999958, 49.487832761000078 ], [ -119.103341150999881, 49.487825232000098 ], [ -119.103364268999925, 49.488364559000082 ], [ -119.103778210999977, 49.488357029000078 ], [ -119.10378977299996, 49.488626693000128 ], [ -119.104203718999926, 49.488619160000063 ], [ -119.104215280999938, 49.488888824000128 ], [ -119.104629228999968, 49.48888129000003 ], [ -119.104640794999966, 49.489150953000063 ], [ -119.105054744999933, 49.489143418000076 ], [ -119.10502004199999, 49.488334429000155 ], [ -119.105433983999902, 49.488326893000107 ], [ -119.10542241399996, 49.488057229000063 ], [ -119.105836354999951, 49.488049691000086 ], [ -119.105813211999958, 49.487510366000087 ], [ -119.105399275999957, 49.48751790300004 ], [ -119.105410844999966, 49.487787565000083 ], [ -119.103755090999982, 49.487817702000058 ], [ -119.103685731999988, 49.486199720000108 ], [ -119.103271805999967, 49.486207250000092 ], [ -119.103260249999934, 49.485937588000091 ], [ -119.102846325999963, 49.485945116000103 ], [ -119.10283477199999, 49.485675452000095 ], [ -119.102420850999977, 49.48568297900006 ], [ -119.102409297999912, 49.485413315000095 ], [ -119.101995378999959, 49.485420840000081 ], [ -119.101972279999941, 49.484881513000076 ], [ -119.10155836699991, 49.484889036000041 ], [ -119.101523724999979, 49.484080044000109 ], [ -119.101109816999895, 49.484087566000092 ], [ -119.101098271999959, 49.483817902000048 ], [ -119.100684366999928, 49.483825422000052 ], [ -119.100672824999933, 49.483555758000101 ], [ -119.100258921999952, 49.483563277000016 ], [ -119.100247381999935, 49.483293612000047 ], [ -119.099833479999972, 49.483301130000036 ], [ -119.09978733299999, 49.482222472000053 ], [ -119.099373439999937, 49.482229988000043 ], [ -119.099327305999978, 49.481151330000031 ], [ -119.099741189999989, 49.48114381300006 ], [ -119.099729652999955, 49.480874150000076 ], [ -119.10177728599993, 49.480836947000057 ], [ -119.101799973999945, 49.480857898000096 ], [ -119.101810605999972, 49.481106216000079 ], [ -119.102063892999951, 49.48110161200001 ], [ -119.102231231999951, 49.481256139000045 ], [ -119.102247588999901, 49.481638020000084 ], [ -119.102637116000011, 49.481630938000066 ], [ -119.103153213999974, 49.482107499000115 ], [ -119.104928515000012, 49.483777676000052 ], [ -119.106395003999964, 49.485157208000039 ], [ -119.107408794999927, 49.486079338000089 ], [ -119.107422630999963, 49.486401548000103 ], [ -119.107750190999965, 49.48639557700006 ], [ -119.107840265999968, 49.486480358000108 ], [ -119.107848139999987, 49.486663666000105 ], [ -119.108031465999957, 49.486660324000049 ], [ -119.108271974999951, 49.48688671400005 ], [ -119.108285236999961, 49.487195445000069 ], [ -119.108593983999967, 49.487189816000026 ], [ -119.10870369, 49.487293078000071 ], [ -119.108710756999955, 49.487457559000092 ], [ -119.108875247999933, 49.487454560000067 ], [ -119.109003521999938, 49.487575299000056 ], [ -119.109135410999968, 49.487699433000053 ], [ -119.10915946199999, 49.488258997000052 ], [ -119.107503695999981, 49.48828918800011 ], [ -119.107492113999967, 49.488019525000013 ], [ -119.107078175999931, 49.488027068000065 ], [ -119.107101332999918, 49.48856639400006 ], [ -119.106687388999958, 49.488573937000069 ], [ -119.106710541999959, 49.489113262000117 ], [ -119.107124490999979, 49.48910572000009 ], [ -119.107182389999963, 49.490454034000074 ], [ -119.107596350999984, 49.490446490000124 ], [ -119.107665848999957, 49.492064465000091 ], [ -119.106423927999955, 49.49208709600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "78.5", "sL_BldgLoss": "78.5", "sL_StrLoss": "78.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024FF1F6968AC5DC00B815CE2C8914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.691094987, 49.140658893000129 ], [ -118.691124651999957, 49.140470643000114 ], [ -118.690639385999987, 49.140437582000089 ], [ -118.690859528999937, 49.139040609000098 ], [ -118.69120374799995, 49.136856102000124 ], [ -118.696650253, 49.137227049000032 ], [ -118.69662061299999, 49.137415301000082 ], [ -118.697105849999957, 49.137448336000062 ], [ -118.696750366999979, 49.139706137000118 ], [ -118.696541936999893, 49.141029844000066 ], [ -118.691094987, 49.140658893000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73", "sL_BldgLoss": "73", "sL_StrLoss": "73", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003DB78E79F6AA5DC095BCD79C458B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.668980582999978, 49.09024477100008 ], [ -118.66897580399997, 49.090102246000122 ], [ -118.668845790999967, 49.090104125000067 ], [ -118.668154353999967, 49.090114122000074 ], [ -118.668131278999979, 49.089425591000087 ], [ -118.668127234999929, 49.08930487200012 ], [ -118.668948671999914, 49.089292996000069 ], [ -118.668912284999934, 49.088207668000123 ], [ -118.668905627999933, 49.088009102000115 ], [ -118.668903453999988, 49.087944248000063 ], [ -118.669314161999978, 49.08793830700008 ], [ -118.669305115999919, 49.087668558000054 ], [ -118.671985892999899, 49.087629750000097 ], [ -118.672509292999948, 49.084312716000063 ], [ -118.673336002999932, 49.084369253000048 ], [ -118.673394602999949, 49.083997803000059 ], [ -118.673532067999972, 49.088164397000078 ], [ -118.673536581999912, 49.08830231300005 ], [ -118.673364557999946, 49.088996947000076 ], [ -118.673280822999956, 49.088928059000096 ], [ -118.673284222999968, 49.088859559000113 ], [ -118.67316412299995, 49.088706959000064 ], [ -118.673159836999986, 49.088692256000073 ], [ -118.671805578999965, 49.088711883000038 ], [ -118.671832758, 49.089521131000062 ], [ -118.671422037999918, 49.08952708000011 ], [ -118.671440152999935, 49.090066579000052 ], [ -118.671029428999958, 49.090072528000086 ], [ -118.671038482999933, 49.090342276000108 ], [ -118.668984847999951, 49.090371994000073 ], [ -118.668980582999978, 49.09024477100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "119.7", "sL_BldgLoss": "119.7", "sL_StrLoss": "119.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061FFD027CDAC5DC054D65F4415824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.704753616999938, 49.0188700140001 ], [ -118.704744401999946, 49.01860026600005 ], [ -118.703514012999946, 49.018618442000076 ], [ -118.703504804999952, 49.01834869400011 ], [ -118.701454166999923, 49.018378956000092 ], [ -118.701444970999972, 49.018109208000041 ], [ -118.701034843999963, 49.018115257000069 ], [ -118.701024117000017, 49.01780053900012 ], [ -118.701023681, 49.017803321000017 ], [ -118.695591075999985, 49.017432526000078 ], [ -118.696153571999929, 49.013850335000043 ], [ -118.701585761999965, 49.014221104000043 ], [ -118.701538187999958, 49.014524326000043 ], [ -118.701483947999975, 49.014870022000089 ], [ -118.702047929999964, 49.014861703000079 ], [ -118.702975013999961, 49.014848021000041 ], [ -118.702988561999973, 49.015245063000044 ], [ -118.703002626999975, 49.015657266000055 ], [ -118.702592521999975, 49.015663319000076 ], [ -118.702610926999981, 49.016202816000032 ], [ -118.703021035999939, 49.016196763000032 ], [ -118.703039444999902, 49.016736259000012 ], [ -118.703449558999935, 49.016730204000055 ], [ -118.703467973999949, 49.017269700000057 ], [ -118.704288210999906, 49.017257586000071 ], [ -118.704297421999982, 49.017527334000086 ], [ -118.705117663999928, 49.017515212000013 ], [ -118.70512687899999, 49.017784961000075 ], [ -118.705947123999977, 49.017772833000045 ], [ -118.705983379, 49.018833369000156 ], [ -118.705984008999977, 49.018851825000084 ], [ -118.704753616999938, 49.0188700140001 ] ], [ [ -118.7018275, 49.017293913000081 ], [ -118.701818300999918, 49.017024165000116 ], [ -118.701408184999963, 49.017030214000101 ], [ -118.701365070999927, 49.01576556400007 ], [ -118.701361208999984, 49.015652280000019 ], [ -118.701345682999943, 49.015751230000014 ], [ -118.701101936999962, 49.017304614000096 ], [ -118.7018275, 49.017293913000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "32.2", "sL_BldgLoss": "32.2", "sL_StrLoss": "32.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000026F31B68B6A55DC09CE1A351C3914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.591178431999964, 49.137350243000093 ], [ -118.591198792999975, 49.137986103000102 ], [ -118.591204343999891, 49.138159517000055 ], [ -118.591008170999913, 49.138162220000076 ], [ -118.590793205999958, 49.138165183000083 ], [ -118.59079928899996, 49.138355202000071 ], [ -118.590801841999962, 49.138434941000099 ], [ -118.590711631999966, 49.138436184000092 ], [ -118.590390701000018, 49.138440607000092 ], [ -118.590399334, 49.13871036400009 ], [ -118.589988191999936, 49.13871602800014 ], [ -118.590000264999929, 49.13909338200007 ], [ -118.590005454999925, 49.139255544000022 ], [ -118.589821997999977, 49.139258071000036 ], [ -118.589594305999967, 49.139261206000064 ], [ -118.589599731999954, 49.139430836000017 ], [ -118.589602935999949, 49.139530965000105 ], [ -118.589449689999952, 49.139533075000017 ], [ -118.589191786999947, 49.139536625000076 ], [ -118.589196809000015, 49.139693681000054 ], [ -118.589200412999958, 49.139806384000089 ], [ -118.588955587999976, 49.139809754000105 ], [ -118.588378108999947, 49.139817701000027 ], [ -118.588384473999923, 49.140016802000027 ], [ -118.588386730999972, 49.140087459000085 ], [ -118.58813089299997, 49.140090979000078 ], [ -118.587153266999948, 49.1401044260001 ], [ -118.587127418999955, 49.139295150000066 ], [ -118.58794971599994, 49.139283842000104 ], [ -118.587941094999934, 49.139014083000049 ], [ -118.588352240999967, 49.1390084270001 ], [ -118.588343617999925, 49.138738669000105 ], [ -118.588754762999912, 49.138733010000102 ], [ -118.588746136999987, 49.138463252000072 ], [ -118.5891572799999, 49.138457593000027 ], [ -118.589140027000013, 49.137918076000076 ], [ -118.589551162999953, 49.137912416000098 ], [ -118.589542532999971, 49.137642658000111 ], [ -118.589953666999975, 49.137636996000055 ], [ -118.589945037999911, 49.137367239000056 ], [ -118.591178431999964, 49.137350243000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.1", "sL_BldgLoss": "47.1", "sL_StrLoss": "47.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D879E1EF13B35DC073D4349C70824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.795198051999989, 49.018387089000093 ], [ -118.801017693999952, 49.018389816000067 ], [ -118.800845793999983, 49.019500549000014 ], [ -118.800519230999953, 49.019478575000058 ], [ -118.800450699999942, 49.019921356000118 ], [ -118.795017063999964, 49.019555595000043 ], [ -118.795198051999989, 49.018387089000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "85", "sL_BldgLoss": "85", "sL_StrLoss": "85", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A6E9CFBC8AF5DC04A4CAB7CAA864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.744203142999979, 49.050102538000047 ], [ -118.749639936999969, 49.050470854000011 ], [ -118.749081108999945, 49.054053118000063 ], [ -118.743643901999988, 49.053684776000075 ], [ -118.744203142999979, 49.050102538000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "113.6", "sL_BldgLoss": "113.6", "sL_StrLoss": "113.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C116A2E035BE5DC045F12A6B1B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.969579944999964, 49.241054643000076 ], [ -118.975040849999971, 49.24141144600005 ], [ -118.974497109999973, 49.244993814000068 ], [ -118.969035789, 49.244636985000035 ], [ -118.969579944999964, 49.241054643000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "77.5", "sL_BldgLoss": "77.5", "sL_StrLoss": "77.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2C9EFC0C2B25DC0F06B240942CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.790666758, 49.601605123000091 ], [ -118.796169000999924, 49.601970784000081 ], [ -118.79560709899998, 49.605550334000029 ], [ -118.790104432999939, 49.605184647000023 ], [ -118.790666758, 49.601605123000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41", "sL_BldgLoss": "41", "sL_StrLoss": "41", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ACAC0A60CCC05DC0F9F17E79549C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.011554848999978, 49.223239720000066 ], [ -119.01159448699994, 49.222977059000122 ], [ -119.011387659999968, 49.222963615000047 ], [ -119.01192829699994, 49.219380942000107 ], [ -119.013518719, 49.219484308000055 ], [ -119.013419625, 49.220922406000042 ], [ -119.013372951999912, 49.221231649000075 ], [ -119.01326059099992, 49.221976609000052 ], [ -119.013107564999984, 49.222472688000067 ], [ -119.012845039999931, 49.223323572000091 ], [ -119.011554848999978, 49.223239720000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "1", "sL_AssetLoss": "153.3", "sL_BldgLoss": "153.3", "sL_StrLoss": "153.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002939ED4A87BB5DC0750169DE759D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.931708313999948, 49.223294215000159 ], [ -118.935213575999967, 49.223524610000055 ], [ -118.934666975999932, 49.227106874000071 ], [ -118.933951846, 49.227059880000091 ], [ -118.933699717999943, 49.228711892000064 ], [ -118.933002715000015, 49.228666084000061 ], [ -118.932502338999925, 49.231944010000106 ], [ -118.930289723999948, 49.231798563000076 ], [ -118.930080199999935, 49.233170560000069 ], [ -118.929957921999943, 49.233162522000093 ], [ -118.929557716999938, 49.23578286500004 ], [ -118.924097823999944, 49.235423757000078 ], [ -118.924381226999927, 49.233569642000113 ], [ -118.924382402, 49.233567999000059 ], [ -118.924770681, 49.233281702000085 ], [ -118.925714392999978, 49.232870095000081 ], [ -118.926183694999978, 49.23255681200002 ], [ -118.92627360399996, 49.232392995000033 ], [ -118.926097909999967, 49.232135192000037 ], [ -118.92608100899993, 49.231695194000103 ], [ -118.92644158899995, 49.231058502000081 ], [ -118.926738109999974, 49.230918997000103 ], [ -118.92790139199991, 49.230827816000094 ], [ -118.928506786999918, 49.230493095000057 ], [ -118.928850082999972, 49.230145591000074 ], [ -118.930376218999939, 49.228033500000059 ], [ -118.930840385999971, 49.226892692000092 ], [ -118.931383281999942, 49.226011092000142 ], [ -118.931754488999928, 49.224619715000138 ], [ -118.931708313999948, 49.223294215000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "52.7", "sL_BldgLoss": "52.7", "sL_StrLoss": "52.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000735F94C1CDC75DC0A7BBA1DFADBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.120206210999982, 49.499356275000139 ], [ -119.120398802999944, 49.498068009000086 ], [ -119.119254826999935, 49.497995275000079 ], [ -119.119248602999932, 49.497857099000072 ], [ -119.120051699999976, 49.496619498000022 ], [ -119.121722214999934, 49.495311990000069 ], [ -119.12220466399998, 49.495013161000031 ], [ -119.122354537, 49.495120874000051 ], [ -119.122513606999959, 49.495235198000096 ], [ -119.122713493999925, 49.495390067000059 ], [ -119.12311230099999, 49.495699099 ], [ -119.123451661999965, 49.496030150000038 ], [ -119.123841777999971, 49.496410701000038 ], [ -119.123875940999952, 49.496479229000101 ], [ -119.123933869999917, 49.496595579000015 ], [ -119.123938722999966, 49.496605285000079 ], [ -119.123983602999957, 49.49669541100014 ], [ -119.124068605999966, 49.497026204000107 ], [ -119.124065482999967, 49.497229372000085 ], [ -119.124063514999975, 49.497357687000054 ], [ -119.124041602999981, 49.497652807000122 ], [ -119.123882484999967, 49.498100413000031 ], [ -119.123831094999986, 49.498244992000096 ], [ -119.123173381999933, 49.499544869000069 ], [ -119.120206210999982, 49.499356275000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "111.6", "sL_BldgLoss": "111.6", "sL_StrLoss": "111.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009C5BB61003AE5DC0039E8BF1278E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.717746104999918, 49.112783307 ], [ -118.717827067999963, 49.112267291000045 ], [ -118.714830650999886, 49.112063727000077 ], [ -118.714904125999965, 49.111595618000067 ], [ -118.714889582999916, 49.111594630000042 ], [ -118.715064970999947, 49.110477197000087 ], [ -118.713647058999967, 49.110498259000053 ], [ -118.713600595999978, 49.109149546000062 ], [ -118.714833213999952, 49.109131239000064 ], [ -118.714842512999937, 49.109400981000114 ], [ -118.715234794999958, 49.109395151000051 ], [ -118.715451730999987, 49.108012863000042 ], [ -118.720895055999947, 49.108382600000027 ], [ -118.720821645999976, 49.108850716000042 ], [ -118.720836187999936, 49.10885170300002 ], [ -118.72075526499998, 49.109367723000076 ], [ -118.723751534999977, 49.109571124000119 ], [ -118.72319000499995, 49.113152925000101 ], [ -118.717746104999918, 49.112783307 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "35.9", "sL_BldgLoss": "35.9", "sL_StrLoss": "35.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A2349524AAB5DC04F8935A6F1834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.67397642799996, 49.028835079000103 ], [ -118.679410188999938, 49.029206960000124 ], [ -118.679338314999967, 49.029663493000044 ], [ -118.678846222999979, 49.032788976000035 ], [ -118.675499806999966, 49.032559985000077 ], [ -118.673412050999914, 49.032417068000015 ], [ -118.67397642799996, 49.028835079000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "42.4", "sL_BldgLoss": "42.4", "sL_StrLoss": "42.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000616C63E493C45DC04D26B8A25EB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.06855253399999, 49.442187076000074 ], [ -119.068606637999935, 49.441827405000055 ], [ -119.068476753999931, 49.441819075000126 ], [ -119.069015526999948, 49.438237291000078 ], [ -119.07450048299998, 49.438588957000022 ], [ -119.074446426999913, 49.438948632000141 ], [ -119.074576305, 49.438956956000048 ], [ -119.07403795299993, 49.442538764000034 ], [ -119.06855253399999, 49.442187076000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000076EEEA1308A65DC0F7DC749163914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.591178431999964, 49.137350243000093 ], [ -118.591152520999927, 49.136540970000063 ], [ -118.591563645999898, 49.136535302000034 ], [ -118.59155500699994, 49.13626554400004 ], [ -118.592377250999974, 49.136254205000036 ], [ -118.592368608999948, 49.135984447000055 ], [ -118.592779728999929, 49.135978775000069 ], [ -118.592771082999931, 49.135709017000124 ], [ -118.5931822, 49.135703344000085 ], [ -118.593173553, 49.135433586000097 ], [ -118.593995781999951, 49.135422235000092 ], [ -118.593987131999938, 49.135152478000116 ], [ -118.594809355999985, 49.1351411200001 ], [ -118.594800699999936, 49.134871363000045 ], [ -118.59562291899999, 49.13486 ], [ -118.59561426, 49.134590243000062 ], [ -118.597258690000018, 49.134567500000109 ], [ -118.597272730999961, 49.135004414000036 ], [ -118.597293367999953, 49.135646529000027 ], [ -118.595648902, 49.135669273000083 ], [ -118.595657562999989, 49.13593903000006 ], [ -118.594959897999971, 49.135948672000083 ], [ -118.594424205999985, 49.135956072000063 ], [ -118.59443176699989, 49.136191722000056 ], [ -118.594432859999969, 49.136225830000107 ], [ -118.594355327999921, 49.136226900000075 ], [ -118.59402173899997, 49.136231508000016 ], [ -118.594026446999962, 49.136378251000131 ], [ -118.594030391999965, 49.136501265000078 ], [ -118.593750747999977, 49.136505126000024 ], [ -118.593619266999923, 49.136506941000079 ], [ -118.593621121999945, 49.136564779000018 ], [ -118.59362791699999, 49.136776700000098 ], [ -118.593146160999979, 49.136783349000069 ], [ -118.592805664999972, 49.136788048 ], [ -118.592810465999904, 49.136937828000107 ], [ -118.592814310999984, 49.137057805000047 ], [ -118.592541565999937, 49.137061568000135 ], [ -118.592403181999956, 49.137063477000076 ], [ -118.592405133999989, 49.1371243500001 ], [ -118.592411825999974, 49.137333236000067 ], [ -118.59202743500002, 49.137338537000105 ], [ -118.591178431999964, 49.137350243000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "120.3", "sL_BldgLoss": "120.3", "sL_StrLoss": "120.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002C10FB0C81B75DC0DC1E735424B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.86479642799999, 49.447499443000083 ], [ -118.864840571999977, 49.447214464000062 ], [ -118.864304211999936, 49.447179048000109 ], [ -118.864031299999937, 49.447001400000076 ], [ -118.863660807999977, 49.44610986900009 ], [ -118.863751349999944, 49.445525427000085 ], [ -118.863996108999913, 49.445338010000064 ], [ -118.86407479799999, 49.444887906000069 ], [ -118.863956404999911, 49.44469990200011 ], [ -118.863934113999932, 49.444345655000056 ], [ -118.864058072999939, 49.443545438000108 ], [ -118.869542076999906, 49.44390747100006 ], [ -118.869159107999977, 49.446381517000063 ], [ -118.870496311, 49.446469751000095 ], [ -118.869942058999982, 49.450050492000081 ], [ -118.867878802999897, 49.449914343000138 ], [ -118.867738312999933, 49.449794292000071 ], [ -118.867626105999989, 49.449408386000115 ], [ -118.867270987999959, 49.449136308000078 ], [ -118.867234296999953, 49.448506806000061 ], [ -118.866658688999976, 49.447904403000045 ], [ -118.866281092999913, 49.447757702000075 ], [ -118.86492189099998, 49.447581109000097 ], [ -118.86479642799999, 49.447499443000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "141.4", "sL_BldgLoss": "141.4", "sL_StrLoss": "141.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9F5436C30B85DC028D4F45549AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.876909650999906, 49.329529496000085 ], [ -118.876904241999938, 49.329387248000025 ], [ -118.876939692999912, 49.329371713000057 ], [ -118.877315610000011, 49.328753586000083 ], [ -118.877459698999957, 49.328171187000052 ], [ -118.877683680999951, 49.328167546000095 ], [ -118.877663159999926, 49.327628130000043 ], [ -118.878901111999966, 49.327608005000108 ], [ -118.878911377999927, 49.327877713000071 ], [ -118.879736683, 49.327864289000033 ], [ -118.879746955999934, 49.328133997000037 ], [ -118.880159610999982, 49.328127282000061 ], [ -118.880169884999987, 49.328396990000066 ], [ -118.880582539999963, 49.328390274000085 ], [ -118.880613371999956, 49.329199396000035 ], [ -118.880200707999961, 49.329206113000133 ], [ -118.880221257999949, 49.329745528000025 ], [ -118.881871928999956, 49.329718655000093 ], [ -118.881913066999985, 49.330797483000055 ], [ -118.878611649999954, 49.330851209000059 ], [ -118.878632182999951, 49.331390625000083 ], [ -118.877806819999961, 49.331404041000013 ], [ -118.877817080999975, 49.331673749000124 ], [ -118.877404395999946, 49.331680455000047 ], [ -118.877424916999971, 49.332219871000085 ], [ -118.876496436999986, 49.3322349540001 ], [ -118.876260642999924, 49.333763687000037 ], [ -118.874798286999948, 49.333667021000061 ], [ -118.874901182999963, 49.33329969300005 ], [ -118.875186506999967, 49.332836798000081 ], [ -118.875140497999936, 49.332342595000078 ], [ -118.874988091999953, 49.331265897000094 ], [ -118.875115704999956, 49.330616510000048 ], [ -118.875683375999969, 49.330107626000022 ], [ -118.876106848999967, 49.33013561900006 ], [ -118.87610482300002, 49.330082317000048 ], [ -118.876517495, 49.330075615000077 ], [ -118.876498086999931, 49.329565214000105 ], [ -118.876566895999986, 49.329535064000034 ], [ -118.876909650999906, 49.329529496000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438916", "BldgCostT": "2371666", "sL_LossRatio": "1", "sL_AssetLoss": "221.8", "sL_BldgLoss": "221.8", "sL_StrLoss": "221.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB0084B42BAC5DC02EB4290DEB874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.686694756999927, 49.065851057 ], [ -118.686775329999946, 49.065339176000052 ], [ -118.685256048999946, 49.06523541800005 ], [ -118.685819913999978, 49.061653548000109 ], [ -118.691033432, 49.062009513000092 ], [ -118.691031217999978, 49.061944238000102 ], [ -118.68697003699998, 49.061666975000094 ], [ -118.687533726999959, 49.058085077000094 ], [ -118.69297100299994, 49.058456255000102 ], [ -118.692759863999981, 49.059798972000088 ], [ -118.692894843999966, 49.059796992000081 ], [ -118.693011664, 49.059795279000063 ], [ -118.693007345999931, 49.05966817200003 ], [ -118.692993334999983, 49.059255783000047 ], [ -118.693372353999933, 49.059250221000063 ], [ -118.69340380099996, 49.059249759000132 ], [ -118.693402637999924, 49.059215543000022 ], [ -118.693394633999944, 49.058980011000074 ], [ -118.693611118999968, 49.05897683400007 ], [ -118.693805098000013, 49.05897398600014 ], [ -118.693797924999927, 49.05876294800003 ], [ -118.693795929999922, 49.058704240000097 ], [ -118.693849891999946, 49.058703447 ], [ -118.69420639099999, 49.058698213000092 ], [ -118.694192813999948, 49.058298847000117 ], [ -118.694188048999948, 49.05815871800008 ], [ -118.694310795999954, 49.05815691500009 ], [ -118.694598506999967, 49.058152690000057 ], [ -118.694587337999948, 49.057824240000059 ], [ -118.694580161, 49.05761319500003 ], [ -118.69476115799992, 49.057610537000144 ], [ -118.694990612999945, 49.057607166000047 ], [ -118.694981438999946, 49.057337419000106 ], [ -118.696623235999951, 49.057313288000032 ], [ -118.696678338999973, 49.058931772000086 ], [ -118.69626787599999, 49.058937808000081 ], [ -118.696277058999939, 49.059207555000107 ], [ -118.695866593999966, 49.059213588000034 ], [ -118.69587577399993, 49.059483336000014 ], [ -118.695054838999951, 49.059495399000106 ], [ -118.695064014999929, 49.059765145000078 ], [ -118.694653545000023, 49.059771175000037 ], [ -118.694662717999947, 49.060040923000059 ], [ -118.694252247999927, 49.060046951000103 ], [ -118.694261417999925, 49.060316699000126 ], [ -118.693850942999958, 49.060322725000056 ], [ -118.693869282999955, 49.060862220000026 ], [ -118.69304832499995, 49.060874269000038 ], [ -118.693075821999969, 49.061683512000101 ], [ -118.692665335999948, 49.061689534000074 ], [ -118.692683662999954, 49.062229030000047 ], [ -118.692273171999943, 49.062235051000116 ], [ -118.692285986999977, 49.062612376000054 ], [ -118.692696280999911, 49.062640373000143 ], [ -118.692132932000035, 49.066222273000072 ], [ -118.688411488000014, 49.06596827300006 ], [ -118.686694756999927, 49.065851057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "124.8", "sL_BldgLoss": "124.8", "sL_StrLoss": "124.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B030906E7AC5DC0756627286A984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.704196496999941, 49.194570385000077 ], [ -118.704177957999931, 49.194030905000105 ], [ -118.70376638, 49.194036980000092 ], [ -118.703738580999982, 49.193227760000063 ], [ -118.703327010999956, 49.193233832000011 ], [ -118.70329921799997, 49.192424612000082 ], [ -118.702887654000023, 49.192430682000065 ], [ -118.702943225999888, 49.194049123000049 ], [ -118.702531648, 49.194055193000104 ], [ -118.70254090799996, 49.194324933000125 ], [ -118.70130616499992, 49.194343133000125 ], [ -118.701227699999919, 49.192055703000037 ], [ -118.696717478999943, 49.191749124000061 ], [ -118.697281994999983, 49.188167894000074 ], [ -118.69934678099996, 49.188308271000032 ], [ -118.69939481399993, 49.188003441000042 ], [ -118.704847375, 49.188373945000151 ], [ -118.704814090999918, 49.188585330000087 ], [ -118.70541037299995, 49.188625830000035 ], [ -118.705071319999902, 49.190779195000069 ], [ -118.705301393999932, 49.190775798000097 ], [ -118.705310666999978, 49.191045538000012 ], [ -118.705722219999984, 49.19103945900013 ], [ -118.705750049999907, 49.191848677000074 ], [ -118.704900941999952, 49.19186121900006 ], [ -118.70485834599999, 49.192131724000049 ], [ -118.704936202999946, 49.192130574000089 ], [ -118.704964020999938, 49.19293979400004 ], [ -118.705375588999956, 49.192933716000027 ], [ -118.705431241999975, 49.194552154000057 ], [ -118.704196496999941, 49.194570385000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "123.7", "sL_BldgLoss": "123.7", "sL_StrLoss": "123.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D28296EE4C35DC0D2738724E5B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.058407757999973, 49.439418201000102 ], [ -119.058731328999954, 49.437270188000063 ], [ -119.057202562999962, 49.437171973 ], [ -119.057742156, 49.433590220000085 ], [ -119.063226473999947, 49.433942460000083 ], [ -119.06290313699995, 49.436090496000141 ], [ -119.064431879000011, 49.436188631000078 ], [ -119.063892772999949, 49.439770404000093 ], [ -119.058407757999973, 49.439418201000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "65.6", "sL_BldgLoss": "65.6", "sL_StrLoss": "65.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D9816BD50BA55DC0BD2DFDF018924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.57653163699996, 49.143799686000108 ], [ -118.5767916, 49.142175685000069 ], [ -118.576207733999979, 49.142135280000083 ], [ -118.576249705999942, 49.141873084000032 ], [ -118.576103372999924, 49.141875082000126 ], [ -118.576111928999964, 49.142144841000039 ], [ -118.574467232999964, 49.142167285000077 ], [ -118.574458684999982, 49.141897526 ], [ -118.572402821999972, 49.141925548000117 ], [ -118.572384362999927, 49.141342250000044 ], [ -118.572377211999964, 49.141116267000058 ], [ -118.576379592999956, 49.1410616840001 ], [ -118.576780918999944, 49.138554413000044 ], [ -118.582226704, 49.138931149 ], [ -118.581966949999938, 49.140555171000059 ], [ -118.582550799999964, 49.140595544000114 ], [ -118.58247917599999, 49.14104336000004 ], [ -118.58197803399996, 49.144176430000101 ], [ -118.57653163699996, 49.143799686000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "75.5", "sL_BldgLoss": "75.5", "sL_StrLoss": "75.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000DDB798FF1BA5DC07967610D9F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.917624474999968, 49.240445465000057 ], [ -118.917975605999956, 49.238150602000047 ], [ -118.91827932299995, 49.238410302000091 ], [ -118.919063102999985, 49.238802012000072 ], [ -118.919381288999929, 49.238868913000019 ], [ -118.919709082999987, 49.238844690000114 ], [ -118.920203009999938, 49.238773507000097 ], [ -118.920525007999984, 49.238588288000059 ], [ -118.921471801999942, 49.237493094000122 ], [ -118.922038216999965, 49.237117848000096 ], [ -118.923632562999899, 49.237222767000027 ], [ -118.923084906, 49.240804897000054 ], [ -118.917624474999968, 49.240445465000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.2", "sL_BldgLoss": "48.2", "sL_StrLoss": "48.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F71210B28B95DC0619A750894A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.894362776999969, 49.283557051000038 ], [ -118.89543424699994, 49.283627766000045 ], [ -118.894883864999883, 49.287209501000113 ], [ -118.889418190999919, 49.286848666000033 ], [ -118.889512833999916, 49.286233268000061 ], [ -118.889751292999918, 49.286117007000058 ], [ -118.89278630599992, 49.284943503000086 ], [ -118.894118489999954, 49.283832603000121 ], [ -118.894362776999969, 49.283557051000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "71.8", "sL_BldgLoss": "71.8", "sL_StrLoss": "71.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000214F7911F9AE5DC060C3DB9CAD814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.731515616999957, 49.01113502900008 ], [ -118.736947772999926, 49.011504009000092 ], [ -118.736388436999974, 49.01508642600011 ], [ -118.730955867999967, 49.014717419000043 ], [ -118.731515616999957, 49.01113502900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40", "sL_BldgLoss": "40", "sL_StrLoss": "40", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C8F80D9D6AB5DC0E080F9D81B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.686446561999958, 49.132009868000118 ], [ -118.686823430999965, 49.13203556400002 ], [ -118.686672176999949, 49.13226539500004 ], [ -118.686555096999911, 49.133608396000085 ], [ -118.686122303, 49.13463961200015 ], [ -118.686011230999924, 49.134810061000103 ], [ -118.685731585000013, 49.135239189000046 ], [ -118.685785730999953, 49.135584793000085 ], [ -118.683322258999951, 49.135416790000065 ], [ -118.683887122000016, 49.131835319000103 ], [ -118.686446561999958, 49.132009868000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "47.6", "sL_BldgLoss": "47.6", "sL_StrLoss": "47.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB471EE365BB5DC03FCCDA7DF99C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.927380530999969, 49.229374848000113 ], [ -118.927588872999976, 49.228010992000108 ], [ -118.924868141999951, 49.22783199700006 ], [ -118.925415507999972, 49.224249786000058 ], [ -118.929548048999933, 49.224521637000059 ], [ -118.929755080999925, 49.22316578200013 ], [ -118.931082601999933, 49.223253075000144 ], [ -118.931242099999935, 49.223817890000063 ], [ -118.931206324999906, 49.224690905000053 ], [ -118.930642816999978, 49.22605960100006 ], [ -118.929304103, 49.228744199000083 ], [ -118.928085903999943, 49.23026670300009 ], [ -118.92792499199993, 49.230369190000125 ], [ -118.927571698999913, 49.230429002000065 ], [ -118.927294103999955, 49.230307898000092 ], [ -118.927240808999912, 49.230038790000037 ], [ -118.927349218999893, 49.229667102000036 ], [ -118.92731001599995, 49.229370891000045 ], [ -118.927308668999927, 49.229370121000102 ], [ -118.927380530999969, 49.229374848000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42", "sL_BldgLoss": "42", "sL_StrLoss": "42", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D608B3BF62C65DC0726BB15FA0BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.101444675, 49.49190781900009 ], [ -119.10142157599995, 49.491368491000081 ], [ -119.101007607999975, 49.491376013000043 ], [ -119.10098451499999, 49.490836686000058 ], [ -119.100570548999912, 49.490844207000073 ], [ -119.100547460999948, 49.490304879000114 ], [ -119.100133500999974, 49.490312398000107 ], [ -119.100121959999939, 49.490042735000031 ], [ -119.099708000999897, 49.490050252000046 ], [ -119.099684922999984, 49.489510923000111 ], [ -119.099270968999932, 49.489518440000055 ], [ -119.099247894999934, 49.488979112000067 ], [ -119.098833944999953, 49.488986625000045 ], [ -119.09882241199989, 49.488716962000048 ], [ -119.097994515999943, 49.488731985000058 ], [ -119.097982986999938, 49.488462321000092 ], [ -119.097155094999977, 49.488477340000088 ], [ -119.097143569999972, 49.488207674000087 ], [ -119.096315680999965, 49.488222687000132 ], [ -119.096304161999967, 49.487953022000134 ], [ -119.095890219999944, 49.487960526000052 ], [ -119.095855670999967, 49.487151531000052 ], [ -119.09792534499999, 49.487113999 ], [ -119.097936871999977, 49.487383663000074 ], [ -119.098350808999925, 49.487376152000074 ], [ -119.09836234, 49.487645817000072 ], [ -119.099190217999976, 49.48763079 ], [ -119.099201753999949, 49.487900455000059 ], [ -119.099615692999961, 49.487892939000055 ], [ -119.099627229999925, 49.488162603000077 ], [ -119.100455116, 49.488147567000091 ], [ -119.100478201999962, 49.488686895000086 ], [ -119.100892147999929, 49.4886793760001 ], [ -119.100915238999931, 49.489218702000095 ], [ -119.1013291899999, 49.48921118100003 ], [ -119.101352286999926, 49.489750509000068 ], [ -119.101766242999986, 49.489742986000053 ], [ -119.101777791999965, 49.490012649000128 ], [ -119.102191749999946, 49.490005124000049 ], [ -119.102214855999961, 49.490544451000069 ], [ -119.102628817, 49.490536924000047 ], [ -119.102651929000018, 49.491076251000031 ], [ -119.103065895999961, 49.491068724000044 ], [ -119.103100569999967, 49.491877714000061 ], [ -119.101444675, 49.49190781900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "83", "sL_BldgLoss": "83", "sL_StrLoss": "83", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CEBF9F123EB35DC0F7CDFDD563C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.798194855999938, 49.571386709000102 ], [ -118.803693549999977, 49.571752005000121 ], [ -118.803132601999948, 49.575331750000018 ], [ -118.797633483999959, 49.574966427000078 ], [ -118.798194855999938, 49.571386709000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "86.5", "sL_BldgLoss": "86.5", "sL_StrLoss": "86.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E6880841BFAB5DC0E834EAA5D28F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.680053476999944, 49.126105408000036 ], [ -118.680044360999901, 49.125835661000075 ], [ -118.68000993499993, 49.125836162000091 ], [ -118.67963334399991, 49.125841643000101 ], [ -118.679625392999981, 49.125606287000089 ], [ -118.679606003999979, 49.125032403000034 ], [ -118.680428026999948, 49.125020440000114 ], [ -118.680409792999981, 49.124480947000059 ], [ -118.6808207979999, 49.124474962000122 ], [ -118.680811678999945, 49.124205216000128 ], [ -118.681222684, 49.124199230000038 ], [ -118.681213560999979, 49.12392948300009 ], [ -118.681624562999971, 49.123923496000032 ], [ -118.68161543899997, 49.123653750000074 ], [ -118.681759347999986, 49.123651653000074 ], [ -118.681998086999954, 49.122137926000086 ], [ -118.68200802199999, 49.122074932000032 ], [ -118.68222363199996, 49.120707768000109 ], [ -118.682224201999986, 49.120707903000067 ], [ -118.684417209999978, 49.121089602000112 ], [ -118.685567112999962, 49.121055399000042 ], [ -118.685900988999961, 49.121247708000112 ], [ -118.686012012, 49.122065200000094 ], [ -118.686661780999927, 49.123045093000044 ], [ -118.686744507999919, 49.12347518500011 ], [ -118.686510805999916, 49.124261295000046 ], [ -118.686201656999941, 49.124459809000079 ], [ -118.684929434999987, 49.12437303600008 ], [ -118.684994851999988, 49.12630325700011 ], [ -118.684419586999979, 49.126311654000119 ], [ -118.683350768999972, 49.12632724600018 ], [ -118.683332501999942, 49.125787754000044 ], [ -118.682921482999973, 49.125793748000085 ], [ -118.682884959999953, 49.124714764000075 ], [ -118.682473951999938, 49.124720756000094 ], [ -118.682483080999987, 49.124990502000095 ], [ -118.682072069999904, 49.124996492000022 ], [ -118.682099449999967, 49.125805731000106 ], [ -118.681688432999977, 49.125811719000069 ], [ -118.681697555999932, 49.126081466000123 ], [ -118.680966131, 49.126092120000088 ], [ -118.680053476999944, 49.126105408000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "205.1", "sL_BldgLoss": "205.1", "sL_StrLoss": "205.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D6699EAAEB35DC0DB38DEF419C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.805898561000035, 49.545166559000087 ], [ -118.806182213999961, 49.543354510000015 ], [ -118.811677629999949, 49.543719417000034 ], [ -118.811649225999929, 49.543901010000063 ], [ -118.81300180099997, 49.543990780000101 ], [ -118.812441913000029, 49.547570717000056 ], [ -118.810586997999962, 49.54744760200002 ], [ -118.810331904999941, 49.54907806000012 ], [ -118.808319811999951, 49.548944478000053 ], [ -118.807780170999962, 49.552392309000091 ], [ -118.802283752999969, 49.55202721000007 ], [ -118.802844483999962, 49.54844734900005 ], [ -118.804856537999939, 49.548581034000051 ], [ -118.805396351999974, 49.545133198000045 ], [ -118.805898561000035, 49.545166559000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "98.9", "sL_BldgLoss": "98.9", "sL_StrLoss": "98.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007F5671E44BE5DC0A14EB31FAD974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.970135790999962, 49.183015081000093 ], [ -118.975589882999913, 49.183371889000114 ], [ -118.975046865, 49.186954575000073 ], [ -118.969592355999907, 49.186597743000057 ], [ -118.969637537999958, 49.186299902000016 ], [ -118.969829015999906, 49.186299902000016 ], [ -118.970354420999982, 49.186093402000061 ], [ -118.970986297999943, 49.185714609000115 ], [ -118.971127315, 49.185459595000061 ], [ -118.970819321999983, 49.184277502000086 ], [ -118.970528186999928, 49.183877300000134 ], [ -118.970030793999982, 49.183707336000062 ], [ -118.970135790999962, 49.183015081000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6143167", "BldgCostT": "4236667", "sL_LossRatio": "1", "sL_AssetLoss": "296.8", "sL_BldgLoss": "296.8", "sL_StrLoss": "296.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000650E7E58BA75DC000423DE0AE954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.622734977999983, 49.162939994000119 ], [ -118.622664191999903, 49.162843213000016 ], [ -118.622333402, 49.162855996000069 ], [ -118.622171086999913, 49.163317396000132 ], [ -118.620789882999986, 49.163840098000037 ], [ -118.62052959, 49.164311504000125 ], [ -118.619879395999973, 49.164536613000024 ], [ -118.618748023999942, 49.165191704000073 ], [ -118.618354796999938, 49.165341200000121 ], [ -118.618153792999962, 49.165496495000085 ], [ -118.617975985999948, 49.165922291000037 ], [ -118.617326103999957, 49.166182905000014 ], [ -118.617153482999967, 49.166338207000052 ], [ -118.616784095999904, 49.166829504000141 ], [ -118.616647211, 49.167262499000074 ], [ -118.614980512999935, 49.168320690000023 ], [ -118.614796996999985, 49.168594104000057 ], [ -118.614638002999968, 49.169162410000112 ], [ -118.614247898999935, 49.169428701000143 ], [ -118.614011593, 49.169729195000109 ], [ -118.613128088999986, 49.169984199000098 ], [ -118.611813106999989, 49.17117791200009 ], [ -118.610939454999979, 49.171117780000074 ], [ -118.611510324999941, 49.167536888000015 ], [ -118.613219132999944, 49.167654496000068 ], [ -118.613601455999955, 49.165255429000048 ], [ -118.613747881999956, 49.165265505000036 ], [ -118.613802263999929, 49.164924233000072 ], [ -118.616973085999973, 49.165142387000081 ], [ -118.617052339999972, 49.164644805000101 ], [ -118.617254966999951, 49.164658743000082 ], [ -118.617297943999958, 49.164388910000078 ], [ -118.617763466999989, 49.164420929000045 ], [ -118.617802933999897, 49.164173121000047 ], [ -118.618408131999956, 49.164214743000088 ], [ -118.618453517999939, 49.163929734000064 ], [ -118.619260863999969, 49.163985255000114 ], [ -118.619299491999982, 49.163742653000028 ], [ -118.619924460999982, 49.163785627000088 ], [ -118.619956471999942, 49.163584568000019 ], [ -118.620066159999951, 49.163592110000096 ], [ -118.620501492999935, 49.16085757200009 ], [ -118.625950241999945, 49.161232082000048 ], [ -118.625907211999973, 49.161502588000118 ], [ -118.626119552999938, 49.161517178000103 ], [ -118.626072000999926, 49.161816123000087 ], [ -118.626229969999912, 49.161826976000079 ], [ -118.626169203999979, 49.162208978000116 ], [ -118.626438386999936, 49.162227472000019 ], [ -118.626223995999965, 49.163575259000091 ], [ -118.625868732999962, 49.165808471000048 ], [ -118.625536814999947, 49.165785667000044 ], [ -118.625395658999977, 49.166672879000082 ], [ -118.625336218, 49.166668795000092 ], [ -118.625267375, 49.167101480000106 ], [ -118.624909481999936, 49.167076891000114 ], [ -118.624835778999937, 49.167540089000056 ], [ -118.62421075499995, 49.167497143000034 ], [ -118.624178759999964, 49.167698203000072 ], [ -118.623371344999953, 49.167642719000064 ], [ -118.623332733000012, 49.167885321000071 ], [ -118.622727482999949, 49.1678437260001 ], [ -118.62268211899999, 49.168128735000046 ], [ -118.62267221399999, 49.168128055000061 ], [ -118.622434586999972, 49.169620936000122 ], [ -118.622146520999976, 49.169601138000047 ], [ -118.622102185999893, 49.169879644000048 ], [ -118.621789639999989, 49.169858162000118 ], [ -118.621747183999986, 49.170124852000086 ], [ -118.621483786999974, 49.170106747000069 ], [ -118.621437584999967, 49.170396957000072 ], [ -118.621113564999973, 49.17037468500012 ], [ -118.621064085999976, 49.170685464000087 ], [ -118.620796558999928, 49.17066707500009 ], [ -118.620732490999956, 49.171069471000038 ], [ -118.620672437999971, 49.171065343000144 ], [ -118.62060990699996, 49.171458072000064 ], [ -118.620606331999937, 49.171457827000047 ], [ -118.62052922699999, 49.171942073000039 ], [ -118.620369492999956, 49.171931093000126 ], [ -118.620324033999907, 49.172216578000111 ], [ -118.620056899999923, 49.172198213000065 ], [ -118.619989639999943, 49.17262058300004 ], [ -118.619672565999963, 49.172598785000041 ], [ -118.619615440999937, 49.17295749100002 ], [ -118.619439524999962, 49.172945397000021 ], [ -118.619375551999937, 49.173347094000043 ], [ -118.619353981999964, 49.173345612000041 ], [ -118.619274274999967, 49.173846096000027 ], [ -118.61910345299998, 49.173834351000018 ], [ -118.619047781999953, 49.174183900000074 ], [ -118.618552754999939, 49.174149865000139 ], [ -118.618503672999964, 49.174458012000137 ], [ -118.618219211999957, 49.174438453000043 ], [ -118.618142982, 49.174917018000059 ], [ -118.618023948999905, 49.174908834000114 ], [ -118.617942200999963, 49.175422021000038 ], [ -118.61732833399999, 49.175379810000081 ], [ -118.617250393999925, 49.175869035000055 ], [ -118.616719225999972, 49.175832508000056 ], [ -118.616664984999957, 49.176172948000037 ], [ -118.616029504999972, 49.176129244000023 ], [ -118.615980869999959, 49.176434463000085 ], [ -118.615475862999972, 49.17639972900011 ], [ -118.615406965999952, 49.176832075000085 ], [ -118.61496501299996, 49.1768016750001 ], [ -118.614877070999952, 49.177353484000029 ], [ -118.613469091999889, 49.177256627000098 ], [ -118.613340344000022, 49.178064317000072 ], [ -118.61282067800002, 49.178028564000066 ], [ -118.612773431999955, 49.178324929000048 ], [ -118.611726661999967, 49.178252902000061 ], [ -118.611643009, 49.178777553000046 ], [ -118.609092060999956, 49.17860198200006 ], [ -118.606929481999927, 49.178453092000034 ], [ -118.607158394999942, 49.177948290000103 ], [ -118.607680497999965, 49.177598 ], [ -118.607982418999924, 49.17717219900009 ], [ -118.608580783999969, 49.176982704000039 ], [ -118.609185320999956, 49.176596803000045 ], [ -118.609961099999978, 49.176405896000055 ], [ -118.610162884999937, 49.176259193000078 ], [ -118.61052538, 49.176021392000116 ], [ -118.610962411999935, 49.175970101000054 ], [ -118.611423020999965, 49.175765007000059 ], [ -118.612109585999946, 49.17535060800008 ], [ -118.612613714, 49.174813709000091 ], [ -118.613216280999922, 49.174355097000124 ], [ -118.614085513999925, 49.174108691000079 ], [ -118.61444889199997, 49.173869395000033 ], [ -118.61547561, 49.17340509600011 ], [ -118.61577081099999, 49.172762793000068 ], [ -118.616180213999911, 49.172279994000036 ], [ -118.616733010999923, 49.171975195000115 ], [ -118.616849608999971, 49.17174018200005 ], [ -118.616855284999971, 49.171110710000129 ], [ -118.617350412999912, 49.170699101000018 ], [ -118.618103590999908, 49.169816107000102 ], [ -118.61819369399997, 49.168816299000056 ], [ -118.619009520999953, 49.16817400500009 ], [ -118.619093484999965, 49.167768096000032 ], [ -118.619707625, 49.167669805000052 ], [ -118.619882478999926, 49.167622798000068 ], [ -118.619878521999937, 49.167047402 ], [ -118.619329205999918, 49.166614505000034 ], [ -118.620188710999983, 49.166070390000087 ], [ -118.621233807999914, 49.165722883000129 ], [ -118.621610188999966, 49.165493603000115 ], [ -118.622266802999931, 49.165439489000079 ], [ -118.622511211999978, 49.165337009000069 ], [ -118.622798498999941, 49.164874090000076 ], [ -118.6226945, 49.164236086000116 ], [ -118.622493498999987, 49.163951195000031 ], [ -118.622673805999938, 49.163580884000048 ], [ -118.622931302000012, 49.163468393000088 ], [ -118.622890997999917, 49.163082400000043 ], [ -118.622734977999983, 49.162939994000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.2", "sL_BldgLoss": "42.2", "sL_StrLoss": "42.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F6ECDA5AB6AE5DC0B428810765D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.730348617999965, 49.665421436000088 ], [ -118.733202772999988, 49.665612465000073 ], [ -118.732916481999936, 49.666108890000082 ], [ -118.731826312999956, 49.666601702000072 ], [ -118.731230292999939, 49.667024701000095 ], [ -118.730392285000036, 49.668413291000022 ], [ -118.729739492999897, 49.669133907000045 ], [ -118.729273894999892, 49.66925789800009 ], [ -118.728319599999978, 49.66936180800009 ], [ -118.727801391999932, 49.669603907000131 ], [ -118.727781134999987, 49.669862351000091 ], [ -118.727733489999949, 49.669859161000076 ], [ -118.728301458999965, 49.666280292000046 ], [ -118.728633820999946, 49.666302547 ], [ -118.728750677999926, 49.665566099000081 ], [ -118.729526568999958, 49.665618049000038 ], [ -118.729548548999958, 49.665479517000065 ], [ -118.730331092999961, 49.665531907000066 ], [ -118.730348617999965, 49.665421436000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "194.3", "sL_BldgLoss": "194.3", "sL_StrLoss": "194.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F35298944EBD5DC0352A6841C5994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.957302237999912, 49.198100834000108 ], [ -118.962758001999958, 49.198458283000072 ], [ -118.962213817999938, 49.202040822000079 ], [ -118.96069622899995, 49.201941422000125 ], [ -118.960662658999965, 49.202162357000113 ], [ -118.96051696899994, 49.202152813000048 ], [ -118.960361, 49.203179261000074 ], [ -118.959037075999902, 49.203092526000056 ], [ -118.958770019, 49.204849592000087 ], [ -118.953313535999953, 49.204491946000125 ], [ -118.953858435, 49.200909464000127 ], [ -118.955182285999967, 49.200996263000057 ], [ -118.955449454999922, 49.199239195000096 ], [ -118.955595133999921, 49.199248746000087 ], [ -118.955751197, 49.198222299000101 ], [ -118.957268653999989, 49.198321769000131 ], [ -118.957302237999912, 49.198100834000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "34.1", "sL_BldgLoss": "34.1", "sL_StrLoss": "34.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5852DC943B75DC01C638275F7B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.86104814399998, 49.435267845000112 ], [ -118.866531142, 49.435630035000024 ], [ -118.865976712999952, 49.439210812000034 ], [ -118.860493293999966, 49.438848596000156 ], [ -118.86104814399998, 49.435267845000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.9", "sL_BldgLoss": "47.9", "sL_StrLoss": "47.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000459ABA230AB95DC02E571E2860A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.889968988999982, 49.283266956000084 ], [ -118.89387647699999, 49.283524952000079 ], [ -118.893246216999955, 49.284017797000075 ], [ -118.892735403999893, 49.284341103000081 ], [ -118.89063550899999, 49.285177092000033 ], [ -118.890247404999968, 49.285426289000085 ], [ -118.889595211999932, 49.28569760000007 ], [ -118.889968988999982, 49.283266956000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "43.9", "sL_BldgLoss": "43.9", "sL_StrLoss": "43.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E8DE1FBACC55DC02A41DA5A3ABC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.086402095999972, 49.472270800000054 ], [ -119.086520547999925, 49.471481872000027 ], [ -119.08640684699999, 49.471474603000068 ], [ -119.086944575999951, 49.467892885000012 ], [ -119.08949436499995, 49.468055862000071 ], [ -119.089588783999929, 49.468202299000048 ], [ -119.089805505999976, 49.468835391 ], [ -119.089811877999963, 49.468882999000122 ], [ -119.089909960999961, 49.469616825000067 ], [ -119.089971309999953, 49.470075506000072 ], [ -119.090213108999947, 49.470633290000094 ], [ -119.090297139999947, 49.470713394000057 ], [ -119.090705205999939, 49.471102293000094 ], [ -119.091379903999922, 49.471471803000036 ], [ -119.091915785999959, 49.471639794000112 ], [ -119.092035169999988, 49.471662092000095 ], [ -119.091891224999969, 49.472621570000108 ], [ -119.086402095999972, 49.472270800000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.5", "sL_BldgLoss": "45.5", "sL_StrLoss": "45.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C87A6AF595B75DC0BBA71F92A9B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.868219048999975, 49.394439889000125 ], [ -118.870285109999884, 49.394406476000022 ], [ -118.870315841999954, 49.395215594000049 ], [ -118.869902624, 49.395222280000077 ], [ -118.869912866999968, 49.395491986000067 ], [ -118.869499644999962, 49.395498670000094 ], [ -118.869509885999889, 49.395768376000021 ], [ -118.86909666199989, 49.395775059000101 ], [ -118.869147853999976, 49.39712358900011 ], [ -118.868734619999913, 49.397130271000023 ], [ -118.86874485599999, 49.397399978000045 ], [ -118.867233433999957, 49.397424404000105 ], [ -118.867289683, 49.396960397000015 ], [ -118.86720219099999, 49.396088796000072 ], [ -118.867268307999922, 49.395804610000027 ], [ -118.867443765999951, 49.395801776000056 ], [ -118.867423844999948, 49.395276491000132 ], [ -118.867738684999921, 49.394717524000079 ], [ -118.868229280999955, 49.39470959500008 ], [ -118.868219048999975, 49.394439889000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "84.4", "sL_BldgLoss": "84.4", "sL_StrLoss": "84.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FFE14BF10B05DC095456117C5854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.748583423999989, 49.043102016000027 ], [ -118.754019435999936, 49.043470114000044 ], [ -118.753461028999951, 49.047052440000094 ], [ -118.748024602999976, 49.046684316000025 ], [ -118.748583423999989, 49.043102016000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "55.3", "sL_BldgLoss": "55.3", "sL_StrLoss": "55.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D50C045CEBC45DC09DA155B992B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.077813971999959, 49.446158590000046 ], [ -119.078396378999955, 49.445770295000067 ], [ -119.078430025, 49.445989407000148 ], [ -119.07855794799994, 49.446319017000171 ], [ -119.078606696999884, 49.446444606000107 ], [ -119.079639383999918, 49.447893899000043 ], [ -119.080129011999972, 49.448478591000033 ], [ -119.080138227999953, 49.448487983000071 ], [ -119.08068989, 49.449049709000043 ], [ -119.081506710999918, 49.449723990000088 ], [ -119.08205435299999, 49.450120174000048 ], [ -119.078174448999974, 49.449871782000066 ], [ -119.078038190999962, 49.450778649000029 ], [ -119.077791342999916, 49.452421450000017 ], [ -119.07719104399996, 49.452383006000048 ], [ -119.077172819999987, 49.45250426500013 ], [ -119.076844533999932, 49.452483239000081 ], [ -119.071686192999948, 49.452152739000063 ], [ -119.071897151999949, 49.450750028000073 ], [ -119.075707501999943, 49.450651248000035 ], [ -119.076051595999942, 49.448353986000029 ], [ -119.076084165999958, 49.448181653000105 ], [ -119.07610440799999, 49.448074443000046 ], [ -119.076215541999943, 49.447486145000049 ], [ -119.076241608999965, 49.447348186000099 ], [ -119.076281511, 49.447266610000021 ], [ -119.076546721999961, 49.446958202000104 ], [ -119.076559102999923, 49.446950534000067 ], [ -119.077468522999965, 49.44638890100002 ], [ -119.077813971999959, 49.446158590000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "145.8", "sL_BldgLoss": "145.8", "sL_StrLoss": "145.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BA3B42F47A75DC05302C53C69944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.612558898999922, 49.162014748000125 ], [ -118.612760923999986, 49.160747032000081 ], [ -118.609125779999914, 49.160496756000079 ], [ -118.609197756999961, 49.160045298000078 ], [ -118.609104207999948, 49.160038856000057 ], [ -118.609341316999945, 49.158551607000113 ], [ -118.609675082999928, 49.156457913000118 ], [ -118.615123228999934, 49.156832973000036 ], [ -118.615051313999984, 49.15728443700003 ], [ -118.615144857999923, 49.157290874000083 ], [ -118.614942914000025, 49.158558600000035 ], [ -118.618384980999949, 49.158795410000096 ], [ -118.61857793800003, 49.158808682000107 ], [ -118.61800771899999, 49.16238965900007 ], [ -118.612558898999922, 49.162014748000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "102", "sL_BldgLoss": "102", "sL_StrLoss": "102", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D13C047EE2BA5DC0E5F9A10CB49D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.917908304999955, 49.230323034000101 ], [ -118.923367548999977, 49.230682459000086 ], [ -118.923119303999911, 49.232306446000038 ], [ -118.922702611999938, 49.23240729900008 ], [ -118.92094398799999, 49.233489693000116 ], [ -118.919564706999935, 49.234006697000062 ], [ -118.919418595999943, 49.234040719000106 ], [ -118.917360288999959, 49.233905173000046 ], [ -118.917908304999955, 49.230323034000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "161.2", "sL_BldgLoss": "161.2", "sL_StrLoss": "161.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003762DAF55AA85DC0B57CD1DC92894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.629434036999896, 49.077515028000057 ], [ -118.629549825999916, 49.076785351000098 ], [ -118.627246918999958, 49.076626870000048 ], [ -118.627270211999942, 49.076480121000017 ], [ -118.62660380799997, 49.076434252000048 ], [ -118.626782526999975, 49.075308419000109 ], [ -118.626482278999973, 49.07528775100004 ], [ -118.626497542, 49.0751916 ], [ -118.626008569999911, 49.075157938000089 ], [ -118.626279363, 49.073452148000058 ], [ -118.626577106999918, 49.071576436000143 ], [ -118.632015467999977, 49.07195069100004 ], [ -118.632000216999955, 49.072046845000095 ], [ -118.632489160999953, 49.072080478000103 ], [ -118.632310593999989, 49.07320632600004 ], [ -118.632610829999962, 49.07322697700009 ], [ -118.632587555, 49.073373728000064 ], [ -118.63325392199999, 49.073419561000023 ], [ -118.633138196999965, 49.074149245000044 ], [ -118.635441003000011, 49.074307601000037 ], [ -118.63524165599992, 49.075564892000031 ], [ -118.634873113999973, 49.077889135000056 ], [ -118.629434036999896, 49.077515028000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "39.9", "sL_BldgLoss": "39.9", "sL_StrLoss": "39.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000087D506C4F7B65DC00D0A39A5F2BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.8564072, 49.458558408000073 ], [ -118.861892925999939, 49.458920819000156 ], [ -118.861337855999963, 49.462501450000033 ], [ -118.855851710999957, 49.46213901300009 ], [ -118.8564072, 49.458558408000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214107166", "BldgCostT": "143566666", "sL_LossRatio": "0.999242364740803", "sL_AssetLoss": "10796.752", "sL_BldgLoss": "10788.572", "sL_StrLoss": "10785.6", "sL_NStrLoss": "2.972", "sL_ContLoss": "8.18", "geom_point": "0101000020E610000000A3B2FE62AB5DC0411A040C018C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.673043050999965, 49.108405497000035 ], [ -118.673085549999925, 49.106328687000072 ], [ -118.673110851999965, 49.104702001000078 ], [ -118.673179205999972, 49.100222091000042 ], [ -118.672979803999922, 49.09885826900004 ], [ -118.673003523999981, 49.098203935000107 ], [ -118.673103414999943, 49.097163595000076 ], [ -118.673114252999966, 49.097065065000038 ], [ -118.673239844999927, 49.096224032000087 ], [ -118.674222597999972, 49.095265812000072 ], [ -118.673055350999931, 49.0922739230001 ], [ -118.673042441999939, 49.091284809000058 ], [ -118.673058592999965, 49.090269482000053 ], [ -118.673143436999922, 49.089889800000037 ], [ -118.673301206999966, 49.089252751000103 ], [ -118.673467797999962, 49.089264142000083 ], [ -118.673461496999963, 49.08907669900006 ], [ -118.673364557999946, 49.088996947000076 ], [ -118.673536581999912, 49.08830231300005 ], [ -118.673532067999972, 49.088164397000078 ], [ -118.673394602999949, 49.083997803000059 ], [ -118.67351190699999, 49.083254236000087 ], [ -118.673798580999943, 49.083273839000121 ], [ -118.673848806999928, 49.08295544200007 ], [ -118.674190951999933, 49.082978838 ], [ -118.674236203999939, 49.082691951000108 ], [ -118.675225863999941, 49.082759617000121 ], [ -118.675307281999977, 49.08224337300009 ], [ -118.675580468999939, 49.082262051000122 ], [ -118.675802933999989, 49.080851380000112 ], [ -118.676355820999945, 49.080889178000113 ], [ -118.676829531999928, 49.080921560000036 ], [ -118.677014440999983, 49.079748805000115 ], [ -118.677050508999983, 49.079751270000024 ], [ -118.677061404999961, 49.07968215500005 ], [ -118.67791571199993, 49.07963109800005 ], [ -118.683192933999933, 49.079616497000075 ], [ -118.683412193999914, 49.079615919000013 ], [ -118.683473188, 49.079705823000111 ], [ -118.683530162999929, 49.07978989800008 ], [ -118.683638822999981, 49.079950113000017 ], [ -118.683413000999977, 49.080154600000142 ], [ -118.683552896999956, 49.080252801000029 ], [ -118.683543567999948, 49.080604127000065 ], [ -118.683534342, 49.08095277500005 ], [ -118.68351884399999, 49.081537720000021 ], [ -118.683485693999913, 49.082788804000067 ], [ -118.683483076999963, 49.082887085000038 ], [ -118.683481471999983, 49.082947720000107 ], [ -118.683627918999917, 49.084422210000156 ], [ -118.683647013999973, 49.084626955000097 ], [ -118.683665509, 49.084970174000027 ], [ -118.683657027999985, 49.086110657000084 ], [ -118.683634096999981, 49.086110992000044 ], [ -118.683652342999963, 49.086650488 ], [ -118.683241649999928, 49.086656478000123 ], [ -118.683259891, 49.087195975000085 ], [ -118.682438493999911, 49.08720795300011 ], [ -118.682456725999913, 49.087747449000098 ], [ -118.682046023999973, 49.087753435000067 ], [ -118.682055137999953, 49.088023183000111 ], [ -118.681644432, 49.088029168000034 ], [ -118.681671770999927, 49.088838412000051 ], [ -118.681261058999951, 49.088844396000134 ], [ -118.681297501999964, 49.089923388000081 ], [ -118.680886778999934, 49.089929372000029 ], [ -118.680960197000019, 49.092103402000063 ], [ -118.68211314899996, 49.092182142000112 ], [ -118.681953190999977, 49.093197072000102 ], [ -118.683670433, 49.093314327 ], [ -118.68369175199993, 49.095940367000054 ], [ -118.683689650999924, 49.096104468000078 ], [ -118.683706909999941, 49.097200798000081 ], [ -118.683515697999923, 49.097187745000049 ], [ -118.683459702, 49.097543073000118 ], [ -118.682339090999974, 49.097466566000044 ], [ -118.682333252999982, 49.097503599000071 ], [ -118.682191411999952, 49.097493914000047 ], [ -118.682099772999919, 49.098075303000101 ], [ -118.682017349999953, 49.098069675000069 ], [ -118.68193839199995, 49.098570605000063 ], [ -118.681716158, 49.09855543000009 ], [ -118.681634505999938, 49.09907341000013 ], [ -118.680606602999944, 49.099003218000078 ], [ -118.680253022999963, 49.101245807000076 ], [ -118.680575185999885, 49.10126780800006 ], [ -118.68037560199997, 49.102533629000092 ], [ -118.680709164999925, 49.102556407000066 ], [ -118.680295018999942, 49.105182945000088 ], [ -118.680622639, 49.105205316000081 ], [ -118.680570769999989, 49.105534270000135 ], [ -118.680966749999953, 49.10556130800007 ], [ -118.680927496999956, 49.105810260000062 ], [ -118.681322055999914, 49.10583719800006 ], [ -118.681226739999929, 49.106441726000078 ], [ -118.681700782999926, 49.106474090000056 ], [ -118.681605026999961, 49.107081435000055 ], [ -118.682219407999966, 49.107123376000111 ], [ -118.682051529999967, 49.108188217000112 ], [ -118.6809005699999, 49.108203656000079 ], [ -118.678484993999987, 49.108235972000081 ], [ -118.678319187999989, 49.108238195000055 ], [ -118.678166664999964, 49.108323939000051 ], [ -118.677959981999919, 49.108440131000066 ], [ -118.673781424999945, 49.10852414400005 ], [ -118.673171629999985, 49.108523864000055 ], [ -118.673045849999937, 49.108523818 ], [ -118.673043050999965, 49.108405497000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8085886", "BldgCostT": "4762079", "sL_LossRatio": "1", "sL_AssetLoss": "338.2", "sL_BldgLoss": "338.2", "sL_StrLoss": "338.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF3EDFBB729E5DC009A69A594B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.479965368999956, 49.052733192000076 ], [ -118.479776409999943, 49.052211094000064 ], [ -118.479538078999923, 49.051874805000125 ], [ -118.478122185999894, 49.052658994000048 ], [ -118.477509919999946, 49.052842306000045 ], [ -118.476411398999971, 49.053082889000031 ], [ -118.476033501999922, 49.053108810000055 ], [ -118.476025018, 49.053101644 ], [ -118.475914801999949, 49.053008792000149 ], [ -118.475301893000022, 49.052492386000026 ], [ -118.473950668999962, 49.051459494000035 ], [ -118.473776139999927, 49.05129443600007 ], [ -118.473322688999986, 49.05086569200013 ], [ -118.473255819999949, 49.050759165000045 ], [ -118.472915296999972, 49.05021688800008 ], [ -118.472375710999955, 49.048924902000117 ], [ -118.472251111999981, 49.048676194000045 ], [ -118.472168590999985, 49.048252038000079 ], [ -118.472149915999935, 49.048155783000034 ], [ -118.472295131999886, 49.04685347700017 ], [ -118.472313408000019, 49.046689397000094 ], [ -118.472317735000019, 49.046650563000085 ], [ -118.472423205999945, 49.045704993000065 ], [ -118.47271211599994, 49.044735407000083 ], [ -118.473390837999958, 49.044726742000087 ], [ -118.474909042999954, 49.044707344000066 ], [ -118.474901061999958, 49.044437568000014 ], [ -118.475311448999889, 49.044432321000038 ], [ -118.47530346799995, 49.044162543000041 ], [ -118.47653462199996, 49.044146796000121 ], [ -118.476558589, 49.044956126000038 ], [ -118.476148196999986, 49.044961377000064 ], [ -118.476156184, 49.045231154000106 ], [ -118.475745790999952, 49.045236403000104 ], [ -118.475761759999969, 49.045775956000064 ], [ -118.475351361999969, 49.045781205000026 ], [ -118.47537531099999, 49.046590535000057 ], [ -118.475785715999962, 49.046585287000013 ], [ -118.475793700999972, 49.046855063000095 ], [ -118.47620410799999, 49.046849814000083 ], [ -118.476220083999948, 49.047389367000079 ], [ -118.476630496000013, 49.047384116000025 ], [ -118.476638485999928, 49.047653892000035 ], [ -118.477048898999954, 49.047648638000027 ], [ -118.477064883999958, 49.048188192000083 ], [ -118.477475301999945, 49.048182937000036 ], [ -118.47748329699999, 49.048452714000113 ], [ -118.477893716999972, 49.048447458000048 ], [ -118.477901713999955, 49.048717234000023 ], [ -118.478312135999929, 49.048711976000035 ], [ -118.478336135999925, 49.049521305000077 ], [ -118.477104851, 49.049537074000078 ], [ -118.477112842999972, 49.049806850000046 ], [ -118.47629198099996, 49.049817356000105 ], [ -118.476317277999925, 49.050671609000126 ], [ -118.479608895999917, 49.05090292600007 ], [ -118.479591440999982, 49.050314851000046 ], [ -118.480822744999926, 49.050299055000082 ], [ -118.480843259999972, 49.050989644000069 ], [ -118.481086902999962, 49.051006760000071 ], [ -118.481079240999961, 49.051054111000106 ], [ -118.48085211899999, 49.052457708000063 ], [ -118.480886856999973, 49.052457262000097 ], [ -118.480926932999949, 49.053806141000059 ], [ -118.480633299999965, 49.053809909000073 ], [ -118.480608933999932, 49.05396047600005 ], [ -118.480047810999963, 49.053327483000082 ], [ -118.479965368999956, 49.052733192000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.6", "sL_BldgLoss": "35.6", "sL_StrLoss": "35.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AF6A3552BA25DC030977DEC688D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.534273763999948, 49.106045645000165 ], [ -118.53427251899997, 49.1060053120001 ], [ -118.534213672999954, 49.106006094000051 ], [ -118.533450751999979, 49.106016232000052 ], [ -118.533420611999958, 49.10503831900008 ], [ -118.53341749399999, 49.104937165000095 ], [ -118.533360734, 49.104937920000047 ], [ -118.533006618999963, 49.10494262400006 ], [ -118.532981684999939, 49.104133323000077 ], [ -118.532570815999946, 49.104138779000053 ], [ -118.5325613099999, 49.103830163000055 ], [ -118.532537578999921, 49.103059712000096 ], [ -118.53377015699999, 49.103043338000177 ], [ -118.533795103999964, 49.103852638000021 ], [ -118.534205970999906, 49.103847178000109 ], [ -118.534230924999974, 49.104656478000052 ], [ -118.53464179799991, 49.104651016000069 ], [ -118.534658438999955, 49.105190549000078 ], [ -118.53506931599999, 49.10518508500008 ], [ -118.535077639999926, 49.105454851000061 ], [ -118.535488518999969, 49.105449386000053 ], [ -118.53551349599995, 49.106258686000032 ], [ -118.534862393999987, 49.106267347000042 ], [ -118.534280838999948, 49.106275079000092 ], [ -118.534273763999948, 49.106045645000165 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.9", "sL_BldgLoss": "38.9", "sL_StrLoss": "38.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DE15B7945A35DC0F8C66BB98E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.549959056999967, 49.151971048000121 ], [ -118.553507865999904, 49.152217401000016 ], [ -118.552313906999984, 49.152986136000138 ], [ -118.55145068099992, 49.153422252000105 ], [ -118.550502712999929, 49.153760143000035 ], [ -118.54963846299998, 49.153966095000044 ], [ -118.549959056999967, 49.151971048000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "68", "sL_BldgLoss": "68", "sL_StrLoss": "68", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E131D15A30A05DC0FCB826727B834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.502292303999923, 49.025713098000047 ], [ -118.503264281999975, 49.025604710000081 ], [ -118.503570418999942, 49.025605294000066 ], [ -118.503928790999922, 49.025656708000064 ], [ -118.50413372099996, 49.025629403000075 ], [ -118.504243908999953, 49.025516711000058 ], [ -118.50417559899995, 49.024965016000031 ], [ -118.504949309999944, 49.025019227000044 ], [ -118.504372005999969, 49.028600339000057 ], [ -118.504218665999929, 49.02858959600011 ], [ -118.504174610999954, 49.028862843000098 ], [ -118.500569484999957, 49.028610193000098 ], [ -118.500499104999975, 49.028384206000041 ], [ -118.500504688999968, 49.028196308000069 ], [ -118.50060862399999, 49.027986206000037 ], [ -118.500972813999979, 49.027550909000077 ], [ -118.501448294999946, 49.026714189000089 ], [ -118.50179131500002, 49.026179587000051 ], [ -118.501845614, 49.025970596000086 ], [ -118.502006383999969, 49.025808091000044 ], [ -118.502292303999923, 49.025713098000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "108.6", "sL_BldgLoss": "108.6", "sL_StrLoss": "108.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E77DD23F37A35DC0078AED282D904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.54935916499997, 49.128473442000036 ], [ -118.549350756999957, 49.128203679000073 ], [ -118.548939691999976, 49.128209196000036 ], [ -118.548922881999943, 49.127669668000117 ], [ -118.54851182299997, 49.127675184000047 ], [ -118.548495015999904, 49.127135656000092 ], [ -118.54808396199999, 49.127141169000083 ], [ -118.548058762999958, 49.126331877000034 ], [ -118.547647712999947, 49.12633738900012 ], [ -118.547614122999946, 49.12525833400008 ], [ -118.548847241999979, 49.125241794000026 ], [ -118.548838838999984, 49.124972030000023 ], [ -118.54924987599999, 49.1249665140001 ], [ -118.549241469999942, 49.124696751000023 ], [ -118.550063539999911, 49.124685713000133 ], [ -118.550055128999958, 49.124415950000085 ], [ -118.551699258999975, 49.124393859000072 ], [ -118.551707677999929, 49.124663623000068 ], [ -118.552118712999942, 49.124658096000118 ], [ -118.552160821999934, 49.126006914000051 ], [ -118.552571865999965, 49.126001385000102 ], [ -118.552613988999923, 49.127350202000102 ], [ -118.55220293399999, 49.127355731000051 ], [ -118.552211354999926, 49.127625494000021 ], [ -118.551800296999915, 49.127631021000106 ], [ -118.551808716999957, 49.127900784000126 ], [ -118.550986595999973, 49.127911834 ], [ -118.551003428999934, 49.128451361000039 ], [ -118.54935916499997, 49.128473442000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5385000", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "442.5", "sL_BldgLoss": "442.5", "sL_StrLoss": "442.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034577A2B5AA25DC0EB3225274D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.536457792999954, 49.043634280000063 ], [ -118.53645704799996, 49.043610069000117 ], [ -118.534558567999909, 49.04347766000005 ], [ -118.534628525999921, 49.04304211600008 ], [ -118.53306325199999, 49.042932920000098 ], [ -118.533120955999905, 49.042573728000015 ], [ -118.53302337599996, 49.042566920000098 ], [ -118.533598651999952, 49.038985732000121 ], [ -118.536731802999967, 49.039204285000103 ], [ -118.536726825999963, 49.039042736000049 ], [ -118.537481723, 49.039032680000027 ], [ -118.5383681499999, 49.039020864000058 ], [ -118.538377346999937, 49.039319033000034 ], [ -118.538720369999936, 49.039342950000076 ], [ -118.539032464999963, 49.039364709000033 ], [ -118.538974809999942, 49.039723906000049 ], [ -118.539072386999948, 49.039730709000054 ], [ -118.539002474999961, 49.040166258000092 ], [ -118.540567669, 49.04027536800001 ], [ -118.540038459999934, 49.043572805000089 ], [ -118.539992913, 49.043856587000036 ], [ -118.537624734999923, 49.04369149300004 ], [ -118.53674868399996, 49.043630406000091 ], [ -118.536457792999954, 49.043634280000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "122.4", "sL_BldgLoss": "122.4", "sL_StrLoss": "122.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B6A142FA2A15DC0FDF4447C4C804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.523097007999951, 49.000353674000024 ], [ -118.528526239999934, 49.000733206000163 ], [ -118.527951043999948, 49.004314583000038 ], [ -118.522521400999963, 49.003935023000118 ], [ -118.523097007999951, 49.000353674000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "72.5", "sL_BldgLoss": "72.5", "sL_StrLoss": "72.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F67DA1773A75DC02BA96E89378D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.615992034999977, 49.103540652000099 ], [ -118.615983273000012, 49.10327089500003 ], [ -118.614339892999965, 49.103293894000082 ], [ -118.614304883999935, 49.102214869000072 ], [ -118.618002405999903, 49.102163091000044 ], [ -118.61801117899999, 49.102432847000046 ], [ -118.618422016999958, 49.102427086000063 ], [ -118.618437989999961, 49.102918154000086 ], [ -118.618452580999957, 49.103366758000085 ], [ -118.618465889, 49.103775866000049 ], [ -118.617644193, 49.103787386000072 ], [ -118.617644289999944, 49.103790364000126 ], [ -118.617652961999937, 49.104057142000045 ], [ -118.617242110999968, 49.104062899000084 ], [ -118.617250879999958, 49.104332655000064 ], [ -118.616840026999938, 49.104338412000075 ], [ -118.616848792999946, 49.104608168000013 ], [ -118.614794513, 49.104636928000097 ], [ -118.614779073999941, 49.104161251000072 ], [ -118.614768246999972, 49.1038276600001 ], [ -118.615589947000018, 49.103816160000058 ], [ -118.615581186999989, 49.10354640300018 ], [ -118.615992034999977, 49.103540652000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106341334", "BldgCostT": "73098334", "sL_LossRatio": "0.999226984337063", "sL_AssetLoss": "2561.397", "sL_BldgLoss": "2559.417", "sL_StrLoss": "2558.7", "sL_NStrLoss": "0.717", "sL_ContLoss": "1.98", "geom_point": "0101000020E61000002FC13D2AD9A05DC0D948C8F610814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.506404421999903, 49.021885300000058 ], [ -118.506420896999956, 49.019439204000072 ], [ -118.506429605999941, 49.01827729399999 ], [ -118.513120511999972, 49.018210680000038 ], [ -118.513246788999965, 49.018159774000054 ], [ -118.513325976999937, 49.018085675000087 ], [ -118.514049896999936, 49.01651477100004 ], [ -118.514140472999927, 49.016463181000084 ], [ -118.51799227, 49.016461060000076 ], [ -118.518146891999976, 49.016413063000115 ], [ -118.51823607099999, 49.016310660000109 ], [ -118.518711883999927, 49.014718749000053 ], [ -118.518653090999962, 49.01461506100005 ], [ -118.519154900999965, 49.012798399000083 ], [ -118.519432065, 49.01179494400003 ], [ -118.519657743, 49.011032086000078 ], [ -118.519948896999963, 49.010053499000087 ], [ -118.519956478999916, 49.010028074000061 ], [ -118.518747742999949, 49.010458680000042 ], [ -118.517572758999961, 49.010747689000077 ], [ -118.516320118999957, 49.010896363000064 ], [ -118.514527429999973, 49.010920282000029 ], [ -118.506560086999968, 49.010914617000019 ], [ -118.506205702999949, 49.010915994000086 ], [ -118.505983871999959, 49.010929910000073 ], [ -118.505523318999977, 49.010958805000087 ], [ -118.505075599999884, 49.011027895000048 ], [ -118.504618488999952, 49.011138009000028 ], [ -118.504162575999928, 49.011326090000111 ], [ -118.504315084999959, 49.01118919200011 ], [ -118.504372191999977, 49.011064591000057 ], [ -118.504333710999958, 49.010818308000061 ], [ -118.504212866999964, 49.010647806000073 ], [ -118.503713642999955, 49.009784349000014 ], [ -118.503541137999903, 49.009360517000104 ], [ -118.503489931999965, 49.009234673000044 ], [ -118.503399926999947, 49.009013577000125 ], [ -118.503315341, 49.008618336000033 ], [ -118.503277762999943, 49.008442748000064 ], [ -118.50332236399997, 49.007918929000084 ], [ -118.503497979999963, 49.007331860000079 ], [ -118.503515045999919, 49.007303633000092 ], [ -118.504758361999961, 49.005243574000062 ], [ -118.504964954999963, 49.004711180000122 ], [ -118.505040780999977, 49.004172339000029 ], [ -118.505004412999966, 49.003948956000023 ], [ -118.504952421, 49.003630146000027 ], [ -118.504863642999965, 49.003356026000063 ], [ -118.504549074999957, 49.002384966000086 ], [ -118.504232440999914, 49.00143982900007 ], [ -118.503620228999964, 49.00154752300007 ], [ -118.502929163999966, 49.001662050000078 ], [ -118.502399688999944, 49.001753492000041 ], [ -118.501699189999954, 49.001892678000019 ], [ -118.5013333099999, 49.000918106000036 ], [ -118.501020695999983, 49.000115705000063 ], [ -118.501012390999946, 49.000001322000088 ], [ -118.502163593999938, 49.000002783000042 ], [ -118.503067371999961, 49.000003912000118 ], [ -118.503777467999925, 49.000004810000064 ], [ -118.504750931999965, 49.00000601500011 ], [ -118.505017267999946, 49.000006358000093 ], [ -118.516849458999957, 49.000020275000111 ], [ -118.51683644799999, 49.000101170000079 ], [ -118.521516159999962, 49.000428601000117 ], [ -118.521281612999971, 49.001887671000134 ], [ -118.521872443999968, 49.00192899500005 ], [ -118.521627205999948, 49.003454597000079 ], [ -118.52240772699993, 49.003509184000073 ], [ -118.522126850999939, 49.005256539000079 ], [ -118.523172618000018, 49.005329667000048 ], [ -118.523016878999925, 49.006298609000112 ], [ -118.523897060999957, 49.00636015000007 ], [ -118.523806735999969, 49.00692215000003 ], [ -118.523543272999987, 49.008561364000066 ], [ -118.52332144099995, 49.009941469000054 ], [ -118.523289708999968, 49.009939250000102 ], [ -118.523245950999964, 49.010211470000051 ], [ -118.523097574999923, 49.01020109600011 ], [ -118.52300866899995, 49.010754174000063 ], [ -118.522828485, 49.010741576000022 ], [ -118.522752381999936, 49.011214978000112 ], [ -118.522334846, 49.01118578500008 ], [ -118.522093830999978, 49.01268488800013 ], [ -118.522011525999943, 49.012679133000056 ], [ -118.521874464999911, 49.013531590000049 ], [ -118.521816895000015, 49.013527565000054 ], [ -118.521731286000019, 49.014059992000043 ], [ -118.521667270999927, 49.014055516000091 ], [ -118.521249801999929, 49.016651696000075 ], [ -118.521074399999975, 49.016639431000037 ], [ -118.520861326999949, 49.017964346000014 ], [ -118.520843257999914, 49.018076700000037 ], [ -118.520682232999917, 49.018065440000036 ], [ -118.518229788999975, 49.017893923000088 ], [ -118.518106771999953, 49.018658560000041 ], [ -118.517239397, 49.018597884000037 ], [ -118.517219637999986, 49.018720680000037 ], [ -118.51530448699998, 49.018586684000098 ], [ -118.51530205, 49.018601824000093 ], [ -118.512406642999949, 49.018399176000045 ], [ -118.512080307999938, 49.020425891000095 ], [ -118.510781102999886, 49.020334935000072 ], [ -118.51076205399994, 49.020453221000054 ], [ -118.509385419999944, 49.020356827000064 ], [ -118.509356959999977, 49.020533512000071 ], [ -118.509941952999938, 49.020574477000032 ], [ -118.50954224699997, 49.023055900000067 ], [ -118.509365087999981, 49.024155641000057 ], [ -118.506885944999922, 49.023982016000105 ], [ -118.506810592999955, 49.024449598000118 ], [ -118.504777722999961, 49.024307184000087 ], [ -118.504129942999938, 49.024261795000015 ], [ -118.504150840999927, 49.024164319000114 ], [ -118.504167817999956, 49.024085214000074 ], [ -118.504175989999965, 49.024046992000081 ], [ -118.505142798999927, 49.023109152000124 ], [ -118.506404421999903, 49.021885300000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "29.1", "sL_BldgLoss": "29.1", "sL_StrLoss": "29.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF22E8FD799E5DC0D78DF30EA2884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.477481030999954, 49.066195468000075 ], [ -118.477744588999897, 49.065960451000102 ], [ -118.477378921999957, 49.068218427 ], [ -118.473382881999953, 49.067937620000066 ], [ -118.476286520999949, 49.06684231400007 ], [ -118.47649700099997, 49.066762912000058 ], [ -118.477481030999954, 49.066195468000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF2FA73E6FA25DC0F986A159028E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.537838772999976, 49.108116868000067 ], [ -118.538858983999944, 49.10810326900004 ], [ -118.538900709999936, 49.109452099000038 ], [ -118.538489798999976, 49.109457577000065 ], [ -118.538531514999988, 49.110806407000076 ], [ -118.538304533999934, 49.110809432000103 ], [ -118.53729874699999, 49.110822832000075 ], [ -118.537240391999916, 49.108934470000037 ], [ -118.537500707999968, 49.108931003000116 ], [ -118.537651297999943, 49.108928996000074 ], [ -118.537640242999956, 49.108571299000047 ], [ -118.537626283999899, 49.108119697000049 ], [ -118.537838772999976, 49.108116868000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6001250", "BldgCostT": "3875000", "sL_LossRatio": "1", "sL_AssetLoss": "778", "sL_BldgLoss": "778", "sL_StrLoss": "778", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F6C14A338A35DC0E1257A1154874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.549590452999908, 49.05474104200006 ], [ -118.555026230999957, 49.055119201000146 ], [ -118.554452399999917, 49.058700415000068 ], [ -118.551279481999956, 49.058479714000015 ], [ -118.55107341199999, 49.059765088000113 ], [ -118.547357830999943, 49.059506519000138 ], [ -118.545637124999956, 49.059386731000089 ], [ -118.546211640999914, 49.055805568000103 ], [ -118.546877578999954, 49.055851932000074 ], [ -118.546968810999942, 49.055858284000045 ], [ -118.549384353999969, 49.056026419000055 ], [ -118.549590452999908, 49.05474104200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "127.2", "sL_BldgLoss": "127.2", "sL_StrLoss": "127.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099D7AE5CB1A15DC094BC3AC700814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.527493298999971, 49.006098370000096 ], [ -118.529452961999965, 49.006235294000106 ], [ -118.529315461999943, 49.007091469000052 ], [ -118.528877769999966, 49.009816644000075 ], [ -118.523447479999916, 49.009437135000034 ], [ -118.523591408999948, 49.008541680000036 ], [ -118.523853572999926, 49.006910534000099 ], [ -118.524023082999918, 49.005855812000114 ], [ -118.527493298999971, 49.006098370000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "32.5", "sL_BldgLoss": "32.5", "sL_StrLoss": "32.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000002A646C759A45DC07EF92A1AE78D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.56686786599991, 49.109885452000093 ], [ -118.566782901999915, 49.107187828000065 ], [ -118.567527659999925, 49.10717771500007 ], [ -118.56842644799994, 49.107165506000065 ], [ -118.56845196299993, 49.107974792000086 ], [ -118.568862856999928, 49.107969207000039 ], [ -118.56887987099999, 49.108508732000132 ], [ -118.569701664999954, 49.108497558000074 ], [ -118.569727201999925, 49.109306843000041 ], [ -118.56931629899999, 49.109312432000145 ], [ -118.569324807999976, 49.109582193000037 ], [ -118.568502996999939, 49.109593365000137 ], [ -118.56851150199999, 49.109863127000082 ], [ -118.567883809999927, 49.109871656000109 ], [ -118.56686786599991, 49.109885452000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "173", "sL_BldgLoss": "173", "sL_StrLoss": "173", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000413A86110CA25DC0D25E54BDC28B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.532657625999931, 49.093612405000115 ], [ -118.532656988, 49.093591727000124 ], [ -118.532576147999976, 49.093586093000127 ], [ -118.528923660999965, 49.093331479000078 ], [ -118.529499878999928, 49.089750596000059 ], [ -118.534939577999978, 49.090129751000134 ], [ -118.534505888999945, 49.092826896000091 ], [ -118.534363771999963, 49.093710661000081 ], [ -118.53389248900001, 49.09367782400011 ], [ -118.533906595999952, 49.094135567000066 ], [ -118.53308502500002, 49.094146483000024 ], [ -118.533093333999915, 49.094416250000023 ], [ -118.531860969999926, 49.09443261400002 ], [ -118.531843781999967, 49.09387420300007 ], [ -118.531836060999979, 49.093623312000062 ], [ -118.532504084999957, 49.093614443000014 ], [ -118.532657625999931, 49.093612405000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "156.2", "sL_BldgLoss": "156.2", "sL_StrLoss": "156.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD3531B050A25DC008F30D3BC2914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.537236285999953, 49.137003437000075 ], [ -118.539185569999972, 49.137139048000108 ], [ -118.538609508999969, 49.140719722000036 ], [ -118.538468395999956, 49.140709906000048 ], [ -118.533163868999949, 49.140340782000109 ], [ -118.53374034299999, 49.136760135000017 ], [ -118.537236285999953, 49.137003437000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "186", "sL_BldgLoss": "186", "sL_StrLoss": "186", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066B8E8013FA15DC0EFB00594B88A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.516588632999941, 49.085647953000063 ], [ -118.516629412999976, 49.085394928000078 ], [ -118.516247439999916, 49.085368245000048 ], [ -118.51682453399998, 49.081787385000105 ], [ -118.517166200999938, 49.081811252000072 ], [ -118.517215631999946, 49.081504492000079 ], [ -118.522654266999979, 49.081884274000053 ], [ -118.522564127999914, 49.082444065000097 ], [ -118.522604405999942, 49.082446876000063 ], [ -118.522027747, 49.086027763000075 ], [ -118.516588632999941, 49.085647953000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "149.6", "sL_BldgLoss": "149.6", "sL_StrLoss": "149.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D9946DD89DA55DC093AAAB0A268A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.585325557999965, 49.077307120000029 ], [ -118.590764255999972, 49.077683459000092 ], [ -118.590192892999966, 49.081264736000058 ], [ -118.584753781999964, 49.080888371000086 ], [ -118.585325557999965, 49.077307120000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4959667", "BldgCostT": "3156667", "sL_LossRatio": "1", "sL_AssetLoss": "527.1", "sL_BldgLoss": "527.1", "sL_StrLoss": "527.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D9601EB21A35DC04226950067884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.547671318999974, 49.062686971000076 ], [ -118.553052709, 49.063061377000103 ], [ -118.552478628999964, 49.066642535000071 ], [ -118.550609967999932, 49.066512556000127 ], [ -118.550274638999937, 49.068603578000079 ], [ -118.546063056999984, 49.068310511000028 ], [ -118.544837327999943, 49.06822518600012 ], [ -118.545412013999936, 49.064644077 ], [ -118.547280584999939, 49.064774147000058 ], [ -118.547616020999897, 49.062683122000095 ], [ -118.547671318999974, 49.062686971000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "141.2", "sL_BldgLoss": "141.2", "sL_StrLoss": "141.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015C0D69D55A35DC09C9AD37ECE894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.549668711999985, 49.074634605000043 ], [ -118.55510680899998, 49.075012748000077 ], [ -118.554532739999928, 49.078593851000093 ], [ -118.549094228999977, 49.078215681000096 ], [ -118.549668711999985, 49.074634605000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28984333", "BldgCostT": "18988333", "sL_LossRatio": "0.998807381852396", "sL_AssetLoss": "2423.24", "sL_BldgLoss": "2420.35", "sL_StrLoss": "2419.3", "sL_NStrLoss": "1.05", "sL_ContLoss": "2.89", "geom_point": "0101000020E6100000874EF0C91AA65DC0F1B058DC628C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.60283617199994, 49.103454229000121 ], [ -118.602827481999938, 49.103184471000098 ], [ -118.60241663499994, 49.103190176000084 ], [ -118.60240794799995, 49.102920418000039 ], [ -118.601997100999952, 49.102926122000021 ], [ -118.60198574199994, 49.102573313000114 ], [ -118.601979731999961, 49.102386606000017 ], [ -118.601492593000017, 49.102393366000044 ], [ -118.600747209999938, 49.102403708000118 ], [ -118.60073853199998, 49.102133949000063 ], [ -118.600327693999958, 49.102139646000097 ], [ -118.600319017999951, 49.10186988800006 ], [ -118.598264832999973, 49.101898354000127 ], [ -118.598256168999939, 49.101628594000012 ], [ -118.59620199299998, 49.101657023000037 ], [ -118.596193338999939, 49.101387264000046 ], [ -118.595782506999953, 49.101392945000043 ], [ -118.595775213999971, 49.101165577000046 ], [ -118.595773855999965, 49.101123186000024 ], [ -118.59544732699996, 49.10112770000012 ], [ -118.594541360999941, 49.10114022100003 ], [ -118.594533347999942, 49.100890148000062 ], [ -118.594532715999947, 49.100870461000071 ], [ -118.594468364999983, 49.100871351000059 ], [ -118.593711056999936, 49.100881811000129 ], [ -118.593703047999924, 49.100631717000034 ], [ -118.593702418999953, 49.100612052 ], [ -118.593651605, 49.10061275400011 ], [ -118.592469934999912, 49.100629064000081 ], [ -118.592461301999919, 49.100359306000058 ], [ -118.591639650999952, 49.100370639000111 ], [ -118.591637536999983, 49.100304553000043 ], [ -118.59125526, 49.100278127000067 ], [ -118.591226639999931, 49.100457454000072 ], [ -118.585785278999964, 49.100081152 ], [ -118.585840392999941, 49.099736081000131 ], [ -118.585462592999988, 49.099709944000082 ], [ -118.585484359999938, 49.09957366200009 ], [ -118.58350774299997, 49.099436890000035 ], [ -118.583597969999943, 49.098872138000033 ], [ -118.58359959499991, 49.098861968000101 ], [ -118.583565353999958, 49.09886243799999 ], [ -118.583371607999965, 49.098865097000093 ], [ -118.583369743999967, 49.098806503000091 ], [ -118.583363025000011, 49.098595336000102 ], [ -118.582952210999977, 49.098600971000032 ], [ -118.582943630999949, 49.098331211000108 ], [ -118.58269170599999, 49.098334665000017 ], [ -118.582532820999958, 49.098336844000094 ], [ -118.582525432999915, 49.098104499000073 ], [ -118.582524241999948, 49.098067083000061 ], [ -118.582495752999975, 49.098067474000096 ], [ -118.582113432999932, 49.098072716000047 ], [ -118.582104857999965, 49.097802955000098 ], [ -118.581694050999971, 49.09780858600007 ], [ -118.581683806999962, 49.097486278000083 ], [ -118.581651183999938, 49.096459780000067 ], [ -118.582061979999978, 49.096454150000156 ], [ -118.582053404999925, 49.096184389000022 ], [ -118.583285783999955, 49.096167489000116 ], [ -118.583302946999979, 49.096707011000028 ], [ -118.583713744999955, 49.096701374000062 ], [ -118.583739497999915, 49.09751065600009 ], [ -118.58381564299999, 49.097509612000124 ], [ -118.58407984199999, 49.095855749000101 ], [ -118.58409784399997, 49.095856995000055 ], [ -118.584073024999952, 49.095077172000124 ], [ -118.584309908999955, 49.095073921000058 ], [ -118.584343782999895, 49.09486185100009 ], [ -118.584441295999937, 49.094868600000034 ], [ -118.584496393999956, 49.094523654000042 ], [ -118.584878165999953, 49.094550073000057 ], [ -118.58487741, 49.094526372000111 ], [ -118.585288187999964, 49.094520730000092 ], [ -118.585279596999968, 49.094250969000022 ], [ -118.587333476999945, 49.094222738000049 ], [ -118.587307668999955, 49.093413457000054 ], [ -118.587718437999953, 49.093407807000041 ], [ -118.587692622999967, 49.092598525000042 ], [ -118.588514147999945, 49.092587221000088 ], [ -118.588505537999978, 49.092317460000132 ], [ -118.589737817999946, 49.092300492000021 ], [ -118.589729204, 49.092030732000083 ], [ -118.590139960999977, 49.092025074000084 ], [ -118.590131341999935, 49.091755313000085 ], [ -118.590952852999933, 49.091743991000044 ], [ -118.59094423, 49.091474231000063 ], [ -118.591765734999939, 49.09146290300005 ], [ -118.591757107999939, 49.091193144000101 ], [ -118.592578607999911, 49.091181809000084 ], [ -118.592569978999933, 49.090912050000071 ], [ -118.59339147199999, 49.090900711000053 ], [ -118.593382836999979, 49.090630951000023 ], [ -118.594615072999915, 49.090613931000107 ], [ -118.59460643099996, 49.090344172000144 ], [ -118.595427914999973, 49.090332818000043 ], [ -118.595419269999965, 49.090063058000027 ], [ -118.597062227999956, 49.090040334000044 ], [ -118.597088191999916, 49.090849611000067 ], [ -118.596677445999916, 49.09085529400005 ], [ -118.596686098999925, 49.091125055000141 ], [ -118.596275350999917, 49.091130736000089 ], [ -118.59629265199996, 49.091670255000075 ], [ -118.595881898999934, 49.09167593500004 ], [ -118.595890549999922, 49.091945695000092 ], [ -118.595479792999981, 49.091951375000065 ], [ -118.595497086999927, 49.092490894000065 ], [ -118.596318605999954, 49.092479533000095 ], [ -118.596344560999952, 49.093288811000079 ], [ -118.595933794999951, 49.093294491000094 ], [ -118.595942443999945, 49.093564252000107 ], [ -118.595531675999936, 49.093569930000079 ], [ -118.595548969999982, 49.094109449000015 ], [ -118.594727423000023, 49.094120805000102 ], [ -118.594753353999948, 49.094930083000065 ], [ -118.594342574999985, 49.094935758000034 ], [ -118.594370291999965, 49.095800997000069 ], [ -118.594380499999929, 49.095801702000131 ], [ -118.594372016999927, 49.095854882 ], [ -118.594374693999981, 49.095938424000117 ], [ -118.594909593999986, 49.095975387000038 ], [ -118.594818183999948, 49.096548460000065 ], [ -118.595216012999956, 49.096542961000061 ], [ -118.595224658999911, 49.096812721000077 ], [ -118.59563545499995, 49.096807041000055 ], [ -118.595644102999927, 49.097076801000043 ], [ -118.597287293999926, 49.097054070000098 ], [ -118.597295951999982, 49.097323829000089 ], [ -118.59770675099999, 49.097318142000042 ], [ -118.597698090999955, 49.097048385000058 ], [ -118.598519684999957, 49.097037008000029 ], [ -118.598493689999913, 49.09622773100007 ], [ -118.598904480999963, 49.096222040000065 ], [ -118.598835152999925, 49.094063970000043 ], [ -118.598424381999934, 49.094069660000073 ], [ -118.598407054999967, 49.093530142000063 ], [ -118.597996286999916, 49.093535830000043 ], [ -118.597978964999982, 49.092996313000086 ], [ -118.597568201999962, 49.093001999000137 ], [ -118.597542226999934, 49.092192723000053 ], [ -118.597131468999947, 49.092198408000115 ], [ -118.597105502999938, 49.09138913000006 ], [ -118.598748503999971, 49.091366381000064 ], [ -118.598757169, 49.091636140000112 ], [ -118.59916792199999, 49.091630448000075 ], [ -118.59917658699996, 49.091900208000048 ], [ -118.600408849999937, 49.091883125000031 ], [ -118.600434870999976, 49.0926924030001 ], [ -118.60084563099997, 49.092686705000055 ], [ -118.600828280999934, 49.092147188000098 ], [ -118.601239035999981, 49.092141489000014 ], [ -118.601186970999947, 49.090522937000102 ], [ -118.602419197999964, 49.090505834000076 ], [ -118.602427881999986, 49.090775593000103 ], [ -118.602838626999969, 49.090769888000118 ], [ -118.60284731199998, 49.091039647000088 ], [ -118.60325805799999, 49.091033941000092 ], [ -118.603266747999939, 49.091303700000076 ], [ -118.603677495999989, 49.091297993000126 ], [ -118.603712262, 49.092377027000076 ], [ -118.604123017999953, 49.092371318000133 ], [ -118.604131710999951, 49.092641075000039 ], [ -118.605363989999915, 49.092623941000021 ], [ -118.605398792999964, 49.093702973000063 ], [ -118.604988023999965, 49.093708686000078 ], [ -118.604996722999942, 49.093978444000115 ], [ -118.60458595399993, 49.093984156000062 ], [ -118.60459464899999, 49.09425391500011 ], [ -118.60418387699994, 49.094259625000106 ], [ -118.604201266999922, 49.094799141000067 ], [ -118.603790487999959, 49.094804850000081 ], [ -118.603799180999957, 49.095074608000132 ], [ -118.603388402999926, 49.095080317000068 ], [ -118.603440547, 49.096698865000086 ], [ -118.603029752999959, 49.096704572000093 ], [ -118.603038442999946, 49.096974330000037 ], [ -118.602627647999981, 49.096980035000115 ], [ -118.602636333999939, 49.097249794000064 ], [ -118.602225535999978, 49.097255498000045 ], [ -118.602242906999933, 49.097795015000017 ], [ -118.603064510999957, 49.097783605000103 ], [ -118.603073199999955, 49.098053363000076 ], [ -118.603894808999911, 49.098041947000091 ], [ -118.603903502999984, 49.098311706000096 ], [ -118.604725115999926, 49.098300284000082 ], [ -118.604733814999946, 49.098570042000091 ], [ -118.605555430999956, 49.09855861500008 ], [ -118.605564134999909, 49.098828372000121 ], [ -118.605974945999918, 49.098822657000063 ], [ -118.605983650999974, 49.099092414000054 ], [ -118.606394461999983, 49.099086697000068 ], [ -118.606403171999915, 49.099356455000056 ], [ -118.607224797999933, 49.099345015000033 ], [ -118.60723351199999, 49.099614774000024 ], [ -118.608055144999952, 49.09960332900004 ], [ -118.60806386199998, 49.099873086000116 ], [ -118.608885498999911, 49.099861634000021 ], [ -118.608894219999939, 49.10013139200008 ], [ -118.60971586, 49.10011993500008 ], [ -118.609724586999974, 49.100389692000064 ], [ -118.610546230999915, 49.100378229000093 ], [ -118.610589888000021, 49.101727014000069 ], [ -118.610179053999957, 49.101732746000039 ], [ -118.61019651299992, 49.10227226000012 ], [ -118.609785674999955, 49.10227799200009 ], [ -118.609794401999949, 49.102547749000053 ], [ -118.608561881999933, 49.102564934000071 ], [ -118.608535719999963, 49.101755661000048 ], [ -118.608124886999974, 49.10176138700011 ], [ -118.608107450999952, 49.10122187200006 ], [ -118.607285790999953, 49.101233319000087 ], [ -118.607277077999967, 49.100963560000068 ], [ -118.606044592999979, 49.100980719000042 ], [ -118.606035885999958, 49.100710960000065 ], [ -118.605625060999969, 49.100716676000118 ], [ -118.605616356999931, 49.100446919000099 ], [ -118.60479471, 49.100458347000028 ], [ -118.604786010999987, 49.100188589000055 ], [ -118.603964366999961, 49.10020001100002 ], [ -118.60395567099998, 49.099930254000107 ], [ -118.603134031999971, 49.099941669000032 ], [ -118.603116649999919, 49.09940215300005 ], [ -118.60147338799996, 49.099424967000104 ], [ -118.601482067999939, 49.099694726000038 ], [ -118.60066043199997, 49.099706124000065 ], [ -118.600677786999938, 49.100245641000079 ], [ -118.601088608999973, 49.100239942000051 ], [ -118.601105969999963, 49.100779459000101 ], [ -118.601516796999974, 49.10077375900007 ], [ -118.601542844999969, 49.101583034000058 ], [ -118.602364511999951, 49.101571628000023 ], [ -118.602381884999971, 49.102111144000027 ], [ -118.605257748999946, 49.102071180000102 ], [ -118.605292558999949, 49.103150210000102 ], [ -118.604060021999928, 49.103167347000074 ], [ -118.604065738999935, 49.103344663000016 ], [ -118.604068716999947, 49.103437105000097 ], [ -118.60283617199994, 49.103454229000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35302750", "BldgCostT": "22930000", "sL_LossRatio": "0.999688067071832", "sL_AssetLoss": "1439.412", "sL_BldgLoss": "1438.963", "sL_StrLoss": "1438.8", "sL_NStrLoss": "0.163", "sL_ContLoss": "0.449", "geom_point": "0101000020E6100000C0AD3FB24E9F5DC0506119D91D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.483578162999919, 49.049014720000095 ], [ -118.483940037999957, 49.046777325000029 ], [ -118.481607148999956, 49.046613472000033 ], [ -118.481656921999942, 49.046305820000072 ], [ -118.481614969999896, 49.046302873000137 ], [ -118.482185091999952, 49.042778530000042 ], [ -118.482194238999966, 49.042721981000057 ], [ -118.482458795999918, 49.042740565000052 ], [ -118.484246456999983, 49.042866126000014 ], [ -118.484285267999951, 49.042626117000061 ], [ -118.483620446999936, 49.042579426000039 ], [ -118.482942547999968, 49.042531811000089 ], [ -118.482919111999948, 49.04267671300007 ], [ -118.482918226999942, 49.04268218100006 ], [ -118.482892649999954, 49.042680384000121 ], [ -118.48163300499999, 49.042591897000058 ], [ -118.481589448999927, 49.042861148000057 ], [ -118.481478011999926, 49.04355001100005 ], [ -118.47758130299998, 49.043276181000074 ], [ -118.477581993999962, 49.043275744 ], [ -118.477612285999967, 49.043256607000117 ], [ -118.477565381999938, 49.042573002000019 ], [ -118.477772800999958, 49.042236903000109 ], [ -118.477936404999966, 49.041758299000016 ], [ -118.477915801999956, 49.041480609000054 ], [ -118.477070980999926, 49.041184395000073 ], [ -118.476676088999938, 49.041190092000086 ], [ -118.476417907999988, 49.041309704000085 ], [ -118.476623906999961, 49.042206888000166 ], [ -118.476505003999975, 49.042397795000085 ], [ -118.476140083999937, 49.042575718000087 ], [ -118.476260972, 49.041828955000021 ], [ -118.475643661999968, 49.041785553000111 ], [ -118.475665948999904, 49.042538635 ], [ -118.475318791999911, 49.04254307500004 ], [ -118.474984645999911, 49.042547347000031 ], [ -118.474434833999965, 49.042554374000119 ], [ -118.474431584999977, 49.042444481000096 ], [ -118.474573395999926, 49.042286212000072 ], [ -118.475040589999963, 49.041691646000039 ], [ -118.475052236999957, 49.041651433 ], [ -118.47510282199994, 49.04147689800007 ], [ -118.475094759999948, 49.040220678000033 ], [ -118.475092586999963, 49.039885389000112 ], [ -118.475086618999981, 49.039247965000087 ], [ -118.475078703999941, 49.03840133500006 ], [ -118.475070351999989, 49.038062034000077 ], [ -118.475064182999944, 49.037811799000067 ], [ -118.475038690999938, 49.036552395000065 ], [ -118.477813676, 49.036526598000066 ], [ -118.478596989999986, 49.036482105000104 ], [ -118.479605282999955, 49.036388987000066 ], [ -118.480752294999917, 49.036389099000083 ], [ -118.48220799099991, 49.036459712000067 ], [ -118.484567480999942, 49.036454388000081 ], [ -118.484643107999958, 49.036454208000059 ], [ -118.484833510999962, 49.03652550100005 ], [ -118.484922609999941, 49.036636793000078 ], [ -118.48526358, 49.037348795000064 ], [ -118.485465123, 49.037504205000062 ], [ -118.485751199999967, 49.037603990000051 ], [ -118.486385996999942, 49.03765399300007 ], [ -118.487477298999977, 49.037548615000034 ], [ -118.488055907999964, 49.03743620900012 ], [ -118.488733214999968, 49.037257391000033 ], [ -118.488964587999988, 49.037143292000131 ], [ -118.489596309999982, 49.036643025000082 ], [ -118.490335098999964, 49.036057890000052 ], [ -118.490501711999968, 49.03597009500006 ], [ -118.49065459599997, 49.03597630900002 ], [ -118.490756086999966, 49.036044884000042 ], [ -118.491023414999958, 49.036388703000036 ], [ -118.491398180999965, 49.03666220499999 ], [ -118.491723506999961, 49.03684259700006 ], [ -118.491858688999955, 49.036855702000032 ], [ -118.491962218999916, 49.036810402000107 ], [ -118.49199309, 49.036465807000084 ], [ -118.492135108999932, 49.036233196000047 ], [ -118.492153983999955, 49.036047999000075 ], [ -118.491888412999984, 49.035566707000029 ], [ -118.491513902999912, 49.034627805000106 ], [ -118.491511499999916, 49.034472792000045 ], [ -118.49156929, 49.034310212000058 ], [ -118.49175192199999, 49.034132009000096 ], [ -118.492474896999923, 49.03380609200007 ], [ -118.492617013999904, 49.033649495000077 ], [ -118.492655287000019, 49.033454797000076 ], [ -118.492425004999944, 49.032813888000099 ], [ -118.492362033999882, 49.032760202000105 ], [ -118.492317509, 49.032722212000145 ], [ -118.492140115999916, 49.032664399000076 ], [ -118.491528696999978, 49.032673984000034 ], [ -118.491474099999962, 49.032620408000071 ], [ -118.491513613999984, 49.032554404000045 ], [ -118.4919928, 49.032436812000057 ], [ -118.492339336, 49.03230257700006 ], [ -118.493004444999912, 49.032349245000049 ], [ -118.493257675999985, 49.032443494000077 ], [ -118.493973321999988, 49.032709804000071 ], [ -118.494229786999981, 49.032763101000029 ], [ -118.494593915999957, 49.032779498000131 ], [ -118.495189810999989, 49.032670097000043 ], [ -118.495359804999964, 49.032714689000059 ], [ -118.495687108999931, 49.032924996000126 ], [ -118.496360884999888, 49.033073700000074 ], [ -118.496723682999971, 49.033225896 ], [ -118.496908610999967, 49.033246092000105 ], [ -118.497573895999892, 49.033217592000085 ], [ -118.498341606999972, 49.033218009000102 ], [ -118.498490615999955, 49.032987383000048 ], [ -118.499335038999959, 49.031680377000022 ], [ -118.502261843, 49.031885519000042 ], [ -118.50168424899995, 49.03546658000009 ], [ -118.500492793999953, 49.035383080000052 ], [ -118.500495450999964, 49.035471419000061 ], [ -118.500905759999952, 49.035466083000131 ], [ -118.500930113999956, 49.036275405000026 ], [ -118.50175074399999, 49.036264726000077 ], [ -118.501734498999937, 49.035725179000089 ], [ -118.503375740999928, 49.035703805000018 ], [ -118.503383871999958, 49.035973578000032 ], [ -118.503794183999915, 49.03596823000008 ], [ -118.503802317999927, 49.036238005000072 ], [ -118.504212633999913, 49.036232655000077 ], [ -118.504231948999958, 49.0368731310001 ], [ -118.504237041999929, 49.037041977000122 ], [ -118.504441007999915, 49.037039318000097 ], [ -118.504647362999904, 49.037036627000163 ], [ -118.504652515999965, 49.037207448000053 ], [ -118.504661378999955, 49.037501202000094 ], [ -118.504679211999957, 49.038092270000092 ], [ -118.504689525999979, 49.038434171000077 ], [ -118.504877465000021, 49.038447334000082 ], [ -118.507864087999906, 49.03865647900011 ], [ -118.507286838999931, 49.042237531000104 ], [ -118.501852950999975, 49.041856949000092 ], [ -118.502009829999949, 49.040884478000038 ], [ -118.502430610999951, 49.038275924000082 ], [ -118.50263271599999, 49.03829008400001 ], [ -118.502628268999928, 49.038142459000049 ], [ -118.500986946999944, 49.038163823000019 ], [ -118.500978826999955, 49.037894048000062 ], [ -118.500568498999939, 49.037899386000049 ], [ -118.500560381999946, 49.037629612000096 ], [ -118.500150055999939, 49.037634948000097 ], [ -118.50011759799996, 49.036555851000124 ], [ -118.499707280999985, 49.036561185000011 ], [ -118.499691055999932, 49.036021637000033 ], [ -118.499280742999943, 49.036026970000094 ], [ -118.499258787999935, 49.035296584000079 ], [ -118.496563385999963, 49.035107603000036 ], [ -118.496385762, 49.036207997000119 ], [ -118.496018139999933, 49.036182217000068 ], [ -118.495929871, 49.036729006 ], [ -118.494730854999972, 49.03664491300006 ], [ -118.494286938999906, 49.039394134000077 ], [ -118.493651128999957, 49.039349537000049 ], [ -118.493567632999913, 49.039866549000074 ], [ -118.489789606999949, 49.039601469000054 ], [ -118.489638234999987, 49.040538282000071 ], [ -118.490112720999932, 49.040571581000044 ], [ -118.490007506, 49.04122275600011 ], [ -118.490609047999968, 49.041264969000117 ], [ -118.490502468, 49.041924631000064 ], [ -118.490544391999933, 49.041927572000091 ], [ -118.48996577399997, 49.045508513000073 ], [ -118.489912849999953, 49.045504799000071 ], [ -118.48961415499997, 49.047353115000078 ], [ -118.48934599099999, 49.047334297000091 ], [ -118.489012736999939, 49.049396222000063 ], [ -118.483578162999919, 49.049014720000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "109", "sL_BldgLoss": "109", "sL_StrLoss": "109", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B4A10A68FA55DC079115C9BFC8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.584457529999966, 49.107292692000101 ], [ -118.589899720999981, 49.107669057000066 ], [ -118.589327923999974, 49.111250164000054 ], [ -118.583885318999961, 49.110873773000101 ], [ -118.584457529999966, 49.107292692000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "118.5", "sL_BldgLoss": "118.5", "sL_StrLoss": "118.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001ECA48A48AA05DC061D97168B6854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.505704397999978, 49.046277146000101 ], [ -118.505714068999922, 49.046217170000027 ], [ -118.505207987999967, 49.046181733000068 ], [ -118.505785444999958, 49.042600714000024 ], [ -118.511219451999963, 49.042981096000162 ], [ -118.51120978799996, 49.04304107300009 ], [ -118.511715839999908, 49.043076482000103 ], [ -118.511138831999958, 49.046657530000061 ], [ -118.505704397999978, 49.046277146000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "130.5", "sL_BldgLoss": "130.5", "sL_StrLoss": "130.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A90758ED92A05DC09D3D44611F874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.506538735999982, 49.053664464000079 ], [ -118.51197403799992, 49.054044802000149 ], [ -118.511396914999935, 49.05762579100012 ], [ -118.505961198999941, 49.057245425000083 ], [ -118.506538735999982, 49.053664464000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "90.7", "sL_BldgLoss": "90.7", "sL_StrLoss": "90.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DCF976F9F3A65DC0D43A79AAA68B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.606205958999965, 49.089045428000055 ], [ -118.611646194999935, 49.089420704000133 ], [ -118.611076293999972, 49.093002027000139 ], [ -118.605635643999932, 49.092626725000081 ], [ -118.606205958999965, 49.089045428000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11901828", "BldgCostT": "7232410", "sL_LossRatio": "1", "sL_AssetLoss": "307.1", "sL_BldgLoss": "307.1", "sL_StrLoss": "307.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B8E224C5AEA35DC0BD8EF647318D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.559823179, 49.108091729000108 ], [ -118.55979780499996, 49.10728243900008 ], [ -118.55938691599999, 49.107287991000092 ], [ -118.5593784599999, 49.107018228000115 ], [ -118.558967571999958, 49.107023779000066 ], [ -118.558950665999987, 49.106484252 ], [ -118.558539782999944, 49.106489801000095 ], [ -118.55852288199999, 49.105950274000058 ], [ -118.558112002999977, 49.105955822000119 ], [ -118.558137349999953, 49.106765112000062 ], [ -118.557726464000027, 49.106770659000105 ], [ -118.55775180399999, 49.107579949000105 ], [ -118.556820137, 49.107592520000019 ], [ -118.55651912699993, 49.107596580000092 ], [ -118.556510687999932, 49.107326816000118 ], [ -118.556099795999941, 49.107332357000111 ], [ -118.55607448499994, 49.106523064000065 ], [ -118.556485368999958, 49.106517524000061 ], [ -118.556468487999965, 49.105977997000053 ], [ -118.556879367999898, 49.105972455000014 ], [ -118.556862484999925, 49.105432928000013 ], [ -118.55727335899995, 49.105427385000056 ], [ -118.557231142999967, 49.104078566000076 ], [ -118.555998550999917, 49.104095190000095 ], [ -118.555990113999911, 49.103825426000071 ], [ -118.555168392999974, 49.103836501000046 ], [ -118.555159959999941, 49.103566737000051 ], [ -118.554749101999903, 49.103572272000079 ], [ -118.554740672999927, 49.103302509000123 ], [ -118.553918955999933, 49.103313575000058 ], [ -118.553910531999932, 49.103043810000059 ], [ -118.553499676999962, 49.103049341 ], [ -118.553482830999911, 49.102509812000093 ], [ -118.553071981999906, 49.102515342000025 ], [ -118.55298778599996, 49.099817697000063 ], [ -118.552576957999975, 49.099823225000087 ], [ -118.552543292999957, 49.098744166000117 ], [ -118.555419029999968, 49.098705445000029 ], [ -118.555427461999983, 49.098975210000042 ], [ -118.555838282999943, 49.098969673000084 ], [ -118.555855152, 49.09950920100006 ], [ -118.556265975999935, 49.099503662000139 ], [ -118.556274412999969, 49.099773426000105 ], [ -118.55709606899994, 49.099762344000084 ], [ -118.55710450899997, 49.100032108000107 ], [ -118.557515339999952, 49.100026564000125 ], [ -118.557549114, 49.101105619000116 ], [ -118.55795995299998, 49.101100075000112 ], [ -118.557968398999961, 49.101369838000082 ], [ -118.558790080999955, 49.101358744000038 ], [ -118.558798530999979, 49.101628507 ], [ -118.561674425999911, 49.101589629000095 ], [ -118.561742161999973, 49.103747735000049 ], [ -118.562974739999945, 49.10373105100004 ], [ -118.563000161999952, 49.104540339000046 ], [ -118.562589297999949, 49.104545903000023 ], [ -118.562597768999979, 49.104815665000018 ], [ -118.561776031999926, 49.104826788000032 ], [ -118.56178450000003, 49.105096552000077 ], [ -118.560551886999974, 49.105113224000092 ], [ -118.560560348999985, 49.10538298700002 ], [ -118.560149474999918, 49.105388542000057 ], [ -118.560166394999953, 49.105928069000072 ], [ -118.560577273, 49.105922515000067 ], [ -118.56059419599994, 49.106462041000029 ], [ -118.561005078999955, 49.106456484000084 ], [ -118.561055141999987, 49.10805201700002 ], [ -118.561055865999933, 49.108075064000069 ], [ -118.559823179, 49.108091729000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86526199", "BldgCostT": "60012212", "sL_LossRatio": "1", "sL_AssetLoss": "963", "sL_BldgLoss": "963", "sL_StrLoss": "963", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007992F09480A25DC072FEDC8607814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.538974859999939, 49.018771723000079 ], [ -118.538915702999944, 49.016853243000057 ], [ -118.538766627999976, 49.016842845000092 ], [ -118.53883195899995, 49.016435628000103 ], [ -118.53872755399999, 49.016428345000044 ], [ -118.538874382999936, 49.015513108000093 ], [ -118.538863314999929, 49.01515412100008 ], [ -118.538136717999933, 49.015103432000025 ], [ -118.538400727999942, 49.013457829000075 ], [ -118.538365126999935, 49.012302706000128 ], [ -118.537955015999927, 49.012308174000069 ], [ -118.53793008199996, 49.011498862000103 ], [ -118.535879556999973, 49.011526180000089 ], [ -118.535871256999897, 49.011256409000048 ], [ -118.535461152999972, 49.011261868000105 ], [ -118.535378182000017, 49.008564158000105 ], [ -118.535788261999969, 49.008558700000037 ], [ -118.535779962999953, 49.008288929000152 ], [ -118.536190041999987, 49.008283469000048 ], [ -118.536165139999937, 49.00747415600005 ], [ -118.535755067999972, 49.007479616000118 ], [ -118.535746768999985, 49.00720984400003 ], [ -118.535336699999945, 49.007215303000031 ], [ -118.53532840299999, 49.006945532000074 ], [ -118.534918336999965, 49.006950989000096 ], [ -118.53491004199995, 49.006681217000036 ], [ -118.534499976999953, 49.006686673000083 ], [ -118.534491684999978, 49.006416902000069 ], [ -118.534081621, 49.006422356 ], [ -118.534056754999952, 49.005613042000057 ], [ -118.53364669799997, 49.005618494000046 ], [ -118.533609551999973, 49.004409134000106 ], [ -118.53030215199999, 49.004178140000093 ], [ -118.53059414199997, 49.00235958800004 ], [ -118.530877163999946, 49.000596751000081 ], [ -118.532893243999965, 49.000737570000126 ], [ -118.533005674999941, 49.000037054000089 ], [ -118.534004126999946, 49.000038007000157 ], [ -118.534102129999923, 49.000038100000111 ], [ -118.534279082999888, 49.000038245000077 ], [ -118.542035059999975, 49.000045194000137 ], [ -118.541746122999953, 49.001847605000073 ], [ -118.542418737999981, 49.001894520000107 ], [ -118.542289105999899, 49.002703197000109 ], [ -118.543701351999957, 49.00280168700003 ], [ -118.543127295999952, 49.006383132000103 ], [ -118.53832571699995, 49.006048195000062 ], [ -118.537697288999965, 49.006004342000047 ], [ -118.53780309499993, 49.005344759000053 ], [ -118.537827008999969, 49.005195675000024 ], [ -118.537681798999984, 49.005185542000106 ], [ -118.536502413999969, 49.00510323000006 ], [ -118.536508792999953, 49.005310526000045 ], [ -118.53691884599999, 49.005305064000076 ], [ -118.536935455999938, 49.005844606000103 ], [ -118.537345512999977, 49.00583914200007 ], [ -118.537370433000021, 49.00664845400005 ], [ -118.53778049899995, 49.006642988000095 ], [ -118.537805424999974, 49.0074523010001 ], [ -118.538215497999929, 49.00744683400012 ], [ -118.538248744999947, 49.008525918000096 ], [ -118.537838664, 49.008531385000033 ], [ -118.53785528499999, 49.009070926000071 ], [ -118.53826537, 49.009065458000137 ], [ -118.538273681999925, 49.009335229000101 ], [ -118.539093853999987, 49.00932429000008 ], [ -118.53911880699998, 49.010133601000042 ], [ -118.539423080999882, 49.010129542000065 ], [ -118.53945461899994, 49.009932914000032 ], [ -118.539612558999963, 49.008948175000079 ], [ -118.545042924999947, 49.009326866000031 ], [ -118.544924730999952, 49.010064323000066 ], [ -118.544468889999976, 49.012908282000076 ], [ -118.544127039, 49.012884451000041 ], [ -118.544131705999959, 49.013035308000099 ], [ -118.544541822999918, 49.01302981800012 ], [ -118.544547483999963, 49.01321276100002 ], [ -118.544732886999952, 49.013225684000091 ], [ -118.544667611999927, 49.013632907000094 ], [ -118.544772011999967, 49.013640185000014 ], [ -118.54474935099999, 49.013781560000034 ], [ -118.546083481999972, 49.013874548000096 ], [ -118.545509472999967, 49.017455944000098 ], [ -118.545132294999945, 49.017429656000054 ], [ -118.54507797, 49.017768553000039 ], [ -118.540486845999936, 49.017448469000087 ], [ -118.540164327999932, 49.017425976000041 ], [ -118.540205352999976, 49.018755302000066 ], [ -118.539886698999936, 49.018759556000084 ], [ -118.538974859999939, 49.018771723000079 ] ], [ [ -118.538065488999933, 49.001390495000038 ], [ -118.53797259399991, 49.001058708000137 ], [ -118.537838402999967, 49.00113280300009 ], [ -118.537889390999965, 49.001410498000034 ], [ -118.538065488999933, 49.001390495000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "150.2", "sL_BldgLoss": "150.2", "sL_StrLoss": "150.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FC88E74A3A25DC06D60FE4CB5824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.54081067599995, 49.019318161000115 ], [ -118.54422951, 49.019556514000115 ], [ -118.543655288999929, 49.023137868000035 ], [ -118.54094403199997, 49.022948856000014 ], [ -118.539608454999936, 49.022855722000017 ], [ -118.538223327999972, 49.022759114000031 ], [ -118.538797961999933, 49.019177788000036 ], [ -118.539995721999944, 49.019261328000013 ], [ -118.54081067599995, 49.019318161000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "309089225", "BldgCostT": "210135309", "sL_LossRatio": "0.99973670548968", "sL_AssetLoss": "9798.913", "sL_BldgLoss": "9796.333", "sL_StrLoss": "9795.4", "sL_NStrLoss": "0.933", "sL_ContLoss": "2.58", "geom_point": "0101000020E610000075A17FA3999F5DC0BEE38873DC824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.484833510999962, 49.03652550100005 ], [ -118.484643107999958, 49.036454208000059 ], [ -118.484567480999942, 49.036454388000081 ], [ -118.48220799099991, 49.036459712000067 ], [ -118.480752294999917, 49.036389099000083 ], [ -118.479605282999955, 49.036388987000066 ], [ -118.478596989999986, 49.036482105000104 ], [ -118.477813676, 49.036526598000066 ], [ -118.475038690999938, 49.036552395000065 ], [ -118.475038699999971, 49.036552027000056 ], [ -118.474995985999925, 49.034398091000057 ], [ -118.474963604999957, 49.03304488800007 ], [ -118.474963607999882, 49.033044576000066 ], [ -118.474922394999936, 49.031967311000102 ], [ -118.47490082799996, 49.030563887000106 ], [ -118.47487951, 49.029177412000124 ], [ -118.474864247999946, 49.02834055500005 ], [ -118.474849568999929, 49.027535305000171 ], [ -118.474831081, 49.026523795000067 ], [ -118.474809984999965, 49.025381486000079 ], [ -118.474779, 49.024240302000045 ], [ -118.474765522999945, 49.023585597000107 ], [ -118.474747496999967, 49.02309449400007 ], [ -118.474721885999941, 49.022234309000048 ], [ -118.47530059599994, 49.022036003000039 ], [ -118.475875632999958, 49.021891152000073 ], [ -118.476551402999945, 49.021720946000109 ], [ -118.477422215999979, 49.021501603000047 ], [ -118.482604984999952, 49.020235293000084 ], [ -118.485980001999977, 49.019404981000086 ], [ -118.488167898999947, 49.018807099000064 ], [ -118.489934678999987, 49.018223198000015 ], [ -118.492008801999972, 49.017530395000129 ], [ -118.493274292999899, 49.017244301000034 ], [ -118.497804198999987, 49.016486502000106 ], [ -118.498284296999955, 49.01636181100011 ], [ -118.49863618199997, 49.016223490000108 ], [ -118.498994114999931, 49.016047599000046 ], [ -118.499300381999944, 49.015825493000094 ], [ -118.499465678999982, 49.015701514000042 ], [ -118.49951131499995, 49.01566728900012 ], [ -118.500509087999959, 49.014673498000072 ], [ -118.502699890999978, 49.012479302000017 ], [ -118.503366294999964, 49.011837008000093 ], [ -118.503776572999982, 49.011531692000091 ], [ -118.504162575999928, 49.011326090000111 ], [ -118.504618488999952, 49.011138009000028 ], [ -118.505075599999884, 49.011027895000048 ], [ -118.505523318999977, 49.010958805000087 ], [ -118.505983871999959, 49.010929910000073 ], [ -118.506205702999949, 49.010915994000086 ], [ -118.506560086999968, 49.010914617000019 ], [ -118.514527429999973, 49.010920282000029 ], [ -118.516320118999957, 49.010896363000064 ], [ -118.517572758999961, 49.010747689000077 ], [ -118.518747742999949, 49.010458680000042 ], [ -118.519956478999916, 49.010028074000061 ], [ -118.519948896999963, 49.010053499000087 ], [ -118.519657743, 49.011032086000078 ], [ -118.519432065, 49.01179494400003 ], [ -118.519154900999965, 49.012798399000083 ], [ -118.518653090999962, 49.01461506100005 ], [ -118.518711883999927, 49.014718749000053 ], [ -118.51823607099999, 49.016310660000109 ], [ -118.518146891999976, 49.016413063000115 ], [ -118.51799227, 49.016461060000076 ], [ -118.514140472999927, 49.016463181000084 ], [ -118.514049896999936, 49.01651477100004 ], [ -118.513325976999937, 49.018085675000087 ], [ -118.513246788999965, 49.018159774000054 ], [ -118.513120511999972, 49.018210680000038 ], [ -118.506429605999941, 49.01827729399999 ], [ -118.506420896999956, 49.019439204000072 ], [ -118.506404421999903, 49.021885300000058 ], [ -118.505142798999927, 49.023109152000124 ], [ -118.504175989999965, 49.024046992000081 ], [ -118.504167817999956, 49.024085214000074 ], [ -118.504150840999927, 49.024164319000114 ], [ -118.504129942999938, 49.024261795000015 ], [ -118.502008817999922, 49.024113143000086 ], [ -118.50137877899999, 49.024068981000035 ], [ -118.501484766999965, 49.023411765000105 ], [ -118.50190547599999, 49.020802793000051 ], [ -118.501243429999988, 49.020756383000098 ], [ -118.501225570999935, 49.020867134000078 ], [ -118.50049092099999, 49.020815630000122 ], [ -118.50036807099994, 49.021577352000051 ], [ -118.500012602999988, 49.021552429000117 ], [ -118.497477301999979, 49.0213746370001 ], [ -118.497442647999975, 49.021589418000119 ], [ -118.496888690999981, 49.021550563000062 ], [ -118.49678215099999, 49.022210831000081 ], [ -118.493049503999941, 49.021948942000051 ], [ -118.49298339799995, 49.022358416000046 ], [ -118.491362648999939, 49.022244661000059 ], [ -118.491223661999953, 49.023105354000052 ], [ -118.48893635899995, 49.022944773000049 ], [ -118.488887569999989, 49.023246807000085 ], [ -118.488635950999978, 49.023229138000083 ], [ -118.488432116999974, 49.02449091300015 ], [ -118.486155853999946, 49.024331051000075 ], [ -118.486003653999958, 49.025272865000062 ], [ -118.482929913999953, 49.025056920000068 ], [ -118.482616898999964, 49.026992937000074 ], [ -118.481948221999971, 49.02694594700008 ], [ -118.481770713999978, 49.026933472000053 ], [ -118.481774977999976, 49.027077059000042 ], [ -118.481919701999985, 49.027087230000085 ], [ -118.483717077999941, 49.027213527000079 ], [ -118.483560956999938, 49.02817922400002 ], [ -118.483827137999967, 49.028197925000029 ], [ -118.483709478999955, 49.02892571600011 ], [ -118.483728189999937, 49.028927031000094 ], [ -118.483156374999965, 49.032463681000145 ], [ -118.483149207999972, 49.032508008000036 ], [ -118.482716775999904, 49.032477626000109 ], [ -118.482528907999921, 49.033639386000111 ], [ -118.483062317999924, 49.033676861000053 ], [ -118.483027818999929, 49.033890204000038 ], [ -118.484153035999924, 49.03396924900008 ], [ -118.484690743999934, 49.034007018000118 ], [ -118.484694187999963, 49.033985711000106 ], [ -118.490127020000017, 49.034367165000091 ], [ -118.490124142999974, 49.034384974000055 ], [ -118.490633961999947, 49.034420756000088 ], [ -118.490976508999935, 49.032300147000043 ], [ -118.491516202999975, 49.032338023000108 ], [ -118.491531088000031, 49.032245859000113 ], [ -118.492339336, 49.03230257700006 ], [ -118.4919928, 49.032436812000057 ], [ -118.491513613999984, 49.032554404000045 ], [ -118.491474099999962, 49.032620408000071 ], [ -118.491528696999978, 49.032673984000034 ], [ -118.492140115999916, 49.032664399000076 ], [ -118.492317509, 49.032722212000145 ], [ -118.492362033999882, 49.032760202000105 ], [ -118.492425004999944, 49.032813888000099 ], [ -118.492655287000019, 49.033454797000076 ], [ -118.492617013999904, 49.033649495000077 ], [ -118.492474896999923, 49.03380609200007 ], [ -118.49175192199999, 49.034132009000096 ], [ -118.49156929, 49.034310212000058 ], [ -118.491511499999916, 49.034472792000045 ], [ -118.491513902999912, 49.034627805000106 ], [ -118.491888412999984, 49.035566707000029 ], [ -118.492153983999955, 49.036047999000075 ], [ -118.492135108999932, 49.036233196000047 ], [ -118.49199309, 49.036465807000084 ], [ -118.491962218999916, 49.036810402000107 ], [ -118.491858688999955, 49.036855702000032 ], [ -118.491723506999961, 49.03684259700006 ], [ -118.491398180999965, 49.03666220499999 ], [ -118.491023414999958, 49.036388703000036 ], [ -118.490756086999966, 49.036044884000042 ], [ -118.49065459599997, 49.03597630900002 ], [ -118.490501711999968, 49.03597009500006 ], [ -118.490335098999964, 49.036057890000052 ], [ -118.489596309999982, 49.036643025000082 ], [ -118.488964587999988, 49.037143292000131 ], [ -118.488733214999968, 49.037257391000033 ], [ -118.488055907999964, 49.03743620900012 ], [ -118.487477298999977, 49.037548615000034 ], [ -118.486385996999942, 49.03765399300007 ], [ -118.485751199999967, 49.037603990000051 ], [ -118.485465123, 49.037504205000062 ], [ -118.48526358, 49.037348795000064 ], [ -118.484922609999941, 49.036636793000078 ], [ -118.484833510999962, 49.03652550100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "90.5", "sL_BldgLoss": "90.5", "sL_StrLoss": "90.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000066C83EAD19F5DC028639DA626844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.495359804999964, 49.032714689000059 ], [ -118.495189810999989, 49.032670097000043 ], [ -118.494593915999957, 49.032779498000131 ], [ -118.494229786999981, 49.032763101000029 ], [ -118.493973321999988, 49.032709804000071 ], [ -118.493257675999985, 49.032443494000077 ], [ -118.493004444999912, 49.032349245000049 ], [ -118.496651598999961, 49.03260507800006 ], [ -118.496829200999954, 49.0315046770001 ], [ -118.499335038999959, 49.031680377000022 ], [ -118.498490615999955, 49.032987383000048 ], [ -118.498341606999972, 49.033218009000102 ], [ -118.497573895999892, 49.033217592000085 ], [ -118.496908610999967, 49.033246092000105 ], [ -118.496723682999971, 49.033225896 ], [ -118.496360884999888, 49.033073700000074 ], [ -118.495687108999931, 49.032924996000126 ], [ -118.495359804999964, 49.032714689000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "231.6", "sL_BldgLoss": "231.6", "sL_StrLoss": "231.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E57440AF0BA05DC00C1B2B525D834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.498742304999951, 49.028482096000076 ], [ -118.49932004, 49.02490101300009 ], [ -118.499473366999965, 49.024911764000088 ], [ -118.499517445, 49.024638516000095 ], [ -118.50417559899995, 49.024965016000031 ], [ -118.504243908999953, 49.025516711000058 ], [ -118.50413372099996, 49.025629403000075 ], [ -118.503928790999922, 49.025656708000064 ], [ -118.503570418999942, 49.025605294000066 ], [ -118.503264281999975, 49.025604710000081 ], [ -118.502292303999923, 49.025713098000047 ], [ -118.502006383999969, 49.025808091000044 ], [ -118.501845614, 49.025970596000086 ], [ -118.50179131500002, 49.026179587000051 ], [ -118.501448294999946, 49.026714189000089 ], [ -118.500972813999979, 49.027550909000077 ], [ -118.50060862399999, 49.027986206000037 ], [ -118.500504688999968, 49.028196308000069 ], [ -118.500499104999975, 49.028384206000041 ], [ -118.500569484999957, 49.028610193000098 ], [ -118.498742304999951, 49.028482096000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255405463", "BldgCostT": "167224488", "sL_LossRatio": "0.999088673999155", "sL_AssetLoss": "11620.43", "sL_BldgLoss": "11609.84", "sL_StrLoss": "11606", "sL_NStrLoss": "3.84", "sL_ContLoss": "10.59", "geom_point": "0101000020E61000004C8E0AB5099E5DC06F4AF574E0834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.465379019999915, 49.034940002000084 ], [ -118.465419295999965, 49.034132504000048 ], [ -118.463794215999897, 49.034112481000108 ], [ -118.46368909200001, 49.03411119900008 ], [ -118.463690219999961, 49.033584261000129 ], [ -118.463690361999966, 49.033521321000123 ], [ -118.463693047999968, 49.032269520000064 ], [ -118.463693037999931, 49.03225855700007 ], [ -118.463693503999963, 49.032050692000084 ], [ -118.462410899999895, 49.031303011000062 ], [ -118.46253989599991, 49.031117400000085 ], [ -118.462704708000018, 49.03099049100004 ], [ -118.462864677000013, 49.030931775000028 ], [ -118.463393777999954, 49.030737563000031 ], [ -118.463404907999973, 49.030733468000108 ], [ -118.463627714, 49.030651694000028 ], [ -118.463120575999966, 49.030357004000102 ], [ -118.46287771399993, 49.030152505000025 ], [ -118.462206400999918, 49.029378993000108 ], [ -118.462086198999884, 49.029425808000084 ], [ -118.459739108999926, 49.028585792000108 ], [ -118.459870787999932, 49.028519010000132 ], [ -118.461041714999936, 49.028049203000123 ], [ -118.46221168299995, 49.027594644000011 ], [ -118.463408906999945, 49.027129512000066 ], [ -118.463359622, 49.027068533000048 ], [ -118.463300301999979, 49.02699510800003 ], [ -118.463433021999919, 49.026946710000111 ], [ -118.464485211999929, 49.026563159000062 ], [ -118.46449719799989, 49.026558814000069 ], [ -118.464532712999969, 49.026596881000074 ], [ -118.464600176999937, 49.026669192000064 ], [ -118.46791370599999, 49.025222998000075 ], [ -118.470765795999952, 49.023962409000056 ], [ -118.474615601, 49.022280736000056 ], [ -118.474721885999941, 49.022234309000048 ], [ -118.474747496999967, 49.02309449400007 ], [ -118.474765522999945, 49.023585597000107 ], [ -118.474779, 49.024240302000045 ], [ -118.474809984999965, 49.025381486000079 ], [ -118.474831081, 49.026523795000067 ], [ -118.474849568999929, 49.027535305000171 ], [ -118.474864247999946, 49.02834055500005 ], [ -118.47487951, 49.029177412000124 ], [ -118.47490082799996, 49.030563887000106 ], [ -118.474922394999936, 49.031967311000102 ], [ -118.474963607999882, 49.033044576000066 ], [ -118.474963604999957, 49.03304488800007 ], [ -118.474995985999925, 49.034398091000057 ], [ -118.475038699999971, 49.036552027000056 ], [ -118.475038690999938, 49.036552395000065 ], [ -118.474003196999931, 49.036542003000129 ], [ -118.47234778699999, 49.036567486000067 ], [ -118.47233410699999, 49.036567688000076 ], [ -118.470296961999964, 49.036555586000127 ], [ -118.468613121999965, 49.036545533 ], [ -118.46540350399998, 49.036526283000043 ], [ -118.465400847999931, 49.036359364000106 ], [ -118.465390610000014, 49.035707689000041 ], [ -118.465379019999915, 49.034940002000084 ] ], [ [ -118.472793775999989, 49.033620307000021 ], [ -118.472894085999911, 49.033000807000072 ], [ -118.471180811999929, 49.032880262000027 ], [ -118.470865399999965, 49.032884283000023 ], [ -118.470870559999966, 49.033059291000079 ], [ -118.471215885999925, 49.033083590000025 ], [ -118.47098615499999, 49.034502020000048 ], [ -118.471323437999956, 49.034497719000107 ], [ -118.471331395999982, 49.034767498000122 ], [ -118.471376621, 49.034766920000031 ], [ -118.471384314999966, 49.034719411000012 ], [ -118.472002376999967, 49.03476289800011 ], [ -118.472194239999936, 49.033578127000105 ], [ -118.472793775999989, 49.033620307000021 ] ], [ [ -118.472599080999956, 49.028880600000065 ], [ -118.472836361999967, 49.027415042000023 ], [ -118.472252467999951, 49.027373957000066 ], [ -118.472316427999942, 49.026978927000101 ], [ -118.470747445999933, 49.026868512000121 ], [ -118.470684498999944, 49.027257212000052 ], [ -118.471702597999979, 49.027328863000015 ], [ -118.47146425699998, 49.028800747000027 ], [ -118.472599080999956, 49.028880600000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118919250", "BldgCostT": "79335000", "sL_LossRatio": "1", "sL_AssetLoss": "10140.1", "sL_BldgLoss": "10140.1", "sL_StrLoss": "10140.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D38B77D3AF9D5DC0E1B0D936B1824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.459402011999913, 49.026201993000015 ], [ -118.458921612999973, 49.025648792000027 ], [ -118.458296393999902, 49.024947902000072 ], [ -118.457633998999952, 49.024205302000084 ], [ -118.456434291000022, 49.022863898000047 ], [ -118.455278389999989, 49.023301190000069 ], [ -118.454059701999952, 49.021924992000059 ], [ -118.453548601999941, 49.021368294000148 ], [ -118.45329172199996, 49.020861208000049 ], [ -118.453216900999948, 49.020593885000018 ], [ -118.453211956999965, 49.020576185000081 ], [ -118.45316739, 49.020416894000057 ], [ -118.453151180999953, 49.019357299000049 ], [ -118.453190218999978, 49.019015896000013 ], [ -118.453369900999945, 49.017519182000072 ], [ -118.453388793999949, 49.017005286000035 ], [ -118.45334959299997, 49.01693369200008 ], [ -118.453250488999942, 49.016867001000016 ], [ -118.452756596999947, 49.016839402000123 ], [ -118.452625293999972, 49.016801995000023 ], [ -118.452536099999932, 49.016717004000029 ], [ -118.452585493999933, 49.014719583000023 ], [ -118.452588128999977, 49.014612715000077 ], [ -118.452948630999927, 49.01461326900003 ], [ -118.453029722999972, 49.014615441000025 ], [ -118.453999402999969, 49.014641246000117 ], [ -118.45554878499999, 49.014682427 ], [ -118.455560719999937, 49.014681301000032 ], [ -118.455806060999976, 49.014686284000099 ], [ -118.455782786999961, 49.015034496000098 ], [ -118.45596292, 49.016030003000019 ], [ -118.455797807999943, 49.017858703000137 ], [ -118.455356915999943, 49.018737400000091 ], [ -118.455312523999964, 49.019088683000099 ], [ -118.455257927, 49.019520706000066 ], [ -118.455470200999969, 49.020264189000102 ], [ -118.455921003999975, 49.020700001000087 ], [ -118.456182894999941, 49.02079540900008 ], [ -118.45707290199999, 49.020802500000052 ], [ -118.458335998999985, 49.020489206000072 ], [ -118.459673651999935, 49.019034993000091 ], [ -118.459763083000027, 49.019041297000058 ], [ -118.459783462999951, 49.018915608000057 ], [ -118.460084887999969, 49.01858790100006 ], [ -118.460105532999961, 49.018572269000089 ], [ -118.461639557999945, 49.018680399000068 ], [ -118.461730598999978, 49.018118793000092 ], [ -118.4609289199999, 49.018062287000099 ], [ -118.461625402999942, 49.017535494000107 ], [ -118.463685418999887, 49.015906104000088 ], [ -118.464754102999947, 49.015487411000052 ], [ -118.466532489999977, 49.015510104000057 ], [ -118.467576989999955, 49.015685306000073 ], [ -118.468335482999962, 49.015856191000061 ], [ -118.469098492999976, 49.016215115000044 ], [ -118.469713377999966, 49.016675093000089 ], [ -118.470751301999925, 49.017129486000059 ], [ -118.473969895999971, 49.019562014000066 ], [ -118.4747806459999, 49.019881609000059 ], [ -118.474780443999947, 49.019886001000017 ], [ -118.474775423999986, 49.01999482300004 ], [ -118.474765904999913, 49.020202362000106 ], [ -118.474762963999979, 49.020266318000026 ], [ -118.474722188999962, 49.021155101000062 ], [ -118.474722161999978, 49.021289403000068 ], [ -118.47472202099999, 49.021772541000097 ], [ -118.47472201199993, 49.021836850000092 ], [ -118.474721986999953, 49.021937632000032 ], [ -118.47472193899992, 49.022033193000034 ], [ -118.474721885999941, 49.022234309000048 ], [ -118.474615601, 49.022280736000056 ], [ -118.470765795999952, 49.023962409000056 ], [ -118.46791370599999, 49.025222998000075 ], [ -118.464600176999937, 49.026669192000064 ], [ -118.464532712999969, 49.026596881000074 ], [ -118.46449719799989, 49.026558814000069 ], [ -118.464485211999929, 49.026563159000062 ], [ -118.463433021999919, 49.026946710000111 ], [ -118.463300301999979, 49.02699510800003 ], [ -118.463359622, 49.027068533000048 ], [ -118.463408906999945, 49.027129512000066 ], [ -118.46221168299995, 49.027594644000011 ], [ -118.461041714999936, 49.028049203000123 ], [ -118.461023193999921, 49.028028438000014 ], [ -118.460998293999978, 49.028000569000085 ], [ -118.46046749599995, 49.027405685000097 ], [ -118.459934309999966, 49.026814904000098 ], [ -118.459842123999977, 49.026708766000098 ], [ -118.459402011999913, 49.026201993000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140042917", "BldgCostT": "94821667", "sL_LossRatio": "1", "sL_AssetLoss": "9958.3", "sL_BldgLoss": "9958.3", "sL_StrLoss": "9958.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C125199CF59C5DC0DAFA0A4ED4824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.455260882999937, 49.026980697000091 ], [ -118.454908098999965, 49.026912303000081 ], [ -118.452662105999977, 49.026914191000067 ], [ -118.45096578099999, 49.026914901000076 ], [ -118.450284572, 49.026888065000058 ], [ -118.448697620999923, 49.026825505000026 ], [ -118.448901178999961, 49.026588380000071 ], [ -118.448971456999928, 49.026506515000058 ], [ -118.449008229999933, 49.026463669000094 ], [ -118.449285390999975, 49.026140812000023 ], [ -118.44924937899998, 49.026049500000106 ], [ -118.449261193, 49.025257999000047 ], [ -118.449327290999989, 49.024402488000156 ], [ -118.449385397999933, 49.02391771000007 ], [ -118.449264194999941, 49.02362173600001 ], [ -118.449190028999936, 49.023440558000075 ], [ -118.448980306999914, 49.022928409000031 ], [ -118.448887488, 49.022823105 ], [ -118.448746912999965, 49.022784206000047 ], [ -118.448166690999969, 49.02275411200003 ], [ -118.448041503999931, 49.022704505000029 ], [ -118.447990819999944, 49.022619506000048 ], [ -118.448016360999986, 49.018732789000076 ], [ -118.448029788999975, 49.016688602000045 ], [ -118.44801882199999, 49.014684899000031 ], [ -118.452588128999977, 49.014612715000077 ], [ -118.452585493999933, 49.014719583000023 ], [ -118.452536099999932, 49.016717004000029 ], [ -118.452625293999972, 49.016801995000023 ], [ -118.452756596999947, 49.016839402000123 ], [ -118.453250488999942, 49.016867001000016 ], [ -118.45334959299997, 49.01693369200008 ], [ -118.453388793999949, 49.017005286000035 ], [ -118.453369900999945, 49.017519182000072 ], [ -118.453190218999978, 49.019015896000013 ], [ -118.453151180999953, 49.019357299000049 ], [ -118.45316739, 49.020416894000057 ], [ -118.453211956999965, 49.020576185000081 ], [ -118.453216900999948, 49.020593885000018 ], [ -118.45329172199996, 49.020861208000049 ], [ -118.453548601999941, 49.021368294000148 ], [ -118.454059701999952, 49.021924992000059 ], [ -118.455278389999989, 49.023301190000069 ], [ -118.456434291000022, 49.022863898000047 ], [ -118.457633998999952, 49.024205302000084 ], [ -118.458296393999902, 49.024947902000072 ], [ -118.458921612999973, 49.025648792000027 ], [ -118.459402011999913, 49.026201993000015 ], [ -118.459842123999977, 49.026708766000098 ], [ -118.459934309999966, 49.026814904000098 ], [ -118.46046749599995, 49.027405685000097 ], [ -118.460998293999978, 49.028000569000085 ], [ -118.461023193999921, 49.028028438000014 ], [ -118.461041714999936, 49.028049203000123 ], [ -118.459870787999932, 49.028519010000132 ], [ -118.459739108999926, 49.028585792000108 ], [ -118.457488297999959, 49.027778802000078 ], [ -118.455260882999937, 49.026980697000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302539667", "BldgCostT": "198541667", "sL_LossRatio": "0.996754733230657", "sL_AssetLoss": "12122.27", "sL_BldgLoss": "12082.93", "sL_StrLoss": "12068.7", "sL_NStrLoss": "14.23", "sL_ContLoss": "39.34", "geom_point": "0101000020E6100000CD7F826A479D5DC0221432C221844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.452596621999959, 49.034002004000115 ], [ -118.452572595999968, 49.032634900000076 ], [ -118.452610588999974, 49.029939289000019 ], [ -118.452631092999965, 49.029178396000084 ], [ -118.452637851999924, 49.028992552000076 ], [ -118.452658803999967, 49.028415200000026 ], [ -118.450885982, 49.028427186000044 ], [ -118.449578678999927, 49.028436004000085 ], [ -118.4491062, 49.02843611100004 ], [ -118.448212113999929, 49.027768210000097 ], [ -118.448207020999973, 49.027114090000069 ], [ -118.44829673699995, 49.027061323000048 ], [ -118.448697620999923, 49.026825505000026 ], [ -118.450284572, 49.026888065000058 ], [ -118.45096578099999, 49.026914901000076 ], [ -118.452662105999977, 49.026914191000067 ], [ -118.454908098999965, 49.026912303000081 ], [ -118.455260882999937, 49.026980697000091 ], [ -118.457488297999959, 49.027778802000078 ], [ -118.459739108999926, 49.028585792000108 ], [ -118.462086198999884, 49.029425808000084 ], [ -118.462206400999918, 49.029378993000108 ], [ -118.46287771399993, 49.030152505000025 ], [ -118.463120575999966, 49.030357004000102 ], [ -118.463627714, 49.030651694000028 ], [ -118.463404907999973, 49.030733468000108 ], [ -118.463393777999954, 49.030737563000031 ], [ -118.462864677000013, 49.030931775000028 ], [ -118.462704708000018, 49.03099049100004 ], [ -118.46253989599991, 49.031117400000085 ], [ -118.462410899999895, 49.031303011000062 ], [ -118.463693503999963, 49.032050692000084 ], [ -118.463693037999931, 49.03225855700007 ], [ -118.463693047999968, 49.032269520000064 ], [ -118.463690361999966, 49.033521321000123 ], [ -118.463690219999961, 49.033584261000129 ], [ -118.46368909200001, 49.03411119900008 ], [ -118.463794215999897, 49.034112481000108 ], [ -118.465419295999965, 49.034132504000048 ], [ -118.465379019999915, 49.034940002000084 ], [ -118.465390610000014, 49.035707689000041 ], [ -118.465400847999931, 49.036359364000106 ], [ -118.46540350399998, 49.036526283000043 ], [ -118.463652926999885, 49.036512502000072 ], [ -118.462247905999973, 49.036493199000112 ], [ -118.460952689999942, 49.036517012000068 ], [ -118.460689311999914, 49.036582590000101 ], [ -118.460512494999946, 49.036715893000128 ], [ -118.460384705999957, 49.036927885000082 ], [ -118.457706591999923, 49.037334703000077 ], [ -118.452788933999898, 49.036598575000021 ], [ -118.45277923899999, 49.036472750000016 ], [ -118.452636286999947, 49.036126305000067 ], [ -118.452631027999985, 49.035727759000125 ], [ -118.452627584999917, 49.035469205000034 ], [ -118.452592869999975, 49.035192399000081 ], [ -118.452596621999959, 49.034002004000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "472301737", "BldgCostT": "299049992", "sL_LossRatio": "0.990860087553439", "sL_AssetLoss": "12481.52", "sL_BldgLoss": "12367.44", "sL_StrLoss": "12326.1", "sL_NStrLoss": "41.34", "sL_ContLoss": "114.08", "geom_point": "0101000020E61000005307F504749C5DC019081246F9834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.444461812999975, 49.028320984000118 ], [ -118.44545866199995, 49.028055824000042 ], [ -118.445739493999966, 49.027981107000137 ], [ -118.447040508999976, 49.027598495000049 ], [ -118.448039269999981, 49.027183739000044 ], [ -118.448207020999973, 49.027114090000069 ], [ -118.448212113999929, 49.027768210000097 ], [ -118.4491062, 49.02843611100004 ], [ -118.449578678999927, 49.028436004000085 ], [ -118.450885982, 49.028427186000044 ], [ -118.452658803999967, 49.028415200000026 ], [ -118.452637851999924, 49.028992552000076 ], [ -118.452631092999965, 49.029178396000084 ], [ -118.452610588999974, 49.029939289000019 ], [ -118.451650208999965, 49.030169387000086 ], [ -118.450415084000028, 49.03050059400001 ], [ -118.449078392999951, 49.030865403000099 ], [ -118.44850154599996, 49.031017172000119 ], [ -118.447741004999912, 49.031217289000026 ], [ -118.446462217999965, 49.031555303000033 ], [ -118.447123484999963, 49.032628024000061 ], [ -118.445615005999983, 49.03307468400007 ], [ -118.44525861299995, 49.033165463000067 ], [ -118.444604779999963, 49.033331997000076 ], [ -118.443324209999972, 49.033671703000032 ], [ -118.44314492399999, 49.033719374000015 ], [ -118.442655112999915, 49.033849648000142 ], [ -118.442027688999929, 49.034016491000052 ], [ -118.440761395999942, 49.034344506000132 ], [ -118.439603015, 49.03466740000006 ], [ -118.438436981999956, 49.034977892000093 ], [ -118.43775180599998, 49.033870105000048 ], [ -118.43705150800001, 49.032728594000091 ], [ -118.438031287999948, 49.032152299000053 ], [ -118.439060786999917, 49.031582111000098 ], [ -118.439333296999962, 49.031435691000048 ], [ -118.440223504999977, 49.031046785000051 ], [ -118.440027887999946, 49.030754111000057 ], [ -118.441321709999926, 49.030417201000027 ], [ -118.442602493999985, 49.03007580900006 ], [ -118.443669106999906, 49.029792593000138 ], [ -118.443519622999986, 49.029149100000048 ], [ -118.443512804999941, 49.028895094000042 ], [ -118.443623874999972, 49.028735401000077 ], [ -118.443802306999913, 49.028576001000054 ], [ -118.444040686999969, 49.028452400000035 ], [ -118.444461812999975, 49.028320984000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10481083", "BldgCostT": "6283333", "sL_LossRatio": "0.996167848246791", "sL_AssetLoss": "506.243", "sL_BldgLoss": "504.303", "sL_StrLoss": "503.6", "sL_NStrLoss": "0.703", "sL_ContLoss": "1.94", "geom_point": "0101000020E6100000B12238684E9B5DC02CF0F4CE91834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.419542562999965, 49.02486699600005 ], [ -118.419583568999897, 49.023738544000061 ], [ -118.419582328999979, 49.023601366000086 ], [ -118.420377100999985, 49.023814691000048 ], [ -118.422144811999928, 49.02391870800006 ], [ -118.422820598999962, 49.024063897000147 ], [ -118.42422710699995, 49.024937009000098 ], [ -118.424928680999969, 49.025549396000088 ], [ -118.425489804999955, 49.026099096000046 ], [ -118.425536595999915, 49.026288588000092 ], [ -118.42653289499998, 49.027138814000047 ], [ -118.427112607999959, 49.027842393000078 ], [ -118.427753712999916, 49.028221192000089 ], [ -118.428321490999977, 49.02843060300011 ], [ -118.428561392999939, 49.028688396000106 ], [ -118.429321525999953, 49.029073759000056 ], [ -118.42960071499999, 49.029215296000082 ], [ -118.429984083999955, 49.02969670100007 ], [ -118.430991401999989, 49.030430188000068 ], [ -118.432026505999943, 49.030759208000056 ], [ -118.432581912999964, 49.031068194000113 ], [ -118.434336699999946, 49.033079192000073 ], [ -118.435023008999934, 49.033591910000062 ], [ -118.435748431999983, 49.034382263000083 ], [ -118.435726660999975, 49.034387574000071 ], [ -118.435659292999944, 49.034403999000077 ], [ -118.435656391999913, 49.034404705000135 ], [ -118.43545529799999, 49.034454337000071 ], [ -118.43526860299994, 49.034500411000053 ], [ -118.434826701999924, 49.034514499000089 ], [ -118.434481434999952, 49.034424907000115 ], [ -118.434180272999981, 49.034274092000032 ], [ -118.433957501999913, 49.034073584000097 ], [ -118.433752941999956, 49.033837403000057 ], [ -118.433656804999927, 49.033726388000062 ], [ -118.433516280999967, 49.033539158000117 ], [ -118.432647448999944, 49.032381275000027 ], [ -118.432481606999986, 49.032160252000082 ], [ -118.432384620999969, 49.032030990000131 ], [ -118.431990995999953, 49.031537697000068 ], [ -118.431453574999964, 49.031081725000071 ], [ -118.431433430999974, 49.031064609000097 ], [ -118.430331125999913, 49.030258563000054 ], [ -118.430190022, 49.03015766400005 ], [ -118.428838749999954, 49.029191313000105 ], [ -118.42852926899999, 49.029008241000071 ], [ -118.428173805000014, 49.028800917000098 ], [ -118.427785420999953, 49.028574386000045 ], [ -118.427335315999969, 49.028285383000075 ], [ -118.426884608, 49.027931990000098 ], [ -118.426260493999948, 49.027226775000017 ], [ -118.426001989999989, 49.026983885000078 ], [ -118.42563661, 49.026722591000045 ], [ -118.424834913999987, 49.026391486000087 ], [ -118.420562880999981, 49.025129997000107 ], [ -118.419542562999965, 49.02486699600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104345250", "BldgCostT": "70305000", "sL_LossRatio": "0.994165348101266", "sL_AssetLoss": "2426.88", "sL_BldgLoss": "2412.72", "sL_StrLoss": "2407.6", "sL_NStrLoss": "5.12", "sL_ContLoss": "14.16", "geom_point": "0101000020E6100000EAD309EC5A9C5DC029B131D031834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.443554002999946, 49.02774689000006 ], [ -118.444169201999955, 49.027694290000071 ], [ -118.444647001999925, 49.027708867000051 ], [ -118.444640181999901, 49.02775084299999 ], [ -118.444858011999912, 49.027731866000074 ], [ -118.444857532999933, 49.027715289000056 ], [ -118.445195198999897, 49.027725589000013 ], [ -118.44678689599999, 49.027382393000011 ], [ -118.447842108999978, 49.027026301000063 ], [ -118.448447094999921, 49.026606199000057 ], [ -118.448593422999949, 49.026403712000054 ], [ -118.448802192999935, 49.026114815000042 ], [ -118.448848801999972, 49.025844190000072 ], [ -118.448752707999958, 49.024937003000062 ], [ -118.448431597999971, 49.024203489000101 ], [ -118.448179914999969, 49.024018405000064 ], [ -118.447510594999983, 49.023603899000115 ], [ -118.446916706999957, 49.023394600000081 ], [ -118.445872084, 49.02321939900007 ], [ -118.44509889199999, 49.022950201000114 ], [ -118.444673213999977, 49.022937395000049 ], [ -118.444135817999936, 49.022763600000118 ], [ -118.443772505999988, 49.022534305000057 ], [ -118.443555679999946, 49.022151196000067 ], [ -118.443796506999917, 49.021490411000109 ], [ -118.444968701999954, 49.020405201000059 ], [ -118.445431881999966, 49.01985970100003 ], [ -118.445612695999955, 49.019489397000093 ], [ -118.445757820999987, 49.01738299600003 ], [ -118.444728707999928, 49.01493899200004 ], [ -118.444723417999953, 49.014727333000096 ], [ -118.445240121999959, 49.014707153000046 ], [ -118.44801882199999, 49.014684899000031 ], [ -118.448029788999975, 49.016688602000045 ], [ -118.448016360999986, 49.018732789000076 ], [ -118.447990819999944, 49.022619506000048 ], [ -118.448041503999931, 49.022704505000029 ], [ -118.448166690999969, 49.02275411200003 ], [ -118.448746912999965, 49.022784206000047 ], [ -118.448887488, 49.022823105 ], [ -118.448980306999914, 49.022928409000031 ], [ -118.449190028999936, 49.023440558000075 ], [ -118.449264194999941, 49.02362173600001 ], [ -118.449385397999933, 49.02391771000007 ], [ -118.449327290999989, 49.024402488000156 ], [ -118.449261193, 49.025257999000047 ], [ -118.44924937899998, 49.026049500000106 ], [ -118.449285390999975, 49.026140812000023 ], [ -118.449008229999933, 49.026463669000094 ], [ -118.448971456999928, 49.026506515000058 ], [ -118.448901178999961, 49.026588380000071 ], [ -118.448697620999923, 49.026825505000026 ], [ -118.44829673699995, 49.027061323000048 ], [ -118.448207020999973, 49.027114090000069 ], [ -118.448039269999981, 49.027183739000044 ], [ -118.447040508999976, 49.027598495000049 ], [ -118.445739493999966, 49.027981107000137 ], [ -118.44545866199995, 49.028055824000042 ], [ -118.444461812999975, 49.028320984000118 ], [ -118.444040686999969, 49.028452400000035 ], [ -118.443802306999913, 49.028576001000054 ], [ -118.443623874999972, 49.028735401000077 ], [ -118.443512804999941, 49.028895094000042 ], [ -118.443519622999986, 49.029149100000048 ], [ -118.443669106999906, 49.029792593000138 ], [ -118.442602493999985, 49.03007580900006 ], [ -118.441321709999926, 49.030417201000027 ], [ -118.440027887999946, 49.030754111000057 ], [ -118.440223504999977, 49.031046785000051 ], [ -118.439333296999962, 49.031435691000048 ], [ -118.439060786999917, 49.031582111000098 ], [ -118.438031287999948, 49.032152299000053 ], [ -118.43705150800001, 49.032728594000091 ], [ -118.43775180599998, 49.033870105000048 ], [ -118.436603396999899, 49.034173801000051 ], [ -118.436327093, 49.034241166000065 ], [ -118.436286566999939, 49.034251053000034 ], [ -118.43628438399999, 49.034251585000035 ], [ -118.436201079999989, 49.034125996000142 ], [ -118.434062396999963, 49.032065089000056 ], [ -118.433432915999944, 49.031156494000058 ], [ -118.433852508999962, 49.03096138300004 ], [ -118.434748591999977, 49.0307620090001 ], [ -118.435751625999927, 49.030593859000042 ], [ -118.436260814999969, 49.030508494000117 ], [ -118.437115492999922, 49.030237910000118 ], [ -118.43761260899997, 49.029988693000043 ], [ -118.439004681999947, 49.028873503000064 ], [ -118.440815803999925, 49.028095891000063 ], [ -118.44142681699995, 49.027961994000044 ], [ -118.442686892999987, 49.02800049600004 ], [ -118.443554002999946, 49.02774689000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "303195442", "BldgCostT": "197455686", "sL_LossRatio": "0.99061402662723", "sL_AssetLoss": "11197.56", "sL_BldgLoss": "11092.46", "sL_StrLoss": "11054.4", "sL_NStrLoss": "38.06", "sL_ContLoss": "105.1", "geom_point": "0101000020E61000007FDD7578C09B5DC0A3FE2016DA824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.429532846000015, 49.02843854100005 ], [ -118.42955935, 49.028275775000061 ], [ -118.429278344999958, 49.028279258000033 ], [ -118.42927989899999, 49.028333488000015 ], [ -118.429163889999941, 49.028285308000086 ], [ -118.42746701399993, 49.027316788000043 ], [ -118.427045901999946, 49.026908102000107 ], [ -118.426811919999963, 49.026362602000049 ], [ -118.426891486999949, 49.025848489000076 ], [ -118.42665459899996, 49.0256349100001 ], [ -118.425556076999982, 49.025028094000085 ], [ -118.425371900999949, 49.024833009000147 ], [ -118.42463798599999, 49.0244827020001 ], [ -118.424371502000014, 49.024242005000119 ], [ -118.422304584999921, 49.023318424000088 ], [ -118.424374521999937, 49.023722354000078 ], [ -118.427049438999944, 49.023962521000044 ], [ -118.427158209999959, 49.02261303600006 ], [ -118.42721606799995, 49.021895708000095 ], [ -118.427220847999962, 49.021813782000109 ], [ -118.427224412000029, 49.021749749000058 ], [ -118.427257343999926, 49.020998714000058 ], [ -118.427262400999965, 49.02089039800007 ], [ -118.427261107999982, 49.020890382000069 ], [ -118.425305495999936, 49.020876031000071 ], [ -118.425269604999983, 49.020215781000054 ], [ -118.425268984999931, 49.020201684000057 ], [ -118.423306826999976, 49.019401152000057 ], [ -118.423189523999895, 49.019207590000079 ], [ -118.423155387999927, 49.019151271000112 ], [ -118.422202843999969, 49.019290604000055 ], [ -118.42207358099995, 49.018683641000031 ], [ -118.421935739, 49.017902050000025 ], [ -118.422919433999965, 49.017902986000117 ], [ -118.422938284999987, 49.017902995000021 ], [ -118.423044697999941, 49.017882405000051 ], [ -118.423089115, 49.017820397000058 ], [ -118.423093896999902, 49.016963717000053 ], [ -118.419687559999929, 49.01690309100006 ], [ -118.419687011999926, 49.016132702000057 ], [ -118.419686790999947, 49.015889728000047 ], [ -118.41968589199999, 49.014680616000049 ], [ -118.419685913999899, 49.014671587000116 ], [ -118.427256413999984, 49.01467928200006 ], [ -118.429115996999926, 49.01468108500007 ], [ -118.430603607999956, 49.014682505000117 ], [ -118.430617277999929, 49.014682562000054 ], [ -118.432494931999926, 49.01468948400003 ], [ -118.434136640999938, 49.014695535000044 ], [ -118.436475189999967, 49.014704083000055 ], [ -118.438732054999917, 49.014712306000078 ], [ -118.441606996999923, 49.014722713000012 ], [ -118.441606734999951, 49.01484732200003 ], [ -118.441604161999962, 49.016063648000099 ], [ -118.436216460999958, 49.016183218000144 ], [ -118.434597174999936, 49.0160686830001 ], [ -118.433925124999959, 49.01607703800007 ], [ -118.43389949499999, 49.016234557000075 ], [ -118.430599988999958, 49.016307605000058 ], [ -118.430599968999971, 49.01631663400012 ], [ -118.430593389999956, 49.017680802000108 ], [ -118.430593102999936, 49.017815049000063 ], [ -118.430592429999962, 49.018112921000046 ], [ -118.430592211999937, 49.018212182000084 ], [ -118.430590552999888, 49.018949042000088 ], [ -118.430589788999953, 49.019290933000022 ], [ -118.430588182999955, 49.01999031200004 ], [ -118.430570598999978, 49.020790487000085 ], [ -118.431832883999959, 49.020865299000093 ], [ -118.43219759599999, 49.020944491000094 ], [ -118.433108711, 49.02122809100009 ], [ -118.433234619999951, 49.021283122000078 ], [ -118.433590803999934, 49.021438786000068 ], [ -118.434746956999973, 49.022163870000092 ], [ -118.434820726999988, 49.022235945000055 ], [ -118.434949233999959, 49.021778299000061 ], [ -118.43597196599994, 49.021096989000085 ], [ -118.440502231999972, 49.01990286000003 ], [ -118.440640935999966, 49.019801868000059 ], [ -118.441479955999938, 49.018951629000057 ], [ -118.441591536999937, 49.018838510000073 ], [ -118.441643105999916, 49.018753062000016 ], [ -118.441845212999965, 49.018762219000131 ], [ -118.442239955, 49.018784423000099 ], [ -118.443400753999953, 49.018834927000057 ], [ -118.444676741999928, 49.018832607000014 ], [ -118.444964441999957, 49.018819124000068 ], [ -118.444980478999938, 49.018818412000087 ], [ -118.444962107999942, 49.01918320900004 ], [ -118.444598398999943, 49.019888207000101 ], [ -118.443239501, 49.021138604000086 ], [ -118.442895904999943, 49.021978892000057 ], [ -118.442879594999951, 49.022366314000116 ], [ -118.44292580199999, 49.022572799000066 ], [ -118.443265205, 49.022918910000094 ], [ -118.443921299999943, 49.023378897000157 ], [ -118.445676388999942, 49.024049699000102 ], [ -118.446502607999918, 49.024246207000125 ], [ -118.44729321100003, 49.024586592000063 ], [ -118.448103991, 49.025179107000049 ], [ -118.448150187999971, 49.025817114000063 ], [ -118.447617996999981, 49.026355512000094 ], [ -118.447309601999947, 49.026566286000069 ], [ -118.446794610999959, 49.026751387000111 ], [ -118.446169202999926, 49.026858185000044 ], [ -118.44551391600001, 49.026904775000084 ], [ -118.445630648999895, 49.026186371000065 ], [ -118.444892915999915, 49.026195612000087 ], [ -118.444769069999921, 49.026957729000024 ], [ -118.443879075999973, 49.027020994000068 ], [ -118.442644501999908, 49.027210204 ], [ -118.44008268799999, 49.027825304000046 ], [ -118.439337389999977, 49.028104400000117 ], [ -118.438382290999968, 49.028638501000046 ], [ -118.436946793999951, 49.029672515000136 ], [ -118.43630218, 49.03004129600005 ], [ -118.435500400999942, 49.030185202000027 ], [ -118.435008491999966, 49.030273490000063 ], [ -118.43328470599991, 49.030294907000098 ], [ -118.432375113999953, 49.030054200000031 ], [ -118.43081141499998, 49.029389099000099 ], [ -118.43015503099997, 49.028861114000094 ], [ -118.42973309199999, 49.028521706000042 ], [ -118.429532846000015, 49.02843854100005 ] ], [ [ -118.446683762999925, 49.025363532000036 ], [ -118.446712441, 49.025187006000088 ], [ -118.446687532999988, 49.02518524700006 ], [ -118.44679066399999, 49.024550426000047 ], [ -118.445636442999955, 49.024468919000093 ], [ -118.44568485799999, 49.02417094200009 ], [ -118.445577338999939, 49.024229336000062 ], [ -118.445587139999944, 49.024567640000036 ], [ -118.445997368999954, 49.024562499000112 ], [ -118.446005187999958, 49.02483228100003 ], [ -118.446415418999948, 49.024827138000035 ], [ -118.446431059999966, 49.025366701000081 ], [ -118.446683762999925, 49.025363532000036 ] ], [ [ -118.425405461999958, 49.01825717 ], [ -118.425479771999932, 49.017800971000028 ], [ -118.425218013999952, 49.017804205000061 ], [ -118.425147206999952, 49.018238879000094 ], [ -118.425405461999958, 49.01825717 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172674790", "BldgCostT": "118735373", "sL_LossRatio": "1", "sL_AssetLoss": "7956.5", "sL_BldgLoss": "7956.5", "sL_StrLoss": "7956.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009478BCA0709C5DC03BF2FE47BF844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.43997811, 49.04350663700005 ], [ -118.439970973999905, 49.043259507000087 ], [ -118.439560590999932, 49.043264627 ], [ -118.439561332999958, 49.04329037400008 ], [ -118.439144558999971, 49.043074108000077 ], [ -118.439134633999956, 49.042730184000099 ], [ -118.438724253999965, 49.042735301000043 ], [ -118.438716469999974, 49.04246552100004 ], [ -118.43830609199992, 49.042470637000115 ], [ -118.43829831, 49.042200855000054 ], [ -118.437615277999939, 49.042209368000044 ], [ -118.437609709999947, 49.042205486000022 ], [ -118.437475776999975, 49.042149256000073 ], [ -118.437469782999941, 49.041941302000048 ], [ -118.437059409999947, 49.04194641400003 ], [ -118.43702053799997, 49.040597506000033 ], [ -118.436610174999942, 49.040602616000029 ], [ -118.436593044999938, 49.040007960000054 ], [ -118.436930911, 49.039523685000042 ], [ -118.437273711999978, 49.038619409000091 ], [ -118.437414216999969, 49.03683630400009 ], [ -118.437367686999949, 49.036208190000075 ], [ -118.437100409, 49.035481786000034 ], [ -118.43628438399999, 49.034251585000035 ], [ -118.436286566999939, 49.034251053000034 ], [ -118.436327093, 49.034241166000065 ], [ -118.436603396999899, 49.034173801000051 ], [ -118.43775180599998, 49.033870105000048 ], [ -118.438436981999956, 49.034977892000093 ], [ -118.439603015, 49.03466740000006 ], [ -118.440761395999942, 49.034344506000132 ], [ -118.442027688999929, 49.034016491000052 ], [ -118.442655112999915, 49.033849648000142 ], [ -118.44314492399999, 49.033719374000015 ], [ -118.443324209999972, 49.033671703000032 ], [ -118.444604779999963, 49.033331997000076 ], [ -118.44525861299995, 49.033165463000067 ], [ -118.445615005999983, 49.03307468400007 ], [ -118.447123484999963, 49.032628024000061 ], [ -118.446462217999965, 49.031555303000033 ], [ -118.447741004999912, 49.031217289000026 ], [ -118.44850154599996, 49.031017172000119 ], [ -118.449078392999951, 49.030865403000099 ], [ -118.450415084000028, 49.03050059400001 ], [ -118.451650208999965, 49.030169387000086 ], [ -118.452610588999974, 49.029939289000019 ], [ -118.452572595999968, 49.032634900000076 ], [ -118.452596621999959, 49.034002004000115 ], [ -118.452592869999975, 49.035192399000081 ], [ -118.452627584999917, 49.035469205000034 ], [ -118.452631027999985, 49.035727759000125 ], [ -118.452636286999947, 49.036126305000067 ], [ -118.45277923899999, 49.036472750000016 ], [ -118.452788933999898, 49.036598575000021 ], [ -118.450764946999954, 49.036585339000084 ], [ -118.45015250499992, 49.036578848000076 ], [ -118.450163113999949, 49.036513531 ], [ -118.45008492099997, 49.036508014000056 ], [ -118.450148722999955, 49.036115195000086 ], [ -118.449419501999984, 49.036124359000041 ], [ -118.449347060999955, 49.036570306000037 ], [ -118.448176812999975, 49.036557883000079 ], [ -118.44800907599992, 49.037462381000104 ], [ -118.447630174999929, 49.037491663000097 ], [ -118.443282743999944, 49.037184722000106 ], [ -118.443316314999947, 49.036978223000027 ], [ -118.441609607999965, 49.036857676000075 ], [ -118.44171315199999, 49.036220909000022 ], [ -118.441409756999988, 49.03622470000002 ], [ -118.441417554999987, 49.036494481000041 ], [ -118.441007226999929, 49.036499607000081 ], [ -118.441022815999958, 49.037039169000145 ], [ -118.440612483999985, 49.037044294000033 ], [ -118.440635860999976, 49.037853637000076 ], [ -118.441046199999974, 49.037848513000107 ], [ -118.441053994999919, 49.038118294000071 ], [ -118.441464335999953, 49.038113169000091 ], [ -118.44147993099989, 49.038652731000063 ], [ -118.441890277999974, 49.038647603000051 ], [ -118.441921477999983, 49.039726728000069 ], [ -118.440690413999974, 49.039742106000055 ], [ -118.440713795999969, 49.040551449000134 ], [ -118.44112415599993, 49.040546325 ], [ -118.441139748999973, 49.041085887000079 ], [ -118.441550114999984, 49.041080760000057 ], [ -118.441563427999952, 49.041541283000093 ], [ -118.441645769, 49.041619323000077 ], [ -118.44197608399999, 49.041615195000105 ], [ -118.441983882999935, 49.041884977000116 ], [ -118.442394255999957, 49.041879847000132 ], [ -118.442402060999925, 49.042149628000047 ], [ -118.442812432999943, 49.042144497000088 ], [ -118.442829121999978, 49.042721242000056 ], [ -118.446883758999917, 49.043007497000048 ], [ -118.446415204999965, 49.045890350000072 ], [ -118.445730099999963, 49.045693387000043 ], [ -118.443363380999969, 49.045281800000041 ], [ -118.442703680999927, 49.044650892000078 ], [ -118.442368221999956, 49.044467201000074 ], [ -118.44188210199998, 49.044229306000027 ], [ -118.441444393, 49.044172394000093 ], [ -118.440723105999965, 49.043893201000088 ], [ -118.43997811, 49.04350663700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43983334", "BldgCostT": "27858334", "sL_LossRatio": "0.999809644574945", "sL_AssetLoss": "2001.519", "sL_BldgLoss": "2001.138", "sL_StrLoss": "2001", "sL_NStrLoss": "0.138", "sL_ContLoss": "0.381", "geom_point": "0101000020E61000003694A0E05E9C5DC0994C0D1B02864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.44468842400002, 49.050217372000077 ], [ -118.444664968999987, 49.04940803100007 ], [ -118.444254535, 49.04941316900009 ], [ -118.444251218999938, 49.049298652000068 ], [ -118.444246718999963, 49.049143389000093 ], [ -118.443189802999939, 49.049156613000058 ], [ -118.44219456099998, 49.04916905600011 ], [ -118.442187715999964, 49.048932427000103 ], [ -118.442186755999941, 49.048899275000075 ], [ -118.442074702999932, 49.048900676000066 ], [ -118.441365895999951, 49.048909532000096 ], [ -118.441357659999966, 49.048624681000035 ], [ -118.441342496999965, 49.048100191000124 ], [ -118.441752920999974, 49.048095063000119 ], [ -118.441721714999943, 49.047015940000051 ], [ -118.440900884999934, 49.047026194000104 ], [ -118.440877157999978, 49.046205187000034 ], [ -118.44086788, 49.046204531000072 ], [ -118.440875740999942, 49.046156195000059 ], [ -118.440869698999933, 49.045947070000082 ], [ -118.440459292999918, 49.045952194000073 ], [ -118.440451498999963, 49.045682413000108 ], [ -118.440041093999966, 49.045687536000074 ], [ -118.440033302999964, 49.045417754 ], [ -118.438391695999954, 49.045438231000098 ], [ -118.438383912999925, 49.045168450000126 ], [ -118.437973512999974, 49.045173565 ], [ -118.437965732999956, 49.044903784000034 ], [ -118.437555334999928, 49.044908898000088 ], [ -118.437524223999944, 49.043829772000016 ], [ -118.438345000999973, 49.043819543000076 ], [ -118.43833721799993, 49.04354976300003 ], [ -118.435951532999951, 49.04357947700003 ], [ -118.435874896999934, 49.043580430000105 ], [ -118.435869914999927, 49.043407436000052 ], [ -118.435836056000014, 49.042231522000044 ], [ -118.436450448999949, 49.042223875000111 ], [ -118.436517587999958, 49.04231800500007 ], [ -118.437617701999926, 49.042943285000057 ], [ -118.438209291999939, 49.043078612000116 ], [ -118.438325186999947, 49.043132647000071 ], [ -118.438329435999918, 49.043279981000083 ], [ -118.438633066999969, 49.043276195000047 ], [ -118.439055383999985, 49.043473094000063 ], [ -118.439600401999954, 49.043853299000027 ], [ -118.441111411999927, 49.04449138800009 ], [ -118.441707902999951, 49.044771888000092 ], [ -118.442060796999939, 49.045153588000069 ], [ -118.442799610999913, 49.045666386000093 ], [ -118.4450539, 49.045979707000058 ], [ -118.445290402999902, 49.046103604000059 ], [ -118.446241282999964, 49.046315801000063 ], [ -118.446339880999972, 49.046353762000109 ], [ -118.446301773999963, 49.046588196000066 ], [ -118.444991139999928, 49.04649568400005 ], [ -118.444997206999986, 49.046705089000071 ], [ -118.446228440999946, 49.046689663000087 ], [ -118.446236266999946, 49.04695944400008 ], [ -118.447057093999945, 49.04694915200011 ], [ -118.447064922999971, 49.047218933000103 ], [ -118.447475337999919, 49.047213785000153 ], [ -118.447491003999957, 49.047753345000054 ], [ -118.447901422999962, 49.047748195000061 ], [ -118.447909257999967, 49.048017974000089 ], [ -118.449140522999969, 49.048002518000075 ], [ -118.449148364999971, 49.048272298000022 ], [ -118.44955878699993, 49.048267143 ], [ -118.449598008999928, 49.049616041000071 ], [ -118.446998007999952, 49.049648675000086 ], [ -118.446724964999987, 49.049652099000092 ], [ -118.446732792999981, 49.049921880000056 ], [ -118.445911917999965, 49.049932169000037 ], [ -118.445919742999976, 49.050201949000076 ], [ -118.44468842400002, 49.050217372000077 ] ], [ [ -118.442937342000022, 49.046460988000028 ], [ -118.444264483999945, 49.046444384000061 ], [ -118.442934141999942, 49.046350454000049 ], [ -118.442937342000022, 49.046460988000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78805144", "BldgCostT": "51726523", "sL_LossRatio": "1", "sL_AssetLoss": "4185.6", "sL_BldgLoss": "4185.6", "sL_StrLoss": "4185.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006020E781789B5DC0C15FF65F25844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.434511796999942, 49.03900945400008 ], [ -118.43450091699999, 49.038631175000042 ], [ -118.43328981399999, 49.038545539000062 ], [ -118.43331798299991, 49.038372501000083 ], [ -118.432432998999971, 49.038309916000088 ], [ -118.432501958000017, 49.037886372000088 ], [ -118.432446026999941, 49.03788241700007 ], [ -118.432522144999922, 49.03741490400008 ], [ -118.430361866999988, 49.037441703000091 ], [ -118.43035413099993, 49.037171921000059 ], [ -118.42953345799998, 49.03718209200008 ], [ -118.42951799399999, 49.036642526000101 ], [ -118.429107662999968, 49.036647609000056 ], [ -118.429099931999957, 49.036377827000074 ], [ -118.428689602999953, 49.036382909000075 ], [ -118.428681874999924, 49.036113125000028 ], [ -118.428271546999952, 49.036118206000019 ], [ -118.42826670599996, 49.035949115000079 ], [ -118.42826382199992, 49.035848423000061 ], [ -118.427988722999913, 49.035851828000098 ], [ -118.427853496999958, 49.035853501000062 ], [ -118.42785208, 49.035803998000056 ], [ -118.427848787999935, 49.035688995000022 ], [ -118.427830327999956, 49.035044153000065 ], [ -118.42824064699991, 49.035039074000061 ], [ -118.42823292099996, 49.034769291000025 ], [ -118.429463870999939, 49.034754047000021 ], [ -118.429463448999968, 49.034739361000049 ], [ -118.429242621999904, 49.03472373500005 ], [ -118.429713465999939, 49.031832663000088 ], [ -118.429669522999987, 49.031829554000126 ], [ -118.429794072999982, 49.031064737000051 ], [ -118.429409864999954, 49.031037549000118 ], [ -118.429455725000011, 49.030755949000074 ], [ -118.42915887499997, 49.030734942000059 ], [ -118.429207043999924, 49.030439172000065 ], [ -118.428109337999899, 49.030452764000117 ], [ -118.428101614999932, 49.030182980000077 ], [ -118.427456130999971, 49.030190969000088 ], [ -118.427295366999957, 49.031177873000047 ], [ -118.424520888, 49.03098144700003 ], [ -118.424487745999954, 49.029860023000076 ], [ -118.42447358099993, 49.029379328000111 ], [ -118.424141059999968, 49.029372745000089 ], [ -118.422739521999972, 49.029345043000092 ], [ -118.422101749999939, 49.029331206000094 ], [ -118.422336802999922, 49.02788918300007 ], [ -118.421915612999953, 49.027859347000081 ], [ -118.421944135, 49.027684378000082 ], [ -118.421302606999944, 49.02763893000013 ], [ -118.421337598999926, 49.02742427300003 ], [ -118.420664900999967, 49.027376613000044 ], [ -118.42068434199993, 49.027257365000047 ], [ -118.420086392999963, 49.027214996000083 ], [ -118.420167131000014, 49.026719794000066 ], [ -118.419523696999988, 49.026674199000041 ], [ -118.419542562999965, 49.02486699600005 ], [ -118.420562880999981, 49.025129997000107 ], [ -118.424834913999987, 49.026391486000087 ], [ -118.42563661, 49.026722591000045 ], [ -118.426001989999989, 49.026983885000078 ], [ -118.426260493999948, 49.027226775000017 ], [ -118.426884608, 49.027931990000098 ], [ -118.427335315999969, 49.028285383000075 ], [ -118.427785420999953, 49.028574386000045 ], [ -118.428173805000014, 49.028800917000098 ], [ -118.42852926899999, 49.029008241000071 ], [ -118.428838749999954, 49.029191313000105 ], [ -118.430190022, 49.03015766400005 ], [ -118.430331125999913, 49.030258563000054 ], [ -118.431433430999974, 49.031064609000097 ], [ -118.431453574999964, 49.031081725000071 ], [ -118.431990995999953, 49.031537697000068 ], [ -118.432384620999969, 49.032030990000131 ], [ -118.432481606999986, 49.032160252000082 ], [ -118.432647448999944, 49.032381275000027 ], [ -118.433516280999967, 49.033539158000117 ], [ -118.433656804999927, 49.033726388000062 ], [ -118.433752941999956, 49.033837403000057 ], [ -118.433957501999913, 49.034073584000097 ], [ -118.434180272999981, 49.034274092000032 ], [ -118.434481434999952, 49.034424907000115 ], [ -118.434826701999924, 49.034514499000089 ], [ -118.43526860299994, 49.034500411000053 ], [ -118.43545529799999, 49.034454337000071 ], [ -118.435656391999913, 49.034404705000135 ], [ -118.435659292999944, 49.034403999000077 ], [ -118.435726660999975, 49.034387574000071 ], [ -118.435748431999983, 49.034382263000083 ], [ -118.436109286999965, 49.034775406000051 ], [ -118.436553888999967, 49.035480390000039 ], [ -118.436756020999937, 49.036287903000058 ], [ -118.43682459899992, 49.037762005000069 ], [ -118.436640203999943, 49.038501192000062 ], [ -118.43633167899999, 49.038760601000043 ], [ -118.436146240999904, 49.038747493000095 ], [ -118.43615088199995, 49.038908649000057 ], [ -118.436026640999899, 49.038990610000077 ], [ -118.43535117, 49.038999015000051 ], [ -118.434511796999942, 49.03900945400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "153.6", "sL_BldgLoss": "153.6", "sL_StrLoss": "153.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080E9BCDF0B9D5DC0C62C41674E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.454942984999931, 49.049868824000015 ], [ -118.454941522, 49.049818666000121 ], [ -118.454621481999965, 49.049822701000032 ], [ -118.454120651, 49.049829014000068 ], [ -118.454119261999935, 49.049781428000124 ], [ -118.454112781999939, 49.049559234000064 ], [ -118.452060612999915, 49.049585077000117 ], [ -118.45203704199993, 49.048775739000092 ], [ -118.454499601999913, 49.048744724000038 ], [ -118.454507473999939, 49.049014503000137 ], [ -118.455719504999948, 49.048999218000091 ], [ -118.455508936999962, 49.049457374000099 ], [ -118.455289323999978, 49.049935157000029 ], [ -118.455207957999932, 49.050085184000103 ], [ -118.454949394999971, 49.050088445000029 ], [ -118.454942984999931, 49.049868824000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "59.4", "sL_BldgLoss": "59.4", "sL_StrLoss": "59.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1ACEEA2399C5DC0AE149F8E89864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.440591810999948, 49.050538469000038 ], [ -118.441823139999968, 49.050523089000066 ], [ -118.441846549, 49.051332430000087 ], [ -118.441436099999962, 49.051337558000014 ], [ -118.4414439, 49.051607339000093 ], [ -118.440212541999955, 49.05162271500005 ], [ -118.44018916, 49.050813372000043 ], [ -118.440599606, 49.050808249000042 ], [ -118.440591810999948, 49.050538469000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.4", "sL_BldgLoss": "31.4", "sL_StrLoss": "31.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004EBC7F0305985DC0F29860BC8F814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.374655761, 49.013597882000063 ], [ -118.375132894999979, 49.010687907000097 ], [ -118.37576241799999, 49.011086499000037 ], [ -118.375890892999934, 49.011283110000079 ], [ -118.375765698999928, 49.012749998000047 ], [ -118.375399397999942, 49.013331097000041 ], [ -118.375198898999955, 49.013477793000106 ], [ -118.374655761, 49.013597882000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "67.6", "sL_BldgLoss": "67.6", "sL_StrLoss": "67.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0577D85F79C5DC02D580D36B38A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.451849568999933, 49.086363849000122 ], [ -118.45199759599997, 49.085453321000045 ], [ -118.451353407999989, 49.085407928000066 ], [ -118.451935488999979, 49.081827418000081 ], [ -118.454680595999903, 49.082020829000065 ], [ -118.454485421999919, 49.082076906000026 ], [ -118.454282397999947, 49.082200202000124 ], [ -118.454198486999957, 49.082305924000053 ], [ -118.454135405999949, 49.082385406000149 ], [ -118.45260781599994, 49.085523606000045 ], [ -118.45234290599997, 49.085867104000094 ], [ -118.451849568999933, 49.086363849000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "160.7", "sL_BldgLoss": "160.7", "sL_StrLoss": "160.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023978B3A6B975DC080B0F8F227834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.36396660599999, 49.022706066000111 ], [ -118.368928940999922, 49.023060230000034 ], [ -118.368367061999919, 49.026483240000076 ], [ -118.368341225999956, 49.026640617000055 ], [ -118.362910296999971, 49.02625299700005 ], [ -118.363498425, 49.022672639000078 ], [ -118.36396660599999, 49.022706066000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "159.5", "sL_BldgLoss": "159.5", "sL_StrLoss": "159.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D145BF8D7F965DC0FBD8D1F637814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.34923171199992, 49.007619471000083 ], [ -118.35466035899999, 49.00800779300009 ], [ -118.35429702499998, 49.010217908000065 ], [ -118.354051006999924, 49.010327392000086 ], [ -118.353154401, 49.011002492000102 ], [ -118.352796991999966, 49.011456794000075 ], [ -118.352777447999983, 49.011495628 ], [ -118.348642679999941, 49.011199835000106 ], [ -118.34923171199992, 49.007619471000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "130.5", "sL_BldgLoss": "130.5", "sL_StrLoss": "130.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B141F4DE37975DC0174958A70C814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.360082345999956, 49.010049259000041 ], [ -118.360670484999929, 49.006468826000059 ], [ -118.366099094, 49.00685657000011 ], [ -118.365823708999983, 49.008534295000054 ], [ -118.36572421599999, 49.008578491000087 ], [ -118.365490011999952, 49.008545806000022 ], [ -118.36440899099992, 49.009052800000092 ], [ -118.363008895999911, 49.009789106000099 ], [ -118.362514944999972, 49.010223044000021 ], [ -118.360082345999956, 49.010049259000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8799750", "BldgCostT": "5805000", "sL_LossRatio": "1", "sL_AssetLoss": "655", "sL_BldgLoss": "655", "sL_StrLoss": "655", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2BE1E9F92985DC0C05C49FACD834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.383326762999943, 49.032966453000057 ], [ -118.383748300999954, 49.030393767000085 ], [ -118.383738413999964, 49.030393063000169 ], [ -118.383710282999985, 49.030564759000114 ], [ -118.378278769999895, 49.030177919000018 ], [ -118.378445802999963, 49.02915914700003 ], [ -118.378865768999916, 49.026597499000061 ], [ -118.380887743999949, 49.026741540000046 ], [ -118.380915882999886, 49.026569844000086 ], [ -118.386346997, 49.026956552000044 ], [ -118.38602468199997, 49.02892452600009 ], [ -118.385925632999928, 49.029529263000043 ], [ -118.389344874999949, 49.029772575000017 ], [ -118.388758641999914, 49.033353035000033 ], [ -118.383326762999943, 49.032966453000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99329781", "BldgCostT": "62908603", "sL_LossRatio": "0.998418680956763", "sL_AssetLoss": "5198.192", "sL_BldgLoss": "5189.972", "sL_StrLoss": "5187", "sL_NStrLoss": "2.972", "sL_ContLoss": "8.22", "geom_point": "0101000020E6100000AF03F76E399B5DC012C361AB7C814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.41392902099993, 49.022625500000068 ], [ -118.413030092000028, 49.022285101000065 ], [ -118.412468389999972, 49.021797992000124 ], [ -118.412539411999944, 49.021365107000086 ], [ -118.412885220999897, 49.021027502000067 ], [ -118.413066915999977, 49.020665799 ], [ -118.413041187999937, 49.020244209000062 ], [ -118.411050381999956, 49.018559392000064 ], [ -118.410332211999958, 49.017820208000039 ], [ -118.409172396999963, 49.015531508000102 ], [ -118.408881102999914, 49.014402108000112 ], [ -118.408950190000013, 49.012926603000075 ], [ -118.409121016999961, 49.012717295000094 ], [ -118.409219817999912, 49.012301400000084 ], [ -118.409945811999989, 49.011384203 ], [ -118.410773701999958, 49.010726190000092 ], [ -118.412372404999957, 49.009663806000084 ], [ -118.413654690999934, 49.009108306000087 ], [ -118.413808315999944, 49.008961339000088 ], [ -118.415112601999937, 49.009053866000038 ], [ -118.415366708999926, 49.007495663000071 ], [ -118.416164376999959, 49.007552242000038 ], [ -118.416465382999959, 49.005706117000109 ], [ -118.416552678999949, 49.005170682000021 ], [ -118.416893812999945, 49.005194877000129 ], [ -118.417402703, 49.002073192000111 ], [ -118.422831268999971, 49.002458070000095 ], [ -118.422821419999977, 49.002518538000075 ], [ -118.423266161999919, 49.002550058000104 ], [ -118.422832033, 49.005215212000095 ], [ -118.424656162999923, 49.005344469000121 ], [ -118.424668328999957, 49.005269766000026 ], [ -118.425724206999959, 49.005344570000076 ], [ -118.425739884999956, 49.005248289000072 ], [ -118.426901401999942, 49.005330566000062 ], [ -118.427238824999918, 49.003258017000036 ], [ -118.432667609999925, 49.003642397000043 ], [ -118.432634906999951, 49.00384342200006 ], [ -118.433525797999948, 49.003906474000104 ], [ -118.433408268, 49.004628998 ], [ -118.433560542999885, 49.00463977400004 ], [ -118.433506078, 49.004974601000136 ], [ -118.433645562999956, 49.004984472000032 ], [ -118.433568995999906, 49.005455175000122 ], [ -118.4337229899999, 49.005466072000011 ], [ -118.433710666999943, 49.005541834000077 ], [ -118.434271133999985, 49.005581494000104 ], [ -118.434315817999945, 49.005306784000048 ], [ -118.436959071, 49.005493787 ], [ -118.437022911999932, 49.005101144000058 ], [ -118.437707202999945, 49.005149545000037 ], [ -118.437730188999979, 49.005008160000031 ], [ -118.439278573999957, 49.005117662 ], [ -118.43935073699997, 49.004673695000143 ], [ -118.440620246999941, 49.004763459000024 ], [ -118.440912357999963, 49.002965924000115 ], [ -118.440970992999908, 49.002970070000053 ], [ -118.441136129999961, 49.001953811000128 ], [ -118.440876331999903, 49.001935442000075 ], [ -118.441166502999977, 49.000149672000113 ], [ -118.444097732999978, 49.000193765000105 ], [ -118.444347007999937, 49.000494413000084 ], [ -118.444346922999941, 49.000503405000117 ], [ -118.444337296999947, 49.001937020000128 ], [ -118.444311315, 49.005806041000035 ], [ -118.444300514999981, 49.00741560400008 ], [ -118.442749493999898, 49.007412810000048 ], [ -118.442740313999963, 49.012649499000091 ], [ -118.442659085999978, 49.012836687000089 ], [ -118.442455395999971, 49.012991606000099 ], [ -118.441854192999969, 49.013184603000056 ], [ -118.441694187999929, 49.013273690000062 ], [ -118.441610727999901, 49.013407301000086 ], [ -118.441606996999923, 49.014722713000012 ], [ -118.438732054999917, 49.014712306000078 ], [ -118.436475189999967, 49.014704083000055 ], [ -118.434136640999938, 49.014695535000044 ], [ -118.432494931999926, 49.01468948400003 ], [ -118.430617277999929, 49.014682562000054 ], [ -118.430603607999956, 49.014682505000117 ], [ -118.429115996999926, 49.01468108500007 ], [ -118.427256413999984, 49.01467928200006 ], [ -118.419685913999899, 49.014671587000116 ], [ -118.41968589199999, 49.014680616000049 ], [ -118.419686790999947, 49.015889728000047 ], [ -118.419687011999926, 49.016132702000057 ], [ -118.419687559999929, 49.01690309100006 ], [ -118.423093896999902, 49.016963717000053 ], [ -118.423089115, 49.017820397000058 ], [ -118.423044697999941, 49.017882405000051 ], [ -118.422938284999987, 49.017902995000021 ], [ -118.422919433999965, 49.017902986000117 ], [ -118.421935739, 49.017902050000025 ], [ -118.42207358099995, 49.018683641000031 ], [ -118.422202843999969, 49.019290604000055 ], [ -118.423155387999927, 49.019151271000112 ], [ -118.423189523999895, 49.019207590000079 ], [ -118.423306826999976, 49.019401152000057 ], [ -118.425268984999931, 49.020201684000057 ], [ -118.425269604999983, 49.020215781000054 ], [ -118.425305495999936, 49.020876031000071 ], [ -118.427261107999982, 49.020890382000069 ], [ -118.427262400999965, 49.02089039800007 ], [ -118.427257343999926, 49.020998714000058 ], [ -118.427224412000029, 49.021749749000058 ], [ -118.427220847999962, 49.021813782000109 ], [ -118.42721606799995, 49.021895708000095 ], [ -118.427158209999959, 49.02261303600006 ], [ -118.427049438999944, 49.023962521000044 ], [ -118.424374521999937, 49.023722354000078 ], [ -118.422304584999921, 49.023318424000088 ], [ -118.422140296999942, 49.023245011000043 ], [ -118.421092487999914, 49.02295160700011 ], [ -118.419955503999944, 49.022859966000169 ], [ -118.419683125999896, 49.022806804000076 ], [ -118.419678196999911, 49.022806274000104 ], [ -118.419647253999983, 49.022970936000029 ], [ -118.419263617999917, 49.023126794000113 ], [ -118.417983920999959, 49.023321906000092 ], [ -118.416656379999949, 49.02329339100001 ], [ -118.41392902099993, 49.022625500000068 ] ], [ [ -118.426244549999964, 49.022649343000083 ], [ -118.426224193999957, 49.021937178000066 ], [ -118.425978398, 49.021919774000068 ], [ -118.42595033899994, 49.022092031000057 ], [ -118.425629106999949, 49.022069284000068 ], [ -118.425562241999984, 49.022479739000048 ], [ -118.423638189999977, 49.022343471000035 ], [ -118.423605761000019, 49.022542483000066 ], [ -118.422006117999985, 49.02242916400008 ], [ -118.421975189999955, 49.022618918000092 ], [ -118.423952411999963, 49.022758982000013 ], [ -118.423977957999924, 49.022602204000087 ], [ -118.425425407999938, 49.022704716000099 ], [ -118.425424115999974, 49.022659483000069 ], [ -118.426244549999964, 49.022649343000083 ] ], [ [ -118.438204569999968, 49.012532861000118 ], [ -118.438356995999982, 49.011595384000088 ], [ -118.438157017999956, 49.011581242 ], [ -118.438456618999979, 49.009738511000123 ], [ -118.437061403999934, 49.00963984100008 ], [ -118.436976085999945, 49.010164520000103 ], [ -118.433649517999953, 49.009929189000054 ], [ -118.433561059999946, 49.010472920000026 ], [ -118.433615717999928, 49.010476787000087 ], [ -118.433565938999948, 49.010782768000105 ], [ -118.434324915999966, 49.010836468999983 ], [ -118.43400282099995, 49.012816402000055 ], [ -118.434450440999939, 49.012848070000061 ], [ -118.434189106999895, 49.014454480000062 ], [ -118.43426702, 49.014453511000049 ], [ -118.434593534, 49.01244641200001 ], [ -118.43554013699999, 49.012513375000069 ], [ -118.435556295000012, 49.012414034000102 ], [ -118.436527745999939, 49.012482746000032 ], [ -118.43653875499993, 49.012415055000069 ], [ -118.438204569999968, 49.012532861000118 ] ], [ [ -118.42675045699994, 49.012314815000117 ], [ -118.427000881999902, 49.010776924000062 ], [ -118.426773581999953, 49.010760825000069 ], [ -118.42696126099996, 49.009608227000058 ], [ -118.42656444899994, 49.009580122000074 ], [ -118.426638232999963, 49.009127003000081 ], [ -118.426621575999889, 49.009125823000076 ], [ -118.426602698999901, 49.009241756000073 ], [ -118.424731097999924, 49.009109181000042 ], [ -118.424554159999914, 49.010195499000098 ], [ -118.421779800999929, 49.009998917000104 ], [ -118.421427797999982, 49.012159121000117 ], [ -118.422037431999954, 49.012202325000025 ], [ -118.422050483999925, 49.012122228000095 ], [ -118.424718304999942, 49.012311247000063 ], [ -118.424726263999901, 49.012262388000117 ], [ -118.425825440000011, 49.012340247000097 ], [ -118.425835313999983, 49.012279614000107 ], [ -118.426515718999923, 49.012327803000062 ], [ -118.426520485999973, 49.012298529000034 ], [ -118.42675045699994, 49.012314815000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.4", "sL_BldgLoss": "31.4", "sL_StrLoss": "31.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB3A90B338955DC0287235708F824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.330948876999912, 49.019200107000117 ], [ -118.332179491999938, 49.019185904000018 ], [ -118.332222701999939, 49.020804671000072 ], [ -118.330992047999985, 49.020818875000032 ], [ -118.330948876999912, 49.019200107000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.3", "sL_BldgLoss": "43.3", "sL_StrLoss": "43.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8F5AB291E9D5DC0F259434E048A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.45420051499994, 49.076806498000025 ], [ -118.454533524999988, 49.076821805000172 ], [ -118.45481729, 49.076919700000076 ], [ -118.455075375999954, 49.077049186000089 ], [ -118.455330412999956, 49.077248288000128 ], [ -118.456515985999943, 49.078524214000019 ], [ -118.456733398999944, 49.078811094000066 ], [ -118.456861206999974, 49.079082702000107 ], [ -118.456893197999975, 49.079333905000091 ], [ -118.456891901999953, 49.079356351000087 ], [ -118.453495588999971, 49.079117104000034 ], [ -118.453859924999961, 49.076875090000058 ], [ -118.45420051499994, 49.076806498000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "32.8", "sL_BldgLoss": "32.8", "sL_StrLoss": "32.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000183BA77A6E9C5DC091DE68AE708D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.442982707999946, 49.106435295000047 ], [ -118.443417307999937, 49.103766293000071 ], [ -118.446385178999961, 49.10397552800007 ], [ -118.446335878999946, 49.104015601000093 ], [ -118.445328708999952, 49.104692402000062 ], [ -118.444996080999942, 49.105071002000031 ], [ -118.444708806999955, 49.105559491000122 ], [ -118.444664011000015, 49.105737536000078 ], [ -118.444630905999986, 49.105869091000045 ], [ -118.444646620999947, 49.105983405000124 ], [ -118.444717194999924, 49.106212406000097 ], [ -118.444731738999934, 49.106259628000103 ], [ -118.444795197999952, 49.106465507000053 ], [ -118.444628123999976, 49.106519806000058 ], [ -118.44374051299999, 49.106377596000058 ], [ -118.443255791999931, 49.106396789000073 ], [ -118.442982707999946, 49.106435295000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7257917", "BldgCostT": "4741667", "sL_LossRatio": "1", "sL_AssetLoss": "567.2", "sL_BldgLoss": "567.2", "sL_StrLoss": "567.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000238127A9639C5DC0FD4AE7C3B3894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.442856309999968, 49.07347648700005 ], [ -118.448293402, 49.073860034000063 ], [ -118.447711140999957, 49.077440569000032 ], [ -118.44445740499998, 49.077211077000101 ], [ -118.44430943199994, 49.07812054300004 ], [ -118.438871876999912, 49.077736797000085 ], [ -118.439454819999966, 49.074156312000099 ], [ -118.442708316999969, 49.074385957000111 ], [ -118.442856309999968, 49.07347648700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "129.3", "sL_BldgLoss": "129.3", "sL_StrLoss": "129.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005190D07DD6955DC0E5C3FD91B3804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.338797268999954, 49.003495423000039 ], [ -118.344225348999956, 49.003884276000022 ], [ -118.343635981999981, 49.007464633000062 ], [ -118.338207488999956, 49.007075753000102 ], [ -118.338797268999954, 49.003495423000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "88.9", "sL_BldgLoss": "88.9", "sL_StrLoss": "88.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000035FA24B9F49B5DC0E09B6C24858D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.43599160399999, 49.106791590000036 ], [ -118.434458408999944, 49.106642583000074 ], [ -118.43421030799999, 49.106687515000033 ], [ -118.433897100999971, 49.106811195000077 ], [ -118.433887039999917, 49.10681254900004 ], [ -118.434310672, 49.104214088000099 ], [ -118.439751279999896, 49.104598050000043 ], [ -118.439519498999942, 49.106020801000049 ], [ -118.440726244, 49.106105926000076 ], [ -118.440680689999937, 49.106385589000098 ], [ -118.440180900999977, 49.106353806000115 ], [ -118.439197583999956, 49.106367709000075 ], [ -118.438128077, 49.106328491000099 ], [ -118.438092717, 49.10634042500002 ], [ -118.437950491999956, 49.106388399000153 ], [ -118.437850288999968, 49.106488207000091 ], [ -118.437822121999915, 49.106602005000092 ], [ -118.437864496999978, 49.106891099000102 ], [ -118.438056221999958, 49.107251400000102 ], [ -118.438038912999943, 49.107357 ], [ -118.437923000999987, 49.107443898000042 ], [ -118.437716594999983, 49.107460997000011 ], [ -118.437436908999985, 49.107386999000028 ], [ -118.436681099999959, 49.107000061000093 ], [ -118.436476902999971, 49.106895488000056 ], [ -118.43599160399999, 49.106791590000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13472833", "BldgCostT": "8818333", "sL_LossRatio": "0.999358043131317", "sL_AssetLoss": "781.984", "sL_BldgLoss": "781.482", "sL_StrLoss": "781.3", "sL_NStrLoss": "0.182", "sL_ContLoss": "0.502", "geom_point": "0101000020E61000009921762218945DC027DF2A5711814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.315078679999914, 49.010381599000048 ], [ -118.312830699999921, 49.009669507000076 ], [ -118.311442518999939, 49.009406005000102 ], [ -118.310236880999966, 49.009303397000075 ], [ -118.308473198999963, 49.009369009000096 ], [ -118.307733409999955, 49.009277803000046 ], [ -118.305697682999977, 49.008266602000027 ], [ -118.305477512999957, 49.008232408 ], [ -118.304806101999972, 49.007691206000054 ], [ -118.304796577, 49.007305296 ], [ -118.304680789999964, 49.007090211000083 ], [ -118.304291093999964, 49.006798290000084 ], [ -118.30316405799995, 49.006395188000063 ], [ -118.30329787, 49.00558663000006 ], [ -118.304264471999929, 49.005656214000098 ], [ -118.304438372, 49.004605252 ], [ -118.309866294999935, 49.00499584200012 ], [ -118.309682117999955, 49.006109695000113 ], [ -118.314556529999919, 49.006460214000114 ], [ -118.314549057999926, 49.006505432000075 ], [ -118.315424906999908, 49.00656839000002 ], [ -118.315386090999965, 49.006803310000109 ], [ -118.317067372999958, 49.006924144000067 ], [ -118.316844305999908, 49.008274401000065 ], [ -118.318021933999916, 49.008359021000039 ], [ -118.31799817699999, 49.008502841000123 ], [ -118.319058111999979, 49.008578993000057 ], [ -118.319042485999915, 49.008673606000087 ], [ -118.32024738299998, 49.008760160000108 ], [ -118.320228000999975, 49.008877527000031 ], [ -118.321603550999981, 49.008976323000077 ], [ -118.321586380999975, 49.009080312 ], [ -118.322615227999947, 49.009154195000121 ], [ -118.322600578999982, 49.00924292800007 ], [ -118.323525906000015, 49.009309369000093 ], [ -118.323517648999953, 49.00935940199999 ], [ -118.326873311, 49.009600276000114 ], [ -118.326644373999926, 49.010987767000195 ], [ -118.327279237999917, 49.011033327000106 ], [ -118.326505698999981, 49.011221810000052 ], [ -118.325263313, 49.011290198000083 ], [ -118.323944105999942, 49.011566492000085 ], [ -118.323384914000016, 49.011590703000124 ], [ -118.321959593999964, 49.01150808800007 ], [ -118.318468315999979, 49.010855791000047 ], [ -118.316370698999904, 49.010636488000152 ], [ -118.315078679999914, 49.010381599000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "27.8", "sL_BldgLoss": "27.8", "sL_StrLoss": "27.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015D88CA1169B5DC08A187E89DB834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.424141059999968, 49.029372745000089 ], [ -118.42447358099993, 49.029379328000111 ], [ -118.424487745999954, 49.029860023000076 ], [ -118.424520888, 49.03098144700003 ], [ -118.422013383999982, 49.030803860000098 ], [ -118.421863422999976, 49.030793237000076 ], [ -118.421881280999969, 49.030683688000117 ], [ -118.421992468999932, 49.030001613000074 ], [ -118.422101749999939, 49.029331206000094 ], [ -118.422739521999972, 49.029345043000092 ], [ -118.424141059999968, 49.029372745000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "126", "sL_BldgLoss": "126", "sL_StrLoss": "126", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000091D6B54947975DC0C681DB03C2814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.360378534999924, 49.015013355000058 ], [ -118.360680832999947, 49.01317326 ], [ -118.361255492999987, 49.013219988000053 ], [ -118.362763403999963, 49.012895284000095 ], [ -118.363668199999964, 49.012408190000052 ], [ -118.36384052299999, 49.012235902000057 ], [ -118.364000821000019, 49.011649663000092 ], [ -118.366395902999969, 49.011820675000124 ], [ -118.365808134999952, 49.015401109000024 ], [ -118.360378534999924, 49.015013355000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12849160", "BldgCostT": "7885742", "sL_LossRatio": "1", "sL_AssetLoss": "350.6", "sL_BldgLoss": "350.6", "sL_StrLoss": "350.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000559354647C945DC067DDF58887814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.325790182, 49.014549086000031 ], [ -118.326019162999941, 49.013161605000086 ], [ -118.324941383999928, 49.013084249000073 ], [ -118.324921183999933, 49.013206637000081 ], [ -118.319492179999955, 49.012816814000082 ], [ -118.31950670099998, 49.012728893000059 ], [ -118.318459755000021, 49.0126536860001 ], [ -118.318473712999946, 49.012569188000079 ], [ -118.317505930999957, 49.012499658000145 ], [ -118.317520590999919, 49.012410926000022 ], [ -118.316595209999932, 49.012344433000067 ], [ -118.316612390999964, 49.012240446000071 ], [ -118.315583487999945, 49.012166506000078 ], [ -118.315602882999897, 49.012049140000023 ], [ -118.314227254999963, 49.011950268000099 ], [ -118.314242891999967, 49.011855657000112 ], [ -118.313037926999982, 49.011769036000032 ], [ -118.3130617, 49.011625218000113 ], [ -118.312001704999943, 49.011549007000056 ], [ -118.312025874999946, 49.011402813000096 ], [ -118.310765376999939, 49.011312173000192 ], [ -118.310776264999902, 49.011246322 ], [ -118.309991058999955, 49.011189852 ], [ -118.310015100999962, 49.011044469000062 ], [ -118.309167844999976, 49.010983529000079 ], [ -118.309226996999939, 49.010625862000076 ], [ -118.305829669, 49.010381437000078 ], [ -118.30584667, 49.010278680000056 ], [ -118.304665941999986, 49.010193704000081 ], [ -118.304731819999972, 49.009795597000064 ], [ -118.304512362999958, 49.009779802000139 ], [ -118.3045783699999, 49.009380918 ], [ -118.303410755999948, 49.0092968720001 ], [ -118.303423731999942, 49.009218470000107 ], [ -118.302705341999982, 49.009166752000127 ], [ -118.30275849600001, 49.008845616000073 ], [ -118.302954067999977, 49.007663991000044 ], [ -118.302974477999939, 49.00767699200005 ], [ -118.303953692, 49.008528708000028 ], [ -118.304953188999974, 49.008598507000066 ], [ -118.305532508999974, 49.008763705000092 ], [ -118.306366403999959, 49.0093119900001 ], [ -118.30770598699999, 49.009773393000017 ], [ -118.310073099999983, 49.009863199000051 ], [ -118.311253022999907, 49.009994205000048 ], [ -118.312807206999963, 49.010317488000084 ], [ -118.313826196999955, 49.010639291000111 ], [ -118.315495695999985, 49.011159186000071 ], [ -118.317085289999923, 49.011294494000026 ], [ -118.32098779599994, 49.011978113000048 ], [ -118.322099415999929, 49.012146190000102 ], [ -118.323866283999934, 49.012224504000066 ], [ -118.324699506999977, 49.01224158400003 ], [ -118.326281810999944, 49.012016599000106 ], [ -118.327347108999916, 49.011995202000044 ], [ -118.327967997999963, 49.011691790000022 ], [ -118.330909839999961, 49.011293793000085 ], [ -118.331809855999978, 49.011358342000079 ], [ -118.331621674999923, 49.012499523 ], [ -118.331219440999959, 49.014938590000092 ], [ -118.325790182, 49.014549086000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32826052", "BldgCostT": "20908745", "sL_LossRatio": "0.994007969054797", "sL_AssetLoss": "1443.584", "sL_BldgLoss": "1434.934", "sL_StrLoss": "1431.8", "sL_NStrLoss": "3.134", "sL_ContLoss": "8.65", "geom_point": "0101000020E6100000B27AC9F7F3985DC021BE9F5C4B814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.384363663999935, 49.017998120000101 ], [ -118.384577250999953, 49.016693988000064 ], [ -118.383114111999987, 49.016589788000054 ], [ -118.383361483999934, 49.01507955800006 ], [ -118.382685096999921, 49.015031380000067 ], [ -118.382732378999933, 49.01474273200003 ], [ -118.381803389999945, 49.014676555000044 ], [ -118.38192752799992, 49.013918797000088 ], [ -118.380144992999988, 49.013791796000064 ], [ -118.379815051, 49.01580529200006 ], [ -118.374385287999985, 49.015418246000117 ], [ -118.374527815999954, 49.014549095000113 ], [ -118.376150616999965, 49.013771209000076 ], [ -118.376445505999939, 49.013551896000145 ], [ -118.376959893999981, 49.012843987000082 ], [ -118.377188603999969, 49.011753095000117 ], [ -118.37737619699999, 49.011606412000042 ], [ -118.377374482999983, 49.011085103000035 ], [ -118.377196118999962, 49.011033902000044 ], [ -118.377276506999962, 49.010484105000081 ], [ -118.376844389999974, 49.010209194000041 ], [ -118.37623071099992, 49.009810437000112 ], [ -118.376284763999976, 49.009480693000036 ], [ -118.376666870999969, 49.007149588000082 ], [ -118.382095690999932, 49.007536523000155 ], [ -118.381885679999954, 49.008818671000078 ], [ -118.38513518399999, 49.009050142000035 ], [ -118.38496453799999, 49.010092347000096 ], [ -118.385152650999927, 49.010105744000093 ], [ -118.38511193899997, 49.010354388000053 ], [ -118.385248452999946, 49.010364110000047 ], [ -118.385308054999925, 49.010000092000034 ], [ -118.390737277999975, 49.010386588000088 ], [ -118.390632607999947, 49.011026313000059 ], [ -118.390664427999965, 49.011028578000023 ], [ -118.390742696999936, 49.010550216000148 ], [ -118.392944583999963, 49.010706883000069 ], [ -118.393219469999949, 49.009026267000131 ], [ -118.393446071999946, 49.009042387000065 ], [ -118.393437817999953, 49.008746662000071 ], [ -118.394258034999922, 49.008736752000047 ], [ -118.394235431999931, 49.007927387000059 ], [ -118.395224399999947, 49.007915431000079 ], [ -118.395626252999946, 49.005457611000082 ], [ -118.397604714999972, 49.005598309000064 ], [ -118.39774710199994, 49.004727156000051 ], [ -118.400240717999935, 49.004904436000068 ], [ -118.400281796999963, 49.00465301300013 ], [ -118.404030093999893, 49.004919381000079 ], [ -118.404160259999912, 49.004122299000137 ], [ -118.409588954999947, 49.004507845000091 ], [ -118.409329756999909, 49.006096165000038 ], [ -118.410250538999932, 49.006161531000018 ], [ -118.41020611499999, 49.006433770000029 ], [ -118.410189443999911, 49.006535935000059 ], [ -118.409329395000015, 49.007001899000066 ], [ -118.409169605999949, 49.00720130200007 ], [ -118.408890601999971, 49.007439212000079 ], [ -118.407554308999963, 49.00809430900005 ], [ -118.404907698999963, 49.008773597000079 ], [ -118.404061894999984, 49.008891790000085 ], [ -118.402708799999971, 49.008863395000134 ], [ -118.401215803999932, 49.008765101000073 ], [ -118.400856291999943, 49.008644000000103 ], [ -118.400013695000013, 49.008320691000051 ], [ -118.398304707999941, 49.007865011000071 ], [ -118.397126503999985, 49.007789498000072 ], [ -118.396284204999958, 49.008005995000076 ], [ -118.395758505999979, 49.008300803000097 ], [ -118.395331400999964, 49.008665391000136 ], [ -118.393115302999888, 49.011093706000032 ], [ -118.392087777999961, 49.012006592000048 ], [ -118.39074311499995, 49.012822699000054 ], [ -118.389609295999918, 49.013331092000051 ], [ -118.388547045999971, 49.013974994000129 ], [ -118.388035106999951, 49.014285304000083 ], [ -118.387075098999929, 49.015152712000031 ], [ -118.386013300999963, 49.016297712000082 ], [ -118.385616190999968, 49.016824695000018 ], [ -118.385085208999939, 49.017884308000099 ], [ -118.385072291999947, 49.01804857900003 ], [ -118.384363663999935, 49.017998120000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "62.8", "sL_BldgLoss": "62.8", "sL_StrLoss": "62.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6BA809799965DC0A5204FFD49824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.354345028999916, 49.019467590000033 ], [ -118.354337705999981, 49.019197799000068 ], [ -118.353927506999952, 49.019202614000072 ], [ -118.35392151799999, 49.018981884000027 ], [ -118.353920186999943, 49.01893282200016 ], [ -118.353828949000032, 49.018933892000064 ], [ -118.353509987999942, 49.018937634000103 ], [ -118.353505335999969, 49.018766116000108 ], [ -118.353502669999941, 49.018667842000113 ], [ -118.353319919999976, 49.018669986000099 ], [ -118.353092473999979, 49.018672653000067 ], [ -118.35308915899999, 49.018550346000012 ], [ -118.353085160999939, 49.01840286200008 ], [ -118.352810897999959, 49.018406077000115 ], [ -118.35267496499992, 49.018407671000091 ], [ -118.352672983999952, 49.01833457400005 ], [ -118.352667654999948, 49.018137879000079 ], [ -118.352301887999886, 49.018142168000089 ], [ -118.351847266999982, 49.018147495000115 ], [ -118.351841583999956, 49.017937655000061 ], [ -118.351839960999897, 49.017877702000099 ], [ -118.351702053999944, 49.017879318000034 ], [ -118.351019578999924, 49.017887312000035 ], [ -118.351012752999935, 49.017635147000128 ], [ -118.351012275999935, 49.01761751900009 ], [ -118.350960255999937, 49.017618129000049 ], [ -118.350191898999952, 49.017627123000047 ], [ -118.350186254, 49.017418497000129 ], [ -118.350170002999945, 49.01681774500004 ], [ -118.350580184999956, 49.016812944000051 ], [ -118.350572884999963, 49.01654315200004 ], [ -118.352213602999925, 49.01652393300008 ], [ -118.352220912999968, 49.016793725000063 ], [ -118.353451457999952, 49.01677929600001 ], [ -118.353458772999929, 49.01704908900011 ], [ -118.353868957999978, 49.017044275000032 ], [ -118.353876274999948, 49.017314069000044 ], [ -118.354286461999962, 49.017309254000125 ], [ -118.354301101999908, 49.017848839000067 ], [ -118.354711292999937, 49.017844022000098 ], [ -118.35471861399995, 49.018113815000014 ], [ -118.355128806999943, 49.018108997000056 ], [ -118.355136132999959, 49.018378789000053 ], [ -118.355546326999942, 49.018373971000067 ], [ -118.35555365399992, 49.018643763000064 ], [ -118.355963849999966, 49.018638942000109 ], [ -118.355985840999949, 49.019448318000101 ], [ -118.354847025999987, 49.019461697000033 ], [ -118.354345028999916, 49.019467590000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "32.6", "sL_BldgLoss": "32.6", "sL_StrLoss": "32.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D6745B336975DC0E4C44FCAC1824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.363035115999978, 49.022143087000138 ], [ -118.363032958999923, 49.022064058000076 ], [ -118.362856465999954, 49.022066144000107 ], [ -118.362212512999946, 49.022073748000011 ], [ -118.362205938999949, 49.021832963000087 ], [ -118.362205146999955, 49.021803957000017 ], [ -118.362103769999962, 49.021805154000106 ], [ -118.36138470499999, 49.021813641000058 ], [ -118.361379093, 49.021607900000092 ], [ -118.361377344999951, 49.021543849000054 ], [ -118.361153487999928, 49.021546491000038 ], [ -118.360556905999914, 49.021553527000087 ], [ -118.360552251999962, 49.021382831000068 ], [ -118.360534840999918, 49.02074415400007 ], [ -118.361765477999938, 49.020729635000137 ], [ -118.361772840999947, 49.020999426000053 ], [ -118.363003481999968, 49.020984894000023 ], [ -118.363010851999945, 49.021254685000088 ], [ -118.364651715999969, 49.021235288000057 ], [ -118.364681227999966, 49.022314452000096 ], [ -118.363379850999962, 49.022329837000044 ], [ -118.363040325999989, 49.022333849000091 ], [ -118.363035115999978, 49.022143087000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61645751", "BldgCostT": "40570001", "sL_LossRatio": "0.999848048421096", "sL_AssetLoss": "3303.684", "sL_BldgLoss": "3303.182", "sL_StrLoss": "3303", "sL_NStrLoss": "0.182", "sL_ContLoss": "0.502", "geom_point": "0101000020E6100000F18EDF1D91995DC0E3D9C44D36824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.38884613099998, 49.025526026000101 ], [ -118.388857136999945, 49.025458800000088 ], [ -118.386709572999933, 49.025305967000037 ], [ -118.386847071999938, 49.024466307000068 ], [ -118.384783569999968, 49.024319415000015 ], [ -118.384817493999947, 49.024112301000102 ], [ -118.385077989999942, 49.024001304000116 ], [ -118.386900906, 49.022702399000138 ], [ -118.387311792999952, 49.02221959000007 ], [ -118.387178196999969, 49.021826509000121 ], [ -118.386554380999925, 49.020820443000083 ], [ -118.386765644999926, 49.020835482000031 ], [ -118.387026901999945, 49.019239860000063 ], [ -118.387033206999902, 49.019240308000043 ], [ -118.38712427499999, 49.018684087000096 ], [ -118.386864406999948, 49.018665588000012 ], [ -118.386943614999936, 49.018181806000037 ], [ -118.386066039999903, 49.018119332000062 ], [ -118.386144691, 49.017583802000068 ], [ -118.386469401999975, 49.017012684000051 ], [ -118.387118006999984, 49.016195183000022 ], [ -118.388387114999972, 49.01510989300003 ], [ -118.389386474, 49.014435137000085 ], [ -118.390964511999954, 49.013369603000086 ], [ -118.391854022999937, 49.012908101000022 ], [ -118.393262774999968, 49.011973792000063 ], [ -118.394339215999963, 49.01083589600011 ], [ -118.395445316999954, 49.009284896000047 ], [ -118.395948990999969, 49.008748013000115 ], [ -118.396420305999953, 49.008498788000104 ], [ -118.396801095999962, 49.008413308000065 ], [ -118.39773269299999, 49.008438895000069 ], [ -118.39910770699997, 49.008755109000042 ], [ -118.400186114999912, 49.009163905000051 ], [ -118.401643200999956, 49.009380293000056 ], [ -118.403025185999951, 49.0094274040001 ], [ -118.405142299999937, 49.009310587000108 ], [ -118.407435511999893, 49.00874369100007 ], [ -118.408737311999985, 49.008305083000053 ], [ -118.410032001999966, 49.007500763000039 ], [ -118.409668044999933, 49.00973095800002 ], [ -118.41064329699995, 49.009800181000088 ], [ -118.409450616999919, 49.010860103 ], [ -118.408202987999971, 49.012674508 ], [ -118.40809348799999, 49.013151695000026 ], [ -118.40803950900002, 49.014601483000071 ], [ -118.408048161999929, 49.014629583000072 ], [ -118.408671503999983, 49.016653810000022 ], [ -118.409706589999956, 49.018422697000112 ], [ -118.410200511999932, 49.019000889000075 ], [ -118.410831612999971, 49.019523598000035 ], [ -118.41084611299999, 49.020000703000044 ], [ -118.411026406999937, 49.020628788000089 ], [ -118.41131671399998, 49.021199896000041 ], [ -118.411840297999944, 49.021805203000028 ], [ -118.412031893999981, 49.02230650500006 ], [ -118.412394088999946, 49.022572814000107 ], [ -118.413753279, 49.023195199000057 ], [ -118.414662895999982, 49.023425903000039 ], [ -118.416452599999971, 49.023863105000068 ], [ -118.417996883999933, 49.023817590000114 ], [ -118.419384980999922, 49.023548393000091 ], [ -118.419582328999979, 49.023601366000086 ], [ -118.419583568999897, 49.023738544000061 ], [ -118.419542562999965, 49.02486699600005 ], [ -118.419523696999988, 49.026674199000041 ], [ -118.418540977999925, 49.026604555000112 ], [ -118.41861621699999, 49.026143176000062 ], [ -118.417276571999963, 49.02604822200005 ], [ -118.41734530299999, 49.02562680900008 ], [ -118.416006360999972, 49.025531887000049 ], [ -118.416172108999916, 49.024515779000133 ], [ -118.412640026999924, 49.024265296000067 ], [ -118.412699281999934, 49.023902193000055 ], [ -118.412078833999914, 49.023858181000044 ], [ -118.412103651999956, 49.023706108000049 ], [ -118.410593100999961, 49.023598940000063 ], [ -118.410703237999911, 49.022924205000052 ], [ -118.40828955799999, 49.022752918000073 ], [ -118.408246433999949, 49.023017028000027 ], [ -118.406884724999941, 49.022920370000087 ], [ -118.406881671999926, 49.022939059000116 ], [ -118.401450854999908, 49.022553387000066 ], [ -118.401540585999967, 49.022004328000044 ], [ -118.401605490999913, 49.021607164000059 ], [ -118.399351752999976, 49.021447031000044 ], [ -118.39949009399993, 49.020600746000078 ], [ -118.397231673999954, 49.020440231000066 ], [ -118.397188743999919, 49.020702784000051 ], [ -118.394187433999917, 49.02048939400003 ], [ -118.393897275999933, 49.022263138000056 ], [ -118.394862908000022, 49.022331803000078 ], [ -118.394544130999989, 49.024280583000085 ], [ -118.394277189999954, 49.025912334000012 ], [ -118.392232072999917, 49.025766899000104 ], [ -118.388888459999947, 49.025529038000052 ], [ -118.38884613099998, 49.025526026000101 ] ], [ [ -118.405572649999897, 49.011838004000076 ], [ -118.405601158999929, 49.011663423000066 ], [ -118.405243949999914, 49.011638052000087 ], [ -118.40521057499997, 49.011842414000085 ], [ -118.405572649999897, 49.011838004000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4292000", "BldgCostT": "2960000", "sL_LossRatio": "1", "sL_AssetLoss": "298.1", "sL_BldgLoss": "298.1", "sL_StrLoss": "298.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D011C94D39C5DC01FBC7669C3814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.448355592999988, 49.012663209 ], [ -118.449012016999987, 49.012646094000054 ], [ -118.450394400999969, 49.01270870800009 ], [ -118.451863503999903, 49.012898086000092 ], [ -118.45394020199997, 49.012789911000056 ], [ -118.454639185999966, 49.01288109700004 ], [ -118.455180903000013, 49.013116094000047 ], [ -118.455859797999977, 49.013882302000113 ], [ -118.455806060999976, 49.014686284000099 ], [ -118.455560719999937, 49.014681301000032 ], [ -118.45554878499999, 49.014682427 ], [ -118.453999402999969, 49.014641246000117 ], [ -118.453029722999972, 49.014615441000025 ], [ -118.452948630999927, 49.01461326900003 ], [ -118.452588128999977, 49.014612715000077 ], [ -118.44801882199999, 49.014684899000031 ], [ -118.445240121999959, 49.014707153000046 ], [ -118.444723417999953, 49.014727333000096 ], [ -118.444723083000014, 49.014713999000108 ], [ -118.444818502999937, 49.014254001000076 ], [ -118.445041591999924, 49.013882291000122 ], [ -118.445789692999966, 49.013306893000049 ], [ -118.447144297999927, 49.012866796000033 ], [ -118.448355592999988, 49.012663209 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188655562", "BldgCostT": "125674531", "sL_LossRatio": "0.999682829605779", "sL_AssetLoss": "7894.81", "sL_BldgLoss": "7892.306", "sL_StrLoss": "7891.4", "sL_NStrLoss": "0.906", "sL_ContLoss": "2.504", "geom_point": "0101000020E61000006176BB03219E5DC0A2484ABC34814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.43219759599999, 49.020944491000094 ], [ -118.431832883999959, 49.020865299000093 ], [ -118.430570598999978, 49.020790487000085 ], [ -118.430588182999955, 49.01999031200004 ], [ -118.430589788999953, 49.019290933000022 ], [ -118.430590552999888, 49.018949042000088 ], [ -118.430592211999937, 49.018212182000084 ], [ -118.430592429999962, 49.018112921000046 ], [ -118.430593102999936, 49.017815049000063 ], [ -118.430593389999956, 49.017680802000108 ], [ -118.430599968999971, 49.01631663400012 ], [ -118.430599988999958, 49.016307605000058 ], [ -118.43389949499999, 49.016234557000075 ], [ -118.433867880999969, 49.016428871000102 ], [ -118.433168838999933, 49.016379413000067 ], [ -118.433167949, 49.016384886 ], [ -118.432629404999958, 49.016346781000067 ], [ -118.432629869999971, 49.016363007000038 ], [ -118.432021969999951, 49.016370554000119 ], [ -118.4320176, 49.016397412000117 ], [ -118.431695355999963, 49.016374609000088 ], [ -118.43153891899999, 49.01637654900005 ], [ -118.431498108999932, 49.016627300000053 ], [ -118.432825446999928, 49.016721224000079 ], [ -118.432573701999956, 49.018268207000091 ], [ -118.432667351999953, 49.018274833000142 ], [ -118.432600225999948, 49.018687315000072 ], [ -118.434054437999919, 49.018790196000111 ], [ -118.433971199999959, 49.019301773000052 ], [ -118.436053311999927, 49.019449042000119 ], [ -118.436035388999983, 49.019559222000055 ], [ -118.437645082999893, 49.019539173000062 ], [ -118.437637310999932, 49.019269390000105 ], [ -118.438304341999952, 49.019261076000127 ], [ -118.438519684, 49.017936817000084 ], [ -118.438912292999959, 49.017964573000057 ], [ -118.439108363999978, 49.016758691000071 ], [ -118.438687604999984, 49.016728944000121 ], [ -118.438747240999987, 49.016362175000076 ], [ -118.436216460999958, 49.016183218000144 ], [ -118.441604161999962, 49.016063648000099 ], [ -118.441606734999951, 49.01484732200003 ], [ -118.441606996999923, 49.014722713000012 ], [ -118.441610727999901, 49.013407301000086 ], [ -118.441694187999929, 49.013273690000062 ], [ -118.441854192999969, 49.013184603000056 ], [ -118.442455395999971, 49.012991606000099 ], [ -118.442659085999978, 49.012836687000089 ], [ -118.442740313999963, 49.012649499000091 ], [ -118.442749493999898, 49.007412810000048 ], [ -118.444300514999981, 49.00741560400008 ], [ -118.444311315, 49.005806041000035 ], [ -118.444337296999947, 49.001937020000128 ], [ -118.444346922999941, 49.000503405000117 ], [ -118.444347007999937, 49.000494413000084 ], [ -118.444097732999978, 49.000193765000105 ], [ -118.446649997999913, 49.000194877000091 ], [ -118.44651681299996, 49.00101513700006 ], [ -118.447113343999931, 49.001057280000076 ], [ -118.447253318999955, 49.000195131000105 ], [ -118.449648864000011, 49.000196106000068 ], [ -118.452746942999909, 49.000177659000038 ], [ -118.452485917999979, 49.001786549000037 ], [ -118.453142792999955, 49.00183291900008 ], [ -118.452944090999964, 49.003057696000027 ], [ -118.453305666999981, 49.003083218000093 ], [ -118.452929644999969, 49.005400897000037 ], [ -118.453656707999983, 49.005452214000044 ], [ -118.453591317999937, 49.005855273000037 ], [ -118.456988858999964, 49.006095007000042 ], [ -118.457043428999953, 49.005758497000045 ], [ -118.460457515999977, 49.005999289000023 ], [ -118.46047547699996, 49.00588847500007 ], [ -118.461244832999938, 49.005942722000057 ], [ -118.461269147999928, 49.00579269400005 ], [ -118.462178025999918, 49.00585676900004 ], [ -118.462205113, 49.005689614000111 ], [ -118.46263818199999, 49.00572014300014 ], [ -118.463077415999919, 49.003009326000104 ], [ -118.468506466999912, 49.003391892000081 ], [ -118.468178015999953, 49.005420471 ], [ -118.470589936999929, 49.005590340000055 ], [ -118.470533022999973, 49.005941941000088 ], [ -118.472037540999935, 49.006047875000014 ], [ -118.472165412999956, 49.00525773800004 ], [ -118.474157739999953, 49.005397986000041 ], [ -118.474147310999982, 49.005044760000033 ], [ -118.474557374999961, 49.005039519000071 ], [ -118.474541440999957, 49.00449996100015 ], [ -118.475771617999925, 49.004484230000109 ], [ -118.475795537999929, 49.005293566000084 ], [ -118.478018925999933, 49.00526510600011 ], [ -118.476531144999939, 49.005160433000107 ], [ -118.476533608999958, 49.005145203000069 ], [ -118.475925527999948, 49.005102416000106 ], [ -118.476106991999941, 49.003980512000062 ], [ -118.472325093999956, 49.003714319000025 ], [ -118.472904546999956, 49.000133239000078 ], [ -118.478333345, 49.00051531 ], [ -118.478151948999965, 49.001637225000096 ], [ -118.481933709999979, 49.00190321300007 ], [ -118.481931249999903, 49.001918443000122 ], [ -118.482539292999917, 49.001961197000078 ], [ -118.48215038, 49.004367791000107 ], [ -118.482516704999981, 49.004393547000092 ], [ -118.482538824999978, 49.004256669000036 ], [ -118.483863500999945, 49.004349795000081 ], [ -118.483867765999932, 49.004323400000047 ], [ -118.485914038999951, 49.004467221000127 ], [ -118.485990293, 49.003995146000065 ], [ -118.486876595999945, 49.004057428000088 ], [ -118.486942968999955, 49.003646468000113 ], [ -118.487421835999939, 49.003680114000154 ], [ -118.487490266999941, 49.003256379000078 ], [ -118.488476657999939, 49.003325680000025 ], [ -118.488686480999917, 49.002026201000085 ], [ -118.489621196999948, 49.002091864000072 ], [ -118.489857402999945, 49.000628724000116 ], [ -118.489987354999982, 49.000637852000075 ], [ -118.490088343999972, 49.000012255000094 ], [ -118.49832584899994, 49.000002149000082 ], [ -118.498335062999928, 49.000002138000099 ], [ -118.49808520199997, 49.00135921 ], [ -118.498275694999933, 49.002264995000097 ], [ -118.498688883999989, 49.002799096000032 ], [ -118.500201884999967, 49.005388299000082 ], [ -118.500914490999946, 49.007691202000039 ], [ -118.501023402999948, 49.008615487000021 ], [ -118.500967476999989, 49.010380097000038 ], [ -118.500894203999962, 49.0106346950001 ], [ -118.500815046999946, 49.010629144000113 ], [ -118.500712176999954, 49.011267166000088 ], [ -118.500510005999971, 49.011969603000075 ], [ -118.499335090999963, 49.013388101000018 ], [ -118.498907208999981, 49.013700001000096 ], [ -118.49798889600001, 49.014098789000109 ], [ -118.496672709999928, 49.014897682000054 ], [ -118.495277906999959, 49.015356309000012 ], [ -118.494474786999973, 49.015511603000078 ], [ -118.493218612999968, 49.015581392000094 ], [ -118.492533897999976, 49.015527188000071 ], [ -118.491678695999923, 49.015322112000028 ], [ -118.489942175999943, 49.014840796000037 ], [ -118.488998481999928, 49.014430590000075 ], [ -118.487521801999947, 49.013963487000126 ], [ -118.487007616999932, 49.013700004000022 ], [ -118.486412892999937, 49.012979296000026 ], [ -118.485979296999957, 49.012228800000123 ], [ -118.485386195999936, 49.011570810000066 ], [ -118.484617496999988, 49.011068011000127 ], [ -118.483050790999982, 49.010810314000025 ], [ -118.481878694999949, 49.010897094000036 ], [ -118.480631995999943, 49.011290210000034 ], [ -118.480134295999903, 49.011566513000048 ], [ -118.479683788999949, 49.012057890000037 ], [ -118.479016077, 49.013541898000092 ], [ -118.47902900599999, 49.013937789000067 ], [ -118.479442302999956, 49.014553100000128 ], [ -118.480954492999928, 49.015693909000063 ], [ -118.481152419999944, 49.015907504000097 ], [ -118.481230019999927, 49.016274900000056 ], [ -118.480834492999946, 49.017647893000067 ], [ -118.480422405999946, 49.018085095000053 ], [ -118.480086504999946, 49.018710310000131 ], [ -118.478749499999964, 49.019744313000011 ], [ -118.478150297999932, 49.019851100000089 ], [ -118.477152779999983, 49.019890998000051 ], [ -118.476344881999978, 49.019855392000117 ], [ -118.476042417999935, 49.019778500000044 ], [ -118.475266302999941, 49.019455194000081 ], [ -118.474812675999985, 49.019182682000107 ], [ -118.474417513999967, 49.018945289000051 ], [ -118.473698106999947, 49.018261690000038 ], [ -118.472639995999941, 49.017590888 ], [ -118.471770502999931, 49.01684610100012 ], [ -118.46953539499998, 49.015740909000044 ], [ -118.467590187000027, 49.015172605000032 ], [ -118.466765491000032, 49.015048709000041 ], [ -118.465301295999936, 49.015030202000041 ], [ -118.463901189999916, 49.015282304000081 ], [ -118.462903699999941, 49.015789294000058 ], [ -118.460395310999928, 49.01748550100011 ], [ -118.45936915199999, 49.018543678000079 ], [ -118.458143752999959, 49.018457277000017 ], [ -118.458068412000031, 49.018921814000066 ], [ -118.458942662999988, 49.018983456000122 ], [ -118.458416112999956, 49.019526399000043 ], [ -118.457153001999956, 49.020261311000098 ], [ -118.456757504999928, 49.020294093000075 ], [ -118.456122305999969, 49.020094702000094 ], [ -118.45596500399995, 49.019862497000084 ], [ -118.456007217999954, 49.019439498000061 ], [ -118.456474210999943, 49.018560787000126 ], [ -118.456635497999969, 49.01802810100002 ], [ -118.456885902999943, 49.015362001000078 ], [ -118.456641610999952, 49.014024707000033 ], [ -118.456033320999921, 49.012835506000066 ], [ -118.455574393999953, 49.012544893000054 ], [ -118.455061717999939, 49.012354100000032 ], [ -118.45448370299999, 49.012244386000177 ], [ -118.453444419, 49.012194604000065 ], [ -118.452737896, 49.012374011000077 ], [ -118.451809514999979, 49.012430995000088 ], [ -118.450013280999926, 49.012272893000038 ], [ -118.44857658699999, 49.012245905000029 ], [ -118.446438914999987, 49.012587704000062 ], [ -118.444791085999938, 49.013309705000097 ], [ -118.443787994, 49.014051793000093 ], [ -118.443711790999927, 49.014249715000091 ], [ -118.443843586999904, 49.015031599000032 ], [ -118.444912017999968, 49.017501197000044 ], [ -118.445013821, 49.018156301000033 ], [ -118.444980478999938, 49.018818412000087 ], [ -118.444964441999957, 49.018819124000068 ], [ -118.444676741999928, 49.018832607000014 ], [ -118.443400753999953, 49.018834927000057 ], [ -118.442239955, 49.018784423000099 ], [ -118.441845212999965, 49.018762219000131 ], [ -118.441643105999916, 49.018753062000016 ], [ -118.441591536999937, 49.018838510000073 ], [ -118.441479955999938, 49.018951629000057 ], [ -118.440640935999966, 49.019801868000059 ], [ -118.440502231999972, 49.01990286000003 ], [ -118.43597196599994, 49.021096989000085 ], [ -118.434949233999959, 49.021778299000061 ], [ -118.434820726999988, 49.022235945000055 ], [ -118.434746956999973, 49.022163870000092 ], [ -118.433590803999934, 49.021438786000068 ], [ -118.433234619999951, 49.021283122000078 ], [ -118.433108711, 49.02122809100009 ], [ -118.43219759599999, 49.020944491000094 ] ], [ [ -118.473399144999931, 49.017147285000071 ], [ -118.473294573999979, 49.01779338300004 ], [ -118.474807684999959, 49.017899853000138 ], [ -118.47465535799995, 49.01884115400005 ], [ -118.474827788999931, 49.018853285000034 ], [ -118.475320597999911, 49.018887956000114 ], [ -118.475325371999986, 49.018858451000035 ], [ -118.476098046999979, 49.018912807000049 ], [ -118.476150151999903, 49.018590769000149 ], [ -118.47743367799994, 49.01868105000004 ], [ -118.477541421999916, 49.018015 ], [ -118.478498226999974, 49.018082290000088 ], [ -118.478534386999954, 49.017858721000046 ], [ -118.47967481699996, 49.017938914000041 ], [ -118.479796370999964, 49.017187254000085 ], [ -118.47681109399997, 49.016977311000119 ], [ -118.476919086999885, 49.01630975500008 ], [ -118.476722430999942, 49.016295922000069 ], [ -118.476589129000018, 49.01711990300003 ], [ -118.475438275999977, 49.017038943000088 ], [ -118.475397986999965, 49.017287929000048 ], [ -118.474901222999961, 49.017252979000034 ], [ -118.473399144999931, 49.017147285000071 ] ], [ [ -118.454475733, 49.010416396000089 ], [ -118.45461369799996, 49.009565972000097 ], [ -118.454495370999922, 49.009557622000095 ], [ -118.454464108999929, 49.009750326000052 ], [ -118.453893938999954, 49.009710091000024 ], [ -118.453882184999955, 49.009782539000099 ], [ -118.449845303999922, 49.009497585000133 ], [ -118.44979471299996, 49.009809231000126 ], [ -118.447754067999966, 49.009665128000051 ], [ -118.447736523999964, 49.009773177000092 ], [ -118.444185987999973, 49.009522357 ], [ -118.443978322999953, 49.010800616000104 ], [ -118.448500748999919, 49.011120073000086 ], [ -118.448407987999971, 49.011691374000058 ], [ -118.448559637999921, 49.011702083000102 ], [ -118.448814051999989, 49.010135125000076 ], [ -118.449456325999932, 49.010180478000059 ], [ -118.449475326999973, 49.010063441000113 ], [ -118.454475733, 49.010416396000089 ] ], [ [ -118.460100655999966, 49.009596035000172 ], [ -118.459960741000017, 49.010459111000046 ], [ -118.460789380999969, 49.010517535000105 ], [ -118.460894029999935, 49.009871932000102 ], [ -118.460297388999948, 49.009829867000043 ], [ -118.460332642999944, 49.009612393000118 ], [ -118.460100655999966, 49.009596035000172 ] ], [ [ -118.488678721999975, 49.01200261900005 ], [ -118.488423175999969, 49.013584897000101 ], [ -118.488579145999935, 49.013595852000073 ], [ -118.488714020999936, 49.012760735000057 ], [ -118.49135595199999, 49.012946258000156 ], [ -118.491359620999958, 49.012923530000094 ], [ -118.490302421999971, 49.012849299000038 ], [ -118.490391258999949, 49.012299108000093 ], [ -118.489670339999947, 49.012248483000086 ], [ -118.489698476999962, 49.012074239000121 ], [ -118.488678721999975, 49.01200261900005 ] ], [ [ -118.499449580999979, 49.009581642000036 ], [ -118.499450409999938, 49.009576503000076 ], [ -118.499387887999958, 49.009577315000115 ], [ -118.499449580999979, 49.009581642000036 ] ], [ [ -118.499211315999958, 49.007876761000077 ], [ -118.499320921000034, 49.007197055000091 ], [ -118.498159135999984, 49.007115557000105 ], [ -118.49804122799999, 49.007846634000074 ], [ -118.499211315999958, 49.007876761000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28959417", "BldgCostT": "19211667", "sL_LossRatio": "1", "sL_AssetLoss": "1483.3", "sL_BldgLoss": "1483.3", "sL_StrLoss": "1483.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000089DE77467A9F5DC017329922A7814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.474722188999962, 49.021155101000062 ], [ -118.474762963999979, 49.020266318000026 ], [ -118.474765904999913, 49.020202362000106 ], [ -118.474775423999986, 49.01999482300004 ], [ -118.474780443999947, 49.019886001000017 ], [ -118.4747806459999, 49.019881609000059 ], [ -118.475451105999966, 49.020145894000066 ], [ -118.476441982999972, 49.020385204000078 ], [ -118.477919615999937, 49.02039379200005 ], [ -118.479317517000013, 49.020024896000066 ], [ -118.480766906, 49.019043608000111 ], [ -118.481692582999983, 49.017079592000137 ], [ -118.481763080999926, 49.016250691000074 ], [ -118.481568906999954, 49.015191111000078 ], [ -118.481584400999978, 49.01451158600004 ], [ -118.480442196999917, 49.013083691000084 ], [ -118.480360092999916, 49.012770006000032 ], [ -118.480471313999914, 49.012354108000046 ], [ -118.480775194000017, 49.011990897000061 ], [ -118.48130930399995, 49.01156939400002 ], [ -118.481715489999914, 49.011384215000056 ], [ -118.482272605999952, 49.011268903000015 ], [ -118.483751306999949, 49.01130449500004 ], [ -118.484136501999927, 49.011406999000044 ], [ -118.484778193999944, 49.011839993000166 ], [ -118.485515614999926, 49.012694496000016 ], [ -118.485778084999978, 49.013239904000017 ], [ -118.486369214, 49.013816795000039 ], [ -118.487254203999953, 49.014155695000021 ], [ -118.487880002999944, 49.014499002000072 ], [ -118.489124799999956, 49.014958987000036 ], [ -118.489612085999966, 49.015295102000039 ], [ -118.491006288, 49.015726601000097 ], [ -118.491838315999985, 49.016067006000064 ], [ -118.492497596, 49.016139600000059 ], [ -118.494666382999966, 49.01595879100006 ], [ -118.496025814999953, 49.015679600000091 ], [ -118.4975106, 49.015057194000079 ], [ -118.497862989999959, 49.014936191000167 ], [ -118.498897888999934, 49.014356512000056 ], [ -118.50036509099999, 49.013104689000102 ], [ -118.500692102999892, 49.012606188000078 ], [ -118.500979333999979, 49.012058116000084 ], [ -118.501242903999952, 49.012076598000057 ], [ -118.501196474, 49.012364573000085 ], [ -118.50133714399999, 49.012374436000066 ], [ -118.501609539999933, 49.01068485400009 ], [ -118.501563821999937, 49.010681650000073 ], [ -118.501714707999966, 49.010207783000041 ], [ -118.501777552999968, 49.009214246000056 ], [ -118.501789295999984, 49.009028603000061 ], [ -118.501665102999979, 49.007672698000086 ], [ -118.500709022999928, 49.004958203000122 ], [ -118.50046607599991, 49.0046106940001 ], [ -118.500198493999932, 49.003904314000081 ], [ -118.499384285999952, 49.002736400000074 ], [ -118.498785107999964, 49.001439006000084 ], [ -118.498720796999962, 49.000711202000033 ], [ -118.498876822999961, 49.000001447000059 ], [ -118.499999986999967, 49.000000008000079 ], [ -118.501012390999946, 49.000001322000088 ], [ -118.501020695999983, 49.000115705000063 ], [ -118.5013333099999, 49.000918106000036 ], [ -118.501699189999954, 49.001892678000019 ], [ -118.502399688999944, 49.001753492000041 ], [ -118.502929163999966, 49.001662050000078 ], [ -118.503620228999964, 49.00154752300007 ], [ -118.504232440999914, 49.00143982900007 ], [ -118.504549074999957, 49.002384966000086 ], [ -118.504863642999965, 49.003356026000063 ], [ -118.504952421, 49.003630146000027 ], [ -118.505004412999966, 49.003948956000023 ], [ -118.505040780999977, 49.004172339000029 ], [ -118.504964954999963, 49.004711180000122 ], [ -118.504758361999961, 49.005243574000062 ], [ -118.503515045999919, 49.007303633000092 ], [ -118.503497979999963, 49.007331860000079 ], [ -118.50332236399997, 49.007918929000084 ], [ -118.503277762999943, 49.008442748000064 ], [ -118.503315341, 49.008618336000033 ], [ -118.503399926999947, 49.009013577000125 ], [ -118.503489931999965, 49.009234673000044 ], [ -118.503541137999903, 49.009360517000104 ], [ -118.503713642999955, 49.009784349000014 ], [ -118.504212866999964, 49.010647806000073 ], [ -118.504333710999958, 49.010818308000061 ], [ -118.504372191999977, 49.011064591000057 ], [ -118.504315084999959, 49.01118919200011 ], [ -118.504162575999928, 49.011326090000111 ], [ -118.503776572999982, 49.011531692000091 ], [ -118.503366294999964, 49.011837008000093 ], [ -118.502699890999978, 49.012479302000017 ], [ -118.500509087999959, 49.014673498000072 ], [ -118.49951131499995, 49.01566728900012 ], [ -118.499465678999982, 49.015701514000042 ], [ -118.499300381999944, 49.015825493000094 ], [ -118.498994114999931, 49.016047599000046 ], [ -118.49863618199997, 49.016223490000108 ], [ -118.498284296999955, 49.01636181100011 ], [ -118.497804198999987, 49.016486502000106 ], [ -118.493274292999899, 49.017244301000034 ], [ -118.492008801999972, 49.017530395000129 ], [ -118.489934678999987, 49.018223198000015 ], [ -118.488167898999947, 49.018807099000064 ], [ -118.485980001999977, 49.019404981000086 ], [ -118.482604984999952, 49.020235293000084 ], [ -118.477422215999979, 49.021501603000047 ], [ -118.476551402999945, 49.021720946000109 ], [ -118.475875632999958, 49.021891152000073 ], [ -118.47530059599994, 49.022036003000039 ], [ -118.474721885999941, 49.022234309000048 ], [ -118.47472193899992, 49.022033193000034 ], [ -118.474721986999953, 49.021937632000032 ], [ -118.47472201199993, 49.021836850000092 ], [ -118.47472202099999, 49.021772541000097 ], [ -118.474722161999978, 49.021289403000068 ], [ -118.474722188999962, 49.021155101000062 ] ], [ [ -118.484576878, 49.016019026000052 ], [ -118.484706364999937, 49.015217753000073 ], [ -118.48483183499998, 49.015226570000017 ], [ -118.485134014999957, 49.013356505000097 ], [ -118.482992349999918, 49.013205994000117 ], [ -118.48303583699996, 49.012936927000105 ], [ -118.482672457999968, 49.012911385000066 ], [ -118.482778462999988, 49.012255537000037 ], [ -118.482443410999949, 49.012231985000014 ], [ -118.482299664999957, 49.013121286000022 ], [ -118.481490782999941, 49.013064423000067 ], [ -118.481436742999946, 49.013398705000071 ], [ -118.481303920999963, 49.01338936700008 ], [ -118.48125882299999, 49.013668321000068 ], [ -118.482820743, 49.013778118000083 ], [ -118.482482316999963, 49.015871823000097 ], [ -118.484576878, 49.016019026000052 ] ], [ [ -118.502309914999941, 49.005330466000011 ], [ -118.50249639499998, 49.004173465000051 ], [ -118.502304284999923, 49.004159994000041 ], [ -118.502245863999946, 49.004522462000132 ], [ -118.501994804999953, 49.004504857000057 ], [ -118.501866735999954, 49.005299389000115 ], [ -118.502309914999941, 49.005330466000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "62.8", "sL_BldgLoss": "62.8", "sL_StrLoss": "62.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019D554DC598F5DC069347F6D79814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.239222701999893, 49.01023635500011 ], [ -118.240863284999961, 49.010218721000015 ], [ -118.240910227999933, 49.012107352000058 ], [ -118.240500066999985, 49.012111764000089 ], [ -118.240513475999975, 49.012651374000015 ], [ -118.238462645999988, 49.012673406000026 ], [ -118.23844256699999, 49.011863992000038 ], [ -118.239262885999921, 49.011855183000108 ], [ -118.239222701999893, 49.01023635500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "32.6", "sL_BldgLoss": "32.6", "sL_StrLoss": "32.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D465FBD618E5DC0B3BE373C73804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.223862044, 49.002843777000066 ], [ -118.226732656999957, 49.002813288000091 ], [ -118.226752540999911, 49.003622708000101 ], [ -118.22552226000002, 49.003635783000064 ], [ -118.22552888099996, 49.003905590000066 ], [ -118.224708687999964, 49.003914300000098 ], [ -118.224715303999972, 49.004184107000107 ], [ -118.224305205999968, 49.004188458000037 ], [ -118.22431182099993, 49.004458265000068 ], [ -118.223081518999962, 49.004471315000046 ], [ -118.223055085999974, 49.003392089000087 ], [ -118.223465177999955, 49.003387740000093 ], [ -118.223458567999927, 49.003117932000059 ], [ -118.223868656999954, 49.003113584000076 ], [ -118.223862044, 49.002843777000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18853083", "BldgCostT": "12738333", "sL_LossRatio": "1", "sL_AssetLoss": "1094.1", "sL_BldgLoss": "1094.1", "sL_StrLoss": "1094.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000375DAA2D108F5DC021A02DAD27874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.235251008999981, 49.065464299000055 ], [ -118.2348777099999, 49.064685187000087 ], [ -118.234948388999896, 49.063695408000051 ], [ -118.234788009999988, 49.063300885000061 ], [ -118.234966191999931, 49.062732713000109 ], [ -118.235323503999965, 49.062269795000127 ], [ -118.235385310999902, 49.061990592000043 ], [ -118.235242412999952, 49.061802596000121 ], [ -118.234465901999954, 49.061325486000072 ], [ -118.234581495999947, 49.061063498000074 ], [ -118.23528389099998, 49.060704613000055 ], [ -118.236306694999953, 49.059992489000088 ], [ -118.236525481999976, 49.058289099000014 ], [ -118.23620909099999, 49.057645396000069 ], [ -118.235585619999952, 49.056860604000072 ], [ -118.235552907999988, 49.056654111000043 ], [ -118.234899688999931, 49.055113113000068 ], [ -118.234076283999954, 49.053889691000037 ], [ -118.233828104999958, 49.05329009700008 ], [ -118.233274989999984, 49.052549612000099 ], [ -118.232548789999967, 49.050856192000019 ], [ -118.23206859899993, 49.050223799000051 ], [ -118.231872717, 49.049479004000013 ], [ -118.231526000999963, 49.048735502000099 ], [ -118.230857402999973, 49.04829258400008 ], [ -118.230821970999955, 49.04822719000007 ], [ -118.230816288999918, 49.046874146000029 ], [ -118.230870142999933, 49.046259125000105 ], [ -118.230522008999955, 49.044645623000072 ], [ -118.230331806, 49.043956848000029 ], [ -118.230017935999953, 49.042875398000049 ], [ -118.229112671999985, 49.042724671000052 ], [ -118.228818266999966, 49.042618982000135 ], [ -118.228628771999979, 49.042494771000044 ], [ -118.228043874999983, 49.04199033900003 ], [ -118.228023184999955, 49.04195412600005 ], [ -118.228119571999954, 49.041961127000029 ], [ -118.22811683099999, 49.041977512000088 ], [ -118.228115072999913, 49.041988028000098 ], [ -118.228778355999964, 49.042036209000059 ], [ -118.228735463999968, 49.042292658000122 ], [ -118.229195859999919, 49.042326098000053 ], [ -118.229153564999976, 49.042578995000014 ], [ -118.22953486599999, 49.04260668900006 ], [ -118.229518244999937, 49.042706085000127 ], [ -118.229984140999974, 49.042739921000056 ], [ -118.230651140999925, 49.042788359000077 ], [ -118.230602048999941, 49.04308194300004 ], [ -118.230892750999914, 49.043103052000127 ], [ -118.230816117999922, 49.043561367000045 ], [ -118.231541463000028, 49.043614035000118 ], [ -118.231499248999953, 49.043866518000115 ], [ -118.23194146699997, 49.043898625000075 ], [ -118.231864735999963, 49.044357579000049 ], [ -118.232498779999943, 49.044403610000089 ], [ -118.23245824599995, 49.044646078000078 ], [ -118.233167877999932, 49.044697593000073 ], [ -118.233008591, 49.045650458000097 ], [ -118.233371333999969, 49.045676789000048 ], [ -118.233324491999937, 49.045957006000059 ], [ -118.233803539999968, 49.045991778000086 ], [ -118.233794832999962, 49.046043864000069 ], [ -118.233748658999929, 49.046320101000028 ], [ -118.23420424699998, 49.046353167000099 ], [ -118.234145823999938, 49.04670270200009 ], [ -118.234449763999947, 49.046724762000096 ], [ -118.234395974, 49.047046586000114 ], [ -118.234662879999945, 49.047065957000036 ], [ -118.234579163999925, 49.047566827000068 ], [ -118.234970803999957, 49.047595249000047 ], [ -118.234921733999897, 49.047888842000077 ], [ -118.235212514999944, 49.047909943000057 ], [ -118.235163957999973, 49.048200479000059 ], [ -118.235345329999973, 49.048213641000054 ], [ -118.235296261, 49.048507235000031 ], [ -118.235587041999963, 49.048528334000146 ], [ -118.23553104, 49.048863422000089 ], [ -118.235640061999931, 49.048871334000104 ], [ -118.235579142999953, 49.049235840000058 ], [ -118.236017174999972, 49.049267623000048 ], [ -118.235966471, 49.049571027000049 ], [ -118.236020194999966, 49.049574925000094 ], [ -118.235957672999945, 49.049949036000086 ], [ -118.236189014999923, 49.049965821000086 ], [ -118.236130970999923, 49.050313142000086 ], [ -118.236203736999954, 49.05031842100005 ], [ -118.236123144999951, 49.050800662 ], [ -118.236332063999939, 49.0508158190001 ], [ -118.236268946999957, 49.051193498000103 ], [ -118.236548982999921, 49.051213814000072 ], [ -118.236486515, 49.051587618000049 ], [ -118.236748301999967, 49.051606609000089 ], [ -118.236699255999923, 49.05190009800009 ], [ -118.237020512999962, 49.051923403000082 ], [ -118.236953414999931, 49.052324927 ], [ -118.23725213199999, 49.052346597000117 ], [ -118.23719854399999, 49.052667287000105 ], [ -118.237617642999936, 49.052697687000013 ], [ -118.237055304999942, 49.056062776000026 ], [ -118.239350710999972, 49.056229248000108 ], [ -118.238752629999965, 49.059808733000089 ], [ -118.237928844999914, 49.059748995000071 ], [ -118.23791446599995, 49.059835031000048 ], [ -118.238361979999965, 49.05986748400003 ], [ -118.237977933999971, 49.062165570000019 ], [ -118.23810793799997, 49.062174997000078 ], [ -118.237770812999912, 49.064192149000107 ], [ -118.238583655999932, 49.064251088000042 ], [ -118.238524895999959, 49.064602695000104 ], [ -118.238555179999963, 49.064604891000037 ], [ -118.238488395999951, 49.065004501000026 ], [ -118.238525505999988, 49.065007193000078 ], [ -118.238450956999927, 49.065453262000041 ], [ -118.23867753199994, 49.065469689000025 ], [ -118.238079281999902, 49.069049120000074 ], [ -118.235717099999931, 49.068877827000037 ], [ -118.235878405999983, 49.06811051200004 ], [ -118.235328618999958, 49.067461001000041 ], [ -118.235352812999921, 49.066775995000071 ], [ -118.235060413, 49.066051086000094 ], [ -118.235251008999981, 49.065464299000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "64", "sL_BldgLoss": "64", "sL_StrLoss": "64", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DAA8CF3F58D5DC0CB8B2341FE804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.217868644999911, 49.009384240000124 ], [ -118.217862062999984, 49.009114434000061 ], [ -118.217041781999981, 49.009123089000084 ], [ -118.217035204999917, 49.008853282000054 ], [ -118.216214928999989, 49.008861933000077 ], [ -118.216175495999963, 49.007243089000021 ], [ -118.216585620999979, 49.007238765000061 ], [ -118.216572473999975, 49.006699151000156 ], [ -118.21698259399993, 49.00669482500011 ], [ -118.216976018999929, 49.006425018000122 ], [ -118.217386135999931, 49.006420691000052 ], [ -118.21737955899998, 49.006150883000075 ], [ -118.218199788999968, 49.006142226000058 ], [ -118.218193206, 49.005872419000106 ], [ -118.219423545999973, 49.005859421000018 ], [ -118.219469673999953, 49.007748069000101 ], [ -118.219879801, 49.007743734000066 ], [ -118.219919354999917, 49.009362575000118 ], [ -118.217868644999911, 49.009384240000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6851250", "BldgCostT": "4725000", "sL_LossRatio": "1", "sL_AssetLoss": "349.3", "sL_BldgLoss": "349.3", "sL_StrLoss": "349.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000DB64389B78E5DC09F47184848824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.228959263999911, 49.019387957000085 ], [ -118.228971772999955, 49.019313120000021 ], [ -118.228301949999931, 49.019264440000015 ], [ -118.22832203899992, 49.019144265000129 ], [ -118.226776110999978, 49.019031898000051 ], [ -118.226876785999963, 49.01842977900003 ], [ -118.224587487999898, 49.018263337000135 ], [ -118.224625800999945, 49.018034255000074 ], [ -118.224988581000019, 49.015864997000058 ], [ -118.225008716999923, 49.015799304000147 ], [ -118.225119082000035, 49.01577079700013 ], [ -118.225845899999982, 49.015861909000073 ], [ -118.226620618999931, 49.016213700000051 ], [ -118.228157385999936, 49.016404605000048 ], [ -118.229154987999934, 49.016438703000098 ], [ -118.230179299999932, 49.01635609300007 ], [ -118.231388415999902, 49.016585406000033 ], [ -118.232224907999978, 49.016639489000042 ], [ -118.234041118, 49.016512802000086 ], [ -118.234605688999935, 49.016722089000034 ], [ -118.234894489999959, 49.016751627000133 ], [ -118.234660963999914, 49.018149791000035 ], [ -118.23438827199999, 49.019782355000103 ], [ -118.228959263999911, 49.019387957000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11334167", "BldgCostT": "7816667", "sL_LossRatio": "1", "sL_AssetLoss": "511", "sL_BldgLoss": "511", "sL_StrLoss": "511", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9AF3AB4008E5DC0572489D29C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.216430649999921, 49.031558176000047 ], [ -118.216497592999957, 49.031158450000113 ], [ -118.215111550999964, 49.031057578000087 ], [ -118.214381215999936, 49.031004420000052 ], [ -118.214980796999953, 49.027424909000104 ], [ -118.215317179999943, 49.027449394000065 ], [ -118.215903436999923, 49.023948718000099 ], [ -118.220162236999926, 49.024258620000055 ], [ -118.221332865999955, 49.024343774000023 ], [ -118.221087239999974, 49.02581154700006 ], [ -118.222066339999969, 49.025882757000055 ], [ -118.22170322699999, 49.028052694000088 ], [ -118.222488178999981, 49.028109778000015 ], [ -118.223399242999903, 49.028176026 ], [ -118.223094661999937, 49.029996414000095 ], [ -118.222800297999981, 49.031755579000048 ], [ -118.221904936999977, 49.031690473000012 ], [ -118.221888825999912, 49.03178673700004 ], [ -118.221860967999987, 49.0319531990001 ], [ -118.216430649999921, 49.031558176000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "64", "sL_BldgLoss": "64", "sL_StrLoss": "64", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027222EC6A18E5DC056A4BA67FA814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.227969405999957, 49.016019994000054 ], [ -118.227677600999982, 49.015824888000068 ], [ -118.226883905999941, 49.015787889000087 ], [ -118.226453103999958, 49.015531503000062 ], [ -118.22553159, 49.015362 ], [ -118.225098257999903, 49.015209139 ], [ -118.225186122999986, 49.014683698000049 ], [ -118.230614550999945, 49.015078290000133 ], [ -118.230513931999909, 49.015680415000041 ], [ -118.232803125999951, 49.015846731000089 ], [ -118.232783048999963, 49.015966908000046 ], [ -118.233721699999961, 49.016035088000102 ], [ -118.233018499999943, 49.016145303000037 ], [ -118.231446213999973, 49.01618089100004 ], [ -118.230911278999955, 49.016123999000072 ], [ -118.230690306999946, 49.015981605000029 ], [ -118.229743702999883, 49.015910312000074 ], [ -118.229336913999987, 49.016049895 ], [ -118.229129985999961, 49.015944502000082 ], [ -118.228640209999952, 49.016030007000062 ], [ -118.227969405999957, 49.016019994000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "159.5", "sL_BldgLoss": "159.5", "sL_StrLoss": "159.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095B9B72A22905DC0869E620FCC814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.251507853999982, 49.01201146000006 ], [ -118.254728345999965, 49.012244806000119 ], [ -118.254586092999944, 49.01309880000008 ], [ -118.254132007999914, 49.01582462300005 ], [ -118.248764503999922, 49.015435658000122 ], [ -118.248703293999924, 49.015431222000075 ], [ -118.248903040999934, 49.014233031000039 ], [ -118.24923039, 49.014181390000076 ], [ -118.2498, 49.013967702000151 ], [ -118.25038960699996, 49.013476409000113 ], [ -118.250523091, 49.013304002000062 ], [ -118.250557293000014, 49.01301490500007 ], [ -118.251507853999982, 49.01201146000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "95.4", "sL_BldgLoss": "95.4", "sL_StrLoss": "95.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3FCB052BF8E5DC053AF7C122F804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.227485105999946, 49.002449058000131 ], [ -118.227873511999974, 49.000124866000164 ], [ -118.22872609199996, 49.000124901000078 ], [ -118.228893332000013, 49.000119632000121 ], [ -118.229707594999965, 49.000093901000078 ], [ -118.229824387999955, 49.000109072000093 ], [ -118.229914599999972, 49.000120794000054 ], [ -118.229985026999927, 49.000147646000102 ], [ -118.230075901999953, 49.000182303 ], [ -118.230188985999945, 49.000270203000056 ], [ -118.230190220999958, 49.000273775000053 ], [ -118.230203086, 49.000311003000043 ], [ -118.23333903799994, 49.000287182000079 ], [ -118.232912131999953, 49.002843541000061 ], [ -118.227485105999946, 49.002449058000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912584", "BldgCostT": "2698334", "sL_LossRatio": "1", "sL_AssetLoss": "159.4", "sL_BldgLoss": "159.4", "sL_StrLoss": "159.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E1E9D7CEDE8E5DC0CD20FC9311844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.229933135999929, 49.029799453000045 ], [ -118.235363363999937, 49.030193795000095 ], [ -118.234765311000018, 49.033773403000083 ], [ -118.229334671999965, 49.033379033000081 ], [ -118.229933135999929, 49.029799453000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "158.2", "sL_BldgLoss": "158.2", "sL_StrLoss": "158.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FCD1263D82905DC0CE67693CCB804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.256518597999943, 49.008119902000097 ], [ -118.25578649699996, 49.007795203000121 ], [ -118.255336562999958, 49.007788324000025 ], [ -118.255890344999912, 49.004462858000082 ], [ -118.261317843999947, 49.004855902000045 ], [ -118.26121408299997, 49.005479464000047 ], [ -118.259344711999944, 49.007360806000115 ], [ -118.258431606999977, 49.008035894000045 ], [ -118.257750689999952, 49.00820538800005 ], [ -118.256819992999979, 49.008152699000078 ], [ -118.256518597999943, 49.008119902000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "32.6", "sL_BldgLoss": "32.6", "sL_StrLoss": "32.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E41803CA6A915DC0E15494E0C7804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.271513990999921, 49.00556694900007 ], [ -118.272744296999946, 49.005553383000063 ], [ -118.27277180699997, 49.006632589000056 ], [ -118.271541473999903, 49.006646156000031 ], [ -118.271513990999921, 49.00556694900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90262584", "BldgCostT": "63218334", "sL_LossRatio": "1", "sL_AssetLoss": "1029.7", "sL_BldgLoss": "1029.7", "sL_StrLoss": "1029.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DEB15C5F798F5DC0EE2D4036248B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.251853478999976, 49.100710597000067 ], [ -118.251295688999932, 49.100284788000153 ], [ -118.249512003999925, 49.100178003000082 ], [ -118.249050294999961, 49.09925650800006 ], [ -118.249036000999965, 49.098708210000048 ], [ -118.248433302999928, 49.098148494000078 ], [ -118.248270197999943, 49.097637191000096 ], [ -118.248059215999945, 49.097423497000044 ], [ -118.246510911999977, 49.096296990000099 ], [ -118.246268796999956, 49.095968012000142 ], [ -118.246019893000025, 49.095898193000068 ], [ -118.244437411999954, 49.094466900000064 ], [ -118.244325706999973, 49.094351490000165 ], [ -118.2443478799999, 49.094153597000066 ], [ -118.244150793999921, 49.093984105000075 ], [ -118.243122786999933, 49.093420103000035 ], [ -118.242772793999947, 49.093099602000052 ], [ -118.24145319899999, 49.09178229700008 ], [ -118.241446404999948, 49.091575685000088 ], [ -118.241194207999939, 49.091290882000081 ], [ -118.240215805, 49.090517591000072 ], [ -118.240234, 49.090167206000068 ], [ -118.239693604999971, 49.08989380700006 ], [ -118.239161761999981, 49.089290505000058 ], [ -118.239128602999955, 49.089252890000083 ], [ -118.238853498999944, 49.089193001000091 ], [ -118.238528683999945, 49.089304106000071 ], [ -118.237658696000011, 49.089016413000081 ], [ -118.237164208999928, 49.088995084000054 ], [ -118.236303381999946, 49.088544997000035 ], [ -118.235925896999973, 49.088207489000048 ], [ -118.236, 49.087874204000087 ], [ -118.236132581999954, 49.08775459500005 ], [ -118.236626207999919, 49.087777409000104 ], [ -118.237618479999966, 49.087999597000092 ], [ -118.23799921199992, 49.08790560300011 ], [ -118.238515208999971, 49.087649183000039 ], [ -118.238647686999954, 49.087503907000105 ], [ -118.238697617999961, 49.087287502000095 ], [ -118.238592604999951, 49.086945591000102 ], [ -118.237653691999981, 49.086065501000085 ], [ -118.237589302999979, 49.08567950200009 ], [ -118.23762078299994, 49.085283594000082 ], [ -118.237102011999966, 49.084874799000055 ], [ -118.236955616999964, 49.084436194000048 ], [ -118.235115496999981, 49.082620290000115 ], [ -118.235039487000023, 49.081757199000016 ], [ -118.235145097999947, 49.081063704000059 ], [ -118.235025188999956, 49.080579411000045 ], [ -118.235095620999957, 49.079579598000052 ], [ -118.234641319999938, 49.078416006000047 ], [ -118.234688115999987, 49.078055697000067 ], [ -118.235089894999987, 49.077726696000141 ], [ -118.235126798999957, 49.077510307000054 ], [ -118.234992221999931, 49.077115702000086 ], [ -118.235148595999988, 49.07672840500004 ], [ -118.235016693999967, 49.076388002000037 ], [ -118.235106007999946, 49.076125886000113 ], [ -118.235497294999959, 49.075932211000065 ], [ -118.235654897999936, 49.075607505000072 ], [ -118.236059195999985, 49.075413799000053 ], [ -118.236360591000022, 49.075392501000039 ], [ -118.236982699, 49.075107600000074 ], [ -118.237210806999954, 49.074852687000096 ], [ -118.237166915, 49.074223196000062 ], [ -118.237946818999944, 49.07363920300002 ], [ -118.238038888999895, 49.072937098000104 ], [ -118.237961506999937, 49.072612225000071 ], [ -118.240281049999936, 49.072780363000128 ], [ -118.239682827999943, 49.076359761000035 ], [ -118.239491796999957, 49.076345916000022 ], [ -118.239333162999955, 49.077294966000075 ], [ -118.238959664000035, 49.077267895 ], [ -118.238921754999978, 49.077494674 ], [ -118.238352834999972, 49.077453437000123 ], [ -118.238238444999979, 49.078137684000055 ], [ -118.23868455399996, 49.078170020000123 ], [ -118.238363887999967, 49.080088128000057 ], [ -118.239053567999932, 49.080138116000029 ], [ -118.23877534599994, 49.081802357000157 ], [ -118.239205272, 49.081833514000017 ], [ -118.239153142999967, 49.082145343000057 ], [ -118.23968797899991, 49.08218410300001 ], [ -118.23963405799999, 49.08250665800005 ], [ -118.239809895999898, 49.082519400000052 ], [ -118.239757684999987, 49.082831740000124 ], [ -118.240231704999985, 49.082866089000106 ], [ -118.24018538699994, 49.083143177000061 ], [ -118.240555312999916, 49.083169981000026 ], [ -118.24047000199991, 49.083680365000141 ], [ -118.240655143999959, 49.0836937790001 ], [ -118.240576458999925, 49.084164512000022 ], [ -118.240730572999936, 49.084175677000104 ], [ -118.240639331999887, 49.084721526000102 ], [ -118.240898102999935, 49.084740275000044 ], [ -118.24086928499996, 49.084912688000053 ], [ -118.241341000999924, 49.084946862000095 ], [ -118.24128717499994, 49.085268907000113 ], [ -118.241523917999956, 49.085286058000122 ], [ -118.241165327999965, 49.08743144300005 ], [ -118.241956445999975, 49.087488752000034 ], [ -118.24184343499995, 49.088164902000138 ], [ -118.243383046999966, 49.088276414000084 ], [ -118.243329273999933, 49.088598200000078 ], [ -118.243302695999915, 49.088757241000067 ], [ -118.243694368999968, 49.088785606000023 ], [ -118.243185271999891, 49.091832010000104 ], [ -118.24749895699992, 49.092144308000108 ], [ -118.247315490999924, 49.093242656000079 ], [ -118.248022113999951, 49.093293796000133 ], [ -118.247917299999955, 49.093921315000067 ], [ -118.249005625999942, 49.094000070000057 ], [ -118.248946782999923, 49.09435240100008 ], [ -118.249421635999965, 49.09438676000007 ], [ -118.249366761999966, 49.094715350000072 ], [ -118.249792446999933, 49.094746149000045 ], [ -118.249725030999954, 49.095149848000091 ], [ -118.250286059999922, 49.095190437000078 ], [ -118.250239221999891, 49.095470927000093 ], [ -118.250688464999939, 49.095503427000104 ], [ -118.250641067999965, 49.095787284 ], [ -118.251169570999963, 49.095825514000126 ], [ -118.250991256999939, 49.096893434000023 ], [ -118.252026215999962, 49.096968293000032 ], [ -118.251754616999932, 49.098595020000069 ], [ -118.25292099499994, 49.098679372000085 ], [ -118.252539565999939, 49.100964074000032 ], [ -118.252433490999962, 49.100902901000083 ], [ -118.251853478999976, 49.100710597000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136075167", "BldgCostT": "93866667", "sL_LossRatio": "0.999726681345294", "sL_AssetLoss": "3673.368", "sL_BldgLoss": "3672.364", "sL_StrLoss": "3672", "sL_NStrLoss": "0.364", "sL_ContLoss": "1.004", "geom_point": "0101000020E6100000A65EF1B3158E5DC03AE7440E53854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.225062590999968, 49.043551394000097 ], [ -118.224127202999981, 49.043417500000039 ], [ -118.220951988, 49.043396192000081 ], [ -118.215856666999954, 49.043912022000065 ], [ -118.215493198999965, 49.043948808000081 ], [ -118.213699194999933, 49.043896091000065 ], [ -118.212481, 49.043952989000033 ], [ -118.21145039699995, 49.043712300000081 ], [ -118.210737899999941, 49.043702412000066 ], [ -118.209912499000012, 49.043521506000047 ], [ -118.209268946999941, 49.043453577000015 ], [ -118.209062605999989, 49.04343179600005 ], [ -118.208756689999959, 49.043228114000058 ], [ -118.20860019299991, 49.043031610000114 ], [ -118.208461093999986, 49.042367907 ], [ -118.20810760099998, 49.041922107000076 ], [ -118.207325829999945, 49.041381619000056 ], [ -118.207329465, 49.041376742000097 ], [ -118.207363597999958, 49.041330923000046 ], [ -118.207466811999964, 49.041192447000114 ], [ -118.207543022999943, 49.041090151000034 ], [ -118.208182992999966, 49.04023139 ], [ -118.208583979999958, 49.039700835000126 ], [ -118.208658150999923, 49.039702642000094 ], [ -118.209262810999959, 49.039717699000072 ], [ -118.210660284999932, 49.03970260100008 ], [ -118.210686588999963, 49.040709901000071 ], [ -118.210697283999977, 49.041093735000111 ], [ -118.210704309000036, 49.041345529000097 ], [ -118.210714458999973, 49.041708304000039 ], [ -118.21133238199991, 49.041701193000108 ], [ -118.21190692, 49.04169457700003 ], [ -118.212132845999975, 49.041691988000096 ], [ -118.212798892999928, 49.041678875000052 ], [ -118.213469907999922, 49.041668842000071 ], [ -118.213632322999914, 49.042666581000091 ], [ -118.215228785999926, 49.042696301000063 ], [ -118.216059280999929, 49.042686106000097 ], [ -118.21615209, 49.042641202000027 ], [ -118.216202480999968, 49.042569711000041 ], [ -118.216177113999962, 49.041547922000078 ], [ -118.216121304999959, 49.040650808000045 ], [ -118.21611662499997, 49.040127876000071 ], [ -118.216112335999981, 49.039645619000069 ], [ -118.216020289999932, 49.039325484000116 ], [ -118.217647607999979, 49.03864410000007 ], [ -118.217839208999948, 49.038517690000077 ], [ -118.218232706999927, 49.038055385000057 ], [ -118.218535708999966, 49.037763995 ], [ -118.21882800299997, 49.037618604000038 ], [ -118.219104008999977, 49.03751371000002 ], [ -118.219255701999927, 49.037346287000055 ], [ -118.219333603999985, 49.037184396000015 ], [ -118.219357785999975, 49.036137304000086 ], [ -118.219329490999925, 49.035427798000079 ], [ -118.219823111, 49.035434710000061 ], [ -118.220026576999942, 49.035491190000087 ], [ -118.220223295999944, 49.035629619000055 ], [ -118.22069107899992, 49.036365594000046 ], [ -118.220744896999918, 49.037234494000131 ], [ -118.220855487999955, 49.037435499000104 ], [ -118.221270895999922, 49.037088913000041 ], [ -118.22148311499997, 49.0368715050001 ], [ -118.221703871999978, 49.036513494000111 ], [ -118.221953916999936, 49.035610506000069 ], [ -118.222049187999971, 49.035517805000033 ], [ -118.222253509999959, 49.035471014000059 ], [ -118.222736186999953, 49.035517905000091 ], [ -118.223066373999941, 49.03562250600001 ], [ -118.223317591999916, 49.035764007000083 ], [ -118.223544491999974, 49.035943502000087 ], [ -118.223622193999944, 49.036177399000117 ], [ -118.223560900999956, 49.036527088000121 ], [ -118.223183308999964, 49.03742899500007 ], [ -118.223020112999976, 49.037821092000101 ], [ -118.22304688499996, 49.037931696000093 ], [ -118.223130395999959, 49.038023788000039 ], [ -118.223320308999973, 49.03812098500002 ], [ -118.223809705999912, 49.038276087000035 ], [ -118.224479119999984, 49.038431706000047 ], [ -118.225131807999958, 49.038571498000067 ], [ -118.226476185, 49.039342189000088 ], [ -118.227157885999972, 49.039850866000059 ], [ -118.227235099000012, 49.039939398000051 ], [ -118.227237840999976, 49.040050813000036 ], [ -118.226006659999911, 49.040063900000042 ], [ -118.226000028000016, 49.039794095000019 ], [ -118.225589637, 49.039798455000017 ], [ -118.225583007999944, 49.03952865000015 ], [ -118.22517261699997, 49.039533008000035 ], [ -118.225165989999979, 49.039263203000061 ], [ -118.224755602999963, 49.039267560000084 ], [ -118.22474897799998, 49.038997755000018 ], [ -118.223928207, 49.039006465000078 ], [ -118.223921585999904, 49.038736660000041 ], [ -118.223100821999978, 49.038745362000029 ], [ -118.223094204999953, 49.038475557000091 ], [ -118.222273443999939, 49.038484254000117 ], [ -118.222246995999939, 49.037405033000091 ], [ -118.22183662299993, 49.037409380000085 ], [ -118.221843233999977, 49.037679184000062 ], [ -118.221538174999949, 49.037682415000077 ], [ -118.221402410999943, 49.038493478000063 ], [ -118.221452681999921, 49.038492946000062 ], [ -118.221459288999895, 49.038762751000064 ], [ -118.221869672999944, 49.038758405000074 ], [ -118.221876280999965, 49.039028210000048 ], [ -118.222286667, 49.039023865000054 ], [ -118.222313116999928, 49.040103085000084 ], [ -118.222127438999948, 49.040105052000108 ], [ -118.221931364999975, 49.041276427000057 ], [ -118.221933873999944, 49.041378831000124 ], [ -118.222866102999902, 49.041446602000086 ], [ -118.22316699199996, 49.041443413000152 ], [ -118.223167608, 49.041468519000063 ], [ -118.224368874999982, 49.041555832 ], [ -118.224348028999927, 49.041680393000064 ], [ -118.22689210899992, 49.041865262000073 ], [ -118.22689100300002, 49.041871874 ], [ -118.228023184999955, 49.04195412600005 ], [ -118.228043874999983, 49.04199033900003 ], [ -118.228628771999979, 49.042494771000044 ], [ -118.228818266999966, 49.042618982000135 ], [ -118.229112671999985, 49.042724671000052 ], [ -118.230017935999953, 49.042875398000049 ], [ -118.230331806, 49.043956848000029 ], [ -118.230522008999955, 49.044645623000072 ], [ -118.230870142999933, 49.046259125000105 ], [ -118.230816288999918, 49.046874146000029 ], [ -118.230821970999955, 49.04822719000007 ], [ -118.230542596999967, 49.047711500000077 ], [ -118.230092498999952, 49.047257190000032 ], [ -118.22948838799999, 49.04718308900005 ], [ -118.228823008999896, 49.046812795000093 ], [ -118.228556602999959, 49.046517985000023 ], [ -118.228494597999926, 49.046248902000123 ], [ -118.227859316999911, 49.045446994000081 ], [ -118.22763641099999, 49.045323090000053 ], [ -118.22753588799992, 49.045072503000064 ], [ -118.22659071799994, 49.044559697000089 ], [ -118.226362919999985, 49.044185205000069 ], [ -118.225586481999983, 49.043725197000121 ], [ -118.225062590999968, 49.043551394000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "58.4", "sL_BldgLoss": "58.4", "sL_StrLoss": "58.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E908228343935DC086F291D690964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.299864534999969, 49.174353548000028 ], [ -118.303037502999956, 49.174581153000076 ], [ -118.302442801999973, 49.178160337000079 ], [ -118.299791239999976, 49.177970141000081 ], [ -118.299736595999917, 49.177787406000121 ], [ -118.299319379999957, 49.177593694000073 ], [ -118.298532810999987, 49.176874502 ], [ -118.298572384999886, 49.176307692000101 ], [ -118.299787294999973, 49.175547111000128 ], [ -118.299962305999912, 49.175383291000124 ], [ -118.299993796999942, 49.175085708000033 ], [ -118.299925683999973, 49.174520293000086 ], [ -118.299864534999969, 49.174353548000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "56.7", "sL_BldgLoss": "56.7", "sL_StrLoss": "56.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D326565FC0905DC05A826B72A1944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.259504061999948, 49.162176363000071 ], [ -118.260085579999895, 49.158694811000039 ], [ -118.260498996999928, 49.159106097000091 ], [ -118.260883188999955, 49.159624490000105 ], [ -118.261594008999936, 49.160120089 ], [ -118.262722686999965, 49.160206991000024 ], [ -118.262878593999943, 49.160474708000095 ], [ -118.263293791999942, 49.160570112000052 ], [ -118.263681696999981, 49.160780907000053 ], [ -118.264029716999929, 49.161434597000031 ], [ -118.264365178, 49.161690997000058 ], [ -118.264654394999965, 49.162309097000112 ], [ -118.264895226999968, 49.162565180000122 ], [ -118.259504061999948, 49.162176363000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10873750", "BldgCostT": "6025000", "sL_LossRatio": "1", "sL_AssetLoss": "86.7", "sL_BldgLoss": "86.7", "sL_StrLoss": "86.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F60732FEC905DC0ACA7987B2F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.264290618999951, 49.120527102000075 ], [ -118.263901791999956, 49.120370390000069 ], [ -118.263507291999929, 49.120410297000021 ], [ -118.263119309999922, 49.120297801000113 ], [ -118.262978483999987, 49.120128294000104 ], [ -118.26299329699999, 49.119642600000105 ], [ -118.263545893999975, 49.11927660800005 ], [ -118.263400802999968, 49.118954701000085 ], [ -118.261769714, 49.117848091000035 ], [ -118.260340510999967, 49.117134587000109 ], [ -118.260183605999941, 49.11692100600002 ], [ -118.260165007999916, 49.116695910000047 ], [ -118.26075324199995, 49.116230541000085 ], [ -118.265621320999912, 49.116581960000119 ], [ -118.265581883999914, 49.116818486000099 ], [ -118.26604282299995, 49.116851749000055 ], [ -118.266004498999948, 49.117081620000064 ], [ -118.26627643199997, 49.117101243000015 ], [ -118.266099902999954, 49.118160049000046 ], [ -118.267281672999957, 49.118245317000152 ], [ -118.266684942999944, 49.121824614000076 ], [ -118.265966305999925, 49.121772764000077 ], [ -118.265962708999893, 49.121794330000107 ], [ -118.265045659999899, 49.121728158000082 ], [ -118.26497229499995, 49.12143710900007 ], [ -118.264707104999943, 49.121251997000044 ], [ -118.264290618999951, 49.120527102000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22388328", "BldgCostT": "13727410", "sL_LossRatio": "0.999739631352141", "sL_AssetLoss": "1171.416", "sL_BldgLoss": "1171.111", "sL_StrLoss": "1171", "sL_NStrLoss": "0.111", "sL_ContLoss": "0.305", "geom_point": "0101000020E610000071045F87608F5DC0B9D3426E2B8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.247523675999958, 49.128891540000069 ], [ -118.247514651999964, 49.128531912000064 ], [ -118.246710910999965, 49.128473786 ], [ -118.246807539999907, 49.127895824000106 ], [ -118.246553944000013, 49.127877483000141 ], [ -118.246620058999937, 49.127482041000057 ], [ -118.246620534999948, 49.127479190000059 ], [ -118.246400566999966, 49.127463280000015 ], [ -118.246477703999957, 49.12700190200006 ], [ -118.246146888999974, 49.126977974000134 ], [ -118.246246179999972, 49.126384108000067 ], [ -118.245980222999961, 49.126364871000128 ], [ -118.246205191999934, 49.125019304000062 ], [ -118.245902008999934, 49.124997372000067 ], [ -118.245969111999969, 49.124596015000087 ], [ -118.245639427999919, 49.124572166000064 ], [ -118.245754859999948, 49.12388177000004 ], [ -118.245030255999964, 49.123829350000058 ], [ -118.245077204999959, 49.123548565000114 ], [ -118.244658062, 49.123518241000042 ], [ -118.244667226000018, 49.123463433000062 ], [ -118.241769230999935, 49.123253720000044 ], [ -118.240839652999966, 49.123186435000065 ], [ -118.240907417999921, 49.122781376000034 ], [ -118.237372577999949, 49.12252544000004 ], [ -118.237534565000018, 49.121557580000108 ], [ -118.237006430999941, 49.121519331000066 ], [ -118.237040612000015, 49.121315115000101 ], [ -118.236543630999904, 49.121279119000121 ], [ -118.236588438999945, 49.121011412000016 ], [ -118.236041632999971, 49.120971805000131 ], [ -118.236090077999961, 49.120682387000038 ], [ -118.235756142999932, 49.120658198000065 ], [ -118.23583270599994, 49.120200828000037 ], [ -118.23548986499999, 49.120175992000114 ], [ -118.23556455399995, 49.119729824000061 ], [ -118.23533769, 49.119713389000033 ], [ -118.235396290999972, 49.119363330000098 ], [ -118.235152707999958, 49.119345684000088 ], [ -118.235223337999926, 49.118923776000059 ], [ -118.234954229999943, 49.118904280000059 ], [ -118.235011994999965, 49.118559219000112 ], [ -118.234634541999981, 49.118531872000069 ], [ -118.234688351999935, 49.118210452000028 ], [ -118.234360055, 49.118186666000071 ], [ -118.23443145899995, 49.117760170000082 ], [ -118.23423538, 49.117745963000111 ], [ -118.234312702999929, 49.117284108000064 ], [ -118.234042904999967, 49.117264558000066 ], [ -118.234103249999961, 49.116904118000015 ], [ -118.233652416999988, 49.11687144900003 ], [ -118.233692457999922, 49.116632300000099 ], [ -118.233060915999943, 49.116586533000088 ], [ -118.233116063999944, 49.116257170000011 ], [ -118.232781528999936, 49.116232926000073 ], [ -118.232842701, 49.115867593000104 ], [ -118.232495343999958, 49.115842418000085 ], [ -118.232554693999958, 49.115487978000083 ], [ -118.232353762999963, 49.1154734160001 ], [ -118.232402379999925, 49.115183085000062 ], [ -118.232190277999948, 49.115167712000101 ], [ -118.232272171999966, 49.114678655000077 ], [ -118.23190450199999, 49.114652005000046 ], [ -118.231980666999945, 49.114197171000072 ], [ -118.231839029999932, 49.114186905000039 ], [ -118.232042262000036, 49.112973240000024 ], [ -118.232399286999964, 49.110841 ], [ -118.232422481999919, 49.110702468000063 ], [ -118.232268518999916, 49.110704112000107 ], [ -118.232241787999939, 49.10962490800005 ], [ -118.232652753999929, 49.109620520000114 ], [ -118.232639383999967, 49.109080919000107 ], [ -118.233050346, 49.109076530000024 ], [ -118.233030284999955, 49.108267127000097 ], [ -118.23392416899999, 49.108257575000025 ], [ -118.23397914, 49.108256988000065 ], [ -118.235085055999932, 49.108245159000077 ], [ -118.235100685999953, 49.108874750000034 ], [ -118.23514934499994, 49.108878276000048 ], [ -118.23520672799998, 49.108535414000123 ], [ -118.235561536999924, 49.108561125000058 ], [ -118.235606823999916, 49.108290523 ], [ -118.235863314000014, 49.108309109000047 ], [ -118.235916527999976, 49.107991129000027 ], [ -118.236179363999952, 49.108010173000018 ], [ -118.236231227999923, 49.107700236000021 ], [ -118.239407027999974, 49.107930295000124 ], [ -118.239691233, 49.107950878000082 ], [ -118.239695006999909, 49.10810079600008 ], [ -118.239509009999963, 49.108931183000031 ], [ -118.238513080999951, 49.110218592000052 ], [ -118.236642478999954, 49.111516093000063 ], [ -118.23608629499995, 49.111773911000043 ], [ -118.235388517999979, 49.112349307000038 ], [ -118.235258806999923, 49.112619904000077 ], [ -118.235374591999971, 49.112933198000086 ], [ -118.235887105999893, 49.113656687000066 ], [ -118.236022794999911, 49.114222102000014 ], [ -118.236306301999917, 49.114596687000095 ], [ -118.236516010999949, 49.114712006000069 ], [ -118.236685790999942, 49.114961294000096 ], [ -118.237507508999954, 49.115438407000028 ], [ -118.238019919999942, 49.116809899000046 ], [ -118.238368410999911, 49.117039209000097 ], [ -118.238788502999924, 49.117962100000049 ], [ -118.23889821100002, 49.118527486000069 ], [ -118.239519889999912, 49.119276590000084 ], [ -118.239537387999988, 49.119418995000082 ], [ -118.240327387999983, 49.119762295000058 ], [ -118.241535791999965, 49.119793606000073 ], [ -118.242539704999956, 49.119954503000045 ], [ -118.243757608999928, 49.119923195000077 ], [ -118.244984595999981, 49.120143994000031 ], [ -118.246146089999982, 49.120562713000041 ], [ -118.246734692999951, 49.120574098000148 ], [ -118.247163202999928, 49.12067799700003 ], [ -118.247537189999932, 49.120863200000059 ], [ -118.247977807999959, 49.121451393000022 ], [ -118.248311717999982, 49.121673595000118 ], [ -118.248402221999982, 49.122005402000077 ], [ -118.248947475999941, 49.1224311940001 ], [ -118.249075888999968, 49.122690402000053 ], [ -118.250356996999983, 49.123495109000011 ], [ -118.250225506999953, 49.124225711000072 ], [ -118.250429390999955, 49.124735592000064 ], [ -118.250442194999948, 49.125779603000097 ], [ -118.250208591999979, 49.126276590000074 ], [ -118.250536301999986, 49.127289201000067 ], [ -118.250540229999928, 49.127346570000071 ], [ -118.250579391999949, 49.127918693000055 ], [ -118.250194648999965, 49.128725683 ], [ -118.248750589999958, 49.128621283000058 ], [ -118.248757043999888, 49.128878204000038 ], [ -118.247523675999958, 49.128891540000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5692917", "BldgCostT": "3716667", "sL_LossRatio": "0.999294676926766", "sL_AssetLoss": "198.4906", "sL_BldgLoss": "198.3506", "sL_StrLoss": "198.3", "sL_NStrLoss": "0.0506", "sL_ContLoss": "0.14", "geom_point": "0101000020E6100000A31F2EB5F5925DC0D03FA8286A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.29751029499991, 49.17082299200014 ], [ -118.296384398999976, 49.16927060800009 ], [ -118.29626520799999, 49.168876111000046 ], [ -118.295266296999941, 49.167889212000041 ], [ -118.293874395, 49.16716709100011 ], [ -118.293419589999942, 49.167046006000064 ], [ -118.293354310000012, 49.166633001000029 ], [ -118.293183781999957, 49.166409392000091 ], [ -118.292794485999949, 49.166242803000046 ], [ -118.291415616, 49.165943707000054 ], [ -118.291328220999958, 49.165791300000087 ], [ -118.29151088899998, 49.165375389000118 ], [ -118.291276706999938, 49.164307306000097 ], [ -118.291084601999927, 49.164291594000119 ], [ -118.290587011999932, 49.16364929600006 ], [ -118.289692193999898, 49.163021209000071 ], [ -118.289350519999971, 49.162529901000099 ], [ -118.289317857999933, 49.162297232000071 ], [ -118.294496321999958, 49.162669263000097 ], [ -118.294432174999884, 49.163055034000081 ], [ -118.294719340999961, 49.163075657 ], [ -118.29445288, 49.164678094000053 ], [ -118.296767683999974, 49.164844304000027 ], [ -118.296696846999936, 49.165270417000031 ], [ -118.296954308999986, 49.165288901000118 ], [ -118.29689460499992, 49.165648042000029 ], [ -118.297529013999934, 49.165693585000049 ], [ -118.297473828999927, 49.166025569000084 ], [ -118.298010221999931, 49.166064073000101 ], [ -118.297953462999928, 49.166405539 ], [ -118.298282636999929, 49.166429166000128 ], [ -118.298244341999947, 49.166659555000102 ], [ -118.298992429999927, 49.166713246000015 ], [ -118.298928097, 49.167100327000142 ], [ -118.299569139999974, 49.167146332000073 ], [ -118.29950700799999, 49.167520189000044 ], [ -118.299800158, 49.167541226000083 ], [ -118.299735288999926, 49.167931560000049 ], [ -118.299949377999965, 49.167946922000112 ], [ -118.299870869999964, 49.168419326000063 ], [ -118.300348696999933, 49.168453613000153 ], [ -118.300261021999987, 49.168981206000083 ], [ -118.300843516999976, 49.169023 ], [ -118.300747350999927, 49.169601716000066 ], [ -118.301446637999973, 49.169651885000107 ], [ -118.300851875999967, 49.17323108800008 ], [ -118.299348895999927, 49.173123253000014 ], [ -118.299339691999975, 49.173104592000058 ], [ -118.298975312999929, 49.172812604000093 ], [ -118.298863714999939, 49.172247190000078 ], [ -118.298543923999915, 49.172035003000104 ], [ -118.298350918999944, 49.171506605000076 ], [ -118.298168793999963, 49.171355691000066 ], [ -118.29751029499991, 49.17082299200014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11815583", "BldgCostT": "7388333", "sL_LossRatio": "0.999444680907664", "sL_AssetLoss": "601.456", "sL_BldgLoss": "601.122", "sL_StrLoss": "601", "sL_NStrLoss": "0.122", "sL_ContLoss": "0.334", "geom_point": "0101000020E61000001DF883477C905DC0E98E0FC4C38D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.260394893999958, 49.112789307000057 ], [ -118.260319492999955, 49.112043112000094 ], [ -118.260125796999944, 49.111900590000097 ], [ -118.259644898999952, 49.111887806000027 ], [ -118.259546803999939, 49.111826608000115 ], [ -118.259460594999922, 49.111611494000059 ], [ -118.25922170799997, 49.11141640700005 ], [ -118.259124999, 49.110850987000063 ], [ -118.259191208999979, 49.109644708000104 ], [ -118.258775621999973, 49.108983905000073 ], [ -118.257714013999973, 49.108122194000089 ], [ -118.257987809999975, 49.10763370800008 ], [ -118.257935510999957, 49.107112388000054 ], [ -118.257636609999949, 49.106737906000085 ], [ -118.256730294999898, 49.106072799000046 ], [ -118.255664401999979, 49.105635488000132 ], [ -118.255225598, 49.105631312000099 ], [ -118.254280686999962, 49.105658310000081 ], [ -118.25292290199999, 49.10614109200008 ], [ -118.251632788999984, 49.106057106000023 ], [ -118.250986494999964, 49.105937494000031 ], [ -118.250506390999931, 49.105447491000078 ], [ -118.249694493000035, 49.105241011000054 ], [ -118.24962371, 49.10412589200012 ], [ -118.24932939199999, 49.10378690700005 ], [ -118.249040393999934, 49.103754197000079 ], [ -118.249159108999933, 49.103554805000066 ], [ -118.248699607, 49.103335385000065 ], [ -118.248624411999927, 49.103049201000012 ], [ -118.24886191199991, 49.102650402000073 ], [ -118.248596013999958, 49.101896994000121 ], [ -118.248635608999933, 49.101284585000023 ], [ -118.248872417, 49.100877308000051 ], [ -118.249512003999925, 49.100178003000082 ], [ -118.251295688999932, 49.100284788000153 ], [ -118.251853478999976, 49.100710597000067 ], [ -118.252433490999962, 49.100902901000083 ], [ -118.252539565999939, 49.100964074000032 ], [ -118.252381007999986, 49.101913749000076 ], [ -118.252508819999932, 49.101922991000016 ], [ -118.252429860999925, 49.102395902000104 ], [ -118.252815440999925, 49.102423784000088 ], [ -118.252732368999972, 49.102921347000105 ], [ -118.253045367999945, 49.102943979 ], [ -118.252990950999958, 49.103269920000045 ], [ -118.253246181999927, 49.103288374000044 ], [ -118.253222935999929, 49.103427606000011 ], [ -118.258049048999951, 49.103776441000058 ], [ -118.258041827999975, 49.103819722000082 ], [ -118.258657734999986, 49.10386422400007 ], [ -118.258583190999929, 49.10431103100013 ], [ -118.260296115999935, 49.10443477900003 ], [ -118.260244051999933, 49.104746906000123 ], [ -118.260748822999957, 49.104783367000017 ], [ -118.260693924999941, 49.105112502000068 ], [ -118.261058834999957, 49.105138859000107 ], [ -118.260931966999934, 49.105899505000046 ], [ -118.261359075999962, 49.10593035200008 ], [ -118.261090058000022, 49.107543253000117 ], [ -118.262506248999955, 49.107645525000109 ], [ -118.262050935999923, 49.110375589000057 ], [ -118.263821088999933, 49.110503395000052 ], [ -118.263741907999972, 49.110978236000072 ], [ -118.263884017999942, 49.110988495000093 ], [ -118.263828337999925, 49.111322412000106 ], [ -118.264089833999918, 49.111341289000066 ], [ -118.263931175999957, 49.112292757000034 ], [ -118.264507784999964, 49.112334380000085 ], [ -118.264465312999931, 49.112589095000082 ], [ -118.264634095999952, 49.112601278000092 ], [ -118.264597243999944, 49.112822295000058 ], [ -118.26498480099994, 49.112850268000024 ], [ -118.26438796299999, 49.116429582000116 ], [ -118.260826636999965, 49.11617247600006 ], [ -118.260903088999939, 49.116111991000025 ], [ -118.262033920999954, 49.115892705000071 ], [ -118.262113787999908, 49.115757403000067 ], [ -118.261565714999946, 49.114665001000049 ], [ -118.260943912999934, 49.113915907000113 ], [ -118.26073260899993, 49.113135395000015 ], [ -118.260394893999958, 49.112789307000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5838500", "BldgCostT": "3530000", "sL_LossRatio": "1", "sL_AssetLoss": "120.3", "sL_BldgLoss": "120.3", "sL_StrLoss": "120.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005AD971124925DC09654549A20984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.283098149999958, 49.19327004900007 ], [ -118.28326881199996, 49.192245937000116 ], [ -118.283263521999984, 49.19224555600006 ], [ -118.283333732999907, 49.191824217000047 ], [ -118.282972440999984, 49.191798249000094 ], [ -118.28304480499996, 49.191364010000051 ], [ -118.282811564999932, 49.19134724500006 ], [ -118.283360396999939, 49.188053612000068 ], [ -118.281406038999975, 49.187913114 ], [ -118.281466691999967, 49.187549185000144 ], [ -118.280935651000036, 49.187511002000058 ], [ -118.280980984999957, 49.187239005000045 ], [ -118.280445352999919, 49.18720048900007 ], [ -118.280491884999932, 49.186921318000067 ], [ -118.279858552999926, 49.186875774000058 ], [ -118.280455104999973, 49.183296762000062 ], [ -118.281683143999956, 49.183385069000074 ], [ -118.281687192999982, 49.183395899000082 ], [ -118.281725912999974, 49.183881605000067 ], [ -118.282138787999898, 49.184452700000065 ], [ -118.28272298899999, 49.184706199000054 ], [ -118.283639486999974, 49.185667603000134 ], [ -118.284165215999963, 49.185878296000098 ], [ -118.284853289999944, 49.186409610000105 ], [ -118.285199081999934, 49.186550594000117 ], [ -118.285278209999944, 49.188528792000092 ], [ -118.285606902999959, 49.18903719399999 ], [ -118.285872204999961, 49.189213785000042 ], [ -118.286091715999987, 49.189787806000034 ], [ -118.28650631, 49.19038599600006 ], [ -118.286335519999909, 49.19171900300006 ], [ -118.286038807999944, 49.192432608000011 ], [ -118.286113345999922, 49.193486719000049 ], [ -118.283098149999958, 49.19327004900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67973667", "BldgCostT": "47846667", "sL_LossRatio": "1", "sL_AssetLoss": "56.7", "sL_BldgLoss": "56.7", "sL_StrLoss": "56.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098CBFC59E2915DC03B7220FB8B934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.275812496999933, 49.151849706000085 ], [ -118.275524192999981, 49.151331297000127 ], [ -118.275412241999931, 49.151225596000117 ], [ -118.2754795099999, 49.15082195100009 ], [ -118.280924242999959, 49.151213915 ], [ -118.280877141999909, 49.151496743000024 ], [ -118.28155884399996, 49.151545799000132 ], [ -118.281517930999968, 49.151791481000053 ], [ -118.28233923699996, 49.151850577000033 ], [ -118.281743233999961, 49.155429772000055 ], [ -118.280456830999924, 49.155337209000045 ], [ -118.280312412999976, 49.155155302000018 ], [ -118.279741121999933, 49.154766502000065 ], [ -118.27929321, 49.153872103000076 ], [ -118.27821079099999, 49.153362204000054 ], [ -118.276657890999914, 49.152722701000108 ], [ -118.275812496999933, 49.151849706000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3203750", "BldgCostT": "2000000", "sL_LossRatio": "0.998386922086032", "sL_AssetLoss": "86.7906", "sL_BldgLoss": "86.6506", "sL_StrLoss": "86.6", "sL_NStrLoss": "0.0506", "sL_ContLoss": "0.14", "geom_point": "0101000020E61000007B71DA3A55925DC063D5C512FB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.285058288999949, 49.15623631100005 ], [ -118.284728777999973, 49.156194993000078 ], [ -118.28441250499999, 49.156189291000061 ], [ -118.283731308999933, 49.156331699000113 ], [ -118.28344640899995, 49.156496894000043 ], [ -118.283145990999984, 49.156545291000043 ], [ -118.282940521999961, 49.156527005000065 ], [ -118.283315195999975, 49.154276738000128 ], [ -118.288760399999944, 49.154668305000079 ], [ -118.288709705, 49.154972995000058 ], [ -118.289147907999947, 49.155004494000067 ], [ -118.288552387999985, 49.158583709000077 ], [ -118.28640122399996, 49.158429062000025 ], [ -118.286047577, 49.157879794000117 ], [ -118.286074483999982, 49.15727740100008 ], [ -118.285711697999929, 49.156525407000053 ], [ -118.285058288999949, 49.15623631100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "57.7", "sL_BldgLoss": "57.7", "sL_StrLoss": "57.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B01BF8491C905DC0E723006AB0924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.250494037999943, 49.143871267000115 ], [ -118.252368763999968, 49.144006722000036 ], [ -118.252709383999971, 49.144502192000111 ], [ -118.252712893999913, 49.145158790000103 ], [ -118.253091109999929, 49.146026096000114 ], [ -118.253724877999929, 49.146703998000156 ], [ -118.253736592999985, 49.147108505000077 ], [ -118.254092201999953, 49.14765260300009 ], [ -118.254109187999958, 49.147754719000012 ], [ -118.249895687999967, 49.14745032900003 ], [ -118.250494037999943, 49.143871267000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12154583", "BldgCostT": "6908333", "sL_LossRatio": "1", "sL_AssetLoss": "148.4", "sL_BldgLoss": "148.4", "sL_StrLoss": "148.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000236F98EC48935DC00722CD50C3984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.300063081999937, 49.189280229000083 ], [ -118.303953244999917, 49.189559164000109 ], [ -118.30335842199996, 49.193138272000034 ], [ -118.303254055999943, 49.193130790000069 ], [ -118.302963996999935, 49.19487587400014 ], [ -118.302481287999967, 49.19484127100003 ], [ -118.302011100999948, 49.197669588000075 ], [ -118.298949826999902, 49.197450083000106 ], [ -118.298873583999963, 49.196715093000137 ], [ -118.298604997999959, 49.196403186000083 ], [ -118.298705096999981, 49.195530204000079 ], [ -118.299032696999916, 49.195480403 ], [ -118.299287417999921, 49.195262495000051 ], [ -118.299171095999952, 49.194471995000114 ], [ -118.299276989999939, 49.19380551600004 ], [ -118.299597892999913, 49.193459402000087 ], [ -118.299905011999925, 49.19261908900009 ], [ -118.300211997999938, 49.192264487000102 ], [ -118.300409288999958, 49.190904413000077 ], [ -118.300063081999937, 49.189280229000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6682167", "BldgCostT": "4136667", "sL_LossRatio": "1", "sL_AssetLoss": "198.2", "sL_BldgLoss": "198.2", "sL_StrLoss": "198.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AEFA33EE93915DC0F8E4FE761B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.27329690199997, 49.136153505000024 ], [ -118.273365898999927, 49.135622301000161 ], [ -118.273305793, 49.134290612000072 ], [ -118.273544906999959, 49.132993201000055 ], [ -118.273320583, 49.132221303000136 ], [ -118.273136500999968, 49.131963504000062 ], [ -118.272638114999921, 49.131823890000078 ], [ -118.272697204999986, 49.130869688000132 ], [ -118.272721303999958, 49.129691904000019 ], [ -118.27264999399992, 49.129558008000096 ], [ -118.27209339699999, 49.129248891000053 ], [ -118.272032402999983, 49.129060889000101 ], [ -118.272108903999978, 49.128807388000077 ], [ -118.272539809999969, 49.128479886000022 ], [ -118.272669289999939, 49.128199288000054 ], [ -118.272331654999974, 49.127739127000098 ], [ -118.275986205999942, 49.128002497000061 ], [ -118.275677654000035, 49.129855007000067 ], [ -118.276117523999986, 49.129886698000028 ], [ -118.276043958999978, 49.130328381000083 ], [ -118.276343945999898, 49.130349993000074 ], [ -118.276275033999923, 49.130763741000059 ], [ -118.27656856699997, 49.130784887000068 ], [ -118.276511461, 49.131127766000091 ], [ -118.276657486999952, 49.13113828500007 ], [ -118.276440333999957, 49.132442079000079 ], [ -118.276450278999917, 49.132442795000031 ], [ -118.276370522999954, 49.132921633000109 ], [ -118.276531007999978, 49.132933193000049 ], [ -118.276457858999919, 49.133372365000092 ], [ -118.276556835999955, 49.133379494000032 ], [ -118.276481599999968, 49.133831187000069 ], [ -118.276513666999975, 49.133833497000126 ], [ -118.276263849999964, 49.135333276000068 ], [ -118.276289270999925, 49.135335106000113 ], [ -118.276220154999947, 49.135750031000015 ], [ -118.276361396999945, 49.135760205000061 ], [ -118.276270604999979, 49.13630525400005 ], [ -118.276651624999943, 49.136332699000064 ], [ -118.27605538200001, 49.139911948000098 ], [ -118.273195623999982, 49.139705925000058 ], [ -118.273433908999962, 49.13931808500012 ], [ -118.273454795999925, 49.139111588000048 ], [ -118.27294601299991, 49.136894104000092 ], [ -118.27329690199997, 49.136153505000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67688500", "BldgCostT": "47650000", "sL_LossRatio": "1", "sL_AssetLoss": "58.7", "sL_BldgLoss": "58.7", "sL_StrLoss": "58.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F25C00962C9C5DC0AE9A4AB3379E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.439494204999946, 49.234399146000015 ], [ -118.442246422999943, 49.234592698000029 ], [ -118.441661681999946, 49.238172317000057 ], [ -118.439485559, 49.238019286000124 ], [ -118.439004837, 49.237985474000126 ], [ -118.43900221399997, 49.237656890000096 ], [ -118.43885190499999, 49.236282490000107 ], [ -118.43784840899994, 49.234784290000064 ], [ -118.437634959999968, 49.234268351000061 ], [ -118.439494204999946, 49.234399146000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10632083", "BldgCostT": "6308333", "sL_LossRatio": "1", "sL_AssetLoss": "660.3", "sL_BldgLoss": "660.3", "sL_StrLoss": "660.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002DD072C9C69D5DC07C9F4718C8944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.463596081999967, 49.164966376000102 ], [ -118.463776125999971, 49.163859157000083 ], [ -118.461066079999952, 49.16366880700005 ], [ -118.461648391999944, 49.160088677000097 ], [ -118.461767770000023, 49.160097063000045 ], [ -118.461905222999945, 49.159251880000028 ], [ -118.463968339999923, 49.15939679400006 ], [ -118.467352493999954, 49.159634413000141 ], [ -118.467066555999978, 49.161393830000179 ], [ -118.46726106899996, 49.161391359000085 ], [ -118.467267325999956, 49.16160312800011 ], [ -118.467967220999967, 49.161652256000103 ], [ -118.468503109, 49.161645440000029 ], [ -118.468504425999953, 49.161689960000047 ], [ -118.469625753999978, 49.161768655000074 ], [ -118.469403011999944, 49.163139582000071 ], [ -118.469375377999924, 49.163309657000127 ], [ -118.46938170199995, 49.163523377000054 ], [ -118.469340566999946, 49.163523901000069 ], [ -118.469044035999957, 49.165348819000059 ], [ -118.463737532999971, 49.164976308000043 ], [ -118.463596081999967, 49.164966376000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16261833", "BldgCostT": "9213333", "sL_LossRatio": "1", "sL_AssetLoss": "814.5", "sL_BldgLoss": "814.5", "sL_StrLoss": "814.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8872FF2F69D5DC0172464BDA48A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.468343429999891, 49.086622148000082 ], [ -118.46831956199992, 49.085812820000079 ], [ -118.467908831999935, 49.085818046000057 ], [ -118.467888783999939, 49.085138052000097 ], [ -118.463507163999964, 49.084829870000121 ], [ -118.464088301999936, 49.081249291000084 ], [ -118.46588836699999, 49.081375921000102 ], [ -118.466987882999916, 49.081453255000064 ], [ -118.467148613999882, 49.080462457000095 ], [ -118.47258671899999, 49.080844772000027 ], [ -118.472028950999928, 49.084285304000019 ], [ -118.472006237999921, 49.084425399000047 ], [ -118.47032952699999, 49.084307552000048 ], [ -118.470349305999932, 49.084977348000045 ], [ -118.469938585, 49.084982580000087 ], [ -118.469946549, 49.085252355000122 ], [ -118.46953582399999, 49.085257585000079 ], [ -118.469551747999958, 49.085797137000036 ], [ -118.470783934999972, 49.085781440000055 ], [ -118.470807844999939, 49.086590766000029 ], [ -118.468343429999891, 49.086622148000082 ] ], [ [ -118.469101220999917, 49.084453488000051 ], [ -118.469096233999949, 49.0842845580001 ], [ -118.469068768999989, 49.084453901000082 ], [ -118.469101220999917, 49.084453488000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4768750", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "536.5", "sL_BldgLoss": "536.5", "sL_StrLoss": "536.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051EB68E23E9D5DC03197335F4EAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.458775615999954, 49.336400982000079 ], [ -118.460031052000019, 49.336488846000123 ], [ -118.459446397999969, 49.340068013000092 ], [ -118.459442679999967, 49.340067752000031 ], [ -118.459363519999982, 49.34055231200005 ], [ -118.456708786999911, 49.340366497000083 ], [ -118.453895048999968, 49.340169480000021 ], [ -118.454480131999958, 49.33659034500004 ], [ -118.454483850999978, 49.336590605000019 ], [ -118.45456305499999, 49.336106045000065 ], [ -118.458775615999954, 49.336400982000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.4", "sL_BldgLoss": "31.4", "sL_StrLoss": "31.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5FA29E9FC9B5DC0CA9B4F5F479E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.436790569999943, 49.23420894 ], [ -118.436893605999927, 49.234216190000019 ], [ -118.438148997999988, 49.236201388000111 ], [ -118.438571086999957, 49.237491697000053 ], [ -118.438616284999952, 49.237958143000071 ], [ -118.436205412, 49.237788531000078 ], [ -118.436790569999943, 49.23420894 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5070250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "97.4", "sL_BldgLoss": "97.4", "sL_StrLoss": "97.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095B80A39E19D5DC0DD22CDAB7C8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.465999206999953, 49.104405004000071 ], [ -118.466234194999942, 49.103512011000085 ], [ -118.466233005999982, 49.103034907000037 ], [ -118.466032506, 49.102273010000047 ], [ -118.465893507999951, 49.102036255000051 ], [ -118.466052404999942, 49.102034236000065 ], [ -118.467763095999942, 49.102012493000061 ], [ -118.467975409999923, 49.10200979399999 ], [ -118.467983367999949, 49.102279569000075 ], [ -118.468394232999955, 49.102274342000072 ], [ -118.468431939999917, 49.103552046000068 ], [ -118.468668020999985, 49.103568638000041 ], [ -118.468589266, 49.104053957000048 ], [ -118.468938945999952, 49.104078532000067 ], [ -118.468889913999988, 49.104380684000063 ], [ -118.469126757999931, 49.104397327000065 ], [ -118.468545717999973, 49.107977805000118 ], [ -118.466465338999981, 49.107831594000054 ], [ -118.464908844, 49.107722176000017 ], [ -118.464627605999951, 49.107121005000053 ], [ -118.464501495999912, 49.106997090000043 ], [ -118.46407229299993, 49.106877396000108 ], [ -118.463875809999948, 49.106735006000108 ], [ -118.463913614999953, 49.105691092000043 ], [ -118.464042893999974, 49.105428996000093 ], [ -118.464245415999969, 49.105317908000131 ], [ -118.465149793999913, 49.105289506000048 ], [ -118.465638481999918, 49.105156991000072 ], [ -118.4659621, 49.104981792000025 ], [ -118.46606709799994, 49.104818012000088 ], [ -118.465999206999953, 49.104405004000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68589917", "BldgCostT": "48271667", "sL_LossRatio": "1", "sL_AssetLoss": "95", "sL_BldgLoss": "95", "sL_StrLoss": "95", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DEE80014659E5DC050C2F121CD8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.47249028600001, 49.082403784000043 ], [ -118.477928659999932, 49.082785827000038 ], [ -118.477348566000018, 49.086366472000101 ], [ -118.477020301, 49.086343420000048 ], [ -118.471909776999922, 49.085984402000058 ], [ -118.472170690999945, 49.084375136000041 ], [ -118.47249028600001, 49.082403784000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "131.9", "sL_BldgLoss": "131.9", "sL_StrLoss": "131.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071B160EA009C5DC0F35D63FAD28D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.434701793999935, 49.109302303000042 ], [ -118.434933739999934, 49.107879569000033 ], [ -118.433726959, 49.107794379000026 ], [ -118.433887039999917, 49.10681254900004 ], [ -118.433897100999971, 49.106811195000077 ], [ -118.43421030799999, 49.106687515000033 ], [ -118.434458408999944, 49.106642583000074 ], [ -118.43599160399999, 49.106791590000036 ], [ -118.436476902999971, 49.106895488000056 ], [ -118.436681099999959, 49.107000061000093 ], [ -118.437436908999985, 49.107386999000028 ], [ -118.437716594999983, 49.107460997000011 ], [ -118.437923000999987, 49.107443898000042 ], [ -118.438038912999943, 49.107357 ], [ -118.438056221999958, 49.107251400000102 ], [ -118.437864496999978, 49.106891099000102 ], [ -118.437822121999915, 49.106602005000092 ], [ -118.437850288999968, 49.106488207000091 ], [ -118.437950491999956, 49.106388399000153 ], [ -118.438092717, 49.10634042500002 ], [ -118.438128077, 49.106328491000099 ], [ -118.439197583999956, 49.106367709000075 ], [ -118.440180900999977, 49.106353806000115 ], [ -118.440680689999937, 49.106385589000098 ], [ -118.440142999, 49.109686242000087 ], [ -118.434701793999935, 49.109302303000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6935645", "BldgCostT": "4161524", "sL_LossRatio": "0.990116822706452", "sL_AssetLoss": "168.974", "sL_BldgLoss": "167.304", "sL_StrLoss": "166.7", "sL_NStrLoss": "0.604", "sL_ContLoss": "1.67", "geom_point": "0101000020E6100000CB123A3B5B9B5DC0CEFE1FAB849C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.424551540999957, 49.225039035000101 ], [ -118.424756628999944, 49.223786087000065 ], [ -118.424294816, 49.223753531000092 ], [ -118.424722018999901, 49.221143544000093 ], [ -118.424880713999968, 49.220173928000058 ], [ -118.430334820999917, 49.220558297000096 ], [ -118.430129897999961, 49.221811262000095 ], [ -118.430591694999933, 49.221843793000083 ], [ -118.430006215999953, 49.225423418000048 ], [ -118.427350981999965, 49.225236343000049 ], [ -118.424551540999957, 49.225039035000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7187553", "BldgCostT": "3878746", "sL_LossRatio": "1", "sL_AssetLoss": "416.9", "sL_BldgLoss": "416.9", "sL_StrLoss": "416.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E916687939C5DC09567DAD516934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.443243702999951, 49.150765740000132 ], [ -118.443827223999961, 49.147185635000021 ], [ -118.44558918499996, 49.147309732000075 ], [ -118.449272934999982, 49.147569089000065 ], [ -118.449182230999952, 49.148126022000049 ], [ -118.450412848999946, 49.148110567000131 ], [ -118.450424165999948, 49.148498178000118 ], [ -118.450444353999899, 49.14918966700008 ], [ -118.449210584999918, 49.149205161000069 ], [ -118.449218454999951, 49.149474936000097 ], [ -118.448962009999903, 49.149478155000054 ], [ -118.448689826999939, 49.151149222000122 ], [ -118.443243702999951, 49.150765740000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4128333", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "365.9", "sL_BldgLoss": "365.9", "sL_StrLoss": "365.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082440BB7999D5DC04FCD82DC87954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.463486890999903, 49.166466971000041 ], [ -118.465522209999946, 49.166609881000028 ], [ -118.46494011399993, 49.170189997000151 ], [ -118.462678200000013, 49.170031175000034 ], [ -118.459491626999977, 49.169807348000077 ], [ -118.460074136999978, 49.166227259000024 ], [ -118.463486890999903, 49.166466971000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3771667", "BldgCostT": "2391667", "sL_LossRatio": "0.95835462442514", "sL_AssetLoss": "195.7", "sL_BldgLoss": "187.55", "sL_StrLoss": "184.6", "sL_NStrLoss": "2.95", "sL_ContLoss": "8.15", "geom_point": "0101000020E61000000DB963FB1A9D5DC0E5624657ED8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.454155671999956, 49.091211100000152 ], [ -118.454441832999962, 49.089450508000049 ], [ -118.452582798999984, 49.08931955300006 ], [ -118.452698331999954, 49.088608875000027 ], [ -118.451498312999945, 49.088524325000137 ], [ -118.451849568999933, 49.086363849000122 ], [ -118.45234290599997, 49.085867104000094 ], [ -118.45260781599994, 49.085523606000045 ], [ -118.454135405999949, 49.082385406000149 ], [ -118.454198486999957, 49.082305924000053 ], [ -118.454282397999947, 49.082200202000124 ], [ -118.454485421999919, 49.082076906000026 ], [ -118.454680595999903, 49.082020829000065 ], [ -118.455884664999985, 49.082105641000048 ], [ -118.455870654999941, 49.081626488000033 ], [ -118.455892504999952, 49.081617387000037 ], [ -118.456216680999916, 49.081399401000105 ], [ -118.45622995799999, 49.08137809500009 ], [ -118.457095613999968, 49.081367168000043 ], [ -118.457119294999927, 49.082176501000042 ], [ -118.456925544999947, 49.082178947000074 ], [ -118.457373627999942, 49.082210501000048 ], [ -118.457344538, 49.082389584000026 ], [ -118.458829484999924, 49.082494141000019 ], [ -118.45879408899998, 49.082906593000075 ], [ -118.458635507999958, 49.083160095000025 ], [ -118.457006611999972, 49.084071602000101 ], [ -118.45609780599996, 49.084416193000052 ], [ -118.45582699, 49.084473192000139 ], [ -118.454865991999952, 49.084394898000056 ], [ -118.454577589999957, 49.08442620400011 ], [ -118.454336596, 49.084555793000071 ], [ -118.453848278999928, 49.08518249800003 ], [ -118.453484205999942, 49.085447399000103 ], [ -118.452909196999912, 49.086363100000028 ], [ -118.452384696999928, 49.086702097000099 ], [ -118.452393914999973, 49.08698120400004 ], [ -118.452944088999985, 49.08758648900006 ], [ -118.453350796999956, 49.087895589000048 ], [ -118.454101702999978, 49.088255904000057 ], [ -118.455017898999984, 49.089153200000069 ], [ -118.455439608999924, 49.089983486000051 ], [ -118.455780393999987, 49.090375096000095 ], [ -118.455733007999967, 49.090654303000058 ], [ -118.455059510999916, 49.091014592000086 ], [ -118.454155671999956, 49.091211100000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11100373", "BldgCostT": "7183706", "sL_LossRatio": "1", "sL_AssetLoss": "319.1", "sL_BldgLoss": "319.1", "sL_StrLoss": "319.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000077FC93CFDDA25DC0A7DF748101944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.542306007999969, 49.158511293000046 ], [ -118.542359988, 49.158175752000083 ], [ -118.541268097999975, 49.158099864000064 ], [ -118.541330882999915, 49.157709659000062 ], [ -118.540073188999926, 49.157622232000094 ], [ -118.540649344999935, 49.154041643000028 ], [ -118.540763727999931, 49.154049595000075 ], [ -118.543581538999973, 49.154245447000058 ], [ -118.543693029999929, 49.153552239000113 ], [ -118.544507893999963, 49.153831791000115 ], [ -118.544510636999945, 49.153832734000019 ], [ -118.545313786999913, 49.154018873000012 ], [ -118.54537167399999, 49.154027330000055 ], [ -118.545660562999927, 49.154069579000044 ], [ -118.545949489999941, 49.154111817000093 ], [ -118.5460806899999, 49.15413097400004 ], [ -118.546189706999925, 49.154135931000084 ], [ -118.547509264999974, 49.154195813000115 ], [ -118.547733487999935, 49.154184972000088 ], [ -118.548415526999946, 49.154151960000057 ], [ -118.548635356999966, 49.154122728000061 ], [ -118.549119779999927, 49.154058333000116 ], [ -118.548962811999914, 49.155034999000165 ], [ -118.54919198399989, 49.155050912000107 ], [ -118.54861647199999, 49.158631541000055 ], [ -118.547804423999978, 49.158575151000029 ], [ -118.547753847999942, 49.15888975900009 ], [ -118.542306007999969, 49.158511293000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5522614A69D5DC021D2A90A918C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.460936144999934, 49.097143103000079 ], [ -118.464855953999944, 49.097418829000055 ], [ -118.464440485999887, 49.099978025000063 ], [ -118.464420784999959, 49.100099370000123 ], [ -118.46432340399997, 49.100001390000024 ], [ -118.462482911999984, 49.098467503000101 ], [ -118.460388000999927, 49.097135899000129 ], [ -118.46035439799999, 49.097102170000085 ], [ -118.460936144999934, 49.097143103000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4912917", "BldgCostT": "2891667", "sL_LossRatio": "0.995649528794609", "sL_AssetLoss": "87.117", "sL_BldgLoss": "86.738", "sL_StrLoss": "86.6", "sL_NStrLoss": "0.138", "sL_ContLoss": "0.379", "geom_point": "0101000020E61000002B647461609E5DC055F0805770884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.476062027999959, 49.064504411000037 ], [ -118.477958788999942, 49.064637680000018 ], [ -118.477744588999897, 49.065960451000102 ], [ -118.477481030999954, 49.066195468000075 ], [ -118.47649700099997, 49.066762912000058 ], [ -118.476286520999949, 49.06684231400007 ], [ -118.473382881999953, 49.067937620000066 ], [ -118.472317695999934, 49.067862742000081 ], [ -118.471942249999941, 49.067836347000139 ], [ -118.47252253, 49.064255629000094 ], [ -118.476062027999959, 49.064504411000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4920116", "BldgCostT": "2763879", "sL_LossRatio": "1", "sL_AssetLoss": "150.7", "sL_BldgLoss": "150.7", "sL_StrLoss": "150.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD4E48631BA25DC063E4D9A33F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.53048626499999, 49.156212320000037 ], [ -118.53593373899993, 49.156591386000095 ], [ -118.535357187999978, 49.160171936000083 ], [ -118.529909298999925, 49.159792843000062 ], [ -118.53048626499999, 49.156212320000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6524917", "BldgCostT": "4026667", "sL_LossRatio": "1", "sL_AssetLoss": "388.4", "sL_BldgLoss": "388.4", "sL_StrLoss": "388.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7E8482E7F9D5DC093AAAB0AA6904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.462416705999928, 49.136624407000035 ], [ -118.462313517999945, 49.133117344 ], [ -118.461902396999946, 49.133122551000071 ], [ -118.461886528999912, 49.132583004000011 ], [ -118.461475411999942, 49.132588209000048 ], [ -118.461459548999969, 49.132048660000045 ], [ -118.461048435999956, 49.132053863000095 ], [ -118.461032576999969, 49.13151431500004 ], [ -118.46062146899996, 49.131519517000072 ], [ -118.460613541999962, 49.131249743000055 ], [ -118.460202434999985, 49.131254944000048 ], [ -118.460194511999958, 49.130985169000027 ], [ -118.45978340799995, 49.13099036900006 ], [ -118.459767561999968, 49.130450819000053 ], [ -118.459356461999931, 49.130456017000022 ], [ -118.459339470999936, 49.129877216000054 ], [ -118.456890535999946, 49.12970497400002 ], [ -118.457472743999944, 49.126124678000039 ], [ -118.45831512700002, 49.126183933000036 ], [ -118.462916101999923, 49.12650745500013 ], [ -118.462334307999924, 49.130087777000057 ], [ -118.461812067999958, 49.13005106500006 ], [ -118.461815125999976, 49.130155033000129 ], [ -118.462226222999973, 49.130149826000057 ], [ -118.462234157999944, 49.130419601000028 ], [ -118.462645256999949, 49.130414392000048 ], [ -118.462684946, 49.131763264 ], [ -118.463096056999959, 49.131758054000073 ], [ -118.463127818999965, 49.132837151000111 ], [ -118.463538937999957, 49.132831940000074 ], [ -118.463546880999971, 49.133101714000055 ], [ -118.463958001999941, 49.133096501000082 ], [ -118.464021571, 49.135254692000082 ], [ -118.464432710000011, 49.135249478000034 ], [ -118.464464504999953, 49.136328572000146 ], [ -118.46405335799993, 49.136333788000066 ], [ -118.464061303999927, 49.136603562000104 ], [ -118.46333634299999, 49.136612754000062 ], [ -118.462416705999928, 49.136624407000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17049303", "BldgCostT": "9998746", "sL_LossRatio": "0.998966406140618", "sL_AssetLoss": "728.526", "sL_BldgLoss": "727.773", "sL_StrLoss": "727.5", "sL_NStrLoss": "0.273", "sL_ContLoss": "0.753", "geom_point": "0101000020E6100000619D3250BC9D5DC03194B0C26F894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.457706416999983, 49.077594297000068 ], [ -118.457742288999924, 49.076929209000077 ], [ -118.457577909999927, 49.075783131000108 ], [ -118.457941844999979, 49.075808762000065 ], [ -118.458242329999962, 49.073958436000055 ], [ -118.461404157999951, 49.074181054000071 ], [ -118.461554926999938, 49.07325220900001 ], [ -118.463859136999929, 49.073414384000074 ], [ -118.464137980999965, 49.07343400600007 ], [ -118.464411123999952, 49.073453227000066 ], [ -118.464478434999961, 49.073038373000024 ], [ -118.464856718999954, 49.070706775000076 ], [ -118.46485743099997, 49.070706825000087 ], [ -118.465247427999884, 49.068302777000042 ], [ -118.470684098999968, 49.068685195000057 ], [ -118.470637586999956, 49.068972130000041 ], [ -118.470366618999961, 49.070643650000086 ], [ -118.470103622999943, 49.072265879000092 ], [ -118.470102911999959, 49.072265829000067 ], [ -118.46971313100002, 49.074669880000116 ], [ -118.466856837999927, 49.074469005000012 ], [ -118.466411324999939, 49.077215448000089 ], [ -118.463249267, 49.076992978000156 ], [ -118.463148104000012, 49.077616308000074 ], [ -118.463152167999908, 49.077754655000106 ], [ -118.46316090199997, 49.078051904000084 ], [ -118.461928901999968, 49.078067518000047 ], [ -118.461922195999961, 49.077839034000107 ], [ -118.459233894999954, 49.077649792000074 ], [ -118.458933424999927, 49.079500110000026 ], [ -118.45827036499999, 49.079453423000082 ], [ -118.457967272999923, 49.079432081000014 ], [ -118.457920521999895, 49.078383307000095 ], [ -118.457706416999983, 49.077594297000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7277333", "BldgCostT": "4283333", "sL_LossRatio": "1", "sL_AssetLoss": "405.7", "sL_BldgLoss": "405.7", "sL_StrLoss": "405.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000B6F628A2A9C5DC050118EF6CB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.440937296999948, 49.207384670000053 ], [ -118.443790214999979, 49.207585390000069 ], [ -118.443205931999955, 49.211165164000064 ], [ -118.441924516999933, 49.21107501900012 ], [ -118.441855591999939, 49.211497193000042 ], [ -118.440533742999918, 49.211404187 ], [ -118.436402454999907, 49.211113400000066 ], [ -118.436987260999942, 49.207533663000042 ], [ -118.438268568999916, 49.207623868000077 ], [ -118.438337519999948, 49.207201693000108 ], [ -118.440937296999948, 49.207384670000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "33.5", "sL_BldgLoss": "33.5", "sL_StrLoss": "33.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003947FC0EAE9D5DC05A14D10A678D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.463104477999963, 49.107595302000064 ], [ -118.46315355, 49.10729315400004 ], [ -118.462916693999944, 49.107276498000019 ], [ -118.462958508999975, 49.107019027000085 ], [ -118.462113185999954, 49.106959576000101 ], [ -118.462694707999944, 49.103379127000068 ], [ -118.463190297, 49.103413983000152 ], [ -118.463227295999928, 49.103186138000062 ], [ -118.465548761, 49.103349379000058 ], [ -118.465521944999978, 49.102438921000115 ], [ -118.46577259499999, 49.103167395000071 ], [ -118.465621698999939, 49.104563106000036 ], [ -118.465408815999922, 49.104826595000127 ], [ -118.463767493999924, 49.104883598000079 ], [ -118.463387806999947, 49.105041593000081 ], [ -118.46309360399998, 49.105296593000027 ], [ -118.4629477, 49.105928903000098 ], [ -118.463008404, 49.106548497000112 ], [ -118.463282108000016, 49.106985694000088 ], [ -118.463757388999937, 49.107313291000018 ], [ -118.463942876999965, 49.107625195000125 ], [ -118.463943875999973, 49.107654328000109 ], [ -118.463104477999963, 49.107595302000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90894842", "BldgCostT": "61839118", "sL_LossRatio": "0.999506902764329", "sL_AssetLoss": "1675.126", "sL_BldgLoss": "1674.3", "sL_StrLoss": "1674", "sL_NStrLoss": "0.3", "sL_ContLoss": "0.826", "geom_point": "0101000020E6100000AEDF2B3EAE9C5DC0A93528F5408E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.444620744999938, 49.116874562000056 ], [ -118.445151154000015, 49.113617208000043 ], [ -118.441694070000011, 49.113373489000033 ], [ -118.442277242999978, 49.10979318600009 ], [ -118.444700460999968, 49.109964031000047 ], [ -118.444981606999974, 49.108237222000135 ], [ -118.444728352999974, 49.10824039200007 ], [ -118.444706229999923, 49.107478615000041 ], [ -118.442834299999944, 49.107346635000077 ], [ -118.442982707999946, 49.106435295000047 ], [ -118.443255791999931, 49.106396789000073 ], [ -118.44374051299999, 49.106377596000058 ], [ -118.444628123999976, 49.106519806000058 ], [ -118.444795197999952, 49.106465507000053 ], [ -118.444731738999934, 49.106259628000103 ], [ -118.444717194999924, 49.106212406000097 ], [ -118.444646620999947, 49.105983405000124 ], [ -118.444630905999986, 49.105869091000045 ], [ -118.444664011000015, 49.105737536000078 ], [ -118.444708806999955, 49.105559491000122 ], [ -118.444996080999942, 49.105071002000031 ], [ -118.445328708999952, 49.104692402000062 ], [ -118.446335878999946, 49.104015601000093 ], [ -118.446385178999961, 49.10397552800007 ], [ -118.44885793899999, 49.104149793000012 ], [ -118.448375418999916, 49.107115181000083 ], [ -118.448395198999904, 49.107114934000037 ], [ -118.448410906999953, 49.107654488000065 ], [ -118.448821820999967, 49.107649330000058 ], [ -118.448828033999931, 49.107862693000072 ], [ -118.452808861999983, 49.108143093000116 ], [ -118.452226519999968, 49.1117234620001 ], [ -118.449944096999971, 49.11156271300009 ], [ -118.449918421999953, 49.111720515000023 ], [ -118.447495090999951, 49.11154978700003 ], [ -118.447188376999961, 49.113434126000115 ], [ -118.447529571999922, 49.113458166000093 ], [ -118.447832711999922, 49.111595716000089 ], [ -118.450621971, 49.111792211000143 ], [ -118.450637887999932, 49.111694380000102 ], [ -118.456079502999913, 49.112077512000035 ], [ -118.455727180999958, 49.114244479000035 ], [ -118.455656198, 49.114243491000067 ], [ -118.454568419999987, 49.114041200000017 ], [ -118.453841081999897, 49.114058295000063 ], [ -118.453379898999955, 49.114172287 ], [ -118.452854598999949, 49.11451260899999 ], [ -118.452793927999949, 49.114599172000055 ], [ -118.452670899999958, 49.114774704000112 ], [ -118.452601705999925, 49.115253207000094 ], [ -118.451978620999967, 49.115935406000119 ], [ -118.451205611999981, 49.116268703000046 ], [ -118.450226184999934, 49.11651523500008 ], [ -118.450184263999986, 49.116512283000084 ], [ -118.450181971999911, 49.116526365000084 ], [ -118.44988742399994, 49.116600503000029 ], [ -118.448921384999906, 49.117177590000104 ], [ -118.4485664799999, 49.117152590000039 ], [ -118.448531206999917, 49.117148802000038 ], [ -118.448527757999912, 49.11714986200014 ], [ -118.446342037999969, 49.116995868000075 ], [ -118.444620744999938, 49.116874562000056 ] ], [ [ -118.446773138999987, 49.107877503000111 ], [ -118.446767253999937, 49.107675103000069 ], [ -118.446356340999941, 49.107680252000108 ], [ -118.446361231, 49.107848473000061 ], [ -118.446773138999987, 49.107877503000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76729750", "BldgCostT": "53125000", "sL_LossRatio": "1", "sL_AssetLoss": "739.4", "sL_BldgLoss": "739.4", "sL_StrLoss": "739.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075AD7B33439E5DC00F0D28279C864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.472020566999959, 49.055203181000117 ], [ -118.472447939999981, 49.052565259000069 ], [ -118.472267336999963, 49.052567563000082 ], [ -118.472259367999982, 49.052297786000089 ], [ -118.471438463999945, 49.052308257000035 ], [ -118.471446426999975, 49.052578034000092 ], [ -118.470215062999969, 49.052593730000062 ], [ -118.470207105, 49.052323953000084 ], [ -118.469386198999985, 49.052334410000114 ], [ -118.469378246999938, 49.052064633000029 ], [ -118.468557342999972, 49.052075083000069 ], [ -118.468541448999986, 49.051535529000034 ], [ -118.46813100199995, 49.051540752000051 ], [ -118.468123055999968, 49.051270974 ], [ -118.467712611999943, 49.051276196000103 ], [ -118.467696725999986, 49.050736641000107 ], [ -118.467286286, 49.050741861000077 ], [ -118.46722276399997, 49.048583641000022 ], [ -118.467633186999961, 49.048578421000038 ], [ -118.467609361999962, 49.047769088000109 ], [ -118.46801977799997, 49.047763868000047 ], [ -118.468011832999977, 49.04749409000015 ], [ -118.468422247999968, 49.047488867000055 ], [ -118.468414301999971, 49.047219090000063 ], [ -118.470466357999953, 49.047192957000043 ], [ -118.470474314999976, 49.047462734000113 ], [ -118.470884726999941, 49.047457503000025 ], [ -118.470924523999969, 49.048806389000056 ], [ -118.47051410099999, 49.04881162 ], [ -118.470530014999923, 49.049351175000041 ], [ -118.47094044499994, 49.049345943000063 ], [ -118.470932483999917, 49.049076167000067 ], [ -118.471342909999976, 49.049070934000035 ], [ -118.471326986999912, 49.048531379000089 ], [ -118.471737407999953, 49.048526146000057 ], [ -118.471681662999941, 49.046637705000137 ], [ -118.472092068999984, 49.046632470000127 ], [ -118.472044277999942, 49.045013807000068 ], [ -118.472454669999962, 49.045008571000082 ], [ -118.472446703999964, 49.044738794000125 ], [ -118.47271211599994, 49.044735407000083 ], [ -118.472423205999945, 49.045704993000065 ], [ -118.472317735000019, 49.046650563000085 ], [ -118.472313408000019, 49.046689397000094 ], [ -118.472295131999886, 49.04685347700017 ], [ -118.472149915999935, 49.048155783000034 ], [ -118.472168590999985, 49.048252038000079 ], [ -118.472251111999981, 49.048676194000045 ], [ -118.472375710999955, 49.048924902000117 ], [ -118.472915296999972, 49.05021688800008 ], [ -118.473255819999949, 49.050759165000045 ], [ -118.473322688999986, 49.05086569200013 ], [ -118.473776139999927, 49.05129443600007 ], [ -118.473950668999962, 49.051459494000035 ], [ -118.475301893000022, 49.052492386000026 ], [ -118.475914801999949, 49.053008792000149 ], [ -118.476025018, 49.053101644 ], [ -118.476033501999922, 49.053108810000055 ], [ -118.476411398999971, 49.053082889000031 ], [ -118.477509919999946, 49.052842306000045 ], [ -118.478122185999894, 49.052658994000048 ], [ -118.479538078999923, 49.051874805000125 ], [ -118.479776409999943, 49.052211094000064 ], [ -118.479965368999956, 49.052733192000076 ], [ -118.480047810999963, 49.053327483000082 ], [ -118.480608933999932, 49.05396047600005 ], [ -118.480507444999958, 49.054587599000122 ], [ -118.477649794999977, 49.054386825000094 ], [ -118.477455766000034, 49.055585264000108 ], [ -118.476686180999977, 49.05553118100007 ], [ -118.472020566999959, 49.055203181000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67688500", "BldgCostT": "47650000", "sL_LossRatio": "1", "sL_AssetLoss": "55.6", "sL_BldgLoss": "55.6", "sL_StrLoss": "55.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043DAEF1E1A9C5DC0D5006BF6BC9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.43974783799996, 49.230525771000025 ], [ -118.440913010999921, 49.230607726000137 ], [ -118.440328216999944, 49.23418736000005 ], [ -118.439485231999925, 49.234128068000082 ], [ -118.437519719999926, 49.233989796000046 ], [ -118.437329918999964, 49.233530999000017 ], [ -118.437292419999892, 49.23219080100008 ], [ -118.43785929199997, 49.231374699000085 ], [ -118.438126415999989, 49.230678302000108 ], [ -118.438434805999989, 49.230451086000087 ], [ -118.438455430999923, 49.230434851000062 ], [ -118.43974783799996, 49.230525771000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.4", "sL_BldgLoss": "34.4", "sL_StrLoss": "34.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000096DF77A109D5DC02D6BAC0ECA8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.454009089999957, 49.114605193000052 ], [ -118.454634404, 49.114489799000083 ], [ -118.455298515999985, 49.114652202000094 ], [ -118.455655364999956, 49.114686164000084 ], [ -118.455497362999935, 49.115657876000064 ], [ -118.454165592999928, 49.115564136000131 ], [ -118.453968056999969, 49.116778707000087 ], [ -118.452266438999942, 49.116658910000091 ], [ -118.452988410999978, 49.11631001000007 ], [ -118.453021792999962, 49.116012290000064 ], [ -118.453411208999938, 49.115243302000088 ], [ -118.453684795999891, 49.114807405000114 ], [ -118.454009089999957, 49.114605193000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.7", "sL_BldgLoss": "52.7", "sL_StrLoss": "52.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000DD628B93D9D5DC0A6C443526A864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.456477093999965, 49.050390600000085 ], [ -118.456056715, 49.050187097000062 ], [ -118.455770447999953, 49.05008417600007 ], [ -118.45577027, 49.050078091000088 ], [ -118.45575409099996, 49.050078295000063 ], [ -118.455539900999952, 49.050001287000043 ], [ -118.455466394999974, 49.049981895000045 ], [ -118.455289323999978, 49.049935157000029 ], [ -118.455508936999962, 49.049457374000099 ], [ -118.455719504999948, 49.048999218000091 ], [ -118.455738759000013, 49.048998976000043 ], [ -118.455746635999958, 49.049268755000107 ], [ -118.456567495999963, 49.049258396000035 ], [ -118.456575378999915, 49.049528175000034 ], [ -118.457357764999955, 49.049518295000063 ], [ -118.457397281999988, 49.049553359000086 ], [ -118.457404129999986, 49.049787588000108 ], [ -118.45763969099994, 49.049784612000032 ], [ -118.457820421999926, 49.049982677000038 ], [ -118.457830342999955, 49.050321961000073 ], [ -118.458126598999954, 49.05031821700004 ], [ -118.458244606999941, 49.050447542000057 ], [ -118.458264456999927, 49.051126110000062 ], [ -118.457553977999964, 49.051135087000027 ], [ -118.457497072999956, 49.051082689000076 ], [ -118.456932401999936, 49.050667105000088 ], [ -118.456477093999965, 49.050390600000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5377167", "BldgCostT": "3236667", "sL_LossRatio": "1", "sL_AssetLoss": "113.2", "sL_BldgLoss": "113.2", "sL_StrLoss": "113.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B0E2F259E9D5DC075F8F75B33924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.461703030999928, 49.14030628000004 ], [ -118.46579091599996, 49.140593509000034 ], [ -118.465209165999966, 49.144173770000023 ], [ -118.461176486999975, 49.143890421000087 ], [ -118.459763722999966, 49.143791119000063 ], [ -118.460345885999942, 49.140210886000034 ], [ -118.461703030999928, 49.14030628000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9863833", "BldgCostT": "5803333", "sL_LossRatio": "1", "sL_AssetLoss": "769.4", "sL_BldgLoss": "769.4", "sL_StrLoss": "769.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FD34444569C5DC099858FEBD38F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.440204970999972, 49.12649951500002 ], [ -118.440729709999943, 49.123279593000078 ], [ -118.440137278999956, 49.123237820000099 ], [ -118.44072069500001, 49.119657580000144 ], [ -118.443349653999974, 49.119842925000107 ], [ -118.444933596999988, 49.119954563000121 ], [ -118.443911506999967, 49.120867506000089 ], [ -118.443445316999927, 49.121754703000121 ], [ -118.442907787999914, 49.122184910000058 ], [ -118.442769402999886, 49.122555110000093 ], [ -118.442835496999962, 49.123003806000099 ], [ -118.443112590999959, 49.123576293000028 ], [ -118.443500407999963, 49.123715886000085 ], [ -118.444269601999963, 49.123714505000031 ], [ -118.445921422999973, 49.123281084000041 ], [ -118.446231267999963, 49.123302915000053 ], [ -118.445743816999965, 49.126296235000062 ], [ -118.445648230999922, 49.126883164000041 ], [ -118.440204970999972, 49.12649951500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78280450", "BldgCostT": "53852213", "sL_LossRatio": "0.996076540928507", "sL_AssetLoss": "746.79", "sL_BldgLoss": "743.86", "sL_StrLoss": "742.8", "sL_NStrLoss": "1.06", "sL_ContLoss": "2.93", "geom_point": "0101000020E6100000D27B42FAD69D5DC0740987DEE2844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.474431584999977, 49.042444481000096 ], [ -118.47440953499995, 49.041698772000089 ], [ -118.473116680999979, 49.041607846000026 ], [ -118.473183852999952, 49.041193065000044 ], [ -118.47304280599991, 49.041183145000083 ], [ -118.473053015999938, 49.041120101000082 ], [ -118.470387330999927, 49.040932571000063 ], [ -118.470717536999956, 49.038894211000056 ], [ -118.46952014, 49.038809953000055 ], [ -118.469572614999919, 49.03848605400006 ], [ -118.468057835999957, 49.038379442000085 ], [ -118.46801528499999, 49.038642030000041 ], [ -118.465973557, 49.038498296000078 ], [ -118.465952796999943, 49.038626377000078 ], [ -118.463019180999964, 49.038419787000052 ], [ -118.462977172999956, 49.038678844000103 ], [ -118.460489047999928, 49.038503561000077 ], [ -118.460376889999935, 49.039195001000117 ], [ -118.454943738999987, 49.038812044000075 ], [ -118.455153434999914, 49.037520223000072 ], [ -118.450057977999933, 49.037160812000067 ], [ -118.45015250499992, 49.036578848000076 ], [ -118.450764946999954, 49.036585339000084 ], [ -118.452788933999898, 49.036598575000021 ], [ -118.457706591999923, 49.037334703000077 ], [ -118.460384705999957, 49.036927885000082 ], [ -118.460512494999946, 49.036715893000128 ], [ -118.460689311999914, 49.036582590000101 ], [ -118.460952689999942, 49.036517012000068 ], [ -118.462247905999973, 49.036493199000112 ], [ -118.463652926999885, 49.036512502000072 ], [ -118.46540350399998, 49.036526283000043 ], [ -118.468613121999965, 49.036545533 ], [ -118.470296961999964, 49.036555586000127 ], [ -118.47233410699999, 49.036567688000076 ], [ -118.47234778699999, 49.036567486000067 ], [ -118.474003196999931, 49.036542003000129 ], [ -118.475038690999938, 49.036552395000065 ], [ -118.475064182999944, 49.037811799000067 ], [ -118.475070351999989, 49.038062034000077 ], [ -118.475078703999941, 49.03840133500006 ], [ -118.475086618999981, 49.039247965000087 ], [ -118.475092586999963, 49.039885389000112 ], [ -118.475094759999948, 49.040220678000033 ], [ -118.47510282199994, 49.04147689800007 ], [ -118.475052236999957, 49.041651433 ], [ -118.475040589999963, 49.041691646000039 ], [ -118.474573395999926, 49.042286212000072 ], [ -118.474431584999977, 49.042444481000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80681916", "BldgCostT": "55611666", "sL_LossRatio": "1", "sL_AssetLoss": "826.1", "sL_BldgLoss": "826.1", "sL_StrLoss": "826.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000925D5937589D5DC0E61BFABC1C984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.455912366999939, 49.191965594000045 ], [ -118.456138360999915, 49.190578088000045 ], [ -118.454465614999947, 49.190460557000087 ], [ -118.454673676999931, 49.189183353000061 ], [ -118.452197130999963, 49.189009297000034 ], [ -118.45278044299998, 49.185429354000085 ], [ -118.457311546999946, 49.18574776500008 ], [ -118.457467176999955, 49.184791958000083 ], [ -118.45908526699999, 49.184905617000034 ], [ -118.462917402999935, 49.1851746990001 ], [ -118.462579702999946, 49.187250148000082 ], [ -118.464300996999967, 49.187370966000103 ], [ -118.46371854899995, 49.19095096200008 ], [ -118.461614901999923, 49.190803302000049 ], [ -118.46136342199992, 49.192348411000125 ], [ -118.456354267, 49.191996638000049 ], [ -118.455912366999939, 49.191965594000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68993500", "BldgCostT": "48550000", "sL_LossRatio": "1", "sL_AssetLoss": "114.1", "sL_BldgLoss": "114.1", "sL_StrLoss": "114.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E1804982A9C5DC0B2EBC5ED239A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.441783697999966, 49.202529509 ], [ -118.443118016999932, 49.20262339600005 ], [ -118.442533743999931, 49.206203193000107 ], [ -118.441140350999945, 49.20610515000002 ], [ -118.437081221999946, 49.205819433000087 ], [ -118.437665908999946, 49.2022396630001 ], [ -118.441783697999966, 49.202529509 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12109334", "BldgCostT": "7198334", "sL_LossRatio": "0.985880495790458", "sL_AssetLoss": "342.08", "sL_BldgLoss": "337.25", "sL_StrLoss": "335.5", "sL_NStrLoss": "1.75", "sL_ContLoss": "4.83", "geom_point": "0101000020E6100000C77054F21A9C5DC0A728349C74984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.43609841599999, 49.190044206000039 ], [ -118.437433581999969, 49.189253693000069 ], [ -118.437904116999931, 49.188887695000062 ], [ -118.438157089999933, 49.188489216000107 ], [ -118.438336086999968, 49.187712695000066 ], [ -118.438820340999939, 49.187274494000107 ], [ -118.44209836899995, 49.187505288000075 ], [ -118.441696774999926, 49.189966413000015 ], [ -118.443736181999938, 49.190109948000085 ], [ -118.443152114999961, 49.193689817000127 ], [ -118.43851223499999, 49.193363203000075 ], [ -118.438452116999954, 49.19373142400012 ], [ -118.433483664999983, 49.193381454000082 ], [ -118.433638590999976, 49.193258608000093 ], [ -118.433774386999943, 49.192780092000135 ], [ -118.434317309, 49.19209930400006 ], [ -118.434300620999963, 49.191522504000062 ], [ -118.43466039899991, 49.191149288000069 ], [ -118.434788994999934, 49.190851699000056 ], [ -118.435312003999968, 49.190377385000062 ], [ -118.435666303999966, 49.190179895000021 ], [ -118.43609841599999, 49.190044206000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "32.5", "sL_BldgLoss": "32.5", "sL_StrLoss": "32.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003CBB0024E89B5DC01C5EEF82B19D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.43545763599991, 49.230223898000084 ], [ -118.437621943999915, 49.230376208000074 ], [ -118.437603403999901, 49.230595710000024 ], [ -118.43694169599992, 49.23152141100006 ], [ -118.436538997999932, 49.23229048700005 ], [ -118.436580091999943, 49.233720388000052 ], [ -118.436714626999944, 49.233933148000077 ], [ -118.434872426999945, 49.233803503000061 ], [ -118.43545763599991, 49.230223898000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68969333", "BldgCostT": "48533333", "sL_LossRatio": "1", "sL_AssetLoss": "141.3", "sL_BldgLoss": "141.3", "sL_StrLoss": "141.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EF8D631C8A9C5DC0502047CE9D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.443498224999971, 49.151271540000074 ], [ -118.448944409999939, 49.151655009000102 ], [ -118.44836122599996, 49.155235117000124 ], [ -118.442914628, 49.154851621000127 ], [ -118.443498224999971, 49.151271540000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4961250", "BldgCostT": "2925000", "sL_LossRatio": "1", "sL_AssetLoss": "101", "sL_BldgLoss": "101", "sL_StrLoss": "101", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FEEB1D3939C5DC097A563EFC1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.442949305999889, 49.256816874000037 ], [ -118.443343770999945, 49.254402761000087 ], [ -118.443478929999969, 49.253575538000078 ], [ -118.443679499999973, 49.253845896 ], [ -118.443850907, 49.254589295000159 ], [ -118.444175809999933, 49.254855690000063 ], [ -118.444797598999941, 49.254973901000049 ], [ -118.445687804999977, 49.254908304 ], [ -118.448530300999906, 49.25483710300005 ], [ -118.450119478999909, 49.255069298000095 ], [ -118.450143654999962, 49.255075289 ], [ -118.450075758999915, 49.255491192000093 ], [ -118.449805624999968, 49.257145876000095 ], [ -118.44907961, 49.257094903000066 ], [ -118.449064295999946, 49.25718869300006 ], [ -118.448417184999954, 49.257143255000088 ], [ -118.448407868999979, 49.257200308000058 ], [ -118.442949305999889, 49.256816874000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.4", "sL_BldgLoss": "41.4", "sL_StrLoss": "41.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004055BFB12B9D5DC010504CA4D5894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.45481729, 49.076919700000076 ], [ -118.454533524999988, 49.076821805000172 ], [ -118.45420051499994, 49.076806498000025 ], [ -118.453859924999961, 49.076875090000058 ], [ -118.454077426000012, 49.075536547000084 ], [ -118.456887532999971, 49.075734509000029 ], [ -118.456901002999942, 49.075796886000084 ], [ -118.456934782, 49.076966197000104 ], [ -118.457051501999956, 49.077234009000101 ], [ -118.45700170399999, 49.078277891000042 ], [ -118.457191576999918, 49.079377456000074 ], [ -118.456891901999953, 49.079356351000087 ], [ -118.456893197999975, 49.079333905000091 ], [ -118.456861206999974, 49.079082702000107 ], [ -118.456733398999944, 49.078811094000066 ], [ -118.456515985999943, 49.078524214000019 ], [ -118.455330412999956, 49.077248288000128 ], [ -118.455075375999954, 49.077049186000089 ], [ -118.45481729, 49.076919700000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6359584", "BldgCostT": "3858334", "sL_LossRatio": "1", "sL_AssetLoss": "629", "sL_BldgLoss": "629", "sL_StrLoss": "629", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F66737E1BB9D5DC0090C825C1C8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.461783817999972, 49.119412164000082 ], [ -118.461840302999974, 49.119064526000031 ], [ -118.461514684999926, 49.119041629000023 ], [ -118.462096402999975, 49.115461251000042 ], [ -118.465159330999924, 49.115676590000071 ], [ -118.467538553999972, 49.115843799000082 ], [ -118.467344121999986, 49.117041420000135 ], [ -118.467669727999962, 49.11706429900002 ], [ -118.467088416999957, 49.120644699000124 ], [ -118.461645709999985, 49.120262130000128 ], [ -118.461783817999972, 49.119412164000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68969333", "BldgCostT": "48533333", "sL_LossRatio": "1", "sL_AssetLoss": "140.3", "sL_BldgLoss": "140.3", "sL_StrLoss": "140.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB31F6B1C49C5DC0155A31B756924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.447942581999953, 49.141350731000038 ], [ -118.452519340999942, 49.141672884000094 ], [ -118.451936556999939, 49.145253067000098 ], [ -118.447276446999965, 49.144925046000061 ], [ -118.446491097, 49.144869746000047 ], [ -118.447074294999979, 49.141289591000074 ], [ -118.447942581999953, 49.141350731000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.971942912747324", "sL_AssetLoss": "123.32", "sL_BldgLoss": "119.86", "sL_StrLoss": "118.6", "sL_NStrLoss": "1.26", "sL_ContLoss": "3.46", "geom_point": "0101000020E6100000D245D82A60A35DC04B681E02BF934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.553507865999904, 49.152217401000016 ], [ -118.555406194999961, 49.152349131000044 ], [ -118.554831193999959, 49.155929808000067 ], [ -118.549383641999938, 49.155551698000089 ], [ -118.54963846299998, 49.153966095000044 ], [ -118.550502712999929, 49.153760143000035 ], [ -118.55145068099992, 49.153422252000105 ], [ -118.552313906999984, 49.152986136000138 ], [ -118.553507865999904, 49.152217401000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "149.1", "sL_BldgLoss": "149.1", "sL_StrLoss": "149.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003973F66BBE9E5DC0CBC39D665C8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.477942925999955, 49.086776121000099 ], [ -118.48338185599998, 49.08715788600005 ], [ -118.482802125999939, 49.090738536000082 ], [ -118.47790807699991, 49.090395031000128 ], [ -118.477362783, 49.090356744000125 ], [ -118.477610833999961, 49.08882584800007 ], [ -118.477942925999955, 49.086776121000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3771667", "BldgCostT": "2391667", "sL_LossRatio": "0.996601602594513", "sL_AssetLoss": "115.937", "sL_BldgLoss": "115.543", "sL_StrLoss": "115.4", "sL_NStrLoss": "0.143", "sL_ContLoss": "0.394", "geom_point": "0101000020E6100000FD7434F5579C5DC00F37F11F9C994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.440434806999946, 49.198095313000088 ], [ -118.445886450999964, 49.198478908 ], [ -118.445742227999958, 49.199363022000071 ], [ -118.445302445999985, 49.202058744000055 ], [ -118.442122243999975, 49.20183501000011 ], [ -118.439850384999971, 49.201675120000054 ], [ -118.440434806999946, 49.198095313000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14527417", "BldgCostT": "8811667", "sL_LossRatio": "1", "sL_AssetLoss": "820.3", "sL_BldgLoss": "820.3", "sL_StrLoss": "820.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070BEC74F599D5DC071CE3E45448B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.454111610999988, 49.087697596000048 ], [ -118.453534288999947, 49.087093794000118 ], [ -118.453356491999955, 49.086699188000104 ], [ -118.453550308999979, 49.086301906000109 ], [ -118.453951316999948, 49.085945808000126 ], [ -118.45441148399999, 49.085273605000104 ], [ -118.454666703999933, 49.085099905000064 ], [ -118.455778707999954, 49.084708197000062 ], [ -118.457084909999978, 49.084449005000067 ], [ -118.457937789999932, 49.084077304000068 ], [ -118.459150798999971, 49.083433485000057 ], [ -118.459419215999944, 49.082781308000072 ], [ -118.459462307999928, 49.082538691000146 ], [ -118.459644726999926, 49.082551533000114 ], [ -118.461037931999911, 49.082649600000117 ], [ -118.460456540999971, 49.086230154000056 ], [ -118.459460494999973, 49.086160046000082 ], [ -118.459378016999935, 49.086667877000082 ], [ -118.458634559999936, 49.086615541000064 ], [ -118.458605992999978, 49.086791421000022 ], [ -118.461357700999912, 49.086985102000092 ], [ -118.461244531999981, 49.087682065000052 ], [ -118.463674477999916, 49.087853039000038 ], [ -118.463093223999948, 49.091433580000107 ], [ -118.459733890999956, 49.091197199000128 ], [ -118.459595107, 49.092051656000095 ], [ -118.459521441999954, 49.092046471000067 ], [ -118.459470017999934, 49.092363058000046 ], [ -118.455749467999965, 49.09210113299999 ], [ -118.454030676999935, 49.091980087000124 ], [ -118.454065267999951, 49.091767283000138 ], [ -118.454503100999972, 49.09171388700004 ], [ -118.45504768399995, 49.091562896000092 ], [ -118.455289082999968, 49.091380605000083 ], [ -118.456020119999963, 49.091109999000054 ], [ -118.456309799999957, 49.090692696000062 ], [ -118.456308796, 49.090215595000039 ], [ -118.456057706999943, 49.089588987000113 ], [ -118.456065901, 49.08935540900012 ], [ -118.455542604999962, 49.088839803000063 ], [ -118.455307721999986, 49.088302904000031 ], [ -118.454111610999988, 49.087697596000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "29.4", "sL_BldgLoss": "29.4", "sL_StrLoss": "29.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000030E1E9F89C9C5DC042FD57EB7EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.444242488, 49.254341507000021 ], [ -118.44407350299997, 49.253696304000087 ], [ -118.443830120999948, 49.253258145000082 ], [ -118.444181234999945, 49.253282816000144 ], [ -118.444190555999981, 49.253225763000067 ], [ -118.444916506999988, 49.253276769000081 ], [ -118.444931828, 49.253182980000084 ], [ -118.450389977999947, 49.253566316000061 ], [ -118.450216867999956, 49.254626791000078 ], [ -118.449275985, 49.254476790000041 ], [ -118.447553821, 49.254310200000127 ], [ -118.444739503999983, 49.25444409600005 ], [ -118.44439599099999, 49.254402800000079 ], [ -118.444242488, 49.254341507000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5353000", "BldgCostT": "3220000", "sL_LossRatio": "1", "sL_AssetLoss": "111.1", "sL_BldgLoss": "111.1", "sL_StrLoss": "111.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008DCE9E70DB9B5DC0619D746CCE974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.436490648999921, 49.188085401000073 ], [ -118.436514904999953, 49.187936852000064 ], [ -118.435866670999943, 49.187891187000091 ], [ -118.432333836999987, 49.187642244000074 ], [ -118.432918660999945, 49.184062401000077 ], [ -118.438368599999961, 49.184446384000061 ], [ -118.438299326999982, 49.184870755000112 ], [ -118.437999737999945, 49.186705958000076 ], [ -118.437751406999936, 49.186955 ], [ -118.43714679199995, 49.187430696000028 ], [ -118.436871788999952, 49.187856590000081 ], [ -118.436490648999921, 49.188085401000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10281667", "BldgCostT": "5616667", "sL_LossRatio": "1", "sL_AssetLoss": "96.5", "sL_BldgLoss": "96.5", "sL_StrLoss": "96.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029D599D6819D5DC0E11D09C9BC8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.459415978, 49.097036133000145 ], [ -118.459556130999914, 49.097045996000134 ], [ -118.45974809099998, 49.097234091000104 ], [ -118.461212106999966, 49.098132801000091 ], [ -118.46183177799999, 49.098709596000056 ], [ -118.464029205999935, 49.10030190600002 ], [ -118.464335395999925, 49.10062531500008 ], [ -118.464274671999974, 49.100999322000099 ], [ -118.458834283000016, 49.100616600000173 ], [ -118.459415978, 49.097036133000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5425500", "BldgCostT": "3270000", "sL_LossRatio": "1", "sL_AssetLoss": "159.7", "sL_BldgLoss": "159.7", "sL_StrLoss": "159.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F39E1C68F29D5DC00977A19840A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.465541224999953, 49.312494652000062 ], [ -118.47094463399999, 49.312872584000118 ], [ -118.470361122000014, 49.316451936000057 ], [ -118.464895401999982, 49.316069645000042 ], [ -118.465469393999939, 49.312551244000126 ], [ -118.465480980999956, 49.312537596000027 ], [ -118.465541224999953, 49.312494652000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.998512273203108", "sL_AssetLoss": "92.0868", "sL_BldgLoss": "91.9498", "sL_StrLoss": "91.9", "sL_NStrLoss": "0.0498", "sL_ContLoss": "0.137", "geom_point": "0101000020E61000004D7D49F8589D5DC0456B7F46ED924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.456443678999975, 49.148615294000109 ], [ -118.456699283999939, 49.148467200000049 ], [ -118.456937693999947, 49.148645193000064 ], [ -118.457073705999946, 49.148633799000059 ], [ -118.45718329099995, 49.148596800000092 ], [ -118.457219683999966, 49.148434502000065 ], [ -118.456963010999971, 49.148068396000092 ], [ -118.455739175999923, 49.147177080000048 ], [ -118.455687995999938, 49.147139804000084 ], [ -118.455886403999983, 49.146930493000056 ], [ -118.455974319999925, 49.145949923000053 ], [ -118.459344989999977, 49.146186922000084 ], [ -118.459488682999947, 49.146197022000123 ], [ -118.461179342999941, 49.146315853000019 ], [ -118.46059716799995, 49.149896057000035 ], [ -118.4593882599999, 49.149811090000156 ], [ -118.455893853999925, 49.149565412000051 ], [ -118.456443678999975, 49.148615294000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5401333", "BldgCostT": "3253333", "sL_LossRatio": "1", "sL_AssetLoss": "139.7", "sL_BldgLoss": "139.7", "sL_StrLoss": "139.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A56D995F8F9C5DC0251810529E914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.447174701999955, 49.135898497000092 ], [ -118.449264587999934, 49.136045661000097 ], [ -118.448681624999921, 49.139625857000077 ], [ -118.4476939, 49.139556309000092 ], [ -118.443236849999934, 49.139242368000104 ], [ -118.443820227999979, 49.13566219900013 ], [ -118.447174701999955, 49.135898497000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5353000", "BldgCostT": "3220000", "sL_LossRatio": "1", "sL_AssetLoss": "113", "sL_BldgLoss": "113", "sL_StrLoss": "113", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B298BFDF3B9C5DC0BEE477812F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.440583888000035, 49.218349204000027 ], [ -118.444173717999888, 49.218601705000061 ], [ -118.443589325999966, 49.222181422000084 ], [ -118.441008705999934, 49.221999919000048 ], [ -118.438134918999936, 49.22179772400002 ], [ -118.438719724999899, 49.218218034000088 ], [ -118.440583888000035, 49.218349204000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6999584", "BldgCostT": "4408334", "sL_LossRatio": "0.995590646139931", "sL_AssetLoss": "212.276", "sL_BldgLoss": "211.34", "sL_StrLoss": "211", "sL_NStrLoss": "0.34", "sL_ContLoss": "0.936", "geom_point": "0101000020E61000000F8ECC02719D5DC0679B5DEFE5964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.456929932999941, 49.177357198000045 ], [ -118.457107137999969, 49.176268724000074 ], [ -118.461210273999939, 49.176556963000081 ], [ -118.462556361999987, 49.176651489000072 ], [ -118.462484772, 49.177091549000046 ], [ -118.462492492999957, 49.17709209200008 ], [ -118.462420740999946, 49.17753313900004 ], [ -118.463856681999971, 49.177633955000054 ], [ -118.463274320999957, 49.181214002000083 ], [ -118.46182520399999, 49.181112261000131 ], [ -118.461791462999926, 49.181319634000019 ], [ -118.460070150999968, 49.181198757000104 ], [ -118.456341697, 49.18093683300004 ], [ -118.456924588999982, 49.177356822 ], [ -118.456929932999941, 49.177357198000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.4", "sL_BldgLoss": "48.4", "sL_StrLoss": "48.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081C82ABE04B55DC006039D8346814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.826437247999976, 49.009602854000015 ], [ -118.829369179999972, 49.009799428000093 ], [ -118.82931611199993, 49.010143760000062 ], [ -118.828511594999924, 49.010402912000053 ], [ -118.828279207999955, 49.010380087000037 ], [ -118.82813141099993, 49.010085292000063 ], [ -118.827807706999977, 49.009865995000048 ], [ -118.826570590999978, 49.009642409000023 ], [ -118.826437247999976, 49.009602854000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24888000", "BldgCostT": "15690000", "sL_LossRatio": "1", "sL_AssetLoss": "974.8", "sL_BldgLoss": "974.8", "sL_StrLoss": "974.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000035C40477D8B15DC0583E059F6A804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.789570703999971, 49.006381004000104 ], [ -118.786672585999966, 49.006066198000063 ], [ -118.785742313999947, 49.00604479200009 ], [ -118.782965917999917, 49.005664599000028 ], [ -118.781039403999941, 49.005315697000071 ], [ -118.777951194999943, 49.004976688000092 ], [ -118.776118230999899, 49.004509143000064 ], [ -118.775522598999913, 49.004357204000044 ], [ -118.773797291999955, 49.003548192000039 ], [ -118.772719988999924, 49.002826093000103 ], [ -118.771373797999928, 49.00148881300003 ], [ -118.77085208799997, 49.000642794000079 ], [ -118.770656183999989, 49.00019039799999 ], [ -118.771283081999911, 49.000190400000037 ], [ -118.77534170199999, 49.000190278000098 ], [ -118.775565616999955, 49.000205404000027 ], [ -118.775515263999921, 49.00052974900003 ], [ -118.778415453999941, 49.000725626000133 ], [ -118.778357991999954, 49.001095907000021 ], [ -118.778571471999953, 49.001110322000024 ], [ -118.77849499099996, 49.00160316900012 ], [ -118.77938557899995, 49.001663301000058 ], [ -118.779299322999975, 49.002219181000022 ], [ -118.78030058899995, 49.002286777000073 ], [ -118.780296746999952, 49.002311541000054 ], [ -118.780698577999942, 49.002338666000114 ], [ -118.780691729999944, 49.002382805000074 ], [ -118.781154667999914, 49.002414053000088 ], [ -118.781147880999981, 49.002457794000037 ], [ -118.781671554999932, 49.002493139000059 ], [ -118.781658495999949, 49.002577329000083 ], [ -118.782122245999986, 49.002608627000072 ], [ -118.782016861999963, 49.003288029 ], [ -118.783573747, 49.003393088000088 ], [ -118.783450796999929, 49.004185881000097 ], [ -118.783834416, 49.004179949000047 ], [ -118.78384405099996, 49.00444968700009 ], [ -118.784664043999925, 49.004437003000085 ], [ -118.78467368599999, 49.004706740000088 ], [ -118.786313674999946, 49.00468135400007 ], [ -118.786323250999885, 49.004949015000072 ], [ -118.786348298999954, 49.004950704000066 ], [ -118.787553321999951, 49.004932036000106 ], [ -118.787556907999942, 49.005032212000039 ], [ -118.788739479999947, 49.005111949000074 ], [ -118.788728357999972, 49.005183708000096 ], [ -118.78920298299991, 49.005176346000056 ], [ -118.78921264899995, 49.005446081000088 ], [ -118.789622650999945, 49.005439722000112 ], [ -118.789632320999914, 49.005709458000055 ], [ -118.790042324999916, 49.00570309700008 ], [ -118.790059006999968, 49.006168339000027 ], [ -118.790067798999971, 49.006413568000092 ], [ -118.789570703999971, 49.006381004000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "45.8", "sL_BldgLoss": "45.8", "sL_StrLoss": "45.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000974383FBDEB45DC01AAAFFFFC1804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.825312036999946, 49.005420252000086 ], [ -118.826952013999957, 49.005394289000058 ], [ -118.826981626999952, 49.006203481000036 ], [ -118.826571624999957, 49.006209974000051 ], [ -118.826581493999939, 49.006479705000082 ], [ -118.825351485999974, 49.006499177000109 ], [ -118.825312036999946, 49.005420252000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29186166", "BldgCostT": "19656666", "sL_LossRatio": "1", "sL_AssetLoss": "1587", "sL_BldgLoss": "1587", "sL_StrLoss": "1587", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9A46F4E7CB45DC06FDF40D4BF814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.812296526999958, 49.018395856000112 ], [ -118.812641838999966, 49.016160922000019 ], [ -118.811725662999947, 49.016099369000123 ], [ -118.811820483999924, 49.015485704000042 ], [ -118.81225018, 49.012704596000042 ], [ -118.813141692000016, 49.01267878900012 ], [ -118.814176925999959, 49.012546146 ], [ -118.815729458999968, 49.012650420000085 ], [ -118.815713628999958, 49.012215274000063 ], [ -118.816314694999946, 49.012039564000069 ], [ -118.816937737, 49.012029752000053 ], [ -118.816929651999928, 49.011807668000088 ], [ -118.817031684999932, 49.011758386000039 ], [ -118.817337966999958, 49.011753560000038 ], [ -118.817332847, 49.011612921000122 ], [ -118.81760928199999, 49.011479399000038 ], [ -118.817738191999979, 49.01147736800003 ], [ -118.817736036, 49.01141817400007 ], [ -118.818186869, 49.011200409 ], [ -118.818548453999952, 49.011194710000048 ], [ -118.818542404999945, 49.011028673000048 ], [ -118.818658498999966, 49.01097259600008 ], [ -118.81872144099998, 49.010922095000112 ], [ -118.818948668999965, 49.010918512000131 ], [ -118.818942340999939, 49.010744856000052 ], [ -118.819064552000029, 49.01064679800001 ], [ -118.819348878999904, 49.010642314000066 ], [ -118.819340957999913, 49.01042502100006 ], [ -118.819407660999929, 49.010371500000048 ], [ -118.819749081999987, 49.010366115000068 ], [ -118.819739569999982, 49.010105183000064 ], [ -118.819750764999981, 49.010096201000046 ], [ -118.821789416999948, 49.010064022000044 ], [ -118.821799261999956, 49.010333753000062 ], [ -118.823439400999987, 49.010307837000099 ], [ -118.823449254999971, 49.010577568000031 ], [ -118.823761051999952, 49.010572639 ], [ -118.823936495999973, 49.009435124000078 ], [ -118.823975915999952, 49.009437769000051 ], [ -118.824609382999952, 49.009538393000085 ], [ -118.825388504999964, 49.009850302000096 ], [ -118.827189816, 49.010864397000041 ], [ -118.829153046999963, 49.011201800000073 ], [ -118.82909665199999, 49.011567704000086 ], [ -118.831689556999933, 49.011526559000117 ], [ -118.831709353999969, 49.012066019000024 ], [ -118.832119401999989, 49.012059507000075 ], [ -118.832129301999913, 49.012329237000074 ], [ -118.832539351999955, 49.012322723000096 ], [ -118.832558421999963, 49.012842129000035 ], [ -118.832588869999938, 49.013671372000061 ], [ -118.830948626999913, 49.013697418000049 ], [ -118.830938733999943, 49.013427689000054 ], [ -118.827658258999989, 49.013479713000102 ], [ -118.827651831999958, 49.013304225000077 ], [ -118.82651416600001, 49.013227948000086 ], [ -118.825598090999961, 49.013242449000096 ], [ -118.825595307999905, 49.013166331000086 ], [ -118.824903027999966, 49.013119903000096 ], [ -118.824772699999983, 49.013111162000058 ], [ -118.824774002999987, 49.013146773000166 ], [ -118.824777974999975, 49.013255424000086 ], [ -118.824209068999934, 49.013264424000042 ], [ -118.823547796999947, 49.013274879000086 ], [ -118.823538791999951, 49.013028396000053 ], [ -118.823383861, 49.013018002000109 ], [ -118.823385472999988, 49.013007559000073 ], [ -118.821077598999935, 49.013044016000059 ], [ -118.821067757999984, 49.012774285000077 ], [ -118.818238878999935, 49.0128189120001 ], [ -118.81830935399995, 49.012823644000079 ], [ -118.81804312, 49.014548282000071 ], [ -118.81801790899999, 49.014711600000112 ], [ -118.818676220999919, 49.014701223000046 ], [ -118.818686049999926, 49.014970954000049 ], [ -118.820326345999902, 49.014945081000043 ], [ -118.820375538999969, 49.016293738000037 ], [ -118.819965454999974, 49.0163002090001 ], [ -118.819975290999963, 49.016569940000124 ], [ -118.818063747999986, 49.016600083000071 ], [ -118.817785103999924, 49.018404897000089 ], [ -118.812296526999958, 49.018395856000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130754916", "BldgCostT": "88701666", "sL_LossRatio": "1", "sL_AssetLoss": "7485.5", "sL_BldgLoss": "7485.5", "sL_StrLoss": "7485.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000B9CC7BCE9B15DC0016AE6A036814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.795472557999915, 49.01661470300013 ], [ -118.795513852999989, 49.016348066000035 ], [ -118.795126630999945, 49.016321990000058 ], [ -118.795080865999921, 49.016617477000047 ], [ -118.795036411999945, 49.016904489000147 ], [ -118.791357108999961, 49.016656645000076 ], [ -118.791297862999983, 49.017038973000041 ], [ -118.787616685999978, 49.01679087399999 ], [ -118.787469936999941, 49.017737358000041 ], [ -118.782036657999967, 49.017370938000113 ], [ -118.78259251799993, 49.013788297000033 ], [ -118.78268889499995, 49.013794800000063 ], [ -118.782690904999953, 49.0137818440001 ], [ -118.782425802999924, 49.01376395800002 ], [ -118.782546086999901, 49.012988636000088 ], [ -118.780974908999909, 49.012882620000077 ], [ -118.78102033, 49.012589904000073 ], [ -118.780442677999972, 49.012598821000068 ], [ -118.780415568999942, 49.011838823000076 ], [ -118.77816130799999, 49.011686659000063 ], [ -118.778122137999944, 49.011938989000043 ], [ -118.776730398999959, 49.01184502200006 ], [ -118.776721176999956, 49.01190442100004 ], [ -118.776216786999896, 49.011870361000042 ], [ -118.776213655, 49.011890532000074 ], [ -118.775685027999927, 49.011854833000015 ], [ -118.775680631999961, 49.011883144000095 ], [ -118.774714886999959, 49.011817918000126 ], [ -118.774703091999967, 49.011893867000047 ], [ -118.769270593, 49.011526797000045 ], [ -118.769276121999923, 49.011491221000064 ], [ -118.768728177999975, 49.01145418100004 ], [ -118.768757579999928, 49.011265025000114 ], [ -118.76792086599994, 49.011208460000056 ], [ -118.767994726999973, 49.010733311000102 ], [ -118.766903566999986, 49.010659534000084 ], [ -118.767206354999985, 49.008711874000078 ], [ -118.767369310999982, 49.007663606000015 ], [ -118.767272371999965, 49.007657052000063 ], [ -118.767286514999938, 49.007566065000077 ], [ -118.765538341999985, 49.007447839000079 ], [ -118.765489974, 49.007444568000032 ], [ -118.765508570999913, 49.007970414000098 ], [ -118.76427848599999, 49.007989235000132 ], [ -118.764256286999981, 49.007361119000024 ], [ -118.763252955999931, 49.007293240000131 ], [ -118.763453575999904, 49.006003345000089 ], [ -118.762183608999962, 49.005917413000105 ], [ -118.7622302179999, 49.005617777000062 ], [ -118.76168971199999, 49.005581200000094 ], [ -118.761797245000011, 49.004889949000138 ], [ -118.761707396999938, 49.004883869000047 ], [ -118.761723117999964, 49.005329433000014 ], [ -118.76156643099992, 49.005331826000038 ], [ -118.761351655999974, 49.006712385000057 ], [ -118.757675947999928, 49.006463560000107 ], [ -118.755919865999942, 49.006344637000012 ], [ -118.756477597999989, 49.00276207000006 ], [ -118.758454822999965, 49.002895967000072 ], [ -118.758477731999903, 49.002748760000038 ], [ -118.758092971999957, 49.002722708000121 ], [ -118.75817531, 49.002193648000031 ], [ -118.757806898999903, 49.00216870000007 ], [ -118.758114801999938, 49.000190242000052 ], [ -118.761127816999945, 49.000189865000067 ], [ -118.761619413999981, 49.000189804000051 ], [ -118.763328558, 49.000190679000063 ], [ -118.767463398999936, 49.000195161000072 ], [ -118.768190174999958, 49.000244309000102 ], [ -118.767997720000011, 49.001482683000049 ], [ -118.769031880999961, 49.001552611000143 ], [ -118.769103849999937, 49.00108945300012 ], [ -118.769931404999951, 49.001145402000056 ], [ -118.770034644999924, 49.000480915000026 ], [ -118.770100093999929, 49.000689791000077 ], [ -118.771418104999981, 49.002370409000079 ], [ -118.772071107999949, 49.003071110000072 ], [ -118.773124890999952, 49.003818807000101 ], [ -118.77405669299999, 49.004308707000114 ], [ -118.776047340999966, 49.005067490000023 ], [ -118.77630238299993, 49.005164701000119 ], [ -118.778616095999922, 49.005587706000064 ], [ -118.779644590999922, 49.005680302000037 ], [ -118.781405794999898, 49.006003598000113 ], [ -118.7829137, 49.006070500000106 ], [ -118.788493490999926, 49.006699138000059 ], [ -118.788184193999925, 49.00869467000004 ], [ -118.785630609999913, 49.00852247299999 ], [ -118.78563839399996, 49.008740104000026 ], [ -118.78727851399999, 49.008714703000081 ], [ -118.787285665999946, 49.008914485000076 ], [ -118.788129729999937, 49.008971397000046 ], [ -118.788928297999988, 49.008959015000094 ], [ -118.788930678, 49.009025395000108 ], [ -118.789695200999944, 49.009076932000085 ], [ -118.789673439999916, 49.009217343000017 ], [ -118.790578098999973, 49.009203304000074 ], [ -118.790587773999917, 49.009473040000053 ], [ -118.791817879999911, 49.00945393800005 ], [ -118.79182756099999, 49.009723674000043 ], [ -118.793467709999959, 49.009698185000083 ], [ -118.793477400999961, 49.009967920000058 ], [ -118.795117553999944, 49.009942408000029 ], [ -118.795127253999951, 49.010212143000089 ], [ -118.796767414999977, 49.010186607000051 ], [ -118.796777124999963, 49.010456342000055 ], [ -118.79841729099995, 49.010430782000107 ], [ -118.798427009999898, 49.010700517000018 ], [ -118.800067182999953, 49.010674934000036 ], [ -118.800076910999948, 49.01094466800005 ], [ -118.800486955999986, 49.010938269000121 ], [ -118.80051614499996, 49.011747472000124 ], [ -118.799729030999941, 49.011759756000053 ], [ -118.801362877999964, 49.011869713000067 ], [ -118.801279492999953, 49.012408617000091 ], [ -118.801441410999942, 49.012419513000069 ], [ -118.801354125999964, 49.012983625000096 ], [ -118.802331519999925, 49.01304939000007 ], [ -118.80229787799999, 49.013266844000093 ], [ -118.80358529599999, 49.013353456000033 ], [ -118.80322208799997, 49.015701378000081 ], [ -118.80303105199999, 49.016936207000093 ], [ -118.80126107199996, 49.016817128000085 ], [ -118.801017693999952, 49.018389816000067 ], [ -118.795198051999989, 49.018387089000093 ], [ -118.795472557999915, 49.01661470300013 ] ], [ [ -118.79271131499992, 49.011484045000095 ], [ -118.792705759999947, 49.011329347000121 ], [ -118.795166056999932, 49.011291085000096 ], [ -118.79517575899996, 49.011560820000099 ], [ -118.795923175, 49.011549186000053 ], [ -118.795930172999959, 49.011503994000044 ], [ -118.796473914999979, 49.011540610000104 ], [ -118.796815963999961, 49.011535282000082 ], [ -118.796806253999975, 49.011265547000093 ], [ -118.795576106999974, 49.011284702000054 ], [ -118.795566403999899, 49.011014967000079 ], [ -118.793926213999924, 49.011040487000066 ], [ -118.793916520999943, 49.010770751000038 ], [ -118.792276337999922, 49.010796248000148 ], [ -118.792266652999928, 49.01052651100008 ], [ -118.790626477999965, 49.010551984000124 ], [ -118.790616802, 49.010282248000067 ], [ -118.78950573399996, 49.010299490000108 ], [ -118.78943306499994, 49.010768387 ], [ -118.790053797999946, 49.010810227000078 ], [ -118.789971324999925, 49.011342416000112 ], [ -118.789966758999967, 49.011371881000109 ], [ -118.790397441999943, 49.011365199000046 ], [ -118.791885657999956, 49.011342090000056 ], [ -118.791889260999938, 49.011442422000044 ], [ -118.791891812999935, 49.011513485000094 ], [ -118.791894141999961, 49.011578379000049 ], [ -118.79229775200001, 49.011605574000072 ], [ -118.792315929999972, 49.011605290000091 ], [ -118.792715446999949, 49.011599083000114 ], [ -118.79271131499992, 49.011484045000095 ] ], [ [ -118.797636065999953, 49.011522504000013 ], [ -118.797639544000035, 49.011619096000089 ], [ -118.798873380999936, 49.011702160000034 ], [ -118.798866215999951, 49.011503327000121 ], [ -118.797636065999953, 49.011522504000013 ] ], [ [ -118.783507093999958, 49.009433308000048 ], [ -118.783509606999985, 49.00941710500009 ], [ -118.784022795999931, 49.009451726000059 ], [ -118.784017550999977, 49.009304956000072 ], [ -118.783008538999923, 49.009320557000066 ], [ -118.782996393999937, 49.009398852000068 ], [ -118.783507093999958, 49.009433308000048 ] ], [ [ -118.783988630999943, 49.008495745000069 ], [ -118.78500192300001, 49.008480069 ], [ -118.783985619999925, 49.008411513000105 ], [ -118.783988630999943, 49.008495745000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "151.5", "sL_BldgLoss": "151.5", "sL_StrLoss": "151.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F40FE86DE8B85DC01B3BD9B4EF814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.888600121999971, 49.01752640900002 ], [ -118.888790113999917, 49.01628346300005 ], [ -118.883790857999927, 49.015951079000104 ], [ -118.88433889099997, 49.012367907000083 ], [ -118.889772384999915, 49.012729152000041 ], [ -118.889582432999958, 49.013972106000097 ], [ -118.894581518999971, 49.014304221000067 ], [ -118.894034248999958, 49.017887434000087 ], [ -118.888600121999971, 49.01752640900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4168833", "BldgCostT": "2403333", "sL_LossRatio": "1", "sL_AssetLoss": "122", "sL_BldgLoss": "122", "sL_StrLoss": "122", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A80B2CE5DC75DC0ED09F93D3D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.11400936099993, 49.060946066000106 ], [ -119.11397503099991, 49.060137020000099 ], [ -119.113564658999934, 49.060144539000127 ], [ -119.113530336999958, 49.05933549300012 ], [ -119.113119969999957, 49.059343011000102 ], [ -119.11307422099999, 49.058264283000092 ], [ -119.112663863999956, 49.058271798000121 ], [ -119.112640994999964, 49.057732434000108 ], [ -119.112230639999922, 49.05773994900003 ], [ -119.112207775999963, 49.057200584000057 ], [ -119.111797427999974, 49.057208097000057 ], [ -119.111785996999984, 49.056938415000111 ], [ -119.1113756499999, 49.056945926000033 ], [ -119.111364221999935, 49.056676243 ], [ -119.110953877999961, 49.056683752000012 ], [ -119.110965302999958, 49.05695343400005 ], [ -119.109734259999982, 49.056975955000027 ], [ -119.109677168999909, 49.055627541000085 ], [ -119.110087506999889, 49.055620036000057 ], [ -119.110076087000024, 49.055350353000136 ], [ -119.111082696, 49.055331937000091 ], [ -119.111307088999979, 49.055327831000085 ], [ -119.111318514999979, 49.055597514000027 ], [ -119.112139187999944, 49.055582491000038 ], [ -119.112150617999987, 49.055852174000051 ], [ -119.112560955999967, 49.055844659000087 ], [ -119.112583823999941, 49.056384024000074 ], [ -119.113404507999945, 49.056368992000046 ], [ -119.113427384999966, 49.056908357000019 ], [ -119.113462093999885, 49.056907720000048 ], [ -119.113903320999952, 49.053928869000103 ], [ -119.119343404999938, 49.054278469000067 ], [ -119.119061903999977, 49.056180506000018 ], [ -119.118812936999944, 49.057862587000038 ], [ -119.116935410999986, 49.05774196200008 ], [ -119.114276835999974, 49.057571101000107 ], [ -119.114305293999962, 49.058241729 ], [ -119.114715651999987, 49.058234206000073 ], [ -119.114761435999938, 49.059312932000083 ], [ -119.115171801999978, 49.059305410000093 ], [ -119.115240497999977, 49.060923500000108 ], [ -119.114860336999968, 49.060930469000013 ], [ -119.11400936099993, 49.060946066000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "113.4", "sL_BldgLoss": "113.4", "sL_StrLoss": "113.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000069C7AA9460CE5DC0C255F9F9CA834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.227162741999962, 49.027982268000052 ], [ -119.22762476799997, 49.028011497000136 ], [ -119.227497863999929, 49.028883296000096 ], [ -119.227102914999989, 49.031596292000096 ], [ -119.221664673999925, 49.031252135000095 ], [ -119.222186940999961, 49.027667364000145 ], [ -119.227162741999962, 49.027982268000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "50.6", "sL_BldgLoss": "50.6", "sL_StrLoss": "50.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034A3BCE2EBC85DC052188CF8EB814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.142189974999923, 49.013383594000054 ], [ -119.142379291999973, 49.013395726000063 ], [ -119.141851055999979, 49.01698018600009 ], [ -119.141661725999953, 49.016968053000021 ], [ -119.139254264999948, 49.016813747000086 ], [ -119.136415149999962, 49.016631705000087 ], [ -119.136935570999952, 49.013103064000099 ], [ -119.136943799999969, 49.013047269 ], [ -119.142189974999923, 49.013383594000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41.7", "sL_BldgLoss": "41.7", "sL_StrLoss": "41.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A4BE1834FC05DC0AF42CA4F2A8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.006020749999919, 49.077289119000092 ], [ -119.007040173999911, 49.077355650000072 ], [ -119.006500808999945, 49.080939080000107 ], [ -119.003334477999914, 49.080732403000113 ], [ -119.001233416000034, 49.080595207000066 ], [ -119.001500703999952, 49.08033870600012 ], [ -119.004135585999947, 49.078457297000092 ], [ -119.00546319099999, 49.077741 ], [ -119.005657701999922, 49.077265423000057 ], [ -119.006020749999919, 49.077289119000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "91.1", "sL_BldgLoss": "91.1", "sL_StrLoss": "91.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007E61859DDAC65DC02AA6779645884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.104638450999971, 49.062656584000109 ], [ -119.110079483, 49.063006649000101 ], [ -119.10954820399995, 49.066590672000125 ], [ -119.104106756999926, 49.066240582000077 ], [ -119.104638450999971, 49.062656584000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.5", "sL_BldgLoss": "47.5", "sL_StrLoss": "47.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004F6FEB1325BA5DC0E91568DAF28E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.907671818999958, 49.115024053000084 ], [ -118.91048225599998, 49.115209883000027 ], [ -118.90989115399999, 49.116052424000046 ], [ -118.90941194799997, 49.116825441000024 ], [ -118.909153548999939, 49.117620660000057 ], [ -118.909141184999982, 49.118039567000068 ], [ -118.909251972999968, 49.118494865000073 ], [ -118.909417547999922, 49.118758405000086 ], [ -118.907124371999927, 49.11860677100001 ], [ -118.907671818999958, 49.115024053000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "144", "sL_BldgLoss": "144", "sL_StrLoss": "144", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D84FF7E8AACF5DC0ED150E6BC7834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.245421653999983, 49.027753207000039 ], [ -119.24778576199995, 49.027902337000107 ], [ -119.247624976999973, 49.029010210000067 ], [ -119.247265458999934, 49.031487230000039 ], [ -119.245437385999963, 49.031371918000069 ], [ -119.241827082999947, 49.031144094000105 ], [ -119.242347797999955, 49.027559225000125 ], [ -119.245421653999983, 49.027753207000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "56.4", "sL_BldgLoss": "56.4", "sL_StrLoss": "56.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088BFC34019C95DC0ED3081B6B0844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.139711544999969, 49.034676499000071 ], [ -119.145149577999987, 49.035024804000095 ], [ -119.144834311999915, 49.037163991000035 ], [ -119.144621310999952, 49.038609156000071 ], [ -119.14011727899998, 49.038320695000024 ], [ -119.139182864999924, 49.038260827000073 ], [ -119.139711544999969, 49.034676499000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46", "sL_BldgLoss": "46", "sL_StrLoss": "46", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A417859B8BF5DC0B95F7093728A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.997311243999974, 49.079488582000081 ], [ -118.997704173999963, 49.079481780000101 ], [ -118.997736638999982, 49.080290881000046 ], [ -118.997326068999953, 49.08029799000014 ], [ -118.997336888999939, 49.080567690000088 ], [ -118.996926317999936, 49.080574797000054 ], [ -118.996947950999967, 49.081114198000101 ], [ -118.996537375999964, 49.081121303000039 ], [ -118.996559008999981, 49.081660703000061 ], [ -118.99614842599999, 49.081667808000098 ], [ -118.996159241, 49.081937508000088 ], [ -118.995748656999965, 49.081944611000026 ], [ -118.995770280999963, 49.082484012000037 ], [ -118.99535969399993, 49.082491114000092 ], [ -118.995381311999935, 49.083030515000118 ], [ -118.994970720999902, 49.083037615000045 ], [ -118.994992335999925, 49.083577016000064 ], [ -118.993760544999958, 49.083598307000017 ], [ -118.993740688999978, 49.08310251500005 ], [ -118.993950157999933, 49.082785367000085 ], [ -118.994138730999936, 49.082782109000114 ], [ -118.994128071999967, 49.082515994000126 ], [ -118.994310779999964, 49.082239360000102 ], [ -118.994527712, 49.082235611000051 ], [ -118.994515447999902, 49.081929471000073 ], [ -118.994671390999969, 49.081693351000077 ], [ -118.994916683999989, 49.081689110000042 ], [ -118.994903686, 49.081364721000064 ], [ -118.995061514999989, 49.081146831000083 ], [ -118.99530564899996, 49.08114261000005 ], [ -118.995293008999965, 49.080827238000033 ], [ -118.99532083299999, 49.080788824000102 ], [ -118.995425283999921, 49.080691028000039 ], [ -118.99552352699996, 49.080599065000079 ], [ -118.995694601999972, 49.080596107000055 ], [ -118.995688585999943, 49.08044598700009 ], [ -118.995885054999974, 49.080322925000097 ], [ -118.996094361999894, 49.08031930500011 ], [ -118.996091520999983, 49.080248448000049 ], [ -118.996727373999988, 49.08004392100009 ], [ -118.996876231999948, 49.079949634000066 ], [ -118.997287419999921, 49.079518719000063 ], [ -118.997311243999974, 49.079488582000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "48.9", "sL_BldgLoss": "48.9", "sL_StrLoss": "48.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009EFBDD01FFBF5DC067DD37A5D9874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.001141725999986, 49.059851436000038 ], [ -119.001168287999931, 49.05984307800005 ], [ -119.001835297999889, 49.060378398000083 ], [ -119.00199570299999, 49.060663284000022 ], [ -119.001980690999957, 49.060933895000105 ], [ -119.001456583999968, 49.06150930400009 ], [ -119.000617487999961, 49.062117393000037 ], [ -119.000336013999942, 49.062581706000039 ], [ -119.000144791999958, 49.063305202000066 ], [ -119.00014818799994, 49.06406998900006 ], [ -119.000062508999989, 49.064282639000041 ], [ -118.999957135, 49.064275753000111 ], [ -119.000010193000023, 49.064164241000086 ], [ -119.000046371999971, 49.063924147000144 ], [ -119.000030641, 49.06378265700004 ], [ -119.00001721699995, 49.063661703000065 ], [ -118.99991068199995, 49.063393270000127 ], [ -118.999661798999981, 49.063030504000068 ], [ -118.99906744499998, 49.062417205000067 ], [ -118.997594586999966, 49.060843612000085 ], [ -118.998104013999949, 49.060621952000076 ], [ -118.998498489999989, 49.060450285000066 ], [ -118.999136899999982, 49.060314716000065 ], [ -119.000006543999959, 49.060186629000057 ], [ -119.000141096, 49.0601667930001 ], [ -119.001141725999986, 49.059851436000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "167.1", "sL_BldgLoss": "167.1", "sL_StrLoss": "167.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009AF556928C85DC0177C3FDAA4854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.125266268999894, 49.041987493000079 ], [ -119.130705045999918, 49.042336524000071 ], [ -119.130698538000019, 49.042380584000085 ], [ -119.130175585999922, 49.045920764000094 ], [ -119.129712516999973, 49.04589105700007 ], [ -119.129666979999939, 49.046199275000035 ], [ -119.1242277599999, 49.045850193000028 ], [ -119.124326575999987, 49.045181873000075 ], [ -119.12475767699999, 49.042265982000039 ], [ -119.125220707999972, 49.042295710000069 ], [ -119.125266268999894, 49.041987493000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "53.7", "sL_BldgLoss": "53.7", "sL_StrLoss": "53.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000811FCB1C1C85DC042ACA34FD0824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.134368441999968, 49.020015632000046 ], [ -119.139804725999952, 49.02036421500005 ], [ -119.13927621499991, 49.023948623000109 ], [ -119.133839516999913, 49.023600016000053 ], [ -119.134368441999968, 49.020015632000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "116", "sL_BldgLoss": "116", "sL_StrLoss": "116", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F4A55C145CB5DC057F9AFBDE0804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.17885223299993, 49.005222881000108 ], [ -119.179112696999979, 49.005239485000068 ], [ -119.179064649999972, 49.00556737200008 ], [ -119.17858737499995, 49.008824172000054 ], [ -119.173152144999946, 49.008477546000059 ], [ -119.173677879999914, 49.004892885000054 ], [ -119.17885223299993, 49.005222881000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "99.5", "sL_BldgLoss": "99.5", "sL_StrLoss": "99.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039368E9A27C35DC08D0F0E5160834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.04837545, 49.02450796100004 ], [ -119.052278038999958, 49.024761359000088 ], [ -119.051742754999907, 49.028345309000088 ], [ -119.046649701999968, 49.028014586000054 ], [ -119.046306203999904, 49.027992272000091 ], [ -119.046841900999951, 49.024408347000069 ], [ -119.04837545, 49.02450796100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "124.9", "sL_BldgLoss": "124.9", "sL_StrLoss": "124.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B50CC4F4B5C05DC0BDA4737619894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.011113505999973, 49.068993797000104 ], [ -119.014605291999899, 49.069221519000052 ], [ -119.014066600999982, 49.072805032000048 ], [ -119.013132833999975, 49.072744147000073 ], [ -119.013047383999933, 49.073312454000074 ], [ -119.007814977999914, 49.072971127000073 ], [ -119.007605882999911, 49.072957483000074 ], [ -119.007684571999917, 49.072434550000047 ], [ -119.007836861999934, 49.07142244900011 ], [ -119.008145070999944, 49.069374002000146 ], [ -119.008726513999932, 49.069411946000017 ], [ -119.00907876399999, 49.069434931000046 ], [ -119.009164254999959, 49.06886662400008 ], [ -119.009760016999962, 49.068905496000042 ], [ -119.011113505999973, 49.068993797000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "104.9", "sL_BldgLoss": "104.9", "sL_StrLoss": "104.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B5D90255AC85DC0F6CE68AB12824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.128048910999951, 49.014228070000051 ], [ -119.133484474999975, 49.014576977000047 ], [ -119.132955543999955, 49.018161386000081 ], [ -119.127519565999989, 49.017812455000076 ], [ -119.128048910999951, 49.014228070000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7443333", "BldgCostT": "5133333", "sL_LossRatio": "1", "sL_AssetLoss": "800", "sL_BldgLoss": "800", "sL_StrLoss": "800", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD2E0D0D15CA5DC0A1204642BA844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.150235931999987, 49.038205516000083 ], [ -119.150299783999969, 49.037771932000091 ], [ -119.149686861999953, 49.037732721000111 ], [ -119.149772417999955, 49.037151807000043 ], [ -119.149980401000022, 49.035739577000058 ], [ -119.150214730999934, 49.034148339000112 ], [ -119.15066392199995, 49.034177075000073 ], [ -119.150674513999931, 49.034105148000059 ], [ -119.151202538999968, 49.034138927000072 ], [ -119.151215593999893, 49.03405026100009 ], [ -119.151596905999924, 49.034074652000072 ], [ -119.151614481999971, 49.033955269000046 ], [ -119.152857026999953, 49.034034741000056 ], [ -119.152899838999943, 49.033743898000097 ], [ -119.153370956999979, 49.033774026000088 ], [ -119.153400425999962, 49.03357380900011 ], [ -119.153908965999946, 49.033606328000076 ], [ -119.153931411999963, 49.033453821000087 ], [ -119.154488677, 49.033489453000051 ], [ -119.154510590999976, 49.033340534000104 ], [ -119.154968388999976, 49.033369804000131 ], [ -119.155006081999957, 49.033113644000125 ], [ -119.156069579999922, 49.033181633000076 ], [ -119.156085640999919, 49.033072469000054 ], [ -119.156528919999943, 49.033100804000128 ], [ -119.156537722999985, 49.033040979000106 ], [ -119.158393432999944, 49.033159580000088 ], [ -119.158392364999941, 49.033134919000105 ], [ -119.158900542999959, 49.033125410000061 ], [ -119.160032919999963, 49.03310420900003 ], [ -119.160039875999942, 49.033264778000103 ], [ -119.161975688999959, 49.03338843299999 ], [ -119.161971701999946, 49.033415560000044 ], [ -119.163938832, 49.033541178000064 ], [ -119.163889501999918, 49.03387684900008 ], [ -119.165363309999961, 49.033970941000035 ], [ -119.165290018999912, 49.034469753000025 ], [ -119.165150263999962, 49.035420881000057 ], [ -119.167406541, 49.03556488800011 ], [ -119.166879977999926, 49.039149346000109 ], [ -119.165971964999954, 49.039091399000071 ], [ -119.165883763999915, 49.039691667000042 ], [ -119.160445032999959, 49.039344415000102 ], [ -119.160708086999975, 49.037555505000121 ], [ -119.160294718999964, 49.037529101000132 ], [ -119.160266822999972, 49.037718802000057 ], [ -119.15971646, 49.037683645000072 ], [ -119.15968750699993, 49.037880514000079 ], [ -119.15907597599994, 49.037841446000122 ], [ -119.159049887999956, 49.038018829000109 ], [ -119.157589765999958, 49.037925533000049 ], [ -119.157533138999923, 49.038310462000048 ], [ -119.15696945499991, 49.038274440000066 ], [ -119.156948719999932, 49.038415375000085 ], [ -119.15634850899994, 49.038377015000094 ], [ -119.156328898999988, 49.038510289000037 ], [ -119.155686819999957, 49.038469249000052 ], [ -119.155660677999919, 49.038646904000082 ], [ -119.155228074999954, 49.038619251000071 ], [ -119.1547143199999, 49.042110015000048 ], [ -119.14927539099989, 49.041762198000114 ], [ -119.149803335999962, 49.038177841000049 ], [ -119.150235931999987, 49.038205516000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.2", "sL_BldgLoss": "39.2", "sL_StrLoss": "39.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065259CCCAEBE5DC0569E1FCA40964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.975227707999963, 49.169819429000043 ], [ -118.976778889999977, 49.171274505000078 ], [ -118.977937307, 49.172119109000093 ], [ -118.979515509999899, 49.172838308000031 ], [ -118.980598801999946, 49.173143105000086 ], [ -118.981148691, 49.173530400000104 ], [ -118.98128869199995, 49.173915003000111 ], [ -118.981135099999932, 49.175950191000048 ], [ -118.981278621999977, 49.17714370100002 ], [ -118.981552724999972, 49.177406763000057 ], [ -118.980837196999943, 49.177360003000075 ], [ -118.980620994999981, 49.176647683000049 ], [ -118.980310802999966, 49.175895702000069 ], [ -118.979961798999923, 49.175381694000102 ], [ -118.979560658999901, 49.17493795700009 ], [ -118.979447904999972, 49.174813216000082 ], [ -118.979030208999959, 49.174351091000112 ], [ -118.978072516999987, 49.173325131000034 ], [ -118.977753311999919, 49.172983101000085 ], [ -118.976617707999978, 49.171581732000064 ], [ -118.976196719999948, 49.171062211000091 ], [ -118.975782185999947, 49.170663302 ], [ -118.975379105999977, 49.170398199000019 ], [ -118.975041515999948, 49.170100189000053 ], [ -118.97512565199996, 49.16997333299999 ], [ -118.97515504899999, 49.16992897900009 ], [ -118.975199031999949, 49.169862723000037 ], [ -118.975227707999963, 49.169819429000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "114.4", "sL_BldgLoss": "114.4", "sL_StrLoss": "114.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CF07D34959CB5DC05B0DE4341F824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.174869520999934, 49.014611742000099 ], [ -119.180305476999976, 49.014958277000076 ], [ -119.179849839, 49.018067332000108 ], [ -119.179780136999966, 49.018542914000108 ], [ -119.17434376599999, 49.018196354000096 ], [ -119.17461264399999, 49.016363208 ], [ -119.174869520999934, 49.014611742000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "136.7", "sL_BldgLoss": "136.7", "sL_StrLoss": "136.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088D9688C18C05DC02D85304CE08A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.002939969999957, 49.082761089000023 ], [ -119.004624113, 49.082871031000053 ], [ -119.004084497999926, 49.086454418000095 ], [ -119.003962607999966, 49.086446462000048 ], [ -119.003815336999963, 49.087424322000032 ], [ -119.002565270000034, 49.087342718000095 ], [ -118.998372256999971, 49.087068891000101 ], [ -118.998912319999988, 49.083485535000101 ], [ -118.999034199999969, 49.083493497000063 ], [ -118.999181559999954, 49.082515638000054 ], [ -119.002939969999957, 49.082761089000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "51.3", "sL_BldgLoss": "51.3", "sL_StrLoss": "51.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E113E8C77C45DC0BF66142667864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.067344192999954, 49.048054888000102 ], [ -119.072783240999954, 49.048406849000067 ], [ -119.072249261999929, 49.051990768000067 ], [ -119.066809798999913, 49.051638782000055 ], [ -119.067344192999954, 49.048054888000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "1", "sL_AssetLoss": "236.6", "sL_BldgLoss": "236.6", "sL_StrLoss": "236.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A8BEE8BD1C15DC05A5B80CFF2874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.029335861999925, 49.058228951000075 ], [ -119.034775809999985, 49.058582831000095 ], [ -119.034238793999947, 49.062166505000029 ], [ -119.034208253999935, 49.062164519000113 ], [ -119.034111621999926, 49.062809305 ], [ -119.029419952999945, 49.062504120000021 ], [ -119.029282548999902, 49.063420314000098 ], [ -119.0288856499999, 49.063394487000082 ], [ -119.028407778999963, 49.066580424000065 ], [ -119.022966944999922, 49.066226226000062 ], [ -119.023504874999944, 49.062642631000067 ], [ -119.02390176599998, 49.062668479000102 ], [ -119.024379904999975, 49.059482542000055 ], [ -119.029071237999986, 49.059787949000039 ], [ -119.029208633999957, 49.05887175 ], [ -119.029239171999933, 49.058873737000077 ], [ -119.029335861999925, 49.058228951000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "102.2", "sL_BldgLoss": "102.2", "sL_StrLoss": "102.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A11700815C35DC0F7164129FB854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.046117861999974, 49.047865966000131 ], [ -119.046095721999905, 49.047326579000099 ], [ -119.045063150999908, 49.047344889000051 ], [ -119.04445458, 49.047355675000041 ], [ -119.044463059999956, 49.047562452000086 ], [ -119.04446564099996, 49.04762536900008 ], [ -119.044287047999944, 49.047628534000069 ], [ -119.043234776999924, 49.047647177000094 ], [ -119.043201611999976, 49.046838093000069 ], [ -119.043611893999952, 49.046830825000058 ], [ -119.043600836999971, 49.04656113100004 ], [ -119.044421395999947, 49.046546592000077 ], [ -119.044410334999938, 49.046276898000038 ], [ -119.046461716999943, 49.046240524000041 ], [ -119.046450644999965, 49.04597083200013 ], [ -119.046860918999954, 49.045963552000053 ], [ -119.046849844999954, 49.045693858000121 ], [ -119.048490928999954, 49.045664729000094 ], [ -119.048479846999925, 49.045395034000045 ], [ -119.050531188999969, 49.04535859100006 ], [ -119.050564469999969, 49.046167671000028 ], [ -119.052205565999955, 49.046138488000054 ], [ -119.052249979999928, 49.04721726000011 ], [ -119.051839697, 49.047224558000096 ], [ -119.051850797999961, 49.047494251000089 ], [ -119.051440512999932, 49.047501548000071 ], [ -119.051450662999969, 49.047748143000092 ], [ -119.051451612999969, 49.047771241000099 ], [ -119.05138582499994, 49.047772411 ], [ -119.049665150999914, 49.047802995000033 ], [ -119.049400173999942, 49.047807703000032 ], [ -119.049396444999957, 49.047717034000122 ], [ -119.049389085999934, 49.0475380090001 ], [ -119.048980374999985, 49.047545270000043 ], [ -119.048568511999974, 49.04755258400003 ], [ -119.048561098999983, 49.047372180000117 ], [ -119.048557428999956, 49.047282890000119 ], [ -119.048353579999969, 49.04728651100006 ], [ -119.047326575999961, 49.047304741000112 ], [ -119.0473487309999, 49.047844129000076 ], [ -119.046117861999974, 49.047865966000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7E2AD9045C95DC0F91DBBF2F6804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.14333256899999, 49.005628514000172 ], [ -119.147852224999966, 49.005918055000102 ], [ -119.147324493999989, 49.009502584000074 ], [ -119.142804494999936, 49.00921302200004 ], [ -119.141889417999906, 49.009154376000069 ], [ -119.142417562, 49.005569871 ], [ -119.14333256899999, 49.005628514000172 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "125", "sL_BldgLoss": "125", "sL_StrLoss": "125", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F547FADA0BF5DC0ED03562F3B994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.991896179999955, 49.197850906000063 ], [ -118.991999590999981, 49.197167188000023 ], [ -118.991393800999916, 49.197127678000072 ], [ -118.991155909, 49.196585514000105 ], [ -118.99161892599993, 49.193524303000039 ], [ -118.993527525999966, 49.193648781 ], [ -118.993564919999969, 49.193665901000053 ], [ -118.99481738299994, 49.194066092000128 ], [ -118.994974807999938, 49.194208501000027 ], [ -118.995726991999959, 49.195535906000046 ], [ -118.996145768999952, 49.197445043000087 ], [ -118.996163418999927, 49.19752549600004 ], [ -118.99636598799998, 49.197672118000085 ], [ -118.997327752999979, 49.198368230000057 ], [ -118.997289089000034, 49.198624050000085 ], [ -118.996917938999914, 49.201079635000092 ], [ -118.995938880999958, 49.201015827000077 ], [ -118.995616865999949, 49.200769693000069 ], [ -118.995529380999955, 49.200717800000099 ], [ -118.994268468999948, 49.19996979900003 ], [ -118.993903987999886, 49.199753596000114 ], [ -118.99265501499994, 49.198640093000058 ], [ -118.991896179999955, 49.197850906000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "177.6", "sL_BldgLoss": "177.6", "sL_StrLoss": "177.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008987C5E256CE5DC0626E311E29834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.222239074999905, 49.026848361000091 ], [ -119.22237243399999, 49.025932895000061 ], [ -119.219907362999933, 49.025776800000081 ], [ -119.22042970299999, 49.022192008000047 ], [ -119.223495905999954, 49.022386161000071 ], [ -119.22586688, 49.022536232000036 ], [ -119.2257336, 49.02345170600011 ], [ -119.228198566999964, 49.023607669000086 ], [ -119.227676807999984, 49.027192491000065 ], [ -119.226596879999931, 49.027124170000079 ], [ -119.222239074999905, 49.026848361000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "45.5", "sL_BldgLoss": "45.5", "sL_StrLoss": "45.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E926D64E39BA5DC04EA95CF2898F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.908516654, 49.119369985000063 ], [ -118.910099222999975, 49.11947461300015 ], [ -118.910818864999925, 49.119955776000026 ], [ -118.91117390399999, 49.120343992000059 ], [ -118.911450049999971, 49.121235033000033 ], [ -118.911354878999973, 49.123176489000045 ], [ -118.907969220999973, 49.12295268400004 ], [ -118.908516654, 49.119369985000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5500334", "BldgCostT": "3793334", "sL_LossRatio": "1", "sL_AssetLoss": "373.9", "sL_BldgLoss": "373.9", "sL_StrLoss": "373.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C078E5FE53BB5DC043A46CB242864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.937982015999964, 49.051754145000132 ], [ -118.937108240999933, 49.051552240000071 ], [ -118.936607921999922, 49.051436607000014 ], [ -118.93597950900002, 49.051334087000065 ], [ -118.934306939999942, 49.051061185000059 ], [ -118.92938385299999, 49.050257779000091 ], [ -118.929039123999985, 49.050201516000051 ], [ -118.924960987999953, 49.049535809000055 ], [ -118.921741389, 49.049081511000075 ], [ -118.917430811999964, 49.048893290000073 ], [ -118.914538141999941, 49.048769748000069 ], [ -118.914346552999987, 49.048761563000028 ], [ -118.910689839999947, 49.048605241000061 ], [ -118.910251796999944, 49.048586510000085 ], [ -118.907809175999958, 49.048485745000079 ], [ -118.908042176, 49.046958353000051 ], [ -118.908465197999988, 49.046986371000081 ], [ -118.908591494999882, 49.046158363000082 ], [ -118.90915306, 49.0461955540001 ], [ -118.909291111999948, 49.045290376000054 ], [ -118.914728632, 49.04565033900009 ], [ -118.91460484299995, 49.046462629000104 ], [ -118.916068943999932, 49.046559504000122 ], [ -118.91591454499999, 49.047572820000084 ], [ -118.916388512999958, 49.047604177000053 ], [ -118.916394291999936, 49.047566244000031 ], [ -118.918797797999957, 49.047725222000054 ], [ -118.91880998699996, 49.0476452 ], [ -118.924247855999965, 49.048004680000069 ], [ -118.92423622299998, 49.048081112000013 ], [ -118.92466384799999, 49.048109368000048 ], [ -118.924632147999915, 49.048317668 ], [ -118.926837579000022, 49.048463374000086 ], [ -118.926952639000021, 49.047707086000074 ], [ -118.928458571999926, 49.047806551000079 ], [ -118.92943300099995, 49.047870900000099 ], [ -118.929563964999915, 49.047009743000025 ], [ -118.935001842999924, 49.047368679000087 ], [ -118.93488397599999, 49.048144311000051 ], [ -118.939781646999933, 49.048467350000088 ], [ -118.939728321999937, 49.048818495000091 ], [ -118.939850469999953, 49.048826549000061 ], [ -118.939839851999949, 49.048896463000091 ], [ -118.94058405, 49.0489455270001 ], [ -118.940383080999965, 49.050269005000082 ], [ -118.940218951999967, 49.051349818000105 ], [ -118.943220516999943, 49.051547655000071 ], [ -118.945153368999911, 49.051675008000139 ], [ -118.945152995999976, 49.051677461000047 ], [ -118.94677891799995, 49.051784563000119 ], [ -118.946711109999939, 49.052231486000075 ], [ -118.946877744999952, 49.052242461000041 ], [ -118.946817023, 49.052642687000045 ], [ -118.945842294999963, 49.052706699000062 ], [ -118.944313462999915, 49.052787906000027 ], [ -118.943645315999959, 49.052823411000048 ], [ -118.942990502999962, 49.052812899000095 ], [ -118.94233918899999, 49.052760907000085 ], [ -118.937982015999964, 49.051754145000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "51.2", "sL_BldgLoss": "51.2", "sL_StrLoss": "51.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008982B628F5C25DC09B6CA8BDAD894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.043760541999958, 49.073646228000015 ], [ -119.049202398, 49.073999369000049 ], [ -119.048666312999956, 49.077583029000067 ], [ -119.043224041999935, 49.077229862000138 ], [ -119.043760541999958, 49.073646228000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "249", "sL_BldgLoss": "249", "sL_StrLoss": "249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000341F2114A5C75DC07C26A02EF7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.117788946999951, 49.048834206000045 ], [ -119.11784597099998, 49.048448919000073 ], [ -119.116547531999942, 49.048365473000111 ], [ -119.116634982999983, 49.047774715000031 ], [ -119.115022024999973, 49.047671033000029 ], [ -119.115552669999914, 49.044086877000048 ], [ -119.120991617999962, 49.044436400000095 ], [ -119.120946366999974, 49.044742300000102 ], [ -119.123101872999911, 49.044880741000021 ], [ -119.123002769, 49.045550898 ], [ -119.123468181999954, 49.045580783000091 ], [ -119.123758495999937, 49.04559942500007 ], [ -119.123228465999915, 49.049183613 ], [ -119.120908328999988, 49.049034613000046 ], [ -119.117906438999967, 49.048841756000044 ], [ -119.117788946999951, 49.048834206000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "108.5", "sL_BldgLoss": "108.5", "sL_StrLoss": "108.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028C1346F09CC5DC0210B2CDB62824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.185620058999973, 49.016676494000095 ], [ -119.191056334999985, 49.017022484000087 ], [ -119.190871117999933, 49.018288319000099 ], [ -119.190531797999952, 49.020607162000026 ], [ -119.185095106999924, 49.020261147000035 ], [ -119.185314209999945, 49.018765067000061 ], [ -119.185490149999922, 49.017563641000081 ], [ -119.185620058999973, 49.016676494000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "241.8", "sL_BldgLoss": "241.8", "sL_StrLoss": "241.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5F4B082E5BE5DC00880BFD258934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.986082613999912, 49.146682003000102 ], [ -118.987476212999937, 49.146773066000087 ], [ -118.986934536999982, 49.150356015000106 ], [ -118.986038204999915, 49.15029744600011 ], [ -118.985785171999979, 49.151970736000088 ], [ -118.984858817999964, 49.151910199000064 ], [ -118.984502139999975, 49.154268359000106 ], [ -118.983881506, 49.154227795000025 ], [ -118.983717161999948, 49.155314173000065 ], [ -118.98350424599991, 49.155300257000128 ], [ -118.983400385, 49.155986779000088 ], [ -118.980672654999964, 49.155808452000073 ], [ -118.978449358999953, 49.155663052000072 ], [ -118.978024366999989, 49.155135492000085 ], [ -118.978336792999954, 49.153071865000157 ], [ -118.978674089999984, 49.152764013000073 ], [ -118.97898011599996, 49.152543306000048 ], [ -118.980114092999926, 49.15103079300011 ], [ -118.980336192999957, 49.150396998000119 ], [ -118.980520281999986, 49.148829004000071 ], [ -118.980705911999948, 49.148330491000074 ], [ -118.980963618000018, 49.147894693000104 ], [ -118.981544522999982, 49.147365904000047 ], [ -118.981879420999945, 49.147387803000107 ], [ -118.981955299, 49.146886273000106 ], [ -118.981990911999944, 49.146833606000087 ], [ -118.9820864499999, 49.146420773000017 ], [ -118.986082613999912, 49.146682003000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "101.6", "sL_BldgLoss": "101.6", "sL_StrLoss": "101.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095CD2403E3B95DC0474EECC20B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.901460038, 49.047731980000101 ], [ -118.901746601999932, 49.045855106 ], [ -118.907184129999976, 49.046215451000087 ], [ -118.907046591999958, 49.047116983000087 ], [ -118.907891266999954, 49.047172934000109 ], [ -118.907691735999933, 49.048480899000012 ], [ -118.905144082999982, 49.048375737000114 ], [ -118.903843564999974, 49.048322134000095 ], [ -118.902553601999969, 49.04823572700009 ], [ -118.901660406999895, 49.048095991000075 ], [ -118.900730965999969, 49.047869696000056 ], [ -118.900041103999953, 49.047637902000041 ], [ -118.901460038, 49.047731980000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "153.7", "sL_BldgLoss": "153.7", "sL_StrLoss": "153.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD93865CE1C45DC0C5B93C8C7F874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.073730187999956, 49.060254253000032 ], [ -119.07373854399998, 49.060198163000081 ], [ -119.072805462999952, 49.060137828000016 ], [ -119.073339492999963, 49.056553951000168 ], [ -119.078779577999967, 49.056905604000086 ], [ -119.078771228000022, 49.05696169500002 ], [ -119.079704252999989, 49.05702197800013 ], [ -119.079170706999946, 49.060605884000033 ], [ -119.073730187999956, 49.060254253000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.2", "sL_BldgLoss": "40.2", "sL_StrLoss": "40.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A1C6361A7BE5DC02736598210934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.97829653699992, 49.14715345900008 ], [ -118.980713816, 49.1473115780001 ], [ -118.98009860699996, 49.147908909000073 ], [ -118.979834491999938, 49.148507110000097 ], [ -118.979753410999976, 49.149921290000087 ], [ -118.979386146999957, 49.150843116000104 ], [ -118.977754148999963, 49.150736358000088 ], [ -118.97829653699992, 49.14715345900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "37.7", "sL_BldgLoss": "37.7", "sL_StrLoss": "37.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D6FB5D294BE5DC0CB5C09720A8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.978387173999934, 49.106540137000081 ], [ -118.979366037999938, 49.106604232000088 ], [ -118.979538099999928, 49.106985704000088 ], [ -118.979647418999917, 49.108001201000093 ], [ -118.979515704999983, 49.108479692000046 ], [ -118.979254697999977, 49.108817198000025 ], [ -118.978939317999931, 49.109154796000034 ], [ -118.978541780999976, 49.110160303000086 ], [ -118.978252219999945, 49.111524598000059 ], [ -118.977934001999984, 49.112141302000111 ], [ -118.977918953999918, 49.112445381000093 ], [ -118.976048162999945, 49.112322866000056 ], [ -118.976139198999988, 49.112191988000077 ], [ -118.976190524999964, 49.112084103000022 ], [ -118.976333932, 49.111782656000109 ], [ -118.976549121999966, 49.111418202000024 ], [ -118.976567212999953, 49.111354464000087 ], [ -118.976593276999921, 49.11126277600011 ], [ -118.976584736999897, 49.111110240000073 ], [ -118.97640712799992, 49.110802775000067 ], [ -118.976329294999928, 49.110707647 ], [ -118.976233742999938, 49.11059081500008 ], [ -118.976186655999953, 49.110533238000095 ], [ -118.976104730999978, 49.110356906000163 ], [ -118.976114902999939, 49.110256660000132 ], [ -118.976121507999977, 49.110191547000063 ], [ -118.976145575999979, 49.110136387000054 ], [ -118.976289765999937, 49.10980630800001 ], [ -118.976304493999976, 49.109418285000039 ], [ -118.976335184999954, 49.109333599000102 ], [ -118.97635635599994, 49.109275125000117 ], [ -118.97655826399992, 49.109027822000016 ], [ -118.976629897999928, 49.108940107000059 ], [ -118.976688858999978, 49.108867828000072 ], [ -118.976729318999929, 49.108818281 ], [ -118.976761259999989, 49.108750965000056 ], [ -118.978040153999984, 49.108834719000065 ], [ -118.978387173999934, 49.106540137000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026666", "BldgCostT": "3466666", "sL_LossRatio": "1", "sL_AssetLoss": "415", "sL_BldgLoss": "415", "sL_StrLoss": "415", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D74C9BCBEC55DC053454CE45D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.090175766999948, 49.050538809000052 ], [ -119.090191225999945, 49.050434786000032 ], [ -119.089236856999904, 49.050373209000028 ], [ -119.08924294799999, 49.050332232000116 ], [ -119.08826284499996, 49.050268985000052 ], [ -119.088259348999912, 49.050292508000055 ], [ -119.082819962999977, 49.049941332000103 ], [ -119.082881573999941, 49.049527187000052 ], [ -119.083353106999965, 49.0463573480001 ], [ -119.085586086999982, 49.046501548000037 ], [ -119.085601410999928, 49.046398499000063 ], [ -119.091040403, 49.046749538000064 ], [ -119.091028587999944, 49.046829063000118 ], [ -119.093910620999978, 49.047014958000034 ], [ -119.093904533999975, 49.047055935000103 ], [ -119.095208582999959, 49.047140022000065 ], [ -119.095080187999955, 49.048004675000058 ], [ -119.096034514999985, 49.048066201000083 ], [ -119.095781349, 49.049771221000093 ], [ -119.095502325999959, 49.0516502380001 ], [ -119.093028193999956, 49.051490712 ], [ -119.092608743999932, 49.054314096000063 ], [ -119.087168856999966, 49.053963142000107 ], [ -119.087701712999944, 49.050379159000087 ], [ -119.090175766999948, 49.050538809000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "53.4", "sL_BldgLoss": "53.4", "sL_StrLoss": "53.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D2E034A5AC85DC0EB355E3611854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.127435614, 49.042056691000077 ], [ -119.127695746999976, 49.040296310000031 ], [ -119.127570931999955, 49.04028830000005 ], [ -119.128100528999965, 49.036704040000075 ], [ -119.13353871, 49.037052932000059 ], [ -119.133278814999969, 49.038813336 ], [ -119.133403627999925, 49.03882133900003 ], [ -119.133026392999966, 49.041376345000053 ], [ -119.132874413999943, 49.042405613000071 ], [ -119.130929662999904, 49.042280881000046 ], [ -119.127435614, 49.042056691000077 ] ], [ [ -119.130203192999915, 49.037612493000111 ], [ -119.12940451899999, 49.03752840600005 ], [ -119.128770606999922, 49.03775630700008 ], [ -119.128574116999971, 49.037940005000095 ], [ -119.128512312999959, 49.03809380600002 ], [ -119.12879189, 49.03826051300009 ], [ -119.129352521, 49.037925805000057 ], [ -119.130125324999966, 49.037757704000121 ], [ -119.130203192999915, 49.037612493000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "83.6", "sL_BldgLoss": "83.6", "sL_StrLoss": "83.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000150DA5387FBC5DC04C87F315C9854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.943607830999923, 49.047035667000067 ], [ -118.943648743, 49.046766105000117 ], [ -118.940940467999951, 49.046587593000048 ], [ -118.941484470999939, 49.043004302000085 ], [ -118.946921973999935, 49.043362637000016 ], [ -118.946881083999983, 49.043632202 ], [ -118.94958921099996, 49.04381056400014 ], [ -118.949045819999938, 49.047393892000031 ], [ -118.943607830999923, 49.047035667000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "86.4", "sL_BldgLoss": "86.4", "sL_StrLoss": "86.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012F3EEC0E7BE5DC0AE17F9AB36854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.980446848999975, 49.03876097700001 ], [ -118.985884154999937, 49.039117342000061 ], [ -118.985343606999947, 49.04270087900008 ], [ -118.979905886999916, 49.042344488000012 ], [ -118.980446848999975, 49.03876097700001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000077959CB010C05DC0A24E2FE708894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.001601223999899, 49.067924248000026 ], [ -119.001718086999972, 49.06793188300005 ], [ -119.00256981099993, 49.069820909000015 ], [ -119.003623795999943, 49.070846392000085 ], [ -119.004216024999977, 49.071713719000101 ], [ -119.003653861999922, 49.071677011000112 ], [ -119.003535737999968, 49.072461573000076 ], [ -118.998742449999924, 49.072148468000066 ], [ -118.998739395999976, 49.07131847400008 ], [ -118.998738569999901, 49.071093493000063 ], [ -118.998737724999955, 49.070860782000089 ], [ -118.998760577999917, 49.068530934000094 ], [ -119.001483072999974, 49.068708813000057 ], [ -119.001601223999899, 49.067924248000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "1", "sL_AssetLoss": "346.5", "sL_BldgLoss": "346.5", "sL_StrLoss": "346.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002EDC03BEACCF5DC01A02FC2AAB814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.242894381, 49.016069462000068 ], [ -119.243033499999953, 49.015111262000119 ], [ -119.240872480999911, 49.014974809000158 ], [ -119.240947259999984, 49.014459912000035 ], [ -119.240773009999941, 49.014448907000073 ], [ -119.241112702999914, 49.012109831000068 ], [ -119.241293620999954, 49.010863950000065 ], [ -119.242069030999957, 49.010912919000049 ], [ -119.242095594999981, 49.010729969000032 ], [ -119.242322698999899, 49.010744309000117 ], [ -119.242399709999916, 49.01021387400003 ], [ -119.242618630999914, 49.01022769700009 ], [ -119.242711329999949, 49.00958917800007 ], [ -119.248147202, 49.009932281000076 ], [ -119.247737382999944, 49.012757310000097 ], [ -119.248851061999972, 49.012827569000123 ], [ -119.248659286999953, 49.014149632000056 ], [ -119.248331009000012, 49.016412552000126 ], [ -119.24539359, 49.016227215000072 ], [ -119.242894381, 49.016069462000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999999213465748", "sL_AssetLoss": "138.2012287", "sL_BldgLoss": "138.20112", "sL_StrLoss": "138.2", "sL_NStrLoss": "0.00112", "sL_ContLoss": "0.0001087", "geom_point": "0101000020E6100000E6AC915578C75DC0648D1FCF53894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.114264011000017, 49.070903329000032 ], [ -119.119706077999979, 49.071252902 ], [ -119.11917544399995, 49.074836927 ], [ -119.113732962999947, 49.0744873290001 ], [ -119.114264011000017, 49.070903329000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "117.9", "sL_BldgLoss": "117.9", "sL_StrLoss": "117.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003539A551BBBF5DC0500CDAF59C8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.995518383999979, 49.119925027000086 ], [ -118.998089628999978, 49.12009290600006 ], [ -118.997987285999912, 49.12077134400004 ], [ -118.997549078999924, 49.12367605400005 ], [ -118.996995265999914, 49.123639900000043 ], [ -118.992101810999941, 49.123320326000098 ], [ -118.992107145999938, 49.123284988000137 ], [ -118.992474921999971, 49.123092103000118 ], [ -118.992954911999931, 49.122768793000056 ], [ -118.994697419999952, 49.121092501000064 ], [ -118.995518383999979, 49.119925027000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58", "sL_BldgLoss": "58", "sL_StrLoss": "58", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF09A61661BF5DC0AAFB1941D78B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.988771322999966, 49.090592243000067 ], [ -118.99231984799998, 49.090824293000018 ], [ -118.992111553999933, 49.092204866000095 ], [ -118.991779194999978, 49.094407574000059 ], [ -118.988222137999941, 49.094174967000065 ], [ -118.98823421899999, 49.094152098000102 ], [ -118.988466794999965, 49.092789201000123 ], [ -118.988656304999935, 49.092371884000023 ], [ -118.988695689999972, 49.091762530000025 ], [ -118.988771322999966, 49.090592243000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "100.2", "sL_BldgLoss": "100.2", "sL_StrLoss": "100.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F5A16444BC15DC04C0A5EBA6A804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.021247277999962, 49.001544791000128 ], [ -119.021239130999945, 49.001343567000049 ], [ -119.0224688699999, 49.001322010000095 ], [ -119.022481155999941, 49.00162528100013 ], [ -119.023177667999931, 49.001670710000099 ], [ -119.022640415999916, 49.005254643000058 ], [ -119.017206772999941, 49.004900120000059 ], [ -119.017338666999962, 49.004021008000052 ], [ -119.01774443799998, 49.001316211000066 ], [ -119.019623082999914, 49.001438818000061 ], [ -119.021247277999962, 49.001544791000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "55", "sL_BldgLoss": "55", "sL_StrLoss": "55", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC4986142AC05DC0F6AFEE50FB894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.001598246999947, 49.077000377000083 ], [ -119.004908911999976, 49.077216545000049 ], [ -119.004644991999939, 49.077467496000089 ], [ -119.003841011999924, 49.077913290000041 ], [ -119.001826720999986, 49.079280502000088 ], [ -119.001171916999965, 49.079830673000075 ], [ -119.001598246999947, 49.077000377000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "253.2", "sL_BldgLoss": "253.2", "sL_StrLoss": "253.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094492E7B29D25DC0557FADE0F1824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.283228471999934, 49.025630956000107 ], [ -119.283471757999934, 49.023945525000101 ], [ -119.280229838999972, 49.023742077000072 ], [ -119.278379730999944, 49.023625928000058 ], [ -119.278897557, 49.02004084 ], [ -119.284271190999945, 49.020378107000056 ], [ -119.284334911999963, 49.020382104000085 ], [ -119.284091674999956, 49.022067547000098 ], [ -119.289183570999953, 49.022386875000095 ], [ -119.288666509999942, 49.025971999000106 ], [ -119.283228471999934, 49.025630956000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "97.9", "sL_BldgLoss": "97.9", "sL_StrLoss": "97.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A125D93440BA5DC0CBA7E0532D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.90693101, 49.148003228000114 ], [ -118.912379115999912, 49.148363162000074 ], [ -118.911831638999971, 49.151945721000061 ], [ -118.909307675999969, 49.151779009000037 ], [ -118.908908531999927, 49.151374252000018 ], [ -118.908829854999951, 49.150934817000135 ], [ -118.908641065999973, 49.150486296000146 ], [ -118.908624123999971, 49.150012022000048 ], [ -118.908462318999952, 49.149558029000048 ], [ -118.908420717999959, 49.149532968000088 ], [ -118.907984744999979, 49.149270452000053 ], [ -118.907565914999964, 49.14856245600005 ], [ -118.90693101, 49.148003228000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.3", "sL_BldgLoss": "51.3", "sL_StrLoss": "51.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E271B0785CD5DC0D2670FCD1F844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.210152131999948, 49.034044023000014 ], [ -119.210140179999911, 49.033774357000055 ], [ -119.209319919999942, 49.033790071000084 ], [ -119.209284077999882, 49.032981073000066 ], [ -119.209694200999962, 49.032973217000048 ], [ -119.209622509000013, 49.031355221000126 ], [ -119.210442728999965, 49.03133950400013 ], [ -119.210429988999948, 49.031052064000058 ], [ -119.21040687299994, 49.030530507000023 ], [ -119.210816975999961, 49.030522647000069 ], [ -119.210809796999939, 49.030360679000104 ], [ -119.210805022999978, 49.030252981000054 ], [ -119.211490028999918, 49.030239850000051 ], [ -119.212445423999981, 49.030221527000108 ], [ -119.212478420999915, 49.030965349000098 ], [ -119.212481312999941, 49.031030524000101 ], [ -119.212891419999949, 49.031022657000108 ], [ -119.212975182999926, 49.032910315000059 ], [ -119.212565061999925, 49.032918183000078 ], [ -119.212600955999946, 49.033727180000014 ], [ -119.211733515999981, 49.033743816000033 ], [ -119.211370569999985, 49.033750775000065 ], [ -119.211382527999945, 49.034020441000067 ], [ -119.210809561999895, 49.034031424000027 ], [ -119.210152131999948, 49.034044023000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "135.4", "sL_BldgLoss": "135.4", "sL_StrLoss": "135.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000209284F191D15DC0A8B283A595804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.272898827999924, 49.002603648000083 ], [ -119.278334108999942, 49.002945226000058 ], [ -119.2778164299999, 49.006530407000128 ], [ -119.276181444999949, 49.006427687000048 ], [ -119.276166659999944, 49.006530045000012 ], [ -119.270730977999932, 49.006188359000106 ], [ -119.271249195999971, 49.002603211000093 ], [ -119.272884036999969, 49.002706007000043 ], [ -119.272898827999924, 49.002603648000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.2", "sL_BldgLoss": "51.2", "sL_StrLoss": "51.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000987219922ED05DC00D0E40B420954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.251398514999963, 49.163834948000058 ], [ -119.255188702999973, 49.164073052000091 ], [ -119.254770069999935, 49.165238372000026 ], [ -119.25436304399993, 49.165671336000074 ], [ -119.250974839000023, 49.166746575000083 ], [ -119.251398514999963, 49.163834948000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "49.1", "sL_BldgLoss": "49.1", "sL_StrLoss": "49.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD7A8F2B5CC95DC0FBFC9C27C3824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.143796464999966, 49.019614347000051 ], [ -119.149232773999969, 49.019962452000065 ], [ -119.148704991, 49.023546909000103 ], [ -119.143268268999961, 49.023198778 ], [ -119.14354270299999, 49.021336502000054 ], [ -119.143571014999978, 49.021144369000048 ], [ -119.143796464999966, 49.019614347000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5236917", "BldgCostT": "3611667", "sL_LossRatio": "0.999966407041084", "sL_AssetLoss": "750.1572", "sL_BldgLoss": "750.132", "sL_StrLoss": "750", "sL_NStrLoss": "0.132", "sL_ContLoss": "0.0252", "geom_point": "0101000020E6100000C3BF42C57CC95DC09C13DE92DA884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.146016119999956, 49.073913426000104 ], [ -119.146056982999966, 49.073636345000097 ], [ -119.145686027, 49.073612619000095 ], [ -119.146208829999949, 49.070067645000023 ], [ -119.146026291999988, 49.070071041000098 ], [ -119.146014671999964, 49.069801364000121 ], [ -119.145604227999911, 49.069808999000038 ], [ -119.145592608999962, 49.069539322000082 ], [ -119.14518216799992, 49.069546955000092 ], [ -119.145158937999952, 49.069007604000035 ], [ -119.144748499999949, 49.069015235000087 ], [ -119.144713762000023, 49.068208527000067 ], [ -119.142111960999941, 49.068042033000125 ], [ -119.142640753999956, 49.064457858000033 ], [ -119.145712974999967, 49.064654448000063 ], [ -119.145749325999986, 49.064407929000062 ], [ -119.151190870999955, 49.064755911000084 ], [ -119.150662730999983, 49.068340127000091 ], [ -119.150469547999975, 49.068327778000047 ], [ -119.150471324999984, 49.068368919000044 ], [ -119.151292185, 49.068353615000085 ], [ -119.15130383499995, 49.068623290000041 ], [ -119.15171426699996, 49.068615636000111 ], [ -119.15173756799993, 49.069154986000044 ], [ -119.152148004999944, 49.069147330000071 ], [ -119.152184461999951, 49.069991016000088 ], [ -119.153922117999983, 49.070102049000127 ], [ -119.153394126999927, 49.07368624800008 ], [ -119.15266274399994, 49.073639517000132 ], [ -119.152615808999911, 49.073958065000092 ], [ -119.15151385199999, 49.073887649 ], [ -119.151458775999956, 49.07426139100005 ], [ -119.146016119999956, 49.073913426000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.6", "sL_BldgLoss": "48.6", "sL_StrLoss": "48.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E626E6308AC05DC0B20F701046854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.007321844999964, 49.042879865000046 ], [ -119.007310983999929, 49.042610164000031 ], [ -119.006490471999925, 49.042624439000065 ], [ -119.006457908999977, 49.041815336000063 ], [ -119.006868157999961, 49.041808200000084 ], [ -119.006835590999941, 49.040999098000107 ], [ -119.00724583399996, 49.040991961000039 ], [ -119.007213260999933, 49.040182858000065 ], [ -119.007623496999955, 49.040175719000054 ], [ -119.007580058999977, 49.03909691500008 ], [ -119.008761723999953, 49.039076346000066 ], [ -119.009220967999937, 49.039068348000086 ], [ -119.009264439999981, 49.040147150000024 ], [ -119.008854204000016, 49.040154294000068 ], [ -119.00888680499996, 49.040963395000077 ], [ -119.008476562999945, 49.040970540000131 ], [ -119.008509157, 49.041779641000133 ], [ -119.008919405999947, 49.041772497000103 ], [ -119.008908537999972, 49.041502798000074 ], [ -119.009318784999948, 49.041495651000098 ], [ -119.009307914999923, 49.041225951000158 ], [ -119.009718159999949, 49.041218805000028 ], [ -119.009707287999959, 49.040949104000092 ], [ -119.010938013999962, 49.040927657000125 ], [ -119.01095886899995, 49.041444719000047 ], [ -119.010970646999951, 49.041736758000049 ], [ -119.010560398999957, 49.041743909000076 ], [ -119.010571276999897, 49.042013608000076 ], [ -119.010161024999931, 49.04202075799999 ], [ -119.0101719, 49.042290458000053 ], [ -119.009042915999899, 49.042310126000089 ], [ -119.00894114, 49.042311898000058 ], [ -119.00894410899997, 49.042385574000058 ], [ -119.008952007999966, 49.04258159900008 ], [ -119.008631372999943, 49.042587182000041 ], [ -119.008541752999946, 49.042588742000085 ], [ -119.008543829999951, 49.042640295000098 ], [ -119.008552617999911, 49.042858442000067 ], [ -119.008190446999961, 49.042864748000042 ], [ -119.007379248999939, 49.042878866000116 ], [ -119.007321844999964, 49.042879865000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "87.9", "sL_BldgLoss": "87.9", "sL_StrLoss": "87.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000318D2E882BB65DC0DD61F28A50814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.843740011999941, 49.008408471000052 ], [ -118.849172730999953, 49.008771773000014 ], [ -118.848622039999967, 49.01235478500007 ], [ -118.845301348999911, 49.012132755000053 ], [ -118.845287110999905, 49.012124800000059 ], [ -118.843453710999952, 49.010269931000018 ], [ -118.843740011999941, 49.008408471000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.2", "sL_BldgLoss": "91.2", "sL_StrLoss": "91.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B688C5FB33C25DC06539645E22874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.031971585999926, 49.053767598000043 ], [ -119.037411033999945, 49.054121347000084 ], [ -119.036874270999988, 49.057705058000053 ], [ -119.031434407999953, 49.057351285000081 ], [ -119.031971585999926, 49.053767598000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "105", "sL_BldgLoss": "105", "sL_StrLoss": "105", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B78E38B13C25DC09F0DAFDA6B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.029992160999953, 49.048197636000033 ], [ -119.035430943999941, 49.048551488000037 ], [ -119.035049823999898, 49.051095704000062 ], [ -119.034894092999963, 49.052135220000096 ], [ -119.032664985999972, 49.051990228000086 ], [ -119.029454895999919, 49.051781344000055 ], [ -119.029992160999953, 49.048197636000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "1", "sL_AssetLoss": "302.5", "sL_BldgLoss": "302.5", "sL_StrLoss": "302.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B20ECB8F0DC75DC067367E9788864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.107337561999913, 49.053874803000063 ], [ -119.107523959, 49.052617472000101 ], [ -119.102383789999962, 49.052286569000088 ], [ -119.102599888, 49.050829886000088 ], [ -119.10291545799997, 49.04870250200009 ], [ -119.108354849999955, 49.049052662000051 ], [ -119.108168490999944, 49.050310001000064 ], [ -119.108516230999925, 49.050332376000021 ], [ -119.108787621999966, 49.048501235000089 ], [ -119.114227034999885, 49.048851098000064 ], [ -119.114210971999981, 49.048959565000104 ], [ -119.117376316999952, 49.049163030000052 ], [ -119.117928227999968, 49.049198497000098 ], [ -119.117397709, 49.052782635000028 ], [ -119.113032769999947, 49.052502061000062 ], [ -119.11277759099994, 49.054224735000048 ], [ -119.111097072999939, 49.054116665000045 ], [ -119.107337561999913, 49.053874803000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "123", "sL_BldgLoss": "123", "sL_StrLoss": "123", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D2B45D9F8C55DC06FB88FDC1A814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09086227599991, 49.00666469700009 ], [ -119.096296679999924, 49.007015491000104 ], [ -119.096256766999929, 49.007284573000078 ], [ -119.095764978999966, 49.010599758000104 ], [ -119.090330161999972, 49.010248940000075 ], [ -119.090544772999934, 49.008803420000113 ], [ -119.09086227599991, 49.00666469700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "109.3", "sL_BldgLoss": "109.3", "sL_StrLoss": "109.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019CDE39342CA5DC09376A38FF9804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.158275787999941, 49.005656834000014 ], [ -119.163710579999972, 49.006004214000036 ], [ -119.163184064999911, 49.009588821000079 ], [ -119.162357281999931, 49.009535993000014 ], [ -119.162351529999953, 49.009575140000031 ], [ -119.156916333999931, 49.009227693000078 ], [ -119.157443324999946, 49.005643116000101 ], [ -119.158270034999987, 49.005695982000056 ], [ -119.158275787999941, 49.005656834000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "99.5", "sL_BldgLoss": "99.5", "sL_StrLoss": "99.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE228A66F1BA5DC00E1C86457B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.918532817999946, 49.142415883000098 ], [ -118.923981754999971, 49.142775325000059 ], [ -118.923435236999978, 49.146357973000072 ], [ -118.917985883999961, 49.145998506000076 ], [ -118.918532817999946, 49.142415883000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2FF710461B75DC03E640433AA834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.862351365999984, 49.027617297000077 ], [ -118.866741952999973, 49.027910032000115 ], [ -118.866350971999907, 49.030459148000077 ], [ -118.865981815999973, 49.030077193000075 ], [ -118.865470746999947, 49.029663084000035 ], [ -118.865089807999979, 49.029354389000034 ], [ -118.864936331999928, 49.029230031000012 ], [ -118.863845186999967, 49.028345802000032 ], [ -118.863663943999939, 49.028241172000037 ], [ -118.86312390499991, 49.027929400000069 ], [ -118.862351365999984, 49.027617297000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "188.2", "sL_BldgLoss": "188.2", "sL_StrLoss": "188.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005CC45EC535CF5DC0C5A97B093A854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.235431034999962, 49.042507489000116 ], [ -119.235432635999942, 49.042496477000114 ], [ -119.23392198899991, 49.042401046000073 ], [ -119.234443437999985, 49.038816279000059 ], [ -119.239882654999917, 49.039159785000052 ], [ -119.239881053999966, 49.039170797000047 ], [ -119.241391608999962, 49.039266144000081 ], [ -119.240870687999944, 49.042850942000065 ], [ -119.235431034999962, 49.042507489000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "126", "sL_BldgLoss": "126", "sL_StrLoss": "126", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016395D79BDCB5DC0CD21EBA1E48E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.180985263999943, 49.118713086000128 ], [ -119.181191307999953, 49.117310203000073 ], [ -119.179919620999925, 49.117229360000053 ], [ -119.180446063999966, 49.113645272000063 ], [ -119.185893619999959, 49.11399147200008 ], [ -119.185687730999945, 49.115394371000058 ], [ -119.186959377999969, 49.115475146000101 ], [ -119.186433414999925, 49.119059255000067 ], [ -119.180985263999943, 49.118713086000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "157", "sL_BldgLoss": "157", "sL_StrLoss": "157", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000053FA2F0B6BF5DC0C440D7BE00914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.992581796999985, 49.134691211000082 ], [ -118.992653565999944, 49.134215965000116 ], [ -118.992510324999898, 49.134206610000049 ], [ -118.993051384999916, 49.130623545000063 ], [ -118.998499514999963, 49.130979221000104 ], [ -118.998427809999924, 49.131454473000112 ], [ -118.998571043999974, 49.131463820000114 ], [ -118.998030399999934, 49.135046908000056 ], [ -118.992581796999985, 49.134691211000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4316166", "BldgCostT": "2976666", "sL_LossRatio": "1", "sL_AssetLoss": "237.9", "sL_BldgLoss": "237.9", "sL_StrLoss": "237.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000160377E2AABE5DC0A42C8DA985954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.981653692999942, 49.173826706000071 ], [ -118.981139977999959, 49.172972199000071 ], [ -118.980470290999918, 49.172714399000029 ], [ -118.979307998999928, 49.172463704000052 ], [ -118.97852539799996, 49.172109104000072 ], [ -118.977315998999984, 49.17135568500003 ], [ -118.975911013999948, 49.17015650200009 ], [ -118.975376386999983, 49.169595266000066 ], [ -118.974334615999979, 49.168501607000096 ], [ -118.97396372099999, 49.167910545000026 ], [ -118.97405805399994, 49.167288023000033 ], [ -118.975309869999975, 49.167369925000052 ], [ -118.975302365999937, 49.167181350000163 ], [ -118.973429257999982, 49.167058792000034 ], [ -118.973339907999971, 49.166916394000083 ], [ -118.973105285999949, 49.166191499000043 ], [ -118.973289790999985, 49.165684515000066 ], [ -118.973631718999968, 49.16529280200006 ], [ -118.974894300999921, 49.16425459900011 ], [ -118.975821795999977, 49.163780310000092 ], [ -118.977512307, 49.163202099000038 ], [ -118.978003011999974, 49.162929741000013 ], [ -118.979481536999955, 49.163026430000102 ], [ -118.979435838999933, 49.163328263000082 ], [ -118.981603400000026, 49.163469974000058 ], [ -118.983099045999921, 49.163567730000125 ], [ -118.983057826999968, 49.163840119000071 ], [ -118.98400943599998, 49.163902306000068 ], [ -118.983467293999965, 49.167485142000061 ], [ -118.98229143899998, 49.167408300000098 ], [ -118.982269346999956, 49.167554269000085 ], [ -118.982003190999976, 49.167536874000092 ], [ -118.981933154999965, 49.167999575000088 ], [ -118.981315584999919, 49.167959211000053 ], [ -118.980928645999953, 49.170515191000078 ], [ -118.980179071999913, 49.17046619300006 ], [ -118.980018661999907, 49.171525608000074 ], [ -118.979625469999945, 49.171499904000036 ], [ -118.979615617999954, 49.171564972000041 ], [ -118.982923281999916, 49.171781157000076 ], [ -118.982711903000023, 49.173177685000077 ], [ -118.983794746999976, 49.173248435000048 ], [ -118.983691850999946, 49.173928320000087 ], [ -118.983796190999911, 49.173935137000058 ], [ -118.983253914999949, 49.177517917000081 ], [ -118.982324429999963, 49.177457189000044 ], [ -118.98204420499999, 49.177438878 ], [ -118.98167510599994, 49.17708390100006 ], [ -118.98153938399993, 49.176788991000095 ], [ -118.981482790999934, 49.175692391000041 ], [ -118.981726218999924, 49.174231203000041 ], [ -118.981653692999942, 49.173826706000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "147.1", "sL_BldgLoss": "147.1", "sL_StrLoss": "147.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063437917D6C05DC01A014F392A814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.010410424, 49.011384115000048 ], [ -119.010602916999957, 49.010102525000043 ], [ -119.009751485999985, 49.010046901000088 ], [ -119.010289782999948, 49.006463058000051 ], [ -119.015723555999955, 49.0068179310001 ], [ -119.015531216999975, 49.008099537000092 ], [ -119.015739221999965, 49.008113116000054 ], [ -119.016382618999955, 49.008155116000069 ], [ -119.015844769999973, 49.011738979000057 ], [ -119.012100296999932, 49.011494494000068 ], [ -119.010410424, 49.011384115000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "116.9", "sL_BldgLoss": "116.9", "sL_StrLoss": "116.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080CCB505D7CD5DC0A1C84917D1814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.213792206999983, 49.012228725000071 ], [ -119.219228173999923, 49.012573291000123 ], [ -119.218717832999943, 49.016075898000061 ], [ -119.218705849999935, 49.016158131000068 ], [ -119.218490794999951, 49.016144504000096 ], [ -119.213269468999954, 49.015813541000057 ], [ -119.213792206999983, 49.012228725000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "118.8", "sL_BldgLoss": "118.8", "sL_StrLoss": "118.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095A3F8DFE7D15DC0D908C4EB7A834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.280020427999929, 49.025395221000018 ], [ -119.28275539699996, 49.025566861000065 ], [ -119.28223780699993, 49.029151936000083 ], [ -119.276799445999941, 49.028810570000132 ], [ -119.276994083999952, 49.027463569000076 ], [ -119.277317448999938, 49.025225519000053 ], [ -119.280020427999929, 49.025395221000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "197.7", "sL_BldgLoss": "197.7", "sL_StrLoss": "197.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000028FDA8A1ECC5DC07F9CB499D8894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.187389942, 49.078845863000033 ], [ -119.18743289799994, 49.078552850000079 ], [ -119.186573833999915, 49.078498242000073 ], [ -119.186596302999988, 49.078344995000059 ], [ -119.185325606999982, 49.078264208000064 ], [ -119.18585119399999, 49.074679877000037 ], [ -119.191294235999976, 49.075025824000107 ], [ -119.191271783, 49.07517907199999 ], [ -119.192542406999976, 49.075259790000068 ], [ -119.192499485000013, 49.075552806000104 ], [ -119.193358501999981, 49.075607368000071 ], [ -119.192833481, 49.079191730000062 ], [ -119.187389942, 49.078845863000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "114.1", "sL_BldgLoss": "114.1", "sL_StrLoss": "114.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009470191E18CA5DC05EEC07863D8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.155262243999985, 49.117099307000068 ], [ -119.160710016999957, 49.117446779000069 ], [ -119.16018201199995, 49.121030750000081 ], [ -119.154733824999965, 49.120683252000099 ], [ -119.155262243999985, 49.117099307000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "346.4", "sL_BldgLoss": "346.4", "sL_StrLoss": "346.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5BF98EBFCCA5DC078E4F668FD854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.171708678999948, 49.042644556 ], [ -119.177147877999943, 49.042991235000102 ], [ -119.176621977999943, 49.046575700000055 ], [ -119.176583904999958, 49.0465732750001 ], [ -119.176502201999952, 49.047130101000072 ], [ -119.173442667999936, 49.04693512900009 ], [ -119.172991505999946, 49.050008273000124 ], [ -119.171494572999947, 49.04991284700008 ], [ -119.171390371999934, 49.05062240700012 ], [ -119.165950325999944, 49.050275440000114 ], [ -119.166477084999968, 49.046691049000074 ], [ -119.167973906999947, 49.046786544000064 ], [ -119.168078150999989, 49.04607698300002 ], [ -119.171137604999956, 49.046272108000089 ], [ -119.171588852999946, 49.043198955000065 ], [ -119.171626922999948, 49.043201382000092 ], [ -119.171708678999948, 49.042644556 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "127", "sL_BldgLoss": "127", "sL_StrLoss": "127", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008DB66CA53ECF5DC084DF3C8B14864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.235739228999975, 49.045537830000058 ], [ -119.241179238999948, 49.045881266000023 ], [ -119.240658228999933, 49.049466027 ], [ -119.235217803999959, 49.049122566000051 ], [ -119.235739228999975, 49.045537830000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "118.3", "sL_BldgLoss": "118.3", "sL_StrLoss": "118.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FC01ACE1A4C75DC08BD9379C9E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.116492501999971, 49.092548860000079 ], [ -119.116536855, 49.092249554000063 ], [ -119.116409217999944, 49.092241359000077 ], [ -119.1169402619999, 49.088657444000063 ], [ -119.122384423999904, 49.089006872000013 ], [ -119.122340110999943, 49.08930618200008 ], [ -119.122467740999966, 49.089314371000043 ], [ -119.121937113999977, 49.092898308000144 ], [ -119.116492501999971, 49.092548860000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "156.3", "sL_BldgLoss": "156.3", "sL_StrLoss": "156.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D358CCCEDB85DC00984219B79854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.894116888999918, 49.04564755400002 ], [ -118.894115225999883, 49.045603770000092 ], [ -118.893976765999966, 49.045606044000074 ], [ -118.893400279999952, 49.04543526500003 ], [ -118.892959421999976, 49.045304659000102 ], [ -118.891311419999937, 49.044903132000108 ], [ -118.891182829999963, 49.044871827000051 ], [ -118.889341241999958, 49.044514283000055 ], [ -118.889110171999945, 49.044477129000086 ], [ -118.888503953999987, 49.044379697000089 ], [ -118.888509070999973, 49.04434624300012 ], [ -118.888315518999946, 49.044349411000155 ], [ -118.887906770999933, 49.044283714000066 ], [ -118.887899295999944, 49.044086336000085 ], [ -118.886970291999944, 49.044101535000046 ], [ -118.886965565999972, 49.0441324270001 ], [ -118.88420294899997, 49.043688311000089 ], [ -118.881943652999951, 49.043325047000096 ], [ -118.880032832999945, 49.043018440000075 ], [ -118.880044170999952, 49.042944403000085 ], [ -118.88163876499999, 49.043050438000087 ], [ -118.881641397999886, 49.043033240000042 ], [ -118.882075829999906, 49.043062124000059 ], [ -118.882113001999954, 49.043064595000018 ], [ -118.88211032, 49.04299353200004 ], [ -118.882097721999983, 49.042659833000066 ], [ -118.882083842999933, 49.042292149000041 ], [ -118.882494127999976, 49.042285455000147 ], [ -118.882483941999979, 49.042015733000056 ], [ -118.882894223999955, 49.042009037000085 ], [ -118.882884038999975, 49.041739317000079 ], [ -118.884935433999956, 49.041705818000018 ], [ -118.884925236999919, 49.041436098000062 ], [ -118.88615606399999, 49.041415981000043 ], [ -118.886145861999935, 49.041146261000065 ], [ -118.88655613499999, 49.041139552000075 ], [ -118.886545930999915, 49.040869833000045 ], [ -118.886956201999936, 49.040863122000076 ], [ -118.88693578699997, 49.040323682000107 ], [ -118.88734605399999, 49.04031697100006 ], [ -118.887325634999968, 49.039777531000063 ], [ -118.887735896999985, 49.039770818000093 ], [ -118.887721152999958, 49.0393813640001 ], [ -118.887705263000015, 49.03896165900003 ], [ -118.88893602899999, 49.038941513000083 ], [ -118.888946245999961, 49.039211232000106 ], [ -118.889356503, 49.039204515000065 ], [ -118.889376187999972, 49.039724038000031 ], [ -118.889376942999945, 49.039743954000052 ], [ -118.889465383999948, 49.03974250600006 ], [ -118.889787206000037, 49.039737234000015 ], [ -118.88978995199993, 49.039809704000078 ], [ -118.889797427999966, 49.040006954000084 ], [ -118.890207690999915, 49.040000232000104 ], [ -118.890217915999983, 49.040269952000124 ], [ -118.890628179999922, 49.040263229000082 ], [ -118.890648635999952, 49.040802668000076 ], [ -118.891058905999955, 49.040795944000074 ], [ -118.891069134999924, 49.041065664000044 ], [ -118.89147940699992, 49.041058937000088 ], [ -118.891489637999953, 49.041328656000069 ], [ -118.891899912999989, 49.041321929 ], [ -118.891910146999976, 49.041591648000043 ], [ -118.892320420999951, 49.041584919000151 ], [ -118.892330658999981, 49.041854639000057 ], [ -118.892740937999932, 49.041847908000122 ], [ -118.892751175999962, 49.04211762700006 ], [ -118.893571736999945, 49.042104162000093 ], [ -118.893581978999961, 49.042373881000067 ], [ -118.893992261999969, 49.042367146000053 ], [ -118.894002507999986, 49.042636865000091 ], [ -118.894823074999948, 49.042623390000117 ], [ -118.894833326999958, 49.042893109000033 ], [ -118.895653898999939, 49.042879628000016 ], [ -118.895664153999945, 49.043149346000064 ], [ -118.896074439999921, 49.043142604000117 ], [ -118.896125730999984, 49.044491197000049 ], [ -118.895715431999946, 49.044497940000085 ], [ -118.895766714999979, 49.045846532000084 ], [ -118.894759554999951, 49.045863078000124 ], [ -118.894128555999941, 49.045651011000061 ], [ -118.894116888999918, 49.04564755400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "152.4", "sL_BldgLoss": "152.4", "sL_StrLoss": "152.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD8BFAC1CCC95DC07BF42B42D68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.150663830999946, 49.098322745000083 ], [ -119.156109372999978, 49.098670461000033 ], [ -119.155581225999967, 49.102254512000094 ], [ -119.15013527, 49.101906771000039 ], [ -119.150663830999946, 49.098322745000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13301333", "BldgCostT": "9173333", "sL_LossRatio": "1", "sL_AssetLoss": "875.7", "sL_BldgLoss": "875.7", "sL_StrLoss": "875.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B40854496BF5DC091DF7059E4864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.00090067399999, 49.064796616000123 ], [ -119.000955266999966, 49.064434095000131 ], [ -119.000747391999965, 49.064420513000137 ], [ -119.000761279999963, 49.06432829700001 ], [ -119.000632851999924, 49.06431990600008 ], [ -119.000644700999956, 49.064151190000054 ], [ -119.00088350599998, 49.063642684000094 ], [ -119.003003493999955, 49.060852704000055 ], [ -119.002998199000032, 49.060708802000065 ], [ -119.001935351999947, 49.059583699000086 ], [ -119.001953918999916, 49.05957713800013 ], [ -119.002142047999968, 49.059510497000133 ], [ -119.003553373999949, 49.060718171000055 ], [ -119.003559094999915, 49.060315039000038 ], [ -119.003654320999928, 49.060120419000043 ], [ -119.003874732999947, 49.05999730300011 ], [ -119.004050260999946, 49.059971684000075 ], [ -119.004336425999924, 49.060031993000059 ], [ -119.00456701, 49.060133098000072 ], [ -119.006272820999925, 49.060881280000061 ], [ -119.004833515999962, 49.060059919000075 ], [ -119.002634635999982, 49.058798843000019 ], [ -119.00085889399999, 49.057780350000044 ], [ -119.000836689999943, 49.057767618000128 ], [ -119.000097094999944, 49.05734338600007 ], [ -119.000027176999936, 49.057303273000109 ], [ -118.999371739999944, 49.056959159000122 ], [ -118.999185815999965, 49.056859729000081 ], [ -118.998726123999987, 49.056613891000104 ], [ -118.998531604999968, 49.056513078000123 ], [ -118.996764483999968, 49.055597198000029 ], [ -118.995799865999984, 49.055126756000078 ], [ -118.995373074999947, 49.05491861900007 ], [ -118.995322791999925, 49.054894092000019 ], [ -118.994584403999951, 49.05446308800002 ], [ -118.994510989999981, 49.054397401000166 ], [ -118.993676885999946, 49.053651005000098 ], [ -118.993071506999968, 49.053084910000109 ], [ -118.991811320999958, 49.052199009000041 ], [ -118.991504869999943, 49.052034048000031 ], [ -118.990613908999947, 49.051554365000086 ], [ -118.989196283999902, 49.050791090000104 ], [ -118.988325490999955, 49.050409894000047 ], [ -118.987998394999977, 49.050266702000059 ], [ -118.987343100999951, 49.050004806000082 ], [ -118.985438163999959, 49.049422914000026 ], [ -118.985393916999925, 49.049409397000012 ], [ -118.984494182, 49.049165889000044 ], [ -118.983805987999958, 49.049013203000086 ], [ -118.982835585, 49.048874490000095 ], [ -118.982066592999928, 49.048811391000115 ], [ -118.98007341099999, 49.048907890000066 ], [ -118.978552560999901, 49.049051547000076 ], [ -118.97728587099999, 49.049171192000131 ], [ -118.973826005999939, 49.049497882000047 ], [ -118.971990017999971, 49.049835194000174 ], [ -118.963572203999945, 49.051363306000027 ], [ -118.961986302999932, 49.051589298000074 ], [ -118.960389600999974, 49.051750393000091 ], [ -118.959520965, 49.051807555000032 ], [ -118.959671895, 49.050810940000119 ], [ -118.961748766999975, 49.050947461000099 ], [ -118.961992573999936, 49.049336989000032 ], [ -118.96317678199992, 49.049414814000023 ], [ -118.963202526, 49.049244716000061 ], [ -118.964233799999988, 49.049312479000058 ], [ -118.964265389, 49.049103740000113 ], [ -118.965119873999953, 49.049159879000079 ], [ -118.965153059999921, 49.048940560000105 ], [ -118.966154633999977, 49.049006354000085 ], [ -118.96618012199994, 49.048837883000054 ], [ -118.966678277, 49.048870604000115 ], [ -118.96683634599998, 49.047825695000014 ], [ -118.96748987899997, 49.047868617000098 ], [ -118.968068235999979, 49.047906599000065 ], [ -118.969200230999917, 49.047980930000051 ], [ -118.969277081999934, 49.047472724000038 ], [ -118.969287965999939, 49.047400749000126 ], [ -118.96947270599999, 49.047412879000035 ], [ -118.97443164299996, 49.047738349000085 ], [ -118.974591779999983, 49.04667856800009 ], [ -118.977021355, 49.046837944000117 ], [ -118.97706528399999, 49.046547116000042 ], [ -118.97706978399998, 49.046517324000028 ], [ -118.97788244399996, 49.046570620000075 ], [ -118.977908854999939, 49.046395742000072 ], [ -118.978858385999942, 49.046458007000041 ], [ -118.978861411999929, 49.046437964000098 ], [ -118.980417015999976, 49.046539953000064 ], [ -118.980441948999896, 49.04637480100012 ], [ -118.985880142999946, 49.046731161000068 ], [ -118.985835656999953, 49.047026051000067 ], [ -118.987905400999921, 49.047161606000039 ], [ -118.987799145999986, 49.047866135000056 ], [ -118.987662114999949, 49.048774690000059 ], [ -118.991442477999939, 49.049022174000093 ], [ -118.992910951999974, 49.049118272000094 ], [ -118.992888215999969, 49.049269132000092 ], [ -118.993512143999936, 49.049309956000073 ], [ -118.993480245999976, 49.049521624000072 ], [ -118.994013941999981, 49.049556542000083 ], [ -118.993962674999949, 49.049896765000049 ], [ -118.993841856999921, 49.050698496000123 ], [ -118.996823613999936, 49.05089352800011 ], [ -118.996824191999949, 49.050889694000041 ], [ -118.996958660999937, 49.049996988000011 ], [ -119.001348728999915, 49.050283982000082 ], [ -119.002397403999979, 49.05035251 ], [ -119.001857993, 49.053936068000041 ], [ -118.999979833999959, 49.053813328000047 ], [ -118.999870851999916, 49.054537084000067 ], [ -119.001726302999927, 49.054658340000131 ], [ -119.00156846499999, 49.055706788000172 ], [ -119.00414940099995, 49.055875401000023 ], [ -119.004128282999943, 49.055350297000096 ], [ -119.004538643999965, 49.055343168 ], [ -119.00452779499993, 49.055073466000053 ], [ -119.005758872999962, 49.055052071000034 ], [ -119.005748016999945, 49.05478237100003 ], [ -119.007389442999951, 49.054753821000062 ], [ -119.007400307999987, 49.055023521000081 ], [ -119.007810665999926, 49.05501638000004 ], [ -119.00781100899998, 49.055024910000078 ], [ -119.00782153199999, 49.05528608 ], [ -119.008231891999969, 49.0552789380001 ], [ -119.008242761999952, 49.05554863800014 ], [ -119.008653123999977, 49.055541493000121 ], [ -119.008674866999939, 49.056080893000114 ], [ -119.009085232999951, 49.056073748000102 ], [ -119.009096106999934, 49.056343447000039 ], [ -119.009506474999952, 49.056336300000076 ], [ -119.009558512999945, 49.057626678000105 ], [ -119.009863742999954, 49.055596887000057 ], [ -119.009915737999933, 49.055251099000031 ], [ -119.015355191999944, 49.055605963000076 ], [ -119.015228077999936, 49.056451966000068 ], [ -119.014816716999988, 49.059189556000071 ], [ -119.013419941999985, 49.059098460000087 ], [ -119.009376849999953, 49.058834667000134 ], [ -119.00946835799999, 49.058226188000042 ], [ -119.008761842999931, 49.058238491000019 ], [ -119.008772714999964, 49.058508191000058 ], [ -119.00713116699994, 49.058536761000077 ], [ -119.007163761999948, 49.059345861000097 ], [ -119.006219003999931, 49.059362293000085 ], [ -119.006137574999954, 49.059903487000028 ], [ -119.006775091999927, 49.059892401000056 ], [ -119.006818542999952, 49.060971200000097 ], [ -119.006408136999966, 49.06097833800002 ], [ -119.006408921999977, 49.060997860000043 ], [ -119.006408988999965, 49.060999521000085 ], [ -119.00641101599993, 49.060999654000049 ], [ -119.00796780099995, 49.061101283000077 ], [ -119.007759765999978, 49.062484192000049 ], [ -119.007428692999923, 49.064684808000095 ], [ -119.006421358999944, 49.06461905 ], [ -119.006341172999953, 49.065151931000031 ], [ -119.00577552299994, 49.065115002000049 ], [ -119.00090067399999, 49.064796616000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C56888F0D0BE5DC07C86474D018E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.980377015999963, 49.108446893000078 ], [ -118.980234682999964, 49.106938696000036 ], [ -118.980083061999949, 49.106651177000103 ], [ -118.983832375999953, 49.106896569000128 ], [ -118.983767157999921, 49.107328155000097 ], [ -118.983860602000021, 49.107334269000091 ], [ -118.983798916999959, 49.107742474000055 ], [ -118.98381263, 49.107743371000034 ], [ -118.983271125999948, 49.111326516000162 ], [ -118.980700436999911, 49.111158283000094 ], [ -118.980480476, 49.112613077000042 ], [ -118.97867013099993, 49.112494565000091 ], [ -118.978671910999978, 49.112399092000025 ], [ -118.978767801999979, 49.112064406000066 ], [ -118.97924610699999, 49.111326693000109 ], [ -118.979478990999951, 49.109992209000083 ], [ -118.980218593999979, 49.108899814000068 ], [ -118.980377015999963, 49.108446893000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "89.6", "sL_BldgLoss": "89.6", "sL_StrLoss": "89.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A6FCC998ABF5DC0AA8317D83E8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.994293262999918, 49.109578907000071 ], [ -118.995827737999917, 49.109679142000104 ], [ -118.995287135999931, 49.113262337000123 ], [ -118.995011502, 49.113244334000058 ], [ -118.989841101999971, 49.112906488000085 ], [ -118.990382118999932, 49.109323319000083 ], [ -118.994293262999918, 49.109578907000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "54.4", "sL_BldgLoss": "54.4", "sL_StrLoss": "54.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F25C0975FC35DC0B8A173C897804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.050260197999975, 49.002663558000094 ], [ -119.055693829999939, 49.003016410000072 ], [ -119.05515905799993, 49.006600498000054 ], [ -119.049725011999982, 49.00624762300005 ], [ -119.050260197999975, 49.002663558000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "124", "sL_BldgLoss": "124", "sL_StrLoss": "124", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000053D1F5D080CE5DC0EA471EE365814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.224155342999907, 49.008957352000103 ], [ -119.229591005999978, 49.00930139500008 ], [ -119.229149000999954, 49.01233991600003 ], [ -119.229069513999974, 49.012886303000094 ], [ -119.227816874999988, 49.012807045000024 ], [ -119.223633437999965, 49.012542236000051 ], [ -119.224155342999907, 49.008957352000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.7", "sL_BldgLoss": "49.7", "sL_StrLoss": "49.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000000474C9A90C05DC0DF74C39D289A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.008953496999979, 49.205045388000066 ], [ -119.008655717999886, 49.205019712000059 ], [ -119.008210216999927, 49.205141696000041 ], [ -119.008073329999917, 49.205206257000064 ], [ -119.008055249999984, 49.20521479500011 ], [ -119.007839083999912, 49.205122308000057 ], [ -119.00668491, 49.203441689000051 ], [ -119.006673921999962, 49.203431284000061 ], [ -119.006820295999916, 49.203440809000085 ], [ -119.010121593999884, 49.203655578000088 ], [ -119.009993822999945, 49.204502421000022 ], [ -119.010737128999949, 49.204550763000057 ], [ -119.010594613999984, 49.205495397000035 ], [ -119.008953496999979, 49.205045388000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59003999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "58.9", "sL_BldgLoss": "58.9", "sL_StrLoss": "58.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000036CDD82396C85DC07719598D00844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.131709664999974, 49.02930030000006 ], [ -119.137147010999939, 49.029649013000096 ], [ -119.13661819, 49.033233356000032 ], [ -119.131180429999972, 49.032884618000082 ], [ -119.131709664999974, 49.02930030000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.1", "sL_BldgLoss": "47.1", "sL_StrLoss": "47.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085788788D9B95DC0D2A94CAD4E924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.90306069899999, 49.14288529800011 ], [ -118.902906260999984, 49.14281536400005 ], [ -118.902123272999987, 49.142914677000078 ], [ -118.901850817999929, 49.142923775000071 ], [ -118.901013996999922, 49.14272731100003 ], [ -118.900466200999986, 49.142642367000064 ], [ -118.900599910999929, 49.141768673000108 ], [ -118.906048633999916, 49.142129023000052 ], [ -118.905500744, 49.145711584000047 ], [ -118.905135519999959, 49.14568743899999 ], [ -118.90495985199999, 49.145312437000044 ], [ -118.904874973999981, 49.14485085299999 ], [ -118.90450677099993, 49.144001413000083 ], [ -118.904343971999964, 49.143833230000055 ], [ -118.90413682300003, 49.143739023000101 ], [ -118.903689394999944, 49.14365062800011 ], [ -118.903549692999917, 49.143583484000025 ], [ -118.903451693999969, 49.143459403000094 ], [ -118.90333984399993, 49.143156173000108 ], [ -118.90306069899999, 49.14288529800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "107.4", "sL_BldgLoss": "107.4", "sL_StrLoss": "107.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007B94914F3C65DC0BFBC9DD0AD804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.108894922, 49.002744597000088 ], [ -119.114329005999963, 49.003094479000033 ], [ -119.113798732999925, 49.006678858000029 ], [ -119.11375329599997, 49.006675934000107 ], [ -119.10850396599993, 49.006337951000077 ], [ -119.108277961999988, 49.007864282000057 ], [ -119.103599573999944, 49.007562839000066 ], [ -119.102843369999974, 49.007514095000012 ], [ -119.103374491999929, 49.003929774000063 ], [ -119.108668948999977, 49.004270936000069 ], [ -119.108894922, 49.002744597000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "116.3", "sL_BldgLoss": "116.3", "sL_StrLoss": "116.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD14C6581EC85DC0251818C366874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.127773237999961, 49.056073577000106 ], [ -119.12983736399994, 49.056205983000034 ], [ -119.129307678999936, 49.059790141000072 ], [ -119.123866877999916, 49.059441049000043 ], [ -119.12423633499999, 49.05694311200007 ], [ -119.124396976999961, 49.055856915000078 ], [ -119.127773237999961, 49.056073577000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "133.3", "sL_BldgLoss": "133.3", "sL_StrLoss": "133.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000687640860CD05DC01D37A1B5C7834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.248305447999911, 49.027568262000045 ], [ -119.25374345499992, 49.027911071000119 ], [ -119.253582922999925, 49.029018183000112 ], [ -119.253223609999964, 49.031495993000064 ], [ -119.24778518799998, 49.031153159000077 ], [ -119.24809647899994, 49.029008252000054 ], [ -119.248305447999911, 49.027568262000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009379BB9054C05DC0F1376FD63F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.004664855999934, 49.203300529000103 ], [ -119.00602917899991, 49.203389327000103 ], [ -119.00680058599994, 49.204564007000059 ], [ -119.00736179099998, 49.205212014000011 ], [ -119.007672959999979, 49.205395139000139 ], [ -119.007650026999954, 49.205405958000021 ], [ -119.007625346999987, 49.205417603000051 ], [ -119.007514090999962, 49.205470091000038 ], [ -119.005273288999973, 49.206527094000123 ], [ -119.005071802999964, 49.206647914000044 ], [ -119.002002209999944, 49.205235108000117 ], [ -119.001478704999968, 49.204952373 ], [ -119.004386839999896, 49.205141708000028 ], [ -119.004664855999934, 49.203300529000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "1", "sL_AssetLoss": "315.8", "sL_BldgLoss": "315.8", "sL_StrLoss": "315.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002EEE37C154CF5DC06D043D2F70934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.235894860999949, 49.154752820000084 ], [ -119.235900126, 49.154716711000042 ], [ -119.235441349999917, 49.154687808000084 ], [ -119.235459812999977, 49.154561188000045 ], [ -119.235465894999919, 49.154519472000089 ], [ -119.23501074699999, 49.15449079600009 ], [ -119.235054942999938, 49.154187716000159 ], [ -119.234432249999969, 49.154148481000057 ], [ -119.23447537899996, 49.153852744000126 ], [ -119.233474239999936, 49.15378965499999 ], [ -119.233996971999943, 49.150205508000049 ], [ -119.234244245999946, 49.150221092000073 ], [ -119.234242117999941, 49.150173773000084 ], [ -119.234790511999933, 49.150163157000051 ], [ -119.235475363999939, 49.150149894000037 ], [ -119.23547898899993, 49.150230382000096 ], [ -119.236760309999937, 49.150311108000089 ], [ -119.236937804999926, 49.149093472000047 ], [ -119.237672722999918, 49.149139766000118 ], [ -119.237701680999962, 49.148941088000093 ], [ -119.23803364699998, 49.148961999000072 ], [ -119.238108790999945, 49.148446397000086 ], [ -119.242631547999906, 49.148731170000062 ], [ -119.243560846999969, 49.148789658000062 ], [ -119.243485049999919, 49.14931015200002 ], [ -119.244447752999946, 49.149370735000112 ], [ -119.24438651899996, 49.149791281000013 ], [ -119.245316752999955, 49.149849811000074 ], [ -119.24479489699992, 49.153434016000091 ], [ -119.244422195999974, 49.153410566000076 ], [ -119.244377395999919, 49.153718225000077 ], [ -119.244162108999987, 49.153704679000072 ], [ -119.244127995000014, 49.153938930000052 ], [ -119.243722525999956, 49.153913417000062 ], [ -119.243695185999968, 49.154101139000133 ], [ -119.243400830999974, 49.154082617000121 ], [ -119.243364285, 49.154333546000025 ], [ -119.242947034999958, 49.15430728900003 ], [ -119.242916174999962, 49.154519155000052 ], [ -119.241862818999948, 49.154452861000024 ], [ -119.241838734999988, 49.154618181000053 ], [ -119.241520075999986, 49.154598123000092 ], [ -119.241482333999969, 49.154857188000094 ], [ -119.241383368999948, 49.154850958000054 ], [ -119.2413476399999, 49.155096189000048 ], [ -119.235894860999949, 49.154752820000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "176.9", "sL_BldgLoss": "176.9", "sL_StrLoss": "176.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF9FB70462C65DC0EDC5617A0C824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09738813199999, 49.013705368000082 ], [ -119.10282340399999, 49.014055827000085 ], [ -119.102292124999948, 49.017640088000071 ], [ -119.102177093999956, 49.017632674000033 ], [ -119.102077249999965, 49.01830619 ], [ -119.096641487999989, 49.017955696000158 ], [ -119.097173204999962, 49.01437146500006 ], [ -119.097288227999982, 49.014378885000056 ], [ -119.09738813199999, 49.013705368000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "93", "sL_BldgLoss": "93", "sL_StrLoss": "93", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000364CC0F1ADC25DC0EBFF1CE64B884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.039414692999969, 49.06284769500013 ], [ -119.044855255999977, 49.063201062000054 ], [ -119.044318961999977, 49.066784760000075 ], [ -119.038877983999939, 49.066431369000099 ], [ -119.039414692999969, 49.06284769500013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.6", "sL_BldgLoss": "44.6", "sL_StrLoss": "44.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BC47EAAE5C05DC01C161705499A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.010901226000016, 49.205587845000103 ], [ -119.011118036999946, 49.204150678000119 ], [ -119.016574922999965, 49.204505400000038 ], [ -119.016563661999982, 49.20458011700007 ], [ -119.01732489299999, 49.204629577000048 ], [ -119.017384195999938, 49.204893004000063 ], [ -119.017219084999937, 49.205202008000114 ], [ -119.017373716999899, 49.205612201000058 ], [ -119.017267983999943, 49.205740394000024 ], [ -119.016207208999944, 49.205992503000111 ], [ -119.014981200999941, 49.206563600000102 ], [ -119.013907312999919, 49.20681560000007 ], [ -119.013160495999927, 49.206766941000083 ], [ -119.013127439999892, 49.20674179500007 ], [ -119.012796794999957, 49.206490107000022 ], [ -119.012557307999941, 49.206343979000025 ], [ -119.012086604999979, 49.20605680200002 ], [ -119.011546876999944, 49.205798293000036 ], [ -119.010948977999959, 49.205603410000101 ], [ -119.010901226000016, 49.205587845000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000151CD384FC65DC0F306F3B201874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.096131429999943, 49.052772060000038 ], [ -119.101571246, 49.053122561000123 ], [ -119.101039424999954, 49.056706597000122 ], [ -119.095599194999934, 49.056356071000053 ], [ -119.096131429999943, 49.052772060000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028A1915B55B95DC0357778F800904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.894856877999956, 49.123079474000129 ], [ -118.897869605, 49.12327900300005 ], [ -118.897321305999967, 49.126861627000025 ], [ -118.89405363499999, 49.126645211000024 ], [ -118.893987575999958, 49.127076602000066 ], [ -118.89377014499992, 49.127062198000068 ], [ -118.893723951999959, 49.126990215000028 ], [ -118.893709073999943, 49.126310712000091 ], [ -118.893696444999946, 49.125732613000082 ], [ -118.894162793999939, 49.125157345000083 ], [ -118.894171799, 49.124379881000067 ], [ -118.894856877999956, 49.123079474000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000087F677D755C05DC04C231C69DF884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.005053975999957, 49.068149739000063 ], [ -119.005016146999935, 49.067209976000129 ], [ -119.00533841099994, 49.067204376000142 ], [ -119.005426606999933, 49.067202843000111 ], [ -119.005415747999962, 49.06693314400006 ], [ -119.006040691999942, 49.06692227900006 ], [ -119.006097924999892, 49.066719459000048 ], [ -119.006400225, 49.066756859000023 ], [ -119.006355088999896, 49.066916812000045 ], [ -119.006647117999975, 49.066911734000023 ], [ -119.006690578999951, 49.067990531000071 ], [ -119.006280112999917, 49.067997670000125 ], [ -119.006289486999933, 49.068230400000054 ], [ -119.007042090999931, 49.068279526000019 ], [ -119.006502831999967, 49.071863007000026 ], [ -119.005414092999985, 49.071791938000118 ], [ -119.005127446999964, 49.071773224000033 ], [ -119.003822398999944, 49.069979006000068 ], [ -119.002919912999971, 49.068987807000134 ], [ -119.002399692000026, 49.067976405000117 ], [ -119.005053975999957, 49.068149739000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "274.6", "sL_BldgLoss": "274.6", "sL_StrLoss": "274.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041B7FA5E41C95DC0DAE6C6F4048D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.144126726, 49.09982240000005 ], [ -119.149572395999925, 49.100170445000074 ], [ -119.149043729999974, 49.103754456000075 ], [ -119.145118145999902, 49.103503593000028 ], [ -119.145103155999948, 49.103605147000067 ], [ -119.139657118999978, 49.103256877000064 ], [ -119.140186501999963, 49.09967291 ], [ -119.144111735999928, 49.099923955000065 ], [ -119.144126726, 49.09982240000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "97.7", "sL_BldgLoss": "97.7", "sL_StrLoss": "97.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D3428DC23BD5DC0CEFDD5E33E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.9528666, 49.039011149000089 ], [ -118.958303724999951, 49.039368911000111 ], [ -118.95776105499999, 49.042952306000075 ], [ -118.952323516999982, 49.042594520000122 ], [ -118.9528666, 49.039011149000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "127.6", "sL_BldgLoss": "127.6", "sL_StrLoss": "127.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000716BB9D068C75DC073B5FC5D2B884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.116617771999984, 49.062068693000086 ], [ -119.118758332000013, 49.062206206000049 ], [ -119.118227728999983, 49.065790277000097 ], [ -119.112786309999976, 49.065440625000114 ], [ -119.113317328000022, 49.061856580000025 ], [ -119.114938289999984, 49.061960769000038 ], [ -119.116617771999984, 49.062068693000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "49.5", "sL_BldgLoss": "49.5", "sL_StrLoss": "49.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000010AD5789E0C85DC07F81C58693864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.13687084799993, 49.049450602000057 ], [ -119.141688939999938, 49.049759237000046 ], [ -119.141160240999966, 49.053343490000096 ], [ -119.136341780999942, 49.053034833000034 ], [ -119.13572010199999, 49.052994994000059 ], [ -119.136249215999982, 49.049410766000094 ], [ -119.13687084799993, 49.049450602000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "125", "sL_BldgLoss": "125", "sL_StrLoss": "125", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8FE607D0FC05DC003869B421D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.99888527799996, 49.049590898000069 ], [ -118.998914719999902, 49.049395387000033 ], [ -118.996938132, 49.049266145000061 ], [ -118.997477866999944, 49.045682586000019 ], [ -118.999071729999912, 49.045786807000106 ], [ -118.999083397, 49.045709324000072 ], [ -119.003511212999939, 49.045998726000029 ], [ -119.00452165599998, 49.046064741000109 ], [ -119.00448058299996, 49.046337739000094 ], [ -119.004863162999968, 49.04636273300008 ], [ -119.004323987999939, 49.049946325000086 ], [ -119.00159863, 49.049768254000057 ], [ -118.99888527799996, 49.049590898000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.3", "sL_BldgLoss": "40.3", "sL_StrLoss": "40.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A12A2A0B74BE5DC09E31A38A288E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.975576780999972, 49.10867338 ], [ -118.976761259999989, 49.108750965000056 ], [ -118.976729318999929, 49.108818281 ], [ -118.976688858999978, 49.108867828000072 ], [ -118.976629897999928, 49.108940107000059 ], [ -118.97655826399992, 49.109027822000016 ], [ -118.97635635599994, 49.109275125000117 ], [ -118.976335184999954, 49.109333599000102 ], [ -118.976304493999976, 49.109418285000039 ], [ -118.976289765999937, 49.10980630800001 ], [ -118.976145575999979, 49.110136387000054 ], [ -118.976121507999977, 49.110191547000063 ], [ -118.976114902999939, 49.110256660000132 ], [ -118.976104730999978, 49.110356906000163 ], [ -118.976186655999953, 49.110533238000095 ], [ -118.976233742999938, 49.11059081500008 ], [ -118.976329294999928, 49.110707647 ], [ -118.97640712799992, 49.110802775000067 ], [ -118.976584736999897, 49.111110240000073 ], [ -118.976593276999921, 49.11126277600011 ], [ -118.976567212999953, 49.111354464000087 ], [ -118.976549121999966, 49.111418202000024 ], [ -118.976333932, 49.111782656000109 ], [ -118.976190524999964, 49.112084103000022 ], [ -118.976139198999988, 49.112191988000077 ], [ -118.976048162999945, 49.112322866000056 ], [ -118.975034631999947, 49.112256478000091 ], [ -118.975576780999972, 49.10867338 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "171.7", "sL_BldgLoss": "171.7", "sL_StrLoss": "171.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD5382518BBC5DC0291CE670D28B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.943553895999941, 49.090388995000055 ], [ -118.948996943999958, 49.090747199000063 ], [ -118.948452959999941, 49.094330262000064 ], [ -118.943009497999981, 49.093972033000064 ], [ -118.943553895999941, 49.090388995000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "1", "sL_AssetLoss": "288", "sL_BldgLoss": "288", "sL_StrLoss": "288", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006A05D9F498B75DC0CBC9F6E7C3864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.868601887999958, 49.049958464000113 ], [ -118.874039639, 49.050320485000071 ], [ -118.873490366999974, 49.053903392000045 ], [ -118.87240073199996, 49.053830872000049 ], [ -118.872398117999978, 49.053847917000027 ], [ -118.869287128999986, 49.053640805000036 ], [ -118.868927683999956, 49.055983790000091 ], [ -118.863489311999956, 49.055621514000109 ], [ -118.86403937199999, 49.052038667000119 ], [ -118.86715023, 49.052245932000091 ], [ -118.867509736999949, 49.049902940000067 ], [ -118.868599272999973, 49.049975510000088 ], [ -118.868601887999958, 49.049958464000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.7", "sL_BldgLoss": "34.7", "sL_StrLoss": "34.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8DA55E5CEB65DC057F75D4BA7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.85667947499995, 49.04298730599999 ], [ -118.856952671999977, 49.04297392400008 ], [ -118.857172814999913, 49.04300635300006 ], [ -118.85740667099995, 49.043038574000065 ], [ -118.857654184999916, 49.043070572000026 ], [ -118.857874684999899, 49.043112004000115 ], [ -118.85809583799994, 49.043171426000136 ], [ -118.858289996999986, 49.043240248000075 ], [ -118.858312351999956, 49.043247621000063 ], [ -118.858462189999955, 49.043297099000036 ], [ -118.85817336199996, 49.045177367000058 ], [ -118.852736332999925, 49.044814541000086 ], [ -118.852741201999919, 49.044782878000042 ], [ -118.852926522999951, 49.044738943000041 ], [ -118.853143701999912, 49.044690471000081 ], [ -118.853387862999952, 49.044632574000069 ], [ -118.853633700999978, 49.044619630000057 ], [ -118.853891890999961, 49.044570480000054 ], [ -118.854052662999905, 49.044477935000039 ], [ -118.85419878499999, 49.044358641000045 ], [ -118.854290183999922, 49.044240230000078 ], [ -118.854394923999948, 49.044112586000068 ], [ -118.854512309999947, 49.043957781000074 ], [ -118.854645071999954, 49.043847696000071 ], [ -118.854777177999935, 49.043719620000047 ], [ -118.854950612999971, 49.043599883000091 ], [ -118.855138732999961, 49.043506882000052 ], [ -118.85531384799998, 49.043432096000096 ], [ -118.855517005999971, 49.043374837000044 ], [ -118.85573449099995, 49.043335371000104 ], [ -118.855937965999956, 49.043287123000056 ], [ -118.856127089999973, 49.043221116000055 ], [ -118.856301883999947, 49.043137314000099 ], [ -118.85649031699991, 49.043053326000098 ], [ -118.85667947499995, 49.04298730599999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "147.7", "sL_BldgLoss": "147.7", "sL_StrLoss": "147.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000526811787B85DC0FE1A2003BF854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.879639231999974, 49.045588571000046 ], [ -118.880032832999945, 49.043018440000075 ], [ -118.881943652999951, 49.043325047000096 ], [ -118.88420294899997, 49.043688311000089 ], [ -118.886965565999972, 49.0441324270001 ], [ -118.88658086, 49.046646879000107 ], [ -118.886540710999967, 49.046640502000102 ], [ -118.883956100999939, 49.046322911000047 ], [ -118.880837096999983, 49.046005299000107 ], [ -118.879783897999943, 49.045672012000068 ], [ -118.879639231999974, 49.045588571000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "226.6", "sL_BldgLoss": "226.6", "sL_StrLoss": "226.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D9A2CE60EB95DC0608D793EFF8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.892423148999981, 49.122918230000025 ], [ -118.894856877999956, 49.123079474000129 ], [ -118.894171799, 49.124379881000067 ], [ -118.894162793999939, 49.125157345000083 ], [ -118.893696444999946, 49.125732613000082 ], [ -118.893709073999943, 49.126310712000091 ], [ -118.893723951999959, 49.126990215000028 ], [ -118.89377014499992, 49.127062198000068 ], [ -118.888540706999919, 49.126715634000028 ], [ -118.88908967899998, 49.123133054000057 ], [ -118.89235708199999, 49.123349622000042 ], [ -118.892423148999981, 49.122918230000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "105.9", "sL_BldgLoss": "105.9", "sL_StrLoss": "105.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C550EB8970BA5DC0F5DFDE9021874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.910672708999982, 49.053740334000082 ], [ -118.916111226999973, 49.054100222000045 ], [ -118.915857548999952, 49.055764791000051 ], [ -118.915565143999942, 49.057683323000106 ], [ -118.91012621299997, 49.057323408000158 ], [ -118.910271817999927, 49.056368815000027 ], [ -118.910672708999982, 49.053740334000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "167.1", "sL_BldgLoss": "167.1", "sL_StrLoss": "167.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D6116ECF7FB85DC026EB891136904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.880352368, 49.124678060000072 ], [ -118.885798935999929, 49.12503944300002 ], [ -118.885249687999959, 49.128621996000099 ], [ -118.879802705999978, 49.128260587000035 ], [ -118.880352368, 49.124678060000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2015500", "BldgCostT": "1390000", "sL_LossRatio": "1", "sL_AssetLoss": "90.4", "sL_BldgLoss": "90.4", "sL_StrLoss": "90.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000270760C185BA5DC045F2CFEBD38F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.912285452999953, 49.126331897000071 ], [ -118.912753230999925, 49.123268894000027 ], [ -118.911354878999973, 49.123176489000045 ], [ -118.911450049999971, 49.121235033000033 ], [ -118.91117390399999, 49.120343992000059 ], [ -118.910818864999925, 49.119955776000026 ], [ -118.910099222999975, 49.11947461300015 ], [ -118.913962818999948, 49.119729946000064 ], [ -118.913495154999936, 49.122792970000091 ], [ -118.918279186999939, 49.123108934000072 ], [ -118.917732459999982, 49.126691663000081 ], [ -118.912285452999953, 49.126331897000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "94.7", "sL_BldgLoss": "94.7", "sL_StrLoss": "94.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D559055C0B95DC01595E4EB78924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.900051604999973, 49.145351209000076 ], [ -118.900466200999986, 49.142642367000064 ], [ -118.901013996999922, 49.14272731100003 ], [ -118.901850817999929, 49.142923775000071 ], [ -118.902123272999987, 49.142914677000078 ], [ -118.902906260999984, 49.14281536400005 ], [ -118.90306069899999, 49.14288529800011 ], [ -118.90333984399993, 49.143156173000108 ], [ -118.903451693999969, 49.143459403000094 ], [ -118.903549692999917, 49.143583484000025 ], [ -118.903689394999944, 49.14365062800011 ], [ -118.90413682300003, 49.143739023000101 ], [ -118.904343971999964, 49.143833230000055 ], [ -118.90450677099993, 49.144001413000083 ], [ -118.904874973999981, 49.14485085299999 ], [ -118.90495985199999, 49.145312437000044 ], [ -118.905135519999959, 49.14568743899999 ], [ -118.900051604999973, 49.145351209000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15316833", "BldgCostT": "10563333", "sL_LossRatio": "1", "sL_AssetLoss": "1037.5", "sL_BldgLoss": "1037.5", "sL_StrLoss": "1037.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E5E5B86CD7BE5DC0DBE002D819874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.99371958299993, 49.063899518000028 ], [ -118.993901043999983, 49.062695731000076 ], [ -118.993293747999971, 49.062656010000069 ], [ -118.993496371999953, 49.061311874000069 ], [ -118.992441807999981, 49.061242890000138 ], [ -118.992982027, 49.057659421000047 ], [ -118.993177430999964, 49.057672204 ], [ -118.99322233099997, 49.057374325000048 ], [ -118.993533212999964, 49.057394662000021 ], [ -118.99352814699995, 49.057268085000032 ], [ -118.992982883999943, 49.057232415000087 ], [ -118.993034208999944, 49.056891928000077 ], [ -118.992692012999953, 49.05689784000009 ], [ -118.992690825999901, 49.056868145000109 ], [ -118.992260584999912, 49.056839996000114 ], [ -118.992278670999923, 49.056720027000082 ], [ -118.987020333999951, 49.056375851000034 ], [ -118.98735898799994, 49.054130995000037 ], [ -118.983943084999936, 49.053907271000092 ], [ -118.984155533999939, 49.052499575000105 ], [ -118.984001378999935, 49.052489477000066 ], [ -118.984032553999953, 49.052282904000066 ], [ -118.983364871999925, 49.052239160000042 ], [ -118.98337872499998, 49.052147377000054 ], [ -118.982877662999968, 49.05211454700008 ], [ -118.982939589999944, 49.05170427000008 ], [ -118.980794425999974, 49.051563690000108 ], [ -118.98080881199995, 49.051468411000045 ], [ -118.980228515999954, 49.05143037400007 ], [ -118.980387264999962, 49.05037900300006 ], [ -118.980391032999961, 49.050354036000066 ], [ -118.979537289999953, 49.050298069000149 ], [ -118.979531293999969, 49.050337784000064 ], [ -118.979488874999973, 49.050618689000032 ], [ -118.977398211999969, 49.050481608000105 ], [ -118.975410911999958, 49.050351267000067 ], [ -118.975331163999897, 49.050879064000078 ], [ -118.975001112999976, 49.053063283000029 ], [ -118.974117145, 49.053005294000066 ], [ -118.974074886999972, 49.053284903000112 ], [ -118.970775560999968, 49.053068401000139 ], [ -118.970781787999968, 49.053225873000038 ], [ -118.970682638999932, 49.053227566 ], [ -118.970361136999955, 49.055353681000057 ], [ -118.970356616999965, 49.055353385000089 ], [ -118.969899576999978, 49.058375483000077 ], [ -118.966973583999987, 49.058183391000036 ], [ -118.964460147999944, 49.058018320000052 ], [ -118.964643165999959, 49.056809125000044 ], [ -118.964886597999936, 49.055200678000091 ], [ -118.964377326999966, 49.055167224000115 ], [ -118.964441473999983, 49.054743393000095 ], [ -118.959129195999978, 49.054394279000043 ], [ -118.959374244999964, 49.05277634200008 ], [ -118.959860384999928, 49.0526692 ], [ -118.961942282999956, 49.052345894000027 ], [ -118.963076705999967, 49.052335895000063 ], [ -118.965833193999984, 49.052469801000029 ], [ -118.966802803999926, 49.052390006000081 ], [ -118.967398278999951, 49.052244793000085 ], [ -118.96844400499999, 49.052019687000048 ], [ -118.969835086999964, 49.051573996000037 ], [ -118.97102460399999, 49.051044308000073 ], [ -118.971664606999951, 49.050759308000082 ], [ -118.97274769199997, 49.050434606000124 ], [ -118.975763805999975, 49.05020389000007 ], [ -118.978016509999961, 49.049759486000028 ], [ -118.97991031399998, 49.049520300000061 ], [ -118.982154701999946, 49.049517394000091 ], [ -118.984188203999935, 49.049689691000061 ], [ -118.98673431, 49.050410385000092 ], [ -118.987361083999957, 49.05066959700013 ], [ -118.989207006999919, 49.051655201000095 ], [ -118.989293701999927, 49.051787593000093 ], [ -118.990935682999961, 49.052785997000043 ], [ -118.992163500999965, 49.053367099000042 ], [ -118.992990688999939, 49.053856996000079 ], [ -118.993405486999976, 49.054299908000068 ], [ -118.993760384999945, 49.054959299000117 ], [ -118.996016003999969, 49.057618310000045 ], [ -118.99713071299999, 49.058454295000097 ], [ -118.997648706999939, 49.058750592000131 ], [ -118.998091182999971, 49.058887297000119 ], [ -118.999564497999984, 49.059059608000062 ], [ -119.000214186999983, 49.059254690000067 ], [ -119.000760013999965, 49.059515400000066 ], [ -119.001168287999931, 49.05984307800005 ], [ -119.001141725999986, 49.059851436000038 ], [ -119.000141096, 49.0601667930001 ], [ -119.000006543999959, 49.060186629000057 ], [ -118.999136899999982, 49.060314716000065 ], [ -118.998498489999989, 49.060450285000066 ], [ -118.998104013999949, 49.060621952000076 ], [ -118.997594586999966, 49.060843612000085 ], [ -118.99906744499998, 49.062417205000067 ], [ -118.999661798999981, 49.063030504000068 ], [ -118.99991068199995, 49.063393270000127 ], [ -119.00001721699995, 49.063661703000065 ], [ -119.000030641, 49.06378265700004 ], [ -119.000046371999971, 49.063924147000144 ], [ -119.000010193000023, 49.064164241000086 ], [ -118.999957135, 49.064275753000111 ], [ -118.99916462499999, 49.064223964000085 ], [ -118.99915992199999, 49.064255198000048 ], [ -118.99371958299993, 49.063899518000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "93", "sL_BldgLoss": "93", "sL_StrLoss": "93", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E6ECACB50BA5DC078222D3AFE8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.91048225599998, 49.115209883000027 ], [ -118.913117468999957, 49.115384059000057 ], [ -118.912570436999914, 49.118966804000074 ], [ -118.909417547999922, 49.118758405000086 ], [ -118.909251972999968, 49.118494865000073 ], [ -118.909141184999982, 49.118039567000068 ], [ -118.909153548999939, 49.117620660000057 ], [ -118.90941194799997, 49.116825441000024 ], [ -118.90989115399999, 49.116052424000046 ], [ -118.91048225599998, 49.115209883000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "105", "sL_BldgLoss": "105", "sL_StrLoss": "105", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A86620E0DAB95DC0101237E13D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.90080839899997, 49.048232792000078 ], [ -118.896980220000017, 49.047665902000119 ], [ -118.896152593999915, 49.047638875000118 ], [ -118.896191755999951, 49.047382584000083 ], [ -118.900041103999953, 49.047637902000041 ], [ -118.900730965999969, 49.047869696000056 ], [ -118.901660406999895, 49.048095991000075 ], [ -118.902553601999969, 49.04823572700009 ], [ -118.903843564999974, 49.048322134000095 ], [ -118.905144082999982, 49.048375737000114 ], [ -118.907691735999933, 49.048480899000012 ], [ -118.907388215999958, 49.050470381000089 ], [ -118.906785016999905, 49.05031209400012 ], [ -118.904432104999955, 49.049271006000033 ], [ -118.90080839899997, 49.048232792000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "174.9", "sL_BldgLoss": "174.9", "sL_StrLoss": "174.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5905A304ABC5DC058800063478D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.939578264999909, 49.101770339000062 ], [ -118.945022611999931, 49.102128738000047 ], [ -118.944841340999957, 49.10332179200006 ], [ -118.944478188999966, 49.105711717000126 ], [ -118.939033427999945, 49.105353293000121 ], [ -118.939311010999944, 49.103527930000077 ], [ -118.939578264999909, 49.101770339000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "152.1", "sL_BldgLoss": "152.1", "sL_StrLoss": "152.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F467E49891B95DC0AB5A146E60864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.895644220999912, 49.05096562100006 ], [ -118.896084586999933, 49.048083935000122 ], [ -118.897300698999956, 49.048174405000076 ], [ -118.89975061299999, 49.04851189200015 ], [ -118.902348016999923, 49.049152803000112 ], [ -118.905313415999956, 49.050128397000051 ], [ -118.907003079000035, 49.050733407000074 ], [ -118.901906574999956, 49.050395697000063 ], [ -118.902044221999944, 49.049494177000064 ], [ -118.901368898999934, 49.04944940900004 ], [ -118.90108229799992, 49.051326272000068 ], [ -118.895644220999912, 49.05096562100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6BF2F0516BA5DC0C9B21EC63D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.906929613999978, 49.148003136000064 ], [ -118.90693101, 49.148003228000114 ], [ -118.907565914999964, 49.14856245600005 ], [ -118.907984744999979, 49.149270452000053 ], [ -118.908420717999959, 49.149532968000088 ], [ -118.908462318999952, 49.149558029000048 ], [ -118.908624123999971, 49.150012022000048 ], [ -118.908641065999973, 49.150486296000146 ], [ -118.908829854999951, 49.150934817000135 ], [ -118.908908531999927, 49.151374252000018 ], [ -118.909307675999969, 49.151779009000037 ], [ -118.906381721999978, 49.151585669000056 ], [ -118.906929613999978, 49.148003136000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "146", "sL_BldgLoss": "146", "sL_StrLoss": "146", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001CE1BC510EBF5DC06D41C60EF0864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.003553373999949, 49.060718171000055 ], [ -119.002142047999968, 49.059510497000133 ], [ -119.001953918999916, 49.05957713800013 ], [ -119.001935351999947, 49.059583699000086 ], [ -119.001869410999916, 49.059513888000041 ], [ -119.000169099999951, 49.058464291000092 ], [ -118.999741388999951, 49.05835460200008 ], [ -118.998593786999976, 49.058447191000027 ], [ -118.997645301999981, 49.058346111000041 ], [ -118.99719840599991, 49.058083992000064 ], [ -118.99538110099995, 49.05614568900004 ], [ -118.994262076999945, 49.054500696000083 ], [ -118.993776001999962, 49.053977997000061 ], [ -118.992939502999903, 49.053254501000083 ], [ -118.991190407999923, 49.052313102000035 ], [ -118.990322382999977, 49.051816097000042 ], [ -118.988971004999911, 49.050884690000025 ], [ -118.98729921199994, 49.050139807000022 ], [ -118.98404460099999, 49.049198396000058 ], [ -118.983121198999925, 49.04903320600004 ], [ -118.98121688699996, 49.048984806000092 ], [ -118.978542393999959, 49.049165603000056 ], [ -118.975544581999927, 49.049550192000069 ], [ -118.974649901999896, 49.04976379599999 ], [ -118.97366819899996, 49.04985209700007 ], [ -118.972447593999945, 49.050098507000051 ], [ -118.971671440999955, 49.050329653000077 ], [ -118.970687693999977, 49.05062261200009 ], [ -118.968560606999944, 49.051532683000055 ], [ -118.967534890999957, 49.051856009000041 ], [ -118.966502198999947, 49.052071008000048 ], [ -118.964627891999982, 49.052102411000078 ], [ -118.962911901999973, 49.051952800000088 ], [ -118.961709215, 49.052026898000065 ], [ -118.96006178, 49.052234800000093 ], [ -118.959440445999931, 49.052339222000064 ], [ -118.959520965, 49.051807555000032 ], [ -118.960389600999974, 49.051750393000091 ], [ -118.961986302999932, 49.051589298000074 ], [ -118.963572203999945, 49.051363306000027 ], [ -118.971990017999971, 49.049835194000174 ], [ -118.973826005999939, 49.049497882000047 ], [ -118.97728587099999, 49.049171192000131 ], [ -118.978552560999901, 49.049051547000076 ], [ -118.98007341099999, 49.048907890000066 ], [ -118.982066592999928, 49.048811391000115 ], [ -118.982835585, 49.048874490000095 ], [ -118.983805987999958, 49.049013203000086 ], [ -118.984494182, 49.049165889000044 ], [ -118.985393916999925, 49.049409397000012 ], [ -118.985438163999959, 49.049422914000026 ], [ -118.987343100999951, 49.050004806000082 ], [ -118.987998394999977, 49.050266702000059 ], [ -118.988325490999955, 49.050409894000047 ], [ -118.989196283999902, 49.050791090000104 ], [ -118.990613908999947, 49.051554365000086 ], [ -118.991504869999943, 49.052034048000031 ], [ -118.991811320999958, 49.052199009000041 ], [ -118.993071506999968, 49.053084910000109 ], [ -118.993676885999946, 49.053651005000098 ], [ -118.994510989999981, 49.054397401000166 ], [ -118.994584403999951, 49.05446308800002 ], [ -118.995322791999925, 49.054894092000019 ], [ -118.995373074999947, 49.05491861900007 ], [ -118.995799865999984, 49.055126756000078 ], [ -118.996764483999968, 49.055597198000029 ], [ -118.998531604999968, 49.056513078000123 ], [ -118.998726123999987, 49.056613891000104 ], [ -118.999185815999965, 49.056859729000081 ], [ -118.999371739999944, 49.056959159000122 ], [ -119.000027176999936, 49.057303273000109 ], [ -119.000097094999944, 49.05734338600007 ], [ -119.000836689999943, 49.057767618000128 ], [ -119.00085889399999, 49.057780350000044 ], [ -119.002634635999982, 49.058798843000019 ], [ -119.004833515999962, 49.060059919000075 ], [ -119.006272820999925, 49.060881280000061 ], [ -119.00456701, 49.060133098000072 ], [ -119.004336425999924, 49.060031993000059 ], [ -119.004050260999946, 49.059971684000075 ], [ -119.003874732999947, 49.05999730300011 ], [ -119.003654320999928, 49.060120419000043 ], [ -119.003559094999915, 49.060315039000038 ], [ -119.003553373999949, 49.060718171000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9555500", "BldgCostT": "6590000", "sL_LossRatio": "1", "sL_AssetLoss": "660.4", "sL_BldgLoss": "660.4", "sL_StrLoss": "660.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A80ABA7BC8BC5DC04DD94C32B0874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.952278706999934, 49.064531264000024 ], [ -118.952337738999958, 49.06414199200006 ], [ -118.947664692999965, 49.063834437000025 ], [ -118.947874417999969, 49.062452299000043 ], [ -118.946100534999957, 49.062335498000074 ], [ -118.94612058899996, 49.062203362000069 ], [ -118.946403657999952, 49.06033818 ], [ -118.944632757999941, 49.060221544000058 ], [ -118.941128613999965, 49.059990665000115 ], [ -118.94124692099993, 49.059211662000067 ], [ -118.94086865, 49.059186731000096 ], [ -118.94071074, 49.060226443000019 ], [ -118.935271317999977, 49.059867803000081 ], [ -118.935291259999957, 49.059736608000108 ], [ -118.935314316999936, 49.05958491300003 ], [ -118.936500099999975, 49.059478309000056 ], [ -118.938577202999923, 49.05902120300005 ], [ -118.938812481999918, 49.059079596000053 ], [ -118.939274610999959, 49.05901829400014 ], [ -118.94075831100001, 49.058425805000105 ], [ -118.941192396999924, 49.058347510000011 ], [ -118.94294230399997, 49.057921690000114 ], [ -118.943712413999975, 49.057481139000082 ], [ -118.94448091699995, 49.057041495000071 ], [ -118.94512830799998, 49.05677800100004 ], [ -118.947299108, 49.056283803000049 ], [ -118.950194899999985, 49.055424992000063 ], [ -118.952036409999906, 49.054889504000109 ], [ -118.953592592999954, 49.054107599000133 ], [ -118.954519890999919, 49.053758587000075 ], [ -118.954575575999911, 49.053762251000109 ], [ -118.954032451999936, 49.057345548000065 ], [ -118.952643885999947, 49.057254189000034 ], [ -118.952545018999942, 49.057906281000086 ], [ -118.948773638999981, 49.057658056000065 ], [ -118.948588227999963, 49.058880265000035 ], [ -118.952083704999936, 49.059110334000096 ], [ -118.951927502999979, 49.06014045400012 ], [ -118.956264281999921, 49.060425735000145 ], [ -118.956551335999961, 49.060444612000012 ], [ -118.956504168999942, 49.06075585800005 ], [ -118.956705276999926, 49.060752448000081 ], [ -118.95670796, 49.060820800000073 ], [ -118.95671586899999, 49.061022155000103 ], [ -118.956865787999959, 49.06101961300007 ], [ -118.957126289999906, 49.061015195000124 ], [ -118.957134791, 49.061231674000098 ], [ -118.958261732999972, 49.061305766000018 ], [ -118.957718802999977, 49.0648890410001 ], [ -118.957001535999922, 49.064841884000082 ], [ -118.955371980999956, 49.064734732000034 ], [ -118.952278706999934, 49.064531264000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006111AA7102B95DC0A7AB016BD1854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.888270391, 49.045906628000033 ], [ -118.888503953999987, 49.044379697000089 ], [ -118.889110171999945, 49.044477129000086 ], [ -118.889341241999958, 49.044514283000055 ], [ -118.891182829999963, 49.044871827000051 ], [ -118.891311419999937, 49.044903132000108 ], [ -118.892959421999976, 49.045304659000102 ], [ -118.893400279999952, 49.04543526500003 ], [ -118.893976765999966, 49.045606044000074 ], [ -118.893808527, 49.045608806000061 ], [ -118.893707822999929, 49.046267656000055 ], [ -118.888270391, 49.045906628000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003640278CFFBA5DC0207F69511F874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.923158290999964, 49.05690087199999 ], [ -118.92332266599999, 49.055821209000072 ], [ -118.918400417999962, 49.055495843000074 ], [ -118.918567356999972, 49.054400039000072 ], [ -118.916543530999945, 49.05426619400005 ], [ -118.916602570999899, 49.053878758000067 ], [ -118.919239699999963, 49.054540587000119 ], [ -118.922092801999952, 49.055041896000077 ], [ -118.923047399999987, 49.05534101300006 ], [ -118.926030506999922, 49.056739585000074 ], [ -118.926804099999941, 49.057141715000064 ], [ -118.923158290999964, 49.05690087199999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21220750", "BldgCostT": "14635000", "sL_LossRatio": "1", "sL_AssetLoss": "1471", "sL_BldgLoss": "1471", "sL_StrLoss": "1471", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000320F47F47EBB5DC0D1FA7C10D9864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.922283690999961, 49.05467020400004 ], [ -118.919236684999944, 49.054090606000017 ], [ -118.916680559999989, 49.053366943000135 ], [ -118.916915687999904, 49.051823842000061 ], [ -118.916547689999931, 49.051799501000097 ], [ -118.91663300299993, 49.051239606000053 ], [ -118.916410090999975, 49.051224860000112 ], [ -118.916260886999936, 49.052204024000048 ], [ -118.911518693999938, 49.051890222000068 ], [ -118.910847763, 49.051679069000087 ], [ -118.910985996999912, 49.050772582000043 ], [ -118.90761886599995, 49.050549620000012 ], [ -118.907501619999948, 49.050501719000067 ], [ -118.907809175999958, 49.048485745000079 ], [ -118.910251796999944, 49.048586510000085 ], [ -118.910689839999947, 49.048605241000061 ], [ -118.914346552999987, 49.048761563000028 ], [ -118.914538141999941, 49.048769748000069 ], [ -118.917430811999964, 49.048893290000073 ], [ -118.921741389, 49.049081511000075 ], [ -118.924960987999953, 49.049535809000055 ], [ -118.929039123999985, 49.050201516000051 ], [ -118.92938385299999, 49.050257779000091 ], [ -118.934306939999942, 49.051061185000059 ], [ -118.93597950900002, 49.051334087000065 ], [ -118.936607921999922, 49.051436607000014 ], [ -118.937108240999933, 49.051552240000071 ], [ -118.937982015999964, 49.051754145000132 ], [ -118.94233918899999, 49.052760907000085 ], [ -118.942990502999962, 49.052812899000095 ], [ -118.943645315999959, 49.052823411000048 ], [ -118.944313462999915, 49.052787906000027 ], [ -118.945842294999963, 49.052706699000062 ], [ -118.946817023, 49.052642687000045 ], [ -118.946440236999976, 49.055125931000113 ], [ -118.947463084, 49.055193292000098 ], [ -118.947649436999939, 49.05396497600001 ], [ -118.949037893999972, 49.054056400000064 ], [ -118.949136801999884, 49.053404309 ], [ -118.953483034999977, 49.053690369000108 ], [ -118.953236902999961, 49.053780092000082 ], [ -118.951813405999985, 49.054479407000137 ], [ -118.950555699999953, 49.054861101000036 ], [ -118.949618593999929, 49.055056214000075 ], [ -118.948392212999977, 49.055509088000122 ], [ -118.947159689999978, 49.055862307000041 ], [ -118.945408579999935, 49.056234001000036 ], [ -118.943377444999911, 49.057194868000124 ], [ -118.942114889999985, 49.057792103000047 ], [ -118.94163810799995, 49.05782630200013 ], [ -118.938619095999968, 49.058723503000081 ], [ -118.937200393999916, 49.058854500000095 ], [ -118.935678094999901, 49.059096713000088 ], [ -118.934952392999961, 49.059109490000068 ], [ -118.933825305999932, 49.058992695000036 ], [ -118.931863489999941, 49.058539790000054 ], [ -118.929929906999931, 49.057707994000026 ], [ -118.927977001999977, 49.057119795000055 ], [ -118.927599885999967, 49.056920497000078 ], [ -118.924807288999915, 49.055536092000082 ], [ -118.923389705999966, 49.054983502000091 ], [ -118.9226872, 49.05484249300013 ], [ -118.922283690999961, 49.05467020400004 ] ], [ [ -118.929795966000015, 49.054976138000093 ], [ -118.930057192999982, 49.053258601000067 ], [ -118.929432195999979, 49.053217338000074 ], [ -118.92932552799999, 49.05391862000004 ], [ -118.929107776999928, 49.05390424400013 ], [ -118.928985041999951, 49.054711113000096 ], [ -118.928925749999934, 49.055100885000066 ], [ -118.929768528999929, 49.055156527000101 ], [ -118.929795966000015, 49.054976138000093 ] ], [ [ -118.93936052299992, 49.053649931000052 ], [ -118.939535853999942, 49.05249555000006 ], [ -118.934601389999955, 49.052170102000062 ], [ -118.934612014999985, 49.052100188000068 ], [ -118.933867771999985, 49.052051083000016 ], [ -118.933872292999951, 49.0520213470001 ], [ -118.932645467999976, 49.051940389000059 ], [ -118.932423555999932, 49.05340002400002 ], [ -118.93408078799996, 49.053509382000122 ], [ -118.934112042999914, 49.05330376600007 ], [ -118.93936052299992, 49.053649931000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "126.5", "sL_BldgLoss": "126.5", "sL_StrLoss": "126.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006557F71BAFB95DC0E4350AA49F8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.89886454699996, 49.104462721000118 ], [ -118.904308892999936, 49.104823178000139 ], [ -118.903761307999929, 49.108405937000015 ], [ -118.89831654599999, 49.108045453000024 ], [ -118.89886454699996, 49.104462721000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "167", "sL_BldgLoss": "167", "sL_StrLoss": "167", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CFB681D825BB5DC0B6EFF6C5CA8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.92173560899991, 49.105779544000079 ], [ -118.927180285999953, 49.1061388440001 ], [ -118.926634445999952, 49.109721712000123 ], [ -118.921189353000017, 49.109362386000086 ], [ -118.92173560899991, 49.105779544000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "77.5", "sL_BldgLoss": "77.5", "sL_StrLoss": "77.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7FC98FFE5B85DC05762D8403E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.8862770799999, 49.049338597000016 ], [ -118.886612668999987, 49.047145420000092 ], [ -118.889862592999947, 49.04761178800004 ], [ -118.891990364999941, 49.047898088000139 ], [ -118.89163574, 49.050217390000093 ], [ -118.888023134999941, 49.049977508000069 ], [ -118.886197865, 49.049856261000073 ], [ -118.8862770799999, 49.049338597000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.9", "sL_BldgLoss": "40.9", "sL_StrLoss": "40.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D256804AF0B85DC01A74BEAFFC854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.886746112999987, 49.046273266000078 ], [ -118.89218357399993, 49.046634370000142 ], [ -118.892072857999949, 49.04735854200004 ], [ -118.891670195999978, 49.0473127120001 ], [ -118.889115014999945, 49.047049291000071 ], [ -118.886686384999976, 49.046663637000051 ], [ -118.886746112999987, 49.046273266000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999732670355816", "sL_AssetLoss": "112.221", "sL_BldgLoss": "112.191", "sL_StrLoss": "112", "sL_NStrLoss": "0.191", "sL_ContLoss": "0.03", "geom_point": "0101000020E6100000E78EDD8982005EC02AE2F8CAD1DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.007773338999968, 49.710177823000031 ], [ -120.007788549999987, 49.70993044100004 ], [ -120.006860166999971, 49.709954567000096 ], [ -120.006839117999988, 49.70961387300013 ], [ -120.006559874999979, 49.709606650000097 ], [ -120.006609597999898, 49.708798250000072 ], [ -120.00820579899991, 49.708839528000034 ], [ -120.008270782999944, 49.708856219000076 ], [ -120.008255139999918, 49.709110698000067 ], [ -120.008670668999955, 49.70912144000004 ], [ -120.008654104999948, 49.709390907000042 ], [ -120.009485169999948, 49.709412386000047 ], [ -120.009435492999941, 49.710220788000107 ], [ -120.007773338999968, 49.710177823000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999604949032495", "sL_AssetLoss": "269.8386", "sL_BldgLoss": "269.732", "sL_StrLoss": "269", "sL_NStrLoss": "0.732", "sL_ContLoss": "0.1066", "geom_point": "0101000020E61000004D691E3C6A225EC01AE1ED4108C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.536299207999903, 49.560699032000059 ], [ -120.539210863999955, 49.560845617000041 ], [ -120.538852808999934, 49.561554186000116 ], [ -120.538765221999981, 49.562058713000042 ], [ -120.538998302, 49.562663205000021 ], [ -120.539187461999973, 49.562910142000156 ], [ -120.539201268999946, 49.562928105000054 ], [ -120.539529448999957, 49.563356538000086 ], [ -120.54027729299996, 49.564332705000055 ], [ -120.540451565999973, 49.564517162000122 ], [ -120.535873105999926, 49.564286698000089 ], [ -120.536299207999903, 49.560699032000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999563926672593", "sL_AssetLoss": "417.361", "sL_BldgLoss": "417.179", "sL_StrLoss": "416", "sL_NStrLoss": "1.179", "sL_ContLoss": "0.182", "geom_point": "0101000020E61000004F498C544E235EC0617AD2F49FC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.549708661999915, 49.573099079 ], [ -120.551828479999955, 49.573205515000019 ], [ -120.552075590999948, 49.573350101000116 ], [ -120.552407496999976, 49.573559116000069 ], [ -120.553000419999961, 49.573932506000091 ], [ -120.553310799999977, 49.574178992000036 ], [ -120.553523187999957, 49.574402221000078 ], [ -120.553579494999966, 49.574461407000101 ], [ -120.553903987999917, 49.574927891000087 ], [ -120.554177201999934, 49.57554700400005 ], [ -120.554180682999942, 49.575568276000098 ], [ -120.554405741999972, 49.57694384800007 ], [ -120.549283488999919, 49.576686735000081 ], [ -120.549708661999915, 49.573099079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999460571446249", "sL_AssetLoss": "413.7712", "sL_BldgLoss": "413.548", "sL_StrLoss": "412", "sL_NStrLoss": "1.548", "sL_ContLoss": "0.2232", "geom_point": "0101000020E6100000509A7A9B46255EC0E53FE6FB10D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.582648490999986, 49.627836823000067 ], [ -120.582757185, 49.626915124000035 ], [ -120.582488344999959, 49.626901721000145 ], [ -120.582529993999955, 49.626548559000071 ], [ -120.579613973999969, 49.626403144000086 ], [ -120.580037241999932, 49.622815627000094 ], [ -120.581719162999946, 49.622899512000053 ], [ -120.582871295999965, 49.623889307000113 ], [ -120.582926019999931, 49.62394037900004 ], [ -120.58301146499997, 49.624020092000094 ], [ -120.584592515999958, 49.625495287000099 ], [ -120.585173201999908, 49.626101587000072 ], [ -120.585346116999929, 49.626376309000101 ], [ -120.58562841499996, 49.627360210000106 ], [ -120.585859906999971, 49.627867891000058 ], [ -120.58593616099995, 49.628000669000066 ], [ -120.582648490999986, 49.627836823000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999573068087968", "sL_AssetLoss": "553.9525", "sL_BldgLoss": "553.716", "sL_StrLoss": "552", "sL_NStrLoss": "1.716", "sL_ContLoss": "0.2365", "geom_point": "0101000020E6100000CF3BA119BC0F5EC0C22F9A3AB4DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.24331644499992, 49.737936288000114 ], [ -120.248845427999981, 49.738228367000012 ], [ -120.248395221999914, 49.741813969000084 ], [ -120.242865809999927, 49.741521869000046 ], [ -120.24331644499992, 49.737936288000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999772916191704", "sL_AssetLoss": "668.0353", "sL_BldgLoss": "667.8836", "sL_StrLoss": "667", "sL_NStrLoss": "0.8836", "sL_ContLoss": "0.1517", "geom_point": "0101000020E610000003797E6A1F195EC070E2D49C76CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.393029875999957, 49.593060049000044 ], [ -120.396238138999934, 49.593225693000079 ], [ -120.395800828999924, 49.596812635000056 ], [ -120.395156904999908, 49.596779398000066 ], [ -120.394829332999961, 49.599465550000076 ], [ -120.390273540999942, 49.599230279000061 ], [ -120.389872392999962, 49.602516658000035 ], [ -120.387235818999983, 49.602380412000073 ], [ -120.387421586999935, 49.601767690000074 ], [ -120.387603185, 49.601382701000055 ], [ -120.388039098999982, 49.600914391000082 ], [ -120.388720368999927, 49.599996114000128 ], [ -120.389237718999979, 49.599298807000082 ], [ -120.38995099199991, 49.598546110000072 ], [ -120.390374393999963, 49.597690816000132 ], [ -120.390769496999937, 49.597203211000092 ], [ -120.391342795999975, 49.59657409700003 ], [ -120.391626425999974, 49.596182607000095 ], [ -120.391774602999973, 49.595777791000053 ], [ -120.39196550599992, 49.595256294000109 ], [ -120.392022975999964, 49.595142486000093 ], [ -120.392993092000012, 49.593221186000072 ], [ -120.393029875999957, 49.593060049000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999654642535622", "sL_AssetLoss": "515.408", "sL_BldgLoss": "515.23", "sL_StrLoss": "514", "sL_NStrLoss": "1.23", "sL_ContLoss": "0.178", "geom_point": "0101000020E6100000AEC02DAB72205EC040037F3225CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.507372870999944, 49.616340021000106 ], [ -120.510095354000015, 49.616477638000042 ], [ -120.509666693999989, 49.620064913000057 ], [ -120.509465325999969, 49.620054736000078 ], [ -120.509418503999925, 49.620446518000094 ], [ -120.506716415999961, 49.620309929000058 ], [ -120.503902052999976, 49.620167592000016 ], [ -120.504331162999932, 49.616580340000091 ], [ -120.504532514999966, 49.616590526000046 ], [ -120.504579372999928, 49.616198744000044 ], [ -120.507372870999944, 49.616340021000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7136417", "BldgCostT": "4921667", "sL_LossRatio": "0.999615254901622", "sL_AssetLoss": "1469.8043", "sL_BldgLoss": "1469.2388", "sL_StrLoss": "1465.0248", "sL_NStrLoss": "4.214", "sL_ContLoss": "0.5655", "geom_point": "0101000020E6100000DA91EA3BBF1F5EC0958701222FE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.495756586999917, 49.771895052000104 ], [ -120.495772047999978, 49.771766461000027 ], [ -120.495404524999913, 49.77174790600003 ], [ -120.495436489999946, 49.771482067000093 ], [ -120.494660517999932, 49.771442886000031 ], [ -120.494701918999951, 49.771098597000076 ], [ -120.494129124000011, 49.771069672000095 ], [ -120.494199428999963, 49.770485076000107 ], [ -120.493527842999981, 49.770451158000114 ], [ -120.493579698999909, 49.770020013000099 ], [ -120.493265663, 49.770004152000091 ], [ -120.493302058999959, 49.769701550000093 ], [ -120.49299707299997, 49.769686145000037 ], [ -120.49302984599997, 49.769413666000105 ], [ -120.492514473999975, 49.769387632000125 ], [ -120.49251749099993, 49.769362555000093 ], [ -120.49054281199993, 49.769262778999988 ], [ -120.490974360999971, 49.765676337000052 ], [ -120.491154017999946, 49.765685416000046 ], [ -120.491220979999937, 49.765128840000052 ], [ -120.491621096999936, 49.765149060000041 ], [ -120.491671383999972, 49.764731050000073 ], [ -120.491762528, 49.764735655000088 ], [ -120.49180519699992, 49.764380952000053 ], [ -120.492146823999988, 49.764398215 ], [ -120.492177695999942, 49.764141560000034 ], [ -120.49273352499992, 49.764169643000052 ], [ -120.492748676999952, 49.764043674000035 ], [ -120.495259282999953, 49.764170486000097 ], [ -120.495303363999966, 49.763315452000057 ], [ -120.496135688, 49.763333452000055 ], [ -120.496177365999969, 49.762524727000049 ], [ -120.496394263999932, 49.762529418000085 ], [ -120.498589185999961, 49.762576855000063 ], [ -120.499090460999952, 49.762587681000134 ], [ -120.499076584999926, 49.7628572570001 ], [ -120.500325063999981, 49.762884215000028 ], [ -120.500283457999984, 49.763692942000041 ], [ -120.499867289999912, 49.763683957000055 ], [ -120.499853419999923, 49.763953532000123 ], [ -120.50068575799996, 49.763971500000054 ], [ -120.500631616999939, 49.765023934000062 ], [ -120.501131100999899, 49.765049131000076 ], [ -120.501121534999953, 49.765128799000131 ], [ -120.502029677999957, 49.765174607000048 ], [ -120.501898374999925, 49.766268094000097 ], [ -120.501840407999964, 49.766253605000088 ], [ -120.501115188999904, 49.766282103000101 ], [ -120.500917714999943, 49.766341887000131 ], [ -120.500784800999952, 49.766527105000122 ], [ -120.500758804999975, 49.766725008000073 ], [ -120.50116248799999, 49.767002810000093 ], [ -120.501169987999958, 49.76710250100011 ], [ -120.500970102999958, 49.767242012000047 ], [ -120.499705010999918, 49.767259106000097 ], [ -120.499082093999959, 49.767192214000048 ], [ -120.497750390999954, 49.766632492000028 ], [ -120.497655313999957, 49.766603995000047 ], [ -120.497609604000033, 49.766675184000114 ], [ -120.497882115999971, 49.767850207000087 ], [ -120.497583010999961, 49.767996899000131 ], [ -120.497404798, 49.768505303000033 ], [ -120.497167, 49.768797300000116 ], [ -120.498039720999955, 49.769401099000092 ], [ -120.499284113999963, 49.77003919400007 ], [ -120.500713312999949, 49.77177467500006 ], [ -120.500354521999952, 49.771760099000083 ], [ -120.499323697999984, 49.771775387000105 ], [ -120.498880071999906, 49.771790303000053 ], [ -120.495756586999917, 49.771895052000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999615228927668", "sL_AssetLoss": "269.7708", "sL_BldgLoss": "269.667", "sL_StrLoss": "269", "sL_NStrLoss": "0.667", "sL_ContLoss": "0.1038", "geom_point": "0101000020E6100000B623C595AD1A5EC0D844EA6694C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.418505149999973, 49.564776515000055 ], [ -120.418736396999975, 49.564788411000023 ], [ -120.41830110799998, 49.568375590000059 ], [ -120.413837884999978, 49.568145905000044 ], [ -120.41396650399993, 49.56792490100004 ], [ -120.414382312999948, 49.567445507000038 ], [ -120.414567657999953, 49.567317330000051 ], [ -120.415134224999974, 49.566925608000084 ], [ -120.415794691999949, 49.56654269900006 ], [ -120.4166348299999, 49.565997454000062 ], [ -120.416856578999926, 49.565853550000064 ], [ -120.418022288999907, 49.565096934000067 ], [ -120.41810709799995, 49.565041905000072 ], [ -120.418505149999973, 49.564776515000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999714884696017", "sL_AssetLoss": "477", "sL_BldgLoss": "476.864", "sL_StrLoss": "476", "sL_NStrLoss": "0.864", "sL_ContLoss": "0.136", "geom_point": "0101000020E6100000C23E8DBD8F1F5EC0E8BA95CA00C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.490608328999912, 49.560590564000066 ], [ -120.496117569999981, 49.560870187000035 ], [ -120.495688340999919, 49.564457694000055 ], [ -120.490178671999956, 49.564178051000155 ], [ -120.490608328999912, 49.560590564000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999459135663896", "sL_AssetLoss": "859.735", "sL_BldgLoss": "859.27", "sL_StrLoss": "856", "sL_NStrLoss": "3.27", "sL_ContLoss": "0.465", "geom_point": "0101000020E6100000C7B0D4C48C115EC03072C3AD0ADA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.275962320999909, 49.700180399000054 ], [ -120.279196274999947, 49.700350448000094 ], [ -120.278748809999968, 49.703936367000054 ], [ -120.275851250999921, 49.703784011000089 ], [ -120.275665154, 49.705274435000092 ], [ -120.275176261999988, 49.705248721000046 ], [ -120.275138045999967, 49.705554746000111 ], [ -120.273120721999959, 49.705448620000084 ], [ -120.273035989, 49.706126894000107 ], [ -120.26751071699999, 49.705836027000061 ], [ -120.267675170999951, 49.704520835000054 ], [ -120.268059292999936, 49.704441781000121 ], [ -120.26838080499999, 49.704427991000024 ], [ -120.268943193999988, 49.704440296000072 ], [ -120.269111618999958, 49.70444399600008 ], [ -120.269424102999935, 49.704424297000031 ], [ -120.269712379999987, 49.704375387000049 ], [ -120.270137505999969, 49.704222697000063 ], [ -120.271678594999969, 49.703427697000038 ], [ -120.271969790999933, 49.703244508000054 ], [ -120.272244292999943, 49.703028805000073 ], [ -120.272806001999982, 49.702471792000026 ], [ -120.272871113999912, 49.702451799000094 ], [ -120.273153484999938, 49.702227507000039 ], [ -120.273379604999946, 49.702078086000029 ], [ -120.27365810799995, 49.701894002000095 ], [ -120.273735408999983, 49.701876505000079 ], [ -120.274143289999969, 49.701649807000116 ], [ -120.274826292999975, 49.701378888000143 ], [ -120.275571613999887, 49.701032804000086 ], [ -120.275696688999972, 49.700919129000106 ], [ -120.27581938400003, 49.700807594000075 ], [ -120.275937594999917, 49.700440197000084 ], [ -120.275962320999909, 49.700180399000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999748388557405", "sL_AssetLoss": "380.7458", "sL_BldgLoss": "380.65", "sL_StrLoss": "380", "sL_NStrLoss": "0.65", "sL_ContLoss": "0.0958", "geom_point": "0101000020E6100000BF0FC5ECFE1B5EC088386B2A6AC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.43652563199997, 49.540405339000102 ], [ -120.440328164999968, 49.540600362000092 ], [ -120.439894782999943, 49.544187754000042 ], [ -120.434524717999949, 49.543912297000091 ], [ -120.434503457999966, 49.542949530000058 ], [ -120.434713252, 49.541214639000039 ], [ -120.434822883, 49.54108569200006 ], [ -120.43510439899994, 49.540911491 ], [ -120.435377702999943, 49.540793789000055 ], [ -120.435486195999957, 49.540757072000041 ], [ -120.435822091999938, 49.540643424000031 ], [ -120.43652563199997, 49.540405339000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999449589585278", "sL_AssetLoss": "417.87", "sL_BldgLoss": "417.64", "sL_StrLoss": "416", "sL_NStrLoss": "1.64", "sL_ContLoss": "0.23", "geom_point": "0101000020E6100000BAD1F0FBB1155EC0A04D50BBC6D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.337899358999934, 49.660313566000156 ], [ -120.341633349999981, 49.660507945000028 ], [ -120.341191140999968, 49.664094322000011 ], [ -120.337395068999967, 49.663896711000064 ], [ -120.33567049, 49.663806891000057 ], [ -120.335815925999952, 49.662628588000139 ], [ -120.335825005999979, 49.662626688000074 ], [ -120.336052256999949, 49.662579124000075 ], [ -120.336408935999927, 49.662412722000091 ], [ -120.336719616999929, 49.662202402000062 ], [ -120.337081138999935, 49.661805261000069 ], [ -120.337338862, 49.661247493000083 ], [ -120.337402394999984, 49.66114161800003 ], [ -120.3377390799999, 49.660580607000043 ], [ -120.337899358999934, 49.660313566000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999397050489608", "sL_AssetLoss": "607.016", "sL_BldgLoss": "606.65", "sL_StrLoss": "604", "sL_NStrLoss": "2.65", "sL_ContLoss": "0.366", "geom_point": "0101000020E6100000B34CB7D3731E5EC087E354C69AC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.473281386999957, 49.541851806000054 ], [ -120.478788284999922, 49.54213231500006 ], [ -120.478357880999965, 49.545719851000094 ], [ -120.472850556999916, 49.545439322000043 ], [ -120.473281386999957, 49.541851806000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999863808839881", "sL_AssetLoss": "344.3689", "sL_BldgLoss": "344.322", "sL_StrLoss": "344", "sL_NStrLoss": "0.322", "sL_ContLoss": "0.0469", "geom_point": "0101000020E6100000FCCDFE1FEB145EC0BF52E969B8D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.326290395999976, 49.667707480000068 ], [ -120.329427364999972, 49.667871097000109 ], [ -120.328984132999935, 49.671457386000107 ], [ -120.323662734999957, 49.671179781000021 ], [ -120.323677693999969, 49.671101813000163 ], [ -120.324028057999953, 49.669976824000088 ], [ -120.324154794999984, 49.669682065000082 ], [ -120.324335129999923, 49.66940360500012 ], [ -120.324590264999983, 49.669171491000057 ], [ -120.325279922999982, 49.668649817000109 ], [ -120.325868249999985, 49.668048859000052 ], [ -120.326290395999976, 49.667707480000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999720117688684", "sL_AssetLoss": "738.5247", "sL_BldgLoss": "738.318", "sL_StrLoss": "737", "sL_NStrLoss": "1.318", "sL_ContLoss": "0.2067", "geom_point": "0101000020E61000003818A89470265EC0733589AC7BD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.600664175999967, 49.696887252000145 ], [ -120.600704491999949, 49.696544793000079 ], [ -120.599556163, 49.696487823000055 ], [ -120.599978518999961, 49.692900586000107 ], [ -120.600087881, 49.692906013000062 ], [ -120.600121270999978, 49.692622382000117 ], [ -120.59953781499992, 49.69259343100002 ], [ -120.599585097999977, 49.692191830000084 ], [ -120.59954484099994, 49.692189833000057 ], [ -120.599658246999923, 49.691226597000075 ], [ -120.599090487999931, 49.691198422000134 ], [ -120.599153150999953, 49.690666226000076 ], [ -120.598899116999931, 49.690653618000162 ], [ -120.598953360999971, 49.690192931000084 ], [ -120.598787841999965, 49.690184717000086 ], [ -120.598851890999939, 49.689640766000124 ], [ -120.598572770999965, 49.68962691300014 ], [ -120.598603876999945, 49.689362752000115 ], [ -120.598486185999903, 49.689356911000068 ], [ -120.598538106999968, 49.688915970000046 ], [ -120.598403911999981, 49.688909310000049 ], [ -120.598488738999947, 49.688188910000086 ], [ -120.598162249999987, 49.688172704000117 ], [ -120.598584638999981, 49.684585431000066 ], [ -120.600693784999976, 49.684690106000055 ], [ -120.600464198999987, 49.685150503000095 ], [ -120.600348302999947, 49.685533604000099 ], [ -120.600326205999963, 49.685720997000033 ], [ -120.600361489999983, 49.686070905000065 ], [ -120.600814583999977, 49.687473596000068 ], [ -120.601552464999955, 49.689698615000069 ], [ -120.601653387999988, 49.690002992000117 ], [ -120.601976747999927, 49.690894902000124 ], [ -120.602520897999938, 49.69239589000005 ], [ -120.602571535999914, 49.69250282100009 ], [ -120.602821404999972, 49.693030485000136 ], [ -120.603304617999953, 49.693859985000088 ], [ -120.603390315999945, 49.694159202000087 ], [ -120.603378627999987, 49.694388703000072 ], [ -120.603322516999967, 49.694593397000119 ], [ -120.602950725, 49.695391305000022 ], [ -120.602820583999943, 49.695753797000094 ], [ -120.602829410999973, 49.696127600000139 ], [ -120.602877124999978, 49.696312208000123 ], [ -120.603075215999965, 49.696660306000055 ], [ -120.603206393, 49.696806391000038 ], [ -120.603400896999972, 49.697022975000095 ], [ -120.600664175999967, 49.696887252000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999677638448204", "sL_AssetLoss": "246.6175", "sL_BldgLoss": "246.538", "sL_StrLoss": "246", "sL_NStrLoss": "0.538", "sL_ContLoss": "0.0795", "geom_point": "0101000020E6100000369A12FF66265EC0556311DC2BD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.597907765999977, 49.639552192000053 ], [ -120.59848758899993, 49.639581005000053 ], [ -120.599224813999939, 49.640377902000118 ], [ -120.599604391999975, 49.640702490000095 ], [ -120.599705049999926, 49.640756984000078 ], [ -120.600047318999955, 49.640942317000032 ], [ -120.600083301999959, 49.640961806000107 ], [ -120.600353903999974, 49.641056404000054 ], [ -120.60092351199998, 49.641193 ], [ -120.60189152599996, 49.641370409000075 ], [ -120.603217111999953, 49.641613318000033 ], [ -120.603005504999985, 49.64341386600006 ], [ -120.597485738000017, 49.643139692000034 ], [ -120.597907765999977, 49.639552192000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.998157108911601", "sL_AssetLoss": "613.167", "sL_BldgLoss": "612.037", "sL_StrLoss": "600.257", "sL_NStrLoss": "11.78", "sL_ContLoss": "1.13", "geom_point": "0101000020E6100000D05F2A2E75205EC0727D699BACC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.504614362999973, 49.511146653000033 ], [ -120.51011778599991, 49.511425586000023 ], [ -120.509690104999962, 49.515013405000047 ], [ -120.504186256999915, 49.514734452000063 ], [ -120.504614362999973, 49.511146653000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999540308318365", "sL_AssetLoss": "418.5414", "sL_BldgLoss": "418.349", "sL_StrLoss": "417", "sL_NStrLoss": "1.349", "sL_ContLoss": "0.1924", "geom_point": "0101000020E61000007DFA3A36A3165EC0A5E5B46548D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.354091876999959, 49.648572696000052 ], [ -120.356291457999959, 49.648686917000092 ], [ -120.355850505999967, 49.652273414000099 ], [ -120.350331181999977, 49.651986719000064 ], [ -120.350489686999964, 49.650698842000025 ], [ -120.35285782599999, 49.6495490020001 ], [ -120.353534364, 49.64922046200013 ], [ -120.353797042999972, 49.649026585000094 ], [ -120.354091876999959, 49.648572696000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999974388898178", "sL_AssetLoss": "81.21478", "sL_BldgLoss": "81.2127", "sL_StrLoss": "81.2", "sL_NStrLoss": "0.0127", "sL_ContLoss": "0.00208", "geom_point": "0101000020E6100000BA99D9000F005EC0C7FBEDC241DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.002937482999926, 49.707087570000098 ], [ -120.002920855999918, 49.706818105000082 ], [ -120.00208984399994, 49.706839667000111 ], [ -120.002039982999946, 49.70603127300005 ], [ -120.00162448399999, 49.706042051000068 ], [ -120.001607865999958, 49.705772586000066 ], [ -120.001192369999927, 49.70578336300008 ], [ -120.001186549999943, 49.705688996000056 ], [ -120.000974909999925, 49.705683513000118 ], [ -120.00098505699998, 49.70551884300005 ], [ -120.0007602579999, 49.705524673000063 ], [ -120.000753056999912, 49.705407866000037 ], [ -120.000576019, 49.705403278000034 ], [ -120.000584889999971, 49.70525932400006 ], [ -119.9999126599999, 49.705276753000042 ], [ -119.999902746999936, 49.705115929000044 ], [ -119.999346149999923, 49.705101499000058 ], [ -119.9993627599999, 49.704832033000038 ], [ -119.998947270999949, 49.704821259000056 ], [ -119.998963884999966, 49.704551794000039 ], [ -119.998548396999965, 49.704541019000082 ], [ -119.998565014999897, 49.704271554000037 ], [ -119.998319572999932, 49.704265187000082 ], [ -119.998319827999964, 49.703886428000025 ], [ -119.999778616999933, 49.703895612000082 ], [ -120.000211651999933, 49.703898288000019 ], [ -120.000668579999939, 49.703901184000081 ], [ -120.000668178999973, 49.703907686000058 ], [ -120.000819947, 49.703903751000105 ], [ -120.000831121, 49.703914604000069 ], [ -120.00145669799997, 49.704681097000091 ], [ -120.001971014999953, 49.705066012000096 ], [ -120.002297500999973, 49.705408902000073 ], [ -120.002482878999913, 49.705737824000067 ], [ -120.002756891999965, 49.706224089000045 ], [ -120.003363996999937, 49.706686299000083 ], [ -120.00409266599999, 49.707057588000097 ], [ -120.002937482999926, 49.707087570000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999712170675281", "sL_AssetLoss": "599.3135", "sL_BldgLoss": "599.141", "sL_StrLoss": "598", "sL_NStrLoss": "1.141", "sL_ContLoss": "0.1725", "geom_point": "0101000020E6100000696CF1210F185EC000E7FF34B9CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.37607029699997, 49.612807195000052 ], [ -120.38051748399999, 49.613037370000072 ], [ -120.380078758999957, 49.616624148 ], [ -120.374884168000023, 49.616355270000071 ], [ -120.374816052999932, 49.616911569000095 ], [ -120.369300849999959, 49.616625822000053 ], [ -120.369387637999949, 49.615917710000097 ], [ -120.369522599999968, 49.615852303000032 ], [ -120.369975289999971, 49.615725016000034 ], [ -120.370744597999959, 49.615617791000041 ], [ -120.37128030699995, 49.615469593000107 ], [ -120.371682198999963, 49.615326194000026 ], [ -120.372041698, 49.615132809000031 ], [ -120.373350534999986, 49.614158092000082 ], [ -120.373438608999919, 49.614092492000054 ], [ -120.3748055, 49.613301527000047 ], [ -120.374934601999925, 49.613308212000078 ], [ -120.374943816999973, 49.61323294400016 ], [ -120.375964614999987, 49.612848497000073 ], [ -120.376062298, 49.612811691000068 ], [ -120.37607029699997, 49.612807195000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999154180763654", "sL_AssetLoss": "662.08", "sL_BldgLoss": "661.52", "sL_StrLoss": "657", "sL_NStrLoss": "4.52", "sL_ContLoss": "0.56", "geom_point": "0101000020E610000077B2A38A85205EC0CD0AE28FE4CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.506833510999954, 49.622291613000058 ], [ -120.511123506999979, 49.622508424000124 ], [ -120.51069487, 49.626095672000105 ], [ -120.50999480399993, 49.626060303000074 ], [ -120.505177732999968, 49.625816813 ], [ -120.50560679699997, 49.622229585000191 ], [ -120.506833510999954, 49.622291613000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.999725096050611", "sL_AssetLoss": "361.9446", "sL_BldgLoss": "361.8451", "sL_StrLoss": "361.0111", "sL_NStrLoss": "0.834", "sL_ContLoss": "0.0995", "geom_point": "0101000020E6100000AB2B3CBBBE175EC0FF2F8D156BCF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.368478365999948, 49.618519174000092 ], [ -120.373993789999943, 49.618804962000048 ], [ -120.373554502999966, 49.622391683000089 ], [ -120.368038651999939, 49.622105875000088 ], [ -120.368478365999948, 49.618519174000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999583464479385", "sL_AssetLoss": "127.7202", "sL_BldgLoss": "127.667", "sL_StrLoss": "127.017", "sL_NStrLoss": "0.65", "sL_ContLoss": "0.0532", "geom_point": "0101000020E61000009417F43992265EC0B3C51CA1F2D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.604870096999917, 49.705112148000076 ], [ -120.604886790999942, 49.704970251000113 ], [ -120.602149716999932, 49.704834575000064 ], [ -120.602158607999954, 49.704759040000084 ], [ -120.60166090599999, 49.704734361000106 ], [ -120.601759303000037, 49.703898506000051 ], [ -120.600903034999959, 49.703856042000105 ], [ -120.601325353999982, 49.700268839000074 ], [ -120.603926497999907, 49.700397813000059 ], [ -120.603936607999941, 49.700559196000086 ], [ -120.603870493999949, 49.70094380000004 ], [ -120.603601708999989, 49.70169268500009 ], [ -120.603595216999977, 49.701907073000044 ], [ -120.603589197999952, 49.702106109000106 ], [ -120.603633488999947, 49.702320289000049 ], [ -120.603809303999967, 49.702739516000101 ], [ -120.603849837999988, 49.702814279000108 ], [ -120.603932709999981, 49.702967102000095 ], [ -120.604460345999911, 49.703940353000064 ], [ -120.604656635999959, 49.704302266000134 ], [ -120.605085740999968, 49.705122835000019 ], [ -120.604870096999917, 49.705112148000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.999914328248286", "sL_AssetLoss": "305.2348", "sL_BldgLoss": "305.20865", "sL_StrLoss": "305.00255", "sL_NStrLoss": "0.2061", "sL_ContLoss": "0.02615", "geom_point": "0101000020E610000033E9A518D60F5EC0E0A915E09ADB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.249338907999942, 49.713800005000088 ], [ -120.250978926999892, 49.712790380000065 ], [ -120.250567490999984, 49.716070390000027 ], [ -120.25001771399999, 49.716041353000108 ], [ -120.249981690999959, 49.716328479000083 ], [ -120.249903110999938, 49.716954803000164 ], [ -120.24878656599995, 49.716895824000083 ], [ -120.2487216869999, 49.717412828000036 ], [ -120.243195210999971, 49.717120735000044 ], [ -120.243226871999966, 49.716868685000094 ], [ -120.243392109999917, 49.715553150000034 ], [ -120.244297702999987, 49.715427685000087 ], [ -120.244608914, 49.715363887000073 ], [ -120.244974604, 49.715253297000118 ], [ -120.245372416999928, 49.71506489800003 ], [ -120.246533299999982, 49.714347489000012 ], [ -120.246892083999953, 49.714203196000042 ], [ -120.247151, 49.714168084000043 ], [ -120.248125624999957, 49.714185737 ], [ -120.248344311999915, 49.714189684000118 ], [ -120.248675377999973, 49.714122308000121 ], [ -120.24893540599993, 49.714023287000025 ], [ -120.249338907999942, 49.713800005000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999329427415914", "sL_AssetLoss": "416.9571", "sL_BldgLoss": "416.6775", "sL_StrLoss": "414.0425", "sL_NStrLoss": "2.635", "sL_ContLoss": "0.2796", "geom_point": "0101000020E61000001CE0B4A69A1C5EC0B879807AF5C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.444794106999979, 49.536823324000068 ], [ -120.449903893999959, 49.537084993000057 ], [ -120.449471290999952, 49.54067244000008 ], [ -120.443964745999935, 49.54039044500005 ], [ -120.444374200999945, 49.536998342000089 ], [ -120.444794106999979, 49.536823324000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999135585080839", "sL_AssetLoss": "156.175", "sL_BldgLoss": "156.04", "sL_StrLoss": "155", "sL_NStrLoss": "1.04", "sL_ContLoss": "0.135", "geom_point": "0101000020E61000007E7765F63D1E5EC0EC489AE46CC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.469452013999899, 49.534899254000081 ], [ -120.469543533999982, 49.534137494000092 ], [ -120.470156209999928, 49.534184304000043 ], [ -120.472287588999947, 49.534156753000069 ], [ -120.473727903999972, 49.5341381040001 ], [ -120.474085746999933, 49.534107423000108 ], [ -120.474189722999967, 49.53409850700006 ], [ -120.474583784999965, 49.533987698000068 ], [ -120.474754482999955, 49.533892704000088 ], [ -120.475044493999945, 49.53364570900002 ], [ -120.475156437999956, 49.533527095000039 ], [ -120.474958058999945, 49.535179960000058 ], [ -120.469452013999899, 49.534899254000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999439521005503", "sL_AssetLoss": "585.9274", "sL_BldgLoss": "585.599", "sL_StrLoss": "583", "sL_NStrLoss": "2.599", "sL_ContLoss": "0.3284", "geom_point": "0101000020E61000003D65D232141E5EC00069499146C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.467445072999979, 49.539281862000067 ], [ -120.472951628999979, 49.539562668000052 ], [ -120.472520793999962, 49.543150194000098 ], [ -120.467013814, 49.54286936800009 ], [ -120.467445072999979, 49.539281862000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999876621523438", "sL_AssetLoss": "481.4454", "sL_BldgLoss": "481.386", "sL_StrLoss": "481", "sL_NStrLoss": "0.386", "sL_ContLoss": "0.0594", "geom_point": "0101000020E610000082ABD956F5145EC0142E9A8441D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.3249352509999, 49.671937307000093 ], [ -120.330456809999973, 49.672225279000067 ], [ -120.330013616999977, 49.675811550000098 ], [ -120.324491629999969, 49.675523557000091 ], [ -120.3249352509999, 49.671937307000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12497250", "BldgCostT": "8355000", "sL_LossRatio": "0.998939029348339", "sL_AssetLoss": "3872.2089", "sL_BldgLoss": "3868.1006", "sL_StrLoss": "3848.0566", "sL_NStrLoss": "20.044", "sL_ContLoss": "4.1083", "geom_point": "0101000020E6100000F234B28ED7205EC07636E49F99C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.51712813599994, 49.531427549000043 ], [ -120.517143961999963, 49.531294673000104 ], [ -120.516609638999981, 49.531267651000043 ], [ -120.51679354, 49.52972360400004 ], [ -120.516828267999983, 49.529432016000023 ], [ -120.51666446499992, 49.52942373200009 ], [ -120.512779652999939, 49.529227182000035 ], [ -120.512752727999981, 49.529453093000086 ], [ -120.512250040000012, 49.529427649000063 ], [ -120.512232212999891, 49.529577205000052 ], [ -120.51128898099995, 49.529529457000109 ], [ -120.511283571999954, 49.529574828000129 ], [ -120.505777976, 49.529295960000063 ], [ -120.506170157, 49.526009428000116 ], [ -120.506206095999943, 49.525708231000053 ], [ -120.507149243999947, 49.525756022000039 ], [ -120.507154655999969, 49.5257106520001 ], [ -120.507657300999938, 49.525736119000079 ], [ -120.50767514099999, 49.525586564000044 ], [ -120.511378466999943, 49.52577412600003 ], [ -120.511496216999902, 49.524786333000073 ], [ -120.508996790999944, 49.524659759000052 ], [ -120.509424614999915, 49.521071992000039 ], [ -120.510713926999969, 49.521137292000077 ], [ -120.510941996999975, 49.519224000000108 ], [ -120.510600698999951, 49.519206716000049 ], [ -120.511028348999957, 49.515618915000097 ], [ -120.511391564999954, 49.51563730800013 ], [ -120.51162082899998, 49.513713523000057 ], [ -120.513018673999952, 49.51378430200004 ], [ -120.513045791999915, 49.519571859000052 ], [ -120.513054213999979, 49.521371826000099 ], [ -120.513073585999976, 49.525506691000039 ], [ -120.51315788299999, 49.525995497000103 ], [ -120.513371510999932, 49.526376292000037 ], [ -120.513576825999976, 49.526603794000032 ], [ -120.513673940999951, 49.526711412000125 ], [ -120.513745839, 49.526791113000073 ], [ -120.513817754999963, 49.526870781000063 ], [ -120.51406008899994, 49.527139300000094 ], [ -120.514790504999937, 49.527772685000095 ], [ -120.515034632999971, 49.527931018000054 ], [ -120.515786681999941, 49.528418695000013 ], [ -120.515841586999912, 49.528364587000112 ], [ -120.517003384999924, 49.528913716000083 ], [ -120.517254697999988, 49.529032503000039 ], [ -120.51883398299999, 49.529921799000093 ], [ -120.519446504999905, 49.530383202000074 ], [ -120.519769727999972, 49.530692801000058 ], [ -120.520160099999927, 49.531635605000048 ], [ -120.52025879699994, 49.532109789000039 ], [ -120.520243583999971, 49.532422993000111 ], [ -120.520164489999942, 49.532587801000091 ], [ -120.519836207999901, 49.532902306000054 ], [ -120.517960688999963, 49.534278526000072 ], [ -120.517828688999913, 49.534375402000094 ], [ -120.517559396999971, 49.53448540800008 ], [ -120.517614115999962, 49.534569750000088 ], [ -120.517805098999958, 49.534864200000058 ], [ -120.517872423999947, 49.534938486000037 ], [ -120.517952602999941, 49.53502699600012 ], [ -120.518182086999943, 49.535280307000058 ], [ -120.518506210999959, 49.535582693000066 ], [ -120.51982474499998, 49.536807575000104 ], [ -120.518401454999918, 49.536735634000138 ], [ -120.518189953999922, 49.53851164000011 ], [ -120.512683249999952, 49.538233127000105 ], [ -120.512785971999932, 49.537371428000036 ], [ -120.513110913999967, 49.534645416000068 ], [ -120.515329454, 49.534757658000053 ], [ -120.515734584999947, 49.53135706900008 ], [ -120.51712813599994, 49.531427549000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999490395485166", "sL_AssetLoss": "411.6918", "sL_BldgLoss": "411.482", "sL_StrLoss": "410", "sL_NStrLoss": "1.482", "sL_ContLoss": "0.2098", "geom_point": "0101000020E6100000692739168A1E5EC0C4E1F52E98E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.475114332999937, 49.776382495000085 ], [ -120.480649394999944, 49.776662816000041 ], [ -120.480594222999954, 49.777120386000057 ], [ -120.47857537099992, 49.779049801000085 ], [ -120.477457790999935, 49.780109463000066 ], [ -120.474681443999955, 49.779968821000061 ], [ -120.474842129999985, 49.778637662000044 ], [ -120.475114332999937, 49.776382495000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999558819699977", "sL_AssetLoss": "399.3832", "sL_BldgLoss": "399.207", "sL_StrLoss": "398", "sL_NStrLoss": "1.207", "sL_ContLoss": "0.1762", "geom_point": "0101000020E610000088F2052D64105EC0E1BBE6B8C7E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.25832027899996, 49.786867600000036 ], [ -120.25819749799993, 49.786837691000059 ], [ -120.258052803999988, 49.786933197000046 ], [ -120.257767296999987, 49.787322002000046 ], [ -120.25735711, 49.787447297000043 ], [ -120.25726089199992, 49.787660911000053 ], [ -120.256840099999977, 49.787975690000067 ], [ -120.256675303999913, 49.78843 ], [ -120.256472885999983, 49.788551096000042 ], [ -120.254684920999964, 49.788481303000026 ], [ -120.25410789799993, 49.788612306000104 ], [ -120.253249512999957, 49.788555297000123 ], [ -120.252159765999949, 49.788827289000047 ], [ -120.252451869999987, 49.786501933000139 ], [ -120.25348899899997, 49.786556594000032 ], [ -120.253522535999977, 49.786289556000085 ], [ -120.254030975999981, 49.78631635000005 ], [ -120.254034613999977, 49.786287370000146 ], [ -120.25406261199997, 49.786288844000161 ], [ -120.254114634999965, 49.785874569000072 ], [ -120.259649464999924, 49.786166082000115 ], [ -120.259623737999959, 49.786371161000041 ], [ -120.260038064999932, 49.786392972000073 ], [ -120.259650826000012, 49.789479713000034 ], [ -120.259526719999926, 49.789109300000078 ], [ -120.258259912999961, 49.788683504000076 ], [ -120.257791577999981, 49.788340296000108 ], [ -120.25771139299998, 49.788058315000079 ], [ -120.257930301999963, 49.787874606000116 ], [ -120.25817242, 49.787746403000085 ], [ -120.25867630099999, 49.787676592000068 ], [ -120.25832027899996, 49.786867600000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.998700616652325", "sL_AssetLoss": "162.2308", "sL_BldgLoss": "162.02", "sL_StrLoss": "159.1", "sL_NStrLoss": "2.92", "sL_ContLoss": "0.2108", "geom_point": "0101000020E610000098224C938A105EC0DF93C130E4DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.257413328000013, 49.711504788000134 ], [ -120.257443701999961, 49.710965736000055 ], [ -120.256196794999966, 49.710936184000033 ], [ -120.256227184999929, 49.710397133000129 ], [ -120.255811554, 49.71038727900001 ], [ -120.255836268999971, 49.709948897000061 ], [ -120.256808212999914, 49.709460505000067 ], [ -120.257177104000021, 49.709323894000072 ], [ -120.257781990999931, 49.70915730100009 ], [ -120.258510084999955, 49.70904972400011 ], [ -120.260302323999952, 49.708784905000108 ], [ -120.260481979999938, 49.708745919000123 ], [ -120.26047452099999, 49.708878429000059 ], [ -120.260890140999948, 49.70888826500007 ], [ -120.260814301999943, 49.710235898000057 ], [ -120.259983042000016, 49.710216222000099 ], [ -120.259967867999961, 49.710485748000096 ], [ -120.25955223499993, 49.710475908000021 ], [ -120.25952188399998, 49.711014960000043 ], [ -120.25910624699992, 49.711005119000035 ], [ -120.259075889999949, 49.711544170000096 ], [ -120.257413328000013, 49.711504788000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999326738018394", "sL_AssetLoss": "128.1819", "sL_BldgLoss": "128.0956", "sL_StrLoss": "127.0296", "sL_NStrLoss": "1.066", "sL_ContLoss": "0.0863", "geom_point": "0101000020E61000001D28A6C163245EC09EACFF10EECC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.567158623999902, 49.598552259000094 ], [ -120.567365700999972, 49.598562618000074 ], [ -120.567948507999986, 49.599159705000083 ], [ -120.568922415999936, 49.599984481000021 ], [ -120.570723387999976, 49.601509600000057 ], [ -120.570806282999939, 49.601579798000067 ], [ -120.571234178999987, 49.601890796000049 ], [ -120.571704473999944, 49.602170499000124 ], [ -120.572190141999954, 49.602412644000019 ], [ -120.566734575999973, 49.602139850000128 ], [ -120.567158623999902, 49.598552259000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.999283711507062", "sL_AssetLoss": "280.7528", "sL_BldgLoss": "280.5517", "sL_StrLoss": "278.0727", "sL_NStrLoss": "2.479", "sL_ContLoss": "0.2011", "geom_point": "0101000020E610000029DD2B2D42225EC0E54A148C90D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.532660162999932, 49.63911683200012 ], [ -120.532687943999946, 49.638883494000012 ], [ -120.532298866999938, 49.638863923000038 ], [ -120.532323337999969, 49.638658390000039 ], [ -120.53197196899994, 49.638640715000058 ], [ -120.532399063999932, 49.635053447000097 ], [ -120.537917470999943, 49.635330923000069 ], [ -120.53789302699991, 49.635536457000036 ], [ -120.538244374999977, 49.635554115000033 ], [ -120.538216624999919, 49.635787455000077 ], [ -120.538605677999954, 49.635807004000092 ], [ -120.538179059999948, 49.63939429300008 ], [ -120.532660162999932, 49.63911683200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999298076860584", "sL_AssetLoss": "461.589", "sL_BldgLoss": "461.265", "sL_StrLoss": "459", "sL_NStrLoss": "2.265", "sL_ContLoss": "0.324", "geom_point": "0101000020E6100000179E767C24205EC0305A2EB8F2BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.500281925999971, 49.489672090000141 ], [ -120.502952693999987, 49.489807664000061 ], [ -120.504417910999962, 49.491788299000135 ], [ -120.504772298999953, 49.492331490000069 ], [ -120.505035696999926, 49.492814086000081 ], [ -120.505316789999981, 49.493537232000065 ], [ -120.499853679999887, 49.493259985000059 ], [ -120.500281925999971, 49.489672090000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999467607608974", "sL_AssetLoss": "880.3657", "sL_BldgLoss": "879.897", "sL_StrLoss": "877", "sL_NStrLoss": "2.897", "sL_ContLoss": "0.4687", "geom_point": "0101000020E6100000F9B3E57D18165EC0730B0A4116D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.346400582999976, 49.653630904000131 ], [ -120.349526430999973, 49.653793415000045 ], [ -120.349084901999944, 49.657379857000095 ], [ -120.34769512299998, 49.657307615000093 ], [ -120.347577686999941, 49.65826119000009 ], [ -120.345635224999924, 49.658160189000064 ], [ -120.345424985999955, 49.659866635000064 ], [ -120.339904815999958, 49.659579416000035 ], [ -120.340023392999925, 49.658617924000112 ], [ -120.340269839999948, 49.658436379000065 ], [ -120.341883570999983, 49.657247538000064 ], [ -120.343582129999987, 49.655939982000106 ], [ -120.344186897999947, 49.655540110000075 ], [ -120.345133531999963, 49.654788984000056 ], [ -120.346400582999976, 49.653630904000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999032410607108", "sL_AssetLoss": "687.275", "sL_BldgLoss": "686.61", "sL_StrLoss": "681", "sL_NStrLoss": "5.61", "sL_ContLoss": "0.665", "geom_point": "0101000020E61000001F6E7F15FD1F5EC0962C825AE7C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.497284900999958, 49.505126764000046 ], [ -120.502787561999924, 49.505406072000035 ], [ -120.502359366999912, 49.508993894000042 ], [ -120.496856278999928, 49.508714566000023 ], [ -120.497284900999958, 49.505126764000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999058812983899", "sL_AssetLoss": "356.996", "sL_BldgLoss": "356.66", "sL_StrLoss": "354", "sL_NStrLoss": "2.66", "sL_ContLoss": "0.336", "geom_point": "0101000020E6100000B7D7FEA5F7265EC0FEFF6A9B83D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.607115310999973, 49.645816147000133 ], [ -120.607163191, 49.64540846500006 ], [ -120.606930930999965, 49.645396944000062 ], [ -120.607005894999958, 49.644758666000051 ], [ -120.606916771999977, 49.64475424600009 ], [ -120.607199942999983, 49.642343043000061 ], [ -120.607567605999989, 49.642410397000013 ], [ -120.608029016999964, 49.642523503000049 ], [ -120.608236509999983, 49.642600597000055 ], [ -120.608566992999968, 49.642788402000065 ], [ -120.60888957899999, 49.64309030400009 ], [ -120.609011532999915, 49.643288733000084 ], [ -120.609027710999968, 49.643315036000111 ], [ -120.609087663999958, 49.643412583000092 ], [ -120.609629601999984, 49.64429430400002 ], [ -120.609812446999911, 49.644483247000025 ], [ -120.610000986999964, 49.644678095000067 ], [ -120.610158682999966, 49.644788806000044 ], [ -120.610721602999945, 49.645066600000128 ], [ -120.612013613999949, 49.645530189000041 ], [ -120.612474198999962, 49.645662215000073 ], [ -120.612680841999961, 49.645702998000047 ], [ -120.612635457999914, 49.64608983300014 ], [ -120.607115310999973, 49.645816147000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999910802671023", "sL_AssetLoss": "400.2362", "sL_BldgLoss": "400.2005", "sL_StrLoss": "400", "sL_NStrLoss": "0.2005", "sL_ContLoss": "0.0357", "geom_point": "0101000020E61000003FB8D0CF33005EC0D1E67AD35BE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.000226098999974, 49.816799142000058 ], [ -120.0003075, 49.816178897000029 ], [ -119.999138704999936, 49.816114614000107 ], [ -119.999571093999947, 49.812820291000037 ], [ -119.99996970700002, 49.812886501000044 ], [ -120.000140988999974, 49.813087297000052 ], [ -120.000085397999953, 49.813319504000049 ], [ -119.999904794999964, 49.813400712000053 ], [ -119.999930911999925, 49.813590088000055 ], [ -119.999549114000018, 49.813725395000098 ], [ -119.999486790999953, 49.813843598000062 ], [ -119.999975495999962, 49.813849301000111 ], [ -120.000664098999948, 49.813649900000051 ], [ -120.001204799999954, 49.813664094000018 ], [ -120.002138520999921, 49.813849301000111 ], [ -120.00282270299999, 49.814255194000147 ], [ -120.003631887999973, 49.814220989000027 ], [ -120.004235288999979, 49.814326405000081 ], [ -120.004286109999953, 49.814661094000044 ], [ -120.004490094999952, 49.814702412000024 ], [ -120.004595090999942, 49.814597011000082 ], [ -120.004557581999919, 49.814290801000048 ], [ -120.004657805999969, 49.814239496000056 ], [ -120.005275713999978, 49.8141468930001 ], [ -120.006301196, 49.814191091000055 ], [ -120.006361183999971, 49.814129906000048 ], [ -120.006233576999946, 49.81394759700013 ], [ -120.005635498999979, 49.813733899000091 ], [ -120.005540082999971, 49.813460493000029 ], [ -120.005593914999949, 49.813273890000083 ], [ -120.005781897999924, 49.813169907000031 ], [ -120.006282501999948, 49.813174209000039 ], [ -120.007124761999961, 49.813479725000022 ], [ -120.00669133599996, 49.816786077000117 ], [ -120.00581097499996, 49.816737711000115 ], [ -120.005763013999939, 49.817103498000058 ], [ -120.000226098999974, 49.816799142000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999295409326284", "sL_AssetLoss": "139.3717", "sL_BldgLoss": "139.2735", "sL_StrLoss": "138.0355", "sL_NStrLoss": "1.238", "sL_ContLoss": "0.0982", "geom_point": "0101000020E61000001D63DD2EAA215EC09FD48F3455C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.524527560999971, 49.546898418000048 ], [ -120.525047931, 49.546924687000121 ], [ -120.525082450999989, 49.547119875000078 ], [ -120.525136686999971, 49.547426802000075 ], [ -120.525408097999929, 49.548056690000067 ], [ -120.525542187999974, 49.548268310000019 ], [ -120.525575621999934, 49.548304885000071 ], [ -120.525732194999961, 49.548476398000076 ], [ -120.525965096, 49.548673188000059 ], [ -120.526251513999966, 49.548861798000097 ], [ -120.526596703999957, 49.549046094000062 ], [ -120.527776192999966, 49.549541409000078 ], [ -120.527825744, 49.549570509000098 ], [ -120.528149096999968, 49.549760591000052 ], [ -120.52870779099996, 49.55015330100008 ], [ -120.529108563999969, 49.550371232000025 ], [ -120.529366216999932, 49.550511302000096 ], [ -120.529624926999958, 49.550629295000064 ], [ -120.529608907999958, 49.55076403900005 ], [ -120.524100670999985, 49.550486110000129 ], [ -120.524527560999971, 49.546898418000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999840906255819", "sL_AssetLoss": "221.2532", "sL_BldgLoss": "221.218", "sL_StrLoss": "221", "sL_NStrLoss": "0.218", "sL_ContLoss": "0.0352", "geom_point": "0101000020E610000099DEB4CF990B5EC04CD73CDCC8DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.183226269999977, 49.715016947000031 ], [ -120.183942698999942, 49.714985544000086 ], [ -120.183580059999926, 49.717842942000075 ], [ -120.182641022999974, 49.717792766000102 ], [ -120.182552150999982, 49.718492864000098 ], [ -120.177025969999946, 49.718197419000091 ], [ -120.177089107999933, 49.717700520000072 ], [ -120.177232536999924, 49.717618614000031 ], [ -120.177395736999969, 49.717525388000062 ], [ -120.177547525999955, 49.71747564500005 ], [ -120.17770342299994, 49.717424543000057 ], [ -120.17771989, 49.717421735000109 ], [ -120.17877389299997, 49.717242621000075 ], [ -120.179192741999941, 49.717120628000018 ], [ -120.18081069299997, 49.71639495000003 ], [ -120.18106357, 49.716221661000105 ], [ -120.181208588999979, 49.716032675000058 ], [ -120.181261211999981, 49.715727747000059 ], [ -120.181369087999968, 49.715590037000055 ], [ -120.181567736999952, 49.715482436000102 ], [ -120.183226269999977, 49.715016947000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999936626652151", "sL_AssetLoss": "194.0879", "sL_BldgLoss": "194.0756", "sL_StrLoss": "194", "sL_NStrLoss": "0.0756", "sL_ContLoss": "0.0123", "geom_point": "0101000020E6100000ECCF6EC2F7005EC0F6665044F1DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.018246528999924, 49.712357117000089 ], [ -120.01821310399994, 49.711818197000085 ], [ -120.017382016999932, 49.711839870000027 ], [ -120.017378009999973, 49.711775237000012 ], [ -120.0172482, 49.711771891000112 ], [ -120.01726038299995, 49.711573144000056 ], [ -120.016949767999947, 49.711581242000115 ], [ -120.016944369999948, 49.711494166000143 ], [ -120.016849165999986, 49.7114917110001 ], [ -120.016876649999986, 49.711043357000065 ], [ -120.016085284, 49.71106398400007 ], [ -120.016077104999951, 49.710932017000061 ], [ -120.015635559999964, 49.710920631000079 ], [ -120.015659189999923, 49.710535296000089 ], [ -120.014389751999929, 49.710568369000079 ], [ -120.014356371999924, 49.710029447000153 ], [ -120.01227872599992, 49.710083546000092 ], [ -120.012295403999971, 49.710353008000077 ], [ -120.011923974999917, 49.710362676000081 ], [ -120.011912187999883, 49.710554658000021 ], [ -120.011891650999985, 49.710554128000069 ], [ -120.011896549999946, 49.710633285000057 ], [ -120.010649943999965, 49.710665723000091 ], [ -120.010571496999916, 49.709397654000099 ], [ -120.01078861299996, 49.709422325000077 ], [ -120.010970601999929, 49.709442993000053 ], [ -120.011341980999987, 49.70945349600008 ], [ -120.01171408699993, 49.709416204000092 ], [ -120.012637811999952, 49.709191793000052 ], [ -120.013028382999934, 49.70913020800004 ], [ -120.013042503999912, 49.709129745000034 ], [ -120.013423593000013, 49.709117616000057 ], [ -120.01380479099997, 49.709170183000062 ], [ -120.01419141599996, 49.70927720400006 ], [ -120.01473693399997, 49.709454213000036 ], [ -120.01474275399994, 49.709548129000069 ], [ -120.015050875999989, 49.70955607700008 ], [ -120.016011138999957, 49.709867647000117 ], [ -120.016026843999924, 49.710121036000054 ], [ -120.016741630999945, 49.710139465000047 ], [ -120.016830397999982, 49.710179610000075 ], [ -120.017732815999935, 49.710655734000035 ], [ -120.017729813999964, 49.710704725000113 ], [ -120.017830593, 49.710707320000104 ], [ -120.018154812999953, 49.710878378000089 ], [ -120.018161470999971, 49.710985742000062 ], [ -120.018368421000019, 49.710991074000034 ], [ -120.018513085, 49.711067397000058 ], [ -120.018584993, 49.711103667000096 ], [ -120.018611929999963, 49.71153789800011 ], [ -120.019404873999989, 49.711517212000153 ], [ -120.019873966999938, 49.711753830000085 ], [ -120.019908714999971, 49.712313754000064 ], [ -120.018246528999924, 49.712357117000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999501980031006", "sL_AssetLoss": "124.493", "sL_BldgLoss": "124.431", "sL_StrLoss": "124", "sL_NStrLoss": "0.431", "sL_ContLoss": "0.062", "geom_point": "0101000020E610000006A00F9E22265EC071864D2ABBD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.594265293999939, 49.638916614000074 ], [ -120.594425127999969, 49.637558669000072 ], [ -120.594465912999979, 49.637592793000131 ], [ -120.594524406999966, 49.637627857000084 ], [ -120.594835415999981, 49.637814195000082 ], [ -120.595211198999948, 49.637949301000084 ], [ -120.595272115999961, 49.637971209000099 ], [ -120.595758204999953, 49.638063004000088 ], [ -120.596869403999975, 49.638172392000122 ], [ -120.597023893999975, 49.638216193000083 ], [ -120.597269311000019, 49.638336586000065 ], [ -120.597593304999975, 49.638614312000136 ], [ -120.598046878000019, 49.639104611000072 ], [ -120.594265293999939, 49.638916614000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999382867338203", "sL_AssetLoss": "441.8823", "sL_BldgLoss": "441.6096", "sL_StrLoss": "439.0416", "sL_NStrLoss": "2.568", "sL_ContLoss": "0.2727", "geom_point": "0101000020E610000064F369FCDF1F5EC0C818AB0F1CE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.500485872999917, 49.749175369000078 ], [ -120.501027375999954, 49.74920269600009 ], [ -120.500596768999955, 49.752789261000089 ], [ -120.496763381999969, 49.752595747000015 ], [ -120.495064463999981, 49.752509941000099 ], [ -120.495495501999926, 49.748923396000087 ], [ -120.500485872999917, 49.749175369000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15910583", "BldgCostT": "10763333", "sL_LossRatio": "0.919321342447855", "sL_AssetLoss": "3692.9494", "sL_BldgLoss": "3395.0072", "sL_StrLoss": "3281.0962", "sL_NStrLoss": "113.911", "sL_ContLoss": "297.9422", "geom_point": "0101000020E61000009A9C14C52F1F5EC0F3231B9BDFBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.482678001999929, 49.494566308000053 ], [ -120.482193105999954, 49.492988496000045 ], [ -120.482052013, 49.49276929900001 ], [ -120.481228894999902, 49.492073998000158 ], [ -120.480883696999925, 49.491663918000057 ], [ -120.480921247999945, 49.490593260000011 ], [ -120.480923805999907, 49.49052071600002 ], [ -120.48086007699996, 49.489950649000079 ], [ -120.480833615999956, 49.489713891000136 ], [ -120.480798062999952, 49.489518264000083 ], [ -120.484694303999959, 49.489716728000097 ], [ -120.484588749999915, 49.490598611000145 ], [ -120.48503808, 49.490621490000073 ], [ -120.485306822999974, 49.488375936000104 ], [ -120.486126165999949, 49.488417650000066 ], [ -120.486189605000035, 49.487887454000067 ], [ -120.480941963999939, 49.487620181000082 ], [ -120.480963187999976, 49.48744297700005 ], [ -120.480632024999963, 49.487426102000029 ], [ -120.480632569999941, 49.487411408000057 ], [ -120.48068548599997, 49.485983818000101 ], [ -120.480731900999928, 49.485688297000046 ], [ -120.48081311599999, 49.485507498000082 ], [ -120.48162960499991, 49.484580812000054 ], [ -120.481918483999962, 49.484294005000088 ], [ -120.481979482000014, 49.484233429000042 ], [ -120.482128818999939, 49.484085184000094 ], [ -120.482405182999955, 49.48381079799999 ], [ -120.482922088999942, 49.483491513000104 ], [ -120.483986917999957, 49.482997905000111 ], [ -120.484434115999989, 49.482763503000029 ], [ -120.484766085999965, 49.482554809000156 ], [ -120.485082385999988, 49.482282192000092 ], [ -120.485221609999897, 49.482101506000049 ], [ -120.485470102999955, 49.481665703000019 ], [ -120.485572659999889, 49.481470733000059 ], [ -120.485894882999958, 49.481487140000091 ], [ -120.486326934999965, 49.482083739000068 ], [ -120.48668721599995, 49.483814420000073 ], [ -120.488092179999924, 49.483848305000059 ], [ -120.487930455999987, 49.485200498000061 ], [ -120.486772492999947, 49.485141557000127 ], [ -120.486447249999955, 49.487860126000058 ], [ -120.491694950999914, 49.488127132000052 ], [ -120.491644513999944, 49.488549076000091 ], [ -120.492042665999975, 49.488569324000146 ], [ -120.491843174999971, 49.490238287000139 ], [ -120.494507892999934, 49.490373761000072 ], [ -120.49450047, 49.490435895000068 ], [ -120.495544063999887, 49.490488932000083 ], [ -120.495543448999939, 49.490494092000084 ], [ -120.496246441999986, 49.490529815000031 ], [ -120.495817874999915, 49.494117689000092 ], [ -120.49308848199999, 49.493978971000089 ], [ -120.49275209299995, 49.496793352000047 ], [ -120.487250518999986, 49.496513532000058 ], [ -120.487315235000025, 49.49597266400005 ], [ -120.486760238999963, 49.495944420000065 ], [ -120.486906304999962, 49.494723716000074 ], [ -120.486853722999982, 49.494721040000094 ], [ -120.486727584999954, 49.495775196000061 ], [ -120.486424110999948, 49.495759751000016 ], [ -120.486009843999966, 49.49922130300007 ], [ -120.483825884999973, 49.499110127000108 ], [ -120.483299809999934, 49.4982139910001 ], [ -120.483157228999943, 49.497844795000091 ], [ -120.483131202999942, 49.497460917000076 ], [ -120.4831483599999, 49.49736231400005 ], [ -120.483228898999968, 49.496899213000056 ], [ -120.48317100499996, 49.496377305000081 ], [ -120.482871087999911, 49.495114911000044 ], [ -120.482678001999929, 49.494566308000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999845955822546", "sL_AssetLoss": "463.5034", "sL_BldgLoss": "463.432", "sL_StrLoss": "463", "sL_NStrLoss": "0.432", "sL_ContLoss": "0.0714", "geom_point": "0101000020E610000053D714A7DE0E5EC01F06E375B7DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.230568374999947, 49.718390786000043 ], [ -120.230635789999951, 49.717855281000034 ], [ -120.229037060999971, 49.717770545000064 ], [ -120.229184843, 49.716596934000037 ], [ -120.229488541999913, 49.71418490100011 ], [ -120.22999352, 49.714211668000097 ], [ -120.230046739999949, 49.713788913000094 ], [ -120.231597637999982, 49.71387110700006 ], [ -120.2323464399999, 49.714195082000053 ], [ -120.232732626, 49.714474497000054 ], [ -120.233189906999911, 49.714962591000067 ], [ -120.233538814, 49.715284286000028 ], [ -120.233869606000027, 49.715518407000062 ], [ -120.23398848699999, 49.715580025000044 ], [ -120.235120384999931, 49.716166646000062 ], [ -120.236225682999958, 49.71688839500009 ], [ -120.236316058999989, 49.71692522600005 ], [ -120.236309875999979, 49.716974390000132 ], [ -120.236094923999971, 49.71868351900013 ], [ -120.230568374999947, 49.718390786000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999294774464078", "sL_AssetLoss": "917.437", "sL_BldgLoss": "916.79", "sL_StrLoss": "912", "sL_NStrLoss": "4.79", "sL_ContLoss": "0.647", "geom_point": "0101000020E61000006AA7A456711E5EC0EA88AED193C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.473015705999913, 49.554082106000088 ], [ -120.473260787999934, 49.552041743000053 ], [ -120.472380618999964, 49.551996893000144 ], [ -120.47281154700002, 49.548409414000055 ], [ -120.478319224999922, 49.548689944000017 ], [ -120.478074386999978, 49.550730328000078 ], [ -120.478954535999947, 49.55077513100008 ], [ -120.478524063999913, 49.554362623000095 ], [ -120.473015705999913, 49.554082106000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999513941994242", "sL_AssetLoss": "282.0651", "sL_BldgLoss": "281.928", "sL_StrLoss": "281", "sL_NStrLoss": "0.928", "sL_ContLoss": "0.1371", "geom_point": "0101000020E610000000996B0B2E095EC0C01791EE08DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.140767875000023, 49.719689522000074 ], [ -120.141049255999974, 49.717488786000054 ], [ -120.14140027800002, 49.717804308000076 ], [ -120.14181527, 49.718039631000124 ], [ -120.142022621999942, 49.718110973000108 ], [ -120.142141718999952, 49.718151968000065 ], [ -120.14252772399999, 49.718189873000064 ], [ -120.14263503799999, 49.718179613000032 ], [ -120.14346981099996, 49.718099768000108 ], [ -120.143857792999881, 49.718122452000046 ], [ -120.144165078999933, 49.718188630000121 ], [ -120.144688913999985, 49.718389558000098 ], [ -120.145322669999956, 49.718632629000098 ], [ -120.145558388999973, 49.718682308000041 ], [ -120.145737044000015, 49.71868678400007 ], [ -120.146154587999902, 49.718697219000035 ], [ -120.146447830999989, 49.718753608000029 ], [ -120.146451321999962, 49.718755243000018 ], [ -120.14629400199999, 49.71998680300004 ], [ -120.140767875000023, 49.719689522000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999831852459009", "sL_AssetLoss": "218.2607", "sL_BldgLoss": "218.224", "sL_StrLoss": "218", "sL_NStrLoss": "0.224", "sL_ContLoss": "0.0367", "geom_point": "0101000020E610000046ABFF189F0C5EC0F4F98B4D69DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.195967514999936, 49.715623145000045 ], [ -120.196067161999949, 49.714836299000069 ], [ -120.196201971, 49.713771743000059 ], [ -120.194363484999911, 49.71367370600008 ], [ -120.194548250999986, 49.712215039000114 ], [ -120.19478975499996, 49.712159864000071 ], [ -120.195489629999898, 49.712047370000086 ], [ -120.19565238099996, 49.712049793000105 ], [ -120.195982427000018, 49.7120547170001 ], [ -120.196201043999935, 49.712085314000028 ], [ -120.196518102999917, 49.712184336000107 ], [ -120.196942822999972, 49.712432585000016 ], [ -120.197622548999959, 49.713072565000104 ], [ -120.197836078999941, 49.713341125000113 ], [ -120.198489298999959, 49.714333427000014 ], [ -120.19905279799994, 49.714990643000078 ], [ -120.199289859999965, 49.715183763000063 ], [ -120.199542109999967, 49.715278416000103 ], [ -120.200274427999915, 49.715269315000043 ], [ -120.200320357999956, 49.715268740000056 ], [ -120.200791639999963, 49.715262869000092 ], [ -120.201574004999955, 49.715281405000042 ], [ -120.201493509999935, 49.715917631000138 ], [ -120.195967514999936, 49.715623145000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.999282931500071", "sL_AssetLoss": "445.0063", "sL_BldgLoss": "444.6872", "sL_StrLoss": "442.0522", "sL_NStrLoss": "2.635", "sL_ContLoss": "0.3191", "geom_point": "0101000020E6100000922A82E6101E5EC0921FF12B56C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.467242894999941, 49.555383103000111 ], [ -120.472751373, 49.555663913000018 ], [ -120.472320370999952, 49.559251354000061 ], [ -120.46681146899999, 49.558970525000042 ], [ -120.467242894999941, 49.555383103000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999881024578427", "sL_AssetLoss": "94.9776", "sL_BldgLoss": "94.9663", "sL_StrLoss": "94.9", "sL_NStrLoss": "0.0663", "sL_ContLoss": "0.0113", "geom_point": "0101000020E61000006BCE667A6E015EC0501D69784CDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.022102961999934, 49.714056072000098 ], [ -120.022119452999917, 49.713786601000017 ], [ -120.02170387799994, 49.713775908000088 ], [ -120.021713657999967, 49.713616120000104 ], [ -120.021654559999917, 49.713617664000068 ], [ -120.021630748999883, 49.713234237000087 ], [ -120.020490156999955, 49.713204877000067 ], [ -120.020539653999919, 49.712396468000115 ], [ -120.021270301999976, 49.712415276000094 ], [ -120.02168338199999, 49.712590107000032 ], [ -120.02177478599998, 49.712617381000044 ], [ -120.021769849999941, 49.712698027000037 ], [ -120.022071032999989, 49.712705777000032 ], [ -120.02272498, 49.712900904000058 ], [ -120.023216345999955, 49.712988312000029 ], [ -120.024238297999915, 49.713170089000094 ], [ -120.024197327, 49.713840049000041 ], [ -120.023366176999971, 49.713818675000049 ], [ -120.023349691999954, 49.714088145000126 ], [ -120.022102961999934, 49.714056072000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4598917", "BldgCostT": "3171667", "sL_LossRatio": "0.999895723566112", "sL_AssetLoss": "772.6578", "sL_BldgLoss": "772.57723", "sL_StrLoss": "772.00403", "sL_NStrLoss": "0.5732", "sL_ContLoss": "0.08057", "geom_point": "0101000020E6100000AD01A5FCBF0D5EC053D370C26BDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.203669973999922, 49.717423351000058 ], [ -120.203913378999943, 49.715498798000134 ], [ -120.203976451999921, 49.715505594000092 ], [ -120.205472039999961, 49.715630825000083 ], [ -120.206343599999983, 49.71570379000007 ], [ -120.207821786999929, 49.715782455000074 ], [ -120.208414289999936, 49.715782371000081 ], [ -120.209018303999926, 49.71572428100005 ], [ -120.209724879999897, 49.715580471000074 ], [ -120.211153695999968, 49.715224180000092 ], [ -120.213494877999977, 49.714544376000063 ], [ -120.213641186999951, 49.714501911000049 ], [ -120.214068990999962, 49.714306418000035 ], [ -120.214416098999934, 49.714147796000113 ], [ -120.21633761399994, 49.712917085000115 ], [ -120.21786309, 49.711991911000069 ], [ -120.218162195, 49.711738005 ], [ -120.218604102999947, 49.711288609000022 ], [ -120.21975537499999, 49.710319204000079 ], [ -120.220328383999927, 49.709998597000101 ], [ -120.220872806, 49.709838912000045 ], [ -120.221466585999949, 49.709762103000116 ], [ -120.22163009599997, 49.709766301000059 ], [ -120.221782717999986, 49.709768449000073 ], [ -120.221977215999956, 49.709771208000092 ], [ -120.222479398999951, 49.709846504000076 ], [ -120.223222373999974, 49.710008698000131 ], [ -120.22408050899999, 49.710239199000057 ], [ -120.22412526199993, 49.710247540000047 ], [ -120.224657997999913, 49.710346588000043 ], [ -120.224674716999985, 49.710346632000025 ], [ -120.225095991, 49.710347303000084 ], [ -120.225305527999978, 49.710320553000024 ], [ -120.225136674999987, 49.711660794000046 ], [ -120.224548426999917, 49.711629584000022 ], [ -120.224510760999948, 49.711928507000074 ], [ -120.222225451999918, 49.711807229000058 ], [ -120.22221666199998, 49.711876961000073 ], [ -120.22203748, 49.711867450000035 ], [ -120.221999267999962, 49.712170565000058 ], [ -120.221491122999907, 49.712143591000078 ], [ -120.22145556000001, 49.712425677000063 ], [ -120.221007883999917, 49.712401911000029 ], [ -120.220911078999961, 49.713169687000061 ], [ -120.220369805999951, 49.713140950000088 ], [ -120.220346862000014, 49.713322900000072 ], [ -120.220010937999945, 49.713305063000114 ], [ -120.219982659999943, 49.713529308000098 ], [ -120.219265379999968, 49.713491220000044 ], [ -120.219220944999947, 49.713843525000108 ], [ -120.218727052999952, 49.713817296000052 ], [ -120.218716325999978, 49.713902336000054 ], [ -120.218236460999933, 49.713876849000073 ], [ -120.218216112999968, 49.714038147000018 ], [ -120.217725372999951, 49.714012082000053 ], [ -120.217696901999943, 49.714237758000095 ], [ -120.216942302999911, 49.714197673000051 ], [ -120.216758339999927, 49.715655577000113 ], [ -120.216355392999944, 49.715634170000087 ], [ -120.216320435999961, 49.715911187000046 ], [ -120.215936185999951, 49.715890772000051 ], [ -120.215935804999958, 49.715893799000071 ], [ -120.215900731999952, 49.716171696000096 ], [ -120.215458242999986, 49.716148185000065 ], [ -120.215436920999977, 49.716317106000055 ], [ -120.21476521799994, 49.716281412000043 ], [ -120.214708613999974, 49.716729822000026 ], [ -120.21407241899999, 49.71669601100006 ], [ -120.214059488999979, 49.716798437000108 ], [ -120.213200151999914, 49.716752761000109 ], [ -120.213187954999952, 49.716849357000044 ], [ -120.211899283999955, 49.716780848000049 ], [ -120.211861212999949, 49.717082287000046 ], [ -120.21135347699996, 49.717055290000118 ], [ -120.211315303999953, 49.717357499000165 ], [ -120.210391140999945, 49.717308354000075 ], [ -120.210359574999984, 49.717558221000019 ], [ -120.209223985999955, 49.717497822000027 ], [ -120.209196234999951, 49.717717447000091 ], [ -120.203669973999922, 49.717423351000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999704829570257", "sL_AssetLoss": "120.2695", "sL_BldgLoss": "120.234", "sL_StrLoss": "120", "sL_NStrLoss": "0.234", "sL_ContLoss": "0.0355", "geom_point": "0101000020E6100000B7063A83940E5EC0E5B8CF0134DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.226450741999926, 49.713556585000084 ], [ -120.226504565999932, 49.713129304000049 ], [ -120.226209962999945, 49.713113679000088 ], [ -120.22656882099993, 49.71026478700005 ], [ -120.22680291099999, 49.71032051000001 ], [ -120.226953400999946, 49.710395310000088 ], [ -120.227163100999945, 49.710574206000089 ], [ -120.227500958999897, 49.711101499000051 ], [ -120.227558191999918, 49.71119078900005 ], [ -120.227824303999952, 49.711507192000084 ], [ -120.228705386999934, 49.71229614900011 ], [ -120.228911602999958, 49.712480807000112 ], [ -120.22933270899992, 49.712891090000028 ], [ -120.229592803999935, 49.713089882000084 ], [ -120.229934742999916, 49.713279465000035 ], [ -120.230795848999932, 49.71356426600002 ], [ -120.2312293499999, 49.713711761000084 ], [ -120.231487900999952, 49.713823628000057 ], [ -120.226450741999926, 49.713556585000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999666650792895", "sL_AssetLoss": "377.982", "sL_BldgLoss": "377.856", "sL_StrLoss": "377", "sL_NStrLoss": "0.856", "sL_ContLoss": "0.126", "geom_point": "0101000020E6100000185C73473F225EC0261E0E1A13C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.537133067999918, 49.557801347000122 ], [ -120.537134852999898, 49.557786318000069 ], [ -120.53580032499994, 49.557719111000047 ], [ -120.535941934999968, 49.556526694000048 ], [ -120.534617563999944, 49.556459983000082 ], [ -120.534678155999984, 49.555949885000132 ], [ -120.534660296999931, 49.555948984000068 ], [ -120.534683891999975, 49.555750348000046 ], [ -120.534043190999981, 49.555718069000136 ], [ -120.534079483999975, 49.555412558000057 ], [ -120.532046644999951, 49.555310114000115 ], [ -120.532430963999943, 49.552075885000058 ], [ -120.534308210999953, 49.553364512000059 ], [ -120.535849826999979, 49.554439622000118 ], [ -120.537874077999945, 49.555851206000092 ], [ -120.538105478999952, 49.556095695000131 ], [ -120.538278084999931, 49.556474300000069 ], [ -120.538258282999919, 49.557075767000114 ], [ -120.538249918999938, 49.55733008300006 ], [ -120.538280288999928, 49.557406179000068 ], [ -120.53833089799997, 49.557532876000074 ], [ -120.538428302999947, 49.55777660100005 ], [ -120.538482439999925, 49.557869285000088 ], [ -120.537133067999918, 49.557801347000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964220569664656", "sL_AssetLoss": "0.7127", "sL_BldgLoss": "0.6872", "sL_StrLoss": "0.0302", "sL_NStrLoss": "0.657", "sL_ContLoss": "0.0255", "geom_point": "0101000020E6100000DAF136A1161A5EC04F709805E6C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.408245749999978, 49.575233744000109 ], [ -120.408984423, 49.575271802000017 ], [ -120.408548275999962, 49.578858888000049 ], [ -120.405604819999965, 49.578707204000068 ], [ -120.40584251199995, 49.578253001000114 ], [ -120.406444982999943, 49.577351902000082 ], [ -120.407044788999954, 49.576454772000027 ], [ -120.407062209999935, 49.576428746000019 ], [ -120.407118580999935, 49.57634440500005 ], [ -120.407727469999912, 49.575744449000105 ], [ -120.408245749999978, 49.575233744000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999551714541809", "sL_AssetLoss": "416.4757", "sL_BldgLoss": "416.289", "sL_StrLoss": "415", "sL_NStrLoss": "1.289", "sL_ContLoss": "0.1867", "geom_point": "0101000020E61000006B7439EB34165EC016D49E2F49D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.344605395999963, 49.64885400200005 ], [ -120.350124308999952, 49.649140987000102 ], [ -120.349884232999955, 49.651091562000012 ], [ -120.34977792799998, 49.65116386400009 ], [ -120.349570985999961, 49.651355136000085 ], [ -120.349502561999955, 49.651418359000061 ], [ -120.349434172999935, 49.651481569000104 ], [ -120.34911513299997, 49.65177642400009 ], [ -120.347788800999979, 49.652454593000087 ], [ -120.347766187999952, 49.652471786000035 ], [ -120.347573798999932, 49.652617818000124 ], [ -120.344163531999953, 49.652440450000057 ], [ -120.344605395999963, 49.64885400200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999343500712787", "sL_AssetLoss": "448.5915", "sL_BldgLoss": "448.297", "sL_StrLoss": "446", "sL_NStrLoss": "2.297", "sL_ContLoss": "0.2945", "geom_point": "0101000020E61000009CBD75F67C1B5EC09A7ADD22B0C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.426966752999959, 49.526877583000108 ], [ -120.43247158099993, 49.527160445000071 ], [ -120.432037714, 49.53074787500006 ], [ -120.426532460999965, 49.53046499200007 ], [ -120.426966752999959, 49.526877583000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99931746494553", "sL_AssetLoss": "301.816", "sL_BldgLoss": "301.61", "sL_StrLoss": "300", "sL_NStrLoss": "1.61", "sL_ContLoss": "0.206", "geom_point": "0101000020E6100000A62E74803B1E5EC022A1144A32C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.46988301, 49.531311697000092 ], [ -120.475388627999962, 49.531592383000074 ], [ -120.475156437999956, 49.533527095000039 ], [ -120.475044493999945, 49.53364570900002 ], [ -120.474754482999955, 49.533892704000088 ], [ -120.474583784999965, 49.533987698000068 ], [ -120.474189722999967, 49.53409850700006 ], [ -120.474085746999933, 49.534107423000108 ], [ -120.473727903999972, 49.5341381040001 ], [ -120.472287588999947, 49.534156753000069 ], [ -120.470156209999928, 49.534184304000043 ], [ -120.469543533999982, 49.534137494000092 ], [ -120.46988301, 49.531311697000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.962899695724123", "sL_AssetLoss": "0.18733", "sL_BldgLoss": "0.18038", "sL_StrLoss": "0.00638", "sL_NStrLoss": "0.174", "sL_ContLoss": "0.00695", "geom_point": "0101000020E6100000061C95DDC4175EC09108F08A9ECE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.369740413999963, 49.61303908800005 ], [ -120.3748055, 49.613301527000047 ], [ -120.373438608999919, 49.614092492000054 ], [ -120.373350534999986, 49.614158092000082 ], [ -120.372041698, 49.615132809000031 ], [ -120.371682198999963, 49.615326194000026 ], [ -120.37128030699995, 49.615469593000107 ], [ -120.370744597999959, 49.615617791000041 ], [ -120.369975289999971, 49.615725016000034 ], [ -120.369522599999968, 49.615852303000032 ], [ -120.369387637999949, 49.615917710000097 ], [ -120.369740413999963, 49.61303908800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999634772546467", "sL_AssetLoss": "276.54", "sL_BldgLoss": "276.439", "sL_StrLoss": "276", "sL_NStrLoss": "0.439", "sL_ContLoss": "0.101", "geom_point": "0101000020E61000006CC1DE06ED195EC071576D06D1C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.403473993999967, 49.574987769000124 ], [ -120.408245749999978, 49.575233744000109 ], [ -120.407727469999912, 49.575744449000105 ], [ -120.407118580999935, 49.57634440500005 ], [ -120.407062209999935, 49.576428746000019 ], [ -120.407044788999954, 49.576454772000027 ], [ -120.406444982999943, 49.577351902000082 ], [ -120.40584251199995, 49.578253001000114 ], [ -120.405604819999965, 49.578707204000068 ], [ -120.403037418999986, 49.578574835000062 ], [ -120.403473993999967, 49.574987769000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99967757795132", "sL_AssetLoss": "112.2752", "sL_BldgLoss": "112.239", "sL_StrLoss": "112", "sL_NStrLoss": "0.239", "sL_ContLoss": "0.0362", "geom_point": "0101000020E610000099840B79C4145EC0EEF1BE0198D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.323906334999933, 49.667583071000081 ], [ -120.326290395999976, 49.667707480000068 ], [ -120.325868249999985, 49.668048859000052 ], [ -120.325279922999982, 49.668649817000109 ], [ -120.324590264999983, 49.669171491000057 ], [ -120.324335129999923, 49.66940360500012 ], [ -120.324154794999984, 49.669682065000082 ], [ -120.324028057999953, 49.669976824000088 ], [ -120.323677693999969, 49.671101813000163 ], [ -120.323662734999957, 49.671179781000021 ], [ -120.323462675999977, 49.67116933900008 ], [ -120.323906334999933, 49.667583071000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999826110385648", "sL_AssetLoss": "691.8182", "sL_BldgLoss": "691.6979", "sL_StrLoss": "691", "sL_NStrLoss": "0.6979", "sL_ContLoss": "0.1203", "geom_point": "0101000020E6100000542B9F2716125EC06C2CBC267FD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.280554396999918, 49.677942049000052 ], [ -120.280585601999945, 49.677691770000074 ], [ -120.278171136, 49.677564785000072 ], [ -120.278618389999949, 49.673978734000066 ], [ -120.2803738, 49.674071064000046 ], [ -120.280460044999955, 49.673379275000109 ], [ -120.28486950599995, 49.673611073000124 ], [ -120.28574366499997, 49.673657005000109 ], [ -120.285778023999953, 49.673040064000133 ], [ -120.287023991999902, 49.67306928200005 ], [ -120.286978980999933, 49.673877884000056 ], [ -120.286148318999949, 49.673858406000043 ], [ -120.286105672999923, 49.674624262000108 ], [ -120.28652304399999, 49.67464618800004 ], [ -120.2860764, 49.678232267000048 ], [ -120.281333753999974, 49.677983027000046 ], [ -120.280554396999918, 49.677942049000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.99985474031574", "sL_AssetLoss": "207.2151", "sL_BldgLoss": "207.185", "sL_StrLoss": "207", "sL_NStrLoss": "0.185", "sL_ContLoss": "0.0301", "geom_point": "0101000020E610000095100764CA0F5EC086C912A556DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.245491376999965, 49.712192668000093 ], [ -120.251017274, 49.712484648000078 ], [ -120.250978926999892, 49.712790380000065 ], [ -120.249338907999942, 49.713800005000088 ], [ -120.24893540599993, 49.714023287000025 ], [ -120.248675377999973, 49.714122308000121 ], [ -120.248344311999915, 49.714189684000118 ], [ -120.248125624999957, 49.714185737 ], [ -120.247151, 49.714168084000043 ], [ -120.246892083999953, 49.714203196000042 ], [ -120.246533299999982, 49.714347489000012 ], [ -120.245372416999928, 49.71506489800003 ], [ -120.244974604, 49.715253297000118 ], [ -120.244608914, 49.715363887000073 ], [ -120.244297702999987, 49.715427685000087 ], [ -120.243392109999917, 49.715553150000034 ], [ -120.243645580999896, 49.713535029000084 ], [ -120.244762037999976, 49.713594060000069 ], [ -120.244826955999912, 49.713077055000092 ], [ -120.245376693999972, 49.713106119000052 ], [ -120.245491376999965, 49.712192668000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.999767475354458", "sL_AssetLoss": "651.9739", "sL_BldgLoss": "651.8223", "sL_StrLoss": "651", "sL_NStrLoss": "0.8223", "sL_ContLoss": "0.1516", "geom_point": "0101000020E6100000CDFCCD388B125EC05DF499DC3DB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.28769049099999, 49.4419377070001 ], [ -120.287837332999942, 49.44075198700012 ], [ -120.285871409999942, 49.440648160000137 ], [ -120.285975334999975, 49.439809223000083 ], [ -120.286315773999917, 49.437060849000076 ], [ -120.286654454999947, 49.437078739000064 ], [ -120.28672248599996, 49.436529456000059 ], [ -120.292215684999988, 49.436819464000024 ], [ -120.292001000999917, 49.438554481 ], [ -120.293628151999926, 49.438640330000048 ], [ -120.293381091999947, 49.440637383000094 ], [ -120.29318434, 49.442227662000072 ], [ -120.28769049099999, 49.4419377070001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999813296184061", "sL_AssetLoss": "452.5885", "sL_BldgLoss": "452.504", "sL_StrLoss": "452", "sL_NStrLoss": "0.504", "sL_ContLoss": "0.0845", "geom_point": "0101000020E610000099E2FDFAD9185EC02AEE702297CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.390725639999943, 49.59294102200009 ], [ -120.393029875999957, 49.593060049000044 ], [ -120.392993092000012, 49.593221186000072 ], [ -120.392022975999964, 49.595142486000093 ], [ -120.39196550599992, 49.595256294000109 ], [ -120.391774602999973, 49.595777791000053 ], [ -120.391626425999974, 49.596182607000095 ], [ -120.391342795999975, 49.59657409700003 ], [ -120.390769496999937, 49.597203211000092 ], [ -120.390374393999963, 49.597690816000132 ], [ -120.38995099199991, 49.598546110000072 ], [ -120.389237718999979, 49.599298807000082 ], [ -120.388720368999927, 49.599996114000128 ], [ -120.388039098999982, 49.600914391000082 ], [ -120.387603185, 49.601382701000055 ], [ -120.387421586999935, 49.601767690000074 ], [ -120.387235818999983, 49.602380412000073 ], [ -120.384358820999964, 49.602231668000023 ], [ -120.384797073999934, 49.598644800000066 ], [ -120.389352780999957, 49.598880300000054 ], [ -120.389753935, 49.595593907000108 ], [ -120.390397836999966, 49.595627177000125 ], [ -120.390725639999943, 49.59294102200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99954992971755", "sL_AssetLoss": "411.2691", "sL_BldgLoss": "411.084", "sL_StrLoss": "410", "sL_NStrLoss": "1.084", "sL_ContLoss": "0.1851", "geom_point": "0101000020E61000007409A8ECCB1E5EC033F499FD4BBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.481241290999904, 49.49536881600006 ], [ -120.481505367999986, 49.493164016000087 ], [ -120.478763739999977, 49.493024310000081 ], [ -120.479080138999947, 49.490383688000051 ], [ -120.478608401999907, 49.490373401000099 ], [ -120.478649966999981, 49.489564648000069 ], [ -120.479176890999966, 49.489576140000068 ], [ -120.47919362199994, 49.489436496000089 ], [ -120.480798062999952, 49.489518264000083 ], [ -120.480833615999956, 49.489713891000136 ], [ -120.48086007699996, 49.489950649000079 ], [ -120.480923805999907, 49.49052071600002 ], [ -120.480921247999945, 49.490593260000011 ], [ -120.480883696999925, 49.491663918000057 ], [ -120.481228894999902, 49.492073998000158 ], [ -120.482052013, 49.49276929900001 ], [ -120.482193105999954, 49.492988496000045 ], [ -120.482678001999929, 49.494566308000053 ], [ -120.482871087999911, 49.495114911000044 ], [ -120.48317100499996, 49.496377305000081 ], [ -120.483228898999968, 49.496899213000056 ], [ -120.4831483599999, 49.49736231400005 ], [ -120.483131202999942, 49.497460917000076 ], [ -120.483157228999943, 49.497844795000091 ], [ -120.483299809999934, 49.4982139910001 ], [ -120.483825884999973, 49.499110127000108 ], [ -120.480508022, 49.498941143000117 ], [ -120.480937821999959, 49.495353355000077 ], [ -120.481241290999904, 49.49536881600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.999602692425766", "sL_AssetLoss": "768.4223", "sL_BldgLoss": "768.117", "sL_StrLoss": "766", "sL_NStrLoss": "2.117", "sL_ContLoss": "0.3053", "geom_point": "0101000020E61000003E50D976FB115EC0299F923146D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.283152405999942, 49.691689185000087 ], [ -120.282674382999971, 49.691525394000053 ], [ -120.282395704999928, 49.691545286000064 ], [ -120.282053420999972, 49.691736106000093 ], [ -120.281971008999932, 49.691716194000058 ], [ -120.281578610999958, 49.691310288000089 ], [ -120.281498210999928, 49.690759106000073 ], [ -120.28133858299995, 49.690639504000075 ], [ -120.28095640399999, 49.690270607000066 ], [ -120.280498485999914, 49.690277801000086 ], [ -120.280314983999943, 49.690336195000064 ], [ -120.279798690999939, 49.690873114000127 ], [ -120.279679814999966, 49.69150828900014 ], [ -120.279472703999957, 49.691747508000063 ], [ -120.279402906999948, 49.692527986000108 ], [ -120.279142477999983, 49.692739420000102 ], [ -120.278894275999988, 49.692726370000109 ], [ -120.27894541199997, 49.692316492000025 ], [ -120.276823735999955, 49.692204914000037 ], [ -120.27727123799994, 49.688618943000101 ], [ -120.277836415999928, 49.688648670000049 ], [ -120.277874452999981, 49.68796802500006 ], [ -120.277459006999919, 49.687958253000055 ], [ -120.277504198999935, 49.687149659000085 ], [ -120.277088757999977, 49.687139885000128 ], [ -120.27710382399998, 49.686870354000042 ], [ -120.27668838799994, 49.6868605780001 ], [ -120.276748659999924, 49.685782453000051 ], [ -120.277164085999942, 49.685792229000121 ], [ -120.277224343999961, 49.68471410300004 ], [ -120.278470602999974, 49.684743418000075 ], [ -120.278455543999883, 49.68501294900004 ], [ -120.279286389, 49.685032485000121 ], [ -120.279196068, 49.686649676000073 ], [ -120.279611502999956, 49.686659442000071 ], [ -120.279513631999961, 49.688411917000039 ], [ -120.282499142999953, 49.688568852000095 ], [ -120.284667320999986, 49.68868277100006 ], [ -120.284645254999944, 49.688859832000055 ], [ -120.285894293999959, 49.688925438000098 ], [ -120.285801570999951, 49.689669616000053 ], [ -120.28614653299995, 49.689687733000071 ], [ -120.285699713, 49.693273734000094 ], [ -120.283582830999975, 49.693162544000124 ], [ -120.283326195999948, 49.693149061000106 ], [ -120.28339170799994, 49.693089088000129 ], [ -120.283620585999955, 49.69270749300005 ], [ -120.283657011999978, 49.692312995000052 ], [ -120.283471512999967, 49.691921297000114 ], [ -120.283152405999942, 49.691689185000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999818378120644", "sL_AssetLoss": "248.3181", "sL_BldgLoss": "248.273", "sL_StrLoss": "248", "sL_NStrLoss": "0.273", "sL_ContLoss": "0.0451", "geom_point": "0101000020E61000003C0D7B4EB80E5EC0BDF228AE0DDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.22656882099993, 49.71026478700005 ], [ -120.226661618999941, 49.709528023000097 ], [ -120.228424571999938, 49.709621517000052 ], [ -120.229257813999965, 49.710032991000098 ], [ -120.229714589, 49.710052900000029 ], [ -120.229844503999956, 49.70997459900007 ], [ -120.229919858999921, 49.709700794000128 ], [ -120.232187075999917, 49.709820957000062 ], [ -120.23213331, 49.71024824300013 ], [ -120.232427895999948, 49.710263852000061 ], [ -120.231976682999942, 49.713849529000086 ], [ -120.231487900999952, 49.713823628000057 ], [ -120.2312293499999, 49.713711761000084 ], [ -120.230795848999932, 49.71356426600002 ], [ -120.229934742999916, 49.713279465000035 ], [ -120.229592803999935, 49.713089882000084 ], [ -120.22933270899992, 49.712891090000028 ], [ -120.228911602999958, 49.712480807000112 ], [ -120.228705386999934, 49.71229614900011 ], [ -120.227824303999952, 49.711507192000084 ], [ -120.227558191999918, 49.71119078900005 ], [ -120.227500958999897, 49.711101499000051 ], [ -120.227163100999945, 49.710574206000089 ], [ -120.226953400999946, 49.710395310000088 ], [ -120.22680291099999, 49.71032051000001 ], [ -120.22656882099993, 49.71026478700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15957250", "BldgCostT": "11005000", "sL_LossRatio": "0.999535436222273", "sL_AssetLoss": "3404.0536", "sL_BldgLoss": "3402.4722", "sL_StrLoss": "3391.0322", "sL_NStrLoss": "11.44", "sL_ContLoss": "1.5814", "geom_point": "0101000020E610000033679ED8DA1D5EC0AE0F88639FBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.479225552999964, 49.471258774000034 ], [ -120.479274854999929, 49.470847087000031 ], [ -120.478248548999957, 49.47079474900012 ], [ -120.478646810999976, 49.467469457000078 ], [ -120.478205328999977, 49.46744694000008 ], [ -120.47796267499993, 49.469472875000115 ], [ -120.472464443999968, 49.469192295000042 ], [ -120.472769454999977, 49.466648235000079 ], [ -120.468835390999956, 49.466447303000031 ], [ -120.468899815999961, 49.465910278000067 ], [ -120.468363809999929, 49.465882891000042 ], [ -120.468495455999985, 49.464785615000068 ], [ -120.466116606999947, 49.464664032000037 ], [ -120.466119145999983, 49.464642880000063 ], [ -120.465403885999976, 49.46460631300009 ], [ -120.465620756999954, 49.462799568000101 ], [ -120.465627456999954, 49.462743749000076 ], [ -120.465038585999963, 49.462713640000082 ], [ -120.462086536999962, 49.462562652000017 ], [ -120.462062502999942, 49.462561423000032 ], [ -120.462062343999918, 49.462562753000029 ], [ -120.461861911999932, 49.464231465000069 ], [ -120.456473703999919, 49.463955665000064 ], [ -120.456364403999928, 49.463950067000091 ], [ -120.45655128599999, 49.462395690000093 ], [ -120.456172536999958, 49.462376292000087 ], [ -120.456169974999938, 49.462397604000074 ], [ -120.455704749999924, 49.462373776000121 ], [ -120.455688258999928, 49.462510915000074 ], [ -120.454969, 49.46247407200012 ], [ -120.454960431999922, 49.462545332000097 ], [ -120.45442365199996, 49.462517833000064 ], [ -120.454394519999937, 49.462760044000106 ], [ -120.45217700699996, 49.462646414000048 ], [ -120.452060945999946, 49.463610988000063 ], [ -120.456131663999898, 49.463819545000071 ], [ -120.456090726999946, 49.464160005000075 ], [ -120.456025315999938, 49.464703997000136 ], [ -120.456760199999977, 49.464741631000074 ], [ -120.456328804999913, 49.468329484000066 ], [ -120.4557901599999, 49.468301900000078 ], [ -120.455770689999966, 49.468463796000094 ], [ -120.45027271399999, 49.468182090000091 ], [ -120.450321737999914, 49.467774856000155 ], [ -120.44883349399997, 49.467698552000058 ], [ -120.448836838999966, 49.467670773000059 ], [ -120.448637567999967, 49.467660554000069 ], [ -120.448584968999967, 49.46809736400008 ], [ -120.443087081999977, 49.467815295000037 ], [ -120.443106315, 49.467655726000011 ], [ -120.442172161999977, 49.467607771000161 ], [ -120.44241895499999, 49.465560507000141 ], [ -120.442440426999966, 49.46538238200008 ], [ -120.443050695999929, 49.465805304000085 ], [ -120.444313287999989, 49.466201192 ], [ -120.445693716, 49.466753808000099 ], [ -120.446133209, 49.466790798000048 ], [ -120.446770701999981, 49.466723900000012 ], [ -120.447706406999941, 49.466249585000078 ], [ -120.44812349299994, 49.465926293000109 ], [ -120.448602307999963, 49.465496193000021 ], [ -120.449311104999964, 49.464584711000093 ], [ -120.451069680999922, 49.463149095000034 ], [ -120.452068393999966, 49.462541008000088 ], [ -120.453414492999968, 49.461860198000053 ], [ -120.454356189999913, 49.461521291000018 ], [ -120.45551868599992, 49.461186602000083 ], [ -120.45637691599994, 49.461159495000089 ], [ -120.458254309999916, 49.461156683000112 ], [ -120.460456581999935, 49.461259194000085 ], [ -120.462223117999955, 49.461531195000113 ], [ -120.464361618999945, 49.46209090400005 ], [ -120.465592908999952, 49.462307392000142 ], [ -120.468248601999932, 49.462474009000069 ], [ -120.469093307999913, 49.46240138600006 ], [ -120.470413014999977, 49.462223407000103 ], [ -120.4714906949999, 49.46222051300002 ], [ -120.472837620999925, 49.462600805000058 ], [ -120.475009089000011, 49.463043692000078 ], [ -120.475668408999951, 49.46312211000005 ], [ -120.47841409199999, 49.46313630500007 ], [ -120.478794113999982, 49.462982500000109 ], [ -120.478948097999961, 49.462954710000112 ], [ -120.481278600999957, 49.465261301000055 ], [ -120.481621503, 49.465227282000093 ], [ -120.481995889999951, 49.465310500000044 ], [ -120.482404768999956, 49.46536019600007 ], [ -120.48241798199993, 49.466027585000148 ], [ -120.482072323999915, 49.466030435000064 ], [ -120.480876478999974, 49.466040339000124 ], [ -120.481250991999985, 49.466670089000111 ], [ -120.480966407, 49.46666760300009 ], [ -120.480842486999904, 49.466686598000059 ], [ -120.482213844999961, 49.469029362000093 ], [ -120.48248616799999, 49.469013675 ], [ -120.482481772999947, 49.469229433000081 ], [ -120.482480496999983, 49.469292394000043 ], [ -120.483188100999911, 49.469285810000081 ], [ -120.484361028999913, 49.469274833000028 ], [ -120.484685091999921, 49.469228536000038 ], [ -120.484756292, 49.469162113000031 ], [ -120.486409603999959, 49.46931480100011 ], [ -120.486409931, 49.469481577000131 ], [ -120.48632096799993, 49.470779538000052 ], [ -120.485867770999974, 49.470756458000068 ], [ -120.485853581999962, 49.470875087000081 ], [ -120.484809860999988, 49.470821925000045 ], [ -120.484724071999935, 49.471539011000075 ], [ -120.479225552999964, 49.471258774000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999512277086094", "sL_AssetLoss": "134.5026", "sL_BldgLoss": "134.437", "sL_StrLoss": "134", "sL_NStrLoss": "0.437", "sL_ContLoss": "0.0656", "geom_point": "0101000020E6100000988A2A4FA2185EC061D5283D36BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.38349389299999, 49.454081204000019 ], [ -120.38482050099995, 49.454029902000059 ], [ -120.385286482999902, 49.45407690400009 ], [ -120.38714621099993, 49.45439879900006 ], [ -120.387711087999946, 49.454546723000057 ], [ -120.387591925999985, 49.45552582400007 ], [ -120.382095907999926, 49.455240658000015 ], [ -120.382216026999927, 49.454254652000081 ], [ -120.38349389299999, 49.454081204000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999765068260722", "sL_AssetLoss": "130.2506", "sL_BldgLoss": "130.22", "sL_StrLoss": "130", "sL_NStrLoss": "0.22", "sL_ContLoss": "0.0306", "geom_point": "0101000020E6100000AA0BFCD185165EC0FE31A5DC1AD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.350772561999989, 49.648400244000108 ], [ -120.354091876999959, 49.648572696000052 ], [ -120.353797042999972, 49.649026585000094 ], [ -120.353534364, 49.64922046200013 ], [ -120.35285782599999, 49.6495490020001 ], [ -120.350489686999964, 49.650698842000025 ], [ -120.350772561999989, 49.648400244000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999605176201687", "sL_AssetLoss": "129.6781", "sL_BldgLoss": "129.6269", "sL_StrLoss": "129.0149", "sL_NStrLoss": "0.612", "sL_ContLoss": "0.0512", "geom_point": "0101000020E61000000A7E7E8C37095EC0B30FAABBCFDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.146447830999989, 49.718753608000029 ], [ -120.146154587999902, 49.718697219000035 ], [ -120.145737044000015, 49.71868678400007 ], [ -120.145558388999973, 49.718682308000041 ], [ -120.145322669999956, 49.718632629000098 ], [ -120.144688913999985, 49.718389558000098 ], [ -120.144165078999933, 49.718188630000121 ], [ -120.143857792999881, 49.718122452000046 ], [ -120.14346981099996, 49.718099768000108 ], [ -120.14263503799999, 49.718179613000032 ], [ -120.14252772399999, 49.718189873000064 ], [ -120.142141718999952, 49.718151968000065 ], [ -120.142022621999942, 49.718110973000108 ], [ -120.14181527, 49.718039631000124 ], [ -120.14140027800002, 49.717804308000076 ], [ -120.141049255999974, 49.717488786000054 ], [ -120.141226264999887, 49.716104256000079 ], [ -120.146751962999929, 49.716401515 ], [ -120.146451321999962, 49.718755243000018 ], [ -120.146447830999989, 49.718753608000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999610145720742", "sL_AssetLoss": "580.4733", "sL_BldgLoss": "580.247", "sL_StrLoss": "579", "sL_NStrLoss": "1.247", "sL_ContLoss": "0.2263", "geom_point": "0101000020E61000009C443137271C5EC023ED770F6DC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.437564460999951, 49.528848598000053 ], [ -120.437659914999927, 49.528058557000122 ], [ -120.436284269999987, 49.527987965000129 ], [ -120.43671778099997, 49.524400503000038 ], [ -120.442222373, 49.52468287300011 ], [ -120.442127002999925, 49.525472921000102 ], [ -120.443502581999923, 49.525543440000064 ], [ -120.443069587999915, 49.529130922000078 ], [ -120.437564460999951, 49.528848598000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3342250", "BldgCostT": "2305000", "sL_LossRatio": "0.999848978184727", "sL_AssetLoss": "538.6639", "sL_BldgLoss": "538.58255", "sL_StrLoss": "538.00555", "sL_NStrLoss": "0.577", "sL_ContLoss": "0.08135", "geom_point": "0101000020E61000005CE75BF6960C5EC0351DE83E0CDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.196201043999935, 49.712085314000028 ], [ -120.195982427000018, 49.7120547170001 ], [ -120.19565238099996, 49.712049793000105 ], [ -120.195489629999898, 49.712047370000086 ], [ -120.19478975499996, 49.712159864000071 ], [ -120.194548250999986, 49.712215039000114 ], [ -120.194592313999919, 49.711867155000022 ], [ -120.191416508999978, 49.711697729000015 ], [ -120.191870866, 49.708112210000102 ], [ -120.19739593099996, 49.708406908000043 ], [ -120.197167228999916, 49.710213473000131 ], [ -120.200342952999932, 49.710382732000028 ], [ -120.200108681999907, 49.712234151000139 ], [ -120.20194712199999, 49.712332092000032 ], [ -120.201593061999944, 49.715130780000088 ], [ -120.201574004999955, 49.715281405000042 ], [ -120.200791639999963, 49.715262869000092 ], [ -120.200320357999956, 49.715268740000056 ], [ -120.200274427999915, 49.715269315000043 ], [ -120.199542109999967, 49.715278416000103 ], [ -120.199289859999965, 49.715183763000063 ], [ -120.19905279799994, 49.714990643000078 ], [ -120.198489298999959, 49.714333427000014 ], [ -120.197836078999941, 49.713341125000113 ], [ -120.197622548999959, 49.713072565000104 ], [ -120.196942822999972, 49.712432585000016 ], [ -120.196518102999917, 49.712184336000107 ], [ -120.196201043999935, 49.712085314000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.999755255400623", "sL_AssetLoss": "628.0016", "sL_BldgLoss": "627.8479", "sL_StrLoss": "627", "sL_NStrLoss": "0.8479", "sL_ContLoss": "0.1537", "geom_point": "0101000020E6100000E37ACA206D0B5EC0AF28A1CB86DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.175483024999934, 49.717631024000092 ], [ -120.175495031999972, 49.717424196000131 ], [ -120.17448873299999, 49.717370351000056 ], [ -120.174944467999978, 49.713784932000067 ], [ -120.176664454, 49.713876960000043 ], [ -120.176674158999958, 49.713800576000096 ], [ -120.17682275199995, 49.712631073000104 ], [ -120.18234826299999, 49.712926530000026 ], [ -120.182199809999943, 49.714096041000104 ], [ -120.182191819999943, 49.714158988000101 ], [ -120.18403508899992, 49.714257487000104 ], [ -120.183942698999942, 49.714985544000086 ], [ -120.183226269999977, 49.715016947000031 ], [ -120.181567736999952, 49.715482436000102 ], [ -120.181369087999968, 49.715590037000055 ], [ -120.181261211999981, 49.715727747000059 ], [ -120.181208588999979, 49.716032675000058 ], [ -120.18106357, 49.716221661000105 ], [ -120.18081069299997, 49.71639495000003 ], [ -120.179192741999941, 49.717120628000018 ], [ -120.17877389299997, 49.717242621000075 ], [ -120.17771989, 49.717421735000109 ], [ -120.17770342299994, 49.717424543000057 ], [ -120.177547525999955, 49.71747564500005 ], [ -120.177395736999969, 49.717525388000062 ], [ -120.177232536999924, 49.717618614000031 ], [ -120.177089107999933, 49.717700520000072 ], [ -120.177092945999973, 49.717670300000059 ], [ -120.175483024999934, 49.717631024000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10906417", "BldgCostT": "7521667", "sL_LossRatio": "0.999661782220747", "sL_AssetLoss": "2048.68", "sL_BldgLoss": "2047.9871", "sL_StrLoss": "2043.0201", "sL_NStrLoss": "4.967", "sL_ContLoss": "0.6929", "geom_point": "0101000020E6100000FCB5481CEA0D5EC012BACF1AD1DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.214216742999952, 49.709968003 ], [ -120.214563256999938, 49.707222635000086 ], [ -120.216153376999912, 49.707307147000087 ], [ -120.216237418999953, 49.706641073000135 ], [ -120.21657667199996, 49.706659101000149 ], [ -120.216690648999943, 49.705755681000049 ], [ -120.219939423999932, 49.705928264000114 ], [ -120.220209808999954, 49.70378375700006 ], [ -120.221379597999956, 49.703845876000038 ], [ -120.221387058999966, 49.703786684000129 ], [ -120.22198010699999, 49.703818172000105 ], [ -120.221989935999915, 49.703740199000023 ], [ -120.224764107999974, 49.703887447000128 ], [ -120.224808927999987, 49.703531663000042 ], [ -120.23033365299996, 49.703824694000041 ], [ -120.23025474399999, 49.704451666000061 ], [ -120.230677682999954, 49.704474087000079 ], [ -120.230515317999945, 49.705764207000094 ], [ -120.22763180699999, 49.70619758400008 ], [ -120.225303090999944, 49.706177605000107 ], [ -120.224982113999943, 49.706223195000099 ], [ -120.224765905999917, 49.706362807000069 ], [ -120.22465418899999, 49.706593501000107 ], [ -120.224777909999915, 49.707127597000124 ], [ -120.224710401999957, 49.707557698000073 ], [ -120.224821976999948, 49.707794093000118 ], [ -120.224983820999981, 49.707878107000049 ], [ -120.225948891999934, 49.707973603000063 ], [ -120.226120455999975, 49.708177874000079 ], [ -120.225579074999928, 49.708149154000033 ], [ -120.225305527999978, 49.710320553000024 ], [ -120.225095991, 49.710347303000084 ], [ -120.224674716999985, 49.710346632000025 ], [ -120.224657997999913, 49.710346588000043 ], [ -120.22412526199993, 49.710247540000047 ], [ -120.22408050899999, 49.710239199000057 ], [ -120.223222373999974, 49.710008698000131 ], [ -120.222479398999951, 49.709846504000076 ], [ -120.221977215999956, 49.709771208000092 ], [ -120.221782717999986, 49.709768449000073 ], [ -120.22163009599997, 49.709766301000059 ], [ -120.221466585999949, 49.709762103000116 ], [ -120.220872806, 49.709838912000045 ], [ -120.220328383999927, 49.709998597000101 ], [ -120.21975537499999, 49.710319204000079 ], [ -120.218604102999947, 49.711288609000022 ], [ -120.218162195, 49.711738005 ], [ -120.21786309, 49.711991911000069 ], [ -120.21633761399994, 49.712917085000115 ], [ -120.214416098999934, 49.714147796000113 ], [ -120.214068990999962, 49.714306418000035 ], [ -120.213641186999951, 49.714501911000049 ], [ -120.213494877999977, 49.714544376000063 ], [ -120.211153695999968, 49.715224180000092 ], [ -120.209724879999897, 49.715580471000074 ], [ -120.209018303999926, 49.71572428100005 ], [ -120.208414289999936, 49.715782371000081 ], [ -120.207821786999929, 49.715782455000074 ], [ -120.206343599999983, 49.71570379000007 ], [ -120.205472039999961, 49.715630825000083 ], [ -120.203976451999921, 49.715505594000092 ], [ -120.203913378999943, 49.715498798000134 ], [ -120.203944086999982, 49.715255984000045 ], [ -120.204123432999978, 49.713837811000047 ], [ -120.20525892399999, 49.71389826300004 ], [ -120.205286691999916, 49.713678638000026 ], [ -120.206210776999924, 49.713727825000078 ], [ -120.206242362999916, 49.713477959000095 ], [ -120.206750056999965, 49.713504979000071 ], [ -120.206788255, 49.713202771000049 ], [ -120.207121387999933, 49.713220500000084 ], [ -120.207164956999961, 49.712875779000058 ], [ -120.207516436000034, 49.712894483000078 ], [ -120.207562058999912, 49.712533487000044 ], [ -120.207682924999972, 49.712539918000076 ], [ -120.207735373999924, 49.712124890000069 ], [ -120.207813872999949, 49.712129067000113 ], [ -120.207860689999933, 49.711758591000013 ], [ -120.20801393499994, 49.711766747000055 ], [ -120.208058800999979, 49.71141169600002 ], [ -120.208406241999924, 49.71143018300009 ], [ -120.208474711999941, 49.710888304000058 ], [ -120.209060128999909, 49.710919451000088 ], [ -120.209078591999969, 49.710773317000125 ], [ -120.209936653999932, 49.710818965000101 ], [ -120.209990975, 49.710388938000044 ], [ -120.211375920999927, 49.710462599000046 ], [ -120.211393819999941, 49.71032087 ], [ -120.211956534999985, 49.710350795000096 ], [ -120.211963796999939, 49.710293283000048 ], [ -120.213118239999972, 49.710354666000043 ], [ -120.213142955, 49.710158910000082 ], [ -120.213622778999977, 49.710184419000036 ], [ -120.213643140999977, 49.710023121000035 ], [ -120.214136988999883, 49.710049374000036 ], [ -120.214147722999911, 49.709964333000137 ], [ -120.214216742999952, 49.709968003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999802032780707", "sL_AssetLoss": "105.0679", "sL_BldgLoss": "105.0471", "sL_StrLoss": "105", "sL_NStrLoss": "0.0471", "sL_ContLoss": "0.0208", "geom_point": "0101000020E61000009F76954137115EC034371934F8B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.269336534999979, 49.431640699000113 ], [ -120.269365575999956, 49.431117894000089 ], [ -120.268148492999956, 49.431053397000021 ], [ -120.26819271, 49.430697490000128 ], [ -120.268049412999957, 49.430689895000043 ], [ -120.268104930999968, 49.430243025000074 ], [ -120.267811833999986, 49.430227491000053 ], [ -120.268035917999953, 49.42842384300009 ], [ -120.268257499999947, 49.426640198000086 ], [ -120.269071194999924, 49.426683324000088 ], [ -120.26918521099999, 49.427056786000058 ], [ -120.269235492999925, 49.42788571100008 ], [ -120.270028316999941, 49.430252705000079 ], [ -120.270705544999942, 49.431188888000101 ], [ -120.270603374999965, 49.431183475000054 ], [ -120.270580958, 49.43158720100007 ], [ -120.27057636, 49.431669989000042 ], [ -120.269336534999979, 49.431640699000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999526705550356", "sL_AssetLoss": "281.009", "sL_BldgLoss": "280.876", "sL_StrLoss": "280", "sL_NStrLoss": "0.876", "sL_ContLoss": "0.133", "geom_point": "0101000020E610000022365838891A5EC063E04E5C6DC84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.412791445, 49.56809202700007 ], [ -120.412818164999962, 49.567872068000028 ], [ -120.412300542999972, 49.567845414000082 ], [ -120.412736294999931, 49.564258255000041 ], [ -120.418245498999923, 49.564541823000091 ], [ -120.418218807999963, 49.564761784000083 ], [ -120.418260402999977, 49.564763924000083 ], [ -120.418505149999973, 49.564776515000055 ], [ -120.41810709799995, 49.565041905000072 ], [ -120.418022288999907, 49.565096934000067 ], [ -120.416856578999926, 49.565853550000064 ], [ -120.4166348299999, 49.565997454000062 ], [ -120.415794691999949, 49.56654269900006 ], [ -120.415134224999974, 49.566925608000084 ], [ -120.414567657999953, 49.567317330000051 ], [ -120.414382312999948, 49.567445507000038 ], [ -120.41396650399993, 49.56792490100004 ], [ -120.413837884999978, 49.568145905000044 ], [ -120.412791445, 49.56809202700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999731460095357", "sL_AssetLoss": "232.3677", "sL_BldgLoss": "232.3053", "sL_StrLoss": "232", "sL_NStrLoss": "0.3053", "sL_ContLoss": "0.0624", "geom_point": "0101000020E6100000C13A4C0358175EC0739DCA924EBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.36673820099999, 49.461140964000052 ], [ -120.367339667999914, 49.461172266000013 ], [ -120.367035914999931, 49.463658540000083 ], [ -120.366901363, 49.464759780000101 ], [ -120.361889689999927, 49.464498849000087 ], [ -120.361404373999974, 49.46447356900012 ], [ -120.3615500499999, 49.463282448000022 ], [ -120.361590799999959, 49.462949239000082 ], [ -120.362460594999931, 49.462851503000117 ], [ -120.363998390999939, 49.462464114000028 ], [ -120.36528891599994, 49.462079492000044 ], [ -120.365688605999949, 49.461827495000108 ], [ -120.366516893999915, 49.46133331200005 ], [ -120.36673820099999, 49.461140964000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999628320494869", "sL_AssetLoss": "121.3411", "sL_BldgLoss": "121.296", "sL_StrLoss": "121", "sL_NStrLoss": "0.296", "sL_ContLoss": "0.0451", "geom_point": "0101000020E610000061F4A2978D115EC0EB5AD6589DB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.273128897, 49.435326024000041 ], [ -120.27315850799999, 49.435087495000047 ], [ -120.272488290999902, 49.435052007000053 ], [ -120.272751679999928, 49.432930487000064 ], [ -120.272784159999958, 49.432668855000081 ], [ -120.277176588999922, 49.435395591000052 ], [ -120.277489007999932, 49.435502407000101 ], [ -120.277533732999956, 49.435559157000064 ], [ -120.276924215999912, 49.435526908000064 ], [ -120.273128897, 49.435326024000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.999132237172859", "sL_AssetLoss": "1619.106", "sL_BldgLoss": "1617.701", "sL_StrLoss": "1606", "sL_NStrLoss": "11.701", "sL_ContLoss": "1.405", "geom_point": "0101000020E6100000EFF7B458C41E5EC020E7C3D492BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.480344435999925, 49.483801698000072 ], [ -120.480403142999975, 49.4833115160001 ], [ -120.478327754999953, 49.483205720000065 ], [ -120.47833053699999, 49.48318249700008 ], [ -120.477830639999979, 49.483157008000042 ], [ -120.477926264999951, 49.482358929000078 ], [ -120.47493049699996, 49.482206131000176 ], [ -120.475360575999972, 49.478618277000045 ], [ -120.478346406999947, 49.478770568000087 ], [ -120.4783667499999, 49.478600747000023 ], [ -120.479725324999961, 49.47867001400008 ], [ -120.479745199, 49.4785040780001 ], [ -120.482058222, 49.478621967 ], [ -120.482277787, 49.476787832000078 ], [ -120.482495461999974, 49.476798925000018 ], [ -120.482679853999969, 49.475258438000033 ], [ -120.48464175699992, 49.475358389000071 ], [ -120.484670935999972, 49.475788925000117 ], [ -120.484466432999909, 49.478089020000034 ], [ -120.486053726999941, 49.480539664000048 ], [ -120.486028886999961, 49.480588672000074 ], [ -120.485034743000014, 49.480538048000092 ], [ -120.484927072999966, 49.481437858000042 ], [ -120.485572659999889, 49.481470733000059 ], [ -120.485470102999955, 49.481665703000019 ], [ -120.485221609999897, 49.482101506000049 ], [ -120.485082385999988, 49.482282192000092 ], [ -120.484766085999965, 49.482554809000156 ], [ -120.484434115999989, 49.482763503000029 ], [ -120.483986917999957, 49.482997905000111 ], [ -120.482922088999942, 49.483491513000104 ], [ -120.482405182999955, 49.48381079799999 ], [ -120.482128818999939, 49.484085184000094 ], [ -120.481979482000014, 49.484233429000042 ], [ -120.481918483999962, 49.484294005000088 ], [ -120.48162960499991, 49.484580812000054 ], [ -120.48081311599999, 49.485507498000082 ], [ -120.480731900999928, 49.485688297000046 ], [ -120.48068548599997, 49.485983818000101 ], [ -120.480632569999941, 49.487411408000057 ], [ -120.480632024999963, 49.487426102000029 ], [ -120.478554598999906, 49.487320217000061 ], [ -120.478984442999931, 49.483732375000017 ], [ -120.480344435999925, 49.483801698000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12992000", "BldgCostT": "8960000", "sL_LossRatio": "0.999575803973983", "sL_AssetLoss": "2705.8245", "sL_BldgLoss": "2704.6767", "sL_StrLoss": "2697.0377", "sL_NStrLoss": "7.639", "sL_ContLoss": "1.1478", "geom_point": "0101000020E610000097D3D83D3D185EC0CB773AA121BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.373036955999922, 49.466576383000067 ], [ -120.373049608999978, 49.466472711000065 ], [ -120.37048398, 49.466339314000052 ], [ -120.370574105999978, 49.465601224000046 ], [ -120.368000446999957, 49.465467348000082 ], [ -120.368191842999977, 49.463900560000077 ], [ -120.368438672999972, 49.461879833000069 ], [ -120.369110528, 49.461914788000087 ], [ -120.369376650999953, 49.459735649000031 ], [ -120.371749267999988, 49.45985905700006 ], [ -120.372080478999962, 49.457145505000049 ], [ -120.377576660999978, 49.457431178000093 ], [ -120.377139186999955, 49.461018753000083 ], [ -120.374766495999936, 49.460895463000085 ], [ -120.37474615799999, 49.4610621530001 ], [ -120.377591303999949, 49.46120998600005 ], [ -120.377456558999924, 49.462314956000071 ], [ -120.379616670999894, 49.462427144000088 ], [ -120.379859774999957, 49.460432795000017 ], [ -120.380899214999957, 49.460486764000038 ], [ -120.38094204399998, 49.460135321000052 ], [ -120.382704842999928, 49.460226824000124 ], [ -120.382767591999965, 49.459711762000076 ], [ -120.38522109799996, 49.459839070000079 ], [ -120.385513, 49.457441819000088 ], [ -120.39100930099994, 49.457726811000065 ], [ -120.390970424000017, 49.458046413000062 ], [ -120.391969490999955, 49.458098186000036 ], [ -120.391654754999962, 49.460685901000083 ], [ -120.39153312699996, 49.461685814000063 ], [ -120.388080367999933, 49.461506849000124 ], [ -120.387827475999984, 49.463584496000102 ], [ -120.386064538999932, 49.463493075000073 ], [ -120.386001821999983, 49.464008137000079 ], [ -120.384962296999959, 49.463954217000015 ], [ -120.384919493999945, 49.464305661 ], [ -120.38051568899999, 49.464077126000028 ], [ -120.380272594999923, 49.466071464000066 ], [ -120.379666111999953, 49.466039977000037 ], [ -120.379647275999957, 49.466194479000102 ], [ -120.379639922999942, 49.466194097000134 ], [ -120.379579200999942, 49.466692180000074 ], [ -120.378561417999904, 49.466639330000092 ], [ -120.37853426599996, 49.466862004000063 ], [ -120.373036955999922, 49.466576383000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999884714394728", "sL_AssetLoss": "371.2519", "sL_BldgLoss": "371.2091", "sL_StrLoss": "371", "sL_NStrLoss": "0.2091", "sL_ContLoss": "0.0428", "geom_point": "0101000020E6100000655F8972EFFE5DC05B7CF1E250D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.978913318999957, 49.68854593000006 ], [ -119.979744035999886, 49.688524541000113 ], [ -119.979727550999939, 49.688255069000078 ], [ -119.980328885999882, 49.68823958400008 ], [ -119.981286797999957, 49.688214907000052 ], [ -119.98129336699995, 49.688164870000051 ], [ -119.986814658999933, 49.688470240000086 ], [ -119.986610054999957, 49.690030318000041 ], [ -119.986553486000034, 49.689972989000061 ], [ -119.986025806999947, 49.689735096000064 ], [ -119.985441803999976, 49.689686693000091 ], [ -119.986076691, 49.689869013000141 ], [ -119.986510685999974, 49.690172406000102 ], [ -119.986582052999907, 49.690243828000099 ], [ -119.986344498999983, 49.692054989000027 ], [ -119.985476031999966, 49.692006975000034 ], [ -119.980822779, 49.691749597000069 ], [ -119.981109052999955, 49.689568964000102 ], [ -119.979394616999969, 49.689613119000086 ], [ -119.979378130999947, 49.689343649000058 ], [ -119.978962766999956, 49.689354343000048 ], [ -119.978913318999957, 49.68854593000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "0.999836607173604", "sL_AssetLoss": "1228.3281", "sL_BldgLoss": "1228.1274", "sL_StrLoss": "1227", "sL_NStrLoss": "1.1274", "sL_ContLoss": "0.2007", "geom_point": "0101000020E6100000D8D799C65F145EC00D752F6265B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.32065466799996, 49.452816182000056 ], [ -120.320695809999947, 49.452482123000095 ], [ -120.31953045399996, 49.452420953000065 ], [ -120.319725459999958, 49.45083781400011 ], [ -120.318575324999955, 49.45077743100007 ], [ -120.318602116999926, 49.45055996300006 ], [ -120.318258528999962, 49.450541922000049 ], [ -120.318413037999946, 49.449287796000156 ], [ -120.314375684999973, 49.449075719000071 ], [ -120.314457521999927, 49.448411908000061 ], [ -120.312921480999989, 49.448331181000043 ], [ -120.313025022999938, 49.44749150400007 ], [ -120.310154944999965, 49.447340608000047 ], [ -120.310597488999989, 49.443753234000056 ], [ -120.313017064999926, 49.44388044900009 ], [ -120.314054792999954, 49.443934994000138 ], [ -120.3148591019999, 49.444338192000046 ], [ -120.315993715999966, 49.444837103000069 ], [ -120.315988218000015, 49.444881713000022 ], [ -120.316109685999933, 49.444888094000049 ], [ -120.32020032899996, 49.446686624000044 ], [ -120.32015791299996, 49.447031052000028 ], [ -120.321070008999982, 49.447078929000085 ], [ -120.322551706, 49.448008411000025 ], [ -120.322863320999886, 49.448384304000065 ], [ -120.324048187999907, 49.449409797000065 ], [ -120.325757790999944, 49.450204506000034 ], [ -120.326485728999941, 49.450375796000102 ], [ -120.326356182999973, 49.451428783000054 ], [ -120.326150015999985, 49.453104463000102 ], [ -120.32065466799996, 49.452816182000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999565696404147", "sL_AssetLoss": "419.5222", "sL_BldgLoss": "419.34", "sL_StrLoss": "418", "sL_NStrLoss": "1.34", "sL_ContLoss": "0.1822", "geom_point": "0101000020E61000001B754222CC195EC0E5A5513706BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.400320615999988, 49.459184983000036 ], [ -120.400345217999927, 49.458982397000099 ], [ -120.403142787999982, 49.459598615000125 ], [ -120.4057582, 49.459981712000058 ], [ -120.406479226, 49.460034507000067 ], [ -120.406454313, 49.46023987800001 ], [ -120.406141302, 49.462819971000016 ], [ -120.405415217999959, 49.462782445000087 ], [ -120.40540997, 49.462825688000102 ], [ -120.399912975999939, 49.462541428000101 ], [ -120.400320615999988, 49.459184983000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.999188890137393", "sL_AssetLoss": "798.2889", "sL_BldgLoss": "797.6414", "sL_StrLoss": "793.0304", "sL_NStrLoss": "4.611", "sL_ContLoss": "0.6475", "geom_point": "0101000020E61000005E79B91D541B5EC0A2F54B1F15C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.425532664999949, 49.544114398000048 ], [ -120.431039541999979, 49.544397325000098 ], [ -120.430605400999951, 49.547984660000083 ], [ -120.428852641999981, 49.547894639000035 ], [ -120.428485774999942, 49.550924701000042 ], [ -120.422978133999905, 49.550641646000017 ], [ -120.423412892999963, 49.547054356000061 ], [ -120.425165608999947, 49.547144465000024 ], [ -120.425532664999949, 49.544114398000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.99986554923139", "sL_AssetLoss": "214.2048", "sL_BldgLoss": "214.176", "sL_StrLoss": "214", "sL_NStrLoss": "0.176", "sL_ContLoss": "0.0288", "geom_point": "0101000020E6100000F1125ADEAE0F5EC08BC09AFB92B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.243174059999902, 49.403759946 ], [ -120.243179918999957, 49.403655356000115 ], [ -120.241360503999942, 49.403558431000107 ], [ -120.241387538999959, 49.40334170600007 ], [ -120.23802401099999, 49.403162439 ], [ -120.23811967599994, 49.40239597000005 ], [ -120.238152940999953, 49.402129443000064 ], [ -120.239002311999968, 49.402318287000064 ], [ -120.239584018999935, 49.402269906000079 ], [ -120.240985208999973, 49.402356688000069 ], [ -120.241977700999939, 49.402120304000086 ], [ -120.242349381999958, 49.402110391000065 ], [ -120.243758004999961, 49.402584607000051 ], [ -120.245077388999931, 49.402886509000062 ], [ -120.245408517999962, 49.402867998000069 ], [ -120.245679208999931, 49.402711396000065 ], [ -120.246029805999981, 49.402630189000021 ], [ -120.246752091999923, 49.402538992000075 ], [ -120.247556490999912, 49.40219010100008 ], [ -120.248566997999944, 49.402124592000099 ], [ -120.248953987999926, 49.402114608000026 ], [ -120.250540396999938, 49.402332505000103 ], [ -120.251840800999929, 49.402245914000133 ], [ -120.251686586999966, 49.403484439000067 ], [ -120.247262387999982, 49.403249045000059 ], [ -120.247234598999981, 49.403472043000086 ], [ -120.246898926999961, 49.40345417500005 ], [ -120.246866549999936, 49.403713970000126 ], [ -120.246849503999968, 49.403850751000093 ], [ -120.2444169799999, 49.403721240000017 ], [ -120.244413155999951, 49.403789505000098 ], [ -120.243174059999902, 49.403759946 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.999772968742251", "sL_AssetLoss": "792.4019", "sL_BldgLoss": "792.222", "sL_StrLoss": "791", "sL_NStrLoss": "1.222", "sL_ContLoss": "0.1799", "geom_point": "0101000020E6100000F899C46A7D105EC001EA3844FDB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.256000771999965, 49.409064219000101 ], [ -120.256029594999973, 49.408832600000025 ], [ -120.255907582999924, 49.408826116000071 ], [ -120.255945378999982, 49.408522393000098 ], [ -120.255797098999906, 49.408514514000018 ], [ -120.255838201999936, 49.408184218000088 ], [ -120.25552941299992, 49.408167808000023 ], [ -120.255563008999943, 49.407897838000061 ], [ -120.255255620999961, 49.407881501000055 ], [ -120.255296794999978, 49.407550660000048 ], [ -120.254631220999968, 49.407515284000027 ], [ -120.254667596999965, 49.407223033000051 ], [ -120.254156624999965, 49.407195872000067 ], [ -120.25424400599999, 49.406493864000012 ], [ -120.25377935899995, 49.406469164000036 ], [ -120.253821140999932, 49.406133517000036 ], [ -120.253229263999984, 49.406102050000094 ], [ -120.253536378, 49.403634984000036 ], [ -120.253675826999967, 49.402514690000046 ], [ -120.254934887000033, 49.402581625000074 ], [ -120.25493596299998, 49.402572983000034 ], [ -120.256583904999914, 49.402962 ], [ -120.257547604999942, 49.403255387000065 ], [ -120.260225298999927, 49.404659705000078 ], [ -120.260726998999957, 49.405058499000091 ], [ -120.261628104999986, 49.406230597000089 ], [ -120.262457002999923, 49.406673503000128 ], [ -120.262605310999945, 49.406814329000049 ], [ -120.262387911999951, 49.408563375000092 ], [ -120.261594267999911, 49.408521246000085 ], [ -120.261490516999913, 49.409355795000089 ], [ -120.25847853199997, 49.40919585400011 ], [ -120.256000771999965, 49.409064219000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999448661494744", "sL_AssetLoss": "150.7241", "sL_BldgLoss": "150.641", "sL_StrLoss": "150", "sL_NStrLoss": "0.641", "sL_ContLoss": "0.0831", "geom_point": "0101000020E6100000A30888CDF0155EC0EC91FE45EDD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.34400696499992, 49.653506401000072 ], [ -120.346400582999976, 49.653630904000131 ], [ -120.345133531999963, 49.654788984000056 ], [ -120.344186897999947, 49.655540110000075 ], [ -120.343582129999987, 49.655939982000106 ], [ -120.341883570999983, 49.657247538000064 ], [ -120.340269839999948, 49.658436379000065 ], [ -120.340023392999925, 49.658617924000112 ], [ -120.340347081999965, 49.655993023000093 ], [ -120.342289441, 49.656094117000087 ], [ -120.3424997799999, 49.654387669000094 ], [ -120.34388946199999, 49.654459977000059 ], [ -120.34400696499992, 49.653506401000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99979241427454", "sL_AssetLoss": "114.1697", "sL_BldgLoss": "114.146", "sL_StrLoss": "114", "sL_NStrLoss": "0.146", "sL_ContLoss": "0.0237", "geom_point": "0101000020E61000009AEC3C7D060F5EC0BBA163E686DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.233189906999911, 49.714962591000067 ], [ -120.232732626, 49.714474497000054 ], [ -120.2323464399999, 49.714195082000053 ], [ -120.231597637999982, 49.71387110700006 ], [ -120.235572731999952, 49.714081674000035 ], [ -120.2355407299999, 49.714336117000109 ], [ -120.236259126, 49.714374156000055 ], [ -120.236170614999963, 49.715077983000086 ], [ -120.236545861999943, 49.715097850000085 ], [ -120.236316058999989, 49.71692522600005 ], [ -120.236225682999958, 49.71688839500009 ], [ -120.235120384999931, 49.716166646000062 ], [ -120.23398848699999, 49.715580025000044 ], [ -120.233869606000027, 49.715518407000062 ], [ -120.233538814, 49.715284286000028 ], [ -120.233189906999911, 49.714962591000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999771260344317", "sL_AssetLoss": "357.6118", "sL_BldgLoss": "357.53", "sL_StrLoss": "357", "sL_NStrLoss": "0.53", "sL_ContLoss": "0.0818", "geom_point": "0101000020E6100000A56F4EFC031B5EC0FCAC6CFE63C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.423147535999988, 49.556052941000125 ], [ -120.425191709999964, 49.556158014000083 ], [ -120.424904784999924, 49.558525822000014 ], [ -120.424070397999927, 49.559041699000062 ], [ -120.423677125999959, 49.559427735000064 ], [ -120.423669412999956, 49.559435295000085 ], [ -120.423465935999971, 49.55967890600003 ], [ -120.42148384799998, 49.559577001000079 ], [ -120.419248333, 49.559462024000013 ], [ -120.419618109999973, 49.556413620000086 ], [ -120.419683464999949, 49.555874794 ], [ -120.420879102999933, 49.555936295000073 ], [ -120.423147535999988, 49.556052941000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999869757865599", "sL_AssetLoss": "112.0989", "sL_BldgLoss": "112.0843", "sL_StrLoss": "112", "sL_NStrLoss": "0.0843", "sL_ContLoss": "0.0146", "geom_point": "0101000020E61000006FFEF4D920125EC0C7BB0255CCB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.282616810999954, 49.435335695000092 ], [ -120.283850685999951, 49.435228908000077 ], [ -120.284834412999942, 49.435397 ], [ -120.285681617999956, 49.43521920400007 ], [ -120.285610471999959, 49.435793557000096 ], [ -120.284509925999913, 49.435735408000021 ], [ -120.284398666999962, 49.436633383000057 ], [ -120.280724604999989, 49.436439178000114 ], [ -120.281221115999983, 49.436120502000136 ], [ -120.281785793999944, 49.435621992000051 ], [ -120.282616810999954, 49.435335695000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.999630211217744", "sL_AssetLoss": "1141.192", "sL_BldgLoss": "1140.77", "sL_StrLoss": "1138", "sL_NStrLoss": "2.77", "sL_ContLoss": "0.422", "geom_point": "0101000020E6100000A662A57A59115EC01934BAA466D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.267675170999951, 49.704520835000054 ], [ -120.267724872999949, 49.704123339000084 ], [ -120.265684968999963, 49.704015881000039 ], [ -120.266133454999974, 49.700430016000091 ], [ -120.266768904999964, 49.700463495000058 ], [ -120.266957602, 49.698954431000089 ], [ -120.267472875999971, 49.698981576000044 ], [ -120.267536303999933, 49.698474243000078 ], [ -120.267904826999924, 49.698493656000061 ], [ -120.267957007999925, 49.698076252000085 ], [ -120.268517391999964, 49.698105769000087 ], [ -120.268571304999924, 49.697674466000088 ], [ -120.269044695999952, 49.6976993970001 ], [ -120.269100004999956, 49.697256876000026 ], [ -120.26970585399998, 49.697288782000058 ], [ -120.269781910999939, 49.696680191000077 ], [ -120.27010588, 49.696697251000046 ], [ -120.27016501899999, 49.696223999000033 ], [ -120.27047761599998, 49.696240459000066 ], [ -120.270531225999946, 49.695811405000036 ], [ -120.271004131999945, 49.69583630500005 ], [ -120.271061926999963, 49.695373717000102 ], [ -120.271546095999938, 49.695399207000065 ], [ -120.271609430999945, 49.694892229000033 ], [ -120.27192794399997, 49.694908995000034 ], [ -120.271983037999973, 49.694467936000123 ], [ -120.273130597999938, 49.694528340000041 ], [ -120.273260938999925, 49.693484663000078 ], [ -120.274010181999969, 49.693524094000047 ], [ -120.274080832999942, 49.692958282000085 ], [ -120.278286801999926, 49.693179533 ], [ -120.278142605999989, 49.693460900000019 ], [ -120.277648582, 49.693872501000065 ], [ -120.276332580999963, 49.695577202000045 ], [ -120.275029694999915, 49.696329188000085 ], [ -120.274841285999941, 49.696702392000176 ], [ -120.274156603, 49.697316200000095 ], [ -120.271828882999969, 49.698979693000098 ], [ -120.271582101999982, 49.699190503000054 ], [ -120.271134601999918, 49.699998011000083 ], [ -120.27052699599993, 49.700450897000046 ], [ -120.269555810999918, 49.700950805000062 ], [ -120.269055193999947, 49.701954895000114 ], [ -120.268616777999981, 49.702115795000076 ], [ -120.268218299999916, 49.702511709000071 ], [ -120.268202908999953, 49.702807996000111 ], [ -120.268479885999938, 49.703065699000014 ], [ -120.268911787999954, 49.703265100000131 ], [ -120.269327209999972, 49.703302187000055 ], [ -120.269378804999931, 49.703618286000037 ], [ -120.269658405999934, 49.703561389000136 ], [ -120.270005900999962, 49.703290787000093 ], [ -120.271451712999948, 49.703235199000147 ], [ -120.271836402999952, 49.703082803000044 ], [ -120.272620304999975, 49.702201195000029 ], [ -120.273146990999976, 49.70194348900003 ], [ -120.273763106999979, 49.701615906000072 ], [ -120.27493269799993, 49.701265504000119 ], [ -120.275605499999983, 49.700885312000047 ], [ -120.275756701999981, 49.700682989000065 ], [ -120.275832617999924, 49.700173576000104 ], [ -120.275962320999909, 49.700180399000054 ], [ -120.275937594999917, 49.700440197000084 ], [ -120.27581938400003, 49.700807594000075 ], [ -120.275696688999972, 49.700919129000106 ], [ -120.275571613999887, 49.701032804000086 ], [ -120.274826292999975, 49.701378888000143 ], [ -120.274143289999969, 49.701649807000116 ], [ -120.273735408999983, 49.701876505000079 ], [ -120.27365810799995, 49.701894002000095 ], [ -120.273379604999946, 49.702078086000029 ], [ -120.273153484999938, 49.702227507000039 ], [ -120.272871113999912, 49.702451799000094 ], [ -120.272806001999982, 49.702471792000026 ], [ -120.272244292999943, 49.703028805000073 ], [ -120.271969790999933, 49.703244508000054 ], [ -120.271678594999969, 49.703427697000038 ], [ -120.270137505999969, 49.704222697000063 ], [ -120.269712379999987, 49.704375387000049 ], [ -120.269424102999935, 49.704424297000031 ], [ -120.269111618999958, 49.70444399600008 ], [ -120.268943193999988, 49.704440296000072 ], [ -120.26838080499999, 49.704427991000024 ], [ -120.268059292999936, 49.704441781000121 ], [ -120.267675170999951, 49.704520835000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999416233914129", "sL_AssetLoss": "414.0357", "sL_BldgLoss": "413.794", "sL_StrLoss": "412", "sL_NStrLoss": "1.794", "sL_ContLoss": "0.2417", "geom_point": "0101000020E6100000124870C07A195EC0EB19466A6FCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.395619168999986, 49.579617699000039 ], [ -120.401130103999947, 49.579902128000086 ], [ -120.400786437999955, 49.582724369000083 ], [ -120.400216483999969, 49.583139003000035 ], [ -120.400025429999943, 49.583305970000069 ], [ -120.399864737999948, 49.583446413000054 ], [ -120.395181937999922, 49.583204709000071 ], [ -120.395619168999986, 49.579617699000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15861333", "BldgCostT": "10203333", "sL_LossRatio": "0.998206648059202", "sL_AssetLoss": "4258.506", "sL_BldgLoss": "4250.869", "sL_StrLoss": "4211.504", "sL_NStrLoss": "39.365", "sL_ContLoss": "7.637", "geom_point": "0101000020E6100000663B118A4E1F5EC073E1D5AC12BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.484670935999972, 49.475788925000117 ], [ -120.48464175699992, 49.475358389000071 ], [ -120.488178866999974, 49.47553849800002 ], [ -120.48812870899998, 49.475957979000043 ], [ -120.488730461999921, 49.475988609000119 ], [ -120.488885725999978, 49.474689982000029 ], [ -120.4918380189999, 49.474840206000074 ], [ -120.494384710999967, 49.474969728000062 ], [ -120.494206827999989, 49.47645901500006 ], [ -120.493956143999981, 49.478557676000037 ], [ -120.488499448999946, 49.478280085000065 ], [ -120.488344163999955, 49.479578704000133 ], [ -120.487481955999954, 49.479534816000125 ], [ -120.48734788099999, 49.480655824000067 ], [ -120.486028886999961, 49.480588672000074 ], [ -120.486053726999941, 49.480539664000048 ], [ -120.484466432999909, 49.478089020000034 ], [ -120.484670935999972, 49.475788925000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99911119427422", "sL_AssetLoss": "320.655", "sL_BldgLoss": "320.37", "sL_StrLoss": "318", "sL_NStrLoss": "2.37", "sL_ContLoss": "0.285", "geom_point": "0101000020E61000006A875CFC2F1F5EC09BAE06ACC5BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.485894882999958, 49.481487140000091 ], [ -120.488359551999935, 49.481612608000084 ], [ -120.488092179999924, 49.483848305000059 ], [ -120.48668721599995, 49.483814420000073 ], [ -120.486326934999965, 49.482083739000068 ], [ -120.485894882999958, 49.481487140000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.99908532134419", "sL_AssetLoss": "335.637", "sL_BldgLoss": "335.33", "sL_StrLoss": "333", "sL_NStrLoss": "2.33", "sL_ContLoss": "0.307", "geom_point": "0101000020E6100000AF58477E921E5EC00DFFE9060ABB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.47644360699995, 49.461551298000082 ], [ -120.47451109, 49.460528779000072 ], [ -120.474548186000021, 49.4605306730001 ], [ -120.476727022999981, 49.460641875000128 ], [ -120.476723541999931, 49.460670938000106 ], [ -120.477445100999944, 49.46070775500003 ], [ -120.47744112, 49.460740990000055 ], [ -120.479795626999987, 49.460861092000094 ], [ -120.479701301999981, 49.461648979000053 ], [ -120.479667003999907, 49.461935463000017 ], [ -120.479495086999947, 49.461978282000132 ], [ -120.478691677999961, 49.4620709000001 ], [ -120.478616879999947, 49.462072436 ], [ -120.476446193999948, 49.461552656000102 ], [ -120.47644360699995, 49.461551298000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73810534", "BldgCostT": "47299449", "sL_LossRatio": "0.94230805620587", "sL_AssetLoss": "16044.2176", "sL_BldgLoss": "15118.5955", "sL_StrLoss": "14624.7355", "sL_NStrLoss": "493.86", "sL_ContLoss": "925.6221", "geom_point": "0101000020E6100000F1B32650631F5EC0AE4067B198BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.492469985999918, 49.462340269000038 ], [ -120.492511455999988, 49.461528076000079 ], [ -120.49168425699996, 49.461510128000064 ], [ -120.491711795999919, 49.460970952000054 ], [ -120.49094821599999, 49.46095438000004 ], [ -120.490425809999934, 49.460366202000088 ], [ -120.490100173999934, 49.460098415000054 ], [ -120.490112527999941, 49.45985669 ], [ -120.489698941999961, 49.459847710000105 ], [ -120.489710850999984, 49.459614719000051 ], [ -120.489712721999979, 49.459578122000032 ], [ -120.489395367999933, 49.45957123000003 ], [ -120.489299138999968, 49.459569138000077 ], [ -120.489299706999986, 49.459558042000062 ], [ -120.489312919999989, 49.459299552000054 ], [ -120.487708276999939, 49.459264688000104 ], [ -120.486831442999971, 49.459245626000026 ], [ -120.486845236999926, 49.45897603800006 ], [ -120.486018084999955, 49.458958052000114 ], [ -120.4860318839999, 49.458688465000172 ], [ -120.484377588999948, 49.45865247400009 ], [ -120.484363783000035, 49.458922060000098 ], [ -120.483536631999954, 49.45890405500009 ], [ -120.483522819999962, 49.459173642000067 ], [ -120.482695664999952, 49.459155631000058 ], [ -120.482681846999952, 49.459425217000046 ], [ -120.482268267, 49.459416210000036 ], [ -120.482254448, 49.459685796000016 ], [ -120.481427285999985, 49.459667775000113 ], [ -120.481413461999949, 49.459937362000076 ], [ -120.48058629599997, 49.459919335000038 ], [ -120.480572466999917, 49.460188921000018 ], [ -120.479745295999948, 49.46017089 ], [ -120.479731462999922, 49.460440475000027 ], [ -120.478077116999955, 49.460404393000012 ], [ -120.478090960999936, 49.460134808000042 ], [ -120.477263794999956, 49.460116757000073 ], [ -120.477277642, 49.459847173000064 ], [ -120.476864061999962, 49.45983814600001 ], [ -120.477052792, 49.456164119000086 ], [ -120.477101024999953, 49.45567572900012 ], [ -120.477101479999945, 49.455670955000095 ], [ -120.477117581999948, 49.455665944000081 ], [ -120.47784083599997, 49.455271378000091 ], [ -120.478753648999913, 49.455291292000069 ], [ -120.478739811999944, 49.455560878000057 ], [ -120.48122108699998, 49.455614975000053 ], [ -120.48131587599994, 49.453766358000038 ], [ -120.491499051999966, 49.453405732000107 ], [ -120.491535043999974, 49.452365475000086 ], [ -120.49175434199995, 49.449990646000074 ], [ -120.491759074999919, 49.449939886000031 ], [ -120.49183077, 49.449163467000112 ], [ -120.492522657999956, 49.449191265000124 ], [ -120.496689323999973, 49.449129212000088 ], [ -120.496462299999934, 49.451031853000046 ], [ -120.495913290999979, 49.451291663000092 ], [ -120.495913475999913, 49.451348993000053 ], [ -120.495915662999948, 49.452011673000065 ], [ -120.491766068999965, 49.451800547000083 ], [ -120.49171124400003, 49.452874333000146 ], [ -120.492124770999979, 49.452883306000082 ], [ -120.49209724499994, 49.453422482000043 ], [ -120.49416490599999, 49.45346732700007 ], [ -120.494151152999962, 49.453736915 ], [ -120.494564688999958, 49.453745880000085 ], [ -120.494550937, 49.454015469000105 ], [ -120.494964475999922, 49.454024431000121 ], [ -120.494771643999982, 49.457805383000043 ], [ -120.49559755599995, 49.457847389000065 ], [ -120.495654108999958, 49.456738243000068 ], [ -120.495931300999956, 49.456744249000046 ], [ -120.495942283999966, 49.460067673000047 ], [ -120.496011513, 49.460057903000099 ], [ -120.496683490999914, 49.459848402000041 ], [ -120.497326367999975, 49.460247101000043 ], [ -120.498512104999961, 49.460982397000059 ], [ -120.498314016999942, 49.461148457000057 ], [ -120.502888094999918, 49.459054328 ], [ -120.502899910999972, 49.459043889000029 ], [ -120.502928864999973, 49.459017532000061 ], [ -120.503169155999913, 49.458905758000114 ], [ -120.503198108999982, 49.458879400000043 ], [ -120.503240379999923, 49.458862310000072 ], [ -120.503283550999967, 49.458827272000057 ], [ -120.50346735199993, 49.45874126800009 ], [ -120.503620362999982, 49.458717584000063 ], [ -120.50363246499991, 49.458713512000045 ], [ -120.503578704999924, 49.458977608000083 ], [ -120.503562204999952, 49.460425985000015 ], [ -120.503255603999932, 49.46157108600012 ], [ -120.502803792999941, 49.462567993000057 ], [ -120.502138586999934, 49.463435409000034 ], [ -120.501341994999933, 49.463912513000096 ], [ -120.500441385999949, 49.464766990000101 ], [ -120.500086286999945, 49.464983509000014 ], [ -120.499598308999964, 49.465053287000046 ], [ -120.498800200999966, 49.465036184000027 ], [ -120.49709689299999, 49.464604698000066 ], [ -120.495342601999965, 49.464053489000037 ], [ -120.494075279999947, 49.463476701000019 ], [ -120.492896492999932, 49.462767395000114 ], [ -120.492469985999918, 49.462340269000038 ] ], [ [ -120.502561059999948, 49.461329295000034 ], [ -120.502571222999933, 49.461244045000072 ], [ -120.502424956999903, 49.461236616000107 ], [ -120.502414792999929, 49.46132186600007 ], [ -120.502561059999948, 49.461329295000034 ] ], [ [ -120.494246359, 49.459136717000099 ], [ -120.4942785, 49.458867526000041 ], [ -120.493889825999943, 49.458859100000026 ], [ -120.493876071, 49.459128688000085 ], [ -120.494246359, 49.459136717000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999116254857572", "sL_AssetLoss": "165.206", "sL_BldgLoss": "165.06", "sL_StrLoss": "164", "sL_NStrLoss": "1.06", "sL_ContLoss": "0.146", "geom_point": "0101000020E6100000D59D8257E61F5EC06E59F8D9CCBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.497627263000012, 49.466766780000036 ], [ -120.499281846999949, 49.466802585000082 ], [ -120.499259551999927, 49.467240324000052 ], [ -120.49924065499998, 49.46761135300008 ], [ -120.497586043999931, 49.467575546000042 ], [ -120.497589725999916, 49.467503314000041 ], [ -120.497627263000012, 49.466766780000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7257917", "BldgCostT": "4741667", "sL_LossRatio": "0.994970198911584", "sL_AssetLoss": "3674.698", "sL_BldgLoss": "3656.215", "sL_StrLoss": "3583", "sL_NStrLoss": "73.215", "sL_ContLoss": "18.483", "geom_point": "0101000020E6100000A18646E26B205EC09890E6FA04BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.503275119999941, 49.463046599000073 ], [ -120.504150684999914, 49.460789208000044 ], [ -120.504182800999928, 49.459053102000098 ], [ -120.504285396999975, 49.458493366000063 ], [ -120.504322435999924, 49.458480867000084 ], [ -120.504504864999888, 49.458421817000016 ], [ -120.504518633, 49.458422110000079 ], [ -120.504560918999985, 49.458405043000056 ], [ -120.504729980999969, 49.458336712000083 ], [ -120.504946402999963, 49.458276671000128 ], [ -120.505190610999975, 49.458133583000091 ], [ -120.506095618999979, 49.458812198000082 ], [ -120.506817381999923, 49.459356902000096 ], [ -120.507542076, 49.459900799000053 ], [ -120.508134845999948, 49.460344777000074 ], [ -120.508251716999936, 49.46043229000005 ], [ -120.508932002999984, 49.460942390000049 ], [ -120.509596612999943, 49.461445398000059 ], [ -120.507851375999948, 49.462434405000074 ], [ -120.508302708999977, 49.462616083000064 ], [ -120.508854382999928, 49.462743304000128 ], [ -120.510247296999935, 49.461937702000107 ], [ -120.511086614999897, 49.462576806000058 ], [ -120.511332451999934, 49.462762429000065 ], [ -120.511440815999933, 49.462844249000028 ], [ -120.51144257199995, 49.462845576000092 ], [ -120.511041292999934, 49.463142002000055 ], [ -120.510209195999948, 49.463240305000049 ], [ -120.509067310999939, 49.463144795000105 ], [ -120.507716420999955, 49.462862899000065 ], [ -120.506532707999952, 49.462505395000065 ], [ -120.505393110999947, 49.46238149100008 ], [ -120.504958655999957, 49.462423625000056 ], [ -120.504409402999926, 49.462476888000026 ], [ -120.503275119999941, 49.463046599000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999285519427376", "sL_AssetLoss": "153.958", "sL_BldgLoss": "153.848", "sL_StrLoss": "153", "sL_NStrLoss": "0.848", "sL_ContLoss": "0.11", "geom_point": "0101000020E61000007CEA6016BD1F5EC084196C4D67BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.495311491999971, 49.471574579000084 ], [ -120.495325246, 49.471304991000117 ], [ -120.49656629699993, 49.471331874000079 ], [ -120.496552548999915, 49.471601463000127 ], [ -120.496966233999942, 49.471610420000054 ], [ -120.496924997999955, 49.472419186000138 ], [ -120.494856536999976, 49.47237437900008 ], [ -120.494897805999969, 49.471565616000106 ], [ -120.495311491999971, 49.471574579000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170287083", "BldgCostT": "112458333", "sL_LossRatio": "0.998605127291432", "sL_AssetLoss": "22867.9648", "sL_BldgLoss": "22836.0669", "sL_StrLoss": "22542.5009", "sL_NStrLoss": "293.566", "sL_ContLoss": "31.8979", "geom_point": "0101000020E61000004C5802C646205EC081FF081EBABB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.512000101999917, 49.463266485000105 ], [ -120.511460691999957, 49.463534288000076 ], [ -120.510946808999947, 49.463693192000051 ], [ -120.510360423999927, 49.463798877000094 ], [ -120.509349227000016, 49.46387208000003 ], [ -120.508624529999963, 49.463988775000111 ], [ -120.507639599999919, 49.464642688 ], [ -120.507036423999949, 49.465042336000074 ], [ -120.507205718999913, 49.465353732000082 ], [ -120.509550307999959, 49.464927496000065 ], [ -120.510224795999974, 49.46515897500008 ], [ -120.514397151999972, 49.464941176000082 ], [ -120.514320123999951, 49.464401826 ], [ -120.514151353999949, 49.463286149000062 ], [ -120.512000101999917, 49.463266485000105 ], [ -120.514856677999916, 49.463123942000017 ], [ -120.516129456999934, 49.463001385000105 ], [ -120.516457253999988, 49.462951381000053 ], [ -120.516875441999929, 49.462856332000094 ], [ -120.517286354999939, 49.462726297000067 ], [ -120.518393881999913, 49.46224689400001 ], [ -120.519311185000021, 49.461666895000043 ], [ -120.519635720999986, 49.461566104000056 ], [ -120.51981658599999, 49.461579697000097 ], [ -120.520189810999966, 49.461774862000055 ], [ -120.520500744999978, 49.461937439000103 ], [ -120.520686198999954, 49.462034400000107 ], [ -120.521108592999951, 49.462366206000084 ], [ -120.521541502999938, 49.462795095000054 ], [ -120.521978883999921, 49.463105996000067 ], [ -120.522231174999902, 49.463316591000101 ], [ -120.5224998, 49.463243281000061 ], [ -120.52304850199998, 49.463574008000073 ], [ -120.523024457999909, 49.464050693000068 ], [ -120.523009627999954, 49.464344715000038 ], [ -120.523063993999941, 49.464345880000053 ], [ -120.523836892999967, 49.464362438000137 ], [ -120.523782516000011, 49.465440816000076 ], [ -120.523477753999899, 49.465434287000051 ], [ -120.52346864799999, 49.465510954000067 ], [ -120.524645422999981, 49.465570478000068 ], [ -120.524492857999974, 49.466855191000086 ], [ -120.525779367999988, 49.466920251000047 ], [ -120.525704730999934, 49.467548872000087 ], [ -120.527817544999934, 49.467655685000075 ], [ -120.527770633000017, 49.468049460000024 ], [ -120.528052789999947, 49.469294720000093 ], [ -120.521994762999967, 49.469083248000061 ], [ -120.52193708899992, 49.469125700000099 ], [ -120.521243601999984, 49.469561708000079 ], [ -120.521200266999955, 49.469597294000067 ], [ -120.523331919999919, 49.469764721000104 ], [ -120.523843055999961, 49.470076472000095 ], [ -120.523482400999924, 49.470332590000041 ], [ -120.522995669999943, 49.470206859000044 ], [ -120.523222608999973, 49.469947296000051 ], [ -120.52100497399999, 49.469757708000067 ], [ -120.520835901999988, 49.469896592000097 ], [ -120.520820785999945, 49.469915651000129 ], [ -120.520754602999901, 49.469999005000091 ], [ -120.519354208999943, 49.469855898000056 ], [ -120.518983887999966, 49.469771304000055 ], [ -120.518358126999914, 49.469527744000068 ], [ -120.516407476999944, 49.470571357000011 ], [ -120.516273825000013, 49.470564587000077 ], [ -120.516458649999933, 49.469010692000019 ], [ -120.516676670999942, 49.467177582000076 ], [ -120.51458690699998, 49.467132669000144 ], [ -120.514573258999945, 49.467402261000068 ], [ -120.514159602999925, 49.467393367000078 ], [ -120.514145952999968, 49.467662960000084 ], [ -120.513732294999969, 49.467654063000047 ], [ -120.51370499299999, 49.468193247000045 ], [ -120.51246400499997, 49.468166549000088 ], [ -120.512450346999969, 49.468436141000076 ], [ -120.511633901, 49.468418570000033 ], [ -120.511614928999933, 49.468577949000093 ], [ -120.511609354999933, 49.468687927000104 ], [ -120.511601855999956, 49.468687765000077 ], [ -120.51155775899997, 49.469058190000077 ], [ -120.510764386999981, 49.469017969000085 ], [ -120.510754685999956, 49.469209297000099 ], [ -120.510341015999984, 49.469200389000058 ], [ -120.510327345999983, 49.469469980000028 ], [ -120.509500001999982, 49.469452159000134 ], [ -120.509486325999902, 49.469721749000016 ], [ -120.509072650999926, 49.469712836000113 ], [ -120.509058973999942, 49.469982427000055 ], [ -120.508231619999933, 49.469964597000036 ], [ -120.508217937999959, 49.470234188000106 ], [ -120.507804259999943, 49.470225270000093 ], [ -120.507790575999977, 49.470494861000091 ], [ -120.506963215000013, 49.470477021000079 ], [ -120.506949524999968, 49.470746611000088 ], [ -120.506535843999984, 49.470737690000114 ], [ -120.506522150999956, 49.471007279000098 ], [ -120.506108465999901, 49.470998355000113 ], [ -120.506081076999948, 49.471537537000124 ], [ -120.504840011999988, 49.471510755000047 ], [ -120.504826308999952, 49.471780345000091 ], [ -120.504412619999954, 49.471771416000088 ], [ -120.504398914999953, 49.472041006000012 ], [ -120.503571530999977, 49.472023140000054 ], [ -120.503557821999934, 49.47229273100011 ], [ -120.502316741999962, 49.472265923000066 ], [ -120.50233045799996, 49.471996333000099 ], [ -120.501575, 49.471980008000031 ], [ -120.501503074999945, 49.471978453000077 ], [ -120.501511347999966, 49.471815903000014 ], [ -120.501516795000029, 49.471708864000057 ], [ -120.501477790999957, 49.471708021000111 ], [ -120.50114708800001, 49.471700873000039 ], [ -120.501103106999963, 49.471699922000042 ], [ -120.501144274999945, 49.47089115300011 ], [ -120.501151437999923, 49.470891308000063 ], [ -120.501616279999922, 49.47090135500008 ], [ -120.502799001999975, 49.470926911000042 ], [ -120.502812714999905, 49.470657320000079 ], [ -120.503226393999938, 49.470666257000047 ], [ -120.503240103999957, 49.47039666700006 ], [ -120.503653782999891, 49.470405601000031 ], [ -120.503667489999955, 49.470136012000033 ], [ -120.504081165999963, 49.470144944000012 ], [ -120.504094873000014, 49.46987535300007 ], [ -120.504922219999941, 49.469893214000123 ], [ -120.50494962199997, 49.469354034000027 ], [ -120.505363291999984, 49.469362961000051 ], [ -120.505376989999959, 49.469093371000049 ], [ -120.504963320999963, 49.46908444300005 ], [ -120.504970912, 49.468935071000068 ], [ -120.504977022999967, 49.468814853000133 ], [ -120.50494805699995, 49.468814228000078 ], [ -120.504643327999986, 49.468931561000012 ], [ -120.504137698999969, 49.469032900000087 ], [ -120.50413758499991, 49.46903516500003 ], [ -120.504135987999945, 49.469066583 ], [ -120.503985817999961, 49.469063340000062 ], [ -120.50374022699999, 49.469112561000081 ], [ -120.503297570999933, 49.469266644000058 ], [ -120.503294945, 49.469318307000037 ], [ -120.503157665999964, 49.469315343000048 ], [ -120.50265082699994, 49.469491761000036 ], [ -120.50265038199997, 49.469491479000091 ], [ -120.502343871000022, 49.469297762000082 ], [ -120.502053938999921, 49.469291497000071 ], [ -120.502062661999958, 49.469120035000095 ], [ -120.501901729999972, 49.469018322000139 ], [ -120.501653988999948, 49.469012967000118 ], [ -120.501667707999928, 49.468743378000049 ], [ -120.501254043999921, 49.468734437000123 ], [ -120.501270593999948, 49.468409239000081 ], [ -120.501308923999929, 49.467656078000068 ], [ -120.501593500999959, 49.467662230000066 ], [ -120.503103014999951, 49.467694846000093 ], [ -120.503364127999973, 49.467680460000047 ], [ -120.503795716999946, 49.467614045000097 ], [ -120.503804558999931, 49.467440110000098 ], [ -120.504236650999971, 49.467449441000085 ], [ -120.504641833999955, 49.467261849000067 ], [ -120.50464556599999, 49.467188382000096 ], [ -120.504793610999954, 49.467191578000055 ], [ -120.505181127999933, 49.467012161000106 ], [ -120.505732526999978, 49.466752162000077 ], [ -120.505756767999941, 49.467212363000044 ], [ -120.505886520999951, 49.467215164000073 ], [ -120.505831742999973, 49.468293525000021 ], [ -120.506084149999964, 49.46829897100011 ], [ -120.50611653, 49.468299669000039 ], [ -120.50613548099993, 49.468140625000053 ], [ -120.506201810999968, 49.467583992000115 ], [ -120.50632771099994, 49.466527390000088 ], [ -120.506232984999926, 49.466522583000106 ], [ -120.505150248999939, 49.466467633000036 ], [ -120.505114361999972, 49.466768748000035 ], [ -120.502569518999948, 49.466639551000085 ], [ -120.50248482799995, 49.466635250000124 ], [ -120.501496948999915, 49.466585080000122 ], [ -120.499616288999931, 49.466489544000055 ], [ -120.499672306999969, 49.46601997900008 ], [ -120.496622941999988, 49.465865003000026 ], [ -120.496416564999933, 49.467593937000103 ], [ -120.496340175999975, 49.468233849000065 ], [ -120.492633176999973, 49.468045335000049 ], [ -120.492422997999967, 49.469804737000089 ], [ -120.490024361999929, 49.469682688 ], [ -120.490016298999976, 49.469840407000106 ], [ -120.48960263, 49.469831424000056 ], [ -120.489588845999947, 49.470101012000065 ], [ -120.48795146099998, 49.47006544200007 ], [ -120.487884252999962, 49.470627540000031 ], [ -120.48693415, 49.470579164000128 ], [ -120.486906622, 49.470809362000061 ], [ -120.48632096799993, 49.470779538000052 ], [ -120.486409931, 49.469481577000131 ], [ -120.486409603999959, 49.46931480100011 ], [ -120.484756292, 49.469162113000031 ], [ -120.484685091999921, 49.469228536000038 ], [ -120.484361028999913, 49.469274833000028 ], [ -120.483188100999911, 49.469285810000081 ], [ -120.482480496999983, 49.469292394000043 ], [ -120.482481772999947, 49.469229433000081 ], [ -120.48248616799999, 49.469013675 ], [ -120.482213844999961, 49.469029362000093 ], [ -120.480842486999904, 49.466686598000059 ], [ -120.480966407, 49.46666760300009 ], [ -120.481250991999985, 49.466670089000111 ], [ -120.480876478999974, 49.466040339000124 ], [ -120.482072323999915, 49.466030435000064 ], [ -120.48241798199993, 49.466027585000148 ], [ -120.482404768999956, 49.46536019600007 ], [ -120.481995889999951, 49.465310500000044 ], [ -120.481621503, 49.465227282000093 ], [ -120.481278600999957, 49.465261301000055 ], [ -120.478948097999961, 49.462954710000112 ], [ -120.479504487999989, 49.462854296000096 ], [ -120.48103282699999, 49.462151806000058 ], [ -120.481784739999952, 49.462190140000075 ], [ -120.481676406999938, 49.463095355000114 ], [ -120.481931094999979, 49.463108338000069 ], [ -120.48182181199999, 49.464021492 ], [ -120.483309208999913, 49.46409730400007 ], [ -120.483199300999956, 49.465015883000071 ], [ -120.484551226999926, 49.465084772000047 ], [ -120.484434747999941, 49.466058456000056 ], [ -120.485853303999988, 49.466130721000091 ], [ -120.485926451999902, 49.465519086 ], [ -120.486095837, 49.465527714000075 ], [ -120.486114275999981, 49.465167542000088 ], [ -120.486527905999949, 49.465176537000076 ], [ -120.48655550399998, 49.464637363000058 ], [ -120.48696912900003, 49.464646357000085 ], [ -120.486982924999921, 49.464376770000058 ], [ -120.487396546999932, 49.464385762000113 ], [ -120.487410342, 49.464116174000026 ], [ -120.48823758199994, 49.464134152000028 ], [ -120.488265160999958, 49.46359497800006 ], [ -120.489439729999944, 49.463620495000121 ], [ -120.489578866000031, 49.462456263000043 ], [ -120.491497555999942, 49.462553918000069 ], [ -120.492261292999942, 49.463320014000068 ], [ -120.493368101999977, 49.46408200700008 ], [ -120.495567188999971, 49.464814001000036 ], [ -120.49701052099999, 49.465474898000075 ], [ -120.497722390999968, 49.465588805000031 ], [ -120.498661288999983, 49.465573095000096 ], [ -120.499729578999919, 49.46547909600006 ], [ -120.50112720599999, 49.465150096000087 ], [ -120.502327981999954, 49.464302697000093 ], [ -120.502922481999946, 49.464046395000047 ], [ -120.503576908999904, 49.463629094000105 ], [ -120.504186708999939, 49.463039508000065 ], [ -120.504471613999954, 49.462865688000107 ], [ -120.504997573999972, 49.462751476000051 ], [ -120.505003017999954, 49.462750294999985 ], [ -120.505941809999968, 49.462734700000055 ], [ -120.506874102999987, 49.462871410000055 ], [ -120.507997606999965, 49.463301509000111 ], [ -120.509158389999953, 49.463550693000052 ], [ -120.510511898999965, 49.463516607000066 ], [ -120.51132361499999, 49.463291492000018 ], [ -120.511716752, 49.463052581000113 ], [ -120.511761196999942, 49.463086137000047 ], [ -120.51192731899998, 49.463211527000048 ], [ -120.512000101999917, 49.463266485000105 ] ], [ [ -120.515550622999953, 49.46445452800004 ], [ -120.515564261999955, 49.464184935000119 ], [ -120.515364154999986, 49.464180633000126 ], [ -120.51533213299993, 49.464449832000064 ], [ -120.515550622999953, 49.46445452800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6617500", "BldgCostT": "4300000", "sL_LossRatio": "0.998099290813161", "sL_AssetLoss": "2577.459", "sL_BldgLoss": "2572.56", "sL_StrLoss": "2555", "sL_NStrLoss": "17.56", "sL_ContLoss": "4.899", "geom_point": "0101000020E6100000D11BD58616205EC049023F7036BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.50309000799993, 49.476478797000013 ], [ -120.503554496999982, 49.476502376000084 ], [ -120.503563934999946, 49.478907681000088 ], [ -120.503507030999955, 49.480109661000036 ], [ -120.503178352999896, 49.480092978000037 ], [ -120.498987906999943, 49.479880193000085 ], [ -120.499411350999978, 49.476332000000113 ], [ -120.499416095999891, 49.476292232000041 ], [ -120.499494009, 49.476296189000081 ], [ -120.50309000799993, 49.476478797000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "426828479", "BldgCostT": "278284800", "sL_LossRatio": "0.832127883935455", "sL_AssetLoss": "77093.655", "sL_BldgLoss": "64151.78", "sL_StrLoss": "54877.47", "sL_NStrLoss": "9274.31", "sL_ContLoss": "12941.875", "geom_point": "0101000020E6100000C6EDB0ECB6205EC0B7080773A2BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.508932002999984, 49.460942390000049 ], [ -120.508251716999936, 49.46043229000005 ], [ -120.508134845999948, 49.460344777000074 ], [ -120.507542076, 49.459900799000053 ], [ -120.506817381999923, 49.459356902000096 ], [ -120.506095618999979, 49.458812198000082 ], [ -120.505190610999975, 49.458133583000091 ], [ -120.506421411999924, 49.45743529900011 ], [ -120.507170423999966, 49.457008601 ], [ -120.508482916999981, 49.456226905000094 ], [ -120.508976163999989, 49.455857542000039 ], [ -120.510052792999929, 49.45534899700008 ], [ -120.510048941999941, 49.455357699000075 ], [ -120.509970954999986, 49.455533972000126 ], [ -120.509945000999934, 49.455592688000088 ], [ -120.510573107999974, 49.455694007000048 ], [ -120.510974619999942, 49.455906013000103 ], [ -120.510886894999942, 49.456193606000092 ], [ -120.510764914999939, 49.456428394000106 ], [ -120.510564883999933, 49.456970505000079 ], [ -120.510136377999956, 49.45814269500007 ], [ -120.510291914999982, 49.458114489000153 ], [ -120.510505602999928, 49.458026107000045 ], [ -120.510669217, 49.457894508000095 ], [ -120.511467592000017, 49.456680602000027 ], [ -120.511667274999922, 49.456478691000079 ], [ -120.512026423999984, 49.456260392000068 ], [ -120.512734188999985, 49.455854116000047 ], [ -120.513930411, 49.455189191000102 ], [ -120.514212384999936, 49.455131296000147 ], [ -120.514486006999903, 49.454991791000033 ], [ -120.515176, 49.455410305000107 ], [ -120.51564759899999, 49.455769001000128 ], [ -120.51602460099997, 49.456063300000068 ], [ -120.516662820999954, 49.45655590500008 ], [ -120.516846053999942, 49.456683320000074 ], [ -120.517578510999925, 49.456040099000049 ], [ -120.51860510399996, 49.45545221000004 ], [ -120.519507102999938, 49.45609799100005 ], [ -120.518995691999933, 49.456411415000041 ], [ -120.518709594999947, 49.456586597000062 ], [ -120.518526007999967, 49.456698989000046 ], [ -120.518002877999933, 49.456947692000043 ], [ -120.517617514, 49.457084300000091 ], [ -120.516722056, 49.457263816000122 ], [ -120.515005493999965, 49.457607932000045 ], [ -120.514868482999972, 49.457635396000072 ], [ -120.513495518999918, 49.458403307000069 ], [ -120.511890105999953, 49.45926499500009 ], [ -120.510944993999985, 49.45981719400006 ], [ -120.51144651199999, 49.460169292000039 ], [ -120.511162794, 49.460635907000082 ], [ -120.51129287599997, 49.460640477000069 ], [ -120.512149986999987, 49.460670614000065 ], [ -120.511991301999927, 49.460935096000043 ], [ -120.511894850999937, 49.460990533000071 ], [ -120.510247296999935, 49.461937702000107 ], [ -120.508854382999928, 49.462743304000128 ], [ -120.508302708999977, 49.462616083000064 ], [ -120.507851375999948, 49.462434405000074 ], [ -120.509596612999943, 49.461445398000059 ], [ -120.508932002999984, 49.460942390000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41710228", "BldgCostT": "26669857", "sL_LossRatio": "0.945701905944619", "sL_AssetLoss": "8464.3855", "sL_BldgLoss": "8004.7855", "sL_StrLoss": "7746.5165", "sL_NStrLoss": "258.269", "sL_ContLoss": "459.6", "geom_point": "0101000020E6100000306CE6F33E225EC06FF200BBBFBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.532556366, 49.457043252000084 ], [ -120.53805351299998, 49.457320791000036 ], [ -120.537962311999934, 49.45809082600001 ], [ -120.537628501999947, 49.460909005000111 ], [ -120.532130928999962, 49.460631445000118 ], [ -120.532235846999967, 49.459746611000099 ], [ -120.532556366, 49.457043252000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210833", "BldgCostT": "4283333", "sL_LossRatio": "0.999222307139196", "sL_AssetLoss": "1636.893", "sL_BldgLoss": "1635.62", "sL_StrLoss": "1625", "sL_NStrLoss": "10.62", "sL_ContLoss": "1.273", "geom_point": "0101000020E6100000EE2186C20C215EC074F6E705CCBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.526057045999977, 49.455781413000089 ], [ -120.5261287, 49.455759960000087 ], [ -120.526086105999951, 49.455879192000111 ], [ -120.526063740999945, 49.455933618000081 ], [ -120.52204702100002, 49.457297 ], [ -120.52088550699996, 49.457613189000085 ], [ -120.51969189499998, 49.457768503000104 ], [ -120.517243810999943, 49.457851086000041 ], [ -120.51605550099994, 49.458157297000078 ], [ -120.514594103999968, 49.458692803000105 ], [ -120.513667083999906, 49.459285192000053 ], [ -120.513027102999942, 49.459927591000074 ], [ -120.512797703999922, 49.460373295000082 ], [ -120.512329781999966, 49.460893197000047 ], [ -120.512006803999924, 49.46181319900009 ], [ -120.511444312000023, 49.462844292000057 ], [ -120.51144257199995, 49.462845576000092 ], [ -120.511440815999933, 49.462844249000028 ], [ -120.511332451999934, 49.462762429000065 ], [ -120.511086614999897, 49.462576806000058 ], [ -120.510247296999935, 49.461937702000107 ], [ -120.511894850999937, 49.460990533000071 ], [ -120.511991301999927, 49.460935096000043 ], [ -120.512149986999987, 49.460670614000065 ], [ -120.512693305999946, 49.460206303000071 ], [ -120.513451483999987, 49.459411798000104 ], [ -120.51421195099999, 49.458817686000081 ], [ -120.515446947999962, 49.458286033000029 ], [ -120.51588849699999, 49.458067899000035 ], [ -120.516846091999966, 49.457816894000082 ], [ -120.517650173999982, 49.457681592 ], [ -120.518529797999975, 49.457597991000064 ], [ -120.51957090399999, 49.457573985000138 ], [ -120.520000304999968, 49.45753259900011 ], [ -120.52028492099997, 49.457492952000031 ], [ -120.520605609999947, 49.457427864000131 ], [ -120.52073107299999, 49.457403572000054 ], [ -120.52106827599999, 49.457284852000079 ], [ -120.521361375999959, 49.457219169000041 ], [ -120.521696344999953, 49.457145371000088 ], [ -120.521977958999969, 49.457034481000065 ], [ -120.522384519999918, 49.456908235000085 ], [ -120.522778682999942, 49.456754766000039 ], [ -120.523044226999957, 49.456688473000114 ], [ -120.52331069899999, 49.456604223000099 ], [ -120.523577611999897, 49.456510996000056 ], [ -120.52385693699992, 49.45644501400006 ], [ -120.524109621999955, 49.45636044800009 ], [ -120.524404991, 49.456249841000108 ], [ -120.524671918999957, 49.456156578000069 ], [ -120.524950777999919, 49.456099603000077 ], [ -120.525242990999956, 49.456051879000078 ], [ -120.52541157899999, 49.455992511000034 ], [ -120.525522772999963, 49.455976885000027 ], [ -120.525774987999966, 49.455901323000063 ], [ -120.526057045999977, 49.455781413000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999449768657256", "sL_AssetLoss": "150.6639", "sL_BldgLoss": "150.581", "sL_StrLoss": "150", "sL_NStrLoss": "0.581", "sL_ContLoss": "0.0829", "geom_point": "0101000020E6100000BCCD3C35EE215EC06544D40AF4BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.529960377999913, 49.467763974000064 ], [ -120.53039685899995, 49.467786026000113 ], [ -120.530231925999928, 49.469176270000098 ], [ -120.530003727999926, 49.469181284000079 ], [ -120.530048291999947, 49.468875905000068 ], [ -120.529960377999913, 49.467763974000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16573500", "BldgCostT": "11430000", "sL_LossRatio": "0.999347856735872", "sL_AssetLoss": "3853.6011", "sL_BldgLoss": "3851.088", "sL_StrLoss": "3832.059", "sL_NStrLoss": "19.029", "sL_ContLoss": "2.5131", "geom_point": "0101000020E6100000C8CEFCE695225EC01FF08655B8BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.539494295999944, 49.456679113000092 ], [ -120.541908753999948, 49.456800895000072 ], [ -120.541845796999937, 49.458233648000046 ], [ -120.541869649999981, 49.46071906600006 ], [ -120.538688669999914, 49.460558624000065 ], [ -120.538998462, 49.457942699000093 ], [ -120.539113596, 49.456970405000042 ], [ -120.539457748999965, 49.456987768000047 ], [ -120.539494295999944, 49.456679113000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178758918", "BldgCostT": "121576668", "sL_LossRatio": "0.977310445921951", "sL_AssetLoss": "51075.53", "sL_BldgLoss": "49916.649", "sL_StrLoss": "49084.977", "sL_NStrLoss": "831.672", "sL_ContLoss": "1158.881", "geom_point": "0101000020E61000006449DB538D215EC07266370AFBBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.524591094999934, 49.463495197000086 ], [ -120.524251877999987, 49.463021883000074 ], [ -120.524313837999941, 49.462500123000048 ], [ -120.523635630999976, 49.462465815000058 ], [ -120.523617936999969, 49.462614797000072 ], [ -120.522229201999949, 49.46191580800005 ], [ -120.521915238999924, 49.461386276000042 ], [ -120.520500744999978, 49.461937439000103 ], [ -120.520189810999966, 49.461774862000055 ], [ -120.51981658599999, 49.461579697000097 ], [ -120.519635720999986, 49.461566104000056 ], [ -120.519311185000021, 49.461666895000043 ], [ -120.518393881999913, 49.46224689400001 ], [ -120.517286354999939, 49.462726297000067 ], [ -120.516875441999929, 49.462856332000094 ], [ -120.516457253999988, 49.462951381000053 ], [ -120.516129456999934, 49.463001385000105 ], [ -120.514856677999916, 49.463123942000017 ], [ -120.512000101999917, 49.463266485000105 ], [ -120.51192731899998, 49.463211527000048 ], [ -120.511761196999942, 49.463086137000047 ], [ -120.511716752, 49.463052581000113 ], [ -120.511979681999946, 49.462892796000119 ], [ -120.513202200999942, 49.460569908000146 ], [ -120.51382699299991, 49.4596755150001 ], [ -120.51464548899996, 49.459017514000074 ], [ -120.515436888999915, 49.458665700000068 ], [ -120.516514699999902, 49.458375212000085 ], [ -120.517834580999988, 49.458178596000018 ], [ -120.519842021999963, 49.458050402000019 ], [ -120.521007899999958, 49.457922298000057 ], [ -120.522688190999972, 49.457472212 ], [ -120.52627259499998, 49.456163403000083 ], [ -120.528261694999983, 49.456124887000058 ], [ -120.528624213999976, 49.456052291000113 ], [ -120.529668594999919, 49.455570891000058 ], [ -120.53078164399993, 49.455519601000091 ], [ -120.530904189999902, 49.455525793000035 ], [ -120.532022067999947, 49.455897478000068 ], [ -120.531633756999923, 49.459172350000067 ], [ -120.528963806999982, 49.459037432000095 ], [ -120.528863611999938, 49.459881951000057 ], [ -120.529444722, 49.459894374000015 ], [ -120.529429491999949, 49.460197133000108 ], [ -120.529353887999918, 49.46170000800003 ], [ -120.529935986999959, 49.461729424000062 ], [ -120.529894125999988, 49.462082305000088 ], [ -120.530764883999936, 49.46212630200008 ], [ -120.53069263699993, 49.462735410000036 ], [ -120.530675774999935, 49.462877577000071 ], [ -120.531475608999955, 49.462917984000022 ], [ -120.531373394999946, 49.463779836000079 ], [ -120.532773420999973, 49.463850552000125 ], [ -120.53234793899999, 49.467438710000131 ], [ -120.532042596999972, 49.467423289000116 ], [ -120.529924983999948, 49.467316315000041 ], [ -120.529896497, 49.466955986000116 ], [ -120.528788507999977, 49.466212605000045 ], [ -120.528469483, 49.465692792000077 ], [ -120.527979301999935, 49.465400944000102 ], [ -120.527639511999922, 49.465198585000081 ], [ -120.527070196999944, 49.464970711000049 ], [ -120.525873613999948, 49.464090488000117 ], [ -120.524591094999934, 49.463495197000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22547500", "BldgCostT": "15550000", "sL_LossRatio": "0.999555570937871", "sL_AssetLoss": "5414.5874", "sL_BldgLoss": "5412.181", "sL_StrLoss": "5396", "sL_NStrLoss": "16.181", "sL_ContLoss": "2.4064", "geom_point": "0101000020E6100000CA2B216941225EC03A33EAEF5FBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.533523438999978, 49.462609045000093 ], [ -120.533615959999949, 49.461828590999986 ], [ -120.539113682999982, 49.462106075000108 ], [ -120.539063652999985, 49.462528524000049 ], [ -120.541317672999952, 49.462576488000074 ], [ -120.541309771999948, 49.462734278000063 ], [ -120.537877509999944, 49.462740697000058 ], [ -120.537477345999932, 49.46274042099999 ], [ -120.536277458999962, 49.462739561000035 ], [ -120.53607283599996, 49.466347393000063 ], [ -120.532974102999958, 49.466190955000044 ], [ -120.533383562999958, 49.462737429000086 ], [ -120.533399524999979, 49.462602787000101 ], [ -120.533523438999978, 49.462609045000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251512719", "BldgCostT": "173370412", "sL_LossRatio": "0.981181349471491", "sL_AssetLoss": "45589.507", "sL_BldgLoss": "44731.574", "sL_StrLoss": "40774.014", "sL_NStrLoss": "3957.56", "sL_ContLoss": "857.933", "geom_point": "0101000020E6100000C56C1CF3B2215EC00BCA5D190EBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.521063901999952, 49.455213006000058 ], [ -120.522491498999926, 49.454402708000082 ], [ -120.523562286999947, 49.453813493000034 ], [ -120.523814, 49.453672799000074 ], [ -120.52417782199997, 49.45355489500006 ], [ -120.524706281999983, 49.453446302000103 ], [ -120.52511640299997, 49.453392094000051 ], [ -120.525896109999934, 49.453380096000075 ], [ -120.52575310099995, 49.453350300000068 ], [ -120.525337502999989, 49.453008996000037 ], [ -120.525056926, 49.452810696000043 ], [ -120.525711804, 49.452370898000041 ], [ -120.525826791, 49.452271341000063 ], [ -120.526309833999932, 49.451853081000081 ], [ -120.526426685, 49.45175190700008 ], [ -120.526891903999953, 49.451011998000126 ], [ -120.527058671999939, 49.450661492000094 ], [ -120.527773583999974, 49.449158871000144 ], [ -120.528022743999927, 49.449088112000013 ], [ -120.53021612799995, 49.448442587000066 ], [ -120.532008866999931, 49.448533187000073 ], [ -120.532557817999987, 49.449704605000122 ], [ -120.533046891999959, 49.450335109000029 ], [ -120.532932327999944, 49.451301649000051 ], [ -120.534288250999978, 49.451370138000129 ], [ -120.535189293999935, 49.451991897000049 ], [ -120.535572108999986, 49.452169444000042 ], [ -120.53543785, 49.452472706000073 ], [ -120.534969295999986, 49.453059346000089 ], [ -120.534379071999965, 49.453598656000104 ], [ -120.534265350999959, 49.453674500000091 ], [ -120.533844908999953, 49.453828438000151 ], [ -120.53329107199994, 49.453893116000096 ], [ -120.53232549099998, 49.453938532000095 ], [ -120.532104230999948, 49.453960841000097 ], [ -120.531728690999927, 49.454040511000066 ], [ -120.53097243699996, 49.45421323900009 ], [ -120.530977769999978, 49.454107152000049 ], [ -120.530463320999957, 49.453978654000068 ], [ -120.530156572999914, 49.453972100000094 ], [ -120.530143017999976, 49.454241696000082 ], [ -120.529851665999914, 49.454235470000079 ], [ -120.529822922999969, 49.454477805000067 ], [ -120.529717417999962, 49.454472474000021 ], [ -120.529715910000021, 49.454502454000114 ], [ -120.528757665999933, 49.454481972000067 ], [ -120.528449826999918, 49.454630062000057 ], [ -120.528375427999904, 49.454631061 ], [ -120.528160327999956, 49.454485162 ], [ -120.528146202999949, 49.454468897000027 ], [ -120.527648149999891, 49.454458246000073 ], [ -120.527634581999948, 49.454727842000111 ], [ -120.527135625999932, 49.454717169000084 ], [ -120.527076579999971, 49.455214734000023 ], [ -120.527441669999945, 49.455233195000048 ], [ -120.527373702999967, 49.455269152000014 ], [ -120.526174659999981, 49.455631315000055 ], [ -120.5261287, 49.455759960000087 ], [ -120.526057045999977, 49.455781413000089 ], [ -120.525774987999966, 49.455901323000063 ], [ -120.525522772999963, 49.455976885000027 ], [ -120.52541157899999, 49.455992511000034 ], [ -120.525242990999956, 49.456051879000078 ], [ -120.524950777999919, 49.456099603000077 ], [ -120.524671918999957, 49.456156578000069 ], [ -120.524404991, 49.456249841000108 ], [ -120.524109621999955, 49.45636044800009 ], [ -120.52385693699992, 49.45644501400006 ], [ -120.523577611999897, 49.456510996000056 ], [ -120.52331069899999, 49.456604223000099 ], [ -120.523044226999957, 49.456688473000114 ], [ -120.522778682999942, 49.456754766000039 ], [ -120.522384519999918, 49.456908235000085 ], [ -120.521977958999969, 49.457034481000065 ], [ -120.521696344999953, 49.457145371000088 ], [ -120.521361375999959, 49.457219169000041 ], [ -120.52106827599999, 49.457284852000079 ], [ -120.52073107299999, 49.457403572000054 ], [ -120.520605609999947, 49.457427864000131 ], [ -120.52028492099997, 49.457492952000031 ], [ -120.520000304999968, 49.45753259900011 ], [ -120.51957090399999, 49.457573985000138 ], [ -120.518529797999975, 49.457597991000064 ], [ -120.517650173999982, 49.457681592 ], [ -120.516846091999966, 49.457816894000082 ], [ -120.51588849699999, 49.458067899000035 ], [ -120.515446947999962, 49.458286033000029 ], [ -120.51421195099999, 49.458817686000081 ], [ -120.513451483999987, 49.459411798000104 ], [ -120.512693305999946, 49.460206303000071 ], [ -120.512149986999987, 49.460670614000065 ], [ -120.51129287599997, 49.460640477000069 ], [ -120.511162794, 49.460635907000082 ], [ -120.51144651199999, 49.460169292000039 ], [ -120.510944993999985, 49.45981719400006 ], [ -120.511890105999953, 49.45926499500009 ], [ -120.513495518999918, 49.458403307000069 ], [ -120.514868482999972, 49.457635396000072 ], [ -120.515005493999965, 49.457607932000045 ], [ -120.516722056, 49.457263816000122 ], [ -120.517617514, 49.457084300000091 ], [ -120.518002877999933, 49.456947692000043 ], [ -120.518526007999967, 49.456698989000046 ], [ -120.518709594999947, 49.456586597000062 ], [ -120.518995691999933, 49.456411415000041 ], [ -120.519507102999938, 49.45609799100005 ], [ -120.520154823999917, 49.455743701000095 ], [ -120.521063901999952, 49.455213006000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185026251", "BldgCostT": "121475001", "sL_LossRatio": "0.952946404545384", "sL_AssetLoss": "54148.827", "sL_BldgLoss": "51600.93", "sL_StrLoss": "50295.24", "sL_NStrLoss": "1305.69", "sL_ContLoss": "2547.897", "geom_point": "0101000020E61000009CC2A47440215EC006377C7FC1B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.506629401999959, 49.455193493000102 ], [ -120.507201504999955, 49.454781887000074 ], [ -120.508085094999956, 49.453416101000123 ], [ -120.508446593999935, 49.453082798000011 ], [ -120.509306297999942, 49.452443299000059 ], [ -120.510240817999957, 49.451987604000109 ], [ -120.5111475, 49.451782490000014 ], [ -120.513649887999961, 49.45143069500012 ], [ -120.51811080099999, 49.45026710300003 ], [ -120.518507409, 49.450050695000087 ], [ -120.51925828499999, 49.449409800000069 ], [ -120.519276137999938, 49.449387202000068 ], [ -120.519325074999941, 49.449389680000088 ], [ -120.519508670999969, 49.449398979000101 ], [ -120.519505478999974, 49.449425842000068 ], [ -120.519622180999988, 49.449428346000069 ], [ -120.519640721999949, 49.449061055000094 ], [ -120.519648020999952, 49.448916495000084 ], [ -120.519669279999931, 49.448889584000057 ], [ -120.519802670999951, 49.448892448000052 ], [ -120.520062902999953, 49.44889803000008 ], [ -120.520077634999964, 49.448606173000023 ], [ -120.520090037999978, 49.448360419000032 ], [ -120.52009202499994, 49.448358883000047 ], [ -120.520363033999914, 49.448364697000102 ], [ -120.520503614999953, 49.448367712000056 ], [ -120.52050997, 49.448241799000073 ], [ -120.520517219999974, 49.448098118000118 ], [ -120.520701795999969, 49.44810207800009 ], [ -120.521377423999979, 49.448116568000081 ], [ -120.521443295999944, 49.447561973000049 ], [ -120.521475800999966, 49.447288284000102 ], [ -120.521791278999984, 49.447044197000025 ], [ -120.52280188099995, 49.446454491000033 ], [ -120.523952214999966, 49.446362000000107 ], [ -120.524159236999964, 49.44628914700008 ], [ -120.524288088999981, 49.446243802000041 ], [ -120.525041607999967, 49.445878700000144 ], [ -120.525359544999958, 49.445907716000065 ], [ -120.525593636999957, 49.445929070000062 ], [ -120.52567608399994, 49.445873934000126 ], [ -120.525635070999954, 49.446219519000074 ], [ -120.526954703999948, 49.446286271000076 ], [ -120.527124804999957, 49.444852576000052 ], [ -120.527875366999979, 49.444142690000071 ], [ -120.528962317, 49.444197653000096 ], [ -120.529025036999926, 49.44366880500008 ], [ -120.528341279999921, 49.44363422900004 ], [ -120.52912551299994, 49.442509324000071 ], [ -120.52953183899993, 49.440767788000073 ], [ -120.530894262999951, 49.440751669000129 ], [ -120.530796290999945, 49.441578083000095 ], [ -120.534733252999942, 49.441777016000103 ], [ -120.533261317999944, 49.4423140970001 ], [ -120.532073392999962, 49.44277479800008 ], [ -120.531358699999899, 49.443149206000051 ], [ -120.530896784999939, 49.443467007000045 ], [ -120.530013664999899, 49.443399039000084 ], [ -120.52997293699994, 49.443395908000056 ], [ -120.52994438399999, 49.443537988000088 ], [ -120.529875853999926, 49.444259274000082 ], [ -120.529773392999942, 49.444338797000107 ], [ -120.52938491899999, 49.444817402000062 ], [ -120.52912479099993, 49.445355599000031 ], [ -120.528796407999906, 49.446318115000082 ], [ -120.528342049999964, 49.447589256000072 ], [ -120.528338607999927, 49.44759886 ], [ -120.52804174799995, 49.447589132000068 ], [ -120.528019079999964, 49.447759726000079 ], [ -120.526955166000022, 49.447705923000072 ], [ -120.526951590999928, 49.447736061000143 ], [ -120.528015076999935, 49.447789842000084 ], [ -120.527950623999942, 49.448274890000164 ], [ -120.527859416999917, 49.448279076000063 ], [ -120.527433487999971, 49.448298563000023 ], [ -120.527679628999948, 49.448650128000047 ], [ -120.526349737999979, 49.449087294000073 ], [ -120.526878125999943, 49.449131662000084 ], [ -120.527656504999982, 49.449196973000028 ], [ -120.527773583999974, 49.449158871000144 ], [ -120.527058671999939, 49.450661492000094 ], [ -120.526891903999953, 49.451011998000126 ], [ -120.526426685, 49.45175190700008 ], [ -120.526309833999932, 49.451853081000081 ], [ -120.525826791, 49.452271341000063 ], [ -120.525711804, 49.452370898000041 ], [ -120.525056926, 49.452810696000043 ], [ -120.525337502999989, 49.453008996000037 ], [ -120.52575310099995, 49.453350300000068 ], [ -120.525896109999934, 49.453380096000075 ], [ -120.52511640299997, 49.453392094000051 ], [ -120.524706281999983, 49.453446302000103 ], [ -120.52417782199997, 49.45355489500006 ], [ -120.523814, 49.453672799000074 ], [ -120.523562286999947, 49.453813493000034 ], [ -120.522491498999926, 49.454402708000082 ], [ -120.521063901999952, 49.455213006000058 ], [ -120.520154823999917, 49.455743701000095 ], [ -120.519507102999938, 49.45609799100005 ], [ -120.51860510399996, 49.45545221000004 ], [ -120.517578510999925, 49.456040099000049 ], [ -120.516846053999942, 49.456683320000074 ], [ -120.516662820999954, 49.45655590500008 ], [ -120.51602460099997, 49.456063300000068 ], [ -120.51564759899999, 49.455769001000128 ], [ -120.515176, 49.455410305000107 ], [ -120.514486006999903, 49.454991791000033 ], [ -120.514212384999936, 49.455131296000147 ], [ -120.513930411, 49.455189191000102 ], [ -120.512734188999985, 49.455854116000047 ], [ -120.512026423999984, 49.456260392000068 ], [ -120.511667274999922, 49.456478691000079 ], [ -120.511467592000017, 49.456680602000027 ], [ -120.510669217, 49.457894508000095 ], [ -120.510505602999928, 49.458026107000045 ], [ -120.510291914999982, 49.458114489000153 ], [ -120.510136377999956, 49.45814269500007 ], [ -120.510564883999933, 49.456970505000079 ], [ -120.510764914999939, 49.456428394000106 ], [ -120.510886894999942, 49.456193606000092 ], [ -120.510974619999942, 49.455906013000103 ], [ -120.510573107999974, 49.455694007000048 ], [ -120.509945000999934, 49.455592688000088 ], [ -120.509970954999986, 49.455533972000126 ], [ -120.510048941999941, 49.455357699000075 ], [ -120.510052792999929, 49.45534899700008 ], [ -120.508976163999989, 49.455857542000039 ], [ -120.508482916999981, 49.456226905000094 ], [ -120.507170423999966, 49.457008601 ], [ -120.506421411999924, 49.45743529900011 ], [ -120.505190610999975, 49.458133583000091 ], [ -120.504946402999963, 49.458276671000128 ], [ -120.504729980999969, 49.458336712000083 ], [ -120.504560918999985, 49.458405043000056 ], [ -120.504518633, 49.458422110000079 ], [ -120.504504864999888, 49.458421817000016 ], [ -120.504322435999924, 49.458480867000084 ], [ -120.504285396999975, 49.458493366000063 ], [ -120.504373113999961, 49.458014805000047 ], [ -120.504698417999961, 49.457616106000103 ], [ -120.50565312, 49.457025003000055 ], [ -120.506146509999923, 49.456513706000059 ], [ -120.506629401999959, 49.455193493000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.9995276867806", "sL_AssetLoss": "145.2426", "sL_BldgLoss": "145.174", "sL_StrLoss": "145", "sL_NStrLoss": "0.174", "sL_ContLoss": "0.0686", "geom_point": "0101000020E610000002E8207D4D205EC0676BB73CDABE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.502952693999987, 49.489807664000061 ], [ -120.505782763999918, 49.489951252000068 ], [ -120.505354942999972, 49.493539167000058 ], [ -120.505316789999981, 49.493537232000065 ], [ -120.505035696999926, 49.492814086000081 ], [ -120.504772298999953, 49.492331490000069 ], [ -120.504417910999962, 49.491788299000135 ], [ -120.502952693999987, 49.489807664000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.998147651283745", "sL_AssetLoss": "193.808", "sL_BldgLoss": "193.449", "sL_StrLoss": "188.199", "sL_NStrLoss": "5.25", "sL_ContLoss": "0.359", "geom_point": "0101000020E610000008A95F123C225EC0FDAEBE701DBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.531465177999976, 49.454837241000099 ], [ -120.531532273999943, 49.454271372000072 ], [ -120.530970118999974, 49.454259366000066 ], [ -120.53097243699996, 49.45421323900009 ], [ -120.531728690999927, 49.454040511000066 ], [ -120.532104230999948, 49.453960841000097 ], [ -120.53232549099998, 49.453938532000095 ], [ -120.53329107199994, 49.453893116000096 ], [ -120.533844908999953, 49.453828438000151 ], [ -120.534265350999959, 49.453674500000091 ], [ -120.534379071999965, 49.453598656000104 ], [ -120.534969295999986, 49.453059346000089 ], [ -120.53543785, 49.452472706000073 ], [ -120.535572108999986, 49.452169444000042 ], [ -120.536795292999955, 49.452736711000064 ], [ -120.537210282999951, 49.453019206000128 ], [ -120.536962056000036, 49.455114837000075 ], [ -120.531465177999976, 49.454837241000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999232437437559", "sL_AssetLoss": "164.156", "sL_BldgLoss": "164.03", "sL_StrLoss": "163", "sL_NStrLoss": "1.03", "sL_ContLoss": "0.126", "geom_point": "0101000020E61000009B8FCE6D002D5EC024D4EB9A39C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.70205672099992, 49.518484540000067 ], [ -120.702207524999935, 49.517173499000144 ], [ -120.700306948999923, 49.517080597000088 ], [ -120.700545801999937, 49.515004674000132 ], [ -120.70158390499999, 49.515805770000085 ], [ -120.70283600099998, 49.516185137000072 ], [ -120.702819205999972, 49.51620289100007 ], [ -120.702714992999972, 49.516446796 ], [ -120.702756402999967, 49.516700599000046 ], [ -120.702943479999988, 49.516927093000049 ], [ -120.703807792999953, 49.517655894000015 ], [ -120.704286378999939, 49.517898496000072 ], [ -120.704669693999975, 49.517995685000102 ], [ -120.705514517, 49.518100203000074 ], [ -120.705978783999953, 49.518093999 ], [ -120.706053664999985, 49.518086278000041 ], [ -120.706442395999943, 49.518046195000103 ], [ -120.707413859999974, 49.517885236000012 ], [ -120.707576288, 49.518630783000084 ], [ -120.707562190999937, 49.518753463000095 ], [ -120.70205672099992, 49.518484540000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.9990569267254", "sL_AssetLoss": "1048.699", "sL_BldgLoss": "1047.71", "sL_StrLoss": "1039", "sL_NStrLoss": "8.71", "sL_ContLoss": "0.989", "geom_point": "0101000020E610000080C423AF962F5EC041BD53E068C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.745067198999962, 49.541863905000078 ], [ -120.745088998999975, 49.541672935000065 ], [ -120.744218313999937, 49.541630750000074 ], [ -120.74417246599991, 49.542032307000106 ], [ -120.744090643999968, 49.542748940000109 ], [ -120.743366727999955, 49.542713859000102 ], [ -120.743343421999924, 49.542917956000075 ], [ -120.742668035999941, 49.542885223000091 ], [ -120.742648899999907, 49.543052772000102 ], [ -120.741599253999965, 49.54300189200012 ], [ -120.741598053999923, 49.543012397000062 ], [ -120.74076884599999, 49.542972195000033 ], [ -120.740747227999975, 49.543161416000039 ], [ -120.735238650999975, 49.542894184000055 ], [ -120.735255359999925, 49.542748086000095 ], [ -120.734189724999908, 49.542696357000075 ], [ -120.734320930999942, 49.541549359 ], [ -120.734090194999965, 49.541538157000105 ], [ -120.734118211999913, 49.541293243000084 ], [ -120.734348888999989, 49.541316286000075 ], [ -120.735488975999942, 49.541385199000032 ], [ -120.737908793999921, 49.541476392000085 ], [ -120.738891168999928, 49.541433880000056 ], [ -120.740386179999973, 49.541317784000029 ], [ -120.740880679000014, 49.541255178000043 ], [ -120.74140418199994, 49.54112177800009 ], [ -120.742105501999973, 49.540837386000092 ], [ -120.743371129999929, 49.540340789000027 ], [ -120.743830558999917, 49.540160519000018 ], [ -120.744124327999941, 49.540098075000067 ], [ -120.744316815999966, 49.540085756000074 ], [ -120.744897943999916, 49.540113910000052 ], [ -120.745234314999934, 49.540199658000034 ], [ -120.745672718999941, 49.540354467000064 ], [ -120.745652713999945, 49.54052974100005 ], [ -120.746251192999978, 49.540558732000086 ], [ -120.750469484999925, 49.542048105000092 ], [ -120.75058123599996, 49.542082171000096 ], [ -120.750454947999955, 49.543189600000112 ], [ -120.75032099399999, 49.544364189000078 ], [ -120.744812216999975, 49.544097443000162 ], [ -120.745067198999962, 49.541863905000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.998900063299136", "sL_AssetLoss": "317.3819", "sL_BldgLoss": "317.0328", "sL_StrLoss": "313.0928", "sL_NStrLoss": "3.94", "sL_ContLoss": "0.3491", "geom_point": "0101000020E6100000A824A1E319295EC04FF7CF0D2CBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.639665385999976, 49.491602856 ], [ -120.64516728599996, 49.491874953000043 ], [ -120.644854350999964, 49.494567912000065 ], [ -120.644747781999925, 49.494739503000027 ], [ -120.644801534999942, 49.495022385000041 ], [ -120.644750281999947, 49.495463400000069 ], [ -120.643174807999969, 49.495385514000127 ], [ -120.639247955999934, 49.49519128400005 ], [ -120.639631732999987, 49.491892178000022 ], [ -120.639665385999976, 49.491602856 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999128900615766", "sL_AssetLoss": "633.682", "sL_BldgLoss": "633.13", "sL_StrLoss": "629", "sL_NStrLoss": "4.13", "sL_ContLoss": "0.552", "geom_point": "0101000020E61000006D0D7C77F12C5EC0A1A633833ABF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.698494441999955, 49.495874098000108 ], [ -120.698907272999989, 49.492285448000068 ], [ -120.700200703999954, 49.492348729000064 ], [ -120.700240534999935, 49.49200237700007 ], [ -120.705742835999928, 49.492271403000046 ], [ -120.705330535999934, 49.49586007900011 ], [ -120.704037000999946, 49.495796860000056 ], [ -120.703997194999943, 49.496143211000039 ], [ -120.700786267999931, 49.495986214 ], [ -120.701193889999914, 49.495320703000097 ], [ -120.701450486999946, 49.495134695000068 ], [ -120.701898286999921, 49.49500599400011 ], [ -120.701925744999983, 49.494991813000084 ], [ -120.702048311999945, 49.494928497000117 ], [ -120.702093121999923, 49.49483961100006 ], [ -120.702008797999923, 49.494730807000074 ], [ -120.701859191999986, 49.49468469100001 ], [ -120.701603005999971, 49.494686597000069 ], [ -120.700788592999984, 49.494851497000084 ], [ -120.700472806999954, 49.494987687000034 ], [ -120.699681197999965, 49.495483108000016 ], [ -120.699224897999926, 49.49566098500005 ], [ -120.69879698199999, 49.495785307000091 ], [ -120.698641864999928, 49.495881312000058 ], [ -120.698494441999955, 49.495874098000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998478414368542", "sL_AssetLoss": "201.106", "sL_BldgLoss": "200.8", "sL_StrLoss": "198", "sL_NStrLoss": "2.8", "sL_ContLoss": "0.306", "geom_point": "0101000020E61000007FBCFCF3D9355EC0FE7046834AC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.838327603999943, 49.541135933000092 ], [ -120.843885483999969, 49.540961139000039 ], [ -120.843797154999947, 49.541749801000059 ], [ -120.838288154999972, 49.54148779300003 ], [ -120.838327603999943, 49.541135933000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999180008176423", "sL_AssetLoss": "851.228", "sL_BldgLoss": "850.53", "sL_StrLoss": "845", "sL_NStrLoss": "5.53", "sL_ContLoss": "0.698", "geom_point": "0101000020E61000000E54DF5C70305EC04B0B8FE48FDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.754062083999955, 49.709736902000031 ], [ -120.754187585999929, 49.708639852000083 ], [ -120.753715243999977, 49.708617095000129 ], [ -120.754125673999937, 49.705029331000063 ], [ -120.759653797999974, 49.705295543000048 ], [ -120.759528435999982, 49.706392605000048 ], [ -120.76000075799999, 49.706415337000131 ], [ -120.759590773999946, 49.710003115000106 ], [ -120.754062083999955, 49.709736902000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999367081708457", "sL_AssetLoss": "293.5608", "sL_BldgLoss": "293.375", "sL_StrLoss": "292", "sL_NStrLoss": "1.375", "sL_ContLoss": "0.1858", "geom_point": "0101000020E61000002F5B3ED46E225EC061B354C571BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.53607283599996, 49.466347393000063 ], [ -120.536277458999962, 49.462739561000035 ], [ -120.537477345999932, 49.46274042099999 ], [ -120.537877509999944, 49.462740697000058 ], [ -120.541309771999948, 49.462734278000063 ], [ -120.541277178999962, 49.46338528200004 ], [ -120.539209026999941, 49.463341273000033 ], [ -120.539182007999941, 49.463880469000067 ], [ -120.539595641999966, 49.463889274000053 ], [ -120.53950108399999, 49.465776457000068 ], [ -120.539087432999963, 49.465767651000093 ], [ -120.539073920999911, 49.466037249000088 ], [ -120.538524805999913, 49.466025557000059 ], [ -120.538472341999977, 49.466468470000081 ], [ -120.53607283599996, 49.466347393000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999659036431829", "sL_AssetLoss": "390.071", "sL_BldgLoss": "389.938", "sL_StrLoss": "389", "sL_NStrLoss": "0.938", "sL_ContLoss": "0.133", "geom_point": "0101000020E6100000F67C6A481E225EC0D0A744C8AFC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.530559899999929, 49.503431637000091 ], [ -120.53606256099998, 49.503709258000065 ], [ -120.535636966999945, 49.507297221000059 ], [ -120.530133881000012, 49.50701957899999 ], [ -120.530559899999929, 49.503431637000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963598123281023", "sL_AssetLoss": "0.6181", "sL_BldgLoss": "0.5956", "sL_StrLoss": "0.0276", "sL_NStrLoss": "0.568", "sL_ContLoss": "0.0225", "geom_point": "0101000020E6100000D521BBFBB1265EC04B04475555BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.603750876999982, 49.464427304000054 ], [ -120.603764034, 49.464157694000058 ], [ -120.603350376, 49.464149118000087 ], [ -120.603376692000026, 49.463609897000026 ], [ -120.602963040999981, 49.463601321000091 ], [ -120.602984276999976, 49.463166231000059 ], [ -120.603015677999934, 49.462522879000097 ], [ -120.60467025, 49.462557176000104 ], [ -120.604657098999951, 49.462826786000036 ], [ -120.605484389999958, 49.462843926000112 ], [ -120.605471246, 49.463113537000048 ], [ -120.606298541999976, 49.463130670000041 ], [ -120.606232832999979, 49.464478725000099 ], [ -120.604846187999954, 49.464450004000064 ], [ -120.603750876999982, 49.464427304000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999275844027167", "sL_AssetLoss": "791.266", "sL_BldgLoss": "790.693", "sL_StrLoss": "787", "sL_NStrLoss": "3.693", "sL_ContLoss": "0.573", "geom_point": "0101000020E6100000183DF9ECA7285EC07B6DDB9CEFBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.632215289999962, 49.47824513300008 ], [ -120.632337825999954, 49.477192796000089 ], [ -120.63191885, 49.477172028000048 ], [ -120.632336685999945, 49.473583534000042 ], [ -120.637836395999912, 49.473856009000059 ], [ -120.637758987, 49.474521546000069 ], [ -120.638692910999964, 49.474567787000034 ], [ -120.638275558999965, 49.478156301000134 ], [ -120.637760549999882, 49.478130802000074 ], [ -120.637715554999929, 49.478517612000168 ], [ -120.632215289999962, 49.47824513300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.998613771473762", "sL_AssetLoss": "997.671", "sL_BldgLoss": "996.288", "sL_StrLoss": "983.178", "sL_NStrLoss": "13.11", "sL_ContLoss": "1.383", "geom_point": "0101000020E610000043E98F590B2C5EC063665DAB56C14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.689095815999934, 49.512862700000042 ], [ -120.689148846999942, 49.512402743000081 ], [ -120.688533426999967, 49.512372587000073 ], [ -120.688542401999911, 49.512294761000106 ], [ -120.687485395999971, 49.512242959000069 ], [ -120.6875140329999, 49.511994665000024 ], [ -120.687588092999988, 49.511352491000117 ], [ -120.686841032999965, 49.511315873000079 ], [ -120.68683426099993, 49.511459406000057 ], [ -120.686420179999942, 49.511451122000047 ], [ -120.68640954899999, 49.511676424000072 ], [ -120.686407456999973, 49.51172074700002 ], [ -120.684751130999985, 49.511687595000097 ], [ -120.684763863999976, 49.51141797200011 ], [ -120.683935706999961, 49.511401388000088 ], [ -120.683948443999952, 49.511131763000058 ], [ -120.683534365999947, 49.511123469000012 ], [ -120.683547105999978, 49.510853846000025 ], [ -120.683133032999933, 49.510845551000102 ], [ -120.683145772999964, 49.510575926000072 ], [ -120.682317631000018, 49.510559331000131 ], [ -120.682330376999957, 49.510289708000059 ], [ -120.680674102999916, 49.51025649900005 ], [ -120.680712364999962, 49.509447629000086 ], [ -120.680298303999962, 49.509439323000045 ], [ -120.680336570999955, 49.508630454000112 ], [ -120.68045470399997, 49.508632823000035 ], [ -120.681292804999913, 49.508649632000058 ], [ -120.681335513999983, 49.508676796000046 ], [ -120.68157761499999, 49.50867904200004 ], [ -120.681565985999924, 49.508924989000057 ], [ -120.681980044999975, 49.508933290000115 ], [ -120.681967296999986, 49.509202913000067 ], [ -120.682381355999965, 49.509211213000086 ], [ -120.682368610999944, 49.50948083600013 ], [ -120.683196734999925, 49.509497431000106 ], [ -120.683183995999983, 49.509767055000125 ], [ -120.683598059999923, 49.509775350000062 ], [ -120.683585320999924, 49.510044974000017 ], [ -120.684827522999925, 49.510069851000011 ], [ -120.684802059999967, 49.510609099000085 ], [ -120.685504238999968, 49.510623156000129 ], [ -120.685742184999953, 49.508560588000066 ], [ -120.685931295, 49.508507304000027 ], [ -120.687770993999962, 49.508175487000074 ], [ -120.68996031099999, 49.507409293000059 ], [ -120.691097098999961, 49.507350900000091 ], [ -120.691419734999968, 49.507365374000038 ], [ -120.691368312999984, 49.507506521 ], [ -120.691303008999967, 49.507685804000111 ], [ -120.69102059, 49.508455009000038 ], [ -120.690739605999937, 49.509224387000089 ], [ -120.690458517999943, 49.509982001000026 ], [ -120.690180006999967, 49.510741487000082 ], [ -120.692561794999946, 49.511088286000067 ], [ -120.692351131999942, 49.511613302000072 ], [ -120.692347097999928, 49.511623370000052 ], [ -120.695760327999892, 49.512653552000117 ], [ -120.695665994999956, 49.512648936000083 ], [ -120.69564376699995, 49.51284196000006 ], [ -120.694639637999956, 49.512792815000033 ], [ -120.694600539999939, 49.513132283000019 ], [ -120.689095815999934, 49.512862700000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999294455343646", "sL_AssetLoss": "497.488", "sL_BldgLoss": "497.137", "sL_StrLoss": "495", "sL_NStrLoss": "2.137", "sL_ContLoss": "0.351", "geom_point": "0101000020E6100000D09D1EE363305EC0526FFC3FBDDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.753536285999942, 49.730410987000027 ], [ -120.759067460999944, 49.730677218000032 ], [ -120.759032599999927, 49.730982094000076 ], [ -120.758657187999944, 49.734264871000072 ], [ -120.758271548999943, 49.734246318 ], [ -120.753125580999949, 49.733998619000062 ], [ -120.753386751999969, 49.731717271000036 ], [ -120.753536285999942, 49.730410987000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "0.999018666043679", "sL_AssetLoss": "623.2333", "sL_BldgLoss": "622.6217", "sL_StrLoss": "617.0977", "sL_NStrLoss": "5.524", "sL_ContLoss": "0.6116", "geom_point": "0101000020E6100000B511D3AE97215EC073E11F3A2DBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.519559286999964, 49.47143707500009 ], [ -120.519618475999934, 49.470939176000108 ], [ -120.519594819999924, 49.470937978000016 ], [ -120.519619072999944, 49.470733968000026 ], [ -120.516407476999944, 49.470571357000011 ], [ -120.518358126999914, 49.469527744000068 ], [ -120.518983887999966, 49.469771304000055 ], [ -120.519354208999943, 49.469855898000056 ], [ -120.520754602999901, 49.469999005000091 ], [ -120.520820785999945, 49.469915651000129 ], [ -120.520835901999988, 49.469896592000097 ], [ -120.52100497399999, 49.469757708000067 ], [ -120.523222608999973, 49.469947296000051 ], [ -120.522995669999943, 49.470206859000044 ], [ -120.523482400999924, 49.470332590000041 ], [ -120.523843055999961, 49.470076472000095 ], [ -120.523331919999919, 49.469764721000104 ], [ -120.521200266999955, 49.469597294000067 ], [ -120.521243601999984, 49.469561708000079 ], [ -120.52193708899992, 49.469125700000099 ], [ -120.521994762999967, 49.469083248000061 ], [ -120.528052789999947, 49.469294720000093 ], [ -120.527770633000017, 49.468049460000024 ], [ -120.527817544999934, 49.467655685000075 ], [ -120.529960377999913, 49.467763974000064 ], [ -120.530048291999947, 49.468875905000068 ], [ -120.530003727999926, 49.469181284000079 ], [ -120.530231925999928, 49.469176270000098 ], [ -120.52997115699999, 49.471374154000095 ], [ -120.525127652999942, 49.471129346000076 ], [ -120.525058069999915, 49.4717152670001 ], [ -120.52234133099995, 49.471577859000092 ], [ -120.519559286999964, 49.47143707500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.999386559604717", "sL_AssetLoss": "1074.269", "sL_BldgLoss": "1073.61", "sL_StrLoss": "1069", "sL_NStrLoss": "4.61", "sL_ContLoss": "0.659", "geom_point": "0101000020E6100000040D0DF6AC2B5EC0E52EBAA39CC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.685049414999966, 49.507930550000069 ], [ -120.685268618999956, 49.50603049900009 ], [ -120.683758443999935, 49.506000258 ], [ -120.683728106999951, 49.506263157000092 ], [ -120.680641844999982, 49.506111714000077 ], [ -120.680526018999913, 49.507114829000052 ], [ -120.67958813199999, 49.507068790000027 ], [ -120.679030313999959, 49.506605994000026 ], [ -120.676886700999901, 49.505473792000096 ], [ -120.675560096999945, 49.504053793000054 ], [ -120.675365568999922, 49.503872796000046 ], [ -120.675436848999965, 49.503256028000123 ], [ -120.676444427999925, 49.50330553100008 ], [ -120.676464339999939, 49.502885244000069 ], [ -120.676878344999949, 49.502893563000029 ], [ -120.676891116999926, 49.502623939000067 ], [ -120.677305119999914, 49.50263225700008 ], [ -120.677317889999955, 49.502362634000058 ], [ -120.678973891999959, 49.502395886000095 ], [ -120.678972708999964, 49.502420899000043 ], [ -120.679098774999929, 49.502427090000026 ], [ -120.67914246199993, 49.502048811000087 ], [ -120.684645838000023, 49.502318903000081 ], [ -120.68449963099999, 49.503586189000082 ], [ -120.684719011999931, 49.503590582000079 ], [ -120.684693552999946, 49.504129831000114 ], [ -120.685107569999943, 49.504138120000022 ], [ -120.68509484400002, 49.504407744000055 ], [ -120.690891139999906, 49.504523640000059 ], [ -120.690903835999947, 49.504254014000011 ], [ -120.692345800999959, 49.504282800000098 ], [ -120.692032291999979, 49.504514188000016 ], [ -120.691731378999989, 49.504664500000082 ], [ -120.691345932999937, 49.504788429000094 ], [ -120.69101290199994, 49.50489550300005 ], [ -120.690478517999978, 49.504993800000058 ], [ -120.690033144, 49.505032060000062 ], [ -120.689983776999924, 49.505036293000039 ], [ -120.689076902999943, 49.50505273300007 ], [ -120.688692894, 49.505059705000136 ], [ -120.68529781, 49.504898583000134 ], [ -120.684518978999918, 49.504836997000076 ], [ -120.684298817999903, 49.504778407000039 ], [ -120.684221203999968, 49.504719510000037 ], [ -120.684091200999958, 49.504323393000035 ], [ -120.683893885999964, 49.504018697000099 ], [ -120.683620603999913, 49.503760788000072 ], [ -120.683404093999968, 49.503682491000127 ], [ -120.682924388999965, 49.503762692000123 ], [ -120.68213341399999, 49.504442106000056 ], [ -120.681319992999988, 49.504955204000069 ], [ -120.681226003999925, 49.505050695000094 ], [ -120.681196503999985, 49.50522158600004 ], [ -120.684137610000036, 49.505383993000102 ], [ -120.685863779999949, 49.505449705000089 ], [ -120.686475009999953, 49.505525692000091 ], [ -120.687549899999951, 49.505731689000065 ], [ -120.689117133999943, 49.506181207000111 ], [ -120.690884212999904, 49.506636703000098 ], [ -120.691435607999978, 49.506715208000074 ], [ -120.691622710999951, 49.506808208000095 ], [ -120.691560204, 49.506979763000125 ], [ -120.691540561999943, 49.507033637000056 ], [ -120.691238200999976, 49.506984911000131 ], [ -120.690355990999976, 49.506967792000097 ], [ -120.685961489999926, 49.507860793000113 ], [ -120.685049414999966, 49.507930550000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.999532061072395", "sL_AssetLoss": "785.5726", "sL_BldgLoss": "785.205", "sL_StrLoss": "783", "sL_NStrLoss": "2.205", "sL_ContLoss": "0.3676", "geom_point": "0101000020E6100000F7F58DF94A275EC0D31D61A459D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.613534258999977, 49.645873941000026 ], [ -120.613562085999931, 49.64563672100013 ], [ -120.61269366599997, 49.645593691000037 ], [ -120.612680841999961, 49.645702998000047 ], [ -120.612474198999962, 49.645662215000073 ], [ -120.612013613999949, 49.645530189000041 ], [ -120.610721602999945, 49.645066600000128 ], [ -120.610158682999966, 49.644788806000044 ], [ -120.610000986999964, 49.644678095000067 ], [ -120.609812446999911, 49.644483247000025 ], [ -120.609629601999984, 49.64429430400002 ], [ -120.609087663999958, 49.643412583000092 ], [ -120.609027710999968, 49.643315036000111 ], [ -120.609011532999915, 49.643288733000084 ], [ -120.60888957899999, 49.64309030400009 ], [ -120.608566992999968, 49.642788402000065 ], [ -120.608236509999983, 49.642600597000055 ], [ -120.608029016999964, 49.642523503000049 ], [ -120.607567605999989, 49.642410397000013 ], [ -120.607199942999983, 49.642343043000061 ], [ -120.607338079999948, 49.641166717000019 ], [ -120.61285766899999, 49.641440393000096 ], [ -120.612831554999929, 49.641663010000073 ], [ -120.613492763999915, 49.641695776000105 ], [ -120.613487801999909, 49.641738070000073 ], [ -120.618979085999968, 49.642010027000048 ], [ -120.61888599699995, 49.642804450000014 ], [ -120.61944292199999, 49.642832016000042 ], [ -120.619022542999943, 49.646419582000114 ], [ -120.618109496, 49.646374388000083 ], [ -120.617937378999926, 49.646185697000099 ], [ -120.617495204999898, 49.645897995000027 ], [ -120.61687740799999, 49.645803985 ], [ -120.616308981999936, 49.645531897000104 ], [ -120.615949291999968, 49.64521008800012 ], [ -120.615257880999962, 49.644898191000095 ], [ -120.614489693999971, 49.644190297000065 ], [ -120.61426158799999, 49.644023698000154 ], [ -120.613764896999953, 49.644012303000132 ], [ -120.612847822999981, 49.644354101000069 ], [ -120.61213979599998, 49.64466319400001 ], [ -120.611800198999944, 49.644808399000055 ], [ -120.611653306999983, 49.644940893000062 ], [ -120.611645609999982, 49.645111808000053 ], [ -120.611767522999941, 49.645185905000119 ], [ -120.612583595999979, 49.645473610000067 ], [ -120.613560098999983, 49.645610290000022 ], [ -120.61407859099991, 49.645791213000045 ], [ -120.614698423999954, 49.646205476000056 ], [ -120.61425861, 49.646183690000065 ], [ -120.614229611999946, 49.646163205000043 ], [ -120.613763227, 49.645939006 ], [ -120.613534258999977, 49.645873941000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999337438615636", "sL_AssetLoss": "153.948", "sL_BldgLoss": "153.846", "sL_StrLoss": "153", "sL_NStrLoss": "0.846", "sL_ContLoss": "0.102", "geom_point": "0101000020E6100000F308A84FB6215EC095517EB597BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.5268735719999, 49.466959130000092 ], [ -120.526951927999988, 49.466299042000074 ], [ -120.525758079999918, 49.466238681000078 ], [ -120.525572733999965, 49.466052240000046 ], [ -120.525641034, 49.465476986000027 ], [ -120.525037669999904, 49.465446473000078 ], [ -120.524865749999947, 49.465229469000072 ], [ -120.524883064000022, 49.465083658000033 ], [ -120.524744685, 49.465076660000051 ], [ -120.524103913999937, 49.464267834000083 ], [ -120.524251877999987, 49.463021883000074 ], [ -120.524591094999934, 49.463495197000086 ], [ -120.525873613999948, 49.464090488000117 ], [ -120.527070196999944, 49.464970711000049 ], [ -120.527639511999922, 49.465198585000081 ], [ -120.527979301999935, 49.465400944000102 ], [ -120.528469483, 49.465692792000077 ], [ -120.528788507999977, 49.466212605000045 ], [ -120.529896497, 49.466955986000116 ], [ -120.529924983999948, 49.467316315000041 ], [ -120.527870342999989, 49.467212483000012 ], [ -120.527875348999927, 49.467170466000027 ], [ -120.5268735719999, 49.466959130000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999727809923523", "sL_AssetLoss": "125.2801", "sL_BldgLoss": "125.246", "sL_StrLoss": "125", "sL_NStrLoss": "0.246", "sL_ContLoss": "0.0341", "geom_point": "0101000020E6100000E9F1187183245EC0CC018AAAC2CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.571234178999987, 49.601890796000049 ], [ -120.570806282999939, 49.601579798000067 ], [ -120.570723387999976, 49.601509600000057 ], [ -120.568922415999936, 49.599984481000021 ], [ -120.567948507999986, 49.599159705000083 ], [ -120.567365700999972, 49.598562618000074 ], [ -120.572672867999927, 49.598827987000043 ], [ -120.57242727699996, 49.600907938000077 ], [ -120.572088612999949, 49.600667896000068 ], [ -120.570382303999949, 49.600182290000092 ], [ -120.570039215999955, 49.600111105000053 ], [ -120.569815714999947, 49.60014239000003 ], [ -120.569708103999957, 49.600393104000013 ], [ -120.569873600999969, 49.60067499000008 ], [ -120.570086115999956, 49.600858807000051 ], [ -120.57065319899999, 49.601123702000052 ], [ -120.570941623999957, 49.601452706000067 ], [ -120.571111214999945, 49.601663492000107 ], [ -120.571341005999969, 49.60177600300009 ], [ -120.571616611999971, 49.601781695000071 ], [ -120.572221199999959, 49.601623613000058 ], [ -120.572151421999976, 49.602188999000127 ], [ -120.572260743999919, 49.602318236 ], [ -120.572249245999942, 49.602415598000064 ], [ -120.572190141999954, 49.602412644000019 ], [ -120.571704473999944, 49.602170499000124 ], [ -120.571234178999987, 49.601890796000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.998230201885115", "sL_AssetLoss": "624.365", "sL_BldgLoss": "623.26", "sL_StrLoss": "614", "sL_NStrLoss": "9.26", "sL_ContLoss": "1.105", "geom_point": "0101000020E6100000A9E9E53DEF315EC0B3EC496073C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.777357997999943, 49.543968229000043 ], [ -120.777698809999933, 49.540964103000071 ], [ -120.779001699999952, 49.540849789000028 ], [ -120.779678296999961, 49.540866099 ], [ -120.780227990999947, 49.540939493000067 ], [ -120.782088775999981, 49.541356393000065 ], [ -120.782258474999978, 49.541372934000016 ], [ -120.782399675999912, 49.541386705000015 ], [ -120.783190401, 49.541379201000048 ], [ -120.782866945999942, 49.544233326 ], [ -120.777357997999943, 49.543968229000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999631672474672", "sL_AssetLoss": "541.6375", "sL_BldgLoss": "541.438", "sL_StrLoss": "540", "sL_NStrLoss": "1.438", "sL_ContLoss": "0.1995", "geom_point": "0101000020E6100000B03500C0D6215EC04242521316C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.526379565999946, 49.545378957000075 ], [ -120.531887206999983, 49.545656774000108 ], [ -120.53146090099996, 49.549244500000114 ], [ -120.529799498999978, 49.549160726000068 ], [ -120.529624926999958, 49.550629295000064 ], [ -120.529366216999932, 49.550511302000096 ], [ -120.529108563999969, 49.550371232000025 ], [ -120.52870779099996, 49.55015330100008 ], [ -120.528149096999968, 49.549760591000052 ], [ -120.527825744, 49.549570509000098 ], [ -120.527776192999966, 49.549541409000078 ], [ -120.526596703999957, 49.549046094000062 ], [ -120.526251513999966, 49.548861798000097 ], [ -120.525965096, 49.548673188000059 ], [ -120.525732194999961, 49.548476398000076 ], [ -120.525575621999934, 49.548304885000071 ], [ -120.525542187999974, 49.548268310000019 ], [ -120.525408097999929, 49.548056690000067 ], [ -120.525136686999971, 49.547426802000075 ], [ -120.525082450999989, 49.547119875000078 ], [ -120.525047931, 49.546924687000121 ], [ -120.526188871999977, 49.546982273000083 ], [ -120.526379565999946, 49.545378957000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.999691109904422", "sL_AssetLoss": "377.1568", "sL_BldgLoss": "377.0403", "sL_StrLoss": "376.0133", "sL_NStrLoss": "1.027", "sL_ContLoss": "0.1165", "geom_point": "0101000020E6100000BB0FE5B0E0265EC071FBABE80BDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.603633488999947, 49.702320289000049 ], [ -120.603589197999952, 49.702106109000106 ], [ -120.603595216999977, 49.701907073000044 ], [ -120.603601708999989, 49.70169268500009 ], [ -120.603870493999949, 49.70094380000004 ], [ -120.603936607999941, 49.700559196000086 ], [ -120.603926497999907, 49.700397813000059 ], [ -120.604081324999981, 49.700405488000023 ], [ -120.604002392000012, 49.701699900000051 ], [ -120.606342398999942, 49.702350787000071 ], [ -120.607672480999895, 49.702404901000108 ], [ -120.608106312999936, 49.702296708000119 ], [ -120.608380693999919, 49.702095898 ], [ -120.608861010999988, 49.70190790100002 ], [ -120.60898299699997, 49.701704187000118 ], [ -120.609036656999933, 49.701557810000075 ], [ -120.610324950999939, 49.701621603000021 ], [ -120.610307115999944, 49.701773351000085 ], [ -120.61081894599999, 49.701798691000064 ], [ -120.610397353999929, 49.705385923000122 ], [ -120.605085740999968, 49.705122835000019 ], [ -120.604656635999959, 49.704302266000134 ], [ -120.604460345999911, 49.703940353000064 ], [ -120.603932709999981, 49.702967102000095 ], [ -120.603849837999988, 49.702814279000108 ], [ -120.603809303999967, 49.702739516000101 ], [ -120.603633488999947, 49.702320289000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.997641195193565", "sL_AssetLoss": "202.645", "sL_BldgLoss": "202.167", "sL_StrLoss": "194.367", "sL_NStrLoss": "7.8", "sL_ContLoss": "0.478", "geom_point": "0101000020E610000066093A73B2335EC0FADA8E0475C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.80501062299993, 49.543538783000102 ], [ -120.805202613999924, 49.541837448000074 ], [ -120.804934030999959, 49.541824585000036 ], [ -120.804996876999894, 49.541267668000067 ], [ -120.805645886999983, 49.541368590000111 ], [ -120.805912287999917, 49.541498598000032 ], [ -120.806076076999958, 49.541530480000119 ], [ -120.8061765, 49.541550007000097 ], [ -120.807543529, 49.541485605000027 ], [ -120.808260901999944, 49.54160629700003 ], [ -120.808706924999967, 49.541681321000048 ], [ -120.809528080999911, 49.541819486000094 ], [ -120.810720603, 49.542020086000015 ], [ -120.81051967799999, 49.543802477000028 ], [ -120.80501062299993, 49.543538783000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999571675877618", "sL_AssetLoss": "134.4776", "sL_BldgLoss": "134.42", "sL_StrLoss": "134", "sL_NStrLoss": "0.42", "sL_ContLoss": "0.0576", "geom_point": "0101000020E61000009EFBBCF395225EC0C5E6A1BEFEC74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.539210863999955, 49.560845617000041 ], [ -120.541808737999958, 49.560976339000042 ], [ -120.541383061999937, 49.564564026000092 ], [ -120.540451565999973, 49.564517162000122 ], [ -120.54027729299996, 49.564332705000055 ], [ -120.539529448999957, 49.563356538000086 ], [ -120.539201268999946, 49.562928105000054 ], [ -120.539187461999973, 49.562910142000156 ], [ -120.538998302, 49.562663205000021 ], [ -120.538765221999981, 49.562058713000042 ], [ -120.538852808999934, 49.561554186000116 ], [ -120.539210863999955, 49.560845617000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.999167962221761", "sL_AssetLoss": "950.5578", "sL_BldgLoss": "949.7669", "sL_StrLoss": "942.0869", "sL_NStrLoss": "7.68", "sL_ContLoss": "0.7909", "geom_point": "0101000020E610000055D935299E315EC0F033ECFF35CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.774561717999958, 49.610853528000057 ], [ -120.774563173, 49.610840727000067 ], [ -120.7707008739999, 49.610654889000052 ], [ -120.771109107999933, 49.607066562000078 ], [ -120.774059539999925, 49.607208537000112 ], [ -120.776625567999929, 49.607331950000074 ], [ -120.77622704499997, 49.610838622000109 ], [ -120.780089381999943, 49.611024264000037 ], [ -120.779681812999982, 49.614612604000094 ], [ -120.77868180499999, 49.614564553000129 ], [ -120.778671072999941, 49.614659028000105 ], [ -120.775858230999944, 49.614523818000038 ], [ -120.773153722999965, 49.614393746000069 ], [ -120.77356179899999, 49.610805430000013 ], [ -120.774561717999958, 49.610853528000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999248463948256", "sL_AssetLoss": "750.463", "sL_BldgLoss": "749.899", "sL_StrLoss": "746", "sL_NStrLoss": "3.899", "sL_ContLoss": "0.564", "geom_point": "0101000020E6100000FDE6724145275EC054AD222FADD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.609873663999963, 49.671299164000047 ], [ -120.60991609899996, 49.670937872000117 ], [ -120.609455572999963, 49.670915052000069 ], [ -120.609629985999973, 49.669430161000044 ], [ -120.609932342999969, 49.669190385000057 ], [ -120.610165477999928, 49.669005520000056 ], [ -120.61063410299991, 49.668633874000079 ], [ -120.610684226999965, 49.668594150000096 ], [ -120.611604521999979, 49.667864314000077 ], [ -120.612703806999988, 49.66699247000011 ], [ -120.617308374999965, 49.667220432000128 ], [ -120.61688760599999, 49.670807865000079 ], [ -120.61549471499994, 49.670738928000048 ], [ -120.615396885999985, 49.671572699000102 ], [ -120.609873663999963, 49.671299164000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998874155616712", "sL_AssetLoss": "175.868", "sL_BldgLoss": "175.67", "sL_StrLoss": "174", "sL_NStrLoss": "1.67", "sL_ContLoss": "0.198", "geom_point": "0101000020E6100000D56F0D096B215EC04CE6D4A531BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.52304850199998, 49.463574008000073 ], [ -120.5224998, 49.463243281000061 ], [ -120.522231174999902, 49.463316591000101 ], [ -120.521978883999921, 49.463105996000067 ], [ -120.521541502999938, 49.462795095000054 ], [ -120.521108592999951, 49.462366206000084 ], [ -120.520686198999954, 49.462034400000107 ], [ -120.520500744999978, 49.461937439000103 ], [ -120.521915238999924, 49.461386276000042 ], [ -120.522229201999949, 49.46191580800005 ], [ -120.523617936999969, 49.462614797000072 ], [ -120.523565332999937, 49.463057728000102 ], [ -120.523075791999958, 49.463032961000046 ], [ -120.52304850199998, 49.463574008000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99956612995335", "sL_AssetLoss": "269.666", "sL_BldgLoss": "269.549", "sL_StrLoss": "269", "sL_NStrLoss": "0.549", "sL_ContLoss": "0.117", "geom_point": "0101000020E61000003239B5334C275EC0792886BBE5BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.612222994999982, 49.458527493000119 ], [ -120.615665419999971, 49.458698777000066 ], [ -120.61527742199992, 49.462021809000078 ], [ -120.61367260499999, 49.461797488000094 ], [ -120.613184523, 49.461608102000092 ], [ -120.612591703999954, 49.461037001000058 ], [ -120.612482306999979, 49.460702304000044 ], [ -120.61244480199997, 49.45893770100006 ], [ -120.612228511999959, 49.458555990000079 ], [ -120.612222994999982, 49.458527493000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997927180966114", "sL_AssetLoss": "221.92", "sL_BldgLoss": "221.46", "sL_StrLoss": "217", "sL_NStrLoss": "4.46", "sL_ContLoss": "0.46", "geom_point": "0101000020E610000065ADDB7FA82E5EC09E6230DA3EC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.72665821799994, 49.541687855000085 ], [ -120.727020799999977, 49.53852249100008 ], [ -120.727261509999934, 49.538900689000066 ], [ -120.727576521999964, 49.539717107000072 ], [ -120.727685605999937, 49.539913699000088 ], [ -120.727950512999939, 49.540139398000107 ], [ -120.728181305999954, 49.540239998000054 ], [ -120.72855320399999, 49.540341896000015 ], [ -120.728566743999963, 49.540343814000039 ], [ -120.729432089999989, 49.540465899000061 ], [ -120.730193412999952, 49.540602092000029 ], [ -120.732271031, 49.541042932000046 ], [ -120.732166599999971, 49.541955521000098 ], [ -120.72665821799994, 49.541687855000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999573927086555", "sL_AssetLoss": "291.03", "sL_BldgLoss": "290.906", "sL_StrLoss": "290", "sL_NStrLoss": "0.906", "sL_ContLoss": "0.124", "geom_point": "0101000020E6100000CB78C68479255EC0E7CADA85EACF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.584592515999958, 49.625495287000099 ], [ -120.58301146499997, 49.624020092000094 ], [ -120.582926019999931, 49.62394037900004 ], [ -120.582871295999965, 49.623889307000113 ], [ -120.581719162999946, 49.622899512000053 ], [ -120.585554468999945, 49.623090693000037 ], [ -120.585512846999976, 49.623443858000059 ], [ -120.588428696999983, 49.623589116000055 ], [ -120.58840369899994, 49.623801335000074 ], [ -120.588884994999916, 49.623825304000093 ], [ -120.588767283999957, 49.62482467500007 ], [ -120.588474976999962, 49.624795492000082 ], [ -120.587457809999975, 49.624945009000072 ], [ -120.587415787999973, 49.625232695000093 ], [ -120.587814808999951, 49.625528906000106 ], [ -120.58793101, 49.625719785000065 ], [ -120.587091407999978, 49.625342383000024 ], [ -120.586969208999946, 49.625024787000036 ], [ -120.586829892999944, 49.625040400000017 ], [ -120.585750218000015, 49.625845103000053 ], [ -120.585571793000014, 49.626380598000011 ], [ -120.585712676999918, 49.627166795000058 ], [ -120.586060404999955, 49.627974295000072 ], [ -120.586081072999946, 49.628007889000067 ], [ -120.58593616099995, 49.628000669000066 ], [ -120.585859906999971, 49.627867891000058 ], [ -120.58562841499996, 49.627360210000106 ], [ -120.585346116999929, 49.626376309000101 ], [ -120.585173201999908, 49.626101587000072 ], [ -120.584592515999958, 49.625495287000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999206073131305", "sL_AssetLoss": "488.71", "sL_BldgLoss": "488.322", "sL_StrLoss": "486", "sL_NStrLoss": "2.322", "sL_ContLoss": "0.388", "geom_point": "0101000020E6100000C38B32D987325EC084132C69A0C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.786989814999956, 49.549843675000083 ], [ -120.792499520999968, 49.550108280000067 ], [ -120.792093455999947, 49.553696982000076 ], [ -120.786583323999963, 49.553432358000045 ], [ -120.786989814999956, 49.549843675000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5574500", "BldgCostT": "3635000", "sL_LossRatio": "0.749186842313701", "sL_AssetLoss": "1393.8256", "sL_BldgLoss": "1044.2358", "sL_StrLoss": "910.3708", "sL_NStrLoss": "133.865", "sL_ContLoss": "349.5898", "geom_point": "0101000020E61000009EE988F02D325EC07115724274D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.782036266999967, 49.636549430000038 ], [ -120.782058223999968, 49.636356136000074 ], [ -120.780420074999967, 49.636277492000019 ], [ -120.780827779999981, 49.632689260000113 ], [ -120.783241311999959, 49.632805121000104 ], [ -120.786347366999905, 49.632954146000024 ], [ -120.78629858599993, 49.633383948000137 ], [ -120.787936642999938, 49.633462503000061 ], [ -120.787529486999958, 49.637050758000044 ], [ -120.786841053000018, 49.637017746 ], [ -120.786460625999936, 49.640369474000096 ], [ -120.785166498999928, 49.640307407000073 ], [ -120.780940147999928, 49.640104597000047 ], [ -120.781347844999942, 49.636516383000057 ], [ -120.782036266999967, 49.636549430000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999809127568019", "sL_AssetLoss": "372.5001", "sL_BldgLoss": "372.429", "sL_StrLoss": "372", "sL_NStrLoss": "0.429", "sL_ContLoss": "0.0711", "geom_point": "0101000020E6100000E112BA2A94265EC022B74F5C48D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.600693784999976, 49.684690106000055 ], [ -120.600873770999968, 49.684699037000037 ], [ -120.600641693999975, 49.685176213000084 ], [ -120.600549416999968, 49.685651902000124 ], [ -120.601305195999956, 49.686090606000072 ], [ -120.602134179999922, 49.686431003000116 ], [ -120.60269729599996, 49.686550588000038 ], [ -120.604591301999946, 49.687768292000051 ], [ -120.604717416999961, 49.688023199000078 ], [ -120.604658405999942, 49.689245197000041 ], [ -120.604289197999933, 49.689947286000091 ], [ -120.602885104, 49.691717607000044 ], [ -120.602822088999972, 49.691878610000096 ], [ -120.602910294999973, 49.69206939200005 ], [ -120.603452975999957, 49.69230579400007 ], [ -120.603841896999882, 49.692592089000108 ], [ -120.604270610999919, 49.693177394000067 ], [ -120.604503307999977, 49.693802708000071 ], [ -120.604480204999945, 49.694269790000142 ], [ -120.604038015999919, 49.695070200000082 ], [ -120.603039107999976, 49.695642784000036 ], [ -120.602954117999928, 49.69596610200005 ], [ -120.603045199999954, 49.696390509000068 ], [ -120.60365133, 49.697035391000078 ], [ -120.603400896999972, 49.697022975000095 ], [ -120.603206393, 49.696806391000038 ], [ -120.603075215999965, 49.696660306000055 ], [ -120.602877124999978, 49.696312208000123 ], [ -120.602829410999973, 49.696127600000139 ], [ -120.602820583999943, 49.695753797000094 ], [ -120.602950725, 49.695391305000022 ], [ -120.603322516999967, 49.694593397000119 ], [ -120.603378627999987, 49.694388703000072 ], [ -120.603390315999945, 49.694159202000087 ], [ -120.603304617999953, 49.693859985000088 ], [ -120.602821404999972, 49.693030485000136 ], [ -120.602571535999914, 49.69250282100009 ], [ -120.602520897999938, 49.69239589000005 ], [ -120.601976747999927, 49.690894902000124 ], [ -120.601653387999988, 49.690002992000117 ], [ -120.601552464999955, 49.689698615000069 ], [ -120.600814583999977, 49.687473596000068 ], [ -120.600361489999983, 49.686070905000065 ], [ -120.600326205999963, 49.685720997000033 ], [ -120.600348302999947, 49.685533604000099 ], [ -120.600464198999987, 49.685150503000095 ], [ -120.600693784999976, 49.684690106000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999693649110404", "sL_AssetLoss": "127.305", "sL_BldgLoss": "127.266", "sL_StrLoss": "127", "sL_NStrLoss": "0.266", "sL_ContLoss": "0.039", "geom_point": "0101000020E61000007C8AF3A27C265EC0EB22BF5DFAD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.59848758899993, 49.639581005000053 ], [ -120.603427105999913, 49.639826345000053 ], [ -120.603217111999953, 49.641613318000033 ], [ -120.60189152599996, 49.641370409000075 ], [ -120.60092351199998, 49.641193 ], [ -120.600353903999974, 49.641056404000054 ], [ -120.600083301999959, 49.640961806000107 ], [ -120.600047318999955, 49.640942317000032 ], [ -120.599705049999926, 49.640756984000078 ], [ -120.599604391999975, 49.640702490000095 ], [ -120.599224813999939, 49.640377902000118 ], [ -120.59848758899993, 49.639581005000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999370778745359", "sL_AssetLoss": "145.7357", "sL_BldgLoss": "145.644", "sL_StrLoss": "145", "sL_NStrLoss": "0.644", "sL_ContLoss": "0.0917", "geom_point": "0101000020E6100000A9C83A7F472B5EC0D8F50B76C3C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.675022095999935, 49.506844531000141 ], [ -120.675201914999917, 49.505288784000079 ], [ -120.674693267999885, 49.505278556000071 ], [ -120.674708019999954, 49.504967422000078 ], [ -120.674731620999978, 49.504469689000089 ], [ -120.675295274999968, 49.504481023000075 ], [ -120.675331376999964, 49.504168645000057 ], [ -120.67581060899991, 49.504589291000073 ], [ -120.676173013, 49.505117695000102 ], [ -120.676783618999934, 49.505634705000091 ], [ -120.678335599999912, 49.506672987000108 ], [ -120.679009899, 49.507029003000049 ], [ -120.679025020999973, 49.507041144000063 ], [ -120.677500003999981, 49.506966257000052 ], [ -120.675022095999935, 49.506844531000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999347121711071", "sL_AssetLoss": "453.377", "sL_BldgLoss": "453.081", "sL_StrLoss": "451", "sL_NStrLoss": "2.081", "sL_ContLoss": "0.296", "geom_point": "0101000020E61000009CC3B5DA03225EC0F9938486F6B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.52994438399999, 49.443537988000088 ], [ -120.52997293699994, 49.443395908000056 ], [ -120.530013664999899, 49.443399039000084 ], [ -120.530896784999939, 49.443467007000045 ], [ -120.531358699999899, 49.443149206000051 ], [ -120.532073392999962, 49.44277479800008 ], [ -120.533261317999944, 49.4423140970001 ], [ -120.534733252999942, 49.441777016000103 ], [ -120.53477733499993, 49.441779243000028 ], [ -120.534460831999965, 49.444450773000028 ], [ -120.533732803999982, 49.444709892000049 ], [ -120.53279466199993, 49.445288842000082 ], [ -120.532602839999953, 49.445279150000076 ], [ -120.532586462999973, 49.445417324000104 ], [ -120.532380387999964, 49.445544493000149 ], [ -120.53174109199999, 49.446465914000029 ], [ -120.531642083999913, 49.446796405000107 ], [ -120.531845392999955, 49.447953141000077 ], [ -120.528276459999944, 49.447772741000051 ], [ -120.528019079999964, 49.447759726000079 ], [ -120.52804174799995, 49.447589132000068 ], [ -120.528338607999927, 49.44759886 ], [ -120.528342049999964, 49.447589256000072 ], [ -120.528796407999906, 49.446318115000082 ], [ -120.52912479099993, 49.445355599000031 ], [ -120.52938491899999, 49.444817402000062 ], [ -120.529773392999942, 49.444338797000107 ], [ -120.529875853999926, 49.444259274000082 ], [ -120.52994438399999, 49.443537988000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999009209844851", "sL_AssetLoss": "177.636", "sL_BldgLoss": "177.46", "sL_StrLoss": "176", "sL_NStrLoss": "1.46", "sL_ContLoss": "0.176", "geom_point": "0101000020E6100000C936576A492A5EC0303DCC240BC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.658148126999933, 49.500863684000052 ], [ -120.658335213999962, 49.499249966000093 ], [ -120.659082390999927, 49.499385298000078 ], [ -120.660442205999971, 49.499520589000021 ], [ -120.661583496999967, 49.499947796000058 ], [ -120.662406106999967, 49.500054700000092 ], [ -120.663779262999952, 49.500029440000084 ], [ -120.663649384999985, 49.501150841000076 ], [ -120.658292785999961, 49.500886908000012 ], [ -120.658146270999978, 49.500879686000076 ], [ -120.658148126999933, 49.500863684000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999290669216145", "sL_AssetLoss": "453.949", "sL_BldgLoss": "453.627", "sL_StrLoss": "451", "sL_NStrLoss": "2.627", "sL_ContLoss": "0.322", "geom_point": "0101000020E6100000FDE1216BD1225EC07C723D9FBBBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.541845796999937, 49.458233648000046 ], [ -120.541908753999948, 49.456800895000072 ], [ -120.544991440999979, 49.456956301000083 ], [ -120.54498001199994, 49.457052922000095 ], [ -120.545770922999921, 49.457092780000096 ], [ -120.545752756999931, 49.45724637800005 ], [ -120.546464909999926, 49.457282262000092 ], [ -120.546230710999907, 49.45926265 ], [ -120.546040550999976, 49.460870508000028 ], [ -120.544193186999976, 49.460777415000045 ], [ -120.54418627299998, 49.460835851000084 ], [ -120.541869649999981, 49.46071906600006 ], [ -120.541845796999937, 49.458233648000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12852500", "BldgCostT": "8600000", "sL_LossRatio": "0.998698571899565", "sL_AssetLoss": "4034.03", "sL_BldgLoss": "4028.78", "sL_StrLoss": "4011", "sL_NStrLoss": "17.78", "sL_ContLoss": "5.25", "geom_point": "0101000020E6100000FA72B8B925215EC02E9AA5CF54C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.519446504999905, 49.530383202000074 ], [ -120.51883398299999, 49.529921799000093 ], [ -120.517254697999988, 49.529032503000039 ], [ -120.517003384999924, 49.528913716000083 ], [ -120.515841586999912, 49.528364587000112 ], [ -120.515786681999941, 49.528418695000013 ], [ -120.515034632999971, 49.527931018000054 ], [ -120.514790504999937, 49.527772685000095 ], [ -120.51406008899994, 49.527139300000094 ], [ -120.513817754999963, 49.526870781000063 ], [ -120.513745839, 49.526791113000073 ], [ -120.513673940999951, 49.526711412000125 ], [ -120.513576825999976, 49.526603794000032 ], [ -120.513371510999932, 49.526376292000037 ], [ -120.51315788299999, 49.525995497000103 ], [ -120.513073585999976, 49.525506691000039 ], [ -120.513054213999979, 49.521371826000099 ], [ -120.513045791999915, 49.519571859000052 ], [ -120.513018673999952, 49.51378430200004 ], [ -120.51712460099999, 49.513992100000095 ], [ -120.516697439999945, 49.517579934000068 ], [ -120.516334205999968, 49.517561558000089 ], [ -120.516232810999966, 49.518413059000061 ], [ -120.516574105999894, 49.51843032600005 ], [ -120.51614686, 49.522018135000053 ], [ -120.514857515999935, 49.521952900000102 ], [ -120.514671839999949, 49.52351157800004 ], [ -120.517171218999934, 49.523638022000092 ], [ -120.517135449999969, 49.523938411000117 ], [ -120.520919216999957, 49.524129721000079 ], [ -120.52049225599994, 49.527717517000099 ], [ -120.520238578999965, 49.527704695000082 ], [ -120.520222362999931, 49.527840945000065 ], [ -120.522542404999939, 49.527958187000095 ], [ -120.5224603399999, 49.528647982000095 ], [ -120.522994634999918, 49.528674975000101 ], [ -120.522962147999934, 49.528948059000037 ], [ -120.523381939999979, 49.528969266000097 ], [ -120.523345272, 49.529277511000053 ], [ -120.523870742999989, 49.529304053000047 ], [ -120.52381970799992, 49.52973312500005 ], [ -120.523897469999923, 49.529737054000073 ], [ -120.523829570999951, 49.530307894000074 ], [ -120.524206797, 49.530326946000024 ], [ -120.523780034999945, 49.533914723000045 ], [ -120.523576048999928, 49.533904420000084 ], [ -120.523288547000021, 49.536321028 ], [ -120.52137136, 49.536224179000044 ], [ -120.52129309399993, 49.536881773000061 ], [ -120.51982474499998, 49.536807575000104 ], [ -120.518506210999959, 49.535582693000066 ], [ -120.518182086999943, 49.535280307000058 ], [ -120.517952602999941, 49.53502699600012 ], [ -120.517872423999947, 49.534938486000037 ], [ -120.517805098999958, 49.534864200000058 ], [ -120.517614115999962, 49.534569750000088 ], [ -120.517559396999971, 49.53448540800008 ], [ -120.517828688999913, 49.534375402000094 ], [ -120.517960688999963, 49.534278526000072 ], [ -120.519836207999901, 49.532902306000054 ], [ -120.520164489999942, 49.532587801000091 ], [ -120.520243583999971, 49.532422993000111 ], [ -120.52025879699994, 49.532109789000039 ], [ -120.520160099999927, 49.531635605000048 ], [ -120.519769727999972, 49.530692801000058 ], [ -120.519446504999905, 49.530383202000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.9995071099216", "sL_AssetLoss": "140.5993", "sL_BldgLoss": "140.53", "sL_StrLoss": "140", "sL_NStrLoss": "0.53", "sL_ContLoss": "0.0693", "geom_point": "0101000020E610000043D4337377235EC0FBB52F7F89C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.551828479999955, 49.573205515000019 ], [ -120.555219753999936, 49.573375703000053 ], [ -120.55479500899996, 49.576963377000069 ], [ -120.554405741999972, 49.57694384800007 ], [ -120.554180682999942, 49.575568276000098 ], [ -120.554177201999934, 49.57554700400005 ], [ -120.553903987999917, 49.574927891000087 ], [ -120.553579494999966, 49.574461407000101 ], [ -120.553523187999957, 49.574402221000078 ], [ -120.553310799999977, 49.574178992000036 ], [ -120.553000419999961, 49.573932506000091 ], [ -120.552407496999976, 49.573559116000069 ], [ -120.552075590999948, 49.573350101000116 ], [ -120.551828479999955, 49.573205515000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17564417", "BldgCostT": "11641667", "sL_LossRatio": "0.998607747089706", "sL_AssetLoss": "4121.0185", "sL_BldgLoss": "4115.281", "sL_StrLoss": "4073.847", "sL_NStrLoss": "41.434", "sL_ContLoss": "5.7375", "geom_point": "0101000020E6100000CB45638AC5305EC0340EF5BB30C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.765081890999937, 49.555034806000023 ], [ -120.764692591999975, 49.55449649200002 ], [ -120.76457120399999, 49.553828504000066 ], [ -120.76429250599999, 49.553562204000059 ], [ -120.764270007999968, 49.552833005000124 ], [ -120.764154102999953, 49.552623704000098 ], [ -120.763561791999976, 49.552270406000012 ], [ -120.763010994999931, 49.551648110000059 ], [ -120.762511322999956, 49.551359003000115 ], [ -120.761366400999989, 49.551022798000083 ], [ -120.760632510999955, 49.55105279000005 ], [ -120.760512884999955, 49.551230801000038 ], [ -120.760390113999975, 49.551183804000075 ], [ -120.760330382999953, 49.550975798000088 ], [ -120.760049710999951, 49.550799199000046 ], [ -120.759706288999908, 49.550710889000094 ], [ -120.75915861499999, 49.550601296000082 ], [ -120.75834734299994, 49.550557883000089 ], [ -120.758367492999952, 49.550380947000079 ], [ -120.758000828999954, 49.550373841000074 ], [ -120.758014542999973, 49.550074346000031 ], [ -120.758037868999949, 49.54956493300007 ], [ -120.75727060499996, 49.549550058000122 ], [ -120.757209024999895, 49.549548865000062 ], [ -120.757216748999952, 49.549380202000066 ], [ -120.757221375999904, 49.549279228000067 ], [ -120.757184509999959, 49.549278513000083 ], [ -120.756806954999945, 49.549271191000102 ], [ -120.756810464999901, 49.549194616000115 ], [ -120.752817291999975, 49.549001549000081 ], [ -120.752931489, 49.547999832000095 ], [ -120.752629948999967, 49.54798524600006 ], [ -120.752680149999904, 49.547544910000056 ], [ -120.752515473999935, 49.547536945000097 ], [ -120.752924564999915, 49.543948359000098 ], [ -120.753317219999985, 49.54396735200001 ], [ -120.753320981999934, 49.543885375000073 ], [ -120.75334935799998, 49.54326682300011 ], [ -120.754178093999926, 49.543282918000116 ], [ -120.754204792999971, 49.542700675000049 ], [ -120.754544889999963, 49.542656695000112 ], [ -120.754971901999966, 49.542601476000094 ], [ -120.756282058999929, 49.542502441000103 ], [ -120.75675266199994, 49.542504436000037 ], [ -120.757076824999942, 49.542551696 ], [ -120.757538673999974, 49.542715630000053 ], [ -120.757645869, 49.542807448000111 ], [ -120.757848983999935, 49.543067110000024 ], [ -120.758021785999958, 49.543519289000102 ], [ -120.759550384999926, 49.543311992000035 ], [ -120.7606407009999, 49.543164096000083 ], [ -120.761883638999961, 49.542995532000113 ], [ -120.76237200199995, 49.542929292000082 ], [ -120.762397168999954, 49.54291513400004 ], [ -120.76273301899991, 49.543761298000092 ], [ -120.763156085, 49.543327996000123 ], [ -120.763259782999981, 49.543234222000066 ], [ -120.763778176999949, 49.542765289000073 ], [ -120.765766954999933, 49.541738470000105 ], [ -120.766470297999916, 49.541375285000164 ], [ -120.767371784999938, 49.540996611000068 ], [ -120.767726177999933, 49.540834547 ], [ -120.768664487999985, 49.540879807000039 ], [ -120.768513209999952, 49.542211003000084 ], [ -120.768742517999897, 49.542215428000127 ], [ -120.76875480299999, 49.541945789000046 ], [ -120.769169162999958, 49.541953783000096 ], [ -120.769181444, 49.541684145000083 ], [ -120.771253242999961, 49.541724086000031 ], [ -120.771240971999958, 49.541993724000086 ], [ -120.771655333999917, 49.542001709000012 ], [ -120.771606258999952, 49.543080263000022 ], [ -120.771191888999965, 49.543072279000029 ], [ -120.771179616999945, 49.543341918000102 ], [ -120.76910775199994, 49.543301974000073 ], [ -120.769095468999964, 49.543571612000079 ], [ -120.768681093999987, 49.543563618000107 ], [ -120.768668808999934, 49.543833257000102 ], [ -120.76832958699994, 49.543826712000048 ], [ -120.768256648999937, 49.544468467000108 ], [ -120.765423449999901, 49.544331784000036 ], [ -120.765326065999929, 49.545188134000057 ], [ -120.764741162999897, 49.545159907000027 ], [ -120.764702557999939, 49.545499348000043 ], [ -120.76446050599999, 49.545487666000071 ], [ -120.764288044999944, 49.547003885000088 ], [ -120.76644116599999, 49.547107782000054 ], [ -120.766333644000014, 49.548053412000044 ], [ -120.767010608999968, 49.548086070000089 ], [ -120.76660405599992, 49.551661689000099 ], [ -120.76752822199991, 49.551706264000074 ], [ -120.767476849999966, 49.552158122000066 ], [ -120.767697446999989, 49.552168761000061 ], [ -120.767648822999959, 49.552596447000049 ], [ -120.767881267999968, 49.552607656000049 ], [ -120.767849387999931, 49.552888067000076 ], [ -120.767948684000018, 49.552892855000067 ], [ -120.767885190999891, 49.553451353000128 ], [ -120.768299808999942, 49.553471348000095 ], [ -120.768266537, 49.553764033000085 ], [ -120.768329024999957, 49.5537670470001 ], [ -120.768290201999974, 49.554108561000106 ], [ -120.76829824899994, 49.554108949000046 ], [ -120.76819188099995, 49.555044608000074 ], [ -120.768269510999971, 49.555048352000064 ], [ -120.767861516999957, 49.558636937000081 ], [ -120.76772192199999, 49.558630206000089 ], [ -120.767619855999953, 49.559527840000086 ], [ -120.767372154, 49.559515896000086 ], [ -120.76734535699994, 49.559751546000072 ], [ -120.766847604, 49.559727542000061 ], [ -120.766834238999976, 49.559845058000064 ], [ -120.764029686999962, 49.559709768000083 ], [ -120.763536280999958, 49.559685959000028 ], [ -120.763143301999932, 49.559351596000027 ], [ -120.763069013999925, 49.559142299 ], [ -120.763148395999977, 49.558631009000074 ], [ -120.76347270399998, 49.558196586000044 ], [ -120.763485610999936, 49.557873297000079 ], [ -120.763674284000018, 49.557715202000068 ], [ -120.764807097999935, 49.557413308000051 ], [ -120.765082883, 49.55714839900002 ], [ -120.76507661699999, 49.556644202000101 ], [ -120.764817391999912, 49.556000404000102 ], [ -120.765092498999948, 49.555395204000028 ], [ -120.765081890999937, 49.555034806000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999359364324084", "sL_AssetLoss": "154.8462", "sL_BldgLoss": "154.747", "sL_StrLoss": "154", "sL_NStrLoss": "0.747", "sL_ContLoss": "0.0992", "geom_point": "0101000020E61000006352AEB643205EC0CC8CC8C136BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.503554496999982, 49.476502376000084 ], [ -120.50491533499999, 49.476571443000068 ], [ -120.50448757199996, 49.480159424000043 ], [ -120.503507030999955, 49.480109661000036 ], [ -120.503563934999946, 49.478907681000088 ], [ -120.503554496999982, 49.476502376000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999124713579465", "sL_AssetLoss": "678.635", "sL_BldgLoss": "678.041", "sL_StrLoss": "674", "sL_NStrLoss": "4.041", "sL_ContLoss": "0.594", "geom_point": "0101000020E61000008B03C7E994315EC023E5E5B8ECCE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.774729376999943, 49.618370893000126 ], [ -120.774370403999981, 49.618346598000102 ], [ -120.772909786999932, 49.618489102000041 ], [ -120.772690008000012, 49.617882308000041 ], [ -120.771613295999941, 49.617177409000064 ], [ -120.771122214999949, 49.616734388000111 ], [ -120.771381786999939, 49.614452988000032 ], [ -120.775814122999975, 49.614666196000059 ], [ -120.776899133999976, 49.614718360000019 ], [ -120.776858286999953, 49.615077758000069 ], [ -120.777893824000017, 49.615127534000102 ], [ -120.777832200999953, 49.615669837000077 ], [ -120.777875859999966, 49.615671936000105 ], [ -120.777468077999927, 49.619260243000092 ], [ -120.775974074999979, 49.619188429000054 ], [ -120.775499188999945, 49.619165597000034 ], [ -120.775153503999974, 49.618504698000017 ], [ -120.774729376999943, 49.618370893000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.998399758229726", "sL_AssetLoss": "403.689", "sL_BldgLoss": "403.043", "sL_StrLoss": "396.203", "sL_NStrLoss": "6.84", "sL_ContLoss": "0.646", "geom_point": "0101000020E61000008330B77BF9325EC0CB0680C743C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.794918196999987, 49.539968510000058 ], [ -120.799491218999961, 49.540081391000065 ], [ -120.799994200999905, 49.540146568000125 ], [ -120.800009813999949, 49.540148592000087 ], [ -120.800464715999951, 49.540239902000074 ], [ -120.800731528999933, 49.540329724000053 ], [ -120.8009115, 49.540390303 ], [ -120.800980634999959, 49.540406781000051 ], [ -120.800915220999926, 49.540986011000065 ], [ -120.798822922999989, 49.540885703000122 ], [ -120.798638910999969, 49.542514360000084 ], [ -120.79313007699993, 49.542250062000086 ], [ -120.793369889999894, 49.54012973800014 ], [ -120.793800798999939, 49.540053804000102 ], [ -120.794011712999961, 49.540027838000171 ], [ -120.794238892999942, 49.539999906000062 ], [ -120.794918196999987, 49.539968510000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.960503089143866", "sL_AssetLoss": "0.4532", "sL_BldgLoss": "0.4353", "sL_StrLoss": "0.0173", "sL_NStrLoss": "0.418", "sL_ContLoss": "0.0179", "geom_point": "0101000020E61000006542C4B4CC265EC0B8A4F664F6D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.606214920999903, 49.688026103000034 ], [ -120.6056868899999, 49.687466400000091 ], [ -120.605475796999954, 49.68698640700007 ], [ -120.604917690999983, 49.686497900000099 ], [ -120.604780510999944, 49.686188909000116 ], [ -120.604804674999954, 49.685302594000063 ], [ -120.605682063999936, 49.685346092000081 ], [ -120.605638834000018, 49.685713747000122 ], [ -120.606260770999938, 49.685744577000072 ], [ -120.606230931999931, 49.685998372000078 ], [ -120.606589975999967, 49.686016169000041 ], [ -120.606567753999968, 49.686205188000038 ], [ -120.606968674999962, 49.686225059000058 ], [ -120.60693772799999, 49.686488314000073 ], [ -120.607148386999967, 49.686498754000091 ], [ -120.60711493399999, 49.686783334000062 ], [ -120.607202103999953, 49.686787654000049 ], [ -120.607162601999946, 49.687123678000049 ], [ -120.607337620999928, 49.687132351000045 ], [ -120.607268181, 49.687723063000078 ], [ -120.607288160999957, 49.68772405300011 ], [ -120.60697808899999, 49.690361566000021 ], [ -120.606495511999981, 49.689102800000072 ], [ -120.606214920999903, 49.688026103000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13965636", "BldgCostT": "8817079", "sL_LossRatio": "0.998572066631605", "sL_AssetLoss": "2270.274", "sL_BldgLoss": "2267.0322", "sL_StrLoss": "2255.231", "sL_NStrLoss": "11.8012", "sL_ContLoss": "3.2418", "geom_point": "0101000020E610000080A3F4B78A235EC01D273BECF4BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.549370563999915, 49.463473208000075 ], [ -120.549374985, 49.463435818000022 ], [ -120.545836852999983, 49.463257614000071 ], [ -120.54626125, 49.459669381000047 ], [ -120.546946729999931, 49.459703915000027 ], [ -120.546978169999974, 49.459438035000055 ], [ -120.54706626899997, 49.458692996000067 ], [ -120.547427055999933, 49.458711171000097 ], [ -120.547504885999928, 49.458052905000052 ], [ -120.550449716999978, 49.45820120700008 ], [ -120.550579409999941, 49.457103674000066 ], [ -120.555412648999948, 49.457346901000065 ], [ -120.556076672, 49.457380300000096 ], [ -120.555948455999925, 49.458466441000041 ], [ -120.558149652999958, 49.458577128000044 ], [ -120.55832848899999, 49.457061554000141 ], [ -120.563825791999989, 49.457337788000075 ], [ -120.56357098899997, 49.459499301000058 ], [ -120.564329215, 49.459537379000096 ], [ -120.563906222999918, 49.463125684000047 ], [ -120.561442068999952, 49.463001916000074 ], [ -120.561342555999914, 49.463845642000145 ], [ -120.559711669999928, 49.463763696000093 ], [ -120.559700286999941, 49.46386018099999 ], [ -120.554884148, 49.463618043000089 ], [ -120.554868578999944, 49.463749893000077 ], [ -120.549370563999915, 49.463473208000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "0.999419539848659", "sL_AssetLoss": "574.3719", "sL_BldgLoss": "574.0385", "sL_StrLoss": "571.0505", "sL_NStrLoss": "2.988", "sL_ContLoss": "0.3334", "geom_point": "0101000020E6100000C05C6A0877225EC022AE3993F8C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.535849826999979, 49.554439622000118 ], [ -120.534308210999953, 49.553364512000059 ], [ -120.532430963999943, 49.552075885000058 ], [ -120.532472960999897, 49.551722417000079 ], [ -120.533110233999963, 49.551754536000047 ], [ -120.533168257999947, 49.55126613200013 ], [ -120.538676642999988, 49.55154360200001 ], [ -120.538582415999912, 49.552337523000055 ], [ -120.53997785099989, 49.552407769000091 ], [ -120.539954281999968, 49.552606407000056 ], [ -120.540594942999945, 49.552638653000074 ], [ -120.54053442299994, 49.553148756000027 ], [ -120.54055227899994, 49.553149655000013 ], [ -120.540410798999972, 49.554342084000034 ], [ -120.541735116999959, 49.554408725000059 ], [ -120.541733333999957, 49.554423756000055 ], [ -120.543067773999965, 49.55449089000011 ], [ -120.542642256999954, 49.558078614000081 ], [ -120.538482439999925, 49.557869285000088 ], [ -120.538428302999947, 49.55777660100005 ], [ -120.53833089799997, 49.557532876000074 ], [ -120.538280288999928, 49.557406179000068 ], [ -120.538249918999938, 49.55733008300006 ], [ -120.538258282999919, 49.557075767000114 ], [ -120.538278084999931, 49.556474300000069 ], [ -120.538105478999952, 49.556095695000131 ], [ -120.537874077999945, 49.555851206000092 ], [ -120.535849826999979, 49.554439622000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99908581372036", "sL_AssetLoss": "158.611", "sL_BldgLoss": "158.466", "sL_StrLoss": "158", "sL_NStrLoss": "0.466", "sL_ContLoss": "0.145", "geom_point": "0101000020E6100000620C301C1D275EC04FD97E6CF1BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.610167645, 49.458425172000076 ], [ -120.611874454999963, 49.458510145000091 ], [ -120.612076105999975, 49.459155606000174 ], [ -120.611935909999914, 49.46034059300009 ], [ -120.612044384999962, 49.460918795000055 ], [ -120.612295792999959, 49.461435810000125 ], [ -120.612546802999958, 49.461657988000063 ], [ -120.613739623999919, 49.462105206000089 ], [ -120.614766708000019, 49.462263423000088 ], [ -120.609748222999912, 49.462013661000071 ], [ -120.610167645, 49.458425172000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999620569668066", "sL_AssetLoss": "264.0801", "sL_BldgLoss": "263.9799", "sL_StrLoss": "263.0169", "sL_NStrLoss": "0.963", "sL_ContLoss": "0.1002", "geom_point": "0101000020E6100000D153CB73D0215EC0E560360106C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.525809124999981, 49.513875355000039 ], [ -120.53131300299998, 49.514153214000018 ], [ -120.530886942, 49.517741102000095 ], [ -120.52538264099995, 49.517463223000036 ], [ -120.525809124999981, 49.513875355000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8207666", "BldgCostT": "5396666", "sL_LossRatio": "0.998788435883593", "sL_AssetLoss": "3054.1512", "sL_BldgLoss": "3050.4509", "sL_StrLoss": "3034.0689", "sL_NStrLoss": "16.382", "sL_ContLoss": "3.7003", "geom_point": "0101000020E610000070F851CB9E315EC055BAFDEA58CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.772923469999981, 49.601082772000055 ], [ -120.773098268999945, 49.59954538600001 ], [ -120.768083609999948, 49.599303944000027 ], [ -120.768448997999911, 49.596093012000033 ], [ -120.768490708999963, 49.59611189300005 ], [ -120.768805507999971, 49.596190201000077 ], [ -120.769248884999968, 49.596180201000053 ], [ -120.769448616, 49.596382498000054 ], [ -120.769663812999966, 49.596476500000058 ], [ -120.770422511999982, 49.596554807000082 ], [ -120.770990494, 49.596520593000058 ], [ -120.771258104999944, 49.596741397000052 ], [ -120.771534004, 49.596782707000031 ], [ -120.772062895999966, 49.596711498000076 ], [ -120.772595480999968, 49.596533401000016 ], [ -120.773510992999888, 49.596217303000103 ], [ -120.773806797999953, 49.5966730110001 ], [ -120.774154099000015, 49.59668009100006 ], [ -120.774558991, 49.59658901400006 ], [ -120.775208703999979, 49.59628710100003 ], [ -120.775360490999958, 49.595983711 ], [ -120.775901901999958, 49.595372710000049 ], [ -120.776066711999974, 49.59448540600004 ], [ -120.776017014999979, 49.59404389400013 ], [ -120.77468598899999, 49.592596905000043 ], [ -120.77463291, 49.591930411000128 ], [ -120.774880280999952, 49.59136930500005 ], [ -120.775195995999965, 49.591114313000091 ], [ -120.77561299499996, 49.591050204000062 ], [ -120.775763189999935, 49.590818096000049 ], [ -120.775378416, 49.589812597000041 ], [ -120.775364117999942, 49.589567625000022 ], [ -120.775863270999977, 49.589591641000027 ], [ -120.779156745999956, 49.589750038000048 ], [ -120.778836320999972, 49.592572079000078 ], [ -120.779205827999959, 49.592589844000074 ], [ -120.779154798999969, 49.593039263000023 ], [ -120.779233455999957, 49.593043045000059 ], [ -120.779191588999979, 49.593411772000096 ], [ -120.779299177999917, 49.593416944000047 ], [ -120.778900506999975, 49.596927839000031 ], [ -120.779119311999963, 49.596938357000056 ], [ -120.779072803999938, 49.597347911000107 ], [ -120.779119536999957, 49.597350157000065 ], [ -120.778712012999932, 49.600938565000028 ], [ -120.778486965999917, 49.600927746000082 ], [ -120.778439224999929, 49.601348071000061 ], [ -120.774678712999943, 49.601167227000083 ], [ -120.772923469999981, 49.601082772000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999606957431467", "sL_AssetLoss": "138.4074", "sL_BldgLoss": "138.353", "sL_StrLoss": "138", "sL_NStrLoss": "0.353", "sL_ContLoss": "0.0544", "geom_point": "0101000020E610000064A5519AB0225EC0B756412D82BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.541636824999898, 49.464472472000111 ], [ -120.541690808999988, 49.463394079000082 ], [ -120.54293170399994, 49.463420461000098 ], [ -120.542918213999954, 49.463690060000054 ], [ -120.543331848999983, 49.46369885100011 ], [ -120.543277897999985, 49.464777244000068 ], [ -120.542864255999987, 49.464768453000048 ], [ -120.542837274999926, 49.465307650000078 ], [ -120.54242362699992, 49.465298856000075 ], [ -120.542369654999959, 49.466377249000104 ], [ -120.54071503099999, 49.466342059000041 ], [ -120.540769038999926, 49.465263668000077 ], [ -120.541182685999928, 49.465272468000101 ], [ -120.54122318499995, 49.464463673000083 ], [ -120.541636824999898, 49.464472472000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.99945556826662", "sL_AssetLoss": "609.4428", "sL_BldgLoss": "609.111", "sL_StrLoss": "607", "sL_NStrLoss": "2.111", "sL_ContLoss": "0.3318", "geom_point": "0101000020E610000051EC4F7F09325EC057B24215A7D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.783020218, 49.6593989630001 ], [ -120.785132122999968, 49.659500242000036 ], [ -120.784724515999983, 49.66308835300002 ], [ -120.784096150999972, 49.663058223000057 ], [ -120.784050208999929, 49.663462568000057 ], [ -120.780976939999945, 49.663315155000092 ], [ -120.778526972999956, 49.663197577000055 ], [ -120.778935062999977, 49.659609490000115 ], [ -120.779563377000017, 49.65963964900007 ], [ -120.779609355, 49.659235304000056 ], [ -120.783020218, 49.6593989630001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.998484706607848", "sL_AssetLoss": "193.2959", "sL_BldgLoss": "193.003", "sL_StrLoss": "189.123", "sL_NStrLoss": "3.88", "sL_ContLoss": "0.2929", "geom_point": "0101000020E61000000A9A3B9F262E5EC06E9747486EC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.718558722999944, 49.535486349000053 ], [ -120.718864660999927, 49.532819272000054 ], [ -120.720210859999966, 49.533314702000084 ], [ -120.720772281999984, 49.533521303000057 ], [ -120.721353073999978, 49.533829292000078 ], [ -120.724221182999955, 49.534378394000086 ], [ -120.724223844999969, 49.534379776000037 ], [ -120.724066319999949, 49.535754428000089 ], [ -120.718558722999944, 49.535486349000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3342250", "BldgCostT": "2305000", "sL_LossRatio": "0.999629259308832", "sL_AssetLoss": "590.9791", "sL_BldgLoss": "590.76", "sL_StrLoss": "589.018", "sL_NStrLoss": "1.742", "sL_ContLoss": "0.2191", "geom_point": "0101000020E6100000663644ECBE215EC051725ECEB2C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.524375375999966, 49.524151580000115 ], [ -120.524478549999941, 49.523283965000118 ], [ -120.524471033999959, 49.523283585000122 ], [ -120.524699253999955, 49.521364304000038 ], [ -120.524180147999928, 49.521338081000096 ], [ -120.524606762999937, 49.517750237000037 ], [ -120.530111093999963, 49.518028156000057 ], [ -120.529883115999922, 49.519947458000097 ], [ -120.530402209999963, 49.519973653000136 ], [ -120.530299154999923, 49.52084127800007 ], [ -120.530306668999984, 49.520841657000091 ], [ -120.529880468999977, 49.524429507000072 ], [ -120.524375375999966, 49.524151580000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.998628886112028", "sL_AssetLoss": "177.7387", "sL_BldgLoss": "177.495", "sL_StrLoss": "175.105", "sL_NStrLoss": "2.39", "sL_ContLoss": "0.2437", "geom_point": "0101000020E6100000AB40CADB532A5EC05C555988CCBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.66204789299999, 49.499741290000017 ], [ -120.661024398999984, 49.49919019400005 ], [ -120.659344494999957, 49.499111801000069 ], [ -120.658372051999962, 49.498932203000045 ], [ -120.658562283999942, 49.497291215000111 ], [ -120.66406497199992, 49.49756235100007 ], [ -120.663828063999986, 49.499608075000012 ], [ -120.663164301, 49.499791203000058 ], [ -120.662417423999969, 49.499839600000037 ], [ -120.66204789299999, 49.499741290000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999218006974532", "sL_AssetLoss": "473.15", "sL_BldgLoss": "472.78", "sL_StrLoss": "470", "sL_NStrLoss": "2.78", "sL_ContLoss": "0.37", "geom_point": "0101000020E61000006372F61085315EC01D1A58BF80CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.771573176999979, 49.58014535100007 ], [ -120.776707232999954, 49.580392483 ], [ -120.776299670999933, 49.583980969000031 ], [ -120.772097535999961, 49.583778715 ], [ -120.770786008999949, 49.583715555000047 ], [ -120.771193997999973, 49.580127089000023 ], [ -120.771573176999979, 49.58014535100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999440810349436", "sL_AssetLoss": "426.8677", "sL_BldgLoss": "426.629", "sL_StrLoss": "425", "sL_NStrLoss": "1.629", "sL_ContLoss": "0.2387", "geom_point": "0101000020E61000009B57122C50215EC0F7578FFBD6C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.517980360999914, 49.504627646000138 ], [ -120.523483087999978, 49.504905905000101 ], [ -120.523056506, 49.508493812000019 ], [ -120.517553353, 49.508215532000087 ], [ -120.517980360999914, 49.504627646000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999411738187208", "sL_AssetLoss": "454.7295", "sL_BldgLoss": "454.462", "sL_StrLoss": "453", "sL_NStrLoss": "1.462", "sL_ContLoss": "0.2675", "geom_point": "0101000020E6100000CDBEC0E6BB225EC04069A85148B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.542783315999912, 49.441556584000111 ], [ -120.542796794999944, 49.441286984000087 ], [ -120.54114301599999, 49.441251814000083 ], [ -120.541156503999929, 49.440982215000119 ], [ -120.539089292999975, 49.440938220000142 ], [ -120.53910818, 49.440561060000043 ], [ -120.539126181999933, 49.440552966000041 ], [ -120.539269051999952, 49.440488748000085 ], [ -120.539476898999936, 49.440395300000098 ], [ -120.540070801999917, 49.440012896000084 ], [ -120.540174752999988, 49.439916333000099 ], [ -120.54095740299999, 49.439189398000075 ], [ -120.541796101999935, 49.438489985000096 ], [ -120.54231767, 49.43818559500005 ], [ -120.542593215999972, 49.438024793000096 ], [ -120.543545139999978, 49.437546998000073 ], [ -120.543905106999915, 49.437366284000078 ], [ -120.544245055999923, 49.437152089000072 ], [ -120.544239198999961, 49.437269352000065 ], [ -120.544652610999961, 49.437278135000092 ], [ -120.544625674999935, 49.437817335000041 ], [ -120.545039090999921, 49.437826116000039 ], [ -120.544998694999947, 49.438634916000119 ], [ -120.544585271999964, 49.438626133000085 ], [ -120.544531396999957, 49.439704533000032 ], [ -120.544944829999963, 49.439713316000038 ], [ -120.544904427999924, 49.440522114000046 ], [ -120.544490988999939, 49.440513332000123 ], [ -120.544437107999897, 49.44159173100013 ], [ -120.542783315999912, 49.441556584000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999556766652067", "sL_AssetLoss": "381.289", "sL_BldgLoss": "381.12", "sL_StrLoss": "380", "sL_NStrLoss": "1.12", "sL_ContLoss": "0.169", "geom_point": "0101000020E61000005EBEF5613D265EC0319F28E089D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.594687533999959, 49.635329105000075 ], [ -120.600206347999915, 49.635603423000134 ], [ -120.599784535999959, 49.63919095300006 ], [ -120.598046878000019, 49.639104611000072 ], [ -120.597593304999975, 49.638614312000136 ], [ -120.597269311000019, 49.638336586000065 ], [ -120.597023893999975, 49.638216193000083 ], [ -120.596869403999975, 49.638172392000122 ], [ -120.595758204999953, 49.638063004000088 ], [ -120.595272115999961, 49.637971209000099 ], [ -120.595211198999948, 49.637949301000084 ], [ -120.594835415999981, 49.637814195000082 ], [ -120.594524406999966, 49.637627857000084 ], [ -120.594465912999979, 49.637592793000131 ], [ -120.594425127999969, 49.637558669000072 ], [ -120.594687533999959, 49.635329105000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71083167", "BldgCostT": "49781667", "sL_LossRatio": "0.649404575656516", "sL_AssetLoss": "342.41294", "sL_BldgLoss": "222.36453", "sL_StrLoss": "178.43603", "sL_NStrLoss": "43.9285", "sL_ContLoss": "120.04841", "geom_point": "0101000020E61000009195FCDBE70A5EC0CCB3714813AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.172857740999959, 49.357976408000077 ], [ -120.173478754999934, 49.358009926000079 ], [ -120.173026409999949, 49.361597190000126 ], [ -120.172886347999977, 49.361589631000093 ], [ -120.172807735000021, 49.362212993000064 ], [ -120.170133156999938, 49.362068613000133 ], [ -120.16732414, 49.361916902000047 ], [ -120.167776930999977, 49.358329664000053 ], [ -120.167916981999952, 49.358337230000082 ], [ -120.167995654999956, 49.357713867000022 ], [ -120.172857740999959, 49.357976408000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28074918", "BldgCostT": "16891668", "sL_LossRatio": "0.999938581393238", "sL_AssetLoss": "3218.926811", "sL_BldgLoss": "3218.729109", "sL_StrLoss": "3217.904929", "sL_NStrLoss": "0.82418", "sL_ContLoss": "0.197702", "geom_point": "0101000020E610000095AAB4C535F65DC07108C9C0899A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.837305, 49.20783914 ], [ -119.837307851999981, 49.207352941000124 ], [ -119.837310046999946, 49.206983899000065 ], [ -119.837310910999989, 49.206840937000031 ], [ -119.837313598999984, 49.206384711000069 ], [ -119.83731768399997, 49.205897453000077 ], [ -119.837322907, 49.205279396000037 ], [ -119.842846495999979, 49.205291292000034 ], [ -119.846119806, 49.205296980000092 ], [ -119.846682460999915, 49.205297944000073 ], [ -119.847327402999909, 49.20529904400005 ], [ -119.848110515999949, 49.20530038000004 ], [ -119.848700621999981, 49.205301389000056 ], [ -119.849950435, 49.205303501000103 ], [ -119.850046391999982, 49.205303657000023 ], [ -119.853685646999921, 49.205309747000101 ], [ -119.85585470700002, 49.205313302000086 ], [ -119.856141851999922, 49.205292636000109 ], [ -119.85778217699999, 49.205174538000051 ], [ -119.858451670999898, 49.205126327000066 ], [ -119.859696307999954, 49.205036693000061 ], [ -119.86093350500002, 49.20492438600008 ], [ -119.86386920299995, 49.204657795000088 ], [ -119.864606418999927, 49.204626537000131 ], [ -119.864546223999938, 49.205081401000058 ], [ -119.862791347999973, 49.20498127900003 ], [ -119.86258961799993, 49.206505141000036 ], [ -119.862465612999955, 49.206498065000041 ], [ -119.86243732399997, 49.206711745000071 ], [ -119.857645816999977, 49.206438219000049 ], [ -119.857568235999935, 49.20702375700008 ], [ -119.857000802999949, 49.206991350000081 ], [ -119.856990012999972, 49.207072770000075 ], [ -119.856586847999964, 49.207049743000034 ], [ -119.856582098999979, 49.207085579000086 ], [ -119.856530133999939, 49.207082611000018 ], [ -119.85647161699994, 49.207524180000057 ], [ -119.85272825199992, 49.207310302000018 ], [ -119.852484935999911, 49.20914516800007 ], [ -119.847021502999937, 49.208832777000104 ], [ -119.84710181299999, 49.208227700000037 ], [ -119.846899263999887, 49.208216113000084 ], [ -119.846696524999956, 49.209743499000076 ], [ -119.843889085999976, 49.209582860000069 ], [ -119.843723758999957, 49.210827765000055 ], [ -119.841999616999914, 49.210729074000035 ], [ -119.841988984999901, 49.210809105000067 ], [ -119.839121476999978, 49.210644905000031 ], [ -119.839064675999936, 49.211072273000092 ], [ -119.837059762999928, 49.210957421000025 ], [ -119.837072297999953, 49.210903128000069 ], [ -119.837153212999937, 49.210552384000039 ], [ -119.837368085999955, 49.208801104000031 ], [ -119.83726575899999, 49.208722682000044 ], [ -119.83726921799996, 49.208678880000029 ], [ -119.83727269399999, 49.20863510100007 ], [ -119.83727618799999, 49.208591289000019 ], [ -119.837279646999917, 49.208547486000079 ], [ -119.83728314299999, 49.208503674000056 ], [ -119.837286616999933, 49.208459896000136 ], [ -119.83729011299999, 49.20841608300001 ], [ -119.837293588999927, 49.208372305000061 ], [ -119.837297029999959, 49.208328480000098 ], [ -119.83730054099999, 49.208284690000056 ], [ -119.837302483999935, 49.208259797000096 ], [ -119.837302568999974, 49.208250791000125 ], [ -119.837302917000017, 49.208190218000041 ], [ -119.837303455999944, 49.208100375000136 ], [ -119.837305, 49.20783914 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3488917", "BldgCostT": "2196667", "sL_LossRatio": "0.535706234962978", "sL_AssetLoss": "290.87791", "sL_BldgLoss": "155.82511", "sL_StrLoss": "106.05561", "sL_NStrLoss": "49.7695", "sL_ContLoss": "135.0528", "geom_point": "0101000020E6100000EE08C81318015EC0F6A423EBB6934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.010440990999982, 49.155078397000118 ], [ -120.011108798999913, 49.154465993 ], [ -120.011403801999961, 49.154347802000103 ], [ -120.01281339499999, 49.15441189600012 ], [ -120.013699517999953, 49.15471379700007 ], [ -120.014507007999939, 49.15475220200004 ], [ -120.015161115999931, 49.154607006000028 ], [ -120.015804617999905, 49.154615498000041 ], [ -120.016123782999941, 49.15454149300006 ], [ -120.017126082999951, 49.154091394000069 ], [ -120.017442811999942, 49.153829395000052 ], [ -120.017701588999927, 49.153422011000025 ], [ -120.018277988999969, 49.152726994000062 ], [ -120.019633405999983, 49.152077605000088 ], [ -120.019738217999944, 49.151936607000025 ], [ -120.019681217999945, 49.151512202000077 ], [ -120.019509319999941, 49.151193103 ], [ -120.019513544999953, 49.151122084000058 ], [ -120.021486334999949, 49.15123188399999 ], [ -120.021024279999949, 49.154819626000069 ], [ -120.018601529999927, 49.15468477800011 ], [ -120.018539694999944, 49.155164683000102 ], [ -120.01447861099993, 49.154938523000055 ], [ -120.014342363, 49.15599517800014 ], [ -120.009736002999972, 49.155738463000056 ], [ -120.01019468599999, 49.155531301000039 ], [ -120.010440990999982, 49.155078397000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11907500", "BldgCostT": "6980000", "sL_LossRatio": "1", "sL_AssetLoss": "1067.2", "sL_BldgLoss": "1067.2", "sL_StrLoss": "1067.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004113F62790F85DC05F373A21539A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.879105645999942, 49.207080265000108 ], [ -119.879245469999887, 49.206021204000145 ], [ -119.877130251999958, 49.205900813000028 ], [ -119.877247414999943, 49.205013652000098 ], [ -119.877762017999927, 49.204971952000022 ], [ -119.879116864999929, 49.204862150000103 ], [ -119.88081608199991, 49.204724400000096 ], [ -119.88091359699996, 49.204506693 ], [ -119.88104001399995, 49.20443530500004 ], [ -119.881191696999906, 49.204412310000102 ], [ -119.88253038299996, 49.204402691000077 ], [ -119.884243546999969, 49.204276170000092 ], [ -119.887619124999972, 49.204026765000016 ], [ -119.887822492999987, 49.204011745000031 ], [ -119.889323092999945, 49.205424213000072 ], [ -119.890224292999946, 49.206032310000062 ], [ -119.89071899299995, 49.206505213000099 ], [ -119.890901734999971, 49.206783421000068 ], [ -119.890465465999938, 49.206758641000057 ], [ -119.887657377, 49.206599101000073 ], [ -119.887698580999924, 49.206286572000081 ], [ -119.884736979999957, 49.206118231000097 ], [ -119.884569087999935, 49.207391030000089 ], [ -119.879105645999942, 49.207080265000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4578833", "BldgCostT": "2948333", "sL_LossRatio": "0.833267442360275", "sL_AssetLoss": "437.282964", "sL_BldgLoss": "364.373657", "sL_StrLoss": "338.005157", "sL_NStrLoss": "26.3685", "sL_ContLoss": "72.909307", "geom_point": "0101000020E61000005333D6C423FD5DC01462AA70369C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.958822646999948, 49.222904519000103 ], [ -119.95887082199998, 49.222534929000119 ], [ -119.957511158999949, 49.222458586000108 ], [ -119.957491587999982, 49.222435783000101 ], [ -119.956917372999953, 49.221888633000077 ], [ -119.956082343999938, 49.221346711000152 ], [ -119.955245490999985, 49.221008819000104 ], [ -119.954856537999973, 49.220916465000094 ], [ -119.954348343999925, 49.220795819000095 ], [ -119.953277350999912, 49.220698500000047 ], [ -119.953114392999908, 49.220683688000101 ], [ -119.95308685599997, 49.220681208000073 ], [ -119.952591482999964, 49.220636187000125 ], [ -119.952316647999936, 49.220611220000052 ], [ -119.951284952999984, 49.220517464000096 ], [ -119.951592426999952, 49.218161296000105 ], [ -119.951774513999936, 49.218140994000109 ], [ -119.952491000999956, 49.218176612000065 ], [ -119.953565093999941, 49.218445702000132 ], [ -119.955685206999974, 49.219444108000076 ], [ -119.957199603999968, 49.219954012000052 ], [ -119.958069059999957, 49.220611563000112 ], [ -119.958120418999982, 49.220650407000086 ], [ -119.95940638699993, 49.221939298000116 ], [ -119.960424214999961, 49.222651392000046 ], [ -119.960506885999948, 49.222756762000081 ], [ -119.960705749999988, 49.223010224000042 ], [ -119.958822646999948, 49.222904519000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7436533", "BldgCostT": "4235546", "sL_LossRatio": "0.999870985733098", "sL_AssetLoss": "1127.93727", "sL_BldgLoss": "1127.79175", "sL_StrLoss": "1126.01995", "sL_NStrLoss": "1.7718", "sL_ContLoss": "0.14552", "geom_point": "0101000020E61000008EABFCF86C025EC0D1B582E8C1904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.035415249999971, 49.128981214000113 ], [ -120.040870556999948, 49.129284095000074 ], [ -120.040452137, 49.132545301000071 ], [ -120.039819794, 49.132839275000073 ], [ -120.034954488999915, 49.132569139000125 ], [ -120.035415249999971, 49.128981214000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999986802120507", "sL_AssetLoss": "84.10442", "sL_BldgLoss": "84.10331", "sL_StrLoss": "84.1", "sL_NStrLoss": "0.00331", "sL_ContLoss": "0.00111", "geom_point": "0101000020E6100000DC7EF96445FC5DC0AC913C5B309C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.939757486999966, 49.219985301000094 ], [ -119.941848105999895, 49.219797310000025 ], [ -119.942407504999963, 49.219747485000049 ], [ -119.942994902999914, 49.219921186000079 ], [ -119.944468185999966, 49.219991005000111 ], [ -119.944505782999968, 49.219986179000081 ], [ -119.9444442399999, 49.2204572260001 ], [ -119.941774113999941, 49.220633304000074 ], [ -119.940267122999941, 49.220552429000101 ], [ -119.93893551799998, 49.220480959000021 ], [ -119.938997770999933, 49.220004912000036 ], [ -119.939757486999966, 49.219985301000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.979054385105341", "sL_AssetLoss": "0.016328", "sL_BldgLoss": "0.015986", "sL_StrLoss": "0.000386", "sL_NStrLoss": "0.0156", "sL_ContLoss": "0.000342", "geom_point": "0101000020E6100000BC0709CD45F95DC0B7E9119BF69A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.896419986999945, 49.211287931000086 ], [ -119.896431223000022, 49.211202597000096 ], [ -119.893528400999955, 49.211037853000079 ], [ -119.893680081999932, 49.209886361000024 ], [ -119.893728812999939, 49.209516401000066 ], [ -119.894905491999936, 49.210223808000116 ], [ -119.896412694999981, 49.210897401000068 ], [ -119.896973696999922, 49.211071189000023 ], [ -119.897565601999958, 49.2113529270001 ], [ -119.896913807999951, 49.211315949000038 ], [ -119.896419986999945, 49.211287931000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3562000", "BldgCostT": "1960000", "sL_LossRatio": "0.859609873347509", "sL_AssetLoss": "10.817", "sL_BldgLoss": "9.2984", "sL_StrLoss": "0.1724", "sL_NStrLoss": "9.126", "sL_ContLoss": "1.5186", "geom_point": "0101000020E610000084EDCCA9490A5EC0A612D87B75B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.162589514999937, 49.378123620000039 ], [ -120.16286422499995, 49.378138466000053 ], [ -120.162665775999955, 49.379708697000062 ], [ -120.161897594999957, 49.37950268000003 ], [ -120.161199864999944, 49.379315561000098 ], [ -120.160140347999956, 49.379031391000062 ], [ -120.159246200999959, 49.378732029000027 ], [ -120.15736183599995, 49.377976044000036 ], [ -120.15737880799999, 49.37784187900008 ], [ -120.162589514999937, 49.378123620000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21078084", "BldgCostT": "12038334", "sL_LossRatio": "0.940825791158435", "sL_AssetLoss": "2665.34193", "sL_BldgLoss": "2507.62243", "sL_StrLoss": "2447.60983", "sL_NStrLoss": "60.0126", "sL_ContLoss": "157.7195", "geom_point": "0101000020E61000004F4364C3A00C5EC027F885DB4A884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.195857052999884, 49.061955640000086 ], [ -120.201305545999944, 49.062250420000098 ], [ -120.200858210999968, 49.065839416000095 ], [ -120.199001331999966, 49.065738985000124 ], [ -120.19876761899999, 49.067613259000026 ], [ -120.193318514999959, 49.067318353000111 ], [ -120.19376644399992, 49.063729397000039 ], [ -120.195623231999932, 49.063829919000071 ], [ -120.195857052999884, 49.061955640000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3061167", "BldgCostT": "1901667", "sL_LossRatio": "0.703794986068302", "sL_AssetLoss": "303.861379", "sL_BldgLoss": "213.856115", "sL_StrLoss": "181.306775", "sL_NStrLoss": "32.54934", "sL_ContLoss": "90.005264", "geom_point": "0101000020E6100000DA3F2EF5DC015EC00FB2B0D01CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.028615879999947, 49.307220621000042 ], [ -120.028620966999952, 49.307181214000131 ], [ -120.02857113099999, 49.307178454000073 ], [ -120.027885713, 49.30653259200006 ], [ -120.027609185999978, 49.306025997000063 ], [ -120.027602017999925, 49.305472785000056 ], [ -120.027821303999986, 49.304222401000047 ], [ -120.027826501999968, 49.303935458000055 ], [ -120.027833960999942, 49.303525035000035 ], [ -120.029612740999937, 49.303623553000179 ], [ -120.029758994999938, 49.303831394000071 ], [ -120.030135548999979, 49.304205137000061 ], [ -120.030038182999988, 49.304959640000092 ], [ -120.030946421999928, 49.305009928000096 ], [ -120.031265700999953, 49.305326803000035 ], [ -120.03158196699998, 49.30601213900006 ], [ -120.031426292999953, 49.306001941000076 ], [ -120.029062657999987, 49.305354503000061 ], [ -120.029265504999927, 49.305731311000045 ], [ -120.030371676999948, 49.308590679000091 ], [ -120.030051122999978, 49.308572930000039 ], [ -120.029540505999989, 49.308091848000103 ], [ -120.029339813999911, 49.307902748000096 ], [ -120.028615879999947, 49.307220621000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3725750", "BldgCostT": "2360000", "sL_LossRatio": "0.788356710191606", "sL_AssetLoss": "377.139715", "sL_BldgLoss": "297.320625", "sL_StrLoss": "268.311225", "sL_NStrLoss": "29.0094", "sL_ContLoss": "79.81909", "geom_point": "0101000020E61000005A530F87DB005EC0441DB17158A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.011265830999918, 49.250416915000052 ], [ -120.013986243999923, 49.25056818000008 ], [ -120.014043486999967, 49.250639998000068 ], [ -120.014997019999967, 49.2535084 ], [ -120.015425018999963, 49.254166306000108 ], [ -120.015972412999972, 49.254639204000036 ], [ -120.0162641899999, 49.255043591000103 ], [ -120.01625742, 49.255255669000093 ], [ -120.013827035999924, 49.255120600000076 ], [ -120.013715886999961, 49.254891590000057 ], [ -120.013711701999981, 49.25488298500003 ], [ -120.013223979999978, 49.254201997000123 ], [ -120.012520394999967, 49.253465519000045 ], [ -120.011028838999934, 49.252249814000059 ], [ -120.011265830999918, 49.250416915000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6756744", "BldgCostT": "3684076", "sL_LossRatio": "0.847207193761427", "sL_AssetLoss": "1.87607", "sL_BldgLoss": "1.58942", "sL_StrLoss": "0.04102", "sL_NStrLoss": "1.5484", "sL_ContLoss": "0.28665", "geom_point": "0101000020E61000003345F3DF070B5EC03B9614ABC8B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169726351999969, 49.38036897300001 ], [ -120.175212145999964, 49.38066493300007 ], [ -120.175080956999963, 49.38170514800003 ], [ -120.17450164, 49.381756240000122 ], [ -120.172831422999963, 49.381815759000077 ], [ -120.172465469, 49.381828776000063 ], [ -120.170703715999963, 49.381674140000122 ], [ -120.169911612999968, 49.38156096300002 ], [ -120.16958458799995, 49.381491964000119 ], [ -120.169726351999969, 49.38036897300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36799334", "BldgCostT": "21223334", "sL_LossRatio": "0.999490212493745", "sL_AssetLoss": "2319.59392", "sL_BldgLoss": "2318.41142", "sL_StrLoss": "2311.01482", "sL_NStrLoss": "7.3966", "sL_ContLoss": "1.1825", "geom_point": "0101000020E61000009AB27856F7F45DC04F40FAC3229C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.822577500999969, 49.219356610000098 ], [ -119.822165086999945, 49.219042013000028 ], [ -119.82163178899998, 49.218726802000099 ], [ -119.820570542999931, 49.218236740000052 ], [ -119.819707049, 49.21783797400014 ], [ -119.819453434999957, 49.217720832000083 ], [ -119.819341267999945, 49.217669033000156 ], [ -119.818304826000016, 49.217190371000093 ], [ -119.81843885699999, 49.21618545000004 ], [ -119.823902962999938, 49.216499285000047 ], [ -119.823778154999914, 49.217435878000074 ], [ -119.82396292199995, 49.217446485000039 ], [ -119.823702041999951, 49.219404135000076 ], [ -119.825299955, 49.21949585600003 ], [ -119.82533650499991, 49.219221518000076 ], [ -119.828190778999925, 49.219385295000059 ], [ -119.829959139999971, 49.219486724000042 ], [ -119.830126340999954, 49.218230794000121 ], [ -119.830419063999969, 49.216031826000076 ], [ -119.832215564999927, 49.216134840000102 ], [ -119.835883231999915, 49.21634505400003 ], [ -119.835406198999976, 49.219931631000058 ], [ -119.832767433999891, 49.219780402000019 ], [ -119.832820196999975, 49.220702794000026 ], [ -119.831585763999925, 49.220733084000038 ], [ -119.831527226999981, 49.219709303000108 ], [ -119.830783488999941, 49.219666658000101 ], [ -119.830323556999943, 49.223121539000097 ], [ -119.826656250999974, 49.222911187000044 ], [ -119.826619704999985, 49.223185524000073 ], [ -119.826279313999976, 49.223165993000087 ], [ -119.826107950999926, 49.224452232000019 ], [ -119.826064778999935, 49.224449755000116 ], [ -119.826027862999965, 49.224726833000062 ], [ -119.823892728999951, 49.224604300000102 ], [ -119.823844682999962, 49.224964783000061 ], [ -119.82225729, 49.22487365500006 ], [ -119.822286895000033, 49.224738201000029 ], [ -119.822490317999922, 49.224141901000081 ], [ -119.82270106299994, 49.223604575000074 ], [ -119.823361922999979, 49.221919701000047 ], [ -119.823455995999964, 49.22152388600005 ], [ -119.823473792999962, 49.221152702000083 ], [ -119.823431694999925, 49.220776211000015 ], [ -119.82331638, 49.220401900000034 ], [ -119.823179607999975, 49.220106708000138 ], [ -119.82296478399995, 49.219786289000048 ], [ -119.822577500999969, 49.219356610000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4223584", "BldgCostT": "2703334", "sL_LossRatio": "0.742054418768066", "sL_AssetLoss": "461.48858", "sL_BldgLoss": "342.44964", "sL_StrLoss": "299.02394", "sL_NStrLoss": "43.4257", "sL_ContLoss": "119.03894", "geom_point": "0101000020E61000009F10F05A38FE5DC06C7E786D219D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.970090961999972, 49.226148389000095 ], [ -119.975557249999952, 49.22645453500013 ], [ -119.975151954999944, 49.229572071000099 ], [ -119.973256263999971, 49.229153967000094 ], [ -119.970735118999968, 49.228597852000036 ], [ -119.96986115699994, 49.228405040000069 ], [ -119.969084441999939, 49.22815376500008 ], [ -119.9682098709999, 49.227682333000082 ], [ -119.968349053999944, 49.226612980000056 ], [ -119.968392107999975, 49.226576508000086 ], [ -119.969066544000029, 49.226203706000014 ], [ -119.969990848999913, 49.226255502000072 ], [ -119.970004266, 49.226152386000066 ], [ -119.970089818999924, 49.226157180000087 ], [ -119.970090961999972, 49.226148389000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77981084", "BldgCostT": "53803334", "sL_LossRatio": "0.899729888431016", "sL_AssetLoss": "2020.7946", "sL_BldgLoss": "1818.1693", "sL_StrLoss": "1722.0926", "sL_NStrLoss": "96.0767", "sL_ContLoss": "202.6253", "geom_point": "0101000020E6100000CE028273650D5EC0B996A0F10AB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.21274097, 49.394903906000145 ], [ -120.21121461499996, 49.394244320000084 ], [ -120.209614415999908, 49.393271101000074 ], [ -120.208712705999986, 49.392532097000057 ], [ -120.208262139999931, 49.392050115000117 ], [ -120.20647831399998, 49.390141681000095 ], [ -120.205416548999921, 49.389215293000092 ], [ -120.204110148999945, 49.388325541000036 ], [ -120.203121481999958, 49.387652135000096 ], [ -120.200462028999965, 49.385657423000119 ], [ -120.199970174999962, 49.385288489000075 ], [ -120.199842645999937, 49.385192818000107 ], [ -120.198744261999977, 49.384537966000053 ], [ -120.198024189999984, 49.384246494000116 ], [ -120.197340469999972, 49.38405138500012 ], [ -120.200542775999963, 49.384223347000116 ], [ -120.200498671999966, 49.384574555 ], [ -120.201133478999964, 49.384608633000077 ], [ -120.201099305999918, 49.384880785000057 ], [ -120.202027566999931, 49.384930608000097 ], [ -120.201987810999967, 49.38524727300009 ], [ -120.202455973999975, 49.385272398000133 ], [ -120.202391216999928, 49.385788237000078 ], [ -120.203435475999953, 49.385844273000032 ], [ -120.203362168999931, 49.386428306 ], [ -120.204414181999965, 49.386484746000036 ], [ -120.204241360999958, 49.387861787000134 ], [ -120.206743494999955, 49.387995987000075 ], [ -120.206624344999966, 49.388945736000053 ], [ -120.207641328999927, 49.389000264000089 ], [ -120.20747011, 49.390365226000078 ], [ -120.210814613999943, 49.390544481000077 ], [ -120.210767805000032, 49.390917857000041 ], [ -120.211188027, 49.390940372000095 ], [ -120.211185629999946, 49.39095948800005 ], [ -120.215072503, 49.391167666000044 ], [ -120.214815220999967, 49.393221235000055 ], [ -120.214989637999963, 49.393230573000054 ], [ -120.214817920999948, 49.394601118000089 ], [ -120.216742270999973, 49.394704130000079 ], [ -120.21654016699992, 49.396317632 ], [ -120.214228000999938, 49.395457272000044 ], [ -120.21274097, 49.394903906000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3203750", "BldgCostT": "2000000", "sL_LossRatio": "0.581184170251664", "sL_AssetLoss": "201.566641", "sL_BldgLoss": "117.147341", "sL_StrLoss": "86.321341", "sL_NStrLoss": "30.826", "sL_ContLoss": "84.4193", "geom_point": "0101000020E6100000BFF2BD12CA015EC016329922A7A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.026884831999965, 49.294176715000091 ], [ -120.026654408999931, 49.291027604000099 ], [ -120.026687807999906, 49.290890978000064 ], [ -120.029272979999973, 49.291034219000075 ], [ -120.028857209999913, 49.294256427000057 ], [ -120.029214689999918, 49.294276230000023 ], [ -120.028751806999963, 49.297863224000054 ], [ -120.027148120999968, 49.297774380000128 ], [ -120.027056840999975, 49.296527159000092 ], [ -120.026884831999965, 49.294176715000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.895318748529758", "sL_AssetLoss": "0.17004", "sL_BldgLoss": "0.15224", "sL_StrLoss": "0.00824", "sL_NStrLoss": "0.144", "sL_ContLoss": "0.0178", "geom_point": "0101000020E61000006A4417710D025EC007FCAFADFEA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.031644508999975, 49.296095722000103 ], [ -120.033017876999978, 49.296171753000095 ], [ -120.032972792999928, 49.296382695000055 ], [ -120.032785798999896, 49.296720303000065 ], [ -120.031452000999977, 49.298088994000111 ], [ -120.031381915999987, 49.298131440000134 ], [ -120.031644508999975, 49.296095722000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.959955506117909", "sL_AssetLoss": "0.07192", "sL_BldgLoss": "0.06904", "sL_StrLoss": "0.00204", "sL_NStrLoss": "0.067", "sL_ContLoss": "0.00288", "geom_point": "0101000020E6100000E817A1AF0B015EC0B54457B734A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.016069788, 49.252347608 ], [ -120.015787583999938, 49.25088349400005 ], [ -120.015699917999896, 49.250663431000099 ], [ -120.016735247000028, 49.250720964000031 ], [ -120.016692343999978, 49.251053100000036 ], [ -120.016785266999989, 49.251058263000054 ], [ -120.016748047999926, 49.251346377000118 ], [ -120.016821582999938, 49.251350462000033 ], [ -120.016605766999973, 49.253021110000098 ], [ -120.016069788, 49.252347608 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3985750", "BldgCostT": "2485000", "sL_LossRatio": "0.998751341041841", "sL_AssetLoss": "1543.576", "sL_BldgLoss": "1541.6486", "sL_StrLoss": "1536.0116", "sL_NStrLoss": "5.637", "sL_ContLoss": "1.9274", "geom_point": "0101000020E61000005E477FDC3C0C5EC0AE9BD696CFB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.18838398599999, 49.380069806000073 ], [ -120.193869863999936, 49.38036482100005 ], [ -120.193529896999948, 49.383069049000071 ], [ -120.190920161999955, 49.382400934000081 ], [ -120.189241281999969, 49.381971087000096 ], [ -120.188178969999967, 49.381699077000114 ], [ -120.18838398599999, 49.380069806000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96555336", "BldgCostT": "64384292", "sL_LossRatio": "0.886920780384262", "sL_AssetLoss": "3047.80057", "sL_BldgLoss": "2703.15766", "sL_StrLoss": "2574.86284", "sL_NStrLoss": "128.29482", "sL_ContLoss": "344.64291", "geom_point": "0101000020E61000006F6CD9CEB5F95DC0525CD1BDB99A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.901327000999913, 49.212257499000067 ], [ -119.898951389999965, 49.211327507000114 ], [ -119.89556948299996, 49.209389199000064 ], [ -119.894545697999988, 49.208558897000074 ], [ -119.89393047199998, 49.207985364000074 ], [ -119.893980595999949, 49.20760480700006 ], [ -119.893492540999944, 49.207577100000094 ], [ -119.892121310000022, 49.20629870300008 ], [ -119.889750212999914, 49.204712105000056 ], [ -119.889555914999931, 49.204455702000139 ], [ -119.889403781999974, 49.20389485200009 ], [ -119.889436582999934, 49.203892428000081 ], [ -119.889668738999958, 49.203875283000038 ], [ -119.890277202, 49.203830312000036 ], [ -119.890786708999912, 49.203848399000037 ], [ -119.891485914999947, 49.203919701000046 ], [ -119.89159468599999, 49.203937687000135 ], [ -119.892115648999933, 49.204023946000085 ], [ -119.892250804999961, 49.204046288000079 ], [ -119.893042409999978, 49.20425199700005 ], [ -119.894528388, 49.20482779000006 ], [ -119.897213120999979, 49.205875942000034 ], [ -119.897856775999969, 49.206127209000051 ], [ -119.89916561299998, 49.20663815100005 ], [ -119.899170671999954, 49.206640113000049 ], [ -119.902757437999938, 49.208040160000081 ], [ -119.903761763999952, 49.208432152000043 ], [ -119.905019938999942, 49.207248091000025 ], [ -119.906874753999972, 49.207353177000051 ], [ -119.906803587999931, 49.207894657000075 ], [ -119.906991650999885, 49.2079053100001 ], [ -119.907006993999943, 49.207788573000073 ], [ -119.912470704999961, 49.208097925000061 ], [ -119.912066455999934, 49.211176331000068 ], [ -119.912035558999889, 49.21141160000014 ], [ -119.912320522999934, 49.211427726000061 ], [ -119.912143596999954, 49.211464301000092 ], [ -119.909568810999957, 49.211834588000123 ], [ -119.908492059999958, 49.211944584000015 ], [ -119.90855183299999, 49.211489703000083 ], [ -119.908501056999967, 49.211486828000055 ], [ -119.908485716999934, 49.211603565000068 ], [ -119.90318024, 49.211303003000118 ], [ -119.903130072999943, 49.21168444600012 ], [ -119.908164404, 49.211969652000036 ], [ -119.90816328599999, 49.211978167000034 ], [ -119.9075893, 49.212036796000085 ], [ -119.906585584999959, 49.212233302000094 ], [ -119.905116384999985, 49.212226202000096 ], [ -119.903807117, 49.21240279700001 ], [ -119.902765007999975, 49.212419907000054 ], [ -119.901327000999913, 49.212257499000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9303750", "BldgCostT": "5625000", "sL_LossRatio": "0.999696267199481", "sL_AssetLoss": "3148.1618", "sL_BldgLoss": "3147.2056", "sL_StrLoss": "3145.014", "sL_NStrLoss": "2.1916", "sL_ContLoss": "0.9562", "geom_point": "0101000020E6100000AE924406E4005EC0C0DC9B9D94934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.008884097999967, 49.155690965000147 ], [ -120.00934709799999, 49.152103279000109 ], [ -120.013407908999937, 49.152329634000075 ], [ -120.013544166999949, 49.151272974000101 ], [ -120.015966724999899, 49.151407936000112 ], [ -120.016028581999933, 49.150928030000046 ], [ -120.019283939000019, 49.15110930200003 ], [ -120.019456885999944, 49.151604706000107 ], [ -120.019452893999969, 49.151902393000157 ], [ -120.019290393999938, 49.152069008000119 ], [ -120.017809489999976, 49.152741300000052 ], [ -120.017482198, 49.153174195000126 ], [ -120.017380181999926, 49.153513191000094 ], [ -120.017057397, 49.153846398000056 ], [ -120.016278802, 49.154249490000133 ], [ -120.015665211999973, 49.154413309000077 ], [ -120.014396104999975, 49.154559983000048 ], [ -120.013435378999944, 49.154337798 ], [ -120.011894104999953, 49.154189705000064 ], [ -120.011318522999971, 49.154184003000125 ], [ -120.010927194, 49.154299306000055 ], [ -120.0105650199999, 49.154605602000068 ], [ -120.010028918999978, 49.155302001000067 ], [ -120.009795106999931, 49.155556910000023 ], [ -120.00942920899999, 49.155721359000033 ], [ -120.008884097999967, 49.155690965000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2681750", "BldgCostT": "1640000", "sL_LossRatio": "0.575054329285493", "sL_AssetLoss": "208.045254", "sL_BldgLoss": "119.637324", "sL_StrLoss": "87.610524", "sL_NStrLoss": "32.0268", "sL_ContLoss": "88.40793", "geom_point": "0101000020E6100000982A6222EFFF5DC0936D222BA69E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.000552610999961, 49.241498684000099 ], [ -120.000548948999963, 49.241438294000012 ], [ -120.000468560999963, 49.241436205000085 ], [ -120.000090455999938, 49.241155134000088 ], [ -120.000002396999918, 49.241089687000056 ], [ -119.998780410999927, 49.240213185000066 ], [ -119.998790731999975, 49.240043032000081 ], [ -119.998533886999923, 49.240036352000075 ], [ -119.998385373999938, 49.239929822000065 ], [ -119.998390867999916, 49.239839256000089 ], [ -119.998386222999926, 49.239762601000066 ], [ -119.998143369999951, 49.239756285000048 ], [ -119.997965911, 49.239629108000045 ], [ -119.997956970999965, 49.23948152500008 ], [ -119.997809706999959, 49.239477694000044 ], [ -119.99775656499996, 49.23947907600008 ], [ -119.99753498199999, 49.239320270000043 ], [ -119.997528610999964, 49.239215084000087 ], [ -119.997393124000013, 49.239218603000026 ], [ -119.997320742999989, 49.239166729000033 ], [ -119.99710405699993, 49.239011428000062 ], [ -119.997100716999952, 49.238956285000079 ], [ -119.997029690999923, 49.238958128000029 ], [ -119.996673137999935, 49.238702581000098 ], [ -119.996669245999925, 49.2386382890001 ], [ -119.996580202999951, 49.238635972000104 ], [ -119.996410182999981, 49.238514114000104 ], [ -119.996422762999913, 49.238306846000036 ], [ -119.996356525999943, 49.23826596 ], [ -119.99586602699999, 49.237843761000086 ], [ -119.995579025999987, 49.237648960000101 ], [ -119.995445826999941, 49.237626660000032 ], [ -119.995319227999957, 49.237544060000111 ], [ -119.99514732699997, 49.237366661000067 ], [ -119.995384625999989, 49.23722436000007 ], [ -119.995474727, 49.237131661000085 ], [ -119.997901955999936, 49.237855829000061 ], [ -119.998106818999986, 49.237850509000047 ], [ -119.998504676999971, 49.23796295699999 ], [ -119.998497535999974, 49.238080677000056 ], [ -119.998555465999942, 49.238108765000042 ], [ -119.998698, 49.23810506100007 ], [ -119.998700802999949, 49.238151312000106 ], [ -119.998905139999962, 49.238156624000119 ], [ -119.998897970999948, 49.238274820000036 ], [ -119.99895312599989, 49.238301560000089 ], [ -119.999030521999941, 49.238366333000101 ], [ -119.999125893999945, 49.238363855000038 ], [ -119.999130045999891, 49.238432384000163 ], [ -119.99930035899996, 49.238436812000039 ], [ -119.999293458999944, 49.238550607000015 ], [ -119.99941170699995, 49.238626341000035 ], [ -119.999779350999987, 49.238616786000108 ], [ -120.000000996999944, 49.238777813000119 ], [ -120.000096213999925, 49.238908079000048 ], [ -120.000081624999922, 49.239148752000069 ], [ -120.000268579999982, 49.239143892000079 ], [ -120.001421993999941, 49.240721795000063 ], [ -120.001745177999965, 49.240770975 ], [ -120.001824132999928, 49.242072475000093 ], [ -120.001341405999966, 49.242085028000083 ], [ -120.000744875999928, 49.241641605000076 ], [ -120.000552610999961, 49.241498684000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18589750", "BldgCostT": "11140000", "sL_LossRatio": "0.957411164643076", "sL_AssetLoss": "2468.00832", "sL_BldgLoss": "2362.89872", "sL_StrLoss": "2323.05002", "sL_NStrLoss": "39.8487", "sL_ContLoss": "105.1096", "geom_point": "0101000020E61000001A7AB406E9F45DC0D71601C2459B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.815088197999955, 49.213187544000071 ], [ -119.81508818399999, 49.213048990000061 ], [ -119.816131720000016, 49.213182518000075 ], [ -119.819000097999933, 49.212716554000032 ], [ -119.819003000999899, 49.211770222000069 ], [ -119.818960389999987, 49.211077134000107 ], [ -119.819729363999897, 49.211079876000049 ], [ -119.821144437999962, 49.211084894000102 ], [ -119.821796713999959, 49.211087198000023 ], [ -119.822893410999939, 49.211080734000106 ], [ -119.823422100999963, 49.211077600000102 ], [ -119.823454, 49.211078598000022 ], [ -119.823531034999931, 49.211080978000034 ], [ -119.823550832999956, 49.211081614000129 ], [ -119.823608034999936, 49.211083368000125 ], [ -119.823704798999984, 49.211086348000073 ], [ -119.823762107, 49.211088127000089 ], [ -119.823839158999959, 49.211090528000092 ], [ -119.82385892399995, 49.211091117000073 ], [ -119.823916214999912, 49.211092873000084 ], [ -119.823993213999969, 49.21109526300009 ], [ -119.824013082999954, 49.21109587600008 ], [ -119.824070267, 49.211097664000143 ], [ -119.824147267999962, 49.211100054000092 ], [ -119.824167047999978, 49.211100665000068 ], [ -119.824224321999921, 49.211102399000033 ], [ -119.824301336999937, 49.211104811000062 ], [ -119.824321189999964, 49.211105401000097 ], [ -119.824378372999945, 49.211107190000114 ], [ -119.824455358999955, 49.211109556000089 ], [ -119.824475314, 49.211110171000058 ], [ -119.824532446999925, 49.211111947000106 ], [ -119.82460944799999, 49.211114336000023 ], [ -119.824629278999979, 49.211114960000018 ], [ -119.8246865, 49.211116738000058 ], [ -119.824763482999984, 49.211119103 ], [ -119.824783350999923, 49.211119716000084 ], [ -119.836660324999968, 49.211077790000054 ], [ -119.836554213999975, 49.211875829000086 ], [ -119.832224407999945, 49.21162765000004 ], [ -119.832203626999956, 49.211783829000098 ], [ -119.83170237799996, 49.211755087000085 ], [ -119.831685988999936, 49.211878248000048 ], [ -119.836010456999958, 49.212126139000112 ], [ -119.835957401999963, 49.212525112 ], [ -119.83553347699997, 49.215712740000065 ], [ -119.832814693999964, 49.215556912000054 ], [ -119.830069386999966, 49.215399494000081 ], [ -119.830403530999959, 49.212889208000021 ], [ -119.826079022999977, 49.212641091000073 ], [ -119.826089359999969, 49.212563480000085 ], [ -119.825812419, 49.212547584000077 ], [ -119.825825907999942, 49.212446315000079 ], [ -119.825777863, 49.212443558000118 ], [ -119.825670031999948, 49.213253075000104 ], [ -119.821839317999945, 49.213033132000078 ], [ -119.821796673999941, 49.213353065000064 ], [ -119.818703550999913, 49.213175369000112 ], [ -119.818367156999926, 49.215697737 ], [ -119.817622352999976, 49.215654935000046 ], [ -119.817469029999955, 49.216804360000083 ], [ -119.816425717999948, 49.216322490000039 ], [ -119.815936801999925, 49.2160142930001 ], [ -119.815636994, 49.21576491700003 ], [ -119.815558064999948, 49.215647365000038 ], [ -119.815261498999959, 49.215205702000084 ], [ -119.815149315999975, 49.214932703000017 ], [ -119.81514794899999, 49.214923605000124 ], [ -119.815103377999918, 49.214618933000061 ], [ -119.815088124999988, 49.214514505000054 ], [ -119.815088121999935, 49.214014766000076 ], [ -119.815088197999955, 49.213187544000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3630500", "BldgCostT": "2240000", "sL_LossRatio": "0.999835453037103", "sL_AssetLoss": "1087.774559", "sL_BldgLoss": "1087.595569", "sL_StrLoss": "1087.003009", "sL_NStrLoss": "0.59256", "sL_ContLoss": "0.17899", "geom_point": "0101000020E6100000B652428F9C085EC0A9AEF0ECFAAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.133307779999924, 49.366453001000131 ], [ -120.132498600999966, 49.366052389000075 ], [ -120.126740895999959, 49.364598815000129 ], [ -120.12950524899999, 49.364749148000058 ], [ -120.129504069999925, 49.36475843100002 ], [ -120.130223226999931, 49.364797528000082 ], [ -120.130216350999959, 49.364851650000027 ], [ -120.131280596999943, 49.36490950000006 ], [ -120.131268367999937, 49.365005775000078 ], [ -120.132118476999906, 49.365051978000039 ], [ -120.132077145999958, 49.365377392000049 ], [ -120.133743445, 49.365467935000041 ], [ -120.133718266999935, 49.365666228000123 ], [ -120.134386236999944, 49.365702517000067 ], [ -120.134284583999914, 49.366503179000084 ], [ -120.137890876999947, 49.366699024000042 ], [ -120.137485694999967, 49.369892052000047 ], [ -120.135674814999945, 49.369066504000052 ], [ -120.134987294999945, 49.368522595 ], [ -120.133918307999977, 49.366993605000033 ], [ -120.133307779999924, 49.366453001000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8401386", "BldgCostT": "4452079", "sL_LossRatio": "0.999890616892847", "sL_AssetLoss": "1829.44154", "sL_BldgLoss": "1829.24143", "sL_StrLoss": "1828.02273", "sL_NStrLoss": "1.2187", "sL_ContLoss": "0.20011", "geom_point": "0101000020E6100000C6C25255CF015EC0152D8A6805A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.02577497599999, 49.271657314000038 ], [ -120.031246991999922, 49.271960618000051 ], [ -120.030784486999977, 49.275547743000104 ], [ -120.025312053999968, 49.275244417000103 ], [ -120.02577497599999, 49.271657314000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5519750", "BldgCostT": "3335000", "sL_LossRatio": "0.999168730069969", "sL_AssetLoss": "336.23254", "sL_BldgLoss": "335.95304", "sL_StrLoss": "334.04864", "sL_NStrLoss": "1.9044", "sL_ContLoss": "0.2795", "geom_point": "0101000020E6100000D3B0A56861015EC0419C871398A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.0191265099999, 49.268870545000027 ], [ -120.018994112999977, 49.268372225000107 ], [ -120.023484150999963, 49.268621423000099 ], [ -120.023441392999985, 49.268952663000064 ], [ -120.023626267999944, 49.268962919000138 ], [ -120.023163205999978, 49.272550027000122 ], [ -120.020864159000027, 49.272422458000086 ], [ -120.020801889999959, 49.272262713000046 ], [ -120.020469363999922, 49.27164792000012 ], [ -120.01928040899999, 49.269449714000125 ], [ -120.0191265099999, 49.268870545000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5408219", "BldgCostT": "2915412", "sL_LossRatio": "0.999424889930121", "sL_AssetLoss": "158.3296916", "sL_BldgLoss": "158.2386346", "sL_StrLoss": "158.0045546", "sL_NStrLoss": "0.23408", "sL_ContLoss": "0.091057", "geom_point": "0101000020E61000001CFE0548D5F95DC0C44A3FC05E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.902494289999964, 49.213226018000057 ], [ -119.902515044999987, 49.21306822800009 ], [ -119.901751076999986, 49.213024923000077 ], [ -119.897480629999905, 49.212782757000063 ], [ -119.897631935999954, 49.211633399000036 ], [ -119.897662769999968, 49.211399176000079 ], [ -119.898427804999983, 49.211763309000105 ], [ -119.901157607999934, 49.212667703000108 ], [ -119.902873789999973, 49.213109206000063 ], [ -119.90350889799997, 49.213156192000021 ], [ -119.904556408999909, 49.213003792000109 ], [ -119.905448389999933, 49.212972514000114 ], [ -119.907250203999979, 49.212936228000103 ], [ -119.907241062999944, 49.213912941000075 ], [ -119.907234706999958, 49.214482395000068 ], [ -119.907255736999943, 49.21527986500007 ], [ -119.907127573999901, 49.21552455000004 ], [ -119.902228438999956, 49.215246981000078 ], [ -119.902494289999964, 49.213226018000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4862053", "BldgCostT": "2538746", "sL_LossRatio": "0.999989106951341", "sL_AssetLoss": "151.931755", "sL_BldgLoss": "151.9301", "sL_StrLoss": "151.90036", "sL_NStrLoss": "0.02974", "sL_ContLoss": "0.001655", "geom_point": "0101000020E61000007CD8A8DAF0F45DC0A233DDA9889E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.825481308999912, 49.23860098800003 ], [ -119.825601190000015, 49.238228491000093 ], [ -119.826255604999943, 49.236831300000098 ], [ -119.826327583999927, 49.236579314000089 ], [ -119.82633362899999, 49.236558243000104 ], [ -119.82635294399995, 49.236490509000134 ], [ -119.828314593999934, 49.236603013000106 ], [ -119.828158032000019, 49.237778184000014 ], [ -119.829009346999911, 49.237826997000091 ], [ -119.828891486999964, 49.238711758000086 ], [ -119.82905090299991, 49.238720897000086 ], [ -119.828862437999973, 49.240135630000047 ], [ -119.827750693999974, 49.240151971000081 ], [ -119.82545042799994, 49.240185698000062 ], [ -119.825409316999966, 49.239119995000081 ], [ -119.825481308999912, 49.23860098800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99997641761082", "sL_AssetLoss": "86.50523", "sL_BldgLoss": "86.50319", "sL_StrLoss": "86.5", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.00204", "geom_point": "0101000020E6100000C5DF9B4B96025EC0CC19DD8308A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.038477705999981, 49.318638546000052 ], [ -120.042689535999983, 49.318871274000045 ], [ -120.042517705999984, 49.322474227000086 ], [ -120.041129180999945, 49.322397525000085 ], [ -120.038015294999965, 49.322225450000097 ], [ -120.038355531999926, 49.319586309000037 ], [ -120.038477705999981, 49.318638546000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999949291455809", "sL_AssetLoss": "181.03458", "sL_BldgLoss": "181.0254", "sL_StrLoss": "181", "sL_NStrLoss": "0.0254", "sL_ContLoss": "0.00918", "geom_point": "0101000020E610000084E27D0B21055EC0EB779B16C0AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.077994774999951, 49.359253376000062 ], [ -120.078417544, 49.356917491000033 ], [ -120.078809161999985, 49.356943911000073 ], [ -120.079797519999957, 49.357010614000039 ], [ -120.079894480999883, 49.356553473000062 ], [ -120.08066742599999, 49.356114004000133 ], [ -120.080755541999949, 49.355638786000043 ], [ -120.080692727, 49.355218561000129 ], [ -120.078539781999936, 49.354783167000086 ], [ -120.07849575399996, 49.353995556000044 ], [ -120.078707006999963, 49.353896611000039 ], [ -120.079010788999966, 49.353643090000055 ], [ -120.0796233, 49.352839790000068 ], [ -120.080315105999929, 49.352317095000046 ], [ -120.080592618999972, 49.351344403000034 ], [ -120.080503881999945, 49.350766191000091 ], [ -120.080142618999915, 49.350343206000062 ], [ -120.080342417999987, 49.34977209700007 ], [ -120.080740117999966, 49.349924898000033 ], [ -120.08069625499995, 49.350267367000122 ], [ -120.08085454899998, 49.350276048000076 ], [ -120.080506429999929, 49.352993893000104 ], [ -120.081253210999961, 49.353034844000071 ], [ -120.081195782999927, 49.353483219000076 ], [ -120.081303837999926, 49.353489144000058 ], [ -120.081246956999976, 49.353933255000058 ], [ -120.081815549999973, 49.353964431000044 ], [ -120.081725890999962, 49.354664507000052 ], [ -120.081956091999942, 49.354677129000052 ], [ -120.081925094999946, 49.354919173000049 ], [ -120.081906890999974, 49.355061308000089 ], [ -120.082025815999927, 49.355067828000067 ], [ -120.082012620999976, 49.355170849000089 ], [ -120.082573801999899, 49.35520161400013 ], [ -120.08211444299999, 49.35878850900005 ], [ -120.081531224999978, 49.35875653600003 ], [ -120.081238027999973, 49.361045423000043 ], [ -120.080676939999975, 49.361014661000056 ], [ -120.080652612999984, 49.361204536000095 ], [ -120.079967975999978, 49.361166996000101 ], [ -120.079911104999951, 49.361610852000034 ], [ -120.079469088999929, 49.361586614000025 ], [ -120.079430498999969, 49.361887763000055 ], [ -120.078889126, 49.361858073000093 ], [ -120.07885658699999, 49.362111976000051 ], [ -120.078488649999926, 49.362091795000026 ], [ -120.078448086999927, 49.36240828400009 ], [ -120.078032212000011, 49.362385473000096 ], [ -120.077984385999954, 49.362758593000102 ], [ -120.077950872, 49.362756755000106 ], [ -120.077944600999928, 49.359653725000022 ], [ -120.077944354999957, 49.359531874000027 ], [ -120.077994774999951, 49.359253376000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999813075406183", "sL_AssetLoss": "324.1949", "sL_BldgLoss": "324.1343", "sL_StrLoss": "324", "sL_NStrLoss": "0.1343", "sL_ContLoss": "0.0606", "geom_point": "0101000020E6100000E0DED2BD10025EC09F3BE20CD5A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.03079982099996, 49.309471386000091 ], [ -120.030909626999915, 49.308620459000132 ], [ -120.030371676999948, 49.308590679000091 ], [ -120.029265504999927, 49.305731311000045 ], [ -120.029062657999987, 49.305354503000061 ], [ -120.031426292999953, 49.306001941000076 ], [ -120.03158196699998, 49.30601213900006 ], [ -120.031862506999957, 49.306619999000091 ], [ -120.032796189999956, 49.308019996000034 ], [ -120.032972908999938, 49.308726387000043 ], [ -120.033284312999939, 49.30927470300005 ], [ -120.034385506999911, 49.310651885000063 ], [ -120.034619203999924, 49.311351184000017 ], [ -120.035936904999971, 49.31252760100007 ], [ -120.036044379999964, 49.312656728000029 ], [ -120.036009026000031, 49.312930912000077 ], [ -120.034829496000015, 49.312865671000061 ], [ -120.034505693999975, 49.315376239 ], [ -120.034001164999978, 49.315348329000088 ], [ -120.030331422999907, 49.315145251000075 ], [ -120.030547823999925, 49.310720591000113 ], [ -120.03063796899994, 49.310725582000011 ], [ -120.03079982099996, 49.309471386000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999939639689681", "sL_AssetLoss": "270.045", "sL_BldgLoss": "270.0287", "sL_StrLoss": "270", "sL_NStrLoss": "0.0287", "sL_ContLoss": "0.0163", "geom_point": "0101000020E6100000C69B25960E035EC0D581A4360EAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.045760186999985, 49.331313941000104 ], [ -120.0460841399999, 49.328798346000092 ], [ -120.043936591999952, 49.328679797000063 ], [ -120.044349229999909, 49.325476270000095 ], [ -120.044398605999959, 49.32509290200008 ], [ -120.045613600999928, 49.325159978000038 ], [ -120.046369904999949, 49.325363996000071 ], [ -120.048376274999924, 49.326125896000065 ], [ -120.049619811999975, 49.32674258600008 ], [ -120.049697845999944, 49.326787854000038 ], [ -120.049553326999984, 49.327910857000084 ], [ -120.051700855999954, 49.328029295000078 ], [ -120.051239375999941, 49.331616205000088 ], [ -120.04871448399993, 49.331476952000095 ], [ -120.045760186999985, 49.331313941000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.99996669975821", "sL_AssetLoss": "546.24228", "sL_BldgLoss": "546.22409", "sL_StrLoss": "546.2", "sL_NStrLoss": "0.02409", "sL_ContLoss": "0.01819", "geom_point": "0101000020E61000008BA1A4D95F035EC0216960794AAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.050449396999952, 49.341510558000024 ], [ -120.050465518999957, 49.341241062000044 ], [ -120.049640639999936, 49.341219993000053 ], [ -120.049624513999959, 49.341489487000025 ], [ -120.050449396999952, 49.341510558000024 ], [ -120.050401031999968, 49.342319042000028 ], [ -120.049988583999934, 49.342308507000013 ], [ -120.049972460000021, 49.342578001000057 ], [ -120.048735111999946, 49.342546387 ], [ -120.04871898, 49.342815881000021 ], [ -120.04789407699991, 49.342794798000043 ], [ -120.047877940999967, 49.343064292000101 ], [ -120.050352666, 49.343127525000121 ], [ -120.050336542999958, 49.343397019000065 ], [ -120.050749, 49.343407553000084 ], [ -120.050703194999983, 49.344173265000052 ], [ -120.050700635999988, 49.344216035000031 ], [ -120.04946324699992, 49.344184429000023 ], [ -120.049451737999931, 49.344376718000078 ], [ -120.049447117999946, 49.344453924000021 ], [ -120.049034651999975, 49.34444338400003 ], [ -120.04901852099999, 49.344712879000042 ], [ -120.048606053999961, 49.344702339000015 ], [ -120.048589920999945, 49.344971833000066 ], [ -120.04817745299999, 49.344961291000104 ], [ -120.048161314999945, 49.345230785000062 ], [ -120.046511432999964, 49.345188603000068 ], [ -120.046526463999939, 49.34493767599999 ], [ -120.046576009999981, 49.344110630000053 ], [ -120.04616354699999, 49.344100082000054 ], [ -120.046195839999939, 49.34356109400003 ], [ -120.045783382, 49.343550544000067 ], [ -120.045799530999957, 49.343281051000105 ], [ -120.045387075999955, 49.343270500000116 ], [ -120.04540322599999, 49.343001006000087 ], [ -120.044990774000013, 49.34299045300007 ], [ -120.045039228999954, 49.342181974 ], [ -120.045451672999945, 49.342192527000101 ], [ -120.045467821999978, 49.341923033000064 ], [ -120.046292709999989, 49.341944133000077 ], [ -120.046308852999971, 49.341674640000065 ], [ -120.047546177999919, 49.341706279000043 ], [ -120.047578451, 49.341167292000073 ], [ -120.047166013999984, 49.341156747000099 ], [ -120.047230567999918, 49.340078772 ], [ -120.048055423999955, 49.34009985900007 ], [ -120.04808769099999, 49.339560871000081 ], [ -120.047262842999885, 49.339539784000067 ], [ -120.047327389999978, 49.338461809000066 ], [ -120.046914975999968, 49.338451263000131 ], [ -120.04698043799999, 49.33735810400001 ], [ -120.04699566699999, 49.337103794000043 ], [ -120.047773610999954, 49.337123684000062 ], [ -120.048645281999967, 49.337145964000051 ], [ -120.04866141, 49.336876470000028 ], [ -120.050723420999972, 49.336929149000099 ], [ -120.05070730599995, 49.337198643000079 ], [ -120.051121287999976, 49.337209215 ], [ -120.051184044999957, 49.33672153800007 ], [ -120.050595013999938, 49.33668906000004 ], [ -120.050939784999969, 49.334009939000026 ], [ -120.051056593999945, 49.33310218 ], [ -120.056010154999967, 49.333375204000063 ], [ -120.056390985999954, 49.333904996000065 ], [ -120.05687480099999, 49.334340789000088 ], [ -120.057410420999943, 49.334597100000046 ], [ -120.05811300499991, 49.334803604000136 ], [ -120.058511587999959, 49.335048608000079 ], [ -120.059594106999924, 49.335363384000082 ], [ -120.060214319999929, 49.33534340600005 ], [ -120.060400808999958, 49.335213790000076 ], [ -120.060626235999948, 49.335184256000026 ], [ -120.060587377000019, 49.335486727000017 ], [ -120.060931306999947, 49.335505659000084 ], [ -120.060470467999934, 49.339092569000059 ], [ -120.05666821599999, 49.33888320700003 ], [ -120.054990335999946, 49.338790776000089 ], [ -120.05506371099996, 49.338220220000046 ], [ -120.054719762999952, 49.33820127000012 ], [ -120.054758765999949, 49.337898002000088 ], [ -120.05458027899999, 49.337888167000088 ], [ -120.054634849999928, 49.337463861000117 ], [ -120.05411197399999, 49.337435049000078 ], [ -120.051939436999959, 49.337315307000075 ], [ -120.051928411999953, 49.337499728000033 ], [ -120.052340819999927, 49.337510256000023 ], [ -120.052309486999931, 49.338034448000016 ], [ -120.052292491999964, 49.338318741000144 ], [ -120.05023042, 49.338266090000062 ], [ -120.050246540999979, 49.33799659400006 ], [ -120.049009305999959, 49.337964985000092 ], [ -120.048977050999923, 49.338503975000073 ], [ -120.049801882999986, 49.338525049000054 ], [ -120.049785758999988, 49.338794543000127 ], [ -120.050610595999956, 49.33881561200009 ], [ -120.050594477999979, 49.33908510700018 ], [ -120.051419321, 49.339106169000054 ], [ -120.051403205999989, 49.339375664000087 ], [ -120.051815629999965, 49.339386194000078 ], [ -120.051767290999962, 49.34019467800006 ], [ -120.052179723, 49.340205206000107 ], [ -120.052099164999973, 49.341552681000096 ], [ -120.050449396999952, 49.341510558000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999721396881919", "sL_AssetLoss": "123.1142", "sL_BldgLoss": "123.0799", "sL_StrLoss": "123", "sL_NStrLoss": "0.0799", "sL_ContLoss": "0.0343", "geom_point": "0101000020E6100000425A84DE72045EC021395F0DCCAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.067332095999973, 49.341129992000077 ], [ -120.06746701899999, 49.340728403000099 ], [ -120.067516440999924, 49.340668171000047 ], [ -120.071039392999964, 49.34086179400007 ], [ -120.071002599999971, 49.3411486480001 ], [ -120.07164749199994, 49.341184079000115 ], [ -120.071263270999964, 49.344179715000045 ], [ -120.070639394999944, 49.34385879500006 ], [ -120.070139018999924, 49.343702099000083 ], [ -120.068319096999971, 49.343304791000072 ], [ -120.067706213999912, 49.342965805000091 ], [ -120.067245781999986, 49.342360497000058 ], [ -120.067332095999973, 49.341129992000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999955424208841", "sL_AssetLoss": "81.21", "sL_BldgLoss": "81.20638", "sL_StrLoss": "81.2", "sL_NStrLoss": "0.00638", "sL_ContLoss": "0.00362", "geom_point": "0101000020E6100000B89A4C4746FC5DC0DA967D2E059C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.939230080999948, 49.218228350000039 ], [ -119.94469523399998, 49.218536064000077 ], [ -119.944617950999927, 49.219127625000056 ], [ -119.944588519999925, 49.219352910000083 ], [ -119.943287911999946, 49.219518190000059 ], [ -119.9400794149999, 49.219392799000019 ], [ -119.939077321999903, 49.219396574000022 ], [ -119.939171935, 49.218673033000066 ], [ -119.939230080999948, 49.218228350000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.999975202014", "sL_AssetLoss": "594.40311", "sL_BldgLoss": "594.38837", "sL_StrLoss": "594.3", "sL_NStrLoss": "0.08837", "sL_ContLoss": "0.01474", "geom_point": "0101000020E610000088AF7E852FFE5DC080D2F5E91D9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.969281777999981, 49.221948410000138 ], [ -119.969330495999913, 49.221573998000075 ], [ -119.96733883899999, 49.221462357000085 ], [ -119.967641976999943, 49.219133265000082 ], [ -119.967805701999936, 49.217875211000106 ], [ -119.969679379999945, 49.21798024 ], [ -119.969789659999947, 49.217132555000028 ], [ -119.975254884999956, 49.217438721000093 ], [ -119.975249035, 49.217483745000052 ], [ -119.975850240999989, 49.217517408000042 ], [ -119.976009064999971, 49.2175263 ], [ -119.9759360499999, 49.218088125000044 ], [ -119.976025118999971, 49.218093113000073 ], [ -119.975755292999978, 49.218370313000072 ], [ -119.975513903999953, 49.218898593000041 ], [ -119.975310188, 49.219848609000088 ], [ -119.974964195999974, 49.220486587000032 ], [ -119.974939264999961, 49.221645600000031 ], [ -119.974827549999929, 49.221639344000046 ], [ -119.97474756699998, 49.222254599000081 ], [ -119.969281777999981, 49.221948410000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999751006146731", "sL_AssetLoss": "368.6838", "sL_BldgLoss": "368.592", "sL_StrLoss": "368", "sL_NStrLoss": "0.592", "sL_ContLoss": "0.0918", "geom_point": "0101000020E6100000F82AE03B3D025EC0DE6BEFF02AA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.034007095999982, 49.296226508000068 ], [ -120.037119445999949, 49.296398717000038 ], [ -120.03665715299995, 49.299985735000071 ], [ -120.032479169999988, 49.29975454300007 ], [ -120.03243480499999, 49.299590107000014 ], [ -120.03246320599996, 49.299347998000073 ], [ -120.033248101999916, 49.297748600000062 ], [ -120.033920596999948, 49.296406989000104 ], [ -120.034007095999982, 49.296226508000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.9999863696437", "sL_AssetLoss": "358.02439", "sL_BldgLoss": "358.01951", "sL_StrLoss": "358", "sL_NStrLoss": "0.01951", "sL_ContLoss": "0.00488", "geom_point": "0101000020E610000083AAEA48A2FB5DC00E000B4F9E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.929272135999923, 49.213826206000128 ], [ -119.934736704999963, 49.214134427000019 ], [ -119.934284399999953, 49.217590980000075 ], [ -119.934267325999926, 49.217721449000081 ], [ -119.931951363999957, 49.217590856000051 ], [ -119.931869980999963, 49.218212491000081 ], [ -119.931778804999965, 49.218173707000084 ], [ -119.931208125999973, 49.217809106000125 ], [ -119.930276202999906, 49.217374702000022 ], [ -119.92850909299996, 49.216285196000065 ], [ -119.927808657999933, 49.21575415300002 ], [ -119.929010752, 49.215821993000098 ], [ -119.929016481999909, 49.21577824700011 ], [ -119.929272135999923, 49.213826206000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999974358858336", "sL_AssetLoss": "523.76763", "sL_BldgLoss": "523.7542", "sL_StrLoss": "523.7", "sL_NStrLoss": "0.0542", "sL_ContLoss": "0.01343", "geom_point": "0101000020E6100000249E261290FD5DC0972E0E782A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.957785807999954, 49.219425603000026 ], [ -119.957208808999908, 49.218981210000081 ], [ -119.956161384999959, 49.218432905000085 ], [ -119.955923418999973, 49.218346873000037 ], [ -119.955022914999944, 49.218021293000078 ], [ -119.954875486999981, 49.218061203000047 ], [ -119.955066801, 49.218298988000171 ], [ -119.955021513999924, 49.218435791000047 ], [ -119.954606659999939, 49.218336336000036 ], [ -119.954338291999974, 49.21827200300006 ], [ -119.953534180999924, 49.21792449700007 ], [ -119.953204750999987, 49.217699821000103 ], [ -119.957969530999975, 49.217967497000132 ], [ -119.957965568999953, 49.217997883000095 ], [ -119.958143827999962, 49.218007893000042 ], [ -119.958132137999954, 49.21809756400004 ], [ -119.959266596999953, 49.218161262000109 ], [ -119.959261054999956, 49.218203782000067 ], [ -119.959433393999987, 49.218213458000101 ], [ -119.959337693999927, 49.218947789000048 ], [ -119.960149117999947, 49.21899334000009 ], [ -119.960100956999952, 49.219362933000042 ], [ -119.960608239999956, 49.219391408000021 ], [ -119.960735094999961, 49.218417820000049 ], [ -119.960784888999953, 49.218035649000051 ], [ -119.96625016199999, 49.21834227100009 ], [ -119.96613116199994, 49.219256415000132 ], [ -119.965783172999949, 49.221929407000118 ], [ -119.964465035999979, 49.221855481000041 ], [ -119.964288481, 49.223211239000122 ], [ -119.962339223999933, 49.223101886000073 ], [ -119.96141099299993, 49.22218569800004 ], [ -119.958635437999945, 49.22025936799999 ], [ -119.958560714999962, 49.220207508000044 ], [ -119.957785807999954, 49.219425603000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999954237416676", "sL_AssetLoss": "355.09359", "sL_BldgLoss": "355.07734", "sL_StrLoss": "355", "sL_NStrLoss": "0.07734", "sL_ContLoss": "0.01625", "geom_point": "0101000020E6100000A7265EF196025EC05D7B0B908DA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.037956598, 49.291437755000068 ], [ -120.043431023999972, 49.291740433000072 ], [ -120.042969267, 49.295327502000063 ], [ -120.037494419999987, 49.295024803000075 ], [ -120.037956598, 49.291437755000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963302752293578", "sL_AssetLoss": "0.02834", "sL_BldgLoss": "0.0273", "sL_StrLoss": "0.0008", "sL_NStrLoss": "0.0265", "sL_ContLoss": "0.00104", "geom_point": "0101000020E61000001042DD9389015EC07418DD8BF9AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.023761897999975, 49.358101139000055 ], [ -120.024999552999972, 49.358068729000088 ], [ -120.025115358999955, 49.359955055000079 ], [ -120.022639951999935, 49.360019867000048 ], [ -120.022590359999967, 49.359211440000074 ], [ -120.023002922999979, 49.359200641000015 ], [ -120.022986388999968, 49.35893116600004 ], [ -120.023398948999926, 49.358920367000053 ], [ -120.023382414999929, 49.358650891000103 ], [ -120.023794969999969, 49.358640091000048 ], [ -120.023761897999975, 49.358101139000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0.972271914132379", "sL_AssetLoss": "0.013416", "sL_BldgLoss": "0.013044", "sL_StrLoss": "0.000344", "sL_NStrLoss": "0.0127", "sL_ContLoss": "0.000372", "geom_point": "0101000020E61000008C8D92BA11FD5DC0D894D002599C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.954215925999947, 49.222273494000035 ], [ -119.954278156999976, 49.22179642 ], [ -119.952976216999971, 49.221723262000118 ], [ -119.952981693, 49.221681282000141 ], [ -119.95274811199999, 49.221668155000081 ], [ -119.952759893999911, 49.221577857000135 ], [ -119.952549811000011, 49.22156605 ], [ -119.952550694999957, 49.221559278000051 ], [ -119.952422006999967, 49.221552046000113 ], [ -119.952424402999924, 49.221533688000058 ], [ -119.952240303999986, 49.221523341000065 ], [ -119.952247883999959, 49.221465246000037 ], [ -119.951169173999915, 49.22140461200005 ], [ -119.951284952999984, 49.220517464000096 ], [ -119.952316647999936, 49.220611220000052 ], [ -119.952591482999964, 49.220636187000125 ], [ -119.95308685599997, 49.220681208000073 ], [ -119.953114392999908, 49.220683688000101 ], [ -119.953277350999912, 49.220698500000047 ], [ -119.954348343999925, 49.220795819000095 ], [ -119.954856537999973, 49.220916465000094 ], [ -119.955245490999985, 49.221008819000104 ], [ -119.956082343999938, 49.221346711000152 ], [ -119.956917372999953, 49.221888633000077 ], [ -119.957491587999982, 49.222435783000101 ], [ -119.957511158999949, 49.222458586000108 ], [ -119.954215925999947, 49.222273494000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "0.999843878005952", "sL_AssetLoss": "310.6545", "sL_BldgLoss": "310.606", "sL_StrLoss": "310.0145", "sL_NStrLoss": "0.5915", "sL_ContLoss": "0.0485", "geom_point": "0101000020E610000058866155B7065EC0B8F5E4AB2EAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.102260797, 49.35993240400007 ], [ -120.103695903999935, 49.359402600000045 ], [ -120.104992209999963, 49.359156201000083 ], [ -120.10542521099994, 49.359274387000042 ], [ -120.105596685999942, 49.359422489000103 ], [ -120.10628959099995, 49.359593390000057 ], [ -120.107801691999967, 49.35964041400004 ], [ -120.107857042999967, 49.359619644000105 ], [ -120.107734850999961, 49.360577857000074 ], [ -120.107564580999934, 49.361913009000098 ], [ -120.107443281999934, 49.361906388000065 ], [ -120.107398092999986, 49.362260712000065 ], [ -120.101914913999963, 49.361961308000048 ], [ -120.102049397999949, 49.360907787000052 ], [ -120.10217392399997, 49.359932241000074 ], [ -120.102260797, 49.35993240400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.962525268232001", "sL_AssetLoss": "0.12862", "sL_BldgLoss": "0.1238", "sL_StrLoss": "0.0038", "sL_NStrLoss": "0.12", "sL_ContLoss": "0.00482", "geom_point": "0101000020E6100000B70939E70E095EC04770C8AB98AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.139566187999918, 49.371694902000073 ], [ -120.138471916999933, 49.371082498000099 ], [ -120.1383472589999, 49.370988193000166 ], [ -120.1400989, 49.371083257000123 ], [ -120.140868812999926, 49.371434191000034 ], [ -120.141411327999933, 49.371565706000098 ], [ -120.142565695999934, 49.371607489000127 ], [ -120.142708823999968, 49.371598633000126 ], [ -120.142682320999953, 49.371807659000048 ], [ -120.143715201999939, 49.371863676000075 ], [ -120.143712418999911, 49.371885627000076 ], [ -120.144453508999945, 49.371925813000075 ], [ -120.144119919999952, 49.372068102000078 ], [ -120.143872881999926, 49.372287403000087 ], [ -120.143052702999952, 49.372653411000059 ], [ -120.142538421999959, 49.372713303000133 ], [ -120.141087292999899, 49.372083815000039 ], [ -120.139566187999918, 49.371694902000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4292000", "BldgCostT": "2960000", "sL_LossRatio": "0.999994441470175", "sL_AssetLoss": "465.23093", "sL_BldgLoss": "465.228344", "sL_StrLoss": "465.200324", "sL_NStrLoss": "0.02802", "sL_ContLoss": "0.002586", "geom_point": "0101000020E6100000A37FD5D33FFA5DC0F9E307F8FFAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.907641402999928, 49.357426328000017 ], [ -119.913122768999926, 49.357735577000042 ], [ -119.912650260999925, 49.361321729000124 ], [ -119.907168472999956, 49.361012458000076 ], [ -119.907641402999928, 49.357426328000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999770802012238", "sL_AssetLoss": "348.6069", "sL_BldgLoss": "348.527", "sL_StrLoss": "348", "sL_NStrLoss": "0.527", "sL_ContLoss": "0.0799", "geom_point": "0101000020E6100000C1EE6C76010B5EC02B75A0B914B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169273495999931, 49.383956102000113 ], [ -120.169413302999942, 49.38284873000007 ], [ -120.169465769999974, 49.382433144000053 ], [ -120.170646083999912, 49.382536005000063 ], [ -120.172654610999984, 49.383063008000072 ], [ -120.173641499, 49.383149897000045 ], [ -120.174946597999977, 49.382770429000068 ], [ -120.174899565999979, 49.383143319000069 ], [ -120.174759712999943, 49.38425208400011 ], [ -120.169273495999931, 49.383956102000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999971907340162", "sL_AssetLoss": "177.62647", "sL_BldgLoss": "177.62148", "sL_StrLoss": "177.6", "sL_NStrLoss": "0.02148", "sL_ContLoss": "0.00499", "geom_point": "0101000020E6100000162002F5C3005EC02D0FEBF084A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.01079233699997, 49.254951868000077 ], [ -120.010871145999957, 49.254342438000073 ], [ -120.01085197799992, 49.25434137200007 ], [ -120.010894927999971, 49.254009240000109 ], [ -120.010801998999938, 49.254004071000054 ], [ -120.011028838999934, 49.252249814000059 ], [ -120.012520394999967, 49.253465519000045 ], [ -120.013223979999978, 49.254201997000123 ], [ -120.013711701999981, 49.25488298500003 ], [ -120.013715886999961, 49.254891590000057 ], [ -120.013827035999924, 49.255120600000076 ], [ -120.01079233699997, 49.254951868000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14088417", "BldgCostT": "9506667", "sL_LossRatio": "0.918723950220238", "sL_AssetLoss": "2245.82273", "sL_BldgLoss": "2063.29113", "sL_StrLoss": "1992.15303", "sL_NStrLoss": "71.1381", "sL_ContLoss": "182.5316", "geom_point": "0101000020E6100000DEBDE5E2160D5EC062C9A87428B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.212231311, 49.399755541000019 ], [ -120.212440715999932, 49.398085135000052 ], [ -120.210804771999932, 49.397997506000095 ], [ -120.210976621999976, 49.396626975000025 ], [ -120.209052203999988, 49.396523862000038 ], [ -120.209098587999932, 49.396154048000085 ], [ -120.207891090999979, 49.396089331000056 ], [ -120.207918676999981, 49.395869440000098 ], [ -120.207403389999911, 49.395841818000065 ], [ -120.207424970999938, 49.395669793000145 ], [ -120.206947685999964, 49.395644207000075 ], [ -120.20698316, 49.395361478000105 ], [ -120.206324983999949, 49.395326190000048 ], [ -120.20635065299993, 49.395121629000137 ], [ -120.205909584999972, 49.395097980000102 ], [ -120.205935878999981, 49.394888441000063 ], [ -120.205180973999944, 49.394847960000035 ], [ -120.205232308999925, 49.394438941000082 ], [ -120.204768186999928, 49.394414050000144 ], [ -120.204816495000017, 49.394029163000013 ], [ -120.204340597999973, 49.394003639000118 ], [ -120.20453621899992, 49.392445125000066 ], [ -120.201703913999935, 49.39229317000013 ], [ -120.201823174999987, 49.391343431000095 ], [ -120.200806145999934, 49.39128884800008 ], [ -120.200979081999918, 49.389911820000037 ], [ -120.198476860999946, 49.389777488000085 ], [ -120.198550235999974, 49.389193462000108 ], [ -120.197498168999957, 49.389136964000024 ], [ -120.197562139999931, 49.388627852000113 ], [ -120.196888269999974, 49.388611503000028 ], [ -120.196889781999971, 49.388584972000011 ], [ -120.196518668999914, 49.388565038000088 ], [ -120.196558465999971, 49.388248377000089 ], [ -120.19609027499996, 49.388223226000036 ], [ -120.196124480999956, 49.387951078000079 ], [ -120.195196165, 49.387901203000098 ], [ -120.195240310999935, 49.387549999000036 ], [ -120.194605469999942, 49.387515888000053 ], [ -120.194863226999971, 49.385465438000047 ], [ -120.195034251999985, 49.384104843000038 ], [ -120.196491984999952, 49.38457980400009 ], [ -120.197851290999949, 49.384900189000106 ], [ -120.198019514999956, 49.385075404000119 ], [ -120.199703007999958, 49.386006789000142 ], [ -120.201234512999989, 49.387288897000076 ], [ -120.202344407999931, 49.388526297000062 ], [ -120.203364109999939, 49.389019005000073 ], [ -120.204371992999967, 49.389474796000037 ], [ -120.204796689999952, 49.389998908000038 ], [ -120.205097016999943, 49.390770808000113 ], [ -120.205058185, 49.391696505000048 ], [ -120.20514632199999, 49.392076803000073 ], [ -120.206284684999943, 49.39340839500008 ], [ -120.207244690999957, 49.393979493000124 ], [ -120.209222076999964, 49.394603294000042 ], [ -120.2097041869999, 49.39482269100003 ], [ -120.211520698999948, 49.395882295000064 ], [ -120.212577097999954, 49.396943309000065 ], [ -120.213891789999977, 49.397559990000069 ], [ -120.214274313999937, 49.39764120300007 ], [ -120.215750491, 49.39785619800012 ], [ -120.217925087, 49.39840924100011 ], [ -120.217719674999927, 49.400049339000084 ], [ -120.217051432999966, 49.400013583000067 ], [ -120.212231311, 49.399755541000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40174584", "BldgCostT": "27233334", "sL_LossRatio": "0.983722782986959", "sL_AssetLoss": "5601.67871", "sL_BldgLoss": "5510.49897", "sL_StrLoss": "5473.45557", "sL_NStrLoss": "37.0434", "sL_ContLoss": "91.17974", "geom_point": "0101000020E6100000DE6D837FB6045EC0A91F69AA86AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.06986531699999, 49.362333672 ], [ -120.069891094999946, 49.361900205000097 ], [ -120.06990247600001, 49.361708828000133 ], [ -120.070315093999909, 49.361719295000043 ], [ -120.070318711, 49.36165844600005 ], [ -120.070072703999969, 49.361644934000033 ], [ -120.070117961999955, 49.361292309000135 ], [ -120.068658395999975, 49.361212130000084 ], [ -120.066950144999922, 49.361118264000027 ], [ -120.066651316999952, 49.361101842000068 ], [ -120.066805763999952, 49.359899143000085 ], [ -120.066907116999928, 49.359109854000032 ], [ -120.067111896999947, 49.357515024000072 ], [ -120.067432103999948, 49.357532622000036 ], [ -120.067573136999982, 49.356434131000071 ], [ -120.068589026, 49.356489956000104 ], [ -120.068612400999953, 49.356307854000121 ], [ -120.06861268199999, 49.356307870000087 ], [ -120.068647712999933, 49.356034955000027 ], [ -120.069758898999979, 49.356096006000016 ], [ -120.069799379999964, 49.35578058100009 ], [ -120.070209351999921, 49.355803103000021 ], [ -120.070255677999938, 49.35544209100005 ], [ -120.070896836999921, 49.35547731000004 ], [ -120.071211168000019, 49.353027406000074 ], [ -120.071449916999882, 49.353040520000015 ], [ -120.07170915799999, 49.351019711000028 ], [ -120.07372062899999, 49.35113017300008 ], [ -120.073813100999985, 49.350409058000075 ], [ -120.075029408999939, 49.350475834000072 ], [ -120.075054450999986, 49.350280516000097 ], [ -120.074057277999941, 49.350225771000147 ], [ -120.074335479999945, 49.348056051000157 ], [ -120.073194529, 49.348027142000042 ], [ -120.073210529999983, 49.347757643000136 ], [ -120.072385527000023, 49.347736733000026 ], [ -120.072401531000011, 49.34746723300001 ], [ -120.071576533999945, 49.347446318000088 ], [ -120.071592541999976, 49.347176818000115 ], [ -120.069942558999927, 49.347134970000127 ], [ -120.069926540000012, 49.347404469000033 ], [ -120.06951404199998, 49.34739400200008 ], [ -120.069482001999958, 49.347933 ], [ -120.067831995999924, 49.347891120000064 ], [ -120.067912140999965, 49.346543629000116 ], [ -120.068324630999911, 49.346554100000048 ], [ -120.068356683999966, 49.346015103000084 ], [ -120.06753171299998, 49.34599415900005 ], [ -120.067595831999967, 49.344916165000029 ], [ -120.068991461999957, 49.344951592000101 ], [ -120.069245738999953, 49.344958046000031 ], [ -120.069242082999921, 49.345019568000033 ], [ -120.06922971799996, 49.345227544000096 ], [ -120.069844247, 49.345243138000058 ], [ -120.070054677999977, 49.34524847600003 ], [ -120.070048826999965, 49.3453469210001 ], [ -120.070038660999927, 49.345517976000089 ], [ -120.070404307000018, 49.345527251000071 ], [ -120.070451142999943, 49.345528439000041 ], [ -120.070449841999931, 49.345550351000121 ], [ -120.070435129999979, 49.345797938000032 ], [ -120.070964374000013, 49.345811362000148 ], [ -120.071260098999957, 49.345818863000105 ], [ -120.07125188, 49.345957206000051 ], [ -120.071244088999961, 49.346088361000056 ], [ -120.071524449999941, 49.346095471000048 ], [ -120.071656574999935, 49.346098822000037 ], [ -120.071652904999922, 49.346160631000053 ], [ -120.071640567999978, 49.346368320000053 ], [ -120.072053056999948, 49.346378779000105 ], [ -120.07205393199996, 49.346364054000034 ], [ -120.072069063999933, 49.346109279000061 ], [ -120.072481549999964, 49.346119736000034 ], [ -120.072529561999986, 49.345311237000097 ], [ -120.07624190199999, 49.345405277000111 ], [ -120.076257883999972, 49.345135776000092 ], [ -120.077495327999927, 49.34516709600009 ], [ -120.07747935299993, 49.345436597000059 ], [ -120.077873168999986, 49.345446564000092 ], [ -120.078107187999976, 49.345667496000026 ], [ -120.078260506999953, 49.346196763000059 ], [ -120.078224473999953, 49.346804756000047 ], [ -120.078440062999917, 49.34681658500002 ], [ -120.07870047899999, 49.347715497000046 ], [ -120.078969385999955, 49.348055896000076 ], [ -120.079606712999961, 49.349384692000115 ], [ -120.080342417999987, 49.34977209700007 ], [ -120.080142618999915, 49.350343206000062 ], [ -120.080503881999945, 49.350766191000091 ], [ -120.080592618999972, 49.351344403000034 ], [ -120.080315105999929, 49.352317095000046 ], [ -120.0796233, 49.352839790000068 ], [ -120.079010788999966, 49.353643090000055 ], [ -120.078707006999963, 49.353896611000039 ], [ -120.07849575399996, 49.353995556000044 ], [ -120.078539781999936, 49.354783167000086 ], [ -120.080692727, 49.355218561000129 ], [ -120.080755541999949, 49.355638786000043 ], [ -120.08066742599999, 49.356114004000133 ], [ -120.079894480999883, 49.356553473000062 ], [ -120.079797519999957, 49.357010614000039 ], [ -120.078809161999985, 49.356943911000073 ], [ -120.078417544, 49.356917491000033 ], [ -120.077994774999951, 49.359253376000062 ], [ -120.077944354999957, 49.359531874000027 ], [ -120.077944600999928, 49.359653725000022 ], [ -120.077950872, 49.362756755000106 ], [ -120.077581629999941, 49.362736501000072 ], [ -120.077529186999968, 49.363145603000085 ], [ -120.072046097999973, 49.362844685 ], [ -120.072119308, 49.362274087000017 ], [ -120.072149889999977, 49.362035725000062 ], [ -120.071949549999914, 49.362030645000061 ], [ -120.071933534999985, 49.362300144000095 ], [ -120.071520910999965, 49.362289683 ], [ -120.071516103999969, 49.362370582000075 ], [ -120.071512918999986, 49.362424158000103 ], [ -120.071646395999934, 49.36243148800002 ], [ -120.07169494499999, 49.362434153000052 ], [ -120.07203854299992, 49.362453020000025 ], [ -120.07157829499999, 49.366039833000066 ], [ -120.06737069199994, 49.365808723000022 ], [ -120.066998903999902, 49.36578829300008 ], [ -120.066094901000014, 49.365738614000037 ], [ -120.066442787, 49.363030013000078 ], [ -120.066555569999949, 49.362151825000076 ], [ -120.066851665999934, 49.36216809700003 ], [ -120.068063964999965, 49.362234713000092 ], [ -120.068477488999946, 49.362257433000082 ], [ -120.06986531699999, 49.362333672 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5809667", "BldgCostT": "4006667", "sL_LossRatio": "0.999927457458914", "sL_AssetLoss": "849.57046", "sL_BldgLoss": "849.50883", "sL_StrLoss": "849.00623", "sL_NStrLoss": "0.5026", "sL_ContLoss": "0.06163", "geom_point": "0101000020E6100000E188E6E80E095EC0FAC59548DCAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.138250937999914, 49.375452872000061 ], [ -120.138285459999949, 49.375180842000077 ], [ -120.13777544199999, 49.375153160000089 ], [ -120.137849084, 49.374572908000104 ], [ -120.136816147999951, 49.374516834000104 ], [ -120.137117329999953, 49.372143947000048 ], [ -120.13727142599997, 49.370929792000055 ], [ -120.137502759999975, 49.370942350000071 ], [ -120.137777302, 49.371182212000129 ], [ -120.138761107999983, 49.371810284000084 ], [ -120.14053181499996, 49.372411292000017 ], [ -120.141820792, 49.372992400000037 ], [ -120.142716475000029, 49.373203194000041 ], [ -120.142964779999915, 49.373218801000064 ], [ -120.143565193999976, 49.373070705000067 ], [ -120.144433684999953, 49.372589299000055 ], [ -120.144937798999976, 49.372448294000051 ], [ -120.145638385999916, 49.372492491000074 ], [ -120.146052883999957, 49.37271040600011 ], [ -120.146656099999944, 49.373453804000121 ], [ -120.146693409999926, 49.37371109300004 ], [ -120.146448258999953, 49.375645666000018 ], [ -120.145263625999988, 49.375581455000081 ], [ -120.143767656999941, 49.375500349000049 ], [ -120.143735949999979, 49.375750430000046 ], [ -120.138250937999914, 49.375452872000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999897570932129", "sL_AssetLoss": "200.1385", "sL_BldgLoss": "200.118", "sL_StrLoss": "200", "sL_NStrLoss": "0.118", "sL_ContLoss": "0.0205", "geom_point": "0101000020E61000004ACDA2A0A9075EC010CF126484AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.118783779999944, 49.362622691000055 ], [ -120.119253998999923, 49.3621214080001 ], [ -120.119340778999941, 49.3618265980001 ], [ -120.119339783999948, 49.361708586000098 ], [ -120.12027818599995, 49.361759695000103 ], [ -120.120220552999953, 49.362212579000094 ], [ -120.120703601999935, 49.362238884000135 ], [ -120.120314193999945, 49.365298909000053 ], [ -120.119601599999896, 49.365143600000053 ], [ -120.119060280999975, 49.364501295000139 ], [ -120.118714419999947, 49.36358260100009 ], [ -120.118783779999944, 49.362622691000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13422833", "BldgCostT": "8993333", "sL_LossRatio": "0.999980756444508", "sL_AssetLoss": "1889.827481", "sL_BldgLoss": "1889.791114", "sL_StrLoss": "1889.502664", "sL_NStrLoss": "0.28845", "sL_ContLoss": "0.036367", "geom_point": "0101000020E61000001EF0B74532F55DC039CB13A590A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.828590191999965, 49.260334587000095 ], [ -119.828567886999949, 49.25970540000003 ], [ -119.828542620999883, 49.259012815000069 ], [ -119.828505702999948, 49.258001590000099 ], [ -119.828460311999919, 49.25761859400005 ], [ -119.828417703999932, 49.257471377000108 ], [ -119.82834708899999, 49.257227293000071 ], [ -119.828106283999944, 49.25663619200008 ], [ -119.827660390999981, 49.255940305000152 ], [ -119.826965315999956, 49.25474854300009 ], [ -119.830387793999989, 49.254944701000021 ], [ -119.830203533999949, 49.256327656000046 ], [ -119.830710372999974, 49.256356696000083 ], [ -119.83060836699994, 49.257122325000132 ], [ -119.830642824999927, 49.257124300000036 ], [ -119.830618715999933, 49.257305251000055 ], [ -119.831872297999979, 49.257377066000075 ], [ -119.831766713999954, 49.258169688000095 ], [ -119.831930446999962, 49.25817906599999 ], [ -119.831881978999959, 49.258542914000067 ], [ -119.831999867999954, 49.258549666000057 ], [ -119.831940170999971, 49.258997813000121 ], [ -119.832047595999924, 49.259003965000041 ], [ -119.831968213999957, 49.259599874000109 ], [ -119.832146130999931, 49.259610065000082 ], [ -119.83210504699997, 49.259918490000089 ], [ -119.832148250999978, 49.259920965000049 ], [ -119.832109409999987, 49.260212545000115 ], [ -119.832231966999984, 49.260219564000131 ], [ -119.832194406, 49.260501542000021 ], [ -119.835116892999963, 49.260668886000119 ], [ -119.83479057699995, 49.263119563000053 ], [ -119.834639346999907, 49.264255218000059 ], [ -119.83422947299999, 49.26423175300004 ], [ -119.834145378999906, 49.264863196000064 ], [ -119.833913844, 49.266601627000043 ], [ -119.833708737999942, 49.266589885000073 ], [ -119.833415739999936, 49.268789533000088 ], [ -119.830679440999958, 49.26863283800013 ], [ -119.830659522999937, 49.268782296000062 ], [ -119.830276250999958, 49.268760343000082 ], [ -119.830140551999961, 49.268107474000104 ], [ -119.83012621, 49.268038397000034 ], [ -119.829831581999926, 49.266920297000141 ], [ -119.829742932, 49.266584502000121 ], [ -119.829668609999942, 49.266302897000081 ], [ -119.829338679999921, 49.265049180000084 ], [ -119.829232196999939, 49.264644448000048 ], [ -119.82922037799996, 49.26459960300005 ], [ -119.829141806999971, 49.264279211000051 ], [ -119.828749896999952, 49.262681798000116 ], [ -119.828644911, 49.261164292000068 ], [ -119.828600506999976, 49.260463385000023 ], [ -119.828590191999965, 49.260334587000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "0.999906022191569", "sL_AssetLoss": "348.27371", "sL_BldgLoss": "348.24098", "sL_StrLoss": "348.00228", "sL_NStrLoss": "0.2387", "sL_ContLoss": "0.03273", "geom_point": "0101000020E6100000DAAF9696AC015EC01355096014A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.024730608999931, 49.303353082000051 ], [ -120.027833960999942, 49.303525035000035 ], [ -120.027826501999968, 49.303935458000055 ], [ -120.027821303999986, 49.304222401000047 ], [ -120.027602017999925, 49.305472785000056 ], [ -120.027609185999978, 49.306025997000063 ], [ -120.027885713, 49.30653259200006 ], [ -120.02857113099999, 49.307178454000073 ], [ -120.024267287999976, 49.306940010000076 ], [ -120.024730608999931, 49.303353082000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.999974067041786", "sL_AssetLoss": "164.655338", "sL_BldgLoss": "164.651068", "sL_StrLoss": "164.600858", "sL_NStrLoss": "0.05021", "sL_ContLoss": "0.00427", "geom_point": "0101000020E61000002D867A13E6F45DC074E5FDC9A9A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.826260540999911, 49.29223567200011 ], [ -119.82840406399994, 49.292358448000101 ], [ -119.82792567099996, 49.295944580000018 ], [ -119.8238746, 49.295712508000115 ], [ -119.824549501, 49.294729106000013 ], [ -119.824688904999931, 49.294525910000097 ], [ -119.826260540999911, 49.29223567200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9151917", "BldgCostT": "6311667", "sL_LossRatio": "0.999916053527956", "sL_AssetLoss": "1210.295055", "sL_BldgLoss": "1210.193455", "sL_StrLoss": "1209.507955", "sL_NStrLoss": "0.6855", "sL_ContLoss": "0.1016", "geom_point": "0101000020E610000040127A2649075EC0CDE0735057AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.114763441999941, 49.365527152000062 ], [ -120.114821130999943, 49.365074273000062 ], [ -120.114338056999898, 49.365047941000022 ], [ -120.114491835999956, 49.363840798000055 ], [ -120.109728087999926, 49.363581018000055 ], [ -120.10997142599993, 49.361672255 ], [ -120.108535171999961, 49.361593891000084 ], [ -120.108656387999972, 49.360643236000044 ], [ -120.108808181999919, 49.359452704000049 ], [ -120.109607708999945, 49.359379783000108 ], [ -120.112255179999977, 49.358834293000065 ], [ -120.113688407, 49.358797104000125 ], [ -120.115498520999935, 49.358986704000081 ], [ -120.116025253999979, 49.359134754000117 ], [ -120.115748890999967, 49.361304921000048 ], [ -120.115540928999906, 49.361293586000052 ], [ -120.115514619999928, 49.36150016800007 ], [ -120.118870752999953, 49.361683038000095 ], [ -120.118540902999911, 49.36229228400007 ], [ -120.118164797999981, 49.362598499000114 ], [ -120.118123989999901, 49.362830697000042 ], [ -120.117870291999935, 49.363175303000091 ], [ -120.117833401, 49.363561297000061 ], [ -120.118141004999941, 49.364432905000051 ], [ -120.118774316999946, 49.365123599000135 ], [ -120.119309512999934, 49.365424101000052 ], [ -120.119986514999979, 49.365620700000143 ], [ -120.120267477999988, 49.365665991000107 ], [ -120.120247125999938, 49.365825902999987 ], [ -120.118978607999964, 49.365756819000083 ], [ -120.114763441999941, 49.365527152000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999696696846518", "sL_AssetLoss": "126.2763", "sL_BldgLoss": "126.238", "sL_StrLoss": "126", "sL_NStrLoss": "0.238", "sL_ContLoss": "0.0383", "geom_point": "0101000020E61000000DB6A6B3320C5EC02FAE2B45F6B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.188105722, 49.382281160000048 ], [ -120.188178969999967, 49.381699077000114 ], [ -120.189241281999969, 49.381971087000096 ], [ -120.190920161999955, 49.382400934000081 ], [ -120.193529896999948, 49.383069049000071 ], [ -120.193486873999959, 49.383411253000084 ], [ -120.193000497999918, 49.383216812000065 ], [ -120.191662607999959, 49.38297749200008 ], [ -120.189886996999945, 49.382466209000057 ], [ -120.189195203999986, 49.382378386000049 ], [ -120.188146808999988, 49.382289603000075 ], [ -120.188105722, 49.382281160000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.999987499000823", "sL_AssetLoss": "155.027608", "sL_BldgLoss": "155.02567", "sL_StrLoss": "155.00038", "sL_NStrLoss": "0.02529", "sL_ContLoss": "0.001938", "geom_point": "0101000020E6100000EC3191D22CF45DC04A7952CB7BA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.817229403999974, 49.306306008000028 ], [ -119.81733548399994, 49.306127293000038 ], [ -119.81687313899999, 49.309585795000039 ], [ -119.811467282999899, 49.309275619000111 ], [ -119.812067897999924, 49.309002524000086 ], [ -119.816085674999897, 49.307175407000052 ], [ -119.816679600000015, 49.306839099000079 ], [ -119.81693849499996, 49.30662540700007 ], [ -119.817041358999973, 49.306512448000099 ], [ -119.817229403999974, 49.306306008000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947917", "BldgCostT": "4791667", "sL_LossRatio": "0.999866363541195", "sL_AssetLoss": "863.5368", "sL_BldgLoss": "863.4214", "sL_StrLoss": "862.4164", "sL_NStrLoss": "1.005", "sL_ContLoss": "0.1154", "geom_point": "0101000020E61000009544596C51085EC0A14C1F9121AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.13169217699999, 49.37121980200002 ], [ -120.131951035999975, 49.369182011000177 ], [ -120.128446604999965, 49.368991518000072 ], [ -120.128471807999958, 49.368793226000037 ], [ -120.127803796999984, 49.368756902000058 ], [ -120.127845159999978, 49.368431491000088 ], [ -120.126178765999938, 49.368340857000121 ], [ -120.12619100699996, 49.368244584000109 ], [ -120.125340844999954, 49.368198335000038 ], [ -120.125347727999895, 49.368144214000033 ], [ -120.124283414999965, 49.368086306000116 ], [ -120.124284595999939, 49.368077024000065 ], [ -120.123565392000017, 49.368037886000053 ], [ -120.123774078999986, 49.366397237000072 ], [ -120.123854106999943, 49.365768044000092 ], [ -120.124266276999961, 49.365683394000051 ], [ -120.126442496999971, 49.365449810000051 ], [ -120.127888586, 49.365476803000099 ], [ -120.129035097999974, 49.365806797000133 ], [ -120.130890491999963, 49.366432515000071 ], [ -120.131399684999977, 49.36668739000006 ], [ -120.131894606999978, 49.367124585000084 ], [ -120.133365608999952, 49.368419292000091 ], [ -120.13462331, 49.369286593000069 ], [ -120.136250584999942, 49.370199504000027 ], [ -120.137004583999939, 49.370507097 ], [ -120.137274926999936, 49.370743296000057 ], [ -120.137176644999911, 49.371517694000083 ], [ -120.135979014999961, 49.371452668000131 ], [ -120.13169217699999, 49.37121980200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3272167", "BldgCostT": "2256667", "sL_LossRatio": "1", "sL_AssetLoss": "294.5", "sL_BldgLoss": "294.5", "sL_StrLoss": "294.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009864897339F55DC098D5E0221CA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.827950444999942, 49.291406648000098 ], [ -119.827954480999949, 49.291376385000042 ], [ -119.826969288999962, 49.291319954000059 ], [ -119.827146288000023, 49.291153368000096 ], [ -119.827574811999938, 49.290750101000121 ], [ -119.828024088999953, 49.290451490000095 ], [ -119.828986472999944, 49.289977207000035 ], [ -119.829723074999919, 49.289614179000068 ], [ -119.830104682999931, 49.289426094000113 ], [ -119.830624991999912, 49.289122492000061 ], [ -119.831381397999948, 49.288536208000011 ], [ -119.831840583999934, 49.288070097000073 ], [ -119.83216659299994, 49.287682304000057 ], [ -119.832323945999988, 49.287428799000111 ], [ -119.832330961999958, 49.287417492000017 ], [ -119.834418740999951, 49.28753697100003 ], [ -119.833940862999967, 49.291123155000058 ], [ -119.833506328999931, 49.291098291 ], [ -119.833423474999933, 49.29171996500002 ], [ -119.827950444999942, 49.291406648000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964055299539171", "sL_AssetLoss": "0.5425", "sL_BldgLoss": "0.523", "sL_StrLoss": "0.022", "sL_NStrLoss": "0.501", "sL_ContLoss": "0.0195", "geom_point": "0101000020E6100000DD4AC86A270C5EC09E94CD4511B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.18805804299997, 49.382660041000122 ], [ -120.188080656999929, 49.382480343000033 ], [ -120.189201506999964, 49.382638602000029 ], [ -120.189960705999937, 49.382855003 ], [ -120.19114228699999, 49.383396195000067 ], [ -120.192141986999957, 49.383511589000058 ], [ -120.19308040599999, 49.383749500000071 ], [ -120.193437816999946, 49.383801434000134 ], [ -120.193418878999964, 49.383952051000044 ], [ -120.191197960999943, 49.383832650000073 ], [ -120.18793257899992, 49.383657015000061 ], [ -120.18805804299997, 49.382660041000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999965412672266", "sL_AssetLoss": "248.64598", "sL_BldgLoss": "248.63738", "sL_StrLoss": "248.6", "sL_NStrLoss": "0.03738", "sL_ContLoss": "0.0086", "geom_point": "0101000020E610000003558ABA22FE5DC06D167132589D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96804273399998, 49.229774755000086 ], [ -119.968044692999953, 49.229759708000074 ], [ -119.967940231999947, 49.229753853000076 ], [ -119.9682098709999, 49.227682333000082 ], [ -119.969084441999939, 49.22815376500008 ], [ -119.96986115699994, 49.228405040000069 ], [ -119.970735118999968, 49.228597852000036 ], [ -119.973256263999971, 49.229153967000094 ], [ -119.975151954999944, 49.229572071000099 ], [ -119.975090899999969, 49.230041668000062 ], [ -119.975005339999953, 49.230036878000099 ], [ -119.975004196999947, 49.230045669000027 ], [ -119.973524802999947, 49.229962841000017 ], [ -119.973509435999972, 49.230081004000034 ], [ -119.96804273399998, 49.229774755000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999954043468159", "sL_AssetLoss": "80.946056", "sL_BldgLoss": "80.942336", "sL_StrLoss": "80.900736", "sL_NStrLoss": "0.0416", "sL_ContLoss": "0.00372", "geom_point": "0101000020E61000008FC3810C34FA5DC0F8557734A7B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.908940195999961, 49.386960894000012 ], [ -119.910591541999949, 49.386919300000066 ], [ -119.91067121399999, 49.388266807000029 ], [ -119.910258366999955, 49.388277210000062 ], [ -119.910290232999955, 49.388816213000062 ], [ -119.908225970999965, 49.388868199000086 ], [ -119.908146363999919, 49.387520688000031 ], [ -119.908559204999946, 49.387510294000023 ], [ -119.908543282999943, 49.387240792000043 ], [ -119.908956122999925, 49.387230397000074 ], [ -119.908940195999961, 49.386960894000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5239333", "BldgCostT": "3613333", "sL_LossRatio": "0.999714473940699", "sL_AssetLoss": "945.9732", "sL_BldgLoss": "945.7031", "sL_StrLoss": "944.0117", "sL_NStrLoss": "1.6914", "sL_ContLoss": "0.2701", "geom_point": "0101000020E610000072CD158C670D5EC0CC992F274FB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.212602384999954, 49.396224096000076 ], [ -120.212310286999951, 49.395802493000097 ], [ -120.211873983999936, 49.395467796000041 ], [ -120.20955171199995, 49.394359790000053 ], [ -120.207494302999962, 49.393689009000056 ], [ -120.20636988699998, 49.392870103000035 ], [ -120.20585751899992, 49.392192202000103 ], [ -120.205785077999977, 49.391507095000065 ], [ -120.205847007999949, 49.38996039400012 ], [ -120.204821505000012, 49.389081691000079 ], [ -120.203614595999937, 49.38850351000012 ], [ -120.202722992999966, 49.387942310000014 ], [ -120.201544195999986, 49.386861307000117 ], [ -120.200768203999928, 49.386419798000112 ], [ -120.200004689999957, 49.385797493999988 ], [ -120.199836898999934, 49.38558670400009 ], [ -120.198535108999963, 49.384754883000085 ], [ -120.19707718599993, 49.3844487080001 ], [ -120.19615019299998, 49.384021499000063 ], [ -120.196020361999942, 49.383980468000118 ], [ -120.197340469999972, 49.38405138500012 ], [ -120.198024189999984, 49.384246494000116 ], [ -120.198744261999977, 49.384537966000053 ], [ -120.199842645999937, 49.385192818000107 ], [ -120.199970174999962, 49.385288489000075 ], [ -120.200462028999965, 49.385657423000119 ], [ -120.203121481999958, 49.387652135000096 ], [ -120.204110148999945, 49.388325541000036 ], [ -120.205416548999921, 49.389215293000092 ], [ -120.20647831399998, 49.390141681000095 ], [ -120.208262139999931, 49.392050115000117 ], [ -120.208712705999986, 49.392532097000057 ], [ -120.209614415999908, 49.393271101000074 ], [ -120.21121461499996, 49.394244320000084 ], [ -120.21274097, 49.394903906000145 ], [ -120.214228000999938, 49.395457272000044 ], [ -120.21654016699992, 49.396317632 ], [ -120.216533036999934, 49.396374552000118 ], [ -120.216720045999963, 49.396384561000048 ], [ -120.218113707, 49.396903099000056 ], [ -120.217979725999953, 49.397972950000096 ], [ -120.217244994999959, 49.397748004000043 ], [ -120.214071893999943, 49.397051602000069 ], [ -120.213008521999981, 49.396593006000082 ], [ -120.212602384999954, 49.396224096000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40230417", "BldgCostT": "26801667", "sL_LossRatio": "0.999981750072332", "sL_AssetLoss": "3642.699369", "sL_BldgLoss": "3642.63289", "sL_StrLoss": "3642.10896", "sL_NStrLoss": "0.52393", "sL_ContLoss": "0.066479", "geom_point": "0101000020E6100000E54392514CFA5DC0F63BC1BC4FB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.903184571999958, 49.39770215900009 ], [ -119.903219407999984, 49.3974384220001 ], [ -119.903103086999948, 49.397431857000122 ], [ -119.90312667099991, 49.39725331000006 ], [ -119.902907692999932, 49.397240952000047 ], [ -119.902926123999947, 49.397101419000059 ], [ -119.902830998999946, 49.397096051000048 ], [ -119.902859452999948, 49.396880641000074 ], [ -119.902719608999973, 49.396872748000099 ], [ -119.902758010999904, 49.396582027000065 ], [ -119.902512021999982, 49.396568143000081 ], [ -119.902540972999986, 49.396348977000116 ], [ -119.902382630999966, 49.396340040000069 ], [ -119.90238810399994, 49.396298617000063 ], [ -119.900464025, 49.39619 ], [ -119.89904282699996, 49.396109749000054 ], [ -119.899123337999981, 49.395500600000048 ], [ -119.899042766999969, 49.395496050000133 ], [ -119.899516676999937, 49.391910139000046 ], [ -119.900307651999981, 49.391954807000104 ], [ -119.900547320999948, 49.390140865000077 ], [ -119.90003237799999, 49.390153795000074 ], [ -119.899984744999983, 49.38934528100004 ], [ -119.898333303999976, 49.389386727000016 ], [ -119.898269832999944, 49.388308709000093 ], [ -119.898682682999947, 49.38829834900011 ], [ -119.898650945, 49.387759341000091 ], [ -119.898238097999965, 49.387769699000081 ], [ -119.898227251999913, 49.387585476000069 ], [ -119.898190499999927, 49.386961185000111 ], [ -119.899429019999943, 49.386930106000094 ], [ -119.899444892999952, 49.387199611000057 ], [ -119.900270576999972, 49.387178884000036 ], [ -119.900302331999924, 49.387717892000133 ], [ -119.90071517699991, 49.387707526000071 ], [ -119.900731058999909, 49.387977029000076 ], [ -119.901143906999934, 49.387966663000064 ], [ -119.901160543999936, 49.388248981000046 ], [ -119.906625780999917, 49.388557431000073 ], [ -119.90657770899999, 49.388921661000055 ], [ -119.907114089999936, 49.38895191800006 ], [ -119.906942769999915, 49.390250012000109 ], [ -119.907066991999969, 49.390246887000039 ], [ -119.907090464999939, 49.390644329000082 ], [ -119.907776176999917, 49.390683005000014 ], [ -119.907741192999978, 49.390948101000056 ], [ -119.909886026999956, 49.391069047 ], [ -119.909880489999949, 49.391111018000117 ], [ -119.910115021999971, 49.39112424100005 ], [ -119.910086215999954, 49.391342612000059 ], [ -119.910336729000036, 49.391356735000045 ], [ -119.910310243999973, 49.391557520000099 ], [ -119.910732529999962, 49.391581325000125 ], [ -119.91065018800002, 49.392205574000052 ], [ -119.910835567999939, 49.392216023000081 ], [ -119.910755226999981, 49.392825099000063 ], [ -119.912151365999989, 49.392903789000044 ], [ -119.912139402999927, 49.392994501 ], [ -119.914053210999924, 49.39310233800007 ], [ -119.914044721999943, 49.393166732000111 ], [ -119.914245164999969, 49.393178024000065 ], [ -119.91433252199991, 49.392515384000063 ], [ -119.914486918999927, 49.392524082000058 ], [ -119.914520427999918, 49.392269888000087 ], [ -119.914601820999934, 49.392274473000072 ], [ -119.914745277999955, 49.391186189000024 ], [ -119.914913159999955, 49.391195647000089 ], [ -119.914939278999952, 49.390997493000093 ], [ -119.915107162999931, 49.391006950000047 ], [ -119.915133279999964, 49.390808798000052 ], [ -119.915401026, 49.390823880000049 ], [ -119.915418274999965, 49.390693004000092 ], [ -119.915704865999913, 49.390709146000106 ], [ -119.916099707999962, 49.387713011000052 ], [ -119.921584717999934, 49.388021818000077 ], [ -119.921486753999943, 49.38876589000013 ], [ -119.922602831999924, 49.388828691000107 ], [ -119.922577116999918, 49.389024045000021 ], [ -119.922716541999975, 49.389031889000094 ], [ -119.922499587999965, 49.390679967000061 ], [ -119.923063338999953, 49.390711683000113 ], [ -119.923012165, 49.391100443000035 ], [ -119.923057362999941, 49.39110298500006 ], [ -119.922982741999959, 49.391669865000075 ], [ -119.923308291999959, 49.391688179000049 ], [ -119.923291403999968, 49.391816479000106 ], [ -119.923300300999983, 49.391816979000104 ], [ -119.922828233999923, 49.395402995000026 ], [ -119.922823648999909, 49.395402737000055 ], [ -119.922814136999961, 49.395474995000072 ], [ -119.922809107999939, 49.395474713000056 ], [ -119.922802237999946, 49.39552689500011 ], [ -119.922504573999944, 49.395510151000053 ], [ -119.922330390999932, 49.396833103000112 ], [ -119.921019319999942, 49.396759339000042 ], [ -119.920990241999945, 49.396980133000099 ], [ -119.920549455999947, 49.396955330000033 ], [ -119.920537825999958, 49.397043644000064 ], [ -119.919990926000011, 49.397012867000029 ], [ -119.919989200999964, 49.397025957000032 ], [ -119.918773770999948, 49.396957548000081 ], [ -119.918762251999937, 49.397044984000033 ], [ -119.913276190999909, 49.396736038000022 ], [ -119.913284682999972, 49.396671644000072 ], [ -119.913275201999951, 49.396671111000082 ], [ -119.913261605999949, 49.396774213000079 ], [ -119.912840505999952, 49.396750487000098 ], [ -119.912781295999949, 49.396747151000042 ], [ -119.912747895999956, 49.397000424000062 ], [ -119.912383835999947, 49.396979911000088 ], [ -119.912354290999929, 49.397203932000075 ], [ -119.912234262, 49.397197169000052 ], [ -119.912215591999953, 49.397338736000052 ], [ -119.911720097999961, 49.397310813000011 ], [ -119.911704673999935, 49.39742774700003 ], [ -119.908769562999979, 49.397262301000033 ], [ -119.908670678999954, 49.398011616000097 ], [ -119.903184571999958, 49.39770215900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999851657853161", "sL_AssetLoss": "289.1963", "sL_BldgLoss": "289.1534", "sL_StrLoss": "288.9", "sL_NStrLoss": "0.2534", "sL_ContLoss": "0.0429", "geom_point": "0101000020E61000002B28354966085EC055315362F0AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.129106811999947, 49.365344403000023 ], [ -120.127143715999935, 49.364998307000107 ], [ -120.125380114999956, 49.36499970100008 ], [ -120.123912321999953, 49.3653103360001 ], [ -120.124021631999966, 49.364450865000094 ], [ -120.126740895999959, 49.364598815000129 ], [ -120.132498600999966, 49.366052389000075 ], [ -120.133307779999924, 49.366453001000131 ], [ -120.133918307999977, 49.366993605000033 ], [ -120.134987294999945, 49.368522595 ], [ -120.135674814999945, 49.369066504000052 ], [ -120.137485694999967, 49.369892052000047 ], [ -120.137435688999943, 49.370286092000036 ], [ -120.137417917999983, 49.370285127000066 ], [ -120.137402695999953, 49.370273609000094 ], [ -120.135752908999962, 49.369504483000085 ], [ -120.134637582999972, 49.368810890000091 ], [ -120.133662402999931, 49.368040407000123 ], [ -120.132311392999981, 49.366639016000136 ], [ -120.13173889399999, 49.36628290400013 ], [ -120.131095306999953, 49.366005200000089 ], [ -120.129106811999947, 49.365344403000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964139401762164", "sL_AssetLoss": "0.17819", "sL_BldgLoss": "0.1718", "sL_StrLoss": "0.0058", "sL_NStrLoss": "0.166", "sL_ContLoss": "0.00639", "geom_point": "0101000020E6100000451559C661045EC0DF0AF69912AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.066620252999897, 49.343360691000036 ], [ -120.066648444999942, 49.343345381000091 ], [ -120.06669889099993, 49.343444305000034 ], [ -120.066977201999975, 49.343647987000104 ], [ -120.068206096999987, 49.344039600000023 ], [ -120.069052600999939, 49.344177805000065 ], [ -120.071195675999931, 49.344706684000094 ], [ -120.07118742499992, 49.344771003000105 ], [ -120.067800602, 49.344584886000035 ], [ -120.067085752999944, 49.344545588000052 ], [ -120.067103775999954, 49.344274453000061 ], [ -120.066620252999897, 49.343360691000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4932417", "BldgCostT": "3401667", "sL_LossRatio": "0.999988046006833", "sL_AssetLoss": "607.077476", "sL_BldgLoss": "607.070219", "sL_StrLoss": "607.000619", "sL_NStrLoss": "0.0696", "sL_ContLoss": "0.007257", "geom_point": "0101000020E610000050CF50169D015EC0CB7EC44CAEA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.023276752999948, 49.297559806000024 ], [ -120.023692940999965, 49.294337636000058 ], [ -120.023335462999938, 49.294317815000099 ], [ -120.023798728999978, 49.29073082400005 ], [ -120.026687807999906, 49.290890978000064 ], [ -120.026654408999931, 49.291027604000099 ], [ -120.026884831999965, 49.294176715000091 ], [ -120.027056840999975, 49.296527159000092 ], [ -120.027148120999968, 49.297774380000128 ], [ -120.023276752999948, 49.297559806000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4553000", "BldgCostT": "3140000", "sL_LossRatio": "1", "sL_AssetLoss": "439", "sL_BldgLoss": "439", "sL_StrLoss": "439", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB4C4BCDDAF45DC00D029FDD29A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.822850409999916, 49.300049986000055 ], [ -119.822922662999986, 49.299508896000084 ], [ -119.822880644999969, 49.299506488000063 ], [ -119.823269510999978, 49.29659414400011 ], [ -119.823717825999935, 49.295940936000093 ], [ -119.828832995999946, 49.296233946000065 ], [ -119.82876081699996, 49.296775042000021 ], [ -119.828802832999941, 49.29677744800005 ], [ -119.82832442599999, 49.300363558000136 ], [ -119.822850409999916, 49.300049986000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999930885161131", "sL_AssetLoss": "92.02076", "sL_BldgLoss": "92.0144", "sL_StrLoss": "92", "sL_NStrLoss": "0.0144", "sL_ContLoss": "0.00636", "geom_point": "0101000020E61000001CA6E80E43075EC0A6C3B76ED2AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.115999889999969, 49.358630712000114 ], [ -120.11431609600001, 49.358237602000052 ], [ -120.112224087999948, 49.358194908000044 ], [ -120.111873694999957, 49.358293113000073 ], [ -120.111676182999958, 49.358310019000072 ], [ -120.111631799999955, 49.35746851200004 ], [ -120.113435093999954, 49.357566857000101 ], [ -120.113744998999934, 49.357610631000099 ], [ -120.11611789799997, 49.358407204000088 ], [ -120.116084824999973, 49.358666936000077 ], [ -120.115999889999969, 49.358630712000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999927049456765", "sL_AssetLoss": "261.135821", "sL_BldgLoss": "261.116771", "sL_StrLoss": "261.000671", "sL_NStrLoss": "0.1161", "sL_ContLoss": "0.01905", "geom_point": "0101000020E61000003CDA7A7EBF015EC0A533CDC777AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.025719610999928, 49.340606396000098 ], [ -120.025833395999925, 49.338719976000057 ], [ -120.026245804999974, 49.338730596000055 ], [ -120.02626205699994, 49.3384611070001 ], [ -120.026674463999925, 49.338471727000048 ], [ -120.026706962, 49.3379327480001 ], [ -120.027236590999934, 49.337946384000055 ], [ -120.027617196999969, 49.337956181000074 ], [ -120.028356573999972, 49.337975208000046 ], [ -120.028340332999974, 49.338244697000022 ], [ -120.029093049999958, 49.338264064000107 ], [ -120.029165144999936, 49.338265919000065 ], [ -120.029148909999904, 49.338535409000038 ], [ -120.029973727999945, 49.338556625000102 ], [ -120.029908799999959, 49.339634583000048 ], [ -120.029496381999962, 49.339623975000087 ], [ -120.029480147999934, 49.339893464000063 ], [ -120.027830469999913, 49.339851019000072 ], [ -120.02786295599999, 49.33931204200006 ], [ -120.027450541999912, 49.339301426000105 ], [ -120.027320570999976, 49.341457338000112 ], [ -120.026836198999902, 49.341444869000078 ], [ -120.025740022999955, 49.341416643000088 ], [ -120.024845980999885, 49.341393615000079 ], [ -120.024870543999967, 49.340986526000115 ], [ -120.024894762999935, 49.340585149000042 ], [ -120.025719610999928, 49.340606396000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0.947974232731576", "sL_AssetLoss": "0.179142", "sL_BldgLoss": "0.169822", "sL_StrLoss": "0.005522", "sL_NStrLoss": "0.1643", "sL_ContLoss": "0.00932", "geom_point": "0101000020E61000007CEDFC4F3C0A5EC0A0F409C997B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.157168249000037, 49.379506367000104 ], [ -120.15736183599995, 49.377976044000036 ], [ -120.159246200999959, 49.378732029000027 ], [ -120.160140347999956, 49.379031391000062 ], [ -120.161199864999944, 49.379315561000098 ], [ -120.161897594999957, 49.37950268000003 ], [ -120.162665775999955, 49.379708697000062 ], [ -120.162485908999912, 49.381131801000059 ], [ -120.161897700999958, 49.381034895000056 ], [ -120.160980814999945, 49.380707292000089 ], [ -120.160205104999989, 49.380534997000026 ], [ -120.158267883999912, 49.379713207000044 ], [ -120.157624812999927, 49.37964349100006 ], [ -120.157168249000037, 49.379506367000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999968723565571", "sL_AssetLoss": "250.34823", "sL_BldgLoss": "250.3404", "sL_StrLoss": "250.3", "sL_NStrLoss": "0.0404", "sL_ContLoss": "0.00783", "geom_point": "0101000020E6100000F2370CAC44FC5DC0591EDE52529C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.941774113999941, 49.220633304000074 ], [ -119.9444442399999, 49.2204572260001 ], [ -119.944226579999963, 49.222123106000055 ], [ -119.938761007999915, 49.221815370000058 ], [ -119.93893551799998, 49.220480959000021 ], [ -119.940267122999941, 49.220552429000101 ], [ -119.941774113999941, 49.220633304000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999972356090314", "sL_AssetLoss": "183.476218", "sL_BldgLoss": "183.471146", "sL_StrLoss": "183.400946", "sL_NStrLoss": "0.0702", "sL_ContLoss": "0.005072", "geom_point": "0101000020E6100000842FC86DE6015EC0E8FDFB630CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.029028534999924, 49.315073121000076 ], [ -120.029134169999935, 49.314254869000067 ], [ -120.028687077999962, 49.314230113000107 ], [ -120.02915012899993, 49.31064320600008 ], [ -120.030547823999925, 49.310720591000113 ], [ -120.030331422999907, 49.315145251000075 ], [ -120.029028534999924, 49.315073121000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999782858747435", "sL_AssetLoss": "229.3438", "sL_BldgLoss": "229.294", "sL_StrLoss": "229", "sL_NStrLoss": "0.294", "sL_ContLoss": "0.0498", "geom_point": "0101000020E6100000F2DB8439090B5EC09B468B1AE9B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169499671999944, 49.382164605000071 ], [ -120.16958458799995, 49.381491964000119 ], [ -120.169911612999968, 49.38156096300002 ], [ -120.170703715999963, 49.381674140000122 ], [ -120.172465469, 49.381828776000063 ], [ -120.172831422999963, 49.381815759000077 ], [ -120.17450164, 49.381756240000122 ], [ -120.175080956999963, 49.38170514800003 ], [ -120.175002569999918, 49.382326649000035 ], [ -120.174381601, 49.382520385000113 ], [ -120.172880783999986, 49.38274400300002 ], [ -120.172400187999969, 49.382686993000057 ], [ -120.17125148599996, 49.382299601000092 ], [ -120.170758796999905, 49.382234093000122 ], [ -120.169499671999944, 49.382164605000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7801000", "BldgCostT": "5380000", "sL_LossRatio": "0.999995140598855", "sL_AssetLoss": "870.0660584", "sL_BldgLoss": "870.0618304", "sL_StrLoss": "870.0007404", "sL_NStrLoss": "0.06109", "sL_ContLoss": "0.004228", "geom_point": "0101000020E6100000E1F18A3308F55DC00C887BF2D19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.826771585999978, 49.250698239000045 ], [ -119.82662600699993, 49.247733801000017 ], [ -119.826593112, 49.247338142000039 ], [ -119.826562483999908, 49.246970288000085 ], [ -119.826267397999956, 49.245649704000108 ], [ -119.825763285999969, 49.244007200000098 ], [ -119.825719576999987, 49.243708791000138 ], [ -119.830684782999953, 49.243993465000074 ], [ -119.830663136999974, 49.244155982000052 ], [ -119.830868686999935, 49.244167761000014 ], [ -119.83084205599999, 49.24436771000012 ], [ -119.830907498999949, 49.244371460000096 ], [ -119.830873998999934, 49.244622989000057 ], [ -119.830995611999981, 49.244629959000108 ], [ -119.83095885799996, 49.244905916000071 ], [ -119.83103812899995, 49.244910458000028 ], [ -119.830915975999957, 49.245827595000094 ], [ -119.831039287999957, 49.24583466100011 ], [ -119.830903412999973, 49.2468547920001 ], [ -119.831169848999963, 49.246870059000081 ], [ -119.830692138999922, 49.250456449000083 ], [ -119.829306189999954, 49.250377023000077 ], [ -119.829286990999947, 49.250521111000062 ], [ -119.830567310999953, 49.250594485000093 ], [ -119.830089515999987, 49.254180852000111 ], [ -119.82675126, 49.253989510000061 ], [ -119.826744724999983, 49.253952600000041 ], [ -119.826732592999946, 49.253557984000089 ], [ -119.826827395999899, 49.251834297000066 ], [ -119.826790573999929, 49.251084631000111 ], [ -119.826771585999978, 49.250698239000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4364500", "BldgCostT": "3010000", "sL_LossRatio": "0.99990617338419", "sL_AssetLoss": "589.49158", "sL_BldgLoss": "589.43627", "sL_StrLoss": "589.00527", "sL_NStrLoss": "0.431", "sL_ContLoss": "0.05531", "geom_point": "0101000020E6100000E4CE3393FBFA5DC0E8CDF286C5B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.919098947999913, 49.379080656000085 ], [ -119.924582954999934, 49.379389314000065 ], [ -119.92411111399997, 49.382975402000064 ], [ -119.918626685999953, 49.382666721000135 ], [ -119.919098947999913, 49.379080656000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999986976756582", "sL_AssetLoss": "231.12522", "sL_BldgLoss": "231.12221", "sL_StrLoss": "231.1", "sL_NStrLoss": "0.02221", "sL_ContLoss": "0.00301", "geom_point": "0101000020E6100000EBCC98DDEEF45DC06F3C2BABE19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.827750693999974, 49.240151971000081 ], [ -119.828862437999973, 49.240135630000047 ], [ -119.828573112999976, 49.242307322000073 ], [ -119.827013271999988, 49.242217882000013 ], [ -119.826961661999988, 49.242605159000085 ], [ -119.825595419999942, 49.242526801000096 ], [ -119.825554495999924, 49.241866228000099 ], [ -119.82545042799994, 49.240185698000062 ], [ -119.827750693999974, 49.240151971000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.999976089933", "sL_AssetLoss": "78.335205", "sL_BldgLoss": "78.333332", "sL_StrLoss": "78.300672", "sL_NStrLoss": "0.03266", "sL_ContLoss": "0.001873", "geom_point": "0101000020E61000007A06269AB4F95DC0BE2ABC700CB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.901794854999977, 49.384981380000063 ], [ -119.901731316999985, 49.383903364000034 ], [ -119.901318503999946, 49.383913733000107 ], [ -119.901286741999968, 49.383374725000067 ], [ -119.900873931999939, 49.383385092000076 ], [ -119.90085805199999, 49.383115589000099 ], [ -119.899619629999961, 49.383146682000074 ], [ -119.899603758999916, 49.382877177000097 ], [ -119.899190952999959, 49.38288753700008 ], [ -119.89912747599999, 49.381809518000061 ], [ -119.901604254999938, 49.381747332000032 ], [ -119.901651900999966, 49.382555844000137 ], [ -119.902477504999965, 49.382535103000045 ], [ -119.902493392999986, 49.382804607000061 ], [ -119.903319000999929, 49.382783859000043 ], [ -119.903334892999908, 49.383053364000041 ], [ -119.903747697999961, 49.383042987000053 ], [ -119.903811276999974, 49.384121001000011 ], [ -119.903398462999988, 49.384131377000116 ], [ -119.903430249999971, 49.384670385000064 ], [ -119.903017428999974, 49.38468076000003 ], [ -119.903033320999924, 49.384950264000068 ], [ -119.901794854999977, 49.384981380000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999984166779194", "sL_AssetLoss": "266.52821", "sL_BldgLoss": "266.52399", "sL_StrLoss": "266.5", "sL_NStrLoss": "0.02399", "sL_ContLoss": "0.00422", "geom_point": "0101000020E6100000654D135335015EC00B11B224A7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.017691174999968, 49.272246315000039 ], [ -120.017733976999978, 49.271915078000092 ], [ -120.017549091999982, 49.271904812000123 ], [ -120.018012580999979, 49.268317724000035 ], [ -120.018994112999977, 49.268372225000107 ], [ -120.0191265099999, 49.268870545000027 ], [ -120.01928040899999, 49.269449714000125 ], [ -120.020469363999922, 49.27164792000012 ], [ -120.020801889999959, 49.272262713000046 ], [ -120.020864159000027, 49.272422458000086 ], [ -120.017691174999968, 49.272246315000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912583", "BldgCostT": "2698333", "sL_LossRatio": "0.999986367017635", "sL_AssetLoss": "374.09276", "sL_BldgLoss": "374.08766", "sL_StrLoss": "374.00116", "sL_NStrLoss": "0.0865", "sL_ContLoss": "0.0051", "geom_point": "0101000020E610000003D13008EEF55DC094E23ECDA4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.840157043999952, 49.260892284000072 ], [ -119.845626558999925, 49.261204997000057 ], [ -119.845149817999939, 49.264791373000079 ], [ -119.839679884999924, 49.264478637000082 ], [ -119.840157043999952, 49.260892284000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999981660154111", "sL_AssetLoss": "191.93182", "sL_BldgLoss": "191.9283", "sL_StrLoss": "191.9", "sL_NStrLoss": "0.0283", "sL_ContLoss": "0.00352", "geom_point": "0101000020E61000004B46A5432D0A5EC000EA40B5C5B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.157058175999936, 49.380376458000072 ], [ -120.157114886999949, 49.379928178000029 ], [ -120.157152394999969, 49.37994680000002 ], [ -120.157829786999955, 49.380143409000048 ], [ -120.159292905999962, 49.380566290000104 ], [ -120.160277099999973, 49.380968006000025 ], [ -120.161989195999965, 49.381388106000074 ], [ -120.162448181999935, 49.381430292000111 ], [ -120.162410857999987, 49.381725579000069 ], [ -120.161464167999895, 49.38167441300002 ], [ -120.15692502, 49.381428969000105 ], [ -120.157058175999936, 49.380376458000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4173583", "BldgCostT": "2878333", "sL_LossRatio": "0.999966909395707", "sL_AssetLoss": "428.21823", "sL_BldgLoss": "428.20406", "sL_StrLoss": "428.00326", "sL_NStrLoss": "0.2008", "sL_ContLoss": "0.01417", "geom_point": "0101000020E6100000A8514832EBF45DC06BB1671102A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.828946197999969, 49.287223702000119 ], [ -119.832330961999958, 49.287417492000017 ], [ -119.832323945999988, 49.287428799000111 ], [ -119.83216659299994, 49.287682304000057 ], [ -119.831840583999934, 49.288070097000073 ], [ -119.831381397999948, 49.288536208000011 ], [ -119.830624991999912, 49.289122492000061 ], [ -119.830104682999931, 49.289426094000113 ], [ -119.829723074999919, 49.289614179000068 ], [ -119.828986472999944, 49.289977207000035 ], [ -119.828024088999953, 49.290451490000095 ], [ -119.827574811999938, 49.290750101000121 ], [ -119.827146288000023, 49.291153368000096 ], [ -119.826969288999962, 49.291319954000059 ], [ -119.822944186999962, 49.291089311000093 ], [ -119.823422914999952, 49.287503175000097 ], [ -119.828867324999948, 49.28781511300015 ], [ -119.828946197999969, 49.287223702000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15581917", "BldgCostT": "10536667", "sL_LossRatio": "0.962850400143149", "sL_AssetLoss": "1365.557804", "sL_BldgLoss": "1314.827878", "sL_StrLoss": "1296.011528", "sL_NStrLoss": "18.81635", "sL_ContLoss": "50.729926", "geom_point": "0101000020E61000007A5B868BDEF45DC04BA0D2D2A6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.822921889, 49.269215464000055 ], [ -119.822993495999981, 49.26867882600007 ], [ -119.822908722999955, 49.268673965000112 ], [ -119.823014519999958, 49.267881096000117 ], [ -119.82288147499996, 49.267873466000054 ], [ -119.822934273999977, 49.267477770000021 ], [ -119.822791196999944, 49.267469564000088 ], [ -119.822903244999935, 49.266629829000124 ], [ -119.822640546999963, 49.266614763000099 ], [ -119.823073967999932, 49.263366372000071 ], [ -119.82306717099999, 49.263365982000096 ], [ -119.823222766999919, 49.262199704000118 ], [ -119.823149248999968, 49.262195487000049 ], [ -119.823325725999922, 49.260872637000098 ], [ -119.823267436999942, 49.260869294000038 ], [ -119.823363034999929, 49.26015267500005 ], [ -119.822796567999958, 49.260120183 ], [ -119.823274987, 49.256533881000045 ], [ -119.823829967999984, 49.256565714000082 ], [ -119.82388468299996, 49.256155494000069 ], [ -119.824709542999969, 49.256202802000139 ], [ -119.824919119999947, 49.254631213000046 ], [ -119.826965315999956, 49.25474854300009 ], [ -119.827660390999981, 49.255940305000152 ], [ -119.828106283999944, 49.25663619200008 ], [ -119.82834708899999, 49.257227293000071 ], [ -119.828417703999932, 49.257471377000108 ], [ -119.828460311999919, 49.25761859400005 ], [ -119.828505702999948, 49.258001590000099 ], [ -119.828542620999883, 49.259012815000069 ], [ -119.828567886999949, 49.25970540000003 ], [ -119.828590191999965, 49.260334587000095 ], [ -119.828600506999976, 49.260463385000023 ], [ -119.828644911, 49.261164292000068 ], [ -119.828749896999952, 49.262681798000116 ], [ -119.829141806999971, 49.264279211000051 ], [ -119.82922037799996, 49.26459960300005 ], [ -119.829232196999939, 49.264644448000048 ], [ -119.829338679999921, 49.265049180000084 ], [ -119.829668609999942, 49.266302897000081 ], [ -119.829742932, 49.266584502000121 ], [ -119.829831581999926, 49.266920297000141 ], [ -119.83012621, 49.268038397000034 ], [ -119.830140551999961, 49.268107474000104 ], [ -119.830276250999958, 49.268760343000082 ], [ -119.829980925999976, 49.268743426000107 ], [ -119.829909011000012, 49.269282976000127 ], [ -119.829892424999969, 49.269407412000092 ], [ -119.829424468999946, 49.269380605000087 ], [ -119.829399312999925, 49.269569323000084 ], [ -119.82839457299994, 49.269511758000128 ], [ -119.828392267999959, 49.269529046000052 ], [ -119.822921889, 49.269215464000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "1", "sL_AssetLoss": "675", "sL_BldgLoss": "675", "sL_StrLoss": "675", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000767E9B0F99F45DC03464E190B29E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.817269428999978, 49.242095975000048 ], [ -119.817408634999936, 49.24105302200006 ], [ -119.817084212999958, 49.241060939000135 ], [ -119.817007498999914, 49.239713286000082 ], [ -119.817419139999956, 49.23970324000009 ], [ -119.817373106999938, 49.238894648000048 ], [ -119.817697757999923, 49.23888672400011 ], [ -119.817748088999963, 49.238509600000079 ], [ -119.817763440999897, 49.238510482000038 ], [ -119.817708012999944, 49.237536947000059 ], [ -119.819354501999968, 49.23749674500003 ], [ -119.819417663999928, 49.238605484000175 ], [ -119.821966568999969, 49.238751819000086 ], [ -119.821972799999969, 49.23870509800004 ], [ -119.822521769999966, 49.238736607000128 ], [ -119.822848093999966, 49.236289410000062 ], [ -119.82635294399995, 49.236490509000134 ], [ -119.82633362899999, 49.236558243000104 ], [ -119.826327583999927, 49.236579314000089 ], [ -119.826255604999943, 49.236831300000098 ], [ -119.825601190000015, 49.238228491000093 ], [ -119.825481308999912, 49.23860098800003 ], [ -119.825409316999966, 49.239119995000081 ], [ -119.82545042799994, 49.240185698000062 ], [ -119.825554495999924, 49.241866228000099 ], [ -119.825595419999942, 49.242526801000096 ], [ -119.822742804999976, 49.242363136000073 ], [ -119.822736574999965, 49.242409858000045 ], [ -119.817269428999978, 49.242095975000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3248000", "BldgCostT": "2240000", "sL_LossRatio": "0.999905925951474", "sL_AssetLoss": "420.4135", "sL_BldgLoss": "420.37395", "sL_StrLoss": "420.00665", "sL_NStrLoss": "0.3673", "sL_ContLoss": "0.03955", "geom_point": "0101000020E610000001261DA384F15DC0593D79BB52994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.776457789999981, 49.19990935600002 ], [ -119.776498120999946, 49.199608893000075 ], [ -119.775598681999952, 49.199556833000031 ], [ -119.77577404199999, 49.198250567000073 ], [ -119.773276860999928, 49.19810599100002 ], [ -119.773258026999926, 49.198246231000077 ], [ -119.767796411999939, 49.197929822000113 ], [ -119.76798283699992, 49.196542827000023 ], [ -119.768767512999929, 49.196543641000083 ], [ -119.770607685999963, 49.19654553800013 ], [ -119.771292624999916, 49.196546248000047 ], [ -119.77224359899999, 49.196547194000061 ], [ -119.775882692999943, 49.196550104000053 ], [ -119.776097731, 49.196751445000061 ], [ -119.779539479999968, 49.199974091000072 ], [ -119.779613724999962, 49.20004356000004 ], [ -119.779668822999966, 49.200095148000109 ], [ -119.776457789999981, 49.19990935600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16783834", "BldgCostT": "11103334", "sL_LossRatio": "1", "sL_AssetLoss": "1412.9", "sL_BldgLoss": "1412.9", "sL_StrLoss": "1412.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5C2736338F05DC0D2E8AB372C994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.75591173, 49.200473188000032 ], [ -119.756290502999931, 49.197660611000046 ], [ -119.756235207999964, 49.197657400000033 ], [ -119.756167103999985, 49.19816312600004 ], [ -119.75070561499993, 49.197845851000103 ], [ -119.750711184999915, 49.197804528000141 ], [ -119.746012169999929, 49.197531322000039 ], [ -119.746318412000022, 49.195260817000097 ], [ -119.74164698, 49.194989008000036 ], [ -119.741894898999973, 49.193152105000124 ], [ -119.740229852999931, 49.193055174000065 ], [ -119.740366667, 49.192041692000082 ], [ -119.739844107999915, 49.192011266000051 ], [ -119.739915423999946, 49.19148299000009 ], [ -119.741730875999949, 49.191939160000047 ], [ -119.746283128999949, 49.193082825 ], [ -119.747367226999955, 49.193106100000122 ], [ -119.74862131099998, 49.193164651000146 ], [ -119.74855496, 49.193738300000057 ], [ -119.748851176999921, 49.196610331000038 ], [ -119.753302367999979, 49.196464973000062 ], [ -119.756898090999954, 49.196488592000023 ], [ -119.759497403999916, 49.196505646000105 ], [ -119.761543741999915, 49.196519034000161 ], [ -119.761886972999946, 49.196521274000133 ], [ -119.764653395999929, 49.19653930500003 ], [ -119.766212, 49.196540967 ], [ -119.766001514999985, 49.198106499000119 ], [ -119.76584724599995, 49.198097555000082 ], [ -119.765776433000028, 49.198624203000087 ], [ -119.761696845999978, 49.198387602000061 ], [ -119.761460611999937, 49.200143297000125 ], [ -119.761373565000014, 49.200790198000028 ], [ -119.75591173, 49.200473188000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "152.9", "sL_BldgLoss": "152.9", "sL_StrLoss": "152.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CC6C67CA14F45DC01B54B8714DA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.811877920999905, 49.305685662000016 ], [ -119.817352526999969, 49.305999787000061 ], [ -119.81733548399994, 49.306127293000038 ], [ -119.817229403999974, 49.306306008000028 ], [ -119.817041358999973, 49.306512448000099 ], [ -119.81693849499996, 49.30662540700007 ], [ -119.816679600000015, 49.306839099000079 ], [ -119.816085674999897, 49.307175407000052 ], [ -119.812067897999924, 49.309002524000086 ], [ -119.811467282999899, 49.309275619000111 ], [ -119.811398112999953, 49.309271648000056 ], [ -119.811877920999905, 49.305685662000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3960917", "BldgCostT": "2731667", "sL_LossRatio": "0.99996524891392", "sL_AssetLoss": "229.34535", "sL_BldgLoss": "229.33738", "sL_StrLoss": "229.20299", "sL_NStrLoss": "0.13439", "sL_ContLoss": "0.00797", "geom_point": "0101000020E6100000A106DBA184F45DC045F0E0A3559C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.820992935000035, 49.221187108000052 ], [ -119.82103226, 49.220892170000091 ], [ -119.818020323000013, 49.220719149000018 ], [ -119.818145254999976, 49.219782567000031 ], [ -119.817960479999954, 49.219771950000052 ], [ -119.818304826000016, 49.217190371000093 ], [ -119.819341267999945, 49.217669033000156 ], [ -119.819453434999957, 49.217720832000083 ], [ -119.819707049, 49.21783797400014 ], [ -119.820570542999931, 49.218236740000052 ], [ -119.82163178899998, 49.218726802000099 ], [ -119.822165086999945, 49.219042013000028 ], [ -119.822577500999969, 49.219356610000098 ], [ -119.82296478399995, 49.219786289000048 ], [ -119.823179607999975, 49.220106708000138 ], [ -119.82331638, 49.220401900000034 ], [ -119.823431694999925, 49.220776211000015 ], [ -119.823473792999962, 49.221152702000083 ], [ -119.823455995999964, 49.22152388600005 ], [ -119.823361922999979, 49.221919701000047 ], [ -119.82270106299994, 49.223604575000074 ], [ -119.822490317999922, 49.224141901000081 ], [ -119.822286895000033, 49.224738201000029 ], [ -119.82225729, 49.22487365500006 ], [ -119.818379582999953, 49.224650949000072 ], [ -119.818857978999986, 49.22106447400008 ], [ -119.820992935000035, 49.221187108000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6070667", "BldgCostT": "4186667", "sL_LossRatio": "0.999979196207425", "sL_AssetLoss": "691.22012", "sL_BldgLoss": "691.20574", "sL_StrLoss": "691.00264", "sL_NStrLoss": "0.2031", "sL_ContLoss": "0.01438", "geom_point": "0101000020E6100000332461BEC0F45DC0B7CCAF070FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.82462093399991, 49.253867349000046 ], [ -119.824639076000011, 49.253731306000049 ], [ -119.820243803999972, 49.253479129 ], [ -119.820722350999915, 49.249892802000012 ], [ -119.823836987999954, 49.250071522000098 ], [ -119.82385791899999, 49.249914574000044 ], [ -119.825243844999974, 49.249994071000067 ], [ -119.82536000099999, 49.249122855000039 ], [ -119.825093553999963, 49.249107573000117 ], [ -119.825146045999972, 49.248713864000131 ], [ -119.824788669999975, 49.248693366000026 ], [ -119.824863212999958, 49.248134288000109 ], [ -119.824606500999948, 49.248119563000031 ], [ -119.82462732899999, 49.247963353000046 ], [ -119.824611811999972, 49.247962463000079 ], [ -119.824628357999984, 49.247838365000064 ], [ -119.824607418999932, 49.247837164000039 ], [ -119.824627700999926, 49.247685050000022 ], [ -119.824600027999949, 49.247683463000065 ], [ -119.824618704999963, 49.247543389000022 ], [ -119.824585136999985, 49.247541463000047 ], [ -119.824621349999973, 49.247269866000103 ], [ -119.824499252999956, 49.24726286100006 ], [ -119.82497740799991, 49.243676482000104 ], [ -119.825216039999944, 49.243690171000026 ], [ -119.82521739799995, 49.243679987000057 ], [ -119.825719576999987, 49.243708791000138 ], [ -119.825763285999969, 49.244007200000098 ], [ -119.826267397999956, 49.245649704000108 ], [ -119.826562483999908, 49.246970288000085 ], [ -119.826593112, 49.247338142000039 ], [ -119.82662600699993, 49.247733801000017 ], [ -119.826771585999978, 49.250698239000045 ], [ -119.826790573999929, 49.251084631000111 ], [ -119.826827395999899, 49.251834297000066 ], [ -119.826732592999946, 49.253557984000089 ], [ -119.826744724999983, 49.253952600000041 ], [ -119.82675126, 49.253989510000061 ], [ -119.82462093399991, 49.253867349000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999980715425875", "sL_AssetLoss": "169.047031", "sL_BldgLoss": "169.043771", "sL_StrLoss": "169.000571", "sL_NStrLoss": "0.0432", "sL_ContLoss": "0.00326", "geom_point": "0101000020E610000091304603BCF45DC05469D5F896A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.822930991999954, 49.292044877000073 ], [ -119.826260540999911, 49.29223567200011 ], [ -119.824688904999931, 49.294525910000097 ], [ -119.824549501, 49.294729106000013 ], [ -119.8238746, 49.295712508000115 ], [ -119.822452179999985, 49.295630985000074 ], [ -119.822930991999954, 49.292044877000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32703667", "BldgCostT": "22026667", "sL_LossRatio": "1", "sL_AssetLoss": "3832", "sL_BldgLoss": "3832", "sL_StrLoss": "3832", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063D2DF4BE1F25DC0C9712BAD549B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.808578243999975, 49.219876191000033 ], [ -119.808825943, 49.218022038000086 ], [ -119.805512664999952, 49.217831311000033 ], [ -119.805599151, 49.217184231000076 ], [ -119.804024859999956, 49.217093572000039 ], [ -119.804067058999976, 49.216777919000052 ], [ -119.80088998299999, 49.216594887000106 ], [ -119.800901642999975, 49.216507710000023 ], [ -119.799908257999945, 49.216450461000086 ], [ -119.800008604999931, 49.215700327000036 ], [ -119.797428526999909, 49.215551595000107 ], [ -119.79757095099994, 49.21448732500005 ], [ -119.795143523999982, 49.214347335000042 ], [ -119.795158895999975, 49.214232511000077 ], [ -119.794076910999976, 49.2141700950001 ], [ -119.794042766999922, 49.214425103000053 ], [ -119.791688621, 49.214289263000047 ], [ -119.791635778999975, 49.214683757000032 ], [ -119.790725803, 49.214631236000088 ], [ -119.79051681299994, 49.216191180000081 ], [ -119.785052970999914, 49.215875653000118 ], [ -119.785271721999933, 49.214244278000095 ], [ -119.780409029999973, 49.21396323000004 ], [ -119.780759726999975, 49.211349646000031 ], [ -119.778080024999937, 49.211194671000065 ], [ -119.778141706999989, 49.210735140000089 ], [ -119.776222795999942, 49.210624122000098 ], [ -119.776313672999962, 49.209947290000038 ], [ -119.776704299999892, 49.207037758000055 ], [ -119.782167046999945, 49.207353712000099 ], [ -119.782105407999936, 49.207813248 ], [ -119.784024217999942, 49.207924161000065 ], [ -119.784002970999936, 49.208082614000055 ], [ -119.784430457, 49.208107319000064 ], [ -119.784861572999887, 49.204891839000034 ], [ -119.7865000199999, 49.204986514000041 ], [ -119.786591735999963, 49.204302208000094 ], [ -119.787082006999981, 49.204568083000026 ], [ -119.787555418999915, 49.204783395000092 ], [ -119.788034397999951, 49.204957398000012 ], [ -119.788550707999889, 49.205079384000037 ], [ -119.787162076999962, 49.206356915000093 ], [ -119.787144581999939, 49.20637297500005 ], [ -119.787071314999977, 49.206440421000131 ], [ -119.785595265999959, 49.207798198000098 ], [ -119.782919517999943, 49.210259396000012 ], [ -119.782688499999963, 49.210514385000089 ], [ -119.785675973999957, 49.210870211000049 ], [ -119.786036344999957, 49.210913118000079 ], [ -119.787452599999938, 49.211081754000105 ], [ -119.787931577999927, 49.211138787000024 ], [ -119.788978556999908, 49.211263439000099 ], [ -119.790003675999941, 49.211385461000063 ], [ -119.79099501499999, 49.211503463000042 ], [ -119.791900191999972, 49.211611211000047 ], [ -119.793903280999956, 49.211849591000039 ], [ -119.798717857, 49.212421681000059 ], [ -119.800005243999934, 49.212574631000095 ], [ -119.800686249999956, 49.212655511000037 ], [ -119.80140927799999, 49.212741408000099 ], [ -119.801803378999963, 49.212850896000127 ], [ -119.801933503999976, 49.212897576000081 ], [ -119.802620835999946, 49.213144160000148 ], [ -119.803542133999912, 49.213474689000044 ], [ -119.803555890999945, 49.21347960300006 ], [ -119.80466239699993, 49.213876556000088 ], [ -119.805341651, 49.214120220000083 ], [ -119.806229224999953, 49.214438592000107 ], [ -119.809106414999974, 49.215470588000073 ], [ -119.809516008999978, 49.215557395000069 ], [ -119.810213904999898, 49.215608398000064 ], [ -119.810594526999935, 49.21562397600011 ], [ -119.812186761999911, 49.215689064000095 ], [ -119.812249173999973, 49.215691610000057 ], [ -119.814720686999934, 49.21579259500006 ], [ -119.815636994, 49.21576491700003 ], [ -119.815936801999925, 49.2160142930001 ], [ -119.816425717999948, 49.216322490000039 ], [ -119.817469029999955, 49.216804360000083 ], [ -119.817297838999977, 49.218087654000037 ], [ -119.816683372999975, 49.218052339000046 ], [ -119.816659619999925, 49.218230369000032 ], [ -119.815897183999979, 49.218186546000041 ], [ -119.815880192999927, 49.21831388800004 ], [ -119.815167553999956, 49.218272920000025 ], [ -119.81494943899996, 49.219907304000117 ], [ -119.814087137999948, 49.219857727000047 ], [ -119.814042714999943, 49.22019052400001 ], [ -119.808578243999975, 49.219876191000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4292000", "BldgCostT": "2960000", "sL_LossRatio": "0.999971996323824", "sL_AssetLoss": "508.14757", "sL_BldgLoss": "508.13334", "sL_StrLoss": "508.00134", "sL_NStrLoss": "0.132", "sL_ContLoss": "0.01423", "geom_point": "0101000020E610000081732DF755ED5DC0FB2F213020A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.705395997999958, 49.284049188000026 ], [ -119.705445568999949, 49.283684792000088 ], [ -119.705389020999974, 49.283681488000092 ], [ -119.705876758, 49.280095839000097 ], [ -119.711347621999906, 49.280415346000026 ], [ -119.7112981, 49.280779746000057 ], [ -119.711354643999954, 49.280783046000117 ], [ -119.710867323999977, 49.284368717000063 ], [ -119.705395997999958, 49.284049188000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12358667", "BldgCostT": "8026667", "sL_LossRatio": "0.937664568566255", "sL_AssetLoss": "949.700654", "sL_BldgLoss": "890.500654", "sL_StrLoss": "869.000654", "sL_NStrLoss": "21.5", "sL_ContLoss": "59.2", "geom_point": "0101000020E6100000B35441B96BF45DC0187728AFBA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.813890982000018, 49.234705101000031 ], [ -119.81436982799994, 49.23111870000011 ], [ -119.81591367499999, 49.231207428000083 ], [ -119.816259681999952, 49.228614936000042 ], [ -119.821725234999988, 49.228928875000051 ], [ -119.821422794999975, 49.231196942000111 ], [ -119.82420100399996, 49.231356413000135 ], [ -119.824117588999925, 49.231982199000129 ], [ -119.824761181, 49.231966449000097 ], [ -119.824814303999943, 49.232048946000134 ], [ -119.82485567, 49.232773854000065 ], [ -119.824009299999943, 49.232794565000084 ], [ -119.823722914999948, 49.234942856000053 ], [ -119.82303692699999, 49.234903487000075 ], [ -119.822999196999945, 49.235186473000056 ], [ -119.819362764999966, 49.234977702000073 ], [ -119.81935723499997, 49.235019157000117 ], [ -119.813890982000018, 49.234705101000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2916917", "BldgCostT": "2011667", "sL_LossRatio": "1", "sL_AssetLoss": "217.5", "sL_BldgLoss": "217.5", "sL_StrLoss": "217.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003548149CF2F45DC0E0545A353EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.82481141599996, 49.273386066000093 ], [ -119.830282299999936, 49.273699551000036 ], [ -119.829804245, 49.277285791000054 ], [ -119.824332941999955, 49.276972283000084 ], [ -119.82481141599996, 49.273386066000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54843001", "BldgCostT": "37140001", "sL_LossRatio": "0.98184062454938", "sL_AssetLoss": "7550.052554", "sL_BldgLoss": "7412.948315", "sL_StrLoss": "7363.104505", "sL_NStrLoss": "49.84381", "sL_ContLoss": "137.104239", "geom_point": "0101000020E6100000619DA6A64FF35DC0AF4E6B26A19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.798717857, 49.212421681000059 ], [ -119.793903280999956, 49.211849591000039 ], [ -119.791900191999972, 49.211611211000047 ], [ -119.79099501499999, 49.211503463000042 ], [ -119.790003675999941, 49.211385461000063 ], [ -119.788978556999908, 49.211263439000099 ], [ -119.787931577999927, 49.211138787000024 ], [ -119.787452599999938, 49.211081754000105 ], [ -119.786036344999957, 49.210913118000079 ], [ -119.785675973999957, 49.210870211000049 ], [ -119.782688499999963, 49.210514385000089 ], [ -119.782919517999943, 49.210259396000012 ], [ -119.785595265999959, 49.207798198000098 ], [ -119.787071314999977, 49.206440421000131 ], [ -119.787144581999939, 49.20637297500005 ], [ -119.787162076999962, 49.206356915000093 ], [ -119.788550707999889, 49.205079384000037 ], [ -119.788034397999951, 49.204957398000012 ], [ -119.787555418999915, 49.204783395000092 ], [ -119.787082006999981, 49.204568083000026 ], [ -119.786591735999963, 49.204302208000094 ], [ -119.786666457999956, 49.203744678000099 ], [ -119.789277356999932, 49.203895491000047 ], [ -119.789406786999933, 49.202929339000029 ], [ -119.792327151999928, 49.203097951000061 ], [ -119.792354365999984, 49.20289470700002 ], [ -119.794456887999971, 49.203016049000098 ], [ -119.794471275999953, 49.202908556000089 ], [ -119.799397978999963, 49.20319272800004 ], [ -119.799429763999953, 49.202955071000083 ], [ -119.80081836699999, 49.203035124000039 ], [ -119.800820602999977, 49.203018403000058 ], [ -119.803129745999954, 49.203151485000042 ], [ -119.803309962999904, 49.201803157000093 ], [ -119.803474626999943, 49.201812645000082 ], [ -119.803556285999917, 49.201201660000024 ], [ -119.806894414999988, 49.201393953000085 ], [ -119.809018529999932, 49.201516256000062 ], [ -119.808927118999961, 49.202200811000097 ], [ -119.809914243999941, 49.20225763400007 ], [ -119.809900762999973, 49.202358609000029 ], [ -119.812803571999922, 49.202525654000084 ], [ -119.81273388599999, 49.203042905000125 ], [ -119.812604089999951, 49.203154014000056 ], [ -119.811274308999899, 49.203195302000047 ], [ -119.81059480499998, 49.203337709000103 ], [ -119.809384922999982, 49.203061403000042 ], [ -119.808607802999944, 49.202666887000099 ], [ -119.80729661099997, 49.201825202000066 ], [ -119.807441207999943, 49.20219980500007 ], [ -119.808668519999983, 49.202998803000085 ], [ -119.80953618599996, 49.203309191000081 ], [ -119.810274023999924, 49.203471605000118 ], [ -119.812618704, 49.203414597000119 ], [ -119.813423017999952, 49.203079900000041 ], [ -119.813734791999963, 49.20326081000011 ], [ -119.81388809799995, 49.203266492000068 ], [ -119.814137110999965, 49.203081390000087 ], [ -119.814153203999979, 49.202864899000133 ], [ -119.8144362, 49.202671062000057 ], [ -119.816214435999939, 49.202773325000095 ], [ -119.816341431999916, 49.201821149000047 ], [ -119.815950647999941, 49.201798678000031 ], [ -119.81761060799991, 49.201367990000023 ], [ -119.818745008999954, 49.200835790000113 ], [ -119.818678082999924, 49.20088838200013 ], [ -119.818143140999936, 49.201455259000134 ], [ -119.818060417999959, 49.201589239000057 ], [ -119.817291384999962, 49.202279950000047 ], [ -119.81719711199996, 49.202353536000075 ], [ -119.816577529999932, 49.202725298000104 ], [ -119.816157471999986, 49.202953293000121 ], [ -119.814901927, 49.203345180000021 ], [ -119.814803249999926, 49.203376368000129 ], [ -119.814806477, 49.203601172000049 ], [ -119.814969575999939, 49.205231896000114 ], [ -119.814975315999973, 49.205940823000056 ], [ -119.814933895999957, 49.207012721000062 ], [ -119.814876893999923, 49.208488351000064 ], [ -119.812663128999958, 49.208559844000099 ], [ -119.812629500999947, 49.210475283000093 ], [ -119.812886787999972, 49.211262609000109 ], [ -119.813250893999964, 49.212376888000051 ], [ -119.813251083999958, 49.21296329700003 ], [ -119.813297900999913, 49.21302558800005 ], [ -119.813323858999951, 49.213032454000036 ], [ -119.813406897999954, 49.213054387000106 ], [ -119.81508818399999, 49.213048990000061 ], [ -119.815088197999955, 49.213187544000071 ], [ -119.815088121999935, 49.214014766000076 ], [ -119.815088124999988, 49.214514505000054 ], [ -119.815103377999918, 49.214618933000061 ], [ -119.81514794899999, 49.214923605000124 ], [ -119.815149315999975, 49.214932703000017 ], [ -119.815261498999959, 49.215205702000084 ], [ -119.815558064999948, 49.215647365000038 ], [ -119.815636994, 49.21576491700003 ], [ -119.814720686999934, 49.21579259500006 ], [ -119.812249173999973, 49.215691610000057 ], [ -119.812186761999911, 49.215689064000095 ], [ -119.810594526999935, 49.21562397600011 ], [ -119.810213904999898, 49.215608398000064 ], [ -119.809516008999978, 49.215557395000069 ], [ -119.809106414999974, 49.215470588000073 ], [ -119.806229224999953, 49.214438592000107 ], [ -119.805341651, 49.214120220000083 ], [ -119.80466239699993, 49.213876556000088 ], [ -119.803555890999945, 49.21347960300006 ], [ -119.803542133999912, 49.213474689000044 ], [ -119.802620835999946, 49.213144160000148 ], [ -119.801933503999976, 49.212897576000081 ], [ -119.801803378999963, 49.212850896000127 ], [ -119.80140927799999, 49.212741408000099 ], [ -119.800686249999956, 49.212655511000037 ], [ -119.800005243999934, 49.212574631000095 ], [ -119.798717857, 49.212421681000059 ] ], [ [ -119.803926108999974, 49.210472670000087 ], [ -119.804014506999948, 49.209811342000101 ], [ -119.803907347999939, 49.209805169000028 ], [ -119.803818128999978, 49.210472633000101 ], [ -119.803800708999972, 49.210602959000028 ], [ -119.803907867999939, 49.21060913200003 ], [ -119.803926108999974, 49.210472670000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35439834", "BldgCostT": "22703334", "sL_LossRatio": "0.999767588157742", "sL_AssetLoss": "4716.15383", "sL_BldgLoss": "4715.05774", "sL_StrLoss": "4710.73634", "sL_NStrLoss": "4.3214", "sL_ContLoss": "1.09609", "geom_point": "0101000020E61000001FF9E6ABA2F75DC011ADCBDF73994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.858921309999971, 49.201088908000024 ], [ -119.857983891999979, 49.20079839900005 ], [ -119.856970804999946, 49.200120394000081 ], [ -119.856332985999984, 49.199794303000054 ], [ -119.855709803999957, 49.199701691000065 ], [ -119.855295206999955, 49.199425398000081 ], [ -119.854749414999972, 49.1992218070001 ], [ -119.853804110999931, 49.19901576300007 ], [ -119.853941606999967, 49.197978448000129 ], [ -119.854178329999954, 49.196192416000017 ], [ -119.855292680999952, 49.196256100000056 ], [ -119.855325391999912, 49.196009242000081 ], [ -119.860787373999955, 49.196321218000122 ], [ -119.860776701999939, 49.196401825000052 ], [ -119.864645158, 49.196622612000034 ], [ -119.864621887999974, 49.196798485000052 ], [ -119.86672427499991, 49.196918417000084 ], [ -119.86677058199993, 49.196568308000074 ], [ -119.872232706, 49.196879704000054 ], [ -119.872209250999973, 49.197057197000056 ], [ -119.87241632599995, 49.197068997000066 ], [ -119.872416518999941, 49.197067541000102 ], [ -119.877878739999943, 49.197378650000104 ], [ -119.877828916999931, 49.197756026000015 ], [ -119.877855231999959, 49.197757524000103 ], [ -119.877979, 49.196820068000079 ], [ -119.879534038999978, 49.196908586000042 ], [ -119.879758210999967, 49.195210105000065 ], [ -119.885220262999937, 49.195520843000025 ], [ -119.884747250999951, 49.199107750000074 ], [ -119.883192126999958, 49.199019308000132 ], [ -119.883092647999916, 49.199773409000045 ], [ -119.883000270999958, 49.200473643000109 ], [ -119.88253958199999, 49.200439496000087 ], [ -119.882055696999885, 49.200405309000075 ], [ -119.880439006999922, 49.200698700000089 ], [ -119.879043418999942, 49.200778395000064 ], [ -119.877163223999929, 49.201023404000125 ], [ -119.874949015999974, 49.201204297000125 ], [ -119.87494630099998, 49.201205715000029 ], [ -119.873577130999948, 49.201127728000088 ], [ -119.873609268999942, 49.200884500000015 ], [ -119.873098533999951, 49.200855404000102 ], [ -119.872960006999989, 49.201903715000071 ], [ -119.867497288, 49.201592359000102 ], [ -119.867499796999965, 49.201573393000075 ], [ -119.8670035499999, 49.201545095000029 ], [ -119.866995340999935, 49.201607154000051 ], [ -119.866437817999895, 49.201575358000085 ], [ -119.866249883999913, 49.202995968000089 ], [ -119.864832887999967, 49.202915144000066 ], [ -119.864817541999969, 49.203031123000073 ], [ -119.863611222, 49.202674002000045 ], [ -119.862024682999959, 49.202047393000086 ], [ -119.860412208999918, 49.20125980200001 ], [ -119.86000951599999, 49.201170101000073 ], [ -119.858921309999971, 49.201088908000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999805013259098", "sL_AssetLoss": "566.7052", "sL_BldgLoss": "566.5947", "sL_StrLoss": "566", "sL_NStrLoss": "0.5947", "sL_ContLoss": "0.1105", "geom_point": "0101000020E61000007BFCFFB4E8F15DC04F157C6859994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.775882692999943, 49.196550104000053 ], [ -119.776260016999956, 49.196476202000042 ], [ -119.77634978599994, 49.196504004000147 ], [ -119.781504694999967, 49.196521200000106 ], [ -119.781510096999966, 49.196521017000109 ], [ -119.78150126499996, 49.196586869000058 ], [ -119.782400653999929, 49.196638879000105 ], [ -119.78191969699995, 49.200225326000073 ], [ -119.779668822999966, 49.200095148000109 ], [ -119.779613724999962, 49.20004356000004 ], [ -119.779539479999968, 49.199974091000072 ], [ -119.776097731, 49.196751445000061 ], [ -119.775882692999943, 49.196550104000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999809228854909", "sL_AssetLoss": "581.849", "sL_BldgLoss": "581.738", "sL_StrLoss": "581", "sL_NStrLoss": "0.738", "sL_ContLoss": "0.111", "geom_point": "0101000020E6100000A76906A734F45DC0BEF0EFD874994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.812173020999978, 49.200406675000096 ], [ -119.812496083999918, 49.197985858000074 ], [ -119.81292386199999, 49.198010472000107 ], [ -119.812927064999926, 49.197986467000071 ], [ -119.81429699099999, 49.198065280000023 ], [ -119.814377831999934, 49.197459300000034 ], [ -119.819839708999936, 49.197773350000077 ], [ -119.819680478999942, 49.198967970000062 ], [ -119.81875228899996, 49.199503812000032 ], [ -119.817785709999953, 49.199392709000094 ], [ -119.817374299999969, 49.199637601000141 ], [ -119.816580493999979, 49.199908210000032 ], [ -119.815244295999918, 49.200328409000065 ], [ -119.814696897999966, 49.20037679000005 ], [ -119.812173020999978, 49.200406675000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20324834", "BldgCostT": "13753334", "sL_LossRatio": "0.9999420817299", "sL_AssetLoss": "3303.9108328", "sL_BldgLoss": "3303.719476", "sL_StrLoss": "3303.100386", "sL_NStrLoss": "0.61909", "sL_ContLoss": "0.1913568", "geom_point": "0101000020E610000039B74B135DF65DC0D964E833FB994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.837208810999925, 49.201812963000037 ], [ -119.837170182999913, 49.201037325000058 ], [ -119.837166085999982, 49.201000835000038 ], [ -119.839330994999969, 49.201375203000048 ], [ -119.840798806999928, 49.201356610000097 ], [ -119.841631798999927, 49.201274002000048 ], [ -119.842659984999955, 49.201004892000043 ], [ -119.843654423999951, 49.200646237000129 ], [ -119.844879193999972, 49.200204490000083 ], [ -119.846796613, 49.199661788000057 ], [ -119.847955384999963, 49.199245993000062 ], [ -119.848332057999926, 49.199178536000055 ], [ -119.848216281999925, 49.200051169000055 ], [ -119.851056365999909, 49.200213596 ], [ -119.851036162999947, 49.200365933000093 ], [ -119.851323270999941, 49.200382349000023 ], [ -119.851355837999961, 49.200136763000089 ], [ -119.853459933999943, 49.200257044000118 ], [ -119.85354117199995, 49.199644212000074 ], [ -119.853719457999944, 49.199654401000046 ], [ -119.853724004999947, 49.199620097000093 ], [ -119.854402985999968, 49.19988831000007 ], [ -119.855236787999971, 49.200289893000047 ], [ -119.856382305999958, 49.201125889000103 ], [ -119.857725505999923, 49.201785287000092 ], [ -119.858632278999949, 49.202041698000087 ], [ -119.860442885999959, 49.202716801000108 ], [ -119.861830109999971, 49.202978797000121 ], [ -119.862725192999918, 49.203253714000041 ], [ -119.863641181999981, 49.203410400000031 ], [ -119.864691182999977, 49.203770699000088 ], [ -119.864719044999944, 49.203775456000059 ], [ -119.864606418999927, 49.204626537000131 ], [ -119.86386920299995, 49.204657795000088 ], [ -119.86093350500002, 49.20492438600008 ], [ -119.859696307999954, 49.205036693000061 ], [ -119.858451670999898, 49.205126327000066 ], [ -119.85778217699999, 49.205174538000051 ], [ -119.856141851999922, 49.205292636000109 ], [ -119.85585470700002, 49.205313302000086 ], [ -119.853685646999921, 49.205309747000101 ], [ -119.850046391999982, 49.205303657000023 ], [ -119.849950435, 49.205303501000103 ], [ -119.848700621999981, 49.205301389000056 ], [ -119.848110515999949, 49.20530038000004 ], [ -119.847327402999909, 49.20529904400005 ], [ -119.846682460999915, 49.205297944000073 ], [ -119.846119806, 49.205296980000092 ], [ -119.842846495999979, 49.205291292000034 ], [ -119.837322907, 49.205279396000037 ], [ -119.837327245999944, 49.204617711000076 ], [ -119.837328794999962, 49.204379378000091 ], [ -119.837331306999943, 49.20399640600003 ], [ -119.837332036999911, 49.203884003000084 ], [ -119.837332082999964, 49.20387500800004 ], [ -119.837333275999924, 49.203735526000038 ], [ -119.837336782999969, 49.203322299000043 ], [ -119.837371211999965, 49.202649923000067 ], [ -119.837371315999974, 49.202648498 ], [ -119.837356, 49.202577100000063 ], [ -119.837259585999945, 49.202494815000058 ], [ -119.837112468999919, 49.202453278000114 ], [ -119.837139307999919, 49.20227474800005 ], [ -119.83714606199996, 49.20223010200003 ], [ -119.8371594799999, 49.2021408660001 ], [ -119.837166162999935, 49.20209624100012 ], [ -119.837172917999951, 49.202051595000043 ], [ -119.837179600999889, 49.20200697100011 ], [ -119.83718631899994, 49.201962336000101 ], [ -119.837208810999925, 49.201812963000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27902250", "BldgCostT": "17505000", "sL_LossRatio": "0.999736536481271", "sL_AssetLoss": "3506.14007", "sL_BldgLoss": "3505.21633", "sL_StrLoss": "3501.65303", "sL_NStrLoss": "3.5633", "sL_ContLoss": "0.92374", "geom_point": "0101000020E61000007787772D5FF55DC02978A78E17994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.838917565999949, 49.199588681000073 ], [ -119.839090396999936, 49.198287949000076 ], [ -119.834313345999959, 49.198014154000148 ], [ -119.834475384999976, 49.196795531000085 ], [ -119.830558555999957, 49.196570879000056 ], [ -119.830424444999906, 49.197578836000034 ], [ -119.828377400999926, 49.197559690000041 ], [ -119.82717031699994, 49.197579606000076 ], [ -119.82643510900003, 49.197454284000067 ], [ -119.825927614999912, 49.197242105000015 ], [ -119.823395220999913, 49.197132406000087 ], [ -119.822046368999963, 49.197538749000053 ], [ -119.821831639999957, 49.197526412000116 ], [ -119.822309488999977, 49.193939773000075 ], [ -119.824468186999965, 49.194063778000043 ], [ -119.82455092099994, 49.193442523000044 ], [ -119.828242861999982, 49.193654504000023 ], [ -119.828534459999972, 49.191463409000079 ], [ -119.833995728, 49.191776745000126 ], [ -119.833813989999925, 49.193143561000078 ], [ -119.835169978999929, 49.193221316000077 ], [ -119.835007971999957, 49.194439947000085 ], [ -119.84025189599997, 49.19474048000005 ], [ -119.840064948999938, 49.196147816000071 ], [ -119.844841843, 49.196421357000119 ], [ -119.8448082029999, 49.196674787000163 ], [ -119.846024920999966, 49.196744426000109 ], [ -119.845806214999982, 49.198392309000056 ], [ -119.846941913999927, 49.1984572980001 ], [ -119.847469365999928, 49.198487476000039 ], [ -119.846996491999903, 49.198828713000118 ], [ -119.846182123999967, 49.199227502000063 ], [ -119.843410596999959, 49.199960901000047 ], [ -119.84315057799995, 49.200039281000045 ], [ -119.842857591999973, 49.200127597000076 ], [ -119.841061409999938, 49.200442297000158 ], [ -119.840405296999919, 49.20049360900007 ], [ -119.838483194, 49.200496391000108 ], [ -119.838383930999925, 49.200492073000106 ], [ -119.838507107999959, 49.199565164000099 ], [ -119.838917565999949, 49.199588681000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999989793003393", "sL_AssetLoss": "467.424472", "sL_BldgLoss": "467.419701", "sL_StrLoss": "467.4", "sL_NStrLoss": "0.019701", "sL_ContLoss": "0.004771", "geom_point": "0101000020E6100000E32ECA856DF85DC0B9D6C50A0A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.882290145999946, 49.201923683000139 ], [ -119.883696664999903, 49.202003682000097 ], [ -119.88379728399994, 49.202017507000107 ], [ -119.885004487999979, 49.202473210000065 ], [ -119.886854990999922, 49.203353395000086 ], [ -119.887769115999944, 49.20396150200002 ], [ -119.887822492999987, 49.204011745000031 ], [ -119.887619124999972, 49.204026765000016 ], [ -119.884243546999969, 49.204276170000092 ], [ -119.88253038299996, 49.204402691000077 ], [ -119.881191696999906, 49.204412310000102 ], [ -119.88104001399995, 49.20443530500004 ], [ -119.88091359699996, 49.204506693 ], [ -119.88081608199991, 49.204724400000096 ], [ -119.879116864999929, 49.204862150000103 ], [ -119.877762017999927, 49.204971952000022 ], [ -119.877247414999943, 49.205013652000098 ], [ -119.877603920999945, 49.202313976 ], [ -119.879599420999938, 49.202427555000014 ], [ -119.879634142999947, 49.202164523000086 ], [ -119.880073214999953, 49.20218950900005 ], [ -119.880082226999917, 49.202121233000106 ], [ -119.882247822999972, 49.202244442000072 ], [ -119.882290145999946, 49.201923683000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99996947411897", "sL_AssetLoss": "97.62208", "sL_BldgLoss": "97.6191", "sL_StrLoss": "97.6", "sL_NStrLoss": "0.0191", "sL_ContLoss": "0.00298", "geom_point": "0101000020E61000009AD554796FF55DC0740E3BDF91994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.832745492999933, 49.199530791000122 ], [ -119.831477687999921, 49.19922890900007 ], [ -119.831303984999963, 49.199070806000101 ], [ -119.831325007999965, 49.198962610000116 ], [ -119.83205839799993, 49.198866796000026 ], [ -119.832417736999957, 49.198887406000118 ], [ -119.83236823199999, 49.199259573000077 ], [ -119.832877745999966, 49.199288794000026 ], [ -119.832871894999954, 49.199332789000039 ], [ -119.835063179999949, 49.199458435000096 ], [ -119.835059678999954, 49.199484773000073 ], [ -119.837421906999907, 49.199620170000102 ], [ -119.837312218999898, 49.200445444000103 ], [ -119.835702886999968, 49.200375404000106 ], [ -119.83473391499993, 49.20022009600013 ], [ -119.832745492999933, 49.199530791000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "0.999872658978151", "sL_AssetLoss": "655.64104", "sL_BldgLoss": "655.55755", "sL_StrLoss": "655.00355", "sL_NStrLoss": "0.554", "sL_ContLoss": "0.08349", "geom_point": "0101000020E610000093B8BF617FF95DC0106BF99A489A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.902757437999938, 49.208040160000081 ], [ -119.899170671999954, 49.206640113000049 ], [ -119.89916561299998, 49.20663815100005 ], [ -119.897856775999969, 49.206127209000051 ], [ -119.897213120999979, 49.205875942000034 ], [ -119.894528388, 49.20482779000006 ], [ -119.893042409999978, 49.20425199700005 ], [ -119.892250804999961, 49.204046288000079 ], [ -119.892115648999933, 49.204023946000085 ], [ -119.89159468599999, 49.203937687000135 ], [ -119.891485914999947, 49.203919701000046 ], [ -119.890786708999912, 49.203848399000037 ], [ -119.890277202, 49.203830312000036 ], [ -119.889668738999958, 49.203875283000038 ], [ -119.889436582999934, 49.203892428000081 ], [ -119.889403781999974, 49.20389485200009 ], [ -119.889398311999955, 49.203874689000088 ], [ -119.886531493999911, 49.202164862000139 ], [ -119.887753002999915, 49.202234291000089 ], [ -119.887695217999962, 49.202672627000084 ], [ -119.890152055000016, 49.202812226000084 ], [ -119.890110869999901, 49.203124758000023 ], [ -119.892421476999957, 49.20325599600006 ], [ -119.893593264999978, 49.20332253200008 ], [ -119.89354462299994, 49.203691862000056 ], [ -119.897395469999935, 49.203910429000146 ], [ -119.897370149999972, 49.204102791000061 ], [ -119.89781476899999, 49.204128018000041 ], [ -119.897804228999959, 49.204208094000087 ], [ -119.899115531999911, 49.204282483000078 ], [ -119.899004981999951, 49.20512260400006 ], [ -119.899163666999968, 49.205131605000133 ], [ -119.899210382000021, 49.204776584000058 ], [ -119.90467368799996, 49.205086332000107 ], [ -119.904394133999944, 49.207212628000036 ], [ -119.905019938999942, 49.207248091000025 ], [ -119.903761763999952, 49.208432152000043 ], [ -119.902757437999938, 49.208040160000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274264137", "BldgCostT": "182387080", "sL_LossRatio": "0.997707010177227", "sL_AssetLoss": "43484.3186", "sL_BldgLoss": "43384.6095", "sL_StrLoss": "42382.1915", "sL_NStrLoss": "1002.418", "sL_ContLoss": "99.7091", "geom_point": "0101000020E6100000E20F5175DDF45DC09C948ADFF7994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.815220909999979, 49.205287304000066 ], [ -119.814980613999978, 49.205231992000094 ], [ -119.814969575999939, 49.205231896000114 ], [ -119.814806477, 49.203601172000049 ], [ -119.814803249999926, 49.203376368000129 ], [ -119.814901927, 49.203345180000021 ], [ -119.816157471999986, 49.202953293000121 ], [ -119.816577529999932, 49.202725298000104 ], [ -119.81719711199996, 49.202353536000075 ], [ -119.817291384999962, 49.202279950000047 ], [ -119.818060417999959, 49.201589239000057 ], [ -119.818143140999936, 49.201455259000134 ], [ -119.818678082999924, 49.20088838200013 ], [ -119.818745008999954, 49.200835790000113 ], [ -119.819735493999957, 49.200371087000114 ], [ -119.820929289999938, 49.199603394000114 ], [ -119.822003612999964, 49.199190397000073 ], [ -119.8228305, 49.19900809100006 ], [ -119.824000187999957, 49.199070794000072 ], [ -119.825410490999928, 49.199251707000016 ], [ -119.826440485999967, 49.199236 ], [ -119.826913396999942, 49.199089297000079 ], [ -119.827325318999897, 49.199106398000048 ], [ -119.828491501999963, 49.199338495000099 ], [ -119.831085108, 49.200039283000088 ], [ -119.833191991999939, 49.200392493000059 ], [ -119.83417680699992, 49.200782683000114 ], [ -119.834970216, 49.201004907000026 ], [ -119.837098817999959, 49.200989202000116 ], [ -119.837166085999982, 49.201000835000038 ], [ -119.837170182999913, 49.201037325000058 ], [ -119.837208810999925, 49.201812963000037 ], [ -119.83718631899994, 49.201962336000101 ], [ -119.837179600999889, 49.20200697100011 ], [ -119.837172917999951, 49.202051595000043 ], [ -119.837166162999935, 49.20209624100012 ], [ -119.8371594799999, 49.2021408660001 ], [ -119.83714606199996, 49.20223010200003 ], [ -119.837139307999919, 49.20227474800005 ], [ -119.837112468999919, 49.202453278000114 ], [ -119.837259585999945, 49.202494815000058 ], [ -119.837356, 49.202577100000063 ], [ -119.837371315999974, 49.202648498 ], [ -119.837371211999965, 49.202649923000067 ], [ -119.837336782999969, 49.203322299000043 ], [ -119.837333275999924, 49.203735526000038 ], [ -119.837332082999964, 49.20387500800004 ], [ -119.837332036999911, 49.203884003000084 ], [ -119.837331306999943, 49.20399640600003 ], [ -119.837328794999962, 49.204379378000091 ], [ -119.837327245999944, 49.204617711000076 ], [ -119.837322907, 49.205279396000037 ], [ -119.835965453999961, 49.205265750000123 ], [ -119.835847992999931, 49.205264564000068 ], [ -119.83370859899992, 49.205242983000034 ], [ -119.833415158999941, 49.20523858200005 ], [ -119.831669588999915, 49.205212352000039 ], [ -119.831552288999916, 49.205210600000086 ], [ -119.829462971999959, 49.205192899000103 ], [ -119.827321185999949, 49.205165722000089 ], [ -119.825197505999981, 49.205136898000028 ], [ -119.823027895999942, 49.205111695 ], [ -119.822994101999882, 49.206006010000046 ], [ -119.822984601999963, 49.206149089000078 ], [ -119.822871145999954, 49.206360363000037 ], [ -119.822774254, 49.206424563000049 ], [ -119.8226628399999, 49.206498378000049 ], [ -119.822368899999958, 49.206566433000077 ], [ -119.82158858, 49.206628997000074 ], [ -119.821103899, 49.206667874000047 ], [ -119.818981658999988, 49.20683803100011 ], [ -119.818675597, 49.206862900000019 ], [ -119.818261786000022, 49.206890613000041 ], [ -119.817993643999984, 49.206641202000114 ], [ -119.81668752899999, 49.205982776000027 ], [ -119.81578859899993, 49.205529599000094 ], [ -119.815220909999979, 49.205287304000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262512010", "BldgCostT": "173195402", "sL_LossRatio": "0.985445567729271", "sL_AssetLoss": "44335.08556", "sL_BldgLoss": "43689.81356", "sL_StrLoss": "43366.82086", "sL_NStrLoss": "322.9927", "sL_ContLoss": "645.272", "geom_point": "0101000020E6100000FF282CE9CFF45DC0B7A5711CB69A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.813251083999958, 49.21296329700003 ], [ -119.813250893999964, 49.212376888000051 ], [ -119.812886787999972, 49.211262609000109 ], [ -119.812629500999947, 49.210475283000093 ], [ -119.812663128999958, 49.208559844000099 ], [ -119.814876893999923, 49.208488351000064 ], [ -119.814933895999957, 49.207012721000062 ], [ -119.814975315999973, 49.205940823000056 ], [ -119.814969575999939, 49.205231896000114 ], [ -119.814980613999978, 49.205231992000094 ], [ -119.815220909999979, 49.205287304000066 ], [ -119.81578859899993, 49.205529599000094 ], [ -119.81668752899999, 49.205982776000027 ], [ -119.817993643999984, 49.206641202000114 ], [ -119.818261786000022, 49.206890613000041 ], [ -119.818675597, 49.206862900000019 ], [ -119.818981658999988, 49.20683803100011 ], [ -119.821103899, 49.206667874000047 ], [ -119.82158858, 49.206628997000074 ], [ -119.822368899999958, 49.206566433000077 ], [ -119.8226628399999, 49.206498378000049 ], [ -119.822774254, 49.206424563000049 ], [ -119.822871145999954, 49.206360363000037 ], [ -119.822984601999963, 49.206149089000078 ], [ -119.822994101999882, 49.206006010000046 ], [ -119.823027895999942, 49.205111695 ], [ -119.825197505999981, 49.205136898000028 ], [ -119.827321185999949, 49.205165722000089 ], [ -119.829462971999959, 49.205192899000103 ], [ -119.831552288999916, 49.205210600000086 ], [ -119.831669588999915, 49.205212352000039 ], [ -119.833415158999941, 49.20523858200005 ], [ -119.83370859899992, 49.205242983000034 ], [ -119.835847992999931, 49.205264564000068 ], [ -119.835965453999961, 49.205265750000123 ], [ -119.837322907, 49.205279396000037 ], [ -119.83731768399997, 49.205897453000077 ], [ -119.837313598999984, 49.206384711000069 ], [ -119.837310910999989, 49.206840937000031 ], [ -119.837310046999946, 49.206983899000065 ], [ -119.837307851999981, 49.207352941000124 ], [ -119.837305, 49.20783914 ], [ -119.837303455999944, 49.208100375000136 ], [ -119.837302917000017, 49.208190218000041 ], [ -119.837302568999974, 49.208250791000125 ], [ -119.837302483999935, 49.208259797000096 ], [ -119.83730054099999, 49.208284690000056 ], [ -119.837297029999959, 49.208328480000098 ], [ -119.837293588999927, 49.208372305000061 ], [ -119.83729011299999, 49.20841608300001 ], [ -119.837286616999933, 49.208459896000136 ], [ -119.83728314299999, 49.208503674000056 ], [ -119.837279646999917, 49.208547486000079 ], [ -119.83727618799999, 49.208591289000019 ], [ -119.83727269399999, 49.20863510100007 ], [ -119.83726921799996, 49.208678880000029 ], [ -119.83726575899999, 49.208722682000044 ], [ -119.837368085999955, 49.208801104000031 ], [ -119.837153212999937, 49.210552384000039 ], [ -119.837072297999953, 49.210903128000069 ], [ -119.837059762999928, 49.210957421000025 ], [ -119.836679227999937, 49.210935618000136 ], [ -119.836660324999968, 49.211077790000054 ], [ -119.824783350999923, 49.211119716000084 ], [ -119.824763482999984, 49.211119103 ], [ -119.8246865, 49.211116738000058 ], [ -119.824629278999979, 49.211114960000018 ], [ -119.82460944799999, 49.211114336000023 ], [ -119.824532446999925, 49.211111947000106 ], [ -119.824475314, 49.211110171000058 ], [ -119.824455358999955, 49.211109556000089 ], [ -119.824378372999945, 49.211107190000114 ], [ -119.824321189999964, 49.211105401000097 ], [ -119.824301336999937, 49.211104811000062 ], [ -119.824224321999921, 49.211102399000033 ], [ -119.824167047999978, 49.211100665000068 ], [ -119.824147267999962, 49.211100054000092 ], [ -119.824070267, 49.211097664000143 ], [ -119.824013082999954, 49.21109587600008 ], [ -119.823993213999969, 49.21109526300009 ], [ -119.823916214999912, 49.211092873000084 ], [ -119.82385892399995, 49.211091117000073 ], [ -119.823839158999959, 49.211090528000092 ], [ -119.823762107, 49.211088127000089 ], [ -119.823704798999984, 49.211086348000073 ], [ -119.823608034999936, 49.211083368000125 ], [ -119.823550832999956, 49.211081614000129 ], [ -119.823531034999931, 49.211080978000034 ], [ -119.823454, 49.211078598000022 ], [ -119.823422100999963, 49.211077600000102 ], [ -119.822893410999939, 49.211080734000106 ], [ -119.821796713999959, 49.211087198000023 ], [ -119.821144437999962, 49.211084894000102 ], [ -119.819729363999897, 49.211079876000049 ], [ -119.818960389999987, 49.211077134000107 ], [ -119.819003000999899, 49.211770222000069 ], [ -119.819000097999933, 49.212716554000032 ], [ -119.816131720000016, 49.213182518000075 ], [ -119.81508818399999, 49.213048990000061 ], [ -119.813406897999954, 49.213054387000106 ], [ -119.813323858999951, 49.213032454000036 ], [ -119.813297900999913, 49.21302558800005 ], [ -119.813251083999958, 49.21296329700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5029750", "BldgCostT": "3205000", "sL_LossRatio": "0.998760255117151", "sL_AssetLoss": "1494.66235", "sL_BldgLoss": "1492.80935", "sL_StrLoss": "1487.00935", "sL_NStrLoss": "5.8", "sL_ContLoss": "1.853", "geom_point": "0101000020E6100000A813F9C349EF5DC0261296C24D944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.738683092, 49.161133594000049 ], [ -119.738210405999965, 49.16017339000004 ], [ -119.738104628999949, 49.159889020000087 ], [ -119.737938996999901, 49.159443685000056 ], [ -119.73709852499999, 49.155592020000078 ], [ -119.736823371999961, 49.154330933000104 ], [ -119.736615698999955, 49.153379051000059 ], [ -119.73852354, 49.15349028 ], [ -119.738206828000017, 49.155837733000077 ], [ -119.738811481999946, 49.155872977000044 ], [ -119.73847171499996, 49.158391271000013 ], [ -119.739672616999954, 49.158461261000085 ], [ -119.739451099999926, 49.160103277000097 ], [ -119.739427904999971, 49.16027520100009 ], [ -119.741396778999928, 49.160389918000078 ], [ -119.740941793, 49.163763191000065 ], [ -119.740821407999974, 49.163650084000068 ], [ -119.740428618999928, 49.163278888000058 ], [ -119.740326715999984, 49.163182564000032 ], [ -119.740053075999981, 49.16292399499999 ], [ -119.739684058999956, 49.162524854000019 ], [ -119.739585100999989, 49.162417805000068 ], [ -119.738967405, 49.161594700000101 ], [ -119.738683092, 49.161133594000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7517969", "BldgCostT": "4370412", "sL_LossRatio": "1", "sL_AssetLoss": "525", "sL_BldgLoss": "525", "sL_StrLoss": "525", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F39A99A26EF5DC0333034CF78924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.734891690999945, 49.144221501000054 ], [ -119.735189163999948, 49.140154846000044 ], [ -119.736280470999972, 49.140218508 ], [ -119.736096227999909, 49.141584056000092 ], [ -119.736234360999958, 49.141592113000065 ], [ -119.736054427999989, 49.1429256750001 ], [ -119.739258750999952, 49.143112534000068 ], [ -119.738775023999949, 49.146699081000087 ], [ -119.736798375999925, 49.146583826000068 ], [ -119.736739154999938, 49.147022727 ], [ -119.735209692999931, 49.146933521000037 ], [ -119.73503589399995, 49.146136701000103 ], [ -119.734949786999891, 49.145501787000107 ], [ -119.734899431999949, 49.144392051000068 ], [ -119.734891690999945, 49.144221501000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7005699", "BldgCostT": "4202212", "sL_LossRatio": "0.997872215501193", "sL_AssetLoss": "895.8614", "sL_BldgLoss": "893.9552", "sL_StrLoss": "867.5732", "sL_NStrLoss": "26.382", "sL_ContLoss": "1.9062", "geom_point": "0101000020E6100000B2A90C46D9EF5DC0FD1763BB56944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.745149605999927, 49.156944779000099 ], [ -119.750606255999983, 49.157262357000143 ], [ -119.750306633999955, 49.159487266000035 ], [ -119.750123256, 49.160848877000092 ], [ -119.744666186999936, 49.160531277000068 ], [ -119.74477578299998, 49.159718226000052 ], [ -119.745149605999927, 49.156944779000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136833974", "BldgCostT": "89777268", "sL_LossRatio": "0.98009583293094", "sL_AssetLoss": "21543.60072", "sL_BldgLoss": "21114.793292", "sL_StrLoss": "20952.944492", "sL_NStrLoss": "161.8488", "sL_ContLoss": "428.807428", "geom_point": "0101000020E61000000C3E7210D9F05DC0B0809585A7964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.775882692999943, 49.196550104000053 ], [ -119.771445115999938, 49.192395973000089 ], [ -119.770559279999986, 49.191566588000107 ], [ -119.76962996899999, 49.190696452000047 ], [ -119.766350516999978, 49.187625553000011 ], [ -119.764966691999973, 49.186329608000108 ], [ -119.762161318999944, 49.183684955000018 ], [ -119.760598497999965, 49.182211491000025 ], [ -119.75688843599994, 49.178771154000032 ], [ -119.756195983999987, 49.178129012000099 ], [ -119.754112347999964, 49.176167197000034 ], [ -119.752964812999949, 49.175086698000136 ], [ -119.751239177999963, 49.173464657000054 ], [ -119.749697986999934, 49.172015891000029 ], [ -119.747909242999981, 49.170325469000076 ], [ -119.745942776999982, 49.168466877000121 ], [ -119.745468687999903, 49.168018786000083 ], [ -119.74373043699994, 49.166384242000085 ], [ -119.743695578999962, 49.166351461000069 ], [ -119.742426290000012, 49.165157796000159 ], [ -119.741858950999969, 49.164624840000045 ], [ -119.741180119999953, 49.16398710000005 ], [ -119.741286932999969, 49.163195210000076 ], [ -119.746744289999981, 49.163512979000053 ], [ -119.746481965000015, 49.165459459000012 ], [ -119.746662819999941, 49.165469986000026 ], [ -119.746496490999959, 49.16670410200004 ], [ -119.746992687999978, 49.166732979000045 ], [ -119.74678623299998, 49.168264849000074 ], [ -119.74675894399999, 49.168467331000045 ], [ -119.74711557099999, 49.168488084000039 ], [ -119.747169167999985, 49.168090387000099 ], [ -119.747581170999936, 49.165033060000056 ], [ -119.751002363999973, 49.16523209100005 ], [ -119.751332632999933, 49.162779640000068 ], [ -119.753084886999943, 49.162881537000025 ], [ -119.753137774999956, 49.162488680000081 ], [ -119.754153907999978, 49.162547758000137 ], [ -119.754382309, 49.160850805000067 ], [ -119.756268391999981, 49.160960434000124 ], [ -119.75632464399996, 49.160542348000064 ], [ -119.760116494999934, 49.160762649000063 ], [ -119.761781792999969, 49.160859357000014 ], [ -119.76170851499991, 49.161404462000057 ], [ -119.761299616999949, 49.164445908000054 ], [ -119.759413379999955, 49.16433636800015 ], [ -119.759357150999975, 49.164754452000082 ], [ -119.75834096199999, 49.164695425000062 ], [ -119.758112686999979, 49.166392376000061 ], [ -119.758020438999935, 49.166387017000012 ], [ -119.757904922999955, 49.167245678000029 ], [ -119.754855334999959, 49.167068476000068 ], [ -119.752823386999964, 49.166950358000108 ], [ -119.752555889999911, 49.168936996000127 ], [ -119.75215663599991, 49.168913783 ], [ -119.752132640999946, 49.169091969000064 ], [ -119.752469147999989, 49.169111534000074 ], [ -119.752334216999927, 49.170113541000099 ], [ -119.753663273999962, 49.170190804000114 ], [ -119.753626941999968, 49.170460661000078 ], [ -119.753932084000013, 49.170478398000149 ], [ -119.75366299699999, 49.172477030000103 ], [ -119.754285199999941, 49.172513193000022 ], [ -119.754212072999906, 49.173056365000043 ], [ -119.754549697999977, 49.173075988000043 ], [ -119.754700102, 49.171958745000033 ], [ -119.75538567299995, 49.171998585000019 ], [ -119.755817624, 49.168789262000061 ], [ -119.7565138, 49.16882971399999 ], [ -119.75652699599999, 49.168731654000048 ], [ -119.756557807999926, 49.16850267700007 ], [ -119.762015891999951, 49.168819671000065 ], [ -119.761885986999943, 49.169785861000051 ], [ -119.762755832999957, 49.169836353000065 ], [ -119.76273527699999, 49.169989251000139 ], [ -119.766180334999959, 49.170189159000081 ], [ -119.765994982999985, 49.171568596000114 ], [ -119.767988645999949, 49.171684232000061 ], [ -119.7680216099999, 49.171438833000053 ], [ -119.768286098999951, 49.171486697000063 ], [ -119.769331105999953, 49.171290205000041 ], [ -119.770009196999965, 49.171391297000078 ], [ -119.770187000999925, 49.171539662000079 ], [ -119.770255697999971, 49.171596987000079 ], [ -119.770627018999932, 49.171906806000059 ], [ -119.77086981299999, 49.172072094000022 ], [ -119.771038397999973, 49.172401004000108 ], [ -119.771377984999958, 49.17258189400011 ], [ -119.77180119799999, 49.173030513000121 ], [ -119.772085089999962, 49.173175804000067 ], [ -119.772399622999927, 49.173415660000018 ], [ -119.77268746699994, 49.173635159000064 ], [ -119.774464623, 49.174990304000048 ], [ -119.774751713999962, 49.175352309000054 ], [ -119.774813599999945, 49.175430322000068 ], [ -119.774813595999944, 49.175430350000049 ], [ -119.77471636199999, 49.176154930000102 ], [ -119.77499780699992, 49.17617123100009 ], [ -119.774786761999934, 49.177743910000046 ], [ -119.774837820999963, 49.178656574000065 ], [ -119.774663716999967, 49.178660761000074 ], [ -119.774516489999939, 49.179757757000075 ], [ -119.773199990999956, 49.179681497000018 ], [ -119.773172540999937, 49.179885988000073 ], [ -119.771759553999942, 49.179804120000043 ], [ -119.771733517999962, 49.179998029000103 ], [ -119.772264848999939, 49.180028817000057 ], [ -119.771833894999972, 49.183238395000075 ], [ -119.772010562999967, 49.183248632000037 ], [ -119.771920285999926, 49.183920938000014 ], [ -119.77335916399997, 49.18400429600009 ], [ -119.773256784, 49.184766896000077 ], [ -119.773596805999915, 49.184786591000062 ], [ -119.77339916899993, 49.186258729000038 ], [ -119.774622267999959, 49.186329567000051 ], [ -119.774591058999974, 49.186562075000083 ], [ -119.7750362699999, 49.186587856000067 ], [ -119.774972424999959, 49.18706352400006 ], [ -119.775563383999966, 49.187097744 ], [ -119.775454345999918, 49.187910162000037 ], [ -119.776926794999937, 49.187995408000049 ], [ -119.77687652199991, 49.188370053000035 ], [ -119.777110611999916, 49.188383603000069 ], [ -119.777001956999982, 49.189193338000088 ], [ -119.777887339999936, 49.189244584000058 ], [ -119.777598156999943, 49.191399860000075 ], [ -119.777524955, 49.191945397000097 ], [ -119.778547493999923, 49.192004573000141 ], [ -119.778508617999975, 49.192294325000063 ], [ -119.779260888999929, 49.192337854000101 ], [ -119.779126129999938, 49.19334239000009 ], [ -119.77969174499998, 49.193375114000091 ], [ -119.779696254999976, 49.193890612000132 ], [ -119.779631243999958, 49.194375251000132 ], [ -119.780119071999962, 49.194403472000076 ], [ -119.780709287999954, 49.194830894000077 ], [ -119.781204206999945, 49.195601406000044 ], [ -119.781290811999924, 49.195933305000075 ], [ -119.781430431999965, 49.196008612000057 ], [ -119.781428280999975, 49.196024653000066 ], [ -119.781394318999929, 49.196277886000061 ], [ -119.781541563, 49.196286402000069 ], [ -119.781510096999966, 49.196521017000109 ], [ -119.781504694999967, 49.196521200000106 ], [ -119.77634978599994, 49.196504004000147 ], [ -119.776260016999956, 49.196476202000042 ], [ -119.775882692999943, 49.196550104000053 ] ], [ [ -119.76215623899999, 49.174209346000048 ], [ -119.76224152099995, 49.173575086000056 ], [ -119.761615591999984, 49.173538753000066 ], [ -119.761530299999961, 49.174173013000029 ], [ -119.76215623899999, 49.174209346000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "150", "sL_BldgLoss": "150", "sL_StrLoss": "150", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB7D57C222EF5DC00C8FFD2C16934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.735237513999905, 49.147061078000036 ], [ -119.73761766899996, 49.147199889000078 ], [ -119.73713377299994, 49.150786407000105 ], [ -119.736886527999943, 49.150771990000081 ], [ -119.736565667999955, 49.15314972200008 ], [ -119.73632546499995, 49.152048685000096 ], [ -119.735874753999923, 49.149982583000046 ], [ -119.735290767999928, 49.147305226000057 ], [ -119.735237513999905, 49.147061078000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "66.2", "sL_BldgLoss": "66.2", "sL_StrLoss": "66.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D894332D14EF5DC0A9B5F65F63914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.735031296999964, 49.136177320000044 ], [ -119.735015069999974, 49.135882593000098 ], [ -119.734969715999938, 49.135883668000055 ], [ -119.734869759999924, 49.135407022000066 ], [ -119.734800658999973, 49.135077647000074 ], [ -119.736030318999951, 49.135059776000098 ], [ -119.736203644999961, 49.135057255000106 ], [ -119.736292039999981, 49.136662033000043 ], [ -119.735135423999949, 49.136689457000017 ], [ -119.735125978999918, 49.13662879900005 ], [ -119.735031296999964, 49.136177320000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1615000", "BldgCostT": "850000", "sL_LossRatio": "0.999783899860011", "sL_AssetLoss": "735.77", "sL_BldgLoss": "735.611", "sL_StrLoss": "735", "sL_NStrLoss": "0.611", "sL_ContLoss": "0.159", "geom_point": "0101000020E61000008E196EE175EE5DC0B6C0BBE8ED8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.726041676999941, 49.114558069000061 ], [ -119.726101078999946, 49.114118238000074 ], [ -119.72589818799996, 49.114106376000102 ], [ -119.726382569999927, 49.110519706000069 ], [ -119.726746392999942, 49.110540976000038 ], [ -119.726762154, 49.110424264000088 ], [ -119.723373647999935, 49.110226116000085 ], [ -119.723832854999955, 49.106826942000048 ], [ -119.719081331999945, 49.106548907000054 ], [ -119.719566158999925, 49.102962226000038 ], [ -119.719615737999945, 49.102965128000086 ], [ -119.719770710999939, 49.101818528000102 ], [ -119.725220731999968, 49.102137418000034 ], [ -119.724736348999954, 49.105724129000116 ], [ -119.724686766999966, 49.105721228000114 ], [ -119.72455722699999, 49.10668032300007 ], [ -119.729308795999913, 49.106958117000083 ], [ -119.72886508499991, 49.110245470000066 ], [ -119.73225361599999, 49.110443444000083 ], [ -119.731769686999925, 49.114030141000079 ], [ -119.731608724999887, 49.114020739000075 ], [ -119.73138355899999, 49.115689345000057 ], [ -119.727087655999952, 49.115438334000046 ], [ -119.725931909999971, 49.11537077400002 ], [ -119.726041676999941, 49.114558069000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "231", "sL_BldgLoss": "231", "sL_StrLoss": "231", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000091EEE71424ED5DC0F379DEF02F864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.703526647999965, 49.046279585000036 ], [ -119.706951255999954, 49.046480775000141 ], [ -119.706893015999952, 49.046824203000071 ], [ -119.706967907999939, 49.047956496000047 ], [ -119.707246284999954, 49.048553206000072 ], [ -119.707717498999912, 49.049171287000043 ], [ -119.707812095999884, 49.04965558600005 ], [ -119.708209309999944, 49.049889085000132 ], [ -119.708320409999942, 49.050165402000054 ], [ -119.708332804999941, 49.050177336000054 ], [ -119.703369820999967, 49.049885820000071 ], [ -119.703041175999914, 49.049866509000069 ], [ -119.703102349999952, 49.049414560000102 ], [ -119.703526647999965, 49.046279585000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8018334", "BldgCostT": "5033334", "sL_LossRatio": "0.999999451014387", "sL_AssetLoss": "632.8034684", "sL_BldgLoss": "632.803121", "sL_StrLoss": "632.8", "sL_NStrLoss": "0.003121", "sL_ContLoss": "0.0003474", "geom_point": "0101000020E61000000AC467C2A1ED5DC023718734C78B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.71084098399993, 49.094922910000022 ], [ -119.71091957699997, 49.09434213 ], [ -119.709571379999915, 49.094263076000018 ], [ -119.709762275999964, 49.092852674000078 ], [ -119.708866849999964, 49.092800160000095 ], [ -119.709352318999962, 49.089213449000034 ], [ -119.71110142699996, 49.089316023000094 ], [ -119.711175717999964, 49.089320379000085 ], [ -119.711221353999989, 49.088983092000085 ], [ -119.716631476999936, 49.089300175000034 ], [ -119.716665374999963, 49.089335258000077 ], [ -119.716355024, 49.091630918000121 ], [ -119.716775060999936, 49.09165552400006 ], [ -119.716290135999927, 49.095242256000162 ], [ -119.713419317999936, 49.09507404700004 ], [ -119.71084098399993, 49.094922910000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999990936580447", "sL_AssetLoss": "85.508565", "sL_BldgLoss": "85.50779", "sL_StrLoss": "85.5", "sL_NStrLoss": "0.00779", "sL_ContLoss": "0.000775", "geom_point": "0101000020E61000006DD68D35ABED5DC07606DBC2528A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.713730243999947, 49.081944888000116 ], [ -119.71290141299994, 49.081527891000086 ], [ -119.712127774999956, 49.08088139400008 ], [ -119.712235117, 49.08083289600004 ], [ -119.712774881999906, 49.080963992000108 ], [ -119.712854096999962, 49.080908394000097 ], [ -119.710333403999982, 49.079384493000092 ], [ -119.710011686999934, 49.079005694000053 ], [ -119.710020701999952, 49.078931051000069 ], [ -119.710074159, 49.079027176000061 ], [ -119.710562964999923, 49.07940684000009 ], [ -119.710633786999935, 49.079490419000088 ], [ -119.710809241999982, 49.079597358000058 ], [ -119.713201675, 49.079723319000053 ], [ -119.715329809999957, 49.079835291000094 ], [ -119.715034278999951, 49.082021324000053 ], [ -119.714397261000016, 49.081983987000065 ], [ -119.714377780999925, 49.081960892000033 ], [ -119.714112698999955, 49.081967308000038 ], [ -119.713730243999947, 49.081944888000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5409167", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "1130", "sL_BldgLoss": "1130", "sL_StrLoss": "1130", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F910764E7EE5DC0214EB38257924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.731283799999929, 49.146704443000075 ], [ -119.731523151000019, 49.144931998000104 ], [ -119.730295283999979, 49.144860321000117 ], [ -119.730479707999933, 49.143494790000069 ], [ -119.730341572, 49.143486725000081 ], [ -119.730453765999968, 49.142655989000055 ], [ -119.730825916999933, 49.13990019800012 ], [ -119.7316980799999, 49.139951113000038 ], [ -119.735189163999948, 49.140154846000044 ], [ -119.734891690999945, 49.144221501000054 ], [ -119.734899431999949, 49.144392051000068 ], [ -119.734949786999891, 49.145501787000107 ], [ -119.73503589399995, 49.146136701000103 ], [ -119.735209692999931, 49.146933521000037 ], [ -119.731283799999929, 49.146704443000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "273", "sL_BldgLoss": "273", "sL_StrLoss": "273", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BC0B9B789EE5DC0B7E56DB683924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.724670525999954, 49.142691964000043 ], [ -119.730125365999953, 49.143010585000106 ], [ -119.730056688999952, 49.143519075000022 ], [ -119.72964093399996, 49.146597092000093 ], [ -119.729633212999929, 49.146596641000059 ], [ -119.724185677999955, 49.146278448000082 ], [ -119.724670525999954, 49.142691964000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "273", "sL_BldgLoss": "273", "sL_StrLoss": "273", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000030C5EAC99BEF5DC06502B8382E8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.741161220999913, 49.096344410000043 ], [ -119.741245046999921, 49.095721981000054 ], [ -119.741598362, 49.093098305000076 ], [ -119.747047512, 49.093416093000066 ], [ -119.746662085999915, 49.096280690000093 ], [ -119.746751604999957, 49.096285908000041 ], [ -119.746662322999953, 49.096949434000088 ], [ -119.742050671999976, 49.096904601000105 ], [ -119.739571621999957, 49.096898168000074 ], [ -119.739556619, 49.096898164000045 ], [ -119.739566691000036, 49.096418092000043 ], [ -119.7395026, 49.096247626000022 ], [ -119.741161220999913, 49.096344410000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999966595353419", "sL_AssetLoss": "173.32918", "sL_BldgLoss": "173.32339", "sL_StrLoss": "173.3", "sL_NStrLoss": "0.02339", "sL_ContLoss": "0.00579", "geom_point": "0101000020E6100000325769FF01EB5DC053C51A4F80914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.670754436999957, 49.134898647000114 ], [ -119.673814834999959, 49.135079019000052 ], [ -119.673326147999944, 49.138665316000093 ], [ -119.670440631999924, 49.138495254000077 ], [ -119.670396356999959, 49.135060049000089 ], [ -119.670386309999927, 49.134876945000052 ], [ -119.670754436999957, 49.134898647000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999789936444274", "sL_AssetLoss": "456.5285", "sL_BldgLoss": "456.4326", "sL_StrLoss": "456", "sL_NStrLoss": "0.4326", "sL_ContLoss": "0.0959", "geom_point": "0101000020E6100000748E2A581DED5DC0EFB29922C4844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.703269844999937, 49.039475741000082 ], [ -119.703301139999965, 49.03924446100006 ], [ -119.702735742999948, 49.039211227000116 ], [ -119.70275807899999, 49.039046172000049 ], [ -119.702413542999921, 49.039025919000061 ], [ -119.702898950999909, 49.035438937000031 ], [ -119.703921289999968, 49.035499030000096 ], [ -119.70396972, 49.035141061000047 ], [ -119.704024521999926, 49.035144281000044 ], [ -119.704065233999955, 49.034843362000146 ], [ -119.708136394999954, 49.035082566000092 ], [ -119.707650689999966, 49.03560571100008 ], [ -119.707348504999956, 49.036071493000051 ], [ -119.707085877999944, 49.036266599000065 ], [ -119.706570698999954, 49.037106908000069 ], [ -119.706438203999966, 49.037693584000095 ], [ -119.706629989999925, 49.038212008000116 ], [ -119.706415910999979, 49.038540999000084 ], [ -119.706460599999915, 49.038862890000054 ], [ -119.706769087999973, 49.03899110600004 ], [ -119.707076808999915, 49.039396984000049 ], [ -119.707515699999945, 49.039725211000039 ], [ -119.703269844999937, 49.039475741000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6793033", "BldgCostT": "4055546", "sL_LossRatio": "1", "sL_AssetLoss": "496.5", "sL_BldgLoss": "496.5", "sL_StrLoss": "496.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8F0338915EF5DC028E2214A038B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733838568999957, 49.08896135800007 ], [ -119.734166007999931, 49.086532355000088 ], [ -119.731608454999957, 49.086382904000082 ], [ -119.732065153999912, 49.082995972000049 ], [ -119.732092107999947, 49.082796055000109 ], [ -119.737539988999956, 49.083114329000047 ], [ -119.737212749999912, 49.085543357000063 ], [ -119.73977027399999, 49.085692675000118 ], [ -119.739287180999938, 49.089279542000085 ], [ -119.736920341, 49.089141360000042 ], [ -119.733838568999957, 49.08896135800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4768750", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "984.3", "sL_BldgLoss": "984.3", "sL_StrLoss": "984.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0466E34DDEC5DC01B310E89D6864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.698842494999965, 49.055115679000018 ], [ -119.69884592399994, 49.055090362000101 ], [ -119.697229945999979, 49.054995335000115 ], [ -119.697715918999961, 49.051408466000076 ], [ -119.703159897999953, 49.051728498000038 ], [ -119.703156471999989, 49.051753816000044 ], [ -119.704011196999915, 49.051804037000039 ], [ -119.704772348999924, 49.051848754000027 ], [ -119.704430722999973, 49.054373111000068 ], [ -119.70428691499994, 49.055435652000092 ], [ -119.698842494999965, 49.055115679000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "216.3", "sL_BldgLoss": "216.3", "sL_StrLoss": "216.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A36AC37A86EC5DC0DD135E61C5824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.693798577999985, 49.019503578000048 ], [ -119.69658357899999, 49.019667556000016 ], [ -119.696773416999974, 49.020412300000039 ], [ -119.697048599999931, 49.020729892000098 ], [ -119.697457412999938, 49.020927799000027 ], [ -119.697603994999966, 49.021121513000068 ], [ -119.697591296999917, 49.02141060800006 ], [ -119.697848808999936, 49.021836495000116 ], [ -119.698489823000017, 49.022567105000064 ], [ -119.698837354999938, 49.02278979400009 ], [ -119.698753281999984, 49.023410878000035 ], [ -119.693312635999973, 49.023090609000121 ], [ -119.693798577999985, 49.019503578000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999982943025026", "sL_AssetLoss": "357.03869", "sL_BldgLoss": "357.0326", "sL_StrLoss": "357", "sL_NStrLoss": "0.0326", "sL_ContLoss": "0.00609", "geom_point": "0101000020E6100000D09400A94BEA5DC09E12C605D6814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.658392536999912, 49.01238943900006 ], [ -119.66383169599996, 49.012711483000075 ], [ -119.66347945399994, 49.015299699000053 ], [ -119.663343521999963, 49.016298416000012 ], [ -119.662546721999959, 49.016251257000121 ], [ -119.657903948999902, 49.015976349 ], [ -119.658392536999912, 49.01238943900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "67.4", "sL_BldgLoss": "67.4", "sL_StrLoss": "67.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BC5DAB14ADED5DC08CB5E8326F8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.712990330999915, 49.103028875000142 ], [ -119.714636216999978, 49.103125309000092 ], [ -119.71463847099993, 49.104032035000067 ], [ -119.714645219999966, 49.106740919000117 ], [ -119.712504997999957, 49.106615526000077 ], [ -119.712990330999915, 49.103028875000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.999986200798273", "sL_AssetLoss": "326.8305", "sL_BldgLoss": "326.82599", "sL_StrLoss": "326.8", "sL_NStrLoss": "0.02599", "sL_ContLoss": "0.00451", "geom_point": "0101000020E6100000BBF18B9E1DEB5DC0A188E2E17F8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.671261146999925, 49.111181437000027 ], [ -119.676711929999954, 49.111502780000073 ], [ -119.676223713999903, 49.115089220000058 ], [ -119.676144107999932, 49.115084528000089 ], [ -119.676104722999952, 49.115373821000048 ], [ -119.673608619, 49.115226701000033 ], [ -119.670653490999939, 49.115052449000089 ], [ -119.67066026, 49.115002769000071 ], [ -119.671142135999929, 49.111466035000085 ], [ -119.671221734999961, 49.111470729000132 ], [ -119.671261146999925, 49.111181437000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210405213", "BldgCostT": "138354488", "sL_LossRatio": "0.943366207628111", "sL_AssetLoss": "21633.23872", "sL_BldgLoss": "20408.06637", "sL_StrLoss": "19887.43737", "sL_NStrLoss": "520.629", "sL_ContLoss": "1225.17235", "geom_point": "0101000020E61000002AF9F96BC9EF5DC0ED69EAE9E1964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.748851176999921, 49.196610331000038 ], [ -119.74855496, 49.193738300000057 ], [ -119.74862131099998, 49.193164651000146 ], [ -119.747367226999955, 49.193106100000122 ], [ -119.746283128999949, 49.193082825 ], [ -119.741730875999949, 49.191939160000047 ], [ -119.739915423999946, 49.19148299000009 ], [ -119.740073383999956, 49.190312871000067 ], [ -119.737612188999933, 49.190169531000045 ], [ -119.737608154999947, 49.189797732000059 ], [ -119.73760281099996, 49.189280601000085 ], [ -119.737585392999947, 49.188451917000094 ], [ -119.737602883999926, 49.188071863000104 ], [ -119.737642989999983, 49.187200105000088 ], [ -119.737639201999983, 49.18549650900011 ], [ -119.73767229799995, 49.185026802000088 ], [ -119.737675085999911, 49.184848984 ], [ -119.737682539000033, 49.184371341000052 ], [ -119.737700002999944, 49.183255166000073 ], [ -119.738227713999947, 49.183285910000059 ], [ -119.738422055999976, 49.181846392000082 ], [ -119.737722681999955, 49.1818056480001 ], [ -119.737774687999945, 49.178481397000013 ], [ -119.73780980699992, 49.177467713000091 ], [ -119.73775944, 49.17662525500004 ], [ -119.737703888999974, 49.174995627000051 ], [ -119.735864972999963, 49.17487525100006 ], [ -119.72833453199999, 49.174780295000097 ], [ -119.728803122999949, 49.171314045000052 ], [ -119.728993355999989, 49.171325147000097 ], [ -119.72921682199997, 49.169671895000128 ], [ -119.727756915, 49.169586688000066 ], [ -119.728092647999944, 49.167103204000071 ], [ -119.72702665199995, 49.167040975000077 ], [ -119.727511496999952, 49.163454592000058 ], [ -119.72753696299999, 49.163456079000071 ], [ -119.727955113999926, 49.160362561000085 ], [ -119.727970449999958, 49.160249092000079 ], [ -119.728958040999984, 49.160306745000092 ], [ -119.729614519999984, 49.16034506400009 ], [ -119.729624711999961, 49.160269639000063 ], [ -119.729854860999936, 49.158566331000131 ], [ -119.730574012999909, 49.158608303000136 ], [ -119.73248621499999, 49.158719882000085 ], [ -119.73262414899996, 49.157698557000096 ], [ -119.732421738999932, 49.157686747000078 ], [ -119.732906070999931, 49.154100289000063 ], [ -119.732941796999967, 49.154102373000114 ], [ -119.732997435999977, 49.15369033500005 ], [ -119.731009252, 49.153574318000082 ], [ -119.731493649999919, 49.14998784400003 ], [ -119.731740886999958, 49.150002273000091 ], [ -119.732162286999952, 49.146881649000129 ], [ -119.735237513999905, 49.147061078000036 ], [ -119.735290767999928, 49.147305226000057 ], [ -119.735874753999923, 49.149982583000046 ], [ -119.73632546499995, 49.152048685000096 ], [ -119.736565667999955, 49.15314972200008 ], [ -119.736535350999958, 49.15337436600003 ], [ -119.736615698999955, 49.153379051000059 ], [ -119.736823371999961, 49.154330933000104 ], [ -119.73709852499999, 49.155592020000078 ], [ -119.737938996999901, 49.159443685000056 ], [ -119.738104628999949, 49.159889020000087 ], [ -119.738210405999965, 49.16017339000004 ], [ -119.738683092, 49.161133594000049 ], [ -119.738967405, 49.161594700000101 ], [ -119.739585100999989, 49.162417805000068 ], [ -119.739684058999956, 49.162524854000019 ], [ -119.740053075999981, 49.16292399499999 ], [ -119.740326715999984, 49.163182564000032 ], [ -119.740428618999928, 49.163278888000058 ], [ -119.740821407999974, 49.163650084000068 ], [ -119.740941793, 49.163763191000065 ], [ -119.74091303599999, 49.163976380000108 ], [ -119.740670294999973, 49.163962239000043 ], [ -119.740501221999978, 49.165215554000035 ], [ -119.740575016999955, 49.165219853000082 ], [ -119.740501916999918, 49.165761719000038 ], [ -119.740937319999958, 49.165787083000112 ], [ -119.741180119999953, 49.16398710000005 ], [ -119.741858950999969, 49.164624840000045 ], [ -119.742426290000012, 49.165157796000159 ], [ -119.743695578999962, 49.166351461000069 ], [ -119.74373043699994, 49.166384242000085 ], [ -119.745468687999903, 49.168018786000083 ], [ -119.745942776999982, 49.168466877000121 ], [ -119.747909242999981, 49.170325469000076 ], [ -119.749697986999934, 49.172015891000029 ], [ -119.751239177999963, 49.173464657000054 ], [ -119.752964812999949, 49.175086698000136 ], [ -119.754112347999964, 49.176167197000034 ], [ -119.756195983999987, 49.178129012000099 ], [ -119.75688843599994, 49.178771154000032 ], [ -119.760598497999965, 49.182211491000025 ], [ -119.762161318999944, 49.183684955000018 ], [ -119.764966691999973, 49.186329608000108 ], [ -119.766350516999978, 49.187625553000011 ], [ -119.76962996899999, 49.190696452000047 ], [ -119.770559279999986, 49.191566588000107 ], [ -119.771445115999938, 49.192395973000089 ], [ -119.775882692999943, 49.196550104000053 ], [ -119.77224359899999, 49.196547194000061 ], [ -119.771292624999916, 49.196546248000047 ], [ -119.770607685999963, 49.19654553800013 ], [ -119.768767512999929, 49.196543641000083 ], [ -119.76798283699992, 49.196542827000023 ], [ -119.767990401999967, 49.196486544000088 ], [ -119.766681868999967, 49.196410695000047 ], [ -119.766798688999984, 49.195541696000099 ], [ -119.766349840999951, 49.195515674000092 ], [ -119.766212, 49.196540967 ], [ -119.764653395999929, 49.19653930500003 ], [ -119.761886972999946, 49.196521274000133 ], [ -119.761543741999915, 49.196519034000161 ], [ -119.759497403999916, 49.196505646000105 ], [ -119.756898090999954, 49.196488592000023 ], [ -119.753302367999979, 49.196464973000062 ], [ -119.748851176999921, 49.196610331000038 ] ], [ [ -119.75324071199995, 49.192942525000028 ], [ -119.753252007999919, 49.19285867100006 ], [ -119.75314457, 49.192852429000027 ], [ -119.752955541999938, 49.19284144500012 ], [ -119.7529135, 49.193153516000095 ], [ -119.75018075299991, 49.19299469500001 ], [ -119.749538192999964, 49.192957342000071 ], [ -119.749504030999958, 49.193210781000055 ], [ -119.749684405999972, 49.193221266000087 ], [ -119.752090309999943, 49.193361106000133 ], [ -119.751963190999945, 49.194304526000082 ], [ -119.753007364999959, 49.194365199000053 ], [ -119.753075498, 49.193859472000057 ], [ -119.75311686000002, 49.193861876000099 ], [ -119.75324071199995, 49.192942525000028 ] ], [ [ -119.755603734999951, 49.192741316000117 ], [ -119.75574581099994, 49.19168623500012 ], [ -119.755688011999951, 49.191682878000051 ], [ -119.755545934999972, 49.192737959000048 ], [ -119.755603734999951, 49.192741316000117 ] ], [ [ -119.763346659999954, 49.192476481000071 ], [ -119.76332966699999, 49.19260282000004 ], [ -119.764099137999892, 49.192647453000099 ], [ -119.764116127999969, 49.192521114000087 ], [ -119.763346659999954, 49.192476481000071 ] ], [ [ -119.742604143, 49.186027404000058 ], [ -119.742639512999972, 49.185765251000113 ], [ -119.741937980999964, 49.185724412000063 ], [ -119.741902606999929, 49.185986565000064 ], [ -119.742604143, 49.186027404000058 ] ], [ [ -119.758400388999945, 49.186592532000084 ], [ -119.758409252999968, 49.186526671000067 ], [ -119.757908804999914, 49.186497613 ], [ -119.757899940999948, 49.186563474000103 ], [ -119.758400388999945, 49.186592532000084 ] ], [ [ -119.740678406999976, 49.175489900000102 ], [ -119.740699922, 49.175330449000064 ], [ -119.739040440999958, 49.175233784000064 ], [ -119.739018919999964, 49.175393234000055 ], [ -119.740678406999976, 49.175489900000102 ] ], [ [ -119.74413896499999, 49.172002301000134 ], [ -119.744182664, 49.171678239000109 ], [ -119.743880499999989, 49.171660649000081 ], [ -119.743836798999922, 49.171984710000039 ], [ -119.74413896499999, 49.172002301000134 ] ], [ [ -119.735041896999945, 49.164876927000122 ], [ -119.73525102, 49.163328051000107 ], [ -119.73362230399999, 49.163233068000089 ], [ -119.733621337999935, 49.16324021900008 ], [ -119.73406042, 49.16326582700006 ], [ -119.733979958999953, 49.163861665000077 ], [ -119.734126755999952, 49.163870227000068 ], [ -119.733999023999957, 49.164816113000072 ], [ -119.735041896999945, 49.164876927000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999991530233732", "sL_AssetLoss": "226.216396", "sL_BldgLoss": "226.21448", "sL_StrLoss": "226.2", "sL_NStrLoss": "0.01448", "sL_ContLoss": "0.001916", "geom_point": "0101000020E610000006A9A99F96EC5DC0FF7A64F70D824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.695490774999968, 49.014433302 ], [ -119.700930425999985, 49.014753465000126 ], [ -119.70086437, 49.015241714000112 ], [ -119.700856221999956, 49.015242405000038 ], [ -119.699859312999976, 49.015508705000059 ], [ -119.699299708999916, 49.015800692000091 ], [ -119.698711302999968, 49.016282113000052 ], [ -119.698206893999938, 49.016572593000028 ], [ -119.697962495999931, 49.016867397000027 ], [ -119.697201801999924, 49.01773050700006 ], [ -119.697068514999955, 49.018146724000097 ], [ -119.694042187999926, 49.017968541000094 ], [ -119.694528018999947, 49.014381479000093 ], [ -119.69549012, 49.014438135000042 ], [ -119.695490774999968, 49.014433302 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999975323465512", "sL_AssetLoss": "305.55344", "sL_BldgLoss": "305.5459", "sL_StrLoss": "305.5", "sL_NStrLoss": "0.0459", "sL_ContLoss": "0.00754", "geom_point": "0101000020E610000005AAFBD764ED5DC06FB81315BF864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.706900472999948, 49.05067787600013 ], [ -119.709416805999979, 49.05082562200004 ], [ -119.712256952999908, 49.051644647000117 ], [ -119.71185958699999, 49.054584381000055 ], [ -119.706415213999961, 49.054264791000051 ], [ -119.706900472999948, 49.05067787600013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "205.1", "sL_BldgLoss": "205.1", "sL_StrLoss": "205.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037A08C8E37ED5DC04969D36408884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.70551733500001, 49.061026048000045 ], [ -119.709578500999925, 49.061264466000097 ], [ -119.709201418999911, 49.061579007 ], [ -119.70847189499996, 49.062513303000074 ], [ -119.707959104999986, 49.063678305000046 ], [ -119.707193710999931, 49.064739832000015 ], [ -119.706057001999952, 49.064673095000082 ], [ -119.704391788999942, 49.064575308000073 ], [ -119.704877308999954, 49.060988460000019 ], [ -119.70551733500001, 49.061026048000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9987917", "BldgCostT": "6391667", "sL_LossRatio": "0.999968835134343", "sL_AssetLoss": "811.073607", "sL_BldgLoss": "811.04833", "sL_StrLoss": "810.60423", "sL_NStrLoss": "0.4441", "sL_ContLoss": "0.025277", "geom_point": "0101000020E6100000733E65CA81EC5DC09704457FAA834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.69572178599995, 49.023474934000085 ], [ -119.699354792999941, 49.023688742000104 ], [ -119.699606897999971, 49.024260492000039 ], [ -119.699727214999953, 49.024949801000105 ], [ -119.699699400999918, 49.025966709000024 ], [ -119.699127098999895, 49.027771196000067 ], [ -119.698858104999957, 49.028353685000077 ], [ -119.698673495999969, 49.029256600000096 ], [ -119.698056810999958, 49.030260686000048 ], [ -119.698050014999964, 49.030368896000063 ], [ -119.698307309999947, 49.030579688000074 ], [ -119.698305115999972, 49.030595547000125 ], [ -119.697602120999974, 49.03055418400001 ], [ -119.697601213999974, 49.030560882000046 ], [ -119.696402401999961, 49.030490336000035 ], [ -119.696030290999957, 49.033237610000128 ], [ -119.694576261999913, 49.033152027000078 ], [ -119.690588516999924, 49.0329172080001 ], [ -119.691074769999929, 49.029330245000025 ], [ -119.692151461999913, 49.029393661000064 ], [ -119.69227354499999, 49.029400851000098 ], [ -119.69264584599992, 49.026653573000061 ], [ -119.695270335999965, 49.026808106000018 ], [ -119.69572178599995, 49.023474934000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6641667", "BldgCostT": "4316667", "sL_LossRatio": "1", "sL_AssetLoss": "1168.7", "sL_BldgLoss": "1168.7", "sL_StrLoss": "1168.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001698C2414AED5DC043215DC7138A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.70492858799993, 49.082157078000108 ], [ -119.705173534999957, 49.080348157000103 ], [ -119.70361146399992, 49.080256447000039 ], [ -119.704097207999936, 49.076669690000067 ], [ -119.706858294999961, 49.076831780000106 ], [ -119.707112271999961, 49.074955354000089 ], [ -119.707650252999926, 49.074986927000062 ], [ -119.712559064999979, 49.075274898000046 ], [ -119.712515119, 49.075599874000034 ], [ -119.712061510999916, 49.075889504000038 ], [ -119.711225198999941, 49.076655701000092 ], [ -119.710698887999953, 49.077288093000064 ], [ -119.710134921999909, 49.077742401000073 ], [ -119.709661981999957, 49.078366201000158 ], [ -119.70956957599999, 49.078697209000104 ], [ -119.709564740999923, 49.078714528000056 ], [ -119.709312760999978, 49.078699746000055 ], [ -119.709299422999919, 49.078798327000101 ], [ -119.709433518999944, 49.078806194000066 ], [ -119.708934980999942, 49.079083996000136 ], [ -119.708890403999959, 49.079535485000122 ], [ -119.709219617999963, 49.080031098000049 ], [ -119.709987916999921, 49.080570905000066 ], [ -119.71008871, 49.080667687000137 ], [ -119.710320592999921, 49.080905594000043 ], [ -119.711240684999908, 49.081459597000077 ], [ -119.712034312999947, 49.081845458000018 ], [ -119.710473996999951, 49.081753954000092 ], [ -119.710376207999929, 49.082476730000067 ], [ -119.70921251599998, 49.082408471000086 ], [ -119.70492858799993, 49.082157078000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "261.3", "sL_BldgLoss": "261.3", "sL_StrLoss": "261.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BCBCADB2BEEC5DC023447DBB3A814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.697325109999909, 49.011537649000061 ], [ -119.697428034999987, 49.010777254000104 ], [ -119.69735156099992, 49.010772751000076 ], [ -119.697388019999906, 49.010503386000025 ], [ -119.696609153999972, 49.010457532000075 ], [ -119.697094709999945, 49.006870416000091 ], [ -119.699947402999925, 49.007038339000097 ], [ -119.700280984999921, 49.008400500000057 ], [ -119.700500809999951, 49.008682499000081 ], [ -119.700526107999906, 49.008888984000045 ], [ -119.70070010900001, 49.009326204000082 ], [ -119.700592105999959, 49.00987739300006 ], [ -119.700714785999978, 49.010118097000074 ], [ -119.701647186999963, 49.01063509300014 ], [ -119.702624384, 49.010756100000037 ], [ -119.702898160999951, 49.010868939000012 ], [ -119.702764436999971, 49.011857721000091 ], [ -119.697325109999909, 49.011537649000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999998435401823", "sL_AssetLoss": "147.0026", "sL_BldgLoss": "147.00237", "sL_StrLoss": "147", "sL_NStrLoss": "0.00237", "sL_ContLoss": "0.00023", "geom_point": "0101000020E61000001FDEAD0B83ED5DC0B82AC3978D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.709352700999915, 49.057608053000095 ], [ -119.714797484999934, 49.057927493000072 ], [ -119.714737541999909, 49.058371089000076 ], [ -119.713099409999955, 49.059031090000083 ], [ -119.712824984999955, 49.059244804000123 ], [ -119.711532406999964, 49.059895604000104 ], [ -119.71111158699992, 49.060211792000054 ], [ -119.710510893, 49.060486693000016 ], [ -119.709609637999918, 49.061238493000133 ], [ -119.708867559999987, 49.061194940000064 ], [ -119.709352700999915, 49.057608053000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "65.2", "sL_BldgLoss": "65.2", "sL_StrLoss": "65.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F923B9BAABED5DC044A0E16AF08D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.71281462899999, 49.106973882000084 ], [ -119.714646067999965, 49.107081181000069 ], [ -119.71465507899994, 49.110696769000057 ], [ -119.712329239000013, 49.110560510000013 ], [ -119.71281462899999, 49.106973882000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99991401805879", "sL_AssetLoss": "92.92649", "sL_BldgLoss": "92.9185", "sL_StrLoss": "92.9", "sL_NStrLoss": "0.0185", "sL_ContLoss": "0.00799", "geom_point": "0101000020E6100000F0F23A039FED5DC0582182FD198A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.710020701999952, 49.078931051000069 ], [ -119.710027369999949, 49.078875851000113 ], [ -119.710045800999964, 49.078893710000067 ], [ -119.710038548999975, 49.078838274000091 ], [ -119.711983283999928, 49.077491698000067 ], [ -119.712288069999929, 49.077278781000096 ], [ -119.712158409000011, 49.078237501000025 ], [ -119.715519163999915, 49.078434525000013 ], [ -119.715366165999967, 49.0795663480001 ], [ -119.715329809999957, 49.079835291000094 ], [ -119.713201675, 49.079723319000053 ], [ -119.710809241999982, 49.079597358000058 ], [ -119.710633786999935, 49.079490419000088 ], [ -119.710562964999923, 49.07940684000009 ], [ -119.710074159, 49.079027176000061 ], [ -119.710020701999952, 49.078931051000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999994933962942", "sL_AssetLoss": "166.007471", "sL_BldgLoss": "166.00663", "sL_StrLoss": "166", "sL_NStrLoss": "0.00663", "sL_ContLoss": "0.000841", "geom_point": "0101000020E6100000E2681A5669EE5DC06039E74CFF854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.72269941899998, 49.044900722000058 ], [ -119.728142809, 49.045219493000047 ], [ -119.727659242999962, 49.04880653300004 ], [ -119.722215435999942, 49.048487741000059 ], [ -119.72269941899998, 49.044900722000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99997226213393", "sL_AssetLoss": "156.82533", "sL_BldgLoss": "156.82098", "sL_StrLoss": "156.8", "sL_NStrLoss": "0.02098", "sL_ContLoss": "0.00435", "geom_point": "0101000020E6100000A6862E8F52EE5DC0DCED1FB097864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.721309029999972, 49.049551205000093 ], [ -119.726752953999963, 49.049870042000052 ], [ -119.726269230999932, 49.053457051000102 ], [ -119.720824891999897, 49.053138191000066 ], [ -119.721309029999972, 49.049551205000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999997026353805", "sL_AssetLoss": "357.809884", "sL_BldgLoss": "357.80882", "sL_StrLoss": "357.8", "sL_NStrLoss": "0.00882", "sL_ContLoss": "0.001064", "geom_point": "0101000020E61000003320523E8AEE5DC09D71AF0687894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.729097399999915, 49.080558558000121 ], [ -119.729075135999921, 49.080152508000033 ], [ -119.725792316999943, 49.080230134000018 ], [ -119.725777554999951, 49.079960575000072 ], [ -119.725367203999951, 49.079970272000047 ], [ -119.72535960099998, 49.079831428000055 ], [ -119.725322924999944, 49.079161594000034 ], [ -119.728605671999972, 49.079083982000078 ], [ -119.728590894999982, 49.078814423000082 ], [ -119.72818055399992, 49.078824131000047 ], [ -119.728077136, 49.076937220000111 ], [ -119.72766681099999, 49.076946925000101 ], [ -119.727652040999956, 49.076677366000141 ], [ -119.727241717999931, 49.076687068000048 ], [ -119.727226946999906, 49.07641750900013 ], [ -119.726816626999934, 49.07642721200007 ], [ -119.726813072999946, 49.07636233700007 ], [ -119.722678893999969, 49.076120383000045 ], [ -119.723163128999929, 49.07253351700006 ], [ -119.72435961599993, 49.072603559000079 ], [ -119.724712599000014, 49.069988046000084 ], [ -119.730158933999959, 49.070306701000021 ], [ -119.729998611, 49.071495715000061 ], [ -119.73076359, 49.071540450000072 ], [ -119.730430771000016, 49.074563009000016 ], [ -119.730368063999919, 49.075132508000081 ], [ -119.729207036999952, 49.075064612000041 ], [ -119.729219434999962, 49.075290748000057 ], [ -119.72962974499994, 49.075281038000099 ], [ -119.729703651999969, 49.076628830000075 ], [ -119.73011397499999, 49.076619118000039 ], [ -119.73014402799997, 49.077167069000048 ], [ -119.729996075999964, 49.078510573000095 ], [ -119.729966801999964, 49.078880585000043 ], [ -119.729903759999928, 49.079388749000046 ], [ -119.729754345999979, 49.080593026 ], [ -119.729097399999915, 49.080558558000121 ] ], [ [ -119.728314358999981, 49.075042253000071 ], [ -119.728677759999968, 49.075033656000087 ], [ -119.728318354999971, 49.075012633000114 ], [ -119.728314358999981, 49.075042253000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.99998614847493", "sL_AssetLoss": "323.43009", "sL_BldgLoss": "323.42561", "sL_StrLoss": "323.4", "sL_NStrLoss": "0.02561", "sL_ContLoss": "0.00448", "geom_point": "0101000020E610000084036BE69AEE5DC058484C92DF834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.72478608499992, 49.033393150000101 ], [ -119.724854027999939, 49.032889242000103 ], [ -119.724319702999978, 49.032857938000078 ], [ -119.724803361999989, 49.029270823000033 ], [ -119.725191285999955, 49.029293550000055 ], [ -119.725524459999974, 49.026822033000016 ], [ -119.730965761999968, 49.02714066900004 ], [ -119.730833914999977, 49.028119603000114 ], [ -119.732431978999927, 49.028213131000044 ], [ -119.731948917999929, 49.031800286000077 ], [ -119.730497100999955, 49.031715320000117 ], [ -119.730228146999963, 49.033711820000065 ], [ -119.72478608499992, 49.033393150000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.999954740669871", "sL_AssetLoss": "857.2818", "sL_BldgLoss": "857.243", "sL_StrLoss": "857", "sL_NStrLoss": "0.243", "sL_ContLoss": "0.0388", "geom_point": "0101000020E61000004D531DD59DEE5DC0C83DC0076D824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.72425095299999, 49.025724055000076 ], [ -119.724663905999961, 49.022660903 ], [ -119.722731000999914, 49.022547621000058 ], [ -119.722824852, 49.021851628 ], [ -119.722707044999936, 49.021844722000026 ], [ -119.723190713999927, 49.018257552000087 ], [ -119.72345673699999, 49.018273145000087 ], [ -119.723629362999944, 49.016992659000067 ], [ -119.728140366999938, 49.017256977000137 ], [ -119.728320299999979, 49.015921259000045 ], [ -119.72722268299999, 49.015856962000093 ], [ -119.727705942999947, 49.012269738000093 ], [ -119.72861270099996, 49.012322856000019 ], [ -119.728617602999975, 49.012286460000112 ], [ -119.734057230999937, 49.012604946000124 ], [ -119.733604563999933, 49.015968496000028 ], [ -119.73379535399998, 49.015979661000074 ], [ -119.733312524999931, 49.019566892000078 ], [ -119.72971607800001, 49.019356362000039 ], [ -119.729333897999965, 49.022193775000019 ], [ -119.72827079299995, 49.022131520000137 ], [ -119.728242382999923, 49.022342395000045 ], [ -119.730175292999917, 49.022455578000105 ], [ -119.729692116999928, 49.026042756000024 ], [ -119.72425095299999, 49.025724055000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149773084", "BldgCostT": "101313334", "sL_LossRatio": "0.995160469722928", "sL_AssetLoss": "10207.60222", "sL_BldgLoss": "10158.20222", "sL_StrLoss": "10140.40222", "sL_NStrLoss": "17.8", "sL_ContLoss": "49.4", "geom_point": "0101000020E6100000ABAB8E5E45E55DC0D64B19592E914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.593249898999929, 49.168005649000051 ], [ -119.593392810999916, 49.166970806000151 ], [ -119.592878160999987, 49.166940115000109 ], [ -119.592756616999978, 49.166564570000048 ], [ -119.592728385, 49.166477395000072 ], [ -119.592643795999948, 49.166153310000034 ], [ -119.592643490999976, 49.166152211000032 ], [ -119.592517012999934, 49.165667592000048 ], [ -119.592436821999968, 49.165531800000096 ], [ -119.592309578999973, 49.165456406000054 ], [ -119.592234468999962, 49.165435959000085 ], [ -119.592047920999931, 49.165385202000053 ], [ -119.59203032399995, 49.16538039600006 ], [ -119.589666636999965, 49.164737165000126 ], [ -119.588323793999933, 49.164371704000132 ], [ -119.587877787000011, 49.164253088000102 ], [ -119.582211021999981, 49.162745800000032 ], [ -119.582192195999966, 49.16255398900006 ], [ -119.582272214999946, 49.162323800000138 ], [ -119.582434419999984, 49.162018017 ], [ -119.582704554999964, 49.161508825000084 ], [ -119.583513706999938, 49.159983438000062 ], [ -119.58406997299997, 49.15893474700006 ], [ -119.584459709999976, 49.158199996000072 ], [ -119.584472091999956, 49.158100510000089 ], [ -119.581409196999957, 49.157875 ], [ -119.577914839999949, 49.15761743500007 ], [ -119.577791567999924, 49.157608341000078 ], [ -119.577668264999986, 49.157599258000054 ], [ -119.577063883999969, 49.157554694000055 ], [ -119.576188619000021, 49.15735138499999 ], [ -119.574833993999917, 49.157272204000087 ], [ -119.574583799999928, 49.157211997000076 ], [ -119.572394322999955, 49.156201587000041 ], [ -119.573584684000011, 49.155083952000069 ], [ -119.576454794999918, 49.152388894000055 ], [ -119.577811590999943, 49.151113356000039 ], [ -119.578351774999973, 49.150605521000074 ], [ -119.579347291999966, 49.149669504000059 ], [ -119.579668501999905, 49.149335305000115 ], [ -119.579976611999911, 49.148907195000085 ], [ -119.580162419, 49.148448300000034 ], [ -119.580225703999972, 49.146497971 ], [ -119.580239085999935, 49.14608470200006 ], [ -119.580243099999933, 49.145868720000067 ], [ -119.58027290299998, 49.144265539000074 ], [ -119.580294994000013, 49.143077104000056 ], [ -119.58030140299995, 49.142732403000082 ], [ -119.58032842599998, 49.141375095000058 ], [ -119.580345435999959, 49.140521069000037 ], [ -119.580351799, 49.140200910000075 ], [ -119.580370688999949, 49.138792084000031 ], [ -119.580371007999972, 49.138769389000124 ], [ -119.580500606999962, 49.138150792000069 ], [ -119.580514524999927, 49.138117421000103 ], [ -119.580834807999977, 49.137349108000109 ], [ -119.581398514999961, 49.135996662000132 ], [ -119.582131582999963, 49.134237794000065 ], [ -119.582494345999976, 49.133330488000063 ], [ -119.582521878999941, 49.133261683000093 ], [ -119.58253501899999, 49.133228805000108 ], [ -119.582538527999972, 49.133208112000098 ], [ -119.582607816999939, 49.13280110700002 ], [ -119.582541112999976, 49.12851088300004 ], [ -119.582517891999913, 49.127216916000108 ], [ -119.582421994999933, 49.126697789000083 ], [ -119.582000919999956, 49.125906998000076 ], [ -119.580478733999911, 49.123202793000111 ], [ -119.580400645999958, 49.123064083000024 ], [ -119.580169448999939, 49.122653366000101 ], [ -119.579908012999979, 49.122188806000111 ], [ -119.579685903999973, 49.121595394000067 ], [ -119.579669213, 49.121550794000015 ], [ -119.579386507999956, 49.120772789000036 ], [ -119.578916673, 49.119468014000084 ], [ -119.57814949299997, 49.117337208000016 ], [ -119.577987169999986, 49.116885165000078 ], [ -119.577568065999941, 49.115718078000022 ], [ -119.577118727999931, 49.114466853000138 ], [ -119.576913530999917, 49.113895298000095 ], [ -119.576604998999983, 49.11303609800008 ], [ -119.576298993999956, 49.112517012000104 ], [ -119.575822387999921, 49.112059103000064 ], [ -119.574076600999931, 49.110825613000067 ], [ -119.572147007999973, 49.109480689000051 ], [ -119.571742211999933, 49.109110190000081 ], [ -119.570989204999933, 49.108334755000037 ], [ -119.569979174999929, 49.10729449600003 ], [ -119.569738026999957, 49.107046136000072 ], [ -119.569299870999885, 49.106594866000066 ], [ -119.56716389199994, 49.104394796000101 ], [ -119.567001894999933, 49.104225416000055 ], [ -119.56680159699998, 49.104016004000115 ], [ -119.566473583999979, 49.103676319000087 ], [ -119.566227907999973, 49.103347909000092 ], [ -119.566059084999949, 49.103059404000113 ], [ -119.564945424999976, 49.100450288 ], [ -119.564751804999972, 49.099996680000103 ], [ -119.564621690999928, 49.099691794000059 ], [ -119.56438713199995, 49.099151089000024 ], [ -119.563971101999982, 49.098191989000064 ], [ -119.563673283999961, 49.097796669000076 ], [ -119.563641627999928, 49.097754607000148 ], [ -119.56163837599992, 49.095839316000095 ], [ -119.560335214999895, 49.094593247000027 ], [ -119.559835946999954, 49.09411579800009 ], [ -119.559281918999929, 49.09358600100007 ], [ -119.558874102999965, 49.093298389000054 ], [ -119.558520119999955, 49.093108107000091 ], [ -119.558382216999959, 49.093047342000013 ], [ -119.55800240699989, 49.09288 ], [ -119.557548538999967, 49.092707048000079 ], [ -119.55725889699994, 49.092596687000011 ], [ -119.557179455999943, 49.092572455000031 ], [ -119.557040639999911, 49.09253007900007 ], [ -119.556118772999966, 49.092248718000121 ], [ -119.55566199899999, 49.092109301000129 ], [ -119.555424264999942, 49.092004510000052 ], [ -119.555323548999965, 49.091960093000104 ], [ -119.555357067999964, 49.091718396000047 ], [ -119.554820681999942, 49.09168616200008 ], [ -119.55481741599999, 49.09168429300005 ], [ -119.554788917999957, 49.091663917000098 ], [ -119.553928198999984, 49.091047390000014 ], [ -119.553891213999961, 49.091020877000076 ], [ -119.553839297999971, 49.090983703000056 ], [ -119.553210404999987, 49.090498403000048 ], [ -119.55277966599999, 49.090107651000103 ], [ -119.552682210999976, 49.090019197000117 ], [ -119.552567310999976, 49.089896901000039 ], [ -119.551558865999951, 49.088823351000073 ], [ -119.549770473999928, 49.086919362000074 ], [ -119.549544927999946, 49.086679202000077 ], [ -119.549417193999943, 49.086543200000101 ], [ -119.54841571299994, 49.085567201000103 ], [ -119.548340177999989, 49.085503769000084 ], [ -119.547764003999973, 49.085019991000117 ], [ -119.54766379099999, 49.084945165000136 ], [ -119.546516206999925, 49.084087903000075 ], [ -119.546354842999946, 49.083982693000074 ], [ -119.54608751399995, 49.081185958000091 ], [ -119.548294898999956, 49.081203606000017 ], [ -119.548108351999971, 49.082547552000051 ], [ -119.550771801999986, 49.082707786000064 ], [ -119.550575011999982, 49.084126025000039 ], [ -119.55459237499997, 49.08436758400007 ], [ -119.554355059999949, 49.08607883300013 ], [ -119.555639950999975, 49.086156059000103 ], [ -119.555486975999955, 49.08725928800007 ], [ -119.556216803999945, 49.087303146000075 ], [ -119.556099784999944, 49.088147130000024 ], [ -119.556702343999973, 49.088183336000036 ], [ -119.556408656999963, 49.090301565000047 ], [ -119.55655890499996, 49.090310593000034 ], [ -119.556615689999958, 49.089901030000128 ], [ -119.559717394999922, 49.090087345000057 ], [ -119.559735969999934, 49.090434761000019 ], [ -119.561726354999948, 49.092659510000018 ], [ -119.561671889999943, 49.093052630000052 ], [ -119.562101141999989, 49.093078398000031 ], [ -119.56252715, 49.093554526000048 ], [ -119.562493180999979, 49.093799738000051 ], [ -119.562760934999943, 49.093815809000048 ], [ -119.564521599, 49.09578345500011 ], [ -119.565608699999984, 49.095800982000064 ], [ -119.565533314999982, 49.096345387000049 ], [ -119.566323530999952, 49.096392789000106 ], [ -119.566142696999961, 49.097698799000113 ], [ -119.567047592999984, 49.097753074000096 ], [ -119.566643716999977, 49.100670064000056 ], [ -119.56930801, 49.100829820000122 ], [ -119.569097146999951, 49.102353258000043 ], [ -119.570342274999959, 49.102427894000115 ], [ -119.570180997999955, 49.103593238000059 ], [ -119.571589711999977, 49.103677663000092 ], [ -119.571507434999901, 49.104272273000035 ], [ -119.57266671699989, 49.104341735000098 ], [ -119.572607262999966, 49.104771470000102 ], [ -119.573836407, 49.104845104000105 ], [ -119.573828812999935, 49.1049 ], [ -119.574409593999988, 49.10493478700004 ], [ -119.574227153999985, 49.106253803000101 ], [ -119.57548044399999, 49.106328862000076 ], [ -119.575227515999956, 49.108157734 ], [ -119.579048349999965, 49.108386469000031 ], [ -119.578880634999976, 49.109599823000089 ], [ -119.578960031999912, 49.109604574000109 ], [ -119.578871353999943, 49.11024610200009 ], [ -119.579714449, 49.110296556000073 ], [ -119.579625698999934, 49.110938678000068 ], [ -119.580853254999965, 49.111012125000066 ], [ -119.58071787599998, 49.111991767000106 ], [ -119.582287973999939, 49.112085688000015 ], [ -119.582062350999962, 49.113718652000045 ], [ -119.583609136999939, 49.113811156000111 ], [ -119.583320954999948, 49.115897224000136 ], [ -119.584656863999925, 49.115867304000076 ], [ -119.584670879999976, 49.116136893000068 ], [ -119.585081576999983, 49.116127690000077 ], [ -119.585095594999956, 49.116397278000058 ], [ -119.585506294999988, 49.116388075000017 ], [ -119.5855365199999, 49.116969241000078 ], [ -119.588918065999977, 49.117171318000011 ], [ -119.588784845999925, 49.118136405000044 ], [ -119.589298815999939, 49.118167110000066 ], [ -119.589225230999958, 49.118700213000118 ], [ -119.591427584999963, 49.118831753000073 ], [ -119.59093272299999, 49.122417763000037 ], [ -119.588769708999948, 49.122288573000105 ], [ -119.588756213999886, 49.122386320000061 ], [ -119.59391214399993, 49.122694194000132 ], [ -119.593779054, 49.123658985000091 ], [ -119.594323592999928, 49.123691486000048 ], [ -119.594115392999981, 49.125200796000151 ], [ -119.59471997699994, 49.125236878000074 ], [ -119.594225301999984, 49.128822868000036 ], [ -119.593704539999976, 49.128791789000054 ], [ -119.593674588999988, 49.129008880000058 ], [ -119.592752581999918, 49.12895384900002 ], [ -119.592752547999964, 49.128954101000055 ], [ -119.591568907999928, 49.128883442000067 ], [ -119.591229512000012, 49.131342429 ], [ -119.589480029999905, 49.131237968000086 ], [ -119.589417552000029, 49.131690470000137 ], [ -119.585973068, 49.131484716000067 ], [ -119.585972435999963, 49.131489290000047 ], [ -119.586296073999961, 49.131508627000102 ], [ -119.586075015999967, 49.13310884400002 ], [ -119.590394248999942, 49.133366818000091 ], [ -119.590145757999949, 49.135166686000098 ], [ -119.592301404999986, 49.135295370000087 ], [ -119.592219584999924, 49.135888178000087 ], [ -119.592701830999971, 49.135916961000085 ], [ -119.592206886999946, 49.139502882000066 ], [ -119.586753411999965, 49.13917727200004 ], [ -119.586835308, 49.13858447100008 ], [ -119.58635303799997, 49.138555662000037 ], [ -119.586503694999976, 49.137465170000098 ], [ -119.58578101599997, 49.1374219960001 ], [ -119.585600761999956, 49.138726558000045 ], [ -119.58586855099999, 49.138742556000118 ], [ -119.585843146999963, 49.138926420000075 ], [ -119.585895661999984, 49.138929556000114 ], [ -119.585675501999958, 49.140522894000085 ], [ -119.587637909999955, 49.140640112000014 ], [ -119.587222384999961, 49.143647957000091 ], [ -119.587869696999945, 49.143686614000032 ], [ -119.587834253999915, 49.143943175000146 ], [ -119.592726060999894, 49.144235181000035 ], [ -119.592231029999965, 49.147821056000033 ], [ -119.588719497999989, 49.147611467000047 ], [ -119.58871237299995, 49.147663037 ], [ -119.584775332999968, 49.147427913000094 ], [ -119.584230458999969, 49.1473953610001 ], [ -119.584184638999943, 49.147726822000031 ], [ -119.585229769999955, 49.14778925800006 ], [ -119.588892635999912, 49.148007996000018 ], [ -119.588777533999931, 49.148841251000079 ], [ -119.58876696, 49.148917792000084 ], [ -119.588883438999929, 49.14892474500008 ], [ -119.593220561999942, 49.149183580000049 ], [ -119.59314589899995, 49.149724428000091 ], [ -119.592870708999925, 49.151717787000095 ], [ -119.593606411999971, 49.151761676000028 ], [ -119.593111367999924, 49.155347514000013 ], [ -119.590367282999978, 49.155183791000098 ], [ -119.590335058999969, 49.155417083 ], [ -119.592643388999988, 49.15555481100008 ], [ -119.59244556, 49.156987502000014 ], [ -119.592558276999924, 49.156984970000074 ], [ -119.592544197999956, 49.15671538600008 ], [ -119.592955225999901, 49.156706150000083 ], [ -119.592941146, 49.156436565000043 ], [ -119.593352171999982, 49.156427330000021 ], [ -119.593338089000014, 49.156157745000087 ], [ -119.593749111999912, 49.156148507000168 ], [ -119.593735026999965, 49.155878923000053 ], [ -119.594146047999942, 49.155869684000074 ], [ -119.594131960999931, 49.155600099000083 ], [ -119.594953999000026, 49.155581617000109 ], [ -119.594939906999954, 49.155312033000087 ], [ -119.595761938999942, 49.155293544000088 ], [ -119.595747842999984, 49.155023960000115 ], [ -119.596980883999962, 49.154996217000154 ], [ -119.597037295999897, 49.156074552000121 ], [ -119.597448318, 49.156065301000083 ], [ -119.597504742999931, 49.157143635000033 ], [ -119.59791577299994, 49.157134382000088 ], [ -119.598226215999915, 49.163065213000031 ], [ -119.597815135999909, 49.163074468000019 ], [ -119.597885695999963, 49.164422384000098 ], [ -119.597474603999956, 49.16443163700005 ], [ -119.597502822999928, 49.164970803000124 ], [ -119.597913919999925, 49.164961549000068 ], [ -119.597956257999925, 49.165770299000052 ], [ -119.59590074499998, 49.165816554000031 ], [ -119.595886643999961, 49.165546971000019 ], [ -119.595560435999943, 49.165554309000058 ], [ -119.59545222899996, 49.166338146000022 ], [ -119.599580149999952, 49.166584147000087 ], [ -119.599085409999972, 49.170169931000025 ], [ -119.59845818699992, 49.170132563000031 ], [ -119.598413648999895, 49.1704552960001 ], [ -119.597644799999969, 49.169900405000092 ], [ -119.597203013999916, 49.169633693000051 ], [ -119.596847209999979, 49.169480502000035 ], [ -119.595910585999945, 49.16914089700002 ], [ -119.594687397999962, 49.16875518799999 ], [ -119.593779390999913, 49.168388400000019 ], [ -119.593485285999961, 49.168227106000089 ], [ -119.59333047699999, 49.168089601000105 ], [ -119.593267203999972, 49.16803340600007 ], [ -119.593249898999929, 49.168005649000051 ] ], [ [ -119.583474208, 49.116845948000041 ], [ -119.583466810999951, 49.116703664000084 ], [ -119.583208742999943, 49.116709442000051 ], [ -119.58311548899999, 49.117384405000116 ], [ -119.583390508999983, 49.11740084900002 ], [ -119.5834672299999, 49.116845530000049 ], [ -119.583474208, 49.116845948000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "155", "sL_BldgLoss": "155", "sL_StrLoss": "155", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000774B30A4DCE55DC0EC392329ED984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589561855999975, 49.192800237000014 ], [ -119.593991041999985, 49.193064268000086 ], [ -119.593495587999897, 49.196649881000077 ], [ -119.5889070899999, 49.196376351000069 ], [ -119.589277905, 49.195657095000037 ], [ -119.589439171999956, 49.195267195000042 ], [ -119.589492653999969, 49.194860023000047 ], [ -119.589647112999941, 49.193683502000106 ], [ -119.589561855999975, 49.192800237000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "193.2", "sL_BldgLoss": "193.2", "sL_StrLoss": "193.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F87FFAE6EE65DC03D3E089ECE9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59843346299999, 49.248549505 ], [ -119.59666968599997, 49.247162806000105 ], [ -119.596387797999952, 49.24682969300008 ], [ -119.596262352999986, 49.24664567399999 ], [ -119.596344793999918, 49.246049514000092 ], [ -119.601810885999939, 49.246374584000129 ], [ -119.601701678999973, 49.247164962000056 ], [ -119.602526113999943, 49.247213967000164 ], [ -119.602503648999985, 49.247376572000071 ], [ -119.603156104999982, 49.24741535000004 ], [ -119.603078512999957, 49.247977036000165 ], [ -119.603475730999946, 49.248000643000111 ], [ -119.602980423999909, 49.251586 ], [ -119.600159902999962, 49.251418349000112 ], [ -119.60014160499999, 49.251280501000053 ], [ -119.599960185999947, 49.249921394000118 ], [ -119.599955337999958, 49.249910931000024 ], [ -119.599827391999924, 49.249635994000066 ], [ -119.59961869199995, 49.249431106 ], [ -119.598732623999965, 49.248784701000098 ], [ -119.59843346299999, 49.248549505 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999988760848872", "sL_AssetLoss": "298.421114", "sL_BldgLoss": "298.41776", "sL_StrLoss": "298.4", "sL_NStrLoss": "0.01776", "sL_ContLoss": "0.003354", "geom_point": "0101000020E61000002B0D4636A1E65DC0ED15ED5C5EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.603013711999964, 49.264471498000013 ], [ -119.602810912999985, 49.263944411000125 ], [ -119.602542574999973, 49.262814195000033 ], [ -119.601905313999978, 49.260494504000079 ], [ -119.601735312999949, 49.260089495000038 ], [ -119.601247525999966, 49.259420698000071 ], [ -119.601107615999979, 49.259136794 ], [ -119.601064395999941, 49.258751002000018 ], [ -119.601017282999948, 49.257183809000097 ], [ -119.601017253999984, 49.257182002000057 ], [ -119.60100407799996, 49.256744892000015 ], [ -119.601006957999942, 49.256613070000093 ], [ -119.606299005999958, 49.256927487000105 ], [ -119.60580382099999, 49.260512808000044 ], [ -119.605148184999933, 49.260473870000105 ], [ -119.605025534000035, 49.261361723000043 ], [ -119.604104349999957, 49.261307007000021 ], [ -119.60387114199996, 49.262994851000066 ], [ -119.60423826799996, 49.263016658000026 ], [ -119.604033726999958, 49.26449699700008 ], [ -119.60481744599997, 49.264543546000027 ], [ -119.604322064999906, 49.268128820000051 ], [ -119.603154445999934, 49.26805946700005 ], [ -119.603148157999925, 49.266491746000085 ], [ -119.603141817000022, 49.264911086000069 ], [ -119.603013711999964, 49.264471498000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "137.4", "sL_BldgLoss": "137.4", "sL_StrLoss": "137.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BA86707BDE55DC0B5BF37769E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.588030875999934, 49.222461115000023 ], [ -119.588658746999982, 49.221174061000049 ], [ -119.588726227999956, 49.221178083000034 ], [ -119.588650705999953, 49.221723877000109 ], [ -119.591715569999963, 49.221906503000113 ], [ -119.591219632999952, 49.225491948000069 ], [ -119.587713451999932, 49.225283019000067 ], [ -119.587720203999979, 49.22525749400009 ], [ -119.587757411999974, 49.22348661000013 ], [ -119.587835994999978, 49.222978013000017 ], [ -119.587961186999976, 49.222632305000097 ], [ -119.588001, 49.222522389000133 ], [ -119.588030875999934, 49.222461115000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "413", "sL_BldgLoss": "413", "sL_StrLoss": "413", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001734464E13E85DC03AD9DD6E0F994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.621914674999985, 49.198113796000037 ], [ -119.622191425999958, 49.196102103000072 ], [ -119.622144310999943, 49.196099308000107 ], [ -119.622634424999944, 49.192536274000091 ], [ -119.62263755, 49.192513560000052 ], [ -119.623339974999908, 49.192555228000096 ], [ -119.624223291999925, 49.192607620000132 ], [ -119.628097530999966, 49.192837326000053 ], [ -119.627839929999965, 49.194711702000092 ], [ -119.628715147999927, 49.194763575000117 ], [ -119.628715110999934, 49.194762863000037 ], [ -119.629949106999931, 49.19473475200008 ], [ -119.629954531999914, 49.194837018000044 ], [ -119.631119656999914, 49.194906048000092 ], [ -119.630627048999898, 49.198491820000079 ], [ -119.628498114999957, 49.198365679000055 ], [ -119.62739418699999, 49.198300254000031 ], [ -119.627375307999941, 49.198437595000073 ], [ -119.621914674999985, 49.198113796000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007602B3A5FBE75DC04544739555984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.62400494799999, 49.191361339000082 ], [ -119.623919346999955, 49.189743882000045 ], [ -119.623508054999945, 49.189753231000033 ], [ -119.623451, 49.188674926000019 ], [ -119.624684848999905, 49.188646872000042 ], [ -119.6247133899999, 49.189186025000041 ], [ -119.625124677999935, 49.189176671000048 ], [ -119.62513895, 49.189446247000035 ], [ -119.625550238999935, 49.189436891000092 ], [ -119.625578789999921, 49.189976043000051 ], [ -119.625990082999962, 49.189966686000091 ], [ -119.626061471999975, 49.191314564 ], [ -119.62400494799999, 49.191361339000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "68.2", "sL_BldgLoss": "68.2", "sL_StrLoss": "68.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C9FFE4EF9EE55DC0166B559E029B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.587232495999928, 49.209274301000121 ], [ -119.588695870999956, 49.209361555000044 ], [ -119.588199834999969, 49.212947054000033 ], [ -119.587162195999937, 49.21288518700004 ], [ -119.587162781999922, 49.21215327900007 ], [ -119.587163000999936, 49.211862212000057 ], [ -119.587176212999935, 49.211370287000079 ], [ -119.587202571999939, 49.210388899000101 ], [ -119.587232495999928, 49.209274301000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.999997016764245", "sL_AssetLoss": "342.916244", "sL_BldgLoss": "342.915221", "sL_StrLoss": "342.900231", "sL_NStrLoss": "0.01499", "sL_ContLoss": "0.001023", "geom_point": "0101000020E6100000044C6C808AE85DC0CD9494C340A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.63202586899996, 49.284964822000042 ], [ -119.632228230999942, 49.283494477000076 ], [ -119.627124378999923, 49.283192667000058 ], [ -119.626954087999948, 49.283061998000093 ], [ -119.626854378999951, 49.283019403000061 ], [ -119.627326690999908, 49.279590127000041 ], [ -119.632796949999985, 49.279913612000065 ], [ -119.632373235999964, 49.28299270400008 ], [ -119.634062553, 49.283092545000045 ], [ -119.63423077899995, 49.281869793000055 ], [ -119.639701355999975, 49.282192926000072 ], [ -119.639208481999972, 49.285778265000033 ], [ -119.637443714999975, 49.285674055000115 ], [ -119.637275559999964, 49.286896805 ], [ -119.632234741, 49.286598984000065 ], [ -119.632557682999973, 49.2860861 ], [ -119.632630507999934, 49.285878100000076 ], [ -119.632621593999929, 49.285662495000068 ], [ -119.632545905999962, 49.285490797000101 ], [ -119.632384392999953, 49.285281607000066 ], [ -119.632174291999917, 49.285064998000081 ], [ -119.63202586899996, 49.284964822000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "75.3", "sL_BldgLoss": "75.3", "sL_StrLoss": "75.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB8B8794B2E65DC068BA11F586A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.603156553999952, 49.268584950000061 ], [ -119.605951277999935, 49.268750925000049 ], [ -119.605570768999939, 49.271505102000049 ], [ -119.605409501999972, 49.271393198000077 ], [ -119.604395689999976, 49.270858496000059 ], [ -119.604007, 49.270548995000077 ], [ -119.603279597999986, 49.269677995000094 ], [ -119.6031943, 49.269577209 ], [ -119.60315981499997, 49.26939800100007 ], [ -119.603156553999952, 49.268584950000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "65.5", "sL_BldgLoss": "65.5", "sL_StrLoss": "65.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB8B0233D5EA5DC06CFEA9027F914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.668361311999917, 49.134757541000113 ], [ -119.670386309999927, 49.134876945000052 ], [ -119.670396356999959, 49.135060049000089 ], [ -119.670440631999924, 49.138495254000077 ], [ -119.667872207999977, 49.13834381500007 ], [ -119.668361311999917, 49.134757541000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "401.2", "sL_BldgLoss": "401.2", "sL_StrLoss": "401.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000570E886B90E65DC0BBBE6AC07B964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.600867341999958, 49.175755144000036 ], [ -119.600974747999928, 49.174976616 ], [ -119.598741038999904, 49.174843574000136 ], [ -119.598940403999933, 49.174516512000011 ], [ -119.599404295999975, 49.174514317000025 ], [ -119.599988452999966, 49.174421012000025 ], [ -119.600100600999951, 49.174403089000073 ], [ -119.600415395999946, 49.174394704000129 ], [ -119.601106114999965, 49.174453899000113 ], [ -119.601802772, 49.174558696000048 ], [ -119.601778317999973, 49.174417097000052 ], [ -119.60165139599998, 49.174230595000068 ], [ -119.600693399999969, 49.173276992000098 ], [ -119.600317708999953, 49.172859591000076 ], [ -119.600201394999971, 49.172632725000014 ], [ -119.600067530999965, 49.172371487000127 ], [ -119.599919728999978, 49.172083082000036 ], [ -119.599634907999985, 49.171527402000031 ], [ -119.599472708999897, 49.171277289000088 ], [ -119.599466857999957, 49.171271577000013 ], [ -119.604423499999911, 49.17156672600008 ], [ -119.604152503999927, 49.173532193000028 ], [ -119.606655856, 49.173681169000105 ], [ -119.606225407999958, 49.176803982000109 ], [ -119.606161585999956, 49.177266947000113 ], [ -119.604590412999954, 49.177173453000123 ], [ -119.604259627999951, 49.179572284000081 ], [ -119.598801371999954, 49.179247305000075 ], [ -119.599296231999944, 49.175661572000067 ], [ -119.600867341999958, 49.175755144000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "152.1", "sL_BldgLoss": "152.1", "sL_StrLoss": "152.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009DCC8987C1E55DC08DEBA54A90994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.588749665999941, 49.196681691000059 ], [ -119.592816029999966, 49.196924110000097 ], [ -119.592320443999967, 49.200509697000079 ], [ -119.589396114999943, 49.200335377000094 ], [ -119.58894236899999, 49.203616265000093 ], [ -119.588259122999943, 49.203575526000115 ], [ -119.58803871399999, 49.205168881000077 ], [ -119.587659140999961, 49.205146246000105 ], [ -119.587394967999955, 49.207055717000088 ], [ -119.587369196999958, 49.207241991000089 ], [ -119.587287196999966, 49.207237101000047 ], [ -119.587297285, 49.206861506000102 ], [ -119.587324415, 49.205770504000071 ], [ -119.58728299699996, 49.204745431000028 ], [ -119.587279355999968, 49.204655529000092 ], [ -119.587273388999904, 49.204507600000092 ], [ -119.587359510999988, 49.204153911000077 ], [ -119.587685190999963, 49.203411511000063 ], [ -119.587778100999941, 49.20311780700014 ], [ -119.587788573999944, 49.203069203000048 ], [ -119.587975081999943, 49.202203779000108 ], [ -119.58802791799999, 49.201958691000087 ], [ -119.588167805999959, 49.201066907000033 ], [ -119.588251305999947, 49.200771790000054 ], [ -119.588599014999957, 49.200004851000124 ], [ -119.588700881999969, 49.199780109000066 ], [ -119.588791206999957, 49.199425788000049 ], [ -119.588737606999985, 49.199185813000057 ], [ -119.58859199299998, 49.198845413000107 ], [ -119.588372834, 49.19847496200007 ], [ -119.588299367999952, 49.198350754000039 ], [ -119.588238375999978, 49.198247696000088 ], [ -119.588253518, 49.197909686000088 ], [ -119.58857271600003, 49.197024900000052 ], [ -119.588749665999941, 49.196681691000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "198.2", "sL_BldgLoss": "198.2", "sL_StrLoss": "198.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BADB92A859E65DC0F51494FDCE914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596742890999934, 49.137173797000131 ], [ -119.602196201000012, 49.137498902000125 ], [ -119.601701970999954, 49.141084858000092 ], [ -119.59624824399998, 49.14075973100006 ], [ -119.596742890999934, 49.137173797000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "1", "sL_AssetLoss": "627", "sL_BldgLoss": "627", "sL_StrLoss": "627", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF5DBA8B28E65DC0D041FA9AA3924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596197891999935, 49.149648875000011 ], [ -119.596384331999928, 49.148297632000016 ], [ -119.593597878999944, 49.148131438000064 ], [ -119.593944922999981, 49.145617085000076 ], [ -119.593686144999978, 49.145601648000081 ], [ -119.593730726999951, 49.145278638000072 ], [ -119.593553161000031, 49.145268044000055 ], [ -119.5937108, 49.144125905000088 ], [ -119.589705014999979, 49.143886842000022 ], [ -119.590200198999952, 49.140300956000132 ], [ -119.595653827999911, 49.14062639100004 ], [ -119.595496247999932, 49.141768540000086 ], [ -119.599501880999981, 49.142007389000142 ], [ -119.599457341999937, 49.142330401000031 ], [ -119.599634899999955, 49.142340985000047 ], [ -119.599288187999917, 49.144855369000027 ], [ -119.599546962999923, 49.144870794000141 ], [ -119.59912652499996, 49.147919587000111 ], [ -119.601912985, 49.148085637000136 ], [ -119.601574772999953, 49.150538944000111 ], [ -119.60141862099999, 49.151671533000084 ], [ -119.595963656999913, 49.151346395000132 ], [ -119.596197891999935, 49.149648875000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999983349343526", "sL_AssetLoss": "236.02673", "sL_BldgLoss": "236.0228", "sL_StrLoss": "236", "sL_NStrLoss": "0.0228", "sL_ContLoss": "0.00393", "geom_point": "0101000020E61000001BD9326C16E75DC0D60ED29500A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.607427192999964, 49.273111751000101 ], [ -119.607720678999954, 49.270986950000079 ], [ -119.613189786999911, 49.271311432000097 ], [ -119.612992514999988, 49.272740901000077 ], [ -119.613658964999928, 49.272780422000039 ], [ -119.613164178999966, 49.276365692000098 ], [ -119.610818423999973, 49.27622656800002 ], [ -119.610517169000019, 49.275982052000046 ], [ -119.610449093999975, 49.275926798000121 ], [ -119.609847706000011, 49.275689591000109 ], [ -119.609562085999954, 49.275541591000071 ], [ -119.609355209999976, 49.275312487000093 ], [ -119.608830891999958, 49.274547602000027 ], [ -119.607765803999925, 49.273495791000073 ], [ -119.607427192999964, 49.273111751000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999978171482824", "sL_AssetLoss": "79.71224", "sL_BldgLoss": "79.7105", "sL_StrLoss": "79.7", "sL_NStrLoss": "0.0105", "sL_ContLoss": "0.00174", "geom_point": "0101000020E6100000BE72F718B0E55DC05A32BF81E6984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.588531272999944, 49.192738775000088 ], [ -119.589561855999975, 49.192800237000014 ], [ -119.589647112999941, 49.193683502000106 ], [ -119.589492653999969, 49.194860023000047 ], [ -119.589439171999956, 49.195267195000042 ], [ -119.589277905, 49.195657095000037 ], [ -119.5889070899999, 49.196376351000069 ], [ -119.588035401999932, 49.196324365000102 ], [ -119.588531272999944, 49.192738775000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6829500", "BldgCostT": "4710000", "sL_LossRatio": "0.99998912166342", "sL_AssetLoss": "852.979675", "sL_BldgLoss": "852.970396", "sL_StrLoss": "852.900466", "sL_NStrLoss": "0.06993", "sL_ContLoss": "0.009279", "geom_point": "0101000020E6100000D9A5DB4C64E55DC06BD86B51D19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.580902499999965, 49.229889785000125 ], [ -119.581185232999971, 49.227849297000127 ], [ -119.580745926999924, 49.227823085000104 ], [ -119.581242696999979, 49.224237701000035 ], [ -119.581526853999947, 49.224254656000063 ], [ -119.582009747999976, 49.220768709000048 ], [ -119.587472766999895, 49.221094518000022 ], [ -119.58747155099995, 49.221103295000084 ], [ -119.588658746999982, 49.221174061000049 ], [ -119.588030875999934, 49.222461115000023 ], [ -119.588001, 49.222522389000133 ], [ -119.587961186999976, 49.222632305000097 ], [ -119.587835994999978, 49.222978013000017 ], [ -119.587757411999974, 49.22348661000013 ], [ -119.587720203999979, 49.22525749400009 ], [ -119.587713451999932, 49.225283019000067 ], [ -119.587386751999958, 49.225263544000086 ], [ -119.58727269900001, 49.226087537000055 ], [ -119.587202287999915, 49.226083340000102 ], [ -119.587159325999934, 49.22639371900005 ], [ -119.58698183499996, 49.226826688000052 ], [ -119.586836947000023, 49.226818051000144 ], [ -119.586789331999952, 49.227162007000061 ], [ -119.586707812000014, 49.22729509700013 ], [ -119.586538635999943, 49.227571308000115 ], [ -119.586361413999953, 49.227860694000071 ], [ -119.586211815999931, 49.228046095000124 ], [ -119.586029213999922, 49.228161690000086 ], [ -119.585466812999982, 49.228393901000139 ], [ -119.585354002999935, 49.228462199000063 ], [ -119.585166294999965, 49.228654313000035 ], [ -119.585057794999955, 49.228861102000046 ], [ -119.584706082999958, 49.229809007000036 ], [ -119.584705389999911, 49.229886001000047 ], [ -119.584703275999942, 49.230116481000053 ], [ -119.580902499999965, 49.229889785000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21006416", "BldgCostT": "13751666", "sL_LossRatio": "0.999977427960615", "sL_AssetLoss": "2494.2363", "sL_BldgLoss": "2494.18", "sL_StrLoss": "2494", "sL_NStrLoss": "0.18", "sL_ContLoss": "0.0563", "geom_point": "0101000020E6100000C02DED0E48E55DC08A2F3D0EC1954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.576334610999979, 49.168746015000089 ], [ -119.577344900999918, 49.167715391000101 ], [ -119.577721804999953, 49.167377298000076 ], [ -119.578293212999981, 49.166926092000068 ], [ -119.578581779999979, 49.167031848000093 ], [ -119.581180971999956, 49.167984394000058 ], [ -119.581682503999957, 49.167113200000067 ], [ -119.581771172999936, 49.166924353000056 ], [ -119.5818521099999, 49.166751904000101 ], [ -119.581853610999943, 49.166698164000053 ], [ -119.581862581999985, 49.16637831000002 ], [ -119.581754881999984, 49.165830784000093 ], [ -119.581664990999954, 49.16537381100008 ], [ -119.581649409999983, 49.165294489000125 ], [ -119.581660419999977, 49.165135194000044 ], [ -119.581758502999904, 49.164923313000074 ], [ -119.582300303999943, 49.164307588000085 ], [ -119.582425588999968, 49.164098092000067 ], [ -119.582451787999943, 49.163822064000051 ], [ -119.58245587899998, 49.163779102000014 ], [ -119.582211021999981, 49.162745800000032 ], [ -119.587877787000011, 49.164253088000102 ], [ -119.588323793999933, 49.164371704000132 ], [ -119.589666636999965, 49.164737165000126 ], [ -119.59203032399995, 49.16538039600006 ], [ -119.592047920999931, 49.165385202000053 ], [ -119.592234468999962, 49.165435959000085 ], [ -119.592309578999973, 49.165456406000054 ], [ -119.592436821999968, 49.165531800000096 ], [ -119.592517012999934, 49.165667592000048 ], [ -119.592643490999976, 49.166152211000032 ], [ -119.592643795999948, 49.166153310000034 ], [ -119.592728385, 49.166477395000072 ], [ -119.592756616999978, 49.166564570000048 ], [ -119.592878160999987, 49.166940115000109 ], [ -119.590668234999896, 49.166808298000063 ], [ -119.590627662999964, 49.167101962000089 ], [ -119.59219664799997, 49.167195553000084 ], [ -119.592039611999951, 49.168332449000062 ], [ -119.592327556, 49.168325980000077 ], [ -119.592341639999958, 49.168595564000064 ], [ -119.592752766999979, 49.168586329000092 ], [ -119.592809113999962, 49.169664664000088 ], [ -119.591852618999951, 49.169686150000118 ], [ -119.591701331999957, 49.17078130000003 ], [ -119.588862138999957, 49.170611924000092 ], [ -119.588842009999937, 49.170757565000081 ], [ -119.586316117999957, 49.170606816000095 ], [ -119.586243721999949, 49.171130425000094 ], [ -119.585335785, 49.171076223000085 ], [ -119.585190111999935, 49.172129636000143 ], [ -119.585025386999959, 49.17332074600003 ], [ -119.58474960099997, 49.173304280000131 ], [ -119.584671101999916, 49.173871852000104 ], [ -119.583436932999959, 49.173798160000054 ], [ -119.583307888999954, 49.17473098100006 ], [ -119.580864414999922, 49.174585039000149 ], [ -119.580645053999945, 49.176170039000084 ], [ -119.577927836999947, 49.176007680000033 ], [ -119.577656424999972, 49.177967801000115 ], [ -119.575377807999928, 49.177831597000107 ], [ -119.576312937999944, 49.17579392600004 ], [ -119.575444539999936, 49.175576561000135 ], [ -119.574945377999939, 49.174934424000071 ], [ -119.57496197899999, 49.174821463000058 ], [ -119.571745998999987, 49.174431588000068 ], [ -119.571681160999958, 49.173907401000037 ], [ -119.572093036999902, 49.173818417000106 ], [ -119.573561730999941, 49.173501089000077 ], [ -119.57357980799999, 49.173497190000099 ], [ -119.572960682999906, 49.172256195000024 ], [ -119.572920486999948, 49.17222850700005 ], [ -119.575003222999968, 49.1701041540001 ], [ -119.576334610999979, 49.168746015000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999995613242033", "sL_AssetLoss": "222.031853", "sL_BldgLoss": "222.030879", "sL_StrLoss": "222.000589", "sL_NStrLoss": "0.03029", "sL_ContLoss": "0.000974", "geom_point": "0101000020E610000012452F40EEE55DC0D487E41A55964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589304083999963, 49.17698324800007 ], [ -119.58957535699993, 49.175020504000074 ], [ -119.589443815, 49.175012657000089 ], [ -119.58959499799991, 49.173918756 ], [ -119.58993935099997, 49.17142694400011 ], [ -119.595396628999964, 49.171752376000093 ], [ -119.595169436, 49.173397815000058 ], [ -119.595143395999969, 49.173586407000094 ], [ -119.59621972199993, 49.173650558000098 ], [ -119.595724645999951, 49.177236288000131 ], [ -119.59477978699995, 49.177179973000058 ], [ -119.594762007999975, 49.177308710000084 ], [ -119.589304083999963, 49.17698324800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17170250", "BldgCostT": "11345000", "sL_LossRatio": "0.999839848968882", "sL_AssetLoss": "1999.7998", "sL_BldgLoss": "1999.47953", "sL_StrLoss": "1997.02723", "sL_NStrLoss": "2.4523", "sL_ContLoss": "0.32027", "geom_point": "0101000020E61000005E99B7EA3AE55DC050BD3D219E9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.573629561999937, 49.215554319000034 ], [ -119.574079260999923, 49.212311394000039 ], [ -119.573646372999946, 49.212285528000102 ], [ -119.574143524999926, 49.208700091000068 ], [ -119.578299789, 49.208948368000073 ], [ -119.578784202999941, 49.205451989000039 ], [ -119.582083279999935, 49.205648945000021 ], [ -119.582101387999941, 49.205518164000125 ], [ -119.58240426499998, 49.203330666000078 ], [ -119.582783819999946, 49.203353320000112 ], [ -119.583073948, 49.201257575000078 ], [ -119.583757153999954, 49.20129834800013 ], [ -119.583977690999944, 49.199704991000061 ], [ -119.586901961999985, 49.199879458000041 ], [ -119.587355815999942, 49.196598560000041 ], [ -119.588749665999941, 49.196681691000059 ], [ -119.58857271600003, 49.197024900000052 ], [ -119.588253518, 49.197909686000088 ], [ -119.588238375999978, 49.198247696000088 ], [ -119.588299367999952, 49.198350754000039 ], [ -119.588372834, 49.19847496200007 ], [ -119.58859199299998, 49.198845413000107 ], [ -119.588737606999985, 49.199185813000057 ], [ -119.588791206999957, 49.199425788000049 ], [ -119.588700881999969, 49.199780109000066 ], [ -119.588599014999957, 49.200004851000124 ], [ -119.588251305999947, 49.200771790000054 ], [ -119.588167805999959, 49.201066907000033 ], [ -119.58802791799999, 49.201958691000087 ], [ -119.587975081999943, 49.202203779000108 ], [ -119.587788573999944, 49.203069203000048 ], [ -119.587778100999941, 49.20311780700014 ], [ -119.587685190999963, 49.203411511000063 ], [ -119.587359510999988, 49.204153911000077 ], [ -119.587273388999904, 49.204507600000092 ], [ -119.587279355999968, 49.204655529000092 ], [ -119.58728299699996, 49.204745431000028 ], [ -119.587324415, 49.205770504000071 ], [ -119.587297285, 49.206861506000102 ], [ -119.587287196999966, 49.207237101000047 ], [ -119.584069983999925, 49.207045197000056 ], [ -119.583789827999951, 49.209068953000106 ], [ -119.587232495999928, 49.209274301000121 ], [ -119.587202571999939, 49.210388899000101 ], [ -119.587176212999935, 49.211370287000079 ], [ -119.587163000999936, 49.211862212000057 ], [ -119.587162781999922, 49.21215327900007 ], [ -119.587162195999937, 49.21288518700004 ], [ -119.582737770999969, 49.212621278 ], [ -119.583193447999946, 49.209330316000084 ], [ -119.579592725999987, 49.209115402000108 ], [ -119.579155787999937, 49.212269269000046 ], [ -119.579588679, 49.212295114000021 ], [ -119.579091907999896, 49.215880556000108 ], [ -119.573629561999937, 49.215554319000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "68.2", "sL_BldgLoss": "68.2", "sL_StrLoss": "68.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000004D681DE61E65DC053E1D7612F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59852102399995, 49.174467527000083 ], [ -119.598966180000033, 49.171241751000132 ], [ -119.599466857999957, 49.171271577000013 ], [ -119.599472708999897, 49.171277289000088 ], [ -119.599634907999985, 49.171527402000031 ], [ -119.599919728999978, 49.172083082000036 ], [ -119.600067530999965, 49.172371487000127 ], [ -119.600201394999971, 49.172632725000014 ], [ -119.600317708999953, 49.172859591000076 ], [ -119.600693399999969, 49.173276992000098 ], [ -119.60165139599998, 49.174230595000068 ], [ -119.601778317999973, 49.174417097000052 ], [ -119.601802772, 49.174558696000048 ], [ -119.601106114999965, 49.174453899000113 ], [ -119.600415395999946, 49.174394704000129 ], [ -119.600100600999951, 49.174403089000073 ], [ -119.599988452999966, 49.174421012000025 ], [ -119.599404295999975, 49.174514317000025 ], [ -119.598940403999933, 49.174516512000011 ], [ -119.598741038999904, 49.174843574000136 ], [ -119.598471341999954, 49.174827507000082 ], [ -119.59852102399995, 49.174467527000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "70", "sL_BldgLoss": "70", "sL_StrLoss": "70", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E154B5EEF0E35DC0252F00C77D974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.562794304999954, 49.18178719500002 ], [ -119.563033243999939, 49.181536074000086 ], [ -119.562981792999935, 49.181906751000056 ], [ -119.562983333999952, 49.181936573000016 ], [ -119.562977635999985, 49.181936698000065 ], [ -119.562600547999949, 49.184653228000059 ], [ -119.559972612999971, 49.184495793000103 ], [ -119.559923145999946, 49.184851990000034 ], [ -119.559116859999989, 49.184803673 ], [ -119.560922568999956, 49.1831883400001 ], [ -119.560646658999971, 49.182918019000041 ], [ -119.560656805999926, 49.182912570000035 ], [ -119.560808115999976, 49.182827245000063 ], [ -119.562794304999954, 49.18178719500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999977860152822", "sL_AssetLoss": "84.01142", "sL_BldgLoss": "84.00956", "sL_StrLoss": "84", "sL_NStrLoss": "0.00956", "sL_ContLoss": "0.00186", "geom_point": "0101000020E6100000C15711C1BAE45DC05FAD7F7C2E9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.574014668999951, 49.204092685000013 ], [ -119.574000665999918, 49.203823099000125 ], [ -119.575234940999977, 49.203795567000107 ], [ -119.57524894899997, 49.204065153000094 ], [ -119.575660375999959, 49.204055974000084 ], [ -119.575702409999948, 49.204864731000093 ], [ -119.573645241999913, 49.204910618000028 ], [ -119.573659242999938, 49.205180204000094 ], [ -119.572013493999975, 49.205216887000105 ], [ -119.571971519999948, 49.204408128000082 ], [ -119.573205810999966, 49.204380618000116 ], [ -119.573191813999941, 49.204111031000117 ], [ -119.574014668999951, 49.204092685000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38275084", "BldgCostT": "25923334", "sL_LossRatio": "0.990353173107898", "sL_AssetLoss": "3856.476582", "sL_BldgLoss": "3819.27382", "sL_StrLoss": "3805.80132", "sL_NStrLoss": "13.4725", "sL_ContLoss": "37.202762", "geom_point": "0101000020E61000000782DF0AD1E35DC03A4E97E6D29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.558778522999972, 49.23769625400012 ], [ -119.559132864999953, 49.235148234000079 ], [ -119.558077264999923, 49.235085042000016 ], [ -119.558113657999954, 49.23482337100004 ], [ -119.557783971999982, 49.234803633000055 ], [ -119.557844677, 49.234367176 ], [ -119.557346086999956, 49.234337323000041 ], [ -119.557585516999964, 49.232615902000141 ], [ -119.557306492999928, 49.232599195000098 ], [ -119.557289090999987, 49.232724307000105 ], [ -119.556824897999931, 49.232696511 ], [ -119.556523771999949, 49.234861219000024 ], [ -119.555994055999975, 49.234829497000106 ], [ -119.555848397999924, 49.235876431000101 ], [ -119.554954798999987, 49.235822911000106 ], [ -119.554959488999941, 49.235773486000049 ], [ -119.554965596999921, 49.235709096000058 ], [ -119.554852474999905, 49.235403102000141 ], [ -119.554812697, 49.234927198000044 ], [ -119.554755289999918, 49.234745689000086 ], [ -119.554284418999927, 49.234299008000058 ], [ -119.553927682, 49.233842896000077 ], [ -119.553804309999961, 49.233759603000081 ], [ -119.553533144999932, 49.23364228600007 ], [ -119.553499001999924, 49.2336275030001 ], [ -119.552287294999985, 49.233228593000078 ], [ -119.552098310999924, 49.233121497000106 ], [ -119.55178469899991, 49.232831504000025 ], [ -119.551661902, 49.232625393000085 ], [ -119.551136163999942, 49.230750596000085 ], [ -119.550907084999935, 49.229933798000097 ], [ -119.550749304999911, 49.229751701000119 ], [ -119.551324890999965, 49.229525096000032 ], [ -119.551607996999934, 49.229371193000098 ], [ -119.551651884999956, 49.229342260000081 ], [ -119.551957424999941, 49.229140803000092 ], [ -119.552047817999934, 49.229081203000128 ], [ -119.552090739999983, 49.229045361000082 ], [ -119.552277344999951, 49.228889594000066 ], [ -119.552613499999964, 49.228608994000041 ], [ -119.554486320999914, 49.227049635000142 ], [ -119.555321125999953, 49.226354489000087 ], [ -119.555453717999967, 49.226244086000108 ], [ -119.555529607999944, 49.226180902000074 ], [ -119.555788793999966, 49.225881898000061 ], [ -119.555865881000017, 49.225748758000094 ], [ -119.556016754, 49.225488133000063 ], [ -119.556046211999956, 49.22543730500005 ], [ -119.556169444999966, 49.225169161000053 ], [ -119.556638650999957, 49.224148252000141 ], [ -119.557193499999983, 49.22294099800007 ], [ -119.557576897999922, 49.222106240000066 ], [ -119.557660703999929, 49.221923806000042 ], [ -119.557924587999963, 49.221349252000081 ], [ -119.558156703999927, 49.220843824000049 ], [ -119.558942378999973, 49.220890874000119 ], [ -119.55895823699997, 49.220776795000027 ], [ -119.558208117999939, 49.220731875000112 ], [ -119.558310940999959, 49.220507971000089 ], [ -119.558387822999975, 49.220340606000043 ], [ -119.558402222999973, 49.220309307000072 ], [ -119.55870971199991, 49.219582992000056 ], [ -119.558754195999924, 49.21919015800011 ], [ -119.558757887999917, 49.219157499000069 ], [ -119.558721097999964, 49.218738609000077 ], [ -119.558700991999956, 49.218654390000012 ], [ -119.558453106999977, 49.217615386000027 ], [ -119.557664816999932, 49.214441101000091 ], [ -119.557498686999935, 49.213755580000026 ], [ -119.556779418999923, 49.210787308000079 ], [ -119.556701969999921, 49.20979745700005 ], [ -119.556691200999921, 49.209659497000096 ], [ -119.55665700099999, 49.208936460000096 ], [ -119.556619975000018, 49.208154569000065 ], [ -119.556600832999948, 49.207750149000077 ], [ -119.55659934, 49.207718051000029 ], [ -119.556577616999945, 49.207259209000064 ], [ -119.556442329999953, 49.204398828000095 ], [ -119.556313088999929, 49.20161549500007 ], [ -119.556291605999945, 49.201126084000116 ], [ -119.556263189999953, 49.200856381000079 ], [ -119.556173425999958, 49.20000348300006 ], [ -119.556010967999981, 49.198460301000097 ], [ -119.555978995999979, 49.198156384000079 ], [ -119.555801070999934, 49.196692788000085 ], [ -119.55580104199997, 49.196692626000079 ], [ -119.555798862999922, 49.19667443500007 ], [ -119.555790446999978, 49.196605205000054 ], [ -119.55578686599992, 49.196575958000082 ], [ -119.555771645000021, 49.196450620000135 ], [ -119.555766489999883, 49.196408299000019 ], [ -119.555747705999934, 49.196353969 ], [ -119.555514301999935, 49.19579668699999 ], [ -119.555493578999943, 49.195756813000067 ], [ -119.555374174999912, 49.195527100000056 ], [ -119.554353128999949, 49.194027376000093 ], [ -119.55405923099994, 49.19359569300012 ], [ -119.553348767, 49.192552159000066 ], [ -119.553110811999915, 49.19220258399999 ], [ -119.552719072999949, 49.192306468000027 ], [ -119.552381898999926, 49.191229502000034 ], [ -119.552534858999977, 49.19112297200008 ], [ -119.552542785999918, 49.191117438000099 ], [ -119.552557716999928, 49.191107811000045 ], [ -119.552588335999957, 49.191088045000107 ], [ -119.55315436299999, 49.190722782000144 ], [ -119.553305578999939, 49.190625204000114 ], [ -119.553642234999984, 49.19029134100002 ], [ -119.553347961000014, 49.189897496000043 ], [ -119.553399992999957, 49.189893459000047 ], [ -119.55352265099998, 49.189790266000045 ], [ -119.55418087299995, 49.189204061000105 ], [ -119.554924265999944, 49.189248638000073 ], [ -119.554877365999985, 49.189586036000037 ], [ -119.557036520999972, 49.189715481000064 ], [ -119.556940435999962, 49.19040694500007 ], [ -119.55805513599995, 49.190473755000056 ], [ -119.557854035, 49.1919211230001 ], [ -119.559149093999935, 49.191998728000058 ], [ -119.559087172999952, 49.192444458000097 ], [ -119.559438713999981, 49.192465521000052 ], [ -119.55905204599999, 49.195248842000126 ], [ -119.560375358999963, 49.195219494000099 ], [ -119.560389282999964, 49.195489084000066 ], [ -119.560800643999983, 49.195479958000043 ], [ -119.560814569999977, 49.195749547000055 ], [ -119.561225932999946, 49.195740420000071 ], [ -119.561239860999976, 49.196010009000112 ], [ -119.561651224999977, 49.196000880000085 ], [ -119.561748745999921, 49.197888005000046 ], [ -119.561337366999965, 49.197897134000129 ], [ -119.561376421999924, 49.19865292500004 ], [ -119.561428146999958, 49.199653885000089 ], [ -119.562422973999915, 49.19971345800009 ], [ -119.562300535999924, 49.200595098000086 ], [ -119.562313420999928, 49.200844353000029 ], [ -119.562724824999961, 49.200835219000098 ], [ -119.562766642999932, 49.201643985000011 ], [ -119.562152972, 49.201657608000055 ], [ -119.562022104999983, 49.202599853000066 ], [ -119.562404760999925, 49.202622764000104 ], [ -119.561973538999965, 49.205727488000058 ], [ -119.562158769999925, 49.20573857800008 ], [ -119.561660724999982, 49.20932397600005 ], [ -119.561212746999928, 49.209297154000083 ], [ -119.56101227299996, 49.210740087000048 ], [ -119.559222143999961, 49.210632887000074 ], [ -119.559131541999989, 49.211284796000072 ], [ -119.559967405999913, 49.211334854000029 ], [ -119.55985452199991, 49.21214716300004 ], [ -119.561804299999949, 49.212263905000029 ], [ -119.561586805, 49.2138293880001 ], [ -119.564469719000016, 49.214001936000095 ], [ -119.564306553999955, 49.215176810000109 ], [ -119.564709686999947, 49.215200932000073 ], [ -119.564289070999962, 49.218229515000111 ], [ -119.564937874999899, 49.218268333 ], [ -119.564870553, 49.218753082000049 ], [ -119.56579207899999, 49.218808211000074 ], [ -119.565479492999927, 49.221059173000064 ], [ -119.565684228999913, 49.221071420000058 ], [ -119.56518629299994, 49.224656750000115 ], [ -119.564864569999941, 49.224637504 ], [ -119.564804598999956, 49.225069258000133 ], [ -119.564271776999931, 49.225037383000029 ], [ -119.564232686999915, 49.225318770000023 ], [ -119.563201452999976, 49.225257072000062 ], [ -119.562970719999925, 49.22691769400015 ], [ -119.560869808999882, 49.226791967000068 ], [ -119.560797548999957, 49.227311842000077 ], [ -119.560611576, 49.227300711000048 ], [ -119.560459791999918, 49.228392647000064 ], [ -119.559262717999914, 49.228320989000061 ], [ -119.559161472999989, 49.229049175000021 ], [ -119.558677476999975, 49.229020198000093 ], [ -119.558671136000015, 49.229065797000032 ], [ -119.558800282999982, 49.229073530000072 ], [ -119.558560916999966, 49.230794962000104 ], [ -119.56330875499999, 49.231079110000081 ], [ -119.563248105999904, 49.23151557300006 ], [ -119.563746667999908, 49.231545399 ], [ -119.563710310999937, 49.231807072000073 ], [ -119.564039978000011, 49.231826792000049 ], [ -119.5639765869999, 49.232283028000097 ], [ -119.565399862999939, 49.23236815500011 ], [ -119.565256652999921, 49.233399073000044 ], [ -119.566085508999919, 49.233448639000137 ], [ -119.565769136999961, 49.235726191000083 ], [ -119.566255298999963, 49.235755261000065 ], [ -119.566316231999949, 49.235316590000117 ], [ -119.571780849999968, 49.235643187000129 ], [ -119.571568649999946, 49.237172128000026 ], [ -119.57139220499991, 49.237199598000089 ], [ -119.57035384199996, 49.23732879500006 ], [ -119.569208204999939, 49.237471295000091 ], [ -119.568819204999954, 49.237604401000056 ], [ -119.568447796999934, 49.237819015000092 ], [ -119.568011606, 49.23813269200015 ], [ -119.567775809999944, 49.238223394000094 ], [ -119.566551694999987, 49.237941432000135 ], [ -119.565940669999975, 49.237800670000048 ], [ -119.565195508, 49.237628990000083 ], [ -119.564924795999985, 49.237612823000092 ], [ -119.564901445999936, 49.237611429000047 ], [ -119.564986676999951, 49.236997976000062 ], [ -119.564390781999975, 49.23696233900003 ], [ -119.564294334999943, 49.237656445000034 ], [ -119.5642782, 49.237658187000115 ], [ -119.562825272999973, 49.237938410000027 ], [ -119.558778522999972, 49.23769625400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.972460422163588", "sL_AssetLoss": "0.006064", "sL_BldgLoss": "0.005897", "sL_StrLoss": "0.000147", "sL_NStrLoss": "0.00575", "sL_ContLoss": "0.000167", "geom_point": "0101000020E6100000BCDB270D16E65DC0D2C6AE40B6954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.592943843999976, 49.170221666000074 ], [ -119.593249898999929, 49.168005649000051 ], [ -119.593267203999972, 49.16803340600007 ], [ -119.59333047699999, 49.168089601000105 ], [ -119.593485285999961, 49.168227106000089 ], [ -119.593779390999913, 49.168388400000019 ], [ -119.594687397999962, 49.16875518799999 ], [ -119.595910585999945, 49.16914089700002 ], [ -119.596847209999979, 49.169480502000035 ], [ -119.597203013999916, 49.169633693000051 ], [ -119.597644799999969, 49.169900405000092 ], [ -119.598413648999895, 49.1704552960001 ], [ -119.598401000999971, 49.170546947000048 ], [ -119.592943843999976, 49.170221666000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150852000", "BldgCostT": "102540000", "sL_LossRatio": "0.996436275390098", "sL_AssetLoss": "17592.0442129", "sL_BldgLoss": "17529.351012", "sL_StrLoss": "17506.003337", "sL_NStrLoss": "23.347675", "sL_ContLoss": "62.6932009", "geom_point": "0101000020E61000007668FDD247E45DC02AD67802C4964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.557646058999978, 49.179425822000077 ], [ -119.560174303999986, 49.178409585000082 ], [ -119.56263837399996, 49.177411205000027 ], [ -119.562778431999973, 49.1773544260001 ], [ -119.562834798999972, 49.17733159100009 ], [ -119.565205164999966, 49.176355652000026 ], [ -119.566845786999949, 49.17568010300009 ], [ -119.567820245999926, 49.175282031000066 ], [ -119.569329400999962, 49.174665493000049 ], [ -119.569960611999974, 49.17440860300011 ], [ -119.570658506999933, 49.174157504000107 ], [ -119.571446911999899, 49.173958006000056 ], [ -119.571681160999958, 49.173907401000037 ], [ -119.571745998999987, 49.174431588000068 ], [ -119.57496197899999, 49.174821463000058 ], [ -119.574945377999939, 49.174934424000071 ], [ -119.575444539999936, 49.175576561000135 ], [ -119.576312937999944, 49.17579392600004 ], [ -119.575377807999928, 49.177831597000107 ], [ -119.572894947999984, 49.177683128000048 ], [ -119.572890710999971, 49.177713712000127 ], [ -119.572870527999925, 49.177712505000073 ], [ -119.572841618999945, 49.177921112000085 ], [ -119.572512956999944, 49.177901455000018 ], [ -119.57250310799995, 49.177972521000044 ], [ -119.572266509999935, 49.177958369000073 ], [ -119.572254000999962, 49.178048626000141 ], [ -119.571961739999921, 49.17803114400008 ], [ -119.571953591999957, 49.178089933000138 ], [ -119.571637910999939, 49.17807104900001 ], [ -119.571623081999945, 49.178178040000056 ], [ -119.570608056999916, 49.178117315000065 ], [ -119.570615354999958, 49.178258144000019 ], [ -119.568599505999913, 49.178303028000094 ], [ -119.568458127000014, 49.178366660000087 ], [ -119.568153799999948, 49.17842381500013 ], [ -119.568175980999953, 49.178852251000066 ], [ -119.567353538999939, 49.178870549000052 ], [ -119.567363939999979, 49.179071479000051 ], [ -119.566501398999975, 49.178796013000117 ], [ -119.565849827999955, 49.179258433000058 ], [ -119.565730046999946, 49.179320682000082 ], [ -119.565731183999986, 49.179342634000051 ], [ -119.565580202999939, 49.179449783000109 ], [ -119.565501538999968, 49.179451530000108 ], [ -119.565331802999964, 49.179580807000015 ], [ -119.565334061, 49.179624464000021 ], [ -119.565187593999951, 49.179728409000099 ], [ -119.565136515999924, 49.17972954400004 ], [ -119.564935702999904, 49.179882487000107 ], [ -119.564936935999981, 49.179906292000105 ], [ -119.56400973299999, 49.180564280000084 ], [ -119.563736150999944, 49.180570357000065 ], [ -119.563747277999937, 49.180785619000105 ], [ -119.563432069999962, 49.181116909000103 ], [ -119.563352782, 49.181118670000032 ], [ -119.563356781, 49.181196040000032 ], [ -119.563169723999977, 49.181392636000048 ], [ -119.563052792999912, 49.18139523100011 ], [ -119.563033243999939, 49.181536074000086 ], [ -119.562794304999954, 49.18178719500002 ], [ -119.560808115999976, 49.182827245000063 ], [ -119.560656805999926, 49.182912570000035 ], [ -119.560543404999947, 49.182528814000122 ], [ -119.560403018999978, 49.182380289000086 ], [ -119.559917583999933, 49.181883004000071 ], [ -119.559472708999976, 49.181371002000091 ], [ -119.557646058999978, 49.179425822000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187195470", "BldgCostT": "127100413", "sL_LossRatio": "0.994986289835942", "sL_AssetLoss": "12326.201152", "sL_BldgLoss": "12264.401152", "sL_StrLoss": "12242.001152", "sL_NStrLoss": "22.4", "sL_ContLoss": "61.8", "geom_point": "0101000020E610000073A785DC96E35DC014FBC37D01974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.555703726999965, 49.182948184000082 ], [ -119.555393726999966, 49.18291158800011 ], [ -119.5549952369999, 49.182907554000103 ], [ -119.55374463599999, 49.182896741000057 ], [ -119.551816812999974, 49.182877806000093 ], [ -119.551856013999938, 49.181754901000069 ], [ -119.553801372999942, 49.180974035000098 ], [ -119.553842705999898, 49.180132294000039 ], [ -119.552514563999964, 49.180006544000058 ], [ -119.552620171999962, 49.178781832000041 ], [ -119.552570337999938, 49.178150654000035 ], [ -119.554018597999956, 49.178470692000161 ], [ -119.555079322999987, 49.176412097000068 ], [ -119.555882047999901, 49.174862250000047 ], [ -119.557593944999965, 49.175264983000069 ], [ -119.558306414999933, 49.175464080000069 ], [ -119.559973991999954, 49.175878600000068 ], [ -119.559529625999943, 49.176295153000126 ], [ -119.5595186199999, 49.1763054850001 ], [ -119.558868414999935, 49.176915003000026 ], [ -119.557860500999965, 49.177782810000025 ], [ -119.556437956999943, 49.179010820000073 ], [ -119.556921258000017, 49.179128047000091 ], [ -119.557155323999964, 49.179184806000123 ], [ -119.557428196, 49.179250967000087 ], [ -119.557646058999978, 49.179425822000077 ], [ -119.559472708999976, 49.181371002000091 ], [ -119.559917583999933, 49.181883004000071 ], [ -119.559754887999986, 49.182222194000097 ], [ -119.558877304999982, 49.183607606000102 ], [ -119.557027604, 49.183223794000092 ], [ -119.556274905999956, 49.18306710400001 ], [ -119.555926781999943, 49.182994642 ], [ -119.555703726999965, 49.182948184000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297615475", "BldgCostT": "198515309", "sL_LossRatio": "0.989049825646267", "sL_AssetLoss": "20573.68337", "sL_BldgLoss": "20348.39795", "sL_StrLoss": "20256.90085", "sL_NStrLoss": "91.4971", "sL_ContLoss": "225.28542", "geom_point": "0101000020E610000056465D4AA1E35DC0BFEBA67349964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.558306414999933, 49.175464080000069 ], [ -119.557593944999965, 49.175264983000069 ], [ -119.555882047999901, 49.174862250000047 ], [ -119.555079322999987, 49.176412097000068 ], [ -119.554018597999956, 49.178470692000161 ], [ -119.552570337999938, 49.178150654000035 ], [ -119.552240801999957, 49.178076696000105 ], [ -119.55125090899999, 49.177873548000036 ], [ -119.550497831999976, 49.177718981000034 ], [ -119.550202328999916, 49.17768769 ], [ -119.549842130999977, 49.177714872000067 ], [ -119.54910590799993, 49.177963446000042 ], [ -119.548861493999979, 49.178009370000048 ], [ -119.548530295999953, 49.178016651000107 ], [ -119.548191680999977, 49.177978165000091 ], [ -119.547842615, 49.177866883000085 ], [ -119.54762181599996, 49.177740971000034 ], [ -119.546291292999953, 49.176982002000067 ], [ -119.546570183999961, 49.176629 ], [ -119.546899226999969, 49.176007 ], [ -119.547001535999968, 49.175813565000034 ], [ -119.548394005999981, 49.173180881000114 ], [ -119.55070383899999, 49.169389052 ], [ -119.550752739999922, 49.169323933 ], [ -119.551099801999982, 49.169052491000087 ], [ -119.551183013999946, 49.169007528000108 ], [ -119.552989614999916, 49.168077903000011 ], [ -119.553234333999953, 49.168261474000076 ], [ -119.554058386999955, 49.168879610000083 ], [ -119.554810796999931, 49.169453509000128 ], [ -119.556744789999954, 49.170880119000088 ], [ -119.557644890999939, 49.171117747000089 ], [ -119.558626699999962, 49.171414090000077 ], [ -119.56088558499999, 49.172042168000047 ], [ -119.561001513999912, 49.172074404000064 ], [ -119.560746058999911, 49.17244441200009 ], [ -119.561792090999944, 49.172693850000144 ], [ -119.561868732, 49.172341092000053 ], [ -119.56290152599999, 49.172563993000097 ], [ -119.562914324999952, 49.172476898000063 ], [ -119.563055685999984, 49.172196658000061 ], [ -119.563256674999977, 49.1720377010001 ], [ -119.564297367000023, 49.17144439500008 ], [ -119.564766347, 49.171073565000043 ], [ -119.564949711999958, 49.170976628000034 ], [ -119.565099832999977, 49.171079350000106 ], [ -119.566617669999971, 49.17211793700011 ], [ -119.567455078999942, 49.172656839000041 ], [ -119.567854617999927, 49.172953716000059 ], [ -119.569603081999944, 49.174128795000065 ], [ -119.569960611999974, 49.17440860300011 ], [ -119.569329400999962, 49.174665493000049 ], [ -119.567820245999926, 49.175282031000066 ], [ -119.566845786999949, 49.17568010300009 ], [ -119.565205164999966, 49.176355652000026 ], [ -119.562834798999972, 49.17733159100009 ], [ -119.562778431999973, 49.1773544260001 ], [ -119.56263837399996, 49.177411205000027 ], [ -119.560174303999986, 49.178409585000082 ], [ -119.557646058999978, 49.179425822000077 ], [ -119.557428196, 49.179250967000087 ], [ -119.557155323999964, 49.179184806000123 ], [ -119.556921258000017, 49.179128047000091 ], [ -119.556437956999943, 49.179010820000073 ], [ -119.557860500999965, 49.177782810000025 ], [ -119.558868414999935, 49.176915003000026 ], [ -119.5595186199999, 49.1763054850001 ], [ -119.559529625999943, 49.176295153000126 ], [ -119.559973991999954, 49.175878600000068 ], [ -119.558306414999933, 49.175464080000069 ] ], [ [ -119.560357796999938, 49.175517271000132 ], [ -119.560565173999962, 49.174023584000068 ], [ -119.558283341999982, 49.173886810000056 ], [ -119.558217614999961, 49.174360060000041 ], [ -119.558030175999974, 49.174348823000109 ], [ -119.557973724999925, 49.174755264000041 ], [ -119.557881497999915, 49.174749735000091 ], [ -119.55787972199991, 49.17476252300002 ], [ -119.558495382999979, 49.174748876000102 ], [ -119.558509286999978, 49.175018467000022 ], [ -119.559331667999942, 49.175000231000062 ], [ -119.559345577999963, 49.175269823000114 ], [ -119.560167963999959, 49.175251582999984 ], [ -119.560181875999916, 49.175521173000114 ], [ -119.560357796999938, 49.175517271000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231910166", "BldgCostT": "151991666", "sL_LossRatio": "0.897608596175838", "sL_AssetLoss": "8271.42317", "sL_BldgLoss": "7424.50054", "sL_StrLoss": "7115.13361", "sL_NStrLoss": "309.36693", "sL_ContLoss": "846.92263", "geom_point": "0101000020E6100000F8D5EAE596E25DC037C5A9F750974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.537358643999966, 49.184937476000094 ], [ -119.537372302999984, 49.184512949000123 ], [ -119.536937609999953, 49.184492196000114 ], [ -119.536881296, 49.184027893000085 ], [ -119.536970797, 49.182167509000081 ], [ -119.536979113999948, 49.181994710000069 ], [ -119.537027632000019, 49.180986207000089 ], [ -119.537035, 49.180833174000043 ], [ -119.537112683999936, 49.179217798000117 ], [ -119.537088696999945, 49.17888761200004 ], [ -119.537064083999908, 49.178549709000102 ], [ -119.53701718399995, 49.178285045000031 ], [ -119.537036319999956, 49.175944873000056 ], [ -119.539610728999904, 49.175922194000137 ], [ -119.539755043999961, 49.1758476870001 ], [ -119.540004746999941, 49.175647797000089 ], [ -119.540024679999988, 49.175631869000043 ], [ -119.541003400999955, 49.178026614000075 ], [ -119.54098997100003, 49.178123040000102 ], [ -119.541044142999951, 49.178126296000094 ], [ -119.541247891, 49.178624794000044 ], [ -119.542089486999956, 49.179767098000127 ], [ -119.542899697999928, 49.180558900000079 ], [ -119.543643901999943, 49.181172794000084 ], [ -119.545245090999984, 49.182154011000108 ], [ -119.546581398999962, 49.183303389000045 ], [ -119.546744164999964, 49.183477005000043 ], [ -119.546554683999886, 49.183513619000024 ], [ -119.546385768999983, 49.183546271000111 ], [ -119.546208236, 49.18358055700002 ], [ -119.545596754000016, 49.183722816000099 ], [ -119.54539542899991, 49.183834546000064 ], [ -119.545206735999969, 49.184003977000017 ], [ -119.545117276999974, 49.184152269000101 ], [ -119.544789081999966, 49.184701077000106 ], [ -119.544165220999901, 49.185386696000123 ], [ -119.542561629, 49.187089942000064 ], [ -119.542072724999926, 49.187458250000049 ], [ -119.54082361, 49.187168971000133 ], [ -119.539599629999927, 49.186913699000023 ], [ -119.539368677999946, 49.186865524000098 ], [ -119.537310905999902, 49.186424498000122 ], [ -119.537345053999942, 49.185360822000064 ], [ -119.537358643999966, 49.184937476000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207497869", "BldgCostT": "130530847", "sL_LossRatio": "0.948964128718294", "sL_AssetLoss": "14478.776818", "sL_BldgLoss": "13739.839828", "sL_StrLoss": "13465.383218", "sL_NStrLoss": "274.45661", "sL_ContLoss": "738.93699", "geom_point": "0101000020E61000009ECECB17EAE25DC0E82A3961A1964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546775804999953, 49.18310970200011 ], [ -119.545667789, 49.182099902000047 ], [ -119.54314220399999, 49.180473491000093 ], [ -119.542186304000026, 49.179495005000057 ], [ -119.541607589999899, 49.178644803000076 ], [ -119.541360664999971, 49.178064802000016 ], [ -119.541371567999988, 49.177986510000096 ], [ -119.541349552999975, 49.177556791000022 ], [ -119.541146297999958, 49.177561266000119 ], [ -119.540966105999971, 49.17713799400012 ], [ -119.539371516999921, 49.173043399000072 ], [ -119.539045797999933, 49.170905646000115 ], [ -119.540304758999966, 49.170538647000051 ], [ -119.541301013999913, 49.170078400000087 ], [ -119.541366585999981, 49.170070209000059 ], [ -119.542478291999956, 49.169931415000086 ], [ -119.542984008, 49.169945502000104 ], [ -119.54309376899991, 49.169948534000113 ], [ -119.544513195, 49.169987708000093 ], [ -119.544670194999966, 49.170016083000085 ], [ -119.544680547999974, 49.170022028000055 ], [ -119.544825704999965, 49.170104988000048 ], [ -119.545539897, 49.17063691200012 ], [ -119.545836089, 49.170957159000061 ], [ -119.546173617999941, 49.171322104000126 ], [ -119.546419794999949, 49.171648698000091 ], [ -119.546477128999967, 49.171742976000111 ], [ -119.5466022899999, 49.171948891000092 ], [ -119.546665236999985, 49.172102184000082 ], [ -119.546922882999979, 49.172729596000082 ], [ -119.546972204999989, 49.172849707000069 ], [ -119.548394005999981, 49.173180881000114 ], [ -119.547001535999968, 49.175813565000034 ], [ -119.546899226999969, 49.176007 ], [ -119.546570183999961, 49.176629 ], [ -119.546291292999953, 49.176982002000067 ], [ -119.54762181599996, 49.177740971000034 ], [ -119.547842615, 49.177866883000085 ], [ -119.548191680999977, 49.177978165000091 ], [ -119.548530295999953, 49.178016651000107 ], [ -119.548861493999979, 49.178009370000048 ], [ -119.54910590799993, 49.177963446000042 ], [ -119.549842130999977, 49.177714872000067 ], [ -119.550202328999916, 49.17768769 ], [ -119.550497831999976, 49.177718981000034 ], [ -119.55125090899999, 49.177873548000036 ], [ -119.552240801999957, 49.178076696000105 ], [ -119.552570337999938, 49.178150654000035 ], [ -119.552620171999962, 49.178781832000041 ], [ -119.552514563999964, 49.180006544000058 ], [ -119.553842705999898, 49.180132294000039 ], [ -119.553801372999942, 49.180974035000098 ], [ -119.551856013999938, 49.181754901000069 ], [ -119.551816812999974, 49.182877806000093 ], [ -119.550435667999977, 49.182865406000062 ], [ -119.549614646999956, 49.182862243000045 ], [ -119.549377274999969, 49.182758499000037 ], [ -119.54914868499999, 49.182848728000081 ], [ -119.54821813599996, 49.183182069000118 ], [ -119.548156734999964, 49.183204044000078 ], [ -119.547298929999968, 49.183369818000124 ], [ -119.547011391999959, 49.183425368000066 ], [ -119.546775804999953, 49.18310970200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170746469", "BldgCostT": "100490412", "sL_LossRatio": "0.943425335137807", "sL_AssetLoss": "12710.529647", "sL_BldgLoss": "11991.435692", "sL_StrLoss": "11728.861602", "sL_NStrLoss": "262.57409", "sL_ContLoss": "719.093955", "geom_point": "0101000020E6100000A846D88519E35DC0FFCD9384A7984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545703116999931, 49.1901456370001 ], [ -119.545365292, 49.189508025000087 ], [ -119.545236976999945, 49.188877571000035 ], [ -119.545365475999944, 49.188320376000071 ], [ -119.545215221999953, 49.188173964000129 ], [ -119.54481852899994, 49.188077837000051 ], [ -119.54304821, 49.187696732000049 ], [ -119.542881979999947, 49.187655125000042 ], [ -119.542072724999926, 49.187458250000049 ], [ -119.542561629, 49.187089942000064 ], [ -119.544165220999901, 49.185386696000123 ], [ -119.544789081999966, 49.184701077000106 ], [ -119.545117276999974, 49.184152269000101 ], [ -119.545206735999969, 49.184003977000017 ], [ -119.54539542899991, 49.183834546000064 ], [ -119.545596754000016, 49.183722816000099 ], [ -119.546208236, 49.18358055700002 ], [ -119.546385768999983, 49.183546271000111 ], [ -119.546554683999886, 49.183513619000024 ], [ -119.546744164999964, 49.183477005000043 ], [ -119.547175507999938, 49.183937093000054 ], [ -119.547797115999984, 49.184805904000086 ], [ -119.548220807999925, 49.185839884000089 ], [ -119.548968393999971, 49.188117214000052 ], [ -119.549424172999949, 49.189165088000131 ], [ -119.549342504999942, 49.189752104000057 ], [ -119.54934955799996, 49.189752527000088 ], [ -119.549429560999926, 49.189177478000097 ], [ -119.549592200999939, 49.189551389000016 ], [ -119.549870094999946, 49.190326805000062 ], [ -119.550687796999938, 49.192608362000044 ], [ -119.551632221999952, 49.195243215000076 ], [ -119.551651248999988, 49.195296307000056 ], [ -119.552219104999949, 49.196880394000111 ], [ -119.55244374599999, 49.197868662000111 ], [ -119.552575218999962, 49.198446998000129 ], [ -119.552497498999941, 49.199357088000042 ], [ -119.55221780799998, 49.200560493000054 ], [ -119.551415316999979, 49.202034600000076 ], [ -119.55010118, 49.203450191000094 ], [ -119.549651810999933, 49.203779566000087 ], [ -119.549526503999985, 49.203698715 ], [ -119.549284248999967, 49.203292544000057 ], [ -119.549344842, 49.203083091000067 ], [ -119.549760011, 49.201888624000084 ], [ -119.549744758999964, 49.201823833000041 ], [ -119.549450884999914, 49.200573371000047 ], [ -119.549418456999973, 49.200435585000029 ], [ -119.549331144999925, 49.200202582000031 ], [ -119.549185623999946, 49.199985045000133 ], [ -119.549163088999975, 49.199951395000021 ], [ -119.549093560999893, 49.199847425000073 ], [ -119.548609867999929, 49.199124406000081 ], [ -119.54849649599997, 49.198302339000094 ], [ -119.548417367999946, 49.197728620000106 ], [ -119.548334479999966, 49.197127584000057 ], [ -119.54825029599999, 49.196496181000079 ], [ -119.548282542999956, 49.196363444000035 ], [ -119.54838098799992, 49.195963669000022 ], [ -119.548472321999952, 49.195593025000051 ], [ -119.548431149999942, 49.195394425000103 ], [ -119.548303238999964, 49.19506971800012 ], [ -119.548112807999956, 49.194586260000023 ], [ -119.548021293, 49.194353894000074 ], [ -119.548019111999949, 49.194122379000113 ], [ -119.54775461, 49.194045050000042 ], [ -119.547750614, 49.194036428000146 ], [ -119.547745305999953, 49.194024919000157 ], [ -119.547220651999965, 49.192887711000012 ], [ -119.546954950999975, 49.192652314 ], [ -119.546618177999932, 49.192353914000122 ], [ -119.54650393599999, 49.1922526890001 ], [ -119.546159725999971, 49.191759311000112 ], [ -119.545703116999931, 49.1901456370001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144301469", "BldgCostT": "93080412", "sL_LossRatio": "0.944177880053777", "sL_AssetLoss": "7604.107483", "sL_BldgLoss": "7179.630083", "sL_StrLoss": "7025.423283", "sL_NStrLoss": "154.2068", "sL_ContLoss": "424.4774", "geom_point": "0101000020E61000001E6D13F646E35DC061CED83C33984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.551037286999971, 49.192858397000094 ], [ -119.549586491999932, 49.188928442000091 ], [ -119.549769907999988, 49.18893945000012 ], [ -119.551408807999934, 49.189037788000043 ], [ -119.551403807, 49.188940600000102 ], [ -119.550992498999946, 49.188949692000065 ], [ -119.55096476099996, 49.188410508000104 ], [ -119.550553454999914, 49.188419598000074 ], [ -119.550539587999964, 49.188150006000114 ], [ -119.54956238499993, 49.188171597000064 ], [ -119.54953758799995, 49.18834983800015 ], [ -119.549492513999965, 49.188673844000071 ], [ -119.54843808599999, 49.185817102000108 ], [ -119.548103409999953, 49.184888508000057 ], [ -119.547095901999953, 49.183538602000084 ], [ -119.547011391999959, 49.183425368000066 ], [ -119.547298929999968, 49.183369818000124 ], [ -119.548156734999964, 49.183204044000078 ], [ -119.54821813599996, 49.183182069000118 ], [ -119.54914868499999, 49.182848728000081 ], [ -119.549377274999969, 49.182758499000037 ], [ -119.549614646999956, 49.182862243000045 ], [ -119.550435667999977, 49.182865406000062 ], [ -119.551816812999974, 49.182877806000093 ], [ -119.551800948, 49.183753571000061 ], [ -119.551788495000025, 49.184239103000039 ], [ -119.551764238999951, 49.185452413000085 ], [ -119.55174032499994, 49.186712804000067 ], [ -119.551691297999952, 49.187124715000124 ], [ -119.55161770299999, 49.187248591000092 ], [ -119.55149428699994, 49.187344189000072 ], [ -119.551268205999946, 49.187436402000131 ], [ -119.550777097999969, 49.187563316000073 ], [ -119.551260193999951, 49.187957359000094 ], [ -119.551591601999945, 49.188227686000076 ], [ -119.551881843999979, 49.188574979000052 ], [ -119.552035632999917, 49.188824678000053 ], [ -119.552209300999905, 49.189327692000035 ], [ -119.552281071999957, 49.189777926000026 ], [ -119.552302621999928, 49.189913237000148 ], [ -119.552418431999953, 49.190639678000103 ], [ -119.552454840999985, 49.190867939000086 ], [ -119.552457416999943, 49.190884252000117 ], [ -119.552461406999939, 49.190909204000036 ], [ -119.552534858999977, 49.19112297200008 ], [ -119.552381898999926, 49.191229502000034 ], [ -119.552719072999949, 49.192306468000027 ], [ -119.553110811999915, 49.19220258399999 ], [ -119.553348767, 49.192552159000066 ], [ -119.55405923099994, 49.19359569300012 ], [ -119.554353128999949, 49.194027376000093 ], [ -119.555374174999912, 49.195527100000056 ], [ -119.555493578999943, 49.195756813000067 ], [ -119.555514301999935, 49.19579668699999 ], [ -119.555747705999934, 49.196353969 ], [ -119.555766489999883, 49.196408299000019 ], [ -119.555771645000021, 49.196450620000135 ], [ -119.55578686599992, 49.196575958000082 ], [ -119.555790446999978, 49.196605205000054 ], [ -119.555798862999922, 49.19667443500007 ], [ -119.55580104199997, 49.196692626000079 ], [ -119.553828679999967, 49.196028981000083 ], [ -119.552569659999932, 49.195605330000099 ], [ -119.552319357999949, 49.195521098000029 ], [ -119.551957583999965, 49.195399369 ], [ -119.551037286999971, 49.192858397000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171186372", "BldgCostT": "114583705", "sL_LossRatio": "1", "sL_AssetLoss": "16250", "sL_BldgLoss": "16250", "sL_StrLoss": "16250", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009716A20184E35DC038454FE3C1974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.552209300999905, 49.189327692000035 ], [ -119.552035632999917, 49.188824678000053 ], [ -119.551881843999979, 49.188574979000052 ], [ -119.551591601999945, 49.188227686000076 ], [ -119.551260193999951, 49.187957359000094 ], [ -119.550777097999969, 49.187563316000073 ], [ -119.551268205999946, 49.187436402000131 ], [ -119.55149428699994, 49.187344189000072 ], [ -119.55161770299999, 49.187248591000092 ], [ -119.551691297999952, 49.187124715000124 ], [ -119.55174032499994, 49.186712804000067 ], [ -119.551764238999951, 49.185452413000085 ], [ -119.551788495000025, 49.184239103000039 ], [ -119.551800948, 49.183753571000061 ], [ -119.551816812999974, 49.182877806000093 ], [ -119.55374463599999, 49.182896741000057 ], [ -119.5549952369999, 49.182907554000103 ], [ -119.555393726999966, 49.18291158800011 ], [ -119.555703726999965, 49.182948184000082 ], [ -119.555926781999943, 49.182994642 ], [ -119.556274905999956, 49.18306710400001 ], [ -119.557027604, 49.183223794000092 ], [ -119.558877304999982, 49.183607606000102 ], [ -119.559754887999986, 49.182222194000097 ], [ -119.559917583999933, 49.181883004000071 ], [ -119.560403018999978, 49.182380289000086 ], [ -119.560543404999947, 49.182528814000122 ], [ -119.560656805999926, 49.182912570000035 ], [ -119.560646658999971, 49.182918019000041 ], [ -119.560922568999956, 49.1831883400001 ], [ -119.559116859999989, 49.184803673 ], [ -119.559013758, 49.184797494000065 ], [ -119.559018611999974, 49.184891558000125 ], [ -119.558901826999914, 49.184996026000043 ], [ -119.55888722, 49.184996349000116 ], [ -119.558874386999918, 49.185020572000084 ], [ -119.558082439999936, 49.185728969000053 ], [ -119.557040972999957, 49.186656660000011 ], [ -119.556771751999946, 49.186662625000082 ], [ -119.556734669999955, 49.186929493000086 ], [ -119.556033073999942, 49.187554406000089 ], [ -119.55503529, 49.187494580000134 ], [ -119.555050013999946, 49.187780346000118 ], [ -119.554638714999953, 49.187789451000114 ], [ -119.554652604999944, 49.188059043000031 ], [ -119.553830002999945, 49.188077246000063 ], [ -119.553857772999905, 49.188616428000024 ], [ -119.553446466999915, 49.188625529000035 ], [ -119.55346035, 49.188895120000041 ], [ -119.553871657999977, 49.188886020000105 ], [ -119.553887131, 49.189186444000036 ], [ -119.55418087299995, 49.189204061000105 ], [ -119.55352265099998, 49.189790266000045 ], [ -119.553399992999957, 49.189893459000047 ], [ -119.553347961000014, 49.189897496000043 ], [ -119.553642234999984, 49.19029134100002 ], [ -119.553305578999939, 49.190625204000114 ], [ -119.55315436299999, 49.190722782000144 ], [ -119.552588335999957, 49.191088045000107 ], [ -119.552557716999928, 49.191107811000045 ], [ -119.552542785999918, 49.191117438000099 ], [ -119.552534858999977, 49.19112297200008 ], [ -119.552461406999939, 49.190909204000036 ], [ -119.552457416999943, 49.190884252000117 ], [ -119.552454840999985, 49.190867939000086 ], [ -119.552418431999953, 49.190639678000103 ], [ -119.552302621999928, 49.189913237000148 ], [ -119.552281071999957, 49.189777926000026 ], [ -119.552209300999905, 49.189327692000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98758583", "BldgCostT": "66638333", "sL_LossRatio": "0.999875473774926", "sL_AssetLoss": "14023.39145", "sL_BldgLoss": "14021.64517", "sL_StrLoss": "14010.59347", "sL_NStrLoss": "11.0517", "sL_ContLoss": "1.74628", "geom_point": "0101000020E6100000217819519CE25DC0FA96F74044984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.535002966999926, 49.19011465200002 ], [ -119.534997925999903, 49.189718245000073 ], [ -119.534994336999944, 49.189431504000076 ], [ -119.537333857999954, 49.190201395000031 ], [ -119.53733090499999, 49.189850668000055 ], [ -119.537330675999954, 49.189822955000075 ], [ -119.537326488999952, 49.189318891000077 ], [ -119.537319502999949, 49.188485914000076 ], [ -119.53731870199999, 49.188195685000053 ], [ -119.53731739599999, 49.186921192000092 ], [ -119.537310905999902, 49.186424498000122 ], [ -119.539368677999946, 49.186865524000098 ], [ -119.539599629999927, 49.186913699000023 ], [ -119.54082361, 49.187168971000133 ], [ -119.542072724999926, 49.187458250000049 ], [ -119.542881979999947, 49.187655125000042 ], [ -119.54304821, 49.187696732000049 ], [ -119.54481852899994, 49.188077837000051 ], [ -119.544278725999945, 49.188940239000061 ], [ -119.544044874999912, 49.18953267400007 ], [ -119.54413512399999, 49.190070448 ], [ -119.544348889999966, 49.191124523000042 ], [ -119.544850908999976, 49.191601175000066 ], [ -119.544908660999965, 49.192194845000088 ], [ -119.545171642999946, 49.192898424000141 ], [ -119.545244556999975, 49.193093555000132 ], [ -119.544879262999942, 49.192959549000115 ], [ -119.542556704, 49.192164760000018 ], [ -119.542175858999926, 49.19214035800006 ], [ -119.541881473999979, 49.192121484000026 ], [ -119.541656747999951, 49.192079941000074 ], [ -119.541338095999976, 49.192021055000076 ], [ -119.540625365999958, 49.191784472000016 ], [ -119.539722926999957, 49.191484874000061 ], [ -119.537348520999942, 49.190696626000054 ], [ -119.535002966999926, 49.19011465200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263645666", "BldgCostT": "182111666", "sL_LossRatio": "0.996357880914964", "sL_AssetLoss": "28056.5126", "sL_BldgLoss": "27954.32744", "sL_StrLoss": "27895.84734", "sL_NStrLoss": "58.4801", "sL_ContLoss": "102.18516", "geom_point": "0101000020E61000000F95CA04D1E25DC07FED36FB45994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.539103267999963, 49.204769229000114 ], [ -119.538840572999987, 49.204347256000069 ], [ -119.537188984999915, 49.204577361000077 ], [ -119.537201243999959, 49.20420151400004 ], [ -119.537281819999947, 49.201739468000035 ], [ -119.53729308199992, 49.200868803000084 ], [ -119.53730307, 49.200260436000072 ], [ -119.537306288999929, 49.200063408000076 ], [ -119.537344890999947, 49.199874061000088 ], [ -119.537348881999918, 49.199599853000024 ], [ -119.537282523999963, 49.198182269 ], [ -119.537266380999966, 49.198143582000107 ], [ -119.537284961999973, 49.197536488000068 ], [ -119.53743710899991, 49.197727789000098 ], [ -119.538639710999973, 49.199519393000095 ], [ -119.538877980999985, 49.200655901000033 ], [ -119.538813317999924, 49.202097197000086 ], [ -119.539315901999927, 49.203040105000049 ], [ -119.539834615999936, 49.203514297000027 ], [ -119.540185704999928, 49.203676690000052 ], [ -119.540530318, 49.203696601000068 ], [ -119.541619391999944, 49.20352859200004 ], [ -119.542637583999948, 49.203020095000056 ], [ -119.543985200999884, 49.20253159500006 ], [ -119.544286414999959, 49.20250740900012 ], [ -119.544618023999988, 49.202581505000069 ], [ -119.545139402999979, 49.202038787000099 ], [ -119.545263203999951, 49.20177538400003 ], [ -119.545057089999915, 49.200412393000065 ], [ -119.544636202999982, 49.199962297000113 ], [ -119.544001405999936, 49.199661799000097 ], [ -119.543277295999957, 49.199164805000123 ], [ -119.542870520999941, 49.198462703000075 ], [ -119.542614882999885, 49.197515593000041 ], [ -119.542720985999921, 49.19637899300006 ], [ -119.542942608999965, 49.195591486000119 ], [ -119.543515087999964, 49.194732590000029 ], [ -119.543458598999948, 49.194150187000041 ], [ -119.542771596999941, 49.193876705000072 ], [ -119.541665181999946, 49.193729996000101 ], [ -119.539032990999928, 49.193769910000107 ], [ -119.537345383999977, 49.194041898000073 ], [ -119.537318834999894, 49.194055031000033 ], [ -119.537010583999972, 49.193976402000061 ], [ -119.537318090999975, 49.194054407000102 ], [ -119.537318862999953, 49.19403670800007 ], [ -119.537319237999938, 49.194027720000086 ], [ -119.537329575999948, 49.193785833000099 ], [ -119.537341205999965, 49.193513499000076 ], [ -119.537345681999938, 49.193060997000089 ], [ -119.537347382999911, 49.192886605000105 ], [ -119.537345101999932, 49.192547492000045 ], [ -119.537379384999952, 49.192133795000075 ], [ -119.537357512999961, 49.191116816000047 ], [ -119.537348520999942, 49.190696626000054 ], [ -119.539722926999957, 49.191484874000061 ], [ -119.540625365999958, 49.191784472000016 ], [ -119.541338095999976, 49.192021055000076 ], [ -119.541656747999951, 49.192079941000074 ], [ -119.541881473999979, 49.192121484000026 ], [ -119.542175858999926, 49.19214035800006 ], [ -119.542556704, 49.192164760000018 ], [ -119.544879262999942, 49.192959549000115 ], [ -119.545244556999975, 49.193093555000132 ], [ -119.545171642999946, 49.192898424000141 ], [ -119.544908660999965, 49.192194845000088 ], [ -119.544850908999976, 49.191601175000066 ], [ -119.544348889999966, 49.191124523000042 ], [ -119.54413512399999, 49.190070448 ], [ -119.544044874999912, 49.18953267400007 ], [ -119.544278725999945, 49.188940239000061 ], [ -119.54481852899994, 49.188077837000051 ], [ -119.545215221999953, 49.188173964000129 ], [ -119.545365475999944, 49.188320376000071 ], [ -119.545236976999945, 49.188877571000035 ], [ -119.545365292, 49.189508025000087 ], [ -119.545703116999931, 49.1901456370001 ], [ -119.546159725999971, 49.191759311000112 ], [ -119.54650393599999, 49.1922526890001 ], [ -119.546618177999932, 49.192353914000122 ], [ -119.546954950999975, 49.192652314 ], [ -119.547220651999965, 49.192887711000012 ], [ -119.547745305999953, 49.194024919000157 ], [ -119.547750614, 49.194036428000146 ], [ -119.54775461, 49.194045050000042 ], [ -119.548019111999949, 49.194122379000113 ], [ -119.548021293, 49.194353894000074 ], [ -119.548112807999956, 49.194586260000023 ], [ -119.548303238999964, 49.19506971800012 ], [ -119.548431149999942, 49.195394425000103 ], [ -119.548472321999952, 49.195593025000051 ], [ -119.54838098799992, 49.195963669000022 ], [ -119.548282542999956, 49.196363444000035 ], [ -119.54825029599999, 49.196496181000079 ], [ -119.548334479999966, 49.197127584000057 ], [ -119.548417367999946, 49.197728620000106 ], [ -119.54849649599997, 49.198302339000094 ], [ -119.548609867999929, 49.199124406000081 ], [ -119.549093560999893, 49.199847425000073 ], [ -119.549163088999975, 49.199951395000021 ], [ -119.549185623999946, 49.199985045000133 ], [ -119.549331144999925, 49.200202582000031 ], [ -119.549418456999973, 49.200435585000029 ], [ -119.549450884999914, 49.200573371000047 ], [ -119.549744758999964, 49.201823833000041 ], [ -119.549760011, 49.201888624000084 ], [ -119.549344842, 49.203083091000067 ], [ -119.549284248999967, 49.203292544000057 ], [ -119.549054062999957, 49.203177862000118 ], [ -119.5472938139999, 49.204131344000082 ], [ -119.54721922899995, 49.20409319000003 ], [ -119.544877926999931, 49.202744270000032 ], [ -119.544867600999936, 49.202738314000086 ], [ -119.544468964999965, 49.202951917000021 ], [ -119.543418950999964, 49.203514534000107 ], [ -119.542908263999948, 49.20377130100011 ], [ -119.542072738999963, 49.20405733700008 ], [ -119.541949371999962, 49.204086916000087 ], [ -119.541508592999918, 49.204192582000076 ], [ -119.541453012999938, 49.204205909000017 ], [ -119.539103267999963, 49.204769229000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117627167", "BldgCostT": "81826667", "sL_LossRatio": "0.999959150570047", "sL_AssetLoss": "7343.529649", "sL_BldgLoss": "7343.22967", "sL_StrLoss": "7342.10181", "sL_NStrLoss": "1.12786", "sL_ContLoss": "0.299979", "geom_point": "0101000020E61000008DC26835A8E25DC044B35F359E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.5381811499999, 49.229979458000052 ], [ -119.538094989999948, 49.229972197000031 ], [ -119.537304639999917, 49.230153906000041 ], [ -119.537286434999913, 49.230158085 ], [ -119.53723024899999, 49.222775571000135 ], [ -119.537244531999946, 49.222673184000023 ], [ -119.538584714999956, 49.222753694000104 ], [ -119.538753528999962, 49.221543215000047 ], [ -119.53883255199996, 49.221547962000052 ], [ -119.539047297999957, 49.220008018000016 ], [ -119.540088939999947, 49.220070582000105 ], [ -119.540130082999937, 49.219775483000035 ], [ -119.540031815999924, 49.219769580000097 ], [ -119.540066339999953, 49.219521959000062 ], [ -119.539963429999929, 49.219515779000041 ], [ -119.540014208999978, 49.219151559000075 ], [ -119.539957951999966, 49.219148180000055 ], [ -119.540012600999972, 49.218756203000062 ], [ -119.539918975999953, 49.218750579000115 ], [ -119.539975998999935, 49.218341582000136 ], [ -119.539733465999944, 49.218346919000098 ], [ -119.539700635999949, 49.217706633000084 ], [ -119.539624734, 49.217702073000034 ], [ -119.53968005899992, 49.217305261000106 ], [ -119.539667051, 49.217051550000129 ], [ -119.537725715999969, 49.216934924000043 ], [ -119.537881484999971, 49.215817984000083 ], [ -119.537193848999934, 49.215776666000082 ], [ -119.537173066, 49.205128630000047 ], [ -119.537180838999959, 49.204856270000079 ], [ -119.537188984999915, 49.204577361000077 ], [ -119.538840572999987, 49.204347256000069 ], [ -119.539103267999963, 49.204769229000114 ], [ -119.541453012999938, 49.204205909000017 ], [ -119.541508592999918, 49.204192582000076 ], [ -119.541949371999962, 49.204086916000087 ], [ -119.542072738999963, 49.20405733700008 ], [ -119.542908263999948, 49.20377130100011 ], [ -119.543418950999964, 49.203514534000107 ], [ -119.544468964999965, 49.202951917000021 ], [ -119.544867600999936, 49.202738314000086 ], [ -119.544877926999931, 49.202744270000032 ], [ -119.54721922899995, 49.20409319000003 ], [ -119.5472938139999, 49.204131344000082 ], [ -119.549054062999957, 49.203177862000118 ], [ -119.549284248999967, 49.203292544000057 ], [ -119.549526503999985, 49.203698715 ], [ -119.549651810999933, 49.203779566000087 ], [ -119.548962481999951, 49.204284800000124 ], [ -119.548334395999973, 49.204630901000044 ], [ -119.547199006999961, 49.205250394000132 ], [ -119.546764381999964, 49.205583705000052 ], [ -119.545739918999971, 49.206488098000129 ], [ -119.544803706999957, 49.207777003000075 ], [ -119.54458121, 49.208285411000134 ], [ -119.544395196999986, 49.209719591000052 ], [ -119.544506796999912, 49.210562693000092 ], [ -119.544553257999937, 49.210679967000061 ], [ -119.544448812999946, 49.211429766000073 ], [ -119.544268636, 49.21141895000008 ], [ -119.543899056999962, 49.211396763000032 ], [ -119.543854007999983, 49.211720125000028 ], [ -119.544320333999977, 49.211748119000106 ], [ -119.544329779999927, 49.211748687000117 ], [ -119.54432532899996, 49.211780634000043 ], [ -119.54432035899994, 49.21181630300007 ], [ -119.544330904999953, 49.211816936000069 ], [ -119.54480930499993, 49.211845654000108 ], [ -119.544808, 49.211897212000096 ], [ -119.544423911, 49.212697599000109 ], [ -119.544591588999978, 49.212999597000106 ], [ -119.545049411999955, 49.21309780400005 ], [ -119.546257380999947, 49.214429494000036 ], [ -119.546277703000015, 49.215113112000012 ], [ -119.546001690999915, 49.215325306000054 ], [ -119.545784115999965, 49.216185493000047 ], [ -119.54640790599997, 49.217890298000107 ], [ -119.546352898999956, 49.218403005000077 ], [ -119.546077207999957, 49.218689301000026 ], [ -119.545975297999945, 49.219095186000047 ], [ -119.544786507999959, 49.221604585000065 ], [ -119.544415218, 49.222134398000044 ], [ -119.544055688999919, 49.222368005000106 ], [ -119.54420869499999, 49.222940491000053 ], [ -119.544141277999969, 49.223260857000099 ], [ -119.544102705999961, 49.223258542000025 ], [ -119.544026151999944, 49.223807917000087 ], [ -119.543988087999978, 49.223988797000075 ], [ -119.544120314999972, 49.225227803000038 ], [ -119.544731212, 49.225888692000098 ], [ -119.544961304999973, 49.226378599000057 ], [ -119.544892116999932, 49.226632094000095 ], [ -119.544091117999969, 49.227053695000059 ], [ -119.542994294, 49.227392607000127 ], [ -119.542481595999931, 49.227826994000061 ], [ -119.542009601999922, 49.228530606000042 ], [ -119.541621027999966, 49.229672818000097 ], [ -119.541615062999966, 49.22967316200004 ], [ -119.541491403999899, 49.229680293000058 ], [ -119.541440985999955, 49.229683193000042 ], [ -119.540922461, 49.229769322000067 ], [ -119.540785315999983, 49.2297920990001 ], [ -119.540035789999962, 49.230030907000049 ], [ -119.539433705999954, 49.230308305000108 ], [ -119.53941030699994, 49.230325238000063 ], [ -119.53899474499994, 49.230626131000058 ], [ -119.538842317999965, 49.230736465000057 ], [ -119.538618930000013, 49.230610085000102 ], [ -119.538458606999939, 49.230475682000083 ], [ -119.538341526999943, 49.230229190000109 ], [ -119.538353609999959, 49.229993998000062 ], [ -119.5381811499999, 49.229979458000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59613417", "BldgCostT": "40406667", "sL_LossRatio": "0.989306946513942", "sL_AssetLoss": "7036.44942", "sL_BldgLoss": "6961.20829", "sL_StrLoss": "6930.04989", "sL_NStrLoss": "31.1584", "sL_ContLoss": "75.24113", "geom_point": "0101000020E610000043DFFED83BE35DC02B67B5E12C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.543196269999925, 49.229751382000124 ], [ -119.54276181699997, 49.229673895000126 ], [ -119.542608220999952, 49.229667400000054 ], [ -119.54223700299994, 49.229651671000099 ], [ -119.542107869999896, 49.229646209000094 ], [ -119.54209361599996, 49.229645586000053 ], [ -119.541970873999929, 49.229652666000092 ], [ -119.541815798999963, 49.229661610000058 ], [ -119.542441823, 49.228116102000101 ], [ -119.543147811999987, 49.227435303000021 ], [ -119.544544797999919, 49.227080712000024 ], [ -119.545334807999936, 49.226676204000064 ], [ -119.545803091999943, 49.226449804 ], [ -119.545925089999912, 49.225853090000072 ], [ -119.544552088999964, 49.224715393000054 ], [ -119.544234890999974, 49.223991600000076 ], [ -119.544247097999985, 49.223923862000071 ], [ -119.544616745999917, 49.223946046000087 ], [ -119.544707480999975, 49.223294836000058 ], [ -119.544364175999988, 49.22327423400003 ], [ -119.544405580999978, 49.22304449100006 ], [ -119.544530181999932, 49.222779600000074 ], [ -119.544785589999947, 49.222657115000068 ], [ -119.54481997799995, 49.22228829500007 ], [ -119.545452897999951, 49.221490704000097 ], [ -119.545912983999969, 49.219744605000081 ], [ -119.546141980999934, 49.219388600000045 ], [ -119.546470222999943, 49.219112301000067 ], [ -119.546674004999929, 49.217703695000111 ], [ -119.54669240799997, 49.217559889000064 ], [ -119.546228313999919, 49.216813607000113 ], [ -119.546037488999929, 49.216296604000071 ], [ -119.546160820999916, 49.215735506000073 ], [ -119.546522392999933, 49.215322391000058 ], [ -119.546493386999913, 49.214469304000019 ], [ -119.545425514999963, 49.212936901000084 ], [ -119.545148772999966, 49.211866030000074 ], [ -119.545608898999944, 49.211893647000089 ], [ -119.546927587999932, 49.211972782 ], [ -119.54694103099996, 49.211876238000137 ], [ -119.546831859999884, 49.211869688000085 ], [ -119.546859343999955, 49.211672311000051 ], [ -119.546518862999974, 49.211651880000083 ], [ -119.546708713999976, 49.21028851600007 ], [ -119.545879731, 49.21023876600001 ], [ -119.545896207999959, 49.210120447000136 ], [ -119.545233118999974, 49.210080648000037 ], [ -119.545313827999948, 49.209501165000034 ], [ -119.545088568999944, 49.209487644000014 ], [ -119.54480008299997, 49.209470327000112 ], [ -119.544789505, 49.209100106000029 ], [ -119.545125592999923, 49.207913700000063 ], [ -119.545477391999981, 49.207258615000043 ], [ -119.546187593999917, 49.206378389000101 ], [ -119.547280680999961, 49.205482597000135 ], [ -119.548550902999963, 49.204833086000093 ], [ -119.549494010000018, 49.204200783000076 ], [ -119.550880193999959, 49.203143997000026 ], [ -119.551899082999981, 49.201845203000083 ], [ -119.552250682999926, 49.201224201000024 ], [ -119.552594911999975, 49.200435204000037 ], [ -119.55283549499994, 49.199502304000049 ], [ -119.552874086999935, 49.198646409000077 ], [ -119.552701922000011, 49.197454300000089 ], [ -119.551957583999965, 49.195399369 ], [ -119.552319357999949, 49.195521098000029 ], [ -119.552569659999932, 49.195605330000099 ], [ -119.553828679999967, 49.196028981000083 ], [ -119.55580104199997, 49.196692626000079 ], [ -119.555801070999934, 49.196692788000085 ], [ -119.555978995999979, 49.198156384000079 ], [ -119.556010967999981, 49.198460301000097 ], [ -119.556173425999958, 49.20000348300006 ], [ -119.556263189999953, 49.200856381000079 ], [ -119.556291605999945, 49.201126084000116 ], [ -119.556313088999929, 49.20161549500007 ], [ -119.556442329999953, 49.204398828000095 ], [ -119.556577616999945, 49.207259209000064 ], [ -119.55659934, 49.207718051000029 ], [ -119.556600832999948, 49.207750149000077 ], [ -119.556619975000018, 49.208154569000065 ], [ -119.55665700099999, 49.208936460000096 ], [ -119.556691200999921, 49.209659497000096 ], [ -119.556701969999921, 49.20979745700005 ], [ -119.556779418999923, 49.210787308000079 ], [ -119.557498686999935, 49.213755580000026 ], [ -119.557664816999932, 49.214441101000091 ], [ -119.554139427999985, 49.214433920000026 ], [ -119.553294407999942, 49.214432184000053 ], [ -119.550892189999928, 49.214429190000075 ], [ -119.550880212999957, 49.215409061000038 ], [ -119.550856319999951, 49.217358102000084 ], [ -119.550851883999911, 49.218098034 ], [ -119.550845430999971, 49.219186567000122 ], [ -119.550843558999986, 49.219501406000127 ], [ -119.550831131999956, 49.221595313000115 ], [ -119.550829597999893, 49.221853793000086 ], [ -119.550794910999926, 49.222498799000086 ], [ -119.550639098999937, 49.223301097000054 ], [ -119.550446494999903, 49.223863504000029 ], [ -119.550276916999934, 49.22425100099999 ], [ -119.549876998999977, 49.224967197000169 ], [ -119.549569911999924, 49.225381963000125 ], [ -119.549398297999957, 49.225613720000105 ], [ -119.54929519199996, 49.225752986 ], [ -119.548241985999951, 49.226817712000056 ], [ -119.547138097999934, 49.227851485000031 ], [ -119.546021872999958, 49.228894604000075 ], [ -119.544734292000015, 49.230097814000054 ], [ -119.54453261099998, 49.230049931000075 ], [ -119.543564192999938, 49.229820172000068 ], [ -119.54351040099999, 49.229807397000087 ], [ -119.543196269999925, 49.229751382000124 ] ], [ [ -119.54870731299998, 49.217938445000186 ], [ -119.548762812999911, 49.217539818000049 ], [ -119.548207545999944, 49.217506512000078 ], [ -119.548263196999969, 49.217106834000127 ], [ -119.548132769999938, 49.217099011000094 ], [ -119.548167360999955, 49.216850583000102 ], [ -119.548156185999943, 49.2168499120001 ], [ -119.548201599999942, 49.216523752000107 ], [ -119.547765970999976, 49.216497619000087 ], [ -119.547700221999946, 49.216969803000026 ], [ -119.547793593999984, 49.216975404000038 ], [ -119.547672155999976, 49.217847501000058 ], [ -119.547867246999957, 49.217859204000021 ], [ -119.547780294999981, 49.218483639000034 ], [ -119.548547446999962, 49.218529656000015 ], [ -119.548630405999958, 49.217933832000028 ], [ -119.54870731299998, 49.217938445000186 ] ], [ [ -119.551697984999933, 49.205159299000151 ], [ -119.551280507999962, 49.205042505000037 ], [ -119.550634812999988, 49.205029693000043 ], [ -119.550058391999968, 49.204485593000072 ], [ -119.549835497999936, 49.204418705000094 ], [ -119.549871400999947, 49.204596692000031 ], [ -119.550205281999979, 49.20493139700006 ], [ -119.55006222199998, 49.205384304000056 ], [ -119.54975579399995, 49.205562299000057 ], [ -119.549270908, 49.205482591000077 ], [ -119.549220898999977, 49.205546709 ], [ -119.549748196999928, 49.205679106000098 ], [ -119.550098093, 49.205545289000064 ], [ -119.550381697999953, 49.205189206000036 ], [ -119.551245803999976, 49.205160685000095 ], [ -119.551797203999968, 49.205472585000059 ], [ -119.552130203999951, 49.206076507 ], [ -119.552127107, 49.206274404000062 ], [ -119.551957807999912, 49.206449585000065 ], [ -119.55103171899998, 49.206604906000088 ], [ -119.550922193999924, 49.206859809000086 ], [ -119.551115695999968, 49.206918188000039 ], [ -119.551158924999953, 49.206691706000136 ], [ -119.551964292999941, 49.206575007000041 ], [ -119.552284899999975, 49.206415397000072 ], [ -119.552399994999959, 49.206233111000117 ], [ -119.552361892999983, 49.206045216000106 ], [ -119.551697984999933, 49.205159299000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.9999783856769", "sL_AssetLoss": "321.54604", "sL_BldgLoss": "321.53909", "sL_StrLoss": "321.5", "sL_NStrLoss": "0.03909", "sL_ContLoss": "0.00695", "geom_point": "0101000020E61000004BC4E7908CE65DC023AF39CDA3A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.600482520999961, 49.268426075000072 ], [ -119.603156553999952, 49.268584950000061 ], [ -119.60315981499997, 49.26939800100007 ], [ -119.6031943, 49.269577209 ], [ -119.603279597999986, 49.269677995000094 ], [ -119.604007, 49.270548995000077 ], [ -119.604395689999976, 49.270858496000059 ], [ -119.605409501999972, 49.271393198000077 ], [ -119.605570768999939, 49.271505102000049 ], [ -119.605455939999942, 49.272336181000036 ], [ -119.599986764999969, 49.27201130800011 ], [ -119.60036286899998, 49.269291432000045 ], [ -119.600482520999961, 49.268426075000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75988744", "BldgCostT": "49804076", "sL_LossRatio": "0.982715595873108", "sL_AssetLoss": "8852.27682", "sL_BldgLoss": "8699.27049", "sL_StrLoss": "8640.53979", "sL_NStrLoss": "58.7307", "sL_ContLoss": "153.00633", "geom_point": "0101000020E6100000E18F1E96B8E55DC0191C806841A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.586261311, 49.281401624000125 ], [ -119.586273111999915, 49.281316489000091 ], [ -119.58303468299999, 49.281123617000048 ], [ -119.583123473999976, 49.280483380000113 ], [ -119.58209309599998, 49.280421993000061 ], [ -119.582287050999938, 49.279023615000035 ], [ -119.581737774999951, 49.278990887000084 ], [ -119.582105520999946, 49.27633948600009 ], [ -119.581800247999951, 49.276321295000116 ], [ -119.581852153999975, 49.27594704900006 ], [ -119.581109250999958, 49.275902777000077 ], [ -119.581265512999934, 49.27477621700006 ], [ -119.580360199, 49.274722259000036 ], [ -119.580857501999944, 49.271137131000053 ], [ -119.581979571999909, 49.271204008000026 ], [ -119.582064205999984, 49.270593705000046 ], [ -119.582039224999932, 49.270592216000068 ], [ -119.582185124999924, 49.269540079000066 ], [ -119.581477475999961, 49.269497903000115 ], [ -119.581783445, 49.267291531000069 ], [ -119.579239048999966, 49.267139847000095 ], [ -119.579420141999918, 49.265834394000137 ], [ -119.578805419999981, 49.265797738000067 ], [ -119.579013404999955, 49.264298467000103 ], [ -119.579001324000018, 49.264297747000064 ], [ -119.57949861799996, 49.260712569000091 ], [ -119.580463361999961, 49.260770095000034 ], [ -119.580567409999958, 49.260019792000101 ], [ -119.580662017999941, 49.260025433000088 ], [ -119.580726629, 49.259559495000104 ], [ -119.581581798999977, 49.259610479000081 ], [ -119.58164010900002, 49.259189914000068 ], [ -119.584046273, 49.259333331000022 ], [ -119.584094817999983, 49.258983070000106 ], [ -119.584627035999958, 49.259014785000041 ], [ -119.58471492399994, 49.258380582000086 ], [ -119.585935, 49.258453277000058 ], [ -119.586010392999938, 49.257909112000029 ], [ -119.587657748999931, 49.258007242000112 ], [ -119.587701434999971, 49.257691849000032 ], [ -119.588516876999918, 49.257740414000047 ], [ -119.588552308999965, 49.257484568000073 ], [ -119.591351974999924, 49.257651261000049 ], [ -119.591639581999971, 49.255573534000092 ], [ -119.597106761999939, 49.255898838000036 ], [ -119.596752097999939, 49.25846314700005 ], [ -119.597769858999982, 49.258523674000052 ], [ -119.597841990999925, 49.2580020830001 ], [ -119.599959810999948, 49.258128 ], [ -119.600053326999941, 49.25745153400004 ], [ -119.600708916999963, 49.257490503 ], [ -119.600831638999964, 49.256602649000058 ], [ -119.601006957999942, 49.256613070000093 ], [ -119.60100407799996, 49.256744892000015 ], [ -119.601017253999984, 49.257182002000057 ], [ -119.601017282999948, 49.257183809000097 ], [ -119.601064395999941, 49.258751002000018 ], [ -119.601107615999979, 49.259136794 ], [ -119.601247525999966, 49.259420698000071 ], [ -119.601735312999949, 49.260089495000038 ], [ -119.601905313999978, 49.260494504000079 ], [ -119.602542574999973, 49.262814195000033 ], [ -119.602810912999985, 49.263944411000125 ], [ -119.603013711999964, 49.264471498000013 ], [ -119.603141817000022, 49.264911086000069 ], [ -119.603148157999925, 49.266491746000085 ], [ -119.603154445999934, 49.26805946700005 ], [ -119.598853393999917, 49.267803887000106 ], [ -119.599058114999963, 49.266323566000054 ], [ -119.598274372999938, 49.266276975000082 ], [ -119.59868699399999, 49.263293410000053 ], [ -119.598319866999987, 49.263271583000083 ], [ -119.598383625999958, 49.262810553000065 ], [ -119.598542939999959, 49.261658522000118 ], [ -119.597844606999971, 49.261617001000069 ], [ -119.5977724699999, 49.262138588000063 ], [ -119.595607932999911, 49.262009861000124 ], [ -119.595497516999927, 49.262807921000068 ], [ -119.595290179999921, 49.264306439000052 ], [ -119.594739549999986, 49.264273685000092 ], [ -119.594686369000016, 49.264658002000026 ], [ -119.596984137999939, 49.264794663 ], [ -119.596499094999928, 49.268300788000026 ], [ -119.596488149999971, 49.268379899000116 ], [ -119.59527808099989, 49.268307937000024 ], [ -119.595133444999959, 49.269353128 ], [ -119.589664692999975, 49.269027730000083 ], [ -119.589889958999947, 49.26740124800012 ], [ -119.589639935999926, 49.267386365000085 ], [ -119.589473663999968, 49.268586860000013 ], [ -119.589097372999959, 49.268564459000039 ], [ -119.58899028499998, 49.269337569000037 ], [ -119.588971174999983, 49.269336431000092 ], [ -119.588809541, 49.270503270000056 ], [ -119.587600727999956, 49.270431299000059 ], [ -119.587279796999923, 49.272747499000069 ], [ -119.587062961999933, 49.27273458700008 ], [ -119.587023728999924, 49.273017706000083 ], [ -119.587766592999984, 49.273061938000112 ], [ -119.587658477999952, 49.273842217000038 ], [ -119.589616684999953, 49.273958789000062 ], [ -119.589466632999944, 49.275042017 ], [ -119.589844148999987, 49.275064486000105 ], [ -119.589629291999955, 49.276615529000047 ], [ -119.591039610999928, 49.276699457000078 ], [ -119.590871254999954, 49.277915018000037 ], [ -119.592587343000019, 49.278017117000104 ], [ -119.592515598999952, 49.278535230000024 ], [ -119.592863268999977, 49.278555911000119 ], [ -119.592366813999902, 49.282141053000082 ], [ -119.591679836000012, 49.282100187000012 ], [ -119.591391882, 49.284179171000034 ], [ -119.585921408999965, 49.283853591000039 ], [ -119.586261311, 49.281401624000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6568500", "BldgCostT": "4530000", "sL_LossRatio": "1", "sL_AssetLoss": "763.5", "sL_BldgLoss": "763.5", "sL_StrLoss": "763.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE65321C4FE45DC0243F6690D09E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.563500488999935, 49.243890869000019 ], [ -119.563570539999986, 49.243386871000091 ], [ -119.563450120999917, 49.243379669000056 ], [ -119.563948392000015, 49.239794450000041 ], [ -119.565595154999954, 49.239892926000095 ], [ -119.565672604999946, 49.239335453000095 ], [ -119.564670227999954, 49.239275514000056 ], [ -119.564901445999936, 49.237611429000047 ], [ -119.564924795999985, 49.237612823000092 ], [ -119.565195508, 49.237628990000083 ], [ -119.565940669999975, 49.237800670000048 ], [ -119.566551694999987, 49.237941432000135 ], [ -119.567775809999944, 49.238223394000094 ], [ -119.568011606, 49.23813269200015 ], [ -119.568447796999934, 49.237819015000092 ], [ -119.568819204999954, 49.237604401000056 ], [ -119.569208204999939, 49.237471295000091 ], [ -119.57035384199996, 49.23732879500006 ], [ -119.57139220499991, 49.237199598000089 ], [ -119.571568649999946, 49.237172128000026 ], [ -119.571283227999928, 49.23922846500011 ], [ -119.571198582999898, 49.239223409000033 ], [ -119.570939713999934, 49.241088269000045 ], [ -119.569413310999948, 49.240997069000116 ], [ -119.568966096999944, 49.244217604000035 ], [ -119.563500488999935, 49.243890869000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999980002899579", "sL_AssetLoss": "172.02494", "sL_BldgLoss": "172.0215", "sL_StrLoss": "172", "sL_NStrLoss": "0.0215", "sL_ContLoss": "0.00344", "geom_point": "0101000020E61000002E2EE11278E25DC0777F82ACA39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.537289087999952, 49.233484887000053 ], [ -119.537269358999978, 49.233139590000093 ], [ -119.537711904999966, 49.233166171000029 ], [ -119.53773302799999, 49.233014773000079 ], [ -119.537260606999951, 49.232986398000044 ], [ -119.537204125999921, 49.231997753 ], [ -119.537286434999913, 49.230158085 ], [ -119.537304639999917, 49.230153906000041 ], [ -119.538094989999948, 49.229972197000031 ], [ -119.5381811499999, 49.229979458000052 ], [ -119.538353609999959, 49.229993998000062 ], [ -119.538341526999943, 49.230229190000109 ], [ -119.538458606999939, 49.230475682000083 ], [ -119.538618930000013, 49.230610085000102 ], [ -119.538842317999965, 49.230736465000057 ], [ -119.53899474499994, 49.230626131000058 ], [ -119.53941030699994, 49.230325238000063 ], [ -119.539433705999954, 49.230308305000108 ], [ -119.540035789999962, 49.230030907000049 ], [ -119.540785315999983, 49.2297920990001 ], [ -119.540922461, 49.229769322000067 ], [ -119.541440985999955, 49.229683193000042 ], [ -119.541491403999899, 49.229680293000058 ], [ -119.541615062999966, 49.22967316200004 ], [ -119.541621027999966, 49.229672818000097 ], [ -119.5415687079999, 49.229826609000106 ], [ -119.541304913999923, 49.230040205000115 ], [ -119.540082106999961, 49.230588498000024 ], [ -119.539764889999958, 49.23084780900011 ], [ -119.539508984999912, 49.231473002000058 ], [ -119.539519996999957, 49.232202198000081 ], [ -119.539390005999948, 49.232645110000135 ], [ -119.538725483999926, 49.233325904000075 ], [ -119.538156989999933, 49.233501105000073 ], [ -119.537632695999903, 49.233458298000073 ], [ -119.537291201999921, 49.233483994 ], [ -119.537289087999952, 49.233484887000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13092725", "BldgCostT": "8220309", "sL_LossRatio": "1", "sL_AssetLoss": "1154.7", "sL_BldgLoss": "1154.7", "sL_StrLoss": "1154.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D65AEBCD60E35DC02043E81C939F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545442574999953, 49.249259272000138 ], [ -119.545428707999946, 49.248989682000101 ], [ -119.545016896999954, 49.24899876100006 ], [ -119.544975299, 49.248189990000078 ], [ -119.54744611299999, 49.248135498000089 ], [ -119.547418355000019, 49.24759631900006 ], [ -119.547006556999918, 49.247605404000105 ], [ -119.54699268199991, 49.247335815000049 ], [ -119.54616909, 49.247353981000096 ], [ -119.546155217999953, 49.247084391000087 ], [ -119.545743424999941, 49.247093471000071 ], [ -119.545687948999927, 49.246015110000087 ], [ -119.54692330099995, 49.245987864000078 ], [ -119.546937176999975, 49.246257455000055 ], [ -119.547348963999951, 49.246248369000035 ], [ -119.547362842, 49.246517960000062 ], [ -119.548186416999926, 49.246499785 ], [ -119.548172535, 49.246230195000081 ], [ -119.549723792999984, 49.246195948000064 ], [ -119.550045959999949, 49.243883042000078 ], [ -119.55300764499998, 49.244060499000049 ], [ -119.552947054999976, 49.242885962000074 ], [ -119.554594079999944, 49.242849530000044 ], [ -119.554661701999947, 49.244159570000086 ], [ -119.555511470999974, 49.244210458000062 ], [ -119.555507461999952, 49.244239270000023 ], [ -119.559028664, 49.244450061000059 ], [ -119.558977955999978, 49.244814623000124 ], [ -119.559003686999986, 49.244816163000117 ], [ -119.558504979999924, 49.248401333000132 ], [ -119.558153549999957, 49.248380301000118 ], [ -119.558128571999958, 49.248559841000073 ], [ -119.557781133, 49.248539046000076 ], [ -119.55772827499996, 49.248918949000036 ], [ -119.553244462999928, 49.248650485000063 ], [ -119.553253051999917, 49.248816914000024 ], [ -119.552841245999929, 49.248826021000077 ], [ -119.552855154999918, 49.249095609000079 ], [ -119.552443345999933, 49.249104713000051 ], [ -119.552457252999957, 49.249374302000035 ], [ -119.549986386999961, 49.249428902000083 ], [ -119.549972491999966, 49.249159312000046 ], [ -119.548325252999959, 49.249195682000078 ], [ -119.548311367999986, 49.248926093000065 ], [ -119.547899560999937, 49.248935181000057 ], [ -119.547913442999928, 49.249204770000119 ], [ -119.545442574999953, 49.249259272000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999986467533922", "sL_AssetLoss": "79.80807", "sL_BldgLoss": "79.80699", "sL_StrLoss": "79.8", "sL_NStrLoss": "0.00699", "sL_ContLoss": "0.00108", "geom_point": "0101000020E610000072354F01F2E65DC06125720336A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.607694474999917, 49.276041210000123 ], [ -119.607891924999976, 49.274611759000088 ], [ -119.607225453999945, 49.274572202000044 ], [ -119.607427192999964, 49.273111751000101 ], [ -119.607765803999925, 49.273495791000073 ], [ -119.608830891999958, 49.274547602000027 ], [ -119.609355209999976, 49.275312487000093 ], [ -119.609562085999954, 49.275541591000071 ], [ -119.609847706000011, 49.275689591000109 ], [ -119.610449093999975, 49.275926798000121 ], [ -119.610517169000019, 49.275982052000046 ], [ -119.610818423999973, 49.27622656800002 ], [ -119.607694474999917, 49.276041210000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "439.8", "sL_BldgLoss": "439.8", "sL_StrLoss": "439.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD4F5B5D2DE35DC034B4E83AE09E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546690165000015, 49.242865607000056 ], [ -119.546932081999941, 49.241129539000099 ], [ -119.546261835999985, 49.241144324000118 ], [ -119.54622022699999, 49.240335552000012 ], [ -119.547045251, 49.240317354000126 ], [ -119.547189725999942, 49.239280462000067 ], [ -119.552654674999943, 49.239608025000102 ], [ -119.552535231999983, 49.240466 ], [ -119.55282190399997, 49.24045966200007 ], [ -119.552877524999985, 49.241538017000103 ], [ -119.55238446599999, 49.241548919000145 ], [ -119.552155533999951, 49.243193194000057 ], [ -119.546690165000015, 49.242865607000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "446", "sL_BldgLoss": "446", "sL_StrLoss": "446", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000010DB69AD60E35DC0EBC9575D62A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55029216699991, 49.25104556800008 ], [ -119.555758523999884, 49.251372969000101 ], [ -119.555259494999973, 49.254958088000123 ], [ -119.549792719999957, 49.254630664000103 ], [ -119.55029216699991, 49.25104556800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45707911", "BldgCostT": "29865743", "sL_LossRatio": "0.98273823458942", "sL_AssetLoss": "5259.449879", "sL_BldgLoss": "5168.662489", "sL_StrLoss": "5135.209789", "sL_NStrLoss": "33.4527", "sL_ContLoss": "90.78739", "geom_point": "0101000020E61000002672E22725E35DC009786F982A9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.537276806999984, 49.238748591000039 ], [ -119.537297007999953, 49.237123004000061 ], [ -119.537329858999925, 49.237070873000064 ], [ -119.537288209999943, 49.237046968000087 ], [ -119.537304053999904, 49.236906752000095 ], [ -119.537364175000022, 49.236375035000037 ], [ -119.537310902999977, 49.235519051000125 ], [ -119.537367825, 49.23494512700011 ], [ -119.537375866999938, 49.23488287800005 ], [ -119.537341060999978, 49.234495328000015 ], [ -119.539466907999937, 49.233058088000057 ], [ -119.539988918999924, 49.232246306000057 ], [ -119.539959123, 49.231950104000134 ], [ -119.53973440599998, 49.231594 ], [ -119.540026881999964, 49.230867702000026 ], [ -119.540278997999948, 49.230655513000038 ], [ -119.54142251199994, 49.230189794000118 ], [ -119.54167337899996, 49.230013194000051 ], [ -119.541815798999963, 49.229661610000058 ], [ -119.541970873999929, 49.229652666000092 ], [ -119.54209361599996, 49.229645586000053 ], [ -119.542107869999896, 49.229646209000094 ], [ -119.54223700299994, 49.229651671000099 ], [ -119.542608220999952, 49.229667400000054 ], [ -119.54276181699997, 49.229673895000126 ], [ -119.543196269999925, 49.229751382000124 ], [ -119.54351040099999, 49.229807397000087 ], [ -119.543564192999938, 49.229820172000068 ], [ -119.54453261099998, 49.230049931000075 ], [ -119.544734292000015, 49.230097814000054 ], [ -119.546021872999958, 49.228894604000075 ], [ -119.547138097999934, 49.227851485000031 ], [ -119.548241985999951, 49.226817712000056 ], [ -119.54929519199996, 49.225752986 ], [ -119.549398297999957, 49.225613720000105 ], [ -119.549569911999924, 49.225381963000125 ], [ -119.549876998999977, 49.224967197000169 ], [ -119.550276916999934, 49.22425100099999 ], [ -119.550446494999903, 49.223863504000029 ], [ -119.550639098999937, 49.223301097000054 ], [ -119.550794910999926, 49.222498799000086 ], [ -119.550829597999893, 49.221853793000086 ], [ -119.550831131999956, 49.221595313000115 ], [ -119.550843558999986, 49.219501406000127 ], [ -119.550845430999971, 49.219186567000122 ], [ -119.550851883999911, 49.218098034 ], [ -119.550856319999951, 49.217358102000084 ], [ -119.550880212999957, 49.215409061000038 ], [ -119.550892189999928, 49.214429190000075 ], [ -119.553294407999942, 49.214432184000053 ], [ -119.554139427999985, 49.214433920000026 ], [ -119.557664816999932, 49.214441101000091 ], [ -119.558453106999977, 49.217615386000027 ], [ -119.558700991999956, 49.218654390000012 ], [ -119.558721097999964, 49.218738609000077 ], [ -119.558757887999917, 49.219157499000069 ], [ -119.558754195999924, 49.21919015800011 ], [ -119.55870971199991, 49.219582992000056 ], [ -119.558402222999973, 49.220309307000072 ], [ -119.558387822999975, 49.220340606000043 ], [ -119.558310940999959, 49.220507971000089 ], [ -119.558208117999939, 49.220731875000112 ], [ -119.557847378999966, 49.220710270000062 ], [ -119.558058582999976, 49.219191199000093 ], [ -119.556405158999979, 49.219092160000081 ], [ -119.556401275999946, 49.219120083000099 ], [ -119.557036809999929, 49.219158153000052 ], [ -119.556824577999947, 49.220684372000122 ], [ -119.557381797999966, 49.220717748000048 ], [ -119.557370811999959, 49.220796757000059 ], [ -119.558156703999927, 49.220843824000049 ], [ -119.557924587999963, 49.221349252000081 ], [ -119.557660703999929, 49.221923806000042 ], [ -119.557576897999922, 49.222106240000066 ], [ -119.557193499999983, 49.22294099800007 ], [ -119.556638650999957, 49.224148252000141 ], [ -119.556169444999966, 49.225169161000053 ], [ -119.556046211999956, 49.22543730500005 ], [ -119.556016754, 49.225488133000063 ], [ -119.555865881000017, 49.225748758000094 ], [ -119.555788793999966, 49.225881898000061 ], [ -119.555529607999944, 49.226180902000074 ], [ -119.555453717999967, 49.226244086000108 ], [ -119.555321125999953, 49.226354489000087 ], [ -119.554486320999914, 49.227049635000142 ], [ -119.552613499999964, 49.228608994000041 ], [ -119.552277344999951, 49.228889594000066 ], [ -119.552090739999983, 49.229045361000082 ], [ -119.552047817999934, 49.229081203000128 ], [ -119.551957424999941, 49.229140803000092 ], [ -119.551651884999956, 49.229342260000081 ], [ -119.551607996999934, 49.229371193000098 ], [ -119.551324890999965, 49.229525096000032 ], [ -119.550749304999911, 49.229751701000119 ], [ -119.550907084999935, 49.229933798000097 ], [ -119.551136163999942, 49.230750596000085 ], [ -119.551661902, 49.232625393000085 ], [ -119.55178469899991, 49.232831504000025 ], [ -119.552098310999924, 49.233121497000106 ], [ -119.552287294999985, 49.233228593000078 ], [ -119.553499001999924, 49.2336275030001 ], [ -119.553533144999932, 49.23364228600007 ], [ -119.553804309999961, 49.233759603000081 ], [ -119.553927682, 49.233842896000077 ], [ -119.554284418999927, 49.234299008000058 ], [ -119.554755289999918, 49.234745689000086 ], [ -119.554812697, 49.234927198000044 ], [ -119.554852474999905, 49.235403102000141 ], [ -119.554965596999921, 49.235709096000058 ], [ -119.554959488999941, 49.235773486000049 ], [ -119.554954798999987, 49.235822911000106 ], [ -119.554163107999926, 49.235775487000119 ], [ -119.554134232999928, 49.23598297000003 ], [ -119.553283485999927, 49.23593200300013 ], [ -119.553156336999976, 49.236845491000061 ], [ -119.550320140999986, 49.23667552900006 ], [ -119.547691708999963, 49.23651795100011 ], [ -119.548056703999976, 49.233897785000046 ], [ -119.547899584999982, 49.233888364000109 ], [ -119.547967644999972, 49.233399761000086 ], [ -119.547921016999936, 49.233396965000161 ], [ -119.547951114999961, 49.23318089400005 ], [ -119.547943060999913, 49.233180411000063 ], [ -119.547913430999955, 49.233393121000063 ], [ -119.546299946999937, 49.23329635500005 ], [ -119.546282864999966, 49.233418958000144 ], [ -119.546002820999945, 49.233402161000129 ], [ -119.545908083999947, 49.234082065000067 ], [ -119.545476637, 49.234056184000039 ], [ -119.54545487199999, 49.234212376000094 ], [ -119.54526890599999, 49.234201220000095 ], [ -119.545201085999963, 49.234687880000124 ], [ -119.543724758999971, 49.234599306000071 ], [ -119.543563673999955, 49.235754914000012 ], [ -119.543387786999958, 49.235744360000105 ], [ -119.54333448600002, 49.236126718000037 ], [ -119.542999281999982, 49.236106604000071 ], [ -119.542946888999978, 49.236482426000073 ], [ -119.542761043, 49.236471273000085 ], [ -119.542733986999963, 49.236665331 ], [ -119.542339127999981, 49.236641635000112 ], [ -119.542275490999941, 49.237098040000092 ], [ -119.542018979999952, 49.237082645000051 ], [ -119.54193091199997, 49.237714246000095 ], [ -119.541451792, 49.237685490000032 ], [ -119.541406180999957, 49.238012558000023 ], [ -119.542389953999972, 49.237990898000064 ], [ -119.542414430999912, 49.238467449000062 ], [ -119.542445343999987, 49.239069263000069 ], [ -119.541210157999984, 49.23909645800007 ], [ -119.541223998999953, 49.239366049000083 ], [ -119.540201795999934, 49.239388545000047 ], [ -119.540037183999942, 49.240568681000049 ], [ -119.537296490999978, 49.240404122000022 ], [ -119.537276806999984, 49.238748591000039 ] ], [ [ -119.540756913999942, 49.238296745000071 ], [ -119.540750575999965, 49.238173266000054 ], [ -119.540537471, 49.238160474000018 ], [ -119.540517731999927, 49.238302009000044 ], [ -119.540756913999942, 49.238296745000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "133", "sL_BldgLoss": "133", "sL_StrLoss": "133", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D7020A843E65DC0D8853839F09F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.597513710999976, 49.251260991000017 ], [ -119.597591376999958, 49.250699311000069 ], [ -119.59719413699996, 49.250675684000072 ], [ -119.597216621999934, 49.250513080000097 ], [ -119.596564126999951, 49.250474266000012 ], [ -119.596673427999988, 49.24968389700004 ], [ -119.595848956999987, 49.249634848000106 ], [ -119.596262352999986, 49.24664567399999 ], [ -119.596387797999952, 49.24682969300008 ], [ -119.59666968599997, 49.247162806000105 ], [ -119.59843346299999, 49.248549505 ], [ -119.598732623999965, 49.248784701000098 ], [ -119.59961869199995, 49.249431106 ], [ -119.599827391999924, 49.249635994000066 ], [ -119.599955337999958, 49.249910931000024 ], [ -119.599960185999947, 49.249921394000118 ], [ -119.60014160499999, 49.251280501000053 ], [ -119.600159902999962, 49.251418349000112 ], [ -119.597513710999976, 49.251260991000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "124", "sL_BldgLoss": "124", "sL_StrLoss": "124", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E9C7DCCE4E15DC0C289C7C9EDA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52810906699996, 49.25562759100012 ], [ -119.530667486999931, 49.255781374 ], [ -119.530166472999952, 49.259366352 ], [ -119.529203303999964, 49.259308465000075 ], [ -119.529167804999972, 49.259202295000151 ], [ -119.528689892999964, 49.256604603000021 ], [ -119.52810906699996, 49.25562759100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999998604705838", "sL_AssetLoss": "213.5033659", "sL_BldgLoss": "213.503068", "sL_StrLoss": "213.5", "sL_NStrLoss": "0.003068", "sL_ContLoss": "0.0002979", "geom_point": "0101000020E6100000F120C9EEFAE15DC00F7D772B4B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.530111705999914, 49.245417393000061 ], [ -119.530701376999943, 49.244873397000021 ], [ -119.530796590999898, 49.24456571200006 ], [ -119.530524021999952, 49.243537502000088 ], [ -119.530534408999983, 49.242673 ], [ -119.530029712999962, 49.241415401000147 ], [ -119.530021991999888, 49.240913796000015 ], [ -119.53023307899997, 49.240914535000144 ], [ -119.532613769999941, 49.240840581000086 ], [ -119.532135847999911, 49.244262551000112 ], [ -119.531059682999953, 49.244197870000058 ], [ -119.530923921999957, 49.245169674000053 ], [ -119.531204386999946, 49.245186532000041 ], [ -119.530703527999947, 49.248771571000084 ], [ -119.530699023999915, 49.24877130000003 ], [ -119.530560673999986, 49.249761471000106 ], [ -119.528509325999934, 49.249638154000117 ], [ -119.528890492999949, 49.249241388 ], [ -119.529667599000021, 49.248836903000068 ], [ -119.53002391199999, 49.248550695000098 ], [ -119.530455998999969, 49.248126289000076 ], [ -119.530489588999941, 49.247982409000031 ], [ -119.53009819199994, 49.247603603000094 ], [ -119.530001896999977, 49.247308799000052 ], [ -119.530153382999941, 49.24678469600012 ], [ -119.530040293999946, 49.245643889000057 ], [ -119.530111705999914, 49.245417393000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.265845320570856", "sL_AssetLoss": "63.20194", "sL_BldgLoss": "16.80194", "sL_StrLoss": "0.00194", "sL_NStrLoss": "16.8", "sL_ContLoss": "46.4", "geom_point": "0101000020E610000016E480C0F7E75DC0696635766CAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.624019272999959, 49.369976315000017 ], [ -119.625243508999944, 49.370048622000084 ], [ -119.624960198999958, 49.370780787000037 ], [ -119.624857392999928, 49.370934588000104 ], [ -119.62470329300001, 49.371020412000057 ], [ -119.624531323999975, 49.371051270000123 ], [ -119.624483697999949, 49.371059814000084 ], [ -119.62387767899996, 49.371001759000151 ], [ -119.624019272999959, 49.369976315000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11969834", "BldgCostT": "7783334", "sL_LossRatio": "0.999993812653936", "sL_AssetLoss": "970.690816", "sL_BldgLoss": "970.68481", "sL_StrLoss": "970.50411", "sL_NStrLoss": "0.1807", "sL_ContLoss": "0.006006", "geom_point": "0101000020E61000005E40E404D8E75DC0FB3F5E7A41A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.61800600199993, 49.320304289000021 ], [ -119.618023404999988, 49.320178232000096 ], [ -119.623498388999963, 49.32050216800009 ], [ -119.623492173999963, 49.320547229000113 ], [ -119.628314839999945, 49.320832336000102 ], [ -119.627820676999988, 49.324417413000056 ], [ -119.62235610799992, 49.324094343000063 ], [ -119.622344932999937, 49.324175340000117 ], [ -119.616869523, 49.32385134700008 ], [ -119.617364527999939, 49.320266316000065 ], [ -119.61800600199993, 49.320304289000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63.9", "sL_BldgLoss": "63.9", "sL_StrLoss": "63.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F2F05CE738E85DC048F64A5195AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.628163629999918, 49.339653222000024 ], [ -119.630222886, 49.339774845000058 ], [ -119.629805294999983, 49.340075010000078 ], [ -119.62905428399999, 49.340685704000109 ], [ -119.628346809999968, 49.341181612000085 ], [ -119.628099011999936, 49.341436191000113 ], [ -119.627563520999971, 49.342100814000034 ], [ -119.627434888, 49.342260491000062 ], [ -119.627783142999974, 49.339735214000029 ], [ -119.628149341999986, 49.339756846000057 ], [ -119.628163629999918, 49.339653222000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.999999254443074", "sL_AssetLoss": "282.2051444", "sL_BldgLoss": "282.204934", "sL_StrLoss": "282.2", "sL_NStrLoss": "0.004934", "sL_ContLoss": "0.0002104", "geom_point": "0101000020E61000009BA0FAC5B4E35DC025DD3B0F93A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.558725286999959, 49.318279997000069 ], [ -119.553741676999948, 49.315110875000137 ], [ -119.557784766999987, 49.315352571000076 ], [ -119.557511444999932, 49.317313969000061 ], [ -119.56105349299996, 49.317525585000055 ], [ -119.560780772, 49.31948357500012 ], [ -119.560711804, 49.319449198000022 ], [ -119.559093691999948, 49.318496841000133 ], [ -119.558725286999959, 49.318279997000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "271", "sL_BldgLoss": "271", "sL_StrLoss": "271", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D44BA5025BE55DC0D2C9EFC0C2AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582142300999976, 49.347894147000055 ], [ -119.585060318999965, 49.348067696000044 ], [ -119.584562514999988, 49.351652429000097 ], [ -119.582915364999934, 49.351554475000079 ], [ -119.582883321999986, 49.351460190000061 ], [ -119.582537510999899, 49.350798111000124 ], [ -119.582425686999983, 49.350380293000043 ], [ -119.582429586, 49.350202070000066 ], [ -119.58243551599999, 49.349931802000107 ], [ -119.582620204999955, 49.349179308000032 ], [ -119.582646920999935, 49.348857401000068 ], [ -119.582614295999974, 49.34859520000002 ], [ -119.582497806999939, 49.348340690000057 ], [ -119.582249587999939, 49.347999693000069 ], [ -119.582142300999976, 49.347894147000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999989946538479", "sL_AssetLoss": "442.036804", "sL_BldgLoss": "442.03236", "sL_StrLoss": "442", "sL_NStrLoss": "0.03236", "sL_ContLoss": "0.004444", "geom_point": "0101000020E6100000F40FE86D68E15DC01421D86536A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.519325521, 49.280963847000109 ], [ -119.521229153999954, 49.281078366000024 ], [ -119.521617507999977, 49.28126480800011 ], [ -119.522997004999979, 49.281622200000065 ], [ -119.523168192999933, 49.281726203000076 ], [ -119.523445303, 49.282304387000053 ], [ -119.524094397999932, 49.28237141200006 ], [ -119.524279899999925, 49.282466812000109 ], [ -119.52425311199994, 49.2833313040001 ], [ -119.523599580999942, 49.283974997000023 ], [ -119.523300701, 49.284845199000117 ], [ -119.522916914999954, 49.28540210300006 ], [ -119.523209893999962, 49.285765296000093 ], [ -119.523396400999943, 49.286197596000093 ], [ -119.52280228799999, 49.286161875000083 ], [ -119.522645703999927, 49.285666809000091 ], [ -119.52239101, 49.28510775000003 ], [ -119.52232147699999, 49.284955105000037 ], [ -119.522315509999942, 49.284942002 ], [ -119.52141690399999, 49.283866515000092 ], [ -119.521364716, 49.283803993000021 ], [ -119.520394262999943, 49.282930691000068 ], [ -119.520121695999961, 49.282685390000083 ], [ -119.519738219999965, 49.282272797000083 ], [ -119.519498507999941, 49.281867996000081 ], [ -119.51943537599999, 49.281714575000102 ], [ -119.519345195999932, 49.281495388000053 ], [ -119.51930060299999, 49.281065282000085 ], [ -119.519325521, 49.280963847000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A16E1C8857E55DC017C737CA30AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582759187999983, 49.353049503000065 ], [ -119.582994994999964, 49.35204788900009 ], [ -119.58298404199995, 49.351862979000082 ], [ -119.584010702999976, 49.351924035000089 ], [ -119.583877391999934, 49.352883844000104 ], [ -119.584173160999981, 49.352901432000039 ], [ -119.583971005999942, 49.354356883000079 ], [ -119.58365839699999, 49.354260407000048 ], [ -119.583275384999951, 49.354075002000158 ], [ -119.583026483999944, 49.353858711000093 ], [ -119.582836879999945, 49.353583610000051 ], [ -119.582756218999947, 49.35329960600005 ], [ -119.582759187999983, 49.353049503000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.999968789947406", "sL_AssetLoss": "521.947214", "sL_BldgLoss": "521.930924", "sL_StrLoss": "521.800824", "sL_NStrLoss": "0.1301", "sL_ContLoss": "0.01629", "geom_point": "0101000020E6100000433FD7E77FE75DC010E7653DCAAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.613775661999966, 49.374218085000145 ], [ -119.613885715999942, 49.373422391000048 ], [ -119.615615792999918, 49.373524725000031 ], [ -119.615878027999926, 49.371628133000087 ], [ -119.621359080000033, 49.371952153000045 ], [ -119.621330324999974, 49.372160310000048 ], [ -119.622018179999941, 49.372200954000043 ], [ -119.62160670899999, 49.372536009000065 ], [ -119.621350012999955, 49.372814499000086 ], [ -119.621098781999962, 49.372912604000099 ], [ -119.62023782199999, 49.373045100000112 ], [ -119.619811101, 49.373253890000079 ], [ -119.619490188, 49.373556609000012 ], [ -119.619403382999977, 49.374054703000084 ], [ -119.619272994999932, 49.37424851100009 ], [ -119.619088181999956, 49.374336092000078 ], [ -119.618853695999945, 49.374383699000106 ], [ -119.618467112999895, 49.374381585000087 ], [ -119.61800416199999, 49.374317024000071 ], [ -119.61787080499991, 49.374298412000016 ], [ -119.617268708, 49.374086709000061 ], [ -119.617039704999982, 49.374093895000051 ], [ -119.616807799999947, 49.374172390000076 ], [ -119.615584582999958, 49.374876098000101 ], [ -119.615573144999971, 49.374881141000117 ], [ -119.614885805999933, 49.375183599000117 ], [ -119.614608999, 49.375356908000043 ], [ -119.61448509, 49.375462525000088 ], [ -119.613982501999914, 49.37589090900007 ], [ -119.613376416999984, 49.376327601000078 ], [ -119.613319587999939, 49.376111611000077 ], [ -119.613459343, 49.375101287000071 ], [ -119.613477843999959, 49.37510238100004 ], [ -119.61360158599993, 49.374207787000088 ], [ -119.613775661999966, 49.374218085000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999910476472407", "sL_AssetLoss": "95.05881", "sL_BldgLoss": "95.0503", "sL_StrLoss": "95", "sL_NStrLoss": "0.0503", "sL_ContLoss": "0.00851", "geom_point": "0101000020E610000077BC87537FE85DC090D39D482CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.633717676999979, 49.33661522600007 ], [ -119.633779175999976, 49.336613823000036 ], [ -119.633194508999907, 49.337268988000048 ], [ -119.632470219999973, 49.338337586000115 ], [ -119.632222606999932, 49.338561584000033 ], [ -119.632155332999986, 49.338606540000114 ], [ -119.632440117999948, 49.336539812000083 ], [ -119.633717676999979, 49.33661522600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331667", "BldgCostT": "4366667", "sL_LossRatio": "1", "sL_AssetLoss": "634.8", "sL_BldgLoss": "634.8", "sL_StrLoss": "634.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BD0FCBD96E45DC0354D8EF117A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.572907023999946, 49.303651972000047 ], [ -119.574974817999959, 49.303775267000056 ], [ -119.574476710999946, 49.307360191000065 ], [ -119.573907697999971, 49.307326268000033 ], [ -119.573899188000013, 49.307387504000076 ], [ -119.568426099999925, 49.307061050000065 ], [ -119.568722753999907, 49.304928085 ], [ -119.568924671999952, 49.303476152000044 ], [ -119.569493633999969, 49.303510102000132 ], [ -119.569502148999931, 49.303448865000064 ], [ -119.572907023999946, 49.303651972000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999997528879093", "sL_AssetLoss": "242.9261953", "sL_BldgLoss": "242.925595", "sL_StrLoss": "242.900535", "sL_NStrLoss": "0.02506", "sL_ContLoss": "0.0006003", "geom_point": "0101000020E6100000D1F8AED683E65DC071F8CD92BAAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.601253697999979, 49.366002388000055 ], [ -119.60010211599996, 49.364474911000102 ], [ -119.600019682, 49.364385307000092 ], [ -119.599585876999967, 49.363913905000068 ], [ -119.5994934499999, 49.36382436300007 ], [ -119.596382940999931, 49.360811208000094 ], [ -119.596240154999961, 49.360672910000119 ], [ -119.596110481999958, 49.360547281000031 ], [ -119.599666221999911, 49.360758224000115 ], [ -119.599523118999954, 49.36179085 ], [ -119.598917294, 49.36152749900004 ], [ -119.598772294999947, 49.361378011000056 ], [ -119.598680703999918, 49.360939307000066 ], [ -119.598507691999913, 49.360826809000059 ], [ -119.597775085999928, 49.361021897000057 ], [ -119.597689507999988, 49.361231303000061 ], [ -119.597995893999951, 49.361538887000087 ], [ -119.598492097999952, 49.361833696000112 ], [ -119.599111681999915, 49.362602805000051 ], [ -119.599472889999902, 49.362927512000098 ], [ -119.600620002999946, 49.363504311000099 ], [ -119.601137588999961, 49.363638627000071 ], [ -119.600993718999987, 49.364676961000065 ], [ -119.605136099, 49.364922483000079 ], [ -119.60463966899999, 49.368507219000072 ], [ -119.602888862999961, 49.368403467000036 ], [ -119.602793478999942, 49.368263412000026 ], [ -119.601937112999906, 49.367006005000071 ], [ -119.601857100999965, 49.366888502000059 ], [ -119.601253697999979, 49.366002388000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4197750", "BldgCostT": "2895000", "sL_LossRatio": "1", "sL_AssetLoss": "356", "sL_BldgLoss": "356", "sL_StrLoss": "356", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD3C19F325E35DC0B35D465623A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546228370999941, 49.306556773000061 ], [ -119.546339701999983, 49.305759085000084 ], [ -119.546781895, 49.305776788000117 ], [ -119.547025704999953, 49.305951990000047 ], [ -119.547202994999964, 49.305920701000041 ], [ -119.546889612999962, 49.305469195000086 ], [ -119.54684920499993, 49.305208589000102 ], [ -119.546479595000022, 49.304756693000044 ], [ -119.546610293999933, 49.30382014000002 ], [ -119.552082845, 49.304147700000051 ], [ -119.55158296499998, 49.307732518000066 ], [ -119.546722658999926, 49.307441618000098 ], [ -119.546611, 49.307283587000036 ], [ -119.546521373999951, 49.307106215000083 ], [ -119.546476485999975, 49.307017351000134 ], [ -119.546260601999961, 49.306590096000107 ], [ -119.546228370999941, 49.306556773000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999995109928045", "sL_AssetLoss": "77.708468", "sL_BldgLoss": "77.708088", "sL_StrLoss": "77.700128", "sL_NStrLoss": "0.00796", "sL_ContLoss": "0.00038", "geom_point": "0101000020E6100000C17EBA4757E75DC02EED2F16E1A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.612618884999932, 49.319011414000101 ], [ -119.616742587999966, 49.318918058000079 ], [ -119.61678546499995, 49.319726773000085 ], [ -119.612661693999939, 49.319820132000103 ], [ -119.612618884999932, 49.319011414000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45497250", "BldgCostT": "29430000", "sL_LossRatio": "0.993433236295634", "sL_AssetLoss": "3639.540126", "sL_BldgLoss": "3615.640126", "sL_StrLoss": "3607.000126", "sL_NStrLoss": "8.64", "sL_ContLoss": "23.9", "geom_point": "0101000020E61000002AA8F287B0E45DC09FE00FFDE2AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.578451856999948, 49.345093972000072 ], [ -119.577851799000015, 49.344989298 ], [ -119.576175763999956, 49.344955920000118 ], [ -119.575617091999945, 49.344944797000046 ], [ -119.57563970899993, 49.344335312000091 ], [ -119.575643036999963, 49.344236779000028 ], [ -119.575649743999946, 49.344039724000048 ], [ -119.575653087999967, 49.343941215000115 ], [ -119.57566958699995, 49.34363410100012 ], [ -119.57569201299998, 49.343214300000113 ], [ -119.575702491999948, 49.342950186000095 ], [ -119.574325295999969, 49.342925112000046 ], [ -119.574331327999957, 49.342675831000072 ], [ -119.574349382999969, 49.341928006000103 ], [ -119.573014090999948, 49.341899998000073 ], [ -119.57304808899994, 49.341109597000106 ], [ -119.573034675999935, 49.340879769000061 ], [ -119.573023621999951, 49.340689710000063 ], [ -119.57304288899995, 49.340323116000036 ], [ -119.572016017999985, 49.340298494000116 ], [ -119.571673703999963, 49.340290291000052 ], [ -119.571679807999914, 49.340108097000112 ], [ -119.571625705999935, 49.339772416000102 ], [ -119.571401006999949, 49.339124708000035 ], [ -119.571232819999949, 49.338653827 ], [ -119.571225073999955, 49.338632038000043 ], [ -119.5709166, 49.337768277000094 ], [ -119.570728386999988, 49.337241215000077 ], [ -119.570658130000012, 49.337044496 ], [ -119.570670440999933, 49.33695600900009 ], [ -119.570626872999966, 49.336956979000128 ], [ -119.570060484999885, 49.335371040000098 ], [ -119.570021095999934, 49.335260794000099 ], [ -119.569531882999939, 49.333667401000113 ], [ -119.569530058999987, 49.333663557000101 ], [ -119.568694868999927, 49.331915093000084 ], [ -119.567142579999967, 49.330140709000062 ], [ -119.5640738699999, 49.32663246400007 ], [ -119.562409485999979, 49.324729425000051 ], [ -119.564280450999931, 49.324841114000066 ], [ -119.564275211, 49.324878746000074 ], [ -119.564999829999962, 49.324921995000061 ], [ -119.56496004899995, 49.325207742000089 ], [ -119.567996455999918, 49.325388912000065 ], [ -119.56790445299994, 49.326050061000068 ], [ -119.569770643999959, 49.326161365000075 ], [ -119.569589169999958, 49.327465782000075 ], [ -119.570805995999933, 49.327538340000061 ], [ -119.570680090999986, 49.328443458000081 ], [ -119.570808954999919, 49.328451141000144 ], [ -119.570673867999972, 49.329422244000057 ], [ -119.571183708999953, 49.329452641000024 ], [ -119.571336235999937, 49.328356081000059 ], [ -119.571536336999927, 49.328368010000062 ], [ -119.571677521999945, 49.327352904000058 ], [ -119.573336692999973, 49.329047014000011 ], [ -119.574534795999952, 49.330090898000044 ], [ -119.576527002999953, 49.331612012000015 ], [ -119.577471290999981, 49.332813991000087 ], [ -119.578041699999972, 49.334511712000044 ], [ -119.578070106999988, 49.334651861000104 ], [ -119.578226891, 49.335424614000026 ], [ -119.578369301999928, 49.335529998000034 ], [ -119.578472169999884, 49.335884018000073 ], [ -119.578474691999958, 49.335892694000073 ], [ -119.578673113999969, 49.336575391000054 ], [ -119.578784592999938, 49.336609489000111 ], [ -119.578995990999914, 49.337495394000044 ], [ -119.5794058199999, 49.338231704000108 ], [ -119.580193771000012, 49.33925292800005 ], [ -119.580321206999955, 49.339418087000126 ], [ -119.580308687999974, 49.339697214000083 ], [ -119.579795293999936, 49.340400815000095 ], [ -119.579534879, 49.340954791000108 ], [ -119.579772592999944, 49.341813590000044 ], [ -119.580144977000018, 49.342615399000103 ], [ -119.580071021999942, 49.343319001000154 ], [ -119.580240413999931, 49.34390860400007 ], [ -119.580154400999973, 49.344107996000155 ], [ -119.579914496999976, 49.344257495000107 ], [ -119.579898520999961, 49.344474003000087 ], [ -119.57989360899991, 49.344472340000053 ], [ -119.579772806999983, 49.34443128700007 ], [ -119.579692396, 49.344478305000116 ], [ -119.579474547999922, 49.344703421000084 ], [ -119.579421292999939, 49.344700251000091 ], [ -119.579411847999921, 49.344768213000087 ], [ -119.5792733899999, 49.344911291000074 ], [ -119.579258451999976, 49.345362340000122 ], [ -119.579233097999946, 49.345353821000074 ], [ -119.579035674999957, 49.34528762900004 ], [ -119.578797876999928, 49.345207868000159 ], [ -119.578644370999967, 49.345156380000098 ], [ -119.578575499999914, 49.345133290000078 ], [ -119.578465197999961, 49.345096299000083 ], [ -119.578451856999948, 49.345093972000072 ] ], [ [ -119.577078031999989, 49.332537922000121 ], [ -119.57710447, 49.332347695000074 ], [ -119.576934284999965, 49.332337560000063 ], [ -119.574318788999932, 49.332181752000103 ], [ -119.574323396999958, 49.332148610000097 ], [ -119.572053205999964, 49.332013320000094 ], [ -119.571969996999897, 49.33261156400004 ], [ -119.573468635, 49.332700880000083 ], [ -119.573386832999958, 49.333289125000064 ], [ -119.574049074999976, 49.333328587000047 ], [ -119.574072660999988, 49.333158958000105 ], [ -119.576967748999948, 49.333331421000054 ], [ -119.577078031999989, 49.332537922000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8040917", "BldgCostT": "5281667", "sL_LossRatio": "0.99992073473695", "sL_AssetLoss": "1523.87055", "sL_BldgLoss": "1523.74976", "sL_StrLoss": "1523.30196", "sL_NStrLoss": "0.4478", "sL_ContLoss": "0.12079", "geom_point": "0101000020E61000007A3B1D2374E35DC09BA0D9B78BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55534025299994, 49.318913258000066 ], [ -119.555352993999932, 49.318821865000054 ], [ -119.555305802999939, 49.318819045000069 ], [ -119.555297162999963, 49.318881015000059 ], [ -119.545022004999936, 49.311190330000052 ], [ -119.545247679999974, 49.311203844000055 ], [ -119.548980301999933, 49.311427301000037 ], [ -119.549048529999965, 49.311518052000103 ], [ -119.548762761999953, 49.313566146 ], [ -119.548733612999982, 49.31377504400011 ], [ -119.5491141099999, 49.313797815000079 ], [ -119.550847916999956, 49.313901558000019 ], [ -119.55072270099997, 49.314799209000036 ], [ -119.551679349999986, 49.314856438000021 ], [ -119.551598532999947, 49.315435863000054 ], [ -119.551551543999935, 49.315772744000064 ], [ -119.552201191999984, 49.315811603000029 ], [ -119.552201220999947, 49.315811399000061 ], [ -119.55231085299999, 49.315025304000088 ], [ -119.552795314999969, 49.315054279000044 ], [ -119.553762206, 49.315717811000042 ], [ -119.556105917999915, 49.31712350500004 ], [ -119.559381590999948, 49.319254098000094 ], [ -119.5607200399999, 49.31991957200011 ], [ -119.560554161999974, 49.321110372000099 ], [ -119.559203255999961, 49.321029678000109 ], [ -119.55858857599999, 49.320992954000097 ], [ -119.558544302999962, 49.321310662 ], [ -119.55534025299994, 49.318913258000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8801417", "BldgCostT": "5596667", "sL_LossRatio": "0.948520003146192", "sL_AssetLoss": "1814.12987", "sL_BldgLoss": "1720.73847", "sL_StrLoss": "1685.02017", "sL_NStrLoss": "35.7183", "sL_ContLoss": "93.3914", "geom_point": "0101000020E6100000C0451FDA24E85DC0B5FCC0559EAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.627020647999984, 49.353249535000089 ], [ -119.629023318999927, 49.353367801000076 ], [ -119.629364089999967, 49.353608303000065 ], [ -119.62938112099999, 49.35363470700004 ], [ -119.62945851899994, 49.353754896000041 ], [ -119.629477575999942, 49.3539575 ], [ -119.629438952, 49.354185033000093 ], [ -119.629293499999932, 49.355041683000103 ], [ -119.629326603999957, 49.355703186 ], [ -119.629355386999947, 49.356105192000058 ], [ -119.629440702999943, 49.356507801000106 ], [ -119.629652513999986, 49.357074999000126 ], [ -119.62977471899994, 49.358842298000098 ], [ -119.629767641999962, 49.359024489000028 ], [ -119.624328337999913, 49.358703268000056 ], [ -119.624823138999957, 49.35511839100009 ], [ -119.625845977999973, 49.355178816000063 ], [ -119.626069169999951, 49.353561315000022 ], [ -119.626970291999953, 49.353614542000081 ], [ -119.627020647999984, 49.353249535000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20252334", "BldgCostT": "13703334", "sL_LossRatio": "1", "sL_AssetLoss": "2270.2", "sL_BldgLoss": "2270.2", "sL_StrLoss": "2270.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD90D0F91DE55DC07DCD93E7D1AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.579973888000012, 49.338273005000069 ], [ -119.579669982, 49.337750304000046 ], [ -119.579607298999946, 49.337570641000106 ], [ -119.57918408099999, 49.336357498000019 ], [ -119.579115131999941, 49.336134716000096 ], [ -119.578742757999976, 49.334931368000099 ], [ -119.578298314999955, 49.333495081000123 ], [ -119.578158079999966, 49.333041892000054 ], [ -119.577818305999955, 49.332329782000066 ], [ -119.577794754999985, 49.332303866000061 ], [ -119.576984602, 49.331412597000096 ], [ -119.575033785999892, 49.329881595000117 ], [ -119.57416991499997, 49.329172294000045 ], [ -119.57307811099993, 49.328010205000076 ], [ -119.571749669000027, 49.326834152000103 ], [ -119.571761904000013, 49.326746186000037 ], [ -119.572610631999908, 49.326796778000123 ], [ -119.577237339999925, 49.327072462000103 ], [ -119.577205809999967, 49.327299352000068 ], [ -119.577400647999966, 49.327310957000087 ], [ -119.577323682999989, 49.327864841000078 ], [ -119.578163161999925, 49.327914838000019 ], [ -119.57807623699992, 49.328540447000051 ], [ -119.578972475999947, 49.328593818000058 ], [ -119.578937939999946, 49.328842412000071 ], [ -119.580292850999982, 49.328923081 ], [ -119.579833390999937, 49.332230724000027 ], [ -119.58261909299992, 49.332396525000036 ], [ -119.582262512999932, 49.334964307000078 ], [ -119.584818490999922, 49.335116371000062 ], [ -119.584542961999901, 49.337101076000117 ], [ -119.584583427, 49.337103483000071 ], [ -119.58440933599995, 49.33835743 ], [ -119.584551508999965, 49.338365887000066 ], [ -119.584053770999972, 49.341950670000088 ], [ -119.581911894999962, 49.3418232510001 ], [ -119.58166136199999, 49.343626820000026 ], [ -119.58082867499995, 49.343577272000061 ], [ -119.58081482799993, 49.343676939000055 ], [ -119.580610966, 49.343664808000085 ], [ -119.580554915, 49.343661472000079 ], [ -119.580489165999964, 49.344134615000058 ], [ -119.580385593999921, 49.343770495000044 ], [ -119.580401139999978, 49.342824375000049 ], [ -119.580402023999909, 49.342770703000085 ], [ -119.580402100999919, 49.342761855000035 ], [ -119.580407696999899, 49.34210560500005 ], [ -119.580020018, 49.341286604000111 ], [ -119.579989581999925, 49.340954800000119 ], [ -119.580130587999975, 49.340501895000067 ], [ -119.580577690999945, 49.339843907000066 ], [ -119.580733413999923, 49.339128998000099 ], [ -119.5803383499999, 49.338683764000095 ], [ -119.579973888000012, 49.338273005000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4932417", "BldgCostT": "3401667", "sL_LossRatio": "1", "sL_AssetLoss": "430.5", "sL_BldgLoss": "430.5", "sL_StrLoss": "430.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A860854221E45DC0E1E3FA1453A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.56720306599999, 49.305575206000135 ], [ -119.56751589799994, 49.305593877000028 ], [ -119.567017195999981, 49.30917875700009 ], [ -119.56516141199991, 49.309067982000073 ], [ -119.561543944999954, 49.30885195500008 ], [ -119.562043066999962, 49.305267099000055 ], [ -119.56720306599999, 49.305575206000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12235584", "BldgCostT": "8438334", "sL_LossRatio": "1", "sL_AssetLoss": "1318.5", "sL_BldgLoss": "1318.5", "sL_StrLoss": "1318.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000045DFD559CAE35DC010B633A726A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55825193799997, 49.316441946000033 ], [ -119.558421372999945, 49.315225916000074 ], [ -119.55673457099999, 49.315125107000078 ], [ -119.556818743999969, 49.31452112700002 ], [ -119.553948522, 49.314349533000048 ], [ -119.554448290999986, 49.310764740000067 ], [ -119.55992171799997, 49.311091901000104 ], [ -119.559837590999948, 49.31169588700007 ], [ -119.561651950999973, 49.311804273000028 ], [ -119.562707670999956, 49.311867326000041 ], [ -119.56253836099998, 49.313083368000029 ], [ -119.564225101999909, 49.313184086000049 ], [ -119.563927943999971, 49.315318776000041 ], [ -119.563726061999915, 49.316768911000104 ], [ -119.55825193799997, 49.316441946000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "249", "sL_BldgLoss": "249", "sL_StrLoss": "249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061890794CDE15DC0BDCB7F27B1A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.524633626999915, 49.288546492000101 ], [ -119.52481918899997, 49.288557646000079 ], [ -119.524651588999944, 49.289512400000021 ], [ -119.524814080999946, 49.289966694000015 ], [ -119.525738693999969, 49.290298504000127 ], [ -119.527180477999977, 49.291607392000074 ], [ -119.527280690999987, 49.291937806000085 ], [ -119.527522894999933, 49.292111501000079 ], [ -119.527558413999884, 49.292290994000034 ], [ -119.527899995999917, 49.292490391000044 ], [ -119.527992301999944, 49.292713999000071 ], [ -119.528371711999952, 49.292857803000103 ], [ -119.528506098, 49.293611190000028 ], [ -119.528599302999964, 49.293789295000046 ], [ -119.528880798999978, 49.293935995 ], [ -119.529078816999956, 49.294821804000065 ], [ -119.52944518699999, 49.295561009000025 ], [ -119.529448619999982, 49.295902801000075 ], [ -119.529319491999956, 49.29606658900012 ], [ -119.529461088999966, 49.296666191000071 ], [ -119.530067588999927, 49.297490804000091 ], [ -119.53079360000001, 49.297690191000079 ], [ -119.530922609999962, 49.297822596000039 ], [ -119.531261587999921, 49.298516201000069 ], [ -119.531271014999959, 49.298678591000119 ], [ -119.531050805999882, 49.298943510000058 ], [ -119.531043711999985, 49.299349400000068 ], [ -119.531170121999935, 49.299669803000029 ], [ -119.531431484999942, 49.300222397000084 ], [ -119.531461126999901, 49.300382785000082 ], [ -119.53109953699996, 49.300361079000083 ], [ -119.531016229999949, 49.300116949000063 ], [ -119.530955598999981, 49.299995471000031 ], [ -119.530836723000021, 49.299757148000054 ], [ -119.530416459999941, 49.298914388000043 ], [ -119.530334262999958, 49.298749608000037 ], [ -119.530330014999933, 49.298741002000092 ], [ -119.529460350999926, 49.297538386000063 ], [ -119.529432399999934, 49.29749977200003 ], [ -119.528751199999988, 49.296557703000055 ], [ -119.528172712999975, 49.295565888000098 ], [ -119.52741539, 49.294169683000057 ], [ -119.527223484999965, 49.293815851000097 ], [ -119.526915069999944, 49.293247298000061 ], [ -119.526446512999954, 49.292278401000097 ], [ -119.526110698999929, 49.291799993000048 ], [ -119.525235971999962, 49.290789072000052 ], [ -119.525213237999964, 49.290762799000106 ], [ -119.5245971, 49.290050709000084 ], [ -119.524502114999962, 49.289763889000064 ], [ -119.524468319999983, 49.289413901000067 ], [ -119.52464448299996, 49.288746689000121 ], [ -119.524633626999915, 49.288546492000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "1", "sL_AssetLoss": "799", "sL_BldgLoss": "799", "sL_StrLoss": "799", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000010C0598CB2E15DC0CCAE20721FAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.524036197, 49.327127988000044 ], [ -119.529511340999989, 49.327456681000101 ], [ -119.529009462999923, 49.331041268 ], [ -119.523533899999975, 49.330712552000101 ], [ -119.524036197, 49.327127988000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9338083", "BldgCostT": "5968333", "sL_LossRatio": "1", "sL_AssetLoss": "524", "sL_BldgLoss": "524", "sL_StrLoss": "524", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E816C82BDE15DC05B432585E4A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.528071893999979, 49.298398883000083 ], [ -119.528198075999981, 49.29749715000009 ], [ -119.527436283999961, 49.297451393000145 ], [ -119.526059835999959, 49.297368703000046 ], [ -119.526102762999955, 49.297062032000042 ], [ -119.525875849999977, 49.297048399000104 ], [ -119.525900457999938, 49.296872607000132 ], [ -119.525375846999935, 49.296841086000036 ], [ -119.525408290999948, 49.29660932500007 ], [ -119.525317758999932, 49.296603885000145 ], [ -119.525377407999912, 49.296177787000062 ], [ -119.525056079999942, 49.296158478000081 ], [ -119.525083414999941, 49.29596321200011 ], [ -119.524944689000023, 49.295954876000046 ], [ -119.524964416000017, 49.295813965000058 ], [ -119.524969245999927, 49.295779455000059 ], [ -119.524861396999896, 49.295772974000023 ], [ -119.524975787999907, 49.294955870000088 ], [ -119.524568317, 49.294931382000065 ], [ -119.524438236999984, 49.294923565000047 ], [ -119.524468127999953, 49.294710060000078 ], [ -119.524484062999989, 49.294596239000064 ], [ -119.524318054999952, 49.294586261000049 ], [ -119.524371224999939, 49.294206489000047 ], [ -119.524240976999977, 49.294198660000063 ], [ -119.52428528799993, 49.293882164000095 ], [ -119.524610074999956, 49.29368282500009 ], [ -119.524768081999966, 49.293344180000119 ], [ -119.524779063999972, 49.293217146000075 ], [ -119.52462891199994, 49.292631823000136 ], [ -119.524717895999984, 49.292294835000114 ], [ -119.52496656199996, 49.29169160300011 ], [ -119.525235971999962, 49.290789072000052 ], [ -119.526110698999929, 49.291799993000048 ], [ -119.526446512999954, 49.292278401000097 ], [ -119.526915069999944, 49.293247298000061 ], [ -119.527223484999965, 49.293815851000097 ], [ -119.52741539, 49.294169683000057 ], [ -119.528172712999975, 49.295565888000098 ], [ -119.528751199999988, 49.296557703000055 ], [ -119.529432399999934, 49.29749977200003 ], [ -119.529460350999926, 49.297538386000063 ], [ -119.530330014999933, 49.298741002000092 ], [ -119.530334262999958, 49.298749608000037 ], [ -119.530416459999941, 49.298914388000043 ], [ -119.530836723000021, 49.299757148000054 ], [ -119.530955598999981, 49.299995471000031 ], [ -119.531016229999949, 49.300116949000063 ], [ -119.53109953699996, 49.300361079000083 ], [ -119.529721147999979, 49.300278324000033 ], [ -119.52945188399994, 49.300262157000056 ], [ -119.527824818999974, 49.300164445000114 ], [ -119.528071893999979, 49.298398883000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66965417", "BldgCostT": "41971667", "sL_LossRatio": "0.999984629653354", "sL_AssetLoss": "7941.39539", "sL_BldgLoss": "7941.273328", "sL_StrLoss": "7940.216678", "sL_NStrLoss": "1.05665", "sL_ContLoss": "0.122062", "geom_point": "0101000020E61000000A6809CF17E45DC00FB2D1DE85AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.568278289, 49.340284004000075 ], [ -119.568096676, 49.339406610000069 ], [ -119.56805662899994, 49.339211047000141 ], [ -119.567936384999939, 49.338624392000028 ], [ -119.567858811999926, 49.338249301000097 ], [ -119.56780948799999, 49.338132965000092 ], [ -119.567651897999966, 49.337761038000117 ], [ -119.567293885999945, 49.336916243000097 ], [ -119.567249911999937, 49.336812411000054 ], [ -119.566935408999882, 49.336195408000037 ], [ -119.566509223999958, 49.335732204000102 ], [ -119.566426997999926, 49.335642814 ], [ -119.565986485999971, 49.335334902000035 ], [ -119.565742587999964, 49.335164474000088 ], [ -119.565045918999942, 49.334677549000105 ], [ -119.564519989999951, 49.334309930000096 ], [ -119.564134564, 49.334040568000056 ], [ -119.563362499999968, 49.33350090400004 ], [ -119.562020304999962, 49.333950296000047 ], [ -119.561783931999969, 49.333949444000069 ], [ -119.561713996999956, 49.333949200000056 ], [ -119.560936294, 49.333824192000101 ], [ -119.560656285, 49.333733310000149 ], [ -119.560433684999936, 49.333597199000067 ], [ -119.560233738999969, 49.333319220000142 ], [ -119.559123493999948, 49.331775804000152 ], [ -119.558806304999976, 49.331526407000126 ], [ -119.558677997999951, 49.331466401000064 ], [ -119.558387903999972, 49.331388514 ], [ -119.558064508999962, 49.331361911000045 ], [ -119.557380718999966, 49.33136539700007 ], [ -119.556394382999954, 49.331310996000113 ], [ -119.555967809999956, 49.331321592000101 ], [ -119.555806405999945, 49.331349262000053 ], [ -119.555553496999906, 49.331392602000101 ], [ -119.554683286999932, 49.331693094000109 ], [ -119.554223695999909, 49.331772212000054 ], [ -119.553828109999984, 49.33171868600008 ], [ -119.552850279999973, 49.331425302000135 ], [ -119.552793240999932, 49.33141483900009 ], [ -119.553516020999965, 49.331398863000075 ], [ -119.553580545999949, 49.330936279000113 ], [ -119.55591629599995, 49.331075881000018 ], [ -119.557505656000018, 49.331040701000134 ], [ -119.557491680999959, 49.330771117000047 ], [ -119.558729143999969, 49.330743712000114 ], [ -119.55874312499995, 49.331013294000115 ], [ -119.55875266799994, 49.331013083000073 ], [ -119.558865265999955, 49.330205185000104 ], [ -119.558896754999978, 49.329979241000061 ], [ -119.558418334999956, 49.329950664000066 ], [ -119.555204373999985, 49.329758629000111 ], [ -119.555646720999974, 49.326586252 ], [ -119.555704210999934, 49.32617391500002 ], [ -119.556040824999968, 49.326194031000043 ], [ -119.556256468999933, 49.324647223000028 ], [ -119.557113859999959, 49.324698458000036 ], [ -119.55876593499994, 49.324797164000081 ], [ -119.558805369999931, 49.324514181000026 ], [ -119.562409485999979, 49.324729425000051 ], [ -119.5640738699999, 49.32663246400007 ], [ -119.567142579999967, 49.330140709000062 ], [ -119.568694868999927, 49.331915093000084 ], [ -119.569530058999987, 49.333663557000101 ], [ -119.569531882999939, 49.333667401000113 ], [ -119.570021095999934, 49.335260794000099 ], [ -119.570060484999885, 49.335371040000098 ], [ -119.570626872999966, 49.336956979000128 ], [ -119.570615813999922, 49.336957224000088 ], [ -119.570628003999929, 49.337191124000078 ], [ -119.570629862999937, 49.337226806000039 ], [ -119.570632771999954, 49.337226741000045 ], [ -119.57063709599997, 49.337195662000049 ], [ -119.570658130000012, 49.337044496 ], [ -119.570728386999988, 49.337241215000077 ], [ -119.5709166, 49.337768277000094 ], [ -119.571225073999955, 49.338632038000043 ], [ -119.571232819999949, 49.338653827 ], [ -119.571401006999949, 49.339124708000035 ], [ -119.571625705999935, 49.339772416000102 ], [ -119.571679807999914, 49.340108097000112 ], [ -119.571673703999963, 49.340290291000052 ], [ -119.572016017999985, 49.340298494000116 ], [ -119.57304288899995, 49.340323116000036 ], [ -119.573023621999951, 49.340689710000063 ], [ -119.573034675999935, 49.340879769000061 ], [ -119.57304808899994, 49.341109597000106 ], [ -119.573014090999948, 49.341899998000073 ], [ -119.57161909899996, 49.341873811000035 ], [ -119.571587412999989, 49.342562267000083 ], [ -119.571574023, 49.342853302000037 ], [ -119.57153208199999, 49.343615954000079 ], [ -119.571518087999934, 49.343870175000063 ], [ -119.570249792999974, 49.343855983000033 ], [ -119.568985697999949, 49.343841209000061 ], [ -119.568857937999951, 49.342957211000098 ], [ -119.568827500999973, 49.342746494000018 ], [ -119.568736391999963, 49.34235405800009 ], [ -119.568701802999925, 49.342205008000079 ], [ -119.568685417999987, 49.342134378000047 ], [ -119.568660811999919, 49.342028427000088 ], [ -119.568443395999935, 49.341091688000041 ], [ -119.568402121999981, 49.340889773000121 ], [ -119.568278289, 49.340284004000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58188750", "BldgCostT": "39075000", "sL_LossRatio": "0.999994538635154", "sL_AssetLoss": "8493.7742316", "sL_BldgLoss": "8493.727844", "sL_StrLoss": "8493.400598", "sL_NStrLoss": "0.327246", "sL_ContLoss": "0.0463876", "geom_point": "0101000020E610000045EBFBB2ECE25DC0316213579DA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55185229599999, 49.32293305400006 ], [ -119.55215531499999, 49.320760734 ], [ -119.55148614899997, 49.320720712000124 ], [ -119.551376295999887, 49.321508181000084 ], [ -119.549480902999903, 49.32139479700006 ], [ -119.54900926199997, 49.32136657700007 ], [ -119.545901698999941, 49.321180593000093 ], [ -119.546022638999915, 49.320314389000011 ], [ -119.544483083999936, 49.320222214000054 ], [ -119.544425654999984, 49.320633444000109 ], [ -119.538951211999915, 49.32030550300005 ], [ -119.539114915999903, 49.31913422800006 ], [ -119.537355336999966, 49.31902876200008 ], [ -119.537533300999925, 49.317755744000046 ], [ -119.53685120599998, 49.317714852000066 ], [ -119.536902746999914, 49.317346182000044 ], [ -119.534619858999974, 49.317209291000033 ], [ -119.535121153999953, 49.313624604000047 ], [ -119.535329406999963, 49.313637094000079 ], [ -119.535500101999943, 49.312416309000042 ], [ -119.537411174999988, 49.312530904 ], [ -119.53746903499993, 49.312116954000047 ], [ -119.542023456999942, 49.312389916000036 ], [ -119.542942502999963, 49.312444974000101 ], [ -119.542847566999981, 49.313124734000134 ], [ -119.543301203999988, 49.313151907000105 ], [ -119.543587131999971, 49.311104392000047 ], [ -119.545022004999936, 49.311190330000052 ], [ -119.555297162999963, 49.318881015000059 ], [ -119.555214391999954, 49.319474732000124 ], [ -119.555261583999979, 49.31947755300007 ], [ -119.55534025299994, 49.318913258000066 ], [ -119.558544302999962, 49.321310662 ], [ -119.558507853999942, 49.321572236000115 ], [ -119.558666307999971, 49.321568725000084 ], [ -119.558708237999937, 49.322377477000025 ], [ -119.55839467499996, 49.322384423000123 ], [ -119.558270982999943, 49.323272018000047 ], [ -119.557333320999959, 49.323215993000076 ], [ -119.557327141, 49.323260340000054 ], [ -119.556843241999943, 49.323231424000049 ], [ -119.55185229599999, 49.32293305400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "73.3", "sL_BldgLoss": "73.3", "sL_StrLoss": "73.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000C0F71DE05E35DC06FB3802279AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546780853999962, 49.331277669000059 ], [ -119.550740304999977, 49.33119030200006 ], [ -119.549666292999945, 49.331302704000059 ], [ -119.547851207999926, 49.331341394000106 ], [ -119.54769842799999, 49.331361351000112 ], [ -119.547499691999946, 49.331387299000028 ], [ -119.547124794999917, 49.331551900000065 ], [ -119.547009781999918, 49.331643494000097 ], [ -119.546767499999973, 49.33201490200004 ], [ -119.546601218999982, 49.332711588000095 ], [ -119.546259775999914, 49.333159189000106 ], [ -119.546060712999974, 49.333327524000012 ], [ -119.546039338999961, 49.332913373000054 ], [ -119.546451847999947, 49.332904280000086 ], [ -119.546382273999882, 49.331556350000071 ], [ -119.546794770999924, 49.331547255000039 ], [ -119.546780853999962, 49.331277669000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22782667", "BldgCostT": "14976667", "sL_LossRatio": "1", "sL_AssetLoss": "2159.4", "sL_BldgLoss": "2159.4", "sL_StrLoss": "2159.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FACFAA01D0E15DC039DC378C3CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52423250899993, 49.318528102000066 ], [ -119.524379181999947, 49.317481050000019 ], [ -119.523983770999962, 49.317457297000018 ], [ -119.52448589, 49.313872660000058 ], [ -119.525615811999941, 49.313940533000071 ], [ -119.526071993999963, 49.310682787000118 ], [ -119.52702824, 49.31074021900006 ], [ -119.527115880999972, 49.310114210000037 ], [ -119.532589035999962, 49.310442755000096 ], [ -119.532448914, 49.311444490000092 ], [ -119.532978188999948, 49.311476247000016 ], [ -119.532790899999938, 49.31281521500005 ], [ -119.53247675199998, 49.315060936000044 ], [ -119.531288546000013, 49.314989640000071 ], [ -119.529861139000019, 49.314903974000082 ], [ -119.529812935999985, 49.315248401000076 ], [ -119.530208331999958, 49.315272133000128 ], [ -119.529927918999988, 49.317275790000103 ], [ -119.529753389999954, 49.31852277600013 ], [ -119.529706639999944, 49.318856788000112 ], [ -119.52423250899993, 49.318528102000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143450916", "BldgCostT": "98931666", "sL_LossRatio": "0.999998241215856", "sL_AssetLoss": "15517.0832592", "sL_BldgLoss": "15517.055968", "sL_StrLoss": "15516.703567", "sL_NStrLoss": "0.352401", "sL_ContLoss": "0.0272912", "geom_point": "0101000020E61000002E34D76924E45DC07A6E3E01D6AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565187602999984, 49.346843282000073 ], [ -119.565229139999985, 49.345986221000054 ], [ -119.562704750999941, 49.345940403000093 ], [ -119.562871010999956, 49.344747133000112 ], [ -119.563382120999961, 49.344777631000035 ], [ -119.563457752999952, 49.344234741000093 ], [ -119.563065117999955, 49.344211312000013 ], [ -119.563074771999936, 49.344142023000067 ], [ -119.562316660999969, 49.344158840000013 ], [ -119.562288644999953, 49.343619675000078 ], [ -119.561463458, 49.343637977000107 ], [ -119.561449456999981, 49.343368394000038 ], [ -119.560211681999974, 49.343395835000088 ], [ -119.560197686, 49.343126253000058 ], [ -119.559785094999938, 49.343135396000022 ], [ -119.559757109999964, 49.342596232000076 ], [ -119.55934452399994, 49.342605372000044 ], [ -119.55931654299998, 49.34206620700008 ], [ -119.55890396199996, 49.342075347000105 ], [ -119.558875986999951, 49.341536182000056 ], [ -119.558463408999941, 49.341545320000073 ], [ -119.558446379999907, 49.341217054000012 ], [ -119.55738535899998, 49.341153685000037 ], [ -119.557443888999927, 49.339718899000054 ], [ -119.557443960999976, 49.339718027000096 ], [ -119.557466362999904, 49.339503013000069 ], [ -119.557649881999936, 49.339541624000049 ], [ -119.55806741399999, 49.339629455000143 ], [ -119.558327300999949, 49.339676601000093 ], [ -119.558623085999926, 49.339654507000098 ], [ -119.558942923999965, 49.339558855000107 ], [ -119.559948407999968, 49.339060439000015 ], [ -119.560258145, 49.33898768400006 ], [ -119.560851302999964, 49.338901999 ], [ -119.561217654999922, 49.338760028000095 ], [ -119.561550384999947, 49.338631084000099 ], [ -119.561686273999939, 49.338604671000098 ], [ -119.562012965999941, 49.338541222000096 ], [ -119.56238274699993, 49.338582271000107 ], [ -119.563698319999972, 49.338710888000087 ], [ -119.565007368999929, 49.338606334000133 ], [ -119.565100575999935, 49.338606198000015 ], [ -119.565322794999972, 49.338605905000108 ], [ -119.566323003, 49.338591511000061 ], [ -119.567936384999939, 49.338624392000028 ], [ -119.56805662899994, 49.339211047000141 ], [ -119.568096676, 49.339406610000069 ], [ -119.568278289, 49.340284004000075 ], [ -119.568402121999981, 49.340889773000121 ], [ -119.568443395999935, 49.341091688000041 ], [ -119.568660811999919, 49.342028427000088 ], [ -119.568685417999987, 49.342134378000047 ], [ -119.568701802999925, 49.342205008000079 ], [ -119.568736391999963, 49.34235405800009 ], [ -119.568827500999973, 49.342746494000018 ], [ -119.568857937999951, 49.342957211000098 ], [ -119.568985697999949, 49.343841209000061 ], [ -119.570249792999974, 49.343855983000033 ], [ -119.571518087999934, 49.343870175000063 ], [ -119.571485427999946, 49.344581175000073 ], [ -119.571470812999905, 49.344874883000031 ], [ -119.570225607999959, 49.344853095000083 ], [ -119.570114483999973, 49.346832585000087 ], [ -119.569481454000012, 49.346816930000102 ], [ -119.569467708999937, 49.346816597000036 ], [ -119.568935212999946, 49.346802889000045 ], [ -119.568133098999965, 49.346782196000049 ], [ -119.567708172999943, 49.346798055000072 ], [ -119.567508501999953, 49.346805501000063 ], [ -119.567408424999911, 49.347623660000053 ], [ -119.566945987999972, 49.347622289000135 ], [ -119.566794417999986, 49.34760526400003 ], [ -119.566603385999926, 49.347583806000031 ], [ -119.566283919999975, 49.347429200000079 ], [ -119.565721251999889, 49.347088404000047 ], [ -119.565516006999971, 49.34696410600008 ], [ -119.565291022999986, 49.346864901000103 ], [ -119.565187602999984, 49.346843282000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.999972029802775", "sL_AssetLoss": "399.103371", "sL_BldgLoss": "399.092208", "sL_StrLoss": "399.000608", "sL_NStrLoss": "0.0916", "sL_ContLoss": "0.011163", "geom_point": "0101000020E61000003415A07566E25DC0B9784F50D0AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.536673865999916, 49.348230610000094 ], [ -119.538811762999927, 49.348358675000028 ], [ -119.538310377999892, 49.351943193000068 ], [ -119.536282023999959, 49.351821692000037 ], [ -119.536248192999949, 49.350849510000032 ], [ -119.536262695999966, 49.350321804000032 ], [ -119.53631991599994, 49.350080310000045 ], [ -119.536651487999947, 49.349467605000036 ], [ -119.536748396999926, 49.349139996000098 ], [ -119.536711323999967, 49.348687632000107 ], [ -119.536673865999916, 49.348230610000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999995290541039", "sL_AssetLoss": "232.510785", "sL_BldgLoss": "232.50969", "sL_StrLoss": "232.5", "sL_NStrLoss": "0.00969", "sL_ContLoss": "0.001095", "geom_point": "0101000020E61000006797F3B5FCE25DC07C01C5E12FAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546308709999977, 49.346132171000086 ], [ -119.546294789999962, 49.345862585000091 ], [ -119.545882172999939, 49.345871681000091 ], [ -119.545868253999956, 49.345602094000107 ], [ -119.54545563799999, 49.34561118700001 ], [ -119.545399975999942, 49.344532845000074 ], [ -119.545812583, 49.344523752000036 ], [ -119.545798664999964, 49.344254166000042 ], [ -119.547036474999942, 49.344226881000068 ], [ -119.5470504, 49.344496465000113 ], [ -119.547463005999944, 49.344487367000063 ], [ -119.547490859, 49.345026537000123 ], [ -119.547903467999916, 49.345017438000063 ], [ -119.547959185999943, 49.34609577700013 ], [ -119.546308709999977, 49.346132171000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23075667", "BldgCostT": "15386667", "sL_LossRatio": "0.999944790132081", "sL_AssetLoss": "3550.09", "sL_BldgLoss": "3549.894", "sL_StrLoss": "3549.3", "sL_NStrLoss": "0.594", "sL_ContLoss": "0.196", "geom_point": "0101000020E61000003F6391ECF2E25DC098288C7711AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546963788, 49.370596107000097 ], [ -119.546754423999985, 49.370117307000086 ], [ -119.54670471699994, 49.369434795000068 ], [ -119.54666999799997, 49.369279907000099 ], [ -119.54665789699996, 49.369225989000071 ], [ -119.546474094999937, 49.368930395000113 ], [ -119.546001902999961, 49.368552390000097 ], [ -119.545914795000016, 49.368414401000081 ], [ -119.54565391199999, 49.367582780000099 ], [ -119.545505684999966, 49.367289298000038 ], [ -119.545330598999925, 49.367108998000063 ], [ -119.544974199999942, 49.366871710000055 ], [ -119.54464157399994, 49.36671694000016 ], [ -119.544244902999964, 49.366532361000068 ], [ -119.543987107999939, 49.366412406000038 ], [ -119.542996602999949, 49.365770301000055 ], [ -119.542371487999944, 49.365468998000033 ], [ -119.542068090999948, 49.365396700000069 ], [ -119.540754099999944, 49.365181615 ], [ -119.539384813999945, 49.364946902000042 ], [ -119.539055315999988, 49.364843089000026 ], [ -119.538741192999979, 49.364688795000127 ], [ -119.53850132, 49.364498202000043 ], [ -119.53834927199992, 49.364281295000069 ], [ -119.53820372699991, 49.36387050200009 ], [ -119.538205670999986, 49.363860295000094 ], [ -119.538247507999984, 49.363646295000073 ], [ -119.538368318999943, 49.363523386000061 ], [ -119.538607605999971, 49.363441903000094 ], [ -119.539043872999926, 49.363414016000043 ], [ -119.539257222999964, 49.363400402000053 ], [ -119.539270546999887, 49.363398004000068 ], [ -119.539510806999886, 49.363355002000063 ], [ -119.539626664999986, 49.36331816000007 ], [ -119.53982878799998, 49.363253912000054 ], [ -119.540050978999929, 49.363147004000076 ], [ -119.540242411999984, 49.362993092000103 ], [ -119.540648084999958, 49.362512302000034 ], [ -119.54075418799999, 49.362326193000065 ], [ -119.540774394999957, 49.36222159200004 ], [ -119.540704104999932, 49.362013201000124 ], [ -119.540536894999917, 49.361816407000099 ], [ -119.543109889999954, 49.361970389000106 ], [ -119.543104103, 49.362011779000042 ], [ -119.544775042000012, 49.362111743000092 ], [ -119.544612993, 49.363271035000032 ], [ -119.545483892999954, 49.363323127000115 ], [ -119.545035812999984, 49.366528809000052 ], [ -119.546243178999958, 49.366601014000025 ], [ -119.546170509999953, 49.367120968000059 ], [ -119.547231182999965, 49.367184388000098 ], [ -119.546858322999967, 49.369852442000131 ], [ -119.551721214999986, 49.370143071000022 ], [ -119.551647711999976, 49.370669399000072 ], [ -119.552898911999961, 49.370744140000106 ], [ -119.552398375999971, 49.374328604 ], [ -119.550010534999942, 49.374185951000058 ], [ -119.549898701999922, 49.373984702000079 ], [ -119.549865406999984, 49.373857095000091 ], [ -119.549719996999926, 49.373661304000073 ], [ -119.54947511499995, 49.373505702000053 ], [ -119.548991695999959, 49.373316894000041 ], [ -119.54858010099997, 49.373039295000055 ], [ -119.548352411999986, 49.372839604000077 ], [ -119.547934371999958, 49.372320197000136 ], [ -119.547890880999958, 49.372266190000104 ], [ -119.54722153699997, 49.371060359000111 ], [ -119.546963788, 49.370596107000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9461251", "BldgCostT": "6525001", "sL_LossRatio": "0.999930857810633", "sL_AssetLoss": "1371.66614", "sL_BldgLoss": "1371.5713", "sL_StrLoss": "1371.1", "sL_NStrLoss": "0.4713", "sL_ContLoss": "0.09484", "geom_point": "0101000020E61000000AF5BA66AEE25DC021AE7BAFCAAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.540451669999968, 49.341676298000081 ], [ -119.540434858999916, 49.33956528100007 ], [ -119.540434481999966, 49.339518308000088 ], [ -119.543601648999953, 49.338988570000062 ], [ -119.543476642999963, 49.339883189000098 ], [ -119.544126830999986, 49.339922108000117 ], [ -119.543625948999988, 49.343506696000084 ], [ -119.542149757999965, 49.343418330000056 ], [ -119.541834590999983, 49.345673030000071 ], [ -119.540455541999961, 49.345590461000079 ], [ -119.540357961, 49.346288362000095 ], [ -119.538404427999964, 49.346171366000071 ], [ -119.538706714999975, 49.346058405000065 ], [ -119.540081989, 49.345673587000057 ], [ -119.540314916999961, 49.345558290000028 ], [ -119.540377610999926, 49.345485298000035 ], [ -119.540418815999942, 49.345308797000044 ], [ -119.540419175999929, 49.34526676200003 ], [ -119.540427227999928, 49.344376639000096 ], [ -119.540428958999968, 49.344187616000056 ], [ -119.540436307, 49.343377617000058 ], [ -119.540451669999968, 49.341676298000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999993927516173", "sL_AssetLoss": "79.703794", "sL_BldgLoss": "79.70331", "sL_StrLoss": "79.7", "sL_NStrLoss": "0.00331", "sL_ContLoss": "0.000484", "geom_point": "0101000020E6100000E055C50A6DE25DC0C25003DDC9AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.53743939499995, 49.356976970000048 ], [ -119.538264941999941, 49.35702641200006 ], [ -119.53797747299997, 49.359081077000027 ], [ -119.537897616999928, 49.358989702000059 ], [ -119.537777787999914, 49.35846389000011 ], [ -119.537786163999954, 49.358078840000061 ], [ -119.537789684999936, 49.357915196000071 ], [ -119.537703127999919, 49.357711072000065 ], [ -119.537462609999963, 49.357143803000085 ], [ -119.53743939499995, 49.356976970000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44164000", "BldgCostT": "29170000", "sL_LossRatio": "1", "sL_AssetLoss": "6027", "sL_BldgLoss": "6027", "sL_StrLoss": "6027", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065879DCE3AE45DC08F5C925E2FAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.564556059999987, 49.361426911000116 ], [ -119.564613718999922, 49.361013124000117 ], [ -119.56198350599999, 49.360856241000121 ], [ -119.562483154999896, 49.357271661000013 ], [ -119.562779634999941, 49.357289348000108 ], [ -119.563103053999967, 49.354968669000101 ], [ -119.564038008999958, 49.355024442000087 ], [ -119.564110135999911, 49.35450679100007 ], [ -119.564111925999967, 49.354506897000078 ], [ -119.56456058899991, 49.351286592000044 ], [ -119.564753356999972, 49.351298089000061 ], [ -119.56473018299998, 49.350852600000067 ], [ -119.564956749999951, 49.350847570000028 ], [ -119.565013915999913, 49.350437200000101 ], [ -119.565039138999921, 49.350438705000066 ], [ -119.565084761, 49.350111187000067 ], [ -119.563494259, 49.350016309000047 ], [ -119.563669318999985, 49.348759847000125 ], [ -119.563355235999964, 49.348741108000077 ], [ -119.563402944999922, 49.348398692000039 ], [ -119.562683936999946, 49.348355791000081 ], [ -119.562684678999972, 49.348350468000071 ], [ -119.562371527999943, 49.348331782000088 ], [ -119.562704750999941, 49.345940403000093 ], [ -119.565229139999985, 49.345986221000054 ], [ -119.565187602999984, 49.346843282000073 ], [ -119.565291022999986, 49.346864901000103 ], [ -119.565516006999971, 49.34696410600008 ], [ -119.565721251999889, 49.347088404000047 ], [ -119.566283919999975, 49.347429200000079 ], [ -119.566603385999926, 49.347583806000031 ], [ -119.566794417999986, 49.34760526400003 ], [ -119.566945987999972, 49.347622289000135 ], [ -119.567408424999911, 49.347623660000053 ], [ -119.567508501999953, 49.346805501000063 ], [ -119.567708172999943, 49.346798055000072 ], [ -119.568133098999965, 49.346782196000049 ], [ -119.568935212999946, 49.346802889000045 ], [ -119.569467708999937, 49.346816597000036 ], [ -119.569481454000012, 49.346816930000102 ], [ -119.570114483999973, 49.346832585000087 ], [ -119.570225607999959, 49.344853095000083 ], [ -119.571470812999905, 49.344874883000031 ], [ -119.571423105999941, 49.345912101000046 ], [ -119.571380272999988, 49.346864592000102 ], [ -119.571334305999969, 49.347790800000027 ], [ -119.571490672, 49.347973677000027 ], [ -119.571356603999945, 49.348074394000108 ], [ -119.570725682999949, 49.34812429500009 ], [ -119.570277801999936, 49.348503111000127 ], [ -119.56958330499999, 49.349705102000044 ], [ -119.569507987999927, 49.350286297000068 ], [ -119.569474398999915, 49.35054540000008 ], [ -119.569578399, 49.350957004000044 ], [ -119.569526685999946, 49.351560904000102 ], [ -119.569078092, 49.352173295000071 ], [ -119.568470914000017, 49.352698800000063 ], [ -119.568158768, 49.353373753000042 ], [ -119.568017961999928, 49.353678234000071 ], [ -119.567865593999954, 49.354007687000085 ], [ -119.567843886999952, 49.35433924400008 ], [ -119.567788276999977, 49.355188396000074 ], [ -119.567648864999938, 49.355602404000066 ], [ -119.567644891999933, 49.3556141970002 ], [ -119.567513704999953, 49.355716690000037 ], [ -119.567503714999987, 49.356002244000138 ], [ -119.567387287999949, 49.356015583000072 ], [ -119.566299257999944, 49.356177794000125 ], [ -119.56626133899999, 49.356237069000059 ], [ -119.566252576999958, 49.356320568000108 ], [ -119.566231846999926, 49.356518132000097 ], [ -119.566310782999949, 49.356943006000101 ], [ -119.566376024999968, 49.357121621000026 ], [ -119.566576761999954, 49.357670896000059 ], [ -119.566566025999947, 49.358114826000097 ], [ -119.566594119999976, 49.358290008000019 ], [ -119.566623937999978, 49.358360163000015 ], [ -119.566647007999975, 49.35841438300006 ], [ -119.566669022999918, 49.358466140000054 ], [ -119.566994735999941, 49.358983453000072 ], [ -119.567103068999984, 49.359445310000076 ], [ -119.567426926999985, 49.359893588000062 ], [ -119.567466633999913, 49.359948597000063 ], [ -119.567581881999942, 49.3604750330001 ], [ -119.567694625999962, 49.360990145000073 ], [ -119.567729184999962, 49.361147929000012 ], [ -119.567930815999958, 49.361628108000026 ], [ -119.564556059999987, 49.361426911000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6286417", "BldgCostT": "4071667", "sL_LossRatio": "1", "sL_AssetLoss": "973", "sL_BldgLoss": "973", "sL_StrLoss": "973", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A720E4350E45DC0C3B53DEE99AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.566659048, 49.367409855000076 ], [ -119.56692305299994, 49.365514802000177 ], [ -119.565809743999935, 49.36544843600003 ], [ -119.566309145999952, 49.361863863000032 ], [ -119.568073987999952, 49.361969063000096 ], [ -119.568184516, 49.362232274000057 ], [ -119.568279500999964, 49.362393343000129 ], [ -119.568499612999943, 49.362657662000046 ], [ -119.568783678000031, 49.36313722900006 ], [ -119.569066001999943, 49.363539893000016 ], [ -119.569103209999952, 49.363699315000055 ], [ -119.569012006999969, 49.364586215000017 ], [ -119.569005676999922, 49.364647697000102 ], [ -119.568946945999983, 49.36487100800008 ], [ -119.568796174999932, 49.365110513000026 ], [ -119.567877059999944, 49.36587798500009 ], [ -119.567497759999966, 49.366250321000088 ], [ -119.567368446999978, 49.366377265000061 ], [ -119.567148946999964, 49.366592706000084 ], [ -119.566963501999965, 49.366932235000036 ], [ -119.566812494999937, 49.367419001000052 ], [ -119.566659048, 49.367409855000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8467250", "BldgCostT": "5630000", "sL_LossRatio": "0.940194185716194", "sL_AssetLoss": "923.024018", "sL_BldgLoss": "867.821815", "sL_StrLoss": "847.902575", "sL_NStrLoss": "19.91924", "sL_ContLoss": "55.202203", "geom_point": "0101000020E6100000EB8E831A57E35DC075FF799677AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.555469055999936, 49.341039210000069 ], [ -119.555480091, 49.340960092000053 ], [ -119.554907742999916, 49.340925894000058 ], [ -119.554920806999959, 49.3408322370001 ], [ -119.554630439999983, 49.340814887000107 ], [ -119.554658212999982, 49.340615793000062 ], [ -119.55450075, 49.340606384000047 ], [ -119.554621436000019, 49.339741222000107 ], [ -119.552065785999986, 49.339588475000014 ], [ -119.551983223999954, 49.340180113000017 ], [ -119.54650641799999, 49.339852565000079 ], [ -119.546683114999936, 49.338587407000027 ], [ -119.547155611999955, 49.338547985000034 ], [ -119.550250396999957, 49.338541488000011 ], [ -119.550579007999929, 49.338561102000021 ], [ -119.550737579999961, 49.338591585000046 ], [ -119.552407499999958, 49.338912590000049 ], [ -119.552690277999915, 49.338943003000082 ], [ -119.553203295999964, 49.338998205000024 ], [ -119.553664894999926, 49.339004093000014 ], [ -119.554538177999973, 49.338919796000013 ], [ -119.55504154499998, 49.338926715000127 ], [ -119.555127914999971, 49.338927901000105 ], [ -119.555535015999965, 49.339008301000092 ], [ -119.555825461999945, 49.33910437600008 ], [ -119.5559204199999, 49.339135802000015 ], [ -119.556365087999936, 49.339282884000035 ], [ -119.55664566800003, 49.339330382000099 ], [ -119.557466362999904, 49.339503013000069 ], [ -119.557443960999976, 49.339718027000096 ], [ -119.557443888999927, 49.339718899000054 ], [ -119.55738535899998, 49.341153685000037 ], [ -119.555469055999936, 49.341039210000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37971833", "BldgCostT": "25163333", "sL_LossRatio": "1", "sL_AssetLoss": "4183.9", "sL_BldgLoss": "4183.9", "sL_StrLoss": "4183.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7BA1CE1FAE35DC064FF02620EB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.560451506999982, 49.38138519200006 ], [ -119.560523511999961, 49.380948488000037 ], [ -119.560139876999969, 49.38097439799999 ], [ -119.559485998999946, 49.381203791000111 ], [ -119.559187198999965, 49.381265505000094 ], [ -119.558927789999984, 49.381262708000051 ], [ -119.558613806999958, 49.381186109000133 ], [ -119.558330014999953, 49.38107069100009 ], [ -119.557959397999952, 49.380835286 ], [ -119.557812092999924, 49.380643095000067 ], [ -119.557785482999989, 49.380573345000116 ], [ -119.5577270799999, 49.380420299000079 ], [ -119.55770682, 49.380021499000122 ], [ -119.557617314999931, 49.379840897000122 ], [ -119.557437196999956, 49.379665709000072 ], [ -119.557212690999947, 49.379522103000077 ], [ -119.556994811999971, 49.379419698000071 ], [ -119.556745477999982, 49.379340606000035 ], [ -119.556370310999966, 49.379221583000074 ], [ -119.556058607999944, 49.379029491000054 ], [ -119.555892097999916, 49.378865890000064 ], [ -119.555777598999953, 49.37869648500007 ], [ -119.55567040199999, 49.378177686000122 ], [ -119.555546985999953, 49.37797251400012 ], [ -119.555356406999962, 49.37782380000008 ], [ -119.554595402999965, 49.377514516000112 ], [ -119.554446094999932, 49.377438936000033 ], [ -119.554512831999901, 49.376960935000035 ], [ -119.558761629999978, 49.377214531000028 ], [ -119.558773043999949, 49.377132733000082 ], [ -119.558779123999955, 49.377133096000115 ], [ -119.558821659, 49.376828235000055 ], [ -119.558885263, 49.376832030000038 ], [ -119.558996692999983, 49.376033336000063 ], [ -119.559164833999958, 49.376043368000062 ], [ -119.559233307999989, 49.375552540000072 ], [ -119.559344487999923, 49.37555917400006 ], [ -119.559382115999966, 49.375289442000039 ], [ -119.559796653999953, 49.375314175000064 ], [ -119.559859818999925, 49.374861353000014 ], [ -119.560046228999965, 49.37487247300011 ], [ -119.5600733199999, 49.374678256000081 ], [ -119.560311196999947, 49.374692447000058 ], [ -119.56036462899999, 49.374309362000112 ], [ -119.560519589999956, 49.374318606000116 ], [ -119.56055223299991, 49.3740845660001 ], [ -119.560990342999943, 49.374110700000102 ], [ -119.56135443699999, 49.371499877000126 ], [ -119.56196162699996, 49.37153609500011 ], [ -119.562219598999931, 49.369685892000085 ], [ -119.562814978999953, 49.369721402000053 ], [ -119.562900700999961, 49.36910650500009 ], [ -119.563872303999972, 49.36916444700006 ], [ -119.563905367999965, 49.368927228000061 ], [ -119.564504900999935, 49.368962976000013 ], [ -119.564562658999961, 49.368548542000049 ], [ -119.56593060599999, 49.368630096000132 ], [ -119.565665487999965, 49.368911410000052 ], [ -119.565327436999951, 49.369681886000109 ], [ -119.565329127999973, 49.369868133000075 ], [ -119.565709480999885, 49.3705134040001 ], [ -119.565795062999896, 49.370658528000035 ], [ -119.565812049999948, 49.37072523900008 ], [ -119.571319578999947, 49.368566439000126 ], [ -119.571970395999969, 49.368955396000075 ], [ -119.572082896999959, 49.368967598000104 ], [ -119.571641678999939, 49.368951301000088 ], [ -119.571467071999962, 49.368965295000066 ], [ -119.571362223999955, 49.369004195000066 ], [ -119.570800603, 49.369267096000101 ], [ -119.570484809999925, 49.369421803000186 ], [ -119.568931094999954, 49.370985497000049 ], [ -119.568482502999984, 49.371230711000095 ], [ -119.56733, 49.371718608000073 ], [ -119.566433601999933, 49.372332090000107 ], [ -119.566228883999941, 49.372403000000105 ], [ -119.566057412999939, 49.372424396000056 ], [ -119.565932789999977, 49.37240610500001 ], [ -119.565752389, 49.372333001000115 ], [ -119.565521405999959, 49.371937890000041 ], [ -119.564991085999935, 49.372491800000063 ], [ -119.56484560199999, 49.372712688000107 ], [ -119.56473880599998, 49.373013500000113 ], [ -119.564586311999975, 49.373413803000084 ], [ -119.564380093999958, 49.37382250700005 ], [ -119.564108166, 49.374291041000085 ], [ -119.564042068, 49.374404842000082 ], [ -119.563803690999947, 49.374815510000076 ], [ -119.563477084999988, 49.375374310000076 ], [ -119.563096271999882, 49.375776287000129 ], [ -119.561777283999916, 49.376961803000022 ], [ -119.562178777999989, 49.37707519000007 ], [ -119.56279239899996, 49.377183103000064 ], [ -119.563020397999935, 49.377292494000123 ], [ -119.563378694999969, 49.377100605000109 ], [ -119.563954788999922, 49.376625402000052 ], [ -119.564206407999961, 49.376485803000051 ], [ -119.564564608999916, 49.376394300000058 ], [ -119.56501071699995, 49.376357864000141 ], [ -119.565217285999921, 49.376340994000032 ], [ -119.56539991299999, 49.376279611000086 ], [ -119.565752998999955, 49.376561795000029 ], [ -119.565974387999944, 49.376787286000116 ], [ -119.565062706999981, 49.377162195000011 ], [ -119.564571109999946, 49.37740840500004 ], [ -119.564300806999952, 49.377662496000042 ], [ -119.564128594999957, 49.377935992000104 ], [ -119.564085393999974, 49.378246002000076 ], [ -119.564134889999963, 49.378485691000016 ], [ -119.564256309999934, 49.378655605000048 ], [ -119.564362610999964, 49.378760509000116 ], [ -119.564493108999926, 49.378889304000047 ], [ -119.564768722999943, 49.379276212000086 ], [ -119.564880305, 49.379432802000053 ], [ -119.564916211999972, 49.379621088000093 ], [ -119.56481269399994, 49.379768504000026 ], [ -119.564708405, 49.37984268900005 ], [ -119.563808495999979, 49.380053813000046 ], [ -119.56362536899999, 49.380111595000038 ], [ -119.563577183999911, 49.380126798000099 ], [ -119.562428746999913, 49.380692576000079 ], [ -119.562286403999977, 49.380762708000049 ], [ -119.561375817999945, 49.381208100000073 ], [ -119.561196895999956, 49.38127240000005 ], [ -119.560451506999982, 49.38138519200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.999922365352222", "sL_AssetLoss": "336.1901", "sL_BldgLoss": "336.164", "sL_StrLoss": "336", "sL_NStrLoss": "0.164", "sL_ContLoss": "0.0261", "geom_point": "0101000020E61000005828CA8C14E75DC0D155FCD720B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.612574776999963, 49.445052491000091 ], [ -119.61279395399994, 49.445047536000068 ], [ -119.612777093999952, 49.445072664000108 ], [ -119.612729224999967, 49.44514402700004 ], [ -119.612729074999919, 49.445144242000076 ], [ -119.612594275999953, 49.445232515000043 ], [ -119.61259411199994, 49.445232651000012 ], [ -119.612032053999982, 49.445600782000071 ], [ -119.612031835999943, 49.445600904000067 ], [ -119.612031600999956, 49.445601062000108 ], [ -119.61199090199996, 49.445610280000082 ], [ -119.61099914, 49.446093105000074 ], [ -119.610779542999964, 49.44621370500009 ], [ -119.610322943999947, 49.446464423000116 ], [ -119.610195811999958, 49.44654862900007 ], [ -119.609914045999929, 49.446735278000119 ], [ -119.609641992999983, 49.446996795000096 ], [ -119.609344204999914, 49.447390373000083 ], [ -119.609207120999912, 49.447651868000072 ], [ -119.609202681999989, 49.44766039900005 ], [ -119.609036200999981, 49.447655516000069 ], [ -119.608916424999919, 49.447705111000133 ], [ -119.609068179999952, 49.447565391000097 ], [ -119.609070778999978, 49.447560660000072 ], [ -119.60909934299994, 49.447560016000118 ], [ -119.609096855999937, 49.447513177000076 ], [ -119.609343483999979, 49.447064090000026 ], [ -119.609386740999938, 49.447013747000042 ], [ -119.609484156999955, 49.447011548000098 ], [ -119.60947859799991, 49.446906841000086 ], [ -119.609691154999922, 49.446659468000085 ], [ -119.60979989399999, 49.446532900000079 ], [ -119.610546327999927, 49.446177889000076 ], [ -119.610681520999961, 49.44617483500015 ], [ -119.61067834699999, 49.446115099000096 ], [ -119.611845208999924, 49.445560103000133 ], [ -119.61253811399996, 49.445094395000098 ], [ -119.612574776999963, 49.445052491000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13675334", "BldgCostT": "7693334", "sL_LossRatio": "1", "sL_AssetLoss": "934.8", "sL_BldgLoss": "934.8", "sL_StrLoss": "934.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000185C73473FE55DC04F092D90C5AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.581384285999945, 49.350495605000106 ], [ -119.580836420999916, 49.349239399000112 ], [ -119.580955679999946, 49.349155397000125 ], [ -119.581313898999937, 49.349408914000023 ], [ -119.58151918499999, 49.349142594000078 ], [ -119.582045285000021, 49.348914697000083 ], [ -119.582138104999956, 49.348598507000119 ], [ -119.581918200999908, 49.348323696000094 ], [ -119.581333701999966, 49.347942001000028 ], [ -119.581294727999961, 49.347843723000068 ], [ -119.582142300999976, 49.347894147000055 ], [ -119.582249587999939, 49.347999693000069 ], [ -119.582497806999939, 49.348340690000057 ], [ -119.582614295999974, 49.34859520000002 ], [ -119.582646920999935, 49.348857401000068 ], [ -119.582620204999955, 49.349179308000032 ], [ -119.58243551599999, 49.349931802000107 ], [ -119.582429586, 49.350202070000066 ], [ -119.582425686999983, 49.350380293000043 ], [ -119.582537510999899, 49.350798111000124 ], [ -119.582883321999986, 49.351460190000061 ], [ -119.582915364999934, 49.351554475000079 ], [ -119.582147509, 49.351508803000115 ], [ -119.582134080999978, 49.35143269400011 ], [ -119.581384285999945, 49.350495605000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8251886", "BldgCostT": "4667079", "sL_LossRatio": "0.940895979246347", "sL_AssetLoss": "638.020113", "sL_BldgLoss": "600.310559", "sL_StrLoss": "586.601799", "sL_NStrLoss": "13.70876", "sL_ContLoss": "37.709554", "geom_point": "0101000020E6100000A7C931FE22E55DC08DDD5748EDAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.580199414999939, 49.35662987200002 ], [ -119.581051327999944, 49.356680553000139 ], [ -119.580763712999968, 49.356894802000028 ], [ -119.580546102999932, 49.357198997000104 ], [ -119.580458040999986, 49.357408662000054 ], [ -119.580442815999959, 49.357444903000072 ], [ -119.580446213999963, 49.357569805000068 ], [ -119.580519002999964, 49.357771104000065 ], [ -119.580494406999946, 49.357948586000148 ], [ -119.580408902999935, 49.358056397000098 ], [ -119.58013870399995, 49.358271703000064 ], [ -119.580088387999965, 49.358375311000017 ], [ -119.58011542, 49.358479006000067 ], [ -119.580186810999962, 49.358571797000089 ], [ -119.580783903999986, 49.359015786000086 ], [ -119.581461916999956, 49.359473505000054 ], [ -119.581538908999931, 49.359625404000035 ], [ -119.58157522, 49.359900400000136 ], [ -119.581554711999942, 49.360127804000072 ], [ -119.58149685599993, 49.360321358000078 ], [ -119.580189976000028, 49.360243619000059 ], [ -119.579591896999901, 49.359657506000097 ], [ -119.579520991999942, 49.358858510000097 ], [ -119.578683413999897, 49.358355807000109 ], [ -119.579624915999929, 49.357957006000142 ], [ -119.579739280999917, 49.357477093000035 ], [ -119.579995300999911, 49.357138094000049 ], [ -119.580199414999939, 49.35662987200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97655048", "BldgCostT": "62864670", "sL_LossRatio": "0.967992273037266", "sL_AssetLoss": "6186.00628", "sL_BldgLoss": "5988.00628", "sL_StrLoss": "5916.50628", "sL_NStrLoss": "71.5", "sL_ContLoss": "198", "geom_point": "0101000020E6100000AF4922C135E55DC05C05B508DAB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.581062072999899, 49.372449505000063 ], [ -119.581301656999969, 49.37246375200003 ], [ -119.58128148899999, 49.372578092000047 ], [ -119.581207007999964, 49.372786016000063 ], [ -119.581190027, 49.372799379000064 ], [ -119.58110072, 49.372869721000022 ], [ -119.580947914999982, 49.372990099000084 ], [ -119.580877117999975, 49.373171192000051 ], [ -119.580937298999984, 49.373732205000096 ], [ -119.580914615999973, 49.373933178000065 ], [ -119.580889686999981, 49.374154103000087 ], [ -119.580951587999948, 49.374374598000088 ], [ -119.581199113999929, 49.374631490000112 ], [ -119.581189619999961, 49.374665109000027 ], [ -119.58110400799994, 49.374968304000078 ], [ -119.580899303999971, 49.375257899000054 ], [ -119.580764700999907, 49.375351090000066 ], [ -119.580376891999947, 49.375526815000065 ], [ -119.580315001999949, 49.375654088000083 ], [ -119.580319516999936, 49.375691509 ], [ -119.580337402999973, 49.375840703000108 ], [ -119.580553725999962, 49.376668633000058 ], [ -119.580800006999965, 49.377611106000096 ], [ -119.580843563999963, 49.377849212000065 ], [ -119.580876208999911, 49.378027695000064 ], [ -119.580924329999959, 49.378152604000086 ], [ -119.581036608999952, 49.378443806000149 ], [ -119.581284986999933, 49.378812373000073 ], [ -119.581391057999923, 49.37896978600007 ], [ -119.581407682999952, 49.378994501000072 ], [ -119.581418847999942, 49.379028568000102 ], [ -119.581478508999979, 49.379210983000114 ], [ -119.581447610999987, 49.379304009000059 ], [ -119.581638004999917, 49.379584607000055 ], [ -119.581952644999944, 49.379822133000069 ], [ -119.582972303999952, 49.38059188500003 ], [ -119.583294304, 49.380690499000124 ], [ -119.583213579999949, 49.38076430400011 ], [ -119.58315638299996, 49.380877500000075 ], [ -119.583146600999939, 49.380978128000073 ], [ -119.583123891999918, 49.38121081600007 ], [ -119.583179049999941, 49.381475344000052 ], [ -119.583195197999913, 49.381552906000131 ], [ -119.58325986899996, 49.381690156000083 ], [ -119.583507457999985, 49.382215487000046 ], [ -119.583562303999884, 49.382331887000134 ], [ -119.58352138599993, 49.382556292000061 ], [ -119.583576789999952, 49.382724003000071 ], [ -119.583978194999986, 49.383077710000109 ], [ -119.584307599999988, 49.383282488000091 ], [ -119.584385523999927, 49.383368404000052 ], [ -119.584406300999916, 49.383477195000061 ], [ -119.584376289999938, 49.383712987000152 ], [ -119.58451141799999, 49.384152892000046 ], [ -119.584501680999963, 49.384471295000026 ], [ -119.584614220999967, 49.384735501000058 ], [ -119.584935410999918, 49.385059109000103 ], [ -119.585167599999977, 49.385258111000027 ], [ -119.585452677999911, 49.385612990000048 ], [ -119.585482997999961, 49.385971695000059 ], [ -119.585549210999957, 49.3860822010001 ], [ -119.585715873999959, 49.386243568000054 ], [ -119.586616175999907, 49.387115098000066 ], [ -119.58613670799997, 49.387104700000059 ], [ -119.585343325999958, 49.387165995000032 ], [ -119.58480658299996, 49.38732829800005 ], [ -119.584178596999934, 49.387521394000082 ], [ -119.584371359999963, 49.387749954000093 ], [ -119.584450690999958, 49.387843987000096 ], [ -119.585189508999946, 49.388719893000044 ], [ -119.585196551999942, 49.388824661000051 ], [ -119.585197616999935, 49.388840601000084 ], [ -119.585082455999952, 49.388930208000055 ], [ -119.585073591999901, 49.38893710200005 ], [ -119.584941580999981, 49.388995590000057 ], [ -119.584722148999916, 49.389092798000014 ], [ -119.584683291999966, 49.389110000000102 ], [ -119.584700523, 49.38915530800012 ], [ -119.584855675999933, 49.3891825910001 ], [ -119.585041416, 49.389268603000055 ], [ -119.585051158999988, 49.389276655000053 ], [ -119.58541949399995, 49.389581096000114 ], [ -119.585995295999936, 49.390372126000024 ], [ -119.586240321999952, 49.390708715000059 ], [ -119.586249183999968, 49.390720894000076 ], [ -119.588193209999986, 49.391620600000067 ], [ -119.588467561999948, 49.391817071000041 ], [ -119.587862263999938, 49.392024199000097 ], [ -119.587665094999977, 49.39197279400009 ], [ -119.58542221499998, 49.390978700000105 ], [ -119.585415397999967, 49.39096201100012 ], [ -119.585040782999968, 49.390044892000077 ], [ -119.584868991999898, 49.389624316000059 ], [ -119.584618909999932, 49.389340890000028 ], [ -119.584407606999918, 49.389246894000067 ], [ -119.584574908999969, 49.389019006000041 ], [ -119.584546412999913, 49.38873129100007 ], [ -119.584104482, 49.388432078000079 ], [ -119.583273911999967, 49.387869706000053 ], [ -119.582932013999951, 49.387418200000056 ], [ -119.58280412, 49.386278800000042 ], [ -119.582298607999917, 49.385552509000064 ], [ -119.581803609999923, 49.38532029100007 ], [ -119.581413493999918, 49.385239214000102 ], [ -119.580380906999949, 49.384749207 ], [ -119.580307295, 49.384552891000048 ], [ -119.580173703999918, 49.384196585000055 ], [ -119.579975396999885, 49.384092712000069 ], [ -119.580144106999938, 49.383900393000047 ], [ -119.580058520999941, 49.383568602000025 ], [ -119.580124719999915, 49.383252405000107 ], [ -119.578668762999925, 49.382179262000072 ], [ -119.578489994999984, 49.382047487000065 ], [ -119.578257120999922, 49.381566105000104 ], [ -119.57799417899993, 49.381275597000091 ], [ -119.577458280999963, 49.380869086000068 ], [ -119.577350184999958, 49.380787091000109 ], [ -119.576968196999957, 49.380573313000063 ], [ -119.576497708999966, 49.380309986000086 ], [ -119.575335500999969, 49.379941110000019 ], [ -119.575509290999932, 49.379864204000071 ], [ -119.57663687799996, 49.379804396000019 ], [ -119.577606603999968, 49.379656308000079 ], [ -119.57798071399999, 49.379523367000019 ], [ -119.57847252199997, 49.379348605000125 ], [ -119.578818699999914, 49.379107910000116 ], [ -119.578915319999965, 49.378610901000087 ], [ -119.578575464999943, 49.377598203000041 ], [ -119.578525800999955, 49.377450210000077 ], [ -119.578259005999925, 49.37710410100005 ], [ -119.577681508999973, 49.376874790000024 ], [ -119.577677817999984, 49.376867 ], [ -119.57764855899994, 49.376805298000058 ], [ -119.577686906999972, 49.376529633000118 ], [ -119.577733913999921, 49.376306490000097 ], [ -119.578036003999927, 49.375994602000091 ], [ -119.578319304, 49.375376495000147 ], [ -119.578926423, 49.374309802 ], [ -119.579603604999974, 49.373845488000107 ], [ -119.579827224999946, 49.373545804000081 ], [ -119.579938322999936, 49.373396904000096 ], [ -119.579929153999927, 49.373215803000036 ], [ -119.579911490999905, 49.3728671040001 ], [ -119.580096959999963, 49.372672461000093 ], [ -119.580210114999929, 49.372553699000058 ], [ -119.580267001, 49.372402223000051 ], [ -119.581062072999899, 49.372449505000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63.4", "sL_BldgLoss": "63.4", "sL_StrLoss": "63.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000867BE1A546E75DC07129DF1A75B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.614344832999961, 49.439614646000088 ], [ -119.614673597999953, 49.439607209000066 ], [ -119.614668961999882, 49.439679913000127 ], [ -119.614581889999954, 49.439981133000067 ], [ -119.61442870799999, 49.440244757000137 ], [ -119.61421323699993, 49.440470220000094 ], [ -119.614036122999963, 49.440626869000063 ], [ -119.613491117999985, 49.441071980000075 ], [ -119.613245532999926, 49.441346625000058 ], [ -119.613090670999938, 49.441630941000071 ], [ -119.61301250299995, 49.44187331800007 ], [ -119.61298369299999, 49.44209947300002 ], [ -119.613000160999931, 49.442426053000069 ], [ -119.613092676999926, 49.443456293000082 ], [ -119.613129825999977, 49.443868013000106 ], [ -119.613134745999929, 49.443960268000048 ], [ -119.613047453999954, 49.443962241000051 ], [ -119.612922514999966, 49.441612606000056 ], [ -119.612960013999924, 49.441341598000129 ], [ -119.613679491999932, 49.440709259000101 ], [ -119.613702230999948, 49.440708746000084 ], [ -119.613701239999941, 49.440690143000047 ], [ -119.614262785999969, 49.440196593000039 ], [ -119.614344832999961, 49.439614646000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57667197", "BldgCostT": "35915269", "sL_LossRatio": "0.972058821134506", "sL_AssetLoss": "6188.994059", "sL_BldgLoss": "6016.066269", "sL_StrLoss": "5948.852129", "sL_NStrLoss": "67.21414", "sL_ContLoss": "172.92779", "geom_point": "0101000020E61000000FD66264C7E45DC03F58CEF736AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.57519933899999, 49.347865323000065 ], [ -119.574354424999925, 49.347728304000029 ], [ -119.57328082399998, 49.347752604000036 ], [ -119.572819298999917, 49.347879291000034 ], [ -119.572526191999913, 49.348057307000019 ], [ -119.571956287999953, 49.347943391000065 ], [ -119.57152911799993, 49.347944795000096 ], [ -119.571490672, 49.347973677000027 ], [ -119.571334305999969, 49.347790800000027 ], [ -119.571380272999988, 49.346864592000102 ], [ -119.571423105999941, 49.345912101000046 ], [ -119.571470812999905, 49.344874883000031 ], [ -119.571485427999946, 49.344581175000073 ], [ -119.571518087999934, 49.343870175000063 ], [ -119.57153208199999, 49.343615954000079 ], [ -119.571574023, 49.342853302000037 ], [ -119.571587412999989, 49.342562267000083 ], [ -119.57161909899996, 49.341873811000035 ], [ -119.573014090999948, 49.341899998000073 ], [ -119.574349382999969, 49.341928006000103 ], [ -119.574331327999957, 49.342675831000072 ], [ -119.574325295999969, 49.342925112000046 ], [ -119.575702491999948, 49.342950186000095 ], [ -119.57569201299998, 49.343214300000113 ], [ -119.57566958699995, 49.34363410100012 ], [ -119.575653087999967, 49.343941215000115 ], [ -119.575649743999946, 49.344039724000048 ], [ -119.575643036999963, 49.344236779000028 ], [ -119.57563970899993, 49.344335312000091 ], [ -119.575617091999945, 49.344944797000046 ], [ -119.576175763999956, 49.344955920000118 ], [ -119.577851799000015, 49.344989298 ], [ -119.578451856999948, 49.345093972000072 ], [ -119.578465197999961, 49.345096299000083 ], [ -119.578575499999914, 49.345133290000078 ], [ -119.578644370999967, 49.345156380000098 ], [ -119.578797876999928, 49.345207868000159 ], [ -119.579035674999957, 49.34528762900004 ], [ -119.579233097999946, 49.345353821000074 ], [ -119.579258451999976, 49.345362340000122 ], [ -119.579246882999954, 49.345711691000055 ], [ -119.579448686999967, 49.346418108000094 ], [ -119.579843142999962, 49.347129562000106 ], [ -119.579827186999964, 49.347244427000064 ], [ -119.579843029999935, 49.347547247000087 ], [ -119.579784923999938, 49.347548545000052 ], [ -119.579756622, 49.347752198000073 ], [ -119.5802031099999, 49.347778770000055 ], [ -119.58030149199999, 49.347956202000056 ], [ -119.579861104999964, 49.347974688000114 ], [ -119.579492406999947, 49.347758299000105 ], [ -119.579328761999989, 49.347767694000026 ], [ -119.579245023999988, 49.347772504000055 ], [ -119.579049003999984, 49.347966193000083 ], [ -119.578789389999955, 49.347773915000097 ], [ -119.578316813999976, 49.347685590000069 ], [ -119.577895404999964, 49.347254089000074 ], [ -119.577506803999952, 49.347181511000073 ], [ -119.576853824999915, 49.347181499000058 ], [ -119.57668040199999, 49.347181494000019 ], [ -119.576593454999909, 49.347193801000124 ], [ -119.576298192999985, 49.347235587000114 ], [ -119.576032390999941, 49.347456306000055 ], [ -119.575666811999966, 49.347545999000062 ], [ -119.575528479999889, 49.348592799000087 ], [ -119.575417009999953, 49.348558684000103 ], [ -119.575382394999963, 49.347895008000108 ], [ -119.575355192999922, 49.347890596000042 ], [ -119.57519933899999, 49.347865323000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17847917", "BldgCostT": "11101667", "sL_LossRatio": "1", "sL_AssetLoss": "1870.9", "sL_BldgLoss": "1870.9", "sL_StrLoss": "1870.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1E6DB483AE55DC0A1CD79DF5BAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582201789999928, 49.35181645100009 ], [ -119.58298404199995, 49.351862979000082 ], [ -119.582994994999964, 49.35204788900009 ], [ -119.582759187999983, 49.353049503000065 ], [ -119.582756218999947, 49.35329960600005 ], [ -119.582836879999945, 49.353583610000051 ], [ -119.583026483999944, 49.353858711000093 ], [ -119.583275384999951, 49.354075002000158 ], [ -119.58365839699999, 49.354260407000048 ], [ -119.583971005999942, 49.354356883000079 ], [ -119.583920646999928, 49.354719435000064 ], [ -119.58390338199996, 49.354724112000035 ], [ -119.583411916999964, 49.354931596000057 ], [ -119.582993291, 49.355191295000068 ], [ -119.582612467999979, 49.355487650000079 ], [ -119.581986790999935, 49.355974501000098 ], [ -119.581765096999973, 49.356047315000126 ], [ -119.581444117999979, 49.356152705000056 ], [ -119.581318575999916, 49.356231094000073 ], [ -119.581266733999925, 49.356342892000065 ], [ -119.580214032999933, 49.35628026600002 ], [ -119.58021030799999, 49.356206700000087 ], [ -119.579997477999939, 49.355851996000084 ], [ -119.580179088999941, 49.355119999000117 ], [ -119.580027392999966, 49.354303899000044 ], [ -119.579813085999945, 49.353903709000058 ], [ -119.579614108, 49.353801201000074 ], [ -119.579895208999957, 49.353614584000105 ], [ -119.580490385999951, 49.353439397000088 ], [ -119.580700599999929, 49.353237189 ], [ -119.58177088799999, 49.352879700000059 ], [ -119.58225420299999, 49.352113505000091 ], [ -119.582201789999928, 49.35181645100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "69.1", "sL_BldgLoss": "69.1", "sL_StrLoss": "69.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063D29D2F4FE55DC09597A1968BAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.58390338199996, 49.354724112000035 ], [ -119.583920646999928, 49.354719435000064 ], [ -119.583675237999913, 49.356486136000107 ], [ -119.581266733999925, 49.356342892000065 ], [ -119.581318575999916, 49.356231094000073 ], [ -119.581444117999979, 49.356152705000056 ], [ -119.581765096999973, 49.356047315000126 ], [ -119.581986790999935, 49.355974501000098 ], [ -119.582612467999979, 49.355487650000079 ], [ -119.582993291, 49.355191295000068 ], [ -119.583411916999964, 49.354931596000057 ], [ -119.58390338199996, 49.354724112000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80948583", "BldgCostT": "54858333", "sL_LossRatio": "1", "sL_AssetLoss": "8163", "sL_BldgLoss": "8163", "sL_StrLoss": "8163", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000072F85A86EEE55DC0370EAB2E16B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59089301799996, 49.388810095000075 ], [ -119.589914588999989, 49.388133113000023 ], [ -119.589508988999953, 49.38784242500008 ], [ -119.589193106999915, 49.387615993000082 ], [ -119.589098619999945, 49.387572829000071 ], [ -119.588983916999965, 49.387520401000103 ], [ -119.588815176999944, 49.387516244 ], [ -119.588308989999945, 49.387503817000059 ], [ -119.587323887999943, 49.387482386000045 ], [ -119.58709740700003, 49.387421905000096 ], [ -119.58683281899999, 49.387253212000097 ], [ -119.586616175999907, 49.387115098000066 ], [ -119.585715873999959, 49.386243568000054 ], [ -119.585549210999957, 49.3860822010001 ], [ -119.585482997999961, 49.385971695000059 ], [ -119.585452677999911, 49.385612990000048 ], [ -119.585167599999977, 49.385258111000027 ], [ -119.584935410999918, 49.385059109000103 ], [ -119.584614220999967, 49.384735501000058 ], [ -119.584501680999963, 49.384471295000026 ], [ -119.58451141799999, 49.384152892000046 ], [ -119.584376289999938, 49.383712987000152 ], [ -119.584406300999916, 49.383477195000061 ], [ -119.584385523999927, 49.383368404000052 ], [ -119.584307599999988, 49.383282488000091 ], [ -119.583978194999986, 49.383077710000109 ], [ -119.583576789999952, 49.382724003000071 ], [ -119.58352138599993, 49.382556292000061 ], [ -119.583562303999884, 49.382331887000134 ], [ -119.583507457999985, 49.382215487000046 ], [ -119.58325986899996, 49.381690156000083 ], [ -119.583195197999913, 49.381552906000131 ], [ -119.583179049999941, 49.381475344000052 ], [ -119.583123891999918, 49.38121081600007 ], [ -119.583146600999939, 49.380978128000073 ], [ -119.58315638299996, 49.380877500000075 ], [ -119.583213579999949, 49.38076430400011 ], [ -119.583294304, 49.380690499000124 ], [ -119.582972303999952, 49.38059188500003 ], [ -119.581952644999944, 49.379822133000069 ], [ -119.581638004999917, 49.379584607000055 ], [ -119.581447610999987, 49.379304009000059 ], [ -119.581478508999979, 49.379210983000114 ], [ -119.581418847999942, 49.379028568000102 ], [ -119.581407682999952, 49.378994501000072 ], [ -119.581391057999923, 49.37896978600007 ], [ -119.581284986999933, 49.378812373000073 ], [ -119.581036608999952, 49.378443806000149 ], [ -119.580924329999959, 49.378152604000086 ], [ -119.580876208999911, 49.378027695000064 ], [ -119.580843563999963, 49.377849212000065 ], [ -119.580800006999965, 49.377611106000096 ], [ -119.580553725999962, 49.376668633000058 ], [ -119.580337402999973, 49.375840703000108 ], [ -119.580319516999936, 49.375691509 ], [ -119.580315001999949, 49.375654088000083 ], [ -119.580376891999947, 49.375526815000065 ], [ -119.580764700999907, 49.375351090000066 ], [ -119.580899303999971, 49.375257899000054 ], [ -119.58110400799994, 49.374968304000078 ], [ -119.581189619999961, 49.374665109000027 ], [ -119.581199113999929, 49.374631490000112 ], [ -119.580951587999948, 49.374374598000088 ], [ -119.580889686999981, 49.374154103000087 ], [ -119.580914615999973, 49.373933178000065 ], [ -119.580937298999984, 49.373732205000096 ], [ -119.580877117999975, 49.373171192000051 ], [ -119.580947914999982, 49.372990099000084 ], [ -119.58110072, 49.372869721000022 ], [ -119.581190027, 49.372799379000064 ], [ -119.581207007999964, 49.372786016000063 ], [ -119.58128148899999, 49.372578092000047 ], [ -119.581301656999969, 49.37246375200003 ], [ -119.58330916299991, 49.372583105000039 ], [ -119.583094566999989, 49.374127201000078 ], [ -119.58354375499999, 49.374153901000057 ], [ -119.583508781999953, 49.374405556000042 ], [ -119.58363066899993, 49.374412800000094 ], [ -119.583611231999939, 49.374552657000045 ], [ -119.584572247999944, 49.374609774000071 ], [ -119.584443844999981, 49.375533834000116 ], [ -119.587417219, 49.375710498000032 ], [ -119.587258582999937, 49.376852609000082 ], [ -119.588719251999962, 49.376939366000066 ], [ -119.588441457999963, 49.378939678000101 ], [ -119.593516106999942, 49.379240929000062 ], [ -119.593519632, 49.379241138000054 ], [ -119.593496908999924, 49.379404881000085 ], [ -119.594028526999963, 49.37943642500008 ], [ -119.593861816999933, 49.38063779900007 ], [ -119.59527227199996, 49.380721479000087 ], [ -119.595493017999942, 49.379130322000059 ], [ -119.595523695999987, 49.378909185000062 ], [ -119.597427054999983, 49.379022078000069 ], [ -119.59844255099992, 49.379082296000092 ], [ -119.598437041999929, 49.378977896000052 ], [ -119.59967567399994, 49.378950031000045 ], [ -119.599686547999951, 49.379156050000084 ], [ -119.599990511999962, 49.37917407000004 ], [ -119.601005468999958, 49.379234231000083 ], [ -119.600932703999916, 49.3797591840001 ], [ -119.600992601999934, 49.379762734000046 ], [ -119.600916296999969, 49.380313233000081 ], [ -119.602604688999975, 49.380413291000131 ], [ -119.602107896999954, 49.383997932000042 ], [ -119.601460651, 49.383959578000059 ], [ -119.601308620999987, 49.385056346000027 ], [ -119.600198361999929, 49.384990548000097 ], [ -119.600187014999975, 49.38507239100008 ], [ -119.599978446, 49.38657667300005 ], [ -119.598872584999967, 49.386511123000076 ], [ -119.598830611, 49.386813799000109 ], [ -119.598811555999987, 49.386812669000101 ], [ -119.598800779999976, 49.386890369000064 ], [ -119.600142098, 49.386969874000073 ], [ -119.60010282199994, 49.387253137000116 ], [ -119.600729198999957, 49.387290259000032 ], [ -119.600653746999981, 49.387834477000105 ], [ -119.601384201999949, 49.387818032000034 ], [ -119.601400093999956, 49.388118808000108 ], [ -119.601881892999955, 49.388147355000065 ], [ -119.603745853999939, 49.388257778000074 ], [ -119.603647904999917, 49.388964580000035 ], [ -119.604903563999969, 49.389038948000042 ], [ -119.604848256999958, 49.389438110000057 ], [ -119.605238188999948, 49.389461200000014 ], [ -119.605224272999976, 49.389642520000095 ], [ -119.605170101999988, 49.392064389000033 ], [ -119.604834294999932, 49.392163785000086 ], [ -119.604393309999963, 49.392382340000047 ], [ -119.604381710999959, 49.392388083000078 ], [ -119.604116792999918, 49.392484504000087 ], [ -119.60397729, 49.392512830000051 ], [ -119.6038139, 49.392546008000139 ], [ -119.603223690999968, 49.392566206000026 ], [ -119.602386701999947, 49.392671991000029 ], [ -119.602026611999975, 49.392676888000054 ], [ -119.601607089999987, 49.392612292000102 ], [ -119.600966679999914, 49.392446899000078 ], [ -119.600077017, 49.392065292000034 ], [ -119.600013935999982, 49.392037049000052 ], [ -119.599114854999968, 49.391633866000099 ], [ -119.598365891999961, 49.391297995000087 ], [ -119.598236046999915, 49.39125528400011 ], [ -119.596804774999953, 49.39078445500013 ], [ -119.59635421199998, 49.390636217000036 ], [ -119.595458105999967, 49.390341393000043 ], [ -119.594302420999952, 49.389825604000045 ], [ -119.594002099999955, 49.389749009000099 ], [ -119.59394628599992, 49.389742509000079 ], [ -119.593571246999957, 49.389698908000128 ], [ -119.593288098999921, 49.389665995000072 ], [ -119.59305439399995, 49.389607008000041 ], [ -119.592828305999944, 49.389503186000113 ], [ -119.592545523999945, 49.389323623000067 ], [ -119.592341897, 49.389194298000064 ], [ -119.59226045199992, 49.389165645000084 ], [ -119.592091516999943, 49.389106207000047 ], [ -119.591216109999962, 49.388941302000049 ], [ -119.591022999, 49.388862902000049 ], [ -119.59089301799996, 49.388810095000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "139", "sL_BldgLoss": "139", "sL_StrLoss": "139", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004912C64732E55DC00BBB8333D3AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.581051327999944, 49.356680553000139 ], [ -119.582055783, 49.356740300000062 ], [ -119.581557654999983, 49.360324973000083 ], [ -119.58149685599993, 49.360321358000078 ], [ -119.581554711999942, 49.360127804000072 ], [ -119.58157522, 49.359900400000136 ], [ -119.581538908999931, 49.359625404000035 ], [ -119.581461916999956, 49.359473505000054 ], [ -119.580783903999986, 49.359015786000086 ], [ -119.580186810999962, 49.358571797000089 ], [ -119.58011542, 49.358479006000067 ], [ -119.580088387999965, 49.358375311000017 ], [ -119.58013870399995, 49.358271703000064 ], [ -119.580408902999935, 49.358056397000098 ], [ -119.580494406999946, 49.357948586000148 ], [ -119.580519002999964, 49.357771104000065 ], [ -119.580446213999963, 49.357569805000068 ], [ -119.580442815999959, 49.357444903000072 ], [ -119.580458040999986, 49.357408662000054 ], [ -119.580546102999932, 49.357198997000104 ], [ -119.580763712999968, 49.356894802000028 ], [ -119.581051327999944, 49.356680553000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "0.999979563069425", "sL_AssetLoss": "927.24296", "sL_BldgLoss": "927.22401", "sL_StrLoss": "927.1", "sL_NStrLoss": "0.12401", "sL_ContLoss": "0.01895", "geom_point": "0101000020E610000081E05C89A1E65DC0BC5112AFBEAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.601141282999933, 49.371037491000081 ], [ -119.605514805999945, 49.371296665000031 ], [ -119.605738098999964, 49.371404810000115 ], [ -119.606405890999923, 49.371608225000124 ], [ -119.606430112999959, 49.371615612000063 ], [ -119.606582621999948, 49.371647819000088 ], [ -119.606125778999939, 49.374946966000039 ], [ -119.600644478999982, 49.374622176000074 ], [ -119.601141282999933, 49.371037491000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9980833", "BldgCostT": "6883333", "sL_LossRatio": "0.999999919700188", "sL_AssetLoss": "1347.20115418", "sL_BldgLoss": "1347.201046", "sL_StrLoss": "1347.2", "sL_NStrLoss": "0.001046", "sL_ContLoss": "0.00010818", "geom_point": "0101000020E61000004BEFB83440E65DC08F366D4AA2AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.599159140999944, 49.368182351 ], [ -119.599473107999955, 49.36591719000014 ], [ -119.595330667999946, 49.365671451000011 ], [ -119.595544730999933, 49.364127923000069 ], [ -119.593689416999979, 49.364017810000121 ], [ -119.59418664599994, 49.360433101000119 ], [ -119.596110481999958, 49.360547281000031 ], [ -119.596240154999961, 49.360672910000119 ], [ -119.596382940999931, 49.360811208000094 ], [ -119.5994934499999, 49.36382436300007 ], [ -119.599585876999967, 49.363913905000068 ], [ -119.600019682, 49.364385307000092 ], [ -119.60010211599996, 49.364474911000102 ], [ -119.601253697999979, 49.366002388000055 ], [ -119.601857100999965, 49.366888502000059 ], [ -119.601937112999906, 49.367006005000071 ], [ -119.602793478999942, 49.368263412000026 ], [ -119.602888862999961, 49.368403467000036 ], [ -119.599159140999944, 49.368182351 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158708834", "BldgCostT": "107983334", "sL_LossRatio": "0.99999675693665", "sL_AssetLoss": "17514.3048", "sL_BldgLoss": "17514.248", "sL_StrLoss": "17514", "sL_NStrLoss": "0.248", "sL_ContLoss": "0.0568", "geom_point": "0101000020E610000072A0A07757E65DC064CD860425B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.602473427999968, 49.415080428000074 ], [ -119.602829656999987, 49.412511785000063 ], [ -119.60191566499995, 49.412457666000051 ], [ -119.601682801999914, 49.414136554 ], [ -119.601411507999899, 49.414120488000059 ], [ -119.601375001999912, 49.414383662000027 ], [ -119.600250070999948, 49.414317039000089 ], [ -119.599588690999965, 49.413673496000101 ], [ -119.599205689999962, 49.413457011000062 ], [ -119.598360005999922, 49.413125189000013 ], [ -119.597772105999937, 49.412697889000107 ], [ -119.597765292999952, 49.412536999000075 ], [ -119.597810611999975, 49.412373205000065 ], [ -119.59902770399999, 49.411662491000065 ], [ -119.600205490999898, 49.410735392000035 ], [ -119.600439811999976, 49.410443398000012 ], [ -119.600624919999987, 49.410043198000061 ], [ -119.600660697999928, 49.40966441100008 ], [ -119.600420003999943, 49.408527789000047 ], [ -119.600335097999931, 49.408204487 ], [ -119.599869494999936, 49.407774415000091 ], [ -119.599466705999973, 49.407163507000099 ], [ -119.599190504999967, 49.406917102000136 ], [ -119.59910708699999, 49.406622306000031 ], [ -119.598276797999944, 49.405813299000052 ], [ -119.598268386999976, 49.404869107000081 ], [ -119.598021678999956, 49.404631197000064 ], [ -119.5981887, 49.404393392000088 ], [ -119.597733413999933, 49.404359202000109 ], [ -119.597395311999961, 49.404501587000048 ], [ -119.597172282999907, 49.404470301000096 ], [ -119.59722012, 49.404316503000111 ], [ -119.597580391999941, 49.404084295000054 ], [ -119.597492008999893, 49.403968903000056 ], [ -119.597172101999902, 49.403948988000124 ], [ -119.597205603999967, 49.403786690000125 ], [ -119.597354717999949, 49.403738207000067 ], [ -119.597694485999952, 49.403902009000028 ], [ -119.59812222499994, 49.403900603000075 ], [ -119.598271185999963, 49.40359150900013 ], [ -119.598302098999952, 49.403141493000071 ], [ -119.597270083999916, 49.401338403000111 ], [ -119.596729322999963, 49.400765902000018 ], [ -119.596895006999901, 49.400509488000061 ], [ -119.59686512, 49.400213304000061 ], [ -119.596224388999957, 49.39981451300013 ], [ -119.596214978999953, 49.399372996000075 ], [ -119.596038483999962, 49.39915229700005 ], [ -119.594202503999924, 49.397817809000124 ], [ -119.593814593, 49.397763709000095 ], [ -119.593628003999953, 49.397884693000023 ], [ -119.593501183999948, 49.398121108000026 ], [ -119.593315395999966, 49.397963097000058 ], [ -119.593334984999942, 49.397575701000065 ], [ -119.593126724999976, 49.397508199000086 ], [ -119.592816316999958, 49.397407598000015 ], [ -119.592472615999924, 49.397414702000084 ], [ -119.592251371999978, 49.397551719000035 ], [ -119.592125305999915, 49.397629784000038 ], [ -119.591875157999979, 49.397604083000076 ], [ -119.59195042399989, 49.397062072000018 ], [ -119.590954090999944, 49.397002954000072 ], [ -119.591194674999883, 49.395270637000117 ], [ -119.59120280599997, 49.395275601000073 ], [ -119.59131979199999, 49.395939296000023 ], [ -119.591273314999938, 49.396632789000101 ], [ -119.591602388999917, 49.396840790000134 ], [ -119.591873595999957, 49.396789510000126 ], [ -119.592017592999966, 49.396642791000026 ], [ -119.592229774999936, 49.396196994000057 ], [ -119.592605591999956, 49.395738405000088 ], [ -119.592486304, 49.395318303000074 ], [ -119.592182553999976, 49.394938673000127 ], [ -119.591630493, 49.394248699000045 ], [ -119.591403587999949, 49.394110603000044 ], [ -119.59099185099997, 49.393662649000078 ], [ -119.590730688999955, 49.39337849700005 ], [ -119.590270585999988, 49.393029600000055 ], [ -119.589889596999967, 49.392875792000098 ], [ -119.589291815999971, 49.392763305000045 ], [ -119.58877195299999, 49.39247534500003 ], [ -119.588042206999944, 49.392071108000046 ], [ -119.587862263999938, 49.392024199000097 ], [ -119.588467561999948, 49.391817071000041 ], [ -119.588193209999986, 49.391620600000067 ], [ -119.586249183999968, 49.390720894000076 ], [ -119.586240321999952, 49.390708715000059 ], [ -119.585995295999936, 49.390372126000024 ], [ -119.58541949399995, 49.389581096000114 ], [ -119.585051158999988, 49.389276655000053 ], [ -119.585041416, 49.389268603000055 ], [ -119.584855675999933, 49.3891825910001 ], [ -119.584700523, 49.38915530800012 ], [ -119.584683291999966, 49.389110000000102 ], [ -119.584722148999916, 49.389092798000014 ], [ -119.584941580999981, 49.388995590000057 ], [ -119.585073591999901, 49.38893710200005 ], [ -119.585082455999952, 49.388930208000055 ], [ -119.585197616999935, 49.388840601000084 ], [ -119.585196551999942, 49.388824661000051 ], [ -119.585189508999946, 49.388719893000044 ], [ -119.584450690999958, 49.387843987000096 ], [ -119.584371359999963, 49.387749954000093 ], [ -119.584178596999934, 49.387521394000082 ], [ -119.58480658299996, 49.38732829800005 ], [ -119.585343325999958, 49.387165995000032 ], [ -119.58613670799997, 49.387104700000059 ], [ -119.586616175999907, 49.387115098000066 ], [ -119.58683281899999, 49.387253212000097 ], [ -119.58709740700003, 49.387421905000096 ], [ -119.587323887999943, 49.387482386000045 ], [ -119.588308989999945, 49.387503817000059 ], [ -119.588815176999944, 49.387516244 ], [ -119.588983916999965, 49.387520401000103 ], [ -119.589098619999945, 49.387572829000071 ], [ -119.589193106999915, 49.387615993000082 ], [ -119.589508988999953, 49.38784242500008 ], [ -119.589914588999989, 49.388133113000023 ], [ -119.59089301799996, 49.388810095000075 ], [ -119.591022999, 49.388862902000049 ], [ -119.591216109999962, 49.388941302000049 ], [ -119.592091516999943, 49.389106207000047 ], [ -119.59226045199992, 49.389165645000084 ], [ -119.592341897, 49.389194298000064 ], [ -119.592545523999945, 49.389323623000067 ], [ -119.592828305999944, 49.389503186000113 ], [ -119.59305439399995, 49.389607008000041 ], [ -119.593288098999921, 49.389665995000072 ], [ -119.593571246999957, 49.389698908000128 ], [ -119.59394628599992, 49.389742509000079 ], [ -119.594002099999955, 49.389749009000099 ], [ -119.594302420999952, 49.389825604000045 ], [ -119.595458105999967, 49.390341393000043 ], [ -119.59635421199998, 49.390636217000036 ], [ -119.596804774999953, 49.39078445500013 ], [ -119.598236046999915, 49.39125528400011 ], [ -119.598365891999961, 49.391297995000087 ], [ -119.599114854999968, 49.391633866000099 ], [ -119.600013935999982, 49.392037049000052 ], [ -119.600077017, 49.392065292000034 ], [ -119.600966679999914, 49.392446899000078 ], [ -119.601607089999987, 49.392612292000102 ], [ -119.602026611999975, 49.392676888000054 ], [ -119.602386701999947, 49.392671991000029 ], [ -119.603223690999968, 49.392566206000026 ], [ -119.6038139, 49.392546008000139 ], [ -119.60397729, 49.392512830000051 ], [ -119.604116792999918, 49.392484504000087 ], [ -119.604381710999959, 49.392388083000078 ], [ -119.604393309999963, 49.392382340000047 ], [ -119.604834294999932, 49.392163785000086 ], [ -119.605170101999988, 49.392064389000033 ], [ -119.60594148, 49.393125125000047 ], [ -119.605974096999944, 49.397783198000099 ], [ -119.605975342999955, 49.398028640000099 ], [ -119.605981276999955, 49.399197750000077 ], [ -119.605982857999919, 49.399512551000079 ], [ -119.605985330999886, 49.399998108000034 ], [ -119.605987569999954, 49.40043899800007 ], [ -119.605988100999966, 49.400545114000032 ], [ -119.605994739999971, 49.402288075000094 ], [ -119.606014580999968, 49.407517102000078 ], [ -119.60602575899999, 49.411026612000072 ], [ -119.606028398999939, 49.411856390000011 ], [ -119.605979767999926, 49.412391514000049 ], [ -119.605927328999954, 49.412968334000077 ], [ -119.605952873999982, 49.415286381 ], [ -119.605378232999968, 49.415252375000087 ], [ -119.603869064999969, 49.415163052000032 ], [ -119.602473427999968, 49.415080428000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105961167", "BldgCostT": "73076667", "sL_LossRatio": "0.999998775389915", "sL_AssetLoss": "11999.1662493", "sL_BldgLoss": "11999.151555", "sL_StrLoss": "11999.000205", "sL_NStrLoss": "0.15135", "sL_ContLoss": "0.0146943", "geom_point": "0101000020E6100000EE9F3C66FFE85DC0191C46BD37C14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.636930180999983, 49.51744466500007 ], [ -119.636556884999933, 49.508079139000124 ], [ -119.635528321, 49.508080973000119 ], [ -119.635521587999946, 49.507955732000013 ], [ -119.635107636999948, 49.507965167000066 ], [ -119.63502071, 49.506347813000104 ], [ -119.635848580999948, 49.506328942000088 ], [ -119.635819597999898, 49.505789824000061 ], [ -119.634991734999986, 49.50580869500002 ], [ -119.634962762999976, 49.505269577000028 ], [ -119.634548833999972, 49.505279010000066 ], [ -119.634526997999913, 49.504872604000106 ], [ -119.634179116999988, 49.507388239000115 ], [ -119.634030472999953, 49.507379501000109 ], [ -119.634027506999971, 49.506104782000037 ], [ -119.634015109999908, 49.500792720000049 ], [ -119.635890315, 49.500902961000115 ], [ -119.635699397999957, 49.502284003000021 ], [ -119.636831050999973, 49.502258198000106 ], [ -119.637286832999933, 49.50224780200007 ], [ -119.637330326999916, 49.503056478000069 ], [ -119.638985955999971, 49.503018698000098 ], [ -119.638971447999921, 49.502749139000066 ], [ -119.639385351999948, 49.50273969000007 ], [ -119.639327316999982, 49.501661457000033 ], [ -119.640982894999922, 49.501623649000059 ], [ -119.64104096799997, 49.502701880000082 ], [ -119.641454870999922, 49.502692425000092 ], [ -119.641469392999937, 49.502961983000056 ], [ -119.642297201999966, 49.502943066000022 ], [ -119.642311727999981, 49.503212623000131 ], [ -119.643553448999967, 49.503184236000074 ], [ -119.64356798199999, 49.503453794000031 ], [ -119.643981890999925, 49.503444328000086 ], [ -119.643996425999916, 49.503713886000092 ], [ -119.644410337999915, 49.50370441900008 ], [ -119.644453950999932, 49.504513091000028 ], [ -119.644040033999929, 49.504522558000126 ], [ -119.644062687999977, 49.504942696000079 ], [ -119.646240118999955, 49.505070486000115 ], [ -119.6458343, 49.50801050000009 ], [ -119.645745374999976, 49.508654669000045 ], [ -119.645116295999941, 49.508617755000031 ], [ -119.644979782999954, 49.509606520000112 ], [ -119.645376846999952, 49.509629820000015 ], [ -119.645242158999977, 49.510605390000102 ], [ -119.646544273999965, 49.510681791000131 ], [ -119.646487666, 49.511091885000063 ], [ -119.646471213, 49.511211078000073 ], [ -119.646968994999924, 49.511240281000049 ], [ -119.646474239999989, 49.514824435000065 ], [ -119.645549807999913, 49.51477020100004 ], [ -119.645360963999934, 49.514759121000097 ], [ -119.64502023599999, 49.517226688000115 ], [ -119.644335849999962, 49.517245154000122 ], [ -119.636930180999983, 49.51744466500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174320500", "BldgCostT": "119515000", "sL_LossRatio": "0.994349124644372", "sL_AssetLoss": "19996.901876", "sL_BldgLoss": "19883.901876", "sL_StrLoss": "19843.001876", "sL_NStrLoss": "40.9", "sL_ContLoss": "113", "geom_point": "0101000020E610000022FD723DFCE75DC0576B389728C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.620691729999947, 49.513852171000018 ], [ -119.620714801999952, 49.513685719000058 ], [ -119.617596086999981, 49.513501972 ], [ -119.617519362999957, 49.512424696000032 ], [ -119.617502896999937, 49.512193208000021 ], [ -119.617387904999973, 49.510578209000116 ], [ -119.61730461, 49.509949995000042 ], [ -119.617066011999924, 49.509122910000087 ], [ -119.616839964999912, 49.508636048000106 ], [ -119.620214998999984, 49.508531746000095 ], [ -119.620222634999934, 49.507154359000076 ], [ -119.620261826, 49.500073505000081 ], [ -119.620286880999956, 49.49554200300004 ], [ -119.620242500999936, 49.492827432000077 ], [ -119.620337883999952, 49.492558549000087 ], [ -119.620289906, 49.491720291000064 ], [ -119.620302610999929, 49.491218809000024 ], [ -119.620306249999942, 49.490301690000095 ], [ -119.620488295999962, 49.490295291000059 ], [ -119.624173981999945, 49.490165072000096 ], [ -119.624862831999934, 49.490140720000042 ], [ -119.630816605999954, 49.490289703000066 ], [ -119.630843444, 49.49604665500005 ], [ -119.630850011999925, 49.498770198000088 ], [ -119.631503960999964, 49.498764512000072 ], [ -119.632513685999967, 49.49873549200008 ], [ -119.632548727999946, 49.500019107000085 ], [ -119.630768830999926, 49.499971501000047 ], [ -119.630514590999894, 49.503532785000132 ], [ -119.630519502999945, 49.503558700000063 ], [ -119.630563176, 49.503790624000089 ], [ -119.630607172999959, 49.50402409600013 ], [ -119.630647986999989, 49.504240700000047 ], [ -119.630892920999941, 49.505036122000021 ], [ -119.630994984999973, 49.505367692000029 ], [ -119.631006481999961, 49.505585195000059 ], [ -119.63086310099996, 49.505990510000039 ], [ -119.630706583999952, 49.50622060000012 ], [ -119.63051259300002, 49.506400695000096 ], [ -119.629402617999986, 49.507193596000079 ], [ -119.628588799999989, 49.507778022000132 ], [ -119.627394816999967, 49.508635423000072 ], [ -119.627118003999911, 49.508834187000026 ], [ -119.626734188999961, 49.508924493000102 ], [ -119.625191031999947, 49.509201558000072 ], [ -119.625118959999952, 49.509214501000045 ], [ -119.624974617999925, 49.509240416000075 ], [ -119.624796994999912, 49.509272294000041 ], [ -119.624574433999953, 49.509312252 ], [ -119.624449406999958, 49.509334688000116 ], [ -119.624449398999943, 49.509334861000042 ], [ -119.624519506999931, 49.509642707000054 ], [ -119.624578577999969, 49.509902388000135 ], [ -119.624532884999965, 49.510226008000103 ], [ -119.624494163999913, 49.510500051000037 ], [ -119.624438500999986, 49.510894093000068 ], [ -119.624485812999936, 49.512122705000095 ], [ -119.624467945999982, 49.512392802000115 ], [ -119.62432364799993, 49.51396629000007 ], [ -119.624254642, 49.514381911000029 ], [ -119.623690159999967, 49.514375104000116 ], [ -119.620372956999958, 49.514309028000042 ], [ -119.620438354, 49.513837246000094 ], [ -119.620691729999947, 49.513852171000018 ] ], [ [ -119.62293226599995, 49.513100026000082 ], [ -119.623071393999965, 49.512095896000083 ], [ -119.622468701999978, 49.512060406000082 ], [ -119.622370208999897, 49.512771195000049 ], [ -119.621848648999944, 49.512740480000112 ], [ -119.621785410999919, 49.513196799000063 ], [ -119.622541732999949, 49.513241339000047 ], [ -119.622534653999963, 49.513109044000053 ], [ -119.62293226599995, 49.513100026000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999993586990823", "sL_AssetLoss": "75.003791", "sL_BldgLoss": "75.00331", "sL_StrLoss": "75", "sL_NStrLoss": "0.00331", "sL_ContLoss": "0.000481", "geom_point": "0101000020E6100000007280687FE75DC0C244AC936DC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.616686158999968, 49.508639664000079 ], [ -119.616839964999912, 49.508636048000106 ], [ -119.617066011999924, 49.509122910000087 ], [ -119.61730461, 49.509949995000042 ], [ -119.617387904999973, 49.510578209000116 ], [ -119.617502896999937, 49.512193208000021 ], [ -119.617519362999957, 49.512424696000032 ], [ -119.617596086999981, 49.513501972 ], [ -119.61702285699999, 49.513468188000026 ], [ -119.617069353999938, 49.512444223000038 ], [ -119.617080299999941, 49.512203193000055 ], [ -119.61684038199995, 49.50977919600011 ], [ -119.616484609999986, 49.508644454000084 ], [ -119.616686158999968, 49.508639664000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23448917", "BldgCostT": "16171667", "sL_LossRatio": "1", "sL_AssetLoss": "2690", "sL_BldgLoss": "2690", "sL_StrLoss": "2690", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9392F04EFE75DC0C79CCA1607C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.617950305999969, 49.524098196000132 ], [ -119.618050360999945, 49.523376826000124 ], [ -119.617977587, 49.523372538000118 ], [ -119.617942952999925, 49.523370497 ], [ -119.618002997999952, 49.52293759400002 ], [ -119.617938581999937, 49.522933798000103 ], [ -119.618019200999981, 49.522352547000068 ], [ -119.617632515999944, 49.522329765000087 ], [ -119.617367493999922, 49.522253802000073 ], [ -119.617328910999944, 49.5220658000001 ], [ -119.617641522999975, 49.521960403000072 ], [ -119.617665608999985, 49.521887799000048 ], [ -119.617647292999948, 49.521024691000044 ], [ -119.617449020999928, 49.5183472000001 ], [ -119.617299119999927, 49.516309201000077 ], [ -119.617223194999966, 49.516193800000018 ], [ -119.617317283999967, 49.515876208000108 ], [ -119.617228592999965, 49.514726915000054 ], [ -119.617226048999967, 49.514642426000165 ], [ -119.617663835999949, 49.514668227000115 ], [ -119.618434058999952, 49.514713614000058 ], [ -119.619270364999949, 49.514762888000071 ], [ -119.61933615599996, 49.514288355000168 ], [ -119.619675893999954, 49.514295130000072 ], [ -119.620369220999919, 49.514335974000069 ], [ -119.620372956999958, 49.514309028000042 ], [ -119.623690159999967, 49.514375104000116 ], [ -119.624254642, 49.514381911000029 ], [ -119.62432364799993, 49.51396629000007 ], [ -119.624467945999982, 49.512392802000115 ], [ -119.624485812999936, 49.512122705000095 ], [ -119.624438500999986, 49.510894093000068 ], [ -119.624494163999913, 49.510500051000037 ], [ -119.624532884999965, 49.510226008000103 ], [ -119.624578577999969, 49.509902388000135 ], [ -119.624519506999931, 49.509642707000054 ], [ -119.624449398999943, 49.509334861000042 ], [ -119.624449406999958, 49.509334688000116 ], [ -119.624574433999953, 49.509312252 ], [ -119.624796994999912, 49.509272294000041 ], [ -119.624974617999925, 49.509240416000075 ], [ -119.625118959999952, 49.509214501000045 ], [ -119.625191031999947, 49.509201558000072 ], [ -119.626734188999961, 49.508924493000102 ], [ -119.627118003999911, 49.508834187000026 ], [ -119.627394816999967, 49.508635423000072 ], [ -119.628588799999989, 49.507778022000132 ], [ -119.629402617999986, 49.507193596000079 ], [ -119.63051259300002, 49.506400695000096 ], [ -119.630706583999952, 49.50622060000012 ], [ -119.63086310099996, 49.505990510000039 ], [ -119.631006481999961, 49.505585195000059 ], [ -119.630994984999973, 49.505367692000029 ], [ -119.630892920999941, 49.505036122000021 ], [ -119.630647986999989, 49.504240700000047 ], [ -119.630607172999959, 49.50402409600013 ], [ -119.630563176, 49.503790624000089 ], [ -119.630519502999945, 49.503558700000063 ], [ -119.630514590999894, 49.503532785000132 ], [ -119.631195436999974, 49.506113241000079 ], [ -119.631802357999945, 49.506133007000095 ], [ -119.63274380199999, 49.506163666000127 ], [ -119.632929313999981, 49.508421569000092 ], [ -119.631425095999973, 49.508386680000079 ], [ -119.631416549999983, 49.510238571000102 ], [ -119.631274437999977, 49.510230213000057 ], [ -119.631162386999975, 49.511039998000022 ], [ -119.630862588999932, 49.511022366000113 ], [ -119.630641750999956, 49.51261820600012 ], [ -119.629764580999961, 49.512566614000029 ], [ -119.629695733999938, 49.513064027000041 ], [ -119.62956203, 49.51305616100008 ], [ -119.629462311999973, 49.513776584000013 ], [ -119.626071301999971, 49.513739402000034 ], [ -119.626033901999918, 49.514437515000111 ], [ -119.625944332999964, 49.516614741000126 ], [ -119.62672902199995, 49.517605865000043 ], [ -119.626726056999956, 49.517627282000092 ], [ -119.62672508699994, 49.517627224000108 ], [ -119.626690068999977, 49.517880082000069 ], [ -119.626601765999936, 49.517874886000122 ], [ -119.626573873999945, 49.518076284000109 ], [ -119.62643628699999, 49.518068187000047 ], [ -119.626408876999974, 49.518266088000097 ], [ -119.626309111999944, 49.518260217000048 ], [ -119.626275084999961, 49.518505890000128 ], [ -119.62613937899998, 49.518497904000078 ], [ -119.62620770299999, 49.519772886000112 ], [ -119.62579365199997, 49.519782290000123 ], [ -119.625808093999979, 49.520051849000041 ], [ -119.62547267799998, 49.520059467000074 ], [ -119.625258309999978, 49.521606904000123 ], [ -119.62467548599993, 49.521572603000088 ], [ -119.624512366, 49.522749921000063 ], [ -119.622562063999979, 49.522787751000088 ], [ -119.622465085999949, 49.522773937000053 ], [ -119.622378447999964, 49.523220729000116 ], [ -119.622241235999951, 49.523466170000169 ], [ -119.621203237999978, 49.524289792000076 ], [ -119.617950305999969, 49.524098196000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053334", "BldgCostT": "6933334", "sL_LossRatio": "0.999987717342327", "sL_AssetLoss": "1214.72082", "sL_BldgLoss": "1214.7059", "sL_StrLoss": "1214.6", "sL_NStrLoss": "0.1059", "sL_ContLoss": "0.01492", "geom_point": "0101000020E61000007BE0C6DA9DEF5DC0D8CC291ACED94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.742576102999934, 49.704306208000084 ], [ -119.742399497999926, 49.703878990000128 ], [ -119.742369987999936, 49.703592697000062 ], [ -119.742670894999947, 49.703018690000128 ], [ -119.74269540099999, 49.702748093000075 ], [ -119.742317615, 49.702171308000111 ], [ -119.741551098999963, 49.701866512000016 ], [ -119.741879578999942, 49.701543291000071 ], [ -119.740139794999948, 49.700442300000056 ], [ -119.74001491199999, 49.699725995000065 ], [ -119.739660480999973, 49.69934709700005 ], [ -119.738217621999965, 49.698460634000085 ], [ -119.738366956999982, 49.697367579000115 ], [ -119.74168368299992, 49.697558458000074 ], [ -119.743887708999949, 49.697685245000073 ], [ -119.743828505999886, 49.698118971000028 ], [ -119.744283425999981, 49.698145135000047 ], [ -119.744269154, 49.698249697000115 ], [ -119.747392034999962, 49.69842925000011 ], [ -119.746903095999954, 49.702012896000042 ], [ -119.746225648999953, 49.701973953000042 ], [ -119.745708823999976, 49.701944241000014 ], [ -119.745528036999957, 49.703268915000116 ], [ -119.746677278999954, 49.70333498100009 ], [ -119.746641027999928, 49.7036006370001 ], [ -119.747024386999911, 49.703622672000094 ], [ -119.746987015999977, 49.703896549000035 ], [ -119.74734569499999, 49.703917164000082 ], [ -119.747320696000017, 49.704100370000063 ], [ -119.747498001999972, 49.704110560000096 ], [ -119.747445472999942, 49.704495554000133 ], [ -119.747955211999937, 49.704524848000091 ], [ -119.747466252999985, 49.708108465000073 ], [ -119.747214528, 49.708094 ], [ -119.747143500999968, 49.70806758700008 ], [ -119.746828691999937, 49.707660203000053 ], [ -119.7454548799999, 49.70688399400008 ], [ -119.744791898999907, 49.706224594000048 ], [ -119.74463819099999, 49.705939806000032 ], [ -119.74431691800001, 49.70591130300005 ], [ -119.74434242199996, 49.70563220500005 ], [ -119.743940996, 49.705408605000031 ], [ -119.743771517999974, 49.705106595000053 ], [ -119.742888903999969, 49.704677895000025 ], [ -119.742576102999934, 49.704306208000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10055000", "BldgCostT": "6725000", "sL_LossRatio": "0.956621847477163", "sL_AssetLoss": "1129.600897", "sL_BldgLoss": "1080.600897", "sL_StrLoss": "1062.900897", "sL_NStrLoss": "17.7", "sL_ContLoss": "49", "geom_point": "0101000020E6100000B84AE272DDEE5DC0FFC51ACB47D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.727695696999916, 49.688024699000053 ], [ -119.727798698999919, 49.68737379300012 ], [ -119.72755222, 49.686939405000011 ], [ -119.727322613999959, 49.686828294000101 ], [ -119.726723328999981, 49.686785085000047 ], [ -119.726745537999975, 49.686622781000061 ], [ -119.72877976800001, 49.686740112000066 ], [ -119.732264919999977, 49.686941040000136 ], [ -119.732234331999976, 49.687164758000094 ], [ -119.732410059999964, 49.687174886000044 ], [ -119.73596541699996, 49.687379739000072 ], [ -119.735929501, 49.68764258699999 ], [ -119.735853066999979, 49.688201953000075 ], [ -119.736415156999939, 49.688234328000057 ], [ -119.736403400999947, 49.688320367000088 ], [ -119.737110840999989, 49.688361111000042 ], [ -119.736971850999964, 49.689378453000096 ], [ -119.736959159999927, 49.689471338 ], [ -119.736621207999988, 49.691944761000052 ], [ -119.736171787999965, 49.69191887800006 ], [ -119.736070962999989, 49.692656695000068 ], [ -119.736035134999938, 49.692918871000131 ], [ -119.734816271999989, 49.692848665000056 ], [ -119.734811483999934, 49.692883700000024 ], [ -119.731092824999962, 49.692669423000019 ], [ -119.731021092999981, 49.692426906000044 ], [ -119.730963415999938, 49.692409024000078 ], [ -119.730667291999936, 49.692317209000109 ], [ -119.730047196000015, 49.691622188000075 ], [ -119.729402088999947, 49.691492589000077 ], [ -119.729312007999951, 49.691387198000086 ], [ -119.728587611999956, 49.691089598000126 ], [ -119.728477498999965, 49.690830397000106 ], [ -119.727940899999936, 49.690682187000085 ], [ -119.727839302999911, 49.690360389000041 ], [ -119.727378024999894, 49.690047003000089 ], [ -119.72747558399999, 49.689793504000129 ], [ -119.7269911899999, 49.689327788000107 ], [ -119.727256908999905, 49.689087099000119 ], [ -119.727319792999978, 49.688752414000085 ], [ -119.727695696999916, 49.688024699000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "463", "sL_BldgLoss": "463", "sL_StrLoss": "463", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF518450B5E95DC0F8517025F9C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.651577915999894, 49.56392468800005 ], [ -119.650485497999981, 49.563019019000052 ], [ -119.650023708999967, 49.562599972000072 ], [ -119.649213458999952, 49.5615350630001 ], [ -119.648744314999959, 49.560963811000136 ], [ -119.64847555599998, 49.560540106000104 ], [ -119.647673085999912, 49.559636303000062 ], [ -119.647432215, 49.559305268000045 ], [ -119.651577371999934, 49.559548067000065 ], [ -119.651552052999961, 49.559731432000071 ], [ -119.651697779999921, 49.559739965000148 ], [ -119.651669205999923, 49.559946908000093 ], [ -119.651864787999926, 49.559958360000081 ], [ -119.651846605999978, 49.560090037000094 ], [ -119.651935793999883, 49.560095258000025 ], [ -119.651908356999954, 49.560293971000057 ], [ -119.65212840199996, 49.560306854000061 ], [ -119.652025394999967, 49.561052879000016 ], [ -119.652540636999944, 49.56108304400005 ], [ -119.652516200999955, 49.561260035000025 ], [ -119.652921036999913, 49.561283734000092 ], [ -119.652808216999929, 49.562100912000119 ], [ -119.653442173999906, 49.562138022000084 ], [ -119.653440281999963, 49.562151726000067 ], [ -119.653699766999949, 49.56216691500007 ], [ -119.653665045999958, 49.562418437000112 ], [ -119.653818379999919, 49.562427413000094 ], [ -119.653685077999924, 49.56339305300007 ], [ -119.654328326000012, 49.563430700000076 ], [ -119.654313341999952, 49.563539264000035 ], [ -119.655191906999931, 49.563590677000029 ], [ -119.654920119999957, 49.565559838000141 ], [ -119.654727390999966, 49.565717789000132 ], [ -119.654282011999953, 49.565946426000082 ], [ -119.653601131999949, 49.565533675000054 ], [ -119.653148565, 49.565302753000012 ], [ -119.652375352999982, 49.564721006000106 ], [ -119.652000114999936, 49.56438053800008 ], [ -119.651577915999894, 49.56392468800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999993821954722", "sL_AssetLoss": "78.503795", "sL_BldgLoss": "78.50331", "sL_StrLoss": "78.5", "sL_NStrLoss": "0.00331", "sL_ContLoss": "0.000485", "geom_point": "0101000020E6100000C1E7C1BC4BF05DC0610F58FF08DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.751945590999966, 49.711456196000078 ], [ -119.752035941999949, 49.710793632000048 ], [ -119.753957524999961, 49.710903956000088 ], [ -119.757558400999983, 49.71111060000004 ], [ -119.757491033999955, 49.711605064000025 ], [ -119.754471136999953, 49.711427274000073 ], [ -119.751945590999966, 49.711456196000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "231", "sL_BldgLoss": "231", "sL_StrLoss": "231", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000456A568D10E85DC08E9E537702C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.625263854999929, 49.537499394000086 ], [ -119.62750793699999, 49.53763138700004 ], [ -119.627548243999982, 49.537674656000014 ], [ -119.627583976, 49.537700036000061 ], [ -119.62709625199993, 49.541220306000113 ], [ -119.62705834799999, 49.54121807700006 ], [ -119.626599058999901, 49.54119106600006 ], [ -119.625992888999988, 49.540617595000057 ], [ -119.625339111999935, 49.54050650500006 ], [ -119.624356590999923, 49.539989511000051 ], [ -119.624388891999956, 49.539800109000048 ], [ -119.624220800999964, 49.539525189000116 ], [ -119.624145086999974, 49.539139209000055 ], [ -119.624582114999939, 49.538778907000065 ], [ -119.624770792999939, 49.538432799000113 ], [ -119.62473608099999, 49.537468344000096 ], [ -119.625263854999929, 49.537499394000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999984294061213", "sL_AssetLoss": "83.40794", "sL_BldgLoss": "83.40663", "sL_StrLoss": "83.4", "sL_NStrLoss": "0.00663", "sL_ContLoss": "0.00131", "geom_point": "0101000020E610000061502A0A49EA5DC0B485102514C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.657745487999961, 49.563794166000108 ], [ -119.657835894999948, 49.563138848000065 ], [ -119.660025004, 49.563266870000056 ], [ -119.660076411999952, 49.562894099000061 ], [ -119.660351559999953, 49.56291018600006 ], [ -119.660368505999912, 49.562787305000043 ], [ -119.66227528499999, 49.562898775000065 ], [ -119.66235674799999, 49.562307850000089 ], [ -119.663524770999942, 49.562376115000056 ], [ -119.663269724999978, 49.563066005000074 ], [ -119.662154387999962, 49.563162797000103 ], [ -119.66137909299999, 49.563423414000027 ], [ -119.660845746999925, 49.563362632000043 ], [ -119.660266980999921, 49.56329669300009 ], [ -119.659875129999989, 49.563320952000083 ], [ -119.659576776999927, 49.563339392000053 ], [ -119.659106789999953, 49.563592902000018 ], [ -119.657714281999972, 49.56394039700011 ], [ -119.657353499999914, 49.563903408000073 ], [ -119.657244399999968, 49.56376485500008 ], [ -119.657745487999961, 49.563794166000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19514583", "BldgCostT": "13458333", "sL_LossRatio": "0.999988614785294", "sL_AssetLoss": "2380.2801", "sL_BldgLoss": "2380.253", "sL_StrLoss": "2380", "sL_NStrLoss": "0.253", "sL_ContLoss": "0.0271", "geom_point": "0101000020E61000003D1CB0EDA5ED5DC0B4D173EA4ED64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.717144234000017, 49.681674218000062 ], [ -119.717165418999926, 49.681519616000038 ], [ -119.716982176999963, 49.6815090280001 ], [ -119.716747087, 49.681157110000051 ], [ -119.716268000999904, 49.680764005000114 ], [ -119.715854784000015, 49.680584592000095 ], [ -119.715539591999956, 49.6806273 ], [ -119.715616695, 49.680536198000077 ], [ -119.715447389999909, 49.680476294000087 ], [ -119.715534998999942, 49.680312586000163 ], [ -119.715471506999947, 49.6801615890001 ], [ -119.715407710999955, 49.680112833000074 ], [ -119.714442809, 49.679375397000094 ], [ -119.713956816999925, 49.678352898000121 ], [ -119.713392609999914, 49.677934103000027 ], [ -119.713318700999977, 49.67760371100006 ], [ -119.712791816999967, 49.676625298000019 ], [ -119.712600497999958, 49.675928912000124 ], [ -119.71110850599996, 49.674749588000097 ], [ -119.710796812999959, 49.674387896000034 ], [ -119.710501323999978, 49.674322304000064 ], [ -119.710325706999953, 49.674164283000096 ], [ -119.709329199999928, 49.672173188000073 ], [ -119.70848838699996, 49.671005398 ], [ -119.707887508999988, 49.670704909000094 ], [ -119.706128186999962, 49.670475607000085 ], [ -119.705650105999965, 49.670333106 ], [ -119.70469918699996, 49.66992440900006 ], [ -119.704494206999954, 49.669722195000141 ], [ -119.704326311, 49.66919520700003 ], [ -119.704720878, 49.668592799000081 ], [ -119.704771297999983, 49.668222490000048 ], [ -119.704620018999961, 49.667749602000107 ], [ -119.704244205999942, 49.667245391000044 ], [ -119.704438208999974, 49.666709894000078 ], [ -119.70429410299991, 49.666110408000122 ], [ -119.703521306999903, 49.665453812000095 ], [ -119.702993088999975, 49.665160410000077 ], [ -119.702659499999982, 49.664627692000096 ], [ -119.702474799999933, 49.664482195000126 ], [ -119.704900418999955, 49.664622713000064 ], [ -119.707391654, 49.664766974000017 ], [ -119.707304267, 49.66540392800006 ], [ -119.707484692999969, 49.665414374000058 ], [ -119.707454434999974, 49.665634914000051 ], [ -119.707490007, 49.66563697500002 ], [ -119.707455003999911, 49.665892099000111 ], [ -119.707658318999918, 49.665903870000086 ], [ -119.707628207999946, 49.666123350000049 ], [ -119.707787427999975, 49.666132567000055 ], [ -119.70777045899996, 49.666256255000093 ], [ -119.70785353499997, 49.666261065000043 ], [ -119.707828825999925, 49.666441166000062 ], [ -119.70789444399999, 49.666444965000075 ], [ -119.707878458999957, 49.66656148900006 ], [ -119.710572167999928, 49.666717391000091 ], [ -119.710427478999947, 49.667772477000021 ], [ -119.71189109599996, 49.667857158000082 ], [ -119.71154514700001, 49.670380228000042 ], [ -119.712309649999938, 49.670424452000077 ], [ -119.712279005999918, 49.670647949000099 ], [ -119.712425959999933, 49.670656449000035 ], [ -119.712405173999954, 49.670808060000127 ], [ -119.712525966000015, 49.670815047000112 ], [ -119.712502979, 49.670982717000058 ], [ -119.712605474999989, 49.670988645000094 ], [ -119.712596194999961, 49.671056325000109 ], [ -119.712665677999951, 49.671060344000075 ], [ -119.712644864999945, 49.671212147000041 ], [ -119.712734684999958, 49.671217342000041 ], [ -119.712700270999946, 49.671468366000099 ], [ -119.712915896999931, 49.671480838000036 ], [ -119.712868729999968, 49.671824884000046 ], [ -119.713018315999946, 49.67183353600003 ], [ -119.712993704999988, 49.672013058000118 ], [ -119.713121222999945, 49.672020433000043 ], [ -119.713082458999978, 49.672303199000062 ], [ -119.713354435999918, 49.672318928000045 ], [ -119.713074224999971, 49.674362845000125 ], [ -119.71577789299999, 49.674519166000032 ], [ -119.715726487, 49.67489427900005 ], [ -119.715994310999946, 49.674909761000031 ], [ -119.715940611999955, 49.675301613000052 ], [ -119.716128233999939, 49.675312458000064 ], [ -119.71610386499998, 49.675490277000094 ], [ -119.718223977999955, 49.675612801000092 ], [ -119.717733008999957, 49.679196431000044 ], [ -119.717695407999955, 49.679194258000066 ], [ -119.71761855299999, 49.679755178000093 ], [ -119.717583200999925, 49.680013183000071 ], [ -119.71744925099999, 49.680990755000067 ], [ -119.717430244999932, 49.681129464000051 ], [ -119.717659847999983, 49.681142730000062 ], [ -119.71864809500002, 49.681199826000046 ], [ -119.718742396999929, 49.680511489000061 ], [ -119.718814751999972, 49.679983324000034 ], [ -119.718823140999973, 49.679922080000026 ], [ -119.720130151999939, 49.679997578000076 ], [ -119.724341663999951, 49.680240743000091 ], [ -119.723962157999964, 49.683013265000085 ], [ -119.723912707999958, 49.683374495000081 ], [ -119.723851121999971, 49.683824377000121 ], [ -119.72242348, 49.683741966000078 ], [ -119.72237065099992, 49.684127794000126 ], [ -119.720348615999939, 49.68408670700007 ], [ -119.719909299999941, 49.683665189000074 ], [ -119.7193246, 49.683373212000028 ], [ -119.718938677999944, 49.68294019800009 ], [ -119.718431498999962, 49.682773603000115 ], [ -119.71820167599995, 49.68240049500011 ], [ -119.717144234000017, 49.681674218000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "0.999999352915953", "sL_AssetLoss": "589.1043082", "sL_BldgLoss": "589.103927", "sL_StrLoss": "589.1", "sL_NStrLoss": "0.003927", "sL_ContLoss": "0.0003812", "geom_point": "0101000020E61000007AEAAAA357E85DC0BB9A9F8F70C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.631897450999944, 49.545389513000053 ], [ -119.630280387999932, 49.54448710000004 ], [ -119.62981300199999, 49.544552705000029 ], [ -119.629439393999945, 49.544300588000063 ], [ -119.628728401999979, 49.544189512000081 ], [ -119.628512708999949, 49.544024303000072 ], [ -119.628164816999984, 49.543735208000022 ], [ -119.627625807999962, 49.543477393000131 ], [ -119.627785996999989, 49.543356310000014 ], [ -119.627568709999977, 49.542930485000035 ], [ -119.62813949099997, 49.54274680900005 ], [ -119.62696924799998, 49.541557617000166 ], [ -119.627455542999925, 49.541586213000073 ], [ -119.627612836999944, 49.541595463000085 ], [ -119.628014083999943, 49.538699192000102 ], [ -119.628505572999984, 49.538728091000074 ], [ -119.628552802999977, 49.538749352000096 ], [ -119.628776004999921, 49.538772290000082 ], [ -119.628945390999959, 49.538823241000017 ], [ -119.62909374699997, 49.538992151000087 ], [ -119.629173987999977, 49.539180573000081 ], [ -119.629409526, 49.539420076000049 ], [ -119.630593462, 49.539758687000067 ], [ -119.63075930399998, 49.539990576000115 ], [ -119.63085762299994, 49.540251088000026 ], [ -119.63101716199999, 49.540374506000035 ], [ -119.631174108999943, 49.540452782000031 ], [ -119.631253977999933, 49.540632202000026 ], [ -119.631421403, 49.541126648000045 ], [ -119.631437917999932, 49.541407055000029 ], [ -119.631410403999922, 49.541643221000079 ], [ -119.631487981999967, 49.541786440000138 ], [ -119.63180979299996, 49.542078470000021 ], [ -119.631997553999923, 49.542210367000017 ], [ -119.63213310899999, 49.542414784000087 ], [ -119.632363964999954, 49.542728377000131 ], [ -119.63313868699997, 49.543265086000062 ], [ -119.633402245999989, 49.543497085000105 ], [ -119.633530145999984, 49.543644232000062 ], [ -119.633924205999932, 49.544439537000102 ], [ -119.634055914999976, 49.544622003000093 ], [ -119.634165200999959, 49.544725345000117 ], [ -119.63431591899996, 49.544818581000079 ], [ -119.634466606000032, 49.544881921000048 ], [ -119.634376193999984, 49.54553512600009 ], [ -119.632468127999942, 49.545423042000102 ], [ -119.631897450999944, 49.545389513000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8132083", "BldgCostT": "5608333", "sL_LossRatio": "1", "sL_AssetLoss": "973", "sL_BldgLoss": "973", "sL_StrLoss": "973", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000004DDE20ABDEC5DC0262CF9F1FAD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.697302317999956, 49.659152068000012 ], [ -119.69742471899994, 49.658261206000091 ], [ -119.696893261999918, 49.65823038100006 ], [ -119.69685430499996, 49.657916889000028 ], [ -119.696468405999909, 49.657216197000075 ], [ -119.696247322999909, 49.655942902000064 ], [ -119.695976796999958, 49.65557260700006 ], [ -119.695884918999965, 49.655159605000058 ], [ -119.695753409999924, 49.655047095000064 ], [ -119.695605011999987, 49.654870487000096 ], [ -119.695549611999979, 49.654357792000035 ], [ -119.694982695999954, 49.653651393000111 ], [ -119.694659011999988, 49.653533191000093 ], [ -119.693893279999969, 49.653470499000093 ], [ -119.693584795000035, 49.65340499400002 ], [ -119.693264165999963, 49.652904435000025 ], [ -119.693386314999941, 49.65289916600009 ], [ -119.69760769199999, 49.652836856000071 ], [ -119.697954382999939, 49.652831751000072 ], [ -119.698021016999988, 49.652830760000036 ], [ -119.698111071, 49.652829510000089 ], [ -119.700547914999945, 49.652795857000058 ], [ -119.70027079099999, 49.654814045000116 ], [ -119.701119129999938, 49.654863225000106 ], [ -119.70099681, 49.655754095000056 ], [ -119.703310118999966, 49.65588816700005 ], [ -119.702818197999974, 49.65947183100009 ], [ -119.700863784999939, 49.65935856400003 ], [ -119.697302317999956, 49.659152068000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "72.3", "sL_BldgLoss": "72.3", "sL_StrLoss": "72.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000072AD516A4AE95DC03487FFCFBCC64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.644602971999944, 49.553359541000077 ], [ -119.644588409, 49.553089987000142 ], [ -119.644174080999932, 49.553099461000073 ], [ -119.644115835999912, 49.552021242000087 ], [ -119.645806631999946, 49.551982570000092 ], [ -119.645918580999989, 49.552150466000072 ], [ -119.64619643499995, 49.552140446000053 ], [ -119.64624571799996, 49.553052074000085 ], [ -119.645831391999977, 49.553061555000063 ], [ -119.6458459629999, 49.553331109000077 ], [ -119.644602971999944, 49.553359541000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154716583", "BldgCostT": "103048333", "sL_LossRatio": "0.995101682179984", "sL_AssetLoss": "17403.836201", "sL_BldgLoss": "17318.58668", "sL_StrLoss": "17286.02388", "sL_NStrLoss": "32.5628", "sL_ContLoss": "85.249521", "geom_point": "0101000020E6100000B1EF27B6C4E85DC0FE221DF5C2C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.632935043999936, 49.576722754000087 ], [ -119.632468948999986, 49.576085966000122 ], [ -119.631478086999934, 49.574144548000085 ], [ -119.631178123999945, 49.573485641000097 ], [ -119.631058737999979, 49.572997632000053 ], [ -119.631031961999923, 49.572888143000121 ], [ -119.631024765999953, 49.572239196000091 ], [ -119.631022184999949, 49.572080379000099 ], [ -119.631020050999936, 49.571950375000014 ], [ -119.631017005999965, 49.571764540000046 ], [ -119.630875762999963, 49.571785831000106 ], [ -119.630822883999912, 49.57179377700006 ], [ -119.630572413999971, 49.571832522000093 ], [ -119.63023023299999, 49.571885426000087 ], [ -119.630447686, 49.571799681000101 ], [ -119.630630908999947, 49.571727419000069 ], [ -119.630742837999946, 49.571570509000054 ], [ -119.630835665999939, 49.571351042000074 ], [ -119.63084628199999, 49.570852006000088 ], [ -119.630871371999916, 49.569669502000075 ], [ -119.630871551999988, 49.569660500000012 ], [ -119.63066279399996, 49.569658299 ], [ -119.630065288000011, 49.56965197100002 ], [ -119.629761029999912, 49.569644938000089 ], [ -119.629357121999959, 49.56964293500009 ], [ -119.628753118999938, 49.569639907000123 ], [ -119.627328484999936, 49.569628506000065 ], [ -119.625958290999947, 49.569604803000125 ], [ -119.624893701999937, 49.569598292000073 ], [ -119.623601414999953, 49.569592683000103 ], [ -119.623588212999948, 49.570487985000121 ], [ -119.623572106999987, 49.571354086000028 ], [ -119.623583601999954, 49.571891387000107 ], [ -119.623564199999976, 49.573060802000029 ], [ -119.624263597999956, 49.573066591000043 ], [ -119.624898783999981, 49.573071823000099 ], [ -119.62588838799995, 49.57308 ], [ -119.625859496999965, 49.574099001000093 ], [ -119.625857856999971, 49.574159327000068 ], [ -119.625818567999914, 49.575613997000055 ], [ -119.625871697999969, 49.575811284000068 ], [ -119.625916492, 49.57585144500014 ], [ -119.626290120999897, 49.576186402000062 ], [ -119.62667398499994, 49.576529590000078 ], [ -119.627466110999976, 49.577361889000024 ], [ -119.627588893999942, 49.577456804000064 ], [ -119.627754800999966, 49.577511708000031 ], [ -119.628606809999894, 49.577521084000104 ], [ -119.628775194999946, 49.577587905000051 ], [ -119.628746285999952, 49.57843700800003 ], [ -119.62789038499993, 49.578434602000051 ], [ -119.62731950099996, 49.578433451000116 ], [ -119.627245097999918, 49.578346293000024 ], [ -119.626793909999961, 49.578212406000027 ], [ -119.626430581999927, 49.577887697000065 ], [ -119.626555684, 49.577624191000062 ], [ -119.626505308999953, 49.577211186000063 ], [ -119.623972205999948, 49.574354189000069 ], [ -119.62345811499992, 49.574042292000065 ], [ -119.6229646099999, 49.573864285000113 ], [ -119.620688129999948, 49.573424676000144 ], [ -119.620545887999938, 49.573397206000031 ], [ -119.619817125999987, 49.573216304000084 ], [ -119.619780808, 49.573072389000075 ], [ -119.619195416999943, 49.572959900000086 ], [ -119.619160892999957, 49.572844615000079 ], [ -119.619438498999898, 49.572603886000131 ], [ -119.619552877999936, 49.5721423970001 ], [ -119.619388000999933, 49.571678213000105 ], [ -119.619418903999971, 49.571480195000035 ], [ -119.619916210999975, 49.570920505000053 ], [ -119.619997504999901, 49.570656984000045 ], [ -119.620895809999965, 49.570889084000065 ], [ -119.622196702999958, 49.570894799000087 ], [ -119.622248508999945, 49.570840710000034 ], [ -119.621981102999939, 49.570756711000044 ], [ -119.62064939899993, 49.570678413000074 ], [ -119.619907879999943, 49.570524492000118 ], [ -119.619970695999967, 49.570414911000086 ], [ -119.620759097999951, 49.570127211000028 ], [ -119.62134829699994, 49.569772598000128 ], [ -119.621426481999933, 49.569454993000143 ], [ -119.62162179799999, 49.569198586000063 ], [ -119.621872098999972, 49.56796099000006 ], [ -119.622029899999973, 49.567693258000105 ], [ -119.622431192999954, 49.567012394000066 ], [ -119.622641796, 49.566818698000077 ], [ -119.622579495999958, 49.566684910000106 ], [ -119.623724717999949, 49.565615297000107 ], [ -119.623578291999976, 49.565205095000067 ], [ -119.623300187999973, 49.564923097000054 ], [ -119.622973907999906, 49.564769309000077 ], [ -119.623020417999939, 49.564588401000051 ], [ -119.62339131, 49.564283697000057 ], [ -119.624556984999984, 49.563833590000044 ], [ -119.62470340699997, 49.563740995000032 ], [ -119.625101847999957, 49.563817013000069 ], [ -119.625375406999936, 49.563869205000124 ], [ -119.626470685999919, 49.56368259200007 ], [ -119.627329716999967, 49.563446200000058 ], [ -119.62757857299998, 49.563300980000029 ], [ -119.628564333999961, 49.563358911000144 ], [ -119.628493256999946, 49.563871729000013 ], [ -119.628533346999987, 49.563874084000084 ], [ -119.628680300999918, 49.562813781000088 ], [ -119.629073785999935, 49.562724089000071 ], [ -119.62964161799999, 49.562989099 ], [ -119.629688603999924, 49.563330902000047 ], [ -119.629806484999946, 49.56345330700006 ], [ -119.630256694999929, 49.56360569000001 ], [ -119.631374790999985, 49.563552993000023 ], [ -119.632987995999926, 49.563228305000031 ], [ -119.634773587, 49.562728397000043 ], [ -119.636114500999923, 49.562212903000052 ], [ -119.637511316999948, 49.561425300000096 ], [ -119.637996024999921, 49.560694707000074 ], [ -119.638101598999981, 49.560449086000077 ], [ -119.638457692999935, 49.560469981000011 ], [ -119.639663057999883, 49.560540699000065 ], [ -119.639627487999945, 49.560797803000121 ], [ -119.64411863399998, 49.561061177000106 ], [ -119.643723400999932, 49.563919821000091 ], [ -119.643660236999949, 49.564376646000063 ], [ -119.645014202999988, 49.564456008000022 ], [ -119.645021355, 49.564404277000044 ], [ -119.644821135999919, 49.564392542000128 ], [ -119.644958595, 49.563398202000059 ], [ -119.64531655199994, 49.560808653000038 ], [ -119.645377918999955, 49.560812250000019 ], [ -119.645421263999978, 49.560498655000053 ], [ -119.645894042999913, 49.560526363000072 ], [ -119.64596217799999, 49.560033370000035 ], [ -119.646073805999919, 49.559225666000081 ], [ -119.647432215, 49.559305268000045 ], [ -119.647673085999912, 49.559636303000062 ], [ -119.64847555599998, 49.560540106000104 ], [ -119.648744314999959, 49.560963811000136 ], [ -119.649213458999952, 49.5615350630001 ], [ -119.650023708999967, 49.562599972000072 ], [ -119.650485497999981, 49.563019019000052 ], [ -119.651577915999894, 49.56392468800005 ], [ -119.652000114999936, 49.56438053800008 ], [ -119.652375352999982, 49.564721006000106 ], [ -119.653148565, 49.565302753000012 ], [ -119.653601131999949, 49.565533675000054 ], [ -119.654282011999953, 49.565946426000082 ], [ -119.654122508999961, 49.566028309000046 ], [ -119.654065284999916, 49.566281801000081 ], [ -119.654370180999933, 49.566664976000055 ], [ -119.654466506999938, 49.566785998000093 ], [ -119.654507305999971, 49.567009605000095 ], [ -119.654221292999964, 49.567339999000048 ], [ -119.653409177999947, 49.56770029200004 ], [ -119.65334100299999, 49.567953812000063 ], [ -119.653426696999986, 49.568248599000071 ], [ -119.653286667999922, 49.568574486000017 ], [ -119.65327798899996, 49.568594709000095 ], [ -119.65243880299991, 49.569188607000115 ], [ -119.652055892999954, 49.569269796000107 ], [ -119.651296218999917, 49.569286903 ], [ -119.651114482999986, 49.569497705000053 ], [ -119.650791910999985, 49.57019839900002 ], [ -119.650182087999937, 49.570707785000124 ], [ -119.64964109099999, 49.571159699000106 ], [ -119.648676181999932, 49.571209595 ], [ -119.647939107999917, 49.571406103000086 ], [ -119.647116114999932, 49.57150580399999 ], [ -119.646330638999984, 49.571493617000058 ], [ -119.64631681499999, 49.571493409000027 ], [ -119.646413808999966, 49.571740098000127 ], [ -119.64641450799995, 49.571756109000063 ], [ -119.646438519999947, 49.572294301000149 ], [ -119.646355086999947, 49.572415803000119 ], [ -119.646237795999951, 49.572461410000102 ], [ -119.64602986099996, 49.572459556000091 ], [ -119.642063884999956, 49.57242448700007 ], [ -119.640315108999943, 49.572409606000058 ], [ -119.640303253999932, 49.572992782000092 ], [ -119.640278394999953, 49.57421841200005 ], [ -119.640227411999945, 49.574336392000085 ], [ -119.640142774999944, 49.574433902000045 ], [ -119.640133399999968, 49.574444701000061 ], [ -119.639960604999928, 49.574570102000095 ], [ -119.639459987999956, 49.574828797000102 ], [ -119.639044598999988, 49.574993183000032 ], [ -119.638749376999925, 49.575040897000122 ], [ -119.638120719999989, 49.575071804000046 ], [ -119.637838805999976, 49.575163690000068 ], [ -119.637712008999955, 49.57527819300001 ], [ -119.637658197999926, 49.575406004000051 ], [ -119.637681711999974, 49.575536489000108 ], [ -119.637848807999944, 49.575733296000116 ], [ -119.638112995999933, 49.575929391000066 ], [ -119.638391869999936, 49.576090120000103 ], [ -119.638537121999946, 49.576173804000049 ], [ -119.638743265999949, 49.576274155000092 ], [ -119.639214313, 49.576503393000046 ], [ -119.639566307999928, 49.576636988000104 ], [ -119.639817389999948, 49.5766977910001 ], [ -119.640228023999953, 49.576748896000019 ], [ -119.640246529999942, 49.576748565000138 ], [ -119.640595204999926, 49.576742501000126 ], [ -119.640803689999942, 49.576669799000065 ], [ -119.641113396999955, 49.577138691000123 ], [ -119.641342798999943, 49.577807797000098 ], [ -119.641599700999933, 49.578337695000123 ], [ -119.641627597999957, 49.578456797000101 ], [ -119.641616874999926, 49.578516306000097 ], [ -119.641585715999952, 49.578689185000059 ], [ -119.641493288999968, 49.578805680000073 ], [ -119.641319552999946, 49.579028534000095 ], [ -119.641156197, 49.579235536000027 ], [ -119.641097450999936, 49.579309959000035 ], [ -119.640613865999953, 49.579124440000015 ], [ -119.640108731999959, 49.578992109000048 ], [ -119.640080904999962, 49.578984814000101 ], [ -119.639412148999938, 49.578852243000014 ], [ -119.639401554999964, 49.578850146000072 ], [ -119.637265421999984, 49.578630690000118 ], [ -119.636942962999939, 49.578597559000109 ], [ -119.636850074999927, 49.578583497000082 ], [ -119.636358525, 49.578509079000085 ], [ -119.635595323999951, 49.578328807000069 ], [ -119.635046459999927, 49.578134012000071 ], [ -119.634974479999968, 49.578103293000019 ], [ -119.63446998299996, 49.577887934000088 ], [ -119.633896820999936, 49.577567978000019 ], [ -119.633721780999949, 49.57743965700012 ], [ -119.633323686999944, 49.577147754000087 ], [ -119.63299049499993, 49.576798518000075 ], [ -119.632970770999947, 49.57677157500008 ], [ -119.632935043999936, 49.576722754000087 ] ], [ [ -119.636829645999967, 49.569420113000035 ], [ -119.636916974999934, 49.568789281000136 ], [ -119.637359974999924, 49.568815275000127 ], [ -119.637409970999926, 49.56845409200006 ], [ -119.640673607999972, 49.568645533000115 ], [ -119.640722037999964, 49.568295468 ], [ -119.646226650999949, 49.568618136000033 ], [ -119.646181253999913, 49.568946553000089 ], [ -119.646706457999969, 49.568977324000095 ], [ -119.646604779999933, 49.569712943000056 ], [ -119.649853382999964, 49.569903219000075 ], [ -119.649983510000013, 49.568961284000117 ], [ -119.651755329999958, 49.569065021000043 ], [ -119.65183345699991, 49.568499325000097 ], [ -119.651927455999939, 49.568504828000094 ], [ -119.652000179, 49.567978227000019 ], [ -119.652282271000033, 49.567994740000117 ], [ -119.652363911999927, 49.567403530000078 ], [ -119.648545386999928, 49.567179938000081 ], [ -119.648610482999942, 49.566708814000101 ], [ -119.648408827999958, 49.566697003000058 ], [ -119.648329109999935, 49.566692333000042 ], [ -119.648332496999942, 49.56666783200005 ], [ -119.647325991999963, 49.566608871000064 ], [ -119.646569699999972, 49.566564562000089 ], [ -119.64634433099998, 49.568195086000124 ], [ -119.645252753999969, 49.568131124000075 ], [ -119.645248083999931, 49.56816491200005 ], [ -119.639743532999915, 49.567842194000086 ], [ -119.639754826999976, 49.567760566000068 ], [ -119.639456828999968, 49.567743087000082 ], [ -119.639778491999934, 49.56541835400008 ], [ -119.639915560999938, 49.564427652000056 ], [ -119.63855790400001, 49.564348008000053 ], [ -119.63859855799997, 49.565101856000084 ], [ -119.63818412699996, 49.565111310000113 ], [ -119.638197604999931, 49.565361269000064 ], [ -119.638271339999989, 49.566728643000026 ], [ -119.637856893999967, 49.566738097000055 ], [ -119.63787142799994, 49.567007653000104 ], [ -119.636213634999933, 49.567045453000055 ], [ -119.636199109999936, 49.566775896000109 ], [ -119.635784663, 49.566785343000042 ], [ -119.635813709, 49.567324455000048 ], [ -119.63539925799995, 49.567333899000111 ], [ -119.635428299999916, 49.567873013000089 ], [ -119.635013842999925, 49.567882455000046 ], [ -119.635028360999982, 49.568152013000088 ], [ -119.634662354999946, 49.568160350000028 ], [ -119.634627425999966, 49.568412573000046 ], [ -119.634628418999952, 49.568431010000033 ], [ -119.634624862999956, 49.568431091000043 ], [ -119.634506777999931, 49.569283787000096 ], [ -119.636829645999967, 49.569420113000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "221962785", "BldgCostT": "147424094", "sL_LossRatio": "0.994082708452298", "sL_AssetLoss": "15247.3996038", "sL_BldgLoss": "15157.176295", "sL_StrLoss": "15124.303425", "sL_NStrLoss": "32.87287", "sL_ContLoss": "90.2233088", "geom_point": "0101000020E61000004F1C3704A0E95DC0EFF60FD80BCB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.648053535999978, 49.59147806500004 ], [ -119.647712143999911, 49.591056177 ], [ -119.646795965999942, 49.590153529000105 ], [ -119.646384149, 49.589668773000106 ], [ -119.64607806399999, 49.589152301000077 ], [ -119.645896178999976, 49.588590696000082 ], [ -119.645480060999887, 49.586120455000085 ], [ -119.645246349999979, 49.585261365000072 ], [ -119.644674384999988, 49.58362561600007 ], [ -119.644262534999953, 49.582447804000076 ], [ -119.644231052999956, 49.582357687000062 ], [ -119.644195005999904, 49.582278927000047 ], [ -119.643910029, 49.581656070000065 ], [ -119.643829313999973, 49.581479720000061 ], [ -119.643534475999942, 49.581002714000128 ], [ -119.64300319599991, 49.580429641000144 ], [ -119.642511935999963, 49.580038675000019 ], [ -119.642159646999957, 49.579806663000042 ], [ -119.641486301, 49.579478174000052 ], [ -119.641234920999949, 49.579369445000104 ], [ -119.641097450999936, 49.579309959000035 ], [ -119.641156197, 49.579235536000027 ], [ -119.641319552999946, 49.579028534000095 ], [ -119.641493288999968, 49.578805680000073 ], [ -119.641585715999952, 49.578689185000059 ], [ -119.641616874999926, 49.578516306000097 ], [ -119.641627597999957, 49.578456797000101 ], [ -119.641599700999933, 49.578337695000123 ], [ -119.641342798999943, 49.577807797000098 ], [ -119.641113396999955, 49.577138691000123 ], [ -119.640803689999942, 49.576669799000065 ], [ -119.640936014999951, 49.576585402000013 ], [ -119.641044501999914, 49.576453607000126 ], [ -119.641099691999955, 49.576315003000097 ], [ -119.641050378999978, 49.575969799000056 ], [ -119.640770309999965, 49.575356394000039 ], [ -119.640763896999957, 49.575202391000062 ], [ -119.640794791999966, 49.575129290000106 ], [ -119.640944596999987, 49.575019701000095 ], [ -119.641052595999895, 49.574990902000067 ], [ -119.641287214000016, 49.575000099000114 ], [ -119.641489705999959, 49.575070698000047 ], [ -119.641693778, 49.575200111000093 ], [ -119.642522693999965, 49.575858291 ], [ -119.643102509999892, 49.576270799000049 ], [ -119.643451171999942, 49.576438012000025 ], [ -119.643572306999928, 49.576496112000029 ], [ -119.64392677799998, 49.576611697000025 ], [ -119.644176422999919, 49.576662500000083 ], [ -119.644864109999958, 49.576686489000082 ], [ -119.645563089999925, 49.576668691000108 ], [ -119.646954652999938, 49.576551855000069 ], [ -119.648097086999925, 49.576455904000063 ], [ -119.649174492999947, 49.576359934000024 ], [ -119.650029123999929, 49.576283765000056 ], [ -119.650152287999973, 49.576272797000087 ], [ -119.650690505999933, 49.576237365000146 ], [ -119.651016304999956, 49.576215903000083 ], [ -119.651995296999985, 49.576209900000023 ], [ -119.652048685999915, 49.57621798400006 ], [ -119.652364997999896, 49.57626588500009 ], [ -119.65347080199993, 49.576829193000108 ], [ -119.653471426999914, 49.57683894800001 ], [ -119.653565915999962, 49.578300599000016 ], [ -119.654038273999944, 49.579316161000094 ], [ -119.654063396999931, 49.579370192000077 ], [ -119.654107089999968, 49.580059185000088 ], [ -119.65410576799998, 49.580342424000072 ], [ -119.654103095999986, 49.580911607000061 ], [ -119.654274908999952, 49.58138590500004 ], [ -119.654270794999974, 49.58153650100008 ], [ -119.654255283999987, 49.581567778000114 ], [ -119.654197709999949, 49.581683914000088 ], [ -119.65396561099999, 49.581837496000112 ], [ -119.653472506999933, 49.582021787000023 ], [ -119.652502889999965, 49.58275169700007 ], [ -119.65226982199998, 49.582932303000042 ], [ -119.652091149999976, 49.583177460000101 ], [ -119.651906786999959, 49.5834303970001 ], [ -119.652696293999924, 49.583692400000146 ], [ -119.652818779999947, 49.583780012000069 ], [ -119.652831408999958, 49.583824737000093 ], [ -119.652877488999962, 49.583988395000048 ], [ -119.652961894, 49.584763805000094 ], [ -119.652354018999986, 49.584784193000154 ], [ -119.652342088999973, 49.585081592000058 ], [ -119.652912811999968, 49.585862809000027 ], [ -119.653192386999962, 49.586129398 ], [ -119.653916184999972, 49.586998100000073 ], [ -119.654090787999962, 49.587261211000062 ], [ -119.654675600999951, 49.588679159000016 ], [ -119.654753101999987, 49.588867013000034 ], [ -119.65495129599999, 49.590477193000034 ], [ -119.655162617999963, 49.590977291000037 ], [ -119.655448694999947, 49.591648805000034 ], [ -119.655698990999923, 49.591846809000103 ], [ -119.655915184999927, 49.59190910500007 ], [ -119.65715258799996, 49.591924598000077 ], [ -119.657360083999933, 49.591949410000076 ], [ -119.6575717099999, 49.592025908000089 ], [ -119.657719893999953, 49.592138402000067 ], [ -119.658028194999929, 49.592589914 ], [ -119.658214709999953, 49.592757097000025 ], [ -119.658482493999955, 49.592868489000068 ], [ -119.659736400999947, 49.593186503000048 ], [ -119.659730981999985, 49.593326198000042 ], [ -119.659720739999912, 49.59365368600001 ], [ -119.659713501999974, 49.593885093000068 ], [ -119.659687477999938, 49.594752125000063 ], [ -119.659671084999971, 49.595298787000019 ], [ -119.659529413999934, 49.597179988000065 ], [ -119.65959959499996, 49.597446010000077 ], [ -119.65952281199999, 49.597549912000048 ], [ -119.659385877999981, 49.597596085000085 ], [ -119.658751527, 49.597607674000081 ], [ -119.658620521, 49.597610074000087 ], [ -119.656692319999962, 49.59760032500003 ], [ -119.654723677999925, 49.597421117000053 ], [ -119.653819185999936, 49.597034918000098 ], [ -119.652117010999973, 49.596424203000083 ], [ -119.65118668599996, 49.596054474000105 ], [ -119.65073381699996, 49.595815327000054 ], [ -119.65058316299999, 49.595735765000057 ], [ -119.650542476999988, 49.595714299000129 ], [ -119.65025820599999, 49.595531480000012 ], [ -119.649796009999932, 49.595159367000079 ], [ -119.649493308, 49.594839072000092 ], [ -119.649234292999964, 49.594503274000061 ], [ -119.649040214999957, 49.594150585000072 ], [ -119.648816627999977, 49.593609085000061 ], [ -119.648443225, 49.592223369000095 ], [ -119.648224819999911, 49.5917454880001 ], [ -119.648053535999978, 49.59147806500004 ] ], [ [ -119.644125818999896, 49.580359183000063 ], [ -119.644235271999932, 49.579567810000121 ], [ -119.643254956999954, 49.579510363000033 ], [ -119.643171856999956, 49.580111102000096 ], [ -119.643973116000012, 49.580092787000069 ], [ -119.643987689999918, 49.580362341000061 ], [ -119.644125818999896, 49.580359183000063 ] ], [ [ -119.649811125999989, 49.57938466300002 ], [ -119.649686567999964, 49.580286042000125 ], [ -119.649852638999988, 49.58029576400002 ], [ -119.650024188999964, 49.579054285000083 ], [ -119.650011664999951, 49.579053551000129 ], [ -119.65008064599999, 49.578554335000085 ], [ -119.649248183999987, 49.578505598000064 ], [ -119.649211327999936, 49.578772290000082 ], [ -119.647861530999961, 49.578693251000054 ], [ -119.647847670999965, 49.578793522000112 ], [ -119.64758244299999, 49.578777990000106 ], [ -119.647517147999949, 49.579250339000076 ], [ -119.649811125999989, 49.57938466300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126348584", "BldgCostT": "84463334", "sL_LossRatio": "0.992992441164056", "sL_AssetLoss": "12777.071459", "sL_BldgLoss": "12687.535379", "sL_StrLoss": "12654.902079", "sL_NStrLoss": "32.6333", "sL_ContLoss": "89.53608", "geom_point": "0101000020E6100000F4BAC12788E85DC031F67719F2C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.644184895999985, 49.584009251000062 ], [ -119.644177177999964, 49.583866537000084 ], [ -119.643577680999968, 49.58388024000007 ], [ -119.643345611999976, 49.583841279000097 ], [ -119.643335166000014, 49.583648051000083 ], [ -119.643309277999961, 49.583835180000065 ], [ -119.64313128500001, 49.583805297000062 ], [ -119.64095452199993, 49.583711301000079 ], [ -119.640669093999989, 49.583537514000071 ], [ -119.640417522999911, 49.583497703000084 ], [ -119.639531592999987, 49.583509109000076 ], [ -119.63893841099997, 49.583262692000091 ], [ -119.63860521399998, 49.583251309000126 ], [ -119.638317304999958, 49.583060401000061 ], [ -119.637843603999912, 49.583232794 ], [ -119.637451620999954, 49.583161596000132 ], [ -119.63707520499996, 49.583124509000044 ], [ -119.636727597999979, 49.582826904000058 ], [ -119.636803107999981, 49.582690095000068 ], [ -119.637387989, 49.582487896000039 ], [ -119.637357602999913, 49.582435208000042 ], [ -119.636593297999966, 49.582650307000101 ], [ -119.63646298799992, 49.58252639200002 ], [ -119.636548889999958, 49.582345492000094 ], [ -119.636474892999956, 49.582247196000012 ], [ -119.636107806999959, 49.582094800000029 ], [ -119.635455310999959, 49.582046410000046 ], [ -119.634826484999977, 49.581700307000098 ], [ -119.634462598999946, 49.581348492000117 ], [ -119.633327308999981, 49.58110501000003 ], [ -119.632803199999898, 49.581134908000116 ], [ -119.632663886999921, 49.580858608000064 ], [ -119.632366109999978, 49.580721887000045 ], [ -119.631980391999932, 49.580991114000028 ], [ -119.631965487999963, 49.580740401000121 ], [ -119.632367711999947, 49.580209199000123 ], [ -119.63221149799999, 49.580167892000112 ], [ -119.63205029699999, 49.580224804000068 ], [ -119.631935713999951, 49.580659204000035 ], [ -119.631852584999962, 49.580662090000061 ], [ -119.631929300999943, 49.580318812000051 ], [ -119.631760192999977, 49.580232010000067 ], [ -119.631442812999964, 49.580247602000071 ], [ -119.631347902999948, 49.580546711000117 ], [ -119.631265976999913, 49.580558095000121 ], [ -119.631117417999974, 49.580372900000128 ], [ -119.631048912999958, 49.580401407000124 ], [ -119.630966285999975, 49.580646390000034 ], [ -119.630776399999945, 49.580488303000024 ], [ -119.630776209999965, 49.580200602000055 ], [ -119.630691691999928, 49.580184988 ], [ -119.630431300999973, 49.580478294000024 ], [ -119.630065309999935, 49.580397205000061 ], [ -119.629944283, 49.580164993000061 ], [ -119.629728382999957, 49.580287497000072 ], [ -119.629508211999976, 49.580291809000052 ], [ -119.629403087999933, 49.580159290000026 ], [ -119.629362210999972, 49.579647993000016 ], [ -119.628655288999965, 49.579619489000102 ], [ -119.628397889999945, 49.579481399000038 ], [ -119.628296408999944, 49.579374594000093 ], [ -119.62842810399999, 49.579246412000089 ], [ -119.628354793999975, 49.579185209000038 ], [ -119.627953920999971, 49.579176601 ], [ -119.62731950099996, 49.578433451000116 ], [ -119.62789038499993, 49.578434602000051 ], [ -119.628746285999952, 49.57843700800003 ], [ -119.628775194999946, 49.577587905000051 ], [ -119.628606809999894, 49.577521084000104 ], [ -119.627754800999966, 49.577511708000031 ], [ -119.627588893999942, 49.577456804000064 ], [ -119.627466110999976, 49.577361889000024 ], [ -119.62667398499994, 49.576529590000078 ], [ -119.626290120999897, 49.576186402000062 ], [ -119.625916492, 49.57585144500014 ], [ -119.625871697999969, 49.575811284000068 ], [ -119.625818567999914, 49.575613997000055 ], [ -119.625857856999971, 49.574159327000068 ], [ -119.625859496999965, 49.574099001000093 ], [ -119.62588838799995, 49.57308 ], [ -119.624898783999981, 49.573071823000099 ], [ -119.624263597999956, 49.573066591000043 ], [ -119.623564199999976, 49.573060802000029 ], [ -119.623583601999954, 49.571891387000107 ], [ -119.623572106999987, 49.571354086000028 ], [ -119.623588212999948, 49.570487985000121 ], [ -119.623601414999953, 49.569592683000103 ], [ -119.624893701999937, 49.569598292000073 ], [ -119.625958290999947, 49.569604803000125 ], [ -119.627328484999936, 49.569628506000065 ], [ -119.628753118999938, 49.569639907000123 ], [ -119.629357121999959, 49.56964293500009 ], [ -119.629761029999912, 49.569644938000089 ], [ -119.630065288000011, 49.56965197100002 ], [ -119.63066279399996, 49.569658299 ], [ -119.630871551999988, 49.569660500000012 ], [ -119.630871371999916, 49.569669502000075 ], [ -119.63084628199999, 49.570852006000088 ], [ -119.630835665999939, 49.571351042000074 ], [ -119.630742837999946, 49.571570509000054 ], [ -119.630630908999947, 49.571727419000069 ], [ -119.630447686, 49.571799681000101 ], [ -119.63023023299999, 49.571885426000087 ], [ -119.630572413999971, 49.571832522000093 ], [ -119.630822883999912, 49.57179377700006 ], [ -119.630875762999963, 49.571785831000106 ], [ -119.631017005999965, 49.571764540000046 ], [ -119.631020050999936, 49.571950375000014 ], [ -119.631022184999949, 49.572080379000099 ], [ -119.631024765999953, 49.572239196000091 ], [ -119.631031961999923, 49.572888143000121 ], [ -119.631058737999979, 49.572997632000053 ], [ -119.631178123999945, 49.573485641000097 ], [ -119.631478086999934, 49.574144548000085 ], [ -119.632468948999986, 49.576085966000122 ], [ -119.632935043999936, 49.576722754000087 ], [ -119.632970770999947, 49.57677157500008 ], [ -119.63299049499993, 49.576798518000075 ], [ -119.633323686999944, 49.577147754000087 ], [ -119.633721780999949, 49.57743965700012 ], [ -119.633896820999936, 49.577567978000019 ], [ -119.63446998299996, 49.577887934000088 ], [ -119.634974479999968, 49.578103293000019 ], [ -119.635046459999927, 49.578134012000071 ], [ -119.635595323999951, 49.578328807000069 ], [ -119.636358525, 49.578509079000085 ], [ -119.636850074999927, 49.578583497000082 ], [ -119.636942962999939, 49.578597559000109 ], [ -119.637265421999984, 49.578630690000118 ], [ -119.639401554999964, 49.578850146000072 ], [ -119.639412148999938, 49.578852243000014 ], [ -119.640080904999962, 49.578984814000101 ], [ -119.640108731999959, 49.578992109000048 ], [ -119.640613865999953, 49.579124440000015 ], [ -119.641097450999936, 49.579309959000035 ], [ -119.641234920999949, 49.579369445000104 ], [ -119.641486301, 49.579478174000052 ], [ -119.642159646999957, 49.579806663000042 ], [ -119.642511935999963, 49.580038675000019 ], [ -119.64300319599991, 49.580429641000144 ], [ -119.643534475999942, 49.581002714000128 ], [ -119.643829313999973, 49.581479720000061 ], [ -119.643910029, 49.581656070000065 ], [ -119.644195005999904, 49.582278927000047 ], [ -119.644231052999956, 49.582357687000062 ], [ -119.644262534999953, 49.582447804000076 ], [ -119.644674384999988, 49.58362561600007 ], [ -119.645246349999979, 49.585261365000072 ], [ -119.645480060999887, 49.586120455000085 ], [ -119.645896178999976, 49.588590696000082 ], [ -119.64607806399999, 49.589152301000077 ], [ -119.646384149, 49.589668773000106 ], [ -119.646795965999942, 49.590153529000105 ], [ -119.647712143999911, 49.591056177 ], [ -119.648053535999978, 49.59147806500004 ], [ -119.647907584999984, 49.591559864000011 ], [ -119.64758700299997, 49.591770497000056 ], [ -119.647571511999942, 49.591862316000075 ], [ -119.64756380099999, 49.591908186000069 ], [ -119.647620289999935, 49.592071388000079 ], [ -119.648046704999985, 49.592461199000077 ], [ -119.648149382999975, 49.592662296000078 ], [ -119.648277944999961, 49.594320990000035 ], [ -119.648278998999913, 49.594334508000067 ], [ -119.648586394999953, 49.594972985000076 ], [ -119.648837110999978, 49.595217990000037 ], [ -119.650087911999989, 49.596057409000061 ], [ -119.649254827999926, 49.596143930000089 ], [ -119.648544811999969, 49.595602006000028 ], [ -119.64761051499994, 49.595227498000106 ], [ -119.647523687999964, 49.594635007000093 ], [ -119.647620808999974, 49.594408509000047 ], [ -119.648046002999976, 49.593929384000077 ], [ -119.64801706799993, 49.593096444000089 ], [ -119.64798862, 49.592676304000115 ], [ -119.647938522999979, 49.592501614000071 ], [ -119.647720804999949, 49.592316531000044 ], [ -119.647414371999957, 49.592060372000041 ], [ -119.647411210999934, 49.591859192000072 ], [ -119.647550263000014, 49.591632779000058 ], [ -119.647587048999938, 49.591395444000064 ], [ -119.647196468999979, 49.590956548000058 ], [ -119.646490515999957, 49.590277366000045 ], [ -119.646120388999975, 49.589804222000154 ], [ -119.645659975999962, 49.588937505000082 ], [ -119.645372772999934, 49.587156512000043 ], [ -119.645236902999955, 49.586178167000114 ], [ -119.644546614999911, 49.584079900000098 ], [ -119.64423546799999, 49.58402231900007 ], [ -119.644184895999985, 49.584009251000062 ] ], [ [ -119.640317352999915, 49.581571777000079 ], [ -119.640271204999976, 49.580717125000071 ], [ -119.639856641999955, 49.580726588000118 ], [ -119.639827537999977, 49.580187479000102 ], [ -119.639412979, 49.580196940000064 ], [ -119.639406384999972, 49.580074769000156 ], [ -119.639178123999926, 49.580061383000015 ], [ -119.639135462999917, 49.58036958000006 ], [ -119.6396720499999, 49.580401045000059 ], [ -119.639516504999932, 49.58152482100008 ], [ -119.640317352999915, 49.581571777000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227269577", "BldgCostT": "151682409", "sL_LossRatio": "0.99022224276329", "sL_AssetLoss": "17496.136983", "sL_BldgLoss": "17325.064003", "sL_StrLoss": "17262.023483", "sL_NStrLoss": "63.04052", "sL_ContLoss": "171.07298", "geom_point": "0101000020E610000073902111E4E95DC05191F1C56ACD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.65192361099993, 49.609674593000101 ], [ -119.651758591999936, 49.609445296000011 ], [ -119.651854305999962, 49.608911288000044 ], [ -119.651508702999962, 49.608136510000037 ], [ -119.651118984999925, 49.607848799000081 ], [ -119.649874987999979, 49.607643701000079 ], [ -119.649735494999916, 49.607116791000088 ], [ -119.64982999399993, 49.606817710000072 ], [ -119.650536501999966, 49.606297787000102 ], [ -119.650672704999963, 49.606005886000048 ], [ -119.650938710999952, 49.605793691000045 ], [ -119.65090478599997, 49.605676908000085 ], [ -119.651886018, 49.604889297000035 ], [ -119.651967605999943, 49.60460021200003 ], [ -119.651509710999974, 49.604358095000066 ], [ -119.651544519999945, 49.60420570500002 ], [ -119.652277601999984, 49.603459398000084 ], [ -119.652265718999942, 49.602956596000134 ], [ -119.652548399999958, 49.602832706000115 ], [ -119.65234969799999, 49.60274728600011 ], [ -119.652215886999954, 49.602552209000081 ], [ -119.652141918, 49.602203198000026 ], [ -119.652132805999955, 49.602050783000081 ], [ -119.652597716999978, 49.601436994000011 ], [ -119.652411795999967, 49.601081012000101 ], [ -119.65224109899999, 49.600203609000062 ], [ -119.652095601999946, 49.600089686000089 ], [ -119.651536194, 49.599994303000045 ], [ -119.651178595999951, 49.599777803000045 ], [ -119.651171685999955, 49.599625404000015 ], [ -119.650839011999949, 49.599390401000093 ], [ -119.650747600999949, 49.598978807000051 ], [ -119.650539023999983, 49.598703902000047 ], [ -119.650623996999954, 49.598485999000033 ], [ -119.650594795999965, 49.597416494000136 ], [ -119.650487912999935, 49.597248404000098 ], [ -119.65056169599994, 49.597076093000105 ], [ -119.650455507999979, 49.596889492000116 ], [ -119.649867608999941, 49.596533500000064 ], [ -119.649450212999966, 49.596470808000063 ], [ -119.649322923999989, 49.596195905000101 ], [ -119.649254827999926, 49.596143930000089 ], [ -119.650087911999989, 49.596057409000061 ], [ -119.648837110999978, 49.595217990000037 ], [ -119.648586394999953, 49.594972985000076 ], [ -119.648278998999913, 49.594334508000067 ], [ -119.648277944999961, 49.594320990000035 ], [ -119.648149382999975, 49.592662296000078 ], [ -119.648046704999985, 49.592461199000077 ], [ -119.647620289999935, 49.592071388000079 ], [ -119.64756380099999, 49.591908186000069 ], [ -119.647571511999942, 49.591862316000075 ], [ -119.64758700299997, 49.591770497000056 ], [ -119.647907584999984, 49.591559864000011 ], [ -119.648053535999978, 49.59147806500004 ], [ -119.648224819999911, 49.5917454880001 ], [ -119.648443225, 49.592223369000095 ], [ -119.648816627999977, 49.593609085000061 ], [ -119.649040214999957, 49.594150585000072 ], [ -119.649234292999964, 49.594503274000061 ], [ -119.649493308, 49.594839072000092 ], [ -119.649796009999932, 49.595159367000079 ], [ -119.65025820599999, 49.595531480000012 ], [ -119.650542476999988, 49.595714299000129 ], [ -119.65058316299999, 49.595735765000057 ], [ -119.65073381699996, 49.595815327000054 ], [ -119.65118668599996, 49.596054474000105 ], [ -119.652117010999973, 49.596424203000083 ], [ -119.653819185999936, 49.597034918000098 ], [ -119.654723677999925, 49.597421117000053 ], [ -119.655644051999943, 49.597884702000059 ], [ -119.65539951299999, 49.597908772000061 ], [ -119.653161702, 49.598128951000035 ], [ -119.653188996999944, 49.598511812000041 ], [ -119.653218106999958, 49.598703197000127 ], [ -119.653317420999926, 49.599561599000047 ], [ -119.65336401799999, 49.599998593000052 ], [ -119.65339983199999, 49.600334344000025 ], [ -119.653401298999952, 49.600348193000023 ], [ -119.653478851999935, 49.601075159000061 ], [ -119.653580369999958, 49.60202687500005 ], [ -119.653667005999964, 49.602838899000069 ], [ -119.654372707, 49.602855701000038 ], [ -119.655019712999945, 49.602845696000038 ], [ -119.655281619999926, 49.602788801000031 ], [ -119.655809107999957, 49.60255769200009 ], [ -119.655864658999988, 49.602820598000044 ], [ -119.656021798, 49.603607088000089 ], [ -119.656269196999929, 49.603569 ], [ -119.65653451899999, 49.603588102000131 ], [ -119.656645289999958, 49.60364070100006 ], [ -119.656691780999921, 49.603705704 ], [ -119.65665010799998, 49.603741967000062 ], [ -119.656491393999914, 49.603880107000087 ], [ -119.656511903999899, 49.604003210000023 ], [ -119.656768906999957, 49.604203384000101 ], [ -119.657190591999921, 49.604316491000084 ], [ -119.657260249999965, 49.604357810000124 ], [ -119.657318923999981, 49.604392603000086 ], [ -119.657615416999946, 49.605084608000041 ], [ -119.657634224999967, 49.605128487000052 ], [ -119.65794051499995, 49.605843297000028 ], [ -119.65801258599997, 49.605924294000062 ], [ -119.658246607, 49.606150204000059 ], [ -119.659516175, 49.60696052400008 ], [ -119.659533851999967, 49.607023817000048 ], [ -119.660077307999984, 49.607087374000095 ], [ -119.66016649699999, 49.607097813000031 ], [ -119.660727600999962, 49.606855116000048 ], [ -119.66108855, 49.606784968000106 ], [ -119.661524011999958, 49.606788738000077 ], [ -119.661982686999949, 49.606865202000016 ], [ -119.662220771999941, 49.606951308000177 ], [ -119.66233417899997, 49.607034678000048 ], [ -119.662410288999979, 49.607137583000032 ], [ -119.662442135999953, 49.607279472000066 ], [ -119.66242714399999, 49.607468264000062 ], [ -119.662415588999963, 49.607752975000047 ], [ -119.662590653999928, 49.607973651000101 ], [ -119.662001043999936, 49.608354175000095 ], [ -119.661843780999959, 49.608455651000085 ], [ -119.661522764999987, 49.608608510000089 ], [ -119.660700603999956, 49.608861248000018 ], [ -119.660424348999953, 49.608971555000068 ], [ -119.659997679999947, 49.609205839000019 ], [ -119.66001365399994, 49.609261039000046 ], [ -119.659818942999934, 49.6096153760001 ], [ -119.659696185999962, 49.609730132000074 ], [ -119.659421513999959, 49.609899236000082 ], [ -119.658821333999953, 49.610102593000164 ], [ -119.658733917999896, 49.610011698000065 ], [ -119.658298249999945, 49.610100042000056 ], [ -119.657511178999982, 49.610158736000109 ], [ -119.65668519899998, 49.61022036500011 ], [ -119.656397176999945, 49.610241842000093 ], [ -119.656148879999961, 49.61024989600002 ], [ -119.655203260999954, 49.61028043900005 ], [ -119.65357950399999, 49.61033453000006 ], [ -119.652382972999987, 49.61031736400011 ], [ -119.65231171799995, 49.610320391000073 ], [ -119.652150091999957, 49.610272792000046 ], [ -119.65193518400001, 49.609899695000088 ], [ -119.65192361099993, 49.609674593000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198215084", "BldgCostT": "131773334", "sL_LossRatio": "0.991661932280504", "sL_AssetLoss": "11373.736001", "sL_BldgLoss": "11278.90102", "sL_StrLoss": "11243.22726", "sL_NStrLoss": "35.67376", "sL_ContLoss": "94.834981", "geom_point": "0101000020E6100000EC0A4B764BEA5DC00537109AF6CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.65653451899999, 49.603588102000131 ], [ -119.656269196999929, 49.603569 ], [ -119.656021798, 49.603607088000089 ], [ -119.655864658999988, 49.602820598000044 ], [ -119.655809107999957, 49.60255769200009 ], [ -119.655281619999926, 49.602788801000031 ], [ -119.655019712999945, 49.602845696000038 ], [ -119.654372707, 49.602855701000038 ], [ -119.653667005999964, 49.602838899000069 ], [ -119.653580369999958, 49.60202687500005 ], [ -119.653478851999935, 49.601075159000061 ], [ -119.653401298999952, 49.600348193000023 ], [ -119.65339983199999, 49.600334344000025 ], [ -119.65336401799999, 49.599998593000052 ], [ -119.653317420999926, 49.599561599000047 ], [ -119.653218106999958, 49.598703197000127 ], [ -119.653188996999944, 49.598511812000041 ], [ -119.653161702, 49.598128951000035 ], [ -119.65539951299999, 49.597908772000061 ], [ -119.655644051999943, 49.597884702000059 ], [ -119.654723677999925, 49.597421117000053 ], [ -119.656692319999962, 49.59760032500003 ], [ -119.658620521, 49.597610074000087 ], [ -119.658708890999975, 49.597723628000075 ], [ -119.659058523999974, 49.598172845000093 ], [ -119.659518959999957, 49.59876444300005 ], [ -119.659698022999976, 49.598955525000079 ], [ -119.659767734999988, 49.599004837000066 ], [ -119.65982325799996, 49.599044134000096 ], [ -119.659877001999945, 49.599060697 ], [ -119.659945863999937, 49.599081935000072 ], [ -119.660213374999955, 49.599164465000108 ], [ -119.660422195999985, 49.599178225000053 ], [ -119.661063558999956, 49.599220459 ], [ -119.661693601999914, 49.59930241800005 ], [ -119.662108386999975, 49.599415140000126 ], [ -119.662317074999962, 49.599503478000045 ], [ -119.662856011999963, 49.599731566000109 ], [ -119.663164670999919, 49.599788412000109 ], [ -119.663364709999954, 49.599791703000022 ], [ -119.663767176999983, 49.599798325000059 ], [ -119.664099386999936, 49.599775267000105 ], [ -119.664495423999966, 49.599691791000033 ], [ -119.664926897, 49.599482175000077 ], [ -119.665171253, 49.599401613000097 ], [ -119.665368382999944, 49.599381513000118 ], [ -119.665830186999983, 49.599383637000123 ], [ -119.666460177999951, 49.599386521000021 ], [ -119.666551802999976, 49.599386492000072 ], [ -119.667271494999937, 49.599389528000088 ], [ -119.66778660599995, 49.599391711000102 ], [ -119.669794091, 49.599400409000118 ], [ -119.669787207999917, 49.599702610000065 ], [ -119.670485699999986, 49.599720703000052 ], [ -119.670858712999944, 49.599754204000099 ], [ -119.671878428999918, 49.599971547000081 ], [ -119.671898088999939, 49.599975721000099 ], [ -119.672328704, 49.600067490000086 ], [ -119.672260092999949, 49.600323705000079 ], [ -119.67213717599995, 49.60039960400006 ], [ -119.671047379999905, 49.600480497000049 ], [ -119.670855586999949, 49.600532608000037 ], [ -119.670722763999891, 49.600619726000062 ], [ -119.670607078999979, 49.600784511000136 ], [ -119.670595265, 49.600990619000072 ], [ -119.670666864999987, 49.601246821000046 ], [ -119.670930166999938, 49.601512329000087 ], [ -119.670313333999928, 49.601865803000074 ], [ -119.67017199899999, 49.601946808000058 ], [ -119.66934684, 49.602413416000083 ], [ -119.669156147999971, 49.60248811900005 ], [ -119.668528317999986, 49.602662829000117 ], [ -119.667962222999961, 49.602820378000104 ], [ -119.667624836999934, 49.602871132000068 ], [ -119.667608545999883, 49.602870310000064 ], [ -119.667411118999951, 49.602860460000038 ], [ -119.666633399999952, 49.602711216000088 ], [ -119.666332410999985, 49.602810167 ], [ -119.665910292999968, 49.602971588000074 ], [ -119.665735394, 49.603031824000077 ], [ -119.665545667999965, 49.603088834000062 ], [ -119.665428329999955, 49.603124092000058 ], [ -119.665067902999979, 49.603170775000116 ], [ -119.664938615999986, 49.603131621000031 ], [ -119.664609737999953, 49.602907868000074 ], [ -119.664575632999956, 49.602884631000038 ], [ -119.664548029999935, 49.602874399000015 ], [ -119.664468142999951, 49.602844714000064 ], [ -119.664388097999947, 49.602814992000077 ], [ -119.664042125, 49.602776718000094 ], [ -119.66368914099999, 49.602823468000125 ], [ -119.663497679999963, 49.602848800000068 ], [ -119.662976876999934, 49.602980969000086 ], [ -119.662339751999966, 49.60324180200007 ], [ -119.662201045999893, 49.603391759000026 ], [ -119.661986872999975, 49.603766708000094 ], [ -119.661688296999941, 49.604119565000083 ], [ -119.66123542299999, 49.604750555000116 ], [ -119.661057430999932, 49.604998513000012 ], [ -119.660721389999964, 49.605572264000031 ], [ -119.660388752999921, 49.605638650000081 ], [ -119.659476283999979, 49.605761450000038 ], [ -119.658758834999958, 49.605850710000013 ], [ -119.658413988999911, 49.605893599000069 ], [ -119.65801258599997, 49.605924294000062 ], [ -119.65794051499995, 49.605843297000028 ], [ -119.657634224999967, 49.605128487000052 ], [ -119.657615416999946, 49.605084608000041 ], [ -119.657318923999981, 49.604392603000086 ], [ -119.657260249999965, 49.604357810000124 ], [ -119.657190591999921, 49.604316491000084 ], [ -119.656768906999957, 49.604203384000101 ], [ -119.656511903999899, 49.604003210000023 ], [ -119.656491393999914, 49.603880107000087 ], [ -119.65665010799998, 49.603741967000062 ], [ -119.656691780999921, 49.603705704 ], [ -119.656645289999958, 49.60364070100006 ], [ -119.65653451899999, 49.603588102000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157941500", "BldgCostT": "101750000", "sL_LossRatio": "0.9828267072307", "sL_AssetLoss": "15260.699478", "sL_BldgLoss": "14998.623018", "sL_StrLoss": "14902.726008", "sL_NStrLoss": "95.89701", "sL_ContLoss": "262.07646", "geom_point": "0101000020E61000004FDCF0DCB7EA5DC00FBFD519E3CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.663277361999917, 49.613854384000064 ], [ -119.663153221999934, 49.613747777000093 ], [ -119.662019629999975, 49.613469375000072 ], [ -119.661317680999986, 49.613112278000081 ], [ -119.66118539599999, 49.612923938000044 ], [ -119.661187183999942, 49.612815203000117 ], [ -119.661188213999964, 49.612752510000078 ], [ -119.661239025999947, 49.612656122000089 ], [ -119.661345320999942, 49.612590071000099 ], [ -119.66152184299996, 49.612568778000067 ], [ -119.662525681, 49.612861295000116 ], [ -119.662904971, 49.613010783000036 ], [ -119.663001677999929, 49.613014624000101 ], [ -119.663056427999905, 49.612969955000054 ], [ -119.663032778999963, 49.612909864000144 ], [ -119.66240489299993, 49.612660058000117 ], [ -119.661173011999949, 49.611997482000092 ], [ -119.660571211999951, 49.611478245000065 ], [ -119.65972196199999, 49.610840693000078 ], [ -119.659238134999924, 49.610452984000048 ], [ -119.658821333999953, 49.610102593000164 ], [ -119.659421513999959, 49.609899236000082 ], [ -119.659696185999962, 49.609730132000074 ], [ -119.659818942999934, 49.6096153760001 ], [ -119.66001365399994, 49.609261039000046 ], [ -119.659997679999947, 49.609205839000019 ], [ -119.660424348999953, 49.608971555000068 ], [ -119.660700603999956, 49.608861248000018 ], [ -119.661522764999987, 49.608608510000089 ], [ -119.661843780999959, 49.608455651000085 ], [ -119.662001043999936, 49.608354175000095 ], [ -119.662590653999928, 49.607973651000101 ], [ -119.662415588999963, 49.607752975000047 ], [ -119.66242714399999, 49.607468264000062 ], [ -119.662442135999953, 49.607279472000066 ], [ -119.662410288999979, 49.607137583000032 ], [ -119.66233417899997, 49.607034678000048 ], [ -119.662220771999941, 49.606951308000177 ], [ -119.661982686999949, 49.606865202000016 ], [ -119.661524011999958, 49.606788738000077 ], [ -119.66108855, 49.606784968000106 ], [ -119.660727600999962, 49.606855116000048 ], [ -119.66016649699999, 49.607097813000031 ], [ -119.660077307999984, 49.607087374000095 ], [ -119.659533851999967, 49.607023817000048 ], [ -119.659516175, 49.60696052400008 ], [ -119.658246607, 49.606150204000059 ], [ -119.65801258599997, 49.605924294000062 ], [ -119.658413988999911, 49.605893599000069 ], [ -119.658758834999958, 49.605850710000013 ], [ -119.659476283999979, 49.605761450000038 ], [ -119.660388752999921, 49.605638650000081 ], [ -119.660721389999964, 49.605572264000031 ], [ -119.661057430999932, 49.604998513000012 ], [ -119.66123542299999, 49.604750555000116 ], [ -119.661688296999941, 49.604119565000083 ], [ -119.661986872999975, 49.603766708000094 ], [ -119.662201045999893, 49.603391759000026 ], [ -119.662339751999966, 49.60324180200007 ], [ -119.662976876999934, 49.602980969000086 ], [ -119.663497679999963, 49.602848800000068 ], [ -119.66368914099999, 49.602823468000125 ], [ -119.664042125, 49.602776718000094 ], [ -119.664388097999947, 49.602814992000077 ], [ -119.664468142999951, 49.602844714000064 ], [ -119.664548029999935, 49.602874399000015 ], [ -119.664575632999956, 49.602884631000038 ], [ -119.664609737999953, 49.602907868000074 ], [ -119.664938615999986, 49.603131621000031 ], [ -119.665067902999979, 49.603170775000116 ], [ -119.665428329999955, 49.603124092000058 ], [ -119.665545667999965, 49.603088834000062 ], [ -119.665735394, 49.603031824000077 ], [ -119.665910292999968, 49.602971588000074 ], [ -119.666332410999985, 49.602810167 ], [ -119.666633399999952, 49.602711216000088 ], [ -119.667411118999951, 49.602860460000038 ], [ -119.667608545999883, 49.602870310000064 ], [ -119.667624836999934, 49.602871132000068 ], [ -119.667962222999961, 49.602820378000104 ], [ -119.668528317999986, 49.602662829000117 ], [ -119.669156147999971, 49.60248811900005 ], [ -119.66934684, 49.602413416000083 ], [ -119.67017199899999, 49.601946808000058 ], [ -119.670502780999939, 49.602417595000063 ], [ -119.670768887999941, 49.602451198000075 ], [ -119.670895998999953, 49.60243519000008 ], [ -119.670995806999926, 49.602385893000069 ], [ -119.671235607999961, 49.602156897000135 ], [ -119.671822791999887, 49.602056608000076 ], [ -119.672064688999953, 49.602084204000079 ], [ -119.672015388999966, 49.602623333000103 ], [ -119.672007882999978, 49.603232446000099 ], [ -119.671621928999954, 49.603232512000062 ], [ -119.67078212699991, 49.603281992000056 ], [ -119.670694781999913, 49.603315053000124 ], [ -119.670515516999984, 49.60338296500008 ], [ -119.669571068999943, 49.603938059000015 ], [ -119.669186111999977, 49.604164317000013 ], [ -119.670699499999969, 49.604663752000114 ], [ -119.67416674, 49.60580790800001 ], [ -119.674458207000015, 49.60590409499999 ], [ -119.674486600999941, 49.605914997000106 ], [ -119.675106947999922, 49.606153244000048 ], [ -119.675602612999938, 49.606395253000088 ], [ -119.675890297999928, 49.6065745840001 ], [ -119.676167607999972, 49.606748793000122 ], [ -119.676851568999908, 49.607297096000131 ], [ -119.676954615999989, 49.607394944000049 ], [ -119.67706647199995, 49.607501089000088 ], [ -119.677379777999988, 49.607907688000111 ], [ -119.677394152999952, 49.607933391000124 ], [ -119.677211366999984, 49.608061132000103 ], [ -119.676927318999944, 49.608259702000034 ], [ -119.676859299999975, 49.608360513000015 ], [ -119.676411461999962, 49.608677126000117 ], [ -119.676316302999936, 49.608744398000063 ], [ -119.675932410999962, 49.608961295 ], [ -119.675632391999969, 49.609092917000048 ], [ -119.675154438999968, 49.609316775000124 ], [ -119.674672107, 49.60954269900008 ], [ -119.674210280999915, 49.609971802000118 ], [ -119.673989510999931, 49.61013329200005 ], [ -119.673569011000012, 49.610343584000098 ], [ -119.673094071999984, 49.610498071000102 ], [ -119.672994724999981, 49.610530400000123 ], [ -119.672942780000014, 49.610585281000091 ], [ -119.672942748999958, 49.610598678000073 ], [ -119.672942495999905, 49.610747512000046 ], [ -119.672938508999962, 49.610927522000082 ], [ -119.672929525999976, 49.611269601000039 ], [ -119.672925538999948, 49.61144961300014 ], [ -119.672910185999925, 49.611674881000084 ], [ -119.672892338999972, 49.611855207000083 ], [ -119.672889338999966, 49.61205319200009 ], [ -119.672879928999947, 49.612134379000032 ], [ -119.672871507999972, 49.612233542000119 ], [ -119.672869994999957, 49.612458474000107 ], [ -119.672853655, 49.612665768000049 ], [ -119.672851119999976, 49.612872737000025 ], [ -119.672841712999926, 49.61295392300012 ], [ -119.672853504, 49.613169559000056 ], [ -119.672837664999975, 49.613385826000076 ], [ -119.672828256999964, 49.613467012000051 ], [ -119.672839077999967, 49.613664696000136 ], [ -119.672835554999892, 49.613853689000038 ], [ -119.672846935999985, 49.614059815000076 ], [ -119.671051702999975, 49.61405049500005 ], [ -119.670145369999929, 49.61404413500005 ], [ -119.67008339099999, 49.614043711000114 ], [ -119.66999346399993, 49.614044811000063 ], [ -119.66730912499996, 49.614051730000064 ], [ -119.666668905999956, 49.613991806000058 ], [ -119.665630866999948, 49.613998956000017 ], [ -119.665340092999912, 49.614000967000017 ], [ -119.664376717999957, 49.614169628000056 ], [ -119.663557761, 49.614448762 ], [ -119.663439925999967, 49.614437380000041 ], [ -119.663312844999922, 49.614362217000085 ], [ -119.663286660999944, 49.614303833000058 ], [ -119.663265043, 49.614255572 ], [ -119.663309290999933, 49.614005263000081 ], [ -119.663277361999917, 49.613854384000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299343278", "BldgCostT": "186715304", "sL_LossRatio": "0.948795490634083", "sL_AssetLoss": "12067.147223", "sL_BldgLoss": "11449.25487", "sL_StrLoss": "11221.74334", "sL_NStrLoss": "227.51153", "sL_ContLoss": "617.892353", "geom_point": "0101000020E6100000BFC7EC6E56EB5DC0287F735676CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.677600291999937, 49.607365093000041 ], [ -119.677413309999977, 49.60705891000007 ], [ -119.676851568999908, 49.607297096000131 ], [ -119.676167607999972, 49.606748793000122 ], [ -119.675890297999928, 49.6065745840001 ], [ -119.675602612999938, 49.606395253000088 ], [ -119.675106947999922, 49.606153244000048 ], [ -119.674486600999941, 49.605914997000106 ], [ -119.674458207000015, 49.60590409499999 ], [ -119.67416674, 49.60580790800001 ], [ -119.670699499999969, 49.604663752000114 ], [ -119.669186111999977, 49.604164317000013 ], [ -119.669571068999943, 49.603938059000015 ], [ -119.670515516999984, 49.60338296500008 ], [ -119.670694781999913, 49.603315053000124 ], [ -119.67078212699991, 49.603281992000056 ], [ -119.671621928999954, 49.603232512000062 ], [ -119.672007882999978, 49.603232446000099 ], [ -119.672602130999948, 49.603231784000116 ], [ -119.673451913999941, 49.603230840000052 ], [ -119.67436036, 49.603231255000033 ], [ -119.675326017999978, 49.603231677000018 ], [ -119.677660398999976, 49.603267452000061 ], [ -119.677652719999969, 49.603828781000118 ], [ -119.67765235199991, 49.603855268000117 ], [ -119.677650108999984, 49.60401729900012 ], [ -119.677645062999986, 49.604387348000074 ], [ -119.677935693000023, 49.604320862000087 ], [ -119.67857967499998, 49.604173553000074 ], [ -119.678962004999931, 49.603998034000057 ], [ -119.679146566999989, 49.603868779000102 ], [ -119.679707182999948, 49.603476065000088 ], [ -119.680078637999927, 49.603318879000028 ], [ -119.680485958999952, 49.603234240000084 ], [ -119.680884031999966, 49.603216757000034 ], [ -119.680889035999897, 49.60356480300004 ], [ -119.680894175999953, 49.603923920000106 ], [ -119.680901865999914, 49.604459620000021 ], [ -119.681805973999928, 49.60446709100006 ], [ -119.681776209999981, 49.605561793000035 ], [ -119.683224309999972, 49.605581882000102 ], [ -119.683197903999982, 49.606440210000095 ], [ -119.683277899999922, 49.60675641400011 ], [ -119.683291241999925, 49.6067981220001 ], [ -119.68332940699996, 49.606917500000066 ], [ -119.68334149899999, 49.607414898000073 ], [ -119.677600291999937, 49.607365093000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182113282", "BldgCostT": "98978205", "sL_LossRatio": "0.935145310177993", "sL_AssetLoss": "11071.064066", "sL_BldgLoss": "10353.05364", "sL_StrLoss": "10089.26356", "sL_NStrLoss": "263.79008", "sL_ContLoss": "718.010426", "geom_point": "0101000020E6100000284F4AB54DEB5DC0A8D3680F07CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.677652719999969, 49.603828781000118 ], [ -119.677660398999976, 49.603267452000061 ], [ -119.675326017999978, 49.603231677000018 ], [ -119.67436036, 49.603231255000033 ], [ -119.673451913999941, 49.603230840000052 ], [ -119.672602130999948, 49.603231784000116 ], [ -119.672007882999978, 49.603232446000099 ], [ -119.672015388999966, 49.602623333000103 ], [ -119.672064688999953, 49.602084204000079 ], [ -119.671822791999887, 49.602056608000076 ], [ -119.671235607999961, 49.602156897000135 ], [ -119.670995806999926, 49.602385893000069 ], [ -119.670895998999953, 49.60243519000008 ], [ -119.670768887999941, 49.602451198000075 ], [ -119.670502780999939, 49.602417595000063 ], [ -119.67017199899999, 49.601946808000058 ], [ -119.670313333999928, 49.601865803000074 ], [ -119.670930166999938, 49.601512329000087 ], [ -119.670666864999987, 49.601246821000046 ], [ -119.670595265, 49.600990619000072 ], [ -119.670607078999979, 49.600784511000136 ], [ -119.670722763999891, 49.600619726000062 ], [ -119.670855586999949, 49.600532608000037 ], [ -119.671047379999905, 49.600480497000049 ], [ -119.67213717599995, 49.60039960400006 ], [ -119.672260092999949, 49.600323705000079 ], [ -119.672328704, 49.600067490000086 ], [ -119.673105319999976, 49.600153464000108 ], [ -119.673304208999951, 49.600070176000081 ], [ -119.673368603999947, 49.600000768000072 ], [ -119.673459101999981, 49.599903137000084 ], [ -119.675560342999958, 49.600572026000087 ], [ -119.676106530999917, 49.600567742000116 ], [ -119.677869804999929, 49.600555777000046 ], [ -119.678017937999954, 49.599489653000106 ], [ -119.6782994499999, 49.59949183500008 ], [ -119.679143924999963, 49.599498343000107 ], [ -119.679335707999954, 49.599499363000163 ], [ -119.679911071999982, 49.599502389000094 ], [ -119.680526455999939, 49.59950931 ], [ -119.680537329999979, 49.600000859000083 ], [ -119.68055730599994, 49.600899289000083 ], [ -119.680567598, 49.601328803000072 ], [ -119.680856580999944, 49.601327604000105 ], [ -119.682168616999903, 49.6013263030001 ], [ -119.682152480999918, 49.602200505000042 ], [ -119.682186401999957, 49.603215797000104 ], [ -119.680884031999966, 49.603216757000034 ], [ -119.680485958999952, 49.603234240000084 ], [ -119.680078637999927, 49.603318879000028 ], [ -119.679707182999948, 49.603476065000088 ], [ -119.679146566999989, 49.603868779000102 ], [ -119.678962004999931, 49.603998034000057 ], [ -119.67857967499998, 49.604173553000074 ], [ -119.677935693000023, 49.604320862000087 ], [ -119.677645062999986, 49.604387348000074 ], [ -119.677650108999984, 49.60401729900012 ], [ -119.67765235199991, 49.603855268000117 ], [ -119.677652719999969, 49.603828781000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132715166", "BldgCostT": "87896666", "sL_LossRatio": "0.988402919793582", "sL_AssetLoss": "17590.63802", "sL_BldgLoss": "17386.63798", "sL_StrLoss": "17302.28508", "sL_NStrLoss": "84.3529", "sL_ContLoss": "204.00004", "geom_point": "0101000020E610000087CAD83378EB5DC02FA8B1B5A5CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.675560342999958, 49.600572026000087 ], [ -119.673459101999981, 49.599903137000084 ], [ -119.673368603999947, 49.600000768000072 ], [ -119.673304208999951, 49.600070176000081 ], [ -119.673105319999976, 49.600153464000108 ], [ -119.672328704, 49.600067490000086 ], [ -119.671898088999939, 49.599975721000099 ], [ -119.671878428999918, 49.599971547000081 ], [ -119.670858712999944, 49.599754204000099 ], [ -119.670485699999986, 49.599720703000052 ], [ -119.669787207999917, 49.599702610000065 ], [ -119.669794091, 49.599400409000118 ], [ -119.669875986999926, 49.598957200000029 ], [ -119.669202309999918, 49.598778788000054 ], [ -119.66886050600003, 49.598650492000047 ], [ -119.669079618999945, 49.59849078900006 ], [ -119.669231207999957, 49.598418407000104 ], [ -119.670169696999949, 49.598135286000037 ], [ -119.67070718799999, 49.597881295000079 ], [ -119.670980497999921, 49.59779248800001 ], [ -119.671526112999985, 49.597711402000094 ], [ -119.672856790999958, 49.597573996000087 ], [ -119.675583289999949, 49.59738071000006 ], [ -119.676214113999933, 49.597336207000147 ], [ -119.676378215999961, 49.597404497000085 ], [ -119.676572009, 49.597459109000148 ], [ -119.677309713999975, 49.597565300000106 ], [ -119.677602315999962, 49.597537196000111 ], [ -119.678038592999911, 49.59739288300009 ], [ -119.678896907999942, 49.596985909000047 ], [ -119.680059547999946, 49.596107313000125 ], [ -119.680326725999976, 49.595905425000112 ], [ -119.68041050799998, 49.595842081000157 ], [ -119.681175135999965, 49.595853228000045 ], [ -119.681167543999962, 49.596211346000068 ], [ -119.681157948999939, 49.596583770000024 ], [ -119.681111462999965, 49.597557385000037 ], [ -119.681323974999927, 49.59764742600008 ], [ -119.681649550999978, 49.597661873000099 ], [ -119.682561116999977, 49.597665262000071 ], [ -119.683819349999936, 49.597670762000043 ], [ -119.685206896999972, 49.597674803000054 ], [ -119.685200801999926, 49.598577513000137 ], [ -119.68639550099999, 49.598577169000109 ], [ -119.688304774999935, 49.598576611000055 ], [ -119.689445899999939, 49.598596891000028 ], [ -119.689447597999916, 49.599443200000081 ], [ -119.689415239999988, 49.599603426000058 ], [ -119.689343407999928, 49.599959210000087 ], [ -119.68933318900001, 49.60000159600002 ], [ -119.689171788999914, 49.600672592000123 ], [ -119.686298396999973, 49.600640890000065 ], [ -119.68631979499996, 49.60014189900005 ], [ -119.684942975999931, 49.600129500000122 ], [ -119.68462438899995, 49.600124502000021 ], [ -119.682894530999974, 49.600086109000053 ], [ -119.68261051899999, 49.60013190700014 ], [ -119.682280118999969, 49.599971981000053 ], [ -119.681867730999898, 49.599772419000033 ], [ -119.681458669, 49.599574434000068 ], [ -119.681388247999962, 49.599520541000054 ], [ -119.681228843, 49.599398501000067 ], [ -119.681219706999968, 49.599379477000099 ], [ -119.680886702999913, 49.598686776000122 ], [ -119.6807029799999, 49.598175727000104 ], [ -119.680618524999929, 49.598143722000032 ], [ -119.680605227999962, 49.597957790000052 ], [ -119.680427044999959, 49.59786069900008 ], [ -119.679928778999937, 49.597900339000049 ], [ -119.67957184399998, 49.597972578000089 ], [ -119.679176301999988, 49.598103072000086 ], [ -119.679157081999904, 49.598112948000093 ], [ -119.678929853999975, 49.59822959200006 ], [ -119.678693582999927, 49.598433506000042 ], [ -119.67821981799996, 49.59917406300012 ], [ -119.678017937999954, 49.599489653000106 ], [ -119.677869804999929, 49.600555777000046 ], [ -119.676106530999917, 49.600567742000116 ], [ -119.675560342999958, 49.600572026000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "430839132", "BldgCostT": "250991245", "sL_LossRatio": "0.867796415102632", "sL_AssetLoss": "31512.8614949", "sL_BldgLoss": "27346.7482349", "sL_StrLoss": "25734.6848349", "sL_NStrLoss": "1612.0634", "sL_ContLoss": "4166.11326", "geom_point": "0101000020E610000081F036A9C7EB5DC08141994613CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.681776209999981, 49.605561793000035 ], [ -119.681805973999928, 49.60446709100006 ], [ -119.680901865999914, 49.604459620000021 ], [ -119.680894175999953, 49.603923920000106 ], [ -119.680889035999897, 49.60356480300004 ], [ -119.680884031999966, 49.603216757000034 ], [ -119.682186401999957, 49.603215797000104 ], [ -119.682152480999918, 49.602200505000042 ], [ -119.682168616999903, 49.6013263030001 ], [ -119.680856580999944, 49.601327604000105 ], [ -119.680567598, 49.601328803000072 ], [ -119.68055730599994, 49.600899289000083 ], [ -119.680537329999979, 49.600000859000083 ], [ -119.680526455999939, 49.59950931 ], [ -119.679911071999982, 49.599502389000094 ], [ -119.679335707999954, 49.599499363000163 ], [ -119.679143924999963, 49.599498343000107 ], [ -119.6782994499999, 49.59949183500008 ], [ -119.678017937999954, 49.599489653000106 ], [ -119.67821981799996, 49.59917406300012 ], [ -119.678693582999927, 49.598433506000042 ], [ -119.678929853999975, 49.59822959200006 ], [ -119.679157081999904, 49.598112948000093 ], [ -119.679176301999988, 49.598103072000086 ], [ -119.67957184399998, 49.597972578000089 ], [ -119.679928778999937, 49.597900339000049 ], [ -119.680427044999959, 49.59786069900008 ], [ -119.680605227999962, 49.597957790000052 ], [ -119.680618524999929, 49.598143722000032 ], [ -119.6807029799999, 49.598175727000104 ], [ -119.680886702999913, 49.598686776000122 ], [ -119.681219706999968, 49.599379477000099 ], [ -119.681228843, 49.599398501000067 ], [ -119.681388247999962, 49.599520541000054 ], [ -119.681458669, 49.599574434000068 ], [ -119.681867730999898, 49.599772419000033 ], [ -119.682280118999969, 49.599971981000053 ], [ -119.68261051899999, 49.60013190700014 ], [ -119.682894530999974, 49.600086109000053 ], [ -119.68462438899995, 49.600124502000021 ], [ -119.684942975999931, 49.600129500000122 ], [ -119.68631979499996, 49.60014189900005 ], [ -119.686298396999973, 49.600640890000065 ], [ -119.689171788999914, 49.600672592000123 ], [ -119.689141805999938, 49.601678811000106 ], [ -119.689125115999957, 49.602376802000052 ], [ -119.68908639499989, 49.602911003000017 ], [ -119.689044287999963, 49.602944692000058 ], [ -119.68890288599999, 49.602983402000071 ], [ -119.688796994999947, 49.602991594000038 ], [ -119.688302294999971, 49.60302980700002 ], [ -119.688081493999945, 49.603071101000069 ], [ -119.687718407999924, 49.603237894000152 ], [ -119.687244092999933, 49.603234718000103 ], [ -119.686172885999952, 49.603230190000033 ], [ -119.686086887999963, 49.605613001000059 ], [ -119.685557106999937, 49.605609294000018 ], [ -119.684191726000023, 49.605594007000093 ], [ -119.683466127999949, 49.605584925000123 ], [ -119.683224309999972, 49.605581882000102 ], [ -119.681776209999981, 49.605561793000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143113833", "BldgCostT": "96123333", "sL_LossRatio": "0.978913080853834", "sL_AssetLoss": "20180.11816", "sL_BldgLoss": "19754.58164", "sL_StrLoss": "19587.84364", "sL_NStrLoss": "166.738", "sL_ContLoss": "425.53652", "geom_point": "0101000020E61000002008D2BDF5EB5DC0D156A15859CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.689447597999916, 49.599443200000081 ], [ -119.689445899999939, 49.598596891000028 ], [ -119.688304774999935, 49.598576611000055 ], [ -119.68639550099999, 49.598577169000109 ], [ -119.685200801999926, 49.598577513000137 ], [ -119.685206896999972, 49.597674803000054 ], [ -119.683819349999936, 49.597670762000043 ], [ -119.682561116999977, 49.597665262000071 ], [ -119.681649550999978, 49.597661873000099 ], [ -119.681323974999927, 49.59764742600008 ], [ -119.681111462999965, 49.597557385000037 ], [ -119.681157948999939, 49.596583770000024 ], [ -119.681167543999962, 49.596211346000068 ], [ -119.681175135999965, 49.595853228000045 ], [ -119.681178366999973, 49.594265672000077 ], [ -119.681917544999934, 49.594250034000027 ], [ -119.68257072899999, 49.594233864000067 ], [ -119.683098846999982, 49.594178816000046 ], [ -119.683216163999987, 49.594167094000071 ], [ -119.683670206999977, 49.594121764000128 ], [ -119.684006131999965, 49.594050994000028 ], [ -119.684202339999956, 49.593976614000091 ], [ -119.684606655999943, 49.593711142000082 ], [ -119.684824443999943, 49.593522451000098 ], [ -119.68533932099993, 49.593076427000071 ], [ -119.68579023499997, 49.59278476100009 ], [ -119.686158948999918, 49.592616559000071 ], [ -119.686413984999902, 49.592538387000069 ], [ -119.686692146000013, 49.592503976000017 ], [ -119.687092271000012, 49.592501075000044 ], [ -119.687564651999963, 49.592447276000094 ], [ -119.68822219299993, 49.592227223000059 ], [ -119.688593695999955, 49.592018537000115 ], [ -119.689017298999914, 49.591740605000062 ], [ -119.689292381999948, 49.591560117000064 ], [ -119.689181339999948, 49.594152253000118 ], [ -119.689433811999947, 49.594151341000114 ], [ -119.689455918999926, 49.594304301000079 ], [ -119.68966119399991, 49.59572568300009 ], [ -119.689660865999969, 49.595830011000054 ], [ -119.689657838999921, 49.596743407000055 ], [ -119.689657229999938, 49.596923627000109 ], [ -119.68965490600003, 49.597627219000081 ], [ -119.689654883999978, 49.597630892000026 ], [ -119.689564374999961, 49.597693393000043 ], [ -119.69090197899996, 49.597697101000087 ], [ -119.692245006999954, 49.597722792000084 ], [ -119.692672409999957, 49.597976194000061 ], [ -119.69259301999989, 49.598524299000076 ], [ -119.692110101999958, 49.59865418800009 ], [ -119.692005403999957, 49.59870960600005 ], [ -119.691661610999986, 49.599544897000072 ], [ -119.691632816999942, 49.600004288000015 ], [ -119.69159168399996, 49.600660712000014 ], [ -119.691493112999979, 49.601409013000143 ], [ -119.690284388999885, 49.601395692000025 ], [ -119.69023058399992, 49.602383298000049 ], [ -119.689125115999957, 49.602376802000052 ], [ -119.689141805999938, 49.601678811000106 ], [ -119.689171788999914, 49.600672592000123 ], [ -119.68933318900001, 49.60000159600002 ], [ -119.689343407999928, 49.599959210000087 ], [ -119.689415239999988, 49.599603426000058 ], [ -119.689447597999916, 49.599443200000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119714917", "BldgCostT": "80406667", "sL_LossRatio": "0.99547987133015", "sL_AssetLoss": "13868.32424", "sL_BldgLoss": "13805.63763", "sL_StrLoss": "13780.04453", "sL_NStrLoss": "25.5931", "sL_ContLoss": "62.68661", "geom_point": "0101000020E6100000DE53F7D057EC5DC04EB7704923CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.690099397999973, 49.604257812000071 ], [ -119.689368702999971, 49.604119607000037 ], [ -119.68722432399997, 49.604055404000093 ], [ -119.687244092999933, 49.603234718000103 ], [ -119.687718407999924, 49.603237894000152 ], [ -119.688081493999945, 49.603071101000069 ], [ -119.688302294999971, 49.60302980700002 ], [ -119.688796994999947, 49.602991594000038 ], [ -119.68890288599999, 49.602983402000071 ], [ -119.689044287999963, 49.602944692000058 ], [ -119.68908639499989, 49.602911003000017 ], [ -119.689125115999957, 49.602376802000052 ], [ -119.69023058399992, 49.602383298000049 ], [ -119.690284388999885, 49.601395692000025 ], [ -119.691493112999979, 49.601409013000143 ], [ -119.69159168399996, 49.600660712000014 ], [ -119.691632816999942, 49.600004288000015 ], [ -119.691661610999986, 49.599544897000072 ], [ -119.692005403999957, 49.59870960600005 ], [ -119.692110101999958, 49.59865418800009 ], [ -119.69259301999989, 49.598524299000076 ], [ -119.692672409999957, 49.597976194000061 ], [ -119.69315179899999, 49.598023006000069 ], [ -119.693502707999954, 49.598116493000092 ], [ -119.693925197999974, 49.598325310000071 ], [ -119.69413160699996, 49.598540494000069 ], [ -119.694478316999962, 49.599433110000057 ], [ -119.694637096999941, 49.599996314000109 ], [ -119.694809719999967, 49.600608409000074 ], [ -119.694929997999921, 49.600712888000096 ], [ -119.695473700999955, 49.600827613000071 ], [ -119.696146498999966, 49.601174151000059 ], [ -119.696445443999963, 49.602020421000041 ], [ -119.696569948999965, 49.602715833000069 ], [ -119.696547418999955, 49.603115978000041 ], [ -119.696252912999981, 49.603495508000066 ], [ -119.695374111999968, 49.603778607000073 ], [ -119.695185103999975, 49.603840812000044 ], [ -119.695470382999986, 49.60410841200008 ], [ -119.69591099199999, 49.604348010000102 ], [ -119.696024810999958, 49.604449511000027 ], [ -119.696299427999918, 49.605382104000078 ], [ -119.69627662, 49.605547795000142 ], [ -119.696187686999934, 49.605709795000024 ], [ -119.69579407499999, 49.605745592000076 ], [ -119.695133384999934, 49.605734290000051 ], [ -119.693754595999962, 49.605715591000035 ], [ -119.690325281999932, 49.605665297000073 ], [ -119.690232602999927, 49.605350210000047 ], [ -119.690312391999925, 49.605173293000092 ], [ -119.690427315999955, 49.605095104000036 ], [ -119.690818776999933, 49.604922804000047 ], [ -119.69091110699999, 49.604807080000064 ], [ -119.690938078999963, 49.604671399000033 ], [ -119.690919096999949, 49.604577312000096 ], [ -119.690800189999948, 49.604452001000048 ], [ -119.6906554, 49.604394901000084 ], [ -119.690099397999973, 49.604257812000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236641508", "BldgCostT": "152520784", "sL_LossRatio": "0.994878293882863", "sL_AssetLoss": "17831.437984", "sL_BldgLoss": "17740.110599", "sL_StrLoss": "17696.649569", "sL_NStrLoss": "43.46103", "sL_ContLoss": "91.327385", "geom_point": "0101000020E6100000366819901AEC5DC024F822B10FCE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.682947109999972, 49.614138292000064 ], [ -119.683007618999952, 49.61231315600007 ], [ -119.683028698, 49.611677510000092 ], [ -119.683034704999969, 49.611503467000055 ], [ -119.683042818999965, 49.611269123000042 ], [ -119.683082300999942, 49.610127209000026 ], [ -119.68311009599995, 49.609248298000068 ], [ -119.683166405999927, 49.608831985000059 ], [ -119.683190107999962, 49.608656887000116 ], [ -119.683212150000017, 49.608559123000077 ], [ -119.683282693999914, 49.608246011000077 ], [ -119.683310127999945, 49.608117502000034 ], [ -119.685204469999988, 49.608166643000068 ], [ -119.685271916000019, 49.608168405000079 ], [ -119.68556552299998, 49.608155740000051 ], [ -119.686011215999955, 49.608274143000081 ], [ -119.686033578999954, 49.607697991000109 ], [ -119.685992295999966, 49.607614292000108 ], [ -119.685887903999955, 49.607565798000095 ], [ -119.685018288999942, 49.607528708000103 ], [ -119.683338179999964, 49.607509504000134 ], [ -119.68334149899999, 49.607414898000073 ], [ -119.68332940699996, 49.606917500000066 ], [ -119.683291241999925, 49.6067981220001 ], [ -119.683277899999922, 49.60675641400011 ], [ -119.683197903999982, 49.606440210000095 ], [ -119.683224309999972, 49.605581882000102 ], [ -119.683466127999949, 49.605584925000123 ], [ -119.684191726000023, 49.605594007000093 ], [ -119.685557106999937, 49.605609294000018 ], [ -119.686086887999963, 49.605613001000059 ], [ -119.686172885999952, 49.603230190000033 ], [ -119.687244092999933, 49.603234718000103 ], [ -119.68722432399997, 49.604055404000093 ], [ -119.689368702999971, 49.604119607000037 ], [ -119.690099397999973, 49.604257812000071 ], [ -119.6906554, 49.604394901000084 ], [ -119.690800189999948, 49.604452001000048 ], [ -119.690919096999949, 49.604577312000096 ], [ -119.690938078999963, 49.604671399000033 ], [ -119.69091110699999, 49.604807080000064 ], [ -119.690818776999933, 49.604922804000047 ], [ -119.690427315999955, 49.605095104000036 ], [ -119.690312391999925, 49.605173293000092 ], [ -119.690232602999927, 49.605350210000047 ], [ -119.690325281999932, 49.605665297000073 ], [ -119.693754595999962, 49.605715591000035 ], [ -119.693734531999951, 49.606342554000086 ], [ -119.693718224999955, 49.606852770000046 ], [ -119.693706866999946, 49.607207105000029 ], [ -119.693684418999908, 49.607908617000056 ], [ -119.693634556999911, 49.609466225000055 ], [ -119.693614101999984, 49.610105423000086 ], [ -119.693608996999899, 49.610264310000041 ], [ -119.693587567999884, 49.610945791000105 ], [ -119.697012338999954, 49.61099117600002 ], [ -119.697006079999966, 49.611779525000046 ], [ -119.697001772999926, 49.612322587000051 ], [ -119.697012356999963, 49.612365791000066 ], [ -119.697048906999939, 49.61251500700007 ], [ -119.697283783, 49.612907992000025 ], [ -119.697618512999966, 49.61334280300008 ], [ -119.697841164999929, 49.613569002000091 ], [ -119.698085299999889, 49.613817014000105 ], [ -119.698190912999948, 49.613957691000032 ], [ -119.698066624999925, 49.613973012000073 ], [ -119.697438888999955, 49.613619614000086 ], [ -119.697188307999937, 49.6135436100001 ], [ -119.6970078209999, 49.613541390000044 ], [ -119.69699141199996, 49.6135412040001 ], [ -119.696767908999902, 49.613581506000031 ], [ -119.696599073999948, 49.6136259150001 ], [ -119.694374982999989, 49.614211090000047 ], [ -119.69406739599998, 49.614256501000042 ], [ -119.693544898999946, 49.614269494000069 ], [ -119.692932831999983, 49.614260641000058 ], [ -119.690336697999967, 49.614222993000091 ], [ -119.687354208999977, 49.614180609000066 ], [ -119.684468774999957, 49.614152936000011 ], [ -119.682947109999972, 49.614138292000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174108417", "BldgCostT": "115031667", "sL_LossRatio": "0.994703985211929", "sL_AssetLoss": "19110.1605358", "sL_BldgLoss": "19008.952843", "sL_StrLoss": "18970.435013", "sL_NStrLoss": "38.51783", "sL_ContLoss": "101.2076928", "geom_point": "0101000020E6100000F695C5CC97EB5DC024D6CA00A7CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.679028203999977, 49.617417889000059 ], [ -119.678932440999972, 49.617215095000105 ], [ -119.678804602999904, 49.616944306000043 ], [ -119.678677300999979, 49.616436503000067 ], [ -119.678653208999947, 49.615996213000059 ], [ -119.678506910999943, 49.615995650000066 ], [ -119.678470005999912, 49.615995490000103 ], [ -119.67521808399998, 49.615982199000022 ], [ -119.673399892999953, 49.615975604000027 ], [ -119.672716632999979, 49.61597550200004 ], [ -119.672760467999979, 49.615933117000104 ], [ -119.672777153999945, 49.615906933000097 ], [ -119.672832161, 49.615814941000053 ], [ -119.672842556999953, 49.615751730000078 ], [ -119.672850475999908, 49.615643596000012 ], [ -119.672879653999971, 49.615418020000106 ], [ -119.67286439899999, 49.615139486000032 ], [ -119.672884688999886, 49.615004091000046 ], [ -119.672880741999947, 49.614932189000108 ], [ -119.672884727999971, 49.614752176000088 ], [ -119.672887765999988, 49.614554177000052 ], [ -119.672873497999959, 49.614293618000033 ], [ -119.672850365, 49.614118346000041 ], [ -119.672846935999985, 49.614059815000076 ], [ -119.672835554999892, 49.613853689000038 ], [ -119.672839077999967, 49.613664696000136 ], [ -119.672828256999964, 49.613467012000051 ], [ -119.672837664999975, 49.613385826000076 ], [ -119.672853504, 49.613169559000056 ], [ -119.672841712999926, 49.61295392300012 ], [ -119.672851119999976, 49.612872737000025 ], [ -119.672853655, 49.612665768000049 ], [ -119.672869994999957, 49.612458474000107 ], [ -119.672871507999972, 49.612233542000119 ], [ -119.672879928999947, 49.612134379000032 ], [ -119.672889338999966, 49.61205319200009 ], [ -119.672892338999972, 49.611855207000083 ], [ -119.672910185999925, 49.611674881000084 ], [ -119.672925538999948, 49.61144961300014 ], [ -119.672929525999976, 49.611269601000039 ], [ -119.672938508999962, 49.610927522000082 ], [ -119.672942495999905, 49.610747512000046 ], [ -119.672942748999958, 49.610598678000073 ], [ -119.672942780000014, 49.610585281000091 ], [ -119.672994724999981, 49.610530400000123 ], [ -119.673094071999984, 49.610498071000102 ], [ -119.673569011000012, 49.610343584000098 ], [ -119.673989510999931, 49.61013329200005 ], [ -119.674210280999915, 49.609971802000118 ], [ -119.674672107, 49.60954269900008 ], [ -119.675154438999968, 49.609316775000124 ], [ -119.675632391999969, 49.609092917000048 ], [ -119.675932410999962, 49.608961295 ], [ -119.676316302999936, 49.608744398000063 ], [ -119.676411461999962, 49.608677126000117 ], [ -119.676859299999975, 49.608360513000015 ], [ -119.676927318999944, 49.608259702000034 ], [ -119.677211366999984, 49.608061132000103 ], [ -119.677394152999952, 49.607933391000124 ], [ -119.677379777999988, 49.607907688000111 ], [ -119.67706647199995, 49.607501089000088 ], [ -119.676954615999989, 49.607394944000049 ], [ -119.676851568999908, 49.607297096000131 ], [ -119.677413309999977, 49.60705891000007 ], [ -119.677600291999937, 49.607365093000041 ], [ -119.68334149899999, 49.607414898000073 ], [ -119.683338179999964, 49.607509504000134 ], [ -119.685018288999942, 49.607528708000103 ], [ -119.685887903999955, 49.607565798000095 ], [ -119.685992295999966, 49.607614292000108 ], [ -119.686033578999954, 49.607697991000109 ], [ -119.686011215999955, 49.608274143000081 ], [ -119.68556552299998, 49.608155740000051 ], [ -119.685271916000019, 49.608168405000079 ], [ -119.685204469999988, 49.608166643000068 ], [ -119.683310127999945, 49.608117502000034 ], [ -119.683282693999914, 49.608246011000077 ], [ -119.683212150000017, 49.608559123000077 ], [ -119.683190107999962, 49.608656887000116 ], [ -119.683166405999927, 49.608831985000059 ], [ -119.68311009599995, 49.609248298000068 ], [ -119.683082300999942, 49.610127209000026 ], [ -119.683042818999965, 49.611269123000042 ], [ -119.683034704999969, 49.611503467000055 ], [ -119.683028698, 49.611677510000092 ], [ -119.683007618999952, 49.61231315600007 ], [ -119.682947109999972, 49.614138292000064 ], [ -119.684468774999957, 49.614152936000011 ], [ -119.687354208999977, 49.614180609000066 ], [ -119.690336697999967, 49.614222993000091 ], [ -119.690327897999978, 49.614703839000086 ], [ -119.690301495999975, 49.616146383000022 ], [ -119.69028297399997, 49.617227153000059 ], [ -119.690281700999975, 49.617301304000108 ], [ -119.690087791999972, 49.617904089000078 ], [ -119.6898147199999, 49.61787020100018 ], [ -119.68685908199997, 49.617802195000067 ], [ -119.686816271999959, 49.61805371500008 ], [ -119.686759236999961, 49.618388636000084 ], [ -119.686585335999951, 49.619409764000117 ], [ -119.686375888999976, 49.620639703000073 ], [ -119.686303279999919, 49.621066194000051 ], [ -119.68618927599999, 49.621742781000115 ], [ -119.686167789999956, 49.621870200000096 ], [ -119.685920403999916, 49.622457285000088 ], [ -119.685605505999931, 49.622949299000055 ], [ -119.685383598999948, 49.623229893000072 ], [ -119.685287081999945, 49.623330215000067 ], [ -119.684882133999949, 49.623751054000131 ], [ -119.684643019999982, 49.623999604000069 ], [ -119.684333425999952, 49.624274138000096 ], [ -119.684266494999989, 49.624333494000055 ], [ -119.684045804999968, 49.624443501 ], [ -119.683674564999976, 49.624516743000072 ], [ -119.683534129999927, 49.624494217000063 ], [ -119.68353323300002, 49.624494063000078 ], [ -119.683089735999957, 49.624426714000037 ], [ -119.68310177599993, 49.623966468000091 ], [ -119.683136294999926, 49.6226474770001 ], [ -119.683137754999947, 49.622593625000022 ], [ -119.683138386999971, 49.622569214000087 ], [ -119.68313669099993, 49.622503443000056 ], [ -119.683127440999939, 49.622151995000074 ], [ -119.683121710999984, 49.621933302000066 ], [ -119.683030596999942, 49.621474602000092 ], [ -119.682875343999925, 49.621078221000118 ], [ -119.682851805999945, 49.621018090000064 ], [ -119.682477686999945, 49.620426509000062 ], [ -119.682428305, 49.620374484000124 ], [ -119.68235547499998, 49.620297773000054 ], [ -119.682200695999953, 49.620134784000086 ], [ -119.681944013999953, 49.619864406000076 ], [ -119.681622708999896, 49.619605385000014 ], [ -119.681246373999926, 49.619349774000085 ], [ -119.681188826999943, 49.61931071700004 ], [ -119.680228206999956, 49.618658203000017 ], [ -119.679867787999967, 49.618370815000077 ], [ -119.679373112999968, 49.617888598000057 ], [ -119.679320127999944, 49.617816292000057 ], [ -119.679028203999977, 49.617417889000059 ] ], [ [ -119.684063639999962, 49.616192910000045 ], [ -119.684176930999968, 49.61536926900007 ], [ -119.6828965699999, 49.61529477400012 ], [ -119.682999120999938, 49.614549343000107 ], [ -119.682981448999939, 49.614549753000063 ], [ -119.6829474199999, 49.614797113000058 ], [ -119.682447267999947, 49.614768008000048 ], [ -119.682444995999973, 49.614784524000058 ], [ -119.682389255999936, 49.614781280000095 ], [ -119.682179983999958, 49.616302280000092 ], [ -119.682388181999926, 49.616314397000075 ], [ -119.682418070999958, 49.61609716300012 ], [ -119.684063639999962, 49.616192910000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7114667", "BldgCostT": "4906667", "sL_LossRatio": "0.999998471405454", "sL_AssetLoss": "768.025768", "sL_BldgLoss": "768.024594", "sL_StrLoss": "768.000314", "sL_NStrLoss": "0.02428", "sL_ContLoss": "0.001174", "geom_point": "0101000020E6100000CDD587DC69EC5DC003607E9F58D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.691486094, 49.651564903000072 ], [ -119.691406088999926, 49.651342714000066 ], [ -119.691577901999949, 49.650717493000101 ], [ -119.691660982999949, 49.64993280500007 ], [ -119.691467685999953, 49.649694899000082 ], [ -119.691053304999954, 49.649479890000066 ], [ -119.690310417999967, 49.649074003000109 ], [ -119.69030506199999, 49.64906763100003 ], [ -119.694815492999965, 49.649329480000041 ], [ -119.695194024999964, 49.649609012000077 ], [ -119.695421578999969, 49.649809129000126 ], [ -119.695170039999979, 49.651639636000084 ], [ -119.697273778999886, 49.651761688000036 ], [ -119.69754271699999, 49.652108948000063 ], [ -119.697542815999938, 49.652109086000017 ], [ -119.697551907999966, 49.652120853000092 ], [ -119.697593408999978, 49.652194196000131 ], [ -119.697654513999922, 49.652302096000064 ], [ -119.697883617999977, 49.652706796000061 ], [ -119.697954382999939, 49.652831751000072 ], [ -119.69760769199999, 49.652836856000071 ], [ -119.693386314999941, 49.65289916600009 ], [ -119.693264165999963, 49.652904435000025 ], [ -119.693204379999912, 49.652811098000029 ], [ -119.692989396999934, 49.652691500000095 ], [ -119.692216193999968, 49.65198079900005 ], [ -119.69170499899991, 49.651758593000082 ], [ -119.691486094, 49.651564903000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171449809", "BldgCostT": "115903643", "sL_LossRatio": "0.997866367834668", "sL_AssetLoss": "20617.1859024", "sL_BldgLoss": "20573.1964114", "sL_StrLoss": "20556.3090914", "sL_NStrLoss": "16.88732", "sL_ContLoss": "43.989491", "geom_point": "0101000020E61000003F4B0CD9EBEA5DC04C3605CF90CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.67658469, 49.633409155000088 ], [ -119.676604108999967, 49.633268200000053 ], [ -119.676370493999968, 49.633254597000089 ], [ -119.676349709999926, 49.633239600000088 ], [ -119.676168309999966, 49.632983194000104 ], [ -119.6759467099999, 49.632215588000079 ], [ -119.674713890999925, 49.630966596000107 ], [ -119.674597396999957, 49.630077903000014 ], [ -119.674095908999931, 49.629297390000126 ], [ -119.674045022999934, 49.629286238000113 ], [ -119.674142941999918, 49.628575707000039 ], [ -119.674947667999945, 49.628622582000034 ], [ -119.675020801999935, 49.628091819000126 ], [ -119.67322789799999, 49.627987376000142 ], [ -119.673399474999911, 49.626742461000013 ], [ -119.672330113999948, 49.626680152000063 ], [ -119.672045904999948, 49.628741900000065 ], [ -119.671869412999953, 49.628585292000018 ], [ -119.67147440699992, 49.628458511000105 ], [ -119.671169303999932, 49.628196491000111 ], [ -119.671132304999958, 49.628035508000089 ], [ -119.670417503999886, 49.627628200000096 ], [ -119.670146695999975, 49.627203796000096 ], [ -119.66983721499993, 49.627129699000136 ], [ -119.668894393999906, 49.627132609000107 ], [ -119.66668078, 49.627417395000087 ], [ -119.6639545849999, 49.627957195000057 ], [ -119.662802115999966, 49.627884594000065 ], [ -119.662791902999956, 49.627444496000109 ], [ -119.663408678999986, 49.62581949300003 ], [ -119.663713399999949, 49.624796891000116 ], [ -119.663685998999966, 49.624554791000065 ], [ -119.66342828799999, 49.62413751000004 ], [ -119.661856673, 49.622889480000055 ], [ -119.662709608999947, 49.622939266000067 ], [ -119.662738151000013, 49.622732496000033 ], [ -119.661573384999912, 49.622664507000117 ], [ -119.661401601999955, 49.622528086000017 ], [ -119.660963144999968, 49.622349761000081 ], [ -119.660968147999981, 49.622313524000056 ], [ -119.660858275999956, 49.622307110000051 ], [ -119.660101708999917, 49.621999396000056 ], [ -119.660325970999935, 49.620375365000037 ], [ -119.658236558999974, 49.620253341000101 ], [ -119.658228693999916, 49.619461791000077 ], [ -119.657985390999897, 49.619036009000091 ], [ -119.65789838099991, 49.617976291000097 ], [ -119.657845186999936, 49.617761301000122 ], [ -119.658322493999975, 49.61736390600003 ], [ -119.65862401599999, 49.616663398000078 ], [ -119.659259659999961, 49.616700525000049 ], [ -119.659353852999956, 49.616018432 ], [ -119.65961158099999, 49.616033485000059 ], [ -119.659623545999935, 49.61594683700006 ], [ -119.659991306000023, 49.615968316000135 ], [ -119.660028154999978, 49.615701439000077 ], [ -119.658769739999968, 49.615627939000113 ], [ -119.658767692999959, 49.615607905000104 ], [ -119.658300982999947, 49.614944199000028 ], [ -119.657889215999973, 49.6147192070001 ], [ -119.6575228949999, 49.614638004000071 ], [ -119.657316797999982, 49.614139506000036 ], [ -119.656975011, 49.613967193000086 ], [ -119.656631616999945, 49.613515705000111 ], [ -119.655851306000017, 49.613146896000089 ], [ -119.655387603999898, 49.612770905000097 ], [ -119.655248601000011, 49.612531604000054 ], [ -119.654553513999957, 49.612205508000031 ], [ -119.654067380999962, 49.611677102000051 ], [ -119.652933812999962, 49.611460602000072 ], [ -119.652868885999951, 49.61126399100003 ], [ -119.652749513999964, 49.610583301000062 ], [ -119.652459493999984, 49.610363911000043 ], [ -119.65231171799995, 49.610320391000073 ], [ -119.652382972999987, 49.61031736400011 ], [ -119.65357950399999, 49.61033453000006 ], [ -119.655203260999954, 49.61028043900005 ], [ -119.656148879999961, 49.61024989600002 ], [ -119.656397176999945, 49.610241842000093 ], [ -119.65668519899998, 49.61022036500011 ], [ -119.657511178999982, 49.610158736000109 ], [ -119.658298249999945, 49.610100042000056 ], [ -119.658733917999896, 49.610011698000065 ], [ -119.658821333999953, 49.610102593000164 ], [ -119.659238134999924, 49.610452984000048 ], [ -119.65972196199999, 49.610840693000078 ], [ -119.660571211999951, 49.611478245000065 ], [ -119.661173011999949, 49.611997482000092 ], [ -119.66240489299993, 49.612660058000117 ], [ -119.663032778999963, 49.612909864000144 ], [ -119.663056427999905, 49.612969955000054 ], [ -119.663001677999929, 49.613014624000101 ], [ -119.662904971, 49.613010783000036 ], [ -119.662525681, 49.612861295000116 ], [ -119.66152184299996, 49.612568778000067 ], [ -119.661345320999942, 49.612590071000099 ], [ -119.661239025999947, 49.612656122000089 ], [ -119.661188213999964, 49.612752510000078 ], [ -119.661187183999942, 49.612815203000117 ], [ -119.66118539599999, 49.612923938000044 ], [ -119.661317680999986, 49.613112278000081 ], [ -119.662019629999975, 49.613469375000072 ], [ -119.663153221999934, 49.613747777000093 ], [ -119.663277361999917, 49.613854384000064 ], [ -119.663309290999933, 49.614005263000081 ], [ -119.663265043, 49.614255572 ], [ -119.663286660999944, 49.614303833000058 ], [ -119.663312844999922, 49.614362217000085 ], [ -119.663439925999967, 49.614437380000041 ], [ -119.663557761, 49.614448762 ], [ -119.664376717999957, 49.614169628000056 ], [ -119.665340092999912, 49.614000967000017 ], [ -119.665630866999948, 49.613998956000017 ], [ -119.666668905999956, 49.613991806000058 ], [ -119.66730912499996, 49.614051730000064 ], [ -119.66999346399993, 49.614044811000063 ], [ -119.67008339099999, 49.614043711000114 ], [ -119.670145369999929, 49.61404413500005 ], [ -119.671051702999975, 49.61405049500005 ], [ -119.672846935999985, 49.614059815000076 ], [ -119.672850365, 49.614118346000041 ], [ -119.672873497999959, 49.614293618000033 ], [ -119.672887765999988, 49.614554177000052 ], [ -119.672884727999971, 49.614752176000088 ], [ -119.672880741999947, 49.614932189000108 ], [ -119.672884688999886, 49.615004091000046 ], [ -119.67286439899999, 49.615139486000032 ], [ -119.672879653999971, 49.615418020000106 ], [ -119.672850475999908, 49.615643596000012 ], [ -119.672842556999953, 49.615751730000078 ], [ -119.672832161, 49.615814941000053 ], [ -119.672777153999945, 49.615906933000097 ], [ -119.672760467999979, 49.615933117000104 ], [ -119.672716632999979, 49.61597550200004 ], [ -119.673399892999953, 49.615975604000027 ], [ -119.67521808399998, 49.615982199000022 ], [ -119.678470005999912, 49.615995490000103 ], [ -119.678506910999943, 49.615995650000066 ], [ -119.678653208999947, 49.615996213000059 ], [ -119.678677300999979, 49.616436503000067 ], [ -119.678804602999904, 49.616944306000043 ], [ -119.678932440999972, 49.617215095000105 ], [ -119.679028203999977, 49.617417889000059 ], [ -119.679320127999944, 49.617816292000057 ], [ -119.679373112999968, 49.617888598000057 ], [ -119.679867787999967, 49.618370815000077 ], [ -119.680228206999956, 49.618658203000017 ], [ -119.681188826999943, 49.61931071700004 ], [ -119.681246373999926, 49.619349774000085 ], [ -119.681622708999896, 49.619605385000014 ], [ -119.681944013999953, 49.619864406000076 ], [ -119.682200695999953, 49.620134784000086 ], [ -119.68235547499998, 49.620297773000054 ], [ -119.682428305, 49.620374484000124 ], [ -119.682477686999945, 49.620426509000062 ], [ -119.682851805999945, 49.621018090000064 ], [ -119.682875343999925, 49.621078221000118 ], [ -119.683030596999942, 49.621474602000092 ], [ -119.683121710999984, 49.621933302000066 ], [ -119.683127440999939, 49.622151995000074 ], [ -119.68313669099993, 49.622503443000056 ], [ -119.683138386999971, 49.622569214000087 ], [ -119.683137754999947, 49.622593625000022 ], [ -119.683136294999926, 49.6226474770001 ], [ -119.68310177599993, 49.623966468000091 ], [ -119.683089735999957, 49.624426714000037 ], [ -119.682902907999932, 49.62439991400003 ], [ -119.682885511999956, 49.62474990700013 ], [ -119.68283091499994, 49.625728388000091 ], [ -119.68281409799998, 49.626056147000035 ], [ -119.682683860999958, 49.626448112000048 ], [ -119.682652235999925, 49.626548875000012 ], [ -119.68264028099999, 49.626583034000063 ], [ -119.682360492000015, 49.627115839000112 ], [ -119.682256243999944, 49.627240219000051 ], [ -119.682017190999915, 49.627531403000027 ], [ -119.681902798999943, 49.627682001000032 ], [ -119.680649115999969, 49.629090145000106 ], [ -119.680364396, 49.62950348400004 ], [ -119.680198748999942, 49.629818930000098 ], [ -119.680066787999976, 49.630252880000086 ], [ -119.680016420999891, 49.630668993000029 ], [ -119.680083144999969, 49.631112686000066 ], [ -119.680142536999981, 49.631295787000049 ], [ -119.680222826999966, 49.631540764000114 ], [ -119.680373408999955, 49.631789214000051 ], [ -119.680403530999968, 49.63183836000011 ], [ -119.680400745999961, 49.631858595000011 ], [ -119.68041649599995, 49.631859512000034 ], [ -119.680487966999948, 49.631976116000054 ], [ -119.680987129999949, 49.632497350000072 ], [ -119.681378132999953, 49.632817943000127 ], [ -119.682000736999925, 49.633328475000084 ], [ -119.682127904999945, 49.633507932000107 ], [ -119.681846102999927, 49.635555079000028 ], [ -119.678118806000015, 49.635338192000049 ], [ -119.6779257, 49.635227803000113 ], [ -119.677927296999954, 49.634733607000037 ], [ -119.677026702999939, 49.633728095000045 ], [ -119.67658469, 49.633409155000088 ] ], [ [ -119.677518987999974, 49.624194730000056 ], [ -119.677511999, 49.624067284000027 ], [ -119.676187201999952, 49.623990136000067 ], [ -119.67616984199995, 49.624116164000036 ], [ -119.677518987999974, 49.624194730000056 ] ], [ [ -119.681261308999936, 49.622146462000075 ], [ -119.681286981999961, 49.621959922000023 ], [ -119.68088870699999, 49.621936743000077 ], [ -119.680758917, 49.622879692000055 ], [ -119.681157200999948, 49.622902871000093 ], [ -119.681178543999977, 49.622747807000096 ], [ -119.681145667999971, 49.62214914200009 ], [ -119.681261308999936, 49.622146462000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999993152373865", "sL_AssetLoss": "71.703681", "sL_BldgLoss": "71.70319", "sL_StrLoss": "71.7", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.000491", "geom_point": "0101000020E61000000DB78D50BDEC5DC02FBF368F81D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.69754271699999, 49.652108948000063 ], [ -119.697273778999886, 49.651761688000036 ], [ -119.697555254999912, 49.651778015000154 ], [ -119.697534785999949, 49.651927017000077 ], [ -119.700642466999938, 49.652107231000024 ], [ -119.700547914999945, 49.652795857000058 ], [ -119.698111071, 49.652829510000089 ], [ -119.698021016999988, 49.652830760000036 ], [ -119.697954382999939, 49.652831751000072 ], [ -119.697883617999977, 49.652706796000061 ], [ -119.697654513999922, 49.652302096000064 ], [ -119.697593408999978, 49.652194196000131 ], [ -119.697551907999966, 49.652120853000092 ], [ -119.697542815999938, 49.652109086000017 ], [ -119.69754271699999, 49.652108948000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999986297584493", "sL_AssetLoss": "162.01523", "sL_BldgLoss": "162.01301", "sL_StrLoss": "162", "sL_NStrLoss": "0.01301", "sL_ContLoss": "0.00222", "geom_point": "0101000020E6100000504E7A00C7F25DC02C857AD9FAD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.792555302999943, 49.693725633000099 ], [ -119.794385639999987, 49.69380763900012 ], [ -119.794444190999954, 49.696181245000076 ], [ -119.794452412999988, 49.696514500000092 ], [ -119.792195055999983, 49.69638569600005 ], [ -119.792555302999943, 49.693725633000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325967411", "BldgCostT": "223630743", "sL_LossRatio": "0.975367306175893", "sL_AssetLoss": "19944.3148", "sL_BldgLoss": "19453.0326", "sL_StrLoss": "19047.3836", "sL_NStrLoss": "405.649", "sL_ContLoss": "491.2822", "geom_point": "0101000020E6100000009B20A822ED5DC0D551DD7599D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.718328473999961, 49.652883963000079 ], [ -119.718410464999948, 49.652285129000063 ], [ -119.717575288999967, 49.652236843000018 ], [ -119.717800320999956, 49.650593409000081 ], [ -119.715681737, 49.650470895000055 ], [ -119.715757006999965, 49.649921337000087 ], [ -119.712999689999904, 49.649761823000055 ], [ -119.713266764999915, 49.647812625000071 ], [ -119.712118988000014, 49.647746203000075 ], [ -119.712217725999977, 49.647025677000073 ], [ -119.710180474999945, 49.646907751000128 ], [ -119.710421501999946, 49.645149362000083 ], [ -119.709939382999977, 49.645121449000051 ], [ -119.710028224, 49.644473331000079 ], [ -119.709309805999936, 49.644431733000033 ], [ -119.709801058999943, 49.640847964000123 ], [ -119.711899338999942, 49.640969446000042 ], [ -119.711943532999953, 49.640646910000022 ], [ -119.708446434999985, 49.640444419000119 ], [ -119.708521543999922, 49.639896545000056 ], [ -119.706030794999933, 49.639752255000055 ], [ -119.706164585999957, 49.638776684000021 ], [ -119.706150362, 49.638775859000113 ], [ -119.706239424999964, 49.638126419000073 ], [ -119.705675589999927, 49.638093748000124 ], [ -119.705772159999981, 49.637389607000088 ], [ -119.705491529999946, 49.63737334500005 ], [ -119.705626486999932, 49.63638930600009 ], [ -119.705216386999922, 49.636365539000046 ], [ -119.705283317999957, 49.635877524000037 ], [ -119.704178884999948, 49.635813511000116 ], [ -119.704181022999961, 49.635797937000113 ], [ -119.70233232799994, 49.635690762000088 ], [ -119.70258052199992, 49.633881872000089 ], [ -119.701015704999946, 49.633791130000056 ], [ -119.701289858999957, 49.631793370000025 ], [ -119.701099639999939, 49.631782337000097 ], [ -119.701103738999919, 49.631752470000144 ], [ -119.699959606000021, 49.631686106000103 ], [ -119.700451451999982, 49.62810231300007 ], [ -119.700588596999978, 49.62811026800005 ], [ -119.700599293999957, 49.628032309000112 ], [ -119.70047206299999, 49.628024929000119 ], [ -119.700613210999947, 49.626996348000091 ], [ -119.698891979999985, 49.626896487000089 ], [ -119.699054271999927, 49.625714095 ], [ -119.69749061399996, 49.625623352000062 ], [ -119.697554062999956, 49.625161183000031 ], [ -119.696703817999918, 49.625111831000055 ], [ -119.696918908999947, 49.623545245000138 ], [ -119.69655861699999, 49.623524331000056 ], [ -119.696653589999954, 49.62283260500007 ], [ -119.695434026999976, 49.622761801000053 ], [ -119.695926129999933, 49.61917798300005 ], [ -119.696937882999947, 49.61923672400011 ], [ -119.696987693000025, 49.618873882000123 ], [ -119.695822385999975, 49.6188062250001 ], [ -119.695592163999891, 49.620482905000095 ], [ -119.690742324999988, 49.620201191000078 ], [ -119.690287803999951, 49.623508518000051 ], [ -119.690187794999957, 49.623502707000029 ], [ -119.690113726, 49.624041622000078 ], [ -119.689347176999931, 49.623997074000073 ], [ -119.689307604999968, 49.624284939000027 ], [ -119.689148893999956, 49.624275715000053 ], [ -119.68909571799999, 49.624662543000085 ], [ -119.68649154, 49.624511159000093 ], [ -119.686465707000011, 49.624699004000071 ], [ -119.685020128999952, 49.624614943000097 ], [ -119.685027994999928, 49.624757967000107 ], [ -119.684613073999913, 49.624767596000098 ], [ -119.684627895999981, 49.625037139 ], [ -119.684550870999928, 49.62503892700007 ], [ -119.684322425999937, 49.626699448000117 ], [ -119.68407281099995, 49.62668493000006 ], [ -119.683884680999981, 49.628052254000075 ], [ -119.683129375999954, 49.628008321000095 ], [ -119.683131150999913, 49.62804061300006 ], [ -119.68299976899999, 49.628043661000092 ], [ -119.68281347, 49.629397413000049 ], [ -119.683205228999924, 49.629388327000044 ], [ -119.683175597999977, 49.628849242000108 ], [ -119.684835423999971, 49.628810734000083 ], [ -119.684879899999942, 49.62961936100006 ], [ -119.683220045999974, 49.629657870000123 ], [ -119.683294131999943, 49.631005583000082 ], [ -119.681219251999892, 49.631053688000094 ], [ -119.681200980999904, 49.630721051000059 ], [ -119.680562475999949, 49.630683899000118 ], [ -119.68043117399999, 49.631637585000078 ], [ -119.680403530999968, 49.63183836000011 ], [ -119.680373408999955, 49.631789214000051 ], [ -119.680222826999966, 49.631540764000114 ], [ -119.680142536999981, 49.631295787000049 ], [ -119.680083144999969, 49.631112686000066 ], [ -119.680016420999891, 49.630668993000029 ], [ -119.680066787999976, 49.630252880000086 ], [ -119.680198748999942, 49.629818930000098 ], [ -119.680364396, 49.62950348400004 ], [ -119.680649115999969, 49.629090145000106 ], [ -119.681902798999943, 49.627682001000032 ], [ -119.682017190999915, 49.627531403000027 ], [ -119.682256243999944, 49.627240219000051 ], [ -119.682360492000015, 49.627115839000112 ], [ -119.68264028099999, 49.626583034000063 ], [ -119.682652235999925, 49.626548875000012 ], [ -119.682683860999958, 49.626448112000048 ], [ -119.68281409799998, 49.626056147000035 ], [ -119.68283091499994, 49.625728388000091 ], [ -119.682885511999956, 49.62474990700013 ], [ -119.682902907999932, 49.62439991400003 ], [ -119.683089735999957, 49.624426714000037 ], [ -119.68353323300002, 49.624494063000078 ], [ -119.683534129999927, 49.624494217000063 ], [ -119.683674564999976, 49.624516743000072 ], [ -119.684045804999968, 49.624443501 ], [ -119.684266494999989, 49.624333494000055 ], [ -119.684333425999952, 49.624274138000096 ], [ -119.684643019999982, 49.623999604000069 ], [ -119.684882133999949, 49.623751054000131 ], [ -119.685287081999945, 49.623330215000067 ], [ -119.685383598999948, 49.623229893000072 ], [ -119.685605505999931, 49.622949299000055 ], [ -119.685920403999916, 49.622457285000088 ], [ -119.686167789999956, 49.621870200000096 ], [ -119.68618927599999, 49.621742781000115 ], [ -119.686303279999919, 49.621066194000051 ], [ -119.686375888999976, 49.620639703000073 ], [ -119.686585335999951, 49.619409764000117 ], [ -119.686759236999961, 49.618388636000084 ], [ -119.686816271999959, 49.61805371500008 ], [ -119.68685908199997, 49.617802195000067 ], [ -119.6898147199999, 49.61787020100018 ], [ -119.690087791999972, 49.617904089000078 ], [ -119.690281700999975, 49.617301304000108 ], [ -119.69028297399997, 49.617227153000059 ], [ -119.690301495999975, 49.616146383000022 ], [ -119.690327897999978, 49.614703839000086 ], [ -119.690336697999967, 49.614222993000091 ], [ -119.692932831999983, 49.614260641000058 ], [ -119.693544898999946, 49.614269494000069 ], [ -119.69406739599998, 49.614256501000042 ], [ -119.694374982999989, 49.614211090000047 ], [ -119.696599073999948, 49.6136259150001 ], [ -119.696767908999902, 49.613581506000031 ], [ -119.69699141199996, 49.6135412040001 ], [ -119.6970078209999, 49.613541390000044 ], [ -119.697188307999937, 49.6135436100001 ], [ -119.697438888999955, 49.613619614000086 ], [ -119.698066624999925, 49.613973012000073 ], [ -119.698190912999948, 49.613957691000032 ], [ -119.698085299999889, 49.613817014000105 ], [ -119.697841164999929, 49.613569002000091 ], [ -119.697618512999966, 49.61334280300008 ], [ -119.697283783, 49.612907992000025 ], [ -119.697048906999939, 49.61251500700007 ], [ -119.697012356999963, 49.612365791000066 ], [ -119.697001772999926, 49.612322587000051 ], [ -119.697006079999966, 49.611779525000046 ], [ -119.697012338999954, 49.61099117600002 ], [ -119.693587567999884, 49.610945791000105 ], [ -119.693608996999899, 49.610264310000041 ], [ -119.693614101999984, 49.610105423000086 ], [ -119.693634556999911, 49.609466225000055 ], [ -119.693684418999908, 49.607908617000056 ], [ -119.693706866999946, 49.607207105000029 ], [ -119.693718224999955, 49.606852770000046 ], [ -119.693734531999951, 49.606342554000086 ], [ -119.693754595999962, 49.605715591000035 ], [ -119.695133384999934, 49.605734290000051 ], [ -119.69579407499999, 49.605745592000076 ], [ -119.696187686999934, 49.605709795000024 ], [ -119.69627662, 49.605547795000142 ], [ -119.696299427999918, 49.605382104000078 ], [ -119.696024810999958, 49.604449511000027 ], [ -119.69591099199999, 49.604348010000102 ], [ -119.695470382999986, 49.60410841200008 ], [ -119.695185103999975, 49.603840812000044 ], [ -119.695374111999968, 49.603778607000073 ], [ -119.696252912999981, 49.603495508000066 ], [ -119.696547418999955, 49.603115978000041 ], [ -119.696569948999965, 49.602715833000069 ], [ -119.696445443999963, 49.602020421000041 ], [ -119.696146498999966, 49.601174151000059 ], [ -119.695473700999955, 49.600827613000071 ], [ -119.695503091999953, 49.600644090000024 ], [ -119.695472596999977, 49.600380395000052 ], [ -119.695345340999936, 49.600003880000045 ], [ -119.695240601999956, 49.599694083000081 ], [ -119.695001984, 49.599176184000029 ], [ -119.69493069399995, 49.599021453000034 ], [ -119.69456469799999, 49.59822699700009 ], [ -119.694235727999924, 49.597508894000093 ], [ -119.694116189999974, 49.597136208000066 ], [ -119.696195727999964, 49.596535055000111 ], [ -119.69631395499998, 49.596853935000112 ], [ -119.696314242999989, 49.596853848000052 ], [ -119.697273970999944, 49.599283164000084 ], [ -119.697263684999911, 49.599358126000055 ], [ -119.696918507999982, 49.599338078000116 ], [ -119.696935797, 49.599651334000072 ], [ -119.696521091999955, 49.599661002000069 ], [ -119.696699598999928, 49.602895495000098 ], [ -119.697114328999959, 49.602885827000136 ], [ -119.697158967999925, 49.603694449000109 ], [ -119.697573705999943, 49.603684777000105 ], [ -119.697633237000019, 49.604762941000033 ], [ -119.69721848899998, 49.604772612000041 ], [ -119.697222498999906, 49.604845256000026 ], [ -119.697226287999968, 49.604913891000074 ], [ -119.697290870999922, 49.605040812000041 ], [ -119.697339751999891, 49.605039673000071 ], [ -119.698477618999902, 49.605013134000046 ], [ -119.698552338999917, 49.606365872000026 ], [ -119.698564555999965, 49.606366582000128 ], [ -119.698555873999936, 49.606429863000059 ], [ -119.698561567999917, 49.606532933000011 ], [ -119.698922255999918, 49.606553873000081 ], [ -119.698741431999906, 49.607871839000097 ], [ -119.69871230399994, 49.608084131000027 ], [ -119.699086375999968, 49.608105846000086 ], [ -119.699090251999948, 49.608106071000044 ], [ -119.699089722999972, 49.608109926000061 ], [ -119.699000479999924, 49.608760387000075 ], [ -119.700340410999928, 49.608838161000065 ], [ -119.700378593999957, 49.608961745000045 ], [ -119.70037868699994, 49.60896205800001 ], [ -119.700798167999963, 49.608965926000081 ], [ -119.700778799999938, 49.609107132000076 ], [ -119.701142144999935, 49.609128217000048 ], [ -119.700764336999953, 49.611882643000037 ], [ -119.703874039999931, 49.612063048000117 ], [ -119.703708967999972, 49.613266993000089 ], [ -119.705118178999925, 49.613348717000108 ], [ -119.705038396999896, 49.613930711000094 ], [ -119.705050619999909, 49.613931421000075 ], [ -119.704559282999952, 49.61751530600008 ], [ -119.702743380999934, 49.617409995000052 ], [ -119.702706395999897, 49.617679671000097 ], [ -119.703249628999913, 49.617711178 ], [ -119.703193328999973, 49.618121719000079 ], [ -119.703535647999971, 49.618141572000106 ], [ -119.703357795999963, 49.619438486000064 ], [ -119.703798924999944, 49.619464068000049 ], [ -119.703429055999933, 49.622161111000054 ], [ -119.705778338999963, 49.622297320000072 ], [ -119.705494572999925, 49.624367061000086 ], [ -119.706613246999922, 49.624431902000076 ], [ -119.706594436, 49.624569134000097 ], [ -119.706968146999927, 49.624590793000088 ], [ -119.706645027, 49.626947892000011 ], [ -119.707961370999968, 49.627024171000045 ], [ -119.707872250999955, 49.627674370000115 ], [ -119.708343301999918, 49.627701662000028 ], [ -119.708153499999952, 49.629086457000028 ], [ -119.71134099799994, 49.629271082000052 ], [ -119.711248222999942, 49.629948284000122 ], [ -119.711398440999972, 49.629956982000074 ], [ -119.711151466000018, 49.631759681000077 ], [ -119.711170664999912, 49.631760794000066 ], [ -119.711110132999977, 49.632202607000117 ], [ -119.711539782999935, 49.632227485000065 ], [ -119.711283699999981, 49.634096604 ], [ -119.711495906999971, 49.634108890000064 ], [ -119.711399430999933, 49.634813039000029 ], [ -119.711680047999977, 49.634829287000059 ], [ -119.711591068999965, 49.635478734000067 ], [ -119.712154873999921, 49.635511375000057 ], [ -119.712062565999986, 49.636185154000053 ], [ -119.714502846999935, 49.636326397000026 ], [ -119.714540570999986, 49.63850371900007 ], [ -119.715665817999934, 49.638543307000127 ], [ -119.718624009999957, 49.638647202000101 ], [ -119.71849468, 49.639592121000092 ], [ -119.718973300999934, 49.63961979700013 ], [ -119.718795150999966, 49.640921437000046 ], [ -119.720065252999959, 49.640994870000085 ], [ -119.71977186699999, 49.643138740000097 ], [ -119.721603844999962, 49.643244632000062 ], [ -119.721482333999958, 49.644132750000097 ], [ -119.72274996599999, 49.644206003000107 ], [ -119.722428993999969, 49.646552283000105 ], [ -119.723628492999978, 49.64662158400008 ], [ -119.723309156999932, 49.648956102000071 ], [ -119.723580748999936, 49.648971791000129 ], [ -119.723498830999986, 49.649570632000078 ], [ -119.723970558999966, 49.649597882000059 ], [ -119.724051008999979, 49.649009714000066 ], [ -119.729565859999965, 49.649328127000054 ], [ -119.72907605499995, 49.65291194200006 ], [ -119.723924207, 49.65261449900008 ], [ -119.72384374799999, 49.653202663000037 ], [ -119.718328473999961, 49.652883963000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37499577", "BldgCostT": "23202409", "sL_LossRatio": "0.982508352723997", "sL_AssetLoss": "2486.90128", "sL_BldgLoss": "2443.40128", "sL_StrLoss": "2427.70128", "sL_NStrLoss": "15.7", "sL_ContLoss": "43.5", "geom_point": "0101000020E61000006D4EEB5776EF5DC0C75476D1C2D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.745379248999924, 49.66949617000008 ], [ -119.74555636099997, 49.668197442000086 ], [ -119.743493375999961, 49.6680787210001 ], [ -119.74375669199992, 49.666148367000083 ], [ -119.742732377999914, 49.666089404000125 ], [ -119.742808274999931, 49.665533066000137 ], [ -119.742146896999955, 49.665494990000049 ], [ -119.74223179199997, 49.664872740000099 ], [ -119.741767024999945, 49.664845980000067 ], [ -119.741815947999953, 49.664487416000064 ], [ -119.741499140999949, 49.664469174000061 ], [ -119.741522429999975, 49.664298485000131 ], [ -119.740856830999945, 49.664260156000125 ], [ -119.741305291999964, 49.660973527000088 ], [ -119.73658421099999, 49.660701547000045 ], [ -119.73681036699999, 49.659045184000057 ], [ -119.735176000999957, 49.658950981000039 ], [ -119.734947623999943, 49.660623186000123 ], [ -119.729431382999977, 49.660305051000144 ], [ -119.729921237999946, 49.656721272000013 ], [ -119.734599433999946, 49.656991094000098 ], [ -119.734827806999959, 49.655318881000035 ], [ -119.737329199999948, 49.655463069000113 ], [ -119.73738718099996, 49.656569288000043 ], [ -119.740217201999954, 49.656562274000095 ], [ -119.740117476999984, 49.657293124000077 ], [ -119.742589424999949, 49.657435487000086 ], [ -119.742141089999933, 49.660722140000082 ], [ -119.746862205999889, 49.660993877000102 ], [ -119.746838937999954, 49.661164569000064 ], [ -119.747504497999969, 49.661202861000127 ], [ -119.747455621999961, 49.661561430000063 ], [ -119.747772411999946, 49.661579654000079 ], [ -119.747687597, 49.662201911000075 ], [ -119.748152340999937, 49.662228645000013 ], [ -119.74807651399999, 49.66278499000007 ], [ -119.748737858999931, 49.66282303 ], [ -119.748474770999962, 49.664753406000052 ], [ -119.749499061999984, 49.664812314000052 ], [ -119.749322074999924, 49.666111055000108 ], [ -119.751384987999984, 49.666229666000056 ], [ -119.750896702999952, 49.669813493000056 ], [ -119.745379248999924, 49.66949617000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170770169", "BldgCostT": "117087625", "sL_LossRatio": "0.995447468523822", "sL_AssetLoss": "11925.12348", "sL_BldgLoss": "11870.83398", "sL_StrLoss": "11850.31498", "sL_NStrLoss": "20.519", "sL_ContLoss": "54.2895", "geom_point": "0101000020E61000003B79786C17ED5DC05AF4145AD2CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.692672409999957, 49.597976194000061 ], [ -119.692245006999954, 49.597722792000084 ], [ -119.69090197899996, 49.597697101000087 ], [ -119.689564374999961, 49.597693393000043 ], [ -119.689654883999978, 49.597630892000026 ], [ -119.68965490600003, 49.597627219000081 ], [ -119.689657229999938, 49.596923627000109 ], [ -119.689657838999921, 49.596743407000055 ], [ -119.689660865999969, 49.595830011000054 ], [ -119.68966119399991, 49.59572568300009 ], [ -119.689455918999926, 49.594304301000079 ], [ -119.689433811999947, 49.594151341000114 ], [ -119.689181339999948, 49.594152253000118 ], [ -119.689292381999948, 49.591560117000064 ], [ -119.69013976399999, 49.591004158000032 ], [ -119.690219752999951, 49.590951673000099 ], [ -119.69051379499993, 49.590801683000095 ], [ -119.69087560299999, 49.590693564000077 ], [ -119.691342724999956, 49.590657512000057 ], [ -119.692289140999947, 49.590658352000062 ], [ -119.69233195299995, 49.589228235000093 ], [ -119.692342730999897, 49.588868245000114 ], [ -119.692363808999971, 49.588163707000049 ], [ -119.692285415999947, 49.588057108000065 ], [ -119.692056983999976, 49.588002298000056 ], [ -119.691999975999977, 49.587023660000092 ], [ -119.693069618999942, 49.587031512000074 ], [ -119.693566014999988, 49.587038691000032 ], [ -119.693732112999925, 49.587040341000041 ], [ -119.695062789999966, 49.587053499000085 ], [ -119.695276100999976, 49.587096585000062 ], [ -119.695354981999984, 49.587159006000057 ], [ -119.698511118999988, 49.587081511000108 ], [ -119.702000902999913, 49.58707374199999 ], [ -119.704382203999941, 49.587070569000083 ], [ -119.71056666599999, 49.58709007700007 ], [ -119.71000460199997, 49.590684301000053 ], [ -119.711492890999963, 49.590680503000044 ], [ -119.712854908999958, 49.590677012000121 ], [ -119.713578706999968, 49.590672983000097 ], [ -119.71577157899999, 49.590660813000078 ], [ -119.718080018999899, 49.590647904000072 ], [ -119.718757703999927, 49.590644112000099 ], [ -119.71874019299996, 49.59120113400013 ], [ -119.718723472999983, 49.591733809000097 ], [ -119.719965212999938, 49.591760696000115 ], [ -119.720949943999941, 49.591776473000088 ], [ -119.721239242999943, 49.591781151000127 ], [ -119.721222329999989, 49.592464941000067 ], [ -119.721219289999965, 49.592587375000043 ], [ -119.721204885999924, 49.593175990000113 ], [ -119.721179306999929, 49.594220608000114 ], [ -119.720543695999979, 49.594229901000134 ], [ -119.720535387999973, 49.594892084000094 ], [ -119.720533236999955, 49.595062749000107 ], [ -119.720517962999963, 49.596276601000085 ], [ -119.720539007999918, 49.596656275000051 ], [ -119.720562004999948, 49.597071205000127 ], [ -119.717398578999948, 49.59707775100005 ], [ -119.715503315999953, 49.597081656000093 ], [ -119.713371691999924, 49.597085999000086 ], [ -119.712970107999936, 49.597086794000099 ], [ -119.711047625999953, 49.597065207000028 ], [ -119.711018717999977, 49.597064904000042 ], [ -119.70939909399999, 49.59708219700007 ], [ -119.708057804999925, 49.597096498000049 ], [ -119.705666003999937, 49.597087797000057 ], [ -119.705633138999957, 49.595062497000093 ], [ -119.705620307999965, 49.594270994000055 ], [ -119.704260488000017, 49.594269644000093 ], [ -119.703924396999966, 49.594269308000072 ], [ -119.703530584999953, 49.5942057950001 ], [ -119.703172405999979, 49.593952903000066 ], [ -119.703134611999957, 49.593897056000095 ], [ -119.70276270600003, 49.593347506000036 ], [ -119.702486180999983, 49.593065999000068 ], [ -119.702178598999964, 49.592880094000108 ], [ -119.70116628699999, 49.592438399000116 ], [ -119.700896094999976, 49.592364091000043 ], [ -119.700574819999986, 49.592349009000046 ], [ -119.700183903999971, 49.59237599800008 ], [ -119.700085526999942, 49.592398611000107 ], [ -119.699867114, 49.592448804000099 ], [ -119.699556805999947, 49.592566285000025 ], [ -119.699142486999989, 49.592820139000054 ], [ -119.698892528999963, 49.592973299000064 ], [ -119.698264283, 49.593358206000104 ], [ -119.697992391999932, 49.593498702000055 ], [ -119.697090714999973, 49.593798497000108 ], [ -119.69681579399996, 49.593981211000063 ], [ -119.696587899999926, 49.594195614000043 ], [ -119.69654978599999, 49.594248931000095 ], [ -119.696112012999919, 49.594861508000079 ], [ -119.695405896999958, 49.595729115000069 ], [ -119.695179233999951, 49.596002373000012 ], [ -119.695175602999925, 49.596006747000054 ], [ -119.694908506999965, 49.596328709000026 ], [ -119.694116189999974, 49.597136208000066 ], [ -119.694235727999924, 49.597508894000093 ], [ -119.69456469799999, 49.59822699700009 ], [ -119.69493069399995, 49.599021453000034 ], [ -119.695001984, 49.599176184000029 ], [ -119.695240601999956, 49.599694083000081 ], [ -119.695345340999936, 49.600003880000045 ], [ -119.695472596999977, 49.600380395000052 ], [ -119.695503091999953, 49.600644090000024 ], [ -119.695473700999955, 49.600827613000071 ], [ -119.694929997999921, 49.600712888000096 ], [ -119.694809719999967, 49.600608409000074 ], [ -119.694637096999941, 49.599996314000109 ], [ -119.694478316999962, 49.599433110000057 ], [ -119.69413160699996, 49.598540494000069 ], [ -119.693925197999974, 49.598325310000071 ], [ -119.693502707999954, 49.598116493000092 ], [ -119.69315179899999, 49.598023006000069 ], [ -119.692672409999957, 49.597976194000061 ] ], [ [ -119.692310803999959, 49.593032801000057 ], [ -119.692387858999894, 49.592471570000058 ], [ -119.691250246999985, 49.592405432000071 ], [ -119.691093006999949, 49.593550484000062 ], [ -119.690820214999974, 49.593534623 ], [ -119.690786805999949, 49.593777891000038 ], [ -119.689898640999971, 49.59372624500002 ], [ -119.689850682000014, 49.594075412000059 ], [ -119.689568959999974, 49.594059028000068 ], [ -119.689574035999968, 49.59415126400004 ], [ -119.689581212999926, 49.594281714000083 ], [ -119.691559744999921, 49.594396759000112 ], [ -119.691590630999926, 49.594171844000108 ], [ -119.691695212999932, 49.593410213000126 ], [ -119.692193026999988, 49.593439154000158 ], [ -119.692249309999937, 49.593029226000091 ], [ -119.692310803999959, 49.593032801000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8682917", "BldgCostT": "5491667", "sL_LossRatio": "0.89518624943726", "sL_AssetLoss": "881.73555", "sL_BldgLoss": "789.31754", "sL_StrLoss": "755.60385", "sL_NStrLoss": "33.71369", "sL_ContLoss": "92.41801", "geom_point": "0101000020E61000004DF73AA9EFEE5DC04CAE7B8EBCCB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.732727858999965, 49.593683376000072 ], [ -119.732712788999891, 49.593413842000118 ], [ -119.731054228999966, 49.593453016000119 ], [ -119.731023673999928, 49.592906203000091 ], [ -119.729747505999967, 49.592832467000022 ], [ -119.729963238999972, 49.592546531000082 ], [ -119.730066283, 49.592409900000078 ], [ -119.730380209999979, 49.592204905000131 ], [ -119.730424964999941, 49.592180645000091 ], [ -119.731439804, 49.59163040300006 ], [ -119.73170419799996, 49.591452396000115 ], [ -119.731976084999928, 49.591180217000066 ], [ -119.7321365869999, 49.591019489000111 ], [ -119.732255971, 49.590877508000055 ], [ -119.732884987999981, 49.590129253000121 ], [ -119.733197759999911, 49.589757187000018 ], [ -119.733246509999958, 49.589699208000106 ], [ -119.733371693, 49.589491061000054 ], [ -119.733404488999938, 49.589436492000061 ], [ -119.733405345999955, 49.589431400000095 ], [ -119.735540950999948, 49.589554723000113 ], [ -119.735465228999928, 49.59011010500015 ], [ -119.73584884899999, 49.590101032000071 ], [ -119.735909193999959, 49.59117916200006 ], [ -119.735494574999962, 49.591188970000097 ], [ -119.735524744999964, 49.591728035000095 ], [ -119.735243719999971, 49.591734681000055 ], [ -119.735052245999938, 49.593138872000061 ], [ -119.734355903999926, 49.593098666000145 ], [ -119.734371343999925, 49.593374645000132 ], [ -119.733956704999926, 49.593384447000041 ], [ -119.733971782999959, 49.593653980000084 ], [ -119.732727858999965, 49.593683376000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "139.8", "sL_BldgLoss": "139.8", "sL_StrLoss": "139.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD09B6F871EE5DC062EAB65D4BCC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.726604787999975, 49.594738498000083 ], [ -119.727084583999925, 49.59455143900005 ], [ -119.726898552, 49.595913852000123 ], [ -119.726623570999934, 49.595897956000066 ], [ -119.726643543999927, 49.596255968000044 ], [ -119.726228879999951, 49.596265743000068 ], [ -119.726243915999959, 49.596535277 ], [ -119.725829245999961, 49.59654505 ], [ -119.725844281999969, 49.596814584000043 ], [ -119.725429609999935, 49.596824356000084 ], [ -119.725444642999918, 49.597093892000075 ], [ -119.724200621999941, 49.597123197000016 ], [ -119.724184956999963, 49.596842174000145 ], [ -119.724158992999946, 49.596376408000062 ], [ -119.72431568399999, 49.59636716300011 ], [ -119.724811866999914, 49.596121479000068 ], [ -119.724854608999934, 49.596100308000096 ], [ -119.725192422999982, 49.595863506000079 ], [ -119.725813892999952, 49.595427910000119 ], [ -119.725983436999968, 49.595262260000055 ], [ -119.726358498999929, 49.594895785000062 ], [ -119.726604787999975, 49.594738498000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10580000", "BldgCostT": "6800000", "sL_LossRatio": "0.954154405661204", "sL_AssetLoss": "848.500288", "sL_BldgLoss": "809.600288", "sL_StrLoss": "795.500288", "sL_NStrLoss": "14.1", "sL_ContLoss": "38.9", "geom_point": "0101000020E61000008D2D4655FAED5DC0F69100DA7BCD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.715894543999966, 49.603390699000073 ], [ -119.721403873999947, 49.603709546000076 ], [ -119.720913918999926, 49.607293559000112 ], [ -119.715404163999935, 49.606974689000019 ], [ -119.715894543999966, 49.603390699000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.999997931751068", "sL_AssetLoss": "609.211", "sL_BldgLoss": "609.20974", "sL_StrLoss": "609.2", "sL_NStrLoss": "0.00974", "sL_ContLoss": "0.00126", "geom_point": "0101000020E61000008208EDACC8F05DC08E5BEDDDF6CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.761882540999977, 49.604987874000059 ], [ -119.762167279999957, 49.602891232000047 ], [ -119.760918448999945, 49.602819452000084 ], [ -119.761291479999926, 49.600072912 ], [ -119.76089392799993, 49.600050058000093 ], [ -119.761176900999942, 49.597966503000094 ], [ -119.761455256, 49.597960375000056 ], [ -119.763447085999928, 49.598506364000073 ], [ -119.763120075999922, 49.599467079000064 ], [ -119.763385082999918, 49.60507421700008 ], [ -119.761882540999977, 49.604987874000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "557.7", "sL_BldgLoss": "557.7", "sL_StrLoss": "557.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B77D4DDE19EF5DC0FB57569A14CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733273276, 49.587328427000038 ], [ -119.733397173999961, 49.586419949000046 ], [ -119.733151279999902, 49.586405746000032 ], [ -119.733195404999947, 49.587194979000081 ], [ -119.732254036999961, 49.58721722100011 ], [ -119.732219085999958, 49.587159 ], [ -119.732116490999942, 49.586924611000065 ], [ -119.732111915999909, 49.586875653000099 ], [ -119.73209501699999, 49.586695797000054 ], [ -119.732126201999947, 49.586652410000085 ], [ -119.732195694, 49.586555732000129 ], [ -119.732237111999979, 49.586498083000023 ], [ -119.732550201, 49.586258495000081 ], [ -119.732643116999967, 49.586187407000097 ], [ -119.733591507999932, 49.585948704000025 ], [ -119.733897109999987, 49.585861083000033 ], [ -119.73416013799999, 49.58578568700009 ], [ -119.734926267, 49.585566062000041 ], [ -119.73497794099994, 49.58555123100011 ], [ -119.734989137999932, 49.585548020000104 ], [ -119.735699688999944, 49.585557247000075 ], [ -119.739059528999988, 49.585600833000093 ], [ -119.73878080499999, 49.587646401000065 ], [ -119.733273276, 49.587328427000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10055470", "BldgCostT": "6120413", "sL_LossRatio": "0.999865339324692", "sL_AssetLoss": "947.56691", "sL_BldgLoss": "947.43931", "sL_StrLoss": "946.70761", "sL_NStrLoss": "0.7317", "sL_ContLoss": "0.1276", "geom_point": "0101000020E61000004369D21AC1EF5DC0DB854965C8CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.743921480999958, 49.59009440900013 ], [ -119.748699228999939, 49.590369777000028 ], [ -119.748598233999985, 49.593976258000048 ], [ -119.743433423999974, 49.593678593000057 ], [ -119.743921480999958, 49.59009440900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54452084", "BldgCostT": "35188334", "sL_LossRatio": "0.979228037227414", "sL_AssetLoss": "4941.085834", "sL_BldgLoss": "4838.449783", "sL_StrLoss": "4801.212023", "sL_NStrLoss": "37.23776", "sL_ContLoss": "102.636051", "geom_point": "0101000020E6100000B5D6619647ED5DC031ADF2A988CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.707097699, 49.603192392 ], [ -119.707059179999945, 49.602497177 ], [ -119.706091128999958, 49.602441042000059 ], [ -119.706204909999911, 49.601610660000105 ], [ -119.703445, 49.60145057200004 ], [ -119.703601979999988, 49.600305381000098 ], [ -119.702786363999934, 49.60032444100009 ], [ -119.702716386999924, 49.599059288000035 ], [ -119.702190012999964, 49.599028743000112 ], [ -119.702476310999927, 49.596940402000122 ], [ -119.698980248999945, 49.59673746 ], [ -119.699031501999968, 49.596363795000073 ], [ -119.698830677999979, 49.596368481000063 ], [ -119.698845563999953, 49.596638022000057 ], [ -119.698430884999965, 49.596647697000044 ], [ -119.698445767999957, 49.596917238000074 ], [ -119.697616404999977, 49.596936584000133 ], [ -119.697631284999886, 49.59720612400006 ], [ -119.69755871299995, 49.597207817000026 ], [ -119.697273970999944, 49.599283164000084 ], [ -119.696314242999989, 49.596853848000052 ], [ -119.69631395499998, 49.596853935000112 ], [ -119.696195727999964, 49.596535055000111 ], [ -119.694116189999974, 49.597136208000066 ], [ -119.694908506999965, 49.596328709000026 ], [ -119.695175602999925, 49.596006747000054 ], [ -119.695179233999951, 49.596002373000012 ], [ -119.695405896999958, 49.595729115000069 ], [ -119.696112012999919, 49.594861508000079 ], [ -119.69654978599999, 49.594248931000095 ], [ -119.696587899999926, 49.594195614000043 ], [ -119.69681579399996, 49.593981211000063 ], [ -119.697090714999973, 49.593798497000108 ], [ -119.697992391999932, 49.593498702000055 ], [ -119.698264283, 49.593358206000104 ], [ -119.698892528999963, 49.592973299000064 ], [ -119.699142486999989, 49.592820139000054 ], [ -119.699556805999947, 49.592566285000025 ], [ -119.699867114, 49.592448804000099 ], [ -119.700085526999942, 49.592398611000107 ], [ -119.700183903999971, 49.59237599800008 ], [ -119.700574819999986, 49.592349009000046 ], [ -119.700896094999976, 49.592364091000043 ], [ -119.70116628699999, 49.592438399000116 ], [ -119.702178598999964, 49.592880094000108 ], [ -119.702486180999983, 49.593065999000068 ], [ -119.70276270600003, 49.593347506000036 ], [ -119.703134611999957, 49.593897056000095 ], [ -119.703172405999979, 49.593952903000066 ], [ -119.703530584999953, 49.5942057950001 ], [ -119.703924396999966, 49.594269308000072 ], [ -119.704260488000017, 49.594269644000093 ], [ -119.705620307999965, 49.594270994000055 ], [ -119.705633138999957, 49.595062497000093 ], [ -119.705666003999937, 49.597087797000057 ], [ -119.708057804999925, 49.597096498000049 ], [ -119.70939909399999, 49.59708219700007 ], [ -119.711018717999977, 49.597064904000042 ], [ -119.711047625999953, 49.597065207000028 ], [ -119.712970107999936, 49.597086794000099 ], [ -119.713371691999924, 49.597085999000086 ], [ -119.715503315999953, 49.597081656000093 ], [ -119.717398578999948, 49.59707775100005 ], [ -119.720562004999948, 49.597071205000127 ], [ -119.720539007999918, 49.596656275000051 ], [ -119.720517962999963, 49.596276601000085 ], [ -119.720663473999963, 49.596420493 ], [ -119.720954886999948, 49.596502379000114 ], [ -119.72154089199999, 49.596530850000107 ], [ -119.721588776999951, 49.596528046000053 ], [ -119.723003850999973, 49.596444555000062 ], [ -119.723633392999915, 49.596407417000094 ], [ -119.723592555999957, 49.596706326000046 ], [ -119.722865778999946, 49.596664289000095 ], [ -119.722651498999952, 49.598232443000043 ], [ -119.72188454399999, 49.598188076000049 ], [ -119.721730518999919, 49.59931506100007 ], [ -119.718551307999988, 49.599131094000079 ], [ -119.718499093999952, 49.599512936000089 ], [ -119.715616136999927, 49.599346030000056 ], [ -119.715606563999984, 49.59941600300003 ], [ -119.712679963999932, 49.59924649000002 ], [ -119.712672533999978, 49.599300771000067 ], [ -119.712078594000019, 49.599266359000083 ], [ -119.711777831999939, 49.601463437000085 ], [ -119.712399403999882, 49.601448863000037 ], [ -119.712414366999894, 49.601718401000049 ], [ -119.71282908299996, 49.601708675000047 ], [ -119.712873979999983, 49.602517288000072 ], [ -119.712459256999921, 49.60252701400001 ], [ -119.712489183999978, 49.603066089000059 ], [ -119.711244998000012, 49.60309525800006 ], [ -119.711230040999965, 49.602825719000066 ], [ -119.708741677999981, 49.602884018000083 ], [ -119.708756620999964, 49.603153557000084 ], [ -119.707097699, 49.603192392 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999976427969662", "sL_AssetLoss": "165.02609", "sL_BldgLoss": "165.0222", "sL_StrLoss": "165", "sL_NStrLoss": "0.0222", "sL_ContLoss": "0.00389", "geom_point": "0101000020E610000069428B53CAEE5DC065CA458498CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.730033215999981, 49.589236586000055 ], [ -119.733405345999955, 49.589431400000095 ], [ -119.733404488999938, 49.589436492000061 ], [ -119.733371693, 49.589491061000054 ], [ -119.733246509999958, 49.589699208000106 ], [ -119.733197759999911, 49.589757187000018 ], [ -119.732884987999981, 49.590129253000121 ], [ -119.732255971, 49.590877508000055 ], [ -119.7321365869999, 49.591019489000111 ], [ -119.731976084999928, 49.591180217000066 ], [ -119.73170419799996, 49.591452396000115 ], [ -119.731439804, 49.59163040300006 ], [ -119.730424964999941, 49.592180645000091 ], [ -119.730380209999979, 49.592204905000131 ], [ -119.730066283, 49.592409900000078 ], [ -119.729963238999972, 49.592546531000082 ], [ -119.729747505999967, 49.592832467000022 ], [ -119.729544086999965, 49.592820712000076 ], [ -119.730033215999981, 49.589236586000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68969334", "BldgCostT": "48533334", "sL_LossRatio": "0.999998158516882", "sL_AssetLoss": "311.705274", "sL_BldgLoss": "311.7047", "sL_StrLoss": "311.7", "sL_NStrLoss": "0.0047", "sL_ContLoss": "0.000574", "geom_point": "0101000020E610000055D40561D3EE5DC034460CB7D3CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.73195164400002, 49.587224364000051 ], [ -119.731901863999937, 49.586333570000065 ], [ -119.729068101999971, 49.586169814000122 ], [ -119.729552909999938, 49.582617081000087 ], [ -119.73059478899998, 49.582835408000058 ], [ -119.731383599999944, 49.582852488000107 ], [ -119.731945314999933, 49.582965001000112 ], [ -119.732054510999944, 49.582945104000061 ], [ -119.732192592, 49.582715801000099 ], [ -119.73251729699993, 49.582556286000042 ], [ -119.73276759699999, 49.582594710000095 ], [ -119.733689681999962, 49.583013395000073 ], [ -119.7340951899999, 49.583328203000107 ], [ -119.734212085999957, 49.583675710000072 ], [ -119.733925609, 49.583997586000052 ], [ -119.733441599999964, 49.58424250400008 ], [ -119.733332785999949, 49.584516005000097 ], [ -119.733595995999934, 49.584770899000056 ], [ -119.734298588999977, 49.584987405000113 ], [ -119.734673403999949, 49.585239494000056 ], [ -119.734989137999932, 49.585548020000104 ], [ -119.73497794099994, 49.58555123100011 ], [ -119.734926267, 49.585566062000041 ], [ -119.73416013799999, 49.58578568700009 ], [ -119.733897109999987, 49.585861083000033 ], [ -119.733591507999932, 49.585948704000025 ], [ -119.732643116999967, 49.586187407000097 ], [ -119.732550201, 49.586258495000081 ], [ -119.732237111999979, 49.586498083000023 ], [ -119.732195694, 49.586555732000129 ], [ -119.732126201999947, 49.586652410000085 ], [ -119.73209501699999, 49.586695797000054 ], [ -119.732111915999909, 49.586875653000099 ], [ -119.732116490999942, 49.586924611000065 ], [ -119.732219085999958, 49.587159 ], [ -119.732254036999961, 49.58721722100011 ], [ -119.73195164400002, 49.587224364000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201329360", "BldgCostT": "134427955", "sL_LossRatio": "0.982890505748183", "sL_AssetLoss": "14530.896258", "sL_BldgLoss": "14282.279972", "sL_StrLoss": "14189.060122", "sL_NStrLoss": "93.21985", "sL_ContLoss": "248.616286", "geom_point": "0101000020E610000082B34A9F8CEB5DC07181CB634DC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.720517962999963, 49.596276601000085 ], [ -119.720533236999955, 49.595062749000107 ], [ -119.720535387999973, 49.594892084000094 ], [ -119.720543695999979, 49.594229901000134 ], [ -119.721179306999929, 49.594220608000114 ], [ -119.721204885999924, 49.593175990000113 ], [ -119.721219289999965, 49.592587375000043 ], [ -119.721222329999989, 49.592464941000067 ], [ -119.721239242999943, 49.591781151000127 ], [ -119.720949943999941, 49.591776473000088 ], [ -119.719965212999938, 49.591760696000115 ], [ -119.718723472999983, 49.591733809000097 ], [ -119.71874019299996, 49.59120113400013 ], [ -119.718757703999927, 49.590644112000099 ], [ -119.718080018999899, 49.590647904000072 ], [ -119.71577157899999, 49.590660813000078 ], [ -119.713578706999968, 49.590672983000097 ], [ -119.712854908999958, 49.590677012000121 ], [ -119.711492890999963, 49.590680503000044 ], [ -119.71000460199997, 49.590684301000053 ], [ -119.71056666599999, 49.58709007700007 ], [ -119.704382203999941, 49.587070569000083 ], [ -119.702000902999913, 49.58707374199999 ], [ -119.698511118999988, 49.587081511000108 ], [ -119.695354981999984, 49.587159006000057 ], [ -119.695276100999976, 49.587096585000062 ], [ -119.695062789999966, 49.587053499000085 ], [ -119.693732112999925, 49.587040341000041 ], [ -119.693566014999988, 49.587038691000032 ], [ -119.693069618999942, 49.587031512000074 ], [ -119.691999975999977, 49.587023660000092 ], [ -119.691579859999976, 49.586275859000104 ], [ -119.691315029999927, 49.585245140000112 ], [ -119.691309683999933, 49.584954922000094 ], [ -119.691554734999926, 49.584756944000091 ], [ -119.691607000999937, 49.584638958000092 ], [ -119.691465916999917, 49.584089786000035 ], [ -119.691466236999958, 49.583939873000048 ], [ -119.69146890399999, 49.582643139000055 ], [ -119.691469340999959, 49.582427819000074 ], [ -119.691469414, 49.582396561000081 ], [ -119.691393330999944, 49.582243137000084 ], [ -119.690926835999932, 49.581931509000079 ], [ -119.690634572999954, 49.581887390000077 ], [ -119.690422945999956, 49.581932896000104 ], [ -119.690250029999987, 49.582040244000012 ], [ -119.68997256199999, 49.582282410000062 ], [ -119.689740093999973, 49.582408887000071 ], [ -119.689540597999979, 49.582446949000023 ], [ -119.689120652999947, 49.58240265200007 ], [ -119.688912895999948, 49.582319220000016 ], [ -119.688847846, 49.582260924000117 ], [ -119.688778194999927, 49.582198484000038 ], [ -119.688675561999929, 49.581854721000056 ], [ -119.688450348999964, 49.581706167000092 ], [ -119.688152212999967, 49.581623783000104 ], [ -119.68807761, 49.581620032000068 ], [ -119.68792483199995, 49.581612368000059 ], [ -119.687152134999934, 49.581651811000022 ], [ -119.685982414999941, 49.581711565000099 ], [ -119.68584370399999, 49.581738473000065 ], [ -119.685807048999919, 49.581745609000059 ], [ -119.6853963499999, 49.581957406000051 ], [ -119.685046188999976, 49.582233272000082 ], [ -119.684857036999986, 49.582471787000017 ], [ -119.684611488999977, 49.582781474000107 ], [ -119.684613597999913, 49.582503388000113 ], [ -119.68460169799998, 49.582475714000111 ], [ -119.684377085999969, 49.581952298000054 ], [ -119.684392868999979, 49.581713284000074 ], [ -119.684489298999978, 49.580253467000027 ], [ -119.68450479099999, 49.580018550000041 ], [ -119.684646293999904, 49.577876074000095 ], [ -119.684681277999942, 49.577345798000138 ], [ -119.684766559999986, 49.576784998000107 ], [ -119.684805201999936, 49.576530738000024 ], [ -119.684827290999976, 49.576385301000052 ], [ -119.684855603999949, 49.576198980000093 ], [ -119.68489442299996, 49.575714406000067 ], [ -119.684890005999989, 49.575592406000055 ], [ -119.684875448999946, 49.575187748000133 ], [ -119.684864140999977, 49.574873079000042 ], [ -119.684820987999956, 49.573673510000084 ], [ -119.684748413999955, 49.573242987000135 ], [ -119.684730697999967, 49.572846401000035 ], [ -119.684833424, 49.572250802000035 ], [ -119.68527553899996, 49.571317143000051 ], [ -119.685384493999919, 49.571087093000067 ], [ -119.685413617999956, 49.57096464200005 ], [ -119.685466487000014, 49.57074240700009 ], [ -119.6854661199999, 49.570702872000041 ], [ -119.685464596999978, 49.570554387000072 ], [ -119.685422000999935, 49.57028908100007 ], [ -119.685203585999943, 49.569929595000069 ], [ -119.684695206999919, 49.569520589000064 ], [ -119.684375060999969, 49.569194883000129 ], [ -119.684310736999947, 49.569117986000073 ], [ -119.684252508999975, 49.56892581400011 ], [ -119.684256001999927, 49.568758952000053 ], [ -119.684466068999953, 49.568209415000076 ], [ -119.684484818, 49.567908350000046 ], [ -119.684544144999919, 49.566954800000104 ], [ -119.684563660999927, 49.566640828000097 ], [ -119.684561675999987, 49.566396570000052 ], [ -119.684553829999913, 49.565430001000053 ], [ -119.684543901999973, 49.564512694 ], [ -119.683620810999912, 49.564517625000036 ], [ -119.682795207999973, 49.564521890000051 ], [ -119.680998257999974, 49.564531150000022 ], [ -119.680790617999946, 49.564532219000093 ], [ -119.679632778999988, 49.564538154000054 ], [ -119.679075079999947, 49.564541159000044 ], [ -119.67771850799997, 49.564548496000022 ], [ -119.675351091, 49.564505306000051 ], [ -119.673530313999962, 49.564560801000077 ], [ -119.673317318999963, 49.564567289000102 ], [ -119.67229991899994, 49.564562105000078 ], [ -119.671981745999972, 49.564568023000135 ], [ -119.671596197999918, 49.56457520600005 ], [ -119.67160157499994, 49.566026764000064 ], [ -119.671615706999944, 49.569827190000105 ], [ -119.671617565999952, 49.570321990000075 ], [ -119.671617780999924, 49.570381457000039 ], [ -119.668661047999947, 49.570355946000035 ], [ -119.665891076999955, 49.570352199000041 ], [ -119.664287551999962, 49.57035055500004 ], [ -119.662998944999984, 49.570349228000119 ], [ -119.662034889999944, 49.570348203000087 ], [ -119.661869644999953, 49.570336032000071 ], [ -119.658764804999933, 49.570107384000046 ], [ -119.659001076, 49.570683750000107 ], [ -119.659347210999954, 49.57152788300008 ], [ -119.659383205, 49.571610549000098 ], [ -119.660030128999949, 49.573096002000099 ], [ -119.660182693999928, 49.573446334000053 ], [ -119.660745406, 49.574738306 ], [ -119.660818309999982, 49.575084906 ], [ -119.660905800999899, 49.576261408000093 ], [ -119.660886276000014, 49.57655379400007 ], [ -119.660827941999969, 49.57663081400009 ], [ -119.660742081999985, 49.57674410000007 ], [ -119.660712833999938, 49.576771455000092 ], [ -119.660369920999983, 49.577091676000087 ], [ -119.659021897999978, 49.578350589000102 ], [ -119.658905314999984, 49.578433704000112 ], [ -119.658569288999928, 49.57867314100006 ], [ -119.657629195999959, 49.579343087000026 ], [ -119.65695151499996, 49.578974699000064 ], [ -119.656256714999927, 49.578730795000119 ], [ -119.656020575999932, 49.578581493000065 ], [ -119.655129879999976, 49.577675913000078 ], [ -119.65347080199993, 49.576829193000108 ], [ -119.652364997999896, 49.57626588500009 ], [ -119.652048685999915, 49.57621798400006 ], [ -119.651995296999985, 49.576209900000023 ], [ -119.651016304999956, 49.576215903000083 ], [ -119.650690505999933, 49.576237365000146 ], [ -119.650152287999973, 49.576272797000087 ], [ -119.650029123999929, 49.576283765000056 ], [ -119.649174492999947, 49.576359934000024 ], [ -119.648097086999925, 49.576455904000063 ], [ -119.646954652999938, 49.576551855000069 ], [ -119.645563089999925, 49.576668691000108 ], [ -119.644864109999958, 49.576686489000082 ], [ -119.644176422999919, 49.576662500000083 ], [ -119.64392677799998, 49.576611697000025 ], [ -119.643572306999928, 49.576496112000029 ], [ -119.643451171999942, 49.576438012000025 ], [ -119.643102509999892, 49.576270799000049 ], [ -119.642522693999965, 49.575858291 ], [ -119.641693778, 49.575200111000093 ], [ -119.641489705999959, 49.575070698000047 ], [ -119.641287214000016, 49.575000099000114 ], [ -119.641052595999895, 49.574990902000067 ], [ -119.640944596999987, 49.575019701000095 ], [ -119.640794791999966, 49.575129290000106 ], [ -119.640763896999957, 49.575202391000062 ], [ -119.640770309999965, 49.575356394000039 ], [ -119.641050378999978, 49.575969799000056 ], [ -119.641099691999955, 49.576315003000097 ], [ -119.641044501999914, 49.576453607000126 ], [ -119.640936014999951, 49.576585402000013 ], [ -119.640803689999942, 49.576669799000065 ], [ -119.640595204999926, 49.576742501000126 ], [ -119.640246529999942, 49.576748565000138 ], [ -119.640228023999953, 49.576748896000019 ], [ -119.639817389999948, 49.5766977910001 ], [ -119.639566307999928, 49.576636988000104 ], [ -119.639214313, 49.576503393000046 ], [ -119.638743265999949, 49.576274155000092 ], [ -119.638537121999946, 49.576173804000049 ], [ -119.638391869999936, 49.576090120000103 ], [ -119.638112995999933, 49.575929391000066 ], [ -119.637848807999944, 49.575733296000116 ], [ -119.637681711999974, 49.575536489000108 ], [ -119.637658197999926, 49.575406004000051 ], [ -119.637712008999955, 49.57527819300001 ], [ -119.637838805999976, 49.575163690000068 ], [ -119.638120719999989, 49.575071804000046 ], [ -119.638749376999925, 49.575040897000122 ], [ -119.639044598999988, 49.574993183000032 ], [ -119.639459987999956, 49.574828797000102 ], [ -119.639960604999928, 49.574570102000095 ], [ -119.640133399999968, 49.574444701000061 ], [ -119.640142774999944, 49.574433902000045 ], [ -119.640227411999945, 49.574336392000085 ], [ -119.640278394999953, 49.57421841200005 ], [ -119.640303253999932, 49.572992782000092 ], [ -119.640315108999943, 49.572409606000058 ], [ -119.642063884999956, 49.57242448700007 ], [ -119.64602986099996, 49.572459556000091 ], [ -119.646237795999951, 49.572461410000102 ], [ -119.646355086999947, 49.572415803000119 ], [ -119.646438519999947, 49.572294301000149 ], [ -119.64641450799995, 49.571756109000063 ], [ -119.646413808999966, 49.571740098000127 ], [ -119.64631681499999, 49.571493409000027 ], [ -119.646330638999984, 49.571493617000058 ], [ -119.647116114999932, 49.57150580399999 ], [ -119.647939107999917, 49.571406103000086 ], [ -119.648676181999932, 49.571209595 ], [ -119.64964109099999, 49.571159699000106 ], [ -119.650182087999937, 49.570707785000124 ], [ -119.650791910999985, 49.57019839900002 ], [ -119.651114482999986, 49.569497705000053 ], [ -119.651296218999917, 49.569286903 ], [ -119.652055892999954, 49.569269796000107 ], [ -119.65243880299991, 49.569188607000115 ], [ -119.65327798899996, 49.568594709000095 ], [ -119.653286667999922, 49.568574486000017 ], [ -119.653426696999986, 49.568248599000071 ], [ -119.65334100299999, 49.567953812000063 ], [ -119.653409177999947, 49.56770029200004 ], [ -119.654221292999964, 49.567339999000048 ], [ -119.654507305999971, 49.567009605000095 ], [ -119.654466506999938, 49.566785998000093 ], [ -119.654370180999933, 49.566664976000055 ], [ -119.654065284999916, 49.566281801000081 ], [ -119.654122508999961, 49.566028309000046 ], [ -119.654282011999953, 49.565946426000082 ], [ -119.654727390999966, 49.565717789000132 ], [ -119.654920119999957, 49.565559838000141 ], [ -119.654859143999886, 49.56600159500006 ], [ -119.656179989999927, 49.566078877000066 ], [ -119.656430792999956, 49.564261419000125 ], [ -119.657104609999948, 49.564300838000115 ], [ -119.657179087999978, 49.563761035000034 ], [ -119.657244399999968, 49.56376485500008 ], [ -119.657353499999914, 49.563903408000073 ], [ -119.657714281999972, 49.56394039700011 ], [ -119.659106789999953, 49.563592902000018 ], [ -119.659576776999927, 49.563339392000053 ], [ -119.659875129999989, 49.563320952000083 ], [ -119.660266980999921, 49.56329669300009 ], [ -119.660845746999925, 49.563362632000043 ], [ -119.66137909299999, 49.563423414000027 ], [ -119.662154387999962, 49.563162797000103 ], [ -119.663269724999978, 49.563066005000074 ], [ -119.663524770999942, 49.562376115000056 ], [ -119.66489228899998, 49.56245602500011 ], [ -119.664937449000021, 49.562128309000109 ], [ -119.665249168999978, 49.562146522000106 ], [ -119.665339886999959, 49.561488144000101 ], [ -119.66549028299994, 49.561457999 ], [ -119.666172002999986, 49.561505004000018 ], [ -119.667126488999926, 49.561762808000026 ], [ -119.66765440599994, 49.561570488000093 ], [ -119.667848320999923, 49.561255716000041 ], [ -119.670895609999945, 49.561433639000086 ], [ -119.670813997999943, 49.562026465000024 ], [ -119.671844519999951, 49.562086614000044 ], [ -119.67179863099993, 49.562419995000027 ], [ -119.672948241, 49.562487084000075 ], [ -119.673106144999934, 49.561339695000107 ], [ -119.678610151999933, 49.56166072700011 ], [ -119.678593843, 49.561779337000111 ], [ -119.683286111999934, 49.562052799000099 ], [ -119.683148049999915, 49.563057624000052 ], [ -119.68501409299995, 49.563166319000075 ], [ -119.685056955999983, 49.562854274000053 ], [ -119.687654508999941, 49.563005523000079 ], [ -119.687823330999976, 49.561775934000067 ], [ -119.68668059399999, 49.561709404000048 ], [ -119.687172724999954, 49.558125310000079 ], [ -119.689675955000013, 49.558271035000146 ], [ -119.68967521499999, 49.558257570000059 ], [ -119.690089570999945, 49.558247931000061 ], [ -119.690074752999962, 49.557978387000041 ], [ -119.690489107999937, 49.557968748000114 ], [ -119.690474288999937, 49.557699203000062 ], [ -119.690888640999972, 49.557689562000093 ], [ -119.690858997999939, 49.557150474000053 ], [ -119.691273344999942, 49.557140832000137 ], [ -119.691258520999924, 49.556871287000064 ], [ -119.691672864999987, 49.556861644000065 ], [ -119.69165804099994, 49.556592100000088 ], [ -119.692072381999964, 49.556582454000072 ], [ -119.692042727999976, 49.556043366000083 ], [ -119.692202122999959, 49.556039656000024 ], [ -119.692379787999982, 49.554744520000014 ], [ -119.697883140999949, 49.555064580000064 ], [ -119.697844902999933, 49.555343579000088 ], [ -119.698066752999978, 49.555356475000046 ], [ -119.697575497999964, 49.558940632000038 ], [ -119.695098422999976, 49.558796614000123 ], [ -119.695195434999945, 49.560558051000079 ], [ -119.69478106199999, 49.560567707000082 ], [ -119.694810198999974, 49.56109675199999 ], [ -119.697012872999949, 49.561224819000074 ], [ -119.696731473999961, 49.563277328000048 ], [ -119.697477791999958, 49.563320710000077 ], [ -119.697409053999934, 49.563822113000079 ], [ -119.697450326999899, 49.563824512000096 ], [ -119.696958932999934, 49.567408623000091 ], [ -119.692589684999973, 49.567154578000014 ], [ -119.692587633999921, 49.567169523000103 ], [ -119.692573707999927, 49.567168714000026 ], [ -119.692543943999937, 49.567385624000124 ], [ -119.691900612999973, 49.567348203000094 ], [ -119.691869526999966, 49.567574739000108 ], [ -119.688151798999968, 49.567358413000051 ], [ -119.688148175999984, 49.567384805000117 ], [ -119.688522074999966, 49.567406567000056 ], [ -119.68839958299999, 49.568298716000086 ], [ -119.691423841999963, 49.568474689000062 ], [ -119.6909319299999, 49.572058748000053 ], [ -119.688623914999965, 49.571924459000115 ], [ -119.688499268999976, 49.572832202 ], [ -119.687179837999949, 49.572755410000106 ], [ -119.686980406999936, 49.574207395000045 ], [ -119.68849742499998, 49.574295684000035 ], [ -119.688355106999964, 49.575332047000117 ], [ -119.688728583999961, 49.575353781000075 ], [ -119.688366783999953, 49.577988361000038 ], [ -119.68867486, 49.578006288000068 ], [ -119.68836008999989, 49.580298250000055 ], [ -119.688496798999935, 49.580306205000099 ], [ -119.688808571999942, 49.578036005000037 ], [ -119.689537000999948, 49.57807838500009 ], [ -119.68953733799999, 49.578075921000057 ], [ -119.69504345899999, 49.578396113000096 ], [ -119.694715116999959, 49.580789299000038 ], [ -119.696882659000011, 49.580915268000098 ], [ -119.696500773999958, 49.583699352000025 ], [ -119.69984974599997, 49.583893894000013 ], [ -119.699471242999934, 49.586654439000085 ], [ -119.702072439999981, 49.586805470000073 ], [ -119.702079434999973, 49.586754434000113 ], [ -119.707449158, 49.587066011000068 ], [ -119.707463995999944, 49.586957659000113 ], [ -119.707828996999979, 49.58697882900001 ], [ -119.707905305999986, 49.586421567000059 ], [ -119.713412551999966, 49.586740826000046 ], [ -119.713314985999943, 49.587453929000077 ], [ -119.715132708999988, 49.587559241000079 ], [ -119.715138740999919, 49.587515138000086 ], [ -119.720646166999984, 49.587834029000071 ], [ -119.720628605999963, 49.587962535000031 ], [ -119.723547223999944, 49.588131415000142 ], [ -119.72374016899991, 49.588304223000044 ], [ -119.723541738999984, 49.589756874000038 ], [ -119.724493153999958, 49.589811906000079 ], [ -119.724835390999928, 49.590725490000068 ], [ -119.725435002999973, 49.591053095000106 ], [ -119.726199182999949, 49.590855095000023 ], [ -119.72703420299996, 49.591168510000074 ], [ -119.727321101999976, 49.59110720000011 ], [ -119.727407804999956, 49.590934894000078 ], [ -119.727251786999972, 49.590137297000112 ], [ -119.727149076, 49.590028557000089 ], [ -119.727835457999973, 49.590068237000068 ], [ -119.727346148999956, 49.59365234800007 ], [ -119.72720843099998, 49.593644387000069 ], [ -119.727084583999925, 49.59455143900005 ], [ -119.726604787999975, 49.594738498000083 ], [ -119.726358498999929, 49.594895785000062 ], [ -119.725983436999968, 49.595262260000055 ], [ -119.725813892999952, 49.595427910000119 ], [ -119.725192422999982, 49.595863506000079 ], [ -119.724854608999934, 49.596100308000096 ], [ -119.724811866999914, 49.596121479000068 ], [ -119.72431568399999, 49.59636716300011 ], [ -119.724158992999946, 49.596376408000062 ], [ -119.724140522999974, 49.596045056000072 ], [ -119.72455518699995, 49.596035289000056 ], [ -119.724546017999955, 49.595870813000012 ], [ -119.723906669999934, 49.595833838000019 ], [ -119.72389422699996, 49.595924922000115 ], [ -119.723700840999939, 49.595913736000043 ], [ -119.723633392999915, 49.596407417000094 ], [ -119.723003850999973, 49.596444555000062 ], [ -119.721588776999951, 49.596528046000053 ], [ -119.72154089199999, 49.596530850000107 ], [ -119.720954886999948, 49.596502379000114 ], [ -119.720663473999963, 49.596420493 ], [ -119.720517962999963, 49.596276601000085 ] ], [ [ -119.657712385999929, 49.573509073000039 ], [ -119.657710441999939, 49.573523166 ], [ -119.658287388999938, 49.573556903000082 ], [ -119.658289333999932, 49.573542810000035 ], [ -119.657712385999929, 49.573509073000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132299000", "BldgCostT": "88820000", "sL_LossRatio": "0.992485637594252", "sL_AssetLoss": "16307.57786", "sL_BldgLoss": "16185.03681", "sL_StrLoss": "16138.04037", "sL_NStrLoss": "46.99644", "sL_ContLoss": "122.54105", "geom_point": "0101000020E61000008F83E02B99EB5DC07F09151CDEC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68124356, 49.590449577000093 ], [ -119.681249597999937, 49.589666221000087 ], [ -119.681254965999983, 49.588975866000077 ], [ -119.681732284999953, 49.587313806000054 ], [ -119.681824829999968, 49.586991410000039 ], [ -119.681959027999966, 49.586772538000091 ], [ -119.682196955, 49.586384468000091 ], [ -119.682870104999935, 49.585748128000048 ], [ -119.683212524999973, 49.584973285000082 ], [ -119.683347710999939, 49.584141211000095 ], [ -119.683349118, 49.583909183000102 ], [ -119.683273667999941, 49.583751246000105 ], [ -119.683074424, 49.583565345000082 ], [ -119.68265904499998, 49.583306334 ], [ -119.682245289999955, 49.583106115000064 ], [ -119.682055387999981, 49.582973136000099 ], [ -119.680768540999935, 49.581755659000038 ], [ -119.680580743999897, 49.58153700900008 ], [ -119.680476292999955, 49.581307832000086 ], [ -119.68050857299994, 49.580850918000102 ], [ -119.680487925999955, 49.580375534000041 ], [ -119.680306840999947, 49.579543109000099 ], [ -119.680001960999959, 49.578450566000107 ], [ -119.678920847999933, 49.576878375 ], [ -119.678832571999934, 49.576612206000092 ], [ -119.678771490999949, 49.57617873700007 ], [ -119.678702524999935, 49.575994088000122 ], [ -119.67858887600002, 49.575842061000067 ], [ -119.67759315399995, 49.575162616000085 ], [ -119.67697814099999, 49.574863048000111 ], [ -119.67526936799996, 49.574132992000038 ], [ -119.675122910999946, 49.574099525000108 ], [ -119.675083726999929, 49.574090547000026 ], [ -119.6716315199999, 49.574072542000053 ], [ -119.670523250999935, 49.574066663000103 ], [ -119.668706169999922, 49.574057136000043 ], [ -119.668688126999925, 49.572575970000123 ], [ -119.668674385999935, 49.571451354000104 ], [ -119.668661047999947, 49.570355946000035 ], [ -119.671617780999924, 49.570381457000039 ], [ -119.671617565999952, 49.570321990000075 ], [ -119.671615706999944, 49.569827190000105 ], [ -119.67160157499994, 49.566026764000064 ], [ -119.671596197999918, 49.56457520600005 ], [ -119.671981745999972, 49.564568023000135 ], [ -119.67229991899994, 49.564562105000078 ], [ -119.673317318999963, 49.564567289000102 ], [ -119.673530313999962, 49.564560801000077 ], [ -119.675351091, 49.564505306000051 ], [ -119.67771850799997, 49.564548496000022 ], [ -119.679075079999947, 49.564541159000044 ], [ -119.679632778999988, 49.564538154000054 ], [ -119.680790617999946, 49.564532219000093 ], [ -119.680998257999974, 49.564531150000022 ], [ -119.682795207999973, 49.564521890000051 ], [ -119.683620810999912, 49.564517625000036 ], [ -119.684543901999973, 49.564512694 ], [ -119.684553829999913, 49.565430001000053 ], [ -119.684561675999987, 49.566396570000052 ], [ -119.684563660999927, 49.566640828000097 ], [ -119.684544144999919, 49.566954800000104 ], [ -119.684484818, 49.567908350000046 ], [ -119.684466068999953, 49.568209415000076 ], [ -119.684256001999927, 49.568758952000053 ], [ -119.684252508999975, 49.56892581400011 ], [ -119.684310736999947, 49.569117986000073 ], [ -119.684375060999969, 49.569194883000129 ], [ -119.684695206999919, 49.569520589000064 ], [ -119.685203585999943, 49.569929595000069 ], [ -119.685422000999935, 49.57028908100007 ], [ -119.685464596999978, 49.570554387000072 ], [ -119.6854661199999, 49.570702872000041 ], [ -119.685466487000014, 49.57074240700009 ], [ -119.685413617999956, 49.57096464200005 ], [ -119.685384493999919, 49.571087093000067 ], [ -119.68527553899996, 49.571317143000051 ], [ -119.684833424, 49.572250802000035 ], [ -119.684730697999967, 49.572846401000035 ], [ -119.684748413999955, 49.573242987000135 ], [ -119.684820987999956, 49.573673510000084 ], [ -119.684864140999977, 49.574873079000042 ], [ -119.684875448999946, 49.575187748000133 ], [ -119.684890005999989, 49.575592406000055 ], [ -119.68489442299996, 49.575714406000067 ], [ -119.684855603999949, 49.576198980000093 ], [ -119.684827290999976, 49.576385301000052 ], [ -119.684805201999936, 49.576530738000024 ], [ -119.684766559999986, 49.576784998000107 ], [ -119.684681277999942, 49.577345798000138 ], [ -119.684646293999904, 49.577876074000095 ], [ -119.68450479099999, 49.580018550000041 ], [ -119.684489298999978, 49.580253467000027 ], [ -119.684392868999979, 49.581713284000074 ], [ -119.684377085999969, 49.581952298000054 ], [ -119.68460169799998, 49.582475714000111 ], [ -119.684613597999913, 49.582503388000113 ], [ -119.684611488999977, 49.582781474000107 ], [ -119.684857036999986, 49.582471787000017 ], [ -119.685046188999976, 49.582233272000082 ], [ -119.6853963499999, 49.581957406000051 ], [ -119.685807048999919, 49.581745609000059 ], [ -119.68584370399999, 49.581738473000065 ], [ -119.685982414999941, 49.581711565000099 ], [ -119.687152134999934, 49.581651811000022 ], [ -119.68792483199995, 49.581612368000059 ], [ -119.68807761, 49.581620032000068 ], [ -119.688152212999967, 49.581623783000104 ], [ -119.688450348999964, 49.581706167000092 ], [ -119.688675561999929, 49.581854721000056 ], [ -119.688778194999927, 49.582198484000038 ], [ -119.688847846, 49.582260924000117 ], [ -119.688912895999948, 49.582319220000016 ], [ -119.689120652999947, 49.58240265200007 ], [ -119.689540597999979, 49.582446949000023 ], [ -119.689740093999973, 49.582408887000071 ], [ -119.68997256199999, 49.582282410000062 ], [ -119.690250029999987, 49.582040244000012 ], [ -119.690422945999956, 49.581932896000104 ], [ -119.690634572999954, 49.581887390000077 ], [ -119.690926835999932, 49.581931509000079 ], [ -119.691393330999944, 49.582243137000084 ], [ -119.691469414, 49.582396561000081 ], [ -119.691469340999959, 49.582427819000074 ], [ -119.69146890399999, 49.582643139000055 ], [ -119.691466236999958, 49.583939873000048 ], [ -119.691465916999917, 49.584089786000035 ], [ -119.691607000999937, 49.584638958000092 ], [ -119.691554734999926, 49.584756944000091 ], [ -119.691309683999933, 49.584954922000094 ], [ -119.691315029999927, 49.585245140000112 ], [ -119.691579859999976, 49.586275859000104 ], [ -119.691999975999977, 49.587023660000092 ], [ -119.692056983999976, 49.588002298000056 ], [ -119.692285415999947, 49.588057108000065 ], [ -119.692363808999971, 49.588163707000049 ], [ -119.692342730999897, 49.588868245000114 ], [ -119.69233195299995, 49.589228235000093 ], [ -119.692289140999947, 49.590658352000062 ], [ -119.691342724999956, 49.590657512000057 ], [ -119.69087560299999, 49.590693564000077 ], [ -119.69051379499993, 49.590801683000095 ], [ -119.690219752999951, 49.590951673000099 ], [ -119.69013976399999, 49.591004158000032 ], [ -119.689292381999948, 49.591560117000064 ], [ -119.689017298999914, 49.591740605000062 ], [ -119.688593695999955, 49.592018537000115 ], [ -119.68822219299993, 49.592227223000059 ], [ -119.687564651999963, 49.592447276000094 ], [ -119.687092271000012, 49.592501075000044 ], [ -119.686692146000013, 49.592503976000017 ], [ -119.686413984999902, 49.592538387000069 ], [ -119.686158948999918, 49.592616559000071 ], [ -119.68579023499997, 49.59278476100009 ], [ -119.68533932099993, 49.593076427000071 ], [ -119.684824443999943, 49.593522451000098 ], [ -119.684606655999943, 49.593711142000082 ], [ -119.684202339999956, 49.593976614000091 ], [ -119.684006131999965, 49.594050994000028 ], [ -119.683670206999977, 49.594121764000128 ], [ -119.683216163999987, 49.594167094000071 ], [ -119.683098846999982, 49.594178816000046 ], [ -119.68257072899999, 49.594233864000067 ], [ -119.681917544999934, 49.594250034000027 ], [ -119.681178366999973, 49.594265672000077 ], [ -119.681178406999976, 49.593992928000041 ], [ -119.681204882999936, 49.592054507000078 ], [ -119.681223443999926, 49.591475327000126 ], [ -119.681239493999968, 49.590975466000017 ], [ -119.68124356, 49.590449577000093 ] ], [ [ -119.689148457999977, 49.585745186000047 ], [ -119.689255504999934, 49.584965758000102 ], [ -119.688164535999945, 49.584902290000059 ], [ -119.688226497999921, 49.584451205000079 ], [ -119.686531939999938, 49.584352599000042 ], [ -119.686403757999983, 49.58528551600017 ], [ -119.68616300199993, 49.585271504000048 ], [ -119.686081077, 49.585867722000074 ], [ -119.68595073899999, 49.58586013500009 ], [ -119.685873896999951, 49.586419325000108 ], [ -119.685176610999946, 49.586378740000086 ], [ -119.684888867999959, 49.588472342000095 ], [ -119.684880544999928, 49.58847185700003 ], [ -119.68486634099996, 49.5885751960001 ], [ -119.685538160999954, 49.588614299000142 ], [ -119.685511864999953, 49.588805638000075 ], [ -119.685664070999977, 49.588814496000026 ], [ -119.685632189000032, 49.589046481000032 ], [ -119.685723481999958, 49.589051795000074 ], [ -119.685594465999955, 49.589990572000083 ], [ -119.685754098999951, 49.589999862000077 ], [ -119.685771455999941, 49.589873567000069 ], [ -119.686044224999989, 49.589889440000086 ], [ -119.686077654999963, 49.589646173000084 ], [ -119.68752962899994, 49.589730660000079 ], [ -119.687686945999957, 49.588585607000063 ], [ -119.68841022, 49.588627685000084 ], [ -119.688567167999949, 49.587485124000118 ], [ -119.688721847999943, 49.587494123000056 ], [ -119.688963546999943, 49.585734429000127 ], [ -119.689148457999977, 49.585745186000047 ] ], [ [ -119.681063957999953, 49.575920128000114 ], [ -119.681076787999942, 49.575826807000077 ], [ -119.681032514999941, 49.575824228000108 ], [ -119.681019684, 49.575917549000046 ], [ -119.681063957999953, 49.575920128000114 ] ], [ [ -119.681699795999947, 49.572250403000055 ], [ -119.681769730999974, 49.571741640000063 ], [ -119.681155045999958, 49.571705828000091 ], [ -119.681291688999977, 49.570711847000062 ], [ -119.680221783, 49.57064950400008 ], [ -119.680337183999939, 49.569810143 ], [ -119.678736885999939, 49.56971687500004 ], [ -119.678345525999958, 49.572562537000074 ], [ -119.677882744999962, 49.572535560000034 ], [ -119.677853832999958, 49.572745757000064 ], [ -119.679562146999956, 49.572845326000099 ], [ -119.679438877999928, 49.573741727000026 ], [ -119.679747698999918, 49.573759724000119 ], [ -119.679661287999977, 49.574388109000047 ], [ -119.68050465099999, 49.574437252000052 ], [ -119.680812427999982, 49.572198703000034 ], [ -119.681699795999947, 49.572250403000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "339080419", "BldgCostT": "216932625", "sL_LossRatio": "0.975115890437643", "sL_AssetLoss": "26969.994579", "sL_BldgLoss": "26298.870279", "sL_StrLoss": "26052.405379", "sL_NStrLoss": "246.4649", "sL_ContLoss": "671.1243", "geom_point": "0101000020E6100000E36FFFBAE8EA5DC0DDCFC553CDCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.665904585999968, 49.59690200700004 ], [ -119.665625730999949, 49.59666598500008 ], [ -119.665582893999925, 49.596629744000019 ], [ -119.665227189999925, 49.596328703000118 ], [ -119.66490565499997, 49.595985775000059 ], [ -119.664537380999931, 49.595593011000112 ], [ -119.66439173599997, 49.595464940000056 ], [ -119.664240312999951, 49.59533180200004 ], [ -119.663972864999948, 49.595170751000076 ], [ -119.66340596699996, 49.594829352000033 ], [ -119.663348570999958, 49.594794804000067 ], [ -119.66260617799999, 49.594347697000039 ], [ -119.662218698999965, 49.594067590000108 ], [ -119.662111914, 49.593948920000088 ], [ -119.66134347799999, 49.593094774000093 ], [ -119.661099496999924, 49.592823613000085 ], [ -119.660857207999925, 49.592588202000066 ], [ -119.660577029999942, 49.592223517000079 ], [ -119.660442949999904, 49.592049141000096 ], [ -119.660251935999923, 49.591798504000096 ], [ -119.659726113999952, 49.591108583000079 ], [ -119.659581843999945, 49.590949948000031 ], [ -119.658696276999976, 49.589975806000027 ], [ -119.657848756999925, 49.589043487 ], [ -119.657771965999984, 49.58886558800004 ], [ -119.657758913999913, 49.588801666000023 ], [ -119.657724812999973, 49.58863433500008 ], [ -119.657686789999957, 49.584787245000079 ], [ -119.657685097999931, 49.584686626000099 ], [ -119.657683788000014, 49.584608199000094 ], [ -119.657677882999948, 49.581798884000087 ], [ -119.657677285999938, 49.581529008000054 ], [ -119.657673903, 49.579918782000057 ], [ -119.657673388999982, 49.579676216000038 ], [ -119.657629195999959, 49.579343087000026 ], [ -119.658569288999928, 49.57867314100006 ], [ -119.658905314999984, 49.578433704000112 ], [ -119.659021897999978, 49.578350589000102 ], [ -119.660369920999983, 49.577091676000087 ], [ -119.660712833999938, 49.576771455000092 ], [ -119.660742081999985, 49.57674410000007 ], [ -119.660827941999969, 49.57663081400009 ], [ -119.660886276000014, 49.57655379400007 ], [ -119.660905800999899, 49.576261408000093 ], [ -119.660818309999982, 49.575084906 ], [ -119.660745406, 49.574738306 ], [ -119.660182693999928, 49.573446334000053 ], [ -119.660030128999949, 49.573096002000099 ], [ -119.659383205, 49.571610549000098 ], [ -119.659347210999954, 49.57152788300008 ], [ -119.659001076, 49.570683750000107 ], [ -119.658764804999933, 49.570107384000046 ], [ -119.661869644999953, 49.570336032000071 ], [ -119.662034889999944, 49.570348203000087 ], [ -119.662998944999984, 49.570349228000119 ], [ -119.664287551999962, 49.57035055500004 ], [ -119.665891076999955, 49.570352199000041 ], [ -119.668661047999947, 49.570355946000035 ], [ -119.668674385999935, 49.571451354000104 ], [ -119.668688126999925, 49.572575970000123 ], [ -119.668706169999922, 49.574057136000043 ], [ -119.670523250999935, 49.574066663000103 ], [ -119.6716315199999, 49.574072542000053 ], [ -119.675083726999929, 49.574090547000026 ], [ -119.675122910999946, 49.574099525000108 ], [ -119.67526936799996, 49.574132992000038 ], [ -119.67697814099999, 49.574863048000111 ], [ -119.67759315399995, 49.575162616000085 ], [ -119.67858887600002, 49.575842061000067 ], [ -119.678702524999935, 49.575994088000122 ], [ -119.678771490999949, 49.57617873700007 ], [ -119.678832571999934, 49.576612206000092 ], [ -119.678920847999933, 49.576878375 ], [ -119.680001960999959, 49.578450566000107 ], [ -119.680306840999947, 49.579543109000099 ], [ -119.680487925999955, 49.580375534000041 ], [ -119.68050857299994, 49.580850918000102 ], [ -119.680476292999955, 49.581307832000086 ], [ -119.680580743999897, 49.58153700900008 ], [ -119.680768540999935, 49.581755659000038 ], [ -119.682055387999981, 49.582973136000099 ], [ -119.682245289999955, 49.583106115000064 ], [ -119.68265904499998, 49.583306334 ], [ -119.683074424, 49.583565345000082 ], [ -119.683273667999941, 49.583751246000105 ], [ -119.683349118, 49.583909183000102 ], [ -119.683347710999939, 49.584141211000095 ], [ -119.683212524999973, 49.584973285000082 ], [ -119.682870104999935, 49.585748128000048 ], [ -119.682196955, 49.586384468000091 ], [ -119.681959027999966, 49.586772538000091 ], [ -119.681824829999968, 49.586991410000039 ], [ -119.681732284999953, 49.587313806000054 ], [ -119.681254965999983, 49.588975866000077 ], [ -119.681249597999937, 49.589666221000087 ], [ -119.68124356, 49.590449577000093 ], [ -119.681239493999968, 49.590975466000017 ], [ -119.681223443999926, 49.591475327000126 ], [ -119.681204882999936, 49.592054507000078 ], [ -119.681178406999976, 49.593992928000041 ], [ -119.681178366999973, 49.594265672000077 ], [ -119.681175135999965, 49.595853228000045 ], [ -119.68041050799998, 49.595842081000157 ], [ -119.680326725999976, 49.595905425000112 ], [ -119.680059547999946, 49.596107313000125 ], [ -119.678896907999942, 49.596985909000047 ], [ -119.678038592999911, 49.59739288300009 ], [ -119.677602315999962, 49.597537196000111 ], [ -119.677309713999975, 49.597565300000106 ], [ -119.676572009, 49.597459109000148 ], [ -119.676378215999961, 49.597404497000085 ], [ -119.676214113999933, 49.597336207000147 ], [ -119.675583289999949, 49.59738071000006 ], [ -119.672856790999958, 49.597573996000087 ], [ -119.671526112999985, 49.597711402000094 ], [ -119.670980497999921, 49.59779248800001 ], [ -119.67070718799999, 49.597881295000079 ], [ -119.670169696999949, 49.598135286000037 ], [ -119.669231207999957, 49.598418407000104 ], [ -119.669079618999945, 49.59849078900006 ], [ -119.66886050600003, 49.598650492000047 ], [ -119.668437117999986, 49.598448783000023 ], [ -119.665904585999968, 49.59690200700004 ] ], [ [ -119.670991536999949, 49.596000731000103 ], [ -119.670987955999976, 49.595935214000143 ], [ -119.670573272999903, 49.5959447890001 ], [ -119.670558544999963, 49.595675242000013 ], [ -119.670143864999901, 49.595684815000027 ], [ -119.670055508999923, 49.594067531000029 ], [ -119.670884840999975, 49.594048384000068 ], [ -119.670855380999953, 49.593509290000064 ], [ -119.672514026000016, 49.593470978000084 ], [ -119.672499285999976, 49.593201433000075 ], [ -119.670840652, 49.593239743000055 ], [ -119.67079646599997, 49.592431101000081 ], [ -119.67121111699997, 49.592421526000123 ], [ -119.671181655999959, 49.59188243200007 ], [ -119.67159630299993, 49.591872855000133 ], [ -119.671507910999964, 49.590255573000057 ], [ -119.671922544999987, 49.590245995000089 ], [ -119.671893077999968, 49.589706901000035 ], [ -119.673136962999976, 49.589678161000037 ], [ -119.673166442999928, 49.590217255000027 ], [ -119.673581075999934, 49.590207671000037 ], [ -119.673625305999963, 49.591016311000089 ], [ -119.673210665999989, 49.59102589400004 ], [ -119.67324014899998, 49.591564989000112 ], [ -119.674069436999943, 49.591545820000086 ], [ -119.674084182999962, 49.591815366000048 ], [ -119.674096030000015, 49.59181509200009 ], [ -119.674138521999978, 49.591506486000121 ], [ -119.673671794, 49.591479274000093 ], [ -119.674024413999916, 49.588918359000111 ], [ -119.672655830999929, 49.588838552000055 ], [ -119.672873623999948, 49.587257001000047 ], [ -119.672859240000022, 49.587256162000038 ], [ -119.673042789, 49.585923203000057 ], [ -119.672169105999942, 49.585872246000079 ], [ -119.672423211999941, 49.584027015000103 ], [ -119.672412890999937, 49.584027254000041 ], [ -119.672339227999913, 49.582679517000045 ], [ -119.672609621999953, 49.582673270000058 ], [ -119.672662623999926, 49.582288343000116 ], [ -119.672733161999929, 49.582292458000055 ], [ -119.67268012699995, 49.581322202000131 ], [ -119.673026757999963, 49.581314191000104 ], [ -119.673055772999959, 49.581103449000075 ], [ -119.674332559999954, 49.581177912000093 ], [ -119.67432361299997, 49.581014324000115 ], [ -119.674738167999976, 49.581004738000104 ], [ -119.674679191999971, 49.579926551000085 ], [ -119.675093735999937, 49.579916964000113 ], [ -119.675078991999982, 49.579647416000064 ], [ -119.675382538999941, 49.579640395000062 ], [ -119.675616185, 49.577942637000071 ], [ -119.67434010399991, 49.577868225000032 ], [ -119.674364127999965, 49.577693690000032 ], [ -119.6732308799999, 49.577627595000074 ], [ -119.673253689999967, 49.577461905000085 ], [ -119.672034153999931, 49.577390763000025 ], [ -119.67208429499999, 49.577026613000079 ], [ -119.670869851999925, 49.576955754000032 ], [ -119.670724097999965, 49.578014097000057 ], [ -119.667894682999943, 49.577848956000089 ], [ -119.66786797899999, 49.578042763000028 ], [ -119.66514414199996, 49.577883715000063 ], [ -119.665031794999948, 49.578698726000077 ], [ -119.66287018, 49.578572457000078 ], [ -119.662731042999951, 49.579581440000098 ], [ -119.663012770999984, 49.579597900000046 ], [ -119.66251853199995, 49.58318177200006 ], [ -119.662481379999932, 49.583179602000016 ], [ -119.662444051999941, 49.583450252000013 ], [ -119.662826831999894, 49.583472613000062 ], [ -119.662332535999951, 49.587056465000025 ], [ -119.661818245999925, 49.58702642 ], [ -119.661796670999976, 49.587182827000113 ], [ -119.661975003999956, 49.587193246000012 ], [ -119.661912780999899, 49.587644322000074 ], [ -119.662193825999978, 49.58766074000004 ], [ -119.662063948999943, 49.588602275000028 ], [ -119.662268785999942, 49.588614241000116 ], [ -119.66221126, 49.589031269000053 ], [ -119.662713899, 49.589060630000063 ], [ -119.662636509, 49.589621694000066 ], [ -119.663191619999964, 49.589654118000077 ], [ -119.663030063999912, 49.590825435000077 ], [ -119.663122298999966, 49.5908308220001 ], [ -119.663093255, 49.591041394000108 ], [ -119.663338505999917, 49.591055717000039 ], [ -119.663318792999959, 49.591198645000098 ], [ -119.66349461199998, 49.591208913000123 ], [ -119.663457261999966, 49.591479715000055 ], [ -119.663703722999927, 49.591494108000049 ], [ -119.663686737999939, 49.59161726100006 ], [ -119.663831325999951, 49.591625705000091 ], [ -119.663807739999967, 49.591796732000013 ], [ -119.66399043199999, 49.591807401000054 ], [ -119.66396249899995, 49.592009949000058 ], [ -119.664201339999977, 49.592023895000089 ], [ -119.6641629699999, 49.592302120000035 ], [ -119.664477548999955, 49.592320489000016 ], [ -119.664341524999941, 49.593306838000025 ], [ -119.665374785, 49.593367166000093 ], [ -119.665276186999932, 49.594082212000032 ], [ -119.667928049999915, 49.594236998000056 ], [ -119.667834456999984, 49.594916010000055 ], [ -119.669120757999934, 49.59499106700013 ], [ -119.669049617, 49.595507284000043 ], [ -119.670128760999958, 49.595570241000132 ], [ -119.670065761999922, 49.596027447000061 ], [ -119.670438741999988, 49.596049204000074 ], [ -119.670449774999909, 49.595969130000064 ], [ -119.670991536999949, 49.596000731000103 ] ], [ [ -119.674509531999931, 49.592001383000095 ], [ -119.674513576999942, 49.592075325000046 ], [ -119.674928224999974, 49.592065736000059 ], [ -119.674972478999933, 49.592874376000118 ], [ -119.674557824, 49.592883965000084 ], [ -119.674572574999956, 49.593153510000029 ], [ -119.674157915999956, 49.593163098000076 ], [ -119.674172664999958, 49.593432644000139 ], [ -119.674587323999958, 49.593423057000074 ], [ -119.674616823999912, 49.59396215000006 ], [ -119.675031487999888, 49.593952561000044 ], [ -119.675090500999886, 49.595030745000024 ], [ -119.674639085999914, 49.595041185000085 ], [ -119.67666074199991, 49.595159014000089 ], [ -119.676675412999927, 49.595052436000032 ], [ -119.676464460999952, 49.59504014300007 ], [ -119.676490494999925, 49.594851020000107 ], [ -119.675189732999911, 49.594775209000055 ], [ -119.675563147999981, 49.592062803000012 ], [ -119.674509531999931, 49.592001383000095 ] ], [ [ -119.673431808999979, 49.595069093000063 ], [ -119.673417063999949, 49.59479954800004 ], [ -119.673002391999958, 49.594809132000101 ], [ -119.673017133999963, 49.595078677000075 ], [ -119.672602460999897, 49.595088260000104 ], [ -119.672637437999938, 49.595727869000058 ], [ -119.673295296999981, 49.595766227000091 ], [ -119.673301966999972, 49.595717796000066 ], [ -119.674416580999903, 49.595782777000053 ], [ -119.674518308999907, 49.595043977000067 ], [ -119.673431808999979, 49.595069093000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100527470", "BldgCostT": "66415413", "sL_LossRatio": "0.987355635218126", "sL_AssetLoss": "12035.556837", "sL_BldgLoss": "11883.374866", "sL_StrLoss": "11827.811046", "sL_NStrLoss": "55.56382", "sL_ContLoss": "152.181971", "geom_point": "0101000020E610000080ED81D227EA5DC0D571DB4280CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.657360083999933, 49.591949410000076 ], [ -119.65715258799996, 49.591924598000077 ], [ -119.655915184999927, 49.59190910500007 ], [ -119.655698990999923, 49.591846809000103 ], [ -119.655448694999947, 49.591648805000034 ], [ -119.655162617999963, 49.590977291000037 ], [ -119.65495129599999, 49.590477193000034 ], [ -119.654753101999987, 49.588867013000034 ], [ -119.654675600999951, 49.588679159000016 ], [ -119.654090787999962, 49.587261211000062 ], [ -119.653916184999972, 49.586998100000073 ], [ -119.653192386999962, 49.586129398 ], [ -119.652912811999968, 49.585862809000027 ], [ -119.652342088999973, 49.585081592000058 ], [ -119.652354018999986, 49.584784193000154 ], [ -119.652961894, 49.584763805000094 ], [ -119.652877488999962, 49.583988395000048 ], [ -119.652831408999958, 49.583824737000093 ], [ -119.652818779999947, 49.583780012000069 ], [ -119.652696293999924, 49.583692400000146 ], [ -119.651906786999959, 49.5834303970001 ], [ -119.652091149999976, 49.583177460000101 ], [ -119.65226982199998, 49.582932303000042 ], [ -119.652502889999965, 49.58275169700007 ], [ -119.653472506999933, 49.582021787000023 ], [ -119.65396561099999, 49.581837496000112 ], [ -119.654197709999949, 49.581683914000088 ], [ -119.654255283999987, 49.581567778000114 ], [ -119.654270794999974, 49.58153650100008 ], [ -119.654274908999952, 49.58138590500004 ], [ -119.654103095999986, 49.580911607000061 ], [ -119.65410576799998, 49.580342424000072 ], [ -119.654107089999968, 49.580059185000088 ], [ -119.654063396999931, 49.579370192000077 ], [ -119.654038273999944, 49.579316161000094 ], [ -119.653565915999962, 49.578300599000016 ], [ -119.653471426999914, 49.57683894800001 ], [ -119.65347080199993, 49.576829193000108 ], [ -119.655129879999976, 49.577675913000078 ], [ -119.656020575999932, 49.578581493000065 ], [ -119.656256714999927, 49.578730795000119 ], [ -119.65695151499996, 49.578974699000064 ], [ -119.657629195999959, 49.579343087000026 ], [ -119.657673388999982, 49.579676216000038 ], [ -119.657673903, 49.579918782000057 ], [ -119.657677285999938, 49.581529008000054 ], [ -119.657677882999948, 49.581798884000087 ], [ -119.657683788000014, 49.584608199000094 ], [ -119.657685097999931, 49.584686626000099 ], [ -119.657686789999957, 49.584787245000079 ], [ -119.657724812999973, 49.58863433500008 ], [ -119.657758913999913, 49.588801666000023 ], [ -119.657771965999984, 49.58886558800004 ], [ -119.657848756999925, 49.589043487 ], [ -119.658696276999976, 49.589975806000027 ], [ -119.659581843999945, 49.590949948000031 ], [ -119.659726113999952, 49.591108583000079 ], [ -119.660251935999923, 49.591798504000096 ], [ -119.660442949999904, 49.592049141000096 ], [ -119.660577029999942, 49.592223517000079 ], [ -119.660857207999925, 49.592588202000066 ], [ -119.661099496999924, 49.592823613000085 ], [ -119.66134347799999, 49.593094774000093 ], [ -119.662111914, 49.593948920000088 ], [ -119.662218698999965, 49.594067590000108 ], [ -119.66260617799999, 49.594347697000039 ], [ -119.663348570999958, 49.594794804000067 ], [ -119.66340596699996, 49.594829352000033 ], [ -119.663972864999948, 49.595170751000076 ], [ -119.664240312999951, 49.59533180200004 ], [ -119.66439173599997, 49.595464940000056 ], [ -119.664537380999931, 49.595593011000112 ], [ -119.66490565499997, 49.595985775000059 ], [ -119.665227189999925, 49.596328703000118 ], [ -119.665582893999925, 49.596629744000019 ], [ -119.665625730999949, 49.59666598500008 ], [ -119.665904585999968, 49.59690200700004 ], [ -119.668437117999986, 49.598448783000023 ], [ -119.66886050600003, 49.598650492000047 ], [ -119.669202309999918, 49.598778788000054 ], [ -119.669875986999926, 49.598957200000029 ], [ -119.669794091, 49.599400409000118 ], [ -119.66778660599995, 49.599391711000102 ], [ -119.667271494999937, 49.599389528000088 ], [ -119.666551802999976, 49.599386492000072 ], [ -119.666460177999951, 49.599386521000021 ], [ -119.665830186999983, 49.599383637000123 ], [ -119.665368382999944, 49.599381513000118 ], [ -119.665171253, 49.599401613000097 ], [ -119.664926897, 49.599482175000077 ], [ -119.664495423999966, 49.599691791000033 ], [ -119.664099386999936, 49.599775267000105 ], [ -119.663767176999983, 49.599798325000059 ], [ -119.663364709999954, 49.599791703000022 ], [ -119.663164670999919, 49.599788412000109 ], [ -119.662856011999963, 49.599731566000109 ], [ -119.662317074999962, 49.599503478000045 ], [ -119.662108386999975, 49.599415140000126 ], [ -119.661693601999914, 49.59930241800005 ], [ -119.661063558999956, 49.599220459 ], [ -119.660422195999985, 49.599178225000053 ], [ -119.660213374999955, 49.599164465000108 ], [ -119.659945863999937, 49.599081935000072 ], [ -119.659877001999945, 49.599060697 ], [ -119.65982325799996, 49.599044134000096 ], [ -119.659767734999988, 49.599004837000066 ], [ -119.659698022999976, 49.598955525000079 ], [ -119.659518959999957, 49.59876444300005 ], [ -119.659058523999974, 49.598172845000093 ], [ -119.658708890999975, 49.597723628000075 ], [ -119.658620521, 49.597610074000087 ], [ -119.658751527, 49.597607674000081 ], [ -119.659385877999981, 49.597596085000085 ], [ -119.65952281199999, 49.597549912000048 ], [ -119.65959959499996, 49.597446010000077 ], [ -119.659529413999934, 49.597179988000065 ], [ -119.659671084999971, 49.595298787000019 ], [ -119.659687477999938, 49.594752125000063 ], [ -119.659713501999974, 49.593885093000068 ], [ -119.659720739999912, 49.59365368600001 ], [ -119.659730981999985, 49.593326198000042 ], [ -119.659736400999947, 49.593186503000048 ], [ -119.658482493999955, 49.592868489000068 ], [ -119.658214709999953, 49.592757097000025 ], [ -119.658028194999929, 49.592589914 ], [ -119.657719893999953, 49.592138402000067 ], [ -119.6575717099999, 49.592025908000089 ], [ -119.657360083999933, 49.591949410000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "237.3", "sL_BldgLoss": "237.3", "sL_StrLoss": "237.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008651F79E1DF25DC0322A5F8635D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.78054358899999, 49.640308594000039 ], [ -119.786057785999958, 49.6406241500001 ], [ -119.785572474, 49.644208263000046 ], [ -119.780057851999942, 49.643892684000093 ], [ -119.78054358899999, 49.640308594000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999965105285109", "sL_AssetLoss": "361.0862", "sL_BldgLoss": "361.0736", "sL_StrLoss": "361", "sL_NStrLoss": "0.0736", "sL_ContLoss": "0.0126", "geom_point": "0101000020E6100000092AB2EFEDFC5DC0DD6E17D496D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.949602361999936, 49.662654305000068 ], [ -119.949826838999982, 49.660952126000112 ], [ -119.949785696, 49.660953175000017 ], [ -119.949769391999951, 49.660683696000021 ], [ -119.948939125999942, 49.660704861000085 ], [ -119.948932752999923, 49.660599508000097 ], [ -119.948866872999986, 49.660597770000024 ], [ -119.948876962999947, 49.660436551000053 ], [ -119.948507694999989, 49.660445962000047 ], [ -119.94849139699997, 49.660176482000054 ], [ -119.94766114, 49.660197638000078 ], [ -119.947650754999984, 49.660025892000057 ], [ -119.947240247999986, 49.66001506000007 ], [ -119.947245051999943, 49.659938344000118 ], [ -119.946814592999928, 49.659949308000051 ], [ -119.946765729999939, 49.65914086700009 ], [ -119.946978382999959, 49.659135451000097 ], [ -119.948011088999948, 49.659109141000094 ], [ -119.948018146999942, 49.659225887000026 ], [ -119.948536109999978, 49.659239550000052 ], [ -119.948528205999978, 49.659365858000058 ], [ -119.94927274899996, 49.659346881000026 ], [ -119.949288711999912, 49.659610758000028 ], [ -119.949289049999962, 49.659616361000104 ], [ -119.949302653999936, 49.659616014000086 ], [ -119.949704173999976, 49.659605778000078 ], [ -119.949716559999942, 49.659810479000043 ], [ -119.94997648199994, 49.659817332000038 ], [ -119.950075085, 49.659069565000053 ], [ -119.955592676999956, 49.659376530000038 ], [ -119.955359019999946, 49.661150073000087 ], [ -119.955120380999972, 49.662961292000055 ], [ -119.949602361999936, 49.662654305000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14558000", "BldgCostT": "10040000", "sL_LossRatio": "0.999964425186231", "sL_AssetLoss": "1957.56471", "sL_BldgLoss": "1957.49507", "sL_StrLoss": "1957.00277", "sL_NStrLoss": "0.4923", "sL_ContLoss": "0.06964", "geom_point": "0101000020E6100000CD70244C28F15DC069DB176DE1CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.77350812099999, 49.609927947000074 ], [ -119.773506664999942, 49.609902290000043 ], [ -119.773370715999974, 49.609894493000063 ], [ -119.768164364999947, 49.609595737000099 ], [ -119.768322612999924, 49.608429454000039 ], [ -119.768094138999928, 49.608416337000051 ], [ -119.768214549999982, 49.60752889900003 ], [ -119.767337072999979, 49.607478519000061 ], [ -119.76766737299999, 49.605044356000057 ], [ -119.767429517999929, 49.605030699000103 ], [ -119.767392379999976, 49.605304391000118 ], [ -119.763385082999918, 49.60507421700008 ], [ -119.763120075999922, 49.599467079000064 ], [ -119.763447085999928, 49.598506364000073 ], [ -119.763456043999952, 49.598007541000136 ], [ -119.763501129999966, 49.595499359000101 ], [ -119.763506966999941, 49.595175682000026 ], [ -119.762920643999962, 49.59514539400007 ], [ -119.759646083999911, 49.594976202000055 ], [ -119.759694155999938, 49.594622289000036 ], [ -119.75912612099999, 49.594589623000068 ], [ -119.75961296699991, 49.59100537400009 ], [ -119.765121117999982, 49.591322011000017 ], [ -119.765003050999951, 49.592192065000113 ], [ -119.765571058999953, 49.592224701000035 ], [ -119.765111308999906, 49.595612640000105 ], [ -119.765221706999967, 49.59561 ], [ -119.765206456999962, 49.595340474000082 ], [ -119.765621101999955, 49.595330560000043 ], [ -119.76560584899994, 49.595061034000089 ], [ -119.766020490999935, 49.595051119000068 ], [ -119.766005235999941, 49.594781593000079 ], [ -119.767249152999966, 49.594751840000065 ], [ -119.767310201999933, 49.59582994200013 ], [ -119.766895554, 49.595839862000062 ], [ -119.766895653999924, 49.5958416510001 ], [ -119.767719221999968, 49.595888952000053 ], [ -119.767641520999987, 49.59646172100004 ], [ -119.772249014999943, 49.596726228000094 ], [ -119.772159623999983, 49.597385648000085 ], [ -119.773835108999947, 49.597481785000056 ], [ -119.773717110999897, 49.598352425000023 ], [ -119.776447182999959, 49.598509017000069 ], [ -119.775961566999968, 49.602093303000068 ], [ -119.771078863999918, 49.601813193000098 ], [ -119.770773681999941, 49.604063657000047 ], [ -119.773333164999926, 49.604210516000073 ], [ -119.773212859999916, 49.605097965000063 ], [ -119.77409029899999, 49.605148297000092 ], [ -119.773932207999906, 49.606314594000047 ], [ -119.774160673999958, 49.606327698000015 ], [ -119.773848845999964, 49.608628067000048 ], [ -119.773849631999965, 49.608628047000117 ], [ -119.773864937999988, 49.608897571000121 ], [ -119.774279693, 49.608887625000094 ], [ -119.774295002999935, 49.609157148000094 ], [ -119.774709759999951, 49.609147199000063 ], [ -119.774755691999971, 49.609955769000074 ], [ -119.773724011999946, 49.609980512000107 ], [ -119.773511395999947, 49.609985610000123 ], [ -119.77350812099999, 49.609927947000074 ] ], [ [ -119.770476968999958, 49.601593496000085 ], [ -119.770570122999985, 49.600906586000072 ], [ -119.767839928999933, 49.600749848000085 ], [ -119.767915129999935, 49.600195542000044 ], [ -119.766835452999956, 49.600133540000058 ], [ -119.766667028999976, 49.601374752000083 ], [ -119.770476968999958, 49.601593496000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999965675253574", "sL_AssetLoss": "256.3748", "sL_BldgLoss": "256.366", "sL_StrLoss": "256.3", "sL_NStrLoss": "0.066", "sL_ContLoss": "0.0088", "geom_point": "0101000020E6100000761D47FF8DF25DC02FF598ED2FD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.787401780999971, 49.647950474 ], [ -119.792916939999969, 49.648265679000083 ], [ -119.792432081999948, 49.651849784000063 ], [ -119.786916496999964, 49.651534556000094 ], [ -119.787401780999971, 49.647950474 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999948183150797", "sL_AssetLoss": "471.85424", "sL_BldgLoss": "471.82979", "sL_StrLoss": "471.7", "sL_NStrLoss": "0.12979", "sL_ContLoss": "0.02445", "geom_point": "0101000020E61000001328A42DD5FF5DC04451C15DCDD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.998159296999987, 49.704102391000049 ], [ -119.998167307999978, 49.703972507000081 ], [ -119.997336724999982, 49.703994023000121 ], [ -119.9973188, 49.70370293400007 ], [ -119.997198951999948, 49.703696322000049 ], [ -119.996936328999979, 49.703689508000146 ], [ -119.996936799999915, 49.703681860000117 ], [ -119.994747404999885, 49.703561051000115 ], [ -119.99479699599999, 49.703182542000043 ], [ -119.994026807999944, 49.703140032000157 ], [ -119.994261152999968, 49.701351495000075 ], [ -119.99425126499996, 49.701190731000082 ], [ -119.99417773899999, 49.701188822000105 ], [ -119.994211013999958, 49.700649895000076 ], [ -119.992964659999984, 49.700617514000037 ], [ -119.992966161999945, 49.700593203000061 ], [ -119.992916787999945, 49.699790093000075 ], [ -119.994163134999951, 49.699757851000072 ], [ -119.994168130999981, 49.699839091000058 ], [ -119.994260926999956, 49.699841503000052 ], [ -119.994232874999938, 49.700295838000073 ], [ -119.994400028999948, 49.700291512000021 ], [ -119.994442426, 49.699967905000079 ], [ -119.994496480999928, 49.699555306000093 ], [ -119.994565928999975, 49.699559140000062 ], [ -119.994595487999931, 49.699333508000052 ], [ -120.000118211999947, 49.699638200000066 ], [ -120.000099348, 49.699782313000078 ], [ -120.00102539199996, 49.699833376000079 ], [ -120.000597886999941, 49.703099821000116 ], [ -120.000610750999911, 49.703099487000088 ], [ -120.000650137999955, 49.703738403000067 ], [ -120.00065306599997, 49.703785900000049 ], [ -120.00067564699998, 49.703786486000055 ], [ -120.000668579999939, 49.703901184000081 ], [ -120.000211651999933, 49.703898288000019 ], [ -119.999778616999933, 49.703895612000082 ], [ -119.998319827999964, 49.703886428000025 ], [ -119.998319572999932, 49.704265187000082 ], [ -119.998149528999988, 49.70426077700008 ], [ -119.998159296999987, 49.704102391000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "0.999968478522549", "sL_AssetLoss": "269.974655", "sL_BldgLoss": "269.966145", "sL_StrLoss": "269.900785", "sL_NStrLoss": "0.06536", "sL_ContLoss": "0.00851", "geom_point": "0101000020E6100000BC2C9A8CF2F25DC05BBA826D44D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.793846065999986, 49.679792611000074 ], [ -119.79936508899999, 49.680107476000074 ], [ -119.798880397999966, 49.68369144600004 ], [ -119.798275955999884, 49.683656976000137 ], [ -119.798262175999938, 49.683758860000104 ], [ -119.792742721999915, 49.683443942000054 ], [ -119.793227888999965, 49.679859997000065 ], [ -119.79383227699995, 49.679894495000099 ], [ -119.793846065999986, 49.679792611000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18282083", "BldgCostT": "12608333", "sL_LossRatio": "0.999864615748925", "sL_AssetLoss": "3297.2816", "sL_BldgLoss": "3296.8352", "sL_StrLoss": "3294", "sL_NStrLoss": "2.8352", "sL_ContLoss": "0.4464", "geom_point": "0101000020E6100000B9ECC67116F25DC0ED5895123CCF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.778997596999915, 49.630350387000071 ], [ -119.77909716799999, 49.629615631000028 ], [ -119.779087748999927, 49.629615091000062 ], [ -119.779573409999955, 49.62603093200007 ], [ -119.779614509999945, 49.626033286000045 ], [ -119.779654758999953, 49.625736222000043 ], [ -119.779432814999936, 49.625723510000057 ], [ -119.779445890999952, 49.625627004000059 ], [ -119.779011105999984, 49.625602098000059 ], [ -119.779496732999945, 49.622017919000029 ], [ -119.779924121999926, 49.622042402000041 ], [ -119.779952298999945, 49.621834411000073 ], [ -119.778387935999902, 49.621744790000015 ], [ -119.778429363999976, 49.621439050000049 ], [ -119.778045944999974, 49.621417082000043 ], [ -119.778469449999946, 49.618291609000089 ], [ -119.778205656, 49.618276493000089 ], [ -119.778569136, 49.615593760000124 ], [ -119.778191131999961, 49.615572099000055 ], [ -119.778513679999946, 49.613191346000086 ], [ -119.777598368, 49.61313888800008 ], [ -119.777828309999904, 49.611441766000034 ], [ -119.778083973999941, 49.609554652000057 ], [ -119.780482976999934, 49.609692125000016 ], [ -119.780670230999974, 49.608309308000074 ], [ -119.786180595999951, 49.608624872000114 ], [ -119.785695631999928, 49.61220914900008 ], [ -119.785648347999881, 49.612206443000105 ], [ -119.785442322999984, 49.613728943000076 ], [ -119.786444021999941, 49.613786277000067 ], [ -119.786353395999953, 49.614456076000103 ], [ -119.786435566999955, 49.614460779000069 ], [ -119.786307613999924, 49.615406431 ], [ -119.78830507, 49.6155207300001 ], [ -119.788028215999987, 49.617567349000062 ], [ -119.787956884999943, 49.618094634000052 ], [ -119.787820197999977, 49.619104982000067 ], [ -119.786172175000033, 49.61901068100012 ], [ -119.785894209999967, 49.618994773000082 ], [ -119.785721771999988, 49.620268926000058 ], [ -119.785718893999928, 49.620268762000158 ], [ -119.785695872999895, 49.620438855000089 ], [ -119.786587653999973, 49.620489889000119 ], [ -119.786455912999926, 49.621463409000057 ], [ -119.788040171999938, 49.621554052000093 ], [ -119.787555216999962, 49.625138271000019 ], [ -119.785338198, 49.625011419000046 ], [ -119.785313559999977, 49.62519343700005 ], [ -119.785317005999943, 49.625193635000059 ], [ -119.784831799999949, 49.628777824000053 ], [ -119.78480220199999, 49.62877613000007 ], [ -119.784754315, 49.629129824000053 ], [ -119.784750538999958, 49.629129608000035 ], [ -119.784695635999967, 49.629535125000082 ], [ -119.784685494999934, 49.62953454400013 ], [ -119.784591967999972, 49.630225325000076 ], [ -119.784570426999935, 49.630224093000109 ], [ -119.784510588999979, 49.630666026000014 ], [ -119.778997596999915, 49.630350387000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "0.999989855891248", "sL_AssetLoss": "302.047235", "sL_BldgLoss": "302.044171", "sL_StrLoss": "302.000371", "sL_NStrLoss": "0.0438", "sL_ContLoss": "0.003064", "geom_point": "0101000020E6100000BFD6632A56F45DC06E991DF34BD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.815348801999946, 49.676167381000027 ], [ -119.81543067299998, 49.675560305000069 ], [ -119.814167602999973, 49.675488451000057 ], [ -119.814651015999942, 49.67190437000005 ], [ -119.820169233999962, 49.672218185000105 ], [ -119.820087429999916, 49.672825268000054 ], [ -119.821350435999975, 49.672897054000074 ], [ -119.820867535999966, 49.676481159000033 ], [ -119.815348801999946, 49.676167381000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999965393097034", "sL_AssetLoss": "93.62294", "sL_BldgLoss": "93.6197", "sL_StrLoss": "93.6", "sL_NStrLoss": "0.0197", "sL_ContLoss": "0.00324", "geom_point": "0101000020E6100000DABFDB51D6ED5DC0082249189FD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.714540570999986, 49.63850371900007 ], [ -119.714502846999935, 49.636326397000026 ], [ -119.716645276999927, 49.63645035400009 ], [ -119.716491935999969, 49.637570396000051 ], [ -119.718753482999944, 49.63770119800008 ], [ -119.718624009999957, 49.638647202000101 ], [ -119.715665817999934, 49.638543307000127 ], [ -119.714540570999986, 49.63850371900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "202.4", "sL_BldgLoss": "202.4", "sL_StrLoss": "202.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9171D7767F65DC0C7C3318191D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.847544701999951, 49.697804801000103 ], [ -119.853066254999959, 49.698116940000041 ], [ -119.852585562999977, 49.701701057000029 ], [ -119.847063582999965, 49.701388895000086 ], [ -119.847544701999951, 49.697804801000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999933347914825", "sL_AssetLoss": "92.72028", "sL_BldgLoss": "92.7141", "sL_StrLoss": "92.7", "sL_NStrLoss": "0.0141", "sL_ContLoss": "0.00618", "geom_point": "0101000020E6100000B40D92F41FFE5DC057C7F9B46DD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.970265540999989, 49.676353052000046 ], [ -119.970216261999951, 49.675544631000058 ], [ -119.969801008999923, 49.675555291000109 ], [ -119.969784584999914, 49.675285817000045 ], [ -119.969369334999953, 49.675296474000042 ], [ -119.969361700999968, 49.675171184000135 ], [ -119.969165714, 49.675166051000062 ], [ -119.969232757999976, 49.674088214000044 ], [ -119.970364422, 49.674117854000059 ], [ -119.97047840599997, 49.674120838000086 ], [ -119.97047419799992, 49.674188532000073 ], [ -119.970549370999919, 49.674186602000056 ], [ -119.97056142000001, 49.674384259000064 ], [ -119.970561948999929, 49.674392923000077 ], [ -119.970567943999953, 49.674393080000073 ], [ -119.970876872999924, 49.674401169000085 ], [ -119.970860119999898, 49.674670628000072 ], [ -119.972105785999972, 49.674703234000035 ], [ -119.97200531299994, 49.676319991000113 ], [ -119.97162234299999, 49.676309968000041 ], [ -119.971510459999962, 49.676307040000012 ], [ -119.971511313999969, 49.67632106500006 ], [ -119.970265540999989, 49.676353052000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10978917", "BldgCostT": "7571667", "sL_LossRatio": "1", "sL_AssetLoss": "1127", "sL_BldgLoss": "1127", "sL_StrLoss": "1127", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F679EB7CCF25DC02B85824A43D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.791749949999954, 49.665602555000106 ], [ -119.79212659599996, 49.662819609000032 ], [ -119.790780803999937, 49.662742736000084 ], [ -119.791092088999903, 49.660442957000029 ], [ -119.790053531999916, 49.660383622000047 ], [ -119.790224085999952, 49.659123669000024 ], [ -119.788768473999966, 49.659040489000105 ], [ -119.789144113999939, 49.656265885000067 ], [ -119.787773922999946, 49.65618756800005 ], [ -119.788259189999962, 49.652603506000048 ], [ -119.793329631999896, 49.652893235000057 ], [ -119.793457505999953, 49.651947925000037 ], [ -119.798973184999952, 49.652262822000061 ], [ -119.798488757999948, 49.655846933000042 ], [ -119.793417956999974, 49.655557446000103 ], [ -119.79339957799999, 49.655693300000081 ], [ -119.794769763999952, 49.655771546000061 ], [ -119.794599346, 49.657031512000096 ], [ -119.796054905999981, 49.657114614000072 ], [ -119.795901769999958, 49.658247008000032 ], [ -119.798579699999948, 49.658399848000052 ], [ -119.798095176999979, 49.661983925000101 ], [ -119.796455636999895, 49.661890359000068 ], [ -119.796406097999977, 49.662256675000052 ], [ -119.79775188499994, 49.66233347900004 ], [ -119.797267256999973, 49.665917533000062 ], [ -119.791749949999954, 49.665602555000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "66.4", "sL_BldgLoss": "66.4", "sL_StrLoss": "66.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6F42B2148EF5DC0DA66D77BF9D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.737329199999948, 49.655463069000113 ], [ -119.740343487999951, 49.655636745 ], [ -119.740217201999954, 49.656562274000095 ], [ -119.73738718099996, 49.656569288000043 ], [ -119.737329199999948, 49.655463069000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999919943828103", "sL_AssetLoss": "196.1123", "sL_BldgLoss": "196.0966", "sL_StrLoss": "196", "sL_NStrLoss": "0.0966", "sL_ContLoss": "0.0157", "geom_point": "0101000020E610000076FC7A327DFD5DC007500083ACD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96334277199999, 49.671942340000044 ], [ -119.96332638699991, 49.671672865000055 ], [ -119.962080722999971, 49.671704762000047 ], [ -119.962047963999936, 49.671165809000072 ], [ -119.960802309999949, 49.671197692000135 ], [ -119.960751238999947, 49.670357047000017 ], [ -119.960316584999973, 49.670345628000106 ], [ -119.960367005999942, 49.669537257000037 ], [ -119.959536657999962, 49.669515439000108 ], [ -119.959587089999943, 49.668707068000124 ], [ -119.958756758000035, 49.668685244000123 ], [ -119.958765144, 49.668550853000113 ], [ -119.958562625999932, 49.66855603200009 ], [ -119.958553762999955, 49.668410009000098 ], [ -119.958358408999956, 49.668404874000011 ], [ -119.958382375999946, 49.668020850000097 ], [ -119.958114716999944, 49.668027694000088 ], [ -119.958104443999986, 49.66785839900011 ], [ -119.957976885, 49.667855046000057 ], [ -119.958077791999969, 49.666238307000079 ], [ -119.958908903999969, 49.666260156000085 ], [ -119.959323225999981, 49.666271046000119 ], [ -119.95928960599997, 49.666809959 ], [ -119.959704756999926, 49.666820870000038 ], [ -119.959682483, 49.667177913000067 ], [ -119.959726392, 49.667176790000106 ], [ -119.959759490999915, 49.667721865000026 ], [ -119.959770441999922, 49.667902190000049 ], [ -119.959894068999972, 49.667905440000013 ], [ -119.960052678999929, 49.667909607000063 ], [ -119.960041777999962, 49.668084363000048 ], [ -119.960019064, 49.668448521000073 ], [ -119.96034958099996, 49.66845720500006 ], [ -119.96084939299999, 49.668470336000055 ], [ -119.960832589999939, 49.668739793000057 ], [ -119.961247757999928, 49.668750698000125 ], [ -119.961214237999954, 49.669288266000116 ], [ -119.96119735299996, 49.669559069000059 ], [ -119.96152740299999, 49.66956773800004 ], [ -119.961612526999957, 49.669569974000126 ], [ -119.961608173999963, 49.669639818000064 ], [ -119.961579591999921, 49.670098217 ], [ -119.961982451, 49.670087905000059 ], [ -119.961998827999935, 49.670357381000024 ], [ -119.96240073899996, 49.670347091000039 ], [ -119.962414037999963, 49.670346751000075 ], [ -119.962414822999989, 49.670359660000045 ], [ -119.96243042, 49.670616227000082 ], [ -119.962708800999906, 49.670609099000089 ], [ -119.963260842999972, 49.67059496200006 ], [ -119.963276007999951, 49.670844371000022 ], [ -119.96327723, 49.670864438000088 ], [ -119.963418782999966, 49.670860812000058 ], [ -119.964107656999985, 49.670843166000033 ], [ -119.964120203999983, 49.671049463000017 ], [ -119.964124045999966, 49.671112641000093 ], [ -119.964262729999945, 49.671109089000048 ], [ -119.964539261999974, 49.67110200300008 ], [ -119.964552509, 49.671319754000088 ], [ -119.964588439999915, 49.671910429000029 ], [ -119.96334277199999, 49.671942340000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999991491053843", "sL_AssetLoss": "314.022436", "sL_BldgLoss": "314.019764", "sL_StrLoss": "314.000174", "sL_NStrLoss": "0.01959", "sL_ContLoss": "0.002672", "geom_point": "0101000020E610000014AB698BA9F25DC0ABD570F4A5C14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.78954728599993, 49.510440738000042 ], [ -119.795046024999976, 49.510755897000081 ], [ -119.794562776999967, 49.514340721000039 ], [ -119.793834144999906, 49.51429897600012 ], [ -119.793723383999961, 49.515120438000061 ], [ -119.793703156000021, 49.51511927899999 ], [ -119.793674993999929, 49.515328138 ], [ -119.78817572, 49.515012911000099 ], [ -119.788659469999942, 49.511428119000051 ], [ -119.788679696999907, 49.511429278000058 ], [ -119.788707878999929, 49.511220420000065 ], [ -119.78943645899993, 49.511262199000079 ], [ -119.78954728599993, 49.510440738000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "1", "sL_AssetLoss": "628.9", "sL_BldgLoss": "628.9", "sL_StrLoss": "628.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054C622FA33F65DC0B170ED9F82D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.846622487000019, 49.694964998000074 ], [ -119.846755329999951, 49.69397537300005 ], [ -119.842053205999918, 49.693709275000103 ], [ -119.842534636, 49.690125164000101 ], [ -119.843008390999927, 49.69015198400006 ], [ -119.84341676399994, 49.68711107700004 ], [ -119.848937002999918, 49.68742342900002 ], [ -119.848456099999979, 49.691007582000104 ], [ -119.847982334, 49.690980785000086 ], [ -119.847922426999958, 49.691427192000084 ], [ -119.85262435099996, 49.691693037000086 ], [ -119.852143692, 49.695277184000076 ], [ -119.846622487000019, 49.694964998000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "205.7", "sL_BldgLoss": "205.7", "sL_StrLoss": "205.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003AC01FC09AF35DC075AE282584D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.803802207999922, 49.689583569000028 ], [ -119.809322474999959, 49.689897925 ], [ -119.808838457999968, 49.693481890000093 ], [ -119.803317763999985, 49.693167510000066 ], [ -119.803802207999922, 49.689583569000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999975270885025", "sL_AssetLoss": "526.10051", "sL_BldgLoss": "526.0875", "sL_StrLoss": "526", "sL_NStrLoss": "0.0875", "sL_ContLoss": "0.01301", "geom_point": "0101000020E6100000B6E93A1A68F35DC00D9834044FD44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.801055595999941, 49.655368310000071 ], [ -119.806571738999978, 49.65568282100007 ], [ -119.806087866999974, 49.659266948000024 ], [ -119.805767927999938, 49.659248714000057 ], [ -119.805402584999953, 49.661954356000123 ], [ -119.799885699999919, 49.661639789000084 ], [ -119.800370078999933, 49.658055701000109 ], [ -119.800690006999929, 49.658073951000041 ], [ -119.801055595999941, 49.655368310000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999921528503601", "sL_AssetLoss": "363.1892", "sL_BldgLoss": "363.1607", "sL_StrLoss": "363", "sL_NStrLoss": "0.1607", "sL_ContLoss": "0.0285", "geom_point": "0101000020E61000000B59C44D59EF5DC03743609B43CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.737187819999974, 49.613359674000051 ], [ -119.73726021, 49.612828872000108 ], [ -119.736464330999965, 49.61278295600011 ], [ -119.736953133999947, 49.609198901000134 ], [ -119.742463304999958, 49.609516679000059 ], [ -119.742390980999971, 49.610047487000053 ], [ -119.743186816999923, 49.610093360000128 ], [ -119.742698490999956, 49.613677438000103 ], [ -119.737187819999974, 49.613359674000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999995867485429", "sL_AssetLoss": "250.210854", "sL_BldgLoss": "250.20982", "sL_StrLoss": "250.2", "sL_NStrLoss": "0.00982", "sL_ContLoss": "0.001034", "geom_point": "0101000020E6100000900ED5B5B2F25DC0BD3188386BD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.789120613999984, 49.692369005000074 ], [ -119.789601751999925, 49.688817638000046 ], [ -119.795121829999943, 49.68913271400006 ], [ -119.794908693999957, 49.690707375000045 ], [ -119.795161780999962, 49.69070126200004 ], [ -119.795208183999989, 49.691509806000084 ], [ -119.794798736999937, 49.691519696000093 ], [ -119.79464111499999, 49.692684103000083 ], [ -119.794636713000017, 49.69271662000002 ], [ -119.789116206999907, 49.692401521000129 ], [ -119.789120613999984, 49.692369005000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999996366232611", "sL_AssetLoss": "74.30305", "sL_BldgLoss": "74.30278", "sL_StrLoss": "74.3", "sL_NStrLoss": "0.00278", "sL_ContLoss": "0.00027", "geom_point": "0101000020E610000018004FFF3EFE5DC005EFB3E3E9D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.97258784, 49.680332025000077 ], [ -119.972558007999936, 49.679843127000083 ], [ -119.972202856999942, 49.679833833000018 ], [ -119.972204219999966, 49.679811910000048 ], [ -119.972140265999954, 49.679813552000034 ], [ -119.972108422999938, 49.67929156600011 ], [ -119.97182109, 49.679284046000042 ], [ -119.971837838999974, 49.679014587000047 ], [ -119.971780896999931, 49.679013097000087 ], [ -119.971675668999978, 49.679015800000073 ], [ -119.971675333999926, 49.679010334000068 ], [ -119.971422579999967, 49.679003718000054 ], [ -119.971472832999922, 49.678195340000123 ], [ -119.971057580999911, 49.678184470000062 ], [ -119.971107836999948, 49.67737609200001 ], [ -119.97219574199994, 49.677404568000064 ], [ -119.972353570999985, 49.677408697000018 ], [ -119.972341175999972, 49.677608164000091 ], [ -119.972320080999935, 49.677947616000083 ], [ -119.972588676999919, 49.677954644000067 ], [ -119.972735330999967, 49.677958482000136 ], [ -119.972723815999927, 49.678143824000067 ], [ -119.972721613999965, 49.678179244000084 ], [ -119.972748620999937, 49.678178552000098 ], [ -119.972872179000021, 49.678175376000098 ], [ -119.972875636999959, 49.678232051000116 ], [ -119.973133841999982, 49.678238806000095 ], [ -119.973117099, 49.678508266000044 ], [ -119.973532354999918, 49.678519129000065 ], [ -119.973498875999937, 49.67905804800008 ], [ -119.973914136999923, 49.679068910000041 ], [ -119.973835671999979, 49.680332105000041 ], [ -119.973845478999962, 49.680492790000145 ], [ -119.973850759999976, 49.680579289000036 ], [ -119.973820267999926, 49.680580073000066 ], [ -119.973813707999952, 49.680685668000116 ], [ -119.972567887999972, 49.680653077000031 ], [ -119.97258784, 49.680332025000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "222.1", "sL_BldgLoss": "222.1", "sL_StrLoss": "222.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D77E7DC2FF35DC084431438FEC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.797288609999924, 49.505808302000105 ], [ -119.802786849999933, 49.506123072000044 ], [ -119.8023042519999, 49.509707954000085 ], [ -119.796805588999959, 49.509393162000066 ], [ -119.797288609999924, 49.505808302000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752667", "BldgCostT": "5346667", "sL_LossRatio": "0.999965615339847", "sL_AssetLoss": "1047.26933", "sL_BldgLoss": "1047.23332", "sL_StrLoss": "1047.00112", "sL_NStrLoss": "0.2322", "sL_ContLoss": "0.03601", "geom_point": "0101000020E61000000869F8DCAAF35DC017E98F7A99D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.801941021999966, 49.668779511000025 ], [ -119.8023650799999, 49.665641268000087 ], [ -119.803550580999982, 49.665708855000162 ], [ -119.803605745999974, 49.665300497000082 ], [ -119.804829823999981, 49.665370269000107 ], [ -119.804836191999954, 49.665323125000029 ], [ -119.810353553999903, 49.66563744000009 ], [ -119.810236574999976, 49.666504307000082 ], [ -119.815631943999932, 49.666811397000053 ], [ -119.815148660999952, 49.670395508000112 ], [ -119.814258055999971, 49.670344835000023 ], [ -119.814137263999925, 49.671240429000079 ], [ -119.808619204999943, 49.670926309000031 ], [ -119.808857117999963, 49.669163859000072 ], [ -119.80864568299998, 49.66915181800011 ], [ -119.808639318999951, 49.669198962000081 ], [ -119.807453720999945, 49.669131431000068 ], [ -119.807398584999973, 49.669539789000041 ], [ -119.805429432999972, 49.669427599000102 ], [ -119.805005549, 49.672565836000047 ], [ -119.799487392999964, 49.672251254000102 ], [ -119.799971915999947, 49.668667222000074 ], [ -119.801941021999966, 49.668779511000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "138.5", "sL_BldgLoss": "138.5", "sL_StrLoss": "138.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001169C0C5EFF25DC02498CD90E8D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.794444190999954, 49.696181245000076 ], [ -119.794385639999987, 49.69380763900012 ], [ -119.792555302999943, 49.693725633000099 ], [ -119.792680402999963, 49.69280182000012 ], [ -119.798200979999976, 49.693116738000157 ], [ -119.79771606099996, 49.696700638000017 ], [ -119.794452412999988, 49.696514500000092 ], [ -119.794444190999954, 49.696181245000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.999922552720036", "sL_AssetLoss": "693.3749", "sL_BldgLoss": "693.3212", "sL_StrLoss": "693", "sL_NStrLoss": "0.3212", "sL_ContLoss": "0.0537", "geom_point": "0101000020E6100000BB99D18F06EF5DC081A1DCF01AAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.734342332999987, 49.347501922000085 ], [ -119.734327384999929, 49.347232378000093 ], [ -119.733914818999949, 49.347242143000102 ], [ -119.73389987299997, 49.34697259900004 ], [ -119.733487306999962, 49.346982363000087 ], [ -119.733472363999979, 49.346712818000078 ], [ -119.730996986999983, 49.346771373000102 ], [ -119.730937267999977, 49.345693191000059 ], [ -119.732685218999933, 49.345651851000092 ], [ -119.732158880999947, 49.345621275000028 ], [ -119.732645197999943, 49.342035839000069 ], [ -119.73812355799997, 49.342353959000029 ], [ -119.737637663999919, 49.345939419000047 ], [ -119.73590248, 49.345838690000043 ], [ -119.735902860999957, 49.345845578000144 ], [ -119.73549030699999, 49.345855349000054 ], [ -119.735520215999912, 49.346394439000051 ], [ -119.735932775, 49.346384667000102 ], [ -119.735977645999967, 49.347193299000047 ], [ -119.735565080999947, 49.347203071000109 ], [ -119.735580037999952, 49.347472616000076 ], [ -119.734342332999987, 49.347501922000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24842083", "BldgCostT": "15658333", "sL_LossRatio": "0.999831626931874", "sL_AssetLoss": "2260.266468", "sL_BldgLoss": "2259.8859", "sL_StrLoss": "2258.33", "sL_NStrLoss": "1.5559", "sL_ContLoss": "0.380568", "geom_point": "0101000020E6100000930822C59FE85DC0C52EDD66A2AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.629802294999976, 49.346870348000067 ], [ -119.630267494999927, 49.343496114000111 ], [ -119.627288735999926, 49.343320187000103 ], [ -119.627416414999971, 49.342394437000074 ], [ -119.627434888, 49.342260491000062 ], [ -119.627563520999971, 49.342100814000034 ], [ -119.628099011999936, 49.341436191000113 ], [ -119.628346809999968, 49.341181612000085 ], [ -119.62905428399999, 49.340685704000109 ], [ -119.629805294999983, 49.340075010000078 ], [ -119.630222886, 49.339774845000058 ], [ -119.631980036999963, 49.339878594000048 ], [ -119.632155332999986, 49.338606540000114 ], [ -119.632222606999932, 49.338561584000033 ], [ -119.632470219999973, 49.338337586000115 ], [ -119.633194508999907, 49.337268988000048 ], [ -119.633779175999976, 49.336613823000036 ], [ -119.633788744999947, 49.336613605000068 ], [ -119.633788216, 49.336603693000015 ], [ -119.633853984999959, 49.336529993000113 ], [ -119.634243685999948, 49.336005492000076 ], [ -119.634376312999933, 49.335894913000061 ], [ -119.63445479799999, 49.3357887290001 ], [ -119.634570573999937, 49.335786088000063 ], [ -119.634562902999974, 49.33564247200006 ], [ -119.634717688999956, 49.335433056000042 ], [ -119.63484278, 49.335263803000046 ], [ -119.634855842999912, 49.335239790000067 ], [ -119.634954277999924, 49.335237544000059 ], [ -119.63494558399999, 49.335074823000106 ], [ -119.634981400999948, 49.335008986000062 ], [ -119.635062213999959, 49.334705573000086 ], [ -119.635064965999959, 49.334695228000044 ], [ -119.63533797299999, 49.334688999000029 ], [ -119.635335816999941, 49.334648653000031 ], [ -119.635323570999944, 49.334419432000104 ], [ -119.63697354, 49.334381775000026 ], [ -119.636944719, 49.333842641000068 ], [ -119.638182178999969, 49.333814383000039 ], [ -119.638196595999943, 49.334083950000071 ], [ -119.638609085999974, 49.334074527000055 ], [ -119.638623504999913, 49.334344094000087 ], [ -119.640273464999922, 49.334306388000094 ], [ -119.640316751999961, 49.335115088000066 ], [ -119.639904254999948, 49.335124516000114 ], [ -119.639918681999916, 49.335394081000061 ], [ -119.639093683999945, 49.335412934000068 ], [ -119.639108105999966, 49.335682501000051 ], [ -119.638283101999974, 49.3357013480001 ], [ -119.63829752099997, 49.335970914000043 ], [ -119.63788501599997, 49.335980335000102 ], [ -119.637895147, 49.336169763000086 ], [ -119.640311115999936, 49.336312242000119 ], [ -119.639817713999946, 49.339897292000046 ], [ -119.638272235999963, 49.339806155000041 ], [ -119.63823426099998, 49.340081994000109 ], [ -119.639914279999985, 49.34018106300001 ], [ -119.639420806999908, 49.343766089000042 ], [ -119.63888391799999, 49.343734433000087 ], [ -119.638821402999923, 49.344188502000058 ], [ -119.637365266999964, 49.344102631000084 ], [ -119.63733364899997, 49.344332236000085 ], [ -119.63584862, 49.344244639000131 ], [ -119.63585657199999, 49.344393402000094 ], [ -119.63566565799999, 49.344397758000113 ], [ -119.635280515999909, 49.347193675000057 ], [ -119.629802294999976, 49.346870348000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999988001101737", "sL_AssetLoss": "555.05096", "sL_BldgLoss": "555.0443", "sL_StrLoss": "555", "sL_NStrLoss": "0.0443", "sL_ContLoss": "0.00666", "geom_point": "0101000020E6100000055E9812EAEA5DC06C8ACFB67DA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.666713852999919, 49.318014037000104 ], [ -119.667204941999941, 49.314428748000111 ], [ -119.668875556999978, 49.314526869000069 ], [ -119.668901776, 49.314335387000014 ], [ -119.674376423999888, 49.314656749000015 ], [ -119.673885886999969, 49.318242070000053 ], [ -119.672215127999934, 49.318144027000145 ], [ -119.672188920999943, 49.318335508000104 ], [ -119.666713852999919, 49.318014037000104 ] ], [ [ -119.674030311999942, 49.315874507000061 ], [ -119.673888206999976, 49.31580608900007 ], [ -119.673633985999942, 49.315910107000022 ], [ -119.673584719999937, 49.316028305000046 ], [ -119.673792810999913, 49.316041101000053 ], [ -119.673970290999975, 49.316019696000168 ], [ -119.674030311999942, 49.315874507000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999982656297215", "sL_AssetLoss": "441.65886", "sL_BldgLoss": "441.6512", "sL_StrLoss": "441.6", "sL_NStrLoss": "0.0512", "sL_ContLoss": "0.00766", "geom_point": "0101000020E6100000833DC3275FF25DC015F6F6DF31B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.784555644999955, 49.41363414400012 ], [ -119.790042840999888, 49.413949602000066 ], [ -119.78961718099994, 49.417111771000059 ], [ -119.789560217999949, 49.417534912000072 ], [ -119.786675588999913, 49.417369112000173 ], [ -119.784072599999931, 49.417219432000081 ], [ -119.784555644999955, 49.41363414400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "1", "sL_AssetLoss": "274", "sL_BldgLoss": "274", "sL_StrLoss": "274", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B36BCE03D0F25DC06CD034B443A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.793053719999932, 49.312707995000096 ], [ -119.796924493999938, 49.312930766000086 ], [ -119.796443454999931, 49.316516647000093 ], [ -119.796140129999941, 49.316499195000119 ], [ -119.790967747999986, 49.316201469000063 ], [ -119.791449207999932, 49.312615610000101 ], [ -119.793053719999932, 49.312707995000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8132083", "BldgCostT": "5608333", "sL_LossRatio": "0.999999841143744", "sL_AssetLoss": "892.0013807", "sL_BldgLoss": "892.001239", "sL_StrLoss": "892", "sL_NStrLoss": "0.001239", "sL_ContLoss": "0.0001417", "geom_point": "0101000020E6100000CCA3F2E1DFEC5DC0BFEDAE58E8AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.699135860999945, 49.361906293000061 ], [ -119.69915226199997, 49.360737910000118 ], [ -119.697040083999966, 49.360798871000078 ], [ -119.693057310999947, 49.36090461900006 ], [ -119.693465793999948, 49.357912881000068 ], [ -119.698945763999987, 49.358232978000075 ], [ -119.698939204999988, 49.358281059000078 ], [ -119.701141858999904, 49.358409642000069 ], [ -119.702483471999969, 49.35848793800006 ], [ -119.702629031999933, 49.357420235000042 ], [ -119.702951147999983, 49.355057291000087 ], [ -119.704960835999927, 49.3551745440001 ], [ -119.708430843999935, 49.355376909000057 ], [ -119.707942512999978, 49.358962166 ], [ -119.702929065999911, 49.358669755000079 ], [ -119.702461350999926, 49.362100383000055 ], [ -119.699135860999945, 49.361906293000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.999954214309485", "sL_AssetLoss": "421.52908", "sL_BldgLoss": "421.50978", "sL_StrLoss": "421.4", "sL_NStrLoss": "0.10978", "sL_ContLoss": "0.0193", "geom_point": "0101000020E6100000007A33CD68E85DC08DABBADC9AAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.629326603999957, 49.355703186 ], [ -119.629293499999932, 49.355041683000103 ], [ -119.629438952, 49.354185033000093 ], [ -119.629477575999942, 49.3539575 ], [ -119.62945851899994, 49.353754896000041 ], [ -119.62938112099999, 49.35363470700004 ], [ -119.629364089999967, 49.353608303000065 ], [ -119.629023318999927, 49.353367801000076 ], [ -119.632499603999946, 49.353573 ], [ -119.6322627499999, 49.355291240000106 ], [ -119.633869871999977, 49.355386067000062 ], [ -119.633375768999926, 49.358970985000113 ], [ -119.62984436899994, 49.358762587000044 ], [ -119.629807920999923, 49.359026867000132 ], [ -119.629767641999962, 49.359024489000028 ], [ -119.62977471899994, 49.358842298000098 ], [ -119.629652513999986, 49.357074999000126 ], [ -119.629440702999943, 49.356507801000106 ], [ -119.629355386999947, 49.356105192000058 ], [ -119.629326603999957, 49.355703186 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311833", "BldgCostT": "3663333", "sL_LossRatio": "0.99999056599317", "sL_AssetLoss": "642.038967", "sL_BldgLoss": "642.03291", "sL_StrLoss": "642.00009", "sL_NStrLoss": "0.03282", "sL_ContLoss": "0.006057", "geom_point": "0101000020E6100000FBB20F0DE6EF5DC0EC8FE67E3DBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.74679895, 49.457935907000028 ], [ -119.747146752999953, 49.455372368000077 ], [ -119.744415542999931, 49.455214448000092 ], [ -119.744902062, 49.451629538000098 ], [ -119.748270329999968, 49.451824284000111 ], [ -119.748711578999959, 49.452335097000059 ], [ -119.749541584999974, 49.452882007000092 ], [ -119.751807607, 49.454897308000106 ], [ -119.752308287999981, 49.455946910000073 ], [ -119.75213929599991, 49.457130389000085 ], [ -119.752025988999961, 49.457312701000077 ], [ -119.752113907999984, 49.457886708000011 ], [ -119.752048336999962, 49.458239232000054 ], [ -119.74679895, 49.457935907000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999936762102534", "sL_AssetLoss": "442.29807", "sL_BldgLoss": "442.2701", "sL_StrLoss": "442.1", "sL_NStrLoss": "0.1701", "sL_ContLoss": "0.02797", "geom_point": "0101000020E6100000A0202DA559E85DC03ACD9FC2D3AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.627865876999962, 49.348308441000022 ], [ -119.633344256, 49.348631865000073 ], [ -119.632850183999935, 49.352216816000087 ], [ -119.62839508, 49.351953825000088 ], [ -119.628372216999978, 49.35180960600006 ], [ -119.628295607999988, 49.351666414000071 ], [ -119.628231978999906, 49.351547423000099 ], [ -119.627603795999946, 49.350372798000066 ], [ -119.627585363999913, 49.350342156000089 ], [ -119.627865876999962, 49.348308441000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5952250", "BldgCostT": "4105000", "sL_LossRatio": "0.99996371791999", "sL_AssetLoss": "786.3386", "sL_BldgLoss": "786.31007", "sL_StrLoss": "786.10109", "sL_NStrLoss": "0.20898", "sL_ContLoss": "0.02853", "geom_point": "0101000020E6100000DD6CDEFEBDE85DC04692627853AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.635637969999962, 49.364393567 ], [ -119.635835007999987, 49.36296371600011 ], [ -119.631580635, 49.362712759000061 ], [ -119.63207491699994, 49.359127869000098 ], [ -119.637554603999945, 49.35945107400007 ], [ -119.63735763499993, 49.360880936000079 ], [ -119.641611869999963, 49.361131666000048 ], [ -119.641118304999935, 49.364716589000032 ], [ -119.635637969999962, 49.364393567 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "66.1", "sL_BldgLoss": "66.1", "sL_StrLoss": "66.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000B7560521FEC5DC05B02B6A49FAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68913233899994, 49.363292718000054 ], [ -119.690862007, 49.363393840000072 ], [ -119.690816680999887, 49.365184280000044 ], [ -119.68788553499995, 49.365132274000068 ], [ -119.688092326999978, 49.36361916900006 ], [ -119.688144831999978, 49.363234973 ], [ -119.68913233899994, 49.363292718000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "337", "sL_BldgLoss": "337", "sL_StrLoss": "337", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DBF46FB05AF05DC06E275B6EFAA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.753040364999919, 49.302566093000038 ], [ -119.758514202999905, 49.30288319900005 ], [ -119.75835672800001, 49.304050163000078 ], [ -119.758030297999966, 49.306468963000057 ], [ -119.752556039999916, 49.306151834000048 ], [ -119.752776169999947, 49.304522149000036 ], [ -119.753040364999919, 49.302566093000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999948611933447", "sL_AssetLoss": "478.12657", "sL_BldgLoss": "478.102", "sL_StrLoss": "478", "sL_NStrLoss": "0.102", "sL_ContLoss": "0.02457", "geom_point": "0101000020E61000008D71516FBEF25DC017D0B0BD3BB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.790370783999933, 49.413935379000087 ], [ -119.795858054999925, 49.414250543000044 ], [ -119.795471144, 49.417127558000061 ], [ -119.795375877999945, 49.417835877000066 ], [ -119.789888185999956, 49.417520692000082 ], [ -119.789948386999953, 49.417073475000073 ], [ -119.790370783999933, 49.413935379000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8796666", "BldgCostT": "6066666", "sL_LossRatio": "0.999987064434976", "sL_AssetLoss": "1059.0956", "sL_BldgLoss": "1059.0819", "sL_StrLoss": "1059", "sL_NStrLoss": "0.0819", "sL_ContLoss": "0.0137", "geom_point": "0101000020E6100000652CBBDCB7EB5DC0DB8D3EE683AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.67729895799998, 49.366591719000091 ], [ -119.677548295999941, 49.364770433000039 ], [ -119.681177042999963, 49.364982933000135 ], [ -119.681194848999908, 49.364852787000117 ], [ -119.679896804999956, 49.364776788 ], [ -119.680387367999913, 49.361191689000037 ], [ -119.682150362999948, 49.361294907000058 ], [ -119.682430687999911, 49.359245430000023 ], [ -119.687910737999943, 49.359566086000086 ], [ -119.687733153999886, 49.360865568000087 ], [ -119.688189914999953, 49.360892281000112 ], [ -119.687804926999945, 49.363709380000103 ], [ -119.687699957999911, 49.364477417000074 ], [ -119.686778077999961, 49.364423498000058 ], [ -119.686721559999953, 49.364836954000111 ], [ -119.686804916999932, 49.364841829000049 ], [ -119.686767927999981, 49.365112424000081 ], [ -119.68634253599997, 49.36510486500007 ], [ -119.686188005999952, 49.365271786000072 ], [ -119.685879692999947, 49.365422703000036 ], [ -119.685229297999939, 49.365382787000073 ], [ -119.684630347999928, 49.365588199000108 ], [ -119.684552205999964, 49.365614983000064 ], [ -119.683851410999978, 49.36564059700008 ], [ -119.683559800999959, 49.36582718500005 ], [ -119.683110493999905, 49.365945404000072 ], [ -119.681461403999947, 49.366010910000078 ], [ -119.680783998999914, 49.366233087000111 ], [ -119.680748525999945, 49.366234375000026 ], [ -119.68064159699999, 49.366238197000058 ], [ -119.680110296999928, 49.366257299000068 ], [ -119.6797476039999, 49.366354195000014 ], [ -119.679764964999947, 49.366808686000056 ], [ -119.679756039999987, 49.366809337000042 ], [ -119.679764285999951, 49.368514022000056 ], [ -119.67705747399998, 49.368355500000042 ], [ -119.67729895799998, 49.366591719000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.999989849625695", "sL_AssetLoss": "310.825976", "sL_BldgLoss": "310.822821", "sL_StrLoss": "310.800281", "sL_NStrLoss": "0.02254", "sL_ContLoss": "0.003155", "geom_point": "0101000020E61000005E28479EF7F35DC06310B3F2A6AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.814187174999944, 49.339351780000158 ], [ -119.814967756999977, 49.339396534000066 ], [ -119.81448784, 49.342982352000092 ], [ -119.809008883999951, 49.3426681 ], [ -119.809259381999965, 49.340798167000074 ], [ -119.809489222999929, 49.339082304 ], [ -119.814187174999944, 49.339351780000158 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25727833", "BldgCostT": "17743333", "sL_LossRatio": "0.999972571971236", "sL_AssetLoss": "3223.490859", "sL_BldgLoss": "3223.402445", "sL_StrLoss": "3222.800975", "sL_NStrLoss": "0.60147", "sL_ContLoss": "0.088414", "geom_point": "0101000020E6100000D8369C64F1ED5DC07B75869010AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.713852265999932, 49.352932053000089 ], [ -119.713873116999963, 49.352778818000075 ], [ -119.713071750999944, 49.35273213100006 ], [ -119.713432377999965, 49.350081963000015 ], [ -119.707980762999938, 49.349764199000063 ], [ -119.708116887, 49.348764638000091 ], [ -119.708468993999986, 49.346178893000058 ], [ -119.70948632399994, 49.346238212000046 ], [ -119.709454511999979, 49.345659325000021 ], [ -119.709782868, 49.345651622000062 ], [ -119.709792369999931, 49.345581822000049 ], [ -119.710013601999904, 49.345594719000061 ], [ -119.71033437299991, 49.343238227000079 ], [ -119.715812722999914, 49.34355747700009 ], [ -119.715555130999959, 49.34545150100007 ], [ -119.715825915999943, 49.345467274000022 ], [ -119.716141834999988, 49.343144261000113 ], [ -119.716371877999961, 49.343157660000045 ], [ -119.716393430999915, 49.342999165000037 ], [ -119.717115722999921, 49.343041233000115 ], [ -119.717169518, 49.342645583000063 ], [ -119.718794705999983, 49.342740218000088 ], [ -119.71869071499998, 49.340854030000123 ], [ -119.719103232999927, 49.340844320000031 ], [ -119.719073508999969, 49.340305224000119 ], [ -119.719486021999927, 49.340295511000072 ], [ -119.719456294999972, 49.339756415000096 ], [ -119.719868804, 49.339746702000063 ], [ -119.719839071999928, 49.339207606000095 ], [ -119.72025157399996, 49.339197891000104 ], [ -119.720236707999973, 49.338928343000106 ], [ -119.720649209999976, 49.338918628000037 ], [ -119.720634340999965, 49.338649079000056 ], [ -119.721046838999911, 49.338639362000094 ], [ -119.721002223999932, 49.337830718000134 ], [ -119.72017724, 49.337850151000055 ], [ -119.720133799999985, 49.33706249100004 ], [ -119.719999304999959, 49.337054660000049 ], [ -119.720094664, 49.336352886000064 ], [ -119.720088042999961, 49.336232861000049 ], [ -119.720111046999961, 49.336232320000136 ], [ -119.720331788999914, 49.334607730000094 ], [ -119.719998855999961, 49.334615571000036 ], [ -119.719909677999908, 49.332998281000108 ], [ -119.719497225999959, 49.333007994000063 ], [ -119.719422925999979, 49.331660251000095 ], [ -119.721072688000035, 49.33162139300012 ], [ -119.721102425999945, 49.332160490000057 ], [ -119.721514869999965, 49.332150772000105 ], [ -119.721529740999983, 49.332420320000068 ], [ -119.722354633999942, 49.332400880000108 ], [ -119.72236951099994, 49.33267042800005 ], [ -119.722781957999985, 49.332660705000123 ], [ -119.722789119999987, 49.332790467000045 ], [ -119.724789919999964, 49.332906891000057 ], [ -119.726099380000036, 49.332983068000082 ], [ -119.72561265199991, 49.336568523000075 ], [ -119.725586474999943, 49.33656700100007 ], [ -119.725476989999919, 49.337373424000099 ], [ -119.723915518999974, 49.337282586000093 ], [ -119.723862981999957, 49.337279529000114 ], [ -119.723904551999965, 49.338032205000076 ], [ -119.72349205799999, 49.338041933000049 ], [ -119.72360077699993, 49.340010602000071 ], [ -119.723611143999932, 49.340198312000055 ], [ -119.72353786499994, 49.340200040000092 ], [ -119.723198632999953, 49.340208039000103 ], [ -119.723246617999962, 49.341077010000085 ], [ -119.723258170999941, 49.341286228000065 ], [ -119.723176493999929, 49.341288153000036 ], [ -119.722845650999915, 49.341295953000071 ], [ -119.722875416999955, 49.341835048000071 ], [ -119.722995801999957, 49.341832211000103 ], [ -119.723287941999942, 49.341825323000108 ], [ -119.72332890699991, 49.342567078000116 ], [ -119.723407033999976, 49.343981701000104 ], [ -119.722506773999982, 49.344002924000073 ], [ -119.722340368999966, 49.345227786000088 ], [ -119.722663590999957, 49.34524659300012 ], [ -119.722176467999958, 49.348831967000116 ], [ -119.721559952999939, 49.348796095000083 ], [ -119.72149596299991, 49.349266982000081 ], [ -119.720337394999916, 49.349199560000095 ], [ -119.720124984999984, 49.350762309000089 ], [ -119.71967369399999, 49.350736043000062 ], [ -119.719331785999984, 49.353251120000067 ], [ -119.713852265999932, 49.352932053000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "292.8", "sL_BldgLoss": "292.8", "sL_StrLoss": "292.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013E490A2C8E75DC0A7378A498BB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.619141169999963, 49.377595425000038 ], [ -119.624622951999982, 49.377919277000075 ], [ -119.624268265999916, 49.380487646000056 ], [ -119.624234294999951, 49.380733613000068 ], [ -119.623662744999962, 49.380733279000076 ], [ -119.61884709399996, 49.38076278600002 ], [ -119.618703260999951, 49.380763663 ], [ -119.619141169999963, 49.377595425000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "363", "sL_BldgLoss": "363", "sL_StrLoss": "363", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000846B8BBEC4F35DC0668C07424FB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.809568030999955, 49.375651434000098 ], [ -119.811865109999985, 49.375783108000093 ], [ -119.811384573999973, 49.379368718000066 ], [ -119.811171687999931, 49.379356517000069 ], [ -119.805901331999934, 49.379054326000066 ], [ -119.806382288999956, 49.375468738000052 ], [ -119.809568030999955, 49.375651434000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9033500", "BldgCostT": "6230000", "sL_LossRatio": "0.99997644105254", "sL_AssetLoss": "1207.312001", "sL_BldgLoss": "1207.283558", "sL_StrLoss": "1207.100578", "sL_NStrLoss": "0.18298", "sL_ContLoss": "0.028443", "geom_point": "0101000020E61000005590971C14ED5DC041EEE8A0C7AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.703437346999934, 49.353731863000107 ], [ -119.70367138099999, 49.352014726000014 ], [ -119.699282726999968, 49.351758554000092 ], [ -119.699771652999956, 49.348173298000084 ], [ -119.700018085999943, 49.348187688000088 ], [ -119.70005285399999, 49.347932704000073 ], [ -119.700752027999926, 49.347973526000068 ], [ -119.700796638000014, 49.34764631900002 ], [ -119.701448871999972, 49.34768439700013 ], [ -119.701762418999948, 49.345384235000068 ], [ -119.707240962999961, 49.345703918000041 ], [ -119.706752641999969, 49.349289221000056 ], [ -119.706100379999953, 49.349251175000127 ], [ -119.705962214999943, 49.350265396000111 ], [ -119.706313586999983, 49.350285892000059 ], [ -119.70940509399999, 49.350466170000075 ], [ -119.70891689099993, 49.354051458000072 ], [ -119.705331737, 49.353842386000103 ], [ -119.703437346999934, 49.353731863000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.999969266705005", "sL_AssetLoss": "421.36712", "sL_BldgLoss": "421.35417", "sL_StrLoss": "421.3", "sL_NStrLoss": "0.05417", "sL_ContLoss": "0.01295", "geom_point": "0101000020E6100000B0922CB34AF45DC0638C9B5C84AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.816890739999963, 49.330348008000115 ], [ -119.820037908999922, 49.330528373000092 ], [ -119.819558475999941, 49.334114262000128 ], [ -119.816498018999937, 49.333938868000125 ], [ -119.81408053199999, 49.333800262000111 ], [ -119.814560386999943, 49.330214395000077 ], [ -119.816890739999963, 49.330348008000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "551.7", "sL_BldgLoss": "551.7", "sL_StrLoss": "551.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054654AB1C4EF5DC038B34404EFB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.744825909000014, 49.426789464000059 ], [ -119.750314394999933, 49.427106928000022 ], [ -119.750033840999919, 49.429177230000072 ], [ -119.749828552999958, 49.430691992000035 ], [ -119.748064621999944, 49.430589994000108 ], [ -119.74793461900002, 49.431548933000094 ], [ -119.743315352999986, 49.431281691000081 ], [ -119.74244562199999, 49.431231352000076 ], [ -119.74293204199999, 49.427646324000129 ], [ -119.744695848999982, 49.427748405000095 ], [ -119.744825909000014, 49.426789464000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999979394329253", "sL_AssetLoss": "305.061654", "sL_BldgLoss": "305.055368", "sL_StrLoss": "305.000573", "sL_NStrLoss": "0.054795", "sL_ContLoss": "0.006286", "geom_point": "0101000020E6100000F419ED448BEE5DC0338F577BB3B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.724750032, 49.425400598000074 ], [ -119.730238213999911, 49.425719079000018 ], [ -119.729750830999976, 49.429304060000035 ], [ -119.725719430999945, 49.429070145000033 ], [ -119.72426222699994, 49.428985556000079 ], [ -119.724521776, 49.427078156000029 ], [ -119.724750032, 49.425400598000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16952916", "BldgCostT": "11691666", "sL_LossRatio": "0.999920415248308", "sL_AssetLoss": "2455.2442", "sL_BldgLoss": "2455.0488", "sL_StrLoss": "2454", "sL_NStrLoss": "1.0488", "sL_ContLoss": "0.1954", "geom_point": "0101000020E6100000AA0F24EF9CF35DC031815306ABAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.803943875999948, 49.36486020700012 ], [ -119.804192452999985, 49.363007093000071 ], [ -119.803281375999958, 49.362954794000053 ], [ -119.803762368999983, 49.359369131000072 ], [ -119.805517030999965, 49.359469850000067 ], [ -119.8055356079999, 49.35933130600003 ], [ -119.804372251999936, 49.359264532000047 ], [ -119.804746183999939, 49.356476291000021 ], [ -119.802568975999947, 49.356351289000024 ], [ -119.802938636999926, 49.353595515000066 ], [ -119.802039538999949, 49.353543882000046 ], [ -119.802520529999967, 49.34995817500004 ], [ -119.803184443999911, 49.34999630300004 ], [ -119.803414981999964, 49.348277291000059 ], [ -119.805465883999943, 49.348395047000068 ], [ -119.808894564999946, 49.348591824000067 ], [ -119.808667299999939, 49.35028791800007 ], [ -119.80875817899999, 49.350293131000058 ], [ -119.808385817999948, 49.353071869000054 ], [ -119.808530065999932, 49.35308014500005 ], [ -119.808156387999972, 49.355868414000128 ], [ -119.810333588999967, 49.355993302000108 ], [ -119.810160326999906, 49.357286467000023 ], [ -119.811323642999966, 49.35735317900005 ], [ -119.810843255999927, 49.360938885000095 ], [ -119.809088527999947, 49.360838253000068 ], [ -119.808994908999978, 49.361536776999984 ], [ -119.809905963999924, 49.361589028000076 ], [ -119.809609383999927, 49.363802108000101 ], [ -119.809425424, 49.365174705000086 ], [ -119.803943875999948, 49.36486020700012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999994011229584", "sL_AssetLoss": "401.918897", "sL_BldgLoss": "401.91649", "sL_StrLoss": "401.9", "sL_NStrLoss": "0.01649", "sL_ContLoss": "0.002407", "geom_point": "0101000020E6100000CF63F79159EB5DC006D4409800A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.674849506999976, 49.31837743600007 ], [ -119.680324673999962, 49.318698495000056 ], [ -119.680263659999966, 49.319144861000026 ], [ -119.679834553999967, 49.322283821000042 ], [ -119.674358968, 49.321962739000071 ], [ -119.674725358999964, 49.319284877000058 ], [ -119.674849506999976, 49.31837743600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16597667", "BldgCostT": "11446667", "sL_LossRatio": "0.999998758159096", "sL_AssetLoss": "1799.0227191", "sL_BldgLoss": "1799.020485", "sL_StrLoss": "1799.000045", "sL_NStrLoss": "0.02044", "sL_ContLoss": "0.0022341", "geom_point": "0101000020E6100000ED9C4573CDEF5DC046DD7B7648B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.749376899999959, 49.451150212000094 ], [ -119.74857201, 49.450601807000027 ], [ -119.748280826, 49.450069205000013 ], [ -119.748448793999913, 49.448130792000022 ], [ -119.747754378999971, 49.44758109900004 ], [ -119.747361402999971, 49.447437205000064 ], [ -119.747331490999954, 49.447159501000058 ], [ -119.747064924999933, 49.447075506 ], [ -119.746503982999954, 49.447179498000018 ], [ -119.746501386999981, 49.447193626000043 ], [ -119.745676793999962, 49.447145941000024 ], [ -119.745555312999954, 49.448041341000128 ], [ -119.744088130999984, 49.447956481000084 ], [ -119.743944195999958, 49.449017075000086 ], [ -119.742733949999931, 49.448947060000094 ], [ -119.742479731999964, 49.450819804000062 ], [ -119.739197008999909, 49.45062982500005 ], [ -119.739269576999945, 49.444583351000055 ], [ -119.739302115999934, 49.442803713000067 ], [ -119.744364497999968, 49.443096691000072 ], [ -119.744472285, 49.442302301000076 ], [ -119.749962608999923, 49.442619775000047 ], [ -119.749671520999954, 49.444766913000109 ], [ -119.752737962, 49.444944104000037 ], [ -119.75225212, 49.448529084000079 ], [ -119.752038306999935, 49.448516733000098 ], [ -119.751908057999984, 49.44947769000003 ], [ -119.751850200999982, 49.449474347000063 ], [ -119.751715779999984, 49.450466028000122 ], [ -119.754195876999972, 49.450609279000112 ], [ -119.754115479999939, 49.451202620000103 ], [ -119.75594976, 49.451308531000066 ], [ -119.755464100999973, 49.454893492000068 ], [ -119.752894670999964, 49.454745125000038 ], [ -119.752067521999948, 49.45385760300006 ], [ -119.75175388699995, 49.453702297000049 ], [ -119.750743095999951, 49.452880611000069 ], [ -119.750307499999963, 49.452018904000077 ], [ -119.749804309999931, 49.451644397000074 ], [ -119.749376899999959, 49.451150212000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999995662096033", "sL_AssetLoss": "299.914431", "sL_BldgLoss": "299.91313", "sL_StrLoss": "299.9", "sL_NStrLoss": "0.01313", "sL_ContLoss": "0.001301", "geom_point": "0101000020E6100000576301FA1AE95DC00C55D6DB8BB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.639782994999933, 49.377642 ], [ -119.645264927999946, 49.377964806000072 ], [ -119.645188506999958, 49.378520018000131 ], [ -119.644883508999925, 49.380735747000145 ], [ -119.63996582599998, 49.380735884000032 ], [ -119.639356742999894, 49.380735970000082 ], [ -119.639782994999933, 49.377642 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999994896642718", "sL_AssetLoss": "299.018845", "sL_BldgLoss": "299.017319", "sL_StrLoss": "299.000139", "sL_NStrLoss": "0.01718", "sL_ContLoss": "0.001526", "geom_point": "0101000020E6100000048B26C41AE85DC0AF345B3F9EAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.623524252999957, 49.373561110000061 ], [ -119.62387767899996, 49.371001759000151 ], [ -119.624483697999949, 49.371059814000084 ], [ -119.624531323999975, 49.371051270000123 ], [ -119.62470329300001, 49.371020412000057 ], [ -119.624857392999928, 49.370934588000104 ], [ -119.624960198999958, 49.370780787000037 ], [ -119.625243508999944, 49.370048622000084 ], [ -119.62950018799999, 49.370299924000086 ], [ -119.629005587, 49.373884742 ], [ -119.623524252999957, 49.373561110000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999934467012105", "sL_AssetLoss": "357.83505", "sL_BldgLoss": "357.8116", "sL_StrLoss": "357.7", "sL_NStrLoss": "0.1116", "sL_ContLoss": "0.02345", "geom_point": "0101000020E6100000A37E305387F65DC03FC46935E2B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.849772936999926, 49.421903287000042 ], [ -119.849757316999984, 49.42163377300006 ], [ -119.848104719999981, 49.42167452000006 ], [ -119.84808910799994, 49.421405005000089 ], [ -119.846849663999961, 49.421435549000122 ], [ -119.846818455999951, 49.420896519000038 ], [ -119.845992167999952, 49.420916874000113 ], [ -119.845953292, 49.420245184000095 ], [ -119.845945371999932, 49.420108327000051 ], [ -119.847597918999924, 49.420067612000011 ], [ -119.847612079999934, 49.420312136000049 ], [ -119.84761352699995, 49.420337128000064 ], [ -119.847791804999957, 49.420332734000056 ], [ -119.850092355999948, 49.420276010000059 ], [ -119.850123597999982, 49.420815039000068 ], [ -119.851363022999962, 49.420784458000128 ], [ -119.851347394999934, 49.420514945 ], [ -119.851760532999904, 49.420504749000052 ], [ -119.851729272999947, 49.419965720000043 ], [ -119.852968673999953, 49.419935124000048 ], [ -119.852984310999972, 49.42020463700004 ], [ -119.85546312199989, 49.420143404000093 ], [ -119.855493082999899, 49.420659341000068 ], [ -119.855494422999982, 49.420682431000024 ], [ -119.85567456499993, 49.420677979000033 ], [ -119.85756011399998, 49.420631361000041 ], [ -119.857574159999984, 49.420873055000122 ], [ -119.857575775999976, 49.420900875000029 ], [ -119.857710541999936, 49.42089754200002 ], [ -119.857988916999929, 49.420890657000044 ], [ -119.857994268999946, 49.420982740000113 ], [ -119.858035912999966, 49.421699195000073 ], [ -119.854317584999976, 49.421791109000019 ], [ -119.854301939999971, 49.421521595000051 ], [ -119.853475646999982, 49.421542005000106 ], [ -119.853460006999981, 49.421272491000138 ], [ -119.852633716999975, 49.421292895000057 ], [ -119.852649351999943, 49.421562408000035 ], [ -119.851409909999944, 49.421593002000122 ], [ -119.851425539000019, 49.42186251599999 ], [ -119.849772936999926, 49.421903287000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561666", "BldgCostT": "1766666", "sL_LossRatio": "1", "sL_AssetLoss": "274", "sL_BldgLoss": "274", "sL_StrLoss": "274", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9A8554F41EE5DC018C627AEF4B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.720693057999981, 49.396197481000037 ], [ -119.725049607999892, 49.396450651000087 ], [ -119.72456213, 49.400035763000091 ], [ -119.72063063199991, 49.399807303000102 ], [ -119.720647913000022, 49.398807681000079 ], [ -119.720693057999981, 49.396197481000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.999961196355138", "sL_AssetLoss": "828.015", "sL_BldgLoss": "827.98287", "sL_StrLoss": "827.8", "sL_NStrLoss": "0.18287", "sL_ContLoss": "0.03213", "geom_point": "0101000020E61000000362333C8DE75DC0382EC2981DB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.615584582999958, 49.374876098000101 ], [ -119.616807799999947, 49.374172390000076 ], [ -119.617039704999982, 49.374093895000051 ], [ -119.617268708, 49.374086709000061 ], [ -119.61787080499991, 49.374298412000016 ], [ -119.61800416199999, 49.374317024000071 ], [ -119.618467112999895, 49.374381585000087 ], [ -119.618853695999945, 49.374383699000106 ], [ -119.619088181999956, 49.374336092000078 ], [ -119.619272994999932, 49.37424851100009 ], [ -119.619403382999977, 49.374054703000084 ], [ -119.619490188, 49.373556609000012 ], [ -119.619811101, 49.373253890000079 ], [ -119.62023782199999, 49.373045100000112 ], [ -119.621098781999962, 49.372912604000099 ], [ -119.621350012999955, 49.372814499000086 ], [ -119.62160670899999, 49.372536009000065 ], [ -119.622018179999941, 49.372200954000043 ], [ -119.623164939, 49.372268703 ], [ -119.622669826, 49.375853481000043 ], [ -119.619104901999975, 49.375642831000114 ], [ -119.61887154599998, 49.37733126500008 ], [ -119.618697455999921, 49.37732097500006 ], [ -119.618587475999931, 49.378116669000114 ], [ -119.618568972, 49.378115575000074 ], [ -119.618445317999942, 49.379010170000065 ], [ -119.613267812999965, 49.378704012000135 ], [ -119.613431816999963, 49.377005803000053 ], [ -119.613376416999984, 49.376327601000078 ], [ -119.613982501999914, 49.37589090900007 ], [ -119.61448509, 49.375462525000088 ], [ -119.614608999, 49.375356908000043 ], [ -119.614885805999933, 49.375183599000117 ], [ -119.615573144999971, 49.374881141000117 ], [ -119.615584582999958, 49.374876098000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99994040994116", "sL_AssetLoss": "93.63978", "sL_BldgLoss": "93.6342", "sL_StrLoss": "93.6", "sL_NStrLoss": "0.0342", "sL_ContLoss": "0.00558", "geom_point": "0101000020E61000000B9D11842FF95DC0AD0E8829F4B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.892506861999948, 49.381705586000059 ], [ -119.894570851999944, 49.381653884000137 ], [ -119.894634226999926, 49.382731907000029 ], [ -119.894221420999912, 49.382742251000096 ], [ -119.894253103999958, 49.383281263000114 ], [ -119.892601859999928, 49.383322623000019 ], [ -119.892506861999948, 49.381705586000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6471833", "BldgCostT": "4463333", "sL_LossRatio": "1", "sL_AssetLoss": "742.6", "sL_BldgLoss": "742.6", "sL_StrLoss": "742.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0F3A1D13EF45DC09294153F1DB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.815111504999933, 49.417096187000048 ], [ -119.815171399999912, 49.416649419000073 ], [ -119.812246741999928, 49.416482010000074 ], [ -119.812287790999946, 49.416175958000061 ], [ -119.810651612999962, 49.416082268000096 ], [ -119.81073207399993, 49.415482517000036 ], [ -119.811132585999971, 49.412496855000064 ], [ -119.816619827999929, 49.412810968000045 ], [ -119.816578810999928, 49.413117023000048 ], [ -119.817150626999975, 49.413149739000076 ], [ -119.818214896999947, 49.413210624000037 ], [ -119.818197505999962, 49.413340424000083 ], [ -119.822000885999941, 49.413557921000091 ], [ -119.82152074399994, 49.417143376000091 ], [ -119.821489791999937, 49.417141606 ], [ -119.82064177699999, 49.41709312400004 ], [ -119.820599319999985, 49.41741009600004 ], [ -119.815111504999933, 49.417096187000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30227666", "BldgCostT": "20846666", "sL_LossRatio": "0.999996072269289", "sL_AssetLoss": "4145.141609", "sL_BldgLoss": "4145.125328", "sL_StrLoss": "4145.000138", "sL_NStrLoss": "0.12519", "sL_ContLoss": "0.016281", "geom_point": "0101000020E61000009619805755EE5DC046BB65E231A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.720110398999935, 49.330983578000037 ], [ -119.720120816999952, 49.330906891 ], [ -119.717511121999962, 49.330754907000042 ], [ -119.717515060999943, 49.330725922000042 ], [ -119.716735098999933, 49.330680486000055 ], [ -119.716984910999912, 49.328842698000109 ], [ -119.716627715999905, 49.328821888000114 ], [ -119.71711505799999, 49.325236431000086 ], [ -119.717742597, 49.325272991000062 ], [ -119.717808760999986, 49.324786116000055 ], [ -119.717790116999964, 49.324785030000051 ], [ -119.718065065999966, 49.322761686000057 ], [ -119.717391134999943, 49.322722424000105 ], [ -119.717664726999956, 49.320709101 ], [ -119.717878354, 49.319136931000067 ], [ -119.719625629999953, 49.319238717000061 ], [ -119.719724919999962, 49.31850776000006 ], [ -119.718980164999948, 49.31846437800008 ], [ -119.719342508999944, 49.315796954000142 ], [ -119.719348520999915, 49.315752708000069 ], [ -119.719467214999909, 49.314878855000117 ], [ -119.720037209999987, 49.314912057000107 ], [ -119.720563587999948, 49.314899658000115 ], [ -119.72053387299998, 49.314360561000079 ], [ -119.720121577999961, 49.314370273000094 ], [ -119.720106725, 49.31410072200002 ], [ -119.719694429999947, 49.314110433000081 ], [ -119.719679577999926, 49.313840883000125 ], [ -119.719267285999962, 49.31385059200003 ], [ -119.719252436999952, 49.313581043000042 ], [ -119.71884014699999, 49.313590750000166 ], [ -119.718795607999979, 49.312782101000032 ], [ -119.719207892, 49.312772393000046 ], [ -119.719178195999945, 49.312233294000144 ], [ -119.720002754999911, 49.312213877000019 ], [ -119.719987899999964, 49.311944327000063 ], [ -119.720415556999953, 49.311934254000093 ], [ -119.722049279, 49.311895757000045 ], [ -119.722064142999983, 49.312165306000125 ], [ -119.722888696999959, 49.31214586800013 ], [ -119.72294817099997, 49.313224063000028 ], [ -119.721299024999951, 49.31326293500004 ], [ -119.721284165999961, 49.312993387000112 ], [ -119.720459595999941, 49.313012814000096 ], [ -119.720474450999959, 49.313282363000091 ], [ -119.720886737999976, 49.313272650000044 ], [ -119.720901595999976, 49.313542199000011 ], [ -119.721313885000015, 49.313532485000046 ], [ -119.72132874499999, 49.31380203400002 ], [ -119.721741036999944, 49.313792318000012 ], [ -119.721755898999945, 49.314061866000031 ], [ -119.722168192999931, 49.314052148000059 ], [ -119.722212788999954, 49.314860795000058 ], [ -119.724686582999965, 49.314802456000102 ], [ -119.724701462999931, 49.315072005000054 ], [ -119.725526063999936, 49.315052546000032 ], [ -119.725540946999928, 49.315322095000063 ], [ -119.72677785399999, 49.315292896000095 ], [ -119.726762963999974, 49.31502334800004 ], [ -119.727175263999968, 49.315013613000112 ], [ -119.727160370999954, 49.314744064000131 ], [ -119.728397261999959, 49.314714849000033 ], [ -119.728404019999942, 49.314837138000073 ], [ -119.728412159999948, 49.314984397000039 ], [ -119.728824458999938, 49.314974655000057 ], [ -119.72885054799994, 49.315446550000026 ], [ -119.733203117999977, 49.315699630000097 ], [ -119.732988180999911, 49.317285469000083 ], [ -119.733254219999978, 49.317300932000052 ], [ -119.733180923999925, 49.317841712000103 ], [ -119.733253554999948, 49.317845933000051 ], [ -119.733206312999926, 49.318194478000045 ], [ -119.733250276999968, 49.318197034000043 ], [ -119.733210121999917, 49.318493299000068 ], [ -119.734154967999984, 49.31854821000011 ], [ -119.733669014, 49.322133780000087 ], [ -119.732675327999971, 49.322076031000094 ], [ -119.732673569999918, 49.322089003000038 ], [ -119.732661756999974, 49.322088316000091 ], [ -119.732618783999968, 49.322405303000046 ], [ -119.727142817999948, 49.322086894000016 ], [ -119.727348443999944, 49.32057136100007 ], [ -119.727292420999959, 49.32056810200006 ], [ -119.727325239999971, 49.320326219000044 ], [ -119.727025729, 49.320308796000077 ], [ -119.727060088999949, 49.320055552000092 ], [ -119.725793090999957, 49.319981837000135 ], [ -119.725558848999967, 49.321707869000086 ], [ -119.725432433999984, 49.321700512000085 ], [ -119.72521562099999, 49.32329797200007 ], [ -119.724463787999952, 49.323254221000063 ], [ -119.724404606999954, 49.323690189000054 ], [ -119.723484344999974, 49.323636630000081 ], [ -119.723234252999987, 49.325478611000143 ], [ -119.727151175999978, 49.325706521000043 ], [ -119.727058789999944, 49.326387348000047 ], [ -119.727164918999947, 49.326393521000085 ], [ -119.726678341999929, 49.329979018000103 ], [ -119.725774135999941, 49.32992642000012 ], [ -119.725587367999964, 49.331302340000065 ], [ -119.724518986, 49.331240182000094 ], [ -119.720110398999935, 49.330983578000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "150", "sL_BldgLoss": "150", "sL_StrLoss": "150", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000128302E773E75DC00695021C0CC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.616140167999973, 49.5077108300001 ], [ -119.616418028999945, 49.507727211000024 ], [ -119.616839964999912, 49.508636048000106 ], [ -119.616686158999968, 49.508639664000079 ], [ -119.616484609999986, 49.508644454000084 ], [ -119.616481839999977, 49.508635640000101 ], [ -119.61645681100002, 49.508555797000099 ], [ -119.616113575999961, 49.507902563000144 ], [ -119.616140167999973, 49.5077108300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117464500", "BldgCostT": "81010000", "sL_LossRatio": "1", "sL_AssetLoss": "13850", "sL_BldgLoss": "13850", "sL_StrLoss": "13850", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005341A8FF6AE75DC0119A347825C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.616022566999916, 49.507588915000049 ], [ -119.616008182999934, 49.507319352000081 ], [ -119.615815405999967, 49.50732371400008 ], [ -119.615704694999948, 49.50716 ], [ -119.615581961999936, 49.507098708000086 ], [ -119.615579850999907, 49.507059154000068 ], [ -119.61550609799994, 49.507060822000021 ], [ -119.615308415999976, 49.50696210100012 ], [ -119.615199213999915, 49.506729896000088 ], [ -119.615146268999951, 49.506700426000052 ], [ -119.615137144999963, 49.506529391000058 ], [ -119.614850631999914, 49.506535872000036 ], [ -119.614719145, 49.506462684000098 ], [ -119.614651323999979, 49.50519093700008 ], [ -119.614524382999946, 49.505193808000065 ], [ -119.61453152099989, 49.505080707000026 ], [ -119.614280706999978, 49.504798692000094 ], [ -119.614213626999927, 49.504754610000127 ], [ -119.614208645999923, 49.504661170000084 ], [ -119.614076007999984, 49.50466416700008 ], [ -119.613784156999955, 49.504472365000026 ], [ -119.613780345999942, 49.504400965000094 ], [ -119.613678987999947, 49.504403253000099 ], [ -119.613593691999966, 49.504347207000066 ], [ -119.613758507999961, 49.504073789000081 ], [ -119.613401207999985, 49.503838788000053 ], [ -119.61339247899997, 49.50342429900013 ], [ -119.612709877999947, 49.502810492000094 ], [ -119.613245697000011, 49.501953092000029 ], [ -119.613336472999961, 49.501855190000107 ], [ -119.613740682999918, 49.501419096000049 ], [ -119.613666097999968, 49.501305090000059 ], [ -119.614298492999978, 49.500396089000091 ], [ -119.614448818999946, 49.500180003000075 ], [ -119.615126177999954, 49.499387709000082 ], [ -119.61581368799996, 49.49858349800008 ], [ -119.616009364999982, 49.498213943000067 ], [ -119.616603986999976, 49.497090898000081 ], [ -119.616904920999971, 49.496247698000033 ], [ -119.616973362999943, 49.495776437000146 ], [ -119.617127786999944, 49.49580561600002 ], [ -119.617237932999942, 49.495826405000109 ], [ -119.617261680999889, 49.495830893000075 ], [ -119.617660095999952, 49.495854415000082 ], [ -119.617672779999964, 49.495857945000118 ], [ -119.618066898999984, 49.495967794000094 ], [ -119.618216514999958, 49.495937803000082 ], [ -119.618548091999941, 49.496133495000031 ], [ -119.618735260999983, 49.496312244000102 ], [ -119.618765888, 49.496341507000103 ], [ -119.61887469199999, 49.496555615000048 ], [ -119.618934515999982, 49.496843696000049 ], [ -119.618856483999963, 49.497186905000071 ], [ -119.618385004999979, 49.498339805000086 ], [ -119.617763679999939, 49.50000791800008 ], [ -119.617661277999943, 49.500282702000071 ], [ -119.617654979999912, 49.5002983890001 ], [ -119.61614179899999, 49.504057594000074 ], [ -119.615889791999962, 49.504776290000109 ], [ -119.615779026999974, 49.505345208000058 ], [ -119.615778806999941, 49.50592600200013 ], [ -119.615900208999932, 49.506519399000105 ], [ -119.616128216999925, 49.507102895000045 ], [ -119.61620792399999, 49.507274649000095 ], [ -119.616350383999972, 49.507581496000043 ], [ -119.616022566999916, 49.507588915000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163762585", "BldgCostT": "110258335", "sL_LossRatio": "0.994265742560469", "sL_AssetLoss": "10172.76877", "sL_BldgLoss": "10114.435495", "sL_StrLoss": "10092.904985", "sL_NStrLoss": "21.53051", "sL_ContLoss": "58.333275", "geom_point": "0101000020E6100000E4AF350000E75DC07FA189A8F0BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.610914118999986, 49.5020229000001 ], [ -119.609822478999959, 49.501742301 ], [ -119.607442407999955, 49.501688200000096 ], [ -119.605933256999933, 49.501730085000091 ], [ -119.60592313799999, 49.501673555000096 ], [ -119.605914519999899, 49.501405298000115 ], [ -119.60582636499997, 49.500374891000035 ], [ -119.605822113999949, 49.500324897000077 ], [ -119.605725687999936, 49.500350815000111 ], [ -119.604969952999951, 49.500374492000105 ], [ -119.601978679999917, 49.500468192000014 ], [ -119.599995732999972, 49.500725252000088 ], [ -119.599308123999961, 49.500814387000041 ], [ -119.599178301999956, 49.500561910000059 ], [ -119.598899719999935, 49.500007988000085 ], [ -119.598829904999931, 49.499869195000024 ], [ -119.600010232999963, 49.499615266000013 ], [ -119.602482802999972, 49.499083294000101 ], [ -119.602125619999924, 49.498383793000066 ], [ -119.603408793999932, 49.498101886000043 ], [ -119.604292221999984, 49.499790103000066 ], [ -119.605761103999967, 49.499746699000035 ], [ -119.60572850599999, 49.499433105000072 ], [ -119.606939174999937, 49.499433298000106 ], [ -119.607500979999912, 49.499435528000035 ], [ -119.609186303999962, 49.499442197000036 ], [ -119.611266408999924, 49.499446605000045 ], [ -119.611339206999901, 49.49948070100001 ], [ -119.611344202999959, 49.499614696000094 ], [ -119.611401208999936, 49.499732787000021 ], [ -119.61157367899996, 49.499857710000072 ], [ -119.611689294999934, 49.499943099000127 ], [ -119.613239301999954, 49.498855705000032 ], [ -119.614741310999989, 49.498163796000071 ], [ -119.61446420099999, 49.498113988000085 ], [ -119.613276792999955, 49.497895787000111 ], [ -119.61376290599999, 49.495829597000125 ], [ -119.613973113999961, 49.495742707000055 ], [ -119.614184602999913, 49.495565381000048 ], [ -119.614211986999962, 49.495506120000108 ], [ -119.615130382999951, 49.495435845000024 ], [ -119.615375127999968, 49.495417125000074 ], [ -119.615608584999961, 49.49542088700013 ], [ -119.616072690999914, 49.495505199000092 ], [ -119.616038499, 49.495601599000111 ], [ -119.616268209999987, 49.495643189000091 ], [ -119.616294197999977, 49.495578387000059 ], [ -119.616306385999962, 49.495547907000031 ], [ -119.616484186999955, 49.495578309000045 ], [ -119.616509760999946, 49.495582668000104 ], [ -119.616669996999946, 49.495610087000095 ], [ -119.616665308999956, 49.495893103000078 ], [ -119.616453093999908, 49.496841607000107 ], [ -119.615724614, 49.498181792000096 ], [ -119.614250718999955, 49.500077404000137 ], [ -119.613244301999913, 49.501161300000021 ], [ -119.612984505999975, 49.501194001000044 ], [ -119.612760899, 49.501414812000085 ], [ -119.612011001999988, 49.501594204000092 ], [ -119.611851787999953, 49.501975899000044 ], [ -119.611421997999983, 49.50222800300002 ], [ -119.610868183999955, 49.503252028000063 ], [ -119.610769620999946, 49.503246212000086 ], [ -119.610757897999946, 49.503232092000125 ], [ -119.611116313999958, 49.502181002000036 ], [ -119.610914118999986, 49.5020229000001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89282834", "BldgCostT": "53398334", "sL_LossRatio": "0.975253099917995", "sL_AssetLoss": "7080.7115", "sL_BldgLoss": "6905.48584", "sL_StrLoss": "6840.42854", "sL_NStrLoss": "65.0573", "sL_ContLoss": "175.22566", "geom_point": "0101000020E61000007CE351E804E75DC0A408BA07B2BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.604292221999984, 49.499790103000066 ], [ -119.603408793999932, 49.498101886000043 ], [ -119.60555901, 49.497630892000053 ], [ -119.606058376999954, 49.497521284000086 ], [ -119.607556508999963, 49.497192399000099 ], [ -119.608430891999888, 49.497000112000123 ], [ -119.610697185999953, 49.496490695000055 ], [ -119.610392589999975, 49.496389593000117 ], [ -119.608866275999972, 49.49613099300003 ], [ -119.608321962999966, 49.496038798000022 ], [ -119.607744891999943, 49.495955038000012 ], [ -119.607966112999961, 49.495090034000071 ], [ -119.608550295999976, 49.495192274000026 ], [ -119.610924202999982, 49.495603403000032 ], [ -119.611124359999963, 49.494823398000079 ], [ -119.611150468999966, 49.494721535000075 ], [ -119.611169710999931, 49.494658445000056 ], [ -119.611175890999959, 49.494638083000034 ], [ -119.611194789, 49.494641403000102 ], [ -119.613318317999955, 49.495012208000105 ], [ -119.614356719999989, 49.495193502000085 ], [ -119.61432974799996, 49.495251388000135 ], [ -119.614313288999981, 49.495286685000039 ], [ -119.614211986999962, 49.495506120000108 ], [ -119.614184602999913, 49.495565381000048 ], [ -119.613973113999961, 49.495742707000055 ], [ -119.61376290599999, 49.495829597000125 ], [ -119.613276792999955, 49.497895787000111 ], [ -119.61446420099999, 49.498113988000085 ], [ -119.614741310999989, 49.498163796000071 ], [ -119.613239301999954, 49.498855705000032 ], [ -119.611689294999934, 49.499943099000127 ], [ -119.61157367899996, 49.499857710000072 ], [ -119.611401208999936, 49.499732787000021 ], [ -119.611344202999959, 49.499614696000094 ], [ -119.611339206999901, 49.49948070100001 ], [ -119.611266408999924, 49.499446605000045 ], [ -119.609186303999962, 49.499442197000036 ], [ -119.607500979999912, 49.499435528000035 ], [ -119.606939174999937, 49.499433298000106 ], [ -119.60572850599999, 49.499433105000072 ], [ -119.605761103999967, 49.499746699000035 ], [ -119.604292221999984, 49.499790103000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226831304", "BldgCostT": "152074703", "sL_LossRatio": "0.954775893253101", "sL_AssetLoss": "15033.617", "sL_BldgLoss": "14353.7351", "sL_StrLoss": "13977.0761", "sL_NStrLoss": "376.659", "sL_ContLoss": "679.8819", "geom_point": "0101000020E6100000C92F8BA2AAE65DC034C467A153BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.602641715999951, 49.494849617000057 ], [ -119.602585935999954, 49.494722528000082 ], [ -119.602264993999967, 49.494794724000066 ], [ -119.601746611999943, 49.494911397000067 ], [ -119.600499519, 49.495183691000108 ], [ -119.599995349999915, 49.494182751000103 ], [ -119.59955831299996, 49.493315001000049 ], [ -119.59831210599998, 49.493590897000075 ], [ -119.59799279399999, 49.492968498000032 ], [ -119.597992, 49.492824895000076 ], [ -119.598187501999973, 49.492384691000098 ], [ -119.599302365999961, 49.492582424000034 ], [ -119.599996616999974, 49.492705524000023 ], [ -119.600051445999938, 49.492715262000068 ], [ -119.600327410999967, 49.492764192000074 ], [ -119.600687486999959, 49.491917394000033 ], [ -119.601440699999912, 49.492050100000085 ], [ -119.603164797999909, 49.492353834000014 ], [ -119.603357682999956, 49.492387767000054 ], [ -119.603354285999956, 49.492396607000089 ], [ -119.603037987999983, 49.493213504000082 ], [ -119.603145780999967, 49.493235246000019 ], [ -119.603269079, 49.49292767200005 ], [ -119.603401094, 49.492598227000066 ], [ -119.603421331, 49.492547790000081 ], [ -119.603476993999948, 49.49240964700008 ], [ -119.603725997999987, 49.49179154900002 ], [ -119.603728171999975, 49.491786119000061 ], [ -119.603854784999967, 49.491471800000085 ], [ -119.60385271199999, 49.49179550700007 ], [ -119.6056746, 49.492140700000022 ], [ -119.605375410999926, 49.492849293000049 ], [ -119.60511185499999, 49.493469635000068 ], [ -119.605060479999977, 49.493590491000134 ], [ -119.605073891999936, 49.493592724000145 ], [ -119.605169824999933, 49.493608609000034 ], [ -119.605292897999973, 49.493628977000107 ], [ -119.607437251999912, 49.493984013000052 ], [ -119.608142881999967, 49.494100833000026 ], [ -119.60821095899999, 49.494112082000115 ], [ -119.608189650999961, 49.494198061000084 ], [ -119.60806050299999, 49.494749590000012 ], [ -119.607966112999961, 49.495090034000071 ], [ -119.607744891999943, 49.495955038000012 ], [ -119.608321962999966, 49.496038798000022 ], [ -119.608866275999972, 49.49613099300003 ], [ -119.610392589999975, 49.496389593000117 ], [ -119.610697185999953, 49.496490695000055 ], [ -119.608430891999888, 49.497000112000123 ], [ -119.607556508999963, 49.497192399000099 ], [ -119.606058376999954, 49.497521284000086 ], [ -119.60555901, 49.497630892000053 ], [ -119.603408793999932, 49.498101886000043 ], [ -119.602682502999954, 49.496669599000079 ], [ -119.603555683999971, 49.496476389000101 ], [ -119.604232899999943, 49.4963276 ], [ -119.60287282299997, 49.495099910000086 ], [ -119.602641715999951, 49.494849617000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53996227", "BldgCostT": "35409856", "sL_LossRatio": "0.992208744180683", "sL_AssetLoss": "5737.200913", "sL_BldgLoss": "5692.500913", "sL_StrLoss": "5676.400913", "sL_NStrLoss": "16.1", "sL_ContLoss": "44.7", "geom_point": "0101000020E6100000D1DB971A7EE65DC00F641CA791BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.602264993999967, 49.494794724000066 ], [ -119.602585935999954, 49.494722528000082 ], [ -119.602641715999951, 49.494849617000057 ], [ -119.60287282299997, 49.495099910000086 ], [ -119.604232899999943, 49.4963276 ], [ -119.603555683999971, 49.496476389000101 ], [ -119.602682502999954, 49.496669599000079 ], [ -119.603408793999932, 49.498101886000043 ], [ -119.602125619999924, 49.498383793000066 ], [ -119.600504001999951, 49.498738715000044 ], [ -119.600142399999953, 49.498031700000048 ], [ -119.600015570999915, 49.49778541700006 ], [ -119.599943230999912, 49.497644981000107 ], [ -119.599801505999935, 49.497369828000053 ], [ -119.59931555699994, 49.49642629300012 ], [ -119.598863680999941, 49.495541398000036 ], [ -119.599270798999939, 49.495452490000105 ], [ -119.600009121999975, 49.49529097900006 ], [ -119.600499519, 49.495183691000108 ], [ -119.601746611999943, 49.494911397000067 ], [ -119.602264993999967, 49.494794724000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "454672667", "BldgCostT": "307366667", "sL_LossRatio": "0.981720548641576", "sL_AssetLoss": "13886.4868", "sL_BldgLoss": "13632.64944", "sL_StrLoss": "13538.54374", "sL_NStrLoss": "94.1057", "sL_ContLoss": "253.83736", "geom_point": "0101000020E610000018DE484D39E65DC0A3C4969A94BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.597046702999975, 49.497899194000126 ], [ -119.596124902999932, 49.496140893000053 ], [ -119.594434887999967, 49.496509802000084 ], [ -119.59405560499999, 49.495770012000094 ], [ -119.593968002999958, 49.495599116000037 ], [ -119.59369649599995, 49.495069505000053 ], [ -119.593454308999952, 49.494597101000103 ], [ -119.59357321399996, 49.494618606000103 ], [ -119.595848503999918, 49.494124485000071 ], [ -119.596820813999926, 49.495987909000092 ], [ -119.597332090999913, 49.495877203000099 ], [ -119.59804940599993, 49.495719104000045 ], [ -119.598863680999941, 49.495541398000036 ], [ -119.59931555699994, 49.49642629300012 ], [ -119.599801505999935, 49.497369828000053 ], [ -119.599943230999912, 49.497644981000107 ], [ -119.600015570999915, 49.49778541700006 ], [ -119.600142399999953, 49.498031700000048 ], [ -119.600504001999951, 49.498738715000044 ], [ -119.600013186999945, 49.498846090000065 ], [ -119.599357784999896, 49.498989463 ], [ -119.598969590999971, 49.499074407000123 ], [ -119.598479492999971, 49.499181810000088 ], [ -119.597764980999983, 49.499338308000112 ], [ -119.597046702999975, 49.497899194000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "384093726", "BldgCostT": "240446561", "sL_LossRatio": "0.969428670720707", "sL_AssetLoss": "12197.703168", "sL_BldgLoss": "11824.803168", "sL_StrLoss": "11689.703168", "sL_NStrLoss": "135.1", "sL_ContLoss": "372.9", "geom_point": "0101000020E6100000EADA8B261FE65DC08634D871CFBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596226697999924, 49.499993049000089 ], [ -119.59607891099995, 49.499708290000065 ], [ -119.594669463999978, 49.500016855000112 ], [ -119.59439289899997, 49.500077393000034 ], [ -119.59435480599997, 49.500003285000048 ], [ -119.593670001999925, 49.498671511000119 ], [ -119.593361479999928, 49.498076203000025 ], [ -119.593273000999929, 49.497905484000135 ], [ -119.592737390999915, 49.496871914000089 ], [ -119.594434887999967, 49.496509802000084 ], [ -119.596124902999932, 49.496140893000053 ], [ -119.597046702999975, 49.497899194000126 ], [ -119.597764980999983, 49.499338308000112 ], [ -119.598103747999943, 49.500001628000064 ], [ -119.5985675099999, 49.500909693000033 ], [ -119.597675701999933, 49.501046692000067 ], [ -119.596818181999964, 49.50113599500002 ], [ -119.59645580599998, 49.500434404000075 ], [ -119.596226697999924, 49.499993049000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1069092432", "BldgCostT": "672228550", "sL_LossRatio": "0.928701667237298", "sL_AssetLoss": "36313.00757294", "sL_BldgLoss": "33723.95067539", "sL_StrLoss": "32781.47603859", "sL_NStrLoss": "942.4746368", "sL_ContLoss": "2589.05689755", "geom_point": "0101000020E6100000C819172FD2E55DC00172CB3FE1BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589221695999953, 49.503089495000097 ], [ -119.58920518599993, 49.502239278000104 ], [ -119.589172987999945, 49.500584202000027 ], [ -119.589153091999904, 49.500002563000102 ], [ -119.589129782000015, 49.499322390000025 ], [ -119.58914187499991, 49.499016795000088 ], [ -119.589160514999946, 49.498276285 ], [ -119.58912457299999, 49.497320197000079 ], [ -119.587894800999905, 49.497317790000068 ], [ -119.587794817999907, 49.497320007000077 ], [ -119.587086512999974, 49.497283490000029 ], [ -119.586538504999936, 49.497110109000033 ], [ -119.585799401999964, 49.496876605000111 ], [ -119.585092078999963, 49.496703697000065 ], [ -119.584954707999955, 49.496357703000101 ], [ -119.584541498999954, 49.495565303000056 ], [ -119.583849999, 49.49419540100007 ], [ -119.584645789999954, 49.494021302000121 ], [ -119.5849631399999, 49.493950629000061 ], [ -119.585673404999937, 49.495315265000045 ], [ -119.586242546999927, 49.495187301000087 ], [ -119.586807322999945, 49.495060854 ], [ -119.587896399999977, 49.494819999000057 ], [ -119.58861700099996, 49.496220499000081 ], [ -119.589748613, 49.495972205000058 ], [ -119.590894682999959, 49.495720303000063 ], [ -119.591608074999968, 49.497113100000036 ], [ -119.592737390999915, 49.496871914000089 ], [ -119.593273000999929, 49.497905484000135 ], [ -119.593361479999928, 49.498076203000025 ], [ -119.593670001999925, 49.498671511000119 ], [ -119.59435480599997, 49.500003285000048 ], [ -119.59439289899997, 49.500077393000034 ], [ -119.594669463999978, 49.500016855000112 ], [ -119.59607891099995, 49.499708290000065 ], [ -119.596226697999924, 49.499993049000089 ], [ -119.59645580599998, 49.500434404000075 ], [ -119.596818181999964, 49.50113599500002 ], [ -119.597342922999957, 49.50215439100009 ], [ -119.595589898999961, 49.502396796000077 ], [ -119.59441049899999, 49.502559104000085 ], [ -119.593430326999965, 49.502682678000134 ], [ -119.593230197999929, 49.502707896000047 ], [ -119.592975133999971, 49.502221370000044 ], [ -119.592695990999957, 49.501688912000098 ], [ -119.5926010109999, 49.501604691000097 ], [ -119.592181307999965, 49.501435294000046 ], [ -119.591275303999936, 49.502399795000052 ], [ -119.591134865999919, 49.502534872000105 ], [ -119.591079092999934, 49.502588502000087 ], [ -119.590999994999919, 49.502664568000085 ], [ -119.590718690999964, 49.502935103000063 ], [ -119.59053000099999, 49.502916696000057 ], [ -119.590395111999925, 49.502970103000102 ], [ -119.59035471, 49.503061689000027 ], [ -119.589221695999953, 49.503089495000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "328195803", "BldgCostT": "225218746", "sL_LossRatio": "0.979946350528983", "sL_AssetLoss": "6380.0071745", "sL_BldgLoss": "6252.064747", "sL_StrLoss": "6203.576597", "sL_NStrLoss": "48.48815", "sL_ContLoss": "127.9424275", "geom_point": "0101000020E610000042B76EB594E55DC0310FD39D2BC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.58886031699997, 49.499017417000111 ], [ -119.58914187499991, 49.499016795000088 ], [ -119.589129782000015, 49.499322390000025 ], [ -119.589153091999904, 49.500002563000102 ], [ -119.589172987999945, 49.500584202000027 ], [ -119.58920518599993, 49.502239278000104 ], [ -119.589221695999953, 49.503089495000097 ], [ -119.587806084999954, 49.503106798000097 ], [ -119.586406652000022, 49.50310250900003 ], [ -119.586133278999952, 49.503101685000075 ], [ -119.58364049699999, 49.503094004000118 ], [ -119.583613606999933, 49.502640706000122 ], [ -119.584036393999966, 49.502539303000063 ], [ -119.58471359299989, 49.50243221100007 ], [ -119.584943184999986, 49.502325594000148 ], [ -119.585065214999972, 49.502195604000043 ], [ -119.585102803999931, 49.502114644000095 ], [ -119.58536208000001, 49.501556389000072 ], [ -119.585422084999948, 49.501344900000056 ], [ -119.585383522999905, 49.500520194000103 ], [ -119.585519555999923, 49.50052309000008 ], [ -119.585655360999965, 49.500525968000069 ], [ -119.585791143999984, 49.500528882000054 ], [ -119.585927124999941, 49.500531763 ], [ -119.586062927999947, 49.500534641000137 ], [ -119.586198748999962, 49.500537543000036 ], [ -119.586334693999902, 49.500540436000087 ], [ -119.58644541399994, 49.500542801000073 ], [ -119.58636949699999, 49.500043296000051 ], [ -119.586370463999941, 49.500001238000081 ], [ -119.586393007999959, 49.498999487000034 ], [ -119.587758907999927, 49.49901981000005 ], [ -119.588515811999955, 49.49901816600002 ], [ -119.588708539999971, 49.499017744000064 ], [ -119.58886031699997, 49.499017417000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101640584", "BldgCostT": "66208334", "sL_LossRatio": "0.999997735409262", "sL_AssetLoss": "11074.84879", "sL_BldgLoss": "11074.82371", "sL_StrLoss": "11074.60361", "sL_NStrLoss": "0.2201", "sL_ContLoss": "0.02508", "geom_point": "0101000020E610000094B9B72A62E55DC0E6864B3302C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583601500999961, 49.499109592000082 ], [ -119.583346311999918, 49.498972509000041 ], [ -119.582311585999918, 49.498971711000124 ], [ -119.582320378999967, 49.498252197000092 ], [ -119.582307688999947, 49.498166756000025 ], [ -119.58228109099997, 49.497987893000079 ], [ -119.582152412999932, 49.49781770100001 ], [ -119.582223328999987, 49.497745434000123 ], [ -119.582327795999944, 49.497639000000106 ], [ -119.582432246999986, 49.497532544000116 ], [ -119.582729511999986, 49.497318669000016 ], [ -119.582739380999925, 49.497311560000071 ], [ -119.582740140999931, 49.497309881 ], [ -119.582842344999918, 49.49730864100006 ], [ -119.583124294999934, 49.497305188000048 ], [ -119.583658412999938, 49.497309781000098 ], [ -119.583701800999947, 49.497310109000054 ], [ -119.585045086999941, 49.497319709000102 ], [ -119.585709397999949, 49.497323787 ], [ -119.586366274999961, 49.497401605000107 ], [ -119.586398200999909, 49.497347546000078 ], [ -119.586444947999922, 49.497268435000095 ], [ -119.586491736999974, 49.497189255000102 ], [ -119.586538504999936, 49.497110109000033 ], [ -119.587086512999974, 49.497283490000029 ], [ -119.587794817999907, 49.497320007000077 ], [ -119.587894800999905, 49.497317790000068 ], [ -119.58912457299999, 49.497320197000079 ], [ -119.589160514999946, 49.498276285 ], [ -119.58914187499991, 49.499016795000088 ], [ -119.58886031699997, 49.499017417000111 ], [ -119.588708539999971, 49.499017744000064 ], [ -119.588515811999955, 49.49901816600002 ], [ -119.587758907999927, 49.49901981000005 ], [ -119.586393007999959, 49.498999487000034 ], [ -119.586370463999941, 49.500001238000081 ], [ -119.58636949699999, 49.500043296000051 ], [ -119.58644541399994, 49.500542801000073 ], [ -119.586334693999902, 49.500540436000087 ], [ -119.586198748999962, 49.500537543000036 ], [ -119.586062927999947, 49.500534641000137 ], [ -119.585927124999941, 49.500531763 ], [ -119.585791143999984, 49.500528882000054 ], [ -119.585655360999965, 49.500525968000069 ], [ -119.585519555999923, 49.50052309000008 ], [ -119.585383522999905, 49.500520194000103 ], [ -119.585422084999948, 49.501344900000056 ], [ -119.58536208000001, 49.501556389000072 ], [ -119.585102803999931, 49.502114644000095 ], [ -119.585065214999972, 49.502195604000043 ], [ -119.584943184999986, 49.502325594000148 ], [ -119.58471359299989, 49.50243221100007 ], [ -119.584036393999966, 49.502539303000063 ], [ -119.583613606999933, 49.502640706000122 ], [ -119.58364049699999, 49.503094004000118 ], [ -119.58250387599999, 49.503127792000058 ], [ -119.581856801999947, 49.503217695000089 ], [ -119.581579800999975, 49.503276301000092 ], [ -119.581059203999942, 49.503433294000111 ], [ -119.580530475999936, 49.503667587000095 ], [ -119.580090904999963, 49.503918909000028 ], [ -119.580028002999924, 49.503515804000102 ], [ -119.580028488999957, 49.503438120000091 ], [ -119.580032480999989, 49.502817812000075 ], [ -119.580044407999935, 49.50144080900008 ], [ -119.580049680999963, 49.500508899000067 ], [ -119.580887872999966, 49.500509334000121 ], [ -119.581617775999973, 49.500509693 ], [ -119.582292410999955, 49.500540605000026 ], [ -119.582756752999956, 49.500564500000053 ], [ -119.582980094999982, 49.500575986000037 ], [ -119.583020180999966, 49.500577117000056 ], [ -119.583062476999913, 49.500578288000014 ], [ -119.58367008299993, 49.500595191000045 ], [ -119.583665158999935, 49.499998900000065 ], [ -119.583658789999959, 49.499234914000056 ], [ -119.583601500999961, 49.499109592000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94158667", "BldgCostT": "64176667", "sL_LossRatio": "0.99997794687884", "sL_AssetLoss": "11851.156945", "sL_BldgLoss": "11850.89559", "sL_StrLoss": "11849.00799", "sL_NStrLoss": "1.8876", "sL_ContLoss": "0.261355", "geom_point": "0101000020E6100000F351887812E55DC0ED5F1FBEC8BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.578505087999972, 49.498849905000057 ], [ -119.578518413999959, 49.49780090400003 ], [ -119.578034416999984, 49.497814643000041 ], [ -119.577447507999921, 49.497831303000098 ], [ -119.576671876999967, 49.497680499000062 ], [ -119.576308991999937, 49.497650895000071 ], [ -119.576055905999979, 49.497677403000068 ], [ -119.576090595999943, 49.496098499000027 ], [ -119.576034806999957, 49.496002195000102 ], [ -119.575713699999966, 49.495642506000067 ], [ -119.575644484999955, 49.49549301200004 ], [ -119.575627085999969, 49.495350095000013 ], [ -119.575670497999951, 49.494760912000054 ], [ -119.576840884999939, 49.49478159900012 ], [ -119.576990011999953, 49.494784986000113 ], [ -119.577190816999945, 49.494815006000096 ], [ -119.577407782999941, 49.494918197000096 ], [ -119.57842277799989, 49.495586400000029 ], [ -119.578700285999972, 49.495831496000093 ], [ -119.578911111999915, 49.496207107000075 ], [ -119.579039298999987, 49.496529107000114 ], [ -119.57903131099998, 49.496914401000048 ], [ -119.579009105999944, 49.49778848400009 ], [ -119.580357592, 49.497774488000054 ], [ -119.580944407999979, 49.497768597000146 ], [ -119.581892580999977, 49.497743494000083 ], [ -119.582152412999932, 49.49781770100001 ], [ -119.58228109099997, 49.497987893000079 ], [ -119.582307688999947, 49.498166756000025 ], [ -119.582320378999967, 49.498252197000092 ], [ -119.582311585999918, 49.498971711000124 ], [ -119.583346311999918, 49.498972509000041 ], [ -119.583601500999961, 49.499109592000082 ], [ -119.583658789999959, 49.499234914000056 ], [ -119.583665158999935, 49.499998900000065 ], [ -119.58367008299993, 49.500595191000045 ], [ -119.583062476999913, 49.500578288000014 ], [ -119.583020180999966, 49.500577117000056 ], [ -119.582980094999982, 49.500575986000037 ], [ -119.582756752999956, 49.500564500000053 ], [ -119.582292410999955, 49.500540605000026 ], [ -119.581617775999973, 49.500509693 ], [ -119.580887872999966, 49.500509334000121 ], [ -119.580049680999963, 49.500508899000067 ], [ -119.578654971, 49.500496592000111 ], [ -119.576749802, 49.500478386000104 ], [ -119.576750035999979, 49.500000908000075 ], [ -119.576750181999955, 49.499681702 ], [ -119.576748686, 49.498897398000103 ], [ -119.578505087999972, 49.498849905000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179550833", "BldgCostT": "124973333", "sL_LossRatio": "0.999952360343085", "sL_AssetLoss": "8107.384163", "sL_BldgLoss": "8106.99793", "sL_StrLoss": "8105.4", "sL_NStrLoss": "1.59793", "sL_ContLoss": "0.386233", "geom_point": "0101000020E6100000B03E9AC14AE55DC0C2995FCD81BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.580357592, 49.497774488000054 ], [ -119.580368356999927, 49.497594464000095 ], [ -119.580427307999983, 49.496608698000074 ], [ -119.580496303999979, 49.496233406000044 ], [ -119.580486713999932, 49.495885010000094 ], [ -119.580427994999965, 49.495724920000079 ], [ -119.580215688999928, 49.495146200000121 ], [ -119.580204392999988, 49.494998305000053 ], [ -119.580505195999976, 49.494927587000099 ], [ -119.580518677999933, 49.494924862000069 ], [ -119.580573407999964, 49.494913746000044 ], [ -119.580794366999925, 49.494868828000051 ], [ -119.580817281999927, 49.494864179000089 ], [ -119.581004194999977, 49.494826209000081 ], [ -119.581588386999982, 49.494689194000081 ], [ -119.582641243999888, 49.49445873500008 ], [ -119.582789020999911, 49.494426381000089 ], [ -119.583088605999976, 49.49436079300007 ], [ -119.583849999, 49.49419540100007 ], [ -119.584541498999954, 49.495565303000056 ], [ -119.584954707999955, 49.496357703000101 ], [ -119.585092078999963, 49.496703697000065 ], [ -119.585799401999964, 49.496876605000111 ], [ -119.586538504999936, 49.497110109000033 ], [ -119.586491736999974, 49.497189255000102 ], [ -119.586444947999922, 49.497268435000095 ], [ -119.586398200999909, 49.497347546000078 ], [ -119.586366274999961, 49.497401605000107 ], [ -119.585709397999949, 49.497323787 ], [ -119.585045086999941, 49.497319709000102 ], [ -119.583701800999947, 49.497310109000054 ], [ -119.583658412999938, 49.497309781000098 ], [ -119.583124294999934, 49.497305188000048 ], [ -119.582842344999918, 49.49730864100006 ], [ -119.582740140999931, 49.497309881 ], [ -119.582739380999925, 49.497311560000071 ], [ -119.582729511999986, 49.497318669000016 ], [ -119.582432246999986, 49.497532544000116 ], [ -119.582327795999944, 49.497639000000106 ], [ -119.582223328999987, 49.497745434000123 ], [ -119.582152412999932, 49.49781770100001 ], [ -119.581892580999977, 49.497743494000083 ], [ -119.580944407999979, 49.497768597000146 ], [ -119.580357592, 49.497774488000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119245166", "BldgCostT": "79556666", "sL_LossRatio": "0.999990041781785", "sL_AssetLoss": "13385.9288", "sL_BldgLoss": "13385.7955", "sL_StrLoss": "13385.0305", "sL_NStrLoss": "0.765", "sL_ContLoss": "0.1333", "geom_point": "0101000020E61000000178D178DEE45DC0D4D9249A9BBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.574249000999913, 49.497849302000098 ], [ -119.574298805999931, 49.496996804000069 ], [ -119.573714379999942, 49.496935899000064 ], [ -119.572430505999975, 49.496883979000096 ], [ -119.572058098999946, 49.496803196 ], [ -119.571933295999955, 49.496754187000136 ], [ -119.571922590999975, 49.496725239000149 ], [ -119.57188198599999, 49.496615703000053 ], [ -119.571912882999982, 49.495531598000063 ], [ -119.571966039999936, 49.495413114000016 ], [ -119.571979218999928, 49.495383797000059 ], [ -119.572085703999946, 49.495354896000102 ], [ -119.573237717999987, 49.495369107000059 ], [ -119.5744291889999, 49.495387410000021 ], [ -119.57442949299994, 49.49473970400004 ], [ -119.574431496999949, 49.494457903000132 ], [ -119.574445279999935, 49.494081091000076 ], [ -119.574482691999947, 49.494011096000101 ], [ -119.574706577999962, 49.493856292000039 ], [ -119.574913408999919, 49.493763805000086 ], [ -119.57511850399996, 49.493723597000091 ], [ -119.576333890999976, 49.49379840400006 ], [ -119.577027787999924, 49.493924287000084 ], [ -119.577340404000012, 49.493980986000068 ], [ -119.577727810999974, 49.494133195000053 ], [ -119.579379394999989, 49.49506410500004 ], [ -119.57953960499999, 49.495126901000049 ], [ -119.579676098999968, 49.495121510000054 ], [ -119.580204392999988, 49.494998305000053 ], [ -119.580215688999928, 49.495146200000121 ], [ -119.580427994999965, 49.495724920000079 ], [ -119.580486713999932, 49.495885010000094 ], [ -119.580496303999979, 49.496233406000044 ], [ -119.580427307999983, 49.496608698000074 ], [ -119.580368356999927, 49.497594464000095 ], [ -119.580357592, 49.497774488000054 ], [ -119.579009105999944, 49.49778848400009 ], [ -119.57903131099998, 49.496914401000048 ], [ -119.579039298999987, 49.496529107000114 ], [ -119.578911111999915, 49.496207107000075 ], [ -119.578700285999972, 49.495831496000093 ], [ -119.57842277799989, 49.495586400000029 ], [ -119.577407782999941, 49.494918197000096 ], [ -119.577190816999945, 49.494815006000096 ], [ -119.576990011999953, 49.494784986000113 ], [ -119.576840884999939, 49.49478159900012 ], [ -119.575670497999951, 49.494760912000054 ], [ -119.575627085999969, 49.495350095000013 ], [ -119.575644484999955, 49.49549301200004 ], [ -119.575713699999966, 49.495642506000067 ], [ -119.576034806999957, 49.496002195000102 ], [ -119.576090595999943, 49.496098499000027 ], [ -119.576055905999979, 49.497677403000068 ], [ -119.576308991999937, 49.497650895000071 ], [ -119.576671876999967, 49.497680499000062 ], [ -119.577447507999921, 49.497831303000098 ], [ -119.578034416999984, 49.497814643000041 ], [ -119.578518413999959, 49.49780090400003 ], [ -119.578505087999972, 49.498849905000057 ], [ -119.576748686, 49.498897398000103 ], [ -119.576750181999955, 49.499681702 ], [ -119.576750035999979, 49.500000908000075 ], [ -119.576749802, 49.500478386000104 ], [ -119.576079449999924, 49.500472145000082 ], [ -119.575411890999987, 49.500465905000084 ], [ -119.575237103999896, 49.500464269000048 ], [ -119.574116332999935, 49.500453742000097 ], [ -119.573802825, 49.500450801000056 ], [ -119.573963019999923, 49.500001808000064 ], [ -119.574166795999943, 49.499430813000131 ], [ -119.574185049999954, 49.499159242000118 ], [ -119.574209214999897, 49.498800001000106 ], [ -119.574249000999913, 49.497849302000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118759228", "BldgCostT": "79544857", "sL_LossRatio": "0.999999148481144", "sL_AssetLoss": "12824.14349", "sL_BldgLoss": "12824.13257", "sL_StrLoss": "12824.00397", "sL_NStrLoss": "0.1286", "sL_ContLoss": "0.01092", "geom_point": "0101000020E610000063BC734991E45DC0DF37A559ACC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565014107999957, 49.513323505000145 ], [ -119.564269509999988, 49.51212741100003 ], [ -119.564314084999964, 49.511914108000042 ], [ -119.564539252999978, 49.510837585000047 ], [ -119.564774433999929, 49.509712920000077 ], [ -119.565101211999931, 49.50815017700009 ], [ -119.565243923999944, 49.5074678 ], [ -119.565404203999947, 49.506984895000123 ], [ -119.56652248099999, 49.505061196000085 ], [ -119.566841389, 49.504296015000108 ], [ -119.567033926999954, 49.503780759000136 ], [ -119.567081345999952, 49.503560433000061 ], [ -119.567045336999954, 49.503276786000043 ], [ -119.56701409099999, 49.503030673000104 ], [ -119.567031614999976, 49.502825736000069 ], [ -119.567159491999988, 49.502505402000054 ], [ -119.567255773999989, 49.502324063000081 ], [ -119.567315749999963, 49.502211127000059 ], [ -119.567371994999945, 49.502105172000029 ], [ -119.567379226999932, 49.502077346000114 ], [ -119.567446794999967, 49.501817813000088 ], [ -119.567490323999948, 49.501242702000049 ], [ -119.567560771999965, 49.500312247000117 ], [ -119.5675681, 49.500215125000111 ], [ -119.567582765999958, 49.500021813000089 ], [ -119.567580684999925, 49.499997547000099 ], [ -119.567552885999945, 49.499670424000065 ], [ -119.567380846999967, 49.499047690000104 ], [ -119.567086776999986, 49.49835571400007 ], [ -119.567020820999957, 49.498200548000035 ], [ -119.566987634999947, 49.49812248900006 ], [ -119.566728224999977, 49.497511961000029 ], [ -119.566703331999975, 49.497224102000075 ], [ -119.566793337999925, 49.496996352000053 ], [ -119.567041568999983, 49.496815975000032 ], [ -119.568292572999979, 49.496755713000034 ], [ -119.568425882999961, 49.496763626000131 ], [ -119.569567700999983, 49.497062480000103 ], [ -119.571737081999984, 49.497630295000079 ], [ -119.572211983999935, 49.497754592000092 ], [ -119.572470680999956, 49.497787119000115 ], [ -119.574249000999913, 49.497849302000098 ], [ -119.574209214999897, 49.498800001000106 ], [ -119.574185049999954, 49.499159242000118 ], [ -119.574166795999943, 49.499430813000131 ], [ -119.573963019999923, 49.500001808000064 ], [ -119.573802825, 49.500450801000056 ], [ -119.574116332999935, 49.500453742000097 ], [ -119.575237103999896, 49.500464269000048 ], [ -119.575411890999987, 49.500465905000084 ], [ -119.576079449999924, 49.500472145000082 ], [ -119.576749802, 49.500478386000104 ], [ -119.578654971, 49.500496592000111 ], [ -119.580049680999963, 49.500508899000067 ], [ -119.580044407999935, 49.50144080900008 ], [ -119.580032480999989, 49.502817812000075 ], [ -119.580028488999957, 49.503438120000091 ], [ -119.580028002999924, 49.503515804000102 ], [ -119.580090904999963, 49.503918909000028 ], [ -119.579423687999977, 49.504302101000057 ], [ -119.578517808999919, 49.504856296000078 ], [ -119.578325691999936, 49.505041899000048 ], [ -119.57824709, 49.505188092000047 ], [ -119.578082197999905, 49.505844083000063 ], [ -119.578063012, 49.505911593000114 ], [ -119.57784133899996, 49.506160580000056 ], [ -119.577353295999927, 49.506708805000088 ], [ -119.576789556999969, 49.507777549000082 ], [ -119.57639051299995, 49.508533948000057 ], [ -119.576062673999914, 49.509155397000072 ], [ -119.575490724999952, 49.509117752000058 ], [ -119.572845689999937, 49.508943700000032 ], [ -119.572665344999905, 49.510108923000068 ], [ -119.572577562999982, 49.510675794000065 ], [ -119.572545274, 49.510884509000057 ], [ -119.572533817999926, 49.510958702000025 ], [ -119.572485839999914, 49.511099776000023 ], [ -119.572385719999929, 49.511394402000043 ], [ -119.57228274699996, 49.511644837000098 ], [ -119.571999238999965, 49.51233458400003 ], [ -119.57179159699993, 49.51283968500006 ], [ -119.571451511999967, 49.51338960200011 ], [ -119.57117861099999, 49.513647178000021 ], [ -119.571100290999979, 49.513721103000165 ], [ -119.57103389, 49.513730691000063 ], [ -119.570945905999977, 49.513745284000059 ], [ -119.567982704999977, 49.513479905000068 ], [ -119.567342, 49.513443693000056 ], [ -119.567215998999956, 49.513452001000118 ], [ -119.566772812999929, 49.51348119700004 ], [ -119.565996900999963, 49.51362850900005 ], [ -119.56528111599998, 49.513614005000079 ], [ -119.565213609999958, 49.513502389000145 ], [ -119.565014107999957, 49.513323505000145 ] ], [ [ -119.568923528999917, 49.511234311000138 ], [ -119.568969664999926, 49.510904140000093 ], [ -119.568677125999969, 49.510886767000052 ], [ -119.568788682999951, 49.510088416000031 ], [ -119.568120589999936, 49.510048735000055 ], [ -119.568035285999912, 49.51065914300009 ], [ -119.568163440999967, 49.510666754000106 ], [ -119.568091033999977, 49.511184867000104 ], [ -119.568923528999917, 49.511234311000138 ] ], [ [ -119.57735882799993, 49.505311369000012 ], [ -119.57733359199996, 49.504831275000114 ], [ -119.576657767999976, 49.504791184000098 ], [ -119.576443782999917, 49.506324600000028 ], [ -119.576948438999963, 49.506354538000075 ], [ -119.576994858999953, 49.50627149300005 ], [ -119.576968348999969, 49.50576711300004 ], [ -119.577199444999962, 49.505761963000104 ], [ -119.577201124999988, 49.505742360000099 ], [ -119.57735882799993, 49.505311369000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93797417", "BldgCostT": "62476667", "sL_LossRatio": "0.995152515001774", "sL_AssetLoss": "11295.502311", "sL_BldgLoss": "11240.747533", "sL_StrLoss": "11220.506023", "sL_NStrLoss": "20.24151", "sL_ContLoss": "54.754778", "geom_point": "0101000020E6100000BB25AC6CA3E45DC01F05A11FBAC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.569631888999979, 49.554508899000055 ], [ -119.569963581999957, 49.553743605000101 ], [ -119.570022497999929, 49.553431804000091 ], [ -119.569903005999919, 49.552647560000011 ], [ -119.569826515999949, 49.552145600000053 ], [ -119.56982611399998, 49.552135216000046 ], [ -119.569817739999948, 49.551901711 ], [ -119.569780909999963, 49.550876514000151 ], [ -119.569764419999927, 49.550417494000058 ], [ -119.569723922999955, 49.550052800000067 ], [ -119.569010210999977, 49.54809538800005 ], [ -119.56899683599994, 49.548046484000039 ], [ -119.56890469399994, 49.547708904000032 ], [ -119.568913311999893, 49.547498909000097 ], [ -119.568977816999933, 49.54728590700006 ], [ -119.56935153699996, 49.546698386000074 ], [ -119.56946743499995, 49.54651618900008 ], [ -119.56971540499994, 49.546126395000066 ], [ -119.56984971199995, 49.54581099500011 ], [ -119.569832887999965, 49.545734629000073 ], [ -119.569780095999974, 49.545495217000052 ], [ -119.569164501000031, 49.544383705000051 ], [ -119.569066228999972, 49.54420693 ], [ -119.568543979999944, 49.543267393000143 ], [ -119.568429686999977, 49.543143199000021 ], [ -119.567947108999988, 49.542806500000076 ], [ -119.567860815999964, 49.54275276100001 ], [ -119.56690367499999, 49.542156494000075 ], [ -119.566139579999941, 49.541681102000084 ], [ -119.565771012999903, 49.54148128900006 ], [ -119.564717493999979, 49.540784594000037 ], [ -119.564677176999965, 49.540751514000092 ], [ -119.564563290999928, 49.540658005000118 ], [ -119.564395023999921, 49.540364303000075 ], [ -119.564378569999974, 49.540301257000088 ], [ -119.564216232999954, 49.539678008000031 ], [ -119.5641199, 49.539308189000039 ], [ -119.563739190999939, 49.537827605000082 ], [ -119.563614178999927, 49.537452502000122 ], [ -119.563099556999958, 49.536667914000077 ], [ -119.563034326000022, 49.536568479000096 ], [ -119.562788003999941, 49.536192890000031 ], [ -119.562747371999976, 49.536131347000023 ], [ -119.562490607999933, 49.535742483 ], [ -119.562421863999973, 49.535600049000095 ], [ -119.562362713999988, 49.535477508000035 ], [ -119.562332317999932, 49.535270573000048 ], [ -119.562258969999959, 49.534770846000114 ], [ -119.562188017999972, 49.534287344000127 ], [ -119.562098465999952, 49.533677119000096 ], [ -119.562061116999942, 49.53342249300006 ], [ -119.562041789999967, 49.533292498000037 ], [ -119.561983024999947, 49.532897267000052 ], [ -119.561921777999942, 49.532485497000053 ], [ -119.561821788999936, 49.531784012000053 ], [ -119.561767721999942, 49.531591800000051 ], [ -119.561610534999957, 49.531041581000046 ], [ -119.561551277999939, 49.530822635000106 ], [ -119.561406170999987, 49.530306096000082 ], [ -119.560998824999956, 49.528856380000036 ], [ -119.560954616999979, 49.528698886000093 ], [ -119.560626892, 49.527841101000035 ], [ -119.561987694999956, 49.527844312000049 ], [ -119.562371243999976, 49.527851693000059 ], [ -119.56273124799999, 49.527858596000037 ], [ -119.564472625999912, 49.527892081000068 ], [ -119.565920983999945, 49.527919910000051 ], [ -119.56605585699999, 49.527807773000099 ], [ -119.565844118999962, 49.526432353000153 ], [ -119.565786401000011, 49.526057306000048 ], [ -119.565671639999934, 49.525906816 ], [ -119.565596624999941, 49.525808450000085 ], [ -119.564526522, 49.524808306000111 ], [ -119.563800709999967, 49.524129891000051 ], [ -119.563365805999979, 49.523090639000081 ], [ -119.563244518999937, 49.521510414 ], [ -119.563972025999988, 49.519456937000101 ], [ -119.564058556999939, 49.51941406300012 ], [ -119.565507337999946, 49.518696279000075 ], [ -119.569223574999967, 49.519813095000146 ], [ -119.569469872999903, 49.519893010000018 ], [ -119.569840738999943, 49.520013344000098 ], [ -119.570807605999946, 49.520327053000045 ], [ -119.571152695999956, 49.520439010000075 ], [ -119.571870616999959, 49.520707388000048 ], [ -119.57304057499999, 49.521144494000069 ], [ -119.573227371999977, 49.521214296000046 ], [ -119.573545408999934, 49.521269290000092 ], [ -119.573766981999952, 49.521250902000112 ], [ -119.573864698999927, 49.521215985000055 ], [ -119.574123497, 49.521079596000099 ], [ -119.57422648, 49.520887892000076 ], [ -119.574248362999953, 49.520830781000043 ], [ -119.574755997999929, 49.519504216000058 ], [ -119.575099488999953, 49.518606641000105 ], [ -119.57518616599998, 49.518380129000072 ], [ -119.575271847999915, 49.518156189000088 ], [ -119.575666812999884, 49.517123993000077 ], [ -119.57573141499995, 49.516859595000071 ], [ -119.575803335999964, 49.516240555000188 ], [ -119.575848405999977, 49.515852894000048 ], [ -119.575860318999929, 49.515511935000099 ], [ -119.575861678999942, 49.51547291100006 ], [ -119.575889, 49.514691701000075 ], [ -119.575895082999978, 49.51451746500004 ], [ -119.575906644, 49.51418712 ], [ -119.575919526999883, 49.51381867100006 ], [ -119.575943767999945, 49.51312459500005 ], [ -119.575947657999947, 49.513013655000101 ], [ -119.575954185999962, 49.512827418000086 ], [ -119.575962297999965, 49.512594905000078 ], [ -119.575853094999943, 49.51233460700012 ], [ -119.575603351999931, 49.512015435000087 ], [ -119.575541677999979, 49.511936603000052 ], [ -119.575454541999989, 49.511825257000034 ], [ -119.575033823999902, 49.51128756500006 ], [ -119.574974702999924, 49.511211992000014 ], [ -119.574876581999916, 49.510991095000051 ], [ -119.574867906999927, 49.510835190000137 ], [ -119.574905535999946, 49.510616760000104 ], [ -119.57494148399995, 49.510407812000018 ], [ -119.575012902999973, 49.510263006000052 ], [ -119.575024725999938, 49.510251304000064 ], [ -119.575472642999941, 49.509807877000043 ], [ -119.575499204999957, 49.509781600000125 ], [ -119.575668991999933, 49.509613508000022 ], [ -119.576062673999914, 49.509155397000072 ], [ -119.57639051299995, 49.508533948000057 ], [ -119.576789556999969, 49.507777549000082 ], [ -119.577353295999927, 49.506708805000088 ], [ -119.57784133899996, 49.506160580000056 ], [ -119.578063012, 49.505911593000114 ], [ -119.578082197999905, 49.505844083000063 ], [ -119.57824709, 49.505188092000047 ], [ -119.578325691999936, 49.505041899000048 ], [ -119.578517808999919, 49.504856296000078 ], [ -119.579423687999977, 49.504302101000057 ], [ -119.580090904999963, 49.503918909000028 ], [ -119.580530475999936, 49.503667587000095 ], [ -119.581059203999942, 49.503433294000111 ], [ -119.581579800999975, 49.503276301000092 ], [ -119.581856801999947, 49.503217695000089 ], [ -119.58250387599999, 49.503127792000058 ], [ -119.58364049699999, 49.503094004000118 ], [ -119.586133278999952, 49.503101685000075 ], [ -119.586406652000022, 49.50310250900003 ], [ -119.587806084999954, 49.503106798000097 ], [ -119.589221695999953, 49.503089495000097 ], [ -119.59035471, 49.503061689000027 ], [ -119.590395111999925, 49.502970103000102 ], [ -119.59053000099999, 49.502916696000057 ], [ -119.590718690999964, 49.502935103000063 ], [ -119.590999994999919, 49.502664568000085 ], [ -119.591079092999934, 49.502588502000087 ], [ -119.591134865999919, 49.502534872000105 ], [ -119.591275303999936, 49.502399795000052 ], [ -119.592181307999965, 49.501435294000046 ], [ -119.5926010109999, 49.501604691000097 ], [ -119.592695990999957, 49.501688912000098 ], [ -119.592975133999971, 49.502221370000044 ], [ -119.593230197999929, 49.502707896000047 ], [ -119.593430326999965, 49.502682678000134 ], [ -119.59441049899999, 49.502559104000085 ], [ -119.595589898999961, 49.502396796000077 ], [ -119.597342922999957, 49.50215439100009 ], [ -119.597651921999969, 49.502909070000086 ], [ -119.59771994799992, 49.503087423000082 ], [ -119.597764259999963, 49.503107017000033 ], [ -119.597663085999926, 49.50326629700001 ], [ -119.597045114999958, 49.503334589000133 ], [ -119.596683195999901, 49.503514100000082 ], [ -119.596664489999981, 49.503954101000062 ], [ -119.596405291999986, 49.504023906000079 ], [ -119.596514768999953, 49.504354767000073 ], [ -119.595995550999959, 49.504324059000062 ], [ -119.595773008999942, 49.504100786000059 ], [ -119.595448587999968, 49.503955612000098 ], [ -119.59477869599999, 49.503825997000078 ], [ -119.59225180899989, 49.504116498000094 ], [ -119.591726512999955, 49.50435289300006 ], [ -119.59152199499999, 49.504160692000085 ], [ -119.591330703999958, 49.504182001000039 ], [ -119.591002507999931, 49.504522383000086 ], [ -119.590517906999978, 49.504767409000046 ], [ -119.589400675999983, 49.50481009300006 ], [ -119.589245405999947, 49.504723197000033 ], [ -119.589244002999948, 49.504435488000119 ], [ -119.589086787999975, 49.504358610000075 ], [ -119.587879793999932, 49.504484011000073 ], [ -119.587666293999987, 49.504633511000101 ], [ -119.587643292999957, 49.505515102000096 ], [ -119.587422303999929, 49.505510796000124 ], [ -119.58721881799994, 49.504795906000055 ], [ -119.586215109999927, 49.504891289000049 ], [ -119.586021203999977, 49.505137708000056 ], [ -119.585090382999965, 49.505294307000071 ], [ -119.584703318999985, 49.505302906000111 ], [ -119.584429309999933, 49.505074985000135 ], [ -119.583390594999969, 49.505277199000012 ], [ -119.583309189999966, 49.505332802000048 ], [ -119.583489900999894, 49.505886789000094 ], [ -119.583990209999925, 49.506721407000043 ], [ -119.586924984999939, 49.506062008000093 ], [ -119.587012305999934, 49.506131807000095 ], [ -119.58414228, 49.506822130000053 ], [ -119.583780495999918, 49.506800694000106 ], [ -119.583511009999953, 49.50626419500005 ], [ -119.582673395999976, 49.506363908000026 ], [ -119.581826727999939, 49.506504101000104 ], [ -119.582133703999958, 49.504302430000052 ], [ -119.581970736999907, 49.504306070000091 ], [ -119.581584824999979, 49.504464060000103 ], [ -119.581463485999976, 49.504558130000106 ], [ -119.581465019999953, 49.504587250000093 ], [ -119.581424767, 49.504588148000089 ], [ -119.581222624999924, 49.504744861000063 ], [ -119.581067013, 49.504899160999983 ], [ -119.581093652999968, 49.505405203000059 ], [ -119.580437410999963, 49.505419852000074 ], [ -119.580394124999899, 49.505450660000058 ], [ -119.580268598999979, 49.505477647000092 ], [ -119.580294131999921, 49.505962825000047 ], [ -119.579880179999975, 49.505972063000023 ], [ -119.579908549999971, 49.506511204000091 ], [ -119.57949459299999, 49.506520440000031 ], [ -119.579505018999939, 49.506718590000091 ], [ -119.58120327799999, 49.50681927600003 ], [ -119.581003898999953, 49.506923593000046 ], [ -119.581006877999926, 49.507795197000092 ], [ -119.580669292999971, 49.508433293000046 ], [ -119.580721010999952, 49.508900388000029 ], [ -119.580551597999886, 49.509353293000075 ], [ -119.581050814999983, 49.511231898000041 ], [ -119.581053907999973, 49.512355603000053 ], [ -119.581270677999967, 49.512801294000049 ], [ -119.580971013999957, 49.513410891000035 ], [ -119.580934594999945, 49.514265410000107 ], [ -119.58073540499997, 49.514944802000024 ], [ -119.580319485999951, 49.515709590000057 ], [ -119.579564873999956, 49.516589693000036 ], [ -119.579456589999964, 49.516925799000042 ], [ -119.578948508999972, 49.517224907000084 ], [ -119.578833611, 49.517398683000074 ], [ -119.578569885999954, 49.518690396000082 ], [ -119.577908021, 49.519794200000028 ], [ -119.577811592000018, 49.52030830900005 ], [ -119.577357391999954, 49.520885097000125 ], [ -119.57711089699994, 49.521718295000056 ], [ -119.576786838999951, 49.522216886000059 ], [ -119.575411225999929, 49.522135304000088 ], [ -119.575180271999955, 49.523789330000106 ], [ -119.575128085999978, 49.523811966000068 ], [ -119.573215206999976, 49.52369849100014 ], [ -119.572987688999916, 49.525327293000032 ], [ -119.572884287999941, 49.525438304000041 ], [ -119.572877558999963, 49.525739202000061 ], [ -119.571980770999943, 49.525685991000053 ], [ -119.57197847499999, 49.52570241799999 ], [ -119.569673660999939, 49.525565627000042 ], [ -119.569543755999959, 49.526495074000074 ], [ -119.569721915999935, 49.52650564900005 ], [ -119.569220995999942, 49.530089369000109 ], [ -119.568050546, 49.530019886000012 ], [ -119.567958716999925, 49.530676681000038 ], [ -119.568353136, 49.530700097000121 ], [ -119.568339305999956, 49.530799024000032 ], [ -119.568495437999928, 49.530808292000046 ], [ -119.56842436, 49.531316687000128 ], [ -119.568564268999978, 49.531324992000044 ], [ -119.56844614299996, 49.532169904000042 ], [ -119.569680047999967, 49.532243145000095 ], [ -119.569771818999982, 49.532471101000091 ], [ -119.569668815999961, 49.532878407000155 ], [ -119.569744100999941, 49.533533494000046 ], [ -119.569808774999984, 49.533754070000036 ], [ -119.569740381999921, 49.534243329000034 ], [ -119.569955984999964, 49.534256125000091 ], [ -119.570063588, 49.534623099000022 ], [ -119.570553587999953, 49.535009007000077 ], [ -119.570794389999946, 49.535362190000093 ], [ -119.572033793999978, 49.536064392000085 ], [ -119.573042279999967, 49.536608397000101 ], [ -119.574344114999917, 49.537146793000034 ], [ -119.57559289699995, 49.537495713000069 ], [ -119.576292280999979, 49.537417392000059 ], [ -119.576661193999939, 49.537589690000019 ], [ -119.576605305999948, 49.537833204000059 ], [ -119.574650902999934, 49.53881310100013 ], [ -119.5745772, 49.53894979500005 ], [ -119.57406850699995, 49.539301606000102 ], [ -119.574013102, 49.539565098000054 ], [ -119.574566492999949, 49.540604699000077 ], [ -119.575153996999958, 49.540996390000089 ], [ -119.57530482099996, 49.541218604000115 ], [ -119.575339887999959, 49.541388115000046 ], [ -119.575192613999917, 49.541751189000138 ], [ -119.575487796999965, 49.542617189000069 ], [ -119.575500414999937, 49.543381998000079 ], [ -119.575971009999961, 49.544424504000077 ], [ -119.576037046999943, 49.545060773000053 ], [ -119.574526748999943, 49.544971239000112 ], [ -119.574410266999962, 49.545804905000089 ], [ -119.572957675999959, 49.545718772000093 ], [ -119.57291946399998, 49.545992198000121 ], [ -119.573415153999974, 49.546021593000049 ], [ -119.573258069999966, 49.547145624000031 ], [ -119.57595184799996, 49.54730532500011 ], [ -119.575451185999924, 49.550888967000041 ], [ -119.574616476999921, 49.550839488000094 ], [ -119.574579673999978, 49.551102864000079 ], [ -119.57559831099999, 49.551163245000055 ], [ -119.575527559999927, 49.551669633000145 ], [ -119.575499395999955, 49.55177481000009 ], [ -119.575510195999954, 49.551793914000051 ], [ -119.575152448999987, 49.554354213000053 ], [ -119.576446652999948, 49.554430914000051 ], [ -119.576585805999954, 49.554791307000094 ], [ -119.5773337, 49.55534250200008 ], [ -119.577379362999949, 49.555362949000063 ], [ -119.574452684000022, 49.55542898700002 ], [ -119.574552527999941, 49.554714558000065 ], [ -119.574502030999952, 49.554711564000101 ], [ -119.57440160699997, 49.555430139000087 ], [ -119.573792157999961, 49.555443880000034 ], [ -119.572329339999911, 49.555469545000101 ], [ -119.570157272999907, 49.555507595000073 ], [ -119.569532284999966, 49.555517885000064 ], [ -119.56943718799999, 49.555226415000028 ], [ -119.569436933999981, 49.555193782000039 ], [ -119.569435694999967, 49.555049206000035 ], [ -119.569616635999949, 49.554550911000092 ], [ -119.569631888999979, 49.554508899000055 ] ], [ [ -119.568724327999973, 49.536467003000077 ], [ -119.568757481999953, 49.536229886000115 ], [ -119.56860994799996, 49.536221129000033 ], [ -119.568599804999948, 49.536293666000141 ], [ -119.567383991999975, 49.536221494000081 ], [ -119.567380708999949, 49.53624495900003 ], [ -119.568202004999961, 49.536293714000124 ], [ -119.568182273999938, 49.536434828000012 ], [ -119.568724327999973, 49.536467003000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277610053", "BldgCostT": "187428746", "sL_LossRatio": "0.983082133578996", "sL_AssetLoss": "5880.61151", "sL_BldgLoss": "5781.12411", "sL_StrLoss": "5743.2469", "sL_NStrLoss": "37.87721", "sL_ContLoss": "99.4874", "geom_point": "0101000020E61000009C9073EE78E65DC06F4562821AC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.597342922999957, 49.50215439100009 ], [ -119.596818181999964, 49.50113599500002 ], [ -119.597675701999933, 49.501046692000067 ], [ -119.5985675099999, 49.500909693000033 ], [ -119.598103747999943, 49.500001628000064 ], [ -119.597764980999983, 49.499338308000112 ], [ -119.598479492999971, 49.499181810000088 ], [ -119.598969590999971, 49.499074407000123 ], [ -119.599357784999896, 49.498989463 ], [ -119.600013186999945, 49.498846090000065 ], [ -119.600504001999951, 49.498738715000044 ], [ -119.602125619999924, 49.498383793000066 ], [ -119.602482802999972, 49.499083294000101 ], [ -119.600010232999963, 49.499615266000013 ], [ -119.598829904999931, 49.499869195000024 ], [ -119.598899719999935, 49.500007988000085 ], [ -119.599178301999956, 49.500561910000059 ], [ -119.599308123999961, 49.500814387000041 ], [ -119.599995732999972, 49.500725252000088 ], [ -119.601978679999917, 49.500468192000014 ], [ -119.604969952999951, 49.500374492000105 ], [ -119.605725687999936, 49.500350815000111 ], [ -119.605822113999949, 49.500324897000077 ], [ -119.60582636499997, 49.500374891000035 ], [ -119.605914519999899, 49.501405298000115 ], [ -119.60592313799999, 49.501673555000096 ], [ -119.605933256999933, 49.501730085000091 ], [ -119.604105010999945, 49.501780796000034 ], [ -119.600591050999981, 49.501999513000086 ], [ -119.600391619999968, 49.502003998000106 ], [ -119.600379897000025, 49.50178292100005 ], [ -119.59983709799999, 49.501857959000105 ], [ -119.599810665999939, 49.502048071000075 ], [ -119.598887596999958, 49.502105499000038 ], [ -119.597866385000017, 49.502380400000114 ], [ -119.597575184999982, 49.502621090000112 ], [ -119.597778883999965, 49.503083993000089 ], [ -119.597764259999963, 49.503107017000033 ], [ -119.59771994799992, 49.503087423000082 ], [ -119.597651921999969, 49.502909070000086 ], [ -119.597342922999957, 49.50215439100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999996767927924", "sL_AssetLoss": "75.802765", "sL_BldgLoss": "75.80252", "sL_StrLoss": "75.8", "sL_NStrLoss": "0.00252", "sL_ContLoss": "0.000245", "geom_point": "0101000020E610000004EEB3A9BEE55DC06D748C331FCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.587730011999895, 49.574757045000077 ], [ -119.58769640499996, 49.574533688000123 ], [ -119.587843511999949, 49.57551069000008 ], [ -119.588517910999926, 49.576224183000093 ], [ -119.58857591, 49.576510501000044 ], [ -119.589620486999976, 49.577953210000054 ], [ -119.58980900799996, 49.578390405000107 ], [ -119.590298107999985, 49.57952129500007 ], [ -119.590832388999985, 49.579932911000071 ], [ -119.590815985999953, 49.580149297000091 ], [ -119.59072008899993, 49.580186404000123 ], [ -119.590676411999965, 49.580404289000136 ], [ -119.590857585, 49.580939799000063 ], [ -119.59085396899998, 49.581847440000054 ], [ -119.590194683999982, 49.581808483000081 ], [ -119.590313586999969, 49.580684828000059 ], [ -119.590178544, 49.579918621000047 ], [ -119.589155581999961, 49.577647059000107 ], [ -119.58901190499999, 49.577360526000049 ], [ -119.588289906999975, 49.576449062000044 ], [ -119.587924062999917, 49.576034816000075 ], [ -119.587655862999938, 49.575437527000112 ], [ -119.587654006999969, 49.575030237000085 ], [ -119.587730011999895, 49.574757045000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999963646696591", "sL_AssetLoss": "308.087545", "sL_BldgLoss": "308.076345", "sL_StrLoss": "308.000845", "sL_NStrLoss": "0.0755", "sL_ContLoss": "0.0112", "geom_point": "0101000020E61000002DFF420B60DA5DC068C1D54B1DD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.410210096999919, 49.641105515000021 ], [ -119.410039908, 49.641010105000106 ], [ -119.409412809999964, 49.641193800000075 ], [ -119.409334199999961, 49.64130350100006 ], [ -119.409426484999983, 49.641472909000079 ], [ -119.40925602199998, 49.641682301000095 ], [ -119.408887029999917, 49.64184099600007 ], [ -119.40919749399994, 49.639679847000103 ], [ -119.41470899299992, 49.640014199000106 ], [ -119.414194766999941, 49.643596611000113 ], [ -119.409172465999973, 49.643291948000083 ], [ -119.410596718999955, 49.64273479900006 ], [ -119.410814798999951, 49.642405798000041 ], [ -119.411494507999976, 49.641824693000039 ], [ -119.410210096999919, 49.641105515000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "118.2", "sL_BldgLoss": "118.2", "sL_StrLoss": "118.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008DBC2851A1E25DC0CF983037EBC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.541493540999952, 49.525977865000073 ], [ -119.541658694999938, 49.525987711000049 ], [ -119.541814867999975, 49.533058776000146 ], [ -119.539982276999979, 49.532949522000052 ], [ -119.540485499999974, 49.529365951000095 ], [ -119.541013464999978, 49.529397431000056 ], [ -119.541493540999952, 49.525977865000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "69", "sL_BldgLoss": "69", "sL_StrLoss": "69", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDDFADC1F5E55DC0359FAD62F5CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590102127999955, 49.583525439000098 ], [ -119.59046038799994, 49.583546608000105 ], [ -119.590611682999963, 49.584121491000047 ], [ -119.591380985999962, 49.584571509000071 ], [ -119.592923874999897, 49.584968893000045 ], [ -119.593575895999919, 49.585763612000022 ], [ -119.594021325999947, 49.586086905000094 ], [ -119.594471481999918, 49.586229291000087 ], [ -119.595428706999954, 49.586504210000037 ], [ -119.596600686999949, 49.586703599000053 ], [ -119.596943210999925, 49.587172096000089 ], [ -119.596952840999975, 49.587210256000084 ], [ -119.596914962999946, 49.587482038000083 ], [ -119.596661184999959, 49.587565204000086 ], [ -119.59640680299999, 49.587751798000056 ], [ -119.595613485999948, 49.588938105000068 ], [ -119.595370969999976, 49.589511491000046 ], [ -119.595563361999922, 49.588881567000058 ], [ -119.596063914999931, 49.587956759000058 ], [ -119.596690855999967, 49.587299568000091 ], [ -119.596652533999972, 49.586954289000097 ], [ -119.596352121999971, 49.586790386000104 ], [ -119.59529803199996, 49.586650778000063 ], [ -119.593974300999946, 49.586371935000074 ], [ -119.593355908000021, 49.585793876000039 ], [ -119.593301507999939, 49.585743008000044 ], [ -119.59262655199997, 49.585165723000017 ], [ -119.591476029999953, 49.58492785600005 ], [ -119.590170293999961, 49.584528285000061 ], [ -119.590102127999955, 49.583525439000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999997686627761", "sL_AssetLoss": "80.402106", "sL_BldgLoss": "80.40192", "sL_StrLoss": "80.4", "sL_NStrLoss": "0.00192", "sL_ContLoss": "0.000186", "geom_point": "0101000020E610000055C3FA1608DB5DC0D30DFBDA86CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.422661139999946, 49.620293913000133 ], [ -119.423906043999949, 49.620267839000086 ], [ -119.423959569999937, 49.62134623 ], [ -119.42312961499999, 49.621363614000103 ], [ -119.423142992999914, 49.621633212000113 ], [ -119.422728012999968, 49.621641902000142 ], [ -119.422741387999935, 49.621911500000095 ], [ -119.42232640600001, 49.621920188000033 ], [ -119.422353152999946, 49.62245938500007 ], [ -119.421108190999945, 49.622485442000055 ], [ -119.421027994, 49.620867853000057 ], [ -119.421857941000013, 49.620850484000101 ], [ -119.421844571999983, 49.620580886000042 ], [ -119.422674512999947, 49.620563511000071 ], [ -119.422661139999946, 49.620293913000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999998382172457", "sL_AssetLoss": "280.005123", "sL_BldgLoss": "280.00467", "sL_StrLoss": "280", "sL_NStrLoss": "0.00467", "sL_ContLoss": "0.000453", "geom_point": "0101000020E6100000FC230492CDDA5DC047301F5AF5CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.41643361399997, 49.626484188000106 ], [ -119.416947474999958, 49.622901678000126 ], [ -119.422457021999918, 49.623235646000133 ], [ -119.422385014999975, 49.623738112000069 ], [ -119.422356806999986, 49.623732983000068 ], [ -119.420903679999981, 49.623466693000076 ], [ -119.421331885999933, 49.623754397000027 ], [ -119.421409495999953, 49.623905302000068 ], [ -119.420105421999949, 49.625516104000013 ], [ -119.420119703999916, 49.626091507000105 ], [ -119.419820593999987, 49.626689526000042 ], [ -119.41643361399997, 49.626484188000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "434.5", "sL_BldgLoss": "434.5", "sL_StrLoss": "434.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007A7B634A1CE25DC0F9D687F5C6D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.530469780999951, 49.699428798000113 ], [ -119.535989319999914, 49.699756985000114 ], [ -119.535483880999934, 49.70333966000004 ], [ -119.529963914999968, 49.70301144900003 ], [ -119.530469780999951, 49.699428798000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3697500", "BldgCostT": "2550000", "sL_LossRatio": "1", "sL_AssetLoss": "371", "sL_BldgLoss": "371", "sL_StrLoss": "371", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D1CEF2B62E15DC095F48B6D2DC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.519120057999956, 49.522867642000016 ], [ -119.524618391999965, 49.523196487000064 ], [ -119.524114004999916, 49.526780017000064 ], [ -119.518615246999929, 49.526451147000095 ], [ -119.519120057999956, 49.522867642000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5548666", "BldgCostT": "3826666", "sL_LossRatio": "1", "sL_AssetLoss": "510.7", "sL_BldgLoss": "510.7", "sL_StrLoss": "510.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EDD9528BB1E65DC0D047D7542FD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.603062628999965, 49.662134564000013 ], [ -119.608578206999979, 49.66245909500001 ], [ -119.608078833999983, 49.666042294000071 ], [ -119.606518920999974, 49.665950539000036 ], [ -119.606110604999955, 49.668879231000084 ], [ -119.600594272999928, 49.668554578000062 ], [ -119.601094256999957, 49.664971426000058 ], [ -119.602654125999919, 49.665063259000199 ], [ -119.603062628999965, 49.662134564000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "361.1", "sL_BldgLoss": "361.1", "sL_StrLoss": "361.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C360C45F4FE75DC0C4707D718CD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.611391700999917, 49.638817546000084 ], [ -119.611725223999912, 49.636421695000074 ], [ -119.611286987999932, 49.636431586000114 ], [ -119.61127256499995, 49.636162028000115 ], [ -119.610857520999943, 49.636171395000105 ], [ -119.610799840999974, 49.63509316100005 ], [ -119.612044942999916, 49.63506505900007 ], [ -119.612054511999943, 49.635243838000051 ], [ -119.617402935999934, 49.635558289000116 ], [ -119.616904543999979, 49.639141666000143 ], [ -119.611391700999917, 49.638817546000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33420533", "BldgCostT": "22155546", "sL_LossRatio": "1", "sL_AssetLoss": "3481.8", "sL_BldgLoss": "3481.8", "sL_StrLoss": "3481.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E190B2EA98E45DC0A9B82F6F27C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.566169803999983, 49.592370599000063 ], [ -119.566141499999958, 49.59183146000003 ], [ -119.565726819999966, 49.591840658000102 ], [ -119.56567022199999, 49.590762379000076 ], [ -119.566084895999921, 49.590753181000153 ], [ -119.566070744999976, 49.590483611000124 ], [ -119.564412062999949, 49.590520395000041 ], [ -119.564355499000015, 49.589442114000043 ], [ -119.5647701599999, 49.589432921000096 ], [ -119.564741874999967, 49.588893780000063 ], [ -119.565156532999978, 49.58888458600007 ], [ -119.565114099999931, 49.588075875000051 ], [ -119.565528748999981, 49.588066678000096 ], [ -119.565500457999988, 49.587527539000114 ], [ -119.565915102999952, 49.587518342000095 ], [ -119.565886806999913, 49.586979201000048 ], [ -119.566301447999976, 49.586970002000037 ], [ -119.56628729699996, 49.586700433000075 ], [ -119.567945848999926, 49.586663624 ], [ -119.567917530999964, 49.586124485000049 ], [ -119.568108188999943, 49.586120252000043 ], [ -119.568406751999987, 49.583987448000066 ], [ -119.569885395, 49.584075110000086 ], [ -119.569849004999966, 49.583382748000062 ], [ -119.570263613999913, 49.58337353500005 ], [ -119.570178596999938, 49.581756119000055 ], [ -119.570593192999951, 49.581746906000049 ], [ -119.570564850999986, 49.581207768000091 ], [ -119.570979441999953, 49.581198553000092 ], [ -119.570936923999909, 49.58038984500007 ], [ -119.571351506999946, 49.58038062900004 ], [ -119.571294810000026, 49.579302352000106 ], [ -119.571709383999945, 49.579293135000086 ], [ -119.571681031999944, 49.578753997000042 ], [ -119.572095601999976, 49.578744779000083 ], [ -119.572067246999936, 49.57820564100011 ], [ -119.573725501999931, 49.578168753000092 ], [ -119.573796435999967, 49.579516598000097 ], [ -119.574211010999989, 49.579507372000094 ], [ -119.574195731999936, 49.57921709 ], [ -119.573827061999964, 49.579195247000065 ], [ -119.57414300399995, 49.576935918000096 ], [ -119.573201590999957, 49.576880136000113 ], [ -119.573373158999942, 49.5756533160001 ], [ -119.571854328999976, 49.575563302000042 ], [ -119.572355537999925, 49.571979805000055 ], [ -119.574002115, 49.572077389000057 ], [ -119.574075391999983, 49.571553288000061 ], [ -119.572177709999977, 49.571440820000127 ], [ -119.572372537999939, 49.570047716000047 ], [ -119.569696423000025, 49.5698890560001 ], [ -119.570197736999944, 49.566305539000034 ], [ -119.571413283999931, 49.566377615000086 ], [ -119.573034852999967, 49.566473743000088 ], [ -119.573093796999942, 49.566052168000034 ], [ -119.572494472999963, 49.566016642000079 ], [ -119.572604393999953, 49.565230536000101 ], [ -119.571262849999982, 49.5651510020001 ], [ -119.568904512999922, 49.565011146000131 ], [ -119.569405834999912, 49.561427607000091 ], [ -119.570788901999947, 49.561509634000068 ], [ -119.570803510999937, 49.561405180000087 ], [ -119.570824285999947, 49.561256640000046 ], [ -119.571972487999943, 49.561324723000048 ], [ -119.571997168999971, 49.561148211000031 ], [ -119.57079633499994, 49.561077006000048 ], [ -119.570800951999985, 49.561043992000116 ], [ -119.570758916999935, 49.56104150000008 ], [ -119.569998212999977, 49.560996385000117 ], [ -119.570222137999949, 49.559395382000069 ], [ -119.569276095999939, 49.559339269000034 ], [ -119.569332396999968, 49.558936768000088 ], [ -119.567646069999938, 49.558836725000056 ], [ -119.567787333999959, 49.557827062000044 ], [ -119.565773877999959, 49.55770757600007 ], [ -119.565911688999961, 49.556722854000029 ], [ -119.561992622999938, 49.556490174000082 ], [ -119.562044304, 49.556121094000083 ], [ -119.56203054799991, 49.556120277000055 ], [ -119.562106747, 49.555576102000053 ], [ -119.563847404999962, 49.555572570000031 ], [ -119.56712191099993, 49.555565825000087 ], [ -119.569532284999966, 49.555517885000064 ], [ -119.570157272999907, 49.555507595000073 ], [ -119.570171434999963, 49.556249712000067 ], [ -119.570430579999979, 49.55630610500009 ], [ -119.570603743999939, 49.556325464000132 ], [ -119.571083391999949, 49.556379102000115 ], [ -119.571390209999933, 49.556466010000051 ], [ -119.571523691999928, 49.556533501000025 ], [ -119.571736607999952, 49.556716785000063 ], [ -119.572121794999987, 49.557185901000082 ], [ -119.572731997999966, 49.557702717000105 ], [ -119.573128676999886, 49.558183776000156 ], [ -119.573135287999932, 49.558191798000117 ], [ -119.573275383999913, 49.558288831000034 ], [ -119.573369179999986, 49.558353799000052 ], [ -119.574029787999947, 49.558669397000081 ], [ -119.57425398799991, 49.55883169100008 ], [ -119.57443121099999, 49.559022888000072 ], [ -119.57450633599997, 49.559147346000046 ], [ -119.574560687999906, 49.559237403000026 ], [ -119.574653403999946, 49.559488573000046 ], [ -119.575048225999964, 49.560558451000112 ], [ -119.575516516999969, 49.561827241000096 ], [ -119.575549417999966, 49.561916412000109 ], [ -119.575592103999909, 49.562032009000077 ], [ -119.575629044999971, 49.562202048000046 ], [ -119.575653726, 49.562315601000122 ], [ -119.575622102999958, 49.562511597000054 ], [ -119.575420810999987, 49.562979286 ], [ -119.575368997999988, 49.563101800000055 ], [ -119.575379207999944, 49.563306597000043 ], [ -119.575390454999976, 49.563325484000089 ], [ -119.576086135999915, 49.564494815000089 ], [ -119.576111696999973, 49.564537793000142 ], [ -119.576413010999914, 49.564970855000077 ], [ -119.576715898999964, 49.565406168000067 ], [ -119.577045192999918, 49.565879407000111 ], [ -119.577247897999897, 49.566350535000048 ], [ -119.577285857999939, 49.566438773000101 ], [ -119.577585786999975, 49.567135900000046 ], [ -119.577810800999913, 49.567658863000098 ], [ -119.577927007999975, 49.567928895000101 ], [ -119.577839398999942, 49.567959792000075 ], [ -119.577753111000021, 49.568379302000025 ], [ -119.577987320999966, 49.568867398000073 ], [ -119.577945993999933, 49.568964305000073 ], [ -119.577849111999939, 49.5690126900001 ], [ -119.57782313, 49.569014820000149 ], [ -119.577502394999968, 49.569041014000085 ], [ -119.577223468999946, 49.569034357000071 ], [ -119.576712818999951, 49.569022201000088 ], [ -119.576684157999935, 49.569022785000058 ], [ -119.575701309999957, 49.569042681000013 ], [ -119.575675826999927, 49.569028671000076 ], [ -119.57443081699995, 49.569371957000065 ], [ -119.574457778999928, 49.56950200100006 ], [ -119.574664693999964, 49.570092095000064 ], [ -119.574930505999987, 49.570850251000067 ], [ -119.575155114999944, 49.571490795000088 ], [ -119.575226725, 49.571760217000048 ], [ -119.575459838999919, 49.572637267000111 ], [ -119.57550248099993, 49.572797696000059 ], [ -119.575516487999963, 49.572851613000118 ], [ -119.575741446999984, 49.573718049000028 ], [ -119.575777618999894, 49.573857294000057 ], [ -119.57582180199995, 49.574285386000106 ], [ -119.57581939799995, 49.575146103000051 ], [ -119.575865422999939, 49.575472318000017 ], [ -119.575894725999945, 49.575679811000057 ], [ -119.576252892999946, 49.576730793000117 ], [ -119.576257362999911, 49.576747473000118 ], [ -119.576333431999927, 49.577031884000064 ], [ -119.576375905999939, 49.577190607000041 ], [ -119.576381489999946, 49.577746511000043 ], [ -119.576449775999947, 49.578211191000022 ], [ -119.576264218999924, 49.578466709000089 ], [ -119.576109484999961, 49.579304795000049 ], [ -119.575959614999931, 49.579821702000061 ], [ -119.575929302999938, 49.579919194000041 ], [ -119.575951749999945, 49.58035492900008 ], [ -119.575953605999956, 49.580390404000042 ], [ -119.576142199999978, 49.58135449700012 ], [ -119.576185994999932, 49.581974097000064 ], [ -119.576143353999967, 49.58242141100007 ], [ -119.576141312999937, 49.582442902000075 ], [ -119.576177589999929, 49.5834738900001 ], [ -119.576129995999935, 49.58372490900009 ], [ -119.575928082999937, 49.583947800000018 ], [ -119.575410284999975, 49.584296501000097 ], [ -119.575052696999975, 49.584451486000049 ], [ -119.574740888999955, 49.584527896000047 ], [ -119.574705752999961, 49.584317192000086 ], [ -119.574812777999952, 49.58388084000007 ], [ -119.574705863999938, 49.583474443000043 ], [ -119.57465035499996, 49.583263402000036 ], [ -119.574273075999884, 49.582957423000082 ], [ -119.574271645999957, 49.582954447000084 ], [ -119.573839982999942, 49.582669499000154 ], [ -119.573727492999964, 49.582645977000027 ], [ -119.573719942999972, 49.582644400000085 ], [ -119.57368713699999, 49.582802423000089 ], [ -119.573674883999942, 49.58286139300003 ], [ -119.57366636899998, 49.582909720000025 ], [ -119.573508940999943, 49.582947219000111 ], [ -119.572776378999905, 49.583325990000034 ], [ -119.572554312999955, 49.58344080800007 ], [ -119.572734018999981, 49.583568546000087 ], [ -119.571730365999954, 49.584510387000073 ], [ -119.570771946999969, 49.58565485500003 ], [ -119.570667350999969, 49.585723587000082 ], [ -119.570620616999975, 49.585754285000064 ], [ -119.570558318999971, 49.585828166000049 ], [ -119.570535758999981, 49.585854927000113 ], [ -119.570384507999961, 49.586323045000043 ], [ -119.570332025999974, 49.586485824000121 ], [ -119.569328204, 49.587747305000072 ], [ -119.568645119999971, 49.58991314900004 ], [ -119.568386160999978, 49.591166347000097 ], [ -119.567954300999958, 49.591464838 ], [ -119.567590286999945, 49.591799311000024 ], [ -119.567385543999976, 49.59180385500008 ], [ -119.567394742999937, 49.591978984000072 ], [ -119.566988291999976, 49.592352439000138 ], [ -119.566169803999983, 49.592370599000063 ] ], [ [ -119.568485293999942, 49.589080602000088 ], [ -119.568636891999944, 49.587997700000088 ], [ -119.568431293999964, 49.588002266000082 ], [ -119.568459619999928, 49.588541404000097 ], [ -119.56804496699999, 49.588550610000034 ], [ -119.56807328799999, 49.589089750000042 ], [ -119.568485293999942, 49.589080602000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5261083", "BldgCostT": "3628333", "sL_LossRatio": "1", "sL_AssetLoss": "694", "sL_BldgLoss": "694", "sL_StrLoss": "694", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DFEC29F5FE75DC0F9793AF469D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.612576472999947, 49.646007861000093 ], [ -119.612713995999968, 49.645019983000061 ], [ -119.611834113999947, 49.644968243000079 ], [ -119.612332964999965, 49.64138491900011 ], [ -119.61784612199996, 49.64170899000009 ], [ -119.617708718999964, 49.642696880000059 ], [ -119.618588562999918, 49.642748572000045 ], [ -119.618090183999968, 49.646331918000065 ], [ -119.612576472999947, 49.646007861000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999983076672561", "sL_AssetLoss": "361.04011", "sL_BldgLoss": "361.034", "sL_StrLoss": "361", "sL_NStrLoss": "0.034", "sL_ContLoss": "0.00611", "geom_point": "0101000020E6100000C023C729FCE15DC02A982994A2C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.528152166999945, 49.522103521000091 ], [ -119.52865618899996, 49.518519948000076 ], [ -119.531190307999978, 49.518671335000072 ], [ -119.531702609999968, 49.518966838000019 ], [ -119.532545839999941, 49.519420459000102 ], [ -119.53397072599995, 49.519420597000135 ], [ -119.53407461700003, 49.519413749000059 ], [ -119.534068425999962, 49.519457805000044 ], [ -119.533650473999899, 49.522431909000048 ], [ -119.528152166999945, 49.522103521000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85518666", "BldgCostT": "59946666", "sL_LossRatio": "1", "sL_AssetLoss": "1903", "sL_BldgLoss": "1903", "sL_StrLoss": "1903", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7529A6AF9E75DC03704432DB8D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.62615823299997, 49.660118403000112 ], [ -119.626534951999986, 49.657407260000078 ], [ -119.62571421399997, 49.657425887000045 ], [ -119.625705517999975, 49.6572643800001 ], [ -119.624065350999985, 49.65716815200004 ], [ -119.624295132999961, 49.655514953000051 ], [ -119.619195906999963, 49.655215623000103 ], [ -119.619449052999968, 49.65339563400007 ], [ -119.616863451999976, 49.653243763000035 ], [ -119.617151917999976, 49.65117049400007 ], [ -119.613695587999956, 49.650967381000065 ], [ -119.614194358999953, 49.647384079000105 ], [ -119.61970824799999, 49.647708053000059 ], [ -119.61941991799992, 49.649781340000089 ], [ -119.622876184999953, 49.649984271000037 ], [ -119.622623192999981, 49.651804278000021 ], [ -119.624157454999988, 49.651894324000118 ], [ -119.624456994999917, 49.649738922000076 ], [ -119.625454410999936, 49.649797449000062 ], [ -119.625465405999961, 49.649807403000047 ], [ -119.625479610999946, 49.650049491000054 ], [ -119.625567097999934, 49.650381402000114 ], [ -119.625881005999986, 49.650814301000082 ], [ -119.626842397999923, 49.651197489000047 ], [ -119.627104496999976, 49.6514339000001 ], [ -119.627271105999938, 49.651664591000014 ], [ -119.627497777999977, 49.651758597 ], [ -119.627941284999949, 49.651784207000055 ], [ -119.628072282999952, 49.651628993000045 ], [ -119.628197311999884, 49.651626108000066 ], [ -119.628519891999986, 49.652986312000088 ], [ -119.628890192999904, 49.653427803000135 ], [ -119.628937593, 49.653795194000026 ], [ -119.629168204999942, 49.653987496000113 ], [ -119.630249710999948, 49.654511603000039 ], [ -119.630812493999926, 49.654930295000028 ], [ -119.631146798999936, 49.655202304000078 ], [ -119.631367677999904, 49.65569229699999 ], [ -119.631694087999961, 49.655837513000037 ], [ -119.63225319699994, 49.655941490000089 ], [ -119.632447584999952, 49.65618079799999 ], [ -119.632756488999973, 49.656280506000058 ], [ -119.632806716999966, 49.656441396000041 ], [ -119.633163099999976, 49.656605212000038 ], [ -119.63450659499992, 49.656592399000054 ], [ -119.634789190999982, 49.656981210000076 ], [ -119.634883521999953, 49.657438303000099 ], [ -119.635087093999942, 49.657586510000101 ], [ -119.636705804999934, 49.657792997000065 ], [ -119.63687521899999, 49.65789549 ], [ -119.636708271, 49.659098955000104 ], [ -119.631899273999949, 49.658817244000012 ], [ -119.631673731999939, 49.660441766000147 ], [ -119.62615823299997, 49.660118403000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564166", "BldgCostT": "5216666", "sL_LossRatio": "1", "sL_AssetLoss": "916", "sL_BldgLoss": "916", "sL_StrLoss": "916", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D1FDA4F344E25DC0D885DD7F7DD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.534223799999907, 49.689688111000095 ], [ -119.533775689999956, 49.689616893000114 ], [ -119.533389998999894, 49.68965250100004 ], [ -119.532967991999911, 49.689571394000083 ], [ -119.532490605999953, 49.689699506000082 ], [ -119.532082093999975, 49.689572808000044 ], [ -119.531699998999926, 49.689689598000029 ], [ -119.531596225999976, 49.689684640000102 ], [ -119.532002603999928, 49.68680499900006 ], [ -119.537520638999979, 49.687133114000083 ], [ -119.537225099999887, 49.689229150000088 ], [ -119.538116057999957, 49.689282102000064 ], [ -119.538062503999953, 49.689661942000086 ], [ -119.538707764000023, 49.689700287000107 ], [ -119.538202648999984, 49.693283026000131 ], [ -119.53801486099999, 49.693271867000121 ], [ -119.53790197899994, 49.69407243100008 ], [ -119.537583574999971, 49.694053509000135 ], [ -119.537347645999958, 49.695726538000095 ], [ -119.537298607999915, 49.69572362400006 ], [ -119.537210774, 49.696346440000042 ], [ -119.53636380899999, 49.696296105000073 ], [ -119.536356535999957, 49.696347659000089 ], [ -119.532974135999936, 49.696146574000075 ], [ -119.532973095999949, 49.695778097000073 ], [ -119.533167023999951, 49.695513203000075 ], [ -119.533419600999977, 49.694256992000142 ], [ -119.533729509999944, 49.693540608000042 ], [ -119.53381230399999, 49.692970897000052 ], [ -119.534246304, 49.691720491000133 ], [ -119.534132175999957, 49.691417095000098 ], [ -119.534136294999968, 49.690435807000021 ], [ -119.534581896999953, 49.690183788000112 ], [ -119.53452460699998, 49.689870389000113 ], [ -119.534223799999907, 49.689688111000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "378.9", "sL_BldgLoss": "378.9", "sL_StrLoss": "378.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C0694D352BE75DC003C5D9BE11D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.609503926999977, 49.662650314000096 ], [ -119.615019612999944, 49.662974519000038 ], [ -119.614520735999946, 49.666557745000098 ], [ -119.60900462399999, 49.666233516000112 ], [ -119.609503926999977, 49.662650314000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD0D7BEB0DE25DC0B797B87E0FC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.531527082999958, 49.532679994000056 ], [ -119.531485287999956, 49.531871254000073 ], [ -119.531071103999977, 49.53188032100018 ], [ -119.53102931799999, 49.531071581000099 ], [ -119.531443495999923, 49.531062515000045 ], [ -119.531429566999918, 49.53079293400009 ], [ -119.532672094999967, 49.530765728000041 ], [ -119.53271390699993, 49.53157446700007 ], [ -119.533128089999977, 49.531565394000033 ], [ -119.533169909999984, 49.532374132000086 ], [ -119.532755720999944, 49.532383206000134 ], [ -119.532769657999921, 49.532652785000025 ], [ -119.531527082999958, 49.532679994000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43774417", "BldgCostT": "29661667", "sL_LossRatio": "1", "sL_AssetLoss": "5194.1", "sL_BldgLoss": "5194.1", "sL_StrLoss": "5194.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000662C2F33CBE55DC0A7655A51B9CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.593626736999965, 49.619422700000023 ], [ -119.593740159999967, 49.618609870000114 ], [ -119.590776202000015, 49.618434924000105 ], [ -119.591233269000028, 49.615160603000064 ], [ -119.590183397999965, 49.6150986150001 ], [ -119.590375218999938, 49.613724533000095 ], [ -119.588691141999959, 49.613625078000041 ], [ -119.589191454999977, 49.610041700000053 ], [ -119.589983977999978, 49.610088507000114 ], [ -119.590562312999964, 49.610122660000116 ], [ -119.590601545999974, 49.609841576000143 ], [ -119.589902947999988, 49.609800320000041 ], [ -119.588644393999957, 49.609725986000115 ], [ -119.588780457999974, 49.608751436000034 ], [ -119.587772031999975, 49.608691864 ], [ -119.587941714999957, 49.60747664900002 ], [ -119.587948571999931, 49.607427535000063 ], [ -119.587890260999956, 49.607424091000098 ], [ -119.586118863999957, 49.607319421000035 ], [ -119.586176615999989, 49.606905917000077 ], [ -119.584370633999953, 49.606799174000088 ], [ -119.584425406999969, 49.606407115000117 ], [ -119.584269057999961, 49.60639787200008 ], [ -119.584422003, 49.605303069000072 ], [ -119.584431719999955, 49.605233509000051 ], [ -119.583008681999956, 49.605149376000064 ], [ -119.581282438999949, 49.605047293000055 ], [ -119.581308050999965, 49.604864052000082 ], [ -119.58142039799999, 49.604060199000081 ], [ -119.58138150799995, 49.604057898000065 ], [ -119.581509327000035, 49.603143323000054 ], [ -119.577797153999924, 49.602923702000055 ], [ -119.577869292999964, 49.602407821000071 ], [ -119.577661084999974, 49.602395499000068 ], [ -119.577834570999968, 49.60115483800007 ], [ -119.576956743999943, 49.601102882000092 ], [ -119.577055655999942, 49.600395587000094 ], [ -119.573057766999938, 49.600158877000048 ], [ -119.57347451399994, 49.597180433000091 ], [ -119.569768755999974, 49.59696088700008 ], [ -119.568479218999983, 49.59688445800009 ], [ -119.568513907999957, 49.596636712000119 ], [ -119.56805515299996, 49.596646898000131 ], [ -119.568019310999972, 49.595964769000041 ], [ -119.568193793999981, 49.596033882000043 ], [ -119.568913252999891, 49.596478461000089 ], [ -119.569026192999956, 49.596391622000162 ], [ -119.569267321999959, 49.59620628800009 ], [ -119.569693581999957, 49.595997612000133 ], [ -119.569878596999956, 49.595955309000033 ], [ -119.570721108999962, 49.595996204000116 ], [ -119.571070205999916, 49.595970292000089 ], [ -119.571296292999946, 49.595953501000032 ], [ -119.572126387999916, 49.595794890000057 ], [ -119.572415176999982, 49.595785001000081 ], [ -119.572499987999919, 49.595803503000077 ], [ -119.572608584999912, 49.595891291000051 ], [ -119.572676996999959, 49.596146406000088 ], [ -119.572765313999966, 49.59623930599999 ], [ -119.572980915999949, 49.596256498000095 ], [ -119.573207398999955, 49.59622481600011 ], [ -119.573516591999947, 49.59604889200007 ], [ -119.573910598999959, 49.595912400000024 ], [ -119.574021702999943, 49.595812389000059 ], [ -119.57483770499995, 49.594821909000061 ], [ -119.574844118999977, 49.594789496 ], [ -119.574947467999934, 49.594627165000105 ], [ -119.575010925999948, 49.594517797000016 ], [ -119.575087704999973, 49.594399145000111 ], [ -119.575163041999986, 49.594253524000109 ], [ -119.575149328999899, 49.594172504000028 ], [ -119.575178800999964, 49.593991204000105 ], [ -119.575400700999978, 49.593943008000061 ], [ -119.575587605999957, 49.594026296000052 ], [ -119.575731497999968, 49.594168492000115 ], [ -119.576219810999973, 49.595412297000088 ], [ -119.576533937999926, 49.595947302000063 ], [ -119.576609898999934, 49.596076685000085 ], [ -119.576714520999971, 49.596143407000049 ], [ -119.576834914999921, 49.596146001000065 ], [ -119.576962107999975, 49.596090307000139 ], [ -119.577039891999902, 49.596000089000057 ], [ -119.577461998, 49.595979895 ], [ -119.578216610999931, 49.595990892000017 ], [ -119.578979, 49.596002001000109 ], [ -119.57972628, 49.596007567000058 ], [ -119.580498983999988, 49.596013301000028 ], [ -119.580502685999988, 49.596383888000091 ], [ -119.581060790999985, 49.599183179000114 ], [ -119.581118104, 49.599470608000026 ], [ -119.581222962999945, 49.599999431000086 ], [ -119.58131352799991, 49.600456381000164 ], [ -119.581338766, 49.600583793000048 ], [ -119.581444453999964, 49.600811371000049 ], [ -119.581815960999933, 49.601182859000112 ], [ -119.583502479999964, 49.602235229000044 ], [ -119.585006226999937, 49.603173493000099 ], [ -119.585155945999986, 49.603419308000085 ], [ -119.585217396999951, 49.603520200000069 ], [ -119.585615010999916, 49.604550798000105 ], [ -119.585710725999945, 49.604673162000061 ], [ -119.585744580999943, 49.604716512000039 ], [ -119.58590214299997, 49.604848761000085 ], [ -119.586015492999977, 49.604943889000026 ], [ -119.586718681999912, 49.605346800000071 ], [ -119.58695577899999, 49.605518801000088 ], [ -119.587107985999921, 49.605671502000092 ], [ -119.58737500699999, 49.606066586000118 ], [ -119.587541906999931, 49.606196606000047 ], [ -119.588004896999948, 49.606557208000027 ], [ -119.588075887999963, 49.606665299000049 ], [ -119.58847398099999, 49.606578591000137 ], [ -119.588768917999971, 49.606475893000066 ], [ -119.590962308, 49.605484593000128 ], [ -119.590866717999972, 49.605204296000082 ], [ -119.590744813999933, 49.604366106000029 ], [ -119.590713825999956, 49.604282066000096 ], [ -119.590426611999959, 49.603502807000076 ], [ -119.590169613999947, 49.603085696000022 ], [ -119.590223700999957, 49.6029968120001 ], [ -119.590468188999949, 49.602936214000032 ], [ -119.590841495999896, 49.602917601000058 ], [ -119.591159510999915, 49.602977103000065 ], [ -119.591492935999952, 49.603081703000043 ], [ -119.591914982999967, 49.60321409500007 ], [ -119.592193099999989, 49.603231393000023 ], [ -119.592308098999936, 49.603153294000094 ], [ -119.592372300999969, 49.602852718000044 ], [ -119.592458406999953, 49.60272320600005 ], [ -119.592577797999979, 49.602643493000144 ], [ -119.592720780999969, 49.602613104000056 ], [ -119.593280690999947, 49.602650697000108 ], [ -119.593727207999947, 49.602634593000118 ], [ -119.594399482999961, 49.602692301000062 ], [ -119.595179205999912, 49.602627293000097 ], [ -119.595372638, 49.602572224000042 ], [ -119.595812406999926, 49.602447005000016 ], [ -119.595944091999939, 49.602378902000098 ], [ -119.596535912999983, 49.60163969400007 ], [ -119.596567410999953, 49.601543096000128 ], [ -119.596631111999926, 49.601524292000114 ], [ -119.596683589999927, 49.601546408000054 ], [ -119.596833501999981, 49.601277899000117 ], [ -119.597076314999981, 49.600993646000127 ], [ -119.59534771700001, 49.601334296000047 ], [ -119.595781973, 49.600771413000096 ], [ -119.595981315999964, 49.600668509000116 ], [ -119.596724302000013, 49.600089088000075 ], [ -119.598084605999986, 49.600168194000048 ], [ -119.598167094999908, 49.600116402 ], [ -119.598318711999937, 49.600006126000046 ], [ -119.598766610999945, 49.599680299000042 ], [ -119.599019195999958, 49.599411596000031 ], [ -119.598989004999979, 49.599907513000076 ], [ -119.600000684999941, 49.599910198000067 ], [ -119.600192194999948, 49.599910690000101 ], [ -119.601497915999985, 49.599188404000124 ], [ -119.602704223999979, 49.598503611000076 ], [ -119.602782326999943, 49.598459303000062 ], [ -119.602888813999925, 49.598362601000098 ], [ -119.602943808999953, 49.598266492000107 ], [ -119.602968603999955, 49.597739588000167 ], [ -119.603004017, 49.59711661100004 ], [ -119.602981010999912, 49.596962606000041 ], [ -119.602963507999945, 49.596829686000056 ], [ -119.602417381999942, 49.596315190000105 ], [ -119.602389522999957, 49.596263892000081 ], [ -119.602188593999969, 49.595894297000072 ], [ -119.602055957999966, 49.595702202000105 ], [ -119.602020197999977, 49.595650428000063 ], [ -119.601961331999945, 49.595565203000014 ], [ -119.601562499999929, 49.594987610000075 ], [ -119.601359912999939, 49.594767901000104 ], [ -119.601202300999915, 49.594374711000043 ], [ -119.60110849299997, 49.594260788000078 ], [ -119.600386671999971, 49.594224050000079 ], [ -119.600386911, 49.594009609000075 ], [ -119.600004756999965, 49.594002445000072 ], [ -119.599153303999955, 49.593986500000085 ], [ -119.599169412, 49.593553255000081 ], [ -119.599179603999957, 49.593279902000084 ], [ -119.599222401999938, 49.592942792000031 ], [ -119.599226925999957, 49.592700614000101 ], [ -119.599637994999981, 49.592806300000063 ], [ -119.600382761999967, 49.592932515000058 ], [ -119.600671779999942, 49.592981490000142 ], [ -119.601359202999944, 49.593703505000029 ], [ -119.601857600999963, 49.593971291000088 ], [ -119.60212178799999, 49.594261812000106 ], [ -119.602120504999931, 49.594652058000122 ], [ -119.602120308999972, 49.594711885000045 ], [ -119.60220998599999, 49.594844301000073 ], [ -119.6027183899999, 49.595040914000052 ], [ -119.603356791999957, 49.595097792000068 ], [ -119.603473500999939, 49.595194698000057 ], [ -119.603498388999938, 49.595391193000104 ], [ -119.603389952999962, 49.595498885000111 ], [ -119.60302510299999, 49.595861212000052 ], [ -119.603109691, 49.59614751 ], [ -119.603401197999958, 49.596436608000047 ], [ -119.60401779199999, 49.59681968700005 ], [ -119.605112890999948, 49.597127304 ], [ -119.605377224, 49.597417904000075 ], [ -119.605357885999965, 49.597580195000077 ], [ -119.603661870999971, 49.59847733 ], [ -119.601965084999946, 49.599374802000114 ], [ -119.601811907999917, 49.599585489000049 ], [ -119.601797111999971, 49.600098201 ], [ -119.601705503999966, 49.600190794000071 ], [ -119.601523399999948, 49.600176606000069 ], [ -119.601575912999934, 49.599833301000089 ], [ -119.601080177999989, 49.599880294000087 ], [ -119.600577118999979, 49.600160011000121 ], [ -119.599425393, 49.600800388000032 ], [ -119.599362812999971, 49.600844842000093 ], [ -119.598615114000026, 49.601375906000101 ], [ -119.59799971599989, 49.601813 ], [ -119.597659066999938, 49.602126117000083 ], [ -119.596916680999939, 49.602808494000044 ], [ -119.596845257999945, 49.602902496000041 ], [ -119.596326479999973, 49.603585280000075 ], [ -119.596165701999965, 49.603796885000051 ], [ -119.595935688999973, 49.604413596000022 ], [ -119.595901489999932, 49.605071606000138 ], [ -119.59593192899996, 49.605488011 ], [ -119.595951990999964, 49.605762291000055 ], [ -119.596212797999925, 49.606225212000062 ], [ -119.596239485999931, 49.60625011000009 ], [ -119.596692293000018, 49.606672407000111 ], [ -119.597704990999915, 49.607207912000085 ], [ -119.598211798999927, 49.607375992000044 ], [ -119.599275701999943, 49.607361709000031 ], [ -119.600269594999958, 49.607024190000047 ], [ -119.60070998799992, 49.607220693 ], [ -119.6009395199999, 49.60763940500005 ], [ -119.600986188999983, 49.608024011000111 ], [ -119.600552801, 49.608187789000027 ], [ -119.599674682999989, 49.609106404000066 ], [ -119.599488484999938, 49.609515097999989 ], [ -119.599504102999958, 49.610063405000119 ], [ -119.59996272099994, 49.610620304000051 ], [ -119.600273585999929, 49.610729999000114 ], [ -119.60098110499996, 49.610768402000133 ], [ -119.601440297999943, 49.611091712000082 ], [ -119.601522908999982, 49.611322387000079 ], [ -119.601704012999932, 49.611859404000036 ], [ -119.601550281999948, 49.612105790000037 ], [ -119.601477500999962, 49.612547308000053 ], [ -119.601587190999979, 49.612815010000126 ], [ -119.601487202999962, 49.612997286000045 ], [ -119.60155281099999, 49.613706596000036 ], [ -119.601728692, 49.613873215000062 ], [ -119.601701429999977, 49.614126248000112 ], [ -119.60165379099999, 49.614568197000061 ], [ -119.601971103, 49.614803212000055 ], [ -119.602660204999935, 49.614985485000069 ], [ -119.602867782999951, 49.615268893000099 ], [ -119.602890571999936, 49.615320425000085 ], [ -119.597708569999909, 49.615014924000064 ], [ -119.597809529999907, 49.614290866000026 ], [ -119.597859857999964, 49.61392991600006 ], [ -119.595917598999975, 49.613815347000063 ], [ -119.595909199999966, 49.613875563000128 ], [ -119.597279437999958, 49.613956394000091 ], [ -119.597229376999977, 49.614315393000041 ], [ -119.59699570599993, 49.61599102600011 ], [ -119.596993276999967, 49.616008448000088 ], [ -119.597008706999972, 49.616009357000081 ], [ -119.599636697999983, 49.616164333000022 ], [ -119.599137131999925, 49.619747729000053 ], [ -119.593626736999965, 49.619422700000023 ] ], [ [ -119.596386944999921, 49.609841981000059 ], [ -119.596397833999958, 49.60976390399999 ], [ -119.59616883699999, 49.609750394000123 ], [ -119.596157949999963, 49.609828471000135 ], [ -119.596386944999921, 49.609841981000059 ] ], [ [ -119.574782540999962, 49.596647953000094 ], [ -119.574799214999956, 49.596528749000079 ], [ -119.574088044999968, 49.59648663300009 ], [ -119.574071367999949, 49.596605838000087 ], [ -119.574782540999962, 49.596647953000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "317.5", "sL_BldgLoss": "317.5", "sL_StrLoss": "317.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002C08CCE03BE95DC08BA7A2A114D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.641756481999948, 49.666277920000027 ], [ -119.642057813999969, 49.664104315000046 ], [ -119.641307410999943, 49.66406041300008 ], [ -119.641536372999937, 49.662408884000044 ], [ -119.643068901, 49.6624516030001 ], [ -119.6442215899999, 49.662263589000112 ], [ -119.644364888999988, 49.662071304000072 ], [ -119.644636596999931, 49.662226489000091 ], [ -119.644916003999953, 49.662265005000066 ], [ -119.645088612999984, 49.662395990000078 ], [ -119.645120089999978, 49.662719289000044 ], [ -119.644797198999981, 49.663158003000028 ], [ -119.64475200899993, 49.663599486000123 ], [ -119.644843212999945, 49.663723392000087 ], [ -119.645123987999938, 49.663825898000013 ], [ -119.645404402999944, 49.663855812000051 ], [ -119.646298097999988, 49.664518091000062 ], [ -119.64663988699999, 49.664663413000021 ], [ -119.647455006999962, 49.665391110000044 ], [ -119.647737711999966, 49.665762810000054 ], [ -119.64855010399999, 49.665966232000073 ], [ -119.648464179999976, 49.666586663000018 ], [ -119.647284296999956, 49.666517706000043 ], [ -119.647272829999977, 49.666600490000128 ], [ -119.641756481999948, 49.666277920000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724167", "BldgCostT": "6016667", "sL_LossRatio": "1", "sL_AssetLoss": "798.4", "sL_BldgLoss": "798.4", "sL_StrLoss": "798.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000698187B36CE25DC0A5AB8D14BEC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.534583253999955, 49.536474715000068 ], [ -119.53484955499998, 49.534580136000045 ], [ -119.535683357000011, 49.534629887000023 ], [ -119.535884586999941, 49.533197956000066 ], [ -119.541384271999945, 49.53352594800004 ], [ -119.541114534999977, 49.53544696900012 ], [ -119.541890529999989, 49.535493225000074 ], [ -119.541961634999922, 49.537644297000035 ], [ -119.542044878999931, 49.540162904000049 ], [ -119.538652847, 49.539960694000058 ], [ -119.538601252999953, 49.540327945000087 ], [ -119.533100775999912, 49.539999815000058 ], [ -119.533604609999955, 49.536416313000046 ], [ -119.534583253999955, 49.536474715000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119024720", "BldgCostT": "79645413", "sL_LossRatio": "0.995656653862765", "sL_AssetLoss": "11258.600732", "sL_BldgLoss": "11209.700732", "sL_StrLoss": "11192.000732", "sL_NStrLoss": "17.7", "sL_ContLoss": "48.9", "geom_point": "0101000020E6100000725875B104E55DC0E9E1990AD0CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.580502685999988, 49.596383888000091 ], [ -119.580498983999988, 49.596013301000028 ], [ -119.57972628, 49.596007567000058 ], [ -119.578979, 49.596002001000109 ], [ -119.578216610999931, 49.595990892000017 ], [ -119.577461998, 49.595979895 ], [ -119.577039891999902, 49.596000089000057 ], [ -119.576962107999975, 49.596090307000139 ], [ -119.576834914999921, 49.596146001000065 ], [ -119.576714520999971, 49.596143407000049 ], [ -119.576609898999934, 49.596076685000085 ], [ -119.576533937999926, 49.595947302000063 ], [ -119.576219810999973, 49.595412297000088 ], [ -119.575731497999968, 49.594168492000115 ], [ -119.575587605999957, 49.594026296000052 ], [ -119.575400700999978, 49.593943008000061 ], [ -119.575178800999964, 49.593991204000105 ], [ -119.575149328999899, 49.594172504000028 ], [ -119.575163041999986, 49.594253524000109 ], [ -119.575087704999973, 49.594399145000111 ], [ -119.575010925999948, 49.594517797000016 ], [ -119.574947467999934, 49.594627165000105 ], [ -119.574844118999977, 49.594789496 ], [ -119.57483770499995, 49.594821909000061 ], [ -119.574021702999943, 49.595812389000059 ], [ -119.573910598999959, 49.595912400000024 ], [ -119.573516591999947, 49.59604889200007 ], [ -119.573207398999955, 49.59622481600011 ], [ -119.572980915999949, 49.596256498000095 ], [ -119.572765313999966, 49.59623930599999 ], [ -119.572676996999959, 49.596146406000088 ], [ -119.572608584999912, 49.595891291000051 ], [ -119.572499987999919, 49.595803503000077 ], [ -119.572415176999982, 49.595785001000081 ], [ -119.572126387999916, 49.595794890000057 ], [ -119.571296292999946, 49.595953501000032 ], [ -119.571070205999916, 49.595970292000089 ], [ -119.570721108999962, 49.595996204000116 ], [ -119.569878596999956, 49.595955309000033 ], [ -119.569693581999957, 49.595997612000133 ], [ -119.569267321999959, 49.59620628800009 ], [ -119.569026192999956, 49.596391622000162 ], [ -119.568913252999891, 49.596478461000089 ], [ -119.568193793999981, 49.596033882000043 ], [ -119.568019310999972, 49.595964769000041 ], [ -119.568012658999933, 49.595838190000066 ], [ -119.568627625999966, 49.595824536000094 ], [ -119.56898092199998, 49.593301087000107 ], [ -119.572818966999989, 49.593528516000028 ], [ -119.57292028199997, 49.592804376000025 ], [ -119.573474588999915, 49.592837211000116 ], [ -119.573552487999933, 49.592280365000114 ], [ -119.571850946, 49.592179563000073 ], [ -119.571859296999961, 49.592119885000109 ], [ -119.571552861999976, 49.592101729000092 ], [ -119.571560708999939, 49.592250879000048 ], [ -119.571146024999962, 49.592260098000111 ], [ -119.571160204999956, 49.592529666000054 ], [ -119.569916144999979, 49.592557312000039 ], [ -119.569816599999967, 49.59066383600009 ], [ -119.568983696, 49.59061446600009 ], [ -119.569030098999974, 49.591497459000102 ], [ -119.568615422999969, 49.591506667000033 ], [ -119.568629585999986, 49.591776237000055 ], [ -119.567590286999945, 49.591799311000024 ], [ -119.567954300999958, 49.591464838 ], [ -119.568386160999978, 49.591166347000097 ], [ -119.568645119999971, 49.58991314900004 ], [ -119.569328204, 49.587747305000072 ], [ -119.570332025999974, 49.586485824000121 ], [ -119.570384507999961, 49.586323045000043 ], [ -119.570535758999981, 49.585854927000113 ], [ -119.570558318999971, 49.585828166000049 ], [ -119.570620616999975, 49.585754285000064 ], [ -119.570667350999969, 49.585723587000082 ], [ -119.570771946999969, 49.58565485500003 ], [ -119.571730365999954, 49.584510387000073 ], [ -119.572734018999981, 49.583568546000087 ], [ -119.572554312999955, 49.58344080800007 ], [ -119.572776378999905, 49.583325990000034 ], [ -119.573508940999943, 49.582947219000111 ], [ -119.57366636899998, 49.582909720000025 ], [ -119.573674883999942, 49.58286139300003 ], [ -119.57368713699999, 49.582802423000089 ], [ -119.573719942999972, 49.582644400000085 ], [ -119.573727492999964, 49.582645977000027 ], [ -119.573839982999942, 49.582669499000154 ], [ -119.574271645999957, 49.582954447000084 ], [ -119.574273075999884, 49.582957423000082 ], [ -119.57465035499996, 49.583263402000036 ], [ -119.574705863999938, 49.583474443000043 ], [ -119.574812777999952, 49.58388084000007 ], [ -119.574705752999961, 49.584317192000086 ], [ -119.574740888999955, 49.584527896000047 ], [ -119.574455199999974, 49.584556104000065 ], [ -119.574386521999912, 49.584555047000052 ], [ -119.574043813999964, 49.5845497890001 ], [ -119.57385088, 49.584926798000097 ], [ -119.573795818999912, 49.585122197000075 ], [ -119.573814192999961, 49.587372509000076 ], [ -119.57387809899997, 49.587471111000127 ], [ -119.574019193999945, 49.587524689000062 ], [ -119.574873908999933, 49.587566291000059 ], [ -119.575172615999975, 49.58763360100005 ], [ -119.575931617999956, 49.587963097000042 ], [ -119.576096504999924, 49.588004503000015 ], [ -119.576247095, 49.587999885000059 ], [ -119.576385577999986, 49.587971895000059 ], [ -119.576839717999974, 49.58777210100007 ], [ -119.577076084999973, 49.587719202000102 ], [ -119.577321819999952, 49.587729296000063 ], [ -119.577746370999989, 49.587898895000066 ], [ -119.578011111999984, 49.5879416880001 ], [ -119.578271911999934, 49.587932794000054 ], [ -119.578552206999959, 49.587883409000028 ], [ -119.578822313999922, 49.587798198000058 ], [ -119.579715479999962, 49.587306396000059 ], [ -119.579869503999987, 49.587256798000048 ], [ -119.5800334, 49.587266491000072 ], [ -119.580318798999912, 49.587977320000043 ], [ -119.58037111799996, 49.588107602000115 ], [ -119.580344357999977, 49.588346394000055 ], [ -119.58034308299996, 49.588357912000056 ], [ -119.579862815999931, 49.58906299800006 ], [ -119.579831170999967, 49.589153685000021 ], [ -119.57977479099992, 49.58931519000005 ], [ -119.579751004999963, 49.589584803000044 ], [ -119.580273298999984, 49.589751201000105 ], [ -119.580522001999896, 49.589978193 ], [ -119.580661890000016, 49.590228490000079 ], [ -119.580810619, 49.590306904000066 ], [ -119.58112461499995, 49.590334506000019 ], [ -119.582049099999921, 49.590246941 ], [ -119.582310415999956, 49.59022220800005 ], [ -119.582688581999918, 49.590217401000054 ], [ -119.582980529999986, 49.590248857000063 ], [ -119.583283503999951, 49.590281491000056 ], [ -119.58356699799999, 49.590388607000094 ], [ -119.583818008999927, 49.590638302000066 ], [ -119.583915995, 49.590701911000096 ], [ -119.584651511999979, 49.590972088000044 ], [ -119.584810888999968, 49.59100319800006 ], [ -119.585056989999941, 49.591050290000048 ], [ -119.585993911999964, 49.591050604000039 ], [ -119.587253206999932, 49.590958802000102 ], [ -119.58737565399997, 49.590966040000083 ], [ -119.587500381999945, 49.590973411000057 ], [ -119.588585886999979, 49.591037614000122 ], [ -119.588702402, 49.5910382120001 ], [ -119.589704583999932, 49.590749596000158 ], [ -119.5898282859999, 49.590957510000109 ], [ -119.589994594999965, 49.591387296000114 ], [ -119.590288114999964, 49.592407310000048 ], [ -119.59041605099999, 49.592739738000091 ], [ -119.590497995999982, 49.592952601000043 ], [ -119.590509907999959, 49.593105889000071 ], [ -119.590435089999957, 49.593423103000077 ], [ -119.590257121999954, 49.59380369600008 ], [ -119.590106702, 49.593936600000077 ], [ -119.58967010299996, 49.594199796000083 ], [ -119.589480182999949, 49.594417111000055 ], [ -119.589436512999939, 49.594511734000044 ], [ -119.589400599999948, 49.594589492000075 ], [ -119.58939920099999, 49.595325594000059 ], [ -119.58864790299999, 49.59530740600011 ], [ -119.585853108999956, 49.595270401000086 ], [ -119.585746709999938, 49.595485399000061 ], [ -119.585894193999977, 49.59595031300011 ], [ -119.586058413999979, 49.596066587000045 ], [ -119.586434679999911, 49.596230980000051 ], [ -119.58658440499994, 49.596296399000039 ], [ -119.58673349599999, 49.596451505000076 ], [ -119.586752154999957, 49.59661947900009 ], [ -119.586753207999962, 49.596628816000063 ], [ -119.586738449999984, 49.59675490100004 ], [ -119.586686782999962, 49.597196456000056 ], [ -119.586672074999953, 49.597322185000067 ], [ -119.586630993999975, 49.597673002000086 ], [ -119.586548600999961, 49.597795502000103 ], [ -119.585357910999974, 49.598438681000118 ], [ -119.585050708999972, 49.598659892000093 ], [ -119.584692608999902, 49.599076799000017 ], [ -119.58462509499995, 49.599321209000024 ], [ -119.584504784999936, 49.59932759900007 ], [ -119.584434489999964, 49.599364097000084 ], [ -119.584219438999938, 49.599590131000127 ], [ -119.584182316999943, 49.599629200000109 ], [ -119.583991004999987, 49.599676589000076 ], [ -119.581118104, 49.599470608000026 ], [ -119.581060790999985, 49.599183179000114 ], [ -119.580502685999988, 49.596383888000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150758553", "BldgCostT": "99713746", "sL_LossRatio": "0.995143473462381", "sL_AssetLoss": "16802.132011", "sL_BldgLoss": "16720.532011", "sL_StrLoss": "16691.002011", "sL_NStrLoss": "29.53", "sL_ContLoss": "81.6", "geom_point": "0101000020E6100000DCEFAA8353E55DC0F16946ED1BCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.594707286999949, 49.595865797000016 ], [ -119.594711599999982, 49.595387311000074 ], [ -119.59360811099999, 49.595376302000034 ], [ -119.593646991999918, 49.594550293000054 ], [ -119.593661259999948, 49.594245439000083 ], [ -119.593668451999989, 49.594091815000141 ], [ -119.593674996999965, 49.593951311000076 ], [ -119.593645916999918, 49.593811397000096 ], [ -119.593550512999968, 49.593679295000115 ], [ -119.593134501999913, 49.593298008000041 ], [ -119.592958618999916, 49.593215298000089 ], [ -119.592707811999944, 49.593182482000039 ], [ -119.592691697999925, 49.593118286000049 ], [ -119.590509907999959, 49.593105889000071 ], [ -119.590497995999982, 49.592952601000043 ], [ -119.59041605099999, 49.592739738000091 ], [ -119.590288114999964, 49.592407310000048 ], [ -119.589994594999965, 49.591387296000114 ], [ -119.5898282859999, 49.590957510000109 ], [ -119.589704583999932, 49.590749596000158 ], [ -119.588702402, 49.5910382120001 ], [ -119.588585886999979, 49.591037614000122 ], [ -119.587500381999945, 49.590973411000057 ], [ -119.58737565399997, 49.590966040000083 ], [ -119.587253206999932, 49.590958802000102 ], [ -119.585993911999964, 49.591050604000039 ], [ -119.585056989999941, 49.591050290000048 ], [ -119.584810888999968, 49.59100319800006 ], [ -119.584651511999979, 49.590972088000044 ], [ -119.583915995, 49.590701911000096 ], [ -119.583818008999927, 49.590638302000066 ], [ -119.58356699799999, 49.590388607000094 ], [ -119.583283503999951, 49.590281491000056 ], [ -119.582980529999986, 49.590248857000063 ], [ -119.582688581999918, 49.590217401000054 ], [ -119.582310415999956, 49.59022220800005 ], [ -119.582049099999921, 49.590246941 ], [ -119.58112461499995, 49.590334506000019 ], [ -119.580810619, 49.590306904000066 ], [ -119.580661890000016, 49.590228490000079 ], [ -119.580522001999896, 49.589978193 ], [ -119.580273298999984, 49.589751201000105 ], [ -119.579751004999963, 49.589584803000044 ], [ -119.57977479099992, 49.58931519000005 ], [ -119.579831170999967, 49.589153685000021 ], [ -119.579862815999931, 49.58906299800006 ], [ -119.58034308299996, 49.588357912000056 ], [ -119.580344357999977, 49.588346394000055 ], [ -119.58037111799996, 49.588107602000115 ], [ -119.580318798999912, 49.587977320000043 ], [ -119.5800334, 49.587266491000072 ], [ -119.579869503999987, 49.587256798000048 ], [ -119.579715479999962, 49.587306396000059 ], [ -119.578822313999922, 49.587798198000058 ], [ -119.578552206999959, 49.587883409000028 ], [ -119.578271911999934, 49.587932794000054 ], [ -119.578011111999984, 49.5879416880001 ], [ -119.577746370999989, 49.587898895000066 ], [ -119.577321819999952, 49.587729296000063 ], [ -119.577076084999973, 49.587719202000102 ], [ -119.576839717999974, 49.58777210100007 ], [ -119.576385577999986, 49.587971895000059 ], [ -119.576247095, 49.587999885000059 ], [ -119.576096504999924, 49.588004503000015 ], [ -119.575931617999956, 49.587963097000042 ], [ -119.575172615999975, 49.58763360100005 ], [ -119.574873908999933, 49.587566291000059 ], [ -119.574019193999945, 49.587524689000062 ], [ -119.57387809899997, 49.587471111000127 ], [ -119.573814192999961, 49.587372509000076 ], [ -119.573795818999912, 49.585122197000075 ], [ -119.57385088, 49.584926798000097 ], [ -119.574043813999964, 49.5845497890001 ], [ -119.574386521999912, 49.584555047000052 ], [ -119.574455199999974, 49.584556104000065 ], [ -119.574740888999955, 49.584527896000047 ], [ -119.575052696999975, 49.584451486000049 ], [ -119.575410284999975, 49.584296501000097 ], [ -119.575928082999937, 49.583947800000018 ], [ -119.576129995999935, 49.58372490900009 ], [ -119.576177589999929, 49.5834738900001 ], [ -119.576141312999937, 49.582442902000075 ], [ -119.576143353999967, 49.58242141100007 ], [ -119.576185994999932, 49.581974097000064 ], [ -119.576142199999978, 49.58135449700012 ], [ -119.575953605999956, 49.580390404000042 ], [ -119.575951749999945, 49.58035492900008 ], [ -119.575929302999938, 49.579919194000041 ], [ -119.575959614999931, 49.579821702000061 ], [ -119.576109484999961, 49.579304795000049 ], [ -119.576264218999924, 49.578466709000089 ], [ -119.576449775999947, 49.578211191000022 ], [ -119.576381489999946, 49.577746511000043 ], [ -119.576375905999939, 49.577190607000041 ], [ -119.576333431999927, 49.577031884000064 ], [ -119.576257362999911, 49.576747473000118 ], [ -119.576252892999946, 49.576730793000117 ], [ -119.575894725999945, 49.575679811000057 ], [ -119.575865422999939, 49.575472318000017 ], [ -119.57581939799995, 49.575146103000051 ], [ -119.57582180199995, 49.574285386000106 ], [ -119.575777618999894, 49.573857294000057 ], [ -119.575741446999984, 49.573718049000028 ], [ -119.575516487999963, 49.572851613000118 ], [ -119.57550248099993, 49.572797696000059 ], [ -119.575459838999919, 49.572637267000111 ], [ -119.575226725, 49.571760217000048 ], [ -119.575155114999944, 49.571490795000088 ], [ -119.574930505999987, 49.570850251000067 ], [ -119.574664693999964, 49.570092095000064 ], [ -119.574457778999928, 49.56950200100006 ], [ -119.57443081699995, 49.569371957000065 ], [ -119.575675826999927, 49.569028671000076 ], [ -119.575701309999957, 49.569042681000013 ], [ -119.576684157999935, 49.569022785000058 ], [ -119.576712818999951, 49.569022201000088 ], [ -119.577223468999946, 49.569034357000071 ], [ -119.577502394999968, 49.569041014000085 ], [ -119.57782313, 49.569014820000149 ], [ -119.577849111999939, 49.5690126900001 ], [ -119.577945993999933, 49.568964305000073 ], [ -119.577987320999966, 49.568867398000073 ], [ -119.577753111000021, 49.568379302000025 ], [ -119.577839398999942, 49.567959792000075 ], [ -119.577927007999975, 49.567928895000101 ], [ -119.577810800999913, 49.567658863000098 ], [ -119.577585786999975, 49.567135900000046 ], [ -119.577285857999939, 49.566438773000101 ], [ -119.577247897999897, 49.566350535000048 ], [ -119.577045192999918, 49.565879407000111 ], [ -119.576715898999964, 49.565406168000067 ], [ -119.576413010999914, 49.564970855000077 ], [ -119.576111696999973, 49.564537793000142 ], [ -119.576086135999915, 49.564494815000089 ], [ -119.575390454999976, 49.563325484000089 ], [ -119.575379207999944, 49.563306597000043 ], [ -119.575368997999988, 49.563101800000055 ], [ -119.575420810999987, 49.562979286 ], [ -119.575622102999958, 49.562511597000054 ], [ -119.575653726, 49.562315601000122 ], [ -119.575629044999971, 49.562202048000046 ], [ -119.575592103999909, 49.562032009000077 ], [ -119.575549417999966, 49.561916412000109 ], [ -119.575516516999969, 49.561827241000096 ], [ -119.575048225999964, 49.560558451000112 ], [ -119.574653403999946, 49.559488573000046 ], [ -119.574560687999906, 49.559237403000026 ], [ -119.57450633599997, 49.559147346000046 ], [ -119.57443121099999, 49.559022888000072 ], [ -119.57425398799991, 49.55883169100008 ], [ -119.574029787999947, 49.558669397000081 ], [ -119.573369179999986, 49.558353799000052 ], [ -119.573275383999913, 49.558288831000034 ], [ -119.573135287999932, 49.558191798000117 ], [ -119.573128676999886, 49.558183776000156 ], [ -119.572731997999966, 49.557702717000105 ], [ -119.572121794999987, 49.557185901000082 ], [ -119.571736607999952, 49.556716785000063 ], [ -119.571523691999928, 49.556533501000025 ], [ -119.571390209999933, 49.556466010000051 ], [ -119.571083391999949, 49.556379102000115 ], [ -119.570603743999939, 49.556325464000132 ], [ -119.570430579999979, 49.55630610500009 ], [ -119.570171434999963, 49.556249712000067 ], [ -119.570157272999907, 49.555507595000073 ], [ -119.572329339999911, 49.555469545000101 ], [ -119.573792157999961, 49.555443880000034 ], [ -119.57440160699997, 49.555430139000087 ], [ -119.574383916, 49.55555672800007 ], [ -119.574434412999949, 49.555559721000066 ], [ -119.574452684000022, 49.55542898700002 ], [ -119.577379362999949, 49.555362949000063 ], [ -119.577829415999972, 49.555564599000043 ], [ -119.577922090999934, 49.555778297000053 ], [ -119.577161297999979, 49.556551587000079 ], [ -119.577053104999976, 49.556877793000062 ], [ -119.577177009999943, 49.557360601000035 ], [ -119.577445790999946, 49.557480198000107 ], [ -119.57808649499998, 49.558113987000063 ], [ -119.578097293, 49.558141984000031 ], [ -119.57769290499999, 49.558118028000102 ], [ -119.57755094099997, 49.559134270000122 ], [ -119.578360362999959, 49.559182219000078 ], [ -119.57842491199996, 49.559276086000118 ], [ -119.578477268999947, 49.559315918000102 ], [ -119.578413267000016, 49.559774122000043 ], [ -119.578836914999954, 49.559799215000076 ], [ -119.578873193999954, 49.560164802000074 ], [ -119.579049179999984, 49.560368501000056 ], [ -119.579067521999932, 49.560962404000058 ], [ -119.579350811999959, 49.56163030000009 ], [ -119.579598791999956, 49.562128799000071 ], [ -119.579682474999942, 49.56222059100002 ], [ -119.579562714999923, 49.563078071000106 ], [ -119.57972124199992, 49.563087459000073 ], [ -119.579666076999928, 49.563482440000016 ], [ -119.580211318999929, 49.563514726000079 ], [ -119.580212820999961, 49.563787999000049 ], [ -119.580318106, 49.563995689000087 ], [ -119.580266528, 49.56436501200006 ], [ -119.580484594999973, 49.564377923000094 ], [ -119.58051821299992, 49.564618297000109 ], [ -119.581345287999937, 49.565858810000073 ], [ -119.581703494999914, 49.56618431800009 ], [ -119.581583435999917, 49.567044134000113 ], [ -119.58214200899999, 49.567077196000099 ], [ -119.582157407999929, 49.567109290000097 ], [ -119.582423717999973, 49.56742690300014 ], [ -119.582533017999964, 49.567533530000077 ], [ -119.582343365999989, 49.56889185300011 ], [ -119.58351912799999, 49.568961433000034 ], [ -119.583858703999951, 49.569481996000043 ], [ -119.583864422999937, 49.569493632000061 ], [ -119.583637713999948, 49.571117626000024 ], [ -119.58450849899998, 49.571169145000098 ], [ -119.584285328999954, 49.572767895000041 ], [ -119.586120242999968, 49.572876434000115 ], [ -119.586190690999928, 49.573001202000079 ], [ -119.586367891999899, 49.573198519000073 ], [ -119.586232030999952, 49.574172056000101 ], [ -119.588029286999955, 49.57427833200007 ], [ -119.588097308999949, 49.574542211000029 ], [ -119.587904691999924, 49.574554989000056 ], [ -119.587851009999937, 49.574331408000084 ], [ -119.587560706999966, 49.574328584000064 ], [ -119.587542949999914, 49.57436244900007 ], [ -119.587498005999976, 49.574448192000027 ], [ -119.587605586999985, 49.574494555000115 ], [ -119.58769640499996, 49.574533688000123 ], [ -119.587730011999895, 49.574757045000077 ], [ -119.587654006999969, 49.575030237000085 ], [ -119.587655862999938, 49.575437527000112 ], [ -119.587924062999917, 49.576034816000075 ], [ -119.588289906999975, 49.576449062000044 ], [ -119.58901190499999, 49.577360526000049 ], [ -119.589155581999961, 49.577647059000107 ], [ -119.590178544, 49.579918621000047 ], [ -119.590313586999969, 49.580684828000059 ], [ -119.590194683999982, 49.581808483000081 ], [ -119.589395389999936, 49.581761246000042 ], [ -119.589243105999955, 49.58285276 ], [ -119.587527186999964, 49.582751333000076 ], [ -119.587525628999984, 49.582762500000072 ], [ -119.58737068, 49.58275334000006 ], [ -119.587214478999982, 49.58387254000008 ], [ -119.588886178999971, 49.583971355000124 ], [ -119.588741788999968, 49.585006151000094 ], [ -119.588386125999989, 49.587554866000133 ], [ -119.587195483999963, 49.587484490000101 ], [ -119.58702213199993, 49.588726412000106 ], [ -119.587698615999926, 49.588766399000065 ], [ -119.587844924999942, 49.587718105000107 ], [ -119.58977803799992, 49.587832349000038 ], [ -119.589876702999973, 49.58712518 ], [ -119.589287393999939, 49.58709035600009 ], [ -119.589536772999963, 49.585303046 ], [ -119.589787371999975, 49.583506839000073 ], [ -119.590102127999955, 49.583525439000098 ], [ -119.590170293999961, 49.584528285000061 ], [ -119.591476029999953, 49.58492785600005 ], [ -119.59262655199997, 49.585165723000017 ], [ -119.593301507999939, 49.585743008000044 ], [ -119.593355908000021, 49.585793876000039 ], [ -119.593974300999946, 49.586371935000074 ], [ -119.59529803199996, 49.586650778000063 ], [ -119.596352121999971, 49.586790386000104 ], [ -119.596652533999972, 49.586954289000097 ], [ -119.596690855999967, 49.587299568000091 ], [ -119.596063914999931, 49.587956759000058 ], [ -119.595563361999922, 49.588881567000058 ], [ -119.595370969999976, 49.589511491000046 ], [ -119.59531771199994, 49.589637407000026 ], [ -119.595304071999948, 49.589730519000071 ], [ -119.59524307099997, 49.589930238000065 ], [ -119.595328251999945, 49.590243915 ], [ -119.595425493999983, 49.590642902000141 ], [ -119.595749401999925, 49.591269350000104 ], [ -119.595903408999945, 49.591567188000027 ], [ -119.596377090999937, 49.591863513000142 ], [ -119.5965356829999, 49.591924529000011 ], [ -119.597195012000029, 49.592178206000071 ], [ -119.597817574999922, 49.592338270000077 ], [ -119.599226925999957, 49.592700614000101 ], [ -119.599222401999938, 49.592942792000031 ], [ -119.599179603999957, 49.593279902000084 ], [ -119.599169412, 49.593553255000081 ], [ -119.599153303999955, 49.593986500000085 ], [ -119.59915029699998, 49.594527092000043 ], [ -119.59914921499994, 49.594723296000019 ], [ -119.599115208999947, 49.595465606000104 ], [ -119.597398288999969, 49.595433002000071 ], [ -119.597403392999979, 49.595960682000062 ], [ -119.597403911999905, 49.596010488000076 ], [ -119.596128603999958, 49.596146599000093 ], [ -119.596091560999952, 49.596139239000109 ], [ -119.594707286999949, 49.595865797000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235212791", "BldgCostT": "153530870", "sL_LossRatio": "0.990614444017433", "sL_AssetLoss": "19373.708104", "sL_BldgLoss": "19191.875082", "sL_StrLoss": "19123.957842", "sL_NStrLoss": "67.91724", "sL_ContLoss": "181.833022", "geom_point": "0101000020E61000009FBDF92EE1E55DC0F3BE64C2B3CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.585006226999937, 49.603173493000099 ], [ -119.583502479999964, 49.602235229000044 ], [ -119.581815960999933, 49.601182859000112 ], [ -119.581444453999964, 49.600811371000049 ], [ -119.581338766, 49.600583793000048 ], [ -119.58131352799991, 49.600456381000164 ], [ -119.581222962999945, 49.599999431000086 ], [ -119.581118104, 49.599470608000026 ], [ -119.583991004999987, 49.599676589000076 ], [ -119.584182316999943, 49.599629200000109 ], [ -119.584219438999938, 49.599590131000127 ], [ -119.584434489999964, 49.599364097000084 ], [ -119.584504784999936, 49.59932759900007 ], [ -119.58462509499995, 49.599321209000024 ], [ -119.584692608999902, 49.599076799000017 ], [ -119.585050708999972, 49.598659892000093 ], [ -119.585357910999974, 49.598438681000118 ], [ -119.586548600999961, 49.597795502000103 ], [ -119.586630993999975, 49.597673002000086 ], [ -119.586672074999953, 49.597322185000067 ], [ -119.586686782999962, 49.597196456000056 ], [ -119.586738449999984, 49.59675490100004 ], [ -119.586753207999962, 49.596628816000063 ], [ -119.586752154999957, 49.59661947900009 ], [ -119.58673349599999, 49.596451505000076 ], [ -119.58658440499994, 49.596296399000039 ], [ -119.586434679999911, 49.596230980000051 ], [ -119.586058413999979, 49.596066587000045 ], [ -119.585894193999977, 49.59595031300011 ], [ -119.585746709999938, 49.595485399000061 ], [ -119.585853108999956, 49.595270401000086 ], [ -119.58864790299999, 49.59530740600011 ], [ -119.58939920099999, 49.595325594000059 ], [ -119.589400599999948, 49.594589492000075 ], [ -119.589436512999939, 49.594511734000044 ], [ -119.589480182999949, 49.594417111000055 ], [ -119.58967010299996, 49.594199796000083 ], [ -119.590106702, 49.593936600000077 ], [ -119.590257121999954, 49.59380369600008 ], [ -119.590435089999957, 49.593423103000077 ], [ -119.590509907999959, 49.593105889000071 ], [ -119.592691697999925, 49.593118286000049 ], [ -119.592707811999944, 49.593182482000039 ], [ -119.592958618999916, 49.593215298000089 ], [ -119.593134501999913, 49.593298008000041 ], [ -119.593550512999968, 49.593679295000115 ], [ -119.593645916999918, 49.593811397000096 ], [ -119.593674996999965, 49.593951311000076 ], [ -119.593668451999989, 49.594091815000141 ], [ -119.593661259999948, 49.594245439000083 ], [ -119.593646991999918, 49.594550293000054 ], [ -119.59360811099999, 49.595376302000034 ], [ -119.594711599999982, 49.595387311000074 ], [ -119.594707286999949, 49.595865797000016 ], [ -119.596091560999952, 49.596139239000109 ], [ -119.596128603999958, 49.596146599000093 ], [ -119.597403911999905, 49.596010488000076 ], [ -119.597403392999979, 49.595960682000062 ], [ -119.597398288999969, 49.595433002000071 ], [ -119.599115208999947, 49.595465606000104 ], [ -119.59914921499994, 49.594723296000019 ], [ -119.59915029699998, 49.594527092000043 ], [ -119.599153303999955, 49.593986500000085 ], [ -119.600004756999965, 49.594002445000072 ], [ -119.600386911, 49.594009609000075 ], [ -119.600386671999971, 49.594224050000079 ], [ -119.60110849299997, 49.594260788000078 ], [ -119.601202300999915, 49.594374711000043 ], [ -119.601359912999939, 49.594767901000104 ], [ -119.601562499999929, 49.594987610000075 ], [ -119.601961331999945, 49.595565203000014 ], [ -119.602020197999977, 49.595650428000063 ], [ -119.602055957999966, 49.595702202000105 ], [ -119.602188593999969, 49.595894297000072 ], [ -119.602389522999957, 49.596263892000081 ], [ -119.602417381999942, 49.596315190000105 ], [ -119.602963507999945, 49.596829686000056 ], [ -119.602981010999912, 49.596962606000041 ], [ -119.603004017, 49.59711661100004 ], [ -119.602968603999955, 49.597739588000167 ], [ -119.602943808999953, 49.598266492000107 ], [ -119.602888813999925, 49.598362601000098 ], [ -119.602782326999943, 49.598459303000062 ], [ -119.602704223999979, 49.598503611000076 ], [ -119.601497915999985, 49.599188404000124 ], [ -119.600192194999948, 49.599910690000101 ], [ -119.600000684999941, 49.599910198000067 ], [ -119.598989004999979, 49.599907513000076 ], [ -119.599019195999958, 49.599411596000031 ], [ -119.598766610999945, 49.599680299000042 ], [ -119.598318711999937, 49.600006126000046 ], [ -119.598167094999908, 49.600116402 ], [ -119.598084605999986, 49.600168194000048 ], [ -119.596724302000013, 49.600089088000075 ], [ -119.595981315999964, 49.600668509000116 ], [ -119.595781973, 49.600771413000096 ], [ -119.59534771700001, 49.601334296000047 ], [ -119.597076314999981, 49.600993646000127 ], [ -119.596833501999981, 49.601277899000117 ], [ -119.596683589999927, 49.601546408000054 ], [ -119.596631111999926, 49.601524292000114 ], [ -119.596567410999953, 49.601543096000128 ], [ -119.596535912999983, 49.60163969400007 ], [ -119.595944091999939, 49.602378902000098 ], [ -119.595812406999926, 49.602447005000016 ], [ -119.595372638, 49.602572224000042 ], [ -119.595179205999912, 49.602627293000097 ], [ -119.594399482999961, 49.602692301000062 ], [ -119.593727207999947, 49.602634593000118 ], [ -119.593280690999947, 49.602650697000108 ], [ -119.592720780999969, 49.602613104000056 ], [ -119.592577797999979, 49.602643493000144 ], [ -119.592458406999953, 49.60272320600005 ], [ -119.592372300999969, 49.602852718000044 ], [ -119.592308098999936, 49.603153294000094 ], [ -119.592193099999989, 49.603231393000023 ], [ -119.591914982999967, 49.60321409500007 ], [ -119.591492935999952, 49.603081703000043 ], [ -119.591159510999915, 49.602977103000065 ], [ -119.590841495999896, 49.602917601000058 ], [ -119.590468188999949, 49.602936214000032 ], [ -119.590223700999957, 49.6029968120001 ], [ -119.590169613999947, 49.603085696000022 ], [ -119.590426611999959, 49.603502807000076 ], [ -119.590713825999956, 49.604282066000096 ], [ -119.590744813999933, 49.604366106000029 ], [ -119.590866717999972, 49.605204296000082 ], [ -119.590962308, 49.605484593000128 ], [ -119.588768917999971, 49.606475893000066 ], [ -119.58847398099999, 49.606578591000137 ], [ -119.588075887999963, 49.606665299000049 ], [ -119.588004896999948, 49.606557208000027 ], [ -119.587541906999931, 49.606196606000047 ], [ -119.58737500699999, 49.606066586000118 ], [ -119.587107985999921, 49.605671502000092 ], [ -119.58695577899999, 49.605518801000088 ], [ -119.586718681999912, 49.605346800000071 ], [ -119.586015492999977, 49.604943889000026 ], [ -119.58590214299997, 49.604848761000085 ], [ -119.585744580999943, 49.604716512000039 ], [ -119.585710725999945, 49.604673162000061 ], [ -119.585615010999916, 49.604550798000105 ], [ -119.585217396999951, 49.603520200000069 ], [ -119.585155945999986, 49.603419308000085 ], [ -119.585006226999937, 49.603173493000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94915917", "BldgCostT": "62456667", "sL_LossRatio": "0.995133434828577", "sL_AssetLoss": "13007.120581", "sL_BldgLoss": "12943.820581", "sL_StrLoss": "12921.000581", "sL_NStrLoss": "22.82", "sL_ContLoss": "63.3", "geom_point": "0101000020E6100000E1FAE218EAE35DC08FA152DBBCC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.562106747, 49.555576102000053 ], [ -119.562289659999962, 49.554269782000027 ], [ -119.561875363999931, 49.554245176000087 ], [ -119.562158025999921, 49.552226449000088 ], [ -119.558070176999976, 49.551983577000058 ], [ -119.558572202000022, 49.548400022000095 ], [ -119.560009865999959, 49.548485456000044 ], [ -119.560216207999986, 49.547012055000039 ], [ -119.565448389999958, 49.547322819000037 ], [ -119.565518073999968, 49.546824812000111 ], [ -119.564402340999962, 49.546758564000108 ], [ -119.564698778999968, 49.544640248000036 ], [ -119.564180372999971, 49.544609463 ], [ -119.564241390999911, 49.54417344900007 ], [ -119.563787779, 49.544146509000015 ], [ -119.563413855999954, 49.546818156000072 ], [ -119.557912429999988, 49.546491285000059 ], [ -119.558374233999942, 49.543194510000056 ], [ -119.556795611000013, 49.543100663000168 ], [ -119.55729763799998, 49.539517067000062 ], [ -119.558240297999987, 49.53957311000012 ], [ -119.558422192999913, 49.538274365000092 ], [ -119.556861531999957, 49.538181576000078 ], [ -119.557008930999956, 49.537129340000021 ], [ -119.551641337999982, 49.536810034000098 ], [ -119.552143695999959, 49.533226429000059 ], [ -119.555093508999946, 49.533401942000097 ], [ -119.555580629999966, 49.529924900000012 ], [ -119.556192229999979, 49.529961279000119 ], [ -119.55647735, 49.527925656000086 ], [ -119.555097144999976, 49.527843552000078 ], [ -119.555599135999927, 49.524259885000014 ], [ -119.556818263999958, 49.524332407000053 ], [ -119.556823147999964, 49.524297525000108 ], [ -119.554592965, 49.524164846000033 ], [ -119.554643787999936, 49.523802056000115 ], [ -119.554371281999963, 49.523785841000056 ], [ -119.554703562999947, 49.52141383000005 ], [ -119.551579249999946, 49.521227870000097 ], [ -119.551732150999968, 49.520136822000069 ], [ -119.550956398999986, 49.520090635000095 ], [ -119.550758048999938, 49.521505818000058 ], [ -119.549629830999962, 49.52143863600007 ], [ -119.54950919399991, 49.522299161000099 ], [ -119.549646410999941, 49.522296136000129 ], [ -119.549660436999943, 49.522565713000112 ], [ -119.550074538000018, 49.52255658100011 ], [ -119.550144683999946, 49.523904462000061 ], [ -119.548488234999937, 49.523940983000031 ], [ -119.548558339999957, 49.525288865000093 ], [ -119.547315964999953, 49.525316242000088 ], [ -119.547287935999975, 49.5247770880001 ], [ -119.54604557299993, 49.524804449000086 ], [ -119.54603156599994, 49.524534871000114 ], [ -119.544579026999912, 49.524566846000049 ], [ -119.544375087999953, 49.524571334000065 ], [ -119.544362600999989, 49.524330830000125 ], [ -119.544361090999985, 49.524301756000028 ], [ -119.544342851999957, 49.524302158000097 ], [ -119.543946972999919, 49.524310869000026 ], [ -119.543889861999943, 49.523210782000028 ], [ -119.543837348999929, 49.523207652000096 ], [ -119.543875561999968, 49.52293532 ], [ -119.54386300199991, 49.522693402000094 ], [ -119.543909650999964, 49.52269237600008 ], [ -119.544224210999914, 49.52045047900004 ], [ -119.544288245999923, 49.519994068000095 ], [ -119.54473849699994, 49.519872509000045 ], [ -119.545107409999972, 49.519722795000071 ], [ -119.545175320999974, 49.519673788000048 ], [ -119.545468328999945, 49.519691249000061 ], [ -119.545511019999964, 49.519386915000034 ], [ -119.545595201999959, 49.519298405000065 ], [ -119.545728611, 49.519068809000046 ], [ -119.545802282999915, 49.518770518000075 ], [ -119.545815391999938, 49.518529192000081 ], [ -119.545912003999959, 49.518384108000092 ], [ -119.546055294999974, 49.518300487000083 ], [ -119.546270285999981, 49.518289804000069 ], [ -119.546449414, 49.518346491000088 ], [ -119.546577088999982, 49.518454401000064 ], [ -119.547094796999914, 49.51922969600006 ], [ -119.54719089699995, 49.519285994000036 ], [ -119.547334508999924, 49.519298985 ], [ -119.547431894999988, 49.51924699900006 ], [ -119.54770397599999, 49.518740133000023 ], [ -119.54801360099998, 49.518163311000094 ], [ -119.548085640999943, 49.51780487700006 ], [ -119.548099914999938, 49.51773391400009 ], [ -119.549395689999955, 49.517811098000024 ], [ -119.549669041999891, 49.515861024000039 ], [ -119.552453014, 49.516026801000102 ], [ -119.552534103999946, 49.515448027000105 ], [ -119.551735633999897, 49.515400487000058 ], [ -119.551810009999969, 49.514869684000089 ], [ -119.551883212999897, 49.514809912000089 ], [ -119.552244180999963, 49.514429390000018 ], [ -119.552434027999979, 49.514024205000105 ], [ -119.552596987999948, 49.513899300000027 ], [ -119.55279848899994, 49.513816517000095 ], [ -119.55322894299999, 49.513709659000071 ], [ -119.553649900999972, 49.513605191000096 ], [ -119.553934418999972, 49.513502890000019 ], [ -119.554163198999944, 49.51334391400011 ], [ -119.554539133999981, 49.512997081000016 ], [ -119.554841083999946, 49.512718493000136 ], [ -119.555240497999975, 49.512429692000111 ], [ -119.556043243999909, 49.511981931000058 ], [ -119.556154590999967, 49.511919797000097 ], [ -119.556572303999985, 49.511686789000159 ], [ -119.55684228199999, 49.511608890000083 ], [ -119.557048713999976, 49.511589607000111 ], [ -119.557651616999948, 49.511594260000045 ], [ -119.55879430799996, 49.511603083000082 ], [ -119.558977173999949, 49.511652791000103 ], [ -119.559057169999946, 49.511716195000105 ], [ -119.559385088999989, 49.511976096000062 ], [ -119.559635291999911, 49.512049692000069 ], [ -119.559955508999963, 49.512068783000075 ], [ -119.562250849999913, 49.512100018000119 ], [ -119.56321653199997, 49.51211310200005 ], [ -119.564269509999988, 49.51212741100003 ], [ -119.565014107999957, 49.513323505000145 ], [ -119.565213609999958, 49.513502389000145 ], [ -119.56528111599998, 49.513614005000079 ], [ -119.565996900999963, 49.51362850900005 ], [ -119.566772812999929, 49.51348119700004 ], [ -119.567215998999956, 49.513452001000118 ], [ -119.567342, 49.513443693000056 ], [ -119.567982704999977, 49.513479905000068 ], [ -119.570945905999977, 49.513745284000059 ], [ -119.57103389, 49.513730691000063 ], [ -119.571100290999979, 49.513721103000165 ], [ -119.57117861099999, 49.513647178000021 ], [ -119.571451511999967, 49.51338960200011 ], [ -119.57179159699993, 49.51283968500006 ], [ -119.571999238999965, 49.51233458400003 ], [ -119.57228274699996, 49.511644837000098 ], [ -119.572385719999929, 49.511394402000043 ], [ -119.572485839999914, 49.511099776000023 ], [ -119.572533817999926, 49.510958702000025 ], [ -119.572545274, 49.510884509000057 ], [ -119.572577562999982, 49.510675794000065 ], [ -119.572665344999905, 49.510108923000068 ], [ -119.572845689999937, 49.508943700000032 ], [ -119.575490724999952, 49.509117752000058 ], [ -119.576062673999914, 49.509155397000072 ], [ -119.575668991999933, 49.509613508000022 ], [ -119.575499204999957, 49.509781600000125 ], [ -119.575472642999941, 49.509807877000043 ], [ -119.575024725999938, 49.510251304000064 ], [ -119.575012902999973, 49.510263006000052 ], [ -119.57494148399995, 49.510407812000018 ], [ -119.574905535999946, 49.510616760000104 ], [ -119.574867906999927, 49.510835190000137 ], [ -119.574876581999916, 49.510991095000051 ], [ -119.574974702999924, 49.511211992000014 ], [ -119.575033823999902, 49.51128756500006 ], [ -119.575454541999989, 49.511825257000034 ], [ -119.575541677999979, 49.511936603000052 ], [ -119.575603351999931, 49.512015435000087 ], [ -119.575853094999943, 49.51233460700012 ], [ -119.575962297999965, 49.512594905000078 ], [ -119.575954185999962, 49.512827418000086 ], [ -119.575947657999947, 49.513013655000101 ], [ -119.575943767999945, 49.51312459500005 ], [ -119.575919526999883, 49.51381867100006 ], [ -119.575906644, 49.51418712 ], [ -119.575895082999978, 49.51451746500004 ], [ -119.575889, 49.514691701000075 ], [ -119.575861678999942, 49.51547291100006 ], [ -119.575860318999929, 49.515511935000099 ], [ -119.575848405999977, 49.515852894000048 ], [ -119.575803335999964, 49.516240555000188 ], [ -119.57573141499995, 49.516859595000071 ], [ -119.575666812999884, 49.517123993000077 ], [ -119.575271847999915, 49.518156189000088 ], [ -119.57518616599998, 49.518380129000072 ], [ -119.575099488999953, 49.518606641000105 ], [ -119.574755997999929, 49.519504216000058 ], [ -119.574248362999953, 49.520830781000043 ], [ -119.57422648, 49.520887892000076 ], [ -119.574123497, 49.521079596000099 ], [ -119.573864698999927, 49.521215985000055 ], [ -119.573766981999952, 49.521250902000112 ], [ -119.573545408999934, 49.521269290000092 ], [ -119.573227371999977, 49.521214296000046 ], [ -119.57304057499999, 49.521144494000069 ], [ -119.571870616999959, 49.520707388000048 ], [ -119.571152695999956, 49.520439010000075 ], [ -119.570807605999946, 49.520327053000045 ], [ -119.569840738999943, 49.520013344000098 ], [ -119.569469872999903, 49.519893010000018 ], [ -119.569223574999967, 49.519813095000146 ], [ -119.565507337999946, 49.518696279000075 ], [ -119.564058556999939, 49.51941406300012 ], [ -119.563972025999988, 49.519456937000101 ], [ -119.563244518999937, 49.521510414 ], [ -119.563365805999979, 49.523090639000081 ], [ -119.563800709999967, 49.524129891000051 ], [ -119.564526522, 49.524808306000111 ], [ -119.565596624999941, 49.525808450000085 ], [ -119.565671639999934, 49.525906816 ], [ -119.565786401000011, 49.526057306000048 ], [ -119.565844118999962, 49.526432353000153 ], [ -119.56605585699999, 49.527807773000099 ], [ -119.565920983999945, 49.527919910000051 ], [ -119.564472625999912, 49.527892081000068 ], [ -119.56273124799999, 49.527858596000037 ], [ -119.562371243999976, 49.527851693000059 ], [ -119.561987694999956, 49.527844312000049 ], [ -119.560626892, 49.527841101000035 ], [ -119.560954616999979, 49.528698886000093 ], [ -119.560998824999956, 49.528856380000036 ], [ -119.561406170999987, 49.530306096000082 ], [ -119.561551277999939, 49.530822635000106 ], [ -119.561610534999957, 49.531041581000046 ], [ -119.561767721999942, 49.531591800000051 ], [ -119.561821788999936, 49.531784012000053 ], [ -119.561921777999942, 49.532485497000053 ], [ -119.561983024999947, 49.532897267000052 ], [ -119.562041789999967, 49.533292498000037 ], [ -119.562061116999942, 49.53342249300006 ], [ -119.562098465999952, 49.533677119000096 ], [ -119.562188017999972, 49.534287344000127 ], [ -119.562258969999959, 49.534770846000114 ], [ -119.562332317999932, 49.535270573000048 ], [ -119.562362713999988, 49.535477508000035 ], [ -119.562421863999973, 49.535600049000095 ], [ -119.562490607999933, 49.535742483 ], [ -119.562747371999976, 49.536131347000023 ], [ -119.562788003999941, 49.536192890000031 ], [ -119.563034326000022, 49.536568479000096 ], [ -119.563099556999958, 49.536667914000077 ], [ -119.563614178999927, 49.537452502000122 ], [ -119.563739190999939, 49.537827605000082 ], [ -119.5641199, 49.539308189000039 ], [ -119.564216232999954, 49.539678008000031 ], [ -119.564378569999974, 49.540301257000088 ], [ -119.564395023999921, 49.540364303000075 ], [ -119.564563290999928, 49.540658005000118 ], [ -119.564677176999965, 49.540751514000092 ], [ -119.564717493999979, 49.540784594000037 ], [ -119.565771012999903, 49.54148128900006 ], [ -119.566139579999941, 49.541681102000084 ], [ -119.56690367499999, 49.542156494000075 ], [ -119.567860815999964, 49.54275276100001 ], [ -119.567947108999988, 49.542806500000076 ], [ -119.568429686999977, 49.543143199000021 ], [ -119.568543979999944, 49.543267393000143 ], [ -119.569066228999972, 49.54420693 ], [ -119.569164501000031, 49.544383705000051 ], [ -119.569780095999974, 49.545495217000052 ], [ -119.569832887999965, 49.545734629000073 ], [ -119.56984971199995, 49.54581099500011 ], [ -119.56971540499994, 49.546126395000066 ], [ -119.56946743499995, 49.54651618900008 ], [ -119.56935153699996, 49.546698386000074 ], [ -119.568977816999933, 49.54728590700006 ], [ -119.568913311999893, 49.547498909000097 ], [ -119.56890469399994, 49.547708904000032 ], [ -119.56899683599994, 49.548046484000039 ], [ -119.569010210999977, 49.54809538800005 ], [ -119.569723922999955, 49.550052800000067 ], [ -119.569764419999927, 49.550417494000058 ], [ -119.569780909999963, 49.550876514000151 ], [ -119.569817739999948, 49.551901711 ], [ -119.56982611399998, 49.552135216000046 ], [ -119.569826515999949, 49.552145600000053 ], [ -119.569903005999919, 49.552647560000011 ], [ -119.570022497999929, 49.553431804000091 ], [ -119.569963581999957, 49.553743605000101 ], [ -119.569631888999979, 49.554508899000055 ], [ -119.569616635999949, 49.554550911000092 ], [ -119.569435694999967, 49.555049206000035 ], [ -119.569436933999981, 49.555193782000039 ], [ -119.56943718799999, 49.555226415000028 ], [ -119.569532284999966, 49.555517885000064 ], [ -119.56712191099993, 49.555565825000087 ], [ -119.563847404999962, 49.555572570000031 ], [ -119.562106747, 49.555576102000053 ] ], [ [ -119.566180399999894, 49.550887440000118 ], [ -119.566186429999945, 49.550844348000098 ], [ -119.56591849199999, 49.550828444000039 ], [ -119.565912461999929, 49.550871535000056 ], [ -119.566180399999894, 49.550887440000118 ] ], [ [ -119.56061884499999, 49.53479147700007 ], [ -119.56065983099991, 49.534498702000064 ], [ -119.55784901899996, 49.534331612000109 ], [ -119.557940452999901, 49.53367874 ], [ -119.557628570999924, 49.533660195000088 ], [ -119.557496128999958, 49.53460584000004 ], [ -119.56061884499999, 49.53479147700007 ] ], [ [ -119.561057580999915, 49.521754515000055 ], [ -119.561194378999943, 49.520776944000033 ], [ -119.561020042999985, 49.520766580000021 ], [ -119.560883240999942, 49.521744151000036 ], [ -119.561057580999915, 49.521754515000055 ] ], [ [ -119.571803739999964, 49.518278229 ], [ -119.571838280999927, 49.518030956000096 ], [ -119.57128068499992, 49.517997861000048 ], [ -119.571246139999957, 49.518245134000082 ], [ -119.571803739999964, 49.518278229 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12002500", "BldgCostT": "7750000", "sL_LossRatio": "1", "sL_AssetLoss": "2058", "sL_BldgLoss": "2058", "sL_StrLoss": "2058", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BEB62341DDE25DC0440456ED1EC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.543563629999952, 49.535592938000072 ], [ -119.543901861999984, 49.533183161000053 ], [ -119.542748959, 49.533114453000117 ], [ -119.541814867999975, 49.533058776000146 ], [ -119.541658694999938, 49.525987711000049 ], [ -119.545664877999982, 49.526226487000081 ], [ -119.54699240399999, 49.526305576 ], [ -119.546555244000032, 49.529422112000056 ], [ -119.546717715999975, 49.529431790000082 ], [ -119.546221245999959, 49.532970720000023 ], [ -119.549450363999966, 49.53316302400011 ], [ -119.548947796999983, 49.536746617000048 ], [ -119.544324261999961, 49.536471241000079 ], [ -119.543937218999929, 49.539228725 ], [ -119.542231971999939, 49.539127111000134 ], [ -119.542086190999967, 49.540165365000099 ], [ -119.542044878999931, 49.540162904000049 ], [ -119.541961634999922, 49.537644297000035 ], [ -119.541890529999989, 49.535493225000074 ], [ -119.543563629999952, 49.535592938000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "120.3", "sL_BldgLoss": "120.3", "sL_StrLoss": "120.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000358DD41800E35DC0EB325FD256C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545511019999964, 49.519386915000034 ], [ -119.545762412999963, 49.517594639000023 ], [ -119.548099914999938, 49.51773391400009 ], [ -119.548085640999943, 49.51780487700006 ], [ -119.54801360099998, 49.518163311000094 ], [ -119.54770397599999, 49.518740133000023 ], [ -119.547431894999988, 49.51924699900006 ], [ -119.547334508999924, 49.519298985 ], [ -119.54719089699995, 49.519285994000036 ], [ -119.547094796999914, 49.51922969600006 ], [ -119.546577088999982, 49.518454401000064 ], [ -119.546449414, 49.518346491000088 ], [ -119.546270285999981, 49.518289804000069 ], [ -119.546055294999974, 49.518300487000083 ], [ -119.545912003999959, 49.518384108000092 ], [ -119.545815391999938, 49.518529192000081 ], [ -119.545802282999915, 49.518770518000075 ], [ -119.545728611, 49.519068809000046 ], [ -119.545595201999959, 49.519298405000065 ], [ -119.545511019999964, 49.519386915000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "265414167", "BldgCostT": "178646667", "sL_LossRatio": "0.997730007544154", "sL_AssetLoss": "19030.900252", "sL_BldgLoss": "18987.700252", "sL_StrLoss": "18972.100252", "sL_NStrLoss": "15.6", "sL_ContLoss": "43.2", "geom_point": "0101000020E6100000E0DE90A1FEE35DC0E3F5BB0BEFBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.551810009999969, 49.514869684000089 ], [ -119.551945248999971, 49.513904493000027 ], [ -119.551409320999966, 49.513872583000079 ], [ -119.551911447999942, 49.51028885900007 ], [ -119.55584705699998, 49.510523140000082 ], [ -119.55590248799993, 49.510127251000043 ], [ -119.556921589999916, 49.510187893000143 ], [ -119.557242452, 49.507895776000034 ], [ -119.55745106199997, 49.507908188000066 ], [ -119.557499059999913, 49.507565280000023 ], [ -119.557812522999953, 49.507583930000067 ], [ -119.558238590999963, 49.504539589000082 ], [ -119.558239035999989, 49.504539615000105 ], [ -119.558399369999904, 49.503393897000073 ], [ -119.557809230999951, 49.503358785000046 ], [ -119.558310745999975, 49.499774977000058 ], [ -119.55926631199999, 49.499831831000073 ], [ -119.559598116999936, 49.497460100000104 ], [ -119.560296887999968, 49.497501670000091 ], [ -119.560357741999923, 49.49706662000014 ], [ -119.559028386999955, 49.496987533000024 ], [ -119.559457619999961, 49.49391925200004 ], [ -119.55933319799999, 49.493911849000064 ], [ -119.559559783999973, 49.492292004000085 ], [ -119.557236897999957, 49.492153766000101 ], [ -119.557062895999948, 49.493397254000072 ], [ -119.553423116999923, 49.493180544000055 ], [ -119.553124230999956, 49.495315138000109 ], [ -119.547629014999956, 49.494987722000069 ], [ -119.547768780999931, 49.493990408000059 ], [ -119.547959916999957, 49.493946199000071 ], [ -119.54798531699997, 49.493864994000035 ], [ -119.547935902999981, 49.493862377 ], [ -119.548363472999966, 49.49371300500006 ], [ -119.54874840899997, 49.493578573000057 ], [ -119.549203273999979, 49.493481374000041 ], [ -119.549552736999942, 49.493365742000066 ], [ -119.549827966999942, 49.49323274100005 ], [ -119.550245149999938, 49.492965121000047 ], [ -119.550686297999974, 49.492802383000061 ], [ -119.55114150199995, 49.492672455000076 ], [ -119.551316091, 49.492628912000093 ], [ -119.55142110099996, 49.492660402000077 ], [ -119.551570496999958, 49.492612397000073 ], [ -119.551633700999915, 49.492478013000067 ], [ -119.551706713999963, 49.492430806000115 ], [ -119.551987099999963, 49.492338184000062 ], [ -119.552379792999972, 49.492144813000046 ], [ -119.55255809499999, 49.492009113000101 ], [ -119.552765295999961, 49.49179548700004 ], [ -119.553081922999979, 49.491266005000035 ], [ -119.553227174999947, 49.491088598000033 ], [ -119.553986312999911, 49.490475185000129 ], [ -119.554444420999985, 49.49019079300011 ], [ -119.555255917999901, 49.489904783000092 ], [ -119.55690218299999, 49.489374904000059 ], [ -119.558139959999934, 49.489140375000026 ], [ -119.559296702999973, 49.488921184000048 ], [ -119.559947407999942, 49.488874110000097 ], [ -119.56029861199994, 49.488887785000038 ], [ -119.560555913, 49.488930199000073 ], [ -119.560910490999944, 49.489038906000076 ], [ -119.56216190799995, 49.489558685000084 ], [ -119.562596096999954, 49.489860986000117 ], [ -119.562768075999941, 49.490117 ], [ -119.563058100999939, 49.490400711000049 ], [ -119.563202802999939, 49.49044059800007 ], [ -119.563371488999934, 49.490487098000116 ], [ -119.563715604, 49.490483185000123 ], [ -119.564138305999933, 49.490428657000088 ], [ -119.564630991999948, 49.490365096000083 ], [ -119.566319519999951, 49.490156472000116 ], [ -119.568421137999977, 49.489915482000072 ], [ -119.568394532999946, 49.49033175700005 ], [ -119.568368585999949, 49.490738096 ], [ -119.568387834999925, 49.491846016000117 ], [ -119.568355242999928, 49.49243809500004 ], [ -119.568404092999941, 49.493101725000017 ], [ -119.568408758999922, 49.492929445000101 ], [ -119.568516915000018, 49.492941571000074 ], [ -119.569884429999945, 49.493094816000045 ], [ -119.570690704999919, 49.493074055000079 ], [ -119.572035613999972, 49.493213545000053 ], [ -119.572447936999964, 49.49326691400011 ], [ -119.572826221999946, 49.493275812000086 ], [ -119.573630405999964, 49.493131202000072 ], [ -119.574754895999945, 49.492884395000104 ], [ -119.575117369999958, 49.492804675000087 ], [ -119.575324010999935, 49.492759200000059 ], [ -119.575358399999942, 49.492751640000094 ], [ -119.575543053000033, 49.492711012000086 ], [ -119.57556079199999, 49.492707111000058 ], [ -119.57667268199999, 49.492462504000031 ], [ -119.577934311999968, 49.492185990000074 ], [ -119.578534399999938, 49.492054502000045 ], [ -119.579276902999965, 49.493514086000111 ], [ -119.5794155299999, 49.493731902000057 ], [ -119.579697686000017, 49.493963686000043 ], [ -119.580389101999927, 49.494300106000047 ], [ -119.580680393999941, 49.494525202000133 ], [ -119.581004194999977, 49.494826209000081 ], [ -119.580817281999927, 49.494864179000089 ], [ -119.580794366999925, 49.494868828000051 ], [ -119.580573407999964, 49.494913746000044 ], [ -119.580518677999933, 49.494924862000069 ], [ -119.580505195999976, 49.494927587000099 ], [ -119.580204392999988, 49.494998305000053 ], [ -119.579676098999968, 49.495121510000054 ], [ -119.57953960499999, 49.495126901000049 ], [ -119.579379394999989, 49.49506410500004 ], [ -119.577727810999974, 49.494133195000053 ], [ -119.577340404000012, 49.493980986000068 ], [ -119.577027787999924, 49.493924287000084 ], [ -119.576333890999976, 49.49379840400006 ], [ -119.57511850399996, 49.493723597000091 ], [ -119.574913408999919, 49.493763805000086 ], [ -119.574706577999962, 49.493856292000039 ], [ -119.574482691999947, 49.494011096000101 ], [ -119.574445279999935, 49.494081091000076 ], [ -119.574431496999949, 49.494457903000132 ], [ -119.57442949299994, 49.49473970400004 ], [ -119.5744291889999, 49.495387410000021 ], [ -119.573237717999987, 49.495369107000059 ], [ -119.572085703999946, 49.495354896000102 ], [ -119.571979218999928, 49.495383797000059 ], [ -119.571966039999936, 49.495413114000016 ], [ -119.571912882999982, 49.495531598000063 ], [ -119.57188198599999, 49.496615703000053 ], [ -119.571922590999975, 49.496725239000149 ], [ -119.571933295999955, 49.496754187000136 ], [ -119.572058098999946, 49.496803196 ], [ -119.572430505999975, 49.496883979000096 ], [ -119.573714379999942, 49.496935899000064 ], [ -119.574298805999931, 49.496996804000069 ], [ -119.574249000999913, 49.497849302000098 ], [ -119.572470680999956, 49.497787119000115 ], [ -119.572211983999935, 49.497754592000092 ], [ -119.571737081999984, 49.497630295000079 ], [ -119.569567700999983, 49.497062480000103 ], [ -119.568425882999961, 49.496763626000131 ], [ -119.568292572999979, 49.496755713000034 ], [ -119.567041568999983, 49.496815975000032 ], [ -119.566793337999925, 49.496996352000053 ], [ -119.566703331999975, 49.497224102000075 ], [ -119.566728224999977, 49.497511961000029 ], [ -119.566987634999947, 49.49812248900006 ], [ -119.567020820999957, 49.498200548000035 ], [ -119.567086776999986, 49.49835571400007 ], [ -119.567380846999967, 49.499047690000104 ], [ -119.567552885999945, 49.499670424000065 ], [ -119.567580684999925, 49.499997547000099 ], [ -119.567582765999958, 49.500021813000089 ], [ -119.5675681, 49.500215125000111 ], [ -119.567560771999965, 49.500312247000117 ], [ -119.567490323999948, 49.501242702000049 ], [ -119.567446794999967, 49.501817813000088 ], [ -119.567379226999932, 49.502077346000114 ], [ -119.567371994999945, 49.502105172000029 ], [ -119.567315749999963, 49.502211127000059 ], [ -119.567255773999989, 49.502324063000081 ], [ -119.567159491999988, 49.502505402000054 ], [ -119.567031614999976, 49.502825736000069 ], [ -119.56701409099999, 49.503030673000104 ], [ -119.567045336999954, 49.503276786000043 ], [ -119.567081345999952, 49.503560433000061 ], [ -119.567033926999954, 49.503780759000136 ], [ -119.566841389, 49.504296015000108 ], [ -119.56652248099999, 49.505061196000085 ], [ -119.565404203999947, 49.506984895000123 ], [ -119.565243923999944, 49.5074678 ], [ -119.565101211999931, 49.50815017700009 ], [ -119.564774433999929, 49.509712920000077 ], [ -119.564539252999978, 49.510837585000047 ], [ -119.564314084999964, 49.511914108000042 ], [ -119.564269509999988, 49.51212741100003 ], [ -119.56321653199997, 49.51211310200005 ], [ -119.562250849999913, 49.512100018000119 ], [ -119.559955508999963, 49.512068783000075 ], [ -119.559635291999911, 49.512049692000069 ], [ -119.559385088999989, 49.511976096000062 ], [ -119.559057169999946, 49.511716195000105 ], [ -119.558977173999949, 49.511652791000103 ], [ -119.55879430799996, 49.511603083000082 ], [ -119.557651616999948, 49.511594260000045 ], [ -119.557048713999976, 49.511589607000111 ], [ -119.55684228199999, 49.511608890000083 ], [ -119.556572303999985, 49.511686789000159 ], [ -119.556154590999967, 49.511919797000097 ], [ -119.556043243999909, 49.511981931000058 ], [ -119.555240497999975, 49.512429692000111 ], [ -119.554841083999946, 49.512718493000136 ], [ -119.554539133999981, 49.512997081000016 ], [ -119.554163198999944, 49.51334391400011 ], [ -119.553934418999972, 49.513502890000019 ], [ -119.553649900999972, 49.513605191000096 ], [ -119.55322894299999, 49.513709659000071 ], [ -119.55279848899994, 49.513816517000095 ], [ -119.552596987999948, 49.513899300000027 ], [ -119.552434027999979, 49.514024205000105 ], [ -119.552244180999963, 49.514429390000018 ], [ -119.551883212999897, 49.514809912000089 ], [ -119.551810009999969, 49.514869684000089 ] ], [ [ -119.57143546399999, 49.49509481000009 ], [ -119.571386327999974, 49.494157516000058 ], [ -119.571366535999928, 49.494156745000019 ], [ -119.571234933999918, 49.495099269000079 ], [ -119.57143546399999, 49.49509481000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "147", "sL_BldgLoss": "147", "sL_StrLoss": "147", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DAC3C1521BE25DC049513E6F70C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.531190307999978, 49.518671335000072 ], [ -119.53415407199995, 49.518848313000035 ], [ -119.53407461700003, 49.519413749000059 ], [ -119.53397072599995, 49.519420597000135 ], [ -119.532545839999941, 49.519420459000102 ], [ -119.531702609999968, 49.518966838000019 ], [ -119.531190307999978, 49.518671335000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115773416", "BldgCostT": "74111666", "sL_LossRatio": "0.996080622808569", "sL_AssetLoss": "12884.700179", "sL_BldgLoss": "12834.200179", "sL_StrLoss": "12815.800179", "sL_NStrLoss": "18.4", "sL_ContLoss": "50.5", "geom_point": "0101000020E610000074B1BBA3F3E35DC01B6AC149A2BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.54778782299999, 49.493854537000118 ], [ -119.548016612999945, 49.492221876000087 ], [ -119.548113070999975, 49.492166612000098 ], [ -119.548373794999975, 49.492017201000074 ], [ -119.548829420999965, 49.49183019000008 ], [ -119.549817617999949, 49.491404046000035 ], [ -119.549959901999955, 49.49136994800012 ], [ -119.550799503999926, 49.491026090000062 ], [ -119.551792913999975, 49.490529703000036 ], [ -119.55255594399992, 49.490154603000114 ], [ -119.55296809099994, 49.48995201000011 ], [ -119.553440585999937, 49.489792214000047 ], [ -119.553854884999936, 49.489652400000082 ], [ -119.555197198999963, 49.489394507000071 ], [ -119.555531390999988, 49.48930239800012 ], [ -119.555936111, 49.489132208000044 ], [ -119.556601, 49.488804990000062 ], [ -119.556886818999971, 49.488702808000014 ], [ -119.558862601999948, 49.487998013000059 ], [ -119.55950649499998, 49.487768298000084 ], [ -119.560564395999933, 49.487482492 ], [ -119.561723012999977, 49.487448244000092 ], [ -119.563496213999912, 49.487395792000065 ], [ -119.563533919999969, 49.48803770000012 ], [ -119.56358968899994, 49.488331910000056 ], [ -119.563752307999948, 49.488575485000112 ], [ -119.563842691999966, 49.488602594000028 ], [ -119.563967294999912, 49.488602810000067 ], [ -119.565783520999958, 49.488371995000115 ], [ -119.565989687999917, 49.488323700000059 ], [ -119.566491699999943, 49.488061708000082 ], [ -119.5668657, 49.487803884000101 ], [ -119.566927891999953, 49.487705493000085 ], [ -119.567021698999937, 49.487291906000088 ], [ -119.568182925999977, 49.48725789500002 ], [ -119.568432277999946, 49.4872133900001 ], [ -119.568448503999946, 49.487210486000038 ], [ -119.568464234, 49.487161803000035 ], [ -119.568497399999941, 49.487058895000118 ], [ -119.568519396999932, 49.48642510100013 ], [ -119.570487393999954, 49.486445398000058 ], [ -119.57064639599993, 49.486427710000079 ], [ -119.570810898, 49.486410399000114 ], [ -119.571007887999883, 49.486338100000047 ], [ -119.571562882999956, 49.48606298400005 ], [ -119.571981787999974, 49.485769683000072 ], [ -119.572090987999957, 49.485693197000039 ], [ -119.572108075999921, 49.48568137400008 ], [ -119.572366997999922, 49.485501809000034 ], [ -119.572402223999973, 49.485485366 ], [ -119.572679484999952, 49.485355993000077 ], [ -119.572682081999986, 49.485355603000087 ], [ -119.572911496999936, 49.485321017000054 ], [ -119.573137308999918, 49.485320793000056 ], [ -119.573831206999969, 49.485459594000048 ], [ -119.57407760299999, 49.485480493000104 ], [ -119.573315892999986, 49.485698197000048 ], [ -119.572962492999963, 49.485848897000011 ], [ -119.572874161999934, 49.485905005000077 ], [ -119.572286214999977, 49.486278492000118 ], [ -119.571301911999925, 49.486930998000055 ], [ -119.57117165799994, 49.487048043000122 ], [ -119.57111701099997, 49.487097143000057 ], [ -119.571108591999973, 49.48710469100012 ], [ -119.570900101999939, 49.487387819000055 ], [ -119.570809417999911, 49.487660609000066 ], [ -119.57077180499995, 49.48793028199999 ], [ -119.570743108999949, 49.48881031300003 ], [ -119.570715483999962, 49.489841300000087 ], [ -119.570544147999968, 49.489888045000043 ], [ -119.568421137999977, 49.489915482000072 ], [ -119.566319519999951, 49.490156472000116 ], [ -119.564630991999948, 49.490365096000083 ], [ -119.564138305999933, 49.490428657000088 ], [ -119.563715604, 49.490483185000123 ], [ -119.563371488999934, 49.490487098000116 ], [ -119.563202802999939, 49.49044059800007 ], [ -119.563058100999939, 49.490400711000049 ], [ -119.562768075999941, 49.490117 ], [ -119.562596096999954, 49.489860986000117 ], [ -119.56216190799995, 49.489558685000084 ], [ -119.560910490999944, 49.489038906000076 ], [ -119.560555913, 49.488930199000073 ], [ -119.56029861199994, 49.488887785000038 ], [ -119.559947407999942, 49.488874110000097 ], [ -119.559296702999973, 49.488921184000048 ], [ -119.558139959999934, 49.489140375000026 ], [ -119.55690218299999, 49.489374904000059 ], [ -119.555255917999901, 49.489904783000092 ], [ -119.554444420999985, 49.49019079300011 ], [ -119.553986312999911, 49.490475185000129 ], [ -119.553227174999947, 49.491088598000033 ], [ -119.553081922999979, 49.491266005000035 ], [ -119.552765295999961, 49.49179548700004 ], [ -119.55255809499999, 49.492009113000101 ], [ -119.552379792999972, 49.492144813000046 ], [ -119.551987099999963, 49.492338184000062 ], [ -119.551706713999963, 49.492430806000115 ], [ -119.551633700999915, 49.492478013000067 ], [ -119.551570496999958, 49.492612397000073 ], [ -119.55142110099996, 49.492660402000077 ], [ -119.551316091, 49.492628912000093 ], [ -119.55114150199995, 49.492672455000076 ], [ -119.550686297999974, 49.492802383000061 ], [ -119.550245149999938, 49.492965121000047 ], [ -119.549827966999942, 49.49323274100005 ], [ -119.549552736999942, 49.493365742000066 ], [ -119.549203273999979, 49.493481374000041 ], [ -119.54874840899997, 49.493578573000057 ], [ -119.548363472999966, 49.49371300500006 ], [ -119.547935902999981, 49.493862377 ], [ -119.54778782299999, 49.493854537000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72828667", "BldgCostT": "47256667", "sL_LossRatio": "1", "sL_AssetLoss": "7020.7", "sL_BldgLoss": "7020.7", "sL_StrLoss": "7020.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFEC38134DE35DC06BBA2221DFBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.552012591999954, 49.487167854000127 ], [ -119.551723388999946, 49.487146867000057 ], [ -119.551548051999987, 49.487150496000041 ], [ -119.551534990999954, 49.486899343000069 ], [ -119.551948790999973, 49.486890209000109 ], [ -119.55193477, 49.486620631000036 ], [ -119.552348565999978, 49.486611497000119 ], [ -119.552334542999958, 49.48634191900004 ], [ -119.551920747999972, 49.486351054000103 ], [ -119.551906727999935, 49.48608147600001 ], [ -119.551079141999978, 49.486099742000093 ], [ -119.551065125999941, 49.485830163000067 ], [ -119.550651333999923, 49.485839294000108 ], [ -119.550637321999915, 49.485569717000033 ], [ -119.54980974399993, 49.485587972000083 ], [ -119.549767719, 49.484779238000101 ], [ -119.549353935999974, 49.484788362000103 ], [ -119.549325923999959, 49.484249207000133 ], [ -119.547670810999961, 49.484285694000093 ], [ -119.54761881499995, 49.483284188000056 ], [ -119.547715991999965, 49.48322814700002 ], [ -119.548404719999937, 49.48273561300006 ], [ -119.548527957999966, 49.482647477000086 ], [ -119.548532814999973, 49.482647370000052 ], [ -119.548533339999935, 49.482643628000048 ], [ -119.548557902999946, 49.482626060000037 ], [ -119.548661009999961, 49.482578678000081 ], [ -119.549172169999935, 49.482343767000074 ], [ -119.549334026999958, 49.482252474000077 ], [ -119.549450349999944, 49.482186865000109 ], [ -119.549651766999887, 49.482004628 ], [ -119.550003728999926, 49.481498915 ], [ -119.550229249999958, 49.48107510100003 ], [ -119.550347376999966, 49.480726168000039 ], [ -119.550322851999937, 49.480258531000068 ], [ -119.550284682999973, 49.480040051000088 ], [ -119.550262878999931, 49.479915247000108 ], [ -119.550135724999947, 49.479616754000098 ], [ -119.549823801999949, 49.479154561000016 ], [ -119.549701204999934, 49.478541248000056 ], [ -119.550107156999928, 49.478565447000122 ], [ -119.550127358999958, 49.478421185000116 ], [ -119.550195693999939, 49.478452675 ], [ -119.550489785999957, 49.47858822000012 ], [ -119.551168127999958, 49.478900911000068 ], [ -119.552028793999952, 49.479297603000091 ], [ -119.552276661999954, 49.479411874000057 ], [ -119.552922809, 49.479709677000066 ], [ -119.553154523999964, 49.479914104000088 ], [ -119.553271517999946, 49.480146934000096 ], [ -119.553297986999965, 49.480373473000029 ], [ -119.55329545299999, 49.480487660000044 ], [ -119.553292520999946, 49.48062234700005 ], [ -119.553285890999987, 49.480924764000036 ], [ -119.553370000999934, 49.481194466000062 ], [ -119.553521772999943, 49.481425786000067 ], [ -119.553983701999982, 49.481806492000075 ], [ -119.553807076999959, 49.481913340000098 ], [ -119.553245292999975, 49.482253088000064 ], [ -119.552578513999933, 49.481803200000051 ], [ -119.552549613999972, 49.481798416000082 ], [ -119.552527102999989, 49.48179470600013 ], [ -119.552434786999981, 49.481820887000062 ], [ -119.551839283999982, 49.482256102000044 ], [ -119.551691180999939, 49.48247311500009 ], [ -119.551668159999963, 49.482581673000027 ], [ -119.551650498999948, 49.48266490600011 ], [ -119.551626346999925, 49.483435504000063 ], [ -119.55160620099997, 49.484078896000035 ], [ -119.551656920999989, 49.484310493000038 ], [ -119.551834319999898, 49.484517110000098 ], [ -119.552060528999959, 49.484661057000039 ], [ -119.552070777999944, 49.484667604000073 ], [ -119.552320878999979, 49.484751207000073 ], [ -119.552750321999937, 49.484780393000037 ], [ -119.55277110499999, 49.484909004000102 ], [ -119.552908009999953, 49.485187297000053 ], [ -119.553181593999938, 49.485429406000016 ], [ -119.553413502999916, 49.485553489000026 ], [ -119.553775311, 49.485699699000065 ], [ -119.554423202999942, 49.485889201000141 ], [ -119.55503717499991, 49.485955488000045 ], [ -119.556248586999928, 49.485978899000081 ], [ -119.556223900999939, 49.486511292000081 ], [ -119.556228512999951, 49.486593431000138 ], [ -119.556251339000013, 49.486998118000038 ], [ -119.555621608999914, 49.487202739000089 ], [ -119.55544640699999, 49.487257355000082 ], [ -119.554877681999969, 49.487293051000051 ], [ -119.553873291999977, 49.487344356000051 ], [ -119.553590315999898, 49.487357308000149 ], [ -119.553074340999956, 49.487362705000038 ], [ -119.552660625999977, 49.487320006000061 ], [ -119.55263185699999, 49.487313763000046 ], [ -119.552304427999985, 49.487242765000062 ], [ -119.552012591999954, 49.487167854000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "188.4", "sL_BldgLoss": "188.4", "sL_StrLoss": "188.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006CE41D5420E35DC02FB39D2953BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.547810785999928, 49.486981480000054 ], [ -119.547796788999975, 49.486711902000067 ], [ -119.54986578099998, 49.486666285000076 ], [ -119.549895246999981, 49.487233267000057 ], [ -119.549696641, 49.487224900000065 ], [ -119.549337866999934, 49.487187372000051 ], [ -119.548726679999916, 49.487038035000104 ], [ -119.548690679999979, 49.487033924000109 ], [ -119.548394138999967, 49.487000136000084 ], [ -119.548326340999935, 49.486992374000053 ], [ -119.54781228, 49.487017942000065 ], [ -119.547272827999933, 49.487095899000096 ], [ -119.546991477999924, 49.487159470000094 ], [ -119.546983183999942, 49.486999716000092 ], [ -119.547810785999928, 49.486981480000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42986666", "BldgCostT": "28646666", "sL_LossRatio": "1", "sL_AssetLoss": "5251.6", "sL_BldgLoss": "5251.6", "sL_StrLoss": "5251.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FFF8E8607FE25DC0697507EBDEBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.536236095, 49.492996092000084 ], [ -119.536769638999971, 49.489879601000077 ], [ -119.536900446999965, 49.489115383000069 ], [ -119.537006473999938, 49.489008331000079 ], [ -119.541156200999978, 49.489256049000119 ], [ -119.54089153699999, 49.491142812000113 ], [ -119.540886012999962, 49.491182186000039 ], [ -119.54109517099999, 49.491177590000113 ], [ -119.54181323499995, 49.491161804000114 ], [ -119.541799267999963, 49.490892224000042 ], [ -119.542213103999927, 49.490883125000103 ], [ -119.542199034999925, 49.490611629000043 ], [ -119.542267429999981, 49.49085237500001 ], [ -119.542340576999933, 49.49123759400009 ], [ -119.54235916399989, 49.491560517000082 ], [ -119.542385480999926, 49.49189421300008 ], [ -119.542281966999951, 49.492201543000064 ], [ -119.542151728999926, 49.492372387000103 ], [ -119.541938119999884, 49.492508492000084 ], [ -119.540696122999989, 49.492535793000094 ], [ -119.540653467999945, 49.492839832000136 ], [ -119.539836586999968, 49.492791082000103 ], [ -119.539778151999911, 49.493207552000086 ], [ -119.538699095999988, 49.493143145000069 ], [ -119.537940091999957, 49.493097835000057 ], [ -119.536236095, 49.492996092000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17895500", "BldgCostT": "11870000", "sL_LossRatio": "1", "sL_AssetLoss": "1400.8", "sL_BldgLoss": "1400.8", "sL_StrLoss": "1400.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E1580D2D2E25DC0D22AC09829BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545215805999945, 49.484090920000021 ], [ -119.546039052999959, 49.483841941000023 ], [ -119.545628850999933, 49.486768736000016 ], [ -119.540491114999952, 49.48646221000007 ], [ -119.54065160599994, 49.486387116000053 ], [ -119.540671744999955, 49.486378889000065 ], [ -119.541148785999951, 49.486183751000027 ], [ -119.542203226999959, 49.485752431000058 ], [ -119.542891508999944, 49.485426698000076 ], [ -119.544268693999939, 49.484524102000073 ], [ -119.54472104, 49.484280955 ], [ -119.545215805999945, 49.484090920000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89265833", "BldgCostT": "57143333", "sL_LossRatio": "0.999988468281537", "sL_AssetLoss": "9070.894363", "sL_BldgLoss": "9070.78976", "sL_StrLoss": "9070.11334", "sL_NStrLoss": "0.67642", "sL_ContLoss": "0.104603", "geom_point": "0101000020E61000002669595209E45DC09F128C5A4CBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.563533919999969, 49.48803770000012 ], [ -119.563496213999912, 49.487395792000065 ], [ -119.561723012999977, 49.487448244000092 ], [ -119.560564395999933, 49.487482492 ], [ -119.55950649499998, 49.487768298000084 ], [ -119.559551337999963, 49.486685012000116 ], [ -119.559604402999952, 49.485434207 ], [ -119.561752896999948, 49.485470787000104 ], [ -119.562330378999903, 49.485450897000121 ], [ -119.56263499799995, 49.485352500000076 ], [ -119.562990500999945, 49.48498879900005 ], [ -119.563140603, 49.484935414000113 ], [ -119.564932398999957, 49.485017608000057 ], [ -119.564976195999975, 49.485744702000048 ], [ -119.56502430399999, 49.486519994000083 ], [ -119.565792202999916, 49.486496108000082 ], [ -119.565797790999966, 49.487328494000117 ], [ -119.567021698999937, 49.487291906000088 ], [ -119.566927891999953, 49.487705493000085 ], [ -119.5668657, 49.487803884000101 ], [ -119.566491699999943, 49.488061708000082 ], [ -119.565989687999917, 49.488323700000059 ], [ -119.565783520999958, 49.488371995000115 ], [ -119.563967294999912, 49.488602810000067 ], [ -119.563842691999966, 49.488602594000028 ], [ -119.563752307999948, 49.488575485000112 ], [ -119.56358968899994, 49.488331910000056 ], [ -119.563533919999969, 49.48803770000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106214917", "BldgCostT": "69831667", "sL_LossRatio": "0.999970069654646", "sL_AssetLoss": "11230.809268", "sL_BldgLoss": "11230.473126", "sL_StrLoss": "11227.789096", "sL_NStrLoss": "2.68403", "sL_ContLoss": "0.336142", "geom_point": "0101000020E61000006B6714A22EE45DC0CF0691F31BBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565797790999966, 49.487328494000117 ], [ -119.565792202999916, 49.486496108000082 ], [ -119.56502430399999, 49.486519994000083 ], [ -119.564976195999975, 49.485744702000048 ], [ -119.564932398999957, 49.485017608000057 ], [ -119.563140603, 49.484935414000113 ], [ -119.562990500999945, 49.48498879900005 ], [ -119.56263499799995, 49.485352500000076 ], [ -119.562330378999903, 49.485450897000121 ], [ -119.561752896999948, 49.485470787000104 ], [ -119.559604402999952, 49.485434207 ], [ -119.55964328099995, 49.484512288000062 ], [ -119.559675698999968, 49.483785205000096 ], [ -119.56087779899994, 49.483874803000049 ], [ -119.561783789999964, 49.483942209000119 ], [ -119.562146088999967, 49.483995392000068 ], [ -119.563632928999979, 49.484207607000023 ], [ -119.564368812999959, 49.484312783000085 ], [ -119.564732911999911, 49.484333508000148 ], [ -119.564936109999934, 49.484316710000058 ], [ -119.56720108799999, 49.484123399000019 ], [ -119.567970499999973, 49.484058911000062 ], [ -119.568576681, 49.484011910000063 ], [ -119.569622900999946, 49.483938515000041 ], [ -119.569553616999912, 49.485545194000053 ], [ -119.56946360699996, 49.485644584000049 ], [ -119.569389476999987, 49.485679094000076 ], [ -119.568525203999982, 49.48588790600008 ], [ -119.568519396999932, 49.48642510100013 ], [ -119.568497399999941, 49.487058895000118 ], [ -119.568464234, 49.487161803000035 ], [ -119.568448503999946, 49.487210486000038 ], [ -119.568432277999946, 49.4872133900001 ], [ -119.568182925999977, 49.48725789500002 ], [ -119.567021698999937, 49.487291906000088 ], [ -119.565797790999966, 49.487328494000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187116032", "BldgCostT": "115522618", "sL_LossRatio": "0.962520956872193", "sL_AssetLoss": "21687.496269", "sL_BldgLoss": "20874.669661", "sL_StrLoss": "20579.050731", "sL_NStrLoss": "295.61893", "sL_ContLoss": "812.826608", "geom_point": "0101000020E6100000E1E94B2572E45DC00CF1B357C0BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.569553616999912, 49.485545194000053 ], [ -119.569622900999946, 49.483938515000041 ], [ -119.568576681, 49.484011910000063 ], [ -119.567970499999973, 49.484058911000062 ], [ -119.56720108799999, 49.484123399000019 ], [ -119.564936109999934, 49.484316710000058 ], [ -119.564732911999911, 49.484333508000148 ], [ -119.564368812999959, 49.484312783000085 ], [ -119.563632928999979, 49.484207607000023 ], [ -119.562146088999967, 49.483995392000068 ], [ -119.561783789999964, 49.483942209000119 ], [ -119.56087779899994, 49.483874803000049 ], [ -119.559675698999968, 49.483785205000096 ], [ -119.55972628899994, 49.482928091000055 ], [ -119.55974011399999, 49.482928415000103 ], [ -119.561410514999963, 49.482966906000044 ], [ -119.56216518299999, 49.482887997000049 ], [ -119.56164460799998, 49.482332199000105 ], [ -119.56156629799996, 49.482050084000029 ], [ -119.561612192999931, 49.481890302000053 ], [ -119.561761519999905, 49.481743708000053 ], [ -119.561877018999937, 49.481660305000069 ], [ -119.563821608999945, 49.481093908000055 ], [ -119.564341192999962, 49.480972998000034 ], [ -119.564534087999945, 49.480950094000029 ], [ -119.564806300999948, 49.480914782000056 ], [ -119.565413694999975, 49.480923371000067 ], [ -119.566781255999928, 49.480942645000034 ], [ -119.569784606999988, 49.480984890000038 ], [ -119.569827284, 49.479885195000108 ], [ -119.569836117999927, 49.479662037000082 ], [ -119.569839674999955, 49.479571797000112 ], [ -119.56983968899999, 49.47957108300006 ], [ -119.569842859999952, 49.479491036000091 ], [ -119.569868204999963, 49.478848685000067 ], [ -119.57108100100001, 49.478899989000105 ], [ -119.571538283999985, 49.478947091000038 ], [ -119.571996219999988, 49.479079098000078 ], [ -119.572225289999935, 49.47912429100009 ], [ -119.572412404999966, 49.479034196000043 ], [ -119.572648678999926, 49.478977791 ], [ -119.574994895999936, 49.478637388000095 ], [ -119.575155293999956, 49.479117235000125 ], [ -119.575446297000013, 49.479987692000051 ], [ -119.575440812999958, 49.480146396000094 ], [ -119.575409490999988, 49.480281370000036 ], [ -119.575398907999954, 49.480326877000024 ], [ -119.575377131999971, 49.480420631000072 ], [ -119.575260409999913, 49.480923492000066 ], [ -119.575251414999968, 49.481087407000132 ], [ -119.575299599999965, 49.481287208000062 ], [ -119.575451799999954, 49.481586192000115 ], [ -119.575624510999916, 49.481788 ], [ -119.575732101999947, 49.481910002000049 ], [ -119.576055307999965, 49.48212431000006 ], [ -119.576871205999936, 49.482529603000089 ], [ -119.577012188999973, 49.482631003000073 ], [ -119.576162020999959, 49.48262070600007 ], [ -119.574659216999947, 49.482602501000045 ], [ -119.574987802999928, 49.483522697000112 ], [ -119.575270089999918, 49.484328113000061 ], [ -119.572584407999926, 49.484717909000025 ], [ -119.572675705, 49.485085610000077 ], [ -119.572682081999986, 49.485355603000087 ], [ -119.572679484999952, 49.485355993000077 ], [ -119.572402223999973, 49.485485366 ], [ -119.572366997999922, 49.485501809000034 ], [ -119.572108075999921, 49.48568137400008 ], [ -119.572090987999957, 49.485693197000039 ], [ -119.571981787999974, 49.485769683000072 ], [ -119.571562882999956, 49.48606298400005 ], [ -119.571007887999883, 49.486338100000047 ], [ -119.570810898, 49.486410399000114 ], [ -119.57064639599993, 49.486427710000079 ], [ -119.570487393999954, 49.486445398000058 ], [ -119.568519396999932, 49.48642510100013 ], [ -119.568525203999982, 49.48588790600008 ], [ -119.569389476999987, 49.485679094000076 ], [ -119.56946360699996, 49.485644584000049 ], [ -119.569553616999912, 49.485545194000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154008894", "BldgCostT": "91256523", "sL_LossRatio": "0.981740954973112", "sL_AssetLoss": "15091.248726", "sL_BldgLoss": "14815.696936", "sL_StrLoss": "14714.134726", "sL_NStrLoss": "101.56221", "sL_ContLoss": "275.55179", "geom_point": "0101000020E61000007F57A1D4E0E45DC094079E5210BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.573831206999969, 49.485459594000048 ], [ -119.573137308999918, 49.485320793000056 ], [ -119.572911496999936, 49.485321017000054 ], [ -119.572682081999986, 49.485355603000087 ], [ -119.572675705, 49.485085610000077 ], [ -119.572584407999926, 49.484717909000025 ], [ -119.575270089999918, 49.484328113000061 ], [ -119.574987802999928, 49.483522697000112 ], [ -119.574659216999947, 49.482602501000045 ], [ -119.576162020999959, 49.48262070600007 ], [ -119.577012188999973, 49.482631003000073 ], [ -119.577668205999956, 49.482638800000075 ], [ -119.578021483999976, 49.482642996000088 ], [ -119.578166421999924, 49.482644545000049 ], [ -119.578652010999946, 49.482649689000056 ], [ -119.579286882999938, 49.484651398000082 ], [ -119.579741878999954, 49.485977491 ], [ -119.578529985000031, 49.486146793000046 ], [ -119.578411889999984, 49.486179598000064 ], [ -119.577210707999924, 49.486371210000065 ], [ -119.576314682999922, 49.486495363000074 ], [ -119.575280108999905, 49.486638695000117 ], [ -119.574585685999978, 49.486771902000072 ], [ -119.574170302, 49.486899897000072 ], [ -119.572972974999914, 49.487262393000066 ], [ -119.572286214999977, 49.486278492000118 ], [ -119.572874161999934, 49.485905005000077 ], [ -119.572962492999963, 49.485848897000011 ], [ -119.573315892999986, 49.485698197000048 ], [ -119.57407760299999, 49.485480493000104 ], [ -119.573831206999969, 49.485459594000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247154956", "BldgCostT": "163697039", "sL_LossRatio": "0.9796834446458", "sL_AssetLoss": "21081.23117", "sL_BldgLoss": "20652.93317", "sL_StrLoss": "20494.12007", "sL_NStrLoss": "158.8131", "sL_ContLoss": "428.298", "geom_point": "0101000020E61000000CBDFE24FEE45DC03BD35B6E76BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.574585685999978, 49.486771902000072 ], [ -119.575280108999905, 49.486638695000117 ], [ -119.576314682999922, 49.486495363000074 ], [ -119.577210707999924, 49.486371210000065 ], [ -119.578411889999984, 49.486179598000064 ], [ -119.578678523999926, 49.486978600000086 ], [ -119.582521, 49.486427804000094 ], [ -119.582778898999948, 49.487210987000047 ], [ -119.583047287999975, 49.487998404000074 ], [ -119.579207387999972, 49.488539486000043 ], [ -119.579496614999954, 49.489405803000061 ], [ -119.578591706999973, 49.489538303000103 ], [ -119.578276506999956, 49.489583696000132 ], [ -119.577038893999941, 49.489767702000101 ], [ -119.576356293999979, 49.489964804000138 ], [ -119.575160291, 49.490326596000074 ], [ -119.574138377999986, 49.488895396000082 ], [ -119.575354312999963, 49.488559304000063 ], [ -119.574699810999974, 49.487641410000045 ], [ -119.574170302, 49.486899897000072 ], [ -119.574585685999978, 49.486771902000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165008500", "BldgCostT": "108430000", "sL_LossRatio": "0.994013250458682", "sL_AssetLoss": "17514.9525592", "sL_BldgLoss": "17410.094925", "sL_StrLoss": "17368.207865", "sL_NStrLoss": "41.88706", "sL_ContLoss": "104.8576342", "geom_point": "0101000020E610000036B06E1FA6E45DC04A8CE932CABE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.568404092999941, 49.493101725000017 ], [ -119.568355242999928, 49.49243809500004 ], [ -119.568387834999925, 49.491846016000117 ], [ -119.568368585999949, 49.490738096 ], [ -119.568394532999946, 49.49033175700005 ], [ -119.568421137999977, 49.489915482000072 ], [ -119.570544147999968, 49.489888045000043 ], [ -119.570715483999962, 49.489841300000087 ], [ -119.570743108999949, 49.48881031300003 ], [ -119.57077180499995, 49.48793028199999 ], [ -119.570809417999911, 49.487660609000066 ], [ -119.570900101999939, 49.487387819000055 ], [ -119.571108591999973, 49.48710469100012 ], [ -119.57111701099997, 49.487097143000057 ], [ -119.57117165799994, 49.487048043000122 ], [ -119.571301911999925, 49.486930998000055 ], [ -119.572286214999977, 49.486278492000118 ], [ -119.572972974999914, 49.487262393000066 ], [ -119.574170302, 49.486899897000072 ], [ -119.574699810999974, 49.487641410000045 ], [ -119.575354312999963, 49.488559304000063 ], [ -119.574138377999986, 49.488895396000082 ], [ -119.575160291, 49.490326596000074 ], [ -119.576356293999979, 49.489964804000138 ], [ -119.577934311999968, 49.492185990000074 ], [ -119.57667268199999, 49.492462504000031 ], [ -119.57556079199999, 49.492707111000058 ], [ -119.575543053000033, 49.492711012000086 ], [ -119.575358399999942, 49.492751640000094 ], [ -119.575324010999935, 49.492759200000059 ], [ -119.575117369999958, 49.492804675000087 ], [ -119.574754895999945, 49.492884395000104 ], [ -119.573630405999964, 49.493131202000072 ], [ -119.572826221999946, 49.493275812000086 ], [ -119.572447936999964, 49.49326691400011 ], [ -119.572035613999972, 49.493213545000053 ], [ -119.570690704999919, 49.493074055000079 ], [ -119.569884429999945, 49.493094816000045 ], [ -119.568516915000018, 49.492941571000074 ], [ -119.568408758999922, 49.492929445000101 ], [ -119.568404092999941, 49.493101725000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "317764720", "BldgCostT": "214665413", "sL_LossRatio": "0.999914119006472", "sL_AssetLoss": "12907.86185", "sL_BldgLoss": "12906.75331", "sL_StrLoss": "12885.25831", "sL_NStrLoss": "21.495", "sL_ContLoss": "1.10854", "geom_point": "0101000020E6100000CA8A8FEC1DE55DC0552656C2EABE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.579276902999965, 49.493514086000111 ], [ -119.578534399999938, 49.492054502000045 ], [ -119.577934311999968, 49.492185990000074 ], [ -119.576356293999979, 49.489964804000138 ], [ -119.577038893999941, 49.489767702000101 ], [ -119.578276506999956, 49.489583696000132 ], [ -119.578591706999973, 49.489538303000103 ], [ -119.579496614999954, 49.489405803000061 ], [ -119.579917303999977, 49.490650411000061 ], [ -119.583757792999947, 49.490105712000151 ], [ -119.584016992999977, 49.490850110000011 ], [ -119.582156474999977, 49.491258395000074 ], [ -119.582118911999927, 49.491266635000088 ], [ -119.582125260999959, 49.491282227000077 ], [ -119.582603203999923, 49.492202938000055 ], [ -119.582563998999916, 49.4922115050001 ], [ -119.58153109099996, 49.492437293000073 ], [ -119.580588583999912, 49.49264059100009 ], [ -119.580804101999902, 49.493141305000044 ], [ -119.581191489999966, 49.493909492000093 ], [ -119.581588386999982, 49.494689194000081 ], [ -119.581004194999977, 49.494826209000081 ], [ -119.580680393999941, 49.494525202000133 ], [ -119.580389101999927, 49.494300106000047 ], [ -119.579697686000017, 49.493963686000043 ], [ -119.5794155299999, 49.493731902000057 ], [ -119.579276902999965, 49.493514086000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166385091", "BldgCostT": "100873771", "sL_LossRatio": "0.981790274328028", "sL_AssetLoss": "18877.02408", "sL_BldgLoss": "18533.27865", "sL_StrLoss": "18391.91413", "sL_NStrLoss": "141.36452", "sL_ContLoss": "343.74543", "geom_point": "0101000020E610000080AB650062E55DC04A4FAB2AACBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.584016992999977, 49.490850110000011 ], [ -119.583757792999947, 49.490105712000151 ], [ -119.579917303999977, 49.490650411000061 ], [ -119.579496614999954, 49.489405803000061 ], [ -119.579207387999972, 49.488539486000043 ], [ -119.583047287999975, 49.487998404000074 ], [ -119.587069482999979, 49.487439995000059 ], [ -119.587295091999962, 49.488107392000046 ], [ -119.58738558499999, 49.488394143000157 ], [ -119.587442249999953, 49.488573703000043 ], [ -119.587511388999928, 49.488792719000067 ], [ -119.587679489999942, 49.489325391000051 ], [ -119.587972606999969, 49.49022448900012 ], [ -119.588364187999929, 49.490943303000094 ], [ -119.585624738999968, 49.491542317000089 ], [ -119.585231182999976, 49.491628361000082 ], [ -119.584379470999949, 49.491814586000075 ], [ -119.584274907999912, 49.491837443000072 ], [ -119.582603203999923, 49.492202938000055 ], [ -119.582125260999959, 49.491282227000077 ], [ -119.582118911999927, 49.491266635000088 ], [ -119.582156474999977, 49.491258395000074 ], [ -119.584016992999977, 49.490850110000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "391253403", "BldgCostT": "239648628", "sL_LossRatio": "0.947387431694482", "sL_AssetLoss": "21823.881764", "sL_BldgLoss": "20675.671294", "sL_StrLoss": "20239.809494", "sL_NStrLoss": "435.8618", "sL_ContLoss": "1148.21047", "geom_point": "0101000020E61000003A03D85789E55DC0C399477A28BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.58861700099996, 49.496220499000081 ], [ -119.587896399999977, 49.494819999000057 ], [ -119.586807322999945, 49.495060854 ], [ -119.586242546999927, 49.495187301000087 ], [ -119.585673404999937, 49.495315265000045 ], [ -119.5849631399999, 49.493950629000061 ], [ -119.584645789999954, 49.494021302000121 ], [ -119.583849999, 49.49419540100007 ], [ -119.583088605999976, 49.49436079300007 ], [ -119.582789020999911, 49.494426381000089 ], [ -119.582641243999888, 49.49445873500008 ], [ -119.581588386999982, 49.494689194000081 ], [ -119.581191489999966, 49.493909492000093 ], [ -119.580804101999902, 49.493141305000044 ], [ -119.580588583999912, 49.49264059100009 ], [ -119.58153109099996, 49.492437293000073 ], [ -119.582563998999916, 49.4922115050001 ], [ -119.582603203999923, 49.492202938000055 ], [ -119.584274907999912, 49.491837443000072 ], [ -119.584379470999949, 49.491814586000075 ], [ -119.585231182999976, 49.491628361000082 ], [ -119.585624738999968, 49.491542317000089 ], [ -119.588364187999929, 49.490943303000094 ], [ -119.588657298999976, 49.491494615000086 ], [ -119.589069790999957, 49.492272396000018 ], [ -119.589823283999976, 49.492033389000063 ], [ -119.590195592999947, 49.492214381000032 ], [ -119.590508132999915, 49.492506662000089 ], [ -119.590525779999922, 49.49254963000007 ], [ -119.590596075999926, 49.492720490000124 ], [ -119.591294486, 49.494071806000058 ], [ -119.590168420999987, 49.494320411000061 ], [ -119.590894682999959, 49.495720303000063 ], [ -119.589748613, 49.495972205000058 ], [ -119.58861700099996, 49.496220499000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385597364", "BldgCostT": "264441936", "sL_LossRatio": "0.967259592942248", "sL_AssetLoss": "4788.71902", "sL_BldgLoss": "4631.93441", "sL_StrLoss": "4570.00221", "sL_NStrLoss": "61.9322", "sL_ContLoss": "156.78461", "geom_point": "0101000020E61000003C96D28EB6E55DC08C90D33A9EBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590435522999911, 49.486982644000136 ], [ -119.591317588999956, 49.486989695000084 ], [ -119.591037696999976, 49.487656994000126 ], [ -119.590847282, 49.488110097000089 ], [ -119.590542600999953, 49.488826506000095 ], [ -119.590380314999933, 49.489216192000107 ], [ -119.589822213000019, 49.490539105 ], [ -119.589704685, 49.490964894000037 ], [ -119.590007174999968, 49.491548313000067 ], [ -119.590047678999923, 49.491764808000049 ], [ -119.589823283999976, 49.492033389000063 ], [ -119.589069790999957, 49.492272396000018 ], [ -119.588657298999976, 49.491494615000086 ], [ -119.588364187999929, 49.490943303000094 ], [ -119.587972606999969, 49.49022448900012 ], [ -119.587679489999942, 49.489325391000051 ], [ -119.587511388999928, 49.488792719000067 ], [ -119.587442249999953, 49.488573703000043 ], [ -119.58738558499999, 49.488394143000157 ], [ -119.587295091999962, 49.488107392000046 ], [ -119.587580543999977, 49.488103724000069 ], [ -119.587773891999987, 49.488101254000092 ], [ -119.588861609999952, 49.488087311000115 ], [ -119.588877887999956, 49.487134300000044 ], [ -119.588928083999946, 49.487012604000078 ], [ -119.588989313999917, 49.486971087000043 ], [ -119.590435522999911, 49.486982644000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "552383501", "BldgCostT": "378384016", "sL_LossRatio": "0.951687508099617", "sL_AssetLoss": "9712.57353", "sL_BldgLoss": "9243.3349", "sL_StrLoss": "9017.83948", "sL_NStrLoss": "225.49542", "sL_ContLoss": "469.23863", "geom_point": "0101000020E6100000A156A02FE0E55DC08D8485ACD1BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590380314999933, 49.489216192000107 ], [ -119.590542600999953, 49.488826506000095 ], [ -119.59059930299999, 49.489015910000013 ], [ -119.590990797999936, 49.489058991000036 ], [ -119.594339910999935, 49.489635784000036 ], [ -119.59389771499994, 49.49067379000013 ], [ -119.593263495999906, 49.492115991000098 ], [ -119.592958390999968, 49.492175431000071 ], [ -119.592256894999977, 49.492312094000077 ], [ -119.590596075999926, 49.492720490000124 ], [ -119.590525779999922, 49.49254963000007 ], [ -119.590508132999915, 49.492506662000089 ], [ -119.590195592999947, 49.492214381000032 ], [ -119.589823283999976, 49.492033389000063 ], [ -119.590047678999923, 49.491764808000049 ], [ -119.590007174999968, 49.491548313000067 ], [ -119.589704685, 49.490964894000037 ], [ -119.589822213000019, 49.490539105 ], [ -119.590380314999933, 49.489216192000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "381814911", "BldgCostT": "263255743", "sL_LossRatio": "0.961467565715719", "sL_AssetLoss": "16854.46487", "sL_BldgLoss": "16205.02131", "sL_StrLoss": "15965.96421", "sL_NStrLoss": "239.0571", "sL_ContLoss": "649.44356", "geom_point": "0101000020E61000008CE56DD711E65DC0EC13D44B67BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590542600999953, 49.488826506000095 ], [ -119.590847282, 49.488110097000089 ], [ -119.591037696999976, 49.487656994000126 ], [ -119.591317588999956, 49.486989695000084 ], [ -119.591563099999988, 49.486399891000097 ], [ -119.591586975999974, 49.48634270400008 ], [ -119.591789516999924, 49.485857697000014 ], [ -119.591997384999942, 49.485358693000144 ], [ -119.595875303999904, 49.486054370000012 ], [ -119.599834290999937, 49.486765502000061 ], [ -119.599389785999932, 49.487821509000078 ], [ -119.598850197999965, 49.489072415000145 ], [ -119.594893016999919, 49.488367583000091 ], [ -119.594339910999935, 49.489635784000036 ], [ -119.590990797999936, 49.489058991000036 ], [ -119.59059930299999, 49.489015910000013 ], [ -119.590542600999953, 49.488826506000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185762303", "BldgCostT": "115783746", "sL_LossRatio": "0.975211678526449", "sL_AssetLoss": "33211.9777", "sL_BldgLoss": "32388.70852", "sL_StrLoss": "31998.74512", "sL_NStrLoss": "389.9634", "sL_ContLoss": "823.26918", "geom_point": "0101000020E6100000BE6057303DE65DC009B0D16A2FBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.601440699999912, 49.492050100000085 ], [ -119.600687486999959, 49.491917394000033 ], [ -119.600327410999967, 49.492764192000074 ], [ -119.600051445999938, 49.492715262000068 ], [ -119.599996616999974, 49.492705524000023 ], [ -119.599302365999961, 49.492582424000034 ], [ -119.598187501999973, 49.492384691000098 ], [ -119.597525109999964, 49.492267899000076 ], [ -119.597879515999963, 49.491392696000084 ], [ -119.598301101999965, 49.490352491000081 ], [ -119.598850197999965, 49.489072415000145 ], [ -119.599389785999932, 49.487821509000078 ], [ -119.599834290999937, 49.486765502000061 ], [ -119.595875303999904, 49.486054370000012 ], [ -119.591997384999942, 49.485358693000144 ], [ -119.591789516999924, 49.485857697000014 ], [ -119.591586975999974, 49.48634270400008 ], [ -119.591563099999988, 49.486399891000097 ], [ -119.591317588999956, 49.486989695000084 ], [ -119.590435522999911, 49.486982644000136 ], [ -119.588989313999917, 49.486971087000043 ], [ -119.588928083999946, 49.487012604000078 ], [ -119.588877887999956, 49.487134300000044 ], [ -119.588861609999952, 49.488087311000115 ], [ -119.587773891999987, 49.488101254000092 ], [ -119.587580543999977, 49.488103724000069 ], [ -119.587295091999962, 49.488107392000046 ], [ -119.587069482999979, 49.487439995000059 ], [ -119.586884478999949, 49.486860249000088 ], [ -119.586872196999977, 49.486821786000071 ], [ -119.586815893999969, 49.486645412000051 ], [ -119.586523620999984, 49.485790598000023 ], [ -119.586132090999939, 49.484545097000066 ], [ -119.585855294999973, 49.483718307000039 ], [ -119.586536777999967, 49.483627700000092 ], [ -119.58684795799995, 49.483630814000072 ], [ -119.588576494999984, 49.483649203000063 ], [ -119.588921077999942, 49.483581076000043 ], [ -119.589179899999934, 49.483472649000078 ], [ -119.589575987999964, 49.483333502000107 ], [ -119.589582177999958, 49.483333384000154 ], [ -119.589858633999924, 49.48332851000005 ], [ -119.590457510999968, 49.483317962000072 ], [ -119.591704765999935, 49.483331288000059 ], [ -119.59284979099999, 49.483323212000052 ], [ -119.593287612999973, 49.48228669200013 ], [ -119.593436716999989, 49.481961300000101 ], [ -119.593532410999941, 49.48180069000005 ], [ -119.594371016999929, 49.48101834800007 ], [ -119.595438257999916, 49.480035396000083 ], [ -119.596126268999953, 49.479429277000065 ], [ -119.596322795999967, 49.479338109000089 ], [ -119.596389241999972, 49.479307264000091 ], [ -119.596509661999946, 49.479251406000131 ], [ -119.597147953999979, 49.479072363000057 ], [ -119.597238315999903, 49.479041386000155 ], [ -119.597300651999944, 49.479019966000052 ], [ -119.598612259999967, 49.480740780000083 ], [ -119.599230995, 49.481351080000103 ], [ -119.599515835999981, 49.481588832000092 ], [ -119.599321737999958, 49.48156311200006 ], [ -119.599687889999956, 49.481849663000069 ], [ -119.600001149999969, 49.482057978000078 ], [ -119.60013816899999, 49.482149092000085 ], [ -119.600440879999937, 49.482350387000054 ], [ -119.601475547999925, 49.482969267000087 ], [ -119.602401210999972, 49.483522941000103 ], [ -119.604557847999942, 49.484812791000131 ], [ -119.604915991999931, 49.485026985000147 ], [ -119.605419779999963, 49.485418097000057 ], [ -119.605601112000031, 49.485638385000108 ], [ -119.60572308699993, 49.485876894000036 ], [ -119.605788882999946, 49.486251092000039 ], [ -119.605714709999972, 49.48660540600013 ], [ -119.605409801999926, 49.487355287000113 ], [ -119.605572670999933, 49.487389265000111 ], [ -119.605306976999941, 49.488003268000014 ], [ -119.604691742999961, 49.489424964000129 ], [ -119.604512173999979, 49.489839806000134 ], [ -119.604508640999939, 49.489848517000041 ], [ -119.604036187999938, 49.491021478000079 ], [ -119.604019455999918, 49.491063045000054 ], [ -119.603978274999989, 49.491165246000094 ], [ -119.603895929999965, 49.491369612000085 ], [ -119.603854784999967, 49.491471800000085 ], [ -119.603728171999975, 49.491786119000061 ], [ -119.603725997999987, 49.49179154900002 ], [ -119.603476993999948, 49.49240964700008 ], [ -119.603421331, 49.492547790000081 ], [ -119.603401094, 49.492598227000066 ], [ -119.603269079, 49.49292767200005 ], [ -119.603145780999967, 49.493235246000019 ], [ -119.603037987999983, 49.493213504000082 ], [ -119.603354285999956, 49.492396607000089 ], [ -119.603357682999956, 49.492387767000054 ], [ -119.603164797999909, 49.492353834000014 ], [ -119.601440699999912, 49.492050100000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139711250", "BldgCostT": "90830000", "sL_LossRatio": "0.980802246405057", "sL_AssetLoss": "17682.75222", "sL_BldgLoss": "17343.2831", "sL_StrLoss": "17206.3426", "sL_NStrLoss": "136.9405", "sL_ContLoss": "339.46912", "geom_point": "0101000020E610000061DA1E5A37E65DC0AFD5DCD9F0BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59804940599993, 49.495719104000045 ], [ -119.59708690799998, 49.493855401000062 ], [ -119.596529618999966, 49.493977804000075 ], [ -119.595772792999981, 49.49246779300011 ], [ -119.595950409999944, 49.49198768300009 ], [ -119.595599102999969, 49.491924496000124 ], [ -119.595987807999975, 49.491051311000057 ], [ -119.59389771499994, 49.49067379000013 ], [ -119.594339910999935, 49.489635784000036 ], [ -119.594893016999919, 49.488367583000091 ], [ -119.598850197999965, 49.489072415000145 ], [ -119.598301101999965, 49.490352491000081 ], [ -119.597879515999963, 49.491392696000084 ], [ -119.597525109999964, 49.492267899000076 ], [ -119.598187501999973, 49.492384691000098 ], [ -119.597992, 49.492824895000076 ], [ -119.59799279399999, 49.492968498000032 ], [ -119.59831210599998, 49.493590897000075 ], [ -119.59955831299996, 49.493315001000049 ], [ -119.599995349999915, 49.494182751000103 ], [ -119.600499519, 49.495183691000108 ], [ -119.600009121999975, 49.49529097900006 ], [ -119.599270798999939, 49.495452490000105 ], [ -119.598863680999941, 49.495541398000036 ], [ -119.59804940599993, 49.495719104000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "486179134", "BldgCostT": "314088753", "sL_LossRatio": "0.89986967607338", "sL_AssetLoss": "20100.08498", "sL_BldgLoss": "18087.45696", "sL_StrLoss": "17332.81341", "sL_NStrLoss": "754.64355", "sL_ContLoss": "2012.62802", "geom_point": "0101000020E61000008855847AFEE55DC0C75B85FF3ABF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590894682999959, 49.495720303000063 ], [ -119.590168420999987, 49.494320411000061 ], [ -119.591294486, 49.494071806000058 ], [ -119.590596075999926, 49.492720490000124 ], [ -119.592256894999977, 49.492312094000077 ], [ -119.592958390999968, 49.492175431000071 ], [ -119.593263495999906, 49.492115991000098 ], [ -119.59389771499994, 49.49067379000013 ], [ -119.595987807999975, 49.491051311000057 ], [ -119.595599102999969, 49.491924496000124 ], [ -119.595950409999944, 49.49198768300009 ], [ -119.595772792999981, 49.49246779300011 ], [ -119.596529618999966, 49.493977804000075 ], [ -119.59708690799998, 49.493855401000062 ], [ -119.59804940599993, 49.495719104000045 ], [ -119.597332090999913, 49.495877203000099 ], [ -119.596820813999926, 49.495987909000092 ], [ -119.595848503999918, 49.494124485000071 ], [ -119.59357321399996, 49.494618606000103 ], [ -119.593454308999952, 49.494597101000103 ], [ -119.59369649599995, 49.495069505000053 ], [ -119.593968002999958, 49.495599116000037 ], [ -119.59405560499999, 49.495770012000094 ], [ -119.594434887999967, 49.496509802000084 ], [ -119.592737390999915, 49.496871914000089 ], [ -119.591608074999968, 49.497113100000036 ], [ -119.590894682999959, 49.495720303000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158024228", "BldgCostT": "103149857", "sL_LossRatio": "0.995933165586234", "sL_AssetLoss": "20681.304288", "sL_BldgLoss": "20597.196848", "sL_StrLoss": "20554.867548", "sL_NStrLoss": "42.3293", "sL_ContLoss": "84.10744", "geom_point": "0101000020E6100000CCE8A13255E55DC0313AA4411FBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582778898999948, 49.487210987000047 ], [ -119.582521, 49.486427804000094 ], [ -119.578678523999926, 49.486978600000086 ], [ -119.578411889999984, 49.486179598000064 ], [ -119.578529985000031, 49.486146793000046 ], [ -119.579741878999954, 49.485977491 ], [ -119.579286882999938, 49.484651398000082 ], [ -119.580551688999932, 49.484469916000101 ], [ -119.581807805999972, 49.48429138800001 ], [ -119.581279088999921, 49.482679100000077 ], [ -119.582570315999945, 49.482695209000084 ], [ -119.583856213999979, 49.482709995000043 ], [ -119.58552258399996, 49.482726503000094 ], [ -119.58575757700001, 49.483427028000058 ], [ -119.585855294999973, 49.483718307000039 ], [ -119.586132090999939, 49.484545097000066 ], [ -119.586523620999984, 49.485790598000023 ], [ -119.586815893999969, 49.486645412000051 ], [ -119.586872196999977, 49.486821786000071 ], [ -119.586884478999949, 49.486860249000088 ], [ -119.587069482999979, 49.487439995000059 ], [ -119.583047287999975, 49.487998404000074 ], [ -119.582778898999948, 49.487210987000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "450532875", "BldgCostT": "274906714", "sL_LossRatio": "0.870605955489253", "sL_AssetLoss": "19026.300239", "sL_BldgLoss": "16564.410299", "sL_StrLoss": "15636.121099", "sL_NStrLoss": "928.2892", "sL_ContLoss": "2461.88994", "geom_point": "0101000020E6100000ED257CA522E55DC06AF58BC866BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.579286882999938, 49.484651398000082 ], [ -119.578652010999946, 49.482649689000056 ], [ -119.578166421999924, 49.482644545000049 ], [ -119.578021483999976, 49.482642996000088 ], [ -119.577668205999956, 49.482638800000075 ], [ -119.577012188999973, 49.482631003000073 ], [ -119.576871205999936, 49.482529603000089 ], [ -119.576055307999965, 49.48212431000006 ], [ -119.575732101999947, 49.481910002000049 ], [ -119.575624510999916, 49.481788 ], [ -119.575451799999954, 49.481586192000115 ], [ -119.575299599999965, 49.481287208000062 ], [ -119.575251414999968, 49.481087407000132 ], [ -119.575260409999913, 49.480923492000066 ], [ -119.575377131999971, 49.480420631000072 ], [ -119.575398907999954, 49.480326877000024 ], [ -119.575409490999988, 49.480281370000036 ], [ -119.575440812999958, 49.480146396000094 ], [ -119.575446297000013, 49.479987692000051 ], [ -119.575155293999956, 49.479117235000125 ], [ -119.574994895999936, 49.478637388000095 ], [ -119.574579705, 49.477385009000081 ], [ -119.574180295999938, 49.476188603000075 ], [ -119.577315694000021, 49.475737908000063 ], [ -119.578675129999922, 49.475541523000054 ], [ -119.578849748000025, 49.475516291000126 ], [ -119.578991597999945, 49.475495801000115 ], [ -119.581486018999968, 49.475530902000074 ], [ -119.582414452999956, 49.475543880000025 ], [ -119.582501706999906, 49.475545086000096 ], [ -119.582861824999966, 49.475504901000114 ], [ -119.583024901999948, 49.475486681000042 ], [ -119.583124114999976, 49.475471455000097 ], [ -119.5831480209999, 49.475467779000049 ], [ -119.58315080599999, 49.47547661600003 ], [ -119.583333586999984, 49.476049295000081 ], [ -119.583358124999933, 49.476126194000081 ], [ -119.58333779299997, 49.476242428000077 ], [ -119.583689534999905, 49.47739525300004 ], [ -119.58381078799999, 49.477749499000048 ], [ -119.584117678999945, 49.47864570400008 ], [ -119.584794620999958, 49.480655204000051 ], [ -119.584823298999979, 49.480735819000031 ], [ -119.584866993999952, 49.48085866200006 ], [ -119.584878278999909, 49.480890243000054 ], [ -119.584908105999929, 49.480974114000105 ], [ -119.584942375000011, 49.481070350000032 ], [ -119.58535599799994, 49.482232406000058 ], [ -119.585571124999987, 49.482231189000103 ], [ -119.586371779999965, 49.482226699000094 ], [ -119.586478869999951, 49.482553887000115 ], [ -119.586482823999944, 49.48255399300011 ], [ -119.589208505999949, 49.482570932000016 ], [ -119.589179899999934, 49.483472649000078 ], [ -119.588921077999942, 49.483581076000043 ], [ -119.588576494999984, 49.483649203000063 ], [ -119.58684795799995, 49.483630814000072 ], [ -119.586536777999967, 49.483627700000092 ], [ -119.585855294999973, 49.483718307000039 ], [ -119.58575757700001, 49.483427028000058 ], [ -119.58552258399996, 49.482726503000094 ], [ -119.583856213999979, 49.482709995000043 ], [ -119.582570315999945, 49.482695209000084 ], [ -119.581279088999921, 49.482679100000077 ], [ -119.581807805999972, 49.48429138800001 ], [ -119.580551688999932, 49.484469916000101 ], [ -119.579286882999938, 49.484651398000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140654084", "BldgCostT": "93058334", "sL_LossRatio": "0.999834334146339", "sL_AssetLoss": "20921.69221", "sL_BldgLoss": "20918.2262", "sL_StrLoss": "20902.6829", "sL_NStrLoss": "15.5433", "sL_ContLoss": "3.46601", "geom_point": "0101000020E6100000ECBBAEA1CCE55DC0895530E88CBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589179899999934, 49.483472649000078 ], [ -119.589208505999949, 49.482570932000016 ], [ -119.586482823999944, 49.48255399300011 ], [ -119.586478869999951, 49.482553887000115 ], [ -119.586371779999965, 49.482226699000094 ], [ -119.585571124999987, 49.482231189000103 ], [ -119.58535599799994, 49.482232406000058 ], [ -119.584942375000011, 49.481070350000032 ], [ -119.584908105999929, 49.480974114000105 ], [ -119.584878278999909, 49.480890243000054 ], [ -119.584866993999952, 49.48085866200006 ], [ -119.584823298999979, 49.480735819000031 ], [ -119.584794620999958, 49.480655204000051 ], [ -119.584990807999972, 49.480628900000028 ], [ -119.585682484999921, 49.480464901000069 ], [ -119.586149190999976, 49.480295592000033 ], [ -119.586565222999937, 49.480112387000112 ], [ -119.587386382999938, 49.479634410000116 ], [ -119.587754090999937, 49.479480111000015 ], [ -119.588102314999944, 49.479366101000025 ], [ -119.588500885999977, 49.479287605000103 ], [ -119.589744185999933, 49.479109970000117 ], [ -119.591312410999961, 49.478885894000037 ], [ -119.592322579999959, 49.478741579000086 ], [ -119.592591236000018, 49.478707061000058 ], [ -119.592799124999914, 49.47868036400012 ], [ -119.593123006999974, 49.478691402000052 ], [ -119.593385694999967, 49.478763854000057 ], [ -119.593465209, 49.478640294000058 ], [ -119.59359328499994, 49.478565650000036 ], [ -119.59421026099993, 49.478460357000117 ], [ -119.594777220999944, 49.478426143000036 ], [ -119.595341072999958, 49.478543545000051 ], [ -119.595473531, 49.478609667000057 ], [ -119.595517687000012, 49.47863175300008 ], [ -119.595913965999969, 49.478909268000038 ], [ -119.596123935999941, 49.479064722000018 ], [ -119.596389241999972, 49.479307264000091 ], [ -119.596322795999967, 49.479338109000089 ], [ -119.596126268999953, 49.479429277000065 ], [ -119.595438257999916, 49.480035396000083 ], [ -119.594371016999929, 49.48101834800007 ], [ -119.593532410999941, 49.48180069000005 ], [ -119.593436716999989, 49.481961300000101 ], [ -119.593287612999973, 49.48228669200013 ], [ -119.59284979099999, 49.483323212000052 ], [ -119.591704765999935, 49.483331288000059 ], [ -119.590457510999968, 49.483317962000072 ], [ -119.589858633999924, 49.48332851000005 ], [ -119.589582177999958, 49.483333384000154 ], [ -119.589575987999964, 49.483333502000107 ], [ -119.589179899999934, 49.483472649000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125867414", "BldgCostT": "75828724", "sL_LossRatio": "0.941222949706439", "sL_AssetLoss": "13596.6464021", "sL_BldgLoss": "12797.4756327", "sL_StrLoss": "12501.8048527", "sL_NStrLoss": "295.67078", "sL_ContLoss": "799.1707694", "geom_point": "0101000020E61000003612F45996E55DC08065A54929BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583689534999905, 49.47739525300004 ], [ -119.58333779299997, 49.476242428000077 ], [ -119.583358124999933, 49.476126194000081 ], [ -119.583333586999984, 49.476049295000081 ], [ -119.58315080599999, 49.47547661600003 ], [ -119.5831480209999, 49.475467779000049 ], [ -119.583664902999885, 49.475385479000046 ], [ -119.583964697999988, 49.475270503 ], [ -119.584181509999965, 49.475881403000109 ], [ -119.58424462399995, 49.47591369600007 ], [ -119.584259148999948, 49.475921156000076 ], [ -119.584269383999967, 49.475926396000062 ], [ -119.584373086999932, 49.475911540000013 ], [ -119.585911165999946, 49.475691220000023 ], [ -119.58721789599997, 49.475503997000033 ], [ -119.587427485999967, 49.476117212000048 ], [ -119.587663093999964, 49.476801515000076 ], [ -119.588882205999965, 49.47662800500008 ], [ -119.589529683999956, 49.476532588000033 ], [ -119.590467713999928, 49.47639850200008 ], [ -119.591510514999982, 49.476247996000062 ], [ -119.592119558999912, 49.478118174000073 ], [ -119.592322579999959, 49.478741579000086 ], [ -119.591312410999961, 49.478885894000037 ], [ -119.589744185999933, 49.479109970000117 ], [ -119.588500885999977, 49.479287605000103 ], [ -119.588102314999944, 49.479366101000025 ], [ -119.587754090999937, 49.479480111000015 ], [ -119.587386382999938, 49.479634410000116 ], [ -119.586565222999937, 49.480112387000112 ], [ -119.586149190999976, 49.480295592000033 ], [ -119.585682484999921, 49.480464901000069 ], [ -119.584990807999972, 49.480628900000028 ], [ -119.584794620999958, 49.480655204000051 ], [ -119.584117678999945, 49.47864570400008 ], [ -119.58381078799999, 49.477749499000048 ], [ -119.583689534999905, 49.47739525300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311244999", "BldgCostT": "200222659", "sL_LossRatio": "0.94309617746249", "sL_AssetLoss": "23217.2241", "sL_BldgLoss": "21896.0753", "sL_StrLoss": "21324.2841", "sL_NStrLoss": "571.7912", "sL_ContLoss": "1321.1488", "geom_point": "0101000020E61000003FBF185FEEE55DC0212C5BD2EEBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.595341072999958, 49.478543545000051 ], [ -119.594777220999944, 49.478426143000036 ], [ -119.59421026099993, 49.478460357000117 ], [ -119.59359328499994, 49.478565650000036 ], [ -119.593465209, 49.478640294000058 ], [ -119.593385694999967, 49.478763854000057 ], [ -119.593123006999974, 49.478691402000052 ], [ -119.592799124999914, 49.47868036400012 ], [ -119.592591236000018, 49.478707061000058 ], [ -119.592322579999959, 49.478741579000086 ], [ -119.592119558999912, 49.478118174000073 ], [ -119.591510514999982, 49.476247996000062 ], [ -119.590467713999928, 49.47639850200008 ], [ -119.589529683999956, 49.476532588000033 ], [ -119.588882205999965, 49.47662800500008 ], [ -119.587663093999964, 49.476801515000076 ], [ -119.587427485999967, 49.476117212000048 ], [ -119.58721789599997, 49.475503997000033 ], [ -119.587010630999941, 49.474893601000076 ], [ -119.586793669999935, 49.474254694000059 ], [ -119.587063413999928, 49.474215282000138 ], [ -119.587575428, 49.474140507000072 ], [ -119.587845204999894, 49.474101082000061 ], [ -119.589997834999934, 49.473786641000054 ], [ -119.590024307999968, 49.473782780000107 ], [ -119.59035428299994, 49.473734561000043 ], [ -119.590537520999973, 49.473707794000106 ], [ -119.590616686999979, 49.473676102000105 ], [ -119.59062989899995, 49.473670813000098 ], [ -119.590905784999961, 49.473558805000039 ], [ -119.590989262, 49.47350059300009 ], [ -119.591207800999953, 49.473348213000072 ], [ -119.591614976999892, 49.472937319000032 ], [ -119.592382205999911, 49.473325009000085 ], [ -119.592383739999931, 49.473326728000075 ], [ -119.59254454199997, 49.473430096000136 ], [ -119.592861275999937, 49.473565287000092 ], [ -119.592979707999959, 49.473660759000019 ], [ -119.593265423999981, 49.473948936000063 ], [ -119.593603452999929, 49.474378920000071 ], [ -119.594058510999957, 49.474886548000065 ], [ -119.594427053999979, 49.475163670000057 ], [ -119.594684381, 49.475246625000047 ], [ -119.596215899999919, 49.475304560000055 ], [ -119.596357403999974, 49.475308990000038 ], [ -119.596482691999967, 49.475312921000068 ], [ -119.595629810999952, 49.472114888000057 ], [ -119.595831475999901, 49.47210073900002 ], [ -119.59718049, 49.476936911000067 ], [ -119.597790657999923, 49.47887627500004 ], [ -119.59758471899994, 49.478936659000063 ], [ -119.597300651999944, 49.479019966000052 ], [ -119.597238315999903, 49.479041386000155 ], [ -119.597147953999979, 49.479072363000057 ], [ -119.596509661999946, 49.479251406000131 ], [ -119.596389241999972, 49.479307264000091 ], [ -119.596123935999941, 49.479064722000018 ], [ -119.595913965999969, 49.478909268000038 ], [ -119.595517687000012, 49.47863175300008 ], [ -119.595473531, 49.478609667000057 ], [ -119.595341072999958, 49.478543545000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57195084", "BldgCostT": "37553334", "sL_LossRatio": "0.967572214286209", "sL_AssetLoss": "11020.1567", "sL_BldgLoss": "10662.79742", "sL_StrLoss": "10524.06232", "sL_NStrLoss": "138.7351", "sL_ContLoss": "357.35928", "geom_point": "0101000020E6100000252C339D04E75DC051BAD321E0BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.60806050299999, 49.494749590000012 ], [ -119.608189650999961, 49.494198061000084 ], [ -119.60821095899999, 49.494112082000115 ], [ -119.608142881999967, 49.494100833000026 ], [ -119.607437251999912, 49.493984013000052 ], [ -119.605292897999973, 49.493628977000107 ], [ -119.605169824999933, 49.493608609000034 ], [ -119.605073891999936, 49.493592724000145 ], [ -119.605060479999977, 49.493590491000134 ], [ -119.60511185499999, 49.493469635000068 ], [ -119.605375410999926, 49.492849293000049 ], [ -119.6056746, 49.492140700000022 ], [ -119.60385271199999, 49.49179550700007 ], [ -119.603854784999967, 49.491471800000085 ], [ -119.603895929999965, 49.491369612000085 ], [ -119.603978274999989, 49.491165246000094 ], [ -119.604019455999918, 49.491063045000054 ], [ -119.604036187999938, 49.491021478000079 ], [ -119.604508640999939, 49.489848517000041 ], [ -119.604512173999979, 49.489839806000134 ], [ -119.604691742999961, 49.489424964000129 ], [ -119.605306976999941, 49.488003268000014 ], [ -119.605572670999933, 49.487389265000111 ], [ -119.605409801999926, 49.487355287000113 ], [ -119.605714709999972, 49.48660540600013 ], [ -119.605788882999946, 49.486251092000039 ], [ -119.60572308699993, 49.485876894000036 ], [ -119.605601112000031, 49.485638385000108 ], [ -119.605419779999963, 49.485418097000057 ], [ -119.604915991999931, 49.485026985000147 ], [ -119.604557847999942, 49.484812791000131 ], [ -119.602401210999972, 49.483522941000103 ], [ -119.601475547999925, 49.482969267000087 ], [ -119.600440879999937, 49.482350387000054 ], [ -119.60013816899999, 49.482149092000085 ], [ -119.600001149999969, 49.482057978000078 ], [ -119.599687889999956, 49.481849663000069 ], [ -119.599321737999958, 49.48156311200006 ], [ -119.599515835999981, 49.481588832000092 ], [ -119.599230995, 49.481351080000103 ], [ -119.598612259999967, 49.480740780000083 ], [ -119.597300651999944, 49.479019966000052 ], [ -119.59758471899994, 49.478936659000063 ], [ -119.597790657999923, 49.47887627500004 ], [ -119.597894306999976, 49.479205708000151 ], [ -119.59856240799995, 49.480350692000059 ], [ -119.5995299099999, 49.481390407000056 ], [ -119.601417001999934, 49.482625193000075 ], [ -119.602716736999952, 49.48334686100003 ], [ -119.602730109999968, 49.483598948000065 ], [ -119.603143863999946, 49.483589633000058 ], [ -119.60315816499994, 49.483859199000044 ], [ -119.603571922999961, 49.483849881000047 ], [ -119.603586225999962, 49.484119448000079 ], [ -119.603999984999973, 49.484110128000061 ], [ -119.604014288999963, 49.484379695000094 ], [ -119.604428050999914, 49.484370374000022 ], [ -119.604442358999961, 49.484639940000108 ], [ -119.60488878399994, 49.484629882000078 ], [ -119.604994495999961, 49.484704497000024 ], [ -119.605283363999945, 49.484875130000084 ], [ -119.605298512000019, 49.485160427000089 ], [ -119.60571228, 49.485151101000071 ], [ -119.605740910999913, 49.485690234000096 ], [ -119.606154681999925, 49.485680907000074 ], [ -119.606183318999953, 49.486220039000102 ], [ -119.607010870999943, 49.486201379000136 ], [ -119.607025195999938, 49.486470945000086 ], [ -119.607438972999987, 49.486461613000095 ], [ -119.607496276999939, 49.487539877000103 ], [ -119.607910063999924, 49.487530543000069 ], [ -119.607916162999942, 49.48764529300005 ], [ -119.608048337999918, 49.487653098000109 ], [ -119.608029879999918, 49.487786078000049 ], [ -119.608414436999951, 49.487808788000045 ], [ -119.608379605999986, 49.488059727000028 ], [ -119.609593883999963, 49.488032322000088 ], [ -119.609608221999963, 49.488301888000123 ], [ -119.611030939999949, 49.488269763000083 ], [ -119.611271221999942, 49.488411661000065 ], [ -119.611277737999927, 49.488534078000065 ], [ -119.611471121999898, 49.488529710000101 ], [ -119.611698959999941, 49.488664255000117 ], [ -119.611705881999967, 49.488794295000062 ], [ -119.611911309999982, 49.488789654000122 ], [ -119.612126701999969, 49.488916847000048 ], [ -119.612134030999954, 49.489054511000099 ], [ -119.612351500999978, 49.489049597000125 ], [ -119.612554446, 49.489169439000115 ], [ -119.612562182999952, 49.489314724000103 ], [ -119.61279169899997, 49.4893095380001 ], [ -119.612982195999948, 49.489422027000089 ], [ -119.612990340999914, 49.489574937000079 ], [ -119.6132319, 49.489569476000092 ], [ -119.613409952, 49.489674615000077 ], [ -119.613418501999945, 49.489835147000086 ], [ -119.613627047999913, 49.489830432000083 ], [ -119.613842741999989, 49.490021628000044 ], [ -119.613861032999978, 49.490364920000061 ], [ -119.614220844999963, 49.490356785000138 ], [ -119.614712438999945, 49.490792531000054 ], [ -119.614731752999901, 49.49115489800009 ], [ -119.615111564999964, 49.491146306000061 ], [ -119.615147297999926, 49.491177978000032 ], [ -119.615174309999958, 49.491684664000033 ], [ -119.615549021999968, 49.491676188 ], [ -119.615591219999942, 49.491733306000057 ], [ -119.615616874999915, 49.492214432000019 ], [ -119.615852381999957, 49.492209102000089 ], [ -119.616050733999955, 49.49258076300007 ], [ -119.616059562999936, 49.492746313000062 ], [ -119.616141672999916, 49.492751156000047 ], [ -119.616334704999943, 49.493112839000055 ], [ -119.616311769999953, 49.493278263000022 ], [ -119.616421666999912, 49.493275776000118 ], [ -119.616429101, 49.493289706000063 ], [ -119.616527545999972, 49.493752207000121 ], [ -119.61657672199999, 49.494674071000141 ], [ -119.616685427999982, 49.494680481000039 ], [ -119.616669996999946, 49.495610087000095 ], [ -119.616509760999946, 49.495582668000104 ], [ -119.616484186999955, 49.495578309000045 ], [ -119.616306385999962, 49.495547907000031 ], [ -119.616294197999977, 49.495578387000059 ], [ -119.616268209999987, 49.495643189000091 ], [ -119.616038499, 49.495601599000111 ], [ -119.616072690999914, 49.495505199000092 ], [ -119.615608584999961, 49.49542088700013 ], [ -119.615375127999968, 49.495417125000074 ], [ -119.615130382999951, 49.495435845000024 ], [ -119.614211986999962, 49.495506120000108 ], [ -119.614313288999981, 49.495286685000039 ], [ -119.61432974799996, 49.495251388000135 ], [ -119.614356719999989, 49.495193502000085 ], [ -119.613318317999955, 49.495012208000105 ], [ -119.611194789, 49.494641403000102 ], [ -119.611175890999959, 49.494638083000034 ], [ -119.611169710999931, 49.494658445000056 ], [ -119.611150468999966, 49.494721535000075 ], [ -119.611124359999963, 49.494823398000079 ], [ -119.610924202999982, 49.495603403000032 ], [ -119.608550295999976, 49.495192274000026 ], [ -119.607966112999961, 49.495090034000071 ], [ -119.60806050299999, 49.494749590000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11668335", "BldgCostT": "7783335", "sL_LossRatio": "0.999352786330544", "sL_AssetLoss": "2694.9369", "sL_BldgLoss": "2693.1927", "sL_StrLoss": "2687.7", "sL_NStrLoss": "5.4927", "sL_ContLoss": "1.7442", "geom_point": "0101000020E6100000A251AA12DFE55DC0A6A0BA3D31BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596035409999942, 49.457362695000064 ], [ -119.596231519999932, 49.457366283000027 ], [ -119.59494266899992, 49.462711116000079 ], [ -119.594554696000031, 49.464319788000111 ], [ -119.594305498999944, 49.465899303000114 ], [ -119.594309709999905, 49.466474688000126 ], [ -119.594524591999942, 49.467414614000056 ], [ -119.595831475999901, 49.47210073900002 ], [ -119.595629810999952, 49.472114888000057 ], [ -119.595520433999951, 49.472130517000025 ], [ -119.595406594999972, 49.472146791000021 ], [ -119.594228576999981, 49.472304689000033 ], [ -119.593850570999962, 49.472314898000036 ], [ -119.592932307999959, 49.472277700000113 ], [ -119.592552424999923, 49.472341904000118 ], [ -119.592364640999989, 49.472415028000064 ], [ -119.59219810799999, 49.47247991200004 ], [ -119.591884289999911, 49.472665502000069 ], [ -119.591614976999892, 49.472937319000032 ], [ -119.591207800999953, 49.473348213000072 ], [ -119.590989262, 49.47350059300009 ], [ -119.590905784999961, 49.473558805000039 ], [ -119.59062989899995, 49.473670813000098 ], [ -119.590616686999979, 49.473676102000105 ], [ -119.590537520999973, 49.473707794000106 ], [ -119.59035428299994, 49.473734561000043 ], [ -119.590024307999968, 49.473782780000107 ], [ -119.589997834999934, 49.473786641000054 ], [ -119.587845204999894, 49.474101082000061 ], [ -119.587575428, 49.474140507000072 ], [ -119.587063413999928, 49.474215282000138 ], [ -119.586793669999935, 49.474254694000059 ], [ -119.586392169999939, 49.473064594000085 ], [ -119.586072078999948, 49.472115753000054 ], [ -119.585926285999918, 49.471683708000121 ], [ -119.587199826999893, 49.471500759000051 ], [ -119.589750607999974, 49.471134302000038 ], [ -119.590804231999954, 49.470982980000031 ], [ -119.590941643999926, 49.470963247000086 ], [ -119.591710496999951, 49.470852837000024 ], [ -119.593602989999965, 49.470580996000066 ], [ -119.593422920999942, 49.470114094000095 ], [ -119.593315502999957, 49.469970509000071 ], [ -119.593206128999938, 49.469853810000181 ], [ -119.592877903999963, 49.469503683000021 ], [ -119.592741394999976, 49.46938991100005 ], [ -119.592416486999952, 49.469208013000063 ], [ -119.592118317999919, 49.469042187000106 ], [ -119.591268176999947, 49.468664789000073 ], [ -119.591672402999947, 49.468266904000124 ], [ -119.591736209999979, 49.46820648400012 ], [ -119.592285020999981, 49.467664403000086 ], [ -119.592290315999904, 49.46765584100006 ], [ -119.592438479999942, 49.4674169890001 ], [ -119.592446609999982, 49.467259285000118 ], [ -119.592450196999934, 49.467133990000072 ], [ -119.592295914, 49.466670401000052 ], [ -119.59214899499996, 49.466233508000059 ], [ -119.591904218999957, 49.46550529000011 ], [ -119.592745703999952, 49.465388466000043 ], [ -119.592852787999945, 49.465373616000093 ], [ -119.592885499999937, 49.465369164000116 ], [ -119.593036399999932, 49.465348764000048 ], [ -119.593187442999962, 49.465328318000097 ], [ -119.593338451999955, 49.465307883000051 ], [ -119.593489368999883, 49.465287446000076 ], [ -119.593640412999918, 49.465267001000022 ], [ -119.593791457999941, 49.465246554000075 ], [ -119.593942355999928, 49.465226151000074 ], [ -119.594108116999962, 49.465203138000049 ], [ -119.594235564999934, 49.465185455000096 ], [ -119.594246283999937, 49.465108301 ], [ -119.594810598999942, 49.462672716000107 ], [ -119.595116835999988, 49.461345193000085 ], [ -119.596035409999942, 49.457362695000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81451666", "BldgCostT": "49021666", "sL_LossRatio": "0.965073001901757", "sL_AssetLoss": "12186.8332", "sL_BldgLoss": "11761.1837", "sL_StrLoss": "11494.6034", "sL_NStrLoss": "266.5803", "sL_ContLoss": "425.6495", "geom_point": "0101000020E61000005D07721697E65DC020FCF63B35BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.600628480999916, 49.475209061000015 ], [ -119.600546526999963, 49.47366219400007 ], [ -119.601787540999936, 49.473634268000083 ], [ -119.601758965, 49.473095132000083 ], [ -119.601345298999945, 49.473104442000178 ], [ -119.601316727999944, 49.472565307000067 ], [ -119.600903064999926, 49.472574614000081 ], [ -119.600874498999985, 49.472035479 ], [ -119.60004718299993, 49.472054091000082 ], [ -119.599975795999939, 49.470706250000028 ], [ -119.600389442999969, 49.470696945000057 ], [ -119.6003751639999, 49.470427377000064 ], [ -119.599207226999965, 49.470453646000109 ], [ -119.599263753999978, 49.469767982000157 ], [ -119.599690906999967, 49.464525028000025 ], [ -119.600094604999953, 49.459140068000089 ], [ -119.600208579999943, 49.457811091000018 ], [ -119.600105993999975, 49.457874499000127 ], [ -119.599941799999911, 49.457975472000058 ], [ -119.599588222999955, 49.458119933000035 ], [ -119.599122568999988, 49.458048541000011 ], [ -119.598534940999926, 49.457847623000092 ], [ -119.597996618999971, 49.457853826000076 ], [ -119.597591553999905, 49.457986151000057 ], [ -119.597140662999934, 49.458234255000065 ], [ -119.597146115999976, 49.458142488000064 ], [ -119.597148201999971, 49.457998543000016 ], [ -119.596510151999965, 49.458459678000075 ], [ -119.596242060999955, 49.458660443000092 ], [ -119.596353279999903, 49.458161497000063 ], [ -119.596621337999949, 49.457362002000075 ], [ -119.596665097999974, 49.457361317000043 ], [ -119.596884625999934, 49.457356543000067 ], [ -119.59692221099999, 49.457200169000025 ], [ -119.596930876999934, 49.457164150000068 ], [ -119.599355212999981, 49.456988364000068 ], [ -119.600220077999893, 49.457097804000057 ], [ -119.600614253999936, 49.453137787000088 ], [ -119.600662482999965, 49.452602346000077 ], [ -119.602525776999968, 49.452446294000033 ], [ -119.603618083999919, 49.452303999000016 ], [ -119.604208898999929, 49.452168487000037 ], [ -119.604654375999957, 49.452066279000057 ], [ -119.605001892999937, 49.451979524000123 ], [ -119.606115179999932, 49.453779296000086 ], [ -119.606835039999979, 49.454942920000128 ], [ -119.606839573999949, 49.454948896000062 ], [ -119.608103522999926, 49.454635000000131 ], [ -119.608161088999935, 49.454618902000085 ], [ -119.608077383999941, 49.454967292000077 ], [ -119.607898205999945, 49.455717792 ], [ -119.607864071999984, 49.45586790800008 ], [ -119.60786402699992, 49.455868149000032 ], [ -119.60786392299994, 49.455868492000086 ], [ -119.607693508999915, 49.456637964000102 ], [ -119.607670725999967, 49.45690447600002 ], [ -119.60762663, 49.45690310800007 ], [ -119.607619464, 49.456933536000086 ], [ -119.607157896, 49.459048269000114 ], [ -119.606977821999948, 49.459798303000106 ], [ -119.606963047999955, 49.459859943000026 ], [ -119.60696313699999, 49.459860314000096 ], [ -119.606900781999954, 49.460138137000115 ], [ -119.606815953999941, 49.460516852000076 ], [ -119.606813951999968, 49.460525808000071 ], [ -119.60681193299996, 49.460534683000063 ], [ -119.606564110999898, 49.461641659000058 ], [ -119.606562215999944, 49.461650583000029 ], [ -119.606560233999943, 49.461659447000045 ], [ -119.605376791999944, 49.466951439000077 ], [ -119.60537540199999, 49.46695132200005 ], [ -119.605365358999975, 49.466997898000081 ], [ -119.605365229999919, 49.466998450000091 ], [ -119.605335613999941, 49.467135722000094 ], [ -119.605331536, 49.467135200000065 ], [ -119.605157616000014, 49.46808611400013 ], [ -119.604647266999919, 49.470101918000118 ], [ -119.604380391999939, 49.470837593000041 ], [ -119.60425144499996, 49.471766160000058 ], [ -119.604347286999925, 49.472753183000108 ], [ -119.604881267999929, 49.475295059000096 ], [ -119.60316137699999, 49.474748598000083 ], [ -119.601519062999984, 49.475204508000054 ], [ -119.600628480999916, 49.475209061000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999925699896602", "sL_AssetLoss": "106.05638", "sL_BldgLoss": "106.0485", "sL_StrLoss": "106", "sL_NStrLoss": "0.0485", "sL_ContLoss": "0.00788", "geom_point": "0101000020E6100000B5CEAE315EE65DC0A7BE3D19ADBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.599006589999973, 49.472887160000099 ], [ -119.600090015999939, 49.472862795000012 ], [ -119.600189972999942, 49.474749772000081 ], [ -119.599776291999959, 49.474759076000076 ], [ -119.599800347999974, 49.475213288000042 ], [ -119.598814370999932, 49.475218311000042 ], [ -119.599006589999973, 49.472887160000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98097084", "BldgCostT": "65288334", "sL_LossRatio": "0.980194747453255", "sL_AssetLoss": "16024.1582", "sL_BldgLoss": "15706.7957", "sL_StrLoss": "15561.0279", "sL_NStrLoss": "145.7678", "sL_ContLoss": "317.3625", "geom_point": "0101000020E61000006C5EE53BBEE55DC0E57BFC9419BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.585083200999975, 49.470948002000021 ], [ -119.585613411999987, 49.470053397000129 ], [ -119.58587449, 49.470136696000075 ], [ -119.587445096999915, 49.469913601000059 ], [ -119.587902592999953, 49.469846979000089 ], [ -119.589274983999928, 49.469647099000092 ], [ -119.589763184999981, 49.469581198000121 ], [ -119.590105100999935, 49.469502006000035 ], [ -119.590412809999947, 49.46938019100002 ], [ -119.590541295999941, 49.469302014000071 ], [ -119.590303415, 49.469101788000039 ], [ -119.59016839399996, 49.46892760500009 ], [ -119.590066796999935, 49.46871289900011 ], [ -119.590006760999955, 49.468534892000079 ], [ -119.589972146999955, 49.468432266000072 ], [ -119.589475801, 49.466960487000087 ], [ -119.58941751199994, 49.466683299000088 ], [ -119.589507200999918, 49.466615395000126 ], [ -119.590380010999951, 49.466481001000076 ], [ -119.59214899499996, 49.466233508000059 ], [ -119.592295914, 49.466670401000052 ], [ -119.592450196999934, 49.467133990000072 ], [ -119.592446609999982, 49.467259285000118 ], [ -119.592438479999942, 49.4674169890001 ], [ -119.592290315999904, 49.46765584100006 ], [ -119.592285020999981, 49.467664403000086 ], [ -119.591736209999979, 49.46820648400012 ], [ -119.591672402999947, 49.468266904000124 ], [ -119.591268176999947, 49.468664789000073 ], [ -119.592118317999919, 49.469042187000106 ], [ -119.592416486999952, 49.469208013000063 ], [ -119.592741394999976, 49.46938991100005 ], [ -119.592877903999963, 49.469503683000021 ], [ -119.593206128999938, 49.469853810000181 ], [ -119.593315502999957, 49.469970509000071 ], [ -119.593422920999942, 49.470114094000095 ], [ -119.593602989999965, 49.470580996000066 ], [ -119.591710496999951, 49.470852837000024 ], [ -119.590941643999926, 49.470963247000086 ], [ -119.590804231999954, 49.470982980000031 ], [ -119.589750607999974, 49.471134302000038 ], [ -119.587199826999893, 49.471500759000051 ], [ -119.585926285999918, 49.471683708000121 ], [ -119.584533283999946, 49.471883896000072 ], [ -119.585083200999975, 49.470948002000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143985146", "BldgCostT": "89637481", "sL_LossRatio": "0.984471909085439", "sL_AssetLoss": "19149.0247279", "sL_BldgLoss": "18851.676931", "sL_StrLoss": "18743.029591", "sL_NStrLoss": "108.64734", "sL_ContLoss": "297.3477969", "geom_point": "0101000020E6100000D58EF2FE85E55DC0B35BD3D500BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582465593999984, 49.471828988000013 ], [ -119.582187319999946, 49.47177905700007 ], [ -119.581876983999905, 49.47180039800007 ], [ -119.581364880999928, 49.470328109000043 ], [ -119.581087116999953, 49.469500392000043 ], [ -119.581768223999958, 49.46939936700003 ], [ -119.583095328999931, 49.469202504000073 ], [ -119.584435259999964, 49.469003714000074 ], [ -119.58555151299997, 49.467141470000087 ], [ -119.585957634999943, 49.466455528000061 ], [ -119.586269209999955, 49.465929291000101 ], [ -119.586326366999941, 49.465944789000019 ], [ -119.586375893999914, 49.465958204000032 ], [ -119.587271786999921, 49.466185714000041 ], [ -119.588077114999948, 49.466079003000083 ], [ -119.591904218999957, 49.46550529000011 ], [ -119.59214899499996, 49.466233508000059 ], [ -119.590380010999951, 49.466481001000076 ], [ -119.589507200999918, 49.466615395000126 ], [ -119.58941751199994, 49.466683299000088 ], [ -119.589475801, 49.466960487000087 ], [ -119.589972146999955, 49.468432266000072 ], [ -119.590006760999955, 49.468534892000079 ], [ -119.590066796999935, 49.46871289900011 ], [ -119.59016839399996, 49.46892760500009 ], [ -119.590303415, 49.469101788000039 ], [ -119.590541295999941, 49.469302014000071 ], [ -119.590412809999947, 49.46938019100002 ], [ -119.590105100999935, 49.469502006000035 ], [ -119.589763184999981, 49.469581198000121 ], [ -119.589274983999928, 49.469647099000092 ], [ -119.587902592999953, 49.469846979000089 ], [ -119.587445096999915, 49.469913601000059 ], [ -119.58587449, 49.470136696000075 ], [ -119.585613411999987, 49.470053397000129 ], [ -119.585083200999975, 49.470948002000021 ], [ -119.584533283999946, 49.471883896000072 ], [ -119.58414005399996, 49.471940249000099 ], [ -119.583500105000027, 49.472031942000115 ], [ -119.583480906999966, 49.472034702 ], [ -119.582805008999941, 49.471966569000095 ], [ -119.582747763999961, 49.471950894000059 ], [ -119.582699633999965, 49.471937734000029 ], [ -119.582465593999984, 49.471828988000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134815584", "BldgCostT": "87458334", "sL_LossRatio": "0.989392189627985", "sL_AssetLoss": "11754.77555", "sL_BldgLoss": "11630.08312", "sL_StrLoss": "11582.45858", "sL_NStrLoss": "47.62454", "sL_ContLoss": "124.69243", "geom_point": "0101000020E61000005D7C12F139E55DC0C4C4B5F3E0BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.574335396999942, 49.469706694000081 ], [ -119.574430711, 49.469470192000117 ], [ -119.574861183999971, 49.469559898000071 ], [ -119.575092489999975, 49.469569190000129 ], [ -119.575331107999929, 49.469526388000126 ], [ -119.57550848599999, 49.469465599000102 ], [ -119.575896105999945, 49.469187804000079 ], [ -119.575925596, 49.469177012000031 ], [ -119.576184898999927, 49.4690820020001 ], [ -119.576480204999925, 49.469049904000073 ], [ -119.576787624999952, 49.469059096000095 ], [ -119.577232003999924, 49.469098983000087 ], [ -119.578090612999986, 49.469166296000033 ], [ -119.5789525819999, 49.469120793000087 ], [ -119.579308008999988, 49.469103886000021 ], [ -119.57986279699999, 49.469215385000048 ], [ -119.58020300799997, 49.469278093000128 ], [ -119.580467203999916, 49.469269387000082 ], [ -119.580983707999934, 49.469198807000069 ], [ -119.580880816999951, 49.468868618000016 ], [ -119.580806313999986, 49.468629629000105 ], [ -119.58036669799999, 49.467218898000084 ], [ -119.580429604999935, 49.467184708000104 ], [ -119.581523413999918, 49.467034589000079 ], [ -119.581720986999983, 49.467007513000027 ], [ -119.582148538999931, 49.466948607000084 ], [ -119.582624301999942, 49.466883104000019 ], [ -119.582733, 49.466867891000106 ], [ -119.583012100999937, 49.466829584000045 ], [ -119.583849413999943, 49.466714600000074 ], [ -119.583496589999967, 49.465659204000104 ], [ -119.583342969999947, 49.465201992000097 ], [ -119.583169001999963, 49.464682088000075 ], [ -119.583081022999949, 49.464422723000098 ], [ -119.582872587999958, 49.463808104000094 ], [ -119.585237207999967, 49.46347065700008 ], [ -119.58684829500001, 49.463240696000057 ], [ -119.587125992999987, 49.463234590000098 ], [ -119.587580908999954, 49.463226703000089 ], [ -119.587632492999958, 49.463225807000093 ], [ -119.587840296, 49.463254400000054 ], [ -119.587093764999935, 49.464525464000062 ], [ -119.586269209999955, 49.465929291000101 ], [ -119.585957634999943, 49.466455528000061 ], [ -119.58555151299997, 49.467141470000087 ], [ -119.584435259999964, 49.469003714000074 ], [ -119.583095328999931, 49.469202504000073 ], [ -119.581768223999958, 49.46939936700003 ], [ -119.581087116999953, 49.469500392000043 ], [ -119.581364880999928, 49.470328109000043 ], [ -119.580630476999886, 49.470529550000087 ], [ -119.580018977999941, 49.470697303000094 ], [ -119.577419108999919, 49.471401198000066 ], [ -119.576925597999946, 49.471534609000045 ], [ -119.575406238999932, 49.471956306000081 ], [ -119.574778296999952, 49.470561398000015 ], [ -119.57444559399994, 49.47001859100002 ], [ -119.574352501999925, 49.469862201000034 ], [ -119.574335396999942, 49.469706694000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148392334", "BldgCostT": "101073334", "sL_LossRatio": "0.999811596072014", "sL_AssetLoss": "9414.82494", "sL_BldgLoss": "9413.05115", "sL_StrLoss": "9397.49823", "sL_NStrLoss": "15.55292", "sL_ContLoss": "1.77379", "geom_point": "0101000020E6100000A13A0C9C22E55DC03FAF36CEBFBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.577232003999924, 49.469098983000087 ], [ -119.577264796999913, 49.468853394000028 ], [ -119.577078793999974, 49.468480098 ], [ -119.576955306999949, 49.468094311000087 ], [ -119.576614485000022, 49.467063992000114 ], [ -119.577830701999986, 49.466879593000023 ], [ -119.578309502999957, 49.466751704000082 ], [ -119.578410319999946, 49.466644785000035 ], [ -119.578427787999956, 49.46651929400015 ], [ -119.578173620999962, 49.465691203000112 ], [ -119.579806166999973, 49.465498969000031 ], [ -119.580400605999955, 49.465405978000028 ], [ -119.580833205999923, 49.465212094000044 ], [ -119.581147009999938, 49.464887391000111 ], [ -119.58131089699998, 49.464605310000081 ], [ -119.581463146999923, 49.464369256000019 ], [ -119.581542091999921, 49.464246796000069 ], [ -119.581666007999971, 49.464123208000089 ], [ -119.581855213999987, 49.464007003000049 ], [ -119.582172403999934, 49.463908878000048 ], [ -119.582305493000021, 49.463888191000095 ], [ -119.582872587999958, 49.463808104000094 ], [ -119.583081022999949, 49.464422723000098 ], [ -119.583169001999963, 49.464682088000075 ], [ -119.583342969999947, 49.465201992000097 ], [ -119.583496589999967, 49.465659204000104 ], [ -119.583849413999943, 49.466714600000074 ], [ -119.583012100999937, 49.466829584000045 ], [ -119.582733, 49.466867891000106 ], [ -119.582624301999942, 49.466883104000019 ], [ -119.582148538999931, 49.466948607000084 ], [ -119.581720986999983, 49.467007513000027 ], [ -119.581523413999918, 49.467034589000079 ], [ -119.580429604999935, 49.467184708000104 ], [ -119.58036669799999, 49.467218898000084 ], [ -119.580806313999986, 49.468629629000105 ], [ -119.580880816999951, 49.468868618000016 ], [ -119.580983707999934, 49.469198807000069 ], [ -119.580467203999916, 49.469269387000082 ], [ -119.58020300799997, 49.469278093000128 ], [ -119.57986279699999, 49.469215385000048 ], [ -119.579308008999988, 49.469103886000021 ], [ -119.5789525819999, 49.469120793000087 ], [ -119.578090612999986, 49.469166296000033 ], [ -119.577232003999924, 49.469098983000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142930760", "BldgCostT": "93523460", "sL_LossRatio": "0.969929133142456", "sL_AssetLoss": "6071.415961", "sL_BldgLoss": "5888.84322", "sL_StrLoss": "5818.98934", "sL_NStrLoss": "69.85388", "sL_ContLoss": "182.572741", "geom_point": "0101000020E61000005D882F8F4CE55DC06A19EB1327BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.585214005999944, 49.459319606000108 ], [ -119.58583601, 49.459246293000014 ], [ -119.585968700999928, 49.459630900000022 ], [ -119.586102282999974, 49.460018216000059 ], [ -119.586172499999932, 49.460220203000091 ], [ -119.586260215999957, 49.460474790000035 ], [ -119.586506760999967, 49.461189573000091 ], [ -119.58687690899994, 49.462259509000056 ], [ -119.587019907999974, 49.462674493000115 ], [ -119.587037833999972, 49.462769263000069 ], [ -119.587125992999987, 49.463234590000098 ], [ -119.58684829500001, 49.463240696000057 ], [ -119.585237207999967, 49.46347065700008 ], [ -119.582872587999958, 49.463808104000094 ], [ -119.582305493000021, 49.463888191000095 ], [ -119.582172403999934, 49.463908878000048 ], [ -119.581855213999987, 49.464007003000049 ], [ -119.581666007999971, 49.464123208000089 ], [ -119.581542091999921, 49.464246796000069 ], [ -119.581463146999923, 49.464369256000019 ], [ -119.58131089699998, 49.464605310000081 ], [ -119.581147009999938, 49.464887391000111 ], [ -119.580833205999923, 49.465212094000044 ], [ -119.580400605999955, 49.465405978000028 ], [ -119.579806166999973, 49.465498969000031 ], [ -119.579427251999974, 49.464335466000101 ], [ -119.579415790999946, 49.464300395000073 ], [ -119.57914551499999, 49.463470443000048 ], [ -119.579116275999965, 49.463380784000101 ], [ -119.579075804999917, 49.463256494000106 ], [ -119.579070171999945, 49.463239155000082 ], [ -119.578984062999936, 49.462974745000047 ], [ -119.578855413999975, 49.462587353000089 ], [ -119.578816337999982, 49.462469710000093 ], [ -119.578711914999943, 49.462156297000057 ], [ -119.578571423, 49.461726828000053 ], [ -119.578479018999957, 49.461444203000013 ], [ -119.579080589999961, 49.461347993000082 ], [ -119.580192008999944, 49.461189892000043 ], [ -119.580337115999896, 49.461062998000052 ], [ -119.580523117999974, 49.460771171000047 ], [ -119.580585083999935, 49.460673906000103 ], [ -119.580834215999943, 49.460574800000032 ], [ -119.581328327000023, 49.460505702000049 ], [ -119.581651879000034, 49.46036859500007 ], [ -119.581894389999917, 49.460148096000182 ], [ -119.582119305, 49.460043987000077 ], [ -119.582518599999958, 49.459989092000107 ], [ -119.583610098999927, 49.459824294000072 ], [ -119.583747392999925, 49.459742997000056 ], [ -119.583872511999957, 49.459560701000086 ], [ -119.584035390999986, 49.459483701000096 ], [ -119.585214005999944, 49.459319606000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176080562", "BldgCostT": "114468191", "sL_LossRatio": "0.993903906949734", "sL_AssetLoss": "8726.900912", "sL_BldgLoss": "8673.700912", "sL_StrLoss": "8654.500912", "sL_NStrLoss": "19.2", "sL_ContLoss": "53.2", "geom_point": "0101000020E61000001F03C303D4E45DC0FD8D2B050FBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.573387645999972, 49.454865502000054 ], [ -119.573823596999929, 49.455063972000062 ], [ -119.573993543999947, 49.455095747000072 ], [ -119.57420095699996, 49.455067418000112 ], [ -119.575335948999935, 49.454639756000091 ], [ -119.575557964999987, 49.454615904000043 ], [ -119.57591200499995, 49.454651453000075 ], [ -119.576086166999943, 49.45466894500003 ], [ -119.576768540999964, 49.454599270000081 ], [ -119.577062903999931, 49.454612219000119 ], [ -119.577235726999973, 49.45469296000006 ], [ -119.577248406999928, 49.454704072 ], [ -119.577252508999933, 49.454707681000102 ], [ -119.577470042999948, 49.454898417000031 ], [ -119.577619753999912, 49.455134971000064 ], [ -119.577758768999985, 49.455279650000058 ], [ -119.577990356999919, 49.455435238000057 ], [ -119.578152749000012, 49.45550447100009 ], [ -119.578266002999925, 49.455552762000146 ], [ -119.578352219999942, 49.455589530000054 ], [ -119.578783494, 49.455682904000064 ], [ -119.57854580299994, 49.456633694000068 ], [ -119.578181881, 49.458082900000079 ], [ -119.578009079999944, 49.458767323000053 ], [ -119.577866814999936, 49.459330782000116 ], [ -119.577909885999986, 49.459707397000102 ], [ -119.578163130999954, 49.460480272000034 ], [ -119.578180530999958, 49.460533356000099 ], [ -119.578479018999957, 49.461444203000013 ], [ -119.578571423, 49.461726828000053 ], [ -119.578711914999943, 49.462156297000057 ], [ -119.578816337999982, 49.462469710000093 ], [ -119.578855413999975, 49.462587353000089 ], [ -119.578984062999936, 49.462974745000047 ], [ -119.579070171999945, 49.463239155000082 ], [ -119.579075804999917, 49.463256494000106 ], [ -119.579116275999965, 49.463380784000101 ], [ -119.57914551499999, 49.463470443000048 ], [ -119.579415790999946, 49.464300395000073 ], [ -119.579427251999974, 49.464335466000101 ], [ -119.579806166999973, 49.465498969000031 ], [ -119.578173620999962, 49.465691203000112 ], [ -119.578028482999954, 49.465708809000034 ], [ -119.577102813999929, 49.466061832000022 ], [ -119.575978704999955, 49.466490484000083 ], [ -119.575624292999933, 49.466569696000079 ], [ -119.575013183999971, 49.466613800000047 ], [ -119.574181406999941, 49.466622192000067 ], [ -119.573727384999984, 49.466571798000146 ], [ -119.573615372999924, 49.466540827000074 ], [ -119.573465351999985, 49.466499388000024 ], [ -119.573027603999932, 49.466378397 ], [ -119.57278411499999, 49.46633780300003 ], [ -119.572513323999956, 49.466324421000124 ], [ -119.571232725999906, 49.466453426000093 ], [ -119.57083081399999, 49.466645439000061 ], [ -119.570686837999986, 49.466684735000051 ], [ -119.570567998999977, 49.466643343000086 ], [ -119.570589043999973, 49.466570708000127 ], [ -119.570602722999951, 49.466523441000092 ], [ -119.570695995999984, 49.466430519000021 ], [ -119.571203193999935, 49.46608934100005 ], [ -119.571214034999983, 49.466049322000067 ], [ -119.571246197999969, 49.465930168000064 ], [ -119.571167208999924, 49.465752022000032 ], [ -119.570949606999989, 49.465506009000052 ], [ -119.5706827899999, 49.465324827000082 ], [ -119.570234864, 49.46512201900007 ], [ -119.570148778999936, 49.465044636000115 ], [ -119.570141682000013, 49.464986385000032 ], [ -119.570197616999934, 49.464912905000112 ], [ -119.570475725999984, 49.464755093000065 ], [ -119.570485938999937, 49.4647296280001 ], [ -119.570671064999928, 49.464267995000071 ], [ -119.57077239899999, 49.464106773 ], [ -119.570848981, 49.463984934000038 ], [ -119.571647856999959, 49.463078175000113 ], [ -119.572504161999944, 49.462106181000124 ], [ -119.572649949999956, 49.461940694000084 ], [ -119.573118682999947, 49.461408573000057 ], [ -119.573272888999952, 49.461196390000033 ], [ -119.573270878999949, 49.461111361000121 ], [ -119.573206155999941, 49.461029802000041 ], [ -119.573069744999884, 49.460965675000089 ], [ -119.572724657999942, 49.46088917700007 ], [ -119.572651949999951, 49.460836381000057 ], [ -119.572621614999917, 49.460814388000102 ], [ -119.57259514899998, 49.460706208000047 ], [ -119.572710376999964, 49.460564892000093 ], [ -119.572923057999958, 49.460459187000055 ], [ -119.57311517, 49.46032242100005 ], [ -119.573284312999988, 49.460151777000085 ], [ -119.573383554999936, 49.460005887000108 ], [ -119.573393191999955, 49.459867338000066 ], [ -119.573195978999976, 49.45932619400002 ], [ -119.573285756999951, 49.459099353000042 ], [ -119.573362117999977, 49.458981068000128 ], [ -119.573532927999949, 49.458716530000132 ], [ -119.573545422999942, 49.458577227000042 ], [ -119.573319751999961, 49.458091301000124 ], [ -119.573338919999983, 49.457542962000105 ], [ -119.57334335799996, 49.457416040000098 ], [ -119.57339467599995, 49.457226641000055 ], [ -119.573502674999958, 49.457076559000051 ], [ -119.573750057999945, 49.456732784000053 ], [ -119.574117726999987, 49.456388731000089 ], [ -119.574201371999948, 49.456235592000013 ], [ -119.574240968999973, 49.45604100500001 ], [ -119.574203809999972, 49.455811120000078 ], [ -119.57405028, 49.455483076000121 ], [ -119.57392662299992, 49.45534744600009 ], [ -119.573424412999884, 49.455028489000028 ], [ -119.57336317, 49.454941732000094 ], [ -119.573387645999972, 49.454865502000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167021333", "BldgCostT": "114923333", "sL_LossRatio": "0.999955868433528", "sL_AssetLoss": "21746.56548", "sL_BldgLoss": "21745.60577", "sL_StrLoss": "21740.00317", "sL_NStrLoss": "5.6026", "sL_ContLoss": "0.95971", "geom_point": "0101000020E61000007421DAB728E55DC071E50DACBABA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.577866814999936, 49.459330782000116 ], [ -119.578009079999944, 49.458767323000053 ], [ -119.578181881, 49.458082900000079 ], [ -119.57854580299994, 49.456633694000068 ], [ -119.580470249999962, 49.456610882000113 ], [ -119.580994187999977, 49.456604653000056 ], [ -119.581159089999943, 49.456602693000015 ], [ -119.583529997999918, 49.456572603000033 ], [ -119.583549095999928, 49.456955028000031 ], [ -119.583559599999958, 49.457165197000045 ], [ -119.583226816999968, 49.457239404000106 ], [ -119.582417288999963, 49.457238388000093 ], [ -119.581753006999946, 49.457257696000049 ], [ -119.581633589, 49.457300297000124 ], [ -119.58158959899994, 49.457387111000088 ], [ -119.582164779999943, 49.459070900000036 ], [ -119.582262793999988, 49.459112889000053 ], [ -119.582365408999976, 49.459121687000078 ], [ -119.583411205999965, 49.458966895000074 ], [ -119.584234, 49.458853089000037 ], [ -119.585303198999895, 49.458698806000079 ], [ -119.585471699999985, 49.458592190000012 ], [ -119.585690394999972, 49.458831092000068 ], [ -119.58583601, 49.459246293000014 ], [ -119.585214005999944, 49.459319606000108 ], [ -119.584035390999986, 49.459483701000096 ], [ -119.583872511999957, 49.459560701000086 ], [ -119.583747392999925, 49.459742997000056 ], [ -119.583610098999927, 49.459824294000072 ], [ -119.582518599999958, 49.459989092000107 ], [ -119.582119305, 49.460043987000077 ], [ -119.581894389999917, 49.460148096000182 ], [ -119.581651879000034, 49.46036859500007 ], [ -119.581328327000023, 49.460505702000049 ], [ -119.580834215999943, 49.460574800000032 ], [ -119.580585083999935, 49.460673906000103 ], [ -119.580523117999974, 49.460771171000047 ], [ -119.580337115999896, 49.461062998000052 ], [ -119.580192008999944, 49.461189892000043 ], [ -119.579080589999961, 49.461347993000082 ], [ -119.578479018999957, 49.461444203000013 ], [ -119.578180530999958, 49.460533356000099 ], [ -119.578163130999954, 49.460480272000034 ], [ -119.577909885999986, 49.459707397000102 ], [ -119.577866814999936, 49.459330782000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "421227903", "BldgCostT": "281982308", "sL_LossRatio": "0.968622149107262", "sL_AssetLoss": "16438.695587", "sL_BldgLoss": "15922.884648", "sL_StrLoss": "15733.477038", "sL_NStrLoss": "189.40761", "sL_ContLoss": "515.810939", "geom_point": "0101000020E6100000272A6E1E7FE55DC008CECFC3BFBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.587125992999987, 49.463234590000098 ], [ -119.587037833999972, 49.462769263000069 ], [ -119.587019907999974, 49.462674493000115 ], [ -119.58687690899994, 49.462259509000056 ], [ -119.586506760999967, 49.461189573000091 ], [ -119.586260215999957, 49.460474790000035 ], [ -119.586172499999932, 49.460220203000091 ], [ -119.586102282999974, 49.460018216000059 ], [ -119.585968700999928, 49.459630900000022 ], [ -119.58583601, 49.459246293000014 ], [ -119.585690394999972, 49.458831092000068 ], [ -119.585471699999985, 49.458592190000012 ], [ -119.585303198999895, 49.458698806000079 ], [ -119.584234, 49.458853089000037 ], [ -119.583411205999965, 49.458966895000074 ], [ -119.582365408999976, 49.459121687000078 ], [ -119.582262793999988, 49.459112889000053 ], [ -119.582164779999943, 49.459070900000036 ], [ -119.58158959899994, 49.457387111000088 ], [ -119.581633589, 49.457300297000124 ], [ -119.581753006999946, 49.457257696000049 ], [ -119.582417288999963, 49.457238388000093 ], [ -119.583226816999968, 49.457239404000106 ], [ -119.583559599999958, 49.457165197000045 ], [ -119.583549095999928, 49.456955028000031 ], [ -119.583529997999918, 49.456572603000033 ], [ -119.583725168999976, 49.456570280000115 ], [ -119.58518716699993, 49.456552953000028 ], [ -119.58583523799993, 49.456545268000092 ], [ -119.586614615999949, 49.456536013000118 ], [ -119.587230407999982, 49.456487587000026 ], [ -119.587450354999959, 49.457101675000104 ], [ -119.58791620599996, 49.458402004000057 ], [ -119.588382021999934, 49.459757658000072 ], [ -119.588442413999971, 49.459933445000125 ], [ -119.588602893999933, 49.460400492000083 ], [ -119.588554275999954, 49.460928800000026 ], [ -119.588357913999928, 49.462171104000106 ], [ -119.58826680599999, 49.46227858700005 ], [ -119.588160800999916, 49.462682514000043 ], [ -119.587845092999942, 49.463245875000034 ], [ -119.587840296, 49.463254400000054 ], [ -119.587632492999958, 49.463225807000093 ], [ -119.587580908999954, 49.463226703000089 ], [ -119.587125992999987, 49.463234590000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47038666", "BldgCostT": "32176666", "sL_LossRatio": "0.999988132527408", "sL_AssetLoss": "6571.407635", "sL_BldgLoss": "6571.329649", "sL_StrLoss": "6571.000609", "sL_NStrLoss": "0.32904", "sL_ContLoss": "0.077986", "geom_point": "0101000020E6100000B2AA462B4EE55DC0399291D43EBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.584332793999948, 49.453281015000051 ], [ -119.586283603999931, 49.453146594000017 ], [ -119.586277656999954, 49.453281224000087 ], [ -119.586268310999969, 49.453386710000075 ], [ -119.586287728999963, 49.453610128000086 ], [ -119.586340935999942, 49.453833849 ], [ -119.586407396999945, 49.454048267000147 ], [ -119.586457715999956, 49.454218077000121 ], [ -119.586505716999909, 49.454342945000036 ], [ -119.586520431999986, 49.45436062100007 ], [ -119.586585038999914, 49.454539095000072 ], [ -119.586650593999963, 49.454735536000058 ], [ -119.586667664999965, 49.454798144000094 ], [ -119.586733219999957, 49.454994586000026 ], [ -119.58673416399999, 49.455012552000042 ], [ -119.586770269999974, 49.455173676000129 ], [ -119.586815881999968, 49.455253623000011 ], [ -119.58687431899989, 49.455315312000067 ], [ -119.58694562, 49.455358675000085 ], [ -119.586954810999956, 49.455425491 ], [ -119.586967015999903, 49.455514756000106 ], [ -119.586979293999946, 49.455603998000058 ], [ -119.586991536999989, 49.455693252000039 ], [ -119.587003812999953, 49.455782495000093 ], [ -119.587016054999978, 49.455871748000057 ], [ -119.587018893999954, 49.455892546000051 ], [ -119.587034057999972, 49.455960104000077 ], [ -119.587053782999959, 49.456048250000038 ], [ -119.587073513999925, 49.456136282000102 ], [ -119.587093221999964, 49.456224405000057 ], [ -119.587112981999923, 49.456312539000024 ], [ -119.587132743999959, 49.456400675000019 ], [ -119.587230407999982, 49.456487587000026 ], [ -119.586614615999949, 49.456536013000118 ], [ -119.58583523799993, 49.456545268000092 ], [ -119.58518716699993, 49.456552953000028 ], [ -119.583725168999976, 49.456570280000115 ], [ -119.583529997999918, 49.456572603000033 ], [ -119.581159089999943, 49.456602693000015 ], [ -119.580994187999977, 49.456604653000056 ], [ -119.580470249999962, 49.456610882000113 ], [ -119.57854580299994, 49.456633694000068 ], [ -119.578783494, 49.455682904000064 ], [ -119.57883341199998, 49.45549341 ], [ -119.57907364799992, 49.454544739 ], [ -119.579306913999943, 49.453623705000091 ], [ -119.582640891999944, 49.453394686000131 ], [ -119.584332793999948, 49.453281015000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "631885152", "BldgCostT": "425363930", "sL_LossRatio": "0.875250833876952", "sL_AssetLoss": "22689.6186", "sL_BldgLoss": "19859.1076", "sL_StrLoss": "18249.1816", "sL_NStrLoss": "1609.926", "sL_ContLoss": "2830.511", "geom_point": "0101000020E6100000815DFB9FCFE55DC0282171F24FBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.588160800999916, 49.462682514000043 ], [ -119.58826680599999, 49.46227858700005 ], [ -119.588357913999928, 49.462171104000106 ], [ -119.588554275999954, 49.460928800000026 ], [ -119.589964206, 49.46071061700011 ], [ -119.590253747999895, 49.460665814000038 ], [ -119.590947798999963, 49.460558393000028 ], [ -119.592122291999914, 49.460384110000092 ], [ -119.592365303999912, 49.460348799000023 ], [ -119.592366082999945, 49.460427965000079 ], [ -119.592368509999972, 49.46067418800007 ], [ -119.59422551599999, 49.46042910100001 ], [ -119.594329096999928, 49.460440691 ], [ -119.594393403999945, 49.460495999000024 ], [ -119.594076713999968, 49.461778194000026 ], [ -119.593992217999954, 49.461818299000129 ], [ -119.592353285999963, 49.462027505000044 ], [ -119.592321397999967, 49.462724894000154 ], [ -119.592364599999939, 49.462720012000034 ], [ -119.593143174999966, 49.462631890000047 ], [ -119.593317085999942, 49.462612192000059 ], [ -119.593764313999941, 49.462601696 ], [ -119.594616, 49.462658411000113 ], [ -119.594664671999965, 49.462661974000063 ], [ -119.594702091999949, 49.462664722000085 ], [ -119.594810598999942, 49.462672716000107 ], [ -119.594246283999937, 49.465108301 ], [ -119.594235564999934, 49.465185455000096 ], [ -119.594108116999962, 49.465203138000049 ], [ -119.593942355999928, 49.465226151000074 ], [ -119.593791457999941, 49.465246554000075 ], [ -119.593640412999918, 49.465267001000022 ], [ -119.593489368999883, 49.465287446000076 ], [ -119.593338451999955, 49.465307883000051 ], [ -119.593187442999962, 49.465328318000097 ], [ -119.593036399999932, 49.465348764000048 ], [ -119.592885499999937, 49.465369164000116 ], [ -119.592852787999945, 49.465373616000093 ], [ -119.592745703999952, 49.465388466000043 ], [ -119.591904218999957, 49.46550529000011 ], [ -119.588077114999948, 49.466079003000083 ], [ -119.587271786999921, 49.466185714000041 ], [ -119.586375893999914, 49.465958204000032 ], [ -119.586326366999941, 49.465944789000019 ], [ -119.586269209999955, 49.465929291000101 ], [ -119.587093764999935, 49.464525464000062 ], [ -119.587840296, 49.463254400000054 ], [ -119.587845092999942, 49.463245875000034 ], [ -119.588160800999916, 49.462682514000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124843811", "BldgCostT": "82588190", "sL_LossRatio": "0.996576014617927", "sL_AssetLoss": "12301.36677", "sL_BldgLoss": "12259.24707", "sL_StrLoss": "12243.90627", "sL_NStrLoss": "15.3408", "sL_ContLoss": "42.1197", "geom_point": "0101000020E6100000ECF59B478DE45DC07B4E614258BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.571223693999954, 49.470407205000058 ], [ -119.571257197999941, 49.469571695000106 ], [ -119.570951785999952, 49.469558101000089 ], [ -119.570179579999916, 49.46937669900008 ], [ -119.569906504999906, 49.469260219000034 ], [ -119.569258403999967, 49.468745512000069 ], [ -119.569092714999954, 49.468593799000075 ], [ -119.568829212, 49.468051505000027 ], [ -119.5686975079999, 49.467904501000135 ], [ -119.568526681, 49.467782731000064 ], [ -119.568513568999919, 49.467773395000108 ], [ -119.56820262299999, 49.467651001000092 ], [ -119.567638108999915, 49.467499995000026 ], [ -119.567598084999929, 49.467483832 ], [ -119.56727120499994, 49.467351679000096 ], [ -119.567008230999988, 49.467162564 ], [ -119.566863635999979, 49.466958869000052 ], [ -119.566734871999955, 49.46678046100007 ], [ -119.566487921, 49.46627880100008 ], [ -119.566464333999974, 49.466257597000073 ], [ -119.56635088099992, 49.466155472000054 ], [ -119.566293883999947, 49.466104123000058 ], [ -119.566266574999972, 49.466079534000116 ], [ -119.566067155, 49.46597838700005 ], [ -119.566022863999976, 49.465955939000018 ], [ -119.565967909, 49.465928068000068 ], [ -119.565886964999947, 49.465908874000093 ], [ -119.56563694, 49.465849638000087 ], [ -119.56543405099994, 49.465845510000058 ], [ -119.565174487999982, 49.465840200000059 ], [ -119.564926640999914, 49.465872353000073 ], [ -119.56487840799997, 49.465878605000128 ], [ -119.564803453999986, 49.465741332000036 ], [ -119.565258567999962, 49.464940868000042 ], [ -119.566165215999931, 49.463829391000054 ], [ -119.566474519999971, 49.463450216000084 ], [ -119.566929575999936, 49.462689462000071 ], [ -119.567302241, 49.46233037800009 ], [ -119.567928289999884, 49.461928815000071 ], [ -119.56817492699993, 49.46177062000006 ], [ -119.568616039999966, 49.461566238000053 ], [ -119.56866224399991, 49.460853400000069 ], [ -119.568643314999974, 49.459354983000019 ], [ -119.569887982999916, 49.459428985000088 ], [ -119.56988843799999, 49.459425727000102 ], [ -119.569989113999966, 49.459431712 ], [ -119.570298612999963, 49.457213649000046 ], [ -119.569857551999959, 49.457187427000122 ], [ -119.570115654999967, 49.455337660000062 ], [ -119.568591426999944, 49.455247028000102 ], [ -119.568587736999959, 49.454954816000104 ], [ -119.573387645999972, 49.454865502000054 ], [ -119.57336317, 49.454941732000094 ], [ -119.573424412999884, 49.455028489000028 ], [ -119.57392662299992, 49.45534744600009 ], [ -119.57405028, 49.455483076000121 ], [ -119.574203809999972, 49.455811120000078 ], [ -119.574240968999973, 49.45604100500001 ], [ -119.574201371999948, 49.456235592000013 ], [ -119.574117726999987, 49.456388731000089 ], [ -119.573750057999945, 49.456732784000053 ], [ -119.573502674999958, 49.457076559000051 ], [ -119.57339467599995, 49.457226641000055 ], [ -119.57334335799996, 49.457416040000098 ], [ -119.573338919999983, 49.457542962000105 ], [ -119.573319751999961, 49.458091301000124 ], [ -119.573545422999942, 49.458577227000042 ], [ -119.573532927999949, 49.458716530000132 ], [ -119.573362117999977, 49.458981068000128 ], [ -119.573285756999951, 49.459099353000042 ], [ -119.573195978999976, 49.45932619400002 ], [ -119.573393191999955, 49.459867338000066 ], [ -119.573383554999936, 49.460005887000108 ], [ -119.573284312999988, 49.460151777000085 ], [ -119.57311517, 49.46032242100005 ], [ -119.572923057999958, 49.460459187000055 ], [ -119.572710376999964, 49.460564892000093 ], [ -119.57259514899998, 49.460706208000047 ], [ -119.572621614999917, 49.460814388000102 ], [ -119.572651949999951, 49.460836381000057 ], [ -119.572724657999942, 49.46088917700007 ], [ -119.573069744999884, 49.460965675000089 ], [ -119.573206155999941, 49.461029802000041 ], [ -119.573270878999949, 49.461111361000121 ], [ -119.573272888999952, 49.461196390000033 ], [ -119.573118682999947, 49.461408573000057 ], [ -119.572649949999956, 49.461940694000084 ], [ -119.572504161999944, 49.462106181000124 ], [ -119.571647856999959, 49.463078175000113 ], [ -119.570848981, 49.463984934000038 ], [ -119.57077239899999, 49.464106773 ], [ -119.570671064999928, 49.464267995000071 ], [ -119.570485938999937, 49.4647296280001 ], [ -119.570475725999984, 49.464755093000065 ], [ -119.570197616999934, 49.464912905000112 ], [ -119.570141682000013, 49.464986385000032 ], [ -119.570148778999936, 49.465044636000115 ], [ -119.570234864, 49.46512201900007 ], [ -119.5706827899999, 49.465324827000082 ], [ -119.570949606999989, 49.465506009000052 ], [ -119.571167208999924, 49.465752022000032 ], [ -119.571246197999969, 49.465930168000064 ], [ -119.571214034999983, 49.466049322000067 ], [ -119.571203193999935, 49.46608934100005 ], [ -119.570695995999984, 49.466430519000021 ], [ -119.570602722999951, 49.466523441000092 ], [ -119.570589043999973, 49.466570708000127 ], [ -119.570567998999977, 49.466643343000086 ], [ -119.570686837999986, 49.466684735000051 ], [ -119.57083081399999, 49.466645439000061 ], [ -119.571232725999906, 49.466453426000093 ], [ -119.572513323999956, 49.466324421000124 ], [ -119.57278411499999, 49.46633780300003 ], [ -119.573027603999932, 49.466378397 ], [ -119.573465351999985, 49.466499388000024 ], [ -119.573615372999924, 49.466540827000074 ], [ -119.573727384999984, 49.466571798000146 ], [ -119.574181406999941, 49.466622192000067 ], [ -119.575013183999971, 49.466613800000047 ], [ -119.575624292999933, 49.466569696000079 ], [ -119.575978704999955, 49.466490484000083 ], [ -119.577102813999929, 49.466061832000022 ], [ -119.578028482999954, 49.465708809000034 ], [ -119.578173620999962, 49.465691203000112 ], [ -119.578427787999956, 49.46651929400015 ], [ -119.578410319999946, 49.466644785000035 ], [ -119.578309502999957, 49.466751704000082 ], [ -119.577830701999986, 49.466879593000023 ], [ -119.576614485000022, 49.467063992000114 ], [ -119.576955306999949, 49.468094311000087 ], [ -119.577078793999974, 49.468480098 ], [ -119.577264796999913, 49.468853394000028 ], [ -119.577232003999924, 49.469098983000087 ], [ -119.576787624999952, 49.469059096000095 ], [ -119.576480204999925, 49.469049904000073 ], [ -119.576184898999927, 49.4690820020001 ], [ -119.575925596, 49.469177012000031 ], [ -119.575896105999945, 49.469187804000079 ], [ -119.57550848599999, 49.469465599000102 ], [ -119.575331107999929, 49.469526388000126 ], [ -119.575092489999975, 49.469569190000129 ], [ -119.574861183999971, 49.469559898000071 ], [ -119.574430711, 49.469470192000117 ], [ -119.574335396999942, 49.469706694000081 ], [ -119.574352501999925, 49.469862201000034 ], [ -119.57444559399994, 49.47001859100002 ], [ -119.573819182999955, 49.470162095000056 ], [ -119.573481293999961, 49.470172693000052 ], [ -119.573200716, 49.47018870200003 ], [ -119.572789304999958, 49.470200280000036 ], [ -119.572444994999955, 49.470256594000062 ], [ -119.572377888999966, 49.470301387000056 ], [ -119.572351707999971, 49.470886192000087 ], [ -119.571206302999926, 49.470878690000063 ], [ -119.571223693999954, 49.470407205000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273869335", "BldgCostT": "182243335", "sL_LossRatio": "0.999985334103479", "sL_AssetLoss": "20424.867963", "sL_BldgLoss": "20424.568414", "sL_StrLoss": "20422.941504", "sL_NStrLoss": "1.62691", "sL_ContLoss": "0.299549", "geom_point": "0101000020E61000007F9B49C429E45DC02E45C1A546BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.561151104999951, 49.469963608000079 ], [ -119.561312392999966, 49.469770806000035 ], [ -119.561851275999913, 49.469906802000082 ], [ -119.562197519, 49.469926494000049 ], [ -119.562593396999986, 49.469866906000085 ], [ -119.563297908999985, 49.469690183000068 ], [ -119.563906163999931, 49.469498699000027 ], [ -119.563993874999937, 49.46930699300006 ], [ -119.564248375999981, 49.46912971700003 ], [ -119.564655655999971, 49.468995812000067 ], [ -119.564730193999964, 49.468971310000079 ], [ -119.564893300999984, 49.468844593000043 ], [ -119.564998040999981, 49.468585417000043 ], [ -119.565252985999933, 49.467954390000095 ], [ -119.565383367999956, 49.467704783000102 ], [ -119.565593079999985, 49.467303304000069 ], [ -119.5657953, 49.466916103000088 ], [ -119.565911704999976, 49.466776690000046 ], [ -119.566002460999982, 49.46672586600009 ], [ -119.566013813999916, 49.466719501000071 ], [ -119.566666998999978, 49.466774760000064 ], [ -119.566734871999955, 49.46678046100007 ], [ -119.566863635999979, 49.466958869000052 ], [ -119.567008230999988, 49.467162564 ], [ -119.56727120499994, 49.467351679000096 ], [ -119.567598084999929, 49.467483832 ], [ -119.567638108999915, 49.467499995000026 ], [ -119.56820262299999, 49.467651001000092 ], [ -119.568513568999919, 49.467773395000108 ], [ -119.568526681, 49.467782731000064 ], [ -119.5686975079999, 49.467904501000135 ], [ -119.568829212, 49.468051505000027 ], [ -119.569092714999954, 49.468593799000075 ], [ -119.569258403999967, 49.468745512000069 ], [ -119.569906504999906, 49.469260219000034 ], [ -119.570179579999916, 49.46937669900008 ], [ -119.570951785999952, 49.469558101000089 ], [ -119.571257197999941, 49.469571695000106 ], [ -119.571223693999954, 49.470407205000058 ], [ -119.571206302999926, 49.470878690000063 ], [ -119.57118138199999, 49.471484313000083 ], [ -119.569903007999955, 49.471457989000115 ], [ -119.568167816999988, 49.471420809000101 ], [ -119.567619572999916, 49.471410212000109 ], [ -119.567604407999966, 49.471409900000047 ], [ -119.56706080399999, 49.471436299000025 ], [ -119.566692016999951, 49.471529105000094 ], [ -119.566393591999898, 49.471683002000113 ], [ -119.566189062999982, 49.47188129500006 ], [ -119.565950228999924, 49.472112866000096 ], [ -119.565648952999965, 49.472404866000034 ], [ -119.565276544999975, 49.472791068000049 ], [ -119.565068628999938, 49.472961201000075 ], [ -119.564861605999965, 49.473085308000094 ], [ -119.562893087999896, 49.473900690000072 ], [ -119.561914942999934, 49.474305839000102 ], [ -119.558750678999942, 49.475199837000119 ], [ -119.558715197999959, 49.474483085000067 ], [ -119.558734399999963, 49.474399720000036 ], [ -119.558760982999942, 49.474284345000044 ], [ -119.558898675999913, 49.474042276000013 ], [ -119.559457572, 49.473493778000048 ], [ -119.560058996999942, 49.472903457000093 ], [ -119.560548776999966, 49.472489913000054 ], [ -119.560785204999917, 49.472284413000089 ], [ -119.560916987999946, 49.472054717000091 ], [ -119.560930207999888, 49.471771809000124 ], [ -119.56088631099999, 49.47153159100003 ], [ -119.560874087999963, 49.470875797000097 ], [ -119.560931798999974, 49.470592005000078 ], [ -119.560952726999986, 49.470482144000094 ], [ -119.560993792999966, 49.470266809000087 ], [ -119.561151104999951, 49.469963608000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146690061", "BldgCostT": "94388190", "sL_LossRatio": "0.999990599356811", "sL_AssetLoss": "13919.153974", "sL_BldgLoss": "13919.023125", "sL_StrLoss": "13918.016355", "sL_NStrLoss": "1.00677", "sL_ContLoss": "0.130849", "geom_point": "0101000020E61000006D35984405E45DC0A58E1B9FC5BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567619572999916, 49.471410212000109 ], [ -119.568167816999988, 49.471420809000101 ], [ -119.568098809999981, 49.47223249600011 ], [ -119.568076324999964, 49.473067800000067 ], [ -119.568014493999968, 49.473331488000021 ], [ -119.56792475499995, 49.473470568000032 ], [ -119.567855599999945, 49.473577715000069 ], [ -119.567704586999966, 49.473697108000053 ], [ -119.567039618999928, 49.473984343000076 ], [ -119.566968353, 49.474015148000028 ], [ -119.566256110999959, 49.474322812000018 ], [ -119.565383748, 49.474670270000118 ], [ -119.564379564999925, 49.475053366000068 ], [ -119.564279508999959, 49.475091561000042 ], [ -119.564047134999953, 49.475149122000168 ], [ -119.56352366599998, 49.475149598000037 ], [ -119.563476724999958, 49.475782816000063 ], [ -119.563446133999932, 49.476130636000086 ], [ -119.563368519999983, 49.476289532000095 ], [ -119.563128767999928, 49.476439702000015 ], [ -119.56304146399998, 49.476472639000072 ], [ -119.562346731000019, 49.476734669000081 ], [ -119.561613123999962, 49.477009867000049 ], [ -119.561140805999983, 49.477090191000052 ], [ -119.558380114999949, 49.477275605000024 ], [ -119.55814397799999, 49.477260601000062 ], [ -119.557969709999938, 49.477219494000039 ], [ -119.557761891999945, 49.477121315000019 ], [ -119.557664308, 49.477056797000067 ], [ -119.557485774999975, 49.476868195000073 ], [ -119.55743890399999, 49.47665850900011 ], [ -119.557442799999961, 49.476462702000042 ], [ -119.557485116999914, 49.475239229000131 ], [ -119.557645528999956, 49.475234209000085 ], [ -119.557736988999963, 49.475231382000068 ], [ -119.558750678999942, 49.475199837000119 ], [ -119.561914942999934, 49.474305839000102 ], [ -119.562893087999896, 49.473900690000072 ], [ -119.564861605999965, 49.473085308000094 ], [ -119.565068628999938, 49.472961201000075 ], [ -119.565276544999975, 49.472791068000049 ], [ -119.565648952999965, 49.472404866000034 ], [ -119.565950228999924, 49.472112866000096 ], [ -119.566189062999982, 49.47188129500006 ], [ -119.566393591999898, 49.471683002000113 ], [ -119.566692016999951, 49.471529105000094 ], [ -119.56706080399999, 49.471436299000025 ], [ -119.567604407999966, 49.471409900000047 ], [ -119.567619572999916, 49.471410212000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15837123", "BldgCostT": "9978706", "sL_LossRatio": "1", "sL_AssetLoss": "699", "sL_BldgLoss": "699", "sL_StrLoss": "699", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082DCE26D27E35DC0F5916B757FBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.548533339999935, 49.482643628000048 ], [ -119.548610886999924, 49.48209005300005 ], [ -119.548435120999912, 49.482079573000078 ], [ -119.54853002699997, 49.480031333000049 ], [ -119.548602116999973, 49.47847572500006 ], [ -119.549701204999934, 49.478541248000056 ], [ -119.549823801999949, 49.479154561000016 ], [ -119.550135724999947, 49.479616754000098 ], [ -119.550262878999931, 49.479915247000108 ], [ -119.550284682999973, 49.480040051000088 ], [ -119.550322851999937, 49.480258531000068 ], [ -119.550347376999966, 49.480726168000039 ], [ -119.550229249999958, 49.48107510100003 ], [ -119.550003728999926, 49.481498915 ], [ -119.549651766999887, 49.482004628 ], [ -119.549450349999944, 49.482186865000109 ], [ -119.549334026999958, 49.482252474000077 ], [ -119.549172169999935, 49.482343767000074 ], [ -119.548661009999961, 49.482578678000081 ], [ -119.548557902999946, 49.482626060000037 ], [ -119.548533339999935, 49.482643628000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343365452", "BldgCostT": "212985478", "sL_LossRatio": "0.980910614507578", "sL_AssetLoss": "26061.603722", "sL_BldgLoss": "25564.103722", "sL_StrLoss": "25384.303722", "sL_NStrLoss": "179.8", "sL_ContLoss": "497.5", "geom_point": "0101000020E61000007914287BEEE35DC0E2B87448C1BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.552276661999954, 49.479411874000057 ], [ -119.552028793999952, 49.479297603000091 ], [ -119.551168127999958, 49.478900911000068 ], [ -119.550489785999957, 49.47858822000012 ], [ -119.550195693999939, 49.478452675 ], [ -119.550127358999958, 49.478421185000116 ], [ -119.550181266999957, 49.478036228000072 ], [ -119.551907940999982, 49.478139136000067 ], [ -119.551843860999924, 49.476906693000025 ], [ -119.551430145999959, 49.476915824000038 ], [ -119.551416132999947, 49.476646246000058 ], [ -119.548933850000012, 49.476701007000052 ], [ -119.548863853999976, 49.4753531120001 ], [ -119.550104963, 49.475325740000137 ], [ -119.55011896799999, 49.475595319000043 ], [ -119.551360081999917, 49.4755679330001 ], [ -119.551374095, 49.475837511000115 ], [ -119.552201506999921, 49.475819247000089 ], [ -119.552215523999948, 49.476088824000101 ], [ -119.55459245, 49.476036322 ], [ -119.55468211799996, 49.475395524000128 ], [ -119.554868546999941, 49.475406629000062 ], [ -119.554898518999977, 49.475192428000035 ], [ -119.55501972899999, 49.475199648000057 ], [ -119.555159662000023, 49.474199531000053 ], [ -119.557924211999946, 49.474364169000076 ], [ -119.557895031999962, 49.473804189000077 ], [ -119.558308717999964, 49.473795034000055 ], [ -119.558294667999988, 49.473525457000115 ], [ -119.558708352999972, 49.47351630100011 ], [ -119.55868025099997, 49.472977147000044 ], [ -119.559007561999977, 49.472969902000102 ], [ -119.559430210999963, 49.469947017000045 ], [ -119.560181179999958, 49.469991721000071 ], [ -119.560166257999967, 49.46970558900005 ], [ -119.56029075499994, 49.469702832000067 ], [ -119.560454943999929, 49.468528237000022 ], [ -119.561350002999944, 49.468581512000071 ], [ -119.561322828999948, 49.4680606390001 ], [ -119.561557269999952, 49.46805544300004 ], [ -119.561756444999943, 49.466630233000032 ], [ -119.561027731999957, 49.466586860000085 ], [ -119.561160729, 49.46563523500005 ], [ -119.560782647999957, 49.465643612000058 ], [ -119.560684239999944, 49.463756574000065 ], [ -119.561425566999958, 49.463740149000053 ], [ -119.561528597999953, 49.463002845000048 ], [ -119.561888270999958, 49.4630242530001 ], [ -119.561854721999978, 49.462381196000074 ], [ -119.562268312999947, 49.462372028000047 ], [ -119.562240180999964, 49.461832875000034 ], [ -119.562653765999954, 49.461823707000086 ], [ -119.56262563199999, 49.461284554 ], [ -119.562212050999932, 49.461293722000114 ], [ -119.562187952999963, 49.460831832000039 ], [ -119.562929164999943, 49.460833952000016 ], [ -119.563672412999964, 49.460836061000037 ], [ -119.563686242999935, 49.460836096000065 ], [ -119.564258555, 49.460838098000089 ], [ -119.564260793999921, 49.46088097700008 ], [ -119.564733280999945, 49.460909088000029 ], [ -119.564742958999943, 49.460839790000072 ], [ -119.564771348999955, 49.460839889000063 ], [ -119.565206889999928, 49.460865800000064 ], [ -119.565210293999968, 49.460841420000044 ], [ -119.56866224399991, 49.460853400000069 ], [ -119.568616039999966, 49.461566238000053 ], [ -119.56817492699993, 49.46177062000006 ], [ -119.567928289999884, 49.461928815000071 ], [ -119.567302241, 49.46233037800009 ], [ -119.566929575999936, 49.462689462000071 ], [ -119.566474519999971, 49.463450216000084 ], [ -119.566165215999931, 49.463829391000054 ], [ -119.565258567999962, 49.464940868000042 ], [ -119.564803453999986, 49.465741332000036 ], [ -119.56487840799997, 49.465878605000128 ], [ -119.564926640999914, 49.465872353000073 ], [ -119.565174487999982, 49.465840200000059 ], [ -119.56543405099994, 49.465845510000058 ], [ -119.56563694, 49.465849638000087 ], [ -119.565886964999947, 49.465908874000093 ], [ -119.565967909, 49.465928068000068 ], [ -119.566022863999976, 49.465955939000018 ], [ -119.566067155, 49.46597838700005 ], [ -119.566266574999972, 49.466079534000116 ], [ -119.566293883999947, 49.466104123000058 ], [ -119.56635088099992, 49.466155472000054 ], [ -119.566464333999974, 49.466257597000073 ], [ -119.566487921, 49.46627880100008 ], [ -119.566734871999955, 49.46678046100007 ], [ -119.566666998999978, 49.466774760000064 ], [ -119.566013813999916, 49.466719501000071 ], [ -119.566002460999982, 49.46672586600009 ], [ -119.565911704999976, 49.466776690000046 ], [ -119.5657953, 49.466916103000088 ], [ -119.565593079999985, 49.467303304000069 ], [ -119.565383367999956, 49.467704783000102 ], [ -119.565252985999933, 49.467954390000095 ], [ -119.564998040999981, 49.468585417000043 ], [ -119.564893300999984, 49.468844593000043 ], [ -119.564730193999964, 49.468971310000079 ], [ -119.564655655999971, 49.468995812000067 ], [ -119.564248375999981, 49.46912971700003 ], [ -119.563993874999937, 49.46930699300006 ], [ -119.563906163999931, 49.469498699000027 ], [ -119.563297908999985, 49.469690183000068 ], [ -119.562593396999986, 49.469866906000085 ], [ -119.562197519, 49.469926494000049 ], [ -119.561851275999913, 49.469906802000082 ], [ -119.561312392999966, 49.469770806000035 ], [ -119.561151104999951, 49.469963608000079 ], [ -119.560993792999966, 49.470266809000087 ], [ -119.560952726999986, 49.470482144000094 ], [ -119.560931798999974, 49.470592005000078 ], [ -119.560874087999963, 49.470875797000097 ], [ -119.56088631099999, 49.47153159100003 ], [ -119.560930207999888, 49.471771809000124 ], [ -119.560916987999946, 49.472054717000091 ], [ -119.560785204999917, 49.472284413000089 ], [ -119.560548776999966, 49.472489913000054 ], [ -119.560058996999942, 49.472903457000093 ], [ -119.559457572, 49.473493778000048 ], [ -119.558898675999913, 49.474042276000013 ], [ -119.558760982999942, 49.474284345000044 ], [ -119.558734399999963, 49.474399720000036 ], [ -119.558715197999959, 49.474483085000067 ], [ -119.558750678999942, 49.475199837000119 ], [ -119.557736988999963, 49.475231382000068 ], [ -119.557645528999956, 49.475234209000085 ], [ -119.557485116999914, 49.475239229000131 ], [ -119.557442799999961, 49.476462702000042 ], [ -119.55743890399999, 49.47665850900011 ], [ -119.557485774999975, 49.476868195000073 ], [ -119.557664308, 49.477056797000067 ], [ -119.557761891999945, 49.477121315000019 ], [ -119.557969709999938, 49.477219494000039 ], [ -119.55814397799999, 49.477260601000062 ], [ -119.558380114999949, 49.477275605000024 ], [ -119.561140805999983, 49.477090191000052 ], [ -119.561613123999962, 49.477009867000049 ], [ -119.562346731000019, 49.476734669000081 ], [ -119.56304146399998, 49.476472639000072 ], [ -119.563128767999928, 49.476439702000015 ], [ -119.563368519999983, 49.476289532000095 ], [ -119.563446133999932, 49.476130636000086 ], [ -119.563476724999958, 49.475782816000063 ], [ -119.56352366599998, 49.475149598000037 ], [ -119.564047134999953, 49.475149122000168 ], [ -119.564279508999959, 49.475091561000042 ], [ -119.564379564999925, 49.475053366000068 ], [ -119.565383748, 49.474670270000118 ], [ -119.566256110999959, 49.474322812000018 ], [ -119.566968353, 49.474015148000028 ], [ -119.567039618999928, 49.473984343000076 ], [ -119.567704586999966, 49.473697108000053 ], [ -119.567855599999945, 49.473577715000069 ], [ -119.56792475499995, 49.473470568000032 ], [ -119.568014493999968, 49.473331488000021 ], [ -119.568076324999964, 49.473067800000067 ], [ -119.568098809999981, 49.47223249600011 ], [ -119.568167816999988, 49.471420809000101 ], [ -119.569903007999955, 49.471457989000115 ], [ -119.57118138199999, 49.471484313000083 ], [ -119.571097585999951, 49.472005119000059 ], [ -119.571087448999961, 49.472021848000047 ], [ -119.571051006999966, 49.472081893000109 ], [ -119.570912390999979, 49.472310313000044 ], [ -119.57074957499999, 49.472484900000062 ], [ -119.570644615, 49.47255928000007 ], [ -119.570267092999984, 49.472826710000149 ], [ -119.5692372, 49.473380696000092 ], [ -119.568979, 49.473573982000055 ], [ -119.56887922, 49.473683804000117 ], [ -119.568081609, 49.474893894000076 ], [ -119.568044111999939, 49.474972539000099 ], [ -119.567870095, 49.475337603000099 ], [ -119.567842715999944, 49.475633196000054 ], [ -119.567934602999955, 49.475896999000035 ], [ -119.567987094999964, 49.475952757000101 ], [ -119.568184194999944, 49.476162093000013 ], [ -119.568488181999982, 49.476395196000048 ], [ -119.568775102999908, 49.476541504000082 ], [ -119.569220797, 49.476671803000059 ], [ -119.569798186999961, 49.476801 ], [ -119.569915879999954, 49.476800796000127 ], [ -119.569868204999963, 49.478848685000067 ], [ -119.569842859999952, 49.479491036000091 ], [ -119.56983968899999, 49.47957108300006 ], [ -119.569839674999955, 49.479571797000112 ], [ -119.569836117999927, 49.479662037000082 ], [ -119.569827284, 49.479885195000108 ], [ -119.569784606999988, 49.480984890000038 ], [ -119.566781255999928, 49.480942645000034 ], [ -119.565413694999975, 49.480923371000067 ], [ -119.564806300999948, 49.480914782000056 ], [ -119.564534087999945, 49.480950094000029 ], [ -119.564341192999962, 49.480972998000034 ], [ -119.563821608999945, 49.481093908000055 ], [ -119.561877018999937, 49.481660305000069 ], [ -119.561761519999905, 49.481743708000053 ], [ -119.561612192999931, 49.481890302000053 ], [ -119.56156629799996, 49.482050084000029 ], [ -119.56164460799998, 49.482332199000105 ], [ -119.56216518299999, 49.482887997000049 ], [ -119.561410514999963, 49.482966906000044 ], [ -119.55974011399999, 49.482928415000103 ], [ -119.55972628899994, 49.482928091000055 ], [ -119.557142206999956, 49.482838409000053 ], [ -119.55577520599995, 49.482779583000131 ], [ -119.555402795999896, 49.48269961500003 ], [ -119.555166889999953, 49.482584386000056 ], [ -119.554759612999959, 49.482317997000102 ], [ -119.554392083999929, 49.482074816000136 ], [ -119.553983701999982, 49.481806492000075 ], [ -119.553521772999943, 49.481425786000067 ], [ -119.553370000999934, 49.481194466000062 ], [ -119.553285890999987, 49.480924764000036 ], [ -119.553292520999946, 49.48062234700005 ], [ -119.55329545299999, 49.480487660000044 ], [ -119.553297986999965, 49.480373473000029 ], [ -119.553271517999946, 49.480146934000096 ], [ -119.553154523999964, 49.479914104000088 ], [ -119.552922809, 49.479709677000066 ], [ -119.552276661999954, 49.479411874000057 ] ], [ [ -119.556327247999988, 49.479629097000092 ], [ -119.556355891999956, 49.47942435600001 ], [ -119.555532908999965, 49.479375346000026 ], [ -119.555504261999928, 49.479580086000034 ], [ -119.556327247999988, 49.479629097000092 ] ], [ [ -119.566495628999959, 49.476852214000068 ], [ -119.566760314999925, 49.474957120000063 ], [ -119.56665289299994, 49.474959506000069 ], [ -119.566681085999932, 49.475498656000056 ], [ -119.566267386999982, 49.475507841000081 ], [ -119.566281481999951, 49.475777415000103 ], [ -119.565867779999948, 49.47578659900006 ], [ -119.565895963999935, 49.476325750000065 ], [ -119.564241138999975, 49.47636247 ], [ -119.564255222999989, 49.476632045000017 ], [ -119.563841515999954, 49.476641221000072 ], [ -119.563851096999926, 49.476824686 ], [ -119.566343989999922, 49.476972939000092 ], [ -119.56633786, 49.476855717000021 ], [ -119.566495628999959, 49.476852214000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "314403083", "BldgCostT": "179646267", "sL_LossRatio": "0.898091520025515", "sL_AssetLoss": "20563.0377288", "sL_BldgLoss": "18467.4898102", "sL_StrLoss": "17700.9313802", "sL_NStrLoss": "766.55843", "sL_ContLoss": "2095.5479186", "geom_point": "0101000020E6100000156C548EE6E45DC0887D87AAB1BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.571538283999985, 49.478947091000038 ], [ -119.57108100100001, 49.478899989000105 ], [ -119.569868204999963, 49.478848685000067 ], [ -119.569915879999954, 49.476800796000127 ], [ -119.569798186999961, 49.476801 ], [ -119.569220797, 49.476671803000059 ], [ -119.568775102999908, 49.476541504000082 ], [ -119.568488181999982, 49.476395196000048 ], [ -119.568184194999944, 49.476162093000013 ], [ -119.567987094999964, 49.475952757000101 ], [ -119.567934602999955, 49.475896999000035 ], [ -119.567842715999944, 49.475633196000054 ], [ -119.567870095, 49.475337603000099 ], [ -119.568044111999939, 49.474972539000099 ], [ -119.568081609, 49.474893894000076 ], [ -119.56887922, 49.473683804000117 ], [ -119.568979, 49.473573982000055 ], [ -119.5692372, 49.473380696000092 ], [ -119.570267092999984, 49.472826710000149 ], [ -119.570644615, 49.47255928000007 ], [ -119.57074957499999, 49.472484900000062 ], [ -119.570912390999979, 49.472310313000044 ], [ -119.571051006999966, 49.472081893000109 ], [ -119.571087448999961, 49.472021848000047 ], [ -119.571097585999951, 49.472005119000059 ], [ -119.57118138199999, 49.471484313000083 ], [ -119.571206302999926, 49.470878690000063 ], [ -119.572351707999971, 49.470886192000087 ], [ -119.572377888999966, 49.470301387000056 ], [ -119.572444994999955, 49.470256594000062 ], [ -119.572789304999958, 49.470200280000036 ], [ -119.573200716, 49.47018870200003 ], [ -119.573481293999961, 49.470172693000052 ], [ -119.573819182999955, 49.470162095000056 ], [ -119.57444559399994, 49.47001859100002 ], [ -119.574778296999952, 49.470561398000015 ], [ -119.575406238999932, 49.471956306000081 ], [ -119.576925597999946, 49.471534609000045 ], [ -119.577419108999919, 49.471401198000066 ], [ -119.580018977999941, 49.470697303000094 ], [ -119.580630476999886, 49.470529550000087 ], [ -119.581364880999928, 49.470328109000043 ], [ -119.581876983999905, 49.47180039800007 ], [ -119.582187319999946, 49.47177905700007 ], [ -119.582465593999984, 49.471828988000013 ], [ -119.582699633999965, 49.471937734000029 ], [ -119.582747763999961, 49.471950894000059 ], [ -119.582805008999941, 49.471966569000095 ], [ -119.583480906999966, 49.472034702 ], [ -119.583500105000027, 49.472031942000115 ], [ -119.58414005399996, 49.471940249000099 ], [ -119.584533283999946, 49.471883896000072 ], [ -119.585926285999918, 49.471683708000121 ], [ -119.586072078999948, 49.472115753000054 ], [ -119.586392169999939, 49.473064594000085 ], [ -119.586793669999935, 49.474254694000059 ], [ -119.587010630999941, 49.474893601000076 ], [ -119.58721789599997, 49.475503997000033 ], [ -119.585911165999946, 49.475691220000023 ], [ -119.584373086999932, 49.475911540000013 ], [ -119.584269383999967, 49.475926396000062 ], [ -119.584259148999948, 49.475921156000076 ], [ -119.58424462399995, 49.47591369600007 ], [ -119.584181509999965, 49.475881403000109 ], [ -119.583964697999988, 49.475270503 ], [ -119.583664902999885, 49.475385479000046 ], [ -119.5831480209999, 49.475467779000049 ], [ -119.583124114999976, 49.475471455000097 ], [ -119.583024901999948, 49.475486681000042 ], [ -119.582861824999966, 49.475504901000114 ], [ -119.582501706999906, 49.475545086000096 ], [ -119.582414452999956, 49.475543880000025 ], [ -119.581486018999968, 49.475530902000074 ], [ -119.578991597999945, 49.475495801000115 ], [ -119.578849748000025, 49.475516291000126 ], [ -119.578675129999922, 49.475541523000054 ], [ -119.577315694000021, 49.475737908000063 ], [ -119.574180295999938, 49.476188603000075 ], [ -119.574579705, 49.477385009000081 ], [ -119.574994895999936, 49.478637388000095 ], [ -119.572648678999926, 49.478977791 ], [ -119.572412404999966, 49.479034196000043 ], [ -119.572225289999935, 49.47912429100009 ], [ -119.571996219999988, 49.479079098000078 ], [ -119.571538283999985, 49.478947091000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78405416", "BldgCostT": "50441666", "sL_LossRatio": "0.985916080046513", "sL_AssetLoss": "7565.13956", "sL_BldgLoss": "7458.59274", "sL_StrLoss": "7419.03844", "sL_NStrLoss": "39.5543", "sL_ContLoss": "106.54682", "geom_point": "0101000020E610000050B9F4F59DE35DC0C8E19BBFECBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.554129589999974, 49.482743113000055 ], [ -119.554759612999959, 49.482317997000102 ], [ -119.555166889999953, 49.482584386000056 ], [ -119.555402795999896, 49.48269961500003 ], [ -119.55577520599995, 49.482779583000131 ], [ -119.557142206999956, 49.482838409000053 ], [ -119.55972628899994, 49.482928091000055 ], [ -119.559675698999968, 49.483785205000096 ], [ -119.55964328099995, 49.484512288000062 ], [ -119.558737063999942, 49.484504423000054 ], [ -119.558114791999969, 49.484499010000079 ], [ -119.556312697999942, 49.484461291000109 ], [ -119.556279812999946, 49.485240782000069 ], [ -119.555192701, 49.485220392000123 ], [ -119.55478048, 49.485166894000024 ], [ -119.554327184999963, 49.485011595000067 ], [ -119.554031584, 49.484798896000065 ], [ -119.553950711999946, 49.484663994000158 ], [ -119.553929500999942, 49.484291382000073 ], [ -119.553965321999939, 49.483471395000066 ], [ -119.553967082999989, 49.483432601000111 ], [ -119.553985693999962, 49.483028994000065 ], [ -119.55404498799993, 49.482852790000102 ], [ -119.554129589999974, 49.482743113000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68964417", "BldgCostT": "46616667", "sL_LossRatio": "0.994226050303689", "sL_AssetLoss": "8456.252404", "sL_BldgLoss": "8407.426428", "sL_StrLoss": "8389.004428", "sL_NStrLoss": "18.422", "sL_ContLoss": "48.825976", "geom_point": "0101000020E610000040CA5F8C8EE35DC0C7A1FADE11BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.556223900999939, 49.486511292000081 ], [ -119.556248586999928, 49.485978899000081 ], [ -119.55503717499991, 49.485955488000045 ], [ -119.554423202999942, 49.485889201000141 ], [ -119.553775311, 49.485699699000065 ], [ -119.553413502999916, 49.485553489000026 ], [ -119.553181593999938, 49.485429406000016 ], [ -119.552908009999953, 49.485187297000053 ], [ -119.55277110499999, 49.484909004000102 ], [ -119.552750321999937, 49.484780393000037 ], [ -119.552320878999979, 49.484751207000073 ], [ -119.552070777999944, 49.484667604000073 ], [ -119.552060528999959, 49.484661057000039 ], [ -119.551834319999898, 49.484517110000098 ], [ -119.551656920999989, 49.484310493000038 ], [ -119.55160620099997, 49.484078896000035 ], [ -119.551626346999925, 49.483435504000063 ], [ -119.551650498999948, 49.48266490600011 ], [ -119.551668159999963, 49.482581673000027 ], [ -119.551691180999939, 49.48247311500009 ], [ -119.551839283999982, 49.482256102000044 ], [ -119.552434786999981, 49.481820887000062 ], [ -119.552527102999989, 49.48179470600013 ], [ -119.552549613999972, 49.481798416000082 ], [ -119.552578513999933, 49.481803200000051 ], [ -119.553245292999975, 49.482253088000064 ], [ -119.553807076999959, 49.481913340000098 ], [ -119.553983701999982, 49.481806492000075 ], [ -119.554392083999929, 49.482074816000136 ], [ -119.554759612999959, 49.482317997000102 ], [ -119.554129589999974, 49.482743113000055 ], [ -119.55404498799993, 49.482852790000102 ], [ -119.553985693999962, 49.483028994000065 ], [ -119.553967082999989, 49.483432601000111 ], [ -119.553965321999939, 49.483471395000066 ], [ -119.553929500999942, 49.484291382000073 ], [ -119.553950711999946, 49.484663994000158 ], [ -119.554031584, 49.484798896000065 ], [ -119.554327184999963, 49.485011595000067 ], [ -119.55478048, 49.485166894000024 ], [ -119.555192701, 49.485220392000123 ], [ -119.556279812999946, 49.485240782000069 ], [ -119.556312697999942, 49.484461291000109 ], [ -119.558114791999969, 49.484499010000079 ], [ -119.558737063999942, 49.484504423000054 ], [ -119.55964328099995, 49.484512288000062 ], [ -119.559604402999952, 49.485434207 ], [ -119.559551337999963, 49.486685012000116 ], [ -119.559249602999969, 49.486703185000039 ], [ -119.558571689999937, 49.486925752000069 ], [ -119.558118515999936, 49.487165286000049 ], [ -119.556162359999945, 49.487842042000082 ], [ -119.555621608999914, 49.487202739000089 ], [ -119.556251339000013, 49.486998118000038 ], [ -119.556228512999951, 49.486593431000138 ], [ -119.556223900999939, 49.486511292000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46500416", "BldgCostT": "31541666", "sL_LossRatio": "0.999994235003494", "sL_AssetLoss": "6071.1225", "sL_BldgLoss": "6071.0875", "sL_StrLoss": "6071", "sL_NStrLoss": "0.0875", "sL_ContLoss": "0.035", "geom_point": "0101000020E61000008F94884B69E35DC0E204229B96BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55200487799999, 49.487968520000081 ], [ -119.551990854999985, 49.487698942000051 ], [ -119.551577049999963, 49.487708076000047 ], [ -119.551548051999987, 49.487150496000041 ], [ -119.551723388999946, 49.487146867000057 ], [ -119.552012591999954, 49.487167854000127 ], [ -119.552304427999985, 49.487242765000062 ], [ -119.55263185699999, 49.487313763000046 ], [ -119.552660625999977, 49.487320006000061 ], [ -119.553074340999956, 49.487362705000038 ], [ -119.553590315999898, 49.487357308000149 ], [ -119.553873291999977, 49.487344356000051 ], [ -119.554877681999969, 49.487293051000051 ], [ -119.55544640699999, 49.487257355000082 ], [ -119.555621608999914, 49.487202739000089 ], [ -119.556162359999945, 49.487842042000082 ], [ -119.558118515999936, 49.487165286000049 ], [ -119.558571689999937, 49.486925752000069 ], [ -119.559249602999969, 49.486703185000039 ], [ -119.559551337999963, 49.486685012000116 ], [ -119.55950649499998, 49.487768298000084 ], [ -119.558862601999948, 49.487998013000059 ], [ -119.556886818999971, 49.488702808000014 ], [ -119.556601, 49.488804990000062 ], [ -119.555936111, 49.489132208000044 ], [ -119.555531390999988, 49.48930239800012 ], [ -119.555197198999963, 49.489394507000071 ], [ -119.553854884999936, 49.489652400000082 ], [ -119.553440585999937, 49.489792214000047 ], [ -119.55296809099994, 49.48995201000011 ], [ -119.55255594399992, 49.490154603000114 ], [ -119.551792913999975, 49.490529703000036 ], [ -119.550799503999926, 49.491026090000062 ], [ -119.549959901999955, 49.49136994800012 ], [ -119.549817617999949, 49.491404046000035 ], [ -119.548829420999965, 49.49183019000008 ], [ -119.548373794999975, 49.492017201000074 ], [ -119.548113070999975, 49.492166612000098 ], [ -119.548016612999945, 49.492221876000087 ], [ -119.548065008999956, 49.491876499000043 ], [ -119.548048793999939, 49.491564312000058 ], [ -119.548108940999938, 49.491562988000048 ], [ -119.548131228999949, 49.491403918000067 ], [ -119.548455780999973, 49.491423263000094 ], [ -119.548406616999983, 49.490476878000052 ], [ -119.548788382999987, 49.49046846100002 ], [ -119.548805123999927, 49.490390160000082 ], [ -119.548815791000024, 49.490378104000051 ], [ -119.548792436999946, 49.489928598000091 ], [ -119.549206262999945, 49.489919474 ], [ -119.549192254000019, 49.489649896000095 ], [ -119.549580823999975, 49.489641328000097 ], [ -119.55001099399999, 49.489460260000094 ], [ -119.550005888999962, 49.489362066000048 ], [ -119.550257456999944, 49.489356516000086 ], [ -119.550334324999952, 49.489324160000109 ], [ -119.550415702999913, 49.489275856000049 ], [ -119.550405695999956, 49.489083359000077 ], [ -119.550752909999972, 49.489075699000075 ], [ -119.550817595999916, 49.489037302000042 ], [ -119.550805498999949, 49.488804651000088 ], [ -119.551219313999979, 49.488795519000085 ], [ -119.55119127799999, 49.48825636400003 ], [ -119.551605089999981, 49.488247231000116 ], [ -119.551591069, 49.487977654000126 ], [ -119.55200487799999, 49.487968520000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77047000", "BldgCostT": "47770000", "sL_LossRatio": "0.999994850853393", "sL_AssetLoss": "4919.26176", "sL_BldgLoss": "4919.23643", "sL_StrLoss": "4919.01533", "sL_NStrLoss": "0.2211", "sL_ContLoss": "0.02533", "geom_point": "0101000020E61000008E0918FAF3E25DC05615B75DAABE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546205631999925, 49.487451986000032 ], [ -119.546607556999945, 49.487277878000036 ], [ -119.546997177999955, 49.487269295000047 ], [ -119.546991477999924, 49.487159470000094 ], [ -119.547272827999933, 49.487095899000096 ], [ -119.54781228, 49.487017942000065 ], [ -119.548326340999935, 49.486992374000053 ], [ -119.548394138999967, 49.487000136000084 ], [ -119.548690679999979, 49.487033924000109 ], [ -119.548726679999916, 49.487038035000104 ], [ -119.549337866999934, 49.487187372000051 ], [ -119.549696641, 49.487224900000065 ], [ -119.549895246999981, 49.487233267000057 ], [ -119.549907810999983, 49.487475018000097 ], [ -119.550321616999966, 49.487465891000056 ], [ -119.550363655999945, 49.488274625000081 ], [ -119.549949844999972, 49.48828375400003 ], [ -119.549963854999987, 49.488553332000031 ], [ -119.549550040999947, 49.488562458000054 ], [ -119.549564049999944, 49.488832036000083 ], [ -119.54915023399991, 49.488841162000064 ], [ -119.549164241999932, 49.489110740000051 ], [ -119.548750421999955, 49.489119864000045 ], [ -119.548764426999966, 49.489389442000046 ], [ -119.548350604999911, 49.48939856500003 ], [ -119.548378610999947, 49.489937722000029 ], [ -119.54796478499999, 49.48994684300002 ], [ -119.548006788999942, 49.490755578000105 ], [ -119.54717912299995, 49.49077381700004 ], [ -119.547193117999939, 49.491043395000105 ], [ -119.546779281999974, 49.491052512000159 ], [ -119.546793277999953, 49.491322091000022 ], [ -119.546379438999949, 49.491331208000084 ], [ -119.546393431999945, 49.491600786000028 ], [ -119.54556575099997, 49.49161901300014 ], [ -119.54557974, 49.49188859200008 ], [ -119.54433820699991, 49.491915922000054 ], [ -119.54435219, 49.492185501000073 ], [ -119.542282954999976, 49.492231023000087 ], [ -119.542296925999935, 49.492500601000103 ], [ -119.541938119999884, 49.492508492000084 ], [ -119.542151728999926, 49.492372387000103 ], [ -119.542281966999951, 49.492201543000064 ], [ -119.542385480999926, 49.49189421300008 ], [ -119.54235916399989, 49.491560517000082 ], [ -119.542340576999933, 49.49123759400009 ], [ -119.542267429999981, 49.49085237500001 ], [ -119.542199034999925, 49.490611629000043 ], [ -119.542185164999935, 49.490343967000094 ], [ -119.542598995, 49.490334865000108 ], [ -119.542585023999962, 49.490065286000089 ], [ -119.544240338999941, 49.490028869000078 ], [ -119.544169815999965, 49.488668959000044 ], [ -119.544732898999911, 49.488398706000083 ], [ -119.544984088999939, 49.488393176000066 ], [ -119.544976905999988, 49.488254729000083 ], [ -119.545215079999934, 49.488113371000125 ], [ -119.545621662999963, 49.487839366000046 ], [ -119.545783740999966, 49.487835796000084 ], [ -119.545778511999956, 49.487735022000038 ], [ -119.546042308, 49.487560215 ], [ -119.546183558999957, 49.487557105000043 ], [ -119.5461790199999, 49.487469621000066 ], [ -119.546205631999925, 49.487451986000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46311661", "BldgCostT": "25710743", "sL_LossRatio": "0.971718782702753", "sL_AssetLoss": "2768.621986", "sL_BldgLoss": "2690.321986", "sL_StrLoss": "2662.001986", "sL_NStrLoss": "28.32", "sL_ContLoss": "78.3", "geom_point": "0101000020E610000070223CD207E15DC0CF588F5610BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.515724549999945, 49.490534771000092 ], [ -119.521219009999982, 49.490863805000089 ], [ -119.520714711999986, 49.494447487000066 ], [ -119.516570120999972, 49.494199318000092 ], [ -119.516480252999912, 49.49483748200003 ], [ -119.510985353999956, 49.494508212000028 ], [ -119.511490406999926, 49.490924575000058 ], [ -119.515634677999969, 49.491172939000052 ], [ -119.515724549999945, 49.490534771000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3656250", "BldgCostT": "2025000", "sL_LossRatio": "0.720265441551812", "sL_AssetLoss": "97.95", "sL_BldgLoss": "70.55", "sL_StrLoss": "60.6", "sL_NStrLoss": "9.95", "sL_ContLoss": "27.4", "geom_point": "0101000020E6100000283DDBBC54E45DC02A26881DBAB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567577765999928, 49.425502277000113 ], [ -119.56800911499991, 49.42552794900012 ], [ -119.568058348999941, 49.428034307000125 ], [ -119.568080199999955, 49.42914617600006 ], [ -119.567077774999944, 49.429086518000098 ], [ -119.567577765999928, 49.425502277000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8315167", "BldgCostT": "4581667", "sL_LossRatio": "0.873865222758903", "sL_AssetLoss": "144.290103", "sL_BldgLoss": "126.090103", "sL_StrLoss": "119.500103", "sL_NStrLoss": "6.59", "sL_ContLoss": "18.2", "geom_point": "0101000020E61000005C9090F552E45DC059FE3A3FDEB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567012982000037, 49.442336112000085 ], [ -119.568341064999956, 49.442415125000061 ], [ -119.568412224999975, 49.44603326200005 ], [ -119.566512764999956, 49.445920262000122 ], [ -119.567012982000037, 49.442336112000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2725250", "BldgCostT": "1670000", "sL_LossRatio": "0.922208830941164", "sL_AssetLoss": "273.81", "sL_BldgLoss": "252.51", "sL_StrLoss": "244.8", "sL_NStrLoss": "7.71", "sL_ContLoss": "21.3", "geom_point": "0101000020E61000005F0E16A9CBE05DC0E86A2BF617BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.512153833999918, 49.478315795000121 ], [ -119.512140033999955, 49.478046209000077 ], [ -119.511726296999939, 49.478055199000075 ], [ -119.511698705999947, 49.477516025000078 ], [ -119.511284971999913, 49.477525014000037 ], [ -119.511229800999942, 49.476446667000097 ], [ -119.51164352499994, 49.47643767900005 ], [ -119.511629728999978, 49.476168093000069 ], [ -119.511723275999927, 49.476166060000054 ], [ -119.51287089500002, 49.476141120000129 ], [ -119.512926102000023, 49.477219465000118 ], [ -119.513339832, 49.477210471000056 ], [ -119.513353636999938, 49.477480057000044 ], [ -119.513767368999964, 49.47747106000007 ], [ -119.513808790999988, 49.478279819000107 ], [ -119.513237543999963, 49.47829224 ], [ -119.512153833999918, 49.478315795000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23646917", "BldgCostT": "12886667", "sL_LossRatio": "0.926546424737279", "sL_AssetLoss": "1558.8295", "sL_BldgLoss": "1444.3279", "sL_StrLoss": "1395.3446", "sL_NStrLoss": "48.9833", "sL_ContLoss": "114.5016", "geom_point": "0101000020E6100000C60C85B639E25DC01C6B56E8C9AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.533334082999929, 49.348030464000068 ], [ -119.536673865999916, 49.348230610000094 ], [ -119.536711323999967, 49.348687632000107 ], [ -119.536748396999926, 49.349139996000098 ], [ -119.536651487999947, 49.349467605000036 ], [ -119.53631991599994, 49.350080310000045 ], [ -119.536262695999966, 49.350321804000032 ], [ -119.536248192999949, 49.350849510000032 ], [ -119.536282023999959, 49.351821692000037 ], [ -119.532832277999887, 49.35161495800002 ], [ -119.533334082999929, 49.348030464000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26507061", "BldgCostT": "14768190", "sL_LossRatio": "0.954855049663707", "sL_AssetLoss": "1027.800444", "sL_BldgLoss": "981.400444", "sL_StrLoss": "964.600444", "sL_NStrLoss": "16.8", "sL_ContLoss": "46.4", "geom_point": "0101000020E6100000813B16FCB2E25DC0D6038B6860B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.541996241999954, 49.388126023000027 ], [ -119.54212214599994, 49.38722619400005 ], [ -119.539105709999902, 49.387045745000094 ], [ -119.539607414, 49.38346141100007 ], [ -119.545089330999957, 49.383789288000045 ], [ -119.544971111999956, 49.384634650000109 ], [ -119.544826013999952, 49.384581791000087 ], [ -119.544510892999952, 49.384569584000054 ], [ -119.54426564299996, 49.384590134000049 ], [ -119.544048332999949, 49.384618433000128 ], [ -119.543982142999937, 49.384658040000055 ], [ -119.543873098999924, 49.384894414000065 ], [ -119.543871859999911, 49.385314602000058 ], [ -119.543888952999907, 49.385359661000066 ], [ -119.54398758499994, 49.385620368000083 ], [ -119.544027811999953, 49.385737223000092 ], [ -119.544151945999928, 49.385854122000097 ], [ -119.544760949999912, 49.386602371000073 ], [ -119.54500589599995, 49.387205728000012 ], [ -119.545088895999953, 49.387332048000111 ], [ -119.545136128, 49.38777200700013 ], [ -119.545297414999965, 49.388112441000075 ], [ -119.54533104799999, 49.388325418000058 ], [ -119.541996241999954, 49.388126023000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35068228", "BldgCostT": "19199857", "sL_LossRatio": "0.952124341872985", "sL_AssetLoss": "630.800728", "sL_BldgLoss": "600.600728", "sL_StrLoss": "589.700728", "sL_NStrLoss": "10.9", "sL_ContLoss": "30.2", "geom_point": "0101000020E6100000863C610D40E25DC0C329EFBAE9AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.532786240999883, 49.356698177000055 ], [ -119.53743939499995, 49.356976970000048 ], [ -119.537462609999963, 49.357143803000085 ], [ -119.537703127999919, 49.357711072000065 ], [ -119.537789684999936, 49.357915196000071 ], [ -119.537786163999954, 49.358078840000061 ], [ -119.537777787999914, 49.35846389000011 ], [ -119.537897616999928, 49.358989702000059 ], [ -119.53797747299997, 49.359081077000027 ], [ -119.537763420999951, 49.360610881000056 ], [ -119.532284298999969, 49.360282623000103 ], [ -119.532786240999883, 49.356698177000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.732658026206597", "sL_AssetLoss": "102.490453", "sL_BldgLoss": "75.090453", "sL_StrLoss": "65.200453", "sL_NStrLoss": "9.89", "sL_ContLoss": "27.4", "geom_point": "0101000020E6100000E00BF6D3FDE25DC0FECF06054AB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.54781289099995, 49.385561365000044 ], [ -119.547231484999926, 49.385419009000046 ], [ -119.546971318999923, 49.385413194000108 ], [ -119.546294355999962, 49.385307581000163 ], [ -119.546089020999958, 49.3852755630001 ], [ -119.545532592999933, 49.385079032000114 ], [ -119.545178794999984, 49.384821430000088 ], [ -119.545060339999978, 49.384694914000114 ], [ -119.547979798999961, 49.384869410000128 ], [ -119.547879189999961, 49.385589148000065 ], [ -119.54781289099995, 49.385561365000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10752917", "BldgCostT": "5941667", "sL_LossRatio": "1", "sL_AssetLoss": "255", "sL_BldgLoss": "255", "sL_StrLoss": "255", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009685230649E45DC038839E51E3BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565444438999918, 49.4591647250001 ], [ -119.568643314999974, 49.459354983000019 ], [ -119.56866224399991, 49.460853400000069 ], [ -119.565210293999968, 49.460841420000044 ], [ -119.565444438999918, 49.4591647250001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10311439", "BldgCostT": "5010825", "sL_LossRatio": "1", "sL_AssetLoss": "119.5", "sL_BldgLoss": "119.5", "sL_StrLoss": "119.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D62DD9154E45DC0F43888AD0BBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567027283999934, 49.451540139000038 ], [ -119.568522300999987, 49.451629063000112 ], [ -119.568587736999959, 49.454954816000104 ], [ -119.568591426999944, 49.455247028000102 ], [ -119.56652696899999, 49.455124240000032 ], [ -119.567027283999934, 49.451540139000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56714430", "BldgCostT": "32457347", "sL_LossRatio": "0.919464569924258", "sL_AssetLoss": "5225.39605816", "sL_BldgLoss": "4804.5665393", "sL_StrLoss": "4650.0903493", "sL_NStrLoss": "154.47619", "sL_ContLoss": "420.82951886", "geom_point": "0101000020E6100000EA7CDC0AA3E25DC0CCAAE872F7AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546917526999891, 49.374001094000043 ], [ -119.546991089999963, 49.373474772000066 ], [ -119.545739824999927, 49.373399962000086 ], [ -119.54611277799998, 49.370731926000069 ], [ -119.541249857, 49.370441045000113 ], [ -119.541279385999985, 49.370229951000049 ], [ -119.538855495999911, 49.370084880000057 ], [ -119.539111643999917, 49.368254298000103 ], [ -119.53795678699997, 49.368185159000056 ], [ -119.538360446999917, 49.365300585000107 ], [ -119.53712894899995, 49.365226844000063 ], [ -119.53722918899993, 49.364510603000085 ], [ -119.535748490999936, 49.364421921000073 ], [ -119.535751225999945, 49.364446360000024 ], [ -119.53496812499999, 49.364479160000037 ], [ -119.534957848999966, 49.364374560000044 ], [ -119.534328709999969, 49.364336869000063 ], [ -119.53483053699992, 49.360752435000045 ], [ -119.539969650999922, 49.361060206000026 ], [ -119.540253755999942, 49.361480762000056 ], [ -119.540209546999975, 49.361796812000129 ], [ -119.540536894999917, 49.361816407000099 ], [ -119.540704104999932, 49.362013201000124 ], [ -119.540774394999957, 49.36222159200004 ], [ -119.54075418799999, 49.362326193000065 ], [ -119.540648084999958, 49.362512302000034 ], [ -119.540242411999984, 49.362993092000103 ], [ -119.540050978999929, 49.363147004000076 ], [ -119.53982878799998, 49.363253912000054 ], [ -119.539626664999986, 49.36331816000007 ], [ -119.539510806999886, 49.363355002000063 ], [ -119.539270546999887, 49.363398004000068 ], [ -119.539257222999964, 49.363400402000053 ], [ -119.539043872999926, 49.363414016000043 ], [ -119.538607605999971, 49.363441903000094 ], [ -119.538368318999943, 49.363523386000061 ], [ -119.538247507999984, 49.363646295000073 ], [ -119.538205670999986, 49.363860295000094 ], [ -119.53820372699991, 49.36387050200009 ], [ -119.53834927199992, 49.364281295000069 ], [ -119.53850132, 49.364498202000043 ], [ -119.538741192999979, 49.364688795000127 ], [ -119.539055315999988, 49.364843089000026 ], [ -119.539384813999945, 49.364946902000042 ], [ -119.540754099999944, 49.365181615 ], [ -119.542068090999948, 49.365396700000069 ], [ -119.542371487999944, 49.365468998000033 ], [ -119.542996602999949, 49.365770301000055 ], [ -119.543987107999939, 49.366412406000038 ], [ -119.544244902999964, 49.366532361000068 ], [ -119.54464157399994, 49.36671694000016 ], [ -119.544974199999942, 49.366871710000055 ], [ -119.545330598999925, 49.367108998000063 ], [ -119.545505684999966, 49.367289298000038 ], [ -119.54565391199999, 49.367582780000099 ], [ -119.545914795000016, 49.368414401000081 ], [ -119.546001902999961, 49.368552390000097 ], [ -119.546474094999937, 49.368930395000113 ], [ -119.54665789699996, 49.369225989000071 ], [ -119.54666999799997, 49.369279907000099 ], [ -119.54670471699994, 49.369434795000068 ], [ -119.546754423999985, 49.370117307000086 ], [ -119.546963788, 49.370596107000097 ], [ -119.54722153699997, 49.371060359000111 ], [ -119.547890880999958, 49.372266190000104 ], [ -119.547934371999958, 49.372320197000136 ], [ -119.548352411999986, 49.372839604000077 ], [ -119.54858010099997, 49.373039295000055 ], [ -119.548991695999959, 49.373316894000041 ], [ -119.54947511499995, 49.373505702000053 ], [ -119.549719996999926, 49.373661304000073 ], [ -119.549865406999984, 49.373857095000091 ], [ -119.549898701999922, 49.373984702000079 ], [ -119.550010534999942, 49.374185951000058 ], [ -119.546917526999891, 49.374001094000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177923822", "BldgCostT": "99802495", "sL_LossRatio": "0.940982351771973", "sL_AssetLoss": "7311.372326", "sL_BldgLoss": "6879.872326", "sL_StrLoss": "6724.002326", "sL_NStrLoss": "155.87", "sL_ContLoss": "431.5", "geom_point": "0101000020E61000008AF95F323EE25DC0D606FDD8E6BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.534283282000018, 49.492879459000065 ], [ -119.534465450999974, 49.491582202000075 ], [ -119.533458577999966, 49.491522051000054 ], [ -119.53254521099997, 49.491467479000121 ], [ -119.530521848999939, 49.491346558000068 ], [ -119.530732424999954, 49.489847832000066 ], [ -119.528706389999968, 49.489726713000046 ], [ -119.528925791999896, 49.488165545000143 ], [ -119.526695328999921, 49.488032161000028 ], [ -119.526984229999982, 49.485977003000109 ], [ -119.526190948999911, 49.485929552000123 ], [ -119.526193541999959, 49.485911099000056 ], [ -119.525558929999931, 49.485873134000101 ], [ -119.525576216999966, 49.485750181000064 ], [ -119.524951718999915, 49.485712818000138 ], [ -119.525082701999906, 49.484781277000089 ], [ -119.524912663999928, 49.484784991000097 ], [ -119.524871048999955, 49.483976241000086 ], [ -119.524878775999966, 49.483976072000068 ], [ -119.525196890999936, 49.483969124000055 ], [ -119.52545559099994, 49.48212907000002 ], [ -119.526851474999901, 49.482212579000091 ], [ -119.526842790999936, 49.482043955000044 ], [ -119.528084091, 49.482016816000097 ], [ -119.52809797899999, 49.48228639800007 ], [ -119.529753047999975, 49.482250192000052 ], [ -119.52976007800001, 49.482386527000038 ], [ -119.530382596, 49.482423747000055 ], [ -119.530673866999976, 49.480350286000068 ], [ -119.532746855999974, 49.480474200000103 ], [ -119.533057578999944, 49.478261334000067 ], [ -119.535510426999949, 49.478407903000047 ], [ -119.535918306999974, 49.475501693000112 ], [ -119.541411120999953, 49.475829711000124 ], [ -119.541102766, 49.478028699000063 ], [ -119.543327304999977, 49.478161463000049 ], [ -119.542832032999954, 49.481694168000061 ], [ -119.544874587999942, 49.481816029000058 ], [ -119.54469472599996, 49.483099224000036 ], [ -119.546131132999946, 49.483184898000054 ], [ -119.546039052999959, 49.483841941000023 ], [ -119.545215805999945, 49.484090920000021 ], [ -119.54472104, 49.484280955 ], [ -119.544268693999939, 49.484524102000073 ], [ -119.542891508999944, 49.485426698000076 ], [ -119.542203226999959, 49.485752431000058 ], [ -119.541148785999951, 49.486183751000027 ], [ -119.540671744999955, 49.486378889000065 ], [ -119.54065160599994, 49.486387116000053 ], [ -119.540491114999952, 49.48646221000007 ], [ -119.540134705999947, 49.486440937000097 ], [ -119.540314707999983, 49.485157756 ], [ -119.538878251, 49.485072005000099 ], [ -119.539373861999962, 49.481539336000033 ], [ -119.538147115999962, 49.481466087000058 ], [ -119.53804788099994, 49.48217332300004 ], [ -119.536162593, 49.482060727000018 ], [ -119.535703553999937, 49.485331068000022 ], [ -119.532640777, 49.485148079000119 ], [ -119.532473651999979, 49.486338055000026 ], [ -119.53470404899997, 49.486471321000124 ], [ -119.534493616999953, 49.48797006300007 ], [ -119.536519588999965, 49.488091075000057 ], [ -119.536395952999968, 49.488971872000086 ], [ -119.537006473999938, 49.489008331000079 ], [ -119.536900446999965, 49.489115383000069 ], [ -119.536769638999971, 49.489879601000077 ], [ -119.536236095, 49.492996092000084 ], [ -119.534283282000018, 49.492879459000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16931417", "BldgCostT": "9631667", "sL_LossRatio": "0.91889326875398", "sL_AssetLoss": "1006.081724", "sL_BldgLoss": "924.481724", "sL_StrLoss": "895.001724", "sL_NStrLoss": "29.48", "sL_ContLoss": "81.6", "geom_point": "0101000020E61000004E7D18081FE35DC09A6FE93DBAB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546278784999942, 49.378727651000091 ], [ -119.551760189000021, 49.379055191000084 ], [ -119.551259476, 49.382639606000041 ], [ -119.54577765, 49.38231204100007 ], [ -119.546278784999942, 49.378727651000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33899539", "BldgCostT": "19310372", "sL_LossRatio": "0.915315019812544", "sL_AssetLoss": "1504.7605091", "sL_BldgLoss": "1377.3298952", "sL_StrLoss": "1331.0096892", "sL_NStrLoss": "46.320206", "sL_ContLoss": "127.4306139", "geom_point": "0101000020E61000006584D8150AE45DC0EA8554B4E6B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565053004999982, 49.398039093000072 ], [ -119.564890111999944, 49.398027600000034 ], [ -119.564814706999925, 49.39806289800007 ], [ -119.564761203999979, 49.398129287000124 ], [ -119.564759387999942, 49.398261111000096 ], [ -119.56491349399991, 49.398771704000112 ], [ -119.564863177999911, 49.398904293000029 ], [ -119.564747896999918, 49.39898770900006 ], [ -119.564571306999966, 49.399015195000096 ], [ -119.564403296999942, 49.398980793000099 ], [ -119.564422498999988, 49.399784311000055 ], [ -119.564390712999952, 49.399865189000103 ], [ -119.564342867999954, 49.399987095000071 ], [ -119.56432820400002, 49.400024409000117 ], [ -119.56414330399997, 49.40023018400008 ], [ -119.563849714999932, 49.400352782000027 ], [ -119.563012293999989, 49.40036069500006 ], [ -119.562724469999949, 49.400362496000113 ], [ -119.562394802999933, 49.400397091000059 ], [ -119.562080313999957, 49.400471402000115 ], [ -119.561508812999961, 49.400663210000076 ], [ -119.561274104999953, 49.400683586000078 ], [ -119.561255603999953, 49.400685201 ], [ -119.56089031499999, 49.400578506000031 ], [ -119.560918498000021, 49.400178097000072 ], [ -119.560951740999911, 49.399997688000099 ], [ -119.561061108999965, 49.39940410400007 ], [ -119.561041785999933, 49.399254808000066 ], [ -119.560894110999982, 49.399015592000055 ], [ -119.561052401000012, 49.398950907000028 ], [ -119.561520515999959, 49.39861829500007 ], [ -119.56157140699996, 49.398527250000051 ], [ -119.561557176999926, 49.398518573000111 ], [ -119.561440959999956, 49.398404198000065 ], [ -119.561426696999916, 49.398395534000088 ], [ -119.561367428, 49.398315856000046 ], [ -119.561347563999931, 49.398199356000127 ], [ -119.56135105599999, 49.398001364000031 ], [ -119.561328611999912, 49.397570016 ], [ -119.561351850999969, 49.397352946000055 ], [ -119.561351016999978, 49.39730090299999 ], [ -119.561363502999896, 49.397248758000096 ], [ -119.561375987999966, 49.39719661400013 ], [ -119.561312282999921, 49.396612702000091 ], [ -119.561199007999932, 49.396246308000038 ], [ -119.561264215999969, 49.395967406000082 ], [ -119.561245210000024, 49.395806295000064 ], [ -119.56113295899992, 49.395666913000078 ], [ -119.5611191199999, 49.395649691000102 ], [ -119.560881100999907, 49.395489642000072 ], [ -119.560844890999974, 49.39546530800002 ], [ -119.560703910999962, 49.395326788000062 ], [ -119.560598826999978, 49.395093576000129 ], [ -119.560498089999953, 49.394869996000139 ], [ -119.560290116999937, 49.394577505000022 ], [ -119.560033994999969, 49.39436251300004 ], [ -119.559920602999938, 49.394303384000118 ], [ -119.559652289999946, 49.394225006000077 ], [ -119.559233306999928, 49.394156704000146 ], [ -119.559117486999952, 49.394115395000092 ], [ -119.559003417999946, 49.39400962300008 ], [ -119.558970613000028, 49.393979205000072 ], [ -119.55895056699994, 49.393893560000066 ], [ -119.560354453999977, 49.393862459000054 ], [ -119.560368474999933, 49.394132040000024 ], [ -119.560781490999887, 49.394122887000066 ], [ -119.560795516999988, 49.394392466000035 ], [ -119.561208534999963, 49.394383312000045 ], [ -119.561243623999985, 49.395057701000106 ], [ -119.561892157999949, 49.395096364000075 ], [ -119.561954365999924, 49.394650458000065 ], [ -119.56204972499999, 49.394656142 ], [ -119.562020540999924, 49.394095420000035 ], [ -119.563624324999935, 49.394059847000086 ], [ -119.56367260399999, 49.394058776000072 ], [ -119.563678074999984, 49.394163831000064 ], [ -119.563700683999954, 49.394597935000064 ], [ -119.563917034999974, 49.394593135000044 ], [ -119.564113700999954, 49.394588771000024 ], [ -119.56412365099996, 49.394779753000115 ], [ -119.56419611099993, 49.394784070000064 ], [ -119.564252605999954, 49.394959390000054 ], [ -119.564879698999945, 49.395889398000129 ], [ -119.565363077999919, 49.396410694000103 ], [ -119.565229101999961, 49.398347601000047 ], [ -119.565310487999952, 49.39884040500003 ], [ -119.56564240699997, 49.399129495000082 ], [ -119.565622884999954, 49.399814497000115 ], [ -119.565956197999967, 49.401218808000067 ], [ -119.565830095999942, 49.40168021100007 ], [ -119.565473507999926, 49.402245706000095 ], [ -119.565500879999945, 49.402785399000066 ], [ -119.566007809999988, 49.403503194000066 ], [ -119.567676608999946, 49.405102609000053 ], [ -119.567812819999986, 49.405324801000106 ], [ -119.5678208, 49.405504200000081 ], [ -119.567667793999959, 49.405733501000029 ], [ -119.567748097999953, 49.406468390000015 ], [ -119.568227097999937, 49.407727387000108 ], [ -119.568319333999952, 49.408542248000074 ], [ -119.568193486999959, 49.408534756000023 ], [ -119.56810020099995, 49.407813395000076 ], [ -119.567964214999961, 49.407360807000117 ], [ -119.567681996999937, 49.406648315000105 ], [ -119.567578751999974, 49.406229011000029 ], [ -119.567572510000019, 49.406203606000055 ], [ -119.56749990499999, 49.405256894000118 ], [ -119.567458362999957, 49.405141974000038 ], [ -119.567422081999922, 49.405041690000068 ], [ -119.567243106999953, 49.404837706000073 ], [ -119.56582261599999, 49.403474602000109 ], [ -119.565517303999968, 49.403086014000074 ], [ -119.56536359899998, 49.402810282000111 ], [ -119.565320112999956, 49.402665790000093 ], [ -119.565327079999975, 49.402368091000014 ], [ -119.565431282999924, 49.402076995000051 ], [ -119.565705797999954, 49.40154581300007 ], [ -119.565789621999969, 49.401262607000092 ], [ -119.565749693, 49.400904203000088 ], [ -119.565493218999976, 49.399995333000049 ], [ -119.565322075999958, 49.399388885000114 ], [ -119.565039087999963, 49.398386201000072 ], [ -119.565053004999982, 49.398039093000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37989949", "BldgCostT": "20275617", "sL_LossRatio": "0.952329671283514", "sL_AssetLoss": "1904.522424", "sL_BldgLoss": "1813.733214", "sL_StrLoss": "1754.523674", "sL_NStrLoss": "59.20954", "sL_ContLoss": "90.78921", "geom_point": "0101000020E6100000309F6AFC5BD55DC0188A856B7FB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.330799074999931, 49.38888767800006 ], [ -119.33085567399999, 49.388496062000051 ], [ -119.330700497999928, 49.388486477000065 ], [ -119.330752524, 49.388126511000074 ], [ -119.330653218999942, 49.388120376000096 ], [ -119.330707116, 49.387747457000039 ], [ -119.330705844999969, 49.387747378000014 ], [ -119.33122369099999, 49.384164028000093 ], [ -119.336704192999932, 49.384502454000021 ], [ -119.336650347999978, 49.384875377000085 ], [ -119.336651619999941, 49.384875457000078 ], [ -119.336599644, 49.385235426000051 ], [ -119.336698941999941, 49.385241555000093 ], [ -119.336642395999931, 49.385633177000095 ], [ -119.336797563999966, 49.385642755000077 ], [ -119.336280132999931, 49.389226122000125 ], [ -119.330799074999931, 49.38888767800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33680328", "BldgCostT": "18737410", "sL_LossRatio": "0.962483377277547", "sL_AssetLoss": "2007.110303", "sL_BldgLoss": "1931.810303", "sL_StrLoss": "1904.600303", "sL_NStrLoss": "27.21", "sL_ContLoss": "75.3", "geom_point": "0101000020E6100000FF4F30295FE15DC00F543A16E3BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.518965694, 49.485924852000082 ], [ -119.519102489999952, 49.484952872000086 ], [ -119.517851122999915, 49.484877924000031 ], [ -119.51835553799999, 49.481294206000079 ], [ -119.520182194999961, 49.481403604000064 ], [ -119.520125591999928, 49.480301376000071 ], [ -119.520157599999948, 49.480300680000077 ], [ -119.521780605999979, 49.480265287000044 ], [ -119.521808311999962, 49.480804455000104 ], [ -119.5234633399999, 49.480768340000083 ], [ -119.523464967999956, 49.480799980000107 ], [ -119.523504926999976, 49.481577092000116 ], [ -119.523193579999941, 49.481583887000035 ], [ -119.523848917, 49.481623109000033 ], [ -119.52371223099999, 49.482595101000086 ], [ -119.524347425999935, 49.482633114000052 ], [ -119.524963545, 49.482669981000058 ], [ -119.524792756999915, 49.483884646000014 ], [ -119.524459627999974, 49.486253723000054 ], [ -119.518965694, 49.485924852000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158803561", "BldgCostT": "97758190", "sL_LossRatio": "0.842030940875523", "sL_AssetLoss": "4474.4522726", "sL_BldgLoss": "3767.627257", "sL_StrLoss": "3509.168477", "sL_NStrLoss": "258.45878", "sL_ContLoss": "706.8250156", "geom_point": "0101000020E6100000A2DAE18EFBE15DC0FCAD637DFFAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.522107849999941, 49.346180275000066 ], [ -119.522610426999933, 49.342595802000055 ], [ -119.522843026999922, 49.342609769000056 ], [ -119.522849262999898, 49.342565287000113 ], [ -119.522156487999951, 49.342523685000053 ], [ -119.522293594999951, 49.341545781000058 ], [ -119.525419196, 49.341573008000054 ], [ -119.52718235699993, 49.341590603000071 ], [ -119.527609711999943, 49.341594875000084 ], [ -119.529447994999941, 49.341613196000054 ], [ -119.531891179999917, 49.341627306000085 ], [ -119.532194209999929, 49.341629055000034 ], [ -119.532511009999951, 49.341630876000089 ], [ -119.532855279, 49.341632867000087 ], [ -119.533172043999969, 49.341634696000128 ], [ -119.533405766999977, 49.341636039000086 ], [ -119.53355757099996, 49.341636894000018 ], [ -119.534921513999933, 49.341644735000102 ], [ -119.537041581999958, 49.341656865000104 ], [ -119.537826353999932, 49.341661345000048 ], [ -119.538942839999891, 49.341667714000089 ], [ -119.539576405999938, 49.341671322000067 ], [ -119.540451669999968, 49.341676298000081 ], [ -119.540436307, 49.343377617000058 ], [ -119.540428958999968, 49.344187616000056 ], [ -119.540427227999928, 49.344376639000096 ], [ -119.540419175999929, 49.34526676200003 ], [ -119.540418815999942, 49.345308797000044 ], [ -119.540377610999926, 49.345485298000035 ], [ -119.540314916999961, 49.345558290000028 ], [ -119.540081989, 49.345673587000057 ], [ -119.538706714999975, 49.346058405000065 ], [ -119.538404427999964, 49.346171366000071 ], [ -119.534880513999923, 49.345960229000134 ], [ -119.535179386999957, 49.343824430000041 ], [ -119.5325274, 49.343665457000036 ], [ -119.532464210999976, 49.344116850000042 ], [ -119.532381087999937, 49.344111866000027 ], [ -119.532319227999977, 49.344553752000081 ], [ -119.531435006999942, 49.344500732000071 ], [ -119.531268844999943, 49.345687474000044 ], [ -119.528385375999932, 49.345514524000059 ], [ -119.5282503599999, 49.34647834000004 ], [ -119.527595043999952, 49.346439024000084 ], [ -119.527585232999968, 49.346509056000031 ], [ -119.522107849999941, 49.346180275000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5427167", "BldgCostT": "3061667", "sL_LossRatio": "0.854757407984835", "sL_AssetLoss": "156.290243", "sL_BldgLoss": "133.590243", "sL_StrLoss": "125.400243", "sL_NStrLoss": "8.19", "sL_ContLoss": "22.7", "geom_point": "0101000020E61000003BF20F7457E45DC080178DE779B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567472706999951, 49.44706603600018 ], [ -119.568433662999965, 49.447123198000092 ], [ -119.568504835999974, 49.450741310000097 ], [ -119.566972474999943, 49.450650162000109 ], [ -119.567472706999951, 49.44706603600018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3513750", "BldgCostT": "1950000", "sL_LossRatio": "0.948583645808311", "sL_AssetLoss": "610.700632", "sL_BldgLoss": "579.300632", "sL_StrLoss": "568.000632", "sL_NStrLoss": "11.3", "sL_ContLoss": "31.4", "geom_point": "0101000020E610000038113FF74CE45DC0A98DE203D8AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567387287999949, 49.356015583000072 ], [ -119.567503714999987, 49.356002244000138 ], [ -119.567502695999934, 49.356031493000089 ], [ -119.567717280999915, 49.356998500000039 ], [ -119.567624606999942, 49.35732470300011 ], [ -119.567525007, 49.357457268000097 ], [ -119.567301478000019, 49.357754800000052 ], [ -119.567262171999971, 49.358213743000107 ], [ -119.56725988, 49.358240402000042 ], [ -119.56736603899995, 49.358670543000066 ], [ -119.567485203999965, 49.359153395000085 ], [ -119.568008558999949, 49.360132581000059 ], [ -119.568112416999938, 49.360326901000079 ], [ -119.567965580999953, 49.360717095000041 ], [ -119.567976942999962, 49.360820727000075 ], [ -119.5679912, 49.360950687000113 ], [ -119.568436659999975, 49.36165825700008 ], [ -119.567930815999958, 49.361628108000026 ], [ -119.567729184999962, 49.361147929000012 ], [ -119.567694625999962, 49.360990145000073 ], [ -119.567581881999942, 49.3604750330001 ], [ -119.567466633999913, 49.359948597000063 ], [ -119.567426926999985, 49.359893588000062 ], [ -119.567103068999984, 49.359445310000076 ], [ -119.566994735999941, 49.358983453000072 ], [ -119.566669022999918, 49.358466140000054 ], [ -119.566647007999975, 49.35841438300006 ], [ -119.566623937999978, 49.358360163000015 ], [ -119.566594119999976, 49.358290008000019 ], [ -119.566566025999947, 49.358114826000097 ], [ -119.566576761999954, 49.357670896000059 ], [ -119.566376024999968, 49.357121621000026 ], [ -119.566310782999949, 49.356943006000101 ], [ -119.566231846999926, 49.356518132000097 ], [ -119.566252576999958, 49.356320568000108 ], [ -119.56626133899999, 49.356237069000059 ], [ -119.566299257999944, 49.356177794000125 ], [ -119.567387287999949, 49.356015583000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190942031", "BldgCostT": "104680705", "sL_LossRatio": "0.923239202024553", "sL_AssetLoss": "8267.271716", "sL_BldgLoss": "7632.669342", "sL_StrLoss": "7403.042042", "sL_NStrLoss": "229.6273", "sL_ContLoss": "634.602374", "geom_point": "0101000020E6100000155DE543EFE35DC0683D5464BEB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55826660299999, 49.391147192000091 ], [ -119.558082000999931, 49.391086392000048 ], [ -119.558052046999975, 49.39108461800005 ], [ -119.557613319999973, 49.391058406000106 ], [ -119.557315112999959, 49.390986410000039 ], [ -119.557189116999936, 49.39092830200012 ], [ -119.55706274, 49.390829761000127 ], [ -119.55704336299999, 49.390814645000056 ], [ -119.556993402999979, 49.390775703000088 ], [ -119.556854110999936, 49.390506208 ], [ -119.556797001999939, 49.390024804000049 ], [ -119.556781277999931, 49.389970217999988 ], [ -119.556701106999938, 49.38969199900005 ], [ -119.554316962999962, 49.389382566000108 ], [ -119.554277895999945, 49.389377514000032 ], [ -119.554089368999939, 49.389321305000074 ], [ -119.554069592999937, 49.389315391000189 ], [ -119.553954205999958, 49.389231703000043 ], [ -119.553513908999946, 49.38871298700014 ], [ -119.553134585999913, 49.388360508000048 ], [ -119.551760618999964, 49.387264707000035 ], [ -119.55165406, 49.387206457000019 ], [ -119.551526887999898, 49.38713690100009 ], [ -119.550952593999952, 49.386914597000072 ], [ -119.550419799999986, 49.386524096000045 ], [ -119.550188192999926, 49.386392588000028 ], [ -119.550414285999963, 49.384774564000111 ], [ -119.553773260999904, 49.384975155000042 ], [ -119.554162766999937, 49.382185942000085 ], [ -119.555672546999972, 49.382276069000021 ], [ -119.555780944999967, 49.381499597000108 ], [ -119.555318739999962, 49.381472008000081 ], [ -119.555436238999945, 49.380630379000145 ], [ -119.554012353999966, 49.380545374000064 ], [ -119.554446094999932, 49.377438936000033 ], [ -119.554595402999965, 49.377514516000112 ], [ -119.555356406999962, 49.37782380000008 ], [ -119.555546985999953, 49.37797251400012 ], [ -119.55567040199999, 49.378177686000122 ], [ -119.555777598999953, 49.37869648500007 ], [ -119.555892097999916, 49.378865890000064 ], [ -119.556058607999944, 49.379029491000054 ], [ -119.556370310999966, 49.379221583000074 ], [ -119.556745477999982, 49.379340606000035 ], [ -119.556994811999971, 49.379419698000071 ], [ -119.557212690999947, 49.379522103000077 ], [ -119.557437196999956, 49.379665709000072 ], [ -119.557617314999931, 49.379840897000122 ], [ -119.55770682, 49.380021499000122 ], [ -119.5577270799999, 49.380420299000079 ], [ -119.557785482999989, 49.380573345000116 ], [ -119.557812092999924, 49.380643095000067 ], [ -119.557959397999952, 49.380835286 ], [ -119.558330014999953, 49.38107069100009 ], [ -119.558613806999958, 49.381186109000133 ], [ -119.558927789999984, 49.381262708000051 ], [ -119.559187198999965, 49.381265505000094 ], [ -119.559485998999946, 49.381203791000111 ], [ -119.560139876999969, 49.38097439799999 ], [ -119.560523511999961, 49.380948488000037 ], [ -119.560451506999982, 49.38138519200006 ], [ -119.561196895999956, 49.38127240000005 ], [ -119.561375817999945, 49.381208100000073 ], [ -119.562286403999977, 49.380762708000049 ], [ -119.562428746999913, 49.380692576000079 ], [ -119.563577183999911, 49.380126798000099 ], [ -119.56362536899999, 49.380111595000038 ], [ -119.563808495999979, 49.380053813000046 ], [ -119.564708405, 49.37984268900005 ], [ -119.56481269399994, 49.379768504000026 ], [ -119.564916211999972, 49.379621088000093 ], [ -119.564880305, 49.379432802000053 ], [ -119.564768722999943, 49.379276212000086 ], [ -119.564493108999926, 49.378889304000047 ], [ -119.564362610999964, 49.378760509000116 ], [ -119.564256309999934, 49.378655605000048 ], [ -119.564134889999963, 49.378485691000016 ], [ -119.564085393999974, 49.378246002000076 ], [ -119.564128594999957, 49.377935992000104 ], [ -119.564300806999952, 49.377662496000042 ], [ -119.564571109999946, 49.37740840500004 ], [ -119.565062706999981, 49.377162195000011 ], [ -119.565974387999944, 49.376787286000116 ], [ -119.565752998999955, 49.376561795000029 ], [ -119.56539991299999, 49.376279611000086 ], [ -119.565217285999921, 49.376340994000032 ], [ -119.56501071699995, 49.376357864000141 ], [ -119.564564608999916, 49.376394300000058 ], [ -119.564206407999961, 49.376485803000051 ], [ -119.563954788999922, 49.376625402000052 ], [ -119.563378694999969, 49.377100605000109 ], [ -119.563020397999935, 49.377292494000123 ], [ -119.56279239899996, 49.377183103000064 ], [ -119.562178777999989, 49.37707519000007 ], [ -119.561777283999916, 49.376961803000022 ], [ -119.563096271999882, 49.375776287000129 ], [ -119.563477084999988, 49.375374310000076 ], [ -119.563803690999947, 49.374815510000076 ], [ -119.564042068, 49.374404842000082 ], [ -119.564108166, 49.374291041000085 ], [ -119.564380093999958, 49.37382250700005 ], [ -119.564586311999975, 49.373413803000084 ], [ -119.56473880599998, 49.373013500000113 ], [ -119.56484560199999, 49.372712688000107 ], [ -119.564991085999935, 49.372491800000063 ], [ -119.565521405999959, 49.371937890000041 ], [ -119.565752389, 49.372333001000115 ], [ -119.565932789999977, 49.37240610500001 ], [ -119.566057412999939, 49.372424396000056 ], [ -119.566228883999941, 49.372403000000105 ], [ -119.566433601999933, 49.372332090000107 ], [ -119.56733, 49.371718608000073 ], [ -119.568482502999984, 49.371230711000095 ], [ -119.568931094999954, 49.370985497000049 ], [ -119.570484809999925, 49.369421803000186 ], [ -119.570800603, 49.369267096000101 ], [ -119.571362223999955, 49.369004195000066 ], [ -119.571467071999962, 49.368965295000066 ], [ -119.571641678999939, 49.368951301000088 ], [ -119.572082896999959, 49.368967598000104 ], [ -119.571970395999969, 49.368955396000075 ], [ -119.571319578999947, 49.368566439000126 ], [ -119.565812049999948, 49.37072523900008 ], [ -119.565795062999896, 49.370658528000035 ], [ -119.565709480999885, 49.3705134040001 ], [ -119.565329127999973, 49.369868133000075 ], [ -119.565327436999951, 49.369681886000109 ], [ -119.565665487999965, 49.368911410000052 ], [ -119.56593060599999, 49.368630096000132 ], [ -119.566681955999982, 49.368674882000086 ], [ -119.566856558999973, 49.367421628000066 ], [ -119.566812494999937, 49.367419001000052 ], [ -119.566963501999965, 49.366932235000036 ], [ -119.567148946999964, 49.366592706000084 ], [ -119.567368446999978, 49.366377265000061 ], [ -119.567497759999966, 49.366250321000088 ], [ -119.567877059999944, 49.36587798500009 ], [ -119.568796174999932, 49.365110513000026 ], [ -119.568946945999983, 49.36487100800008 ], [ -119.569005676999922, 49.364647697000102 ], [ -119.569012006999969, 49.364586215000017 ], [ -119.569103209999952, 49.363699315000055 ], [ -119.569066001999943, 49.363539893000016 ], [ -119.568783678000031, 49.36313722900006 ], [ -119.568499612999943, 49.362657662000046 ], [ -119.568279500999964, 49.362393343000129 ], [ -119.568184516, 49.362232274000057 ], [ -119.568073987999952, 49.361969063000096 ], [ -119.568549336999951, 49.361997393000145 ], [ -119.568642898999897, 49.362339309000049 ], [ -119.569284418999956, 49.363018696000012 ], [ -119.569942192999989, 49.363228 ], [ -119.570006596999946, 49.363380405000093 ], [ -119.569891217999938, 49.363554197000077 ], [ -119.570382498999976, 49.363982791000105 ], [ -119.570472803999948, 49.36441300300006 ], [ -119.570604599999982, 49.36454541000009 ], [ -119.57054179499994, 49.364924207000058 ], [ -119.570160114999965, 49.365562308000094 ], [ -119.569923699999904, 49.365747404000096 ], [ -119.570652291999963, 49.365750304000066 ], [ -119.570855112999951, 49.36591549300006 ], [ -119.570907892999983, 49.366130596000104 ], [ -119.57068319499993, 49.366611887000012 ], [ -119.570770984000021, 49.366673198000065 ], [ -119.57136460699995, 49.366722992000071 ], [ -119.571329491999933, 49.366849805000058 ], [ -119.570895915999969, 49.367220100000061 ], [ -119.570850491999977, 49.367427993 ], [ -119.57217551, 49.367739897000092 ], [ -119.57278719199995, 49.36757331200009 ], [ -119.573066887999957, 49.367638805000063 ], [ -119.572662597999965, 49.367836795000052 ], [ -119.572597209999969, 49.368144398000048 ], [ -119.572396408999964, 49.368284001000056 ], [ -119.57234839199999, 49.369193992000056 ], [ -119.572105392999973, 49.369540110000088 ], [ -119.571694587999929, 49.369891908000085 ], [ -119.571616093999964, 49.370199493000094 ], [ -119.571695790999925, 49.370673807000081 ], [ -119.571478099999979, 49.371021310000074 ], [ -119.570970910999947, 49.371311789000032 ], [ -119.570293107999959, 49.372324399000021 ], [ -119.569768904999961, 49.372840004000082 ], [ -119.56909068799996, 49.373322807000065 ], [ -119.56898771199999, 49.373703088000113 ], [ -119.569258007999977, 49.374128910000081 ], [ -119.56939849499993, 49.374692895000102 ], [ -119.569294317999919, 49.375352308000032 ], [ -119.568828312999926, 49.375937696000022 ], [ -119.56841589499993, 49.376216799000112 ], [ -119.568235500999947, 49.376454688000067 ], [ -119.567125903999951, 49.376849208000102 ], [ -119.566591497999951, 49.377175289000071 ], [ -119.565687090999958, 49.378032703 ], [ -119.565288588, 49.37858100700003 ], [ -119.565459597999975, 49.378991208000059 ], [ -119.565880088999947, 49.379377095000102 ], [ -119.56597830699998, 49.379671904000091 ], [ -119.565704406999913, 49.380244501000028 ], [ -119.565250505999927, 49.380533594000021 ], [ -119.563680290999983, 49.381063414000046 ], [ -119.562425283, 49.381586106000078 ], [ -119.561844303999948, 49.382067505000066 ], [ -119.561322019000031, 49.382860703000034 ], [ -119.561470389999954, 49.383587102000035 ], [ -119.561768011999945, 49.384011496000049 ], [ -119.56178328499999, 49.384586902000137 ], [ -119.561934916999945, 49.384863195000051 ], [ -119.561495310999987, 49.3851607940001 ], [ -119.561430019999989, 49.385485599000091 ], [ -119.561708095999961, 49.386046688000071 ], [ -119.562065817999951, 49.386325803000048 ], [ -119.561886488999946, 49.386555112000046 ], [ -119.561936500999948, 49.387353748000052 ], [ -119.561780994999978, 49.387344476000088 ], [ -119.561408629999903, 49.387322274000056 ], [ -119.561240847999954, 49.388525008000045 ], [ -119.561956074999969, 49.388567653000024 ], [ -119.562136417999938, 49.388578405000054 ], [ -119.562322535999968, 49.389404172000077 ], [ -119.562244987999961, 49.389960133000024 ], [ -119.562206647999943, 49.390234994000082 ], [ -119.562273111999929, 49.390238957000044 ], [ -119.562489058999944, 49.390251831000114 ], [ -119.562598879999925, 49.391262195000088 ], [ -119.563207514999945, 49.392895695000078 ], [ -119.563372678999926, 49.393044025000066 ], [ -119.56331457899995, 49.393460599000043 ], [ -119.563251688999969, 49.393911497000047 ], [ -119.558931041999983, 49.393653893000085 ], [ -119.558931233999957, 49.393628747000029 ], [ -119.55893261699994, 49.393448710000051 ], [ -119.55893332, 49.393358859000088 ], [ -119.558933912999919, 49.393281300000133 ], [ -119.558917184999956, 49.393180168000093 ], [ -119.558898065000022, 49.393064272000082 ], [ -119.558882994999962, 49.392972908000068 ], [ -119.558847896999964, 49.392860273000068 ], [ -119.558825308999971, 49.392787821000056 ], [ -119.55877968199998, 49.392641495000127 ], [ -119.558709703000019, 49.392416955000016 ], [ -119.558670388999957, 49.39229095700005 ], [ -119.558610891999962, 49.392100095000082 ], [ -119.55849386099996, 49.391508702000039 ], [ -119.55847389399996, 49.391407903000065 ], [ -119.558406726999948, 49.391235800000103 ], [ -119.558356674999942, 49.391192826000093 ], [ -119.558326498999961, 49.391166888000051 ], [ -119.55826660299999, 49.391147192000091 ] ], [ [ -119.556977501999953, 49.386631310000048 ], [ -119.557069296999927, 49.38597370700009 ], [ -119.556048774999979, 49.385912808000093 ], [ -119.555785414999932, 49.385897090000057 ], [ -119.555776211999955, 49.385963008000118 ], [ -119.555570516999936, 49.387436253000047 ], [ -119.555862172999952, 49.387453659000116 ], [ -119.555985253999935, 49.386572097000112 ], [ -119.556977501999953, 49.386631310000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7350084", "BldgCostT": "4178334", "sL_LossRatio": "0.824547128544072", "sL_AssetLoss": "242.800244", "sL_BldgLoss": "200.200244", "sL_StrLoss": "184.800244", "sL_NStrLoss": "15.4", "sL_ContLoss": "42.6", "geom_point": "0101000020E6100000355F251FFBE25DC0F727E9484BB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.54471006599999, 49.393850385000128 ], [ -119.545162219999938, 49.390617762000147 ], [ -119.545552984999958, 49.391081931000095 ], [ -119.546354497999985, 49.391572849000099 ], [ -119.546539157999973, 49.39171403100007 ], [ -119.546843589999966, 49.392051751000068 ], [ -119.547160086999938, 49.392235519000096 ], [ -119.547284382999976, 49.39234167900004 ], [ -119.547366656999884, 49.39244864700008 ], [ -119.54742714799994, 49.392610345000016 ], [ -119.547541341999974, 49.392752852000122 ], [ -119.548059504999955, 49.392960002000166 ], [ -119.548395133999961, 49.393059484000048 ], [ -119.548690513999986, 49.393147006000035 ], [ -119.548815747999967, 49.393262160000056 ], [ -119.548997625999931, 49.393376154000045 ], [ -119.54927891799997, 49.393488379000104 ], [ -119.549341062999972, 49.393541447000118 ], [ -119.549339014999987, 49.393758871000053 ], [ -119.549526363999988, 49.393927043000105 ], [ -119.549564017999927, 49.39414041600002 ], [ -119.54471006599999, 49.393850385000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29319833", "BldgCostT": "16178333", "sL_LossRatio": "0.964300613472574", "sL_AssetLoss": "551.830211", "sL_BldgLoss": "532.130211", "sL_StrLoss": "525.000211", "sL_NStrLoss": "7.13", "sL_ContLoss": "19.7", "geom_point": "0101000020E61000004EB679CA87E05DC0EE5E93DAB0BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.505793195999928, 49.495628057000033 ], [ -119.511288189999973, 49.495957590000046 ], [ -119.510783065999959, 49.499541200000081 ], [ -119.505287647999964, 49.499211643000066 ], [ -119.505793195999928, 49.495628057000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5427167", "BldgCostT": "3061667", "sL_LossRatio": "0.832126279009047", "sL_AssetLoss": "165.600666", "sL_BldgLoss": "137.800666", "sL_StrLoss": "127.700666", "sL_NStrLoss": "10.1", "sL_ContLoss": "27.8", "geom_point": "0101000020E6100000E8AAB33952E45DC06728AC5C41B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567176355999933, 49.429711679 ], [ -119.568092385999961, 49.429766194000088 ], [ -119.568163505999948, 49.433384398 ], [ -119.566676286999922, 49.433295896000082 ], [ -119.567176355999933, 49.429711679 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15052811", "BldgCostT": "8023190", "sL_LossRatio": "1", "sL_AssetLoss": "65.9", "sL_BldgLoss": "65.9", "sL_StrLoss": "65.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D5B2ED10FE35DC0F1745BE07ABD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.547427162999966, 49.478405665000068 ], [ -119.548602116999973, 49.47847572500006 ], [ -119.54853002699997, 49.480031333000049 ], [ -119.548435120999912, 49.482079573000078 ], [ -119.546925035999962, 49.481989534000064 ], [ -119.547427162999966, 49.478405665000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1898750", "BldgCostT": "1100000", "sL_LossRatio": "0.790779725127155", "sL_AssetLoss": "79.82018", "sL_BldgLoss": "63.12018", "sL_StrLoss": "57.10018", "sL_NStrLoss": "6.02", "sL_ContLoss": "16.7", "geom_point": "0101000020E610000011C5262A42E35DC03532C0ECBBB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.550609664999953, 49.397316668000073 ], [ -119.550581725999976, 49.396777503000067 ], [ -119.550168683999956, 49.396786621000047 ], [ -119.550126783999943, 49.395977873000028 ], [ -119.550539819999955, 49.395968757000098 ], [ -119.550525851999978, 49.395699175000082 ], [ -119.55093888499999, 49.395690057000074 ], [ -119.550924563999928, 49.395413717000061 ], [ -119.550988897999929, 49.395210579000029 ], [ -119.551076011999925, 49.395111901000071 ], [ -119.551212617999951, 49.395044195000018 ], [ -119.551300211999944, 49.395031315000068 ], [ -119.551521241999964, 49.397260050000142 ], [ -119.551524258999905, 49.397296476000065 ], [ -119.550609664999953, 49.397316668000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19761583", "BldgCostT": "11113333", "sL_LossRatio": "0.862947887052057", "sL_AssetLoss": "518.780765", "sL_BldgLoss": "447.680765", "sL_StrLoss": "422.000765", "sL_NStrLoss": "25.68", "sL_ContLoss": "71.1", "geom_point": "0101000020E610000027FEC5BF91E25DC0E87008B0A3AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.537656406999972, 49.37022662800009 ], [ -119.54313674499997, 49.370554610000042 ], [ -119.542635452999974, 49.374139029000034 ], [ -119.53715469699992, 49.373811024000062 ], [ -119.537656406999972, 49.37022662800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73531750", "BldgCostT": "50215000", "sL_LossRatio": "1", "sL_AssetLoss": "6710", "sL_BldgLoss": "6710", "sL_StrLoss": "6710", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088A51EF5D9E35DC081ECCC6F5EB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.56303228199998, 49.408227356000062 ], [ -119.563274201999889, 49.406493459000075 ], [ -119.560694121999958, 49.406339696000039 ], [ -119.560814385999961, 49.40547803100003 ], [ -119.55756368099999, 49.405284212000076 ], [ -119.557629972999919, 49.40480946400001 ], [ -119.556882689999924, 49.40476489400006 ], [ -119.556913801999968, 49.404542109000062 ], [ -119.5562577849999, 49.404502978000025 ], [ -119.556271860999942, 49.404402190000077 ], [ -119.555882578999956, 49.404378967000099 ], [ -119.555892372999935, 49.404308844000084 ], [ -119.555651275999935, 49.404294461000063 ], [ -119.556151884999963, 49.400710141000012 ], [ -119.55632529699993, 49.400720487000058 ], [ -119.55644173499999, 49.39988669100007 ], [ -119.554880054999941, 49.399921231000107 ], [ -119.554866061000013, 49.399651650000116 ], [ -119.554452996999942, 49.399660782000055 ], [ -119.554439004999978, 49.399391201000128 ], [ -119.55441657799993, 49.399391696000073 ], [ -119.554449285999965, 49.398680916000046 ], [ -119.55398496299992, 49.398610644000044 ], [ -119.55394200799999, 49.397782844000091 ], [ -119.553528958999934, 49.39779197200005 ], [ -119.553500986999921, 49.397252809000058 ], [ -119.553087942, 49.397261937000053 ], [ -119.553073959999978, 49.396992354000155 ], [ -119.552247871999924, 49.397010605000098 ], [ -119.552261849999965, 49.397280186000145 ], [ -119.551524258999905, 49.397296476000065 ], [ -119.551521241999964, 49.397260050000142 ], [ -119.551300211999944, 49.395031315000068 ], [ -119.551212617999951, 49.395044195000018 ], [ -119.551076011999925, 49.395111901000071 ], [ -119.550988897999929, 49.395210579000029 ], [ -119.550924563999928, 49.395413717000061 ], [ -119.550896972999965, 49.394881311000098 ], [ -119.552136048999941, 49.394853949000016 ], [ -119.552122073999939, 49.394584368000039 ], [ -119.552535096000028, 49.394575243000098 ], [ -119.552521117, 49.394305662000086 ], [ -119.554173197999944, 49.394269154000071 ], [ -119.554187187999958, 49.394538736000101 ], [ -119.554600209999975, 49.394529605000081 ], [ -119.554684154999947, 49.396147093000096 ], [ -119.555097189999941, 49.396137961000036 ], [ -119.555111182999951, 49.396407542000077 ], [ -119.5555242199999, 49.396398407000078 ], [ -119.555552213999974, 49.396937570000034 ], [ -119.555965255, 49.396928434000074 ], [ -119.555895263999957, 49.395580528000046 ], [ -119.558786471999966, 49.395516539 ], [ -119.558800484999935, 49.395786119000078 ], [ -119.55898638099994, 49.395782002000026 ], [ -119.559105271999911, 49.394930193000057 ], [ -119.55958447700003, 49.394958772000074 ], [ -119.559570475999976, 49.394689501000101 ], [ -119.558744432, 49.394707797000059 ], [ -119.558702393999965, 49.393899055000126 ], [ -119.55895056699994, 49.393893560000066 ], [ -119.558970613000028, 49.393979205000072 ], [ -119.559003417999946, 49.39400962300008 ], [ -119.559117486999952, 49.394115395000092 ], [ -119.559233306999928, 49.394156704000146 ], [ -119.559652289999946, 49.394225006000077 ], [ -119.559920602999938, 49.394303384000118 ], [ -119.560033994999969, 49.39436251300004 ], [ -119.560290116999937, 49.394577505000022 ], [ -119.560498089999953, 49.394869996000139 ], [ -119.560598826999978, 49.395093576000129 ], [ -119.560703910999962, 49.395326788000062 ], [ -119.560844890999974, 49.39546530800002 ], [ -119.560881100999907, 49.395489642000072 ], [ -119.5611191199999, 49.395649691000102 ], [ -119.56113295899992, 49.395666913000078 ], [ -119.561245210000024, 49.395806295000064 ], [ -119.561264215999969, 49.395967406000082 ], [ -119.561199007999932, 49.396246308000038 ], [ -119.561312282999921, 49.396612702000091 ], [ -119.561375987999966, 49.39719661400013 ], [ -119.561363502999896, 49.397248758000096 ], [ -119.561351016999978, 49.39730090299999 ], [ -119.561351850999969, 49.397352946000055 ], [ -119.561328611999912, 49.397570016 ], [ -119.56135105599999, 49.398001364000031 ], [ -119.561347563999931, 49.398199356000127 ], [ -119.561367428, 49.398315856000046 ], [ -119.561426696999916, 49.398395534000088 ], [ -119.561440959999956, 49.398404198000065 ], [ -119.561557176999926, 49.398518573000111 ], [ -119.56157140699996, 49.398527250000051 ], [ -119.561520515999959, 49.39861829500007 ], [ -119.561052401000012, 49.398950907000028 ], [ -119.560894110999982, 49.399015592000055 ], [ -119.561041785999933, 49.399254808000066 ], [ -119.561061108999965, 49.39940410400007 ], [ -119.560951740999911, 49.399997688000099 ], [ -119.560918498000021, 49.400178097000072 ], [ -119.56089031499999, 49.400578506000031 ], [ -119.561255603999953, 49.400685201 ], [ -119.561274104999953, 49.400683586000078 ], [ -119.561508812999961, 49.400663210000076 ], [ -119.562080313999957, 49.400471402000115 ], [ -119.562394802999933, 49.400397091000059 ], [ -119.562724469999949, 49.400362496000113 ], [ -119.563012293999989, 49.40036069500006 ], [ -119.563849714999932, 49.400352782000027 ], [ -119.56414330399997, 49.40023018400008 ], [ -119.56432820400002, 49.400024409000117 ], [ -119.564342867999954, 49.399987095000071 ], [ -119.564390712999952, 49.399865189000103 ], [ -119.564422498999988, 49.399784311000055 ], [ -119.564403296999942, 49.398980793000099 ], [ -119.564571306999966, 49.399015195000096 ], [ -119.564747896999918, 49.39898770900006 ], [ -119.564863177999911, 49.398904293000029 ], [ -119.56491349399991, 49.398771704000112 ], [ -119.564759387999942, 49.398261111000096 ], [ -119.564761203999979, 49.398129287000124 ], [ -119.564814706999925, 49.39806289800007 ], [ -119.564890111999944, 49.398027600000034 ], [ -119.565053004999982, 49.398039093000072 ], [ -119.565039087999963, 49.398386201000072 ], [ -119.565322075999958, 49.399388885000114 ], [ -119.565493218999976, 49.399995333000049 ], [ -119.565749693, 49.400904203000088 ], [ -119.565789621999969, 49.401262607000092 ], [ -119.565705797999954, 49.40154581300007 ], [ -119.565431282999924, 49.402076995000051 ], [ -119.565327079999975, 49.402368091000014 ], [ -119.565320112999956, 49.402665790000093 ], [ -119.56536359899998, 49.402810282000111 ], [ -119.565517303999968, 49.403086014000074 ], [ -119.56582261599999, 49.403474602000109 ], [ -119.567243106999953, 49.404837706000073 ], [ -119.567422081999922, 49.405041690000068 ], [ -119.567458362999957, 49.405141974000038 ], [ -119.56749990499999, 49.405256894000118 ], [ -119.567572510000019, 49.406203606000055 ], [ -119.567578751999974, 49.406229011000029 ], [ -119.567681996999937, 49.406648315000105 ], [ -119.567964214999961, 49.407360807000117 ], [ -119.56810020099995, 49.407813395000076 ], [ -119.568193486999959, 49.408534756000023 ], [ -119.56303228199998, 49.408227356000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259166", "BldgCostT": "4316666", "sL_LossRatio": "1", "sL_AssetLoss": "610", "sL_BldgLoss": "610", "sL_StrLoss": "610", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019AC17C7F1E25DC0E61C237679B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.543871859999911, 49.385314602000058 ], [ -119.543873098999924, 49.384894414000065 ], [ -119.543982142999937, 49.384658040000055 ], [ -119.544048332999949, 49.384618433000128 ], [ -119.54426564299996, 49.384590134000049 ], [ -119.544510892999952, 49.384569584000054 ], [ -119.544826013999952, 49.384581791000087 ], [ -119.544971111999956, 49.384634650000109 ], [ -119.544963493999916, 49.384689124000026 ], [ -119.545060339999978, 49.384694914000114 ], [ -119.545178794999984, 49.384821430000088 ], [ -119.545532592999933, 49.385079032000114 ], [ -119.546089020999958, 49.3852755630001 ], [ -119.546294355999962, 49.385307581000163 ], [ -119.546971318999923, 49.385413194000108 ], [ -119.547231484999926, 49.385419009000046 ], [ -119.54781289099995, 49.385561365000044 ], [ -119.547879189999961, 49.385589148000065 ], [ -119.547478727999959, 49.388453776000063 ], [ -119.54533104799999, 49.388325418000058 ], [ -119.545297414999965, 49.388112441000075 ], [ -119.545136128, 49.38777200700013 ], [ -119.545088895999953, 49.387332048000111 ], [ -119.54500589599995, 49.387205728000012 ], [ -119.544760949999912, 49.386602371000073 ], [ -119.544151945999928, 49.385854122000097 ], [ -119.544027811999953, 49.385737223000092 ], [ -119.54398758499994, 49.385620368000083 ], [ -119.543888952999907, 49.385359661000066 ], [ -119.543871859999911, 49.385314602000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11950416", "BldgCostT": "8241666", "sL_LossRatio": "1", "sL_AssetLoss": "1278", "sL_BldgLoss": "1278", "sL_StrLoss": "1278", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A8BE5F18FE45DC01FB8EB21F1B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.568957234999985, 49.41941959100005 ], [ -119.573518360999941, 49.419690942000074 ], [ -119.573803889999951, 49.420793911000018 ], [ -119.5739407, 49.421499486000137 ], [ -119.573993690999941, 49.422061899000028 ], [ -119.574005301999975, 49.422723098000077 ], [ -119.573990214, 49.422867146000073 ], [ -119.57397329299998, 49.423029235000087 ], [ -119.573941813, 49.423330122000046 ], [ -119.568457417000033, 49.423003870000088 ], [ -119.568957234999985, 49.41941959100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25652917", "BldgCostT": "17691667", "sL_LossRatio": "1", "sL_AssetLoss": "2400", "sL_BldgLoss": "2400", "sL_StrLoss": "2400", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6C8C9064AE35DC00245B09AFCB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.548997625999931, 49.393376154000045 ], [ -119.548815747999967, 49.393262160000056 ], [ -119.548690513999986, 49.393147006000035 ], [ -119.548395133999961, 49.393059484000048 ], [ -119.548059504999955, 49.392960002000166 ], [ -119.547541341999974, 49.392752852000122 ], [ -119.54742714799994, 49.392610345000016 ], [ -119.547366656999884, 49.39244864700008 ], [ -119.547284382999976, 49.39234167900004 ], [ -119.547160086999938, 49.392235519000096 ], [ -119.546843589999966, 49.392051751000068 ], [ -119.546539157999973, 49.39171403100007 ], [ -119.546354497999985, 49.391572849000099 ], [ -119.545552984999958, 49.391081931000095 ], [ -119.545162219999938, 49.390617762000147 ], [ -119.545211408999961, 49.390266061000048 ], [ -119.546743517999985, 49.390357630000068 ], [ -119.54677064899991, 49.390163596000072 ], [ -119.548770472999976, 49.390283087000086 ], [ -119.549255623999969, 49.386812043000177 ], [ -119.550122342999913, 49.386863819000062 ], [ -119.550188192999926, 49.386392588000028 ], [ -119.550419799999986, 49.386524096000045 ], [ -119.550952593999952, 49.386914597000072 ], [ -119.551526887999898, 49.38713690100009 ], [ -119.55165406, 49.387206457000019 ], [ -119.551760618999964, 49.387264707000035 ], [ -119.553134585999913, 49.388360508000048 ], [ -119.553513908999946, 49.38871298700014 ], [ -119.553954205999958, 49.389231703000043 ], [ -119.554069592999937, 49.389315391000189 ], [ -119.554089368999939, 49.389321305000074 ], [ -119.554277895999945, 49.389377514000032 ], [ -119.554316962999962, 49.389382566000108 ], [ -119.556701106999938, 49.38969199900005 ], [ -119.556781277999931, 49.389970217999988 ], [ -119.556797001999939, 49.390024804000049 ], [ -119.556854110999936, 49.390506208 ], [ -119.556993402999979, 49.390775703000088 ], [ -119.55704336299999, 49.390814645000056 ], [ -119.55706274, 49.390829761000127 ], [ -119.557189116999936, 49.39092830200012 ], [ -119.557315112999959, 49.390986410000039 ], [ -119.557613319999973, 49.391058406000106 ], [ -119.558052046999975, 49.39108461800005 ], [ -119.558082000999931, 49.391086392000048 ], [ -119.55826660299999, 49.391147192000091 ], [ -119.558326498999961, 49.391166888000051 ], [ -119.558356674999942, 49.391192826000093 ], [ -119.558406726999948, 49.391235800000103 ], [ -119.55847389399996, 49.391407903000065 ], [ -119.55849386099996, 49.391508702000039 ], [ -119.558610891999962, 49.392100095000082 ], [ -119.558670388999957, 49.39229095700005 ], [ -119.558709703000019, 49.392416955000016 ], [ -119.55877968199998, 49.392641495000127 ], [ -119.558825308999971, 49.392787821000056 ], [ -119.558847896999964, 49.392860273000068 ], [ -119.558882994999962, 49.392972908000068 ], [ -119.558898065000022, 49.393064272000082 ], [ -119.558917184999956, 49.393180168000093 ], [ -119.558933912999919, 49.393281300000133 ], [ -119.55893332, 49.393358859000088 ], [ -119.55893261699994, 49.393448710000051 ], [ -119.558931233999957, 49.393628747000029 ], [ -119.558931041999983, 49.393653893000085 ], [ -119.557768443000015, 49.393584546000049 ], [ -119.5579972, 49.391945789000061 ], [ -119.556452208999985, 49.391853614000112 ], [ -119.556556124999958, 49.391109325000052 ], [ -119.553198454999972, 49.390908926000044 ], [ -119.553232690999906, 49.390663836000094 ], [ -119.552237579999883, 49.390604424000088 ], [ -119.551752611999959, 49.394075461000043 ], [ -119.551078545999971, 49.394035212000084 ], [ -119.551131584999965, 49.393922506000074 ], [ -119.551135491, 49.393281290000061 ], [ -119.551032226999936, 49.392686307000091 ], [ -119.54999238399995, 49.392960280000047 ], [ -119.54983661299994, 49.39303482300005 ], [ -119.549822621999965, 49.393066562000058 ], [ -119.549765050999923, 49.393197189000013 ], [ -119.549871812, 49.393355544000094 ], [ -119.549910796999953, 49.3933892800001 ], [ -119.549933677999917, 49.393389486000054 ], [ -119.55000036199999, 49.393409198000079 ], [ -119.550118180999931, 49.393478906000048 ], [ -119.550186259999933, 49.393529319000017 ], [ -119.550206277999962, 49.393606664000039 ], [ -119.550271601999967, 49.393828526000078 ], [ -119.550256552999926, 49.393986124000051 ], [ -119.550220368999987, 49.393983963000068 ], [ -119.550202866999896, 49.394109186000087 ], [ -119.550128704999963, 49.394174143000065 ], [ -119.549929289999966, 49.394162233000024 ], [ -119.549564017999927, 49.39414041600002 ], [ -119.549526363999988, 49.393927043000105 ], [ -119.549339014999987, 49.393758871000053 ], [ -119.549341062999972, 49.393541447000118 ], [ -119.54927891799997, 49.393488379000104 ], [ -119.548997625999931, 49.393376154000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2206417", "BldgCostT": "1521667", "sL_LossRatio": "1", "sL_AssetLoss": "63.2", "sL_BldgLoss": "63.2", "sL_StrLoss": "63.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000091FC351787E15DC0F3A15DE83EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52428528799993, 49.293882164000095 ], [ -119.524343880999979, 49.29346365300006 ], [ -119.523593404999986, 49.293418544000069 ], [ -119.523627542999975, 49.293174731000093 ], [ -119.523542917999961, 49.293169644000059 ], [ -119.523593548999898, 49.29280804700003 ], [ -119.523230731999973, 49.292786236000062 ], [ -119.52325296099994, 49.292627481000046 ], [ -119.523065837999951, 49.292616232000114 ], [ -119.523090864999986, 49.292437496000097 ], [ -119.522903444999955, 49.292426228000068 ], [ -119.52292289899998, 49.29228730600007 ], [ -119.522766848999979, 49.292277925000093 ], [ -119.52279860799996, 49.292051124000103 ], [ -119.522603958999966, 49.292039421000027 ], [ -119.523105908999966, 49.288454654000077 ], [ -119.524633626999915, 49.288546492000101 ], [ -119.52464448299996, 49.288746689000121 ], [ -119.524468319999983, 49.289413901000067 ], [ -119.524502114999962, 49.289763889000064 ], [ -119.5245971, 49.290050709000084 ], [ -119.525213237999964, 49.290762799000106 ], [ -119.525235971999962, 49.290789072000052 ], [ -119.52496656199996, 49.29169160300011 ], [ -119.524717895999984, 49.292294835000114 ], [ -119.52462891199994, 49.292631823000136 ], [ -119.524779063999972, 49.293217146000075 ], [ -119.524768081999966, 49.293344180000119 ], [ -119.524610074999956, 49.29368282500009 ], [ -119.52428528799993, 49.293882164000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "68.6", "sL_BldgLoss": "68.6", "sL_StrLoss": "68.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006184D7CBC2DD5DC0AE1A3A2C43A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.464604488999967, 49.323074334000118 ], [ -119.464591026, 49.32280473 ], [ -119.464178575999966, 49.322813531000108 ], [ -119.464124731999974, 49.321735117000038 ], [ -119.464174959, 49.321734046000131 ], [ -119.46577449699997, 49.321699910000106 ], [ -119.46578275899995, 49.321865292000084 ], [ -119.465841846999979, 49.32304792500009 ], [ -119.464604488999967, 49.323074334000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23531083", "BldgCostT": "16228333", "sL_LossRatio": "0.999944134902545", "sL_AssetLoss": "1048.41847", "sL_BldgLoss": "1048.3599", "sL_StrLoss": "1047.031", "sL_NStrLoss": "1.3289", "sL_ContLoss": "0.05857", "geom_point": "0101000020E61000005BFE6C791FE25DC0EDD286C352AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.525968179999964, 49.339137874000059 ], [ -119.52612622599996, 49.338009869000061 ], [ -119.526440975, 49.338028761000061 ], [ -119.52659866499999, 49.336903176000071 ], [ -119.527749827999926, 49.336972266000011 ], [ -119.527893359999922, 49.335947503000071 ], [ -119.531479658999928, 49.336162660000092 ], [ -119.531883735999898, 49.333275887000063 ], [ -119.537359661999972, 49.333604179000105 ], [ -119.536858324999955, 49.337188769000065 ], [ -119.53327192099999, 49.336973791000034 ], [ -119.532969942999969, 49.339131479000045 ], [ -119.536609957999929, 49.339349670000082 ], [ -119.537025150999952, 49.336381315000075 ], [ -119.542501480999974, 49.336709345000081 ], [ -119.542405706999944, 49.337394684000103 ], [ -119.543812585999959, 49.33747891000008 ], [ -119.543601648999953, 49.338988570000062 ], [ -119.540434481999966, 49.339518308000088 ], [ -119.540434858999916, 49.33956528100007 ], [ -119.540451669999968, 49.341676298000081 ], [ -119.539576405999938, 49.341671322000067 ], [ -119.538942839999891, 49.341667714000089 ], [ -119.537826353999932, 49.341661345000048 ], [ -119.537041581999958, 49.341656865000104 ], [ -119.534921513999933, 49.341644735000102 ], [ -119.53355757099996, 49.341636894000018 ], [ -119.533405766999977, 49.341636039000086 ], [ -119.533172043999969, 49.341634696000128 ], [ -119.532855279, 49.341632867000087 ], [ -119.532511009999951, 49.341630876000089 ], [ -119.532194209999929, 49.341629055000034 ], [ -119.531891179999917, 49.341627306000085 ], [ -119.529447994999941, 49.341613196000054 ], [ -119.527609711999943, 49.341594875000084 ], [ -119.52718235699993, 49.341590603000071 ], [ -119.525419196, 49.341573008000054 ], [ -119.522293594999951, 49.341545781000058 ], [ -119.522659020999953, 49.338939191000158 ], [ -119.525968179999964, 49.339137874000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29485750", "BldgCostT": "20335000", "sL_LossRatio": "0.999997352833915", "sL_AssetLoss": "1118.7435565", "sL_BldgLoss": "1118.740595", "sL_StrLoss": "1118.407465", "sL_NStrLoss": "0.33313", "sL_ContLoss": "0.0029615", "geom_point": "0101000020E61000004370967197E35DC0259075E5F1AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.555535015999965, 49.339008301000092 ], [ -119.555127914999971, 49.338927901000105 ], [ -119.55504154499998, 49.338926715000127 ], [ -119.554538177999973, 49.338919796000013 ], [ -119.553664894999926, 49.339004093000014 ], [ -119.553203295999964, 49.338998205000024 ], [ -119.552690277999915, 49.338943003000082 ], [ -119.552407499999958, 49.338912590000049 ], [ -119.550737579999961, 49.338591585000046 ], [ -119.550579007999929, 49.338561102000021 ], [ -119.550250396999957, 49.338541488000011 ], [ -119.547155611999955, 49.338547985000034 ], [ -119.546683114999936, 49.338587407000027 ], [ -119.547007037, 49.336267945000074 ], [ -119.54995275, 49.336444152000105 ], [ -119.549964798999895, 49.336357834000097 ], [ -119.550005729999953, 49.336064591000131 ], [ -119.549919124999974, 49.336066503000055 ], [ -119.549905189999947, 49.335796918000042 ], [ -119.549492658999952, 49.33580602400005 ], [ -119.549478724000011, 49.33553643800014 ], [ -119.549066194999952, 49.335545544000112 ], [ -119.54905226299995, 49.335275958000111 ], [ -119.548639736999974, 49.335285061000071 ], [ -119.548625806999979, 49.335015476000052 ], [ -119.548213281, 49.335024577000084 ], [ -119.548199355999913, 49.334754992000086 ], [ -119.547786832999961, 49.334764092000071 ], [ -119.547772908999889, 49.334494506000112 ], [ -119.547360386999955, 49.334503604000133 ], [ -119.54734646699994, 49.334234018000132 ], [ -119.546933945999939, 49.334243115000021 ], [ -119.546920027999974, 49.333973529000062 ], [ -119.546507510999945, 49.33398262300004 ], [ -119.546493592999965, 49.333713038000056 ], [ -119.546081078999961, 49.333722132000013 ], [ -119.546060712999974, 49.333327524000012 ], [ -119.546259775999914, 49.333159189000106 ], [ -119.546601218999982, 49.332711588000095 ], [ -119.546767499999973, 49.33201490200004 ], [ -119.547009781999918, 49.331643494000097 ], [ -119.547124794999917, 49.331551900000065 ], [ -119.547499691999946, 49.331387299000028 ], [ -119.54769842799999, 49.331361351000112 ], [ -119.547851207999926, 49.331341394000106 ], [ -119.549666292999945, 49.331302704000059 ], [ -119.550740304999977, 49.33119030200006 ], [ -119.551396612999952, 49.331175806000026 ], [ -119.551535313999963, 49.331184101000062 ], [ -119.552567312999955, 49.331373400000103 ], [ -119.552569157999955, 49.331409070000085 ], [ -119.552700092999913, 49.331416898000043 ], [ -119.552793240999932, 49.33141483900009 ], [ -119.552850279999973, 49.331425302000135 ], [ -119.553828109999984, 49.33171868600008 ], [ -119.554223695999909, 49.331772212000054 ], [ -119.554683286999932, 49.331693094000109 ], [ -119.555553496999906, 49.331392602000101 ], [ -119.555806405999945, 49.331349262000053 ], [ -119.555967809999956, 49.331321592000101 ], [ -119.556394382999954, 49.331310996000113 ], [ -119.557380718999966, 49.33136539700007 ], [ -119.558064508999962, 49.331361911000045 ], [ -119.558387903999972, 49.331388514 ], [ -119.558677997999951, 49.331466401000064 ], [ -119.558806304999976, 49.331526407000126 ], [ -119.559123493999948, 49.331775804000152 ], [ -119.560233738999969, 49.333319220000142 ], [ -119.560433684999936, 49.333597199000067 ], [ -119.560656285, 49.333733310000149 ], [ -119.560936294, 49.333824192000101 ], [ -119.561713996999956, 49.333949200000056 ], [ -119.561783931999969, 49.333949444000069 ], [ -119.562020304999962, 49.333950296000047 ], [ -119.563362499999968, 49.33350090400004 ], [ -119.564134564, 49.334040568000056 ], [ -119.564519989999951, 49.334309930000096 ], [ -119.565045918999942, 49.334677549000105 ], [ -119.565742587999964, 49.335164474000088 ], [ -119.565986485999971, 49.335334902000035 ], [ -119.566426997999926, 49.335642814 ], [ -119.566509223999958, 49.335732204000102 ], [ -119.566935408999882, 49.336195408000037 ], [ -119.567249911999937, 49.336812411000054 ], [ -119.567293885999945, 49.336916243000097 ], [ -119.567651897999966, 49.337761038000117 ], [ -119.56780948799999, 49.338132965000092 ], [ -119.567858811999926, 49.338249301000097 ], [ -119.567936384999939, 49.338624392000028 ], [ -119.566323003, 49.338591511000061 ], [ -119.565322794999972, 49.338605905000108 ], [ -119.565100575999935, 49.338606198000015 ], [ -119.565007368999929, 49.338606334000133 ], [ -119.563698319999972, 49.338710888000087 ], [ -119.56238274699993, 49.338582271000107 ], [ -119.562012965999941, 49.338541222000096 ], [ -119.561686273999939, 49.338604671000098 ], [ -119.561550384999947, 49.338631084000099 ], [ -119.561217654999922, 49.338760028000095 ], [ -119.560851302999964, 49.338901999 ], [ -119.560258145, 49.33898768400006 ], [ -119.559948407999968, 49.339060439000015 ], [ -119.558942923999965, 49.339558855000107 ], [ -119.558623085999926, 49.339654507000098 ], [ -119.558327300999949, 49.339676601000093 ], [ -119.55806741399999, 49.339629455000143 ], [ -119.557649881999936, 49.339541624000049 ], [ -119.557466362999904, 49.339503013000069 ], [ -119.55664566800003, 49.339330382000099 ], [ -119.556365087999936, 49.339282884000035 ], [ -119.5559204199999, 49.339135802000015 ], [ -119.555825461999945, 49.33910437600008 ], [ -119.555535015999965, 49.339008301000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5029083", "BldgCostT": "3468333", "sL_LossRatio": "1", "sL_AssetLoss": "179.4", "sL_BldgLoss": "179.4", "sL_StrLoss": "179.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE923B0938E15DC0ED17474060A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.518502507999955, 49.280914326000087 ], [ -119.519325521, 49.280963847000109 ], [ -119.51930060299999, 49.281065282000085 ], [ -119.519345195999932, 49.281495388000053 ], [ -119.51943537599999, 49.281714575000102 ], [ -119.519498507999941, 49.281867996000081 ], [ -119.519738219999965, 49.282272797000083 ], [ -119.520121695999961, 49.282685390000083 ], [ -119.520394262999943, 49.282930691000068 ], [ -119.521364716, 49.283803993000021 ], [ -119.52141690399999, 49.283866515000092 ], [ -119.522315509999942, 49.284942002 ], [ -119.52232147699999, 49.284955105000037 ], [ -119.52239101, 49.28510775000003 ], [ -119.522645703999927, 49.285666809000091 ], [ -119.52280228799999, 49.286161875000083 ], [ -119.521549447999973, 49.286086537000067 ], [ -119.521541041, 49.286146572000128 ], [ -119.516070829999975, 49.285817456000089 ], [ -119.516573217999905, 49.282232685000089 ], [ -119.518303229999901, 49.282336803000092 ], [ -119.518502507999955, 49.280914326000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056E1C77F1EE15DC07694183E81AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.516613217999989, 49.338956069000105 ], [ -119.518263490999956, 49.338920104000067 ], [ -119.518359845999939, 49.340807246000068 ], [ -119.51670951, 49.340843213000049 ], [ -119.516613217999989, 49.338956069000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6377584", "BldgCostT": "4398334", "sL_LossRatio": "1", "sL_AssetLoss": "561.2", "sL_BldgLoss": "561.2", "sL_StrLoss": "561.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BD355B24AD05DC0162C7A4C49954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.255188702999973, 49.164073052000091 ], [ -119.25685247199999, 49.164177528000145 ], [ -119.256331343999975, 49.167761709000118 ], [ -119.250876969999979, 49.16741910500005 ], [ -119.250974839000023, 49.166746575000083 ], [ -119.25436304399993, 49.165671336000074 ], [ -119.254770069999935, 49.165238372000026 ], [ -119.255188702999973, 49.164073052000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10338500", "BldgCostT": "7130000", "sL_LossRatio": "1", "sL_AssetLoss": "890.5", "sL_BldgLoss": "890.5", "sL_StrLoss": "890.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000812BF24EF2DA5DC0CF0DF21FF7924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.418566903999974, 49.146207027000081 ], [ -119.424020008999946, 49.146541153000022 ], [ -119.423713898999935, 49.148701287000037 ], [ -119.423511956999945, 49.150126229000065 ], [ -119.418058432999914, 49.149792081000065 ], [ -119.418252067999987, 49.148426896000068 ], [ -119.418566903999974, 49.146207027000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9724667", "BldgCostT": "6706667", "sL_LossRatio": "1", "sL_AssetLoss": "766.6", "sL_BldgLoss": "766.6", "sL_StrLoss": "766.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000003E9A4EF9CDB5DC03C31EBC5D0944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433369270999918, 49.160930356000065 ], [ -119.434434870999965, 49.160995499000087 ], [ -119.43437930099995, 49.161388151000068 ], [ -119.433927462999918, 49.164580546000089 ], [ -119.428472170999967, 49.164246932000012 ], [ -119.428979995999939, 49.160661909000041 ], [ -119.433369270999918, 49.160930356000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5336000", "BldgCostT": "3680000", "sL_LossRatio": "1", "sL_AssetLoss": "395", "sL_BldgLoss": "395", "sL_StrLoss": "395", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0AD9FFEB3E15DC018E85E50F4A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.526002035999952, 49.255500895000033 ], [ -119.527884719000014, 49.255614103000077 ], [ -119.528077997999972, 49.255933803000097 ], [ -119.528075294999951, 49.257194212000037 ], [ -119.528397700999975, 49.257887799000073 ], [ -119.528629692, 49.259273987000064 ], [ -119.525186168999966, 49.259066939000022 ], [ -119.524699355999971, 49.259037660000082 ], [ -119.52520078799995, 49.255452705000017 ], [ -119.526002035999952, 49.255500895000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "1", "sL_AssetLoss": "206", "sL_BldgLoss": "206", "sL_StrLoss": "206", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000086BF4FEA05DC5DC0EB8056261D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.437108406999954, 49.150656252000111 ], [ -119.437029013999918, 49.149038550000036 ], [ -119.436617998999949, 49.149047229000132 ], [ -119.436578310999906, 49.148238377000084 ], [ -119.438222341999918, 49.148203653000088 ], [ -119.438235578999979, 49.148473270000096 ], [ -119.43905759799999, 49.148455900000101 ], [ -119.439110569999926, 49.149534365000058 ], [ -119.438699551999946, 49.149543052000077 ], [ -119.438739275999936, 49.150351903000058 ], [ -119.438328250999945, 49.150360588000048 ], [ -119.438341489999928, 49.150630205000084 ], [ -119.437108406999954, 49.150656252000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47076667", "BldgCostT": "32466667", "sL_LossRatio": "1", "sL_AssetLoss": "3540.1", "sL_BldgLoss": "3540.1", "sL_StrLoss": "3540.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EAC1493F86E15DC0516982B06C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.515268240999958, 49.249449923000036 ], [ -119.51577029799995, 49.245864958000062 ], [ -119.518893554999948, 49.246053086000053 ], [ -119.518880335999953, 49.245793400000117 ], [ -119.519292126999972, 49.24578441500006 ], [ -119.519234889999936, 49.244660070000073 ], [ -119.518982524999899, 49.244500459000072 ], [ -119.519205696999961, 49.244086592 ], [ -119.519182335999972, 49.243627649000082 ], [ -119.519456394999935, 49.243621668000081 ], [ -119.519582368, 49.243388044000028 ], [ -119.51956665799996, 49.243079471000073 ], [ -119.519750920999911, 49.243075450000035 ], [ -119.51995902799996, 49.242689492000125 ], [ -119.519937245999955, 49.242261697000046 ], [ -119.520150269999959, 49.242257048000063 ], [ -119.520305024999985, 49.241847160000084 ], [ -119.520325096999954, 49.241783177000094 ], [ -119.520307820999946, 49.241443922 ], [ -119.520562033999951, 49.241438372000047 ], [ -119.520647944999951, 49.240824355000058 ], [ -119.522977540999975, 49.240750912000038 ], [ -119.523923571999916, 49.240721195000113 ], [ -119.526384236999917, 49.240800650000033 ], [ -119.529756364999969, 49.240909398000056 ], [ -119.529758188999963, 49.240918300000061 ], [ -119.52995880499995, 49.241912407000086 ], [ -119.530359389999887, 49.242748411000065 ], [ -119.530313419999914, 49.243172906000034 ], [ -119.530134316999948, 49.243437800000081 ], [ -119.530240207999938, 49.243659898000061 ], [ -119.530527200999956, 49.24416699100005 ], [ -119.530619299999969, 49.244614195000118 ], [ -119.530519608999981, 49.244796497000024 ], [ -119.529818995999975, 49.245343386000052 ], [ -119.529843100999969, 49.246089598000019 ], [ -119.529957897, 49.246437210000074 ], [ -119.529743097999983, 49.247341492000103 ], [ -119.529835894999948, 49.247546597000074 ], [ -119.530147910999958, 49.248025084000091 ], [ -119.529960411999966, 49.248398293000044 ], [ -119.529565103999971, 49.248704499000027 ], [ -119.528772597999975, 49.249081908000157 ], [ -119.52843431899997, 49.249160203000073 ], [ -119.528325683999981, 49.249217201000107 ], [ -119.528010156999954, 49.249845726000046 ], [ -119.525819196999947, 49.249713962000101 ], [ -119.522905002999934, 49.249538634000018 ], [ -119.522953705999953, 49.249190484000103 ], [ -119.52257786899996, 49.249167866000036 ], [ -119.521985396999952, 49.249132209000045 ], [ -119.522122579999987, 49.248151676000134 ], [ -119.521474712999947, 49.248165827 ], [ -119.521451333999948, 49.247707025000146 ], [ -119.521447237999936, 49.247626636000113 ], [ -119.521351841999945, 49.247628720000087 ], [ -119.521035430999959, 49.247635630000111 ], [ -119.521049166999987, 49.247905225000068 ], [ -119.520996216999976, 49.247906381000071 ], [ -119.520734161999926, 49.249779098 ], [ -119.515268240999958, 49.249449923000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8158667", "BldgCostT": "5626667", "sL_LossRatio": "1", "sL_AssetLoss": "502", "sL_BldgLoss": "502", "sL_StrLoss": "502", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E2A3F6093DDC5DC0FD101B2C1C924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.438752608999934, 49.139525571000021 ], [ -119.444205076999964, 49.139858677000113 ], [ -119.443698650999963, 49.143443886000071 ], [ -119.438245765999937, 49.143110756000119 ], [ -119.438752608999934, 49.139525571000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65919500", "BldgCostT": "44990000", "sL_LossRatio": "1", "sL_AssetLoss": "4494.5", "sL_BldgLoss": "4494.5", "sL_StrLoss": "4494.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BFB308C45E15DC0F1BAC0DD40A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.520909243999967, 49.27155315800006 ], [ -119.521071924999916, 49.270391158000081 ], [ -119.520065896999981, 49.27033062600001 ], [ -119.516550156999955, 49.270119007000048 ], [ -119.516610605999944, 49.269687519000101 ], [ -119.514188211999965, 49.269541643000075 ], [ -119.514317725999888, 49.268617472000066 ], [ -119.513649653999948, 49.268577231000073 ], [ -119.514005187999899, 49.266040331000092 ], [ -119.513482314999948, 49.266008833000036 ], [ -119.513615309000016, 49.265059857000061 ], [ -119.511678919999909, 49.264943186000067 ], [ -119.512181420999966, 49.261358323000088 ], [ -119.517252690999925, 49.261663803000026 ], [ -119.517296605999931, 49.261350240000041 ], [ -119.521686848999963, 49.261614501000082 ], [ -119.522763942999944, 49.261679306000104 ], [ -119.522735467, 49.261882802000052 ], [ -119.523744125999926, 49.261943480000099 ], [ -119.523643867999937, 49.262660043000068 ], [ -119.524209556999949, 49.26269406900014 ], [ -119.52379893600002, 49.265628872000057 ], [ -119.524219646999939, 49.265654175000144 ], [ -119.523821187999985, 49.268501876000052 ], [ -119.526825349999925, 49.268682512000083 ], [ -119.526596019999928, 49.270322076000063 ], [ -119.528890798999896, 49.27046 ], [ -119.528850709, 49.270509109000038 ], [ -119.528943688999959, 49.270687196000061 ], [ -119.528851111999955, 49.27104889900005 ], [ -119.529095414999944, 49.271232594000047 ], [ -119.529064385999988, 49.271457707000067 ], [ -119.528769779999934, 49.271617192000107 ], [ -119.529213795999951, 49.27193190000007 ], [ -119.528739198999929, 49.272337788000073 ], [ -119.528637842999942, 49.272362584000078 ], [ -119.528585155999949, 49.272375476000079 ], [ -119.528412900999967, 49.272417607000136 ], [ -119.527244906999968, 49.272424704000045 ], [ -119.52655091599999, 49.272584207000158 ], [ -119.526043290999965, 49.272864796000057 ], [ -119.525389917999988, 49.273545607000116 ], [ -119.525044472, 49.273653774000067 ], [ -119.524835213999935, 49.273719299000078 ], [ -119.523597012999971, 49.273944297000128 ], [ -119.521759785999976, 49.274082498000034 ], [ -119.521089553999985, 49.274189415000137 ], [ -119.519536795999954, 49.274437092000021 ], [ -119.519261300999958, 49.275827599000095 ], [ -119.519100802, 49.275817940000131 ], [ -119.51726932399994, 49.275707713000017 ], [ -119.517771508999928, 49.272122883000065 ], [ -119.517845383999941, 49.272127329000078 ], [ -119.517928033, 49.271537285000072 ], [ -119.52003483299994, 49.271664079000061 ], [ -119.520524166999934, 49.271693523000103 ], [ -119.520534118999933, 49.271622446000052 ], [ -119.520863155999976, 49.27164224200002 ], [ -119.520875907999979, 49.271551153000068 ], [ -119.520909243999967, 49.27155315800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8441417", "BldgCostT": "5821667", "sL_LossRatio": "0.999999695355596", "sL_AssetLoss": "597.84456013", "sL_BldgLoss": "597.844378", "sL_StrLoss": "597.800964", "sL_NStrLoss": "0.043414", "sL_ContLoss": "0.00018213", "geom_point": "0101000020E6100000FE16F0745FDA5DC0EB83B8B412934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.414463505999933, 49.147346685000102 ], [ -119.415057276999903, 49.147383102000084 ], [ -119.414548522999922, 49.150968133000042 ], [ -119.411418061999967, 49.150776098000058 ], [ -119.409094965999927, 49.150633530000057 ], [ -119.40944914, 49.148139894000089 ], [ -119.409604135999942, 49.147048524000112 ], [ -119.414463505999933, 49.147346685000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9676333", "BldgCostT": "6673333", "sL_LossRatio": "1", "sL_AssetLoss": "829.1", "sL_BldgLoss": "829.1", "sL_StrLoss": "829.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EFD6A66FE1D95DC0A9216063CD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.401912871999983, 49.144932942000054 ], [ -119.407365709999965, 49.145267910000079 ], [ -119.407078890999983, 49.147286834000091 ], [ -119.406856388000023, 49.148852915000077 ], [ -119.401403133999906, 49.148517922000082 ], [ -119.40164354700002, 49.146827167000048 ], [ -119.401912871999983, 49.144932942000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74316250", "BldgCostT": "50725000", "sL_LossRatio": "0.99977580344583", "sL_AssetLoss": "13222.99538", "sL_BldgLoss": "13220.03083", "sL_StrLoss": "13210.00763", "sL_NStrLoss": "10.0232", "sL_ContLoss": "2.96455", "geom_point": "0101000020E6100000C00A4B97D9E35DC0ECC4A35C33944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.544670194999966, 49.170016083000085 ], [ -119.544513195, 49.169987708000093 ], [ -119.54309376899991, 49.169948534000113 ], [ -119.542984008, 49.169945502000104 ], [ -119.542478291999956, 49.169931415000086 ], [ -119.541366585999981, 49.170070209000059 ], [ -119.541301013999913, 49.170078400000087 ], [ -119.540304758999966, 49.170538647000051 ], [ -119.539045797999933, 49.170905646000115 ], [ -119.53904315299998, 49.170888281000032 ], [ -119.539039499999944, 49.170864300000126 ], [ -119.539436506999962, 49.168940187 ], [ -119.540245894999913, 49.167329395000166 ], [ -119.545738639999954, 49.161300197000109 ], [ -119.546017171999907, 49.161316933000116 ], [ -119.546113322999958, 49.16132271 ], [ -119.546131775999939, 49.161190052000094 ], [ -119.546165505999937, 49.160947567000065 ], [ -119.54606532299999, 49.160941548000054 ], [ -119.546493089999942, 49.160471914 ], [ -119.547301589999975, 49.159602626000051 ], [ -119.547493212999939, 49.159396591000082 ], [ -119.548444215999893, 49.158691608000026 ], [ -119.55060779199998, 49.157267392000058 ], [ -119.551664196999923, 49.156452814 ], [ -119.552177764999911, 49.156101735000107 ], [ -119.552398988999983, 49.156115015000125 ], [ -119.553716344999884, 49.156194089000046 ], [ -119.553728989999954, 49.156103064000078 ], [ -119.553789425999966, 49.156106691000112 ], [ -119.553835702999947, 49.1557735660001 ], [ -119.554175103999981, 49.155793935000126 ], [ -119.55419389299999, 49.155658674000058 ], [ -119.554542650999963, 49.155679604000092 ], [ -119.554581490999951, 49.155399981000066 ], [ -119.554918685999922, 49.155420216000074 ], [ -119.554994801999968, 49.15487219000007 ], [ -119.559755582999941, 49.155157769 ], [ -119.559829911999941, 49.154622200000027 ], [ -119.562748950999961, 49.154797195000057 ], [ -119.56391649199999, 49.154867166000074 ], [ -119.563959566999955, 49.154556596000113 ], [ -119.563201093999979, 49.154511142000032 ], [ -119.56223197599995, 49.154453056000108 ], [ -119.562729388999969, 49.150867356000084 ], [ -119.56621606499999, 49.151076295000045 ], [ -119.566519835999912, 49.14888503700007 ], [ -119.56998355899999, 49.149092488000065 ], [ -119.570118946999926, 49.148115265000051 ], [ -119.569991306999896, 49.148107622000069 ], [ -119.569893943999986, 49.148810368000085 ], [ -119.564439536999899, 49.148483633000076 ], [ -119.564534067999958, 49.147801895000057 ], [ -119.567634375999887, 49.145635015000074 ], [ -119.571203882999981, 49.143125189000031 ], [ -119.571431594999979, 49.14326830800006 ], [ -119.571947101999939, 49.143685108000078 ], [ -119.572442498999919, 49.14420830400006 ], [ -119.572690140999967, 49.144580721000125 ], [ -119.572755412000021, 49.14467888100009 ], [ -119.573119709, 49.145105704000102 ], [ -119.573530316999964, 49.145416800000127 ], [ -119.574048879999907, 49.145682798000038 ], [ -119.574263230999975, 49.145756422000062 ], [ -119.574361292999981, 49.145790105000088 ], [ -119.574582214999964, 49.145862997000087 ], [ -119.57513845599999, 49.145970818000123 ], [ -119.575277110999949, 49.145997691000041 ], [ -119.575704614999964, 49.146024572000016 ], [ -119.575856286, 49.146034087000025 ], [ -119.576142505999897, 49.146052078000089 ], [ -119.576530846999972, 49.146055190000062 ], [ -119.580239085999935, 49.14608470200006 ], [ -119.580225703999972, 49.146497971 ], [ -119.580162419, 49.148448300000034 ], [ -119.579976611999911, 49.148907195000085 ], [ -119.579668501999905, 49.149335305000115 ], [ -119.579347291999966, 49.149669504000059 ], [ -119.578351774999973, 49.150605521000074 ], [ -119.577811590999943, 49.151113356000039 ], [ -119.576454794999918, 49.152388894000055 ], [ -119.573584684000011, 49.155083952000069 ], [ -119.572394322999955, 49.156201587000041 ], [ -119.571632617, 49.156927160000123 ], [ -119.570516170999952, 49.157990631000118 ], [ -119.567826605999954, 49.160552295000102 ], [ -119.565708797999946, 49.159579388000076 ], [ -119.565704493999945, 49.159620791000087 ], [ -119.565463081999937, 49.15991359500002 ], [ -119.565199308999937, 49.160130088000059 ], [ -119.564583793999958, 49.16047327000004 ], [ -119.564547893999929, 49.160493297000052 ], [ -119.563259990999882, 49.161053389000124 ], [ -119.562754486999935, 49.161345693000065 ], [ -119.562375205999942, 49.16165108400007 ], [ -119.562010498999953, 49.162099288000029 ], [ -119.561868567999937, 49.162359597000012 ], [ -119.561595304999969, 49.162860789000057 ], [ -119.561367816000015, 49.163172487000111 ], [ -119.561320805999983, 49.163217505000048 ], [ -119.560532046999938, 49.163972854000065 ], [ -119.560435093999985, 49.164065712000053 ], [ -119.560233202999939, 49.164202687000063 ], [ -119.560018596999967, 49.164291994000116 ], [ -119.558897114000018, 49.164612507000093 ], [ -119.558251181999935, 49.163924671000068 ], [ -119.557955100999934, 49.1636093830001 ], [ -119.557501196999979, 49.163125997000087 ], [ -119.55498811299999, 49.164159407000056 ], [ -119.55452986599991, 49.164347810000088 ], [ -119.553659020999959, 49.164705896000029 ], [ -119.552877879999983, 49.165102955000066 ], [ -119.55061009, 49.166255702000107 ], [ -119.551442762999955, 49.166893374000047 ], [ -119.55283284799999, 49.167957867000084 ], [ -119.552989614999916, 49.168077903000011 ], [ -119.551183013999946, 49.169007528000108 ], [ -119.551099801999982, 49.169052491000087 ], [ -119.550752739999922, 49.169323933 ], [ -119.55070383899999, 49.169389052 ], [ -119.548394005999981, 49.173180881000114 ], [ -119.546972204999989, 49.172849707000069 ], [ -119.546922882999979, 49.172729596000082 ], [ -119.546665236999985, 49.172102184000082 ], [ -119.5466022899999, 49.171948891000092 ], [ -119.546477128999967, 49.171742976000111 ], [ -119.546419794999949, 49.171648698000091 ], [ -119.546173617999941, 49.171322104000126 ], [ -119.545836089, 49.170957159000061 ], [ -119.545539897, 49.17063691200012 ], [ -119.544825704999965, 49.170104988000048 ], [ -119.544680547999974, 49.170022028000055 ], [ -119.544670194999966, 49.170016083000085 ] ], [ [ -119.576607563, 49.148198682000086 ], [ -119.576623155, 49.148086017000026 ], [ -119.575630806999968, 49.148026655000088 ], [ -119.575615210999942, 49.148139320000062 ], [ -119.576607563, 49.148198682000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999964849377886", "sL_AssetLoss": "412.22599", "sL_BldgLoss": "412.2115", "sL_StrLoss": "412.1", "sL_NStrLoss": "0.1115", "sL_ContLoss": "0.01449", "geom_point": "0101000020E6100000807F29877FE25DC083944C0CD1954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.537760147999947, 49.175585634000093 ], [ -119.537840811999942, 49.17500668800011 ], [ -119.537778304999989, 49.175002929000144 ], [ -119.538182636999977, 49.172100738000033 ], [ -119.537818493999907, 49.172078837000065 ], [ -119.538182960999947, 49.169462601000141 ], [ -119.538105671999944, 49.169457952000052 ], [ -119.538605104999931, 49.16587244600003 ], [ -119.539739562999969, 49.165940673000058 ], [ -119.539881601999951, 49.164920672000036 ], [ -119.541525448999948, 49.165019514000072 ], [ -119.541907783999932, 49.165042499000045 ], [ -119.540433417999978, 49.166714206000101 ], [ -119.539391578999954, 49.16807709600009 ], [ -119.538842506999956, 49.169960005000064 ], [ -119.538722109999966, 49.17134000900009 ], [ -119.538871315, 49.172389702000075 ], [ -119.539396997999972, 49.174095907000066 ], [ -119.540024679999988, 49.175631869000043 ], [ -119.540004746999941, 49.175647797000089 ], [ -119.539755043999961, 49.1758476870001 ], [ -119.539610728999904, 49.175922194000137 ], [ -119.537036319999956, 49.175944873000056 ], [ -119.537037469, 49.175905743000072 ], [ -119.537038175999925, 49.17554221100005 ], [ -119.537760147999947, 49.175585634000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15647917", "BldgCostT": "10791667", "sL_LossRatio": "1", "sL_AssetLoss": "1758", "sL_BldgLoss": "1758", "sL_StrLoss": "1758", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F31BCB60B1E25DC05E6EAC9B3D944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.542750202999969, 49.162598867000057 ], [ -119.542795873999964, 49.162270732000067 ], [ -119.541449332999932, 49.162189779000059 ], [ -119.540086601999946, 49.162107836000104 ], [ -119.540047311999942, 49.162390014000053 ], [ -119.537064088999898, 49.162210567000059 ], [ -119.537072375, 49.15794602200004 ], [ -119.537071643999951, 49.157681543000109 ], [ -119.536552196999963, 49.153973194000031 ], [ -119.544637395999985, 49.154018735000136 ], [ -119.54452742399998, 49.154809256000064 ], [ -119.54487777199995, 49.154830313000105 ], [ -119.545127506999947, 49.154845323000053 ], [ -119.54496543, 49.156010438000081 ], [ -119.547329012999967, 49.156152465000055 ], [ -119.547156697999924, 49.15739156500014 ], [ -119.547829594999968, 49.157431988000063 ], [ -119.547875781999934, 49.157099832000043 ], [ -119.548230713999942, 49.15712115300002 ], [ -119.54826848, 49.156849541000042 ], [ -119.548687273999946, 49.156874697000035 ], [ -119.548749080999954, 49.156430150000084 ], [ -119.549746504999931, 49.156490056000074 ], [ -119.549820161999975, 49.155960175000082 ], [ -119.551121954999985, 49.156038346000052 ], [ -119.55177238499999, 49.156077398 ], [ -119.549121477999975, 49.157975198000095 ], [ -119.547832696999961, 49.158795608000091 ], [ -119.54704452799993, 49.159483480000063 ], [ -119.546468480999962, 49.159986204000035 ], [ -119.545601423999983, 49.160913674000085 ], [ -119.545346686999949, 49.160898367000051 ], [ -119.544965918999964, 49.160875486000151 ], [ -119.544892848999964, 49.16140068400005 ], [ -119.54486776099999, 49.16158100400002 ], [ -119.54497169499993, 49.161587249000078 ], [ -119.544673588999927, 49.161906105000071 ], [ -119.542504215999912, 49.164366193000021 ], [ -119.542569288, 49.16389868900005 ], [ -119.542750202999969, 49.162598867000057 ] ], [ [ -119.54495678699999, 49.159956299999983 ], [ -119.545727093999943, 49.159724196000127 ], [ -119.544999387999923, 49.159721314000109 ], [ -119.544612593999972, 49.159919295000059 ], [ -119.544382010999982, 49.160229789000041 ], [ -119.544010316999973, 49.160471893000071 ], [ -119.544107501999918, 49.161027291000046 ], [ -119.544249611999945, 49.161141302000026 ], [ -119.544194011999934, 49.161376195000031 ], [ -119.5442777199999, 49.161401903000126 ], [ -119.544591582999928, 49.161404701000038 ], [ -119.544602583999932, 49.161323501 ], [ -119.544310685999903, 49.160978899000042 ], [ -119.544314413999984, 49.160537397000098 ], [ -119.544739397999962, 49.160276807000123 ], [ -119.54495678699999, 49.159956299999983 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180250291", "BldgCostT": "119155870", "sL_LossRatio": "0.975896993428634", "sL_AssetLoss": "13671.696061", "sL_BldgLoss": "13342.167081", "sL_StrLoss": "13187.569481", "sL_NStrLoss": "154.5976", "sL_ContLoss": "329.52898", "geom_point": "0101000020E6100000340994036CE45DC072B63EB428954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565099832999977, 49.171079350000106 ], [ -119.564949711999958, 49.170976628000034 ], [ -119.564766347, 49.171073565000043 ], [ -119.564297367000023, 49.17144439500008 ], [ -119.563256674999977, 49.1720377010001 ], [ -119.563055685999984, 49.172196658000061 ], [ -119.562914324999952, 49.172476898000063 ], [ -119.56290152599999, 49.172563993000097 ], [ -119.561868732, 49.172341092000053 ], [ -119.561792090999944, 49.172693850000144 ], [ -119.560746058999911, 49.17244441200009 ], [ -119.561001513999912, 49.172074404000064 ], [ -119.56088558499999, 49.172042168000047 ], [ -119.558626699999962, 49.171414090000077 ], [ -119.557644890999939, 49.171117747000089 ], [ -119.556744789999954, 49.170880119000088 ], [ -119.554810796999931, 49.169453509000128 ], [ -119.554058386999955, 49.168879610000083 ], [ -119.553234333999953, 49.168261474000076 ], [ -119.552989614999916, 49.168077903000011 ], [ -119.55283284799999, 49.167957867000084 ], [ -119.551442762999955, 49.166893374000047 ], [ -119.55061009, 49.166255702000107 ], [ -119.552877879999983, 49.165102955000066 ], [ -119.553659020999959, 49.164705896000029 ], [ -119.55452986599991, 49.164347810000088 ], [ -119.55498811299999, 49.164159407000056 ], [ -119.557501196999979, 49.163125997000087 ], [ -119.557955100999934, 49.1636093830001 ], [ -119.558251181999935, 49.163924671000068 ], [ -119.558897114000018, 49.164612507000093 ], [ -119.560018596999967, 49.164291994000116 ], [ -119.560233202999939, 49.164202687000063 ], [ -119.560435093999985, 49.164065712000053 ], [ -119.560532046999938, 49.163972854000065 ], [ -119.561320805999983, 49.163217505000048 ], [ -119.561367816000015, 49.163172487000111 ], [ -119.561595304999969, 49.162860789000057 ], [ -119.561868567999937, 49.162359597000012 ], [ -119.562010498999953, 49.162099288000029 ], [ -119.562375205999942, 49.16165108400007 ], [ -119.562754486999935, 49.161345693000065 ], [ -119.563259990999882, 49.161053389000124 ], [ -119.564547893999929, 49.160493297000052 ], [ -119.564583793999958, 49.16047327000004 ], [ -119.565199308999937, 49.160130088000059 ], [ -119.565463081999937, 49.15991359500002 ], [ -119.565704493999945, 49.159620791000087 ], [ -119.565708797999946, 49.159579388000076 ], [ -119.567826605999954, 49.160552295000102 ], [ -119.570516170999952, 49.157990631000118 ], [ -119.571632617, 49.156927160000123 ], [ -119.572394322999955, 49.156201587000041 ], [ -119.574583799999928, 49.157211997000076 ], [ -119.574833993999917, 49.157272204000087 ], [ -119.576188619000021, 49.15735138499999 ], [ -119.577063883999969, 49.157554694000055 ], [ -119.577668264999986, 49.157599258000054 ], [ -119.577791567999924, 49.157608341000078 ], [ -119.577914839999949, 49.15761743500007 ], [ -119.581409196999957, 49.157875 ], [ -119.584472091999956, 49.158100510000089 ], [ -119.584459709999976, 49.158199996000072 ], [ -119.58406997299997, 49.15893474700006 ], [ -119.583513706999938, 49.159983438000062 ], [ -119.582704554999964, 49.161508825000084 ], [ -119.582434419999984, 49.162018017 ], [ -119.582272214999946, 49.162323800000138 ], [ -119.582192195999966, 49.16255398900006 ], [ -119.582211021999981, 49.162745800000032 ], [ -119.58245587899998, 49.163779102000014 ], [ -119.582451787999943, 49.163822064000051 ], [ -119.582425588999968, 49.164098092000067 ], [ -119.582300303999943, 49.164307588000085 ], [ -119.581758502999904, 49.164923313000074 ], [ -119.581660419999977, 49.165135194000044 ], [ -119.581649409999983, 49.165294489000125 ], [ -119.581664990999954, 49.16537381100008 ], [ -119.581754881999984, 49.165830784000093 ], [ -119.581862581999985, 49.16637831000002 ], [ -119.581853610999943, 49.166698164000053 ], [ -119.5818521099999, 49.166751904000101 ], [ -119.581771172999936, 49.166924353000056 ], [ -119.581682503999957, 49.167113200000067 ], [ -119.581180971999956, 49.167984394000058 ], [ -119.578581779999979, 49.167031848000093 ], [ -119.578293212999981, 49.166926092000068 ], [ -119.577721804999953, 49.167377298000076 ], [ -119.577344900999918, 49.167715391000101 ], [ -119.576334610999979, 49.168746015000089 ], [ -119.575003222999968, 49.1701041540001 ], [ -119.572920486999948, 49.17222850700005 ], [ -119.572960682999906, 49.172256195000024 ], [ -119.57357980799999, 49.173497190000099 ], [ -119.573561730999941, 49.173501089000077 ], [ -119.572093036999902, 49.173818417000106 ], [ -119.571681160999958, 49.173907401000037 ], [ -119.571446911999899, 49.173958006000056 ], [ -119.570658506999933, 49.174157504000107 ], [ -119.569960611999974, 49.17440860300011 ], [ -119.569603081999944, 49.174128795000065 ], [ -119.567854617999927, 49.172953716000059 ], [ -119.567455078999942, 49.172656839000041 ], [ -119.566617669999971, 49.17211793700011 ], [ -119.565099832999977, 49.171079350000106 ] ], [ [ -119.576198592999944, 49.159726714000115 ], [ -119.576216921999972, 49.159594324000082 ], [ -119.575559667999954, 49.159555016000063 ], [ -119.575541338, 49.159687406000039 ], [ -119.576198592999944, 49.159726714000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44174167", "BldgCostT": "29991667", "sL_LossRatio": "0.991004885136279", "sL_AssetLoss": "6077.297603", "sL_BldgLoss": "6022.631613", "sL_StrLoss": "6002.20248", "sL_NStrLoss": "20.429133", "sL_ContLoss": "54.66599", "geom_point": "0101000020E6100000BFDF81642EE45DC0ECBCAEDB77904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.564674771999989, 49.146787140000093 ], [ -119.564684138999922, 49.146719587000113 ], [ -119.56164916299997, 49.146537660000057 ], [ -119.562146537, 49.142951919000076 ], [ -119.562460241999986, 49.142970727000019 ], [ -119.562529545999965, 49.142471025000063 ], [ -119.564755583999954, 49.142604464000151 ], [ -119.564861681999929, 49.141839177000129 ], [ -119.565676903999972, 49.141888034000061 ], [ -119.56569955399999, 49.141724633000116 ], [ -119.565144493999966, 49.14169136900005 ], [ -119.565256334999944, 49.140884592000113 ], [ -119.564836697999937, 49.140859441000032 ], [ -119.564624780999964, 49.142388009000044 ], [ -119.561056079999972, 49.142174057000013 ], [ -119.559724881999927, 49.142094217000128 ], [ -119.559835057999962, 49.138205805000077 ], [ -119.559904836999962, 49.137702817000026 ], [ -119.55984940300003, 49.137699492000145 ], [ -119.559922587999893, 49.135116131000046 ], [ -119.56006399499995, 49.13409674400004 ], [ -119.562577333, 49.134247488000042 ], [ -119.564981072999927, 49.134391603000061 ], [ -119.56529008899993, 49.132162077000025 ], [ -119.563515550999924, 49.132055690000058 ], [ -119.560927473999968, 49.131900477000087 ], [ -119.560944117999938, 49.131780458000051 ], [ -119.560016489999953, 49.131801042000077 ], [ -119.560017293999977, 49.13177271900004 ], [ -119.559983345999953, 49.131772158000082 ], [ -119.559943198999974, 49.130992966000079 ], [ -119.561056759999971, 49.13096825600006 ], [ -119.561143553999912, 49.130342397000042 ], [ -119.561108317999967, 49.129658807000084 ], [ -119.560569304999902, 49.12962647300013 ], [ -119.560661214999982, 49.128963760000119 ], [ -119.560612027, 49.128009215000141 ], [ -119.560201225, 49.12801833100005 ], [ -119.560131777999942, 49.126670367000038 ], [ -119.560981873999964, 49.126651502000065 ], [ -119.561066581999938, 49.126040642000063 ], [ -119.56215899299994, 49.126106172000085 ], [ -119.562157929999969, 49.126085590000059 ], [ -119.562823028999972, 49.126070819000027 ], [ -119.563801071999961, 49.126049090000066 ], [ -119.563809121999967, 49.126205136000173 ], [ -119.563824008999944, 49.126206028000084 ], [ -119.563980033999925, 49.125080332000032 ], [ -119.562487309999966, 49.124990810000085 ], [ -119.561585440000016, 49.124936712000071 ], [ -119.56170300499997, 49.124088786000165 ], [ -119.56108147899999, 49.124051500000128 ], [ -119.561319156999929, 49.122337337000026 ], [ -119.560338267999924, 49.122278485000024 ], [ -119.560613924999956, 49.120290534000084 ], [ -119.560624403999924, 49.120214960000027 ], [ -119.56052161199996, 49.120208792000071 ], [ -119.55793952599997, 49.120053824000038 ], [ -119.558032798999989, 49.119381407000091 ], [ -119.553031914999977, 49.119081091000027 ], [ -119.553529658999935, 49.115495238000065 ], [ -119.553565127999946, 49.115497368000035 ], [ -119.554569396999952, 49.115557697000057 ], [ -119.554681349999925, 49.114750961000055 ], [ -119.555492873000034, 49.114799704000063 ], [ -119.555788514999918, 49.112668881000062 ], [ -119.5594398, 49.112888112000057 ], [ -119.559765460999984, 49.110539366000076 ], [ -119.560761876999891, 49.110599171000032 ], [ -119.561544414999958, 49.110646133000031 ], [ -119.564845854999987, 49.113533796000063 ], [ -119.564790579999922, 49.113932753000043 ], [ -119.564731762999955, 49.11435727200012 ], [ -119.565364980999931, 49.114395246000086 ], [ -119.565528607999966, 49.114405058000095 ], [ -119.56551341, 49.114514756000098 ], [ -119.565506710999898, 49.114563123000046 ], [ -119.565578854999956, 49.114567449000013 ], [ -119.565754011999957, 49.114577952000069 ], [ -119.565744482999932, 49.114646738000083 ], [ -119.565737741999897, 49.114695400000102 ], [ -119.565636822999963, 49.115423893000063 ], [ -119.566722550999941, 49.11548899100007 ], [ -119.567107937999978, 49.115512095000085 ], [ -119.567404690999936, 49.115771605000127 ], [ -119.568386714999932, 49.116738706000064 ], [ -119.568936291999989, 49.117546190000041 ], [ -119.569594395, 49.118853611000134 ], [ -119.569826703999937, 49.119910396000094 ], [ -119.569885110999948, 49.120241438000022 ], [ -119.569746924999961, 49.120233158000097 ], [ -119.569124008999935, 49.120195833000032 ], [ -119.569163424999957, 49.119911180000045 ], [ -119.5668833899999, 49.119774527000068 ], [ -119.566744737999926, 49.120775447000042 ], [ -119.567029763000036, 49.120792532000117 ], [ -119.566977588999976, 49.121169179000091 ], [ -119.569986659, 49.121349508000037 ], [ -119.57006633, 49.121354281 ], [ -119.570192193999958, 49.122231788000072 ], [ -119.570478074, 49.123074646000127 ], [ -119.570597991999961, 49.123428189000073 ], [ -119.57140430799997, 49.124715691000134 ], [ -119.572011792999916, 49.125339495000084 ], [ -119.572655701999977, 49.125829390000121 ], [ -119.573504710999927, 49.126342090000087 ], [ -119.573978694999965, 49.126511613000041 ], [ -119.575427001999984, 49.127468693000061 ], [ -119.576067302999931, 49.128173693000043 ], [ -119.576506586999983, 49.128991104000072 ], [ -119.576568471999948, 49.129504388000051 ], [ -119.575440451999896, 49.129436879000117 ], [ -119.575113457999961, 49.131799999000059 ], [ -119.574558843999924, 49.131766803000055 ], [ -119.574259235999989, 49.133931612000033 ], [ -119.570834505, 49.133726562000113 ], [ -119.570785298999937, 49.134081890000118 ], [ -119.570612683999954, 49.134071554000037 ], [ -119.57033731199999, 49.136059914000093 ], [ -119.571379890999978, 49.1361223500001 ], [ -119.571234831, 49.137169873000104 ], [ -119.573289697999925, 49.137292900000084 ], [ -119.573069578999949, 49.138882865000049 ], [ -119.573934515999909, 49.138934638000073 ], [ -119.574049293999934, 49.138105478000078 ], [ -119.57440487799991, 49.138126760000041 ], [ -119.574590760999968, 49.138137885000063 ], [ -119.57404059699995, 49.139365103000031 ], [ -119.572926291999948, 49.14088471300002 ], [ -119.5717273899999, 49.142089611000053 ], [ -119.570716107999928, 49.142818638000058 ], [ -119.568714482999951, 49.144261501000081 ], [ -119.567160759999965, 49.145321398000121 ], [ -119.564639553999896, 49.147041133000059 ], [ -119.564674771999989, 49.146787140000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "232.6", "sL_BldgLoss": "232.6", "sL_StrLoss": "232.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E4073A9C71E25DC02CE5C63E928C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.5357095299999, 49.096255969000048 ], [ -119.541157622999947, 49.096584186000065 ], [ -119.540739131999956, 49.099594626000062 ], [ -119.54065912899992, 49.100170087000095 ], [ -119.535210619999987, 49.099841846000096 ], [ -119.535651962, 49.096669766000062 ], [ -119.5357095299999, 49.096255969000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999995933285531", "sL_AssetLoss": "284.013055", "sL_BldgLoss": "284.0119", "sL_StrLoss": "284", "sL_NStrLoss": "0.0119", "sL_ContLoss": "0.001155", "geom_point": "0101000020E6100000441EB91C8CE35DC0983F958911904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.553007166999961, 49.123276849000042 ], [ -119.558458542000011, 49.123604176000114 ], [ -119.557961091999928, 49.127190007000081 ], [ -119.557930602999988, 49.127188177000072 ], [ -119.5578466199999, 49.127793508000117 ], [ -119.552394757999963, 49.127466152000032 ], [ -119.552892640999957, 49.123880348000057 ], [ -119.552923126999929, 49.123882179000084 ], [ -119.553007166999961, 49.123276849000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999993593594969", "sL_AssetLoss": "75.705485", "sL_BldgLoss": "75.705", "sL_StrLoss": "75.7", "sL_NStrLoss": "0.005", "sL_ContLoss": "0.000485", "geom_point": "0101000020E61000006BB6F2923FE35DC0EA8BAD354E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546397350999925, 49.084406022000039 ], [ -119.546354842999946, 49.083982693000074 ], [ -119.546516206999925, 49.084087903000075 ], [ -119.54766379099999, 49.084945165000136 ], [ -119.547764003999973, 49.085019991000117 ], [ -119.548340177999989, 49.085503769000084 ], [ -119.54841571299994, 49.085567201000103 ], [ -119.549417193999943, 49.086543200000101 ], [ -119.549544927999946, 49.086679202000077 ], [ -119.549770473999928, 49.086919362000074 ], [ -119.551558865999951, 49.088823351000073 ], [ -119.552567310999976, 49.089896901000039 ], [ -119.552682210999976, 49.090019197000117 ], [ -119.55277966599999, 49.090107651000103 ], [ -119.553210404999987, 49.090498403000048 ], [ -119.553839297999971, 49.090983703000056 ], [ -119.553891213999961, 49.091020877000076 ], [ -119.553928198999984, 49.091047390000014 ], [ -119.554788917999957, 49.091663917000098 ], [ -119.55481741599999, 49.09168429300005 ], [ -119.554820681999942, 49.09168616200008 ], [ -119.553152986999976, 49.091585925000039 ], [ -119.553103417999949, 49.091943231000052 ], [ -119.552991024999983, 49.09158790700014 ], [ -119.552763920999908, 49.090996675000028 ], [ -119.552528764999948, 49.09036224400004 ], [ -119.551985717, 49.089635125000022 ], [ -119.551062298999923, 49.088925203000102 ], [ -119.547987717999916, 49.085752090000042 ], [ -119.547111754999932, 49.084878480000107 ], [ -119.546397350999925, 49.084406022000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "73.6", "sL_BldgLoss": "73.6", "sL_StrLoss": "73.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C6E1276919E45DC0220F2B79488E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.562112382999899, 49.110680214000062 ], [ -119.565215393999935, 49.110866357000091 ], [ -119.564917378999951, 49.113017536000051 ], [ -119.564892113000013, 49.113199909000116 ], [ -119.56339570499992, 49.111902099000098 ], [ -119.56207340499995, 49.110677875000128 ], [ -119.562112382999899, 49.110680214000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43076416", "BldgCostT": "29026666", "sL_LossRatio": "0.990049863538381", "sL_AssetLoss": "4552.70138", "sL_BldgLoss": "4507.40138", "sL_StrLoss": "4491.00138", "sL_NStrLoss": "16.4", "sL_ContLoss": "45.3", "geom_point": "0101000020E6100000A377226F96E45DC0759184754A8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.568356815999962, 49.144782807000119 ], [ -119.570983550999969, 49.142986706000073 ], [ -119.571349902999913, 49.142736185000096 ], [ -119.572415908999929, 49.14187598300007 ], [ -119.573429012999952, 49.140783601000074 ], [ -119.574446788999936, 49.13925830200003 ], [ -119.574937688999967, 49.138121809000083 ], [ -119.575268894999979, 49.137124807000106 ], [ -119.575371993999937, 49.13671182500007 ], [ -119.575423427999951, 49.136714903000062 ], [ -119.575488363999938, 49.136245671000026 ], [ -119.576213805999942, 49.133339493000086 ], [ -119.576665997999925, 49.133366551000059 ], [ -119.576706443999939, 49.133368971000074 ], [ -119.576741280999926, 49.133117176000063 ], [ -119.57694971899997, 49.131610524000102 ], [ -119.57719171399998, 49.131625004000099 ], [ -119.578183278999973, 49.131684327000123 ], [ -119.57826629099992, 49.131084154000057 ], [ -119.579443455000032, 49.131154569000067 ], [ -119.579642688, 49.129713786000131 ], [ -119.579102650999957, 49.129681485000027 ], [ -119.579106144999955, 49.129656215000111 ], [ -119.577604460999936, 49.129566378000028 ], [ -119.576983592999966, 49.129529229000056 ], [ -119.576824898999973, 49.128804591000112 ], [ -119.576599688999949, 49.128431408000061 ], [ -119.576325904999962, 49.127897399000076 ], [ -119.575789607000019, 49.127351892000043 ], [ -119.57452778899993, 49.126517314000139 ], [ -119.573711097999976, 49.126129895000091 ], [ -119.572959783999977, 49.12565140300007 ], [ -119.572586937, 49.125328759000098 ], [ -119.573899516999944, 49.125407354000089 ], [ -119.57385599399997, 49.125721851000037 ], [ -119.574366729999952, 49.125752429000165 ], [ -119.574386044999969, 49.125612848000088 ], [ -119.574546198999926, 49.125622436000072 ], [ -119.574844460999941, 49.12564029100011 ], [ -119.574882737999985, 49.125363659000129 ], [ -119.575475949999941, 49.125399169000097 ], [ -119.57555263699993, 49.124844872000025 ], [ -119.576157375999927, 49.124881069000097 ], [ -119.576196923999973, 49.124595187000111 ], [ -119.577382874999984, 49.124666161000071 ], [ -119.577424480999923, 49.124365338000075 ], [ -119.575668935999929, 49.124260271000047 ], [ -119.57560050299999, 49.124754909000067 ], [ -119.573365230999968, 49.124621089000108 ], [ -119.572234613999967, 49.124553384000073 ], [ -119.572176454999948, 49.124973540000028 ], [ -119.572128685999985, 49.124932202000139 ], [ -119.571979409999969, 49.124684282000011 ], [ -119.571094522999971, 49.12376860600007 ], [ -119.57069340299995, 49.122895493000065 ], [ -119.570403240999923, 49.121374467000052 ], [ -119.570570327999945, 49.121384477000099 ], [ -119.570645356999961, 49.120842548000034 ], [ -119.57116777899995, 49.120873844000087 ], [ -119.571244053, 49.120322853000083 ], [ -119.570190599999947, 49.120259741000019 ], [ -119.569941398999958, 49.118953295000026 ], [ -119.569631893999912, 49.118016200000064 ], [ -119.56935952399995, 49.117527704000118 ], [ -119.56802165299996, 49.115934448000111 ], [ -119.568894195999945, 49.115986746000011 ], [ -119.568899589999958, 49.115947792000028 ], [ -119.569300969999944, 49.115971847000083 ], [ -119.573328561999958, 49.116213136000113 ], [ -119.573558995999946, 49.114547733000101 ], [ -119.572954903999943, 49.114511552000067 ], [ -119.573082742999958, 49.113587665000061 ], [ -119.572674987999932, 49.11356324000014 ], [ -119.572453360999944, 49.115164809000092 ], [ -119.567415391999958, 49.114862917000124 ], [ -119.567002874999929, 49.114838187000018 ], [ -119.567030779999953, 49.114636712000049 ], [ -119.567137867999989, 49.113863506000015 ], [ -119.567099868999946, 49.113861228000061 ], [ -119.565839259999962, 49.113785645000071 ], [ -119.565547329999973, 49.113768139000051 ], [ -119.565472400999909, 49.113703158000177 ], [ -119.565500118000017, 49.113503077000146 ], [ -119.56596082099999, 49.110177208000096 ], [ -119.568332927999961, 49.110319430000047 ], [ -119.568500247999978, 49.109110955000041 ], [ -119.565488300999945, 49.108930360000073 ], [ -119.565675594999945, 49.107578177000036 ], [ -119.56410424399995, 49.107483926000072 ], [ -119.564345234999934, 49.105744381000086 ], [ -119.563529036999952, 49.105695415000106 ], [ -119.563552342999941, 49.105527203000115 ], [ -119.563097334999938, 49.105499903000045 ], [ -119.563174199999949, 49.104945146000063 ], [ -119.563246979999946, 49.10441985300006 ], [ -119.561705760999956, 49.104327368000064 ], [ -119.56190497599998, 49.102889819000112 ], [ -119.561835886999987, 49.102885673000095 ], [ -119.561775283999964, 49.103322992000123 ], [ -119.558159428999943, 49.103105921000179 ], [ -119.557045899999963, 49.102276747000118 ], [ -119.556089361, 49.101197221000128 ], [ -119.555824671999986, 49.100544634000094 ], [ -119.554281313999937, 49.095666767000047 ], [ -119.556720702999883, 49.095813338000028 ], [ -119.55697883499991, 49.093951702000062 ], [ -119.555063296999961, 49.093836610000025 ], [ -119.555323548999965, 49.091960093000104 ], [ -119.555424264999942, 49.092004510000052 ], [ -119.55566199899999, 49.092109301000129 ], [ -119.556118772999966, 49.092248718000121 ], [ -119.557040639999911, 49.09253007900007 ], [ -119.557179455999943, 49.092572455000031 ], [ -119.55725889699994, 49.092596687000011 ], [ -119.557548538999967, 49.092707048000079 ], [ -119.55800240699989, 49.09288 ], [ -119.558382216999959, 49.093047342000013 ], [ -119.558520119999955, 49.093108107000091 ], [ -119.558874102999965, 49.093298389000054 ], [ -119.559281918999929, 49.09358600100007 ], [ -119.559835946999954, 49.09411579800009 ], [ -119.560335214999895, 49.094593247000027 ], [ -119.56163837599992, 49.095839316000095 ], [ -119.563641627999928, 49.097754607000148 ], [ -119.563673283999961, 49.097796669000076 ], [ -119.563971101999982, 49.098191989000064 ], [ -119.56438713199995, 49.099151089000024 ], [ -119.564621690999928, 49.099691794000059 ], [ -119.564751804999972, 49.099996680000103 ], [ -119.564945424999976, 49.100450288 ], [ -119.566059084999949, 49.103059404000113 ], [ -119.566227907999973, 49.103347909000092 ], [ -119.566473583999979, 49.103676319000087 ], [ -119.56680159699998, 49.104016004000115 ], [ -119.567001894999933, 49.104225416000055 ], [ -119.56716389199994, 49.104394796000101 ], [ -119.569299870999885, 49.106594866000066 ], [ -119.569738026999957, 49.107046136000072 ], [ -119.569979174999929, 49.10729449600003 ], [ -119.570989204999933, 49.108334755000037 ], [ -119.571742211999933, 49.109110190000081 ], [ -119.572147007999973, 49.109480689000051 ], [ -119.574076600999931, 49.110825613000067 ], [ -119.575822387999921, 49.112059103000064 ], [ -119.576298993999956, 49.112517012000104 ], [ -119.576604998999983, 49.11303609800008 ], [ -119.576913530999917, 49.113895298000095 ], [ -119.577118727999931, 49.114466853000138 ], [ -119.577568065999941, 49.115718078000022 ], [ -119.577987169999986, 49.116885165000078 ], [ -119.57814949299997, 49.117337208000016 ], [ -119.578916673, 49.119468014000084 ], [ -119.579386507999956, 49.120772789000036 ], [ -119.579669213, 49.121550794000015 ], [ -119.579685903999973, 49.121595394000067 ], [ -119.579908012999979, 49.122188806000111 ], [ -119.580169448999939, 49.122653366000101 ], [ -119.580400645999958, 49.123064083000024 ], [ -119.580478733999911, 49.123202793000111 ], [ -119.582000919999956, 49.125906998000076 ], [ -119.582421994999933, 49.126697789000083 ], [ -119.582517891999913, 49.127216916000108 ], [ -119.582541112999976, 49.12851088300004 ], [ -119.582607816999939, 49.13280110700002 ], [ -119.582538527999972, 49.133208112000098 ], [ -119.58253501899999, 49.133228805000108 ], [ -119.582521878999941, 49.133261683000093 ], [ -119.582494345999976, 49.133330488000063 ], [ -119.582131582999963, 49.134237794000065 ], [ -119.581398514999961, 49.135996662000132 ], [ -119.580834807999977, 49.137349108000109 ], [ -119.580514524999927, 49.138117421000103 ], [ -119.580500606999962, 49.138150792000069 ], [ -119.580371007999972, 49.138769389000124 ], [ -119.580370688999949, 49.138792084000031 ], [ -119.580351799, 49.140200910000075 ], [ -119.580345435999959, 49.140521069000037 ], [ -119.58032842599998, 49.141375095000058 ], [ -119.58030140299995, 49.142732403000082 ], [ -119.580294994000013, 49.143077104000056 ], [ -119.58027290299998, 49.144265539000074 ], [ -119.580243099999933, 49.145868720000067 ], [ -119.580239085999935, 49.14608470200006 ], [ -119.576530846999972, 49.146055190000062 ], [ -119.576142505999897, 49.146052078000089 ], [ -119.575856286, 49.146034087000025 ], [ -119.575704614999964, 49.146024572000016 ], [ -119.575277110999949, 49.145997691000041 ], [ -119.57513845599999, 49.145970818000123 ], [ -119.574582214999964, 49.145862997000087 ], [ -119.574361292999981, 49.145790105000088 ], [ -119.574263230999975, 49.145756422000062 ], [ -119.574048879999907, 49.145682798000038 ], [ -119.573530316999964, 49.145416800000127 ], [ -119.573119709, 49.145105704000102 ], [ -119.572755412000021, 49.14467888100009 ], [ -119.572690140999967, 49.144580721000125 ], [ -119.572442498999919, 49.14420830400006 ], [ -119.571947101999939, 49.143685108000078 ], [ -119.571431594999979, 49.14326830800006 ], [ -119.571203882999981, 49.143125189000031 ], [ -119.567634375999887, 49.145635015000074 ], [ -119.564534067999958, 49.147801895000057 ], [ -119.564584267999948, 49.147439859000016 ], [ -119.56735983899992, 49.145485031000113 ], [ -119.568356815999962, 49.144782807000119 ] ], [ [ -119.57481703599997, 49.1200493280001 ], [ -119.57493022899996, 49.119231160000076 ], [ -119.574755224999961, 49.119220682000083 ], [ -119.574642030999925, 49.120038851000054 ], [ -119.57481703599997, 49.1200493280001 ] ], [ [ -119.560580187999989, 49.098195248000088 ], [ -119.560609438999933, 49.097984175000065 ], [ -119.559819202, 49.097936731000104 ], [ -119.559834345999917, 49.097827475 ], [ -119.559287828999942, 49.097794661000087 ], [ -119.559243424999963, 49.098114988000127 ], [ -119.560580187999989, 49.098195248000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899583", "BldgCostT": "4758333", "sL_LossRatio": "0.999990822534989", "sL_AssetLoss": "864.07303", "sL_BldgLoss": "864.0651", "sL_StrLoss": "864", "sL_NStrLoss": "0.0651", "sL_ContLoss": "0.00793", "geom_point": "0101000020E61000004A15DE480DE35DC0F9983887A58D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.546016968999965, 49.111261616000029 ], [ -119.546427015999953, 49.10831029100008 ], [ -119.545348438999952, 49.10824540500009 ], [ -119.545415823999974, 49.107760441 ], [ -119.542299774999904, 49.107572923000092 ], [ -119.542798221999959, 49.103987056000108 ], [ -119.543891615999939, 49.104052865 ], [ -119.543926383999988, 49.103802682000108 ], [ -119.545217292999965, 49.103880364000119 ], [ -119.545331058999949, 49.103061536000084 ], [ -119.545488317999983, 49.101929611000052 ], [ -119.550937142999885, 49.102257330000057 ], [ -119.550564286999958, 49.104943252000105 ], [ -119.551295804999938, 49.10498722700008 ], [ -119.550886094999953, 49.10793858600001 ], [ -119.551964673, 49.108003416000017 ], [ -119.551466888999954, 49.11158930400012 ], [ -119.549763738999943, 49.111486929000087 ], [ -119.546016968999965, 49.111261616000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999999940517687", "sL_AssetLoss": "425.00028628", "sL_BldgLoss": "425.000261", "sL_StrLoss": "425", "sL_NStrLoss": "0.000261", "sL_ContLoss": "0.00002528", "geom_point": "0101000020E610000082F1A17EB6E35DC0F73DC9A16E8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55769862799994, 49.106835073000092 ], [ -119.555237901999959, 49.104690488000138 ], [ -119.555460637999957, 49.103084845000133 ], [ -119.55836543, 49.103259311000066 ], [ -119.558623159999954, 49.10345121900005 ], [ -119.560721337999951, 49.104641750000063 ], [ -119.56073746099996, 49.10465451500005 ], [ -119.560501445999989, 49.106357221000053 ], [ -119.560276231999921, 49.106540703000057 ], [ -119.560009063999942, 49.106651606000057 ], [ -119.559587020999942, 49.106674991000013 ], [ -119.559407365999959, 49.1066464640001 ], [ -119.558801869000021, 49.10690131600014 ], [ -119.55769862799994, 49.106835073000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10624334", "BldgCostT": "7063334", "sL_LossRatio": "0.999986829240952", "sL_AssetLoss": "1728.0097462", "sL_BldgLoss": "1727.986987", "sL_StrLoss": "1727.900107", "sL_NStrLoss": "0.08688", "sL_ContLoss": "0.0227592", "geom_point": "0101000020E61000007334BBAC11E35DC0FECC49BD618B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55076429899999, 49.091392915000029 ], [ -119.55087462399996, 49.090597925000033 ], [ -119.550272038999964, 49.090561686000079 ], [ -119.550425146999885, 49.089458470000132 ], [ -119.549695290999921, 49.089414573000035 ], [ -119.54988128, 49.088074521000074 ], [ -119.547414406999934, 49.087926113000059 ], [ -119.547573874999941, 49.086777521000059 ], [ -119.545867885999883, 49.086674855000112 ], [ -119.543860570999954, 49.086554018000058 ], [ -119.544273490999956, 49.083581327000097 ], [ -119.542487619999989, 49.08347378900006 ], [ -119.542626223999946, 49.082476137000107 ], [ -119.539953203999971, 49.082315121000079 ], [ -119.540276481, 49.079988999000051 ], [ -119.541506732, 49.080821107000091 ], [ -119.542302678999945, 49.081340221000119 ], [ -119.543732024999883, 49.08227235400004 ], [ -119.544199310999957, 49.082577107000091 ], [ -119.546354842999946, 49.083982693000074 ], [ -119.546397350999925, 49.084406022000039 ], [ -119.547111754999932, 49.084878480000107 ], [ -119.547987717999916, 49.085752090000042 ], [ -119.551062298999923, 49.088925203000102 ], [ -119.551985717, 49.089635125000022 ], [ -119.552528764999948, 49.09036224400004 ], [ -119.552763920999908, 49.090996675000028 ], [ -119.552991024999983, 49.09158790700014 ], [ -119.553103417999949, 49.091943231000052 ], [ -119.55266226599997, 49.095122927000048 ], [ -119.547214264, 49.094795291000047 ], [ -119.54771219499996, 49.091209330000027 ], [ -119.55076429899999, 49.091392915000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999998601058377", "sL_AssetLoss": "386.0061", "sL_BldgLoss": "386.00556", "sL_StrLoss": "386", "sL_NStrLoss": "0.00556", "sL_ContLoss": "0.00054", "geom_point": "0101000020E61000005E0EDCFD81E35DC0FE3163C0C88C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.556326256999952, 49.102995822000054 ], [ -119.556356285000021, 49.102779333000029 ], [ -119.554143003999926, 49.102646363000169 ], [ -119.554400221999984, 49.100792359000124 ], [ -119.553386599999939, 49.100731447000058 ], [ -119.553593355999922, 49.099241286000108 ], [ -119.553111786999963, 49.099212343000055 ], [ -119.553609312999981, 49.095626379000066 ], [ -119.554281313999937, 49.095666767000047 ], [ -119.555824671999986, 49.100544634000094 ], [ -119.556089361, 49.101197221000128 ], [ -119.557045899999963, 49.102276747000118 ], [ -119.558159428999943, 49.103105921000179 ], [ -119.556326256999952, 49.102995822000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "0.999991782991991", "sL_AssetLoss": "561.03146", "sL_BldgLoss": "561.02685", "sL_StrLoss": "561", "sL_NStrLoss": "0.02685", "sL_ContLoss": "0.00461", "geom_point": "0101000020E6100000F99F5F08F7E15DC06AB61B12B18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.530906154999968, 49.093847444000069 ], [ -119.530892440999978, 49.093577844000109 ], [ -119.530481913999949, 49.09358684900009 ], [ -119.530452743999902, 49.093013312000053 ], [ -119.527692303999942, 49.092846756000043 ], [ -119.528172796999954, 49.089396737000108 ], [ -119.528191717999931, 49.089260874000075 ], [ -119.533638938999943, 49.0895894760001 ], [ -119.533492041999949, 49.090645169000027 ], [ -119.533139941999934, 49.093175381000059 ], [ -119.532101727999972, 49.093112773000037 ], [ -119.532137741999946, 49.093820418000057 ], [ -119.531456181999914, 49.093835376000044 ], [ -119.530906154999968, 49.093847444000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59004998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91563750", "BldgCostT": "61785000", "sL_LossRatio": "0.988733274047274", "sL_AssetLoss": "10814.248923", "sL_BldgLoss": "10692.407744", "sL_StrLoss": "10648.009144", "sL_NStrLoss": "44.3986", "sL_ContLoss": "121.841179", "geom_point": "0101000020E6100000326F40112CE05DC08739208D33874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52207290299998, 49.078058604000027 ], [ -119.521790691999925, 49.077866313000129 ], [ -119.5212476899999, 49.077839926000088 ], [ -119.521549963999959, 49.075671022000073 ], [ -119.521909212999958, 49.075623190000087 ], [ -119.52239129499999, 49.075936488000103 ], [ -119.5231900199999, 49.076036204000111 ], [ -119.523754717999921, 49.075835394000123 ], [ -119.524526584999933, 49.075368197000032 ], [ -119.524752621999966, 49.075526302000064 ], [ -119.52492118899994, 49.075863913000084 ], [ -119.52513810399995, 49.075841104000112 ], [ -119.525152302, 49.075570501000115 ], [ -119.52465409199999, 49.075221500000097 ], [ -119.524644407999943, 49.074997884000027 ], [ -119.525276213000012, 49.074794290000085 ], [ -119.525848089, 49.074431089 ], [ -119.526848210999958, 49.073365799000115 ], [ -119.527000975999982, 49.072894395000048 ], [ -119.525914383, 49.072262003000048 ], [ -119.525022309999969, 49.070842091000067 ], [ -119.524649804999953, 49.070517401000082 ], [ -119.524000004999948, 49.070117183000072 ], [ -119.523907697999917, 49.069930604000078 ], [ -119.524116295999988, 49.068899510000087 ], [ -119.523880514999959, 49.068581893000086 ], [ -119.523335081999974, 49.068349705000038 ], [ -119.522851099999912, 49.068009400000065 ], [ -119.52236709899995, 49.067893988000044 ], [ -119.52132039599995, 49.067791388000124 ], [ -119.520357490999942, 49.067435406000115 ], [ -119.519140272999934, 49.067092165000098 ], [ -119.518816987999969, 49.067000999000051 ], [ -119.518396088999978, 49.06681161000008 ], [ -119.518096511999943, 49.066035396000068 ], [ -119.517752200999951, 49.065727809000116 ], [ -119.51649418199996, 49.065216496000069 ], [ -119.515355281, 49.064917397000052 ], [ -119.5145740899999, 49.064609794000035 ], [ -119.512274406999921, 49.064092806000147 ], [ -119.51208752699992, 49.064064131000116 ], [ -119.510993075999949, 49.063896194000044 ], [ -119.509589898999963, 49.063800794000088 ], [ -119.507892890999955, 49.063514493000127 ], [ -119.507021713999976, 49.0636413 ], [ -119.50678672, 49.063601406000068 ], [ -119.507406114999966, 49.062282608000068 ], [ -119.50721460299998, 49.062007684000093 ], [ -119.506663508999949, 49.061687298000031 ], [ -119.506258391999964, 49.061255814000084 ], [ -119.505420206999986, 49.060895392000077 ], [ -119.503722407999959, 49.060365588000053 ], [ -119.502094898999971, 49.05929460500009 ], [ -119.499591994999932, 49.058538387000048 ], [ -119.497085007999928, 49.057396108000027 ], [ -119.496763194, 49.057323345000036 ], [ -119.49479889399997, 49.056879186000039 ], [ -119.494802500999981, 49.056645604000039 ], [ -119.49536128199999, 49.055796795000063 ], [ -119.495815013999973, 49.054734296000099 ], [ -119.495237496999934, 49.053613394000116 ], [ -119.494065902999978, 49.052882807000024 ], [ -119.492659881999927, 49.052409998000087 ], [ -119.49188832399993, 49.052021203000031 ], [ -119.49031089199994, 49.051407313000055 ], [ -119.489189894999967, 49.050927412000057 ], [ -119.487628423999951, 49.050503917000093 ], [ -119.48763417899994, 49.05046280500013 ], [ -119.48713508499999, 49.050432466000075 ], [ -119.486586348999964, 49.050377682000068 ], [ -119.486683539999959, 49.049683630000068 ], [ -119.486367313999907, 49.049664405000073 ], [ -119.486371206999962, 49.049742423000048 ], [ -119.485912857999963, 49.049752303000048 ], [ -119.485296089999977, 49.049765595000117 ], [ -119.485136208999918, 49.049679575000042 ], [ -119.485131704999972, 49.049589275000066 ], [ -119.484947559999981, 49.049578077000049 ], [ -119.484821588999949, 49.049510301000048 ], [ -119.483371991999931, 49.047895199000081 ], [ -119.482089404999968, 49.047149 ], [ -119.480010700999969, 49.046357101000126 ], [ -119.478985890999951, 49.045813101000114 ], [ -119.477330410999954, 49.044435787000047 ], [ -119.476213197999968, 49.044289099000075 ], [ -119.4726248959999, 49.044518405000069 ], [ -119.470749387999916, 49.044495695000094 ], [ -119.469634085999985, 49.044375996000035 ], [ -119.469110456999942, 49.044209430000109 ], [ -119.469357496999962, 49.043774836000075 ], [ -119.469487187999945, 49.043581742000065 ], [ -119.469543902999959, 49.043525550000076 ], [ -119.469004922999972, 49.043368990000097 ], [ -119.469218692999974, 49.043171296000025 ], [ -119.470800234999913, 49.04177631200006 ], [ -119.470627628999935, 49.041541246000115 ], [ -119.470050889999925, 49.040898014000092 ], [ -119.470483324999947, 49.040704747000099 ], [ -119.47104304799997, 49.040470770000169 ], [ -119.471313504999941, 49.040719492000093 ], [ -119.471734906999927, 49.040962212000046 ], [ -119.471899795999889, 49.041030438000043 ], [ -119.472052611999956, 49.041093704000033 ], [ -119.473019011999952, 49.041347283000029 ], [ -119.473304164999931, 49.0414220810001 ], [ -119.473886931999971, 49.041574985000054 ], [ -119.474141026999945, 49.04164165800006 ], [ -119.474857779999965, 49.041829689000139 ], [ -119.475383600999962, 49.041982949000086 ], [ -119.475534669999902, 49.042026977000091 ], [ -119.475642103999959, 49.04205830300004 ], [ -119.476464902999965, 49.042373293000026 ], [ -119.477520186999982, 49.042880603000093 ], [ -119.477831080999977, 49.043001701000051 ], [ -119.478115406999905, 49.043077791000016 ], [ -119.478801392999955, 49.043185514000101 ], [ -119.478988718999943, 49.043239392 ], [ -119.479275495999957, 49.043415108000055 ], [ -119.479598905, 49.043603905000012 ], [ -119.479831795999928, 49.043684084000041 ], [ -119.480116501999944, 49.043728502000086 ], [ -119.480344313, 49.043744661000133 ], [ -119.480745493999947, 49.04377309400008 ], [ -119.482826699999933, 49.043832007000148 ], [ -119.483109896999935, 49.04388721599999 ], [ -119.483462184999937, 49.044036104000085 ], [ -119.483798213999989, 49.043527597000022 ], [ -119.485421081999931, 49.042098301000081 ], [ -119.487533910999957, 49.042555602000057 ], [ -119.488221396999919, 49.042704387000136 ], [ -119.489148399999976, 49.04304101200006 ], [ -119.48981082099999, 49.043327188000099 ], [ -119.490421004999973, 49.043652715000107 ], [ -119.493537803999985, 49.045371803000073 ], [ -119.494352140999951, 49.045820552000066 ], [ -119.495553082999933, 49.046482338000068 ], [ -119.495679317999929, 49.046551907000122 ], [ -119.496836326999983, 49.047189472000078 ], [ -119.497102104999897, 49.047335910000086 ], [ -119.497488295999943, 49.047586212000034 ], [ -119.497732482999965, 49.04783160900007 ], [ -119.498012894999988, 49.047691304000104 ], [ -119.49849110599996, 49.047538602000031 ], [ -119.500790415999958, 49.048758510000056 ], [ -119.501843127999933, 49.049642629000097 ], [ -119.504155286999961, 49.051410259000143 ], [ -119.505779605999962, 49.05228883900012 ], [ -119.506872313999978, 49.052782490000027 ], [ -119.507668018999979, 49.053157106000057 ], [ -119.508279111999954, 49.053763685000071 ], [ -119.50995290900002, 49.055073790000044 ], [ -119.512432507999947, 49.056776290000059 ], [ -119.512524102999976, 49.056926518000061 ], [ -119.512523112999972, 49.057326911000082 ], [ -119.512600888999913, 49.057438293000068 ], [ -119.512763576999973, 49.057619895000137 ], [ -119.512973505999966, 49.057708605000123 ], [ -119.513190408999961, 49.057728099000045 ], [ -119.51383368099998, 49.057691107000025 ], [ -119.514084898999954, 49.057739709000082 ], [ -119.514335408999926, 49.057832580000067 ], [ -119.51478030799997, 49.058146113000049 ], [ -119.516399896999985, 49.059591211000033 ], [ -119.51669719299997, 49.059988912000087 ], [ -119.51671935, 49.060009776000086 ], [ -119.516842706999952, 49.060126092000097 ], [ -119.516903721999896, 49.060163996000021 ], [ -119.517414881, 49.060481596000052 ], [ -119.517154495999961, 49.060744304000082 ], [ -119.517295216, 49.060795796000015 ], [ -119.517598487999976, 49.060906796000069 ], [ -119.517672653999952, 49.060947629000076 ], [ -119.518031918999895, 49.061145493 ], [ -119.518200410999924, 49.061279968000086 ], [ -119.518356715999943, 49.061404704000054 ], [ -119.520770825999989, 49.063719715000062 ], [ -119.52197908499997, 49.064878312000047 ], [ -119.52230661499999, 49.065237083000099 ], [ -119.522432763, 49.065414462000014 ], [ -119.522450691999964, 49.065439704000056 ], [ -119.523169641, 49.066450506000066 ], [ -119.52417502, 49.067863893000023 ], [ -119.524256137999927, 49.067977976000044 ], [ -119.524376108999945, 49.068146591000108 ], [ -119.524516780999974, 49.068357482000138 ], [ -119.524552115999953, 49.068410395000114 ], [ -119.524758184999897, 49.068882098000088 ], [ -119.525309190999934, 49.070040892000094 ], [ -119.525408337999963, 49.0701849800001 ], [ -119.525583214999955, 49.070438989000081 ], [ -119.52596949, 49.070898007000082 ], [ -119.526952647999934, 49.071810287000069 ], [ -119.527837991999959, 49.072631800000131 ], [ -119.528496782, 49.073204901000082 ], [ -119.529095994999949, 49.073584600000068 ], [ -119.529377791999977, 49.073718820000053 ], [ -119.529563297999985, 49.073807199000086 ], [ -119.530713970999969, 49.074261423000095 ], [ -119.531761202000013, 49.074674787000056 ], [ -119.533797593999935, 49.075490213000123 ], [ -119.53463840299996, 49.075880801000096 ], [ -119.535545480999929, 49.076416395000088 ], [ -119.53605451199995, 49.076783238000054 ], [ -119.536335545999975, 49.076985755000088 ], [ -119.536391524999885, 49.077026107000101 ], [ -119.536500064999927, 49.077110943000037 ], [ -119.539580282999935, 49.079518089000032 ], [ -119.539684736999959, 49.079588743000095 ], [ -119.535357333999983, 49.079327902000038 ], [ -119.535642209999949, 49.077279432000097 ], [ -119.53499466699995, 49.077293664000088 ], [ -119.534980937999961, 49.077024063000032 ], [ -119.534570549999955, 49.077033081000117 ], [ -119.53455682399999, 49.076763481000079 ], [ -119.534146435999958, 49.076772497000029 ], [ -119.534132711999987, 49.076502897000083 ], [ -119.53372232699995, 49.076511911000075 ], [ -119.533708604999944, 49.076242311000044 ], [ -119.533298222, 49.076251324000054 ], [ -119.53328450399998, 49.075981723000076 ], [ -119.532874120999935, 49.075990735000062 ], [ -119.532860405999955, 49.075721134000062 ], [ -119.532450024999918, 49.07573014500008 ], [ -119.53243631199993, 49.07546054300014 ], [ -119.531615557999913, 49.075478559000068 ], [ -119.531601846999948, 49.075208958000061 ], [ -119.531191471999961, 49.075217964000096 ], [ -119.531177764999924, 49.074948363000054 ], [ -119.530767391999973, 49.074957367000131 ], [ -119.530835917, 49.076305374000057 ], [ -119.530015146999972, 49.076323378000041 ], [ -119.530028847999958, 49.076592980000029 ], [ -119.529618460999984, 49.076601980000142 ], [ -119.529645858999928, 49.077141184000034 ], [ -119.527760761999986, 49.077182508000114 ], [ -119.527652403999937, 49.07796075300007 ], [ -119.526730263999951, 49.077905079000075 ], [ -119.526570115999988, 49.07905507500012 ], [ -119.521762264, 49.078764669000066 ], [ -119.521581302999934, 49.078626788000143 ], [ -119.521366419999978, 49.078424607000024 ], [ -119.521373381, 49.078316397000044 ], [ -119.521972308000016, 49.078230887000124 ], [ -119.52207290299998, 49.078058604000027 ] ], [ [ -119.514057788999949, 49.059875698000013 ], [ -119.514094639999911, 49.05961147500004 ], [ -119.514066607999965, 49.05960977900007 ], [ -119.514048665999951, 49.059738422000066 ], [ -119.513852765999971, 49.059726566000109 ], [ -119.513833855999977, 49.059862144000114 ], [ -119.514057788999949, 49.059875698000013 ] ], [ [ -119.508554812999975, 49.058353591000127 ], [ -119.508645885999897, 49.057701145000117 ], [ -119.50783610699996, 49.05765208800004 ], [ -119.507745023999973, 49.05830453400015 ], [ -119.508554812999975, 49.058353591000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999995372390009", "sL_AssetLoss": "292.807735", "sL_BldgLoss": "292.80638", "sL_StrLoss": "292.8", "sL_NStrLoss": "0.00638", "sL_ContLoss": "0.001355", "geom_point": "0101000020E610000061989F5D36E55DC0C8073D9BD58A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.578967435999985, 49.082687624000044 ], [ -119.584414244999948, 49.08301365600002 ], [ -119.583919223999914, 49.08659983200004 ], [ -119.581232243999921, 49.086439032000094 ], [ -119.578472, 49.086273777000073 ], [ -119.578565544999947, 49.085596703000071 ], [ -119.578967435999985, 49.082687624000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.1", "sL_BldgLoss": "61.1", "sL_StrLoss": "61.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C24AAA5B22E45DC079B0C56E1F8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.564521599, 49.09578345500011 ], [ -119.562760934999943, 49.093815809000048 ], [ -119.565740497999954, 49.09399460000003 ], [ -119.565646886999957, 49.094670660000055 ], [ -119.565764239999936, 49.094677701000059 ], [ -119.565608699999984, 49.095800982000064 ], [ -119.564521599, 49.09578345500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6761667", "BldgCostT": "4166667", "sL_LossRatio": "0.999999789971966", "sL_AssetLoss": "422.8007018", "sL_BldgLoss": "422.800613", "sL_StrLoss": "422.8", "sL_NStrLoss": "0.000613", "sL_ContLoss": "0.0000888", "geom_point": "0101000020E6100000C31E6671F7E35DC0F4CD2EC6DD894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.560015752999931, 49.074710263000064 ], [ -119.56546149899998, 49.075037260000109 ], [ -119.564965104999914, 49.078623394000083 ], [ -119.56406195799994, 49.07856918200018 ], [ -119.563939905999959, 49.079450714000089 ], [ -119.56202112599999, 49.079335515000047 ], [ -119.558493655999953, 49.079123642000084 ], [ -119.558707234999957, 49.077582319000051 ], [ -119.558990552999987, 49.075537542000042 ], [ -119.559893636999973, 49.075591796000047 ], [ -119.560015752999931, 49.074710263000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63.2", "sL_BldgLoss": "63.2", "sL_StrLoss": "63.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8FFACF9F1DF5DC0E08E47DB3E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.502043205999925, 49.042925859000064 ], [ -119.502016139999981, 49.042386642000089 ], [ -119.50119591, 49.042404432000055 ], [ -119.501182380999978, 49.042134823000048 ], [ -119.50077226800002, 49.04214371700008 ], [ -119.500758741999945, 49.041874107000055 ], [ -119.500348630999966, 49.041882999000038 ], [ -119.50033510599999, 49.041613389000119 ], [ -119.499514887999965, 49.041631168000023 ], [ -119.49948785, 49.041091950000109 ], [ -119.497437321999911, 49.041136370000046 ], [ -119.497383291999967, 49.040057930000081 ], [ -119.496154010999987, 49.040084542000024 ], [ -119.497063512999901, 49.039308518000084 ], [ -119.498732874999973, 49.040294429000021 ], [ -119.500690057, 49.041450200000106 ], [ -119.502421688999931, 49.042472690000089 ], [ -119.50315241499996, 49.04290179000008 ], [ -119.502043205999925, 49.042925859000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999992987358382", "sL_AssetLoss": "308.01517", "sL_BldgLoss": "308.01301", "sL_StrLoss": "308", "sL_NStrLoss": "0.01301", "sL_ContLoss": "0.00216", "geom_point": "0101000020E6100000D83573ABD4E45DC04F649C75FC8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.573134754999955, 49.083880983000029 ], [ -119.578451627999939, 49.084199524000049 ], [ -119.578271428999955, 49.085503794000026 ], [ -119.577956137999962, 49.087785666000116 ], [ -119.575755166999954, 49.087653837000097 ], [ -119.57250881500002, 49.087459308000071 ], [ -119.572673855999966, 49.086265892 ], [ -119.573004721999922, 49.08387319000007 ], [ -119.573134754999955, 49.083880983000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "121", "sL_BldgLoss": "121", "sL_StrLoss": "121", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066C18203B3DF5DC04C082D569A824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.494902520999958, 49.019014537000068 ], [ -119.495879584999912, 49.018221247000035 ], [ -119.495879940999913, 49.018228345000111 ], [ -119.496289856999923, 49.018219472000048 ], [ -119.496316838999974, 49.018758695000074 ], [ -119.496726763999945, 49.018749821000036 ], [ -119.496807727999979, 49.020367487000073 ], [ -119.496397791999968, 49.020376361000068 ], [ -119.496424777999906, 49.02091558500009 ], [ -119.496014838999912, 49.020924457000056 ], [ -119.496028329999916, 49.021194068000113 ], [ -119.49561838699999, 49.021202940000123 ], [ -119.49564536499993, 49.021742163000063 ], [ -119.495235418, 49.021751033000029 ], [ -119.495248904999983, 49.02202064500004 ], [ -119.494838954999963, 49.022029514000096 ], [ -119.494879410999957, 49.022838348000064 ], [ -119.494559070999941, 49.022845278 ], [ -119.493685773999985, 49.020855395000083 ], [ -119.494902520999958, 49.019014537000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.7", "sL_BldgLoss": "61.7", "sL_StrLoss": "61.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B4DC9E6E8E35DC0224A41D8A58B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.559717394999922, 49.090087345000057 ], [ -119.562063186999978, 49.090228192000033 ], [ -119.561726354999948, 49.092659510000018 ], [ -119.559735969999934, 49.090434761000019 ], [ -119.559717394999922, 49.090087345000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "266.8", "sL_BldgLoss": "266.8", "sL_StrLoss": "266.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BA612B7ADE05DC0EDCE7FB424864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.508561028999949, 49.046063288000077 ], [ -119.513573884999957, 49.0463669210001 ], [ -119.513338115999929, 49.048057690000107 ], [ -119.513073805999937, 49.049952974000036 ], [ -119.507631358999959, 49.049623310000094 ], [ -119.50813185199992, 49.046037282000093 ], [ -119.508561028999949, 49.046063288000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24517084", "BldgCostT": "15963334", "sL_LossRatio": "0.98524232469044", "sL_AssetLoss": "2741.5510066", "sL_BldgLoss": "2701.092087", "sL_StrLoss": "2686.202567", "sL_NStrLoss": "14.88952", "sL_ContLoss": "40.4589196", "geom_point": "0101000020E610000036E10B514DDE5DC0862AF35E4E814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.47364618499995, 49.011005394000037 ], [ -119.473523098999934, 49.010562987000164 ], [ -119.470353991999943, 49.010939305000143 ], [ -119.468029804, 49.011215305000064 ], [ -119.4674542, 49.011193707000068 ], [ -119.465261708999947, 49.010716309000031 ], [ -119.46551854799999, 49.010231851000093 ], [ -119.46594481699999, 49.009427790000039 ], [ -119.466061805, 49.009207111000144 ], [ -119.46607662599996, 49.009179203000038 ], [ -119.46615780399999, 49.008887576000106 ], [ -119.466250692999893, 49.008554095000072 ], [ -119.466257836999972, 49.008422709000087 ], [ -119.466262247999936, 49.008341397 ], [ -119.466276599999972, 49.008076513000056 ], [ -119.466244802999938, 49.006564486000038 ], [ -119.466228890999943, 49.006384233000041 ], [ -119.466180197999975, 49.005832696000056 ], [ -119.466117618999974, 49.005662876000017 ], [ -119.466079148999924, 49.005558451000056 ], [ -119.466043197999937, 49.005460902000046 ], [ -119.465868313999977, 49.005173488 ], [ -119.465185508999966, 49.004246590000093 ], [ -119.466090803999961, 49.004247999000071 ], [ -119.467142517999889, 49.004249642000019 ], [ -119.468455733999988, 49.004251684000053 ], [ -119.47172363199999, 49.004256669000036 ], [ -119.471750415999963, 49.004256686000126 ], [ -119.471734566999913, 49.004198996000113 ], [ -119.471594313999944, 49.003688304000022 ], [ -119.471302301999955, 49.003248298000074 ], [ -119.470150001999968, 49.001719509000054 ], [ -119.46902710599997, 49.00017710400008 ], [ -119.468981296, 49.000113286000108 ], [ -119.47127743499999, 49.000102666000068 ], [ -119.473372142999906, 49.000114457000109 ], [ -119.473866240999911, 49.000113881000054 ], [ -119.474145003999965, 49.000113556000031 ], [ -119.474124234999962, 49.000261754000093 ], [ -119.474275721999959, 49.000270991000036 ], [ -119.474234525999947, 49.000564945000107 ], [ -119.474495933999975, 49.000580885000041 ], [ -119.47446083299999, 49.00083136100006 ], [ -119.474672743999975, 49.000844283000077 ], [ -119.474647144999935, 49.001026961000051 ], [ -119.475265537, 49.001064666000026 ], [ -119.475154167000014, 49.001859470000049 ], [ -119.475395184999968, 49.001874165000118 ], [ -119.475357975999898, 49.002139710000044 ], [ -119.475673692999933, 49.002158958000088 ], [ -119.475569275999945, 49.002904168000029 ], [ -119.476874403999915, 49.002983726000089 ], [ -119.476426764999971, 49.00617879000005 ], [ -119.476514619999975, 49.006184145000084 ], [ -119.476470888, 49.006496263000038 ], [ -119.475373407999925, 49.006700958000152 ], [ -119.475373644999976, 49.00670227300008 ], [ -119.475210193999899, 49.007851939000012 ], [ -119.47558997699997, 49.008636450000068 ], [ -119.476170724999946, 49.009649498000087 ], [ -119.476805986999949, 49.010597591000078 ], [ -119.476907769999954, 49.010832438000115 ], [ -119.477303481999982, 49.01272683800007 ], [ -119.47746352299994, 49.013368713000119 ], [ -119.477521481999943, 49.014399222000094 ], [ -119.477646662999987, 49.01484050000002 ], [ -119.477806747999949, 49.015112659000039 ], [ -119.478026498999952, 49.01525529900011 ], [ -119.478466678999936, 49.015471954000056 ], [ -119.48083160199999, 49.017018393000058 ], [ -119.480804787999929, 49.017229203000099 ], [ -119.48072944899998, 49.01741448100006 ], [ -119.480491842999939, 49.017998717000054 ], [ -119.480469539999945, 49.018053634000069 ], [ -119.480413690999939, 49.018190884000056 ], [ -119.480278312999971, 49.018735988000046 ], [ -119.480245155999953, 49.019509306000046 ], [ -119.480238399999962, 49.019667582000046 ], [ -119.480237756999969, 49.019891029000135 ], [ -119.480236589999933, 49.020296681000048 ], [ -119.48023433099992, 49.02108372 ], [ -119.48023206699996, 49.02188254400005 ], [ -119.479212190999974, 49.022000200000022 ], [ -119.478777903999969, 49.021987302000092 ], [ -119.475090910999938, 49.022042097000089 ], [ -119.475336473999931, 49.020661898000128 ], [ -119.475354627999963, 49.020258898000058 ], [ -119.475316279999973, 49.020053095000037 ], [ -119.475199589999988, 49.019780186000098 ], [ -119.475010003999927, 49.019481188000107 ], [ -119.47466697099999, 49.018940142000048 ], [ -119.474338697999954, 49.018422353000091 ], [ -119.474228204999974, 49.018248091000089 ], [ -119.474070995999952, 49.017922009000074 ], [ -119.474032003999952, 49.017544397000158 ], [ -119.474095806999955, 49.017118794000069 ], [ -119.474372896999938, 49.015582291000079 ], [ -119.47454267599997, 49.014586293000022 ], [ -119.474528975999959, 49.014146092000047 ], [ -119.474417822999953, 49.013750641000023 ], [ -119.47364618499995, 49.011005394000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9811750", "BldgCostT": "6295000", "sL_LossRatio": "1", "sL_AssetLoss": "686", "sL_BldgLoss": "686", "sL_StrLoss": "686", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D635CD41BE45DC0214BD52C06894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.563847516999942, 49.071126481000107 ], [ -119.563812631999937, 49.070448981 ], [ -119.5629919799999, 49.070467219000122 ], [ -119.562978103999953, 49.070197624000066 ], [ -119.562567777999931, 49.070206740000117 ], [ -119.562553903999955, 49.069937146000022 ], [ -119.562143582999909, 49.069946260000066 ], [ -119.56212971099994, 49.069676665000088 ], [ -119.560898748999975, 49.069704001000041 ], [ -119.560884884999908, 49.069434406000049 ], [ -119.559653926999928, 49.069461729000118 ], [ -119.559612352999935, 49.068652941000124 ], [ -119.560022664999948, 49.068643836000078 ], [ -119.56000880499991, 49.068374241000136 ], [ -119.561239735999933, 49.068346914000053 ], [ -119.561253601999908, 49.06861651 ], [ -119.562074225999964, 49.068598285000057 ], [ -119.562018741999935, 49.067519904000015 ], [ -119.560787834999971, 49.067547238000074 ], [ -119.560746245999923, 49.066738452000038 ], [ -119.56484919899998, 49.06664729000007 ], [ -119.564863084999928, 49.066916885000118 ], [ -119.565273381999958, 49.066907761 ], [ -119.565287268999981, 49.067177355000091 ], [ -119.566107865999967, 49.067159102000126 ], [ -119.566121757999895, 49.067428695000089 ], [ -119.56694235899991, 49.067410437000021 ], [ -119.566956253999976, 49.067680030000105 ], [ -119.567776859999981, 49.067661766000072 ], [ -119.56779076, 49.067931360000074 ], [ -119.568611367999893, 49.06791308800009 ], [ -119.568625272999967, 49.06818268300006 ], [ -119.56903558, 49.068173545000036 ], [ -119.569063397999955, 49.068712732000051 ], [ -119.569884017000035, 49.068694451000056 ], [ -119.56992575699995, 49.069503232000073 ], [ -119.569515440999965, 49.069512373000158 ], [ -119.569585000999922, 49.070860341000071 ], [ -119.567943690000021, 49.070896893000032 ], [ -119.567901978999927, 49.070088112000093 ], [ -119.567491657999966, 49.070097245000106 ], [ -119.567505557999979, 49.070366839 ], [ -119.565864260999959, 49.070403361000025 ], [ -119.565878151999939, 49.07067295500007 ], [ -119.565467824999985, 49.07068208300003 ], [ -119.565495820999928, 49.071225435000052 ], [ -119.566048936999891, 49.071258634000039 ], [ -119.565552628999967, 49.074844791000118 ], [ -119.560106906000016, 49.074517798000102 ], [ -119.560603628999914, 49.070931665000096 ], [ -119.563847516999942, 49.071126481000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "237.8", "sL_BldgLoss": "237.8", "sL_StrLoss": "237.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D55BA0306AE05DC068305750E2844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.504011145999982, 49.036198556000031 ], [ -119.509452001999946, 49.036528411000091 ], [ -119.508951711999927, 49.040114499000047 ], [ -119.50351044199999, 49.039784621000081 ], [ -119.504011145999982, 49.036198556000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6217917", "BldgCostT": "3791667", "sL_LossRatio": "0.918332381496288", "sL_AssetLoss": "350.2", "sL_BldgLoss": "321.6", "sL_StrLoss": "311.2", "sL_NStrLoss": "10.4", "sL_ContLoss": "28.6", "geom_point": "0101000020E610000011B13D8AA5E15DC0597404D35D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.524666990999918, 49.059976523000046 ], [ -119.524653326999925, 49.05970692000011 ], [ -119.524243077999927, 49.059715898000093 ], [ -119.52421144499999, 49.059091674000094 ], [ -119.522785689999978, 49.059005506000062 ], [ -119.523285118999951, 49.055419460000032 ], [ -119.528728352999948, 49.055748326000121 ], [ -119.528229339999911, 49.059334398000026 ], [ -119.526683221999974, 49.059241013000054 ], [ -119.526704574999926, 49.059662002000046 ], [ -119.526294325999984, 49.059670990000058 ], [ -119.526307998999982, 49.059940593000121 ], [ -119.524666990999918, 49.059976523000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7450417", "BldgCostT": "4641667", "sL_LossRatio": "0.924263723931657", "sL_AssetLoss": "499.100325", "sL_BldgLoss": "461.300325", "sL_StrLoss": "447.600325", "sL_NStrLoss": "13.7", "sL_ContLoss": "37.8", "geom_point": "0101000020E610000068222A5C28E35DC0DADC3DE5BD884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.548409183999965, 49.066362771000065 ], [ -119.553853873, 49.066690359000063 ], [ -119.553356674, 49.070276486000068 ], [ -119.55028647599994, 49.070091797000089 ], [ -119.550267643, 49.070227557000109 ], [ -119.548813169999917, 49.07014003200004 ], [ -119.544822566999954, 49.069899788000086 ], [ -119.545207219999938, 49.067129125000136 ], [ -119.545320415999981, 49.066313700000102 ], [ -119.548390346999923, 49.066498530000068 ], [ -119.548409183999965, 49.066362771000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63146583", "BldgCostT": "39873333", "sL_LossRatio": "0.982039920033213", "sL_AssetLoss": "5517.792804", "sL_BldgLoss": "5418.692804", "sL_StrLoss": "5382.702804", "sL_NStrLoss": "35.99", "sL_ContLoss": "99.1", "geom_point": "0101000020E61000006154100B4EE05DC0B5D5517ACB864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.540276481, 49.079988999000051 ], [ -119.540326729999961, 49.079627425000098 ], [ -119.539684736999959, 49.079588743000095 ], [ -119.539580282999935, 49.079518089000032 ], [ -119.536500064999927, 49.077110943000037 ], [ -119.536391524999885, 49.077026107000101 ], [ -119.536335545999975, 49.076985755000088 ], [ -119.53605451199995, 49.076783238000054 ], [ -119.535545480999929, 49.076416395000088 ], [ -119.53463840299996, 49.075880801000096 ], [ -119.533797593999935, 49.075490213000123 ], [ -119.531761202000013, 49.074674787000056 ], [ -119.530713970999969, 49.074261423000095 ], [ -119.529563297999985, 49.073807199000086 ], [ -119.529377791999977, 49.073718820000053 ], [ -119.529095994999949, 49.073584600000068 ], [ -119.528496782, 49.073204901000082 ], [ -119.527837991999959, 49.072631800000131 ], [ -119.526952647999934, 49.071810287000069 ], [ -119.52596949, 49.070898007000082 ], [ -119.525583214999955, 49.070438989000081 ], [ -119.525408337999963, 49.0701849800001 ], [ -119.525309190999934, 49.070040892000094 ], [ -119.524758184999897, 49.068882098000088 ], [ -119.524552115999953, 49.068410395000114 ], [ -119.524516780999974, 49.068357482000138 ], [ -119.524376108999945, 49.068146591000108 ], [ -119.524256137999927, 49.067977976000044 ], [ -119.52417502, 49.067863893000023 ], [ -119.523169641, 49.066450506000066 ], [ -119.522450691999964, 49.065439704000056 ], [ -119.522432763, 49.065414462000014 ], [ -119.52230661499999, 49.065237083000099 ], [ -119.52197908499997, 49.064878312000047 ], [ -119.520770825999989, 49.063719715000062 ], [ -119.518356715999943, 49.061404704000054 ], [ -119.518200410999924, 49.061279968000086 ], [ -119.518031918999895, 49.061145493 ], [ -119.517672653999952, 49.060947629000076 ], [ -119.517598487999976, 49.060906796000069 ], [ -119.517295216, 49.060795796000015 ], [ -119.517154495999961, 49.060744304000082 ], [ -119.517414881, 49.060481596000052 ], [ -119.516903721999896, 49.060163996000021 ], [ -119.516842706999952, 49.060126092000097 ], [ -119.51671935, 49.060009776000086 ], [ -119.51669719299997, 49.059988912000087 ], [ -119.516399896999985, 49.059591211000033 ], [ -119.51478030799997, 49.058146113000049 ], [ -119.514335408999926, 49.057832580000067 ], [ -119.514084898999954, 49.057739709000082 ], [ -119.51383368099998, 49.057691107000025 ], [ -119.513190408999961, 49.057728099000045 ], [ -119.512973505999966, 49.057708605000123 ], [ -119.512763576999973, 49.057619895000137 ], [ -119.512600888999913, 49.057438293000068 ], [ -119.512523112999972, 49.057326911000082 ], [ -119.512524102999976, 49.056926518000061 ], [ -119.512432507999947, 49.056776290000059 ], [ -119.50995290900002, 49.055073790000044 ], [ -119.508279111999954, 49.053763685000071 ], [ -119.507668018999979, 49.053157106000057 ], [ -119.506872313999978, 49.052782490000027 ], [ -119.505779605999962, 49.05228883900012 ], [ -119.504155286999961, 49.051410259000143 ], [ -119.501843127999933, 49.049642629000097 ], [ -119.500790415999958, 49.048758510000056 ], [ -119.49849110599996, 49.047538602000031 ], [ -119.498012894999988, 49.047691304000104 ], [ -119.497732482999965, 49.04783160900007 ], [ -119.497488295999943, 49.047586212000034 ], [ -119.497102104999897, 49.047335910000086 ], [ -119.496836326999983, 49.047189472000078 ], [ -119.495679317999929, 49.046551907000122 ], [ -119.495553082999933, 49.046482338000068 ], [ -119.494352140999951, 49.045820552000066 ], [ -119.493537803999985, 49.045371803000073 ], [ -119.490421004999973, 49.043652715000107 ], [ -119.48981082099999, 49.043327188000099 ], [ -119.489148399999976, 49.04304101200006 ], [ -119.488221396999919, 49.042704387000136 ], [ -119.487533910999957, 49.042555602000057 ], [ -119.485421081999931, 49.042098301000081 ], [ -119.483798213999989, 49.043527597000022 ], [ -119.483462184999937, 49.044036104000085 ], [ -119.483109896999935, 49.04388721599999 ], [ -119.482826699999933, 49.043832007000148 ], [ -119.480745493999947, 49.04377309400008 ], [ -119.480344313, 49.043744661000133 ], [ -119.480116501999944, 49.043728502000086 ], [ -119.479831795999928, 49.043684084000041 ], [ -119.479598905, 49.043603905000012 ], [ -119.479275495999957, 49.043415108000055 ], [ -119.478988718999943, 49.043239392 ], [ -119.478801392999955, 49.043185514000101 ], [ -119.478115406999905, 49.043077791000016 ], [ -119.477831080999977, 49.043001701000051 ], [ -119.477520186999982, 49.042880603000093 ], [ -119.476464902999965, 49.042373293000026 ], [ -119.475642103999959, 49.04205830300004 ], [ -119.475534669999902, 49.042026977000091 ], [ -119.475383600999962, 49.041982949000086 ], [ -119.474857779999965, 49.041829689000139 ], [ -119.474141026999945, 49.04164165800006 ], [ -119.473886931999971, 49.041574985000054 ], [ -119.473304164999931, 49.0414220810001 ], [ -119.473019011999952, 49.041347283000029 ], [ -119.472052611999956, 49.041093704000033 ], [ -119.471899795999889, 49.041030438000043 ], [ -119.471734906999927, 49.040962212000046 ], [ -119.471313504999941, 49.040719492000093 ], [ -119.47104304799997, 49.040470770000169 ], [ -119.471006092999957, 49.040436802000023 ], [ -119.470999259999971, 49.040428576000053 ], [ -119.470663286, 49.040024397000117 ], [ -119.471497734999915, 49.039540352000067 ], [ -119.47166584199999, 49.039442854000107 ], [ -119.473783074999972, 49.038214591000028 ], [ -119.474119119999983, 49.038019801000104 ], [ -119.474553310999966, 49.037809401000054 ], [ -119.475020213999983, 49.037658785000112 ], [ -119.476039209999925, 49.037234239000028 ], [ -119.476076506999959, 49.037218708000104 ], [ -119.476460596, 49.037199613000027 ], [ -119.476741407999938, 49.037270900000067 ], [ -119.477060812000019, 49.037302105000037 ], [ -119.477347095999917, 49.037265318000038 ], [ -119.477967582999923, 49.036949599000138 ], [ -119.478583612999927, 49.03740324000006 ], [ -119.481145781999899, 49.036311541000018 ], [ -119.48009853699989, 49.035233587000029 ], [ -119.481392371999974, 49.034601487000032 ], [ -119.48142040299993, 49.034587788000067 ], [ -119.481633540999923, 49.034483641000087 ], [ -119.481916788999939, 49.034345262000109 ], [ -119.482357218999979, 49.034130101000102 ], [ -119.483095818999956, 49.033851305000034 ], [ -119.48368498499994, 49.033679213000092 ], [ -119.483759846999931, 49.033665649000042 ], [ -119.483831973999941, 49.033652607000086 ], [ -119.483833042999919, 49.033653755000039 ], [ -119.484015148999944, 49.033852542000069 ], [ -119.484551407999959, 49.034734098000094 ], [ -119.484835081999975, 49.034926391000042 ], [ -119.485096794999919, 49.035033302000052 ], [ -119.485755612999938, 49.035302392000055 ], [ -119.486252098999969, 49.035903393000119 ], [ -119.486778280999928, 49.036297897000068 ], [ -119.48682215799991, 49.03638526500005 ], [ -119.486854123999976, 49.036448906000032 ], [ -119.486732023999963, 49.036818201000109 ], [ -119.486698288999975, 49.036920313000039 ], [ -119.486976917999954, 49.037420921000084 ], [ -119.486981592999882, 49.037429381000074 ], [ -119.486985201999943, 49.037435900000091 ], [ -119.48798340899998, 49.037692204000038 ], [ -119.488461596999983, 49.037979895 ], [ -119.488503002999977, 49.03825759100004 ], [ -119.488365349999981, 49.038697660000082 ], [ -119.488219693999937, 49.039163395000081 ], [ -119.48834043, 49.039346944000052 ], [ -119.488382621999946, 49.03941115000007 ], [ -119.488578821999951, 49.039521332000064 ], [ -119.488493649999896, 49.039516155000101 ], [ -119.48847172899994, 49.039672772000088 ], [ -119.488443236999927, 49.039671040000016 ], [ -119.488191479999969, 49.039655735000089 ], [ -119.48814853099999, 49.039962578000086 ], [ -119.487962275999934, 49.039951254000115 ], [ -119.487922691, 49.040234054000074 ], [ -119.489952826999954, 49.040357460000052 ], [ -119.489918454999952, 49.040603089000022 ], [ -119.491123606999963, 49.04067632800011 ], [ -119.49103432, 49.041314508000085 ], [ -119.491049281999935, 49.041315417000071 ], [ -119.49118194, 49.040367238000023 ], [ -119.491199169999973, 49.0402440740001 ], [ -119.491453408999988, 49.040259524000113 ], [ -119.492322058999918, 49.040883542000067 ], [ -119.492439835, 49.040968149000044 ], [ -119.493621108999946, 49.041816698000112 ], [ -119.493845395999983, 49.04200314300008 ], [ -119.494107678999953, 49.04180483800009 ], [ -119.494456704999948, 49.041532662000087 ], [ -119.495650142999949, 49.040514448000067 ], [ -119.496640406999973, 49.040574575000086 ], [ -119.496316271999959, 49.042893238000019 ], [ -119.49637476399991, 49.042896788000043 ], [ -119.4962207199999, 49.043998648000048 ], [ -119.496626527999979, 49.044023285000037 ], [ -119.496548245999989, 49.0445832300001 ], [ -119.497540434999976, 49.044643460000074 ], [ -119.497422673999949, 49.045485911000071 ], [ -119.501320870999933, 49.045722459000082 ], [ -119.501184259999931, 49.046700311000102 ], [ -119.504268741999979, 49.046887380000037 ], [ -119.503982417999936, 49.048937695000049 ], [ -119.506284113000035, 49.049077231000091 ], [ -119.50606408199999, 49.050653254000025 ], [ -119.510800172999922, 49.050940211000089 ], [ -119.510663345999944, 49.051920934000172 ], [ -119.510743937999962, 49.051925815000075 ], [ -119.510726219999981, 49.052052806000113 ], [ -119.510856742, 49.052060712000085 ], [ -119.510712627999979, 49.053093640000064 ], [ -119.513457428, 49.053259842000017 ], [ -119.513250600999953, 49.054742810000036 ], [ -119.516303234999953, 49.054927568000018 ], [ -119.515905631999942, 49.057779472000099 ], [ -119.521308162999944, 49.058106238000057 ], [ -119.520903173999926, 49.0610131460001 ], [ -119.524630945999917, 49.061238454000069 ], [ -119.524184404999971, 49.064445021000054 ], [ -119.52413155899994, 49.064824475000087 ], [ -119.523679106999936, 49.064797135000092 ], [ -119.523694452999962, 49.065099952000118 ], [ -119.52369576699999, 49.065125922000014 ], [ -119.523580119999963, 49.065128452000081 ], [ -119.52338042199996, 49.065132821000098 ], [ -119.523373868999926, 49.065179868 ], [ -119.523348503999927, 49.065361972000119 ], [ -119.52721903299998, 49.065595794000131 ], [ -119.527002915999944, 49.067148241000076 ], [ -119.52721083299997, 49.067160798000046 ], [ -119.527100569999988, 49.067952839000064 ], [ -119.527232382999969, 49.067960799000083 ], [ -119.527155422999925, 49.06851361700005 ], [ -119.527605407999943, 49.068540790000029 ], [ -119.527590553999943, 49.068647485000078 ], [ -119.527751209999948, 49.068657186000081 ], [ -119.527747065999961, 49.068686965000104 ], [ -119.530686319999973, 49.068864406000067 ], [ -119.53038503799999, 49.071029597000035 ], [ -119.531519933999931, 49.071098088000014 ], [ -119.53113429299998, 49.073869708000082 ], [ -119.533585122999938, 49.073815903000124 ], [ -119.53359884299999, 49.074085504000067 ], [ -119.534419573999955, 49.074067474000053 ], [ -119.534433297999954, 49.074337075000095 ], [ -119.534843665999972, 49.074328059000088 ], [ -119.53485739199999, 49.074597658000044 ], [ -119.535267759999954, 49.074588640000115 ], [ -119.535281489999974, 49.074858241000079 ], [ -119.535691860999918, 49.074849221000079 ], [ -119.535705591999957, 49.075118821000082 ], [ -119.536115965999954, 49.075109799000082 ], [ -119.536149067999986, 49.075759580000053 ], [ -119.54130171, 49.076070130000112 ], [ -119.540928268999934, 49.078757846 ], [ -119.545897638999946, 49.07905711100004 ], [ -119.545759115999914, 49.08005477300005 ], [ -119.548432024999897, 49.080215644000099 ], [ -119.548294898999956, 49.081203606000017 ], [ -119.54608751399995, 49.081185958000091 ], [ -119.546354842999946, 49.083982693000074 ], [ -119.544199310999957, 49.082577107000091 ], [ -119.543732024999883, 49.08227235400004 ], [ -119.542302678999945, 49.081340221000119 ], [ -119.541506732, 49.080821107000091 ], [ -119.540276481, 49.079988999000051 ] ], [ [ -119.477404730999979, 49.040016095000041 ], [ -119.477405832999935, 49.040008242000027 ], [ -119.477021450999956, 49.039984834000073 ], [ -119.477020349999961, 49.039992687000044 ], [ -119.477404730999979, 49.040016095000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182537956", "BldgCostT": "123632039", "sL_LossRatio": "0.995089958302396", "sL_AssetLoss": "14075.786573", "sL_BldgLoss": "14006.673874", "sL_StrLoss": "13969.129224", "sL_NStrLoss": "37.54465", "sL_ContLoss": "69.112699", "geom_point": "0101000020E61000001129388235DE5DC0AEDAFB75A3844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.467887310999942, 49.036726793000113 ], [ -119.468530368999922, 49.036687393000058 ], [ -119.469300091999941, 49.036640205000069 ], [ -119.468988107999948, 49.034660097000014 ], [ -119.468631276999957, 49.033842457000013 ], [ -119.468549097999954, 49.033654110000093 ], [ -119.468718124999967, 49.033642707000062 ], [ -119.468896676999947, 49.033601187000045 ], [ -119.469106797999942, 49.033296587000109 ], [ -119.469127364000016, 49.033118420000058 ], [ -119.469138302999966, 49.033023700000086 ], [ -119.4691171899999, 49.032685200000074 ], [ -119.469801698999987, 49.032665397000166 ], [ -119.470230713999911, 49.032687084000095 ], [ -119.470792901999943, 49.03276651300002 ], [ -119.471303386999978, 49.032892592000032 ], [ -119.471357108999925, 49.032913263000118 ], [ -119.471530974999965, 49.032980157000082 ], [ -119.471702883999967, 49.033046290000115 ], [ -119.472001974999898, 49.03319796100002 ], [ -119.472123130999947, 49.033259424000036 ], [ -119.472221519999906, 49.033309304000021 ], [ -119.472384020999968, 49.033423189000096 ], [ -119.472618709999892, 49.033587606000104 ], [ -119.472800259999985, 49.033792485000106 ], [ -119.473240437999976, 49.034289151000046 ], [ -119.47351174399995, 49.03456617000009 ], [ -119.473660374999952, 49.03471798600004 ], [ -119.473909466999885, 49.03486878000006 ], [ -119.474142217999884, 49.034969754000073 ], [ -119.474864212999989, 49.035279571000032 ], [ -119.475724516, 49.035669215000041 ], [ -119.476082187999921, 49.035759728000052 ], [ -119.476440419999975, 49.035825004000039 ], [ -119.476835266999927, 49.035896935000061 ], [ -119.47703030699995, 49.036021011000102 ], [ -119.477228223999958, 49.036146903000052 ], [ -119.477572392999932, 49.036578330000061 ], [ -119.477581938999919, 49.036587286000028 ], [ -119.477967582999923, 49.036949599000138 ], [ -119.477347095999917, 49.037265318000038 ], [ -119.477060812000019, 49.037302105000037 ], [ -119.476741407999938, 49.037270900000067 ], [ -119.476460596, 49.037199613000027 ], [ -119.476076506999959, 49.037218708000104 ], [ -119.476039209999925, 49.037234239000028 ], [ -119.475020213999983, 49.037658785000112 ], [ -119.474553310999966, 49.037809401000054 ], [ -119.474119119999983, 49.038019801000104 ], [ -119.473783074999972, 49.038214591000028 ], [ -119.47166584199999, 49.039442854000107 ], [ -119.471497734999915, 49.039540352000067 ], [ -119.470663286, 49.040024397000117 ], [ -119.470339865999918, 49.039639421000068 ], [ -119.4701461399999, 49.039408785000063 ], [ -119.469364500000012, 49.038477815000078 ], [ -119.46887810599999, 49.037906507000066 ], [ -119.467887310999942, 49.036726793000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125585206", "BldgCostT": "83642039", "sL_LossRatio": "0.989984644270663", "sL_AssetLoss": "18944.859187", "sL_BldgLoss": "18755.119683", "sL_StrLoss": "18681.017983", "sL_NStrLoss": "74.1017", "sL_ContLoss": "189.739504", "geom_point": "0101000020E61000001F55B03AF0DD5DC07E5B97B7F6844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.465556041999918, 49.039049081000087 ], [ -119.466494635999979, 49.038740354 ], [ -119.466528795999977, 49.038761383000093 ], [ -119.465582417999926, 49.037412594000088 ], [ -119.465874701999908, 49.037313810000043 ], [ -119.46674727499996, 49.037127390000094 ], [ -119.466510684999918, 49.036594903000037 ], [ -119.466432793999942, 49.036251104000058 ], [ -119.46642856199999, 49.036194309000109 ], [ -119.466372704999955, 49.035448093000106 ], [ -119.466191002999949, 49.033791499000074 ], [ -119.465388888999925, 49.033838406 ], [ -119.465332535999934, 49.033439342000058 ], [ -119.465258198999905, 49.032912690000074 ], [ -119.467232998999975, 49.032799010000126 ], [ -119.4691171899999, 49.032685200000074 ], [ -119.469138302999966, 49.033023700000086 ], [ -119.469127364000016, 49.033118420000058 ], [ -119.469106797999942, 49.033296587000109 ], [ -119.468896676999947, 49.033601187000045 ], [ -119.468718124999967, 49.033642707000062 ], [ -119.468549097999954, 49.033654110000093 ], [ -119.468631276999957, 49.033842457000013 ], [ -119.468988107999948, 49.034660097000014 ], [ -119.469300091999941, 49.036640205000069 ], [ -119.468530368999922, 49.036687393000058 ], [ -119.467887310999942, 49.036726793000113 ], [ -119.46887810599999, 49.037906507000066 ], [ -119.469364500000012, 49.038477815000078 ], [ -119.4701461399999, 49.039408785000063 ], [ -119.470339865999918, 49.039639421000068 ], [ -119.470663286, 49.040024397000117 ], [ -119.470999259999971, 49.040428576000053 ], [ -119.471006092999957, 49.040436802000023 ], [ -119.47104304799997, 49.040470770000169 ], [ -119.470483324999947, 49.040704747000099 ], [ -119.470050889999925, 49.040898014000092 ], [ -119.470627628999935, 49.041541246000115 ], [ -119.470800234999913, 49.04177631200006 ], [ -119.469218692999974, 49.043171296000025 ], [ -119.469004922999972, 49.043368990000097 ], [ -119.469543902999959, 49.043525550000076 ], [ -119.469487187999945, 49.043581742000065 ], [ -119.469357496999962, 49.043774836000075 ], [ -119.469110456999942, 49.044209430000109 ], [ -119.467910500999963, 49.043827710000087 ], [ -119.466626696999981, 49.043314999000124 ], [ -119.465415608999976, 49.042639890000039 ], [ -119.464732294, 49.042095913000018 ], [ -119.464754687999971, 49.041987595000052 ], [ -119.465543794999988, 49.041628708000061 ], [ -119.466097381999973, 49.041204292000025 ], [ -119.466317000999979, 49.040919499000047 ], [ -119.466332711999939, 49.040704409000092 ], [ -119.466037595999921, 49.040278606000108 ], [ -119.465523886999961, 49.039821409000062 ], [ -119.46517182299999, 49.039174670000101 ], [ -119.465556041999918, 49.039049081000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198513328", "BldgCostT": "127572410", "sL_LossRatio": "0.973756650331143", "sL_AssetLoss": "15904.3286115", "sL_BldgLoss": "15486.9457545", "sL_StrLoss": "15322.1074645", "sL_NStrLoss": "164.83829", "sL_ContLoss": "417.382857", "geom_point": "0101000020E6100000A76A619A52DC5DC023A68FE91E844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.443451853999989, 49.03676523700004 ], [ -119.443449353999966, 49.036379900000099 ], [ -119.439350627999914, 49.036344573000072 ], [ -119.439518079000024, 49.035157054000123 ], [ -119.438799681999939, 49.035113044000063 ], [ -119.438869722999954, 49.03461636 ], [ -119.438463765999984, 49.034591489000015 ], [ -119.438254230999945, 49.036077236000047 ], [ -119.43681404199998, 49.035988988000057 ], [ -119.436770085999939, 49.035916649000093 ], [ -119.436671292999961, 49.035754095000101 ], [ -119.436582611999938, 49.03550819700007 ], [ -119.436458688999934, 49.034392996000129 ], [ -119.436449384999918, 49.034360324000083 ], [ -119.436150933999983, 49.03331412100006 ], [ -119.43517928699994, 49.029907499000103 ], [ -119.435175604999955, 49.029534699000038 ], [ -119.435351111999964, 49.027882700000077 ], [ -119.43629516099999, 49.027910773000087 ], [ -119.438143912999934, 49.027965731000059 ], [ -119.438404771999927, 49.02797348399999 ], [ -119.438952732999923, 49.027989749000042 ], [ -119.440131390999966, 49.028024750000021 ], [ -119.440250474, 49.028028284000094 ], [ -119.441193088999967, 49.028055303000023 ], [ -119.44119768799996, 49.029462496000058 ], [ -119.441185387999909, 49.029841507000071 ], [ -119.44116830899999, 49.030303402000087 ], [ -119.441197401999929, 49.031089991000066 ], [ -119.441221608999953, 49.031871782000053 ], [ -119.444683379, 49.031883998000119 ], [ -119.444731805999965, 49.031803793000066 ], [ -119.444799385999929, 49.031333192000034 ], [ -119.444797648999909, 49.031256902000102 ], [ -119.444785683999925, 49.030739193000038 ], [ -119.444760806999923, 49.029855206000029 ], [ -119.44602481299998, 49.02985929900003 ], [ -119.449489517999979, 49.029869692000069 ], [ -119.44948418599995, 49.029517601000038 ], [ -119.451894915999958, 49.029297994000054 ], [ -119.451749401999976, 49.028655284000124 ], [ -119.452319599999925, 49.028599694000057 ], [ -119.457098795999968, 49.028165798 ], [ -119.457122995999924, 49.028164515000107 ], [ -119.457455369999963, 49.028147066000081 ], [ -119.457799410999925, 49.028129007000082 ], [ -119.458382918, 49.028153791000122 ], [ -119.45861761899998, 49.028188588000098 ], [ -119.458628724, 49.028413831000151 ], [ -119.458296911999966, 49.02842348600003 ], [ -119.457937906, 49.028638490000063 ], [ -119.45677729399992, 49.028699799000023 ], [ -119.4550951199999, 49.028968901000056 ], [ -119.453904693999945, 49.029246612000129 ], [ -119.450565996999927, 49.030360400000099 ], [ -119.448796779999938, 49.031378696000026 ], [ -119.448447011999974, 49.031800194000056 ], [ -119.448463906000015, 49.032132087000022 ], [ -119.44864260199995, 49.032723102000034 ], [ -119.449040215999943, 49.033020802000038 ], [ -119.448313416999923, 49.033547799000068 ], [ -119.448023021999973, 49.034004903000032 ], [ -119.447227186999925, 49.034795392000092 ], [ -119.446538803999957, 49.035286686000092 ], [ -119.445488688999916, 49.036478789000043 ], [ -119.445078308999925, 49.036739390000072 ], [ -119.44505997899995, 49.036787360000062 ], [ -119.443451853999989, 49.03676523700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33051668", "BldgCostT": "20826668", "sL_LossRatio": "0.999819840178179", "sL_AssetLoss": "4264.04729", "sL_BldgLoss": "4263.27908", "sL_StrLoss": "4259.63758", "sL_NStrLoss": "3.6415", "sL_ContLoss": "0.76821", "geom_point": "0101000020E61000001FDE39B5AFDD5DC0C117DCC56A844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.465146304999948, 49.039127794000088 ], [ -119.46403340899991, 49.038224889000091 ], [ -119.464101622000015, 49.037935701 ], [ -119.464281186999955, 49.03797700500008 ], [ -119.464541477999958, 49.038231994000057 ], [ -119.464812787, 49.038172201000052 ], [ -119.464803003999975, 49.038009797000065 ], [ -119.464157307999955, 49.037106888000046 ], [ -119.46387660699996, 49.037264892000074 ], [ -119.464022012999976, 49.037703608000058 ], [ -119.463814192, 49.037662302000044 ], [ -119.463642088999933, 49.037495710000023 ], [ -119.462783017, 49.035345091000067 ], [ -119.461593893999918, 49.0345433130001 ], [ -119.46059648399995, 49.033737200000047 ], [ -119.460687305999969, 49.033617502 ], [ -119.461038891999948, 49.033547786000071 ], [ -119.461479187999942, 49.033331292000049 ], [ -119.461820397999958, 49.033026495000044 ], [ -119.461917597999943, 49.032485291000029 ], [ -119.461395895999956, 49.030220797000077 ], [ -119.461172894999947, 49.029891801000105 ], [ -119.461163880999948, 49.029882710000052 ], [ -119.461158352999945, 49.029770671000094 ], [ -119.461054989999951, 49.02977287700007 ], [ -119.460299976999977, 49.029011317000069 ], [ -119.460285057999968, 49.028708932000043 ], [ -119.461171186999977, 49.029228302000078 ], [ -119.461365804999971, 49.029346906000065 ], [ -119.461794282999946, 49.029614494000064 ], [ -119.462078201999972, 49.029791810000077 ], [ -119.462557990999926, 49.030115891000051 ], [ -119.462834710999928, 49.030372397000107 ], [ -119.463053138999939, 49.030664132 ], [ -119.46311418399992, 49.030745697000093 ], [ -119.463237906999922, 49.031232401000125 ], [ -119.463347882, 49.032060084000079 ], [ -119.46340960400002, 49.032519605000047 ], [ -119.463485104999975, 49.033017014000016 ], [ -119.465258198999905, 49.032912690000074 ], [ -119.465332535999934, 49.033439342000058 ], [ -119.465388888999925, 49.033838406 ], [ -119.466191002999949, 49.033791499000074 ], [ -119.466372704999955, 49.035448093000106 ], [ -119.46642856199999, 49.036194309000109 ], [ -119.466432793999942, 49.036251104000058 ], [ -119.466510684999918, 49.036594903000037 ], [ -119.46674727499996, 49.037127390000094 ], [ -119.465874701999908, 49.037313810000043 ], [ -119.465582417999926, 49.037412594000088 ], [ -119.466528795999977, 49.038761383000093 ], [ -119.466494635999979, 49.038740354 ], [ -119.465556041999918, 49.039049081000087 ], [ -119.46517182299999, 49.039174670000101 ], [ -119.465146304999948, 49.039127794000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "390856091", "BldgCostT": "264252265", "sL_LossRatio": "0.96576205886804", "sL_AssetLoss": "11324.31353", "sL_BldgLoss": "10936.59235", "sL_StrLoss": "10793.09741", "sL_NStrLoss": "143.49494", "sL_ContLoss": "387.72118", "geom_point": "0101000020E6100000F6A5850556DC5DC08179024099834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44119768799996, 49.029462496000058 ], [ -119.441193088999967, 49.028055303000023 ], [ -119.440250474, 49.028028284000094 ], [ -119.440131390999966, 49.028024750000021 ], [ -119.438952732999923, 49.027989749000042 ], [ -119.438404771999927, 49.02797348399999 ], [ -119.438143912999934, 49.027965731000059 ], [ -119.43629516099999, 49.027910773000087 ], [ -119.43907838, 49.02384741500002 ], [ -119.439178326999965, 49.023891001000038 ], [ -119.439660703999976, 49.024019988000077 ], [ -119.441496304999987, 49.024200297000121 ], [ -119.441693603000019, 49.024260283000061 ], [ -119.44182437099991, 49.024354197000044 ], [ -119.441887212999973, 49.024472895 ], [ -119.44215811199993, 49.025879192000083 ], [ -119.442313066999972, 49.026687114 ], [ -119.442395490999942, 49.027127270000065 ], [ -119.442415550999982, 49.02723436100009 ], [ -119.442545508999956, 49.027928348000032 ], [ -119.442576792999901, 49.028095729000071 ], [ -119.443455690999926, 49.028214719000061 ], [ -119.443986473999985, 49.02834556400007 ], [ -119.44494266099997, 49.028581284000055 ], [ -119.446222119999959, 49.028896706000118 ], [ -119.446853800999946, 49.028988696000056 ], [ -119.447384602999946, 49.029018495000088 ], [ -119.44796329199994, 49.028999620000057 ], [ -119.449475896999985, 49.028875191000047 ], [ -119.449505994999939, 49.0278815120001 ], [ -119.450202994999955, 49.027850887000085 ], [ -119.451646505999932, 49.027943703000126 ], [ -119.452196276999956, 49.028013512000086 ], [ -119.452319599999925, 49.028599694000057 ], [ -119.451749401999976, 49.028655284000124 ], [ -119.451894915999958, 49.029297994000054 ], [ -119.44948418599995, 49.029517601000038 ], [ -119.449489517999979, 49.029869692000069 ], [ -119.44602481299998, 49.02985929900003 ], [ -119.444760806999923, 49.029855206000029 ], [ -119.444785683999925, 49.030739193000038 ], [ -119.444797648999909, 49.031256902000102 ], [ -119.444799385999929, 49.031333192000034 ], [ -119.444731805999965, 49.031803793000066 ], [ -119.444683379, 49.031883998000119 ], [ -119.441221608999953, 49.031871782000053 ], [ -119.441197401999929, 49.031089991000066 ], [ -119.44116830899999, 49.030303402000087 ], [ -119.441185387999909, 49.029841507000071 ], [ -119.44119768799996, 49.029462496000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150280062", "BldgCostT": "98923191", "sL_LossRatio": "0.979512210326123", "sL_AssetLoss": "8858.929435", "sL_BldgLoss": "8677.429552", "sL_StrLoss": "8607.879552", "sL_NStrLoss": "69.55", "sL_ContLoss": "181.499883", "geom_point": "0101000020E61000001D4BE4C4CFDD5DC0CCC39D66DC834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.462557990999926, 49.030115891000051 ], [ -119.462078201999972, 49.029791810000077 ], [ -119.461794282999946, 49.029614494000064 ], [ -119.461365804999971, 49.029346906000065 ], [ -119.461171186999977, 49.029228302000078 ], [ -119.460285057999968, 49.028708932000043 ], [ -119.460275370999909, 49.028512569000021 ], [ -119.460621896999939, 49.028679796000034 ], [ -119.461088715999963, 49.028706897000099 ], [ -119.461177394999979, 49.02856021300007 ], [ -119.461565508999968, 49.028390694000109 ], [ -119.462706501999932, 49.028199303000108 ], [ -119.463220208999928, 49.028555901000097 ], [ -119.464863038999951, 49.028186909000098 ], [ -119.465232062, 49.028020497000085 ], [ -119.465426149999956, 49.027878586000057 ], [ -119.465690359999911, 49.02768676200003 ], [ -119.465839360999937, 49.027613184000117 ], [ -119.465967407999983, 49.027549956000094 ], [ -119.46632771400003, 49.027445379000099 ], [ -119.467371761999971, 49.027213355000065 ], [ -119.467630164999946, 49.027155938000107 ], [ -119.468419806999933, 49.02677733900002 ], [ -119.469075681999982, 49.026335423000063 ], [ -119.468930809999947, 49.026830211000096 ], [ -119.468842527999968, 49.027244347000114 ], [ -119.468393630999941, 49.028380631000111 ], [ -119.46834171099999, 49.02858452000001 ], [ -119.468344746999918, 49.028807116000038 ], [ -119.468404758999966, 49.029226301000072 ], [ -119.468530608999984, 49.030105266000064 ], [ -119.468538674999976, 49.03016162799999 ], [ -119.468592285999989, 49.03033670000012 ], [ -119.468622388999918, 49.030444315000075 ], [ -119.46920609299994, 49.030439195000028 ], [ -119.469285198999927, 49.030462100000072 ], [ -119.469340306999968, 49.030508884000078 ], [ -119.469694805999922, 49.03169689900006 ], [ -119.469004510999952, 49.031748799000042 ], [ -119.469079873999959, 49.032188291000068 ], [ -119.4691171899999, 49.032685200000074 ], [ -119.467232998999975, 49.032799010000126 ], [ -119.465258198999905, 49.032912690000074 ], [ -119.463485104999975, 49.033017014000016 ], [ -119.46340960400002, 49.032519605000047 ], [ -119.463347882, 49.032060084000079 ], [ -119.463237906999922, 49.031232401000125 ], [ -119.46311418399992, 49.030745697000093 ], [ -119.463053138999939, 49.030664132 ], [ -119.462834710999928, 49.030372397000107 ], [ -119.462557990999926, 49.030115891000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180485797", "BldgCostT": "108761837", "sL_LossRatio": "0.96356847017728", "sL_AssetLoss": "13316.808335", "sL_BldgLoss": "12831.656635", "sL_StrLoss": "12650.24236", "sL_NStrLoss": "181.414275", "sL_ContLoss": "485.1517", "geom_point": "0101000020E610000058C4F19523DC5DC0E3A34A9CAE824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442545508999956, 49.027928348000032 ], [ -119.442415550999982, 49.02723436100009 ], [ -119.442395490999942, 49.027127270000065 ], [ -119.442313066999972, 49.026687114 ], [ -119.44215811199993, 49.025879192000083 ], [ -119.441887212999973, 49.024472895 ], [ -119.44182437099991, 49.024354197000044 ], [ -119.441693603000019, 49.024260283000061 ], [ -119.441496304999987, 49.024200297000121 ], [ -119.439660703999976, 49.024019988000077 ], [ -119.439178326999965, 49.023891001000038 ], [ -119.43907838, 49.02384741500002 ], [ -119.438273803999948, 49.023496483000052 ], [ -119.437584700999963, 49.023131409000037 ], [ -119.437461964999926, 49.023031453000044 ], [ -119.43740012799995, 49.022981080000108 ], [ -119.437033593999956, 49.022682601000049 ], [ -119.436753642999975, 49.022349077000101 ], [ -119.434109977999967, 49.022866403000094 ], [ -119.434051809999971, 49.022810044000067 ], [ -119.433430000999962, 49.022408791000046 ], [ -119.432906223999936, 49.02121571700016 ], [ -119.433187452999945, 49.02081106600005 ], [ -119.433244605999946, 49.020600279000099 ], [ -119.433230124999952, 49.020411323000062 ], [ -119.433126632999972, 49.020221401000072 ], [ -119.433075184999907, 49.019925271000062 ], [ -119.43322862, 49.019256529000124 ], [ -119.433253205999961, 49.019149535000089 ], [ -119.433339874999959, 49.016922400000048 ], [ -119.43320010399998, 49.016931987000056 ], [ -119.432107335999916, 49.014641405000106 ], [ -119.432243349999979, 49.014762253000036 ], [ -119.432293115999983, 49.014806445000048 ], [ -119.432525545000018, 49.014908394000095 ], [ -119.432797243, 49.014945875000095 ], [ -119.433635002999921, 49.014965610000061 ], [ -119.433438702, 49.013849517000018 ], [ -119.433855604999977, 49.013581407000039 ], [ -119.434091383999942, 49.013084900000052 ], [ -119.433975187999962, 49.012707136000117 ], [ -119.43452096599999, 49.012590178000096 ], [ -119.434592265999925, 49.013010200000096 ], [ -119.435145106999954, 49.012882171000079 ], [ -119.435078006999973, 49.011171387000104 ], [ -119.436120471999914, 49.011080265 ], [ -119.437144770999964, 49.010968274000064 ], [ -119.437212094999936, 49.010815793000106 ], [ -119.437338448999981, 49.010680417000025 ], [ -119.437698175999969, 49.010294896000104 ], [ -119.438185392999969, 49.010313790000026 ], [ -119.438218899999981, 49.010667809000033 ], [ -119.438096979999969, 49.010975497000089 ], [ -119.437386191999906, 49.011801513000066 ], [ -119.43633760499992, 49.013865191000043 ], [ -119.43635580599999, 49.01452170000011 ], [ -119.436980994999914, 49.015003091000047 ], [ -119.43713160799993, 49.015252384000064 ], [ -119.437101393999981, 49.015495914000034 ], [ -119.436685005999891, 49.016196592000064 ], [ -119.436683698999929, 49.016746396000023 ], [ -119.437165099999959, 49.017078203000061 ], [ -119.43774999799993, 49.01730749900009 ], [ -119.437798613999973, 49.017459908000028 ], [ -119.437725702999941, 49.017642204000047 ], [ -119.437076609999977, 49.018059489000017 ], [ -119.436230279999961, 49.019227148000098 ], [ -119.436129001999973, 49.019366887000089 ], [ -119.435819092999964, 49.02003061500011 ], [ -119.435778612999954, 49.020597387000095 ], [ -119.435884198999986, 49.020802499000112 ], [ -119.436626205999971, 49.021461901000066 ], [ -119.436952182, 49.022236695000124 ], [ -119.437710492999955, 49.022914614000065 ], [ -119.438317912999963, 49.023323403000035 ], [ -119.439541904, 49.023739192000079 ], [ -119.441357888999946, 49.023915815000073 ], [ -119.443604905999962, 49.023994197000029 ], [ -119.4438124, 49.024062485000066 ], [ -119.443915779999983, 49.024236348000095 ], [ -119.443991983999965, 49.024364505000051 ], [ -119.443786292999931, 49.024620791000139 ], [ -119.443347400999954, 49.024908489000033 ], [ -119.443354811999967, 49.025619195000019 ], [ -119.443756203999953, 49.026231594000102 ], [ -119.44421157799998, 49.026697821000091 ], [ -119.444633995999965, 49.027130297000099 ], [ -119.445571214999973, 49.027543305000115 ], [ -119.446045294, 49.027452088000096 ], [ -119.446402390999964, 49.027210006000075 ], [ -119.44669230699999, 49.026141892000048 ], [ -119.446827102999976, 49.0260949050001 ], [ -119.447551807999929, 49.026366891000151 ], [ -119.447770704999954, 49.02663180400004 ], [ -119.447588208999903, 49.027400896000067 ], [ -119.447296390999952, 49.027856592000013 ], [ -119.447353506999917, 49.027919303000026 ], [ -119.448022980999895, 49.027905004000118 ], [ -119.44810448799997, 49.02786659500007 ], [ -119.448119498999944, 49.027345311000033 ], [ -119.447990182999902, 49.026681604000053 ], [ -119.44766859, 49.026247295000061 ], [ -119.445893907999931, 49.02548529600007 ], [ -119.445043795999979, 49.02517909100002 ], [ -119.444228609999954, 49.02498968600004 ], [ -119.444153706999941, 49.02487429100011 ], [ -119.444238809999888, 49.024646393000097 ], [ -119.444437101999966, 49.024498306000062 ], [ -119.445959506999912, 49.024862887000083 ], [ -119.447988707999983, 49.025503801000056 ], [ -119.449068482999934, 49.026064998000081 ], [ -119.44986992099993, 49.02706480100008 ], [ -119.450813386, 49.027341091000075 ], [ -119.45238287799998, 49.027506299000066 ], [ -119.452676389999937, 49.027653009000048 ], [ -119.452783106999931, 49.027866601000071 ], [ -119.45320209099998, 49.028037509000058 ], [ -119.454511407999973, 49.028225493000043 ], [ -119.458500591999922, 49.027862302000067 ], [ -119.458589940999943, 49.027873440000072 ], [ -119.458581099999989, 49.027936329000049 ], [ -119.458605154999987, 49.02793581600011 ], [ -119.45861761899998, 49.028188588000098 ], [ -119.458382918, 49.028153791000122 ], [ -119.457799410999925, 49.028129007000082 ], [ -119.457455369999963, 49.028147066000081 ], [ -119.457122995999924, 49.028164515000107 ], [ -119.457098795999968, 49.028165798 ], [ -119.452319599999925, 49.028599694000057 ], [ -119.452196276999956, 49.028013512000086 ], [ -119.451646505999932, 49.027943703000126 ], [ -119.450202994999955, 49.027850887000085 ], [ -119.449505994999939, 49.0278815120001 ], [ -119.449475896999985, 49.028875191000047 ], [ -119.44796329199994, 49.028999620000057 ], [ -119.447384602999946, 49.029018495000088 ], [ -119.446853800999946, 49.028988696000056 ], [ -119.446222119999959, 49.028896706000118 ], [ -119.44494266099997, 49.028581284000055 ], [ -119.443986473999985, 49.02834556400007 ], [ -119.443455690999926, 49.028214719000061 ], [ -119.442576792999901, 49.028095729000071 ], [ -119.442545508999956, 49.027928348000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999995128269464", "sL_AssetLoss": "164.007429", "sL_BldgLoss": "164.00663", "sL_StrLoss": "164", "sL_NStrLoss": "0.00663", "sL_ContLoss": "0.000799", "geom_point": "0101000020E61000009E0777676DDC5DC059317D2B69824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.445822197999959, 49.017951357000165 ], [ -119.44621228299999, 49.017943083000063 ], [ -119.446215854999934, 49.018015964000085 ], [ -119.446220255999961, 49.018105711000011 ], [ -119.446242258999945, 49.018554430000037 ], [ -119.445882131, 49.018759792000068 ], [ -119.445432067999931, 49.018769336000048 ], [ -119.445442803, 49.018988325000052 ], [ -119.445321788999962, 49.019041576000063 ], [ -119.445035344999965, 49.019047649000044 ], [ -119.445041099999955, 49.019165089000147 ], [ -119.44467737599993, 49.019325139000102 ], [ -119.444638615999921, 49.019325962000039 ], [ -119.444639394999953, 49.0193418530001 ], [ -119.444300916999921, 49.019490793000088 ], [ -119.443988407999925, 49.019560604000077 ], [ -119.442991692999968, 49.019590487000059 ], [ -119.44217801799999, 49.019358925000134 ], [ -119.44215201199999, 49.01882773100003 ], [ -119.442280695999926, 49.018733088 ], [ -119.443207307999984, 49.018546589000017 ], [ -119.443779104999962, 49.018534473000017 ], [ -119.443774111, 49.018432503000071 ], [ -119.444177017999905, 49.018351404000015 ], [ -119.444606219999983, 49.018247041000073 ], [ -119.444995701999943, 49.018238784000062 ], [ -119.444991514999984, 49.018153353000088 ], [ -119.445822197999959, 49.017951357000165 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105504500", "BldgCostT": "71345000", "sL_LossRatio": "0.995678538657748", "sL_AssetLoss": "13101.792777", "sL_BldgLoss": "13045.173886", "sL_StrLoss": "13023.407806", "sL_NStrLoss": "21.76608", "sL_ContLoss": "56.618891", "geom_point": "0101000020E6100000212B2AA8C9DD5DC0A25147E863814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.47365286199999, 49.02222868900003 ], [ -119.470740908, 49.020210275000117 ], [ -119.4698666, 49.019604191000035 ], [ -119.469507307999905, 49.019369807000032 ], [ -119.468686717999958, 49.018845955000131 ], [ -119.468613858999944, 49.018808666000041 ], [ -119.46824532499997, 49.018620112000065 ], [ -119.46733423799995, 49.018272454000041 ], [ -119.466957473999955, 49.018055090000075 ], [ -119.466620291999931, 49.017790377000054 ], [ -119.46638434599997, 49.017566199000093 ], [ -119.466224962999931, 49.017352980000098 ], [ -119.465771191999949, 49.016288217000117 ], [ -119.46546615199999, 49.01555916800001 ], [ -119.464838863999915, 49.014059915000118 ], [ -119.464723618999926, 49.013784404000099 ], [ -119.464575113999928, 49.013429408000128 ], [ -119.464564041999935, 49.013390223000087 ], [ -119.464486315999935, 49.013114803000086 ], [ -119.46444949499994, 49.012741799000061 ], [ -119.463231356999955, 49.012990212000012 ], [ -119.461833812999942, 49.013276486000109 ], [ -119.461615697999918, 49.013364389000067 ], [ -119.461404396999967, 49.013580299000125 ], [ -119.4611055, 49.013951712000079 ], [ -119.461008603999915, 49.014026288000096 ], [ -119.460885207, 49.01407479100002 ], [ -119.459871713999945, 49.014291395000107 ], [ -119.459925105999929, 49.01441848900005 ], [ -119.459986903999891, 49.014476592000094 ], [ -119.460142908999956, 49.014537591000121 ], [ -119.460350727, 49.014575522000065 ], [ -119.460154074999977, 49.015191583000039 ], [ -119.45964640499993, 49.015034500000127 ], [ -119.459134217, 49.014992174000042 ], [ -119.459042502000031, 49.014984594000026 ], [ -119.458489204999964, 49.01511418800002 ], [ -119.45799539399998, 49.015115591000033 ], [ -119.457654199999979, 49.01538340700003 ], [ -119.457369096999969, 49.015136999000028 ], [ -119.456765980999961, 49.015122797000068 ], [ -119.455605388999928, 49.015314336000145 ], [ -119.453881583999987, 49.015351029000037 ], [ -119.453868229999983, 49.01507949100003 ], [ -119.453983602999983, 49.015020196000108 ], [ -119.454322091999984, 49.014679804000103 ], [ -119.4544701899999, 49.014047498000131 ], [ -119.454821955999989, 49.013981504000078 ], [ -119.455454866999958, 49.013968029000033 ], [ -119.455474478999975, 49.014366523000092 ], [ -119.455617706999973, 49.013347748000108 ], [ -119.454460500999986, 49.013276993000076 ], [ -119.454419108999971, 49.013023492000038 ], [ -119.453712404999976, 49.012570595000049 ], [ -119.453394217, 49.012486467000095 ], [ -119.453473217999942, 49.011924695000154 ], [ -119.452246781999975, 49.011849679000107 ], [ -119.452204697999917, 49.011666205000068 ], [ -119.452339497999944, 49.011358594000072 ], [ -119.452770802999964, 49.010935598000117 ], [ -119.453290783999961, 49.010636495000078 ], [ -119.454940798999957, 49.00988498300007 ], [ -119.456233213999951, 49.009296308000039 ], [ -119.458161079999982, 49.008183999000074 ], [ -119.458226600999964, 49.007849286000059 ], [ -119.457875394000013, 49.007370790000081 ], [ -119.457853094999976, 49.006940691000111 ], [ -119.457979498999947, 49.006712805000042 ], [ -119.458677816999952, 49.006202895000094 ], [ -119.458880809999982, 49.005873884000074 ], [ -119.458606508999978, 49.00501658400001 ], [ -119.458655091999915, 49.002964301000056 ], [ -119.458319322999955, 49.001954506000061 ], [ -119.458364315999987, 49.001494507000082 ], [ -119.45826010699993, 49.001290807 ], [ -119.457431314999923, 49.000588705000034 ], [ -119.457477302999962, 49.000407808000034 ], [ -119.457932698999983, 49.000137657000096 ], [ -119.461085612999966, 49.000135943000039 ], [ -119.462503042999984, 49.000133527000074 ], [ -119.463248943999972, 49.00013289700005 ], [ -119.465330973999968, 49.000130038000059 ], [ -119.468981296, 49.000113286000108 ], [ -119.46902710599997, 49.00017710400008 ], [ -119.470150001999968, 49.001719509000054 ], [ -119.471302301999955, 49.003248298000074 ], [ -119.471594313999944, 49.003688304000022 ], [ -119.471734566999913, 49.004198996000113 ], [ -119.471750415999963, 49.004256686000126 ], [ -119.47172363199999, 49.004256669000036 ], [ -119.468455733999988, 49.004251684000053 ], [ -119.467142517999889, 49.004249642000019 ], [ -119.466090803999961, 49.004247999000071 ], [ -119.465185508999966, 49.004246590000093 ], [ -119.465868313999977, 49.005173488 ], [ -119.466043197999937, 49.005460902000046 ], [ -119.466079148999924, 49.005558451000056 ], [ -119.466117618999974, 49.005662876000017 ], [ -119.466180197999975, 49.005832696000056 ], [ -119.466228890999943, 49.006384233000041 ], [ -119.466244802999938, 49.006564486000038 ], [ -119.466276599999972, 49.008076513000056 ], [ -119.466262247999936, 49.008341397 ], [ -119.466257836999972, 49.008422709000087 ], [ -119.466250692999893, 49.008554095000072 ], [ -119.46615780399999, 49.008887576000106 ], [ -119.46607662599996, 49.009179203000038 ], [ -119.466061805, 49.009207111000144 ], [ -119.46594481699999, 49.009427790000039 ], [ -119.46551854799999, 49.010231851000093 ], [ -119.465261708999947, 49.010716309000031 ], [ -119.4674542, 49.011193707000068 ], [ -119.468029804, 49.011215305000064 ], [ -119.470353991999943, 49.010939305000143 ], [ -119.473523098999934, 49.010562987000164 ], [ -119.47364618499995, 49.011005394000037 ], [ -119.474417822999953, 49.013750641000023 ], [ -119.474528975999959, 49.014146092000047 ], [ -119.47454267599997, 49.014586293000022 ], [ -119.474372896999938, 49.015582291000079 ], [ -119.474095806999955, 49.017118794000069 ], [ -119.474032003999952, 49.017544397000158 ], [ -119.474070995999952, 49.017922009000074 ], [ -119.474228204999974, 49.018248091000089 ], [ -119.474338697999954, 49.018422353000091 ], [ -119.47466697099999, 49.018940142000048 ], [ -119.475010003999927, 49.019481188000107 ], [ -119.475199589999988, 49.019780186000098 ], [ -119.475316279999973, 49.020053095000037 ], [ -119.475354627999963, 49.020258898000058 ], [ -119.475336473999931, 49.020661898000128 ], [ -119.475090910999938, 49.022042097000089 ], [ -119.478777903999969, 49.021987302000092 ], [ -119.479212190999974, 49.022000200000022 ], [ -119.48023206699996, 49.02188254400005 ], [ -119.480231936999985, 49.021934100000081 ], [ -119.480226909999899, 49.023684981000052 ], [ -119.480153309999977, 49.023916487000065 ], [ -119.479927866999958, 49.024035297000111 ], [ -119.479834894999954, 49.024084291000044 ], [ -119.479524009999963, 49.024120511000014 ], [ -119.477512401999959, 49.024161371000041 ], [ -119.474737872999953, 49.024217686000064 ], [ -119.47442605699996, 49.024221293000053 ], [ -119.474619629999964, 49.02414175300008 ], [ -119.4747471579999, 49.024004864000084 ], [ -119.474757489999945, 49.02372333000006 ], [ -119.474759299999931, 49.023673785 ], [ -119.474676888999952, 49.023332393000075 ], [ -119.474457501999964, 49.022941088000067 ], [ -119.474008491999925, 49.022475206000109 ], [ -119.473967744999982, 49.022446963000085 ], [ -119.473753645999977, 49.022298556000131 ], [ -119.47365286199999, 49.02222868900003 ] ], [ [ -119.47021323899996, 49.01369843600002 ], [ -119.470190431999967, 49.013237785000165 ], [ -119.468293812999917, 49.013122073000041 ], [ -119.468288979999912, 49.013156516000052 ], [ -119.466951818999959, 49.013074916000072 ], [ -119.466933840999943, 49.013203020000084 ], [ -119.468996235999953, 49.013328871000077 ], [ -119.468955155999964, 49.013621686000086 ], [ -119.47021323899996, 49.01369843600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "132", "sL_BldgLoss": "132", "sL_StrLoss": "132", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AA4CADCE1CD45DC00E66346EC1804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.31478720199999, 49.005001748000019 ], [ -119.31552857099993, 49.004986864000031 ], [ -119.315578606999935, 49.006065455000098 ], [ -119.315168734999958, 49.006073684000086 ], [ -119.31518124199999, 49.00634333100006 ], [ -119.314771366999977, 49.006351559000088 ], [ -119.31478387199999, 49.006621207000116 ], [ -119.312734482999986, 49.006662324000089 ], [ -119.312713573999972, 49.006211071000081 ], [ -119.312697000999975, 49.005853380000048 ], [ -119.313188702000019, 49.005843518000091 ], [ -119.313516743999926, 49.005836938000101 ], [ -119.313506557999958, 49.005617202000096 ], [ -119.31350424599999, 49.005567290000037 ], [ -119.313601462999912, 49.005565339000029 ], [ -119.313914113999942, 49.005559068000117 ], [ -119.313906671999987, 49.005398551000084 ], [ -119.313901612999942, 49.005289419000114 ], [ -119.314114175999975, 49.005285154000013 ], [ -119.3143114799999, 49.005281195000094 ], [ -119.314307558999957, 49.005196641000076 ], [ -119.314298978999958, 49.005011547000088 ], [ -119.31478720199999, 49.005001748000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157724750", "BldgCostT": "104465000", "sL_LossRatio": "0.990221687508148", "sL_AssetLoss": "18224.00339", "sL_BldgLoss": "18045.80339", "sL_StrLoss": "17981.50339", "sL_NStrLoss": "64.3", "sL_ContLoss": "178.2", "geom_point": "0101000020E6100000AA69CD4572DB5DC0E102F9A78E824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.425304882999981, 49.035575969000071 ], [ -119.42552451399996, 49.034021702000089 ], [ -119.424857924999969, 49.033980778000036 ], [ -119.424664021999973, 49.035352851000056 ], [ -119.42287736599999, 49.035243140000027 ], [ -119.419223905999914, 49.03501870100007 ], [ -119.419349990999976, 49.034127254000033 ], [ -119.418711047999963, 49.034087989000056 ], [ -119.419215598999941, 49.030520734000078 ], [ -119.419218206999929, 49.030502291000083 ], [ -119.420573008999924, 49.030585542000068 ], [ -119.420640966999926, 49.030104922000056 ], [ -119.42528997699999, 49.030390467000117 ], [ -119.425404995999912, 49.029576430000105 ], [ -119.426175351999973, 49.029623726000118 ], [ -119.426301011999939, 49.028734242000034 ], [ -119.424821006999977, 49.028643373000108 ], [ -119.424855064999988, 49.028402343000067 ], [ -119.41951545799995, 49.028074327000134 ], [ -119.419574561999966, 49.027656380000053 ], [ -119.417928137, 49.027555184000043 ], [ -119.418435283999969, 49.023969453000035 ], [ -119.421410158999947, 49.024152283000056 ], [ -119.42151748699996, 49.0233930220001 ], [ -119.423225170999956, 49.023497935000186 ], [ -119.423246963999958, 49.023343716000085 ], [ -119.41967508, 49.02312424300009 ], [ -119.420182045, 49.019538479000069 ], [ -119.420570931999961, 49.019562380000082 ], [ -119.420881630999943, 49.017364389000051 ], [ -119.422451520999971, 49.017460860000057 ], [ -119.42263232, 49.016181425000049 ], [ -119.423933757999976, 49.016261382000032 ], [ -119.424292379999898, 49.013722855000132 ], [ -119.424587150000022, 49.013740963000053 ], [ -119.42509093399994, 49.010174263000096 ], [ -119.427769893999965, 49.010338795000095 ], [ -119.427780464999927, 49.010263922000085 ], [ -119.425613513999963, 49.010130841000063 ], [ -119.425798817999961, 49.008818672000075 ], [ -119.424293655999918, 49.008726208000034 ], [ -119.42438298499999, 49.008093778000088 ], [ -119.424346098999962, 49.008091512000064 ], [ -119.424852542999972, 49.00450564100008 ], [ -119.426693751999949, 49.00461874700008 ], [ -119.426759381999972, 49.004153883000029 ], [ -119.426975227999947, 49.004167141000039 ], [ -119.427106360999943, 49.003238247000091 ], [ -119.426180475999942, 49.003181375000054 ], [ -119.426620156999959, 49.000067027000057 ], [ -119.431523598999931, 49.00006429200009 ], [ -119.432103769999941, 49.000063949000022 ], [ -119.432103419999947, 49.000066431000079 ], [ -119.430643404999955, 49.00006618500003 ], [ -119.430647991999962, 49.000373603000057 ], [ -119.430512009999987, 49.000672690000016 ], [ -119.430716505999953, 49.000929103000104 ], [ -119.431555698, 49.001631190000055 ], [ -119.432317112, 49.002092698000119 ], [ -119.43340239599992, 49.003014112000081 ], [ -119.433702818999961, 49.003313203000033 ], [ -119.434613803999952, 49.003771808000153 ], [ -119.435733402999972, 49.003999699000104 ], [ -119.436970998999968, 49.004126398000039 ], [ -119.437539005999966, 49.004294497000039 ], [ -119.437780181000022, 49.004451194000048 ], [ -119.437835192999913, 49.005331312000102 ], [ -119.438846315999953, 49.005849699000066 ], [ -119.439075190999972, 49.006052014000083 ], [ -119.439044891999984, 49.006295511000097 ], [ -119.438753085999934, 49.006734200000047 ], [ -119.438862498999981, 49.007604390000104 ], [ -119.438964312999985, 49.007728305000093 ], [ -119.439412907999937, 49.007943305000012 ], [ -119.439968216999915, 49.008094299000057 ], [ -119.440278191999965, 49.008312211000032 ], [ -119.439734822999966, 49.008917504000095 ], [ -119.438791790999957, 49.009512805000092 ], [ -119.438239890999938, 49.009974200000066 ], [ -119.438166195999898, 49.010111012000088 ], [ -119.438185392999969, 49.010313790000026 ], [ -119.437698175999969, 49.010294896000104 ], [ -119.437338448999981, 49.010680417000025 ], [ -119.437212094999936, 49.010815793000106 ], [ -119.437144770999964, 49.010968274000064 ], [ -119.436120471999914, 49.011080265 ], [ -119.435078006999973, 49.011171387000104 ], [ -119.435145106999954, 49.012882171000079 ], [ -119.434592265999925, 49.013010200000096 ], [ -119.43452096599999, 49.012590178000096 ], [ -119.433975187999962, 49.012707136000117 ], [ -119.434091383999942, 49.013084900000052 ], [ -119.433855604999977, 49.013581407000039 ], [ -119.433438702, 49.013849517000018 ], [ -119.433635002999921, 49.014965610000061 ], [ -119.432797243, 49.014945875000095 ], [ -119.432525545000018, 49.014908394000095 ], [ -119.432293115999983, 49.014806445000048 ], [ -119.432243349999979, 49.014762253000036 ], [ -119.432107335999916, 49.014641405000106 ], [ -119.43320010399998, 49.016931987000056 ], [ -119.433339874999959, 49.016922400000048 ], [ -119.433253205999961, 49.019149535000089 ], [ -119.43322862, 49.019256529000124 ], [ -119.433075184999907, 49.019925271000062 ], [ -119.433126632999972, 49.020221401000072 ], [ -119.433230124999952, 49.020411323000062 ], [ -119.433244605999946, 49.020600279000099 ], [ -119.433187452999945, 49.02081106600005 ], [ -119.432906223999936, 49.02121571700016 ], [ -119.433430000999962, 49.022408791000046 ], [ -119.434051809999971, 49.022810044000067 ], [ -119.434109977999967, 49.022866403000094 ], [ -119.436753642999975, 49.022349077000101 ], [ -119.437033593999956, 49.022682601000049 ], [ -119.43740012799995, 49.022981080000108 ], [ -119.437461964999926, 49.023031453000044 ], [ -119.437584700999963, 49.023131409000037 ], [ -119.438273803999948, 49.023496483000052 ], [ -119.43907838, 49.02384741500002 ], [ -119.43629516099999, 49.027910773000087 ], [ -119.435351111999964, 49.027882700000077 ], [ -119.435175604999955, 49.029534699000038 ], [ -119.43517928699994, 49.029907499000103 ], [ -119.436150933999983, 49.03331412100006 ], [ -119.436449384999918, 49.034360324000083 ], [ -119.436458688999934, 49.034392996000129 ], [ -119.436582611999938, 49.03550819700007 ], [ -119.436671292999961, 49.035754095000101 ], [ -119.436770085999939, 49.035916649000093 ], [ -119.43681404199998, 49.035988988000057 ], [ -119.433625806999942, 49.035793557000048 ], [ -119.43362002299996, 49.035834543000092 ], [ -119.430780322999937, 49.035660396000026 ], [ -119.430745106999908, 49.035909809000039 ], [ -119.430121567999919, 49.035871560000047 ], [ -119.425304882999981, 49.035575969000071 ] ], [ [ -119.43487021299994, 49.029876228000106 ], [ -119.434964508999897, 49.029207869000018 ], [ -119.4348349159999, 49.029199924000046 ], [ -119.434775233000011, 49.029622949000029 ], [ -119.434891162999975, 49.029630056000045 ], [ -119.434856548999932, 49.029875390000065 ], [ -119.43487021299994, 49.029876228000106 ] ], [ [ -119.436721528999968, 49.025698767000101 ], [ -119.436732224999929, 49.025622929000043 ], [ -119.435576478999948, 49.025552078000096 ], [ -119.435594327999979, 49.025425547000019 ], [ -119.434958467999977, 49.02538656100004 ], [ -119.434991641999886, 49.025151406000127 ], [ -119.434408465999965, 49.025115647000028 ], [ -119.434450732999935, 49.024816056000091 ], [ -119.433908969999976, 49.024782835000046 ], [ -119.434042061999932, 49.023839510000066 ], [ -119.432933299999917, 49.023771509000028 ], [ -119.432937618999972, 49.02374091100009 ], [ -119.432224653000034, 49.023697178000113 ], [ -119.432188336999943, 49.023954513000021 ], [ -119.430990354999921, 49.023881019000029 ], [ -119.430740422999961, 49.025651611000086 ], [ -119.432219902999975, 49.025742373000043 ], [ -119.432264626999967, 49.025425475000077 ], [ -119.436721528999968, 49.025698767000101 ] ], [ [ -119.434825044999911, 49.009648315000085 ], [ -119.435017788, 49.008281521000079 ], [ -119.434865855999959, 49.008272202000114 ], [ -119.434985479999938, 49.007423887000058 ], [ -119.434457396999932, 49.007391493000107 ], [ -119.43448516699999, 49.007194574000025 ], [ -119.431837010999971, 49.007032091000042 ], [ -119.431690074999906, 49.008073573000019 ], [ -119.431624794999976, 49.008069567000106 ], [ -119.43157482499997, 49.008423739000072 ], [ -119.433507667999947, 49.00854234100013 ], [ -119.433505642999933, 49.008556696000028 ], [ -119.43414504799992, 49.008595923000016 ], [ -119.434003727999936, 49.009597932000112 ], [ -119.434825044999911, 49.009648315000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9171333", "BldgCostT": "5853333", "sL_LossRatio": "1", "sL_AssetLoss": "570", "sL_BldgLoss": "570", "sL_StrLoss": "570", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BAE4B0E271D75DC01107640AB1834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.363913329999932, 49.03045535900003 ], [ -119.363811084999952, 49.028298261000025 ], [ -119.363401045, 49.02830666500008 ], [ -119.363337156999989, 49.026958478000076 ], [ -119.363747188, 49.026950075000023 ], [ -119.363708851999931, 49.026141163000041 ], [ -119.365348943999962, 49.026107539000058 ], [ -119.36538730599996, 49.026916449000026 ], [ -119.364977277999941, 49.026924858000072 ], [ -119.365015635999967, 49.027733770000026 ], [ -119.365835705999984, 49.027716950000048 ], [ -119.365861288999952, 49.028256223000042 ], [ -119.366271327999968, 49.02824781200011 ], [ -119.366296915, 49.028787085000069 ], [ -119.366706958999941, 49.028778671000047 ], [ -119.366642983, 49.027430487000046 ], [ -119.367053014999954, 49.027422073000061 ], [ -119.3670402179999, 49.027152437000041 ], [ -119.367450248999944, 49.027144021 ], [ -119.367437448999965, 49.026874384000038 ], [ -119.369077560000022, 49.026840706000087 ], [ -119.369090369999952, 49.027110342000114 ], [ -119.369500398, 49.02710191900006 ], [ -119.369615697999905, 49.029528644000031 ], [ -119.368385548999925, 49.029553911000065 ], [ -119.368411158999962, 49.030093184000037 ], [ -119.368001104999948, 49.030101603000091 ], [ -119.368013908999941, 49.030371240000122 ], [ -119.368423964999963, 49.030362820000043 ], [ -119.368462383999926, 49.03117172900005 ], [ -119.366822129999946, 49.031205401000079 ], [ -119.366809331999889, 49.030935765000066 ], [ -119.366399269999974, 49.030944178 ], [ -119.366373680999956, 49.030404906000058 ], [ -119.365963623999946, 49.030413318000058 ], [ -119.365950829999932, 49.030143681000013 ], [ -119.365540774999914, 49.030152092000073 ], [ -119.365566355999974, 49.030691366000056 ], [ -119.365156294999963, 49.030699775000123 ], [ -119.365181870999891, 49.031239050000067 ], [ -119.363541611999921, 49.0312726740001 ], [ -119.363503271999932, 49.030463762000096 ], [ -119.363913329999932, 49.03045535900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.6", "sL_BldgLoss": "60.6", "sL_StrLoss": "60.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD6730BA7AD75DC036ACA92C8A824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.36631287799996, 49.02047261000012 ], [ -119.366297588999899, 49.020150292000096 ], [ -119.36610159599995, 49.020154313000035 ], [ -119.365887615999952, 49.020158702000046 ], [ -119.365870926999918, 49.019806796000118 ], [ -119.365836466999937, 49.019080154000036 ], [ -119.366000953999915, 49.019076779000045 ], [ -119.366871023000016, 49.019058925000053 ], [ -119.367476322999934, 49.019046501000041 ], [ -119.367501914999963, 49.019585775000017 ], [ -119.367854672999911, 49.019578534000104 ], [ -119.367911882999977, 49.01957735900011 ], [ -119.367927016999971, 49.019896200000069 ], [ -119.367949020999944, 49.020359756000026 ], [ -119.367950277999967, 49.020386269000021 ], [ -119.367938136, 49.02038651800008 ], [ -119.367540303999988, 49.020394686000039 ], [ -119.367553099999924, 49.020664322000101 ], [ -119.366567461999963, 49.020684553000066 ], [ -119.366323167999951, 49.020689566000094 ], [ -119.36631287799996, 49.02047261000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "63.1", "sL_BldgLoss": "63.1", "sL_StrLoss": "63.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F1471DF0FD65DC045362593B2804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.344294553999973, 49.006025086000136 ], [ -119.344281889999976, 49.005755445000084 ], [ -119.34387202799995, 49.005763775000062 ], [ -119.343834041999912, 49.004954849000072 ], [ -119.345473461, 49.004921518000074 ], [ -119.345524144999985, 49.006000084000036 ], [ -119.344294553999973, 49.006025086000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7517500", "BldgCostT": "4975000", "sL_LossRatio": "0.972152079768648", "sL_AssetLoss": "578.140122", "sL_BldgLoss": "562.040122", "sL_StrLoss": "556.200122", "sL_NStrLoss": "5.84", "sL_ContLoss": "16.1", "geom_point": "0101000020E61000008EC51D0C48DA5DC0E58F50D079824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.409709871999922, 49.017476252000094 ], [ -119.413620244999919, 49.017716915000094 ], [ -119.413112793999943, 49.021302659000078 ], [ -119.412345706999986, 49.021255461000045 ], [ -119.407674399999976, 49.020967917000036 ], [ -119.408182263999919, 49.017382198000085 ], [ -119.409709871999922, 49.017476252000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15055577", "BldgCostT": "9407409", "sL_LossRatio": "1", "sL_AssetLoss": "913.8", "sL_BldgLoss": "913.8", "sL_StrLoss": "913.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5E604E9F9D45DC09771D73BF1804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.329318227999977, 49.010377041000091 ], [ -119.329293056999958, 49.009837752000074 ], [ -119.328883157999954, 49.009846030000098 ], [ -119.328870573999964, 49.009576385000067 ], [ -119.32723098299999, 49.009609483000105 ], [ -119.32718359499999, 49.008593227000084 ], [ -119.323482871999914, 49.008362417000043 ], [ -119.323888382999911, 49.005534907000033 ], [ -119.323997065999961, 49.004777027000081 ], [ -119.32943297099996, 49.00511601500007 ], [ -119.329259055999955, 49.006329751000067 ], [ -119.330768945000017, 49.006299244000097 ], [ -119.330778611999946, 49.006506249000076 ], [ -119.330781535999989, 49.006568889000093 ], [ -119.33134443199999, 49.006557511000054 ], [ -119.331601280999948, 49.006552319000065 ], [ -119.331603109999904, 49.006591434000072 ], [ -119.331626473999975, 49.007091607000049 ], [ -119.332036350999928, 49.007083320000099 ], [ -119.33207414899999, 49.007892252000048 ], [ -119.331664264999944, 49.007900541000055 ], [ -119.331676862000023, 49.00817018500009 ], [ -119.331266978, 49.008178471000065 ], [ -119.331292167999948, 49.008717761000042 ], [ -119.330472388999965, 49.008734330000081 ], [ -119.330484980999941, 49.009003974000052 ], [ -119.330075087999944, 49.009012257000059 ], [ -119.330087675999891, 49.009281902000062 ], [ -119.33172725299994, 49.009248763000059 ], [ -119.331777647999942, 49.010327339000092 ], [ -119.329318227999977, 49.010377041000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8727250", "BldgCostT": "5755000", "sL_LossRatio": "1", "sL_AssetLoss": "1136.4", "sL_BldgLoss": "1136.4", "sL_StrLoss": "1136.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012822C7681D65DC0253BA19DF4804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.34939060100001, 49.009699973000082 ], [ -119.349377906999962, 49.00943033300009 ], [ -119.348968018000022, 49.009438682000066 ], [ -119.348942634999929, 49.008899400000054 ], [ -119.348532748999943, 49.008907748000119 ], [ -119.348494682999927, 49.008098824000029 ], [ -119.348084803999939, 49.008107171000049 ], [ -119.348059430999953, 49.007567889000015 ], [ -119.347649556999954, 49.007576234000119 ], [ -119.34762419, 49.007036950000085 ], [ -119.347214317999899, 49.007045293000019 ], [ -119.347201637999916, 49.006775653000091 ], [ -119.346381898999937, 49.006792334000124 ], [ -119.346331194999934, 49.005713767000053 ], [ -119.34756077699997, 49.005688744000039 ], [ -119.347510049999926, 49.004610178000107 ], [ -119.348739603, 49.004585142000046 ], [ -119.348752290999968, 49.004854784000031 ], [ -119.349162142999901, 49.004846436000086 ], [ -119.349212906999938, 49.005924999000058 ], [ -119.351262212999956, 49.005883235000098 ], [ -119.351274913999944, 49.006152876000066 ], [ -119.352094637999969, 49.006136160000082 ], [ -119.352120053999954, 49.006675441000041 ], [ -119.352529919999981, 49.006667081000039 ], [ -119.35250450199996, 49.006127799000097 ], [ -119.353734087999953, 49.006102710000093 ], [ -119.35374680399994, 49.006372349000102 ], [ -119.354156667999945, 49.00636398400011 ], [ -119.354194822999972, 49.007172904000043 ], [ -119.354604692, 49.007164537000079 ], [ -119.35463013399999, 49.007703816000038 ], [ -119.355449882999963, 49.007687075000021 ], [ -119.355475333999891, 49.008226356000065 ], [ -119.358667351999983, 49.008161113000014 ], [ -119.358754356999924, 49.008159334000062 ], [ -119.358792589999922, 49.008968252000024 ], [ -119.357972821999908, 49.008985016000096 ], [ -119.357985561999939, 49.009254656000074 ], [ -119.354296576999943, 49.009330023000118 ], [ -119.354283855999896, 49.009060384000051 ], [ -119.353054199, 49.009085481000042 ], [ -119.353041485999924, 49.008815841000093 ], [ -119.352631602, 49.008824203000131 ], [ -119.352618889999931, 49.008554563000075 ], [ -119.351799125999932, 49.008571283000066 ], [ -119.351786418999936, 49.008301643000102 ], [ -119.351376538999958, 49.008310001000048 ], [ -119.35133842899991, 49.007501079000086 ], [ -119.350928554999939, 49.007509436000085 ], [ -119.350903151999944, 49.006970154000108 ], [ -119.349673543999941, 49.006995213000046 ], [ -119.349711626000015, 49.007804136000047 ], [ -119.35012150299994, 49.007795784000095 ], [ -119.350172290999964, 49.008874347000088 ], [ -119.35058217699995, 49.008865994000139 ], [ -119.350620277999909, 49.009674917 ], [ -119.349959482999978, 49.009688384000064 ], [ -119.34939060100001, 49.009699973000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8514583", "BldgCostT": "5608333", "sL_LossRatio": "0.999991410372115", "sL_AssetLoss": "1362.1079", "sL_BldgLoss": "1362.0962", "sL_StrLoss": "1362", "sL_NStrLoss": "0.0962", "sL_ContLoss": "0.0117", "geom_point": "0101000020E610000085375253DED45DC016269D92BD814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.323148011999962, 49.015429589000121 ], [ -119.323206386999956, 49.015022658000092 ], [ -119.323040132999921, 49.01501228700004 ], [ -119.32355443199998, 49.011426937000039 ], [ -119.328991108999958, 49.01176594500005 ], [ -119.328932787999989, 49.012172880000051 ], [ -119.32909903299999, 49.012183242000084 ], [ -119.328585151999945, 49.015768615000056 ], [ -119.323148011999962, 49.015429589000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2F3558F07D75DC046BFAE0DB2834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.359364402999958, 49.029738808000054 ], [ -119.359351647, 49.029469169000045 ], [ -119.358941594999948, 49.029477557000071 ], [ -119.358865072999961, 49.027859728000053 ], [ -119.360095187999917, 49.027834562000066 ], [ -119.36013347, 49.028643476000113 ], [ -119.360953557999963, 49.028626692000046 ], [ -119.361004618999971, 49.029705242000141 ], [ -119.359364402999958, 49.029738808000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E06ACA8C3D45DC03EBFDEB364804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.323675594999941, 49.003743399000037 ], [ -119.323663043999929, 49.003473753 ], [ -119.32325319399996, 49.003482011000081 ], [ -119.323240301999945, 49.003204988000043 ], [ -119.323204846999928, 49.002443190000058 ], [ -119.323202996999953, 49.002403426000015 ], [ -119.323343780999977, 49.002400589000096 ], [ -119.324745576999959, 49.002372339000061 ], [ -119.324842355999934, 49.00237038800006 ], [ -119.324844030999955, 49.002406381000107 ], [ -119.324854912999967, 49.002640034000109 ], [ -119.325371679999975, 49.002629615000025 ], [ -119.325674595999914, 49.002623506000091 ], [ -119.325682654999952, 49.002796469000039 ], [ -119.325714536999897, 49.00348073900004 ], [ -119.32572484899994, 49.003702089000043 ], [ -119.32551622899993, 49.003706297000058 ], [ -119.324332125999945, 49.003730168000033 ], [ -119.323675594999941, 49.003743399000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7638333", "BldgCostT": "5058333", "sL_LossRatio": "0.972847168347556", "sL_AssetLoss": "592.94", "sL_BldgLoss": "576.84", "sL_StrLoss": "571", "sL_NStrLoss": "5.84", "sL_ContLoss": "16.1", "geom_point": "0101000020E6100000E767D1D8EAD85DC0CBB2710E68844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.386868861999972, 49.032464854000068 ], [ -119.39230844799998, 49.032800643000073 ], [ -119.391799194999948, 49.036386201000042 ], [ -119.38635919499994, 49.036050388 ], [ -119.386868861999972, 49.032464854000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6807000", "BldgCostT": "4485000", "sL_LossRatio": "0.958671920941613", "sL_AssetLoss": "500.870122", "sL_BldgLoss": "480.170122", "sL_StrLoss": "472.700122", "sL_NStrLoss": "7.47", "sL_ContLoss": "20.7", "geom_point": "0101000020E6100000907BC22BECD65DC0F1B11E6B84814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.355345425999957, 49.014166800000019 ], [ -119.355309484999964, 49.013405395000099 ], [ -119.355307241999981, 49.013357881000054 ], [ -119.355717162999909, 49.013349508000054 ], [ -119.355704433999989, 49.013079868000069 ], [ -119.35652427, 49.013063120000083 ], [ -119.356511536999946, 49.012793480000092 ], [ -119.356921452000023, 49.012785104000038 ], [ -119.356908715999978, 49.012515464000074 ], [ -119.357318627999916, 49.012507086000056 ], [ -119.357280415999981, 49.011698168000045 ], [ -119.354820972999974, 49.011748414000067 ], [ -119.354808250999952, 49.011478774000096 ], [ -119.353168625999942, 49.011512242000059 ], [ -119.353155910999973, 49.011242602000095 ], [ -119.352746006999936, 49.011250965000045 ], [ -119.352716035999919, 49.010615257000076 ], [ -119.352707870999936, 49.010442045000012 ], [ -119.35516725199993, 49.010391844000068 ], [ -119.35517997700002, 49.010661485000107 ], [ -119.358049263999987, 49.010602851000073 ], [ -119.358036523999942, 49.010333212000084 ], [ -119.362955250999946, 49.010232533000092 ], [ -119.363006321999976, 49.01131108700006 ], [ -119.362596418999956, 49.011319484000047 ], [ -119.362609186, 49.011589123000107 ], [ -119.360969568999906, 49.011622701000107 ], [ -119.360956811999955, 49.011353063000122 ], [ -119.358907295999956, 49.011395003000104 ], [ -119.358983774999984, 49.013012837000097 ], [ -119.35939369099998, 49.013004451000036 ], [ -119.359380942999906, 49.012734813000129 ], [ -119.359790856, 49.012726425000096 ], [ -119.359778104999947, 49.012456786000016 ], [ -119.361417751999952, 49.012423224000031 ], [ -119.361456032999939, 49.013232140000078 ], [ -119.361046114999965, 49.013240533000065 ], [ -119.36105887399998, 49.013510170000146 ], [ -119.360648952999924, 49.013518563000105 ], [ -119.360661708999913, 49.013788201000104 ], [ -119.357792244999985, 49.01384690200004 ], [ -119.357779504999954, 49.013577263000066 ], [ -119.357369580999901, 49.013585643000042 ], [ -119.357382320999989, 49.013855283000041 ], [ -119.356972397, 49.01386366 ], [ -119.35698513399997, 49.014133299000079 ], [ -119.356615928999929, 49.014140845000036 ], [ -119.355345425999957, 49.014166800000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7825833", "BldgCostT": "5133333", "sL_LossRatio": "1", "sL_AssetLoss": "1079", "sL_BldgLoss": "1079", "sL_StrLoss": "1079", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0F5F74A07DA5DC0F258D878D5804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.404230806999962, 49.004554267000088 ], [ -119.409667264999925, 49.004889192000071 ], [ -119.409159650999982, 49.008474989000099 ], [ -119.403722777999974, 49.008140040000129 ], [ -119.404230806999962, 49.004554267000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "64.4", "sL_BldgLoss": "64.4", "sL_StrLoss": "64.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F650B52FAD65DC0A376434314824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.35963596199997, 49.018127586000041 ], [ -119.359584951999977, 49.01704903100002 ], [ -119.359175002999947, 49.0170574180001 ], [ -119.359162251999948, 49.016787779 ], [ -119.358752303999935, 49.016796165000152 ], [ -119.358726809999936, 49.016256887000097 ], [ -119.357087033999946, 49.016290414000117 ], [ -119.357023344000012, 49.01494221800008 ], [ -119.357859097999921, 49.014925133000126 ], [ -119.359482940999925, 49.01489192200016 ], [ -119.359512570999982, 49.015518499000088 ], [ -119.359521192999921, 49.015700838000093 ], [ -119.359931131999929, 49.015692450000088 ], [ -119.359956639999922, 49.016231728000029 ], [ -119.360366582000012, 49.016223338000103 ], [ -119.360404850999899, 49.017032254000142 ], [ -119.360814799999943, 49.017023863000112 ], [ -119.360865835999903, 49.018102415000065 ], [ -119.35963596199997, 49.018127586000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000022E4F6AAD9D95DC02D01DF0A34824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.403536613999961, 49.01797249800012 ], [ -119.403526425999985, 49.017761015000062 ], [ -119.403116481999945, 49.017769558000062 ], [ -119.403051545999944, 49.016421408000042 ], [ -119.403325953999939, 49.016415689000063 ], [ -119.404281340999944, 49.016395775000021 ], [ -119.404294334999946, 49.016665405000076 ], [ -119.404704267999946, 49.016656858000069 ], [ -119.404769248000022, 49.018005006000067 ], [ -119.403539413999923, 49.018030644000071 ], [ -119.403536613999961, 49.01797249800012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "584205760", "BldgCostT": "375559445", "sL_LossRatio": "0.940631579659217", "sL_AssetLoss": "25996.0462", "sL_BldgLoss": "24452.702002", "sL_StrLoss": "23876.586812", "sL_NStrLoss": "576.11519", "sL_ContLoss": "1543.344198", "geom_point": "0101000020E6100000D3292C44C9DD5DC045866FA379824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.466506202999966, 49.026485084000079 ], [ -119.467225016999976, 49.026388296000107 ], [ -119.46770399799999, 49.026369713000086 ], [ -119.467980810999975, 49.026445189000071 ], [ -119.46823778699999, 49.026394008000118 ], [ -119.468663288999963, 49.026133308000063 ], [ -119.469035101999935, 49.025647691000096 ], [ -119.469372611999944, 49.024994001000088 ], [ -119.469225810999959, 49.024771809000057 ], [ -119.469216084999971, 49.024321700000058 ], [ -119.469112303999935, 49.024143686000052 ], [ -119.467674791999954, 49.023320504000054 ], [ -119.466725810999918, 49.023061887000097 ], [ -119.465508290999963, 49.022917492000026 ], [ -119.464732800999954, 49.022195391000011 ], [ -119.464458089999951, 49.021869204000055 ], [ -119.464540109999959, 49.021057382000123 ], [ -119.464221095999974, 49.020425111000073 ], [ -119.463761986999913, 49.019984991000065 ], [ -119.462816714999974, 49.019383993000119 ], [ -119.46242219799997, 49.018871298000128 ], [ -119.46263910499998, 49.018012506000048 ], [ -119.462001410999932, 49.017008409000063 ], [ -119.46202019899998, 49.016270704000085 ], [ -119.461063902999982, 49.015473093000033 ], [ -119.460154074999977, 49.015191583000039 ], [ -119.460350727, 49.014575522000065 ], [ -119.460142908999956, 49.014537591000121 ], [ -119.459986903999891, 49.014476592000094 ], [ -119.459925105999929, 49.01441848900005 ], [ -119.459871713999945, 49.014291395000107 ], [ -119.460885207, 49.01407479100002 ], [ -119.461008603999915, 49.014026288000096 ], [ -119.4611055, 49.013951712000079 ], [ -119.461404396999967, 49.013580299000125 ], [ -119.461615697999918, 49.013364389000067 ], [ -119.461833812999942, 49.013276486000109 ], [ -119.463231356999955, 49.012990212000012 ], [ -119.46444949499994, 49.012741799000061 ], [ -119.464486315999935, 49.013114803000086 ], [ -119.464564041999935, 49.013390223000087 ], [ -119.464575113999928, 49.013429408000128 ], [ -119.464723618999926, 49.013784404000099 ], [ -119.464838863999915, 49.014059915000118 ], [ -119.46546615199999, 49.01555916800001 ], [ -119.465771191999949, 49.016288217000117 ], [ -119.466224962999931, 49.017352980000098 ], [ -119.46638434599997, 49.017566199000093 ], [ -119.466620291999931, 49.017790377000054 ], [ -119.466957473999955, 49.018055090000075 ], [ -119.46733423799995, 49.018272454000041 ], [ -119.46824532499997, 49.018620112000065 ], [ -119.468613858999944, 49.018808666000041 ], [ -119.468686717999958, 49.018845955000131 ], [ -119.469507307999905, 49.019369807000032 ], [ -119.469155806999964, 49.019685620000111 ], [ -119.46885004399995, 49.020320682000019 ], [ -119.468791215999971, 49.020612761000031 ], [ -119.46886122599993, 49.021003114000081 ], [ -119.468983527999967, 49.021294500000074 ], [ -119.469142899999966, 49.021577876000059 ], [ -119.469567409999954, 49.022332597000144 ], [ -119.469634415999934, 49.022451700000069 ], [ -119.469702496999929, 49.022572515000022 ], [ -119.470112005999965, 49.023299077000068 ], [ -119.470209021999935, 49.023536472000053 ], [ -119.470249510999963, 49.023736975000084 ], [ -119.470232449999912, 49.023975580000119 ], [ -119.470008055999955, 49.024743985 ], [ -119.469742205999921, 49.025225890000051 ], [ -119.469452572999927, 49.025750810000041 ], [ -119.469253692999942, 49.0259954630001 ], [ -119.469205905999971, 49.02608671500014 ], [ -119.469075681999982, 49.026335423000063 ], [ -119.468419806999933, 49.02677733900002 ], [ -119.467630164999946, 49.027155938000107 ], [ -119.467371761999971, 49.027213355000065 ], [ -119.46632771400003, 49.027445379000099 ], [ -119.465967407999983, 49.027549956000094 ], [ -119.465839360999937, 49.027613184000117 ], [ -119.465690359999911, 49.02768676200003 ], [ -119.465426149999956, 49.027878586000057 ], [ -119.465232062, 49.028020497000085 ], [ -119.464863038999951, 49.028186909000098 ], [ -119.463220208999928, 49.028555901000097 ], [ -119.462706501999932, 49.028199303000108 ], [ -119.463042703999974, 49.028142906 ], [ -119.463127491999927, 49.028109221000086 ], [ -119.463128564999948, 49.028109197000141 ], [ -119.463128544999933, 49.028108802000105 ], [ -119.463845454999941, 49.02782398300004 ], [ -119.463935261999936, 49.027822064000119 ], [ -119.463933625999985, 49.027788953000091 ], [ -119.464563392999949, 49.027538741000114 ], [ -119.464573588999912, 49.027534694000082 ], [ -119.466506202999966, 49.026485084000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134904995", "BldgCostT": "83329077", "sL_LossRatio": "0.988192094444025", "sL_AssetLoss": "9524.8739217", "sL_BldgLoss": "9412.40511", "sL_StrLoss": "9367.102327", "sL_NStrLoss": "45.302783", "sL_ContLoss": "112.4688117", "geom_point": "0101000020E61000009C9A4EFC22DE5DC0ADA72DE02B834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.469285198999927, 49.030462100000072 ], [ -119.46920609299994, 49.030439195000028 ], [ -119.468622388999918, 49.030444315000075 ], [ -119.468592285999989, 49.03033670000012 ], [ -119.468538674999976, 49.03016162799999 ], [ -119.468530608999984, 49.030105266000064 ], [ -119.468404758999966, 49.029226301000072 ], [ -119.468344746999918, 49.028807116000038 ], [ -119.46834171099999, 49.02858452000001 ], [ -119.468393630999941, 49.028380631000111 ], [ -119.468842527999968, 49.027244347000114 ], [ -119.468930809999947, 49.026830211000096 ], [ -119.469075681999982, 49.026335423000063 ], [ -119.469205905999971, 49.02608671500014 ], [ -119.469253692999942, 49.0259954630001 ], [ -119.469452572999927, 49.025750810000041 ], [ -119.469742205999921, 49.025225890000051 ], [ -119.470008055999955, 49.024743985 ], [ -119.470232449999912, 49.023975580000119 ], [ -119.470249510999963, 49.023736975000084 ], [ -119.470209021999935, 49.023536472000053 ], [ -119.470112005999965, 49.023299077000068 ], [ -119.469702496999929, 49.022572515000022 ], [ -119.469634415999934, 49.022451700000069 ], [ -119.469567409999954, 49.022332597000144 ], [ -119.469142899999966, 49.021577876000059 ], [ -119.468983527999967, 49.021294500000074 ], [ -119.46886122599993, 49.021003114000081 ], [ -119.468791215999971, 49.020612761000031 ], [ -119.46885004399995, 49.020320682000019 ], [ -119.469155806999964, 49.019685620000111 ], [ -119.469507307999905, 49.019369807000032 ], [ -119.4698666, 49.019604191000035 ], [ -119.470740908, 49.020210275000117 ], [ -119.47365286199999, 49.02222868900003 ], [ -119.473753645999977, 49.022298556000131 ], [ -119.473967744999982, 49.022446963000085 ], [ -119.474008491999925, 49.022475206000109 ], [ -119.474457501999964, 49.022941088000067 ], [ -119.474676888999952, 49.023332393000075 ], [ -119.474759299999931, 49.023673785 ], [ -119.474757489999945, 49.02372333000006 ], [ -119.4747471579999, 49.024004864000084 ], [ -119.474619629999964, 49.02414175300008 ], [ -119.47442605699996, 49.024221293000053 ], [ -119.473941160999971, 49.024409033000055 ], [ -119.473876172999894, 49.024434196000101 ], [ -119.472838122999988, 49.024836077000039 ], [ -119.472525083000022, 49.024938092000106 ], [ -119.472431675999943, 49.024968516000051 ], [ -119.47215550199995, 49.025058501000089 ], [ -119.471825528999915, 49.025113395000048 ], [ -119.470686282999964, 49.026556602000021 ], [ -119.470529205999981, 49.026796592000089 ], [ -119.470242005, 49.027582897000094 ], [ -119.470159615999975, 49.027903943000098 ], [ -119.470034577999968, 49.028390937000083 ], [ -119.46999354899999, 49.028550871000149 ], [ -119.469990880999944, 49.028561200000077 ], [ -119.470008604999975, 49.02882539900002 ], [ -119.470109106999985, 49.029067486000017 ], [ -119.470268662999914, 49.029330177000141 ], [ -119.470593724999958, 49.029865275000084 ], [ -119.471255607, 49.030954803000093 ], [ -119.471295015999971, 49.031143497000073 ], [ -119.470569, 49.031478903000092 ], [ -119.470262309999953, 49.031582302000047 ], [ -119.469850315999949, 49.031683806000053 ], [ -119.469694805999922, 49.03169689900006 ], [ -119.469340306999968, 49.030508884000078 ], [ -119.469285198999927, 49.030462100000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153841417", "BldgCostT": "101181667", "sL_LossRatio": "0.993660910356647", "sL_AssetLoss": "19037.553622", "sL_BldgLoss": "18916.872863", "sL_StrLoss": "18865.911713", "sL_NStrLoss": "50.96115", "sL_ContLoss": "120.680759", "geom_point": "0101000020E610000043587D435BDE5DC002A3C32AFB834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.470792901999943, 49.03276651300002 ], [ -119.470230713999911, 49.032687084000095 ], [ -119.469801698999987, 49.032665397000166 ], [ -119.4691171899999, 49.032685200000074 ], [ -119.469079873999959, 49.032188291000068 ], [ -119.469004510999952, 49.031748799000042 ], [ -119.469694805999922, 49.03169689900006 ], [ -119.469850315999949, 49.031683806000053 ], [ -119.470262309999953, 49.031582302000047 ], [ -119.470569, 49.031478903000092 ], [ -119.471295015999971, 49.031143497000073 ], [ -119.471255607, 49.030954803000093 ], [ -119.470593724999958, 49.029865275000084 ], [ -119.470268662999914, 49.029330177000141 ], [ -119.470109106999985, 49.029067486000017 ], [ -119.470008604999975, 49.02882539900002 ], [ -119.469990880999944, 49.028561200000077 ], [ -119.46999354899999, 49.028550871000149 ], [ -119.470034577999968, 49.028390937000083 ], [ -119.470159615999975, 49.027903943000098 ], [ -119.470242005, 49.027582897000094 ], [ -119.470529205999981, 49.026796592000089 ], [ -119.470686282999964, 49.026556602000021 ], [ -119.471825528999915, 49.025113395000048 ], [ -119.47215550199995, 49.025058501000089 ], [ -119.472431675999943, 49.024968516000051 ], [ -119.472525083000022, 49.024938092000106 ], [ -119.472838122999988, 49.024836077000039 ], [ -119.473876172999894, 49.024434196000101 ], [ -119.473941160999971, 49.024409033000055 ], [ -119.47442605699996, 49.024221293000053 ], [ -119.47461143299999, 49.024317570000022 ], [ -119.474638249999913, 49.024371500000015 ], [ -119.474691676, 49.024478887000072 ], [ -119.474638795999951, 49.024777100000101 ], [ -119.474524834999926, 49.02542012300011 ], [ -119.474462045999985, 49.025774117000019 ], [ -119.474298972999946, 49.026154771000087 ], [ -119.473668656999934, 49.026952692000059 ], [ -119.473501037999966, 49.027248097000076 ], [ -119.47342781699993, 49.027525720000042 ], [ -119.473429190999965, 49.027887485000115 ], [ -119.473478497, 49.028240390000043 ], [ -119.473553736999918, 49.028890738 ], [ -119.473704808999955, 49.030196302000029 ], [ -119.474567954999927, 49.030105638000116 ], [ -119.47590115, 49.029965599000043 ], [ -119.476648145999931, 49.029887094000081 ], [ -119.477762706999911, 49.029769999000052 ], [ -119.47873443499999, 49.032284187000108 ], [ -119.479205375, 49.033502644000095 ], [ -119.479260935999946, 49.033646319000127 ], [ -119.479506826999923, 49.03428246800015 ], [ -119.479600715999979, 49.034525397000102 ], [ -119.479622991999918, 49.034583012000077 ], [ -119.479769279999957, 49.034925665000038 ], [ -119.479934871999916, 49.035313527000021 ], [ -119.47941872699991, 49.035521700000096 ], [ -119.478776003999954, 49.035654345000083 ], [ -119.478333210999949, 49.035676619000107 ], [ -119.477840736999923, 49.035701377000066 ], [ -119.477427189999958, 49.035813634000128 ], [ -119.477294279999938, 49.035924184000052 ], [ -119.47728744799997, 49.035929891000109 ], [ -119.477228223999958, 49.036146903000052 ], [ -119.47703030699995, 49.036021011000102 ], [ -119.476835266999927, 49.035896935000061 ], [ -119.476440419999975, 49.035825004000039 ], [ -119.476082187999921, 49.035759728000052 ], [ -119.475724516, 49.035669215000041 ], [ -119.474864212999989, 49.035279571000032 ], [ -119.474142217999884, 49.034969754000073 ], [ -119.473909466999885, 49.03486878000006 ], [ -119.473660374999952, 49.03471798600004 ], [ -119.47351174399995, 49.03456617000009 ], [ -119.473240437999976, 49.034289151000046 ], [ -119.472800259999985, 49.033792485000106 ], [ -119.472618709999892, 49.033587606000104 ], [ -119.472384020999968, 49.033423189000096 ], [ -119.472221519999906, 49.033309304000021 ], [ -119.472123130999947, 49.033259424000036 ], [ -119.472001974999898, 49.03319796100002 ], [ -119.471702883999967, 49.033046290000115 ], [ -119.471530974999965, 49.032980157000082 ], [ -119.471357108999925, 49.032913263000118 ], [ -119.471303386999978, 49.032892592000032 ], [ -119.470792901999943, 49.03276651300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "222", "sL_BldgLoss": "222", "sL_StrLoss": "222", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B099C3298DF5DC05E8C9A123D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.491453408999988, 49.040259524000113 ], [ -119.495650142999949, 49.040514448000067 ], [ -119.494456704999948, 49.041532662000087 ], [ -119.494107678999953, 49.04180483800009 ], [ -119.493845395999983, 49.04200314300008 ], [ -119.493621108999946, 49.041816698000112 ], [ -119.492439835, 49.040968149000044 ], [ -119.492322058999918, 49.040883542000067 ], [ -119.491453408999988, 49.040259524000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "65", "sL_BldgLoss": "65", "sL_StrLoss": "65", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E3055BC53DF5DC00F49884D3F824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488844049999926, 49.017030893000083 ], [ -119.490073778999928, 49.017004346000135 ], [ -119.490127609999902, 49.018082797000098 ], [ -119.488897852, 49.018109344000059 ], [ -119.488844049999926, 49.017030893000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261133415", "BldgCostT": "169545221", "sL_LossRatio": "0.986275806196736", "sL_AssetLoss": "25503.43554", "sL_BldgLoss": "25153.421448", "sL_StrLoss": "25026.014548", "sL_NStrLoss": "127.4069", "sL_ContLoss": "350.014092", "geom_point": "0101000020E61000002153A12E10DF5DC09EFC58B9FE824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.500690057, 49.041450200000106 ], [ -119.498732874999973, 49.040294429000021 ], [ -119.497063512999901, 49.039308518000084 ], [ -119.496154010999987, 49.040084542000024 ], [ -119.496153, 49.040084563000029 ], [ -119.49611249899999, 49.039275733000068 ], [ -119.494882223999937, 49.039302354000085 ], [ -119.494868730999968, 49.03903274200011 ], [ -119.49445864099998, 49.039041613000116 ], [ -119.49444515, 49.038772001000105 ], [ -119.494035063999988, 49.038780871 ], [ -119.494021574999977, 49.038511261000068 ], [ -119.493611488999974, 49.03852012800008 ], [ -119.493598003999963, 49.038250517000044 ], [ -119.493187919999954, 49.038259382000064 ], [ -119.493174435999961, 49.037989771000092 ], [ -119.492764353999945, 49.037998635000051 ], [ -119.492750873999967, 49.037729025 ], [ -119.491930713999949, 49.037746749000043 ], [ -119.49191723699991, 49.037477137000089 ], [ -119.491507159999969, 49.037485997000068 ], [ -119.49149368599997, 49.037216385000107 ], [ -119.491083610000018, 49.037225243000059 ], [ -119.491070138999987, 49.036955633000026 ], [ -119.490660064999958, 49.03696448900007 ], [ -119.490646595999948, 49.036694877000038 ], [ -119.49023652399994, 49.036703732000028 ], [ -119.49016919099995, 49.035355674000108 ], [ -119.489389732999911, 49.035372501000062 ], [ -119.489309033999959, 49.035949218000013 ], [ -119.48948576199993, 49.03595996100006 ], [ -119.488983944999944, 49.039545959000044 ], [ -119.488578821999951, 49.039521332000064 ], [ -119.488382621999946, 49.03941115000007 ], [ -119.48834043, 49.039346944000052 ], [ -119.488219693999937, 49.039163395000081 ], [ -119.488365349999981, 49.038697660000082 ], [ -119.488503002999977, 49.03825759100004 ], [ -119.488461596999983, 49.037979895 ], [ -119.48798340899998, 49.037692204000038 ], [ -119.486985201999943, 49.037435900000091 ], [ -119.486981592999882, 49.037429381000074 ], [ -119.486976917999954, 49.037420921000084 ], [ -119.486698288999975, 49.036920313000039 ], [ -119.486732023999963, 49.036818201000109 ], [ -119.486854123999976, 49.036448906000032 ], [ -119.48682215799991, 49.03638526500005 ], [ -119.486778280999928, 49.036297897000068 ], [ -119.486252098999969, 49.035903393000119 ], [ -119.485755612999938, 49.035302392000055 ], [ -119.485096794999919, 49.035033302000052 ], [ -119.484835081999975, 49.034926391000042 ], [ -119.484551407999959, 49.034734098000094 ], [ -119.484015148999944, 49.033852542000069 ], [ -119.483833042999919, 49.033653755000039 ], [ -119.483831973999941, 49.033652607000086 ], [ -119.483759846999931, 49.033665649000042 ], [ -119.48368498499994, 49.033679213000092 ], [ -119.483095818999956, 49.033851305000034 ], [ -119.482357218999979, 49.034130101000102 ], [ -119.481916788999939, 49.034345262000109 ], [ -119.481633540999923, 49.034483641000087 ], [ -119.48142040299993, 49.034587788000067 ], [ -119.481392371999974, 49.034601487000032 ], [ -119.48009853699989, 49.035233587000029 ], [ -119.481145781999899, 49.036311541000018 ], [ -119.478583612999927, 49.03740324000006 ], [ -119.477967582999923, 49.036949599000138 ], [ -119.477581938999919, 49.036587286000028 ], [ -119.477572392999932, 49.036578330000061 ], [ -119.477228223999958, 49.036146903000052 ], [ -119.47728744799997, 49.035929891000109 ], [ -119.477294279999938, 49.035924184000052 ], [ -119.477427189999958, 49.035813634000128 ], [ -119.477840736999923, 49.035701377000066 ], [ -119.478333210999949, 49.035676619000107 ], [ -119.478776003999954, 49.035654345000083 ], [ -119.47941872699991, 49.035521700000096 ], [ -119.479934871999916, 49.035313527000021 ], [ -119.479769279999957, 49.034925665000038 ], [ -119.479622991999918, 49.034583012000077 ], [ -119.479600715999979, 49.034525397000102 ], [ -119.479506826999923, 49.03428246800015 ], [ -119.479260935999946, 49.033646319000127 ], [ -119.479205375, 49.033502644000095 ], [ -119.47873443499999, 49.032284187000108 ], [ -119.477762706999911, 49.029769999000052 ], [ -119.476648145999931, 49.029887094000081 ], [ -119.47590115, 49.029965599000043 ], [ -119.474567954999927, 49.030105638000116 ], [ -119.473704808999955, 49.030196302000029 ], [ -119.473553736999918, 49.028890738 ], [ -119.473478497, 49.028240390000043 ], [ -119.473429190999965, 49.027887485000115 ], [ -119.47342781699993, 49.027525720000042 ], [ -119.473501037999966, 49.027248097000076 ], [ -119.473668656999934, 49.026952692000059 ], [ -119.474298972999946, 49.026154771000087 ], [ -119.474462045999985, 49.025774117000019 ], [ -119.474524834999926, 49.02542012300011 ], [ -119.474638795999951, 49.024777100000101 ], [ -119.474691676, 49.024478887000072 ], [ -119.474638249999913, 49.024371500000015 ], [ -119.47461143299999, 49.024317570000022 ], [ -119.47442605699996, 49.024221293000053 ], [ -119.474737872999953, 49.024217686000064 ], [ -119.477512401999959, 49.024161371000041 ], [ -119.479524009999963, 49.024120511000014 ], [ -119.479834894999954, 49.024084291000044 ], [ -119.479927866999958, 49.024035297000111 ], [ -119.480153309999977, 49.023916487000065 ], [ -119.480226909999899, 49.023684981000052 ], [ -119.480231936999985, 49.021934100000081 ], [ -119.48023206699996, 49.02188254400005 ], [ -119.48023433099992, 49.02108372 ], [ -119.480236589999933, 49.020296681000048 ], [ -119.480237756999969, 49.019891029000135 ], [ -119.480238399999962, 49.019667582000046 ], [ -119.480245155999953, 49.019509306000046 ], [ -119.480278312999971, 49.018735988000046 ], [ -119.480413690999939, 49.018190884000056 ], [ -119.480469539999945, 49.018053634000069 ], [ -119.480491842999939, 49.017998717000054 ], [ -119.48072944899998, 49.01741448100006 ], [ -119.480804787999929, 49.017229203000099 ], [ -119.48083160199999, 49.017018393000058 ], [ -119.478466678999936, 49.015471954000056 ], [ -119.478026498999952, 49.01525529900011 ], [ -119.477806747999949, 49.015112659000039 ], [ -119.477646662999987, 49.01484050000002 ], [ -119.477521481999943, 49.014399222000094 ], [ -119.47746352299994, 49.013368713000119 ], [ -119.477303481999982, 49.01272683800007 ], [ -119.476907769999954, 49.010832438000115 ], [ -119.476805986999949, 49.010597591000078 ], [ -119.476170724999946, 49.009649498000087 ], [ -119.47558997699997, 49.008636450000068 ], [ -119.475210193999899, 49.007851939000012 ], [ -119.475373644999976, 49.00670227300008 ], [ -119.475373407999925, 49.006700958000152 ], [ -119.476470888, 49.006496263000038 ], [ -119.47631847199996, 49.007584035000086 ], [ -119.476474786999987, 49.00758067900005 ], [ -119.476506085, 49.008211364000026 ], [ -119.476507964999882, 49.008249250000084 ], [ -119.476680617999961, 49.008259773000127 ], [ -119.479659153999989, 49.008441263000101 ], [ -119.479614818999934, 49.008757821000032 ], [ -119.483188564999949, 49.00897546700007 ], [ -119.483139401999949, 49.009326681000076 ], [ -119.485994992999963, 49.00926515400009 ], [ -119.486008423999962, 49.009534769000012 ], [ -119.486418273999931, 49.009525932000088 ], [ -119.486431707999984, 49.00979554600012 ], [ -119.486841559999931, 49.0097867080001 ], [ -119.486854995999963, 49.01005632200004 ], [ -119.488904262999981, 49.010012110000041 ], [ -119.488890814999976, 49.009742496000108 ], [ -119.489943263999962, 49.009719777000043 ], [ -119.490142256, 49.010182706000087 ], [ -119.49059183199995, 49.010941634000133 ], [ -119.490610955999955, 49.011324778000066 ], [ -119.490816180999943, 49.011320345000065 ], [ -119.491039890999915, 49.011697972000043 ], [ -119.491047736999974, 49.011855150000059 ], [ -119.49113192899992, 49.011853331000033 ], [ -119.491445441999986, 49.012382533000142 ], [ -119.491488058999948, 49.012456196000123 ], [ -119.49149799199995, 49.012655133000095 ], [ -119.491088116999933, 49.012663988000142 ], [ -119.49114196, 49.013742438000079 ], [ -119.492371607999956, 49.013715868000126 ], [ -119.49239854299995, 49.014255092000056 ], [ -119.492808430000011, 49.01424623300003 ], [ -119.49284884199993, 49.015055069 ], [ -119.493258734999955, 49.015046207000061 ], [ -119.493272207999965, 49.015315819000179 ], [ -119.494091998999949, 49.015298092000116 ], [ -119.494105474999927, 49.015567704000077 ], [ -119.494341261999963, 49.015562604000088 ], [ -119.494527065999975, 49.015792713000103 ], [ -119.494569294999934, 49.016637284000055 ], [ -119.494979199999989, 49.016628417000057 ], [ -119.495006166999957, 49.017167640000132 ], [ -119.495416076999916, 49.017158771000041 ], [ -119.495456533999985, 49.017967605000145 ], [ -119.495866451999959, 49.017958734000025 ], [ -119.495879584999912, 49.018221247000035 ], [ -119.494902520999958, 49.019014537000068 ], [ -119.493685773999985, 49.020855395000083 ], [ -119.494559070999941, 49.022845278 ], [ -119.49364954, 49.022864949000081 ], [ -119.493689979999886, 49.023673783000028 ], [ -119.492460088999962, 49.02370037100011 ], [ -119.492446613999903, 49.023430759000128 ], [ -119.490806764999945, 49.023466189000033 ], [ -119.490847157999951, 49.024275025000115 ], [ -119.489617248999963, 49.024301584000092 ], [ -119.489603791, 49.024031971000028 ], [ -119.489193823999955, 49.024040820000074 ], [ -119.489126548999977, 49.022692759000066 ], [ -119.489536505999979, 49.022683909000136 ], [ -119.489509591999933, 49.022144684000118 ], [ -119.489099639999935, 49.022153533000036 ], [ -119.489059277999957, 49.021344696000085 ], [ -119.489469225, 49.021335847000138 ], [ -119.489401947999966, 49.019987784000158 ], [ -119.489811881999984, 49.019978935000097 ], [ -119.489784969999945, 49.019439710000071 ], [ -119.490604828999949, 49.019422006000092 ], [ -119.490577907999935, 49.018882781000109 ], [ -119.491397757999948, 49.018865072000075 ], [ -119.49138429199995, 49.018595460000071 ], [ -119.492204137999948, 49.018577746000041 ], [ -119.492119255999981, 49.016878598000083 ], [ -119.492109857999978, 49.016690461000131 ], [ -119.491904686999987, 49.016694894000068 ], [ -119.490880137999952, 49.016717029000134 ], [ -119.490866675999939, 49.016447416000062 ], [ -119.490046865999958, 49.01646512100006 ], [ -119.49001995399999, 49.015925896000041 ], [ -119.488790249, 49.015952442000078 ], [ -119.4887768, 49.015682829000099 ], [ -119.487137201999957, 49.015718202000073 ], [ -119.48715064, 49.015987816000063 ], [ -119.485101125999947, 49.016032 ], [ -119.485127985999952, 49.016571227000078 ], [ -119.484718077999929, 49.016580060000074 ], [ -119.484731505999946, 49.016849674000134 ], [ -119.484321595999972, 49.016858505000116 ], [ -119.484388726999967, 49.018206573 ], [ -119.485208568999909, 49.01818890800007 ], [ -119.48519513799999, 49.017919295000105 ], [ -119.48642489299999, 49.017892786000097 ], [ -119.486398019999967, 49.01735356000006 ], [ -119.487627759999924, 49.017327040000033 ], [ -119.48766809299994, 49.018135879000042 ], [ -119.486848252999948, 49.018153561000091 ], [ -119.486902013999952, 49.019232014000046 ], [ -119.486082154999977, 49.019249692000074 ], [ -119.486109027999987, 49.019788917000035 ], [ -119.484469291, 49.01982425500006 ], [ -119.484523003999939, 49.020902709000104 ], [ -119.483293173, 49.020929198000033 ], [ -119.483333438999921, 49.021738040000052 ], [ -119.482923488999958, 49.021746867000054 ], [ -119.482936909999935, 49.02201648100008 ], [ -119.483756815999968, 49.021998825 ], [ -119.483783666999912, 49.022538052000158 ], [ -119.485013537000015, 49.02251155700003 ], [ -119.485040401, 49.02305078400007 ], [ -119.487500163999968, 49.02299775300002 ], [ -119.487567396999964, 49.024345816000157 ], [ -119.486747453999968, 49.024363501000067 ], [ -119.486774339999968, 49.024902727000075 ], [ -119.48554441099999, 49.024929240000041 ], [ -119.48555784699991, 49.02519885400006 ], [ -119.486377803999972, 49.025181179000093 ], [ -119.486445010999901, 49.026529244000116 ], [ -119.486855, 49.026520403000113 ], [ -119.486895332999936, 49.027329242000107 ], [ -119.485255348999956, 49.027364595000101 ], [ -119.485201606999965, 49.026286141000085 ], [ -119.484791618999921, 49.026294977000042 ], [ -119.484831917999955, 49.027103816000086 ], [ -119.483601933999964, 49.027130310000111 ], [ -119.48354822899995, 49.026051857000013 ], [ -119.482728256999962, 49.026069512000063 ], [ -119.482647729999954, 49.024451830000061 ], [ -119.483467676999908, 49.024434176000121 ], [ -119.483454251999916, 49.024164562000102 ], [ -119.48386422399993, 49.02415573200004 ], [ -119.483850796999931, 49.023886119000032 ], [ -119.483030858999896, 49.023903776000083 ], [ -119.483017436999887, 49.023634163000061 ], [ -119.482197503999942, 49.023651813000065 ], [ -119.482192327999883, 49.023547798000095 ], [ -119.482078648999945, 49.02354087900013 ], [ -119.481793403999944, 49.025577567000035 ], [ -119.481038561999924, 49.025531614000059 ], [ -119.480908012999947, 49.026463586 ], [ -119.480578789999981, 49.026443541000035 ], [ -119.480432212999943, 49.027489830000029 ], [ -119.481840294999984, 49.027575552000037 ], [ -119.481780231999977, 49.028004372000098 ], [ -119.482653597999956, 49.028057530000126 ], [ -119.482278087999973, 49.030738640000088 ], [ -119.482989359999948, 49.030781928000103 ], [ -119.482881184999954, 49.031554317000037 ], [ -119.48564962599994, 49.031722757000075 ], [ -119.485476759999955, 49.032957518000096 ], [ -119.485886431999944, 49.032982438000083 ], [ -119.486213485999912, 49.030646131000012 ], [ -119.49165357, 49.030976889000037 ], [ -119.491384540999931, 49.032900303000041 ], [ -119.491688165000014, 49.032893745000052 ], [ -119.491715110999962, 49.033432968000071 ], [ -119.492535199999935, 49.033415246000054 ], [ -119.492589113999941, 49.034493691000108 ], [ -119.492179059999984, 49.03450255300001 ], [ -119.492192537, 49.034772165000092 ], [ -119.491782481999934, 49.034781024000075 ], [ -119.491795956999965, 49.035050635000069 ], [ -119.492616070999986, 49.03503291400002 ], [ -119.492629550999965, 49.035302525000056 ], [ -119.493039610999972, 49.03529366200015 ], [ -119.493026127999954, 49.035024050000089 ], [ -119.494256298999929, 49.034997452 ], [ -119.494269786999965, 49.035267063000084 ], [ -119.49591001899995, 49.035231577000062 ], [ -119.49592351699998, 49.035501187000058 ], [ -119.496333575999927, 49.035492312000024 ], [ -119.496347076999911, 49.035761923000081 ], [ -119.497577260999918, 49.035735289000058 ], [ -119.497590768999913, 49.036004898000094 ], [ -119.498820958999914, 49.035978252000106 ], [ -119.49883447099991, 49.036247862000039 ], [ -119.499244534999917, 49.036238976000043 ], [ -119.499249603999914, 49.036340081000098 ], [ -119.499285083999951, 49.037047805000078 ], [ -119.497644794999985, 49.037083340000066 ], [ -119.497631288999969, 49.036813730000056 ], [ -119.496811146999974, 49.03683148800009 ], [ -119.496824649999937, 49.037101098000086 ], [ -119.497234722999977, 49.037092220000019 ], [ -119.497248227999975, 49.037361829000105 ], [ -119.497658302999938, 49.037352949000066 ], [ -119.497671809999957, 49.037622560000109 ], [ -119.498491963999982, 49.03760479500005 ], [ -119.498518989999923, 49.038144015000057 ], [ -119.498929068999928, 49.038135130000093 ], [ -119.498942584999924, 49.038404740000061 ], [ -119.499352666999926, 49.038395853000068 ], [ -119.499366184999971, 49.038665464000097 ], [ -119.499776269999984, 49.038656575000061 ], [ -119.499789788999948, 49.038926185000022 ], [ -119.50019987599994, 49.038917296000072 ], [ -119.500239787999959, 49.039713062000054 ], [ -119.50025396599996, 49.039995733000048 ], [ -119.500664060999966, 49.039986843000065 ], [ -119.500677585999981, 49.040256451000076 ], [ -119.501087683000023, 49.040247559000079 ], [ -119.501101211999952, 49.040517169000083 ], [ -119.501511310999902, 49.040508274000032 ], [ -119.501524840999977, 49.040777883000075 ], [ -119.50193494299999, 49.04076898800006 ], [ -119.501948474999935, 49.041038597000096 ], [ -119.502358578, 49.041029700000145 ], [ -119.502372112999979, 49.041299309000088 ], [ -119.502782217999979, 49.041290410000023 ], [ -119.502795756999959, 49.041560018000084 ], [ -119.503205862999948, 49.041551118000079 ], [ -119.50322178899998, 49.041868244000064 ], [ -119.503273563999969, 49.042899161000051 ], [ -119.50315241499996, 49.04290179000008 ], [ -119.502421688999931, 49.042472690000089 ], [ -119.500690057, 49.041450200000106 ] ], [ [ -119.489346954999945, 49.035331035000084 ], [ -119.489320392999929, 49.034799057000093 ], [ -119.489308684999969, 49.034564543000094 ], [ -119.488934758999946, 49.034572614000069 ], [ -119.488898630999927, 49.034573393000052 ], [ -119.488897499999894, 49.034550735000053 ], [ -119.488891247999916, 49.034425507000044 ], [ -119.488660332, 49.034411469000062 ], [ -119.486977236000016, 49.034309127000022 ], [ -119.486855395999953, 49.035179543000098 ], [ -119.489346954999945, 49.035331035000084 ] ], [ [ -119.478066940999966, 49.014857237000072 ], [ -119.478065782, 49.014833880000069 ], [ -119.478035896, 49.014834522000065 ], [ -119.47803300299995, 49.014855168000025 ], [ -119.478066940999966, 49.014857237000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.961663104185341", "sL_AssetLoss": "0.14503", "sL_BldgLoss": "0.13947", "sL_StrLoss": "0.00447", "sL_NStrLoss": "0.135", "sL_ContLoss": "0.00556", "geom_point": "0101000020E6100000A10CD96939E65DC0DDC2469BDBB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.594982274999907, 49.452396115000106 ], [ -119.596951408999985, 49.45222830400008 ], [ -119.597285204999977, 49.451779692000081 ], [ -119.597583491999956, 49.451682793000074 ], [ -119.597710810999956, 49.451734090000059 ], [ -119.597321880999942, 49.451931991000016 ], [ -119.597219207999942, 49.452347909000075 ], [ -119.596837636999936, 49.452238017000106 ], [ -119.594982274999907, 49.452396115000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259417719", "BldgCostT": "179790412", "sL_LossRatio": "0.982828170906666", "sL_AssetLoss": "9359.003", "sL_BldgLoss": "9198.2918", "sL_StrLoss": "8851.5274", "sL_NStrLoss": "346.7644", "sL_ContLoss": "160.7112", "geom_point": "0101000020E6100000300CBB9CD0E55DC05A8E04D84FBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.592517324999932, 49.459305299000043 ], [ -119.590933300999922, 49.459080407000052 ], [ -119.59005169799994, 49.459149303000089 ], [ -119.589981679999966, 49.458797306000086 ], [ -119.589996308999972, 49.458686179000061 ], [ -119.590051700999965, 49.458518789000095 ], [ -119.590061201999958, 49.458437609000093 ], [ -119.590037477999957, 49.45824921400007 ], [ -119.590014717999935, 49.458078809000071 ], [ -119.589979098999933, 49.457926671000067 ], [ -119.589961038999945, 49.457846109000094 ], [ -119.58988074699991, 49.45763199400011 ], [ -119.589847968999976, 49.457533755000057 ], [ -119.589839910999927, 49.457381002000091 ], [ -119.589847518999932, 49.457263889000032 ], [ -119.589857521999974, 49.457191699000134 ], [ -119.589942649999927, 49.456973891000075 ], [ -119.589967850999983, 49.456928341000086 ], [ -119.590002039999931, 49.456764010000086 ], [ -119.590022394999934, 49.456664008000139 ], [ -119.590000567999979, 49.456649428000098 ], [ -119.589754952999968, 49.456555255000055 ], [ -119.58946264699999, 49.456507819000073 ], [ -119.589142777999939, 49.456461 ], [ -119.588865652999971, 49.456440237000052 ], [ -119.588575256999889, 49.456428755000132 ], [ -119.587942986000016, 49.456442903000038 ], [ -119.587941184000016, 49.456442940000059 ], [ -119.58773486299999, 49.456456548000105 ], [ -119.587556153999955, 49.45646955100009 ], [ -119.587230407999982, 49.456487587000026 ], [ -119.587132743999959, 49.456400675000019 ], [ -119.587112981999923, 49.456312539000024 ], [ -119.587093221999964, 49.456224405000057 ], [ -119.587073513999925, 49.456136282000102 ], [ -119.587053782999959, 49.456048250000038 ], [ -119.587034057999972, 49.455960104000077 ], [ -119.587018893999954, 49.455892546000051 ], [ -119.587016054999978, 49.455871748000057 ], [ -119.587003812999953, 49.455782495000093 ], [ -119.586991536999989, 49.455693252000039 ], [ -119.586979293999946, 49.455603998000058 ], [ -119.586967015999903, 49.455514756000106 ], [ -119.586954810999956, 49.455425491 ], [ -119.58694562, 49.455358675000085 ], [ -119.58687431899989, 49.455315312000067 ], [ -119.586815881999968, 49.455253623000011 ], [ -119.586770269999974, 49.455173676000129 ], [ -119.58673416399999, 49.455012552000042 ], [ -119.586733219999957, 49.454994586000026 ], [ -119.586667664999965, 49.454798144000094 ], [ -119.586650593999963, 49.454735536000058 ], [ -119.586585038999914, 49.454539095000072 ], [ -119.586520431999986, 49.45436062100007 ], [ -119.586505716999909, 49.454342945000036 ], [ -119.586457715999956, 49.454218077000121 ], [ -119.586407396999945, 49.454048267000147 ], [ -119.586340935999942, 49.453833849 ], [ -119.586287728999963, 49.453610128000086 ], [ -119.586268310999969, 49.453386710000075 ], [ -119.586277656999954, 49.453281224000087 ], [ -119.586283603999931, 49.453146594000017 ], [ -119.586303927999907, 49.453024890000052 ], [ -119.58877651899995, 49.452924704000075 ], [ -119.594073456999951, 49.4524735520001 ], [ -119.593846094999918, 49.453255843000179 ], [ -119.593892580999949, 49.45342054900005 ], [ -119.593970711999958, 49.453816525000079 ], [ -119.593981170999939, 49.45386955900004 ], [ -119.593813315999967, 49.454112639000094 ], [ -119.593708347999907, 49.454185564000085 ], [ -119.593465837999958, 49.454278395000088 ], [ -119.593366983999928, 49.454297654000058 ], [ -119.593091194999914, 49.454292284000125 ], [ -119.592349493999905, 49.454221094000083 ], [ -119.592201204999952, 49.454249968000099 ], [ -119.592019855, 49.454324054000146 ], [ -119.591876584999937, 49.454397562000075 ], [ -119.591672115999955, 49.454578991000083 ], [ -119.591603776999989, 49.454713551000054 ], [ -119.591597824999951, 49.454962310000035 ], [ -119.591707356999933, 49.455235139000116 ], [ -119.591810246999913, 49.455401511000048 ], [ -119.591982770999962, 49.455557218000116 ], [ -119.592082089999963, 49.455609191000079 ], [ -119.5921733099999, 49.455581437000014 ], [ -119.592367162999935, 49.455522464000069 ], [ -119.592519662999933, 49.455276954000098 ], [ -119.592769614999966, 49.455047276000059 ], [ -119.592905504999976, 49.455008540000101 ], [ -119.593001963999939, 49.455006590000089 ], [ -119.593633441999913, 49.455209704000033 ], [ -119.593808724999988, 49.455395344000088 ], [ -119.594065752999967, 49.455561243000091 ], [ -119.594611689999951, 49.455712089000045 ], [ -119.594881082999933, 49.455850672000096 ], [ -119.595112440999969, 49.456053153 ], [ -119.595218857999953, 49.456240288000075 ], [ -119.595177814999943, 49.456511947000109 ], [ -119.595077948999958, 49.456712752000037 ], [ -119.595027024999951, 49.456795130000081 ], [ -119.594722631999986, 49.457045833000102 ], [ -119.594249051999952, 49.457228472000061 ], [ -119.594008939, 49.457387459000053 ], [ -119.593906153999953, 49.457534213000081 ], [ -119.593861868999966, 49.457742780000125 ], [ -119.593921575999957, 49.45809334400014 ], [ -119.594003689999937, 49.458231110000092 ], [ -119.594265619999959, 49.458172245000135 ], [ -119.593943338999964, 49.458588519000074 ], [ -119.593672031999972, 49.458693381000039 ], [ -119.59341482, 49.458792798000111 ], [ -119.593197876999952, 49.458954539000011 ], [ -119.592517324999932, 49.459305299000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139764167", "BldgCostT": "90076667", "sL_LossRatio": "0.995979700434814", "sL_AssetLoss": "11093.700675", "sL_BldgLoss": "11049.100675", "sL_StrLoss": "11033.000675", "sL_NStrLoss": "16.1", "sL_ContLoss": "44.6", "geom_point": "0101000020E610000073ECC991C8E45DC0CC01376298B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.577235726999973, 49.45469296000006 ], [ -119.577062903999931, 49.454612219000119 ], [ -119.576768540999964, 49.454599270000081 ], [ -119.576086166999943, 49.45466894500003 ], [ -119.57591200499995, 49.454651453000075 ], [ -119.575557964999987, 49.454615904000043 ], [ -119.575335948999935, 49.454639756000091 ], [ -119.57420095699996, 49.455067418000112 ], [ -119.573993543999947, 49.455095747000072 ], [ -119.573823596999929, 49.455063972000062 ], [ -119.573387645999972, 49.454865502000054 ], [ -119.568587736999959, 49.454954816000104 ], [ -119.568522300999987, 49.451629063000112 ], [ -119.570197301999883, 49.451728667000054 ], [ -119.570237334999931, 49.45144172300018 ], [ -119.569295607999948, 49.451385725000115 ], [ -119.569378275999966, 49.450793255000065 ], [ -119.568504835999974, 49.450741310000097 ], [ -119.568433662999965, 49.447123198000092 ], [ -119.570119919, 49.447223484000091 ], [ -119.570193711999977, 49.446694497000102 ], [ -119.571377494999965, 49.446764884000046 ], [ -119.571454303999957, 49.446214167000065 ], [ -119.568412224999975, 49.44603326200005 ], [ -119.568341064999956, 49.442415125000061 ], [ -119.570020983999953, 49.442515046000047 ], [ -119.570317346, 49.440390283000042 ], [ -119.57052158499998, 49.440402429000073 ], [ -119.570597364999983, 49.439859088000041 ], [ -119.571955994999911, 49.439939876000082 ], [ -119.572087446999916, 49.438997120000117 ], [ -119.572922908999956, 49.439046791000052 ], [ -119.572931211999958, 49.438987238000024 ], [ -119.575202401999931, 49.43912223500007 ], [ -119.575257379, 49.438727738000125 ], [ -119.574694819999976, 49.438694305000077 ], [ -119.574742828999916, 49.438349850000122 ], [ -119.574686543, 49.438346505 ], [ -119.574725595999965, 49.43806630100007 ], [ -119.574658359999901, 49.43806230500013 ], [ -119.574693931999974, 49.437807081000045 ], [ -119.57452267299999, 49.437796902000095 ], [ -119.57456486699999, 49.437494161000075 ], [ -119.574324885999886, 49.437479898000085 ], [ -119.574373748999918, 49.437129307000106 ], [ -119.574095901999968, 49.437112792000079 ], [ -119.574117078000015, 49.43696086700001 ], [ -119.574058609999966, 49.43695739200016 ], [ -119.574086938999983, 49.436754144000112 ], [ -119.573941319999932, 49.436745489000018 ], [ -119.573960846999952, 49.436605386000117 ], [ -119.573927229999981, 49.436603388000073 ], [ -119.573959583999965, 49.436371264000137 ], [ -119.573899442999959, 49.436367689000051 ], [ -119.574348717999925, 49.433144148000082 ], [ -119.573698446999941, 49.433105491000028 ], [ -119.573729696, 49.432881291000051 ], [ -119.57367586099997, 49.432878091000099 ], [ -119.573912762, 49.431178310000064 ], [ -119.572516591999971, 49.43109529700012 ], [ -119.572164304999959, 49.433622377000084 ], [ -119.568163505999948, 49.433384398 ], [ -119.568092385999961, 49.429766194000088 ], [ -119.571445368999946, 49.429965668000179 ], [ -119.57153099699994, 49.429351470000078 ], [ -119.568080199999955, 49.42914617600006 ], [ -119.568058348999941, 49.428034307000125 ], [ -119.56800911499991, 49.42552794900012 ], [ -119.573064863999946, 49.42582871700008 ], [ -119.572975415999935, 49.426470524000109 ], [ -119.574177801999966, 49.426542019000117 ], [ -119.574193336999897, 49.426430532000055 ], [ -119.574590362, 49.426454136000068 ], [ -119.574692242999944, 49.426460193000047 ], [ -119.57477054, 49.425898244000066 ], [ -119.574861911, 49.425903675 ], [ -119.575102412, 49.426330501000074 ], [ -119.57559911599999, 49.426887301000107 ], [ -119.576608692999955, 49.427439895000063 ], [ -119.577570593999937, 49.427662111000146 ], [ -119.578023492999975, 49.427875697000026 ], [ -119.578406984999972, 49.428362795000041 ], [ -119.578658879000031, 49.428671897000108 ], [ -119.579016711999884, 49.429446592000033 ], [ -119.579205796999958, 49.430153007000101 ], [ -119.579199713999955, 49.430557502000063 ], [ -119.579074414, 49.430795396000086 ], [ -119.577663195999918, 49.431806513000119 ], [ -119.57775370399996, 49.432478798000034 ], [ -119.578182595999976, 49.433018608000047 ], [ -119.578163207999964, 49.433162410000058 ], [ -119.577874405999978, 49.433440089000037 ], [ -119.577691083999966, 49.433902991000082 ], [ -119.577776014999955, 49.434449902000082 ], [ -119.578630010999959, 49.435473899000087 ], [ -119.578994986999973, 49.436392498000025 ], [ -119.578855420999943, 49.437429305000116 ], [ -119.578515199999913, 49.43803180900008 ], [ -119.578753994999914, 49.439447391000051 ], [ -119.579591007999966, 49.440381702000082 ], [ -119.581006791, 49.441610800000042 ], [ -119.580960580999914, 49.442573600000067 ], [ -119.580790891000021, 49.442757301000029 ], [ -119.580711441999952, 49.442771839000038 ], [ -119.580394214999941, 49.442829891 ], [ -119.580342603999952, 49.443144708000041 ], [ -119.580622088999988, 49.443248907000083 ], [ -119.580777913999952, 49.443307002000076 ], [ -119.580692097999972, 49.444558896000053 ], [ -119.580937892999941, 49.444778214000074 ], [ -119.581617219999956, 49.445087303000058 ], [ -119.58210829599993, 49.445265286000108 ], [ -119.58212692099994, 49.446119803000094 ], [ -119.582455290999945, 49.446849016000066 ], [ -119.582142479999931, 49.447989794000108 ], [ -119.581480398999943, 49.449039504000062 ], [ -119.580997498999935, 49.449563586000068 ], [ -119.580866301999905, 49.450502104000122 ], [ -119.58085661299998, 49.450844002000089 ], [ -119.582403798999948, 49.450880991000062 ], [ -119.582380319999942, 49.451457802000043 ], [ -119.58228300799999, 49.451459209000134 ], [ -119.582229978999976, 49.45097499600007 ], [ -119.581060776999948, 49.451046193000089 ], [ -119.58108029899999, 49.451135901000065 ], [ -119.581302778999955, 49.451202894000126 ], [ -119.581338704999936, 49.451624396000113 ], [ -119.581221316999944, 49.451987601000106 ], [ -119.581588319, 49.452402007000032 ], [ -119.582462801999924, 49.452769510000053 ], [ -119.583826202999958, 49.452998794000067 ], [ -119.585787791999977, 49.453045796000026 ], [ -119.586303927999907, 49.453024890000052 ], [ -119.586283603999931, 49.453146594000017 ], [ -119.584332793999948, 49.453281015000051 ], [ -119.582640891999944, 49.453394686000131 ], [ -119.579306913999943, 49.453623705000091 ], [ -119.57907364799992, 49.454544739 ], [ -119.57883341199998, 49.45549341 ], [ -119.578783494, 49.455682904000064 ], [ -119.578352219999942, 49.455589530000054 ], [ -119.578266002999925, 49.455552762000146 ], [ -119.578152749000012, 49.45550447100009 ], [ -119.577990356999919, 49.455435238000057 ], [ -119.577758768999985, 49.455279650000058 ], [ -119.577619753999912, 49.455134971000064 ], [ -119.577470042999948, 49.454898417000031 ], [ -119.577252508999933, 49.454707681000102 ], [ -119.577248406999928, 49.454704072 ], [ -119.577235726999973, 49.45469296000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151726146", "BldgCostT": "100356525", "sL_LossRatio": "0.965663536052721", "sL_AssetLoss": "9243.27853", "sL_BldgLoss": "8925.89703", "sL_StrLoss": "8712.54123", "sL_NStrLoss": "213.3558", "sL_ContLoss": "317.3815", "geom_point": "0101000020E61000005EB683CFDEE55DC057506A92CCBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.592321397999967, 49.462724894000154 ], [ -119.592353285999963, 49.462027505000044 ], [ -119.593992217999954, 49.461818299000129 ], [ -119.594076713999968, 49.461778194000026 ], [ -119.594393403999945, 49.460495999000024 ], [ -119.594329096999928, 49.460440691 ], [ -119.59422551599999, 49.46042910100001 ], [ -119.592368509999972, 49.46067418800007 ], [ -119.592366082999945, 49.460427965000079 ], [ -119.592365303999912, 49.460348799000023 ], [ -119.592122291999914, 49.460384110000092 ], [ -119.590947798999963, 49.460558393000028 ], [ -119.590253747999895, 49.460665814000038 ], [ -119.589964206, 49.46071061700011 ], [ -119.588554275999954, 49.460928800000026 ], [ -119.588602893999933, 49.460400492000083 ], [ -119.588442413999971, 49.459933445000125 ], [ -119.588382021999934, 49.459757658000072 ], [ -119.58791620599996, 49.458402004000057 ], [ -119.587450354999959, 49.457101675000104 ], [ -119.587230407999982, 49.456487587000026 ], [ -119.587556153999955, 49.45646955100009 ], [ -119.58773486299999, 49.456456548000105 ], [ -119.587941184000016, 49.456442940000059 ], [ -119.587942986000016, 49.456442903000038 ], [ -119.588575256999889, 49.456428755000132 ], [ -119.588865652999971, 49.456440237000052 ], [ -119.589142777999939, 49.456461 ], [ -119.58946264699999, 49.456507819000073 ], [ -119.589754952999968, 49.456555255000055 ], [ -119.590000567999979, 49.456649428000098 ], [ -119.590022394999934, 49.456664008000139 ], [ -119.590002039999931, 49.456764010000086 ], [ -119.589967850999983, 49.456928341000086 ], [ -119.589942649999927, 49.456973891000075 ], [ -119.589857521999974, 49.457191699000134 ], [ -119.589847518999932, 49.457263889000032 ], [ -119.589839910999927, 49.457381002000091 ], [ -119.589847968999976, 49.457533755000057 ], [ -119.58988074699991, 49.45763199400011 ], [ -119.589961038999945, 49.457846109000094 ], [ -119.589979098999933, 49.457926671000067 ], [ -119.590014717999935, 49.458078809000071 ], [ -119.590037477999957, 49.45824921400007 ], [ -119.590061201999958, 49.458437609000093 ], [ -119.590051700999965, 49.458518789000095 ], [ -119.589996308999972, 49.458686179000061 ], [ -119.589981679999966, 49.458797306000086 ], [ -119.59005169799994, 49.459149303000089 ], [ -119.590933300999922, 49.459080407000052 ], [ -119.592517324999932, 49.459305299000043 ], [ -119.593197876999952, 49.458954539000011 ], [ -119.59341482, 49.458792798000111 ], [ -119.593672031999972, 49.458693381000039 ], [ -119.593943338999964, 49.458588519000074 ], [ -119.594265619999959, 49.458172245000135 ], [ -119.594321117999954, 49.458003141000106 ], [ -119.594426959999964, 49.457815201000052 ], [ -119.594575987999946, 49.45763467300003 ], [ -119.595290171, 49.457456019000077 ], [ -119.595904704999924, 49.457379079000049 ], [ -119.596035409999942, 49.457362695000064 ], [ -119.595116835999988, 49.461345193000085 ], [ -119.594810598999942, 49.462672716000107 ], [ -119.594702091999949, 49.462664722000085 ], [ -119.594664671999965, 49.462661974000063 ], [ -119.594616, 49.462658411000113 ], [ -119.593764313999941, 49.462601696 ], [ -119.593317085999942, 49.462612192000059 ], [ -119.593143174999966, 49.462631890000047 ], [ -119.592364599999939, 49.462720012000034 ], [ -119.592321397999967, 49.462724894000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90596000", "BldgCostT": "62480000", "sL_LossRatio": "0.999998129130941", "sL_AssetLoss": "10560.2259568", "sL_BldgLoss": "10560.2062", "sL_StrLoss": "10560.00011", "sL_NStrLoss": "0.20609", "sL_ContLoss": "0.0197568", "geom_point": "0101000020E61000006985F1EC95E75DC0FBD1AA7566C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.61656405, 49.507735819000089 ], [ -119.616586191999914, 49.507576160000035 ], [ -119.616350383999972, 49.507581496000043 ], [ -119.61620792399999, 49.507274649000095 ], [ -119.616128216999925, 49.507102895000045 ], [ -119.615900208999932, 49.506519399000105 ], [ -119.615778806999941, 49.50592600200013 ], [ -119.615779026999974, 49.505345208000058 ], [ -119.615889791999962, 49.504776290000109 ], [ -119.61614179899999, 49.504057594000074 ], [ -119.617654979999912, 49.5002983890001 ], [ -119.617661277999943, 49.500282702000071 ], [ -119.617763679999939, 49.50000791800008 ], [ -119.618385004999979, 49.498339805000086 ], [ -119.618856483999963, 49.497186905000071 ], [ -119.618934515999982, 49.496843696000049 ], [ -119.61887469199999, 49.496555615000048 ], [ -119.618765888, 49.496341507000103 ], [ -119.618735260999983, 49.496312244000102 ], [ -119.618548091999941, 49.496133495000031 ], [ -119.618216514999958, 49.495937803000082 ], [ -119.618066898999984, 49.495967794000094 ], [ -119.617672779999964, 49.495857945000118 ], [ -119.617660095999952, 49.495854415000082 ], [ -119.617261680999889, 49.495830893000075 ], [ -119.617237932999942, 49.495826405000109 ], [ -119.617127786999944, 49.49580561600002 ], [ -119.616973362999943, 49.495776437000146 ], [ -119.616989604999944, 49.495664722000107 ], [ -119.61774970299993, 49.495599418000054 ], [ -119.618815598999959, 49.495567064000056 ], [ -119.620286880999956, 49.49554200300004 ], [ -119.620261826, 49.500073505000081 ], [ -119.620222634999934, 49.507154359000076 ], [ -119.620214998999984, 49.508531746000095 ], [ -119.616839964999912, 49.508636048000106 ], [ -119.616418028999945, 49.507727211000024 ], [ -119.61656405, 49.507735819000089 ] ], [ [ -119.617626648999959, 49.506778950000076 ], [ -119.617646458999957, 49.506636082000092 ], [ -119.617533527, 49.506629425000014 ], [ -119.617592522999985, 49.506203938000077 ], [ -119.617192474999968, 49.506212994000066 ], [ -119.617221409999956, 49.506755064000046 ], [ -119.617626648999959, 49.506778950000076 ] ], [ [ -119.61760256499997, 49.506131508000088 ], [ -119.617698039999979, 49.505442912000049 ], [ -119.617565384999935, 49.505435093000067 ], [ -119.61760256499997, 49.506131508000088 ] ], [ [ -119.617564606999935, 49.505420497000024 ], [ -119.617568166999945, 49.505394823000088 ], [ -119.617563240999942, 49.505394935000012 ], [ -119.617564606999935, 49.505420497000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998594772553901", "sL_AssetLoss": "199.256", "sL_BldgLoss": "198.976", "sL_StrLoss": "198", "sL_NStrLoss": "0.976", "sL_ContLoss": "0.28", "geom_point": "0101000020E6100000572DC0A9D5355EC033F90BE228C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.839157295999911, 49.539691789000052 ], [ -120.840107314999926, 49.539458306000064 ], [ -120.841802189999967, 49.539597792000059 ], [ -120.842963698999938, 49.539600701000019 ], [ -120.843643981999961, 49.539532293000029 ], [ -120.844057700999926, 49.539423401000036 ], [ -120.843885483999969, 49.540961139000039 ], [ -120.838327603999943, 49.541135933000092 ], [ -120.838486178999943, 49.539721553000042 ], [ -120.839157295999911, 49.539691789000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6328583", "BldgCostT": "3683333", "sL_LossRatio": "0.59491551712638", "sL_AssetLoss": "1262.3742", "sL_BldgLoss": "751.006", "sL_StrLoss": "545.196", "sL_NStrLoss": "205.81", "sL_ContLoss": "511.3682", "geom_point": "0101000020E610000032DFA8B2BB215EC05016630564B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.523600814999952, 49.439356293000067 ], [ -120.523951509999947, 49.438958904000039 ], [ -120.52468049, 49.43847039500011 ], [ -120.527130216999964, 49.43749770200003 ], [ -120.527526502999962, 49.437271197000086 ], [ -120.527655269999954, 49.437162832000062 ], [ -120.528530566999947, 49.437207103000027 ], [ -120.528467341999914, 49.437740239000071 ], [ -120.528984485999985, 49.437766391000146 ], [ -120.52881327599998, 49.439210170000102 ], [ -120.531063510999942, 49.439323939000097 ], [ -120.530894262999951, 49.440751669000129 ], [ -120.52953183899993, 49.440767788000073 ], [ -120.52912551299994, 49.442509324000071 ], [ -120.528341279999921, 49.44363422900004 ], [ -120.52693478799992, 49.443563097000037 ], [ -120.526745469, 49.445158759 ], [ -120.526441661999939, 49.44536194000009 ], [ -120.525741049999965, 49.445326499000103 ], [ -120.52567608399994, 49.445873934000126 ], [ -120.525593636999957, 49.445929070000062 ], [ -120.525359544999958, 49.445907716000065 ], [ -120.525041607999967, 49.445878700000144 ], [ -120.525122901999978, 49.445839310000032 ], [ -120.525655987999954, 49.445373612000012 ], [ -120.526193502999931, 49.444574596000066 ], [ -120.526508410999966, 49.443781302000112 ], [ -120.526488103999924, 49.44338538699999 ], [ -120.526350911999941, 49.443093404000074 ], [ -120.523744017, 49.440878794000071 ], [ -120.52361520399991, 49.440417296000092 ], [ -120.523600814999952, 49.439356293000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4405667", "BldgCostT": "2566667", "sL_LossRatio": "0.995468813462365", "sL_AssetLoss": "356.2643", "sL_BldgLoss": "354.65", "sL_StrLoss": "343.38", "sL_NStrLoss": "11.27", "sL_ContLoss": "1.6143", "geom_point": "0101000020E610000070E7A9AB0E245EC039D78BFCD5B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.560859959999945, 49.426473027000064 ], [ -120.56635364199991, 49.426749144000034 ], [ -120.565931107999987, 49.430337629000093 ], [ -120.56043700099994, 49.4300614920001 ], [ -120.560859959999945, 49.426473027000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998976475910427", "sL_AssetLoss": "176.84", "sL_BldgLoss": "176.659", "sL_StrLoss": "176", "sL_NStrLoss": "0.659", "sL_ContLoss": "0.181", "geom_point": "0101000020E61000005AF191BDF3205EC09928C6229BB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.514012576999974, 49.449120496000056 ], [ -120.518587679999939, 49.449352332000053 ], [ -120.517783117999954, 49.449918204000085 ], [ -120.517008483999973, 49.450242902000099 ], [ -120.515755215999931, 49.450459398000106 ], [ -120.514533904999936, 49.450865289000056 ], [ -120.512886302999959, 49.451234203000041 ], [ -120.511662158999968, 49.451301696000073 ], [ -120.511670013, 49.451146631000107 ], [ -120.51237265599994, 49.451161755000065 ], [ -120.512541504999959, 49.449742564000111 ], [ -120.512967131999957, 49.449764145000124 ], [ -120.512996297999905, 49.449518973000053 ], [ -120.513959374999956, 49.44956780000004 ], [ -120.514012576999974, 49.449120496000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999491105366909", "sL_AssetLoss": "163.2951", "sL_BldgLoss": "163.212", "sL_StrLoss": "163", "sL_NStrLoss": "0.212", "sL_ContLoss": "0.0831", "geom_point": "0101000020E6100000C4E2FDD9CB255EC0786DA1F165934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.587216887999915, 49.153426241000084 ], [ -120.587508469999946, 49.150924249000141 ], [ -120.588730982999962, 49.150985805000076 ], [ -120.588766531999966, 49.150680678000057 ], [ -120.594227815999929, 49.150955495000069 ], [ -120.594046181999943, 49.152516010000028 ], [ -120.593915614999929, 49.152436505000075 ], [ -120.593153388999909, 49.152304010000108 ], [ -120.59247848599999, 49.152073305000123 ], [ -120.591863083999939, 49.151754295000067 ], [ -120.59147078499997, 49.151674490000055 ], [ -120.590907409999915, 49.151663082000091 ], [ -120.589520904000011, 49.151976506000089 ], [ -120.588502414999979, 49.152359592000074 ], [ -120.58755388499992, 49.152969103000061 ], [ -120.587335584999906, 49.153189903000026 ], [ -120.587216887999915, 49.153426241000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15211866", "BldgCostT": "8683879", "sL_LossRatio": "0.644047553417927", "sL_AssetLoss": "2974.844", "sL_BldgLoss": "1915.941", "sL_StrLoss": "1487.531", "sL_NStrLoss": "428.41", "sL_ContLoss": "1058.903", "geom_point": "0101000020E610000080A73DE3CA2C5EC00028F34DA2C14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.707576288, 49.518630783000084 ], [ -120.707413859999974, 49.517885236000012 ], [ -120.706442395999943, 49.518046195000103 ], [ -120.706053664999985, 49.518086278000041 ], [ -120.705978783999953, 49.518093999 ], [ -120.705514517, 49.518100203000074 ], [ -120.704669693999975, 49.517995685000102 ], [ -120.704286378999939, 49.517898496000072 ], [ -120.703807792999953, 49.517655894000015 ], [ -120.702943479999988, 49.516927093000049 ], [ -120.702756402999967, 49.516700599000046 ], [ -120.702714992999972, 49.516446796 ], [ -120.702819205999972, 49.51620289100007 ], [ -120.70283600099998, 49.516185137000072 ], [ -120.70158390499999, 49.515805770000085 ], [ -120.700545801999937, 49.515004674000132 ], [ -120.70071982899999, 49.513492049000078 ], [ -120.702898378999961, 49.513598537000128 ], [ -120.702906969999958, 49.513415221000095 ], [ -120.702920357999943, 49.513129462000052 ], [ -120.702578535999962, 49.513122671000048 ], [ -120.702506258999961, 49.51312123600006 ], [ -120.702507607999934, 49.513092481000044 ], [ -120.702518894999983, 49.512851609000059 ], [ -120.701913474999969, 49.512839578000055 ], [ -120.701690703999972, 49.51283515100004 ], [ -120.70167806399995, 49.51310477800012 ], [ -120.699607574999959, 49.513063608000031 ], [ -120.699594921999918, 49.513333235000111 ], [ -120.697938525999945, 49.513300272000016 ], [ -120.697951186999958, 49.513030645000107 ], [ -120.69712299499993, 49.513014155000064 ], [ -120.697135659999944, 49.512744529000024 ], [ -120.696307472999976, 49.512728033000073 ], [ -120.696309708999976, 49.512680436000075 ], [ -120.695760327999892, 49.512653552000117 ], [ -120.692347097999928, 49.511623370000052 ], [ -120.692351131999942, 49.511613302000072 ], [ -120.692561794999946, 49.511088286000067 ], [ -120.690180006999967, 49.510741487000082 ], [ -120.690458517999943, 49.509982001000026 ], [ -120.690739605999937, 49.509224387000089 ], [ -120.69102059, 49.508455009000038 ], [ -120.691303008999967, 49.507685804000111 ], [ -120.691368312999984, 49.507506521 ], [ -120.691419734999968, 49.507365374000038 ], [ -120.69255717399993, 49.507416394000067 ], [ -120.693663890999986, 49.507689814000088 ], [ -120.69605419599992, 49.508853392000027 ], [ -120.697681511999988, 49.509200904000153 ], [ -120.699794109999985, 49.510123805000056 ], [ -120.700371871999948, 49.510488406000015 ], [ -120.700322356999962, 49.510918798000063 ], [ -120.701077712999961, 49.510933817000108 ], [ -120.701357100999957, 49.511110119000087 ], [ -120.701339816999976, 49.51147878500003 ], [ -120.701753900999961, 49.511487016000046 ], [ -120.70172862199999, 49.512026270000057 ], [ -120.702970889999918, 49.512050953000035 ], [ -120.702958256999977, 49.512320581000075 ], [ -120.703868819999926, 49.512338664000019 ], [ -120.704189333999963, 49.512584413000063 ], [ -120.704187908000037, 49.512614878000093 ], [ -120.704230161999959, 49.512615717000074 ], [ -120.70427721599998, 49.512651794000107 ], [ -120.704748196999958, 49.513218612000117 ], [ -120.705281316999972, 49.513615999000059 ], [ -120.706597717999941, 49.514262361000121 ], [ -120.706596800999947, 49.514281947000036 ], [ -120.706639325999944, 49.51428279000006 ], [ -120.707456701999959, 49.51468411000009 ], [ -120.708627399999926, 49.515177719000043 ], [ -120.708616938999967, 49.515401506000075 ], [ -120.708934937999985, 49.515407807000066 ], [ -120.709026905999949, 49.515498579000067 ], [ -120.70901845799996, 49.515679339000037 ], [ -120.709213975999916, 49.515683212000106 ], [ -120.709423136999987, 49.515889647000087 ], [ -120.709356984999914, 49.517305312000062 ], [ -120.708337432999969, 49.517285113000057 ], [ -120.708216194999949, 49.518340355000134 ], [ -120.708203901999951, 49.518447349000091 ], [ -120.707600750999973, 49.518417904000067 ], [ -120.707576288, 49.518630783000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999280861562928", "sL_AssetLoss": "171.038", "sL_BldgLoss": "170.915", "sL_StrLoss": "170", "sL_NStrLoss": "0.915", "sL_ContLoss": "0.123", "geom_point": "0101000020E6100000831C310698325EC07E22682FCF874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.793017110999941, 49.062691408000056 ], [ -120.79274729399998, 49.062289705000097 ], [ -120.792000698999928, 49.061843993000132 ], [ -120.791467297999972, 49.061806903000097 ], [ -120.790613083000011, 49.061960697000075 ], [ -120.790280103, 49.061765590000036 ], [ -120.790091506999957, 49.061383904000053 ], [ -120.789601411999939, 49.061015104000106 ], [ -120.789551997, 49.060888304000073 ], [ -120.789246110999898, 49.060684606000073 ], [ -120.789042703999925, 49.060644808000077 ], [ -120.788795304999965, 49.060955207000099 ], [ -120.788682993999942, 49.061006505000066 ], [ -120.788271363000021, 49.060877022000106 ], [ -120.788179312999986, 49.060848072000063 ], [ -120.787954013999951, 49.060777205000058 ], [ -120.786952286999977, 49.060217510000058 ], [ -120.785859852999963, 49.060282306000076 ], [ -120.785886072999972, 49.060048230000056 ], [ -120.791337883000011, 49.060313088000086 ], [ -120.791310851999953, 49.060554656000072 ], [ -120.792793749999959, 49.060626649000049 ], [ -120.792647317999922, 49.061935623000089 ], [ -120.792928027999963, 49.061949248000062 ], [ -120.792907758999917, 49.062130432000053 ], [ -120.793235529999933, 49.062146341000087 ], [ -120.79319859499999, 49.062476527000086 ], [ -120.793474841999966, 49.062489936000077 ], [ -120.793437279999978, 49.062825747000083 ], [ -120.793258504, 49.06283090000003 ], [ -120.793017110999941, 49.062691408000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2777417", "BldgCostT": "1651667", "sL_LossRatio": "0.99759635027542", "sL_AssetLoss": "1450.1697", "sL_BldgLoss": "1446.684", "sL_StrLoss": "1435.104", "sL_NStrLoss": "11.58", "sL_ContLoss": "3.4857", "geom_point": "0101000020E610000073FBA37783245EC0E32A059351B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.567989867999927, 49.398994715000029 ], [ -120.573480329999924, 49.399270483000059 ], [ -120.573058599999968, 49.402859142000125 ], [ -120.567567713999978, 49.402583354000065 ], [ -120.567989867999927, 49.398994715000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.994156713907857", "sL_AssetLoss": "502.457", "sL_BldgLoss": "499.521", "sL_StrLoss": "473.82", "sL_NStrLoss": "25.701", "sL_ContLoss": "2.936", "geom_point": "0101000020E6100000EFD8D7D3B1255EC0F0468BD84CB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.586475132999965, 49.422039514000069 ], [ -120.591968440999963, 49.42231433500006 ], [ -120.591824023999919, 49.423546866000059 ], [ -120.591615178999973, 49.425329122000072 ], [ -120.591547934999937, 49.425902943000104 ], [ -120.591540937999966, 49.425902593000039 ], [ -120.591482560999964, 49.426400744 ], [ -120.585988769, 49.426125900000024 ], [ -120.586409707999948, 49.422537314000067 ], [ -120.586416704999948, 49.422537664000103 ], [ -120.586475132999965, 49.422039514000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16673200", "BldgCostT": "9662213", "sL_LossRatio": "0.997895141121721", "sL_AssetLoss": "2812.5401", "sL_BldgLoss": "2806.6201", "sL_StrLoss": "2767.1471", "sL_NStrLoss": "39.473", "sL_ContLoss": "5.92", "geom_point": "0101000020E610000062A1D6346F275EC01E32CCA6AF914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.609747596999938, 49.143499613000102 ], [ -120.609068384999944, 49.143097894000043 ], [ -120.607986993999958, 49.143048106000066 ], [ -120.607827908999951, 49.142946983000044 ], [ -120.607836205999945, 49.142766105000064 ], [ -120.608391405999939, 49.14236450500006 ], [ -120.610005707999946, 49.14155270800007 ], [ -120.610254707, 49.141233684000099 ], [ -120.610449000999935, 49.140904707000111 ], [ -120.610074886999925, 49.139259703000064 ], [ -120.610074687999898, 49.138701397000077 ], [ -120.610187816999954, 49.138352497000049 ], [ -120.61093599699997, 49.137334203000115 ], [ -120.61150860699999, 49.136824294000043 ], [ -120.612837987999924, 49.136842805000107 ], [ -120.613401607999933, 49.136539495000079 ], [ -120.613531619999947, 49.13637990400008 ], [ -120.613354692999948, 49.134928714000111 ], [ -120.613367183999983, 49.13468509300008 ], [ -120.61357529899999, 49.134330495000022 ], [ -120.613579204999965, 49.133978690000099 ], [ -120.613677008, 49.133675404000044 ], [ -120.614168904999985, 49.133389098000094 ], [ -120.614433908999956, 49.133330708000074 ], [ -120.616091301999916, 49.13332930600005 ], [ -120.617325000999955, 49.133651196000152 ], [ -120.618537196999966, 49.133812113000026 ], [ -120.619734307999948, 49.133710995000072 ], [ -120.61989790199999, 49.133434704000116 ], [ -120.61991282599999, 49.133138405000039 ], [ -120.619858983999933, 49.132976359000054 ], [ -120.621190232999979, 49.133043015000077 ], [ -120.621335210999973, 49.133050273000023 ], [ -120.623160958999932, 49.133141659000039 ], [ -120.622745470999945, 49.136731953000094 ], [ -120.622384943999947, 49.136713910000026 ], [ -120.62225960899994, 49.13779676300009 ], [ -120.621587231000021, 49.137763109000105 ], [ -120.621430845999924, 49.13911397800009 ], [ -120.618255354999931, 49.138954982000023 ], [ -120.618241661, 49.139240629000042 ], [ -120.617830709999978, 49.139232147000058 ], [ -120.617804850999974, 49.139771403000076 ], [ -120.617393895999967, 49.13976291900012 ], [ -120.617380963999892, 49.140032547000011 ], [ -120.618202876999931, 49.14004951500003 ], [ -120.618215804999963, 49.139779886000106 ], [ -120.618626759, 49.139788368000104 ], [ -120.61863968499992, 49.139518738000078 ], [ -120.619461591999965, 49.139535696000067 ], [ -120.619474511999925, 49.139266067000086 ], [ -120.621118316999954, 49.139299965000113 ], [ -120.621053754999963, 49.14064811 ], [ -120.620231830999927, 49.140631164000098 ], [ -120.620193076999939, 49.141440050000107 ], [ -120.619371140999974, 49.141423097000043 ], [ -120.619358217999959, 49.141692726000066 ], [ -120.618947247, 49.1416842470001 ], [ -120.618934322999976, 49.141953876000109 ], [ -120.615678471999928, 49.141886652000046 ], [ -120.615596590999985, 49.142593104000042 ], [ -120.613118062999931, 49.142468887000113 ], [ -120.612970945999933, 49.143737562000091 ], [ -120.610153366999953, 49.143596283000122 ], [ -120.610017731000013, 49.143589480000038 ], [ -120.609736859999899, 49.143575392000074 ], [ -120.609747596999938, 49.143499613000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12180417", "BldgCostT": "6716667", "sL_LossRatio": "0.641605067055184", "sL_AssetLoss": "854.0503", "sL_BldgLoss": "547.963", "sL_StrLoss": "427.873", "sL_NStrLoss": "120.09", "sL_ContLoss": "306.0873", "geom_point": "0101000020E61000007F4E20700D275EC096D2D09289914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.60760953, 49.142609699000026 ], [ -120.607728621999939, 49.141583700000112 ], [ -120.607551218999902, 49.141574798000114 ], [ -120.607608684999889, 49.14107971500006 ], [ -120.607371144999931, 49.141067794000044 ], [ -120.607425366999976, 49.140600673000058 ], [ -120.607194569999962, 49.14058909100001 ], [ -120.607611290999969, 49.136998878000021 ], [ -120.607706485, 49.1370036550001 ], [ -120.607751303999947, 49.136617481000094 ], [ -120.607987104999921, 49.136629314000061 ], [ -120.60803161299999, 49.136245786000096 ], [ -120.608145162999961, 49.13625148400007 ], [ -120.608189526999965, 49.135869188000107 ], [ -120.608626307999941, 49.135891106000066 ], [ -120.608675228999914, 49.135469499000038 ], [ -120.608977109, 49.13548464600008 ], [ -120.609027737999952, 49.135048305000041 ], [ -120.610473767999935, 49.135120851000039 ], [ -120.610489879999975, 49.134981940000024 ], [ -120.611048396999962, 49.135009954000047 ], [ -120.611099777000021, 49.134566952000021 ], [ -120.61148145599999, 49.134586095000053 ], [ -120.611716860999962, 49.132556161000103 ], [ -120.617176153999949, 49.132829822000041 ], [ -120.617134129999954, 49.133192581000053 ], [ -120.614925185999965, 49.13306299500006 ], [ -120.613578808999961, 49.133124198000132 ], [ -120.612948087999953, 49.134568409000053 ], [ -120.612902709999958, 49.136358590000043 ], [ -120.612564107999916, 49.136566506000051 ], [ -120.611525911999962, 49.136482508 ], [ -120.611040382999974, 49.136597894 ], [ -120.610145503999945, 49.137533593000036 ], [ -120.609517296999968, 49.138600300000107 ], [ -120.609483979999965, 49.139013299000077 ], [ -120.609708514999966, 49.139494701000018 ], [ -120.609961812999956, 49.140219589000026 ], [ -120.60997051, 49.141155295000047 ], [ -120.609408510999984, 49.141431586000081 ], [ -120.608908203999974, 49.141573993000115 ], [ -120.607829996999953, 49.142343093000136 ], [ -120.60760953, 49.142609699000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.912427354509991", "sL_AssetLoss": "1.2561", "sL_BldgLoss": "1.1461", "sL_StrLoss": "0.0861", "sL_NStrLoss": "1.06", "sL_ContLoss": "0.11", "geom_point": "0101000020E61000002C05CD7C01335EC0B871CD150CC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.793369889999894, 49.54012973800014 ], [ -120.793535960999918, 49.53866129700004 ], [ -120.793572836, 49.538663067000108 ], [ -120.793858596999911, 49.538737590000046 ], [ -120.794507017999976, 49.539092196000063 ], [ -120.795041396, 49.539201902000087 ], [ -120.796223397999981, 49.539052414000011 ], [ -120.798201904999971, 49.538388704000056 ], [ -120.798605279999919, 49.538324596000066 ], [ -120.799053307999941, 49.53850400200011 ], [ -120.799832285999969, 49.53965200600009 ], [ -120.800381100000024, 49.540022194000088 ], [ -120.801004845999955, 49.540192396000108 ], [ -120.800980634999959, 49.540406781000051 ], [ -120.8009115, 49.540390303 ], [ -120.800731528999933, 49.540329724000053 ], [ -120.800464715999951, 49.540239902000074 ], [ -120.800009813999949, 49.540148592000087 ], [ -120.799994200999905, 49.540146568000125 ], [ -120.799491218999961, 49.540081391000065 ], [ -120.794918196999987, 49.539968510000058 ], [ -120.794238892999942, 49.539999906000062 ], [ -120.794011712999961, 49.540027838000171 ], [ -120.793800798999939, 49.540053804000102 ], [ -120.793369889999894, 49.54012973800014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.9977662282185", "sL_AssetLoss": "224.732", "sL_BldgLoss": "224.23", "sL_StrLoss": "220", "sL_NStrLoss": "4.23", "sL_ContLoss": "0.502", "geom_point": "0101000020E6100000BAB12CDA14365EC0F0E216561E8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.844052416999929, 49.111293247000098 ], [ -120.844075799999928, 49.110753903000059 ], [ -120.843665020999978, 49.110746229000014 ], [ -120.843723482999948, 49.109397869000126 ], [ -120.844134249999939, 49.109405544000033 ], [ -120.844145938999958, 49.10913587200006 ], [ -120.845378236999963, 49.109158887000035 ], [ -120.845366554999927, 49.109428560000083 ], [ -120.845578650999983, 49.109432520000027 ], [ -120.84577732299999, 49.109436229000096 ], [ -120.84576624099995, 49.10969207700002 ], [ -120.845765641999961, 49.109705902000101 ], [ -120.845776376999979, 49.109706102000089 ], [ -120.84602494499994, 49.109710743000022 ], [ -120.846176412999938, 49.10971357000011 ], [ -120.846167678999947, 49.109915270000037 ], [ -120.846155400999962, 49.110198770000096 ], [ -120.846153054999931, 49.110252914000043 ], [ -120.846205291999979, 49.110253889000042 ], [ -120.846456173999954, 49.110258572000077 ], [ -120.846563830999969, 49.110260580000116 ], [ -120.846559744, 49.110354990000076 ], [ -120.84654939499994, 49.110593958000095 ], [ -120.846528798999969, 49.111069598000078 ], [ -120.846118016999966, 49.111061931000108 ], [ -120.84610633799997, 49.111331604000036 ], [ -120.844052416999929, 49.111293247000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6043417", "BldgCostT": "3486667", "sL_LossRatio": "0.630770143507577", "sL_AssetLoss": "906.8232", "sL_BldgLoss": "571.997", "sL_StrLoss": "444.541", "sL_NStrLoss": "127.456", "sL_ContLoss": "334.8262", "geom_point": "0101000020E6100000BF2311B7D61E5EC0BEF9AAE851B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.478864607, 49.395295850000082 ], [ -120.478987901999986, 49.394264535000083 ], [ -120.478927576, 49.394261454000095 ], [ -120.479356527, 49.390673119000077 ], [ -120.48484547000001, 49.390953382000056 ], [ -120.484722313999939, 49.391984709000063 ], [ -120.484782637999899, 49.391987787000069 ], [ -120.484354095999976, 49.395576136000052 ], [ -120.478864607, 49.395295850000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.991444774935554", "sL_AssetLoss": "630.375", "sL_BldgLoss": "624.982", "sL_StrLoss": "574.24", "sL_NStrLoss": "50.742", "sL_ContLoss": "5.393", "geom_point": "0101000020E61000001340DE69FA245EC0A12B11A87EAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.575252807999959, 49.337870510000123 ], [ -120.58073607099999, 49.338145934000053 ], [ -120.580398573999943, 49.34102578600011 ], [ -120.580315459, 49.341734948000067 ], [ -120.579635045999936, 49.341700786000025 ], [ -120.574831772999943, 49.341459503000095 ], [ -120.575252807999959, 49.337870510000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.965532597078732", "sL_AssetLoss": "0.11228", "sL_BldgLoss": "0.10841", "sL_StrLoss": "0.00341", "sL_NStrLoss": "0.105", "sL_ContLoss": "0.00387", "geom_point": "0101000020E6100000B206B500A9105EC00938842AB5B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.261532812999974, 49.40521229200003 ], [ -120.260995288999979, 49.404695301000082 ], [ -120.257487085, 49.402858095000028 ], [ -120.257134494999889, 49.402749804000123 ], [ -120.256336607999913, 49.402695691000098 ], [ -120.255877978999976, 49.402538836000076 ], [ -120.257567649999913, 49.402628625000098 ], [ -120.260435333999965, 49.402780952000086 ], [ -120.26035695399996, 49.403411376000115 ], [ -120.261182849999969, 49.403455232000148 ], [ -120.261050464999954, 49.404520145000092 ], [ -120.261045556999946, 49.404559628000065 ], [ -120.26110557, 49.404562815000048 ], [ -120.262681771999951, 49.404646494000104 ], [ -120.262642085999943, 49.40496581500004 ], [ -120.262833789999917, 49.40497599100005 ], [ -120.262728915999929, 49.405819817000051 ], [ -120.262665507999955, 49.40633 ], [ -120.262024216999976, 49.405782002000052 ], [ -120.261628404999925, 49.405465802000052 ], [ -120.261532812999974, 49.40521229200003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4050417", "BldgCostT": "2321667", "sL_LossRatio": "0.992970744045649", "sL_AssetLoss": "173.7595", "sL_BldgLoss": "172.5381", "sL_StrLoss": "163.6971", "sL_NStrLoss": "8.841", "sL_ContLoss": "1.2214", "geom_point": "0101000020E6100000592E7EC76E245EC00C67C8C2A19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.56673561599996, 49.245191341000073 ], [ -120.572207882999948, 49.245467235000085 ], [ -120.571787450999935, 49.249056716000062 ], [ -120.566314763999983, 49.248780801000059 ], [ -120.56673561599996, 49.245191341000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998506086587813", "sL_AssetLoss": "202.823", "sL_BldgLoss": "202.52", "sL_StrLoss": "200", "sL_NStrLoss": "2.52", "sL_ContLoss": "0.303", "geom_point": "0101000020E6100000BB78A298BA335EC04DD4350746C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.808260901999944, 49.54160629700003 ], [ -120.807543529, 49.541485605000027 ], [ -120.8061765, 49.541550007000097 ], [ -120.806076076999958, 49.541530480000119 ], [ -120.805912287999917, 49.541498598000032 ], [ -120.805645886999983, 49.541368590000111 ], [ -120.804996876999894, 49.541267668000067 ], [ -120.805100173999961, 49.540352279000082 ], [ -120.80533941, 49.540413887000078 ], [ -120.806071903999978, 49.540724385000075 ], [ -120.807141404999967, 49.540960804000065 ], [ -120.809015404999911, 49.541094685000083 ], [ -120.80928168, 49.541010594000049 ], [ -120.809680989999961, 49.540730105000094 ], [ -120.810909351999967, 49.540345583000047 ], [ -120.810720603, 49.542020086000015 ], [ -120.809528080999911, 49.541819486000094 ], [ -120.808706924999967, 49.541681321000048 ], [ -120.808260901999944, 49.54160629700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3203750", "BldgCostT": "2000000", "sL_LossRatio": "0.608607413173248", "sL_AssetLoss": "1125.402", "sL_BldgLoss": "684.928", "sL_StrLoss": "519.408", "sL_NStrLoss": "165.52", "sL_ContLoss": "440.474", "geom_point": "0101000020E61000000473B2DC2B255EC0E1ACD22783B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.578266071999934, 49.423945627000052 ], [ -120.583759557999912, 49.424220864000105 ], [ -120.58333839699999, 49.42780943000016 ], [ -120.577844488, 49.427534173000012 ], [ -120.578266071999934, 49.423945627000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5694583", "BldgCostT": "3508333", "sL_LossRatio": "0.689169837323519", "sL_AssetLoss": "920.3666", "sL_BldgLoss": "634.2889", "sL_StrLoss": "530.067", "sL_NStrLoss": "104.2219", "sL_ContLoss": "286.0777", "geom_point": "0101000020E610000022363F9BE8115EC07FBB2EF46FB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.272924546999917, 49.431537974000086 ], [ -120.272933639999962, 49.431464722000094 ], [ -120.27440996699994, 49.431542888000095 ], [ -120.2744505899999, 49.431215556000062 ], [ -120.279943082000017, 49.431506187000132 ], [ -120.279900699999942, 49.431848018000039 ], [ -120.285288631999947, 49.432132843000062 ], [ -120.285284582999978, 49.432165526000098 ], [ -120.28605480899995, 49.432206221000079 ], [ -120.285782107999964, 49.434407930000106 ], [ -120.285760532999973, 49.434582113000033 ], [ -120.283154484999983, 49.434592295000094 ], [ -120.282807290999969, 49.43462929300005 ], [ -120.281636409999962, 49.435077982000045 ], [ -120.280623003, 49.435224604000069 ], [ -120.277622009999959, 49.434596585000044 ], [ -120.276334085999963, 49.434189209000074 ], [ -120.275743274999982, 49.433914394000055 ], [ -120.27440070599998, 49.432973004000068 ], [ -120.272862715999977, 49.432036060000037 ], [ -120.272924546999917, 49.431537974000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4581834", "BldgCostT": "2663334", "sL_LossRatio": "0.439219154282345", "sL_AssetLoss": "1981.134", "sL_BldgLoss": "870.152", "sL_StrLoss": "440.252", "sL_NStrLoss": "429.9", "sL_ContLoss": "1110.982", "geom_point": "0101000020E6100000925409C3BE435EC032C3EB9FCCB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.056049022999943, 49.410318814000071 ], [ -121.061543606999948, 49.410569829000082 ], [ -121.06115965, 49.414160243000069 ], [ -121.061042707999945, 49.414154903000068 ], [ -121.060987569999909, 49.414670446000088 ], [ -121.055492500999947, 49.414419404000071 ], [ -121.05587690099992, 49.410829011000025 ], [ -121.05599383399999, 49.41083435600008 ], [ -121.056049022999943, 49.410318814000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2847500", "BldgCostT": "1700000", "sL_LossRatio": "0.997667721195367", "sL_AssetLoss": "1818.822", "sL_BldgLoss": "1814.58", "sL_StrLoss": "1802", "sL_NStrLoss": "12.58", "sL_ContLoss": "4.242", "geom_point": "0101000020E6100000354ED8B8DD245EC0132CD4BBF4944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.571013291000014, 49.16515202100004 ], [ -120.57118055499997, 49.163721504000087 ], [ -120.573732851999949, 49.16385035400004 ], [ -120.573822580999916, 49.163082564000042 ], [ -120.574476059999967, 49.163115545000082 ], [ -120.574513866999965, 49.162791980000073 ], [ -120.574808238999935, 49.16280683500004 ], [ -120.574867179, 49.162302386000093 ], [ -120.580329743999968, 49.162577904000045 ], [ -120.580276392999977, 49.163034976000091 ], [ -120.580715160999915, 49.163057094000067 ], [ -120.580655400999959, 49.163569105000064 ], [ -120.580813889999973, 49.163577093000107 ], [ -120.580759297999961, 49.164044837000056 ], [ -120.580929016999903, 49.164053391000074 ], [ -120.580893140999962, 49.164360784000053 ], [ -120.581412608999926, 49.164386966000073 ], [ -120.581184889, 49.164603491000051 ], [ -120.580862482999976, 49.164750192000021 ], [ -120.580641104999984, 49.164763008000094 ], [ -120.579525903999965, 49.164577895000043 ], [ -120.579048494999938, 49.164243203000083 ], [ -120.578401480999958, 49.163447 ], [ -120.577995009999967, 49.163313193000064 ], [ -120.57763810099999, 49.163323098000014 ], [ -120.576998309999951, 49.163535285000087 ], [ -120.575594186, 49.164459690000058 ], [ -120.574633100999947, 49.164177691000127 ], [ -120.574082812, 49.164228906000083 ], [ -120.573368388999896, 49.164808592000085 ], [ -120.572800704000016, 49.165470784 ], [ -120.57238241499995, 49.165624696000066 ], [ -120.57186120199999, 49.165604689000062 ], [ -120.571013291000014, 49.16515202100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2515000", "BldgCostT": "1525000", "sL_LossRatio": "0.51026850580899", "sL_AssetLoss": "1144.519", "sL_BldgLoss": "584.012", "sL_StrLoss": "371.812", "sL_NStrLoss": "212.2", "sL_ContLoss": "560.507", "geom_point": "0101000020E6100000D76E3798B82E5EC007D47A430AC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.72706926799998, 49.538099337000077 ], [ -120.732577224999901, 49.538366984000113 ], [ -120.732271031, 49.541042932000046 ], [ -120.730193412999952, 49.540602092000029 ], [ -120.729432089999989, 49.540465899000061 ], [ -120.728566743999963, 49.540343814000039 ], [ -120.72855320399999, 49.540341896000015 ], [ -120.728181305999954, 49.540239998000054 ], [ -120.727950512999939, 49.540139398000107 ], [ -120.727685605999937, 49.539913699000088 ], [ -120.727576521999964, 49.539717107000072 ], [ -120.727261509999934, 49.538900689000066 ], [ -120.727020799999977, 49.53852249100008 ], [ -120.72706926799998, 49.538099337000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6328583", "BldgCostT": "3683333", "sL_LossRatio": "0.595441143956035", "sL_AssetLoss": "1261.4261", "sL_BldgLoss": "751.105", "sL_StrLoss": "545.715", "sL_NStrLoss": "205.39", "sL_ContLoss": "510.3211", "geom_point": "0101000020E61000002EEFDC414D2F5EC057C36E6D1BC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.734118211999913, 49.541293243000084 ], [ -120.734500665999988, 49.537949610000098 ], [ -120.734620208999971, 49.537955414000081 ], [ -120.734669981999957, 49.537520212000075 ], [ -120.735013336999941, 49.537536881000122 ], [ -120.735199718999922, 49.538018396000027 ], [ -120.735598512999957, 49.538331695000089 ], [ -120.737574294999931, 49.53895549000007 ], [ -120.739546380999982, 49.538777501000048 ], [ -120.740152393999949, 49.538834497000046 ], [ -120.741635113999934, 49.538746201000059 ], [ -120.742081215999946, 49.538935597000098 ], [ -120.74256540899998, 49.538944101000084 ], [ -120.744337819999913, 49.53860089900008 ], [ -120.74479170099994, 49.538619392000093 ], [ -120.745448909999965, 49.539045185000127 ], [ -120.745482900999917, 49.539513802000073 ], [ -120.745740260999952, 49.539762691000071 ], [ -120.745672718999941, 49.540354467000064 ], [ -120.745234314999934, 49.540199658000034 ], [ -120.744897943999916, 49.540113910000052 ], [ -120.744316815999966, 49.540085756000074 ], [ -120.744124327999941, 49.540098075000067 ], [ -120.743830558999917, 49.540160519000018 ], [ -120.743371129999929, 49.540340789000027 ], [ -120.742105501999973, 49.540837386000092 ], [ -120.74140418199994, 49.54112177800009 ], [ -120.740880679000014, 49.541255178000043 ], [ -120.740386179999973, 49.541317784000029 ], [ -120.738891168999928, 49.541433880000056 ], [ -120.737908793999921, 49.541476392000085 ], [ -120.735488975999942, 49.541385199000032 ], [ -120.734348888999989, 49.541316286000075 ], [ -120.734118211999913, 49.541293243000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3132667", "BldgCostT": "1896667", "sL_LossRatio": "0.99655348376073", "sL_AssetLoss": "1873.8342", "sL_BldgLoss": "1867.376", "sL_StrLoss": "1845.136", "sL_NStrLoss": "22.24", "sL_ContLoss": "6.4582", "geom_point": "0101000020E61000008A9F73750F275EC0541E38C27DB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.607782532, 49.400344050000072 ], [ -120.613273391999954, 49.400617800000148 ], [ -120.61285473599996, 49.404206606000052 ], [ -120.60736345299992, 49.403932836000081 ], [ -120.607782532, 49.400344050000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999120692100411", "sL_AssetLoss": "176.275", "sL_BldgLoss": "176.12", "sL_StrLoss": "175", "sL_NStrLoss": "1.12", "sL_ContLoss": "0.155", "geom_point": "0101000020E61000003EB9BFDDC6305EC0A8CCE6D442C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.763156021999947, 49.540613990000082 ], [ -120.764521228999925, 49.540679896000078 ], [ -120.764293406999982, 49.540815496000015 ], [ -120.763957583999954, 49.541185791000075 ], [ -120.763828793999949, 49.541615907000072 ], [ -120.763408208999977, 49.54175120700004 ], [ -120.76211959599999, 49.541798212000074 ], [ -120.761501498, 49.541714201000048 ], [ -120.761013400999943, 49.541489211000055 ], [ -120.760264912999943, 49.540925190000095 ], [ -120.759574911999891, 49.540624703000056 ], [ -120.758412197999988, 49.540520002000072 ], [ -120.758418427999942, 49.540465278000028 ], [ -120.763146956999933, 49.54069368400009 ], [ -120.763156021999947, 49.540613990000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998539985947988", "sL_AssetLoss": "200.683", "sL_BldgLoss": "200.39", "sL_StrLoss": "198", "sL_NStrLoss": "2.39", "sL_ContLoss": "0.293", "geom_point": "0101000020E6100000A35F74DC1D335EC0D137718BDCC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.799236513999944, 49.538120907000092 ], [ -120.79889729199999, 49.53799699500005 ], [ -120.798330094999969, 49.537977104000142 ], [ -120.795630585999959, 49.538740124000142 ], [ -120.795812250000012, 49.53713304700009 ], [ -120.801320486999913, 49.537397210000051 ], [ -120.801052187999971, 49.539773178000139 ], [ -120.800812805999954, 49.539634905000042 ], [ -120.800447997999953, 49.539160591000062 ], [ -120.799671697999969, 49.538569609000014 ], [ -120.799236513999944, 49.538120907000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.996807999925114", "sL_AssetLoss": "448.6842", "sL_BldgLoss": "447.252", "sL_StrLoss": "436.18", "sL_NStrLoss": "11.072", "sL_ContLoss": "1.4322", "geom_point": "0101000020E6100000A8CB7BFFD31F5EC0BB9866BA57B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.494781405999959, 49.430430893000107 ], [ -120.500275161999951, 49.430710358000042 ], [ -120.49984746199999, 49.43429856300007 ], [ -120.494353282999924, 49.434019078000084 ], [ -120.494412896999933, 49.433519468000071 ], [ -120.494758704999938, 49.430621155000075 ], [ -120.494781405999959, 49.430430893000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9505094", "BldgCostT": "5513736", "sL_LossRatio": "0.997598050125687", "sL_AssetLoss": "1068.0073", "sL_BldgLoss": "1065.442", "sL_StrLoss": "1039.539", "sL_NStrLoss": "25.903", "sL_ContLoss": "2.5653", "geom_point": "0101000020E6100000479779A3FD235EC03844E40D13B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.560437782999955, 49.40220296100005 ], [ -120.560566035999969, 49.401114197000076 ], [ -120.559390418999925, 49.401055035000056 ], [ -120.559534320999916, 49.399833621000063 ], [ -120.559198789999925, 49.399816733000087 ], [ -120.559236388999949, 49.399497609000029 ], [ -120.556983139999957, 49.399384172000111 ], [ -120.557406085999958, 49.395795558000096 ], [ -120.55855662399992, 49.395853487000117 ], [ -120.55858824799995, 49.395585085000064 ], [ -120.564078248999948, 49.395861331000084 ], [ -120.564009093999971, 49.396448860000099 ], [ -120.564708624999952, 49.396484038000025 ], [ -120.565111652999946, 49.396504304000054 ], [ -120.564967908999904, 49.397725732000076 ], [ -120.565303424999968, 49.3977426020001 ], [ -120.56521418599999, 49.398500898000052 ], [ -120.567723595999951, 49.398627037000047 ], [ -120.567301423999965, 49.402215678000069 ], [ -120.565967471999954, 49.402148632 ], [ -120.56592858099998, 49.402479110000101 ], [ -120.564011330999961, 49.402382718000055 ], [ -120.560437782999955, 49.40220296100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69517167", "BldgCostT": "48701667", "sL_LossRatio": "0.642154921023186", "sL_AssetLoss": "475.47246", "sL_BldgLoss": "305.32698", "sL_StrLoss": "227.53228", "sL_NStrLoss": "77.7947", "sL_ContLoss": "170.14548", "geom_point": "0101000020E6100000C95B85FF3A155EC09C75DF9466B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.327151977999961, 49.435245243000089 ], [ -120.327169294999962, 49.435104420000052 ], [ -120.327431699999948, 49.43513919300004 ], [ -120.328074215999976, 49.435018099000104 ], [ -120.328543409999924, 49.434760384000064 ], [ -120.329376904999904, 49.433888711000108 ], [ -120.329467805999911, 49.433485693000108 ], [ -120.329183104999956, 49.433119699000088 ], [ -120.329781711999914, 49.432773597000093 ], [ -120.330075482999987, 49.432716602000077 ], [ -120.330206187, 49.432323499000077 ], [ -120.32989560099999, 49.431974605000072 ], [ -120.329851587999926, 49.43174959700012 ], [ -120.32997001199999, 49.431608602000075 ], [ -120.330005811999982, 49.431195603000091 ], [ -120.329837306999977, 49.431001889000122 ], [ -120.329661348999949, 49.430943778000014 ], [ -120.32981055, 49.429729741000187 ], [ -120.333297361999897, 49.429912490000071 ], [ -120.335303210999911, 49.430017567000064 ], [ -120.334862715999947, 49.43360511600013 ], [ -120.332894791999962, 49.433502025000081 ], [ -120.332578255999977, 49.436078762000143 ], [ -120.327084891999959, 49.435790800000106 ], [ -120.327151977999961, 49.435245243000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4980469", "BldgCostT": "2620412", "sL_LossRatio": "0.997354969356896", "sL_AssetLoss": "448.388", "sL_BldgLoss": "447.202", "sL_StrLoss": "440.193", "sL_NStrLoss": "7.009", "sL_ContLoss": "1.186", "geom_point": "0101000020E6100000D72788D36C1A5EC0281A5A538FBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.410361461999941, 49.455563193000053 ], [ -120.415857692999936, 49.455846927000039 ], [ -120.415550026999966, 49.458387514000087 ], [ -120.415423204999939, 49.459434664000064 ], [ -120.409926550999927, 49.459150910000112 ], [ -120.41005434100002, 49.458096785000073 ], [ -120.410361461999941, 49.455563193000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4296667", "BldgCostT": "2466667", "sL_LossRatio": "0.960622869461485", "sL_AssetLoss": "564.998", "sL_BldgLoss": "542.75", "sL_StrLoss": "426.36", "sL_NStrLoss": "116.39", "sL_ContLoss": "22.248", "geom_point": "0101000020E61000005D38EF839C335EC015A353FC84894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.804393040999983, 49.072367601000053 ], [ -120.80787630899998, 49.07253620600013 ], [ -120.808283213999957, 49.072643701000054 ], [ -120.808695904999965, 49.072885799000034 ], [ -120.808811878999975, 49.073059601000097 ], [ -120.80855499299993, 49.073585103000077 ], [ -120.807381786999954, 49.074462405000062 ], [ -120.807385903999958, 49.074651905000074 ], [ -120.807559810999933, 49.074735908000058 ], [ -120.80954129299991, 49.075367 ], [ -120.809515174999959, 49.07560115600009 ], [ -120.809505123999955, 49.075691264000042 ], [ -120.80944582799999, 49.076222854000051 ], [ -120.803992055999927, 49.075958921000037 ], [ -120.80432147099998, 49.073008640000026 ], [ -120.804343943999967, 49.072807361000052 ], [ -120.804393040999983, 49.072367601000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4912917", "BldgCostT": "2891667", "sL_LossRatio": "0.555975926758466", "sL_AssetLoss": "1155.9889", "sL_BldgLoss": "642.702", "sL_StrLoss": "452.336", "sL_NStrLoss": "190.366", "sL_ContLoss": "513.2869", "geom_point": "0101000020E61000006F90BD9CA11C5EC08D04BFB2F7B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.449875804999948, 49.443382987000071 ], [ -120.450327462999923, 49.443406154000073 ], [ -120.450233165000014, 49.444189932000043 ], [ -120.449895767999976, 49.446994095000036 ], [ -120.444400382999916, 49.446712083000079 ], [ -120.4448325, 49.443124163000071 ], [ -120.449875804999948, 49.443382987000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19051552", "BldgCostT": "10378745", "sL_LossRatio": "0.977346375940508", "sL_AssetLoss": "1326.013", "sL_BldgLoss": "1295.974", "sL_StrLoss": "1150.56", "sL_NStrLoss": "145.414", "sL_ContLoss": "30.039", "geom_point": "0101000020E6100000E7D429EAA7265EC09C2F7A9720934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.60086219, 49.148622388000042 ], [ -120.60161898799997, 49.148260696000108 ], [ -120.601853547999937, 49.148000980000042 ], [ -120.604049189999984, 49.148111239000123 ], [ -120.604536565999965, 49.148135708000062 ], [ -120.604758635999957, 49.146223849000137 ], [ -120.605084091999942, 49.146397811000057 ], [ -120.605695401999952, 49.146510288000094 ], [ -120.607330005999955, 49.146444795000058 ], [ -120.608151913999933, 49.146174187000042 ], [ -120.608592199999947, 49.145876587000096 ], [ -120.609076313999964, 49.145262486 ], [ -120.609426928999966, 49.145280073000066 ], [ -120.609556939, 49.145286594 ], [ -120.610355383999959, 49.145326640000086 ], [ -120.610294398999926, 49.145852254000026 ], [ -120.611095393999946, 49.145892422000031 ], [ -120.610678861999972, 49.149482599000052 ], [ -120.605217653999972, 49.149208615000077 ], [ -120.605256208999947, 49.148876658000084 ], [ -120.605269974999928, 49.148758133000065 ], [ -120.605278700999961, 49.148683007000031 ], [ -120.604981354999936, 49.148668082000036 ], [ -120.604976390999923, 49.14871082600007 ], [ -120.604947570999968, 49.148958953000026 ], [ -120.604934047999933, 49.149075373000045 ], [ -120.604623233, 49.151751133000111 ], [ -120.603797147999941, 49.151709663000091 ], [ -120.603674048999906, 49.152769153000129 ], [ -120.602923671999946, 49.15273147700006 ], [ -120.602882232999903, 49.153088070000123 ], [ -120.597902019999964, 49.152837886000015 ], [ -120.59742064799994, 49.152813692000038 ], [ -120.597778062999936, 49.149740921000038 ], [ -120.598136324999984, 49.149238568 ], [ -120.598588549999988, 49.149261296000077 ], [ -120.59863001799999, 49.148904703000063 ], [ -120.599456049999944, 49.148946213000066 ], [ -120.59948446199995, 49.148701849000055 ], [ -120.600391503999901, 49.148720691000058 ], [ -120.60086219, 49.148622388000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3504250", "BldgCostT": "1945000", "sL_LossRatio": "0.990041640477687", "sL_AssetLoss": "203.648", "sL_BldgLoss": "201.62", "sL_StrLoss": "188.18", "sL_NStrLoss": "13.44", "sL_ContLoss": "2.028", "geom_point": "0101000020E610000085D42798B5335EC04FBB6FE708C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.805338989999939, 49.538235774000036 ], [ -120.810847414999898, 49.538499453000085 ], [ -120.810686018999959, 49.53993135200006 ], [ -120.809567995999942, 49.540170396000043 ], [ -120.808567707999899, 49.540583394000109 ], [ -120.80795281499995, 49.540724399000112 ], [ -120.806035602999927, 49.540013690000173 ], [ -120.805156563999944, 49.539852531000136 ], [ -120.805338989999939, 49.538235774000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4340053", "BldgCostT": "2178746", "sL_LossRatio": "0.97839506989519", "sL_AssetLoss": "377.923", "sL_BldgLoss": "369.758", "sL_StrLoss": "342.918", "sL_NStrLoss": "26.84", "sL_ContLoss": "8.165", "geom_point": "0101000020E6100000F0204D279F305EC0EB83FAD064C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.76273301899991, 49.543761298000092 ], [ -120.762397168999954, 49.54291513400004 ], [ -120.76237200199995, 49.542929292000082 ], [ -120.761883638999961, 49.542995532000113 ], [ -120.7606407009999, 49.543164096000083 ], [ -120.759550384999926, 49.543311992000035 ], [ -120.758021785999958, 49.543519289000102 ], [ -120.757848983999935, 49.543067110000024 ], [ -120.757645869, 49.542807448000111 ], [ -120.757538673999974, 49.542715630000053 ], [ -120.757076824999942, 49.542551696 ], [ -120.75675266199994, 49.542504436000037 ], [ -120.756282058999929, 49.542502441000103 ], [ -120.754971901999966, 49.542601476000094 ], [ -120.754544889999963, 49.542656695000112 ], [ -120.754204792999971, 49.542700675000049 ], [ -120.754227550999971, 49.542204376000058 ], [ -120.754371917, 49.542207179000059 ], [ -120.754418617999974, 49.541797347000077 ], [ -120.75542721, 49.54124560200011 ], [ -120.75595431, 49.541165909000036 ], [ -120.756042048999973, 49.541036281000117 ], [ -120.758340760999886, 49.54114739300006 ], [ -120.758369929999901, 49.540891226000078 ], [ -120.758400506, 49.540898100000149 ], [ -120.759015143999989, 49.541244099000011 ], [ -120.760279047999944, 49.541955561000123 ], [ -120.760718097, 49.542202696000118 ], [ -120.761888209999967, 49.542629994000059 ], [ -120.762466617999962, 49.542678405000075 ], [ -120.763278801999917, 49.542459088000093 ], [ -120.763908896000018, 49.54195920900009 ], [ -120.765403084999932, 49.54104339600007 ], [ -120.76577068099999, 49.540740199000041 ], [ -120.767726177999933, 49.540834547 ], [ -120.767371784999938, 49.540996611000068 ], [ -120.766470297999916, 49.541375285000164 ], [ -120.765766954999933, 49.541738470000105 ], [ -120.763778176999949, 49.542765289000073 ], [ -120.763259782999981, 49.543234222000066 ], [ -120.763156085, 49.543327996000123 ], [ -120.76273301899991, 49.543761298000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998751221631013", "sL_AssetLoss": "184.18", "sL_BldgLoss": "183.95", "sL_StrLoss": "182", "sL_NStrLoss": "1.95", "sL_ContLoss": "0.23", "geom_point": "0101000020E6100000D8C41BFC312E5EC094A2F8A53CC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.718864660999927, 49.532819272000054 ], [ -120.718970348999946, 49.531897828000062 ], [ -120.720244551999969, 49.531959875000133 ], [ -120.721121301999986, 49.532496688000087 ], [ -120.722072079999975, 49.532542294000088 ], [ -120.722819083999951, 49.532547999 ], [ -120.724399511999948, 49.53284670400005 ], [ -120.724223844999969, 49.534379776000037 ], [ -120.724221182999955, 49.534378394000086 ], [ -120.721353073999978, 49.533829292000078 ], [ -120.720772281999984, 49.533521303000057 ], [ -120.720210859999966, 49.533314702000084 ], [ -120.718864660999927, 49.532819272000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4120500", "BldgCostT": "2370000", "sL_LossRatio": "0.994959544079364", "sL_AssetLoss": "355.325", "sL_BldgLoss": "353.534", "sL_StrLoss": "342.654", "sL_NStrLoss": "10.88", "sL_ContLoss": "1.791", "geom_point": "0101000020E610000071A9CE9340375EC0D86AAC50E68F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.861080575999964, 49.122473785000068 ], [ -120.866540117999946, 49.122734802000075 ], [ -120.866395413999967, 49.124045097000113 ], [ -120.863733613999912, 49.126210892000117 ], [ -120.860683530999978, 49.12606503600005 ], [ -120.861080575999964, 49.122473785000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20813078", "BldgCostT": "11407410", "sL_LossRatio": "0.593945792983357", "sL_AssetLoss": "1593.041", "sL_BldgLoss": "946.18", "sL_StrLoss": "668.677", "sL_NStrLoss": "277.503", "sL_ContLoss": "646.861", "geom_point": "0101000020E6100000173B3324DB235EC07715AD3745B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.552217639999967, 49.426643157000058 ], [ -120.552257900999919, 49.425834352000052 ], [ -120.551844581999958, 49.425825597000028 ], [ -120.551898269999967, 49.424747189000108 ], [ -120.55231158, 49.424755944000054 ], [ -120.55232499899995, 49.424486341000041 ], [ -120.552738306999956, 49.424495095000054 ], [ -120.552751722999943, 49.424225492000083 ], [ -120.555231556999914, 49.42427797600007 ], [ -120.55524495899999, 49.424008374000067 ], [ -120.556071567999965, 49.424025857000089 ], [ -120.556084966999933, 49.423756254000075 ], [ -120.556498269999963, 49.423764993000091 ], [ -120.556511664999945, 49.423495390000092 ], [ -120.557751567, 49.423521598000072 ], [ -120.557738176999976, 49.423791201000071 ], [ -120.558978086, 49.423817397000093 ], [ -120.559004850999884, 49.423278190000111 ], [ -120.559418150999988, 49.423286918 ], [ -120.559431529999969, 49.423017314000099 ], [ -120.559844826999935, 49.423026042000082 ], [ -120.559858204999983, 49.422756438000121 ], [ -120.560271499999942, 49.422765163000079 ], [ -120.560298247999981, 49.422225956000069 ], [ -120.561124828999979, 49.422243402000049 ], [ -120.561138199999945, 49.421973798000117 ], [ -120.564031225999926, 49.422034813000018 ], [ -120.564084639999962, 49.420956395000132 ], [ -120.565324483999987, 49.42098252100002 ], [ -120.565311137999984, 49.421252126000084 ], [ -120.565724421999931, 49.421260832000016 ], [ -120.565697732999979, 49.421800042000079 ], [ -120.566751995999965, 49.421822243000051 ], [ -120.567350889999943, 49.421834850000053 ], [ -120.567297546, 49.42291327100002 ], [ -120.566884246999948, 49.42290457000005 ], [ -120.566857569999968, 49.423443781000117 ], [ -120.566444266999952, 49.423435078000075 ], [ -120.566417583999979, 49.423974288000117 ], [ -120.566004274999969, 49.42396558500009 ], [ -120.565977587999967, 49.424504795000061 ], [ -120.565564275999961, 49.424496089000108 ], [ -120.565537583999955, 49.425035298000054 ], [ -120.565124267999963, 49.425026591000076 ], [ -120.565110918, 49.425296196000062 ], [ -120.564096046999936, 49.42527481000014 ], [ -120.563044330999958, 49.425252639000099 ], [ -120.563084412999956, 49.424443826000108 ], [ -120.561844481999955, 49.424417675000072 ], [ -120.561831118, 49.424687279000061 ], [ -120.561417804999934, 49.424678558000053 ], [ -120.561391065999956, 49.425217767000049 ], [ -120.559737802999948, 49.425182871000061 ], [ -120.559764559999948, 49.424643663000104 ], [ -120.55852462799993, 49.424617476 ], [ -120.558511242999941, 49.424887079 ], [ -120.558097930999921, 49.424878348000057 ], [ -120.558044378, 49.425956760000062 ], [ -120.557237259999965, 49.425939705000047 ], [ -120.556264287000019, 49.425919136000054 ], [ -120.555151133999942, 49.425895592000082 ], [ -120.555144146999936, 49.426036147000055 ], [ -120.555137729999927, 49.426165195000081 ], [ -120.554629296999934, 49.426154438000019 ], [ -120.554311086999931, 49.426147705000105 ], [ -120.554304337999938, 49.426283362000049 ], [ -120.554297676999923, 49.426417307000058 ], [ -120.553983478999939, 49.426410657000098 ], [ -120.553471029999955, 49.426399811000095 ], [ -120.553459402000016, 49.426633513000084 ], [ -120.553457615999889, 49.426669413000042 ], [ -120.553401356999956, 49.426668222000053 ], [ -120.552217639999967, 49.426643157000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999118994479032", "sL_AssetLoss": "170.26", "sL_BldgLoss": "170.11", "sL_StrLoss": "169", "sL_NStrLoss": "1.11", "sL_ContLoss": "0.15", "geom_point": "0101000020E6100000D96A41B522225EC0364470B7FFB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.530087949999981, 49.422393922000069 ], [ -120.530142108999883, 49.42131553100009 ], [ -120.532208479999966, 49.421359674 ], [ -120.532194949999933, 49.421629272000054 ], [ -120.533021504999965, 49.421646919000111 ], [ -120.533035029999937, 49.421377321000065 ], [ -120.533861580999968, 49.421394962000065 ], [ -120.533875097999925, 49.421125363000058 ], [ -120.536354741999915, 49.421178250000075 ], [ -120.536300718999897, 49.422256645000097 ], [ -120.535887435999882, 49.422247834000061 ], [ -120.53587392799993, 49.42251743300011 ], [ -120.530087949999981, 49.422393922000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8687500", "BldgCostT": "5200000", "sL_LossRatio": "0.996061088637469", "sL_AssetLoss": "5265.922", "sL_BldgLoss": "5245.18", "sL_StrLoss": "5174", "sL_NStrLoss": "71.18", "sL_ContLoss": "20.742", "geom_point": "0101000020E61000001AAABDE36F215EC060FD651873B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.521561259999913, 49.446568754000062 ], [ -120.52160104299999, 49.446233772000028 ], [ -120.520113526999964, 49.44615845200007 ], [ -120.520539763, 49.442570230000044 ], [ -120.52151834199999, 49.442619782000101 ], [ -120.52161995699997, 49.441764100000043 ], [ -120.518796969999983, 49.441621127000133 ], [ -120.519223265999955, 49.43803288600008 ], [ -120.521822287999925, 49.438164520000079 ], [ -120.522078056999945, 49.436010347000071 ], [ -120.527572640999978, 49.436288427000108 ], [ -120.527510288999935, 49.436814123000069 ], [ -120.526841605999948, 49.437202907000014 ], [ -120.523864308999947, 49.438228305000045 ], [ -120.52355141, 49.438419106000055 ], [ -120.523290490999955, 49.438656999000024 ], [ -120.522997812999961, 49.439279400000025 ], [ -120.523147087999959, 49.44096560100013 ], [ -120.523443893999939, 49.441654991000064 ], [ -120.523589887999947, 49.441765991000089 ], [ -120.524378582999944, 49.441999598000066 ], [ -120.525428606999981, 49.442795693000086 ], [ -120.525556886999979, 49.442978 ], [ -120.525620400999955, 49.443644600000034 ], [ -120.52508097499998, 49.444460594000091 ], [ -120.524235584999971, 49.445091597000072 ], [ -120.522578512999985, 49.445954595000011 ], [ -120.521561259999913, 49.446568754000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71122667", "BldgCostT": "49546667", "sL_LossRatio": "0.999023391344061", "sL_AssetLoss": "229.77474", "sL_BldgLoss": "229.55034", "sL_StrLoss": "228.05954", "sL_NStrLoss": "1.4908", "sL_ContLoss": "0.2244", "geom_point": "0101000020E6100000E35D2671B3175EC070200B6EF7B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.376834765999945, 49.441147972000074 ], [ -120.376849154999903, 49.440878408000088 ], [ -120.376435765999972, 49.440869024000037 ], [ -120.376450157999926, 49.440599459000069 ], [ -120.375623384999955, 49.440580688000118 ], [ -120.375637779999963, 49.4403111230001 ], [ -120.374811013999974, 49.440292346000035 ], [ -120.374825412999897, 49.440022783000138 ], [ -120.374412031999952, 49.440013392000047 ], [ -120.37442643299994, 49.439743827000122 ], [ -120.373599676999973, 49.439725042000092 ], [ -120.373614082999964, 49.439455478000063 ], [ -120.371960581999986, 49.439417890000115 ], [ -120.371974996999967, 49.439148326000087 ], [ -120.371148252999916, 49.439129524000094 ], [ -120.371162670999951, 49.438859960000087 ], [ -120.37033593299999, 49.43884115100014 ], [ -120.370350356, 49.438571588000151 ], [ -120.369523621999946, 49.438552774000087 ], [ -120.369538047999939, 49.438283210000051 ], [ -120.369124683999985, 49.43827380000009 ], [ -120.369139113999964, 49.438004237000037 ], [ -120.368312390999947, 49.437985415000071 ], [ -120.368322343999935, 49.437799527000067 ], [ -120.365172914999945, 49.437635519000011 ], [ -120.364965825999931, 49.437624732000089 ], [ -120.365404022999954, 49.434037084000074 ], [ -120.365611097999931, 49.434047870000029 ], [ -120.370897417999956, 49.434323104000015 ], [ -120.370641670999973, 49.436419084000107 ], [ -120.370879083999952, 49.436424485000053 ], [ -120.370864663999953, 49.43669404700011 ], [ -120.371278016999923, 49.436703451000056 ], [ -120.371263599999907, 49.43697301400006 ], [ -120.371676953999895, 49.436982416000063 ], [ -120.371662537999953, 49.437251980000042 ], [ -120.372075894999924, 49.437261380000045 ], [ -120.372047066999954, 49.437800507000091 ], [ -120.37246043, 49.437809906000098 ], [ -120.372446017999948, 49.438079470000055 ], [ -120.373272745999941, 49.438098263000072 ], [ -120.37325833899996, 49.43836782700005 ], [ -120.373671705999968, 49.438377221000096 ], [ -120.37365729899993, 49.438646786000085 ], [ -120.37407066900002, 49.438656178000087 ], [ -120.374056266999958, 49.438925743000055 ], [ -120.375296380999956, 49.43895391400013 ], [ -120.37528198499993, 49.439223478000031 ], [ -120.375695359999924, 49.439232866000054 ], [ -120.375680963999955, 49.439502430000047 ], [ -120.376921094999943, 49.439530584000117 ], [ -120.376906709999957, 49.439800148000081 ], [ -120.378146849999951, 49.439828289000033 ], [ -120.378132467999961, 49.440097855000054 ], [ -120.37854585, 49.440107232000031 ], [ -120.378531470999988, 49.440376797000056 ], [ -120.379358241999952, 49.440395547000051 ], [ -120.37931511699999, 49.441204243000143 ], [ -120.376834765999945, 49.441147972000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3917250", "BldgCostT": "2205000", "sL_LossRatio": "0.381802215035483", "sL_AssetLoss": "1137.589", "sL_BldgLoss": "434.334", "sL_StrLoss": "169.774", "sL_NStrLoss": "264.56", "sL_ContLoss": "703.255", "geom_point": "0101000020E610000003C8B71423335EC08FFED98723894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.800042666999985, 49.074566920000088 ], [ -120.800078408, 49.07375792200007 ], [ -120.799667947999964, 49.073750095000037 ], [ -120.799763266999932, 49.07159276700007 ], [ -120.798942379, 49.071577109000067 ], [ -120.798918541999939, 49.072116441000063 ], [ -120.797687198999981, 49.072092941000072 ], [ -120.797722974999942, 49.071283945000097 ], [ -120.79813341499991, 49.071291779000063 ], [ -120.798157260999957, 49.070752448000064 ], [ -120.797336387999977, 49.070736779000086 ], [ -120.797348314999937, 49.070467112000088 ], [ -120.796527446999931, 49.070451438000106 ], [ -120.79651551699996, 49.070721102000114 ], [ -120.79528421, 49.070697578000079 ], [ -120.795296147999977, 49.07042791400012 ], [ -120.794885713999975, 49.070420069000129 ], [ -120.794909592999957, 49.069880739000013 ], [ -120.794088736999981, 49.069865046000075 ], [ -120.794124569999937, 49.069056051000089 ], [ -120.795052108000036, 49.069073784000096 ], [ -120.79550871699999, 49.069082509000076 ], [ -120.79740794599995, 49.069118785000093 ], [ -120.797391674999972, 49.069486733000126 ], [ -120.797387764999897, 49.069575090000029 ], [ -120.797384095, 49.069658116000085 ], [ -120.797735277999962, 49.06966482100011 ], [ -120.798060795999945, 49.069671034000081 ], [ -120.798204948999981, 49.069673786000081 ], [ -120.798203034000011, 49.069717112000028 ], [ -120.798198765000038, 49.06981367900007 ], [ -120.798193026999982, 49.069943451000078 ], [ -120.798611852999954, 49.069951443000065 ], [ -120.79889112099994, 49.069956772000083 ], [ -120.799013888, 49.069959114000049 ], [ -120.799011910999965, 49.070003829000093 ], [ -120.79900726299995, 49.070109034000012 ], [ -120.799001969999935, 49.070228781000019 ], [ -120.799323091999952, 49.070234907000028 ], [ -120.799619590999924, 49.070240562000016 ], [ -120.799822836999965, 49.070244437000049 ], [ -120.799819563999932, 49.070318464000088 ], [ -120.799814469999902, 49.070433817000065 ], [ -120.799810921999935, 49.070514104000111 ], [ -120.80001003299999, 49.070517901000095 ], [ -120.800322708999929, 49.070523863000069 ], [ -120.80063179199999, 49.070529756000035 ], [ -120.800626375999983, 49.070652419000034 ], [ -120.800620722999923, 49.070780434000049 ], [ -120.800619883999957, 49.070799422000078 ], [ -120.800666975999931, 49.07080032000006 ], [ -120.800990276999968, 49.070806482000073 ], [ -120.80103032199996, 49.070807246000101 ], [ -120.801029618999948, 49.070823139000048 ], [ -120.801023851999929, 49.070953755000104 ], [ -120.801018412999937, 49.07107691300007 ], [ -120.801323891999928, 49.071082735000083 ], [ -120.801657878999904, 49.071089099000069 ], [ -120.801839294999965, 49.071092555000057 ], [ -120.801836116999979, 49.071164549 ], [ -120.80183012199997, 49.071300370000102 ], [ -120.801827391999893, 49.07136222200004 ], [ -120.801980793, 49.071365144000048 ], [ -120.802237835000014, 49.071370041000094 ], [ -120.802233261999945, 49.071473682000082 ], [ -120.802225933999964, 49.071639707000031 ], [ -120.80258053499989, 49.071646463000093 ], [ -120.802636378999964, 49.071647526000085 ], [ -120.802635155999923, 49.071675247000037 ], [ -120.80258878299999, 49.072726192000097 ], [ -120.801767873999921, 49.072710553000029 ], [ -120.801708353999956, 49.074058884000131 ], [ -120.801297888999926, 49.074051062000102 ], [ -120.801274074999967, 49.07459039400009 ], [ -120.800042666999985, 49.074566920000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998965568198611", "sL_AssetLoss": "182.709", "sL_BldgLoss": "182.52", "sL_StrLoss": "181", "sL_NStrLoss": "1.52", "sL_ContLoss": "0.189", "geom_point": "0101000020E61000007014EECF642F5EC0E416D265DAC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.737876088999954, 49.538411507000063 ], [ -120.736893789999911, 49.537817611000087 ], [ -120.736823460999986, 49.537624740000098 ], [ -120.740177913999901, 49.537787474000027 ], [ -120.740138122999923, 49.53813575800006 ], [ -120.740356848999966, 49.538146366000078 ], [ -120.740474363999937, 49.537117748000078 ], [ -120.743981746999964, 49.537287783000053 ], [ -120.743249705999986, 49.537591086000049 ], [ -120.742840401999928, 49.538059690000068 ], [ -120.74251390699996, 49.538241999 ], [ -120.74156111399995, 49.538529700000026 ], [ -120.740517191999942, 49.538679191000021 ], [ -120.739378185999939, 49.538514007000082 ], [ -120.737876088999954, 49.538411507000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999410711601994", "sL_AssetLoss": "151.7084", "sL_BldgLoss": "151.619", "sL_StrLoss": "151", "sL_NStrLoss": "0.619", "sL_ContLoss": "0.0894", "geom_point": "0101000020E610000056304346B42B5EC06AF837E4768B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.683121925999941, 49.088741713000069 ], [ -120.684764138, 49.088774679000082 ], [ -120.684734695999964, 49.089407521000119 ], [ -120.684729900999912, 49.089510607000079 ], [ -120.68472650399994, 49.089583610000062 ], [ -120.684563553999936, 49.089580341000044 ], [ -120.684332415, 49.08957570100003 ], [ -120.683905384999932, 49.089567130000034 ], [ -120.683896517999955, 49.08975765700005 ], [ -120.683892834999966, 49.089836773000052 ], [ -120.683715508999953, 49.089833213000105 ], [ -120.683482274999974, 49.089828530000013 ], [ -120.683477429999982, 49.089932592000032 ], [ -120.683472538, 49.090037682000023 ], [ -120.683469721999955, 49.090098174000026 ], [ -120.683334695999974, 49.090095463000125 ], [ -120.683098594999962, 49.090090722000113 ], [ -120.683059158999953, 49.090089929000023 ], [ -120.68305834099999, 49.090107524000061 ], [ -120.683053412, 49.090213370000122 ], [ -120.683046605999948, 49.090359573000022 ], [ -120.682720264999944, 49.090353019000126 ], [ -120.68248167299997, 49.090348226000103 ], [ -120.68099377899999, 49.090318329000127 ], [ -120.681031473999923, 49.089509400000033 ], [ -120.681852591, 49.089525901000044 ], [ -120.681865149999936, 49.08925625900013 ], [ -120.682275706999945, 49.089264507000095 ], [ -120.682288263999951, 49.088994864000071 ], [ -120.683109373999983, 49.0890113560001 ], [ -120.683121925999941, 49.088741713000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9815083", "BldgCostT": "5878333", "sL_LossRatio": "0.652872348006728", "sL_AssetLoss": "2048.742", "sL_BldgLoss": "1337.567", "sL_StrLoss": "1069.747", "sL_NStrLoss": "267.82", "sL_ContLoss": "711.175", "geom_point": "0101000020E61000003882B7B4D81F5EC0B67880404AB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.485067236999924, 49.45326973800011 ], [ -120.48508103899999, 49.453000150000065 ], [ -120.485494565999886, 49.453009147000074 ], [ -120.485508365999948, 49.45273956000004 ], [ -120.486748936999916, 49.452766541000052 ], [ -120.486735142999947, 49.453036128000065 ], [ -120.487562197999978, 49.453054109000092 ], [ -120.487548409999974, 49.453323696000055 ], [ -120.489202528999968, 49.453359639000062 ], [ -120.489243865, 49.452550875000092 ], [ -120.488830340999925, 49.452541892000063 ], [ -120.488899242999963, 49.451193954000097 ], [ -120.489312754999958, 49.451202935000033 ], [ -120.489326531999922, 49.450933348000071 ], [ -120.489740041999937, 49.450942329000064 ], [ -120.489753815999975, 49.450672742 ], [ -120.490580832999953, 49.450690700000045 ], [ -120.490594602000016, 49.45042111100004 ], [ -120.491004633999978, 49.450430012000041 ], [ -120.491275080999969, 49.448165662000157 ], [ -120.491949879999979, 49.448200012000072 ], [ -120.491986501999918, 49.447482563000065 ], [ -120.492399983999988, 49.447491533000104 ], [ -120.492413742999972, 49.447221945000074 ], [ -120.492827221999988, 49.447230915 ], [ -120.492840977999919, 49.44696132500011 ], [ -120.493254455999974, 49.446970294000039 ], [ -120.493268209999954, 49.446700705000104 ], [ -120.494508636999939, 49.4467276 ], [ -120.494522385, 49.446458011000082 ], [ -120.495762805999959, 49.446484893000104 ], [ -120.495776545999945, 49.446215303000095 ], [ -120.496603490999973, 49.446233217000099 ], [ -120.496617224999937, 49.445963628000058 ], [ -120.49703069499995, 49.445972582000174 ], [ -120.497044427999967, 49.445702992000065 ], [ -120.497457895999943, 49.445711945000014 ], [ -120.497471627999943, 49.445442356000086 ], [ -120.497885092999979, 49.445451306000081 ], [ -120.497898819999961, 49.445181717000011 ], [ -120.499139213999953, 49.445208562000033 ], [ -120.49915293399999, 49.444938972000102 ], [ -120.499979858999964, 49.444956861000037 ], [ -120.499993574999976, 49.444687270000095 ], [ -120.500820495999946, 49.444705155000101 ], [ -120.500834206999969, 49.444435563000113 ], [ -120.502074583999956, 49.444462377000079 ], [ -120.502088287999982, 49.444192785000077 ], [ -120.503328659999966, 49.44421958600006 ], [ -120.503342357999927, 49.443949994 ], [ -120.504582723999974, 49.443976781000075 ], [ -120.504596414999938, 49.443707190000104 ], [ -120.505836776999956, 49.443733963000099 ], [ -120.505850459999948, 49.443464370000072 ], [ -120.507090816999906, 49.443491130000105 ], [ -120.507104492999986, 49.443221538000046 ], [ -120.509171747999943, 49.443266106000046 ], [ -120.509130753999926, 49.44407488300002 ], [ -120.508717295999944, 49.444065973000107 ], [ -120.508703627999978, 49.444335565000088 ], [ -120.508290168999906, 49.444326652000015 ], [ -120.508276497999972, 49.444596244000138 ], [ -120.507863034999929, 49.444587330000054 ], [ -120.507849361999973, 49.444856922000085 ], [ -120.507022434999953, 49.444839090000066 ], [ -120.507008756999966, 49.44510868100015 ], [ -120.506595291999986, 49.445099763000023 ], [ -120.506581609999955, 49.445369354000057 ], [ -120.505754673999959, 49.445351513000027 ], [ -120.505740990999954, 49.445621104000047 ], [ -120.505327519999938, 49.445612180000104 ], [ -120.50531383399999, 49.445881772000043 ], [ -120.504486888999963, 49.445863920000093 ], [ -120.504473196999982, 49.446133512000081 ], [ -120.504059722999898, 49.446124584000096 ], [ -120.504046027999905, 49.446394175000144 ], [ -120.50363255299996, 49.44638524500003 ], [ -120.5036051599999, 49.446924428000081 ], [ -120.5027782, 49.446906564000116 ], [ -120.502764497999976, 49.447176154000019 ], [ -120.50235101599999, 49.447167221000043 ], [ -120.502337310999948, 49.447436812000078 ], [ -120.501510341999932, 49.447418937000045 ], [ -120.501496632999974, 49.447688529000089 ], [ -120.500669661999893, 49.447670650000049 ], [ -120.500655948999963, 49.447940240000037 ], [ -120.499001997999969, 49.447904464 ], [ -120.498988273999927, 49.448174054000049 ], [ -120.49816129599999, 49.448156157000042 ], [ -120.498133840999984, 49.448695336000057 ], [ -120.496744679999949, 49.448665260000077 ], [ -120.496689323999973, 49.449129212000088 ], [ -120.492522657999956, 49.449191265000124 ], [ -120.49183077, 49.449163467000112 ], [ -120.491759074999919, 49.449939886000031 ], [ -120.49175434199995, 49.449990646000074 ], [ -120.491535043999974, 49.452365475000086 ], [ -120.491499051999966, 49.453405732000107 ], [ -120.48131587599994, 49.453766358000038 ], [ -120.48131784899999, 49.45372787200008 ], [ -120.481731379999957, 49.453736882000022 ], [ -120.481745199999963, 49.453467295000124 ], [ -120.48381284599999, 49.453512324 ], [ -120.483826654999945, 49.453242738000043 ], [ -120.485067236999924, 49.45326973800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3765250", "BldgCostT": "2125000", "sL_LossRatio": "0.988399616764667", "sL_AssetLoss": "212.924", "sL_BldgLoss": "210.454", "sL_StrLoss": "191.724", "sL_NStrLoss": "18.73", "sL_ContLoss": "2.47", "geom_point": "0101000020E6100000E5615FBA222C5EC06DA411D8C1C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.695481293999933, 49.508410508000104 ], [ -120.693597502, 49.507365084000092 ], [ -120.691540561999943, 49.507033637000056 ], [ -120.691560204, 49.506979763000125 ], [ -120.691622710999951, 49.506808208000095 ], [ -120.691435607999978, 49.506715208000074 ], [ -120.690884212999904, 49.506636703000098 ], [ -120.689117133999943, 49.506181207000111 ], [ -120.687549899999951, 49.505731689000065 ], [ -120.686475009999953, 49.505525692000091 ], [ -120.685863779999949, 49.505449705000089 ], [ -120.684137610000036, 49.505383993000102 ], [ -120.681196503999985, 49.50522158600004 ], [ -120.681226003999925, 49.505050695000094 ], [ -120.681319992999988, 49.504955204000069 ], [ -120.68213341399999, 49.504442106000056 ], [ -120.682924388999965, 49.503762692000123 ], [ -120.683404093999968, 49.503682491000127 ], [ -120.683620603999913, 49.503760788000072 ], [ -120.683893885999964, 49.504018697000099 ], [ -120.684091200999958, 49.504323393000035 ], [ -120.684221203999968, 49.504719510000037 ], [ -120.684298817999903, 49.504778407000039 ], [ -120.684518978999918, 49.504836997000076 ], [ -120.68529781, 49.504898583000134 ], [ -120.688692894, 49.505059705000136 ], [ -120.689076902999943, 49.50505273300007 ], [ -120.689983776999924, 49.505036293000039 ], [ -120.690033144, 49.505032060000062 ], [ -120.690478517999978, 49.504993800000058 ], [ -120.69101290199994, 49.50489550300005 ], [ -120.691345932999937, 49.504788429000094 ], [ -120.691731378999989, 49.504664500000082 ], [ -120.692032291999979, 49.504514188000016 ], [ -120.692345800999959, 49.504282800000098 ], [ -120.692559918999947, 49.504287074000047 ], [ -120.692521858999953, 49.505095950000083 ], [ -120.691693802999978, 49.50507942400003 ], [ -120.691684376999945, 49.505279693000027 ], [ -120.692248054999965, 49.505307302000055 ], [ -120.69212306599999, 49.506392178000063 ], [ -120.692925702999929, 49.506431487000064 ], [ -120.692909612999955, 49.506571163000075 ], [ -120.69501064399995, 49.506674030000077 ], [ -120.694984237999947, 49.506903340000108 ], [ -120.695353647999951, 49.506921421000065 ], [ -120.695353287999964, 49.506924543000139 ], [ -120.695853131999954, 49.506949008000106 ], [ -120.695746109999959, 49.507878531000124 ], [ -120.696409472999946, 49.507910995 ], [ -120.696402840999923, 49.507968603000087 ], [ -120.697070555999957, 49.508001277000048 ], [ -120.696978961999946, 49.508796960000033 ], [ -120.696805403999946, 49.508769390000047 ], [ -120.695481293999933, 49.508410508000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8460553", "BldgCostT": "4548746", "sL_LossRatio": "0.998873909954836", "sL_AssetLoss": "490.0141", "sL_BldgLoss": "489.4623", "sL_StrLoss": "486.1197", "sL_NStrLoss": "3.3426", "sL_ContLoss": "0.5518", "geom_point": "0101000020E61000009E850CFDF61B5EC0BF3B859E45B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.434201935999951, 49.410530591000075 ], [ -120.434319900999938, 49.409552152000074 ], [ -120.433774684999932, 49.409524082000075 ], [ -120.434207279999939, 49.405936009000122 ], [ -120.439697759999916, 49.406218554000112 ], [ -120.43957991699989, 49.407197003000078 ], [ -120.440125107999961, 49.407225045000082 ], [ -120.439692960999963, 49.410813135000069 ], [ -120.434201935999951, 49.410530591000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512083", "BldgCostT": "2158333", "sL_LossRatio": "0.997744234049777", "sL_AssetLoss": "1920.412", "sL_BldgLoss": "1916.08", "sL_StrLoss": "1902", "sL_NStrLoss": "14.08", "sL_ContLoss": "4.332", "geom_point": "0101000020E6100000D7B4FFBF79275EC09D0AB8E779AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.614272334999981, 49.353351468000021 ], [ -120.619757661, 49.353624907000054 ], [ -120.619339932999978, 49.357213989000059 ], [ -120.613854183999976, 49.35694052900002 ], [ -120.614272334999981, 49.353351468000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512083", "BldgCostT": "2158333", "sL_LossRatio": "0.998097196130955", "sL_AssetLoss": "1667.1713", "sL_BldgLoss": "1663.999", "sL_StrLoss": "1658", "sL_NStrLoss": "5.999", "sL_ContLoss": "3.1723", "geom_point": "0101000020E6100000FBCDABD7801C5EC05F69CF1B5DBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.447735005999945, 49.454283108000055 ], [ -120.448328132999947, 49.454313536000051 ], [ -120.447960001999917, 49.457371342000059 ], [ -120.447896180999933, 49.457901411000087 ], [ -120.44239951099999, 49.457619301000122 ], [ -120.44283188699994, 49.454031447000013 ], [ -120.447735005999945, 49.454283108000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998937517878305", "sL_AssetLoss": "195.768", "sL_BldgLoss": "195.56", "sL_StrLoss": "194", "sL_NStrLoss": "1.56", "sL_ContLoss": "0.208", "geom_point": "0101000020E6100000A7BBC2EDD6355EC0DDCD531DF2C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.838518623999903, 49.539432150000088 ], [ -120.838690515999957, 49.537898856000041 ], [ -120.844199089999933, 49.538160845000057 ], [ -120.844090303999934, 49.539132274000039 ], [ -120.842963099999949, 49.539277403000064 ], [ -120.84182930399993, 49.539283090000083 ], [ -120.840795393999912, 49.539200508000093 ], [ -120.839912918999971, 49.539157697000064 ], [ -120.838657700999946, 49.539431200000138 ], [ -120.838518623999903, 49.539432150000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92037667", "BldgCostT": "62316667", "sL_LossRatio": "0.78758105596386", "sL_AssetLoss": "10838.8539", "sL_BldgLoss": "8536.476", "sL_StrLoss": "7628.351", "sL_NStrLoss": "908.125", "sL_ContLoss": "2302.3779", "geom_point": "0101000020E6100000FA00F634D4315EC00FAAC3C029884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.776066196999977, 49.068709349000066 ], [ -120.776078238999915, 49.068439687000186 ], [ -120.775257415999974, 49.068423862000017 ], [ -120.775269460999965, 49.068154199000055 ], [ -120.774859052999943, 49.068146284000051 ], [ -120.774871100999988, 49.06787662300006 ], [ -120.774050288999931, 49.067860788000097 ], [ -120.774062338999983, 49.067591127000071 ], [ -120.773651934999933, 49.067583208000073 ], [ -120.773663989999989, 49.067313546000022 ], [ -120.773253587999989, 49.067305625000103 ], [ -120.773265644999952, 49.067035964000112 ], [ -120.772034446999939, 49.067012193000032 ], [ -120.772046508999964, 49.066742531000102 ], [ -120.771636112999886, 49.066734605000086 ], [ -120.771648177999964, 49.06646494400006 ], [ -120.77123778299989, 49.066457015000061 ], [ -120.77127398099995, 49.06564803400002 ], [ -120.77209277099999, 49.065663850000121 ], [ -120.772156472999953, 49.065096723000089 ], [ -120.770620292999979, 49.065021853000118 ], [ -120.770591827999979, 49.06527520000008 ], [ -120.765139556999941, 49.065009291000081 ], [ -120.765160281999925, 49.064825023 ], [ -120.763568716999927, 49.064747349000065 ], [ -120.763584633999983, 49.064605870000044 ], [ -120.762903705, 49.064572631000019 ], [ -120.763307755999946, 49.060981403000035 ], [ -120.76331194899997, 49.060981607000095 ], [ -120.763350773999946, 49.060636503000062 ], [ -120.764421966, 49.060688790000093 ], [ -120.768802522999962, 49.060902503000079 ], [ -120.768795876999931, 49.060961630000051 ], [ -120.768792243999911, 49.060993966000119 ], [ -120.769264411999927, 49.06101699000007 ], [ -120.769251845999975, 49.061128820000114 ], [ -120.769422272999961, 49.061137130000056 ], [ -120.769427330999989, 49.06102414000005 ], [ -120.769965346999953, 49.061034543000055 ], [ -120.770557798999974, 49.061045995000029 ], [ -120.7705660399999, 49.060972648000103 ], [ -120.770575261, 49.060890573000037 ], [ -120.77212014899996, 49.060965874000082 ], [ -120.772147604999986, 49.060721409000024 ], [ -120.772428355999921, 49.060735092000058 ], [ -120.772458405999913, 49.060467516000053 ], [ -120.772918737999959, 49.060489947000043 ], [ -120.772936391999949, 49.060332727000116 ], [ -120.775492096, 49.060457231000036 ], [ -120.77550268499995, 49.060362887000053 ], [ -120.777705706999882, 49.060470161000055 ], [ -120.777709590999933, 49.060435539000039 ], [ -120.778548153999964, 49.060476360000081 ], [ -120.778566661999932, 49.060311359000139 ], [ -120.782030602999939, 49.060479912000098 ], [ -120.782047616999975, 49.06032814100007 ], [ -120.782548071999969, 49.060352483000059 ], [ -120.782549094999979, 49.060343353000114 ], [ -120.783042705999975, 49.060367360000036 ], [ -120.783046873999965, 49.060330164000085 ], [ -120.785486668999965, 49.060448792000024 ], [ -120.785492110999968, 49.06045110900007 ], [ -120.787046301999936, 49.060552200000068 ], [ -120.787458618999949, 49.060839899000051 ], [ -120.787490894999962, 49.061361096000063 ], [ -120.78775588299996, 49.061529196000073 ], [ -120.788786015999975, 49.061774199000119 ], [ -120.789509186999936, 49.061823991000082 ], [ -120.790102104999946, 49.062058989000079 ], [ -120.790453192999948, 49.062182890000045 ], [ -120.791235089999972, 49.062117409000074 ], [ -120.791821611999978, 49.062191495000093 ], [ -120.79228250499996, 49.062568907000106 ], [ -120.792567520999967, 49.062970505000067 ], [ -120.792875679999938, 49.063128592000055 ], [ -120.79349662, 49.063200152000057 ], [ -120.793432679999952, 49.063771772000109 ], [ -120.793100736999975, 49.066739066000089 ], [ -120.792930800999954, 49.066730818000082 ], [ -120.792896045999925, 49.067041471000046 ], [ -120.791208352999931, 49.066959547000124 ], [ -120.791034438999958, 49.066951103000086 ], [ -120.788970923999955, 49.066850896000091 ], [ -120.78896687400001, 49.06688706300006 ], [ -120.7835143099999, 49.066622088000045 ], [ -120.783536503999969, 49.066424072000061 ], [ -120.783151278999952, 49.066416669000077 ], [ -120.783162217999973, 49.066170880000115 ], [ -120.782349767999932, 49.06613137100004 ], [ -120.780700916999962, 49.066099663000081 ], [ -120.780628822999958, 49.067717639000129 ], [ -120.778987198, 49.067686046000112 ], [ -120.778999222999914, 49.067416383000115 ], [ -120.777768012999971, 49.067392674000111 ], [ -120.777719885999943, 49.068471322000057 ], [ -120.777309472999946, 49.068463416000036 ], [ -120.777297439999955, 49.068733076000093 ], [ -120.776066196999977, 49.068709349000066 ] ], [ [ -120.777393709999942, 49.066575782000058 ], [ -120.777399771999967, 49.066439938 ], [ -120.776170198999964, 49.066380076 ], [ -120.776162520999904, 49.066552054000113 ], [ -120.777393709999942, 49.066575782000058 ] ], [ [ -120.779047319999975, 49.066337733000061 ], [ -120.779068955999932, 49.065852531000125 ], [ -120.777827504999948, 49.065792109000064 ], [ -120.777769045999989, 49.066313118000018 ], [ -120.779047319999975, 49.066337733000061 ] ], [ [ -120.77990417, 49.065544545000151 ], [ -120.77991618899992, 49.065274882000061 ], [ -120.779870084, 49.065273995000048 ], [ -120.779839879999912, 49.065543308000024 ], [ -120.77990417, 49.065544545000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999553282860855", "sL_AssetLoss": "137.2233", "sL_BldgLoss": "137.162", "sL_StrLoss": "137", "sL_NStrLoss": "0.162", "sL_ContLoss": "0.0613", "geom_point": "0101000020E61000007C18CEF3AF215EC065F1CDFC0BB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.526727461999968, 49.423401602000055 ], [ -120.526741019000028, 49.423132005000092 ], [ -120.52550115799994, 49.423105464000074 ], [ -120.525514722999958, 49.422835868000114 ], [ -120.524274868999967, 49.422809314000034 ], [ -120.524302012999968, 49.422270121000054 ], [ -120.523888733, 49.422261267000081 ], [ -120.523956598999973, 49.420913286000044 ], [ -120.525609673999924, 49.420948691000063 ], [ -120.52559611, 49.421218287000045 ], [ -120.527249197999978, 49.421253669000087 ], [ -120.527235641999965, 49.421523267000033 ], [ -120.527648916999965, 49.421532109000061 ], [ -120.527635363999948, 49.421801705000121 ], [ -120.528048640999927, 49.421810546000124 ], [ -120.528021538999951, 49.422349741000076 ], [ -120.528848102999987, 49.422367418000064 ], [ -120.528834556999954, 49.422637015000085 ], [ -120.529247839999968, 49.422645852000095 ], [ -120.52920720699997, 49.423454643000085 ], [ -120.526727461999968, 49.423401602000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463750", "BldgCostT": "2125000", "sL_LossRatio": "0.996519863339963", "sL_AssetLoss": "2168.593", "sL_BldgLoss": "2161.046", "sL_StrLoss": "2137", "sL_NStrLoss": "24.046", "sL_ContLoss": "7.547", "geom_point": "0101000020E61000003BE93BC7D9255EC065A88AA974B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.588880223999951, 49.431316096000032 ], [ -120.594374648999946, 49.431590791000112 ], [ -120.593954243999988, 49.435179360000078 ], [ -120.588459394999973, 49.434904645000103 ], [ -120.588880223999951, 49.431316096000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "0.996387509016626", "sL_AssetLoss": "342.423", "sL_BldgLoss": "341.186", "sL_StrLoss": "333.486", "sL_NStrLoss": "7.7", "sL_ContLoss": "1.237", "geom_point": "0101000020E61000005818090ACF255EC075D37F39A7934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.587614087999953, 49.15456362000004 ], [ -120.587616743999945, 49.154540827000062 ], [ -120.58709007299997, 49.154514306000117 ], [ -120.587105917999963, 49.154378365000085 ], [ -120.587153527999988, 49.153969867000136 ], [ -120.587193099999979, 49.153879207000045 ], [ -120.587363497999917, 49.153766695000073 ], [ -120.58770459099992, 49.153251111 ], [ -120.588328182999959, 49.152823902000115 ], [ -120.590565887999972, 49.151952299000129 ], [ -120.59113081199996, 49.151873907 ], [ -120.592408706, 49.152405208000012 ], [ -120.594002080999957, 49.152894889 ], [ -120.593975678, 49.153121723000041 ], [ -120.593809935999943, 49.154545578000125 ], [ -120.593113997999964, 49.154510574 ], [ -120.593075819999967, 49.154838495000078 ], [ -120.587614087999953, 49.15456362000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35343578", "BldgCostT": "20542410", "sL_LossRatio": "0.916305918300847", "sL_AssetLoss": "4340.0058", "sL_BldgLoss": "3976.773", "sL_StrLoss": "3771.229", "sL_NStrLoss": "205.544", "sL_ContLoss": "363.2328", "geom_point": "0101000020E6100000ECF70EC86F1D5EC02BE28D2FCEBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.445167005999963, 49.466238205000124 ], [ -120.44328920699995, 49.465189998000071 ], [ -120.443109979000013, 49.465185695000045 ], [ -120.442516492000024, 49.46494790100013 ], [ -120.442494948999965, 49.464930070000037 ], [ -120.442604648000014, 49.464019971000042 ], [ -120.443520297999967, 49.464066976 ], [ -120.443525680000036, 49.463963599000067 ], [ -120.443112073999913, 49.463954451000113 ], [ -120.443151423999922, 49.463198749000128 ], [ -120.443154185999902, 49.463145717000025 ], [ -120.443420828999976, 49.463151615000122 ], [ -120.44356778299999, 49.463154866000089 ], [ -120.443569303999936, 49.463125638000079 ], [ -120.443581816999966, 49.46288528700007 ], [ -120.443995413, 49.462894435000059 ], [ -120.444009443999903, 49.462624856000097 ], [ -120.44442303799994, 49.462634001000012 ], [ -120.444437067999957, 49.462364423000047 ], [ -120.445264251999916, 49.462382707000103 ], [ -120.445278274999964, 49.462113130000084 ], [ -120.446105454999952, 49.462131409000023 ], [ -120.446119473999929, 49.461861831000093 ], [ -120.446528701, 49.461870871000031 ], [ -120.446569918999941, 49.461528655000045 ], [ -120.44677912499999, 49.461539389000066 ], [ -120.44681322299999, 49.461256261000088 ], [ -120.448070787999924, 49.461320771000061 ], [ -120.448493441999958, 49.457810289000108 ], [ -120.448570359999948, 49.457814235000065 ], [ -120.448587729999971, 49.457669947000028 ], [ -120.448619758999939, 49.457403891000077 ], [ -120.449298618999975, 49.457438709 ], [ -120.44932503899993, 49.457219207000016 ], [ -120.450290677999973, 49.457268726000066 ], [ -120.450332413999902, 49.456921930000078 ], [ -120.45502138099999, 49.457162262000097 ], [ -120.455051515999969, 49.456911641000033 ], [ -120.460548179999947, 49.457193109000087 ], [ -120.460468096999975, 49.457859758000033 ], [ -120.462058874999968, 49.457894697000064 ], [ -120.462072805, 49.457625115000035 ], [ -120.46294623199995, 49.457644290000054 ], [ -120.463254173999957, 49.455079527000088 ], [ -120.4646723199999, 49.45515206800011 ], [ -120.464893800999974, 49.453306760000054 ], [ -120.470390096999921, 49.453587730000031 ], [ -120.470286803999926, 49.454449202000106 ], [ -120.472555080999967, 49.454565074000108 ], [ -120.47220830899991, 49.457458139000096 ], [ -120.472125008999939, 49.458153044 ], [ -120.470831838, 49.458086990000048 ], [ -120.47074367099999, 49.458085061000105 ], [ -120.47074380399998, 49.458082493000042 ], [ -120.469092033999942, 49.457998099000051 ], [ -120.468928233999947, 49.461176533000071 ], [ -120.471118674999971, 49.461288440000054 ], [ -120.471229850999961, 49.46036122800006 ], [ -120.472971371999975, 49.460450168000122 ], [ -120.47451109, 49.460528779000072 ], [ -120.47644360699995, 49.461551298000082 ], [ -120.476446193999948, 49.461552656000102 ], [ -120.478616879999947, 49.462072436 ], [ -120.478691677999961, 49.4620709000001 ], [ -120.479495086999947, 49.461978282000132 ], [ -120.479667003999907, 49.461935463000017 ], [ -120.479649547999898, 49.462081270000127 ], [ -120.480097394999973, 49.462104109000052 ], [ -120.478986713999944, 49.462465497000053 ], [ -120.478247896999932, 49.46259370700011 ], [ -120.477690507999981, 49.462697592000069 ], [ -120.476861688, 49.462716197000098 ], [ -120.475453098999949, 49.462442713000044 ], [ -120.473642105999929, 49.462231909000081 ], [ -120.472015798999962, 49.46191718900009 ], [ -120.470568406000012, 49.461894387000079 ], [ -120.468077302, 49.462028285000088 ], [ -120.467015485999937, 49.462005490000124 ], [ -120.465826398999951, 49.461799006000028 ], [ -120.464219888999978, 49.461629513000112 ], [ -120.462646116999935, 49.461109697000069 ], [ -120.46171629499996, 49.460944387000026 ], [ -120.46135610099995, 49.460945890000048 ], [ -120.460606388999949, 49.460776388000113 ], [ -120.457537582999947, 49.460601194000091 ], [ -120.455288005999989, 49.460613995000095 ], [ -120.454470112999942, 49.460668100000113 ], [ -120.453104503999981, 49.460934492000057 ], [ -120.452586915, 49.461041307000038 ], [ -120.451686502999948, 49.461363188000085 ], [ -120.45130489899999, 49.461813190000015 ], [ -120.451237523, 49.462297405000108 ], [ -120.45094202199995, 49.462686305000076 ], [ -120.450714511999948, 49.462834399000066 ], [ -120.449416211999946, 49.463381293000111 ], [ -120.448782312999938, 49.464150296000099 ], [ -120.448447996999903, 49.464754209000098 ], [ -120.447624106999967, 49.465716995000015 ], [ -120.446667419000036, 49.466335106000074 ], [ -120.446106712999892, 49.466476099000054 ], [ -120.445167005999963, 49.466238205000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2800167", "BldgCostT": "1721667", "sL_LossRatio": "0.536314458403086", "sL_AssetLoss": "934.5465", "sL_BldgLoss": "501.2108", "sL_StrLoss": "338.4908", "sL_NStrLoss": "162.72", "sL_ContLoss": "433.3357", "geom_point": "0101000020E61000003186E6F8301F5EC064C68091BCB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.484832209999922, 49.417883025000044 ], [ -120.490324414999947, 49.418163 ], [ -120.48989605899996, 49.421751232000112 ], [ -120.484403429999972, 49.421471237000041 ], [ -120.484832209999922, 49.417883025000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4747250", "BldgCostT": "2855000", "sL_LossRatio": "0.594100723194315", "sL_AssetLoss": "724.41388", "sL_BldgLoss": "430.37481", "sL_StrLoss": "324.04681", "sL_NStrLoss": "106.328", "sL_ContLoss": "294.03907", "geom_point": "0101000020E610000053B66177AE0F5EC04E34DD2550B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.24394141399992, 49.402238500000053 ], [ -120.24263840699993, 49.401875407000013 ], [ -120.241975001999961, 49.401903790000084 ], [ -120.240930603999971, 49.402121696000059 ], [ -120.240453193999954, 49.402020602000086 ], [ -120.239265394999933, 49.40205479800008 ], [ -120.238180833999934, 49.40190595200005 ], [ -120.238295281999967, 49.400988943000094 ], [ -120.23847172399995, 49.399575127000126 ], [ -120.240467327999966, 49.399681501000046 ], [ -120.240487242999919, 49.399521874000072 ], [ -120.241027570999961, 49.399550669000099 ], [ -120.241032719999964, 49.399509387000059 ], [ -120.246521236999939, 49.399801725000046 ], [ -120.246518876999943, 49.399820670000096 ], [ -120.246617153999921, 49.39982590200006 ], [ -120.246644679999989, 49.399605018000109 ], [ -120.252133244999925, 49.399897073000034 ], [ -120.251922556999929, 49.401589296000104 ], [ -120.251866375999981, 49.402040518000035 ], [ -120.250253908999937, 49.40203770100004 ], [ -120.249256218999946, 49.401879607000126 ], [ -120.247823677999961, 49.401863997000078 ], [ -120.246503198999946, 49.402299788000043 ], [ -120.246079717999962, 49.402452207000067 ], [ -120.245553917999985, 49.402502002000091 ], [ -120.245270777999934, 49.40240519700005 ], [ -120.24394141399992, 49.402238500000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15148161", "BldgCostT": "8735743", "sL_LossRatio": "0.99727931634351", "sL_AssetLoss": "3060.0397", "sL_BldgLoss": "3051.7143", "sL_StrLoss": "3012.2533", "sL_NStrLoss": "39.461", "sL_ContLoss": "8.3254", "geom_point": "0101000020E610000059FD4B31CB245EC0EE5A6BBD99B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.573514985999921, 49.414173188000106 ], [ -120.573675211999927, 49.412810077000131 ], [ -120.568978324999946, 49.412574268000121 ], [ -120.569098589999939, 49.411551957000015 ], [ -120.568114961999981, 49.411502547000104 ], [ -120.568537156999966, 49.407913954000072 ], [ -120.574028679999969, 49.408189690000086 ], [ -120.573996990999959, 49.40845933700006 ], [ -120.576366522999948, 49.408578227000106 ], [ -120.576117966999945, 49.41069402400008 ], [ -120.576149573999913, 49.41069561000009 ], [ -120.576354071999944, 49.408954839000081 ], [ -120.58184576799999, 49.409230178000016 ], [ -120.581424595999977, 49.412818817000129 ], [ -120.579211692999962, 49.412707902000108 ], [ -120.579007282999925, 49.414448669000073 ], [ -120.573514985999921, 49.414173188000106 ] ], [ [ -120.576072082999985, 49.410978899000092 ], [ -120.575493301, 49.410399311000084 ], [ -120.574028183999985, 49.410198404000063 ], [ -120.573775012999988, 49.410849305000099 ], [ -120.573078497999944, 49.411572786000107 ], [ -120.57336520299998, 49.411884709000098 ], [ -120.574642596999922, 49.412531310000126 ], [ -120.57511370099995, 49.41250570200004 ], [ -120.575978098999911, 49.412307693000066 ], [ -120.577292487999898, 49.411661107000079 ], [ -120.577260205999963, 49.411461695000135 ], [ -120.577060606999964, 49.411313604000021 ], [ -120.576072082999985, 49.410978899000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4674750", "BldgCostT": "2805000", "sL_LossRatio": "0.574208242622288", "sL_AssetLoss": "798.67617", "sL_BldgLoss": "458.60644", "sL_StrLoss": "335.09654", "sL_NStrLoss": "123.5099", "sL_ContLoss": "340.06973", "geom_point": "0101000020E61000001EC8B4153F175EC0756D350C1BBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.360989275999927, 49.455610609000118 ], [ -120.361057135999914, 49.45505568600003 ], [ -120.359601819999938, 49.454979844000022 ], [ -120.360040597999898, 49.451392308000031 ], [ -120.3634702199999, 49.451571008000045 ], [ -120.365536021999944, 49.451678594000022 ], [ -120.365393497999918, 49.45284509500005 ], [ -120.366848755999939, 49.452920860000049 ], [ -120.366522154999984, 49.455594419000121 ], [ -120.366410490999925, 49.456508416000048 ], [ -120.362889108, 49.456325049000107 ], [ -120.360914488, 49.456222176000097 ], [ -120.360989275999927, 49.455610609000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.634666548396213", "sL_AssetLoss": "879.3405", "sL_BldgLoss": "558.088", "sL_StrLoss": "439.216", "sL_NStrLoss": "118.872", "sL_ContLoss": "321.2525", "geom_point": "0101000020E6100000A99A074DDE1A5EC02FD7263E8CBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.417292676999963, 49.455473755000078 ], [ -120.422788937999925, 49.455757137000042 ], [ -120.422422519999898, 49.458786624 ], [ -120.422372961999912, 49.45919633200009 ], [ -120.421721697999956, 49.459312265000058 ], [ -120.416858304999963, 49.459061500000132 ], [ -120.416930200999929, 49.458467701000089 ], [ -120.417292676999963, 49.455473755000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17751500", "BldgCostT": "9800000", "sL_LossRatio": "0.591563194579808", "sL_AssetLoss": "1615.5001", "sL_BldgLoss": "955.6704", "sL_StrLoss": "688.7204", "sL_NStrLoss": "266.95", "sL_ContLoss": "659.8297", "geom_point": "0101000020E61000004045DD20FD245EC0493EFA4F4C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.577537753999962, 49.16840381 ], [ -120.577599946999925, 49.16787132300005 ], [ -120.575066808999949, 49.167743544000125 ], [ -120.575091757999985, 49.167530035 ], [ -120.570760781999979, 49.167311427000058 ], [ -120.570907173999956, 49.166059542000056 ], [ -120.570964437, 49.165569834000124 ], [ -120.571510781999976, 49.165768506000056 ], [ -120.571919001999973, 49.166091788000038 ], [ -120.572098282999931, 49.166104599000029 ], [ -120.57234888, 49.166027699000068 ], [ -120.57288758199995, 49.165670198000051 ], [ -120.57428299599998, 49.164351395000033 ], [ -120.574448377999957, 49.164327195000084 ], [ -120.57479460399999, 49.164550786000078 ], [ -120.575053590999943, 49.164565109000073 ], [ -120.575343080999943, 49.164841300000028 ], [ -120.57596130599994, 49.164799996000049 ], [ -120.576703906999967, 49.164482405000065 ], [ -120.577511985999976, 49.163672097000095 ], [ -120.577858077999963, 49.163616498000124 ], [ -120.578433180000019, 49.163934099000066 ], [ -120.578970904999949, 49.16498948600006 ], [ -120.579462599999928, 49.165287099000054 ], [ -120.580484314999978, 49.1651646 ], [ -120.581170404, 49.164909698000031 ], [ -120.581973142999971, 49.164415215000069 ], [ -120.582484449999967, 49.164440982000052 ], [ -120.58346375299999, 49.164490323000045 ], [ -120.583394036999948, 49.165087923000101 ], [ -120.583419892999956, 49.165089226000141 ], [ -120.583001051999972, 49.16867919000007 ], [ -120.577537753999962, 49.16840381 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24069533", "BldgCostT": "13605546", "sL_LossRatio": "0.75958588563948", "sL_AssetLoss": "2262.9208", "sL_BldgLoss": "1718.8827", "sL_StrLoss": "1501.0657", "sL_NStrLoss": "217.817", "sL_ContLoss": "544.0381", "geom_point": "0101000020E6100000B053CD28ED235EC079F34C1614AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.560982922999969, 49.358335896000085 ], [ -120.560985828999932, 49.358277178000066 ], [ -120.560781799999944, 49.358272870000079 ], [ -120.560573072999944, 49.358268463000073 ], [ -120.560575993999947, 49.358209450000125 ], [ -120.560586416999968, 49.357998857000055 ], [ -120.560173663999947, 49.357990141000073 ], [ -120.560187008999961, 49.357720533000055 ], [ -120.559774259000022, 49.357711816000105 ], [ -120.559814299999971, 49.356902997000105 ], [ -120.558988813999974, 49.356885558000052 ], [ -120.559028864, 49.356076738000091 ], [ -120.558616128999944, 49.356068016000037 ], [ -120.558629480999969, 49.35579841000007 ], [ -120.558216748999911, 49.355789687000019 ], [ -120.558230101999968, 49.355520081000108 ], [ -120.557817372999963, 49.355511357000104 ], [ -120.557830729, 49.35524175000009 ], [ -120.556179817999947, 49.355206840000044 ], [ -120.556193181999959, 49.35493723300003 ], [ -120.554955005999901, 49.354911035 ], [ -120.554968378999945, 49.354641430000079 ], [ -120.554142933999955, 49.354623956000061 ], [ -120.554129557999914, 49.354893562000086 ], [ -120.554077349999943, 49.354892457000027 ], [ -120.554038098999982, 49.355225624000077 ], [ -120.553489190999983, 49.355197939000085 ], [ -120.553435098999927, 49.355657035000078 ], [ -120.552539291999949, 49.355611849000148 ], [ -120.550079383999915, 49.35340611800008 ], [ -120.552017009999958, 49.353178288000066 ], [ -120.56132306899994, 49.352173471000064 ], [ -120.561620074999922, 49.345169165000058 ], [ -120.563069347999942, 49.344524851000116 ], [ -120.563299746999988, 49.343468459000036 ], [ -120.563301712999987, 49.343459546000069 ], [ -120.563413961999956, 49.342944755000104 ], [ -120.563809047999939, 49.34295308800008 ], [ -120.563795729999967, 49.34322269500008 ], [ -120.564208358999949, 49.343231397000039 ], [ -120.564181727999966, 49.343770613000039 ], [ -120.564594360999962, 49.343779313000091 ], [ -120.564514472999917, 49.345396962000073 ], [ -120.564927121999915, 49.345405662000061 ], [ -120.564887183999986, 49.346214486000058 ], [ -120.565299837999973, 49.346223184000152 ], [ -120.565286525999952, 49.346492792000056 ], [ -120.566524499999943, 49.34651887600004 ], [ -120.56651119499999, 49.34678848600003 ], [ -120.566923854999942, 49.346797177000035 ], [ -120.566904354999977, 49.347192396000047 ], [ -120.566883946999951, 49.347606002000084 ], [ -120.566794941999945, 49.347604129000047 ], [ -120.566471278999984, 49.347597311000065 ], [ -120.566397048999988, 49.349101368000113 ], [ -120.566378134999951, 49.349484570000094 ], [ -120.56629567, 49.349482833000081 ], [ -120.565965451999929, 49.349475876000028 ], [ -120.565885989, 49.35108551400004 ], [ -120.565872283999965, 49.351363134000081 ], [ -120.565857821999941, 49.35136282900006 ], [ -120.56545958599996, 49.351354438000016 ], [ -120.565432959999953, 49.351893653000147 ], [ -120.565803111999955, 49.351901453000046 ], [ -120.56584566199993, 49.351902350000096 ], [ -120.565830676999923, 49.352205868000077 ], [ -120.565725855999986, 49.354328822000042 ], [ -120.566077344999954, 49.354336228000129 ], [ -120.566138578999954, 49.354337518000087 ], [ -120.566123607999913, 49.354640766000045 ], [ -120.566058712999919, 49.355955167000054 ], [ -120.563995031, 49.355911671000143 ], [ -120.563915088999948, 49.357529316000161 ], [ -120.56308959099999, 49.357511907000045 ], [ -120.563062933999959, 49.358051122000077 ], [ -120.562650179999963, 49.35804241400006 ], [ -120.562636848999915, 49.358312022000014 ], [ -120.562224092999926, 49.358303313000086 ], [ -120.56221075900001, 49.358572920000029 ], [ -120.561526576999952, 49.358558481000074 ], [ -120.560972487999919, 49.358546785000037 ], [ -120.560982922999969, 49.358335896000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2231250", "BldgCostT": "1275000", "sL_LossRatio": "0.999675218395279", "sL_AssetLoss": "1093.3501", "sL_BldgLoss": "1092.995", "sL_StrLoss": "1092", "sL_NStrLoss": "0.995", "sL_ContLoss": "0.3551", "geom_point": "0101000020E6100000C3231A72A6185EC0A08F8D9BF5B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.382280982999987, 49.453721447000085 ], [ -120.382532942999887, 49.451653033000099 ], [ -120.388028536999968, 49.451938178000077 ], [ -120.38778972099999, 49.453900614000084 ], [ -120.38777047899994, 49.454058719000074 ], [ -120.385523424, 49.453776403000091 ], [ -120.383388481999987, 49.453710898000068 ], [ -120.382270491999918, 49.453807566000116 ], [ -120.382280982999987, 49.453721447000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14176661", "BldgCostT": "8065743", "sL_LossRatio": "0.993637051506998", "sL_AssetLoss": "2192.537", "sL_BldgLoss": "2178.586", "sL_StrLoss": "2124.916", "sL_NStrLoss": "53.67", "sL_ContLoss": "13.951", "geom_point": "0101000020E6100000A912235317205EC07014ACB352BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.497326367999975, 49.460247101000043 ], [ -120.496683490999914, 49.459848402000041 ], [ -120.496011513, 49.460057903000099 ], [ -120.495942283999966, 49.460067673000047 ], [ -120.495931300999956, 49.456744249000046 ], [ -120.496601227999946, 49.456758760000056 ], [ -120.497308351999934, 49.456774072000016 ], [ -120.497249383999971, 49.457931380000041 ], [ -120.498626203999933, 49.458001369000037 ], [ -120.498926758999971, 49.455481862000106 ], [ -120.502333468999936, 49.455654961000036 ], [ -120.502353355000011, 49.455263875000078 ], [ -120.502766905999962, 49.455272810000125 ], [ -120.502780610999935, 49.45500322 ], [ -120.50319416, 49.455012153000126 ], [ -120.503221565999937, 49.454472972000083 ], [ -120.50363510899993, 49.454481904000019 ], [ -120.5036488099999, 49.454212313000035 ], [ -120.504062350999931, 49.454221244000095 ], [ -120.504076049999966, 49.453951653000018 ], [ -120.504489588999903, 49.453960582000029 ], [ -120.504503283999924, 49.453690991000073 ], [ -120.504089747, 49.45368206200002 ], [ -120.504103443999909, 49.45341247200011 ], [ -120.502862839999935, 49.453385676000025 ], [ -120.502876543999946, 49.453116085000012 ], [ -120.49998182199991, 49.453053512000082 ], [ -120.499995848999902, 49.452777873000088 ], [ -120.500022979999983, 49.452244742000104 ], [ -120.500436503999964, 49.452253686000077 ], [ -120.500463937999911, 49.451714505000034 ], [ -120.500877456999973, 49.451723447000148 ], [ -120.500904884999926, 49.451184266000027 ], [ -120.50131840099999, 49.451193205000067 ], [ -120.501332111999915, 49.450923616000139 ], [ -120.501745626999963, 49.450932554000048 ], [ -120.501773042999929, 49.450393372000043 ], [ -120.501359534999949, 49.450384434000114 ], [ -120.501428085999947, 49.449036482000075 ], [ -120.502668580999966, 49.449063291000115 ], [ -120.502641174999908, 49.449602472000073 ], [ -120.503054677999955, 49.44961140600001 ], [ -120.503068378999942, 49.449341814000086 ], [ -120.504308881999975, 49.449368606000114 ], [ -120.504302788999951, 49.449488534000103 ], [ -120.504254101999948, 49.450446971000048 ], [ -120.503840591999904, 49.450438041000055 ], [ -120.503826895999964, 49.450707632000139 ], [ -120.504653919999939, 49.450725490000103 ], [ -120.504599144999958, 49.451803854000062 ], [ -120.504185622999969, 49.451794926000098 ], [ -120.504158231999952, 49.45233410800008 ], [ -120.504571757999912, 49.452343036000094 ], [ -120.504558063999951, 49.452612626000104 ], [ -120.50579865, 49.452639404000081 ], [ -120.50577127499993, 49.453178586000014 ], [ -120.50618480899999, 49.453187509000088 ], [ -120.506159039999915, 49.453695137000167 ], [ -120.506547575999917, 49.453714859000058 ], [ -120.50656524299994, 49.453566534000061 ], [ -120.507199451999924, 49.453598724000081 ], [ -120.506544895999951, 49.45437309200004 ], [ -120.506077198999918, 49.45490291300009 ], [ -120.504957802999954, 49.455498306000038 ], [ -120.50467739199999, 49.455861743000114 ], [ -120.504742485999927, 49.455315474000031 ], [ -120.504421109999953, 49.455308536000061 ], [ -120.504407411999921, 49.45557812800012 ], [ -120.50399386, 49.455569199000053 ], [ -120.503985238999945, 49.455738851000071 ], [ -120.504423517999967, 49.455761106000161 ], [ -120.504243257999946, 49.457273744000069 ], [ -120.503817994999977, 49.457867667000066 ], [ -120.502513037999947, 49.457621599000085 ], [ -120.502488869999951, 49.457741286000086 ], [ -120.501453722999955, 49.457559608000039 ], [ -120.501355946999951, 49.457736266000055 ], [ -120.50118992099999, 49.457711342000081 ], [ -120.501066257999952, 49.457941028000072 ], [ -120.502246468999942, 49.458364721000102 ], [ -120.502812204999941, 49.45791161000006 ], [ -120.503342475999943, 49.45800264700005 ], [ -120.503090802999949, 49.458564184000053 ], [ -120.503693649999917, 49.45837679800011 ], [ -120.503703438999977, 49.458364764000052 ], [ -120.50363246499991, 49.458713512000045 ], [ -120.503620362999982, 49.458717584000063 ], [ -120.50346735199993, 49.45874126800009 ], [ -120.503283550999967, 49.458827272000057 ], [ -120.503240379999923, 49.458862310000072 ], [ -120.503198108999982, 49.458879400000043 ], [ -120.503169155999913, 49.458905758000114 ], [ -120.502928864999973, 49.459017532000061 ], [ -120.502899910999972, 49.459043889000029 ], [ -120.502888094999918, 49.459054328 ], [ -120.498314016999942, 49.461148457000057 ], [ -120.498512104999961, 49.460982397000059 ], [ -120.497326367999975, 49.460247101000043 ] ], [ [ -120.500082912999957, 49.460092246000073 ], [ -120.500194564999987, 49.459156112000088 ], [ -120.499777076999948, 49.459134898000052 ], [ -120.49966541799995, 49.460071032000052 ], [ -120.500082912999957, 49.460092246000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16526123", "BldgCostT": "9713706", "sL_LossRatio": "0.658755840583361", "sL_AssetLoss": "2453.094", "sL_BldgLoss": "1615.99", "sL_StrLoss": "1166.99", "sL_NStrLoss": "449", "sL_ContLoss": "837.104", "geom_point": "0101000020E61000004DF47D6187375EC026DDF9F2C08E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.86664658799999, 49.11743532000002 ], [ -120.866688646999961, 49.117054405000083 ], [ -120.865878786999957, 49.117015700000124 ], [ -120.865878935999945, 49.117014345000065 ], [ -120.862889488999912, 49.116871419000049 ], [ -120.862900009999947, 49.116776205000043 ], [ -120.862408678999898, 49.116752706000085 ], [ -120.862592921999962, 49.1150853870001 ], [ -120.862607654999962, 49.114952059000089 ], [ -120.862805512, 49.113161397000091 ], [ -120.86386289799999, 49.113211965000097 ], [ -120.863863664999911, 49.113205022000031 ], [ -120.866362299999977, 49.11332447500012 ], [ -120.866398371999964, 49.112997782000022 ], [ -120.871856831999978, 49.113258533000078 ], [ -120.871829779999985, 49.113503803000093 ], [ -120.872177936999961, 49.113520424000065 ], [ -120.872115528999956, 49.114086283000063 ], [ -120.87250166299998, 49.114104716000085 ], [ -120.872105569999917, 49.117696056000057 ], [ -120.871175620999949, 49.117651659000089 ], [ -120.871002979999972, 49.117643416000099 ], [ -120.86664658799999, 49.11743532000002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4296667", "BldgCostT": "2466667", "sL_LossRatio": "0.991767620788747", "sL_AssetLoss": "270.2135", "sL_BldgLoss": "267.989", "sL_StrLoss": "255.253", "sL_NStrLoss": "12.736", "sL_ContLoss": "2.2245", "geom_point": "0101000020E6100000BD9B1B91F7215EC083E7DEC325B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.527947212999891, 49.385117215000058 ], [ -120.528000465999952, 49.384667649000065 ], [ -120.527984041999943, 49.384666818000042 ], [ -120.52826756599994, 49.382273210000115 ], [ -120.533705144999885, 49.383118802000098 ], [ -120.533435788999952, 49.385395019000029 ], [ -120.527947212999891, 49.385117215000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999390046513213", "sL_AssetLoss": "146.7325", "sL_BldgLoss": "146.643", "sL_StrLoss": "146", "sL_NStrLoss": "0.643", "sL_ContLoss": "0.0895", "geom_point": "0101000020E61000004645F707A5225EC0C4CF1CE522B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.542599029999934, 49.436964604000089 ], [ -120.54425266899996, 49.436999752000084 ], [ -120.544245055999923, 49.437152089000072 ], [ -120.543905106999915, 49.437366284000078 ], [ -120.543545139999978, 49.437546998000073 ], [ -120.542593215999972, 49.438024793000096 ], [ -120.54231767, 49.43818559500005 ], [ -120.541796101999935, 49.438489985000096 ], [ -120.54095740299999, 49.439189398000075 ], [ -120.540174752999988, 49.439916333000099 ], [ -120.540070801999917, 49.440012896000084 ], [ -120.539476898999936, 49.440395300000098 ], [ -120.539269051999952, 49.440488748000085 ], [ -120.539126181999933, 49.440552966000041 ], [ -120.53910818, 49.440561060000043 ], [ -120.539156788999918, 49.439590226000114 ], [ -120.539570220999934, 49.439599029000114 ], [ -120.539597210999929, 49.439059830000112 ], [ -120.540010637999927, 49.439068630000072 ], [ -120.540037624999982, 49.438529432000074 ], [ -120.540864466999949, 49.438547028000102 ], [ -120.540877954999957, 49.438277429000024 ], [ -120.541291374999943, 49.438286224000073 ], [ -120.541304861999961, 49.438016626000092 ], [ -120.541718279999941, 49.438025418000038 ], [ -120.541731762999959, 49.437755819000124 ], [ -120.542145177999913, 49.437764612000144 ], [ -120.542158657999934, 49.437495012000049 ], [ -120.542572072999945, 49.437503803000091 ], [ -120.542599029999934, 49.436964604000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4340053", "BldgCostT": "2178746", "sL_LossRatio": "0.994625164985985", "sL_AssetLoss": "213.0484", "sL_BldgLoss": "211.9033", "sL_StrLoss": "208.0655", "sL_NStrLoss": "3.8378", "sL_ContLoss": "1.1451", "geom_point": "0101000020E6100000AD9B525E6B115EC0F0D4E961E4B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.270105681999965, 49.427627899000079 ], [ -120.270059583999938, 49.426735699000083 ], [ -120.270465470999923, 49.426757206000048 ], [ -120.27374940899999, 49.426931146000079 ], [ -120.273693948999934, 49.427378021000088 ], [ -120.273987028999954, 49.427393540000054 ], [ -120.27394286, 49.427749452000107 ], [ -120.274086149999945, 49.427757039000049 ], [ -120.27364092699996, 49.431344348000039 ], [ -120.272629066999954, 49.431290768000125 ], [ -120.271852791999947, 49.431249656000091 ], [ -120.27146860699996, 49.430889398000055 ], [ -120.270461187999928, 49.429389705000091 ], [ -120.270105681999965, 49.427627899000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8916500", "BldgCostT": "5150000", "sL_LossRatio": "0.996204287851766", "sL_AssetLoss": "3550.3746", "sL_BldgLoss": "3536.8984", "sL_StrLoss": "3500.2534", "sL_NStrLoss": "36.645", "sL_ContLoss": "13.4762", "geom_point": "0101000020E6100000F394EE119E245EC08B31F2AA35B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.569721008999977, 49.425774957000044 ], [ -120.569878175999975, 49.424439161000045 ], [ -120.56728011499996, 49.424308693000107 ], [ -120.567702489999945, 49.420720170000017 ], [ -120.573195529999936, 49.420995944000033 ], [ -120.573040753999948, 49.422312328000054 ], [ -120.57718978399997, 49.422520438000035 ], [ -120.576768129999934, 49.426108988000038 ], [ -120.575216943999976, 49.42603120200004 ], [ -120.575214661999922, 49.426050625000123 ], [ -120.569721008999977, 49.425774957000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11769417", "BldgCostT": "6701667", "sL_LossRatio": "0.994883570752811", "sL_AssetLoss": "885.774", "sL_BldgLoss": "881.242", "sL_StrLoss": "851.042", "sL_NStrLoss": "30.2", "sL_ContLoss": "4.532", "geom_point": "0101000020E6100000B1BD791E5A255EC08BA991E992AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.581966599999959, 49.351315373000041 ], [ -120.58198368399999, 49.351169604000063 ], [ -120.580892475999974, 49.351114844000101 ], [ -120.58093719699994, 49.35073330700002 ], [ -120.580541287999949, 49.350713436000092 ], [ -120.580778357999961, 49.348690969000096 ], [ -120.580658321999977, 49.348684945000109 ], [ -120.580705484999925, 49.34828257700007 ], [ -120.57998332499993, 49.348246326 ], [ -120.580177545999959, 49.34658949 ], [ -120.580404021999925, 49.344657349000109 ], [ -120.583350700999944, 49.344805231000095 ], [ -120.585888118999947, 49.344932510000078 ], [ -120.585875360999964, 49.345041470000041 ], [ -120.58662760199995, 49.345079191000067 ], [ -120.586431678999972, 49.346752597 ], [ -120.586418296999938, 49.34673709599999 ], [ -120.585785307999956, 49.346714305000098 ], [ -120.585326201999976, 49.34655188300006 ], [ -120.584812108, 49.346623186000087 ], [ -120.584535819999942, 49.34609479900012 ], [ -120.584349318999941, 49.345965199000041 ], [ -120.584262801999955, 49.346044897000048 ], [ -120.584379207999945, 49.346460807 ], [ -120.584366178999986, 49.347036196000062 ], [ -120.58472820799993, 49.348068693000073 ], [ -120.585755685999942, 49.349304898000085 ], [ -120.586344889999964, 49.349334913000071 ], [ -120.586629583999951, 49.349161094000138 ], [ -120.586711692999941, 49.348911910000098 ], [ -120.586538383999979, 49.348503096000073 ], [ -120.586550772999956, 49.347622936000036 ], [ -120.587630531999977, 49.347677069000028 ], [ -120.587594185999933, 49.347987555000081 ], [ -120.587871643999975, 49.348001464000014 ], [ -120.587451494999925, 49.351590451000028 ], [ -120.581966599999959, 49.351315373000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "1", "sL_AssetLoss": "441.1", "sL_BldgLoss": "441.1", "sL_StrLoss": "441.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000096855DB112E15DC0914F7E4141914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.514290185000036, 49.132846487000023 ], [ -119.519742408999932, 49.133175770000051 ], [ -119.519241871999952, 49.13676136900007 ], [ -119.516461094999954, 49.136593462000071 ], [ -119.513789233999944, 49.136432062000054 ], [ -119.514121819999957, 49.134051627000098 ], [ -119.514290185000036, 49.132846487000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.999998541134208", "sL_AssetLoss": "361.3080811", "sL_BldgLoss": "361.307554", "sL_StrLoss": "361.300104", "sL_NStrLoss": "0.00745", "sL_ContLoss": "0.0005271", "geom_point": "0101000020E61000006C3813705BE25DC0721F90B637944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.539208437999932, 49.153504822000052 ], [ -119.544663257999943, 49.153832833000081 ], [ -119.544637395999985, 49.154018735000136 ], [ -119.536552196999963, 49.153973194000031 ], [ -119.537071643999951, 49.157681543000109 ], [ -119.537072375, 49.15794602200004 ], [ -119.537064088999898, 49.162210567000059 ], [ -119.535348768999981, 49.162107349000081 ], [ -119.534591521999914, 49.162061774000044 ], [ -119.5350911459999, 49.158476243000024 ], [ -119.535403702999972, 49.158495055000039 ], [ -119.535492967999915, 49.157854358000094 ], [ -119.535528593999928, 49.157598647000093 ], [ -119.535650315999959, 49.156724951000079 ], [ -119.535742245999927, 49.156730483000047 ], [ -119.536204569999981, 49.153411653000049 ], [ -119.539196345999969, 49.153591675000037 ], [ -119.539208437999932, 49.153504822000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "1", "sL_AssetLoss": "413", "sL_BldgLoss": "413", "sL_StrLoss": "413", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BA13C7F9CE05DC02B64956F09904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.509392432999931, 49.123470360000141 ], [ -119.512527952999974, 49.123659946000046 ], [ -119.512026965999922, 49.127245564000113 ], [ -119.510841768999967, 49.127173913000014 ], [ -119.506575489999932, 49.126915887000074 ], [ -119.50707689599993, 49.123330292000027 ], [ -119.509392432999931, 49.123470360000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14748917", "BldgCostT": "10171667", "sL_LossRatio": "0.999983144413641", "sL_AssetLoss": "1779.884684", "sL_BldgLoss": "1779.854683", "sL_StrLoss": "1779.800174", "sL_NStrLoss": "0.054509", "sL_ContLoss": "0.030001", "geom_point": "0101000020E6100000A6F1D1031BE05DC00B87ADF2E7894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.499055369999951, 49.081586573000088 ], [ -119.49904183299999, 49.081316966000031 ], [ -119.496989650000017, 49.081361405000052 ], [ -119.496976124999918, 49.081091797000042 ], [ -119.496565689999969, 49.081100680000048 ], [ -119.496552169, 49.080831072000116 ], [ -119.496141735, 49.080839954000069 ], [ -119.496114694999974, 49.080300737000123 ], [ -119.495704266999965, 49.080309618000051 ], [ -119.49569075, 49.080040009000072 ], [ -119.495280322999946, 49.080048887000054 ], [ -119.495253292999905, 49.079509671000082 ], [ -119.494842869999957, 49.079518548000102 ], [ -119.494815847000012, 49.078979330000053 ], [ -119.49440542899994, 49.078988206000083 ], [ -119.494351390999967, 49.077909771000066 ], [ -119.495582618999947, 49.077883142000076 ], [ -119.495596133999939, 49.078152750000129 ], [ -119.495946582999949, 49.078145168000063 ], [ -119.496425721999941, 49.074720601000095 ], [ -119.501871019999953, 49.075050819000055 ], [ -119.501816836999964, 49.075438434000077 ], [ -119.501922144999952, 49.075444818000037 ], [ -119.50179401199992, 49.076361433000081 ], [ -119.503605170999933, 49.076471203000075 ], [ -119.504028370999947, 49.073442771000046 ], [ -119.509224871999933, 49.073757546000088 ], [ -119.509443194999946, 49.073990198000104 ], [ -119.509379885999977, 49.074443640000077 ], [ -119.509285182999946, 49.074576404000076 ], [ -119.509205802999972, 49.074893992000099 ], [ -119.509288516999959, 49.075098034000121 ], [ -119.508972885999967, 49.07735848600003 ], [ -119.505399213999979, 49.077142049000052 ], [ -119.505372895999983, 49.077330423000049 ], [ -119.504976069999913, 49.080170469000052 ], [ -119.501026613999954, 49.079931134000063 ], [ -119.50109401, 49.081272490000053 ], [ -119.500683574999968, 49.081281389 ], [ -119.500697122, 49.081550995000057 ], [ -119.499932983999969, 49.081567559000042 ], [ -119.499055369999951, 49.081586573000088 ] ], [ [ -119.496881458999923, 49.07920454000007 ], [ -119.496858860999978, 49.078754027000109 ], [ -119.496446745999933, 49.078729027000087 ], [ -119.496471039, 49.079213422000031 ], [ -119.496881458999923, 49.07920454000007 ] ], [ [ -119.496018791999973, 49.078388141000062 ], [ -119.496029332999953, 49.078312804000099 ], [ -119.496014971999969, 49.078311932000112 ], [ -119.496018791999973, 49.078388141000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6186667", "BldgCostT": "4266667", "sL_LossRatio": "0.999980795202444", "sL_AssetLoss": "839.8943", "sL_BldgLoss": "839.87817", "sL_StrLoss": "839.8", "sL_NStrLoss": "0.07817", "sL_ContLoss": "0.01613", "geom_point": "0101000020E610000093691B1C38E25DC02E1C8C01A79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.530574385999955, 49.235300481000067 ], [ -119.531075108999971, 49.231715369000057 ], [ -119.53599068299998, 49.232010808000048 ], [ -119.536242381999926, 49.23020708100006 ], [ -119.536010404999971, 49.230193143000115 ], [ -119.536049856999938, 49.229910415000042 ], [ -119.535842217999971, 49.229897940000065 ], [ -119.535947413999978, 49.229144090000077 ], [ -119.53552205699999, 49.22911853300009 ], [ -119.536022330999955, 49.225533364000071 ], [ -119.536442359999981, 49.225558602000064 ], [ -119.536711303999951, 49.223630875000048 ], [ -119.537107615999943, 49.223654686000039 ], [ -119.53723024899999, 49.222775571000135 ], [ -119.537286434999913, 49.230158085 ], [ -119.537204125999921, 49.231997753 ], [ -119.537260606999951, 49.232986398000044 ], [ -119.536414608999934, 49.232935578000095 ], [ -119.536393482999983, 49.233086977000085 ], [ -119.537269358999978, 49.233139590000093 ], [ -119.537289087999952, 49.233484887000053 ], [ -119.537021621999926, 49.233597904000085 ], [ -119.536259406999946, 49.234549295000072 ], [ -119.534288110999981, 49.234935187000097 ], [ -119.533535461999918, 49.235478476000026 ], [ -119.532559330999959, 49.235419808000096 ], [ -119.530574385999955, 49.235300481000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "287.2", "sL_BldgLoss": "287.2", "sL_StrLoss": "287.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A47F6EF97E35DC0E093569560934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55738059399998, 49.149972661000099 ], [ -119.559483681999964, 49.150098810000081 ], [ -119.55947362099991, 49.150420441000094 ], [ -119.559428778999973, 49.150639097000131 ], [ -119.558296480999942, 49.15153780000005 ], [ -119.55553869, 49.153380689000109 ], [ -119.555413689999938, 49.15347019700009 ], [ -119.554729432, 49.153429135000074 ], [ -119.553819550999904, 49.153374527000054 ], [ -119.553838531999958, 49.15323788400007 ], [ -119.554317600999966, 49.149788859000061 ], [ -119.55738059399998, 49.149972661000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8277084", "BldgCostT": "5708334", "sL_LossRatio": "0.999995143581988", "sL_AssetLoss": "990.030098", "sL_BldgLoss": "990.02529", "sL_StrLoss": "990", "sL_NStrLoss": "0.02529", "sL_ContLoss": "0.004808", "geom_point": "0101000020E6100000F0E12FB993E15DC08F709C0C75934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52324266, 49.155256577000017 ], [ -119.52366439499994, 49.15223492300003 ], [ -119.520084856999972, 49.152018997000013 ], [ -119.520578198999942, 49.148485713000099 ], [ -119.520585490999977, 49.148433478000115 ], [ -119.52603958499999, 49.148762435 ], [ -119.525618036999902, 49.151784114000087 ], [ -119.52919758099992, 49.151999857000114 ], [ -119.528697571999913, 49.155585396000021 ], [ -119.526108698999963, 49.15542937500004 ], [ -119.52324266, 49.155256577000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "365.7", "sL_BldgLoss": "365.7", "sL_StrLoss": "365.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0F048DD4AE25DC0D46ECBB26D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.534572209999951, 49.240240478000061 ], [ -119.534580258999966, 49.240182829000062 ], [ -119.533856790999934, 49.240139359000068 ], [ -119.533860372, 49.240113715000049 ], [ -119.534357311999969, 49.23655425900003 ], [ -119.535019144000017, 49.236594026000041 ], [ -119.535098308999977, 49.236026874000089 ], [ -119.535102977999927, 49.236027155000052 ], [ -119.535165887999966, 49.235576448000089 ], [ -119.533863900999975, 49.235498214000074 ], [ -119.533980899999932, 49.23538240900011 ], [ -119.53431459199993, 49.235195899000082 ], [ -119.534953891999976, 49.235046310000051 ], [ -119.535896783999959, 49.234953791000095 ], [ -119.536204415999961, 49.234821305000033 ], [ -119.537155895999931, 49.23462050800007 ], [ -119.537341060999978, 49.234495328000015 ], [ -119.537375866999938, 49.23488287800005 ], [ -119.537367825, 49.23494512700011 ], [ -119.537310902999977, 49.235519051000125 ], [ -119.537364175000022, 49.236375035000037 ], [ -119.537304053999904, 49.236906752000095 ], [ -119.537288209999943, 49.237046968000087 ], [ -119.537329858999925, 49.237070873000064 ], [ -119.537297007999953, 49.237123004000061 ], [ -119.537276806999984, 49.238748591000039 ], [ -119.537296490999978, 49.240404122000022 ], [ -119.534572209999951, 49.240240478000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4548167", "BldgCostT": "3136667", "sL_LossRatio": "0.999991954719382", "sL_AssetLoss": "697.30321", "sL_BldgLoss": "697.2976", "sL_StrLoss": "697.2", "sL_NStrLoss": "0.0976", "sL_ContLoss": "0.00561", "geom_point": "0101000020E6100000517733DD4ADC5DC09D105BF6FB844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439760606999968, 49.041521853000113 ], [ -119.440162449999946, 49.03867212400008 ], [ -119.439947596999957, 49.038658965000131 ], [ -119.440219197999966, 49.036732724000153 ], [ -119.439964932999956, 49.036717150000065 ], [ -119.439303800999966, 49.036676652000061 ], [ -119.439350627999914, 49.036344573000072 ], [ -119.443449353999966, 49.036379900000099 ], [ -119.443451853999989, 49.03676523700004 ], [ -119.44505997899995, 49.036787360000062 ], [ -119.444870481999928, 49.037283496000093 ], [ -119.444233022999967, 49.03821490200005 ], [ -119.443976809999953, 49.03941534900008 ], [ -119.443810808999956, 49.040193088000088 ], [ -119.444008407999945, 49.040594685000094 ], [ -119.443696313999965, 49.041762830000032 ], [ -119.439760606999968, 49.041521853000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331667", "BldgCostT": "4366667", "sL_LossRatio": "1", "sL_AssetLoss": "617.1", "sL_BldgLoss": "617.1", "sL_StrLoss": "617.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4DDEB4194DF5DC09ED177337A8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.490312857999925, 49.095754559000056 ], [ -119.490384188999926, 49.095245423000058 ], [ -119.494696034999933, 49.095507049000119 ], [ -119.495831841999944, 49.095575937000085 ], [ -119.495808887999914, 49.09573991600007 ], [ -119.497642295999981, 49.095851088000146 ], [ -119.497140460999915, 49.099436790000055 ], [ -119.494816799999938, 49.099295887000046 ], [ -119.494768472999951, 49.099641043000069 ], [ -119.493530997999983, 49.099565984000037 ], [ -119.489320350999918, 49.099310478000127 ], [ -119.489822786999966, 49.095724811000132 ], [ -119.490312857999925, 49.095754559000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65089667", "BldgCostT": "41731667", "sL_LossRatio": "0.989930281017936", "sL_AssetLoss": "5915.05911", "sL_BldgLoss": "5855.496127", "sL_StrLoss": "5833.154957", "sL_NStrLoss": "22.34117", "sL_ContLoss": "59.562983", "geom_point": "0101000020E61000009BF961C60CE25DC0065E2D77E6974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.535937732999983, 49.215701177000049 ], [ -119.536326240999969, 49.212915978000069 ], [ -119.536269923999939, 49.212912594 ], [ -119.536539669, 49.210978607000058 ], [ -119.536323250999914, 49.210965599000119 ], [ -119.53656725799999, 49.20921606200006 ], [ -119.535895649999958, 49.209175692000073 ], [ -119.536046349999978, 49.208095219000022 ], [ -119.533608248999883, 49.207948632000154 ], [ -119.533900933999973, 49.205850793000124 ], [ -119.533632284, 49.205834638000027 ], [ -119.534132453999931, 49.20224935100007 ], [ -119.534687317999953, 49.20228271800007 ], [ -119.534688813999978, 49.202271997000061 ], [ -119.534685149999945, 49.202271776000039 ], [ -119.53518519899994, 49.198686466000048 ], [ -119.535410013999979, 49.198699984000108 ], [ -119.535435327999949, 49.198518464000038 ], [ -119.531532295999966, 49.198283698000083 ], [ -119.531831293999971, 49.196140833000086 ], [ -119.529433666999964, 49.195996546000075 ], [ -119.529560303999972, 49.195089246000116 ], [ -119.529481642999926, 49.195090969000063 ], [ -119.529426622999921, 49.19401258500011 ], [ -119.529711440999961, 49.194006343000076 ], [ -119.52980420499992, 49.193341670000045 ], [ -119.529796709, 49.193194782000077 ], [ -119.529385358999932, 49.193203797000137 ], [ -119.529330343999902, 49.192125412000053 ], [ -119.530153027, 49.192107381000021 ], [ -119.530125512999987, 49.191568188000112 ], [ -119.530536849000015, 49.19155917100008 ], [ -119.5305093299999, 49.191019980000107 ], [ -119.531331995999949, 49.19100194100006 ], [ -119.531290704999918, 49.190193153000159 ], [ -119.532113355999968, 49.190175108000027 ], [ -119.532072054999901, 49.189366320000097 ], [ -119.532826289999917, 49.189349772000064 ], [ -119.532876412999983, 49.188990419000099 ], [ -119.532853378999988, 49.188539484000074 ], [ -119.532939570999957, 49.188537592000074 ], [ -119.533021863999949, 49.187947583000032 ], [ -119.533247133999907, 49.18796113800007 ], [ -119.533253555999977, 49.187915089000036 ], [ -119.533646226999906, 49.187938714000062 ], [ -119.533593352999944, 49.186903855000033 ], [ -119.53277075599999, 49.186921910000095 ], [ -119.532701911999979, 49.185573930000096 ], [ -119.532290623999984, 49.185582955000058 ], [ -119.53226309199998, 49.18504376300006 ], [ -119.531851808999974, 49.185052785000046 ], [ -119.531810518, 49.184243998000035 ], [ -119.533866897999957, 49.184198870000117 ], [ -119.533853123999947, 49.183929275000018 ], [ -119.533441850999964, 49.18393830300009 ], [ -119.533408938999955, 49.183294016000055 ], [ -119.533400534999913, 49.183129517000083 ], [ -119.534223068999921, 49.183111458000027 ], [ -119.53420929399999, 49.1828418630001 ], [ -119.534825842999979, 49.182828323000074 ], [ -119.534911341999987, 49.182215057000079 ], [ -119.534863165999951, 49.182212158000056 ], [ -119.534816766999953, 49.182544974000095 ], [ -119.532540237999982, 49.182407996000109 ], [ -119.53256883899999, 49.182968097000078 ], [ -119.532591767999975, 49.183417164000105 ], [ -119.530946691999972, 49.183453250000085 ], [ -119.530932931999985, 49.183183653000121 ], [ -119.530521664999981, 49.183192672000089 ], [ -119.530480398999927, 49.182383883000128 ], [ -119.530891659999938, 49.182374865000071 ], [ -119.530888276999974, 49.182308567000099 ], [ -119.529358648999917, 49.182216478000022 ], [ -119.529369902999917, 49.182135820000049 ], [ -119.528536827999986, 49.182085656 ], [ -119.528598841999937, 49.181641269000053 ], [ -119.527970289999985, 49.181603417000076 ], [ -119.527971602999955, 49.181629166000043 ], [ -119.526737834999892, 49.181656184000062 ], [ -119.526724099999939, 49.181386586000066 ], [ -119.526312845999911, 49.181395588000044 ], [ -119.526292140999914, 49.180989098000083 ], [ -119.525224897, 49.180924801000081 ], [ -119.524778814999976, 49.180897923000074 ], [ -119.522317495999943, 49.180749587000072 ], [ -119.522545207999912, 49.17911931000009 ], [ -119.521552577999969, 49.179059471000066 ], [ -119.522053389999911, 49.17547409400008 ], [ -119.522448719999929, 49.175497926000077 ], [ -119.522632233999943, 49.174183903000078 ], [ -119.523364592999911, 49.174228050000131 ], [ -119.523499245999943, 49.173263720000122 ], [ -119.528956271999959, 49.173592517 ], [ -119.528908379999933, 49.173935793000027 ], [ -119.531317419999965, 49.174080853000135 ], [ -119.53127496499998, 49.17438526700009 ], [ -119.532637998999945, 49.174467317000108 ], [ -119.532628105999976, 49.174538262000034 ], [ -119.533668672999951, 49.174600889000025 ], [ -119.53365736399995, 49.174682003000051 ], [ -119.534121815999953, 49.174709953000026 ], [ -119.53669068399995, 49.174864506000084 ], [ -119.536599915999901, 49.175515849000071 ], [ -119.537038175999925, 49.17554221100005 ], [ -119.537037469, 49.175905743000072 ], [ -119.537036319999956, 49.175944873000056 ], [ -119.53701718399995, 49.178285045000031 ], [ -119.537064083999908, 49.178549709000102 ], [ -119.537088696999945, 49.17888761200004 ], [ -119.537112683999936, 49.179217798000117 ], [ -119.537035, 49.180833174000043 ], [ -119.537027632000019, 49.180986207000089 ], [ -119.536979113999948, 49.181994710000069 ], [ -119.536970797, 49.182167509000081 ], [ -119.536881296, 49.184027893000085 ], [ -119.536937609999953, 49.184492196000114 ], [ -119.537372302999984, 49.184512949000123 ], [ -119.537358643999966, 49.184937476000094 ], [ -119.537345053999942, 49.185360822000064 ], [ -119.537310905999902, 49.186424498000122 ], [ -119.535890045999963, 49.186803695000059 ], [ -119.535171725999959, 49.187017188000034 ], [ -119.534938870999909, 49.187117369000084 ], [ -119.534444739999941, 49.187329985000069 ], [ -119.534210462999965, 49.188084754000087 ], [ -119.533986735999946, 49.189055080000038 ], [ -119.534047633999933, 49.189077837000106 ], [ -119.534994336999944, 49.189431504000076 ], [ -119.534997925999903, 49.189718245000073 ], [ -119.535002966999926, 49.19011465200002 ], [ -119.537348520999942, 49.190696626000054 ], [ -119.537357512999961, 49.191116816000047 ], [ -119.537379384999952, 49.192133795000075 ], [ -119.537345101999932, 49.192547492000045 ], [ -119.537347382999911, 49.192886605000105 ], [ -119.537345681999938, 49.193060997000089 ], [ -119.537341205999965, 49.193513499000076 ], [ -119.537329575999948, 49.193785833000099 ], [ -119.537319237999938, 49.194027720000086 ], [ -119.537318862999953, 49.19403670800007 ], [ -119.537318090999975, 49.194054407000102 ], [ -119.537010583999972, 49.193976402000061 ], [ -119.536565014999923, 49.194103092000056 ], [ -119.535960709999955, 49.194080408000033 ], [ -119.535136985999941, 49.194377991000096 ], [ -119.53498269, 49.194570303000035 ], [ -119.535048887999935, 49.195036007000063 ], [ -119.535955389999955, 49.196122711000079 ], [ -119.536600001999886, 49.19667530500007 ], [ -119.537284961999973, 49.197536488000068 ], [ -119.537266380999966, 49.198143582000107 ], [ -119.537282523999963, 49.198182269 ], [ -119.537348881999918, 49.199599853000024 ], [ -119.537344890999947, 49.199874061000088 ], [ -119.537306288999929, 49.200063408000076 ], [ -119.53730307, 49.200260436000072 ], [ -119.53729308199992, 49.200868803000084 ], [ -119.537281819999947, 49.201739468000035 ], [ -119.537201243999959, 49.20420151400004 ], [ -119.537188984999915, 49.204577361000077 ], [ -119.537180838999959, 49.204856270000079 ], [ -119.537173066, 49.205128630000047 ], [ -119.537193848999934, 49.215776666000082 ], [ -119.535937732999983, 49.215701177000049 ] ], [ [ -119.536716084999981, 49.179548014 ], [ -119.536772704999976, 49.179141743000038 ], [ -119.536668840999951, 49.179135496000079 ], [ -119.53661102699999, 49.179550323000029 ], [ -119.536716084999981, 49.179548014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17797500", "BldgCostT": "10800000", "sL_LossRatio": "0.999905530629415", "sL_AssetLoss": "1119.09288", "sL_BldgLoss": "1118.98716", "sL_StrLoss": "1118.2449", "sL_NStrLoss": "0.74226", "sL_ContLoss": "0.10572", "geom_point": "0101000020E610000087F2150F35E05DC0457D3782F98D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.500931606, 49.112633866000117 ], [ -119.501410717999988, 49.10920956700005 ], [ -119.499023266999984, 49.109064923000084 ], [ -119.499525059999925, 49.105479265000049 ], [ -119.500615999000019, 49.105545367000055 ], [ -119.504973975000027, 49.105809311000108 ], [ -119.504697620999963, 49.107785770000071 ], [ -119.507251332999914, 49.107940352000071 ], [ -119.506750106999959, 49.111526033000096 ], [ -119.506583785999936, 49.111515968000056 ], [ -119.50638136699996, 49.112963837000095 ], [ -119.504606618999944, 49.112856411000081 ], [ -119.500931606, 49.112633866000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999987528564948", "sL_AssetLoss": "73.207293", "sL_BldgLoss": "73.20638", "sL_StrLoss": "73.2", "sL_NStrLoss": "0.00638", "sL_ContLoss": "0.000913", "geom_point": "0101000020E6100000D3FB429FBAE35DC0AC4AAEA48D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.557838613999948, 49.15223140300003 ], [ -119.559432451999953, 49.151083374000045 ], [ -119.559435130999972, 49.151407670000062 ], [ -119.559434723999956, 49.15254707200004 ], [ -119.559274458999965, 49.153701797000025 ], [ -119.556028768999937, 49.153507104000056 ], [ -119.555977403999947, 49.153504021000124 ], [ -119.557838613999948, 49.15223140300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.999970826131966", "sL_AssetLoss": "626.58815", "sL_BldgLoss": "626.56987", "sL_StrLoss": "626.5", "sL_NStrLoss": "0.06987", "sL_ContLoss": "0.01828", "geom_point": "0101000020E610000023F64BBCEADF5DC0E723DF5BC78E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.496228172999935, 49.113501013000054 ], [ -119.50167800299991, 49.113831221000062 ], [ -119.501176285999975, 49.117416843000122 ], [ -119.495726038999948, 49.117086611000076 ], [ -119.496228172999935, 49.113501013000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006834", "BldgCostT": "2763334", "sL_LossRatio": "1", "sL_AssetLoss": "379.8", "sL_BldgLoss": "379.8", "sL_StrLoss": "379.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040F892BEF7DF5DC01BE3795FCB904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.49702130299994, 49.129248578000038 ], [ -119.502472981999915, 49.129578739000102 ], [ -119.501971157, 49.13316427700007 ], [ -119.4965190599999, 49.132834094000053 ], [ -119.49702130299994, 49.129248578000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642916", "BldgCostT": "3891666", "sL_LossRatio": "1", "sL_AssetLoss": "617", "sL_BldgLoss": "617", "sL_StrLoss": "617", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054B5937784E15DC0E3F79927959E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.520647944999951, 49.240824355000058 ], [ -119.520746452999987, 49.240120257000058 ], [ -119.52005261, 49.240078478000015 ], [ -119.520554195999921, 49.236493442000032 ], [ -119.526018629999939, 49.236822355000086 ], [ -119.525780137999988, 49.23852846700008 ], [ -119.525675493999984, 49.239277019000042 ], [ -119.52641067799999, 49.239321250000089 ], [ -119.526408497999938, 49.23933684100006 ], [ -119.528269820999952, 49.239448800000048 ], [ -119.5281359299999, 49.240406904000118 ], [ -119.529672266999981, 49.240499290000066 ], [ -119.529756364999969, 49.240909398000056 ], [ -119.526384236999917, 49.240800650000033 ], [ -119.523923571999916, 49.240721195000113 ], [ -119.522977540999975, 49.240750912000038 ], [ -119.520647944999951, 49.240824355000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5928084", "BldgCostT": "4088334", "sL_LossRatio": "0.999993563420118", "sL_AssetLoss": "671.6299773", "sL_BldgLoss": "671.6256543", "sL_StrLoss": "671.6000643", "sL_NStrLoss": "0.02559", "sL_ContLoss": "0.004323", "geom_point": "0101000020E6100000FFEC89A61AE25DC0F19E3D761B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.529983509999965, 49.214371216000089 ], [ -119.530249898999898, 49.212463224000025 ], [ -119.52980762599995, 49.212436616000076 ], [ -119.530308162999987, 49.208851383000066 ], [ -119.53576941599999, 49.209179817000084 ], [ -119.535503271, 49.21108783200004 ], [ -119.535945533999936, 49.211114417000061 ], [ -119.535445408999948, 49.214699663000054 ], [ -119.529983509999965, 49.214371216000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386251", "BldgCostT": "3025001", "sL_LossRatio": "0.999995799376356", "sL_AssetLoss": "538.01535", "sL_BldgLoss": "538.01309", "sL_StrLoss": "538", "sL_NStrLoss": "0.01309", "sL_ContLoss": "0.00226", "geom_point": "0101000020E6100000586AC550F1DF5DC035D07CCE5D994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.496625352999956, 49.196217571000027 ], [ -119.502084883999927, 49.196547716000111 ], [ -119.501754642999927, 49.198903565000094 ], [ -119.501582303999896, 49.200132885000073 ], [ -119.496122357999965, 49.199802716000121 ], [ -119.49619779599999, 49.199265055000112 ], [ -119.496625352999956, 49.196217571000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28710000", "BldgCostT": "19800000", "sL_LossRatio": "0.970252707581228", "sL_AssetLoss": "0.6925", "sL_BldgLoss": "0.6719", "sL_StrLoss": "0.0169", "sL_NStrLoss": "0.655", "sL_ContLoss": "0.0206", "geom_point": "0101000020E61000004178BCE24CE25DC0409EE1F619984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.535890045999963, 49.186803695000059 ], [ -119.537310905999902, 49.186424498000122 ], [ -119.53731739599999, 49.186921192000092 ], [ -119.53731870199999, 49.188195685000053 ], [ -119.537319502999949, 49.188485914000076 ], [ -119.537326488999952, 49.189318891000077 ], [ -119.537330675999954, 49.189822955000075 ], [ -119.53733090499999, 49.189850668000055 ], [ -119.537333857999954, 49.190201395000031 ], [ -119.534994336999944, 49.189431504000076 ], [ -119.534047633999933, 49.189077837000106 ], [ -119.533986735999946, 49.189055080000038 ], [ -119.534210462999965, 49.188084754000087 ], [ -119.534444739999941, 49.187329985000069 ], [ -119.534938870999909, 49.187117369000084 ], [ -119.535171725999959, 49.187017188000034 ], [ -119.535890045999963, 49.186803695000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999836444838384", "sL_AssetLoss": "75.8154", "sL_BldgLoss": "75.803", "sL_StrLoss": "75.7", "sL_NStrLoss": "0.103", "sL_ContLoss": "0.0124", "geom_point": "0101000020E610000026A34E6912E65DC0E119C09D3CBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.593846094999918, 49.453255843000179 ], [ -119.596929996999989, 49.452919191000021 ], [ -119.596953293999945, 49.452916629000079 ], [ -119.597063513999956, 49.452904504000109 ], [ -119.596035409999942, 49.457362695000064 ], [ -119.595904704999924, 49.457379079000049 ], [ -119.595290171, 49.457456019000077 ], [ -119.594575987999946, 49.45763467300003 ], [ -119.594426959999964, 49.457815201000052 ], [ -119.594321117999954, 49.458003141000106 ], [ -119.594265619999959, 49.458172245000135 ], [ -119.594003689999937, 49.458231110000092 ], [ -119.593921575999957, 49.45809334400014 ], [ -119.593861868999966, 49.457742780000125 ], [ -119.593906153999953, 49.457534213000081 ], [ -119.594008939, 49.457387459000053 ], [ -119.594249051999952, 49.457228472000061 ], [ -119.594722631999986, 49.457045833000102 ], [ -119.595027024999951, 49.456795130000081 ], [ -119.595077948999958, 49.456712752000037 ], [ -119.595177814999943, 49.456511947000109 ], [ -119.595218857999953, 49.456240288000075 ], [ -119.595112440999969, 49.456053153 ], [ -119.594881082999933, 49.455850672000096 ], [ -119.594611689999951, 49.455712089000045 ], [ -119.594065752999967, 49.455561243000091 ], [ -119.593808724999988, 49.455395344000088 ], [ -119.593633441999913, 49.455209704000033 ], [ -119.593001963999939, 49.455006590000089 ], [ -119.592905504999976, 49.455008540000101 ], [ -119.592769614999966, 49.455047276000059 ], [ -119.592519662999933, 49.455276954000098 ], [ -119.592367162999935, 49.455522464000069 ], [ -119.5921733099999, 49.455581437000014 ], [ -119.592082089999963, 49.455609191000079 ], [ -119.591982770999962, 49.455557218000116 ], [ -119.591810246999913, 49.455401511000048 ], [ -119.591707356999933, 49.455235139000116 ], [ -119.591597824999951, 49.454962310000035 ], [ -119.591603776999989, 49.454713551000054 ], [ -119.591672115999955, 49.454578991000083 ], [ -119.591876584999937, 49.454397562000075 ], [ -119.592019855, 49.454324054000146 ], [ -119.592201204999952, 49.454249968000099 ], [ -119.592349493999905, 49.454221094000083 ], [ -119.593091194999914, 49.454292284000125 ], [ -119.593366983999928, 49.454297654000058 ], [ -119.593465837999958, 49.454278395000088 ], [ -119.593708347999907, 49.454185564000085 ], [ -119.593813315999967, 49.454112639000094 ], [ -119.593981170999939, 49.45386955900004 ], [ -119.593970711999958, 49.453816525000079 ], [ -119.593892580999949, 49.45342054900005 ], [ -119.593846094999918, 49.453255843000179 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20097000", "BldgCostT": "13860000", "sL_LossRatio": "0.959731915365016", "sL_AssetLoss": "18.054", "sL_BldgLoss": "17.327", "sL_StrLoss": "0.627", "sL_NStrLoss": "16.7", "sL_ContLoss": "0.727", "geom_point": "0101000020E6100000F012DE1653E65DC094A2F8A53CBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596723794999903, 49.457056415000032 ], [ -119.597716709999972, 49.452894796000031 ], [ -119.597717102000033, 49.452849338000085 ], [ -119.597825322999952, 49.452840203000058 ], [ -119.597966453999916, 49.452828312000122 ], [ -119.598227202999979, 49.452806294000084 ], [ -119.599995005999972, 49.45265826100011 ], [ -119.600263099999978, 49.452635794000081 ], [ -119.600662482999965, 49.452602346000077 ], [ -119.600614253999936, 49.453137787000088 ], [ -119.600220077999893, 49.457097804000057 ], [ -119.599355212999981, 49.456988364000068 ], [ -119.596930876999934, 49.457164150000068 ], [ -119.59692221099999, 49.457200169000025 ], [ -119.596884625999934, 49.457356543000067 ], [ -119.596665097999974, 49.457361317000043 ], [ -119.596621337999949, 49.457362002000075 ], [ -119.596723794999903, 49.457056415000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4698000", "BldgCostT": "3240000", "sL_LossRatio": "0.970698829372118", "sL_AssetLoss": "1.4095", "sL_BldgLoss": "1.3682", "sL_StrLoss": "0.0382", "sL_NStrLoss": "1.33", "sL_ContLoss": "0.0413", "geom_point": "0101000020E61000002AFF7B6C22E65DC0CB896EA409BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596035409999942, 49.457362695000064 ], [ -119.597063513999956, 49.452904504000109 ], [ -119.596953293999945, 49.452916629000079 ], [ -119.596929996999989, 49.452919191000021 ], [ -119.593846094999918, 49.453255843000179 ], [ -119.594073456999951, 49.4524735520001 ], [ -119.594982274999907, 49.452396115000106 ], [ -119.596837636999936, 49.452238017000106 ], [ -119.597219207999942, 49.452347909000075 ], [ -119.597173165999919, 49.45289524600004 ], [ -119.597100108999925, 49.453763586000079 ], [ -119.596231519999932, 49.457366283000027 ], [ -119.596035409999942, 49.457362695000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13823333", "BldgCostT": "9533333", "sL_LossRatio": "1", "sL_AssetLoss": "1471", "sL_BldgLoss": "1471", "sL_StrLoss": "1471", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000209B600F58E75DC08BA26A68C1B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.610953213999977, 49.451401459000031 ], [ -119.611562687999964, 49.451467287000085 ], [ -119.611565897999967, 49.451467391000051 ], [ -119.612131380999969, 49.451485938000111 ], [ -119.612148203999979, 49.451486504000052 ], [ -119.613050913999956, 49.451313095000089 ], [ -119.613481316, 49.451154603000113 ], [ -119.613704201999937, 49.451072495000076 ], [ -119.613895690999982, 49.450979004000082 ], [ -119.614263807, 49.450699006000072 ], [ -119.614433132999949, 49.450486581000114 ], [ -119.61444810499998, 49.45046780600007 ], [ -119.614572642999946, 49.450162237000022 ], [ -119.614584414999939, 49.450133390000147 ], [ -119.614635299, 49.449736210000047 ], [ -119.614654370999972, 49.449678652000031 ], [ -119.614813691999984, 49.449197491000106 ], [ -119.614995196999971, 49.448966115000076 ], [ -119.615219188999944, 49.448766998000096 ], [ -119.615782580999962, 49.448475899000101 ], [ -119.617190771999958, 49.447997551000057 ], [ -119.61769092899999, 49.447155549000065 ], [ -119.617257454999987, 49.445974950000064 ], [ -119.618171097999948, 49.44602887700011 ], [ -119.618260478999957, 49.446042162 ], [ -119.617765296999949, 49.449618582000085 ], [ -119.616656513999956, 49.449553138000049 ], [ -119.616670613999972, 49.449817866000096 ], [ -119.61625714699997, 49.449827226000089 ], [ -119.61626800199997, 49.450031031000059 ], [ -119.61715278099993, 49.450083257000102 ], [ -119.616656368999941, 49.453667597000127 ], [ -119.612406616, 49.45341667800011 ], [ -119.612388582999969, 49.453546794000061 ], [ -119.610614614, 49.453442004000088 ], [ -119.61058351299999, 49.453666336 ], [ -119.60996612199996, 49.453629859000074 ], [ -119.610096429999942, 49.453182738000123 ], [ -119.61010879399997, 49.453140339000065 ], [ -119.61012412499997, 49.453106777000116 ], [ -119.610372596, 49.452562970000074 ], [ -119.61045646299999, 49.452379426000078 ], [ -119.610724757999918, 49.451912754000041 ], [ -119.610786250999951, 49.451805796000016 ], [ -119.610875909999962, 49.451649847000056 ], [ -119.610953213999977, 49.451401459000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99999546212104", "sL_AssetLoss": "148.307173", "sL_BldgLoss": "148.3065", "sL_StrLoss": "148.3", "sL_NStrLoss": "0.0065", "sL_ContLoss": "0.000673", "geom_point": "0101000020E61000006DE39170C8F05DC0EFA0651F5CCC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.763447085999928, 49.598506364000073 ], [ -119.761455256, 49.597960375000056 ], [ -119.761176900999942, 49.597966503000094 ], [ -119.761193309999925, 49.597845670000076 ], [ -119.761380693999953, 49.596465829000053 ], [ -119.762083717999957, 49.596506242000025 ], [ -119.762200894999978, 49.595643248000037 ], [ -119.759575977999958, 49.595492333000038 ], [ -119.759646083999911, 49.594976202000055 ], [ -119.762920643999962, 49.59514539400007 ], [ -119.763506966999941, 49.595175682000026 ], [ -119.763501129999966, 49.595499359000101 ], [ -119.763456043999952, 49.598007541000136 ], [ -119.763447085999928, 49.598506364000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "0.999999583637827", "sL_AssetLoss": "209.9134014", "sL_BldgLoss": "209.913314", "sL_StrLoss": "209.900279", "sL_NStrLoss": "0.013035", "sL_ContLoss": "0.0000874", "geom_point": "0101000020E610000083A7D24747EF5DC04D3E874300BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.73622175899996, 49.482431726000073 ], [ -119.741716796999981, 49.482749599000094 ], [ -119.741229701999956, 49.486334331000059 ], [ -119.735734240999946, 49.486016436000064 ], [ -119.73622175899996, 49.482431726000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999995454779172", "sL_AssetLoss": "70.40362", "sL_BldgLoss": "70.4033", "sL_StrLoss": "70.4", "sL_NStrLoss": "0.0033", "sL_ContLoss": "0.00032", "geom_point": "0101000020E61000001E58A72DE2E75DC0A3A74C5A06C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.622378447999964, 49.523220729000116 ], [ -119.622465085999949, 49.522773937000053 ], [ -119.622562063999979, 49.522787751000088 ], [ -119.624512366, 49.522749921000063 ], [ -119.62428442, 49.524395018000114 ], [ -119.623459954999973, 49.524346490000028 ], [ -119.623449484999966, 49.524422037000079 ], [ -119.621203237999978, 49.524289792000076 ], [ -119.622241235999951, 49.523466170000169 ], [ -119.622378447999964, 49.523220729000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4267834", "BldgCostT": "2943334", "sL_LossRatio": "1", "sL_AssetLoss": "410.2", "sL_BldgLoss": "410.2", "sL_StrLoss": "410.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000FB84B6ED6E85DC0B68FEC7C05C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.636975615999944, 49.518921133000049 ], [ -119.636998147, 49.518758190000071 ], [ -119.636372206999937, 49.518721417000052 ], [ -119.636374906999947, 49.518701886000052 ], [ -119.635862891999963, 49.518671803000096 ], [ -119.635863951999951, 49.518664141000059 ], [ -119.634926862999947, 49.518609078000104 ], [ -119.635186657999952, 49.516730717000073 ], [ -119.634765680999934, 49.516705978000047 ], [ -119.634811104999983, 49.516377562000066 ], [ -119.634736501999939, 49.516373178000066 ], [ -119.634833499999957, 49.515671864000126 ], [ -119.634726547999946, 49.515665579000043 ], [ -119.635222223999932, 49.512081483000038 ], [ -119.635379348999962, 49.512090717000056 ], [ -119.635441137999948, 49.511643886000108 ], [ -119.63563893299991, 49.511655510000061 ], [ -119.635721657999966, 49.511057243000081 ], [ -119.635166264999938, 49.511024602000077 ], [ -119.635553398999932, 49.508224896000051 ], [ -119.635536076999955, 49.508225291000059 ], [ -119.635528321, 49.508080973000119 ], [ -119.636556884999933, 49.508079139000124 ], [ -119.636930180999983, 49.51744466500007 ], [ -119.644335849999962, 49.517245154000122 ], [ -119.64502023599999, 49.517226688000115 ], [ -119.64489355399995, 49.51814406200004 ], [ -119.64465949099997, 49.518130328000069 ], [ -119.644576070999946, 49.518734368000096 ], [ -119.643901446999976, 49.518694782000054 ], [ -119.643878448999956, 49.518861283 ], [ -119.643131185999934, 49.518817430000055 ], [ -119.64309922599989, 49.519048800000121 ], [ -119.642506089999983, 49.51901398800009 ], [ -119.642474311999976, 49.51924401400008 ], [ -119.636975615999944, 49.518921133000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14915666", "BldgCostT": "10286666", "sL_LossRatio": "1", "sL_AssetLoss": "1568", "sL_BldgLoss": "1568", "sL_StrLoss": "1568", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C887B04C45E85DC01FD9E06D73BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.632929313999981, 49.508421569000092 ], [ -119.63274380199999, 49.506163666000127 ], [ -119.631802357999945, 49.506133007000095 ], [ -119.631195436999974, 49.506113241000079 ], [ -119.630514590999894, 49.503532785000132 ], [ -119.630768830999926, 49.499971501000047 ], [ -119.632548727999946, 49.500019107000085 ], [ -119.632513685999967, 49.49873549200008 ], [ -119.631503960999964, 49.498764512000072 ], [ -119.630850011999925, 49.498770198000088 ], [ -119.630843444, 49.49604665500005 ], [ -119.630816605999954, 49.490289703000066 ], [ -119.624862831999934, 49.490140720000042 ], [ -119.624173981999945, 49.490165072000096 ], [ -119.620488295999962, 49.490295291000059 ], [ -119.620306249999942, 49.490301690000095 ], [ -119.620302610999929, 49.491218809000024 ], [ -119.620289906, 49.491720291000064 ], [ -119.620337883999952, 49.492558549000087 ], [ -119.620242500999936, 49.492827432000077 ], [ -119.620286880999956, 49.49554200300004 ], [ -119.618815598999959, 49.495567064000056 ], [ -119.61774970299993, 49.495599418000054 ], [ -119.616989604999944, 49.495664722000107 ], [ -119.617055711999967, 49.495209507000055 ], [ -119.61702144399996, 49.494700293000101 ], [ -119.617779963999951, 49.494745016000067 ], [ -119.617912673999939, 49.493787585000135 ], [ -119.617905573999948, 49.49378716600004 ], [ -119.618080352999968, 49.492526161000065 ], [ -119.617296636999953, 49.492479952000082 ], [ -119.617793416999945, 49.488895815000049 ], [ -119.618559047999909, 49.488940956000071 ], [ -119.618587791999971, 49.488733533000065 ], [ -119.621724015999988, 49.488918390000016 ], [ -119.62175846099997, 49.488669705000042 ], [ -119.621813453999934, 49.488672946000072 ], [ -119.621857973999937, 49.488351506000086 ], [ -119.623603412999927, 49.488454346000076 ], [ -119.623628904999975, 49.488270248000028 ], [ -119.627183879999933, 49.488479615000074 ], [ -119.627218253999942, 49.488231229000093 ], [ -119.632713226999954, 49.488554619000105 ], [ -119.632641408999973, 49.489074025000043 ], [ -119.633348240999936, 49.489115603000073 ], [ -119.633311277999923, 49.489382956000114 ], [ -119.633476953999946, 49.489392700000103 ], [ -119.633461678999964, 49.489503185000046 ], [ -119.633877915999932, 49.4895276660001 ], [ -119.634123039999935, 49.489542083000053 ], [ -119.633952411999985, 49.490776344000018 ], [ -119.63381818299996, 49.491747258000075 ], [ -119.634017688999947, 49.49175899100009 ], [ -119.633696041999954, 49.494085440000013 ], [ -119.634705117999914, 49.494144778000084 ], [ -119.63424690799998, 49.497459098000057 ], [ -119.63454274599998, 49.497452356000032 ], [ -119.634528265999975, 49.497182797000114 ], [ -119.63480022499995, 49.497176599000056 ], [ -119.634942123999949, 49.497173365000094 ], [ -119.634932511999963, 49.496994437000062 ], [ -119.63492764199998, 49.496903805 ], [ -119.635045231999953, 49.496901125000086 ], [ -119.636169210999981, 49.496875501000076 ], [ -119.636212677999964, 49.497684178000071 ], [ -119.636626541999988, 49.4976747400001 ], [ -119.636670015999968, 49.498483417000131 ], [ -119.637911624999958, 49.498455093000075 ], [ -119.637940622999935, 49.498994211000117 ], [ -119.63835449599999, 49.498984766000063 ], [ -119.63842700799999, 49.500332560000075 ], [ -119.63718535299995, 49.500360889000049 ], [ -119.637170857999962, 49.50009133 ], [ -119.635101441999907, 49.500138518000043 ], [ -119.63507247299998, 49.499599399000061 ], [ -119.634658593999944, 49.499608832000021 ], [ -119.634629629999921, 49.499069713000068 ], [ -119.634215754999957, 49.499079145000039 ], [ -119.634178134999942, 49.498378749000018 ], [ -119.634172318999958, 49.498270466000037 ], [ -119.634093733999947, 49.498272256000106 ], [ -119.633758449999959, 49.498279894000078 ], [ -119.633744847999978, 49.498026605000128 ], [ -119.633727340999911, 49.497700608000038 ], [ -119.633668820999929, 49.497697167000119 ], [ -119.633631210999951, 49.497969173000044 ], [ -119.633576601999948, 49.498364079000069 ], [ -119.633562988999941, 49.498363278000049 ], [ -119.633489726999954, 49.498893079000041 ], [ -119.633295521999955, 49.498881658000066 ], [ -119.63311048499996, 49.500219684000051 ], [ -119.633100085999942, 49.500219072000107 ], [ -119.63302877199996, 49.500734721000093 ], [ -119.634015109999908, 49.500792720000049 ], [ -119.634027506999971, 49.506104782000037 ], [ -119.634030472999953, 49.507379501000109 ], [ -119.63341641299999, 49.507343399000014 ], [ -119.633451835999935, 49.508002895000097 ], [ -119.633311022, 49.508006103000064 ], [ -119.63298942499992, 49.510331059000038 ], [ -119.631416549999983, 49.510238571000102 ], [ -119.631425095999973, 49.508386680000079 ], [ -119.632929313999981, 49.508421569000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963368898450446", "sL_AssetLoss": "0.034397", "sL_BldgLoss": "0.033137", "sL_StrLoss": "0.000937", "sL_NStrLoss": "0.0322", "sL_ContLoss": "0.00126", "geom_point": "0101000020E6100000DC6B5A8CEEEF5DC089C902C3C5CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.748699228999939, 49.590369777000028 ], [ -119.749429414999952, 49.590411842000051 ], [ -119.748941780999957, 49.593996049000097 ], [ -119.748598233999985, 49.593976258000048 ], [ -119.748699228999939, 49.590369777000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.999985655877663", "sL_AssetLoss": "151.420906", "sL_BldgLoss": "151.418734", "sL_StrLoss": "151.400304", "sL_NStrLoss": "0.01843", "sL_ContLoss": "0.002172", "geom_point": "0101000020E6100000B3DC2D247BE85DC035BAD62044C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.631487981999967, 49.541786440000138 ], [ -119.631410403999922, 49.541643221000079 ], [ -119.631437917999932, 49.541407055000029 ], [ -119.631421403, 49.541126648000045 ], [ -119.631253977999933, 49.540632202000026 ], [ -119.631174108999943, 49.540452782000031 ], [ -119.63101716199999, 49.540374506000035 ], [ -119.63085762299994, 49.540251088000026 ], [ -119.63075930399998, 49.539990576000115 ], [ -119.630593462, 49.539758687000067 ], [ -119.629409526, 49.539420076000049 ], [ -119.629173987999977, 49.539180573000081 ], [ -119.62909374699997, 49.538992151000087 ], [ -119.628945390999959, 49.538823241000017 ], [ -119.628776004999921, 49.538772290000082 ], [ -119.628552802999977, 49.538749352000096 ], [ -119.628505572999984, 49.538728091000074 ], [ -119.63351507499999, 49.539022518000081 ], [ -119.63312390499999, 49.541848488000035 ], [ -119.634872217999884, 49.541951186000055 ], [ -119.634466606000032, 49.544881921000048 ], [ -119.63431591899996, 49.544818581000079 ], [ -119.634165200999959, 49.544725345000117 ], [ -119.634055914999976, 49.544622003000093 ], [ -119.633924205999932, 49.544439537000102 ], [ -119.633530145999984, 49.543644232000062 ], [ -119.633402245999989, 49.543497085000105 ], [ -119.63313868699997, 49.543265086000062 ], [ -119.632363964999954, 49.542728377000131 ], [ -119.63213310899999, 49.542414784000087 ], [ -119.631997553999923, 49.542210367000017 ], [ -119.63180979299996, 49.542078470000021 ], [ -119.631487981999967, 49.541786440000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.99998668566866", "sL_AssetLoss": "155.020928", "sL_BldgLoss": "155.018864", "sL_StrLoss": "155.000154", "sL_NStrLoss": "0.01871", "sL_ContLoss": "0.002064", "geom_point": "0101000020E61000005DB600E141EF5DC091D9939F58B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.73854248, 49.446978834000085 ], [ -119.738624144999974, 49.446377579000099 ], [ -119.738559006999949, 49.446373807000072 ], [ -119.738800847, 49.444593197000117 ], [ -119.739045887, 49.442788877000098 ], [ -119.739302115999934, 49.442803713000067 ], [ -119.739269576999945, 49.444583351000055 ], [ -119.739197008999909, 49.45062982500005 ], [ -119.73698848399999, 49.450501955000057 ], [ -119.737475529999969, 49.446917054000046 ], [ -119.73854248, 49.446978834000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "135.4", "sL_BldgLoss": "135.4", "sL_StrLoss": "135.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001EE7B2A83AEC5DC0040AED83C9AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.690862007, 49.363393840000072 ], [ -119.693625393999952, 49.363555338000076 ], [ -119.69313583099995, 49.367140483000128 ], [ -119.687654845999987, 49.366820096000069 ], [ -119.68788553499995, 49.365132274000068 ], [ -119.690816680999887, 49.365184280000044 ], [ -119.690862007, 49.363393840000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999996767928351", "sL_AssetLoss": "75.802775", "sL_BldgLoss": "75.80253", "sL_StrLoss": "75.8", "sL_NStrLoss": "0.00253", "sL_ContLoss": "0.000245", "geom_point": "0101000020E6100000F6127C361FE85DC0FEDD5407EDC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.626071301999971, 49.513739402000034 ], [ -119.629462311999973, 49.513776584000013 ], [ -119.629425775999948, 49.514040530000074 ], [ -119.628353494999899, 49.513977451000081 ], [ -119.628269956999986, 49.514580855000098 ], [ -119.627156996999972, 49.514515371000094 ], [ -119.62672902199995, 49.517605865000043 ], [ -119.625944332999964, 49.516614741000126 ], [ -119.626033901999918, 49.514437515000111 ], [ -119.626071301999971, 49.513739402000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3699917", "BldgCostT": "2551667", "sL_LossRatio": "0.999907191841773", "sL_AssetLoss": "302.34411", "sL_BldgLoss": "302.31605", "sL_StrLoss": "302.00795", "sL_NStrLoss": "0.3081", "sL_ContLoss": "0.02806", "geom_point": "0101000020E610000088E4D838AAEE5DC07F7FEFDB35BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.728414701999966, 49.460034482000019 ], [ -119.733907023999947, 49.460352761000074 ], [ -119.733419558999955, 49.463937576 ], [ -119.731442828999988, 49.463823057000049 ], [ -119.731284825999964, 49.464984521000076 ], [ -119.729734573999949, 49.4648946860001 ], [ -119.729726658999979, 49.464952858000075 ], [ -119.728741007999929, 49.464895728000059 ], [ -119.724233818999934, 49.464634370000063 ], [ -119.724307976999953, 49.46408985500009 ], [ -119.724722003999915, 49.461049600000038 ], [ -119.726272115999976, 49.461139508000038 ], [ -119.72628003599999, 49.461081335000074 ], [ -119.727381475, 49.461145207000108 ], [ -119.728256635999955, 49.461195948000068 ], [ -119.728414701999966, 49.460034482000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.990856945702333", "sL_AssetLoss": "0.0046374", "sL_BldgLoss": "0.004595", "sL_StrLoss": "0.000105", "sL_NStrLoss": "0.00449", "sL_ContLoss": "0.0000424", "geom_point": "0101000020E61000003C18EBFAC9E75DC05F97024EC6B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.623662744999962, 49.380733279000076 ], [ -119.624234294999951, 49.380733613000068 ], [ -119.624127891999962, 49.381504032000088 ], [ -119.621793937999925, 49.381366182000093 ], [ -119.618645689999965, 49.381180157000124 ], [ -119.618703260999951, 49.380763663 ], [ -119.61884709399996, 49.38076278600002 ], [ -119.623662744999962, 49.380733279000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "74.7", "sL_BldgLoss": "74.7", "sL_StrLoss": "74.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008217E02FE4E85DC03137C6EB4DBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.637781138999983, 49.496029064000076 ], [ -119.637766642999949, 49.495759504000091 ], [ -119.637352796999934, 49.495768946000069 ], [ -119.637309312999975, 49.494960269000075 ], [ -119.638136991999943, 49.494941384000064 ], [ -119.638122492999941, 49.494671825000104 ], [ -119.63853633, 49.494662381000062 ], [ -119.638449329999943, 49.493045028000068 ], [ -119.639690796999915, 49.493016687000079 ], [ -119.639705302999943, 49.493286245000114 ], [ -119.640119127999952, 49.493276796000053 ], [ -119.640206182999947, 49.49489414700011 ], [ -119.639792344999961, 49.494903597000061 ], [ -119.639806852999968, 49.495173156000135 ], [ -119.639393012000014, 49.495182606000078 ], [ -119.639407518999917, 49.495452163000017 ], [ -119.638993674999966, 49.495461611000046 ], [ -119.639022683999926, 49.496000729000066 ], [ -119.637781138999983, 49.496029064000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "61.2", "sL_BldgLoss": "61.2", "sL_StrLoss": "61.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EBC6DC314CE75DC00F6B010C91B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.614673597999953, 49.439607209000066 ], [ -119.61529840899999, 49.439593072000086 ], [ -119.615324790999921, 49.440088799000179 ], [ -119.615341444999942, 49.440401771000069 ], [ -119.615226878999934, 49.440404364000059 ], [ -119.614928058999936, 49.440411126000143 ], [ -119.614971493999917, 49.441227449000067 ], [ -119.614985433999948, 49.441489391000069 ], [ -119.614889543999951, 49.441491561000149 ], [ -119.614572036999959, 49.441498744000057 ], [ -119.614618179999965, 49.44236598400007 ], [ -119.614643749999985, 49.442846576000093 ], [ -119.614467801999965, 49.442850557000042 ], [ -119.614230341999956, 49.442855928000014 ], [ -119.614264850999973, 49.443504576000109 ], [ -119.614287707999935, 49.443934194000072 ], [ -119.614112176, 49.443938164000059 ], [ -119.613134745999929, 49.443960268000048 ], [ -119.613129825999977, 49.443868013000106 ], [ -119.613092676999926, 49.443456293000082 ], [ -119.613000160999931, 49.442426053000069 ], [ -119.61298369299999, 49.44209947300002 ], [ -119.61301250299995, 49.44187331800007 ], [ -119.613090670999938, 49.441630941000071 ], [ -119.613245532999926, 49.441346625000058 ], [ -119.613491117999985, 49.441071980000075 ], [ -119.614036122999963, 49.440626869000063 ], [ -119.61421323699993, 49.440470220000094 ], [ -119.61442870799999, 49.440244757000137 ], [ -119.614581889999954, 49.439981133000067 ], [ -119.614668961999882, 49.439679913000127 ], [ -119.614673597999953, 49.439607209000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035334", "BldgCostT": "2093334", "sL_LossRatio": "1", "sL_AssetLoss": "294", "sL_BldgLoss": "294", "sL_StrLoss": "294", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003AE2777003E95DC02ABA3F28B9C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.63833277499999, 49.527134597000092 ], [ -119.643832458999924, 49.527457405000071 ], [ -119.643337286999923, 49.531041461000072 ], [ -119.637837178999973, 49.530718629000027 ], [ -119.63833277499999, 49.527134597000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2443250", "BldgCostT": "1685000", "sL_LossRatio": "0.999990488415895", "sL_AssetLoss": "238.025546", "sL_BldgLoss": "238.023282", "sL_StrLoss": "238.000342", "sL_NStrLoss": "0.02294", "sL_ContLoss": "0.002264", "geom_point": "0101000020E610000023C7CEC2BBEB5DC09782E285FCAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.684630347999928, 49.365588199000108 ], [ -119.685229297999939, 49.365382787000073 ], [ -119.685879692999947, 49.365422703000036 ], [ -119.686188005999952, 49.365271786000072 ], [ -119.68634253599997, 49.36510486500007 ], [ -119.686767927999981, 49.365112424000081 ], [ -119.686314811999949, 49.368426938000013 ], [ -119.682602407999923, 49.36820973300005 ], [ -119.682538565999948, 49.368676423000082 ], [ -119.680025413999942, 49.368529311000053 ], [ -119.679764285999951, 49.368514022000056 ], [ -119.679756039999987, 49.366809337000042 ], [ -119.679764964999947, 49.366808686000056 ], [ -119.6797476039999, 49.366354195000014 ], [ -119.680110296999928, 49.366257299000068 ], [ -119.68064159699999, 49.366238197000058 ], [ -119.680748525999945, 49.366234375000026 ], [ -119.680783998999914, 49.366233087000111 ], [ -119.681461403999947, 49.366010910000078 ], [ -119.683110493999905, 49.365945404000072 ], [ -119.683559800999959, 49.36582718500005 ], [ -119.683851410999978, 49.36564059700008 ], [ -119.684552205999964, 49.365614983000064 ], [ -119.684630347999928, 49.365588199000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2987000", "BldgCostT": "2060000", "sL_LossRatio": "1", "sL_AssetLoss": "252", "sL_BldgLoss": "252", "sL_StrLoss": "252", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5157C263DEC5DC057B7D5076DB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.690696061999972, 49.384301701000034 ], [ -119.694218824999922, 49.384507472000116 ], [ -119.693879592999977, 49.386990809000039 ], [ -119.693729084999944, 49.388092509000089 ], [ -119.688245615999918, 49.38777216200004 ], [ -119.68873577699999, 49.384187147000063 ], [ -119.690696061999972, 49.384301701000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8535667", "BldgCostT": "5886667", "sL_LossRatio": "0.999899683110709", "sL_AssetLoss": "1118.85447", "sL_BldgLoss": "1118.74223", "sL_StrLoss": "1118.00673", "sL_NStrLoss": "0.7355", "sL_ContLoss": "0.11224", "geom_point": "0101000020E61000001E186106BAF05DC00B3C9C65BBC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.759639842999945, 49.517555518000052 ], [ -119.759807962999957, 49.516315546000051 ], [ -119.75623111699997, 49.516109429000053 ], [ -119.756717359999968, 49.512524785000046 ], [ -119.759243015999957, 49.512670340000106 ], [ -119.759265403999962, 49.51250521300009 ], [ -119.758633537999955, 49.512468803000075 ], [ -119.759119556, 49.508884130000048 ], [ -119.762460183999934, 49.509076582000084 ], [ -119.764617901999912, 49.509200831000058 ], [ -119.764518096999907, 49.509937643000058 ], [ -119.765149933999936, 49.509974018000058 ], [ -119.764993184, 49.511131292000144 ], [ -119.76466437299996, 49.513558713000108 ], [ -119.762138649999926, 49.51341328400013 ], [ -119.762048079999914, 49.51408158800006 ], [ -119.765624794999894, 49.514287515000049 ], [ -119.76513922499997, 49.517872189000066 ], [ -119.759639842999945, 49.517555518000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19350250", "BldgCostT": "13345000", "sL_LossRatio": "1", "sL_AssetLoss": "1696", "sL_BldgLoss": "1696", "sL_StrLoss": "1696", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F038C10E0EE75DC0F76D6F54FAB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.613110950999939, 49.415860620000025 ], [ -119.613472485999935, 49.413249405000158 ], [ -119.60830061899999, 49.412943582 ], [ -119.607959535999967, 49.41540510600008 ], [ -119.605952873999982, 49.415286381 ], [ -119.605927328999954, 49.412968334000077 ], [ -119.605979767999926, 49.412391514000049 ], [ -119.606028398999939, 49.411856390000011 ], [ -119.60602575899999, 49.411026612000072 ], [ -119.606014580999968, 49.407517102000078 ], [ -119.605994739999971, 49.402288075000094 ], [ -119.605988100999966, 49.400545114000032 ], [ -119.605987569999954, 49.40043899800007 ], [ -119.605985330999886, 49.399998108000034 ], [ -119.605982857999919, 49.399512551000079 ], [ -119.605981276999955, 49.399197750000077 ], [ -119.605975342999955, 49.398028640000099 ], [ -119.605974096999944, 49.397783198000099 ], [ -119.60594148, 49.393125125000047 ], [ -119.605170101999988, 49.392064389000033 ], [ -119.605224272999976, 49.389642520000095 ], [ -119.605238188999948, 49.389461200000014 ], [ -119.6077628, 49.389610670000138 ], [ -119.607722211999913, 49.389903736000079 ], [ -119.608036481999974, 49.389922339000087 ], [ -119.608139906999966, 49.389928460000128 ], [ -119.6079527799999, 49.391279643000054 ], [ -119.6080174, 49.391283468000026 ], [ -119.607909161999913, 49.3920649840001 ], [ -119.607986651999937, 49.392069570000089 ], [ -119.60780522, 49.393379528000075 ], [ -119.607991837000029, 49.393390573000033 ], [ -119.607864149999941, 49.394312461000077 ], [ -119.608393082999953, 49.394343765000109 ], [ -119.608352797999885, 49.394634643000082 ], [ -119.608567696999927, 49.394647361000111 ], [ -119.608403994999932, 49.395829354000092 ], [ -119.60855117499996, 49.395838064000095 ], [ -119.608250300999899, 49.398010375000048 ], [ -119.608454720999944, 49.398022472000022 ], [ -119.608201733, 49.399848922000075 ], [ -119.608503437999929, 49.399866775000106 ], [ -119.608198828999946, 49.402065823000051 ], [ -119.612601851999941, 49.40232626800011 ], [ -119.61238873399995, 49.403865744000036 ], [ -119.614737684999952, 49.404004613000048 ], [ -119.614727007999988, 49.404081767000079 ], [ -119.615964050999978, 49.404154879000096 ], [ -119.615468039999968, 49.407739456000108 ], [ -119.614730360999943, 49.407695859000043 ], [ -119.614688920999967, 49.407995273000104 ], [ -119.612609061999976, 49.407872325000035 ], [ -119.612539851999941, 49.408372221000022 ], [ -119.612493989999962, 49.408369510000107 ], [ -119.61232807, 49.409567879000065 ], [ -119.61402757599997, 49.409668346000061 ], [ -119.61366610099995, 49.412279578000046 ], [ -119.619093086999968, 49.412600214000058 ], [ -119.61859722699991, 49.41618475900006 ], [ -119.613110950999939, 49.415860620000025 ] ], [ [ -119.608201062999939, 49.411805510000093 ], [ -119.60843741599993, 49.41009961300005 ], [ -119.607316103999949, 49.410033272000099 ], [ -119.607243343999968, 49.410558337000076 ], [ -119.607153050999941, 49.410552993000117 ], [ -119.607098458999957, 49.410946939000048 ], [ -119.606225725999977, 49.410895296000071 ], [ -119.60611666399997, 49.411682180000085 ], [ -119.608201062999939, 49.411805510000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999974499353616", "sL_AssetLoss": "485.47789", "sL_BldgLoss": "485.46551", "sL_StrLoss": "485.4", "sL_NStrLoss": "0.06551", "sL_ContLoss": "0.01238", "geom_point": "0101000020E610000013F1BD5C17EF5DC015E976DDF8B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.738614269, 49.435638639000068 ], [ -119.738789152999942, 49.435648767000103 ], [ -119.738302328999922, 49.439233733000023 ], [ -119.735256065999948, 49.439057277000067 ], [ -119.733277978999979, 49.438942648000094 ], [ -119.732812485999958, 49.438915667000067 ], [ -119.732839601999927, 49.438716176000128 ], [ -119.733299732999939, 49.435330724000067 ], [ -119.738614269, 49.435638639000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "1", "sL_AssetLoss": "244.8", "sL_BldgLoss": "244.8", "sL_StrLoss": "244.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070EFB7C9EAEE5DC061C13F9DD9B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733300421999942, 49.442347240000039 ], [ -119.73606909399993, 49.442507658000082 ], [ -119.735581984999968, 49.446092577000151 ], [ -119.731984890999968, 49.4458841450001 ], [ -119.730091346999956, 49.445774376000102 ], [ -119.730578877, 49.442189481000078 ], [ -119.733300421999942, 49.442347240000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.993274241681885", "sL_AssetLoss": "0.0044902", "sL_BldgLoss": "0.00446", "sL_StrLoss": "0.0001", "sL_NStrLoss": "0.00436", "sL_ContLoss": "0.0000302", "geom_point": "0101000020E6100000269F053E92EC5DC08DE71A033EAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.696980899999957, 49.361780466000027 ], [ -119.696987461, 49.361732385000053 ], [ -119.694555078999926, 49.36159030500005 ], [ -119.692976277999946, 49.361498056000087 ], [ -119.693057310999947, 49.36090461900006 ], [ -119.697040083999966, 49.360798871000078 ], [ -119.69915226199997, 49.360737910000118 ], [ -119.699135860999945, 49.361906293000061 ], [ -119.696980899999957, 49.361780466000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "0.999936935291073", "sL_AssetLoss": "609.849798", "sL_BldgLoss": "609.811338", "sL_StrLoss": "609.600668", "sL_NStrLoss": "0.21067", "sL_ContLoss": "0.03846", "geom_point": "0101000020E61000001A6505D86AEC5DC0DD81327489B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.694350067999935, 49.394293214000044 ], [ -119.694312747999987, 49.393611403000136 ], [ -119.694307490999904, 49.393515381000029 ], [ -119.695133426999931, 49.393496119000133 ], [ -119.695118667999935, 49.393226567000042 ], [ -119.694705700999961, 49.393236199000036 ], [ -119.694690946999955, 49.392966648000062 ], [ -119.694277983999939, 49.392976280000049 ], [ -119.69421897, 49.391898074000075 ], [ -119.694631923, 49.391888444000074 ], [ -119.69461716899994, 49.391618892000061 ], [ -119.695030120999959, 49.391609261000099 ], [ -119.694939920999957, 49.389961632000144 ], [ -119.694912068999884, 49.389452849000122 ], [ -119.696150867999961, 49.389423947000076 ], [ -119.696165629999925, 49.389693498000035 ], [ -119.69657856399999, 49.389683860000048 ], [ -119.696711455999946, 49.39210982000003 ], [ -119.696298501999976, 49.392119457000092 ], [ -119.696313264999958, 49.39238900900007 ], [ -119.69590030799999, 49.392398645000078 ], [ -119.69594459699999, 49.393207299000075 ], [ -119.696357559999967, 49.393197661000052 ], [ -119.696401855999909, 49.394006313000027 ], [ -119.695988886999956, 49.394015951000078 ], [ -119.696003649999909, 49.394285502000031 ], [ -119.695853077999971, 49.394289015000076 ], [ -119.69559067699997, 49.39429513699999 ], [ -119.695594549999953, 49.394365861000075 ], [ -119.695912078, 49.394384395 ], [ -119.696370286999951, 49.394411137000105 ], [ -119.695933078999957, 49.397612020000096 ], [ -119.695880609999904, 49.39799613100012 ], [ -119.690395951999932, 49.397675897000106 ], [ -119.690886051999939, 49.394090927000072 ], [ -119.694278412999935, 49.394289031000056 ], [ -119.694350067999935, 49.394293214000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5430250", "BldgCostT": "3745000", "sL_LossRatio": "0.999993008529933", "sL_AssetLoss": "510.050099", "sL_BldgLoss": "510.046533", "sL_StrLoss": "510.000593", "sL_NStrLoss": "0.04594", "sL_ContLoss": "0.003566", "geom_point": "0101000020E610000008BA284035E95DC0E48DE5C09FBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.643233021999919, 49.489550961000099 ], [ -119.643226359999986, 49.489427332000098 ], [ -119.642812568999929, 49.489436792000099 ], [ -119.642739963999944, 49.488089001000034 ], [ -119.642326184999945, 49.488098460000096 ], [ -119.642311666999916, 49.487828901000121 ], [ -119.641484110999983, 49.487847814000098 ], [ -119.641469597999944, 49.487578255000074 ], [ -119.640642047, 49.487597162000085 ], [ -119.640627536999887, 49.48732760400005 ], [ -119.63938621600002, 49.487355952000065 ], [ -119.639357212000021, 49.486816834000059 ], [ -119.638529670999972, 49.486835725000091 ], [ -119.638486182999969, 49.4860270470001 ], [ -119.638953785999959, 49.486016374000016 ], [ -119.63931370899995, 49.486008157000086 ], [ -119.639299208999944, 49.485738598000133 ], [ -119.639712969999891, 49.485729151000108 ], [ -119.639698467999963, 49.48545959100008 ], [ -119.640438605999975, 49.485442687000095 ], [ -119.640525983999936, 49.485440692000061 ], [ -119.64052406399999, 49.485405 ], [ -119.640511476999947, 49.485171133000044 ], [ -119.642580253999967, 49.48512386000003 ], [ -119.642594771999953, 49.485393418000029 ], [ -119.643836041999975, 49.485365036000076 ], [ -119.643850566999973, 49.485634594 ], [ -119.644264324999966, 49.485625131000063 ], [ -119.644278852999918, 49.485894688000066 ], [ -119.64510637399998, 49.485875756000091 ], [ -119.645120905999988, 49.486145314000055 ], [ -119.645534667999954, 49.486135845000057 ], [ -119.645549202999987, 49.486405404000109 ], [ -119.645962968, 49.486395934000072 ], [ -119.646029317999961, 49.487626200000136 ], [ -119.646079272999941, 49.488552394000038 ], [ -119.646357729999949, 49.488546020000094 ], [ -119.646493053999976, 49.488542922000121 ], [ -119.646536678999965, 49.48935159399999 ], [ -119.646122888999969, 49.48936106600005 ], [ -119.646142347999927, 49.489721778000096 ], [ -119.647766576999956, 49.489817108000103 ], [ -119.647272113999946, 49.493401378000051 ], [ -119.641776462999943, 49.493078727000103 ], [ -119.642029996999952, 49.491242561000043 ], [ -119.642271348999941, 49.489494480000133 ], [ -119.643233021999919, 49.489550961000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2039667", "BldgCostT": "1406667", "sL_LossRatio": "0.999982868751943", "sL_AssetLoss": "161.342594", "sL_BldgLoss": "161.33983", "sL_StrLoss": "161.30072", "sL_NStrLoss": "0.03911", "sL_ContLoss": "0.002764", "geom_point": "0101000020E6100000C4DB7B9F07EF5DC009F2BB02B4CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733925609, 49.583997586000052 ], [ -119.734212085999957, 49.583675710000072 ], [ -119.7340951899999, 49.583328203000107 ], [ -119.733689681999962, 49.583013395000073 ], [ -119.73276759699999, 49.582594710000095 ], [ -119.73251729699993, 49.582556286000042 ], [ -119.732192592, 49.582715801000099 ], [ -119.732054510999944, 49.582945104000061 ], [ -119.731945314999933, 49.582965001000112 ], [ -119.731383599999944, 49.582852488000107 ], [ -119.73059478899998, 49.582835408000058 ], [ -119.729552909999938, 49.582617081000087 ], [ -119.729557197999952, 49.582585656000084 ], [ -119.729941633999914, 49.582607876000068 ], [ -119.730091634999894, 49.581508466000059 ], [ -119.735598445999983, 49.581826603000117 ], [ -119.73532472699999, 49.583834505000077 ], [ -119.739269161999943, 49.584062207000066 ], [ -119.739145172999926, 49.584972251000046 ], [ -119.739059528999988, 49.585600833000093 ], [ -119.735699688999944, 49.585557247000075 ], [ -119.734989137999932, 49.585548020000104 ], [ -119.734673403999949, 49.585239494000056 ], [ -119.734298588999977, 49.584987405000113 ], [ -119.733595995999934, 49.584770899000056 ], [ -119.733332785999949, 49.584516005000097 ], [ -119.733441599999964, 49.58424250400008 ], [ -119.733925609, 49.583997586000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999994186752226", "sL_AssetLoss": "71.904728", "sL_BldgLoss": "71.90431", "sL_StrLoss": "71.9", "sL_NStrLoss": "0.00431", "sL_ContLoss": "0.000418", "geom_point": "0101000020E610000019E6257B1BE95DC02F8ADCDBC6B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.63996582599998, 49.380735884000032 ], [ -119.644883508999925, 49.380735747000145 ], [ -119.644771465999966, 49.38154965600004 ], [ -119.639527850999968, 49.3812408900001 ], [ -119.639289112999947, 49.381226826000045 ], [ -119.639356742999894, 49.380735970000082 ], [ -119.63996582599998, 49.380735884000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999996706950126", "sL_AssetLoss": "74.702786", "sL_BldgLoss": "74.70254", "sL_StrLoss": "74.7", "sL_NStrLoss": "0.00254", "sL_ContLoss": "0.000246", "geom_point": "0101000020E610000013BC5B3814EE5DC0C5980D95F3B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.71956493199994, 49.396131894000114 ], [ -119.720693057999981, 49.396197481000037 ], [ -119.720647913000022, 49.398807681000079 ], [ -119.72063063199991, 49.399807303000102 ], [ -119.720563977999973, 49.399803429000031 ], [ -119.719077033999923, 49.399716983000054 ], [ -119.719402903999978, 49.397322544000119 ], [ -119.71956493199994, 49.396131894000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "348.8", "sL_BldgLoss": "348.8", "sL_StrLoss": "348.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075AF8B89EAE85DC02BC35D6251B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.636820713999924, 49.383342249000094 ], [ -119.642303300999913, 49.383665203000092 ], [ -119.641809547999969, 49.387250008000095 ], [ -119.636326539999985, 49.386927031000035 ], [ -119.636820713999924, 49.383342249000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58432584", "BldgCostT": "40298334", "sL_LossRatio": "0.999992334176188", "sL_AssetLoss": "5981.744575", "sL_BldgLoss": "5981.69872", "sL_StrLoss": "5981.00871", "sL_NStrLoss": "0.69001", "sL_ContLoss": "0.045855", "geom_point": "0101000020E61000003E8711461CE75DC0FF447E603BBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.601716362, 49.482486698000088 ], [ -119.600401613999978, 49.481712302000112 ], [ -119.599320211999952, 49.480837797000021 ], [ -119.598894683999902, 49.480352098000026 ], [ -119.598389209999965, 49.47966139800009 ], [ -119.598569201999936, 49.479433509000032 ], [ -119.598054987999959, 49.478798760000075 ], [ -119.598053495999977, 49.478796915000025 ], [ -119.597854114999933, 49.478190191000074 ], [ -119.596907618000017, 49.47473854900003 ], [ -119.596416805999979, 49.472948428000052 ], [ -119.596178954999957, 49.472080909000042 ], [ -119.595687616999911, 49.470288569000054 ], [ -119.595451993999973, 49.469429134000102 ], [ -119.595000724999949, 49.467782855000088 ], [ -119.59499766499999, 49.467771690000063 ], [ -119.59496183099999, 49.467640927000069 ], [ -119.594826411000014, 49.4671469070001 ], [ -119.594690506999939, 49.466124292000117 ], [ -119.5947877399999, 49.465537384000122 ], [ -119.59485738, 49.465116763000061 ], [ -119.594861333999944, 49.465092932000104 ], [ -119.595015088999929, 49.46416459100007 ], [ -119.595303787999953, 49.462869616000027 ], [ -119.595393347999945, 49.462467873000058 ], [ -119.595395846999949, 49.462456691000092 ], [ -119.595719032999966, 49.46100696200012 ], [ -119.595803470999954, 49.46062809900004 ], [ -119.595813850999946, 49.460581565000069 ], [ -119.595841660999952, 49.460456779000054 ], [ -119.59589981799999, 49.460195902000102 ], [ -119.596242060999955, 49.458660443000092 ], [ -119.596510151999965, 49.458459678000075 ], [ -119.597148201999971, 49.457998543000016 ], [ -119.597146115999976, 49.458142488000064 ], [ -119.597140662999934, 49.458234255000065 ], [ -119.597591553999905, 49.457986151000057 ], [ -119.597996618999971, 49.457853826000076 ], [ -119.598534940999926, 49.457847623000092 ], [ -119.599122568999988, 49.458048541000011 ], [ -119.599588222999955, 49.458119933000035 ], [ -119.599941799999911, 49.457975472000058 ], [ -119.600105993999975, 49.457874499000127 ], [ -119.600208579999943, 49.457811091000018 ], [ -119.600094604999953, 49.459140068000089 ], [ -119.599690906999967, 49.464525028000025 ], [ -119.599263753999978, 49.469767982000157 ], [ -119.599207226999965, 49.470453646000109 ], [ -119.598720583999963, 49.470464586000055 ], [ -119.598606430999922, 49.46830803800006 ], [ -119.599020057999923, 49.468298738000101 ], [ -119.59899151799999, 49.467759601000076 ], [ -119.598577894999934, 49.467768901000078 ], [ -119.598549360000021, 49.467229763000027 ], [ -119.596894884999969, 49.467266946000059 ], [ -119.596937659, 49.46807565200006 ], [ -119.59611040799993, 49.468094235000095 ], [ -119.596124661, 49.468363804000035 ], [ -119.596951919, 49.468345221000028 ], [ -119.597008956999986, 49.469423497000037 ], [ -119.596595318999903, 49.46943279000002 ], [ -119.59668086899994, 49.471050204000051 ], [ -119.597094519999985, 49.471040911000038 ], [ -119.59713730499999, 49.471849617000032 ], [ -119.597550961999957, 49.471840323000045 ], [ -119.597608022, 49.472918598000092 ], [ -119.597194353999953, 49.47292789200003 ], [ -119.597208616999922, 49.473197461000083 ], [ -119.598035954999943, 49.473178869000094 ], [ -119.598050222999973, 49.473448438000091 ], [ -119.598877564999924, 49.473429839000076 ], [ -119.598849018999886, 49.472890703000118 ], [ -119.599006589999973, 49.472887160000099 ], [ -119.598814370999932, 49.475218311000042 ], [ -119.599800347999974, 49.475213288000042 ], [ -119.599804846999959, 49.475298213 ], [ -119.60063221899999, 49.475279602000157 ], [ -119.600628480999916, 49.475209061000015 ], [ -119.601519062999984, 49.475204508000054 ], [ -119.60316137699999, 49.474748598000083 ], [ -119.604881267999929, 49.475295059000096 ], [ -119.604347286999925, 49.472753183000108 ], [ -119.60425144499996, 49.471766160000058 ], [ -119.604380391999939, 49.470837593000041 ], [ -119.604647266999919, 49.470101918000118 ], [ -119.605157616000014, 49.46808611400013 ], [ -119.605331536, 49.467135200000065 ], [ -119.605335613999941, 49.467135722000094 ], [ -119.605365229999919, 49.466998450000091 ], [ -119.605365358999975, 49.466997898000081 ], [ -119.60537540199999, 49.46695132200005 ], [ -119.605376791999944, 49.466951439000077 ], [ -119.606560233999943, 49.461659447000045 ], [ -119.606562215999944, 49.461650583000029 ], [ -119.606564110999898, 49.461641659000058 ], [ -119.60681193299996, 49.460534683000063 ], [ -119.606813951999968, 49.460525808000071 ], [ -119.606815953999941, 49.460516852000076 ], [ -119.606900781999954, 49.460138137000115 ], [ -119.60696313699999, 49.459860314000096 ], [ -119.606963047999955, 49.459859943000026 ], [ -119.606977821999948, 49.459798303000106 ], [ -119.607157896, 49.459048269000114 ], [ -119.607619464, 49.456933536000086 ], [ -119.60762663, 49.45690310800007 ], [ -119.607670725999967, 49.45690447600002 ], [ -119.607693508999915, 49.456637964000102 ], [ -119.60786392299994, 49.455868492000086 ], [ -119.60786402699992, 49.455868149000032 ], [ -119.607864071999984, 49.45586790800008 ], [ -119.607898205999945, 49.455717792 ], [ -119.608077383999941, 49.454967292000077 ], [ -119.608161088999935, 49.454618902000085 ], [ -119.608103522999926, 49.454635000000131 ], [ -119.606839573999949, 49.454948896000062 ], [ -119.606835039999979, 49.454942920000128 ], [ -119.606115179999932, 49.453779296000086 ], [ -119.605001892999937, 49.451979524000123 ], [ -119.604654375999957, 49.452066279000057 ], [ -119.604208898999929, 49.452168487000037 ], [ -119.603618083999919, 49.452303999000016 ], [ -119.602525776999968, 49.452446294000033 ], [ -119.600662482999965, 49.452602346000077 ], [ -119.600263099999978, 49.452635794000081 ], [ -119.599995005999972, 49.45265826100011 ], [ -119.598227202999979, 49.452806294000084 ], [ -119.597966453999916, 49.452828312000122 ], [ -119.597825322999952, 49.452840203000058 ], [ -119.597717102000033, 49.452849338000085 ], [ -119.597720607000014, 49.452444800000094 ], [ -119.597865581999926, 49.452442986000044 ], [ -119.597905938999972, 49.452442481000112 ], [ -119.598222145999941, 49.452438530000059 ], [ -119.598632600999949, 49.45243338900007 ], [ -119.600458938999964, 49.452218477000024 ], [ -119.600647088999892, 49.452196333000103 ], [ -119.600811383999911, 49.452177 ], [ -119.601107534999969, 49.452132925000129 ], [ -119.601233177999958, 49.452114232 ], [ -119.601804870999956, 49.452029167000077 ], [ -119.60183003199991, 49.452025422000098 ], [ -119.601790115999961, 49.452312923000179 ], [ -119.602366179999962, 49.452299953000043 ], [ -119.602416405999918, 49.451938156000054 ], [ -119.603576034999932, 49.451765567000038 ], [ -119.604326483999941, 49.451653871000069 ], [ -119.604371318999966, 49.451647201000135 ], [ -119.604468299999922, 49.451626914000038 ], [ -119.605870339999967, 49.451333692000041 ], [ -119.607115776999947, 49.451073193000092 ], [ -119.607503419999915, 49.450906915000083 ], [ -119.607803009999898, 49.450778406000047 ], [ -119.607876782999952, 49.45062459600009 ], [ -119.60774070399999, 49.450366810000112 ], [ -119.607954595999956, 49.45033858100004 ], [ -119.608050379999938, 49.450325940000035 ], [ -119.608398485999942, 49.45027998900013 ], [ -119.608661196999961, 49.450039293000046 ], [ -119.60867817599997, 49.449458757000102 ], [ -119.608736755999985, 49.449457434000067 ], [ -119.608772470999909, 49.44919987 ], [ -119.608709481999981, 49.448013597000056 ], [ -119.608777313999923, 49.447833190000139 ], [ -119.608786346, 49.447824876000034 ], [ -119.608916424999919, 49.447705111000133 ], [ -119.609036200999981, 49.447655516000069 ], [ -119.609202681999989, 49.44766039900005 ], [ -119.609207120999912, 49.447651868000072 ], [ -119.609344204999914, 49.447390373000083 ], [ -119.609641992999983, 49.446996795000096 ], [ -119.609914045999929, 49.446735278000119 ], [ -119.610195811999958, 49.44654862900007 ], [ -119.610322943999947, 49.446464423000116 ], [ -119.610779542999964, 49.44621370500009 ], [ -119.61099914, 49.446093105000074 ], [ -119.61199090199996, 49.445610280000082 ], [ -119.612031600999956, 49.445601062000108 ], [ -119.612031835999943, 49.445600904000067 ], [ -119.612032053999982, 49.445600782000071 ], [ -119.61259411199994, 49.445232651000012 ], [ -119.612594275999953, 49.445232515000043 ], [ -119.612729074999919, 49.445144242000076 ], [ -119.612729224999967, 49.44514402700004 ], [ -119.612777093999952, 49.445072664000108 ], [ -119.61279395399994, 49.445047536000068 ], [ -119.613104795999959, 49.445040508000083 ], [ -119.613119132999913, 49.445310075000137 ], [ -119.61326223399999, 49.445306840000057 ], [ -119.613532561999975, 49.445300727000088 ], [ -119.613546753999913, 49.445567528000012 ], [ -119.613546900999907, 49.445570293000095 ], [ -119.61357196299997, 49.445569726000031 ], [ -119.613960331999934, 49.445560943000018 ], [ -119.613962610999977, 49.445603800000079 ], [ -119.61397203599995, 49.445780968000051 ], [ -119.614387272999949, 49.44580549100008 ], [ -119.6143784699999, 49.445640071000085 ], [ -119.614373764, 49.44555159300004 ], [ -119.616027484999933, 49.445514172000074 ], [ -119.616041837999916, 49.445783738000031 ], [ -119.616455268999985, 49.44577438 ], [ -119.61645777299999, 49.445821398000064 ], [ -119.616463454000012, 49.445928079000076 ], [ -119.617257454999987, 49.445974950000064 ], [ -119.61769092899999, 49.447155549000065 ], [ -119.617190771999958, 49.447997551000057 ], [ -119.615782580999962, 49.448475899000101 ], [ -119.615219188999944, 49.448766998000096 ], [ -119.614995196999971, 49.448966115000076 ], [ -119.614813691999984, 49.449197491000106 ], [ -119.614654370999972, 49.449678652000031 ], [ -119.614635299, 49.449736210000047 ], [ -119.614584414999939, 49.450133390000147 ], [ -119.614572642999946, 49.450162237000022 ], [ -119.61444810499998, 49.45046780600007 ], [ -119.614433132999949, 49.450486581000114 ], [ -119.614263807, 49.450699006000072 ], [ -119.613895690999982, 49.450979004000082 ], [ -119.613704201999937, 49.451072495000076 ], [ -119.613481316, 49.451154603000113 ], [ -119.613050913999956, 49.451313095000089 ], [ -119.612148203999979, 49.451486504000052 ], [ -119.612131380999969, 49.451485938000111 ], [ -119.611565897999967, 49.451467391000051 ], [ -119.611562687999964, 49.451467287000085 ], [ -119.610953213999977, 49.451401459000031 ], [ -119.610875909999962, 49.451649847000056 ], [ -119.610786250999951, 49.451805796000016 ], [ -119.610724757999918, 49.451912754000041 ], [ -119.61045646299999, 49.452379426000078 ], [ -119.610372596, 49.452562970000074 ], [ -119.61012412499997, 49.453106777000116 ], [ -119.61010879399997, 49.453140339000065 ], [ -119.610096429999942, 49.453182738000123 ], [ -119.60996612199996, 49.453629859000074 ], [ -119.609835319999988, 49.453622130000056 ], [ -119.609860015999942, 49.454086967000123 ], [ -119.609843983999937, 49.454181686000084 ], [ -119.609853945999987, 49.454290239000052 ], [ -119.609457290999913, 49.454299196000058 ], [ -119.609471610999989, 49.454568763000104 ], [ -119.609878662999947, 49.454559572000043 ], [ -119.609888082999987, 49.454662198000037 ], [ -119.609890998000012, 49.454670065000059 ], [ -119.609928089999968, 49.455368127000014 ], [ -119.610274157999982, 49.455360312000103 ], [ -119.610347474999983, 49.45546925700009 ], [ -119.610370256999914, 49.455897922000062 ], [ -119.61063198399998, 49.455892012000049 ], [ -119.610688554999967, 49.455976070000091 ], [ -119.610800364999989, 49.456200678000116 ], [ -119.610844864999976, 49.457037807000049 ], [ -119.610855421999958, 49.457236416000043 ], [ -119.611252733999919, 49.45722744000004 ], [ -119.611268951999975, 49.45722707400008 ], [ -119.611271662999911, 49.457278040000048 ], [ -119.61138361399999, 49.459383605000014 ], [ -119.61014296899999, 49.459411627000044 ], [ -119.610128644, 49.459142062000069 ], [ -119.609715096999977, 49.459151399000078 ], [ -119.609672122999953, 49.458342699000099 ], [ -119.61008566299995, 49.458333361000072 ], [ -119.610042685999943, 49.457524661000072 ], [ -119.609629152999943, 49.457533999000056 ], [ -119.609643476999977, 49.457803565000077 ], [ -119.609171085999932, 49.457814230000096 ], [ -119.609044919999945, 49.458723956000092 ], [ -119.609025296999974, 49.458722797000085 ], [ -119.608950145999941, 49.459264657000084 ], [ -119.608375983999906, 49.459230730000037 ], [ -119.60818976899999, 49.460573220000079 ], [ -119.608766757999945, 49.460607314000079 ], [ -119.60826958299999, 49.464191559000035 ], [ -119.606249857999956, 49.464072201000079 ], [ -119.60627929099995, 49.464626722000084 ], [ -119.60669288299998, 49.464617395000111 ], [ -119.606735815999912, 49.465426096000051 ], [ -119.60590861499999, 49.465444748000031 ], [ -119.605951535999964, 49.466253451000043 ], [ -119.606365143999938, 49.466244125000046 ], [ -119.606393763999947, 49.466783258000078 ], [ -119.606807375999892, 49.466773932000095 ], [ -119.606814675999914, 49.466911403000019 ], [ -119.608346888999932, 49.467001941000078 ], [ -119.607877524999978, 49.470384972000019 ], [ -119.608179165999957, 49.470402793000034 ], [ -119.610963926999901, 49.470567277000043 ], [ -119.610913725, 49.47092925500003 ], [ -119.613075984999909, 49.471056920000073 ], [ -119.61301933799993, 49.471465497000054 ], [ -119.61579212599996, 49.471629146000062 ], [ -119.615596790999959, 49.473038624000012 ], [ -119.619086113999941, 49.473244459000071 ], [ -119.619031107999902, 49.473641570000105 ], [ -119.62174845699991, 49.473801787000077 ], [ -119.621643494999958, 49.474559846 ], [ -119.621671407999912, 49.474561491000024 ], [ -119.621612155999969, 49.474989420000057 ], [ -119.62492753399999, 49.475184802000051 ], [ -119.624826641999931, 49.475913806000101 ], [ -119.625420464999962, 49.475948790000096 ], [ -119.625377263999965, 49.476260973000116 ], [ -119.62951545899989, 49.476504679000101 ], [ -119.629329971999965, 49.477845839000032 ], [ -119.629139513999974, 49.479222864000064 ], [ -119.630662639999926, 49.479188210000082 ], [ -119.63064819, 49.478918649000015 ], [ -119.631889307999984, 49.478890397000058 ], [ -119.631874851999982, 49.478620837000058 ], [ -119.633115961999977, 49.478592573000128 ], [ -119.633137037999944, 49.478985377000051 ], [ -119.633173815, 49.479670815000077 ], [ -119.632346389999896, 49.479689660000105 ], [ -119.632360848999951, 49.479959221000101 ], [ -119.631119703999957, 49.479987478000105 ], [ -119.631134156999934, 49.480257039000072 ], [ -119.634030173999975, 49.480191085000065 ], [ -119.634044641999978, 49.480460646000068 ], [ -119.634872078999962, 49.480441788000057 ], [ -119.634886552999902, 49.480711349000039 ], [ -119.635300272999984, 49.480701918000065 ], [ -119.635314748999946, 49.480971478000072 ], [ -119.635728470999965, 49.480962045000055 ], [ -119.635757425999941, 49.481501166000086 ], [ -119.636171153999925, 49.481491731000041 ], [ -119.636229078999975, 49.482569971000032 ], [ -119.636642814999959, 49.482560534000051 ], [ -119.636628329999937, 49.482290975000069 ], [ -119.637869527999925, 49.482262658000103 ], [ -119.637913000999944, 49.483071337000041 ], [ -119.637085522999911, 49.48309021700009 ], [ -119.637114496999942, 49.48362933700011 ], [ -119.636297471999967, 49.483647972000014 ], [ -119.63545952, 49.483667079000035 ], [ -119.635445040999912, 49.483397520000047 ], [ -119.635031298999962, 49.483406950000067 ], [ -119.634973397999914, 49.482328710000068 ], [ -119.634559662999962, 49.482338140000131 ], [ -119.634530719999987, 49.481799020000025 ], [ -119.634116988999949, 49.48180844700002 ], [ -119.634102519999985, 49.481538888000102 ], [ -119.633688791999987, 49.481548315000083 ], [ -119.63367432499993, 49.481278754000044 ], [ -119.632846872999949, 49.481297603000037 ], [ -119.632875799999937, 49.481836725000058 ], [ -119.632462069999946, 49.481846146000116 ], [ -119.632476529999963, 49.482115708000052 ], [ -119.632062797999978, 49.482125129000046 ], [ -119.63207725699999, 49.482394690000064 ], [ -119.632490990999912, 49.482385267000048 ], [ -119.632577762999958, 49.484002631000045 ], [ -119.632164013999954, 49.484012054000047 ], [ -119.632192934999978, 49.484551175000036 ], [ -119.631502672999929, 49.484566891000078 ], [ -119.63095167499992, 49.484579432000054 ], [ -119.630937219999964, 49.484309871000036 ], [ -119.629282211999978, 49.484347526000057 ], [ -119.629238878999928, 49.483538842000051 ], [ -119.630480115999916, 49.483510605000049 ], [ -119.63043676499997, 49.482701921000043 ], [ -119.627954329999937, 49.482758382000107 ], [ -119.627925458, 49.482219259000026 ], [ -119.627097986999942, 49.482238067000033 ], [ -119.62704026199999, 49.481159819000041 ], [ -119.628281440999928, 49.48113160600014 ], [ -119.628267001999959, 49.480862043000101 ], [ -119.627853279999954, 49.480871449000034 ], [ -119.627807554999947, 49.480017566000065 ], [ -119.625988811999932, 49.479910457000059 ], [ -119.625955094999966, 49.480154107000054 ], [ -119.625113031999916, 49.480104505000028 ], [ -119.624978702999968, 49.481075025000088 ], [ -119.624319932999981, 49.481036217000081 ], [ -119.624318573999957, 49.481046041000042 ], [ -119.618824553999929, 49.480722223000079 ], [ -119.618828213, 49.480695807000082 ], [ -119.616964096999965, 49.480585871000088 ], [ -119.616954140999923, 49.480657711000035 ], [ -119.614045974999954, 49.480486138000074 ], [ -119.614015118999959, 49.480708679000031 ], [ -119.613122206999932, 49.480655984000101 ], [ -119.61308049299997, 49.480956800000072 ], [ -119.612282161999985, 49.480909680000082 ], [ -119.612267261999975, 49.481017119000079 ], [ -119.61128587799999, 49.480959187000103 ], [ -119.611259625999963, 49.481148442000084 ], [ -119.60576568499999, 49.480823962 ], [ -119.605791530999923, 49.480637798 ], [ -119.605162153999984, 49.480600609000128 ], [ -119.605109256999953, 49.480981584000169 ], [ -119.604466336999963, 49.480943590000031 ], [ -119.604274994999969, 49.482321499000072 ], [ -119.602486021999965, 49.482215757000091 ], [ -119.602442945999911, 49.482525858000066 ], [ -119.603500408999977, 49.482502047000025 ], [ -119.603543316999932, 49.483310747000083 ], [ -119.603124587999929, 49.483320177000159 ], [ -119.601716362, 49.482486698000088 ] ], [ [ -119.600446189999943, 49.479921988000086 ], [ -119.598986097999912, 49.47947770600009 ], [ -119.59882241499993, 49.479507605000023 ], [ -119.598902400999989, 49.479712709000083 ], [ -119.599167891999954, 49.479788188000022 ], [ -119.599977310999975, 49.479931991000058 ], [ -119.600446189999943, 49.479921988000086 ] ], [ [ -119.603301863, 49.476070803000077 ], [ -119.603420449999987, 49.475216839000026 ], [ -119.601873274999932, 49.475251674000035 ], [ -119.601887563999952, 49.475521242000141 ], [ -119.601060188999909, 49.475539862000048 ], [ -119.601081367999967, 49.475939512000046 ], [ -119.603301863, 49.476070803000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "65.8", "sL_BldgLoss": "65.8", "sL_StrLoss": "65.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000195CADF248E75DC0C3D75382B0B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.613076587999899, 49.435099188000017 ], [ -119.613057225999952, 49.434496940000081 ], [ -119.613031305999982, 49.434254583000111 ], [ -119.613027647999928, 49.434246614000088 ], [ -119.614106946999968, 49.434222206000065 ], [ -119.614184877999946, 49.4342204430001 ], [ -119.61419239599995, 49.434361823000131 ], [ -119.61421355, 49.434759576000054 ], [ -119.614413411999934, 49.434755055000032 ], [ -119.614626890999943, 49.434750226000148 ], [ -119.614653805999978, 49.43525619899999 ], [ -119.614684247999975, 49.435828493000031 ], [ -119.613337725999983, 49.43585894900005 ], [ -119.61315495199996, 49.435410096000084 ], [ -119.613076587999899, 49.435099188000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "422", "sL_BldgLoss": "422", "sL_StrLoss": "422", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D9366DA1BEF5DC0F3310EE40FBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733572937999966, 49.451658477000095 ], [ -119.739064299999939, 49.451976499000104 ], [ -119.738577323999948, 49.455561380000091 ], [ -119.73308554, 49.45524333600013 ], [ -119.733572937999966, 49.451658477000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125147750", "BldgCostT": "82625000", "sL_LossRatio": "0.818229007323676", "sL_AssetLoss": "689681", "sL_BldgLoss": "564317", "sL_StrLoss": "323617", "sL_NStrLoss": "240700", "sL_ContLoss": "125364", "geom_point": "0101000020E6100000159306D0D28F5EC0953C85F97E884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.246995596999966, 49.069282819000051 ], [ -122.246647817999971, 49.069249900000031 ], [ -122.246407859, 49.069250426000032 ], [ -122.246298165, 49.069250663000041 ], [ -122.246017991, 49.069251293000065 ], [ -122.245742386999936, 49.069189399000052 ], [ -122.245556702999977, 49.06908098300007 ], [ -122.245365887, 49.068901307000019 ], [ -122.245281200999926, 49.068627811000091 ], [ -122.245254801999963, 49.068275291000106 ], [ -122.245244658999965, 49.068266328000043 ], [ -122.24503503399994, 49.068080490000078 ], [ -122.244945695999903, 49.068001291000023 ], [ -122.244648494999936, 49.067917894000111 ], [ -122.24437659799996, 49.06787768700012 ], [ -122.241404803999956, 49.067828701000089 ], [ -122.241443082999965, 49.067676798000043 ], [ -122.241550183999919, 49.067502909999988 ], [ -122.24183128599995, 49.067275701000092 ], [ -122.242082718999953, 49.067179905000017 ], [ -122.242645601999982, 49.067074293000097 ], [ -122.242938405999965, 49.066956496000032 ], [ -122.243387499999955, 49.06669999000006 ], [ -122.24389778799997, 49.066176891000083 ], [ -122.244324803999959, 49.066021461000048 ], [ -122.244891994999975, 49.065815 ], [ -122.245120792999913, 49.065658890000066 ], [ -122.245238910999944, 49.065518804000114 ], [ -122.245353102999928, 49.065357801000118 ], [ -122.245355482999983, 49.065158611000129 ], [ -122.245241467999932, 49.064892319000087 ], [ -122.244525172999943, 49.064269539000051 ], [ -122.245007677, 49.063798264000091 ], [ -122.245221967999953, 49.063588924000051 ], [ -122.245489483, 49.063410818000094 ], [ -122.245799984999962, 49.063294504000091 ], [ -122.246598002999988, 49.06312320100006 ], [ -122.247052520999972, 49.063003792000082 ], [ -122.24751319899994, 49.062772011000042 ], [ -122.247822690999968, 49.062616912000131 ], [ -122.247909170999961, 49.062554133000049 ], [ -122.248072710999935, 49.062435396000083 ], [ -122.248426706999965, 49.062089717000042 ], [ -122.248518405999917, 49.06200019100001 ], [ -122.248761203999933, 49.061670601000053 ], [ -122.249561089999943, 49.061797796000128 ], [ -122.24981311599997, 49.06189760300007 ], [ -122.250670094999975, 49.062609101000135 ], [ -122.251081515999942, 49.062802898000072 ], [ -122.251347279999919, 49.063038403000114 ], [ -122.250901824999929, 49.063358642000026 ], [ -122.250378066999957, 49.063735172000065 ], [ -122.250013697999961, 49.063997088000058 ], [ -122.249868502999931, 49.064100213000103 ], [ -122.249439879999912, 49.064578407000042 ], [ -122.249369798, 49.064939212000056 ], [ -122.249371172999972, 49.065513540000047 ], [ -122.249373079999955, 49.066314263000059 ], [ -122.249376387999973, 49.067713504000061 ], [ -122.249361094999983, 49.068583802000049 ], [ -122.249351983999986, 49.0690847320001 ], [ -122.249343318999962, 49.069561465000028 ], [ -122.249324398999974, 49.070603702000064 ], [ -122.24937410099993, 49.071134059000073 ], [ -122.249395126999929, 49.071358580000073 ], [ -122.249422305999957, 49.071648431000021 ], [ -122.24878929, 49.071638009000033 ], [ -122.24845679799995, 49.071518202000107 ], [ -122.248220210999975, 49.071310710000077 ], [ -122.248217331999939, 49.071118942000055 ], [ -122.248212910999982, 49.07082369700003 ], [ -122.246471187999958, 49.070558111000018 ], [ -122.246827904999961, 49.069528484000038 ], [ -122.246995596999966, 49.069282819000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162186168", "BldgCostT": "102706668", "sL_LossRatio": "0.771468656051665", "sL_AssetLoss": "898100", "sL_BldgLoss": "692856", "sL_StrLoss": "369784", "sL_NStrLoss": "323072", "sL_ContLoss": "205244", "geom_point": "0101000020E61000009833E386C2905EC021383F0F7F884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.26075319499999, 49.068658310000068 ], [ -122.26071051199996, 49.067672394000063 ], [ -122.260258882999949, 49.06767199700009 ], [ -122.259923807999954, 49.06778830000011 ], [ -122.259986428999937, 49.067678814 ], [ -122.260043468999953, 49.067579069000082 ], [ -122.260365633000021, 49.067015821000069 ], [ -122.26009975699999, 49.066972304000025 ], [ -122.259318123999932, 49.066731776000033 ], [ -122.258449732999978, 49.06619621700009 ], [ -122.256747477999951, 49.065146345000088 ], [ -122.256484912999937, 49.064984439000085 ], [ -122.256659482999979, 49.064855504000043 ], [ -122.25712272, 49.064609308000051 ], [ -122.257850014000013, 49.064466106000054 ], [ -122.257929220999955, 49.064455186000082 ], [ -122.25811085299992, 49.064430222000077 ], [ -122.259611778999968, 49.064223695000067 ], [ -122.260729708999975, 49.064108495000056 ], [ -122.262954312999966, 49.064103007000028 ], [ -122.26302999399995, 49.064080289000074 ], [ -122.26308048599995, 49.065412798000125 ], [ -122.264209286999971, 49.065417816000078 ], [ -122.264935988999966, 49.065418706000067 ], [ -122.265543481999899, 49.065421791000048 ], [ -122.266001297999978, 49.065480996000083 ], [ -122.266204687999959, 49.065556588000106 ], [ -122.265859601999964, 49.065934999000092 ], [ -122.265679989999981, 49.066194691000057 ], [ -122.265673788999933, 49.066801197000046 ], [ -122.265668020999925, 49.068187508000079 ], [ -122.265569100999954, 49.068397711000024 ], [ -122.265366407999977, 49.068620486000029 ], [ -122.265100182999973, 49.068560802000015 ], [ -122.26380080499996, 49.068548093000075 ], [ -122.263326075999913, 49.068542836000098 ], [ -122.262699909999938, 49.068535890000049 ], [ -122.262703889999912, 49.06922029900003 ], [ -122.261770303, 49.069221095000074 ], [ -122.261490495999936, 49.069193399000035 ], [ -122.261157211999915, 49.069048289000115 ], [ -122.260927723999941, 49.068888900000047 ], [ -122.26075319499999, 49.068658310000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141088500", "BldgCostT": "89100000", "sL_LossRatio": "0.779697899137935", "sL_AssetLoss": "754119", "sL_BldgLoss": "587985", "sL_StrLoss": "306763", "sL_NStrLoss": "281222", "sL_ContLoss": "166134", "geom_point": "0101000020E6100000DFF8A088C1905EC0EAD4CF7AFC874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.25388118799999, 49.064067410000092 ], [ -122.254137983999954, 49.064246502000124 ], [ -122.254488988999981, 49.064476912000046 ], [ -122.254757410999986, 49.064543994000097 ], [ -122.254905001999987, 49.064580680000105 ], [ -122.2552543, 49.064576694000067 ], [ -122.255784187, 49.064369700000064 ], [ -122.256967389999915, 49.063697906000044 ], [ -122.257044921999977, 49.063661832000015 ], [ -122.257917114999884, 49.063255901000026 ], [ -122.258580284999951, 49.063177999000047 ], [ -122.259808839999963, 49.063031494000143 ], [ -122.259943226999937, 49.061357553000079 ], [ -122.25999280399999, 49.060757048000013 ], [ -122.260908577999899, 49.060464401000083 ], [ -122.26102351499992, 49.060423721000049 ], [ -122.262014302999972, 49.060072886000093 ], [ -122.262748687999988, 49.060079858000051 ], [ -122.262762403999943, 49.060079994000084 ], [ -122.262728478999989, 49.061866501000125 ], [ -122.26426390599994, 49.061886585000053 ], [ -122.264273663999973, 49.060092017000059 ], [ -122.264751485999938, 49.060098353000072 ], [ -122.265743273999988, 49.060111566000025 ], [ -122.266214582999936, 49.060054043000029 ], [ -122.266672569999955, 49.059957267000094 ], [ -122.266875127999953, 49.059863947000096 ], [ -122.267542027999951, 49.059556497000102 ], [ -122.267614700999928, 49.059522987000015 ], [ -122.268109824999939, 49.059235343000111 ], [ -122.268203224999965, 49.059181090000045 ], [ -122.268567801999922, 49.058934989000065 ], [ -122.268441141999986, 49.059237995000061 ], [ -122.268288416999951, 49.059603470000127 ], [ -122.268268086999925, 49.059652095000054 ], [ -122.268259608999983, 49.059958885000107 ], [ -122.26825212599995, 49.060228612000067 ], [ -122.268251817999939, 49.060239394000043 ], [ -122.268228279999974, 49.061088709000032 ], [ -122.26823852099993, 49.061487237000051 ], [ -122.268252193999956, 49.062020791000108 ], [ -122.26623149699999, 49.062439203000039 ], [ -122.266007736999953, 49.062483853000046 ], [ -122.264301427999925, 49.062824428000063 ], [ -122.26301358399995, 49.063081467000082 ], [ -122.262019796999979, 49.063279792000088 ], [ -122.261328681999942, 49.063500899000047 ], [ -122.261047139999945, 49.06361769300004 ], [ -122.260861514999988, 49.063694696000034 ], [ -122.26075807299999, 49.063778804000087 ], [ -122.260718005999948, 49.063811395000108 ], [ -122.260729708999975, 49.064108495000056 ], [ -122.259611778999968, 49.064223695000067 ], [ -122.25811085299992, 49.064430222000077 ], [ -122.257929220999955, 49.064455186000082 ], [ -122.257850014000013, 49.064466106000054 ], [ -122.25712272, 49.064609308000051 ], [ -122.256659482999979, 49.064855504000043 ], [ -122.256484912999937, 49.064984439000085 ], [ -122.25634106199999, 49.064898125000127 ], [ -122.25558635, 49.065255464000096 ], [ -122.253872124999987, 49.066147608000065 ], [ -122.253350199999943, 49.065638966000115 ], [ -122.252708952999953, 49.065013965000048 ], [ -122.253103447999962, 49.064695429000039 ], [ -122.25388118799999, 49.064067410000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123917311", "BldgCostT": "83313190", "sL_LossRatio": "0.806910992686098", "sL_AssetLoss": "806136", "sL_BldgLoss": "650480", "sL_StrLoss": "366270", "sL_NStrLoss": "284210", "sL_ContLoss": "155656", "geom_point": "0101000020E6100000C14C2E081D915EC0D9D8A17193884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.263816606999939, 49.070706794000067 ], [ -122.26380080499996, 49.068548093000075 ], [ -122.265100182999973, 49.068560802000015 ], [ -122.265366407999977, 49.068620486000029 ], [ -122.265569100999954, 49.068397711000024 ], [ -122.265668020999925, 49.068187508000079 ], [ -122.265673788999933, 49.066801197000046 ], [ -122.265679989999981, 49.066194691000057 ], [ -122.265859601999964, 49.065934999000092 ], [ -122.266204687999959, 49.065556588000106 ], [ -122.266212191999941, 49.064097312000129 ], [ -122.266267288999956, 49.064126311000095 ], [ -122.267431082999906, 49.064155892000045 ], [ -122.26876419199999, 49.064189611000067 ], [ -122.270477001999936, 49.064233811000058 ], [ -122.270734304999962, 49.064268002000055 ], [ -122.271260990999977, 49.064526992000083 ], [ -122.271259399999963, 49.064939806000041 ], [ -122.271261117999984, 49.065552006000125 ], [ -122.27121939299991, 49.065730801000086 ], [ -122.27113553699995, 49.066111628000016 ], [ -122.271124792999956, 49.066160289000081 ], [ -122.270377567999958, 49.066565098000119 ], [ -122.26996590099999, 49.066788095000049 ], [ -122.269763088999937, 49.066899069000087 ], [ -122.26966378399996, 49.066953392000158 ], [ -122.26957231199998, 49.067121508000092 ], [ -122.269526494000019, 49.067385800000061 ], [ -122.268723757999908, 49.067377935000074 ], [ -122.268641595999966, 49.067377133000093 ], [ -122.268117799999914, 49.067371994000062 ], [ -122.268136210999941, 49.066424301000048 ], [ -122.267240213999912, 49.06641839300007 ], [ -122.267006796999922, 49.066513007000054 ], [ -122.266832420999947, 49.066673797000149 ], [ -122.26681473, 49.067196093000085 ], [ -122.266787500999925, 49.068001904000035 ], [ -122.266670299999987, 49.068354905000035 ], [ -122.26643110199997, 49.068863080000035 ], [ -122.266813321999933, 49.068961106000152 ], [ -122.267499089999944, 49.069387997 ], [ -122.267604793999979, 49.069503411000028 ], [ -122.267518608, 49.069742888000121 ], [ -122.267345717999959, 49.070003800000109 ], [ -122.2664592199999, 49.070578805000025 ], [ -122.266027614999985, 49.070702598000068 ], [ -122.264913289999967, 49.070720612000073 ], [ -122.263816606999939, 49.070706794000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196485333", "BldgCostT": "129438333", "sL_LossRatio": "0.713244209875798", "sL_AssetLoss": "2815570", "sL_BldgLoss": "2008189", "sL_StrLoss": "916229", "sL_NStrLoss": "1091960", "sL_ContLoss": "807381", "geom_point": "0101000020E610000063BBADBA6F915EC07DC9D665BE884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.260938910999968, 49.073131794000069 ], [ -122.260901603999983, 49.072096479000038 ], [ -122.260879620999916, 49.071141909000097 ], [ -122.260697790999984, 49.070849814000098 ], [ -122.260569011999962, 49.069772099000147 ], [ -122.260308069999965, 49.068969837000104 ], [ -122.259923807999954, 49.06778830000011 ], [ -122.260258882999949, 49.06767199700009 ], [ -122.26071051199996, 49.067672394000063 ], [ -122.26075319499999, 49.068658310000068 ], [ -122.260927723999941, 49.068888900000047 ], [ -122.261157211999915, 49.069048289000115 ], [ -122.261490495999936, 49.069193399000035 ], [ -122.261770303, 49.069221095000074 ], [ -122.262703889999912, 49.06922029900003 ], [ -122.262699909999938, 49.068535890000049 ], [ -122.263326075999913, 49.068542836000098 ], [ -122.26380080499996, 49.068548093000075 ], [ -122.263816606999939, 49.070706794000067 ], [ -122.264913289999967, 49.070720612000073 ], [ -122.266027614999985, 49.070702598000068 ], [ -122.2664592199999, 49.070578805000025 ], [ -122.267345717999959, 49.070003800000109 ], [ -122.267518608, 49.069742888000121 ], [ -122.267604793999979, 49.069503411000028 ], [ -122.267499089999944, 49.069387997 ], [ -122.266813321999933, 49.068961106000152 ], [ -122.26643110199997, 49.068863080000035 ], [ -122.266670299999987, 49.068354905000035 ], [ -122.266787500999925, 49.068001904000035 ], [ -122.26681473, 49.067196093000085 ], [ -122.266832420999947, 49.066673797000149 ], [ -122.267006796999922, 49.066513007000054 ], [ -122.267240213999912, 49.06641839300007 ], [ -122.268136210999941, 49.066424301000048 ], [ -122.268117799999914, 49.067371994000062 ], [ -122.268641595999966, 49.067377133000093 ], [ -122.268723757999908, 49.067377935000074 ], [ -122.269526494000019, 49.067385800000061 ], [ -122.26957231199998, 49.067121508000092 ], [ -122.26966378399996, 49.066953392000158 ], [ -122.269763088999937, 49.066899069000087 ], [ -122.26996590099999, 49.066788095000049 ], [ -122.270377567999958, 49.066565098000119 ], [ -122.271124792999956, 49.066160289000081 ], [ -122.27113553699995, 49.066111628000016 ], [ -122.27121939299991, 49.065730801000086 ], [ -122.271261117999984, 49.065552006000125 ], [ -122.271259399999963, 49.064939806000041 ], [ -122.271260990999977, 49.064526992000083 ], [ -122.270734304999962, 49.064268002000055 ], [ -122.270477001999936, 49.064233811000058 ], [ -122.26876419199999, 49.064189611000067 ], [ -122.267431082999906, 49.064155892000045 ], [ -122.266267288999956, 49.064126311000095 ], [ -122.266212191999941, 49.064097312000129 ], [ -122.266231279999914, 49.063414594000037 ], [ -122.267259718999966, 49.063389992000054 ], [ -122.267609591999985, 49.06334530400008 ], [ -122.267998216999928, 49.063243403000122 ], [ -122.268355400999894, 49.063125084000042 ], [ -122.269095681999943, 49.062682100000082 ], [ -122.26915937699998, 49.062653008000076 ], [ -122.269271715999977, 49.062601655000087 ], [ -122.269514648, 49.06249064900009 ], [ -122.26954320599998, 49.062477601000069 ], [ -122.270039100999895, 49.062352394000179 ], [ -122.271055239999924, 49.06222481700005 ], [ -122.271635877999955, 49.062151903000014 ], [ -122.272031103999964, 49.062052912000098 ], [ -122.27248379699995, 49.061817110000071 ], [ -122.272776316999966, 49.061548698000088 ], [ -122.272846712999964, 49.061438397000053 ], [ -122.273329715999964, 49.060621190000077 ], [ -122.273370289999917, 49.060552500000064 ], [ -122.273403798999965, 49.06049579800009 ], [ -122.273485149999942, 49.060129046000057 ], [ -122.275334485999949, 49.060140914000023 ], [ -122.276259044999961, 49.060251671000131 ], [ -122.276412529999959, 49.060279431000041 ], [ -122.27652121199999, 49.060310579000024 ], [ -122.276812814999985, 49.060394137000088 ], [ -122.27733744899993, 49.060696300000117 ], [ -122.277643104999953, 49.060981867000073 ], [ -122.277881125999954, 49.061342622000083 ], [ -122.278045417999977, 49.061924372000078 ], [ -122.278241956, 49.062633463000118 ], [ -122.278526790999976, 49.062974201000031 ], [ -122.278899114999945, 49.063316174000065 ], [ -122.279184741999984, 49.06350995800009 ], [ -122.279522782999919, 49.063646993000134 ], [ -122.279646506999882, 49.063680054000066 ], [ -122.279701032999952, 49.063694626000029 ], [ -122.279757351999962, 49.063694605000094 ], [ -122.280237556999907, 49.063694282000064 ], [ -122.281514647000023, 49.063692546 ], [ -122.281918513999983, 49.06369120600003 ], [ -122.285733294999957, 49.063686200000106 ], [ -122.286240742999937, 49.063690228000056 ], [ -122.286219731999935, 49.064245751000087 ], [ -122.286146654999925, 49.066106641000012 ], [ -122.286043353999958, 49.069039866000089 ], [ -122.285956421999956, 49.069039329000113 ], [ -122.28596028799997, 49.068769484000086 ], [ -122.285549596999914, 49.06876694200011 ], [ -122.285557335, 49.068227255000053 ], [ -122.285146646999948, 49.06822471100007 ], [ -122.285154389999946, 49.067685022000077 ], [ -122.284743707999922, 49.06768247800008 ], [ -122.284759199999954, 49.066603101000098 ], [ -122.285169874999966, 49.06660564500006 ], [ -122.285173743999977, 49.066335801000044 ], [ -122.285584418, 49.066338344000016 ], [ -122.285586662999961, 49.066181703000012 ], [ -122.2847381699999, 49.066152350000074 ], [ -122.284695250999931, 49.066690496000049 ], [ -122.28359685099997, 49.066652488000059 ], [ -122.283572419999985, 49.066958722000059 ], [ -122.278185381999904, 49.06677214700008 ], [ -122.278176696999978, 49.06737172600004 ], [ -122.276944659999941, 49.067364015000059 ], [ -122.276940743999944, 49.067633858000065 ], [ -122.276119378999937, 49.067628710000115 ], [ -122.27609585799992, 49.06924777200004 ], [ -122.274453077999951, 49.069237456000046 ], [ -122.274460413999989, 49.068733754000036 ], [ -122.269534181999987, 49.068562736000089 ], [ -122.26953265799996, 49.068666684000036 ], [ -122.269191666999959, 49.068664526000092 ], [ -122.26903533399998, 49.068764962000017 ], [ -122.268649034999925, 49.06877216200008 ], [ -122.268445944999911, 49.068659800000091 ], [ -122.268300589999939, 49.068658879000097 ], [ -122.268293544999921, 49.069138642000084 ], [ -122.268360133999977, 49.069135761000034 ], [ -122.268505718999933, 49.06919991700007 ], [ -122.268703357999968, 49.069201169000088 ], [ -122.268700321999944, 49.069408081000063 ], [ -122.268781632999932, 49.069503661000049 ], [ -122.268959533999976, 49.069845861000047 ], [ -122.268857333999989, 49.070153461000096 ], [ -122.26868723699998, 49.070299564000059 ], [ -122.268683555999971, 49.070550385000111 ], [ -122.268397331999935, 49.070548571000124 ], [ -122.268273233999963, 49.070655161000055 ], [ -122.268271255999977, 49.070656355000054 ], [ -122.268268886999962, 49.070817625000053 ], [ -122.268006739999919, 49.070815962 ], [ -122.267856837999958, 49.070906414000099 ], [ -122.267854214999943, 49.071084863000067 ], [ -122.267485920999917, 49.071082527000051 ], [ -122.26715793299995, 49.071237362000041 ], [ -122.267029963999974, 49.071272216000033 ], [ -122.267024856999967, 49.071619336000019 ], [ -122.267846283999958, 49.07162455000006 ], [ -122.267821365999978, 49.073320113000044 ], [ -122.267973614999946, 49.073325403000048 ], [ -122.268139926999964, 49.071249710000124 ], [ -122.26867301799993, 49.07126823300014 ], [ -122.268675633999962, 49.071090071000079 ], [ -122.269086341999952, 49.071092673000081 ], [ -122.269090302, 49.070822830000033 ], [ -122.270322423999971, 49.070830626000046 ], [ -122.270318471999957, 49.071100469000022 ], [ -122.271139890999933, 49.071105659000082 ], [ -122.271143839000018, 49.070835815000081 ], [ -122.272375961999984, 49.070843590000088 ], [ -122.272367886999987, 49.071396546000045 ], [ -122.273600265999931, 49.071439315000077 ], [ -122.273578206999915, 49.071715045000076 ], [ -122.27643518499994, 49.071814139000075 ], [ -122.276198074999925, 49.07477995400005 ], [ -122.273065475999914, 49.074776284000102 ], [ -122.270477781999958, 49.074773182000101 ], [ -122.267451622999957, 49.074769456000055 ], [ -122.266561695999911, 49.074768334000062 ], [ -122.26587697599993, 49.074767496000085 ], [ -122.261208060999962, 49.074761528000089 ], [ -122.26100248399996, 49.074761262000145 ], [ -122.26100130699993, 49.074727021000037 ], [ -122.260984909999976, 49.07426480900002 ], [ -122.26095835699999, 49.073611285000055 ], [ -122.260938910999968, 49.073131794000069 ] ], [ [ -122.277367077999926, 49.066557055000011 ], [ -122.277373384999933, 49.066122182000051 ], [ -122.277252772999972, 49.066118001000113 ], [ -122.277277359999985, 49.065810337000087 ], [ -122.277140688999964, 49.065805599000051 ], [ -122.277145446999896, 49.065746062000073 ], [ -122.276968151999981, 49.065744951000092 ], [ -122.276972065999985, 49.065475108000015 ], [ -122.276561403999978, 49.065472534000016 ], [ -122.276565320999936, 49.065202690000014 ], [ -122.276154657999925, 49.065200116000021 ], [ -122.276162372999977, 49.064669043000052 ], [ -122.274735172999954, 49.064619538000059 ], [ -122.274768197999961, 49.064206560000038 ], [ -122.274023473999961, 49.064180720000081 ], [ -122.274041133999944, 49.06395992300007 ], [ -122.273680575999904, 49.063947412000104 ], [ -122.273696844999961, 49.063744014000079 ], [ -122.273226772999962, 49.063727700000129 ], [ -122.273328141999968, 49.062460492000042 ], [ -122.272426529999976, 49.062429195000092 ], [ -122.272425216999935, 49.062445604000111 ], [ -122.271703493999937, 49.062420546000034 ], [ -122.271686097999961, 49.062637921000039 ], [ -122.270458116999919, 49.062595274000053 ], [ -122.27044192799994, 49.06279749200008 ], [ -122.27070433399993, 49.062834461000143 ], [ -122.27072243299996, 49.063185062000038 ], [ -122.270557333999989, 49.063293961000049 ], [ -122.270432730999971, 49.063297085000052 ], [ -122.270425575999951, 49.063785959 ], [ -122.270487632999945, 49.063799461000045 ], [ -122.270629233999941, 49.063786661000059 ], [ -122.270817547999982, 49.063817177000033 ], [ -122.271657104999974, 49.063822478000112 ], [ -122.271655017999962, 49.06396523300009 ], [ -122.271937929, 49.06409411800005 ], [ -122.272063811999928, 49.064094912000101 ], [ -122.272062724999969, 49.06416933800007 ], [ -122.272141833999953, 49.0642519620001 ], [ -122.272326734999965, 49.064344761000036 ], [ -122.272349499999962, 49.064366582000069 ], [ -122.272470525999907, 49.064367345000079 ], [ -122.272468864999922, 49.064480994000107 ], [ -122.27250743499998, 49.064517961000071 ], [ -122.272521333999947, 49.064948862000072 ], [ -122.272551838999931, 49.065061470000082 ], [ -122.274816631999968, 49.065140065000065 ], [ -122.27470465499999, 49.066540355000086 ], [ -122.274903041999934, 49.066541601000047 ], [ -122.274899115999958, 49.066811444000024 ], [ -122.276952490999975, 49.066824327000042 ], [ -122.27695640599994, 49.066554483000147 ], [ -122.277367077999926, 49.066557055000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15007501", "BldgCostT": "10350001", "sL_LossRatio": "0.787749864937871", "sL_AssetLoss": "148080", "sL_BldgLoss": "116650", "sL_StrLoss": "59160", "sL_NStrLoss": "57490", "sL_ContLoss": "31430", "geom_point": "0101000020E610000001570D1D56925EC00FE48F5841894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.285440297999912, 49.074727436000046 ], [ -122.285442368999938, 49.074715934000025 ], [ -122.285001166999962, 49.074724322000073 ], [ -122.285266622999941, 49.071396023000062 ], [ -122.285922320999958, 49.071418701000013 ], [ -122.285952553999962, 49.069309173000093 ], [ -122.286033368999981, 49.069309672000067 ], [ -122.286233921999923, 49.069310913000102 ], [ -122.286363250999983, 49.069311712000086 ], [ -122.286366151999943, 49.069109224000051 ], [ -122.286736174999973, 49.069133531 ], [ -122.287199228999953, 49.06916306200003 ], [ -122.287400097, 49.069162810000059 ], [ -122.287591729000027, 49.069162578000061 ], [ -122.287728784999928, 49.069162410000061 ], [ -122.28931692799992, 49.069160503 ], [ -122.289411598999905, 49.069160384000057 ], [ -122.288372233999951, 49.070502019000088 ], [ -122.28805708899999, 49.070941382000086 ], [ -122.287982899999946, 49.070940924000055 ], [ -122.287981384999966, 49.071046925000054 ], [ -122.287671648999918, 49.071478740000039 ], [ -122.287656005, 49.071478644000095 ], [ -122.287671337999939, 49.071479174000046 ], [ -122.287389569999931, 49.071871987000115 ], [ -122.286853612999934, 49.0730541880001 ], [ -122.286690251999971, 49.073644465000044 ], [ -122.286476098999941, 49.07441818800006 ], [ -122.286196787999955, 49.075719390000103 ], [ -122.28597749699999, 49.076487192000052 ], [ -122.285762295999987, 49.077404035000029 ], [ -122.285115823999917, 49.077400033000053 ], [ -122.28501499, 49.077399408000076 ], [ -122.285019516999924, 49.077084102000043 ], [ -122.285383579, 49.075041134000152 ], [ -122.285440297999912, 49.074727436000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.84020160094871", "sL_AssetLoss": "16865", "sL_BldgLoss": "14170", "sL_StrLoss": "8450", "sL_NStrLoss": "5720", "sL_ContLoss": "2695", "geom_point": "0101000020E6100000E8F0394541925EC03DC8BAD12A8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.285411697, 49.080935067000027 ], [ -122.285383264999936, 49.080824823000093 ], [ -122.285123251999934, 49.080894601000104 ], [ -122.284928909999977, 49.080780613000073 ], [ -122.284768269999987, 49.080686382000053 ], [ -122.284724110999932, 49.079189513000102 ], [ -122.284880464999929, 49.07786433900003 ], [ -122.284912478999971, 49.077684719000111 ], [ -122.285058769999921, 49.077689779000067 ], [ -122.285690100999915, 49.077711613000091 ], [ -122.285638182, 49.077932802000106 ], [ -122.28557838899998, 49.078457209000121 ], [ -122.285557129999916, 49.079054235000044 ], [ -122.285657904999965, 49.080068249000121 ], [ -122.285908926999966, 49.081472289000089 ], [ -122.285411697, 49.080935067000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302020720", "BldgCostT": "196005413", "sL_LossRatio": "0.782465243411366", "sL_AssetLoss": "1475116", "sL_BldgLoss": "1154227", "sL_StrLoss": "619648", "sL_NStrLoss": "534579", "sL_ContLoss": "320889", "geom_point": "0101000020E61000009610F63772915EC0A745A75BB4874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.266001297999978, 49.065480996000083 ], [ -122.265543481999899, 49.065421791000048 ], [ -122.264935988999966, 49.065418706000067 ], [ -122.264209286999971, 49.065417816000078 ], [ -122.26308048599995, 49.065412798000125 ], [ -122.26302999399995, 49.064080289000074 ], [ -122.262954312999966, 49.064103007000028 ], [ -122.260729708999975, 49.064108495000056 ], [ -122.260718005999948, 49.063811395000108 ], [ -122.26075807299999, 49.063778804000087 ], [ -122.260861514999988, 49.063694696000034 ], [ -122.261047139999945, 49.06361769300004 ], [ -122.261328681999942, 49.063500899000047 ], [ -122.262019796999979, 49.063279792000088 ], [ -122.26301358399995, 49.063081467000082 ], [ -122.264301427999925, 49.062824428000063 ], [ -122.266007736999953, 49.062483853000046 ], [ -122.26623149699999, 49.062439203000039 ], [ -122.268252193999956, 49.062020791000108 ], [ -122.26823852099993, 49.061487237000051 ], [ -122.268228279999974, 49.061088709000032 ], [ -122.268251817999939, 49.060239394000043 ], [ -122.26825212599995, 49.060228612000067 ], [ -122.268259608999983, 49.059958885000107 ], [ -122.268268086999925, 49.059652095000054 ], [ -122.268288416999951, 49.059603470000127 ], [ -122.268441141999986, 49.059237995000061 ], [ -122.268567801999922, 49.058934989000065 ], [ -122.270057982999944, 49.057773304000079 ], [ -122.27071345399996, 49.05723739900003 ], [ -122.271192873999951, 49.056845416000137 ], [ -122.271784767999918, 49.05644317400003 ], [ -122.272764811999949, 49.055902271000086 ], [ -122.272809806999987, 49.055877456000076 ], [ -122.272686416999946, 49.055743337000109 ], [ -122.272582635999981, 49.055584714000126 ], [ -122.271751201999933, 49.05431440100007 ], [ -122.271620790999975, 49.054130756000042 ], [ -122.271369461999882, 49.053776845000087 ], [ -122.271307468999964, 49.053689543000097 ], [ -122.271229833999939, 49.053580219000089 ], [ -122.271206397999919, 49.053547192000067 ], [ -122.270865969999988, 49.052904555000104 ], [ -122.270833319999895, 49.052842858000091 ], [ -122.27081484699994, 49.052808025000012 ], [ -122.270742766999902, 49.052671950000075 ], [ -122.270723321999952, 49.0526134260001 ], [ -122.270940673999974, 49.052617408000103 ], [ -122.271008067999972, 49.052769492000053 ], [ -122.271098949999953, 49.052974612000078 ], [ -122.271375680999981, 49.053449407000109 ], [ -122.272345028999979, 49.054656858000087 ], [ -122.27256936400002, 49.05484585500006 ], [ -122.273255836999937, 49.055245758000133 ], [ -122.27338394, 49.055320390000041 ], [ -122.273603069999965, 49.055489367000078 ], [ -122.274232712999904, 49.056142903000108 ], [ -122.274275266999936, 49.056187048 ], [ -122.275294115999912, 49.056896748000057 ], [ -122.274281358999986, 49.05633329900003 ], [ -122.273710181999931, 49.055946572000053 ], [ -122.27330714699994, 49.055630568000019 ], [ -122.273221187999951, 49.055672515000055 ], [ -122.273151925999969, 49.055706317000109 ], [ -122.273896606999969, 49.056267661000099 ], [ -122.275212321999945, 49.057012905000143 ], [ -122.276000892999946, 49.057362299000047 ], [ -122.276298926000024, 49.057494365000089 ], [ -122.276430883, 49.0575528090001 ], [ -122.277269956999959, 49.057841557000053 ], [ -122.277603268999911, 49.057936980000122 ], [ -122.278237234999921, 49.058118508000064 ], [ -122.279372886999965, 49.058377846000091 ], [ -122.281208382999921, 49.058613622000053 ], [ -122.282220930999983, 49.058666705000093 ], [ -122.282930731999969, 49.058672368000025 ], [ -122.282932215999963, 49.058737015000077 ], [ -122.282947567999898, 49.05939407900005 ], [ -122.282964153999927, 49.060106035000047 ], [ -122.282271982999958, 49.060113376000068 ], [ -122.279679589999915, 49.06014099700014 ], [ -122.279671910999966, 49.060687107000064 ], [ -122.279666318999915, 49.061082900000073 ], [ -122.279664933999982, 49.061181836000088 ], [ -122.279660360999912, 49.06150564899999 ], [ -122.279651659999956, 49.062118883000039 ], [ -122.279640442999948, 49.062989790000124 ], [ -122.27963899599996, 49.063100210000066 ], [ -122.279639229999972, 49.063130608000051 ], [ -122.279635461999931, 49.063139851000088 ], [ -122.279522782999919, 49.063646993000134 ], [ -122.279184741999984, 49.06350995800009 ], [ -122.278899114999945, 49.063316174000065 ], [ -122.278526790999976, 49.062974201000031 ], [ -122.278241956, 49.062633463000118 ], [ -122.278045417999977, 49.061924372000078 ], [ -122.277881125999954, 49.061342622000083 ], [ -122.277643104999953, 49.060981867000073 ], [ -122.27733744899993, 49.060696300000117 ], [ -122.276812814999985, 49.060394137000088 ], [ -122.27652121199999, 49.060310579000024 ], [ -122.276412529999959, 49.060279431000041 ], [ -122.276259044999961, 49.060251671000131 ], [ -122.275334485999949, 49.060140914000023 ], [ -122.273485149999942, 49.060129046000057 ], [ -122.273403798999965, 49.06049579800009 ], [ -122.273370289999917, 49.060552500000064 ], [ -122.273329715999964, 49.060621190000077 ], [ -122.272846712999964, 49.061438397000053 ], [ -122.272776316999966, 49.061548698000088 ], [ -122.27248379699995, 49.061817110000071 ], [ -122.272031103999964, 49.062052912000098 ], [ -122.271635877999955, 49.062151903000014 ], [ -122.271055239999924, 49.06222481700005 ], [ -122.270039100999895, 49.062352394000179 ], [ -122.26954320599998, 49.062477601000069 ], [ -122.269514648, 49.06249064900009 ], [ -122.269271715999977, 49.062601655000087 ], [ -122.26915937699998, 49.062653008000076 ], [ -122.269095681999943, 49.062682100000082 ], [ -122.268355400999894, 49.063125084000042 ], [ -122.267998216999928, 49.063243403000122 ], [ -122.267609591999985, 49.06334530400008 ], [ -122.267259718999966, 49.063389992000054 ], [ -122.266231279999914, 49.063414594000037 ], [ -122.266212191999941, 49.064097312000129 ], [ -122.266204687999959, 49.065556588000106 ], [ -122.266001297999978, 49.065480996000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51074000", "BldgCostT": "34280000", "sL_LossRatio": "0.807060454245969", "sL_AssetLoss": "321764", "sL_BldgLoss": "259683", "sL_StrLoss": "139479", "sL_NStrLoss": "120204", "sL_ContLoss": "62081", "geom_point": "0101000020E610000019B1AAB937915EC00981434528874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.266334707999931, 49.056830696000134 ], [ -122.2662504499999, 49.056002911000093 ], [ -122.266250177999936, 49.05511849600007 ], [ -122.267846052999957, 49.05504597400008 ], [ -122.269578328999941, 49.055081842000085 ], [ -122.270905270999947, 49.05491607700008 ], [ -122.271707147999948, 49.054933135000034 ], [ -122.271760376999922, 49.055978034000091 ], [ -122.271784767999918, 49.05644317400003 ], [ -122.271192873999951, 49.056845416000137 ], [ -122.270911975999937, 49.056798727000064 ], [ -122.267676000999984, 49.056827790000092 ], [ -122.266348383000022, 49.056830670000053 ], [ -122.266334707999931, 49.056830696000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180080644", "BldgCostT": "113766523", "sL_LossRatio": "0.757321699288505", "sL_AssetLoss": "1036269", "sL_BldgLoss": "784789", "sL_StrLoss": "428709", "sL_NStrLoss": "356080", "sL_ContLoss": "251480", "geom_point": "0101000020E6100000C44A8226F8905EC0C0E1AA5736874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.262728478999989, 49.061866501000125 ], [ -122.262762403999943, 49.060079994000084 ], [ -122.262748687999988, 49.060079858000051 ], [ -122.262014302999972, 49.060072886000093 ], [ -122.260960047999944, 49.060063849000144 ], [ -122.26067408199999, 49.060061392000087 ], [ -122.260663690999934, 49.059802281000053 ], [ -122.26064815699999, 49.059415218000034 ], [ -122.260632580999967, 49.059027823000093 ], [ -122.260564258999963, 49.057327500000014 ], [ -122.260529575999968, 49.056463515000132 ], [ -122.260490583999967, 49.055493206000151 ], [ -122.260457087999896, 49.054444487000076 ], [ -122.260427499999949, 49.053755503000097 ], [ -122.260402298999935, 49.053046999000053 ], [ -122.26040096399997, 49.052887283000111 ], [ -122.260399574, 49.05271520000008 ], [ -122.26508104, 49.052792496000102 ], [ -122.267508305999968, 49.052834590000082 ], [ -122.267508796999934, 49.052834597000086 ], [ -122.268547107999922, 49.052614574000067 ], [ -122.268929885999952, 49.052618843000097 ], [ -122.269840159999916, 49.052631549000068 ], [ -122.270723321999952, 49.0526134260001 ], [ -122.270742766999902, 49.052671950000075 ], [ -122.27081484699994, 49.052808025000012 ], [ -122.270833319999895, 49.052842858000091 ], [ -122.270865969999988, 49.052904555000104 ], [ -122.271206397999919, 49.053547192000067 ], [ -122.271229833999939, 49.053580219000089 ], [ -122.271307468999964, 49.053689543000097 ], [ -122.271369461999882, 49.053776845000087 ], [ -122.271620790999975, 49.054130756000042 ], [ -122.271751201999933, 49.05431440100007 ], [ -122.272582635999981, 49.055584714000126 ], [ -122.272686416999946, 49.055743337000109 ], [ -122.272809806999987, 49.055877456000076 ], [ -122.272764811999949, 49.055902271000086 ], [ -122.271784767999918, 49.05644317400003 ], [ -122.271760376999922, 49.055978034000091 ], [ -122.271707147999948, 49.054933135000034 ], [ -122.270905270999947, 49.05491607700008 ], [ -122.269578328999941, 49.055081842000085 ], [ -122.267846052999957, 49.05504597400008 ], [ -122.266250177999936, 49.05511849600007 ], [ -122.2662504499999, 49.056002911000093 ], [ -122.266334707999931, 49.056830696000134 ], [ -122.266348383000022, 49.056830670000053 ], [ -122.267676000999984, 49.056827790000092 ], [ -122.270911975999937, 49.056798727000064 ], [ -122.271192873999951, 49.056845416000137 ], [ -122.27071345399996, 49.05723739900003 ], [ -122.270057982999944, 49.057773304000079 ], [ -122.268567801999922, 49.058934989000065 ], [ -122.268203224999965, 49.059181090000045 ], [ -122.268109824999939, 49.059235343000111 ], [ -122.267614700999928, 49.059522987000015 ], [ -122.267542027999951, 49.059556497000102 ], [ -122.266875127999953, 49.059863947000096 ], [ -122.266672569999955, 49.059957267000094 ], [ -122.266214582999936, 49.060054043000029 ], [ -122.265743273999988, 49.060111566000025 ], [ -122.264751485999938, 49.060098353000072 ], [ -122.264273663999973, 49.060092017000059 ], [ -122.26426390599994, 49.061886585000053 ], [ -122.262728478999989, 49.061866501000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127077827", "BldgCostT": "86687409", "sL_LossRatio": "0.841010891602622", "sL_AssetLoss": "636270", "sL_BldgLoss": "535110", "sL_StrLoss": "257520", "sL_NStrLoss": "277590", "sL_ContLoss": "101160", "geom_point": "0101000020E61000004AE2D5078C915EC0AA5DB0A7DF864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.272567785999939, 49.052642492000039 ], [ -122.27731571399994, 49.052695409000115 ], [ -122.277327802999977, 49.053452202000116 ], [ -122.277376494999942, 49.053698208000093 ], [ -122.273603069999965, 49.055489367000078 ], [ -122.27338394, 49.055320390000041 ], [ -122.273255836999937, 49.055245758000133 ], [ -122.27256936400002, 49.05484585500006 ], [ -122.272345028999979, 49.054656858000087 ], [ -122.271375680999981, 49.053449407000109 ], [ -122.271098949999953, 49.052974612000078 ], [ -122.271008067999972, 49.052769492000053 ], [ -122.270940673999974, 49.052617408000103 ], [ -122.27170108299994, 49.052631294000136 ], [ -122.272567785999939, 49.052642492000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107810000", "BldgCostT": "73880000", "sL_LossRatio": "0.835949511924769", "sL_AssetLoss": "643241", "sL_BldgLoss": "537717", "sL_StrLoss": "307787", "sL_NStrLoss": "229930", "sL_ContLoss": "105524", "geom_point": "0101000020E6100000AAB48319AC915EC09FE10F378E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.27170108299994, 49.052631294000136 ], [ -122.271642181999965, 49.051434696000072 ], [ -122.271635862, 49.051100851000037 ], [ -122.271624316999947, 49.050492928000089 ], [ -122.271606154999972, 49.049535983000055 ], [ -122.271600983999974, 49.049265099000131 ], [ -122.272945411999984, 49.049255010000088 ], [ -122.273137317999968, 49.049285097000052 ], [ -122.273910406999931, 49.049507603000073 ], [ -122.274160525999946, 49.04957930500013 ], [ -122.275731593999978, 49.050036893 ], [ -122.27597177499996, 49.05007849200009 ], [ -122.277021519999977, 49.050092405000065 ], [ -122.27770138399994, 49.050094390000055 ], [ -122.278547689999968, 49.05009547500012 ], [ -122.27975351399999, 49.05009699900009 ], [ -122.279980660999968, 49.050098431000087 ], [ -122.281028115999959, 49.050105094000074 ], [ -122.281690988999927, 49.050113590000137 ], [ -122.28168668, 49.050253201000046 ], [ -122.28124190799997, 49.050906788000127 ], [ -122.281228717999937, 49.050985607000051 ], [ -122.281038306999946, 49.051742604000033 ], [ -122.280859219999968, 49.052444109000099 ], [ -122.280896582999929, 49.052576097000049 ], [ -122.280015006000013, 49.052649313000138 ], [ -122.279738900999959, 49.052680298000055 ], [ -122.277878497999964, 49.052673497000086 ], [ -122.277773206999939, 49.052758213000075 ], [ -122.27731571399994, 49.052695409000115 ], [ -122.272567785999939, 49.052642492000039 ], [ -122.27170108299994, 49.052631294000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233462469", "BldgCostT": "157005412", "sL_LossRatio": "0.816312200678925", "sL_AssetLoss": "1221932", "sL_BldgLoss": "997478", "sL_StrLoss": "540202", "sL_NStrLoss": "457276", "sL_ContLoss": "224454", "geom_point": "0101000020E6100000BDF1D52BB8915EC0DF53A4882D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.273137317999968, 49.049285097000052 ], [ -122.272945411999984, 49.049255010000088 ], [ -122.271600983999974, 49.049265099000131 ], [ -122.271551882999972, 49.046749892000022 ], [ -122.271758689999942, 49.046387399000018 ], [ -122.271810218000013, 49.046119694000076 ], [ -122.272329263999964, 49.046147612000055 ], [ -122.274124695999916, 49.046278507000061 ], [ -122.275354465999939, 49.046384271000093 ], [ -122.276426709999924, 49.046474654000043 ], [ -122.277222740999946, 49.046543093000011 ], [ -122.277648397999968, 49.046579672000107 ], [ -122.279257111999968, 49.046717972000089 ], [ -122.279328286999942, 49.04843150500006 ], [ -122.280998198999953, 49.048439784000081 ], [ -122.280967572999884, 49.046834001000036 ], [ -122.281491682, 49.046883796000074 ], [ -122.282046095999974, 49.046966098000077 ], [ -122.282630610999945, 49.047134202000109 ], [ -122.28259828399996, 49.048997395000164 ], [ -122.282588907999951, 49.04966418700004 ], [ -122.282583487999972, 49.050125589000068 ], [ -122.281690988999927, 49.050113590000137 ], [ -122.281028115999959, 49.050105094000074 ], [ -122.279980660999968, 49.050098431000087 ], [ -122.27975351399999, 49.05009699900009 ], [ -122.278547689999968, 49.05009547500012 ], [ -122.27770138399994, 49.050094390000055 ], [ -122.277021519999977, 49.050092405000065 ], [ -122.27597177499996, 49.05007849200009 ], [ -122.275731593999978, 49.050036893 ], [ -122.274160525999946, 49.04957930500013 ], [ -122.273910406999931, 49.049507603000073 ], [ -122.273137317999968, 49.049285097000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163765834", "BldgCostT": "105318334", "sL_LossRatio": "0.745851138532981", "sL_AssetLoss": "1133564", "sL_BldgLoss": "845470", "sL_StrLoss": "445280", "sL_NStrLoss": "400190", "sL_ContLoss": "288094", "geom_point": "0101000020E61000000D111E0AB2915EC08460A805A7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.271810218000013, 49.046119694000076 ], [ -122.271721781999986, 49.046113899000083 ], [ -122.271490223999962, 49.046163966000051 ], [ -122.271329994, 49.046198624000063 ], [ -122.27104652699991, 49.046259914000053 ], [ -122.271203051999962, 49.044778061000102 ], [ -122.271092436999936, 49.044660387000057 ], [ -122.271172035999896, 49.043836428000063 ], [ -122.271194680999926, 49.043254297000068 ], [ -122.271217431999958, 49.042669730000078 ], [ -122.27129314199999, 49.040723421000045 ], [ -122.271301576999932, 49.040507007000045 ], [ -122.271194851999937, 49.040130946000019 ], [ -122.27125121200001, 49.040127058000095 ], [ -122.27136819399999, 49.04011893100013 ], [ -122.271860713999928, 49.040152272000086 ], [ -122.272632113999961, 49.040308010000096 ], [ -122.273593872999982, 49.040546088000085 ], [ -122.274374947999945, 49.040649787000049 ], [ -122.274669379, 49.040689472000132 ], [ -122.274683177999947, 49.040691341000112 ], [ -122.274903287999933, 49.040721008000041 ], [ -122.275192531999977, 49.040759971000035 ], [ -122.275351572, 49.040781355000028 ], [ -122.275355413999932, 49.040781927000111 ], [ -122.27547012, 49.04092343900011 ], [ -122.27557837799999, 49.041056989000012 ], [ -122.276652962999918, 49.041773057000043 ], [ -122.277239168999941, 49.04205492500008 ], [ -122.277853129999968, 49.042310002000058 ], [ -122.27934214899993, 49.042785640000041 ], [ -122.281091152999934, 49.043307585000044 ], [ -122.282277927999957, 49.043826472000035 ], [ -122.283244541999977, 49.04440703200008 ], [ -122.285160518999987, 49.045637272000086 ], [ -122.284756848999947, 49.045663334000082 ], [ -122.284590083999959, 49.045670782000087 ], [ -122.28398361, 49.045700186000033 ], [ -122.280970767, 49.045560275000128 ], [ -122.280967572999884, 49.046834001000036 ], [ -122.280998198999953, 49.048439784000081 ], [ -122.279328286999942, 49.04843150500006 ], [ -122.279257111999968, 49.046717972000089 ], [ -122.277648397999968, 49.046579672000107 ], [ -122.277222740999946, 49.046543093000011 ], [ -122.276426709999924, 49.046474654000043 ], [ -122.275354465999939, 49.046384271000093 ], [ -122.274124695999916, 49.046278507000061 ], [ -122.272329263999964, 49.046147612000055 ], [ -122.271810218000013, 49.046119694000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1303204102", "BldgCostT": "846710309", "sL_LossRatio": "0.745889977610008", "sL_AssetLoss": "6100940", "sL_BldgLoss": "4550630", "sL_StrLoss": "1809390", "sL_NStrLoss": "2741240", "sL_ContLoss": "1550310", "geom_point": "0101000020E6100000474385D149925EC0809FEDA81C864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.280896582999929, 49.052576097000049 ], [ -122.280859219999968, 49.052444109000099 ], [ -122.281038306999946, 49.051742604000033 ], [ -122.281228717999937, 49.050985607000051 ], [ -122.28124190799997, 49.050906788000127 ], [ -122.28168668, 49.050253201000046 ], [ -122.281690988999927, 49.050113590000137 ], [ -122.282583487999972, 49.050125589000068 ], [ -122.282588907999951, 49.04966418700004 ], [ -122.28259828399996, 49.048997395000164 ], [ -122.282630610999945, 49.047134202000109 ], [ -122.282046095999974, 49.046966098000077 ], [ -122.281491682, 49.046883796000074 ], [ -122.280967572999884, 49.046834001000036 ], [ -122.280970767, 49.045560275000128 ], [ -122.28398361, 49.045700186000033 ], [ -122.284590083999959, 49.045670782000087 ], [ -122.284756848999947, 49.045663334000082 ], [ -122.285160518999987, 49.045637272000086 ], [ -122.283244541999977, 49.04440703200008 ], [ -122.282277927999957, 49.043826472000035 ], [ -122.281091152999934, 49.043307585000044 ], [ -122.27934214899993, 49.042785640000041 ], [ -122.277853129999968, 49.042310002000058 ], [ -122.277239168999941, 49.04205492500008 ], [ -122.276652962999918, 49.041773057000043 ], [ -122.27557837799999, 49.041056989000012 ], [ -122.27547012, 49.04092343900011 ], [ -122.275355413999932, 49.040781927000111 ], [ -122.275554395999933, 49.040808748000082 ], [ -122.275878162999959, 49.040852358000045 ], [ -122.2759548, 49.040862686000011 ], [ -122.276297449999902, 49.040908861000055 ], [ -122.276404664999944, 49.040923302000067 ], [ -122.277015401999961, 49.041005600000091 ], [ -122.278104927999919, 49.041153410000028 ], [ -122.278238795999968, 49.041171501000079 ], [ -122.278629747999943, 49.041277763000075 ], [ -122.279497484000018, 49.041513598000044 ], [ -122.279758054999917, 49.041611491000076 ], [ -122.280028694999885, 49.041713217000066 ], [ -122.280141380999964, 49.041763905000032 ], [ -122.280679780999975, 49.042006192000052 ], [ -122.286505706999947, 49.045365250000046 ], [ -122.286567032999955, 49.045305277000089 ], [ -122.286914714999952, 49.044965179000016 ], [ -122.287627678999911, 49.045374193000058 ], [ -122.287913995999958, 49.045538095000097 ], [ -122.288164219999985, 49.045681302000041 ], [ -122.288587288999949, 49.045573302000015 ], [ -122.289051088999955, 49.04557176900007 ], [ -122.28927335399996, 49.045571042000063 ], [ -122.28958629899995, 49.045570005000116 ], [ -122.290368900999951, 49.045569106000116 ], [ -122.291750910999937, 49.045566310000041 ], [ -122.293470907999946, 49.045563604000073 ], [ -122.29352028699999, 49.046593913000024 ], [ -122.293603303999987, 49.047459266000054 ], [ -122.293620500999921, 49.047638595000087 ], [ -122.293663209999949, 49.048043627 ], [ -122.293675062999952, 49.048155889000043 ], [ -122.293675085999936, 49.048156199000061 ], [ -122.293606784999966, 49.04837920100001 ], [ -122.293371293999968, 49.048674008000091 ], [ -122.293019684999962, 49.048965697000021 ], [ -122.29294889099998, 49.049029914000123 ], [ -122.291639802999981, 49.048974809000093 ], [ -122.290332206999977, 49.048987286000077 ], [ -122.289007308999913, 49.048975800000036 ], [ -122.288358662999926, 49.048970354000112 ], [ -122.288030272999933, 49.048967583000028 ], [ -122.287700203999933, 49.048964803000061 ], [ -122.287669416999975, 49.05012402100003 ], [ -122.287629133999971, 49.051012205000099 ], [ -122.287617524999959, 49.051267713000122 ], [ -122.287612021999976, 49.051389765000067 ], [ -122.28759707099999, 49.051719034000079 ], [ -122.287440033999928, 49.052505148000073 ], [ -122.287310303999959, 49.052817259000058 ], [ -122.287309443999959, 49.052817117000139 ], [ -122.287000592999945, 49.052764896000035 ], [ -122.285111204999936, 49.052744604000054 ], [ -122.283843807999943, 49.05273228800008 ], [ -122.282755421000033, 49.052721691000073 ], [ -122.281885968999958, 49.052711347000056 ], [ -122.281764389999978, 49.052709899000106 ], [ -122.28135457899999, 49.052860878000061 ], [ -122.280896582999929, 49.052576097000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203624970", "BldgCostT": "138845413", "sL_LossRatio": "0.83080310932347", "sL_AssetLoss": "955449", "sL_BldgLoss": "793790", "sL_StrLoss": "381740", "sL_NStrLoss": "412050", "sL_ContLoss": "161659", "geom_point": "0101000020E61000004FC7084DF7915EC025DE019E34854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.276404664999944, 49.040923302000067 ], [ -122.276297449999902, 49.040908861000055 ], [ -122.2759548, 49.040862686000011 ], [ -122.275878162999959, 49.040852358000045 ], [ -122.275813246999959, 49.040795465000066 ], [ -122.275969469999922, 49.040816737000057 ], [ -122.276841827999959, 49.040935571000084 ], [ -122.276767052999944, 49.040854110000048 ], [ -122.276751201999929, 49.040836791000096 ], [ -122.277018760999937, 49.039813382000055 ], [ -122.277040784999897, 49.039729014000045 ], [ -122.276928509999948, 49.038360998000037 ], [ -122.278012925999946, 49.03839568900009 ], [ -122.278190036999916, 49.03840135900009 ], [ -122.278655794999949, 49.038416256000076 ], [ -122.279589110999936, 49.038446093000111 ], [ -122.282282213999949, 49.038553009000104 ], [ -122.282356382999978, 49.040144007 ], [ -122.283363316999925, 49.040142891000087 ], [ -122.283937776, 49.040142897000059 ], [ -122.283989992999977, 49.041204007000012 ], [ -122.282396411999954, 49.04120288900009 ], [ -122.28250520899995, 49.042222688000052 ], [ -122.282765593999926, 49.04252569500008 ], [ -122.283144391999926, 49.042801985000082 ], [ -122.286401904999963, 49.044670994000121 ], [ -122.286914714999952, 49.044965179000016 ], [ -122.286567032999955, 49.045305277000089 ], [ -122.286505706999947, 49.045365250000046 ], [ -122.280679780999975, 49.042006192000052 ], [ -122.280141380999964, 49.041763905000032 ], [ -122.280028694999885, 49.041713217000066 ], [ -122.279758054999917, 49.041611491000076 ], [ -122.279497484000018, 49.041513598000044 ], [ -122.278629747999943, 49.041277763000075 ], [ -122.278238795999968, 49.041171501000079 ], [ -122.278104927999919, 49.041153410000028 ], [ -122.277015401999961, 49.041005600000091 ], [ -122.276404664999944, 49.040923302000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71743667", "BldgCostT": "47476667", "sL_LossRatio": "0.81050109632542", "sL_AssetLoss": "423232", "sL_BldgLoss": "343030", "sL_StrLoss": "198340", "sL_NStrLoss": "144690", "sL_ContLoss": "80202", "geom_point": "0101000020E610000011503CC244925EC055D9B1F0F9844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.285146293999929, 49.037320608000094 ], [ -122.287735512999959, 49.037270404000012 ], [ -122.28775970099997, 49.038229685000033 ], [ -122.28777368399993, 49.038783600000066 ], [ -122.288901107999934, 49.038832490000047 ], [ -122.28889121099995, 49.040021288000041 ], [ -122.288468604999977, 49.040021104000118 ], [ -122.287798414999912, 49.040139511000106 ], [ -122.287315390999964, 49.040140809000093 ], [ -122.2862621, 49.040140400000034 ], [ -122.284182673999922, 49.040142390000057 ], [ -122.283937776, 49.040142897000059 ], [ -122.283363316999925, 49.040142891000087 ], [ -122.282356382999978, 49.040144007 ], [ -122.282282213999949, 49.038553009000104 ], [ -122.282233621999964, 49.037841805000085 ], [ -122.283307747999942, 49.037791033000119 ], [ -122.284765500999967, 49.037722090000059 ], [ -122.284919606999935, 49.037641788000037 ], [ -122.284988113999958, 49.037382678000029 ], [ -122.285017106999959, 49.037371322000133 ], [ -122.285146293999929, 49.037320608000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117500085", "BldgCostT": "78778335", "sL_LossRatio": "0.797683785378396", "sL_AssetLoss": "625417", "sL_BldgLoss": "498885", "sL_StrLoss": "286820", "sL_NStrLoss": "212065", "sL_ContLoss": "126532", "geom_point": "0101000020E610000031780C4D21925EC041E7B9AEAD844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.282138084999957, 49.035385299000026 ], [ -122.282129479999952, 49.035064090000049 ], [ -122.282607286999948, 49.035061131000042 ], [ -122.28325578599997, 49.035057098000038 ], [ -122.284336998999933, 49.035049515000075 ], [ -122.28485135499993, 49.035045839000048 ], [ -122.285418121999925, 49.035041805000112 ], [ -122.285488014999927, 49.034680001000069 ], [ -122.286415509999983, 49.034695901000092 ], [ -122.286536773999941, 49.03482089700006 ], [ -122.286549596999976, 49.035519185000041 ], [ -122.28769248699993, 49.035509097000102 ], [ -122.287713471999936, 49.036368395000103 ], [ -122.287716081999974, 49.036474767000051 ], [ -122.287722045999956, 49.036719268000084 ], [ -122.287729574999972, 49.03702783300006 ], [ -122.287735512999959, 49.037270404000012 ], [ -122.285146293999929, 49.037320608000094 ], [ -122.285017106999959, 49.037371322000133 ], [ -122.284988113999958, 49.037382678000029 ], [ -122.284919606999935, 49.037641788000037 ], [ -122.284765500999967, 49.037722090000059 ], [ -122.283307747999942, 49.037791033000119 ], [ -122.282233621999964, 49.037841805000085 ], [ -122.282282213999949, 49.038553009000104 ], [ -122.279589110999936, 49.038446093000111 ], [ -122.279535315999908, 49.037491288000048 ], [ -122.279520480999921, 49.037043596000053 ], [ -122.279470382999989, 49.035905906000089 ], [ -122.279462407999944, 49.035663092000071 ], [ -122.279599489999967, 49.035487599000064 ], [ -122.279881392999982, 49.035417990000035 ], [ -122.282138084999957, 49.035385299000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "796279553", "BldgCostT": "539863746", "sL_LossRatio": "0.836395943991058", "sL_AssetLoss": "2918534", "sL_BldgLoss": "2441050", "sL_StrLoss": "1056770", "sL_NStrLoss": "1384280", "sL_ContLoss": "477484", "geom_point": "0101000020E61000005F924E4D97925EC0DE289939B0844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.287644076999953, 49.034433688000057 ], [ -122.287837005999975, 49.034193288000083 ], [ -122.287850656999922, 49.034194077000102 ], [ -122.28836380599995, 49.034222973000034 ], [ -122.288445603999946, 49.034227564000055 ], [ -122.288981397999919, 49.034257710000105 ], [ -122.292201099999929, 49.034438903000101 ], [ -122.292547352999989, 49.034451508000132 ], [ -122.29318992099995, 49.034474899000053 ], [ -122.293194355999958, 49.034592664000066 ], [ -122.2931984639999, 49.034700525000069 ], [ -122.293208907999926, 49.034975895000045 ], [ -122.293217812999899, 49.0356721980001 ], [ -122.293233520999962, 49.036076599000062 ], [ -122.293229603999976, 49.036211683000033 ], [ -122.29325819599994, 49.03698709600009 ], [ -122.293310009999985, 49.037970690000051 ], [ -122.293334104999985, 49.039043393000028 ], [ -122.292011169999981, 49.038980560000013 ], [ -122.290618084999949, 49.038914389000077 ], [ -122.288901107999934, 49.038832490000047 ], [ -122.28777368399993, 49.038783600000066 ], [ -122.28775970099997, 49.038229685000033 ], [ -122.287735512999959, 49.037270404000012 ], [ -122.287729574999972, 49.03702783300006 ], [ -122.287722045999956, 49.036719268000084 ], [ -122.287716081999974, 49.036474767000051 ], [ -122.287713471999936, 49.036368395000103 ], [ -122.28769248699993, 49.035509097000102 ], [ -122.287684402999972, 49.035328792 ], [ -122.287644076999953, 49.034433688000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78037417", "BldgCostT": "49191667", "sL_LossRatio": "0.832495517172677", "sL_AssetLoss": "260996", "sL_BldgLoss": "217278", "sL_StrLoss": "136040", "sL_NStrLoss": "81238", "sL_ContLoss": "43718", "geom_point": "0101000020E6100000DEB9E644F1915EC0118A8C9280844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.275583841999932, 49.033532290000053 ], [ -122.275891497999922, 49.033533301000077 ], [ -122.281977280999953, 49.033869730000077 ], [ -122.287837005999975, 49.034193288000083 ], [ -122.287644076999953, 49.034433688000057 ], [ -122.287684402999972, 49.035328792 ], [ -122.28769248699993, 49.035509097000102 ], [ -122.286549596999976, 49.035519185000041 ], [ -122.286536773999941, 49.03482089700006 ], [ -122.286415509999983, 49.034695901000092 ], [ -122.285488014999927, 49.034680001000069 ], [ -122.285418121999925, 49.035041805000112 ], [ -122.28485135499993, 49.035045839000048 ], [ -122.284336998999933, 49.035049515000075 ], [ -122.28325578599997, 49.035057098000038 ], [ -122.282607286999948, 49.035061131000042 ], [ -122.282129479999952, 49.035064090000049 ], [ -122.282138084999957, 49.035385299000026 ], [ -122.279881392999982, 49.035417990000035 ], [ -122.279599489999967, 49.035487599000064 ], [ -122.279462407999944, 49.035663092000071 ], [ -122.279470382999989, 49.035905906000089 ], [ -122.279520480999921, 49.037043596000053 ], [ -122.279535315999908, 49.037491288000048 ], [ -122.279589110999936, 49.038446093000111 ], [ -122.278655794999949, 49.038416256000076 ], [ -122.278190036999916, 49.03840135900009 ], [ -122.278028181999929, 49.038114487000051 ], [ -122.275583841999932, 49.033532290000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "609709436", "BldgCostT": "367032150", "sL_LossRatio": "0.67167297819749", "sL_AssetLoss": "3029376", "sL_BldgLoss": "2034750", "sL_StrLoss": "830860", "sL_NStrLoss": "1203890", "sL_ContLoss": "994626", "geom_point": "0101000020E61000003BCB03C37F915EC02E8E9F3A94834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.275969469999922, 49.040816737000057 ], [ -122.275813246999959, 49.040795465000066 ], [ -122.275878162999959, 49.040852358000045 ], [ -122.275554395999933, 49.040808748000082 ], [ -122.275355413999932, 49.040781927000111 ], [ -122.275351572, 49.040781355000028 ], [ -122.275192531999977, 49.040759971000035 ], [ -122.274903287999933, 49.040721008000041 ], [ -122.274683177999947, 49.040691341000112 ], [ -122.274669379, 49.040689472000132 ], [ -122.274374947999945, 49.040649787000049 ], [ -122.273593872999982, 49.040546088000085 ], [ -122.272632113999961, 49.040308010000096 ], [ -122.271860713999928, 49.040152272000086 ], [ -122.27136819399999, 49.04011893100013 ], [ -122.27125121200001, 49.040127058000095 ], [ -122.271194851999937, 49.040130946000019 ], [ -122.271157028999966, 49.040022343000047 ], [ -122.270972764999968, 49.039760815000101 ], [ -122.270699326999988, 49.039468511000081 ], [ -122.270613611999948, 49.039376886000078 ], [ -122.27022021, 49.039109412000073 ], [ -122.270106348999917, 49.039032005000095 ], [ -122.269660877999939, 49.038730783000069 ], [ -122.268813066999925, 49.038157466000072 ], [ -122.268803451999958, 49.038150960000053 ], [ -122.268741528999939, 49.038094438 ], [ -122.268344597999942, 49.037732005000123 ], [ -122.267679501999964, 49.0364316450001 ], [ -122.267675101999927, 49.036423101000061 ], [ -122.267535515999981, 49.036462683000089 ], [ -122.267039295999979, 49.03660344300004 ], [ -122.266933307999963, 49.036633491000025 ], [ -122.266673576999921, 49.0366316920001 ], [ -122.266443077999938, 49.036572305000078 ], [ -122.266149286999934, 49.036397107000013 ], [ -122.263222408999965, 49.034625891000118 ], [ -122.262692203999976, 49.034305004000068 ], [ -122.261780494999968, 49.033939689000064 ], [ -122.261113063999957, 49.033773694000054 ], [ -122.26015374499994, 49.033653468000047 ], [ -122.259012569999967, 49.033510402000019 ], [ -122.259042525999988, 49.033510387000021 ], [ -122.259723605999966, 49.033510083000124 ], [ -122.260396916999966, 49.033510074000105 ], [ -122.261026181999924, 49.033510014000079 ], [ -122.264707786999978, 49.033509710000089 ], [ -122.265121630999957, 49.033509517000027 ], [ -122.265923640999972, 49.033509158000122 ], [ -122.266265649999951, 49.03350900300007 ], [ -122.26629452499999, 49.033509009000049 ], [ -122.266235207999912, 49.033364442000028 ], [ -122.266231481999966, 49.033355410000112 ], [ -122.265977909999918, 49.032696498000043 ], [ -122.265739603999947, 49.031949806000071 ], [ -122.265706611, 49.031849491000109 ], [ -122.265654847999883, 49.031576016000081 ], [ -122.265391395999941, 49.03018421600008 ], [ -122.265388102999964, 49.030079199000113 ], [ -122.265377341999979, 49.029733975000063 ], [ -122.265374550999937, 49.029644065000085 ], [ -122.265350902999941, 49.028887125 ], [ -122.265295918999954, 49.027124503000074 ], [ -122.265298743999935, 49.024050237000054 ], [ -122.26529920099992, 49.023531839000107 ], [ -122.265357246999912, 49.02343917700005 ], [ -122.265355802999963, 49.020889792000055 ], [ -122.265355327999956, 49.020048277000029 ], [ -122.265350611999949, 49.016914189000019 ], [ -122.268451130999935, 49.016928168000028 ], [ -122.268916157, 49.016930257000055 ], [ -122.270215372999971, 49.016936068000071 ], [ -122.271836075999943, 49.01694327900006 ], [ -122.275373229999957, 49.016904748000037 ], [ -122.275865311999965, 49.016899373000072 ], [ -122.276289872999911, 49.016894747000094 ], [ -122.276167729999898, 49.018424444000061 ], [ -122.273853135999957, 49.01834406400009 ], [ -122.273780677999923, 49.019250899000077 ], [ -122.272718565999966, 49.019213998000048 ], [ -122.272713370999966, 49.019570532000024 ], [ -122.272303085999965, 49.019567945000091 ], [ -122.272299226999934, 49.019832621000035 ], [ -122.275932310999949, 49.019958815000052 ], [ -122.275910727999971, 49.020229087000139 ], [ -122.275986366999959, 49.020231714000033 ], [ -122.276011314999977, 49.018511789000129 ], [ -122.276421592999938, 49.018514363000108 ], [ -122.27643332699995, 49.017704824000127 ], [ -122.276843598999932, 49.017707396000098 ], [ -122.27685546, 49.01688858000005 ], [ -122.27916216600002, 49.016863341000061 ], [ -122.279736655999983, 49.016857059000074 ], [ -122.279764007999972, 49.016856764000039 ], [ -122.28240479499999, 49.016827794000065 ], [ -122.282380753999973, 49.017588063000048 ], [ -122.282365972999955, 49.018055784000083 ], [ -122.282350625999982, 49.018541495000115 ], [ -122.282346084999958, 49.018685368000028 ], [ -122.282309121999972, 49.01985464800002 ], [ -122.282304271999948, 49.020007510000063 ], [ -122.282274714999957, 49.020942869000102 ], [ -122.282258787000018, 49.021446554000129 ], [ -122.28220759099996, 49.023065355 ], [ -122.282193366999977, 49.023515096000018 ], [ -122.282176621999938, 49.024046005000066 ], [ -122.282172943, 49.024162671000113 ], [ -122.282158892999973, 49.024612411000064 ], [ -122.282058171999935, 49.027831488000068 ], [ -122.282049973999975, 49.028093124000087 ], [ -122.282006918999954, 49.029469038000116 ], [ -122.282003809999964, 49.029567945000018 ], [ -122.281944337999974, 49.031469466000068 ], [ -122.283996518999942, 49.031409837000069 ], [ -122.286249594999958, 49.031369785 ], [ -122.287493687999941, 49.031341606000069 ], [ -122.287602375999967, 49.033388617000043 ], [ -122.287609687999947, 49.033526408000085 ], [ -122.285773370999934, 49.033534267000036 ], [ -122.28571058199999, 49.033603191000061 ], [ -122.285769919999964, 49.033707097000075 ], [ -122.287848782999959, 49.034127048000087 ], [ -122.287837005999975, 49.034193288000083 ], [ -122.281977280999953, 49.033869730000077 ], [ -122.275891497999922, 49.033533301000077 ], [ -122.275583841999932, 49.033532290000053 ], [ -122.278028181999929, 49.038114487000051 ], [ -122.278190036999916, 49.03840135900009 ], [ -122.278012925999946, 49.03839568900009 ], [ -122.276928509999948, 49.038360998000037 ], [ -122.277040784999897, 49.039729014000045 ], [ -122.277018760999937, 49.039813382000055 ], [ -122.276751201999929, 49.040836791000096 ], [ -122.276767052999944, 49.040854110000048 ], [ -122.276841827999959, 49.040935571000084 ], [ -122.275969469999922, 49.040816737000057 ] ], [ [ -122.273597455999919, 49.030460648000052 ], [ -122.273619718999925, 49.030182106000026 ], [ -122.272969445999962, 49.030159519000044 ], [ -122.272969199999963, 49.030176419000128 ], [ -122.273346133999951, 49.030189513000103 ], [ -122.273325217, 49.030451192000044 ], [ -122.273597455999919, 49.030460648000052 ] ], [ [ -122.280786889999945, 49.028796726000031 ], [ -122.28078760299999, 49.028747201000066 ], [ -122.279771368999931, 49.028711967000071 ], [ -122.280024332999943, 49.025541418000053 ], [ -122.27843051799999, 49.025486141000044 ], [ -122.278619684999967, 49.023115924000074 ], [ -122.277586031999959, 49.023109458000064 ], [ -122.277605560999973, 49.021760227000051 ], [ -122.278716509, 49.021767177000065 ], [ -122.278771905, 49.021073001000062 ], [ -122.27829768499997, 49.021056549000093 ], [ -122.278434948999987, 49.01933658300009 ], [ -122.278050993999983, 49.019334181000048 ], [ -122.278031478999964, 49.020683411000093 ], [ -122.27612157599998, 49.020671446000087 ], [ -122.275869016999962, 49.023833935 ], [ -122.275046881999955, 49.023805392000028 ], [ -122.275039688, 49.023895455000059 ], [ -122.274402160999941, 49.023873316000085 ], [ -122.274379210999925, 49.024160565000045 ], [ -122.274387923999939, 49.024160868000116 ], [ -122.274279701999916, 49.025515331000079 ], [ -122.27455430299996, 49.025524867000044 ], [ -122.274467976999944, 49.026605301000103 ], [ -122.274478673999937, 49.026605672000123 ], [ -122.274269503, 49.029223369000114 ], [ -122.278316291999943, 49.029363820000079 ], [ -122.278316908999969, 49.029321046000113 ], [ -122.279137643999931, 49.029326176000048 ], [ -122.27914154099993, 49.029056330000039 ], [ -122.280372635, 49.029064014000085 ], [ -122.280376526999987, 49.028794169000051 ], [ -122.280786889999945, 49.028796726000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343317105", "BldgCostT": "223542491", "sL_LossRatio": "0.751154810999146", "sL_AssetLoss": "1530337", "sL_BldgLoss": "1149520", "sL_StrLoss": "521450", "sL_NStrLoss": "628070", "sL_ContLoss": "380817", "geom_point": "0101000020E6100000A556DB2471925EC0424562A3A8834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.287602375999967, 49.033388617000043 ], [ -122.287493687999941, 49.031341606000069 ], [ -122.286249594999958, 49.031369785 ], [ -122.283996518999942, 49.031409837000069 ], [ -122.281944337999974, 49.031469466000068 ], [ -122.282003809999964, 49.029567945000018 ], [ -122.282006918999954, 49.029469038000116 ], [ -122.282049973999975, 49.028093124000087 ], [ -122.282058171999935, 49.027831488000068 ], [ -122.282158892999973, 49.024612411000064 ], [ -122.282172943, 49.024162671000113 ], [ -122.282176621999938, 49.024046005000066 ], [ -122.282668786999949, 49.024046963000046 ], [ -122.282737183999984, 49.024047091000021 ], [ -122.285363033999914, 49.024052227000077 ], [ -122.285978627999938, 49.024053431000056 ], [ -122.286785604999963, 49.024054966000072 ], [ -122.287934624999934, 49.024057181000018 ], [ -122.288344953999939, 49.024057966000015 ], [ -122.291928945999956, 49.024064764000087 ], [ -122.29376148199999, 49.024068208000095 ], [ -122.29374449, 49.024488606000027 ], [ -122.293627174999941, 49.025576599000033 ], [ -122.293474505999882, 49.026992850000049 ], [ -122.293413084999926, 49.027562435000078 ], [ -122.293395640999975, 49.027723951000027 ], [ -122.293304597999963, 49.028645803000089 ], [ -122.293182530999957, 49.0298349870001 ], [ -122.293174080999933, 49.029917433000065 ], [ -122.293140731999983, 49.030242201000114 ], [ -122.293065422, 49.031224104000096 ], [ -122.293109112999929, 49.03215446700009 ], [ -122.293149189999937, 49.033008410000086 ], [ -122.293159265999989, 49.03328838900007 ], [ -122.29316120699994, 49.03334231500012 ], [ -122.293165352, 49.033458876000111 ], [ -122.293173715999956, 49.03381941 ], [ -122.29317830899997, 49.034019205000057 ], [ -122.29318992099995, 49.034474899000053 ], [ -122.292547352999989, 49.034451508000132 ], [ -122.292201099999929, 49.034438903000101 ], [ -122.288981397999919, 49.034257710000105 ], [ -122.288445603999946, 49.034227564000055 ], [ -122.28836380599995, 49.034222973000034 ], [ -122.287850656999922, 49.034194077000102 ], [ -122.287837005999975, 49.034193288000083 ], [ -122.287848782999959, 49.034127048000087 ], [ -122.285769919999964, 49.033707097000075 ], [ -122.28571058199999, 49.033603191000061 ], [ -122.285773370999934, 49.033534267000036 ], [ -122.287609687999947, 49.033526408000085 ], [ -122.287602375999967, 49.033388617000043 ] ], [ [ -122.290156085999939, 49.026965650000101 ], [ -122.290177547999974, 49.026695913000019 ], [ -122.289845598999989, 49.026693871000049 ], [ -122.28984175899997, 49.026963717000029 ], [ -122.290156085999939, 49.026965650000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131912499", "BldgCostT": "82299999", "sL_LossRatio": "0.760635491606715", "sL_AssetLoss": "834000", "sL_BldgLoss": "634370", "sL_StrLoss": "317550", "sL_NStrLoss": "316820", "sL_ContLoss": "199630", "geom_point": "0101000020E6100000416F3B7EF9925EC0C591C505B9834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.299185199999926, 49.026945472000101 ], [ -122.299779199999989, 49.026934170000054 ], [ -122.299659474999913, 49.030832504000088 ], [ -122.299648437999949, 49.031106699000077 ], [ -122.29925933, 49.031114707000064 ], [ -122.298780045999962, 49.031124577000121 ], [ -122.29789035499995, 49.03114290700006 ], [ -122.297876485999922, 49.031143180000079 ], [ -122.296722193999983, 49.031160095000153 ], [ -122.295961098999939, 49.03118529500005 ], [ -122.293065422, 49.031224104000096 ], [ -122.293140731999983, 49.030242201000114 ], [ -122.293174080999933, 49.029917433000065 ], [ -122.293182530999957, 49.0298349870001 ], [ -122.293304597999963, 49.028645803000089 ], [ -122.293395640999975, 49.027723951000027 ], [ -122.293413084999926, 49.027562435000078 ], [ -122.293474505999882, 49.026992850000049 ], [ -122.299185199999926, 49.026945472000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "280014334", "BldgCostT": "187983334", "sL_LossRatio": "0.82224829976499", "sL_AssetLoss": "1283352", "sL_BldgLoss": "1055234", "sL_StrLoss": "545485", "sL_NStrLoss": "509749", "sL_ContLoss": "228118", "geom_point": "0101000020E61000008BD5FF9C36935EC0C4617A0C20844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.301584382999977, 49.031089800000117 ], [ -122.307194408999962, 49.030953999000111 ], [ -122.307195971999974, 49.03106204400008 ], [ -122.307204224999936, 49.031628608000091 ], [ -122.307208169999939, 49.03189857900005 ], [ -122.307208829000032, 49.031943714000086 ], [ -122.307215198999955, 49.03238280300004 ], [ -122.307237886999957, 49.033304892000046 ], [ -122.303748606999989, 49.033291097000046 ], [ -122.302949997999946, 49.033306009000107 ], [ -122.302682992999976, 49.033310295 ], [ -122.30153219799999, 49.033333784000085 ], [ -122.299776780999963, 49.033358898000088 ], [ -122.293944162999964, 49.033447121000108 ], [ -122.293165352, 49.033458876000111 ], [ -122.29316120699994, 49.03334231500012 ], [ -122.293159265999989, 49.03328838900007 ], [ -122.293149189999937, 49.033008410000086 ], [ -122.293109112999929, 49.03215446700009 ], [ -122.293065422, 49.031224104000096 ], [ -122.295961098999939, 49.03118529500005 ], [ -122.296722193999983, 49.031160095000153 ], [ -122.297876485999922, 49.031143180000079 ], [ -122.29789035499995, 49.03114290700006 ], [ -122.298780045999962, 49.031124577000121 ], [ -122.29925933, 49.031114707000064 ], [ -122.299648437999949, 49.031106699000077 ], [ -122.30028506499994, 49.031093555000069 ], [ -122.300510784999958, 49.031088906000086 ], [ -122.301584382999977, 49.031089800000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161961000", "BldgCostT": "96990000", "sL_LossRatio": "0.746948517947717", "sL_AssetLoss": "891534", "sL_BldgLoss": "665930", "sL_StrLoss": "337950", "sL_NStrLoss": "327980", "sL_ContLoss": "225604", "geom_point": "0101000020E6100000FED987A388935EC0BE2CABB88A844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307348092999945, 49.037188146000048 ], [ -122.307343284999916, 49.037016509000082 ], [ -122.306413395999982, 49.037013417 ], [ -122.306237510999949, 49.036920802000068 ], [ -122.306138417999989, 49.035737298000093 ], [ -122.305065895999959, 49.035722009000018 ], [ -122.30437320499999, 49.035711703000068 ], [ -122.301419783999975, 49.035439502000045 ], [ -122.299875787999923, 49.035368203000111 ], [ -122.298333996999972, 49.035199711000061 ], [ -122.294275989999946, 49.035265205000059 ], [ -122.294252381999925, 49.035270158000074 ], [ -122.294054782999964, 49.035311593000088 ], [ -122.293819592999952, 49.035499999000116 ], [ -122.293690904999977, 49.035829202000052 ], [ -122.293619296999921, 49.036179206000057 ], [ -122.293229603999976, 49.036211683000033 ], [ -122.293233520999962, 49.036076599000062 ], [ -122.293217812999899, 49.0356721980001 ], [ -122.293208907999926, 49.034975895000045 ], [ -122.2931984639999, 49.034700525000069 ], [ -122.293194355999958, 49.034592664000066 ], [ -122.29318992099995, 49.034474899000053 ], [ -122.29317830899997, 49.034019205000057 ], [ -122.293173715999956, 49.03381941 ], [ -122.293165352, 49.033458876000111 ], [ -122.293944162999964, 49.033447121000108 ], [ -122.299776780999963, 49.033358898000088 ], [ -122.30153219799999, 49.033333784000085 ], [ -122.302682992999976, 49.033310295 ], [ -122.302949997999946, 49.033306009000107 ], [ -122.303748606999989, 49.033291097000046 ], [ -122.307237886999957, 49.033304892000046 ], [ -122.30722731899999, 49.034181709000066 ], [ -122.307217425999923, 49.034805908000109 ], [ -122.307215585999984, 49.034922757000047 ], [ -122.307275255999954, 49.035260391000087 ], [ -122.314105045999952, 49.035641858000076 ], [ -122.31539944799998, 49.035714127000048 ], [ -122.315459482999984, 49.035881 ], [ -122.315588392, 49.035980109000064 ], [ -122.315593804999949, 49.036176679000029 ], [ -122.315647704999904, 49.038137691000074 ], [ -122.315114463999976, 49.038143648000087 ], [ -122.314415710999924, 49.038151448000107 ], [ -122.312485696999957, 49.038172956000011 ], [ -122.311110925999955, 49.038188253000044 ], [ -122.310837394999965, 49.038191305000069 ], [ -122.310563860999977, 49.038194357000101 ], [ -122.309817922999954, 49.038202645000062 ], [ -122.309544391999935, 49.038205694000126 ], [ -122.3085244899999, 49.038216587000072 ], [ -122.307377161999966, 49.038229366000081 ], [ -122.307348092999945, 49.037188146000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210590668", "BldgCostT": "143546668", "sL_LossRatio": "0.865627193329504", "sL_AssetLoss": "973121", "sL_BldgLoss": "842360", "sL_StrLoss": "413260", "sL_NStrLoss": "429100", "sL_ContLoss": "130761", "geom_point": "0101000020E61000001F52DA5567935EC070E4CB55BD844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.299893905999937, 49.036966408000055 ], [ -122.299883905999977, 49.036179898000057 ], [ -122.299875787999923, 49.035368203000111 ], [ -122.301419783999975, 49.035439502000045 ], [ -122.30437320499999, 49.035711703000068 ], [ -122.305065895999959, 49.035722009000018 ], [ -122.306138417999989, 49.035737298000093 ], [ -122.306237510999949, 49.036920802000068 ], [ -122.306413395999982, 49.037013417 ], [ -122.307343284999916, 49.037016509000082 ], [ -122.307348092999945, 49.037188146000048 ], [ -122.307377161999966, 49.038229366000081 ], [ -122.30457665899992, 49.038269993000029 ], [ -122.304473916999925, 49.038271861000077 ], [ -122.303473783999948, 49.03834381000005 ], [ -122.303086953999966, 49.038370484000083 ], [ -122.301974577999928, 49.038447202000086 ], [ -122.30149560199996, 49.038480574000047 ], [ -122.300059241000028, 49.038580681000063 ], [ -122.299914101999946, 49.038590806000052 ], [ -122.299903017999924, 49.037782604000036 ], [ -122.299893905999937, 49.036966408000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "349104501", "BldgCostT": "233180001", "sL_LossRatio": "0.753219371917287", "sL_AssetLoss": "1662902", "sL_BldgLoss": "1252530", "sL_StrLoss": "602980", "sL_NStrLoss": "649550", "sL_ContLoss": "410372", "geom_point": "0101000020E61000007AB50519FB925EC0D7E32971BE844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.294275989999946, 49.035265205000059 ], [ -122.298333996999972, 49.035199711000061 ], [ -122.299875787999923, 49.035368203000111 ], [ -122.299883905999977, 49.036179898000057 ], [ -122.299893905999937, 49.036966408000055 ], [ -122.299903017999924, 49.037782604000036 ], [ -122.299914101999946, 49.038590806000052 ], [ -122.298563942999948, 49.038683696000099 ], [ -122.298400160999947, 49.038694966000051 ], [ -122.293334104999985, 49.039043393000028 ], [ -122.293310009999985, 49.037970690000051 ], [ -122.29325819599994, 49.03698709600009 ], [ -122.293229603999976, 49.036211683000033 ], [ -122.293619296999921, 49.036179206000057 ], [ -122.293690904999977, 49.035829202000052 ], [ -122.293819592999952, 49.035499999000116 ], [ -122.294054782999964, 49.035311593000088 ], [ -122.294252381999925, 49.035270158000074 ], [ -122.294275989999946, 49.035265205000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "636669018", "BldgCostT": "434257905", "sL_LossRatio": "0.857449919022619", "sL_AssetLoss": "2208024", "sL_BldgLoss": "1893270", "sL_StrLoss": "872590", "sL_NStrLoss": "1020680", "sL_ContLoss": "314754", "geom_point": "0101000020E610000022C8C68B1E935EC07FF2C9ED0B854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.303086953999966, 49.038370484000083 ], [ -122.303473783999948, 49.03834381000005 ], [ -122.303497799999917, 49.040110709000039 ], [ -122.302005996999966, 49.040120609000063 ], [ -122.301363144999982, 49.04013754700005 ], [ -122.300010722999943, 49.040173178000074 ], [ -122.298418617999943, 49.04021510900003 ], [ -122.298404929999919, 49.040215115000066 ], [ -122.297077888999965, 49.040216692000065 ], [ -122.293359427, 49.040221705000057 ], [ -122.293353897, 49.040033108000038 ], [ -122.293334104999985, 49.039043393000028 ], [ -122.298400160999947, 49.038694966000051 ], [ -122.298563942999948, 49.038683696000099 ], [ -122.299914101999946, 49.038590806000052 ], [ -122.300059241000028, 49.038580681000063 ], [ -122.30149560199996, 49.038480574000047 ], [ -122.301974577999928, 49.038447202000086 ], [ -122.303086953999966, 49.038370484000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316995728", "BldgCostT": "209934857", "sL_LossRatio": "0.794991010865323", "sL_AssetLoss": "1339951", "sL_BldgLoss": "1065249", "sL_StrLoss": "486810", "sL_NStrLoss": "578439", "sL_ContLoss": "274702", "geom_point": "0101000020E6100000421EA1C932935EC01FF57C72B9854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297318789999963, 49.047499389000166 ], [ -122.29713793399999, 49.047506363000068 ], [ -122.296139247, 49.047544811000066 ], [ -122.295700808999953, 49.047561694000095 ], [ -122.296126615999952, 49.046507189000074 ], [ -122.29711228799999, 49.045672095000043 ], [ -122.297214404000016, 49.045558405000129 ], [ -122.295469791999921, 49.045561289000062 ], [ -122.29567965199999, 49.045357499000033 ], [ -122.296090979999974, 49.044957987000025 ], [ -122.296321592999931, 49.044517899000049 ], [ -122.29632881, 49.043482176000111 ], [ -122.296330406999971, 49.043254296000057 ], [ -122.296627702999956, 49.042680294000043 ], [ -122.296938418999972, 49.042402776000046 ], [ -122.296959019000013, 49.042384406000068 ], [ -122.297185708999933, 49.042261532000097 ], [ -122.297442189999941, 49.042122509000102 ], [ -122.298365804999918, 49.041861302000086 ], [ -122.298394941999959, 49.041861007000108 ], [ -122.301316696999947, 49.04183278900009 ], [ -122.301368099999934, 49.041832311000093 ], [ -122.301466341999955, 49.041839856000081 ], [ -122.30211191199993, 49.04188950200011 ], [ -122.304217502999975, 49.041933290000088 ], [ -122.304249561999981, 49.041933965000041 ], [ -122.304477354999946, 49.041938723000037 ], [ -122.304490996999974, 49.041938993000016 ], [ -122.304490675999944, 49.041948016000028 ], [ -122.30448677, 49.042056510000123 ], [ -122.304464089999925, 49.042686059000076 ], [ -122.304461503999931, 49.042758006000099 ], [ -122.304445484999931, 49.043202308000097 ], [ -122.304590490999971, 49.043202705000049 ], [ -122.304590433999948, 49.043211727 ], [ -122.304579581999974, 49.044358093000035 ], [ -122.304442995999963, 49.044356098000016 ], [ -122.304121803999962, 49.044352299000103 ], [ -122.303508185999959, 49.044240086000066 ], [ -122.303069985999969, 49.044245703000037 ], [ -122.30179490299993, 49.044936492 ], [ -122.301750790999932, 49.045146896000055 ], [ -122.301874627999894, 49.045259305000094 ], [ -122.302201394999912, 49.04541660000006 ], [ -122.302287213999946, 49.045456607000077 ], [ -122.302440091000022, 49.045633102000117 ], [ -122.302525590999892, 49.046020092000042 ], [ -122.302539275999919, 49.046019970000096 ], [ -122.304414848999969, 49.046004930000066 ], [ -122.304414932999961, 49.046014021000062 ], [ -122.304424615999892, 49.046795921000111 ], [ -122.304424886999968, 49.046878850000098 ], [ -122.304247076999985, 49.046878142000082 ], [ -122.304093235999957, 49.046834090000083 ], [ -122.302807162999926, 49.0468691210001 ], [ -122.301367261999985, 49.047083658000062 ], [ -122.30119336599995, 49.047192159000112 ], [ -122.30112943499995, 49.047232018000074 ], [ -122.30080019199994, 49.047437307000074 ], [ -122.300555177, 49.047677909000079 ], [ -122.30051718599999, 49.047715206000134 ], [ -122.300065718999988, 49.04815850500011 ], [ -122.298758401999976, 49.048167508000105 ], [ -122.298367103999965, 49.048215745000093 ], [ -122.297712746999963, 49.047768597000072 ], [ -122.29769365699994, 49.047755566000035 ], [ -122.297318789999963, 49.047499389000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "838261519", "BldgCostT": "560931920", "sL_LossRatio": "0.770756126379648", "sL_AssetLoss": "3175448", "sL_BldgLoss": "2447496", "sL_StrLoss": "1097766", "sL_NStrLoss": "1349730", "sL_ContLoss": "727952", "geom_point": "0101000020E61000007F7B3ACB2A935EC003158F6A5C864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.301636691999931, 49.050723401000056 ], [ -122.299032876999931, 49.049999867000054 ], [ -122.29880640099999, 49.050577994000086 ], [ -122.29925779499996, 49.050735987000039 ], [ -122.299236633999939, 49.051253562000113 ], [ -122.297797601, 49.05071028400009 ], [ -122.29548325899998, 49.049920043000022 ], [ -122.293696268999952, 49.049309801000042 ], [ -122.29294889099998, 49.049029914000123 ], [ -122.293019684999962, 49.048965697000021 ], [ -122.293371293999968, 49.048674008000091 ], [ -122.293606784999966, 49.04837920100001 ], [ -122.293675085999936, 49.048156199000061 ], [ -122.293675062999952, 49.048155889000043 ], [ -122.293663209999949, 49.048043627 ], [ -122.293620500999921, 49.047638595000087 ], [ -122.295700808999953, 49.047561694000095 ], [ -122.296139247, 49.047544811000066 ], [ -122.29713793399999, 49.047506363000068 ], [ -122.297318789999963, 49.047499389000166 ], [ -122.29768655, 49.047923098000076 ], [ -122.297686557999953, 49.047923442000048 ], [ -122.297687950999929, 49.047924705000113 ], [ -122.29773642, 49.047968389000054 ], [ -122.297621395999954, 49.048259403000039 ], [ -122.297325051, 49.049009136000059 ], [ -122.29889590599997, 49.049038148000065 ], [ -122.29877850099993, 49.048648520000064 ], [ -122.30008479299994, 49.048675707000072 ], [ -122.30199453299997, 49.04866864600006 ], [ -122.304409552999971, 49.048659730000033 ], [ -122.304401252999966, 49.049592509000085 ], [ -122.304350353999965, 49.050355244000102 ], [ -122.304341364999942, 49.050485652000106 ], [ -122.304324184, 49.050598647000065 ], [ -122.3043836, 49.050763886000027 ], [ -122.304085868999948, 49.051291834000025 ], [ -122.304087507999924, 49.05139195800006 ], [ -122.30402800199991, 49.051625158000071 ], [ -122.304050087999954, 49.051949576000069 ], [ -122.304135419999966, 49.052206749000028 ], [ -122.304179314999928, 49.052338984000059 ], [ -122.304173935999927, 49.052813425000082 ], [ -122.304172495999978, 49.052942793000085 ], [ -122.30417009199999, 49.053059 ], [ -122.301821699999962, 49.052392108000063 ], [ -122.30187650499991, 49.052304789000054 ], [ -122.302017800999934, 49.052075205000072 ], [ -122.302168802, 49.051828009000126 ], [ -122.302189593999913, 49.050945199000139 ], [ -122.301636691999931, 49.050723401000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343404948", "BldgCostT": "232060270", "sL_LossRatio": "0.843318986598846", "sL_AssetLoss": "1390328", "sL_BldgLoss": "1172490", "sL_StrLoss": "537550", "sL_NStrLoss": "634940", "sL_ContLoss": "217838", "geom_point": "0101000020E61000002B007CA64D935EC0034ED78F24864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297621395999954, 49.048259403000039 ], [ -122.29773642, 49.047968389000054 ], [ -122.297687950999929, 49.047924705000113 ], [ -122.297686557999953, 49.047923442000048 ], [ -122.29768655, 49.047923098000076 ], [ -122.297318789999963, 49.047499389000166 ], [ -122.29769365699994, 49.047755566000035 ], [ -122.297712746999963, 49.047768597000072 ], [ -122.298367103999965, 49.048215745000093 ], [ -122.298758401999976, 49.048167508000105 ], [ -122.300065718999988, 49.04815850500011 ], [ -122.30051718599999, 49.047715206000134 ], [ -122.300555177, 49.047677909000079 ], [ -122.30080019199994, 49.047437307000074 ], [ -122.30112943499995, 49.047232018000074 ], [ -122.30119336599995, 49.047192159000112 ], [ -122.301367261999985, 49.047083658000062 ], [ -122.302807162999926, 49.0468691210001 ], [ -122.304093235999957, 49.046834090000083 ], [ -122.304247076999985, 49.046878142000082 ], [ -122.304424886999968, 49.046878850000098 ], [ -122.304424704999931, 49.046897091000133 ], [ -122.304409608999919, 49.048650650000091 ], [ -122.304409552999971, 49.048659730000033 ], [ -122.30199453299997, 49.04866864600006 ], [ -122.30008479299994, 49.048675707000072 ], [ -122.29877850099993, 49.048648520000064 ], [ -122.29889590599997, 49.049038148000065 ], [ -122.297325051, 49.049009136000059 ], [ -122.297621395999954, 49.048259403000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253910842", "BldgCostT": "171314118", "sL_LossRatio": "0.819176541782982", "sL_AssetLoss": "1118721", "sL_BldgLoss": "916430", "sL_StrLoss": "407600", "sL_NStrLoss": "508830", "sL_ContLoss": "202291", "geom_point": "0101000020E61000001E26A79794935EC001742D942B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304401252999966, 49.049592509000085 ], [ -122.304409552999971, 49.048659730000033 ], [ -122.304409608999919, 49.048650650000091 ], [ -122.304424704999931, 49.046897091000133 ], [ -122.304424886999968, 49.046878850000098 ], [ -122.304581586999916, 49.046886959000048 ], [ -122.304578584999916, 49.04680391900007 ], [ -122.306552054999969, 49.046916909000032 ], [ -122.306869721999945, 49.0470170910001 ], [ -122.30715581199999, 49.04715409300006 ], [ -122.30829828, 49.048067822000085 ], [ -122.308262107999937, 49.048096484000027 ], [ -122.308207786000011, 49.04813953000005 ], [ -122.307729284999965, 49.048600912000083 ], [ -122.306642511999925, 49.049227889000079 ], [ -122.305881390999957, 49.049768809000049 ], [ -122.305858813999947, 49.04977396000006 ], [ -122.30565560699992, 49.049820498000031 ], [ -122.305614330999958, 49.049803859000072 ], [ -122.305264473999927, 49.049662797000096 ], [ -122.304554953999968, 49.049638379000029 ], [ -122.304401252999966, 49.049592509000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64262501", "BldgCostT": "41110001", "sL_LossRatio": "0.770455409341383", "sL_AssetLoss": "428823", "sL_BldgLoss": "330389", "sL_StrLoss": "180209", "sL_NStrLoss": "150180", "sL_ContLoss": "98434", "geom_point": "0101000020E61000004F1EA213BA935EC0D28D24FF9B854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.306552054999969, 49.046916909000032 ], [ -122.304578584999916, 49.04680391900007 ], [ -122.304581586999916, 49.046886959000048 ], [ -122.304424886999968, 49.046878850000098 ], [ -122.304424615999892, 49.046795921000111 ], [ -122.304414932999961, 49.046014021000062 ], [ -122.304414848999969, 49.046004930000066 ], [ -122.302539275999919, 49.046019970000096 ], [ -122.302525590999892, 49.046020092000042 ], [ -122.302440091000022, 49.045633102000117 ], [ -122.302287213999946, 49.045456607000077 ], [ -122.302201394999912, 49.04541660000006 ], [ -122.301874627999894, 49.045259305000094 ], [ -122.301750790999932, 49.045146896000055 ], [ -122.30179490299993, 49.044936492 ], [ -122.303069985999969, 49.044245703000037 ], [ -122.303508185999959, 49.044240086000066 ], [ -122.304121803999962, 49.044352299000103 ], [ -122.304442995999963, 49.044356098000016 ], [ -122.304579581999974, 49.044358093000035 ], [ -122.304590433999948, 49.043211727 ], [ -122.304590490999971, 49.043202705000049 ], [ -122.304445484999931, 49.043202308000097 ], [ -122.304461503999931, 49.042758006000099 ], [ -122.304464089999925, 49.042686059000076 ], [ -122.30448677, 49.042056510000123 ], [ -122.304490675999944, 49.041948016000028 ], [ -122.304490996999974, 49.041938993000016 ], [ -122.3045934099999, 49.041940713000109 ], [ -122.305806673999953, 49.041925691000131 ], [ -122.308153679999975, 49.041896497000046 ], [ -122.309684591999925, 49.041877006000107 ], [ -122.311169583999984, 49.041868492000049 ], [ -122.312298677999962, 49.041861401000077 ], [ -122.313619303999971, 49.041854381000086 ], [ -122.315549109999978, 49.041842301000067 ], [ -122.315504911999938, 49.042751694000067 ], [ -122.315500991999983, 49.042832297000132 ], [ -122.315770643999954, 49.045529862000159 ], [ -122.314347927999989, 49.045300963000045 ], [ -122.31467537899999, 49.045095197000116 ], [ -122.315055392999938, 49.044269197000105 ], [ -122.315060618999922, 49.043918799000025 ], [ -122.314845007999963, 49.043611205000047 ], [ -122.314423317999953, 49.04343890500008 ], [ -122.314153189, 49.043212412000095 ], [ -122.313457991999897, 49.043010208000034 ], [ -122.313157686999958, 49.043007394000043 ], [ -122.311976982, 49.043262293000062 ], [ -122.310562207999965, 49.043666809000108 ], [ -122.308057319999961, 49.043706598 ], [ -122.307134677999926, 49.044123892000052 ], [ -122.307038391999953, 49.04433991900008 ], [ -122.306836499999918, 49.04433870700003 ], [ -122.306829982999915, 49.044807484000096 ], [ -122.306822981999957, 49.044823193000092 ], [ -122.306532806999982, 49.045063882000058 ], [ -122.30652697, 49.045146455000129 ], [ -122.306414747999938, 49.045145780000048 ], [ -122.30640724099996, 49.045685473000049 ], [ -122.306714246999931, 49.045687318000027 ], [ -122.306814996999947, 49.045885710000078 ], [ -122.306810242999987, 49.046227633000122 ], [ -122.306989184999949, 49.046228707000076 ], [ -122.307194703999954, 49.046633396000068 ], [ -122.307574994999968, 49.046824191000056 ], [ -122.307804105999963, 49.04684508900008 ], [ -122.307465570999923, 49.047092313000093 ], [ -122.308736364999987, 49.047852529000117 ], [ -122.308518799999931, 49.047926728000071 ], [ -122.30829828, 49.048067822000085 ], [ -122.30715581199999, 49.04715409300006 ], [ -122.306869721999945, 49.0470170910001 ], [ -122.306552054999969, 49.046916909000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126633666", "BldgCostT": "81261666", "sL_LossRatio": "0.766506103501974", "sL_AssetLoss": "840583", "sL_BldgLoss": "644312", "sL_StrLoss": "329222", "sL_NStrLoss": "315090", "sL_ContLoss": "196271", "geom_point": "0101000020E61000000BADFB85A6935EC05F0FA28C23854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304484992999903, 49.041299601000041 ], [ -122.304484894999973, 49.04129060300005 ], [ -122.303516182999942, 49.04129030100006 ], [ -122.303509608999946, 49.041290284000119 ], [ -122.303497799999917, 49.040110709000039 ], [ -122.303473783999948, 49.03834381000005 ], [ -122.304473916999925, 49.038271861000077 ], [ -122.30457665899992, 49.038269993000029 ], [ -122.307377161999966, 49.038229366000081 ], [ -122.3085244899999, 49.038216587000072 ], [ -122.309544391999935, 49.038205694000126 ], [ -122.30954310099996, 49.038385552000094 ], [ -122.309531191999966, 49.040065993000105 ], [ -122.309627103999944, 49.040133293000068 ], [ -122.309716643999977, 49.040132537000083 ], [ -122.309853424999972, 49.040131386000127 ], [ -122.311187501999939, 49.040120198000132 ], [ -122.311169583999984, 49.041868492000049 ], [ -122.309684591999925, 49.041877006000107 ], [ -122.308153679999975, 49.041896497000046 ], [ -122.305806673999953, 49.041925691000131 ], [ -122.3045934099999, 49.041940713000109 ], [ -122.304490996999974, 49.041938993000016 ], [ -122.304484992999903, 49.041299601000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94706456", "BldgCostT": "56712039", "sL_LossRatio": "0.694307607411122", "sL_AssetLoss": "793726", "sL_BldgLoss": "551090", "sL_StrLoss": "255170", "sL_NStrLoss": "295920", "sL_ContLoss": "242636", "geom_point": "0101000020E6100000B79C74F006945EC0A32280611A854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309627103999944, 49.040133293000068 ], [ -122.309531191999966, 49.040065993000105 ], [ -122.30954310099996, 49.038385552000094 ], [ -122.309544391999935, 49.038205694000126 ], [ -122.309817922999954, 49.038202645000062 ], [ -122.310563860999977, 49.038194357000101 ], [ -122.310837394999965, 49.038191305000069 ], [ -122.311110925999955, 49.038188253000044 ], [ -122.312485696999957, 49.038172956000011 ], [ -122.314415710999924, 49.038151448000107 ], [ -122.315114463999976, 49.038143648000087 ], [ -122.315647704999904, 49.038137691000074 ], [ -122.315689903999953, 49.038244590000041 ], [ -122.315660483999935, 49.039514679000106 ], [ -122.315650907999938, 49.039928392000014 ], [ -122.315623591999923, 49.0411073900001 ], [ -122.31560750499996, 49.041674792000059 ], [ -122.315549109999978, 49.041842301000067 ], [ -122.313619303999971, 49.041854381000086 ], [ -122.312298677999962, 49.041861401000077 ], [ -122.311169583999984, 49.041868492000049 ], [ -122.311187501999939, 49.040120198000132 ], [ -122.309853424999972, 49.040131386000127 ], [ -122.309716643999977, 49.040132537000083 ], [ -122.309627103999944, 49.040133293000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127102312", "BldgCostT": "82673191", "sL_LossRatio": "0.810531855497774", "sL_AssetLoss": "592849", "sL_BldgLoss": "480523", "sL_StrLoss": "279714", "sL_NStrLoss": "200809", "sL_ContLoss": "112326", "geom_point": "0101000020E61000008F5D68CF61945EC0EFB32D7724854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315660483999935, 49.039514679000106 ], [ -122.315689903999953, 49.038244590000041 ], [ -122.315647704999904, 49.038137691000074 ], [ -122.316248836999989, 49.038131781000061 ], [ -122.318137801999924, 49.038113202000019 ], [ -122.318498403999953, 49.038153487000088 ], [ -122.318475690999932, 49.038944306000104 ], [ -122.318553016999942, 49.038918094000024 ], [ -122.319523882999931, 49.038921604000087 ], [ -122.320604202999988, 49.038925300000066 ], [ -122.321684488999949, 49.038929895000116 ], [ -122.321651113, 49.040392797000074 ], [ -122.321636283999979, 49.041100004000093 ], [ -122.321611077999975, 49.041853692000096 ], [ -122.318387502999954, 49.0418449860001 ], [ -122.315549109999978, 49.041842301000067 ], [ -122.31560750499996, 49.041674792000059 ], [ -122.315623591999923, 49.0411073900001 ], [ -122.315650907999938, 49.039928392000014 ], [ -122.315660483999935, 49.039514679000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99707917", "BldgCostT": "61461667", "sL_LossRatio": "0.778835620531002", "sL_AssetLoss": "401656", "sL_BldgLoss": "312824", "sL_StrLoss": "169403", "sL_NStrLoss": "143421", "sL_ContLoss": "88832", "geom_point": "0101000020E6100000A1F496BC8B945EC0729F98CCE3844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.321651113, 49.040392797000074 ], [ -122.321684488999949, 49.038929895000116 ], [ -122.320604202999988, 49.038925300000066 ], [ -122.319523882999931, 49.038921604000087 ], [ -122.318553016999942, 49.038918094000024 ], [ -122.318475690999932, 49.038944306000104 ], [ -122.318498403999953, 49.038153487000088 ], [ -122.31849110099995, 49.037328388000027 ], [ -122.317624694999949, 49.037301306000131 ], [ -122.317480290999981, 49.037258494000099 ], [ -122.317370394999969, 49.037196088000023 ], [ -122.317137586999962, 49.036887894000046 ], [ -122.317402600999941, 49.036770800000056 ], [ -122.31799508499995, 49.036594590000036 ], [ -122.319113185999981, 49.03646530400006 ], [ -122.323733097999963, 49.036715591000053 ], [ -122.323716002999959, 49.037452498000107 ], [ -122.323698200999928, 49.038215503000046 ], [ -122.323046166999973, 49.038207970000087 ], [ -122.322788106999923, 49.038204994000104 ], [ -122.322670576999911, 49.041826889000021 ], [ -122.321611077999975, 49.041853692000096 ], [ -122.321636283999979, 49.041100004000093 ], [ -122.321651113, 49.040392797000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120573333", "BldgCostT": "79473333", "sL_LossRatio": "0.822205241968614", "sL_AssetLoss": "608550", "sL_BldgLoss": "500353", "sL_StrLoss": "293143", "sL_NStrLoss": "207210", "sL_ContLoss": "108197", "geom_point": "0101000020E610000074FBE6DD9C945EC03E10FEEA96854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.32375911499993, 49.041814598 ], [ -122.32458561299994, 49.04182849700009 ], [ -122.324917494999951, 49.041869598000076 ], [ -122.325105400999959, 49.041950892000088 ], [ -122.325284600999936, 49.042020101000077 ], [ -122.325491302, 49.042139913000064 ], [ -122.325687710999944, 49.042337703000065 ], [ -122.325815509, 49.042538615000097 ], [ -122.325880595999962, 49.042754532000075 ], [ -122.325862904999966, 49.043621147000039 ], [ -122.32582296399994, 49.045481394000035 ], [ -122.325109700999974, 49.045466647000111 ], [ -122.325092245999954, 49.045466293000089 ], [ -122.323732532999898, 49.045458975000052 ], [ -122.323717897999984, 49.045458903000011 ], [ -122.32303394399996, 49.045457996000074 ], [ -122.322290972999966, 49.045459593000039 ], [ -122.321279619, 49.045460582000096 ], [ -122.320402199999975, 49.045461456000083 ], [ -122.318816495999926, 49.045462973000092 ], [ -122.318345345999944, 49.045463424000076 ], [ -122.318327355999898, 49.045463453000124 ], [ -122.318362730999951, 49.043218770000081 ], [ -122.318366000999944, 49.04301190300005 ], [ -122.318374093000017, 49.042499063000022 ], [ -122.318387502999954, 49.0418449860001 ], [ -122.321611077999975, 49.041853692000096 ], [ -122.322670576999911, 49.041826889000021 ], [ -122.32375911499993, 49.041814598 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161394768", "BldgCostT": "108005230", "sL_LossRatio": "0.776760799917321", "sL_AssetLoss": "1238528", "sL_BldgLoss": "962040", "sL_StrLoss": "494910", "sL_NStrLoss": "467130", "sL_ContLoss": "276488", "geom_point": "0101000020E610000031EAF750E4945EC0DCDA673A60854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.32582296399994, 49.045481394000035 ], [ -122.325862904999966, 49.043621147000039 ], [ -122.325880595999962, 49.042754532000075 ], [ -122.325815509, 49.042538615000097 ], [ -122.325687710999944, 49.042337703000065 ], [ -122.325491302, 49.042139913000064 ], [ -122.325284600999936, 49.042020101000077 ], [ -122.325105400999959, 49.041950892000088 ], [ -122.324917494999951, 49.041869598000076 ], [ -122.32458561299994, 49.04182849700009 ], [ -122.32375911499993, 49.041814598 ], [ -122.322670576999911, 49.041826889000021 ], [ -122.322788106999923, 49.038204994000104 ], [ -122.323046166999973, 49.038207970000087 ], [ -122.323698200999928, 49.038215503000046 ], [ -122.326011581999964, 49.038228894000049 ], [ -122.325979822999955, 49.038944508000107 ], [ -122.327032276999901, 49.038952607000098 ], [ -122.327069291, 49.038952914000028 ], [ -122.32703491699999, 49.039997487000072 ], [ -122.326860686999936, 49.040125893000067 ], [ -122.326135183999952, 49.040651903000047 ], [ -122.325984211000033, 49.040867591000051 ], [ -122.325996592999942, 49.0414043930001 ], [ -122.326096091999972, 49.041547503000039 ], [ -122.326301099999924, 49.041724 ], [ -122.326570113999978, 49.041816202000078 ], [ -122.326933104999966, 49.041862891000044 ], [ -122.328069575999947, 49.04188280300005 ], [ -122.329155682999939, 49.041901999000054 ], [ -122.33021727, 49.041918409000047 ], [ -122.330090127999952, 49.045583207000057 ], [ -122.329904655999911, 49.045576854000025 ], [ -122.329889556999973, 49.045576362000098 ], [ -122.32903893799994, 49.045555370000095 ], [ -122.328174236999956, 49.045531100000062 ], [ -122.328155724999988, 49.045530583000065 ], [ -122.32582296399994, 49.045481394000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75436250", "BldgCostT": "46670000", "sL_LossRatio": "0.702316486161252", "sL_AssetLoss": "598320", "sL_BldgLoss": "420210", "sL_StrLoss": "195080", "sL_NStrLoss": "225130", "sL_ContLoss": "178110", "geom_point": "0101000020E6100000C1D12380FA945EC09ED84B6C21854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.32703491699999, 49.039997487000072 ], [ -122.327069291, 49.038952914000028 ], [ -122.327032276999901, 49.038952607000098 ], [ -122.325979822999955, 49.038944508000107 ], [ -122.326011581999964, 49.038228894000049 ], [ -122.329268395999947, 49.038246605000047 ], [ -122.329238587999924, 49.038973096000042 ], [ -122.329155682999939, 49.041901999000054 ], [ -122.328069575999947, 49.04188280300005 ], [ -122.326933104999966, 49.041862891000044 ], [ -122.326570113999978, 49.041816202000078 ], [ -122.326301099999924, 49.041724 ], [ -122.326096091999972, 49.041547503000039 ], [ -122.325996592999942, 49.0414043930001 ], [ -122.325984211000033, 49.040867591000051 ], [ -122.326135183999952, 49.040651903000047 ], [ -122.326860686999936, 49.040125893000067 ], [ -122.32703491699999, 49.039997487000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77362333", "BldgCostT": "48943333", "sL_LossRatio": "0.720705778283259", "sL_AssetLoss": "633060", "sL_BldgLoss": "456250", "sL_StrLoss": "214010", "sL_NStrLoss": "242240", "sL_ContLoss": "176810", "geom_point": "0101000020E610000039517DAD2C955EC06C54AF7421854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33110061, 49.038256006000033 ], [ -122.332584719999943, 49.038256309000133 ], [ -122.332390307999944, 49.041961183000048 ], [ -122.331266444, 49.04193626400005 ], [ -122.33021727, 49.041918409000047 ], [ -122.329155682999939, 49.041901999000054 ], [ -122.329238587999924, 49.038973096000042 ], [ -122.329268395999947, 49.038246605000047 ], [ -122.33110061, 49.038256006000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190331916", "BldgCostT": "113961666", "sL_LossRatio": "0.750188102181172", "sL_AssetLoss": "737631", "sL_BldgLoss": "553362", "sL_StrLoss": "284440", "sL_NStrLoss": "268922", "sL_ContLoss": "184269", "geom_point": "0101000020E61000005EA3275DE1945EC04CBDC880C3844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315647704999904, 49.038137691000074 ], [ -122.315593804999949, 49.036176679000029 ], [ -122.315588392, 49.035980109000064 ], [ -122.315459482999984, 49.035881 ], [ -122.31539944799998, 49.035714127000048 ], [ -122.315481231999982, 49.035718672000023 ], [ -122.315538530999987, 49.035721874000068 ], [ -122.329257559999974, 49.03648669299999 ], [ -122.330364827999944, 49.03654834600011 ], [ -122.331286976999962, 49.036599679000048 ], [ -122.332225296999965, 49.036651909000049 ], [ -122.332934794999971, 49.036727480000074 ], [ -122.334111594999968, 49.036929114000124 ], [ -122.334955096999948, 49.037127022000078 ], [ -122.335132299999955, 49.037168605 ], [ -122.336034508999958, 49.037437407000077 ], [ -122.336801006999934, 49.037744006000054 ], [ -122.3373314, 49.037991989000069 ], [ -122.337327555999977, 49.038092818000038 ], [ -122.337323321999961, 49.038165780000135 ], [ -122.337313068999933, 49.038342951000061 ], [ -122.336893504000017, 49.038307894000113 ], [ -122.334564202999928, 49.038271330000043 ], [ -122.334550493999942, 49.038271147000053 ], [ -122.332584719999943, 49.038256309000133 ], [ -122.33110061, 49.038256006000033 ], [ -122.329268395999947, 49.038246605000047 ], [ -122.326011581999964, 49.038228894000049 ], [ -122.323698200999928, 49.038215503000046 ], [ -122.323716002999959, 49.037452498000107 ], [ -122.323733097999963, 49.036715591000053 ], [ -122.319113185999981, 49.03646530400006 ], [ -122.31799508499995, 49.036594590000036 ], [ -122.317402600999941, 49.036770800000056 ], [ -122.317137586999962, 49.036887894000046 ], [ -122.317370394999969, 49.037196088000023 ], [ -122.317480290999981, 49.037258494000099 ], [ -122.317624694999949, 49.037301306000131 ], [ -122.31849110099995, 49.037328388000027 ], [ -122.318498403999953, 49.038153487000088 ], [ -122.318137801999924, 49.038113202000019 ], [ -122.316248836999989, 49.038131781000061 ], [ -122.315647704999904, 49.038137691000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106831927", "BldgCostT": "68117069", "sL_LossRatio": "0.733886314767366", "sL_AssetLoss": "898041", "sL_BldgLoss": "659060", "sL_StrLoss": "315450", "sL_NStrLoss": "343610", "sL_ContLoss": "238981", "geom_point": "0101000020E61000008BDA89D46C955EC03BCCD93332854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332390307999944, 49.041961183000048 ], [ -122.332584719999943, 49.038256309000133 ], [ -122.334550493999942, 49.038271147000053 ], [ -122.334564202999928, 49.038271330000043 ], [ -122.336893504000017, 49.038307894000113 ], [ -122.337313068999933, 49.038342951000061 ], [ -122.33726278200001, 49.039212977000055 ], [ -122.33720693699992, 49.039279590000056 ], [ -122.33720383499994, 49.0393449580001 ], [ -122.337296286999987, 49.039349319000124 ], [ -122.337293539999976, 49.039396123000074 ], [ -122.337289614000014, 49.039497183000059 ], [ -122.337276225999958, 49.0398426940001 ], [ -122.337185913999974, 49.03984321800003 ], [ -122.337154206, 49.040438031000065 ], [ -122.337096897999913, 49.041585501000029 ], [ -122.337200609999954, 49.041588106000134 ], [ -122.33718143899992, 49.042059925000011 ], [ -122.337168311999974, 49.042383086 ], [ -122.33705888499999, 49.042381998000032 ], [ -122.336040403999974, 49.04237430700001 ], [ -122.335989204, 49.043077492000087 ], [ -122.3323795969999, 49.043001993000097 ], [ -122.332387082999929, 49.042298204000062 ], [ -122.332390307999944, 49.041961183000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191246228", "BldgCostT": "124959857", "sL_LossRatio": "0.7621366232128", "sL_AssetLoss": "1052764", "sL_BldgLoss": "802350", "sL_StrLoss": "389190", "sL_NStrLoss": "413160", "sL_ContLoss": "250414", "geom_point": "0101000020E61000001DDE288957955EC0FF1E1FA1A4854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330090127999952, 49.045583207000057 ], [ -122.33021727, 49.041918409000047 ], [ -122.331266444, 49.04193626400005 ], [ -122.332390307999944, 49.041961183000048 ], [ -122.332387082999929, 49.042298204000062 ], [ -122.3323795969999, 49.043001993000097 ], [ -122.335989204, 49.043077492000087 ], [ -122.336040403999974, 49.04237430700001 ], [ -122.33705888499999, 49.042381998000032 ], [ -122.337168311999974, 49.042383086 ], [ -122.337088008999942, 49.04422210000007 ], [ -122.336964998999946, 49.04422061000006 ], [ -122.336935732999962, 49.044854265000041 ], [ -122.337062639999957, 49.044858566000059 ], [ -122.337043280999978, 49.04574859700007 ], [ -122.336892938999938, 49.045747085000073 ], [ -122.334938344999969, 49.045708030000114 ], [ -122.334919189999937, 49.045707649000079 ], [ -122.334360520999937, 49.045693293000078 ], [ -122.333960746999963, 49.045683032000042 ], [ -122.333369359999921, 49.04566773600007 ], [ -122.332438464999939, 49.04564363100009 ], [ -122.332418820999962, 49.045643128000044 ], [ -122.331137413999897, 49.045609095000081 ], [ -122.330090127999952, 49.045583207000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80394250", "BldgCostT": "53320000", "sL_LossRatio": "0.733024587175783", "sL_AssetLoss": "740630", "sL_BldgLoss": "542900", "sL_StrLoss": "260340", "sL_NStrLoss": "282560", "sL_ContLoss": "197730", "geom_point": "0101000020E61000000B57F613C4955EC0BBA8CC83AA854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.337043280999978, 49.04574859700007 ], [ -122.337062639999957, 49.044858566000059 ], [ -122.336935732999962, 49.044854265000041 ], [ -122.336964998999946, 49.04422061000006 ], [ -122.337088008999942, 49.04422210000007 ], [ -122.338219278999986, 49.044240853000083 ], [ -122.338276490999959, 49.043390909000067 ], [ -122.33833050399997, 49.042511107000031 ], [ -122.342675817999947, 49.042573599000036 ], [ -122.34262330899999, 49.04346878899999 ], [ -122.34257488399993, 49.044311798000059 ], [ -122.342530905999965, 49.045046903000078 ], [ -122.34248690599999, 49.045852210000092 ], [ -122.340530887999989, 49.045813489000068 ], [ -122.34002270500001, 49.045804308000129 ], [ -122.339353121999949, 49.045794061000073 ], [ -122.338136893999902, 49.045776894000049 ], [ -122.338122513999934, 49.045776534000069 ], [ -122.337043280999978, 49.04574859700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "388192114", "BldgCostT": "265076936", "sL_LossRatio": "0.831971032388235", "sL_AssetLoss": "1462599", "sL_BldgLoss": "1216840", "sL_StrLoss": "557420", "sL_NStrLoss": "659420", "sL_ContLoss": "245759", "geom_point": "0101000020E61000003533B76BD7955EC024AB3B7905864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.34002270500001, 49.045804308000129 ], [ -122.340530887999989, 49.045813489000068 ], [ -122.34248690599999, 49.045852210000092 ], [ -122.342648078999929, 49.047632699000047 ], [ -122.342665315, 49.047763083000056 ], [ -122.340241201999959, 49.048665904000075 ], [ -122.340231298999953, 49.048530295000056 ], [ -122.340121714999938, 49.047626898000054 ], [ -122.340168605999907, 49.047342695000076 ], [ -122.34002270500001, 49.045804308000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "279657201", "BldgCostT": "171385760", "sL_LossRatio": "0.694753059956895", "sL_AssetLoss": "1527881", "sL_BldgLoss": "1061500", "sL_StrLoss": "424900", "sL_NStrLoss": "636600", "sL_ContLoss": "466381", "geom_point": "0101000020E6100000F8DCB563AE955EC008E8740F3F864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.337704891999948, 49.050743395000111 ], [ -122.337677909999954, 49.050521103000044 ], [ -122.337538684999984, 49.050516399000117 ], [ -122.337414990999946, 49.049723400000069 ], [ -122.337388483999945, 49.04958990100009 ], [ -122.337262342999935, 49.048636373000072 ], [ -122.33719169199999, 49.048090389000045 ], [ -122.337181506999983, 49.048011604000045 ], [ -122.337086182999911, 49.047287168000068 ], [ -122.33707675699999, 49.047215478000084 ], [ -122.337068783999968, 49.047154933000108 ], [ -122.337067591999926, 49.047145901000142 ], [ -122.336984091999966, 49.046502039000067 ], [ -122.336892938999938, 49.045747085000073 ], [ -122.337043280999978, 49.04574859700007 ], [ -122.338122513999934, 49.045776534000069 ], [ -122.338136893999902, 49.045776894000049 ], [ -122.339353121999949, 49.045794061000073 ], [ -122.34002270500001, 49.045804308000129 ], [ -122.340168605999907, 49.047342695000076 ], [ -122.340121714999938, 49.047626898000054 ], [ -122.340231298999953, 49.048530295000056 ], [ -122.340241201999959, 49.048665904000075 ], [ -122.340298785999977, 49.049325903000053 ], [ -122.340268893999948, 49.049498005000089 ], [ -122.340220598999949, 49.049764998000079 ], [ -122.340502794999978, 49.051920100000054 ], [ -122.340518686999971, 49.052014401000115 ], [ -122.340074871999917, 49.052006266000049 ], [ -122.340060998999945, 49.052005994000055 ], [ -122.33991274, 49.052003361000104 ], [ -122.339639160999951, 49.051998518000083 ], [ -122.337851609999987, 49.051966787000069 ], [ -122.337717359999914, 49.051969388000039 ], [ -122.33770502, 49.051882419000052 ], [ -122.337619854999915, 49.05114291700005 ], [ -122.337618803999973, 49.051133893000042 ], [ -122.337752705999947, 49.051136709000069 ], [ -122.337751582999928, 49.051127652000055 ], [ -122.337704891999948, 49.050743395000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277939250", "BldgCostT": "191375000", "sL_LossRatio": "0.867359995905284", "sL_AssetLoss": "1250392", "sL_BldgLoss": "1084540", "sL_StrLoss": "529290", "sL_NStrLoss": "555250", "sL_ContLoss": "165852", "geom_point": "0101000020E6100000BF097C4DE8955EC0A64187AF65864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.340502794999978, 49.051920100000054 ], [ -122.340220598999949, 49.049764998000079 ], [ -122.340268893999948, 49.049498005000089 ], [ -122.340298785999977, 49.049325903000053 ], [ -122.340241201999959, 49.048665904000075 ], [ -122.342665315, 49.047763083000056 ], [ -122.34385319099998, 49.047322213000051 ], [ -122.34391829899999, 49.047398402000042 ], [ -122.344014035999976, 49.049367570000101 ], [ -122.344018294999969, 49.049455391000066 ], [ -122.344081490999912, 49.050079499000105 ], [ -122.344145688999944, 49.050691105000048 ], [ -122.344192702999948, 49.051313909000015 ], [ -122.34420729299994, 49.051999478000077 ], [ -122.344085822999972, 49.05199534800002 ], [ -122.343982954999959, 49.052033313000102 ], [ -122.343534271999943, 49.052034646000045 ], [ -122.343520391999903, 49.052034696000071 ], [ -122.342610106999985, 49.052037507000129 ], [ -122.342466572999953, 49.052037957000081 ], [ -122.342452900999945, 49.052037993000049 ], [ -122.34254860599998, 49.051952004000078 ], [ -122.341538693999937, 49.051936500000124 ], [ -122.341538481999933, 49.051946041000051 ], [ -122.341536692999952, 49.052032017000073 ], [ -122.340518686999971, 49.052014401000115 ], [ -122.340502794999978, 49.051920100000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112676552", "BldgCostT": "76418745", "sL_LossRatio": "0.789233781178545", "sL_AssetLoss": "669130", "sL_BldgLoss": "528100", "sL_StrLoss": "245800", "sL_NStrLoss": "282300", "sL_ContLoss": "141030", "geom_point": "0101000020E6100000C1E5CA03C5955EC099DEDD4ECB864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.341538693999937, 49.051936500000124 ], [ -122.34254860599998, 49.051952004000078 ], [ -122.342452900999945, 49.052037993000049 ], [ -122.342403708999967, 49.052141806000122 ], [ -122.342490114999976, 49.053447404000089 ], [ -122.342536384, 49.054199901000082 ], [ -122.341355703999938, 49.054180398 ], [ -122.33796287199999, 49.054154895000039 ], [ -122.33784809199993, 49.054153600000099 ], [ -122.337849626999969, 49.053880596000091 ], [ -122.337849710999961, 49.053871504000014 ], [ -122.337845595999966, 49.053210593000053 ], [ -122.33781126599996, 49.052848838000074 ], [ -122.337810425999947, 49.052839800000072 ], [ -122.337717359999914, 49.051969388000039 ], [ -122.337851609999987, 49.051966787000069 ], [ -122.339639160999951, 49.051998518000083 ], [ -122.33991274, 49.052003361000104 ], [ -122.340060998999945, 49.052005994000055 ], [ -122.340074871999917, 49.052006266000049 ], [ -122.340518686999971, 49.052014401000115 ], [ -122.341536692999952, 49.052032017000073 ], [ -122.341538481999933, 49.051946041000051 ], [ -122.341538693999937, 49.051936500000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58116166", "BldgCostT": "39451666", "sL_LossRatio": "0.762060926942985", "sL_AssetLoss": "506180", "sL_BldgLoss": "385740", "sL_StrLoss": "186150", "sL_NStrLoss": "199590", "sL_ContLoss": "120440", "geom_point": "0101000020E6100000C2AA9B0707965EC08FE733A0DE864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.342627589999921, 49.055844617000069 ], [ -122.342536384, 49.054199901000082 ], [ -122.342490114999976, 49.053447404000089 ], [ -122.342403708999967, 49.052141806000122 ], [ -122.342452900999945, 49.052037993000049 ], [ -122.342466572999953, 49.052037957000081 ], [ -122.342610106999985, 49.052037507000129 ], [ -122.343520391999903, 49.052034696000071 ], [ -122.343534271999943, 49.052034646000045 ], [ -122.343982954999959, 49.052033313000102 ], [ -122.344085822999972, 49.05199534800002 ], [ -122.34420729299994, 49.051999478000077 ], [ -122.344643909999917, 49.052015207000103 ], [ -122.344855302999974, 49.052023404000053 ], [ -122.34489484, 49.052030840000093 ], [ -122.345205869999916, 49.052089395000088 ], [ -122.345441398999967, 49.052191108000123 ], [ -122.345617403999981, 49.052337791000078 ], [ -122.34590978199995, 49.05258659800004 ], [ -122.346207503999949, 49.052716591000042 ], [ -122.346198410999961, 49.053478108000064 ], [ -122.346154191999986, 49.053658705000025 ], [ -122.346160218999941, 49.054803800000109 ], [ -122.346000200999939, 49.054872198000098 ], [ -122.345145807999984, 49.054949491000073 ], [ -122.344845584999959, 49.054938407000101 ], [ -122.343709672999964, 49.05499259500008 ], [ -122.343758101999924, 49.055736202000055 ], [ -122.342627589999921, 49.055844617000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83611394", "BldgCostT": "53776523", "sL_LossRatio": "0.739243276609475", "sL_AssetLoss": "712810", "sL_BldgLoss": "526940", "sL_StrLoss": "276340", "sL_NStrLoss": "250600", "sL_ContLoss": "185870", "geom_point": "0101000020E61000009C6A0303CA955EC0F2D4765518874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33786199099994, 49.056535789000094 ], [ -122.337854000999954, 49.054863385000061 ], [ -122.337853946999985, 49.054854342000077 ], [ -122.337853890999966, 49.054845297000028 ], [ -122.33784809199993, 49.054153600000099 ], [ -122.33796287199999, 49.054154895000039 ], [ -122.341355703999938, 49.054180398 ], [ -122.342536384, 49.054199901000082 ], [ -122.342627589999921, 49.055844617000069 ], [ -122.343758101999924, 49.055736202000055 ], [ -122.343844009999955, 49.056595499000117 ], [ -122.34079598999989, 49.056550202000032 ], [ -122.339259376999948, 49.056549195000066 ], [ -122.33797130399995, 49.05653779600005 ], [ -122.33786199099994, 49.056535789000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163725083", "BldgCostT": "106778333", "sL_LossRatio": "0.800469109210281", "sL_AssetLoss": "965660", "sL_BldgLoss": "772981", "sL_StrLoss": "381405", "sL_NStrLoss": "391576", "sL_ContLoss": "192679", "geom_point": "0101000020E610000041B0EC7AD0955EC0805B1C3A62874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.34079598999989, 49.056550202000032 ], [ -122.343844009999955, 49.056595499000117 ], [ -122.343873217999914, 49.057391601000127 ], [ -122.343894261999978, 49.057644517000043 ], [ -122.343908420999981, 49.057814706000102 ], [ -122.343904226999967, 49.05782372600008 ], [ -122.343600282999915, 49.058479385000055 ], [ -122.343521800999895, 49.05866058600003 ], [ -122.343526899999958, 49.058891609000092 ], [ -122.342467592999952, 49.05887621400008 ], [ -122.341405502999976, 49.05886080100008 ], [ -122.340324623999948, 49.058842005000081 ], [ -122.339269172999977, 49.058828500000111 ], [ -122.338127533999938, 49.058696177000044 ], [ -122.337990413999989, 49.058680291000037 ], [ -122.337872487999917, 49.058665499000078 ], [ -122.337870586999912, 49.058277983000046 ], [ -122.337869291999951, 49.058013211000109 ], [ -122.337867815999971, 49.057713144000054 ], [ -122.33786199099994, 49.056535789000094 ], [ -122.33797130399995, 49.05653779600005 ], [ -122.339259376999948, 49.056549195000066 ], [ -122.34079598999989, 49.056550202000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "443145925", "BldgCostT": "287132451", "sL_LossRatio": "0.772804324760143", "sL_AssetLoss": "2311897", "sL_BldgLoss": "1786644", "sL_StrLoss": "817627", "sL_NStrLoss": "969017", "sL_ContLoss": "525253", "geom_point": "0101000020E6100000A90B0DFE5D955EC0C9F2962767874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.335662142999979, 49.054886922000037 ], [ -122.337853890999966, 49.054845297000028 ], [ -122.337853946999985, 49.054854342000077 ], [ -122.337854000999954, 49.054863385000061 ], [ -122.33786199099994, 49.056535789000094 ], [ -122.337867815999971, 49.057713144000054 ], [ -122.337869291999951, 49.058013211000109 ], [ -122.337870586999912, 49.058277983000046 ], [ -122.337872487999917, 49.058665499000078 ], [ -122.337863495999969, 49.060050794000091 ], [ -122.33106695, 49.060040487 ], [ -122.327059278999982, 49.060034194000082 ], [ -122.32706261, 49.060165002000097 ], [ -122.32689327099996, 49.060161021000084 ], [ -122.326892599999979, 49.060030289000075 ], [ -122.326843563999915, 49.058881932000091 ], [ -122.326836251999936, 49.05874915200009 ], [ -122.327009931999982, 49.0587506070001 ], [ -122.331179579999983, 49.058767891000095 ], [ -122.33115341099996, 49.056754803000075 ], [ -122.33125330199999, 49.056615809000078 ], [ -122.331409813000022, 49.05657429500009 ], [ -122.332298092999949, 49.056501908000023 ], [ -122.33228210299994, 49.055714283000107 ], [ -122.332253212999916, 49.054951592000037 ], [ -122.33548145599994, 49.054890368000052 ], [ -122.335662142999979, 49.054886922000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162487084", "BldgCostT": "111048334", "sL_LossRatio": "0.884350930194447", "sL_AssetLoss": "701735", "sL_BldgLoss": "620580", "sL_StrLoss": "288520", "sL_NStrLoss": "332060", "sL_ContLoss": "81155", "geom_point": "0101000020E6100000B2CC010672955EC02132CDF0F6864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332263892999947, 49.053980996000107 ], [ -122.335621395999908, 49.053915408000051 ], [ -122.337849710999961, 49.053871504000014 ], [ -122.337849626999969, 49.053880596000091 ], [ -122.33784809199993, 49.054153600000099 ], [ -122.337853890999966, 49.054845297000028 ], [ -122.335662142999979, 49.054886922000037 ], [ -122.33548145599994, 49.054890368000052 ], [ -122.332253212999916, 49.054951592000037 ], [ -122.332336924999979, 49.054843598000033 ], [ -122.332359511999954, 49.05469560100007 ], [ -122.332263892999947, 49.053980996000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "623836258", "BldgCostT": "426518459", "sL_LossRatio": "0.840158048858759", "sL_AssetLoss": "2492900", "sL_BldgLoss": "2094430", "sL_StrLoss": "907060", "sL_NStrLoss": "1187370", "sL_ContLoss": "398470", "geom_point": "0101000020E610000057359C8D70955EC0134A044FC6864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332206490999951, 49.052885595000141 ], [ -122.332651729999967, 49.051800063000023 ], [ -122.334946997999964, 49.051895571000081 ], [ -122.337717359999914, 49.051969388000039 ], [ -122.337810425999947, 49.052839800000072 ], [ -122.33781126599996, 49.052848838000074 ], [ -122.337845595999966, 49.053210593000053 ], [ -122.337849710999961, 49.053871504000014 ], [ -122.335621395999908, 49.053915408000051 ], [ -122.332263892999947, 49.053980996000107 ], [ -122.332199221999957, 49.053812112000074 ], [ -122.332206490999951, 49.052885595000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "540559032", "BldgCostT": "352166235", "sL_LossRatio": "0.767774455540639", "sL_AssetLoss": "2852830", "sL_BldgLoss": "2190330", "sL_StrLoss": "978660", "sL_NStrLoss": "1211670", "sL_ContLoss": "662500", "geom_point": "0101000020E6100000AFBDF49B6E955EC001B5DE9042864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332283264999944, 49.051129808000013 ], [ -122.332433997999914, 49.048394910000063 ], [ -122.332457311, 49.047960195000051 ], [ -122.332462892999956, 49.04788920400005 ], [ -122.332464017999925, 49.04787975600005 ], [ -122.332525105999977, 49.047358603000085 ], [ -122.332508107999928, 49.047018111000042 ], [ -122.332472935999988, 49.04633536200005 ], [ -122.332438464999939, 49.04564363100009 ], [ -122.333369359999921, 49.04566773600007 ], [ -122.333960746999963, 49.045683032000042 ], [ -122.334360520999937, 49.045693293000078 ], [ -122.334919189999937, 49.045707649000079 ], [ -122.334938344999969, 49.045708030000114 ], [ -122.336892938999938, 49.045747085000073 ], [ -122.336984091999966, 49.046502039000067 ], [ -122.337067591999926, 49.047145901000142 ], [ -122.337068783999968, 49.047154933000108 ], [ -122.33707675699999, 49.047215478000084 ], [ -122.337086182999911, 49.047287168000068 ], [ -122.337181506999983, 49.048011604000045 ], [ -122.33719169199999, 49.048090389000045 ], [ -122.337262342999935, 49.048636373000072 ], [ -122.337388483999945, 49.04958990100009 ], [ -122.337414990999946, 49.049723400000069 ], [ -122.337538684999984, 49.050516399000117 ], [ -122.337677909999954, 49.050521103000044 ], [ -122.337704891999948, 49.050743395000111 ], [ -122.337751582999928, 49.051127652000055 ], [ -122.337752705999947, 49.051136709000069 ], [ -122.337618803999973, 49.051133893000042 ], [ -122.337619854999915, 49.05114291700005 ], [ -122.33770502, 49.051882419000052 ], [ -122.337717359999914, 49.051969388000039 ], [ -122.334946997999964, 49.051895571000081 ], [ -122.332651729999967, 49.051800063000023 ], [ -122.332588879999918, 49.051729380000076 ], [ -122.332375732999964, 49.051482300000025 ], [ -122.332329381999955, 49.051375295000128 ], [ -122.332285426999974, 49.051201457000069 ], [ -122.332280398999927, 49.051181602000071 ], [ -122.332283264999944, 49.051129808000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "546722835", "BldgCostT": "343227850", "sL_LossRatio": "0.692583475732492", "sL_AssetLoss": "3084639", "sL_BldgLoss": "2136370", "sL_StrLoss": "872130", "sL_NStrLoss": "1264240", "sL_ContLoss": "948269", "geom_point": "0101000020E610000072C118B2F6945EC04683507B9D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323999520999934, 49.054932490000049 ], [ -122.32293919199995, 49.054843004000077 ], [ -122.32190767899999, 49.054823003000045 ], [ -122.321522906999988, 49.054845009000132 ], [ -122.321529992999899, 49.054754199000087 ], [ -122.321586778999929, 49.054173697000067 ], [ -122.321548181999958, 49.053415198000089 ], [ -122.321540636999927, 49.052125054000079 ], [ -122.32153610499995, 49.051348509000015 ], [ -122.321538975999943, 49.051225092000067 ], [ -122.322500587999969, 49.051264398000043 ], [ -122.322425016999901, 49.049395694000111 ], [ -122.322438686999931, 49.049395546000049 ], [ -122.322931680999943, 49.049389606000084 ], [ -122.324061611000019, 49.049375096000055 ], [ -122.325164126999937, 49.0493606060001 ], [ -122.325162512999967, 49.049294708000062 ], [ -122.325176240999923, 49.04929402000004 ], [ -122.326494802999932, 49.049228486000054 ], [ -122.327162717999911, 49.049173800000112 ], [ -122.327690616000012, 49.049125203000102 ], [ -122.32796390799993, 49.049041689000077 ], [ -122.327979844999973, 49.049032979000074 ], [ -122.328075493999961, 49.048980587000067 ], [ -122.328142788999926, 49.049063995000061 ], [ -122.328372981999976, 49.048920403000089 ], [ -122.32872629400002, 49.048571723000066 ], [ -122.328802168999957, 49.048496866000072 ], [ -122.328952993999977, 49.048347989000071 ], [ -122.329209298999956, 49.048203500000135 ], [ -122.329170995999931, 49.048133708000165 ], [ -122.328834793999974, 49.048094192000107 ], [ -122.328792700999927, 49.046996603000082 ], [ -122.329928184999986, 49.046996609000054 ], [ -122.332508107999928, 49.047018111000042 ], [ -122.332525105999977, 49.047358603000085 ], [ -122.332464017999925, 49.04787975600005 ], [ -122.332462892999956, 49.04788920400005 ], [ -122.332457311, 49.047960195000051 ], [ -122.332433997999914, 49.048394910000063 ], [ -122.332283264999944, 49.051129808000013 ], [ -122.332280398999927, 49.051181602000071 ], [ -122.332285426999974, 49.051201457000069 ], [ -122.332329381999955, 49.051375295000128 ], [ -122.332375732999964, 49.051482300000025 ], [ -122.332588879999918, 49.051729380000076 ], [ -122.332651729999967, 49.051800063000023 ], [ -122.332206490999951, 49.052885595000141 ], [ -122.332199221999957, 49.053812112000074 ], [ -122.332263892999947, 49.053980996000107 ], [ -122.332359511999954, 49.05469560100007 ], [ -122.332336924999979, 49.054843598000033 ], [ -122.332253212999916, 49.054951592000037 ], [ -122.330926712999954, 49.054976600000053 ], [ -122.330019832999966, 49.054993832000093 ], [ -122.329672755999965, 49.05500040000009 ], [ -122.327216518999975, 49.055053421000103 ], [ -122.32703689899995, 49.055110399000078 ], [ -122.326865595, 49.055113553000119 ], [ -122.326664058999967, 49.055118363000162 ], [ -122.325847403999916, 49.055097644000071 ], [ -122.32517524799999, 49.055032248000074 ], [ -122.325161513999902, 49.055031145000051 ], [ -122.323999520999934, 49.054932490000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107992084", "BldgCostT": "71853334", "sL_LossRatio": "0.785593198896845", "sL_AssetLoss": "790460", "sL_BldgLoss": "620980", "sL_StrLoss": "321520", "sL_NStrLoss": "299460", "sL_ContLoss": "169480", "geom_point": "0101000020E610000070A8E7F6F5945EC0B4B684D709864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.324060799999984, 49.049298388000125 ], [ -122.324036311999919, 49.047145681000082 ], [ -122.324031919999953, 49.04697610100007 ], [ -122.32417021, 49.046836609000124 ], [ -122.324363, 49.046768299000078 ], [ -122.325115997999944, 49.046760784000064 ], [ -122.325101204999953, 49.046185104000109 ], [ -122.325092245999954, 49.045466293000089 ], [ -122.325109700999974, 49.045466647000111 ], [ -122.32582296399994, 49.045481394000035 ], [ -122.328155724999988, 49.045530583000065 ], [ -122.328174236999956, 49.045531100000062 ], [ -122.32903893799994, 49.045555370000095 ], [ -122.329889556999973, 49.045576362000098 ], [ -122.329904655999911, 49.045576854000025 ], [ -122.330090127999952, 49.045583207000057 ], [ -122.331137413999897, 49.045609095000081 ], [ -122.332418820999962, 49.045643128000044 ], [ -122.332438464999939, 49.04564363100009 ], [ -122.332472935999988, 49.04633536200005 ], [ -122.332508107999928, 49.047018111000042 ], [ -122.329928184999986, 49.046996609000054 ], [ -122.328792700999927, 49.046996603000082 ], [ -122.328834793999974, 49.048094192000107 ], [ -122.329170995999931, 49.048133708000165 ], [ -122.329209298999956, 49.048203500000135 ], [ -122.328952993999977, 49.048347989000071 ], [ -122.328802168999957, 49.048496866000072 ], [ -122.32872629400002, 49.048571723000066 ], [ -122.328372981999976, 49.048920403000089 ], [ -122.328142788999926, 49.049063995000061 ], [ -122.328075493999961, 49.048980587000067 ], [ -122.327979844999973, 49.049032979000074 ], [ -122.32796390799993, 49.049041689000077 ], [ -122.327690616000012, 49.049125203000102 ], [ -122.327162717999911, 49.049173800000112 ], [ -122.326494802999932, 49.049228486000054 ], [ -122.325176240999923, 49.04929402000004 ], [ -122.325162512999967, 49.049294708000062 ], [ -122.325164126999937, 49.0493606060001 ], [ -122.324061611000019, 49.049375096000055 ], [ -122.324060799999984, 49.049298388000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172144251", "BldgCostT": "118160001", "sL_LossRatio": "0.828952156145621", "sL_AssetLoss": "857456", "sL_BldgLoss": "710790", "sL_StrLoss": "388240", "sL_NStrLoss": "322550", "sL_ContLoss": "146666", "geom_point": "0101000020E61000008C24E6FE8F945EC0540F355D11864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323732532999898, 49.045458975000052 ], [ -122.325092245999954, 49.045466293000089 ], [ -122.325101204999953, 49.046185104000109 ], [ -122.325115997999944, 49.046760784000064 ], [ -122.324363, 49.046768299000078 ], [ -122.32417021, 49.046836609000124 ], [ -122.324031919999953, 49.04697610100007 ], [ -122.324036311999919, 49.047145681000082 ], [ -122.324060799999984, 49.049298388000125 ], [ -122.324061611000019, 49.049375096000055 ], [ -122.322931680999943, 49.049389606000084 ], [ -122.322438686999931, 49.049395546000049 ], [ -122.322425016999901, 49.049395694000111 ], [ -122.320981992999975, 49.049528302000098 ], [ -122.318097890999979, 49.049528601000063 ], [ -122.318098975999959, 49.04944569200012 ], [ -122.318112915, 49.049044103000085 ], [ -122.318132951999957, 49.048552453000099 ], [ -122.318175799999921, 49.047502897000079 ], [ -122.31820090899997, 49.046942988000083 ], [ -122.318263699999989, 49.046182480000077 ], [ -122.318266368999929, 49.046152504000062 ], [ -122.318320456, 49.045541284000073 ], [ -122.318327355999898, 49.045463453000124 ], [ -122.318345345999944, 49.045463424000076 ], [ -122.318816495999926, 49.045462973000092 ], [ -122.320402199999975, 49.045461456000083 ], [ -122.321279619, 49.045460582000096 ], [ -122.322290972999966, 49.045459593000039 ], [ -122.32303394399996, 49.045457996000074 ], [ -122.323717897999984, 49.045458903000011 ], [ -122.323732532999898, 49.045458975000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239401000", "BldgCostT": "162145000", "sL_LossRatio": "0.878910954213795", "sL_AssetLoss": "423490", "sL_BldgLoss": "372210", "sL_StrLoss": "162570", "sL_NStrLoss": "209640", "sL_ContLoss": "51280", "geom_point": "0101000020E6100000AEF188C047945EC02DCBBEC8D7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315549109999978, 49.041842301000067 ], [ -122.318387502999954, 49.0418449860001 ], [ -122.318374093000017, 49.042499063000022 ], [ -122.318366000999944, 49.04301190300005 ], [ -122.318362730999951, 49.043218770000081 ], [ -122.318327355999898, 49.045463453000124 ], [ -122.318320456, 49.045541284000073 ], [ -122.318266368999929, 49.046152504000062 ], [ -122.318263699999989, 49.046182480000077 ], [ -122.31820090899997, 49.046942988000083 ], [ -122.318175799999921, 49.047502897000079 ], [ -122.318132951999957, 49.048552453000099 ], [ -122.318112915, 49.049044103000085 ], [ -122.318098975999959, 49.04944569200012 ], [ -122.316982439999947, 49.049442852000027 ], [ -122.315259173999934, 49.049438409000089 ], [ -122.31527002199999, 49.049258689000084 ], [ -122.315337722, 49.048139042000045 ], [ -122.315384430999984, 49.047366292000063 ], [ -122.315410605999929, 49.046933038000063 ], [ -122.315476848999964, 49.045837113000076 ], [ -122.315607232999966, 49.045641455000073 ], [ -122.315770643999954, 49.045529862000159 ], [ -122.315500991999983, 49.042832297000132 ], [ -122.315504911999938, 49.042751694000067 ], [ -122.315549109999978, 49.041842301000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209032497", "BldgCostT": "111681611", "sL_LossRatio": "0.576767246888188", "sL_AssetLoss": "1517926", "sL_BldgLoss": "875490", "sL_StrLoss": "275720", "sL_NStrLoss": "599770", "sL_ContLoss": "642436", "geom_point": "0101000020E6100000825EB14C20945EC067131F8673864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307866323999988, 49.050808907000096 ], [ -122.305957958999926, 49.050666614000129 ], [ -122.304543442999943, 49.050507936000017 ], [ -122.304524966999949, 49.050505899000058 ], [ -122.304341364999942, 49.050485652000106 ], [ -122.304350353999965, 49.050355244000102 ], [ -122.304401252999966, 49.049592509000085 ], [ -122.304554953999968, 49.049638379000029 ], [ -122.305264473999927, 49.049662797000096 ], [ -122.305614330999958, 49.049803859000072 ], [ -122.30565560699992, 49.049820498000031 ], [ -122.305858813999947, 49.04977396000006 ], [ -122.305881390999957, 49.049768809000049 ], [ -122.306642511999925, 49.049227889000079 ], [ -122.307729284999965, 49.048600912000083 ], [ -122.308207786000011, 49.04813953000005 ], [ -122.308262107999937, 49.048096484000027 ], [ -122.30829828, 49.048067822000085 ], [ -122.308518799999931, 49.047926728000071 ], [ -122.308736364999987, 49.047852529000117 ], [ -122.307465570999923, 49.047092313000093 ], [ -122.307804105999963, 49.04684508900008 ], [ -122.307902815999952, 49.046854094000011 ], [ -122.308178992999956, 49.04674731300004 ], [ -122.308933104999966, 49.045726198000068 ], [ -122.309470414999936, 49.04538719700011 ], [ -122.310248194999971, 49.04554529100006 ], [ -122.310723, 49.045818705000023 ], [ -122.311363897999939, 49.046046614000048 ], [ -122.311909596999982, 49.04608651300012 ], [ -122.312554209, 49.045999599000027 ], [ -122.314122208999933, 49.045442808000118 ], [ -122.314347927999989, 49.045300963000045 ], [ -122.315770643999954, 49.045529862000159 ], [ -122.315607232999966, 49.045641455000073 ], [ -122.315476848999964, 49.045837113000076 ], [ -122.315410605999929, 49.046933038000063 ], [ -122.315384430999984, 49.047366292000063 ], [ -122.315337722, 49.048139042000045 ], [ -122.31527002199999, 49.049258689000084 ], [ -122.315259173999934, 49.049438409000089 ], [ -122.316982439999947, 49.049442852000027 ], [ -122.318098975999959, 49.04944569200012 ], [ -122.318097890999979, 49.049528601000063 ], [ -122.320981992999975, 49.049528302000098 ], [ -122.322425016999901, 49.049395694000111 ], [ -122.322500587999969, 49.051264398000043 ], [ -122.321538975999943, 49.051225092000067 ], [ -122.32153610499995, 49.051348509000015 ], [ -122.321540636999927, 49.052125054000079 ], [ -122.321548181999958, 49.053415198000089 ], [ -122.321586778999929, 49.054173697000067 ], [ -122.321529992999899, 49.054754199000087 ], [ -122.321522906999988, 49.054845009000132 ], [ -122.321007593000033, 49.054872403000054 ], [ -122.319214003, 49.055283290000055 ], [ -122.318380188999967, 49.055308778000089 ], [ -122.316628420999976, 49.055362291000129 ], [ -122.315280650999938, 49.055396269000013 ], [ -122.315269950999962, 49.055323808 ], [ -122.315121935999954, 49.054340568000072 ], [ -122.315077738999946, 49.054039528000033 ], [ -122.315008992999964, 49.053571333000122 ], [ -122.315028685999906, 49.052456845000087 ], [ -122.31357262799996, 49.052390629000058 ], [ -122.310409689999929, 49.05224591400011 ], [ -122.310153731999918, 49.051555563000051 ], [ -122.310057440000023, 49.051294711 ], [ -122.310028666999983, 49.051216806000042 ], [ -122.309948871999921, 49.05110138600002 ], [ -122.309932286999953, 49.050896146000035 ], [ -122.307866323999988, 49.050808907000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413814772", "BldgCostT": "278269158", "sL_LossRatio": "0.838150625375117", "sL_AssetLoss": "1804437", "sL_BldgLoss": "1512390", "sL_StrLoss": "674690", "sL_NStrLoss": "837700", "sL_ContLoss": "292047", "geom_point": "0101000020E610000044BF226405945EC00BF01F03E0864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.30999011599998, 49.054348197000067 ], [ -122.310018709999923, 49.054245488000142 ], [ -122.31025268099999, 49.053451192000082 ], [ -122.310336621999966, 49.053168301000028 ], [ -122.310421579999954, 49.052614093000017 ], [ -122.310409689999929, 49.05224591400011 ], [ -122.31357262799996, 49.052390629000058 ], [ -122.315028685999906, 49.052456845000087 ], [ -122.315008992999964, 49.053571333000122 ], [ -122.315077738999946, 49.054039528000033 ], [ -122.315121935999954, 49.054340568000072 ], [ -122.315269950999962, 49.055323808 ], [ -122.315280650999938, 49.055396269000013 ], [ -122.314335128999929, 49.055413415000025 ], [ -122.313997493, 49.05535674800015 ], [ -122.313822854999984, 49.055308180000033 ], [ -122.313206210999937, 49.055136747000113 ], [ -122.312885465, 49.055047565000052 ], [ -122.312872828999957, 49.055044058000099 ], [ -122.311669100999922, 49.054709863 ], [ -122.310660892999948, 49.054429906000109 ], [ -122.31057644199997, 49.054419624000069 ], [ -122.30999011599998, 49.054348197000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "502906977", "BldgCostT": "342509856", "sL_LossRatio": "0.819880603969967", "sL_AssetLoss": "2248986", "sL_BldgLoss": "1843900", "sL_StrLoss": "819870", "sL_NStrLoss": "1024030", "sL_ContLoss": "405086", "geom_point": "0101000020E6100000D77F9C51EF935EC0561A31B34F874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.30805873099996, 49.06007217100008 ], [ -122.308062589999935, 49.05997037 ], [ -122.308068750999951, 49.059808380000071 ], [ -122.308300120999917, 49.059392574000071 ], [ -122.308770919999972, 49.058942694000059 ], [ -122.309016890999899, 49.058635679000069 ], [ -122.309137382999893, 49.058350401000062 ], [ -122.309218044999952, 49.058159302000014 ], [ -122.309240910999961, 49.058105184000084 ], [ -122.309209688999943, 49.057565754000045 ], [ -122.309209100999965, 49.057555243000138 ], [ -122.30918720599999, 49.057176605000052 ], [ -122.308756443999926, 49.056388585 ], [ -122.308366096999947, 49.055674392000071 ], [ -122.308463508, 49.055343316000041 ], [ -122.309057782999957, 49.054456797000078 ], [ -122.309053702999975, 49.054335905000109 ], [ -122.30999011599998, 49.054348197000067 ], [ -122.31057644199997, 49.054419624000069 ], [ -122.310660892999948, 49.054429906000109 ], [ -122.311669100999922, 49.054709863 ], [ -122.312872828999957, 49.055044058000099 ], [ -122.312885465, 49.055047565000052 ], [ -122.313206210999937, 49.055136747000113 ], [ -122.313822854999984, 49.055308180000033 ], [ -122.313997493, 49.05535674800015 ], [ -122.314335128999929, 49.055413415000025 ], [ -122.315280650999938, 49.055396269000013 ], [ -122.315508791999918, 49.056736023000049 ], [ -122.315518004999916, 49.056790145000051 ], [ -122.315699292999966, 49.057854608000092 ], [ -122.313493459999961, 49.05833074300007 ], [ -122.312075776999976, 49.058827148000063 ], [ -122.311963556999913, 49.059099338000067 ], [ -122.310321731999977, 49.05986694200012 ], [ -122.308784227999951, 49.060673159000082 ], [ -122.308399001999987, 49.060846944000076 ], [ -122.308032138999963, 49.061012410000082 ], [ -122.30805873099996, 49.06007217100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101668916", "BldgCostT": "66671666", "sL_LossRatio": "0.79164330743796", "sL_AssetLoss": "437015", "sL_BldgLoss": "345960", "sL_StrLoss": "150320", "sL_NStrLoss": "195640", "sL_ContLoss": "91055", "geom_point": "0101000020E610000061462EEEB5935EC0FAE120214A874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307028711, 49.053954305000076 ], [ -122.307018702999983, 49.053857815000114 ], [ -122.307606315000029, 49.054022583000091 ], [ -122.308541902999963, 49.054284884000069 ], [ -122.309053702999975, 49.054335905000109 ], [ -122.309057782999957, 49.054456797000078 ], [ -122.308463508, 49.055343316000041 ], [ -122.308366096999947, 49.055674392000071 ], [ -122.308756443999926, 49.056388585 ], [ -122.30918720599999, 49.057176605000052 ], [ -122.309209100999965, 49.057555243000138 ], [ -122.309209688999943, 49.057565754000045 ], [ -122.309240910999961, 49.058105184000084 ], [ -122.309218044999952, 49.058159302000014 ], [ -122.309137382999893, 49.058350401000062 ], [ -122.309016890999899, 49.058635679000069 ], [ -122.308770919999972, 49.058942694000059 ], [ -122.308300120999917, 49.059392574000071 ], [ -122.308068750999951, 49.059808380000071 ], [ -122.308062589999935, 49.05997037 ], [ -122.30805873099996, 49.06007217100008 ], [ -122.30796447799996, 49.060072866000063 ], [ -122.307412428999925, 49.060076965000114 ], [ -122.30732406499996, 49.060018824000103 ], [ -122.307256328999969, 49.059974263000107 ], [ -122.307255431999977, 49.059954768000104 ], [ -122.307198868999961, 49.058750816000092 ], [ -122.307179009999956, 49.058327860000134 ], [ -122.307158763999936, 49.057896266000043 ], [ -122.307121405999965, 49.057100998000067 ], [ -122.307113266999963, 49.056172330000017 ], [ -122.307073991999971, 49.055696711000031 ], [ -122.307073731999949, 49.055687622000079 ], [ -122.30707351299999, 49.055678637000014 ], [ -122.307073428999914, 49.055675742000126 ], [ -122.307047177999976, 49.054665655000051 ], [ -122.30704461699996, 49.054566770000058 ], [ -122.307042036999988, 49.054467862000052 ], [ -122.307028711, 49.053954305000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117279583", "BldgCostT": "75988333", "sL_LossRatio": "0.780029785084303", "sL_AssetLoss": "760112", "sL_BldgLoss": "592910", "sL_StrLoss": "319270", "sL_NStrLoss": "273640", "sL_ContLoss": "167202", "geom_point": "0101000020E61000000D129A0B79935EC04F0E23AD46874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.301355759999964, 49.060210193000081 ], [ -122.301385665999945, 49.060126469000032 ], [ -122.301475334, 49.059772554000133 ], [ -122.301535268999984, 49.059534837000093 ], [ -122.30187796599995, 49.059320348000057 ], [ -122.302567505999917, 49.059116013000086 ], [ -122.302812986999982, 49.058919837000118 ], [ -122.30292960299991, 49.058743563000114 ], [ -122.302933448999937, 49.058557068000056 ], [ -122.302795390999975, 49.058417095000038 ], [ -122.302544766999958, 49.058367892000028 ], [ -122.301179695999949, 49.058376764000045 ], [ -122.300905934999946, 49.058343 ], [ -122.300611186999944, 49.058246306000093 ], [ -122.300382577, 49.0580742960001 ], [ -122.300266486999973, 49.057865696000128 ], [ -122.300249005999973, 49.057378298000089 ], [ -122.300237797999941, 49.056882106000074 ], [ -122.30134990599997, 49.056870794000091 ], [ -122.304422299999899, 49.056832390000054 ], [ -122.30442176399994, 49.05682339600002 ], [ -122.304386416999975, 49.056249699000119 ], [ -122.30442601399993, 49.055958005000022 ], [ -122.303377802999975, 49.05597510500008 ], [ -122.30338160699992, 49.055289210000076 ], [ -122.303379596999932, 49.054451586000063 ], [ -122.303321996999898, 49.054263085000059 ], [ -122.303172217999972, 49.054205796000083 ], [ -122.303109491999962, 49.054181790000065 ], [ -122.302882897999922, 49.054158709000021 ], [ -122.302211797, 49.054166193000079 ], [ -122.301379001000029, 49.054176285000068 ], [ -122.300236701999935, 49.054190994000081 ], [ -122.300198206999966, 49.053038494000148 ], [ -122.300195011, 49.052968867000047 ], [ -122.300149998000023, 49.05199010600009 ], [ -122.300162561999926, 49.051993697000078 ], [ -122.301003610999913, 49.052234106000093 ], [ -122.301821699999962, 49.052392108000063 ], [ -122.30417009199999, 49.053059 ], [ -122.307012542999956, 49.053856094000061 ], [ -122.307018702999983, 49.053857815000114 ], [ -122.307028711, 49.053954305000076 ], [ -122.307042036999988, 49.054467862000052 ], [ -122.30704461699996, 49.054566770000058 ], [ -122.307047177999976, 49.054665655000051 ], [ -122.307073428999914, 49.055675742000126 ], [ -122.30707351299999, 49.055678637000014 ], [ -122.307073731999949, 49.055687622000079 ], [ -122.307073991999971, 49.055696711000031 ], [ -122.307113266999963, 49.056172330000017 ], [ -122.307121405999965, 49.057100998000067 ], [ -122.307158763999936, 49.057896266000043 ], [ -122.307179009999956, 49.058327860000134 ], [ -122.307198868999961, 49.058750816000092 ], [ -122.307255431999977, 49.059954768000104 ], [ -122.307256328999969, 49.059974263000107 ], [ -122.30732406499996, 49.060018824000103 ], [ -122.307412428999925, 49.060076965000114 ], [ -122.30796447799996, 49.060072866000063 ], [ -122.30805873099996, 49.06007217100008 ], [ -122.308032138999963, 49.061012410000082 ], [ -122.308030503999973, 49.061067365000021 ], [ -122.302132077999957, 49.060309048000143 ], [ -122.301355759999964, 49.060210193000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61457558", "BldgCostT": "41103642", "sL_LossRatio": "0.792795459134042", "sL_AssetLoss": "435864", "sL_BldgLoss": "345551", "sL_StrLoss": "183634", "sL_NStrLoss": "161917", "sL_ContLoss": "90313", "geom_point": "0101000020E6100000FF6C370354935EC0C14328211E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.300232811999933, 49.056428400000051 ], [ -122.300236701999935, 49.054190994000081 ], [ -122.301379001000029, 49.054176285000068 ], [ -122.302211797, 49.054166193000079 ], [ -122.302882897999922, 49.054158709000021 ], [ -122.303109491999962, 49.054181790000065 ], [ -122.303172217999972, 49.054205796000083 ], [ -122.303321996999898, 49.054263085000059 ], [ -122.303379596999932, 49.054451586000063 ], [ -122.30338160699992, 49.055289210000076 ], [ -122.303377802999975, 49.05597510500008 ], [ -122.30442601399993, 49.055958005000022 ], [ -122.304386416999975, 49.056249699000119 ], [ -122.30442176399994, 49.05682339600002 ], [ -122.304422299999899, 49.056832390000054 ], [ -122.30134990599997, 49.056870794000091 ], [ -122.300237797999941, 49.056882106000074 ], [ -122.300232811999933, 49.056428400000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87541334", "BldgCostT": "56953334", "sL_LossRatio": "0.795331412103746", "sL_AssetLoss": "537850", "sL_BldgLoss": "427769", "sL_StrLoss": "231370", "sL_NStrLoss": "196399", "sL_ContLoss": "110081", "geom_point": "0101000020E6100000D5A8C113FE925EC02168D495B2864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.296094091000015, 49.053698385000139 ], [ -122.296017599, 49.052785208000095 ], [ -122.29543709399999, 49.052805799000026 ], [ -122.29401959099999, 49.05285690400013 ], [ -122.293775792999952, 49.050125007000069 ], [ -122.29402200899996, 49.050176814000054 ], [ -122.295281307999943, 49.050600706000061 ], [ -122.295274182999918, 49.050501303000019 ], [ -122.299932857999977, 49.051822654000077 ], [ -122.300151588999967, 49.051884688000065 ], [ -122.300149998000023, 49.05199010600009 ], [ -122.300195011, 49.052968867000047 ], [ -122.300198206999966, 49.053038494000148 ], [ -122.299685006999965, 49.053039700000056 ], [ -122.299660652999961, 49.053022846000076 ], [ -122.298957575999921, 49.052966937000043 ], [ -122.298955494, 49.053610503000101 ], [ -122.29759529099999, 49.053594211000068 ], [ -122.297589905999942, 49.054505497000051 ], [ -122.297516990999924, 49.054665213000064 ], [ -122.297309007999957, 49.05482031000011 ], [ -122.296996682999975, 49.054910496000041 ], [ -122.296652811999977, 49.054932902000104 ], [ -122.296318392999964, 49.0548024 ], [ -122.296170694999944, 49.054645801000035 ], [ -122.296133783999935, 49.054197409000054 ], [ -122.296094091000015, 49.053698385000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "564825469", "BldgCostT": "393760412", "sL_LossRatio": "0.90482994637313", "sL_AssetLoss": "1700640", "sL_BldgLoss": "1538790", "sL_StrLoss": "696130", "sL_NStrLoss": "842660", "sL_ContLoss": "161850", "geom_point": "0101000020E6100000D40769F81C935EC070CAC3DF82864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.300149998000023, 49.05199010600009 ], [ -122.300151588999967, 49.051884688000065 ], [ -122.299932857999977, 49.051822654000077 ], [ -122.295274182999918, 49.050501303000019 ], [ -122.295281307999943, 49.050600706000061 ], [ -122.29402200899996, 49.050176814000054 ], [ -122.293775792999952, 49.050125007000069 ], [ -122.293764200999959, 49.050011845 ], [ -122.292937462999973, 49.04909899200009 ], [ -122.29294889099998, 49.049029914000123 ], [ -122.293696268999952, 49.049309801000042 ], [ -122.29548325899998, 49.049920043000022 ], [ -122.297797601, 49.05071028400009 ], [ -122.299236633999939, 49.051253562000113 ], [ -122.29925779499996, 49.050735987000039 ], [ -122.29880640099999, 49.050577994000086 ], [ -122.299032876999931, 49.049999867000054 ], [ -122.301636691999931, 49.050723401000056 ], [ -122.302189593999913, 49.050945199000139 ], [ -122.302168802, 49.051828009000126 ], [ -122.302017800999934, 49.052075205000072 ], [ -122.30187650499991, 49.052304789000054 ], [ -122.301821699999962, 49.052392108000063 ], [ -122.301003610999913, 49.052234106000093 ], [ -122.300162561999926, 49.051993697000078 ], [ -122.300149998000023, 49.05199010600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "464800179", "BldgCostT": "291873055", "sL_LossRatio": "0.720392393986509", "sL_AssetLoss": "2677513", "sL_BldgLoss": "1928860", "sL_StrLoss": "774090", "sL_NStrLoss": "1154770", "sL_ContLoss": "748653", "geom_point": "0101000020E6100000011BC7DD9A925EC0DC3ABD5A87864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.289872405999944, 49.052932833000078 ], [ -122.288196364000029, 49.052748723000043 ], [ -122.287589708999974, 49.052766544000072 ], [ -122.287310303999959, 49.052817259000058 ], [ -122.287440033999928, 49.052505148000073 ], [ -122.28759707099999, 49.051719034000079 ], [ -122.287612021999976, 49.051389765000067 ], [ -122.287617524999959, 49.051267713000122 ], [ -122.287629133999971, 49.051012205000099 ], [ -122.287669416999975, 49.05012402100003 ], [ -122.287700203999933, 49.048964803000061 ], [ -122.288030272999933, 49.048967583000028 ], [ -122.288358662999926, 49.048970354000112 ], [ -122.289007308999913, 49.048975800000036 ], [ -122.290332206999977, 49.048987286000077 ], [ -122.291639802999981, 49.048974809000093 ], [ -122.29294889099998, 49.049029914000123 ], [ -122.292937462999973, 49.04909899200009 ], [ -122.293764200999959, 49.050011845 ], [ -122.293775792999952, 49.050125007000069 ], [ -122.29401959099999, 49.05285690400013 ], [ -122.292446995999967, 49.052998672000051 ], [ -122.290138285999944, 49.052932856000069 ], [ -122.290080867999919, 49.052930858000082 ], [ -122.290080188, 49.05293088800007 ], [ -122.289872405999944, 49.052932833000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116452822", "BldgCostT": "62793593", "sL_LossRatio": "0.604643030691077", "sL_AssetLoss": "829329", "sL_BldgLoss": "501448", "sL_StrLoss": "202948", "sL_NStrLoss": "298500", "sL_ContLoss": "327881", "geom_point": "0101000020E61000009E1868CA90925EC0D5098930D5874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.286366151999943, 49.069109224000051 ], [ -122.286367115999937, 49.069041869000053 ], [ -122.286245316999938, 49.069041115000083 ], [ -122.286043353999958, 49.069039866000089 ], [ -122.286146654999925, 49.066106641000012 ], [ -122.286219731999935, 49.064245751000087 ], [ -122.286240742999937, 49.063690228000056 ], [ -122.285733294999957, 49.063686200000106 ], [ -122.281918513999983, 49.06369120600003 ], [ -122.281514647000023, 49.063692546 ], [ -122.280237556999907, 49.063694282000064 ], [ -122.279757351999962, 49.063694605000094 ], [ -122.279701032999952, 49.063694626000029 ], [ -122.279646506999882, 49.063680054000066 ], [ -122.279522782999919, 49.063646993000134 ], [ -122.279635461999931, 49.063139851000088 ], [ -122.279639229999972, 49.063130608000051 ], [ -122.27963899599996, 49.063100210000066 ], [ -122.279640442999948, 49.062989790000124 ], [ -122.279651659999956, 49.062118883000039 ], [ -122.279660360999912, 49.06150564899999 ], [ -122.279664933999982, 49.061181836000088 ], [ -122.279666318999915, 49.061082900000073 ], [ -122.279671910999966, 49.060687107000064 ], [ -122.279679589999915, 49.06014099700014 ], [ -122.282271982999958, 49.060113376000068 ], [ -122.282964153999927, 49.060106035000047 ], [ -122.282947567999898, 49.05939407900005 ], [ -122.282932215999963, 49.058737015000077 ], [ -122.282930731999969, 49.058672368000025 ], [ -122.282925402999979, 49.058567612000068 ], [ -122.285809205999939, 49.05861420600008 ], [ -122.286506195999948, 49.058625711000062 ], [ -122.286529082999948, 49.05801256600008 ], [ -122.286543841999944, 49.057572647000043 ], [ -122.286549, 49.05741916200013 ], [ -122.28664358499999, 49.054755719000056 ], [ -122.286787962999966, 49.054111638000066 ], [ -122.286969422999931, 49.053637414000079 ], [ -122.287244807999912, 49.052974861000067 ], [ -122.287310303999959, 49.052817259000058 ], [ -122.287589708999974, 49.052766544000072 ], [ -122.288196364000029, 49.052748723000043 ], [ -122.289872405999944, 49.052932833000078 ], [ -122.290080188, 49.05293088800007 ], [ -122.290080867999919, 49.052930858000082 ], [ -122.290138285999944, 49.052932856000069 ], [ -122.292446995999967, 49.052998672000051 ], [ -122.29401959099999, 49.05285690400013 ], [ -122.294028521999962, 49.053173625000049 ], [ -122.294061812999985, 49.054356702000049 ], [ -122.294022701999921, 49.055019693000041 ], [ -122.29402959, 49.055352918000082 ], [ -122.295451685999979, 49.055532311000057 ], [ -122.296737535999981, 49.055901035000062 ], [ -122.29757614499999, 49.056441784000057 ], [ -122.29786213899996, 49.05676959700007 ], [ -122.297960126999911, 49.056893382000069 ], [ -122.298137082999943, 49.057367173000102 ], [ -122.298136377999924, 49.057664556000084 ], [ -122.298135918999961, 49.057857936000069 ], [ -122.297874440999948, 49.058556340000116 ], [ -122.297422158999936, 49.05915413300005 ], [ -122.297418243, 49.059158102000076 ], [ -122.29734915099999, 49.059228399000069 ], [ -122.297242573999981, 49.059333529000121 ], [ -122.296884421999934, 49.059691715000042 ], [ -122.296574311999962, 49.060001885000112 ], [ -122.296172450999961, 49.060417396000084 ], [ -122.295170636999927, 49.061293101000089 ], [ -122.29399588199999, 49.062771742000052 ], [ -122.292975147999968, 49.063777939000019 ], [ -122.296760596999945, 49.063730129000099 ], [ -122.297456540999974, 49.063712538000061 ], [ -122.297531963999973, 49.063712997000103 ], [ -122.29752816099996, 49.063982843000097 ], [ -122.298349467999927, 49.063987838000045 ], [ -122.298345668999957, 49.064257683000058 ], [ -122.298579902999933, 49.064259107000034 ], [ -122.297019054999978, 49.066992357000032 ], [ -122.296579708999928, 49.067267470000026 ], [ -122.296412851999975, 49.067350177000044 ], [ -122.294663220999922, 49.068217344000082 ], [ -122.294126286999926, 49.069030907000077 ], [ -122.293947411999952, 49.069111795000033 ], [ -122.293852236999939, 49.069154875000045 ], [ -122.293328172999935, 49.069155539000093 ], [ -122.289411598999905, 49.069160384000057 ], [ -122.28931692799992, 49.069160503 ], [ -122.287728784999928, 49.069162410000061 ], [ -122.287591729000027, 49.069162578000061 ], [ -122.287400097, 49.069162810000059 ], [ -122.287199228999953, 49.06916306200003 ], [ -122.286736174999973, 49.069133531 ], [ -122.286366151999943, 49.069109224000051 ] ], [ [ -122.293778744999983, 49.067738116000015 ], [ -122.293786392999934, 49.067198426000054 ], [ -122.29337571399999, 49.067195913000042 ], [ -122.29338336499994, 49.066656223000059 ], [ -122.292972691999978, 49.066653709000015 ], [ -122.292976930999913, 49.066354860000075 ], [ -122.292897894999953, 49.066352131000038 ], [ -122.29274876199996, 49.068226098000075 ], [ -122.290076628999927, 49.068133816000078 ], [ -122.290071055999931, 49.068524974000056 ], [ -122.290481744999923, 49.068527499000076 ], [ -122.290477902999967, 49.068797344000082 ], [ -122.292120673999975, 49.068807431000018 ], [ -122.292124506999954, 49.068537587 ], [ -122.292535197999939, 49.068540105000061 ], [ -122.292539027999936, 49.068270260000091 ], [ -122.292949717999974, 49.068272777000111 ], [ -122.292953546999982, 49.068002932000056 ], [ -122.293364233999966, 49.068005446000072 ], [ -122.293368060999967, 49.06773560200002 ], [ -122.293778744999983, 49.067738116000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142310220", "BldgCostT": "93575413", "sL_LossRatio": "0.758866897006913", "sL_AssetLoss": "1122687", "sL_BldgLoss": "851970", "sL_StrLoss": "440300", "sL_NStrLoss": "411670", "sL_ContLoss": "270717", "geom_point": "0101000020E6100000557A8E44FF915EC0315F771D1E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.275212321999945, 49.057012905000143 ], [ -122.273896606999969, 49.056267661000099 ], [ -122.273151925999969, 49.055706317000109 ], [ -122.273221187999951, 49.055672515000055 ], [ -122.27330714699994, 49.055630568000019 ], [ -122.273710181999931, 49.055946572000053 ], [ -122.274281358999986, 49.05633329900003 ], [ -122.275294115999912, 49.056896748000057 ], [ -122.274275266999936, 49.056187048 ], [ -122.274232712999904, 49.056142903000108 ], [ -122.273603069999965, 49.055489367000078 ], [ -122.277376494999942, 49.053698208000093 ], [ -122.277327802999977, 49.053452202000116 ], [ -122.27731571399994, 49.052695409000115 ], [ -122.277773206999939, 49.052758213000075 ], [ -122.277878497999964, 49.052673497000086 ], [ -122.279738900999959, 49.052680298000055 ], [ -122.280015006000013, 49.052649313000138 ], [ -122.280896582999929, 49.052576097000049 ], [ -122.28135457899999, 49.052860878000061 ], [ -122.281764389999978, 49.052709899000106 ], [ -122.281885968999958, 49.052711347000056 ], [ -122.282755421000033, 49.052721691000073 ], [ -122.283843807999943, 49.05273228800008 ], [ -122.285111204999936, 49.052744604000054 ], [ -122.287000592999945, 49.052764896000035 ], [ -122.287309443999959, 49.052817117000139 ], [ -122.287310303999959, 49.052817259000058 ], [ -122.287244807999912, 49.052974861000067 ], [ -122.286969422999931, 49.053637414000079 ], [ -122.286787962999966, 49.054111638000066 ], [ -122.28664358499999, 49.054755719000056 ], [ -122.286549, 49.05741916200013 ], [ -122.286543841999944, 49.057572647000043 ], [ -122.286529082999948, 49.05801256600008 ], [ -122.286506195999948, 49.058625711000062 ], [ -122.285809205999939, 49.05861420600008 ], [ -122.282925402999979, 49.058567612000068 ], [ -122.282930731999969, 49.058672368000025 ], [ -122.282220930999983, 49.058666705000093 ], [ -122.281208382999921, 49.058613622000053 ], [ -122.279372886999965, 49.058377846000091 ], [ -122.278237234999921, 49.058118508000064 ], [ -122.277603268999911, 49.057936980000122 ], [ -122.277269956999959, 49.057841557000053 ], [ -122.276430883, 49.0575528090001 ], [ -122.276298926000024, 49.057494365000089 ], [ -122.276000892999946, 49.057362299000047 ], [ -122.275212321999945, 49.057012905000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112227334", "BldgCostT": "71568334", "sL_LossRatio": "0.74757794588081", "sL_AssetLoss": "809953", "sL_BldgLoss": "605503", "sL_StrLoss": "291552", "sL_NStrLoss": "313951", "sL_ContLoss": "204450", "geom_point": "0101000020E6100000420E3AB618935EC03FD4CFFE34874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297874440999948, 49.058556340000116 ], [ -122.298135918999961, 49.057857936000069 ], [ -122.298136377999924, 49.057664556000084 ], [ -122.298137082999943, 49.057367173000102 ], [ -122.297960126999911, 49.056893382000069 ], [ -122.29786213899996, 49.05676959700007 ], [ -122.29757614499999, 49.056441784000057 ], [ -122.296737535999981, 49.055901035000062 ], [ -122.295451685999979, 49.055532311000057 ], [ -122.29402959, 49.055352918000082 ], [ -122.294022701999921, 49.055019693000041 ], [ -122.294061812999985, 49.054356702000049 ], [ -122.294028521999962, 49.053173625000049 ], [ -122.29401959099999, 49.05285690400013 ], [ -122.29543709399999, 49.052805799000026 ], [ -122.296017599, 49.052785208000095 ], [ -122.296094091000015, 49.053698385000139 ], [ -122.296133783999935, 49.054197409000054 ], [ -122.296170694999944, 49.054645801000035 ], [ -122.296318392999964, 49.0548024 ], [ -122.296652811999977, 49.054932902000104 ], [ -122.296996682999975, 49.054910496000041 ], [ -122.297309007999957, 49.05482031000011 ], [ -122.297516990999924, 49.054665213000064 ], [ -122.297589905999942, 49.054505497000051 ], [ -122.29759529099999, 49.053594211000068 ], [ -122.298955494, 49.053610503000101 ], [ -122.298957575999921, 49.052966937000043 ], [ -122.299660652999961, 49.053022846000076 ], [ -122.299685006999965, 49.053039700000056 ], [ -122.300198206999966, 49.053038494000148 ], [ -122.300236701999935, 49.054190994000081 ], [ -122.300232811999933, 49.056428400000051 ], [ -122.300237797999941, 49.056882106000074 ], [ -122.300249005999973, 49.057378298000089 ], [ -122.300266486999973, 49.057865696000128 ], [ -122.300382577, 49.0580742960001 ], [ -122.300611186999944, 49.058246306000093 ], [ -122.300905934999946, 49.058343 ], [ -122.301179695999949, 49.058376764000045 ], [ -122.302544766999958, 49.058367892000028 ], [ -122.302795390999975, 49.058417095000038 ], [ -122.302933448999937, 49.058557068000056 ], [ -122.30292960299991, 49.058743563000114 ], [ -122.302812986999982, 49.058919837000118 ], [ -122.302567505999917, 49.059116013000086 ], [ -122.30187796599995, 49.059320348000057 ], [ -122.301535268999984, 49.059534837000093 ], [ -122.301475334, 49.059772554000133 ], [ -122.301385665999945, 49.060126469000032 ], [ -122.301355759999964, 49.060210193000081 ], [ -122.299445417999934, 49.060019061000062 ], [ -122.298841409999937, 49.059870202000113 ], [ -122.298371853, 49.059699862000123 ], [ -122.29734915099999, 49.059228399000069 ], [ -122.297418243, 49.059158102000076 ], [ -122.297422158999936, 49.05915413300005 ], [ -122.297874440999948, 49.058556340000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "276299835", "BldgCostT": "170683335", "sL_LossRatio": "0.732261290975555", "sL_AssetLoss": "1679660", "sL_BldgLoss": "1229950", "sL_StrLoss": "561690", "sL_NStrLoss": "668260", "sL_ContLoss": "449710", "geom_point": "0101000020E6100000E2ED5BEF2F935EC04B093EBC1D894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.287756449999975, 49.081888821000099 ], [ -122.28656851, 49.081710756000057 ], [ -122.286414934999968, 49.081713550000046 ], [ -122.286227164999943, 49.081784582000097 ], [ -122.285908926999966, 49.081472289000089 ], [ -122.285657904999965, 49.080068249000121 ], [ -122.285557129999916, 49.079054235000044 ], [ -122.28557838899998, 49.078457209000121 ], [ -122.285638182, 49.077932802000106 ], [ -122.285690100999915, 49.077711613000091 ], [ -122.289190889999986, 49.077832615 ], [ -122.28907610499999, 49.079273157000081 ], [ -122.290231994999914, 49.079313084000049 ], [ -122.290294607999968, 49.078527055000038 ], [ -122.290209481999952, 49.07852411600004 ], [ -122.29028996699999, 49.077513733000032 ], [ -122.289779629999941, 49.077496106000105 ], [ -122.289786411999941, 49.077410968000024 ], [ -122.288145178999983, 49.077354263000082 ], [ -122.28828731599998, 49.075570798000051 ], [ -122.288257593999944, 49.075569770000094 ], [ -122.288267291999972, 49.075448067000053 ], [ -122.286276333999922, 49.075379244000032 ], [ -122.286247279999955, 49.077407035000057 ], [ -122.285762295999987, 49.077404035000029 ], [ -122.28597749699999, 49.076487192000052 ], [ -122.286196787999955, 49.075719390000103 ], [ -122.286476098999941, 49.07441818800006 ], [ -122.286690251999971, 49.073644465000044 ], [ -122.286853612999934, 49.0730541880001 ], [ -122.287389569999931, 49.071871987000115 ], [ -122.287671337999939, 49.071479174000046 ], [ -122.288802204999982, 49.071518259000136 ], [ -122.288852906999963, 49.0708819070001 ], [ -122.29431328699998, 49.071070459000062 ], [ -122.294270651999938, 49.071606356000139 ], [ -122.294798358999941, 49.071624563000078 ], [ -122.29483604899994, 49.071150752000037 ], [ -122.295626896999934, 49.071178034000056 ], [ -122.295638823999923, 49.071028071000065 ], [ -122.296325775999918, 49.071051764000053 ], [ -122.29635581299999, 49.070673987000063 ], [ -122.300159006999962, 49.070805080000042 ], [ -122.300364243999951, 49.068221052000119 ], [ -122.299111913999965, 49.068177900000087 ], [ -122.299110050999957, 49.068310350000068 ], [ -122.298288672999931, 49.068305360000103 ], [ -122.298281071999966, 49.06884504900011 ], [ -122.29869176599999, 49.06884754700009 ], [ -122.298680371999964, 49.069657081000067 ], [ -122.298269671999932, 49.069654584000062 ], [ -122.298265869999938, 49.069924429000075 ], [ -122.297444464999913, 49.069919432000056 ], [ -122.297440659999936, 49.070189277000054 ], [ -122.295387138999942, 49.070176760000038 ], [ -122.295398585999976, 49.069367225000107 ], [ -122.295809282999954, 49.069369732000034 ], [ -122.29581691199995, 49.068830042000116 ], [ -122.294995524999976, 49.068825027000109 ], [ -122.294984069999927, 49.069634562000012 ], [ -122.294162671999956, 49.069629542000101 ], [ -122.294155025999927, 49.070169231000065 ], [ -122.292922913, 49.070161689000031 ], [ -122.292919083999948, 49.070431533000061 ], [ -122.290865552999918, 49.070418935000106 ], [ -122.290869393999941, 49.070149091000097 ], [ -122.290047986, 49.070144041000106 ], [ -122.290051830999957, 49.0698741960001 ], [ -122.289230429, 49.069869141000034 ], [ -122.289226578999944, 49.070138986000131 ], [ -122.288815874999955, 49.070136456000071 ], [ -122.28880817199996, 49.070676144000139 ], [ -122.28839746299991, 49.070673613000039 ], [ -122.288393609999915, 49.070943457000091 ], [ -122.28805708899999, 49.070941382000086 ], [ -122.288372233999951, 49.070502019000088 ], [ -122.289411598999905, 49.069160384000057 ], [ -122.293328172999935, 49.069155539000093 ], [ -122.293852236999939, 49.069154875000045 ], [ -122.293947411999952, 49.069111795000033 ], [ -122.294126286999926, 49.069030907000077 ], [ -122.294663220999922, 49.068217344000082 ], [ -122.296412851999975, 49.067350177000044 ], [ -122.296579708999928, 49.067267470000026 ], [ -122.297019054999978, 49.066992357000032 ], [ -122.298579902999933, 49.064259107000034 ], [ -122.299166979999953, 49.064262673000073 ], [ -122.299162604999964, 49.064573663000026 ], [ -122.300709654999977, 49.064626971000088 ], [ -122.300473258999929, 49.067603794000064 ], [ -122.300453734999962, 49.067849637000108 ], [ -122.302756037999984, 49.067928928000086 ], [ -122.302793487999907, 49.067457084000083 ], [ -122.30300216799999, 49.064827629000071 ], [ -122.303991555999914, 49.064861689000097 ], [ -122.303993940999987, 49.064831619000088 ], [ -122.302444674999933, 49.06482226600005 ], [ -122.30245978399999, 49.063742884000092 ], [ -122.30287043499996, 49.063745365000095 ], [ -122.30288176, 49.062935829000068 ], [ -122.302471112999939, 49.062933348000037 ], [ -122.302478666999946, 49.062393657 ], [ -122.302068026999947, 49.06239117400002 ], [ -122.302075585, 49.061851484000023 ], [ -122.30125431299993, 49.061846514000131 ], [ -122.301258093999962, 49.061576669000068 ], [ -122.300436826999913, 49.061571694000037 ], [ -122.3004406149999, 49.061301849000117 ], [ -122.298798087999927, 49.061291881000038 ], [ -122.298801884999946, 49.06102203500005 ], [ -122.297159368999985, 49.06101204400008 ], [ -122.297163173999976, 49.06074219900006 ], [ -122.297041725000014, 49.060741460000038 ], [ -122.297011739999945, 49.061118716000067 ], [ -122.296685288999981, 49.061107457000077 ], [ -122.296656245999941, 49.061472824000127 ], [ -122.295510755999913, 49.06143330800009 ], [ -122.295509223999929, 49.06154172100004 ], [ -122.295098591999988, 49.061539214000035 ], [ -122.295071873999987, 49.063428129000073 ], [ -122.29589317199999, 49.063433143000076 ], [ -122.295889358999943, 49.063702988000095 ], [ -122.297456540999974, 49.063712538000061 ], [ -122.296760596999945, 49.063730129000099 ], [ -122.292975147999968, 49.063777939000019 ], [ -122.29399588199999, 49.062771742000052 ], [ -122.295170636999927, 49.061293101000089 ], [ -122.296172450999961, 49.060417396000084 ], [ -122.296574311999962, 49.060001885000112 ], [ -122.296884421999934, 49.059691715000042 ], [ -122.297242573999981, 49.059333529000121 ], [ -122.29734915099999, 49.059228399000069 ], [ -122.298371853, 49.059699862000123 ], [ -122.298841409999937, 49.059870202000113 ], [ -122.299445417999934, 49.060019061000062 ], [ -122.301355759999964, 49.060210193000081 ], [ -122.302132077999957, 49.060309048000143 ], [ -122.308030503999973, 49.061067365000021 ], [ -122.308025588999953, 49.061612606000089 ], [ -122.3080232199999, 49.061859141000042 ], [ -122.308022454999971, 49.061940086000085 ], [ -122.308017760999945, 49.062425848000061 ], [ -122.308016721999977, 49.062536298000069 ], [ -122.308075617000029, 49.062737950000063 ], [ -122.308082390999942, 49.062761203000079 ], [ -122.30819800799999, 49.062891405000087 ], [ -122.308183376999963, 49.063067112000098 ], [ -122.308114782999894, 49.063890103000091 ], [ -122.308114410999977, 49.06391066900003 ], [ -122.308107635999988, 49.06427946000013 ], [ -122.308100496999927, 49.064666211000045 ], [ -122.308094406999956, 49.064999045000079 ], [ -122.308090920999987, 49.065187919000067 ], [ -122.308051480999922, 49.067330704 ], [ -122.309086496999939, 49.067344694000042 ], [ -122.309485096999964, 49.067323191000114 ], [ -122.310686003999976, 49.066988605000112 ], [ -122.310753397999989, 49.067036008000095 ], [ -122.311250912999952, 49.068064510000077 ], [ -122.312624295999939, 49.067781693000029 ], [ -122.312775372999937, 49.067775201000096 ], [ -122.314206397999968, 49.067782895000065 ], [ -122.314241174999921, 49.069315697000064 ], [ -122.313679797999939, 49.06931810500005 ], [ -122.313141687999959, 49.069458207 ], [ -122.312675790999918, 49.069690188000038 ], [ -122.312362020999927, 49.069987698 ], [ -122.312137200999985, 49.070390085000085 ], [ -122.31213789399996, 49.070951808000089 ], [ -122.312183682999901, 49.071877052000083 ], [ -122.312207394999987, 49.072355999000138 ], [ -122.313302613999952, 49.072354790000141 ], [ -122.314349883999924, 49.072352893000115 ], [ -122.315438277999945, 49.072351496000067 ], [ -122.316120123999923, 49.072349620000054 ], [ -122.31618799899999, 49.074606542000083 ], [ -122.315282327999938, 49.074605967000153 ], [ -122.313981201000033, 49.074605140000131 ], [ -122.312393071999963, 49.074604106000074 ], [ -122.312105564999925, 49.074603941000092 ], [ -122.31072262899994, 49.074602994000031 ], [ -122.308052526999958, 49.074601168000108 ], [ -122.30758705199996, 49.074600852000081 ], [ -122.306655909999961, 49.074600193000059 ], [ -122.305916431999947, 49.07459965900005 ], [ -122.30515911099998, 49.074599121000062 ], [ -122.299330835999967, 49.074622987000069 ], [ -122.29416149799999, 49.074643909000059 ], [ -122.294155968999974, 49.075142573000058 ], [ -122.294153495999936, 49.075364811000085 ], [ -122.294146740999963, 49.076248964000058 ], [ -122.294129762999916, 49.078470720000048 ], [ -122.294117477999961, 49.080080830000064 ], [ -122.29411252200002, 49.080731693000061 ], [ -122.294130084999964, 49.081348835000043 ], [ -122.294147461999984, 49.08196077100007 ], [ -122.293984202999951, 49.08203354700008 ], [ -122.293707257000023, 49.082072674000088 ], [ -122.292994404999959, 49.082074449000054 ], [ -122.29228237199996, 49.082076198000067 ], [ -122.290538386999984, 49.082080491000049 ], [ -122.288572432999928, 49.081945059000084 ], [ -122.287794077999948, 49.081891438000035 ], [ -122.287756449999975, 49.081888821000099 ] ], [ [ -122.290481111999966, 49.079765230000085 ], [ -122.290490064999986, 49.07965283200005 ], [ -122.290226159999946, 49.079643718000035 ], [ -122.290217205999937, 49.079756116000134 ], [ -122.290481111999966, 49.079765230000085 ] ], [ [ -122.308915543999888, 49.072051591000054 ], [ -122.308925441000014, 49.071338086000054 ], [ -122.308514725999984, 49.07133562700006 ], [ -122.308518470999985, 49.071065781000129 ], [ -122.30810776, 49.071063319000089 ], [ -122.308111506, 49.07079347300003 ], [ -122.307213638999926, 49.070788088000043 ], [ -122.307118367000015, 49.071989809000094 ], [ -122.308915543999888, 49.072051591000054 ] ], [ [ -122.306903327999962, 49.069064177000051 ], [ -122.306909403999924, 49.068627317000022 ], [ -122.308074812999948, 49.068634311000039 ], [ -122.305812662999955, 49.068556516000058 ], [ -122.305775478999962, 49.06902538500006 ], [ -122.306903327999962, 49.069064177000051 ] ], [ [ -122.308141455999973, 49.068636602000062 ], [ -122.308137734999889, 49.068904555000103 ], [ -122.308548429999988, 49.068907016000011 ], [ -122.30855198799999, 49.068650715000082 ], [ -122.308141455999973, 49.068636602000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321576106", "BldgCostT": "219342492", "sL_LossRatio": "0.841761827079935", "sL_AssetLoss": "1317950", "sL_BldgLoss": "1109400", "sL_StrLoss": "506870", "sL_NStrLoss": "602530", "sL_ContLoss": "208550", "geom_point": "0101000020E61000008CC95EC6FF935EC03EA5D63DAA874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.313493459999961, 49.05833074300007 ], [ -122.315699292999966, 49.057854608000092 ], [ -122.315866165000017, 49.058878773000075 ], [ -122.315921685999925, 49.059219473000027 ], [ -122.315952763999917, 49.059410117000034 ], [ -122.31605679099998, 49.060048488000128 ], [ -122.316073047999936, 49.060171663000084 ], [ -122.315308293, 49.060182718000107 ], [ -122.314501575999941, 49.060194352000032 ], [ -122.313859133999941, 49.060271468000089 ], [ -122.31291087999989, 49.060456396000092 ], [ -122.312215237999965, 49.06086555400006 ], [ -122.311450012999927, 49.061315598000128 ], [ -122.310513482999937, 49.061510595000065 ], [ -122.309709597999941, 49.061604707000065 ], [ -122.308025588999953, 49.061612606000089 ], [ -122.308030503999973, 49.061067365000021 ], [ -122.308032138999963, 49.061012410000082 ], [ -122.308399001999987, 49.060846944000076 ], [ -122.308784227999951, 49.060673159000082 ], [ -122.310321731999977, 49.05986694200012 ], [ -122.311963556999913, 49.059099338000067 ], [ -122.312075776999976, 49.058827148000063 ], [ -122.313493459999961, 49.05833074300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155881833", "BldgCostT": "97983333", "sL_LossRatio": "0.764991317272038", "sL_AssetLoss": "1046906", "sL_BldgLoss": "800874", "sL_StrLoss": "407228", "sL_NStrLoss": "393646", "sL_ContLoss": "246032", "geom_point": "0101000020E610000056E90EFFFC935EC0B326D4DB38884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310753397999989, 49.067036008000095 ], [ -122.310686003999976, 49.066988605000112 ], [ -122.309485096999964, 49.067323191000114 ], [ -122.309086496999939, 49.067344694000042 ], [ -122.308051480999922, 49.067330704 ], [ -122.308090920999987, 49.065187919000067 ], [ -122.308094406999956, 49.064999045000079 ], [ -122.308100496999927, 49.064666211000045 ], [ -122.308107635999988, 49.06427946000013 ], [ -122.308114410999977, 49.06391066900003 ], [ -122.308114782999894, 49.063890103000091 ], [ -122.308183376999963, 49.063067112000098 ], [ -122.30819800799999, 49.062891405000087 ], [ -122.308082390999942, 49.062761203000079 ], [ -122.308075617000029, 49.062737950000063 ], [ -122.308016721999977, 49.062536298000069 ], [ -122.308017760999945, 49.062425848000061 ], [ -122.308022454999971, 49.061940086000085 ], [ -122.3080232199999, 49.061859141000042 ], [ -122.308025588999953, 49.061612606000089 ], [ -122.309709597999941, 49.061604707000065 ], [ -122.310513482999937, 49.061510595000065 ], [ -122.311450012999927, 49.061315598000128 ], [ -122.312215237999965, 49.06086555400006 ], [ -122.31291087999989, 49.060456396000092 ], [ -122.313859133999941, 49.060271468000089 ], [ -122.314501575999941, 49.060194352000032 ], [ -122.315308293, 49.060182718000107 ], [ -122.316073047999936, 49.060171663000084 ], [ -122.316052289999959, 49.061126539000021 ], [ -122.316035525999951, 49.062463756000106 ], [ -122.316035312999986, 49.062477493000124 ], [ -122.316026377999975, 49.06315011500002 ], [ -122.316004796999962, 49.064773237000018 ], [ -122.316004689999914, 49.064782249000061 ], [ -122.315999343999948, 49.065154051000057 ], [ -122.315997510999978, 49.065279983000082 ], [ -122.315993262999925, 49.06557680300002 ], [ -122.315987713999931, 49.06596324 ], [ -122.315987458999956, 49.06597881800004 ], [ -122.315971639999987, 49.067044739000018 ], [ -122.315981694999905, 49.067367982000114 ], [ -122.315994803999942, 49.067790155000075 ], [ -122.315261942999953, 49.067797467000076 ], [ -122.314206397999968, 49.067782895000065 ], [ -122.312775372999937, 49.067775201000096 ], [ -122.312624295999939, 49.067781693000029 ], [ -122.311250912999952, 49.068064510000077 ], [ -122.310753397999989, 49.067036008000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57483418", "BldgCostT": "38411668", "sL_LossRatio": "0.788366357357982", "sL_AssetLoss": "418029", "sL_BldgLoss": "329560", "sL_StrLoss": "172880", "sL_NStrLoss": "156680", "sL_ContLoss": "88469", "geom_point": "0101000020E6100000CFD6F2B158945EC0AFB25B702B884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.316026377999975, 49.06315011500002 ], [ -122.316035312999986, 49.062477493000124 ], [ -122.316035525999951, 49.062463756000106 ], [ -122.318838297999918, 49.062464347000116 ], [ -122.318848995999957, 49.063159819000106 ], [ -122.319915101, 49.063160189000058 ], [ -122.319907682999911, 49.065177509000137 ], [ -122.31887761299997, 49.065171895000091 ], [ -122.317756604999957, 49.065016330000034 ], [ -122.316004796999962, 49.064773237000018 ], [ -122.316026377999975, 49.06315011500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61906750", "BldgCostT": "40750000", "sL_LossRatio": "0.76460141124831", "sL_AssetLoss": "523083", "sL_BldgLoss": "399950", "sL_StrLoss": "205370", "sL_NStrLoss": "194580", "sL_ContLoss": "123133", "geom_point": "0101000020E6100000148E209562945EC0C7C6D52BD9874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.316073047999936, 49.060171663000084 ], [ -122.32100408699992, 49.060167649000022 ], [ -122.321000601999955, 49.060558807000071 ], [ -122.32097549599996, 49.062262601000086 ], [ -122.320894500999984, 49.062387917000073 ], [ -122.320727602999966, 49.06245607799999 ], [ -122.319860598, 49.062465118000013 ], [ -122.318838297999918, 49.062464347000116 ], [ -122.316035525999951, 49.062463756000106 ], [ -122.316052289999959, 49.061126539000021 ], [ -122.316073047999936, 49.060171663000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82945000", "BldgCostT": "52840000", "sL_LossRatio": "0.776992626721455", "sL_AssetLoss": "553892", "sL_BldgLoss": "430370", "sL_StrLoss": "220630", "sL_NStrLoss": "209740", "sL_ContLoss": "123522", "geom_point": "0101000020E61000001EC6E6DBA9945EC037795FCF36884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.320765001999973, 49.067228939000053 ], [ -122.319063142999966, 49.066980378000089 ], [ -122.317051916999958, 49.066970913000077 ], [ -122.315971639999987, 49.067044739000018 ], [ -122.315987458999956, 49.06597881800004 ], [ -122.315987713999931, 49.06596324 ], [ -122.315993262999925, 49.06557680300002 ], [ -122.315997510999978, 49.065279983000082 ], [ -122.315999343999948, 49.065154051000057 ], [ -122.316004689999914, 49.064782249000061 ], [ -122.316004796999962, 49.064773237000018 ], [ -122.317756604999957, 49.065016330000034 ], [ -122.31887761299997, 49.065171895000091 ], [ -122.319907682999911, 49.065177509000137 ], [ -122.319915101, 49.063160189000058 ], [ -122.318848995999957, 49.063159819000106 ], [ -122.318838297999918, 49.062464347000116 ], [ -122.319860598, 49.062465118000013 ], [ -122.320727602999966, 49.06245607799999 ], [ -122.320894500999984, 49.062387917000073 ], [ -122.32097549599996, 49.062262601000086 ], [ -122.321000601999955, 49.060558807000071 ], [ -122.32100408699992, 49.060167649000022 ], [ -122.321598100999921, 49.060166906000049 ], [ -122.321680211999976, 49.060166778000031 ], [ -122.322475367999957, 49.060165772000076 ], [ -122.32689327099996, 49.060161021000084 ], [ -122.326926586999946, 49.061561296000093 ], [ -122.326943588999924, 49.062282196000055 ], [ -122.326974609999951, 49.063497378000143 ], [ -122.326984092999936, 49.063869194000027 ], [ -122.327056608999925, 49.064164693000137 ], [ -122.327506214999957, 49.06474620300007 ], [ -122.327748394999929, 49.065060116000076 ], [ -122.327832711000028, 49.065413703000047 ], [ -122.327743296, 49.065957814000107 ], [ -122.327595386999946, 49.066306107000109 ], [ -122.327318400999943, 49.066695108 ], [ -122.327069086999984, 49.066905596000012 ], [ -122.326760712999942, 49.067069229000076 ], [ -122.326729109, 49.067086004000075 ], [ -122.326385515999959, 49.067191405000102 ], [ -122.325890405999971, 49.067272805000094 ], [ -122.325797398999939, 49.067272047000117 ], [ -122.325130402999946, 49.067266463000095 ], [ -122.324812607999945, 49.067263800000021 ], [ -122.324714591999907, 49.067276447000019 ], [ -122.324646678999926, 49.067285195000053 ], [ -122.324291085999931, 49.067333411000028 ], [ -122.323692114999943, 49.067332933000088 ], [ -122.323022416999947, 49.067332397 ], [ -122.321515362999946, 49.06733143000011 ], [ -122.321467607999949, 49.067331387000138 ], [ -122.321038701999925, 49.067268891000019 ], [ -122.320765001999973, 49.067228939000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "345932289", "BldgCostT": "224965372", "sL_LossRatio": "0.78162160741653", "sL_AssetLoss": "1674314", "sL_BldgLoss": "1308680", "sL_StrLoss": "580990", "sL_NStrLoss": "727690", "sL_ContLoss": "365634", "geom_point": "0101000020E61000002293B665BE945EC0A1B1FEE87E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.321031338999916, 49.057394057000081 ], [ -122.321116330999956, 49.057385763000049 ], [ -122.32159296499999, 49.057355592000064 ], [ -122.321913276999965, 49.057338736000105 ], [ -122.322285533999889, 49.057368287000031 ], [ -122.322529433999961, 49.05742240200005 ], [ -122.32288800399999, 49.057430997000068 ], [ -122.323252063999945, 49.05740928600008 ], [ -122.323295018999971, 49.057406387000107 ], [ -122.323688805999936, 49.057383767000012 ], [ -122.324084617999958, 49.05735562200006 ], [ -122.324159448000017, 49.057350299000113 ], [ -122.324574502999937, 49.057298997000082 ], [ -122.325112045999958, 49.057185195000059 ], [ -122.325339513999964, 49.057151796 ], [ -122.326126581999986, 49.056048826000087 ], [ -122.326664058999967, 49.055118363000162 ], [ -122.326696789999971, 49.055831676000096 ], [ -122.326732053999976, 49.056550034000068 ], [ -122.326770331999981, 49.057328863000144 ], [ -122.326808933999985, 49.058140620000088 ], [ -122.326836251999936, 49.05874915200009 ], [ -122.326843563999915, 49.058881932000091 ], [ -122.326892599999979, 49.060030289000075 ], [ -122.32689327099996, 49.060161021000084 ], [ -122.322475367999957, 49.060165772000076 ], [ -122.321680211999976, 49.060166778000031 ], [ -122.321598100999921, 49.060166906000049 ], [ -122.32100408699992, 49.060167649000022 ], [ -122.321074636999967, 49.06005371300008 ], [ -122.321077479999985, 49.060045824000021 ], [ -122.321122529999982, 49.059920464000101 ], [ -122.321136279999948, 49.059885663000067 ], [ -122.321066773999959, 49.059657280000167 ], [ -122.321004972999944, 49.059445117000116 ], [ -122.320939912000014, 49.05920607000013 ], [ -122.32092752899996, 49.059005656000075 ], [ -122.32090551899995, 49.058768571000023 ], [ -122.320881457999945, 49.058554045000101 ], [ -122.320835250999934, 49.058404458000062 ], [ -122.320807816999931, 49.058338714000072 ], [ -122.321031338999916, 49.057394057000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "415483417", "BldgCostT": "287016667", "sL_LossRatio": "0.876730450183534", "sL_AssetLoss": "1829365", "sL_BldgLoss": "1603860", "sL_StrLoss": "766130", "sL_NStrLoss": "837730", "sL_ContLoss": "225505", "geom_point": "0101000020E61000008B3CCE3C12955EC06C1DE24044874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330926712999954, 49.054976600000053 ], [ -122.332253212999916, 49.054951592000037 ], [ -122.33228210299994, 49.055714283000107 ], [ -122.332298092999949, 49.056501908000023 ], [ -122.331409813000022, 49.05657429500009 ], [ -122.33125330199999, 49.056615809000078 ], [ -122.33115341099996, 49.056754803000075 ], [ -122.331179579999983, 49.058767891000095 ], [ -122.327009931999982, 49.0587506070001 ], [ -122.326836251999936, 49.05874915200009 ], [ -122.326808933999985, 49.058140620000088 ], [ -122.326770331999981, 49.057328863000144 ], [ -122.326732053999976, 49.056550034000068 ], [ -122.326696789999971, 49.055831676000096 ], [ -122.326664058999967, 49.055118363000162 ], [ -122.326865595, 49.055113553000119 ], [ -122.32703689899995, 49.055110399000078 ], [ -122.327216518999975, 49.055053421000103 ], [ -122.329672755999965, 49.05500040000009 ], [ -122.330019832999966, 49.054993832000093 ], [ -122.330926712999954, 49.054976600000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "630143008", "BldgCostT": "429938459", "sL_LossRatio": "0.855078771759837", "sL_AssetLoss": "2286035", "sL_BldgLoss": "1954740", "sL_StrLoss": "869660", "sL_NStrLoss": "1085080", "sL_ContLoss": "331295", "geom_point": "0101000020E6100000F7C6B4FC61945EC002DEA8995E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315699292999966, 49.057854608000092 ], [ -122.315518004999916, 49.056790145000051 ], [ -122.315508791999918, 49.056736023000049 ], [ -122.315280650999938, 49.055396269000013 ], [ -122.316628420999976, 49.055362291000129 ], [ -122.318380188999967, 49.055308778000089 ], [ -122.319214003, 49.055283290000055 ], [ -122.321007593000033, 49.054872403000054 ], [ -122.321522906999988, 49.054845009000132 ], [ -122.321719473999948, 49.056479173000071 ], [ -122.321724687999946, 49.05652247400014 ], [ -122.32106868399994, 49.05655996100009 ], [ -122.321037935, 49.056712173000058 ], [ -122.320995096000019, 49.057281519000099 ], [ -122.321011186999982, 49.057312711000058 ], [ -122.321032517999981, 49.05736710500004 ], [ -122.321031338999916, 49.057394057000081 ], [ -122.320807816999931, 49.058338714000072 ], [ -122.320835250999934, 49.058404458000062 ], [ -122.320881457999945, 49.058554045000101 ], [ -122.32090551899995, 49.058768571000023 ], [ -122.32092752899996, 49.059005656000075 ], [ -122.320939912000014, 49.05920607000013 ], [ -122.321004972999944, 49.059445117000116 ], [ -122.321066773999959, 49.059657280000167 ], [ -122.321136279999948, 49.059885663000067 ], [ -122.321122529999982, 49.059920464000101 ], [ -122.321077479999985, 49.060045824000021 ], [ -122.321074636999967, 49.06005371300008 ], [ -122.32100408699992, 49.060167649000022 ], [ -122.316073047999936, 49.060171663000084 ], [ -122.31605679099998, 49.060048488000128 ], [ -122.315952763999917, 49.059410117000034 ], [ -122.315921685999925, 49.059219473000027 ], [ -122.315866165000017, 49.058878773000075 ], [ -122.315699292999966, 49.057854608000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112980300", "BldgCostT": "76034217", "sL_LossRatio": "0.803975417853305", "sL_AssetLoss": "787238", "sL_BldgLoss": "632920", "sL_StrLoss": "327360", "sL_NStrLoss": "305560", "sL_ContLoss": "154318", "geom_point": "0101000020E6100000CC92B55D13955EC05521485210884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.327506214999957, 49.06474620300007 ], [ -122.327056608999925, 49.064164693000137 ], [ -122.326984092999936, 49.063869194000027 ], [ -122.326974609999951, 49.063497378000143 ], [ -122.326943588999924, 49.062282196000055 ], [ -122.326926586999946, 49.061561296000093 ], [ -122.327070191999951, 49.061561696000062 ], [ -122.32712403599993, 49.061562089000063 ], [ -122.329223084999967, 49.061576701000085 ], [ -122.331880813999945, 49.061594507000052 ], [ -122.33190277199995, 49.06205320000003 ], [ -122.331915485, 49.062318700000041 ], [ -122.331973615999971, 49.062414397000062 ], [ -122.332224001999919, 49.062624012000057 ], [ -122.331822814999967, 49.062905115000056 ], [ -122.331610503999954, 49.063149389000053 ], [ -122.331195011999924, 49.064011386000047 ], [ -122.331157580999928, 49.064138997000107 ], [ -122.330595908999911, 49.064737304000062 ], [ -122.330070807999945, 49.064539994000022 ], [ -122.328839712, 49.064497888000098 ], [ -122.3284346, 49.064514699000078 ], [ -122.327961904999967, 49.064608481000043 ], [ -122.32762539399998, 49.064709712000074 ], [ -122.327506214999957, 49.06474620300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103349811", "BldgCostT": "67763190", "sL_LossRatio": "0.772407256972651", "sL_AssetLoss": "694284", "sL_BldgLoss": "536270", "sL_StrLoss": "281340", "sL_NStrLoss": "254930", "sL_ContLoss": "158014", "geom_point": "0101000020E6100000F1DD414746955EC02F9622F9CA874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33190277199995, 49.06205320000003 ], [ -122.331880813999945, 49.061594507000052 ], [ -122.329223084999967, 49.061576701000085 ], [ -122.32712403599993, 49.061562089000063 ], [ -122.327070191999951, 49.061561696000062 ], [ -122.326926586999946, 49.061561296000093 ], [ -122.32689327099996, 49.060161021000084 ], [ -122.32706261, 49.060165002000097 ], [ -122.327059278999982, 49.060034194000082 ], [ -122.33106695, 49.060040487 ], [ -122.337863495999969, 49.060050794000091 ], [ -122.337862789999974, 49.060182413000057 ], [ -122.337864824999883, 49.060234941000054 ], [ -122.337918294999938, 49.061616704000123 ], [ -122.33688609499994, 49.061586903000098 ], [ -122.332982612999942, 49.061592500000089 ], [ -122.332993160999962, 49.061879559000083 ], [ -122.333009607999884, 49.062327195000108 ], [ -122.332945201, 49.062380909000133 ], [ -122.332672586999976, 49.062449562000019 ], [ -122.332529116999979, 49.062485695000134 ], [ -122.332224001999919, 49.062624012000057 ], [ -122.331973615999971, 49.062414397000062 ], [ -122.331915485, 49.062318700000041 ], [ -122.33190277199995, 49.06205320000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101687916", "BldgCostT": "68976666", "sL_LossRatio": "0.774802064013149", "sL_AssetLoss": "890692", "sL_BldgLoss": "690110", "sL_StrLoss": "346406", "sL_NStrLoss": "343704", "sL_ContLoss": "200582", "geom_point": "0101000020E61000004F3AD37C7C955EC07FA280270C884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.331610503999954, 49.063149389000053 ], [ -122.331822814999967, 49.062905115000056 ], [ -122.332224001999919, 49.062624012000057 ], [ -122.332529116999979, 49.062485695000134 ], [ -122.332672586999976, 49.062449562000019 ], [ -122.332945201, 49.062380909000133 ], [ -122.333009607999884, 49.062327195000108 ], [ -122.332993160999962, 49.061879559000083 ], [ -122.332982612999942, 49.061592500000089 ], [ -122.33688609499994, 49.061586903000098 ], [ -122.337918294999938, 49.061616704000123 ], [ -122.337963815999942, 49.061617932000033 ], [ -122.338037199999988, 49.06161990099999 ], [ -122.339137696999956, 49.061633905000107 ], [ -122.339186908, 49.062454208000091 ], [ -122.339197478999964, 49.062823195000078 ], [ -122.339142892999945, 49.063187407000051 ], [ -122.339151553999898, 49.063696074000106 ], [ -122.339158269999942, 49.064092296000069 ], [ -122.339166493999969, 49.064576384000091 ], [ -122.338155085, 49.064560005000025 ], [ -122.338038805999958, 49.064558689000066 ], [ -122.338019492999976, 49.064076944000078 ], [ -122.338011461999912, 49.06387628800006 ], [ -122.338011107999975, 49.063867200000018 ], [ -122.336991883999971, 49.063861303000053 ], [ -122.335870195999959, 49.063854602000063 ], [ -122.335844616999978, 49.063083902000066 ], [ -122.335180696999984, 49.063053096000068 ], [ -122.334587396999908, 49.063025606000053 ], [ -122.333499798999981, 49.063020109000064 ], [ -122.333134710999971, 49.063086006000042 ], [ -122.332798923999988, 49.063231405000082 ], [ -122.332556303, 49.063444010000154 ], [ -122.3319706139999, 49.064833905000135 ], [ -122.331064199999929, 49.064839014000036 ], [ -122.330595908999911, 49.064737304000062 ], [ -122.331157580999928, 49.064138997000107 ], [ -122.331195011999924, 49.064011386000047 ], [ -122.331610503999954, 49.063149389000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78095333", "BldgCostT": "53123333", "sL_LossRatio": "0.801364762119191", "sL_AssetLoss": "577390", "sL_BldgLoss": "462700", "sL_StrLoss": "251760", "sL_NStrLoss": "210940", "sL_ContLoss": "114690", "geom_point": "0101000020E6100000824B8DF15D955EC04D412BEE47884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332913992999949, 49.066237291000043 ], [ -122.332909906999973, 49.065524099000122 ], [ -122.331547557999954, 49.065521129000025 ], [ -122.330939407999949, 49.065519811000115 ], [ -122.330489511999971, 49.065445902000064 ], [ -122.330105671999945, 49.06533089200007 ], [ -122.330144885999957, 49.065215009000084 ], [ -122.33017332499999, 49.06518492100011 ], [ -122.330595908999911, 49.064737304000062 ], [ -122.331064199999929, 49.064839014000036 ], [ -122.3319706139999, 49.064833905000135 ], [ -122.332556303, 49.063444010000154 ], [ -122.332798923999988, 49.063231405000082 ], [ -122.333134710999971, 49.063086006000042 ], [ -122.333499798999981, 49.063020109000064 ], [ -122.334587396999908, 49.063025606000053 ], [ -122.335180696999984, 49.063053096000068 ], [ -122.335844616999978, 49.063083902000066 ], [ -122.335870195999959, 49.063854602000063 ], [ -122.33590840299992, 49.064622210000039 ], [ -122.335951101999953, 49.065523287000111 ], [ -122.335981217999986, 49.066236504000102 ], [ -122.332913992999949, 49.066237291000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37113834", "BldgCostT": "22973334", "sL_LossRatio": "0.716106647187728", "sL_AssetLoss": "273800", "sL_BldgLoss": "196070", "sL_StrLoss": "101360", "sL_NStrLoss": "94710", "sL_ContLoss": "77730", "geom_point": "0101000020E6100000EF3F7CAAD4955EC0575A4E5B86884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.338942194999944, 49.066960413000025 ], [ -122.339921276999974, 49.066954998000092 ], [ -122.3403884089999, 49.066844697000079 ], [ -122.340656496999912, 49.066725796000071 ], [ -122.340788591999939, 49.066664489000054 ], [ -122.34106630699992, 49.06643958700009 ], [ -122.341272991999958, 49.066194300000049 ], [ -122.341338809999968, 49.065966606000096 ], [ -122.341392592999981, 49.065387006000051 ], [ -122.340325594999939, 49.065362398000019 ], [ -122.340266925999956, 49.064593203000065 ], [ -122.34069155099999, 49.064611959000061 ], [ -122.341614502999931, 49.064652715000094 ], [ -122.341776890999981, 49.064710508000061 ], [ -122.342152597999984, 49.064753892000056 ], [ -122.3426063859999, 49.064900991000044 ], [ -122.343018288999986, 49.065110604000061 ], [ -122.343285984999937, 49.065361396000135 ], [ -122.343437287999933, 49.065600143000019 ], [ -122.342781791999968, 49.066683174000055 ], [ -122.34280658199998, 49.066755332000035 ], [ -122.342892188999912, 49.067004464000092 ], [ -122.342670207999959, 49.067113511000088 ], [ -122.342370406999919, 49.067062426000092 ], [ -122.340937330999935, 49.066996116000048 ], [ -122.340305246999947, 49.067651625000103 ], [ -122.340305529999924, 49.06768080500008 ], [ -122.340315953999948, 49.068661802000044 ], [ -122.339831033999971, 49.069605017000136 ], [ -122.339788016999961, 49.06966009500011 ], [ -122.339769789999934, 49.069649695000102 ], [ -122.339672412999931, 49.069587626000057 ], [ -122.339267939999957, 49.069329727000103 ], [ -122.339423874999937, 49.069187574000054 ], [ -122.339810492999959, 49.0688353070001 ], [ -122.339212017999969, 49.06852640000006 ], [ -122.338994118999935, 49.068286399000058 ], [ -122.338954794999964, 49.067654087000072 ], [ -122.338942194999944, 49.066960413000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112168583", "BldgCostT": "76358333", "sL_LossRatio": "0.747727486970925", "sL_AssetLoss": "1485140", "sL_BldgLoss": "1110480", "sL_StrLoss": "518920", "sL_NStrLoss": "591560", "sL_ContLoss": "374660", "geom_point": "0101000020E6100000E5E933D2D8955EC0D6B019BFF4874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.340266925999956, 49.064593203000065 ], [ -122.340253887999964, 49.063887807000128 ], [ -122.340246868999913, 49.06374619700005 ], [ -122.340219389999973, 49.063194286000119 ], [ -122.339142892999945, 49.063187407000051 ], [ -122.339197478999964, 49.062823195000078 ], [ -122.339186908, 49.062454208000091 ], [ -122.339137696999956, 49.061633905000107 ], [ -122.338037199999988, 49.06161990099999 ], [ -122.337963815999942, 49.061617932000033 ], [ -122.337918294999938, 49.061616704000123 ], [ -122.337864824999883, 49.060234941000054 ], [ -122.337862789999974, 49.060182413000057 ], [ -122.337863495999969, 49.060050794000091 ], [ -122.337979791999942, 49.060051088000108 ], [ -122.337979114999925, 49.060181798000023 ], [ -122.338093550999972, 49.060183305000045 ], [ -122.342130900999948, 49.060236699000015 ], [ -122.342599804999935, 49.060242893000115 ], [ -122.343517189999915, 49.060148785000059 ], [ -122.344049942999945, 49.060008825000054 ], [ -122.344246653999974, 49.059957156000024 ], [ -122.344003864999934, 49.061017942000028 ], [ -122.343974984999988, 49.061017777000053 ], [ -122.343973220999928, 49.06115182800005 ], [ -122.343757109999942, 49.062096011000037 ], [ -122.343550136999937, 49.062094834000071 ], [ -122.34354596699994, 49.06241132700012 ], [ -122.34358343299999, 49.062434761000077 ], [ -122.343590122999927, 49.062878674000039 ], [ -122.343519717999953, 49.063266658000103 ], [ -122.343469418999959, 49.063863001000129 ], [ -122.343465343999924, 49.064083357000122 ], [ -122.343113199999934, 49.064087525000048 ], [ -122.343107484999948, 49.064521128000109 ], [ -122.343457207999961, 49.064523117000071 ], [ -122.343451788999928, 49.064815651000046 ], [ -122.343440834999967, 49.065409425000034 ], [ -122.343437287999933, 49.065600143000019 ], [ -122.343285984999937, 49.065361396000135 ], [ -122.343018288999986, 49.065110604000061 ], [ -122.3426063859999, 49.064900991000044 ], [ -122.342152597999984, 49.064753892000056 ], [ -122.341776890999981, 49.064710508000061 ], [ -122.341614502999931, 49.064652715000094 ], [ -122.34069155099999, 49.064611959000061 ], [ -122.340266925999956, 49.064593203000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163548001", "BldgCostT": "103860001", "sL_LossRatio": "0.787361872665248", "sL_AssetLoss": "727861", "sL_BldgLoss": "573090", "sL_StrLoss": "333660", "sL_NStrLoss": "239430", "sL_ContLoss": "154771", "geom_point": "0101000020E6100000F402E432CB965EC02CEAED4B8D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.356813808999945, 49.057622298000062 ], [ -122.356827836999955, 49.057621590000039 ], [ -122.356996505999945, 49.057613205000109 ], [ -122.357947185999976, 49.057266888000086 ], [ -122.358125496999918, 49.057209796000031 ], [ -122.358604325999977, 49.05712420600004 ], [ -122.35890290699993, 49.057119887000106 ], [ -122.359117545999965, 49.057119367000048 ], [ -122.359993716999924, 49.057117202000086 ], [ -122.359991386999951, 49.058137891000044 ], [ -122.359988422999976, 49.059442078000082 ], [ -122.359986643999974, 49.060237841000067 ], [ -122.360031655999961, 49.060309668000073 ], [ -122.360028922999931, 49.060397025000022 ], [ -122.359198575999955, 49.060391853000077 ], [ -122.358377344999894, 49.060386776000037 ], [ -122.357720313999948, 49.060382684000089 ], [ -122.357022246999946, 49.060378357000054 ], [ -122.356502110999912, 49.060375107000027 ], [ -122.355439991999972, 49.060368502000109 ], [ -122.355256021999935, 49.060366468000105 ], [ -122.355173919999913, 49.06036557900007 ], [ -122.354383002999953, 49.060356890000087 ], [ -122.354124790999919, 49.06033370100004 ], [ -122.353778251999955, 49.060329384000092 ], [ -122.351145791999969, 49.060296508000043 ], [ -122.351153052999976, 49.05976180100005 ], [ -122.351154686999976, 49.059641493000107 ], [ -122.351266387999956, 49.059403695000114 ], [ -122.351440890999967, 49.059220294000092 ], [ -122.352384595000018, 49.058603925000028 ], [ -122.35279359599997, 49.058336807000082 ], [ -122.353188636999974, 49.058079841000016 ], [ -122.353538979999911, 49.057851895000042 ], [ -122.353862597000017, 49.057738491000052 ], [ -122.354043014999931, 49.057701222000055 ], [ -122.354169983999952, 49.057674997000106 ], [ -122.354357648999937, 49.05766076599999 ], [ -122.354424683999952, 49.057655708000027 ], [ -122.354826281000015, 49.057658903000075 ], [ -122.354897682999962, 49.057659477000115 ], [ -122.355346352999931, 49.057663070000068 ], [ -122.35585276099998, 49.057667122000076 ], [ -122.356301009999939, 49.057670680000058 ], [ -122.356813808999945, 49.057622298000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154928584", "BldgCostT": "100218334", "sL_LossRatio": "0.77248819987745", "sL_AssetLoss": "956346", "sL_BldgLoss": "738766", "sL_StrLoss": "417137", "sL_NStrLoss": "321629", "sL_ContLoss": "217580", "geom_point": "0101000020E6100000C4438C95A0965EC0010EA14A4D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.348640415999952, 49.058722096000103 ], [ -122.349123822999914, 49.058493274000064 ], [ -122.34943596, 49.058549026000094 ], [ -122.349747783999973, 49.058439089000103 ], [ -122.350294600999987, 49.058163351000118 ], [ -122.35085996499997, 49.057530628000094 ], [ -122.35105610899997, 49.057311078000119 ], [ -122.35171201599999, 49.056333990000091 ], [ -122.352130091999982, 49.055660389000082 ], [ -122.352254820999988, 49.055462938000041 ], [ -122.352311309999919, 49.055373504000038 ], [ -122.352785600999965, 49.05494342000005 ], [ -122.353141896999958, 49.054725714000071 ], [ -122.353348710999981, 49.054601986000073 ], [ -122.353648718999949, 49.05448583900008 ], [ -122.353787493999945, 49.054432094000092 ], [ -122.35409903899999, 49.054363523000092 ], [ -122.35443351, 49.054289899000032 ], [ -122.354770589999973, 49.054231109000042 ], [ -122.35547600699999, 49.054256799000029 ], [ -122.357265294999948, 49.054437406000055 ], [ -122.357768811999932, 49.054507702000066 ], [ -122.358276618999952, 49.054575400000076 ], [ -122.358648719999948, 49.054734089000142 ], [ -122.358827205999916, 49.054936686000126 ], [ -122.358918492999962, 49.05520391600011 ], [ -122.358904481999915, 49.056926494000038 ], [ -122.35890290699993, 49.057119887000106 ], [ -122.358604325999977, 49.05712420600004 ], [ -122.358125496999918, 49.057209796000031 ], [ -122.357947185999976, 49.057266888000086 ], [ -122.356996505999945, 49.057613205000109 ], [ -122.356827836999955, 49.057621590000039 ], [ -122.356813808999945, 49.057622298000062 ], [ -122.356301009999939, 49.057670680000058 ], [ -122.35585276099998, 49.057667122000076 ], [ -122.355346352999931, 49.057663070000068 ], [ -122.354897682999962, 49.057659477000115 ], [ -122.354826281000015, 49.057658903000075 ], [ -122.354424683999952, 49.057655708000027 ], [ -122.354357648999937, 49.05766076599999 ], [ -122.354169983999952, 49.057674997000106 ], [ -122.354043014999931, 49.057701222000055 ], [ -122.353862597000017, 49.057738491000052 ], [ -122.353538979999911, 49.057851895000042 ], [ -122.353188636999974, 49.058079841000016 ], [ -122.35279359599997, 49.058336807000082 ], [ -122.352384595000018, 49.058603925000028 ], [ -122.351440890999967, 49.059220294000092 ], [ -122.351266387999956, 49.059403695000114 ], [ -122.351154686999976, 49.059641493000107 ], [ -122.351153052999976, 49.05976180100005 ], [ -122.351145791999969, 49.060296508000043 ], [ -122.350999765999958, 49.060294801000047 ], [ -122.349562905999946, 49.060278116000113 ], [ -122.349209795999911, 49.06027400100006 ], [ -122.346061998, 49.06007307400008 ], [ -122.346109471999966, 49.059467725000061 ], [ -122.34686572, 49.059269013000034 ], [ -122.347807738000014, 49.059021474000076 ], [ -122.347830507999973, 49.059015494000022 ], [ -122.348640415999952, 49.058722096000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84305644", "BldgCostT": "53631523", "sL_LossRatio": "0.742632433991771", "sL_AssetLoss": "658630", "sL_BldgLoss": "489120", "sL_StrLoss": "241670", "sL_NStrLoss": "247450", "sL_ContLoss": "169510", "geom_point": "0101000020E6100000E419FB92CD965EC0C4786A81FF864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.353046708999941, 49.054177004000103 ], [ -122.353299237999948, 49.054089527000016 ], [ -122.353821603999947, 49.053908602000057 ], [ -122.354096066999944, 49.053867032000099 ], [ -122.354555504999936, 49.053797431000106 ], [ -122.354652543999961, 49.053793213000027 ], [ -122.354713912999912, 49.053790523000067 ], [ -122.354986617999913, 49.053778656000077 ], [ -122.355383736999954, 49.053792112000096 ], [ -122.355492008999988, 49.053802763000135 ], [ -122.355573215000021, 49.053810731000112 ], [ -122.355613144999907, 49.053814641000052 ], [ -122.355823844999946, 49.053710602000102 ], [ -122.355463303999926, 49.053562207000063 ], [ -122.354828170999937, 49.053249553000086 ], [ -122.354796602999969, 49.053233983 ], [ -122.35441701399999, 49.053013788000101 ], [ -122.354340291999961, 49.052984857000105 ], [ -122.354004780999986, 49.052858232000077 ], [ -122.353986395999954, 49.05285130700004 ], [ -122.353985918999953, 49.052851151 ], [ -122.353623885999937, 49.052745199000093 ], [ -122.353553162999944, 49.052733101000072 ], [ -122.353229691999942, 49.052677802000055 ], [ -122.352984781999936, 49.052660392000121 ], [ -122.354148307999964, 49.052391600000064 ], [ -122.354492075999943, 49.052404195000044 ], [ -122.354509815999947, 49.052414092000085 ], [ -122.355103003999943, 49.052745879000021 ], [ -122.356033001999947, 49.053258 ], [ -122.356328907999952, 49.053322997000045 ], [ -122.357830102999941, 49.053460501000067 ], [ -122.358509390000023, 49.053522287000071 ], [ -122.358776407, 49.053485388000055 ], [ -122.358901296999989, 49.053340890000051 ], [ -122.358905860000021, 49.052419613000083 ], [ -122.358905995999976, 49.052387304000035 ], [ -122.358919796999928, 49.052387483000068 ], [ -122.360023906999956, 49.052403497000071 ], [ -122.360012537000017, 49.053109898000052 ], [ -122.359996839999923, 49.053941415000089 ], [ -122.35993128399997, 49.054027558000023 ], [ -122.359930851999962, 49.05412038300009 ], [ -122.35993260099994, 49.054238527000145 ], [ -122.359959953999962, 49.055552001000066 ], [ -122.359982348999921, 49.056590738000104 ], [ -122.35998353699992, 49.056644663000078 ], [ -122.359985054, 49.05671660900007 ], [ -122.359987, 49.05680653400001 ], [ -122.359993716999924, 49.057117202000086 ], [ -122.359117545999965, 49.057119367000048 ], [ -122.35890290699993, 49.057119887000106 ], [ -122.358904481999915, 49.056926494000038 ], [ -122.358918492999962, 49.05520391600011 ], [ -122.358827205999916, 49.054936686000126 ], [ -122.358648719999948, 49.054734089000142 ], [ -122.358276618999952, 49.054575400000076 ], [ -122.357768811999932, 49.054507702000066 ], [ -122.357265294999948, 49.054437406000055 ], [ -122.35547600699999, 49.054256799000029 ], [ -122.354770589999973, 49.054231109000042 ], [ -122.35443351, 49.054289899000032 ], [ -122.35409903899999, 49.054363523000092 ], [ -122.353787493999945, 49.054432094000092 ], [ -122.353648718999949, 49.05448583900008 ], [ -122.353348710999981, 49.054601986000073 ], [ -122.353141896999958, 49.054725714000071 ], [ -122.352785600999965, 49.05494342000005 ], [ -122.352311309999919, 49.055373504000038 ], [ -122.352254820999988, 49.055462938000041 ], [ -122.352130091999982, 49.055660389000082 ], [ -122.35171201599999, 49.056333990000091 ], [ -122.35105610899997, 49.057311078000119 ], [ -122.35085996499997, 49.057530628000094 ], [ -122.350294600999987, 49.058163351000118 ], [ -122.349747783999973, 49.058439089000103 ], [ -122.34943596, 49.058549026000094 ], [ -122.349123822999914, 49.058493274000064 ], [ -122.349201700999942, 49.058456398000061 ], [ -122.349635692, 49.058157396000048 ], [ -122.349781595999985, 49.058007658000079 ], [ -122.3499928199999, 49.057790897000125 ], [ -122.350224853999961, 49.0574386810001 ], [ -122.350230392, 49.057430303000118 ], [ -122.3507524, 49.056639614000098 ], [ -122.351020646000023, 49.056233294000116 ], [ -122.351298895999903, 49.055811768000076 ], [ -122.351376745000024, 49.055693841000092 ], [ -122.351677388999946, 49.055238396000057 ], [ -122.3520088, 49.054867401000138 ], [ -122.352359413, 49.054566500000135 ], [ -122.352883672999951, 49.05426938600008 ], [ -122.353046708999941, 49.054177004000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145224250", "BldgCostT": "90700000", "sL_LossRatio": "0.722893016165911", "sL_AssetLoss": "1196592", "sL_BldgLoss": "865008", "sL_StrLoss": "410208", "sL_NStrLoss": "454800", "sL_ContLoss": "331584", "geom_point": "0101000020E6100000084C8ED83A975EC01C905AB4C2864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.360012537000017, 49.053109898000052 ], [ -122.360023906999956, 49.052403497000071 ], [ -122.358919796999928, 49.052387483000068 ], [ -122.358905995999976, 49.052387304000035 ], [ -122.358905860000021, 49.052419613000083 ], [ -122.358901296999989, 49.053340890000051 ], [ -122.358776407, 49.053485388000055 ], [ -122.358509390000023, 49.053522287000071 ], [ -122.357830102999941, 49.053460501000067 ], [ -122.356328907999952, 49.053322997000045 ], [ -122.356033001999947, 49.053258 ], [ -122.355103003999943, 49.052745879000021 ], [ -122.354509815999947, 49.052414092000085 ], [ -122.354492075999943, 49.052404195000044 ], [ -122.354148307999964, 49.052391600000064 ], [ -122.355699681999965, 49.051733208000044 ], [ -122.355763747999958, 49.051708135000055 ], [ -122.356066864999917, 49.051705710000078 ], [ -122.356145239999947, 49.051705084000069 ], [ -122.356427306999976, 49.051702840000132 ], [ -122.357583391999981, 49.05152911900008 ], [ -122.360052690999979, 49.050984696000029 ], [ -122.360146694999983, 49.050810520000013 ], [ -122.360153852999971, 49.049475863000019 ], [ -122.360199629999968, 49.049267397000079 ], [ -122.360557771999964, 49.049509867000033 ], [ -122.361117476999979, 49.049753201000073 ], [ -122.364560661999974, 49.051250120000098 ], [ -122.365293880999971, 49.051569227000115 ], [ -122.368248738999938, 49.052855188000088 ], [ -122.36895259, 49.053116523000085 ], [ -122.369466809999949, 49.053307441000079 ], [ -122.369739773, 49.05343927600007 ], [ -122.369982846999932, 49.05360345600009 ], [ -122.370254290999924, 49.053912808000057 ], [ -122.370384712999922, 49.054416632000077 ], [ -122.370386949999926, 49.054470030000104 ], [ -122.370415908999973, 49.05515778900007 ], [ -122.370417312999976, 49.055245273000061 ], [ -122.366533889, 49.054984119000096 ], [ -122.366384433999912, 49.054967219000048 ], [ -122.366071603999913, 49.054931863000057 ], [ -122.365113668999967, 49.05482359800007 ], [ -122.364526044999963, 49.054757169000077 ], [ -122.360727434999959, 49.054327695000019 ], [ -122.360066917, 49.054253020000054 ], [ -122.35993260099994, 49.054238527000145 ], [ -122.359930851999962, 49.05412038300009 ], [ -122.35993128399997, 49.054027558000023 ], [ -122.359996839999923, 49.053941415000089 ], [ -122.360012537000017, 49.053109898000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "292228219", "BldgCostT": "196180412", "sL_LossRatio": "0.786319903947362", "sL_AssetLoss": "1890630", "sL_BldgLoss": "1486640", "sL_StrLoss": "677060", "sL_NStrLoss": "809580", "sL_ContLoss": "403990", "geom_point": "0101000020E6100000EADC7A6E9D965EC0B2EF58A63E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.35120369, 49.048059097000134 ], [ -122.350491090999952, 49.047987099000046 ], [ -122.348787103999982, 49.047996814000022 ], [ -122.348730915, 49.048053854000024 ], [ -122.348434785999984, 49.048354408000058 ], [ -122.347559492999906, 49.049555210000037 ], [ -122.347274506999966, 49.050066499000096 ], [ -122.34721928499998, 49.05010699000011 ], [ -122.347209544999927, 49.050114285000035 ], [ -122.347151020999931, 49.05015790200008 ], [ -122.346657992999894, 49.050199708000044 ], [ -122.346468680999962, 49.050205000000105 ], [ -122.346196785999965, 49.050148899000128 ], [ -122.346019303999938, 49.050056298000065 ], [ -122.345902606, 49.049922491000146 ], [ -122.345885292999967, 49.049270080000028 ], [ -122.346075567999947, 49.046546882000037 ], [ -122.346088413999951, 49.046543738000054 ], [ -122.347128556999976, 49.046290638000073 ], [ -122.34866277499998, 49.046043375000067 ], [ -122.348721921999953, 49.046033827000059 ], [ -122.34879626299994, 49.046028617000026 ], [ -122.348897028999957, 49.0460215640001 ], [ -122.34967524899993, 49.045967097000123 ], [ -122.350579252999964, 49.04595276600007 ], [ -122.351087910999965, 49.045869093000135 ], [ -122.352276201999942, 49.045893270000086 ], [ -122.353161593000024, 49.04602972 ], [ -122.353700484999962, 49.046223817000062 ], [ -122.354894150999954, 49.046739426000059 ], [ -122.359316949999965, 49.048666361000123 ], [ -122.359697725, 49.048832228000052 ], [ -122.360033092999984, 49.048978337000044 ], [ -122.360199629999968, 49.049267397000079 ], [ -122.360153852999971, 49.049475863000019 ], [ -122.360146694999983, 49.050810520000013 ], [ -122.360052690999979, 49.050984696000029 ], [ -122.357583391999981, 49.05152911900008 ], [ -122.356427306999976, 49.051702840000132 ], [ -122.356145239999947, 49.051705084000069 ], [ -122.356066864999917, 49.051705710000078 ], [ -122.355763747999958, 49.051708135000055 ], [ -122.355699681999965, 49.051733208000044 ], [ -122.354148307999964, 49.052391600000064 ], [ -122.352984781999936, 49.052660392000121 ], [ -122.352979829999967, 49.052521513000087 ], [ -122.352927800999922, 49.051062897000051 ], [ -122.352846607999979, 49.048953401000098 ], [ -122.352801595999921, 49.048654310000074 ], [ -122.352585510999972, 49.04846219600006 ], [ -122.352289897999967, 49.048252914000031 ], [ -122.35182398099991, 49.048122602000078 ], [ -122.35120369, 49.048059097000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58387583", "BldgCostT": "38588333", "sL_LossRatio": "0.809697713671935", "sL_AssetLoss": "325850", "sL_BldgLoss": "263840", "sL_StrLoss": "147850", "sL_NStrLoss": "115990", "sL_ContLoss": "62010", "geom_point": "0101000020E61000000F3434D873965EC0485F94E25B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.351433904999922, 49.049173098000054 ], [ -122.351182992999895, 49.049110509000094 ], [ -122.350306394, 49.04915730800009 ], [ -122.349298907999966, 49.049671106000019 ], [ -122.349151575999898, 49.049665192000134 ], [ -122.348217810999969, 49.049621682000073 ], [ -122.347559492999906, 49.049555210000037 ], [ -122.348434785999984, 49.048354408000058 ], [ -122.348730915, 49.048053854000024 ], [ -122.348787103999982, 49.047996814000022 ], [ -122.350491090999952, 49.047987099000046 ], [ -122.35120369, 49.048059097000134 ], [ -122.35182398099991, 49.048122602000078 ], [ -122.352289897999967, 49.048252914000031 ], [ -122.352585510999972, 49.04846219600006 ], [ -122.352801595999921, 49.048654310000074 ], [ -122.352846607999979, 49.048953401000098 ], [ -122.352927800999922, 49.051062897000051 ], [ -122.3517303799999, 49.051065484000056 ], [ -122.351761712999917, 49.051802105000014 ], [ -122.351734200999914, 49.052031102000065 ], [ -122.351651116999975, 49.05216619600003 ], [ -122.350573116999954, 49.052216089000126 ], [ -122.350389413999906, 49.052133201000117 ], [ -122.350262488999988, 49.051989218000095 ], [ -122.350389384999943, 49.050106693000082 ], [ -122.350535517999944, 49.049953887000072 ], [ -122.350730893999938, 49.049851387000068 ], [ -122.351672987999947, 49.049841090000086 ], [ -122.351656615999943, 49.049439403000065 ], [ -122.351579199999946, 49.049257402000087 ], [ -122.351433904999922, 49.049173098000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117084772", "BldgCostT": "74284158", "sL_LossRatio": "0.776122589056707", "sL_AssetLoss": "608994", "sL_BldgLoss": "472654", "sL_StrLoss": "270084", "sL_NStrLoss": "202570", "sL_ContLoss": "136340", "geom_point": "0101000020E6100000C0EB33673D965EC054DBA03878864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.344643909999917, 49.052015207000103 ], [ -122.34420729299994, 49.051999478000077 ], [ -122.344192702999948, 49.051313909000015 ], [ -122.344145688999944, 49.050691105000048 ], [ -122.344081490999912, 49.050079499000105 ], [ -122.344018294999969, 49.049455391000066 ], [ -122.344014035999976, 49.049367570000101 ], [ -122.34391829899999, 49.047398402000042 ], [ -122.34385319099998, 49.047322213000051 ], [ -122.343762794999961, 49.04721910100006 ], [ -122.344840601999948, 49.04682130100008 ], [ -122.344917218999967, 49.046925701000127 ], [ -122.346075567999947, 49.046546882000037 ], [ -122.345885292999967, 49.049270080000028 ], [ -122.345902606, 49.049922491000146 ], [ -122.346019303999938, 49.050056298000065 ], [ -122.346196785999965, 49.050148899000128 ], [ -122.346468680999962, 49.050205000000105 ], [ -122.346657992999894, 49.050199708000044 ], [ -122.347151020999931, 49.05015790200008 ], [ -122.347209544999927, 49.050114285000035 ], [ -122.34721928499998, 49.05010699000011 ], [ -122.347274506999966, 49.050066499000096 ], [ -122.347559492999906, 49.049555210000037 ], [ -122.348217810999969, 49.049621682000073 ], [ -122.349151575999898, 49.049665192000134 ], [ -122.349298907999966, 49.049671106000019 ], [ -122.350306394, 49.04915730800009 ], [ -122.351182992999895, 49.049110509000094 ], [ -122.351433904999922, 49.049173098000054 ], [ -122.351579199999946, 49.049257402000087 ], [ -122.351656615999943, 49.049439403000065 ], [ -122.351672987999947, 49.049841090000086 ], [ -122.350730893999938, 49.049851387000068 ], [ -122.350535517999944, 49.049953887000072 ], [ -122.350389384999943, 49.050106693000082 ], [ -122.350262488999988, 49.051989218000095 ], [ -122.350389413999906, 49.052133201000117 ], [ -122.350573116999954, 49.052216089000126 ], [ -122.351651116999975, 49.05216619600003 ], [ -122.351734200999914, 49.052031102000065 ], [ -122.351761712999917, 49.051802105000014 ], [ -122.3517303799999, 49.051065484000056 ], [ -122.352927800999922, 49.051062897000051 ], [ -122.352979829999967, 49.052521513000087 ], [ -122.352984781999936, 49.052660392000121 ], [ -122.351784466999959, 49.052666849000076 ], [ -122.350990418999956, 49.052671097000015 ], [ -122.349183432999951, 49.05267918400007 ], [ -122.349046807999912, 49.052679804000071 ], [ -122.348930378999952, 49.052680386000084 ], [ -122.348402356999927, 49.05270695500009 ], [ -122.347700986999925, 49.052742188000074 ], [ -122.346522286, 49.052767897000138 ], [ -122.346207503999949, 49.052716591000042 ], [ -122.34590978199995, 49.05258659800004 ], [ -122.345617403999981, 49.052337791000078 ], [ -122.345441398999967, 49.052191108000123 ], [ -122.345205869999916, 49.052089395000088 ], [ -122.34489484, 49.052030840000093 ], [ -122.344855302999974, 49.052023404000053 ], [ -122.344643909999917, 49.052015207000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170544917", "BldgCostT": "107566667", "sL_LossRatio": "0.739561618372594", "sL_AssetLoss": "1381536", "sL_BldgLoss": "1021731", "sL_StrLoss": "512833", "sL_NStrLoss": "508898", "sL_ContLoss": "359805", "geom_point": "0101000020E61000005CB9303536965EC0F0A6195A36874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.337979114999925, 49.060181798000023 ], [ -122.337979791999942, 49.060051088000108 ], [ -122.337863495999969, 49.060050794000091 ], [ -122.337872487999917, 49.058665499000078 ], [ -122.337990413999989, 49.058680291000037 ], [ -122.338127533999938, 49.058696177000044 ], [ -122.339269172999977, 49.058828500000111 ], [ -122.340324623999948, 49.058842005000081 ], [ -122.341405502999976, 49.05886080100008 ], [ -122.342467592999952, 49.05887621400008 ], [ -122.343526899999958, 49.058891609000092 ], [ -122.343521800999895, 49.05866058600003 ], [ -122.343600282999915, 49.058479385000055 ], [ -122.343904226999967, 49.05782372600008 ], [ -122.343908420999981, 49.057814706000102 ], [ -122.343894261999978, 49.057644517000043 ], [ -122.343873217999914, 49.057391601000127 ], [ -122.343844009999955, 49.056595499000117 ], [ -122.343758101999924, 49.055736202000055 ], [ -122.343709672999964, 49.05499259500008 ], [ -122.344845584999959, 49.054938407000101 ], [ -122.345145807999984, 49.054949491000073 ], [ -122.346000200999939, 49.054872198000098 ], [ -122.346160218999941, 49.054803800000109 ], [ -122.346154191999986, 49.053658705000025 ], [ -122.346198410999961, 49.053478108000064 ], [ -122.346207503999949, 49.052716591000042 ], [ -122.346522286, 49.052767897000138 ], [ -122.347700986999925, 49.052742188000074 ], [ -122.348402356999927, 49.05270695500009 ], [ -122.348930378999952, 49.052680386000084 ], [ -122.349046807999912, 49.052679804000071 ], [ -122.349183432999951, 49.05267918400007 ], [ -122.350990418999956, 49.052671097000015 ], [ -122.351784466999959, 49.052666849000076 ], [ -122.352984781999936, 49.052660392000121 ], [ -122.353229691999942, 49.052677802000055 ], [ -122.353553162999944, 49.052733101000072 ], [ -122.353623885999937, 49.052745199000093 ], [ -122.353985918999953, 49.052851151 ], [ -122.353986395999954, 49.05285130700004 ], [ -122.354004780999986, 49.052858232000077 ], [ -122.354340291999961, 49.052984857000105 ], [ -122.35441701399999, 49.053013788000101 ], [ -122.354796602999969, 49.053233983 ], [ -122.354828170999937, 49.053249553000086 ], [ -122.355463303999926, 49.053562207000063 ], [ -122.355823844999946, 49.053710602000102 ], [ -122.355613144999907, 49.053814641000052 ], [ -122.355573215000021, 49.053810731000112 ], [ -122.355492008999988, 49.053802763000135 ], [ -122.355383736999954, 49.053792112000096 ], [ -122.354986617999913, 49.053778656000077 ], [ -122.354713912999912, 49.053790523000067 ], [ -122.354652543999961, 49.053793213000027 ], [ -122.354555504999936, 49.053797431000106 ], [ -122.354096066999944, 49.053867032000099 ], [ -122.353821603999947, 49.053908602000057 ], [ -122.353299237999948, 49.054089527000016 ], [ -122.353046708999941, 49.054177004000103 ], [ -122.352883672999951, 49.05426938600008 ], [ -122.352359413, 49.054566500000135 ], [ -122.3520088, 49.054867401000138 ], [ -122.351677388999946, 49.055238396000057 ], [ -122.351376745000024, 49.055693841000092 ], [ -122.351298895999903, 49.055811768000076 ], [ -122.351020646000023, 49.056233294000116 ], [ -122.3507524, 49.056639614000098 ], [ -122.350230392, 49.057430303000118 ], [ -122.350224853999961, 49.0574386810001 ], [ -122.3499928199999, 49.057790897000125 ], [ -122.349781595999985, 49.058007658000079 ], [ -122.349635692, 49.058157396000048 ], [ -122.349201700999942, 49.058456398000061 ], [ -122.349123822999914, 49.058493274000064 ], [ -122.348640415999952, 49.058722096000103 ], [ -122.347830507999973, 49.059015494000022 ], [ -122.347807738000014, 49.059021474000076 ], [ -122.34686572, 49.059269013000034 ], [ -122.346109471999966, 49.059467725000061 ], [ -122.346113942999978, 49.05941070700009 ], [ -122.346049394999923, 49.059410341000088 ], [ -122.346048429999925, 49.05948376400007 ], [ -122.345316593999939, 49.059676055000068 ], [ -122.344813986999981, 49.059673203000088 ], [ -122.344812208999883, 49.059808579000013 ], [ -122.344283623999956, 49.059947457000071 ], [ -122.344246653999974, 49.059957156000024 ], [ -122.344049942999945, 49.060008825000054 ], [ -122.343517189999915, 49.060148785000059 ], [ -122.342599804999935, 49.060242893000115 ], [ -122.342130900999948, 49.060236699000015 ], [ -122.338093550999972, 49.060183305000045 ], [ -122.337979114999925, 49.060181798000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86113833", "BldgCostT": "51752348", "sL_LossRatio": "0.686061744633526", "sL_AssetLoss": "757993", "sL_BldgLoss": "520030", "sL_StrLoss": "251020", "sL_NStrLoss": "269010", "sL_ContLoss": "237963", "geom_point": "0101000020E61000005D71FDFD1A965EC083BBA394CA854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.342648078999929, 49.047632699000047 ], [ -122.34248690599999, 49.045852210000092 ], [ -122.343878298999968, 49.045869008000054 ], [ -122.344043586999945, 49.042714802 ], [ -122.345410093999959, 49.043116597000072 ], [ -122.34639697599999, 49.043406202 ], [ -122.346754596000011, 49.043591487000093 ], [ -122.347813098999936, 49.04413678600006 ], [ -122.347900413000033, 49.044331787000104 ], [ -122.347796493999965, 49.045920283000029 ], [ -122.348669101000013, 49.04593708000003 ], [ -122.34871169499999, 49.045937908000084 ], [ -122.350321795, 49.045816895000016 ], [ -122.350765984999967, 49.045822082000093 ], [ -122.351087910999965, 49.045869093000135 ], [ -122.350579252999964, 49.04595276600007 ], [ -122.34967524899993, 49.045967097000123 ], [ -122.348897028999957, 49.0460215640001 ], [ -122.34879626299994, 49.046028617000026 ], [ -122.348721921999953, 49.046033827000059 ], [ -122.34866277499998, 49.046043375000067 ], [ -122.347128556999976, 49.046290638000073 ], [ -122.346088413999951, 49.046543738000054 ], [ -122.346075567999947, 49.046546882000037 ], [ -122.344917218999967, 49.046925701000127 ], [ -122.344840601999948, 49.04682130100008 ], [ -122.343762794999961, 49.04721910100006 ], [ -122.34385319099998, 49.047322213000051 ], [ -122.342665315, 49.047763083000056 ], [ -122.342648078999929, 49.047632699000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110470935", "BldgCostT": "68657853", "sL_LossRatio": "0.708644498046114", "sL_AssetLoss": "949390", "sL_BldgLoss": "672780", "sL_StrLoss": "309150", "sL_NStrLoss": "363630", "sL_ContLoss": "276610", "geom_point": "0101000020E6100000898FCB8FEA955EC0A1081D326D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.34257488399993, 49.044311798000059 ], [ -122.34262330899999, 49.04346878899999 ], [ -122.342675817999947, 49.042573599000036 ], [ -122.33833050399997, 49.042511107000031 ], [ -122.338276490999959, 49.043390909000067 ], [ -122.338219278999986, 49.044240853000083 ], [ -122.337088008999942, 49.04422210000007 ], [ -122.337168311999974, 49.042383086 ], [ -122.33718143899992, 49.042059925000011 ], [ -122.337200609999954, 49.041588106000134 ], [ -122.337096897999913, 49.041585501000029 ], [ -122.337154206, 49.040438031000065 ], [ -122.337185913999974, 49.03984321800003 ], [ -122.337276225999958, 49.0398426940001 ], [ -122.337289614000014, 49.039497183000059 ], [ -122.337293539999976, 49.039396123000074 ], [ -122.337296286999987, 49.039349319000124 ], [ -122.33720383499994, 49.0393449580001 ], [ -122.33720693699992, 49.039279590000056 ], [ -122.33726278200001, 49.039212977000055 ], [ -122.337313068999933, 49.038342951000061 ], [ -122.337323321999961, 49.038165780000135 ], [ -122.337327555999977, 49.038092818000038 ], [ -122.3373314, 49.037991989000069 ], [ -122.340913024999949, 49.039847742000092 ], [ -122.341245839999971, 49.040019115000099 ], [ -122.342934988999943, 49.04088896300005 ], [ -122.34397938599993, 49.041426740000084 ], [ -122.345377719999988, 49.042146742000092 ], [ -122.34945465599999, 49.044245689000071 ], [ -122.35010358199996, 49.044579717000083 ], [ -122.350416970000012, 49.04474104400002 ], [ -122.350989507999941, 49.045011020000096 ], [ -122.351644025999974, 49.045319650000117 ], [ -122.351986945999954, 49.045481371000015 ], [ -122.352714795999987, 49.045795470000066 ], [ -122.353700484999962, 49.046223817000062 ], [ -122.353161593000024, 49.04602972 ], [ -122.352276201999942, 49.045893270000086 ], [ -122.351087910999965, 49.045869093000135 ], [ -122.350765984999967, 49.045822082000093 ], [ -122.350321795, 49.045816895000016 ], [ -122.34871169499999, 49.045937908000084 ], [ -122.348669101000013, 49.04593708000003 ], [ -122.347796493999965, 49.045920283000029 ], [ -122.347900413000033, 49.044331787000104 ], [ -122.347813098999936, 49.04413678600006 ], [ -122.346754596000011, 49.043591487000093 ], [ -122.34639697599999, 49.043406202 ], [ -122.345410093999959, 49.043116597000072 ], [ -122.344043586999945, 49.042714802 ], [ -122.343878298999968, 49.045869008000054 ], [ -122.34248690599999, 49.045852210000092 ], [ -122.342530905999965, 49.045046903000078 ], [ -122.34257488399993, 49.044311798000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185753802", "BldgCostT": "114262718", "sL_LossRatio": "0.743476878240428", "sL_AssetLoss": "993696", "sL_BldgLoss": "738790", "sL_StrLoss": "390210", "sL_NStrLoss": "348580", "sL_ContLoss": "254906", "geom_point": "0101000020E6100000635F810127965EC0A16669232E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.352714795999987, 49.045795470000066 ], [ -122.351986945999954, 49.045481371000015 ], [ -122.351644025999974, 49.045319650000117 ], [ -122.350989507999941, 49.045011020000096 ], [ -122.350416970000012, 49.04474104400002 ], [ -122.35010358199996, 49.044579717000083 ], [ -122.34945465599999, 49.044245689000071 ], [ -122.345377719999988, 49.042146742000092 ], [ -122.34397938599993, 49.041426740000084 ], [ -122.342934988999943, 49.04088896300005 ], [ -122.341245839999971, 49.040019115000099 ], [ -122.340913024999949, 49.039847742000092 ], [ -122.3373314, 49.037991989000069 ], [ -122.337370252999946, 49.037427139000094 ], [ -122.337379226999971, 49.037266302000056 ], [ -122.337405190999931, 49.036798799000067 ], [ -122.337436150999977, 49.03624029500002 ], [ -122.337437678999919, 49.03621446800004 ], [ -122.337467851999975, 49.035697782000042 ], [ -122.337469082999945, 49.035647328000039 ], [ -122.337794306999967, 49.035668352000108 ], [ -122.337880718999941, 49.035700138000053 ], [ -122.338344977999924, 49.035737838000067 ], [ -122.33866626799994, 49.03576390900006 ], [ -122.339009769999976, 49.035885209000106 ], [ -122.339324, 49.035996153000063 ], [ -122.33937562599999, 49.036014396000027 ], [ -122.339393668999918, 49.036026533000047 ], [ -122.339660818999988, 49.036206368000116 ], [ -122.340708557999974, 49.036911695000171 ], [ -122.341495824999967, 49.037441656000084 ], [ -122.341903557999942, 49.037703457000056 ], [ -122.342704291999965, 49.038217585 ], [ -122.342756246999897, 49.038239973000117 ], [ -122.343097257999887, 49.03838693700007 ], [ -122.345873978999961, 49.038439135000068 ], [ -122.34692157399995, 49.038458606000063 ], [ -122.34776470499996, 49.038469298000102 ], [ -122.348454704999966, 49.038479219000038 ], [ -122.351396592999933, 49.038517983000055 ], [ -122.3513707379999, 49.039320319000069 ], [ -122.351360745999898, 49.039622897000058 ], [ -122.351322877999962, 49.040857601000063 ], [ -122.351297752999969, 49.041755487000032 ], [ -122.351271719999929, 49.042769695000068 ], [ -122.351256271999887, 49.043368674000099 ], [ -122.351233840999967, 49.044039511000086 ], [ -122.351345056999918, 49.044331760000041 ], [ -122.35148793499999, 49.044463735000065 ], [ -122.351740404999987, 49.044612135000072 ], [ -122.353586644999936, 49.045376879000074 ], [ -122.354741688000018, 49.045855315000033 ], [ -122.355133143999964, 49.045870565000016 ], [ -122.35528042299994, 49.045876311000036 ], [ -122.356540945999939, 49.045886644000085 ], [ -122.356576811999986, 49.046092514000065 ], [ -122.356378649999968, 49.046265174000062 ], [ -122.355877810999942, 49.046424946000059 ], [ -122.35558172099995, 49.04651939200005 ], [ -122.354894150999954, 49.046739426000059 ], [ -122.353700484999962, 49.046223817000062 ], [ -122.352714795999987, 49.045795470000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67381583", "BldgCostT": "41633333", "sL_LossRatio": "0.728858476469488", "sL_AssetLoss": "475829", "sL_BldgLoss": "346812", "sL_StrLoss": "170472", "sL_NStrLoss": "176340", "sL_ContLoss": "129017", "geom_point": "0101000020E610000011047E4357965EC01FA3E13900844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.339324, 49.035996153000063 ], [ -122.339009769999976, 49.035885209000106 ], [ -122.33866626799994, 49.03576390900006 ], [ -122.338344977999924, 49.035737838000067 ], [ -122.337880718999941, 49.035700138000053 ], [ -122.337794306999967, 49.035668352000108 ], [ -122.337469082999945, 49.035647328000039 ], [ -122.337472065, 49.035602996000122 ], [ -122.337520726999955, 49.034885513000091 ], [ -122.33752349, 49.034847594000063 ], [ -122.337543182999937, 49.034577299000027 ], [ -122.337582619999949, 49.034037561000034 ], [ -122.337610835999925, 49.033650799000085 ], [ -122.337668550999965, 49.032859665000075 ], [ -122.337681690999943, 49.032679746000099 ], [ -122.337771692000018, 49.03144669900005 ], [ -122.337598750999987, 49.0313795550001 ], [ -122.336427316999945, 49.030924808000123 ], [ -122.336428593999955, 49.030525394000094 ], [ -122.336556902999931, 49.030180891000114 ], [ -122.336857203999955, 49.029717887000075 ], [ -122.337578396999959, 49.028980690000068 ], [ -122.33771291299999, 49.028660787000035 ], [ -122.33764842799998, 49.026670581000062 ], [ -122.337635942999952, 49.026284033000088 ], [ -122.337569207999962, 49.024223592000055 ], [ -122.337552407999965, 49.023704993000059 ], [ -122.34756126900001, 49.023868120000031 ], [ -122.348600578999964, 49.023885009000068 ], [ -122.348874001999931, 49.023889470000043 ], [ -122.34901074, 49.02389167700008 ], [ -122.351595633999978, 49.023933621000076 ], [ -122.352033171999892, 49.023940707000079 ], [ -122.355236491999946, 49.02399259200012 ], [ -122.35854706399999, 49.025170401000075 ], [ -122.358569183, 49.025178274000098 ], [ -122.359956949999983, 49.025671954000067 ], [ -122.360124846999966, 49.025921051000047 ], [ -122.360120077999937, 49.026492673000028 ], [ -122.360109868, 49.027724474000117 ], [ -122.360098998999916, 49.029028814000114 ], [ -122.360090075999935, 49.030099319000058 ], [ -122.360079492999944, 49.031371835000094 ], [ -122.360078632999915, 49.03299016600009 ], [ -122.360077840999949, 49.034434900000072 ], [ -122.360077592999943, 49.034938618000105 ], [ -122.36007718399992, 49.035667350000018 ], [ -122.360077077999918, 49.035901293000038 ], [ -122.360076691999922, 49.036647830000057 ], [ -122.36007615599999, 49.037592216000107 ], [ -122.36007585399993, 49.03814099100007 ], [ -122.360075855, 49.038194972000056 ], [ -122.360075659999893, 49.03853676500011 ], [ -122.36007562099995, 49.038638716000101 ], [ -122.359285908999979, 49.038630464000086 ], [ -122.35754450599994, 49.038612302000104 ], [ -122.355516354999949, 49.038572325000111 ], [ -122.353703165999931, 49.038547699000041 ], [ -122.351396592999933, 49.038517983000055 ], [ -122.348454704999966, 49.038479219000038 ], [ -122.34776470499996, 49.038469298000102 ], [ -122.34692157399995, 49.038458606000063 ], [ -122.345873978999961, 49.038439135000068 ], [ -122.343097257999887, 49.03838693700007 ], [ -122.342756246999897, 49.038239973000117 ], [ -122.342704291999965, 49.038217585 ], [ -122.341903557999942, 49.037703457000056 ], [ -122.341495824999967, 49.037441656000084 ], [ -122.340708557999974, 49.036911695000171 ], [ -122.339660818999988, 49.036206368000116 ], [ -122.339393668999918, 49.036026533000047 ], [ -122.33937562599999, 49.036014396000027 ], [ -122.339324, 49.035996153000063 ] ], [ [ -122.346260660999945, 49.036169736000055 ], [ -122.346305671999929, 49.035595421000103 ], [ -122.346238273000012, 49.035593126000045 ], [ -122.346290051999944, 49.03493247100009 ], [ -122.345086874999964, 49.034891497000054 ], [ -122.345111522999957, 49.034577099000032 ], [ -122.343196658999929, 49.034566218000116 ], [ -122.343951426999951, 49.034591936000091 ], [ -122.343895057999958, 49.035310706000111 ], [ -122.34596130099996, 49.035381086000022 ], [ -122.345900446999963, 49.036157471000116 ], [ -122.346260660999945, 49.036169736000055 ] ], [ [ -122.352804796999919, 49.033499679000052 ], [ -122.352592271999981, 49.036216163000077 ], [ -122.353225017999961, 49.03623766100003 ], [ -122.353741268999968, 49.036255198000035 ], [ -122.353744898999977, 49.035975117000056 ], [ -122.354155324999951, 49.035977415000019 ], [ -122.354169299999967, 49.034898016000035 ], [ -122.355400556999911, 49.034904900000114 ], [ -122.35541101599992, 49.034095351000047 ], [ -122.3555732, 49.034096257000087 ], [ -122.355604159999984, 49.033700207000031 ], [ -122.352858136999956, 49.03360690800006 ], [ -122.352866362, 49.033501772000065 ], [ -122.352804796999919, 49.033499679000052 ] ], [ [ -122.355382387999967, 49.036310948000114 ], [ -122.355400015999948, 49.036311556000051 ], [ -122.355425583999988, 49.035984516000084 ], [ -122.355386607999975, 49.035984299000127 ], [ -122.355382387999967, 49.036310948000114 ] ], [ [ -122.351809702999915, 49.026788704000076 ], [ -122.351868707, 49.026034562000106 ], [ -122.351318087999942, 49.026015838000042 ], [ -122.351303606, 49.026200912000014 ], [ -122.349358201999962, 49.026134733000077 ], [ -122.349356891999918, 49.026235160000105 ], [ -122.346894810999927, 49.026221252000077 ], [ -122.346896029, 49.026128053000036 ], [ -122.342405324999959, 49.025975049000074 ], [ -122.342430338999975, 49.02565615700005 ], [ -122.342388109999973, 49.025655917000059 ], [ -122.342393183999945, 49.025270878000065 ], [ -122.341013871, 49.025223844000088 ], [ -122.340889004999966, 49.026815049000028 ], [ -122.341107252999947, 49.026822491000111 ], [ -122.341073521999931, 49.027252341000064 ], [ -122.341414967999953, 49.027263985000062 ], [ -122.341351031, 49.028078831000123 ], [ -122.344818276999945, 49.028098567000043 ], [ -122.344814732999964, 49.028368417000117 ], [ -122.346045825999951, 49.028375400000044 ], [ -122.346042440999952, 49.02863366 ], [ -122.346862868999963, 49.028661597000102 ], [ -122.346884213999957, 49.02703080000002 ], [ -122.350577399000016, 49.027051644000075 ], [ -122.350580910999895, 49.026781795000083 ], [ -122.351809702999915, 49.026788704000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85956645", "BldgCostT": "56866524", "sL_LossRatio": "0.813109100214705", "sL_AssetLoss": "470879", "sL_BldgLoss": "382876", "sL_StrLoss": "223201", "sL_NStrLoss": "159675", "sL_ContLoss": "88003", "geom_point": "0101000020E6100000B6945E61E2945EC0F78A762E6F834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315589703999962, 49.034977707000074 ], [ -122.315587416999961, 49.03472836800006 ], [ -122.315560627999957, 49.031813451000104 ], [ -122.315556906999959, 49.031408457000026 ], [ -122.315551071999963, 49.030776099000107 ], [ -122.315465350999943, 49.02942966400007 ], [ -122.315457850999977, 49.029312059000084 ], [ -122.31542572699999, 49.028807598000121 ], [ -122.315344311999951, 49.027528920000073 ], [ -122.315324776999901, 49.0272223690001 ], [ -122.315246868999964, 49.025998896000054 ], [ -122.315224507999943, 49.025647486000075 ], [ -122.315202098000029, 49.025296065000113 ], [ -122.315140196999934, 49.02432347200007 ], [ -122.31513905199995, 49.024305510000019 ], [ -122.315099491999931, 49.023684363000065 ], [ -122.315054366999959, 49.022975726 ], [ -122.31504460299999, 49.022822396000059 ], [ -122.315053132999964, 49.02258136100005 ], [ -122.315172639999929, 49.019199874000051 ], [ -122.315189773000014, 49.018714054000085 ], [ -122.315253684999931, 49.016905511000118 ], [ -122.316144608999977, 49.01688892500006 ], [ -122.317909410999903, 49.016856107000081 ], [ -122.318347093999975, 49.016847954000113 ], [ -122.322725797999937, 49.016766342000096 ], [ -122.323396217999971, 49.016753822000062 ], [ -122.325132700999944, 49.016721418000067 ], [ -122.325679651999977, 49.016711208000046 ], [ -122.32591239199995, 49.01670685600002 ], [ -122.326391093000012, 49.016697889000071 ], [ -122.326938555999988, 49.016687323000028 ], [ -122.32695221299997, 49.016687058000073 ], [ -122.329606496999986, 49.016635820000026 ], [ -122.33235687599992, 49.016582631000063 ], [ -122.332589627999965, 49.016578113000044 ], [ -122.33294530499991, 49.01657123800004 ], [ -122.333177516999967, 49.016566758000053 ], [ -122.33469538699994, 49.016537342000092 ], [ -122.334859298999973, 49.016534156000041 ], [ -122.336241579999964, 49.016507373000088 ], [ -122.33640603500001, 49.016504203000103 ], [ -122.336912001999934, 49.016494380000033 ], [ -122.337014093, 49.016492392000025 ], [ -122.337519609999973, 49.016496991000047 ], [ -122.337521978, 49.017017873000022 ], [ -122.337528209999988, 49.018385391000059 ], [ -122.337535430999964, 49.01997360500016 ], [ -122.333970791999974, 49.019851840000108 ], [ -122.334010868999925, 49.01934202000006 ], [ -122.333991024999946, 49.019341342000104 ], [ -122.33401437399999, 49.019044314000077 ], [ -122.331815079999927, 49.018969128000023 ], [ -122.33177764099996, 49.019445102000091 ], [ -122.330996020999976, 49.019418371000071 ], [ -122.330995607999967, 49.019423621000087 ], [ -122.329620832, 49.019376590000057 ], [ -122.32962016499999, 49.019385073000066 ], [ -122.329821808999966, 49.019391973000076 ], [ -122.329574526999963, 49.022533873000015 ], [ -122.329867, 49.022543881000033 ], [ -122.329801585999974, 49.023375011 ], [ -122.329830053999927, 49.023375984000033 ], [ -122.329768230999917, 49.024161453000062 ], [ -122.329929897999989, 49.024166983000022 ], [ -122.32988209299999, 49.024774359000034 ], [ -122.330088744999969, 49.024775559000048 ], [ -122.330070633999966, 49.026124804000098 ], [ -122.329850500999925, 49.026123525000038 ], [ -122.329840298999926, 49.026253132000072 ], [ -122.332577035999947, 49.026346718000049 ], [ -122.332401280999974, 49.028581186000054 ], [ -122.332436762999947, 49.028582399000065 ], [ -122.332703561999921, 49.025190328000079 ], [ -122.33368557599999, 49.025223892000042 ], [ -122.333707334999957, 49.024947152000045 ], [ -122.334224228999972, 49.024964815000082 ], [ -122.33439112399999, 49.022841761000088 ], [ -122.334407003999985, 49.022842304000065 ], [ -122.334449651999975, 49.022299761000042 ], [ -122.335517154999962, 49.022336232000022 ], [ -122.335521308999915, 49.022283387000066 ], [ -122.337546252, 49.022352539000039 ], [ -122.337552407999965, 49.023704993000059 ], [ -122.337569207999962, 49.024223592000055 ], [ -122.337635942999952, 49.026284033000088 ], [ -122.33764842799998, 49.026670581000062 ], [ -122.33771291299999, 49.028660787000035 ], [ -122.337578396999959, 49.028980690000068 ], [ -122.336857203999955, 49.029717887000075 ], [ -122.336556902999931, 49.030180891000114 ], [ -122.336428593999955, 49.030525394000094 ], [ -122.336427316999945, 49.030924808000123 ], [ -122.337598750999987, 49.0313795550001 ], [ -122.337771692000018, 49.03144669900005 ], [ -122.337681690999943, 49.032679746000099 ], [ -122.337668550999965, 49.032859665000075 ], [ -122.337610835999925, 49.033650799000085 ], [ -122.337582619999949, 49.034037561000034 ], [ -122.337543182999937, 49.034577299000027 ], [ -122.33752349, 49.034847594000063 ], [ -122.337520726999955, 49.034885513000091 ], [ -122.337472065, 49.035602996000122 ], [ -122.337469082999945, 49.035647328000039 ], [ -122.337467851999975, 49.035697782000042 ], [ -122.337437678999919, 49.03621446800004 ], [ -122.337436150999977, 49.03624029500002 ], [ -122.337405190999931, 49.036798799000067 ], [ -122.337379226999971, 49.037266302000056 ], [ -122.337370252999946, 49.037427139000094 ], [ -122.3373314, 49.037991989000069 ], [ -122.336801006999934, 49.037744006000054 ], [ -122.336034508999958, 49.037437407000077 ], [ -122.335132299999955, 49.037168605 ], [ -122.334955096999948, 49.037127022000078 ], [ -122.334111594999968, 49.036929114000124 ], [ -122.332934794999971, 49.036727480000074 ], [ -122.332225296999965, 49.036651909000049 ], [ -122.331286976999962, 49.036599679000048 ], [ -122.330364827999944, 49.03654834600011 ], [ -122.329257559999974, 49.03648669299999 ], [ -122.315538530999987, 49.035721874000068 ], [ -122.315481231999982, 49.035718672000023 ], [ -122.31539944799998, 49.035714127000048 ], [ -122.315514228999987, 49.035269878000044 ], [ -122.315589703999962, 49.034977707000074 ] ], [ [ -122.334200523999968, 49.033140694000124 ], [ -122.334205894999954, 49.033072369000081 ], [ -122.332827382999952, 49.033025266000038 ], [ -122.332824836999976, 49.03305763700007 ], [ -122.331619829999923, 49.033016447000115 ], [ -122.331618036999885, 49.033150387000013 ], [ -122.330386828999977, 49.033143249000091 ], [ -122.330389095999934, 49.032974361000107 ], [ -122.328574470999953, 49.032912287000045 ], [ -122.328569560999966, 49.032974640000063 ], [ -122.327481993000021, 49.032937422000082 ], [ -122.327464524999954, 49.033159166000054 ], [ -122.32578295899999, 49.033101599000069 ], [ -122.325769363999939, 49.033274106000114 ], [ -122.323199667999944, 49.033186084000093 ], [ -122.323174770999969, 49.033501768000072 ], [ -122.320122506999979, 49.033397136000097 ], [ -122.320119429999963, 49.033622953000069 ], [ -122.319000101999919, 49.033616354000095 ], [ -122.318957504999972, 49.034155842000096 ], [ -122.321753715999961, 49.034172309000027 ], [ -122.321750046999924, 49.0344421570001 ], [ -122.32298128499994, 49.034449387000045 ], [ -122.322977621999954, 49.034719235000118 ], [ -122.324208867, 49.034726453000076 ], [ -122.324205211999981, 49.034996301 ], [ -122.32543646299996, 49.035003505000091 ], [ -122.325432813999967, 49.035273352000061 ], [ -122.329746273999916, 49.035298489000049 ], [ -122.329869702999972, 49.033730684000076 ], [ -122.331516579999985, 49.033787 ], [ -122.331524437999974, 49.033687124000046 ], [ -122.33368282399999, 49.033760893000064 ], [ -122.333713268999972, 49.033373776000118 ], [ -122.334054781999981, 49.033385445000071 ], [ -122.334074366, 49.033136385000077 ], [ -122.334200523999968, 49.033140694000124 ] ], [ [ -122.320609954999924, 49.027741798000058 ], [ -122.320621698999958, 49.026879169000061 ], [ -122.320211348999976, 49.026876752000071 ], [ -122.320226051999938, 49.025797360000077 ], [ -122.319815709999929, 49.025794942000068 ], [ -122.319819387999956, 49.025525093000084 ], [ -122.319409049999976, 49.025522674000086 ], [ -122.319412730999957, 49.025252826000035 ], [ -122.319360858999971, 49.025252519000034 ], [ -122.319346368999916, 49.025436083000081 ], [ -122.31874986099993, 49.025415617000093 ], [ -122.318680117999975, 49.026299018000088 ], [ -122.318859833999952, 49.026305185000055 ], [ -122.318770765999929, 49.027433361000092 ], [ -122.320175557999931, 49.027481553000086 ], [ -122.320156247999989, 49.027726237000117 ], [ -122.320609954999924, 49.027741798000058 ] ], [ [ -122.322829213999952, 49.024463316000066 ], [ -122.322885532999976, 49.023749125000123 ], [ -122.322847846999963, 49.023747833000115 ], [ -122.322879482999937, 49.023346653000132 ], [ -122.32283807099995, 49.023345233000015 ], [ -122.322940685, 49.022043912000086 ], [ -122.322923953999975, 49.022043339000021 ], [ -122.322959708999988, 49.021589899000098 ], [ -122.32292298199998, 49.021588641000051 ], [ -122.322946706999943, 49.02128776400005 ], [ -122.322908099999921, 49.021286440000083 ], [ -122.322958429999986, 49.020648150000078 ], [ -122.322929040999924, 49.02064714300014 ], [ -122.322954671999966, 49.020322073000052 ], [ -122.32292755899999, 49.020321144000036 ], [ -122.322963969999975, 49.019859373000088 ], [ -122.322951489999937, 49.019858945000138 ], [ -122.323016992999953, 49.019028171000045 ], [ -122.322957939999952, 49.019026148000073 ], [ -122.322962799999971, 49.018964510000075 ], [ -122.321146095999936, 49.018902219000019 ], [ -122.321145232999982, 49.018998961000058 ], [ -122.320917824999967, 49.019000218000066 ], [ -122.32091397899994, 49.019048965000103 ], [ -122.320207317000012, 49.019024726000076 ], [ -122.320207333999946, 49.019034261000073 ], [ -122.31970603299996, 49.019027062000113 ], [ -122.319705996999957, 49.019007527000099 ], [ -122.318831177999982, 49.018977508000049 ], [ -122.318670695999927, 49.021010513000114 ], [ -122.31847017099993, 49.021003631000028 ], [ -122.318445427999947, 49.021317029000038 ], [ -122.318531438999941, 49.021319981000062 ], [ -122.31849349299992, 49.021800646000045 ], [ -122.319630231999923, 49.021839652000097 ], [ -122.319509898000021, 49.023364309000122 ], [ -122.32025913199999, 49.023368724000115 ], [ -122.320255457999963, 49.02363857299999 ], [ -122.320665779999928, 49.023640989000128 ], [ -122.320662107999951, 49.023910838000113 ], [ -122.321072433, 49.023913252000099 ], [ -122.321068761999939, 49.024183101000069 ], [ -122.321479090999958, 49.024185514000095 ], [ -122.321475421999963, 49.024455363000129 ], [ -122.322829213999952, 49.024463316000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126184622", "BldgCostT": "78096380", "sL_LossRatio": "0.743810773987645", "sL_AssetLoss": "803695", "sL_BldgLoss": "597797", "sL_StrLoss": "316963", "sL_NStrLoss": "280834", "sL_ContLoss": "205898", "geom_point": "0101000020E610000075F20105C7955EC06E08A76859814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315340178999961, 49.015179930000102 ], [ -122.315439729999952, 49.013192537000052 ], [ -122.315593394999965, 49.010125943000084 ], [ -122.31562536, 49.009487388000124 ], [ -122.315637991999935, 49.009235730000107 ], [ -122.31568842199999, 49.008228872000188 ], [ -122.315703741999954, 49.007923065000114 ], [ -122.31572626799999, 49.007473454000021 ], [ -122.315770852999947, 49.006583021000075 ], [ -122.315774916999928, 49.006501887000127 ], [ -122.315785268999889, 49.006294978000035 ], [ -122.315897426999953, 49.00405613500007 ], [ -122.315978982, 49.002427015000094 ], [ -122.315742738999973, 49.002416762000074 ], [ -122.31613099799999, 49.002417716000053 ], [ -122.318807325999927, 49.002424681000036 ], [ -122.320058820999961, 49.002450366000083 ], [ -122.320321899999925, 49.002442236000086 ], [ -122.320137257999988, 49.004783126000085 ], [ -122.31983773099995, 49.004772847000069 ], [ -122.319677750999972, 49.006800731000048 ], [ -122.319529261999946, 49.00679563500006 ], [ -122.319427710999946, 49.008082733000066 ], [ -122.319092604999966, 49.008071232000056 ], [ -122.318987578999938, 49.009402168000072 ], [ -122.319076888000012, 49.009405233000102 ], [ -122.318961314999967, 49.01086976100008 ], [ -122.319770153999968, 49.010897520000086 ], [ -122.319486367999943, 49.014494013000075 ], [ -122.318931231999954, 49.014474962000094 ], [ -122.318923792999925, 49.014569212000055 ], [ -122.319686924999985, 49.014595400000061 ], [ -122.319724801999897, 49.01411538300006 ], [ -122.321257816999903, 49.014167975000085 ], [ -122.321310570999955, 49.013499118000063 ], [ -122.321785757999947, 49.013515416000089 ], [ -122.321789052999975, 49.013473630000107 ], [ -122.322344262999948, 49.013492669000122 ], [ -122.322345730999942, 49.01347404400012 ], [ -122.322907269000012, 49.0134932980001 ], [ -122.322908106999961, 49.013482657000118 ], [ -122.323383500999952, 49.013498954000099 ], [ -122.323396767999938, 49.013330639000102 ], [ -122.323351106999908, 49.013329074000048 ], [ -122.323444094999914, 49.012149380000082 ], [ -122.323338978999985, 49.012145777000043 ], [ -122.323369971999938, 49.011752576000028 ], [ -122.323335000999947, 49.011751377000095 ], [ -122.323373899000018, 49.011257905000072 ], [ -122.32298201899998, 49.011244470000058 ], [ -122.323024420999971, 49.010706588000069 ], [ -122.32299765399992, 49.010705671000096 ], [ -122.3232811459999, 49.007109147000023 ], [ -122.32352425799999, 49.007117482000055 ], [ -122.323643324999964, 49.005606669000016 ], [ -122.323580087999972, 49.005604500000054 ], [ -122.32367460299993, 49.004405170000034 ], [ -122.323538460999927, 49.004400502000074 ], [ -122.32370101199993, 49.002337749000056 ], [ -122.327047555999968, 49.002234164000122 ], [ -122.329313701999979, 49.002223569000066 ], [ -122.329288015999921, 49.002550028000066 ], [ -122.330494152999933, 49.002591311000025 ], [ -122.330211243999941, 49.006187879000052 ], [ -122.330181684999928, 49.006186867000061 ], [ -122.33011196699999, 49.007073083000058 ], [ -122.330128038999959, 49.007073633000047 ], [ -122.330090454999919, 49.007551374000094 ], [ -122.330115569999975, 49.007552234000094 ], [ -122.330042973999952, 49.008474998000082 ], [ -122.330128825999964, 49.008477936000105 ], [ -122.32998891799997, 49.010256220000016 ], [ -122.330091836999941, 49.010259742000052 ], [ -122.330018517999989, 49.011191623000087 ], [ -122.330019196999942, 49.011191646000071 ], [ -122.329960446999962, 49.011938331000039 ], [ -122.329998944999929, 49.011939649000048 ], [ -122.329826912999977, 49.014125951000082 ], [ -122.332102607, 49.01420379900005 ], [ -122.33210258599999, 49.014204051000036 ], [ -122.334172670999948, 49.014274823000036 ], [ -122.334269365999944, 49.013044505000082 ], [ -122.332031843999971, 49.012968006000115 ], [ -122.332314654999934, 49.009371471000136 ], [ -122.332346617999974, 49.009372564000053 ], [ -122.332367817999938, 49.007786942000045 ], [ -122.332933113999928, 49.007790212000018 ], [ -122.332990454, 49.00706078100005 ], [ -122.335555224999922, 49.00714845200006 ], [ -122.335642781000033, 49.006033824000077 ], [ -122.334404060999987, 49.005991489000046 ], [ -122.334406296999987, 49.005963031000057 ], [ -122.333752239999953, 49.005940672000101 ], [ -122.334034872999922, 49.002344092000151 ], [ -122.334414438999943, 49.002357069000091 ], [ -122.334426819999933, 49.002199488000031 ], [ -122.339859805999936, 49.002173632000066 ], [ -122.339880562999937, 49.002174016000083 ], [ -122.339845200999932, 49.002314811000119 ], [ -122.339816495, 49.00245869400009 ], [ -122.340070409999953, 49.002873090000094 ], [ -122.339762483999891, 49.003411497000094 ], [ -122.339853691999977, 49.003807415000018 ], [ -122.339815983999983, 49.004472491000108 ], [ -122.340087710999953, 49.004735991000075 ], [ -122.34147409799999, 49.005247289000074 ], [ -122.341924610999968, 49.005285702000073 ], [ -122.342994196999925, 49.005147586000056 ], [ -122.343241994999985, 49.00504080000006 ], [ -122.343560813999943, 49.004656202000021 ], [ -122.343879089999945, 49.004434096000118 ], [ -122.343864130999989, 49.004012703000107 ], [ -122.346507159999973, 49.004102787000136 ], [ -122.346225475999958, 49.007699389000024 ], [ -122.341512061999978, 49.007538694000097 ], [ -122.341334092999915, 49.00980780000004 ], [ -122.3409198, 49.009793666000064 ], [ -122.340891735999961, 49.010151430000128 ], [ -122.34115012699999, 49.010160246000034 ], [ -122.341101330999948, 49.010782333000073 ], [ -122.341148666999985, 49.010783948000082 ], [ -122.341039047999942, 49.012181376000086 ], [ -122.341070654999925, 49.01218245400004 ], [ -122.340936842999966, 49.013888212000069 ], [ -122.343431677999945, 49.013973295000028 ], [ -122.343399995999931, 49.01437742300007 ], [ -122.343995881999916, 49.01439773600007 ], [ -122.343997603999981, 49.014375768000022 ], [ -122.345578070999977, 49.014429628000066 ], [ -122.345581739999886, 49.01438280600005 ], [ -122.346522526999934, 49.014414856000016 ], [ -122.346645480999925, 49.012845128000059 ], [ -122.351186731, 49.012999719000042 ], [ -122.351369110999954, 49.010668234000065 ], [ -122.35140055, 49.0106693050001 ], [ -122.351412664999941, 49.010514424000085 ], [ -122.352673590999984, 49.010455599000089 ], [ -122.35342779399997, 49.010307488000123 ], [ -122.35415136499995, 49.009888564000065 ], [ -122.356217303999955, 49.009958776000097 ], [ -122.356275992999954, 49.00920744800014 ], [ -122.356419788999929, 49.009212333000036 ], [ -122.356463215999895, 49.00865635100012 ], [ -122.356653623999961, 49.008662820000026 ], [ -122.356670127999934, 49.008451521000019 ], [ -122.356474414999937, 49.008444872000084 ], [ -122.356529301999984, 49.00774213100005 ], [ -122.355832536999941, 49.007718456000099 ], [ -122.356113480999937, 49.004121829000049 ], [ -122.356612442999932, 49.004138783 ], [ -122.356753481999988, 49.002332745000047 ], [ -122.360145498999913, 49.002358351000062 ], [ -122.360173518999957, 49.002358555000114 ], [ -122.363930620999909, 49.00235696500004 ], [ -122.363926953, 49.002404033000069 ], [ -122.363661376999971, 49.005811374000061 ], [ -122.363366520999989, 49.005801376000079 ], [ -122.363302877999956, 49.006617791000082 ], [ -122.363375197999972, 49.006620243000086 ], [ -122.363349813999946, 49.00694587800006 ], [ -122.363670009, 49.006956736000063 ], [ -122.363389629000011, 49.010553366000046 ], [ -122.363262135999946, 49.010549044000115 ], [ -122.363224749000011, 49.011028570000107 ], [ -122.362363807999913, 49.010999373000082 ], [ -122.362355737999977, 49.011102841000046 ], [ -122.363506070999975, 49.01114185199999 ], [ -122.36324918399994, 49.014436676000045 ], [ -122.368577998999982, 49.014617225000052 ], [ -122.368575741999905, 49.014646217000049 ], [ -122.369990755999964, 49.014694116000072 ], [ -122.36999623699991, 49.014623694000072 ], [ -122.370592872999936, 49.014643886000073 ], [ -122.370615926999946, 49.014347609000055 ], [ -122.370959692999989, 49.014359241000079 ], [ -122.370949738999926, 49.014902236000047 ], [ -122.370911407999955, 49.016993693000053 ], [ -122.368317551999951, 49.016973049000036 ], [ -122.368196467999937, 49.016972096000096 ], [ -122.367400827999973, 49.016959851000138 ], [ -122.360149287999945, 49.016848101000065 ], [ -122.359511293999958, 49.016838501000024 ], [ -122.354602151999956, 49.016764435000049 ], [ -122.354420679999961, 49.016761699000071 ], [ -122.353631075999914, 49.016749392000115 ], [ -122.349979560999941, 49.016692397000085 ], [ -122.349542088999954, 49.016685567000088 ], [ -122.348913266999958, 49.016675744000032 ], [ -122.347874064999971, 49.016659491000055 ], [ -122.3467255199999, 49.016641508000141 ], [ -122.346000782999951, 49.016630166000077 ], [ -122.34531722199992, 49.016619453000089 ], [ -122.344934438999971, 49.016613457000112 ], [ -122.343498632999953, 49.016590933000032 ], [ -122.342951785999901, 49.016582361000069 ], [ -122.342431906999963, 49.016574213000055 ], [ -122.340681869999969, 49.016546711000039 ], [ -122.340039121999894, 49.016536638000026 ], [ -122.339601459999955, 49.016529743000014 ], [ -122.337519609999973, 49.016496991000047 ], [ -122.337014093, 49.016492392000025 ], [ -122.336912001999934, 49.016494380000033 ], [ -122.33640603500001, 49.016504203000103 ], [ -122.336241579999964, 49.016507373000088 ], [ -122.334859298999973, 49.016534156000041 ], [ -122.33469538699994, 49.016537342000092 ], [ -122.333177516999967, 49.016566758000053 ], [ -122.33294530499991, 49.01657123800004 ], [ -122.332589627999965, 49.016578113000044 ], [ -122.33235687599992, 49.016582631000063 ], [ -122.329606496999986, 49.016635820000026 ], [ -122.32695221299997, 49.016687058000073 ], [ -122.326938555999988, 49.016687323000028 ], [ -122.326391093000012, 49.016697889000071 ], [ -122.32591239199995, 49.01670685600002 ], [ -122.325679651999977, 49.016711208000046 ], [ -122.325132700999944, 49.016721418000067 ], [ -122.323396217999971, 49.016753822000062 ], [ -122.322725797999937, 49.016766342000096 ], [ -122.318347093999975, 49.016847954000113 ], [ -122.317909410999903, 49.016856107000081 ], [ -122.316144608999977, 49.01688892500006 ], [ -122.315253684999931, 49.016905511000118 ], [ -122.315275261999915, 49.016475028000052 ], [ -122.31529868199999, 49.016007676000065 ], [ -122.315304543999972, 49.015890611000053 ], [ -122.315340178999961, 49.015179930000102 ] ], [ [ -122.352101809999965, 49.014501174 ], [ -122.352117555999911, 49.01429984100011 ], [ -122.352000358999987, 49.014295855000086 ], [ -122.351984611999924, 49.014497188000156 ], [ -122.352101809999965, 49.014501174 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "0.804282057249244", "sL_AssetLoss": "42970", "sL_BldgLoss": "34560", "sL_StrLoss": "18660", "sL_NStrLoss": "15900", "sL_ContLoss": "8410", "geom_point": "0101000020E61000005955696A9D975EC0DD8BF52EDA804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.368636536999986, 49.013697982000046 ], [ -122.36888556400001, 49.010499166000024 ], [ -122.368670735999928, 49.010491892000118 ], [ -122.368725088999952, 49.00979367900009 ], [ -122.368663477999974, 49.009791594000042 ], [ -122.36883946899998, 49.007530767000041 ], [ -122.368784421, 49.00752890200004 ], [ -122.368813733999971, 49.007152329000107 ], [ -122.368730241999941, 49.007149503000029 ], [ -122.368784297000019, 49.006455068000037 ], [ -122.368741086999961, 49.006453604000036 ], [ -122.368857485999982, 49.0049581910001 ], [ -122.367608138999941, 49.004915878000055 ], [ -122.367631382999889, 49.004617336000059 ], [ -122.364021133999969, 49.004494984000111 ], [ -122.364184105999954, 49.00240382700008 ], [ -122.364187767999951, 49.002356850000091 ], [ -122.377746183999989, 49.002349986000077 ], [ -122.377742469999959, 49.002397819000073 ], [ -122.371178905999926, 49.002397987000066 ], [ -122.371160399999894, 49.003406956000056 ], [ -122.371127308999974, 49.00521488400004 ], [ -122.37112614599999, 49.005277891000041 ], [ -122.371125330999959, 49.005322854000092 ], [ -122.371113105999939, 49.005988488000071 ], [ -122.3711009, 49.00665408900003 ], [ -122.371074552999929, 49.008093163000069 ], [ -122.371053131999957, 49.009262512000092 ], [ -122.371047008999966, 49.009595322000024 ], [ -122.371046693999972, 49.009613298000033 ], [ -122.371026233999956, 49.010728691000097 ], [ -122.371014373999984, 49.011376315000035 ], [ -122.370970367, 49.013776973000063 ], [ -122.368636536999986, 49.013697982000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.818915801614764", "sL_AssetLoss": "4335", "sL_BldgLoss": "3550", "sL_StrLoss": "1930", "sL_NStrLoss": "1620", "sL_ContLoss": "785", "geom_point": "0101000020E6100000241E3799C4935EC06457FF8CF7824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.306711065999963, 49.023827862000068 ], [ -122.306722311999934, 49.023018319000116 ], [ -122.308363581999927, 49.023028167000064 ], [ -122.308367321, 49.022758320000051 ], [ -122.308777635999945, 49.022760778000134 ], [ -122.30878511, 49.022221083000147 ], [ -122.310426353999915, 49.022230903000029 ], [ -122.310403982999929, 49.023849989000084 ], [ -122.306711065999963, 49.023827862000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84104750", "BldgCostT": "55325000", "sL_LossRatio": "0.784803171661891", "sL_AssetLoss": "556932", "sL_BldgLoss": "437082", "sL_StrLoss": "243023", "sL_NStrLoss": "194059", "sL_ContLoss": "119850", "geom_point": "0101000020E61000004182A0AB86935EC0BC9E64824C824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307217425999923, 49.034805908000109 ], [ -122.30722731899999, 49.034181709000066 ], [ -122.307237886999957, 49.033304892000046 ], [ -122.307215198999955, 49.03238280300004 ], [ -122.307208829000032, 49.031943714000086 ], [ -122.307208169999939, 49.03189857900005 ], [ -122.307204224999936, 49.031628608000091 ], [ -122.307195971999974, 49.03106204400008 ], [ -122.307194408999962, 49.030953999000111 ], [ -122.301584382999977, 49.031089800000117 ], [ -122.300510784999958, 49.031088906000086 ], [ -122.30028506499994, 49.031093555000069 ], [ -122.299648437999949, 49.031106699000077 ], [ -122.299659474999913, 49.030832504000088 ], [ -122.299779199999989, 49.026934170000054 ], [ -122.299185199999926, 49.026945472000101 ], [ -122.293474505999882, 49.026992850000049 ], [ -122.293627174999941, 49.025576599000033 ], [ -122.29374449, 49.024488606000027 ], [ -122.29376148199999, 49.024068208000095 ], [ -122.293756580999982, 49.023198911000101 ], [ -122.293753909999907, 49.022722095000105 ], [ -122.293750879999934, 49.022182309000129 ], [ -122.293746751999919, 49.021453761000032 ], [ -122.29374583399999, 49.021291738000087 ], [ -122.29373462599996, 49.019303726000089 ], [ -122.293732150999944, 49.018862999000092 ], [ -122.293720911999969, 49.016870502000096 ], [ -122.293664988999922, 49.015905698000026 ], [ -122.293662946999959, 49.015741021000096 ], [ -122.29365831299998, 49.015362974000055 ], [ -122.293650836, 49.014760238000072 ], [ -122.293649388999981, 49.014643315000065 ], [ -122.293644189999938, 49.014220457000128 ], [ -122.293642191999979, 49.014058575 ], [ -122.29363650199997, 49.013599767000073 ], [ -122.293624276999964, 49.012609970000028 ], [ -122.293617956999981, 49.012097174000068 ], [ -122.293600059999974, 49.01064843100005 ], [ -122.293587209999927, 49.009607287000037 ], [ -122.293630421999964, 49.008572636000096 ], [ -122.293653311999932, 49.008024068000118 ], [ -122.293658938999954, 49.007889050000138 ], [ -122.293692769999922, 49.007079435000087 ], [ -122.293705524999936, 49.006773580000086 ], [ -122.293775770999957, 49.005091892000053 ], [ -122.293800549999929, 49.004498347000037 ], [ -122.293839583999954, 49.003563188000101 ], [ -122.293878005999886, 49.002643608000021 ], [ -122.293544560999919, 49.002456386000077 ], [ -122.297379087999957, 49.002449870000049 ], [ -122.297321296999954, 49.003178008000077 ], [ -122.297474392999987, 49.003183295000085 ], [ -122.297421874999941, 49.003845019000011 ], [ -122.297742944, 49.0038561040001 ], [ -122.297746361999941, 49.003813023000127 ], [ -122.303198933999937, 49.004001145000103 ], [ -122.3030116799999, 49.006364063000049 ], [ -122.303086529, 49.006366643000035 ], [ -122.303230898999942, 49.004544858000081 ], [ -122.308683578999961, 49.004732699000066 ], [ -122.308398976999939, 49.008329198000055 ], [ -122.308190832999941, 49.008322033000127 ], [ -122.308149902999972, 49.008839185000113 ], [ -122.308144024999962, 49.009263459000081 ], [ -122.308554229999984, 49.009265918000089 ], [ -122.308550493000013, 49.009535766000084 ], [ -122.310601525999971, 49.009548038000034 ], [ -122.310575442999934, 49.011436978000049 ], [ -122.310165220999963, 49.011434526000095 ], [ -122.310161493999914, 49.011704374000061 ], [ -122.309751268999975, 49.011701921000032 ], [ -122.309713958999964, 49.01440040400005 ], [ -122.30985092399996, 49.014401223000085 ], [ -122.309861492999985, 49.014267645000075 ], [ -122.311989351999955, 49.014340834000116 ], [ -122.312268287999927, 49.01081299300008 ], [ -122.313398029000012, 49.010851834000121 ], [ -122.313433415999924, 49.010404082000029 ], [ -122.312249682999933, 49.010363385000062 ], [ -122.312347742999933, 49.009123029000072 ], [ -122.31194794799994, 49.009109280000068 ], [ -122.311955293, 49.009016377000108 ], [ -122.311839583999983, 49.009015688000105 ], [ -122.311850739999926, 49.008206142000063 ], [ -122.312019272999933, 49.008207147000114 ], [ -122.312061924999981, 49.007667660000038 ], [ -122.311447985999962, 49.007663998000083 ], [ -122.311451708999968, 49.007394150000025 ], [ -122.310631328999989, 49.007389250000116 ], [ -122.310649955999978, 49.006040008000099 ], [ -122.311060132999955, 49.006042457000014 ], [ -122.311061077999966, 49.005973949000058 ], [ -122.31011907499996, 49.00594154000003 ], [ -122.31039706899999, 49.002426724000031 ], [ -122.315742738999973, 49.002416762000074 ], [ -122.315978982, 49.002427015000094 ], [ -122.315897426999953, 49.00405613500007 ], [ -122.315785268999889, 49.006294978000035 ], [ -122.315774916999928, 49.006501887000127 ], [ -122.315770852999947, 49.006583021000075 ], [ -122.31572626799999, 49.007473454000021 ], [ -122.315703741999954, 49.007923065000114 ], [ -122.31568842199999, 49.008228872000188 ], [ -122.315637991999935, 49.009235730000107 ], [ -122.31562536, 49.009487388000124 ], [ -122.315593394999965, 49.010125943000084 ], [ -122.315439729999952, 49.013192537000052 ], [ -122.315340178999961, 49.015179930000102 ], [ -122.315304543999972, 49.015890611000053 ], [ -122.31529868199999, 49.016007676000065 ], [ -122.315275261999915, 49.016475028000052 ], [ -122.315253684999931, 49.016905511000118 ], [ -122.315189773000014, 49.018714054000085 ], [ -122.315172639999929, 49.019199874000051 ], [ -122.315053132999964, 49.02258136100005 ], [ -122.31504460299999, 49.022822396000059 ], [ -122.315054366999959, 49.022975726 ], [ -122.315099491999931, 49.023684363000065 ], [ -122.31513905199995, 49.024305510000019 ], [ -122.315140196999934, 49.02432347200007 ], [ -122.315202098000029, 49.025296065000113 ], [ -122.315224507999943, 49.025647486000075 ], [ -122.315246868999964, 49.025998896000054 ], [ -122.315324776999901, 49.0272223690001 ], [ -122.315344311999951, 49.027528920000073 ], [ -122.31542572699999, 49.028807598000121 ], [ -122.315457850999977, 49.029312059000084 ], [ -122.315465350999943, 49.02942966400007 ], [ -122.315551071999963, 49.030776099000107 ], [ -122.315556906999959, 49.031408457000026 ], [ -122.315560627999957, 49.031813451000104 ], [ -122.315587416999961, 49.03472836800006 ], [ -122.315589703999962, 49.034977707000074 ], [ -122.315514228999987, 49.035269878000044 ], [ -122.31539944799998, 49.035714127000048 ], [ -122.314105045999952, 49.035641858000076 ], [ -122.307275255999954, 49.035260391000087 ], [ -122.307215585999984, 49.034922757000047 ], [ -122.307217425999923, 49.034805908000109 ] ], [ [ -122.308616878999928, 49.034364221000018 ], [ -122.308620617999935, 49.034094373000123 ], [ -122.308296308999928, 49.034092430000094 ], [ -122.308278814999966, 49.034362194000039 ], [ -122.308616878999928, 49.034364221000018 ] ], [ [ -122.311086795999955, 49.033839253000089 ], [ -122.311088024999947, 49.033750185000024 ], [ -122.3100429899999, 49.033714253000063 ], [ -122.310039553, 49.033757683000033 ], [ -122.309856690999979, 49.033751394000063 ], [ -122.309851844, 49.034101742000061 ], [ -122.310672659999966, 49.03410664900013 ], [ -122.310676388999951, 49.033836802000046 ], [ -122.311086795999955, 49.033839253000089 ] ], [ [ -122.306711065999963, 49.023827862000068 ], [ -122.306692321999918, 49.025177099000075 ], [ -122.308333661999939, 49.02518694900008 ], [ -122.308329665999921, 49.025475221000065 ], [ -122.30978891699999, 49.025525426000023 ], [ -122.309541850999935, 49.028647067000037 ], [ -122.309859849999938, 49.028658005000054 ], [ -122.309871002999955, 49.028517088000065 ], [ -122.310339263999978, 49.028533192000076 ], [ -122.310340586999956, 49.028437400000016 ], [ -122.311739874999915, 49.02844575500005 ], [ -122.311796126999937, 49.027734647000081 ], [ -122.311632491999944, 49.027729022000109 ], [ -122.311792576999963, 49.02570522200007 ], [ -122.311725919999972, 49.025702930000094 ], [ -122.311750694999901, 49.02538971200007 ], [ -122.311748340999955, 49.025389632000099 ], [ -122.311762750999947, 49.025207452000075 ], [ -122.310385338999978, 49.025199229000094 ], [ -122.310400253999944, 49.024119838000061 ], [ -122.311609440999931, 49.024127057000037 ], [ -122.311635838999948, 49.02379333700005 ], [ -122.311637332999936, 49.023685015000126 ], [ -122.31162914, 49.023684732000035 ], [ -122.311741216999977, 49.022267763000102 ], [ -122.311324315999926, 49.022253429000102 ], [ -122.311575187999935, 49.019081713000084 ], [ -122.310645337999944, 49.019049735000081 ], [ -122.31061598099997, 49.019420812000114 ], [ -122.307184240999931, 49.019302724000077 ], [ -122.307181324999988, 49.019512762000019 ], [ -122.307591614999978, 49.019515225000042 ], [ -122.307557922999976, 49.021943855000053 ], [ -122.306442316999963, 49.021937156000043 ], [ -122.306400879999927, 49.022460304000134 ], [ -122.304679155999949, 49.022401009000092 ], [ -122.304674485999954, 49.022736127000051 ], [ -122.303939131999968, 49.022731694000122 ], [ -122.303853609999948, 49.023810659000034 ], [ -122.306711065999963, 49.023827862000068 ] ], [ [ -122.297439891999943, 49.022152566000095 ], [ -122.297442908, 49.022114576000043 ], [ -122.297396657999954, 49.02211298000006 ], [ -122.297393538999955, 49.022152283000068 ], [ -122.297439891999943, 49.022152566000095 ] ], [ [ -122.298232773, 49.025712975000033 ], [ -122.298279375000035, 49.025125961000093 ], [ -122.297206728999925, 49.025088944000061 ], [ -122.297265492999927, 49.024348915000125 ], [ -122.297266034999922, 49.02431046800006 ], [ -122.296964943999953, 49.024308635000061 ], [ -122.296857186999944, 49.02566550100007 ], [ -122.298232773, 49.025712975000033 ] ], [ [ -122.299910882999939, 49.014459254000045 ], [ -122.29994002, 49.01409197700012 ], [ -122.299344482999956, 49.014071430000037 ], [ -122.299629816999982, 49.010474988000105 ], [ -122.301167212999971, 49.010528023000077 ], [ -122.301198730999971, 49.010130566000058 ], [ -122.301141390999945, 49.010128589000026 ], [ -122.301346366999965, 49.007543579000057 ], [ -122.298928164999964, 49.007460147000117 ], [ -122.298924747999976, 49.007503228000083 ], [ -122.297260151000017, 49.007445765000021 ], [ -122.29710937699997, 49.009345167000035 ], [ -122.29694578799996, 49.009339518000083 ], [ -122.296894808, 49.009981684000046 ], [ -122.297312817999952, 49.009996118000096 ], [ -122.297109389999946, 49.012558671000086 ], [ -122.297111081999944, 49.012558729000013 ], [ -122.296954634, 49.014529278000069 ], [ -122.296996285999938, 49.014530716000131 ], [ -122.297009907999922, 49.014359136000103 ], [ -122.299910882999939, 49.014459254000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215351334", "BldgCostT": "130043334", "sL_LossRatio": "0.713766479651213", "sL_AssetLoss": "1381704", "sL_BldgLoss": "986214", "sL_StrLoss": "529080", "sL_NStrLoss": "457134", "sL_ContLoss": "395490", "geom_point": "0101000020E61000004AC7C630E5915EC01F58E94974814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.28220759099996, 49.023065355 ], [ -122.282258787000018, 49.021446554000129 ], [ -122.282274714999957, 49.020942869000102 ], [ -122.282304271999948, 49.020007510000063 ], [ -122.282309121999972, 49.01985464800002 ], [ -122.282346084999958, 49.018685368000028 ], [ -122.282350625999982, 49.018541495000115 ], [ -122.282365972999955, 49.018055784000083 ], [ -122.282380753999973, 49.017588063000048 ], [ -122.28240479499999, 49.016827794000065 ], [ -122.279764007999972, 49.016856764000039 ], [ -122.279736655999983, 49.016857059000074 ], [ -122.27916216600002, 49.016863341000061 ], [ -122.27685546, 49.01688858000005 ], [ -122.27685923599995, 49.016628012000083 ], [ -122.278474317999965, 49.016638123000035 ], [ -122.278515627, 49.016120445000119 ], [ -122.276357675000014, 49.01604554900009 ], [ -122.276289872999911, 49.016894747000094 ], [ -122.275865311999965, 49.016899373000072 ], [ -122.275373229999957, 49.016904748000037 ], [ -122.271836075999943, 49.01694327900006 ], [ -122.270215372999971, 49.016936068000071 ], [ -122.268916157, 49.016930257000055 ], [ -122.268451130999935, 49.016928168000028 ], [ -122.265350611999949, 49.016914189000019 ], [ -122.265340603999931, 49.015564360000013 ], [ -122.265337324999948, 49.015114526000083 ], [ -122.265333426999973, 49.014592739000079 ], [ -122.265315828999931, 49.012208605000076 ], [ -122.265309512999963, 49.011353887000077 ], [ -122.265295518999963, 49.009460293000082 ], [ -122.265294212999905, 49.009284963000027 ], [ -122.265292067999965, 49.008997014000052 ], [ -122.265289536999944, 49.00865327000006 ], [ -122.265289363999955, 49.008630037000046 ], [ -122.265283612999937, 49.007848109000093 ], [ -122.265280347, 49.007397184000041 ], [ -122.265280304999948, 49.007386406000087 ], [ -122.265277203999986, 49.00695530200003 ], [ -122.265233700999929, 49.006029684000112 ], [ -122.265232907999973, 49.005101001000106 ], [ -122.26523249199991, 49.004975569000116 ], [ -122.265230591999952, 49.004412990000105 ], [ -122.265160094999956, 49.004183293000054 ], [ -122.26294356599999, 49.004209790000083 ], [ -122.260720845999941, 49.004209324000051 ], [ -122.260078116, 49.004209201000023 ], [ -122.258781354999968, 49.004208891000168 ], [ -122.257570324999904, 49.004225242000139 ], [ -122.25725649099995, 49.004133132000035 ], [ -122.257134634999943, 49.004062563000041 ], [ -122.257095829999955, 49.004040081000078 ], [ -122.256979915999949, 49.003910347000065 ], [ -122.256962359999989, 49.003890665000014 ], [ -122.25695534399992, 49.003882814000079 ], [ -122.256869814999945, 49.003704914000146 ], [ -122.25684578, 49.002737421000084 ], [ -122.256961294999883, 49.002738164000093 ], [ -122.256965307999934, 49.002468319000052 ], [ -122.261715149999958, 49.002498818000078 ], [ -122.261729574999961, 49.002318803000087 ], [ -122.261924049999948, 49.00231831600005 ], [ -122.264782670999949, 49.002311122000044 ], [ -122.265018449999985, 49.002323938000075 ], [ -122.265854247999926, 49.002282351000126 ], [ -122.266325436999949, 49.00231522200005 ], [ -122.266693770999922, 49.002335085000063 ], [ -122.266718565999966, 49.002336414000105 ], [ -122.267359373999938, 49.002312861000057 ], [ -122.271574973999975, 49.002290787000099 ], [ -122.273090831999937, 49.002302368000045 ], [ -122.273069186999919, 49.002573312000067 ], [ -122.27318808699999, 49.002577445000092 ], [ -122.273209986999973, 49.002303277000088 ], [ -122.281301952999939, 49.002364723 ], [ -122.284946072999958, 49.002392153000066 ], [ -122.284739788999957, 49.004982462000058 ], [ -122.285024658999959, 49.004992332000022 ], [ -122.284975160999963, 49.005613885000066 ], [ -122.285222889999972, 49.005615419000016 ], [ -122.285219028999947, 49.005885267000068 ], [ -122.285629201999924, 49.005887807000057 ], [ -122.285617622999951, 49.006697348000081 ], [ -122.284889234000019, 49.00669283600012 ], [ -122.284834904999968, 49.007374997000028 ], [ -122.286803844999923, 49.007443192000046 ], [ -122.286776715999935, 49.007784004000086 ], [ -122.286832750999949, 49.00778435000008 ], [ -122.286829411999975, 49.008018085000025 ], [ -122.28998517, 49.008127309000045 ], [ -122.289969373999952, 49.008325915000086 ], [ -122.290197498999959, 49.008333807000099 ], [ -122.29031417600001, 49.006866686000095 ], [ -122.290149889999967, 49.006861003000097 ], [ -122.290329175999943, 49.0046065350001 ], [ -122.289755815999982, 49.004586699000129 ], [ -122.289927379999966, 49.002429449000083 ], [ -122.293544560999919, 49.002456386000077 ], [ -122.293878005999886, 49.002643608000021 ], [ -122.293839583999954, 49.003563188000101 ], [ -122.293800549999929, 49.004498347000037 ], [ -122.293775770999957, 49.005091892000053 ], [ -122.293705524999936, 49.006773580000086 ], [ -122.293692769999922, 49.007079435000087 ], [ -122.293658938999954, 49.007889050000138 ], [ -122.293653311999932, 49.008024068000118 ], [ -122.293630421999964, 49.008572636000096 ], [ -122.293587209999927, 49.009607287000037 ], [ -122.293600059999974, 49.01064843100005 ], [ -122.293617956999981, 49.012097174000068 ], [ -122.293624276999964, 49.012609970000028 ], [ -122.29363650199997, 49.013599767000073 ], [ -122.293642191999979, 49.014058575 ], [ -122.293644189999938, 49.014220457000128 ], [ -122.293649388999981, 49.014643315000065 ], [ -122.293650836, 49.014760238000072 ], [ -122.29365831299998, 49.015362974000055 ], [ -122.293662946999959, 49.015741021000096 ], [ -122.293664988999922, 49.015905698000026 ], [ -122.293720911999969, 49.016870502000096 ], [ -122.293732150999944, 49.018862999000092 ], [ -122.29373462599996, 49.019303726000089 ], [ -122.29374583399999, 49.021291738000087 ], [ -122.293746751999919, 49.021453761000032 ], [ -122.293750879999934, 49.022182309000129 ], [ -122.293753909999907, 49.022722095000105 ], [ -122.293756580999982, 49.023198911000101 ], [ -122.29376148199999, 49.024068208000095 ], [ -122.291928945999956, 49.024064764000087 ], [ -122.288344953999939, 49.024057966000015 ], [ -122.287934624999934, 49.024057181000018 ], [ -122.286785604999963, 49.024054966000072 ], [ -122.285978627999938, 49.024053431000056 ], [ -122.285363033999914, 49.024052227000077 ], [ -122.282737183999984, 49.024047091000021 ], [ -122.282668786999949, 49.024046963000046 ], [ -122.282176621999938, 49.024046005000066 ], [ -122.282193366999977, 49.023515096000018 ], [ -122.28220759099996, 49.023065355 ] ], [ [ -122.290339916999983, 49.021789971000103 ], [ -122.29037716899991, 49.021321700000037 ], [ -122.290251905999952, 49.021317367000101 ], [ -122.290330715999986, 49.02032666900012 ], [ -122.290206363999928, 49.020322369000077 ], [ -122.290253617999895, 49.019728369000084 ], [ -122.290213202999922, 49.019726971000082 ], [ -122.290286583999958, 49.018804498000065 ], [ -122.290170157, 49.018800472000095 ], [ -122.290216434999948, 49.018218722000064 ], [ -122.289508408999936, 49.018194232000042 ], [ -122.289499163999906, 49.018310423000074 ], [ -122.289414924999932, 49.01830750900006 ], [ -122.289356998999963, 49.019035525000085 ], [ -122.286344726999985, 49.018931278000096 ], [ -122.286245644999937, 49.020175491000025 ], [ -122.286847425999937, 49.020196324000032 ], [ -122.286822818999966, 49.020505364000016 ], [ -122.289903040999917, 49.020611944000109 ], [ -122.289878469999962, 49.020920788000097 ], [ -122.2899234599999, 49.020922345000038 ], [ -122.289893139999933, 49.021303435000078 ], [ -122.289933881999971, 49.021304844999989 ], [ -122.28990645099999, 49.02164963300001 ], [ -122.289964601999927, 49.021651644000045 ], [ -122.289954656999981, 49.02177664800012 ], [ -122.290339916999983, 49.021789971000103 ] ], [ [ -122.290283702999929, 49.01335563100011 ], [ -122.290395738999962, 49.011946987000037 ], [ -122.287800833999967, 49.011857201000062 ], [ -122.287767559999935, 49.012275283000115 ], [ -122.286139262999939, 49.012218910000051 ], [ -122.285960399, 49.014465138000048 ], [ -122.286851759999976, 49.01449600100004 ], [ -122.286874928999907, 49.014204992000039 ], [ -122.288296249999931, 49.014254189000056 ], [ -122.288373016999941, 49.013289525000047 ], [ -122.290283702999929, 49.01335563100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277316355", "BldgCostT": "177492491", "sL_LossRatio": "0.862054513056438", "sL_AssetLoss": "674506.3", "sL_BldgLoss": "581461.2", "sL_StrLoss": "406304.2", "sL_NStrLoss": "175157", "sL_ContLoss": "93045.1", "geom_point": "0101000020E610000088ED105AAA8F5EC0B6BF8103B9844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.236411350999944, 49.038203152000037 ], [ -122.236208526, 49.038151361000068 ], [ -122.235758398999948, 49.038135578000073 ], [ -122.233655880999933, 49.038442870000097 ], [ -122.233360811999944, 49.038486007000067 ], [ -122.230976406999986, 49.035830148000038 ], [ -122.230601008999884, 49.035567137000022 ], [ -122.230600775999903, 49.035566840000065 ], [ -122.23029620899996, 49.035051143 ], [ -122.234240416999981, 49.034351827000123 ], [ -122.23417255399994, 49.035191904000058 ], [ -122.233903294999976, 49.035182454000122 ], [ -122.233902383999961, 49.035241743 ], [ -122.23431279399999, 49.035244467000098 ], [ -122.234311716999983, 49.035314656000075 ], [ -122.234323473999893, 49.035315069000085 ], [ -122.234308951999949, 49.035494840000055 ], [ -122.234304579999929, 49.035779712000121 ], [ -122.23479318699998, 49.035796858000104 ], [ -122.234699069999948, 49.036962061000096 ], [ -122.234597865999945, 49.03821492900002 ], [ -122.234677666999971, 49.038215458000067 ], [ -122.234681807999962, 49.037945616000094 ], [ -122.235502674999964, 49.037951057000029 ], [ -122.235510945, 49.03741137200003 ], [ -122.236419903999945, 49.037417391000062 ], [ -122.2364365, 49.037211846000083 ], [ -122.237619857, 49.037253344000113 ], [ -122.237635053999952, 49.037065043000048 ], [ -122.237662476999944, 49.036725274000091 ], [ -122.241265478999978, 49.03685154100004 ], [ -122.241434784999981, 49.034751764000063 ], [ -122.241297998999926, 49.034750865000078 ], [ -122.24129389499997, 49.035020708000076 ], [ -122.24047307599993, 49.035015308000027 ], [ -122.240468967999988, 49.035285151000046 ], [ -122.239237732000021, 49.035277041000079 ], [ -122.239254192999979, 49.034197668000076 ], [ -122.238843789999919, 49.034194961000054 ], [ -122.238847905999961, 49.033925119000088 ], [ -122.238437504999979, 49.033922412000024 ], [ -122.238438717999927, 49.033843021000052 ], [ -122.240617602999961, 49.033705052000073 ], [ -122.241441084999948, 49.033652894000078 ], [ -122.245496049999986, 49.033644875000057 ], [ -122.245574259999927, 49.033644732000077 ], [ -122.250256326999974, 49.033635260000025 ], [ -122.252337375999971, 49.033630993000067 ], [ -122.252420049999927, 49.033627851000062 ], [ -122.254463391999977, 49.033549889000071 ], [ -122.255458723999979, 49.033511901000075 ], [ -122.259012569999967, 49.033510402000019 ], [ -122.26015374499994, 49.033653468000047 ], [ -122.257267, 49.033647092000102 ], [ -122.254805307999945, 49.033642310000069 ], [ -122.254408089999956, 49.033768189000106 ], [ -122.251791914999927, 49.034461197000034 ], [ -122.251770787999959, 49.035284498000074 ], [ -122.25451180499999, 49.034691394000028 ], [ -122.25450270199994, 49.035280706000094 ], [ -122.254497220999923, 49.036201103000124 ], [ -122.254489709000012, 49.037230409000074 ], [ -122.25449049299999, 49.03735658700009 ], [ -122.254482792999951, 49.038422883000102 ], [ -122.252502987999918, 49.03846200900005 ], [ -122.251869050999929, 49.038469251000102 ], [ -122.250801292999967, 49.038481496000053 ], [ -122.249918006999906, 49.038491590000056 ], [ -122.249240104999984, 49.038500381000055 ], [ -122.248696893, 49.038757207000124 ], [ -122.248456574, 49.038904788000046 ], [ -122.248246703999939, 49.039115697000149 ], [ -122.248113197999885, 49.039295817000031 ], [ -122.248048695999984, 49.039502710000065 ], [ -122.248031413999982, 49.039750910000045 ], [ -122.248089119, 49.039969308000103 ], [ -122.248246495999965, 49.040222796000087 ], [ -122.24837060599998, 49.040431792000078 ], [ -122.248465201999949, 49.040820008000011 ], [ -122.248474588999954, 49.041127793000051 ], [ -122.248383103999956, 49.041347314000078 ], [ -122.248344301999978, 49.04139769800004 ], [ -122.24824759699996, 49.041523340000069 ], [ -122.248131004999919, 49.041674757000045 ], [ -122.247807565999921, 49.041908974000137 ], [ -122.247792500999978, 49.041919916000055 ], [ -122.247047084999949, 49.042213062000023 ], [ -122.246336241, 49.042492610000039 ], [ -122.246318990999896, 49.04249943500006 ], [ -122.246215007999979, 49.042396544000077 ], [ -122.246116310999966, 49.042298914000121 ], [ -122.24594820399993, 49.042132633000101 ], [ -122.245546123999986, 49.041734903000105 ], [ -122.245369810999961, 49.041534382000101 ], [ -122.245360763999926, 49.041524063000068 ], [ -122.245339283999968, 49.041499631000079 ], [ -122.245210107999952, 49.041352714000055 ], [ -122.244976635999961, 49.04108712700004 ], [ -122.244797892999955, 49.040883788000059 ], [ -122.24464409199993, 49.04067109500005 ], [ -122.244455918, 49.040544599000043 ], [ -122.244127696999925, 49.040457393000104 ], [ -122.243462706999978, 49.040341205000033 ], [ -122.243159892999984, 49.040245005000031 ], [ -122.24247559199992, 49.039909104000067 ], [ -122.241962890999957, 49.039736005000087 ], [ -122.240405421999967, 49.039236109000065 ], [ -122.239448709999962, 49.038988018000069 ], [ -122.238938254999979, 49.038854738000097 ], [ -122.236912185999969, 49.038331119000105 ], [ -122.236411350999944, 49.038203152000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179513750", "BldgCostT": "116435000", "sL_LossRatio": "0.890236635647291", "sL_AssetLoss": "430290.2", "sL_BldgLoss": "383060.1", "sL_StrLoss": "277592.1", "sL_NStrLoss": "105468", "sL_ContLoss": "47230.1", "geom_point": "0101000020E6100000DC784D9BF38E5EC00F327F3B3F854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.223523042999915, 49.042463338000047 ], [ -122.223667689999971, 49.042417027000099 ], [ -122.224098898999983, 49.042278933000055 ], [ -122.225089217999979, 49.041962233000056 ], [ -122.225173288999926, 49.041935357000099 ], [ -122.226405917999898, 49.041512589000014 ], [ -122.226508428999978, 49.041457138000112 ], [ -122.227975407999963, 49.040663489000046 ], [ -122.228405004999942, 49.04038829900005 ], [ -122.22843862699996, 49.040366771000038 ], [ -122.229110897999973, 49.039936154000053 ], [ -122.230118281999921, 49.039371084000024 ], [ -122.230211340999986, 49.039321356000073 ], [ -122.230621571999905, 49.03910205800004 ], [ -122.231043425999985, 49.038922981000049 ], [ -122.231157053999965, 49.038874732000124 ], [ -122.231327326999988, 49.038826111000034 ], [ -122.231544931999977, 49.038763936000052 ], [ -122.233360811999944, 49.038486007000067 ], [ -122.233655880999933, 49.038442870000097 ], [ -122.235758398999948, 49.038135578000073 ], [ -122.236208526, 49.038151361000068 ], [ -122.236411350999944, 49.038203152000037 ], [ -122.236912185999969, 49.038331119000105 ], [ -122.238938254999979, 49.038854738000097 ], [ -122.239448709999962, 49.038988018000069 ], [ -122.240405421999967, 49.039236109000065 ], [ -122.241962890999957, 49.039736005000087 ], [ -122.24247559199992, 49.039909104000067 ], [ -122.243159892999984, 49.040245005000031 ], [ -122.243462706999978, 49.040341205000033 ], [ -122.244127696999925, 49.040457393000104 ], [ -122.244455918, 49.040544599000043 ], [ -122.24464409199993, 49.04067109500005 ], [ -122.244797892999955, 49.040883788000059 ], [ -122.244976635999961, 49.04108712700004 ], [ -122.245210107999952, 49.041352714000055 ], [ -122.245339283999968, 49.041499631000079 ], [ -122.245360763999926, 49.041524063000068 ], [ -122.245369810999961, 49.041534382000101 ], [ -122.245546123999986, 49.041734903000105 ], [ -122.24594820399993, 49.042132633000101 ], [ -122.246116310999966, 49.042298914000121 ], [ -122.246215007999979, 49.042396544000077 ], [ -122.246318990999896, 49.04249943500006 ], [ -122.246021529999936, 49.042587052000066 ], [ -122.245916802999943, 49.042617882000073 ], [ -122.245408804999926, 49.042674996000059 ], [ -122.245273694999966, 49.042658963000079 ], [ -122.244860010999943, 49.042609802000072 ], [ -122.244514200999973, 49.042402109000115 ], [ -122.244504020999955, 49.042395996000032 ], [ -122.244131881999976, 49.042172464000039 ], [ -122.243924285999924, 49.042047799000095 ], [ -122.243258919999931, 49.041765801000061 ], [ -122.242946033999928, 49.041658383000055 ], [ -122.242457600999956, 49.041490706000076 ], [ -122.242240913, 49.041411896000049 ], [ -122.241738888999947, 49.041360897000068 ], [ -122.240585653999986, 49.041366293000038 ], [ -122.239194259000016, 49.041372754000115 ], [ -122.239033289999952, 49.041373498000041 ], [ -122.23868092399999, 49.041332300000086 ], [ -122.238507026999912, 49.041282904000106 ], [ -122.238356309999986, 49.0412018990001 ], [ -122.237607903999958, 49.040507592000104 ], [ -122.237394190999979, 49.040358502000046 ], [ -122.237112799999963, 49.040251298000086 ], [ -122.236724484999968, 49.040180897000049 ], [ -122.236477231999956, 49.040185673000039 ], [ -122.23527248799999, 49.040208943000096 ], [ -122.233227900999935, 49.040248410000039 ], [ -122.232612313999951, 49.040282689000023 ], [ -122.232222982999971, 49.040411512000084 ], [ -122.231926103999982, 49.040625390000059 ], [ -122.231608484999967, 49.040854191000093 ], [ -122.231532085999945, 49.040953394000056 ], [ -122.23157311199999, 49.041037802000119 ], [ -122.23168240199999, 49.041091185000049 ], [ -122.231858125999935, 49.041117202000095 ], [ -122.231945233999937, 49.041114657000094 ], [ -122.23303333099993, 49.041082796000083 ], [ -122.233047009999936, 49.041082396000029 ], [ -122.232728600999977, 49.041467895000068 ], [ -122.232675644999915, 49.041530398000084 ], [ -122.232419982999943, 49.041832008000029 ], [ -122.232411025999937, 49.041842605000106 ], [ -122.231866708999945, 49.042651998000075 ], [ -122.230643991999941, 49.04268210700009 ], [ -122.230278773999927, 49.04279909600006 ], [ -122.230001099999924, 49.042967897000025 ], [ -122.229812913999965, 49.043180297000056 ], [ -122.229693517999976, 49.043523299000064 ], [ -122.229551675999957, 49.043703102000073 ], [ -122.229269001999924, 49.043832894000111 ], [ -122.228901313000023, 49.043896589000028 ], [ -122.228507890999964, 49.043889098000079 ], [ -122.228202007999954, 49.043831504000075 ], [ -122.22731479299999, 49.043450498000034 ], [ -122.227169311999958, 49.043388586000106 ], [ -122.226786924999928, 49.043312884000116 ], [ -122.226419698999933, 49.043268478000051 ], [ -122.225901607999972, 49.043263763000091 ], [ -122.225450464999966, 49.043512958000051 ], [ -122.225155044999894, 49.04384968300009 ], [ -122.225022121999956, 49.044105561000038 ], [ -122.224976340999902, 49.04446818100012 ], [ -122.225040428999947, 49.044639926000173 ], [ -122.224902539999945, 49.044650700000012 ], [ -122.224292806999983, 49.044698390000093 ], [ -122.223798109999933, 49.044893757000089 ], [ -122.223576032, 49.044932831000096 ], [ -122.223414164999895, 49.044955082000072 ], [ -122.223338829999946, 49.044449337000039 ], [ -122.223470940999917, 49.043967146000085 ], [ -122.223642397999981, 49.043607138 ], [ -122.223707114000021, 49.043281218000089 ], [ -122.223716678999949, 49.0430282290001 ], [ -122.223674496999962, 49.04278872400009 ], [ -122.223523042999915, 49.042463338000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146379168", "BldgCostT": "84946668", "sL_LossRatio": "0.699695763782308", "sL_AssetLoss": "589016", "sL_BldgLoss": "412132", "sL_StrLoss": "206252", "sL_NStrLoss": "205880", "sL_ContLoss": "176884", "geom_point": "0101000020E6100000D7F796497F8E5EC0D754F576F4844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.230213420999959, 49.035065818000071 ], [ -122.23029620899996, 49.035051143 ], [ -122.230600775999903, 49.035566840000065 ], [ -122.230601008999884, 49.035567137000022 ], [ -122.230976406999986, 49.035830148000038 ], [ -122.233360811999944, 49.038486007000067 ], [ -122.231544931999977, 49.038763936000052 ], [ -122.231327326999988, 49.038826111000034 ], [ -122.231157053999965, 49.038874732000124 ], [ -122.231043425999985, 49.038922981000049 ], [ -122.230621571999905, 49.03910205800004 ], [ -122.230211340999986, 49.039321356000073 ], [ -122.230118281999921, 49.039371084000024 ], [ -122.229110897999973, 49.039936154000053 ], [ -122.22843862699996, 49.040366771000038 ], [ -122.228405004999942, 49.04038829900005 ], [ -122.227975407999963, 49.040663489000046 ], [ -122.226508428999978, 49.041457138000112 ], [ -122.226405917999898, 49.041512589000014 ], [ -122.225173288999926, 49.041935357000099 ], [ -122.225089217999979, 49.041962233000056 ], [ -122.224098898999983, 49.042278933000055 ], [ -122.223667689999971, 49.042417027000099 ], [ -122.223523042999915, 49.042463338000047 ], [ -122.22328864399999, 49.04219545600003 ], [ -122.223197469999903, 49.042091241000087 ], [ -122.223148833999943, 49.042056545000037 ], [ -122.22271443799994, 49.041746584000087 ], [ -122.222382708999973, 49.041509909000077 ], [ -122.222338026, 49.041468431000069 ], [ -122.221955197999989, 49.041113140000107 ], [ -122.22193391899999, 49.041093415000049 ], [ -122.221712182999909, 49.040887647000019 ], [ -122.22098277399999, 49.040170969000052 ], [ -122.220840424999963, 49.040031102000079 ], [ -122.22021343499992, 49.039412157000122 ], [ -122.220156514999957, 49.03935516800005 ], [ -122.220124335999969, 49.039262954000073 ], [ -122.220004533999941, 49.039151409000091 ], [ -122.219917005999932, 49.03906993800004 ], [ -122.222152383999955, 49.038084979000104 ], [ -122.222448816999986, 49.03795437400003 ], [ -122.223059981999938, 49.037685057000012 ], [ -122.224382235999911, 49.037102363000088 ], [ -122.22464799399998, 49.036985243000096 ], [ -122.22630776599999, 49.036253811000115 ], [ -122.227623927999957, 49.035794327000055 ], [ -122.230136650999967, 49.03508741500012 ], [ -122.230213420999959, 49.035065818000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201694834", "BldgCostT": "129963334", "sL_LossRatio": "0.896860166521248", "sL_AssetLoss": "282174.2", "sL_BldgLoss": "253070.8", "sL_StrLoss": "195430.8", "sL_NStrLoss": "57640", "sL_ContLoss": "29103.4", "geom_point": "0101000020E6100000D2B8C3688E8E5EC00C71BC6DEC854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.225359484999984, 49.049433992000111 ], [ -122.224905782999954, 49.049291815000075 ], [ -122.224628030999966, 49.049257700000034 ], [ -122.22369433899999, 49.049264534000045 ], [ -122.223489424999983, 49.049294296000042 ], [ -122.223518343999942, 49.048987859000121 ], [ -122.223602936999939, 49.048787990000037 ], [ -122.223760069999926, 49.04841936800004 ], [ -122.22376742099999, 49.047906625000074 ], [ -122.223757405999919, 49.047614031000101 ], [ -122.223734493, 49.046945295000057 ], [ -122.223527929999975, 49.046421438000039 ], [ -122.223548412999932, 49.04621929500005 ], [ -122.223646490999926, 49.046021697000121 ], [ -122.22395510099993, 49.045742261000022 ], [ -122.223683460999965, 49.045430647000032 ], [ -122.223414164999895, 49.044955082000072 ], [ -122.223576032, 49.044932831000096 ], [ -122.223798109999933, 49.044893757000089 ], [ -122.224292806999983, 49.044698390000093 ], [ -122.224902539999945, 49.044650700000012 ], [ -122.225040428999947, 49.044639926000173 ], [ -122.224976340999902, 49.04446818100012 ], [ -122.225022121999956, 49.044105561000038 ], [ -122.225155044999894, 49.04384968300009 ], [ -122.225450464999966, 49.043512958000051 ], [ -122.225901607999972, 49.043263763000091 ], [ -122.226419698999933, 49.043268478000051 ], [ -122.226786924999928, 49.043312884000116 ], [ -122.227169311999958, 49.043388586000106 ], [ -122.22731479299999, 49.043450498000034 ], [ -122.228202007999954, 49.043831504000075 ], [ -122.228507890999964, 49.043889098000079 ], [ -122.228901313000023, 49.043896589000028 ], [ -122.229269001999924, 49.043832894000111 ], [ -122.229551675999957, 49.043703102000073 ], [ -122.229693517999976, 49.043523299000064 ], [ -122.229812913999965, 49.043180297000056 ], [ -122.230001099999924, 49.042967897000025 ], [ -122.230278773999927, 49.04279909600006 ], [ -122.230643991999941, 49.04268210700009 ], [ -122.231866708999945, 49.042651998000075 ], [ -122.232179803999941, 49.042671107000025 ], [ -122.232570080999892, 49.042801993000111 ], [ -122.232761502999921, 49.042939493000034 ], [ -122.23292179299996, 49.043138990000038 ], [ -122.232932813999966, 49.04334218100005 ], [ -122.232923002999939, 49.043513198000028 ], [ -122.232809208, 49.043685902000099 ], [ -122.232462617999914, 49.043963089000066 ], [ -122.232271506999965, 49.044075408000083 ], [ -122.231968017999932, 49.044191893000068 ], [ -122.231580889999933, 49.04424140800009 ], [ -122.231060408999937, 49.044249305000072 ], [ -122.230573597999978, 49.044347582000029 ], [ -122.230248520999936, 49.044527292000026 ], [ -122.230052182999884, 49.044754789000109 ], [ -122.229886214999937, 49.045065400000112 ], [ -122.229668994999926, 49.045467094000067 ], [ -122.229683882999936, 49.045704696000065 ], [ -122.230017529999941, 49.046194755 ], [ -122.230036104999954, 49.046221998000142 ], [ -122.230019758999958, 49.046361067000092 ], [ -122.22997891599999, 49.046709502000155 ], [ -122.230032627999918, 49.046889728000053 ], [ -122.230206015999926, 49.047471199000071 ], [ -122.230235922999938, 49.047592200000103 ], [ -122.230333375999962, 49.047705971000077 ], [ -122.230360900999926, 49.047738098000139 ], [ -122.23079242899999, 49.048036404000086 ], [ -122.230384595999936, 49.048341194000024 ], [ -122.230168717999973, 49.048676212000039 ], [ -122.230118701999984, 49.048787096000119 ], [ -122.229924085, 49.049044495000068 ], [ -122.229659602999973, 49.049219099000069 ], [ -122.229209605999969, 49.049419714000109 ], [ -122.228728113999949, 49.049536231000047 ], [ -122.228141286999985, 49.04956794700005 ], [ -122.227688600999926, 49.049497845000069 ], [ -122.227174217999945, 49.049412147000119 ], [ -122.226623902999947, 49.049415357000093 ], [ -122.225987771999939, 49.049498448000143 ], [ -122.225697781999912, 49.049497282000068 ], [ -122.225359484999984, 49.049433992000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209084500", "BldgCostT": "135595000", "sL_LossRatio": "0.821852571559702", "sL_AssetLoss": "734711.7", "sL_BldgLoss": "603824.7", "sL_StrLoss": "400559.7", "sL_NStrLoss": "203265", "sL_ContLoss": "130887", "geom_point": "0101000020E6100000E20A94B91E8E5EC0F4DD9D4A40864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.215553939999936, 49.053586750000036 ], [ -122.215554030999911, 49.053580917000033 ], [ -122.212621892999906, 49.053477505000096 ], [ -122.212627413999911, 49.053409582000029 ], [ -122.211910572999983, 49.053384287000036 ], [ -122.212036295999965, 49.051837752000054 ], [ -122.21229151199999, 49.051836009000063 ], [ -122.212301096999965, 49.051832811000132 ], [ -122.212650139999951, 49.051716303000056 ], [ -122.21243955499996, 49.051599685000042 ], [ -122.212331541999944, 49.051526809000066 ], [ -122.212141584999955, 49.051402170000088 ], [ -122.211828989999944, 49.051308495000065 ], [ -122.211595541999927, 49.051231404000056 ], [ -122.211485621999941, 49.051201634000059 ], [ -122.211491127999949, 49.050853438000075 ], [ -122.211565693999887, 49.050829144000048 ], [ -122.212025172, 49.050871208000082 ], [ -122.212537100999953, 49.050918071000098 ], [ -122.212551290999954, 49.050919382000089 ], [ -122.212584845999984, 49.050925394000046 ], [ -122.213097991999931, 49.051004297000098 ], [ -122.21366100099999, 49.050883205000019 ], [ -122.213719876999974, 49.050826174000107 ], [ -122.213855100999979, 49.05069521300009 ], [ -122.213860087999976, 49.050371911000106 ], [ -122.214001889999906, 49.050092807000091 ], [ -122.213898165000032, 49.049848112000113 ], [ -122.214380772999945, 49.049865134000129 ], [ -122.214384383, 49.049635985000087 ], [ -122.214418707000021, 49.049628499000029 ], [ -122.214496767999904, 49.049547014000154 ], [ -122.214572806999939, 49.049467604000085 ], [ -122.214389523999927, 49.049309684000065 ], [ -122.214399600999968, 49.048670154000092 ], [ -122.214526278999969, 49.048846594000054 ], [ -122.21466441199999, 49.048892191000078 ], [ -122.214868680999956, 49.048866604000132 ], [ -122.214979107999937, 49.048768305000102 ], [ -122.215021188999941, 49.048608352000045 ], [ -122.215221679999956, 49.04860971600003 ], [ -122.215225925999945, 49.048339875000067 ], [ -122.215050820000016, 49.048338684000058 ], [ -122.214915325999954, 49.048190386000073 ], [ -122.214819372999955, 49.04808537300007 ], [ -122.214828155999939, 49.047527560000077 ], [ -122.215829546999913, 49.047534369000068 ], [ -122.215819784999908, 49.047560499000127 ], [ -122.216057784999933, 49.047656922000037 ], [ -122.216051202999935, 49.048075614000034 ], [ -122.216720163999952, 49.04808015700003 ], [ -122.216739460999989, 49.047842459000073 ], [ -122.216842309999947, 49.047818306000082 ], [ -122.217390327999965, 49.047502963000106 ], [ -122.217621989999927, 49.047369646000064 ], [ -122.217734650999958, 49.04730480300006 ], [ -122.217753105999975, 49.047294192000088 ], [ -122.218318705999977, 49.047073504000132 ], [ -122.218414729999964, 49.046979454000038 ], [ -122.218583279999933, 49.046814300000044 ], [ -122.218392013999917, 49.045877091000108 ], [ -122.218436159999925, 49.045793124000106 ], [ -122.21865939599995, 49.045368476000071 ], [ -122.21874540099999, 49.045204906000066 ], [ -122.218718771999988, 49.044855115000118 ], [ -122.218700194999911, 49.04461100700005 ], [ -122.218979698999959, 49.044253491000084 ], [ -122.219807604999957, 49.043682409000084 ], [ -122.219806803999973, 49.0431477280001 ], [ -122.219806497999983, 49.042944705000075 ], [ -122.2204671099999, 49.042688303000098 ], [ -122.220566091999913, 49.042554509000041 ], [ -122.220377598999946, 49.042300991000097 ], [ -122.219901187999966, 49.042162811 ], [ -122.219508785999935, 49.041872297000062 ], [ -122.21941958299999, 49.041422200000078 ], [ -122.219586598999967, 49.041323888000122 ], [ -122.219968116999937, 49.041299698000081 ], [ -122.22070461, 49.041530401000045 ], [ -122.221056690999916, 49.04177540400012 ], [ -122.221220993999978, 49.041776798000093 ], [ -122.22193391899999, 49.041093415000049 ], [ -122.221955197999989, 49.041113140000107 ], [ -122.222338026, 49.041468431000069 ], [ -122.222382708999973, 49.041509909000077 ], [ -122.22271443799994, 49.041746584000087 ], [ -122.223148833999943, 49.042056545000037 ], [ -122.223197469999903, 49.042091241000087 ], [ -122.22328864399999, 49.04219545600003 ], [ -122.223523042999915, 49.042463338000047 ], [ -122.223674496999962, 49.04278872400009 ], [ -122.223716678999949, 49.0430282290001 ], [ -122.223707114000021, 49.043281218000089 ], [ -122.223642397999981, 49.043607138 ], [ -122.223470940999917, 49.043967146000085 ], [ -122.223338829999946, 49.044449337000039 ], [ -122.223414164999895, 49.044955082000072 ], [ -122.223683460999965, 49.045430647000032 ], [ -122.22395510099993, 49.045742261000022 ], [ -122.223646490999926, 49.046021697000121 ], [ -122.223548412999932, 49.04621929500005 ], [ -122.223527929999975, 49.046421438000039 ], [ -122.223734493, 49.046945295000057 ], [ -122.223757405999919, 49.047614031000101 ], [ -122.22376742099999, 49.047906625000074 ], [ -122.223760069999926, 49.04841936800004 ], [ -122.223602936999939, 49.048787990000037 ], [ -122.223518343999942, 49.048987859000121 ], [ -122.223489424999983, 49.049294296000042 ], [ -122.22369433899999, 49.049264534000045 ], [ -122.224628030999966, 49.049257700000034 ], [ -122.224905782999954, 49.049291815000075 ], [ -122.225359484999984, 49.049433992000111 ], [ -122.225697781999912, 49.049497282000068 ], [ -122.225987771999939, 49.049498448000143 ], [ -122.226623902999947, 49.049415357000093 ], [ -122.227174217999945, 49.049412147000119 ], [ -122.227688600999926, 49.049497845000069 ], [ -122.228141286999985, 49.04956794700005 ], [ -122.228728113999949, 49.049536231000047 ], [ -122.229209605999969, 49.049419714000109 ], [ -122.229659602999973, 49.049219099000069 ], [ -122.229924085, 49.049044495000068 ], [ -122.230118701999984, 49.048787096000119 ], [ -122.230608726999961, 49.048919795000103 ], [ -122.23083951299995, 49.048925194000084 ], [ -122.231070722999917, 49.04887559600008 ], [ -122.231707100999969, 49.04848409600006 ], [ -122.23198119599995, 49.04878310800003 ], [ -122.231985213999948, 49.049055484000114 ], [ -122.231891484999935, 49.049283910000057 ], [ -122.231296578999917, 49.050091594000101 ], [ -122.231299597999922, 49.050190003000111 ], [ -122.231321161, 49.051006649000023 ], [ -122.231245055999963, 49.051010450000057 ], [ -122.230551724999955, 49.051045406000064 ], [ -122.22960215099999, 49.051057279000062 ], [ -122.229528590999934, 49.051058219000055 ], [ -122.229095583999978, 49.051116009000069 ], [ -122.228902354999946, 49.05116561700008 ], [ -122.228128602, 49.051364214000102 ], [ -122.227028716999925, 49.051514005000058 ], [ -122.226812002, 49.051570406000096 ], [ -122.226305197999935, 49.05177980500013 ], [ -122.225998273999906, 49.051915268000037 ], [ -122.225873813999968, 49.051970218000086 ], [ -122.22554583599999, 49.052032614000098 ], [ -122.22513281, 49.052063107000052 ], [ -122.22478485699996, 49.052068007000038 ], [ -122.224571736999977, 49.052029854000033 ], [ -122.224429545999953, 49.051960848000114 ], [ -122.224353253999951, 49.051855385000074 ], [ -122.224349950999922, 49.051676769000018 ], [ -122.224358339999981, 49.051641893000117 ], [ -122.224393329999927, 49.051496172000029 ], [ -122.224340657999932, 49.051453730000034 ], [ -122.224249609999944, 49.05144602900009 ], [ -122.224235868999969, 49.051447865000085 ], [ -122.224047737999939, 49.051472962000027 ], [ -122.223768218999936, 49.051510229000037 ], [ -122.223145565999928, 49.051679460000074 ], [ -122.222987895999921, 49.051688674000076 ], [ -122.222056689999931, 49.051743026000061 ], [ -122.22145276599997, 49.051884035000107 ], [ -122.220747332999935, 49.052163046000025 ], [ -122.220396418999911, 49.05222100800006 ], [ -122.219854396999921, 49.052239803000056 ], [ -122.219032907999988, 49.052279370000129 ], [ -122.218921513999987, 49.052218667000027 ], [ -122.217462342999937, 49.053050789000061 ], [ -122.217127784999946, 49.053176942000036 ], [ -122.215553939999936, 49.053586750000036 ] ], [ [ -122.22020021799996, 49.045298655000153 ], [ -122.22020149399998, 49.045216957000065 ], [ -122.219791185999981, 49.045202506000038 ], [ -122.219789908999971, 49.045284204000083 ], [ -122.22020021799996, 49.045298655000153 ] ], [ [ -122.219788728999958, 49.045132376000041 ], [ -122.2198543599999, 49.044323209000062 ], [ -122.219804948999951, 49.044322875000034 ], [ -122.219800724999956, 49.04459271600016 ], [ -122.219390239999953, 49.044589941000091 ], [ -122.219381792999968, 49.04512962400004 ], [ -122.219788728999958, 49.045132376000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.875789473684211", "sL_AssetLoss": "9500", "sL_BldgLoss": "8320", "sL_StrLoss": "5380", "sL_NStrLoss": "2940", "sL_ContLoss": "1180", "geom_point": "0101000020E6100000C0C27219B18E5EC0BB0B7306EF864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.231545881999978, 49.054988932000072 ], [ -122.228622616999971, 49.054142415000044 ], [ -122.228492822999897, 49.054093440000081 ], [ -122.22783162199994, 49.053832385000099 ], [ -122.22765587899994, 49.053764111000085 ], [ -122.227660651999912, 49.053680124000074 ], [ -122.228834609999979, 49.053762527000053 ], [ -122.229923882999969, 49.053664301000069 ], [ -122.22991745899995, 49.054080244000026 ], [ -122.229912889999952, 49.054375943000068 ], [ -122.23073402599999, 49.054381419 ], [ -122.230729861999947, 49.054651261000046 ], [ -122.231551003999954, 49.054656731000136 ], [ -122.231545881999978, 49.054988932000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167023250", "BldgCostT": "114245000", "sL_LossRatio": "0.944049846135518", "sL_AssetLoss": "288760.6", "sL_BldgLoss": "272604.4", "sL_StrLoss": "213325.4", "sL_NStrLoss": "59279", "sL_ContLoss": "16156.2", "geom_point": "0101000020E6100000574A8DD800905EC0AA7BE03A31874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.243602292999924, 49.060387715000047 ], [ -122.242110184999916, 49.058762741000102 ], [ -122.242056419, 49.058743442000029 ], [ -122.240902573999975, 49.058319187000095 ], [ -122.241064855999952, 49.056307714000113 ], [ -122.244538080999959, 49.056429270000095 ], [ -122.244662786999982, 49.054881997000066 ], [ -122.244782564999923, 49.054886187000093 ], [ -122.244826711, 49.054338399000109 ], [ -122.24818215799999, 49.054455722000064 ], [ -122.248237404999898, 49.053769579000019 ], [ -122.250040968999912, 49.053832597000074 ], [ -122.250042979999961, 49.053698903000104 ], [ -122.249632415999884, 49.053696234000036 ], [ -122.249644599999982, 49.052886705000084 ], [ -122.250876272999989, 49.052894708000053 ], [ -122.250878698999912, 49.052733369000052 ], [ -122.254390031999932, 49.052670029000097 ], [ -122.25567408799999, 49.052763519000052 ], [ -122.255926455999898, 49.052791531000082 ], [ -122.256522581999917, 49.052850274 ], [ -122.257305212999981, 49.052831679000114 ], [ -122.257431181999934, 49.052834037000089 ], [ -122.260399574, 49.05271520000008 ], [ -122.26040096399997, 49.052887283000111 ], [ -122.260402298999935, 49.053046999000053 ], [ -122.260427499999949, 49.053755503000097 ], [ -122.260457087999896, 49.054444487000076 ], [ -122.260490583999967, 49.055493206000151 ], [ -122.257650408999922, 49.05556999300007 ], [ -122.255578998999937, 49.055854798000048 ], [ -122.254776871999965, 49.056019557000091 ], [ -122.254539596999948, 49.056068292000077 ], [ -122.253542103999905, 49.056424693000061 ], [ -122.25301601299999, 49.056640507000083 ], [ -122.252584011999943, 49.056817705000121 ], [ -122.251676907999951, 49.057189999000123 ], [ -122.251469487999927, 49.057352209000022 ], [ -122.251246791999918, 49.057602288000076 ], [ -122.251141317999938, 49.057859100000016 ], [ -122.251119504999949, 49.05841908900004 ], [ -122.251100779999945, 49.058715488000097 ], [ -122.251089488999966, 49.058894104000018 ], [ -122.251048065999896, 49.058966503000136 ], [ -122.250992398999983, 49.05906380200004 ], [ -122.250755602999973, 49.05934211200006 ], [ -122.250732399999919, 49.05936939300009 ], [ -122.25032805699999, 49.059671511000026 ], [ -122.250315300999944, 49.059681030000036 ], [ -122.24993589599994, 49.05996450500011 ], [ -122.249840445999922, 49.060037746000063 ], [ -122.249308717999909, 49.060445692 ], [ -122.248658613999936, 49.060343599000099 ], [ -122.248608499999989, 49.060344038000011 ], [ -122.247542388999989, 49.060353296000066 ], [ -122.246172874999942, 49.060364904000039 ], [ -122.244077491999946, 49.0603835000001 ], [ -122.243602292999924, 49.060387715000047 ] ], [ [ -122.247489981999948, 49.059619404000067 ], [ -122.247504279999958, 49.058672307000045 ], [ -122.246351472999933, 49.058632007000057 ], [ -122.246337753999981, 49.058802278000051 ], [ -122.246680990999963, 49.05880451900002 ], [ -122.24667283499997, 49.05934420400007 ], [ -122.247083445, 49.059346883000067 ], [ -122.24707937, 49.059616726000044 ], [ -122.247489981999948, 49.059619404000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.941927448232913", "sL_AssetLoss": "1284.6", "sL_BldgLoss": "1210", "sL_StrLoss": "934", "sL_NStrLoss": "276", "sL_ContLoss": "74.6", "geom_point": "0101000020E6100000641CE92D1A8F5EC077E69268D1864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.235658594999961, 49.053225184000077 ], [ -122.23650148899999, 49.053146210000101 ], [ -122.236498518999909, 49.053340223000063 ], [ -122.235266837999944, 49.053332067000035 ], [ -122.235268072999958, 49.053251613000029 ], [ -122.235658594999961, 49.053225184000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65803333", "BldgCostT": "44908333", "sL_LossRatio": "0.799387260722937", "sL_AssetLoss": "421060", "sL_BldgLoss": "336590", "sL_StrLoss": "190810", "sL_NStrLoss": "145780", "sL_ContLoss": "84470", "geom_point": "0101000020E6100000721FD2D249905EC0E12EF3045F874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.251119504999949, 49.05841908900004 ], [ -122.251141317999938, 49.057859100000016 ], [ -122.251246791999918, 49.057602288000076 ], [ -122.251469487999927, 49.057352209000022 ], [ -122.251676907999951, 49.057189999000123 ], [ -122.252584011999943, 49.056817705000121 ], [ -122.25301601299999, 49.056640507000083 ], [ -122.253542103999905, 49.056424693000061 ], [ -122.254539596999948, 49.056068292000077 ], [ -122.254925108999956, 49.056618111000013 ], [ -122.255176217, 49.056780191000051 ], [ -122.255503798999953, 49.056875419000086 ], [ -122.25713820199999, 49.057006385000122 ], [ -122.257359892999929, 49.057074501000066 ], [ -122.257462356999952, 49.05713223300004 ], [ -122.257663601999923, 49.057245591000132 ], [ -122.257840108999943, 49.057468101000076 ], [ -122.257867637999951, 49.057538804000089 ], [ -122.257900201999973, 49.057622493000046 ], [ -122.257905285, 49.057780500000071 ], [ -122.257874887999947, 49.058312216000147 ], [ -122.25776807699999, 49.058414891000034 ], [ -122.257679623999977, 49.058460502000031 ], [ -122.257644970999962, 49.058464249000096 ], [ -122.257440814999939, 49.058486410000064 ], [ -122.256249713999978, 49.058458391000102 ], [ -122.255773710999947, 49.058403884000029 ], [ -122.254764004999942, 49.058418296000148 ], [ -122.25439530599999, 49.058442413000137 ], [ -122.254194931999976, 49.058441260000045 ], [ -122.253471904, 49.058437197000075 ], [ -122.252197315000018, 49.05842700200003 ], [ -122.251119504999949, 49.05841908900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115093249", "BldgCostT": "77164999", "sL_LossRatio": "0.818526272602765", "sL_AssetLoss": "662972", "sL_BldgLoss": "542660", "sL_StrLoss": "311578", "sL_NStrLoss": "231082", "sL_ContLoss": "120312", "geom_point": "0101000020E61000008C52080561905EC084A6579087874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.24993589599994, 49.05996450500011 ], [ -122.250315300999944, 49.059681030000036 ], [ -122.25032805699999, 49.059671511000026 ], [ -122.250732399999919, 49.05936939300009 ], [ -122.250755602999973, 49.05934211200006 ], [ -122.250992398999983, 49.05906380200004 ], [ -122.251048065999896, 49.058966503000136 ], [ -122.251089488999966, 49.058894104000018 ], [ -122.251100779999945, 49.058715488000097 ], [ -122.251119504999949, 49.05841908900004 ], [ -122.252197315000018, 49.05842700200003 ], [ -122.253471904, 49.058437197000075 ], [ -122.254194931999976, 49.058441260000045 ], [ -122.25439530599999, 49.058442413000137 ], [ -122.254764004999942, 49.058418296000148 ], [ -122.255773710999947, 49.058403884000029 ], [ -122.256249713999978, 49.058458391000102 ], [ -122.257440814999939, 49.058486410000064 ], [ -122.257644970999962, 49.058464249000096 ], [ -122.257679623999977, 49.058460502000031 ], [ -122.25776807699999, 49.058414891000034 ], [ -122.257874887999947, 49.058312216000147 ], [ -122.257905285, 49.057780500000071 ], [ -122.257900201999973, 49.057622493000046 ], [ -122.257867637999951, 49.057538804000089 ], [ -122.257840108999943, 49.057468101000076 ], [ -122.257663601999923, 49.057245591000132 ], [ -122.257462356999952, 49.05713223300004 ], [ -122.257359892999929, 49.057074501000066 ], [ -122.25713820199999, 49.057006385000122 ], [ -122.255503798999953, 49.056875419000086 ], [ -122.255176217, 49.056780191000051 ], [ -122.254925108999956, 49.056618111000013 ], [ -122.254539596999948, 49.056068292000077 ], [ -122.254776871999965, 49.056019557000091 ], [ -122.255578998999937, 49.055854798000048 ], [ -122.257650408999922, 49.05556999300007 ], [ -122.260490583999967, 49.055493206000151 ], [ -122.260529575999968, 49.056463515000132 ], [ -122.260564258999963, 49.057327500000014 ], [ -122.260632580999967, 49.059027823000093 ], [ -122.26064815699999, 49.059415218000034 ], [ -122.260663690999934, 49.059802281000053 ], [ -122.26067408199999, 49.060061392000087 ], [ -122.259436485999942, 49.060049798000051 ], [ -122.256250024999957, 49.060651002000057 ], [ -122.25608084699995, 49.060688283000069 ], [ -122.254473627999943, 49.061042508000064 ], [ -122.252368903999979, 49.061653288000095 ], [ -122.251736898999965, 49.061801601000091 ], [ -122.251380607, 49.061858601000075 ], [ -122.251304827999931, 49.061853129000063 ], [ -122.25113981799997, 49.061841206000082 ], [ -122.250890785999957, 49.061789199000017 ], [ -122.250535212999949, 49.061598312000093 ], [ -122.250265986, 49.061286902000099 ], [ -122.250151291999927, 49.061097088000068 ], [ -122.250146012999934, 49.061010399000104 ], [ -122.250123803999955, 49.060214510000037 ], [ -122.24993589599994, 49.05996450500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91231584", "BldgCostT": "61973334", "sL_LossRatio": "0.803147810951505", "sL_AssetLoss": "622782", "sL_BldgLoss": "500186", "sL_StrLoss": "272346", "sL_NStrLoss": "227840", "sL_ContLoss": "122596", "geom_point": "0101000020E61000002693857504905EC06F23F9A5D9874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.24575002, 49.062182900000082 ], [ -122.245210996999973, 49.062077601000034 ], [ -122.244800314999949, 49.062078505000109 ], [ -122.24451981199995, 49.062078593000159 ], [ -122.24410993499994, 49.06217768600002 ], [ -122.244080093999955, 49.062184913000117 ], [ -122.243889586999927, 49.062204392000119 ], [ -122.243755991999933, 49.062163688000055 ], [ -122.243648920999988, 49.062049988000076 ], [ -122.243641250999929, 49.061787264000053 ], [ -122.243627110999952, 49.061301801000063 ], [ -122.243602292999924, 49.060387715000047 ], [ -122.244077491999946, 49.0603835000001 ], [ -122.246172874999942, 49.060364904000039 ], [ -122.247542388999989, 49.060353296000066 ], [ -122.248608499999989, 49.060344038000011 ], [ -122.248658613999936, 49.060343599000099 ], [ -122.249308717999909, 49.060445692 ], [ -122.249840445999922, 49.060037746000063 ], [ -122.24993589599994, 49.05996450500011 ], [ -122.250123803999955, 49.060214510000037 ], [ -122.250146012999934, 49.061010399000104 ], [ -122.250151291999927, 49.061097088000068 ], [ -122.250265986, 49.061286902000099 ], [ -122.250535212999949, 49.061598312000093 ], [ -122.250890785999957, 49.061789199000017 ], [ -122.25113981799997, 49.061841206000082 ], [ -122.251304827999931, 49.061853129000063 ], [ -122.251380607, 49.061858601000075 ], [ -122.251736898999965, 49.061801601000091 ], [ -122.252368903999979, 49.061653288000095 ], [ -122.254473627999943, 49.061042508000064 ], [ -122.25608084699995, 49.060688283000069 ], [ -122.256250024999957, 49.060651002000057 ], [ -122.259436485999942, 49.060049798000051 ], [ -122.26067408199999, 49.060061392000087 ], [ -122.260960047999944, 49.060063849000144 ], [ -122.262014302999972, 49.060072886000093 ], [ -122.26102351499992, 49.060423721000049 ], [ -122.260908577999899, 49.060464401000083 ], [ -122.25999280399999, 49.060757048000013 ], [ -122.259301081999979, 49.060917758000038 ], [ -122.258753166999924, 49.061008659000059 ], [ -122.258117362999954, 49.061032783000059 ], [ -122.257860895999926, 49.061042502000127 ], [ -122.25732688399998, 49.061096890000073 ], [ -122.25332321799999, 49.062073311000084 ], [ -122.252084789999941, 49.062581911000038 ], [ -122.251347279999919, 49.063038403000114 ], [ -122.251081515999942, 49.062802898000072 ], [ -122.250670094999975, 49.062609101000135 ], [ -122.24981311599997, 49.06189760300007 ], [ -122.249561089999943, 49.061797796000128 ], [ -122.248761203999933, 49.061670601000053 ], [ -122.248518405999917, 49.06200019100001 ], [ -122.248426706999965, 49.062089717000042 ], [ -122.248072710999935, 49.062435396000083 ], [ -122.247909170999961, 49.062554133000049 ], [ -122.247822690999968, 49.062616912000131 ], [ -122.24751319899994, 49.062772011000042 ], [ -122.247052520999972, 49.063003792000082 ], [ -122.246598002999988, 49.06312320100006 ], [ -122.246073680999984, 49.062378200000069 ], [ -122.24575002, 49.062182900000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82885394", "BldgCostT": "51646523", "sL_LossRatio": "0.767057372850517", "sL_AssetLoss": "431441", "sL_BldgLoss": "330940", "sL_StrLoss": "174731", "sL_NStrLoss": "156209", "sL_ContLoss": "100501", "geom_point": "0101000020E6100000EB98A9FF62905EC0BECD1B2705884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.259301081999979, 49.060917758000038 ], [ -122.25999280399999, 49.060757048000013 ], [ -122.259943226999937, 49.061357553000079 ], [ -122.259808839999963, 49.063031494000143 ], [ -122.258580284999951, 49.063177999000047 ], [ -122.257917114999884, 49.063255901000026 ], [ -122.257044921999977, 49.063661832000015 ], [ -122.256967389999915, 49.063697906000044 ], [ -122.255784187, 49.064369700000064 ], [ -122.2552543, 49.064576694000067 ], [ -122.254905001999987, 49.064580680000105 ], [ -122.254757410999986, 49.064543994000097 ], [ -122.254488988999981, 49.064476912000046 ], [ -122.254137983999954, 49.064246502000124 ], [ -122.25388118799999, 49.064067410000092 ], [ -122.25378418599999, 49.063999795000043 ], [ -122.252009301, 49.063655689000022 ], [ -122.251721782999979, 49.06348699100004 ], [ -122.251571875999957, 49.063307447000057 ], [ -122.251347279999919, 49.063038403000114 ], [ -122.252084789999941, 49.062581911000038 ], [ -122.25332321799999, 49.062073311000084 ], [ -122.25732688399998, 49.061096890000073 ], [ -122.257860895999926, 49.061042502000127 ], [ -122.258117362999954, 49.061032783000059 ], [ -122.258753166999924, 49.061008659000059 ], [ -122.259301081999979, 49.060917758000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220568522", "BldgCostT": "147089158", "sL_LossRatio": "0.810047802568284", "sL_AssetLoss": "928402", "sL_BldgLoss": "752050", "sL_StrLoss": "353230", "sL_NStrLoss": "398820", "sL_ContLoss": "176352", "geom_point": "0101000020E61000007E7D318471905EC0CF809B4153864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.253945713999983, 49.047863293000056 ], [ -122.253827802999979, 49.047423811000058 ], [ -122.256142891999929, 49.047814685000056 ], [ -122.258003596999927, 49.048155397000109 ], [ -122.260240881999934, 49.048612996000024 ], [ -122.260299888999953, 49.049752809000047 ], [ -122.260312309999946, 49.049990296000011 ], [ -122.257375596999935, 49.049978093000064 ], [ -122.257357617999929, 49.052280908000021 ], [ -122.256218081999947, 49.052209589000022 ], [ -122.25618070299997, 49.051550196000079 ], [ -122.255961515999942, 49.051060209000099 ], [ -122.25547291, 49.050568101000074 ], [ -122.255007096999947, 49.050404915000058 ], [ -122.254944010999978, 49.049708504000144 ], [ -122.254929813999951, 49.049595306000043 ], [ -122.254272984999901, 49.048438186000062 ], [ -122.254011616, 49.047980104000018 ], [ -122.253945713999983, 49.047863293000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122458918", "BldgCostT": "79091668", "sL_LossRatio": "0.813856853003976", "sL_AssetLoss": "564818", "sL_BldgLoss": "459681", "sL_StrLoss": "267300", "sL_NStrLoss": "192381", "sL_ContLoss": "105137", "geom_point": "0101000020E610000064AB1E726B905EC05B49332FEA854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.253332208999964, 49.047326208000129 ], [ -122.252540186999951, 49.046932488000046 ], [ -122.252402882999903, 49.046834218000072 ], [ -122.252207445999971, 49.046694332000065 ], [ -122.252141253999937, 49.046646951000085 ], [ -122.25034089499999, 49.045358187000041 ], [ -122.249298849999988, 49.044655576 ], [ -122.249819460999959, 49.044272578000111 ], [ -122.251566989999972, 49.045338911000044 ], [ -122.25190562599991, 49.04555170600004 ], [ -122.253215688999944, 49.046698290000052 ], [ -122.253925726999938, 49.046921407000106 ], [ -122.255448987999941, 49.047170213000136 ], [ -122.255612497999962, 49.046548400000084 ], [ -122.255456386999967, 49.046431187000074 ], [ -122.254072810999972, 49.04611239500008 ], [ -122.253769590000019, 49.045935093000054 ], [ -122.253139689999941, 49.045295497000019 ], [ -122.253147847999983, 49.044962192000042 ], [ -122.253148074999928, 49.044953204000095 ], [ -122.25482091399999, 49.044975502000035 ], [ -122.254842688999958, 49.044533593000054 ], [ -122.256124602999989, 49.044550404000105 ], [ -122.257490101999963, 49.044532207000081 ], [ -122.257966791999976, 49.044473997000125 ], [ -122.25804359299994, 49.044477224000055 ], [ -122.260213787999959, 49.044568618000092 ], [ -122.260178561999908, 49.044964718000173 ], [ -122.260172298999976, 49.045034995000023 ], [ -122.26017874199999, 49.045415148000103 ], [ -122.260186596999958, 49.045879401 ], [ -122.260188715999945, 49.046126497000024 ], [ -122.260193142999952, 49.046368757000032 ], [ -122.260207491999907, 49.047154 ], [ -122.260223423999946, 49.047848946000066 ], [ -122.260240881999934, 49.048612996000024 ], [ -122.258003596999927, 49.048155397000109 ], [ -122.256142891999929, 49.047814685000056 ], [ -122.253827802999979, 49.047423811000058 ], [ -122.253332208999964, 49.047326208000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103376667", "BldgCostT": "69326667", "sL_LossRatio": "0.86427102070021", "sL_AssetLoss": "402508", "sL_BldgLoss": "347876", "sL_StrLoss": "222836", "sL_NStrLoss": "125040", "sL_ContLoss": "54632", "geom_point": "0101000020E610000029AA3C8961905EC0F98B4DE968854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.254811607999969, 49.044375708000075 ], [ -122.254710108999973, 49.044226108000053 ], [ -122.252501116999952, 49.042738904000082 ], [ -122.252356919999926, 49.04261040600003 ], [ -122.252239195999934, 49.042423306 ], [ -122.252266089999964, 49.042019278000026 ], [ -122.252502987999918, 49.03846200900005 ], [ -122.254482792999951, 49.038422883000102 ], [ -122.254368111999952, 49.041586097000064 ], [ -122.254418005, 49.041731210000115 ], [ -122.254618291999932, 49.041793217000134 ], [ -122.255274804999914, 49.041811595000105 ], [ -122.255669811999965, 49.041730698000137 ], [ -122.256016796999958, 49.041549883000073 ], [ -122.25611978799995, 49.041493992 ], [ -122.256483794999966, 49.041390397000036 ], [ -122.257471187999926, 49.041359897000063 ], [ -122.258510196999978, 49.041675602000119 ], [ -122.259778494999964, 49.041672896000073 ], [ -122.260371008999968, 49.041671068000021 ], [ -122.26049008499993, 49.041670693000064 ], [ -122.260365898999964, 49.04297990900006 ], [ -122.260331580999932, 49.043338603000045 ], [ -122.260213787999959, 49.044568618000092 ], [ -122.25804359299994, 49.044477224000055 ], [ -122.257966791999976, 49.044473997000125 ], [ -122.257490101999963, 49.044532207000081 ], [ -122.256124602999989, 49.044550404000105 ], [ -122.254842688999958, 49.044533593000054 ], [ -122.254811607999969, 49.044375708000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167322334", "BldgCostT": "109293334", "sL_LossRatio": "0.863290053374302", "sL_AssetLoss": "540897", "sL_BldgLoss": "466951", "sL_StrLoss": "307066", "sL_NStrLoss": "159885", "sL_ContLoss": "73946", "geom_point": "0101000020E61000000E28A3E30D905EC06FA275D86D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249298849999988, 49.044655576 ], [ -122.247909915999955, 49.043774695000081 ], [ -122.247522095999955, 49.043528725000044 ], [ -122.247180551999946, 49.043236542000059 ], [ -122.246963440999963, 49.043050796000038 ], [ -122.246686343999912, 49.042813736000042 ], [ -122.246318990999896, 49.04249943500006 ], [ -122.246336241, 49.042492610000039 ], [ -122.247047084999949, 49.042213062000023 ], [ -122.247792500999978, 49.041919916000055 ], [ -122.247807565999921, 49.041908974000137 ], [ -122.248131004999919, 49.041674757000045 ], [ -122.24824759699996, 49.041523340000069 ], [ -122.248344301999978, 49.04139769800004 ], [ -122.248383103999956, 49.041347314000078 ], [ -122.248474588999954, 49.041127793000051 ], [ -122.248465201999949, 49.040820008000011 ], [ -122.24837060599998, 49.040431792000078 ], [ -122.248246495999965, 49.040222796000087 ], [ -122.248089119, 49.039969308000103 ], [ -122.248031413999982, 49.039750910000045 ], [ -122.248048695999984, 49.039502710000065 ], [ -122.248113197999885, 49.039295817000031 ], [ -122.248246703999939, 49.039115697000149 ], [ -122.248456574, 49.038904788000046 ], [ -122.248696893, 49.038757207000124 ], [ -122.249240104999984, 49.038500381000055 ], [ -122.249918006999906, 49.038491590000056 ], [ -122.250801292999967, 49.038481496000053 ], [ -122.251869050999929, 49.038469251000102 ], [ -122.252502987999918, 49.03846200900005 ], [ -122.252266089999964, 49.042019278000026 ], [ -122.252239195999934, 49.042423306 ], [ -122.252356919999926, 49.04261040600003 ], [ -122.252501116999952, 49.042738904000082 ], [ -122.254710108999973, 49.044226108000053 ], [ -122.254811607999969, 49.044375708000075 ], [ -122.254842688999958, 49.044533593000054 ], [ -122.25482091399999, 49.044975502000035 ], [ -122.253148074999928, 49.044953204000095 ], [ -122.253147847999983, 49.044962192000042 ], [ -122.253139689999941, 49.045295497000019 ], [ -122.253769590000019, 49.045935093000054 ], [ -122.254072810999972, 49.04611239500008 ], [ -122.255456386999967, 49.046431187000074 ], [ -122.255612497999962, 49.046548400000084 ], [ -122.255448987999941, 49.047170213000136 ], [ -122.253925726999938, 49.046921407000106 ], [ -122.253215688999944, 49.046698290000052 ], [ -122.25190562599991, 49.04555170600004 ], [ -122.251566989999972, 49.045338911000044 ], [ -122.249819460999959, 49.044272578000111 ], [ -122.249298849999988, 49.044655576 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110504750", "BldgCostT": "71060000", "sL_LossRatio": "0.742838132247943", "sL_AssetLoss": "602671", "sL_BldgLoss": "447687", "sL_StrLoss": "239900", "sL_NStrLoss": "207787", "sL_ContLoss": "154984", "geom_point": "0101000020E6100000A19A8A3B7B905EC042C61F1C1E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.254482792999951, 49.038422883000102 ], [ -122.255914608999944, 49.038393495000065 ], [ -122.25793159199999, 49.038352113 ], [ -122.2592510059999, 49.038325988000068 ], [ -122.26068970399993, 49.038295891000097 ], [ -122.260637935, 49.039166968000082 ], [ -122.260545119999961, 49.040728702000131 ], [ -122.26049008499993, 49.041670693000064 ], [ -122.260371008999968, 49.041671068000021 ], [ -122.259778494999964, 49.041672896000073 ], [ -122.258510196999978, 49.041675602000119 ], [ -122.257471187999926, 49.041359897000063 ], [ -122.256483794999966, 49.041390397000036 ], [ -122.25611978799995, 49.041493992 ], [ -122.256016796999958, 49.041549883000073 ], [ -122.255669811999965, 49.041730698000137 ], [ -122.255274804999914, 49.041811595000105 ], [ -122.254618291999932, 49.041793217000134 ], [ -122.254418005, 49.041731210000115 ], [ -122.254368111999952, 49.041586097000064 ], [ -122.254482792999951, 49.038422883000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77188500", "BldgCostT": "52290000", "sL_LossRatio": "0.807276999902086", "sL_AssetLoss": "510650", "sL_BldgLoss": "412236", "sL_StrLoss": "220154", "sL_NStrLoss": "192082", "sL_ContLoss": "98414", "geom_point": "0101000020E6100000B788DE98D4905EC0D92F4C646E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.2639106, 49.044736980000103 ], [ -122.263154401999927, 49.044101197000096 ], [ -122.262852485999986, 49.044248497000062 ], [ -122.261389404999974, 49.044238997000058 ], [ -122.261480772999946, 49.043014204000073 ], [ -122.260365898999964, 49.04297990900006 ], [ -122.26049008499993, 49.041670693000064 ], [ -122.260545119999961, 49.040728702000131 ], [ -122.261727302999958, 49.040708491000089 ], [ -122.262884887999988, 49.040688504000045 ], [ -122.264063008999983, 49.040668197000095 ], [ -122.265209487999954, 49.040649506000094 ], [ -122.265102905999925, 49.041911485000085 ], [ -122.26496230099994, 49.042556698000034 ], [ -122.264941689999944, 49.043137495000067 ], [ -122.26500791499997, 49.043353394000057 ], [ -122.265593721999892, 49.043879602000104 ], [ -122.2639106, 49.044736980000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209592500", "BldgCostT": "136265000", "sL_LossRatio": "0.779224736921701", "sL_AssetLoss": "1315863", "sL_BldgLoss": "1025353", "sL_StrLoss": "553906", "sL_NStrLoss": "471447", "sL_ContLoss": "290510", "geom_point": "0101000020E6100000219300F318915EC02FDFFAB05E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.265102905999925, 49.041911485000085 ], [ -122.265209487999954, 49.040649506000094 ], [ -122.264063008999983, 49.040668197000095 ], [ -122.262884887999988, 49.040688504000045 ], [ -122.261727302999958, 49.040708491000089 ], [ -122.260545119999961, 49.040728702000131 ], [ -122.260637935, 49.039166968000082 ], [ -122.26068970399993, 49.038295891000097 ], [ -122.261280683999985, 49.038294796000038 ], [ -122.26285109399997, 49.03829453400008 ], [ -122.26528725899999, 49.03824501900003 ], [ -122.265895885999925, 49.038229204000089 ], [ -122.266548418999932, 49.038211399000055 ], [ -122.268803451999958, 49.038150960000053 ], [ -122.268813066999925, 49.038157466000072 ], [ -122.269660877999939, 49.038730783000069 ], [ -122.270106348999917, 49.039032005000095 ], [ -122.27022021, 49.039109412000073 ], [ -122.270613611999948, 49.039376886000078 ], [ -122.270699326999988, 49.039468511000081 ], [ -122.270972764999968, 49.039760815000101 ], [ -122.271157028999966, 49.040022343000047 ], [ -122.271194851999937, 49.040130946000019 ], [ -122.271301576999932, 49.040507007000045 ], [ -122.27129314199999, 49.040723421000045 ], [ -122.271217431999958, 49.042669730000078 ], [ -122.271194680999926, 49.043254297000068 ], [ -122.271172035999896, 49.043836428000063 ], [ -122.271092436999936, 49.044660387000057 ], [ -122.270577987, 49.045960583000053 ], [ -122.270385311999945, 49.046196394000113 ], [ -122.270030285999979, 49.046478809000028 ], [ -122.269734521999936, 49.046566334000026 ], [ -122.269650859, 49.046591062000054 ], [ -122.269259531999978, 49.046706874000094 ], [ -122.26922871499994, 49.046716037000039 ], [ -122.268834252999923, 49.046839771000066 ], [ -122.268320715999963, 49.047000897000032 ], [ -122.267919722999949, 49.047207908000118 ], [ -122.267382606999917, 49.047643583000081 ], [ -122.267055084999953, 49.047889092000091 ], [ -122.266794022999989, 49.048027816000122 ], [ -122.266540697999929, 49.048162398000031 ], [ -122.266336916999961, 49.047921792000061 ], [ -122.266308528999943, 49.046962502000092 ], [ -122.26627, 49.04581978699999 ], [ -122.266248000999937, 49.045069901000083 ], [ -122.266245193999936, 49.044678511000065 ], [ -122.266214790999953, 49.044545792000086 ], [ -122.266202300999936, 49.044479493000075 ], [ -122.266013995, 49.044234089000057 ], [ -122.265593721999892, 49.043879602000104 ], [ -122.26500791499997, 49.043353394000057 ], [ -122.264941689999944, 49.043137495000067 ], [ -122.26496230099994, 49.042556698000034 ], [ -122.265102905999925, 49.041911485000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150975584", "BldgCostT": "98443334", "sL_LossRatio": "0.770868691687385", "sL_AssetLoss": "981027", "sL_BldgLoss": "756243", "sL_StrLoss": "422282", "sL_NStrLoss": "333961", "sL_ContLoss": "224784", "geom_point": "0101000020E61000006C6E86FAA1905EC02C302ACAA1844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.254489709000012, 49.037230409000074 ], [ -122.254497220999923, 49.036201103000124 ], [ -122.25450270199994, 49.035280706000094 ], [ -122.25451180499999, 49.034691394000028 ], [ -122.251770787999959, 49.035284498000074 ], [ -122.251791914999927, 49.034461197000034 ], [ -122.254408089999956, 49.033768189000106 ], [ -122.254805307999945, 49.033642310000069 ], [ -122.257267, 49.033647092000102 ], [ -122.26015374499994, 49.033653468000047 ], [ -122.261113063999957, 49.033773694000054 ], [ -122.261780494999968, 49.033939689000064 ], [ -122.262692203999976, 49.034305004000068 ], [ -122.263222408999965, 49.034625891000118 ], [ -122.266149286999934, 49.036397107000013 ], [ -122.266443077999938, 49.036572305000078 ], [ -122.266673576999921, 49.0366316920001 ], [ -122.266933307999963, 49.036633491000025 ], [ -122.267039295999979, 49.03660344300004 ], [ -122.267535515999981, 49.036462683000089 ], [ -122.267675101999927, 49.036423101000061 ], [ -122.267679501999964, 49.0364316450001 ], [ -122.268344597999942, 49.037732005000123 ], [ -122.268741528999939, 49.038094438 ], [ -122.268803451999958, 49.038150960000053 ], [ -122.266548418999932, 49.038211399000055 ], [ -122.265895885999925, 49.038229204000089 ], [ -122.26528725899999, 49.03824501900003 ], [ -122.26285109399997, 49.03829453400008 ], [ -122.261280683999985, 49.038294796000038 ], [ -122.26068970399993, 49.038295891000097 ], [ -122.2592510059999, 49.038325988000068 ], [ -122.25793159199999, 49.038352113 ], [ -122.255914608999944, 49.038393495000065 ], [ -122.254482792999951, 49.038422883000102 ], [ -122.25449049299999, 49.03735658700009 ], [ -122.254489709000012, 49.037230409000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74793958", "BldgCostT": "47579715", "sL_LossRatio": "0.75435134475954", "sL_AssetLoss": "451010", "sL_BldgLoss": "340220", "sL_StrLoss": "173820", "sL_NStrLoss": "166400", "sL_ContLoss": "110790", "geom_point": "0101000020E6100000D6E783C8D6905EC06F6AE215EF854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.260178561999908, 49.044964718000173 ], [ -122.260213787999959, 49.044568618000092 ], [ -122.260331580999932, 49.043338603000045 ], [ -122.260365898999964, 49.04297990900006 ], [ -122.261480772999946, 49.043014204000073 ], [ -122.261389404999974, 49.044238997000058 ], [ -122.262852485999986, 49.044248497000062 ], [ -122.263154401999927, 49.044101197000096 ], [ -122.2639106, 49.044736980000103 ], [ -122.265593721999892, 49.043879602000104 ], [ -122.266013995, 49.044234089000057 ], [ -122.266202300999936, 49.044479493000075 ], [ -122.266214790999953, 49.044545792000086 ], [ -122.266245193999936, 49.044678511000065 ], [ -122.266248000999937, 49.045069901000083 ], [ -122.26627, 49.04581978699999 ], [ -122.266308528999943, 49.046962502000092 ], [ -122.266336916999961, 49.047921792000061 ], [ -122.266540697999929, 49.048162398000031 ], [ -122.26577996099995, 49.048436174000109 ], [ -122.26570239499999, 49.048464118000055 ], [ -122.264783997999984, 49.048741412000069 ], [ -122.264389199999954, 49.048836700000031 ], [ -122.263815413999978, 49.048877198000099 ], [ -122.263140584999988, 49.048880700000062 ], [ -122.263016135999948, 49.048870429000033 ], [ -122.260630098999954, 49.048673401 ], [ -122.260240881999934, 49.048612996000024 ], [ -122.260223423999946, 49.047848946000066 ], [ -122.260207491999907, 49.047154 ], [ -122.260193142999952, 49.046368757000032 ], [ -122.260188715999945, 49.046126497000024 ], [ -122.260186596999958, 49.045879401 ], [ -122.26017874199999, 49.045415148000103 ], [ -122.260172298999976, 49.045034995000023 ], [ -122.260178561999908, 49.044964718000173 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165363334", "BldgCostT": "99603334", "sL_LossRatio": "0.733233810873874", "sL_AssetLoss": "797140", "sL_BldgLoss": "584490", "sL_StrLoss": "325050", "sL_NStrLoss": "259440", "sL_ContLoss": "212650", "geom_point": "0101000020E61000008D3045B934915EC0D138B3E159864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.267481893999943, 49.052263809000046 ], [ -122.267453891999949, 49.051451406000162 ], [ -122.266972924999948, 49.051451078000113 ], [ -122.266726582999979, 49.051450909000046 ], [ -122.26626359, 49.051450593000041 ], [ -122.265059398999981, 49.051451079000053 ], [ -122.265022721999941, 49.050662803000094 ], [ -122.264958691999965, 49.049412807000124 ], [ -122.264939817999903, 49.049051509000094 ], [ -122.264783997999984, 49.048741412000069 ], [ -122.26570239499999, 49.048464118000055 ], [ -122.26577996099995, 49.048436174000109 ], [ -122.266540697999929, 49.048162398000031 ], [ -122.266794022999989, 49.048027816000122 ], [ -122.267055084999953, 49.047889092000091 ], [ -122.267382606999917, 49.047643583000081 ], [ -122.267919722999949, 49.047207908000118 ], [ -122.268320715999963, 49.047000897000032 ], [ -122.268834252999923, 49.046839771000066 ], [ -122.26922871499994, 49.046716037000039 ], [ -122.269259531999978, 49.046706874000094 ], [ -122.269650859, 49.046591062000054 ], [ -122.269734521999936, 49.046566334000026 ], [ -122.270030285999979, 49.046478809000028 ], [ -122.270385311999945, 49.046196394000113 ], [ -122.270577987, 49.045960583000053 ], [ -122.271092436999936, 49.044660387000057 ], [ -122.271203051999962, 49.044778061000102 ], [ -122.27104652699991, 49.046259914000053 ], [ -122.271329994, 49.046198624000063 ], [ -122.271490223999962, 49.046163966000051 ], [ -122.271721781999986, 49.046113899000083 ], [ -122.271810218000013, 49.046119694000076 ], [ -122.271758689999942, 49.046387399000018 ], [ -122.271551882999972, 49.046749892000022 ], [ -122.271600983999974, 49.049265099000131 ], [ -122.271606154999972, 49.049535983000055 ], [ -122.271624316999947, 49.050492928000089 ], [ -122.271635862, 49.051100851000037 ], [ -122.271642181999965, 49.051434696000072 ], [ -122.27170108299994, 49.052631294000136 ], [ -122.270940673999974, 49.052617408000103 ], [ -122.270723321999952, 49.0526134260001 ], [ -122.269840159999916, 49.052631549000068 ], [ -122.268929885999952, 49.052618843000097 ], [ -122.268547107999922, 49.052614574000067 ], [ -122.267508796999934, 49.052834597000086 ], [ -122.267481893999943, 49.052263809000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122929251", "BldgCostT": "78260001", "sL_LossRatio": "0.783236026813352", "sL_AssetLoss": "675186", "sL_BldgLoss": "528830", "sL_StrLoss": "285770", "sL_NStrLoss": "243060", "sL_ContLoss": "146356", "geom_point": "0101000020E61000003505D781D8905EC001B4CE7486864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.260407496999946, 49.051413515000014 ], [ -122.260358401999923, 49.050743361000066 ], [ -122.260348685999958, 49.050610893000091 ], [ -122.260312309999946, 49.049990296000011 ], [ -122.260299888999953, 49.049752809000047 ], [ -122.260240881999934, 49.048612996000024 ], [ -122.260630098999954, 49.048673401 ], [ -122.263016135999948, 49.048870429000033 ], [ -122.263140584999988, 49.048880700000062 ], [ -122.263815413999978, 49.048877198000099 ], [ -122.264389199999954, 49.048836700000031 ], [ -122.264783997999984, 49.048741412000069 ], [ -122.264939817999903, 49.049051509000094 ], [ -122.264958691999965, 49.049412807000124 ], [ -122.265022721999941, 49.050662803000094 ], [ -122.265059398999981, 49.051451079000053 ], [ -122.26626359, 49.051450593000041 ], [ -122.266726582999979, 49.051450909000046 ], [ -122.266972924999948, 49.051451078000113 ], [ -122.267453891999949, 49.051451406000162 ], [ -122.267481893999943, 49.052263809000046 ], [ -122.267508796999934, 49.052834597000086 ], [ -122.267508305999968, 49.052834590000082 ], [ -122.26508104, 49.052792496000102 ], [ -122.260399574, 49.05271520000008 ], [ -122.260399003999964, 49.052649212000084 ], [ -122.260395919999908, 49.05227320300002 ], [ -122.260407496999946, 49.051413515000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "714911133", "BldgCostT": "399374905", "sL_LossRatio": "0.613103358616871", "sL_AssetLoss": "6168968", "sL_BldgLoss": "3782215", "sL_StrLoss": "1382265", "sL_NStrLoss": "2399950", "sL_ContLoss": "2386753", "geom_point": "0101000020E61000000DAAFFFF81975EC0414638145B844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.365394399999914, 49.051313570000055 ], [ -122.360758080999972, 49.049294123000045 ], [ -122.360033092999984, 49.048978337000044 ], [ -122.359697725, 49.048832228000052 ], [ -122.359316949999965, 49.048666361000123 ], [ -122.354894150999954, 49.046739426000059 ], [ -122.35558172099995, 49.04651939200005 ], [ -122.355877810999942, 49.046424946000059 ], [ -122.356378649999968, 49.046265174000062 ], [ -122.356576811999986, 49.046092514000065 ], [ -122.356540945999939, 49.045886644000085 ], [ -122.35528042299994, 49.045876311000036 ], [ -122.355133143999964, 49.045870565000016 ], [ -122.354741688000018, 49.045855315000033 ], [ -122.353586644999936, 49.045376879000074 ], [ -122.351740404999987, 49.044612135000072 ], [ -122.35148793499999, 49.044463735000065 ], [ -122.351345056999918, 49.044331760000041 ], [ -122.351233840999967, 49.044039511000086 ], [ -122.351256271999887, 49.043368674000099 ], [ -122.351271719999929, 49.042769695000068 ], [ -122.351297752999969, 49.041755487000032 ], [ -122.351322877999962, 49.040857601000063 ], [ -122.351360745999898, 49.039622897000058 ], [ -122.3513707379999, 49.039320319000069 ], [ -122.351396592999933, 49.038517983000055 ], [ -122.353703165999931, 49.038547699000041 ], [ -122.355516354999949, 49.038572325000111 ], [ -122.35754450599994, 49.038612302000104 ], [ -122.359285908999979, 49.038630464000086 ], [ -122.36007562099995, 49.038638716000101 ], [ -122.360075659999893, 49.03853676500011 ], [ -122.360075855, 49.038194972000056 ], [ -122.36007585399993, 49.03814099100007 ], [ -122.36007615599999, 49.037592216000107 ], [ -122.360076691999922, 49.036647830000057 ], [ -122.360077077999918, 49.035901293000038 ], [ -122.36007718399992, 49.035667350000018 ], [ -122.360077592999943, 49.034938618000105 ], [ -122.360077840999949, 49.034434900000072 ], [ -122.360078632999915, 49.03299016600009 ], [ -122.360079492999944, 49.031371835000094 ], [ -122.360090075999935, 49.030099319000058 ], [ -122.360098998999916, 49.029028814000114 ], [ -122.360109868, 49.027724474000117 ], [ -122.360120077999937, 49.026492673000028 ], [ -122.360124846999966, 49.025921051000047 ], [ -122.359956949999983, 49.025671954000067 ], [ -122.358569183, 49.025178274000098 ], [ -122.35854706399999, 49.025170401000075 ], [ -122.355236491999946, 49.02399259200012 ], [ -122.352033171999892, 49.023940707000079 ], [ -122.351595633999978, 49.023933621000076 ], [ -122.34901074, 49.02389167700008 ], [ -122.348874001999931, 49.023889470000043 ], [ -122.348600578999964, 49.023885009000068 ], [ -122.34756126900001, 49.023868120000031 ], [ -122.337552407999965, 49.023704993000059 ], [ -122.337546252, 49.022352539000039 ], [ -122.340207478999957, 49.022443361000086 ], [ -122.34027425499994, 49.021592500000033 ], [ -122.342850831999968, 49.02168037100008 ], [ -122.342855304999944, 49.021340661000096 ], [ -122.343265611999954, 49.021342997000147 ], [ -122.343269161999928, 49.021073147000067 ], [ -122.345675996999944, 49.021086821000068 ], [ -122.345682767999932, 49.021000429000068 ], [ -122.346142253999943, 49.021016080000024 ], [ -122.34615189799996, 49.020279908000056 ], [ -122.348613685999936, 49.020293831000025 ], [ -122.348617207999936, 49.020023981000108 ], [ -122.35272017199999, 49.02004707 ], [ -122.35272367099999, 49.019777219000062 ], [ -122.354775144999962, 49.019788709000061 ], [ -122.35477863199999, 49.019518859000094 ], [ -122.355599216999977, 49.019523444000058 ], [ -122.355602699999977, 49.019253594000084 ], [ -122.356423281999938, 49.01925817300009 ], [ -122.356430238999934, 49.018718472000089 ], [ -122.357250811999947, 49.018723046000012 ], [ -122.357254286999975, 49.018453195000077 ], [ -122.358485138999967, 49.018460044000037 ], [ -122.358474734999945, 49.019269597000083 ], [ -122.358064443999936, 49.019267315000029 ], [ -122.358060972999922, 49.019537166000148 ], [ -122.358881558999911, 49.019541728000092 ], [ -122.35889195699994, 49.018732175 ], [ -122.361353674999989, 49.018745827000053 ], [ -122.361357127999966, 49.01847597700008 ], [ -122.364229121, 49.018491835000091 ], [ -122.364232275999967, 49.018244047000074 ], [ -122.363172839999933, 49.018208133000023 ], [ -122.363168947999924, 49.0182580500001 ], [ -122.35853263300001, 49.01810075700007 ], [ -122.358517359999951, 49.018296361000047 ], [ -122.355073570999977, 49.01817939700009 ], [ -122.355071315999965, 49.018208244000064 ], [ -122.351587162999948, 49.018089796000048 ], [ -122.351578274999923, 49.018203428000099 ], [ -122.349172931999959, 49.01812158900001 ], [ -122.349170074999975, 49.018158087000124 ], [ -122.34761487599998, 49.018105144000081 ], [ -122.347608712999886, 49.018183825000087 ], [ -122.345318675999962, 49.018105825000092 ], [ -122.345318114999912, 49.018112980000119 ], [ -122.344770322999963, 49.018094315000113 ], [ -122.344765095999932, 49.018160994000056 ], [ -122.342140859, 49.018071536000029 ], [ -122.342082024999954, 49.018821656000085 ], [ -122.340738818999938, 49.0187758430001 ], [ -122.34073756699999, 49.018791789000019 ], [ -122.340635893999973, 49.018788320000105 ], [ -122.340540927999982, 49.01999858900011 ], [ -122.339431456999975, 49.019960735000019 ], [ -122.339425383999952, 49.020038116000094 ], [ -122.337535430999964, 49.01997360500016 ], [ -122.337528209999988, 49.018385391000059 ], [ -122.337521978, 49.017017873000022 ], [ -122.337519609999973, 49.016496991000047 ], [ -122.339601459999955, 49.016529743000014 ], [ -122.340039121999894, 49.016536638000026 ], [ -122.340681869999969, 49.016546711000039 ], [ -122.342431906999963, 49.016574213000055 ], [ -122.342951785999901, 49.016582361000069 ], [ -122.343498632999953, 49.016590933000032 ], [ -122.344934438999971, 49.016613457000112 ], [ -122.34531722199992, 49.016619453000089 ], [ -122.346000782999951, 49.016630166000077 ], [ -122.3467255199999, 49.016641508000141 ], [ -122.347874064999971, 49.016659491000055 ], [ -122.348913266999958, 49.016675744000032 ], [ -122.349542088999954, 49.016685567000088 ], [ -122.349979560999941, 49.016692397000085 ], [ -122.353631075999914, 49.016749392000115 ], [ -122.354420679999961, 49.016761699000071 ], [ -122.354602151999956, 49.016764435000049 ], [ -122.359511293999958, 49.016838501000024 ], [ -122.360149287999945, 49.016848101000065 ], [ -122.367400827999973, 49.016959851000138 ], [ -122.368196467999937, 49.016972096000096 ], [ -122.368317551999951, 49.016973049000036 ], [ -122.370911407999955, 49.016993693000053 ], [ -122.376031126999976, 49.017012598000051 ], [ -122.376359360999956, 49.017013794000015 ], [ -122.377220915999942, 49.017016940000083 ], [ -122.378773556999988, 49.017022604000033 ], [ -122.378677774999915, 49.018256176000065 ], [ -122.375722091999961, 49.018156352000091 ], [ -122.375720486999967, 49.01828470900012 ], [ -122.376130771999939, 49.018286928000066 ], [ -122.376127398000037, 49.018556779000036 ], [ -122.376947970999964, 49.018561213000041 ], [ -122.37695133899993, 49.018291361000074 ], [ -122.379413043999961, 49.018304628000116 ], [ -122.37940969, 49.018574478000097 ], [ -122.379819975999936, 49.018576685000077 ], [ -122.379816621999936, 49.018846537000123 ], [ -122.38186806799996, 49.018857544000113 ], [ -122.381858042999966, 49.019667100000056 ], [ -122.379806564999939, 49.019656091000044 ], [ -122.37979650599999, 49.02046564700008 ], [ -122.380206807999969, 49.020467852000074 ], [ -122.380203455999904, 49.020737703000094 ], [ -122.381844675999915, 49.020746507000098 ], [ -122.381848017999928, 49.020476655000031 ], [ -122.382668622, 49.020481048000086 ], [ -122.38267195899995, 49.020211197000066 ], [ -122.383082260999956, 49.020213391 ], [ -122.383095600999951, 49.019133983000124 ], [ -122.38350589199996, 49.019136177000107 ], [ -122.383515889999956, 49.018326619000078 ], [ -122.383105605000011, 49.018324427000067 ], [ -122.383110421999945, 49.017934687000029 ], [ -122.382023368999924, 49.017898029000023 ], [ -122.382053532999947, 49.017509189000116 ], [ -122.381474498, 49.017506086 ], [ -122.38148036699998, 49.017032425000139 ], [ -122.381806099999935, 49.017033602 ], [ -122.381892613999923, 49.017034811000052 ], [ -122.381919948999936, 49.017035188000115 ], [ -122.384180796999914, 49.017066624000044 ], [ -122.384727831999911, 49.017074236000077 ], [ -122.385780604, 49.017088845000025 ], [ -122.386540991999965, 49.017099396000148 ], [ -122.386543350999929, 49.017316050000019 ], [ -122.386544407999978, 49.017415121000084 ], [ -122.386545201999951, 49.017487200000041 ], [ -122.386636488999926, 49.017772502000064 ], [ -122.387077708999982, 49.018378689 ], [ -122.387242004999933, 49.018816090000058 ], [ -122.387217116, 49.020496486000084 ], [ -122.387207594999921, 49.020775112000123 ], [ -122.387178638999956, 49.020774958000068 ], [ -122.387177751999943, 49.02084729400012 ], [ -122.387205095999917, 49.020848215000051 ], [ -122.387192281999944, 49.021223215000091 ], [ -122.387065493999927, 49.021589505000158 ], [ -122.386829784999946, 49.022018793000022 ], [ -122.3864893, 49.022408514000105 ], [ -122.386109600999959, 49.022720184000022 ], [ -122.38599727399999, 49.022791124000086 ], [ -122.385983301999943, 49.022799960000086 ], [ -122.385637988999989, 49.023018004000058 ], [ -122.385240013, 49.023190812000053 ], [ -122.384971000999954, 49.023307637000158 ], [ -122.384460806999968, 49.023529211000145 ], [ -122.384346801999968, 49.023601040000081 ], [ -122.38365569299998, 49.024036605000113 ], [ -122.383445905999963, 49.024242322000063 ], [ -122.383103677999941, 49.024577901000043 ], [ -122.381968298999936, 49.025958488000136 ], [ -122.381335408999973, 49.026943728000084 ], [ -122.380529587999987, 49.028197991000134 ], [ -122.380093410999962, 49.029623901000036 ], [ -122.380033298999976, 49.029816596000074 ], [ -122.37967063399995, 49.030307923000052 ], [ -122.379567205999962, 49.03044809600005 ], [ -122.379286983999975, 49.030815491000062 ], [ -122.378824136999981, 49.031439935000066 ], [ -122.378671853999933, 49.031714119000057 ], [ -122.378601522999986, 49.031840796000083 ], [ -122.378593408999919, 49.032032471000036 ], [ -122.378419057999906, 49.036146021000029 ], [ -122.37834701099996, 49.037846058000106 ], [ -122.378324620999976, 49.038672388000059 ], [ -122.378315507999929, 49.039008796000076 ], [ -122.379179157999914, 49.039019010000089 ], [ -122.379273880999932, 49.039097458000057 ], [ -122.379910036999902, 49.039624552000056 ], [ -122.380353860999932, 49.039992317000106 ], [ -122.380376894999984, 49.040011405 ], [ -122.380628148999961, 49.040247671000046 ], [ -122.38084219, 49.040448990000051 ], [ -122.381112114999937, 49.040849302000083 ], [ -122.381272200999902, 49.041217987000017 ], [ -122.38127443, 49.041373288000081 ], [ -122.38128246399998, 49.041935593000069 ], [ -122.381284121999954, 49.04205254000005 ], [ -122.381293791999937, 49.042727368000044 ], [ -122.381298573999985, 49.043060426000089 ], [ -122.381301510999947, 49.043267452000087 ], [ -122.381308785999977, 49.043776694 ], [ -122.38130400499989, 49.043996180000086 ], [ -122.38128462, 49.044886664000096 ], [ -122.381256454999971, 49.046178258000083 ], [ -122.381242410999945, 49.048562198000063 ], [ -122.38123759099993, 49.049177258000022 ], [ -122.381232751000013, 49.049797918000095 ], [ -122.381229371999964, 49.050229683000062 ], [ -122.381227681, 49.050445567000068 ], [ -122.381226798999975, 49.050560198000085 ], [ -122.381237283999923, 49.051129013000057 ], [ -122.381251182999961, 49.051884364000081 ], [ -122.381223233999947, 49.052883093000084 ], [ -122.381208787, 49.053399204000087 ], [ -122.381038156, 49.053429512000058 ], [ -122.380952184999927, 49.053532080000053 ], [ -122.380998217999945, 49.053644515000045 ], [ -122.38115389299999, 49.053701152 ], [ -122.381160555999912, 49.054493802000067 ], [ -122.381162746999948, 49.054754679000091 ], [ -122.381166974999985, 49.055259309000043 ], [ -122.381168887999962, 49.055322468000092 ], [ -122.381155591, 49.055793495000039 ], [ -122.381159667999938, 49.055917120000124 ], [ -122.381197239999949, 49.056228760000025 ], [ -122.381216681999902, 49.056389944000102 ], [ -122.381257859999977, 49.056731750000097 ], [ -122.38139697299999, 49.057190524000106 ], [ -122.381400873999922, 49.057203470000061 ], [ -122.381466361999941, 49.057419417000069 ], [ -122.381495354999927, 49.057515002000102 ], [ -122.381504668999952, 49.05760960900006 ], [ -122.381515972999978, 49.057724827000101 ], [ -122.381506870999914, 49.057779472000099 ], [ -122.381472534999943, 49.057984799000053 ], [ -122.380797934999947, 49.057720447000108 ], [ -122.379630953999978, 49.05726520000006 ], [ -122.379271882999959, 49.057125128000045 ], [ -122.377911967, 49.056594571000069 ], [ -122.377401621999965, 49.056387368000131 ], [ -122.376134553999961, 49.055872911000115 ], [ -122.374049800999956, 49.055005095000077 ], [ -122.372240699999935, 49.054251900000082 ], [ -122.371866892999932, 49.054096293000093 ], [ -122.369986275999949, 49.053313281000094 ], [ -122.36871265299996, 49.052758693000037 ], [ -122.365394399999914, 49.051313570000055 ] ], [ [ -122.375759473999935, 49.047970526000036 ], [ -122.375763879999923, 49.04761866000004 ], [ -122.374943120999902, 49.047590944000106 ], [ -122.374938416999939, 49.047966083000048 ], [ -122.373095964999933, 49.047956089000046 ], [ -122.372982472999965, 49.049414421000044 ], [ -122.370856854999943, 49.04934257900004 ], [ -122.370851899999963, 49.049406209000026 ], [ -122.371615926999965, 49.049432037000024 ], [ -122.371599834999984, 49.049638741000081 ], [ -122.372797199999951, 49.049679206000064 ], [ -122.372759211999934, 49.050167286000018 ], [ -122.372931424999976, 49.050173104000052 ], [ -122.372917235999964, 49.050355417000084 ], [ -122.373922937999907, 49.050389394000035 ], [ -122.374086877999957, 49.050390283000063 ], [ -122.374100426999945, 49.049310883000011 ], [ -122.374510964999899, 49.049313109000138 ], [ -122.374517735999945, 49.048773408000017 ], [ -122.375338803999981, 49.048777856000093 ], [ -122.375348946999949, 49.047968305000097 ], [ -122.375759473999935, 49.047970526000036 ] ], [ [ -122.377411694999964, 49.04716984700007 ], [ -122.377421801999944, 49.046360295000042 ], [ -122.377239537999927, 49.046359312000028 ], [ -122.377176632999948, 49.047168578000019 ], [ -122.377411694999964, 49.04716984700007 ] ], [ [ -122.373052645999948, 49.038921056000056 ], [ -122.373075279999966, 49.038630140000031 ], [ -122.373114697999966, 49.038631472000127 ], [ -122.37321194499999, 49.037381540000119 ], [ -122.374590081999941, 49.037428107000032 ], [ -122.374633214999946, 49.03687347200011 ], [ -122.374841067999981, 49.036880494000059 ], [ -122.374846164999951, 49.036814959000019 ], [ -122.374826243999934, 49.036814287000091 ], [ -122.374867078999912, 49.036289152000073 ], [ -122.374773373999943, 49.036285986000046 ], [ -122.374845139999977, 49.035363097000044 ], [ -122.37475903, 49.035360188 ], [ -122.374870043999962, 49.033932535000069 ], [ -122.374703833999931, 49.033931634000062 ], [ -122.374707217999926, 49.033661783000113 ], [ -122.373475986999935, 49.033655105000079 ], [ -122.373472596999974, 49.033924956000085 ], [ -122.373062184999952, 49.033922727000082 ], [ -122.373058793999959, 49.034192577000049 ], [ -122.37100672199989, 49.03418141100012 ], [ -122.371006733999963, 49.034180444000079 ], [ -122.371027133999988, 49.032562307000092 ], [ -122.370616733999952, 49.03256007 ], [ -122.370620138999968, 49.032290219000053 ], [ -122.369388941999915, 49.032283498000012 ], [ -122.369395762999929, 49.031743796000107 ], [ -122.368164580999931, 49.031737061000129 ], [ -122.368154329999953, 49.032546614000054 ], [ -122.36692312699995, 49.032539865000039 ], [ -122.366919702999937, 49.032809715000091 ], [ -122.366509300999937, 49.03280746300004 ], [ -122.366505873999984, 49.033077315000057 ], [ -122.36568506399999, 49.03307280500011 ], [ -122.365679828999987, 49.033484598000065 ], [ -122.370915983999964, 49.033661814000084 ], [ -122.370873152999962, 49.034212044000043 ], [ -122.370861684999966, 49.034359362000082 ], [ -122.370984423999914, 49.034363513000102 ], [ -122.37091460799999, 49.035260386000054 ], [ -122.372224381999928, 49.03526751900003 ], [ -122.372207402999962, 49.036616770000123 ], [ -122.370875860999888, 49.036609520000148 ], [ -122.370867052999984, 49.036722662000102 ], [ -122.370901372999981, 49.036723823000038 ], [ -122.370867393999973, 49.037160308000132 ], [ -122.370983096999936, 49.037164221000047 ], [ -122.370960942999915, 49.037448805000061 ], [ -122.371017613, 49.037450722000109 ], [ -122.370905940999961, 49.03888519300012 ], [ -122.370894143, 49.039036742000128 ], [ -122.370967612999962, 49.039039227000039 ], [ -122.370904639999978, 49.039848105000111 ], [ -122.370935262999964, 49.039848271000068 ], [ -122.370925052999937, 49.040657822000142 ], [ -122.370841634999977, 49.040657367000051 ], [ -122.370829294999979, 49.040815874000053 ], [ -122.371085217999934, 49.04082452900014 ], [ -122.371079172999956, 49.040902165000048 ], [ -122.371138979999898, 49.040904187000116 ], [ -122.371182962999967, 49.040339200000112 ], [ -122.371542736999956, 49.040351364000095 ], [ -122.371579971999935, 49.039873008000015 ], [ -122.37226726599999, 49.039896242000054 ], [ -122.372311672999928, 49.039325624000121 ], [ -122.373019307999954, 49.039349541 ], [ -122.373052645999948, 49.038921056000056 ] ], [ [ -122.364169314999941, 49.038115587000085 ], [ -122.36419790299999, 49.037749033000047 ], [ -122.364128994999973, 49.037746698000049 ], [ -122.364283646999951, 49.035763785000029 ], [ -122.363598619999919, 49.035760009000114 ], [ -122.363591734999929, 49.036299710000094 ], [ -122.36327198299989, 49.036297946000097 ], [ -122.363243402999956, 49.036664291000079 ], [ -122.36358353699994, 49.036675818000049 ], [ -122.363536775999989, 49.03727528000006 ], [ -122.363797466999955, 49.037284113000062 ], [ -122.363733759999946, 49.038100830000104 ], [ -122.364169314999941, 49.038115587000085 ] ], [ [ -122.373310391999965, 49.027986951000102 ], [ -122.373394315999946, 49.026907930000043 ], [ -122.373150336999927, 49.026906604000047 ], [ -122.373146945999949, 49.027176455000088 ], [ -122.372736589999946, 49.027174225000152 ], [ -122.372729806, 49.027713928000018 ], [ -122.37231944399997, 49.027711695000065 ], [ -122.37231265599992, 49.028251398000073 ], [ -122.371902290999955, 49.028249165000013 ], [ -122.371895495999951, 49.028788868000099 ], [ -122.371485126999971, 49.028786632000084 ], [ -122.371474929999962, 49.029596185000088 ], [ -122.371064552999897, 49.029593949000066 ], [ -122.371061151999925, 49.029863800000015 ], [ -122.370650772999952, 49.029861562000093 ], [ -122.370643964999957, 49.030401265000165 ], [ -122.370233581999983, 49.030399025000094 ], [ -122.370223363999969, 49.031208577000037 ], [ -122.370633753999954, 49.031210816000097 ], [ -122.370637157000019, 49.030940965000092 ], [ -122.37145793399999, 49.030945439000035 ], [ -122.371461331999953, 49.030675588000044 ], [ -122.372282102, 49.030680056000051 ], [ -122.372285497999954, 49.030410205000102 ], [ -122.372575724999962, 49.030411783000062 ], [ -122.372709945999986, 49.028686502 ], [ -122.372717576999946, 49.028686759000081 ], [ -122.372719628999931, 49.028523480000054 ], [ -122.373129997999939, 49.028525711000093 ], [ -122.373136776999971, 49.027986008000028 ], [ -122.373310391999965, 49.027986951000102 ] ], [ [ -122.368198751999969, 49.029038555000042 ], [ -122.368215835999976, 49.027689302000105 ], [ -122.367805474999955, 49.027687054000111 ], [ -122.367812311999913, 49.027147353000039 ], [ -122.367401955999924, 49.027145105000081 ], [ -122.367408797999971, 49.026605403000069 ], [ -122.366998445999954, 49.026603152000092 ], [ -122.367001868999949, 49.026333302000047 ], [ -122.365770820999899, 49.026326542000056 ], [ -122.365781108999954, 49.025516990000014 ], [ -122.365370766999931, 49.025514734000097 ], [ -122.36537419899993, 49.025244883000013 ], [ -122.364553517999923, 49.025240366000034 ], [ -122.364550082000022, 49.025510217000075 ], [ -122.36413974099996, 49.025507957000173 ], [ -122.364129424999959, 49.026317509000108 ], [ -122.364950122999971, 49.026322028000095 ], [ -122.364946686999957, 49.026591879000101 ], [ -122.365357039999964, 49.026594136000028 ], [ -122.365353608999953, 49.026863987000056 ], [ -122.365763961999946, 49.026866244000068 ], [ -122.365753671999983, 49.027675795000029 ], [ -122.366164032999933, 49.027678050000084 ], [ -122.366160604999919, 49.027947900000143 ], [ -122.366570966000026, 49.027950154000102 ], [ -122.366564116999953, 49.028489855000011 ], [ -122.366974483999954, 49.028492107000041 ], [ -122.366971060999987, 49.028761958000111 ], [ -122.367381429999952, 49.028764208000034 ], [ -122.367378008999964, 49.029034059000033 ], [ -122.368198751999969, 49.029038555000042 ] ], [ [ -122.369898166, 49.024460066000103 ], [ -122.369884538999926, 49.025539470000105 ], [ -122.37111556799999, 49.025546186000092 ], [ -122.371105366, 49.026355739000145 ], [ -122.372336415999911, 49.026362441000074 ], [ -122.37234320399989, 49.025822739000112 ], [ -122.372753549999985, 49.025824970000016 ], [ -122.372760332999974, 49.02528526800004 ], [ -122.371529308999953, 49.025278570000111 ], [ -122.371542903999966, 49.02419916500002 ], [ -122.373184231999957, 49.024208093000034 ], [ -122.373180843999975, 49.024477945000093 ], [ -122.374001512999897, 49.024482400000053 ], [ -122.374018437, 49.023133143000088 ], [ -122.374839082999955, 49.023137592000104 ], [ -122.374849223999888, 49.022328037000079 ], [ -122.37525954099999, 49.022330260000075 ], [ -122.375269673999952, 49.021520706000061 ], [ -122.374038742999971, 49.021514035000116 ], [ -122.374059048999953, 49.019894928000035 ], [ -122.373648749999958, 49.019892701000074 ], [ -122.373641977999966, 49.020432404000083 ], [ -122.373231677000021, 49.020430176000119 ], [ -122.37322828799995, 49.020700026000029 ], [ -122.371997376999957, 49.020693334000057 ], [ -122.372000773999929, 49.02042348300008 ], [ -122.369538968000015, 49.020410059 ], [ -122.36953555799991, 49.020679909000137 ], [ -122.369125254999972, 49.020677667000051 ], [ -122.369118433000025, 49.02121736900002 ], [ -122.367477203999911, 49.021208385000136 ], [ -122.367484043, 49.020668683000082 ], [ -122.365842831999899, 49.020659675000097 ], [ -122.365846259999941, 49.020389824000041 ], [ -122.365025659000011, 49.020385311000098 ], [ -122.36502222699994, 49.020655162000075 ], [ -122.363791319999962, 49.020648382000047 ], [ -122.363794758999973, 49.020378531000077 ], [ -122.363384458999988, 49.020376268000085 ], [ -122.363377573999955, 49.020915970000118 ], [ -122.362146661999972, 49.020909172000152 ], [ -122.362150109, 49.020639321000075 ], [ -122.361739807999967, 49.020637052000062 ], [ -122.361732906000015, 49.021176754000066 ], [ -122.362553519999892, 49.021181290000115 ], [ -122.362550072999937, 49.021451141000107 ], [ -122.363370690999943, 49.021455671000105 ], [ -122.36336724799996, 49.021725522000018 ], [ -122.364187871999889, 49.021730047000126 ], [ -122.364184434999913, 49.021999898000047 ], [ -122.365005061999938, 49.022004416000051 ], [ -122.365001627999959, 49.022274267000057 ], [ -122.36582226099992, 49.022278781000097 ], [ -122.365818830999956, 49.022548630000095 ], [ -122.36828074099995, 49.022562134000069 ], [ -122.368290987999927, 49.021752582000069 ], [ -122.370342546999908, 49.021763795000133 ], [ -122.370339143999956, 49.022033646000096 ], [ -122.371159772999974, 49.02203812100003 ], [ -122.371166571999936, 49.021498419000054 ], [ -122.371576880999953, 49.021500655000104 ], [ -122.37158367699999, 49.020960952000038 ], [ -122.372814593999962, 49.02096764800006 ], [ -122.372811202999969, 49.021237500000026 ], [ -122.373221510999912, 49.021239730000076 ], [ -122.37321134499993, 49.022049283000079 ], [ -122.372801029999962, 49.022047054000083 ], [ -122.372797638999941, 49.022316905000054 ], [ -122.371566688999934, 49.022310208000086 ], [ -122.371559893999958, 49.022849911000051 ], [ -122.370739249999957, 49.022845438000054 ], [ -122.370735848, 49.023115289000032 ], [ -122.369915200999927, 49.02311081100013 ], [ -122.369911794999894, 49.0233806620001 ], [ -122.36950147, 49.023378421000125 ], [ -122.369498060999931, 49.023648271000091 ], [ -122.369087733999905, 49.023646029000091 ], [ -122.369077497999967, 49.024455582000016 ], [ -122.369898166, 49.024460066000103 ] ], [ [ -122.358012381999927, 49.023315073000077 ], [ -122.35801585199998, 49.023045222000128 ], [ -122.35748241099999, 49.02304225300005 ], [ -122.357461338999883, 49.023312006 ], [ -122.358012381999927, 49.023315073000077 ] ], [ [ -122.355561981, 49.022407411000046 ], [ -122.355571345, 49.02168224700003 ], [ -122.35475072399997, 49.021677661000076 ], [ -122.354754212999964, 49.02140781100006 ], [ -122.35393359699999, 49.021403219000014 ], [ -122.35393709099999, 49.021133369000083 ], [ -122.353526784999971, 49.02113107100007 ], [ -122.353530279999916, 49.020861221000075 ], [ -122.352709674, 49.02085662000011 ], [ -122.352706173999934, 49.021126470000112 ], [ -122.351064952999934, 49.021117253000092 ], [ -122.351064089999937, 49.021183611000076 ], [ -122.351137539999954, 49.021186109000105 ], [ -122.351100679999917, 49.02165719300006 ], [ -122.352288864999977, 49.021663868000068 ], [ -122.352280661999941, 49.022295887000034 ], [ -122.355561981, 49.022407411000046 ] ], [ [ -122.376904178999936, 49.022069283000071 ], [ -122.376890703999948, 49.023148689000017 ], [ -122.377301026999973, 49.023150904000026 ], [ -122.377307759999965, 49.022611201000103 ], [ -122.377718079999909, 49.022613415000073 ], [ -122.377724808999957, 49.022073711000075 ], [ -122.376904178999936, 49.022069283000071 ] ], [ [ -122.375232515999954, 49.024489071000097 ], [ -122.375225759999978, 49.025028773000066 ], [ -122.37481542099999, 49.02502655100011 ], [ -122.374812678999916, 49.025245473000055 ], [ -122.375633067999914, 49.025273191000032 ], [ -122.375636098999948, 49.025030994000105 ], [ -122.37604643899999, 49.025033213000043 ], [ -122.376053186999911, 49.024493512000028 ], [ -122.376463520999977, 49.024495729000115 ], [ -122.37647026399999, 49.02395602600005 ], [ -122.376880595999964, 49.023958243000024 ], [ -122.376887333999946, 49.023418540000051 ], [ -122.376066681999973, 49.023414106000097 ], [ -122.376056559999981, 49.024223660000075 ], [ -122.375646227999979, 49.024221440000083 ], [ -122.375642849999949, 49.024491292000043 ], [ -122.375232515999954, 49.024489071000097 ] ], [ [ -122.369050204999965, 49.026614390000127 ], [ -122.369043381999944, 49.027154091000078 ], [ -122.369453736999958, 49.027156334000054 ], [ -122.369440097999956, 49.028235737000038 ], [ -122.370260827999942, 49.028240219000075 ], [ -122.370264233999947, 49.027970369000052 ], [ -122.370674596999919, 49.027972607000031 ], [ -122.370684806999961, 49.027163054000084 ], [ -122.371095163999939, 49.027165292000134 ], [ -122.371101964999951, 49.026625589000034 ], [ -122.369050204999965, 49.026614390000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223198667", "BldgCostT": "129991667", "sL_LossRatio": "0.687069104885477", "sL_AssetLoss": "1534016", "sL_BldgLoss": "1053975", "sL_StrLoss": "530434", "sL_NStrLoss": "523541", "sL_ContLoss": "480041", "geom_point": "0101000020E61000000A93D34B0A985EC02A84C42C6A874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.37770520199993, 49.061032699000108 ], [ -122.377534993, 49.060968302000049 ], [ -122.3771645899999, 49.060959826000065 ], [ -122.37703638499994, 49.060956901000104 ], [ -122.37640740099999, 49.061003305000057 ], [ -122.375534711999933, 49.06129750700012 ], [ -122.374752582999974, 49.060884305000101 ], [ -122.375076697999944, 49.060552709000063 ], [ -122.375127011, 49.06034708900016 ], [ -122.37511720399999, 49.060199992000101 ], [ -122.375093514999932, 49.05984480200005 ], [ -122.374437983999968, 49.059704495000105 ], [ -122.374214753999965, 49.059563181000073 ], [ -122.374192799999932, 49.059549310000065 ], [ -122.374120725999958, 49.059464485000049 ], [ -122.374058683999976, 49.059391498000053 ], [ -122.374033480999984, 49.059267827000077 ], [ -122.373994282999945, 49.059075687000089 ], [ -122.374034901999934, 49.05797360600009 ], [ -122.373929291999914, 49.057888893000019 ], [ -122.373795797999932, 49.057845689000089 ], [ -122.372921005999942, 49.057833310000049 ], [ -122.371988823999956, 49.057825536000102 ], [ -122.371576790999924, 49.057822096000024 ], [ -122.371146332999956, 49.057937828000057 ], [ -122.37066549799998, 49.058067097000055 ], [ -122.37044869199994, 49.058075101000028 ], [ -122.370442566999941, 49.057313664000084 ], [ -122.370440987999956, 49.057119303000064 ], [ -122.370440629999919, 49.056890899000052 ], [ -122.370440363999961, 49.05673779600005 ], [ -122.370440034999973, 49.056517114000023 ], [ -122.370428541999914, 49.055873925000064 ], [ -122.370417312999976, 49.055245273000061 ], [ -122.370415908999973, 49.05515778900007 ], [ -122.370386949999926, 49.054470030000104 ], [ -122.370384712999922, 49.054416632000077 ], [ -122.370254290999924, 49.053912808000057 ], [ -122.369982846999932, 49.05360345600009 ], [ -122.369739773, 49.05343927600007 ], [ -122.369466809999949, 49.053307441000079 ], [ -122.36895259, 49.053116523000085 ], [ -122.368248738999938, 49.052855188000088 ], [ -122.365293880999971, 49.051569227000115 ], [ -122.364560661999974, 49.051250120000098 ], [ -122.361117476999979, 49.049753201000073 ], [ -122.360557771999964, 49.049509867000033 ], [ -122.360199629999968, 49.049267397000079 ], [ -122.360033092999984, 49.048978337000044 ], [ -122.360758080999972, 49.049294123000045 ], [ -122.365394399999914, 49.051313570000055 ], [ -122.36871265299996, 49.052758693000037 ], [ -122.369986275999949, 49.053313281000094 ], [ -122.371866892999932, 49.054096293000093 ], [ -122.372240699999935, 49.054251900000082 ], [ -122.374049800999956, 49.055005095000077 ], [ -122.376134553999961, 49.055872911000115 ], [ -122.377401621999965, 49.056387368000131 ], [ -122.377911967, 49.056594571000069 ], [ -122.379271882999959, 49.057125128000045 ], [ -122.379630953999978, 49.05726520000006 ], [ -122.380797934999947, 49.057720447000108 ], [ -122.381472534999943, 49.057984799000053 ], [ -122.381452910999954, 49.058077599000079 ], [ -122.381439901999954, 49.05813905400003 ], [ -122.381371197999954, 49.058463659000068 ], [ -122.381314753999945, 49.058730364000077 ], [ -122.381140666999954, 49.058769584000053 ], [ -122.381059601999979, 49.058879538000049 ], [ -122.381119175999984, 49.058993315000102 ], [ -122.381286072999956, 49.059046731000073 ], [ -122.381237114999934, 49.059676994000043 ], [ -122.381222334999961, 49.059867610000019 ], [ -122.381224378999988, 49.06030451900007 ], [ -122.38122494699995, 49.060430563000146 ], [ -122.381225052999952, 49.060449125000041 ], [ -122.381224792999888, 49.060459264000045 ], [ -122.38122361299996, 49.060520296000071 ], [ -122.381222932999961, 49.060637528000065 ], [ -122.38122130499994, 49.060907393000043 ], [ -122.381219913999956, 49.061141258000085 ], [ -122.381210388999975, 49.062751797000068 ], [ -122.380331867999971, 49.062749327000041 ], [ -122.377793997999916, 49.062742105000076 ], [ -122.377796833, 49.062436261000052 ], [ -122.377801292999948, 49.061950503000027 ], [ -122.377801484999935, 49.061932536000043 ], [ -122.377808393999942, 49.061183098000058 ], [ -122.377779663999917, 49.061141185000075 ], [ -122.377761547999953, 49.061114791000136 ], [ -122.37770520199993, 49.061032699000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125007469", "BldgCostT": "80770412", "sL_LossRatio": "0.749093406870915", "sL_AssetLoss": "989970", "sL_BldgLoss": "741580", "sL_StrLoss": "391790", "sL_NStrLoss": "349790", "sL_ContLoss": "248390", "geom_point": "0101000020E61000000D7240E07B975EC0214186C848874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.368231989999956, 49.059039585000036 ], [ -122.36789080199999, 49.058956797000121 ], [ -122.365982002999942, 49.058902091000135 ], [ -122.365606299999968, 49.058772209000082 ], [ -122.365301100999901, 49.058562711000086 ], [ -122.364900609999935, 49.058293095000074 ], [ -122.364759905999946, 49.058115203000035 ], [ -122.364714271999958, 49.05794873500011 ], [ -122.364701290999975, 49.057901414000078 ], [ -122.364718477999986, 49.057453334000094 ], [ -122.364730477999942, 49.057140690000054 ], [ -122.365634391999933, 49.057131600000019 ], [ -122.365764888999962, 49.057072004000084 ], [ -122.365836122999909, 49.056966303000145 ], [ -122.365765309, 49.056627595000094 ], [ -122.365599113999906, 49.056320003000103 ], [ -122.365248697999931, 49.055672609000098 ], [ -122.364970205999924, 49.055436905000128 ], [ -122.364742384999985, 49.055321896000066 ], [ -122.363867828999943, 49.055097598000067 ], [ -122.363382283999925, 49.055041491000054 ], [ -122.363217489999911, 49.055610987000108 ], [ -122.363081391999941, 49.055688396000043 ], [ -122.362915480999931, 49.055710797000067 ], [ -122.361199447999965, 49.055618101000078 ], [ -122.361123697000025, 49.055613980000075 ], [ -122.360857441999897, 49.055599994000048 ], [ -122.36006209199995, 49.05555817300008 ], [ -122.359959953999962, 49.055552001000066 ], [ -122.35993260099994, 49.054238527000145 ], [ -122.360066917, 49.054253020000054 ], [ -122.360727434999959, 49.054327695000019 ], [ -122.364526044999963, 49.054757169000077 ], [ -122.365113668999967, 49.05482359800007 ], [ -122.366071603999913, 49.054931863000057 ], [ -122.366384433999912, 49.054967219000048 ], [ -122.366533889, 49.054984119000096 ], [ -122.370417312999976, 49.055245273000061 ], [ -122.370428541999914, 49.055873925000064 ], [ -122.370440034999973, 49.056517114000023 ], [ -122.370440363999961, 49.05673779600005 ], [ -122.370440629999919, 49.056890899000052 ], [ -122.370440987999956, 49.057119303000064 ], [ -122.370442566999941, 49.057313664000084 ], [ -122.37044869199994, 49.058075101000028 ], [ -122.370463482999966, 49.058600269000117 ], [ -122.370480679999957, 49.059210291000049 ], [ -122.370499018999936, 49.060264302000093 ], [ -122.370500869999915, 49.060372403000088 ], [ -122.37050240399995, 49.060459498000093 ], [ -122.369006394999971, 49.060445904000076 ], [ -122.36883530299994, 49.059691001000019 ], [ -122.368796693, 49.059519288000097 ], [ -122.36871269699995, 49.059385795000026 ], [ -122.368522398999986, 49.05919359899999 ], [ -122.368231989999956, 49.059039585000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119735999", "BldgCostT": "77534999", "sL_LossRatio": "0.747619103263727", "sL_AssetLoss": "855770", "sL_BldgLoss": "639790", "sL_StrLoss": "343630", "sL_NStrLoss": "296160", "sL_ContLoss": "215980", "geom_point": "0101000020E610000010A31096EB975EC0EF34048DBA874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.373158596999957, 49.061337989000066 ], [ -122.372813208999901, 49.061063996 ], [ -122.372266825999972, 49.060841002000117 ], [ -122.371994343999987, 49.060765151000055 ], [ -122.371639911999949, 49.060666503000043 ], [ -122.371090792999922, 49.060512713000094 ], [ -122.37066827299995, 49.06047449600004 ], [ -122.37050240399995, 49.060459498000093 ], [ -122.370500869999915, 49.060372403000088 ], [ -122.370499018999936, 49.060264302000093 ], [ -122.370480679999957, 49.059210291000049 ], [ -122.370463482999966, 49.058600269000117 ], [ -122.37044869199994, 49.058075101000028 ], [ -122.37066549799998, 49.058067097000055 ], [ -122.371146332999956, 49.057937828000057 ], [ -122.371576790999924, 49.057822096000024 ], [ -122.371988823999956, 49.057825536000102 ], [ -122.372921005999942, 49.057833310000049 ], [ -122.373795797999932, 49.057845689000089 ], [ -122.373929291999914, 49.057888893000019 ], [ -122.374034901999934, 49.05797360600009 ], [ -122.373994282999945, 49.059075687000089 ], [ -122.374033480999984, 49.059267827000077 ], [ -122.374058683999976, 49.059391498000053 ], [ -122.374120725999958, 49.059464485000049 ], [ -122.374192799999932, 49.059549310000065 ], [ -122.374214753999965, 49.059563181000073 ], [ -122.374437983999968, 49.059704495000105 ], [ -122.375093514999932, 49.05984480200005 ], [ -122.37511720399999, 49.060199992000101 ], [ -122.375127011, 49.06034708900016 ], [ -122.375076697999944, 49.060552709000063 ], [ -122.374752582999974, 49.060884305000101 ], [ -122.375534711999933, 49.06129750700012 ], [ -122.37640740099999, 49.061003305000057 ], [ -122.37703638499994, 49.060956901000104 ], [ -122.3771645899999, 49.060959826000065 ], [ -122.377534993, 49.060968302000049 ], [ -122.37770520199993, 49.061032699000108 ], [ -122.377761547999953, 49.061114791000136 ], [ -122.377779663999917, 49.061141185000075 ], [ -122.377808393999942, 49.061183098000058 ], [ -122.377801484999935, 49.061932536000043 ], [ -122.377801292999948, 49.061950503000027 ], [ -122.377796833, 49.062436261000052 ], [ -122.377793997999916, 49.062742105000076 ], [ -122.376631101, 49.062737081000073 ], [ -122.375527190999961, 49.062733665000046 ], [ -122.375187718999925, 49.062732593000064 ], [ -122.374654083999928, 49.062730799000128 ], [ -122.374054099999938, 49.062615890000124 ], [ -122.373609707999961, 49.062346708000042 ], [ -122.373401798999978, 49.062064709000047 ], [ -122.373322089999974, 49.061646406000101 ], [ -122.373203049, 49.061421828000114 ], [ -122.373158596999957, 49.061337989000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124124249", "BldgCostT": "83504999", "sL_LossRatio": "0.82524893097646", "sL_AssetLoss": "590726", "sL_BldgLoss": "487496", "sL_StrLoss": "302748", "sL_NStrLoss": "184748", "sL_ContLoss": "103230", "geom_point": "0101000020E6100000D0615B9245975EC075F7C6318E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.359986643999974, 49.060237841000067 ], [ -122.359988422999976, 49.059442078000082 ], [ -122.359991386999951, 49.058137891000044 ], [ -122.359993716999924, 49.057117202000086 ], [ -122.360007519999982, 49.057117438000041 ], [ -122.360104377999974, 49.057119159000074 ], [ -122.364730477999942, 49.057140690000054 ], [ -122.364718477999986, 49.057453334000094 ], [ -122.364701290999975, 49.057901414000078 ], [ -122.364714271999958, 49.05794873500011 ], [ -122.364759905999946, 49.058115203000035 ], [ -122.364900609999935, 49.058293095000074 ], [ -122.365301100999901, 49.058562711000086 ], [ -122.365606299999968, 49.058772209000082 ], [ -122.365982002999942, 49.058902091000135 ], [ -122.36789080199999, 49.058956797000121 ], [ -122.368231989999956, 49.059039585000036 ], [ -122.368522398999986, 49.05919359899999 ], [ -122.36871269699995, 49.059385795000026 ], [ -122.368796693, 49.059519288000097 ], [ -122.36883530299994, 49.059691001000019 ], [ -122.369006394999971, 49.060445904000076 ], [ -122.367804556999914, 49.060457206000116 ], [ -122.367379391999975, 49.060455505000064 ], [ -122.366232241999967, 49.060450849000077 ], [ -122.366061907999963, 49.060437774000036 ], [ -122.366017024999948, 49.060423828000097 ], [ -122.365916309999974, 49.060382157000056 ], [ -122.365807199999907, 49.060325251000044 ], [ -122.365784584999972, 49.060381057000029 ], [ -122.365690280999928, 49.060449979000069 ], [ -122.365558246999953, 49.060422976000055 ], [ -122.36450472699994, 49.060420657000087 ], [ -122.364304149999967, 49.060419710000126 ], [ -122.364167256999977, 49.060419042000071 ], [ -122.363318705999973, 49.060414797000078 ], [ -122.360986406999984, 49.060402399000118 ], [ -122.36077270499996, 49.060401179000046 ], [ -122.360028922999931, 49.060397025000022 ], [ -122.360031655999961, 49.060309668000073 ], [ -122.359986643999974, 49.060237841000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69563500", "BldgCostT": "44350000", "sL_LossRatio": "0.771923854139041", "sL_AssetLoss": "426077", "sL_BldgLoss": "328899", "sL_StrLoss": "177847", "sL_NStrLoss": "151052", "sL_ContLoss": "97178", "geom_point": "0101000020E6100000EDE4888C39975EC04B10093A35874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.359982348999921, 49.056590738000104 ], [ -122.359959953999962, 49.055552001000066 ], [ -122.36006209199995, 49.05555817300008 ], [ -122.360857441999897, 49.055599994000048 ], [ -122.361123697000025, 49.055613980000075 ], [ -122.361199447999965, 49.055618101000078 ], [ -122.362915480999931, 49.055710797000067 ], [ -122.363081391999941, 49.055688396000043 ], [ -122.363217489999911, 49.055610987000108 ], [ -122.363382283999925, 49.055041491000054 ], [ -122.363867828999943, 49.055097598000067 ], [ -122.364742384999985, 49.055321896000066 ], [ -122.364970205999924, 49.055436905000128 ], [ -122.365248697999931, 49.055672609000098 ], [ -122.365599113999906, 49.056320003000103 ], [ -122.365765309, 49.056627595000094 ], [ -122.365836122999909, 49.056966303000145 ], [ -122.365764888999962, 49.057072004000084 ], [ -122.365634391999933, 49.057131600000019 ], [ -122.364730477999942, 49.057140690000054 ], [ -122.360104377999974, 49.057119159000074 ], [ -122.360007519999982, 49.057117438000041 ], [ -122.359993716999924, 49.057117202000086 ], [ -122.359987, 49.05680653400001 ], [ -122.359985054, 49.05671660900007 ], [ -122.35998353699992, 49.056644663000078 ], [ -122.359982348999921, 49.056590738000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107556728", "BldgCostT": "71874857", "sL_LossRatio": "0.75488016812836", "sL_AssetLoss": "989720", "sL_BldgLoss": "747120", "sL_StrLoss": "370820", "sL_NStrLoss": "376300", "sL_ContLoss": "242600", "geom_point": "0101000020E6100000CBC4294A74985EC0CF3249349A8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.370289810999964, 49.094996116000083 ], [ -122.37026041899999, 49.094357874000146 ], [ -122.370188795, 49.09280009500003 ], [ -122.370180954999938, 49.092629051000067 ], [ -122.370158801999949, 49.092147781000044 ], [ -122.370157980999934, 49.092115997000136 ], [ -122.370092114999949, 49.089490804000057 ], [ -122.370197298999983, 49.088264887000108 ], [ -122.37010870899995, 49.087282356000053 ], [ -122.369993871999952, 49.086008897000106 ], [ -122.368798789999971, 49.08600794700007 ], [ -122.368333177999943, 49.08600758000005 ], [ -122.36804558599998, 49.086007350000088 ], [ -122.367278575999975, 49.086006743000041 ], [ -122.366894904000034, 49.086006421000093 ], [ -122.36497773499994, 49.086004848000101 ], [ -122.364855493999968, 49.086004746000079 ], [ -122.364892023999928, 49.085536801000053 ], [ -122.364561961999925, 49.085525632000071 ], [ -122.364524576999912, 49.086004472000113 ], [ -122.363567095999912, 49.086003673000072 ], [ -122.362950784999938, 49.086003156000082 ], [ -122.360307610999968, 49.086000886000065 ], [ -122.360275479999984, 49.086000850000055 ], [ -122.359830068999884, 49.083042270000064 ], [ -122.35986030199993, 49.082775147000092 ], [ -122.359871982999962, 49.082671898000036 ], [ -122.359942909999916, 49.08230447600004 ], [ -122.35996619299999, 49.082183797000049 ], [ -122.359986710999934, 49.081869911000105 ], [ -122.359965975999955, 49.079412386000094 ], [ -122.359958703999965, 49.078549915000082 ], [ -122.3599621769999, 49.077802092000134 ], [ -122.35996308599999, 49.077613197000069 ], [ -122.359968215999942, 49.076515796000116 ], [ -122.359974812999951, 49.075103295000083 ], [ -122.361457509999937, 49.074907506000123 ], [ -122.364010755999942, 49.074905580000078 ], [ -122.368145198999969, 49.074902369 ], [ -122.370733507999915, 49.074900279000062 ], [ -122.373512780999945, 49.07489795500004 ], [ -122.375416139999942, 49.0748963180001 ], [ -122.377073194999937, 49.074894868000065 ], [ -122.377470273999975, 49.074894502000063 ], [ -122.377976821999965, 49.074894060000119 ], [ -122.379373648999973, 49.074892808000122 ], [ -122.380354746999956, 49.074891919000088 ], [ -122.381147399999989, 49.074891207000078 ], [ -122.38141250299995, 49.074894944000036 ], [ -122.381549543999952, 49.074896885000058 ], [ -122.381809622999981, 49.074900570000132 ], [ -122.38295956, 49.074916856000094 ], [ -122.385300370999985, 49.074949965000073 ], [ -122.387107339999929, 49.074975487000053 ], [ -122.389653438999943, 49.075011398000065 ], [ -122.390228314999959, 49.075019487000098 ], [ -122.390598097999899, 49.07502469000012 ], [ -122.3910771499999, 49.075031439000085 ], [ -122.391259190999946, 49.075034 ], [ -122.392927643999954, 49.07503241100008 ], [ -122.394351437999902, 49.075031024000069 ], [ -122.396185976999959, 49.07502922000004 ], [ -122.397514735999906, 49.075027897000041 ], [ -122.398007745999948, 49.075027404000089 ], [ -122.400006462999983, 49.075025350000068 ], [ -122.40149910400001, 49.075023805000065 ], [ -122.403705809, 49.075021512000049 ], [ -122.403728165999894, 49.077218223000052 ], [ -122.40374015899999, 49.078396594000083 ], [ -122.403756835999928, 49.080033804000031 ], [ -122.403759690999934, 49.080315505000108 ], [ -122.403777944999931, 49.081365129000055 ], [ -122.403784541, 49.081743023000044 ], [ -122.403791713999965, 49.082156705000052 ], [ -122.403795940999942, 49.082399519000091 ], [ -122.403815608999977, 49.083533506000101 ], [ -122.403818617999946, 49.083704560000079 ], [ -122.403831915999902, 49.084468895000072 ], [ -122.403883208999929, 49.08525355700003 ], [ -122.403887320999942, 49.085316389000084 ], [ -122.403925485999963, 49.085900256000102 ], [ -122.404017122999932, 49.087301805000017 ], [ -122.404106547999973, 49.089255991000115 ], [ -122.404113921999951, 49.089416197000041 ], [ -122.4032293, 49.089417132000086 ], [ -122.402174596999927, 49.089418216000098 ], [ -122.401243440999963, 49.089419198000073 ], [ -122.40068191499995, 49.089419755000023 ], [ -122.400161504, 49.089420302000114 ], [ -122.399997162999924, 49.089420462000128 ], [ -122.39859997, 49.089421883000099 ], [ -122.398052255999943, 49.089422425000059 ], [ -122.396353770999966, 49.089424120000103 ], [ -122.38972524399999, 49.089430412000063 ], [ -122.388177133999932, 49.08943184300005 ], [ -122.387067420999941, 49.08943281900013 ], [ -122.384574711999932, 49.089435046000055 ], [ -122.383725581999897, 49.08943578500002 ], [ -122.383355790999957, 49.089436105000047 ], [ -122.382417297999922, 49.089436892 ], [ -122.382303726999936, 49.090019045000076 ], [ -122.382137416999953, 49.090871497000109 ], [ -122.38212683099999, 49.090968603000057 ], [ -122.382099313999902, 49.091220461000084 ], [ -122.382018497999937, 49.091960902000054 ], [ -122.382017981999951, 49.092719795000015 ], [ -122.382017076999944, 49.094060182000106 ], [ -122.382017073999933, 49.094087184000088 ], [ -122.382015382999924, 49.096542949000074 ], [ -122.382015321999916, 49.096672500000118 ], [ -122.381128920999913, 49.096671182000115 ], [ -122.37749897599997, 49.096665785000063 ], [ -122.376635944999919, 49.096664467000018 ], [ -122.373923822999956, 49.096660310000118 ], [ -122.372142883999956, 49.096657546000095 ], [ -122.370960479999923, 49.096655694000091 ], [ -122.370366109999935, 49.096655498000125 ], [ -122.370358087999975, 49.096481328000074 ], [ -122.370336928999947, 49.096021030000024 ], [ -122.370307597999968, 49.095383142000081 ], [ -122.370289810999964, 49.094996116000083 ] ], [ [ -122.378363102999927, 49.095160528000072 ], [ -122.378419412, 49.094436678000072 ], [ -122.378305123999937, 49.09443282600013 ], [ -122.378379356999957, 49.093478550000029 ], [ -122.378206579, 49.093472726000094 ], [ -122.378275107999954, 49.092591800000058 ], [ -122.377682216000011, 49.092571815000056 ], [ -122.377781279999979, 49.091298495000068 ], [ -122.377740497, 49.091297120000043 ], [ -122.377921293, 49.088973088000103 ], [ -122.377723639999942, 49.088966425000102 ], [ -122.377895951999903, 49.086751350000014 ], [ -122.377646175, 49.086742929000117 ], [ -122.377853749999957, 49.084074447000098 ], [ -122.375530164999986, 49.083996080000063 ], [ -122.375585811999983, 49.083281129000042 ], [ -122.375572610999967, 49.083280683000105 ], [ -122.37560568899994, 49.082855685000062 ], [ -122.375190424999943, 49.082841674000051 ], [ -122.375204258999986, 49.082663952000118 ], [ -122.374599913999987, 49.082643559000061 ], [ -122.374879862999975, 49.079047303000053 ], [ -122.377708895999959, 49.079142739000041 ], [ -122.377720068999906, 49.078999086000074 ], [ -122.374248964999936, 49.078881979000101 ], [ -122.374132338999928, 49.080380002000091 ], [ -122.373187304999988, 49.08034810000003 ], [ -122.373178603999946, 49.080459826 ], [ -122.372297138999983, 49.080430061000072 ], [ -122.372264089999973, 49.080854346000109 ], [ -122.37143935099999, 49.080826491000032 ], [ -122.371418869999971, 49.081089366000093 ], [ -122.36902935199997, 49.081008625 ], [ -122.368988294999951, 49.081535223000081 ], [ -122.363526388999929, 49.081350466000096 ], [ -122.363548223999913, 49.081070837000041 ], [ -122.363388286999935, 49.081065422000108 ], [ -122.36332482899999, 49.081878044000042 ], [ -122.36633672399995, 49.081979964000077 ], [ -122.36627236, 49.082804857000056 ], [ -122.370570431, 49.082950153000084 ], [ -122.37055618499997, 49.083132941000088 ], [ -122.371411412, 49.083161831000105 ], [ -122.371353629999945, 49.083903388000117 ], [ -122.37353298499994, 49.083976978000145 ], [ -122.373357579, 49.086229252000088 ], [ -122.37385301299993, 49.086245975000068 ], [ -122.373711898999929, 49.088058003000029 ], [ -122.375076381999975, 49.088104048000034 ], [ -122.374796394999962, 49.091700254000038 ], [ -122.37254117400002, 49.091624141000047 ], [ -122.372462625999944, 49.092632297000087 ], [ -122.374414589999915, 49.092698178000056 ], [ -122.374270050999925, 49.094554213000052 ], [ -122.374295907999951, 49.094555086000057 ], [ -122.374258022999953, 49.095041548000111 ], [ -122.376174107999987, 49.095106182000059 ], [ -122.376175618999952, 49.095086781000106 ], [ -122.378363102999927, 49.095160528000072 ] ], [ [ -122.389558781999952, 49.077367335000083 ], [ -122.389382049999966, 49.07964706500011 ], [ -122.390664120999929, 49.079690150000019 ], [ -122.39072462899999, 49.07890938500006 ], [ -122.390837737999902, 49.078913185000062 ], [ -122.390898863999908, 49.078124386000127 ], [ -122.392792990999965, 49.078188010000119 ], [ -122.3928159, 49.077892232000103 ], [ -122.394649025999954, 49.077953775 ], [ -122.394653825999939, 49.077891776000094 ], [ -122.398782844, 49.078030284000057 ], [ -122.398852430999952, 49.077130296000064 ], [ -122.397847051999989, 49.077096585000064 ], [ -122.39783462699998, 49.077257240000023 ], [ -122.393091439999949, 49.077098071000087 ], [ -122.39308303199999, 49.077206656000023 ], [ -122.391977461999915, 49.077169525000052 ], [ -122.39195589799999, 49.077447881000111 ], [ -122.389558781999952, 49.077367335000083 ] ], [ [ -122.393511822999983, 49.083230452000151 ], [ -122.393313717999959, 49.085788324000099 ], [ -122.38785121899997, 49.085604805000045 ], [ -122.38790529399995, 49.084907687000076 ], [ -122.387396945999939, 49.084890595000047 ], [ -122.387499839999961, 49.083564229000068 ], [ -122.385300822999938, 49.083490261000101 ], [ -122.385240705999962, 49.084264724000029 ], [ -122.384559307999936, 49.08424179400005 ], [ -122.384532690999961, 49.084584628000108 ], [ -122.385431187999984, 49.084614861000048 ], [ -122.385284276999982, 49.086507450000035 ], [ -122.386975153000023, 49.086564326000044 ], [ -122.386942677999983, 49.086982839000036 ], [ -122.389549741999971, 49.087070481000119 ], [ -122.389562830999921, 49.086901679000079 ], [ -122.395025488999948, 49.087085112000111 ], [ -122.395021926999945, 49.087131132000096 ], [ -122.396416534999958, 49.087177918000073 ], [ -122.39643915299996, 49.086885645000024 ], [ -122.396586124999899, 49.086890575000041 ], [ -122.396637880999961, 49.086221748000092 ], [ -122.400163692999939, 49.086339944 ], [ -122.400216583999921, 49.085655758000016 ], [ -122.398146595999933, 49.085586379000041 ], [ -122.39834883599994, 49.082971591000039 ], [ -122.397805654999956, 49.08295337800007 ], [ -122.397773163999929, 49.083373424000065 ], [ -122.393511822999983, 49.083230452000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148934417", "BldgCostT": "95086667", "sL_LossRatio": "0.72766666957399", "sL_AssetLoss": "1375836", "sL_BldgLoss": "1001150", "sL_StrLoss": "508020", "sL_NStrLoss": "493130", "sL_ContLoss": "374686", "geom_point": "0101000020E61000000E457012F9995EC0BEE6D9D5F9884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.404017122999932, 49.087301805000017 ], [ -122.403925485999963, 49.085900256000102 ], [ -122.403887320999942, 49.085316389000084 ], [ -122.403883208999929, 49.08525355700003 ], [ -122.403831915999902, 49.084468895000072 ], [ -122.403818617999946, 49.083704560000079 ], [ -122.403815608999977, 49.083533506000101 ], [ -122.403795940999942, 49.082399519000091 ], [ -122.403791713999965, 49.082156705000052 ], [ -122.403784541, 49.081743023000044 ], [ -122.403777944999931, 49.081365129000055 ], [ -122.403759690999934, 49.080315505000108 ], [ -122.403756835999928, 49.080033804000031 ], [ -122.40374015899999, 49.078396594000083 ], [ -122.403728165999894, 49.077218223000052 ], [ -122.403705809, 49.075021512000049 ], [ -122.40149910400001, 49.075023805000065 ], [ -122.400006462999983, 49.075025350000068 ], [ -122.398007745999948, 49.075027404000089 ], [ -122.397514735999906, 49.075027897000041 ], [ -122.396185976999959, 49.07502922000004 ], [ -122.394351437999902, 49.075031024000069 ], [ -122.392927643999954, 49.07503241100008 ], [ -122.391259190999946, 49.075034 ], [ -122.3910771499999, 49.075031439000085 ], [ -122.390598097999899, 49.07502469000012 ], [ -122.390228314999959, 49.075019487000098 ], [ -122.389653438999943, 49.075011398000065 ], [ -122.387107339999929, 49.074975487000053 ], [ -122.385300370999985, 49.074949965000073 ], [ -122.38295956, 49.074916856000094 ], [ -122.381809622999981, 49.074900570000132 ], [ -122.381549543999952, 49.074896885000058 ], [ -122.38141250299995, 49.074894944000036 ], [ -122.381147399999989, 49.074891207000078 ], [ -122.381149763999986, 49.074706274000022 ], [ -122.38115134899999, 49.074580327000042 ], [ -122.381188793999968, 49.071627596000091 ], [ -122.381192714999912, 49.070919254000074 ], [ -122.381194921999935, 49.07051447900006 ], [ -122.381197103999966, 49.070118693000012 ], [ -122.381199309999943, 49.06971391700003 ], [ -122.381202463999969, 49.069147149000074 ], [ -122.381207753999959, 49.068184702000082 ], [ -122.381208105, 49.06811989600007 ], [ -122.381208739999948, 49.067995812000078 ], [ -122.381210531999926, 49.067654044000079 ], [ -122.381217004999954, 49.066421620000064 ], [ -122.381220973999945, 49.065663857000082 ], [ -122.381224629999977, 49.065563913000048 ], [ -122.381221934999985, 49.065036202000037 ], [ -122.381219984999987, 49.064649513000028 ], [ -122.38121673899991, 49.064010700000097 ], [ -122.381214649999919, 49.063596945000064 ], [ -122.381210388999975, 49.062751797000068 ], [ -122.381219913999956, 49.061141258000085 ], [ -122.38122130499994, 49.060907393000043 ], [ -122.381222932999961, 49.060637528000065 ], [ -122.38122361299996, 49.060520296000071 ], [ -122.381224792999888, 49.060459264000045 ], [ -122.381225052999952, 49.060449125000041 ], [ -122.38122494699995, 49.060430563000146 ], [ -122.381224378999988, 49.06030451900007 ], [ -122.381222334999961, 49.059867610000019 ], [ -122.381237114999934, 49.059676994000043 ], [ -122.381286072999956, 49.059046731000073 ], [ -122.381119175999984, 49.058993315000102 ], [ -122.381059601999979, 49.058879538000049 ], [ -122.381140666999954, 49.058769584000053 ], [ -122.381314753999945, 49.058730364000077 ], [ -122.381371197999954, 49.058463659000068 ], [ -122.381439901999954, 49.05813905400003 ], [ -122.381452910999954, 49.058077599000079 ], [ -122.381472534999943, 49.057984799000053 ], [ -122.381506870999914, 49.057779472000099 ], [ -122.381515972999978, 49.057724827000101 ], [ -122.381504668999952, 49.05760960900006 ], [ -122.381495354999927, 49.057515002000102 ], [ -122.381466361999941, 49.057419417000069 ], [ -122.381400873999922, 49.057203470000061 ], [ -122.38139697299999, 49.057190524000106 ], [ -122.381257859999977, 49.056731750000097 ], [ -122.381216681999902, 49.056389944000102 ], [ -122.381197239999949, 49.056228760000025 ], [ -122.381159667999938, 49.055917120000124 ], [ -122.381607477999978, 49.05595404600006 ], [ -122.382972029999948, 49.056066542000103 ], [ -122.38413651099999, 49.056136407000032 ], [ -122.384346216, 49.056114632000117 ], [ -122.384884265999986, 49.056161297000088 ], [ -122.386269727999931, 49.056281432000112 ], [ -122.386665228999902, 49.056315718000022 ], [ -122.387235757000013, 49.056365197000027 ], [ -122.387934101999946, 49.056425736000079 ], [ -122.388679261999982, 49.056490334000031 ], [ -122.389569125999984, 49.056565048000046 ], [ -122.390202134999953, 49.056618201000049 ], [ -122.390434510999953, 49.056637731000052 ], [ -122.391116643999936, 49.056695017 ], [ -122.394413844, 49.05697182900014 ], [ -122.394619308999964, 49.056989085000104 ], [ -122.395590948999953, 49.057070627000016 ], [ -122.396683938999956, 49.057162384000129 ], [ -122.399511619999927, 49.057399641000146 ], [ -122.399993095999889, 49.057440039000042 ], [ -122.401047265999978, 49.05752846500009 ], [ -122.401907312999967, 49.057600595000054 ], [ -122.403619001, 49.05758410800005 ], [ -122.40407742299999, 49.057572463000021 ], [ -122.40513228699993, 49.057545646000101 ], [ -122.408636512999976, 49.057456514000066 ], [ -122.409567456999952, 49.057432835000057 ], [ -122.410415799999967, 49.057411230000099 ], [ -122.410909576, 49.057398661000022 ], [ -122.412909335999927, 49.057347714000116 ], [ -122.415223333999933, 49.057288693000054 ], [ -122.415826392999975, 49.057273308000099 ], [ -122.41627849799994, 49.057261765000113 ], [ -122.41675671699997, 49.057249567000085 ], [ -122.421493359999957, 49.057128552000094 ], [ -122.423409884999913, 49.057079543000121 ], [ -122.425245048999983, 49.057032545000119 ], [ -122.426087189999947, 49.057011007000057 ], [ -122.426043462999985, 49.057313268000065 ], [ -122.425943407999938, 49.058004865000072 ], [ -122.425898136999976, 49.05831785400008 ], [ -122.425874591999971, 49.058480485000061 ], [ -122.425865282999965, 49.058789619000116 ], [ -122.425836838999942, 49.059734326000033 ], [ -122.425815298999936, 49.060448993000122 ], [ -122.425808102999923, 49.060831849000074 ], [ -122.425763079999967, 49.063233602000125 ], [ -122.42575083499996, 49.064708960000047 ], [ -122.425734185999957, 49.066714832000102 ], [ -122.425700071999984, 49.070816679000103 ], [ -122.425687115999906, 49.072376704000121 ], [ -122.425878879999971, 49.072873498000035 ], [ -122.426144907, 49.073153689000073 ], [ -122.426878607999981, 49.073795487000027 ], [ -122.42705201299998, 49.07430069100009 ], [ -122.426917101999948, 49.074827105000047 ], [ -122.426814297999925, 49.07495440400001 ], [ -122.426554214999911, 49.075275671000057 ], [ -122.426262330999961, 49.075636427000049 ], [ -122.425879706999964, 49.076109508000108 ], [ -122.425753702999927, 49.076342408000095 ], [ -122.425714224999965, 49.076696113 ], [ -122.425709997999917, 49.076733989000076 ], [ -122.425718900999982, 49.077735082000046 ], [ -122.425724611999897, 49.078382792000106 ], [ -122.425737720999948, 49.079858330000064 ], [ -122.425744745999978, 49.080649829000038 ], [ -122.425747279999953, 49.080937775000031 ], [ -122.425748723999945, 49.081099685000055 ], [ -122.4257488699999, 49.081117661000064 ], [ -122.42575065699998, 49.081315533000115 ], [ -122.425757125999979, 49.08204210800006 ], [ -122.425761129999927, 49.082109710000019 ], [ -122.426046965999959, 49.086913515000091 ], [ -122.426061977999922, 49.0871657550001 ], [ -122.426114484999957, 49.088047777000035 ], [ -122.426194782999971, 49.089397492000089 ], [ -122.422391500999936, 49.089398870000089 ], [ -122.421912137999939, 49.089399048000054 ], [ -122.420594406999939, 49.089399500000084 ], [ -122.416186462999988, 49.089415283000093 ], [ -122.415222617999945, 49.089418688000094 ], [ -122.414104502999947, 49.089418503000033 ], [ -122.413652454999962, 49.089418422000044 ], [ -122.41300861799999, 49.08941829300003 ], [ -122.404113921999951, 49.089416197000041 ], [ -122.404106547999973, 49.089255991000115 ], [ -122.404017122999932, 49.087301805000017 ] ], [ [ -122.413050176999903, 49.087155305000131 ], [ -122.413068776999978, 49.08691384600013 ], [ -122.418531527999946, 49.087096084000102 ], [ -122.418523414999953, 49.087201573000129 ], [ -122.418738102999967, 49.0872087300001 ], [ -122.418762846999968, 49.086886983000028 ], [ -122.422694041999947, 49.087017949000014 ], [ -122.422853911999965, 49.08493685500013 ], [ -122.422616032999883, 49.084928934000075 ], [ -122.422735680999949, 49.083371403000058 ], [ -122.422607628999955, 49.083367138000042 ], [ -122.42260846899994, 49.083356215000038 ], [ -122.4223181, 49.083346545000076 ], [ -122.422203635999949, 49.084836430000031 ], [ -122.416741133999963, 49.084654379 ], [ -122.417017841999922, 49.08105802500009 ], [ -122.418965279999981, 49.081122960000073 ], [ -122.419079838999934, 49.079633070000078 ], [ -122.421378122999954, 49.079709660000113 ], [ -122.421416967999932, 49.079204125000111 ], [ -122.422295585999962, 49.079233392000049 ], [ -122.422301634999968, 49.079154646000049 ], [ -122.422665991999935, 49.079166781000083 ], [ -122.422723216999955, 49.078421755000129 ], [ -122.422515829999924, 49.078414849000026 ], [ -122.422614734999954, 49.077127194000141 ], [ -122.422385577999975, 49.077119562000078 ], [ -122.422380216999898, 49.077189349000093 ], [ -122.421610755999936, 49.077163718000115 ], [ -122.421607586999954, 49.077204968000061 ], [ -122.420277808999955, 49.077160660000139 ], [ -122.420267637999956, 49.077292999000093 ], [ -122.414806027999987, 49.077110846000011 ], [ -122.414879856999946, 49.076151709000037 ], [ -122.413350329999929, 49.076100648000136 ], [ -122.413260152999925, 49.077271668000051 ], [ -122.407798572, 49.07708916000005 ], [ -122.407802119999971, 49.077043158000023 ], [ -122.407194836999949, 49.077022847000073 ], [ -122.407112486999935, 49.078090372000119 ], [ -122.407673972999945, 49.078109151000078 ], [ -122.40759135899998, 49.079180213000015 ], [ -122.408752103, 49.079219025000029 ], [ -122.408474766999987, 49.08281536800007 ], [ -122.408343225999971, 49.082810971000079 ], [ -122.408109119999963, 49.085846168000025 ], [ -122.407339317, 49.085820428000076 ], [ -122.407272935999956, 49.086680808000089 ], [ -122.411033185999941, 49.086806484000128 ], [ -122.411011496999961, 49.087087879000109 ], [ -122.412347043, 49.087132484000044 ], [ -122.412347093999955, 49.087131830000082 ], [ -122.413050176999903, 49.087155305000131 ] ], [ [ -122.39728641, 49.073472106000104 ], [ -122.397346606999918, 49.072693826000048 ], [ -122.40053301799999, 49.07280066100008 ], [ -122.400578043999985, 49.072217988000091 ], [ -122.400470303999981, 49.07221437600009 ], [ -122.400593702000023, 49.070617454000086 ], [ -122.4004035, 49.070611080000056 ], [ -122.40053201299996, 49.068947943000055 ], [ -122.400180994999943, 49.068936177000104 ], [ -122.40044904299999, 49.065467209000069 ], [ -122.400458888999935, 49.065339779000098 ], [ -122.40136363, 49.065370101000013 ], [ -122.401366426999971, 49.065333885000044 ], [ -122.401469039999981, 49.064005428000037 ], [ -122.397681184999925, 49.063878424000066 ], [ -122.396301109999939, 49.063832117000089 ], [ -122.396094460999947, 49.063825182000073 ], [ -122.396100054999977, 49.063752856000143 ], [ -122.39613750699999, 49.06326869300009 ], [ -122.396185913999886, 49.062642892000056 ], [ -122.394401536999979, 49.062582989000092 ], [ -122.393014612999963, 49.062536409000117 ], [ -122.392901223, 49.06253260000004 ], [ -122.392901375999926, 49.062530634000026 ], [ -122.392051393999949, 49.062502077000019 ], [ -122.392077342999968, 49.062166992000115 ], [ -122.392115056999927, 49.061679971000068 ], [ -122.392323442999967, 49.058988745000036 ], [ -122.391769758999928, 49.058970139000088 ], [ -122.391769364999959, 49.058975240000024 ], [ -122.391630507999977, 49.05897057300006 ], [ -122.391607974999914, 49.059261544000051 ], [ -122.391525053999942, 49.059258757000087 ], [ -122.391500086999969, 49.05958114500006 ], [ -122.391301749999954, 49.059574479000098 ], [ -122.391274496999955, 49.059926349000122 ], [ -122.390287141999977, 49.059893160000051 ], [ -122.39024358599994, 49.060455373000067 ], [ -122.390074262999917, 49.06044968000009 ], [ -122.390051693999979, 49.060740977000052 ], [ -122.389707935999979, 49.060729419000097 ], [ -122.388741241999966, 49.060696910000097 ], [ -122.38873934899999, 49.060851221000078 ], [ -122.388737601999978, 49.060993664000108 ], [ -122.388153539999962, 49.060990569000118 ], [ -122.387916328999935, 49.060989310000188 ], [ -122.387913015999928, 49.061259161000109 ], [ -122.387091738, 49.061254803000111 ], [ -122.387085100999983, 49.061794502000055 ], [ -122.386826152999987, 49.061793127000072 ], [ -122.385853173999962, 49.061787954000131 ], [ -122.385846521999937, 49.062327653000033 ], [ -122.3853115739999, 49.062324807000124 ], [ -122.385153894999988, 49.064357083000104 ], [ -122.384644051999913, 49.064339919000105 ], [ -122.384626406999971, 49.064567299000061 ], [ -122.384891474999961, 49.064576223000074 ], [ -122.38482451199998, 49.065439161000086 ], [ -122.38523311599999, 49.065452916 ], [ -122.385091523999989, 49.06727768300005 ], [ -122.38706726499997, 49.067344172000034 ], [ -122.387040279999923, 49.067692127000058 ], [ -122.390009691999978, 49.067791987000142 ], [ -122.390130657999975, 49.066230933000057 ], [ -122.392110372999952, 49.066297464000094 ], [ -122.39211437499992, 49.066245781000077 ], [ -122.39757462299994, 49.066429089000039 ], [ -122.39729650299995, 49.070025474000012 ], [ -122.395316620999921, 49.069959039000025 ], [ -122.395312622999981, 49.070010723000081 ], [ -122.39073816299998, 49.069857087000045 ], [ -122.390617208999942, 49.071418132000055 ], [ -122.385917501999927, 49.071260086000059 ], [ -122.385832298999972, 49.072358220000062 ], [ -122.390054172999911, 49.072500206000093 ], [ -122.390035045999937, 49.072747003000089 ], [ -122.391188916999951, 49.072785780000061 ], [ -122.391248989999951, 49.072010376000051 ], [ -122.396709909999956, 49.072193728000073 ], [ -122.396612766000018, 49.073449508000095 ], [ -122.39728641, 49.073472106000104 ] ], [ [ -122.416439318999949, 49.062740799000039 ], [ -122.416419987999959, 49.062992134000126 ], [ -122.410960066999934, 49.062809782000059 ], [ -122.410963558999953, 49.062764454000039 ], [ -122.410340255999955, 49.062743619000059 ], [ -122.410335829999937, 49.062801082000107 ], [ -122.40716919399992, 49.062695175000101 ], [ -122.406928385999933, 49.065817692000081 ], [ -122.407294131999919, 49.065829928000035 ], [ -122.407167771, 49.067468427000037 ], [ -122.407236734999955, 49.06747073400004 ], [ -122.407223178999971, 49.067646510000031 ], [ -122.407191986, 49.068050965000111 ], [ -122.407391265999976, 49.068057632000027 ], [ -122.407380371000016, 49.068198890000041 ], [ -122.40731257199991, 49.069078023000039 ], [ -122.407321929999952, 49.069078336000103 ], [ -122.407284123999972, 49.069568552000071 ], [ -122.409309391999983, 49.069636284000104 ], [ -122.409161894999897, 49.071549737000048 ], [ -122.410436970999967, 49.071592360000103 ], [ -122.410291302999937, 49.073482602000063 ], [ -122.411486350999951, 49.073522537000073 ], [ -122.411479877999952, 49.073606569000063 ], [ -122.411603426999946, 49.07361069700012 ], [ -122.411693637999974, 49.072439671000076 ], [ -122.414602549999955, 49.072536817000071 ], [ -122.414625630999922, 49.072236940000053 ], [ -122.41526697399992, 49.07225834900003 ], [ -122.41526910499999, 49.072230656000151 ], [ -122.416570155999935, 49.072274073000067 ], [ -122.416592064999961, 49.071989288000054 ], [ -122.417039260999914, 49.072004207000077 ], [ -122.418375989999944, 49.072048793000036 ], [ -122.420919218999984, 49.072133573000102 ], [ -122.421185262999984, 49.068670789000095 ], [ -122.423592250999931, 49.068750972000046 ], [ -122.423727460999899, 49.066989720000159 ], [ -122.422489234999929, 49.066948478000064 ], [ -122.422537112999947, 49.066324998000063 ], [ -122.422257263999967, 49.066315674000052 ], [ -122.422533438999906, 49.062719204000061 ], [ -122.422558175999939, 49.062720028000072 ], [ -122.422625515, 49.061843015000079 ], [ -122.420798464999962, 49.061782130000012 ], [ -122.420795698999953, 49.061818132000056 ], [ -122.41941223399995, 49.061772008000041 ], [ -122.419399847999927, 49.06193316600006 ], [ -122.417033920999927, 49.061854246000067 ], [ -122.416964396, 49.062758321000075 ], [ -122.416439318999949, 49.062740799000039 ] ], [ [ -122.422042816, 49.072305001000124 ], [ -122.422029367999926, 49.072480056000103 ], [ -122.4234899, 49.072528701000131 ], [ -122.423503341999961, 49.072353646000074 ], [ -122.422042816, 49.072305001000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115024916", "BldgCostT": "75446666", "sL_LossRatio": "0.73219544189637", "sL_AssetLoss": "1111471", "sL_BldgLoss": "813814", "sL_StrLoss": "397675", "sL_NStrLoss": "416139", "sL_ContLoss": "297657", "geom_point": "0101000020E6100000B17DE1F88E9A5EC0518492D19A864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.40363841199995, 49.055547185000059 ], [ -122.403647727999925, 49.054431793000042 ], [ -122.403655510999926, 49.053505305000073 ], [ -122.403660302999938, 49.052929618000071 ], [ -122.4036641599999, 49.052470864000021 ], [ -122.403671832, 49.051553314000039 ], [ -122.403685142999919, 49.04996112000007 ], [ -122.403685520999957, 49.049916142000079 ], [ -122.403686178999976, 49.049834798000106 ], [ -122.403698686999945, 49.048218900000059 ], [ -122.403702380999974, 49.047892202000085 ], [ -122.403708867999939, 49.047316496000086 ], [ -122.403709477999925, 49.047262518000132 ], [ -122.403714086999969, 49.046857748000072 ], [ -122.403720986999957, 49.046245459000033 ], [ -122.404452095999943, 49.046228471000113 ], [ -122.405468339999985, 49.046204838000037 ], [ -122.407613177999949, 49.046154045000058 ], [ -122.41227537099995, 49.046046762000081 ], [ -122.413835185999972, 49.046007849000063 ], [ -122.414875247999973, 49.045981870000048 ], [ -122.415411422999952, 49.045968505000083 ], [ -122.4199524199999, 49.045968522000045 ], [ -122.421252390999925, 49.045968478000106 ], [ -122.422114477, 49.045968467000101 ], [ -122.422306170999931, 49.045968461000058 ], [ -122.422771400999963, 49.045968430000123 ], [ -122.423223065999963, 49.045968410000114 ], [ -122.423715677999937, 49.045968384000055 ], [ -122.426539921999947, 49.045968205000079 ], [ -122.426534164999978, 49.047684226000065 ], [ -122.426521880999928, 49.051363357000049 ], [ -122.426519474999964, 49.052074032000093 ], [ -122.426517857999983, 49.052559865000063 ], [ -122.426516203999967, 49.053054608000132 ], [ -122.426515694999921, 49.053207694000044 ], [ -122.426513595999907, 49.053232290000082 ], [ -122.426452052999977, 49.05395212800012 ], [ -122.426382065999988, 49.054770630000064 ], [ -122.426303876999896, 49.05568499100012 ], [ -122.426303092999987, 49.055694010000174 ], [ -122.426087189999947, 49.057011007000057 ], [ -122.425245048999983, 49.057032545000119 ], [ -122.423409884999913, 49.057079543000121 ], [ -122.421493359999957, 49.057128552000094 ], [ -122.41675671699997, 49.057249567000085 ], [ -122.41627849799994, 49.057261765000113 ], [ -122.415826392999975, 49.057273308000099 ], [ -122.415223333999933, 49.057288693000054 ], [ -122.412909335999927, 49.057347714000116 ], [ -122.410909576, 49.057398661000022 ], [ -122.410415799999967, 49.057411230000099 ], [ -122.409567456999952, 49.057432835000057 ], [ -122.408636512999976, 49.057456514000066 ], [ -122.40513228699993, 49.057545646000101 ], [ -122.40407742299999, 49.057572463000021 ], [ -122.403619001, 49.05758410800005 ], [ -122.403625, 49.057151586000089 ], [ -122.403627148999959, 49.056896474000069 ], [ -122.403630358999962, 49.056509670000082 ], [ -122.403631356999981, 49.056392368000047 ], [ -122.40363841199995, 49.055547185000059 ] ], [ [ -122.407288373999961, 49.055028072000042 ], [ -122.407293300999982, 49.054613619000079 ], [ -122.407504697999926, 49.054614706000081 ], [ -122.406982579, 49.054597233000074 ], [ -122.406942476000026, 49.0551173610001 ], [ -122.407231030999966, 49.0551270180001 ], [ -122.407238786999969, 49.055026412000082 ], [ -122.407288373999961, 49.055028072000042 ] ], [ [ -122.408525057999952, 49.054619940000059 ], [ -122.40852017099995, 49.05503182300005 ], [ -122.409542470999909, 49.055066017000058 ], [ -122.409567709, 49.054738468000117 ], [ -122.41079546499995, 49.0547795210001 ], [ -122.410815469999989, 49.054519797000076 ], [ -122.412221176999978, 49.054566783000013 ], [ -122.412223508999915, 49.054368967000066 ], [ -122.413455259999949, 49.054375233000023 ], [ -122.413452521999915, 49.054607926000124 ], [ -122.41363190899996, 49.05461391800003 ], [ -122.413705601999979, 49.053656363000115 ], [ -122.41592646299992, 49.053730529000141 ], [ -122.415928247999915, 49.053578171000055 ], [ -122.417159980999941, 49.05358439900008 ], [ -122.41715779, 49.053771629000067 ], [ -122.419164460999966, 49.05383857900005 ], [ -122.419162478999965, 49.053864361000123 ], [ -122.419209724999959, 49.053864599000057 ], [ -122.419206580999941, 49.054134451000074 ], [ -122.419873537999962, 49.054137806000043 ], [ -122.419940011999984, 49.053272531000061 ], [ -122.419181255999959, 49.053247227000064 ], [ -122.419457591, 49.049650690000064 ], [ -122.420531913999923, 49.049686519000055 ], [ -122.420553258999988, 49.049408617000068 ], [ -122.423192205, 49.049496578000117 ], [ -122.42320760599992, 49.049295902000082 ], [ -122.422298914999899, 49.049265620000035 ], [ -122.422395378999937, 49.04800898000007 ], [ -122.420301422999941, 49.047939171000053 ], [ -122.420350736, 49.047297111000027 ], [ -122.419907494999933, 49.047282329000041 ], [ -122.419902458, 49.047347896000069 ], [ -122.41919400799992, 49.047324265000064 ], [ -122.419192428999935, 49.04734481300008 ], [ -122.418991002999945, 49.047338094000061 ], [ -122.418800351999963, 49.049819315 ], [ -122.418073865999958, 49.049795076000059 ], [ -122.417916027999965, 49.05184863100002 ], [ -122.416770130999922, 49.051810390000078 ], [ -122.416768344999966, 49.051963212000068 ], [ -122.414715523999988, 49.051952820000068 ], [ -122.414716139999939, 49.05190040700009 ], [ -122.413978514999911, 49.051875770000088 ], [ -122.41397657099999, 49.051901025000078 ], [ -122.408893045999974, 49.051731094000033 ], [ -122.408783430999904, 49.0531535470001 ], [ -122.407986704999985, 49.053126893000098 ], [ -122.407975844999925, 49.053267783000123 ], [ -122.409362212999952, 49.053274886000089 ], [ -122.409352621999957, 49.054084441000086 ], [ -122.408531459999921, 49.054080237000029 ], [ -122.4085282599999, 49.054350088000014 ], [ -122.407892669999953, 49.054346829000053 ], [ -122.407871875999945, 49.054616590000144 ], [ -122.408525057999952, 49.054619940000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77305918", "BldgCostT": "51371668", "sL_LossRatio": "0.760746219885334", "sL_AssetLoss": "673260", "sL_BldgLoss": "512180", "sL_StrLoss": "263260", "sL_NStrLoss": "248920", "sL_ContLoss": "161080", "geom_point": "0101000020E6100000655CBC4836995EC05F84A59181854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.384884265999986, 49.056161297000088 ], [ -122.384346216, 49.056114632000117 ], [ -122.38413651099999, 49.056136407000032 ], [ -122.382972029999948, 49.056066542000103 ], [ -122.381607477999978, 49.05595404600006 ], [ -122.381159667999938, 49.055917120000124 ], [ -122.381155591, 49.055793495000039 ], [ -122.381168887999962, 49.055322468000092 ], [ -122.381166974999985, 49.055259309000043 ], [ -122.381162746999948, 49.054754679000091 ], [ -122.381160555999912, 49.054493802000067 ], [ -122.38115389299999, 49.053701152 ], [ -122.380998217999945, 49.053644515000045 ], [ -122.380952184999927, 49.053532080000053 ], [ -122.381038156, 49.053429512000058 ], [ -122.381208787, 49.053399204000087 ], [ -122.381223233999947, 49.052883093000084 ], [ -122.381251182999961, 49.051884364000081 ], [ -122.381237283999923, 49.051129013000057 ], [ -122.381226798999975, 49.050560198000085 ], [ -122.381227681, 49.050445567000068 ], [ -122.381229371999964, 49.050229683000062 ], [ -122.381232751000013, 49.049797918000095 ], [ -122.38123759099993, 49.049177258000022 ], [ -122.381242410999945, 49.048562198000063 ], [ -122.381256454999971, 49.046178258000083 ], [ -122.38128462, 49.044886664000096 ], [ -122.38130400499989, 49.043996180000086 ], [ -122.381308785999977, 49.043776694 ], [ -122.381301510999947, 49.043267452000087 ], [ -122.381298573999985, 49.043060426000089 ], [ -122.381293791999937, 49.042727368000044 ], [ -122.381284121999954, 49.04205254000005 ], [ -122.38128246399998, 49.041935593000069 ], [ -122.38127443, 49.041373288000081 ], [ -122.381272200999902, 49.041217987000017 ], [ -122.381112114999937, 49.040849302000083 ], [ -122.38084219, 49.040448990000051 ], [ -122.380628148999961, 49.040247671000046 ], [ -122.380376894999984, 49.040011405 ], [ -122.380353860999932, 49.039992317000106 ], [ -122.379910036999902, 49.039624552000056 ], [ -122.379273880999932, 49.039097458000057 ], [ -122.379179157999914, 49.039019010000089 ], [ -122.380694604, 49.039032138000088 ], [ -122.380886113, 49.039033802000112 ], [ -122.381160464999951, 49.03903615100004 ], [ -122.38173121599999, 49.039041097000045 ], [ -122.386113922999968, 49.035487529000058 ], [ -122.38626732100002, 49.035363123000124 ], [ -122.388257495999966, 49.033749217 ], [ -122.389159016999912, 49.033018106000064 ], [ -122.39066298099999, 49.031798299000044 ], [ -122.392600599999952, 49.030228989000122 ], [ -122.393193710999952, 49.029756912000046 ], [ -122.39425019, 49.028916006000024 ], [ -122.394346151000022, 49.028834061000055 ], [ -122.394877274999914, 49.028380543000054 ], [ -122.39540996099997, 49.02792567500007 ], [ -122.395476634999952, 49.027868728000023 ], [ -122.39551380499995, 49.027837002000055 ], [ -122.39603449499999, 49.027414679000081 ], [ -122.396709881999982, 49.026866884000114 ], [ -122.398662018999943, 49.025283407000089 ], [ -122.398795668999952, 49.025128294000055 ], [ -122.399199308999982, 49.024741579000064 ], [ -122.399578941999948, 49.024284434000087 ], [ -122.400718732999934, 49.022963479000104 ], [ -122.401014029999942, 49.022153836000072 ], [ -122.402993458999958, 49.020069522000014 ], [ -122.403285391999958, 49.019895907000063 ], [ -122.404073223999944, 49.019780978 ], [ -122.403677516999963, 49.020001205000064 ], [ -122.403470536, 49.020150220000119 ], [ -122.403187344999964, 49.02045354600007 ], [ -122.403119014999987, 49.02063065300004 ], [ -122.403157369000027, 49.020753640000088 ], [ -122.403277093999975, 49.020885663000087 ], [ -122.403944397999979, 49.021185684000059 ], [ -122.403926705999979, 49.022003904000051 ], [ -122.403832416999961, 49.026357223000062 ], [ -122.403723407999962, 49.03138901100003 ], [ -122.403721481999952, 49.031478925000059 ], [ -122.403716082999907, 49.031727015000115 ], [ -122.403687006999988, 49.033069425000122 ], [ -122.403742428999934, 49.033197323000081 ], [ -122.400027894999965, 49.0330727690001 ], [ -122.400260131999971, 49.030064929000133 ], [ -122.400166285999916, 49.030061781000072 ], [ -122.400258393999962, 49.028868756000058 ], [ -122.400250361999909, 49.028868486000178 ], [ -122.40032213799999, 49.027938760000033 ], [ -122.400138113999944, 49.027932586000126 ], [ -122.400173406999926, 49.027475460000034 ], [ -122.399586334999952, 49.027455761000056 ], [ -122.399467311999913, 49.028997142000073 ], [ -122.399084849999937, 49.02898430699999 ], [ -122.399060612999975, 49.029298152000095 ], [ -122.398596616, 49.029282579000039 ], [ -122.398560817999908, 49.029746063000111 ], [ -122.398124740999933, 49.029731425000065 ], [ -122.398096717999962, 49.030094172000155 ], [ -122.396439695999945, 49.030038535000088 ], [ -122.396421876000019, 49.030269104000098 ], [ -122.396501466999922, 49.030269520000068 ], [ -122.39650089899996, 49.030316482000046 ], [ -122.396729633999954, 49.03031916200004 ], [ -122.396636033999982, 49.031455961000034 ], [ -122.396331329999938, 49.031440625000066 ], [ -122.396208007999974, 49.033036089000106 ], [ -122.396370114999968, 49.033041533000095 ], [ -122.396181874999968, 49.035476780000089 ], [ -122.400506622999956, 49.035621929000065 ], [ -122.400461083000025, 49.036211735000052 ], [ -122.401123171999984, 49.036233941 ], [ -122.401126880999954, 49.036185909000096 ], [ -122.404015658999981, 49.036282748000097 ], [ -122.404106319999954, 49.035107379000081 ], [ -122.40491683299993, 49.035134535000111 ], [ -122.404992235999941, 49.034156696000039 ], [ -122.405913533999978, 49.034187558000013 ], [ -122.406042518999953, 49.034269751000124 ], [ -122.406266838999954, 49.034553129000081 ], [ -122.407532812999932, 49.037204349000028 ], [ -122.407546778999929, 49.037608696000092 ], [ -122.40634431499997, 49.038977416000122 ], [ -122.405966073999977, 49.039696737000021 ], [ -122.405958786999975, 49.039758131000028 ], [ -122.405931050999953, 49.039991253000046 ], [ -122.406050663999977, 49.040639809000076 ], [ -122.406008497999892, 49.041364064000035 ], [ -122.405856451999938, 49.041704235000125 ], [ -122.405590895999978, 49.042008147000104 ], [ -122.405061004999965, 49.042405070000058 ], [ -122.404703359999971, 49.042590520000104 ], [ -122.403961974999959, 49.042802749000053 ], [ -122.403777448999989, 49.042942603000093 ], [ -122.403707951999962, 49.043098934000078 ], [ -122.403718259999948, 49.04529805600005 ], [ -122.403720404999916, 49.045756859000043 ], [ -122.403720742999965, 49.046066675000091 ], [ -122.403720986999957, 49.046245459000033 ], [ -122.403714086999969, 49.046857748000072 ], [ -122.403709477999925, 49.047262518000132 ], [ -122.403708867999939, 49.047316496000086 ], [ -122.403702380999974, 49.047892202000085 ], [ -122.403698686999945, 49.048218900000059 ], [ -122.403686178999976, 49.049834798000106 ], [ -122.403685520999957, 49.049916142000079 ], [ -122.403685142999919, 49.04996112000007 ], [ -122.403671832, 49.051553314000039 ], [ -122.4036641599999, 49.052470864000021 ], [ -122.403660302999938, 49.052929618000071 ], [ -122.403655510999926, 49.053505305000073 ], [ -122.403647727999925, 49.054431793000042 ], [ -122.40363841199995, 49.055547185000059 ], [ -122.403631356999981, 49.056392368000047 ], [ -122.403630358999962, 49.056509670000082 ], [ -122.403627148999959, 49.056896474000069 ], [ -122.403625, 49.057151586000089 ], [ -122.403619001, 49.05758410800005 ], [ -122.401907312999967, 49.057600595000054 ], [ -122.401047265999978, 49.05752846500009 ], [ -122.399993095999889, 49.057440039000042 ], [ -122.399511619999927, 49.057399641000146 ], [ -122.396683938999956, 49.057162384000129 ], [ -122.395590948999953, 49.057070627000016 ], [ -122.394619308999964, 49.056989085000104 ], [ -122.394413844, 49.05697182900014 ], [ -122.391116643999936, 49.056695017 ], [ -122.390434510999953, 49.056637731000052 ], [ -122.390202134999953, 49.056618201000049 ], [ -122.389569125999984, 49.056565048000046 ], [ -122.388679261999982, 49.056490334000031 ], [ -122.387934101999946, 49.056425736000079 ], [ -122.387235757000013, 49.056365197000027 ], [ -122.386665228999902, 49.056315718000022 ], [ -122.386269727999931, 49.056281432000112 ], [ -122.384884265999986, 49.056161297000088 ] ], [ [ -122.400370368999944, 49.05372017600007 ], [ -122.400519963999898, 49.051783444000073 ], [ -122.400182350999955, 49.051772123000056 ], [ -122.400269505999987, 49.050643801000085 ], [ -122.397182717999939, 49.050540247000079 ], [ -122.397336575999972, 49.048549951000034 ], [ -122.396359599999982, 49.048517158000053 ], [ -122.396342681999968, 49.048735960000023 ], [ -122.396041543999957, 49.048725851000036 ], [ -122.395928722999926, 49.050184778000087 ], [ -122.396116578999937, 49.050191085000058 ], [ -122.395987801999965, 49.051856325000067 ], [ -122.39624019899999, 49.051857645000091 ], [ -122.396233662, 49.052397348000056 ], [ -122.3966442279999, 49.05239949400007 ], [ -122.396638497999987, 49.052873121000125 ], [ -122.397438096999963, 49.052899957000129 ], [ -122.397420983999979, 49.053121320000123 ], [ -122.398398877999924, 49.053154132000046 ], [ -122.3983603399999, 49.053652762000084 ], [ -122.400370368999944, 49.05372017600007 ] ], [ [ -122.385613853999956, 49.047886217000062 ], [ -122.385615488, 49.047753549000049 ], [ -122.384794433999943, 49.047749175 ], [ -122.384797764999945, 49.047479324000115 ], [ -122.38456125699993, 49.04747806300005 ], [ -122.384547402999956, 49.047656675000113 ], [ -122.384666441999983, 49.047660684000093 ], [ -122.384642271999923, 49.047972264000052 ], [ -122.385582473999975, 49.048003927000082 ], [ -122.38559166, 49.047885469000072 ], [ -122.385613853999956, 49.047886217000062 ] ], [ [ -122.402851883999958, 49.047993050000031 ], [ -122.402831656999922, 49.048255126000086 ], [ -122.402852739999958, 49.04825583300007 ], [ -122.402855883999948, 49.047993183000138 ], [ -122.402851883999958, 49.047993050000031 ] ], [ [ -122.388816792999961, 49.046960942000076 ], [ -122.388909627999922, 49.046961434000124 ], [ -122.388909596999895, 49.046964064000072 ], [ -122.391002068999939, 49.047034439000122 ], [ -122.391069527999932, 49.046163245000066 ], [ -122.390561605999935, 49.04616056400004 ], [ -122.390564903999987, 49.045890712000066 ], [ -122.390154391999928, 49.045888544000093 ], [ -122.390157689999938, 49.045618693000044 ], [ -122.389747180999933, 49.045616523000078 ], [ -122.389753784999968, 49.04507682100013 ], [ -122.388932773999983, 49.045072477000147 ], [ -122.388929468999947, 49.045342328000103 ], [ -122.386055917999926, 49.045327077000074 ], [ -122.386059239999952, 49.045057226000054 ], [ -122.385648733999972, 49.04505504100009 ], [ -122.385650114, 49.044943058000051 ], [ -122.385250757999984, 49.044929610000032 ], [ -122.385199655999926, 49.045588537000071 ], [ -122.384903979999962, 49.045578579000114 ], [ -122.38482299699993, 49.046622644000074 ], [ -122.384466686999957, 49.046610643000086 ], [ -122.384462242999987, 49.046667930000069 ], [ -122.385628787999963, 49.046674145000075 ], [ -122.385632111999925, 49.04640429600007 ], [ -122.386863659999932, 49.04641084500004 ], [ -122.386860341999949, 49.046680696000138 ], [ -122.38727086199998, 49.046682877000052 ], [ -122.387267545999975, 49.046952727000139 ], [ -122.388196848999954, 49.04695765700005 ], [ -122.388198206999988, 49.046940130000131 ], [ -122.388816792999961, 49.046960942000076 ] ], [ [ -122.401697364999904, 49.042691347000066 ], [ -122.401758550999929, 49.04189871800002 ], [ -122.398380199999977, 49.04178540200008 ], [ -122.398433385999965, 49.041097039000107 ], [ -122.396190365999956, 49.041021745000094 ], [ -122.396256453999953, 49.040166917000079 ], [ -122.395003527999947, 49.04012483900005 ], [ -122.394921304999912, 49.041188016000056 ], [ -122.391084866999933, 49.041059081000043 ], [ -122.391081643999954, 49.041100709000091 ], [ -122.389387700000029, 49.041043734000027 ], [ -122.3893263199999, 49.04183613700004 ], [ -122.389382928999936, 49.041836436000011 ], [ -122.389377526999951, 49.042277604000084 ], [ -122.389373017999944, 49.042645990000103 ], [ -122.389783502999961, 49.042648162000106 ], [ -122.389780200999951, 49.042918013000111 ], [ -122.390190687999961, 49.042920183000078 ], [ -122.390180791, 49.043729736000124 ], [ -122.391412272999943, 49.043736236000051 ], [ -122.39139910099999, 49.044815641000127 ], [ -122.391648633999964, 49.044816956000076 ], [ -122.391715129999938, 49.043958005000015 ], [ -122.393763204999942, 49.044026838000065 ], [ -122.393778452999967, 49.043829754000065 ], [ -122.395388321999974, 49.04388383200012 ], [ -122.395398191999902, 49.043756194000075 ], [ -122.395905414999959, 49.043773226000077 ], [ -122.395905570999986, 49.04377120600013 ], [ -122.396643873999921, 49.043795995000018 ], [ -122.396647041999984, 49.043755024000077 ], [ -122.40160241599996, 49.043921271000066 ], [ -122.401697364999904, 49.042691347000066 ] ], [ [ -122.383642859999952, 49.041269556000039 ], [ -122.383643195, 49.04124243200004 ], [ -122.383399640000022, 49.041234225000089 ], [ -122.383397540999979, 49.041261289000019 ], [ -122.383642859999952, 49.041269556000039 ] ], [ [ -122.389835649999966, 49.036896258000063 ], [ -122.38985036299999, 49.036706278000047 ], [ -122.389482283999953, 49.036693894000052 ], [ -122.389467570999969, 49.036883875000079 ], [ -122.389835649999966, 49.036896258000063 ] ], [ [ -122.390686355999961, 49.03579582000004 ], [ -122.390713762999937, 49.035441815000119 ], [ -122.390086159999925, 49.035420705000092 ], [ -122.390058747999916, 49.035774709000108 ], [ -122.390686355999961, 49.03579582000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6090000", "BldgCostT": "4200000", "sL_LossRatio": "0.785008567574465", "sL_AssetLoss": "54858", "sL_BldgLoss": "43064", "sL_StrLoss": "22744", "sL_NStrLoss": "20320", "sL_ContLoss": "11794", "geom_point": "0101000020E61000003170E591E4975EC09955A71CF6804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.371053131999957, 49.009262512000092 ], [ -122.371074552999929, 49.008093163000069 ], [ -122.3711009, 49.00665408900003 ], [ -122.371113105999939, 49.005988488000071 ], [ -122.371125330999959, 49.005322854000092 ], [ -122.37112614599999, 49.005277891000041 ], [ -122.371127308999974, 49.00521488400004 ], [ -122.371160399999894, 49.003406956000056 ], [ -122.371178905999926, 49.002397987000066 ], [ -122.377742469999959, 49.002397819000073 ], [ -122.377565277999949, 49.004679942000081 ], [ -122.374859983999954, 49.004588522000049 ], [ -122.37484437399992, 49.004789408000043 ], [ -122.37452824099995, 49.00477872000004 ], [ -122.374492227999923, 49.005242123000073 ], [ -122.374551905999937, 49.00524414100007 ], [ -122.37427237499999, 49.008840810000031 ], [ -122.374267062999948, 49.00884063000008 ], [ -122.374250789, 49.009050006000116 ], [ -122.37509182099997, 49.009078437000056 ], [ -122.374812307999974, 49.012675085000055 ], [ -122.37418605199997, 49.012653916000119 ], [ -122.374090545999977, 49.013882499000061 ], [ -122.370970367, 49.013776973000063 ], [ -122.371014373999984, 49.011376315000035 ], [ -122.371026233999956, 49.010728691000097 ], [ -122.371046693999972, 49.009613298000033 ], [ -122.371047008999966, 49.009595322000024 ], [ -122.371053131999957, 49.009262512000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109443584", "BldgCostT": "72058334", "sL_LossRatio": "0.734389849129236", "sL_AssetLoss": "1038571", "sL_BldgLoss": "762716", "sL_StrLoss": "378701", "sL_NStrLoss": "384015", "sL_ContLoss": "275855", "geom_point": "0101000020E6100000EDF1423A7C995EC084159778FA814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.37834701099996, 49.037846058000106 ], [ -122.378419057999906, 49.036146021000029 ], [ -122.378593408999919, 49.032032471000036 ], [ -122.378601522999986, 49.031840796000083 ], [ -122.378671853999933, 49.031714119000057 ], [ -122.378824136999981, 49.031439935000066 ], [ -122.379286983999975, 49.030815491000062 ], [ -122.379567205999962, 49.03044809600005 ], [ -122.37967063399995, 49.030307923000052 ], [ -122.380033298999976, 49.029816596000074 ], [ -122.380093410999962, 49.029623901000036 ], [ -122.380529587999987, 49.028197991000134 ], [ -122.381335408999973, 49.026943728000084 ], [ -122.381968298999936, 49.025958488000136 ], [ -122.383103677999941, 49.024577901000043 ], [ -122.383445905999963, 49.024242322000063 ], [ -122.38365569299998, 49.024036605000113 ], [ -122.384346801999968, 49.023601040000081 ], [ -122.384460806999968, 49.023529211000145 ], [ -122.384971000999954, 49.023307637000158 ], [ -122.385240013, 49.023190812000053 ], [ -122.385637988999989, 49.023018004000058 ], [ -122.385983301999943, 49.022799960000086 ], [ -122.38599727399999, 49.022791124000086 ], [ -122.386109600999959, 49.022720184000022 ], [ -122.3864893, 49.022408514000105 ], [ -122.386829784999946, 49.022018793000022 ], [ -122.387065493999927, 49.021589505000158 ], [ -122.387192281999944, 49.021223215000091 ], [ -122.387205095999917, 49.020848215000051 ], [ -122.388113970999896, 49.020878821000096 ], [ -122.388087265999957, 49.02122361800005 ], [ -122.388823467999941, 49.021248403000151 ], [ -122.388544939999946, 49.024845018000057 ], [ -122.38848430299997, 49.024842978000024 ], [ -122.388448161999946, 49.02530962 ], [ -122.387499173999984, 49.02527767000003 ], [ -122.387488028999954, 49.025421542000117 ], [ -122.383429938999939, 49.025284821000128 ], [ -122.383425888999966, 49.025612619000043 ], [ -122.383015543999974, 49.025610426000092 ], [ -122.383008870999916, 49.026150129000037 ], [ -122.38259852099999, 49.026147934000065 ], [ -122.382591843999961, 49.02668763800007 ], [ -122.382181490999955, 49.026685441000026 ], [ -122.382171467999981, 49.027494995000097 ], [ -122.382581827999957, 49.027497191000087 ], [ -122.382571809999916, 49.028306746000062 ], [ -122.382161445999969, 49.028304549000033 ], [ -122.382151420999918, 49.02911410400008 ], [ -122.381741045999917, 49.029111906000068 ], [ -122.381734359999925, 49.029651609000084 ], [ -122.381323982000012, 49.029649410000104 ], [ -122.381320635999927, 49.029919261000025 ], [ -122.380910257000025, 49.029917060000045 ], [ -122.38090374299999, 49.030441989000096 ], [ -122.381719992999933, 49.030469517000022 ], [ -122.381654547000011, 49.031312852000056 ], [ -122.381677345999933, 49.031313620000063 ], [ -122.381647760999911, 49.031694842000029 ], [ -122.381688668999914, 49.031696221000082 ], [ -122.38163794699993, 49.032349784000061 ], [ -122.381700920999904, 49.032350122000061 ], [ -122.381688076999964, 49.033386364000066 ], [ -122.382906009999928, 49.03342742500007 ], [ -122.382936791999953, 49.033030661000048 ], [ -122.384355308999915, 49.033078468000106 ], [ -122.38443948799997, 49.031992995000074 ], [ -122.385106585999935, 49.032015471000065 ], [ -122.385155793999928, 49.031380811000076 ], [ -122.385406601999989, 49.031389260000068 ], [ -122.385411142999914, 49.031020596000083 ], [ -122.386182090999952, 49.031024700000025 ], [ -122.386290744999911, 49.029622832000072 ], [ -122.387640982999969, 49.029668299000072 ], [ -122.387658099999896, 49.02944736500006 ], [ -122.388339369999926, 49.029470299000096 ], [ -122.388609452999958, 49.025983277000094 ], [ -122.389082676999948, 49.025999205000076 ], [ -122.389126662999985, 49.025431188000042 ], [ -122.389367641999911, 49.02543929800008 ], [ -122.389516853999908, 49.023512192000041 ], [ -122.390582216999945, 49.023548041000076 ], [ -122.390853691999908, 49.020040414000057 ], [ -122.391482052999933, 49.02006155300009 ], [ -122.391504788999939, 49.019767700000074 ], [ -122.388339991999914, 49.019661193000019 ], [ -122.388377202999962, 49.019180682000126 ], [ -122.388018998999911, 49.019168621000098 ], [ -122.388002559, 49.020509462000071 ], [ -122.387592255999962, 49.020507285000122 ], [ -122.387588944999891, 49.020777136000092 ], [ -122.387207594999921, 49.020775112000123 ], [ -122.387217116, 49.020496486000084 ], [ -122.387242004999933, 49.018816090000058 ], [ -122.387077708999982, 49.018378689 ], [ -122.386636488999926, 49.017772502000064 ], [ -122.386545201999951, 49.017487200000041 ], [ -122.386544407999978, 49.017415121000084 ], [ -122.386543350999929, 49.017316050000019 ], [ -122.386540991999965, 49.017099396000148 ], [ -122.385780604, 49.017088845000025 ], [ -122.384727831999911, 49.017074236000077 ], [ -122.384180796999914, 49.017066624000044 ], [ -122.381919948999936, 49.017035188000115 ], [ -122.381892613999923, 49.017034811000052 ], [ -122.381806099999935, 49.017033602 ], [ -122.38148036699998, 49.017032425000139 ], [ -122.381484758999946, 49.016677962000095 ], [ -122.379561557999963, 49.016613066000026 ], [ -122.379699787999954, 49.014832280000057 ], [ -122.378945589999958, 49.014806821000086 ], [ -122.378773556999988, 49.017022604000033 ], [ -122.377220915999942, 49.017016940000083 ], [ -122.376359360999956, 49.017013794000015 ], [ -122.376031126999976, 49.017012598000051 ], [ -122.370911407999955, 49.016993693000053 ], [ -122.370949738999926, 49.014902236000047 ], [ -122.370959692999989, 49.014359241000079 ], [ -122.376070019999972, 49.014532025000044 ], [ -122.376067693999971, 49.014561966 ], [ -122.378465964999918, 49.014642970000075 ], [ -122.378494742999962, 49.014272327000064 ], [ -122.378468561999966, 49.014271443000084 ], [ -122.378617454999926, 49.012353753000085 ], [ -122.37841887899998, 49.012347048000073 ], [ -122.378528236999898, 49.010938520000131 ], [ -122.378410664999961, 49.010934551000069 ], [ -122.378433386999959, 49.010641894000031 ], [ -122.378046869999949, 49.010628842000116 ], [ -122.378326121, 49.007032173000049 ], [ -122.378451753999983, 49.00703641600002 ], [ -122.37865175, 49.004460074000079 ], [ -122.378658410999989, 49.004460299000051 ], [ -122.378761618999988, 49.003130672000033 ], [ -122.379963678999928, 49.00317126000013 ], [ -122.379983180999929, 49.002919901000084 ], [ -122.382093145999974, 49.002991111000071 ], [ -122.385435977999961, 49.003103845000119 ], [ -122.385363209999952, 49.004043047 ], [ -122.38543143499993, 49.00404534700013 ], [ -122.38520004199998, 49.00703173100009 ], [ -122.38538472, 49.007037957000051 ], [ -122.385347708999959, 49.007515611000066 ], [ -122.38537284899995, 49.007516458000076 ], [ -122.385277735999935, 49.008743934000094 ], [ -122.385420923999945, 49.00874876000006 ], [ -122.385358746999913, 49.009551170000051 ], [ -122.385441570999959, 49.009553962000027 ], [ -122.385298305999967, 49.01140278400004 ], [ -122.385549881999978, 49.011411264000088 ], [ -122.385381630999944, 49.013582488000068 ], [ -122.389941263999972, 49.013736053000081 ], [ -122.389910873999938, 49.01412871500002 ], [ -122.390330674999959, 49.014142843000059 ], [ -122.390321983999954, 49.014255146000053 ], [ -122.392370265999915, 49.014324059000039 ], [ -122.392596499999968, 49.011398929000094 ], [ -122.393212221999974, 49.011419638000113 ], [ -122.393215276999982, 49.011380145000047 ], [ -122.393817722999955, 49.01140040300006 ], [ -122.393823555, 49.011324960000074 ], [ -122.399277386999955, 49.011508198000101 ], [ -122.399031908999959, 49.014688011000082 ], [ -122.400186949999949, 49.014726782 ], [ -122.400173743999972, 49.014897899000111 ], [ -122.400530594999935, 49.014909875000093 ], [ -122.40065066799994, 49.013353913000074 ], [ -122.400603727999979, 49.013352337000079 ], [ -122.400783656, 49.011020587000132 ], [ -122.399932646999915, 49.010992025000057 ], [ -122.400000156999965, 49.010117271000084 ], [ -122.399921401999933, 49.010114627000057 ], [ -122.40019896299999, 49.00651789900008 ], [ -122.400580118999969, 49.006530693000123 ], [ -122.400656501999947, 49.005540696000068 ], [ -122.40056000499996, 49.005537456000098 ], [ -122.400628122999976, 49.004654573000053 ], [ -122.399215337999934, 49.004607143000072 ], [ -122.39920815399995, 49.004700221000107 ], [ -122.397145606999985, 49.004630944000048 ], [ -122.397142469999949, 49.004671571000088 ], [ -122.391689444999955, 49.004488223000088 ], [ -122.391850584999986, 49.00240468100003 ], [ -122.39378432499997, 49.002406003000026 ], [ -122.400005677999971, 49.002386994000027 ], [ -122.404284604999987, 49.002373710000064 ], [ -122.407060718999929, 49.002369072000121 ], [ -122.41126017799999, 49.002361940000057 ], [ -122.413004422999975, 49.002358927000117 ], [ -122.412834599999911, 49.004567693000062 ], [ -122.410953375999952, 49.004504747000091 ], [ -122.410920741999945, 49.004928938000063 ], [ -122.407803337999923, 49.004824557000063 ], [ -122.407570968999934, 49.007842210000042 ], [ -122.407314647999939, 49.007833624000043 ], [ -122.407290503999945, 49.008147113000049 ], [ -122.407402683, 49.008150872000094 ], [ -122.407328194999977, 49.00911805700013 ], [ -122.407403344, 49.009120574000093 ], [ -122.407126319999961, 49.01271730600012 ], [ -122.406177739999961, 49.012685527000059 ], [ -122.406148698999971, 49.013062428000055 ], [ -122.406141332999979, 49.013062182000063 ], [ -122.406137455999954, 49.013112501000116 ], [ -122.406176733, 49.013113817000068 ], [ -122.406176558999931, 49.013116068000066 ], [ -122.41003, 49.013245115000132 ], [ -122.409915161999919, 49.014737123000025 ], [ -122.41042416099998, 49.014754159000113 ], [ -122.410444907999988, 49.014484570000057 ], [ -122.411866361999969, 49.014532131000074 ], [ -122.41187045, 49.014479004000059 ], [ -122.416273885999928, 49.014626219000057 ], [ -122.41629057499992, 49.014409011000097 ], [ -122.417516834999944, 49.014449975000055 ], [ -122.417520424999978, 49.014403240000064 ], [ -122.41952878499994, 49.0144703 ], [ -122.419531241999948, 49.01443828900004 ], [ -122.421982685, 49.014520092000062 ], [ -122.421992944999957, 49.014386347000055 ], [ -122.423792302999942, 49.014446355000125 ], [ -122.423798573999989, 49.014364592000128 ], [ -122.424184151999953, 49.014377446000076 ], [ -122.424236302999972, 49.013697188000023 ], [ -122.424088564999963, 49.013692263000074 ], [ -122.424114102999951, 49.013359149000038 ], [ -122.423079050999945, 49.013324637000082 ], [ -122.423135296999988, 49.012591173000011 ], [ -122.422999293999965, 49.012586638000137 ], [ -122.423038204999955, 49.01207922400009 ], [ -122.422804616999912, 49.012071433000102 ], [ -122.422868935999958, 49.011232722000102 ], [ -122.422803369999912, 49.011230535000038 ], [ -122.42295148, 49.009299106000071 ], [ -122.422880590999938, 49.00929674200011 ], [ -122.422949788999915, 49.008394317000104 ], [ -122.422833644999969, 49.008390443000025 ], [ -122.423024912999892, 49.005895998 ], [ -122.422820593999958, 49.005889182000075 ], [ -122.422742729999968, 49.006904647000049 ], [ -122.42259147399993, 49.006899602000033 ], [ -122.422548515999949, 49.00745978000004 ], [ -122.422751779999942, 49.007466560000047 ], [ -122.42247595000002, 49.011063341000053 ], [ -122.42201058099999, 49.01104781700009 ], [ -122.421979650999901, 49.011451052000041 ], [ -122.421192004999938, 49.011424773000037 ], [ -122.421174328999939, 49.01165517000009 ], [ -122.415720394999965, 49.011473045000109 ], [ -122.415754253999978, 49.01103240400009 ], [ -122.415650719999988, 49.01102894400001 ], [ -122.415678494999952, 49.010667475000027 ], [ -122.415668643999979, 49.010667146000053 ], [ -122.415693558999948, 49.010342893000065 ], [ -122.415605360999976, 49.010339945000062 ], [ -122.41566949099996, 49.009505344000061 ], [ -122.415591811999974, 49.009502747000042 ], [ -122.415649687999974, 49.008749529000092 ], [ -122.415482653999973, 49.008743947000085 ], [ -122.415574297999939, 49.007551245000037 ], [ -122.415212217999937, 49.007539142000056 ], [ -122.415488588, 49.003942360000082 ], [ -122.415817900999969, 49.00395336800014 ], [ -122.415905231999929, 49.002816567000053 ], [ -122.416965919999953, 49.002852014000027 ], [ -122.416970591000037, 49.002791192000068 ], [ -122.41698743799995, 49.002791756000143 ], [ -122.417021217999917, 49.002351883000067 ], [ -122.419093595999968, 49.002348189000031 ], [ -122.426442612999921, 49.002362580000053 ], [ -122.426408012999957, 49.009074152000053 ], [ -122.426407200999947, 49.009227056000043 ], [ -122.426406389999954, 49.00938401800002 ], [ -122.426411504999948, 49.009712781000083 ], [ -122.426427554999961, 49.010747047000102 ], [ -122.426451392999979, 49.012285899000119 ], [ -122.426456382999945, 49.012609670000053 ], [ -122.426488626999941, 49.014687970000075 ], [ -122.426499111999973, 49.015364897000097 ], [ -122.426400612999913, 49.015579803000058 ], [ -122.426233312999926, 49.015765304000062 ], [ -122.426198996999929, 49.01579059700007 ], [ -122.42599310199995, 49.015942623000079 ], [ -122.424888481999943, 49.016758107000037 ], [ -122.423123251999925, 49.016765648000025 ], [ -122.418171661999978, 49.01678670600004 ], [ -122.41782963499999, 49.016788147000078 ], [ -122.41607946499991, 49.016795556000055 ], [ -122.415256680999946, 49.01679899700008 ], [ -122.414879470999921, 49.016816510000105 ], [ -122.413937830999942, 49.01686017600008 ], [ -122.413472174999981, 49.016881798000071 ], [ -122.411197449, 49.016987263000104 ], [ -122.40919998399994, 49.017079844000094 ], [ -122.40790388899994, 49.01713988900007 ], [ -122.407832733999939, 49.017144362000039 ], [ -122.406118020999969, 49.017252300000102 ], [ -122.405995975999957, 49.017487091000106 ], [ -122.404504302999968, 49.019119293000159 ], [ -122.404377621999956, 49.019335564000102 ], [ -122.404226874999921, 49.019592927000083 ], [ -122.404148535999965, 49.019726680000076 ], [ -122.404073223999944, 49.019780978 ], [ -122.403285391999958, 49.019895907000063 ], [ -122.402993458999958, 49.020069522000014 ], [ -122.401014029999942, 49.022153836000072 ], [ -122.400718732999934, 49.022963479000104 ], [ -122.399578941999948, 49.024284434000087 ], [ -122.399199308999982, 49.024741579000064 ], [ -122.398795668999952, 49.025128294000055 ], [ -122.398662018999943, 49.025283407000089 ], [ -122.396709881999982, 49.026866884000114 ], [ -122.39603449499999, 49.027414679000081 ], [ -122.39551380499995, 49.027837002000055 ], [ -122.395476634999952, 49.027868728000023 ], [ -122.39540996099997, 49.02792567500007 ], [ -122.394877274999914, 49.028380543000054 ], [ -122.394346151000022, 49.028834061000055 ], [ -122.39425019, 49.028916006000024 ], [ -122.393193710999952, 49.029756912000046 ], [ -122.392600599999952, 49.030228989000122 ], [ -122.39066298099999, 49.031798299000044 ], [ -122.389159016999912, 49.033018106000064 ], [ -122.388257495999966, 49.033749217 ], [ -122.38626732100002, 49.035363123000124 ], [ -122.386113922999968, 49.035487529000058 ], [ -122.38173121599999, 49.039041097000045 ], [ -122.381160464999951, 49.03903615100004 ], [ -122.380886113, 49.039033802000112 ], [ -122.380694604, 49.039032138000088 ], [ -122.379179157999914, 49.039019010000089 ], [ -122.378315507999929, 49.039008796000076 ], [ -122.378324620999976, 49.038672388000059 ], [ -122.37834701099996, 49.037846058000106 ] ], [ [ -122.38293900799999, 49.036755084000056 ], [ -122.38286049599995, 49.036520099 ], [ -122.38254489199997, 49.036535695000069 ], [ -122.382380317999917, 49.036671097000109 ], [ -122.382514784999969, 49.036814906000103 ], [ -122.382801299, 49.036826292000114 ], [ -122.38293900799999, 49.036755084000056 ] ], [ [ -122.38157169599999, 49.034183743000021 ], [ -122.3816093199999, 49.033698976000025 ], [ -122.381572750999979, 49.033698781000105 ], [ -122.381535205999953, 49.034182513000061 ], [ -122.38157169599999, 49.034183743000021 ] ], [ [ -122.395272313999925, 49.024829105000059 ], [ -122.395352045999971, 49.023797645000073 ], [ -122.394965211999988, 49.023784646000067 ], [ -122.394944179999953, 49.02405669000008 ], [ -122.394984513999958, 49.024058045000068 ], [ -122.39495565899999, 49.024431284000038 ], [ -122.394990236999973, 49.024432447000095 ], [ -122.394960382999969, 49.024818624000069 ], [ -122.395272313999925, 49.024829105000059 ] ], [ [ -122.398833598999957, 49.023244119000104 ], [ -122.398893613999917, 49.022466941000104 ], [ -122.397398018999951, 49.022416728000024 ], [ -122.396770721999985, 49.022395660000043 ], [ -122.396713276999932, 49.023139127000057 ], [ -122.396084870999971, 49.023118018000119 ], [ -122.396082265999965, 49.023151728000059 ], [ -122.39738109699999, 49.023195353000098 ], [ -122.398833598999957, 49.023244119000104 ] ], [ [ -122.400493242999985, 49.020131648000039 ], [ -122.400548844999918, 49.019411222000095 ], [ -122.399732629999946, 49.019383831000077 ], [ -122.399677013999977, 49.020104257000106 ], [ -122.400493242999985, 49.020131648000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.78510158013544", "sL_AssetLoss": "22150", "sL_BldgLoss": "17390", "sL_StrLoss": "9310", "sL_NStrLoss": "8080", "sL_ContLoss": "4760", "geom_point": "0101000020E61000000DB921DF489D5EC063CD4C599B804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.458421428999941, 49.002532992000077 ], [ -122.459141516999949, 49.002556772000126 ], [ -122.45929893499999, 49.006619627000092 ], [ -122.455714563999933, 49.006501226000083 ], [ -122.455987805999953, 49.0029043340001 ], [ -122.458387223999949, 49.002983606000065 ], [ -122.458421428999941, 49.002532992000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321977333", "BldgCostT": "214403333", "sL_LossRatio": "0.742574907176727", "sL_AssetLoss": "2925721", "sL_BldgLoss": "2172567", "sL_StrLoss": "1164440", "sL_NStrLoss": "1008127", "sL_ContLoss": "753154", "geom_point": "0101000020E610000069ECC847C19B5EC03D27518AB1834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.426513595999907, 49.053232290000082 ], [ -122.426515694999921, 49.053207694000044 ], [ -122.426516203999967, 49.053054608000132 ], [ -122.426517857999983, 49.052559865000063 ], [ -122.426519474999964, 49.052074032000093 ], [ -122.426521880999928, 49.051363357000049 ], [ -122.426534164999978, 49.047684226000065 ], [ -122.426539921999947, 49.045968205000079 ], [ -122.423715677999937, 49.045968384000055 ], [ -122.423223065999963, 49.045968410000114 ], [ -122.422771400999963, 49.045968430000123 ], [ -122.422306170999931, 49.045968461000058 ], [ -122.422114477, 49.045968467000101 ], [ -122.421252390999925, 49.045968478000106 ], [ -122.4199524199999, 49.045968522000045 ], [ -122.415411422999952, 49.045968505000083 ], [ -122.414875247999973, 49.045981870000048 ], [ -122.413835185999972, 49.046007849000063 ], [ -122.41227537099995, 49.046046762000081 ], [ -122.407613177999949, 49.046154045000058 ], [ -122.405468339999985, 49.046204838000037 ], [ -122.404452095999943, 49.046228471000113 ], [ -122.403720986999957, 49.046245459000033 ], [ -122.403720742999965, 49.046066675000091 ], [ -122.403720404999916, 49.045756859000043 ], [ -122.403718259999948, 49.04529805600005 ], [ -122.403707951999962, 49.043098934000078 ], [ -122.403777448999989, 49.042942603000093 ], [ -122.403961974999959, 49.042802749000053 ], [ -122.404703359999971, 49.042590520000104 ], [ -122.405061004999965, 49.042405070000058 ], [ -122.405590895999978, 49.042008147000104 ], [ -122.405856451999938, 49.041704235000125 ], [ -122.406008497999892, 49.041364064000035 ], [ -122.406050663999977, 49.040639809000076 ], [ -122.405931050999953, 49.039991253000046 ], [ -122.405958786999975, 49.039758131000028 ], [ -122.405966073999977, 49.039696737000021 ], [ -122.40634431499997, 49.038977416000122 ], [ -122.407546778999929, 49.037608696000092 ], [ -122.407532812999932, 49.037204349000028 ], [ -122.406266838999954, 49.034553129000081 ], [ -122.406042518999953, 49.034269751000124 ], [ -122.405913533999978, 49.034187558000013 ], [ -122.410448779999982, 49.034339360000047 ], [ -122.410394335, 49.03504649000007 ], [ -122.410725113999888, 49.035057554000105 ], [ -122.410448192999937, 49.038654149000052 ], [ -122.410408171999947, 49.038652810000016 ], [ -122.410362426999924, 49.039246849000065 ], [ -122.410759765999927, 49.039248879000034 ], [ -122.410766142999975, 49.03870917400004 ], [ -122.411176595999933, 49.038711269000018 ], [ -122.411179781999977, 49.038441417000044 ], [ -122.412000686999946, 49.038445603000092 ], [ -122.412003867999886, 49.038175750000036 ], [ -122.412414316999929, 49.038177840000152 ], [ -122.41241749699995, 49.037907988000036 ], [ -122.41364884099994, 49.037914251000046 ], [ -122.413655185999971, 49.037374545000027 ], [ -122.414476072999918, 49.037378714000077 ], [ -122.414479239999963, 49.037108862000117 ], [ -122.416121007999934, 49.037117179000134 ], [ -122.41610521399997, 49.03846644300009 ], [ -122.416515666999956, 49.038468519000084 ], [ -122.416503040999984, 49.039547930000069 ], [ -122.416913501999971, 49.039550004000077 ], [ -122.416907193999947, 49.040089709000142 ], [ -122.417317658999977, 49.040091783000015 ], [ -122.417314506999944, 49.04036163500011 ], [ -122.417724974999899, 49.040363707000097 ], [ -122.417709222999974, 49.041712970000056 ], [ -122.417298743999979, 49.041710898000119 ], [ -122.417289285999942, 49.042520456000041 ], [ -122.416468312999939, 49.042516307000071 ], [ -122.416465154999969, 49.04278616000007 ], [ -122.416054666999941, 49.042784083000136 ], [ -122.416050130999949, 49.04317157100008 ], [ -122.416049519999916, 49.04322364899999 ], [ -122.416836105999906, 49.043249911000011 ], [ -122.416837152000014, 49.0432363090001 ], [ -122.419678524999981, 49.043331129000094 ], [ -122.419681472000022, 49.043292765000089 ], [ -122.419765991999896, 49.042192376000081 ], [ -122.422117784999941, 49.042270800000104 ], [ -122.422129143999939, 49.042122815000084 ], [ -122.421826536999959, 49.042112727000124 ], [ -122.421959862999984, 49.040375810000086 ], [ -122.420054881999974, 49.040312284000052 ], [ -122.420331072999943, 49.036715674000099 ], [ -122.420755851, 49.036729842000071 ], [ -122.420850318999911, 49.035499383000086 ], [ -122.423226628999956, 49.03557861300002 ], [ -122.423287205999941, 49.03478902200002 ], [ -122.418488074999971, 49.034628957000052 ], [ -122.418764351999968, 49.031032319000069 ], [ -122.418843674999962, 49.031034967000039 ], [ -122.418895584999987, 49.030359121000117 ], [ -122.419961006000023, 49.030394674000057 ], [ -122.419990746999986, 49.030007336000025 ], [ -122.419165184999912, 49.029979788000055 ], [ -122.419441381999931, 49.026383122000063 ], [ -122.42358368, 49.026521281 ], [ -122.423633511999981, 49.025871563000045 ], [ -122.42320588599999, 49.025857307000152 ], [ -122.423250259999961, 49.025278798000087 ], [ -122.422415106999921, 49.025274621000037 ], [ -122.422411982999947, 49.025544475000068 ], [ -122.421591290999942, 49.025540364000051 ], [ -122.42158816200002, 49.025810217000078 ], [ -122.420767462999933, 49.025806101000072 ], [ -122.420764330999958, 49.026075954000177 ], [ -122.419533278, 49.026069769000088 ], [ -122.419530136999967, 49.026339621000027 ], [ -122.417888723999923, 49.026331354000064 ], [ -122.41788557699999, 49.026601207000091 ], [ -122.415423446, 49.026588760000088 ], [ -122.415426606999958, 49.026318906000057 ], [ -122.413374841999968, 49.026308494000084 ], [ -122.413371669999947, 49.026578347000054 ], [ -122.410348832999915, 49.026562941000094 ], [ -122.410341322999926, 49.026660488000047 ], [ -122.407066616999941, 49.026550874000087 ], [ -122.407020245999945, 49.027152689000047 ], [ -122.408576409999952, 49.027204791000067 ], [ -122.408534445999948, 49.027749614000044 ], [ -122.408659240999896, 49.027753790000112 ], [ -122.40838220399999, 49.031350421000084 ], [ -122.405717648999953, 49.031261200000124 ], [ -122.40570250199994, 49.03145768600006 ], [ -122.405623114999969, 49.031455026000074 ], [ -122.405484292999972, 49.033255686000075 ], [ -122.403742428999934, 49.033197323000081 ], [ -122.403687006999988, 49.033069425000122 ], [ -122.403716082999907, 49.031727015000115 ], [ -122.403721481999952, 49.031478925000059 ], [ -122.403723407999962, 49.03138901100003 ], [ -122.403832416999961, 49.026357223000062 ], [ -122.403926705999979, 49.022003904000051 ], [ -122.403944397999979, 49.021185684000059 ], [ -122.403277093999975, 49.020885663000087 ], [ -122.403157369000027, 49.020753640000088 ], [ -122.403119014999987, 49.02063065300004 ], [ -122.403187344999964, 49.02045354600007 ], [ -122.403470536, 49.020150220000119 ], [ -122.403677516999963, 49.020001205000064 ], [ -122.404073223999944, 49.019780978 ], [ -122.404148535999965, 49.019726680000076 ], [ -122.404226874999921, 49.019592927000083 ], [ -122.404377621999956, 49.019335564000102 ], [ -122.404504302999968, 49.019119293000159 ], [ -122.405995975999957, 49.017487091000106 ], [ -122.406118020999969, 49.017252300000102 ], [ -122.407832733999939, 49.017144362000039 ], [ -122.40790388899994, 49.01713988900007 ], [ -122.40919998399994, 49.017079844000094 ], [ -122.411197449, 49.016987263000104 ], [ -122.413472174999981, 49.016881798000071 ], [ -122.413937830999942, 49.01686017600008 ], [ -122.414879470999921, 49.016816510000105 ], [ -122.415256680999946, 49.01679899700008 ], [ -122.41607946499991, 49.016795556000055 ], [ -122.41782963499999, 49.016788147000078 ], [ -122.418171661999978, 49.01678670600004 ], [ -122.423123251999925, 49.016765648000025 ], [ -122.424888481999943, 49.016758107000037 ], [ -122.42599310199995, 49.015942623000079 ], [ -122.426198996999929, 49.01579059700007 ], [ -122.426233312999926, 49.015765304000062 ], [ -122.426400612999913, 49.015579803000058 ], [ -122.426499111999973, 49.015364897000097 ], [ -122.426488626999941, 49.014687970000075 ], [ -122.426456382999945, 49.012609670000053 ], [ -122.426451392999979, 49.012285899000119 ], [ -122.426427554999961, 49.010747047000102 ], [ -122.426411504999948, 49.009712781000083 ], [ -122.426406389999954, 49.00938401800002 ], [ -122.426407200999947, 49.009227056000043 ], [ -122.426408012999957, 49.009074152000053 ], [ -122.426442612999921, 49.002362580000053 ], [ -122.426882678999931, 49.00229957900013 ], [ -122.447880631999936, 49.002296945000126 ], [ -122.44787509599999, 49.002369645 ], [ -122.44770351199999, 49.004623251000041 ], [ -122.446440643999949, 49.004581411000103 ], [ -122.446437660999948, 49.004620582000037 ], [ -122.442997065999933, 49.004506514000042 ], [ -122.442988720999892, 49.00461596499999 ], [ -122.440853447999956, 49.004545118000038 ], [ -122.440848435999968, 49.004610817000106 ], [ -122.440188392999943, 49.004588909000098 ], [ -122.439933681999989, 49.007926829000041 ], [ -122.434480109999967, 49.007745656000111 ], [ -122.434714860999975, 49.00467402600011 ], [ -122.433906947999958, 49.004647162000033 ], [ -122.433902557999929, 49.004704584000073 ], [ -122.431358023999977, 49.004619937000051 ], [ -122.431353854999884, 49.004674446000081 ], [ -122.429816316999904, 49.004623269000085 ], [ -122.429664433999903, 49.006607912000064 ], [ -122.429705272999954, 49.006609271000059 ], [ -122.429630034999946, 49.007592352000096 ], [ -122.42971783499992, 49.007595274000025 ], [ -122.429646562999949, 49.008526515000071 ], [ -122.429708490999971, 49.008528577000035 ], [ -122.429651902, 49.009267956000087 ], [ -122.430301015999987, 49.009289563000046 ], [ -122.430025755999949, 49.012886353000106 ], [ -122.429827478, 49.012879754000053 ], [ -122.429806482999965, 49.013154065000066 ], [ -122.430122359999984, 49.013164579000041 ], [ -122.430044931999959, 49.014176242000097 ], [ -122.43244996899999, 49.01425626200011 ], [ -122.432528682999958, 49.013227098000172 ], [ -122.435148525999921, 49.013314204000046 ], [ -122.435234429999952, 49.012190161000049 ], [ -122.436104774999961, 49.012219085000069 ], [ -122.436105909999966, 49.012118734000126 ], [ -122.436516147999939, 49.012120738000057 ], [ -122.436519191999977, 49.011850883000143 ], [ -122.436929427999985, 49.011852886000071 ], [ -122.436932471999981, 49.011583032000054 ], [ -122.437752937999932, 49.011587032000151 ], [ -122.437755977999956, 49.011317177000052 ], [ -122.438576439999935, 49.011321172000123 ], [ -122.438585542999988, 49.010511607000055 ], [ -122.438995766999938, 49.010513602000124 ], [ -122.438998799999979, 49.010243747000096 ], [ -122.43940902199995, 49.010245741000048 ], [ -122.439412051999966, 49.009975887000024 ], [ -122.439822272, 49.009977878000058 ], [ -122.4398253, 49.009708023 ], [ -122.440235517999923, 49.009710014000127 ], [ -122.440238543999925, 49.009440159000093 ], [ -122.440648757999952, 49.009442148000048 ], [ -122.440651780999957, 49.009172292000052 ], [ -122.443113065999952, 49.009184199000138 ], [ -122.443107046999941, 49.00972390900008 ], [ -122.445012874999975, 49.009733091000072 ], [ -122.445066859999926, 49.009024681 ], [ -122.44371007299999, 49.008979700000076 ], [ -122.443984255999965, 49.005382852 ], [ -122.44854215299992, 49.005533893000063 ], [ -122.449437587999967, 49.005563544000054 ], [ -122.449315002999953, 49.007174204000123 ], [ -122.450671742999958, 49.007219114000058 ], [ -122.450516275999988, 49.009262435000075 ], [ -122.450968858999943, 49.009277411 ], [ -122.450695190999966, 49.012874255000099 ], [ -122.450658417999946, 49.012873038000045 ], [ -122.450539471999917, 49.014436154000087 ], [ -122.448675838, 49.014374468000042 ], [ -122.448664415999957, 49.014524481000059 ], [ -122.45398318299999, 49.014700446000084 ], [ -122.453940882999959, 49.015256837 ], [ -122.456124141999965, 49.015328990000029 ], [ -122.456117299999946, 49.015419037000079 ], [ -122.45933223699997, 49.015525205000138 ], [ -122.459307838999962, 49.015846603000107 ], [ -122.459434890999916, 49.015850798000017 ], [ -122.459478078999979, 49.015281855000119 ], [ -122.459634852999955, 49.015287030000074 ], [ -122.459687407999951, 49.016642735000147 ], [ -122.459714593999962, 49.016898087000143 ], [ -122.459910663999935, 49.024379400000015 ], [ -122.459914733999966, 49.024534421000091 ], [ -122.45985401199998, 49.025507987000076 ], [ -122.459393623999972, 49.026095990000023 ], [ -122.459544750999896, 49.027225906000126 ], [ -122.45975269299997, 49.028336997000082 ], [ -122.459751929999982, 49.028692642000088 ], [ -122.459751352999945, 49.028962493000023 ], [ -122.459749925, 49.029619148000059 ], [ -122.459748784999988, 49.030140935000126 ], [ -122.45974797699995, 49.030518739000058 ], [ -122.459746629, 49.031139402000065 ], [ -122.459746001, 49.031433185000019 ], [ -122.459747539999952, 49.033745562000064 ], [ -122.457415458999947, 49.033668599000073 ], [ -122.4574839199999, 49.032767571000122 ], [ -122.457245407999892, 49.032759697000074 ], [ -122.457346816999973, 49.031425069000072 ], [ -122.457418577999974, 49.030480606000083 ], [ -122.457179145999959, 49.030472701000043 ], [ -122.457205196999979, 49.030129837000082 ], [ -122.45631613799992, 49.030100479000097 ], [ -122.456330827, 49.029907213000058 ], [ -122.455360215999988, 49.029875154000131 ], [ -122.455402729999918, 49.029315911000026 ], [ -122.45415705899994, 49.029274753000081 ], [ -122.454148149, 49.029391923000084 ], [ -122.452542217999962, 49.029338840000086 ], [ -122.452505605999988, 49.029820061000059 ], [ -122.452163868999918, 49.029808763000084 ], [ -122.452128714999915, 49.030270769000012 ], [ -122.452015282999952, 49.0302670190001 ], [ -122.451990716999916, 49.030589843000044 ], [ -122.452229421999917, 49.030597736000082 ], [ -122.452167750999934, 49.031408223 ], [ -122.452064644999936, 49.032763194000026 ], [ -122.452398648999974, 49.032774237000083 ], [ -122.452124952999895, 49.036370951000073 ], [ -122.451936602999922, 49.03636472400008 ], [ -122.451814429999942, 49.037969955000037 ], [ -122.450780704999914, 49.037935772000026 ], [ -122.450750913999954, 49.03832706000005 ], [ -122.452241797999974, 49.038376355000068 ], [ -122.452075087999944, 49.04056683600006 ], [ -122.454017070999981, 49.040631015000045 ], [ -122.453785067999902, 49.043680733000031 ], [ -122.456441275999978, 49.043768458000045 ], [ -122.45638484199999, 49.044510794000139 ], [ -122.456275487999974, 49.04594914200009 ], [ -122.457071429999942, 49.045952888000102 ], [ -122.457070951999953, 49.045996840000036 ], [ -122.452451176999944, 49.045906391000088 ], [ -122.45225951399999, 49.045906997000024 ], [ -122.448577611999951, 49.045918085000068 ], [ -122.440470725999944, 49.04613900600004 ], [ -122.44039619599998, 49.046397001000052 ], [ -122.440413613999951, 49.047205159000072 ], [ -122.440461686, 49.049436252000142 ], [ -122.440520580999973, 49.052171275000092 ], [ -122.44053359499999, 49.052774157000073 ], [ -122.440541560999918, 49.053143044000151 ], [ -122.440590759999935, 49.05542788200011 ], [ -122.44061986, 49.056777690000089 ], [ -122.440628582999949, 49.057183100000074 ], [ -122.440421889000021, 49.057177920000115 ], [ -122.439312431999923, 49.05715016900006 ], [ -122.437985521999948, 49.057116939000082 ], [ -122.437670643, 49.057109064000052 ], [ -122.434906613999928, 49.057039790000061 ], [ -122.434350394999953, 49.057025832000129 ], [ -122.429767416999965, 49.056910810000041 ], [ -122.426087189999947, 49.057011007000057 ], [ -122.426303092999987, 49.055694010000174 ], [ -122.426303876999896, 49.05568499100012 ], [ -122.426382065999988, 49.054770630000064 ], [ -122.426452052999977, 49.05395212800012 ], [ -122.426513595999907, 49.053232290000082 ] ], [ [ -122.43154156099996, 49.052661388000068 ], [ -122.431551757999969, 49.051767107000074 ], [ -122.431962319999954, 49.051769128000039 ], [ -122.431965395999981, 49.051499274 ], [ -122.433197079999943, 49.051505331000087 ], [ -122.433191165000011, 49.052025563000072 ], [ -122.43442246799999, 49.052066466000063 ], [ -122.43443182599998, 49.051241520000112 ], [ -122.435814023999981, 49.051248285000014 ], [ -122.43584115799996, 49.050893490000121 ], [ -122.43671236499992, 49.05092241100008 ], [ -122.436874731999922, 49.048798708000035 ], [ -122.437068430999943, 49.048805137 ], [ -122.437125139999978, 49.048063303000021 ], [ -122.435193364, 49.047999168000096 ], [ -122.43546843199999, 49.044402562000101 ], [ -122.437220683999954, 49.044460739000051 ], [ -122.437225663999982, 49.044395604000123 ], [ -122.441844935999924, 49.044548831000093 ], [ -122.441884459, 49.044031094000076 ], [ -122.441916616999933, 49.04360981500006 ], [ -122.444007453999944, 49.043679106000056 ], [ -122.444124908, 49.042139464000051 ], [ -122.44484854199996, 49.042163436000081 ], [ -122.444916155999962, 49.041276885000066 ], [ -122.44449801899999, 49.041263034000046 ], [ -122.444516274999984, 49.041023678000087 ], [ -122.442352559999932, 49.040951978000095 ], [ -122.442627034999973, 49.037355314000067 ], [ -122.445025905999927, 49.037434805000025 ], [ -122.445050150999947, 49.037116871000094 ], [ -122.44529642099991, 49.037125029000102 ], [ -122.445358616999926, 49.036309324000079 ], [ -122.445211949999987, 49.036304466000068 ], [ -122.445368674999926, 49.034248957000067 ], [ -122.445245376999964, 49.034244873000048 ], [ -122.445305988999962, 49.033449915000062 ], [ -122.442309618999943, 49.033350616000142 ], [ -122.442222848, 49.034487695000109 ], [ -122.438679053999977, 49.03437014600005 ], [ -122.438644821999929, 49.034818281000042 ], [ -122.433188111999982, 49.034637049000075 ], [ -122.433210320999962, 49.034346757000094 ], [ -122.432285898999979, 49.034316026000077 ], [ -122.432349823999957, 49.033480656000151 ], [ -122.431943448999959, 49.033467145000039 ], [ -122.431940876999974, 49.033500746000065 ], [ -122.430359467999935, 49.033448152000062 ], [ -122.430133165999948, 49.036403681000046 ], [ -122.430080537999956, 49.036401930000046 ], [ -122.430022671999936, 49.037157588000056 ], [ -122.430297727999985, 49.037166738000032 ], [ -122.430158544999983, 49.038984319000058 ], [ -122.430354636999951, 49.03899084200004 ], [ -122.430301190999955, 49.039688791000088 ], [ -122.434432838999925, 49.039826135000105 ], [ -122.43443187199999, 49.039838778000018 ], [ -122.43542574899999, 49.039871793000025 ], [ -122.435431990999945, 49.039790147000105 ], [ -122.440889311999939, 49.039971263000012 ], [ -122.440614688000011, 49.043567908000114 ], [ -122.439837674999964, 49.043542138000099 ], [ -122.439805593999921, 49.043962161000103 ], [ -122.439771599999986, 49.044407226000011 ], [ -122.435127272999949, 49.044253076000125 ], [ -122.43512610399992, 49.044268338000052 ], [ -122.434442003999919, 49.044245615000136 ], [ -122.434441075999985, 49.044257755000054 ], [ -122.433767050999947, 49.044235363000027 ], [ -122.433754754999896, 49.044396071000079 ], [ -122.432962701999912, 49.044369752000087 ], [ -122.43295582599994, 49.044459590000066 ], [ -122.431949958999894, 49.044426157000068 ], [ -122.431942888999956, 49.044518514000067 ], [ -122.430188279999982, 49.04446017300009 ], [ -122.430086983999956, 49.045782755000076 ], [ -122.430027478999975, 49.045780776000072 ], [ -122.429979494999941, 49.046407255000126 ], [ -122.429989005999957, 49.046407571000032 ], [ -122.429900125999964, 49.047567922000056 ], [ -122.430298366999978, 49.047581166000036 ], [ -122.430085837999982, 49.050355857000078 ], [ -122.430888816999939, 49.05038255700002 ], [ -122.430688761999946, 49.052994692000134 ], [ -122.431316263999989, 49.053015553000122 ], [ -122.43128797199995, 49.053385014000078 ], [ -122.431480133999969, 49.053385961000068 ], [ -122.431535632999953, 49.052661191000063 ], [ -122.43154156099996, 49.052661388000068 ] ], [ [ -122.412107062999951, 49.045192856000057 ], [ -122.412148593999945, 49.044653332000053 ], [ -122.411927510999959, 49.044652205000034 ], [ -122.411921145999941, 49.045191910000078 ], [ -122.412107062999951, 49.045192856000057 ] ], [ [ -122.405766748999966, 49.044890516000081 ], [ -122.405767553999951, 49.044822866000032 ], [ -122.40532719299992, 49.044808119000088 ], [ -122.405321013999952, 49.044888220000139 ], [ -122.405766748999966, 49.044890516000081 ] ], [ [ -122.430288794999953, 49.029784046000024 ], [ -122.430341162999966, 49.029100011 ], [ -122.430012402999949, 49.029089073000087 ], [ -122.429960028999957, 49.029773108 ], [ -122.430288794999953, 49.029784046000024 ] ], [ [ -122.436924959999914, 49.029182652000024 ], [ -122.436963044999928, 49.028684251000044 ], [ -122.437560092999917, 49.028704076000068 ], [ -122.437573569999969, 49.027508451000053 ], [ -122.436752839999912, 49.027504447000133 ], [ -122.436761979000011, 49.026694885000026 ], [ -122.437172335999904, 49.026696887000114 ], [ -122.437175378999896, 49.026427033000061 ], [ -122.43758573599996, 49.02642903300012 ], [ -122.437588775999942, 49.026159179000061 ], [ -122.442513017999929, 49.026183074000087 ], [ -122.442519047999937, 49.025643365000086 ], [ -122.43882590599999, 49.025625465000097 ], [ -122.438828940999883, 49.025355610000076 ], [ -122.438418593999927, 49.025353614000046 ], [ -122.438427701999956, 49.024544051000049 ], [ -122.437607022999913, 49.024540054000113 ], [ -122.437610064999916, 49.024270200000053 ], [ -122.437199725999932, 49.024268199000083 ], [ -122.437217983999915, 49.022649073000082 ], [ -122.43762830799993, 49.022651074000073 ], [ -122.437634390999932, 49.022111364000082 ], [ -122.438044709999971, 49.022113364000099 ], [ -122.438047747999974, 49.021843509000092 ], [ -122.438458065999896, 49.021845506000076 ], [ -122.438464137999944, 49.021305797000124 ], [ -122.438874450999919, 49.021307793000069 ], [ -122.438889619999927, 49.019958521000056 ], [ -122.438479317999963, 49.019956525000033 ], [ -122.438487692999985, 49.019212065000104 ], [ -122.438284746999955, 49.019205327000101 ], [ -122.438307758999954, 49.018903982000062 ], [ -122.437873316999955, 49.018889557000108 ], [ -122.437871307999927, 49.018915846000041 ], [ -122.437277734999938, 49.018896135000098 ], [ -122.437263692999977, 49.019079961000045 ], [ -122.434457823999978, 49.018986736000059 ], [ -122.434447580999958, 49.019120728000139 ], [ -122.432790080999936, 49.019065624000071 ], [ -122.4327449419999, 49.019655768000064 ], [ -122.432738190999927, 49.019655544000052 ], [ -122.432735088999934, 49.019928429000053 ], [ -122.432324786999956, 49.019926411000057 ], [ -122.432318650999932, 49.020466120000052 ], [ -122.431908344999982, 49.020464100000034 ], [ -122.431905273, 49.02073395500004 ], [ -122.431084654999921, 49.020729912000029 ], [ -122.431081579999969, 49.020999766000095 ], [ -122.429972606999968, 49.020994293000051 ], [ -122.429893057999934, 49.022033430000121 ], [ -122.428852211999981, 49.021998787000058 ], [ -122.428849971999952, 49.022028034000108 ], [ -122.429012144999916, 49.022033432000079 ], [ -122.42880883699992, 49.024688357000066 ], [ -122.429192701999952, 49.024701135000029 ], [ -122.429182981999986, 49.024828064000076 ], [ -122.429992781999914, 49.024855013000035 ], [ -122.429944860999967, 49.02548096400011 ], [ -122.431012585999923, 49.025516488000029 ], [ -122.430750919999952, 49.028935071000078 ], [ -122.435810830999941, 49.0291032700001 ], [ -122.435807599, 49.029145541000069 ], [ -122.436924959999914, 49.029182652000024 ] ], [ [ -122.419577216999983, 49.022291820000071 ], [ -122.419611330999956, 49.019358265000079 ], [ -122.418349227999954, 49.019316133000117 ], [ -122.418345842999955, 49.019360217000099 ], [ -122.415101728999986, 49.019251852000103 ], [ -122.415069725999942, 49.019668195000129 ], [ -122.411572070999981, 49.019551250000042 ], [ -122.41156608299994, 49.019629079000083 ], [ -122.409740802, 49.019568005000068 ], [ -122.409686241999907, 49.020276721000094 ], [ -122.409377138999986, 49.020266376000102 ], [ -122.40935133, 49.020601593000045 ], [ -122.410072651999911, 49.020625734000113 ], [ -122.410016921999954, 49.021349705000063 ], [ -122.411624642, 49.02140349400004 ], [ -122.411517895999978, 49.02279073800004 ], [ -122.411774782999956, 49.022792048000035 ], [ -122.41178432199996, 49.021982489 ], [ -122.412194639999939, 49.021984580000023 ], [ -122.412200996999971, 49.0214448730001 ], [ -122.412611308999914, 49.021446962000034 ], [ -122.41261766, 49.020907255000111 ], [ -122.414258892999953, 49.020915598000059 ], [ -122.414255727999929, 49.021185452000054 ], [ -122.414666038999925, 49.021187534000056 ], [ -122.414659707999988, 49.021727241000079 ], [ -122.415070022999927, 49.021729321000095 ], [ -122.41505421, 49.023078588000054 ], [ -122.415464536999934, 49.023080667000066 ], [ -122.415461375999911, 49.023350521000047 ], [ -122.417923348999977, 49.023362966000043 ], [ -122.417926495999978, 49.02309311199999 ], [ -122.418747148999955, 49.023097249000095 ], [ -122.418750290999952, 49.022827395000093 ], [ -122.419160615999914, 49.022829462000097 ], [ -122.41916689599999, 49.022289755000031 ], [ -122.419577216999983, 49.022291820000071 ] ], [ [ -122.442177686999969, 49.019469284000081 ], [ -122.442175056999957, 49.01970458100007 ], [ -122.442739235999966, 49.019707307000061 ], [ -122.442755927999897, 49.019488461000037 ], [ -122.442177686999969, 49.019469284000081 ] ], [ [ -122.442576315999958, 49.0205161270001 ], [ -122.442564259999941, 49.021595546000135 ], [ -122.442595193999963, 49.021595696000091 ], [ -122.442677503999974, 49.020516617000084 ], [ -122.442576315999958, 49.0205161270001 ] ], [ [ -122.442972676999929, 49.021767854000061 ], [ -122.442968553999933, 49.022137237000081 ], [ -122.443789194, 49.022141196000099 ], [ -122.443792203, 49.021871342000033 ], [ -122.444202521999955, 49.021873318000111 ], [ -122.444203239999965, 49.021808648000039 ], [ -122.442972676999929, 49.021767854000061 ] ], [ [ -122.441821726999962, 49.014607761000065 ], [ -122.44182209, 49.01457535400003 ], [ -122.441411829999964, 49.014573369000068 ], [ -122.44141485199998, 49.014303514000048 ], [ -122.44107317, 49.014301860000074 ], [ -122.441051777999988, 49.014582217000019 ], [ -122.441821726999962, 49.014607761000065 ] ], [ [ -122.443061895999918, 49.013771736000102 ], [ -122.443052114999929, 49.014648569000038 ], [ -122.443186456999982, 49.014653024000026 ], [ -122.4432251, 49.014146259000064 ], [ -122.444698281999976, 49.014195100000109 ], [ -122.444702903999911, 49.013779645000113 ], [ -122.444292651999916, 49.013777670000103 ], [ -122.444295655999966, 49.01350781500004 ], [ -122.443475155999963, 49.013503860000043 ], [ -122.443472147999941, 49.013773716000031 ], [ -122.443061895999918, 49.013771736000102 ] ], [ [ -122.441843208999956, 49.012686369000129 ], [ -122.44185226, 49.01187680400006 ], [ -122.440621549999946, 49.011870844000065 ], [ -122.44061852699997, 49.012140699000028 ], [ -122.44020829, 49.012138710000102 ], [ -122.440205860999953, 49.012355277000026 ], [ -122.440688524999956, 49.012371295000094 ], [ -122.440664917999953, 49.012680663000033 ], [ -122.441843208999956, 49.012686369000129 ] ], [ [ -122.410342927999949, 49.039786487000129 ], [ -122.410346927999925, 49.039448137000072 ], [ -122.410320881999908, 49.039786375000048 ], [ -122.410342927999949, 49.039786487000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.782898550724638", "sL_AssetLoss": "34500", "sL_BldgLoss": "27010", "sL_StrLoss": "14290", "sL_NStrLoss": "12720", "sL_ContLoss": "7490", "geom_point": "0101000020E6100000153380BFF19C5EC0A5F10BAFA4804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.449665349999961, 49.003137083000055 ], [ -122.455118441999929, 49.003317486000093 ], [ -122.454845129999939, 49.006914373000058 ], [ -122.449391616999918, 49.006733957000037 ], [ -122.449665349999961, 49.003137083000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417526083", "BldgCostT": "268338333", "sL_LossRatio": "0.75977207977208", "sL_AssetLoss": "2465775", "sL_BldgLoss": "1873427", "sL_StrLoss": "1050026", "sL_NStrLoss": "823401", "sL_ContLoss": "592348", "geom_point": "0101000020E61000007F4995EECF9C5EC0FFAF6B629E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.440461686, 49.049436252000142 ], [ -122.440413613999951, 49.047205159000072 ], [ -122.44039619599998, 49.046397001000052 ], [ -122.440470725999944, 49.04613900600004 ], [ -122.448577611999951, 49.045918085000068 ], [ -122.45225951399999, 49.045906997000024 ], [ -122.452451176999944, 49.045906391000088 ], [ -122.457070951999953, 49.045996840000036 ], [ -122.457065553999939, 49.04649259600005 ], [ -122.457476074999988, 49.046494527000057 ], [ -122.457481401999985, 49.046004867000072 ], [ -122.459533662999959, 49.046044976000061 ], [ -122.459528685999928, 49.046504158000033 ], [ -122.459756034999913, 49.046505222000093 ], [ -122.459760421999974, 49.053124696000054 ], [ -122.459762907999959, 49.054010846000025 ], [ -122.459763632999966, 49.05412717500014 ], [ -122.459699479999969, 49.054485611000082 ], [ -122.459765554999976, 49.055002508000058 ], [ -122.459766912999953, 49.055975166000081 ], [ -122.459764049999976, 49.056048989000082 ], [ -122.459767404000019, 49.057049604000028 ], [ -122.459765635999972, 49.057649023000046 ], [ -122.458734549999988, 49.057623131000057 ], [ -122.454996564999973, 49.05753268100004 ], [ -122.454969228999985, 49.057532026000089 ], [ -122.454736880999945, 49.057526395000089 ], [ -122.453511783999915, 49.057496718000053 ], [ -122.453133662999974, 49.057487678000015 ], [ -122.451314036999975, 49.057444150000045 ], [ -122.448771110999928, 49.057383300000062 ], [ -122.444156704999955, 49.057269911000041 ], [ -122.443226193999948, 49.057247033000074 ], [ -122.44217265899999, 49.057221102 ], [ -122.440628582999949, 49.057183100000074 ], [ -122.44061986, 49.056777690000089 ], [ -122.440590759999935, 49.05542788200011 ], [ -122.440541560999918, 49.053143044000151 ], [ -122.44053359499999, 49.052774157000073 ], [ -122.440520580999973, 49.052171275000092 ], [ -122.440461686, 49.049436252000142 ] ], [ [ -122.454995249999968, 49.048102045000086 ], [ -122.455001148999955, 49.047562338000034 ], [ -122.454590617999941, 49.047560398000059 ], [ -122.454593320999962, 49.047313129000095 ], [ -122.45395405499994, 49.047292013000032 ], [ -122.453913346999954, 49.047827063000057 ], [ -122.454587665999924, 49.047830252000139 ], [ -122.454584714999939, 49.048100106000028 ], [ -122.454995249999968, 49.048102045000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287184583", "BldgCostT": "181993333", "sL_LossRatio": "0.728572292392128", "sL_AssetLoss": "2530287", "sL_BldgLoss": "1843497", "sL_StrLoss": "925047", "sL_NStrLoss": "918450", "sL_ContLoss": "686790", "geom_point": "0101000020E6100000ABD914D9589C5EC0CE0956AC4C894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.426114484999957, 49.088047777000035 ], [ -122.426061977999922, 49.0871657550001 ], [ -122.426046965999959, 49.086913515000091 ], [ -122.425761129999927, 49.082109710000019 ], [ -122.425757125999979, 49.08204210800006 ], [ -122.42575065699998, 49.081315533000115 ], [ -122.4257488699999, 49.081117661000064 ], [ -122.425748723999945, 49.081099685000055 ], [ -122.425747279999953, 49.080937775000031 ], [ -122.425744745999978, 49.080649829000038 ], [ -122.425737720999948, 49.079858330000064 ], [ -122.425724611999897, 49.078382792000106 ], [ -122.425718900999982, 49.077735082000046 ], [ -122.425709997999917, 49.076733989000076 ], [ -122.425714224999965, 49.076696113 ], [ -122.425753702999927, 49.076342408000095 ], [ -122.425879706999964, 49.076109508000108 ], [ -122.426262330999961, 49.075636427000049 ], [ -122.426554214999911, 49.075275671000057 ], [ -122.426814297999925, 49.07495440400001 ], [ -122.426917101999948, 49.074827105000047 ], [ -122.42705201299998, 49.07430069100009 ], [ -122.426878607999981, 49.073795487000027 ], [ -122.426144907, 49.073153689000073 ], [ -122.425878879999971, 49.072873498000035 ], [ -122.425687115999906, 49.072376704000121 ], [ -122.425700071999984, 49.070816679000103 ], [ -122.425734185999957, 49.066714832000102 ], [ -122.42575083499996, 49.064708960000047 ], [ -122.425763079999967, 49.063233602000125 ], [ -122.425808102999923, 49.060831849000074 ], [ -122.425815298999936, 49.060448993000122 ], [ -122.425836838999942, 49.059734326000033 ], [ -122.425865282999965, 49.058789619000116 ], [ -122.425874591999971, 49.058480485000061 ], [ -122.425898136999976, 49.05831785400008 ], [ -122.425943407999938, 49.058004865000072 ], [ -122.426043462999985, 49.057313268000065 ], [ -122.426087189999947, 49.057011007000057 ], [ -122.429767416999965, 49.056910810000041 ], [ -122.434350394999953, 49.057025832000129 ], [ -122.434906613999928, 49.057039790000061 ], [ -122.437670643, 49.057109064000052 ], [ -122.437985521999948, 49.057116939000082 ], [ -122.439312431999923, 49.05715016900006 ], [ -122.440421889000021, 49.057177920000115 ], [ -122.440628582999949, 49.057183100000074 ], [ -122.44217265899999, 49.057221102 ], [ -122.443226193999948, 49.057247033000074 ], [ -122.444156704999955, 49.057269911000041 ], [ -122.448771110999928, 49.057383300000062 ], [ -122.451314036999975, 49.057444150000045 ], [ -122.453133662999974, 49.057487678000015 ], [ -122.453511783999915, 49.057496718000053 ], [ -122.454736880999945, 49.057526395000089 ], [ -122.454969228999985, 49.057532026000089 ], [ -122.454996564999973, 49.05753268100004 ], [ -122.458734549999988, 49.057623131000057 ], [ -122.459765635999972, 49.057649023000046 ], [ -122.459770626999969, 49.058141371000026 ], [ -122.45977448499994, 49.058667005000061 ], [ -122.45977396499994, 49.059430466000038 ], [ -122.459795703999973, 49.060494790000057 ], [ -122.459792952, 49.061308266000104 ], [ -122.459790478999963, 49.062038170000029 ], [ -122.459788137999965, 49.062729363000074 ], [ -122.459787335, 49.062967291000128 ], [ -122.459350197999981, 49.062965245000058 ], [ -122.459347646999944, 49.063200309000081 ], [ -122.459786498999904, 49.063214778000045 ], [ -122.459776899999895, 49.066054900000054 ], [ -122.459823072999939, 49.069138839000118 ], [ -122.458209111999963, 49.069085626000046 ], [ -122.458226134999947, 49.068861719000019 ], [ -122.457461699999968, 49.068836507000078 ], [ -122.457511946999944, 49.068175749000041 ], [ -122.455571503, 49.06811172500003 ], [ -122.455560664999979, 49.068254174000131 ], [ -122.454572123999952, 49.068221545000014 ], [ -122.454566327999927, 49.068297698000045 ], [ -122.453181484, 49.068251972000084 ], [ -122.453172276, 49.068372932000074 ], [ -122.452303695999959, 49.068344243000084 ], [ -122.452214813999944, 49.069511356000078 ], [ -122.452553101999968, 49.069522530000093 ], [ -122.452341451, 49.072301724000077 ], [ -122.452453975999944, 49.07230544099999 ], [ -122.452414234999964, 49.072827259000071 ], [ -122.452459108999918, 49.072828742000041 ], [ -122.452416645, 49.073386299000049 ], [ -122.45480804399989, 49.073465259000081 ], [ -122.45481664, 49.073352313000093 ], [ -122.455921585999974, 49.07338877800003 ], [ -122.455978232999925, 49.072644240000038 ], [ -122.457732861999943, 49.072702122000095 ], [ -122.457734758999976, 49.072677183000046 ], [ -122.459481302999976, 49.072734769000071 ], [ -122.459488391000022, 49.072641524000105 ], [ -122.459912736999939, 49.072655511000093 ], [ -122.459991195999962, 49.074995587000046 ], [ -122.459595401999962, 49.078550017000062 ], [ -122.459569623999954, 49.078781364000044 ], [ -122.45955817399998, 49.080422959 ], [ -122.459835953999971, 49.083700570000069 ], [ -122.456131343999971, 49.083578431000056 ], [ -122.456311652999915, 49.081208886000063 ], [ -122.45621629299994, 49.081205740000023 ], [ -122.456489935, 49.077609266000074 ], [ -122.457743760999975, 49.077650620000057 ], [ -122.457755439999971, 49.077497065000053 ], [ -122.457289288, 49.077481692000028 ], [ -122.457279754999917, 49.077607006000086 ], [ -122.456314359999936, 49.077575162000059 ], [ -122.45629452699994, 49.077835829000108 ], [ -122.452782221999911, 49.077719902000077 ], [ -122.452752100999973, 49.078115413000013 ], [ -122.452587616999892, 49.078109982000107 ], [ -122.45256548199994, 49.078400593000026 ], [ -122.452597545999978, 49.078401653000064 ], [ -122.45252599199992, 49.079341093000053 ], [ -122.452594504999965, 49.079343355000027 ], [ -122.452556344999934, 49.079844338000051 ], [ -122.453340709999921, 49.079870237000058 ], [ -122.453239486999962, 49.081199413000107 ], [ -122.453648979999954, 49.081212932000064 ], [ -122.453375097, 49.084809379000056 ], [ -122.451411344999926, 49.08474453500007 ], [ -122.451034925999934, 49.084732100000046 ], [ -122.451022579, 49.084894111999986 ], [ -122.450986350999955, 49.085369475000093 ], [ -122.450897815999951, 49.086531125000086 ], [ -122.451635783999905, 49.086555500000038 ], [ -122.451601511999982, 49.087005238000117 ], [ -122.452175969999956, 49.087024208000088 ], [ -122.452178988999947, 49.086984590000036 ], [ -122.454107435999902, 49.087048251000063 ], [ -122.454120816999989, 49.086872537000076 ], [ -122.45486880499999, 49.08689722000009 ], [ -122.456236206999932, 49.086942330000092 ], [ -122.457058061999945, 49.086969434000075 ], [ -122.459583722, 49.08705268900011 ], [ -122.459516417999907, 49.08793790100006 ], [ -122.459495288999989, 49.088215801000054 ], [ -122.45968009099991, 49.088221889000032 ], [ -122.459674688999954, 49.088292933000076 ], [ -122.459671550999971, 49.088334211000117 ], [ -122.459781091999929, 49.088334724000092 ], [ -122.459795433999915, 49.088334791000058 ], [ -122.45981661699993, 49.088056157000011 ], [ -122.459920290999918, 49.086692476000039 ], [ -122.460090029999918, 49.086698068 ], [ -122.460218578999971, 49.088214499000074 ], [ -122.460222654999924, 49.088508151000035 ], [ -122.460229573999953, 49.089006246000032 ], [ -122.460210404999913, 49.089348132000111 ], [ -122.459276643999885, 49.089350450000033 ], [ -122.458947936999962, 49.089351269000048 ], [ -122.45632375299999, 49.089357735000092 ], [ -122.452987549999989, 49.089365889000071 ], [ -122.448279509999963, 49.089377205000055 ], [ -122.447224008999953, 49.089378270000083 ], [ -122.443470666999971, 49.089382007000054 ], [ -122.440594221999945, 49.089384773000077 ], [ -122.439128546999967, 49.089386176000083 ], [ -122.437444692999975, 49.089387728000133 ], [ -122.436539848999985, 49.089388560000017 ], [ -122.432924070999931, 49.089391791000075 ], [ -122.429171219999958, 49.089395037000024 ], [ -122.427212602999973, 49.089396657000037 ], [ -122.426194782999971, 49.089397492000089 ], [ -122.426114484999957, 49.088047777000035 ] ], [ [ -122.444598741999954, 49.086903529000018 ], [ -122.444644630999974, 49.086302507 ], [ -122.445402615999967, 49.086327587000063 ], [ -122.445517824999925, 49.084818261000045 ], [ -122.44531167099997, 49.084811440000053 ], [ -122.44543582199999, 49.083184947000063 ], [ -122.445471843999954, 49.082713004 ], [ -122.445586175999935, 49.08121501400008 ], [ -122.445777388999943, 49.08122134000012 ], [ -122.445779764999884, 49.081190197000041 ], [ -122.444847178999936, 49.08115933700001 ], [ -122.444847297999956, 49.081157792000063 ], [ -122.444828256999955, 49.081157162000082 ], [ -122.444744004999961, 49.082260794 ], [ -122.444282290999936, 49.082245513000011 ], [ -122.442936082999964, 49.08220094800005 ], [ -122.439281718999936, 49.082079886000038 ], [ -122.439355492999979, 49.08111496 ], [ -122.435701754000021, 49.080993794000058 ], [ -122.435823662999923, 49.079400843000037 ], [ -122.435859339999979, 49.078934652000051 ], [ -122.435976977999957, 49.077397371000117 ], [ -122.436847386999915, 49.077426247000169 ], [ -122.436865648999984, 49.077187539000064 ], [ -122.435968333999952, 49.077157770000071 ], [ -122.435938585999935, 49.077546521000052 ], [ -122.431995848999989, 49.077415630000104 ], [ -122.430668585999967, 49.077371534000122 ], [ -122.430476884999962, 49.077365164000099 ], [ -122.430482027, 49.077298073000058 ], [ -122.430485429999976, 49.077253678000034 ], [ -122.430358580999922, 49.077249463000044 ], [ -122.428397937999961, 49.077184289000066 ], [ -122.428322271999917, 49.07817099000011 ], [ -122.429846467999965, 49.0782216590001 ], [ -122.429669174999958, 49.080534425000067 ], [ -122.429811812999958, 49.080539166000086 ], [ -122.429665225999983, 49.082451267000131 ], [ -122.430384110999938, 49.082475157000097 ], [ -122.430315032999957, 49.083376350000023 ], [ -122.431232636999965, 49.083406836000044 ], [ -122.431013691999951, 49.086263699000078 ], [ -122.431018219999913, 49.086263849 ], [ -122.430953340999935, 49.087110348000117 ], [ -122.431627692999896, 49.08713274600013 ], [ -122.431638119999917, 49.086996694000121 ], [ -122.432232910999957, 49.087016447000089 ], [ -122.432263316, 49.08661960900011 ], [ -122.436421508999928, 49.086757609000117 ], [ -122.436426841999932, 49.086687909000013 ], [ -122.439686103999932, 49.086795963000043 ], [ -122.43969030699995, 49.086740988000045 ], [ -122.444598741999954, 49.086903529000018 ] ], [ [ -122.440197602999945, 49.077156306000056 ], [ -122.440208152999944, 49.077018270000053 ], [ -122.43759380299997, 49.076931598000044 ], [ -122.437583244999985, 49.077069634000047 ], [ -122.440197602999945, 49.077156306000056 ] ], [ [ -122.44534416099998, 49.072815202000108 ], [ -122.445389284999948, 49.072223883000106 ], [ -122.445496443999929, 49.072227430000083 ], [ -122.445513268999946, 49.072006937000033 ], [ -122.445393562999953, 49.072002976000093 ], [ -122.445441621999962, 49.071373171000076 ], [ -122.445357199999975, 49.071370377000072 ], [ -122.445625084999961, 49.067859558000087 ], [ -122.445547523999906, 49.067856992000024 ], [ -122.445775306, 49.064871385000039 ], [ -122.445467504999925, 49.064861196000066 ], [ -122.445539434999915, 49.063918383000043 ], [ -122.445422060999988, 49.063914498000031 ], [ -122.445540655999977, 49.062359996000097 ], [ -122.444983214999979, 49.062357316 ], [ -122.444987222999956, 49.061997278000014 ], [ -122.443008194999891, 49.061931740000077 ], [ -122.443015824, 49.061831807000054 ], [ -122.442303875999983, 49.061808221000064 ], [ -122.442305016999981, 49.061793270000088 ], [ -122.439516582, 49.061700847000118 ], [ -122.439572099999978, 49.060974317000067 ], [ -122.438922941999977, 49.06095279 ], [ -122.438836345999945, 49.062085796000069 ], [ -122.43882856, 49.062085538000034 ], [ -122.438781875999908, 49.062696295000123 ], [ -122.437508688999984, 49.062654063000103 ], [ -122.437478342999967, 49.063050926000052 ], [ -122.434571667999961, 49.062954454000142 ], [ -122.434389744999962, 49.065331594000085 ], [ -122.429181716999977, 49.065158543000067 ], [ -122.429157429999961, 49.065475417000137 ], [ -122.429317504, 49.065480740000112 ], [ -122.429302179000018, 49.065680687000082 ], [ -122.431404943999979, 49.065750584000121 ], [ -122.431129435999978, 49.069347060000084 ], [ -122.42928851, 49.069285869000055 ], [ -122.429270164999963, 49.069525193000104 ], [ -122.43021272099999, 49.069556526000042 ], [ -122.430002653999978, 49.072297635000012 ], [ -122.43118380199995, 49.072336889000084 ], [ -122.431202866999925, 49.072088040000025 ], [ -122.432396566999955, 49.072127698000031 ], [ -122.43244505, 49.071494669000074 ], [ -122.437906070999958, 49.071675927000058 ], [ -122.437867722999925, 49.072177403000069 ], [ -122.442309048999974, 49.072324611000113 ], [ -122.442280012999916, 49.072704773000062 ], [ -122.44409461099994, 49.072764865000089 ], [ -122.444093926999955, 49.07277381800003 ], [ -122.44534416099998, 49.072815202000108 ] ], [ [ -122.45635500199991, 49.059982636000129 ], [ -122.456211378999981, 49.06187102900001 ], [ -122.456898013999975, 49.061874262000131 ], [ -122.456900955999984, 49.061604409000054 ], [ -122.457311601999891, 49.0616063410001 ], [ -122.457326291999962, 49.060257073000066 ], [ -122.457736926999985, 49.060259003000034 ], [ -122.457742798999931, 49.059719296000111 ], [ -122.457332167999951, 49.059717366000058 ], [ -122.457329229999971, 49.059987220000032 ], [ -122.45635500199991, 49.059982636000129 ] ], [ [ -122.452378421, 49.062076945000037 ], [ -122.452374950999939, 49.062392625000022 ], [ -122.45224401199999, 49.06239200400011 ], [ -122.452199406999966, 49.062977797000066 ], [ -122.452339307999964, 49.062982419000043 ], [ -122.452319352999936, 49.063244477000062 ], [ -122.452913503999966, 49.063264104000062 ], [ -122.452907903, 49.063337666000074 ], [ -122.454355671, 49.06338547900004 ], [ -122.454382230999968, 49.063036473000096 ], [ -122.456473917999944, 49.063105517000103 ], [ -122.456478537999914, 49.062681890000071 ], [ -122.454425262999948, 49.062672202000023 ], [ -122.454428215999883, 49.062402349000074 ], [ -122.45278560499996, 49.062394572000045 ], [ -122.45278894399992, 49.062090506000054 ], [ -122.452378421, 49.062076945000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158230333", "BldgCostT": "100048333", "sL_LossRatio": "0.725818456463571", "sL_AssetLoss": "1549105", "sL_BldgLoss": "1124369", "sL_StrLoss": "544055", "sL_NStrLoss": "580314", "sL_ContLoss": "424736", "geom_point": "0101000020E610000023BAD3426E9C5EC07E4ADFB5158D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.426966519999937, 49.118149501000104 ], [ -122.426908935999947, 49.115440091000025 ], [ -122.426892545, 49.114668931000054 ], [ -122.426891551999958, 49.114621968000058 ], [ -122.426877238999921, 49.113947573000118 ], [ -122.426864817999942, 49.113362873000106 ], [ -122.426813922999912, 49.110966101000074 ], [ -122.426708192999953, 49.107294110000055 ], [ -122.428076478999955, 49.107283481000074 ], [ -122.429748131999986, 49.10727048800004 ], [ -122.430159300999975, 49.107267304000132 ], [ -122.430887492999958, 49.10725155900014 ], [ -122.432381063999983, 49.107219237000109 ], [ -122.437738489999973, 49.107103200000061 ], [ -122.437746985999979, 49.105668494000042 ], [ -122.437618588999939, 49.104911612000159 ], [ -122.437593404999987, 49.103648910000132 ], [ -122.437589014999929, 49.103418908000044 ], [ -122.437633676999965, 49.100508999000098 ], [ -122.437005996999957, 49.100443092000042 ], [ -122.43542989800001, 49.100368290000027 ], [ -122.434059382, 49.100433803000072 ], [ -122.43046609699999, 49.10076700399999 ], [ -122.426529992999946, 49.101086810000027 ], [ -122.4265256569999, 49.100874317000063 ], [ -122.426522810999955, 49.100735105000105 ], [ -122.426501595999966, 49.100002825000026 ], [ -122.426403909999948, 49.096628092000081 ], [ -122.426367489999947, 49.095369853000093 ], [ -122.42636152599998, 49.095162820000027 ], [ -122.42634823899999, 49.094703836000072 ], [ -122.426296220999973, 49.092905024000068 ], [ -122.42627097099999, 49.092031764000133 ], [ -122.426249403000014, 49.09128531700005 ], [ -122.426236376999924, 49.090835061000021 ], [ -122.426231694999927, 49.090673239000111 ], [ -122.426225710999944, 49.090466682000176 ], [ -122.426222333999959, 49.090349825000025 ], [ -122.426194782999971, 49.089397492000089 ], [ -122.427212602999973, 49.089396657000037 ], [ -122.429171219999958, 49.089395037000024 ], [ -122.432924070999931, 49.089391791000075 ], [ -122.436539848999985, 49.089388560000017 ], [ -122.437444692999975, 49.089387728000133 ], [ -122.439128546999967, 49.089386176000083 ], [ -122.440594221999945, 49.089384773000077 ], [ -122.443470666999971, 49.089382007000054 ], [ -122.447224008999953, 49.089378270000083 ], [ -122.448279509999963, 49.089377205000055 ], [ -122.452987549999989, 49.089365889000071 ], [ -122.45632375299999, 49.089357735000092 ], [ -122.458947936999962, 49.089351269000048 ], [ -122.459276643999885, 49.089350450000033 ], [ -122.460210404999913, 49.089348132000111 ], [ -122.460261863999975, 49.090309170000054 ], [ -122.45964686, 49.090288908000026 ], [ -122.459672367999943, 49.089953412000064 ], [ -122.459548481999946, 49.089952832000044 ], [ -122.45940663099995, 49.091818313000019 ], [ -122.454473254999968, 49.09165564400007 ], [ -122.454392877999936, 49.09271113100008 ], [ -122.452437811999943, 49.092646604000095 ], [ -122.452393258999962, 49.093231327000098 ], [ -122.454511592999935, 49.093301241000049 ], [ -122.454451067999941, 49.094096034000117 ], [ -122.455551461999946, 49.094132336000015 ], [ -122.455616097999922, 49.09328329100002 ], [ -122.46042910599995, 49.093441936000026 ], [ -122.460517400999962, 49.095143997000065 ], [ -122.46049755199999, 49.097049593000065 ], [ -122.460068206999921, 49.097035451000096 ], [ -122.460045083999944, 49.097339541000089 ], [ -122.460229031999944, 49.097345600000068 ], [ -122.46015376099993, 49.098335557000041 ], [ -122.46037058899995, 49.098342699000078 ], [ -122.460153270999967, 49.101200721000076 ], [ -122.460454207999959, 49.101210633000051 ], [ -122.46043043499995, 49.103492241000069 ], [ -122.460559041999929, 49.105380261000064 ], [ -122.460561904999906, 49.105438914000146 ], [ -122.460508986999926, 49.110726994000096 ], [ -122.45990758, 49.110726413000116 ], [ -122.457798285999971, 49.110724296000043 ], [ -122.457146702999964, 49.110809189000129 ], [ -122.456853099999961, 49.110885992000114 ], [ -122.456542880999962, 49.111002896000066 ], [ -122.456242783999926, 49.111165094000107 ], [ -122.455853391999938, 49.111421802000088 ], [ -122.455562105999945, 49.111704216000085 ], [ -122.455332378999941, 49.112112205000116 ], [ -122.455329021999944, 49.112120979000068 ], [ -122.455064220999986, 49.112810995000039 ], [ -122.454951179999924, 49.113105495000077 ], [ -122.45480840299993, 49.11341531100004 ], [ -122.454629608999966, 49.113658201000078 ], [ -122.454414094999933, 49.113826002000032 ], [ -122.454155105999988, 49.113935492000039 ], [ -122.45358850699999, 49.114053794000057 ], [ -122.45296182099996, 49.114143390000059 ], [ -122.452666941999937, 49.114185557000063 ], [ -122.452430201999917, 49.11421941100015 ], [ -122.45235456599994, 49.11423021100007 ], [ -122.451018757999961, 49.114421198000102 ], [ -122.450243582000013, 49.114531996000053 ], [ -122.449808406999978, 49.114615789 ], [ -122.449554803999902, 49.114707502000044 ], [ -122.449436896999927, 49.114780198000069 ], [ -122.449321727999958, 49.114853002000046 ], [ -122.449174300999942, 49.115025703000086 ], [ -122.449111506999913, 49.115184092000035 ], [ -122.449114930999954, 49.115359232000074 ], [ -122.449157215999932, 49.117510110000083 ], [ -122.449165419999957, 49.117925009000039 ], [ -122.448359504999971, 49.117933235000045 ], [ -122.445125335999961, 49.11796619100005 ], [ -122.443164796999966, 49.117986131000116 ], [ -122.442439108999963, 49.117993511000137 ], [ -122.442001053999959, 49.117997945000063 ], [ -122.440780891, 49.118010330000061 ], [ -122.440081624999948, 49.118017432000038 ], [ -122.438764984000017, 49.118030754000081 ], [ -122.437832821999976, 49.118040187000105 ], [ -122.437037984999961, 49.1180482050001 ], [ -122.432447006, 49.118094512000063 ], [ -122.42934975699994, 49.118125616000036 ], [ -122.426966519999937, 49.118149501000104 ] ], [ [ -122.450173585999934, 49.111580260000068 ], [ -122.45017944199999, 49.111503493000043 ], [ -122.449737190999912, 49.111488888000032 ], [ -122.450011510999957, 49.107892599000124 ], [ -122.450598487999969, 49.107911983000058 ], [ -122.450685746999937, 49.106767712000128 ], [ -122.453240839000031, 49.106852050000043 ], [ -122.45330262799996, 49.106041182000062 ], [ -122.449358436999916, 49.105910966000046 ], [ -122.449190725000037, 49.108109412000083 ], [ -122.448977867999929, 49.108102380000034 ], [ -122.448956830999975, 49.108378116000097 ], [ -122.44851278499999, 49.108363447000045 ], [ -122.448505018999981, 49.108465227000067 ], [ -122.44838802299995, 49.108461362000078 ], [ -122.448338546999977, 49.109109730000064 ], [ -122.44507044599996, 49.109001702000079 ], [ -122.44505212199999, 49.109241608000062 ], [ -122.442812251999896, 49.109167511000045 ], [ -122.442810826999974, 49.109186163000032 ], [ -122.440736084999941, 49.109117486000081 ], [ -122.440666886999963, 49.110022313000059 ], [ -122.435201359999979, 49.109841205000095 ], [ -122.43520231199993, 49.10982878200015 ], [ -122.431226806999931, 49.109696873000082 ], [ -122.43099134699996, 49.112767337000051 ], [ -122.430353913999951, 49.112746173000076 ], [ -122.430287365999945, 49.113613752000063 ], [ -122.430083244999977, 49.113606974000049 ], [ -122.430026206999955, 49.114350504000107 ], [ -122.430936456, 49.114380726000043 ], [ -122.430829884999937, 49.11577022900007 ], [ -122.43087671799999, 49.115771783000064 ], [ -122.430888156000023, 49.115622659000046 ], [ -122.432403861999916, 49.115672967000052 ], [ -122.432411096999957, 49.115578597000059 ], [ -122.432957556999966, 49.115596729000075 ], [ -122.432970381999922, 49.115429410000068 ], [ -122.434057055999958, 49.115465458000095 ], [ -122.434065441999934, 49.115356036000087 ], [ -122.436391563, 49.115433164000052 ], [ -122.436392143, 49.115425592000101 ], [ -122.437790169999914, 49.115471923000072 ], [ -122.43780129299995, 49.115326626000083 ], [ -122.440706076999973, 49.115422831000082 ], [ -122.440714874999941, 49.11530779600006 ], [ -122.440778372999901, 49.115309899000053 ], [ -122.440840515999966, 49.114497397000029 ], [ -122.445996827999949, 49.11466797600005 ], [ -122.446128886999929, 49.112938720000017 ], [ -122.446505550999944, 49.112951171000091 ], [ -122.446616046999964, 49.111504027000116 ], [ -122.44871461799994, 49.111573374000038 ], [ -122.448717761999944, 49.111532178000047 ], [ -122.450173585999934, 49.111580260000068 ] ], [ [ -122.442188448999943, 49.104318117000069 ], [ -122.442226017999971, 49.103826590000082 ], [ -122.439627297999948, 49.103740539000142 ], [ -122.439725018999965, 49.102462919000075 ], [ -122.439544212999962, 49.102456930000073 ], [ -122.439408889999953, 49.104226074000067 ], [ -122.442188448999943, 49.104318117000069 ] ], [ [ -122.437462746999984, 49.094174227000032 ], [ -122.437477995999956, 49.093974955000114 ], [ -122.442941669999968, 49.094155952000072 ], [ -122.442939101999968, 49.094189570000019 ], [ -122.444757896999974, 49.094249760000054 ], [ -122.44496025399998, 49.091599635000073 ], [ -122.443831722000013, 49.091562292000035 ], [ -122.443822793999942, 49.091679189000033 ], [ -122.438676109999946, 49.091508734000094 ], [ -122.438661885999977, 49.09169471400002 ], [ -122.43490775, 49.09157022199999 ], [ -122.434900632, 49.091663205000032 ], [ -122.43042570199999, 49.091514639000117 ], [ -122.430415146999948, 49.09165231300009 ], [ -122.42980758299997, 49.091632127000047 ], [ -122.429784006999952, 49.091939599000142 ], [ -122.429886210999925, 49.091942995000096 ], [ -122.42985639699998, 49.092331808000111 ], [ -122.429934233, 49.092334394000027 ], [ -122.429903976999952, 49.092728993000065 ], [ -122.430171749999914, 49.092737889000034 ], [ -122.430045341999971, 49.094386499000166 ], [ -122.431358772999914, 49.094430125000024 ], [ -122.431372125999957, 49.094255909000026 ], [ -122.432222096999951, 49.094284133000073 ], [ -122.432223491999963, 49.094265930000113 ], [ -122.43556328599999, 49.094376765000042 ], [ -122.435583563999955, 49.094111910000059 ], [ -122.437462746999984, 49.094174227000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4340334", "BldgCostT": "2993334", "sL_LossRatio": "0.790148093687638", "sL_AssetLoss": "38084", "sL_BldgLoss": "30092", "sL_StrLoss": "14514", "sL_NStrLoss": "15578", "sL_ContLoss": "7992", "geom_point": "0101000020E61000003E19EB34F59B5EC0246827DE5C8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.435645773999966, 49.110036158000113 ], [ -122.441111325999941, 49.110217243000079 ], [ -122.440836304999948, 49.113813496000091 ], [ -122.438087309999943, 49.113722452000047 ], [ -122.438036822999933, 49.114382063000029 ], [ -122.432570794999904, 49.114200822000058 ], [ -122.432846456999982, 49.110604592000072 ], [ -122.435595256999989, 49.110695772000028 ], [ -122.435645773999966, 49.110036158000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133191252", "BldgCostT": "90385002", "sL_LossRatio": "0.772614974344139", "sL_AssetLoss": "1299703", "sL_BldgLoss": "1004170", "sL_StrLoss": "499420", "sL_NStrLoss": "504750", "sL_ContLoss": "295533", "geom_point": "0101000020E61000006FCEC133219B5EC09F1BBBC0BC8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.415686013999945, 49.133025596000074 ], [ -122.415632196, 49.128102884000015 ], [ -122.41563041799999, 49.127940869000085 ], [ -122.41562168499999, 49.127140400000016 ], [ -122.415606446999931, 49.125746601000074 ], [ -122.415592588999942, 49.124478439 ], [ -122.415585885, 49.123866511000067 ], [ -122.415565810999937, 49.122796692000108 ], [ -122.415519177999983, 49.120313444000082 ], [ -122.41549589499999, 49.11907559800003 ], [ -122.415412298, 49.118969103000012 ], [ -122.414736085999934, 49.118676202000074 ], [ -122.41372475799993, 49.118444593000028 ], [ -122.413699406999953, 49.118438799000046 ], [ -122.41333729899999, 49.118429882000036 ], [ -122.412187452999959, 49.118401571000078 ], [ -122.41164129699996, 49.118388107000094 ], [ -122.4111626, 49.11832439500008 ], [ -122.410704505999945, 49.118223496000041 ], [ -122.41018001899999, 49.118060007000075 ], [ -122.40951000499993, 49.117723905000034 ], [ -122.409394583999983, 49.117679266000067 ], [ -122.408609297999973, 49.117375587000055 ], [ -122.408394243999979, 49.117326842000061 ], [ -122.407783910999953, 49.117188494000111 ], [ -122.40613910099998, 49.116880211000129 ], [ -122.406045696999982, 49.116862702000034 ], [ -122.405492441999982, 49.116809678000052 ], [ -122.405395604999981, 49.116800413000085 ], [ -122.405135822999938, 49.116814305000077 ], [ -122.404306003999963, 49.116858681000082 ], [ -122.404217109999976, 49.115668603000067 ], [ -122.404224257999928, 49.114291248000022 ], [ -122.404228882999959, 49.113391742000104 ], [ -122.404239653, 49.111313627000087 ], [ -122.404252132999915, 49.108902913000037 ], [ -122.404256114999953, 49.108129380000015 ], [ -122.404258178999925, 49.10772620300002 ], [ -122.404271538000017, 49.104810086000043 ], [ -122.404275299999952, 49.103994218 ], [ -122.404246703999974, 49.101229516000089 ], [ -122.404246582999932, 49.101219069000095 ], [ -122.40423797499993, 49.100383940000036 ], [ -122.404233964999918, 49.099997601000098 ], [ -122.404218814, 49.098531165000118 ], [ -122.404200103999955, 49.096722988000067 ], [ -122.408717439999975, 49.096696478000098 ], [ -122.411524820999929, 49.096679887000036 ], [ -122.412265302999941, 49.096675493000177 ], [ -122.413689872999953, 49.096667027000102 ], [ -122.415343201000013, 49.096657189000055 ], [ -122.41798140399996, 49.096630707000102 ], [ -122.418622294999977, 49.096631735000145 ], [ -122.420767981999973, 49.096635192000051 ], [ -122.426403909999948, 49.096628092000081 ], [ -122.426501595999966, 49.100002825000026 ], [ -122.426522810999955, 49.100735105000105 ], [ -122.4265256569999, 49.100874317000063 ], [ -122.426529992999946, 49.101086810000027 ], [ -122.43046609699999, 49.10076700399999 ], [ -122.434059382, 49.100433803000072 ], [ -122.43542989800001, 49.100368290000027 ], [ -122.437005996999957, 49.100443092000042 ], [ -122.437633676999965, 49.100508999000098 ], [ -122.437589014999929, 49.103418908000044 ], [ -122.437593404999987, 49.103648910000132 ], [ -122.437618588999939, 49.104911612000159 ], [ -122.437746985999979, 49.105668494000042 ], [ -122.437738489999973, 49.107103200000061 ], [ -122.432381063999983, 49.107219237000109 ], [ -122.430887492999958, 49.10725155900014 ], [ -122.430159300999975, 49.107267304000132 ], [ -122.429748131999986, 49.10727048800004 ], [ -122.428076478999955, 49.107283481000074 ], [ -122.426708192999953, 49.107294110000055 ], [ -122.426813922999912, 49.110966101000074 ], [ -122.426864817999942, 49.113362873000106 ], [ -122.426877238999921, 49.113947573000118 ], [ -122.426891551999958, 49.114621968000058 ], [ -122.426892545, 49.114668931000054 ], [ -122.426908935999947, 49.115440091000025 ], [ -122.426966519999937, 49.118149501000104 ], [ -122.42934975699994, 49.118125616000036 ], [ -122.432447006, 49.118094512000063 ], [ -122.437037984999961, 49.1180482050001 ], [ -122.437832821999976, 49.118040187000105 ], [ -122.438764984000017, 49.118030754000081 ], [ -122.440081624999948, 49.118017432000038 ], [ -122.440780891, 49.118010330000061 ], [ -122.442001053999959, 49.117997945000063 ], [ -122.442439108999963, 49.117993511000137 ], [ -122.443164796999966, 49.117986131000116 ], [ -122.445125335999961, 49.11796619100005 ], [ -122.448359504999971, 49.117933235000045 ], [ -122.449165419999957, 49.117925009000039 ], [ -122.449200617999949, 49.118950232000074 ], [ -122.449218230999946, 49.119462884000029 ], [ -122.449242330999965, 49.120164820000049 ], [ -122.449266128999952, 49.120857762000085 ], [ -122.449288375999956, 49.121505517000038 ], [ -122.449306606999954, 49.122036401000052 ], [ -122.449330384999953, 49.122728542000104 ], [ -122.4493494929999, 49.123285595000013 ], [ -122.449392195999934, 49.12452767000012 ], [ -122.449403013999955, 49.124842831000088 ], [ -122.449429251999945, 49.125607425000041 ], [ -122.449519701, 49.128239702000066 ], [ -122.449570780999949, 49.130015846000042 ], [ -122.449583729999972, 49.130465844000064 ], [ -122.44959146799999, 49.130735564000105 ], [ -122.449639688999966, 49.132412192000082 ], [ -122.449544594, 49.132437902000071 ], [ -122.448308208999919, 49.132458401000036 ], [ -122.446772439999947, 49.132483802000067 ], [ -122.445524283999973, 49.132504467000075 ], [ -122.444112187999934, 49.13252779200009 ], [ -122.442864941000025, 49.132548401000022 ], [ -122.442727971999915, 49.132550659000081 ], [ -122.442083339999911, 49.132561290000119 ], [ -122.438419779999919, 49.13262171600006 ], [ -122.435570362999925, 49.132668271000092 ], [ -122.433047942999963, 49.132709435000017 ], [ -122.427304696999954, 49.132802890000086 ], [ -122.415686013999945, 49.133025596000074 ] ], [ [ -122.423457879999916, 49.131341410000104 ], [ -122.423557448999986, 49.130046325000116 ], [ -122.423918848999961, 49.130058342000027 ], [ -122.423942047999944, 49.129756546000102 ], [ -122.423210894999954, 49.129732232000059 ], [ -122.423462479999941, 49.126459895000089 ], [ -122.422540372999919, 49.126429223000116 ], [ -122.422722864999983, 49.124055874000092 ], [ -122.419359692999976, 49.12394393700005 ], [ -122.419213796999898, 49.125839583000115 ], [ -122.419073765999926, 49.125834920000031 ], [ -122.418997650999955, 49.126823780000031 ], [ -122.419513742, 49.126840964000053 ], [ -122.4194455799999, 49.127726616000096 ], [ -122.419996381999965, 49.127744953000082 ], [ -122.419723600999944, 49.131289393000031 ], [ -122.420511835999974, 49.131315631000078 ], [ -122.42051600500001, 49.131261456000118 ], [ -122.422695740000023, 49.131333980000079 ], [ -122.422697113999931, 49.131316108000121 ], [ -122.423457879999916, 49.131341410000104 ] ], [ [ -122.434501343999941, 49.124414957000049 ], [ -122.434225726999927, 49.128011114000067 ], [ -122.430745490999968, 49.127895664000086 ], [ -122.430585616, 49.129979360000043 ], [ -122.43092631899998, 49.129990667000101 ], [ -122.430911115999976, 49.130188824000093 ], [ -122.432490475999927, 49.130241226000045 ], [ -122.43247114699993, 49.130493287000029 ], [ -122.433243565999973, 49.130518906000091 ], [ -122.433198305999937, 49.131109181000063 ], [ -122.434570684999954, 49.131154686000109 ], [ -122.434634182999901, 49.130326193000045 ], [ -122.436051142999972, 49.13037315800009 ], [ -122.43609615499993, 49.129785627000039 ], [ -122.441564025999952, 49.129966684000102 ], [ -122.441543603999889, 49.130233676000053 ], [ -122.441545170999973, 49.130233728000078 ], [ -122.441632369999965, 49.12909375800006 ], [ -122.44595313799999, 49.129236634000073 ], [ -122.446073130999977, 49.127665936000071 ], [ -122.445346735000015, 49.127641929000035 ], [ -122.445621488999961, 49.124045741000081 ], [ -122.44602096199999, 49.124058944000048 ], [ -122.446038696999906, 49.123826767000025 ], [ -122.444830353999961, 49.123786824000085 ], [ -122.445091054999949, 49.120374782000042 ], [ -122.442744590999965, 49.120297178000101 ], [ -122.442746781999958, 49.120268513000099 ], [ -122.440028098999932, 49.120178536000097 ], [ -122.439990152999925, 49.120674497000046 ], [ -122.437660224999888, 49.120597329000134 ], [ -122.437652558999957, 49.12069745400003 ], [ -122.432185791999956, 49.120516195000043 ], [ -122.432218202999962, 49.120093499000049 ], [ -122.430548410000014, 49.12003808 ], [ -122.4305326, 49.120244185000104 ], [ -122.430597829999982, 49.120246350000102 ], [ -122.430475915, 49.121835537000074 ], [ -122.43066012599995, 49.121841653000075 ], [ -122.430581941999975, 49.122860797000044 ], [ -122.431393562999943, 49.122887736000081 ], [ -122.431342484, 49.123553694000094 ], [ -122.431440202999951, 49.123556936000064 ], [ -122.431382326999966, 49.124311493 ], [ -122.434501343999941, 49.124414957000049 ] ], [ [ -122.422791552999925, 49.120452811000092 ], [ -122.422805144999955, 49.120276015000101 ], [ -122.42181052799999, 49.120242920000038 ], [ -122.421811692999967, 49.120227778000043 ], [ -122.421058201999955, 49.120202700000021 ], [ -122.4211134439999, 49.119484503000095 ], [ -122.420340822999933, 49.119458783000063 ], [ -122.420535254999919, 49.116931290000053 ], [ -122.41922660799996, 49.116887713000018 ], [ -122.41911009599994, 49.118401773000123 ], [ -122.420249697999964, 49.118439722000119 ], [ -122.420101707999976, 49.120363287000025 ], [ -122.422791552999925, 49.120452811000092 ] ], [ [ -122.447055678999959, 49.129857238000049 ], [ -122.446958135999964, 49.131134350000146 ], [ -122.447033498999957, 49.13113684000006 ], [ -122.446972789999947, 49.131931672000086 ], [ -122.448587527999919, 49.131985003000089 ], [ -122.448684515999943, 49.130714591000029 ], [ -122.447382021999942, 49.130671575000065 ], [ -122.447443233999934, 49.12987004000005 ], [ -122.447055678999959, 49.129857238000049 ] ], [ [ -122.408077981999924, 49.115487618000074 ], [ -122.408094299999959, 49.11527621000004 ], [ -122.408937727999927, 49.115304386000062 ], [ -122.408993702999936, 49.114579030000051 ], [ -122.412627971999953, 49.114700361000132 ], [ -122.41272021099999, 49.113503816000097 ], [ -122.41383860599997, 49.113541129000069 ], [ -122.413965049999916, 49.111900241000086 ], [ -122.414898087999916, 49.111931361000067 ], [ -122.414900912999911, 49.111894680000056 ], [ -122.413979056999921, 49.111863932000084 ], [ -122.414072799999971, 49.110647321000066 ], [ -122.410327462999973, 49.110522319000026 ], [ -122.410264226999971, 49.111342140000062 ], [ -122.40802339699998, 49.111267289000047 ], [ -122.407764507999957, 49.114621292000052 ], [ -122.407714582999986, 49.114619624000063 ], [ -122.407650034999932, 49.115455770000089 ], [ -122.408047163, 49.115469039000068 ], [ -122.408045810999965, 49.115486543000053 ], [ -122.408077981999924, 49.115487618000074 ] ], [ [ -122.423628953999938, 49.114954955000044 ], [ -122.423557491999972, 49.115884784000109 ], [ -122.42364353899994, 49.115887647000072 ], [ -122.423648838999938, 49.115818686000075 ], [ -122.423842060999959, 49.115825114000074 ], [ -122.423908216999934, 49.114964245000074 ], [ -122.423628953999938, 49.114954955000044 ] ], [ [ -122.41839685399998, 49.104893834000066 ], [ -122.418488532999973, 49.10370236400005 ], [ -122.418499430999958, 49.103560726000033 ], [ -122.419329045, 49.103588367000029 ], [ -122.419371223999974, 49.103040046000103 ], [ -122.421917111999917, 49.10312483000007 ], [ -122.422193105999938, 49.099534103000032 ], [ -122.42307027899993, 49.099563301000025 ], [ -122.423083324999965, 49.099393501000058 ], [ -122.42296025499995, 49.099389405000089 ], [ -122.423003743999971, 49.098823438000068 ], [ -122.421737691999965, 49.098781291000101 ], [ -122.421725400999932, 49.098941201000116 ], [ -122.420252974999983, 49.098892165000038 ], [ -122.420211765999923, 49.099428036000056 ], [ -122.417294874999982, 49.099330836000021 ], [ -122.417254471999968, 49.099855806000051 ], [ -122.411790227999916, 49.099673506000073 ], [ -122.411844360999936, 49.098971222000024 ], [ -122.40940188899998, 49.098889645000064 ], [ -122.409409432999922, 49.098791833000099 ], [ -122.40871460599999, 49.098768616000079 ], [ -122.408524393, 49.10123411200005 ], [ -122.405782856999934, 49.101142463000066 ], [ -122.405746212999986, 49.101617052000051 ], [ -122.407790820999949, 49.101685410000115 ], [ -122.4077508, 49.102204004 ], [ -122.408070944, 49.102214704000097 ], [ -122.407939412999895, 49.103919160000082 ], [ -122.40789621799999, 49.104478884000066 ], [ -122.409096246999951, 49.104518982000023 ], [ -122.40904138399999, 49.10523012800008 ], [ -122.413335980999975, 49.105373521000068 ], [ -122.413345844999981, 49.105245506000067 ], [ -122.415063743999951, 49.105302818000091 ], [ -122.415103699999946, 49.104784048000091 ], [ -122.41839685399998, 49.104893834000066 ] ], [ [ -122.429841675999953, 49.103260239000114 ], [ -122.429821708999938, 49.103520544000062 ], [ -122.430227312999961, 49.103534016000062 ], [ -122.430139646999947, 49.10467710100005 ], [ -122.430323779999966, 49.104683216000041 ], [ -122.430303384999959, 49.104949153000106 ], [ -122.431059421999947, 49.104974259000102 ], [ -122.431072550999943, 49.104803034000078 ], [ -122.431675361999922, 49.10482304700011 ], [ -122.431684231999952, 49.104707347000101 ], [ -122.435245918999954, 49.104825531000124 ], [ -122.435255964999911, 49.104694348000059 ], [ -122.432896097999901, 49.104616057000094 ], [ -122.43299198299998, 49.103364836000033 ], [ -122.429841675999953, 49.103260239000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134908707", "BldgCostT": "89534714", "sL_LossRatio": "0.821387418882207", "sL_AssetLoss": "664774", "sL_BldgLoss": "546037", "sL_StrLoss": "325849", "sL_NStrLoss": "220188", "sL_ContLoss": "118737", "geom_point": "0101000020E610000094E03FA355995EC0B5321B43048D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.382220602999965, 49.118614494000084 ], [ -122.382175704999938, 49.115577934000058 ], [ -122.38217169099994, 49.115308144000068 ], [ -122.382169483999988, 49.115158237000038 ], [ -122.382168775, 49.115110122000026 ], [ -122.382139760999948, 49.113149424 ], [ -122.382121275999978, 49.111898860000039 ], [ -122.382117146, 49.111619900000029 ], [ -122.382112192999955, 49.111285390000056 ], [ -122.382093814999962, 49.110059803000077 ], [ -122.38208730099997, 49.109595917000085 ], [ -122.382081354999983, 49.109173063000085 ], [ -122.38206866899999, 49.108267889000075 ], [ -122.38206141, 49.107634567000041 ], [ -122.38206057499994, 49.10756262500005 ], [ -122.382019299999953, 49.103969391000099 ], [ -122.380036902999962, 49.103982785000049 ], [ -122.377940739999957, 49.10399690000002 ], [ -122.377255392, 49.104001508000096 ], [ -122.376625307999944, 49.104005748000105 ], [ -122.375296921999976, 49.104014657000072 ], [ -122.372900293999976, 49.10403069200003 ], [ -122.372215312999913, 49.103944493000036 ], [ -122.37158797799999, 49.103769194000101 ], [ -122.37101561599998, 49.103556 ], [ -122.370930303999941, 49.103543213000123 ], [ -122.370945840999966, 49.100000654000119 ], [ -122.370956325999913, 49.097607779000029 ], [ -122.370960479999923, 49.096655694000091 ], [ -122.372142883999956, 49.096657546000095 ], [ -122.373923822999956, 49.096660310000118 ], [ -122.376635944999919, 49.096664467000018 ], [ -122.37749897599997, 49.096665785000063 ], [ -122.381128920999913, 49.096671182000115 ], [ -122.382015321999916, 49.096672500000118 ], [ -122.382015382999924, 49.096542949000074 ], [ -122.382017073999933, 49.094087184000088 ], [ -122.382017076999944, 49.094060182000106 ], [ -122.382017981999951, 49.092719795000015 ], [ -122.382018497999937, 49.091960902000054 ], [ -122.382099313999902, 49.091220461000084 ], [ -122.38212683099999, 49.090968603000057 ], [ -122.382137416999953, 49.090871497000109 ], [ -122.382303726999936, 49.090019045000076 ], [ -122.382417297999922, 49.089436892 ], [ -122.383355790999957, 49.089436105000047 ], [ -122.383725581999897, 49.08943578500002 ], [ -122.384574711999932, 49.089435046000055 ], [ -122.387067420999941, 49.08943281900013 ], [ -122.388177133999932, 49.08943184300005 ], [ -122.38972524399999, 49.089430412000063 ], [ -122.396353770999966, 49.089424120000103 ], [ -122.398052255999943, 49.089422425000059 ], [ -122.39859997, 49.089421883000099 ], [ -122.399997162999924, 49.089420462000128 ], [ -122.400161504, 49.089420302000114 ], [ -122.40068191499995, 49.089419755000023 ], [ -122.401243440999963, 49.089419198000073 ], [ -122.402174596999927, 49.089418216000098 ], [ -122.4032293, 49.089417132000086 ], [ -122.404113921999951, 49.089416197000041 ], [ -122.41300861799999, 49.08941829300003 ], [ -122.413652454999962, 49.089418422000044 ], [ -122.414104502999947, 49.089418503000033 ], [ -122.415222617999945, 49.089418688000094 ], [ -122.416186462999988, 49.089415283000093 ], [ -122.420594406999939, 49.089399500000084 ], [ -122.421912137999939, 49.089399048000054 ], [ -122.422391500999936, 49.089398870000089 ], [ -122.426194782999971, 49.089397492000089 ], [ -122.426222333999959, 49.090349825000025 ], [ -122.426225710999944, 49.090466682000176 ], [ -122.426231694999927, 49.090673239000111 ], [ -122.426236376999924, 49.090835061000021 ], [ -122.426249403000014, 49.09128531700005 ], [ -122.42627097099999, 49.092031764000133 ], [ -122.426296220999973, 49.092905024000068 ], [ -122.42634823899999, 49.094703836000072 ], [ -122.42636152599998, 49.095162820000027 ], [ -122.426367489999947, 49.095369853000093 ], [ -122.426403909999948, 49.096628092000081 ], [ -122.420767981999973, 49.096635192000051 ], [ -122.418622294999977, 49.096631735000145 ], [ -122.41798140399996, 49.096630707000102 ], [ -122.415343201000013, 49.096657189000055 ], [ -122.413689872999953, 49.096667027000102 ], [ -122.412265302999941, 49.096675493000177 ], [ -122.411524820999929, 49.096679887000036 ], [ -122.408717439999975, 49.096696478000098 ], [ -122.404200103999955, 49.096722988000067 ], [ -122.404218814, 49.098531165000118 ], [ -122.404233964999918, 49.099997601000098 ], [ -122.40423797499993, 49.100383940000036 ], [ -122.404246582999932, 49.101219069000095 ], [ -122.404246703999974, 49.101229516000089 ], [ -122.404275299999952, 49.103994218 ], [ -122.404271538000017, 49.104810086000043 ], [ -122.404258178999925, 49.10772620300002 ], [ -122.404256114999953, 49.108129380000015 ], [ -122.404252132999915, 49.108902913000037 ], [ -122.404239653, 49.111313627000087 ], [ -122.404228882999959, 49.113391742000104 ], [ -122.404224257999928, 49.114291248000022 ], [ -122.404217109999976, 49.115668603000067 ], [ -122.404306003999963, 49.116858681000082 ], [ -122.404147799, 49.116866886000025 ], [ -122.401613649999945, 49.117526731000098 ], [ -122.40139330699995, 49.11758410200008 ], [ -122.401154982999969, 49.11762915900011 ], [ -122.400605032999948, 49.117733110000088 ], [ -122.400120987999941, 49.117824585000093 ], [ -122.40002078199997, 49.117865613000063 ], [ -122.399707921999962, 49.117993688000034 ], [ -122.39934072799997, 49.118245839000082 ], [ -122.398845484, 49.118585906000092 ], [ -122.396246894999962, 49.118590553000104 ], [ -122.39587678, 49.118591176000045 ], [ -122.392984645999974, 49.11859627100003 ], [ -122.392367818999972, 49.118597343000033 ], [ -122.392093922999948, 49.118597819000108 ], [ -122.382220602999965, 49.118614494000084 ] ], [ [ -122.387771753, 49.116449507000077 ], [ -122.387780664999937, 49.116334723000136 ], [ -122.392725650999978, 49.116500754000107 ], [ -122.392817116999979, 49.115320841000027 ], [ -122.398283121999938, 49.115504100000067 ], [ -122.398185088999981, 49.116770636000098 ], [ -122.40031356399993, 49.116841922000077 ], [ -122.400424166999926, 49.115412135000092 ], [ -122.399767417999939, 49.115390144000031 ], [ -122.399925155999981, 49.113351226000113 ], [ -122.39972274199999, 49.113344448000099 ], [ -122.399759541999956, 49.112868786000043 ], [ -122.396036713999962, 49.112744045000021 ], [ -122.396035927999918, 49.112754179000035 ], [ -122.395121853999939, 49.112723532000096 ], [ -122.395022955999963, 49.114000201000053 ], [ -122.38955714199993, 49.113816775000089 ], [ -122.389565380999898, 49.113710572000137 ], [ -122.386012145, 49.113591181000082 ], [ -122.385815763999986, 49.116119761000078 ], [ -122.386807882999904, 49.116153108000091 ], [ -122.386783705999932, 49.116464466000139 ], [ -122.386901865999931, 49.116468437000037 ], [ -122.386905595999963, 49.116420402000109 ], [ -122.387771753, 49.116449507000077 ] ], [ [ -122.393117232999941, 49.109050804000063 ], [ -122.393212118999969, 49.107826429000042 ], [ -122.39867724399997, 49.108009670000108 ], [ -122.398653031999984, 49.108322587000131 ], [ -122.399365439999954, 49.108346452000099 ], [ -122.399304705999953, 49.109131495000028 ], [ -122.400956932999947, 49.109186827000066 ], [ -122.401142254999954, 49.106790217 ], [ -122.401812147999976, 49.106812644000051 ], [ -122.401838808999941, 49.106467783000056 ], [ -122.397707702000034, 49.106329412000015 ], [ -122.397711862999955, 49.106275661000033 ], [ -122.395130970999986, 49.106189134000076 ], [ -122.395084856999915, 49.106784520000126 ], [ -122.392522161, 49.106698542000082 ], [ -122.392499564, 49.106990082000038 ], [ -122.388357906999943, 49.106851 ], [ -122.388314120999922, 49.107415270000068 ], [ -122.391999760999937, 49.107539047000053 ], [ -122.391885768999899, 49.109009475000072 ], [ -122.393117232999941, 49.109050804000063 ] ], [ [ -122.387078818999953, 49.106236641000059 ], [ -122.387087242999954, 49.106128136000038 ], [ -122.386097360999941, 49.10609485800007 ], [ -122.386088936999926, 49.106203363000063 ], [ -122.387078818999953, 49.106236641000059 ] ], [ [ -122.400254371999921, 49.101788955000103 ], [ -122.400283412999954, 49.10141343100009 ], [ -122.396623872999953, 49.101290797000097 ], [ -122.396902231999945, 49.097694588000131 ], [ -122.400364481999986, 49.097810615000135 ], [ -122.400611554999969, 49.094615069000099 ], [ -122.400809375999941, 49.094621695000036 ], [ -122.400847826999922, 49.094124319000045 ], [ -122.400232647999971, 49.094103713000024 ], [ -122.40029811199993, 49.093257033000043 ], [ -122.397833816999977, 49.093174451000039 ], [ -122.397914596999925, 49.092130355000045 ], [ -122.393620748999979, 49.09198632699999 ], [ -122.393570109, 49.092640098000103 ], [ -122.388106804999936, 49.092456593000101 ], [ -122.388146444999947, 49.09194561900005 ], [ -122.387584748999956, 49.091926737000101 ], [ -122.387435726999954, 49.093847342000075 ], [ -122.387080568, 49.093835402000089 ], [ -122.38692401900002, 49.095852649000086 ], [ -122.386309549999964, 49.095831987000075 ], [ -122.386286147999954, 49.096133455000114 ], [ -122.387918209999953, 49.096188326000053 ], [ -122.387639164999968, 49.09978452000005 ], [ -122.387536838999921, 49.099781080000128 ], [ -122.387452555999914, 49.100867137000122 ], [ -122.388826568999946, 49.100913314000074 ], [ -122.388814461999928, 49.101069374000126 ], [ -122.39225796, 49.101185023000113 ], [ -122.39222865799999, 49.101563091000081 ], [ -122.393548537999905, 49.101607390000062 ], [ -122.393481106999928, 49.102477714000024 ], [ -122.394201794999958, 49.102501895000088 ], [ -122.394205176999961, 49.102458237000086 ], [ -122.394219164999981, 49.102458706000057 ], [ -122.394283919999907, 49.101622737000071 ], [ -122.397128684000023, 49.101718139000113 ], [ -122.397131301999977, 49.10168430600001 ], [ -122.400254371999921, 49.101788955000103 ] ], [ [ -122.378588033999989, 49.101035167000092 ], [ -122.37868431, 49.099797631000072 ], [ -122.378401899, 49.099788115000109 ], [ -122.378458754999954, 49.099057302000048 ], [ -122.376585590999966, 49.098994162000018 ], [ -122.376581975999954, 49.099040589000069 ], [ -122.374299493999928, 49.09896360700008 ], [ -122.374298713, 49.098973635000029 ], [ -122.374727065999977, 49.098988086000126 ], [ -122.374599789999976, 49.100622348000073 ], [ -122.375715031999917, 49.100659964000094 ], [ -122.375693417000022, 49.100937590000122 ], [ -122.378588033999989, 49.101035167000092 ] ], [ [ -122.407907502999947, 49.09173018000012 ], [ -122.407700824999921, 49.094408933000111 ], [ -122.410430409999947, 49.094500148000037 ], [ -122.410445871999954, 49.094299604000057 ], [ -122.412403293999972, 49.09436497300004 ], [ -122.412405090999954, 49.094341652000097 ], [ -122.414294960999968, 49.094404731000033 ], [ -122.41429731199996, 49.094374198000061 ], [ -122.414653654999967, 49.094386088000107 ], [ -122.41465940399992, 49.094311443000052 ], [ -122.412801799999926, 49.094249448000021 ], [ -122.412908574999932, 49.09286361400013 ], [ -122.41287078799999, 49.092862353000015 ], [ -122.412924249999946, 49.092168443000084 ], [ -122.412819728999978, 49.092164953000079 ], [ -122.412923464999949, 49.090818469000062 ], [ -122.410262122999981, 49.090729589000027 ], [ -122.41026682799999, 49.09066856600009 ], [ -122.410139752999939, 49.090664321000098 ], [ -122.410060523999974, 49.091691903 ], [ -122.407452436999932, 49.091604735000061 ], [ -122.40744395199998, 49.091714683000106 ], [ -122.407907502999947, 49.09173018000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.769037656903766", "sL_AssetLoss": "11950", "sL_BldgLoss": "9190", "sL_StrLoss": "4890", "sL_NStrLoss": "4300", "sL_ContLoss": "2760", "geom_point": "0101000020E610000019ED0AE09A9C5EC09539A7A32D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.441186979999912, 49.164524235000073 ], [ -122.441222382999939, 49.164061831000026 ], [ -122.444018520999947, 49.164442091000083 ], [ -122.446120199999939, 49.164809796000071 ], [ -122.448491509999883, 49.165275701000041 ], [ -122.449458189999987, 49.165494099000064 ], [ -122.45067310499999, 49.165850657000156 ], [ -122.45111214299996, 49.16597945600008 ], [ -122.452737992999957, 49.166623738000098 ], [ -122.449548497999942, 49.166518579000098 ], [ -122.447507302999924, 49.166158695000043 ], [ -122.446152308999942, 49.165828297000076 ], [ -122.44456831699992, 49.165252903000095 ], [ -122.442873591999955, 49.164777298000047 ], [ -122.441654485999919, 49.164646194000078 ], [ -122.441186979999912, 49.164524235000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.820187534473249", "sL_AssetLoss": "18130", "sL_BldgLoss": "14870", "sL_StrLoss": "8050", "sL_NStrLoss": "6820", "sL_ContLoss": "3260", "geom_point": "0101000020E610000016BEDFE44E975EC0EEA98359748D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.360278522999977, 49.106467213000087 ], [ -122.360305844999985, 49.10611782200003 ], [ -122.359798020999946, 49.106100626000071 ], [ -122.359898336999947, 49.104504020000064 ], [ -122.359953730999948, 49.103961335000108 ], [ -122.360157186, 49.103982990000056 ], [ -122.36128170299996, 49.103985655000045 ], [ -122.367529033999972, 49.104000172000092 ], [ -122.368942485999938, 49.104003403000029 ], [ -122.369313409999961, 49.103955605000102 ], [ -122.369491821999972, 49.103895873000049 ], [ -122.370009994999918, 49.10534430900001 ], [ -122.368000931999973, 49.105276437000065 ], [ -122.367986484999903, 49.105461577000085 ], [ -122.365841979999985, 49.105389089000077 ], [ -122.365743359999925, 49.106652127000096 ], [ -122.360278522999977, 49.106467213000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104095666", "BldgCostT": "70261666", "sL_LossRatio": "0.755572916057099", "sL_AssetLoss": "1025316", "sL_BldgLoss": "774701", "sL_StrLoss": "399415", "sL_NStrLoss": "375286", "sL_ContLoss": "250615", "geom_point": "0101000020E61000001C2564F74F995EC0E1A62F1981904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.410469870999947, 49.15549671800008 ], [ -122.410475187999978, 49.155427871000043 ], [ -122.410318580999913, 49.155422647000066 ], [ -122.40617748499993, 49.153395003000114 ], [ -122.405057262999961, 49.15272164800011 ], [ -122.40507317299992, 49.15251587000003 ], [ -122.404693848999969, 49.152503197000037 ], [ -122.403386492999971, 49.151717308000045 ], [ -122.40119750099997, 49.150086494000064 ], [ -122.400464786999933, 49.149417200000059 ], [ -122.39911809799996, 49.148636698000082 ], [ -122.398944882999956, 49.148457912000062 ], [ -122.39899555599996, 49.147803585000084 ], [ -122.401276561999964, 49.147879906000092 ], [ -122.401436109999963, 49.145818270000106 ], [ -122.400073153999969, 49.145772672000064 ], [ -122.400281201000027, 49.143085100000071 ], [ -122.395791272999958, 49.142934766000089 ], [ -122.395793675999954, 49.142903756000067 ], [ -122.395033493999961, 49.142878284000055 ], [ -122.393551177999939, 49.140763692000114 ], [ -122.393192176999946, 49.140166506000128 ], [ -122.393266067999932, 49.139213722000115 ], [ -122.393585595999966, 49.139224435000123 ], [ -122.393617675999948, 49.138810729000035 ], [ -122.393838419999966, 49.138818130000054 ], [ -122.3938725899999, 49.138377434000077 ], [ -122.395864392999954, 49.138444190000058 ], [ -122.39589612599994, 49.138034681000072 ], [ -122.396834497999976, 49.138066119000023 ], [ -122.397057337999954, 49.135189501000099 ], [ -122.397943540999933, 49.135219183000046 ], [ -122.398036164, 49.134023122000059 ], [ -122.399712521, 49.134079249000095 ], [ -122.399752318999973, 49.133565061000056 ], [ -122.400028735999953, 49.133574313000075 ], [ -122.400078442, 49.132932067000056 ], [ -122.400625186999974, 49.132950367000078 ], [ -122.40067265, 49.13233698100008 ], [ -122.401174675999954, 49.132353780000059 ], [ -122.401297012999947, 49.13077249100013 ], [ -122.404856921999965, 49.13089155200008 ], [ -122.404886279999957, 49.130511677000065 ], [ -122.410314261999957, 49.130692987000067 ], [ -122.410325757999956, 49.13054400700004 ], [ -122.411675233999944, 49.130589041000043 ], [ -122.411786873999944, 49.129141725000068 ], [ -122.410422463999964, 49.129096193000116 ], [ -122.410622025999956, 49.126509781000046 ], [ -122.40800785199994, 49.126422493000121 ], [ -122.407977596999942, 49.126814352000032 ], [ -122.407455561999967, 49.126796913000085 ], [ -122.40742529399995, 49.12718886300005 ], [ -122.406550861999932, 49.127159648000045 ], [ -122.406547259999968, 49.127206284000096 ], [ -122.404868257999965, 49.127150166000028 ], [ -122.404854297999933, 49.127330825000087 ], [ -122.399386879999952, 49.127147904000054 ], [ -122.399533439999956, 49.12525417800002 ], [ -122.394534329999956, 49.125086679000042 ], [ -122.394665344999979, 49.123396042000138 ], [ -122.393890710999955, 49.123370066000113 ], [ -122.394068249999975, 49.121079367000036 ], [ -122.393063023999929, 49.12104565100001 ], [ -122.39308123299999, 49.120810767000116 ], [ -122.39113459, 49.120745448 ], [ -122.391113288999946, 49.121020075000068 ], [ -122.389880905999959, 49.120978703000048 ], [ -122.389868544999914, 49.121138004000017 ], [ -122.385379221999955, 49.120987179000053 ], [ -122.385316469999978, 49.121794911000038 ], [ -122.386129555999943, 49.121822241000054 ], [ -122.385994786999944, 49.123557269000067 ], [ -122.386758341999936, 49.123582929000058 ], [ -122.386668583999921, 49.124738656000027 ], [ -122.387140801999976, 49.124754522000046 ], [ -122.387060964999932, 49.125782578000091 ], [ -122.388142128999945, 49.125818898000034 ], [ -122.388083993999942, 49.126567699000084 ], [ -122.389165473999924, 49.126573425000061 ], [ -122.389162157999948, 49.12684327200008 ], [ -122.389984519, 49.126847621000046 ], [ -122.389974586999983, 49.127657162000048 ], [ -122.38800021899999, 49.127646714000086 ], [ -122.387908952999979, 49.128822140000068 ], [ -122.38949706899993, 49.12887546900005 ], [ -122.389487099999926, 49.129003909000119 ], [ -122.389958033999932, 49.129006398000044 ], [ -122.389957610999957, 49.129040898000056 ], [ -122.395166280999931, 49.129215620000053 ], [ -122.394887598999929, 49.132811649000089 ], [ -122.391445997999952, 49.13269623200005 ], [ -122.391305647999943, 49.134505330000067 ], [ -122.387860368999895, 49.134389680000012 ], [ -122.387247101999961, 49.133803589000088 ], [ -122.386841417999946, 49.133342108000122 ], [ -122.386013792999947, 49.132654193000036 ], [ -122.385212005999946, 49.132137195000041 ], [ -122.383823661999884, 49.131340099000113 ], [ -122.383891517999956, 49.130467224000036 ], [ -122.382127993999987, 49.130407913000091 ], [ -122.381003212999985, 49.129848494000051 ], [ -122.380562344999959, 49.129688322000042 ], [ -122.38060219, 49.129176212000019 ], [ -122.379515353999949, 49.129139628000111 ], [ -122.378946725999953, 49.128793205000051 ], [ -122.378918750999944, 49.128778927000013 ], [ -122.379172202999925, 49.125522642000163 ], [ -122.381121155999949, 49.12558824900006 ], [ -122.381146681999979, 49.125260101000109 ], [ -122.380383100999921, 49.125234400000103 ], [ -122.380506593999925, 49.123647077000051 ], [ -122.379538316999984, 49.123614480000064 ], [ -122.379519876999922, 49.123851445000042 ], [ -122.379267167999956, 49.123842937000063 ], [ -122.379219397999918, 49.124456751000039 ], [ -122.37746602599999, 49.124397697000035 ], [ -122.37736709099994, 49.125668292000057 ], [ -122.372864221000029, 49.125516503 ], [ -122.372453196999913, 49.125313812000108 ], [ -122.371937897999885, 49.124997686000064 ], [ -122.371973224999962, 49.124544673000088 ], [ -122.371154454999925, 49.124517045000047 ], [ -122.371106782999959, 49.124487799000157 ], [ -122.370880614999976, 49.124372611000105 ], [ -122.371069265999935, 49.121954052000085 ], [ -122.367112549999945, 49.121820439000011 ], [ -122.365840606999939, 49.120965857000023 ], [ -122.36605824400003, 49.118179305000062 ], [ -122.371017430999984, 49.118346808000133 ], [ -122.37117463899996, 49.116331023000022 ], [ -122.376388693999971, 49.116506888000046 ], [ -122.376393820999951, 49.116441048000048 ], [ -122.376739631999925, 49.11645270300005 ], [ -122.37683035, 49.11528759 ], [ -122.375412434999959, 49.115239795000022 ], [ -122.375544966999954, 49.113538242000104 ], [ -122.373317747999977, 49.113463128000092 ], [ -122.373215613999989, 49.114773624000101 ], [ -122.367749793999963, 49.11458909100002 ], [ -122.367960727999957, 49.111886567000084 ], [ -122.367558435999939, 49.111884365000094 ], [ -122.367579016999954, 49.110265283000068 ], [ -122.367990058999936, 49.110267535000077 ], [ -122.367993486, 49.109997687000018 ], [ -122.367582447999979, 49.109995436000084 ], [ -122.36759273699991, 49.109185895000095 ], [ -122.368003769999959, 49.109188147000026 ], [ -122.368007195999937, 49.108918299000102 ], [ -122.36924028599995, 49.108925044000017 ], [ -122.36922660299993, 49.110004432000139 ], [ -122.369637642999948, 49.110006677000058 ], [ -122.369630804999929, 49.110546371000119 ], [ -122.370041849999964, 49.110548615000042 ], [ -122.370069180999963, 49.108389839000068 ], [ -122.370942095999979, 49.108394599000071 ], [ -122.371713284999885, 49.108398799000078 ], [ -122.371696080999982, 49.109761189000032 ], [ -122.374268344999962, 49.109847982000055 ], [ -122.374323011999962, 49.109146278000061 ], [ -122.375757646999944, 49.109194658000057 ], [ -122.37576835699997, 49.109057112000123 ], [ -122.378895505999964, 49.109162503000036 ], [ -122.378903810999958, 49.109055771000079 ], [ -122.377291989999961, 49.109001461000098 ], [ -122.37757188799999, 49.105405345000072 ], [ -122.379925496999945, 49.105484641000089 ], [ -122.379939046999951, 49.10531042500007 ], [ -122.378788902999972, 49.105271681000076 ], [ -122.378780816999949, 49.105375617000099 ], [ -122.376807268999954, 49.105309109000054 ], [ -122.376797938999943, 49.105428965000051 ], [ -122.372042546999936, 49.105268557000073 ], [ -122.37204253799996, 49.105268680000059 ], [ -122.370934215999938, 49.105231264000032 ], [ -122.370930303999941, 49.103543213000123 ], [ -122.37101561599998, 49.103556 ], [ -122.37158797799999, 49.103769194000101 ], [ -122.372215312999913, 49.103944493000036 ], [ -122.372900293999976, 49.10403069200003 ], [ -122.375296921999976, 49.104014657000072 ], [ -122.376625307999944, 49.104005748000105 ], [ -122.377255392, 49.104001508000096 ], [ -122.377940739999957, 49.10399690000002 ], [ -122.380036902999962, 49.103982785000049 ], [ -122.382019299999953, 49.103969391000099 ], [ -122.38206057499994, 49.10756262500005 ], [ -122.38206141, 49.107634567000041 ], [ -122.38206866899999, 49.108267889000075 ], [ -122.382081354999983, 49.109173063000085 ], [ -122.38208730099997, 49.109595917000085 ], [ -122.382093814999962, 49.110059803000077 ], [ -122.382112192999955, 49.111285390000056 ], [ -122.382117146, 49.111619900000029 ], [ -122.382121275999978, 49.111898860000039 ], [ -122.382139760999948, 49.113149424 ], [ -122.382168775, 49.115110122000026 ], [ -122.382169483999988, 49.115158237000038 ], [ -122.38217169099994, 49.115308144000068 ], [ -122.382175704999938, 49.115577934000058 ], [ -122.382220602999965, 49.118614494000084 ], [ -122.392093922999948, 49.118597819000108 ], [ -122.392367818999972, 49.118597343000033 ], [ -122.392984645999974, 49.11859627100003 ], [ -122.39587678, 49.118591176000045 ], [ -122.396246894999962, 49.118590553000104 ], [ -122.398845484, 49.118585906000092 ], [ -122.39934072799997, 49.118245839000082 ], [ -122.399707921999962, 49.117993688000034 ], [ -122.40002078199997, 49.117865613000063 ], [ -122.400120987999941, 49.117824585000093 ], [ -122.400605032999948, 49.117733110000088 ], [ -122.401154982999969, 49.11762915900011 ], [ -122.40139330699995, 49.11758410200008 ], [ -122.401613649999945, 49.117526731000098 ], [ -122.404147799, 49.116866886000025 ], [ -122.404306003999963, 49.116858681000082 ], [ -122.405135822999938, 49.116814305000077 ], [ -122.405395604999981, 49.116800413000085 ], [ -122.405492441999982, 49.116809678000052 ], [ -122.406045696999982, 49.116862702000034 ], [ -122.40613910099998, 49.116880211000129 ], [ -122.407783910999953, 49.117188494000111 ], [ -122.408394243999979, 49.117326842000061 ], [ -122.408609297999973, 49.117375587000055 ], [ -122.409394583999983, 49.117679266000067 ], [ -122.40951000499993, 49.117723905000034 ], [ -122.41018001899999, 49.118060007000075 ], [ -122.410704505999945, 49.118223496000041 ], [ -122.4111626, 49.11832439500008 ], [ -122.41164129699996, 49.118388107000094 ], [ -122.412187452999959, 49.118401571000078 ], [ -122.41333729899999, 49.118429882000036 ], [ -122.413699406999953, 49.118438799000046 ], [ -122.41372475799993, 49.118444593000028 ], [ -122.414736085999934, 49.118676202000074 ], [ -122.415412298, 49.118969103000012 ], [ -122.41549589499999, 49.11907559800003 ], [ -122.415519177999983, 49.120313444000082 ], [ -122.415565810999937, 49.122796692000108 ], [ -122.415585885, 49.123866511000067 ], [ -122.415592588999942, 49.124478439 ], [ -122.415606446999931, 49.125746601000074 ], [ -122.41562168499999, 49.127140400000016 ], [ -122.41563041799999, 49.127940869000085 ], [ -122.415632196, 49.128102884000015 ], [ -122.415686013999945, 49.133025596000074 ], [ -122.414538586999967, 49.133063905000043 ], [ -122.404315716999932, 49.133186799000079 ], [ -122.404368380999983, 49.135298875000018 ], [ -122.404390611999986, 49.136189886000096 ], [ -122.404392214000012, 49.136259413000062 ], [ -122.404415687999972, 49.137276098000022 ], [ -122.404448907999964, 49.138715506000075 ], [ -122.404450803999907, 49.138795918000028 ], [ -122.404455046999928, 49.138975514000094 ], [ -122.404488984999901, 49.140414107000034 ], [ -122.404663413999941, 49.144203688000033 ], [ -122.404667115, 49.144582287000098 ], [ -122.404666363999951, 49.145966396000055 ], [ -122.404665758999982, 49.147153850000038 ], [ -122.404665404999918, 49.147795487000039 ], [ -122.405463212999962, 49.147795317000103 ], [ -122.410331538999984, 49.147794173000065 ], [ -122.414403915999983, 49.147793038000046 ], [ -122.41581860399998, 49.147792598000045 ], [ -122.423043164999967, 49.147803882000098 ], [ -122.423619044999938, 49.14780476100001 ], [ -122.42472828299999, 49.147806434000053 ], [ -122.427639197999909, 49.147810806000045 ], [ -122.427708678, 49.148100695000082 ], [ -122.42784205199996, 49.148200205000073 ], [ -122.427851415999925, 49.148207208000024 ], [ -122.428002596999988, 49.148255495000043 ], [ -122.428961714999971, 49.148298191000023 ], [ -122.429598001000016, 49.14836798200006 ], [ -122.430379911999921, 49.14832629000005 ], [ -122.430449602999929, 49.148347594000015 ], [ -122.430478908999959, 49.148411609000028 ], [ -122.430456324999952, 49.148474004000036 ], [ -122.430020401, 49.148794790000082 ], [ -122.429775689999985, 49.149089499000112 ], [ -122.429595689999985, 49.149201601000044 ], [ -122.4293473099999, 49.149311402000095 ], [ -122.429161386999951, 49.149446805000117 ], [ -122.429139696999982, 49.14965870200011 ], [ -122.429254492999988, 49.149943447000084 ], [ -122.428700852999953, 49.149925072000023 ], [ -122.428696810999924, 49.149977694000043 ], [ -122.42848618799998, 49.149938094000078 ], [ -122.428384285, 49.149979805000044 ], [ -122.428384285, 49.150104058000082 ], [ -122.428229971999912, 49.150098935000116 ], [ -122.428203933, 49.150437895000131 ], [ -122.423669452999931, 49.15028727300011 ], [ -122.423653552999951, 49.150494005000049 ], [ -122.423417757999957, 49.150486167000047 ], [ -122.423236066999948, 49.152848107000082 ], [ -122.417765578999933, 49.152666126000049 ], [ -122.417775790999926, 49.152533570000088 ], [ -122.417098163999952, 49.152511009000108 ], [ -122.417100292999947, 49.152483386000029 ], [ -122.416382739999946, 49.152459490000133 ], [ -122.416408783999927, 49.152121596000079 ], [ -122.416093151999945, 49.152111083000122 ], [ -122.416158314999961, 49.151265677000083 ], [ -122.41424814, 49.151202036000051 ], [ -122.414248647999955, 49.15119545099999 ], [ -122.412434776999987, 49.151134989000091 ], [ -122.412442383999945, 49.15103640800011 ], [ -122.410926330999942, 49.150985848000047 ], [ -122.410930138999944, 49.150936527000027 ], [ -122.410009803, 49.150905824000127 ], [ -122.410086527999937, 49.149912102000073 ], [ -122.409267212999936, 49.149884762000056 ], [ -122.409251743999988, 49.150085052000044 ], [ -122.406239812, 49.149984493000055 ], [ -122.406167776999922, 49.150916494000064 ], [ -122.410669561999939, 49.151066762000049 ], [ -122.4106620539999, 49.151164031000107 ], [ -122.411265147, 49.151184147000066 ], [ -122.411247283999913, 49.151415593000067 ], [ -122.411725346999958, 49.151431537000121 ], [ -122.411546352999892, 49.153750776000038 ], [ -122.4166097199999, 49.153919513000055 ], [ -122.41655697500002, 49.15460384800005 ], [ -122.417813420999948, 49.154645682000101 ], [ -122.417780291999946, 49.15507566100009 ], [ -122.419483289999931, 49.155132339000062 ], [ -122.419206332000016, 49.158728288000134 ], [ -122.418300128999959, 49.158698132000048 ], [ -122.418253106999927, 49.15868308200006 ], [ -122.415576701999925, 49.157680412000104 ], [ -122.413242797999914, 49.156777505 ], [ -122.412547803999971, 49.156414299000048 ], [ -122.411768082999927, 49.156132300000124 ], [ -122.410469870999947, 49.15549671800008 ] ], [ [ -122.372790799999962, 49.120741410000036 ], [ -122.372842407999912, 49.120079393000019 ], [ -122.372083615999969, 49.12005379300011 ], [ -122.372090350999926, 49.119967430000074 ], [ -122.371401243999955, 49.119944176000075 ], [ -122.371325350999925, 49.120917333000072 ], [ -122.373358798999931, 49.120985940000033 ], [ -122.373376319999949, 49.120761161000132 ], [ -122.372790799999962, 49.120741410000036 ] ], [ [ -122.401243060999988, 49.120929592000088 ], [ -122.401251869999925, 49.12081569900009 ], [ -122.400908840999946, 49.120804217000085 ], [ -122.400900031999953, 49.120918111000066 ], [ -122.401243060999988, 49.120929592000088 ] ], [ [ -122.406746727999987, 49.120633688000048 ], [ -122.406717828999916, 49.121007895000027 ], [ -122.411019110999959, 49.121151551000118 ], [ -122.411136085999885, 49.119635012000089 ], [ -122.405812789000024, 49.119457195000074 ], [ -122.405823247999976, 49.119321795000104 ], [ -122.405035971999979, 49.119295474000062 ], [ -122.405045558000012, 49.119171405000095 ], [ -122.402362024999917, 49.119081646000105 ], [ -122.402253637999976, 49.120483440000022 ], [ -122.406746727999987, 49.120633688000048 ] ], [ [ -122.389536207999967, 49.129869796 ], [ -122.389534899999916, 49.12997636900009 ], [ -122.389625167999966, 49.129979400000146 ], [ -122.389637981999954, 49.129814300000128 ], [ -122.389540554999911, 49.12981378500006 ], [ -122.389536207999967, 49.129869796 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.777885548011639", "sL_AssetLoss": "61860", "sL_BldgLoss": "48120", "sL_StrLoss": "23500", "sL_NStrLoss": "24620", "sL_ContLoss": "13740", "geom_point": "0101000020E6100000D3154B15359B5EC0DE3C173E09944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.424851873999955, 49.157574925000112 ], [ -122.424948600999969, 49.156317086000087 ], [ -122.42298264899992, 49.156251756000081 ], [ -122.4232593, 49.152655784000103 ], [ -122.424799571999927, 49.15270697200004 ], [ -122.424844865999944, 49.152117921000105 ], [ -122.426081019999955, 49.15215898600006 ], [ -122.426119840999888, 49.151653950000068 ], [ -122.42806301899999, 49.151718474000099 ], [ -122.428001069999965, 49.151804682000034 ], [ -122.427823296999975, 49.152052085000044 ], [ -122.427827403999956, 49.152266815000083 ], [ -122.427992834999912, 49.152485238000054 ], [ -122.428163166, 49.152710160000034 ], [ -122.428163511999955, 49.15271059300003 ], [ -122.428292912999936, 49.154738292000111 ], [ -122.428360473999987, 49.156566432000069 ], [ -122.428460626999978, 49.159274868000075 ], [ -122.426175571999948, 49.159199009000062 ], [ -122.426034660999932, 49.161031881000028 ], [ -122.424306120999972, 49.160620006000038 ], [ -122.419829959999959, 49.15918771400009 ], [ -122.419966668999976, 49.157412518000079 ], [ -122.424851873999955, 49.157574925000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.736377725605733", "sL_AssetLoss": "65169", "sL_BldgLoss": "47989", "sL_StrLoss": "18789", "sL_NStrLoss": "29200", "sL_ContLoss": "17180", "geom_point": "0101000020E610000014A6F7A6CC9C5EC0F45A9E41A2934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.447111982999957, 49.155475202000083 ], [ -122.447169686, 49.154720096000055 ], [ -122.4471245299999, 49.15471860400006 ], [ -122.447399306999927, 49.151122562000054 ], [ -122.450498778999957, 49.151224851000102 ], [ -122.452869728999985, 49.151303038000052 ], [ -122.45281212299993, 49.152058151000041 ], [ -122.45285727699999, 49.152059639000058 ], [ -122.452690532, 49.1542452240001 ], [ -122.452582914999979, 49.155655691000085 ], [ -122.4507046209999, 49.155593757000069 ], [ -122.447111982999957, 49.155475202000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.801822916666667", "sL_AssetLoss": "38400", "sL_BldgLoss": "30790", "sL_StrLoss": "15670", "sL_NStrLoss": "15120", "sL_ContLoss": "7610", "geom_point": "0101000020E6100000F59BAAF7AB9C5EC01088639FF8944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.441222382999939, 49.164061831000026 ], [ -122.44137453899998, 49.162074347000051 ], [ -122.446846224999987, 49.162255127000087 ], [ -122.446836913999988, 49.162376950000102 ], [ -122.448758667999954, 49.162440377000095 ], [ -122.448754679, 49.162492592000028 ], [ -122.451032888999976, 49.162567738000064 ], [ -122.453481506999978, 49.16264845200007 ], [ -122.453207131999946, 49.1662444460001 ], [ -122.452886887999981, 49.166233893 ], [ -122.452856838999978, 49.166627653 ], [ -122.452737992999957, 49.166623738000098 ], [ -122.45111214299996, 49.16597945600008 ], [ -122.45067310499999, 49.165850657000156 ], [ -122.449458189999987, 49.165494099000064 ], [ -122.448491509999883, 49.165275701000041 ], [ -122.446120199999939, 49.164809796000071 ], [ -122.444018520999947, 49.164442091000083 ], [ -122.441222382999939, 49.164061831000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.60656528189911", "sL_AssetLoss": "269600", "sL_BldgLoss": "163530", "sL_StrLoss": "76170", "sL_NStrLoss": "87360", "sL_ContLoss": "106070", "geom_point": "0101000020E6100000536A483FCE9C5EC0D573B95E26944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.450706741999952, 49.155638817000103 ], [ -122.45296109799996, 49.155713147000085 ], [ -122.452686722999957, 49.159309179000068 ], [ -122.450876683999951, 49.159249502000065 ], [ -122.447215359999959, 49.159128696000053 ], [ -122.447490155999958, 49.155532677000082 ], [ -122.450706741999952, 49.155638817000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.789189189189189", "sL_AssetLoss": "31450", "sL_BldgLoss": "24820", "sL_StrLoss": "12290", "sL_NStrLoss": "12530", "sL_ContLoss": "6630", "geom_point": "0101000020E610000016D097205B9D5EC0789E916BB7934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.45797711199998, 49.156581189000093 ], [ -122.457994427, 49.156353917000061 ], [ -122.457504109999959, 49.156337777000026 ], [ -122.45755934, 49.155612931000107 ], [ -122.455652090999948, 49.15555013000008 ], [ -122.455746190999903, 49.154315748 ], [ -122.455926212999927, 49.151954069000112 ], [ -122.458257502, 49.152030829000104 ], [ -122.458300644999937, 49.15146442600016 ], [ -122.461173167999974, 49.151558936000036 ], [ -122.461141203999929, 49.154440074000036 ], [ -122.461200591999926, 49.156501132000102 ], [ -122.461206302, 49.156620207000046 ], [ -122.461209545999964, 49.156687533000088 ], [ -122.45797711199998, 49.156581189000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311834", "BldgCostT": "3663334", "sL_LossRatio": "0.758841593878219", "sL_AssetLoss": "79454", "sL_BldgLoss": "60293", "sL_StrLoss": "26433", "sL_NStrLoss": "33860", "sL_ContLoss": "19161", "geom_point": "0101000020E6100000E8B523E6A39B5EC0522E0927D4934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.428360473999987, 49.156566432000069 ], [ -122.428292912999936, 49.154738292000111 ], [ -122.428163511999955, 49.15271059300003 ], [ -122.428163166, 49.152710160000034 ], [ -122.427992834999912, 49.152485238000054 ], [ -122.427827403999956, 49.152266815000083 ], [ -122.427823296999975, 49.152052085000044 ], [ -122.428001069999965, 49.151804682000034 ], [ -122.42806301899999, 49.151718474000099 ], [ -122.431590241999984, 49.151835506000069 ], [ -122.431373645999912, 49.154657568000026 ], [ -122.431314238999931, 49.155431505000088 ], [ -122.430707523999956, 49.155411383000057 ], [ -122.430686079999958, 49.155690709000012 ], [ -122.431465037999956, 49.155716544000022 ], [ -122.431546667999939, 49.154653031000066 ], [ -122.431729676999922, 49.152268486000082 ], [ -122.437200174999958, 49.152449758000039 ], [ -122.437194910999935, 49.152518443000133 ], [ -122.436924599999926, 49.156045768000055 ], [ -122.431895917999967, 49.155879147000086 ], [ -122.431631268999965, 49.159327186000013 ], [ -122.43023546199997, 49.159280896000098 ], [ -122.430231412999944, 49.159333620000112 ], [ -122.428460626999978, 49.159274868000075 ], [ -122.428360473999987, 49.156566432000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11803083", "BldgCostT": "7668333", "sL_LossRatio": "0.681674586429841", "sL_AssetLoss": "264949", "sL_BldgLoss": "180609", "sL_StrLoss": "71449", "sL_NStrLoss": "109160", "sL_ContLoss": "84340", "geom_point": "0101000020E6100000423E85AF719C5EC05237FEE1BA924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.438540672999977, 49.148085176000052 ], [ -122.438725662999943, 49.145669736000073 ], [ -122.440480494, 49.145727810000103 ], [ -122.44049009499993, 49.145602379000152 ], [ -122.441767557999952, 49.145644637000046 ], [ -122.441895728999953, 49.143969509 ], [ -122.446824751999941, 49.14413241500008 ], [ -122.447088700999956, 49.140677524000104 ], [ -122.450192223999935, 49.140779981000122 ], [ -122.452557895, 49.140858018000088 ], [ -122.452491216999945, 49.141732181000094 ], [ -122.452662146999927, 49.141737818000095 ], [ -122.452387830999967, 49.145333926000049 ], [ -122.450268766999926, 49.145264029000138 ], [ -122.447287719999977, 49.145165630000072 ], [ -122.447180743999965, 49.14656585300007 ], [ -122.449390949999952, 49.146576414 ], [ -122.449386372999967, 49.146989548000121 ], [ -122.449378989999957, 49.147655809000057 ], [ -122.447098299999979, 49.147644911 ], [ -122.447090549999942, 49.14774634700003 ], [ -122.445813023999932, 49.147704153000056 ], [ -122.445684984999929, 49.149379277000023 ], [ -122.443930009000013, 49.149321289000113 ], [ -122.443920416999902, 49.149446719000117 ], [ -122.441903297999886, 49.14938003300005 ], [ -122.44171845799994, 49.151795465000085 ], [ -122.43826560499997, 49.151681226000058 ], [ -122.436248020999969, 49.15161442200008 ], [ -122.436523621, 49.148018390000118 ], [ -122.438540672999977, 49.148085176000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.791288476716654", "sL_AssetLoss": "20272", "sL_BldgLoss": "16041", "sL_StrLoss": "7611", "sL_NStrLoss": "8430", "sL_ContLoss": "4231", "geom_point": "0101000020E6100000C3830B1E4B9D5EC078A1D2EB43954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.454526548999951, 49.167227571000076 ], [ -122.453746644999967, 49.167023417000067 ], [ -122.453352270999943, 49.166867148000058 ], [ -122.453483776, 49.165143649000072 ], [ -122.45421214199996, 49.165167646000071 ], [ -122.454214947999901, 49.165130867000045 ], [ -122.45802997499996, 49.165256477000042 ], [ -122.458091026999952, 49.164455258000011 ], [ -122.461397255999913, 49.164564005000123 ], [ -122.461329204999956, 49.165135741000014 ], [ -122.461308521999939, 49.165309613000069 ], [ -122.461326309999961, 49.167320621000023 ], [ -122.460941605999935, 49.167275533000073 ], [ -122.460520151999972, 49.167316673000087 ], [ -122.46026183599993, 49.167429834000046 ], [ -122.459938427999973, 49.16757150300004 ], [ -122.459614125999934, 49.167597806000089 ], [ -122.456387281999966, 49.167467290000062 ], [ -122.456016663999904, 49.167419539000036 ], [ -122.454526548999951, 49.167227571000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86268668", "BldgCostT": "57816668", "sL_LossRatio": "0.757658360668858", "sL_AssetLoss": "849627", "sL_BldgLoss": "643727", "sL_StrLoss": "312936", "sL_NStrLoss": "330791", "sL_ContLoss": "205900", "geom_point": "0101000020E610000061F1D56DD49B5EC0D521F5A63B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.430449602999929, 49.148347594000015 ], [ -122.430379911999921, 49.14832629000005 ], [ -122.429598001000016, 49.14836798200006 ], [ -122.428961714999971, 49.148298191000023 ], [ -122.428002596999988, 49.148255495000043 ], [ -122.427851415999925, 49.148207208000024 ], [ -122.42784205199996, 49.148200205000073 ], [ -122.427708678, 49.148100695000082 ], [ -122.427639197999909, 49.147810806000045 ], [ -122.42472828299999, 49.147806434000053 ], [ -122.423619044999938, 49.14780476100001 ], [ -122.423043164999967, 49.147803882000098 ], [ -122.41581860399998, 49.147792598000045 ], [ -122.414403915999983, 49.147793038000046 ], [ -122.410331538999984, 49.147794173000065 ], [ -122.405463212999962, 49.147795317000103 ], [ -122.404665404999918, 49.147795487000039 ], [ -122.404665758999982, 49.147153850000038 ], [ -122.404666363999951, 49.145966396000055 ], [ -122.404667115, 49.144582287000098 ], [ -122.404663413999941, 49.144203688000033 ], [ -122.404488984999901, 49.140414107000034 ], [ -122.404455046999928, 49.138975514000094 ], [ -122.404450803999907, 49.138795918000028 ], [ -122.404448907999964, 49.138715506000075 ], [ -122.404415687999972, 49.137276098000022 ], [ -122.404392214000012, 49.136259413000062 ], [ -122.404390611999986, 49.136189886000096 ], [ -122.404368380999983, 49.135298875000018 ], [ -122.404315716999932, 49.133186799000079 ], [ -122.414538586999967, 49.133063905000043 ], [ -122.415686013999945, 49.133025596000074 ], [ -122.427304696999954, 49.132802890000086 ], [ -122.433047942999963, 49.132709435000017 ], [ -122.435570362999925, 49.132668271000092 ], [ -122.438419779999919, 49.13262171600006 ], [ -122.442083339999911, 49.132561290000119 ], [ -122.442727971999915, 49.132550659000081 ], [ -122.442864941000025, 49.132548401000022 ], [ -122.444112187999934, 49.13252779200009 ], [ -122.445524283999973, 49.132504467000075 ], [ -122.446772439999947, 49.132483802000067 ], [ -122.448308208999919, 49.132458401000036 ], [ -122.449544594, 49.132437902000071 ], [ -122.449639688999966, 49.132412192000082 ], [ -122.44959146799999, 49.130735564000105 ], [ -122.449583729999972, 49.130465844000064 ], [ -122.449570780999949, 49.130015846000042 ], [ -122.449519701, 49.128239702000066 ], [ -122.449429251999945, 49.125607425000041 ], [ -122.449403013999955, 49.124842831000088 ], [ -122.449392195999934, 49.12452767000012 ], [ -122.4493494929999, 49.123285595000013 ], [ -122.449330384999953, 49.122728542000104 ], [ -122.449306606999954, 49.122036401000052 ], [ -122.449288375999956, 49.121505517000038 ], [ -122.449266128999952, 49.120857762000085 ], [ -122.449242330999965, 49.120164820000049 ], [ -122.449218230999946, 49.119462884000029 ], [ -122.449200617999949, 49.118950232000074 ], [ -122.449165419999957, 49.117925009000039 ], [ -122.449157215999932, 49.117510110000083 ], [ -122.449114930999954, 49.115359232000074 ], [ -122.449111506999913, 49.115184092000035 ], [ -122.449174300999942, 49.115025703000086 ], [ -122.449321727999958, 49.114853002000046 ], [ -122.449436896999927, 49.114780198000069 ], [ -122.449554803999902, 49.114707502000044 ], [ -122.449808406999978, 49.114615789 ], [ -122.450243582000013, 49.114531996000053 ], [ -122.451018757999961, 49.114421198000102 ], [ -122.45235456599994, 49.11423021100007 ], [ -122.452430201999917, 49.11421941100015 ], [ -122.452666941999937, 49.114185557000063 ], [ -122.45296182099996, 49.114143390000059 ], [ -122.45358850699999, 49.114053794000057 ], [ -122.454155105999988, 49.113935492000039 ], [ -122.454414094999933, 49.113826002000032 ], [ -122.454629608999966, 49.113658201000078 ], [ -122.45480840299993, 49.11341531100004 ], [ -122.454951179999924, 49.113105495000077 ], [ -122.455064220999986, 49.112810995000039 ], [ -122.455329021999944, 49.112120979000068 ], [ -122.455332378999941, 49.112112205000116 ], [ -122.455562105999945, 49.111704216000085 ], [ -122.455853391999938, 49.111421802000088 ], [ -122.456242783999926, 49.111165094000107 ], [ -122.456542880999962, 49.111002896000066 ], [ -122.456853099999961, 49.110885992000114 ], [ -122.457146702999964, 49.110809189000129 ], [ -122.457798285999971, 49.110724296000043 ], [ -122.45990758, 49.110726413000116 ], [ -122.460508986999926, 49.110726994000096 ], [ -122.460618519999969, 49.116506186 ], [ -122.459560487999937, 49.116471350000033 ], [ -122.45954652099999, 49.11665493700005 ], [ -122.45408014299997, 49.116474791000016 ], [ -122.454133575999947, 49.115773568000101 ], [ -122.454031815999926, 49.115770212000065 ], [ -122.453894433999935, 49.117573062000048 ], [ -122.454075003999918, 49.117579017000047 ], [ -122.45391451099999, 49.119685069000063 ], [ -122.456255957999957, 49.119762265000084 ], [ -122.45598205, 49.123358504000052 ], [ -122.453388189999956, 49.123272984000039 ], [ -122.453386443999989, 49.123295877000089 ], [ -122.453440179999987, 49.123297649000108 ], [ -122.453243264999941, 49.125880796000125 ], [ -122.454297573999924, 49.125915563000042 ], [ -122.454374485999935, 49.124906354000039 ], [ -122.455325250999962, 49.124937698000032 ], [ -122.455337753999956, 49.124773576000031 ], [ -122.46050422699993, 49.124943754000128 ], [ -122.460489051999971, 49.12563061900007 ], [ -122.460447910999974, 49.127493686000079 ], [ -122.460493026000023, 49.128293437000067 ], [ -122.460559918999962, 49.129480276000059 ], [ -122.459881701999976, 49.129457953000085 ], [ -122.459824667999925, 49.130207412000111 ], [ -122.460602343999938, 49.130233007000072 ], [ -122.460728302999939, 49.132467662000082 ], [ -122.460730820999942, 49.132512437000095 ], [ -122.460799777999924, 49.135519712000089 ], [ -122.458999853999927, 49.135460472000084 ], [ -122.459127043999942, 49.133789647000064 ], [ -122.455756842999946, 49.133678644000049 ], [ -122.455750721999934, 49.133758979000049 ], [ -122.454864584999925, 49.133729775000084 ], [ -122.454859186999968, 49.133800601000075 ], [ -122.454643361999956, 49.133793487000034 ], [ -122.454493981, 49.135753303000094 ], [ -122.451572020999961, 49.13565694800009 ], [ -122.451555868999961, 49.135868674000086 ], [ -122.446310921999938, 49.135695517000045 ], [ -122.44624824099995, 49.13651591900004 ], [ -122.446239827999989, 49.136626025000055 ], [ -122.446606768, 49.136638147000014 ], [ -122.44680432899996, 49.136644674000067 ], [ -122.446813745999947, 49.136521404000099 ], [ -122.452282449999942, 49.136701915000074 ], [ -122.452008135000014, 49.140298050000112 ], [ -122.450175969999961, 49.140237605000017 ], [ -122.448452785999976, 49.140180728000139 ], [ -122.448442490999952, 49.140315536000053 ], [ -122.442973376999987, 49.140134832000058 ], [ -122.442974259999957, 49.140123292000084 ], [ -122.441589529999987, 49.14007749600006 ], [ -122.441705187999958, 49.138565784000029 ], [ -122.438043799999889, 49.13844460500011 ], [ -122.438115023999899, 49.137514574000079 ], [ -122.437916490999925, 49.137508 ], [ -122.437781, 49.139277096000029 ], [ -122.432312049999922, 49.139095850000096 ], [ -122.432587879, 49.135499759000069 ], [ -122.434321159999925, 49.135557232000103 ], [ -122.434340484999936, 49.135305126000091 ], [ -122.433126715999919, 49.135264882000101 ], [ -122.433145808999924, 49.135015891000116 ], [ -122.432340015999955, 49.134989166000011 ], [ -122.432121589999952, 49.137836737000029 ], [ -122.431344091999946, 49.137810945000076 ], [ -122.431102030999952, 49.14096553800011 ], [ -122.432652034999961, 49.141016950000065 ], [ -122.43237617799997, 49.144613011000054 ], [ -122.431263370999943, 49.144576103000063 ], [ -122.431136817999942, 49.146225136000126 ], [ -122.431041397999962, 49.146221971000053 ], [ -122.430792983999979, 49.149458435000057 ], [ -122.429766023999946, 49.149424363000016 ], [ -122.42972496799996, 49.149959059000054 ], [ -122.429254492999988, 49.149943447000084 ], [ -122.429139696999982, 49.14965870200011 ], [ -122.429161386999951, 49.149446805000117 ], [ -122.4293473099999, 49.149311402000095 ], [ -122.429595689999985, 49.149201601000044 ], [ -122.429775689999985, 49.149089499000112 ], [ -122.430020401, 49.148794790000082 ], [ -122.430456324999952, 49.148474004000036 ], [ -122.430478908999959, 49.148411609000028 ], [ -122.430449602999929, 49.148347594000015 ] ], [ [ -122.424062917999933, 49.145454202000053 ], [ -122.424125704999966, 49.144637681000056 ], [ -122.423473484999946, 49.144616 ], [ -122.423625746999932, 49.142636142000072 ], [ -122.423161196999942, 49.142620697000098 ], [ -122.423437753999949, 49.139024649000092 ], [ -122.423751501999917, 49.139035081000046 ], [ -122.423800776999954, 49.138394258000119 ], [ -122.42221372599991, 49.13834148300004 ], [ -122.422292118999948, 49.137322372000064 ], [ -122.42080044, 49.137272747000047 ], [ -122.420969769999928, 49.135072221000044 ], [ -122.420242285, 49.135048011000052 ], [ -122.420204278999975, 49.135541831000076 ], [ -122.417940507999958, 49.135466465000043 ], [ -122.417812769999969, 49.13712508400009 ], [ -122.417748264999915, 49.137122936000061 ], [ -122.417730920999929, 49.137348145000011 ], [ -122.417856751999963, 49.137352336000127 ], [ -122.417812936999979, 49.137921233000064 ], [ -122.417957083999951, 49.137926034 ], [ -122.417881168999926, 49.138911713000056 ], [ -122.419145403999977, 49.138953806000075 ], [ -122.418868515999975, 49.14254984300009 ], [ -122.418183690999939, 49.14252704400009 ], [ -122.418110934999945, 49.143471659000028 ], [ -122.417832323999974, 49.14346238200006 ], [ -122.417782774000017, 49.144105648000071 ], [ -122.419475813999924, 49.144162010000116 ], [ -122.419400987999936, 49.145133818000083 ], [ -122.420824225999979, 49.145181177000097 ], [ -122.420811534999928, 49.145346082000096 ], [ -122.424062917999933, 49.145454202000053 ] ], [ [ -122.41230088099999, 49.144084801000091 ], [ -122.412388982999929, 49.142942794000092 ], [ -122.412667590999945, 49.142952085000047 ], [ -122.412790464999929, 49.141359133000087 ], [ -122.412210973999919, 49.141339808000041 ], [ -122.412254860999923, 49.140770915000104 ], [ -122.41211070599995, 49.140766107000047 ], [ -122.412138758999959, 49.140402456000068 ], [ -122.412172289999958, 49.139967805000012 ], [ -122.41204645199997, 49.139963607000027 ], [ -122.412139435999933, 49.138758309000053 ], [ -122.412106529999917, 49.13875721200003 ], [ -122.412383917999961, 49.135161171000092 ], [ -122.412481321999977, 49.135164419000077 ], [ -122.41255387899993, 49.134223672000061 ], [ -122.412175397999974, 49.134211047000065 ], [ -122.412097931999966, 49.135215328000086 ], [ -122.406629559999956, 49.135032776000088 ], [ -122.406695633999945, 49.134177478000012 ], [ -122.406516414999956, 49.13417149 ], [ -122.406487066999958, 49.134551365000092 ], [ -122.405985014999956, 49.134534590000072 ], [ -122.40589537699995, 49.135694649000143 ], [ -122.406245274999918, 49.135706341000088 ], [ -122.406045009999929, 49.138298161000108 ], [ -122.406409629999985, 49.138310343000093 ], [ -122.40629794299997, 49.139755809000071 ], [ -122.40675380799992, 49.139771038000063 ], [ -122.406704378999976, 49.140410794000033 ], [ -122.406565137999962, 49.142212904000132 ], [ -122.407042148999963, 49.142228836000072 ], [ -122.407002974999969, 49.142735884000054 ], [ -122.408303236999927, 49.142779305000047 ], [ -122.408209937, 49.143987326000143 ], [ -122.408353110999926, 49.143992106000034 ], [ -122.408330193999944, 49.144288826000029 ], [ -122.408501761999929, 49.144294554000084 ], [ -122.408527684, 49.143958903000119 ], [ -122.41230088099999, 49.144084801000091 ] ], [ [ -122.452463538999908, 49.127224623000089 ], [ -122.45249046, 49.126871578000106 ], [ -122.451617348999974, 49.12684277200001 ], [ -122.451590421999981, 49.127195817000043 ], [ -122.452463538999908, 49.127224623000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119508500", "BldgCostT": "80210000", "sL_LossRatio": "0.769109699363078", "sL_AssetLoss": "978456", "sL_BldgLoss": "752540", "sL_StrLoss": "402000", "sL_NStrLoss": "350540", "sL_ContLoss": "225916", "geom_point": "0101000020E610000090A2ADCE5A945EC06B571974DF884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317051916999958, 49.066970913000077 ], [ -122.319063142999966, 49.066980378000089 ], [ -122.320765001999973, 49.067228939000053 ], [ -122.321038701999925, 49.067268891000019 ], [ -122.320799400999988, 49.067906189000091 ], [ -122.321324725999943, 49.068499303000053 ], [ -122.320890993999939, 49.068618801000106 ], [ -122.320501585999949, 49.068662204000042 ], [ -122.320075386999989, 49.068668406 ], [ -122.31992899, 49.068754411000064 ], [ -122.31986620099994, 49.068855882000037 ], [ -122.31991129, 49.070051897000056 ], [ -122.320112904999974, 49.070289586000037 ], [ -122.319727885999953, 49.070485603000051 ], [ -122.319457412999895, 49.070704399000064 ], [ -122.319048559999928, 49.071032026000076 ], [ -122.318958997999971, 49.071103798000088 ], [ -122.318537809999938, 49.07184390200009 ], [ -122.318350803999962, 49.07206187900011 ], [ -122.318028315999953, 49.072245592000094 ], [ -122.317630202999965, 49.072347298000047 ], [ -122.317476221999939, 49.072347571000101 ], [ -122.316827896999982, 49.072348655000056 ], [ -122.316326063999981, 49.072349350000088 ], [ -122.316243911999933, 49.0723494510001 ], [ -122.316120123999923, 49.072349620000054 ], [ -122.31603805, 49.069332367000136 ], [ -122.316037806999958, 49.069323243000085 ], [ -122.315994803999942, 49.067790155000075 ], [ -122.315981694999905, 49.067367982000114 ], [ -122.315971639999987, 49.067044739000018 ], [ -122.317051916999958, 49.066970913000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84091456", "BldgCostT": "56762039", "sL_LossRatio": "0.771689380186624", "sL_AssetLoss": "660473", "sL_BldgLoss": "509680", "sL_StrLoss": "254480", "sL_NStrLoss": "255200", "sL_ContLoss": "150793", "geom_point": "0101000020E61000007FE219971E945EC099BD4B2D04894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315261942999953, 49.067797467000076 ], [ -122.315994803999942, 49.067790155000075 ], [ -122.316037806999958, 49.069323243000085 ], [ -122.31603805, 49.069332367000136 ], [ -122.316120123999923, 49.072349620000054 ], [ -122.315438277999945, 49.072351496000067 ], [ -122.314349883999924, 49.072352893000115 ], [ -122.313302613999952, 49.072354790000141 ], [ -122.312207394999987, 49.072355999000138 ], [ -122.312183682999901, 49.071877052000083 ], [ -122.31213789399996, 49.070951808000089 ], [ -122.312137200999985, 49.070390085000085 ], [ -122.312362020999927, 49.069987698 ], [ -122.312675790999918, 49.069690188000038 ], [ -122.313141687999959, 49.069458207 ], [ -122.313679797999939, 49.06931810500005 ], [ -122.314241174999921, 49.069315697000064 ], [ -122.314206397999968, 49.067782895000065 ], [ -122.315261942999953, 49.067797467000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139952314", "BldgCostT": "87298051", "sL_LossRatio": "0.715610768489284", "sL_AssetLoss": "1016670", "sL_BldgLoss": "727540", "sL_StrLoss": "355630", "sL_NStrLoss": "371910", "sL_ContLoss": "289130", "geom_point": "0101000020E610000014FA266E91925EC00FA4AC5B94854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.286589587999956, 49.042126099000043 ], [ -122.286567603999941, 49.041732298000028 ], [ -122.28713550499999, 49.041730303000051 ], [ -122.287503685, 49.041778194000138 ], [ -122.288319894999972, 49.041784790000122 ], [ -122.288322020999914, 49.041672199000075 ], [ -122.28904629099999, 49.041681904000036 ], [ -122.2895062, 49.041798813000064 ], [ -122.290098192999906, 49.04180390100003 ], [ -122.290408280999884, 49.041774099000051 ], [ -122.290956616999921, 49.041656894000013 ], [ -122.291555904999953, 49.041655983000133 ], [ -122.291551202000036, 49.041508900000061 ], [ -122.29338589299999, 49.041471299000065 ], [ -122.293403956, 49.042330611000139 ], [ -122.293424491999957, 49.043308103000086 ], [ -122.293470907999946, 49.045563604000073 ], [ -122.291750910999937, 49.045566310000041 ], [ -122.290368900999951, 49.045569106000116 ], [ -122.28958629899995, 49.045570005000116 ], [ -122.28927335399996, 49.045571042000063 ], [ -122.289051088999955, 49.04557176900007 ], [ -122.288587288999949, 49.045573302000015 ], [ -122.288164219999985, 49.045681302000041 ], [ -122.287913995999958, 49.045538095000097 ], [ -122.287627678999911, 49.045374193000058 ], [ -122.286914714999952, 49.044965179000016 ], [ -122.286401904999963, 49.044670994000121 ], [ -122.286681913999971, 49.04431560600004 ], [ -122.286638687999968, 49.043420743000034 ], [ -122.286601906999948, 49.042658503000112 ], [ -122.286681396999967, 49.042484499000089 ], [ -122.286589587999956, 49.042126099000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "423280289", "BldgCostT": "286638047", "sL_LossRatio": "0.795299948423423", "sL_AssetLoss": "1746917", "sL_BldgLoss": "1389323", "sL_StrLoss": "675973", "sL_NStrLoss": "713350", "sL_ContLoss": "357594", "geom_point": "0101000020E61000005EC5D10B6D925EC00077135B45854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.28250520899995, 49.042222688000052 ], [ -122.282396411999954, 49.04120288900009 ], [ -122.283989992999977, 49.041204007000012 ], [ -122.283937776, 49.040142897000059 ], [ -122.284182673999922, 49.040142390000057 ], [ -122.2862621, 49.040140400000034 ], [ -122.287315390999964, 49.040140809000093 ], [ -122.287798414999912, 49.040139511000106 ], [ -122.288468604999977, 49.040021104000118 ], [ -122.28889121099995, 49.040021288000041 ], [ -122.288901107999934, 49.038832490000047 ], [ -122.290618084999949, 49.038914389000077 ], [ -122.292011169999981, 49.038980560000013 ], [ -122.293334104999985, 49.039043393000028 ], [ -122.293353897, 49.040033108000038 ], [ -122.293359427, 49.040221705000057 ], [ -122.293375205999936, 49.040969602000082 ], [ -122.29338589299999, 49.041471299000065 ], [ -122.291551202000036, 49.041508900000061 ], [ -122.291555904999953, 49.041655983000133 ], [ -122.290956616999921, 49.041656894000013 ], [ -122.290408280999884, 49.041774099000051 ], [ -122.290098192999906, 49.04180390100003 ], [ -122.2895062, 49.041798813000064 ], [ -122.28904629099999, 49.041681904000036 ], [ -122.288322020999914, 49.041672199000075 ], [ -122.288319894999972, 49.041784790000122 ], [ -122.287503685, 49.041778194000138 ], [ -122.28713550499999, 49.041730303000051 ], [ -122.286567603999941, 49.041732298000028 ], [ -122.286589587999956, 49.042126099000043 ], [ -122.286681396999967, 49.042484499000089 ], [ -122.286601906999948, 49.042658503000112 ], [ -122.286638687999968, 49.043420743000034 ], [ -122.286681913999971, 49.04431560600004 ], [ -122.286401904999963, 49.044670994000121 ], [ -122.283144391999926, 49.042801985000082 ], [ -122.282765593999926, 49.04252569500008 ], [ -122.28250520899995, 49.042222688000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "593974948", "BldgCostT": "399425270", "sL_LossRatio": "0.798139513095821", "sL_AssetLoss": "2561695", "sL_BldgLoss": "2044590", "sL_StrLoss": "883920", "sL_NStrLoss": "1160670", "sL_ContLoss": "517105", "geom_point": "0101000020E6100000A84F52C3AB935EC0C135D2ADB2864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304324184, 49.050598647000065 ], [ -122.304341364999942, 49.050485652000106 ], [ -122.304524966999949, 49.050505899000058 ], [ -122.304543442999943, 49.050507936000017 ], [ -122.305957958999926, 49.050666614000129 ], [ -122.307866323999988, 49.050808907000096 ], [ -122.309932286999953, 49.050896146000035 ], [ -122.309948871999921, 49.05110138600002 ], [ -122.310028666999983, 49.051216806000042 ], [ -122.310057440000023, 49.051294711 ], [ -122.310153731999918, 49.051555563000051 ], [ -122.310409689999929, 49.05224591400011 ], [ -122.310421579999954, 49.052614093000017 ], [ -122.310336621999966, 49.053168301000028 ], [ -122.31025268099999, 49.053451192000082 ], [ -122.310018709999923, 49.054245488000142 ], [ -122.30999011599998, 49.054348197000067 ], [ -122.309053702999975, 49.054335905000109 ], [ -122.308541902999963, 49.054284884000069 ], [ -122.307606315000029, 49.054022583000091 ], [ -122.307018702999983, 49.053857815000114 ], [ -122.307012542999956, 49.053856094000061 ], [ -122.30417009199999, 49.053059 ], [ -122.304172495999978, 49.052942793000085 ], [ -122.304173935999927, 49.052813425000082 ], [ -122.304179314999928, 49.052338984000059 ], [ -122.304135419999966, 49.052206749000028 ], [ -122.304050087999954, 49.051949576000069 ], [ -122.30402800199991, 49.051625158000071 ], [ -122.304087507999924, 49.05139195800006 ], [ -122.304085868999948, 49.051291834000025 ], [ -122.3043836, 49.050763886000027 ], [ -122.304324184, 49.050598647000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195875447", "BldgCostT": "123055269", "sL_LossRatio": "0.710754752499397", "sL_AssetLoss": "1365229", "sL_BldgLoss": "970343", "sL_StrLoss": "442993", "sL_NStrLoss": "527350", "sL_ContLoss": "394886", "geom_point": "0101000020E610000015175F3800935EC05899286378854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.293470907999946, 49.045563604000073 ], [ -122.293424491999957, 49.043308103000086 ], [ -122.293403956, 49.042330611000139 ], [ -122.29338589299999, 49.041471299000065 ], [ -122.293375205999936, 49.040969602000082 ], [ -122.293359427, 49.040221705000057 ], [ -122.297077888999965, 49.040216692000065 ], [ -122.298404929999919, 49.040215115000066 ], [ -122.298418617999943, 49.04021510900003 ], [ -122.300010722999943, 49.040173178000074 ], [ -122.301363144999982, 49.04013754700005 ], [ -122.302005996999966, 49.040120609000063 ], [ -122.303497799999917, 49.040110709000039 ], [ -122.303509608999946, 49.041290284000119 ], [ -122.303516182999942, 49.04129030100006 ], [ -122.304484894999973, 49.04129060300005 ], [ -122.304484992999903, 49.041299601000041 ], [ -122.304490996999974, 49.041938993000016 ], [ -122.304477354999946, 49.041938723000037 ], [ -122.304249561999981, 49.041933965000041 ], [ -122.304217502999975, 49.041933290000088 ], [ -122.30211191199993, 49.04188950200011 ], [ -122.301466341999955, 49.041839856000081 ], [ -122.301368099999934, 49.041832311000093 ], [ -122.301316696999947, 49.04183278900009 ], [ -122.298394941999959, 49.041861007000108 ], [ -122.298365804999918, 49.041861302000086 ], [ -122.297442189999941, 49.042122509000102 ], [ -122.297185708999933, 49.042261532000097 ], [ -122.296959019000013, 49.042384406000068 ], [ -122.296938418999972, 49.042402776000046 ], [ -122.296627702999956, 49.042680294000043 ], [ -122.296330406999971, 49.043254296000057 ], [ -122.29632881, 49.043482176000111 ], [ -122.296321592999931, 49.044517899000049 ], [ -122.296090979999974, 49.044957987000025 ], [ -122.29567965199999, 49.045357499000033 ], [ -122.295469791999921, 49.045561289000062 ], [ -122.297214404000016, 49.045558405000129 ], [ -122.29711228799999, 49.045672095000043 ], [ -122.296126615999952, 49.046507189000074 ], [ -122.295700808999953, 49.047561694000095 ], [ -122.293620500999921, 49.047638595000087 ], [ -122.293603303999987, 49.047459266000054 ], [ -122.29352028699999, 49.046593913000024 ], [ -122.293470907999946, 49.045563604000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129405334", "BldgCostT": "86793334", "sL_LossRatio": "0.838967774580184", "sL_AssetLoss": "632420", "sL_BldgLoss": "530580", "sL_StrLoss": "260320", "sL_NStrLoss": "270260", "sL_ContLoss": "101840", "geom_point": "0101000020E610000035C9A895B6945EC000C098CA2E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.321011186999982, 49.057312711000058 ], [ -122.320995096000019, 49.057281519000099 ], [ -122.321037935, 49.056712173000058 ], [ -122.32106868399994, 49.05655996100009 ], [ -122.321724687999946, 49.05652247400014 ], [ -122.321719473999948, 49.056479173000071 ], [ -122.321522906999988, 49.054845009000132 ], [ -122.32190767899999, 49.054823003000045 ], [ -122.32293919199995, 49.054843004000077 ], [ -122.323999520999934, 49.054932490000049 ], [ -122.325161513999902, 49.055031145000051 ], [ -122.32517524799999, 49.055032248000074 ], [ -122.325847403999916, 49.055097644000071 ], [ -122.326664058999967, 49.055118363000162 ], [ -122.326126581999986, 49.056048826000087 ], [ -122.325339513999964, 49.057151796 ], [ -122.325112045999958, 49.057185195000059 ], [ -122.324574502999937, 49.057298997000082 ], [ -122.324159448000017, 49.057350299000113 ], [ -122.324084617999958, 49.05735562200006 ], [ -122.323688805999936, 49.057383767000012 ], [ -122.323295018999971, 49.057406387000107 ], [ -122.323252063999945, 49.05740928600008 ], [ -122.32288800399999, 49.057430997000068 ], [ -122.322529433999961, 49.05742240200005 ], [ -122.322285533999889, 49.057368287000031 ], [ -122.321913276999965, 49.057338736000105 ], [ -122.32159296499999, 49.057355592000064 ], [ -122.321116330999956, 49.057385763000049 ], [ -122.321031338999916, 49.057394057000081 ], [ -122.321032517999981, 49.05736710500004 ], [ -122.321011186999982, 49.057312711000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151760394", "BldgCostT": "103331523", "sL_LossRatio": "0.76576617173242", "sL_AssetLoss": "1775320", "sL_BldgLoss": "1359480", "sL_StrLoss": "620020", "sL_NStrLoss": "739460", "sL_ContLoss": "415840", "geom_point": "0101000020E610000085BF055DAB955EC05B00643266884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.338307895999932, 49.068396433000032 ], [ -122.338221725999958, 49.066236287000024 ], [ -122.338095937999952, 49.066234710000053 ], [ -122.338068353999958, 49.066234714000089 ], [ -122.337904210999938, 49.066234848000057 ], [ -122.337062505999981, 49.066235497000015 ], [ -122.335981217999986, 49.066236504000102 ], [ -122.335951101999953, 49.065523287000111 ], [ -122.33590840299992, 49.064622210000039 ], [ -122.335870195999959, 49.063854602000063 ], [ -122.336991883999971, 49.063861303000053 ], [ -122.338011107999975, 49.063867200000018 ], [ -122.338011461999912, 49.06387628800006 ], [ -122.338019492999976, 49.064076944000078 ], [ -122.338038805999958, 49.064558689000066 ], [ -122.338155085, 49.064560005000025 ], [ -122.339166493999969, 49.064576384000091 ], [ -122.339158269999942, 49.064092296000069 ], [ -122.339151553999898, 49.063696074000106 ], [ -122.339142892999945, 49.063187407000051 ], [ -122.340219389999973, 49.063194286000119 ], [ -122.340246868999913, 49.06374619700005 ], [ -122.340253887999964, 49.063887807000128 ], [ -122.340266925999956, 49.064593203000065 ], [ -122.340325594999939, 49.065362398000019 ], [ -122.341392592999981, 49.065387006000051 ], [ -122.341338809999968, 49.065966606000096 ], [ -122.341272991999958, 49.066194300000049 ], [ -122.34106630699992, 49.06643958700009 ], [ -122.340788591999939, 49.066664489000054 ], [ -122.340656496999912, 49.066725796000071 ], [ -122.3403884089999, 49.066844697000079 ], [ -122.339921276999974, 49.066954998000092 ], [ -122.338942194999944, 49.066960413000025 ], [ -122.338954794999964, 49.067654087000072 ], [ -122.338994118999935, 49.068286399000058 ], [ -122.339212017999969, 49.06852640000006 ], [ -122.339810492999959, 49.0688353070001 ], [ -122.339423874999937, 49.069187574000054 ], [ -122.339267939999957, 49.069329727000103 ], [ -122.339151727999962, 49.069258160000111 ], [ -122.339104615999929, 49.069196168000097 ], [ -122.338656282999949, 49.068926654000101 ], [ -122.338547350999988, 49.068832796000081 ], [ -122.338341490999966, 49.068543627000061 ], [ -122.338307895999932, 49.068396433000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80244666", "BldgCostT": "53106666", "sL_LossRatio": "0.78187504354064", "sL_AssetLoss": "531113", "sL_BldgLoss": "415264", "sL_StrLoss": "230708", "sL_NStrLoss": "184556", "sL_ContLoss": "115849", "geom_point": "0101000020E61000001173E6AA7B905EC045EDC031B2884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.260697790999984, 49.070849814000098 ], [ -122.25953228399996, 49.069765306000065 ], [ -122.259094907999952, 49.069979003000071 ], [ -122.25862478399992, 49.07010599600008 ], [ -122.257007284999958, 49.070100098000104 ], [ -122.25692299399995, 49.070099720000066 ], [ -122.256567073999975, 49.070098107000064 ], [ -122.256117816999989, 49.070096095000117 ], [ -122.255979490999891, 49.070029106000064 ], [ -122.255892692999964, 49.069917009000037 ], [ -122.255883290999975, 49.069131400000096 ], [ -122.255895057, 49.06910346500009 ], [ -122.255935703999967, 49.069007104000072 ], [ -122.256106192999951, 49.068929193000045 ], [ -122.256331015999947, 49.068923691000066 ], [ -122.256502604000019, 49.068919488000091 ], [ -122.25706100499994, 49.068869602000042 ], [ -122.2574007899999, 49.06877960900006 ], [ -122.257240195999913, 49.068513404000093 ], [ -122.257199188999948, 49.068137897000078 ], [ -122.25617098499994, 49.068191298000102 ], [ -122.255406590999939, 49.068222159000065 ], [ -122.255237218, 49.06822899500002 ], [ -122.254051694999987, 49.068212902 ], [ -122.253778881999935, 49.068167386000084 ], [ -122.253648772999895, 49.068109467000063 ], [ -122.253361286999933, 49.067981492000044 ], [ -122.253535740999936, 49.067814381000055 ], [ -122.253559343999896, 49.067791796000108 ], [ -122.253729118999928, 49.067629200000049 ], [ -122.254302609, 49.067186684000056 ], [ -122.254644980999927, 49.066962501000056 ], [ -122.255403806999965, 49.066632807000083 ], [ -122.25572741, 49.066353798000137 ], [ -122.255973621999942, 49.065929689000058 ], [ -122.255998750999979, 49.065690182000075 ], [ -122.256020401999962, 49.065484213000069 ], [ -122.256266589999939, 49.065145710000102 ], [ -122.256484912999937, 49.064984439000085 ], [ -122.256747477999951, 49.065146345000088 ], [ -122.258449732999978, 49.06619621700009 ], [ -122.259318123999932, 49.066731776000033 ], [ -122.26009975699999, 49.066972304000025 ], [ -122.260365633000021, 49.067015821000069 ], [ -122.260043468999953, 49.067579069000082 ], [ -122.259986428999937, 49.067678814 ], [ -122.259923807999954, 49.06778830000011 ], [ -122.260308069999965, 49.068969837000104 ], [ -122.260569011999962, 49.069772099000147 ], [ -122.260697790999984, 49.070849814000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.991337465461877", "sL_AssetLoss": "803.46", "sL_BldgLoss": "796.5", "sL_StrLoss": "754", "sL_NStrLoss": "42.5", "sL_ContLoss": "6.96", "geom_point": "0101000020E61000002751EDDBA2885EC002216131CDE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.132637585999959, 49.754741804000041 ], [ -122.13297968099999, 49.754750300000097 ], [ -122.133159496999951, 49.754778801000121 ], [ -122.133611405999929, 49.755114894000073 ], [ -122.134303179999989, 49.755264391000019 ], [ -122.135010187999939, 49.755322810000095 ], [ -122.135878710999947, 49.755563498000051 ], [ -122.136309495999967, 49.755584911000028 ], [ -122.137149116999964, 49.755986501000031 ], [ -122.137866308999918, 49.756225805000078 ], [ -122.138060172999928, 49.75634443500013 ], [ -122.137982799999946, 49.757262890000085 ], [ -122.132441465999932, 49.757066592000072 ], [ -122.132637585999959, 49.754741804000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6523250", "BldgCostT": "4235000", "sL_LossRatio": "0.958842376175219", "sL_AssetLoss": "9519.5", "sL_BldgLoss": "9127.7", "sL_StrLoss": "8355.2", "sL_NStrLoss": "772.5", "sL_ContLoss": "391.8", "geom_point": "0101000020E6100000C242F7F6B8765EC0C13D6C757BBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.853485878999919, 49.460686134000063 ], [ -121.853640864999974, 49.45896103200009 ], [ -121.85289866899997, 49.458932622000098 ], [ -121.853055193999964, 49.457190546000035 ], [ -121.850603500999981, 49.457096665000073 ], [ -121.850926462999936, 49.453503904000115 ], [ -121.85471697199992, 49.45364902900009 ], [ -121.856430150000037, 49.453714577000028 ], [ -121.856302250999946, 49.455139317 ], [ -121.856273763, 49.45545666600006 ], [ -121.857472443999924, 49.455502512000137 ], [ -121.858725379999981, 49.455550419000126 ], [ -121.858570596999954, 49.457275537000044 ], [ -121.859312769999974, 49.457303907000018 ], [ -121.859248387999941, 49.458021570000021 ], [ -121.858990433999949, 49.460896673000029 ], [ -121.853485878999919, 49.460686134000063 ] ], [ [ -121.855664189, 49.458981909000038 ], [ -121.855681221999987, 49.458856602000019 ], [ -121.856041489999939, 49.458788205000111 ], [ -121.856699119999945, 49.458973306000082 ], [ -121.856939611999977, 49.458688489000089 ], [ -121.857439212999964, 49.4586401010001 ], [ -121.857905201, 49.458734113000055 ], [ -121.858157217999988, 49.458593099000034 ], [ -121.85797318199991, 49.458177203000091 ], [ -121.857579709, 49.457893805000062 ], [ -121.856991292999965, 49.457673 ], [ -121.856109015999934, 49.457627506000073 ], [ -121.855721491999986, 49.457660192000077 ], [ -121.855456411999938, 49.457782690000037 ], [ -121.855340410999958, 49.45801630800009 ], [ -121.855490603999911, 49.458170098000011 ], [ -121.855026185999961, 49.458507602000033 ], [ -121.853962986999974, 49.458541791000115 ], [ -121.853698307999977, 49.458611605000094 ], [ -121.8536274099999, 49.458754000000113 ], [ -121.853935299999989, 49.459171311000034 ], [ -121.85433139499996, 49.459327996000077 ], [ -121.854793183999917, 49.459674004000071 ], [ -121.854980819, 49.459901897000051 ], [ -121.854935515999955, 49.460071407000079 ], [ -121.85516471699999, 49.460299294000073 ], [ -121.855644493999961, 49.460384696000077 ], [ -121.856477218999927, 49.460176797000081 ], [ -121.856493622999935, 49.46007850500007 ], [ -121.856406694, 49.459654109000077 ], [ -121.856493581, 49.459466099000039 ], [ -121.855664189, 49.458981909000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70723833", "BldgCostT": "49743333", "sL_LossRatio": "0.958349557407263", "sL_AssetLoss": "77046", "sL_BldgLoss": "73837", "sL_StrLoss": "31283", "sL_NStrLoss": "42554", "sL_ContLoss": "3209", "geom_point": "0101000020E6100000ED95811C77805EC046A9EFC2F79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.004727613999961, 49.213179919000069 ], [ -122.004857973999947, 49.211665243000049 ], [ -122.003419562999937, 49.211611889000039 ], [ -122.003729000999925, 49.20801736100001 ], [ -122.005523020999988, 49.208083904000013 ], [ -122.005652836999943, 49.208088718000106 ], [ -122.007679186999951, 49.208163839000072 ], [ -122.00773755199998, 49.208181259000078 ], [ -122.007754585999947, 49.208186342000054 ], [ -122.007756773, 49.208186995000055 ], [ -122.009117411999952, 49.208593099000019 ], [ -122.009226331999969, 49.208641365000076 ], [ -122.009356370999967, 49.208698976000044 ], [ -122.011592587999985, 49.209689709000024 ], [ -122.011482011999973, 49.209784631000041 ], [ -122.011370294999921, 49.209880515000108 ], [ -122.01091637, 49.210383390000061 ], [ -122.010902817999963, 49.210433628000047 ], [ -122.010888536, 49.211133525000093 ], [ -122.010857887999975, 49.212634611000063 ], [ -122.01085544299994, 49.212754317000112 ], [ -122.010259434999938, 49.212732246000023 ], [ -122.010203516999965, 49.213382859000028 ], [ -122.005204577999947, 49.213197607000097 ], [ -122.004727613999961, 49.213179919000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3416417", "BldgCostT": "2146667", "sL_LossRatio": "0.539700798717793", "sL_AssetLoss": "6763.34", "sL_BldgLoss": "3650.18", "sL_StrLoss": "1803.88", "sL_NStrLoss": "1846.3", "sL_ContLoss": "3113.16", "geom_point": "0101000020E610000066F28B1A257A5EC07EBACB8F89AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.905927478999928, 49.353859838000034 ], [ -121.911419572999961, 49.354067750000098 ], [ -121.911174740999968, 49.35683817000011 ], [ -121.911130720999935, 49.357336236000037 ], [ -121.91110199799999, 49.357661218000032 ], [ -121.905609478999921, 49.357453291000091 ], [ -121.905927478999928, 49.353859838000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3061167", "BldgCostT": "1901667", "sL_LossRatio": "0.485882102016374", "sL_AssetLoss": "6095.1", "sL_BldgLoss": "2961.5", "sL_StrLoss": "1261.1", "sL_NStrLoss": "1700.4", "sL_ContLoss": "3133.6", "geom_point": "0101000020E61000000FE67EA07F7A5EC0BCA9EDCBBEA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.91285119599992, 49.316474840000097 ], [ -121.916942124999963, 49.31662960700011 ], [ -121.916625234999984, 49.320223292000065 ], [ -121.911137126999975, 49.320015634000136 ], [ -121.911405209999927, 49.316979556000014 ], [ -121.911454440999961, 49.316421964000035 ], [ -121.91285119599992, 49.316474840000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4270917", "BldgCostT": "2681667", "sL_LossRatio": "0.944502644376171", "sL_AssetLoss": "7092.41", "sL_BldgLoss": "6698.8", "sL_StrLoss": "5781.3", "sL_NStrLoss": "917.5", "sL_ContLoss": "393.61", "geom_point": "0101000020E6100000F76A996FF1755EC0997B48F85EB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.83889310799999, 49.431299391000088 ], [ -121.838969944999945, 49.430446554000085 ], [ -121.839019553999947, 49.430448461000061 ], [ -121.839037574999949, 49.430248449000018 ], [ -121.839038917999957, 49.430246999000133 ], [ -121.839084389999968, 49.430040506000104 ], [ -121.839579615999924, 49.430073296000074 ], [ -121.839802452999919, 49.430013939000069 ], [ -121.844562102999944, 49.430196737000067 ], [ -121.844508344999952, 49.43079419800015 ], [ -121.84501712399998, 49.430813726000032 ], [ -121.844999131999941, 49.43101370700002 ], [ -121.845812108999951, 49.431044905000135 ], [ -121.845771451999951, 49.431496906000078 ], [ -121.845992831999979, 49.431505401000074 ], [ -121.845669639999969, 49.435098264000096 ], [ -121.844845799, 49.435066651000113 ], [ -121.844816020999943, 49.435397583000061 ], [ -121.840487272999908, 49.435231374000125 ], [ -121.840472607999956, 49.434902786000116 ], [ -121.840121009999947, 49.434575186000103 ], [ -121.840181107999911, 49.434395799000072 ], [ -121.840419817999972, 49.434210602000064 ], [ -121.841057102999983, 49.434080993000059 ], [ -121.84137900799999, 49.433895899000078 ], [ -121.841549994, 49.433699297000032 ], [ -121.841477395999945, 49.433240691000059 ], [ -121.841156289999972, 49.432850491000053 ], [ -121.840466383999939, 49.432276492000014 ], [ -121.840255293999959, 49.431833590000018 ], [ -121.840038414999967, 49.431678407000035 ], [ -121.83889310799999, 49.431299391000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75508916", "BldgCostT": "52571666", "sL_LossRatio": "0.972190107523704", "sL_AssetLoss": "27073.1", "sL_BldgLoss": "26320.2", "sL_StrLoss": "12005.2", "sL_NStrLoss": "14315", "sL_ContLoss": "752.9", "geom_point": "0101000020E610000091838E2D36785EC0B9D9614409A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.878960943999957, 49.32076992800004 ], [ -121.879036731, 49.31991841200005 ], [ -121.873875684999987, 49.319721335000139 ], [ -121.874195885999896, 49.316127772000051 ], [ -121.879683367999917, 49.316337306000086 ], [ -121.879467487999989, 49.318763370000099 ], [ -121.883778372999956, 49.318927780000088 ], [ -121.883793881999907, 49.318753317000088 ], [ -121.884082403999969, 49.318861009000017 ], [ -121.884294495999924, 49.31923280200008 ], [ -121.884340007, 49.319645794000046 ], [ -121.883107001999974, 49.320578593000043 ], [ -121.882151306999944, 49.321522897000158 ], [ -121.881457787, 49.322964209000062 ], [ -121.881350521999977, 49.323119324000039 ], [ -121.880888519999985, 49.323787398000043 ], [ -121.880486, 49.323891404000072 ], [ -121.879162094999955, 49.324012408000108 ], [ -121.878536600999965, 49.32428590000012 ], [ -121.878091013999949, 49.324550807000065 ], [ -121.877723813999978, 49.324952408000094 ], [ -121.877067684999957, 49.325332692000103 ], [ -121.876532205999951, 49.325947902000109 ], [ -121.876814994999947, 49.326167196 ], [ -121.876908004999976, 49.326375193000089 ], [ -121.876774489999931, 49.326769712000079 ], [ -121.87679719199997, 49.32682556800011 ], [ -121.875779433999952, 49.326786709000075 ], [ -121.874814077999929, 49.326749842000055 ], [ -121.875134255999939, 49.323156315000062 ], [ -121.877927973999959, 49.323262984000039 ], [ -121.878152666999966, 49.320739080000124 ], [ -121.878960943999957, 49.32076992800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.971819345401353", "sL_AssetLoss": "1367.25", "sL_BldgLoss": "1328.72", "sL_StrLoss": "1149.22", "sL_NStrLoss": "179.5", "sL_ContLoss": "38.53", "geom_point": "0101000020E61000002FE5F87893715EC0A3A96421B6B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.773069790999941, 49.396642798000101 ], [ -121.772905089999966, 49.39661430900005 ], [ -121.772673789999956, 49.397044395000087 ], [ -121.772534711, 49.397087205000062 ], [ -121.772429078999906, 49.396914793000029 ], [ -121.77241456899992, 49.396814495000093 ], [ -121.772395705999898, 49.396684011000019 ], [ -121.77234330499999, 49.39632173400009 ], [ -121.772324026999968, 49.396188328000086 ], [ -121.772264902999908, 49.395779710000092 ], [ -121.772442800999897, 49.395269906000088 ], [ -121.772647691999907, 49.395334012 ], [ -121.772860612999949, 49.395030599000073 ], [ -121.773119289999926, 49.395177296000092 ], [ -121.773407342999974, 49.39485998600005 ], [ -121.773644218999934, 49.394599102000072 ], [ -121.773705584999959, 49.394374096000035 ], [ -121.773839914999911, 49.394209542000077 ], [ -121.775853451999964, 49.394288194000126 ], [ -121.775835175999987, 49.394488159000012 ], [ -121.776647337999975, 49.394519873000078 ], [ -121.776319019999946, 49.398112724000057 ], [ -121.773035082999954, 49.397984455000021 ], [ -121.77305015099995, 49.39740196700005 ], [ -121.77305585499991, 49.39718093700003 ], [ -121.773069790999941, 49.396642798000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.96451652237532", "sL_AssetLoss": "820.1", "sL_BldgLoss": "791", "sL_StrLoss": "660", "sL_NStrLoss": "131", "sL_ContLoss": "29.1", "geom_point": "0101000020E61000003ABC9478487C5EC0C83E8E07D7A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.941018887999959, 49.296855870000122 ], [ -121.941053572, 49.295237020000023 ], [ -121.940641040999978, 49.295233239000055 ], [ -121.940648414999956, 49.294889192000021 ], [ -121.940658388999964, 49.294423814000048 ], [ -121.941440873999952, 49.294430985000083 ], [ -121.941895962999965, 49.29443515300008 ], [ -121.941890187999931, 49.294704961000065 ], [ -121.94312777, 49.294716288000103 ], [ -121.943093153999897, 49.296335140000103 ], [ -121.942680611999975, 49.296331365000071 ], [ -121.942669068999962, 49.296870983000034 ], [ -121.941018887999959, 49.296855870000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70387917", "BldgCostT": "49511667", "sL_LossRatio": "0.982698544384946", "sL_AssetLoss": "6629.5", "sL_BldgLoss": "6514.8", "sL_StrLoss": "4443", "sL_NStrLoss": "2071.8", "sL_ContLoss": "114.7", "geom_point": "0101000020E6100000F5D70A1E0F705EC0FA83BB9268B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.750444744999953, 49.380824763000085 ], [ -121.750462996999957, 49.380626187000068 ], [ -121.749528025999936, 49.380589439000047 ], [ -121.749577763999966, 49.380048397000117 ], [ -121.748695630999947, 49.380013717000082 ], [ -121.748771924999971, 49.379183965000024 ], [ -121.748559579999963, 49.37917561600009 ], [ -121.748634673999945, 49.378358919000043 ], [ -121.748324224000029, 49.378346712000059 ], [ -121.7486545739999, 49.374753842000061 ], [ -121.751744791999926, 49.374875310000036 ], [ -121.751789127999956, 49.3755144000001 ], [ -121.751828789999976, 49.376085792000062 ], [ -121.751624906999922, 49.376461804000044 ], [ -121.751662502999977, 49.376659711000073 ], [ -121.751913802999951, 49.377068490000042 ], [ -121.751944588999962, 49.377472997000027 ], [ -121.752105855999943, 49.377819240000051 ], [ -121.752205909999972, 49.378034095000018 ], [ -121.75277209399999, 49.378498389000093 ], [ -121.753531850999948, 49.378731586000072 ], [ -121.753621190999965, 49.378759009000085 ], [ -121.753753493, 49.378922806000034 ], [ -121.754312703999943, 49.379189110000056 ], [ -121.754388806999913, 49.379955384000027 ], [ -121.754599589999913, 49.380325701000103 ], [ -121.754500174999961, 49.380984063000071 ], [ -121.750444744999953, 49.380824763000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10369000", "BldgCostT": "6445000", "sL_LossRatio": "0.540878252655083", "sL_AssetLoss": "34933", "sL_BldgLoss": "18894.5", "sL_StrLoss": "8094.5", "sL_NStrLoss": "10800", "sL_ContLoss": "16038.5", "geom_point": "0101000020E61000000944151F9B7F5EC02982CD73A39A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.987419178, 49.210048663000059 ], [ -121.987442340999948, 49.209780667000082 ], [ -121.986625665999966, 49.209750242000034 ], [ -121.986679815999977, 49.209123885000061 ], [ -121.985577669999941, 49.209082815000031 ], [ -121.98577029899991, 49.206855078000068 ], [ -121.986014077999982, 49.206831650000098 ], [ -121.987856068000013, 49.206549827000082 ], [ -121.988804577999986, 49.206416244000124 ], [ -121.989171410000012, 49.20638312100003 ], [ -121.989543288999954, 49.206354195000074 ], [ -121.989560791999935, 49.206812795000054 ], [ -121.989639987999936, 49.207020709000041 ], [ -121.989842099999976, 49.207175996000046 ], [ -121.992122287999948, 49.207150296000094 ], [ -121.993127102, 49.206952403000045 ], [ -121.994778513999989, 49.206157696000062 ], [ -121.995272403999962, 49.20610779000009 ], [ -121.995792580999989, 49.206255892000115 ], [ -121.997223507999976, 49.206114903000099 ], [ -121.998357410999944, 49.205684794000021 ], [ -121.998870180999958, 49.205401399000046 ], [ -121.999394788999965, 49.205288911000096 ], [ -121.999958186999962, 49.205276099000059 ], [ -122.000336704999967, 49.205512505000108 ], [ -122.001359974999957, 49.206619603000021 ], [ -122.001164397999943, 49.208890289000088 ], [ -122.000943388999985, 49.20888208300012 ], [ -122.000903711999939, 49.209342694000128 ], [ -121.997974767999906, 49.209233917000049 ], [ -121.997945203999947, 49.209576863000052 ], [ -121.997753844999934, 49.209569754000036 ], [ -121.997697529999968, 49.210222968000082 ], [ -121.996743093999982, 49.210187503 ], [ -121.99641898599999, 49.21018468700008 ], [ -121.996419171999932, 49.210175464000081 ], [ -121.992912538, 49.210045080000114 ], [ -121.99289463599996, 49.210252482000072 ], [ -121.987419178, 49.210048663000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.977311556071892", "sL_AssetLoss": "1463.3", "sL_BldgLoss": "1430.1", "sL_StrLoss": "1274", "sL_NStrLoss": "156.1", "sL_ContLoss": "33.2", "geom_point": "0101000020E6100000A8F58614A67A5EC0D8FB64F7AAA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.915528139999978, 49.311461816000161 ], [ -121.91555775599997, 49.310112788000033 ], [ -121.91473245199991, 49.310105041000092 ], [ -121.914752891999981, 49.309174526000056 ], [ -121.911143225999979, 49.309037878000019 ], [ -121.915687201999972, 49.308911015000021 ], [ -121.916732667999923, 49.308881785000047 ], [ -121.917548007999983, 49.308927651000118 ], [ -121.918471725999979, 49.308979622000031 ], [ -121.918470442999975, 49.309038307000058 ], [ -121.91846158, 49.309443088000116 ], [ -121.918446326999941, 49.310139861000046 ], [ -121.918033672999954, 49.310135998000121 ], [ -121.918027762999941, 49.310405803000073 ], [ -121.917202453999963, 49.310398073000059 ], [ -121.917178795999973, 49.311477295000024 ], [ -121.916149666999956, 49.311467647000043 ], [ -121.915528139999978, 49.311461816000161 ] ], [ [ -121.916388979999923, 49.309850724000093 ], [ -121.916394896999947, 49.30958092 ], [ -121.915982248999939, 49.309577049000097 ], [ -121.915976329, 49.309846855000053 ], [ -121.916388979999923, 49.309850724000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.881756513818644", "sL_AssetLoss": "4171.9", "sL_BldgLoss": "3678.6", "sL_StrLoss": "2573.6", "sL_NStrLoss": "1105", "sL_ContLoss": "493.3", "geom_point": "0101000020E61000008B408A749E805EC0FDDE8531129E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.00852236299994, 49.23356538400003 ], [ -122.010397277999957, 49.232139311000068 ], [ -122.010396777999915, 49.232164278000013 ], [ -122.011220808999937, 49.232171335000025 ], [ -122.011204651999947, 49.232980787000031 ], [ -122.01112060199992, 49.232980067000071 ], [ -122.011071252999926, 49.233554117000025 ], [ -122.010860700999942, 49.236003078000145 ], [ -122.0105639399999, 49.235992095000071 ], [ -122.010530809999949, 49.236377385000019 ], [ -122.01021349, 49.236365640000024 ], [ -122.010187609999946, 49.23666659200007 ], [ -122.009858589999979, 49.236654413000039 ], [ -122.009830613999981, 49.236979699000102 ], [ -122.009666661999987, 49.236973630000065 ], [ -122.009640921999974, 49.237272904000072 ], [ -122.009360049999898, 49.237262505000075 ], [ -122.009335224999958, 49.237551110000041 ], [ -122.009091841999933, 49.237542100000063 ], [ -122.009064631999934, 49.237858416000059 ], [ -122.008876926999946, 49.237851466000095 ], [ -122.008848739999962, 49.238179120000048 ], [ -122.008555629999947, 49.238168266000045 ], [ -122.008530442999984, 49.238461026000074 ], [ -122.00828784699999, 49.238452043000031 ], [ -122.008344484999895, 49.237429251000059 ], [ -122.00852236299994, 49.23356538400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3392250", "BldgCostT": "2130000", "sL_LossRatio": "0.542594633523564", "sL_AssetLoss": "9164.3", "sL_BldgLoss": "4972.5", "sL_StrLoss": "2320.4", "sL_NStrLoss": "2652.1", "sL_ContLoss": "4191.8", "geom_point": "0101000020E6100000897EE9C4507C5EC02D0C70C56EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.941071378999965, 49.290540971000034 ], [ -121.945261369, 49.290698480000053 ], [ -121.945111648999941, 49.292409352000035 ], [ -121.944946849999923, 49.294292388 ], [ -121.94189615399992, 49.294177724000058 ], [ -121.93946168399999, 49.294086160000077 ], [ -121.939707298999963, 49.291283433000075 ], [ -121.940296892999939, 49.291090388000079 ], [ -121.941051477999949, 49.290576194000039 ], [ -121.941071378999965, 49.290540971000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6633834", "BldgCostT": "4103334", "sL_LossRatio": "0.964455649151186", "sL_AssetLoss": "3486.63", "sL_BldgLoss": "3362.7", "sL_StrLoss": "2906.3", "sL_NStrLoss": "456.4", "sL_ContLoss": "123.93", "geom_point": "0101000020E61000000A174DC2E07D5EC0DA07D5DD27A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.963301099999939, 49.260554268000121 ], [ -121.963589805000012, 49.257237741000068 ], [ -121.964749887000011, 49.257281158000126 ], [ -121.964812591999973, 49.256560569000037 ], [ -121.967576042999937, 49.256663941000063 ], [ -121.968407111999937, 49.256695015000034 ], [ -121.967636393999953, 49.257088690000103 ], [ -121.966451110999969, 49.257694099000112 ], [ -121.966623695999914, 49.257947614000038 ], [ -121.966704989999954, 49.258020216000041 ], [ -121.967392588999971, 49.25800891100009 ], [ -121.96771870799995, 49.25817260500007 ], [ -121.968064876999961, 49.258085793000099 ], [ -121.968919115999967, 49.257958995000045 ], [ -121.97037200599999, 49.257558809000095 ], [ -121.97076300499999, 49.257342546000082 ], [ -121.970901887999943, 49.257265729000061 ], [ -121.97089566399994, 49.257337352000036 ], [ -121.970614122999947, 49.260577471 ], [ -121.968804097999936, 49.260509828000131 ], [ -121.968758273000034, 49.261036914000044 ], [ -121.964036567999969, 49.260860316000027 ], [ -121.963276932, 49.260831884000069 ], [ -121.963301099999939, 49.260554268000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3773084", "BldgCostT": "2338334", "sL_LossRatio": "0.948201187238282", "sL_AssetLoss": "6404.78", "sL_BldgLoss": "6073.02", "sL_StrLoss": "5506.12", "sL_NStrLoss": "566.9", "sL_ContLoss": "331.76", "geom_point": "0101000020E61000004D38ECA5C6715EC0814FDE8D26B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.777763978999985, 49.440689293000077 ], [ -121.777621319999952, 49.439787806000027 ], [ -121.77745782099997, 49.439705201000024 ], [ -121.777125885999936, 49.439710899000083 ], [ -121.776869618999982, 49.440058401000016 ], [ -121.77680452099996, 49.439329205000043 ], [ -121.77676569499999, 49.43922101000009 ], [ -121.776171907999966, 49.439232411000077 ], [ -121.775104190999926, 49.439456013000068 ], [ -121.774656688000022, 49.439775004000111 ], [ -121.774369901999989, 49.440185201000077 ], [ -121.774174316999932, 49.44061893100011 ], [ -121.773997938999983, 49.44061204700008 ], [ -121.774326738999932, 49.437019430000106 ], [ -121.779828110999929, 49.437233995000021 ], [ -121.779788816999954, 49.437663933000039 ], [ -121.781267489999891, 49.43772155700006 ], [ -121.78103409499991, 49.440275955000111 ], [ -121.780752892999971, 49.44030620400013 ], [ -121.780360813999948, 49.441112291000167 ], [ -121.780087883999954, 49.441036806000156 ], [ -121.779872285999886, 49.440783290000098 ], [ -121.779839131999978, 49.440560459000046 ], [ -121.779821778000027, 49.440443759000104 ], [ -121.779766291999977, 49.440071211000024 ], [ -121.779487916999983, 49.439653905000107 ], [ -121.778769317999945, 49.439665297000062 ], [ -121.778519898999917, 49.440256394000038 ], [ -121.778258586999954, 49.440190910000126 ], [ -121.778241920999989, 49.440364205000016 ], [ -121.778240865999976, 49.440375005000092 ], [ -121.778233169999979, 49.440454859000056 ], [ -121.778203309999967, 49.440764793000014 ], [ -121.778341802999989, 49.441288884000038 ], [ -121.778268516999958, 49.441512497000069 ], [ -121.778025189999966, 49.441294611000075 ], [ -121.777923293999933, 49.441058484000116 ], [ -121.777763978999985, 49.440689293000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60813116", "BldgCostT": "37893879", "sL_LossRatio": "0.818858630876729", "sL_AssetLoss": "177033", "sL_BldgLoss": "144965", "sL_StrLoss": "92010", "sL_NStrLoss": "52955", "sL_ContLoss": "32068", "geom_point": "0101000020E610000034365C6026835EC02FF713DF1A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.039405675999959, 49.211633453000118 ], [ -122.03941473, 49.211527324 ], [ -122.036406179999958, 49.211416673000024 ], [ -122.036607354999887, 49.209060328000106 ], [ -122.035874871999937, 49.209033376000043 ], [ -122.035715619999948, 49.210898355000012 ], [ -122.030239898999938, 49.21069671000005 ], [ -122.030417072, 49.208624702000073 ], [ -122.027401455999936, 49.208513531000094 ], [ -122.027462989999961, 49.206500264000105 ], [ -122.037945466999986, 49.206376526000049 ], [ -122.037984751999929, 49.204869167000076 ], [ -122.037945473999983, 49.20286865300006 ], [ -122.037916845, 49.202284474000123 ], [ -122.03767282, 49.201215475000069 ], [ -122.037783262999966, 49.201219538000046 ], [ -122.037785747999962, 49.201091472000037 ], [ -122.038002539999979, 49.201093279000069 ], [ -122.038075630999955, 49.200236661000126 ], [ -122.038400596999935, 49.200248615000064 ], [ -122.038440051999942, 49.19978614500009 ], [ -122.038453044, 49.19978323600003 ], [ -122.04367814199999, 49.199975307000052 ], [ -122.043730963999948, 49.199355339000071 ], [ -122.045313307999962, 49.199029509000077 ], [ -122.047489200999976, 49.198697691000092 ], [ -122.048196608999916, 49.198536884000092 ], [ -122.049288727999965, 49.198576953000071 ], [ -122.04924691399998, 49.1990684310001 ], [ -122.048982877999919, 49.202171662000119 ], [ -122.043869608999941, 49.201983967000025 ], [ -122.043706757999985, 49.203895284000083 ], [ -122.043256955999979, 49.203878761000055 ], [ -122.043243847, 49.204032594000061 ], [ -122.040808483999953, 49.203943102000096 ], [ -122.040706979999968, 49.205133448000055 ], [ -122.04325646199996, 49.205227132000076 ], [ -122.043210012999936, 49.205772173000135 ], [ -122.043690479999981, 49.205789822000014 ], [ -122.043636672, 49.206421273000075 ], [ -122.044990476999928, 49.20647098900011 ], [ -122.044886510999945, 49.207691434000083 ], [ -122.045348141000019, 49.207708382000085 ], [ -122.045343171999974, 49.20776670100004 ], [ -122.046449641999942, 49.207807317000096 ], [ -122.046690315999953, 49.20498088100009 ], [ -122.04895082899999, 49.205063824000014 ], [ -122.049018358999945, 49.204270236000056 ], [ -122.050257340999948, 49.204315676000107 ], [ -122.050277018999935, 49.204084365000092 ], [ -122.050765707999957, 49.204102284000079 ], [ -122.050910085999959, 49.202404775000041 ], [ -122.051359249999962, 49.202421243000032 ], [ -122.051453322999947, 49.201314985000096 ], [ -122.052359109999898, 49.201348189000051 ], [ -122.052404413999938, 49.200815306000038 ], [ -122.054680701000024, 49.200898716000069 ], [ -122.054696925999963, 49.200707761000025 ], [ -122.056196891999903, 49.20076269700008 ], [ -122.056224978, 49.200431997000081 ], [ -122.057131832, 49.200465200000082 ], [ -122.057173666000011, 49.19997251800001 ], [ -122.058145770999928, 49.200008102000055 ], [ -122.05814684099991, 49.199995487000088 ], [ -122.055306985999948, 49.199891510000029 ], [ -122.055344699999964, 49.199447544000087 ], [ -122.054805597999959, 49.19942779700007 ], [ -122.054825888999986, 49.199188958000065 ], [ -122.052887846999965, 49.19911794700009 ], [ -122.05295828099996, 49.198289286000062 ], [ -122.052329378999943, 49.198266234000059 ], [ -122.052332932999917, 49.198224434000089 ], [ -122.052404966999944, 49.197377078000038 ], [ -122.051093692999927, 49.197329003000029 ], [ -122.05112502499999, 49.196960523000051 ], [ -122.051557374999931, 49.196698418000068 ], [ -122.051622965999911, 49.196658648000032 ], [ -122.051647300999917, 49.196643893000036 ], [ -122.051703287999942, 49.196330916000122 ], [ -122.051724494999945, 49.196212409000033 ], [ -122.052000685999985, 49.196044303000058 ], [ -122.052152390999964, 49.196089911000122 ], [ -122.052279312999985, 49.195839300000031 ], [ -122.052599895999947, 49.195599997000102 ], [ -122.053204595999929, 49.195631309000085 ], [ -122.053925685999943, 49.195205499000075 ], [ -122.053996383999959, 49.195071597000016 ], [ -122.053882889999926, 49.194513309000051 ], [ -122.054101302, 49.194358603000076 ], [ -122.054749820000012, 49.19393319400006 ], [ -122.054915673999972, 49.19382436500009 ], [ -122.056868636999965, 49.192543175000019 ], [ -122.056750858999948, 49.19393035900007 ], [ -122.056873162999977, 49.193934838000061 ], [ -122.056856028999974, 49.194136639000114 ], [ -122.057811530999956, 49.194171623000045 ], [ -122.057857875999957, 49.1941733190001 ], [ -122.057811, 49.194190633000112 ], [ -122.057538702999963, 49.194291212000088 ], [ -122.057807555999915, 49.194313923000053 ], [ -122.058128082999971, 49.194341001000041 ], [ -122.058610028999951, 49.194200851000048 ], [ -122.05896409399999, 49.194213810000043 ], [ -122.058974179999964, 49.194094956000079 ], [ -122.060116310999916, 49.19376280900012 ], [ -122.061793435999988, 49.193444406000062 ], [ -122.061793445999953, 49.193444426000049 ], [ -122.061771480999965, 49.194359278000064 ], [ -122.061755821999967, 49.194996386000042 ], [ -122.061749049999989, 49.195252956000083 ], [ -122.06171428899998, 49.197057646000076 ], [ -122.065485441999925, 49.197323379000061 ], [ -122.065462395999958, 49.197595380000038 ], [ -122.064776442999971, 49.197570317000036 ], [ -122.064753979999949, 49.197835396000066 ], [ -122.064542022999944, 49.1978276520001 ], [ -122.064258445999897, 49.201173599000079 ], [ -122.062568615999979, 49.20111183500012 ], [ -122.062343412999923, 49.203767537000068 ], [ -122.061436490999981, 49.203734378000078 ], [ -122.061394697999958, 49.204227059000104 ], [ -122.060338668999989, 49.20418843900007 ], [ -122.060325629999923, 49.20434210600007 ], [ -122.061830331999914, 49.204397131000128 ], [ -122.061793837999957, 49.204827384000062 ], [ -122.063172912999946, 49.204877797000115 ], [ -122.06305864799999, 49.206225387000053 ], [ -122.062868095999988, 49.20847251100006 ], [ -122.057602513999896, 49.208279928000117 ], [ -122.057392542999978, 49.208272244000028 ], [ -122.057429079999935, 49.207841996000127 ], [ -122.056049921999943, 49.207791509000053 ], [ -122.056184994999953, 49.206201403000108 ], [ -122.056079804999925, 49.206197552000141 ], [ -122.056079590999971, 49.20620008000008 ], [ -122.055590876999972, 49.206182185000067 ], [ -122.055446658999983, 49.207879691000038 ], [ -122.054292289, 49.207837413000028 ], [ -122.054197566999974, 49.208951917000078 ], [ -122.04872199499999, 49.208751210000024 ], [ -122.048729621999939, 49.208661604000056 ], [ -122.048247951999898, 49.20864393500004 ], [ -122.048215201999938, 49.209028684000018 ], [ -122.048007354999982, 49.211470358 ], [ -122.047949015999947, 49.211468219000082 ], [ -122.047134072999967, 49.211438319000145 ], [ -122.047101736999963, 49.211818080000043 ], [ -122.045920254999899, 49.21177472100004 ], [ -122.045912591000018, 49.211864708000078 ], [ -122.044882206999944, 49.211826884000075 ], [ -122.044881546999989, 49.211834633000045 ], [ -122.039405675999959, 49.211633453000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74496916", "BldgCostT": "52081666", "sL_LossRatio": "0.975384878498996", "sL_AssetLoss": "16956.65", "sL_BldgLoss": "16539.26", "sL_StrLoss": "11948.96", "sL_NStrLoss": "4590.3", "sL_ContLoss": "417.39", "geom_point": "0101000020E61000002A01E77BFC7A5EC00A45DBADBCAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.920286540999939, 49.362305045000063 ], [ -121.920424199999985, 49.360744104000069 ], [ -121.92591717599997, 49.360951278000101 ], [ -121.925848818999953, 49.361727440000095 ], [ -121.926189313999942, 49.36174027300008 ], [ -121.926067430999964, 49.363124248000105 ], [ -121.925872831999968, 49.365333744000083 ], [ -121.924232474999926, 49.365271910000018 ], [ -121.92405546699996, 49.367280681000146 ], [ -121.92382563699999, 49.367272016000115 ], [ -121.92377049000001, 49.367897786000128 ], [ -121.923024990999977, 49.36786967500008 ], [ -121.923006168999976, 49.368083204000065 ], [ -121.922840946999941, 49.36807697400009 ], [ -121.922713537999954, 49.369522307000054 ], [ -121.920331086999965, 49.369432431000078 ], [ -121.917219558999989, 49.369314973000087 ], [ -121.917536738999971, 49.365721549000114 ], [ -121.917701951999931, 49.365727788000086 ], [ -121.91782950699999, 49.364282453000087 ], [ -121.91857494599995, 49.364310599000135 ], [ -121.918593785999974, 49.364097069000117 ], [ -121.918823598999921, 49.364105746000092 ], [ -121.918878808999978, 49.363479975000097 ], [ -121.92017858899996, 49.363529038000074 ], [ -121.920203006999955, 49.363252185000107 ], [ -121.920286540999939, 49.362305045000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.972662545049665", "sL_AssetLoss": "682.58", "sL_BldgLoss": "663.92", "sL_StrLoss": "551.92", "sL_NStrLoss": "112", "sL_ContLoss": "18.66", "geom_point": "0101000020E6100000DE0F4FE18E7A5EC047569F27F5AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.914885451999979, 49.359490858000058 ], [ -121.914891385999923, 49.359221054000052 ], [ -121.914478324999934, 49.359217175000033 ], [ -121.914472384999939, 49.359486978000049 ], [ -121.914885451999979, 49.359490858000058 ], [ -121.914869425999953, 49.360219167 ], [ -121.914867639999898, 49.360300266000102 ], [ -121.913628424999914, 49.360288626000141 ], [ -121.913640311999956, 49.359749020000045 ], [ -121.913227244999973, 49.359745136000058 ], [ -121.913237713999976, 49.35927001400006 ], [ -121.913251026999959, 49.358665925000018 ], [ -121.912837968999952, 49.358662040000048 ], [ -121.912852707999917, 49.357993452000088 ], [ -121.912855811999975, 49.357852632000132 ], [ -121.91450801900001, 49.357868159000084 ], [ -121.91450208, 49.358137963000104 ], [ -121.915328187999989, 49.358145717000085 ], [ -121.91532225399996, 49.358415521000019 ], [ -121.916148366999934, 49.35842327000011 ], [ -121.916142436999905, 49.358693074000051 ], [ -121.916968556999919, 49.358700817000077 ], [ -121.916962628999954, 49.35897062100004 ], [ -121.917788752999968, 49.358978359000112 ], [ -121.91777466899994, 49.359620098000029 ], [ -121.917770990999912, 49.359787769000029 ], [ -121.9157056499999, 49.359768414000065 ], [ -121.915711581999972, 49.359498610000074 ], [ -121.914885451999979, 49.359490858000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11332500", "BldgCostT": "7080000", "sL_LossRatio": "0.983139782339136", "sL_AssetLoss": "7588.87", "sL_BldgLoss": "7460.92", "sL_StrLoss": "7062.22", "sL_NStrLoss": "398.7", "sL_ContLoss": "127.95", "geom_point": "0101000020E6100000FF7854A1E6895EC0062382B38CDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.154865296999958, 49.741337930000014 ], [ -122.154872723999958, 49.741249343000078 ], [ -122.152763929999978, 49.741174974000096 ], [ -122.152770442999923, 49.74109731500009 ], [ -122.152159412999978, 49.741075759000054 ], [ -122.152175698999926, 49.740881660000106 ], [ -122.15118869099993, 49.74084683300002 ], [ -122.151216883999965, 49.740510904000097 ], [ -122.149958869999949, 49.740466501000057 ], [ -122.149980065999927, 49.740214025000064 ], [ -122.14952587099998, 49.740197990000027 ], [ -122.14953987799997, 49.74003116100009 ], [ -122.14898236399999, 49.740011475000102 ], [ -122.149283972999967, 49.736419319000035 ], [ -122.149805733999983, 49.736437742000092 ], [ -122.149919089999969, 49.736441744000118 ], [ -122.149991690999983, 49.735576834 ], [ -122.15553050599999, 49.735772246000103 ], [ -122.155502035999973, 49.736111903000086 ], [ -122.157139071999921, 49.736169604000125 ], [ -122.157096020999958, 49.736683447000075 ], [ -122.157588289999964, 49.73670079300004 ], [ -122.157567227999948, 49.736952195000136 ], [ -122.158114586999943, 49.736971480000079 ], [ -122.158109622999945, 49.737030734 ], [ -122.158564773999942, 49.737046768000084 ], [ -122.1585436189999, 49.737299357000033 ], [ -122.15899787499994, 49.737315358 ], [ -122.15899004299996, 49.737408871000063 ], [ -122.159613860999954, 49.737430841000076 ], [ -122.159596954999955, 49.737632739000162 ], [ -122.159900662999931, 49.737643434000063 ], [ -122.159878193999972, 49.737911782000019 ], [ -122.160705552999957, 49.737940913000095 ], [ -122.160404826999965, 49.741533093000051 ], [ -122.160179004999961, 49.741525144000086 ], [ -122.154865296999958, 49.741337930000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14797661", "BldgCostT": "8965743", "sL_LossRatio": "0.951825051890417", "sL_AssetLoss": "13080.45", "sL_BldgLoss": "12450.3", "sL_StrLoss": "10595.7", "sL_NStrLoss": "1854.6", "sL_ContLoss": "630.15", "geom_point": "0101000020E61000000F1E1AD4C6715EC04DBED9E6C6B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.776418085999978, 49.412753501000061 ], [ -121.776582936999944, 49.412456874000078 ], [ -121.776676888999987, 49.412287810000123 ], [ -121.77639218099999, 49.411876893000034 ], [ -121.776344291, 49.411807803000137 ], [ -121.776261814999913, 49.411249499000128 ], [ -121.775749806999968, 49.410263894000089 ], [ -121.775473618999982, 49.410224101000018 ], [ -121.774794802999921, 49.410379306000053 ], [ -121.773802689999968, 49.41041350100005 ], [ -121.773542287999987, 49.410276804000112 ], [ -121.773444603999963, 49.409843796000054 ], [ -121.77298970199999, 49.409821008000044 ], [ -121.773061082999931, 49.409660100000075 ], [ -121.773396501999954, 49.409519089000121 ], [ -121.773470093999933, 49.409339610000075 ], [ -121.774234097, 49.409077599000057 ], [ -121.774167677999984, 49.408448093000104 ], [ -121.774282903999961, 49.408206001000039 ], [ -121.774646609999962, 49.408020793000063 ], [ -121.774837890999947, 49.408001402000075 ], [ -121.77544779399993, 49.407939609000039 ], [ -121.775331089999924, 49.407642010000146 ], [ -121.77524540499999, 49.40758600600001 ], [ -121.774892834999946, 49.407355661000089 ], [ -121.77471008899991, 49.407236253000065 ], [ -121.774463602999958, 49.407075210000116 ], [ -121.774222292999966, 49.406828808000078 ], [ -121.773958512, 49.406915593000093 ], [ -121.773536389999947, 49.406704909000084 ], [ -121.773464889999957, 49.406209198000077 ], [ -121.773274597999958, 49.405926803000114 ], [ -121.773092521999956, 49.405656603000047 ], [ -121.773434291999976, 49.405777704000101 ], [ -121.774054000999953, 49.405810499000047 ], [ -121.774558305999932, 49.40605969900011 ], [ -121.775010293999912, 49.406172213000126 ], [ -121.775165484999931, 49.406294464000069 ], [ -121.775402601999986, 49.406481298000067 ], [ -121.775581786999979, 49.406492611000054 ], [ -121.775859607999962, 49.406378710000098 ], [ -121.77554021399996, 49.405917296000055 ], [ -121.775557782999968, 49.405754892000047 ], [ -121.776005289999929, 49.406029794000105 ], [ -121.776212405, 49.406049709000079 ], [ -121.776786108999971, 49.40571358800004 ], [ -121.776761299999947, 49.405596785000036 ], [ -121.776045401999966, 49.404995810000095 ], [ -121.775981444999942, 49.404808809000066 ], [ -121.775971798999947, 49.404780636000055 ], [ -121.775960262999931, 49.404746856000017 ], [ -121.775899160999984, 49.404568291 ], [ -121.775880248999897, 49.404512943000078 ], [ -121.775869382999957, 49.404481184000083 ], [ -121.777104149999971, 49.404529386000043 ], [ -121.777067795999955, 49.404927190000087 ], [ -121.777805152999946, 49.404955968000145 ], [ -121.777476850000014, 49.408548766000102 ], [ -121.777093979999933, 49.408533825000092 ], [ -121.777087735999913, 49.408602149000039 ], [ -121.77871775199999, 49.408665753000015 ], [ -121.778592077999988, 49.410041330000055 ], [ -121.780001894999927, 49.410096322000044 ], [ -121.779968312999969, 49.410463999000108 ], [ -121.780168813999936, 49.410471818000062 ], [ -121.779998914999908, 49.412331988000055 ], [ -121.780848205999945, 49.412365104000095 ], [ -121.78080459799996, 49.412842638000072 ], [ -121.780890935999935, 49.412846004000073 ], [ -121.780562817000018, 49.416438770000063 ], [ -121.780533391999882, 49.416437623000057 ], [ -121.78048524399999, 49.41696477000005 ], [ -121.780401755999904, 49.416961515000061 ], [ -121.780109306999947, 49.420163070000029 ], [ -121.778133397999937, 49.420086013000109 ], [ -121.778097767999952, 49.419739876000058 ], [ -121.778048890999955, 49.419264991000027 ], [ -121.777912990999965, 49.419030997000057 ], [ -121.777262109999981, 49.417910460000058 ], [ -121.777193822999919, 49.417792884000121 ], [ -121.777125858999952, 49.417675835000097 ], [ -121.776897413999961, 49.417282496000055 ], [ -121.776708204999949, 49.416578909000108 ], [ -121.776729438999922, 49.416306326000026 ], [ -121.776743497, 49.416126347000066 ], [ -121.77677049299993, 49.415779896000096 ], [ -121.777251902999936, 49.415567494000079 ], [ -121.777390902999969, 49.415506160000078 ], [ -121.777459857999958, 49.415475761000089 ], [ -121.777606582999951, 49.415410999000031 ], [ -121.777623423999927, 49.41525720000007 ], [ -121.777461504999962, 49.415157485000051 ], [ -121.777398699999978, 49.414868405000036 ], [ -121.777449439999913, 49.414822687000019 ], [ -121.777553484999913, 49.414728926000087 ], [ -121.777793788999958, 49.414512394000099 ], [ -121.777819105999981, 49.414063687000031 ], [ -121.776879401999935, 49.413255912000068 ], [ -121.776739010999975, 49.413135208000064 ], [ -121.776493309999964, 49.413051098000061 ], [ -121.776418085999978, 49.412753501000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.949586556415044", "sL_AssetLoss": "1124.7", "sL_BldgLoss": "1068", "sL_StrLoss": "842", "sL_NStrLoss": "226", "sL_ContLoss": "56.7", "geom_point": "0101000020E61000008056AA55C57B5EC063B46D9CBDA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.934658420999966, 49.292780578000105 ], [ -121.934711284999963, 49.292782569000053 ], [ -121.93439593399998, 49.296376436000081 ], [ -121.934374124999962, 49.296375614000034 ], [ -121.934323663, 49.296950635000059 ], [ -121.933843413999938, 49.296932544000086 ], [ -121.93334158499998, 49.296055209000038 ], [ -121.933148715999963, 49.295378703000083 ], [ -121.933122882999939, 49.294092603000109 ], [ -121.933340184999963, 49.293564205000038 ], [ -121.934658420999966, 49.292780578000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.975087243117488", "sL_AssetLoss": "2063.2", "sL_BldgLoss": "2011.8", "sL_StrLoss": "1808", "sL_NStrLoss": "203.8", "sL_ContLoss": "51.4", "geom_point": "0101000020E61000006353D76F607A5EC0D535838D25A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.911709757999986, 49.316166000000159 ], [ -121.911713115999973, 49.316013586000103 ], [ -121.911419694999964, 49.316010823000077 ], [ -121.910887713999969, 49.316005811000096 ], [ -121.91089961299997, 49.315466201000092 ], [ -121.910486916999929, 49.315462311000083 ], [ -121.910492866999959, 49.315192506000116 ], [ -121.91008017299994, 49.315188614000078 ], [ -121.910086127999975, 49.314918809000048 ], [ -121.909673435999977, 49.314914917000102 ], [ -121.909685346999936, 49.314375307000056 ], [ -121.909272660999989, 49.314371412000057 ], [ -121.90929053399995, 49.31356199800004 ], [ -121.909729917999925, 49.313566144000063 ], [ -121.910115895000018, 49.313569786000073 ], [ -121.91011963899993, 49.313400089000076 ], [ -121.910121846999971, 49.313299980000089 ], [ -121.910534526, 49.313303872000091 ], [ -121.910540476999969, 49.31303406700011 ], [ -121.911203956999927, 49.313040320000034 ], [ -121.911365830999912, 49.313041845000065 ], [ -121.911367564000017, 49.312963233000055 ], [ -121.911371776999971, 49.312772040000056 ], [ -121.9126098, 49.312783696000096 ], [ -121.912621677999965, 49.312244086000042 ], [ -121.913034347999925, 49.312247969000104 ], [ -121.913038659999955, 49.312051992000072 ], [ -121.913040285999969, 49.311978163000077 ], [ -121.912988223, 49.311977674000026 ], [ -121.912627617999973, 49.311974281000083 ], [ -121.912633556999964, 49.311704476000017 ], [ -121.912220890999947, 49.311700593000047 ], [ -121.91223871499993, 49.31089117700003 ], [ -121.913476692999922, 49.310902824000038 ], [ -121.913470756999956, 49.311172628000051 ], [ -121.913883418999916, 49.311176508000074 ], [ -121.91387155299995, 49.311716118000106 ], [ -121.914696884999969, 49.311723873000098 ], [ -121.914681943999966, 49.312403912000065 ], [ -121.914673173999958, 49.312803095000056 ], [ -121.914260497999976, 49.312799218000059 ], [ -121.914242705999968, 49.313608633000044 ], [ -121.913830024, 49.313604756000089 ], [ -121.91382409199997, 49.313874561000034 ], [ -121.913411407999973, 49.313870681000076 ], [ -121.913405472999955, 49.314140486000078 ], [ -121.912992786999936, 49.31413660500008 ], [ -121.91298684899999, 49.314406410000068 ], [ -121.911336096999989, 49.314390870000075 ], [ -121.911330149999941, 49.314660676000067 ], [ -121.911742840999949, 49.314664562000132 ], [ -121.911736895999951, 49.31493436800011 ], [ -121.912149588999952, 49.314938253000051 ], [ -121.912143644999901, 49.315208058000053 ], [ -121.912556339999952, 49.315211943000101 ], [ -121.912550398999954, 49.315481748000138 ], [ -121.912963098, 49.315485630000076 ], [ -121.912953893999926, 49.315903807000076 ], [ -121.912945281999924, 49.316295045000082 ], [ -121.911707171999979, 49.316283392000045 ], [ -121.911709757999986, 49.316166000000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5646000", "BldgCostT": "3630000", "sL_LossRatio": "0.984484666632007", "sL_AssetLoss": "5385.64", "sL_BldgLoss": "5302.08", "sL_StrLoss": "5064.48", "sL_NStrLoss": "237.6", "sL_ContLoss": "83.56", "geom_point": "0101000020E6100000E93F4A70938A5EC0170A229CE0E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.162774178999953, 49.774480263000051 ], [ -122.162825556999962, 49.773866681000058 ], [ -122.162597412999915, 49.773858659000027 ], [ -122.162600603999962, 49.773820553000114 ], [ -122.161001459000019, 49.77376431800014 ], [ -122.161168257999947, 49.771773133000067 ], [ -122.161209019999944, 49.771286508000038 ], [ -122.161362708999931, 49.771321001000068 ], [ -122.16220251, 49.770912204000034 ], [ -122.16231661099998, 49.77065300200011 ], [ -122.16271670499998, 49.770808284000104 ], [ -122.16348199499997, 49.770769811000051 ], [ -122.163804918, 49.770618797000068 ], [ -122.163823310999987, 49.770277002000064 ], [ -122.163813555999965, 49.770260597000096 ], [ -122.16684538799997, 49.770367126000103 ], [ -122.166842201999913, 49.770405233000119 ], [ -122.168441235999964, 49.770461384000058 ], [ -122.168415916999919, 49.770764230000076 ], [ -122.16905223399999, 49.770786568000062 ], [ -122.168963006999917, 49.771853974000116 ], [ -122.16875194699999, 49.774378606000056 ], [ -122.168343727999982, 49.774364276 ], [ -122.168317744999939, 49.774675016000124 ], [ -122.162774178999953, 49.774480263000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5638167", "BldgCostT": "3416667", "sL_LossRatio": "0.893541702642031", "sL_AssetLoss": "4632.8", "sL_BldgLoss": "4139.6", "sL_StrLoss": "3065.5", "sL_NStrLoss": "1074.1", "sL_ContLoss": "493.2", "geom_point": "0101000020E61000001EDCBEC384765EC0A4E6069ED6A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.849794737999929, 49.304846625 ], [ -121.849848500999911, 49.304246598000084 ], [ -121.846734870999953, 49.304126845000027 ], [ -121.846853197999934, 49.302807179000069 ], [ -121.84905911, 49.30240719800004 ], [ -121.850268009000018, 49.30248260000004 ], [ -121.850936438999923, 49.302293800000058 ], [ -121.851100004999964, 49.30224759300004 ], [ -121.851516809999964, 49.302593708000131 ], [ -121.851843797999933, 49.302767509000063 ], [ -121.851995889999969, 49.30275041400003 ], [ -121.85213079, 49.302284709000084 ], [ -121.852449809999925, 49.302108096000026 ], [ -121.85322649699998, 49.301881599000048 ], [ -121.853700781999933, 49.301598193000075 ], [ -121.854417481999945, 49.301524103000084 ], [ -121.854718039999938, 49.301429860000013 ], [ -121.855602314999942, 49.301463815000041 ], [ -121.855280774, 49.30505740200001 ], [ -121.849794737999929, 49.304846625 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69894916", "BldgCostT": "49171666", "sL_LossRatio": "0.976617355192715", "sL_AssetLoss": "11991.8", "sL_BldgLoss": "11711.4", "sL_StrLoss": "5652.4", "sL_NStrLoss": "6059", "sL_ContLoss": "280.4", "geom_point": "0101000020E61000008EDD8982AE7B5EC0361D8514D1A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.930623548999932, 49.305469394000077 ], [ -121.930738838999929, 49.304157071000134 ], [ -121.928154851999935, 49.304059636000019 ], [ -121.929539881, 49.302718191000096 ], [ -121.930124722999977, 49.302120424000101 ], [ -121.930220263999956, 49.302022732000083 ], [ -121.930239134999937, 49.302003365000118 ], [ -121.931207948999926, 49.301009557000064 ], [ -121.929108725999953, 49.301824648000022 ], [ -121.92895619799998, 49.301797477000093 ], [ -121.928316743, 49.301800462000166 ], [ -121.928301677999954, 49.300459452000034 ], [ -121.931789243999972, 49.30059095000005 ], [ -121.932455256999944, 49.300616049000041 ], [ -121.932340025999935, 49.30192838100006 ], [ -121.936425304999915, 49.302082246000104 ], [ -121.936110022999927, 49.305676067000043 ], [ -121.930623548999932, 49.305469394000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.985382185127552", "sL_AssetLoss": "2120.7", "sL_BldgLoss": "2089.7", "sL_StrLoss": "1980", "sL_NStrLoss": "109.7", "sL_ContLoss": "31", "geom_point": "0101000020E6100000C0E99FD8317E5EC066D54A95E6D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.970744218999926, 49.632406396000093 ], [ -121.969976283, 49.632094498000043 ], [ -121.969376693999948, 49.632232713000086 ], [ -121.968849502999916, 49.632246889000072 ], [ -121.968195368999929, 49.63213507300005 ], [ -121.968352361999919, 49.630344899000058 ], [ -121.968393833999968, 49.630346436000139 ], [ -121.973877722999987, 49.630549559 ], [ -121.973861750000012, 49.630731948000054 ], [ -121.974461414999951, 49.630754143000068 ], [ -121.97414685199999, 49.634346344000079 ], [ -121.973878097999929, 49.634336397000069 ], [ -121.971771102999952, 49.634258395000103 ], [ -121.971758704999971, 49.634179610000025 ], [ -121.971449917999934, 49.633882 ], [ -121.971108504999947, 49.633552888000025 ], [ -121.97110344399999, 49.633222879000101 ], [ -121.971096900999953, 49.632796704000043 ], [ -121.970744218999926, 49.632406396000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.927595453965011", "sL_AssetLoss": "3915.5", "sL_BldgLoss": "3632", "sL_StrLoss": "2891", "sL_NStrLoss": "741", "sL_ContLoss": "283.5", "geom_point": "0101000020E610000067B98D82B77E5EC055F46658B59A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.978931068999913, 49.207531778000117 ], [ -121.982792387999908, 49.207149731000115 ], [ -121.982564387999943, 49.209784531000011 ], [ -121.982046421999939, 49.209765213000047 ], [ -121.982035471999936, 49.209891744000039 ], [ -121.976560104, 49.209687373000087 ], [ -121.976688679999953, 49.208203772000083 ], [ -121.978514284999989, 49.207903698000088 ], [ -121.97877830299997, 49.207771289000071 ], [ -121.978914885, 49.207533240000117 ], [ -121.978931068999913, 49.207531778000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13895750", "BldgCostT": "8615000", "sL_LossRatio": "0.643965904727589", "sL_AssetLoss": "10990.38", "sL_BldgLoss": "7077.43", "sL_StrLoss": "4830.33", "sL_NStrLoss": "2247.1", "sL_ContLoss": "3912.95", "geom_point": "0101000020E610000049EB777A88705EC0B7C824C0BCC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.754853658999949, 49.530121368000039 ], [ -121.755144786999949, 49.526961322000069 ], [ -121.755544932999968, 49.526976977000118 ], [ -121.755572386999972, 49.526678932000017 ], [ -121.755837751999977, 49.526689312000094 ], [ -121.755860987999952, 49.526437038000054 ], [ -121.755863462999969, 49.526437135000023 ], [ -121.755920520999979, 49.525817637000053 ], [ -121.756295711999897, 49.525832313000137 ], [ -121.756345732999961, 49.525289146 ], [ -121.75659160099994, 49.525298763000073 ], [ -121.756661860999927, 49.524535751000045 ], [ -121.762173586999936, 49.524751185000127 ], [ -121.762153707999943, 49.524967332000124 ], [ -121.762715264999954, 49.524989264000041 ], [ -121.762347887999979, 49.525340095000033 ], [ -121.760872890999948, 49.526332689000121 ], [ -121.760584205999976, 49.526832598000077 ], [ -121.760809412999933, 49.527194408000064 ], [ -121.761093895999963, 49.52744079800005 ], [ -121.76118961899999, 49.527423698000085 ], [ -121.762087685999944, 49.526920896 ], [ -121.763176189999953, 49.525969614000033 ], [ -121.763492201999952, 49.526036496000103 ], [ -121.763921496999927, 49.526472289000019 ], [ -121.764255615999943, 49.52700639800004 ], [ -121.764156100999941, 49.528192803000081 ], [ -121.765196088999929, 49.528564496000065 ], [ -121.765462407999976, 49.528701534000056 ], [ -121.763556872, 49.528627149000037 ], [ -121.763552743999966, 49.528790740000083 ], [ -121.763138276999953, 49.528786309000076 ], [ -121.763131468999958, 49.529056090000076 ], [ -121.762716997999974, 49.529051658000071 ], [ -121.762710189999964, 49.529321438000132 ], [ -121.762524454999919, 49.529319452000053 ], [ -121.762385477999942, 49.530830585000103 ], [ -121.76203226, 49.53081679000011 ], [ -121.762013772000017, 49.531017793000025 ], [ -121.761642458999958, 49.531003290000093 ], [ -121.761622467999985, 49.531220603000065 ], [ -121.761363965999948, 49.531210505000075 ], [ -121.761338169999988, 49.53149090800008 ], [ -121.761043350999969, 49.531479391000062 ], [ -121.760993086999974, 49.532025715000067 ], [ -121.758552703999982, 49.531930353000085 ], [ -121.758374681999925, 49.533864073000089 ], [ -121.75286188599992, 49.53364845000003 ], [ -121.753192993999932, 49.530056385000108 ], [ -121.754853658999949, 49.530121368000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.980001465094132", "sL_AssetLoss": "1365.1", "sL_BldgLoss": "1337.8", "sL_StrLoss": "1203", "sL_NStrLoss": "134.8", "sL_ContLoss": "27.3", "geom_point": "0101000020E6100000CAEA2D5058745EC01B7243BE91BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.816185486999956, 49.457127590000084 ], [ -121.816340014999966, 49.457029302000137 ], [ -121.816753998999957, 49.457096200000066 ], [ -121.817172789000011, 49.456839902000098 ], [ -121.817049411999989, 49.456263108000073 ], [ -121.816332480999975, 49.455644997000064 ], [ -121.816639398999939, 49.455466912000155 ], [ -121.817159396999955, 49.455662096000054 ], [ -121.817298767999944, 49.455630630000059 ], [ -121.817771298999943, 49.455523889000041 ], [ -121.818100612999956, 49.455607905000143 ], [ -121.818111799999926, 49.455707600000046 ], [ -121.818423217000017, 49.455899895000108 ], [ -121.818388210999927, 49.456214694000089 ], [ -121.81843693899999, 49.456294164000077 ], [ -121.818542092999948, 49.45646562400006 ], [ -121.81873352299999, 49.456777787000064 ], [ -121.818826615, 49.456929601000091 ], [ -121.819291183999923, 49.457096196000087 ], [ -121.819337495999918, 49.45747358800007 ], [ -121.819222189999934, 49.457724307000099 ], [ -121.820275988999967, 49.458442481000063 ], [ -121.820229129999944, 49.458959904000018 ], [ -121.81591896499998, 49.458793519000075 ], [ -121.816010397999932, 49.458735508000039 ], [ -121.816094784999905, 49.458637193000065 ], [ -121.816009007999938, 49.458204288000012 ], [ -121.816191096999958, 49.457540602000059 ], [ -121.816185486999956, 49.457127590000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.957203822804592", "sL_AssetLoss": "3327.4", "sL_BldgLoss": "3185", "sL_StrLoss": "2553", "sL_NStrLoss": "632", "sL_ContLoss": "142.4", "geom_point": "0101000020E61000007F283D78927B5EC070EE4CF4BBA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.929721711999932, 49.292594505000061 ], [ -121.93319224399994, 49.292725339000135 ], [ -121.932905616999932, 49.293262297000098 ], [ -121.932277289999917, 49.293725201 ], [ -121.932145392999985, 49.294109713000125 ], [ -121.932227701000031, 49.295407189000052 ], [ -121.933063799999957, 49.296781490000079 ], [ -121.933169342999989, 49.296907148000081 ], [ -121.928838229999911, 49.296743869000068 ], [ -121.929113566999973, 49.293610359000084 ], [ -121.929721711999932, 49.292594505000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5456084", "BldgCostT": "3553334", "sL_LossRatio": "0.616296201719298", "sL_AssetLoss": "5952.43", "sL_BldgLoss": "3668.46", "sL_StrLoss": "2327.86", "sL_NStrLoss": "1340.6", "sL_ContLoss": "2283.97", "geom_point": "0101000020E6100000C1B75D2692745EC0687D04DDE2C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.822407378999969, 49.580271105000065 ], [ -121.82262689699999, 49.577852579000101 ], [ -121.822523113000031, 49.577848588000052 ], [ -121.822510810999972, 49.577984121000085 ], [ -121.821179208999979, 49.577932905000061 ], [ -121.821162163999958, 49.578120653000063 ], [ -121.815643780999935, 49.57790822900008 ], [ -121.815970314000012, 49.574316204000112 ], [ -121.816500694999988, 49.57433663300008 ], [ -121.816571431999989, 49.573558317000071 ], [ -121.817310913999947, 49.573586794000043 ], [ -121.817320805999927, 49.57347793400006 ], [ -121.817696383999973, 49.573492396000063 ], [ -121.817882013999963, 49.573532501000081 ], [ -121.817821186999964, 49.573729007000104 ], [ -121.818130393999951, 49.574110711000039 ], [ -121.818601589999943, 49.574123515000117 ], [ -121.819530210999957, 49.57458350000006 ], [ -121.819888813999967, 49.574604891000035 ], [ -121.820183707999931, 49.574428302000072 ], [ -121.821102884999959, 49.574176204000068 ], [ -121.821861687999913, 49.573707593000051 ], [ -121.822293083999938, 49.573568103000085 ], [ -121.822333705999952, 49.573622198000095 ], [ -121.821900076999896, 49.573851496000032 ], [ -121.821276192999917, 49.57447529700007 ], [ -121.82085901, 49.57515459200004 ], [ -121.820489413999965, 49.575529198000027 ], [ -121.820514489999965, 49.575654512000021 ], [ -121.821470598999937, 49.576168697000099 ], [ -121.822064306999906, 49.575626104000072 ], [ -121.822524618999964, 49.575440904000089 ], [ -121.822743492999933, 49.575569107000057 ], [ -121.822856818999924, 49.576056207000107 ], [ -121.823347405999982, 49.576331001000064 ], [ -121.823465027999973, 49.576360264000058 ], [ -121.823433655999906, 49.576705998000087 ], [ -121.824876397999958, 49.576761460000064 ], [ -121.82510219199996, 49.577014689000087 ], [ -121.82612370399994, 49.577645594 ], [ -121.826616474999952, 49.577901896000078 ], [ -121.827108508999984, 49.578159683000145 ], [ -121.827490181999963, 49.578414695000049 ], [ -121.827695394999949, 49.578461699000044 ], [ -121.828109794999975, 49.578456418 ], [ -121.827926075000022, 49.580483185000062 ], [ -121.822407378999969, 49.580271105000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.863190823774765", "sL_AssetLoss": "479.5", "sL_BldgLoss": "413.9", "sL_StrLoss": "83.9", "sL_NStrLoss": "330", "sL_ContLoss": "65.6", "geom_point": "0101000020E61000002942EA76B67F5EC036E44460D19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.99491652899998, 49.239167640000105 ], [ -121.996878455999934, 49.239240517000056 ], [ -121.99670143099992, 49.239331239000073 ], [ -121.996806108999962, 49.239584050000076 ], [ -121.996637031999953, 49.239789443000035 ], [ -121.996636123999934, 49.239834450000046 ], [ -121.996566549999969, 49.239878838000024 ], [ -121.996599087999954, 49.240310978000117 ], [ -121.996528083999962, 49.240427104000013 ], [ -121.996415766999959, 49.24054311000004 ], [ -121.995970585999913, 49.240818054000066 ], [ -121.995927467999934, 49.240907626000116 ], [ -121.995862326999969, 49.241410896000033 ], [ -121.995859919999972, 49.241527778000012 ], [ -121.995887019999955, 49.241546046000096 ], [ -121.995817169999924, 49.242283161000074 ], [ -121.995715997, 49.242534098000128 ], [ -121.995326687, 49.242755576000036 ], [ -121.995238355999987, 49.242785458000085 ], [ -121.994606201999915, 49.242761972000096 ], [ -121.99491652899998, 49.239167640000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.991431077525133", "sL_AssetLoss": "741.05", "sL_BldgLoss": "734.7", "sL_StrLoss": "699", "sL_NStrLoss": "35.7", "sL_ContLoss": "6.35", "geom_point": "0101000020E61000000DAD0CB2FE745EC04D31E6325ED04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.826891704999952, 49.628133512000055 ], [ -121.826398621999942, 49.626734204000066 ], [ -121.826072519999968, 49.626141177000079 ], [ -121.828862980999958, 49.626248241000056 ], [ -121.828839629999933, 49.626505620000046 ], [ -121.829217985999946, 49.626520131000063 ], [ -121.829171014999957, 49.627037870000038 ], [ -121.829289915999965, 49.627042430000088 ], [ -121.828964047999975, 49.630634223000115 ], [ -121.828190237999934, 49.630604545000075 ], [ -121.828101088999958, 49.630232298000131 ], [ -121.828186503999959, 49.629576707000162 ], [ -121.828113409999929, 49.629180200000093 ], [ -121.828005900999983, 49.62899030800002 ], [ -121.827215608999921, 49.628478399000059 ], [ -121.826891704999952, 49.628133512000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104457972", "BldgCostT": "70828933", "sL_LossRatio": "0.97011229540172", "sL_AssetLoss": "39374.72", "sL_BldgLoss": "38197.9", "sL_StrLoss": "31970.1", "sL_NStrLoss": "6227.8", "sL_ContLoss": "1176.82", "geom_point": "0101000020E61000009089102ECF7C5EC078F6F0C0DBA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.951637787999985, 49.266709297000013 ], [ -121.951299379999938, 49.266462994000101 ], [ -121.950612501999927, 49.266447290000045 ], [ -121.94935352399996, 49.266777704000098 ], [ -121.948708683999939, 49.266772002000017 ], [ -121.94766612899997, 49.26652516700004 ], [ -121.947367209999953, 49.266454389000032 ], [ -121.946516031999977, 49.266183638000051 ], [ -121.946566833, 49.265602591000082 ], [ -121.945056872999913, 49.265588812000033 ], [ -121.944987985999887, 49.265550948000048 ], [ -121.9449929459999, 49.265318365000105 ], [ -121.944625687999945, 49.265315011000062 ], [ -121.944175543999947, 49.264975143000107 ], [ -121.944179894999976, 49.264771212000021 ], [ -121.943902084999976, 49.264768673000013 ], [ -121.943769723999964, 49.264668736000118 ], [ -121.943783750999941, 49.264011634000042 ], [ -121.942844646999959, 49.263976311000043 ], [ -121.942412425000015, 49.263539105000085 ], [ -121.94207049299996, 49.262879615000045 ], [ -121.941984996999963, 49.2623839930001 ], [ -121.941741895999897, 49.262139087999984 ], [ -121.941578599999971, 49.262020907000093 ], [ -121.941399787999956, 49.262027997000104 ], [ -121.941091382, 49.261746001000134 ], [ -121.940775311999985, 49.26167188900012 ], [ -121.940293935999975, 49.26142412800008 ], [ -121.940570287999904, 49.258267594000088 ], [ -121.945518145999969, 49.258453736000099 ], [ -121.945558197999929, 49.257995663000074 ], [ -121.943156878999929, 49.257905352000073 ], [ -121.943471289999948, 49.25431125100009 ], [ -121.944884282999922, 49.2543644 ], [ -121.944984087999927, 49.25322298400004 ], [ -121.950464451999949, 49.253428945000074 ], [ -121.950406690999927, 49.254090411000043 ], [ -121.950997634999979, 49.254112604000071 ], [ -121.951017905999933, 49.253880431000084 ], [ -121.951324357, 49.253891938000031 ], [ -121.951367116999975, 49.253402138000112 ], [ -121.951597892999985, 49.253410803000115 ], [ -121.95161374499996, 49.25322921300004 ], [ -121.950123527999935, 49.25317325200011 ], [ -121.950136194, 49.253028213000064 ], [ -121.949463215999984, 49.253002934000051 ], [ -121.949537899999925, 49.252147821000023 ], [ -121.949104155999933, 49.252131527000095 ], [ -121.949113230999927, 49.252027644000087 ], [ -121.948705248999943, 49.252012316000069 ], [ -121.948719803999921, 49.251845698000082 ], [ -121.948169041999947, 49.251825002000018 ], [ -121.948214942, 49.251299622000026 ], [ -121.948121272999984, 49.251296102000069 ], [ -121.948144387999918, 49.25103152800007 ], [ -121.947020150999961, 49.250989273000123 ], [ -121.947118043999978, 49.249869056000129 ], [ -121.947473820999946, 49.249830999000025 ], [ -121.947752707999953, 49.249600294000111 ], [ -121.948167891999915, 49.249477808000037 ], [ -121.948544094999932, 49.249292695000072 ], [ -121.948267701999953, 49.248733010000095 ], [ -121.948448968999941, 49.248599731000084 ], [ -121.948461383999941, 49.248590604000057 ], [ -121.948669299999892, 49.248556402000091 ], [ -121.949101703999986, 49.248875406000074 ], [ -121.949473120999954, 49.248878204000043 ], [ -121.94942439499999, 49.248545007000068 ], [ -121.949550291999984, 49.248465197 ], [ -121.949862449999955, 49.248467941000044 ], [ -121.949880175999965, 49.248468097000057 ], [ -121.950219189, 49.248668900000055 ], [ -121.952172007999977, 49.247966805000083 ], [ -121.952922899999948, 49.248234505000013 ], [ -121.953144349999974, 49.248383952000083 ], [ -121.953410408, 49.248563492000081 ], [ -121.953439812999989, 49.247771590000077 ], [ -121.954697711999955, 49.246803194000044 ], [ -121.955035009999932, 49.246437186000094 ], [ -121.955702995999957, 49.246065405000095 ], [ -121.957862411999912, 49.245904498000137 ], [ -121.959129290999982, 49.245736414000056 ], [ -121.959559977, 49.245793735000042 ], [ -121.959515457999956, 49.246304821000088 ], [ -121.958816606999946, 49.246884397000017 ], [ -121.958129588999924, 49.24696839200007 ], [ -121.955435798999957, 49.246908598000054 ], [ -121.955120381999947, 49.246932792000052 ], [ -121.954938515999942, 49.247029606000069 ], [ -121.953975306999922, 49.247821483000095 ], [ -121.95388758699994, 49.248693098000054 ], [ -121.953983921999978, 49.248823051000038 ], [ -121.954035391999952, 49.24889249600011 ], [ -121.954211812999958, 49.248966499000112 ], [ -121.954814098999975, 49.249043499000116 ], [ -121.95536098499997, 49.249228606000088 ], [ -121.956346911999916, 49.24935390600006 ], [ -121.957109460999973, 49.249224475000133 ], [ -121.957353806999933, 49.249183006000074 ], [ -121.958630404999951, 49.249285590000056 ], [ -121.960358995999968, 49.249949645000072 ], [ -121.960327106999927, 49.250315753000066 ], [ -121.960245995999983, 49.251246967000071 ], [ -121.960179719999971, 49.252007846000083 ], [ -121.95896477899997, 49.251962318000096 ], [ -121.958962167999942, 49.251992275000127 ], [ -121.958469435999945, 49.251973807000084 ], [ -121.958464311999975, 49.252217319000046 ], [ -121.95805213599999, 49.252213602000076 ], [ -121.958046457999956, 49.252483415000036 ], [ -121.95763427899999, 49.252479697000098 ], [ -121.957628598999946, 49.252749508000115 ], [ -121.957323025999969, 49.252746750000028 ], [ -121.957216417999959, 49.252745788000063 ], [ -121.957212175999956, 49.252947153000051 ], [ -121.957210733999943, 49.253015600000069 ], [ -121.957174496999954, 49.253015273000102 ], [ -121.956798552999913, 49.253011878000059 ], [ -121.956797984999952, 49.253038807000031 ], [ -121.957127585999956, 49.253051165000088 ], [ -121.957122522999938, 49.253109234000128 ], [ -121.956955563999912, 49.255024363000125 ], [ -121.958032777999961, 49.255064746000073 ], [ -121.957719488999913, 49.258658885000067 ], [ -121.957255714999974, 49.258641501000071 ], [ -121.956707537999989, 49.258620949000019 ], [ -121.956685920999973, 49.258868842000012 ], [ -121.956662372, 49.259138909000072 ], [ -121.951181307999946, 49.258933266000057 ], [ -121.951181489999954, 49.258931180000069 ], [ -121.951101613999953, 49.258928181000094 ], [ -121.951072749999952, 49.259258743000032 ], [ -121.950947228999937, 49.259254030000136 ], [ -121.95091516299999, 49.259621245000055 ], [ -121.949650880999968, 49.259573769000028 ], [ -121.94964833599991, 49.259693666000075 ], [ -121.950060573999977, 49.259697412000072 ], [ -121.950049210999964, 49.260233012000135 ], [ -121.950037675999937, 49.260776656000061 ], [ -121.950449921999976, 49.260780402000059 ], [ -121.950404140000018, 49.262938889000104 ], [ -121.95081640399998, 49.262942633000065 ], [ -121.950795688999989, 49.263919576000042 ], [ -121.951713969999943, 49.263954048000059 ], [ -121.952208945999956, 49.263972626000047 ], [ -121.952038732999952, 49.265922218000085 ], [ -121.952402623999916, 49.26592551800006 ], [ -121.95238548699993, 49.266734950000028 ], [ -121.951968101999981, 49.266731165000081 ], [ -121.951964899999979, 49.266767834000092 ], [ -121.951930927999953, 49.267156915000051 ], [ -121.951637787999985, 49.266709297000013 ] ], [ [ -121.947993654999948, 49.259948473000051 ], [ -121.94800293699997, 49.259511862000082 ], [ -121.945967159999938, 49.259435352 ], [ -121.945923946999955, 49.2599296080001 ], [ -121.947993654999948, 49.259948473000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.992583956277242", "sL_AssetLoss": "708.464", "sL_BldgLoss": "703.21", "sL_StrLoss": "667.08", "sL_NStrLoss": "36.13", "sL_ContLoss": "5.254", "geom_point": "0101000020E6100000338C5817B9735EC0019CA41AF2C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.806493472999961, 49.567816960000073 ], [ -121.809160917999947, 49.56791992400008 ], [ -121.80916390499999, 49.568000797000089 ], [ -121.809437802999952, 49.568695888000015 ], [ -121.809617896999924, 49.569274101000076 ], [ -121.809496639999935, 49.569783762000071 ], [ -121.809479286999974, 49.569856609000055 ], [ -121.809713792999901, 49.570480398000051 ], [ -121.809928198999955, 49.570698305000057 ], [ -121.810545708999939, 49.570928991000052 ], [ -121.811434885999972, 49.571324891000046 ], [ -121.811501930999924, 49.571335978000086 ], [ -121.8117067399999, 49.571369838000045 ], [ -121.811683806999952, 49.571621897000071 ], [ -121.806166245999961, 49.571408989000098 ], [ -121.806493472999961, 49.567816960000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68210500", "BldgCostT": "48010000", "sL_LossRatio": "0.992403901446455", "sL_AssetLoss": "1808.56", "sL_BldgLoss": "1794.822", "sL_StrLoss": "807.772", "sL_NStrLoss": "987.05", "sL_ContLoss": "13.738", "geom_point": "0101000020E6100000A2D66E9A02775EC02CEE058793D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.857038667999987, 49.69023760000006 ], [ -121.862570727, 49.69044789000003 ], [ -121.862316780999961, 49.693265418000053 ], [ -121.862067708999973, 49.693337398000047 ], [ -121.86066239299997, 49.693512611000131 ], [ -121.860135482999979, 49.693507193000045 ], [ -121.85967451499998, 49.693655798000066 ], [ -121.858937692, 49.693765197000033 ], [ -121.858545632999949, 49.693898789000116 ], [ -121.856714519999912, 49.693829153000109 ], [ -121.857038667999987, 49.69023760000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.976814516129032", "sL_AssetLoss": "1289.6", "sL_BldgLoss": "1259.7", "sL_StrLoss": "1164", "sL_NStrLoss": "95.7", "sL_ContLoss": "29.9", "geom_point": "0101000020E61000004DDF08DE12715EC097518FE16FAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.764871908999964, 49.369569987000048 ], [ -121.765674899999979, 49.368903492000079 ], [ -121.766197189999929, 49.368900601000107 ], [ -121.766304717999958, 49.369010301000031 ], [ -121.766285494999948, 49.369233908000069 ], [ -121.767295318999913, 49.369109997000074 ], [ -121.76855029799998, 49.369618411000069 ], [ -121.768705326999921, 49.369746687000045 ], [ -121.768512632999943, 49.371852684000075 ], [ -121.768085822, 49.371835977000032 ], [ -121.768049333999926, 49.372234694000021 ], [ -121.765889927, 49.372150144000067 ], [ -121.765858106999957, 49.372053789000049 ], [ -121.76557751199999, 49.371864837000089 ], [ -121.765206805, 49.371615202000079 ], [ -121.765104211999983, 49.371186330000079 ], [ -121.76501411299995, 49.370809754000057 ], [ -121.764972793999931, 49.370637024000146 ], [ -121.764971711999962, 49.370632622000059 ], [ -121.764857198999977, 49.370153890000019 ], [ -121.764871908999964, 49.369569987000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.966976787030214", "sL_AssetLoss": "2171.2", "sL_BldgLoss": "2099.5", "sL_StrLoss": "1814", "sL_NStrLoss": "285.5", "sL_ContLoss": "71.7", "geom_point": "0101000020E610000031B563F29F735EC08EF458E924A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.805042104999956, 49.321740793000146 ], [ -121.804917593999974, 49.321722293000093 ], [ -121.804736905999917, 49.321827701000046 ], [ -121.804656514, 49.321709505000065 ], [ -121.804937101999911, 49.320965992000076 ], [ -121.805358607999949, 49.32058429300011 ], [ -121.805375575999918, 49.319570642000045 ], [ -121.808362578999919, 49.319686632000078 ], [ -121.80803725, 49.323279978000087 ], [ -121.804850268999942, 49.323156221000112 ], [ -121.804842218999966, 49.323123702000039 ], [ -121.805152981, 49.322200799000058 ], [ -121.805174723999954, 49.321940204000015 ], [ -121.805042104999956, 49.321740793000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3440583", "BldgCostT": "2163333", "sL_LossRatio": "0.554619678932982", "sL_AssetLoss": "11231.3", "sL_BldgLoss": "6229.1", "sL_StrLoss": "2792.1", "sL_NStrLoss": "3437", "sL_ContLoss": "5002.2", "geom_point": "0101000020E6100000CFAECE737C7C5EC0A9884F1112A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.942397204999963, 49.279993399000055 ], [ -121.94788071899994, 49.280199483000033 ], [ -121.947574344999936, 49.283703430000045 ], [ -121.947566472999966, 49.283793456000076 ], [ -121.94751646099995, 49.283791578000034 ], [ -121.94459647599993, 49.283681871000098 ], [ -121.944243693, 49.283337016000068 ], [ -121.943726187999943, 49.28317889000003 ], [ -121.942314092999965, 49.282986603000062 ], [ -121.942141221999989, 49.282917140000094 ], [ -121.942397204999963, 49.279993399000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32845614", "BldgCostT": "19741936", "sL_LossRatio": "0.816901926187325", "sL_AssetLoss": "27204", "sL_BldgLoss": "22223", "sL_StrLoss": "16510.6", "sL_NStrLoss": "5712.4", "sL_ContLoss": "4981", "geom_point": "0101000020E61000005EA3C432E6785EC05098C5FE91A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.884124183999973, 49.320013197000065 ], [ -121.884542799999949, 49.319756888 ], [ -121.884643500999971, 49.319568905000104 ], [ -121.884544995999988, 49.319090310000028 ], [ -121.883866591999947, 49.318624598000056 ], [ -121.883806894999935, 49.318606932000137 ], [ -121.883887948999984, 49.317695099000012 ], [ -121.883080169999957, 49.31766430400004 ], [ -121.883165608999889, 49.317412596000054 ], [ -121.882935799000023, 49.316592304000039 ], [ -121.882461804999977, 49.316227712000028 ], [ -121.882508491999928, 49.315464298000059 ], [ -121.882088391999972, 49.315108294000062 ], [ -121.881571313999956, 49.314878992000082 ], [ -121.881256995999962, 49.314830495000095 ], [ -121.881200319999977, 49.314836949000018 ], [ -121.881299328999901, 49.313723735000046 ], [ -121.883409315999984, 49.313804201000018 ], [ -121.883426447999966, 49.313611484000077 ], [ -121.887974038999943, 49.31378477100003 ], [ -121.88800286799993, 49.313460095000089 ], [ -121.889041153999983, 49.313499631000091 ], [ -121.889127473999963, 49.312527219000096 ], [ -121.890112821999963, 49.312564731000109 ], [ -121.890399899999963, 49.30932963900004 ], [ -121.895886649999923, 49.309538354000068 ], [ -121.895825557999956, 49.310227766 ], [ -121.896716564999906, 49.310261633000046 ], [ -121.896497335999968, 49.312735944000082 ], [ -121.896398149999982, 49.313855294000099 ], [ -121.896164700999975, 49.3138464210001 ], [ -121.896080390999927, 49.314797799000061 ], [ -121.895438536, 49.314773402000071 ], [ -121.895384093999937, 49.315387614000059 ], [ -121.894382895999982, 49.315349550000043 ], [ -121.894343898999963, 49.315789409000089 ], [ -121.896268232999958, 49.315862560000014 ], [ -121.895949744999939, 49.31945618900005 ], [ -121.893923087999909, 49.31937914800006 ], [ -121.893851898, 49.320181937000058 ], [ -121.890959669999958, 49.320071925000036 ], [ -121.89073630499999, 49.322588804000127 ], [ -121.885248033999972, 49.32237983300012 ], [ -121.885378583999966, 49.320910785000109 ], [ -121.885455592999989, 49.320044170000074 ], [ -121.884535224999937, 49.320009098000085 ], [ -121.884416217999956, 49.321348007000061 ], [ -121.8843090399999, 49.322553758000026 ], [ -121.883500726999941, 49.322522950000049 ], [ -121.883321209999963, 49.324541977000088 ], [ -121.880527401999942, 49.32443544700007 ], [ -121.880302821999976, 49.326959342000102 ], [ -121.877193636999962, 49.326840702000069 ], [ -121.87735067899996, 49.326225594000036 ], [ -121.876877221, 49.325852503000085 ], [ -121.877214483, 49.325567596000049 ], [ -121.878163214999944, 49.325029307000065 ], [ -121.878792499999975, 49.324513691000099 ], [ -121.879076799999893, 49.32413771400013 ], [ -121.879354902999978, 49.324059390000066 ], [ -121.880938590999932, 49.323949710000136 ], [ -121.881274307999931, 49.323781699000037 ], [ -121.881792048999941, 49.323102926000104 ], [ -121.881982602999983, 49.322853099000035 ], [ -121.882665301999978, 49.321293608000119 ], [ -121.883186914999911, 49.320705390000114 ], [ -121.884124183999973, 49.320013197000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.968249052302966", "sL_AssetLoss": "1614.44", "sL_BldgLoss": "1563.18", "sL_StrLoss": "1289.28", "sL_NStrLoss": "273.9", "sL_ContLoss": "51.26", "geom_point": "0101000020E61000009BCEA9BFB98D5EC07A5E43D386E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.213071992999971, 49.779086957000104 ], [ -122.213076362999971, 49.77881715100014 ], [ -122.212243053999913, 49.778811488 ], [ -122.212251802999916, 49.778271876000112 ], [ -122.211835153999942, 49.778269043000094 ], [ -122.211857034, 49.77692001000004 ], [ -122.212273672999942, 49.776922844000097 ], [ -122.21227804599998, 49.776653037000109 ], [ -122.21394459, 49.776664354000069 ], [ -122.213948954999978, 49.77639454800007 ], [ -122.215198855999958, 49.776403020000011 ], [ -122.21520321399997, 49.776133214000104 ], [ -122.217286372, 49.776147304000126 ], [ -122.217268986999969, 49.7772265320001 ], [ -122.216852346999943, 49.777223716000037 ], [ -122.216843648999912, 49.77776333000007 ], [ -122.216427004, 49.777760513000061 ], [ -122.21642265199992, 49.778030319000088 ], [ -122.216006004999954, 49.778027502000093 ], [ -122.216001651999989, 49.778297308000035 ], [ -122.215585000999923, 49.778294489000096 ], [ -122.21558064499996, 49.778564295000102 ], [ -122.215163992999948, 49.778561473000053 ], [ -122.215155276999965, 49.779101087000072 ], [ -122.213071992999971, 49.779086957000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.92751677852349", "sL_AssetLoss": "1490", "sL_BldgLoss": "1382", "sL_StrLoss": "1030", "sL_NStrLoss": "352", "sL_ContLoss": "108", "geom_point": "0101000020E6100000EBE005B66F785EC05E85528382A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.881959111999919, 49.317621557000088 ], [ -121.881982764999961, 49.317355589000123 ], [ -121.880979694999979, 49.317317332000123 ], [ -121.881177345999973, 49.315095237000023 ], [ -121.881209394999985, 49.315091197000136 ], [ -121.881537504999969, 49.315130991000039 ], [ -121.882287296999948, 49.315461488000039 ], [ -121.882259584999986, 49.316126596000046 ], [ -121.882812191999932, 49.317176213 ], [ -121.882900616999962, 49.317572107000061 ], [ -121.882859334999978, 49.317655885000079 ], [ -121.881959111999919, 49.317621557000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93296917", "BldgCostT": "64311667", "sL_LossRatio": "0.950943636166676", "sL_AssetLoss": "42463.4", "sL_BldgLoss": "40380.3", "sL_StrLoss": "31260.3", "sL_NStrLoss": "9120", "sL_ContLoss": "2083.1", "geom_point": "0101000020E610000075BF1261A67B5EC076C783A93DB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.931227734999965, 49.382716655000131 ], [ -121.931231079999961, 49.382678641000041 ], [ -121.93121027799999, 49.382677859000125 ], [ -121.930054892999948, 49.382634384000063 ], [ -121.93019945899999, 49.380991956000074 ], [ -121.930347579999975, 49.379309012000093 ], [ -121.927463217999971, 49.379200425000093 ], [ -121.926448277999938, 49.379162197000049 ], [ -121.926475599999947, 49.378852064000057 ], [ -121.926165688000012, 49.378840389000075 ], [ -121.926186541000021, 49.378603696 ], [ -121.925779989999953, 49.378588379000036 ], [ -121.925800773, 49.378352501000066 ], [ -121.925332789999956, 49.378334869000049 ], [ -121.925351260999918, 49.378125240000017 ], [ -121.925043992999974, 49.378113661000057 ], [ -121.925061096999954, 49.377919556000037 ], [ -121.925082716999967, 49.377674224000053 ], [ -121.924467700999955, 49.377651046000075 ], [ -121.924483482999989, 49.377471978000088 ], [ -121.923967595999926, 49.377452534000064 ], [ -121.924079917999961, 49.376178197000037 ], [ -121.921967962999986, 49.376098568000046 ], [ -121.920856768999926, 49.376056654000138 ], [ -121.920916989, 49.375373956000061 ], [ -121.920837411999969, 49.375370955000108 ], [ -121.920875787999975, 49.374935893000064 ], [ -121.921154351999988, 49.371777552000026 ], [ -121.923302467999946, 49.371858570000079 ], [ -121.92371219499995, 49.371874018000035 ], [ -121.923765773999961, 49.371266114000022 ], [ -121.929260012999947, 49.371473115000107 ], [ -121.929248459999883, 49.371604368000064 ], [ -121.93079736899999, 49.371662674000056 ], [ -121.930751517999965, 49.372183777000068 ], [ -121.93195976199992, 49.372229244000046 ], [ -121.931947794999957, 49.372365293000065 ], [ -121.934494382999915, 49.372461077000068 ], [ -121.934438724999893, 49.373094235000053 ], [ -121.93463391899995, 49.373101574000046 ], [ -121.934624673999949, 49.373206746000093 ], [ -121.936696354999967, 49.373284620000092 ], [ -121.936683750999961, 49.373428082000082 ], [ -121.937155447999956, 49.373445807000053 ], [ -121.937142821999956, 49.373589526000075 ], [ -121.937583841999924, 49.373606097000049 ], [ -121.937580184999931, 49.373647731000077 ], [ -121.938172424999934, 49.373669981000084 ], [ -121.938031181999989, 49.375278085000062 ], [ -121.93911409499999, 49.375318760000035 ], [ -121.939111384999975, 49.375349613000061 ], [ -121.939586279999986, 49.375367447 ], [ -121.939568603999973, 49.375568764000022 ], [ -121.940257469999949, 49.37559462900002 ], [ -121.940240928999984, 49.375783039000055 ], [ -121.940639967999971, 49.375798020000097 ], [ -121.940626946999913, 49.375946369000076 ], [ -121.941024964999912, 49.375961311000076 ], [ -121.940975667999922, 49.376522957000056 ], [ -121.941389352, 49.376538485 ], [ -121.941797172999969, 49.376553791000049 ], [ -121.941775916999958, 49.376796008000056 ], [ -121.942047079999938, 49.376806185000056 ], [ -121.942032277999914, 49.376974878000055 ], [ -121.94239997699998, 49.376988676000046 ], [ -121.942189447999937, 49.37938792300011 ], [ -121.942084650999945, 49.380582112000141 ], [ -121.94203898499994, 49.380580399000074 ], [ -121.942006468999978, 49.380950914000081 ], [ -121.941628072999961, 49.380936714000029 ], [ -121.941616759999931, 49.381065622000072 ], [ -121.941095514999944, 49.381046060000124 ], [ -121.94108794099995, 49.381132335000075 ], [ -121.939220530999961, 49.381062230000069 ], [ -121.939157325999957, 49.381781935000085 ], [ -121.939121918999916, 49.382185079000095 ], [ -121.939121342999911, 49.3821850570001 ], [ -121.939061653999957, 49.382864679000143 ], [ -121.936736191999955, 49.382777333000099 ], [ -121.936706672999932, 49.383113234000071 ], [ -121.932401316, 49.382951390000059 ], [ -121.931413331999948, 49.382914226000089 ], [ -121.931314960999941, 49.382910525000042 ], [ -121.931211017999885, 49.382906615000131 ], [ -121.931227734999965, 49.382716655000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36677803", "BldgCostT": "22908746", "sL_LossRatio": "0.705571097986392", "sL_AssetLoss": "144765", "sL_BldgLoss": "102142", "sL_StrLoss": "51659", "sL_NStrLoss": "50483", "sL_ContLoss": "42623", "geom_point": "0101000020E6100000C104568AB4805EC0DAC70A7E9B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.998922599999943, 49.234067810000099 ], [ -121.998935639999928, 49.23391659800005 ], [ -121.998103081999915, 49.233885688000107 ], [ -121.998165785999959, 49.233158691000057 ], [ -121.997772315999981, 49.23314408100012 ], [ -121.997807952999949, 49.232730944000096 ], [ -121.997385928999961, 49.232715272000064 ], [ -121.99744945299993, 49.231978879000074 ], [ -121.997528414999962, 49.231063479000071 ], [ -121.997625173999893, 49.229941718000063 ], [ -121.997695973999953, 49.229120877000071 ], [ -122.00024761, 49.229215609000107 ], [ -122.000251166999973, 49.229174339000039 ], [ -122.004200069999925, 49.229320826000055 ], [ -122.005728934999965, 49.229377501000037 ], [ -122.005639507999945, 49.230416388000059 ], [ -122.007134013999973, 49.230471768000015 ], [ -122.007138513999948, 49.230247272000057 ], [ -122.00755051199999, 49.230250814000094 ], [ -122.007555918999941, 49.229980996000101 ], [ -122.007898023999957, 49.229983934000082 ], [ -122.007969319, 49.229914410000035 ], [ -122.00797331699998, 49.229714718000018 ], [ -122.008278539999978, 49.229717339000047 ], [ -122.008386651, 49.229651348000054 ], [ -122.008390711999951, 49.22944843800007 ], [ -122.008714514999966, 49.229451217000047 ], [ -122.00880381099999, 49.229396710000024 ], [ -122.008808103999954, 49.229182157000075 ], [ -122.009181942999973, 49.229185365000099 ], [ -122.009220530999926, 49.229163825000086 ], [ -122.009230885999969, 49.228646057000049 ], [ -122.009642871999986, 49.228649590000067 ], [ -122.009653658999952, 49.228109955000058 ], [ -122.010065638999919, 49.22811348700008 ], [ -122.010071030999939, 49.227843669000031 ], [ -122.011990035999958, 49.227860099000068 ], [ -122.012082331999963, 49.227821661000071 ], [ -122.012132471999934, 49.22778387300005 ], [ -122.012136306999977, 49.227591487000041 ], [ -122.012384913999966, 49.227593613000103 ], [ -122.012449333999953, 49.227545062000033 ], [ -122.012632632999939, 49.227461161000114 ], [ -122.012736132999933, 49.227479861000077 ], [ -122.012964137999973, 49.227404029000112 ], [ -122.01296563799994, 49.227328713000105 ], [ -122.013243227999936, 49.227331085000102 ], [ -122.013651232999962, 49.22718906100004 ], [ -122.013794869999984, 49.227070482000137 ], [ -122.013800330999928, 49.226796115000042 ], [ -122.01402098399997, 49.226797999000055 ], [ -122.014119432999976, 49.226556562000113 ], [ -122.014220632999937, 49.22638083800004 ], [ -122.014228437999975, 49.225988538000138 ], [ -122.014202032999933, 49.225890062000083 ], [ -122.014202815999951, 49.225887346000071 ], [ -122.012891322999963, 49.225838830000015 ], [ -122.01287632899998, 49.226013359000014 ], [ -122.007398924999961, 49.225810558000127 ], [ -122.007422524, 49.22553627000007 ], [ -122.007157533999987, 49.225526452000125 ], [ -122.007180272999946, 49.225262164000114 ], [ -122.007093547999958, 49.225258951000107 ], [ -122.00714193499999, 49.224696580000042 ], [ -122.00677127199999, 49.224682844000014 ], [ -122.006791183999894, 49.224451427000112 ], [ -122.006637781999927, 49.224445741000039 ], [ -122.006672494999947, 49.224042335000085 ], [ -122.006459401999962, 49.224034438000061 ], [ -122.006481457999925, 49.223778114000027 ], [ -122.00640111499996, 49.223775137000082 ], [ -122.006433714999943, 49.223396297000065 ], [ -122.006178329999926, 49.223386831000028 ], [ -122.006209, 49.223030447000099 ], [ -122.00609525099999, 49.223026231000063 ], [ -122.006121982999943, 49.22271559700004 ], [ -122.005874561999974, 49.222706425000062 ], [ -122.00589715299995, 49.22244392000011 ], [ -122.005657071999963, 49.222435021000088 ], [ -122.005676170999891, 49.222213112000127 ], [ -122.005406477999941, 49.222203114000116 ], [ -122.005434170999976, 49.221881360000076 ], [ -122.00474467399999, 49.221855798 ], [ -122.004763886999953, 49.221632606000128 ], [ -122.004679346, 49.221629471000092 ], [ -122.003549347, 49.221587566000082 ], [ -122.003858839999964, 49.217993093000118 ], [ -122.004903471999981, 49.218031833000062 ], [ -122.00816473899998, 49.218152712000105 ], [ -122.008207681999977, 49.217653396000046 ], [ -122.008338738999939, 49.217658252 ], [ -122.008391407999923, 49.217045799000068 ], [ -122.008560092999971, 49.217052048000021 ], [ -122.008650455999941, 49.216001202000093 ], [ -122.008764656000011, 49.216005432000046 ], [ -122.008832491999982, 49.215216503000107 ], [ -122.009947975000017, 49.215257822000112 ], [ -122.009951146999967, 49.215220931000061 ], [ -122.010437473999943, 49.215238941000074 ], [ -122.010511869999931, 49.214373342000052 ], [ -122.010822128999976, 49.214384830000036 ], [ -122.010795398999903, 49.215693035000122 ], [ -122.011635137999988, 49.215684242000073 ], [ -122.01420940599999, 49.215657262000093 ], [ -122.018164559999917, 49.215565044000108 ], [ -122.018081120999938, 49.216537704000103 ], [ -122.02165526099995, 49.216669741000068 ], [ -122.021589576999958, 49.217436106000079 ], [ -122.022045296999934, 49.217452933000082 ], [ -122.02173721399997, 49.221047461000055 ], [ -122.020671861999986, 49.221008122000072 ], [ -122.020505069999942, 49.222953385000068 ], [ -122.017170625999952, 49.222830189000049 ], [ -122.016899690999978, 49.225987062000058 ], [ -122.016289086999947, 49.22596449100012 ], [ -122.016277514999899, 49.22654737500006 ], [ -122.015915315999962, 49.226544290000085 ], [ -122.015865546999962, 49.226543866000107 ], [ -122.015830582999968, 49.228304047000094 ], [ -122.015828028999977, 49.22843259200004 ], [ -122.015774551, 49.228432136000023 ], [ -122.015416044999967, 49.228429081000087 ], [ -122.015405318999925, 49.228968716000054 ], [ -122.01499333, 49.228965204000055 ], [ -122.014984474999949, 49.229410584000114 ], [ -122.014982599999911, 49.229504840000054 ], [ -122.014860973999959, 49.2295038030001 ], [ -122.014570608, 49.229501326000062 ], [ -122.01456632599999, 49.22971658800008 ], [ -122.014559873999971, 49.230040961000029 ], [ -122.014051902999967, 49.230036627000096 ], [ -122.01373587799999, 49.230033929000072 ], [ -122.013732742999963, 49.23019136500006 ], [ -122.013725133999941, 49.230573563000092 ], [ -122.01413713699999, 49.230577081000028 ], [ -122.014131767999984, 49.230846898000074 ], [ -122.014543771999982, 49.230850414000059 ], [ -122.014527668999932, 49.23165986700009 ], [ -122.012055601999947, 49.231638749000048 ], [ -122.012060982999941, 49.23136893300002 ], [ -122.011648973999925, 49.231365408000038 ], [ -122.011638207999965, 49.231905042000029 ], [ -122.010715647000012, 49.231897146000136 ], [ -122.012003854999989, 49.230917239000078 ], [ -122.00867185599999, 49.231890188000079 ], [ -122.007049317999972, 49.232492911000143 ], [ -122.006381248999958, 49.232683171000055 ], [ -122.005700500999922, 49.232765502000049 ], [ -122.005327035999954, 49.232788304000088 ], [ -122.004474339999945, 49.232787754000057 ], [ -122.003402540999943, 49.232705970000069 ], [ -122.00208322499995, 49.232399335000075 ], [ -122.001693871999947, 49.232308838000037 ], [ -122.00016837, 49.232615989000088 ], [ -122.00015486399991, 49.232630522000086 ], [ -122.000061101999904, 49.232852252000058 ], [ -121.999334917999988, 49.232906562000039 ], [ -121.999291625999945, 49.232924649000076 ], [ -121.999330726999958, 49.232951486000083 ], [ -121.99956242099999, 49.23311064300006 ], [ -121.999593546999947, 49.233247794000128 ], [ -121.999282318999917, 49.2339833690001 ], [ -121.999137415999925, 49.234075784000076 ], [ -121.998922599999943, 49.234067810000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5282917", "BldgCostT": "3171667", "sL_LossRatio": "0.945043707411086", "sL_AssetLoss": "2033.98", "sL_BldgLoss": "1922.2", "sL_StrLoss": "1526.5", "sL_NStrLoss": "395.7", "sL_ContLoss": "111.78", "geom_point": "0101000020E6100000DA23EDA949705EC0C11C5E8C58B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.752881006999971, 49.389188507000085 ], [ -121.752977113000014, 49.388142466000033 ], [ -121.752685266999919, 49.388131004000051 ], [ -121.752938588999925, 49.385373727000037 ], [ -121.752879746999952, 49.385371416000048 ], [ -121.753209793999957, 49.381778569000105 ], [ -121.755792542999956, 49.381879971000025 ], [ -121.756159599999975, 49.382412093000056 ], [ -121.756245915999941, 49.382807991000085 ], [ -121.756072114999952, 49.383129901000039 ], [ -121.756099788999947, 49.383661098000111 ], [ -121.75640909199997, 49.384546988000089 ], [ -121.756357692999941, 49.384950114000041 ], [ -121.756207584999984, 49.385210730000061 ], [ -121.756084604999913, 49.385424291000014 ], [ -121.756036092999963, 49.385711989000086 ], [ -121.756087385999962, 49.386595593000017 ], [ -121.756101879999932, 49.386845698000059 ], [ -121.756022686, 49.387277201000074 ], [ -121.755954321999937, 49.387834100000049 ], [ -121.755716804999963, 49.388487791000109 ], [ -121.755407692999981, 49.38927680000004 ], [ -121.755409775999951, 49.38928778100005 ], [ -121.752881006999971, 49.389188507000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802834", "BldgCostT": "1243334", "sL_LossRatio": "0.990996220476504", "sL_AssetLoss": "775.23", "sL_BldgLoss": "768.25", "sL_StrLoss": "707.39", "sL_NStrLoss": "60.86", "sL_ContLoss": "6.98", "geom_point": "0101000020E61000007D78B72ECC745EC05FA637ED73D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.823439332999939, 49.630422211000031 ], [ -121.823462742999965, 49.630164548000067 ], [ -121.823115238999918, 49.630151203000054 ], [ -121.82313710699998, 49.629910514000095 ], [ -121.822709537999941, 49.629894093000111 ], [ -121.823035889999957, 49.626302315000046 ], [ -121.823313650999921, 49.626312983000034 ], [ -121.823338792999934, 49.626036221000099 ], [ -121.825536769999985, 49.626120614000072 ], [ -121.826273010999984, 49.627353692000042 ], [ -121.826824394999917, 49.628627289000072 ], [ -121.826986292999948, 49.628790894000055 ], [ -121.827592083999946, 49.628967893000045 ], [ -121.82773929699999, 49.629140285000048 ], [ -121.827825819999958, 49.6296 ], [ -121.827606118999981, 49.630092496000096 ], [ -121.82765390900002, 49.63044380000008 ], [ -121.827721607999976, 49.630586569000045 ], [ -121.823439332999939, 49.630422211000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.969946359027114", "sL_AssetLoss": "1360.9", "sL_BldgLoss": "1320", "sL_StrLoss": "1200", "sL_NStrLoss": "120", "sL_ContLoss": "40.9", "geom_point": "0101000020E61000005B112D609F715EC077B1BCEDBAAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.773925590999937, 49.340647212000071 ], [ -121.774460399999953, 49.340167211000043 ], [ -121.774710415999948, 49.340070390000051 ], [ -121.774876174999946, 49.340100293000077 ], [ -121.775206987999951, 49.340624407000092 ], [ -121.775481299999967, 49.340681395000061 ], [ -121.775716609999989, 49.340594506000031 ], [ -121.775714803999932, 49.34010880800006 ], [ -121.776011909999909, 49.339796896000053 ], [ -121.77627710199999, 49.339674399000074 ], [ -121.776308942999947, 49.339672825000044 ], [ -121.776660659999934, 49.339686575 ], [ -121.776865176999962, 49.339769893 ], [ -121.776921671999929, 49.339991615000024 ], [ -121.776620575, 49.343290971000073 ], [ -121.773862506999976, 49.343183121000109 ], [ -121.773893397999984, 49.34190619500005 ], [ -121.773580700999972, 49.341803604000113 ], [ -121.773535695999954, 49.341416311000039 ], [ -121.773639213999928, 49.341058791000087 ], [ -121.773925590999937, 49.340647212000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.965759814427271", "sL_AssetLoss": "793.22", "sL_BldgLoss": "766.06", "sL_StrLoss": "656.56", "sL_NStrLoss": "109.5", "sL_ContLoss": "27.16", "geom_point": "0101000020E6100000D0D2156CA3735EC028C27E360FA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.805992128999918, 49.311159922000058 ], [ -121.808419948999926, 49.311254209000055 ], [ -121.80809468399994, 49.314847601000046 ], [ -121.805696321999946, 49.314754460000117 ], [ -121.805577515, 49.314370499000113 ], [ -121.805515106999977, 49.313568709 ], [ -121.805192209999944, 49.313259602000109 ], [ -121.805119080999972, 49.312853696000104 ], [ -121.805591403999955, 49.311546297000028 ], [ -121.805992128999918, 49.311159922000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3724750", "BldgCostT": "2305000", "sL_LossRatio": "0.960348863706988", "sL_AssetLoss": "6275.23", "sL_BldgLoss": "6026.41", "sL_StrLoss": "5400.11", "sL_NStrLoss": "626.3", "sL_ContLoss": "248.82", "geom_point": "0101000020E6100000E16F072C71715EC0373AA58B66B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.774609964999954, 49.419948515000073 ], [ -121.774633294999944, 49.419693447000043 ], [ -121.771181263999921, 49.419558623000107 ], [ -121.771253189999982, 49.418772922000045 ], [ -121.770671995999919, 49.418750212000049 ], [ -121.770933149000015, 49.415897585000025 ], [ -121.77063434099999, 49.415885908000078 ], [ -121.770693282999957, 49.4151120000001 ], [ -121.77065309699999, 49.415013714000054 ], [ -121.770286414999987, 49.41483849300004 ], [ -121.770173394999986, 49.41436848700009 ], [ -121.769960922999971, 49.414116917000044 ], [ -121.769781953999924, 49.413905009000082 ], [ -121.769745188999948, 49.413861495000099 ], [ -121.770034617999954, 49.413289006000134 ], [ -121.769804910999966, 49.413096693000028 ], [ -121.769809301999942, 49.412952892000106 ], [ -121.769923003999949, 49.412801885000079 ], [ -121.770342920999923, 49.412581103000079 ], [ -121.770823314999959, 49.412649492000099 ], [ -121.771077803999972, 49.412921501000049 ], [ -121.770953900999956, 49.412938597000114 ], [ -121.770657192999963, 49.413231987000039 ], [ -121.770759296999969, 49.413521098000054 ], [ -121.771102786999947, 49.413632195000034 ], [ -121.771277689999962, 49.413787409000101 ], [ -121.771474502999951, 49.414088212000102 ], [ -121.77172780799998, 49.41447528500003 ], [ -121.772076240999965, 49.414790243000056 ], [ -121.772187832999947, 49.414891089000022 ], [ -121.772451480999919, 49.415129389000136 ], [ -121.772747896999931, 49.415397258000077 ], [ -121.77344079099997, 49.416023500000023 ], [ -121.773609957999895, 49.416296272000132 ], [ -121.773620285999982, 49.41631293700005 ], [ -121.773765269999913, 49.416546711000073 ], [ -121.773839097999939, 49.416665795000057 ], [ -121.773703992999927, 49.416724243000075 ], [ -121.77361530499995, 49.416762595000101 ], [ -121.773721223999971, 49.416979102000077 ], [ -121.774026827999975, 49.417335917000059 ], [ -121.774412019999914, 49.417785636000062 ], [ -121.775221714999986, 49.418730898000071 ], [ -121.776130481999985, 49.419299093000063 ], [ -121.776612927999977, 49.419673854000067 ], [ -121.776677449999966, 49.419724014000082 ], [ -121.776765613999942, 49.419792484000055 ], [ -121.777091130999978, 49.420045352000059 ], [ -121.774609964999954, 49.419948515000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15260000", "BldgCostT": "9050000", "sL_LossRatio": "0.972255900599131", "sL_AssetLoss": "5649.85", "sL_BldgLoss": "5493.1", "sL_StrLoss": "4817", "sL_NStrLoss": "676.1", "sL_ContLoss": "156.75", "geom_point": "0101000020E6100000D6666B966E7D5EC0C7947ADCD8A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95622379400001, 49.290939019000099 ], [ -121.956256377, 49.290565653000087 ], [ -121.955865604999929, 49.290551010000058 ], [ -121.956179251999984, 49.286957050000069 ], [ -121.957327022999948, 49.287000055000078 ], [ -121.957555740999922, 49.284378175000043 ], [ -121.963039837999929, 49.284583488000081 ], [ -121.963035492999936, 49.284633376000023 ], [ -121.963602120999937, 49.28465457300009 ], [ -121.963289064, 49.288248568000014 ], [ -121.963075410999949, 49.288240576000057 ], [ -121.962826206000017, 49.291100970000109 ], [ -121.96227433199999, 49.291080324000063 ], [ -121.962270282999938, 49.291126784000021 ], [ -121.961712017999957, 49.291105895000058 ], [ -121.96170866199999, 49.291144397000089 ], [ -121.95622379400001, 49.290939019000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.958718087995655", "sL_AssetLoss": "3682", "sL_BldgLoss": "3530", "sL_StrLoss": "2987", "sL_NStrLoss": "543", "sL_ContLoss": "152", "geom_point": "0101000020E61000001CA90881667B5EC02345F001B2A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.926825069999921, 49.30205067100011 ], [ -121.926969398999944, 49.300409189000035 ], [ -121.928301677999954, 49.300459452000034 ], [ -121.928316743, 49.301800462000166 ], [ -121.92895619799998, 49.301797477000093 ], [ -121.929108725999953, 49.301824648000022 ], [ -121.931207948999926, 49.301009557000064 ], [ -121.930239134999937, 49.302003365000118 ], [ -121.930220263999956, 49.302022732000083 ], [ -121.930124722999977, 49.302120424000101 ], [ -121.929539881, 49.302718191000096 ], [ -121.928154851999935, 49.304059636000019 ], [ -121.926653395999921, 49.304002992000029 ], [ -121.926825069999921, 49.30205067100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283334", "BldgCostT": "4333334", "sL_LossRatio": "0.974981834760433", "sL_AssetLoss": "7018.9", "sL_BldgLoss": "6843.3", "sL_StrLoss": "6014", "sL_NStrLoss": "829.3", "sL_ContLoss": "175.6", "geom_point": "0101000020E6100000BB5D505B7A7A5EC0E5C0E59058A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.91027358499997, 49.309004940000108 ], [ -121.910332711999928, 49.308335324000019 ], [ -121.910590889999924, 49.305411211000049 ], [ -121.91607726699999, 49.305618902000077 ], [ -121.915918674999944, 49.307417564000062 ], [ -121.918092761999901, 49.307437940000106 ], [ -121.91808754499999, 49.307676193000141 ], [ -121.918075034999944, 49.308247357 ], [ -121.917662398999965, 49.308243492000017 ], [ -121.917656485999913, 49.308513299000026 ], [ -121.918481766999946, 49.308521025000076 ], [ -121.918471725999979, 49.308979622000031 ], [ -121.917548007999983, 49.308927651000118 ], [ -121.916732667999923, 49.308881785000047 ], [ -121.915687201999972, 49.308911015000021 ], [ -121.911143225999979, 49.309037878000019 ], [ -121.91027358499997, 49.309004940000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83677084", "BldgCostT": "57708334", "sL_LossRatio": "0.894915540132511", "sL_AssetLoss": "244252.1", "sL_BldgLoss": "218585", "sL_StrLoss": "152359", "sL_NStrLoss": "66226", "sL_ContLoss": "25667.1", "geom_point": "0101000020E610000021DC8DD38A7A5EC0C1DC289148A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.913582908999899, 49.302336439000051 ], [ -121.913600238999948, 49.302139977000081 ], [ -121.910543069999946, 49.30202420100008 ], [ -121.910307023999977, 49.30201525800009 ], [ -121.910312738999963, 49.301950526000041 ], [ -121.91040745299992, 49.300877693000103 ], [ -121.908988549999961, 49.30082392600012 ], [ -121.909026486999906, 49.300394357000116 ], [ -121.908265353, 49.300365507000052 ], [ -121.908391928999947, 49.298932425000068 ], [ -121.908225339999902, 49.298926110000139 ], [ -121.908250426999956, 49.298642086 ], [ -121.907775943999951, 49.298624098000111 ], [ -121.907811866999964, 49.298217426000086 ], [ -121.907161946999921, 49.298192783000061 ], [ -121.907164860999956, 49.298159815000062 ], [ -121.907018956999963, 49.298158434000115 ], [ -121.90674212299993, 49.298155816000047 ], [ -121.906755252999957, 49.297562262000092 ], [ -121.905270221999942, 49.297505934000078 ], [ -121.905320556999982, 49.296936428000024 ], [ -121.905207354999931, 49.296932133000055 ], [ -121.905270705999911, 49.296215369000059 ], [ -121.905024592999965, 49.29620603100004 ], [ -121.905122387999967, 49.295099590000106 ], [ -121.904859858999913, 49.295089629000039 ], [ -121.904907709999947, 49.29454826300006 ], [ -121.904801390999936, 49.294544229000046 ], [ -121.904818235, 49.294353658000063 ], [ -121.904247883999957, 49.294332015000073 ], [ -121.904410883999944, 49.292488085000052 ], [ -121.904319600999912, 49.292484621000085 ], [ -121.90436599399996, 49.29195980400003 ], [ -121.904210929999948, 49.291953919000044 ], [ -121.904528588999966, 49.288360118000121 ], [ -121.906605236999937, 49.288438911000149 ], [ -121.906668736999947, 49.287720067000045 ], [ -121.90750019299999, 49.287751604000086 ], [ -121.907514509999928, 49.287589487000048 ], [ -121.909457508999978, 49.287663159000047 ], [ -121.909681558999949, 49.285124932000016 ], [ -121.909756851999973, 49.285127786000018 ], [ -121.909813688999989, 49.284483833000159 ], [ -121.910165886999948, 49.284497183000042 ], [ -121.910278782999953, 49.283217920000034 ], [ -121.910503689999942, 49.283240094000121 ], [ -121.910853681999967, 49.283522099000052 ], [ -121.911052803999965, 49.28327148700005 ], [ -121.911396807999921, 49.283265790000037 ], [ -121.911758102999954, 49.283701589000067 ], [ -121.911963009, 49.28377559700008 ], [ -121.9122663899999, 49.283705901000125 ], [ -121.912089107999947, 49.283614690000093 ], [ -121.911663300999948, 49.28305209400002 ], [ -121.91166820799998, 49.282764507000103 ], [ -121.91200388, 49.282533693000083 ], [ -121.911761392999964, 49.282280193000055 ], [ -121.911777515999958, 49.282190501000038 ], [ -121.913304581999938, 49.283428099000048 ], [ -121.913835787999972, 49.283684500000064 ], [ -121.915037206999926, 49.284047695000019 ], [ -121.91589989, 49.284838096000087 ], [ -121.916242289999943, 49.28493068800001 ], [ -121.91609510499994, 49.284704185000074 ], [ -121.915378995999959, 49.284086107000093 ], [ -121.91556178899998, 49.283943697000055 ], [ -121.914167606999939, 49.283589090000149 ], [ -121.913648697999946, 49.283359800000021 ], [ -121.91209369699996, 49.282238893000041 ], [ -121.912083208999945, 49.282013894000073 ], [ -121.912387568999961, 49.28159296899999 ], [ -121.915912280000015, 49.281726445000025 ], [ -121.915882155999952, 49.2820682810001 ], [ -121.916929466999974, 49.282107918000058 ], [ -121.916872823999967, 49.282750824000068 ], [ -121.917459282999957, 49.282773016000114 ], [ -121.917516305, 49.282125710000116 ], [ -121.918035324999963, 49.282145347000053 ], [ -121.918067000999898, 49.281785722000073 ], [ -121.918858489999977, 49.281815663000053 ], [ -121.91888587599999, 49.281504669000057 ], [ -121.919130391999943, 49.281683511000026 ], [ -121.918745318999967, 49.282354295000118 ], [ -121.918812789999947, 49.282409806000068 ], [ -121.919034788999966, 49.282330091000084 ], [ -121.919448300999989, 49.281596595000018 ], [ -121.918910924999963, 49.281220205000082 ], [ -121.91901365199999, 49.280053588000101 ], [ -121.919139000999948, 49.280047114000091 ], [ -121.919172470999982, 49.279665038000132 ], [ -121.920377262999921, 49.279710600000065 ], [ -121.920391330999962, 49.279550772000064 ], [ -121.920584785999935, 49.279558087000055 ], [ -121.92587469399993, 49.279757973000081 ], [ -121.925796701999928, 49.2806451840001 ], [ -121.925899747999935, 49.280649074000031 ], [ -121.925837755999936, 49.281354278000066 ], [ -121.926028287999927, 49.28136147200005 ], [ -121.925712341999926, 49.284955376000035 ], [ -121.925048190999931, 49.28493029600002 ], [ -121.924988148999901, 49.285613091000123 ], [ -121.924528997999985, 49.28559575000007 ], [ -121.924523232999903, 49.285661302000044 ], [ -121.924482876999932, 49.28565977800006 ], [ -121.924453147999913, 49.2859978030001 ], [ -121.924002491999943, 49.285980781000056 ], [ -121.923968449999975, 49.28636781400008 ], [ -121.923286311999931, 49.286342045000026 ], [ -121.923265831999984, 49.286574830000113 ], [ -121.922401008999927, 49.286542153000049 ], [ -121.922354521999949, 49.287070450000058 ], [ -121.921348697999989, 49.28703243700005 ], [ -121.921280119999935, 49.287811573000035 ], [ -121.920853751, 49.287795458000048 ], [ -121.92082042, 49.288174083000101 ], [ -121.920309921999959, 49.288154785000046 ], [ -121.920291009999971, 49.288369596000059 ], [ -121.919189312999933, 49.288327939000048 ], [ -121.919132994999941, 49.288967422 ], [ -121.91804127899999, 49.288926131000046 ], [ -121.917986278999962, 49.289550468000158 ], [ -121.920349811999969, 49.289639846000064 ], [ -121.920287075999951, 49.290352395000149 ], [ -121.920901837999921, 49.290375633000082 ], [ -121.920585433999918, 49.29396947300004 ], [ -121.919591643999965, 49.293931904000047 ], [ -121.91954392, 49.294473796000034 ], [ -121.919151414999945, 49.294458956000099 ], [ -121.919128696999948, 49.294716882000031 ], [ -121.920500826999955, 49.29476875600006 ], [ -121.920338480999959, 49.296612447000044 ], [ -121.920460544999969, 49.296617060000059 ], [ -121.920305519999943, 49.298377525000021 ], [ -121.920314660999964, 49.298377870000103 ], [ -121.920061460999989, 49.301252907000119 ], [ -121.919998155999934, 49.301971664000085 ], [ -121.919277636999951, 49.301944428000084 ], [ -121.919261334999945, 49.302129480000097 ], [ -121.919105968999972, 49.302123607000077 ], [ -121.919028972999968, 49.302997583000014 ], [ -121.913542891999953, 49.302790042000076 ], [ -121.913582908999899, 49.302336439000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18877917", "BldgCostT": "12491667", "sL_LossRatio": "0.849296193229406", "sL_AssetLoss": "74026", "sL_BldgLoss": "62870", "sL_StrLoss": "44530", "sL_NStrLoss": "18340", "sL_ContLoss": "11156", "geom_point": "0101000020E6100000B14BD8A731805EC06734B05D739E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.997066213999958, 49.244009434000105 ], [ -121.99714955499999, 49.243043639000113 ], [ -121.99585343199999, 49.242995505000131 ], [ -121.995869539999916, 49.242808904000071 ], [ -121.995835704999976, 49.242807646000131 ], [ -121.995238355999987, 49.242785458000085 ], [ -121.995326687, 49.242755576000036 ], [ -121.995715997, 49.242534098000128 ], [ -121.995817169999924, 49.242283161000074 ], [ -121.995887019999955, 49.241546046000096 ], [ -121.995859919999972, 49.241527778000012 ], [ -121.995862326999969, 49.241410896000033 ], [ -121.995927467999934, 49.240907626000116 ], [ -121.995970585999913, 49.240818054000066 ], [ -121.996415766999959, 49.24054311000004 ], [ -121.996528083999962, 49.240427104000013 ], [ -121.996599087999954, 49.240310978000117 ], [ -121.996566549999969, 49.239878838000024 ], [ -121.996636123999934, 49.239834450000046 ], [ -121.996637031999953, 49.239789443000035 ], [ -121.996806108999962, 49.239584050000076 ], [ -121.99670143099992, 49.239331239000073 ], [ -121.996878455999934, 49.239240517000056 ], [ -122.000395452999939, 49.239371070000075 ], [ -122.000379364999958, 49.239557672000103 ], [ -122.001181208999981, 49.239587421000067 ], [ -122.001196450999942, 49.238831675000043 ], [ -122.00190695399999, 49.238837816000093 ], [ -122.002165517999956, 49.235837303000032 ], [ -122.002427296999969, 49.235847013000061 ], [ -122.002454222999944, 49.235534510000107 ], [ -122.002745624999974, 49.235545317000039 ], [ -122.002776027999957, 49.235192416000139 ], [ -122.002918174999976, 49.235197688000028 ], [ -122.002926206999945, 49.234798669000057 ], [ -122.003338245999942, 49.234802224000141 ], [ -122.003343672999932, 49.234532408000142 ], [ -122.003666319, 49.234535191000063 ], [ -122.003679536999954, 49.234381735000071 ], [ -122.00375875099995, 49.234384672000012 ], [ -122.00376113499999, 49.234266146000088 ], [ -122.00387769400001, 49.234267151000068 ], [ -122.003879024999918, 49.23425168800005 ], [ -121.999137415999925, 49.234075784000076 ], [ -121.999282318999917, 49.2339833690001 ], [ -121.999593546999947, 49.233247794000128 ], [ -121.99956242099999, 49.23311064300006 ], [ -121.999330726999958, 49.232951486000083 ], [ -121.999291625999945, 49.232924649000076 ], [ -121.999334917999988, 49.232906562000039 ], [ -122.000061101999904, 49.232852252000058 ], [ -122.00015486399991, 49.232630522000086 ], [ -122.00016837, 49.232615989000088 ], [ -122.001693871999947, 49.232308838000037 ], [ -122.00208322499995, 49.232399335000075 ], [ -122.003402540999943, 49.232705970000069 ], [ -122.004474339999945, 49.232787754000057 ], [ -122.005327035999954, 49.232788304000088 ], [ -122.005700500999922, 49.232765502000049 ], [ -122.006381248999958, 49.232683171000055 ], [ -122.007049317999972, 49.232492911000143 ], [ -122.00867185599999, 49.231890188000079 ], [ -122.012003854999989, 49.230917239000078 ], [ -122.010715647000012, 49.231897146000136 ], [ -122.010402167999956, 49.231894460000014 ], [ -122.010397277999957, 49.232139311000068 ], [ -122.00852236299994, 49.23356538400003 ], [ -122.008344484999895, 49.237429251000059 ], [ -122.00828784699999, 49.238452043000031 ], [ -122.008241697999935, 49.238450334000071 ], [ -122.008222742999976, 49.238670634000108 ], [ -122.007973509999971, 49.238661404000034 ], [ -122.00794524899996, 49.238989839000062 ], [ -122.007653822999927, 49.238979046000097 ], [ -122.007623453999912, 49.239331947000032 ], [ -122.007361654999968, 49.239322250000058 ], [ -122.007334760999953, 49.2396347520001 ], [ -122.002420367999946, 49.239452614000122 ], [ -122.002416355999955, 49.239651807000058 ], [ -122.001639126, 49.239645091000092 ], [ -122.001559379999932, 49.240570341000087 ], [ -122.002855439999976, 49.240618407000071 ], [ -122.002545717999951, 49.244212753000085 ], [ -121.997066213999958, 49.244009434000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.966353889823001", "sL_AssetLoss": "5531.1", "sL_BldgLoss": "5345", "sL_StrLoss": "4529", "sL_NStrLoss": "816", "sL_ContLoss": "186.1", "geom_point": "0101000020E6100000816907124A9A5EC0CFA2772AE0F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.411742683999975, 49.937620206000076 ], [ -122.410294812999965, 49.936372593000037 ], [ -122.409892982999963, 49.936171803000022 ], [ -122.406018809999921, 49.935144897000029 ], [ -122.40523095599994, 49.934870953000086 ], [ -122.40625930499999, 49.934851335000097 ], [ -122.406774388999963, 49.934842966000126 ], [ -122.409649869999896, 49.934937229000077 ], [ -122.40963035, 49.935185477000076 ], [ -122.41046145699994, 49.935212708000059 ], [ -122.410403751999979, 49.935946724000075 ], [ -122.412447433999944, 49.936013658000029 ], [ -122.412421721999976, 49.936340904000062 ], [ -122.413049034999986, 49.936361442000155 ], [ -122.413016559999974, 49.936774814000046 ], [ -122.41350894499999, 49.936790931000104 ], [ -122.41329407399999, 49.939526235000038 ], [ -122.412482508000011, 49.93876670500002 ], [ -122.411742683999975, 49.937620206000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11285834", "BldgCostT": "7783334", "sL_LossRatio": "0.966894478559133", "sL_AssetLoss": "15568.4", "sL_BldgLoss": "15053", "sL_StrLoss": "12556", "sL_NStrLoss": "2497", "sL_ContLoss": "515.4", "geom_point": "0101000020E6100000D299FF801C9A5EC05A1FBD7E14F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.407662101999946, 49.940200513 ], [ -122.407694627999945, 49.939787146000121 ], [ -122.40720221299992, 49.939771002000022 ], [ -122.407227964999962, 49.939443758000024 ], [ -122.406600611999949, 49.93942318700006 ], [ -122.406658381999975, 49.9386891770001 ], [ -122.40461458899992, 49.93862213600007 ], [ -122.404634138999981, 49.93837389000003 ], [ -122.403802975999938, 49.93834661400011 ], [ -122.403951486, 49.936461079 ], [ -122.404006099999933, 49.93576763800003 ], [ -122.404227779999985, 49.935810002000089 ], [ -122.405397678999933, 49.935807195000066 ], [ -122.408539493999953, 49.936354089000133 ], [ -122.409760091999928, 49.936882508000068 ], [ -122.410726516999915, 49.93757040200007 ], [ -122.412541209999958, 49.939693887000018 ], [ -122.412593191999946, 49.939973002000087 ], [ -122.412799800999963, 49.940198013000085 ], [ -122.412758058999913, 49.940367454000054 ], [ -122.410333872, 49.94028806900009 ], [ -122.407662101999946, 49.940200513 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.927687882056814", "sL_AssetLoss": "2781", "sL_BldgLoss": "2579.9", "sL_StrLoss": "1774.9", "sL_NStrLoss": "805", "sL_ContLoss": "201.1", "geom_point": "0101000020E610000088F7FB49A5A05EC04D5BF147B0BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.508900566999969, 49.461116466000092 ], [ -122.508922238999958, 49.460829870000083 ], [ -122.508661177999983, 49.460821460000034 ], [ -122.508691660999901, 49.460418365000052 ], [ -122.508415092999954, 49.460409455000097 ], [ -122.50844426099998, 49.460023792000065 ], [ -122.50838411699999, 49.460021855000043 ], [ -122.508412875999937, 49.459641564000087 ], [ -122.508248035999884, 49.459636252000095 ], [ -122.508275564000016, 49.459272247000044 ], [ -122.50809255299994, 49.459266349000103 ], [ -122.508125326999902, 49.458833021000061 ], [ -122.508026876999963, 49.458829848000057 ], [ -122.508054807999969, 49.458460564000113 ], [ -122.507976699999958, 49.458458048000089 ], [ -122.508248548999973, 49.454863492000065 ], [ -122.510907083999939, 49.454949127000084 ], [ -122.510549684999944, 49.455394294000037 ], [ -122.510332181999971, 49.45652649200008 ], [ -122.510368185999951, 49.457147490000125 ], [ -122.511725992999942, 49.457999216000097 ], [ -122.512316191999972, 49.458145888000054 ], [ -122.51228680399997, 49.458397986000115 ], [ -122.511816, 49.458655689000153 ], [ -122.511824190999945, 49.459222609000093 ], [ -122.512603277999972, 49.45996459400002 ], [ -122.512890608999925, 49.460108392000038 ], [ -122.513245605999927, 49.460461598000037 ], [ -122.513367492999961, 49.460839112000023 ], [ -122.513738749999987, 49.461272210000061 ], [ -122.508900566999969, 49.461116466000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.941498575180198", "sL_AssetLoss": "3579.4", "sL_BldgLoss": "3370", "sL_StrLoss": "2765", "sL_NStrLoss": "605", "sL_ContLoss": "209.4", "geom_point": "0101000020E610000055D6BAFD47A85EC0BF3E00CA5BCC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.627193338999959, 49.598536874000018 ], [ -122.627235694999968, 49.597958907000127 ], [ -122.627083071999948, 49.597954173000097 ], [ -122.62734645099998, 49.594360052000127 ], [ -122.63160690699999, 49.594492138000064 ], [ -122.631439001999922, 49.59469619500004 ], [ -122.631391896999958, 49.595667487000092 ], [ -122.631484393999955, 49.596036410000117 ], [ -122.63192061699999, 49.596919401000058 ], [ -122.63144651199994, 49.597349489000081 ], [ -122.631569706999954, 49.597772499000058 ], [ -122.631730298999983, 49.598349305000056 ], [ -122.631589398999921, 49.598600008000112 ], [ -122.631528725999914, 49.598671276000083 ], [ -122.627193338999959, 49.598536874000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151085167", "BldgCostT": "104196667", "sL_LossRatio": "0.834772241851888", "sL_AssetLoss": "832923", "sL_BldgLoss": "695301", "sL_StrLoss": "404632", "sL_NStrLoss": "290669", "sL_ContLoss": "137622", "geom_point": "0101000020E6100000269BBC12528F5EC0B808C6A0179E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.22800178499989, 49.278006094000041 ], [ -122.228007428999916, 49.27734310500005 ], [ -122.228008643999928, 49.277197865000069 ], [ -122.22803676800001, 49.273879848 ], [ -122.228041046999948, 49.273375071000068 ], [ -122.22804320099999, 49.273120911000063 ], [ -122.228049541999923, 49.272916495000068 ], [ -122.22806794199991, 49.272323003000054 ], [ -122.228106703999956, 49.271072789000122 ], [ -122.228126452999916, 49.268922926000094 ], [ -122.228131892999926, 49.268329282000138 ], [ -122.228155516999934, 49.265756630000077 ], [ -122.228163202, 49.264919089000053 ], [ -122.228122797999958, 49.264720860000132 ], [ -122.228042382999902, 49.264326297000096 ], [ -122.228031912999981, 49.264299615000049 ], [ -122.227932059999944, 49.264045364000047 ], [ -122.22785734199999, 49.263855104000079 ], [ -122.227746281999956, 49.26357239500004 ], [ -122.227581198999928, 49.263422510000098 ], [ -122.227210489999962, 49.263332906000052 ], [ -122.225776307, 49.263254797000052 ], [ -122.225551192999916, 49.263199115000084 ], [ -122.225349283999961, 49.26309559700006 ], [ -122.225111209, 49.262761906000073 ], [ -122.224881002999936, 49.26255108700007 ], [ -122.223855916999923, 49.262132240000064 ], [ -122.223833992999985, 49.262123303000052 ], [ -122.223261808999965, 49.261915115000129 ], [ -122.222850100999935, 49.261765292000071 ], [ -122.222729799999911, 49.261709889 ], [ -122.222322795999943, 49.26152240100005 ], [ -122.221993415, 49.261314402000046 ], [ -122.221929023999976, 49.261259329000033 ], [ -122.221188977999972, 49.260626499000104 ], [ -122.219684238999932, 49.259242644000096 ], [ -122.219594489999949, 49.259160113000057 ], [ -122.219293952999962, 49.258825311000066 ], [ -122.219210205999957, 49.25873200500007 ], [ -122.219040889, 49.258414201 ], [ -122.218686215999966, 49.257370705000028 ], [ -122.218301239999931, 49.256483064000086 ], [ -122.218237305999978, 49.25633560600005 ], [ -122.21750579899998, 49.255143715000088 ], [ -122.217328799999933, 49.25466788100006 ], [ -122.21726589299999, 49.253805008000022 ], [ -122.217321603999906, 49.252902110000022 ], [ -122.217453133999939, 49.252378085000082 ], [ -122.217718710999989, 49.251319803000094 ], [ -122.217777701, 49.25093250600009 ], [ -122.217667939999956, 49.250201702000012 ], [ -122.217654800999966, 49.250114294000127 ], [ -122.217575168999986, 49.249856073000018 ], [ -122.217524404999935, 49.249691515000059 ], [ -122.217485477999944, 49.249447656000029 ], [ -122.217428877999964, 49.249093288 ], [ -122.216702216999977, 49.246090804000076 ], [ -122.216672186999972, 49.24573379100007 ], [ -122.216773336999921, 49.245435723000043 ], [ -122.21679519599995, 49.245371295000027 ], [ -122.216975789999964, 49.245054123000017 ], [ -122.217204217999893, 49.244652903000031 ], [ -122.217303183999931, 49.243134893000047 ], [ -122.217688106999958, 49.241885700000061 ], [ -122.21791719299992, 49.241300695000071 ], [ -122.21797581299991, 49.241002602000066 ], [ -122.217653432999967, 49.239998724000017 ], [ -122.217524395999959, 49.239596903000084 ], [ -122.217531410000021, 49.23917360300004 ], [ -122.217637806999974, 49.238609494000102 ], [ -122.217604800999965, 49.237750304000024 ], [ -122.217661697999944, 49.237558487000051 ], [ -122.21830346699997, 49.236847053000041 ], [ -122.21836548499999, 49.236778294000047 ], [ -122.21852508399995, 49.235814093000045 ], [ -122.219432196999975, 49.234712907000052 ], [ -122.220068294999976, 49.233903292000058 ], [ -122.220340001999929, 49.23365419200011 ], [ -122.220971622999983, 49.233354603000045 ], [ -122.221246387999884, 49.233100093000054 ], [ -122.221360940999972, 49.23290266800003 ], [ -122.221613879999964, 49.232466690000138 ], [ -122.221693, 49.232373581000076 ], [ -122.223855650999937, 49.232449366000047 ], [ -122.22367316399999, 49.234691820000137 ], [ -122.223563087999963, 49.236044374000087 ], [ -122.222261875999934, 49.235998781000013 ], [ -122.222181250999967, 49.236989067000131 ], [ -122.223640287999913, 49.237040188000094 ], [ -122.223803214999933, 49.235038220000078 ], [ -122.227394389999958, 49.235163962000115 ], [ -122.227434305999935, 49.234672977000095 ], [ -122.227523943999927, 49.233570405000115 ], [ -122.233003196999945, 49.233762025000011 ], [ -122.232936995999978, 49.234577510000101 ], [ -122.234627624999945, 49.234636577000096 ], [ -122.234702188999904, 49.23463918300007 ], [ -122.23466072599993, 49.2351501730001 ], [ -122.235656687999978, 49.235184958000097 ], [ -122.235599687999937, 49.235887573000099 ], [ -122.239117712999956, 49.236010367000091 ], [ -122.238912844000012, 49.238537878000038 ], [ -122.238993073999922, 49.238540678000099 ], [ -122.238943873999958, 49.239147639000073 ], [ -122.238947914, 49.239147780000046 ], [ -122.238946267999978, 49.239168085000102 ], [ -122.240309767999946, 49.239215644000062 ], [ -122.240018436999947, 49.242810660000103 ], [ -122.23999771699999, 49.242809938000072 ], [ -122.239980879999948, 49.243017681000026 ], [ -122.240355702999949, 49.243030752000017 ], [ -122.240306545999943, 49.243637344000057 ], [ -122.240341241999943, 49.243638554000086 ], [ -122.240286585999968, 49.244312993000044 ], [ -122.240360082999956, 49.244315556000124 ], [ -122.240212103, 49.246141506000086 ], [ -122.24427086299994, 49.24628295500009 ], [ -122.244235383999978, 49.246721179000033 ], [ -122.24429543199993, 49.246723270000061 ], [ -122.244341736999928, 49.24615130700009 ], [ -122.244159120999967, 49.246144946000051 ], [ -122.244257934, 49.244924429000072 ], [ -122.244120694999935, 49.244919649000046 ], [ -122.24420586799998, 49.243867592000051 ], [ -122.244109960999978, 49.243864251000026 ], [ -122.244166215999911, 49.243169362000117 ], [ -122.244122904999955, 49.243167853000053 ], [ -122.244223505999983, 49.241925169000055 ], [ -122.24323225099999, 49.241890633000054 ], [ -122.243523329, 49.238295603000012 ], [ -122.244231827999926, 49.238320288000075 ], [ -122.244291247999939, 49.237586206000046 ], [ -122.243908244999943, 49.237572862000043 ], [ -122.244135010999983, 49.234771377000072 ], [ -122.243758713999981, 49.234758266000107 ], [ -122.243764039999959, 49.234692467000045 ], [ -122.243813834999969, 49.234077318000104 ], [ -122.243611350999942, 49.234070262000081 ], [ -122.243729108999972, 49.232615508000038 ], [ -122.24232109799999, 49.232566433000038 ], [ -122.242612186999978, 49.22897135500007 ], [ -122.243400825999942, 49.228998844000053 ], [ -122.243410358999952, 49.228881073000117 ], [ -122.243677307999974, 49.228890377 ], [ -122.243907897999932, 49.226041277000029 ], [ -122.245273628999911, 49.226088866000026 ], [ -122.245337679999963, 49.225297109000081 ], [ -122.246314607999963, 49.225331139000026 ], [ -122.246418180999967, 49.224050462000022 ], [ -122.244401706999923, 49.223980210000036 ], [ -122.244449991999957, 49.223383442000078 ], [ -122.244268237999918, 49.223377108000115 ], [ -122.244388683999944, 49.221888545000091 ], [ -122.24426907099999, 49.22188437600002 ], [ -122.244224968999944, 49.222429417000086 ], [ -122.243355567999956, 49.222399114000083 ], [ -122.243349536, 49.222473638000089 ], [ -122.242792142999974, 49.222454206000073 ], [ -122.242789013999953, 49.22249285100002 ], [ -122.240608725999891, 49.222416814000027 ], [ -122.240577041999984, 49.222808003000118 ], [ -122.239611671999981, 49.222774322000092 ], [ -122.23948798, 49.224301025000038 ], [ -122.238530799999921, 49.224267621000067 ], [ -122.23828979699999, 49.227241245000094 ], [ -122.238188474999959, 49.227237709000043 ], [ -122.238161011, 49.22757654800008 ], [ -122.238053770999954, 49.227572805000072 ], [ -122.238025324, 49.227923750000095 ], [ -122.23797911299999, 49.22792213800011 ], [ -122.237933449999943, 49.228485450000043 ], [ -122.237907856, 49.228484557000101 ], [ -122.237874271999942, 49.2288988520001 ], [ -122.23762715399999, 49.228890225000072 ], [ -122.237483854999937, 49.230657755000074 ], [ -122.232004949999975, 49.230466361000047 ], [ -122.232290631999959, 49.226947581000061 ], [ -122.231048335999958, 49.226904145000042 ], [ -122.231127366999942, 49.225930942000097 ], [ -122.230475175999956, 49.225908132000079 ], [ -122.230690161999988, 49.223260979000074 ], [ -122.228826983999951, 49.223195796000049 ], [ -122.228895706999964, 49.222349955 ], [ -122.227143917999967, 49.22228863900007 ], [ -122.227053527999914, 49.223400650000031 ], [ -122.227176467999982, 49.223404954000031 ], [ -122.226932616999932, 49.226404685000055 ], [ -122.227528741999947, 49.226425552000102 ], [ -122.227236499999961, 49.230020604000096 ], [ -122.226050628999985, 49.229979088000114 ], [ -122.225887356999934, 49.231986730000131 ], [ -122.222514060999984, 49.23186856400006 ], [ -122.223050502999939, 49.231660804000057 ], [ -122.223390509, 49.23136450099999 ], [ -122.223794713, 49.230566608000053 ], [ -122.224250000999959, 49.23003539300008 ], [ -122.224398614999956, 49.22969540400004 ], [ -122.22443581499995, 49.229153199000052 ], [ -122.224364097999953, 49.228937104000067 ], [ -122.223720508999918, 49.22827190700005 ], [ -122.223693967999964, 49.22818534000001 ], [ -122.22355549299999, 49.227733498000077 ], [ -122.223651095999969, 49.227436709000123 ], [ -122.224225181999913, 49.226677091000063 ], [ -122.224990617999978, 49.225152806000075 ], [ -122.225004621, 49.224951740000115 ], [ -122.225007512000019, 49.224910899000143 ], [ -122.224961095999959, 49.224524392000021 ], [ -122.224948172999987, 49.224416395000041 ], [ -122.224938387999927, 49.224335210000028 ], [ -122.224923194999946, 49.224208500000088 ], [ -122.22493439699997, 49.223952890000085 ], [ -122.225086916999928, 49.22342830700012 ], [ -122.22538718599999, 49.22269159800004 ], [ -122.225734704999951, 49.221973249000051 ], [ -122.226648527999942, 49.22200525100002 ], [ -122.226657564999982, 49.221894088000028 ], [ -122.225787735999958, 49.221863628000051 ], [ -122.225860994999934, 49.221712192000027 ], [ -122.226147864999973, 49.22130752900015 ], [ -122.226191422999989, 49.22124610900007 ], [ -122.227141605000014, 49.220233804000046 ], [ -122.228175211999883, 49.219226302000067 ], [ -122.229213329999979, 49.218296649000131 ], [ -122.231337260999908, 49.216394480000112 ], [ -122.231441147999945, 49.216301466000097 ], [ -122.232887386999934, 49.215006096000089 ], [ -122.233331299999961, 49.214494402000078 ], [ -122.23358631499994, 49.213923692000051 ], [ -122.233680695999936, 49.213437588000069 ], [ -122.233704817000017, 49.213021991000083 ], [ -122.233573689999957, 49.212522605000125 ], [ -122.23336780399994, 49.212098091000065 ], [ -122.232931082999954, 49.211490297000076 ], [ -122.233139536999886, 49.211497586000043 ], [ -122.23322290199998, 49.210470074000042 ], [ -122.238699453999956, 49.210661412000086 ], [ -122.238686409999929, 49.210822415000045 ], [ -122.239696828999968, 49.210857687000093 ], [ -122.239664678999958, 49.211254645000082 ], [ -122.239748950999967, 49.211257586000052 ], [ -122.239637821999949, 49.212629660000054 ], [ -122.239864933999982, 49.212637586000042 ], [ -122.239573734999951, 49.216232746000124 ], [ -122.238508740000029, 49.216195573000064 ], [ -122.238496353999921, 49.216348431000064 ], [ -122.238711106, 49.216355927000137 ], [ -122.238672586999911, 49.216831330000105 ], [ -122.238745247999958, 49.216821656000036 ], [ -122.239340074000026, 49.216742446000062 ], [ -122.239340228999978, 49.216732344000128 ], [ -122.239341835999966, 49.216627644000027 ], [ -122.240008455999899, 49.21663203300011 ], [ -122.240650755999937, 49.21663625700004 ], [ -122.241223632999947, 49.216592462000094 ], [ -122.241222462999957, 49.216640014000063 ], [ -122.241401392999975, 49.216641189000072 ], [ -122.241380761999949, 49.217989200000027 ], [ -122.241979322999924, 49.218010077000045 ], [ -122.24198252599993, 49.217970507000125 ], [ -122.24262071299999, 49.217992762000051 ], [ -122.242639210999982, 49.217764223000088 ], [ -122.243358297999961, 49.217789295000017 ], [ -122.243373290999926, 49.217604040000012 ], [ -122.243534674999964, 49.217609666000016 ], [ -122.24362316, 49.216516161000044 ], [ -122.243805758999954, 49.214259441000095 ], [ -122.24516683399996, 49.214306881000034 ], [ -122.24517575099999, 49.214196637000086 ], [ -122.242733256999912, 49.214111491000054 ], [ -122.243024198999962, 49.210516311000063 ], [ -122.243735553999926, 49.210541116000101 ], [ -122.243773294, 49.210074628000015 ], [ -122.244174317999921, 49.210088609000074 ], [ -122.244242339999957, 49.209247704000084 ], [ -122.244065509999928, 49.209241539000075 ], [ -122.244288088999923, 49.206489869000023 ], [ -122.244152682999953, 49.206485148000127 ], [ -122.244239519999923, 49.205411564000045 ], [ -122.244347623999914, 49.204074981000076 ], [ -122.243540511999981, 49.204046838000117 ], [ -122.243783708, 49.201040349000046 ], [ -122.24344519499999, 49.201028544000074 ], [ -122.24346706299994, 49.200758207000014 ], [ -122.241147432999966, 49.200677283000104 ], [ -122.24133163499998, 49.198401418000095 ], [ -122.244378132999941, 49.1984043920001 ], [ -122.244789886999939, 49.198404768000032 ], [ -122.247591218999943, 49.198407394000128 ], [ -122.248690781999969, 49.198422197000042 ], [ -122.250651029999943, 49.198395554000115 ], [ -122.250883944999927, 49.198392379000062 ], [ -122.250885201999949, 49.198395698000084 ], [ -122.250876805999937, 49.198972502000068 ], [ -122.250564904000015, 49.199528010000058 ], [ -122.249741702999984, 49.200385300000036 ], [ -122.24933130699999, 49.20031980100007 ], [ -122.248529490999957, 49.199882608000053 ], [ -122.248281220999957, 49.19992669700008 ], [ -122.24804561199997, 49.200123287000075 ], [ -122.248245086999987, 49.200420895000029 ], [ -122.248148186999956, 49.200581899000099 ], [ -122.24769093399999, 49.200681073000069 ], [ -122.247583399999925, 49.200704395000152 ], [ -122.24664818399998, 49.200752800000082 ], [ -122.246248412999961, 49.200939402000131 ], [ -122.246090201999948, 49.201296810000066 ], [ -122.246111999, 49.201729807000071 ], [ -122.245442394999927, 49.202444692000071 ], [ -122.244929694999925, 49.202819312000059 ], [ -122.244866013999939, 49.203267895000067 ], [ -122.244559611999975, 49.203662407000088 ], [ -122.244930493999973, 49.203565608000105 ], [ -122.24502960699995, 49.203404701000046 ], [ -122.245035297999948, 49.202973093000011 ], [ -122.245562580999945, 49.202625603000051 ], [ -122.245760202000014, 49.202293800000113 ], [ -122.246135211999942, 49.202090096000106 ], [ -122.246385914999948, 49.201793904000063 ], [ -122.246408588999898, 49.201174405000145 ], [ -122.246506412999935, 49.201011991000051 ], [ -122.247636604999968, 49.200758494000134 ], [ -122.247690799999958, 49.2007540910001 ], [ -122.248144796999952, 49.20071720699999 ], [ -122.248521497999917, 49.200288486 ], [ -122.248716705999982, 49.200190193000019 ], [ -122.248976097999943, 49.200245802000047 ], [ -122.249547495999963, 49.200581894000088 ], [ -122.249795008999939, 49.200539187000118 ], [ -122.250768708999928, 49.199744388000092 ], [ -122.25122629699996, 49.199478098000043 ], [ -122.251281917999947, 49.199298695000032 ], [ -122.251131391999976, 49.198488288000185 ], [ -122.251127409, 49.198389057000057 ], [ -122.251227971999953, 49.19838769000004 ], [ -122.251668595999959, 49.198381688000033 ], [ -122.252272916999971, 49.198412502000032 ], [ -122.253281708, 49.198463900000078 ], [ -122.25618228799999, 49.198473469000078 ], [ -122.256059001000011, 49.200002796000071 ], [ -122.252812534999961, 49.199889903000049 ], [ -122.252726117999927, 49.200960874000039 ], [ -122.251013152, 49.200901267000056 ], [ -122.250779197999947, 49.203799113000024 ], [ -122.24986372799998, 49.203767246000091 ], [ -122.249770662999964, 49.204919607000093 ], [ -122.250973349999953, 49.204961470000086 ], [ -122.250929209999981, 49.20550816700014 ], [ -122.25077691099996, 49.207394417000089 ], [ -122.251014201, 49.207402674000029 ], [ -122.25087891099993, 49.209078200000086 ], [ -122.25093010799992, 49.209079982000134 ], [ -122.250898728999942, 49.209468601000083 ], [ -122.251007328999947, 49.209472380000079 ], [ -122.250956794000018, 49.210098228000042 ], [ -122.251409253999967, 49.210113972000052 ], [ -122.251118962999954, 49.213709176000094 ], [ -122.25070871399997, 49.213694901000046 ], [ -122.250632866999979, 49.214634053000069 ], [ -122.251837989999927, 49.21467598200006 ], [ -122.252108084999932, 49.211330332000045 ], [ -122.252988279999968, 49.211360948000049 ], [ -122.253071501999955, 49.21032975200005 ], [ -122.253479465999987, 49.210343939000083 ], [ -122.253507100999968, 49.210001462000022 ], [ -122.254127102999988, 49.210023020000044 ], [ -122.25421783499999, 49.208898375000032 ], [ -122.254300084999926, 49.208901236000095 ], [ -122.254329349999963, 49.208538477000111 ], [ -122.25443688199999, 49.208542216000062 ], [ -122.254482373999963, 49.207978279000073 ], [ -122.25505838, 49.207998304000036 ], [ -122.25509717599999, 49.207517293000116 ], [ -122.256896374999911, 49.207579822000092 ], [ -122.257056271999929, 49.205596258000071 ], [ -122.257093126999933, 49.205139033000087 ], [ -122.258595823999912, 49.205191235000058 ], [ -122.258687921999979, 49.204048169000039 ], [ -122.258798384999949, 49.20405200600009 ], [ -122.258830268999972, 49.203656254000087 ], [ -122.258354679999954, 49.203639736000092 ], [ -122.258416037999922, 49.202878223000035 ], [ -122.257886410999973, 49.202859825000125 ], [ -122.258176111999944, 49.199264542000087 ], [ -122.258582741999973, 49.199278669000122 ], [ -122.258646959999936, 49.198481539000092 ], [ -122.258692609999954, 49.198481688000122 ], [ -122.259736963999913, 49.198498341000061 ], [ -122.259846779, 49.198500103000086 ], [ -122.260877196999928, 49.198574690000022 ], [ -122.261633193999941, 49.198561212000108 ], [ -122.265044311999972, 49.198526397000094 ], [ -122.265707819999975, 49.198244889000087 ], [ -122.266309007999951, 49.197989799000013 ], [ -122.267474548999928, 49.197642206000175 ], [ -122.2678743, 49.197523006000083 ], [ -122.269118580999958, 49.196710795000051 ], [ -122.269464261999971, 49.196277505000047 ], [ -122.269741300999954, 49.195930206000071 ], [ -122.269754146999972, 49.195843060000122 ], [ -122.270000304999883, 49.196231748000031 ], [ -122.270259496999969, 49.196387871000084 ], [ -122.270258089999956, 49.19797742800003 ], [ -122.27025727199999, 49.198926520000093 ], [ -122.268654521999906, 49.198871009000086 ], [ -122.26849145599995, 49.200900495000063 ], [ -122.264078507, 49.20074752699999 ], [ -122.26407333499999, 49.200811803000114 ], [ -122.264548895999908, 49.200828296000047 ], [ -122.264259680999885, 49.204423587000129 ], [ -122.264149216999911, 49.204419757000061 ], [ -122.264046514999933, 49.205696287000109 ], [ -122.263874555999948, 49.207833487000059 ], [ -122.262371765999944, 49.20778135900008 ], [ -122.262279751999927, 49.208924422000074 ], [ -122.2604804919999, 49.208861983000112 ], [ -122.260459793999971, 49.209118969 ], [ -122.260749350999944, 49.209129019000059 ], [ -122.26045979, 49.21272425500004 ], [ -122.260329996999957, 49.21271974900003 ], [ -122.260296205999978, 49.213139257000073 ], [ -122.259644865999974, 49.213116648000032 ], [ -122.259555835999961, 49.214221672000114 ], [ -122.259110068999988, 49.214206196000106 ], [ -122.259048757999921, 49.214967082000044 ], [ -122.257311856999962, 49.214906764000069 ], [ -122.257294994999953, 49.21511592400001 ], [ -122.254777387999951, 49.215028444000026 ], [ -122.254507462999953, 49.218374081000071 ], [ -122.254423923999923, 49.218371178000034 ], [ -122.254361898, 49.219139882000043 ], [ -122.250808244999945, 49.219016299000039 ], [ -122.250718206999963, 49.220131068000114 ], [ -122.25050442099996, 49.220123629000085 ], [ -122.25034589799999, 49.222086063000077 ], [ -122.252065576999968, 49.222145886000057 ], [ -122.251775261999967, 49.225741026000023 ], [ -122.25079832199999, 49.225707045000092 ], [ -122.250755577999925, 49.226236177000068 ], [ -122.251383356999938, 49.226258014000081 ], [ -122.251218646999973, 49.228297226000031 ], [ -122.251807569, 49.22831770800012 ], [ -122.251710593999988, 49.229518419000087 ], [ -122.252497820999963, 49.22954579200011 ], [ -122.252207493999933, 49.233140894000044 ], [ -122.251938837999916, 49.233131553000042 ], [ -122.251824034999956, 49.234552881000113 ], [ -122.251787280999963, 49.235007899000081 ], [ -122.251455112999949, 49.234996348000017 ], [ -122.251309960999933, 49.236793105000082 ], [ -122.250914257999938, 49.23677934500008 ], [ -122.250895896999964, 49.237006587000032 ], [ -122.250995538999916, 49.237010052000073 ], [ -122.25090342099999, 49.238150157000106 ], [ -122.251038508999983, 49.238154854000115 ], [ -122.25082856599991, 49.240753076000075 ], [ -122.251058169999951, 49.240761060000118 ], [ -122.250964702999937, 49.241917758000035 ], [ -122.25105114199999, 49.241920764000035 ], [ -122.250962460999972, 49.243018216000067 ], [ -122.251992877999925, 49.243054040000111 ], [ -122.251702426999969, 49.246649067000149 ], [ -122.251150539999941, 49.246629881000075 ], [ -122.25111936199994, 49.247015690000076 ], [ -122.255714497999989, 49.247175352000127 ], [ -122.255424307999974, 49.25077036600004 ], [ -122.255219353999962, 49.25076324900008 ], [ -122.255171132999976, 49.25136057100012 ], [ -122.251129511999963, 49.251220144000037 ], [ -122.251113668999935, 49.251416168000098 ], [ -122.250894259999896, 49.251408540000057 ], [ -122.2508092899999, 49.25245980300005 ], [ -122.251110894999968, 49.252470289000023 ], [ -122.251002106, 49.253816265000047 ], [ -122.251069080999983, 49.253818594000101 ], [ -122.251037139999966, 49.254213782000086 ], [ -122.25643392099991, 49.254401252 ], [ -122.25624321, 49.256764011000044 ], [ -122.256143741999921, 49.257996228000124 ], [ -122.250661534999949, 49.257805791000074 ], [ -122.25069348199996, 49.257410603000011 ], [ -122.249491012999925, 49.257368796000044 ], [ -122.24937341399999, 49.258822989000102 ], [ -122.248949016999987, 49.258808230000106 ], [ -122.24881472, 49.260468578000044 ], [ -122.248803588999934, 49.260606197000115 ], [ -122.247461473000016, 49.260559513000047 ], [ -122.247289533999918, 49.260553531000049 ], [ -122.24724985099999, 49.261043920000098 ], [ -122.247224666999941, 49.261355133000137 ], [ -122.241742098999921, 49.261164243000032 ], [ -122.241899326999928, 49.25922406800003 ], [ -122.241761019999984, 49.259219249000061 ], [ -122.241794656999929, 49.258804156000011 ], [ -122.241200026999977, 49.258783435000048 ], [ -122.241227375999955, 49.258445982000076 ], [ -122.241205946999969, 49.258445236000043 ], [ -122.241368477999984, 49.256439774000057 ], [ -122.241497285999955, 49.254850302000101 ], [ -122.241993263000012, 49.254867585000071 ], [ -122.241997967999922, 49.254809514000087 ], [ -122.242037456999981, 49.254810890000044 ], [ -122.242066485999899, 49.254452614000087 ], [ -122.242631048999925, 49.254472286000123 ], [ -122.24272472199999, 49.25331592700006 ], [ -122.24388619699999, 49.253356387000082 ], [ -122.244045559999947, 49.251388376000094 ], [ -122.24143237499996, 49.251297329000067 ], [ -122.241424573999936, 49.251393601000117 ], [ -122.239297702999977, 49.251319450000089 ], [ -122.239285589999966, 49.251468852000038 ], [ -122.237599255999967, 49.251410030000066 ], [ -122.237554947999968, 49.251956293000049 ], [ -122.234305321, 49.251842866000075 ], [ -122.234085849999957, 49.254546068000138 ], [ -122.230188255999963, 49.25440989500003 ], [ -122.230129837999982, 49.255128629000055 ], [ -122.234014595999923, 49.255264353000044 ], [ -122.233824280999926, 49.257608094000084 ], [ -122.235895777999943, 49.257680410000034 ], [ -122.235603988999969, 49.261275313000098 ], [ -122.233624704999926, 49.261206218000076 ], [ -122.233480796999984, 49.262978059000027 ], [ -122.231339372999912, 49.262903263000034 ], [ -122.229863407999943, 49.262851685000079 ], [ -122.229827435999979, 49.263294128000126 ], [ -122.229791937999963, 49.263730745000046 ], [ -122.231385921999944, 49.263786446000054 ], [ -122.231345814999969, 49.264279945000077 ], [ -122.231332055999957, 49.264449249000151 ], [ -122.231380664999932, 49.264450947000093 ], [ -122.23115272699998, 49.267255431000123 ], [ -122.23163983099991, 49.267272448000028 ], [ -122.231590116999939, 49.267884138000085 ], [ -122.232915122999913, 49.267930415000066 ], [ -122.232623038000014, 49.271525254000089 ], [ -122.232439410999959, 49.271518842000091 ], [ -122.232344984999941, 49.27268081900008 ], [ -122.232344492999957, 49.272686859000068 ], [ -122.232277532999944, 49.27268452000007 ], [ -122.231549253, 49.272659085000051 ], [ -122.231543911999935, 49.272724777000043 ], [ -122.231464513, 49.27370157600005 ], [ -122.230053107999964, 49.27365226900011 ], [ -122.229995497999965, 49.27436070800011 ], [ -122.230238622999963, 49.274369203000035 ], [ -122.229981543999941, 49.27753051400002 ], [ -122.231946961999967, 49.277599166000087 ], [ -122.231909837999922, 49.278055881000078 ], [ -122.232739362999965, 49.278084847000031 ], [ -122.232626225999937, 49.279476952000053 ], [ -122.232447199999982, 49.281679630000014 ], [ -122.227984900999971, 49.281523746000033 ], [ -122.227951322999957, 49.281329892000024 ], [ -122.227953884999977, 49.280927109000089 ], [ -122.228006721999918, 49.280630572000078 ], [ -122.22801336399999, 49.280593406000065 ], [ -122.228037861999965, 49.280456008000037 ], [ -122.228072775, 49.280259900000075 ], [ -122.22808247599994, 49.279717690000034 ], [ -122.22798111499999, 49.279241005000131 ], [ -122.227982468, 49.279230848000061 ], [ -122.228026711000012, 49.278900102000087 ], [ -122.22802311699999, 49.278771226000089 ], [ -122.228014089999988, 49.278447331000038 ], [ -122.228005587999988, 49.278141673000057 ], [ -122.22800178499989, 49.278006094000041 ] ], [ [ -122.227788539999935, 49.260481978000094 ], [ -122.227941306000034, 49.258603805000057 ], [ -122.223507899, 49.258448662000099 ], [ -122.223588669999941, 49.257456747000056 ], [ -122.22223971599999, 49.257409505000076 ], [ -122.222214897999947, 49.257714190000065 ], [ -122.222736563999931, 49.257732462000021 ], [ -122.222605821999935, 49.259337681000012 ], [ -122.225265576999931, 49.259430798000061 ], [ -122.225249122999941, 49.259632947000078 ], [ -122.22756401, 49.259713937000072 ], [ -122.227502347, 49.260471969000051 ], [ -122.227788539999935, 49.260481978000094 ] ], [ [ -122.221862114999936, 49.256111385000054 ], [ -122.222013738999976, 49.254250011000067 ], [ -122.221940101999948, 49.254247432000064 ], [ -122.221996314999927, 49.253557326000077 ], [ -122.221879442999978, 49.253553232000051 ], [ -122.22195535299997, 49.252621302000087 ], [ -122.221893503000032, 49.252619134000057 ], [ -122.22190303299999, 49.252502123000085 ], [ -122.220782352999962, 49.252462855000019 ], [ -122.220513664999913, 49.255760291000037 ], [ -122.219076563, 49.255709918 ], [ -122.21905186399999, 49.25601290000003 ], [ -122.221862114999936, 49.256111385000054 ] ], [ [ -122.228809989999917, 49.251822773000079 ], [ -122.228841193999969, 49.251438974000095 ], [ -122.228644251999938, 49.251432086000072 ], [ -122.22861304599995, 49.251815885000042 ], [ -122.228809989999917, 49.251822773000079 ] ], [ [ -122.232145964999972, 49.250873177000102 ], [ -122.232181247999961, 49.250438799000108 ], [ -122.231427555999943, 49.250412462000092 ], [ -122.231418416999972, 49.250524945000031 ], [ -122.229320674999926, 49.250451613000038 ], [ -122.229294507999967, 49.250773508000073 ], [ -122.232145964999972, 49.250873177000102 ] ], [ [ -122.219534809999971, 49.247159208000035 ], [ -122.220159385999978, 49.245823292000061 ], [ -122.219698705999917, 49.245397486000094 ], [ -122.219852284999945, 49.245218006000087 ], [ -122.219848588999966, 49.245136734000035 ], [ -122.222795983999944, 49.245240027000079 ], [ -122.222787733999951, 49.245341348000103 ], [ -122.223153241999938, 49.245354151000114 ], [ -122.223236557999925, 49.2443307570001 ], [ -122.221763615999961, 49.244279152000075 ], [ -122.221868360999963, 49.242992964000067 ], [ -122.221508388999922, 49.242980349000071 ], [ -122.221662297999927, 49.241090518000107 ], [ -122.221627319000021, 49.241089293000122 ], [ -122.221590613999979, 49.241540006000079 ], [ -122.219352526999955, 49.241461546000046 ], [ -122.219275623000016, 49.242405271000074 ], [ -122.219419332000015, 49.242410310000025 ], [ -122.21934777, 49.243288482000047 ], [ -122.219185308999982, 49.243100207000047 ], [ -122.218980815999942, 49.243036096000026 ], [ -122.21878378199996, 49.243259696000031 ], [ -122.218453716999989, 49.244184007000115 ], [ -122.218391890999925, 49.244696796000028 ], [ -122.218593317999961, 49.244958797000052 ], [ -122.218920813999929, 49.245114090000129 ], [ -122.219107394, 49.245501399000034 ], [ -122.218401496999931, 49.245722196000067 ], [ -122.217811502999893, 49.245753484000069 ], [ -122.217658317999934, 49.245806204000147 ], [ -122.21765859, 49.245887398000043 ], [ -122.217594886999962, 49.246444302000079 ], [ -122.217306006999962, 49.247305884000063 ], [ -122.217401701999933, 49.248170403000124 ], [ -122.2178318799999, 49.248848299000059 ], [ -122.21847741, 49.248871093000069 ], [ -122.219039308000021, 49.248846893000056 ], [ -122.219534809999971, 49.247159208000035 ] ], [ [ -122.231310074999968, 49.24222716500001 ], [ -122.23121451199999, 49.243403569000122 ], [ -122.229345956999964, 49.243338237000046 ], [ -122.229133401999931, 49.245953325000116 ], [ -122.232829823999936, 49.246082535000014 ], [ -122.232995335999973, 49.244044267000028 ], [ -122.23352797299998, 49.244062874000107 ], [ -122.233625076999942, 49.242866777000053 ], [ -122.234430039999921, 49.242894895000106 ], [ -122.234454290999977, 49.242596110000136 ], [ -122.233176142000033, 49.24255146200003 ], [ -122.233225420999986, 49.241944506000088 ], [ -122.233221379999975, 49.241944365000052 ], [ -122.233405076999986, 49.239681679000057 ], [ -122.233333782999949, 49.23967918800011 ], [ -122.23317289299996, 49.241660927000048 ], [ -122.232962633999975, 49.241653581000101 ], [ -122.23291151799998, 49.242283132000061 ], [ -122.231310074999968, 49.24222716500001 ] ], [ [ -122.232913126999946, 49.218789421000075 ], [ -122.232916809999935, 49.218744048000097 ], [ -122.232717847999965, 49.218742727000027 ], [ -122.232718473999938, 49.218702248000035 ], [ -122.232559585999965, 49.218696693000027 ], [ -122.231730510999952, 49.218667704000026 ], [ -122.231724004999961, 49.218747843000095 ], [ -122.23245120699994, 49.218773272000035 ], [ -122.232913126999946, 49.218789421000075 ] ], [ [ -122.24925831099992, 49.215357081000057 ], [ -122.249320244999964, 49.214590506000029 ], [ -122.24927160499999, 49.214588814000116 ], [ -122.249209671999935, 49.215355387000066 ], [ -122.24925831099992, 49.215357081000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.955333746724541", "sL_AssetLoss": "4999.3", "sL_BldgLoss": "4776", "sL_StrLoss": "3860", "sL_NStrLoss": "916", "sL_ContLoss": "223.3", "geom_point": "0101000020E61000000E65A88A69A85EC0B7FB87BAB0CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.629468454999937, 49.609175908000047 ], [ -122.629519039999963, 49.608485344000059 ], [ -122.628681671, 49.608459388000092 ], [ -122.62873125699997, 49.607782602000086 ], [ -122.628421003999932, 49.607772984000064 ], [ -122.62868433499996, 49.604178910000044 ], [ -122.629257538999951, 49.604196680000115 ], [ -122.629265116999989, 49.604093224000039 ], [ -122.632061466999971, 49.604179870000095 ], [ -122.632481617999986, 49.60512429700001 ], [ -122.632990415000023, 49.605765198000014 ], [ -122.633512992999982, 49.606189601000096 ], [ -122.634105796999961, 49.606460195000111 ], [ -122.634517392999953, 49.606786315000079 ], [ -122.634679696999967, 49.6072989950001 ], [ -122.635113381999986, 49.607714180000066 ], [ -122.634993970999986, 49.609347017000125 ], [ -122.629468454999937, 49.609175908000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.974445405779547", "sL_AssetLoss": "2889.5", "sL_BldgLoss": "2815.66", "sL_StrLoss": "2407.36", "sL_NStrLoss": "408.3", "sL_ContLoss": "73.84", "geom_point": "0101000020E6100000BF793737628E5EC08B971BCA58BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.221706001999962, 49.462016996000038 ], [ -122.221773904999935, 49.461187410000065 ], [ -122.227280121999954, 49.461379257000047 ], [ -122.227246935999943, 49.461785292000087 ], [ -122.228319512, 49.461822629000046 ], [ -122.228025842999912, 49.465416419000078 ], [ -122.22692250399993, 49.465378011000084 ], [ -122.226861933999942, 49.46611894600003 ], [ -122.225117623999935, 49.466058202000056 ], [ -122.221355154999927, 49.465927080000014 ], [ -122.221649344999918, 49.462333311000073 ], [ -122.221680022999948, 49.462334380000129 ], [ -122.221706001999962, 49.462016996000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.867379006913891", "sL_AssetLoss": "11137", "sL_BldgLoss": "9660", "sL_StrLoss": "6117", "sL_NStrLoss": "3543", "sL_ContLoss": "1477", "geom_point": "0101000020E6100000FAC432E435A25EC031920397C3B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.530357909, 49.399486693000014 ], [ -122.530627672999955, 49.395891768000084 ], [ -122.531431168999987, 49.395917526000105 ], [ -122.531441846999911, 49.395775188000101 ], [ -122.532409358999985, 49.395806195000041 ], [ -122.532426516999962, 49.395577411000076 ], [ -122.533233074999941, 49.395603253000054 ], [ -122.53325219599995, 49.395348229000042 ], [ -122.533927461999937, 49.395369860000088 ], [ -122.53395158499994, 49.395048046000028 ], [ -122.534232297999935, 49.395057037000122 ], [ -122.534306426999962, 49.394068052000058 ], [ -122.534392396, 49.394070805000048 ], [ -122.534426546999924, 49.393615154000088 ], [ -122.537697085999923, 49.393719850000089 ], [ -122.537595704999887, 49.393772989000155 ], [ -122.537704603999913, 49.393891205000031 ], [ -122.537693194999932, 49.394970795000113 ], [ -122.537883598999912, 49.395258494000075 ], [ -122.538214679999939, 49.395313992000069 ], [ -122.538511376000017, 49.39593639600011 ], [ -122.53904848799999, 49.396108700000106 ], [ -122.539046907999975, 49.396243986000073 ], [ -122.538713502999926, 49.396377898 ], [ -122.538822898999925, 49.396521795000091 ], [ -122.538353997999977, 49.396564489000099 ], [ -122.538324814999939, 49.396664194000074 ], [ -122.538077793999918, 49.396671306000052 ], [ -122.538488310999966, 49.397005986000089 ], [ -122.538156381999912, 49.397050092 ], [ -122.537837414999956, 49.397219606000085 ], [ -122.537849490999918, 49.397444607000054 ], [ -122.537985794999983, 49.397579893000064 ], [ -122.537515178999939, 49.397757998000046 ], [ -122.537500195999954, 49.39787480500005 ], [ -122.536213909999944, 49.398354708000113 ], [ -122.535910517, 49.398398898000046 ], [ -122.535317391999925, 49.398433010000133 ], [ -122.534837488999955, 49.398188113000096 ], [ -122.53483721799995, 49.398313396000091 ], [ -122.53509719399996, 49.3985755080001 ], [ -122.534350408999956, 49.398860293000041 ], [ -122.534158776999931, 49.398635295000062 ], [ -122.534034193999929, 49.398688011000061 ], [ -122.534032495999952, 49.398868897000064 ], [ -122.533743605999945, 49.398902984000109 ], [ -122.533163986999952, 49.398864601000085 ], [ -122.532738497999929, 49.398646703000118 ], [ -122.532600794999965, 49.398665189000013 ], [ -122.532459611999954, 49.398969997000094 ], [ -122.532266810999928, 49.399095288000062 ], [ -122.531327895999979, 49.399118099000084 ], [ -122.531127905999966, 49.399511377000074 ], [ -122.530357909, 49.399486693000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.880063965884861", "sL_AssetLoss": "9380", "sL_BldgLoss": "8255", "sL_StrLoss": "5510", "sL_NStrLoss": "2745", "sL_ContLoss": "1125", "geom_point": "0101000020E61000005319CE4EA9A45EC07FB5935636BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.568724553999985, 49.495127075000077 ], [ -122.568753120999943, 49.494742984000069 ], [ -122.568569371999942, 49.4947371720001 ], [ -122.568662033999942, 49.493491384000016 ], [ -122.568503647999975, 49.493486373000088 ], [ -122.56855387, 49.492811175000014 ], [ -122.568574107999979, 49.492811099000107 ], [ -122.568947195999939, 49.492722798000095 ], [ -122.569568403999938, 49.492759884000172 ], [ -122.570053521999924, 49.492537705000125 ], [ -122.570457802999968, 49.492170195000028 ], [ -122.570736812999925, 49.491829901000095 ], [ -122.570892790999935, 49.491398290000063 ], [ -122.57138661099999, 49.491687394000067 ], [ -122.571562905999954, 49.492074791000093 ], [ -122.571694109999981, 49.492849584000076 ], [ -122.572410898999962, 49.493113108000095 ], [ -122.5732804149999, 49.493080307000056 ], [ -122.573191016999914, 49.492797664000129 ], [ -122.573160605999973, 49.492701488000094 ], [ -122.573340306999953, 49.492549095000101 ], [ -122.573692468999937, 49.492532863000044 ], [ -122.573865080999951, 49.492524899000088 ], [ -122.574240590999963, 49.492409506000065 ], [ -122.574482473999964, 49.49240790700005 ], [ -122.57510991599996, 49.492403803000066 ], [ -122.576269109999956, 49.492568989000056 ], [ -122.576626513999955, 49.492759891000105 ], [ -122.577009708999981, 49.493111609000088 ], [ -122.57715841699995, 49.493390803000061 ], [ -122.577302697999983, 49.494417587000058 ], [ -122.57742369199994, 49.494588498000084 ], [ -122.577485691999982, 49.494857797000051 ], [ -122.576245583999963, 49.494818658000064 ], [ -122.576210471999943, 49.495291749000117 ], [ -122.575519942999961, 49.495269950000072 ], [ -122.575516045999976, 49.495322465000072 ], [ -122.574237618000012, 49.495282095000057 ], [ -122.57423619199993, 49.495301297000054 ], [ -122.568724553999985, 49.495127075000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.94458522272606", "sL_AssetLoss": "5998.4", "sL_BldgLoss": "5666", "sL_StrLoss": "4573", "sL_NStrLoss": "1093", "sL_ContLoss": "332.4", "geom_point": "0101000020E61000008BF14859D2A05EC0E80974BB51B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.512287080999954, 49.442111704000119 ], [ -122.512311675, 49.441786013000112 ], [ -122.511957089, 49.441774596000116 ], [ -122.511959926999964, 49.441737019000044 ], [ -122.511057959999988, 49.441707972000088 ], [ -122.511078319999939, 49.441438437000038 ], [ -122.510737664999965, 49.44142746400005 ], [ -122.510741072999934, 49.441382367000116 ], [ -122.510128946999941, 49.441362649000062 ], [ -122.51015477899999, 49.441020756000043 ], [ -122.510145269999938, 49.441020450000096 ], [ -122.510155748999978, 49.440881761000064 ], [ -122.509639760999931, 49.440865137000074 ], [ -122.509670589999971, 49.440457162000087 ], [ -122.509467979999954, 49.440450633000133 ], [ -122.509739607999975, 49.436855978000139 ], [ -122.512156146, 49.436933820000064 ], [ -122.512070186999949, 49.437212808000041 ], [ -122.512079705999923, 49.437537608000035 ], [ -122.51265569399996, 49.437863709000098 ], [ -122.51307561899992, 49.438684096000024 ], [ -122.513499989999971, 49.438973191000102 ], [ -122.513925906999958, 49.439092783000085 ], [ -122.515234618999955, 49.439322107000116 ], [ -122.516030680999947, 49.439802103000062 ], [ -122.516455407999942, 49.440109690000085 ], [ -122.517231113999912, 49.441129393000026 ], [ -122.517305087999929, 49.442273146000112 ], [ -122.512287080999954, 49.442111704000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.958560331798531", "sL_AssetLoss": "2845.1", "sL_BldgLoss": "2727.2", "sL_StrLoss": "2242.2", "sL_NStrLoss": "485", "sL_ContLoss": "117.9", "geom_point": "0101000020E610000023030EDB35945EC0B0C21482A8AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.313339371, 49.374397268000031 ], [ -122.31346183, 49.372860775000035 ], [ -122.311169089999964, 49.372782593000117 ], [ -122.312204497999971, 49.372125112000099 ], [ -122.313379295999951, 49.370864603000079 ], [ -122.313559700999946, 49.370757790000035 ], [ -122.314000718999949, 49.370759201000119 ], [ -122.31407072099995, 49.370688002000115 ], [ -122.314064595999938, 49.370139699000013 ], [ -122.314248421999963, 49.369843501000091 ], [ -122.314304066999952, 49.369285210000086 ], [ -122.316165788999939, 49.369348649000095 ], [ -122.316043428999961, 49.370885153000124 ], [ -122.316142001999964, 49.370888511000032 ], [ -122.319121681999889, 49.370989974000096 ], [ -122.318835639, 49.374584489000071 ], [ -122.314979576, 49.374453168000045 ], [ -122.313339371, 49.374397268000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.770750988142292", "sL_AssetLoss": "35420", "sL_BldgLoss": "27300", "sL_StrLoss": "13250", "sL_NStrLoss": "14050", "sL_ContLoss": "8120", "geom_point": "0101000020E6100000F8418E94CA8E5EC0428F20AEFF994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.229379189999946, 49.207057991000063 ], [ -122.229283198999923, 49.206177598000075 ], [ -122.229223219999966, 49.205193010000094 ], [ -122.229207635999927, 49.204937106000067 ], [ -122.229187989999957, 49.20461455300012 ], [ -122.229172614999953, 49.204361994000088 ], [ -122.229103698999964, 49.203823296000067 ], [ -122.229171194999964, 49.20285670700008 ], [ -122.229287688999989, 49.202453395000163 ], [ -122.229358625999907, 49.202254775000121 ], [ -122.229553924999919, 49.201707867000032 ], [ -122.229824293999968, 49.20095069000007 ], [ -122.229799857999964, 49.200011212000106 ], [ -122.22979954099999, 49.199998611000119 ], [ -122.229795993000025, 49.199862608000046 ], [ -122.23019710599999, 49.199859508000046 ], [ -122.230866090999911, 49.19966660700009 ], [ -122.232055704999951, 49.198623909000091 ], [ -122.232307507, 49.198520081000055 ], [ -122.232402315999977, 49.198480992000015 ], [ -122.234144143, 49.1984958460001 ], [ -122.234062576999989, 49.199501727000062 ], [ -122.233995216999958, 49.199499372000055 ], [ -122.233957998999969, 49.199958329000111 ], [ -122.233181625999961, 49.199931180000107 ], [ -122.233081128999942, 49.201170146000081 ], [ -122.232906377999967, 49.201164035000062 ], [ -122.232804487999914, 49.202420049000075 ], [ -122.232746171999963, 49.202418010000017 ], [ -122.232681228000018, 49.203218550000017 ], [ -122.232495544999892, 49.203212055000122 ], [ -122.23244515199994, 49.203833154000051 ], [ -122.23127699299999, 49.203792290000052 ], [ -122.231161007999944, 49.205221330000057 ], [ -122.231123203999957, 49.205687086000133 ], [ -122.231297916999935, 49.205693198000048 ], [ -122.231237094999969, 49.206442555000187 ], [ -122.231772545999931, 49.206461287000117 ], [ -122.231523402999983, 49.209531075000051 ], [ -122.231200191999932, 49.209081197000096 ], [ -122.230977977999899, 49.208847147000014 ], [ -122.230905503999949, 49.208770798000067 ], [ -122.230201358999949, 49.208269026000082 ], [ -122.229895813999946, 49.208051293000096 ], [ -122.229623314999969, 49.207771385000015 ], [ -122.229478501999978, 49.207525609000072 ], [ -122.229379189999946, 49.207057991000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.940226521432829", "sL_AssetLoss": "3690.6", "sL_BldgLoss": "3470", "sL_StrLoss": "2680", "sL_NStrLoss": "790", "sL_ContLoss": "220.6", "geom_point": "0101000020E61000009F0436E7E0A05EC0ED3A657FEAB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.512468008999974, 49.426035213000041 ], [ -122.514686483999981, 49.426106639000103 ], [ -122.514522998999922, 49.426276308000055 ], [ -122.514492515999976, 49.426420191000076 ], [ -122.515967113000016, 49.427892808000131 ], [ -122.515992085999954, 49.42827020600005 ], [ -122.51630051699999, 49.429036492000122 ], [ -122.516144211999986, 49.42957620100006 ], [ -122.516139195999983, 49.430088986000079 ], [ -122.515943375999939, 49.430393693000035 ], [ -122.515540701999925, 49.430715611000053 ], [ -122.515180306999952, 49.430857993000053 ], [ -122.514243016999927, 49.430880799000043 ], [ -122.51395991, 49.431473299000039 ], [ -122.512509392999903, 49.43170971300006 ], [ -122.511983585999971, 49.431914791000068 ], [ -122.511938960999927, 49.432012041000071 ], [ -122.511453581999916, 49.431996407000042 ], [ -122.511725005999921, 49.428401702000059 ], [ -122.51227250599996, 49.428419336000047 ], [ -122.512427590999948, 49.426364813000085 ], [ -122.512443091999941, 49.426365313000076 ], [ -122.512468008999974, 49.426035213000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.902784810126582", "sL_AssetLoss": "1975", "sL_BldgLoss": "1783", "sL_StrLoss": "1230", "sL_NStrLoss": "553", "sL_ContLoss": "192", "geom_point": "0101000020E610000038DCA22700A55EC009C70B6D29AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.576469331999945, 49.352377360000048 ], [ -122.579229185999978, 49.352237312000064 ], [ -122.57978335899999, 49.35225782 ], [ -122.579765911999957, 49.352394197000052 ], [ -122.579670402999923, 49.353141804000082 ], [ -122.579587458, 49.353411721000057 ], [ -122.576400283999945, 49.353310836000034 ], [ -122.576469331999945, 49.352377360000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "0.913824722773877", "sL_AssetLoss": "10523.9", "sL_BldgLoss": "9617", "sL_StrLoss": "7320", "sL_NStrLoss": "2297", "sL_ContLoss": "906.9", "geom_point": "0101000020E6100000BDE82B48B3955EC0471DC29DB0A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33602115299999, 49.288582693000173 ], [ -122.3360651939999, 49.288025597000093 ], [ -122.335914785999947, 49.28802049100004 ], [ -122.336147312999941, 49.285078993000099 ], [ -122.336284796999919, 49.285067405000113 ], [ -122.336588487999947, 49.284906492000133 ], [ -122.33694748299996, 49.284845199000117 ], [ -122.337334587999976, 49.284668606000011 ], [ -122.337471310999959, 49.284468651000061 ], [ -122.341684670999882, 49.284611552000037 ], [ -122.341664830999946, 49.28486292500002 ], [ -122.34217566800001, 49.284880240000092 ], [ -122.341891944999958, 49.288475278000057 ], [ -122.34153147799999, 49.288463061000073 ], [ -122.34150734499994, 49.288768787000024 ], [ -122.33602115299999, 49.288582693000173 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.51714862138534", "sL_AssetLoss": "14870", "sL_BldgLoss": "7690", "sL_StrLoss": "2020", "sL_NStrLoss": "5670", "sL_ContLoss": "7180", "geom_point": "0101000020E6100000C308C834A6975EC071C5498ADD9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.36868768699999, 49.249520345000079 ], [ -122.368691126999963, 49.249250506000067 ], [ -122.368278932999928, 49.249248252000037 ], [ -122.368289261999948, 49.248438732000089 ], [ -122.370148077999914, 49.248448881000073 ], [ -122.370762385999953, 49.248452228000097 ], [ -122.370752095999975, 49.249261750000059 ], [ -122.370339903999962, 49.249259503000111 ], [ -122.370336471999963, 49.249529344000031 ], [ -122.36951328899994, 49.24952485500004 ], [ -122.36868768699999, 49.249520345000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.952945626284207", "sL_AssetLoss": "9782.3", "sL_BldgLoss": "9322", "sL_StrLoss": "7913", "sL_NStrLoss": "1409", "sL_ContLoss": "460.3", "geom_point": "0101000020E610000053BA2EDB52955EC0DC99CFDA69A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330691322999911, 49.31805497400012 ], [ -122.330696143999916, 49.317994137000021 ], [ -122.330123275999966, 49.317974674 ], [ -122.329736192999917, 49.317710992000038 ], [ -122.329766702999976, 49.317325973000045 ], [ -122.32972483399999, 49.317324551000112 ], [ -122.329773005, 49.316716664000076 ], [ -122.329997991999932, 49.313877199000061 ], [ -122.330009678999886, 49.313729699000071 ], [ -122.330077809999977, 49.313732015000035 ], [ -122.330499597999946, 49.313746347000084 ], [ -122.330541784999951, 49.313213811000075 ], [ -122.336030868999956, 49.31340017600008 ], [ -122.336027157999965, 49.313447081000085 ], [ -122.336483556999966, 49.313462564000069 ], [ -122.336458264999962, 49.313782349000078 ], [ -122.33662077299999, 49.313787861000023 ], [ -122.33661188399999, 49.313900250000124 ], [ -122.3363364399999, 49.317382730000091 ], [ -122.336249133999971, 49.31737976800013 ], [ -122.336180981999988, 49.318241331000046 ], [ -122.330691322999911, 49.31805497400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.873870446114335", "sL_AssetLoss": "10513", "sL_BldgLoss": "9187", "sL_StrLoss": "6020", "sL_NStrLoss": "3167", "sL_ContLoss": "1326", "geom_point": "0101000020E6100000288CB9AD65975EC0F885FCD8499F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.364232783999924, 49.242645419000098 ], [ -122.367625016999952, 49.242759751000023 ], [ -122.367343520999938, 49.246355085000047 ], [ -122.364873856999921, 49.246271859000046 ], [ -122.363611013999957, 49.245272096000143 ], [ -122.363192083999976, 49.244631300000101 ], [ -122.363113793999943, 49.244414815000034 ], [ -122.363187095999976, 49.244047290000047 ], [ -122.364162610999969, 49.242936397000015 ], [ -122.364232783999924, 49.242645419000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102318417", "BldgCostT": "69386667", "sL_LossRatio": "0.809852792787695", "sL_AssetLoss": "530205", "sL_BldgLoss": "429388", "sL_StrLoss": "254020", "sL_NStrLoss": "175368", "sL_ContLoss": "100817", "geom_point": "0101000020E6100000F59A37B1B4985EC0A0BD7EB18C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.37568292399996, 49.243294868000049 ], [ -122.375695580999903, 49.243132852000066 ], [ -122.37409457899993, 49.243079026000011 ], [ -122.374375531999974, 49.239483656000097 ], [ -122.375950268999972, 49.239536600000115 ], [ -122.376082655999966, 49.237841493000083 ], [ -122.376613732999957, 49.237859343000096 ], [ -122.376634605999982, 49.237592027000083 ], [ -122.375359767999981, 49.237549174000058 ], [ -122.37564059099999, 49.23395377 ], [ -122.376636207999951, 49.233987240000019 ], [ -122.376649315999913, 49.233819365000087 ], [ -122.373641843999948, 49.233718238000023 ], [ -122.373730403999971, 49.232584884000055 ], [ -122.373688422000015, 49.232583472000094 ], [ -122.373643138999981, 49.233162972000031 ], [ -122.373080975999954, 49.233144059000125 ], [ -122.373020755999946, 49.233914584000054 ], [ -122.372577865999986, 49.233899682000107 ], [ -122.372492293999969, 49.23499439400009 ], [ -122.372389998999935, 49.234990952000068 ], [ -122.372361208999948, 49.235359250000066 ], [ -122.372823168999957, 49.235374793000076 ], [ -122.372542119999963, 49.238970182000095 ], [ -122.367061686999961, 49.238785650000096 ], [ -122.367295426999959, 49.235800018000184 ], [ -122.366833464999957, 49.235784450000082 ], [ -122.366946474999949, 49.234340984000013 ], [ -122.366630946999962, 49.234330349000068 ], [ -122.36678133, 49.232409550000071 ], [ -122.366704368999962, 49.232406957000087 ], [ -122.366862126999962, 49.230391821000055 ], [ -122.36661699199999, 49.23038355900006 ], [ -122.36667513899999, 49.229640812000106 ], [ -122.366593536999957, 49.229638061000074 ], [ -122.366642217999981, 49.229016237000081 ], [ -122.366533174999972, 49.229012561000054 ], [ -122.366565514999976, 49.22859944900005 ], [ -122.365461663999966, 49.228562233000062 ], [ -122.365466832999957, 49.228496228000076 ], [ -122.364462695999947, 49.228462364000052 ], [ -122.364461603999985, 49.228476306000047 ], [ -122.36394436199997, 49.228458859000114 ], [ -122.363931290000025, 49.228625718000032 ], [ -122.363544325999953, 49.228612664000053 ], [ -122.363527585, 49.228826327 ], [ -122.362754318999961, 49.22880023700003 ], [ -122.362735963999967, 49.229034445000075 ], [ -122.361675147999961, 49.228998644000114 ], [ -122.361601369999917, 49.229939771000012 ], [ -122.360366633, 49.229898086000063 ], [ -122.360227709999961, 49.231669499000056 ], [ -122.35907062599999, 49.231630423000084 ], [ -122.35857979799998, 49.231613844000073 ], [ -122.358339818999951, 49.231111196000036 ], [ -122.358081009999964, 49.230957406000108 ], [ -122.35793241099999, 49.230731005000081 ], [ -122.357626093999968, 49.229991799000089 ], [ -122.357063183999912, 49.229899195000101 ], [ -122.356750090999967, 49.229771101000033 ], [ -122.356629487999939, 49.229500511 ], [ -122.356366301, 49.229607288000082 ], [ -122.35634502799995, 49.229397652000017 ], [ -122.35658820899999, 49.229326517000104 ], [ -122.35731983, 49.229314305000074 ], [ -122.357647086999989, 49.229099209000019 ], [ -122.357799917999927, 49.228972703000068 ], [ -122.357953494999947, 49.228769146000054 ], [ -122.358777825999965, 49.227676495000068 ], [ -122.359385812999989, 49.22724458800004 ], [ -122.359962119999963, 49.226915151000064 ], [ -122.360057214, 49.226860807000058 ], [ -122.360590801999962, 49.226658901000107 ], [ -122.365154990999926, 49.22512465900008 ], [ -122.36775141, 49.224251736000035 ], [ -122.368991494999975, 49.223834804000028 ], [ -122.370029569999986, 49.223484457000069 ], [ -122.373611491999952, 49.222275454000069 ], [ -122.375134644999918, 49.221761269000076 ], [ -122.375587735999972, 49.221608314000072 ], [ -122.375975473999958, 49.221477421000031 ], [ -122.378241573999929, 49.220712366000079 ], [ -122.380030710999932, 49.220108299000074 ], [ -122.380087901999929, 49.227209989000052 ], [ -122.38008792199993, 49.227663564000053 ], [ -122.380087954999951, 49.232049004000039 ], [ -122.3800879879999, 49.232561772000039 ], [ -122.3800879879999, 49.234428774000037 ], [ -122.384272596999921, 49.234424511000114 ], [ -122.385605207999959, 49.234423133000149 ], [ -122.386250892999939, 49.23442244900005 ], [ -122.386759996999928, 49.234421898000079 ], [ -122.391060197999977, 49.234463202000043 ], [ -122.393249555999958, 49.233545147000036 ], [ -122.394787315999935, 49.233164018000082 ], [ -122.394757420999923, 49.23172741100008 ], [ -122.394693962999895, 49.228708039000047 ], [ -122.391158201999971, 49.228698804000032 ], [ -122.391135405999947, 49.227172244000037 ], [ -122.393251344999925, 49.227636926000066 ], [ -122.396609646999977, 49.227445053000068 ], [ -122.402163289, 49.227138100000069 ], [ -122.402162029999928, 49.22567706500012 ], [ -122.402159692999973, 49.223021196000047 ], [ -122.402137764999964, 49.221581728000054 ], [ -122.402136972999983, 49.221527731 ], [ -122.402128796999975, 49.22099160900008 ], [ -122.40214699199997, 49.219942285000123 ], [ -122.403418996999932, 49.21993610100008 ], [ -122.403735382999983, 49.219910599000045 ], [ -122.403748420999975, 49.219906906000062 ], [ -122.40376848899993, 49.21990124900006 ], [ -122.404100414, 49.219807394000092 ], [ -122.405577501999929, 49.219138409000067 ], [ -122.406122404999977, 49.21896458600007 ], [ -122.406596910999937, 49.218865100000059 ], [ -122.40684808099995, 49.218857715000055 ], [ -122.40748870099999, 49.218838910000045 ], [ -122.408433991999942, 49.219079495000052 ], [ -122.408707647999947, 49.219192403000051 ], [ -122.408542595999975, 49.221325864000086 ], [ -122.40736246699997, 49.221286530000043 ], [ -122.407351547999937, 49.222199488000079 ], [ -122.407142360999941, 49.222198414000069 ], [ -122.407133280999957, 49.222315727000115 ], [ -122.40723269599998, 49.222319041000056 ], [ -122.406954387999974, 49.225914590000066 ], [ -122.406895130999956, 49.225912614 ], [ -122.406874528999978, 49.226178746000038 ], [ -122.411826976999919, 49.226343729000128 ], [ -122.411686806, 49.228156877000082 ], [ -122.412018781999961, 49.228167929000094 ], [ -122.411977667999963, 49.228699769000094 ], [ -122.413042450999939, 49.228705185000109 ], [ -122.413032861999952, 49.229514715000128 ], [ -122.41191510699997, 49.229509031000184 ], [ -122.411829, 49.230622809000103 ], [ -122.412301224999979, 49.230638527000082 ], [ -122.412141642999927, 49.232702821000039 ], [ -122.412658540999928, 49.232720023000105 ], [ -122.412657173999946, 49.232737715000049 ], [ -122.413197921999966, 49.23275570800012 ], [ -122.412920014999941, 49.236351216000081 ], [ -122.407439731999972, 49.236168733000071 ], [ -122.407441101999964, 49.236151042000095 ], [ -122.40690031599992, 49.236133019000121 ], [ -122.407034305999943, 49.234402453000051 ], [ -122.404476038999945, 49.234317159000057 ], [ -122.404477979999953, 49.234292103000051 ], [ -122.402862682999981, 49.234238217000097 ], [ -122.40286887299996, 49.234158362000109 ], [ -122.398834093999966, 49.234023656000083 ], [ -122.398685313999962, 49.235940860000042 ], [ -122.39700662199999, 49.235884770000105 ], [ -122.396996649999934, 49.236013201000048 ], [ -122.391516468999924, 49.235829910000078 ], [ -122.391540948999989, 49.235515091000053 ], [ -122.391162911999942, 49.235502437000029 ], [ -122.39114179699996, 49.23577394200003 ], [ -122.387974430999947, 49.235667868000093 ], [ -122.387867934999989, 49.237036018000104 ], [ -122.382387670999961, 49.23685226300011 ], [ -122.382493990999961, 49.235488424000074 ], [ -122.382241849999957, 49.235479963000103 ], [ -122.382277599999924, 49.235021402000065 ], [ -122.382275887999967, 49.235021393000061 ], [ -122.382189799999978, 49.236125643 ], [ -122.382243469999935, 49.23612744400004 ], [ -122.382092697999923, 49.238061296000069 ], [ -122.382427884, 49.238072544000048 ], [ -122.382147561999929, 49.241667942000063 ], [ -122.382147106999923, 49.241667927 ], [ -122.382095696999968, 49.242327241000083 ], [ -122.381560574000034, 49.242309284000051 ], [ -122.381528094999922, 49.242725754000062 ], [ -122.38122346699997, 49.242715530000048 ], [ -122.38116392299996, 49.243478961000037 ], [ -122.37568292399996, 49.243294868000049 ] ], [ [ -122.376551132999978, 49.22730896300002 ], [ -122.376588015, 49.226836533000075 ], [ -122.376543375999972, 49.226835033000057 ], [ -122.376578807999948, 49.226381175000029 ], [ -122.376541904999925, 49.226379934000086 ], [ -122.376582039, 49.225865833000093 ], [ -122.376543436999953, 49.225864536000074 ], [ -122.376657101999967, 49.224408460000106 ], [ -122.376221339999987, 49.22439380900002 ], [ -122.37613641199998, 49.225481633000058 ], [ -122.374251966000017, 49.225418256000104 ], [ -122.374234841999964, 49.225637478000124 ], [ -122.372584185999969, 49.225581938000126 ], [ -122.372565384999945, 49.225822518000022 ], [ -122.37230037799992, 49.225813598000045 ], [ -122.37226827899994, 49.226224300000041 ], [ -122.37235391899999, 49.226227183000049 ], [ -122.372350105999928, 49.226275979000036 ], [ -122.376384082999962, 49.226411675000058 ], [ -122.376314650000012, 49.227301013000044 ], [ -122.376551132999978, 49.22730896300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.813616471769854", "sL_AssetLoss": "13939", "sL_BldgLoss": "11341", "sL_StrLoss": "6360", "sL_NStrLoss": "4981", "sL_ContLoss": "2598", "geom_point": "0101000020E610000049ADC5E1EB985EC04732D4F6E99E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.38679466, 49.243453946000074 ], [ -122.387042573999977, 49.240270264000095 ], [ -122.392523260999923, 49.24045378100007 ], [ -122.392381386999944, 49.242278517000045 ], [ -122.392281299999951, 49.2421887140001 ], [ -122.391911910999966, 49.242051986000021 ], [ -122.390646094999937, 49.242332610000091 ], [ -122.389899492999945, 49.242643090000065 ], [ -122.38896599, 49.242620309000095 ], [ -122.388262390999927, 49.242734188000036 ], [ -122.387902302, 49.243047509000057 ], [ -122.38739221, 49.243170002000113 ], [ -122.386866696999959, 49.243400711000056 ], [ -122.38679466, 49.243453946000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "0.946227783822996", "sL_AssetLoss": "11028", "sL_BldgLoss": "10435", "sL_StrLoss": "8354", "sL_NStrLoss": "2081", "sL_ContLoss": "593", "geom_point": "0101000020E6100000E71447925E975EC0887DC87C3CAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.363154085999938, 49.355482546000097 ], [ -122.363165856999942, 49.355332764000075 ], [ -122.362564474999942, 49.355312531000024 ], [ -122.362580860999969, 49.355104070000031 ], [ -122.362181174999961, 49.355090621000059 ], [ -122.362229634, 49.35447414900009 ], [ -122.361985007, 49.354465917000027 ], [ -122.362008553999956, 49.354166380000045 ], [ -122.361489306999886, 49.354148904000077 ], [ -122.361548080999938, 49.353401363000039 ], [ -122.361771913999945, 49.350554168000016 ], [ -122.36373122399999, 49.350620099000047 ], [ -122.363986024999932, 49.350707804000102 ], [ -122.364239887999972, 49.351401395000082 ], [ -122.36456521799991, 49.351736094000096 ], [ -122.36527379099999, 49.352234501000055 ], [ -122.365350607999957, 49.352703111000061 ], [ -122.365527904999936, 49.352875393 ], [ -122.366463974999988, 49.353308695000059 ], [ -122.366567894999974, 49.353356796000085 ], [ -122.366628044999985, 49.353307056000091 ], [ -122.366707320999978, 49.353241500000067 ], [ -122.366639222999979, 49.353133199000048 ], [ -122.366311605999954, 49.353004990000116 ], [ -122.366191288999985, 49.352780008000046 ], [ -122.36645669899994, 49.352429712000053 ], [ -122.367515920999949, 49.351501104000079 ], [ -122.367752965999941, 49.351055647000067 ], [ -122.367761248999969, 49.351055925 ], [ -122.367725461999953, 49.351511907 ], [ -122.368618246999972, 49.351541904000086 ], [ -122.368609210999949, 49.351657074000094 ], [ -122.369074137999917, 49.351672693000076 ], [ -122.368947718999962, 49.353284020000046 ], [ -122.368792092000021, 49.355267442000084 ], [ -122.368679977999975, 49.355263676000114 ], [ -122.368661143999958, 49.355503694000099 ], [ -122.368605516999978, 49.355518795000101 ], [ -122.368466912999935, 49.35564410800005 ], [ -122.368460079999977, 49.355660920000091 ], [ -122.363154085999938, 49.355482546000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.818436992170188", "sL_AssetLoss": "6769", "sL_BldgLoss": "5540", "sL_StrLoss": "3460", "sL_NStrLoss": "2080", "sL_ContLoss": "1229", "geom_point": "0101000020E610000083DB5EFB179B5EC0989007096E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.422027559999947, 49.223405456000137 ], [ -122.422185820999914, 49.221352140000128 ], [ -122.42142996699999, 49.221327045000095 ], [ -122.4214364799999, 49.221242552000113 ], [ -122.421729601999985, 49.22125299900005 ], [ -122.422149782999909, 49.221198504000093 ], [ -122.423121489999943, 49.220884713 ], [ -122.424101102999927, 49.220502593000035 ], [ -122.424498807999939, 49.220377009000082 ], [ -122.424435524999936, 49.223485368000084 ], [ -122.422027559999947, 49.223405456000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164523833", "BldgCostT": "105833333", "sL_LossRatio": "0.765379104193508", "sL_AssetLoss": "1134754", "sL_BldgLoss": "868517", "sL_StrLoss": "467527", "sL_NStrLoss": "400990", "sL_ContLoss": "266237", "geom_point": "0101000020E6100000F4867790C9985EC094975F7A399C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.380087954999951, 49.232049004000039 ], [ -122.38008792199993, 49.227663564000053 ], [ -122.380087901999929, 49.227209989000052 ], [ -122.380030710999932, 49.220108299000074 ], [ -122.378241573999929, 49.220712366000079 ], [ -122.375975473999958, 49.221477421000031 ], [ -122.375587735999972, 49.221608314000072 ], [ -122.375134644999918, 49.221761269000076 ], [ -122.373611491999952, 49.222275454000069 ], [ -122.370029569999986, 49.223484457000069 ], [ -122.368991494999975, 49.223834804000028 ], [ -122.36775141, 49.224251736000035 ], [ -122.365154990999926, 49.22512465900008 ], [ -122.360590801999962, 49.226658901000107 ], [ -122.360057214, 49.226860807000058 ], [ -122.359962119999963, 49.226915151000064 ], [ -122.359385812999989, 49.22724458800004 ], [ -122.358777825999965, 49.227676495000068 ], [ -122.357953494999947, 49.228769146000054 ], [ -122.357799917999927, 49.228972703000068 ], [ -122.357647086999989, 49.229099209000019 ], [ -122.357635006999956, 49.228938313000086 ], [ -122.357706853999957, 49.228676047000086 ], [ -122.357792795999956, 49.228362413000056 ], [ -122.357819998999986, 49.227928891000033 ], [ -122.358240786999943, 49.227081493000121 ], [ -122.358279521999947, 49.226992321000083 ], [ -122.358534113999966, 49.226406007000058 ], [ -122.358618007999965, 49.226212899000146 ], [ -122.358918783999982, 49.225826496000131 ], [ -122.359018911999911, 49.225600996000018 ], [ -122.359088915999934, 49.225286090000068 ], [ -122.359075805999964, 49.225016205000081 ], [ -122.359019594999907, 49.224769111000093 ], [ -122.3588638, 49.22439169600009 ], [ -122.358802788999967, 49.224031796000148 ], [ -122.35875891399999, 49.223252530000124 ], [ -122.358748322999972, 49.223063801000052 ], [ -122.35891944799998, 49.22297704900005 ], [ -122.358930304999916, 49.222971554000054 ], [ -122.359181588999945, 49.222844205000051 ], [ -122.359280115999965, 49.222285236000033 ], [ -122.359473415999943, 49.221986945000083 ], [ -122.359652238999956, 49.221837263000054 ], [ -122.35959968499999, 49.220375858000104 ], [ -122.360116031999965, 49.219942405000076 ], [ -122.360203092999939, 49.219912758000106 ], [ -122.36327026799998, 49.220016308000027 ], [ -122.362997453999967, 49.22349839000006 ], [ -122.363649443, 49.223520390000047 ], [ -122.363659268999953, 49.223394952000042 ], [ -122.364100777999965, 49.223409847000056 ], [ -122.364119762999934, 49.223167462000035 ], [ -122.36449868599999, 49.223180244000091 ], [ -122.364520762999987, 49.222898371000099 ], [ -122.365119126999915, 49.222918554000074 ], [ -122.365198689999929, 49.221902484000047 ], [ -122.365377474999931, 49.22190851400007 ], [ -122.36542831699991, 49.221259188 ], [ -122.369165190999965, 49.221385151000064 ], [ -122.369237507999983, 49.220460578000093 ], [ -122.371236591999946, 49.220527909000047 ], [ -122.371294060999929, 49.219792725000097 ], [ -122.371943883999947, 49.219814604000106 ], [ -122.371963646999959, 49.219561740000117 ], [ -122.37333640699994, 49.21960794700005 ], [ -122.373535522999958, 49.217059071000037 ], [ -122.37480221, 49.217101692000043 ], [ -122.374970681999926, 49.214944100000011 ], [ -122.375489430999934, 49.214961550000048 ], [ -122.375493700999982, 49.214906849000052 ], [ -122.37464844699997, 49.214878413000065 ], [ -122.374929188999928, 49.211282888000035 ], [ -122.377752237999928, 49.211377832000068 ], [ -122.377856139999949, 49.210045956000073 ], [ -122.37891619799997, 49.210081588000079 ], [ -122.378919995999979, 49.210032881000089 ], [ -122.384397084999989, 49.210216819000046 ], [ -122.38411708299995, 49.213812375000067 ], [ -122.384060835999918, 49.21381048700006 ], [ -122.383818444999989, 49.216922573000033 ], [ -122.381907149999947, 49.216858417000026 ], [ -122.381869236999975, 49.217344910000072 ], [ -122.384421937999917, 49.217430587000131 ], [ -122.384438670999955, 49.217215734000057 ], [ -122.384917558999945, 49.21723180100004 ], [ -122.385021919999971, 49.21589154500009 ], [ -122.387110752999945, 49.215961599000082 ], [ -122.387121438999912, 49.21582429500009 ], [ -122.387815113999963, 49.215847551000131 ], [ -122.387954303999933, 49.214058510000022 ], [ -122.388108098999979, 49.214063666000044 ], [ -122.38815953299999, 49.21340251300014 ], [ -122.3936370549999, 49.213585980000047 ], [ -122.393557002999941, 49.214616560000074 ], [ -122.394456489, 49.21464666200005 ], [ -122.394445467999986, 49.214788575000114 ], [ -122.399094638999955, 49.214944039000066 ], [ -122.398961602999947, 49.21665922600004 ], [ -122.399075844999942, 49.216663043000054 ], [ -122.3990002, 49.2176382910001 ], [ -122.40003180099994, 49.217672759000067 ], [ -122.400042016999947, 49.21754101100008 ], [ -122.401804129999931, 49.217599863000068 ], [ -122.401955901999955, 49.215641573000042 ], [ -122.40071726099994, 49.215600207000143 ], [ -122.400781994999974, 49.214765194000023 ], [ -122.400348099999945, 49.214750700000117 ], [ -122.400431550999954, 49.213674332000082 ], [ -122.400346865999921, 49.213671503000079 ], [ -122.400457631, 49.212242802000056 ], [ -122.399921639999931, 49.212224895000077 ], [ -122.400064979999982, 49.21037614400008 ], [ -122.399689346999978, 49.210363594000057 ], [ -122.399768661999985, 49.209340654000123 ], [ -122.39958730799999, 49.20933459400009 ], [ -122.399866084999985, 49.205738973000038 ], [ -122.400293591999954, 49.205753258000115 ], [ -122.400438564999916, 49.203882981000056 ], [ -122.403031658999964, 49.203969594000029 ], [ -122.403124017999929, 49.202777143000034 ], [ -122.403736516, 49.202797593000064 ], [ -122.403826535999912, 49.201635080000081 ], [ -122.40310251399994, 49.201610908000077 ], [ -122.403305588999956, 49.198988737000079 ], [ -122.403751535999945, 49.198626078000096 ], [ -122.404679624999957, 49.198309364000131 ], [ -122.406935606, 49.198457524000062 ], [ -122.407244162999973, 49.198320010000039 ], [ -122.407297403999976, 49.198145936000039 ], [ -122.407795494999988, 49.198162547000059 ], [ -122.407838509999976, 49.198471193000124 ], [ -122.407805094999901, 49.198654788000027 ], [ -122.407685338999926, 49.198754797000042 ], [ -122.407627608999945, 49.19880299400004 ], [ -122.407358694999985, 49.198872394000013 ], [ -122.407042404999927, 49.198879898000072 ], [ -122.405843218, 49.19876960600007 ], [ -122.405422419999965, 49.198797000000106 ], [ -122.405121012999956, 49.198914905000095 ], [ -122.404433801999957, 49.199457993000109 ], [ -122.404286003, 49.199700906000011 ], [ -122.404290613999962, 49.199889403000078 ], [ -122.404362637999895, 49.200009763000011 ], [ -122.40441218699999, 49.200092600000055 ], [ -122.40495709899993, 49.200552409000068 ], [ -122.405418101999956, 49.201033810000133 ], [ -122.405769689999943, 49.20223780000002 ], [ -122.405785293999941, 49.202851197000093 ], [ -122.405632709999935, 49.203120996000067 ], [ -122.404962401999953, 49.204030514000067 ], [ -122.403752293999958, 49.206008916000066 ], [ -122.403463328999933, 49.206425508000066 ], [ -122.403164694999958, 49.207125709000103 ], [ -122.403168183999981, 49.208180294000023 ], [ -122.40416758399999, 49.214083302000034 ], [ -122.405262704999956, 49.214958006000067 ], [ -122.405515222999924, 49.215243096000087 ], [ -122.407300488999951, 49.218201789000013 ], [ -122.407485077, 49.218672090000048 ], [ -122.40748870099999, 49.218838910000045 ], [ -122.40684808099995, 49.218857715000055 ], [ -122.406596910999937, 49.218865100000059 ], [ -122.406122404999977, 49.21896458600007 ], [ -122.405577501999929, 49.219138409000067 ], [ -122.404100414, 49.219807394000092 ], [ -122.40376848899993, 49.21990124900006 ], [ -122.403748420999975, 49.219906906000062 ], [ -122.403735382999983, 49.219910599000045 ], [ -122.403418996999932, 49.21993610100008 ], [ -122.40214699199997, 49.219942285000123 ], [ -122.402128796999975, 49.22099160900008 ], [ -122.402136972999983, 49.221527731 ], [ -122.402137764999964, 49.221581728000054 ], [ -122.402159692999973, 49.223021196000047 ], [ -122.402162029999928, 49.22567706500012 ], [ -122.402163289, 49.227138100000069 ], [ -122.396609646999977, 49.227445053000068 ], [ -122.393251344999925, 49.227636926000066 ], [ -122.391135405999947, 49.227172244000037 ], [ -122.391158201999971, 49.228698804000032 ], [ -122.394693962999895, 49.228708039000047 ], [ -122.394757420999923, 49.23172741100008 ], [ -122.394787315999935, 49.233164018000082 ], [ -122.393249555999958, 49.233545147000036 ], [ -122.391060197999977, 49.234463202000043 ], [ -122.386759996999928, 49.234421898000079 ], [ -122.386250892999939, 49.23442244900005 ], [ -122.385605207999959, 49.234423133000149 ], [ -122.384272596999921, 49.234424511000114 ], [ -122.3800879879999, 49.234428774000037 ], [ -122.3800879879999, 49.232561772000039 ], [ -122.380087954999951, 49.232049004000039 ] ], [ [ -122.389916729999939, 49.230139288000068 ], [ -122.389962462999932, 49.229551339000082 ], [ -122.388488138999961, 49.229501952000113 ], [ -122.388470849999976, 49.229724124000057 ], [ -122.386612499, 49.229661845000123 ], [ -122.386607974999919, 49.229719969000072 ], [ -122.384745804999952, 49.2296575290001 ], [ -122.384566977999967, 49.231953133000076 ], [ -122.385941345999981, 49.231999219000066 ], [ -122.385941681999981, 49.231994913000044 ], [ -122.389485018999963, 49.232113650000045 ], [ -122.389639335999973, 49.230129997000112 ], [ -122.389916729999939, 49.230139288000068 ] ], [ [ -122.398760015, 49.224991372000027 ], [ -122.398835010999932, 49.22402471300007 ], [ -122.398763768, 49.224022333000022 ], [ -122.398804699999985, 49.223494733000116 ], [ -122.397532056999978, 49.223452203000129 ], [ -122.397619447999944, 49.222326133000124 ], [ -122.396949262999954, 49.222303729000039 ], [ -122.396946381999967, 49.222340840000086 ], [ -122.393298670999968, 49.222218830000017 ], [ -122.393273764999947, 49.222539376000093 ], [ -122.393480914999955, 49.222546308000091 ], [ -122.393435047999958, 49.22313663900006 ], [ -122.393487951999958, 49.223138410000075 ], [ -122.393448839999948, 49.223641804000074 ], [ -122.395414415999966, 49.223707560000037 ], [ -122.395331297999945, 49.224777892000063 ], [ -122.39626275399992, 49.224809040000096 ], [ -122.39615797299993, 49.226158591000107 ], [ -122.397949715999985, 49.226218485000111 ], [ -122.398009958, 49.225442186000066 ], [ -122.398715125999971, 49.225465750000076 ], [ -122.398751951999955, 49.22499110200004 ], [ -122.398760015, 49.224991372000027 ] ], [ [ -122.385843368999986, 49.224560984000121 ], [ -122.385862614999965, 49.224313790000075 ], [ -122.387638191999955, 49.22437331500003 ], [ -122.387668345999913, 49.223985845000065 ], [ -122.387553612999952, 49.223985237000072 ], [ -122.38755027799999, 49.224255080000077 ], [ -122.38631431599994, 49.224248520000089 ], [ -122.386324339999987, 49.223438992000062 ], [ -122.386736320999944, 49.223441180000044 ], [ -122.386738732999973, 49.223246236000072 ], [ -122.386241683999955, 49.223229571000104 ], [ -122.386240497999921, 49.22324479600011 ], [ -122.383659324999954, 49.223158217000034 ], [ -122.3836164, 49.223709189000061 ], [ -122.384009036999942, 49.223722364000032 ], [ -122.383934127999922, 49.224683930000062 ], [ -122.384307338999989, 49.224696451000085 ], [ -122.384321866, 49.224509953000158 ], [ -122.385843368999986, 49.224560984000121 ] ], [ [ -122.362790040999954, 49.223605056000039 ], [ -122.362785251999966, 49.223666182000116 ], [ -122.362884321999942, 49.223669526000087 ], [ -122.362889112999966, 49.223608399000113 ], [ -122.362790040999954, 49.223605056000039 ] ], [ [ -122.361398512999969, 49.223931174000036 ], [ -122.361387109999953, 49.224076643000068 ], [ -122.361542491999941, 49.224081889000047 ], [ -122.361552923999938, 49.223948802000102 ], [ -122.362378865, 49.223976682000085 ], [ -122.362379835999931, 49.223964300000048 ], [ -122.361398512999969, 49.223931174000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.939228671601091", "sL_AssetLoss": "10268", "sL_BldgLoss": "9644", "sL_StrLoss": "7540", "sL_NStrLoss": "2104", "sL_ContLoss": "624", "geom_point": "0101000020E61000000DD4731C49945EC017F33127019C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.315856655999966, 49.220494601000063 ], [ -122.315204013999931, 49.219379474000085 ], [ -122.315187255999973, 49.219350786000092 ], [ -122.314768161999922, 49.218649868000064 ], [ -122.313581080999981, 49.216664094000087 ], [ -122.313407308999928, 49.216258899000039 ], [ -122.313550498999945, 49.216011503000075 ], [ -122.314087538999956, 49.215342480000068 ], [ -122.315138308999934, 49.214033397000051 ], [ -122.315157383000013, 49.213792505000093 ], [ -122.314987789000014, 49.213312850000094 ], [ -122.316636865999982, 49.213369236000041 ], [ -122.316550227999969, 49.214461245000059 ], [ -122.317003220999979, 49.214476729000062 ], [ -122.316967718999976, 49.2149242610001 ], [ -122.31720074199994, 49.214932225000048 ], [ -122.317030361999926, 49.217079951000102 ], [ -122.317272572999983, 49.217088229000076 ], [ -122.317214450999984, 49.217820885000044 ], [ -122.318835963999959, 49.217876289000095 ], [ -122.318788507999969, 49.218474752000056 ], [ -122.319172888999901, 49.218487882000019 ], [ -122.319137168999987, 49.218938387000044 ], [ -122.319450109999948, 49.218949076000087 ], [ -122.319350839999942, 49.22020109000006 ], [ -122.320225459999961, 49.220230959000041 ], [ -122.319940430999935, 49.223826291000094 ], [ -122.319044795999943, 49.223795705000079 ], [ -122.319037417999979, 49.223888746000107 ], [ -122.318834055999943, 49.22375374100011 ], [ -122.31848205499999, 49.223551553000028 ], [ -122.317559236999969, 49.223118057000065 ], [ -122.31716803799999, 49.222735158000049 ], [ -122.316746670000015, 49.222015321000057 ], [ -122.31630485899997, 49.221260404000127 ], [ -122.315856655999966, 49.220494601000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66900667", "BldgCostT": "45666667", "sL_LossRatio": "0.799913827456676", "sL_AssetLoss": "494357", "sL_BldgLoss": "395443", "sL_StrLoss": "213554", "sL_NStrLoss": "181889", "sL_ContLoss": "98914", "geom_point": "0101000020E6100000B1662AE5B1975EC0266A3734C4984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.355260269999945, 49.206271518000037 ], [ -122.35539795699999, 49.204517226000085 ], [ -122.354865564999912, 49.204499212000037 ], [ -122.355147772999914, 49.200903682000089 ], [ -122.355693816, 49.200922157000086 ], [ -122.355746685999947, 49.200248394000063 ], [ -122.356294842999958, 49.20026693800002 ], [ -122.35634139299998, 49.19967360600004 ], [ -122.35757716399992, 49.199715402000059 ], [ -122.357639783999915, 49.198916937000043 ], [ -122.358371113999979, 49.198941664000088 ], [ -122.358402673999976, 49.198539153000098 ], [ -122.359354968999938, 49.198571345000076 ], [ -122.359421076999951, 49.197727976000117 ], [ -122.360313933999976, 49.197758150000034 ], [ -122.36035696799992, 49.197208997000054 ], [ -122.36051765699996, 49.197214426000095 ], [ -122.360552738999914, 49.19676672300011 ], [ -122.357632451999919, 49.196668007000021 ], [ -122.35770781899997, 49.195706920000106 ], [ -122.357405703999945, 49.195696703000088 ], [ -122.35742608699999, 49.195436785000091 ], [ -122.356290480999945, 49.195398373000067 ], [ -122.356314098999988, 49.195097304000051 ], [ -122.355594474999918, 49.195072956000104 ], [ -122.35562378399996, 49.194699424000049 ], [ -122.355263987999948, 49.194687248000022 ], [ -122.355404816999965, 49.192892454000109 ], [ -122.354902185999919, 49.192875444000045 ], [ -122.355153418999976, 49.189673706000107 ], [ -122.354318263999957, 49.189645437000138 ], [ -122.354370390999989, 49.188981234000082 ], [ -122.354119298999947, 49.188972733000071 ], [ -122.354122934999936, 49.188926400000135 ], [ -122.353281572999919, 49.188897911000041 ], [ -122.353563808999951, 49.185302299000071 ], [ -122.357975799999934, 49.185451615000026 ], [ -122.357982101999966, 49.184964631000121 ], [ -122.358393759999984, 49.184966919000018 ], [ -122.358400737999929, 49.184427233000122 ], [ -122.360047356999942, 49.184436369000153 ], [ -122.360050835999957, 49.184166526000119 ], [ -122.361285793999969, 49.184173363000049 ], [ -122.361285339999981, 49.18420854400005 ], [ -122.361628303999964, 49.184220133000089 ], [ -122.361736013999931, 49.182844688000145 ], [ -122.364553276999956, 49.182939845000114 ], [ -122.364563506999957, 49.182809109000061 ], [ -122.364776203999966, 49.182863715000096 ], [ -122.366648911999931, 49.183409085000108 ], [ -122.366938599999969, 49.183511700000089 ], [ -122.366944126999954, 49.183515323000073 ], [ -122.367236194999975, 49.183707418000097 ], [ -122.36850387699999, 49.184813695000116 ], [ -122.368695601999946, 49.184942693000025 ], [ -122.370032805999955, 49.18561689800007 ], [ -122.370671102999921, 49.186052988000057 ], [ -122.371043349999965, 49.186440248000103 ], [ -122.371607683999983, 49.187027294000039 ], [ -122.371788871999968, 49.187089554000046 ], [ -122.374864409999972, 49.1881464000001 ], [ -122.375193531999955, 49.188308362000079 ], [ -122.375307333999984, 49.188364353000075 ], [ -122.375456404999937, 49.188437705000041 ], [ -122.375728389999949, 49.188679310000055 ], [ -122.375945687999916, 49.188972394000103 ], [ -122.376540501999955, 49.189914408000057 ], [ -122.377213289999986, 49.190631013000079 ], [ -122.377549096999942, 49.190812609000069 ], [ -122.377951601999911, 49.190930716000018 ], [ -122.378370203999978, 49.190964593000118 ], [ -122.378746104999976, 49.190948402000103 ], [ -122.380060409999913, 49.190705981000058 ], [ -122.3864068889999, 49.189439125000085 ], [ -122.387045657, 49.189311585000048 ], [ -122.387113708999948, 49.189297996000064 ], [ -122.388921115999921, 49.188430399000026 ], [ -122.390102300999928, 49.188098610000097 ], [ -122.390362185999962, 49.188092786000055 ], [ -122.391373797999904, 49.188070111000116 ], [ -122.392355894, 49.188146183000065 ], [ -122.392753899999917, 49.188109982000093 ], [ -122.39318690099995, 49.187958599000119 ], [ -122.393400018999927, 49.187688190000081 ], [ -122.393487500999953, 49.187356796000081 ], [ -122.393505995999945, 49.186251487000064 ], [ -122.393582805000023, 49.185862899000085 ], [ -122.393633324999925, 49.185720739000047 ], [ -122.393607940999956, 49.186047731000045 ], [ -122.398037596999984, 49.18619599200008 ], [ -122.398014390999947, 49.1864952990001 ], [ -122.398169643999935, 49.186500492000079 ], [ -122.398209555999955, 49.185985676000101 ], [ -122.401289743999911, 49.186088658000067 ], [ -122.401486791, 49.186618603000063 ], [ -122.401537279999943, 49.186851893000039 ], [ -122.40151370199996, 49.187103389000093 ], [ -122.40125632199999, 49.188265609000055 ], [ -122.401351076999902, 49.188670691000091 ], [ -122.401543494999913, 49.189198099000052 ], [ -122.402110299999933, 49.190119105000086 ], [ -122.402392022999948, 49.190459082000075 ], [ -122.402528183, 49.190623399000074 ], [ -122.402779893999963, 49.190826162000093 ], [ -122.402591585999986, 49.193257788000061 ], [ -122.397468406999963, 49.193086544000018 ], [ -122.397440789999962, 49.19307350400009 ], [ -122.397348216999944, 49.192848397000027 ], [ -122.397144354, 49.192714656000049 ], [ -122.397267512999932, 49.191126727000075 ], [ -122.396526920999989, 49.191101949000014 ], [ -122.395875980999975, 49.190880200000031 ], [ -122.395807606999981, 49.190869714000044 ], [ -122.395896079999929, 49.189729393000043 ], [ -122.395428157999959, 49.189713732000044 ], [ -122.395376429999956, 49.190380371000082 ], [ -122.393134789999962, 49.190305318000121 ], [ -122.393129315999943, 49.190375823000117 ], [ -122.393054179000018, 49.190351795000019 ], [ -122.392793597999955, 49.19038739300008 ], [ -122.393024092999923, 49.19062239200008 ], [ -122.393107230999959, 49.190660262000051 ], [ -122.393021612, 49.191762923000098 ], [ -122.390795169999976, 49.191688333000094 ], [ -122.39072566599999, 49.192582876000131 ], [ -122.389583685, 49.192544600000112 ], [ -122.389569826999917, 49.192722904000085 ], [ -122.384094778999952, 49.192539224000072 ], [ -122.384100944999943, 49.192460018000098 ], [ -122.383930889999974, 49.192454308000087 ], [ -122.383897303999973, 49.192885740000087 ], [ -122.381994392999943, 49.192821832000106 ], [ -122.38196414399999, 49.193210186000059 ], [ -122.381047749999965, 49.193179397000094 ], [ -122.381037512999953, 49.193310808000071 ], [ -122.377635046999984, 49.193196424000057 ], [ -122.377472977999929, 49.195274588000082 ], [ -122.371997675999978, 49.195090294000039 ], [ -122.372181054999984, 49.192742438000046 ], [ -122.367462164999964, 49.192583380000087 ], [ -122.367491840999946, 49.192203902000088 ], [ -122.367098924999979, 49.192190648000093 ], [ -122.366965148999967, 49.193901091000086 ], [ -122.36750879499999, 49.193919427000012 ], [ -122.367463973000014, 49.194492564 ], [ -122.367951815999945, 49.194509017000073 ], [ -122.367915391999958, 49.194974829000095 ], [ -122.369307997999954, 49.195021782000055 ], [ -122.369063673999975, 49.19814726400007 ], [ -122.369559683, 49.198163984000118 ], [ -122.369520543999968, 49.198664689000026 ], [ -122.370012598999935, 49.19868127300002 ], [ -122.369967412999983, 49.199259395000077 ], [ -122.370026132999953, 49.199261374000066 ], [ -122.369991908999921, 49.199699261000042 ], [ -122.370016060999916, 49.199700075000031 ], [ -122.369973692999963, 49.200242146000136 ], [ -122.370019094999932, 49.200243676000078 ], [ -122.369978346999957, 49.200764998000054 ], [ -122.370084524999939, 49.200768576000101 ], [ -122.370042503999912, 49.201306202000126 ], [ -122.370130757, 49.20130917600008 ], [ -122.36984970499995, 49.204904744 ], [ -122.369759776999928, 49.204901713000055 ], [ -122.369718528999954, 49.205429346000152 ], [ -122.369523364999935, 49.205422769000094 ], [ -122.369484846999967, 49.205915450000091 ], [ -122.368408325999965, 49.205879166000038 ], [ -122.36836363099998, 49.20645067500012 ], [ -122.36742791099999, 49.206419129000047 ], [ -122.367419495999968, 49.206526698000083 ], [ -122.366303965999961, 49.20648907800004 ], [ -122.366301051999955, 49.206526324000066 ], [ -122.365301795999926, 49.206492616000084 ], [ -122.365299609999909, 49.206520549000075 ], [ -122.360743866999954, 49.206366750000051 ], [ -122.360736820999975, 49.206456659000025 ], [ -122.355260269999945, 49.206271518000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.819957695657584", "sL_AssetLoss": "8037", "sL_BldgLoss": "6590", "sL_StrLoss": "3800", "sL_NStrLoss": "2790", "sL_ContLoss": "1447", "geom_point": "0101000020E61000000EC4EC44CD965EC07B9C0E09049D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.35746505699997, 49.22619513800008 ], [ -122.357465782999896, 49.226185886000088 ], [ -122.35561955299994, 49.226123477000101 ], [ -122.355669654999986, 49.225485356000036 ], [ -122.355578590999983, 49.225482278000065 ], [ -122.355725604999989, 49.223609826000079 ], [ -122.356577988999945, 49.223995910000099 ], [ -122.356739498999971, 49.224166813000068 ], [ -122.356396918999948, 49.224238006000071 ], [ -122.356554904999953, 49.224742207000162 ], [ -122.356758782999975, 49.224814793000078 ], [ -122.35721310299999, 49.22472790000004 ], [ -122.35750171699999, 49.224756394000082 ], [ -122.357816298999964, 49.224893092000087 ], [ -122.358010790999941, 49.225703496000101 ], [ -122.357212795, 49.226931199000028 ], [ -122.356053084999985, 49.228355396000062 ], [ -122.355935899999935, 49.229001994000022 ], [ -122.356027089999941, 49.229539829000075 ], [ -122.35583158799993, 49.22965690300002 ], [ -122.355387834999959, 49.23013307300009 ], [ -122.355314046, 49.230212267000049 ], [ -122.354814601999976, 49.230748190000099 ], [ -122.354803845999967, 49.230775730000076 ], [ -122.355030568999894, 49.227888957000062 ], [ -122.356265246999953, 49.227930703000084 ], [ -122.356404310999935, 49.226159285000051 ], [ -122.35746505699997, 49.22619513800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.848939114391144", "sL_AssetLoss": "8672", "sL_BldgLoss": "7362", "sL_StrLoss": "4770", "sL_NStrLoss": "2592", "sL_ContLoss": "1310", "geom_point": "0101000020E6100000D192E8E1DB995EC0BF10CD97F2984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.402101015999975, 49.195913295000047 ], [ -122.401749607999989, 49.195326492000021 ], [ -122.401305538999964, 49.194958676000063 ], [ -122.401405495999967, 49.193668476000042 ], [ -122.40688074599997, 49.193851276000053 ], [ -122.406753465999913, 49.195496631000047 ], [ -122.406565499999942, 49.195487509000017 ], [ -122.406410082999955, 49.195909101000012 ], [ -122.406148614999921, 49.196042894000037 ], [ -122.405611105, 49.196156887000015 ], [ -122.405282094999933, 49.196145515000033 ], [ -122.405039916999911, 49.195766601000088 ], [ -122.404793507999941, 49.195729587000073 ], [ -122.402709811999955, 49.196574191000074 ], [ -122.402437106999955, 49.196481590000054 ], [ -122.40221779899997, 49.196346303000048 ], [ -122.402101015999975, 49.195913295000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.820947515095216", "sL_AssetLoss": "8612", "sL_BldgLoss": "7070", "sL_StrLoss": "3850", "sL_NStrLoss": "3220", "sL_ContLoss": "1542", "geom_point": "0101000020E6100000F84AE679EC965EC02943343EBC9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.359676550999936, 49.219894973000059 ], [ -122.360203092999939, 49.219912758000106 ], [ -122.360116031999965, 49.219942405000076 ], [ -122.35959968499999, 49.220375858000104 ], [ -122.359652238999956, 49.221837263000054 ], [ -122.359473415999943, 49.221986945000083 ], [ -122.359280115999965, 49.222285236000033 ], [ -122.359181588999945, 49.222844205000051 ], [ -122.358930304999916, 49.222971554000054 ], [ -122.35891944799998, 49.22297704900005 ], [ -122.358748322999972, 49.223063801000052 ], [ -122.35875891399999, 49.223252530000124 ], [ -122.358802788999967, 49.224031796000148 ], [ -122.3588638, 49.22439169600009 ], [ -122.359019594999907, 49.224769111000093 ], [ -122.359075805999964, 49.225016205000081 ], [ -122.359088915999934, 49.225286090000068 ], [ -122.359018911999911, 49.225600996000018 ], [ -122.358918783999982, 49.225826496000131 ], [ -122.358618007999965, 49.226212899000146 ], [ -122.358534113999966, 49.226406007000058 ], [ -122.358279521999947, 49.226992321000083 ], [ -122.358240786999943, 49.227081493000121 ], [ -122.357819998999986, 49.227928891000033 ], [ -122.357792795999956, 49.228362413000056 ], [ -122.357706853999957, 49.228676047000086 ], [ -122.357635006999956, 49.228938313000086 ], [ -122.357647086999989, 49.229099209000019 ], [ -122.35731983, 49.229314305000074 ], [ -122.35658820899999, 49.229326517000104 ], [ -122.35634502799995, 49.229397652000017 ], [ -122.356281313999929, 49.228769798000044 ], [ -122.35650871199999, 49.22821440400007 ], [ -122.358560000999887, 49.225823110000078 ], [ -122.358729188999945, 49.225393006000019 ], [ -122.358719314999973, 49.225149493000053 ], [ -122.358462897999971, 49.224734990000059 ], [ -122.357506108999985, 49.224324907000096 ], [ -122.357316989999958, 49.224152509000049 ], [ -122.357246207999978, 49.223198307000061 ], [ -122.357525995999964, 49.222795293000068 ], [ -122.358039116999933, 49.222537504000059 ], [ -122.358207194999963, 49.222295390000077 ], [ -122.358198494999954, 49.221863813000034 ], [ -122.358384810999908, 49.221315499000049 ], [ -122.358210314999965, 49.22086549400008 ], [ -122.358913487999956, 49.220707407000056 ], [ -122.359139379999931, 49.220240199000109 ], [ -122.359676550999936, 49.219894973000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.90300280838194", "sL_AssetLoss": "4629", "sL_BldgLoss": "4180", "sL_StrLoss": "3020", "sL_NStrLoss": "1160", "sL_ContLoss": "449", "geom_point": "0101000020E6100000EC82456E1B955EC0EA324635B6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.329373528999895, 49.199914326000091 ], [ -122.330608869999963, 49.199921493000019 ], [ -122.33059066099996, 49.201270696000044 ], [ -122.330178867999933, 49.201268308000088 ], [ -122.330171578999938, 49.201807989000095 ], [ -122.328936190999983, 49.201800818 ], [ -122.328950794999912, 49.200721456000053 ], [ -122.329362582999948, 49.200723847000106 ], [ -122.329373528999895, 49.199914326000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20836500", "BldgCostT": "14370000", "sL_LossRatio": "0.914817171301321", "sL_AssetLoss": "53438", "sL_BldgLoss": "48886", "sL_StrLoss": "36540", "sL_NStrLoss": "12346", "sL_ContLoss": "4552", "geom_point": "0101000020E6100000BA422F0EB4955EC086AF6D5957974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.329464204999965, 49.188490438000066 ], [ -122.329481883, 49.187693378000112 ], [ -122.329783675000016, 49.185836158000015 ], [ -122.33012415799999, 49.183906993000107 ], [ -122.33028537699991, 49.182993382000085 ], [ -122.330335696999938, 49.182321805000065 ], [ -122.330477719999976, 49.180784501000041 ], [ -122.330541436999951, 49.180353550000035 ], [ -122.331022494999942, 49.177099609000052 ], [ -122.331171789999942, 49.176634196000059 ], [ -122.331335190999951, 49.17638920300007 ], [ -122.332115304999945, 49.175421599000032 ], [ -122.335268696999918, 49.176837710000086 ], [ -122.336480394999953, 49.177339493000062 ], [ -122.337927694999948, 49.177688010000111 ], [ -122.338545203999914, 49.177772984000107 ], [ -122.339259679999884, 49.177689993000079 ], [ -122.33976800799995, 49.177577486000111 ], [ -122.342129804999956, 49.176643797000104 ], [ -122.342684696999953, 49.176566196000067 ], [ -122.343204471999954, 49.176585695000021 ], [ -122.343679781, 49.176682912000039 ], [ -122.345455694999913, 49.177180399000065 ], [ -122.345852992999966, 49.177327304000087 ], [ -122.346341402999954, 49.177570993000103 ], [ -122.347720494999948, 49.178648904000021 ], [ -122.348696186999959, 49.179467010000067 ], [ -122.349666411999976, 49.180169383000113 ], [ -122.349752899999913, 49.180231994000067 ], [ -122.350568421, 49.180591306000046 ], [ -122.351138194999976, 49.180726009000082 ], [ -122.351820998999983, 49.180854593000085 ], [ -122.3521979099999, 49.180806988 ], [ -122.352461220999928, 49.180739298000056 ], [ -122.352527512999956, 49.18070283400003 ], [ -122.352704279999926, 49.180605641000099 ], [ -122.352881286999917, 49.180508306000029 ], [ -122.353332214999966, 49.180164894000029 ], [ -122.35453549499999, 49.179045694000081 ], [ -122.355197986999926, 49.178855388000095 ], [ -122.355473541999956, 49.178832305000064 ], [ -122.355757322, 49.178808504000088 ], [ -122.356579695999955, 49.179132899000059 ], [ -122.358047699999972, 49.180188796000039 ], [ -122.358692790999939, 49.180652792000025 ], [ -122.359012653999969, 49.180861542000045 ], [ -122.358431104999966, 49.180841875000091 ], [ -122.358387925999949, 49.181392788000018 ], [ -122.358028465999922, 49.181380630000014 ], [ -122.358017010999973, 49.182266202000079 ], [ -122.357605373999888, 49.182263913000021 ], [ -122.357601881999955, 49.182533756000083 ], [ -122.358013520999947, 49.182536045000042 ], [ -122.357996065999984, 49.183885259000085 ], [ -122.355937816999955, 49.18387379900004 ], [ -122.355941319999928, 49.183603956000127 ], [ -122.35552967299995, 49.183601660000051 ], [ -122.355533177000027, 49.183331817000081 ], [ -122.355121530999938, 49.183329518000086 ], [ -122.355135557, 49.182250149000104 ], [ -122.354723919999941, 49.182247849000113 ], [ -122.35473664599999, 49.181269232000027 ], [ -122.354323295999947, 49.181255237000073 ], [ -122.354251400999942, 49.18217148500009 ], [ -122.348777735999988, 49.181986008000138 ], [ -122.348781043999963, 49.181943907000068 ], [ -122.345530326999963, 49.181833622000056 ], [ -122.345606201999956, 49.180868945000036 ], [ -122.344249540999968, 49.180822890000101 ], [ -122.344405169999945, 49.17884483600006 ], [ -122.342655515999979, 49.178785414000089 ], [ -122.34243109, 49.181636471000019 ], [ -122.336957534999982, 49.18145039400013 ], [ -122.336994540999953, 49.180981014000125 ], [ -122.334556317999926, 49.180898035000034 ], [ -122.33443740899996, 49.182405261000099 ], [ -122.33372716400001, 49.182381079000073 ], [ -122.333726930999958, 49.182398482000032 ], [ -122.333315294999963, 49.182396107000081 ], [ -122.333314549999955, 49.182451477000043 ], [ -122.334254606999963, 49.182483486000059 ], [ -122.333970895999954, 49.186079063000129 ], [ -122.333703274999934, 49.186069951000093 ], [ -122.333638548999971, 49.186890097000109 ], [ -122.334038187999951, 49.186903703000091 ], [ -122.333910425999974, 49.18852268200007 ], [ -122.333978790999979, 49.188525009000138 ], [ -122.333695020999954, 49.19212055100013 ], [ -122.333042445000018, 49.192098334000093 ], [ -122.333031998999928, 49.192230667000047 ], [ -122.329384583999939, 49.192106413000019 ], [ -122.329129613999939, 49.195332753000109 ], [ -122.326694831999959, 49.195249740000094 ], [ -122.327130472999926, 49.19463220700009 ], [ -122.327156189999954, 49.194595704000065 ], [ -122.327774663999946, 49.193718970000127 ], [ -122.327789923999944, 49.193702189000099 ], [ -122.328428550999945, 49.192999498000148 ], [ -122.328976113999957, 49.192322369000067 ], [ -122.329111383999987, 49.192052087000036 ], [ -122.32922033599999, 49.191576304000129 ], [ -122.329275467999949, 49.191116722000061 ], [ -122.329413334999956, 49.189967743000054 ], [ -122.329464204999965, 49.188490438000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13492250", "BldgCostT": "9305000", "sL_LossRatio": "0.777648336883032", "sL_AssetLoss": "139918", "sL_BldgLoss": "108807", "sL_StrLoss": "52777", "sL_NStrLoss": "56030", "sL_ContLoss": "31111", "geom_point": "0101000020E6100000DA42B1913B955EC00E15A1E0FB9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.324799663999968, 49.2289755380001 ], [ -122.32485009199992, 49.228549629000057 ], [ -122.324870282999925, 49.228378610000057 ], [ -122.324725549000021, 49.227951875000016 ], [ -122.324606462999952, 49.227811524000067 ], [ -122.324396404999931, 49.227563939000042 ], [ -122.32386549, 49.227192548000097 ], [ -122.320530132999963, 49.224879670000121 ], [ -122.320011165999958, 49.22453516700007 ], [ -122.321096594999929, 49.224572223000017 ], [ -122.321147969999956, 49.223924030000049 ], [ -122.326626466, 49.22411089800012 ], [ -122.326605090999934, 49.224380992000114 ], [ -122.327296250999908, 49.224404547000077 ], [ -122.327349126999948, 49.223736277000071 ], [ -122.330583617999977, 49.223846453000128 ], [ -122.330672749999948, 49.22271895500004 ], [ -122.336151140999931, 49.222905340000125 ], [ -122.336005770999975, 49.224746969000066 ], [ -122.338357279999968, 49.224826886000095 ], [ -122.338284725999983, 49.22574657800002 ], [ -122.338352737, 49.225748888000027 ], [ -122.338289200999967, 49.226554242000049 ], [ -122.338489743999929, 49.226561054000122 ], [ -122.338491716999982, 49.226413296000061 ], [ -122.33890371699998, 49.226415654000078 ], [ -122.338907316999936, 49.226145814000098 ], [ -122.33973131599997, 49.226150528000048 ], [ -122.339734912, 49.225880688000125 ], [ -122.341794897999932, 49.225892445000106 ], [ -122.341787728999989, 49.226432125000017 ], [ -122.342199732, 49.226434472000058 ], [ -122.342196378999944, 49.226686911000108 ], [ -122.343638705, 49.226735850000125 ], [ -122.343456411999966, 49.229049736000078 ], [ -122.342528649999949, 49.229017567000071 ], [ -122.340774515999939, 49.228956702000055 ], [ -122.340728325999933, 49.228954248000136 ], [ -122.33813655299997, 49.228816812000083 ], [ -122.33799958699997, 49.22880956900012 ], [ -122.337747685999943, 49.228796196000118 ], [ -122.337664897999943, 49.228786197000055 ], [ -122.336781789999975, 49.228679594000049 ], [ -122.335941608999946, 49.228516371000083 ], [ -122.334957663999958, 49.228325204000022 ], [ -122.33420631499996, 49.228179184000076 ], [ -122.333773605999966, 49.228249203000097 ], [ -122.33312800199991, 49.228497906000101 ], [ -122.331420418999983, 49.229155717000026 ], [ -122.331114765999985, 49.229145314000107 ], [ -122.331140727999937, 49.228816888000104 ], [ -122.329364728999934, 49.22875642200006 ], [ -122.329283084999958, 49.229788701000118 ], [ -122.327875198999919, 49.230116791000071 ], [ -122.327001385999978, 49.23022399700006 ], [ -122.326786304999985, 49.230219716000079 ], [ -122.326425469999919, 49.230212494000114 ], [ -122.325885329, 49.230130098000075 ], [ -122.32524065599992, 49.229945913000059 ], [ -122.325008594999957, 49.229754128000074 ], [ -122.324957578999957, 49.229663321000075 ], [ -122.324837654999982, 49.22944998400007 ], [ -122.324799663999968, 49.2289755380001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61173083", "BldgCostT": "42188333", "sL_LossRatio": "0.931182079337901", "sL_AssetLoss": "147699.9", "sL_BldgLoss": "137535.5", "sL_StrLoss": "103583.5", "sL_NStrLoss": "33952", "sL_ContLoss": "10164.4", "geom_point": "0101000020E6100000BD5ED4CD099A5EC0920E490C869A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.407300488999951, 49.218201789000013 ], [ -122.405515222999924, 49.215243096000087 ], [ -122.405262704999956, 49.214958006000067 ], [ -122.40416758399999, 49.214083302000034 ], [ -122.403168183999981, 49.208180294000023 ], [ -122.403164694999958, 49.207125709000103 ], [ -122.403463328999933, 49.206425508000066 ], [ -122.403752293999958, 49.206008916000066 ], [ -122.404962401999953, 49.204030514000067 ], [ -122.405632709999935, 49.203120996000067 ], [ -122.405785293999941, 49.202851197000093 ], [ -122.405769689999943, 49.20223780000002 ], [ -122.405418101999956, 49.201033810000133 ], [ -122.40495709899993, 49.200552409000068 ], [ -122.40441218699999, 49.200092600000055 ], [ -122.404362637999895, 49.200009763000011 ], [ -122.404290613999962, 49.199889403000078 ], [ -122.404286003, 49.199700906000011 ], [ -122.404433801999957, 49.199457993000109 ], [ -122.405121012999956, 49.198914905000095 ], [ -122.405422419999965, 49.198797000000106 ], [ -122.405843218, 49.19876960600007 ], [ -122.407042404999927, 49.198879898000072 ], [ -122.407358694999985, 49.198872394000013 ], [ -122.407627608999945, 49.19880299400004 ], [ -122.407685338999926, 49.198754797000042 ], [ -122.407805094999901, 49.198654788000027 ], [ -122.407838509999976, 49.198471193000124 ], [ -122.407795494999988, 49.198162547000059 ], [ -122.408856742999916, 49.198197935000074 ], [ -122.408717535999955, 49.199998288000074 ], [ -122.409441534999985, 49.200022424000025 ], [ -122.409426266999944, 49.200219920000087 ], [ -122.411750366999954, 49.200297364000043 ], [ -122.411638639999978, 49.201743421000067 ], [ -122.411472539999977, 49.203893044000026 ], [ -122.409603033999929, 49.20383075400013 ], [ -122.40952921199991, 49.20478558800005 ], [ -122.408461903000017, 49.204750011000058 ], [ -122.40832226199997, 49.206555512000051 ], [ -122.407264707999957, 49.20652025000004 ], [ -122.407084247999975, 49.208852613000055 ], [ -122.407917238000024, 49.208880388000047 ], [ -122.40775032099998, 49.211038003000105 ], [ -122.407846073999963, 49.211041195000064 ], [ -122.407788724999989, 49.211782483000079 ], [ -122.407993015999949, 49.211789293000081 ], [ -122.407887459, 49.213153717000125 ], [ -122.40875927399992, 49.213182776000039 ], [ -122.408481139999964, 49.21677837900004 ], [ -122.407362799999959, 49.2167411 ], [ -122.407290198999988, 49.217679270000062 ], [ -122.408820754000018, 49.217730287000073 ], [ -122.408707647999947, 49.219192403000051 ], [ -122.408433991999942, 49.219079495000052 ], [ -122.40748870099999, 49.218838910000045 ], [ -122.407485077, 49.218672090000048 ], [ -122.407300488999951, 49.218201789000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.844706865921204", "sL_AssetLoss": "9569", "sL_BldgLoss": "8083", "sL_StrLoss": "4930", "sL_NStrLoss": "3153", "sL_ContLoss": "1486", "geom_point": "0101000020E61000005FC93C8F1D9A5EC09BC4E604E9984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.408400909999898, 49.193710144000129 ], [ -122.409060165999932, 49.193732127000047 ], [ -122.409176401, 49.194070412000073 ], [ -122.408706400999975, 49.194481995000096 ], [ -122.408594099999902, 49.194688487000128 ], [ -122.408559406999956, 49.19529090200011 ], [ -122.407691197999938, 49.195627104000096 ], [ -122.407291385999926, 49.195706808000075 ], [ -122.407290772999943, 49.195774014000051 ], [ -122.407270607, 49.195749903000042 ], [ -122.407217452999973, 49.195686299000059 ], [ -122.40721050599997, 49.195678003000026 ], [ -122.40720867899995, 49.195346311000101 ], [ -122.40727431599997, 49.194941995000136 ], [ -122.407495995999966, 49.194205005000043 ], [ -122.407474797999924, 49.193857287000093 ], [ -122.407420659999957, 49.193764584000043 ], [ -122.408394190999942, 49.193797053000026 ], [ -122.408400909999898, 49.193710144000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48413083", "BldgCostT": "33388333", "sL_LossRatio": "0.796595783126801", "sL_AssetLoss": "420596", "sL_BldgLoss": "335045", "sL_StrLoss": "173145", "sL_NStrLoss": "161900", "sL_ContLoss": "85551", "geom_point": "0101000020E61000005AE3A6E58B9A5EC0854C4B0FB7984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.40753048599997, 49.196060622000104 ], [ -122.408194083999931, 49.195873405000036 ], [ -122.408524591999964, 49.195893388000059 ], [ -122.40917279699994, 49.19554589100003 ], [ -122.409299692999966, 49.195366390000082 ], [ -122.409988700999918, 49.195027507000063 ], [ -122.411458803999963, 49.193812605000126 ], [ -122.411964480999984, 49.192852701000042 ], [ -122.412285226, 49.19250230400008 ], [ -122.412270797999966, 49.192385593000097 ], [ -122.412094496999913, 49.192277301000026 ], [ -122.412097190999958, 49.192079288000116 ], [ -122.412353520999901, 49.191199200000064 ], [ -122.412585597999936, 49.191424201000146 ], [ -122.412647882999948, 49.191838693000129 ], [ -122.412487896999934, 49.192666093000135 ], [ -122.41222069199992, 49.193267111000047 ], [ -122.412271924999942, 49.193473704000063 ], [ -122.412369080999895, 49.19345659500005 ], [ -122.41286139199994, 49.192433989000122 ], [ -122.412948015999973, 49.192029502 ], [ -122.412891295999927, 49.191129404000122 ], [ -122.412597171999934, 49.190499985000024 ], [ -122.412583816000037, 49.190471405000061 ], [ -122.412726416999988, 49.189923101000019 ], [ -122.41250889, 49.189468854000033 ], [ -122.413506365999979, 49.189502077000071 ], [ -122.413511851999942, 49.189038043000039 ], [ -122.414335246999954, 49.189042221000086 ], [ -122.41434480099997, 49.188232685000038 ], [ -122.41436241699995, 49.188232774 ], [ -122.41437869899994, 49.18824108700008 ], [ -122.414668585999934, 49.188259594000044 ], [ -122.414719764999916, 49.188234585000082 ], [ -122.414756491999924, 49.18823477200003 ], [ -122.414756707999942, 49.188216534000077 ], [ -122.415633276999984, 49.187788193000117 ], [ -122.41597719899994, 49.187701227000026 ], [ -122.415997914999977, 49.187701333000042 ], [ -122.415997978999911, 49.187695973000089 ], [ -122.417023464999943, 49.18743665300012 ], [ -122.419628456999959, 49.187449772000065 ], [ -122.41970624799994, 49.187450163000058 ], [ -122.419705093999966, 49.187548787000054 ], [ -122.419703942999973, 49.187647252000062 ], [ -122.419703719999944, 49.187666293000106 ], [ -122.419760415999946, 49.187659658000065 ], [ -122.420299632999956, 49.187596562000053 ], [ -122.419698632999911, 49.188101177000121 ], [ -122.41969362399999, 49.188529546000105 ], [ -122.419281930999929, 49.188527477000036 ], [ -122.419278772999959, 49.188797322000092 ], [ -122.418886, 49.188795347000095 ], [ -122.418866877, 49.188812235000086 ], [ -122.418857594999949, 49.189604789000029 ], [ -122.41844589399993, 49.189602717000078 ], [ -122.418439565999961, 49.190142407000103 ], [ -122.417964818, 49.190140016000072 ], [ -122.417787101999949, 49.19244465700006 ], [ -122.419272207999967, 49.192494043000117 ], [ -122.418995009999932, 49.196089785000012 ], [ -122.417665265, 49.196045567000034 ], [ -122.417609792999912, 49.196764816000062 ], [ -122.41366456899999, 49.196633529000081 ], [ -122.413598567999912, 49.197488311000015 ], [ -122.412368034999957, 49.197447332000095 ], [ -122.412361321999981, 49.197534241000078 ], [ -122.407722475999947, 49.197379633000054 ], [ -122.407720316999971, 49.197266783000067 ], [ -122.407724979999969, 49.197243652000111 ], [ -122.407807104999961, 49.196837097000063 ], [ -122.40801451399993, 49.196639396000094 ], [ -122.407899139999984, 49.196501455 ], [ -122.407533316999917, 49.196064007000061 ], [ -122.40753048599997, 49.196060622000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16336667", "BldgCostT": "11266667", "sL_LossRatio": "0.80286269054226", "sL_AssetLoss": "134419", "sL_BldgLoss": "107920", "sL_StrLoss": "55490", "sL_NStrLoss": "52430", "sL_ContLoss": "26499", "geom_point": "0101000020E6100000AF3E3F08189B5EC04339FA2D74974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.421363979999953, 49.187144932000123 ], [ -122.421526842999953, 49.18503054200005 ], [ -122.420644634999974, 49.185026119000092 ], [ -122.420676015999959, 49.184998202000124 ], [ -122.421141556999928, 49.184219025000083 ], [ -122.421589174999937, 49.184221267000062 ], [ -122.421640940999964, 49.18354913400001 ], [ -122.421758488999927, 49.183553040000049 ], [ -122.42176328199993, 49.183490804000037 ], [ -122.42190069199998, 49.183484294000031 ], [ -122.422104985999908, 49.183682205000082 ], [ -122.421930823999958, 49.18445560400005 ], [ -122.422047299000027, 49.184978198000124 ], [ -122.42238992099999, 49.185115003000114 ], [ -122.422665507999952, 49.18503518800005 ], [ -122.422550280999971, 49.184197795000046 ], [ -122.422665890999951, 49.183784793000022 ], [ -122.422545802999934, 49.183424390000035 ], [ -122.422179790999962, 49.183089695000049 ], [ -122.422073488999928, 49.182873300000061 ], [ -122.421998600999984, 49.182108502000098 ], [ -122.42209719399996, 49.181929003000064 ], [ -122.422083244999939, 49.181900833000078 ], [ -122.422241048000018, 49.181906076000082 ], [ -122.422253629999943, 49.180825344 ], [ -122.422357165999969, 49.180447045000037 ], [ -122.422669665999976, 49.180448608000106 ], [ -122.42267280499999, 49.180178761000036 ], [ -122.422908423999914, 49.180179939000034 ], [ -122.422947253999951, 49.179675564000014 ], [ -122.423672087999975, 49.178743106000042 ], [ -122.423701588, 49.178536505000075 ], [ -122.423953946999958, 49.178308995000094 ], [ -122.424164191999978, 49.178421158000035 ], [ -122.424786333999975, 49.178961645000065 ], [ -122.424814713, 49.17902810600004 ], [ -122.42486071799999, 49.179252079000051 ], [ -122.425175484999926, 49.179962151000034 ], [ -122.425212371999976, 49.180158131000084 ], [ -122.425102059999958, 49.180301955000047 ], [ -122.424837510999964, 49.182044850000104 ], [ -122.42479242, 49.18276185500013 ], [ -122.424788560999943, 49.182794048000055 ], [ -122.424253521999901, 49.187240917000018 ], [ -122.421477297999985, 49.187148698000051 ], [ -122.421363979999953, 49.187144932000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49338667", "BldgCostT": "34026667", "sL_LossRatio": "0.802371274529906", "sL_AssetLoss": "414545", "sL_BldgLoss": "332619", "sL_StrLoss": "172605", "sL_NStrLoss": "160014", "sL_ContLoss": "81926", "geom_point": "0101000020E6100000C32E06E6D39A5EC0414C78F8A1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.418683684999962, 49.204446281000124 ], [ -122.418686848999954, 49.204176437000058 ], [ -122.414568622, 49.204155636000095 ], [ -122.414581363999943, 49.20307625700007 ], [ -122.414169551, 49.203074169000104 ], [ -122.414182299999979, 49.201994789000089 ], [ -122.414081911000011, 49.201994280000122 ], [ -122.413770495999984, 49.201992700000069 ], [ -122.413780064999955, 49.201183165000039 ], [ -122.413368267999957, 49.201181075000079 ], [ -122.413371459999922, 49.200911230000045 ], [ -122.412959663, 49.200909137000053 ], [ -122.412962857999972, 49.200639293000044 ], [ -122.412551063999942, 49.200637200000131 ], [ -122.412554260999968, 49.200367354000122 ], [ -122.41214247, 49.200365258000069 ], [ -122.41215846299994, 49.199016034000067 ], [ -122.416688041, 49.199039 ], [ -122.416691214999943, 49.198769154000061 ], [ -122.41729661899997, 49.198772211000062 ], [ -122.417418448999939, 49.197192772000022 ], [ -122.421237952999974, 49.197319743000065 ], [ -122.421239665999963, 49.197172869000063 ], [ -122.422063196999957, 49.197176994000088 ], [ -122.422066340999962, 49.196907148000015 ], [ -122.422478102999946, 49.196909208000143 ], [ -122.422484385999965, 49.196369517000043 ], [ -122.422896144999953, 49.196371574000104 ], [ -122.422902422999954, 49.19583188400005 ], [ -122.423314176999952, 49.195833940000036 ], [ -122.423320451, 49.195294248000046 ], [ -122.42373220199994, 49.195296304000067 ], [ -122.423738470999965, 49.19475661300006 ], [ -122.423814934999939, 49.194756995000091 ], [ -122.423842861999958, 49.194394261000056 ], [ -122.423032693999957, 49.1943673580001 ], [ -122.423127637, 49.193134395000087 ], [ -122.422933814999922, 49.193133427000106 ], [ -122.422943231999938, 49.192323890000068 ], [ -122.423189951999973, 49.192325122000035 ], [ -122.423309568000022, 49.190771595000079 ], [ -122.423826575999911, 49.190788764000075 ], [ -122.42378878699999, 49.191102759000046 ], [ -122.424310508999923, 49.198317184000125 ], [ -122.424302362000034, 49.198752384000102 ], [ -122.424278925999928, 49.200002559000083 ], [ -122.424245686999953, 49.201775532000099 ], [ -122.423656952999977, 49.201772595000129 ], [ -122.42366322499997, 49.20123290500004 ], [ -122.423251424999989, 49.20123084900009 ], [ -122.423276528999978, 49.199072086000072 ], [ -122.423688310999978, 49.199074142000029 ], [ -122.423691445999935, 49.198804296000112 ], [ -122.422867887999985, 49.198800184000071 ], [ -122.422858467999944, 49.199609720000097 ], [ -122.42272209399999, 49.199609040000055 ], [ -122.422617229999972, 49.200970484000031 ], [ -122.422430882999919, 49.200964295000041 ], [ -122.422390113999938, 49.204464876000024 ], [ -122.418683684999962, 49.204446281000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15292667", "BldgCostT": "10546667", "sL_LossRatio": "0.881850385496979", "sL_AssetLoss": "52789", "sL_BldgLoss": "46552", "sL_StrLoss": "31437", "sL_NStrLoss": "15115", "sL_ContLoss": "6237", "geom_point": "0101000020E61000006EC89AECFA9A5EC09EC3E714059C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.4214364799999, 49.221242552000113 ], [ -122.421460309999972, 49.220933430000088 ], [ -122.41973723199996, 49.220876202000035 ], [ -122.419744787999974, 49.220778236000058 ], [ -122.418846107999968, 49.220748378000067 ], [ -122.419123462999949, 49.217152771 ], [ -122.419956454999948, 49.217180447000061 ], [ -122.419995655999912, 49.216672090000067 ], [ -122.424007900999982, 49.216805309000065 ], [ -122.423978774999952, 49.219187534000049 ], [ -122.42431972699994, 49.220006877000081 ], [ -122.424498807999939, 49.220377009000082 ], [ -122.424101102999927, 49.220502593000035 ], [ -122.423121489999943, 49.220884713 ], [ -122.422149782999909, 49.221198504000093 ], [ -122.421729601999985, 49.22125299900005 ], [ -122.4214364799999, 49.221242552000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.794755584331499", "sL_AssetLoss": "24712", "sL_BldgLoss": "19640", "sL_StrLoss": "10640", "sL_NStrLoss": "9000", "sL_ContLoss": "5072", "geom_point": "0101000020E6100000049098A837985EC0D57954FC5F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.375802639999932, 49.141664208000073 ], [ -122.381271670999951, 49.141848323000026 ], [ -122.3809918379999, 49.145444247000121 ], [ -122.375522386999975, 49.145260119000106 ], [ -122.375802639999932, 49.141664208000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10403833", "BldgCostT": "6703333", "sL_LossRatio": "0.75946680251316", "sL_AssetLoss": "70668", "sL_BldgLoss": "53670", "sL_StrLoss": "27440", "sL_NStrLoss": "26230", "sL_ContLoss": "16998", "geom_point": "0101000020E6100000A8D8A0485A975EC08FD70FF35D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.366460896999968, 49.138109695000061 ], [ -122.366523190999956, 49.137312316000042 ], [ -122.364621182999926, 49.137248049000014 ], [ -122.364628486999948, 49.137154587000119 ], [ -122.364044066999938, 49.137134833000097 ], [ -122.364098493999933, 49.136438629000025 ], [ -122.363497790999986, 49.136418321000036 ], [ -122.363515701999944, 49.136189253000047 ], [ -122.361819047999958, 49.136131876000015 ], [ -122.361837572999931, 49.135895062 ], [ -122.360002318999989, 49.135832968000081 ], [ -122.359779393999929, 49.135825423000014 ], [ -122.359797505999921, 49.135593991000057 ], [ -122.357769859999962, 49.135525348000094 ], [ -122.357750455999948, 49.135773136000083 ], [ -122.355617167000034, 49.135700874000086 ], [ -122.355572381999949, 49.135492701000132 ], [ -122.356286288999968, 49.134292328000051 ], [ -122.356399122999917, 49.134102602000112 ], [ -122.356824610999951, 49.133997195000049 ], [ -122.357385278999942, 49.13409119199999 ], [ -122.35791978099995, 49.134066994000058 ], [ -122.35818349, 49.133889007000057 ], [ -122.358602990999941, 49.133198300000117 ], [ -122.358701503999939, 49.133089984000065 ], [ -122.358947997999977, 49.133055787000039 ], [ -122.35964580199996, 49.133131293000126 ], [ -122.360956989999963, 49.133525790000107 ], [ -122.363543893999946, 49.133890412000056 ], [ -122.364636478999984, 49.134112598000101 ], [ -122.365086510999959, 49.134313401000114 ], [ -122.367866398000018, 49.134660913000047 ], [ -122.368533887999902, 49.134854606000061 ], [ -122.371751191999962, 49.135194994000109 ], [ -122.372163378, 49.135295601000038 ], [ -122.371929472999966, 49.138294286000097 ], [ -122.366460896999968, 49.138109695000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.794827586206897", "sL_AssetLoss": "5800", "sL_BldgLoss": "4610", "sL_StrLoss": "2300", "sL_NStrLoss": "2310", "sL_ContLoss": "1190", "geom_point": "0101000020E6100000135F0E37B7995EC0562C1B291D984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.401289743999911, 49.186088658000067 ], [ -122.401895396999976, 49.186108896000079 ], [ -122.401846795000012, 49.18615179100005 ], [ -122.401886693999927, 49.187429305000094 ], [ -122.401670886999938, 49.188184093000167 ], [ -122.401909698999958, 49.188958885000019 ], [ -122.402525892999961, 49.190168114000137 ], [ -122.402716279999979, 49.190367402000042 ], [ -122.402811679999957, 49.190415665000025 ], [ -122.402779893999963, 49.190826162000093 ], [ -122.402528183, 49.190623399000074 ], [ -122.402392022999948, 49.190459082000075 ], [ -122.402110299999933, 49.190119105000086 ], [ -122.401543494999913, 49.189198099000052 ], [ -122.401351076999902, 49.188670691000091 ], [ -122.40125632199999, 49.188265609000055 ], [ -122.40151370199996, 49.187103389000093 ], [ -122.401537279999943, 49.186851893000039 ], [ -122.401486791, 49.186618603000063 ], [ -122.401289743999911, 49.186088658000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386251", "BldgCostT": "3025001", "sL_LossRatio": "0.801315428884626", "sL_AssetLoss": "36490", "sL_BldgLoss": "29240", "sL_StrLoss": "15300", "sL_NStrLoss": "13940", "sL_ContLoss": "7250", "geom_point": "0101000020E61000008A09C5B1899A5EC06AA531D68E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.414697129999979, 49.172609243000089 ], [ -122.417241258, 49.172693944000116 ], [ -122.416964021999917, 49.176289791000023 ], [ -122.416400140999954, 49.176271023000012 ], [ -122.416243702999907, 49.178299503000112 ], [ -122.41597769399999, 49.178290648000043 ], [ -122.415915135999953, 49.179101708000104 ], [ -122.411003751999928, 49.178938103000121 ], [ -122.411090681999951, 49.178526593000058 ], [ -122.411985299999969, 49.177271795000067 ], [ -122.412242412999944, 49.176283394000102 ], [ -122.412975191999962, 49.175891796000037 ], [ -122.413786112999944, 49.17456440600008 ], [ -122.414716900999935, 49.173615904000059 ], [ -122.414697129999979, 49.172609243000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.770784660766962", "sL_AssetLoss": "42375", "sL_BldgLoss": "32662", "sL_StrLoss": "14532", "sL_NStrLoss": "18130", "sL_ContLoss": "9713", "geom_point": "0101000020E610000023B1F6DAE0965EC0C5492733DA914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.359584297999959, 49.142392910000048 ], [ -122.359454987999982, 49.141418691000091 ], [ -122.359406001000011, 49.141343099000068 ], [ -122.359283188999939, 49.141248793000102 ], [ -122.357727831999966, 49.140356433000093 ], [ -122.357384882999952, 49.140159705000016 ], [ -122.357185483999956, 49.140079904000054 ], [ -122.357039378999957, 49.140055105000023 ], [ -122.35680317899994, 49.140060715000061 ], [ -122.356617253999943, 49.140106709000122 ], [ -122.355369763999946, 49.140632254000074 ], [ -122.355276303999929, 49.140669224000121 ], [ -122.355018761999958, 49.140771185000062 ], [ -122.354889818999965, 49.140822226000054 ], [ -122.354831094999895, 49.140687234000076 ], [ -122.354698298999949, 49.140381988000101 ], [ -122.354441905999977, 49.140173989000104 ], [ -122.354216705999988, 49.13960578400004 ], [ -122.354273569999975, 49.13951347600009 ], [ -122.354410592999926, 49.139290992000028 ], [ -122.353849152999899, 49.139196640000137 ], [ -122.353249798999983, 49.13909588800005 ], [ -122.352879944999984, 49.139097700000086 ], [ -122.352971774999915, 49.13792664699999 ], [ -122.354088330999943, 49.13796449900007 ], [ -122.354118347999957, 49.137581574000087 ], [ -122.354968551999917, 49.13761038900001 ], [ -122.359586812999936, 49.137766792000015 ], [ -122.359524983999933, 49.138556710000067 ], [ -122.359815637999986, 49.138558322000058 ], [ -122.359812351999963, 49.13881359700008 ], [ -122.359882966999976, 49.138815986000075 ], [ -122.359860870999967, 49.139098301000061 ], [ -122.360174414, 49.139100039000027 ], [ -122.361042524999931, 49.139104847000048 ], [ -122.361039055999981, 49.139374692000096 ], [ -122.361450336999923, 49.139376968000086 ], [ -122.361439936999972, 49.140186503000052 ], [ -122.361220695999975, 49.140185290000019 ], [ -122.360617361, 49.140181950000041 ], [ -122.360600002999931, 49.141531175000075 ], [ -122.360188703999953, 49.141528896000047 ], [ -122.360178280999932, 49.142338432000088 ], [ -122.360589588, 49.14234071100006 ], [ -122.3605757, 49.143420090000085 ], [ -122.360164384999976, 49.143417811000099 ], [ -122.36016151299998, 49.143640896000115 ], [ -122.360034308999928, 49.143526696000094 ], [ -122.359819594999976, 49.143204906000072 ], [ -122.35968498799997, 49.142910087000082 ], [ -122.359584297999959, 49.142392910000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122438751", "BldgCostT": "79340001", "sL_LossRatio": "0.733065680544988", "sL_AssetLoss": "1297203", "sL_BldgLoss": "950935", "sL_StrLoss": "454705", "sL_NStrLoss": "496230", "sL_ContLoss": "346268", "geom_point": "0101000020E61000004D70D16628995EC00F6A752879954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.390362185999962, 49.188092786000055 ], [ -122.389504399999964, 49.184049909000123 ], [ -122.388795421999959, 49.184048880000091 ], [ -122.387203097999944, 49.184046589000026 ], [ -122.379987418, 49.18403589900003 ], [ -122.37999385399992, 49.182447950000025 ], [ -122.379996450999968, 49.181809303000101 ], [ -122.380000564999989, 49.180801924000036 ], [ -122.380002829999938, 49.180244190000096 ], [ -122.380012428999947, 49.177878416000112 ], [ -122.380017104999965, 49.17673378900006 ], [ -122.38025511499994, 49.176732820000083 ], [ -122.38111979199999, 49.176729300000062 ], [ -122.382049493999915, 49.176725499000042 ], [ -122.382055893999961, 49.176027368000085 ], [ -122.382060469999928, 49.175532629000017 ], [ -122.382062099999956, 49.175352720000063 ], [ -122.38207525699994, 49.173922493000063 ], [ -122.382077309999957, 49.173697666000081 ], [ -122.382080681999952, 49.173328854000026 ], [ -122.382084243999927, 49.172942068000083 ], [ -122.382095011999965, 49.171770787000114 ], [ -122.382283616, 49.170440603000081 ], [ -122.383631273999953, 49.170044197000038 ], [ -122.383935227, 49.169928207000048 ], [ -122.385380628999954, 49.16956220400008 ], [ -122.385931774999975, 49.169388693000037 ], [ -122.386484877999962, 49.169242100000112 ], [ -122.386671306999929, 49.169192715000079 ], [ -122.387743400999938, 49.168846585000011 ], [ -122.388854895999955, 49.168362898000019 ], [ -122.389537013999956, 49.167998657000069 ], [ -122.391573713999946, 49.166911095000074 ], [ -122.392998679999934, 49.166046696000123 ], [ -122.394340897999953, 49.16494109300011 ], [ -122.394745391999962, 49.164607912000108 ], [ -122.396870895999896, 49.162856897000047 ], [ -122.397342102999971, 49.16221031500011 ], [ -122.399995802999982, 49.162227600000065 ], [ -122.40027002399998, 49.162229378000028 ], [ -122.401289783999914, 49.162235976000069 ], [ -122.401292321999932, 49.161268244000048 ], [ -122.401293679999966, 49.160737543000046 ], [ -122.401294676999967, 49.160347936000051 ], [ -122.401301883999935, 49.160198098000173 ], [ -122.401337405999953, 49.159459781000066 ], [ -122.401480604, 49.159292429000118 ], [ -122.401684464999931, 49.159210002000101 ], [ -122.40097344299997, 49.158297540000092 ], [ -122.400671419999952, 49.158355059000087 ], [ -122.400244466999965, 49.158237118000066 ], [ -122.399994427999943, 49.158109686000039 ], [ -122.399809132999934, 49.158015269000032 ], [ -122.399387958999924, 49.157760703000108 ], [ -122.399308697999956, 49.157712793000037 ], [ -122.397949371999943, 49.156815602000073 ], [ -122.396958603999934, 49.156340574000076 ], [ -122.396920704999943, 49.156322389000081 ], [ -122.396027677999967, 49.156025692000128 ], [ -122.394934392999957, 49.155554595000119 ], [ -122.393672609999939, 49.154974300000084 ], [ -122.392300919999983, 49.153832309000052 ], [ -122.39213891499999, 49.153763787000059 ], [ -122.39126731, 49.153280295000023 ], [ -122.387975721999908, 49.1517942770001 ], [ -122.387740995999948, 49.151688305000114 ], [ -122.387385098, 49.151574488000023 ], [ -122.386860294999934, 49.151446898000074 ], [ -122.381933390999947, 49.150589110000077 ], [ -122.381478648999959, 49.150523274000072 ], [ -122.379825112999981, 49.1502838930001 ], [ -122.378887785999922, 49.150118907000021 ], [ -122.378559307999979, 49.150023213000075 ], [ -122.376184998999989, 49.149050894000069 ], [ -122.371556100999911, 49.147699687000106 ], [ -122.371533171999914, 49.147695834000039 ], [ -122.37126921, 49.147651306000078 ], [ -122.370826527999924, 49.147641966000016 ], [ -122.368180563999957, 49.147586045000033 ], [ -122.367984185999916, 49.147581905000081 ], [ -122.36749010599999, 49.147500296000061 ], [ -122.366959193999975, 49.147329204000073 ], [ -122.365928201999935, 49.147136603000035 ], [ -122.365436810999967, 49.1469686 ], [ -122.365106290999947, 49.146777216000054 ], [ -122.364965991999895, 49.146554293000058 ], [ -122.364752032999888, 49.146331987000096 ], [ -122.364074593999987, 49.145628208000161 ], [ -122.363495417999971, 49.145163399000126 ], [ -122.363050491999971, 49.144926586000061 ], [ -122.362680502999979, 49.144696892000049 ], [ -122.3622576, 49.144495098000093 ], [ -122.361894261999979, 49.144360772000091 ], [ -122.361881901999965, 49.144356209000158 ], [ -122.361467879999935, 49.144233643000028 ], [ -122.36153492399994, 49.143376769000056 ], [ -122.367004098999956, 49.143561609000045 ], [ -122.366984449, 49.143813141000123 ], [ -122.3674629, 49.143829298000107 ], [ -122.367387704999913, 49.144791897000047 ], [ -122.368571720999967, 49.144831871000115 ], [ -122.36842448199998, 49.146717242000122 ], [ -122.370080684999905, 49.146773136000057 ], [ -122.370025648999956, 49.147478147000058 ], [ -122.370292260999989, 49.147487143000021 ], [ -122.37035918399999, 49.146629791000066 ], [ -122.37582877599999, 49.146814182000035 ], [ -122.375787239999951, 49.147347115000116 ], [ -122.377958236, 49.147420227000104 ], [ -122.37793466699999, 49.147722809000079 ], [ -122.37971029699996, 49.147782573000036 ], [ -122.380676782999942, 49.147815091 ], [ -122.380679741999955, 49.147577633 ], [ -122.381528720999967, 49.147582183000083 ], [ -122.381687283999923, 49.145544461000078 ], [ -122.381981862999922, 49.145554368 ], [ -122.387156794, 49.145728277000096 ], [ -122.387103027999942, 49.146420287000161 ], [ -122.389076070999963, 49.146486527000043 ], [ -122.388796815, 49.150082446000035 ], [ -122.388320527999952, 49.150066459000044 ], [ -122.38828587099999, 49.150512629000055 ], [ -122.389864793999948, 49.15056561700009 ], [ -122.389820619999966, 49.151134526000114 ], [ -122.390097763999947, 49.151135991000118 ], [ -122.390094450999968, 49.151405837000084 ], [ -122.390505835999974, 49.151408010000097 ], [ -122.390502523999885, 49.151677856000063 ], [ -122.391325295999962, 49.151682196000145 ], [ -122.391323913999955, 49.151794940000066 ], [ -122.393524539999959, 49.151868723000078 ], [ -122.393455122999981, 49.152763649000114 ], [ -122.396921242999952, 49.152879770000077 ], [ -122.396966721999888, 49.152997599000066 ], [ -122.400735381999937, 49.155435904000107 ], [ -122.401347797999946, 49.155898708000123 ], [ -122.403230811999947, 49.156771807000084 ], [ -122.4038694199999, 49.157216102000085 ], [ -122.405362291999964, 49.158509296000119 ], [ -122.406160589999971, 49.159386589000036 ], [ -122.409962494999945, 49.162743512000056 ], [ -122.41130379599997, 49.163821470000045 ], [ -122.411234642999958, 49.164717163000077 ], [ -122.410677759999928, 49.164698593000018 ], [ -122.410605866999944, 49.16562957500004 ], [ -122.409999518999953, 49.165609353000072 ], [ -122.40999834199999, 49.165624590000114 ], [ -122.407958244999946, 49.165556525000049 ], [ -122.407817309, 49.165551822000026 ], [ -122.407166538999931, 49.165530101000094 ], [ -122.407157670999965, 49.165644817000071 ], [ -122.408057514999939, 49.165674851000048 ], [ -122.411616936999948, 49.165793577000059 ], [ -122.41145433399997, 49.167899685000052 ], [ -122.411446170999938, 49.168005405000095 ], [ -122.410931287999972, 49.167731089000029 ], [ -122.409325403999929, 49.166688507000117 ], [ -122.408412587999962, 49.166198598000108 ], [ -122.408246408999943, 49.166188602000076 ], [ -122.407998578999951, 49.166313996000099 ], [ -122.407632306, 49.167075911000047 ], [ -122.407216310999914, 49.167424902000107 ], [ -122.407242426999957, 49.16759580400003 ], [ -122.407434092999949, 49.167614288000074 ], [ -122.408027196999953, 49.167464691000113 ], [ -122.408580395999977, 49.166963389000038 ], [ -122.408882396999942, 49.166964795000055 ], [ -122.409305114999952, 49.1672467920001 ], [ -122.409187507999931, 49.167803710000094 ], [ -122.408467298999966, 49.168455993000073 ], [ -122.40825619499995, 49.168860491000061 ], [ -122.407811217999921, 49.169370304000019 ], [ -122.407257002000023, 49.169817506000086 ], [ -122.40631711099995, 49.170343098000039 ], [ -122.406015806999932, 49.170351610000083 ], [ -122.40587909700001, 49.170287513000055 ], [ -122.405625203999989, 49.169754895000089 ], [ -122.405474904999949, 49.169754886000106 ], [ -122.405070101999954, 49.171407008000095 ], [ -122.404899788999927, 49.173097494000075 ], [ -122.404283409999948, 49.173067605000035 ], [ -122.404008523, 49.173120302000079 ], [ -122.403813887999931, 49.173262695000098 ], [ -122.404115519999905, 49.174434805000033 ], [ -122.403792604999978, 49.174981709000086 ], [ -122.403775385999964, 49.175367694000101 ], [ -122.403549003999927, 49.175943087000071 ], [ -122.403339810999967, 49.176076908000063 ], [ -122.403357691999958, 49.176867394000112 ], [ -122.403681581999976, 49.177437097000102 ], [ -122.403504391, 49.178452499000102 ], [ -122.403238804999916, 49.178801393000114 ], [ -122.402661276999979, 49.178879793000057 ], [ -122.402410297999921, 49.179237289000071 ], [ -122.401915285999962, 49.179442295000108 ], [ -122.401771801999971, 49.179846802000021 ], [ -122.400959811999954, 49.180094609000108 ], [ -122.40108018699999, 49.180390901000052 ], [ -122.40132589699995, 49.180492011000098 ], [ -122.40201498299993, 49.180190100000026 ], [ -122.402331585999917, 49.180199994000112 ], [ -122.402752203999981, 49.180444987000094 ], [ -122.403051519999977, 49.180815300000106 ], [ -122.403072715999883, 49.181184205000143 ], [ -122.402861106999978, 49.181786608 ], [ -122.402694219999916, 49.18193760400009 ], [ -122.402141777999972, 49.182132698000061 ], [ -122.401847280999959, 49.182679591000152 ], [ -122.401600793999961, 49.182769291000135 ], [ -122.401489116999969, 49.183250292000025 ], [ -122.399627526999964, 49.183188063000081 ], [ -122.399680431999954, 49.182505312000039 ], [ -122.39963116899996, 49.182503665000105 ], [ -122.399707846, 49.181514136000061 ], [ -122.399484093999931, 49.181506654000074 ], [ -122.396382117999963, 49.181402881000054 ], [ -122.396643892999961, 49.178027420000042 ], [ -122.396622026999978, 49.178026688000116 ], [ -122.396592412999922, 49.178408576000095 ], [ -122.392010787999979, 49.178255137000093 ], [ -122.391893596999964, 49.179764385000176 ], [ -122.388363808999927, 49.179646039000048 ], [ -122.388288696999922, 49.180612369000087 ], [ -122.384003198999949, 49.180468530000091 ], [ -122.383897586, 49.181825572000065 ], [ -122.383378512, 49.1818081380001 ], [ -122.383324148999961, 49.18250652400009 ], [ -122.383700162999915, 49.182519153000065 ], [ -122.38371174699995, 49.18237031600006 ], [ -122.387826033999929, 49.182508418000047 ], [ -122.387826072999985, 49.182507916000091 ], [ -122.393299953999986, 49.182691409 ], [ -122.393082049000029, 49.185498315000075 ], [ -122.393649115999921, 49.18551730700004 ], [ -122.393633324999925, 49.185720739000047 ], [ -122.393582805000023, 49.185862899000085 ], [ -122.393505995999945, 49.186251487000064 ], [ -122.393487500999953, 49.187356796000081 ], [ -122.393400018999927, 49.187688190000081 ], [ -122.39318690099995, 49.187958599000119 ], [ -122.392753899999917, 49.188109982000093 ], [ -122.392355894, 49.188146183000065 ], [ -122.391373797999904, 49.188070111000116 ], [ -122.390362185999962, 49.188092786000055 ] ], [ [ -122.386620517999958, 49.17400958500005 ], [ -122.38681594799999, 49.171496049000055 ], [ -122.38547161799994, 49.171450918000119 ], [ -122.385397667999925, 49.172401703000077 ], [ -122.385442007, 49.172403192000075 ], [ -122.385320453999967, 49.173965941000056 ], [ -122.386620517999958, 49.17400958500005 ] ], [ [ -122.38886698499999, 49.171349623000026 ], [ -122.388891355999959, 49.171035989000138 ], [ -122.388675960999961, 49.171028762000056 ], [ -122.388651588999949, 49.171342398000021 ], [ -122.38886698499999, 49.171349623000026 ] ], [ [ -122.400230909999905, 49.167202790000069 ], [ -122.400258629999939, 49.16684486800002 ], [ -122.399141222, 49.166807492000032 ], [ -122.399285975999959, 49.164938940000084 ], [ -122.397684845999933, 49.164885363000089 ], [ -122.397501555999895, 49.167250244000066 ], [ -122.397825660999914, 49.167261091000093 ], [ -122.397835423999979, 49.167135113000015 ], [ -122.398877118000016, 49.167169969000028 ], [ -122.398878081999896, 49.16715753800009 ], [ -122.400230909999905, 49.167202790000069 ] ], [ [ -122.382884677999982, 49.149443411000014 ], [ -122.382902933999958, 49.149208718000111 ], [ -122.382716382999931, 49.149207720000028 ], [ -122.382713526999936, 49.149437657000142 ], [ -122.382884677999982, 49.149443411000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.905704099821747", "sL_AssetLoss": "11220", "sL_BldgLoss": "10162", "sL_StrLoss": "7210", "sL_NStrLoss": "2952", "sL_ContLoss": "1058", "geom_point": "0101000020E6100000AB336BE743985EC00122B3695B954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.377352703999961, 49.168726606000078 ], [ -122.3773732399999, 49.168463149000054 ], [ -122.375184044999969, 49.168389449000088 ], [ -122.375464462999929, 49.164793667000083 ], [ -122.38093621199998, 49.16497779300007 ], [ -122.380915698999942, 49.165241252000023 ], [ -122.383104752999941, 49.165314836000029 ], [ -122.382824921999898, 49.168910635000053 ], [ -122.377352703999961, 49.168726606000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113949000", "BldgCostT": "74430000", "sL_LossRatio": "0.823581380830314", "sL_AssetLoss": "528595", "sL_BldgLoss": "435341", "sL_StrLoss": "256887", "sL_NStrLoss": "178454", "sL_ContLoss": "93254", "geom_point": "0101000020E6100000A5A15FBEA9975EC0EA9468452B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.37098721699999, 49.174803906000136 ], [ -122.370953671, 49.173179716000092 ], [ -122.370905460999936, 49.170850293000058 ], [ -122.370958448999943, 49.170353360000043 ], [ -122.372568555, 49.170407630000057 ], [ -122.372457274999988, 49.171833310000096 ], [ -122.375279048999957, 49.171928363000028 ], [ -122.375103039999956, 49.174184898000057 ], [ -122.37662186699994, 49.174236029000042 ], [ -122.376700842999966, 49.173223121000071 ], [ -122.376772236999983, 49.173225524000081 ], [ -122.376813667999954, 49.17269412200006 ], [ -122.377207733999953, 49.172707385000102 ], [ -122.377343142999948, 49.170970330000088 ], [ -122.37759365, 49.17097876000004 ], [ -122.377631157999971, 49.170497536 ], [ -122.379903591999948, 49.170573982000128 ], [ -122.379961098999928, 49.16983569000007 ], [ -122.383273354, 49.169947031000042 ], [ -122.383442172999978, 49.167777568000105 ], [ -122.387005495999986, 49.167897234000115 ], [ -122.387104387999955, 49.166625053000082 ], [ -122.388009797, 49.166655440000092 ], [ -122.388049676999984, 49.166142274000073 ], [ -122.38913474899999, 49.16617868100009 ], [ -122.38916915399993, 49.165735799000039 ], [ -122.38987589, 49.165759507000104 ], [ -122.389906501999945, 49.165365371000064 ], [ -122.389777566999953, 49.165361046000058 ], [ -122.390034834999952, 49.162048548000072 ], [ -122.389760771999988, 49.162039355000147 ], [ -122.390040026999912, 49.158443500000061 ], [ -122.391141177999955, 49.158480433000065 ], [ -122.391181505999896, 49.157960926000094 ], [ -122.391901373999985, 49.157985064000044 ], [ -122.391937122999977, 49.157524453000072 ], [ -122.388943626999932, 49.157424045 ], [ -122.388982894999955, 49.156918491000056 ], [ -122.388879456999945, 49.156915020000049 ], [ -122.388816941999934, 49.157719823000093 ], [ -122.383346015, 49.157536096000051 ], [ -122.383437651999941, 49.156358171000058 ], [ -122.383326622999917, 49.156354440000058 ], [ -122.383321144999982, 49.156424859000012 ], [ -122.381575487999896, 49.156366175000066 ], [ -122.381468143999939, 49.15774530100007 ], [ -122.375997244999951, 49.157561199000021 ], [ -122.376041426999933, 49.156994425000107 ], [ -122.374954984999945, 49.156957833000078 ], [ -122.3748596, 49.158181058000039 ], [ -122.371985762999913, 49.158084210000069 ], [ -122.371932613999931, 49.158765227000046 ], [ -122.366461631999925, 49.158580642000068 ], [ -122.366513187999914, 49.157921030000026 ], [ -122.36213842299999, 49.157773229000057 ], [ -122.362140743999987, 49.157743558000092 ], [ -122.360571169999929, 49.157690486000035 ], [ -122.360574620999969, 49.157646404000104 ], [ -122.358189790999973, 49.157565723000097 ], [ -122.358346022999967, 49.155571308000063 ], [ -122.357746499999976, 49.155551017000057 ], [ -122.357877044999967, 49.153884653 ], [ -122.356735066999974, 49.153845994 ], [ -122.356808823999955, 49.152904758000034 ], [ -122.356538119999954, 49.152895591000053 ], [ -122.356567788999911, 49.152516975 ], [ -122.355982435, 49.152497153000112 ], [ -122.35587029199999, 49.153927927000069 ], [ -122.355021280999892, 49.153899172000145 ], [ -122.355013560999978, 49.153997648000079 ], [ -122.354195417999989, 49.153969931000077 ], [ -122.35417218, 49.154266270000043 ], [ -122.356204960999946, 49.154335125000038 ], [ -122.355923116999975, 49.15793091500008 ], [ -122.355297306999944, 49.157909722000085 ], [ -122.355217586999984, 49.15892651300004 ], [ -122.356287243999958, 49.158962736000099 ], [ -122.356249294999913, 49.159446888000097 ], [ -122.357115100999977, 49.159476201000047 ], [ -122.357116705999957, 49.159455709000092 ], [ -122.361926336999957, 49.159618411000046 ], [ -122.361964126999936, 49.159135525000096 ], [ -122.366598577, 49.159292097000055 ], [ -122.366629250999964, 49.158899637000111 ], [ -122.372100270999908, 49.159084214000067 ], [ -122.371819625999947, 49.162680019000099 ], [ -122.368089198999925, 49.162554195000084 ], [ -122.367907689999981, 49.164877107000102 ], [ -122.362436004999921, 49.164692318000043 ], [ -122.362486808999961, 49.164043148000111 ], [ -122.361304707999977, 49.164003190000102 ], [ -122.361367205999954, 49.163204798000059 ], [ -122.360286803999912, 49.16316826600012 ], [ -122.360298124999957, 49.161941450000064 ], [ -122.353585601999939, 49.161901110000038 ], [ -122.34971550099999, 49.161898803000078 ], [ -122.348315647999954, 49.161897984000099 ], [ -122.34721828899994, 49.161897346000089 ], [ -122.345338818999934, 49.161896238000026 ], [ -122.34074427799996, 49.161893361000068 ], [ -122.338661992999931, 49.161891983000025 ], [ -122.338677895999922, 49.161080390000116 ], [ -122.338685903999988, 49.15901208700005 ], [ -122.338656011999987, 49.158624400000107 ], [ -122.338455087999989, 49.158337302000035 ], [ -122.337668485999984, 49.157739088000042 ], [ -122.337464116999925, 49.157477905000043 ], [ -122.337353487999977, 49.157211002000082 ], [ -122.33738911899998, 49.157021092000022 ], [ -122.33750140599993, 49.156900486000112 ], [ -122.337788603999954, 49.156754416000112 ], [ -122.338531899999978, 49.156672475000043 ], [ -122.339426398999947, 49.156573890000054 ], [ -122.339958904999918, 49.156533508000088 ], [ -122.347344009999944, 49.156525701000106 ], [ -122.348100476999917, 49.156497304000048 ], [ -122.349368092999939, 49.156053600000085 ], [ -122.349767492999931, 49.155822885000092 ], [ -122.349973898999963, 49.15549910500004 ], [ -122.350414010999941, 49.155133704000058 ], [ -122.350382192999987, 49.154945089000101 ], [ -122.350226916999972, 49.154827208 ], [ -122.349839386, 49.154609399000115 ], [ -122.349704516999978, 49.154407503000087 ], [ -122.34968879399996, 49.154240204000068 ], [ -122.349752199999955, 49.153956589000053 ], [ -122.35029169799995, 49.152813104000124 ], [ -122.350462602, 49.152522308000108 ], [ -122.351058597999966, 49.152074702000128 ], [ -122.351444994999923, 49.151921115000079 ], [ -122.35257610499994, 49.151775050000047 ], [ -122.352722102999948, 49.151756191000104 ], [ -122.35292830399996, 49.151662199000043 ], [ -122.353032399, 49.151523288000114 ], [ -122.3529668, 49.150664842 ], [ -122.352868008999948, 49.149459095000097 ], [ -122.353229005999964, 49.149070194000103 ], [ -122.353741884999977, 49.148805501000083 ], [ -122.354528680999948, 49.148791607000092 ], [ -122.354790806, 49.14873560900007 ], [ -122.354967787999925, 49.148641604000019 ], [ -122.354998316999939, 49.148625400000071 ], [ -122.355056698999988, 49.148439901000081 ], [ -122.35505763, 49.148380599000134 ], [ -122.355062744999913, 49.14804778200012 ], [ -122.355071798999944, 49.147463203000022 ], [ -122.355085985999921, 49.14654360100009 ], [ -122.355083415999928, 49.146392876000057 ], [ -122.355073788000013, 49.145825970000018 ], [ -122.35506524699997, 49.145322195000112 ], [ -122.355064995999925, 49.145307997000046 ], [ -122.355061314999929, 49.145151134000088 ], [ -122.355053878999954, 49.144837201000058 ], [ -122.355058528999947, 49.144800765000127 ], [ -122.355154699999929, 49.144041115000036 ], [ -122.355740901999965, 49.143383989000085 ], [ -122.356594984999958, 49.142543207000102 ], [ -122.356904494999966, 49.142319286000067 ], [ -122.357148104, 49.142044513000037 ], [ -122.357217017999972, 49.141865702000075 ], [ -122.357420822, 49.141573301000022 ], [ -122.357599887999967, 49.141405390000102 ], [ -122.357883952999899, 49.141267463000055 ], [ -122.357919097999954, 49.141250407000086 ], [ -122.358379208999978, 49.141204704000067 ], [ -122.358932005999975, 49.1412703 ], [ -122.359283188999939, 49.141248793000102 ], [ -122.359406001000011, 49.141343099000068 ], [ -122.359454987999982, 49.141418691000091 ], [ -122.359584297999959, 49.142392910000048 ], [ -122.35968498799997, 49.142910087000082 ], [ -122.359819594999976, 49.143204906000072 ], [ -122.360034308999928, 49.143526696000094 ], [ -122.36016151299998, 49.143640896000115 ], [ -122.360150487999945, 49.144497191000021 ], [ -122.36056181, 49.144499470000021 ], [ -122.360558338999951, 49.144769315000111 ], [ -122.361380991999951, 49.144773868000136 ], [ -122.361377523999963, 49.145043712000088 ], [ -122.361404483999962, 49.145043861000062 ], [ -122.361467879999935, 49.144233643000028 ], [ -122.361881901999965, 49.144356209000158 ], [ -122.361894261999979, 49.144360772000091 ], [ -122.3622576, 49.144495098000093 ], [ -122.362680502999979, 49.144696892000049 ], [ -122.363050491999971, 49.144926586000061 ], [ -122.363495417999971, 49.145163399000126 ], [ -122.364074593999987, 49.145628208000161 ], [ -122.364752032999888, 49.146331987000096 ], [ -122.364965991999895, 49.146554293000058 ], [ -122.365106290999947, 49.146777216000054 ], [ -122.365436810999967, 49.1469686 ], [ -122.365928201999935, 49.147136603000035 ], [ -122.366959193999975, 49.147329204000073 ], [ -122.36749010599999, 49.147500296000061 ], [ -122.367984185999916, 49.147581905000081 ], [ -122.368180563999957, 49.147586045000033 ], [ -122.370826527999924, 49.147641966000016 ], [ -122.37126921, 49.147651306000078 ], [ -122.371533171999914, 49.147695834000039 ], [ -122.371556100999911, 49.147699687000106 ], [ -122.376184998999989, 49.149050894000069 ], [ -122.378559307999979, 49.150023213000075 ], [ -122.378887785999922, 49.150118907000021 ], [ -122.379825112999981, 49.1502838930001 ], [ -122.381478648999959, 49.150523274000072 ], [ -122.381933390999947, 49.150589110000077 ], [ -122.386860294999934, 49.151446898000074 ], [ -122.387385098, 49.151574488000023 ], [ -122.387740995999948, 49.151688305000114 ], [ -122.387975721999908, 49.1517942770001 ], [ -122.39126731, 49.153280295000023 ], [ -122.39213891499999, 49.153763787000059 ], [ -122.392300919999983, 49.153832309000052 ], [ -122.393672609999939, 49.154974300000084 ], [ -122.394934392999957, 49.155554595000119 ], [ -122.396027677999967, 49.156025692000128 ], [ -122.396920704999943, 49.156322389000081 ], [ -122.396958603999934, 49.156340574000076 ], [ -122.397949371999943, 49.156815602000073 ], [ -122.399308697999956, 49.157712793000037 ], [ -122.399387958999924, 49.157760703000108 ], [ -122.399809132999934, 49.158015269000032 ], [ -122.399994427999943, 49.158109686000039 ], [ -122.400244466999965, 49.158237118000066 ], [ -122.400671419999952, 49.158355059000087 ], [ -122.40097344299997, 49.158297540000092 ], [ -122.401684464999931, 49.159210002000101 ], [ -122.401480604, 49.159292429000118 ], [ -122.401337405999953, 49.159459781000066 ], [ -122.401301883999935, 49.160198098000173 ], [ -122.401294676999967, 49.160347936000051 ], [ -122.401293679999966, 49.160737543000046 ], [ -122.401292321999932, 49.161268244000048 ], [ -122.401289783999914, 49.162235976000069 ], [ -122.40027002399998, 49.162229378000028 ], [ -122.399995802999982, 49.162227600000065 ], [ -122.397342102999971, 49.16221031500011 ], [ -122.396870895999896, 49.162856897000047 ], [ -122.394745391999962, 49.164607912000108 ], [ -122.394340897999953, 49.16494109300011 ], [ -122.392998679999934, 49.166046696000123 ], [ -122.391573713999946, 49.166911095000074 ], [ -122.389537013999956, 49.167998657000069 ], [ -122.388854895999955, 49.168362898000019 ], [ -122.387743400999938, 49.168846585000011 ], [ -122.386671306999929, 49.169192715000079 ], [ -122.386484877999962, 49.169242100000112 ], [ -122.385931774999975, 49.169388693000037 ], [ -122.385380628999954, 49.16956220400008 ], [ -122.383935227, 49.169928207000048 ], [ -122.383631273999953, 49.170044197000038 ], [ -122.382283616, 49.170440603000081 ], [ -122.382095011999965, 49.171770787000114 ], [ -122.382084243999927, 49.172942068000083 ], [ -122.382080681999952, 49.173328854000026 ], [ -122.382077309999957, 49.173697666000081 ], [ -122.38207525699994, 49.173922493000063 ], [ -122.382062099999956, 49.175352720000063 ], [ -122.382060469999928, 49.175532629000017 ], [ -122.382055893999961, 49.176027368000085 ], [ -122.382049493999915, 49.176725499000042 ], [ -122.38111979199999, 49.176729300000062 ], [ -122.38025511499994, 49.176732820000083 ], [ -122.380017104999965, 49.17673378900006 ], [ -122.37937679099997, 49.176732497000025 ], [ -122.378869001999959, 49.176731441000101 ], [ -122.37661880099995, 49.176726808000069 ], [ -122.373408258999987, 49.1767201010001 ], [ -122.371084884999931, 49.176715196000096 ], [ -122.37098721699999, 49.174803906000136 ] ], [ [ -122.378067248999969, 49.153457348000039 ], [ -122.378111590999964, 49.15288814200003 ], [ -122.377511788999954, 49.152867951000118 ], [ -122.377543740999926, 49.152457870000077 ], [ -122.376196869999944, 49.152412518000077 ], [ -122.376224318999974, 49.152060348000106 ], [ -122.375418264999894, 49.152033198000055 ], [ -122.375441119999948, 49.151740018000041 ], [ -122.374403846999954, 49.15170507200007 ], [ -122.374466006999938, 49.150907924000094 ], [ -122.373361353999911, 49.150870696000034 ], [ -122.37333604899996, 49.151195114000068 ], [ -122.367865950999928, 49.151010598000049 ], [ -122.367921023999955, 49.15030559200008 ], [ -122.364329972999954, 49.150184307000089 ], [ -122.364358061999923, 49.14982508 ], [ -122.363483504999948, 49.149795523000073 ], [ -122.363470550999963, 49.149961140000102 ], [ -122.363854311999887, 49.149974111000084 ], [ -122.36372152899996, 49.151671963000069 ], [ -122.367639885, 49.151804313000085 ], [ -122.367498590999929, 49.153612817000123 ], [ -122.369882220999941, 49.153693259000079 ], [ -122.369829990999932, 49.154362164000126 ], [ -122.373083451999889, 49.154471876000116 ], [ -122.373080023999989, 49.154515808000056 ], [ -122.37385806199994, 49.154542030000137 ], [ -122.373953464999929, 49.153318797000068 ], [ -122.378067248999969, 49.153457348000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108349583", "BldgCostT": "73988333", "sL_LossRatio": "0.900389870950184", "sL_AssetLoss": "316002", "sL_BldgLoss": "284525", "sL_StrLoss": "202826", "sL_NStrLoss": "81699", "sL_ContLoss": "31477", "geom_point": "0101000020E610000012914878CE965EC0D4DFBF3755964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.367236194999975, 49.183707418000097 ], [ -122.366944126999954, 49.183515323000073 ], [ -122.366938599999969, 49.183511700000089 ], [ -122.366648911999931, 49.183409085000108 ], [ -122.364776203999966, 49.182863715000096 ], [ -122.364563506999957, 49.182809109000061 ], [ -122.364580412999956, 49.182593056000087 ], [ -122.36571535299997, 49.182631369000056 ], [ -122.365766396999959, 49.181978783000062 ], [ -122.367028168999937, 49.182021364000057 ], [ -122.367031846999936, 49.181974314000065 ], [ -122.372505583999938, 49.182158864000023 ], [ -122.37247465199998, 49.182555050000119 ], [ -122.374131401999975, 49.182610853000014 ], [ -122.374286527999914, 49.180622985000085 ], [ -122.375827475999984, 49.180674864000125 ], [ -122.375889393999941, 49.179881046000077 ], [ -122.375056731999948, 49.179853015000063 ], [ -122.375071701999985, 49.179661126000063 ], [ -122.374516517999936, 49.179658121000045 ], [ -122.374525768999931, 49.17892408200008 ], [ -122.373608384999955, 49.17889318700005 ], [ -122.373599710999898, 49.179004329000037 ], [ -122.371134730999984, 49.178921275000029 ], [ -122.371100428999981, 49.179360488000022 ], [ -122.369452595000027, 49.179304934000072 ], [ -122.369395796999953, 49.180031826000103 ], [ -122.363922322999912, 49.17984711800009 ], [ -122.363960117999966, 49.179364162000127 ], [ -122.363327731999973, 49.179342804000051 ], [ -122.36336226399996, 49.178901606000039 ], [ -122.36124738699999, 49.178830149000099 ], [ -122.361308022999964, 49.178055848000092 ], [ -122.360554685999915, 49.178030384000166 ], [ -122.360540533999981, 49.178211045000133 ], [ -122.360368479999948, 49.178205229000099 ], [ -122.360157369999968, 49.180900247000082 ], [ -122.359012653999969, 49.180861542000045 ], [ -122.358692790999939, 49.180652792000025 ], [ -122.358047699999972, 49.180188796000039 ], [ -122.356579695999955, 49.179132899000059 ], [ -122.355757322, 49.178808504000088 ], [ -122.355473541999956, 49.178832305000064 ], [ -122.355197986999926, 49.178855388000095 ], [ -122.35453549499999, 49.179045694000081 ], [ -122.353332214999966, 49.180164894000029 ], [ -122.352881286999917, 49.180508306000029 ], [ -122.352704279999926, 49.180605641000099 ], [ -122.352527512999956, 49.18070283400003 ], [ -122.352461220999928, 49.180739298000056 ], [ -122.3521979099999, 49.180806988 ], [ -122.351820998999983, 49.180854593000085 ], [ -122.351138194999976, 49.180726009000082 ], [ -122.350568421, 49.180591306000046 ], [ -122.349752899999913, 49.180231994000067 ], [ -122.349666411999976, 49.180169383000113 ], [ -122.348696186999959, 49.179467010000067 ], [ -122.347720494999948, 49.178648904000021 ], [ -122.346341402999954, 49.177570993000103 ], [ -122.345852992999966, 49.177327304000087 ], [ -122.345455694999913, 49.177180399000065 ], [ -122.343679781, 49.176682912000039 ], [ -122.343204471999954, 49.176585695000021 ], [ -122.342684696999953, 49.176566196000067 ], [ -122.342129804999956, 49.176643797000104 ], [ -122.33976800799995, 49.177577486000111 ], [ -122.339259679999884, 49.177689993000079 ], [ -122.338545203999914, 49.177772984000107 ], [ -122.337927694999948, 49.177688010000111 ], [ -122.336480394999953, 49.177339493000062 ], [ -122.335268696999918, 49.176837710000086 ], [ -122.332115304999945, 49.175421599000032 ], [ -122.331354335999933, 49.175061238000055 ], [ -122.331790185000017, 49.173885103000131 ], [ -122.332233715999905, 49.173608806000118 ], [ -122.332963910999979, 49.173352390000055 ], [ -122.333200171000016, 49.17313615300008 ], [ -122.334344558999959, 49.173175128000011 ], [ -122.334451937999944, 49.171813799000084 ], [ -122.334594635999949, 49.171818659000046 ], [ -122.334629320999937, 49.171378890000021 ], [ -122.333482335000014, 49.171339828000058 ], [ -122.333483034999944, 49.171330943000122 ], [ -122.333010926999975, 49.17131486100012 ], [ -122.332802460000025, 49.171200983000041 ], [ -122.330757802999969, 49.170083893000076 ], [ -122.330598369999905, 49.16995007800007 ], [ -122.33065829499999, 49.16919108900008 ], [ -122.330002739999927, 49.169168740000082 ], [ -122.330286655999927, 49.165573081000076 ], [ -122.331197227999922, 49.165604123000065 ], [ -122.331293881999926, 49.164379601000057 ], [ -122.334989303, 49.164505505000122 ], [ -122.334989691999951, 49.164500576000108 ], [ -122.332275418, 49.164408113000015 ], [ -122.332559129999979, 49.160812421000045 ], [ -122.333593671999964, 49.160847672000081 ], [ -122.33365042299998, 49.160128146000076 ], [ -122.336426798999952, 49.160222698000069 ], [ -122.33643406299997, 49.160130520000074 ], [ -122.336621633999982, 49.157750411000087 ], [ -122.336881932999944, 49.157759272000142 ], [ -122.336916079999952, 49.157325902000082 ], [ -122.336491410999912, 49.157311445000069 ], [ -122.33672099899999, 49.154397931000119 ], [ -122.33852411499997, 49.154567412000048 ], [ -122.338531899999978, 49.156672475000043 ], [ -122.337788603999954, 49.156754416000112 ], [ -122.33750140599993, 49.156900486000112 ], [ -122.33738911899998, 49.157021092000022 ], [ -122.337353487999977, 49.157211002000082 ], [ -122.337464116999925, 49.157477905000043 ], [ -122.337668485999984, 49.157739088000042 ], [ -122.338455087999989, 49.158337302000035 ], [ -122.338656011999987, 49.158624400000107 ], [ -122.338685903999988, 49.15901208700005 ], [ -122.338677895999922, 49.161080390000116 ], [ -122.338661992999931, 49.161891983000025 ], [ -122.34074427799996, 49.161893361000068 ], [ -122.345338818999934, 49.161896238000026 ], [ -122.34721828899994, 49.161897346000089 ], [ -122.348315647999954, 49.161897984000099 ], [ -122.34971550099999, 49.161898803000078 ], [ -122.353585601999939, 49.161901110000038 ], [ -122.360298124999957, 49.161941450000064 ], [ -122.360286803999912, 49.16316826600012 ], [ -122.359408894999945, 49.163138573000033 ], [ -122.359404950999973, 49.163188916000109 ], [ -122.355524934999963, 49.163057598000066 ], [ -122.355438144999979, 49.164164508000034 ], [ -122.353470574999946, 49.164097863000038 ], [ -122.353294379999952, 49.166343654000094 ], [ -122.352020366999952, 49.166300481000107 ], [ -122.35201792699992, 49.16633158500008 ], [ -122.350915427999936, 49.166294211000043 ], [ -122.350877804999968, 49.166773410000076 ], [ -122.349636106999981, 49.166731306000045 ], [ -122.349628955999961, 49.166822341000056 ], [ -122.348528473999949, 49.166785013000066 ], [ -122.348502826999919, 49.167111468000122 ], [ -122.347492309999922, 49.167077181000145 ], [ -122.347489785999969, 49.167109292000127 ], [ -122.347290259999937, 49.16710252100011 ], [ -122.347229117999987, 49.16788049600013 ], [ -122.342035752999919, 49.167704127000029 ], [ -122.341934764999948, 49.168987220000112 ], [ -122.34188374199999, 49.168985486000125 ], [ -122.341784718999961, 49.170243514000063 ], [ -122.3426415429999, 49.170272630000099 ], [ -122.342561161000035, 49.171294011000057 ], [ -122.344453613999917, 49.171358294000051 ], [ -122.344507592999946, 49.17067203800012 ], [ -122.346732050999918, 49.170747556000045 ], [ -122.346733800999985, 49.170725292000022 ], [ -122.352206131999978, 49.170910876000036 ], [ -122.3519238799999, 49.174506563000115 ], [ -122.351752385999987, 49.174500751000046 ], [ -122.351686597999944, 49.17533873499999 ], [ -122.352499497999958, 49.17536628000007 ], [ -122.352430660999985, 49.17624323800009 ], [ -122.352541448999943, 49.176246991000092 ], [ -122.352719876999956, 49.173973746000044 ], [ -122.35285108699992, 49.173978192000035 ], [ -122.353074219999925, 49.171134946000095 ], [ -122.358546625999978, 49.171320207000079 ], [ -122.35852831399994, 49.171553907000039 ], [ -122.35950320699996, 49.171586882000057 ], [ -122.359388949999925, 49.173045382000069 ], [ -122.359375773, 49.173213582000123 ], [ -122.359931861999911, 49.17323238700007 ], [ -122.35994582, 49.173054191000091 ], [ -122.360156775999897, 49.170360814000063 ], [ -122.360210015999911, 49.170362614000062 ], [ -122.360268612999974, 49.169614415000083 ], [ -122.365740867999932, 49.169799312000059 ], [ -122.365459666999982, 49.173395041000049 ], [ -122.36540642199999, 49.173393243000064 ], [ -122.36538533, 49.173662929000038 ], [ -122.365591361000028, 49.173669885000024 ], [ -122.365687634000011, 49.17243885300006 ], [ -122.366919735999943, 49.172480443000097 ], [ -122.367096200999953, 49.170223081000067 ], [ -122.370958448999943, 49.170353360000043 ], [ -122.370905460999936, 49.170850293000058 ], [ -122.370953671, 49.173179716000092 ], [ -122.37098721699999, 49.174803906000136 ], [ -122.371084884999931, 49.176715196000096 ], [ -122.373408258999987, 49.1767201010001 ], [ -122.37661880099995, 49.176726808000069 ], [ -122.378869001999959, 49.176731441000101 ], [ -122.37937679099997, 49.176732497000025 ], [ -122.380017104999965, 49.17673378900006 ], [ -122.380012428999947, 49.177878416000112 ], [ -122.380002829999938, 49.180244190000096 ], [ -122.380000564999989, 49.180801924000036 ], [ -122.379996450999968, 49.181809303000101 ], [ -122.37999385399992, 49.182447950000025 ], [ -122.379987418, 49.18403589900003 ], [ -122.387203097999944, 49.184046589000026 ], [ -122.388795421999959, 49.184048880000091 ], [ -122.389504399999964, 49.184049909000123 ], [ -122.390362185999962, 49.188092786000055 ], [ -122.390102300999928, 49.188098610000097 ], [ -122.388921115999921, 49.188430399000026 ], [ -122.387113708999948, 49.189297996000064 ], [ -122.387045657, 49.189311585000048 ], [ -122.3864068889999, 49.189439125000085 ], [ -122.380060409999913, 49.190705981000058 ], [ -122.378746104999976, 49.190948402000103 ], [ -122.378370203999978, 49.190964593000118 ], [ -122.377951601999911, 49.190930716000018 ], [ -122.377549096999942, 49.190812609000069 ], [ -122.377213289999986, 49.190631013000079 ], [ -122.376540501999955, 49.189914408000057 ], [ -122.375945687999916, 49.188972394000103 ], [ -122.375728389999949, 49.188679310000055 ], [ -122.375456404999937, 49.188437705000041 ], [ -122.375307333999984, 49.188364353000075 ], [ -122.375193531999955, 49.188308362000079 ], [ -122.374864409999972, 49.1881464000001 ], [ -122.371788871999968, 49.187089554000046 ], [ -122.371607683999983, 49.187027294000039 ], [ -122.371043349999965, 49.186440248000103 ], [ -122.370671102999921, 49.186052988000057 ], [ -122.370032805999955, 49.18561689800007 ], [ -122.368695601999946, 49.184942693000025 ], [ -122.36850387699999, 49.184813695000116 ], [ -122.367236194999975, 49.183707418000097 ] ], [ [ -122.335509409999986, 49.176724188000051 ], [ -122.335609222999949, 49.175458492000089 ], [ -122.335191487, 49.17544427200005 ], [ -122.335091663999947, 49.176709967000114 ], [ -122.335509409999986, 49.176724188000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.81104033970276", "sL_AssetLoss": "14130", "sL_BldgLoss": "11460", "sL_StrLoss": "6030", "sL_NStrLoss": "5430", "sL_ContLoss": "2670", "geom_point": "0101000020E6100000DA3F89AE4F955EC06E7EECC334944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33390359399999, 49.155538401000037 ], [ -122.333788905999953, 49.154782205000068 ], [ -122.333874081999937, 49.154548604000055 ], [ -122.334256349999947, 49.154327405000096 ], [ -122.334743003, 49.154275165000108 ], [ -122.334714051, 49.154642391000095 ], [ -122.334673804999952, 49.155152865000048 ], [ -122.334839195999947, 49.155158498000056 ], [ -122.334555694999949, 49.158754227000081 ], [ -122.334517912999928, 49.158752940000042 ], [ -122.334484914999948, 49.159171428000072 ], [ -122.33392387, 49.159152316000046 ], [ -122.333918754999942, 49.159217167000072 ], [ -122.333898306999956, 49.159476441000045 ], [ -122.332639404999924, 49.159433546000116 ], [ -122.33262936099996, 49.159560871000018 ], [ -122.332155963999938, 49.15954473700004 ], [ -122.332124761, 49.159940183000074 ], [ -122.330043530999959, 49.159869228000098 ], [ -122.329983212999949, 49.16063323200008 ], [ -122.329185536999972, 49.160606026000025 ], [ -122.329159102999981, 49.160511693000061 ], [ -122.329168407999987, 49.159773988000047 ], [ -122.329279900999921, 49.159658595000025 ], [ -122.329777281999966, 49.159472096000066 ], [ -122.330485111999963, 49.159367209000081 ], [ -122.331122897999975, 49.159272701000049 ], [ -122.331801785999971, 49.158818394000058 ], [ -122.331930335999957, 49.158531558 ], [ -122.332240282999962, 49.157839897000024 ], [ -122.332851489999925, 49.157267414000032 ], [ -122.332819244999939, 49.157088640000062 ], [ -122.332760516999954, 49.156763194000078 ], [ -122.332837205999923, 49.156314605000105 ], [ -122.333071258999922, 49.156053499000045 ], [ -122.333198482999975, 49.15591159100012 ], [ -122.333694407999928, 49.155716396000038 ], [ -122.33390359399999, 49.155538401000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96932833", "BldgCostT": "64963333", "sL_LossRatio": "0.775849726748297", "sL_AssetLoss": "691487", "sL_BldgLoss": "536490", "sL_StrLoss": "292210", "sL_NStrLoss": "244280", "sL_ContLoss": "154997", "geom_point": "0101000020E61000008B7FA7E229965EC01ADA5B2533934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33672099899999, 49.154397931000119 ], [ -122.336738562999983, 49.154175002000102 ], [ -122.336543308, 49.154168354000035 ], [ -122.336764662999911, 49.151359071000122 ], [ -122.336341078999951, 49.151344648000062 ], [ -122.336029631999921, 49.151334044000087 ], [ -122.336017923, 49.151153917000123 ], [ -122.335994899999918, 49.1508000890001 ], [ -122.335997, 49.150796217000035 ], [ -122.336143962999984, 49.150526236000054 ], [ -122.336585594000013, 49.14971479400009 ], [ -122.336746465999923, 49.149065539000055 ], [ -122.336761308999911, 49.149005593000041 ], [ -122.336966680999979, 49.148864160000059 ], [ -122.337175, 49.148720709000102 ], [ -122.337387980999978, 49.148632499000094 ], [ -122.337882780999976, 49.148427583000085 ], [ -122.33818261699993, 49.148303405 ], [ -122.338275044999961, 49.148241293000083 ], [ -122.338498105999989, 49.14809142400005 ], [ -122.339151314999953, 49.147652608000108 ], [ -122.339320507, 49.147283709000085 ], [ -122.339429491999908, 49.14723860600003 ], [ -122.339706093999979, 49.14712418900011 ], [ -122.340150098999942, 49.146776695000071 ], [ -122.340220385999984, 49.14666839300002 ], [ -122.340209351999988, 49.146601472000015 ], [ -122.340252267999972, 49.146602931000061 ], [ -122.340044580999958, 49.149241577000069 ], [ -122.340342533999973, 49.149243279000046 ], [ -122.340346116999953, 49.148973437000087 ], [ -122.340757474999975, 49.148975785000069 ], [ -122.34076463699995, 49.148436098000033 ], [ -122.341175990999943, 49.148438446000092 ], [ -122.341179568999934, 49.148168602000105 ], [ -122.342002273999981, 49.148173293000106 ], [ -122.342005846999911, 49.147903450000101 ], [ -122.342519064, 49.147906373000112 ], [ -122.342588089999978, 49.14702882300007 ], [ -122.342840064999933, 49.147037388000051 ], [ -122.342842823999959, 49.146828760000105 ], [ -122.343665507, 49.146833439000012 ], [ -122.343669070999908, 49.146563595000032 ], [ -122.344080409999933, 49.146565933000048 ], [ -122.344083970999975, 49.146296088000099 ], [ -122.344495308999953, 49.146298425000055 ], [ -122.344498868999949, 49.146028581000053 ], [ -122.345012154999921, 49.146031494000063 ], [ -122.34501845100003, 49.145951378000056 ], [ -122.350487863999959, 49.14613705700004 ], [ -122.35048319099991, 49.146196585000041 ], [ -122.350667080000022, 49.146202823000088 ], [ -122.350668900999935, 49.146063443000109 ], [ -122.35134135499996, 49.146067224000049 ], [ -122.35146694, 49.144466652000126 ], [ -122.35145885299994, 49.144466378000118 ], [ -122.351476927999911, 49.1442360120001 ], [ -122.351038388999939, 49.144221138000027 ], [ -122.350956808999968, 49.145260771000075 ], [ -122.350817275999987, 49.145256039000138 ], [ -122.350777728999915, 49.145759975000047 ], [ -122.345308359999976, 49.145574311000146 ], [ -122.345323436999948, 49.145382483000056 ], [ -122.344552544999928, 49.14535629100002 ], [ -122.344584341999962, 49.144951800000065 ], [ -122.343575135999941, 49.144917503000038 ], [ -122.343699708999935, 49.14479990300002 ], [ -122.344155513999937, 49.144532096000077 ], [ -122.3449124, 49.144329906000046 ], [ -122.3457895, 49.144334203000014 ], [ -122.346180965999906, 49.144410955000112 ], [ -122.347772715999895, 49.144723008000021 ], [ -122.348857090999928, 49.144730114000041 ], [ -122.350066000999945, 49.144566305000055 ], [ -122.350406160999952, 49.144374901000027 ], [ -122.351364500000017, 49.143835686000031 ], [ -122.351925421999965, 49.143875094000052 ], [ -122.352336680999912, 49.143903999000059 ], [ -122.352750597999915, 49.143744505000029 ], [ -122.35290398399998, 49.143546606000044 ], [ -122.353000285999926, 49.143179551000152 ], [ -122.353061715999914, 49.14294550700005 ], [ -122.353500821999944, 49.142544591000032 ], [ -122.353659103999959, 49.14240009100007 ], [ -122.353910811, 49.142005594000125 ], [ -122.354107540999962, 49.141984658000098 ], [ -122.354472793999946, 49.141945804000045 ], [ -122.354574086999946, 49.141870444000091 ], [ -122.354832799999954, 49.141677990000048 ], [ -122.354988205999916, 49.14137319400016 ], [ -122.354992616999965, 49.141058500000071 ], [ -122.354889818999965, 49.140822226000054 ], [ -122.355018761999958, 49.140771185000062 ], [ -122.355276303999929, 49.140669224000121 ], [ -122.355369763999946, 49.140632254000074 ], [ -122.356617253999943, 49.140106709000122 ], [ -122.35680317899994, 49.140060715000061 ], [ -122.357039378999957, 49.140055105000023 ], [ -122.357185483999956, 49.140079904000054 ], [ -122.357384882999952, 49.140159705000016 ], [ -122.357727831999966, 49.140356433000093 ], [ -122.359283188999939, 49.141248793000102 ], [ -122.358932005999975, 49.1412703 ], [ -122.358379208999978, 49.141204704000067 ], [ -122.357919097999954, 49.141250407000086 ], [ -122.357883952999899, 49.141267463000055 ], [ -122.357599887999967, 49.141405390000102 ], [ -122.357420822, 49.141573301000022 ], [ -122.357217017999972, 49.141865702000075 ], [ -122.357148104, 49.142044513000037 ], [ -122.356904494999966, 49.142319286000067 ], [ -122.356594984999958, 49.142543207000102 ], [ -122.355740901999965, 49.143383989000085 ], [ -122.355154699999929, 49.144041115000036 ], [ -122.355058528999947, 49.144800765000127 ], [ -122.355053878999954, 49.144837201000058 ], [ -122.355061314999929, 49.145151134000088 ], [ -122.355064995999925, 49.145307997000046 ], [ -122.35506524699997, 49.145322195000112 ], [ -122.355073788000013, 49.145825970000018 ], [ -122.355083415999928, 49.146392876000057 ], [ -122.355085985999921, 49.14654360100009 ], [ -122.355071798999944, 49.147463203000022 ], [ -122.355062744999913, 49.14804778200012 ], [ -122.35505763, 49.148380599000134 ], [ -122.355056698999988, 49.148439901000081 ], [ -122.354998316999939, 49.148625400000071 ], [ -122.354967787999925, 49.148641604000019 ], [ -122.354790806, 49.14873560900007 ], [ -122.354528680999948, 49.148791607000092 ], [ -122.353741884999977, 49.148805501000083 ], [ -122.353229005999964, 49.149070194000103 ], [ -122.352868008999948, 49.149459095000097 ], [ -122.3529668, 49.150664842 ], [ -122.353032399, 49.151523288000114 ], [ -122.35292830399996, 49.151662199000043 ], [ -122.352722102999948, 49.151756191000104 ], [ -122.35257610499994, 49.151775050000047 ], [ -122.351444994999923, 49.151921115000079 ], [ -122.351058597999966, 49.152074702000128 ], [ -122.350462602, 49.152522308000108 ], [ -122.35029169799995, 49.152813104000124 ], [ -122.349752199999955, 49.153956589000053 ], [ -122.34968879399996, 49.154240204000068 ], [ -122.349704516999978, 49.154407503000087 ], [ -122.349839386, 49.154609399000115 ], [ -122.350226916999972, 49.154827208 ], [ -122.350382192999987, 49.154945089000101 ], [ -122.350414010999941, 49.155133704000058 ], [ -122.349973898999963, 49.15549910500004 ], [ -122.349767492999931, 49.155822885000092 ], [ -122.349368092999939, 49.156053600000085 ], [ -122.348100476999917, 49.156497304000048 ], [ -122.347344009999944, 49.156525701000106 ], [ -122.339958904999918, 49.156533508000088 ], [ -122.339426398999947, 49.156573890000054 ], [ -122.338531899999978, 49.156672475000043 ], [ -122.33852411499997, 49.154567412000048 ], [ -122.33672099899999, 49.154397931000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96086417", "BldgCostT": "62821667", "sL_LossRatio": "0.778199063276592", "sL_AssetLoss": "680457", "sL_BldgLoss": "529531", "sL_StrLoss": "272331", "sL_NStrLoss": "257200", "sL_ContLoss": "150926", "geom_point": "0101000020E6100000A9B8718BF9955EC0C751D2267B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.338513088999903, 49.1472409040001 ], [ -122.338516170999966, 49.147226674000116 ], [ -122.337028796999903, 49.147460792000089 ], [ -122.335862395999939, 49.147474293000045 ], [ -122.335865586999944, 49.146389194000022 ], [ -122.335280182, 49.145675195000059 ], [ -122.335274790999947, 49.14483941200006 ], [ -122.335323595999967, 49.144707704000098 ], [ -122.335387811999965, 49.144535899000047 ], [ -122.335419701999939, 49.143818598000038 ], [ -122.335614288999963, 49.143784708000126 ], [ -122.336342103999954, 49.143734605000141 ], [ -122.336707989999965, 49.143754295000072 ], [ -122.337659986999967, 49.143885904000115 ], [ -122.338476118999949, 49.143880305000039 ], [ -122.338460604999938, 49.143416488000106 ], [ -122.339733414999927, 49.143409291000047 ], [ -122.340839800999959, 49.143408192000031 ], [ -122.34136059199993, 49.143409715000111 ], [ -122.341867032999957, 49.143410448000132 ], [ -122.341970606999936, 49.143410605000014 ], [ -122.343800305999949, 49.14339870900011 ], [ -122.34459728499999, 49.143393529000072 ], [ -122.345324890999933, 49.143467840000042 ], [ -122.345761123999935, 49.143480926000024 ], [ -122.346234395999915, 49.143495115000086 ], [ -122.347002835999888, 49.1433986340001 ], [ -122.34790155, 49.143179463000102 ], [ -122.349094039999954, 49.142658392000044 ], [ -122.349793400999957, 49.142516284000109 ], [ -122.350025622999965, 49.142439428000039 ], [ -122.350429337999984, 49.142151181000024 ], [ -122.35069213599995, 49.142069056000018 ], [ -122.351030652999938, 49.14203547600011 ], [ -122.351505550999917, 49.14205751100009 ], [ -122.351897979999976, 49.142075711000054 ], [ -122.352393374999906, 49.142051933000076 ], [ -122.352700513999963, 49.141981247000068 ], [ -122.352997577999957, 49.141829058000013 ], [ -122.353605584999983, 49.141330512000145 ], [ -122.354889818999965, 49.140822226000054 ], [ -122.354992616999965, 49.141058500000071 ], [ -122.354988205999916, 49.14137319400016 ], [ -122.354832799999954, 49.141677990000048 ], [ -122.354574086999946, 49.141870444000091 ], [ -122.354472793999946, 49.141945804000045 ], [ -122.354107540999962, 49.141984658000098 ], [ -122.353910811, 49.142005594000125 ], [ -122.353659103999959, 49.14240009100007 ], [ -122.353500821999944, 49.142544591000032 ], [ -122.353061715999914, 49.14294550700005 ], [ -122.353000285999926, 49.143179551000152 ], [ -122.35290398399998, 49.143546606000044 ], [ -122.352750597999915, 49.143744505000029 ], [ -122.352336680999912, 49.143903999000059 ], [ -122.351925421999965, 49.143875094000052 ], [ -122.351364500000017, 49.143835686000031 ], [ -122.350406160999952, 49.144374901000027 ], [ -122.350066000999945, 49.144566305000055 ], [ -122.348857090999928, 49.144730114000041 ], [ -122.347772715999895, 49.144723008000021 ], [ -122.346180965999906, 49.144410955000112 ], [ -122.3457895, 49.144334203000014 ], [ -122.3449124, 49.144329906000046 ], [ -122.344155513999937, 49.144532096000077 ], [ -122.343699708999935, 49.14479990300002 ], [ -122.343575135999941, 49.144917503000038 ], [ -122.341063250999966, 49.144832100000045 ], [ -122.341076808999944, 49.144659782000048 ], [ -122.340939334, 49.144658997000121 ], [ -122.340813645000011, 49.144741815000025 ], [ -122.340811173999896, 49.144928130000061 ], [ -122.340533287999932, 49.1449265440001 ], [ -122.340513834999939, 49.144939362000066 ], [ -122.340399114, 49.144981111000085 ], [ -122.340396265999971, 49.145195625000049 ], [ -122.339984938999976, 49.145193274000022 ], [ -122.339981355999939, 49.145463117000126 ], [ -122.339570024999958, 49.145460766000014 ], [ -122.339566437999977, 49.145730610000101 ], [ -122.339155105999936, 49.145728256000048 ], [ -122.339154354999962, 49.145784761000115 ], [ -122.33989433, 49.145809939000102 ], [ -122.339833034999941, 49.146588669000103 ], [ -122.340209351999988, 49.146601472000015 ], [ -122.340220385999984, 49.14666839300002 ], [ -122.340150098999942, 49.146776695000071 ], [ -122.339706093999979, 49.14712418900011 ], [ -122.339429491999908, 49.14723860600003 ], [ -122.339320507, 49.147283709000085 ], [ -122.339151314999953, 49.147652608000108 ], [ -122.338498105999989, 49.14809142400005 ], [ -122.338498486999953, 49.148071105000085 ], [ -122.338513088999903, 49.1472409040001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145311083", "BldgCostT": "92693333", "sL_LossRatio": "0.773456744772985", "sL_AssetLoss": "925576", "sL_BldgLoss": "715893", "sL_StrLoss": "371033", "sL_NStrLoss": "344860", "sL_ContLoss": "209683", "geom_point": "0101000020E61000007B5FB6197E955EC01203A8D264924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332943272999941, 49.143842387000092 ], [ -122.332947207999922, 49.143323302000034 ], [ -122.332942707999948, 49.14297109200001 ], [ -122.332931507, 49.142096906000134 ], [ -122.332947504999979, 49.141528704000109 ], [ -122.338416890999923, 49.141533806000055 ], [ -122.338390900999968, 49.140645104000022 ], [ -122.339500681999965, 49.140653091000111 ], [ -122.339514905, 49.142614107000107 ], [ -122.341338899999954, 49.142604915000085 ], [ -122.34136059199993, 49.143409715000111 ], [ -122.340839800999959, 49.143408192000031 ], [ -122.339733414999927, 49.143409291000047 ], [ -122.338460604999938, 49.143416488000106 ], [ -122.338476118999949, 49.143880305000039 ], [ -122.337659986999967, 49.143885904000115 ], [ -122.336707989999965, 49.143754295000072 ], [ -122.336342103999954, 49.143734605000141 ], [ -122.335614288999963, 49.143784708000126 ], [ -122.335419701999939, 49.143818598000038 ], [ -122.335387811999965, 49.144535899000047 ], [ -122.335323595999967, 49.144707704000098 ], [ -122.335274790999947, 49.14483941200006 ], [ -122.335280182, 49.145675195000059 ], [ -122.335865586999944, 49.146389194000022 ], [ -122.335862395999939, 49.147474293000045 ], [ -122.334361605999902, 49.147467305000063 ], [ -122.333081496999952, 49.14744350800003 ], [ -122.332815701999948, 49.147337994000047 ], [ -122.332981694999958, 49.147093113000103 ], [ -122.332993393999914, 49.146701402000105 ], [ -122.332969796000029, 49.145505399000101 ], [ -122.332941069999904, 49.144739189000042 ], [ -122.332943272999941, 49.143842387000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116595333", "BldgCostT": "75783333", "sL_LossRatio": "0.768861093909305", "sL_AssetLoss": "849394", "sL_BldgLoss": "653066", "sL_StrLoss": "337214", "sL_NStrLoss": "315852", "sL_ContLoss": "196328", "geom_point": "0101000020E6100000D3C619DC79955EC01B0E002CDD914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.334128125999925, 49.13782020100011 ], [ -122.334267011999927, 49.137710399000106 ], [ -122.334277697999966, 49.137001390000123 ], [ -122.335508512999951, 49.137002787000071 ], [ -122.335538395999933, 49.137841209000051 ], [ -122.337158502999969, 49.137843197000066 ], [ -122.338042903999934, 49.137839002000071 ], [ -122.338315995999963, 49.137783412000019 ], [ -122.338377914999953, 49.139556687000059 ], [ -122.338379105999977, 49.140202995000024 ], [ -122.338390900999968, 49.140645104000022 ], [ -122.338416890999923, 49.141533806000055 ], [ -122.332947504999979, 49.141528704000109 ], [ -122.332915995999954, 49.140206211000084 ], [ -122.332912681999943, 49.139970007000045 ], [ -122.332772781999893, 49.139536029000084 ], [ -122.332748635999948, 49.13946112900009 ], [ -122.332721108999976, 49.139375708000024 ], [ -122.332712580999925, 49.138386942000068 ], [ -122.332709416999947, 49.138018351000028 ], [ -122.332707896999949, 49.137839293000091 ], [ -122.333916119999955, 49.137849894000084 ], [ -122.334128125999925, 49.13782020100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117901834", "BldgCostT": "80838334", "sL_LossRatio": "0.815581507188539", "sL_AssetLoss": "696595", "sL_BldgLoss": "568130", "sL_StrLoss": "268090", "sL_NStrLoss": "300040", "sL_ContLoss": "128465", "geom_point": "0101000020E61000005C32F92C30955EC0C77DCC83CB914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.331501492999976, 49.14091699500004 ], [ -122.331506517, 49.140210415000062 ], [ -122.330886411999955, 49.140209091000017 ], [ -122.330008655999961, 49.140207231000083 ], [ -122.330007901999934, 49.14020722700009 ], [ -122.329665955999957, 49.140206506000077 ], [ -122.329364333999976, 49.140205864000073 ], [ -122.328911881999971, 49.140204904 ], [ -122.328905223999953, 49.139821033000075 ], [ -122.328897586999929, 49.139380033000087 ], [ -122.328876107999946, 49.138140400000047 ], [ -122.328883585999932, 49.137750297000103 ], [ -122.328910579999942, 49.13692199700003 ], [ -122.332468478999942, 49.136911799000146 ], [ -122.332705716999953, 49.136946006000173 ], [ -122.33270676699999, 49.137377848000078 ], [ -122.332707896999949, 49.137839293000091 ], [ -122.332709416999947, 49.138018351000028 ], [ -122.332712580999925, 49.138386942000068 ], [ -122.332721108999976, 49.139375708000024 ], [ -122.332748635999948, 49.13946112900009 ], [ -122.332772781999893, 49.139536029000084 ], [ -122.332912681999943, 49.139970007000045 ], [ -122.332915995999954, 49.140206211000084 ], [ -122.332947504999979, 49.141528704000109 ], [ -122.332931507, 49.142096906000134 ], [ -122.331615794999919, 49.14209170600008 ], [ -122.33149489199999, 49.141661303000035 ], [ -122.331501492999976, 49.14091699500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91283333", "BldgCostT": "59093333", "sL_LossRatio": "0.733090194600705", "sL_AssetLoss": "743060", "sL_BldgLoss": "544730", "sL_StrLoss": "269630", "sL_NStrLoss": "275100", "sL_ContLoss": "198330", "geom_point": "0101000020E61000001E8AC8D118955EC0023DDC272A924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.328991280999944, 49.14310731100008 ], [ -122.328993399999931, 49.142385394 ], [ -122.32624518799993, 49.142378992000019 ], [ -122.326245348999961, 49.14208096600008 ], [ -122.326245424999982, 49.141946061000048 ], [ -122.326245582999931, 49.141622260000055 ], [ -122.326246286999933, 49.140213908000078 ], [ -122.327321816000023, 49.140208500000035 ], [ -122.328130603999938, 49.140204452000042 ], [ -122.328617391999927, 49.140202001000041 ], [ -122.328800655999956, 49.140203811000077 ], [ -122.328911881999971, 49.140204904 ], [ -122.329364333999976, 49.140205864000073 ], [ -122.329665955999957, 49.140206506000077 ], [ -122.330007901999934, 49.14020722700009 ], [ -122.330008655999961, 49.140207231000083 ], [ -122.330886411999955, 49.140209091000017 ], [ -122.331506517, 49.140210415000062 ], [ -122.331501492999976, 49.14091699500004 ], [ -122.33149489199999, 49.141661303000035 ], [ -122.331615794999919, 49.14209170600008 ], [ -122.332931507, 49.142096906000134 ], [ -122.332942707999948, 49.14297109200001 ], [ -122.332947207999922, 49.143323302000034 ], [ -122.332943272999941, 49.143842387000092 ], [ -122.330659308999927, 49.143838862000031 ], [ -122.33017943199998, 49.143838113000051 ], [ -122.330037197999957, 49.143837908000123 ], [ -122.32908498499999, 49.143829808000106 ], [ -122.328968590999978, 49.143828502000055 ], [ -122.328991280999944, 49.14310731100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147725416", "BldgCostT": "89881666", "sL_LossRatio": "0.750426127950264", "sL_AssetLoss": "911698", "sL_BldgLoss": "684162", "sL_StrLoss": "351936", "sL_NStrLoss": "332226", "sL_ContLoss": "227536", "geom_point": "0101000020E61000002F3264E9C1945EC065C64FA142924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.319764691999978, 49.142381887000106 ], [ -122.319792298999971, 49.141894305000044 ], [ -122.321159528999914, 49.141993302000103 ], [ -122.321696109999976, 49.14202070900005 ], [ -122.321757879999893, 49.142020612000096 ], [ -122.322676414999961, 49.142019357000017 ], [ -122.323156430999973, 49.142018729000036 ], [ -122.324486221999948, 49.14201690200008 ], [ -122.324492509999985, 49.14110490300002 ], [ -122.324505895999906, 49.140205784000067 ], [ -122.325182606999931, 49.140208953000126 ], [ -122.326246286999933, 49.140213908000078 ], [ -122.326245582999931, 49.141622260000055 ], [ -122.326245424999982, 49.141946061000048 ], [ -122.326245348999961, 49.14208096600008 ], [ -122.32624518799993, 49.142378992000019 ], [ -122.328993399999931, 49.142385394 ], [ -122.328991280999944, 49.14310731100008 ], [ -122.328968590999978, 49.143828502000055 ], [ -122.328509179999955, 49.143829897000089 ], [ -122.327423499999952, 49.143833096000016 ], [ -122.326710103000011, 49.143835208000091 ], [ -122.324612341999966, 49.143833140000034 ], [ -122.324467688999931, 49.143832997000111 ], [ -122.323258305999957, 49.143831796000065 ], [ -122.321801553999975, 49.143831615000131 ], [ -122.320444216999988, 49.143831413000036 ], [ -122.31989567899997, 49.143831319000128 ], [ -122.319686994999969, 49.143831309000028 ], [ -122.319705138999907, 49.143464560000048 ], [ -122.319721310999938, 49.143137610000096 ], [ -122.319764691999978, 49.142381887000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201233167", "BldgCostT": "132996667", "sL_LossRatio": "0.779772831515516", "sL_AssetLoss": "978921", "sL_BldgLoss": "763336", "sL_StrLoss": "393018", "sL_NStrLoss": "370318", "sL_ContLoss": "215585", "geom_point": "0101000020E61000007E916D6CB8945EC0C2941ED99E924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.31615969799995, 49.145610696000062 ], [ -122.317587990999982, 49.145632605000067 ], [ -122.318065667000013, 49.145462373000029 ], [ -122.318079791999963, 49.145342906000025 ], [ -122.318244896999957, 49.145248488000064 ], [ -122.319865218999922, 49.145234602000102 ], [ -122.319913401999941, 49.144314097000027 ], [ -122.319728794999918, 49.143920409000074 ], [ -122.319686994999969, 49.143831309000028 ], [ -122.31989567899997, 49.143831319000128 ], [ -122.320444216999988, 49.143831413000036 ], [ -122.321801553999975, 49.143831615000131 ], [ -122.323258305999957, 49.143831796000065 ], [ -122.324467688999931, 49.143832997000111 ], [ -122.324612341999966, 49.143833140000034 ], [ -122.326710103000011, 49.143835208000091 ], [ -122.327423499999952, 49.143833096000016 ], [ -122.328509179999955, 49.143829897000089 ], [ -122.328968590999978, 49.143828502000055 ], [ -122.32908498499999, 49.143829808000106 ], [ -122.330037197999957, 49.143837908000123 ], [ -122.33017943199998, 49.143838113000051 ], [ -122.330659308999927, 49.143838862000031 ], [ -122.332943272999941, 49.143842387000092 ], [ -122.332941069999904, 49.144739189000042 ], [ -122.332746208999964, 49.144776699000069 ], [ -122.33180680199996, 49.144779809000084 ], [ -122.330689989999939, 49.144773310000062 ], [ -122.329765112999951, 49.14478410600001 ], [ -122.329579017999919, 49.1448669930001 ], [ -122.329512803999947, 49.14500980600009 ], [ -122.329510514999967, 49.145122937000103 ], [ -122.329496198999948, 49.14582859800003 ], [ -122.329498101999931, 49.146672399000039 ], [ -122.327874405999964, 49.146661105000121 ], [ -122.327113993999902, 49.146498108000053 ], [ -122.326300295999928, 49.146419001000076 ], [ -122.325774103999947, 49.146260391000062 ], [ -122.325159392, 49.146023111000019 ], [ -122.324885900999945, 49.146014596000072 ], [ -122.32384099699999, 49.146310593000067 ], [ -122.323804197999934, 49.147383803000011 ], [ -122.322534655999959, 49.147385203000049 ], [ -122.321588431999956, 49.147386259000051 ], [ -122.319202401999945, 49.147388858000078 ], [ -122.316063891999974, 49.147392208000035 ], [ -122.316131878, 49.145980325000089 ], [ -122.316134015999978, 49.145936098000064 ], [ -122.31615969799995, 49.145610696000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79803917", "BldgCostT": "54301667", "sL_LossRatio": "0.848136143040245", "sL_AssetLoss": "390883", "sL_BldgLoss": "331522", "sL_StrLoss": "200530", "sL_NStrLoss": "130992", "sL_ContLoss": "59361", "geom_point": "0101000020E61000005F6A426214955EC077E57120BD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323804197999934, 49.147383803000011 ], [ -122.32384099699999, 49.146310593000067 ], [ -122.324885900999945, 49.146014596000072 ], [ -122.325159392, 49.146023111000019 ], [ -122.325774103999947, 49.146260391000062 ], [ -122.326300295999928, 49.146419001000076 ], [ -122.327113993999902, 49.146498108000053 ], [ -122.327874405999964, 49.146661105000121 ], [ -122.329498101999931, 49.146672399000039 ], [ -122.329496198999948, 49.14582859800003 ], [ -122.329510514999967, 49.145122937000103 ], [ -122.329512803999947, 49.14500980600009 ], [ -122.329579017999919, 49.1448669930001 ], [ -122.329765112999951, 49.14478410600001 ], [ -122.330689989999939, 49.144773310000062 ], [ -122.33180680199996, 49.144779809000084 ], [ -122.332746208999964, 49.144776699000069 ], [ -122.332941069999904, 49.144739189000042 ], [ -122.332969796000029, 49.145505399000101 ], [ -122.332993393999914, 49.146701402000105 ], [ -122.332981694999958, 49.147093113000103 ], [ -122.332815701999948, 49.147337994000047 ], [ -122.332506883999898, 49.147428398000073 ], [ -122.330855193000019, 49.147423494000087 ], [ -122.323804197999934, 49.147383803000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111030499", "BldgCostT": "73369999", "sL_LossRatio": "0.785156787307208", "sL_AssetLoss": "734275", "sL_BldgLoss": "576521", "sL_StrLoss": "308652", "sL_NStrLoss": "267869", "sL_ContLoss": "157754", "geom_point": "0101000020E61000007112AD8943955EC095A5A50B14934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330631614999945, 49.149287148000035 ], [ -122.330629476999917, 49.149188787000107 ], [ -122.330330049999986, 49.149188825000117 ], [ -122.327573182999956, 49.149189108000023 ], [ -122.327203219999973, 49.149169193000013 ], [ -122.324520687999907, 49.149159596000054 ], [ -122.323143404999954, 49.149186500000077 ], [ -122.323136595999955, 49.148717504000039 ], [ -122.323010184999958, 49.148286894000051 ], [ -122.323008296999902, 49.147999300000045 ], [ -122.323077417999954, 49.147957486000038 ], [ -122.323173585999925, 49.147903100000057 ], [ -122.324111286999965, 49.147921590000081 ], [ -122.324870998999955, 49.148249513000039 ], [ -122.325252281999937, 49.14831661100002 ], [ -122.327083817999934, 49.148337701000088 ], [ -122.329021787999977, 49.148329890000063 ], [ -122.330751816999935, 49.148351078000118 ], [ -122.330851305999943, 49.147993886000052 ], [ -122.330855193000019, 49.147423494000087 ], [ -122.332506883999898, 49.147428398000073 ], [ -122.332815701999948, 49.147337994000047 ], [ -122.333081496999952, 49.14744350800003 ], [ -122.334361605999902, 49.147467305000063 ], [ -122.335862395999939, 49.147474293000045 ], [ -122.337028796999903, 49.147460792000089 ], [ -122.338516170999966, 49.147226674000116 ], [ -122.338513088999903, 49.1472409040001 ], [ -122.338498486999953, 49.148071105000085 ], [ -122.338498105999989, 49.14809142400005 ], [ -122.338275044999961, 49.148241293000083 ], [ -122.33818261699993, 49.148303405 ], [ -122.337882780999976, 49.148427583000085 ], [ -122.337387980999978, 49.148632499000094 ], [ -122.337175, 49.148720709000102 ], [ -122.336966680999979, 49.148864160000059 ], [ -122.336761308999911, 49.149005593000041 ], [ -122.336746465999923, 49.149065539000055 ], [ -122.336585594000013, 49.14971479400009 ], [ -122.336143962999984, 49.150526236000054 ], [ -122.335997, 49.150796217000035 ], [ -122.335994899999918, 49.1508000890001 ], [ -122.336017923, 49.151153917000123 ], [ -122.329379110999966, 49.151011909000069 ], [ -122.329637397999974, 49.150953190000095 ], [ -122.330152597999941, 49.150713811000045 ], [ -122.330444594999946, 49.150489398000083 ], [ -122.330609522999964, 49.150310293000061 ], [ -122.330645517999955, 49.149941099000038 ], [ -122.330631614999945, 49.149287148000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100744334", "BldgCostT": "68743334", "sL_LossRatio": "0.838011197073712", "sL_AssetLoss": "536926", "sL_BldgLoss": "449950", "sL_StrLoss": "274350", "sL_NStrLoss": "175600", "sL_ContLoss": "86976", "geom_point": "0101000020E61000000FB0C1889E945EC05128EA50F6924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.316042791999948, 49.148474689000111 ], [ -122.316063891999974, 49.147392208000035 ], [ -122.319202401999945, 49.147388858000078 ], [ -122.321588431999956, 49.147386259000051 ], [ -122.322534655999959, 49.147385203000049 ], [ -122.323804197999934, 49.147383803000011 ], [ -122.330855193000019, 49.147423494000087 ], [ -122.330851305999943, 49.147993886000052 ], [ -122.330751816999935, 49.148351078000118 ], [ -122.329021787999977, 49.148329890000063 ], [ -122.327083817999934, 49.148337701000088 ], [ -122.325252281999937, 49.14831661100002 ], [ -122.324870998999955, 49.148249513000039 ], [ -122.324111286999965, 49.147921590000081 ], [ -122.323173585999925, 49.147903100000057 ], [ -122.323077417999954, 49.147957486000038 ], [ -122.323008296999902, 49.147999300000045 ], [ -122.323010184999958, 49.148286894000051 ], [ -122.323136595999955, 49.148717504000039 ], [ -122.323143404999954, 49.149186500000077 ], [ -122.322167303999947, 49.149198906000031 ], [ -122.321798298999937, 49.149203612000129 ], [ -122.320439294999957, 49.149206380000109 ], [ -122.320330983999909, 49.149206593 ], [ -122.319000769999931, 49.149209791 ], [ -122.31884834099999, 49.14920909500011 ], [ -122.316047096999938, 49.149196096000011 ], [ -122.316038361999958, 49.148821211000069 ], [ -122.316037092999977, 49.148767602000106 ], [ -122.316042791999948, 49.148474689000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175228834", "BldgCostT": "115008334", "sL_LossRatio": "0.808006468502802", "sL_AssetLoss": "884285", "sL_BldgLoss": "714508", "sL_StrLoss": "413169", "sL_NStrLoss": "301339", "sL_ContLoss": "169777", "geom_point": "0101000020E61000005C96AFCBB0945EC0DF0631A736934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.324520687999907, 49.149159596000054 ], [ -122.327203219999973, 49.149169193000013 ], [ -122.327573182999956, 49.149189108000023 ], [ -122.330330049999986, 49.149188825000117 ], [ -122.330629476999917, 49.149188787000107 ], [ -122.330631614999945, 49.149287148000035 ], [ -122.330645517999955, 49.149941099000038 ], [ -122.330609522999964, 49.150310293000061 ], [ -122.330444594999946, 49.150489398000083 ], [ -122.330152597999941, 49.150713811000045 ], [ -122.329637397999974, 49.150953190000095 ], [ -122.329379110999966, 49.151011909000069 ], [ -122.329170721999958, 49.151046305000094 ], [ -122.327448412999942, 49.151049097000048 ], [ -122.325262306999974, 49.151052591000081 ], [ -122.325062794999965, 49.15105580200008 ], [ -122.32448736500001, 49.151065060000114 ], [ -122.323844095999959, 49.151075405000064 ], [ -122.323114729999986, 49.151066116000052 ], [ -122.321279886999946, 49.151042704000119 ], [ -122.317934115999918, 49.151009404000042 ], [ -122.316033818, 49.15100739800009 ], [ -122.316045393999943, 49.150099196000021 ], [ -122.316046031999974, 49.149766069000037 ], [ -122.316047096999938, 49.149196096000011 ], [ -122.31884834099999, 49.14920909500011 ], [ -122.319000769999931, 49.149209791 ], [ -122.320330983999909, 49.149206593 ], [ -122.320439294999957, 49.149206380000109 ], [ -122.321798298999937, 49.149203612000129 ], [ -122.322167303999947, 49.149198906000031 ], [ -122.323143404999954, 49.149186500000077 ], [ -122.324520687999907, 49.149159596000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "246730228", "BldgCostT": "156944857", "sL_LossRatio": "0.76877370450193", "sL_AssetLoss": "1149307", "sL_BldgLoss": "883557", "sL_StrLoss": "512557", "sL_NStrLoss": "371000", "sL_ContLoss": "265750", "geom_point": "0101000020E6100000622B8968CB945EC024C08FEE90934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.31601329199999, 49.154641018000071 ], [ -122.316022007999905, 49.153458700000037 ], [ -122.316033818, 49.15100739800009 ], [ -122.317934115999918, 49.151009404000042 ], [ -122.321279886999946, 49.151042704000119 ], [ -122.323114729999986, 49.151066116000052 ], [ -122.323844095999959, 49.151075405000064 ], [ -122.32448736500001, 49.151065060000114 ], [ -122.325062794999965, 49.15105580200008 ], [ -122.325262306999974, 49.151052591000081 ], [ -122.327448412999942, 49.151049097000048 ], [ -122.329170721999958, 49.151046305000094 ], [ -122.329379110999966, 49.151011909000069 ], [ -122.336017923, 49.151153917000123 ], [ -122.336029631999921, 49.151334044000087 ], [ -122.334397594999956, 49.151278454000078 ], [ -122.334375085999923, 49.151563952000068 ], [ -122.331044352999967, 49.151450427000071 ], [ -122.330991400999935, 49.152121447000077 ], [ -122.334088441999981, 49.152227011000029 ], [ -122.334020112999937, 49.15309356800001 ], [ -122.334833968999973, 49.153121293000027 ], [ -122.334761947999965, 49.154034848000101 ], [ -122.334256349999947, 49.154327405000096 ], [ -122.33151899799999, 49.154707407000089 ], [ -122.33143539199996, 49.154718997000082 ], [ -122.331110795000015, 49.154609708000066 ], [ -122.331090251999981, 49.154609811000078 ], [ -122.32875394, 49.15462219000004 ], [ -122.328182794999989, 49.154613516000047 ], [ -122.327680159999971, 49.154501708000105 ], [ -122.3273449499999, 49.154492620000035 ], [ -122.327037031999936, 49.15448426100005 ], [ -122.326270997999984, 49.154633876000048 ], [ -122.325277159999985, 49.154629865000118 ], [ -122.32470886199999, 49.154627556000079 ], [ -122.324564321999944, 49.154626985000014 ], [ -122.324276364999932, 49.154644171000022 ], [ -122.320292236999961, 49.154634189000035 ], [ -122.31955312099997, 49.154634166000022 ], [ -122.31601329199999, 49.154641018000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229889666", "BldgCostT": "151001666", "sL_LossRatio": "0.761961450406215", "sL_AssetLoss": "1617864", "sL_BldgLoss": "1232750", "sL_StrLoss": "678300", "sL_NStrLoss": "554450", "sL_ContLoss": "385114", "geom_point": "0101000020E6100000BF859E62CF945EC0A1DBA6D315944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.325411456999973, 49.161921573000029 ], [ -122.32733546199999, 49.158373295000025 ], [ -122.327359905999941, 49.158312516000059 ], [ -122.327062602999916, 49.158311017000138 ], [ -122.326122042999941, 49.158306308000043 ], [ -122.325924326999939, 49.158305362000078 ], [ -122.32452225899999, 49.158298567000088 ], [ -122.323140373999976, 49.158292814000113 ], [ -122.321844969, 49.158285492000033 ], [ -122.320327375999923, 49.158278692000032 ], [ -122.318342406999946, 49.158268485000093 ], [ -122.316050241999932, 49.158258539000094 ], [ -122.31601329199999, 49.154641018000071 ], [ -122.31955312099997, 49.154634166000022 ], [ -122.320292236999961, 49.154634189000035 ], [ -122.324276364999932, 49.154644171000022 ], [ -122.324564321999944, 49.154626985000014 ], [ -122.32470886199999, 49.154627556000079 ], [ -122.325277159999985, 49.154629865000118 ], [ -122.326270997999984, 49.154633876000048 ], [ -122.327037031999936, 49.15448426100005 ], [ -122.3273449499999, 49.154492620000035 ], [ -122.327680159999971, 49.154501708000105 ], [ -122.328182794999989, 49.154613516000047 ], [ -122.32875394, 49.15462219000004 ], [ -122.331090251999981, 49.154609811000078 ], [ -122.331110795000015, 49.154609708000066 ], [ -122.33143539199996, 49.154718997000082 ], [ -122.33151899799999, 49.154707407000089 ], [ -122.334256349999947, 49.154327405000096 ], [ -122.333874081999937, 49.154548604000055 ], [ -122.333788905999953, 49.154782205000068 ], [ -122.33390359399999, 49.155538401000037 ], [ -122.333694407999928, 49.155716396000038 ], [ -122.333198482999975, 49.15591159100012 ], [ -122.333071258999922, 49.156053499000045 ], [ -122.332837205999923, 49.156314605000105 ], [ -122.332760516999954, 49.156763194000078 ], [ -122.332819244999939, 49.157088640000062 ], [ -122.332851489999925, 49.157267414000032 ], [ -122.332240282999962, 49.157839897000024 ], [ -122.331930335999957, 49.158531558 ], [ -122.331801785999971, 49.158818394000058 ], [ -122.331122897999975, 49.159272701000049 ], [ -122.330485111999963, 49.159367209000081 ], [ -122.329777281999966, 49.159472096000066 ], [ -122.329279900999921, 49.159658595000025 ], [ -122.329168407999987, 49.159773988000047 ], [ -122.329159102999981, 49.160511693000061 ], [ -122.329185536999972, 49.160606026000025 ], [ -122.327696678, 49.160555231000046 ], [ -122.327661015999979, 49.161006644000047 ], [ -122.327900010999926, 49.161014799000036 ], [ -122.327830557999945, 49.161893966000079 ], [ -122.325411456999973, 49.161921573000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.799710249909453", "sL_AssetLoss": "13805", "sL_BldgLoss": "11040", "sL_StrLoss": "6170", "sL_NStrLoss": "4870", "sL_ContLoss": "2765", "geom_point": "0101000020E610000071FF152235955EC0F4FF8915DE954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.331852276999896, 49.171275384000069 ], [ -122.331853237999937, 49.171263227000082 ], [ -122.330498330999959, 49.171217048000116 ], [ -122.330598369999905, 49.16995007800007 ], [ -122.330757802999969, 49.170083893000076 ], [ -122.332802460000025, 49.171200983000041 ], [ -122.333010926999975, 49.17131486100012 ], [ -122.331852276999896, 49.171275384000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "221802584", "BldgCostT": "148048334", "sL_LossRatio": "0.789864506814215", "sL_AssetLoss": "1466273", "sL_BldgLoss": "1158157", "sL_StrLoss": "659497", "sL_NStrLoss": "498660", "sL_ContLoss": "308116", "geom_point": "0101000020E610000055CD9452A7945EC0ABE4C6A13C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.324088523999976, 49.174657371000102 ], [ -122.32373420299993, 49.174193818000028 ], [ -122.323606052999978, 49.174045248000084 ], [ -122.323303225999922, 49.173694199000145 ], [ -122.322820098999983, 49.173264005000092 ], [ -122.321716289999983, 49.172598946000065 ], [ -122.319963870999942, 49.171543017000083 ], [ -122.319125084999939, 49.171037612000106 ], [ -122.317887712999919, 49.170328800000085 ], [ -122.317465673999919, 49.170087034000119 ], [ -122.317326074999954, 49.17000710200012 ], [ -122.318643700999957, 49.16914901500013 ], [ -122.32083826099999, 49.169159277000091 ], [ -122.321574013999921, 49.169162695000068 ], [ -122.321852306999986, 49.168852183000119 ], [ -122.321820948999957, 49.167942012000069 ], [ -122.321739187999967, 49.167681993000066 ], [ -122.32177309299999, 49.166525890000067 ], [ -122.318796139999975, 49.166529951000022 ], [ -122.317945776999977, 49.166531096000028 ], [ -122.315985508999972, 49.16658569500003 ], [ -122.315989190999957, 49.165912731000027 ], [ -122.316000011999989, 49.163942902 ], [ -122.31601114599998, 49.161901384000089 ], [ -122.316031382999981, 49.160021058000062 ], [ -122.316050241999932, 49.158258539000094 ], [ -122.318342406999946, 49.158268485000093 ], [ -122.320327375999923, 49.158278692000032 ], [ -122.321844969, 49.158285492000033 ], [ -122.323140373999976, 49.158292814000113 ], [ -122.32452225899999, 49.158298567000088 ], [ -122.325924326999939, 49.158305362000078 ], [ -122.326122042999941, 49.158306308000043 ], [ -122.327062602999916, 49.158311017000138 ], [ -122.327359905999941, 49.158312516000059 ], [ -122.32733546199999, 49.158373295000025 ], [ -122.325411456999973, 49.161921573000029 ], [ -122.327830557999945, 49.161893966000079 ], [ -122.327615938999926, 49.164610477000096 ], [ -122.326558754999951, 49.16457439900006 ], [ -122.3265554809999, 49.164815790000027 ], [ -122.325732501999966, 49.164810988000049 ], [ -122.325728838999979, 49.165080829000068 ], [ -122.325698008999964, 49.165080650000014 ], [ -122.32559805399994, 49.166345021000019 ], [ -122.325429517999936, 49.166339267000062 ], [ -122.325384875999944, 49.166903925000035 ], [ -122.325281333999939, 49.166900390000066 ], [ -122.325215777999944, 49.167729518000094 ], [ -122.325334920999964, 49.1677335850001 ], [ -122.325121569, 49.170431858000036 ], [ -122.325678875999927, 49.170450883000036 ], [ -122.325651610999927, 49.170795747000057 ], [ -122.326065483999983, 49.170809874000049 ], [ -122.326048895999961, 49.171019690000023 ], [ -122.327705920999975, 49.171029348000083 ], [ -122.327703644999971, 49.1711973560001 ], [ -122.32968927899995, 49.171265077000086 ], [ -122.329587511999932, 49.17255360200005 ], [ -122.331093609999954, 49.172604944000078 ], [ -122.331057434999963, 49.17306314500015 ], [ -122.333200171000016, 49.17313615300008 ], [ -122.332963910999979, 49.173352390000055 ], [ -122.332233715999905, 49.173608806000118 ], [ -122.331790185000017, 49.173885103000131 ], [ -122.331354335999933, 49.175061238000055 ], [ -122.33132387, 49.175046814000027 ], [ -122.331284819999937, 49.175028303000062 ], [ -122.330567791999968, 49.174745096000059 ], [ -122.330043316999976, 49.174646089000085 ], [ -122.329462415, 49.174653395000107 ], [ -122.327635909999941, 49.174851604000018 ], [ -122.326962190999964, 49.174957489000107 ], [ -122.326136591999969, 49.175127610000018 ], [ -122.325757997999986, 49.175178706000075 ], [ -122.325291603, 49.175178115000037 ], [ -122.325139840999938, 49.175149044000044 ], [ -122.324775400999954, 49.17507930800015 ], [ -122.324347997999951, 49.174880002000066 ], [ -122.324144481999951, 49.174730609000065 ], [ -122.324088523999976, 49.174657371000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92874667", "BldgCostT": "62586667", "sL_LossRatio": "0.779419615379784", "sL_AssetLoss": "636888", "sL_BldgLoss": "496403", "sL_StrLoss": "267792", "sL_NStrLoss": "228611", "sL_ContLoss": "140485", "geom_point": "0101000020E6100000A1DC64F1AE935EC0136E85F236954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.316214728999938, 49.169339165000032 ], [ -122.315964712999971, 49.169149297000111 ], [ -122.313979171999975, 49.16913954200006 ], [ -122.312122721999984, 49.169130397000096 ], [ -122.311345371999892, 49.169126638000087 ], [ -122.309219083999935, 49.169116365000136 ], [ -122.30829710700003, 49.169111885000071 ], [ -122.307551055999909, 49.169108858000058 ], [ -122.305803480999913, 49.169101712000106 ], [ -122.30212221599993, 49.169086592000049 ], [ -122.299392303999952, 49.169089201000148 ], [ -122.296406272999945, 49.169084013000017 ], [ -122.296136939999968, 49.16908353900007 ], [ -122.295996947999967, 49.168705943000077 ], [ -122.295992350999938, 49.168562423000132 ], [ -122.296073520000022, 49.168150253000093 ], [ -122.29623595799994, 49.167678298000062 ], [ -122.297038510999968, 49.167705911000027 ], [ -122.297132238999936, 49.166529493000048 ], [ -122.296606078999957, 49.166526288000092 ], [ -122.296709571999926, 49.166153820000083 ], [ -122.296790621999946, 49.165311048000028 ], [ -122.296721608999945, 49.164889021000072 ], [ -122.296185330999919, 49.164114503000086 ], [ -122.296088524999959, 49.163701267000178 ], [ -122.296126708999935, 49.163100461000063 ], [ -122.296646993999943, 49.161847900000069 ], [ -122.296769515999983, 49.161847438000081 ], [ -122.298867761999986, 49.161839304000132 ], [ -122.299554328999974, 49.161836639000036 ], [ -122.302181363999978, 49.161826378000086 ], [ -122.306184555999891, 49.161846662000038 ], [ -122.307600687000019, 49.1618547140001 ], [ -122.308482106999946, 49.161860609000044 ], [ -122.309657000999962, 49.161866638000063 ], [ -122.31601114599998, 49.161901384000089 ], [ -122.316000011999989, 49.163942902 ], [ -122.315989190999957, 49.165912731000027 ], [ -122.315985508999972, 49.16658569500003 ], [ -122.317945776999977, 49.166531096000028 ], [ -122.318796139999975, 49.166529951000022 ], [ -122.32177309299999, 49.166525890000067 ], [ -122.321739187999967, 49.167681993000066 ], [ -122.321820948999957, 49.167942012000069 ], [ -122.321852306999986, 49.168852183000119 ], [ -122.321574013999921, 49.169162695000068 ], [ -122.32083826099999, 49.169159277000091 ], [ -122.318643700999957, 49.16914901500013 ], [ -122.317326074999954, 49.17000710200012 ], [ -122.316281690000011, 49.169390003000103 ], [ -122.316214728999938, 49.169339165000032 ] ], [ [ -122.297501039999972, 49.165452282000032 ], [ -122.297544013, 49.164912817000094 ], [ -122.297336069999957, 49.164911551000074 ], [ -122.297328434999955, 49.165451232000102 ], [ -122.297501039999972, 49.165452282000032 ] ], [ [ -122.297608471999951, 49.164103618000134 ], [ -122.297677698999962, 49.16323454000009 ], [ -122.297393984999943, 49.163224780000043 ], [ -122.29732411399999, 49.164101888000097 ], [ -122.297608471999951, 49.164103618000134 ] ], [ [ -122.311836054999972, 49.1641506180001 ], [ -122.311826340999986, 49.164273048000013 ], [ -122.311933896999932, 49.164276734000104 ], [ -122.311925823999943, 49.164378489000072 ], [ -122.312601296999972, 49.164401634000086 ], [ -122.312619082999959, 49.164177448000061 ], [ -122.311836054999972, 49.1641506180001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "317451834", "BldgCostT": "215048334", "sL_LossRatio": "0.78311141711211", "sL_AssetLoss": "2120545", "sL_BldgLoss": "1660623", "sL_StrLoss": "940637", "sL_NStrLoss": "719986", "sL_ContLoss": "459922", "geom_point": "0101000020E6100000E370E7A1BA935EC054F54DF53F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.299965584999953, 49.156850256000091 ], [ -122.300048866999958, 49.156390767000062 ], [ -122.30005707399998, 49.156345203000122 ], [ -122.300151886, 49.156050096000094 ], [ -122.301020582999968, 49.155230803000045 ], [ -122.301302280999948, 49.154603292000068 ], [ -122.302344390999949, 49.154604504000091 ], [ -122.302851711999935, 49.154605100000076 ], [ -122.304977586999954, 49.154610738000059 ], [ -122.307770906999934, 49.154618102000079 ], [ -122.30911919299993, 49.15462211500008 ], [ -122.310359300999949, 49.154625770000102 ], [ -122.31601329199999, 49.154641018000071 ], [ -122.316050241999932, 49.158258539000094 ], [ -122.316031382999981, 49.160021058000062 ], [ -122.31601114599998, 49.161901384000089 ], [ -122.309657000999962, 49.161866638000063 ], [ -122.308482106999946, 49.161860609000044 ], [ -122.307600687000019, 49.1618547140001 ], [ -122.306184555999891, 49.161846662000038 ], [ -122.302181363999978, 49.161826378000086 ], [ -122.300778408999946, 49.15999969500006 ], [ -122.300161944999971, 49.159197086000113 ], [ -122.299764290999917, 49.158739254000118 ], [ -122.299374313999976, 49.158290280000124 ], [ -122.299946881999944, 49.156953398000084 ], [ -122.299965584999953, 49.156850256000091 ] ], [ [ -122.303954201999943, 49.156858524000093 ], [ -122.303997314999975, 49.15631625100005 ], [ -122.303593250999967, 49.156313815000047 ], [ -122.303568627999979, 49.156623493000069 ], [ -122.303604829000022, 49.156624737000037 ], [ -122.30358724199999, 49.156845919000048 ], [ -122.303954201999943, 49.156858524000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165666833", "BldgCostT": "108263333", "sL_LossRatio": "0.774293721123987", "sL_AssetLoss": "1003428", "sL_BldgLoss": "776948", "sL_StrLoss": "431288", "sL_NStrLoss": "345660", "sL_ContLoss": "226480", "geom_point": "0101000020E610000002AA8FF2D9935EC084EF2F489B934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.314283107000037, 49.151004190000023 ], [ -122.316033818, 49.15100739800009 ], [ -122.316022007999905, 49.153458700000037 ], [ -122.31601329199999, 49.154641018000071 ], [ -122.310359300999949, 49.154625770000102 ], [ -122.30911919299993, 49.15462211500008 ], [ -122.307770906999934, 49.154618102000079 ], [ -122.304977586999954, 49.154610738000059 ], [ -122.302851711999935, 49.154605100000076 ], [ -122.302344390999949, 49.154604504000091 ], [ -122.301302280999948, 49.154603292000068 ], [ -122.301647787999983, 49.154105001000111 ], [ -122.301780279999946, 49.153783199000074 ], [ -122.301844410999962, 49.153580796000071 ], [ -122.301863583999932, 49.153202014000108 ], [ -122.302359191, 49.153177605000103 ], [ -122.302715185999929, 49.152839207000049 ], [ -122.304559114999989, 49.15284478300007 ], [ -122.305346599999936, 49.152804299000053 ], [ -122.307498739999943, 49.152808037000035 ], [ -122.308102579999954, 49.152809086000019 ], [ -122.30900761799991, 49.152810637000108 ], [ -122.309799788999968, 49.152811990000018 ], [ -122.30982911599996, 49.151008396000066 ], [ -122.310886295, 49.151008585000099 ], [ -122.311815917999965, 49.15100920000004 ], [ -122.313283364999904, 49.151010176000085 ], [ -122.313647700000033, 49.151010401000093 ], [ -122.314283107000037, 49.151004190000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190534164", "BldgCostT": "125278724", "sL_LossRatio": "0.798595346629258", "sL_AssetLoss": "821555", "sL_BldgLoss": "656090", "sL_StrLoss": "323560", "sL_NStrLoss": "332530", "sL_ContLoss": "165465", "geom_point": "0101000020E6100000D27F5A359D935EC0E227DDAF65934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.301438685999941, 49.151216993000041 ], [ -122.301431488999981, 49.150790400000083 ], [ -122.304462396999924, 49.150817884000034 ], [ -122.304844711999962, 49.150923891000083 ], [ -122.305214795999973, 49.151012311000095 ], [ -122.307531302999948, 49.151012094000123 ], [ -122.307833142999954, 49.150554155000123 ], [ -122.307848940999946, 49.150095881000013 ], [ -122.309087079999955, 49.150096006000048 ], [ -122.309084402999986, 49.149784906000065 ], [ -122.309854881999954, 49.149786091000045 ], [ -122.310390991999981, 49.149595396000045 ], [ -122.311223559999959, 49.149600109000062 ], [ -122.31127842699999, 49.149600433000032 ], [ -122.311684543999959, 49.14960271500005 ], [ -122.311780551999988, 49.149603252000084 ], [ -122.31253178499999, 49.149607490000072 ], [ -122.312490081999968, 49.150478598000106 ], [ -122.311850547999938, 49.150479572000101 ], [ -122.309090594999972, 49.150483681000026 ], [ -122.309088697999954, 49.151008296000064 ], [ -122.30982911599996, 49.151008396000066 ], [ -122.309799788999968, 49.152811990000018 ], [ -122.30900761799991, 49.152810637000108 ], [ -122.308102579999954, 49.152809086000019 ], [ -122.307498739999943, 49.152808037000035 ], [ -122.305346599999936, 49.152804299000053 ], [ -122.304559114999989, 49.15284478300007 ], [ -122.302715185999929, 49.152839207000049 ], [ -122.302359191, 49.153177605000103 ], [ -122.301863583999932, 49.153202014000108 ], [ -122.301831403, 49.152709608000066 ], [ -122.301812502999979, 49.152642051000036 ], [ -122.301635777999934, 49.152010513000121 ], [ -122.301520690999908, 49.151599283000095 ], [ -122.301438685999941, 49.151216993000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104292750", "BldgCostT": "69015000", "sL_LossRatio": "0.780404791126869", "sL_AssetLoss": "703968", "sL_BldgLoss": "549380", "sL_StrLoss": "298760", "sL_NStrLoss": "250620", "sL_ContLoss": "154588", "geom_point": "0101000020E6100000BFF30F4B98935EC05AC88E5315934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304980156999989, 49.150100171000119 ], [ -122.304282624999942, 49.150026572000073 ], [ -122.30260210699997, 49.150037392000058 ], [ -122.302622490999951, 49.149262892000081 ], [ -122.302587201999984, 49.148241301000034 ], [ -122.304959008999944, 49.148243504000121 ], [ -122.304962063999966, 49.148153475000107 ], [ -122.304963201999954, 49.147380097000038 ], [ -122.306072799, 49.147375009000086 ], [ -122.307039812999975, 49.147370303000066 ], [ -122.309086006999962, 49.147380111000068 ], [ -122.309086790999984, 49.148321200000026 ], [ -122.309087021999957, 49.149182002000025 ], [ -122.309084402999986, 49.149784906000065 ], [ -122.309087079999955, 49.150096006000048 ], [ -122.307848940999946, 49.150095881000013 ], [ -122.307833142999954, 49.150554155000123 ], [ -122.307531302999948, 49.151012094000123 ], [ -122.305214795999973, 49.151012311000095 ], [ -122.304844711999962, 49.150923891000083 ], [ -122.304987596999979, 49.150610586 ], [ -122.304986113999959, 49.150509850000098 ], [ -122.304980156999989, 49.150100171000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94047500", "BldgCostT": "62705000", "sL_LossRatio": "0.801128381356399", "sL_AssetLoss": "580832", "sL_BldgLoss": "465321", "sL_StrLoss": "255721", "sL_NStrLoss": "209600", "sL_ContLoss": "115511", "geom_point": "0101000020E61000005138501A89935EC0D1D3DBFAC4924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304844711999962, 49.150923891000083 ], [ -122.304462396999924, 49.150817884000034 ], [ -122.301431488999981, 49.150790400000083 ], [ -122.301415521999957, 49.150077706000104 ], [ -122.301422004999935, 49.148030907000063 ], [ -122.301441110999988, 49.14765299500003 ], [ -122.301629675999962, 49.147471092000067 ], [ -122.301897603999919, 49.147378507000035 ], [ -122.302400183999978, 49.147351615000055 ], [ -122.302389622999939, 49.146622896000103 ], [ -122.302375591999947, 49.145643485000065 ], [ -122.302365603999988, 49.144562394000062 ], [ -122.303556884, 49.144580795000117 ], [ -122.304241546999918, 49.14457152500016 ], [ -122.304686397999888, 49.144565501000038 ], [ -122.30590082399999, 49.144587406000014 ], [ -122.305905708999958, 49.143870097000089 ], [ -122.306772572999961, 49.143869132000077 ], [ -122.309467778999974, 49.143866100000011 ], [ -122.309457493999972, 49.14508440900002 ], [ -122.309456707, 49.145247342000083 ], [ -122.309455037999953, 49.145598202000087 ], [ -122.309452705999931, 49.146076708000138 ], [ -122.309421500999932, 49.146349702000116 ], [ -122.30924667099994, 49.146803230000081 ], [ -122.309122799999969, 49.14712450200004 ], [ -122.309086006999962, 49.147380111000068 ], [ -122.307039812999975, 49.147370303000066 ], [ -122.306072799, 49.147375009000086 ], [ -122.304963201999954, 49.147380097000038 ], [ -122.304962063999966, 49.148153475000107 ], [ -122.304959008999944, 49.148243504000121 ], [ -122.302587201999984, 49.148241301000034 ], [ -122.302622490999951, 49.149262892000081 ], [ -122.30260210699997, 49.150037392000058 ], [ -122.304282624999942, 49.150026572000073 ], [ -122.304980156999989, 49.150100171000119 ], [ -122.304986113999959, 49.150509850000098 ], [ -122.304987596999979, 49.150610586 ], [ -122.304844711999962, 49.150923891000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92288834", "BldgCostT": "62173334", "sL_LossRatio": "0.839933176984611", "sL_AssetLoss": "466905", "sL_BldgLoss": "392169", "sL_StrLoss": "234980", "sL_NStrLoss": "157189", "sL_ContLoss": "74736", "geom_point": "0101000020E610000086F1C3D626935EC0294DF7F80C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.300252704999977, 49.148923700000061 ], [ -122.30029669399994, 49.148130097000049 ], [ -122.299763216999963, 49.148183904000049 ], [ -122.297189110999966, 49.149825994000061 ], [ -122.29648200699998, 49.150268600000103 ], [ -122.29635827599999, 49.150268326000123 ], [ -122.295696415999913, 49.150266800000047 ], [ -122.29569211099998, 49.148686487000077 ], [ -122.295754222, 49.148662927000096 ], [ -122.295849020999981, 49.148627001000122 ], [ -122.296199325999964, 49.148393426000041 ], [ -122.29629638499992, 49.148328699000075 ], [ -122.296854599999946, 49.148206414000029 ], [ -122.297493795, 49.148065289000115 ], [ -122.298638404999963, 49.147775691000071 ], [ -122.29865086199996, 49.147431324000145 ], [ -122.298670392999909, 49.146891611000079 ], [ -122.299051869999957, 49.146611794000101 ], [ -122.299875793999917, 49.146561698000049 ], [ -122.300931427999927, 49.146563700000065 ], [ -122.302143889999968, 49.146573887000045 ], [ -122.302389622999939, 49.146622896000103 ], [ -122.302400183999978, 49.147351615000055 ], [ -122.301897603999919, 49.147378507000035 ], [ -122.301629675999962, 49.147471092000067 ], [ -122.301441110999988, 49.14765299500003 ], [ -122.301422004999935, 49.148030907000063 ], [ -122.301415521999957, 49.150077706000104 ], [ -122.301431488999981, 49.150790400000083 ], [ -122.300865511999959, 49.150838495000073 ], [ -122.299940919000022, 49.151033902000059 ], [ -122.298865001999928, 49.151026590000079 ], [ -122.2983643, 49.151029208000047 ], [ -122.29724788599999, 49.151033194000014 ], [ -122.2972554, 49.150887417000042 ], [ -122.300252704999977, 49.148923700000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158061583", "BldgCostT": "104818333", "sL_LossRatio": "0.848857178727345", "sL_AssetLoss": "422157", "sL_BldgLoss": "358351", "sL_StrLoss": "209782", "sL_NStrLoss": "148569", "sL_ContLoss": "63806", "geom_point": "0101000020E6100000EF2894A6FD925EC05FACFB09DF924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.295647395999964, 49.14637289300007 ], [ -122.297497883999966, 49.145517192000085 ], [ -122.298052596, 49.14540381000009 ], [ -122.299247814999916, 49.145407900000109 ], [ -122.299866797999954, 49.145548047000105 ], [ -122.300125883999968, 49.145606704000052 ], [ -122.300440735999985, 49.145611840000122 ], [ -122.302375591999947, 49.145643485000065 ], [ -122.302389622999939, 49.146622896000103 ], [ -122.302143889999968, 49.146573887000045 ], [ -122.300931427999927, 49.146563700000065 ], [ -122.299875793999917, 49.146561698000049 ], [ -122.299051869999957, 49.146611794000101 ], [ -122.298670392999909, 49.146891611000079 ], [ -122.29865086199996, 49.147431324000145 ], [ -122.298638404999963, 49.147775691000071 ], [ -122.297493795, 49.148065289000115 ], [ -122.296854599999946, 49.148206414000029 ], [ -122.29629638499992, 49.148328699000075 ], [ -122.296199325999964, 49.148393426000041 ], [ -122.295849020999981, 49.148627001000122 ], [ -122.295754222, 49.148662927000096 ], [ -122.29569211099998, 49.148686487000077 ], [ -122.295696415999913, 49.150266800000047 ], [ -122.294643424999961, 49.150259323000057 ], [ -122.29451238899999, 49.150258406000063 ], [ -122.294216702999961, 49.150252799000036 ], [ -122.29382061499993, 49.150198589000055 ], [ -122.293554118999921, 49.150136202000049 ], [ -122.293402309999962, 49.150027307000123 ], [ -122.293363808, 49.14990879700013 ], [ -122.293364022999967, 49.14873699500005 ], [ -122.293358692999931, 49.148544803000028 ], [ -122.293294491999973, 49.14836959700007 ], [ -122.29309498799995, 49.148155401000054 ], [ -122.292834392999936, 49.147949909000047 ], [ -122.293679006999966, 49.147330895000039 ], [ -122.293997924999928, 49.147113796000085 ], [ -122.294399514999981, 49.146891507000106 ], [ -122.294828211, 49.146673691000089 ], [ -122.295647395999964, 49.14637289300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78837166", "BldgCostT": "54106666", "sL_LossRatio": "0.843915811814644", "sL_AssetLoss": "395780", "sL_BldgLoss": "334005", "sL_StrLoss": "204318", "sL_NStrLoss": "129687", "sL_ContLoss": "61775", "geom_point": "0101000020E6100000120E20F0FE925EC04A12B66561934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.294531494999958, 49.151033408000067 ], [ -122.29451238899999, 49.150258406000063 ], [ -122.294643424999961, 49.150259323000057 ], [ -122.295696415999913, 49.150266800000047 ], [ -122.29635827599999, 49.150268326000123 ], [ -122.29648200699998, 49.150268600000103 ], [ -122.297189110999966, 49.149825994000061 ], [ -122.299763216999963, 49.148183904000049 ], [ -122.30029669399994, 49.148130097000049 ], [ -122.300252704999977, 49.148923700000061 ], [ -122.2972554, 49.150887417000042 ], [ -122.29724788599999, 49.151033194000014 ], [ -122.2983643, 49.151029208000047 ], [ -122.298365309999966, 49.151963982000083 ], [ -122.298350398999943, 49.15297839600008 ], [ -122.297297994999894, 49.153399205000056 ], [ -122.297079729999979, 49.153486423000082 ], [ -122.296612484999926, 49.153673102 ], [ -122.29518561899998, 49.153678541000055 ], [ -122.294561916999967, 49.153680891000086 ], [ -122.294541598999942, 49.151818802000044 ], [ -122.294531494999958, 49.151033408000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144078750", "BldgCostT": "97155000", "sL_LossRatio": "0.844703256965541", "sL_AssetLoss": "613915", "sL_BldgLoss": "518576", "sL_StrLoss": "333306", "sL_NStrLoss": "185270", "sL_ContLoss": "95339", "geom_point": "0101000020E6100000A5AA9E06EB925EC0EAAF80D7A1934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.286987498999963, 49.153742502000064 ], [ -122.286377212999966, 49.152970593000141 ], [ -122.286167501999984, 49.15267759300017 ], [ -122.286122746999936, 49.152535674000042 ], [ -122.286093117999954, 49.152441600000017 ], [ -122.286115794999958, 49.152191801000093 ], [ -122.286373900999976, 49.15138040600003 ], [ -122.286972302, 49.151476779000042 ], [ -122.286740915999943, 49.152261981000088 ], [ -122.286748299999886, 49.152478599000069 ], [ -122.286917517999896, 49.152798107000109 ], [ -122.286966734999936, 49.152856249000088 ], [ -122.28732481400003, 49.153279100000113 ], [ -122.287607427999944, 49.153239173000067 ], [ -122.28769919799997, 49.153226209000088 ], [ -122.288636029999964, 49.153211641000063 ], [ -122.289211971, 49.153202694000058 ], [ -122.28923010699998, 49.153202405000094 ], [ -122.29003781599998, 49.153185200000067 ], [ -122.290493903999959, 49.15326041 ], [ -122.291444494999936, 49.153448691000072 ], [ -122.29267539599999, 49.153692493000094 ], [ -122.293329681999936, 49.153690698000055 ], [ -122.293936361999968, 49.153685865000078 ], [ -122.294561916999967, 49.153680891000086 ], [ -122.29518561899998, 49.153678541000055 ], [ -122.296612484999926, 49.153673102 ], [ -122.297079729999979, 49.153486423000082 ], [ -122.297297994999894, 49.153399205000056 ], [ -122.298350398999943, 49.15297839600008 ], [ -122.298365309999966, 49.151963982000083 ], [ -122.2983643, 49.151029208000047 ], [ -122.298865001999928, 49.151026590000079 ], [ -122.299940919000022, 49.151033902000059 ], [ -122.300865511999959, 49.150838495000073 ], [ -122.301431488999981, 49.150790400000083 ], [ -122.301438685999941, 49.151216993000041 ], [ -122.301520690999908, 49.151599283000095 ], [ -122.301635777999934, 49.152010513000121 ], [ -122.301812502999979, 49.152642051000036 ], [ -122.301831403, 49.152709608000066 ], [ -122.301863583999932, 49.153202014000108 ], [ -122.301844410999962, 49.153580796000071 ], [ -122.301780279999946, 49.153783199000074 ], [ -122.301647787999983, 49.154105001000111 ], [ -122.301302280999948, 49.154603292000068 ], [ -122.300040084, 49.154598553000078 ], [ -122.298517874999973, 49.154592825000051 ], [ -122.298272691999955, 49.15459190500011 ], [ -122.297516427999966, 49.154594480000078 ], [ -122.294006051999972, 49.154606290000125 ], [ -122.293764011999983, 49.15460709900001 ], [ -122.292963680999918, 49.154609017000048 ], [ -122.291249067999985, 49.154613103000024 ], [ -122.289398016999925, 49.154617458000075 ], [ -122.289043004999911, 49.154618305000056 ], [ -122.288067193999979, 49.154606278000095 ], [ -122.287831819999951, 49.154603386000069 ], [ -122.287134694999935, 49.15459480300008 ], [ -122.287136515999961, 49.154142400000097 ], [ -122.286987498999963, 49.153742502000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85577583", "BldgCostT": "58128333", "sL_LossRatio": "0.794729634948732", "sL_AssetLoss": "479056", "sL_BldgLoss": "380720", "sL_StrLoss": "226470", "sL_NStrLoss": "154250", "sL_ContLoss": "98336", "geom_point": "0101000020E610000012F2A4F9A1925EC0F33DD9837F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.290493903999959, 49.15326041 ], [ -122.29003781599998, 49.153185200000067 ], [ -122.28923010699998, 49.153202405000094 ], [ -122.289211971, 49.153202694000058 ], [ -122.288636029999964, 49.153211641000063 ], [ -122.28769919799997, 49.153226209000088 ], [ -122.287607427999944, 49.153239173000067 ], [ -122.28732481400003, 49.153279100000113 ], [ -122.286966734999936, 49.152856249000088 ], [ -122.286917517999896, 49.152798107000109 ], [ -122.286748299999886, 49.152478599000069 ], [ -122.286740915999943, 49.152261981000088 ], [ -122.286972302, 49.151476779000042 ], [ -122.287708199999898, 49.151585981000061 ], [ -122.28816242299996, 49.151598995000036 ], [ -122.288289455999944, 49.151590831000107 ], [ -122.288537310999942, 49.151574907000075 ], [ -122.288974298, 49.151510707000099 ], [ -122.291153905999963, 49.151175697000092 ], [ -122.291699591999958, 49.151004294000074 ], [ -122.293850113999937, 49.151026401000088 ], [ -122.294531494999958, 49.151033408000067 ], [ -122.294541598999942, 49.151818802000044 ], [ -122.294561916999967, 49.153680891000086 ], [ -122.293936361999968, 49.153685865000078 ], [ -122.293329681999936, 49.153690698000055 ], [ -122.29267539599999, 49.153692493000094 ], [ -122.291444494999936, 49.153448691000072 ], [ -122.290493903999959, 49.15326041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109963000", "BldgCostT": "73630000", "sL_LossRatio": "0.81162582289394", "sL_AssetLoss": "528926", "sL_BldgLoss": "429290", "sL_StrLoss": "276790", "sL_NStrLoss": "152500", "sL_ContLoss": "99636", "geom_point": "0101000020E6100000CFA266FE87925EC0F7DBAE0242934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.285687513999974, 49.151731527000123 ], [ -122.28582492299995, 49.151301044000036 ], [ -122.2860366419999, 49.150560989000027 ], [ -122.286067312999961, 49.150453795000033 ], [ -122.286475522999964, 49.149026779000103 ], [ -122.287702499999938, 49.1492015910001 ], [ -122.288064108999961, 49.148741788000052 ], [ -122.288658697999935, 49.148902903000106 ], [ -122.290736912999961, 49.149235102000056 ], [ -122.290899443999976, 49.149127213000028 ], [ -122.29128418699996, 49.148871788000065 ], [ -122.291796812999934, 49.148461301000104 ], [ -122.292346713999933, 49.148683896000094 ], [ -122.292779992999925, 49.148752909000102 ], [ -122.293364022999967, 49.14873699500005 ], [ -122.293363808, 49.14990879700013 ], [ -122.293402309999962, 49.150027307000123 ], [ -122.293554118999921, 49.150136202000049 ], [ -122.29382061499993, 49.150198589000055 ], [ -122.294216702999961, 49.150252799000036 ], [ -122.29451238899999, 49.150258406000063 ], [ -122.294531494999958, 49.151033408000067 ], [ -122.293850113999937, 49.151026401000088 ], [ -122.291699591999958, 49.151004294000074 ], [ -122.291153905999963, 49.151175697000092 ], [ -122.288974298, 49.151510707000099 ], [ -122.288537310999942, 49.151574907000075 ], [ -122.288289455999944, 49.151590831000107 ], [ -122.28816242299996, 49.151598995000036 ], [ -122.287708199999898, 49.151585981000061 ], [ -122.286972302, 49.151476779000042 ], [ -122.286373900999976, 49.15138040600003 ], [ -122.286115794999958, 49.152191801000093 ], [ -122.286093117999954, 49.152441600000017 ], [ -122.286122746999936, 49.152535674000042 ], [ -122.286167501999984, 49.15267759300017 ], [ -122.286377212999966, 49.152970593000141 ], [ -122.286987498999963, 49.153742502000064 ], [ -122.287136515999961, 49.154142400000097 ], [ -122.287134694999935, 49.15459480300008 ], [ -122.286476986999944, 49.154588390000079 ], [ -122.286481173, 49.153934094000093 ], [ -122.285545298999963, 49.152724607000039 ], [ -122.28547529299999, 49.15248509900011 ], [ -122.28549022599999, 49.152349495000024 ], [ -122.285510001999967, 49.152287497000074 ], [ -122.285687513999974, 49.151731527000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98744644", "BldgCostT": "60636523", "sL_LossRatio": "0.755658946043318", "sL_AssetLoss": "425786", "sL_BldgLoss": "321749", "sL_StrLoss": "183909", "sL_NStrLoss": "137840", "sL_ContLoss": "104037", "geom_point": "0101000020E61000006C37976E94925EC01E214595C8924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.286583918999952, 49.148700579000071 ], [ -122.286814428999961, 49.148423681000068 ], [ -122.287619679999949, 49.147861628000086 ], [ -122.287780519999956, 49.147749368000127 ], [ -122.287831959999977, 49.146380256000029 ], [ -122.288091585999979, 49.145354131000033 ], [ -122.28841628099994, 49.145173834000076 ], [ -122.28913488799999, 49.144774838000089 ], [ -122.289507921999984, 49.144567699000085 ], [ -122.289518769999958, 49.144562214000068 ], [ -122.28987142699998, 49.144384474000027 ], [ -122.289980117000013, 49.144329668000111 ], [ -122.290150690999965, 49.144243708000076 ], [ -122.290748600999962, 49.14413811500004 ], [ -122.291194587999897, 49.144132809000091 ], [ -122.291579598999959, 49.144204589000026 ], [ -122.292381483999975, 49.144481995000049 ], [ -122.293144210999941, 49.144802978000023 ], [ -122.293720511999965, 49.14491840900012 ], [ -122.29408930299995, 49.144934690000134 ], [ -122.29405159099997, 49.145321917000054 ], [ -122.293944906999968, 49.145629204000045 ], [ -122.293526205, 49.145978985000049 ], [ -122.29304359299999, 49.146134495000098 ], [ -122.292439713999926, 49.146192989000085 ], [ -122.292077196999941, 49.146303992000085 ], [ -122.291785599999969, 49.146486801000087 ], [ -122.291588607999969, 49.146773894000056 ], [ -122.291541088999949, 49.147146292000116 ], [ -122.291678296999962, 49.147351216000068 ], [ -122.291928596999952, 49.147565305000057 ], [ -122.292834392999936, 49.147949909000047 ], [ -122.29309498799995, 49.148155401000054 ], [ -122.293294491999973, 49.14836959700007 ], [ -122.293358692999931, 49.148544803000028 ], [ -122.293364022999967, 49.14873699500005 ], [ -122.292779992999925, 49.148752909000102 ], [ -122.292346713999933, 49.148683896000094 ], [ -122.291796812999934, 49.148461301000104 ], [ -122.29128418699996, 49.148871788000065 ], [ -122.290899443999976, 49.149127213000028 ], [ -122.290736912999961, 49.149235102000056 ], [ -122.288658697999935, 49.148902903000106 ], [ -122.288064108999961, 49.148741788000052 ], [ -122.287702499999938, 49.1492015910001 ], [ -122.286475522999964, 49.149026779000103 ], [ -122.286583918999952, 49.148700579000071 ] ], [ [ -122.29059903299999, 49.146789463000033 ], [ -122.290602884999913, 49.146519622000021 ], [ -122.290334085999987, 49.146517971 ], [ -122.290312566999916, 49.146787703000058 ], [ -122.29059903299999, 49.146789463000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74846469", "BldgCostT": "49860412", "sL_LossRatio": "0.794190899627385", "sL_AssetLoss": "411148", "sL_BldgLoss": "326530", "sL_StrLoss": "196190", "sL_NStrLoss": "130340", "sL_ContLoss": "84618", "geom_point": "0101000020E6100000CB6459ACF8925EC08DD47B2AA7924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.291541088999949, 49.147146292000116 ], [ -122.291588607999969, 49.146773894000056 ], [ -122.291785599999969, 49.146486801000087 ], [ -122.292077196999941, 49.146303992000085 ], [ -122.292439713999926, 49.146192989000085 ], [ -122.29304359299999, 49.146134495000098 ], [ -122.293526205, 49.145978985000049 ], [ -122.293944906999968, 49.145629204000045 ], [ -122.29405159099997, 49.145321917000054 ], [ -122.29408930299995, 49.144934690000134 ], [ -122.294455009999979, 49.144939193000063 ], [ -122.295106389999901, 49.144851692 ], [ -122.295911198999988, 49.144696411000055 ], [ -122.296723605999901, 49.14456659700005 ], [ -122.298646813999966, 49.144553498000114 ], [ -122.299921355999984, 49.144556557000065 ], [ -122.302365603999988, 49.144562394000062 ], [ -122.302375591999947, 49.145643485000065 ], [ -122.300440735999985, 49.145611840000122 ], [ -122.300125883999968, 49.145606704000052 ], [ -122.299866797999954, 49.145548047000105 ], [ -122.299247814999916, 49.145407900000109 ], [ -122.298052596, 49.14540381000009 ], [ -122.297497883999966, 49.145517192000085 ], [ -122.295647395999964, 49.14637289300007 ], [ -122.294828211, 49.146673691000089 ], [ -122.294399514999981, 49.146891507000106 ], [ -122.293997924999928, 49.147113796000085 ], [ -122.293679006999966, 49.147330895000039 ], [ -122.292834392999936, 49.147949909000047 ], [ -122.291928596999952, 49.147565305000057 ], [ -122.291678296999962, 49.147351216000068 ], [ -122.291541088999949, 49.147146292000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141917417", "BldgCostT": "91066667", "sL_LossRatio": "0.760859704071714", "sL_AssetLoss": "925900", "sL_BldgLoss": "704480", "sL_StrLoss": "362930", "sL_NStrLoss": "341550", "sL_ContLoss": "221420", "geom_point": "0101000020E610000061BCBDD6EB925EC0AAF36E4D36924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297419587000022, 49.139820387000043 ], [ -122.298682091999964, 49.139820589000067 ], [ -122.298674965999979, 49.140154098000075 ], [ -122.298663419999983, 49.140693398000067 ], [ -122.298661224999975, 49.14154780500013 ], [ -122.298658303999929, 49.141764032000054 ], [ -122.298653468999987, 49.142123839000128 ], [ -122.29864950399994, 49.142417299000023 ], [ -122.298651296999978, 49.142739988000145 ], [ -122.298649931999975, 49.143293232000097 ], [ -122.298646813999966, 49.144553498000114 ], [ -122.296723605999901, 49.14456659700005 ], [ -122.295911198999988, 49.144696411000055 ], [ -122.295106389999901, 49.144851692 ], [ -122.294455009999979, 49.144939193000063 ], [ -122.29408930299995, 49.144934690000134 ], [ -122.293720511999965, 49.14491840900012 ], [ -122.293144210999941, 49.144802978000023 ], [ -122.292381483999975, 49.144481995000049 ], [ -122.292488619999943, 49.14434229600004 ], [ -122.292726787, 49.143847598000093 ], [ -122.292739085999983, 49.142726383000088 ], [ -122.292752187999909, 49.141534598000128 ], [ -122.292752397999976, 49.141134254000079 ], [ -122.292752450999927, 49.14099276200001 ], [ -122.292752486000026, 49.140938808000065 ], [ -122.29275261399999, 49.140670093000018 ], [ -122.29276592399998, 49.139815191 ], [ -122.294832905999954, 49.139818794000107 ], [ -122.296022695999966, 49.139819217000102 ], [ -122.296734212999922, 49.139819397000075 ], [ -122.297419587000022, 49.139820387000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126048417", "BldgCostT": "80561667", "sL_LossRatio": "0.779229967420149", "sL_AssetLoss": "794356", "sL_BldgLoss": "618986", "sL_StrLoss": "324506", "sL_NStrLoss": "294480", "sL_ContLoss": "175370", "geom_point": "0101000020E61000002BAA02DE57935EC056DCB05434924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304772606999975, 49.139840707000083 ], [ -122.305612998999919, 49.139839813000052 ], [ -122.305618908999961, 49.140715283000098 ], [ -122.30561981799994, 49.141086185000077 ], [ -122.305620211999951, 49.141250794 ], [ -122.305859076999965, 49.141608699000052 ], [ -122.305924519999948, 49.141838099000047 ], [ -122.305928213999906, 49.142176405000086 ], [ -122.305934005999958, 49.142701906000084 ], [ -122.305930381999971, 49.142851607000026 ], [ -122.305924795999985, 49.143082336000091 ], [ -122.30591057, 49.143669934000037 ], [ -122.305905708999958, 49.143870097000089 ], [ -122.30590082399999, 49.144587406000014 ], [ -122.304686397999888, 49.144565501000038 ], [ -122.304241546999918, 49.14457152500016 ], [ -122.303556884, 49.144580795000117 ], [ -122.302365603999988, 49.144562394000062 ], [ -122.299921355999984, 49.144556557000065 ], [ -122.298646813999966, 49.144553498000114 ], [ -122.298649931999975, 49.143293232000097 ], [ -122.298651296999978, 49.142739988000145 ], [ -122.29864950399994, 49.142417299000023 ], [ -122.298653468999987, 49.142123839000128 ], [ -122.298658303999929, 49.141764032000054 ], [ -122.298661224999975, 49.14154780500013 ], [ -122.298663419999983, 49.140693398000067 ], [ -122.298674965999979, 49.140154098000075 ], [ -122.298682091999964, 49.139820589000067 ], [ -122.299845443999956, 49.139827267000051 ], [ -122.300234963999984, 49.139827538000112 ], [ -122.30049548, 49.139827695000079 ], [ -122.302354027999968, 49.139828808000047 ], [ -122.302784821999978, 49.139830920000058 ], [ -122.303429136999966, 49.139834086000057 ], [ -122.304772606999975, 49.139840707000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121351251", "BldgCostT": "78590001", "sL_LossRatio": "0.793722061430758", "sL_AssetLoss": "659930", "sL_BldgLoss": "523801", "sL_StrLoss": "293292", "sL_NStrLoss": "230509", "sL_ContLoss": "136129", "geom_point": "0101000020E61000000BFBF2D96C935EC0F19220D8C8914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297419587000022, 49.139820387000043 ], [ -122.29742425, 49.138581201000044 ], [ -122.297426483999914, 49.137976396000063 ], [ -122.298691385999945, 49.137981207000109 ], [ -122.299906928999988, 49.137986033000075 ], [ -122.301263585999934, 49.137991205000077 ], [ -122.302598928999942, 49.138005293000028 ], [ -122.303139711999933, 49.138016090000079 ], [ -122.303262543999935, 49.138017054000017 ], [ -122.304800116, 49.138028999000078 ], [ -122.30714920699999, 49.138050990000139 ], [ -122.309179899999947, 49.138045009000031 ], [ -122.30951588799999, 49.138077304000035 ], [ -122.309508785999981, 49.138944193000022 ], [ -122.30949900899995, 49.139153909000051 ], [ -122.30949996899993, 49.139731394000115 ], [ -122.309500698999926, 49.14016888599999 ], [ -122.309240288999959, 49.140168108000125 ], [ -122.308901129999981, 49.140129590000051 ], [ -122.308842203999959, 49.140122890000029 ], [ -122.307922490999914, 49.139880397000134 ], [ -122.30713799499992, 49.139849801000032 ], [ -122.305612998999919, 49.139839813000052 ], [ -122.304772606999975, 49.139840707000083 ], [ -122.303429136999966, 49.139834086000057 ], [ -122.302784821999978, 49.139830920000058 ], [ -122.302354027999968, 49.139828808000047 ], [ -122.30049548, 49.139827695000079 ], [ -122.300234963999984, 49.139827538000112 ], [ -122.299845443999956, 49.139827267000051 ], [ -122.298682091999964, 49.139820589000067 ], [ -122.297419587000022, 49.139820387000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "286915963", "BldgCostT": "182676050", "sL_LossRatio": "0.753636412430895", "sL_AssetLoss": "894288", "sL_BldgLoss": "673968", "sL_StrLoss": "328048", "sL_NStrLoss": "345920", "sL_ContLoss": "220320", "geom_point": "0101000020E6100000D7763CFB84935EC07F3C70A589914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.298691385999945, 49.137981207000109 ], [ -122.298688592999952, 49.136208004000075 ], [ -122.299927202999939, 49.136215501000052 ], [ -122.302288113, 49.136226399000037 ], [ -122.302325785999955, 49.135321802000128 ], [ -122.304022571999937, 49.135316628000119 ], [ -122.304296809, 49.135315801000075 ], [ -122.304782699999961, 49.135314307000058 ], [ -122.304643820999928, 49.13623411600004 ], [ -122.305029861999927, 49.136229228000055 ], [ -122.305336605999941, 49.136225356000075 ], [ -122.305393082999956, 49.136223998000055 ], [ -122.30715639899995, 49.136234998000056 ], [ -122.309529517, 49.136230792000092 ], [ -122.311452989999978, 49.1362436000001 ], [ -122.31144330699999, 49.137143780000038 ], [ -122.311427692999956, 49.138134801000071 ], [ -122.309947787999945, 49.138111 ], [ -122.30951588799999, 49.138077304000035 ], [ -122.309179899999947, 49.138045009000031 ], [ -122.30714920699999, 49.138050990000139 ], [ -122.304800116, 49.138028999000078 ], [ -122.303262543999935, 49.138017054000017 ], [ -122.303139711999933, 49.138016090000079 ], [ -122.302598928999942, 49.138005293000028 ], [ -122.301263585999934, 49.137991205000077 ], [ -122.299906928999988, 49.137986033000075 ], [ -122.298691385999945, 49.137981207000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149109160", "BldgCostT": "83755424", "sL_LossRatio": "0.715780633685234", "sL_AssetLoss": "907359", "sL_BldgLoss": "649470", "sL_StrLoss": "323350", "sL_NStrLoss": "326120", "sL_ContLoss": "257889", "geom_point": "0101000020E6100000C98ED0A615935EC075F54AF65B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297426011999903, 49.137845707000039 ], [ -122.297427616, 49.136189888000061 ], [ -122.296002290999979, 49.136203009000027 ], [ -122.292781799999915, 49.136175905000115 ], [ -122.292811908999951, 49.135282700000026 ], [ -122.293935419999968, 49.13528900400005 ], [ -122.294014690999973, 49.135291711000065 ], [ -122.296078396999974, 49.135282602000117 ], [ -122.296058371999976, 49.13438049000009 ], [ -122.296280872999901, 49.134380900000089 ], [ -122.29993000499999, 49.134387484000065 ], [ -122.300530502999905, 49.134390554000056 ], [ -122.302323671999915, 49.134399590000079 ], [ -122.302332081999921, 49.134983096000013 ], [ -122.302325785999955, 49.135321802000128 ], [ -122.302288113, 49.136226399000037 ], [ -122.299927202999939, 49.136215501000052 ], [ -122.298688592999952, 49.136208004000075 ], [ -122.298691385999945, 49.137981207000109 ], [ -122.297426483999914, 49.137976396000063 ], [ -122.297426011999903, 49.137845707000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248657834", "BldgCostT": "165793334", "sL_LossRatio": "0.81112613482712", "sL_AssetLoss": "1294250", "sL_BldgLoss": "1049800", "sL_StrLoss": "523940", "sL_NStrLoss": "525860", "sL_ContLoss": "244450", "geom_point": "0101000020E6100000F70DA727C7925EC01423C7AD34914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.287525602999921, 49.137026712000093 ], [ -122.287119795999942, 49.136699906000047 ], [ -122.286216434999986, 49.136868364000115 ], [ -122.286217739999969, 49.136777464000083 ], [ -122.285866572999964, 49.136775292000067 ], [ -122.285853737999972, 49.136935999000087 ], [ -122.284754316999951, 49.137141003000053 ], [ -122.284941625999949, 49.136584276000086 ], [ -122.285808795999984, 49.13661422500013 ], [ -122.285812087999943, 49.136385145000098 ], [ -122.285709234999942, 49.136429162000084 ], [ -122.285510975999955, 49.136233362000048 ], [ -122.285402993, 49.136232694000029 ], [ -122.285404493999934, 49.136128202000044 ], [ -122.285225233999952, 49.135951162 ], [ -122.285408198999946, 49.135870520000033 ], [ -122.285412033999975, 49.135603759000091 ], [ -122.285753944999939, 49.135425270000034 ], [ -122.285825872999951, 49.135425715000132 ], [ -122.285826421999928, 49.135387434000108 ], [ -122.286264831999944, 49.135158564000072 ], [ -122.286652228999927, 49.135160958000021 ], [ -122.286655186999951, 49.134954778000107 ], [ -122.286775713999972, 49.134891856000117 ], [ -122.287067338999961, 49.134893657000063 ], [ -122.287069564999953, 49.134738448000071 ], [ -122.287286589999979, 49.134625146000118 ], [ -122.287893680999929, 49.134628892000066 ], [ -122.287897546999943, 49.134359050000086 ], [ -122.289131248999922, 49.134366654000061 ], [ -122.289139266999911, 49.133805884 ], [ -122.289490611999966, 49.133656895000051 ], [ -122.290135991999989, 49.133607 ], [ -122.290246176999958, 49.133563917000075 ], [ -122.290376504999983, 49.133564719000049 ], [ -122.290377247, 49.133512667000048 ], [ -122.290452894999959, 49.133483088000084 ], [ -122.290664048999957, 49.133296621000056 ], [ -122.290791581999983, 49.133297403000071 ], [ -122.290793219999941, 49.133182549000054 ], [ -122.290898015, 49.133090004000046 ], [ -122.291733507999965, 49.133112799000067 ], [ -122.291861789, 49.132843604000115 ], [ -122.292714406999949, 49.132534599000095 ], [ -122.293834001999926, 49.132001898000048 ], [ -122.294011022999953, 49.131993405000081 ], [ -122.294021114999978, 49.131967871000064 ], [ -122.295334185999977, 49.131975892000092 ], [ -122.295341836999938, 49.131436208000132 ], [ -122.29575304599993, 49.131438718000069 ], [ -122.295757661, 49.131112916000106 ], [ -122.295931598, 49.13102489200007 ], [ -122.296343502999932, 49.130928093000129 ], [ -122.297213506999952, 49.13041251100001 ], [ -122.297639901999943, 49.1303427080001 ], [ -122.297974004999944, 49.130012303000093 ], [ -122.298036785999912, 49.130007361000047 ], [ -122.29835957799996, 49.130240960000108 ], [ -122.298716082999974, 49.130505801000012 ], [ -122.299131364999965, 49.130850417000033 ], [ -122.299423196999953, 49.131092592000115 ], [ -122.299921716999947, 49.131484947000033 ], [ -122.300110693999954, 49.131633713000099 ], [ -122.300346617999935, 49.131815521000064 ], [ -122.300454685999966, 49.131898820000089 ], [ -122.301521026, 49.13272061 ], [ -122.30049980599992, 49.133256112000026 ], [ -122.300121813999937, 49.133509907000111 ], [ -122.300097296999951, 49.133549232000099 ], [ -122.299956881999933, 49.133774608000138 ], [ -122.299934352999969, 49.134288307000119 ], [ -122.29993000499999, 49.134387484000065 ], [ -122.296280872999901, 49.134380900000089 ], [ -122.296058371999976, 49.13438049000009 ], [ -122.296078396999974, 49.135282602000117 ], [ -122.294014690999973, 49.135291711000065 ], [ -122.293935419999968, 49.13528900400005 ], [ -122.292811908999951, 49.135282700000026 ], [ -122.292781799999915, 49.136175905000115 ], [ -122.296002290999979, 49.136203009000027 ], [ -122.296010392999918, 49.137116393000063 ], [ -122.292789102999961, 49.137116293000126 ], [ -122.292785274999986, 49.137903999000052 ], [ -122.292051398999917, 49.137909295000092 ], [ -122.290763015, 49.137907292000087 ], [ -122.28951079899997, 49.1379163040001 ], [ -122.288630182999938, 49.137922008000075 ], [ -122.287525602999921, 49.137026712000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170068418", "BldgCostT": "115311668", "sL_LossRatio": "0.844880066322207", "sL_AssetLoss": "653778", "sL_BldgLoss": "552364", "sL_StrLoss": "306020", "sL_NStrLoss": "246344", "sL_ContLoss": "101414", "geom_point": "0101000020E6100000F7F831A4D2925EC0CD39E3C1B7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.296002290999979, 49.136203009000027 ], [ -122.297427616, 49.136189888000061 ], [ -122.297426011999903, 49.137845707000039 ], [ -122.297426483999914, 49.137976396000063 ], [ -122.29742425, 49.138581201000044 ], [ -122.297419587000022, 49.139820387000043 ], [ -122.296734212999922, 49.139819397000075 ], [ -122.296022695999966, 49.139819217000102 ], [ -122.294832905999954, 49.139818794000107 ], [ -122.29276592399998, 49.139815191 ], [ -122.291043562999931, 49.139804454000028 ], [ -122.290930361999983, 49.139713420000092 ], [ -122.290225605999964, 49.139146207000067 ], [ -122.289680798999953, 49.138705491000088 ], [ -122.289217967999946, 49.138360350000028 ], [ -122.288630182999938, 49.137922008000075 ], [ -122.28951079899997, 49.1379163040001 ], [ -122.290763015, 49.137907292000087 ], [ -122.292051398999917, 49.137909295000092 ], [ -122.292785274999986, 49.137903999000052 ], [ -122.292789102999961, 49.137116293000126 ], [ -122.296010392999918, 49.137116393000063 ], [ -122.296002290999979, 49.136203009000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275883416", "BldgCostT": "179906666", "sL_LossRatio": "0.812668343737521", "sL_AssetLoss": "1083794.4", "sL_BldgLoss": "880765.4", "sL_StrLoss": "559839.4", "sL_NStrLoss": "320926", "sL_ContLoss": "203029", "geom_point": "0101000020E6100000BD5C48B0C6915EC01CE8A06C46934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.26414300499998, 49.156695200000051 ], [ -122.26461509799995, 49.155273886 ], [ -122.264822588999934, 49.153698184000035 ], [ -122.264852263999927, 49.15307277900007 ], [ -122.264997894999937, 49.152591982000033 ], [ -122.265041539999984, 49.15245828600009 ], [ -122.265061302999953, 49.151557871000151 ], [ -122.265113709999923, 49.151354790000021 ], [ -122.265184892999983, 49.151290567000025 ], [ -122.265295563999942, 49.151190724000095 ], [ -122.265456053999969, 49.151130781000077 ], [ -122.265496895999917, 49.151115660000102 ], [ -122.265985424999926, 49.150933142000063 ], [ -122.266143688999961, 49.150874013000092 ], [ -122.267165213999974, 49.150499297000032 ], [ -122.267157586999971, 49.150338352000098 ], [ -122.267141792999965, 49.15000549800007 ], [ -122.267107411, 49.149460708000049 ], [ -122.268087577999964, 49.14946319900011 ], [ -122.268798703999934, 49.149145292000071 ], [ -122.269370569999964, 49.148887498000086 ], [ -122.269980694000012, 49.148460712000066 ], [ -122.270630095999977, 49.148022597000086 ], [ -122.27180858699991, 49.147176405000081 ], [ -122.270824412999943, 49.146488804000057 ], [ -122.270092808999948, 49.146942994000078 ], [ -122.269188224999965, 49.147315408000104 ], [ -122.268246200999897, 49.146717599000077 ], [ -122.27024362099999, 49.145405006000018 ], [ -122.271870482999972, 49.144385997000015 ], [ -122.272995714999979, 49.143792187000024 ], [ -122.273252749, 49.143655890000034 ], [ -122.273394925999966, 49.143642360000101 ], [ -122.274158368999977, 49.143564048 ], [ -122.274295652, 49.143402014000074 ], [ -122.274310635999939, 49.143221796000049 ], [ -122.27414522499997, 49.143039066 ], [ -122.273317515999949, 49.143086450000069 ], [ -122.273056684999958, 49.143075957000093 ], [ -122.272994165999975, 49.142970868000113 ], [ -122.273118660999941, 49.142818450000043 ], [ -122.273617113999961, 49.142480955000082 ], [ -122.273901702000032, 49.142100354000071 ], [ -122.273805182, 49.14190008500006 ], [ -122.273655894999948, 49.141755418000109 ], [ -122.273924844999939, 49.141612603000077 ], [ -122.274222031999926, 49.141454766000088 ], [ -122.274221008999959, 49.14152482400015 ], [ -122.276539991, 49.141605120000136 ], [ -122.276511318999937, 49.141963214000036 ], [ -122.279546709999948, 49.142068241000104 ], [ -122.279259017999976, 49.145663896000066 ], [ -122.27650502399996, 49.145568609000044 ], [ -122.276497602999925, 49.145661263000079 ], [ -122.274984086999936, 49.145608865000035 ], [ -122.27497615199999, 49.146152691000097 ], [ -122.275387481999971, 49.146155274000066 ], [ -122.275383547999965, 49.146425113000049 ], [ -122.2757948799999, 49.14642769400011 ], [ -122.275787013999945, 49.146967374000049 ], [ -122.277843699999963, 49.146980256000084 ], [ -122.277839776999926, 49.147250096000015 ], [ -122.27825111699994, 49.147252668000093 ], [ -122.278247196999956, 49.147522509000055 ], [ -122.278658539999952, 49.147525079000104 ], [ -122.278654622, 49.147794919000106 ], [ -122.279065966999937, 49.147797488000109 ], [ -122.279062051999972, 49.148067328000103 ], [ -122.279473396999947, 49.148069896000116 ], [ -122.279456443999905, 49.149238991000111 ], [ -122.279926640999975, 49.149255250000117 ], [ -122.279922032999977, 49.149312834000042 ], [ -122.281922734999966, 49.149381995000105 ], [ -122.281933677999973, 49.148624951000102 ], [ -122.28281157399999, 49.148630408000052 ], [ -122.282839348999985, 49.148282988000034 ], [ -122.282917522999966, 49.148285689000041 ], [ -122.282958505999929, 49.147773030000046 ], [ -122.281617893999965, 49.147726703000039 ], [ -122.281905416999976, 49.144131054000034 ], [ -122.2827399399999, 49.144159895000065 ], [ -122.282753890999956, 49.143985374000053 ], [ -122.283478889999955, 49.144010424000058 ], [ -122.283508479999952, 49.14364019100001 ], [ -122.28776245799996, 49.143787075000063 ], [ -122.287766089999977, 49.14353364800013 ], [ -122.288177397999902, 49.143536184000027 ], [ -122.28819672399996, 49.142186979000066 ], [ -122.287785425999957, 49.142184443000076 ], [ -122.287797026999897, 49.141374920000082 ], [ -122.287385733999926, 49.141372383000046 ], [ -122.287397340999959, 49.14056285900007 ], [ -122.287808626999961, 49.140565397000074 ], [ -122.287812493999937, 49.140295557000023 ], [ -122.287401209999942, 49.14029301900014 ], [ -122.287416686999947, 49.139213654000123 ], [ -122.287827958999941, 49.139216192000113 ], [ -122.287843424999963, 49.138136828000029 ], [ -122.287432159999966, 49.138134290000025 ], [ -122.287439896999899, 49.137594608000065 ], [ -122.287028636999963, 49.137592069000064 ], [ -122.287032507999939, 49.137322228000095 ], [ -122.28662124899995, 49.137319688000069 ], [ -122.286625121999961, 49.137049846000124 ], [ -122.286213866, 49.137047305000095 ], [ -122.286216434999986, 49.136868364000115 ], [ -122.287119795999942, 49.136699906000047 ], [ -122.287525602999921, 49.137026712000093 ], [ -122.288630182999938, 49.137922008000075 ], [ -122.289217967999946, 49.138360350000028 ], [ -122.289680798999953, 49.138705491000088 ], [ -122.290225605999964, 49.139146207000067 ], [ -122.290930361999983, 49.139713420000092 ], [ -122.291043562999931, 49.139804454000028 ], [ -122.29276592399998, 49.139815191 ], [ -122.29275261399999, 49.140670093000018 ], [ -122.292752486000026, 49.140938808000065 ], [ -122.292752450999927, 49.14099276200001 ], [ -122.292752397999976, 49.141134254000079 ], [ -122.292752187999909, 49.141534598000128 ], [ -122.292739085999983, 49.142726383000088 ], [ -122.292726787, 49.143847598000093 ], [ -122.292488619999943, 49.14434229600004 ], [ -122.292381483999975, 49.144481995000049 ], [ -122.291579598999959, 49.144204589000026 ], [ -122.291194587999897, 49.144132809000091 ], [ -122.290748600999962, 49.14413811500004 ], [ -122.290150690999965, 49.144243708000076 ], [ -122.289980117000013, 49.144329668000111 ], [ -122.28987142699998, 49.144384474000027 ], [ -122.289518769999958, 49.144562214000068 ], [ -122.289507921999984, 49.144567699000085 ], [ -122.28913488799999, 49.144774838000089 ], [ -122.28841628099994, 49.145173834000076 ], [ -122.288091585999979, 49.145354131000033 ], [ -122.287831959999977, 49.146380256000029 ], [ -122.287780519999956, 49.147749368000127 ], [ -122.287619679999949, 49.147861628000086 ], [ -122.286814428999961, 49.148423681000068 ], [ -122.286583918999952, 49.148700579000071 ], [ -122.286475522999964, 49.149026779000103 ], [ -122.286067312999961, 49.150453795000033 ], [ -122.2860366419999, 49.150560989000027 ], [ -122.28582492299995, 49.151301044000036 ], [ -122.285687513999974, 49.151731527000123 ], [ -122.285510001999967, 49.152287497000074 ], [ -122.28549022599999, 49.152349495000024 ], [ -122.28547529299999, 49.15248509900011 ], [ -122.285545298999963, 49.152724607000039 ], [ -122.286481173, 49.153934094000093 ], [ -122.286476986999944, 49.154588390000079 ], [ -122.286145093999892, 49.156219196000102 ], [ -122.286091611999936, 49.156970491000024 ], [ -122.286066696999953, 49.157320689000059 ], [ -122.285971080999943, 49.157568479000105 ], [ -122.285931782999938, 49.157670296000141 ], [ -122.285516799999982, 49.158024609000059 ], [ -122.285238881999973, 49.158188992000078 ], [ -122.284888301999942, 49.15818312400004 ], [ -122.283050476999975, 49.158152231000038 ], [ -122.282798309999961, 49.15814799300005 ], [ -122.28006192299999, 49.158140514000095 ], [ -122.277416701999982, 49.158133185000075 ], [ -122.27664890799997, 49.158130982000088 ], [ -122.274790793999969, 49.15812799400009 ], [ -122.274563990999951, 49.158144153000109 ], [ -122.274245996, 49.15816681000009 ], [ -122.273865793999974, 49.158272823000068 ], [ -122.272667535999915, 49.158606907000042 ], [ -122.271689692999985, 49.158879538000058 ], [ -122.270395268999948, 49.159240382000128 ], [ -122.268113031999945, 49.159857133000109 ], [ -122.267445086999928, 49.160032612000123 ], [ -122.266480436000037, 49.160286097000053 ], [ -122.266309883999924, 49.160330890000111 ], [ -122.265712400000012, 49.160375098000046 ], [ -122.264984112999926, 49.160307399000018 ], [ -122.26445290499997, 49.160176284000052 ], [ -122.264112815999937, 49.160023006000067 ], [ -122.263716609999975, 49.159747802000034 ], [ -122.26338531, 49.159467690000049 ], [ -122.263050629999924, 49.159114153000061 ], [ -122.262961815, 49.159020301000041 ], [ -122.262889891999919, 49.158601395000126 ], [ -122.262960189999902, 49.15815230400009 ], [ -122.263131003999931, 49.157939111000083 ], [ -122.263599505999977, 49.157570483000022 ], [ -122.263888584999933, 49.157181193000056 ], [ -122.26414300499998, 49.156695200000051 ] ], [ [ -122.282021105999902, 49.156743754000068 ], [ -122.28214351299999, 49.155213201000088 ], [ -122.281265919999939, 49.155182875000065 ], [ -122.28130815400003, 49.154654893000064 ], [ -122.280068511999957, 49.154612043000093 ], [ -122.280124470999922, 49.153912692000098 ], [ -122.275688203999962, 49.153759229000116 ], [ -122.275771687999921, 49.152717078000173 ], [ -122.274169016999934, 49.152661591000054 ], [ -122.274366531999974, 49.150196832000098 ], [ -122.273271634999972, 49.150189945000072 ], [ -122.273267687999947, 49.150459785000045 ], [ -122.272033590999953, 49.150452011000084 ], [ -122.272053358999926, 49.149102813000084 ], [ -122.270951879999984, 49.149095864000095 ], [ -122.270896433999951, 49.149142961000059 ], [ -122.270818123999931, 49.149174962000096 ], [ -122.270815336999959, 49.14936486600002 ], [ -122.270403980999944, 49.149362267000058 ], [ -122.270400017999961, 49.149632107000109 ], [ -122.269988658999949, 49.149629507000093 ], [ -122.269976764999925, 49.150439026000072 ], [ -122.269565399999934, 49.15043642400007 ], [ -122.269561431999975, 49.150706263000131 ], [ -122.268738697999979, 49.150701055000077 ], [ -122.26873472599999, 49.150970895000086 ], [ -122.267911988, 49.150965681000088 ], [ -122.267904033999955, 49.151505360000016 ], [ -122.267492660999935, 49.151502751000102 ], [ -122.267484704999944, 49.152042430000108 ], [ -122.267073327, 49.152039819000088 ], [ -122.267065363999905, 49.152579497000055 ], [ -122.266653981999966, 49.152576885 ], [ -122.266649997999977, 49.152846724000057 ], [ -122.265827228999981, 49.152841496000121 ], [ -122.265812092999965, 49.153865636000027 ], [ -122.266893190999951, 49.153903149000094 ], [ -122.26695562399999, 49.15312562000009 ], [ -122.269886920999951, 49.153227282000088 ], [ -122.269894033999947, 49.152638761000027 ], [ -122.27045823399996, 49.152647662000099 ], [ -122.270450495999953, 49.153246819000053 ], [ -122.272425565999953, 49.153315262000078 ], [ -122.272387253999909, 49.153793075000067 ], [ -122.272767683999916, 49.153806254000038 ], [ -122.272729655999967, 49.154280566000104 ], [ -122.273061103999908, 49.154292047000041 ], [ -122.27296063799993, 49.155545206000077 ], [ -122.27476887899995, 49.15560782400005 ], [ -122.274797887999966, 49.15524581500005 ], [ -122.280268109999966, 49.155435057000048 ], [ -122.280258011999933, 49.155561255000073 ], [ -122.281486775999952, 49.155603725000063 ], [ -122.28139731, 49.156722199000058 ], [ -122.282021105999902, 49.156743754000068 ] ], [ [ -122.272484467999973, 49.147756207000036 ], [ -122.272895811999916, 49.147758798000027 ], [ -122.272899759999945, 49.147488958000103 ], [ -122.272488418999927, 49.147486367000056 ], [ -122.272484467999973, 49.147756207000036 ], [ -122.272073123999959, 49.147753614000109 ], [ -122.272069172999977, 49.148023453000093 ], [ -122.271839380999921, 49.14802200500008 ], [ -122.271701819999961, 49.148291002000093 ], [ -122.272065219999988, 49.148293294000091 ], [ -122.272061264999977, 49.148563134 ], [ -122.272472615999959, 49.148565726000122 ], [ -122.272484467999973, 49.147756207000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11806083", "BldgCostT": "7878333", "sL_LossRatio": "0.765813507723531", "sL_AssetLoss": "88690", "sL_BldgLoss": "67920", "sL_StrLoss": "40880", "sL_NStrLoss": "27040", "sL_ContLoss": "20770", "geom_point": "0101000020E610000011EC6C8623925EC069BDDF68C7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.284754316999951, 49.137141003000053 ], [ -122.285853737999972, 49.136935999000087 ], [ -122.285592070999883, 49.140212360000106 ], [ -122.280123615999969, 49.140023384000088 ], [ -122.280210441999941, 49.138937885000054 ], [ -122.280362850999907, 49.138877620000123 ], [ -122.280890527999972, 49.138668943000056 ], [ -122.28132751, 49.138496170000089 ], [ -122.284333671999917, 49.137307346000064 ], [ -122.284754316999951, 49.137141003000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106574251", "BldgCostT": "72345001", "sL_LossRatio": "0.788031060836388", "sL_AssetLoss": "766367", "sL_BldgLoss": "603921", "sL_StrLoss": "322049", "sL_NStrLoss": "281872", "sL_ContLoss": "162446", "geom_point": "0101000020E61000000F55E70724915EC05F89A31FCB924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.263013239999935, 49.147257063000012 ], [ -122.263813987, 49.146932426000077 ], [ -122.264814043999976, 49.146418586000046 ], [ -122.266124600999916, 49.145745170000119 ], [ -122.266405399999925, 49.145600884000039 ], [ -122.266894531999938, 49.145342204000016 ], [ -122.268564603999948, 49.144458900000082 ], [ -122.273655894999948, 49.141755418000109 ], [ -122.273805182, 49.14190008500006 ], [ -122.273901702000032, 49.142100354000071 ], [ -122.273617113999961, 49.142480955000082 ], [ -122.273118660999941, 49.142818450000043 ], [ -122.272994165999975, 49.142970868000113 ], [ -122.273056684999958, 49.143075957000093 ], [ -122.273317515999949, 49.143086450000069 ], [ -122.27414522499997, 49.143039066 ], [ -122.274310635999939, 49.143221796000049 ], [ -122.274295652, 49.143402014000074 ], [ -122.274158368999977, 49.143564048 ], [ -122.273394925999966, 49.143642360000101 ], [ -122.273252749, 49.143655890000034 ], [ -122.272995714999979, 49.143792187000024 ], [ -122.271870482999972, 49.144385997000015 ], [ -122.27024362099999, 49.145405006000018 ], [ -122.268246200999897, 49.146717599000077 ], [ -122.269188224999965, 49.147315408000104 ], [ -122.270092808999948, 49.146942994000078 ], [ -122.270824412999943, 49.146488804000057 ], [ -122.27180858699991, 49.147176405000081 ], [ -122.270630095999977, 49.148022597000086 ], [ -122.269980694000012, 49.148460712000066 ], [ -122.269370569999964, 49.148887498000086 ], [ -122.268798703999934, 49.149145292000071 ], [ -122.268087577999964, 49.14946319900011 ], [ -122.267107411, 49.149460708000049 ], [ -122.267141792999965, 49.15000549800007 ], [ -122.263086097000013, 49.150103499000053 ], [ -122.263046290999981, 49.148549709000093 ], [ -122.263013239999935, 49.147257063000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82452916", "BldgCostT": "52981666", "sL_LossRatio": "0.770339451100348", "sL_AssetLoss": "470760", "sL_BldgLoss": "362645", "sL_StrLoss": "197337", "sL_NStrLoss": "165308", "sL_ContLoss": "108115", "geom_point": "0101000020E610000085AD5592A7905EC00922BD6E32934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.262326553999941, 49.147496737 ], [ -122.263013239999935, 49.147257063000012 ], [ -122.263046290999981, 49.148549709000093 ], [ -122.263086097000013, 49.150103499000053 ], [ -122.263133492999913, 49.150230490000133 ], [ -122.263137254999918, 49.150528862000044 ], [ -122.26314331499999, 49.151012306000027 ], [ -122.261668022, 49.151027800000122 ], [ -122.26153521499999, 49.151056010000104 ], [ -122.260621699999945, 49.151250109000046 ], [ -122.258279676999933, 49.151470693000114 ], [ -122.256220187999958, 49.151708204000045 ], [ -122.255176587999941, 49.151691714000044 ], [ -122.255189779999981, 49.15081329300007 ], [ -122.259476412999959, 49.150095296000117 ], [ -122.259461390999903, 49.149003216000033 ], [ -122.260370990999959, 49.148656206000084 ], [ -122.260524403999966, 49.148658803000075 ], [ -122.260523317999912, 49.148126007 ], [ -122.262326553999941, 49.147496737 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107615228", "BldgCostT": "69264857", "sL_LossRatio": "0.758708754891824", "sL_AssetLoss": "611224", "sL_BldgLoss": "463741", "sL_StrLoss": "248185", "sL_NStrLoss": "215556", "sL_ContLoss": "147483", "geom_point": "0101000020E61000002036A2C5A3905EC06B219607C8934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.255158462999958, 49.158115643000087 ], [ -122.255129871999941, 49.156816392000096 ], [ -122.254393711999953, 49.156813294000109 ], [ -122.253237101999957, 49.156819891000019 ], [ -122.252389825999984, 49.156812997000046 ], [ -122.251850201999915, 49.156808594000111 ], [ -122.25186121599998, 49.156024707000036 ], [ -122.255100995999953, 49.156001395000033 ], [ -122.25511305099991, 49.155551509000077 ], [ -122.255125595999985, 49.155082785000047 ], [ -122.255130615999946, 49.154750789000033 ], [ -122.255144703999946, 49.15382423300008 ], [ -122.257360030999948, 49.153832477000073 ], [ -122.257356263999966, 49.153096253000086 ], [ -122.256287061999899, 49.153091498000052 ], [ -122.255138796999972, 49.15326790200001 ], [ -122.255147780999962, 49.152825981 ], [ -122.255162897000019, 49.152083389000047 ], [ -122.255176587999941, 49.151691714000044 ], [ -122.256220187999958, 49.151708204000045 ], [ -122.258279676999933, 49.151470693000114 ], [ -122.260621699999945, 49.151250109000046 ], [ -122.26153521499999, 49.151056010000104 ], [ -122.261668022, 49.151027800000122 ], [ -122.26314331499999, 49.151012306000027 ], [ -122.263137254999918, 49.150528862000044 ], [ -122.263133492999913, 49.150230490000133 ], [ -122.263086097000013, 49.150103499000053 ], [ -122.267141792999965, 49.15000549800007 ], [ -122.267157586999971, 49.150338352000098 ], [ -122.267165213999974, 49.150499297000032 ], [ -122.266143688999961, 49.150874013000092 ], [ -122.265985424999926, 49.150933142000063 ], [ -122.265496895999917, 49.151115660000102 ], [ -122.265456053999969, 49.151130781000077 ], [ -122.265295563999942, 49.151190724000095 ], [ -122.265184892999983, 49.151290567000025 ], [ -122.265113709999923, 49.151354790000021 ], [ -122.265061302999953, 49.151557871000151 ], [ -122.265041539999984, 49.15245828600009 ], [ -122.264997894999937, 49.152591982000033 ], [ -122.264852263999927, 49.15307277900007 ], [ -122.264822588999934, 49.153698184000035 ], [ -122.26461509799995, 49.155273886 ], [ -122.26414300499998, 49.156695200000051 ], [ -122.263888584999933, 49.157181193000056 ], [ -122.263599505999977, 49.157570483000022 ], [ -122.263131003999931, 49.157939111000083 ], [ -122.262960189999902, 49.15815230400009 ], [ -122.26080454199996, 49.158392399000029 ], [ -122.260597988999933, 49.158415398000059 ], [ -122.259415458999953, 49.158418090000048 ], [ -122.258757204999952, 49.158419588000079 ], [ -122.258428086, 49.158420346000092 ], [ -122.257358393999979, 49.158422759000096 ], [ -122.256094702999988, 49.158425590000078 ], [ -122.255772824999937, 49.158458097000043 ], [ -122.255696503999971, 49.158465806000052 ], [ -122.255424111999957, 49.158442803000099 ], [ -122.255254703999938, 49.158348588000138 ], [ -122.255159291999959, 49.15815421000012 ], [ -122.255158462999958, 49.158115643000087 ] ], [ [ -122.262443737999945, 49.156704925000092 ], [ -122.262510526999975, 49.155874210000079 ], [ -122.262065561, 49.155858753000118 ], [ -122.262026810999942, 49.156340680000021 ], [ -122.256726317999934, 49.156156417000147 ], [ -122.256726287999953, 49.156158427000065 ], [ -122.259219230000028, 49.156245122000044 ], [ -122.259083977999964, 49.157925850000034 ], [ -122.259143001999931, 49.157926228000072 ], [ -122.259197310999966, 49.157251346000102 ], [ -122.259628950999982, 49.157266351000018 ], [ -122.259675922999989, 49.156682556000064 ], [ -122.260807458999935, 49.156721882000035 ], [ -122.260813378999941, 49.156648283000038 ], [ -122.262443737999945, 49.156704925000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74537416", "BldgCostT": "50461666", "sL_LossRatio": "0.863236100655069", "sL_AssetLoss": "293557", "sL_BldgLoss": "253409", "sL_StrLoss": "162461", "sL_NStrLoss": "90948", "sL_ContLoss": "40148", "geom_point": "0101000020E610000041461F773A905EC0495765B616944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.254072760999989, 49.160592227000024 ], [ -122.249723477999964, 49.159440463000074 ], [ -122.249671109999966, 49.15934040000009 ], [ -122.249701593999959, 49.159165692000052 ], [ -122.249836299999956, 49.158991899000043 ], [ -122.250050813999962, 49.158832605000022 ], [ -122.250110224999972, 49.158798221000019 ], [ -122.250796014999949, 49.158401604000062 ], [ -122.25122959199993, 49.158295903000166 ], [ -122.251675990999942, 49.158253697000099 ], [ -122.251791456, 49.158070972000075 ], [ -122.251800185999926, 49.158057096000029 ], [ -122.251775785999939, 49.15795170500013 ], [ -122.25175752399997, 49.157872599000015 ], [ -122.25160848699997, 49.157713310000112 ], [ -122.25113549699995, 49.157507496000086 ], [ -122.250625788999983, 49.157485197000021 ], [ -122.24963090199995, 49.157594795000151 ], [ -122.249430304, 49.15756520700009 ], [ -122.249281710999981, 49.157485310000062 ], [ -122.24920862, 49.157252792000143 ], [ -122.249325508999945, 49.156857587000069 ], [ -122.248768605999899, 49.156857614000046 ], [ -122.248550709999975, 49.156857605000042 ], [ -122.24856857499995, 49.154393272000029 ], [ -122.248571112999969, 49.154042744 ], [ -122.248576679999971, 49.153272689000083 ], [ -122.248987482999937, 49.153272293000065 ], [ -122.251943491999953, 49.153269295000086 ], [ -122.25193151199997, 49.15285691000004 ], [ -122.252131820999949, 49.152805302000068 ], [ -122.252938101999945, 49.152754101000056 ], [ -122.25294100399999, 49.153262607000073 ], [ -122.255138796999972, 49.15326790200001 ], [ -122.256287061999899, 49.153091498000052 ], [ -122.257356263999966, 49.153096253000086 ], [ -122.257360030999948, 49.153832477000073 ], [ -122.255144703999946, 49.15382423300008 ], [ -122.255130615999946, 49.154750789000033 ], [ -122.255125595999985, 49.155082785000047 ], [ -122.25511305099991, 49.155551509000077 ], [ -122.255100995999953, 49.156001395000033 ], [ -122.25186121599998, 49.156024707000036 ], [ -122.251850201999915, 49.156808594000111 ], [ -122.252389825999984, 49.156812997000046 ], [ -122.253237101999957, 49.156819891000019 ], [ -122.254393711999953, 49.156813294000109 ], [ -122.255129871999941, 49.156816392000096 ], [ -122.255158462999958, 49.158115643000087 ], [ -122.255159291999959, 49.15815421000012 ], [ -122.255254703999938, 49.158348588000138 ], [ -122.255424111999957, 49.158442803000099 ], [ -122.255696503999971, 49.158465806000052 ], [ -122.255772824999937, 49.158458097000043 ], [ -122.256094702999988, 49.158425590000078 ], [ -122.257358393999979, 49.158422759000096 ], [ -122.258428086, 49.158420346000092 ], [ -122.258757204999952, 49.158419588000079 ], [ -122.259415458999953, 49.158418090000048 ], [ -122.260597988999933, 49.158415398000059 ], [ -122.260619419999983, 49.159240899000061 ], [ -122.260673799999893, 49.159382606000051 ], [ -122.260827329, 49.159578150000065 ], [ -122.260862881999984, 49.159623511000035 ], [ -122.261142982999957, 49.159858600000092 ], [ -122.261971760999955, 49.160383174000103 ], [ -122.26138629899999, 49.160584402000083 ], [ -122.260932811999936, 49.160644195000053 ], [ -122.259987988999967, 49.1605217010001 ], [ -122.259219704999964, 49.160524605000042 ], [ -122.258925568, 49.160627991000119 ], [ -122.25905617699999, 49.159005126000125 ], [ -122.258997151999964, 49.159004748000086 ], [ -122.258929878999965, 49.15984064500006 ], [ -122.258317427999955, 49.159819351000117 ], [ -122.258313538999957, 49.160079815000088 ], [ -122.257902093999945, 49.160077172000051 ], [ -122.257898061999938, 49.160347010000045 ], [ -122.256663724999925, 49.16033907100006 ], [ -122.256667761999921, 49.160069232000076 ], [ -122.256256319999935, 49.160066583000038 ], [ -122.256261092999978, 49.159747832000157 ], [ -122.255006905999963, 49.159704192000106 ], [ -122.254992521999981, 49.159882738000128 ], [ -122.254613342999946, 49.159869542000152 ], [ -122.254603245999988, 49.160542349000124 ], [ -122.254531868999962, 49.160595192000045 ], [ -122.25435922699999, 49.16059407800001 ], [ -122.254072760999989, 49.160592227000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38856917", "BldgCostT": "26116667", "sL_LossRatio": "0.775373448468093", "sL_AssetLoss": "263691", "sL_BldgLoss": "204459", "sL_StrLoss": "108738", "sL_NStrLoss": "95721", "sL_ContLoss": "59232", "geom_point": "0101000020E6100000D2C78D6C388F5EC0D7570D784F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.234459616999956, 49.154363407000112 ], [ -122.234394292999951, 49.154156899000057 ], [ -122.23467289200002, 49.154006007000064 ], [ -122.235729878999962, 49.153823695000085 ], [ -122.236020883999956, 49.153681207000027 ], [ -122.236534512999953, 49.153316599000057 ], [ -122.236566507999939, 49.153019004000022 ], [ -122.236028309999966, 49.152322487000085 ], [ -122.235270186, 49.151688802000152 ], [ -122.233993495999968, 49.150915401000169 ], [ -122.233455408999944, 49.150237499000092 ], [ -122.231767382999948, 49.150234696000069 ], [ -122.230745909999925, 49.15074019300009 ], [ -122.229664084999939, 49.151443790000059 ], [ -122.229405098999919, 49.15140681100015 ], [ -122.228877795999935, 49.150854208000091 ], [ -122.228605108999915, 49.15082569700008 ], [ -122.226498212999971, 49.151369695000042 ], [ -122.226084004999976, 49.151554899000125 ], [ -122.225767691000016, 49.151526392000086 ], [ -122.225739781999948, 49.151470917000026 ], [ -122.225521172999919, 49.151036377000061 ], [ -122.22605192099995, 49.151054995000038 ], [ -122.226024752999948, 49.151389689000027 ], [ -122.226040645999959, 49.151390246000084 ], [ -122.226391597999907, 49.1514025560001 ], [ -122.226400426999987, 49.15129378300005 ], [ -122.226455804999929, 49.150611505000029 ], [ -122.226717105999924, 49.150546393000099 ], [ -122.22715121499999, 49.150561617000101 ], [ -122.227159691999972, 49.150457156000073 ], [ -122.22793498899992, 49.150484341000066 ], [ -122.227954981999957, 49.150237923000034 ], [ -122.228133701999965, 49.150193386000062 ], [ -122.228357192999979, 49.150050908000132 ], [ -122.228346898999973, 49.149937623000014 ], [ -122.228410021999977, 49.149939836000108 ], [ -122.228426079999977, 49.149741884000072 ], [ -122.231853545999954, 49.149861985000072 ], [ -122.23203024399993, 49.149868174000076 ], [ -122.232034532999975, 49.149815253000028 ], [ -122.232116382999948, 49.148805270000061 ], [ -122.232625083999949, 49.148823085000103 ], [ -122.232661384000011, 49.148375082000015 ], [ -122.236867542999931, 49.148522292000081 ], [ -122.237003892999979, 49.146837582000089 ], [ -122.237986471999974, 49.146871947000086 ], [ -122.238108029000017, 49.145369504000065 ], [ -122.241770164999977, 49.145497507000101 ], [ -122.243133825999948, 49.145893703000063 ], [ -122.243547772999989, 49.145921656000027 ], [ -122.243286446999932, 49.149156152000074 ], [ -122.242303814999957, 49.149121835000052 ], [ -122.242260401999914, 49.149658996000028 ], [ -122.242182383999975, 49.150624274000052 ], [ -122.23858618299991, 49.150498605000081 ], [ -122.237976018999987, 49.150477271000049 ], [ -122.237876034999914, 49.15171288200002 ], [ -122.238564885999921, 49.151736967000033 ], [ -122.241323911999984, 49.151833389000082 ], [ -122.24111603599998, 49.154404488000061 ], [ -122.241185075999951, 49.15440689900003 ], [ -122.241055703999976, 49.156006907000055 ], [ -122.240894887999957, 49.15603401000007 ], [ -122.240397199, 49.156327388000101 ], [ -122.240213685999976, 49.156686292000089 ], [ -122.24016301099995, 49.157288800000082 ], [ -122.239909107999907, 49.15763769900007 ], [ -122.239524582999977, 49.157780095000149 ], [ -122.239030493999948, 49.157775793000113 ], [ -122.23874459399994, 49.157666189000118 ], [ -122.238574789000012, 49.157116400000049 ], [ -122.238069706999951, 49.156879992000079 ], [ -122.237849994999934, 49.156868593000098 ], [ -122.237278987999957, 49.156603703 ], [ -122.236745686999924, 49.156474090000067 ], [ -122.235975100999937, 49.155750594000054 ], [ -122.235308403999937, 49.155448711000084 ], [ -122.234812202999976, 49.154662503000083 ], [ -122.234485266999968, 49.154385179000087 ], [ -122.234459616999956, 49.154363407000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70836083", "BldgCostT": "46433333", "sL_LossRatio": "0.786890555126617", "sL_AssetLoss": "385966", "sL_BldgLoss": "303713", "sL_StrLoss": "173135", "sL_NStrLoss": "130578", "sL_ContLoss": "82253", "geom_point": "0101000020E610000011CE3CF311905EC02D1E490F64934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.246274659999983, 49.160418093000047 ], [ -122.246354495999981, 49.159429461000045 ], [ -122.245688057999956, 49.159406212000079 ], [ -122.245695065999925, 49.159319430000011 ], [ -122.245068512999921, 49.159297568000056 ], [ -122.244676997999989, 49.158965100000103 ], [ -122.243148610999981, 49.157488088 ], [ -122.242964061999928, 49.157200639000109 ], [ -122.243044720999976, 49.156202630000031 ], [ -122.24232490199995, 49.15619791000006 ], [ -122.242337250000034, 49.155388397000046 ], [ -122.243110113999947, 49.155393466000127 ], [ -122.243127278999907, 49.155181053000042 ], [ -122.243659505000025, 49.155199635000017 ], [ -122.243661958999979, 49.15516926599999 ], [ -122.244245281999952, 49.155189628000045 ], [ -122.244318319999962, 49.154285559000044 ], [ -122.243969411999942, 49.154273380000056 ], [ -122.244259883999987, 49.150677868000102 ], [ -122.24592571099997, 49.150736006000081 ], [ -122.245982450999975, 49.150033307000122 ], [ -122.248809850999947, 49.150131926000029 ], [ -122.24881779599994, 49.150033447000077 ], [ -122.244476345999914, 49.150005120000088 ], [ -122.244481206999978, 49.149685412000075 ], [ -122.244488655999973, 49.149195606000049 ], [ -122.24736812499998, 49.149214411000152 ], [ -122.24737221299999, 49.148944573000072 ], [ -122.248904840999927, 49.148954552000077 ], [ -122.248924481999978, 49.148711099000067 ], [ -122.245858231999975, 49.148604144000075 ], [ -122.246064882999974, 49.146044631000024 ], [ -122.246120100999974, 49.146038900000043 ], [ -122.24726700799999, 49.145541903000044 ], [ -122.247582503000032, 49.145490605000113 ], [ -122.249905803999965, 49.146036101000036 ], [ -122.250040683999941, 49.146154301000081 ], [ -122.249955781999958, 49.146298103000071 ], [ -122.250578998999941, 49.146894907000103 ], [ -122.251210789999973, 49.147753714000039 ], [ -122.252433891999928, 49.148462890000125 ], [ -122.253891187999983, 49.149066795000074 ], [ -122.25405660399997, 49.148959988000115 ], [ -122.254074809999906, 49.148770601000059 ], [ -122.253612596999943, 49.148498509000021 ], [ -122.251498790999946, 49.147638308000097 ], [ -122.251162904, 49.147222409000015 ], [ -122.251275995999947, 49.14705299400002 ], [ -122.251946909999944, 49.147048692000119 ], [ -122.254200818999919, 49.147575702000047 ], [ -122.255278902999962, 49.148058510000041 ], [ -122.255830106999923, 49.147810589000109 ], [ -122.256488691999962, 49.147841998000025 ], [ -122.257116993999972, 49.147998611000034 ], [ -122.257583406999942, 49.148001503000074 ], [ -122.25811940600002, 49.147897501000109 ], [ -122.258495748999977, 49.147874143000088 ], [ -122.258494809999959, 49.147937078000034 ], [ -122.259317496999969, 49.147942358000059 ], [ -122.259319720999926, 49.14779317600005 ], [ -122.25975945699993, 49.147675328000119 ], [ -122.260144200999974, 49.147677794000046 ], [ -122.260146099999972, 49.147550194000097 ], [ -122.260418589999944, 49.147411454000071 ], [ -122.260422014999975, 49.147409709000016 ], [ -122.26138223699995, 49.147415856000038 ], [ -122.261388067999945, 49.147023575000098 ], [ -122.262811971999895, 49.146615398000094 ], [ -122.263450933999962, 49.146619475000065 ], [ -122.263453720999934, 49.146431426000078 ], [ -122.263585686999974, 49.14639359400006 ], [ -122.264142106999913, 49.146084154000036 ], [ -122.264281590999971, 49.146085042000067 ], [ -122.264282976999979, 49.145991383000108 ], [ -122.26523350199993, 49.145279810000055 ], [ -122.265468383999959, 49.145147397000088 ], [ -122.26604649599993, 49.144997786000083 ], [ -122.266758506999935, 49.144481610000085 ], [ -122.266773452999985, 49.144481705000054 ], [ -122.266773615999952, 49.144470656000124 ], [ -122.267127514999956, 49.144214088000041 ], [ -122.267600059999921, 49.144217085000115 ], [ -122.267604037999945, 49.143947246000074 ], [ -122.268426659999975, 49.143952462000108 ], [ -122.268433420999912, 49.143493191000054 ], [ -122.268582324999912, 49.143413718000026 ], [ -122.269668524999958, 49.14342059300003 ], [ -122.269672490999966, 49.143150753000043 ], [ -122.270083795999966, 49.143153355000045 ], [ -122.270087758999949, 49.142883515000051 ], [ -122.270537933999975, 49.142886359000101 ], [ -122.270573284999941, 49.142445567000102 ], [ -122.272653032999969, 49.141470502000047 ], [ -122.272987644999901, 49.1414820970001 ], [ -122.272990127999918, 49.141312453000076 ], [ -122.273620816999966, 49.141016742000019 ], [ -122.274228372999957, 49.141020561000047 ], [ -122.274222031999926, 49.141454766000088 ], [ -122.273924844999939, 49.141612603000077 ], [ -122.273655894999948, 49.141755418000109 ], [ -122.268564603999948, 49.144458900000082 ], [ -122.266894531999938, 49.145342204000016 ], [ -122.266405399999925, 49.145600884000039 ], [ -122.266124600999916, 49.145745170000119 ], [ -122.264814043999976, 49.146418586000046 ], [ -122.263813987, 49.146932426000077 ], [ -122.263013239999935, 49.147257063000012 ], [ -122.262326553999941, 49.147496737 ], [ -122.260523317999912, 49.148126007 ], [ -122.260524403999966, 49.148658803000075 ], [ -122.260370990999959, 49.148656206000084 ], [ -122.259461390999903, 49.149003216000033 ], [ -122.259476412999959, 49.150095296000117 ], [ -122.255189779999981, 49.15081329300007 ], [ -122.255176587999941, 49.151691714000044 ], [ -122.255162897000019, 49.152083389000047 ], [ -122.255147780999962, 49.152825981 ], [ -122.255138796999972, 49.15326790200001 ], [ -122.25294100399999, 49.153262607000073 ], [ -122.252938101999945, 49.152754101000056 ], [ -122.252131820999949, 49.152805302000068 ], [ -122.25193151199997, 49.15285691000004 ], [ -122.251943491999953, 49.153269295000086 ], [ -122.248987482999937, 49.153272293000065 ], [ -122.248576679999971, 49.153272689000083 ], [ -122.248571112999969, 49.154042744 ], [ -122.24856857499995, 49.154393272000029 ], [ -122.248550709999975, 49.156857605000042 ], [ -122.248768605999899, 49.156857614000046 ], [ -122.249325508999945, 49.156857587000069 ], [ -122.24920862, 49.157252792000143 ], [ -122.249281710999981, 49.157485310000062 ], [ -122.249430304, 49.15756520700009 ], [ -122.24963090199995, 49.157594795000151 ], [ -122.250625788999983, 49.157485197000021 ], [ -122.25113549699995, 49.157507496000086 ], [ -122.25160848699997, 49.157713310000112 ], [ -122.25175752399997, 49.157872599000015 ], [ -122.251775785999939, 49.15795170500013 ], [ -122.251800185999926, 49.158057096000029 ], [ -122.251791456, 49.158070972000075 ], [ -122.251675990999942, 49.158253697000099 ], [ -122.25122959199993, 49.158295903000166 ], [ -122.250796014999949, 49.158401604000062 ], [ -122.250110224999972, 49.158798221000019 ], [ -122.250050813999962, 49.158832605000022 ], [ -122.249836299999956, 49.158991899000043 ], [ -122.249701593999959, 49.159165692000052 ], [ -122.249671109999966, 49.15934040000009 ], [ -122.249723477999964, 49.159440463000074 ], [ -122.248536718999929, 49.159753654000042 ], [ -122.24815229, 49.159904308000065 ], [ -122.247322069999939, 49.160229651000101 ], [ -122.246459688999948, 49.160793703000074 ], [ -122.246274659999983, 49.160418093000047 ] ], [ [ -122.252264525000015, 49.151893628000039 ], [ -122.252271875999924, 49.151405188000062 ], [ -122.25186050500001, 49.151402524000048 ], [ -122.25186456699997, 49.151132686000032 ], [ -122.251453198999982, 49.151130020000018 ], [ -122.251441000999989, 49.151939535000039 ], [ -122.251313688999971, 49.151938709000049 ], [ -122.25129194099999, 49.152208432000101 ], [ -122.251457169999981, 49.152209504000083 ], [ -122.251849412999945, 49.152139119000026 ], [ -122.251852378, 49.151942201000089 ], [ -122.252227168999951, 49.151944629000084 ], [ -122.252264525000015, 49.151893628000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.822900365153886", "sL_AssetLoss": "7668", "sL_BldgLoss": "6310", "sL_StrLoss": "3700", "sL_NStrLoss": "2610", "sL_ContLoss": "1358", "geom_point": "0101000020E61000006DFC2E11148F5EC08BAABAA26F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.235262193999944, 49.14414050400007 ], [ -122.235307200999955, 49.143898296000053 ], [ -122.235188389999962, 49.143627703000078 ], [ -122.235009984, 49.14357220200003 ], [ -122.234653694999963, 49.143652007000128 ], [ -122.23457250199999, 49.143579311000039 ], [ -122.234739503999947, 49.143355695000032 ], [ -122.235250988, 49.143142089000136 ], [ -122.235607834999911, 49.143118324000149 ], [ -122.235992883999941, 49.143058100000076 ], [ -122.236729100999938, 49.143260299000104 ], [ -122.236660889999911, 49.143331495000055 ], [ -122.236110300999925, 49.143445395000114 ], [ -122.23625079599995, 49.144066407000032 ], [ -122.237155294999965, 49.144072104000067 ], [ -122.237472745999952, 49.143959089000063 ], [ -122.237417357999945, 49.144643606000031 ], [ -122.231948579999965, 49.144452184000016 ], [ -122.231954853000033, 49.144374779000024 ], [ -122.233407288999942, 49.144354094000086 ], [ -122.235001707999984, 49.14423869900002 ], [ -122.235167100999917, 49.144176108000075 ], [ -122.235262193999944, 49.14414050400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.838123493417393", "sL_AssetLoss": "10786", "sL_BldgLoss": "9040", "sL_StrLoss": "5350", "sL_NStrLoss": "3690", "sL_ContLoss": "1746", "geom_point": "0101000020E61000002BB90EFE13925EC04BAA19C69B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.28356479199999, 49.136536710000087 ], [ -122.284941625999949, 49.136584276000086 ], [ -122.284754316999951, 49.137141003000053 ], [ -122.284333671999917, 49.137307346000064 ], [ -122.28132751, 49.138496170000089 ], [ -122.280890527999972, 49.138668943000056 ], [ -122.280362850999907, 49.138877620000123 ], [ -122.280210441999941, 49.138937885000054 ], [ -122.280285950999925, 49.137993819000094 ], [ -122.28356479199999, 49.136536710000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38944083", "BldgCostT": "24648333", "sL_LossRatio": "0.760354769311975", "sL_AssetLoss": "250078", "sL_BldgLoss": "190148", "sL_StrLoss": "101380", "sL_NStrLoss": "88768", "sL_ContLoss": "59930", "geom_point": "0101000020E6100000A1915364C28E5EC0BFBB21CFA6934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.231092616999973, 49.154880407000078 ], [ -122.23096919399994, 49.154871897000049 ], [ -122.230844487999917, 49.154987199000068 ], [ -122.230891892000017, 49.155835199000059 ], [ -122.230908890999956, 49.156139402000065 ], [ -122.230620197999954, 49.156163604000014 ], [ -122.229954902999978, 49.155719290000036 ], [ -122.229871393999971, 49.155809008000055 ], [ -122.230097004999962, 49.156059158000069 ], [ -122.230139875999896, 49.156106693000062 ], [ -122.23002958899994, 49.156223498000074 ], [ -122.229824284999935, 49.156213502000135 ], [ -122.228482274000015, 49.155146674000065 ], [ -122.22837487799994, 49.155061297000067 ], [ -122.228124795999975, 49.154312200000057 ], [ -122.228332882999922, 49.154298211000054 ], [ -122.228358316999987, 49.154296500000051 ], [ -122.228550577999954, 49.15436909200011 ], [ -122.228910286999962, 49.154965900000107 ], [ -122.229088123999944, 49.155011405000089 ], [ -122.229199004999927, 49.1549045880001 ], [ -122.228851598999981, 49.154416101000066 ], [ -122.228676089999965, 49.154208200000056 ], [ -122.228274092999982, 49.154166365000016 ], [ -122.228128305999945, 49.154151197000019 ], [ -122.22799270299997, 49.153978897000044 ], [ -122.227719882999935, 49.153887794000134 ], [ -122.227318214999954, 49.153236900000117 ], [ -122.22743019399999, 49.152284094000031 ], [ -122.227804588999973, 49.151989306000047 ], [ -122.228107108999922, 49.152000697000034 ], [ -122.228212902999985, 49.152044452000041 ], [ -122.228747597999984, 49.152265609000082 ], [ -122.229227900999945, 49.15217870900009 ], [ -122.22944990399999, 49.152009210000138 ], [ -122.229739384999945, 49.152002100000097 ], [ -122.231011606999957, 49.153018985000067 ], [ -122.231254605999936, 49.153308088000117 ], [ -122.231416061999951, 49.153351912000097 ], [ -122.231459077999901, 49.153363592000048 ], [ -122.2314889, 49.153228301000077 ], [ -122.2312713, 49.153110105000053 ], [ -122.231221275999985, 49.152785394000034 ], [ -122.230340006999967, 49.15210610200009 ], [ -122.230084707999978, 49.151771396000093 ], [ -122.230625919999952, 49.151415301000029 ], [ -122.232665993999888, 49.15061921300007 ], [ -122.233133215999942, 49.150676193000059 ], [ -122.233662107000029, 49.151056395000083 ], [ -122.233876710999965, 49.1513825930001 ], [ -122.233857089999972, 49.151714415000157 ], [ -122.233391921999981, 49.152476405000058 ], [ -122.233116894999981, 49.152529096000094 ], [ -122.232812911999943, 49.152715600000185 ], [ -122.232427008999963, 49.152775407000036 ], [ -122.232032398999976, 49.152584608000041 ], [ -122.231853886999914, 49.152610190000061 ], [ -122.232015417999975, 49.152894057000012 ], [ -122.232481212000025, 49.153712592000048 ], [ -122.232474850999907, 49.15380600700005 ], [ -122.232473226999943, 49.153829969000121 ], [ -122.232465322999943, 49.15394610400007 ], [ -122.232194516999954, 49.15434426000013 ], [ -122.232002293, 49.154626892000067 ], [ -122.231999746999975, 49.15580873800014 ], [ -122.231998177999984, 49.156542485000024 ], [ -122.231997919999955, 49.156659300000058 ], [ -122.232123378, 49.157461095000038 ], [ -122.231998603999941, 49.157532285000066 ], [ -122.231806382999977, 49.157485293000036 ], [ -122.231066384999934, 49.156580904000087 ], [ -122.231015650999922, 49.156349910000124 ], [ -122.231003195999932, 49.156293213000048 ], [ -122.231143293999963, 49.156078194000038 ], [ -122.231168808999954, 49.155838407000047 ], [ -122.231206494, 49.155484308000041 ], [ -122.231092616999973, 49.154880407000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138017386", "BldgCostT": "91687079", "sL_LossRatio": "0.801783228670212", "sL_AssetLoss": "779485", "sL_BldgLoss": "624978", "sL_StrLoss": "340985", "sL_NStrLoss": "283993", "sL_ContLoss": "154507", "geom_point": "0101000020E6100000A4A2E330398F5EC08EB0B0F91B954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.23339839099999, 49.152926402000013 ], [ -122.233648015999947, 49.152846702000041 ], [ -122.233824184999932, 49.152920692000095 ], [ -122.233903988999927, 49.153154294000089 ], [ -122.233490509999953, 49.153268208000064 ], [ -122.233321380999925, 49.153572995000033 ], [ -122.233811792999973, 49.153775192000055 ], [ -122.233846127, 49.15406645000013 ], [ -122.23387121899998, 49.154279405000082 ], [ -122.234146279999919, 49.154351996000109 ], [ -122.234334789999977, 49.154515805000123 ], [ -122.234275408999963, 49.154874699000047 ], [ -122.234383917999963, 49.155083541000053 ], [ -122.235007296999967, 49.156283287000058 ], [ -122.235282640000023, 49.156750654000099 ], [ -122.237465991999926, 49.160456207000081 ], [ -122.239053497999976, 49.162508503000019 ], [ -122.240741303999968, 49.164273102000081 ], [ -122.24271491899998, 49.167030401000112 ], [ -122.245024303999983, 49.169518500000031 ], [ -122.246191903999957, 49.170308891000097 ], [ -122.246180892999945, 49.171963799000181 ], [ -122.246383622999957, 49.172218874000102 ], [ -122.245291121999955, 49.172180772000054 ], [ -122.245282650999982, 49.172285601000056 ], [ -122.244643726999954, 49.171980905000083 ], [ -122.241958288999939, 49.171666191000092 ], [ -122.237997898999964, 49.170506885000073 ], [ -122.236692603000023, 49.16980608700009 ], [ -122.235542604999978, 49.168772189 ], [ -122.23469829699998, 49.16827229300003 ], [ -122.234266403999982, 49.167881985000086 ], [ -122.233368498999965, 49.165564786000068 ], [ -122.233204, 49.163810213000019 ], [ -122.232946077999927, 49.162675099000062 ], [ -122.233057504999977, 49.160884883000087 ], [ -122.233027411999956, 49.158312791000107 ], [ -122.232823088999965, 49.156724519000122 ], [ -122.232687561999938, 49.155670924000077 ], [ -122.232685711999949, 49.155656592000106 ], [ -122.23267143899993, 49.154428437000021 ], [ -122.232667712999941, 49.154108504000099 ], [ -122.232829161, 49.153855005000111 ], [ -122.232851019999899, 49.153820674000045 ], [ -122.232907184999959, 49.153732499000093 ], [ -122.23276140699997, 49.153407802000061 ], [ -122.23339839099999, 49.152926402000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3416417", "BldgCostT": "2146667", "sL_LossRatio": "0.56605397136506", "sL_AssetLoss": "12551.1", "sL_BldgLoss": "7104.6", "sL_StrLoss": "2973.6", "sL_NStrLoss": "4131", "sL_ContLoss": "5446.5", "geom_point": "0101000020E6100000D54266BA198D5EC0A3A0A911D9954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.202118291999923, 49.168785007000118 ], [ -122.206513758999947, 49.168940016000043 ], [ -122.206550706999963, 49.168981503000076 ], [ -122.207195000999931, 49.169022794000107 ], [ -122.207569673999956, 49.169224648000082 ], [ -122.207296385999896, 49.172573249000045 ], [ -122.201824448999972, 49.172380305000083 ], [ -122.202118291999923, 49.168785007000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3663449", "BldgCostT": "1897212", "sL_LossRatio": "0.829039484738169", "sL_AssetLoss": "7142", "sL_BldgLoss": "5921", "sL_StrLoss": "2915", "sL_NStrLoss": "3006", "sL_ContLoss": "1221", "geom_point": "0101000020E6100000A394CE8F988E5EC00A85C61B32964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.23117099299999, 49.175517210000073 ], [ -122.230410784999947, 49.17504440000004 ], [ -122.229837298999925, 49.174797993000041 ], [ -122.228468998, 49.174510303000083 ], [ -122.22789699799992, 49.174316614000112 ], [ -122.226593092999948, 49.173480601000094 ], [ -122.225801810999968, 49.173197190000053 ], [ -122.225163084999934, 49.172814090000067 ], [ -122.224320935999927, 49.172090228000116 ], [ -122.228977727999961, 49.172253473000112 ], [ -122.228903593999974, 49.173167002000035 ], [ -122.229859060999971, 49.17320047100003 ], [ -122.22986168599999, 49.1732057 ], [ -122.230812611999951, 49.174669798000068 ], [ -122.23133657299999, 49.175301034000029 ], [ -122.231322722999963, 49.175471792000053 ], [ -122.231482969999931, 49.175477402000126 ], [ -122.231555013999952, 49.175564194000081 ], [ -122.23117099299999, 49.175517210000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.832192718313715", "sL_AssetLoss": "3653", "sL_BldgLoss": "3040", "sL_StrLoss": "1710", "sL_NStrLoss": "1330", "sL_ContLoss": "613", "geom_point": "0101000020E61000007E7F9422C38A5EC0643FACB331964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.16838600899996, 49.172864996 ], [ -122.169588104999917, 49.172662682000116 ], [ -122.169483621999959, 49.173930153000072 ], [ -122.166407680999981, 49.173820649000021 ], [ -122.16640063, 49.173365803000081 ], [ -122.166456069999953, 49.17325852500008 ], [ -122.166461003999984, 49.173248987000107 ], [ -122.16663829799991, 49.173178591000116 ], [ -122.16838600899996, 49.172864996 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3795834", "BldgCostT": "2408334", "sL_LossRatio": "0.600745773703371", "sL_AssetLoss": "13569.8", "sL_BldgLoss": "8152", "sL_StrLoss": "3827", "sL_NStrLoss": "4325", "sL_ContLoss": "5417.8", "geom_point": "0101000020E61000006F3E5C0F728E5EC00CB774B35C964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.223505737999929, 49.172061630000051 ], [ -122.224031578, 49.17208007800005 ], [ -122.224982419999947, 49.172939402000061 ], [ -122.226562012000031, 49.173695708000025 ], [ -122.227703319999961, 49.174404897000059 ], [ -122.229095617000013, 49.174792299000039 ], [ -122.229821424999955, 49.174968906000075 ], [ -122.230934482, 49.175659593000063 ], [ -122.231618413999968, 49.175888892000025 ], [ -122.232596143999913, 49.176255047000097 ], [ -122.229943316999965, 49.176250122000063 ], [ -122.227943051999915, 49.176256662000092 ], [ -122.227676296999945, 49.176226192000101 ], [ -122.226008862999919, 49.176094476000038 ], [ -122.224180098999952, 49.175935153000104 ], [ -122.222025127000023, 49.17582411500009 ], [ -122.222299266, 49.17245220300007 ], [ -122.223470656999922, 49.17249330700006 ], [ -122.223494874, 49.172195322000071 ], [ -122.223505737999929, 49.172061630000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6212970", "BldgCostT": "3470413", "sL_LossRatio": "0.629636233951498", "sL_AssetLoss": "56080", "sL_BldgLoss": "35310", "sL_StrLoss": "15290", "sL_NStrLoss": "20020", "sL_ContLoss": "20770", "geom_point": "0101000020E6100000FE291386DA8A5EC078927C3EAD964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.166474976999922, 49.179373654000074 ], [ -122.166467508999972, 49.178530988000063 ], [ -122.16644990599994, 49.176543299000038 ], [ -122.166449745999927, 49.176534298000021 ], [ -122.166436490999942, 49.175679190000039 ], [ -122.166411849999946, 49.174089703000028 ], [ -122.168301963999951, 49.174157001000061 ], [ -122.168204891999949, 49.175334148000061 ], [ -122.16962159299996, 49.175384569000123 ], [ -122.169600025999927, 49.175646184000129 ], [ -122.17336448, 49.17578007000008 ], [ -122.173068370999928, 49.179375251000067 ], [ -122.167595775999985, 49.179180571000138 ], [ -122.167617354999933, 49.178918958000111 ], [ -122.167040930999917, 49.1788984350001 ], [ -122.167034103999981, 49.17898119700012 ], [ -122.166928641999945, 49.178977442000061 ], [ -122.166894719999959, 49.179388600000067 ], [ -122.166474976999922, 49.179373654000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184863625", "BldgCostT": "117945232", "sL_LossRatio": "0.723900271279662", "sL_AssetLoss": "994177", "sL_BldgLoss": "719685", "sL_StrLoss": "319314", "sL_NStrLoss": "400371", "sL_ContLoss": "274492", "geom_point": "0101000020E61000005F1802E38D8D5EC0A0826852AF944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.191805036999966, 49.173109635000102 ], [ -122.191812876999904, 49.173013981000103 ], [ -122.191056416999942, 49.172987216000067 ], [ -122.191224100999975, 49.170941434000063 ], [ -122.191261665999932, 49.170483123000032 ], [ -122.190646483999927, 49.170461352000096 ], [ -122.189576621999919, 49.170423483000079 ], [ -122.189641974999972, 49.169626431000026 ], [ -122.18967017599999, 49.169282499000126 ], [ -122.191130210999972, 49.168850489000121 ], [ -122.19164671399993, 49.168657796000062 ], [ -122.191678567999972, 49.16864165600002 ], [ -122.191964412999951, 49.16849690100004 ], [ -122.19302120899999, 49.167754493000075 ], [ -122.193645208999939, 49.16717078400012 ], [ -122.196629584999968, 49.16468018900008 ], [ -122.196291858999984, 49.164480167000093 ], [ -122.196273707, 49.164469390000107 ], [ -122.19532800799999, 49.163622804000134 ], [ -122.19477199399995, 49.163327291000016 ], [ -122.194951119999956, 49.163041618000094 ], [ -122.195469286999952, 49.162215294000084 ], [ -122.196112018999926, 49.161031896000082 ], [ -122.196355402999984, 49.160353596000085 ], [ -122.196458181999958, 49.159785025000076 ], [ -122.196530887999955, 49.159382599000054 ], [ -122.196536926999968, 49.158945613000114 ], [ -122.196542014999977, 49.158576196000091 ], [ -122.196528578999946, 49.158459051000072 ], [ -122.196469988999979, 49.157947182000029 ], [ -122.196323000999939, 49.157280406000048 ], [ -122.196104882, 49.156794902000073 ], [ -122.194738097999959, 49.155229402000046 ], [ -122.193807121999939, 49.154372599000105 ], [ -122.192952813999966, 49.153752796000028 ], [ -122.200004080999946, 49.153847918000082 ], [ -122.20070051299993, 49.153857294000126 ], [ -122.201097811999901, 49.15386263300006 ], [ -122.201234518999939, 49.153864480000038 ], [ -122.205529922999986, 49.153922159000032 ], [ -122.20672679099999, 49.153938197000073 ], [ -122.207326908999946, 49.153945885000049 ], [ -122.207480268, 49.154055305000142 ], [ -122.209251390999938, 49.155318903000136 ], [ -122.20939482799993, 49.155459552000139 ], [ -122.209737799999971, 49.155795797000053 ], [ -122.211104776999932, 49.155425752000042 ], [ -122.222680786999959, 49.152290993000115 ], [ -122.223571340999939, 49.152052262000069 ], [ -122.225312607999939, 49.151585444000034 ], [ -122.225564356999925, 49.151517955000017 ], [ -122.225603695999965, 49.15157910100006 ], [ -122.225600704999977, 49.151581016000087 ], [ -122.225354914999969, 49.151738598000065 ], [ -122.224265189999954, 49.152046302000038 ], [ -122.224127986, 49.152127399000108 ], [ -122.224125715999918, 49.152271306000053 ], [ -122.225125809999938, 49.153195606000097 ], [ -122.226493895999937, 49.154238094000085 ], [ -122.226859403999939, 49.154636885000066 ], [ -122.227015283999933, 49.155069806000014 ], [ -122.227655893999952, 49.155397387000122 ], [ -122.228125285999951, 49.155266394000137 ], [ -122.230157209999902, 49.156800307000054 ], [ -122.230642588999928, 49.157361410000085 ], [ -122.230825397999965, 49.157911107000047 ], [ -122.231573501999932, 49.159211411000051 ], [ -122.23168549899998, 49.160884900000028 ], [ -122.231497797999964, 49.162413105000049 ], [ -122.231175098999955, 49.16270756100004 ], [ -122.231182850999915, 49.162611956000035 ], [ -122.230530205999941, 49.16258909800014 ], [ -122.23058554, 49.161906788000074 ], [ -122.230505947999958, 49.161904 ], [ -122.230660609000012, 49.159996819000078 ], [ -122.230517467, 49.159991805000047 ], [ -122.23055978399999, 49.159469968000039 ], [ -122.230515197999964, 49.159468406 ], [ -122.230579287999944, 49.158678084000087 ], [ -122.230460045999976, 49.158673906000061 ], [ -122.230544626999944, 49.157630881000074 ], [ -122.230394108000013, 49.157625608000103 ], [ -122.230414374999924, 49.157375684000066 ], [ -122.230138013999948, 49.157366001000113 ], [ -122.230168294999942, 49.156992613000078 ], [ -122.230133738999939, 49.156991403000099 ], [ -122.230146122999912, 49.156838692000079 ], [ -122.226925006999977, 49.156725792000074 ], [ -122.226829664999954, 49.15790042200009 ], [ -122.226606147999959, 49.157892584000081 ], [ -122.22644172899993, 49.157886818000087 ], [ -122.226410369999911, 49.158273130000111 ], [ -122.225950258999973, 49.158256994000048 ], [ -122.22594673299993, 49.158300419000106 ], [ -122.226228764, 49.158310309000058 ], [ -122.226126693999916, 49.159567551000123 ], [ -122.22665817599993, 49.159586188000112 ], [ -122.228936148999978, 49.159666042000033 ], [ -122.228791473999976, 49.161449269000059 ], [ -122.22888216199999, 49.161452448000048 ], [ -122.228827176999957, 49.162130158000132 ], [ -122.22894960299999, 49.162134447000021 ], [ -122.228818835999931, 49.163746156000038 ], [ -122.229143895999982, 49.163757547000081 ], [ -122.229078822999924, 49.164559596000039 ], [ -122.229222941999922, 49.164564646000066 ], [ -122.22919473899999, 49.164912275000091 ], [ -122.228902105999936, 49.16530140900008 ], [ -122.228582219000018, 49.165515 ], [ -122.227787622999955, 49.165455205000043 ], [ -122.227238889999938, 49.164587802000035 ], [ -122.226994775999955, 49.16354389300006 ], [ -122.226776400999967, 49.163434210000062 ], [ -122.226860109999947, 49.16512620600011 ], [ -122.227569385999942, 49.166308290000124 ], [ -122.227770114999899, 49.168119353000087 ], [ -122.225809814999963, 49.168050630000053 ], [ -122.225741103999951, 49.1688966930001 ], [ -122.225555851999928, 49.171177614000086 ], [ -122.223423289999971, 49.171102812000107 ], [ -122.223389134999934, 49.171523091000061 ], [ -122.222595513999963, 49.171115002000057 ], [ -122.221848326, 49.169742104000107 ], [ -122.22231700199994, 49.169638091000138 ], [ -122.222483190999966, 49.169522701000041 ], [ -122.222543404999968, 49.169243606000052 ], [ -122.22235611499994, 49.168981494000036 ], [ -122.222343487, 49.168977240000103 ], [ -122.22213622, 49.168907500000039 ], [ -122.221683287999952, 49.168914606000094 ], [ -122.22113041199999, 49.169198007000077 ], [ -122.220337301999962, 49.169084086000062 ], [ -122.220114503999952, 49.169217912000114 ], [ -122.219828628999934, 49.169296549000087 ], [ -122.21950859599994, 49.169384591 ], [ -122.219028201999961, 49.169390284000102 ], [ -122.218478119999986, 49.169521299000046 ], [ -122.21752840399999, 49.170639298000026 ], [ -122.216075779999954, 49.170603475000071 ], [ -122.216147466999985, 49.169723047000076 ], [ -122.216489094999929, 49.169735057000011 ], [ -122.216504792999956, 49.169542236000048 ], [ -122.21603704599994, 49.169525792000059 ], [ -122.216091997999968, 49.168850897000084 ], [ -122.214688840999898, 49.168801559000066 ], [ -122.214729418999966, 49.168303377000022 ], [ -122.214378960999952, 49.168291051000089 ], [ -122.214386251999926, 49.168201545000045 ], [ -122.212753610999954, 49.168144109000096 ], [ -122.212939713999944, 49.165860316000078 ], [ -122.211321903999988, 49.165803377000032 ], [ -122.211388858999953, 49.164982023000057 ], [ -122.210827636999937, 49.164962264000032 ], [ -122.21093453899999, 49.163650997000119 ], [ -122.21035400199996, 49.163630556000079 ], [ -122.21036706699999, 49.163470329000091 ], [ -122.209776043999952, 49.163449516000071 ], [ -122.2097300099999, 49.164014015000099 ], [ -122.204259067999928, 49.163821193000047 ], [ -122.204334551000031, 49.162896906000078 ], [ -122.20399963199992, 49.162885093000106 ], [ -122.203988519999925, 49.163021155000081 ], [ -122.201793513999974, 49.162943707000082 ], [ -122.201553978999968, 49.165874706000054 ], [ -122.200990588999957, 49.165854820000078 ], [ -122.200970668999929, 49.166098519000045 ], [ -122.200588455999934, 49.166085027000129 ], [ -122.200557872, 49.166459128000064 ], [ -122.198761265999963, 49.166395689000083 ], [ -122.198664025999989, 49.167584544000107 ], [ -122.197823024999977, 49.168346304000139 ], [ -122.197637285999988, 49.168417041000076 ], [ -122.197510291999919, 49.168412555 ], [ -122.197505827999976, 49.168467106000037 ], [ -122.196828120999939, 49.168725202000076 ], [ -122.196755339999967, 49.168738568000087 ], [ -122.19531569699997, 49.169002909000071 ], [ -122.194265401999928, 49.169445784000061 ], [ -122.19367551, 49.169422990000086 ], [ -122.192637810999969, 49.169092586000076 ], [ -122.19170527899999, 49.169104002000033 ], [ -122.192907782999896, 49.169354696000028 ], [ -122.193562888999963, 49.169602509000072 ], [ -122.19446789399997, 49.169608214000085 ], [ -122.195488900999948, 49.169247913000049 ], [ -122.196793041999953, 49.169051700000097 ], [ -122.196975906, 49.169024185000112 ], [ -122.19780257399999, 49.168786395000083 ], [ -122.19805826899993, 49.16862947000007 ], [ -122.198630313999942, 49.168649675000076 ], [ -122.198336201999965, 49.172244965000033 ], [ -122.197366412999941, 49.172210709000048 ], [ -122.197277018999955, 49.173303087000114 ], [ -122.191805036999966, 49.173109635000102 ] ], [ [ -122.218304276999945, 49.161897531000058 ], [ -122.218074171999973, 49.164725550000114 ], [ -122.21851764499999, 49.164741133000071 ], [ -122.218510362999908, 49.164830641000023 ], [ -122.220142894999981, 49.164887990000103 ], [ -122.220102376999975, 49.165386176000041 ], [ -122.220452815, 49.165398484000036 ], [ -122.220401295, 49.166032014000052 ], [ -122.22071969299999, 49.166043196000068 ], [ -122.22077224, 49.165396985000051 ], [ -122.220425862999903, 49.165384820000078 ], [ -122.220718224, 49.161789434000084 ], [ -122.223118935999935, 49.161873716000066 ], [ -122.22312435299996, 49.1618070600001 ], [ -122.220466090999963, 49.161713732000045 ], [ -122.220559598999927, 49.160563735000089 ], [ -122.220277555999971, 49.16055382900003 ], [ -122.22032920699999, 49.159918636000079 ], [ -122.219432269, 49.15988712700009 ], [ -122.219383706999906, 49.160484193000045 ], [ -122.218194898999926, 49.160442421000084 ], [ -122.218077153999943, 49.16188955000014 ], [ -122.218304276999945, 49.161897531000058 ] ], [ [ -122.205102489999945, 49.160245232000129 ], [ -122.205121752999958, 49.160009294000083 ], [ -122.204870604999968, 49.160000438000161 ], [ -122.204851340999966, 49.160236375000132 ], [ -122.205102489999945, 49.160245232000129 ] ], [ [ -122.202417720999961, 49.159223563000133 ], [ -122.202674617999918, 49.156078887000035 ], [ -122.20105033899992, 49.156021552000013 ], [ -122.201034820999908, 49.156211447000018 ], [ -122.199537508999924, 49.15615857100002 ], [ -122.199486029999917, 49.156788239000043 ], [ -122.200158925, 49.156812004000102 ], [ -122.200123173999913, 49.157249377000035 ], [ -122.200177750999941, 49.157251304000035 ], [ -122.200140977999951, 49.157701163000056 ], [ -122.20015918099989, 49.157701806000077 ], [ -122.200044933999905, 49.15909936500006 ], [ -122.20046225599999, 49.15911410100005 ], [ -122.200458961999942, 49.15915441900006 ], [ -122.202417720999961, 49.159223563000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11562500", "BldgCostT": "6500000", "sL_LossRatio": "0.909119675969875", "sL_AssetLoss": "6320.4", "sL_BldgLoss": "5746", "sL_StrLoss": "3752", "sL_NStrLoss": "1994", "sL_ContLoss": "574.4", "geom_point": "0101000020E6100000A70978250B8E5EC053893E6101964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.216525115999943, 49.17352339500011 ], [ -122.216539846999936, 49.1733424620001 ], [ -122.215854703, 49.173318378000047 ], [ -122.216036983000023, 49.171079946000084 ], [ -122.217643122, 49.171090803000034 ], [ -122.218444203, 49.170781693000094 ], [ -122.219621900999982, 49.170078201000095 ], [ -122.219872217999963, 49.169845996000028 ], [ -122.219851810999927, 49.169423001000062 ], [ -122.219936180999952, 49.169409227000067 ], [ -122.220375004999966, 49.169337587000015 ], [ -122.221071716999958, 49.169485698000123 ], [ -122.221452792999955, 49.169722104000101 ], [ -122.222078589999967, 49.170887090000122 ], [ -122.222632588999929, 49.171421194000082 ], [ -122.223371823999912, 49.171736092000025 ], [ -122.22336639699995, 49.171802865000068 ], [ -122.222432715, 49.171770101 ], [ -122.222156206999898, 49.171760397000114 ], [ -122.22199724799998, 49.173715592000065 ], [ -122.216525115999943, 49.17352339500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19052500", "BldgCostT": "10930000", "sL_LossRatio": "0.727959860807639", "sL_AssetLoss": "61785", "sL_BldgLoss": "44977", "sL_StrLoss": "26409", "sL_NStrLoss": "18568", "sL_ContLoss": "16808", "geom_point": "0101000020E6100000B79C0955838B5EC04415DDFE85964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.177337417999979, 49.179397332000079 ], [ -122.177591229999976, 49.176312297000024 ], [ -122.175056930999929, 49.176222279000044 ], [ -122.175352867999891, 49.172627075000037 ], [ -122.180824724, 49.172821363000068 ], [ -122.180769223999945, 49.173496621 ], [ -122.184213549999981, 49.173618774000055 ], [ -122.183918292999977, 49.177213996 ], [ -122.183890586999908, 49.177213015000078 ], [ -122.183730792999981, 49.17915849600012 ], [ -122.18284822699998, 49.179127206000025 ], [ -122.182810079999953, 49.179591517000077 ], [ -122.177337417999979, 49.179397332000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.605793534654782", "sL_AssetLoss": "30068", "sL_BldgLoss": "18215", "sL_StrLoss": "6030", "sL_NStrLoss": "12185", "sL_ContLoss": "11853", "geom_point": "0101000020E6100000C1549695E48B5EC097C30F4AEF954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.183151253999938, 49.172569905000039 ], [ -122.183225941999979, 49.171660600000067 ], [ -122.181589655999971, 49.171602565000043 ], [ -122.181656953999934, 49.17078355600011 ], [ -122.186964293999949, 49.170083094000105 ], [ -122.188889718999974, 49.169513423000105 ], [ -122.188623135999961, 49.172763797000094 ], [ -122.183151253999938, 49.172569905000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29135417", "BldgCostT": "18091667", "sL_LossRatio": "0.714687997747213", "sL_AssetLoss": "227274", "sL_BldgLoss": "162430", "sL_StrLoss": "89250", "sL_NStrLoss": "73180", "sL_ContLoss": "64844", "geom_point": "0101000020E6100000DE1C197162915EC03A9A9781D2964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.269271908999983, 49.186600311000099 ], [ -122.269955258999943, 49.184072416000078 ], [ -122.271313814999985, 49.18411947100001 ], [ -122.271288737999967, 49.184431905000103 ], [ -122.271383030999971, 49.184435171000068 ], [ -122.271361012999961, 49.184709511000065 ], [ -122.27179989499993, 49.184724707000107 ], [ -122.271925849999931, 49.183155127000077 ], [ -122.273205814999969, 49.183199438000024 ], [ -122.273255261999978, 49.182583014 ], [ -122.271795206999968, 49.182532467000058 ], [ -122.271769583999912, 49.182851769000116 ], [ -122.270243379999968, 49.182798911000077 ], [ -122.270163282999945, 49.181530995000088 ], [ -122.270127416999969, 49.180962998000055 ], [ -122.270126071999968, 49.180941624000113 ], [ -122.270103945999907, 49.180339431000043 ], [ -122.269968103999972, 49.17664162100003 ], [ -122.264133393999941, 49.176585062000129 ], [ -122.26434847299997, 49.173909818000055 ], [ -122.26437845199996, 49.173910858000028 ], [ -122.264526769, 49.172065816000078 ], [ -122.269998926999932, 49.172255575000122 ], [ -122.269966010999937, 49.172665657000053 ], [ -122.271737223999978, 49.172727018000025 ], [ -122.271712707999896, 49.173935208000017 ], [ -122.272252484999981, 49.176693455000098 ], [ -122.273035602999954, 49.176718401000095 ], [ -122.275593450999963, 49.176736069000086 ], [ -122.275963843999975, 49.176738624000038 ], [ -122.277818391999958, 49.176751391000046 ], [ -122.278364654999947, 49.176743379000122 ], [ -122.282120528999911, 49.1766882330001 ], [ -122.282277438999969, 49.17675045000005 ], [ -122.281758468, 49.176926305000052 ], [ -122.281276089999935, 49.177177055000108 ], [ -122.280369884999985, 49.177648108000042 ], [ -122.280089335999932, 49.177732863000131 ], [ -122.278328641999963, 49.178264795000047 ], [ -122.277076935999958, 49.178642935000056 ], [ -122.276812303999947, 49.178778009000041 ], [ -122.276750736999958, 49.178796898000058 ], [ -122.276598491999934, 49.178843609000133 ], [ -122.276610141, 49.179160415000069 ], [ -122.276728407999911, 49.179431738000076 ], [ -122.276755012999914, 49.179492830000051 ], [ -122.276999794999966, 49.180054448000114 ], [ -122.277041271, 49.180149663000051 ], [ -122.277041632999897, 49.180539077000098 ], [ -122.276802892999939, 49.181086941000061 ], [ -122.276490609999925, 49.181331228000097 ], [ -122.275996304, 49.18171789900002 ], [ -122.275507519999948, 49.182166999000088 ], [ -122.275413196999978, 49.182504486000035 ], [ -122.275478200999942, 49.183268396000052 ], [ -122.274967708999966, 49.18450089000001 ], [ -122.274763871999966, 49.184698397000041 ], [ -122.274726756999939, 49.184711236000076 ], [ -122.274275612999972, 49.184867188000112 ], [ -122.274262285999967, 49.184869775000017 ], [ -122.273290112999973, 49.185058403000092 ], [ -122.273167729999926, 49.185104196000061 ], [ -122.272705811, 49.185277089000088 ], [ -122.272503419999936, 49.185405298000056 ], [ -122.272390991999927, 49.185541088000015 ], [ -122.272164707999977, 49.18625699800009 ], [ -122.271922409999959, 49.186284706000031 ], [ -122.271480001999961, 49.186445198000129 ], [ -122.270211317999923, 49.186501709000055 ], [ -122.269559483999927, 49.186530743000077 ], [ -122.269477518999935, 49.186534401000081 ], [ -122.269271908999983, 49.186600311000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95171417", "BldgCostT": "62401667", "sL_LossRatio": "0.814484362704172", "sL_AssetLoss": "458743", "sL_BldgLoss": "373639", "sL_StrLoss": "229363", "sL_NStrLoss": "144276", "sL_ContLoss": "85104", "geom_point": "0101000020E6100000BDC7C2A51D915EC00B4E96BD19954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.25136631299992, 49.171782042000082 ], [ -122.25156074599991, 49.169371597000115 ], [ -122.251687733999972, 49.169376020000172 ], [ -122.251729667999939, 49.168856100000013 ], [ -122.252604507999976, 49.168886562000104 ], [ -122.252697942999973, 49.167727793000054 ], [ -122.249752397999927, 49.167625200000025 ], [ -122.249820634999963, 49.166779537000124 ], [ -122.249231774999927, 49.166759017000047 ], [ -122.249093705999911, 49.16610890700013 ], [ -122.249424709999943, 49.165149 ], [ -122.24913741599994, 49.164184802000079 ], [ -122.248179306999972, 49.162297695000049 ], [ -122.247138309999968, 49.161193907000111 ], [ -122.246459688999948, 49.160793703000074 ], [ -122.247322069999939, 49.160229651000101 ], [ -122.24815229, 49.159904308000065 ], [ -122.248536718999929, 49.159753654000042 ], [ -122.249723477999964, 49.159440463000074 ], [ -122.254072760999989, 49.160592227000024 ], [ -122.25401715299995, 49.160591868000097 ], [ -122.25391709699997, 49.161833392000084 ], [ -122.25689466899999, 49.161937 ], [ -122.256813501999886, 49.162944881000051 ], [ -122.257569806999982, 49.162971184000099 ], [ -122.25747703699993, 49.164123327000091 ], [ -122.258611142999939, 49.164162759000099 ], [ -122.258321695999953, 49.167758236000068 ], [ -122.25818280699994, 49.167753408000074 ], [ -122.258135998999975, 49.168334790000102 ], [ -122.258823368999941, 49.16835868400004 ], [ -122.25889805599999, 49.167430868000025 ], [ -122.26122402799993, 49.167511692000069 ], [ -122.261375991999941, 49.165622606000042 ], [ -122.261004633999974, 49.165609706000041 ], [ -122.2610156099999, 49.165473277000011 ], [ -122.26031941699992, 49.165449088000052 ], [ -122.260336738999982, 49.165233815000128 ], [ -122.25984061599992, 49.165216576000077 ], [ -122.259873182999939, 49.16481186400005 ], [ -122.259427225999957, 49.164796365 ], [ -122.259716568999963, 49.161200870000137 ], [ -122.260310116999946, 49.161221498000074 ], [ -122.260327491999945, 49.16100555 ], [ -122.259882577999988, 49.160990088000062 ], [ -122.259891352999915, 49.160881045000032 ], [ -122.258907951999973, 49.160846862000078 ], [ -122.258925568, 49.160627991000119 ], [ -122.259219704999964, 49.160524605000042 ], [ -122.259987988999967, 49.1605217010001 ], [ -122.260932811999936, 49.160644195000053 ], [ -122.26138629899999, 49.160584402000083 ], [ -122.261971760999955, 49.160383174000103 ], [ -122.261142982999957, 49.159858600000092 ], [ -122.260862881999984, 49.159623511000035 ], [ -122.260827329, 49.159578150000065 ], [ -122.260673799999893, 49.159382606000051 ], [ -122.260619419999983, 49.159240899000061 ], [ -122.260597988999933, 49.158415398000059 ], [ -122.26080454199996, 49.158392399000029 ], [ -122.262960189999902, 49.15815230400009 ], [ -122.262889891999919, 49.158601395000126 ], [ -122.262961815, 49.159020301000041 ], [ -122.263050629999924, 49.159114153000061 ], [ -122.26338531, 49.159467690000049 ], [ -122.263716609999975, 49.159747802000034 ], [ -122.264112815999937, 49.160023006000067 ], [ -122.26445290499997, 49.160176284000052 ], [ -122.264984112999926, 49.160307399000018 ], [ -122.265712400000012, 49.160375098000046 ], [ -122.266309883999924, 49.160330890000111 ], [ -122.266480436000037, 49.160286097000053 ], [ -122.267445086999928, 49.160032612000123 ], [ -122.268113031999945, 49.159857133000109 ], [ -122.270395268999948, 49.159240382000128 ], [ -122.271689692999985, 49.158879538000058 ], [ -122.272667535999915, 49.158606907000042 ], [ -122.273865793999974, 49.158272823000068 ], [ -122.274245996, 49.15816681000009 ], [ -122.274563990999951, 49.158144153000109 ], [ -122.274790793999969, 49.15812799400009 ], [ -122.27664890799997, 49.158130982000088 ], [ -122.277416701999982, 49.158133185000075 ], [ -122.28006192299999, 49.158140514000095 ], [ -122.282798309999961, 49.15814799300005 ], [ -122.283050476999975, 49.158152231000038 ], [ -122.284888301999942, 49.15818312400004 ], [ -122.285238881999973, 49.158188992000078 ], [ -122.286301400999918, 49.158195136000039 ], [ -122.288467096999966, 49.158207609000051 ], [ -122.290402959999966, 49.15819133800008 ], [ -122.290667726, 49.158189102000122 ], [ -122.290572867999956, 49.158541759000165 ], [ -122.29031672099994, 49.158822141000122 ], [ -122.289975598999973, 49.159322817000053 ], [ -122.290522343999925, 49.16040235500008 ], [ -122.290398708999987, 49.160957994000078 ], [ -122.289871575999896, 49.161305785000089 ], [ -122.289192965999959, 49.161580213000029 ], [ -122.288963027999898, 49.161383627000092 ], [ -122.287490545999944, 49.160888207000063 ], [ -122.286628810000011, 49.160787240000047 ], [ -122.285858167, 49.161028791000085 ], [ -122.285450197999964, 49.161555391000043 ], [ -122.285456070999984, 49.161147100000058 ], [ -122.284881002999938, 49.161127249000096 ], [ -122.284845297999965, 49.161573971000124 ], [ -122.284896819999972, 49.161575750000033 ], [ -122.284873577999974, 49.161866543000031 ], [ -122.285034207999942, 49.161867538000116 ], [ -122.285038092999955, 49.161597697000055 ], [ -122.285415611999923, 49.161600034000131 ], [ -122.28504957, 49.162072501000125 ], [ -122.284578666999906, 49.162443664000115 ], [ -122.282824536999968, 49.16246616500009 ], [ -122.282823786999955, 49.162631405000077 ], [ -122.282819327999945, 49.163597726000063 ], [ -122.282811723999885, 49.165252831000018 ], [ -122.282810784999953, 49.165452304000091 ], [ -122.282822143999937, 49.167240684000049 ], [ -122.282833722999953, 49.169059405000041 ], [ -122.280740214, 49.169056220000037 ], [ -122.278915651999952, 49.169053414000125 ], [ -122.278366979999973, 49.169052553000029 ], [ -122.271751390999938, 49.169042101000066 ], [ -122.271760518999926, 49.171578904000064 ], [ -122.271756649999986, 49.171769525000073 ], [ -122.270897978999983, 49.171764105000108 ], [ -122.270900335999926, 49.171603626000042 ], [ -122.269431074999915, 49.171552715000082 ], [ -122.269445132000016, 49.171377615000054 ], [ -122.268434709999894, 49.17134259200003 ], [ -122.268432704999981, 49.171478651000022 ], [ -122.266864396999935, 49.171468704000077 ], [ -122.266836567999974, 49.171815119000051 ], [ -122.261364474999965, 49.171625199000069 ], [ -122.261404837, 49.171123484000105 ], [ -122.260011268999961, 49.171075073000104 ], [ -122.259936597999925, 49.172002885000097 ], [ -122.257823507999944, 49.171929443000145 ], [ -122.257708880999985, 49.173352834000113 ], [ -122.253148969999984, 49.173194211000038 ], [ -122.25136631299992, 49.171782042000082 ] ], [ [ -122.272848669999945, 49.162735509000115 ], [ -122.272876463999978, 49.162388900000039 ], [ -122.269535127999916, 49.162273129000134 ], [ -122.269442271999978, 49.163430075000086 ], [ -122.269588750999972, 49.163435151000058 ], [ -122.269653785999978, 49.162624814000097 ], [ -122.272848669999945, 49.162735509000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.952705001701259", "sL_AssetLoss": "1763.4", "sL_BldgLoss": "1680", "sL_StrLoss": "1470", "sL_NStrLoss": "210", "sL_ContLoss": "83.4", "geom_point": "0101000020E61000004D14DF5869905EC0311BF03B7E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.253849483999929, 49.176486537000102 ], [ -122.254460890999951, 49.176002901000089 ], [ -122.254823992999931, 49.175501593000057 ], [ -122.25476330799998, 49.175068583000026 ], [ -122.254619813999966, 49.174786995000012 ], [ -122.258225821999957, 49.174912398000096 ], [ -122.25817454, 49.175549249 ], [ -122.25835715699999, 49.175555596000123 ], [ -122.258333705, 49.175846840000105 ], [ -122.258519369999959, 49.175853292000092 ], [ -122.258476145999936, 49.176390104000049 ], [ -122.258625399999957, 49.176395290000116 ], [ -122.258614450999957, 49.176531271000066 ], [ -122.255371048999976, 49.176499528000114 ], [ -122.253849483999929, 49.176486537000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107204333", "BldgCostT": "70253333", "sL_LossRatio": "0.820383135097523", "sL_AssetLoss": "459890", "sL_BldgLoss": "377286", "sL_StrLoss": "235259", "sL_NStrLoss": "142027", "sL_ContLoss": "82604", "geom_point": "0101000020E6100000FF483A9847925EC095AD60E145964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.282277438999969, 49.17675045000005 ], [ -122.282120528999911, 49.1766882330001 ], [ -122.278364654999947, 49.176743379000122 ], [ -122.277818391999958, 49.176751391000046 ], [ -122.275963843999975, 49.176738624000038 ], [ -122.275593450999963, 49.176736069000086 ], [ -122.273035602999954, 49.176718401000095 ], [ -122.272252484999981, 49.176693455000098 ], [ -122.271712707999896, 49.173935208000017 ], [ -122.271737223999978, 49.172727018000025 ], [ -122.272349270999953, 49.172748215000112 ], [ -122.272338230999978, 49.172885833000088 ], [ -122.274290180999969, 49.172953410000069 ], [ -122.27438871199999, 49.171724420000047 ], [ -122.272545813999955, 49.171660619000136 ], [ -122.272544146999905, 49.171774487000107 ], [ -122.271756649999986, 49.171769525000073 ], [ -122.271760518999926, 49.171578904000064 ], [ -122.271751390999938, 49.169042101000066 ], [ -122.278366979999973, 49.169052553000029 ], [ -122.278915651999952, 49.169053414000125 ], [ -122.280740214, 49.169056220000037 ], [ -122.282833722999953, 49.169059405000041 ], [ -122.283908979999978, 49.169061399000036 ], [ -122.293141458999969, 49.169078250000062 ], [ -122.29447200499996, 49.169080607000069 ], [ -122.296136939999968, 49.16908353900007 ], [ -122.296406272999945, 49.169084013000017 ], [ -122.299392303999952, 49.169089201000148 ], [ -122.299390488999904, 49.170275216000043 ], [ -122.29938920799998, 49.17114325200005 ], [ -122.299381609999926, 49.171732326000019 ], [ -122.299378337999954, 49.171984201000093 ], [ -122.299357900999922, 49.173568593000056 ], [ -122.299371631999932, 49.17405850100004 ], [ -122.299385403999963, 49.174550192000098 ], [ -122.297173894999915, 49.176048808000047 ], [ -122.296801008999921, 49.176475004000068 ], [ -122.295773889999964, 49.177140888000103 ], [ -122.294811835999965, 49.17737115200007 ], [ -122.294703904999963, 49.177396984000019 ], [ -122.29389231199994, 49.177767387000046 ], [ -122.293398401999951, 49.178059611000073 ], [ -122.292123096999916, 49.179038368000093 ], [ -122.2918024, 49.179284498000051 ], [ -122.291694090999925, 49.179558398000019 ], [ -122.291659104999923, 49.180306191000078 ], [ -122.290772664999963, 49.180311043000103 ], [ -122.289139434999967, 49.180319967000095 ], [ -122.285763557999985, 49.180338287 ], [ -122.284295410999988, 49.180318770000078 ], [ -122.283426655000014, 49.180307207000034 ], [ -122.280551112, 49.180318096000114 ], [ -122.279075877999944, 49.180323669000096 ], [ -122.277727016999933, 49.180148750000065 ], [ -122.277226968999926, 49.180083915000097 ], [ -122.276999794999966, 49.180054448000114 ], [ -122.276755012999914, 49.179492830000051 ], [ -122.276728407999911, 49.179431738000076 ], [ -122.276610141, 49.179160415000069 ], [ -122.276598491999934, 49.178843609000133 ], [ -122.276750736999958, 49.178796898000058 ], [ -122.276812303999947, 49.178778009000041 ], [ -122.277076935999958, 49.178642935000056 ], [ -122.278328641999963, 49.178264795000047 ], [ -122.280089335999932, 49.177732863000131 ], [ -122.280369884999985, 49.177648108000042 ], [ -122.281276089999935, 49.177177055000108 ], [ -122.281758468, 49.176926305000052 ], [ -122.282277438999969, 49.17675045000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54286750", "BldgCostT": "35020000", "sL_LossRatio": "0.742829848347552", "sL_AssetLoss": "467912", "sL_BldgLoss": "347579", "sL_StrLoss": "174359", "sL_NStrLoss": "173220", "sL_ContLoss": "120333", "geom_point": "0101000020E61000005BB9FEFAB4925EC0364FE063D1944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.282822143999937, 49.167240684000049 ], [ -122.282810784999953, 49.165452304000091 ], [ -122.282811723999885, 49.165252831000018 ], [ -122.282819327999945, 49.163597726000063 ], [ -122.282823786999955, 49.162631405000077 ], [ -122.282824536999968, 49.16246616500009 ], [ -122.284578666999906, 49.162443664000115 ], [ -122.28504957, 49.162072501000125 ], [ -122.285415611999923, 49.161600034000131 ], [ -122.285449551999974, 49.161600245000066 ], [ -122.285450197999964, 49.161555391000043 ], [ -122.285858167, 49.161028791000085 ], [ -122.286628810000011, 49.160787240000047 ], [ -122.287490545999944, 49.160888207000063 ], [ -122.288963027999898, 49.161383627000092 ], [ -122.289192965999959, 49.161580213000029 ], [ -122.289871575999896, 49.161305785000089 ], [ -122.290398708999987, 49.160957994000078 ], [ -122.290522343999925, 49.16040235500008 ], [ -122.289975598999973, 49.159322817000053 ], [ -122.29031672099994, 49.158822141000122 ], [ -122.290572867999956, 49.158541759000165 ], [ -122.290667726, 49.158189102000122 ], [ -122.293933215999971, 49.158161590000063 ], [ -122.293797711999972, 49.15521669800011 ], [ -122.293764011999983, 49.15460709900001 ], [ -122.294006051999972, 49.154606290000125 ], [ -122.297516427999966, 49.154594480000078 ], [ -122.298272691999955, 49.15459190500011 ], [ -122.298517874999973, 49.154592825000051 ], [ -122.300040084, 49.154598553000078 ], [ -122.301302280999948, 49.154603292000068 ], [ -122.301020582999968, 49.155230803000045 ], [ -122.300151886, 49.156050096000094 ], [ -122.30005707399998, 49.156345203000122 ], [ -122.300048866999958, 49.156390767000062 ], [ -122.299965584999953, 49.156850256000091 ], [ -122.299946881999944, 49.156953398000084 ], [ -122.299374313999976, 49.158290280000124 ], [ -122.299764290999917, 49.158739254000118 ], [ -122.300161944999971, 49.159197086000113 ], [ -122.300778408999946, 49.15999969500006 ], [ -122.302181363999978, 49.161826378000086 ], [ -122.299554328999974, 49.161836639000036 ], [ -122.298867761999986, 49.161839304000132 ], [ -122.296769515999983, 49.161847438000081 ], [ -122.296646993999943, 49.161847900000069 ], [ -122.296126708999935, 49.163100461000063 ], [ -122.296088524999959, 49.163701267000178 ], [ -122.296185330999919, 49.164114503000086 ], [ -122.296721608999945, 49.164889021000072 ], [ -122.296790621999946, 49.165311048000028 ], [ -122.296709571999926, 49.166153820000083 ], [ -122.296606078999957, 49.166526288000092 ], [ -122.296490157999969, 49.166525582000133 ], [ -122.296484039999939, 49.166957488000101 ], [ -122.296447022000024, 49.167065047000094 ], [ -122.295659501999964, 49.167060246000105 ], [ -122.295651846999959, 49.16759992600003 ], [ -122.294005808999941, 49.167589875000047 ], [ -122.294005644000023, 49.167601527000052 ], [ -122.29623595799994, 49.167678298000062 ], [ -122.296073520000022, 49.168150253000093 ], [ -122.295992350999938, 49.168562423000132 ], [ -122.295996947999967, 49.168705943000077 ], [ -122.296136939999968, 49.16908353900007 ], [ -122.29447200499996, 49.169080607000069 ], [ -122.293141458999969, 49.169078250000062 ], [ -122.283908979999978, 49.169061399000036 ], [ -122.282833722999953, 49.169059405000041 ], [ -122.282822143999937, 49.167240684000049 ] ], [ [ -122.293617331999911, 49.165968317000036 ], [ -122.293834975999943, 49.165969649 ], [ -122.291694639999903, 49.165895925000022 ], [ -122.291711866999947, 49.165680023000093 ], [ -122.290741205999922, 49.165646575000039 ], [ -122.290740715999931, 49.165680822000049 ], [ -122.289506237999944, 49.16567323300012 ], [ -122.289507227999934, 49.165604040000062 ], [ -122.28827325099995, 49.165561491000034 ], [ -122.288271757999908, 49.165665630000042 ], [ -122.286625788000023, 49.165655474000097 ], [ -122.286627951999961, 49.16550473700002 ], [ -122.286484472999945, 49.165499787000059 ], [ -122.286493659999962, 49.165384794000104 ], [ -122.285806682999976, 49.165380547000055 ], [ -122.285841609999977, 49.162951988000046 ], [ -122.284820142999934, 49.162945667000045 ], [ -122.284628244999936, 49.165346394000117 ], [ -122.284954552999963, 49.165357658000055 ], [ -122.284913897999957, 49.165866265000048 ], [ -122.286092144999955, 49.16590692900008 ], [ -122.286067229999958, 49.166218728000054 ], [ -122.290659906999934, 49.166377109000045 ], [ -122.290611088999967, 49.16698877400011 ], [ -122.292778670999979, 49.167063456000108 ], [ -122.292790497999945, 49.166233121000118 ], [ -122.29361349399997, 49.166238157000073 ], [ -122.293617331999911, 49.165968317000036 ] ], [ [ -122.293522072999977, 49.162353419000098 ], [ -122.29353512699997, 49.162189722000051 ], [ -122.292498533999947, 49.162183376000058 ], [ -122.29248781299999, 49.162317793000064 ], [ -122.293522072999977, 49.162353419000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97815333", "BldgCostT": "66723333", "sL_LossRatio": "0.844857011235258", "sL_AssetLoss": "418949", "sL_BldgLoss": "353952", "sL_StrLoss": "237800", "sL_NStrLoss": "116152", "sL_ContLoss": "64997", "geom_point": "0101000020E61000007F8571DC8E925EC03106101D06944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.286476986999944, 49.154588390000079 ], [ -122.287134694999935, 49.15459480300008 ], [ -122.287831819999951, 49.154603386000069 ], [ -122.288067193999979, 49.154606278000095 ], [ -122.289043004999911, 49.154618305000056 ], [ -122.289398016999925, 49.154617458000075 ], [ -122.291249067999985, 49.154613103000024 ], [ -122.292963680999918, 49.154609017000048 ], [ -122.293764011999983, 49.15460709900001 ], [ -122.293797711999972, 49.15521669800011 ], [ -122.293933215999971, 49.158161590000063 ], [ -122.290667726, 49.158189102000122 ], [ -122.290402959999966, 49.15819133800008 ], [ -122.288467096999966, 49.158207609000051 ], [ -122.286301400999918, 49.158195136000039 ], [ -122.285238881999973, 49.158188992000078 ], [ -122.285516799999982, 49.158024609000059 ], [ -122.285931782999938, 49.157670296000141 ], [ -122.285971080999943, 49.157568479000105 ], [ -122.286066696999953, 49.157320689000059 ], [ -122.286091611999936, 49.156970491000024 ], [ -122.286145093999892, 49.156219196000102 ], [ -122.286476986999944, 49.154588390000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98681811", "BldgCostT": "66173190", "sL_LossRatio": "0.801447902984391", "sL_AssetLoss": "622003", "sL_BldgLoss": "498503", "sL_StrLoss": "288747", "sL_NStrLoss": "209756", "sL_ContLoss": "123500", "geom_point": "0101000020E61000007F845094FA935EC041005FC081964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.291659104999923, 49.180306191000078 ], [ -122.291694090999925, 49.179558398000019 ], [ -122.2918024, 49.179284498000051 ], [ -122.292123096999916, 49.179038368000093 ], [ -122.293398401999951, 49.178059611000073 ], [ -122.29389231199994, 49.177767387000046 ], [ -122.294703904999963, 49.177396984000019 ], [ -122.294811835999965, 49.17737115200007 ], [ -122.295773889999964, 49.177140888000103 ], [ -122.296801008999921, 49.176475004000068 ], [ -122.297173894999915, 49.176048808000047 ], [ -122.299385403999963, 49.174550192000098 ], [ -122.299371631999932, 49.17405850100004 ], [ -122.299357900999922, 49.173568593000056 ], [ -122.299378337999954, 49.171984201000093 ], [ -122.299381609999926, 49.171732326000019 ], [ -122.29938920799998, 49.17114325200005 ], [ -122.299390488999904, 49.170275216000043 ], [ -122.299392303999952, 49.169089201000148 ], [ -122.30212221599993, 49.169086592000049 ], [ -122.305803480999913, 49.169101712000106 ], [ -122.307551055999909, 49.169108858000058 ], [ -122.30829710700003, 49.169111885000071 ], [ -122.309219083999935, 49.169116365000136 ], [ -122.311345371999892, 49.169126638000087 ], [ -122.312122721999984, 49.169130397000096 ], [ -122.313979171999975, 49.16913954200006 ], [ -122.315964712999971, 49.169149297000111 ], [ -122.316214728999938, 49.169339165000032 ], [ -122.316281690000011, 49.169390003000103 ], [ -122.317326074999954, 49.17000710200012 ], [ -122.317465673999919, 49.170087034000119 ], [ -122.317887712999919, 49.170328800000085 ], [ -122.319125084999939, 49.171037612000106 ], [ -122.319963870999942, 49.171543017000083 ], [ -122.321716289999983, 49.172598946000065 ], [ -122.322820098999983, 49.173264005000092 ], [ -122.323303225999922, 49.173694199000145 ], [ -122.323606052999978, 49.174045248000084 ], [ -122.32373420299993, 49.174193818000028 ], [ -122.324088523999976, 49.174657371000102 ], [ -122.324144481999951, 49.174730609000065 ], [ -122.324347997999951, 49.174880002000066 ], [ -122.324775400999954, 49.17507930800015 ], [ -122.325139840999938, 49.175149044000044 ], [ -122.325291603, 49.175178115000037 ], [ -122.325757997999986, 49.175178706000075 ], [ -122.326136591999969, 49.175127610000018 ], [ -122.326962190999964, 49.174957489000107 ], [ -122.327635909999941, 49.174851604000018 ], [ -122.329462415, 49.174653395000107 ], [ -122.330043316999976, 49.174646089000085 ], [ -122.330567791999968, 49.174745096000059 ], [ -122.331284819999937, 49.175028303000062 ], [ -122.33132387, 49.175046814000027 ], [ -122.331354335999933, 49.175061238000055 ], [ -122.332115304999945, 49.175421599000032 ], [ -122.331335190999951, 49.17638920300007 ], [ -122.331171789999942, 49.176634196000059 ], [ -122.331022494999942, 49.177099609000052 ], [ -122.330541436999951, 49.180353550000035 ], [ -122.330477719999976, 49.180784501000041 ], [ -122.330335696999938, 49.182321805000065 ], [ -122.33004430099993, 49.182328991000091 ], [ -122.327781198999986, 49.182735004000079 ], [ -122.327142613999939, 49.182794305000115 ], [ -122.326117427999961, 49.182657501000058 ], [ -122.325683448999953, 49.182573753000035 ], [ -122.324999798999912, 49.182441784000083 ], [ -122.324515598999966, 49.182300912000052 ], [ -122.324186905999966, 49.182172494000106 ], [ -122.323895151999963, 49.182006797000085 ], [ -122.323624037999977, 49.181852816000095 ], [ -122.322751690999922, 49.181357310000095 ], [ -122.320673304999971, 49.180504902000052 ], [ -122.320170454999953, 49.180345545000101 ], [ -122.320147325999955, 49.18033820900007 ], [ -122.319569493999936, 49.180304903000057 ], [ -122.319070187999927, 49.180373509000056 ], [ -122.316822304999931, 49.180864397000015 ], [ -122.316596094999937, 49.180879200000099 ], [ -122.316332398999975, 49.180864789000069 ], [ -122.315196197999953, 49.180659195000018 ], [ -122.314461285999954, 49.180582704000066 ], [ -122.313658410999963, 49.180672293000029 ], [ -122.311991716999927, 49.181013699000069 ], [ -122.311271504999965, 49.181012411000083 ], [ -122.309424797999966, 49.180475894000026 ], [ -122.308362091999953, 49.180320714000096 ], [ -122.307825691999952, 49.180242376000095 ], [ -122.307029487999969, 49.180126092000101 ], [ -122.307000506999927, 49.180129721000093 ], [ -122.305609118999968, 49.180303606000052 ], [ -122.304192397999913, 49.180302434000083 ], [ -122.302677207999963, 49.180301191000105 ], [ -122.296604633999948, 49.180304106000037 ], [ -122.295671348999988, 49.180304512000092 ], [ -122.294573350999926, 49.180304982000102 ], [ -122.293818567999921, 49.18030530100004 ], [ -122.291659104999923, 49.180306191000078 ] ], [ [ -122.326931918999904, 49.179920006000067 ], [ -122.327114656999939, 49.17760829000008 ], [ -122.326507377999945, 49.177587570000078 ], [ -122.326504618999977, 49.177622467000035 ], [ -122.32277920699994, 49.177495285000127 ], [ -122.322753611999985, 49.177818703000085 ], [ -122.323384916999913, 49.177840264000096 ], [ -122.323258372999945, 49.179439501000076 ], [ -122.323295519999931, 49.179440770000021 ], [ -122.323294652999934, 49.179451720000039 ], [ -122.324416980999956, 49.179490041000065 ], [ -122.324390485, 49.179824983000117 ], [ -122.324951284999941, 49.179844127000131 ], [ -122.324950630999965, 49.179852394000129 ], [ -122.326931918999904, 49.179920006000067 ] ], [ [ -122.300832358999983, 49.178152634000078 ], [ -122.300857728999986, 49.177833961000097 ], [ -122.29885802699999, 49.177765233000116 ], [ -122.298832644, 49.178083905000079 ], [ -122.300832358999983, 49.178152634000078 ] ], [ [ -122.315816019999914, 49.178242567000026 ], [ -122.315793357999965, 49.178528377000134 ], [ -122.315987379999967, 49.178535016000062 ], [ -122.316003224000028, 49.17833517499999 ], [ -122.316059762999942, 49.178337109000047 ], [ -122.316217225999964, 49.176350973000119 ], [ -122.320341783999979, 49.176492029000038 ], [ -122.320392011999957, 49.175857731000121 ], [ -122.319825054999981, 49.175838350000042 ], [ -122.319832089999977, 49.175749534000026 ], [ -122.319566594999941, 49.175740458000092 ], [ -122.31954274799989, 49.176041539000089 ], [ -122.314069942999964, 49.1758542970001 ], [ -122.314092992999988, 49.175563719000081 ], [ -122.312485107, 49.175508655 ], [ -122.312512148999986, 49.175167872000017 ], [ -122.312441624999948, 49.175165455000041 ], [ -122.312448626999981, 49.175077220000055 ], [ -122.312392252, 49.175075289000119 ], [ -122.312330644999975, 49.175851612000024 ], [ -122.311522492999984, 49.175823927000124 ], [ -122.311501322999945, 49.176090632000133 ], [ -122.310308718999977, 49.17604976400002 ], [ -122.310290158999976, 49.176283499000078 ], [ -122.31258562099994, 49.176362148000116 ], [ -122.312445550999954, 49.178127175000057 ], [ -122.315816019999914, 49.178242567000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.81587651598677", "sL_AssetLoss": "30838", "sL_BldgLoss": "25160", "sL_StrLoss": "14070", "sL_NStrLoss": "11090", "sL_ContLoss": "5678", "geom_point": "0101000020E61000008F680AB6F4935EC0E1EAC6DCB19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312322193999989, 49.211957833000092 ], [ -122.31232593699994, 49.211687993000105 ], [ -122.311502183999963, 49.211683086000122 ], [ -122.311505929999967, 49.211413247000067 ], [ -122.311094055999931, 49.211410791000063 ], [ -122.311097805999978, 49.211140953000147 ], [ -122.310685932999945, 49.211138495000093 ], [ -122.310689685999975, 49.210868655000084 ], [ -122.310277814999935, 49.210866197000051 ], [ -122.310285323999963, 49.210326519000049 ], [ -122.309873457999956, 49.210324059000143 ], [ -122.309877213999926, 49.210054220000139 ], [ -122.309465351, 49.210051759000088 ], [ -122.309469110999942, 49.209781920000054 ], [ -122.306997945, 49.20976712000008 ], [ -122.307009260999905, 49.208957602000069 ], [ -122.307421114999954, 49.208960072000053 ], [ -122.307424883999957, 49.208690234000095 ], [ -122.308248586999966, 49.208695170000055 ], [ -122.308252351999954, 49.208425331000107 ], [ -122.309487899999937, 49.208432724000033 ], [ -122.309491658999903, 49.2081628850001 ], [ -122.309732223999916, 49.208164323000069 ], [ -122.309911734999986, 49.205905506000079 ], [ -122.315388060999965, 49.206092951000095 ], [ -122.315263723, 49.20765986400005 ], [ -122.31509239799999, 49.207916600000011 ], [ -122.314772292999962, 49.208404102000053 ], [ -122.31439776299996, 49.209191694000019 ], [ -122.314176656999905, 49.209656670000086 ], [ -122.313178373999975, 49.209622513000056 ], [ -122.313160906999983, 49.210883377000108 ], [ -122.313572775999958, 49.210885826000052 ], [ -122.313557831999972, 49.211965182000071 ], [ -122.312322193999989, 49.211957833000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3315667", "BldgCostT": "2286667", "sL_LossRatio": "0.88358073995931", "sL_AssetLoss": "13271", "sL_BldgLoss": "11726", "sL_StrLoss": "8180", "sL_NStrLoss": "3546", "sL_ContLoss": "1545", "geom_point": "0101000020E61000003478670614945EC0A3772AE01E9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.311126991999942, 49.202175825000069 ], [ -122.316602884999924, 49.202363209000019 ], [ -122.316317685999962, 49.205958629000058 ], [ -122.310841371999956, 49.205771233000057 ], [ -122.311126991999942, 49.202175825000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51250250", "BldgCostT": "35345000", "sL_LossRatio": "0.914562271456227", "sL_AssetLoss": "139470", "sL_BldgLoss": "127554", "sL_StrLoss": "94560", "sL_NStrLoss": "32994", "sL_ContLoss": "11916", "geom_point": "0101000020E610000008E1760D1F935EC070A931BEBB974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.275413196999978, 49.182504486000035 ], [ -122.275507519999948, 49.182166999000088 ], [ -122.275996304, 49.18171789900002 ], [ -122.276490609999925, 49.181331228000097 ], [ -122.276802892999939, 49.181086941000061 ], [ -122.277041632999897, 49.180539077000098 ], [ -122.277041271, 49.180149663000051 ], [ -122.276999794999966, 49.180054448000114 ], [ -122.277226968999926, 49.180083915000097 ], [ -122.277727016999933, 49.180148750000065 ], [ -122.279075877999944, 49.180323669000096 ], [ -122.280551112, 49.180318096000114 ], [ -122.283426655000014, 49.180307207000034 ], [ -122.284295410999988, 49.180318770000078 ], [ -122.285763557999985, 49.180338287 ], [ -122.289139434999967, 49.180319967000095 ], [ -122.290772664999963, 49.180311043000103 ], [ -122.291659104999923, 49.180306191000078 ], [ -122.293818567999921, 49.18030530100004 ], [ -122.294573350999926, 49.180304982000102 ], [ -122.295671348999988, 49.180304512000092 ], [ -122.296604633999948, 49.180304106000037 ], [ -122.302677207999963, 49.180301191000105 ], [ -122.304192397999913, 49.180302434000083 ], [ -122.305609118999968, 49.180303606000052 ], [ -122.307000506999927, 49.180129721000093 ], [ -122.307029487999969, 49.180126092000101 ], [ -122.307825691999952, 49.180242376000095 ], [ -122.308362091999953, 49.180320714000096 ], [ -122.309424797999966, 49.180475894000026 ], [ -122.311271504999965, 49.181012411000083 ], [ -122.311991716999927, 49.181013699000069 ], [ -122.313658410999963, 49.180672293000029 ], [ -122.314461285999954, 49.180582704000066 ], [ -122.315196197999953, 49.180659195000018 ], [ -122.316332398999975, 49.180864789000069 ], [ -122.316596094999937, 49.180879200000099 ], [ -122.316822304999931, 49.180864397000015 ], [ -122.319070187999927, 49.180373509000056 ], [ -122.319569493999936, 49.180304903000057 ], [ -122.320147325999955, 49.18033820900007 ], [ -122.320170454999953, 49.180345545000101 ], [ -122.320673304999971, 49.180504902000052 ], [ -122.322751690999922, 49.181357310000095 ], [ -122.323624037999977, 49.181852816000095 ], [ -122.323895151999963, 49.182006797000085 ], [ -122.324186905999966, 49.182172494000106 ], [ -122.324515598999966, 49.182300912000052 ], [ -122.324999798999912, 49.182441784000083 ], [ -122.325683448999953, 49.182573753000035 ], [ -122.326117427999961, 49.182657501000058 ], [ -122.327142613999939, 49.182794305000115 ], [ -122.327781198999986, 49.182735004000079 ], [ -122.33004430099993, 49.182328991000091 ], [ -122.330335696999938, 49.182321805000065 ], [ -122.33028537699991, 49.182993382000085 ], [ -122.33012415799999, 49.183906993000107 ], [ -122.329783675000016, 49.185836158000015 ], [ -122.329481883, 49.187693378000112 ], [ -122.329464204999965, 49.188490438000066 ], [ -122.329413334999956, 49.189967743000054 ], [ -122.329275467999949, 49.191116722000061 ], [ -122.32922033599999, 49.191576304000129 ], [ -122.329111383999987, 49.192052087000036 ], [ -122.328976113999957, 49.192322369000067 ], [ -122.328428550999945, 49.192999498000148 ], [ -122.327789923999944, 49.193702189000099 ], [ -122.327774663999946, 49.193718970000127 ], [ -122.327156189999954, 49.194595704000065 ], [ -122.327130472999926, 49.19463220700009 ], [ -122.326694831999959, 49.195249740000094 ], [ -122.326554238999975, 49.195244944000116 ], [ -122.326553351999962, 49.195310264000057 ], [ -122.325318125999942, 49.195303055000075 ], [ -122.325314456999948, 49.195572895000097 ], [ -122.324902711999982, 49.195570489000019 ], [ -122.32489904, 49.195840330000102 ], [ -122.324075547999939, 49.195835514000116 ], [ -122.324071869999955, 49.196105354000089 ], [ -122.322836624999923, 49.196098117000112 ], [ -122.32288450899992, 49.192590192000097 ], [ -122.32329622899999, 49.192592605000137 ], [ -122.323303590999942, 49.192052924000038 ], [ -122.323601631999964, 49.192054670000054 ], [ -122.323667193999938, 49.191226296000075 ], [ -122.32598425899999, 49.191305369000098 ], [ -122.325985252999942, 49.191292791000187 ], [ -122.325943722999938, 49.191291374000116 ], [ -122.32622808699989, 49.187695847000022 ], [ -122.326240397999968, 49.187696267000071 ], [ -122.326259608000015, 49.187453350000062 ], [ -122.321470706999918, 49.187289865000039 ], [ -122.321652370999942, 49.184995541000035 ], [ -122.319205070999885, 49.184911911000057 ], [ -122.319232487999983, 49.18456586500011 ], [ -122.314146217999962, 49.184391877000039 ], [ -122.31421912799999, 49.183472853000055 ], [ -122.310687054999931, 49.183351888000082 ], [ -122.310762499999925, 49.182401802000101 ], [ -122.310637485999976, 49.182397519000077 ], [ -122.31054659899999, 49.18354203400002 ], [ -122.307113357999967, 49.183424337000105 ], [ -122.307076278999958, 49.183890816000037 ], [ -122.304285524999955, 49.183795064000087 ], [ -122.304144152999967, 49.185572182000023 ], [ -122.298670287999926, 49.185384161000052 ], [ -122.298833612999928, 49.183334111000093 ], [ -122.298460887999966, 49.183321297000049 ], [ -122.29843361399999, 49.183663624000104 ], [ -122.292959997999915, 49.183475313000031 ], [ -122.292993086999928, 49.183060610000048 ], [ -122.29189055099998, 49.183022646000111 ], [ -122.291885614999941, 49.18308448300008 ], [ -122.287692466999914, 49.182939992000108 ], [ -122.287563921999933, 49.184548683000045 ], [ -122.286787475999944, 49.184521910000051 ], [ -122.286690051, 49.18574080200009 ], [ -122.285054204999966, 49.185684376000026 ], [ -122.285032096999927, 49.185960841000025 ], [ -122.282922301999974, 49.185888031000061 ], [ -122.282778502, 49.187685189000057 ], [ -122.278931165999921, 49.187552308000114 ], [ -122.278902755999965, 49.187906983000119 ], [ -122.276206372999951, 49.18781377100003 ], [ -122.276110403999922, 49.189010947000078 ], [ -122.275414030999954, 49.188986863000117 ], [ -122.275205509999964, 49.191587361000103 ], [ -122.273798722999928, 49.191538694000094 ], [ -122.273660041999932, 49.193267393000013 ], [ -122.273631665999972, 49.193266411000096 ], [ -122.273551992999913, 49.194259492000093 ], [ -122.27354008599994, 49.194259081000027 ], [ -122.273320134999921, 49.197000390000071 ], [ -122.273228063999952, 49.196997205000081 ], [ -122.273173467999982, 49.197677592000012 ], [ -122.272814034999925, 49.197665154000099 ], [ -122.272752091999962, 49.198437 ], [ -122.270393940999952, 49.198355370000073 ], [ -122.270347820999945, 49.198929656000075 ], [ -122.27025727199999, 49.198926520000093 ], [ -122.270258089999956, 49.19797742800003 ], [ -122.270259496999969, 49.196387871000084 ], [ -122.270249523999922, 49.195422873000012 ], [ -122.270249397999976, 49.195413883000079 ], [ -122.27041564699999, 49.194556678000019 ], [ -122.27087360099992, 49.194272104000042 ], [ -122.270928211999987, 49.194138811000101 ], [ -122.270840724999971, 49.193981696000051 ], [ -122.270454, 49.193754711000103 ], [ -122.270122774999933, 49.193388342000105 ], [ -122.269271908999983, 49.186600311000099 ], [ -122.269477518999935, 49.186534401000081 ], [ -122.269559483999927, 49.186530743000077 ], [ -122.270211317999923, 49.186501709000055 ], [ -122.271480001999961, 49.186445198000129 ], [ -122.271922409999959, 49.186284706000031 ], [ -122.272164707999977, 49.18625699800009 ], [ -122.272390991999927, 49.185541088000015 ], [ -122.272503419999936, 49.185405298000056 ], [ -122.272705811, 49.185277089000088 ], [ -122.273167729999926, 49.185104196000061 ], [ -122.273290112999973, 49.185058403000092 ], [ -122.274262285999967, 49.184869775000017 ], [ -122.274275612999972, 49.184867188000112 ], [ -122.274726756999939, 49.184711236000076 ], [ -122.274763871999966, 49.184698397000041 ], [ -122.274967708999966, 49.18450089000001 ], [ -122.275478200999942, 49.183268396000052 ], [ -122.275413196999978, 49.182504486000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.817860300618921", "sL_AssetLoss": "15834", "sL_BldgLoss": "12950", "sL_StrLoss": "7500", "sL_NStrLoss": "5450", "sL_ContLoss": "2884", "geom_point": "0101000020E6100000D3797D7B91925EC0918F69AFB69D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.287936561999942, 49.23039684900008 ], [ -122.293415685999946, 49.230585402000038 ], [ -122.293414074999987, 49.230605576000116 ], [ -122.292740316999954, 49.231961313000092 ], [ -122.29206259199999, 49.232844702000087 ], [ -122.291440618999985, 49.233494699000111 ], [ -122.291325610999976, 49.233936006000107 ], [ -122.291300278999984, 49.234117723000118 ], [ -122.287648970999925, 49.233992041000072 ], [ -122.287936561999942, 49.23039684900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33912917", "BldgCostT": "22891667", "sL_LossRatio": "0.825108227560394", "sL_AssetLoss": "70615.1", "sL_BldgLoss": "58265.1", "sL_StrLoss": "43067", "sL_NStrLoss": "15198.1", "sL_ContLoss": "12350", "geom_point": "0101000020E6100000F92A549210935EC02285B2F0759C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.290118995999975, 49.230194016000091 ], [ -122.290205007999987, 49.229118012000121 ], [ -122.28940864, 49.229090600000063 ], [ -122.289447214999953, 49.228608110000131 ], [ -122.284665104999959, 49.228443376 ], [ -122.284711018999971, 49.227869831000085 ], [ -122.281853744999978, 49.227771302000065 ], [ -122.282141743999958, 49.224176091000082 ], [ -122.284714430999927, 49.224264812000065 ], [ -122.284819802999962, 49.22294835200006 ], [ -122.28719974299996, 49.223030370000075 ], [ -122.28733058899995, 49.221394509000085 ], [ -122.289216706000019, 49.221459471000117 ], [ -122.289319374999977, 49.220175152000103 ], [ -122.292183927999986, 49.220273752000026 ], [ -122.2922241799999, 49.219769822000067 ], [ -122.297702068999968, 49.219958160000068 ], [ -122.297607044999936, 49.221149554000078 ], [ -122.298893466999957, 49.22119374200004 ], [ -122.298911138999955, 49.220972086000096 ], [ -122.301056253999917, 49.221045736000065 ], [ -122.301227060999949, 49.218902136000096 ], [ -122.303737946999945, 49.218988290000034 ], [ -122.303915372999967, 49.21675989400012 ], [ -122.305547677999968, 49.216815870000097 ], [ -122.305565514999969, 49.21659173299999 ], [ -122.310068082, 49.216746012000101 ], [ -122.31016238499997, 49.215559541000047 ], [ -122.310217713999961, 49.215561435000026 ], [ -122.310289329999975, 49.214660341000119 ], [ -122.310362885999922, 49.21466286 ], [ -122.310417264, 49.21397864300004 ], [ -122.310583440999949, 49.213984332000067 ], [ -122.310616618999973, 49.213566833000051 ], [ -122.310240272999962, 49.2135645870001 ], [ -122.310244026999925, 49.213294748000052 ], [ -122.30942024699999, 49.213289826000043 ], [ -122.309424006999933, 49.213019987000045 ], [ -122.309012117999941, 49.213017523000048 ], [ -122.309023402999927, 49.212208007000037 ], [ -122.311494689999975, 49.212222765000057 ], [ -122.311490940999988, 49.21249260400009 ], [ -122.31231470799996, 49.212497511000045 ], [ -122.312318450999982, 49.212227672000076 ], [ -122.313554094999944, 49.212235021 ], [ -122.313539854999988, 49.213263320000088 ], [ -122.314987789000014, 49.213312850000094 ], [ -122.315157383000013, 49.213792505000093 ], [ -122.315138308999934, 49.214033397000051 ], [ -122.314087538999956, 49.215342480000068 ], [ -122.313550498999945, 49.216011503000075 ], [ -122.313407308999928, 49.216258899000039 ], [ -122.313581080999981, 49.216664094000087 ], [ -122.314768161999922, 49.218649868000064 ], [ -122.315187255999973, 49.219350786000092 ], [ -122.313981489999961, 49.21917889900007 ], [ -122.312597390999898, 49.21890858600004 ], [ -122.312565682999903, 49.218902389000078 ], [ -122.31184910199994, 49.218885860000078 ], [ -122.311759781999967, 49.218883805000132 ], [ -122.311237997999982, 49.21902190800003 ], [ -122.310850396999939, 49.219181690000035 ], [ -122.310267501999988, 49.219863792000112 ], [ -122.310094988999978, 49.220150805000053 ], [ -122.308605894999971, 49.221089396000131 ], [ -122.307654710999913, 49.221549804000098 ], [ -122.306855716999948, 49.221806404000056 ], [ -122.30629622099994, 49.222192807000063 ], [ -122.305870572999936, 49.222744193000047 ], [ -122.30546900099999, 49.2234072870001 ], [ -122.305142093999947, 49.223717801000092 ], [ -122.304690609, 49.224076404000108 ], [ -122.304322880999948, 49.224209806000125 ], [ -122.303920110999968, 49.224266185000083 ], [ -122.302895018999948, 49.224342792000051 ], [ -122.302159383999978, 49.224422197000074 ], [ -122.301876313999912, 49.224565 ], [ -122.301634297999911, 49.224687108000062 ], [ -122.300742006999954, 49.225319811000062 ], [ -122.300365598, 49.225476386 ], [ -122.300145894999957, 49.225493206000046 ], [ -122.299913599999968, 49.225512216000041 ], [ -122.299863276999972, 49.225505965000146 ], [ -122.29824761899999, 49.225306298000049 ], [ -122.297918080999963, 49.225340001000028 ], [ -122.297611896999953, 49.225527799000112 ], [ -122.297135896999919, 49.226191907000036 ], [ -122.296795408999969, 49.226552484000145 ], [ -122.296338507999948, 49.226856695000052 ], [ -122.295938102999969, 49.227055601000124 ], [ -122.295812455999979, 49.22713088800004 ], [ -122.294902398, 49.227676207000059 ], [ -122.294706834999928, 49.228093066000049 ], [ -122.294286595999921, 49.228988891000043 ], [ -122.293569565999945, 49.230312724000036 ], [ -122.290118995999975, 49.230194016000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.829258878023675", "sL_AssetLoss": "15544", "sL_BldgLoss": "12890", "sL_StrLoss": "7370", "sL_NStrLoss": "5520", "sL_ContLoss": "2654", "geom_point": "0101000020E6100000C246402279925EC04E1FCBCC969E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.289874507999912, 49.243311031000069 ], [ -122.290069556999981, 49.240871810000094 ], [ -122.286412004999974, 49.240745889000046 ], [ -122.286699732999978, 49.237150739000114 ], [ -122.288466163999971, 49.237211567000088 ], [ -122.288543709999914, 49.236242080000075 ], [ -122.290897676999961, 49.236323097000131 ], [ -122.290870290999976, 49.236384406000077 ], [ -122.29052489, 49.23699351900013 ], [ -122.289721376999935, 49.239396499000058 ], [ -122.289750913999967, 49.240230298000014 ], [ -122.289791088999948, 49.240321484000049 ], [ -122.289878782999949, 49.24052039000005 ], [ -122.290746713999965, 49.241175628000057 ], [ -122.290964593999959, 49.241340103000041 ], [ -122.290744606999979, 49.242252685000047 ], [ -122.29035311200002, 49.242836685000043 ], [ -122.289874507999912, 49.243311031000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671416", "BldgCostT": "3221666", "sL_LossRatio": "0.757135387832933", "sL_AssetLoss": "65028", "sL_BldgLoss": "49235", "sL_StrLoss": "22645", "sL_NStrLoss": "26590", "sL_ContLoss": "15793", "geom_point": "0101000020E6100000E60F9B02B8925EC0712F389CDC9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.289847975999933, 49.244863171000056 ], [ -122.289899641999952, 49.244217120000016 ], [ -122.289802314999974, 49.244213771 ], [ -122.289874507999912, 49.243311031000069 ], [ -122.29035311200002, 49.242836685000043 ], [ -122.290744606999979, 49.242252685000047 ], [ -122.290964593999959, 49.241340103000041 ], [ -122.290746713999965, 49.241175628000057 ], [ -122.289878782999949, 49.24052039000005 ], [ -122.289791088999948, 49.240321484000049 ], [ -122.289750913999967, 49.240230298000014 ], [ -122.289721376999935, 49.239396499000058 ], [ -122.29052489, 49.23699351900013 ], [ -122.290870290999976, 49.236384406000077 ], [ -122.290897676999961, 49.236323097000131 ], [ -122.294023526999922, 49.236430600000098 ], [ -122.293736369999948, 49.240025776000074 ], [ -122.291969824999939, 49.23996503200005 ], [ -122.291912578999955, 49.24068133600008 ], [ -122.295570142, 49.240807070000116 ], [ -122.29551855899993, 49.241453128000053 ], [ -122.295615880999947, 49.241456471000042 ], [ -122.295328816, 49.245051623000109 ], [ -122.289847975999933, 49.244863171000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.861226024821361", "sL_AssetLoss": "13295", "sL_BldgLoss": "11450", "sL_StrLoss": "7300", "sL_NStrLoss": "4150", "sL_ContLoss": "1845", "geom_point": "0101000020E6100000914492CD53935EC037A4D5B9379E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.302931274999978, 49.233899702000031 ], [ -122.305124466, 49.233974897000117 ], [ -122.305089278999958, 49.234416810000027 ], [ -122.304838185, 49.237570116000065 ], [ -122.304399652999933, 49.237555084000093 ], [ -122.304335207999941, 49.238364225000105 ], [ -122.298855121999949, 49.238176228000036 ], [ -122.299141869999985, 49.234581029000076 ], [ -122.299580370999962, 49.234596084 ], [ -122.29964489399994, 49.233786940000044 ], [ -122.302931274999978, 49.233899702000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.935134628453589", "sL_AssetLoss": "8534.6", "sL_BldgLoss": "7981", "sL_StrLoss": "6300", "sL_NStrLoss": "1681", "sL_ContLoss": "553.6", "geom_point": "0101000020E6100000607AB957BF945EC0DA8AE4C8569E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.321337860999989, 49.236026312000057 ], [ -122.321473976999954, 49.234309267000064 ], [ -122.32695369799994, 49.234496116000081 ], [ -122.326937977999975, 49.234694713000081 ], [ -122.32748359299994, 49.234713302000081 ], [ -122.327199037999904, 49.23830857500009 ], [ -122.326614005999971, 49.238288643000097 ], [ -122.326493791999923, 49.239807089000067 ], [ -122.321013443999973, 49.239620218 ], [ -122.321298486999964, 49.236024968 ], [ -122.321337860999989, 49.236026312000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12178750", "BldgCostT": "6925000", "sL_LossRatio": "0.69627277228568", "sL_AssetLoss": "58569", "sL_BldgLoss": "40780", "sL_StrLoss": "21330", "sL_NStrLoss": "19450", "sL_ContLoss": "17789", "geom_point": "0101000020E6100000E31FE82EAA945EC0A4E9C3E53E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323662153, 49.231391510000059 ], [ -122.323761061999932, 49.230142891000114 ], [ -122.320210011, 49.23002172000006 ], [ -122.32035824899999, 49.228152059000074 ], [ -122.31868097399996, 49.228094786 ], [ -122.318966125999921, 49.22449947800007 ], [ -122.320011165999958, 49.22453516700007 ], [ -122.320530132999963, 49.224879670000121 ], [ -122.32386549, 49.227192548000097 ], [ -122.324396404999931, 49.227563939000042 ], [ -122.324606462999952, 49.227811524000067 ], [ -122.324725549000021, 49.227951875000016 ], [ -122.324870282999925, 49.228378610000057 ], [ -122.32485009199992, 49.228549629000057 ], [ -122.324799663999968, 49.2289755380001 ], [ -122.324837654999982, 49.22944998400007 ], [ -122.324957578999957, 49.229663321000075 ], [ -122.325008594999957, 49.229754128000074 ], [ -122.32524065599992, 49.229945913000059 ], [ -122.325885329, 49.230130098000075 ], [ -122.326425469999919, 49.230212494000114 ], [ -122.326786304999985, 49.230219716000079 ], [ -122.327001385999978, 49.23022399700006 ], [ -122.327875198999919, 49.230116791000071 ], [ -122.329283084999958, 49.229788701000118 ], [ -122.329141538999963, 49.231578248000119 ], [ -122.323662153, 49.231391510000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.886912325285896", "sL_AssetLoss": "6296", "sL_BldgLoss": "5584", "sL_StrLoss": "3850", "sL_NStrLoss": "1734", "sL_ContLoss": "712", "geom_point": "0101000020E61000007E9CBC0AA1955EC0EA739C785A9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.337876151999978, 49.23014519200008 ], [ -122.337939697999914, 49.229339843000062 ], [ -122.337280078999953, 49.229317431000041 ], [ -122.337253961999963, 49.229648357000045 ], [ -122.331774771000013, 49.229462031000018 ], [ -122.331797964999936, 49.229168566000062 ], [ -122.331420418999983, 49.229155717000026 ], [ -122.33312800199991, 49.228497906000101 ], [ -122.333773605999966, 49.228249203000097 ], [ -122.33420631499996, 49.228179184000076 ], [ -122.334957663999958, 49.228325204000022 ], [ -122.335941608999946, 49.228516371000083 ], [ -122.336781789999975, 49.228679594000049 ], [ -122.337664897999943, 49.228786197000055 ], [ -122.337747685999943, 49.228796196000118 ], [ -122.33799958699997, 49.22880956900012 ], [ -122.33813655299997, 49.228816812000083 ], [ -122.340728325999933, 49.228954248000136 ], [ -122.340774515999939, 49.228956702000055 ], [ -122.342528649999949, 49.229017567000071 ], [ -122.343456411999966, 49.229049736000078 ], [ -122.34335544899993, 49.230331208000123 ], [ -122.337876151999978, 49.23014519200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12917166", "BldgCostT": "8436666", "sL_LossRatio": "0.814105429661979", "sL_AssetLoss": "58162", "sL_BldgLoss": "47350", "sL_StrLoss": "27650", "sL_NStrLoss": "19700", "sL_ContLoss": "10812", "geom_point": "0101000020E6100000C392BC8454935EC0F937603E769F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297948587999883, 49.251067371000019 ], [ -122.29797217499997, 49.25077182200004 ], [ -122.29711667699999, 49.250742450000082 ], [ -122.297403636999931, 49.247147325000078 ], [ -122.297884690000018, 49.24716384100001 ], [ -122.298113868999977, 49.244291833000055 ], [ -122.29923338899999, 49.244330264000041 ], [ -122.299263941999953, 49.243947260000084 ], [ -122.299603220999941, 49.243958904000039 ], [ -122.299639665999933, 49.243501965000029 ], [ -122.299288908, 49.24348992700002 ], [ -122.299575655999888, 49.239894756000126 ], [ -122.30505594899995, 49.240082715000064 ], [ -122.304945182999944, 49.241473593000102 ], [ -122.305295926, 49.241485612000133 ], [ -122.305252611999947, 49.242029551000059 ], [ -122.305826042999939, 49.242049200000118 ], [ -122.305788828999965, 49.242516567000038 ], [ -122.30673484099999, 49.242548977000126 ], [ -122.306448629999977, 49.246144152000042 ], [ -122.306445276999966, 49.246144037000086 ], [ -122.306184401999971, 49.249420449000084 ], [ -122.30358351699999, 49.249331327000078 ], [ -122.303430192999926, 49.251255411000038 ], [ -122.297948587999883, 49.251067371000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.85219707057257", "sL_AssetLoss": "3004", "sL_BldgLoss": "2560", "sL_StrLoss": "1540", "sL_NStrLoss": "1020", "sL_ContLoss": "444", "geom_point": "0101000020E61000002AE8514CB9925EC0F873238FD49D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.292740316999954, 49.231961313000092 ], [ -122.293414074999987, 49.230605576000116 ], [ -122.29312851899999, 49.234180607000091 ], [ -122.291300278999984, 49.234117723000118 ], [ -122.291325610999976, 49.233936006000107 ], [ -122.291440618999985, 49.233494699000111 ], [ -122.29206259199999, 49.232844702000087 ], [ -122.292740316999954, 49.231961313000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28379666", "BldgCostT": "18836666", "sL_LossRatio": "0.839965859383335", "sL_AssetLoss": "121849", "sL_BldgLoss": "102349", "sL_StrLoss": "66719", "sL_NStrLoss": "35630", "sL_ContLoss": "19500", "geom_point": "0101000020E61000000256ED1EC9935EC0C17195FE109D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.310464450999987, 49.234572447000104 ], [ -122.310483536999968, 49.234332397000081 ], [ -122.309955867999989, 49.234314336000047 ], [ -122.309997972999938, 49.233784829000072 ], [ -122.308878663999963, 49.23374650800011 ], [ -122.309164609999982, 49.230151258 ], [ -122.310032562999965, 49.230180976000014 ], [ -122.310043279999974, 49.230046180000045 ], [ -122.310735228999988, 49.230069866000079 ], [ -122.310740353999932, 49.23000539700007 ], [ -122.31153276299996, 49.230032515000076 ], [ -122.311552508999952, 49.229784083000055 ], [ -122.311503006999899, 49.229782389000043 ], [ -122.31160541399997, 49.228493844000063 ], [ -122.310422649999978, 49.228453364000146 ], [ -122.310447825000026, 49.228136670000012 ], [ -122.308294318999941, 49.228062932000093 ], [ -122.305921813999973, 49.227981644000124 ], [ -122.305991568999914, 49.227105245000111 ], [ -122.301372069999942, 49.226946820000094 ], [ -122.301307191999982, 49.227760928000066 ], [ -122.300263711999904, 49.227725115000041 ], [ -122.30019159599999, 49.228629753000064 ], [ -122.299211852, 49.228596118000091 ], [ -122.29893363799999, 49.232084873000083 ], [ -122.293454313999945, 49.231896601000138 ], [ -122.293580783999943, 49.230313109000107 ], [ -122.293569565999945, 49.230312724000036 ], [ -122.294286595999921, 49.228988891000043 ], [ -122.294706834999928, 49.228093066000049 ], [ -122.294902398, 49.227676207000059 ], [ -122.295812455999979, 49.22713088800004 ], [ -122.295938102999969, 49.227055601000124 ], [ -122.296338507999948, 49.226856695000052 ], [ -122.296795408999969, 49.226552484000145 ], [ -122.297135896999919, 49.226191907000036 ], [ -122.297611896999953, 49.225527799000112 ], [ -122.297918080999963, 49.225340001000028 ], [ -122.29824761899999, 49.225306298000049 ], [ -122.299863276999972, 49.225505965000146 ], [ -122.299913599999968, 49.225512216000041 ], [ -122.300145894999957, 49.225493206000046 ], [ -122.300365598, 49.225476386 ], [ -122.300742006999954, 49.225319811000062 ], [ -122.301634297999911, 49.224687108000062 ], [ -122.301876313999912, 49.224565 ], [ -122.302159383999978, 49.224422197000074 ], [ -122.302895018999948, 49.224342792000051 ], [ -122.303920110999968, 49.224266185000083 ], [ -122.304322880999948, 49.224209806000125 ], [ -122.304690609, 49.224076404000108 ], [ -122.305142093999947, 49.223717801000092 ], [ -122.30546900099999, 49.2234072870001 ], [ -122.305870572999936, 49.222744193000047 ], [ -122.30629622099994, 49.222192807000063 ], [ -122.306855716999948, 49.221806404000056 ], [ -122.307654710999913, 49.221549804000098 ], [ -122.308605894999971, 49.221089396000131 ], [ -122.310094988999978, 49.220150805000053 ], [ -122.310267501999988, 49.219863792000112 ], [ -122.310850396999939, 49.219181690000035 ], [ -122.311237997999982, 49.21902190800003 ], [ -122.311759781999967, 49.218883805000132 ], [ -122.31184910199994, 49.218885860000078 ], [ -122.312565682999903, 49.218902389000078 ], [ -122.312597390999898, 49.21890858600004 ], [ -122.313981489999961, 49.21917889900007 ], [ -122.315187255999973, 49.219350786000092 ], [ -122.315204013999931, 49.219379474000085 ], [ -122.315856655999966, 49.220494601000063 ], [ -122.31630485899997, 49.221260404000127 ], [ -122.316746670000015, 49.222015321000057 ], [ -122.31716803799999, 49.222735158000049 ], [ -122.317559236999969, 49.223118057000065 ], [ -122.31848205499999, 49.223551553000028 ], [ -122.318834055999943, 49.22375374100011 ], [ -122.319037417999979, 49.223888746000107 ], [ -122.319007616999968, 49.22426451300003 ], [ -122.317529885999988, 49.224214031000116 ], [ -122.317525957999976, 49.224263548000117 ], [ -122.317423404999943, 49.224260044000111 ], [ -122.317260871999935, 49.226308549000066 ], [ -122.318056517999963, 49.226335732000059 ], [ -122.317771284999978, 49.22993102600006 ], [ -122.317378540999925, 49.229917608000079 ], [ -122.317180398999966, 49.232414533000046 ], [ -122.316133185999931, 49.23237875000008 ], [ -122.315892214999934, 49.235414156000154 ], [ -122.310412428999939, 49.235226746000102 ], [ -122.310464450999987, 49.234572447000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.940397350993378", "sL_AssetLoss": "4605.5", "sL_BldgLoss": "4331", "sL_StrLoss": "3576", "sL_NStrLoss": "755", "sL_ContLoss": "274.5", "geom_point": "0101000020E610000075CDA27FDB935EC0B0535161919F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.307674654999957, 49.244732765000016 ], [ -122.313155551999955, 49.244920312000069 ], [ -122.312869823999904, 49.24851549100002 ], [ -122.307388504999949, 49.248327931000084 ], [ -122.307674654999957, 49.244732765000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12300917", "BldgCostT": "8011667", "sL_LossRatio": "0.925262089956036", "sL_AssetLoss": "17742", "sL_BldgLoss": "16416", "sL_StrLoss": "12808", "sL_NStrLoss": "3608", "sL_ContLoss": "1326", "geom_point": "0101000020E61000009D425B8C09915EC0A9A2BAB187984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.260877196999928, 49.198574690000022 ], [ -122.259846779, 49.198500103000086 ], [ -122.259736963999913, 49.198498341000061 ], [ -122.258692609999954, 49.198481688000122 ], [ -122.258646959999936, 49.198481539000092 ], [ -122.258679890999971, 49.198072759000091 ], [ -122.258834055999898, 49.196158950000047 ], [ -122.264309027999971, 49.196348990000047 ], [ -122.264244762999965, 49.197147953000126 ], [ -122.264998449999936, 49.197174091000058 ], [ -122.265161655999947, 49.195144598000063 ], [ -122.267519634999942, 49.195226343000058 ], [ -122.267565785, 49.194652055000077 ], [ -122.267925191999922, 49.194664511000056 ], [ -122.26798721099999, 49.193892664000074 ], [ -122.26807927599998, 49.193895854000026 ], [ -122.268133941999963, 49.193215465000058 ], [ -122.268145848999964, 49.19321587700005 ], [ -122.268366086999933, 49.190474563000087 ], [ -122.268394459999968, 49.190475546000116 ], [ -122.268454354999946, 49.189729976000123 ], [ -122.267070264999916, 49.189682005000108 ], [ -122.267125001999915, 49.189000861000125 ], [ -122.264200107999983, 49.188899430000021 ], [ -122.264310477999956, 49.187527013000093 ], [ -122.26378907900002, 49.187508923000074 ], [ -122.264078226999956, 49.183913540000056 ], [ -122.265836657999941, 49.183974539000126 ], [ -122.265840253999954, 49.183929782000099 ], [ -122.269955258999943, 49.184072416000078 ], [ -122.269271908999983, 49.186600311000099 ], [ -122.270122774999933, 49.193388342000105 ], [ -122.270454, 49.193754711000103 ], [ -122.270840724999971, 49.193981696000051 ], [ -122.270928211999987, 49.194138811000101 ], [ -122.27087360099992, 49.194272104000042 ], [ -122.27041564699999, 49.194556678000019 ], [ -122.270249397999976, 49.195413883000079 ], [ -122.270249523999922, 49.195422873000012 ], [ -122.270259496999969, 49.196387871000084 ], [ -122.270000304999883, 49.196231748000031 ], [ -122.269754146999972, 49.195843060000122 ], [ -122.269741300999954, 49.195930206000071 ], [ -122.269464261999971, 49.196277505000047 ], [ -122.269118580999958, 49.196710795000051 ], [ -122.2678743, 49.197523006000083 ], [ -122.267474548999928, 49.197642206000175 ], [ -122.266309007999951, 49.197989799000013 ], [ -122.265707819999975, 49.198244889000087 ], [ -122.265044311999972, 49.198526397000094 ], [ -122.261633193999941, 49.198561212000108 ], [ -122.260877196999928, 49.198574690000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10621250", "BldgCostT": "7325000", "sL_LossRatio": "0.88723185821581", "sL_AssetLoss": "37014", "sL_BldgLoss": "32840", "sL_StrLoss": "22720", "sL_NStrLoss": "10120", "sL_ContLoss": "4174", "geom_point": "0101000020E61000009B4C26B8A28E5EC0E36597B90A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.225864342999941, 49.210856148000104 ], [ -122.225958968999947, 49.20969206900002 ], [ -122.22479887899999, 49.209651423000047 ], [ -122.225091178999918, 49.206056268000076 ], [ -122.225600225999969, 49.206074105000049 ], [ -122.225676070999938, 49.205141028000043 ], [ -122.22568372399995, 49.205046876000033 ], [ -122.225528990999976, 49.205041455000142 ], [ -122.22582120599999, 49.20144627200014 ], [ -122.226064879999925, 49.201454809000083 ], [ -122.226218293999921, 49.199566975000018 ], [ -122.227483062999966, 49.199611281000038 ], [ -122.227497650999936, 49.199431705000094 ], [ -122.227555960999922, 49.199433748000025 ], [ -122.227620988999945, 49.198633207000057 ], [ -122.227795730999929, 49.198639327000116 ], [ -122.227897747999961, 49.197383310000099 ], [ -122.22867407399994, 49.19741049600006 ], [ -122.22877468199999, 49.196171527000068 ], [ -122.228842034999943, 49.196173886000047 ], [ -122.228879300999935, 49.195714928000051 ], [ -122.231172878, 49.195795215000118 ], [ -122.23435409699999, 49.195906491000066 ], [ -122.234144143, 49.1984958460001 ], [ -122.232402315999977, 49.198480992000015 ], [ -122.232307507, 49.198520081000055 ], [ -122.232055704999951, 49.198623909000091 ], [ -122.230866090999911, 49.19966660700009 ], [ -122.23019710599999, 49.199859508000046 ], [ -122.229795993000025, 49.199862608000046 ], [ -122.22979954099999, 49.199998611000119 ], [ -122.229799857999964, 49.200011212000106 ], [ -122.229824293999968, 49.20095069000007 ], [ -122.229553924999919, 49.201707867000032 ], [ -122.229358625999907, 49.202254775000121 ], [ -122.229287688999989, 49.202453395000163 ], [ -122.229171194999964, 49.20285670700008 ], [ -122.229103698999964, 49.203823296000067 ], [ -122.229172614999953, 49.204361994000088 ], [ -122.229187989999957, 49.20461455300012 ], [ -122.229207635999927, 49.204937106000067 ], [ -122.229223219999966, 49.205193010000094 ], [ -122.229283198999923, 49.206177598000075 ], [ -122.229379189999946, 49.207057991000063 ], [ -122.229478501999978, 49.207525609000072 ], [ -122.229623314999969, 49.207771385000015 ], [ -122.229895813999946, 49.208051293000096 ], [ -122.230201358999949, 49.208269026000082 ], [ -122.230905503999949, 49.208770798000067 ], [ -122.230977977999899, 49.208847147000014 ], [ -122.231200191999932, 49.209081197000096 ], [ -122.231523402999983, 49.209531075000051 ], [ -122.231480759999926, 49.210056458000103 ], [ -122.231421550999954, 49.210054387000078 ], [ -122.231340910999947, 49.211047859000097 ], [ -122.225864342999941, 49.210856148000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12520749", "BldgCostT": "8634999", "sL_LossRatio": "0.82161070310844", "sL_AssetLoss": "80201", "sL_BldgLoss": "65894", "sL_StrLoss": "36644", "sL_NStrLoss": "29250", "sL_ContLoss": "14307", "geom_point": "0101000020E6100000594F0878AD8F5EC0CBE6DCB3CF974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.25038039899998, 49.189145507000042 ], [ -122.248817212999967, 49.189054308000038 ], [ -122.24802080799995, 49.189067093000055 ], [ -122.247731203999976, 49.189136892000093 ], [ -122.247706958999942, 49.189136323000099 ], [ -122.246701683999973, 49.189112699000127 ], [ -122.24349339, 49.188030307000083 ], [ -122.241128823999972, 49.18743930199999 ], [ -122.240565494999899, 49.187407887000035 ], [ -122.24001868799995, 49.187278294000123 ], [ -122.239284202999968, 49.186905195000051 ], [ -122.239037595999932, 49.185878315000139 ], [ -122.238730676999964, 49.185408397000081 ], [ -122.23784049899993, 49.185240287000113 ], [ -122.237029116999977, 49.185396999000048 ], [ -122.236782885999943, 49.185341393000101 ], [ -122.236963181999926, 49.18434449600008 ], [ -122.236751975999979, 49.183922187000078 ], [ -122.236349197999985, 49.183116804000043 ], [ -122.236333281999947, 49.182964164000026 ], [ -122.236336010999949, 49.18293047100007 ], [ -122.236767021999967, 49.182945536000034 ], [ -122.236778244000035, 49.182806989000042 ], [ -122.236315204999968, 49.182790804000049 ], [ -122.236278801999916, 49.182441692000047 ], [ -122.237252811999937, 49.181521699000058 ], [ -122.238068793999958, 49.180222804000046 ], [ -122.238005293999947, 49.179835393000111 ], [ -122.237581191999965, 49.178869811000027 ], [ -122.237533701999965, 49.178455409000058 ], [ -122.237644607999968, 49.178348607000068 ], [ -122.238126488, 49.178307210000064 ], [ -122.239202590999966, 49.178691814000025 ], [ -122.240556605999956, 49.179033599000022 ], [ -122.241426901999986, 49.179144910000012 ], [ -122.241409239999925, 49.179363252 ], [ -122.241440912999977, 49.179364359000061 ], [ -122.24125359199995, 49.181679842000058 ], [ -122.244644746999953, 49.181798179000069 ], [ -122.24456909499996, 49.182734093000072 ], [ -122.245299381999928, 49.182759563000062 ], [ -122.245202678999974, 49.183956089000084 ], [ -122.245008789999972, 49.186354902000133 ], [ -122.243742369999893, 49.186310731000056 ], [ -122.243636983999963, 49.18761402300003 ], [ -122.247243586999915, 49.187739778000093 ], [ -122.247245397999961, 49.187717346000049 ], [ -122.24770652899997, 49.187733417000068 ], [ -122.248136588999941, 49.187748402000096 ], [ -122.24818579399998, 49.187139168000066 ], [ -122.253659659999968, 49.187329752000061 ], [ -122.253627635999948, 49.187726833000085 ], [ -122.25507313599999, 49.187777115000124 ], [ -122.254794295999957, 49.191235658000011 ], [ -122.254783266999937, 49.191372452000024 ], [ -122.254177982999977, 49.191351400000038 ], [ -122.253988764999988, 49.193697665000101 ], [ -122.25277466499989, 49.193655428000071 ], [ -122.25271904899995, 49.194344794000109 ], [ -122.250339874999952, 49.194261985000026 ], [ -122.250316196999947, 49.194200001000119 ], [ -122.25032391299996, 49.193661596000027 ], [ -122.250910295999958, 49.193080589 ], [ -122.251220185999898, 49.192550799000081 ], [ -122.251197192999925, 49.192290115000084 ], [ -122.250720133999948, 49.191217336000101 ], [ -122.250679782999967, 49.191126597000107 ], [ -122.251258098, 49.190059809000047 ], [ -122.251112387999939, 49.189689501000011 ], [ -122.250815610999894, 49.189364807000061 ], [ -122.25038039899998, 49.189145507000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9458834", "BldgCostT": "6523334", "sL_LossRatio": "0.838601141924959", "sL_AssetLoss": "49040", "sL_BldgLoss": "41125", "sL_StrLoss": "23952", "sL_NStrLoss": "17173", "sL_ContLoss": "7915", "geom_point": "0101000020E61000007A903BF80B905EC053D6A9D12F974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.24535434799999, 49.183955763000029 ], [ -122.245355279999984, 49.183944215000118 ], [ -122.245275621999951, 49.183941437000044 ], [ -122.245502244999969, 49.181137249000123 ], [ -122.244721776999981, 49.18111003000012 ], [ -122.244863521999989, 49.179356301000048 ], [ -122.246177203999963, 49.179385384000035 ], [ -122.247302188999981, 49.179321295000108 ], [ -122.249712103999954, 49.178770103000055 ], [ -122.251302396999904, 49.178023807000045 ], [ -122.253558889999965, 49.176716398000082 ], [ -122.253849483999929, 49.176486537000102 ], [ -122.255371048999976, 49.176499528000114 ], [ -122.258614450999957, 49.176531271000066 ], [ -122.258335877999912, 49.179990700000118 ], [ -122.257683503999928, 49.179968025000065 ], [ -122.257672856999989, 49.180100216000064 ], [ -122.256606670999986, 49.180063150000144 ], [ -122.256605011999937, 49.180083742000107 ], [ -122.256140121999977, 49.180067576000063 ], [ -122.256137093999939, 49.180105153000071 ], [ -122.25557384699998, 49.180085565000091 ], [ -122.255571371999963, 49.180116266000013 ], [ -122.254355443999913, 49.18007397000008 ], [ -122.254251587999946, 49.181362195000162 ], [ -122.251226826999954, 49.181256918000031 ], [ -122.250939545999969, 49.184817064000043 ], [ -122.250902228999948, 49.184815765000039 ], [ -122.250793213999941, 49.186166563000022 ], [ -122.250665156999958, 49.186162104000026 ], [ -122.250626434999973, 49.18664186600008 ], [ -122.24770616799999, 49.186540141000044 ], [ -122.245152662999928, 49.186451127000055 ], [ -122.24535434799999, 49.183955763000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60837250", "BldgCostT": "41485000", "sL_LossRatio": "0.901060020496611", "sL_AssetLoss": "161978", "sL_BldgLoss": "145951.9", "sL_StrLoss": "103700.9", "sL_NStrLoss": "42251", "sL_ContLoss": "16026.1", "geom_point": "0101000020E6100000014FD67F088E5EC03EFD77AFA0A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.226962291999939, 49.281487995000134 ], [ -122.226999466999956, 49.281031284000072 ], [ -122.226169892999934, 49.281002276000095 ], [ -122.226190995999943, 49.280743063000024 ], [ -122.226013312999925, 49.280736848000046 ], [ -122.225981604999959, 49.281126287000085 ], [ -122.220496789, 49.280934324000029 ], [ -122.2205266499999, 49.280568099000057 ], [ -122.220588208999942, 49.279813090000125 ], [ -122.219863638, 49.279787710000051 ], [ -122.219869311999915, 49.279718124000063 ], [ -122.218589297999984, 49.279673277000072 ], [ -122.218882521999944, 49.276078519000038 ], [ -122.22377322399997, 49.276249794000123 ], [ -122.223792924999884, 49.276007937000053 ], [ -122.224360078999965, 49.276027785000082 ], [ -122.224416110999968, 49.275339799000093 ], [ -122.222634398999944, 49.275277438000074 ], [ -122.222624348999929, 49.275400784000091 ], [ -122.217503229999934, 49.27522137600004 ], [ -122.217140224, 49.275208650000096 ], [ -122.217141649000013, 49.275191179000068 ], [ -122.215531267999921, 49.275134707000106 ], [ -122.215609712999978, 49.274173742000102 ], [ -122.215824699, 49.271539932000081 ], [ -122.21714847399997, 49.27158635700011 ], [ -122.21881588799998, 49.271644808000119 ], [ -122.219397618999977, 49.271665195000075 ], [ -122.219406252999946, 49.271559319000069 ], [ -122.220148298999959, 49.271585319000067 ], [ -122.220189647999945, 49.27107813700006 ], [ -122.222207849999933, 49.271148826000086 ], [ -122.22247803499998, 49.267832683000115 ], [ -122.224209154000022, 49.267893286000103 ], [ -122.224380371999985, 49.265790622000054 ], [ -122.225720588999977, 49.265837523000066 ], [ -122.225842660999945, 49.264337751000049 ], [ -122.2255151199999, 49.264326290000042 ], [ -122.225485267999943, 49.264693046000076 ], [ -122.223487518999917, 49.264623124000096 ], [ -122.220002394999966, 49.264501054000057 ], [ -122.220075606999956, 49.263602919000078 ], [ -122.217819053999946, 49.263523821000092 ], [ -122.21753906899994, 49.266956331000081 ], [ -122.216397609999945, 49.26691630100003 ], [ -122.212055961999951, 49.26676393499999 ], [ -122.212124080999956, 49.265930073000092 ], [ -122.211923608999896, 49.265923033000071 ], [ -122.212217261999939, 49.26232821900004 ], [ -122.21459712799999, 49.262411765000046 ], [ -122.21753431899999, 49.262514804000048 ], [ -122.217644891999953, 49.26115915500003 ], [ -122.216961292999969, 49.261135181000093 ], [ -122.216971888000018, 49.261005295000082 ], [ -122.214527538999917, 49.26091953500007 ], [ -122.213970995999915, 49.260900001000039 ], [ -122.21416223899999, 49.258557401000054 ], [ -122.213959526999986, 49.25855602200005 ], [ -122.213955241999955, 49.258825853000104 ], [ -122.213542982999954, 49.258823048000089 ], [ -122.213538695999887, 49.25909287800004 ], [ -122.213126432999928, 49.259090071000067 ], [ -122.213122141999946, 49.259359902000092 ], [ -122.211885350000017, 49.259351473000017 ], [ -122.211893943999939, 49.25881181000004 ], [ -122.211481683999949, 49.258808997000067 ], [ -122.211498879999937, 49.257729674000124 ], [ -122.212323380999976, 49.257735299000061 ], [ -122.212327674999955, 49.257465468000092 ], [ -122.213976667999972, 49.257476699000037 ], [ -122.213972383999987, 49.257746530000063 ], [ -122.214228287999973, 49.257748271000061 ], [ -122.214258688999976, 49.257375848000102 ], [ -122.213445398999937, 49.257347297000052 ], [ -122.213540881999933, 49.25617777500004 ], [ -122.213521675, 49.256177101000041 ], [ -122.213602734999981, 49.255184195000076 ], [ -122.212562802999969, 49.255147678000085 ], [ -122.212802242999913, 49.252215326000098 ], [ -122.210881127999954, 49.252147840000113 ], [ -122.211174773999929, 49.248552954000054 ], [ -122.211195337999968, 49.248553677000068 ], [ -122.211282029999921, 49.247492255000047 ], [ -122.213229147999982, 49.247560653000043 ], [ -122.213432476999913, 49.245069699000105 ], [ -122.213705601999948, 49.245079291000074 ], [ -122.21375877399997, 49.24442779500005 ], [ -122.213784041999972, 49.244118182000058 ], [ -122.213744282000022, 49.244116786000063 ], [ -122.213640328999986, 49.24411313500007 ], [ -122.213647564999945, 49.244024475000039 ], [ -122.212632099999951, 49.243988809 ], [ -122.212863598999917, 49.241152930000055 ], [ -122.210957917999934, 49.241085971000047 ], [ -122.211251488999949, 49.237491025000061 ], [ -122.213439164999969, 49.237567890000037 ], [ -122.213694059999952, 49.237576842000074 ], [ -122.213863993999936, 49.23549428200009 ], [ -122.214228761999919, 49.235507093000138 ], [ -122.215020760999948, 49.23553490400009 ], [ -122.215092312999957, 49.234657702000106 ], [ -122.21529202, 49.232209207000039 ], [ -122.215950041999989, 49.232232310000079 ], [ -122.216093504999918, 49.230472910000017 ], [ -122.215794955999968, 49.23046242900012 ], [ -122.216088084999981, 49.226867411000057 ], [ -122.21735254499994, 49.22691179800006 ], [ -122.21738945499996, 49.226458941000068 ], [ -122.218951761999961, 49.226513762000074 ], [ -122.218959792999954, 49.226415178000089 ], [ -122.221430722999941, 49.2265018370001 ], [ -122.22151791899995, 49.225430801000073 ], [ -122.221394974999924, 49.225426491000057 ], [ -122.221687638999938, 49.221831430000115 ], [ -122.225734704999951, 49.221973249000051 ], [ -122.22538718599999, 49.22269159800004 ], [ -122.225086916999928, 49.22342830700012 ], [ -122.22493439699997, 49.223952890000085 ], [ -122.224923194999946, 49.224208500000088 ], [ -122.224938387999927, 49.224335210000028 ], [ -122.224948172999987, 49.224416395000041 ], [ -122.224961095999959, 49.224524392000021 ], [ -122.225007512000019, 49.224910899000143 ], [ -122.225004621, 49.224951740000115 ], [ -122.224990617999978, 49.225152806000075 ], [ -122.224225181999913, 49.226677091000063 ], [ -122.223651095999969, 49.227436709000123 ], [ -122.22355549299999, 49.227733498000077 ], [ -122.223693967999964, 49.22818534000001 ], [ -122.223720508999918, 49.22827190700005 ], [ -122.224364097999953, 49.228937104000067 ], [ -122.22443581499995, 49.229153199000052 ], [ -122.224398614999956, 49.22969540400004 ], [ -122.224250000999959, 49.23003539300008 ], [ -122.223794713, 49.230566608000053 ], [ -122.223390509, 49.23136450099999 ], [ -122.223050502999939, 49.231660804000057 ], [ -122.222514060999984, 49.23186856400006 ], [ -122.221477317000023, 49.23183222600008 ], [ -122.221433976, 49.232364501000099 ], [ -122.221693, 49.232373581000076 ], [ -122.221613879999964, 49.232466690000138 ], [ -122.221360940999972, 49.23290266800003 ], [ -122.221246387999884, 49.233100093000054 ], [ -122.220971622999983, 49.233354603000045 ], [ -122.220340001999929, 49.23365419200011 ], [ -122.220068294999976, 49.233903292000058 ], [ -122.219432196999975, 49.234712907000052 ], [ -122.21852508399995, 49.235814093000045 ], [ -122.21836548499999, 49.236778294000047 ], [ -122.21830346699997, 49.236847053000041 ], [ -122.217661697999944, 49.237558487000051 ], [ -122.217604800999965, 49.237750304000024 ], [ -122.217637806999974, 49.238609494000102 ], [ -122.217531410000021, 49.23917360300004 ], [ -122.217524395999959, 49.239596903000084 ], [ -122.217653432999967, 49.239998724000017 ], [ -122.21797581299991, 49.241002602000066 ], [ -122.21791719299992, 49.241300695000071 ], [ -122.217688106999958, 49.241885700000061 ], [ -122.217303183999931, 49.243134893000047 ], [ -122.217204217999893, 49.244652903000031 ], [ -122.216975789999964, 49.245054123000017 ], [ -122.21679519599995, 49.245371295000027 ], [ -122.216773336999921, 49.245435723000043 ], [ -122.216672186999972, 49.24573379100007 ], [ -122.216702216999977, 49.246090804000076 ], [ -122.217428877999964, 49.249093288 ], [ -122.217485477999944, 49.249447656000029 ], [ -122.217524404999935, 49.249691515000059 ], [ -122.217575168999986, 49.249856073000018 ], [ -122.217654800999966, 49.250114294000127 ], [ -122.217667939999956, 49.250201702000012 ], [ -122.217777701, 49.25093250600009 ], [ -122.217718710999989, 49.251319803000094 ], [ -122.217453133999939, 49.252378085000082 ], [ -122.217321603999906, 49.252902110000022 ], [ -122.21726589299999, 49.253805008000022 ], [ -122.217328799999933, 49.25466788100006 ], [ -122.21750579899998, 49.255143715000088 ], [ -122.218237305999978, 49.25633560600005 ], [ -122.218301239999931, 49.256483064000086 ], [ -122.218686215999966, 49.257370705000028 ], [ -122.219040889, 49.258414201 ], [ -122.219210205999957, 49.25873200500007 ], [ -122.219293952999962, 49.258825311000066 ], [ -122.219594489999949, 49.259160113000057 ], [ -122.219684238999932, 49.259242644000096 ], [ -122.221188977999972, 49.260626499000104 ], [ -122.221929023999976, 49.261259329000033 ], [ -122.221993415, 49.261314402000046 ], [ -122.222322795999943, 49.26152240100005 ], [ -122.222729799999911, 49.261709889 ], [ -122.222850100999935, 49.261765292000071 ], [ -122.223261808999965, 49.261915115000129 ], [ -122.223833992999985, 49.262123303000052 ], [ -122.223855916999923, 49.262132240000064 ], [ -122.224881002999936, 49.26255108700007 ], [ -122.225111209, 49.262761906000073 ], [ -122.225349283999961, 49.26309559700006 ], [ -122.225551192999916, 49.263199115000084 ], [ -122.225776307, 49.263254797000052 ], [ -122.227210489999962, 49.263332906000052 ], [ -122.227581198999928, 49.263422510000098 ], [ -122.227746281999956, 49.26357239500004 ], [ -122.22785734199999, 49.263855104000079 ], [ -122.227932059999944, 49.264045364000047 ], [ -122.228031912999981, 49.264299615000049 ], [ -122.228042382999902, 49.264326297000096 ], [ -122.228122797999958, 49.264720860000132 ], [ -122.228163202, 49.264919089000053 ], [ -122.228155516999934, 49.265756630000077 ], [ -122.228131892999926, 49.268329282000138 ], [ -122.228126452999916, 49.268922926000094 ], [ -122.228106703999956, 49.271072789000122 ], [ -122.22806794199991, 49.272323003000054 ], [ -122.228049541999923, 49.272916495000068 ], [ -122.22804320099999, 49.273120911000063 ], [ -122.228041046999948, 49.273375071000068 ], [ -122.22803676800001, 49.273879848 ], [ -122.228008643999928, 49.277197865000069 ], [ -122.228007428999916, 49.27734310500005 ], [ -122.22800178499989, 49.278006094000041 ], [ -122.228005587999988, 49.278141673000057 ], [ -122.228014089999988, 49.278447331000038 ], [ -122.22802311699999, 49.278771226000089 ], [ -122.228026711000012, 49.278900102000087 ], [ -122.227982468, 49.279230848000061 ], [ -122.22798111499999, 49.279241005000131 ], [ -122.22808247599994, 49.279717690000034 ], [ -122.228072775, 49.280259900000075 ], [ -122.228037861999965, 49.280456008000037 ], [ -122.22801336399999, 49.280593406000065 ], [ -122.228006721999918, 49.280630572000078 ], [ -122.227953884999977, 49.280927109000089 ], [ -122.227951322999957, 49.281329892000024 ], [ -122.227984900999971, 49.281523746000033 ], [ -122.226962291999939, 49.281487995000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19086833", "BldgCostT": "13163333", "sL_LossRatio": "0.811982709250237", "sL_AssetLoss": "127467", "sL_BldgLoss": "103501", "sL_StrLoss": "55901", "sL_NStrLoss": "47600", "sL_ContLoss": "23966", "geom_point": "0101000020E6100000A67EE6C56C8F5EC09FF04C4784984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.242271093999975, 49.197111089000039 ], [ -122.242359332999968, 49.196020503000085 ], [ -122.238039918, 49.195869713000057 ], [ -122.238331106999965, 49.192274446000077 ], [ -122.243805537999918, 49.192465529000039 ], [ -122.243689031999949, 49.193906157000058 ], [ -122.247254356999946, 49.194030453000053 ], [ -122.247279410999965, 49.193720363000075 ], [ -122.24416468299998, 49.193611782000076 ], [ -122.24435609399994, 49.191244554000043 ], [ -122.242980088999943, 49.191196557000104 ], [ -122.243161459999939, 49.188954072000129 ], [ -122.237987255999897, 49.188773429000129 ], [ -122.237990690999979, 49.188731012000076 ], [ -122.237492842, 49.188713617000083 ], [ -122.237520755999924, 49.188368988000065 ], [ -122.236888170999947, 49.188346883000108 ], [ -122.236636632999932, 49.191451689000097 ], [ -122.236500593999935, 49.191446935000101 ], [ -122.236448359999912, 49.192091591000114 ], [ -122.232852971999932, 49.191965879000108 ], [ -122.230974004999922, 49.191900134000079 ], [ -122.231183480999974, 49.189318466000017 ], [ -122.229930728999989, 49.189274613000094 ], [ -122.230222504999972, 49.185679332000063 ], [ -122.230473595999939, 49.185688123000077 ], [ -122.230529930999964, 49.184993837000079 ], [ -122.231682246999981, 49.185034172000094 ], [ -122.235099250999895, 49.185153705000097 ], [ -122.235131476999968, 49.184756062000076 ], [ -122.234478628999952, 49.184751735000098 ], [ -122.234491767999913, 49.183899950000054 ], [ -122.234495278999972, 49.183672392000069 ], [ -122.235218908000022, 49.183677187000107 ], [ -122.235279452999947, 49.182930046000124 ], [ -122.235934975999925, 49.182952964000052 ], [ -122.236316899999977, 49.183917899000051 ], [ -122.236548887999973, 49.184503997000029 ], [ -122.236502093999931, 49.184808809000039 ], [ -122.23623948699999, 49.185013802000057 ], [ -122.236167913999935, 49.185201795000104 ], [ -122.236247106999912, 49.185293009000141 ], [ -122.236504318999934, 49.185510899000079 ], [ -122.236833286999953, 49.185647602000053 ], [ -122.237382806999932, 49.185606308000075 ], [ -122.237851681999985, 49.185446790000107 ], [ -122.2384120899999, 49.185486698000091 ], [ -122.23877501099993, 49.1860833960001 ], [ -122.238913213, 49.186821190000018 ], [ -122.239278806999948, 49.18726550700007 ], [ -122.239550496000021, 49.187429308000077 ], [ -122.242341214999925, 49.187977601000043 ], [ -122.24616601399994, 49.189208100000059 ], [ -122.247205296999937, 49.189448800000015 ], [ -122.247707012999939, 49.189399575000138 ], [ -122.249266099999943, 49.189246594000075 ], [ -122.249978491999968, 49.189332103000012 ], [ -122.250484087999922, 49.189524310000074 ], [ -122.250727595999976, 49.189769315000056 ], [ -122.250791303999932, 49.190057002000096 ], [ -122.250466876999951, 49.190566795000088 ], [ -122.250381003999976, 49.190908593000096 ], [ -122.25038488099996, 49.191227568000052 ], [ -122.25039281, 49.191880006000126 ], [ -122.25079601299997, 49.192449594000031 ], [ -122.250666022999951, 49.192844201000085 ], [ -122.250036489999985, 49.193731406000076 ], [ -122.250005682999969, 49.194250348000018 ], [ -122.247998290999959, 49.194180432000053 ], [ -122.247780123, 49.196880978000131 ], [ -122.249953591999926, 49.196956677000117 ], [ -122.249949336999975, 49.197009375000114 ], [ -122.25080750699999, 49.197039252000124 ], [ -122.250873878999968, 49.196217058000066 ], [ -122.253811548999948, 49.196319279000058 ], [ -122.253920796999964, 49.196383303000125 ], [ -122.253957085999929, 49.196706596000062 ], [ -122.253763506999931, 49.196876098000082 ], [ -122.2530590099999, 49.197132384000071 ], [ -122.251656320999956, 49.19724920000008 ], [ -122.250802213999975, 49.197522694000078 ], [ -122.250646497, 49.197764803000041 ], [ -122.250883944999927, 49.198392379000062 ], [ -122.250651029999943, 49.198395554000115 ], [ -122.248690781999969, 49.198422197000042 ], [ -122.247591218999943, 49.198407394000128 ], [ -122.244789886999939, 49.198404768000032 ], [ -122.244378132999941, 49.1984043920001 ], [ -122.24133163499998, 49.198401418000095 ], [ -122.241438412999955, 49.197082034000154 ], [ -122.242271093999975, 49.197111089000039 ] ], [ [ -122.236660813999976, 49.187847067000135 ], [ -122.23671528599999, 49.187174691000031 ], [ -122.236509164999944, 49.18716748700006 ], [ -122.236454689999988, 49.187839863000058 ], [ -122.236660813999976, 49.187847067000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390584", "BldgCostT": "2338334", "sL_LossRatio": "0.835018716129393", "sL_AssetLoss": "17899", "sL_BldgLoss": "14946", "sL_StrLoss": "8632", "sL_NStrLoss": "6314", "sL_ContLoss": "2953", "geom_point": "0101000020E61000000346B0D427915EC026E0F856FB964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.267898812999988, 49.179112237 ], [ -122.267914622999982, 49.178915422000046 ], [ -122.267136235999928, 49.178888435 ], [ -122.267238498999973, 49.177615532000047 ], [ -122.264059408999941, 49.177505256000131 ], [ -122.264133393999941, 49.176585062000129 ], [ -122.269968103999972, 49.17664162100003 ], [ -122.270103945999907, 49.180339431000043 ], [ -122.270126071999968, 49.180941624000113 ], [ -122.270127416999969, 49.180962998000055 ], [ -122.270163282999945, 49.181530995000088 ], [ -122.270243379999968, 49.182798911000077 ], [ -122.266296171999954, 49.182662103000013 ], [ -122.266585094999968, 49.179066687000024 ], [ -122.267898812999988, 49.179112237 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671417", "BldgCostT": "3221667", "sL_LossRatio": "0.838186003311392", "sL_AssetLoss": "24763", "sL_BldgLoss": "20756", "sL_StrLoss": "11967", "sL_NStrLoss": "8789", "sL_ContLoss": "4007", "geom_point": "0101000020E6100000EDF0DFD5958E5EC08CBCEEA5D79B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.232921755999939, 49.211489971000049 ], [ -122.232931082999954, 49.211490297000076 ], [ -122.23336780399994, 49.212098091000065 ], [ -122.233573689999957, 49.212522605000125 ], [ -122.233704817000017, 49.213021991000083 ], [ -122.233680695999936, 49.213437588000069 ], [ -122.23358631499994, 49.213923692000051 ], [ -122.233331299999961, 49.214494402000078 ], [ -122.232887386999934, 49.215006096000089 ], [ -122.231441147999945, 49.216301466000097 ], [ -122.231337260999908, 49.216394480000112 ], [ -122.229213329999979, 49.218296649000131 ], [ -122.228175211999883, 49.219226302000067 ], [ -122.227141605000014, 49.220233804000046 ], [ -122.226191422999989, 49.22124610900007 ], [ -122.226147864999973, 49.22130752900015 ], [ -122.225860994999934, 49.221712192000027 ], [ -122.225787735999958, 49.221863628000051 ], [ -122.223787787999967, 49.221793564000123 ], [ -122.223864178999975, 49.220854550000112 ], [ -122.22408024399999, 49.218198478000055 ], [ -122.224625604999972, 49.218217586000037 ], [ -122.224683656999929, 49.217503791000055 ], [ -122.224771831999988, 49.217506880000052 ], [ -122.225744035999952, 49.217540937000116 ], [ -122.225877397999966, 49.21590061400012 ], [ -122.226332514, 49.21591655400001 ], [ -122.226366601, 49.215497225000028 ], [ -122.22755863499998, 49.215538967000057 ], [ -122.227609082999919, 49.214918153000113 ], [ -122.231831443999951, 49.215065902000099 ], [ -122.231883735999972, 49.214421655000095 ], [ -122.232387039999963, 49.214439256000105 ], [ -122.232479172999916, 49.213303965000115 ], [ -122.23277373, 49.213314266000033 ], [ -122.232796794999942, 49.213030015000044 ], [ -122.232921755999939, 49.211489971000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.832254085723096", "sL_AssetLoss": "3243", "sL_BldgLoss": "2699", "sL_StrLoss": "1740", "sL_NStrLoss": "959", "sL_ContLoss": "544", "geom_point": "0101000020E6100000BEB088A3238F5EC0B44E850D09974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.2356767429999, 49.182768484000128 ], [ -122.235808923999954, 49.1811370980001 ], [ -122.235777248999952, 49.18113599100014 ], [ -122.236068522, 49.177540649000044 ], [ -122.236312459999965, 49.177549177000046 ], [ -122.237087573999986, 49.177966893000111 ], [ -122.237224800999925, 49.178849909000071 ], [ -122.237675099999947, 49.179959294000135 ], [ -122.237682696999983, 49.18028259099999 ], [ -122.236660601999972, 49.181661287000097 ], [ -122.235947292999953, 49.182582698000026 ], [ -122.23588207099999, 49.182775663000065 ], [ -122.2356767429999, 49.182768484000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.829694323144105", "sL_AssetLoss": "7099", "sL_BldgLoss": "5890", "sL_StrLoss": "3510", "sL_NStrLoss": "2380", "sL_ContLoss": "1209", "geom_point": "0101000020E61000004891104045905EC0380564754C994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.251127409, 49.198389057000057 ], [ -122.251110818, 49.197975595000074 ], [ -122.25147307599994, 49.197563996000085 ], [ -122.251900690999946, 49.197448596000079 ], [ -122.253589510999973, 49.1973974040001 ], [ -122.254087294999934, 49.19722929100007 ], [ -122.254391785999928, 49.197015699000112 ], [ -122.25452359599997, 49.196458790000086 ], [ -122.254492503999984, 49.196342963000028 ], [ -122.256348822999939, 49.196407504000071 ], [ -122.25618228799999, 49.198473469000078 ], [ -122.253281708, 49.198463900000078 ], [ -122.252272916999971, 49.198412502000032 ], [ -122.251668595999959, 49.198381688000033 ], [ -122.251227971999953, 49.19838769000004 ], [ -122.251127409, 49.198389057000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.836615397371585", "sL_AssetLoss": "24121", "sL_BldgLoss": "20180", "sL_StrLoss": "12210", "sL_NStrLoss": "7970", "sL_ContLoss": "3941", "geom_point": "0101000020E610000020136378B08E5EC0FBD8B0E8CE964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.227607189999929, 49.180474674000017 ], [ -122.227682132999959, 49.179551667000041 ], [ -122.227565345999949, 49.179547574000047 ], [ -122.227607604999932, 49.17902710400012 ], [ -122.225368401999958, 49.178948618000064 ], [ -122.225554711999919, 49.176655206000106 ], [ -122.225444048, 49.176651326000069 ], [ -122.225483190999952, 49.176169478000048 ], [ -122.224178015999954, 49.176123707000087 ], [ -122.222006959999945, 49.17604753500013 ], [ -122.222025127000023, 49.17582411500009 ], [ -122.224180098999952, 49.175935153000104 ], [ -122.226008862999919, 49.176094476000038 ], [ -122.227676296999945, 49.176226192000101 ], [ -122.227943051999915, 49.176256662000092 ], [ -122.229943316999965, 49.176250122000063 ], [ -122.232596143999913, 49.176255047000097 ], [ -122.233299349000021, 49.176518383000023 ], [ -122.233254883999962, 49.17706688100003 ], [ -122.233371664999964, 49.177070968000088 ], [ -122.23308018699997, 49.180666305000067 ], [ -122.228942448999945, 49.180521452000072 ], [ -122.227607189999929, 49.180474674000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.839630562552477", "sL_AssetLoss": "5955", "sL_BldgLoss": "5000", "sL_StrLoss": "3300", "sL_NStrLoss": "1700", "sL_ContLoss": "955", "geom_point": "0101000020E6100000EEDA52C51C865EC08B4436CA59964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.095029309, 49.175186808000049 ], [ -122.091968996999938, 49.174506006000058 ], [ -122.091670312999966, 49.174333697000037 ], [ -122.091373484999963, 49.174007592000088 ], [ -122.091319987999967, 49.173899297000098 ], [ -122.091435206999904, 49.173701389000108 ], [ -122.092655787999902, 49.173648708000023 ], [ -122.093495103999956, 49.173493404000077 ], [ -122.094387787999935, 49.173490604000044 ], [ -122.095278705999959, 49.173534710000062 ], [ -122.096905679999963, 49.17390639200007 ], [ -122.097521805999961, 49.17392919700012 ], [ -122.098038786999922, 49.174104398000082 ], [ -122.098566179999949, 49.174567294000106 ], [ -122.098505196999923, 49.175655390000088 ], [ -122.098459803999958, 49.175853293000053 ], [ -122.09830720099994, 49.175941589000161 ], [ -122.098198404999934, 49.175923103000066 ], [ -122.097731901999964, 49.175136995000088 ], [ -122.097259378999922, 49.174809395000047 ], [ -122.097214095999973, 49.174970307000045 ], [ -122.098150617999949, 49.176290605000112 ], [ -122.098189304999906, 49.176490003000012 ], [ -122.097979288999937, 49.176630891000045 ], [ -122.09606319399991, 49.175618306000025 ], [ -122.095029309, 49.175186808000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.859569648924122", "sL_AssetLoss": "8830", "sL_BldgLoss": "7590", "sL_StrLoss": "4630", "sL_NStrLoss": "2960", "sL_ContLoss": "1240", "geom_point": "0101000020E61000003344E3C38B895EC0F418826FDC944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.14732213399995, 49.161408169000062 ], [ -122.152792553000026, 49.161603884000087 ], [ -122.152658178999943, 49.163227228000082 ], [ -122.152627435999989, 49.163598625000077 ], [ -122.15085761099999, 49.163989709000141 ], [ -122.148968112999938, 49.164569288000088 ], [ -122.147536293999977, 49.16479151600003 ], [ -122.146454926999979, 49.165054108000092 ], [ -122.146100965999963, 49.165041433000042 ], [ -122.146121505999986, 49.164793732000099 ], [ -122.14639906799999, 49.161446248000104 ], [ -122.147316254999936, 49.161479089000068 ], [ -122.14732213399995, 49.161408169000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5903917", "BldgCostT": "4071667", "sL_LossRatio": "0.84309863778106", "sL_AssetLoss": "30465", "sL_BldgLoss": "25685", "sL_StrLoss": "15164", "sL_NStrLoss": "10521", "sL_ContLoss": "4780", "geom_point": "0101000020E6100000F626A7F28D8B5EC0252F21D5E6944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.170721204, 49.164492028000048 ], [ -122.170822367999946, 49.163264153000114 ], [ -122.170159956999953, 49.163240581000068 ], [ -122.170276018999957, 49.161832049000012 ], [ -122.172731694999939, 49.161829997000048 ], [ -122.183634583999918, 49.16180729500006 ], [ -122.183706579999949, 49.161807797000058 ], [ -122.190036891999938, 49.161805792000088 ], [ -122.190384098999928, 49.161836210000118 ], [ -122.190972201999941, 49.161940808000104 ], [ -122.191334289999958, 49.162041093000077 ], [ -122.192433721999947, 49.162434205000096 ], [ -122.192671623999956, 49.162525079000076 ], [ -122.19295830799993, 49.162634583000056 ], [ -122.192963560999914, 49.162636590000076 ], [ -122.192810603999973, 49.162752004 ], [ -122.192521006, 49.162840291000109 ], [ -122.191923623999969, 49.163276104000026 ], [ -122.19089352099995, 49.164186204000025 ], [ -122.190182683999979, 49.164977171000068 ], [ -122.186115241999943, 49.164833104000074 ], [ -122.186192803, 49.163887928000051 ], [ -122.18522377099994, 49.163853582000087 ], [ -122.185286481999981, 49.163089528000107 ], [ -122.18490110599997, 49.163075866000035 ], [ -122.184870065999974, 49.163454013000056 ], [ -122.182670299, 49.163376007000117 ], [ -122.182613408999899, 49.164068666000055 ], [ -122.182173602999939, 49.164053065000047 ], [ -122.182150403999941, 49.164335476000083 ], [ -122.179591513, 49.164244667000091 ], [ -122.179546123999927, 49.164796838000143 ], [ -122.176192809999918, 49.164677744000109 ], [ -122.17607620699998, 49.166094952000059 ], [ -122.172878008999973, 49.165318495000115 ], [ -122.170721204, 49.164492028000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.941303135754523", "sL_AssetLoss": "5201.3", "sL_BldgLoss": "4896", "sL_StrLoss": "3844", "sL_NStrLoss": "1052", "sL_ContLoss": "305.3", "geom_point": "0101000020E610000073177A2713865EC06CEFAE0EDB974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.093061089999978, 49.188219052000079 ], [ -122.093079689999939, 49.187997924000051 ], [ -122.091001534, 49.187922497000102 ], [ -122.091304041999962, 49.184327591000077 ], [ -122.096776920999901, 49.184526143000014 ], [ -122.096758340999912, 49.184747273000021 ], [ -122.098836363999965, 49.184822589000099 ], [ -122.098649193999933, 49.187051195000038 ], [ -122.098534433999987, 49.188417514000065 ], [ -122.094307826999938, 49.188264283000059 ], [ -122.093061089999978, 49.188219052000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9739250", "BldgCostT": "6245000", "sL_LossRatio": "0.813438951106255", "sL_AssetLoss": "36610", "sL_BldgLoss": "29780", "sL_StrLoss": "17450", "sL_NStrLoss": "12330", "sL_ContLoss": "6830", "geom_point": "0101000020E610000052CBDE6B6B865EC048B6042A2D964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.100630338999963, 49.177306133000073 ], [ -122.100645594999918, 49.177124365000054 ], [ -122.100528910999984, 49.177120138000049 ], [ -122.100229728999977, 49.177109300000055 ], [ -122.099835384999935, 49.176421599000037 ], [ -122.099683499999941, 49.175799201000103 ], [ -122.099444192999925, 49.175339188000052 ], [ -122.09949621699991, 49.17399050600001 ], [ -122.098445610999946, 49.172910889000043 ], [ -122.098010492999933, 49.172737216000023 ], [ -122.096109187999943, 49.172398192000102 ], [ -122.09242173299999, 49.172395123000051 ], [ -122.092147003999969, 49.170337753000062 ], [ -122.092972766999964, 49.170065867000062 ], [ -122.09401399299999, 49.169723009000101 ], [ -122.095117406999975, 49.169442098000097 ], [ -122.095837296999989, 49.169314897000064 ], [ -122.096862201999954, 49.169216893000083 ], [ -122.097480158999971, 49.169201940000058 ], [ -122.097405102999986, 49.170095661000055 ], [ -122.097765132999882, 49.170108715000076 ], [ -122.097841796999958, 49.169195763000033 ], [ -122.100612625999972, 49.169200156000095 ], [ -122.10371629199993, 49.16920499500003 ], [ -122.103517202999967, 49.171579344000058 ], [ -122.101930742, 49.171521898000087 ], [ -122.101840889999949, 49.172592954000038 ], [ -122.104066019999919, 49.172673518000082 ], [ -122.103985036999944, 49.17363937000006 ], [ -122.104212874999988, 49.173647616000075 ], [ -122.104097761, 49.175020539000094 ], [ -122.106303886999939, 49.175100364000095 ], [ -122.106002597999932, 49.178695362000106 ], [ -122.101853403999897, 49.178545194000058 ], [ -122.101405730999929, 49.178528982000039 ], [ -122.10129619, 49.178438291000056 ], [ -122.100598940999959, 49.177680235000025 ], [ -122.100630338999963, 49.177306133000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20536667", "BldgCostT": "13666667", "sL_LossRatio": "0.729863879070467", "sL_AssetLoss": "132970", "sL_BldgLoss": "97050", "sL_StrLoss": "48400", "sL_NStrLoss": "48650", "sL_ContLoss": "35920", "geom_point": "0101000020E6100000B8D68B5F408A5EC0A07A39266A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.153459701999935, 49.181117188000051 ], [ -122.153694025, 49.179346903000038 ], [ -122.15362434, 49.178440763000019 ], [ -122.154365417999912, 49.178467239000064 ], [ -122.154375353999967, 49.178347191000086 ], [ -122.153615056999939, 49.178320029000069 ], [ -122.153560408999965, 49.177609395000111 ], [ -122.153697401999978, 49.17682890400004 ], [ -122.153551896999915, 49.176467210000098 ], [ -122.153360983999988, 49.176358902000075 ], [ -122.153234504999944, 49.175817686000073 ], [ -122.153043006999923, 49.175762191000025 ], [ -122.152370904999955, 49.175793503000094 ], [ -122.151661390999919, 49.176256414000093 ], [ -122.151505910999902, 49.176515597000034 ], [ -122.151039924999949, 49.176548303000089 ], [ -122.150493578999956, 49.176381694000071 ], [ -122.14961081499996, 49.175863301000071 ], [ -122.14936957499999, 49.175382242000047 ], [ -122.149574101, 49.172914157000086 ], [ -122.151957726999981, 49.17299939800008 ], [ -122.151997624999979, 49.172517614000057 ], [ -122.152857822000016, 49.172548362000079 ], [ -122.152908219999972, 49.171939634000069 ], [ -122.155198431, 49.172021466000047 ], [ -122.155204624999982, 49.171946589000079 ], [ -122.155991049999926, 49.171974678000062 ], [ -122.156004100999894, 49.171816908000068 ], [ -122.15685217399998, 49.171847192000016 ], [ -122.15701616799997, 49.16986422700009 ], [ -122.157571272000013, 49.169884045000039 ], [ -122.157579449, 49.16978514 ], [ -122.162310882999975, 49.169953947000096 ], [ -122.162519178999958, 49.16743155200006 ], [ -122.167990370999945, 49.167626492000053 ], [ -122.167990104999959, 49.167629714000036 ], [ -122.16875014499999, 49.167656773000097 ], [ -122.168533000999929, 49.170290570000049 ], [ -122.169779973999965, 49.17033495200009 ], [ -122.169588104999917, 49.172662682000116 ], [ -122.16838600899996, 49.172864996 ], [ -122.16663829799991, 49.173178591000116 ], [ -122.166461003999984, 49.173248987000107 ], [ -122.166456069999953, 49.17325852500008 ], [ -122.16640063, 49.173365803000081 ], [ -122.166407680999981, 49.173820649000021 ], [ -122.164011681999966, 49.173735289000035 ], [ -122.164229098999897, 49.171101515000032 ], [ -122.162982109999987, 49.171057069000071 ], [ -122.162982376999963, 49.171053848000021 ], [ -122.162962317000023, 49.171053133000072 ], [ -122.162754028, 49.173575515000103 ], [ -122.16219887699999, 49.173555723000035 ], [ -122.162190708999958, 49.173654628000037 ], [ -122.161342598999923, 49.173624386000043 ], [ -122.161213746999977, 49.175184076000093 ], [ -122.161857255999976, 49.175207023000034 ], [ -122.161858574999968, 49.175191059000042 ], [ -122.162725956999964, 49.175221983000057 ], [ -122.162830002999982, 49.173962078000102 ], [ -122.166411849999946, 49.174089703000028 ], [ -122.166436490999942, 49.175679190000039 ], [ -122.166449745999927, 49.176534298000021 ], [ -122.16644990599994, 49.176543299000038 ], [ -122.166467508999972, 49.178530988000063 ], [ -122.166474976999922, 49.179373654000074 ], [ -122.165978955999918, 49.179355990000033 ], [ -122.165910423999918, 49.180186421 ], [ -122.165737468999936, 49.180180261000025 ], [ -122.165665661999938, 49.18105032400009 ], [ -122.164918904999951, 49.181023726000049 ], [ -122.164858468999938, 49.181755842000044 ], [ -122.159385627999953, 49.181560745000091 ], [ -122.159459987999952, 49.180661235000038 ], [ -122.159393083999973, 49.180658848000036 ], [ -122.15939773299999, 49.180602618000115 ], [ -122.15851286499999, 49.180571047000107 ], [ -122.15837682899992, 49.182216196000098 ], [ -122.153638217999941, 49.182047006000062 ], [ -122.153459701999935, 49.181117188000051 ] ], [ [ -122.160783722999895, 49.175779227000064 ], [ -122.16079904399993, 49.175593804000101 ], [ -122.160595955999923, 49.175586561000088 ], [ -122.160580634999945, 49.1757719840001 ], [ -122.160783722999895, 49.175779227000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.865177049801174", "sL_AssetLoss": "5281", "sL_BldgLoss": "4569", "sL_StrLoss": "3020", "sL_NStrLoss": "1549", "sL_ContLoss": "712", "geom_point": "0101000020E6100000205A8E0418885EC06E30167ED7964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.124188009999955, 49.176981059000056 ], [ -122.129660163999972, 49.177177944000107 ], [ -122.12954204499999, 49.178595860000044 ], [ -122.129419004999988, 49.178680411000045 ], [ -122.12745520199995, 49.179601805000118 ], [ -122.126351590999974, 49.17993511100007 ], [ -122.125427304999945, 49.180171484000077 ], [ -122.123901709000037, 49.180412877000016 ], [ -122.124188009999955, 49.176981059000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12252583", "BldgCostT": "7978333", "sL_LossRatio": "0.832258327890268", "sL_AssetLoss": "48992", "sL_BldgLoss": "40774", "sL_StrLoss": "24330", "sL_NStrLoss": "16444", "sL_ContLoss": "8218", "geom_point": "0101000020E6100000B4D02923C9875EC02BA5E341E5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.126337455999973, 49.174539379000095 ], [ -122.12660413499998, 49.171340320000063 ], [ -122.124715725999977, 49.171272345000048 ], [ -122.124696861999936, 49.171498535000104 ], [ -122.120416572999929, 49.171344339 ], [ -122.120231593999947, 49.173559837000056 ], [ -122.117252241999921, 49.173452406000102 ], [ -122.114759904999985, 49.173362472000107 ], [ -122.114852857999949, 49.172250772000055 ], [ -122.109871306999977, 49.172070843000014 ], [ -122.109887666999953, 49.171875435000103 ], [ -122.107676243999947, 49.171795486000043 ], [ -122.107892689999943, 49.169211367000095 ], [ -122.114591003, 49.16922124600007 ], [ -122.117275796999962, 49.16922511200012 ], [ -122.122918105999972, 49.169226214000034 ], [ -122.126630788999989, 49.169226797000086 ], [ -122.127591777999967, 49.169153186000138 ], [ -122.128424587999916, 49.169020903000025 ], [ -122.132418425999916, 49.168068526000113 ], [ -122.132750992999931, 49.167989204000058 ], [ -122.13297215199999, 49.167936478000044 ], [ -122.135107929999918, 49.167427322000108 ], [ -122.134966922999922, 49.169122763000075 ], [ -122.134715273999959, 49.169223084000073 ], [ -122.131214836999931, 49.169097314000069 ], [ -122.131095468999931, 49.170531084000082 ], [ -122.130573308999885, 49.170512313000046 ], [ -122.13052569099996, 49.171084168000043 ], [ -122.132108599999967, 49.171141063000078 ], [ -122.131809332, 49.174736155000105 ], [ -122.126337455999973, 49.174539379000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.867682143512571", "sL_AssetLoss": "10898", "sL_BldgLoss": "9456", "sL_StrLoss": "6060", "sL_NStrLoss": "3396", "sL_ContLoss": "1442", "geom_point": "0101000020E6100000F3244454FC885EC0BBB0988534954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.13933849299994, 49.164193406000081 ], [ -122.139074549999947, 49.163988902000071 ], [ -122.138838397000015, 49.16380589100001 ], [ -122.138904558999968, 49.162312217000142 ], [ -122.140512948999955, 49.162369915000099 ], [ -122.140402095999974, 49.163704810000077 ], [ -122.143103143999966, 49.163801650000082 ], [ -122.14306358499999, 49.164278337000098 ], [ -122.14492691099997, 49.164345102000027 ], [ -122.144864717999951, 49.165094866000089 ], [ -122.144825737999938, 49.165564777000064 ], [ -122.142459605999946, 49.166553193000034 ], [ -122.14176608899993, 49.166926402000087 ], [ -122.140208904999909, 49.167400687000075 ], [ -122.139450301999972, 49.167637090000071 ], [ -122.138347806999917, 49.167817893000105 ], [ -122.136909985999935, 49.168535706000071 ], [ -122.136095961999942, 49.168765620000109 ], [ -122.135355544, 49.168739036000041 ], [ -122.13547184199993, 49.167340562000099 ], [ -122.139464801999964, 49.166388502000096 ], [ -122.139486406999978, 49.164427703000079 ], [ -122.13933849299994, 49.164193406000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.873415746987482", "sL_AssetLoss": "25643", "sL_BldgLoss": "22397", "sL_StrLoss": "14660", "sL_NStrLoss": "7737", "sL_ContLoss": "3246", "geom_point": "0101000020E61000001774CE918D855EC093AC3F99B1964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.076540893999947, 49.18076259 ], [ -122.077273724999927, 49.180386016000099 ], [ -122.077524810999961, 49.1802569950001 ], [ -122.078933391999954, 49.179009401000073 ], [ -122.080213784999941, 49.177966903000055 ], [ -122.081396492999986, 49.177166493000087 ], [ -122.082526586999975, 49.176149605000056 ], [ -122.083317311999977, 49.175661086000034 ], [ -122.083958677999945, 49.175108497000103 ], [ -122.084984782, 49.174487496000097 ], [ -122.08588420699999, 49.174080202 ], [ -122.087043012999942, 49.173775406000068 ], [ -122.088430893999885, 49.173668608000092 ], [ -122.089388703999958, 49.173721312000026 ], [ -122.089662635999943, 49.173833224000113 ], [ -122.091703591999959, 49.174667006000043 ], [ -122.09344030499993, 49.174986005000036 ], [ -122.095378204999989, 49.175594084000046 ], [ -122.096723691999927, 49.176297705000117 ], [ -122.097999293999933, 49.177145095000064 ], [ -122.09851069799997, 49.177679209000125 ], [ -122.098528481999949, 49.177709859000061 ], [ -122.098470775999942, 49.1783970440001 ], [ -122.092998610999928, 49.178198576000142 ], [ -122.093193007999901, 49.175886803000019 ], [ -122.091838303999964, 49.175837626000082 ], [ -122.09181467799999, 49.17611851000003 ], [ -122.08738322, 49.175957526000033 ], [ -122.08726656, 49.177342816000063 ], [ -122.087032632999978, 49.177334313000095 ], [ -122.086996872, 49.177758922000095 ], [ -122.086184005999883, 49.17772937000008 ], [ -122.086157153, 49.178048140000016 ], [ -122.085561416999923, 49.178026479000067 ], [ -122.085506661999943, 49.178676355000079 ], [ -122.085079884999914, 49.178660835000045 ], [ -122.085053059999964, 49.178979165000044 ], [ -122.084686653999967, 49.178965839000035 ], [ -122.084623983999961, 49.179709472000113 ], [ -122.08429223899995, 49.179697406000123 ], [ -122.084274979999961, 49.17990218000007 ], [ -122.083915825999952, 49.179889116000055 ], [ -122.083888381999955, 49.180214689000103 ], [ -122.08199903699996, 49.180145943000078 ], [ -122.081886369999978, 49.181481833000056 ], [ -122.080873823999966, 49.181444977000076 ], [ -122.080834820999968, 49.181907302000056 ], [ -122.077527200999938, 49.180521338000041 ], [ -122.077518428999923, 49.18052825700007 ], [ -122.076463410999978, 49.181362105000062 ], [ -122.075339719999931, 49.181975450000017 ], [ -122.075366601999988, 49.181657245000082 ], [ -122.075788292999931, 49.181403509000035 ], [ -122.076540893999947, 49.18076259 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.864514997368883", "sL_AssetLoss": "28505", "sL_BldgLoss": "24643", "sL_StrLoss": "15520", "sL_NStrLoss": "9123", "sL_ContLoss": "3862", "geom_point": "0101000020E61000007B849A2155875EC0C88068BDCA964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.114931708999933, 49.175148534000101 ], [ -122.115028850999948, 49.173986730000067 ], [ -122.117248814999982, 49.174066832000044 ], [ -122.120500612999962, 49.17418408100017 ], [ -122.12046612099995, 49.174597199000068 ], [ -122.120532237999939, 49.174599581000088 ], [ -122.120232051999949, 49.178194623000067 ], [ -122.118045353999946, 49.178115790000064 ], [ -122.117982797999943, 49.178864475000125 ], [ -122.117186445999977, 49.178835755000115 ], [ -122.116950738999961, 49.181655932000112 ], [ -122.113122889999957, 49.181534489000065 ], [ -122.110398720999981, 49.181189798000062 ], [ -122.108045583999953, 49.180748305000087 ], [ -122.107008214999937, 49.180462101000039 ], [ -122.106751352999964, 49.180424484000113 ], [ -122.106767087999927, 49.180236717000135 ], [ -122.10692213599999, 49.178386449000058 ], [ -122.111720707999964, 49.178559880000094 ], [ -122.111742845999942, 49.178295364000135 ], [ -122.112539183999928, 49.178324125000124 ], [ -122.112811280999949, 49.175071981000073 ], [ -122.114931708999933, 49.175148534000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.861148197596796", "sL_AssetLoss": "8988", "sL_BldgLoss": "7740", "sL_StrLoss": "4740", "sL_NStrLoss": "3000", "sL_ContLoss": "1248", "geom_point": "0101000020E61000009F4FECBA1A895EC05CD8476592964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.139270810999989, 49.178038916000048 ], [ -122.139569524999928, 49.174443821000047 ], [ -122.145041444999904, 49.174639926000111 ], [ -122.144926324999943, 49.17602746299999 ], [ -122.145703921999939, 49.176033218000015 ], [ -122.145689989999966, 49.176842709000049 ], [ -122.144859192999959, 49.176836560000027 ], [ -122.144743154, 49.178235035000043 ], [ -122.139270810999989, 49.178038916000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.881444991789819", "sL_AssetLoss": "15225", "sL_BldgLoss": "13420", "sL_StrLoss": "8730", "sL_NStrLoss": "4690", "sL_ContLoss": "1805", "geom_point": "0101000020E61000009D8047D0AF855EC04D83E49552974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.08704692299996, 49.178785774000104 ], [ -122.092519131999936, 49.178984544000052 ], [ -122.092216751999942, 49.182579482000058 ], [ -122.090925688999931, 49.182532612000067 ], [ -122.090665057999956, 49.185629710000072 ], [ -122.088033482999947, 49.185534126000107 ], [ -122.085192076999988, 49.185430848000074 ], [ -122.085371501999958, 49.183301734000054 ], [ -122.085495017999946, 49.181835945000017 ], [ -122.086786056, 49.181882880000082 ], [ -122.08704692299996, 49.178785774000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.881068264070885", "sL_AssetLoss": "8013", "sL_BldgLoss": "7060", "sL_StrLoss": "4530", "sL_NStrLoss": "2530", "sL_ContLoss": "953", "geom_point": "0101000020E6100000B60C7A675B8C5EC0C6323F2F43954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.194060403999941, 49.16345269500011 ], [ -122.19421858, 49.163115939000043 ], [ -122.194227020999932, 49.163119153000089 ], [ -122.194513694999912, 49.163228630000042 ], [ -122.19477199399995, 49.163327291000016 ], [ -122.19532800799999, 49.163622804000134 ], [ -122.196273707, 49.164469390000107 ], [ -122.196291858999984, 49.164480167000093 ], [ -122.196629584999968, 49.16468018900008 ], [ -122.193645208999939, 49.16717078400012 ], [ -122.19302120899999, 49.167754493000075 ], [ -122.191964412999951, 49.16849690100004 ], [ -122.191678567999972, 49.16864165600002 ], [ -122.19164671399993, 49.168657796000062 ], [ -122.191130210999972, 49.168850489000121 ], [ -122.18967017599999, 49.169282499000126 ], [ -122.189758719999972, 49.168202568000027 ], [ -122.189909823000022, 49.168128406000122 ], [ -122.190412797999926, 49.167682588000105 ], [ -122.190709188999975, 49.167144298000089 ], [ -122.191409793999966, 49.166268390000049 ], [ -122.191667020999915, 49.165567700000089 ], [ -122.192224509999932, 49.164996602000045 ], [ -122.193559386999979, 49.16395411000007 ], [ -122.194060403999941, 49.16345269500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.864861724378341", "sL_AssetLoss": "8606", "sL_BldgLoss": "7443", "sL_StrLoss": "4600", "sL_NStrLoss": "2843", "sL_ContLoss": "1163", "geom_point": "0101000020E6100000E4E476161A895EC0A1E2307F22944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.144557825999968, 49.154653705000058 ], [ -122.145789393999962, 49.154651874000066 ], [ -122.145650371999949, 49.156328576000149 ], [ -122.143062914999973, 49.156235856000102 ], [ -122.142878377999978, 49.158459836000162 ], [ -122.142741203999918, 49.158454919000043 ], [ -122.14271039, 49.158826240000067 ], [ -122.14232089599993, 49.158812277000088 ], [ -122.142274503999957, 49.159371249000046 ], [ -122.141914613999944, 49.159358346000062 ], [ -122.141852227999948, 49.160109957000046 ], [ -122.139192661999957, 49.160014566000029 ], [ -122.139220925999908, 49.15990289100008 ], [ -122.139332437999897, 49.159462328000046 ], [ -122.139507700999914, 49.158769889000077 ], [ -122.139730353999965, 49.158394217000101 ], [ -122.140313313999982, 49.157410601000038 ], [ -122.141065708999989, 49.156392712000084 ], [ -122.141626114999909, 49.155837702000063 ], [ -122.142525990999971, 49.155257007000017 ], [ -122.143188407999915, 49.154910192000067 ], [ -122.143326012999978, 49.154854695000083 ], [ -122.143871889999957, 49.154721906000049 ], [ -122.144159895999934, 49.154689011000123 ], [ -122.144557825999968, 49.154653705000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.855058969584109", "sL_AssetLoss": "6444", "sL_BldgLoss": "5510", "sL_StrLoss": "3310", "sL_NStrLoss": "2200", "sL_ContLoss": "934", "geom_point": "0101000020E6100000F2AAB5CD608B5EC09268769BBF954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.175059043999937, 49.171209291000068 ], [ -122.175294755999985, 49.168345440000081 ], [ -122.176541285999946, 49.168538609000073 ], [ -122.17780249499999, 49.168663900000077 ], [ -122.179160210999896, 49.168673910000059 ], [ -122.179733379999945, 49.168794998000052 ], [ -122.180744968999946, 49.168796950000029 ], [ -122.180569904999984, 49.170926990000076 ], [ -122.179534592999943, 49.171063587000077 ], [ -122.177935810999955, 49.171311482000071 ], [ -122.175059043999937, 49.171209291000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72691000", "BldgCostT": "51100000", "sL_LossRatio": "0.952939511541958", "sL_AssetLoss": "183721", "sL_BldgLoss": "175075", "sL_StrLoss": "76650", "sL_NStrLoss": "98425", "sL_ContLoss": "8646", "geom_point": "0101000020E6100000A56EE326158A5EC0424892F75C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.15520160399997, 49.162748423000046 ], [ -122.155437487999947, 49.159896760000045 ], [ -122.158842726999978, 49.160018368000117 ], [ -122.158866254999936, 49.159733642000027 ], [ -122.161651903999953, 49.159833043000042 ], [ -122.161668763999955, 49.159628868000055 ], [ -122.159057580999956, 49.159535694000049 ], [ -122.159092408999982, 49.159114220000099 ], [ -122.155588789000021, 49.158989102000106 ], [ -122.155602492999918, 49.158823419000058 ], [ -122.15499147899996, 49.158801587000077 ], [ -122.155002609999968, 49.158667011000034 ], [ -122.154478268999952, 49.158648273000018 ], [ -122.154487651999915, 49.158534855000021 ], [ -122.152836418999939, 49.158475829000068 ], [ -122.153021978999988, 49.156233743000037 ], [ -122.152577829999942, 49.156217862000112 ], [ -122.152512289999891, 49.1570097090001 ], [ -122.147042410999973, 49.156813979000049 ], [ -122.147125157999966, 49.155815654000023 ], [ -122.146933168999965, 49.15580877900004 ], [ -122.147029212999939, 49.15465003800005 ], [ -122.14989891499998, 49.154645688000116 ], [ -122.150175905999973, 49.154713302000047 ], [ -122.150430036000017, 49.154869228000045 ], [ -122.150670510999987, 49.155016815000081 ], [ -122.15089438599999, 49.155095106000026 ], [ -122.15185093299999, 49.155262962000037 ], [ -122.152597698999941, 49.155394001000047 ], [ -122.154229270999934, 49.155764290000093 ], [ -122.15814791299999, 49.156807512000107 ], [ -122.160291292999943, 49.157557398000051 ], [ -122.16149900299996, 49.158046704000071 ], [ -122.161864125999969, 49.158247188000054 ], [ -122.16250529699991, 49.158599212000063 ], [ -122.162918396999913, 49.15887889000004 ], [ -122.16404918799995, 49.159801792000081 ], [ -122.16449880499998, 49.160204493000073 ], [ -122.165997804999975, 49.161835503000084 ], [ -122.166256214999962, 49.161835303000061 ], [ -122.167051661999935, 49.161834657000078 ], [ -122.16854849, 49.161833458000046 ], [ -122.168454170999951, 49.162977609000052 ], [ -122.167217653999955, 49.162933577000054 ], [ -122.166925610999911, 49.16281040000009 ], [ -122.165435596999913, 49.1624941950001 ], [ -122.164532297, 49.162415898000027 ], [ -122.163315101999942, 49.162190898000077 ], [ -122.162163718, 49.16218240600012 ], [ -122.158246593999976, 49.162541204000085 ], [ -122.15592199299995, 49.163009801000015 ], [ -122.155171677999988, 49.163110178000103 ], [ -122.15520160399997, 49.162748423000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21008083", "BldgCostT": "14488333", "sL_LossRatio": "0.876243131961016", "sL_AssetLoss": "81336.9", "sL_BldgLoss": "71270.9", "sL_StrLoss": "46242.9", "sL_NStrLoss": "25028", "sL_ContLoss": "10066", "geom_point": "0101000020E6100000A81EC429CE845EC0A0DC191A8D984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.06171428899998, 49.197057646000076 ], [ -122.061749049999989, 49.195252956000083 ], [ -122.061755821999967, 49.194996386000042 ], [ -122.061771480999965, 49.194359278000064 ], [ -122.061793445999953, 49.193444426000049 ], [ -122.061793435999988, 49.193444406000062 ], [ -122.062704692999887, 49.19327139100011 ], [ -122.06358871299993, 49.193026404000136 ], [ -122.063671127999925, 49.192993454 ], [ -122.063740228999961, 49.192995980000028 ], [ -122.063742873999971, 49.192964770000074 ], [ -122.066145082999967, 49.19200430300004 ], [ -122.067179751999944, 49.192042097000083 ], [ -122.067200183, 49.191800824000104 ], [ -122.06720362599998, 49.191617699000162 ], [ -122.067215680999979, 49.191617796000052 ], [ -122.067259967999973, 49.191094763000116 ], [ -122.067290790999934, 49.191068193000014 ], [ -122.067719257999954, 49.190455084000064 ], [ -122.067724299999938, 49.190455268000086 ], [ -122.067725012999972, 49.190446849000061 ], [ -122.067925775999953, 49.190159566000062 ], [ -122.06829093499999, 49.190172900000078 ], [ -122.068451088999964, 49.188280864000042 ], [ -122.068199432999947, 49.188271675000145 ], [ -122.068254909999951, 49.187927802000047 ], [ -122.068492698999975, 49.187695599000051 ], [ -122.068484706999982, 49.18738939100006 ], [ -122.069405312999947, 49.186641709000106 ], [ -122.069405244999942, 49.186641673000025 ], [ -122.068971096999931, 49.186359704000076 ], [ -122.069113847999972, 49.186272204000076 ], [ -122.069289391000012, 49.186164603000101 ], [ -122.069741704999927, 49.18615889200008 ], [ -122.070046909999974, 49.186008003000047 ], [ -122.070811702999904, 49.185456785000092 ], [ -122.070926179999944, 49.185223198000081 ], [ -122.071358792999973, 49.184894194000101 ], [ -122.071077202, 49.184523910000031 ], [ -122.070923991999948, 49.183893009000073 ], [ -122.071010798999922, 49.183713495000049 ], [ -122.071819709999929, 49.182937288000133 ], [ -122.072128386999978, 49.182481968000083 ], [ -122.072315395999937, 49.182483471000111 ], [ -122.072317644999941, 49.182363162000044 ], [ -122.073135590999954, 49.182290807000065 ], [ -122.073550891999957, 49.182457726000102 ], [ -122.073550225999895, 49.182493384000047 ], [ -122.073641427999945, 49.182494115000139 ], [ -122.073911598999956, 49.182602702000096 ], [ -122.074187500000022, 49.182515809000066 ], [ -122.074204977999955, 49.182498635000123 ], [ -122.074537788, 49.182501302000048 ], [ -122.073912615999973, 49.183063007000023 ], [ -122.073736809999957, 49.183340604000087 ], [ -122.073700386999988, 49.183547402000087 ], [ -122.07183999199998, 49.185072242000068 ], [ -122.071432998999967, 49.185314708000071 ], [ -122.071114398999939, 49.185522732000074 ], [ -122.070818591999966, 49.185715902000055 ], [ -122.070054904999935, 49.186379427000055 ], [ -122.069800902999944, 49.186600103000046 ], [ -122.070865382999983, 49.187111577000032 ], [ -122.072269899999981, 49.187786408000079 ], [ -122.072559287, 49.187949668000087 ], [ -122.072837072999931, 49.188106400000059 ], [ -122.07292877899999, 49.18804479500011 ], [ -122.074052596999962, 49.187366395000062 ], [ -122.07459134, 49.187081537000033 ], [ -122.074907391999929, 49.186914396000134 ], [ -122.074970464, 49.186886346000065 ], [ -122.07546802899995, 49.186664879000034 ], [ -122.075641048999913, 49.186587859000099 ], [ -122.075691463999945, 49.186565432000073 ], [ -122.075522697999972, 49.186735694000085 ], [ -122.075477307999975, 49.186933695000072 ], [ -122.075932604999977, 49.187540399000078 ], [ -122.076044375999956, 49.187979667000086 ], [ -122.075017135999957, 49.188605426000031 ], [ -122.073771202999964, 49.187966693000064 ], [ -122.073312526999985, 49.188232363000076 ], [ -122.074309681999978, 49.188719774000049 ], [ -122.075349743999979, 49.189228106000094 ], [ -122.075468631999939, 49.189286213000045 ], [ -122.075571509999961, 49.18933650300005 ], [ -122.075687425999917, 49.189401221000068 ], [ -122.076382397, 49.188696817000057 ], [ -122.076569547999966, 49.188507089000062 ], [ -122.079598417999975, 49.185436497000111 ], [ -122.081161902999952, 49.183974336000034 ], [ -122.081821631, 49.183357350000101 ], [ -122.082958255999955, 49.183398711000088 ], [ -122.08294349, 49.183573831000082 ], [ -122.082898928999896, 49.184102279000101 ], [ -122.083567377999913, 49.184126598000041 ], [ -122.083523792999983, 49.184643564000048 ], [ -122.083997295999936, 49.184660787000055 ], [ -122.08375921599999, 49.187484787000088 ], [ -122.083858476999978, 49.18748839700006 ], [ -122.083683405000031, 49.18956484200006 ], [ -122.085878237999935, 49.189644649000115 ], [ -122.085575274999968, 49.193239510000041 ], [ -122.084580781999989, 49.193203355000065 ], [ -122.084527803999976, 49.193831751000062 ], [ -122.084330786999971, 49.196168532000058 ], [ -122.081843439999915, 49.196078064000083 ], [ -122.081837354999934, 49.196150193000129 ], [ -122.0817776199999, 49.196858192000072 ], [ -122.079476145999976, 49.196774432000062 ], [ -122.079423354999946, 49.197399747000048 ], [ -122.07394903399998, 49.197200316000114 ], [ -122.073969339999962, 49.196960140000044 ], [ -122.07224416499993, 49.196897234000033 ], [ -122.070050716999987, 49.196817213000031 ], [ -122.070067321999943, 49.196620987000081 ], [ -122.069227930999944, 49.196590352000108 ], [ -122.069223197000014, 49.196646293000057 ], [ -122.067939507999952, 49.196599431000045 ], [ -122.067926349999979, 49.196754824000081 ], [ -122.066242729999914, 49.196693339000014 ], [ -122.066234282999957, 49.19679306400009 ], [ -122.065547829999929, 49.196767988000026 ], [ -122.065527065999959, 49.197013081000087 ], [ -122.065511778999976, 49.197012522000087 ], [ -122.065485441999925, 49.197323379000061 ], [ -122.06171428899998, 49.197057646000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.914660208006839", "sL_AssetLoss": "7019", "sL_BldgLoss": "6420", "sL_StrLoss": "4590", "sL_NStrLoss": "1830", "sL_ContLoss": "599", "geom_point": "0101000020E61000001A805715EB865EC092C8E30EC0974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.10680348399994, 49.1876129300001 ], [ -122.106808341999937, 49.187343104000028 ], [ -122.105161724000013, 49.187330357000064 ], [ -122.105165574999944, 49.187116878000026 ], [ -122.105166590999914, 49.187060529000078 ], [ -122.104343289000013, 49.187054147000019 ], [ -122.104372509999962, 49.185435187000088 ], [ -122.103960872999949, 49.185431995000044 ], [ -122.103980361999973, 49.184352688000025 ], [ -122.106082864999948, 49.184368985000042 ], [ -122.106158584999946, 49.183465646000073 ], [ -122.106973910999912, 49.18349513000004 ], [ -122.111631424999985, 49.183663443000107 ], [ -122.111568824999964, 49.184411316000094 ], [ -122.11180133, 49.184413104000015 ], [ -122.111762688999974, 49.186571723000085 ], [ -122.11138821900002, 49.186568843000032 ], [ -122.111330492, 49.187258410000013 ], [ -122.110104346999933, 49.187214120000107 ], [ -122.11010157799997, 49.187368528000079 ], [ -122.109689923999909, 49.187365355000047 ], [ -122.109685082999974, 49.187635181000111 ], [ -122.10680348399994, 49.1876129300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.839651783206964", "sL_AssetLoss": "3561", "sL_BldgLoss": "2990", "sL_StrLoss": "1740", "sL_NStrLoss": "1250", "sL_ContLoss": "571", "geom_point": "0101000020E6100000C2D05580D08B5EC04F8A7F6DB7954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.181656953999934, 49.17078355600011 ], [ -122.18182001299999, 49.168799015000069 ], [ -122.183438707999983, 49.168802103000075 ], [ -122.184532791999942, 49.169000015000151 ], [ -122.187179296999943, 49.169081192000064 ], [ -122.187872103999908, 49.168913714000055 ], [ -122.187854290999908, 49.16913086700005 ], [ -122.18891800199999, 49.169168537000097 ], [ -122.188889718999974, 49.169513423000105 ], [ -122.186964293999949, 49.170083094000105 ], [ -122.181656953999934, 49.17078355600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3320500", "BldgCostT": "2290000", "sL_LossRatio": "0.846979483282675", "sL_AssetLoss": "10528", "sL_BldgLoss": "8917", "sL_StrLoss": "3828", "sL_NStrLoss": "5089", "sL_ContLoss": "1611", "geom_point": "0101000020E61000008C133EDFFF845EC0FDD3158540974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.077518428999923, 49.18052825700007 ], [ -122.077527200999938, 49.180521338000041 ], [ -122.080834820999968, 49.181907302000056 ], [ -122.080799273999943, 49.182328657000077 ], [ -122.075326721999943, 49.182129293000067 ], [ -122.075339719999931, 49.181975450000017 ], [ -122.076463410999978, 49.181362105000062 ], [ -122.077518428999923, 49.18052825700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17675500", "BldgCostT": "12190000", "sL_LossRatio": "0.840217083324252", "sL_AssetLoss": "45881", "sL_BldgLoss": "38550", "sL_StrLoss": "9920", "sL_NStrLoss": "28630", "sL_ContLoss": "7331", "geom_point": "0101000020E6100000090F81C0D6845EC07820DBC7C4974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.074309681999978, 49.188719774000049 ], [ -122.073312526999985, 49.188232363000076 ], [ -122.073771202999964, 49.187966693000064 ], [ -122.075017135999957, 49.188605426000031 ], [ -122.076044375999956, 49.187979667000086 ], [ -122.075932604999977, 49.187540399000078 ], [ -122.075477307999975, 49.186933695000072 ], [ -122.075522697999972, 49.186735694000085 ], [ -122.075691463999945, 49.186565432000073 ], [ -122.075641048999913, 49.186587859000099 ], [ -122.07546802899995, 49.186664879000034 ], [ -122.074970464, 49.186886346000065 ], [ -122.074907391999929, 49.186914396000134 ], [ -122.07459134, 49.187081537000033 ], [ -122.074052596999962, 49.187366395000062 ], [ -122.07292877899999, 49.18804479500011 ], [ -122.072837072999931, 49.188106400000059 ], [ -122.072559287, 49.187949668000087 ], [ -122.072269899999981, 49.187786408000079 ], [ -122.070865382999983, 49.187111577000032 ], [ -122.069800902999944, 49.186600103000046 ], [ -122.070054904999935, 49.186379427000055 ], [ -122.070818591999966, 49.185715902000055 ], [ -122.071114398999939, 49.185522732000074 ], [ -122.071432998999967, 49.185314708000071 ], [ -122.07183999199998, 49.185072242000068 ], [ -122.073700386999988, 49.183547402000087 ], [ -122.073736809999957, 49.183340604000087 ], [ -122.073912615999973, 49.183063007000023 ], [ -122.074537788, 49.182501302000048 ], [ -122.074785057999989, 49.182503283000088 ], [ -122.074766361999977, 49.183506013000034 ], [ -122.075731728999955, 49.183541206000072 ], [ -122.075673904999945, 49.184225690000041 ], [ -122.077393620999956, 49.184288361000092 ], [ -122.077485568999933, 49.183199456000089 ], [ -122.081821631, 49.183357350000101 ], [ -122.081161902999952, 49.183974336000034 ], [ -122.079598417999975, 49.185436497000111 ], [ -122.076569547999966, 49.188507089000062 ], [ -122.076382397, 49.188696817000057 ], [ -122.075687425999917, 49.189401221000068 ], [ -122.075571509999961, 49.18933650300005 ], [ -122.075468631999939, 49.189286213000045 ], [ -122.075349743999979, 49.189228106000094 ], [ -122.074309681999978, 49.188719774000049 ] ], [ [ -122.07502759799999, 49.184663511000117 ], [ -122.074637486999976, 49.184156501000125 ], [ -122.074286190999928, 49.18385599500003 ], [ -122.073795802999911, 49.18375338600007 ], [ -122.073681985999926, 49.183959904000027 ], [ -122.073917501999958, 49.184492597000059 ], [ -122.074230812999929, 49.184629307000108 ], [ -122.074656918999906, 49.184579499000044 ], [ -122.074817708999944, 49.184804502000055 ], [ -122.074902, 49.185408405000032 ], [ -122.075500783999942, 49.185772906000061 ], [ -122.075572313999885, 49.185593498000074 ], [ -122.075301311999937, 49.185348490000123 ], [ -122.07502759799999, 49.184663511000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.849304482225657", "sL_AssetLoss": "2588", "sL_BldgLoss": "2198", "sL_StrLoss": "1490", "sL_NStrLoss": "708", "sL_ContLoss": "390", "geom_point": "0101000020E610000071DCEF71E2855EC0D7B9ED6BF2944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.09159993599999, 49.163315708000013 ], [ -122.092320792999942, 49.163299978000097 ], [ -122.092306776999962, 49.163867704000076 ], [ -122.092303607999952, 49.163996022000028 ], [ -122.091545040999989, 49.163968474000107 ], [ -122.09159993599999, 49.163315708000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69622250", "BldgCostT": "47255000", "sL_LossRatio": "0.810952397893838", "sL_AssetLoss": "292323.2", "sL_BldgLoss": "237060.2", "sL_StrLoss": "158396.2", "sL_NStrLoss": "78664", "sL_ContLoss": "55263", "geom_point": "0101000020E610000025862EF23C855EC0C47ECB732F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.074042387999924, 49.178179490000026 ], [ -122.074044300999958, 49.178077012000109 ], [ -122.073432004, 49.178054679000041 ], [ -122.073383837999955, 49.177861619000161 ], [ -122.07357966, 49.177058420000058 ], [ -122.073451116999934, 49.176659499000053 ], [ -122.072802608999964, 49.17588320500009 ], [ -122.072462633999962, 49.17549346600007 ], [ -122.071880529999973, 49.174826150000065 ], [ -122.072096994999981, 49.174728354000131 ], [ -122.072750316999986, 49.174492896000054 ], [ -122.076740222999931, 49.172943532000048 ], [ -122.079518819999961, 49.172775939000118 ], [ -122.08127400799998, 49.17267515500005 ], [ -122.081269190999961, 49.17089619200005 ], [ -122.084128829999912, 49.170980751000045 ], [ -122.084062612999901, 49.170682483000135 ], [ -122.084016409999947, 49.170474421000058 ], [ -122.084583886999923, 49.170495067000068 ], [ -122.084601597999935, 49.170284891000101 ], [ -122.084890281999947, 49.170295392000099 ], [ -122.084892591999946, 49.170170023000033 ], [ -122.085304100999963, 49.1701732840001 ], [ -122.085314043999986, 49.16963363200005 ], [ -122.086548560999972, 49.169643404000034 ], [ -122.086535463999908, 49.170355225000101 ], [ -122.086771052999964, 49.170363791000071 ], [ -122.086829339999966, 49.169671642000068 ], [ -122.088095258999914, 49.169717662000075 ], [ -122.088103591999968, 49.169618672000091 ], [ -122.089143955999958, 49.169656481000125 ], [ -122.089187573999979, 49.169138196000077 ], [ -122.090123879999936, 49.169172215000081 ], [ -122.09014744699999, 49.168892119000098 ], [ -122.092012742999941, 49.168959867000055 ], [ -122.092044287999968, 49.168584763000112 ], [ -122.092190166999927, 49.168590060000021 ], [ -122.092147003999969, 49.170337753000062 ], [ -122.09242173299999, 49.172395123000051 ], [ -122.090977309999943, 49.172393889000091 ], [ -122.090351923999933, 49.172422252000061 ], [ -122.089784093999967, 49.172447998000031 ], [ -122.088545708999973, 49.172644588000047 ], [ -122.086637710000034, 49.172710090000038 ], [ -122.085563975999889, 49.172909269000058 ], [ -122.085156306999977, 49.172972954000024 ], [ -122.083807197999988, 49.173101963000057 ], [ -122.08347378099991, 49.173215503000051 ], [ -122.082967707999941, 49.173441297000082 ], [ -122.082227707999962, 49.173869700000083 ], [ -122.082218796999967, 49.173876551000063 ], [ -122.079440714999947, 49.176016903000104 ], [ -122.07780939499996, 49.175957475000125 ], [ -122.077834350999979, 49.175661859000094 ], [ -122.077532118999898, 49.175650846000075 ], [ -122.07737472299999, 49.17751515100008 ], [ -122.076365645999957, 49.178109298000024 ], [ -122.07527934299999, 49.178069698000108 ], [ -122.07526705799998, 49.178729033000103 ], [ -122.074855477999947, 49.178725737 ], [ -122.074850450999989, 49.178995562000061 ], [ -122.0747844799999, 49.178995033000021 ], [ -122.074438868999962, 49.178992263000126 ], [ -122.074434233999966, 49.179240817000078 ], [ -122.074397634, 49.17926179800002 ], [ -122.07373467099994, 49.179256482000063 ], [ -122.073713570999985, 49.179103254000047 ], [ -122.073647525999917, 49.17898514200008 ], [ -122.073704790999912, 49.178877065000059 ], [ -122.073535303999989, 49.178468726000098 ], [ -122.073529444999934, 49.178445240000087 ], [ -122.073625776999933, 49.178446014000052 ], [ -122.07363081499993, 49.178176189000098 ], [ -122.074042387999924, 49.178179490000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.884447220487195", "sL_AssetLoss": "4803", "sL_BldgLoss": "4248", "sL_StrLoss": "2780", "sL_NStrLoss": "1468", "sL_ContLoss": "555", "geom_point": "0101000020E6100000EA34DAC381835EC090AADCFA1F984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.052211412999938, 49.186578261000065 ], [ -122.057684388999974, 49.186778798000013 ], [ -122.057493283999946, 49.189030360000061 ], [ -122.057379264999952, 49.190373595000089 ], [ -122.051905866999931, 49.190173044000169 ], [ -122.052087870999983, 49.188031812000105 ], [ -122.052211412999938, 49.186578261000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.863336847654191", "sL_AssetLoss": "7588", "sL_BldgLoss": "6551", "sL_StrLoss": "4220", "sL_NStrLoss": "2331", "sL_ContLoss": "1037", "geom_point": "0101000020E610000030D5CC5A4A845EC063B2028D63974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.065222663999918, 49.185171114000049 ], [ -122.06524566399996, 49.184899592000114 ], [ -122.064055341999918, 49.184856083000057 ], [ -122.064359913, 49.181261236000111 ], [ -122.064794056999929, 49.181277107 ], [ -122.064856431999914, 49.180540746000098 ], [ -122.070328751999952, 49.180740643000064 ], [ -122.070251213999953, 49.181657275000099 ], [ -122.071095718, 49.181664071000149 ], [ -122.071094367999962, 49.181736207000029 ], [ -122.071018889999934, 49.181805406000095 ], [ -122.069845698999984, 49.182939900000079 ], [ -122.068816718999969, 49.18400660500005 ], [ -122.067961687999968, 49.184931014 ], [ -122.067896920999928, 49.185226095000097 ], [ -122.067903649999948, 49.185269062000025 ], [ -122.067188749999971, 49.185242951000063 ], [ -122.065222663999918, 49.185171114000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73403917", "BldgCostT": "51591667", "sL_LossRatio": "0.925953793339738", "sL_AssetLoss": "148853", "sL_BldgLoss": "137831", "sL_StrLoss": "63470", "sL_NStrLoss": "74361", "sL_ContLoss": "11022", "geom_point": "0101000020E6100000F31FD26F9F8B5EC05F03092775944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.170276018999957, 49.161832049000012 ], [ -122.170456188999964, 49.159645320000067 ], [ -122.171963327999933, 49.159698946000063 ], [ -122.172152744999948, 49.157398854000114 ], [ -122.177622797, 49.157593309000042 ], [ -122.177564985999979, 49.158296345000103 ], [ -122.177583741999968, 49.158297012000084 ], [ -122.177478345999987, 49.159578665000076 ], [ -122.180234098, 49.159676523000066 ], [ -122.180517668999926, 49.156225551000098 ], [ -122.185987618999931, 49.156419581000065 ], [ -122.185740705999976, 49.159428759000065 ], [ -122.190203712999931, 49.159586863000108 ], [ -122.190221700000023, 49.1593673940001 ], [ -122.194287010999972, 49.159511248000065 ], [ -122.194233388999933, 49.160459100000011 ], [ -122.19366600799998, 49.161525801000046 ], [ -122.193119205999949, 49.162277812000099 ], [ -122.193046490999947, 49.162574014000072 ], [ -122.192963560999914, 49.162636590000076 ], [ -122.19295830799993, 49.162634583000056 ], [ -122.192671623999956, 49.162525079000076 ], [ -122.192433721999947, 49.162434205000096 ], [ -122.191334289999958, 49.162041093000077 ], [ -122.190972201999941, 49.161940808000104 ], [ -122.190384098999928, 49.161836210000118 ], [ -122.190036891999938, 49.161805792000088 ], [ -122.183706579999949, 49.161807797000058 ], [ -122.183634583999918, 49.16180729500006 ], [ -122.172731694999939, 49.161829997000048 ], [ -122.170276018999957, 49.161832049000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.842174197773412", "sL_AssetLoss": "3054", "sL_BldgLoss": "2572", "sL_StrLoss": "1700", "sL_NStrLoss": "872", "sL_ContLoss": "482", "geom_point": "0101000020E61000000753FFE6E68B5EC0227EEE995F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.188204737999982, 49.153234590000082 ], [ -122.188283591999934, 49.152272839000062 ], [ -122.186328133, 49.152203543000091 ], [ -122.186416985, 49.151120377000083 ], [ -122.184194926999908, 49.151041589000052 ], [ -122.184226209999935, 49.150660427000055 ], [ -122.182794902999916, 49.150609652000099 ], [ -122.182880605999941, 49.149565796000083 ], [ -122.183257001999948, 49.149740501000103 ], [ -122.185262590999955, 49.150446888000026 ], [ -122.187164207999942, 49.151476605000042 ], [ -122.189986732999969, 49.153297709000128 ], [ -122.188204737999982, 49.153234590000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29825699", "BldgCostT": "19102212", "sL_LossRatio": "0.69651538981348", "sL_AssetLoss": "167221", "sL_BldgLoss": "116472", "sL_StrLoss": "56272", "sL_NStrLoss": "60200", "sL_ContLoss": "50749", "geom_point": "0101000020E61000006ECC5FDFD6845EC00F1260606F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.058804881999947, 49.177870661000028 ], [ -122.058810350999977, 49.177806188000034 ], [ -122.05742954, 49.177755624000092 ], [ -122.057432296999963, 49.177723131000064 ], [ -122.053974523999926, 49.177596432000065 ], [ -122.054073431999925, 49.176431869000119 ], [ -122.05381003399999, 49.17643066100009 ], [ -122.053822032999946, 49.176120861000108 ], [ -122.054099876999899, 49.176120498000074 ], [ -122.054279826999959, 49.174001573000055 ], [ -122.059751332999923, 49.174202009000091 ], [ -122.059750171999937, 49.174215686000096 ], [ -122.063498680999913, 49.174352842000062 ], [ -122.063512239999952, 49.174192795000103 ], [ -122.068884437999941, 49.174389133000055 ], [ -122.068893415999952, 49.17428302400009 ], [ -122.07028368099995, 49.174333791000052 ], [ -122.07031243499999, 49.17399380100008 ], [ -122.069700623999921, 49.1739714630001 ], [ -122.06975020299997, 49.17338533 ], [ -122.069556458999955, 49.173378255000088 ], [ -122.069494553999959, 49.174110052000096 ], [ -122.064023019000018, 49.173910111000076 ], [ -122.064327520999896, 49.17031520400009 ], [ -122.064718767999963, 49.170329510000087 ], [ -122.064780743999989, 49.169597712000105 ], [ -122.069054197999947, 49.169753882000059 ], [ -122.070181422999951, 49.169795047000044 ], [ -122.07019552199999, 49.169628342000117 ], [ -122.073034907999968, 49.169731981000076 ], [ -122.073204403999952, 49.167726208000047 ], [ -122.073353733999951, 49.167731657000132 ], [ -122.073388588999975, 49.167319154000083 ], [ -122.072306032999961, 49.167279650000111 ], [ -122.072318313999972, 49.167134350000019 ], [ -122.069930759999977, 49.167047188000033 ], [ -122.070227668999934, 49.163536117000099 ], [ -122.070234761999956, 49.163452226000118 ], [ -122.070568698, 49.163464420000082 ], [ -122.070735149999948, 49.161495632000026 ], [ -122.073930772999987, 49.161612274000085 ], [ -122.073939317999987, 49.161511109000081 ], [ -122.0740464309999, 49.161515016000116 ], [ -122.074095744999951, 49.16093121100004 ], [ -122.07414305599994, 49.160932937 ], [ -122.074226594, 49.15994391100002 ], [ -122.074364937999945, 49.159948959000054 ], [ -122.074392905999957, 49.159617814000036 ], [ -122.07986280599999, 49.159817232000044 ], [ -122.079850628999964, 49.15996160400006 ], [ -122.080287000999974, 49.159977501000078 ], [ -122.080374000999882, 49.158945850000094 ], [ -122.080218438999935, 49.158940184000137 ], [ -122.080308850999984, 49.157868060000126 ], [ -122.080243706999937, 49.157865687000026 ], [ -122.0802887299999, 49.157331794000136 ], [ -122.08025014, 49.157330388000076 ], [ -122.080415623999926, 49.155367938000069 ], [ -122.082362179999919, 49.155306296000077 ], [ -122.085968412999932, 49.154561395000016 ], [ -122.086008598999953, 49.154559419000108 ], [ -122.085983405999983, 49.154858625000024 ], [ -122.086061170999969, 49.154861455000088 ], [ -122.085879275999943, 49.157021662000055 ], [ -122.086022206999971, 49.157026861000077 ], [ -122.08598371799998, 49.157483946000113 ], [ -122.086069333999959, 49.157487060000037 ], [ -122.085937419999937, 49.159053617000033 ], [ -122.089115725999974, 49.159169183000081 ], [ -122.089110803999958, 49.159227682000058 ], [ -122.093437882999979, 49.159384868000082 ], [ -122.093350207999933, 49.160428007000071 ], [ -122.097317415999953, 49.160571967000038 ], [ -122.097198438999953, 49.161988855000097 ], [ -122.097015525999922, 49.164167021000068 ], [ -122.092303607999952, 49.163996022000028 ], [ -122.092306776999962, 49.163867704000076 ], [ -122.092320792999942, 49.163299978000097 ], [ -122.09159993599999, 49.163315708000013 ], [ -122.091632763999954, 49.162925341000069 ], [ -122.087665372999979, 49.162781174000031 ], [ -122.087670296999974, 49.162722675000111 ], [ -122.085844380999959, 49.162656275000096 ], [ -122.085679387999917, 49.164615291000054 ], [ -122.080208898999942, 49.164416169000063 ], [ -122.080220757999939, 49.164275567000075 ], [ -122.07964911, 49.164254743000065 ], [ -122.079638827999986, 49.164376637000025 ], [ -122.079293038999978, 49.164364039000098 ], [ -122.07926253299992, 49.164725645 ], [ -122.079155412, 49.164721742000026 ], [ -122.079106157999945, 49.165305547000095 ], [ -122.077963784999952, 49.165263919000026 ], [ -122.077813035999952, 49.167050130000128 ], [ -122.078895591, 49.167089578000066 ], [ -122.078875029999921, 49.167333265000138 ], [ -122.079347190999925, 49.167350467000098 ], [ -122.07909266799993, 49.170367092000099 ], [ -122.079938133999946, 49.170397889000121 ], [ -122.079944183999942, 49.170326179000035 ], [ -122.084016409999947, 49.170474421000058 ], [ -122.084062612999901, 49.170682483000135 ], [ -122.084128829999912, 49.170980751000045 ], [ -122.081269190999961, 49.17089619200005 ], [ -122.08127400799998, 49.17267515500005 ], [ -122.079518819999961, 49.172775939000118 ], [ -122.076740222999931, 49.172943532000048 ], [ -122.072750316999986, 49.174492896000054 ], [ -122.072096994999981, 49.174728354000131 ], [ -122.071880529999973, 49.174826150000065 ], [ -122.072462633999962, 49.17549346600007 ], [ -122.072802608999964, 49.17588320500009 ], [ -122.073451116999934, 49.176659499000053 ], [ -122.07357966, 49.177058420000058 ], [ -122.073383837999955, 49.177861619000161 ], [ -122.073432004, 49.178054679000041 ], [ -122.072832402999978, 49.1780328070001 ], [ -122.068688616999964, 49.177881552000017 ], [ -122.068679636999917, 49.177987660000085 ], [ -122.064297474999947, 49.177827530000116 ], [ -122.064276861999986, 49.178070866000155 ], [ -122.058804881999947, 49.177870661000028 ] ], [ [ -122.076162685999975, 49.171562462000047 ], [ -122.076172984999943, 49.171440505000042 ], [ -122.076115666, 49.171438415000104 ], [ -122.076105366999982, 49.171560372000052 ], [ -122.076162685999975, 49.171562462000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.868477483917084", "sL_AssetLoss": "5596", "sL_BldgLoss": "4860", "sL_StrLoss": "3060", "sL_NStrLoss": "1800", "sL_ContLoss": "736", "geom_point": "0101000020E6100000CE6DC2BD72865EC0064A0A2C80954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.097841796999958, 49.169195763000033 ], [ -122.098059151999948, 49.166607203000041 ], [ -122.103529974999958, 49.16680541700007 ], [ -122.103432300999955, 49.167970326000088 ], [ -122.103818637999922, 49.167984312000058 ], [ -122.10371629199993, 49.16920499500003 ], [ -122.100612625999972, 49.169200156000095 ], [ -122.097841796999958, 49.169195763000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.834283542379323", "sL_AssetLoss": "10524", "sL_BldgLoss": "8780", "sL_StrLoss": "5210", "sL_NStrLoss": "3570", "sL_ContLoss": "1744", "geom_point": "0101000020E6100000791E1EBA878E5EC0A8F8857820924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.22417733599994, 49.14381177700006 ], [ -122.22425263199996, 49.142884472000055 ], [ -122.224178793999968, 49.142881880000111 ], [ -122.224470722999968, 49.13928635900006 ], [ -122.229661896999971, 49.139468453000113 ], [ -122.229938863999934, 49.139478161000035 ], [ -122.229863686, 49.140405476000126 ], [ -122.229937520999925, 49.140408064000056 ], [ -122.229667345999957, 49.143740416000107 ], [ -122.229399495999971, 49.143741700000092 ], [ -122.229296950999938, 49.143750394000072 ], [ -122.227820396999974, 49.143875592000015 ], [ -122.227691388999943, 49.14393506600004 ], [ -122.22417733599994, 49.14381177700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.834599649327878", "sL_AssetLoss": "6844", "sL_BldgLoss": "5712", "sL_StrLoss": "3480", "sL_NStrLoss": "2232", "sL_ContLoss": "1132", "geom_point": "0101000020E6100000F583782C8F8D5EC0B2CC6CA1F5914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.2092760889999, 49.13841449100007 ], [ -122.21474406499999, 49.138607066000056 ], [ -122.214451387999986, 49.142202565000098 ], [ -122.208982991999946, 49.14200997600004 ], [ -122.2092760889999, 49.13841449100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.866144975288303", "sL_AssetLoss": "2428", "sL_BldgLoss": "2103", "sL_StrLoss": "1480", "sL_NStrLoss": "623", "sL_ContLoss": "325", "geom_point": "0101000020E610000068386DDF06865EC0B64DF1B8A8954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.092190166999927, 49.168590060000021 ], [ -122.09751531699996, 49.16878328300011 ], [ -122.097480158999971, 49.169201940000058 ], [ -122.096862201999954, 49.169216893000083 ], [ -122.095837296999989, 49.169314897000064 ], [ -122.095117406999975, 49.169442098000097 ], [ -122.09401399299999, 49.169723009000101 ], [ -122.092972766999964, 49.170065867000062 ], [ -122.092147003999969, 49.170337753000062 ], [ -122.092190166999927, 49.168590060000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5425500", "BldgCostT": "3270000", "sL_LossRatio": "0.794453838349679", "sL_AssetLoss": "14785", "sL_BldgLoss": "11746", "sL_StrLoss": "6730", "sL_NStrLoss": "5016", "sL_ContLoss": "3039", "geom_point": "0101000020E61000002BE65A9332845EC0BAB7A669E5944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.063196276999989, 49.166065409000076 ], [ -122.063335508999941, 49.164421773000115 ], [ -122.062305548999916, 49.164384090000112 ], [ -122.062335111999957, 49.164035167000065 ], [ -122.061933757999967, 49.164020480000055 ], [ -122.062150753999973, 49.161459487000073 ], [ -122.06252910799999, 49.161209590000027 ], [ -122.063884811999941, 49.160591506000046 ], [ -122.064716935999954, 49.160116245000033 ], [ -122.06816645799999, 49.160242348000104 ], [ -122.06796415599996, 49.162633648000046 ], [ -122.068970979999932, 49.162670433000081 ], [ -122.068897905999961, 49.163534357000088 ], [ -122.068666885999917, 49.166265394000035 ], [ -122.066785089999925, 49.166196635000105 ], [ -122.063196276999989, 49.166065409000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.893115942028985", "sL_AssetLoss": "2208", "sL_BldgLoss": "1972", "sL_StrLoss": "1330", "sL_NStrLoss": "642", "sL_ContLoss": "236", "geom_point": "0101000020E6100000A926B139C1805EC0D9CC84D3C09A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.009117411999952, 49.208593099000019 ], [ -122.007756773, 49.208186995000055 ], [ -122.007754585999947, 49.208186342000054 ], [ -122.00773755199998, 49.208181259000078 ], [ -122.007679186999951, 49.208163839000072 ], [ -122.009204289999943, 49.208220353000065 ], [ -122.009199882999923, 49.20827162900008 ], [ -122.013850534999989, 49.208443828000036 ], [ -122.013696494999976, 49.210237822000046 ], [ -122.013525190999985, 49.210235190000091 ], [ -122.012889673999936, 49.210055829000069 ], [ -122.012581122999933, 49.209968749000041 ], [ -122.011592587999985, 49.209689709000024 ], [ -122.009356370999967, 49.208698976000044 ], [ -122.009226331999969, 49.208641365000076 ], [ -122.009117411999952, 49.208593099000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16057917", "BldgCostT": "10391667", "sL_LossRatio": "0.701755941823342", "sL_AssetLoss": "112760", "sL_BldgLoss": "79130", "sL_StrLoss": "41980", "sL_NStrLoss": "37150", "sL_ContLoss": "33630", "geom_point": "0101000020E61000000214B03E1A885EC0280010C102954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.107892689999943, 49.169211367000095 ], [ -122.107977358999946, 49.168200445000053 ], [ -122.108023139999929, 49.168202100000038 ], [ -122.108071987999949, 49.167618845000099 ], [ -122.113542971999919, 49.167816551000016 ], [ -122.113477849999953, 49.168595219000061 ], [ -122.114032228, 49.168615237000083 ], [ -122.114112238999951, 49.167658390000057 ], [ -122.117284051999917, 49.167772866000057 ], [ -122.11951334599999, 49.16785326800008 ], [ -122.119525617999912, 49.167706321000068 ], [ -122.124415447999951, 49.167882517000045 ], [ -122.124435918999922, 49.167637038000045 ], [ -122.125322606999987, 49.167668964000079 ], [ -122.125328484999912, 49.16759846000005 ], [ -122.125850608999954, 49.167617256000014 ], [ -122.125923809999975, 49.166739170000056 ], [ -122.128424413999966, 49.166829156000077 ], [ -122.128500477999978, 49.16591609000011 ], [ -122.12728369699991, 49.16587231000004 ], [ -122.12727835799997, 49.165936389000073 ], [ -122.121807537, 49.165739380000076 ], [ -122.121935539, 49.164205425000077 ], [ -122.122020076999917, 49.163192274000046 ], [ -122.119544316999949, 49.163103027000112 ], [ -122.119785012999941, 49.160220006000038 ], [ -122.118911874999938, 49.160188516000083 ], [ -122.119212046999976, 49.156593380000039 ], [ -122.124681781999925, 49.15679052400008 ], [ -122.124441407999967, 49.159673571000049 ], [ -122.125314538999987, 49.159705015000128 ], [ -122.125296704999982, 49.15991896500006 ], [ -122.129376812999936, 49.160065807000109 ], [ -122.129256302, 49.161512912000028 ], [ -122.131303186999901, 49.16158651900006 ], [ -122.13131148099994, 49.16148688500008 ], [ -122.13678184199992, 49.161683413000027 ], [ -122.136736045999939, 49.162234389000027 ], [ -122.138904558999968, 49.162312217000142 ], [ -122.138838397000015, 49.16380589100001 ], [ -122.139074549999947, 49.163988902000071 ], [ -122.13933849299994, 49.164193406000081 ], [ -122.139486406999978, 49.164427703000079 ], [ -122.139464801999964, 49.166388502000096 ], [ -122.13547184199993, 49.167340562000099 ], [ -122.13559674299999, 49.165838517000033 ], [ -122.135241119999989, 49.165825747000021 ], [ -122.135107929999918, 49.167427322000108 ], [ -122.13297215199999, 49.167936478000044 ], [ -122.132750992999931, 49.167989204000058 ], [ -122.132418425999916, 49.168068526000113 ], [ -122.128424587999916, 49.169020903000025 ], [ -122.127591777999967, 49.169153186000138 ], [ -122.126630788999989, 49.169226797000086 ], [ -122.122918105999972, 49.169226214000034 ], [ -122.117275796999962, 49.16922511200012 ], [ -122.114591003, 49.16922124600007 ], [ -122.107892689999943, 49.169211367000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.875436391565424", "sL_AssetLoss": "7161", "sL_BldgLoss": "6269", "sL_StrLoss": "4190", "sL_NStrLoss": "2079", "sL_ContLoss": "892", "geom_point": "0101000020E61000004ACB0E125E835EC0A00C7EB0C6984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.05112502499999, 49.196960523000051 ], [ -122.051132305999928, 49.196874899000093 ], [ -122.050090085999955, 49.196836678000096 ], [ -122.050223523999946, 49.195267797000049 ], [ -122.050010382, 49.195259980000095 ], [ -122.050316107999947, 49.191665230000105 ], [ -122.050826547999947, 49.19168395100013 ], [ -122.050841393999974, 49.191509342000138 ], [ -122.056314944999912, 49.191709947000035 ], [ -122.056284845, 49.192064435000049 ], [ -122.056907345999917, 49.19208723200007 ], [ -122.056868636999965, 49.192543175000019 ], [ -122.054915673999972, 49.19382436500009 ], [ -122.054749820000012, 49.19393319400006 ], [ -122.054101302, 49.194358603000076 ], [ -122.053882889999926, 49.194513309000051 ], [ -122.05335749999989, 49.19475969500013 ], [ -122.052329488999987, 49.195434802000108 ], [ -122.052118513999972, 49.19561419399999 ], [ -122.052000685999985, 49.196044303000058 ], [ -122.051724494999945, 49.196212409000033 ], [ -122.051703287999942, 49.196330916000122 ], [ -122.051647300999917, 49.196643893000036 ], [ -122.051622965999911, 49.196658648000032 ], [ -122.051557374999931, 49.196698418000068 ], [ -122.05112502499999, 49.196960523000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.890575916230366", "sL_AssetLoss": "3820", "sL_BldgLoss": "3402", "sL_StrLoss": "2550", "sL_NStrLoss": "852", "sL_ContLoss": "418", "geom_point": "0101000020E61000004BA0F3E04F7F5EC0C88B964D4A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.985874591999988, 49.205648845000027 ], [ -121.98616962899996, 49.205498803000047 ], [ -121.986249079999979, 49.205501764000083 ], [ -121.986253000999952, 49.205456405000128 ], [ -121.986293907999965, 49.205435601000048 ], [ -121.987910108999969, 49.204307596000021 ], [ -121.988035189999906, 49.204236388000041 ], [ -121.988364888999953, 49.204239190000038 ], [ -121.988888661999937, 49.203910843000109 ], [ -121.991869361999946, 49.204021806000057 ], [ -121.991729216999943, 49.205645177000051 ], [ -121.993145619999936, 49.205697877000055 ], [ -121.993137487999945, 49.205792088000074 ], [ -121.993613570999969, 49.205809797 ], [ -121.99302299799993, 49.206096406 ], [ -121.991905604999943, 49.206311511000116 ], [ -121.98981790000002, 49.206302893 ], [ -121.989543288999954, 49.206354195000074 ], [ -121.989171410000012, 49.20638312100003 ], [ -121.988804577999986, 49.206416244000124 ], [ -121.987856068000013, 49.206549827000082 ], [ -121.986014077999982, 49.206831650000098 ], [ -121.98577029899991, 49.206855078000068 ], [ -121.985874591999988, 49.205648845000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.838018741633199", "sL_AssetLoss": "3735", "sL_BldgLoss": "3130", "sL_StrLoss": "1800", "sL_NStrLoss": "1330", "sL_ContLoss": "605", "geom_point": "0101000020E6100000E809329FFF8E5EC033D1D67734924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.232018567999958, 49.143588481000045 ], [ -122.232239919999941, 49.14085665000006 ], [ -122.234851059, 49.140948082000051 ], [ -122.236779102999918, 49.141811892000064 ], [ -122.237622452999986, 49.142108835000059 ], [ -122.23755487399994, 49.142944085000074 ], [ -122.236820788999978, 49.142684895000087 ], [ -122.236600207999956, 49.142756093000045 ], [ -122.236801703999973, 49.143026692000014 ], [ -122.236157592999973, 49.142978314000082 ], [ -122.235992883999941, 49.143058100000076 ], [ -122.235607834999911, 49.143118324000149 ], [ -122.235250988, 49.143142089000136 ], [ -122.234839008999955, 49.143139185000088 ], [ -122.234160604999914, 49.143513803000126 ], [ -122.233928586999951, 49.143537999000095 ], [ -122.232018567999958, 49.143588481000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10153750", "BldgCostT": "6475000", "sL_LossRatio": "0.778649529721889", "sL_AssetLoss": "64111", "sL_BldgLoss": "49920", "sL_StrLoss": "34120", "sL_NStrLoss": "15800", "sL_ContLoss": "14191", "geom_point": "0101000020E6100000058439EED2885EC0F31420A7BB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.136382028999975, 49.159913686000117 ], [ -122.13667575599996, 49.156379783000062 ], [ -122.13647036, 49.156372408000067 ], [ -122.136412636999935, 49.157066896000117 ], [ -122.135019309999947, 49.157016856000062 ], [ -122.134988896999943, 49.157382629000104 ], [ -122.134633684000022, 49.157369870000096 ], [ -122.134614293999945, 49.15760303800009 ], [ -122.129144422, 49.157406399000088 ], [ -122.129443784999978, 49.153811218000094 ], [ -122.129798969999968, 49.153823995000046 ], [ -122.129818381999883, 49.15359082700008 ], [ -122.131211599999972, 49.153640934000109 ], [ -122.13124204099995, 49.153275160000099 ], [ -122.131879062999985, 49.153298064000111 ], [ -122.13193685, 49.15260357500005 ], [ -122.133775323999956, 49.152669658000043 ], [ -122.133849618999974, 49.151776318000039 ], [ -122.138157878999948, 49.151931052000087 ], [ -122.13836296199996, 49.149462120000067 ], [ -122.139246453999988, 49.149493829000086 ], [ -122.13929935799996, 49.148856740000035 ], [ -122.144768268999954, 49.149052865000101 ], [ -122.14447012, 49.152648115000076 ], [ -122.143586563999946, 49.15261644800011 ], [ -122.143583895999939, 49.152648613000068 ], [ -122.145948453999921, 49.152733344000168 ], [ -122.145789393999962, 49.154651874000066 ], [ -122.144557825999968, 49.154653705000058 ], [ -122.144159895999934, 49.154689011000123 ], [ -122.143871889999957, 49.154721906000049 ], [ -122.143326012999978, 49.154854695000083 ], [ -122.143188407999915, 49.154910192000067 ], [ -122.142525990999971, 49.155257007000017 ], [ -122.141626114999909, 49.155837702000063 ], [ -122.141065708999989, 49.156392712000084 ], [ -122.140313313999982, 49.157410601000038 ], [ -122.139730353999965, 49.158394217000101 ], [ -122.139507700999914, 49.158769889000077 ], [ -122.139332437999897, 49.159462328000046 ], [ -122.139220925999908, 49.15990289100008 ], [ -122.139192661999957, 49.160014566000029 ], [ -122.136382028999975, 49.159913686000117 ] ], [ [ -122.137492639999934, 49.155593790000069 ], [ -122.137499324999936, 49.155513349000032 ], [ -122.13718166299999, 49.155501944000058 ], [ -122.137174977999933, 49.155582385000059 ], [ -122.137492639999934, 49.155593790000069 ] ], [ [ -122.140294458999975, 49.154761267000069 ], [ -122.140428882999942, 49.153142200000048 ], [ -122.139225312999912, 49.153099017000109 ], [ -122.139090847, 49.154718083000034 ], [ -122.140294458999975, 49.154761267000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7687250", "BldgCostT": "4805000", "sL_LossRatio": "0.594186094662305", "sL_AssetLoss": "48298", "sL_BldgLoss": "28698", "sL_StrLoss": "11039", "sL_NStrLoss": "17659", "sL_ContLoss": "19600", "geom_point": "0101000020E6100000D1DB2B35F3825EC078026918A1974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.043883210999979, 49.185780469000036 ], [ -122.043909458, 49.185472285000095 ], [ -122.042612122999955, 49.185424607000108 ], [ -122.042663043999937, 49.184826893000022 ], [ -122.042573658999927, 49.184823608000045 ], [ -122.042748247999896, 49.182774214000048 ], [ -122.04239988099999, 49.182761408000026 ], [ -122.042706112999923, 49.179166611000035 ], [ -122.048178174999961, 49.17936763200003 ], [ -122.048156089999935, 49.179627262000075 ], [ -122.048996562999946, 49.179658111999984 ], [ -122.04869081399994, 49.183252924000023 ], [ -122.048288031999988, 49.18323814100011 ], [ -122.048117262999966, 49.18524549000005 ], [ -122.050923945999969, 49.185348475000076 ], [ -122.050703500999973, 49.187941309000117 ], [ -122.050618307999969, 49.188943261000063 ], [ -122.049108844999949, 49.188887884000103 ], [ -122.049093353999922, 49.18906999700009 ], [ -122.048058306999962, 49.18903201300008 ], [ -122.04801523699993, 49.189538222000046 ], [ -122.042541976999928, 49.189337195000093 ], [ -122.042675655999972, 49.187768214000137 ], [ -122.042848240999945, 49.185742433000058 ], [ -122.043883210999979, 49.185780469000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11930000", "BldgCostT": "7700000", "sL_LossRatio": "0.784345143610171", "sL_AssetLoss": "66778", "sL_BldgLoss": "52377", "sL_StrLoss": "35840", "sL_NStrLoss": "16537", "sL_ContLoss": "14401", "geom_point": "0101000020E61000001342CDB1F8865EC0AB9B2895B2944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.113935147999968, 49.167362765000107 ], [ -122.114095300999935, 49.165447472000061 ], [ -122.112230608999937, 49.165380125000056 ], [ -122.112275406999956, 49.16484459000003 ], [ -122.111733250999933, 49.164825003000082 ], [ -122.11169338699996, 49.165301465000084 ], [ -122.106222706, 49.165103665000039 ], [ -122.106353648999942, 49.163540741000077 ], [ -122.101122327999946, 49.16335133300003 ], [ -122.101237413999954, 49.161979429000063 ], [ -122.101255076999976, 49.16176887200011 ], [ -122.100845416999945, 49.161754028000111 ], [ -122.101047074999897, 49.159350148000044 ], [ -122.100787264999923, 49.159340733000114 ], [ -122.100791798999978, 49.159286684000044 ], [ -122.099558926999961, 49.159242001000059 ], [ -122.099860586999938, 49.155646913000083 ], [ -122.100032470999963, 49.155653144000013 ], [ -122.100072765, 49.155172860000057 ], [ -122.102087097999984, 49.1551012010001 ], [ -122.103702089999942, 49.155293410000091 ], [ -122.104196105999932, 49.155297689000101 ], [ -122.104856612999981, 49.155149591000111 ], [ -122.105362009999908, 49.155252108000077 ], [ -122.105552264999957, 49.155251453000069 ], [ -122.105539552999971, 49.155403190000079 ], [ -122.106587158999957, 49.155441105000115 ], [ -122.10654510199997, 49.155943226000062 ], [ -122.106558389999961, 49.155943707000084 ], [ -122.106357030999959, 49.158347611000124 ], [ -122.10661683899994, 49.158357012000081 ], [ -122.10648428199994, 49.159939487000052 ], [ -122.106893927, 49.159954309000042 ], [ -122.106763011999959, 49.161517242000059 ], [ -122.108225534999974, 49.161570146000074 ], [ -122.10832778199989, 49.160349030000084 ], [ -122.109804061999952, 49.160402411000113 ], [ -122.109804818999962, 49.160393366000086 ], [ -122.115274960999969, 49.160590987000099 ], [ -122.11525427699992, 49.16083846100004 ], [ -122.115744958999983, 49.160856174000088 ], [ -122.115702652999971, 49.161362401000069 ], [ -122.117094644999924, 49.161412639000069 ], [ -122.117049904999959, 49.161948178000088 ], [ -122.118001647999975, 49.161982516000087 ], [ -122.117841666999979, 49.163897825000063 ], [ -122.11970630699993, 49.163965076000125 ], [ -122.11966426399999, 49.164468639000091 ], [ -122.11940612699999, 49.167560174000108 ], [ -122.117285694999936, 49.16748369500003 ], [ -122.113935147999968, 49.167362765000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.873986152324431", "sL_AssetLoss": "5055", "sL_BldgLoss": "4418", "sL_StrLoss": "2840", "sL_NStrLoss": "1578", "sL_ContLoss": "637", "geom_point": "0101000020E61000000040673591835EC0CEA8F92A79974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.053154257999893, 49.181487568000122 ], [ -122.058626637999907, 49.181688059000052 ], [ -122.058321620999962, 49.185282887000071 ], [ -122.052848817999973, 49.185082382000054 ], [ -122.053154257999893, 49.181487568000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36985417", "BldgCostT": "23241667", "sL_LossRatio": "0.754806057529778", "sL_AssetLoss": "202921", "sL_BldgLoss": "153166", "sL_StrLoss": "94690", "sL_NStrLoss": "58476", "sL_ContLoss": "49755", "geom_point": "0101000020E6100000BEA9ABAF2C8D5EC0D0EEB170E9924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.193193304999937, 49.154316405000017 ], [ -122.191580992999931, 49.153198410000101 ], [ -122.190429904999959, 49.15227268800011 ], [ -122.188638596999951, 49.151144695000085 ], [ -122.186666706999986, 49.150060895000053 ], [ -122.182953894, 49.148673138000092 ], [ -122.18309007799999, 49.147014286000037 ], [ -122.188558954999948, 49.147208188000029 ], [ -122.18852770899997, 49.147589354000132 ], [ -122.189958930999921, 49.14764005200005 ], [ -122.189870166999967, 49.148723227000104 ], [ -122.192092123999913, 49.148801899000063 ], [ -122.192013352999965, 49.149763656000061 ], [ -122.193968718999926, 49.149832850000109 ], [ -122.193825193999942, 49.151586020000096 ], [ -122.196487942, 49.151680188000071 ], [ -122.196487489999981, 49.151685725000064 ], [ -122.197287351999989, 49.151713999000073 ], [ -122.197505778000021, 49.149043439000074 ], [ -122.202327172999958, 49.1492137440001 ], [ -122.202577135999974, 49.146153321000092 ], [ -122.202006580999964, 49.146133178000071 ], [ -122.202300243999929, 49.142537734000072 ], [ -122.203299489999921, 49.142573009000074 ], [ -122.203361176999962, 49.141817471000124 ], [ -122.201925146999926, 49.141766775000114 ], [ -122.201890376999955, 49.142192467000079 ], [ -122.196422032999948, 49.141999240000104 ], [ -122.196716100999964, 49.138403789000051 ], [ -122.201861337999929, 49.138585607000046 ], [ -122.201896103999985, 49.138159913000052 ], [ -122.201985635999918, 49.138163075000151 ], [ -122.202011316999972, 49.137848614000092 ], [ -122.20333758, 49.137895439000033 ], [ -122.203439224999968, 49.136650345000113 ], [ -122.20345008, 49.136650728000077 ], [ -122.203491752000019, 49.136140245000085 ], [ -122.208959435999958, 49.13633311500007 ], [ -122.208666326999975, 49.13992861 ], [ -122.208655470999929, 49.13992822700002 ], [ -122.208613852999974, 49.140438710000105 ], [ -122.207287511999937, 49.140391950000044 ], [ -122.207263840999957, 49.140682183000088 ], [ -122.208933009999981, 49.140741027000104 ], [ -122.208673152999978, 49.143928319000025 ], [ -122.208954506999973, 49.143938235000029 ], [ -122.208900156999945, 49.144604857000019 ], [ -122.209971512999928, 49.144642609000101 ], [ -122.20996225399989, 49.144756205000064 ], [ -122.212972716999957, 49.144862229000125 ], [ -122.212956326999972, 49.145063467000121 ], [ -122.213459495999984, 49.145081180000027 ], [ -122.213476659999969, 49.144870411000049 ], [ -122.218945411999954, 49.14506277000001 ], [ -122.218653017999898, 49.148658246000174 ], [ -122.213335368999978, 49.148471205000178 ], [ -122.213318202999943, 49.148681973000109 ], [ -122.212311143999926, 49.148646522000021 ], [ -122.212020445999926, 49.1522145940001 ], [ -122.208613536999962, 49.152094591000072 ], [ -122.208570924999933, 49.152617099000068 ], [ -122.20862675599993, 49.152619067000025 ], [ -122.208626692999985, 49.152619847 ], [ -122.209245435999918, 49.152641650000099 ], [ -122.209242339999903, 49.152679604000127 ], [ -122.209782517999983, 49.15269863600011 ], [ -122.209746658999961, 49.153138474000059 ], [ -122.210622216999951, 49.153169314000074 ], [ -122.21059652199996, 49.153484552000059 ], [ -122.213292278000011, 49.153579462000025 ], [ -122.213377437999981, 49.152533930000075 ], [ -122.215217635999977, 49.152598679000072 ], [ -122.21526649, 49.151998574000103 ], [ -122.217340819999919, 49.152071523000124 ], [ -122.217589962999966, 49.149009221000043 ], [ -122.220161834999885, 49.149099613000047 ], [ -122.220276325999933, 49.147691282000011 ], [ -122.220513436999966, 49.14769961300005 ], [ -122.220593367999982, 49.146716287000039 ], [ -122.224241017999958, 49.146844375000057 ], [ -122.224464508999944, 49.147245197000039 ], [ -122.224478585999975, 49.148054201000072 ], [ -122.225077607999978, 49.150073698000028 ], [ -122.224952801999962, 49.150251708000084 ], [ -122.224538498999934, 49.150367106000104 ], [ -122.223986122999975, 49.149750402000073 ], [ -122.22372860099992, 49.149578087000158 ], [ -122.223632782999957, 49.14957809200007 ], [ -122.223603709999963, 49.149667798000038 ], [ -122.224223387000038, 49.151191709000052 ], [ -122.225214389999962, 49.150973807000064 ], [ -122.225564356999925, 49.151517955000017 ], [ -122.225312607999939, 49.151585444000034 ], [ -122.223571340999939, 49.152052262000069 ], [ -122.222680786999959, 49.152290993000115 ], [ -122.211104776999932, 49.155425752000042 ], [ -122.209737799999971, 49.155795797000053 ], [ -122.20939482799993, 49.155459552000139 ], [ -122.209251390999938, 49.155318903000136 ], [ -122.207480268, 49.154055305000142 ], [ -122.207326908999946, 49.153945885000049 ], [ -122.20672679099999, 49.153938197000073 ], [ -122.205529922999986, 49.153922159000032 ], [ -122.201234518999939, 49.153864480000038 ], [ -122.201097811999901, 49.15386263300006 ], [ -122.20070051299993, 49.153857294000126 ], [ -122.200004080999946, 49.153847918000082 ], [ -122.192952813999966, 49.153752796000028 ], [ -122.193807121999939, 49.154372599000105 ], [ -122.194738097999959, 49.155229402000046 ], [ -122.196104882, 49.156794902000073 ], [ -122.196323000999939, 49.157280406000048 ], [ -122.196469988999979, 49.157947182000029 ], [ -122.196528578999946, 49.158459051000072 ], [ -122.196542014999977, 49.158576196000091 ], [ -122.196536926999968, 49.158945613000114 ], [ -122.196530887999955, 49.159382599000054 ], [ -122.196458181999958, 49.159785025000076 ], [ -122.196355402999984, 49.160353596000085 ], [ -122.196112018999926, 49.161031896000082 ], [ -122.195469286999952, 49.162215294000084 ], [ -122.194951119999956, 49.163041618000094 ], [ -122.19477199399995, 49.163327291000016 ], [ -122.194513694999912, 49.163228630000042 ], [ -122.194227020999932, 49.163119153000089 ], [ -122.19421858, 49.163115939000043 ], [ -122.194245713999976, 49.163058193000055 ], [ -122.19450839699999, 49.162997012000098 ], [ -122.194941799999981, 49.162469999000066 ], [ -122.195833915, 49.160658393000105 ], [ -122.195938689999963, 49.160101590000096 ], [ -122.195884002999961, 49.159265608000176 ], [ -122.196135892999948, 49.15904199200002 ], [ -122.19619502099998, 49.158735802000116 ], [ -122.196125088999963, 49.158006606000086 ], [ -122.195783313999954, 49.157078007000074 ], [ -122.194789602999947, 49.15576770300008 ], [ -122.193193304999937, 49.154316405000017 ] ], [ [ -122.203137608999981, 49.149830480000034 ], [ -122.203138027999898, 49.149825359000083 ], [ -122.202927477999964, 49.149817928000068 ], [ -122.202879500000037, 49.150405374000051 ], [ -122.202945351999929, 49.150407698000066 ], [ -122.202992909999978, 49.149825374000081 ], [ -122.203137608999981, 49.149830480000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.861306179775281", "sL_AssetLoss": "2848", "sL_BldgLoss": "2453", "sL_StrLoss": "1520", "sL_NStrLoss": "933", "sL_ContLoss": "395", "geom_point": "0101000020E61000001B457B6117865EC08938C6E3DC934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.09258986299993, 49.156158622000092 ], [ -122.092793908999923, 49.153731118000067 ], [ -122.093471301999926, 49.153810812000081 ], [ -122.094471701999979, 49.15380938800007 ], [ -122.095072496999975, 49.15396749000012 ], [ -122.095975306999932, 49.154082889000023 ], [ -122.096762711999943, 49.15452858900008 ], [ -122.098177435999958, 49.154951329000028 ], [ -122.098059434999982, 49.156357118000081 ], [ -122.09258986299993, 49.156158622000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.877794093653124", "sL_AssetLoss": "6129", "sL_BldgLoss": "5380", "sL_StrLoss": "3920", "sL_NStrLoss": "1460", "sL_ContLoss": "749", "geom_point": "0101000020E6100000D60B154E98805EC036ACCA3AF3994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.006336602999951, 49.204654684000047 ], [ -122.006354678999955, 49.204444532000139 ], [ -122.00627496, 49.204441576000086 ], [ -122.005754296999939, 49.204422269000105 ], [ -122.006063505, 49.200827696000033 ], [ -122.007339236999925, 49.200874997000057 ], [ -122.007358461999928, 49.200651427000054 ], [ -122.012832899999978, 49.200854236000048 ], [ -122.01263636099999, 49.203142972000144 ], [ -122.012524214999971, 49.204448830000025 ], [ -122.011848763999922, 49.204423821000049 ], [ -122.011811508000036, 49.204857545000038 ], [ -122.006336602999951, 49.204654684000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13379166", "BldgCostT": "8466666", "sL_LossRatio": "0.729696544465883", "sL_AssetLoss": "91216", "sL_BldgLoss": "66560", "sL_StrLoss": "36010", "sL_NStrLoss": "30550", "sL_ContLoss": "24656", "geom_point": "0101000020E6100000839E72F15C8A5EC07B6BDC72E0934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.16404918799995, 49.159801792000081 ], [ -122.162918396999913, 49.15887889000004 ], [ -122.16250529699991, 49.158599212000063 ], [ -122.161864125999969, 49.158247188000054 ], [ -122.16149900299996, 49.158046704000071 ], [ -122.160291292999943, 49.157557398000051 ], [ -122.15814791299999, 49.156807512000107 ], [ -122.154229270999934, 49.155764290000093 ], [ -122.152597698999941, 49.155394001000047 ], [ -122.15185093299999, 49.155262962000037 ], [ -122.15089438599999, 49.155095106000026 ], [ -122.150670510999987, 49.155016815000081 ], [ -122.150430036000017, 49.154869228000045 ], [ -122.150175905999973, 49.154713302000047 ], [ -122.14989891499998, 49.154645688000116 ], [ -122.147029212999939, 49.15465003800005 ], [ -122.147231146999943, 49.15221354 ], [ -122.15270048699989, 49.152409262000084 ], [ -122.152683398999955, 49.152615746000052 ], [ -122.15358936799997, 49.152648139000078 ], [ -122.15340385099995, 49.154890239000068 ], [ -122.154150347999959, 49.154916924000091 ], [ -122.154152317999944, 49.154893115000107 ], [ -122.156028622999955, 49.154960165000091 ], [ -122.156061659, 49.154560660000129 ], [ -122.157829639999989, 49.154623809000093 ], [ -122.157875511999947, 49.154068801000101 ], [ -122.15821503599993, 49.154080925000102 ], [ -122.158320964999987, 49.152799107000121 ], [ -122.158400825999962, 49.15280195900003 ], [ -122.15860909299991, 49.15028150800002 ], [ -122.163954359999977, 49.150472236000034 ], [ -122.164065991, 49.150625258000069 ], [ -122.1639064299999, 49.152559037000074 ], [ -122.164868552999934, 49.152593337000049 ], [ -122.164858151999965, 49.152719417000107 ], [ -122.170258775999955, 49.152911793000044 ], [ -122.170178359999937, 49.153887935000036 ], [ -122.170553527999942, 49.153901289000018 ], [ -122.170526673, 49.15422728699999 ], [ -122.171172524999946, 49.154250273000123 ], [ -122.170876383999911, 49.157845566000042 ], [ -122.170099303999947, 49.157817910000063 ], [ -122.170077364999898, 49.158084185000085 ], [ -122.167290664999925, 49.157984960000064 ], [ -122.167180051999964, 49.159326423000032 ], [ -122.168750532999951, 49.159382351000041 ], [ -122.16854849, 49.161833458000046 ], [ -122.167051661999935, 49.161834657000078 ], [ -122.166256214999962, 49.161835303000061 ], [ -122.165997804999975, 49.161835503000084 ], [ -122.16449880499998, 49.160204493000073 ], [ -122.16404918799995, 49.159801792000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10601917", "BldgCostT": "7311667", "sL_LossRatio": "0.874827378633901", "sL_AssetLoss": "28241", "sL_BldgLoss": "24706", "sL_StrLoss": "13434", "sL_NStrLoss": "11272", "sL_ContLoss": "3535", "geom_point": "0101000020E6100000E2D70FB101815EC04979CE92579B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.016167649999943, 49.211327653000104 ], [ -122.016181601999904, 49.210624583 ], [ -122.017298216999947, 49.210634089000109 ], [ -122.017417113999969, 49.210635100000076 ], [ -122.017406034999937, 49.211194094000092 ], [ -122.017402481999952, 49.211373312000063 ], [ -122.019560813999959, 49.211453083000038 ], [ -122.019533477999943, 49.211771893000062 ], [ -122.018861968999943, 49.211782259000067 ], [ -122.018948265999924, 49.215036392000094 ], [ -122.018212241999962, 49.215009192000061 ], [ -122.018164559999917, 49.215565044000108 ], [ -122.01420940599999, 49.215657262000093 ], [ -122.011635137999988, 49.215684242000073 ], [ -122.010795398999903, 49.215693035000122 ], [ -122.010822128999976, 49.214384830000036 ], [ -122.011921879999974, 49.214425546000058 ], [ -122.011945022999939, 49.214156176000088 ], [ -122.012789301999959, 49.214187426000073 ], [ -122.012796691999952, 49.214101396000103 ], [ -122.013837004, 49.214139893000031 ], [ -122.014085097999924, 49.211250618000086 ], [ -122.01464690399996, 49.211271403000111 ], [ -122.016167649999943, 49.211327653000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33990416", "BldgCostT": "23441666", "sL_LossRatio": "0.876792460930792", "sL_AssetLoss": "93168", "sL_BldgLoss": "81689", "sL_StrLoss": "42200", "sL_NStrLoss": "39489", "sL_ContLoss": "11479", "geom_point": "0101000020E61000006A87B7B5E2815EC0E8DE1EDF399A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.019264705999944, 49.208972020000061 ], [ -122.019363293999987, 49.207822215000093 ], [ -122.021122108999975, 49.206161906000048 ], [ -122.021331299999957, 49.205368604000057 ], [ -122.021643405999939, 49.204831701000053 ], [ -122.022344989999937, 49.204145294000142 ], [ -122.02310560299999, 49.203754668000073 ], [ -122.025788499999948, 49.203853696000031 ], [ -122.025791723999959, 49.203689569000097 ], [ -122.026203504999941, 49.203693040000068 ], [ -122.026208802999946, 49.203423221000023 ], [ -122.026620581999964, 49.20342669300004 ], [ -122.026625879, 49.203156873000104 ], [ -122.02744943099998, 49.20316381 ], [ -122.027454723999966, 49.20289398900006 ], [ -122.027866497000019, 49.202897457000063 ], [ -122.027871786999953, 49.20262763700002 ], [ -122.029107102999973, 49.202638028000116 ], [ -122.029112384999948, 49.20236820800006 ], [ -122.030573468999975, 49.202380481000077 ], [ -122.030681613999889, 49.201115422000143 ], [ -122.031550311999979, 49.200893803000099 ], [ -122.031839313999967, 49.200869592000046 ], [ -122.031612008999986, 49.201226988000073 ], [ -122.031803496999913, 49.201282599000109 ], [ -122.033792204999983, 49.200678706000083 ], [ -122.035034959999948, 49.200422463000052 ], [ -122.036228822999959, 49.200466408000061 ], [ -122.036169601999958, 49.201160161000104 ], [ -122.03767282, 49.201215475000069 ], [ -122.037916845, 49.202284474000123 ], [ -122.037945473999983, 49.20286865300006 ], [ -122.037984751999929, 49.204869167000076 ], [ -122.037945466999986, 49.206376526000049 ], [ -122.027462989999961, 49.206500264000105 ], [ -122.027401455999936, 49.208513531000094 ], [ -122.026074986999916, 49.208464604000056 ], [ -122.026104085999961, 49.208124650000094 ], [ -122.024834060000018, 49.208077789000107 ], [ -122.024740176999941, 49.209174223000069 ], [ -122.019570104999957, 49.208983305000089 ], [ -122.019264705999944, 49.208972020000061 ] ], [ [ -122.03045591599999, 49.203755522000066 ], [ -122.030458196999959, 49.203728836000096 ], [ -122.030339420999951, 49.203727840000049 ], [ -122.03032721699995, 49.203750779000075 ], [ -122.03045591599999, 49.203755522000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2206417", "BldgCostT": "1521667", "sL_LossRatio": "0.843676222596965", "sL_AssetLoss": "5930", "sL_BldgLoss": "5003", "sL_StrLoss": "1984", "sL_NStrLoss": "3019", "sL_ContLoss": "927", "geom_point": "0101000020E6100000ED8345A8C6805EC067672CF5079B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.01091637, 49.210383390000061 ], [ -122.011370294999921, 49.209880515000108 ], [ -122.011482011999973, 49.209784631000041 ], [ -122.011592587999985, 49.209689709000024 ], [ -122.012581122999933, 49.209968749000041 ], [ -122.012889673999936, 49.210055829000069 ], [ -122.013525190999985, 49.210235190000091 ], [ -122.013696494999976, 49.210237822000046 ], [ -122.013623029999948, 49.211093366000043 ], [ -122.013541878999945, 49.212038382000067 ], [ -122.012054282999898, 49.211983324000151 ], [ -122.01198445699994, 49.212796118000028 ], [ -122.01085544299994, 49.212754317000112 ], [ -122.010857887999975, 49.212634611000063 ], [ -122.010888536, 49.211133525000093 ], [ -122.010902817999963, 49.210433628000047 ], [ -122.01091637, 49.210383390000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13272334", "BldgCostT": "9153334", "sL_LossRatio": "0.957911555858061", "sL_AssetLoss": "20715.9", "sL_BldgLoss": "19844", "sL_StrLoss": "17380", "sL_NStrLoss": "2464", "sL_ContLoss": "871.9", "geom_point": "0101000020E6100000B87DA897CC815EC0EFE1372A5C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.025531666999925, 49.14935171300008 ], [ -122.031000149999926, 49.149553616000084 ], [ -122.030693208999935, 49.153148543000064 ], [ -122.02522430499999, 49.15294662400003 ], [ -122.025531666999925, 49.14935171300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.960021651716672", "sL_AssetLoss": "5172.8", "sL_BldgLoss": "4966", "sL_StrLoss": "4358", "sL_NStrLoss": "608", "sL_ContLoss": "206.8", "geom_point": "0101000020E610000024D2992880815EC0FE1A7BBC31944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.023843758999931, 49.15617676100009 ], [ -122.025077918999941, 49.156187188000082 ], [ -122.02504614099999, 49.157806120000032 ], [ -122.024634741999975, 49.157802646000043 ], [ -122.024629441999977, 49.158072468000064 ], [ -122.024218040999955, 49.158068992000075 ], [ -122.024212740999957, 49.158338813000086 ], [ -122.023801335999963, 49.158335336000036 ], [ -122.023796031999964, 49.158605158000078 ], [ -122.023384625999967, 49.158601679000057 ], [ -122.02337932099999, 49.158871501000093 ], [ -122.022556503000018, 49.158864538000046 ], [ -122.022551192999984, 49.159134360000024 ], [ -122.02131696099994, 49.159123905000037 ], [ -122.021332911999949, 49.158314440000055 ], [ -122.021744315999953, 49.158317926000088 ], [ -122.021749629999988, 49.158048106000109 ], [ -122.022161032, 49.158051590000071 ], [ -122.022166343999942, 49.157781768000071 ], [ -122.022989142999933, 49.15778873300011 ], [ -122.022994449999914, 49.157518912000107 ], [ -122.023405846999978, 49.157522392000047 ], [ -122.023421762999988, 49.156712925000093 ], [ -122.023833153999973, 49.156716406000065 ], [ -122.023843758999931, 49.15617676100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14536250", "BldgCostT": "10025000", "sL_LossRatio": "0.947646726406717", "sL_AssetLoss": "24774", "sL_BldgLoss": "23477", "sL_StrLoss": "19905", "sL_NStrLoss": "3572", "sL_ContLoss": "1297", "geom_point": "0101000020E61000009EF818498E825EC0388D486F93924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.039282, 49.14678821800009 ], [ -122.039282954999948, 49.146777 ], [ -122.038517074999902, 49.146748798000026 ], [ -122.038524232, 49.1466648050001 ], [ -122.037793154999974, 49.146637878000092 ], [ -122.037832828999939, 49.146172338000028 ], [ -122.036736547999908, 49.146131951000037 ], [ -122.037042975999938, 49.142536968000051 ], [ -122.040098508999932, 49.14264950700008 ], [ -122.040096200999983, 49.143930895000061 ], [ -122.040179012999957, 49.14413410700012 ], [ -122.040284848999988, 49.144267525000075 ], [ -122.04031315499999, 49.144303182000016 ], [ -122.040360982999985, 49.144363500000118 ], [ -122.040463829999936, 49.144435192000067 ], [ -122.04053581600003, 49.144485405000125 ], [ -122.040850499999962, 49.144573608000115 ], [ -122.04101129899999, 49.144599306000011 ], [ -122.041348414999945, 49.144653192000121 ], [ -122.041679416, 49.144684805000104 ], [ -122.042239290999987, 49.144738312000136 ], [ -122.042530812999971, 49.144809404000078 ], [ -122.042805987999969, 49.14492769900005 ], [ -122.043074299999901, 49.145126013000031 ], [ -122.043279500999986, 49.1453346340001 ], [ -122.04351229299999, 49.145571297000082 ], [ -122.043838305999898, 49.145816807000053 ], [ -122.044798448, 49.146422763000047 ], [ -122.04475024, 49.146989423000136 ], [ -122.039282, 49.14678821800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.945658479984529", "sL_AssetLoss": "1034.2", "sL_BldgLoss": "978", "sL_StrLoss": "840", "sL_NStrLoss": "138", "sL_ContLoss": "56.2", "geom_point": "0101000020E6100000C48E6BE8CB805EC0A23891AA37954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.011176939, 49.165601167000013 ], [ -122.01318600099999, 49.165557699000082 ], [ -122.013787013999888, 49.165678804000024 ], [ -122.01341704, 49.165983973000088 ], [ -122.011151287999908, 49.16590001400008 ], [ -122.011176939, 49.165601167000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "312665750", "BldgCostT": "204380000", "sL_LossRatio": "0.909385971174682", "sL_AssetLoss": "380998.4", "sL_BldgLoss": "346474.6", "sL_StrLoss": "292807.4", "sL_NStrLoss": "53667.2", "sL_ContLoss": "34523.8", "geom_point": "0101000020E6100000384FD8F248815EC0BF5EF5DB32944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.014271794, 49.165449511000077 ], [ -122.012237398999957, 49.164936785000116 ], [ -122.011868001999957, 49.164960985000057 ], [ -122.01163159099994, 49.165120505000061 ], [ -122.009463696999916, 49.165128997000053 ], [ -122.008822550999952, 49.164993187000036 ], [ -122.008832547999987, 49.164876773000074 ], [ -122.008411087999932, 49.164861140000056 ], [ -122.008167209999911, 49.164767300000108 ], [ -122.008016805999944, 49.164811411000102 ], [ -122.00798666499999, 49.164845396000104 ], [ -122.006327765999927, 49.164783844000084 ], [ -122.006604139999979, 49.162656384000101 ], [ -122.006682714999968, 49.162391644000145 ], [ -122.007346449999943, 49.159808042000066 ], [ -122.00753574099997, 49.15914089500005 ], [ -122.007529923999982, 49.158881138000027 ], [ -122.007511097999966, 49.158882414000104 ], [ -122.007505668999912, 49.158801788000105 ], [ -122.006174535999961, 49.158904930000027 ], [ -122.005666798999968, 49.158873120000081 ], [ -122.004513666999969, 49.159006065000014 ], [ -122.004539063999957, 49.158710611000068 ], [ -122.002808992999931, 49.158695681000033 ], [ -122.00281441099996, 49.158425862000115 ], [ -122.00199160499993, 49.158418754000088 ], [ -122.001986183999989, 49.158688574000053 ], [ -122.0007519709999, 49.15867789900004 ], [ -122.000757398999966, 49.158408079000061 ], [ -122.000345997999929, 49.158404519000065 ], [ -122.000340565999977, 49.15867433800009 ], [ -121.999206070999932, 49.158664510000108 ], [ -121.999146661999987, 49.159354679000067 ], [ -121.998912876999938, 49.159318337000066 ], [ -121.998574508, 49.159265710000099 ], [ -121.998667760999965, 49.160008788000042 ], [ -121.998667750999942, 49.160009178000081 ], [ -121.998376521999944, 49.160006652000035 ], [ -121.998365876999983, 49.160130297000087 ], [ -121.997842726999977, 49.160110839000041 ], [ -121.997839477999932, 49.160271859000026 ], [ -121.997725556999967, 49.160270869000108 ], [ -121.997683684, 49.160757111000045 ], [ -121.997418392999961, 49.16074724300006 ], [ -121.997411720999978, 49.161077746000082 ], [ -121.997000295999911, 49.161074174000063 ], [ -121.996994847999986, 49.161343993000081 ], [ -121.996583421999929, 49.161340418000059 ], [ -121.996581234999923, 49.161448578000083 ], [ -121.995184221999978, 49.161410283000109 ], [ -121.99460574499993, 49.161429113000068 ], [ -121.994193084999978, 49.161113090000065 ], [ -121.994017013999965, 49.160896494000085 ], [ -121.993925389999958, 49.160685712000038 ], [ -121.993966995999983, 49.160331092000128 ], [ -121.994292891999933, 49.159306025 ], [ -121.994347154999957, 49.159135377000048 ], [ -121.994490448999954, 49.158793599 ], [ -121.994564928999978, 49.158720956000138 ], [ -121.995327581, 49.157977269000106 ], [ -122.000051127999939, 49.155555661000051 ], [ -122.000985850999939, 49.15507638400004 ], [ -122.003134369999927, 49.154256447000087 ], [ -122.003402798999957, 49.15411766500003 ], [ -122.006413825999985, 49.152145279000166 ], [ -122.006790407999929, 49.151884935000034 ], [ -122.006824480999953, 49.151851286000038 ], [ -122.006922317999965, 49.151754590000095 ], [ -122.010746874999967, 49.150194955000046 ], [ -122.010447609999957, 49.153682082000017 ], [ -122.012415088999958, 49.153755025000116 ], [ -122.012352001999943, 49.15449042300007 ], [ -122.013045113999951, 49.154516111000127 ], [ -122.01300364399999, 49.154999584000024 ], [ -122.016458350000022, 49.155127555000021 ], [ -122.016460189999961, 49.155034635000078 ], [ -122.018105693999956, 49.155048640000068 ], [ -122.018111027999979, 49.15477881900005 ], [ -122.018522401999945, 49.154782316000066 ], [ -122.018527732999985, 49.154512494000102 ], [ -122.018939103999955, 49.154515991000054 ], [ -122.018944433999977, 49.154246169000032 ], [ -122.019355802999925, 49.154249664000069 ], [ -122.019361131999929, 49.153979842000069 ], [ -122.019772497999938, 49.15398333600006 ], [ -122.01977782199998, 49.153713513000092 ], [ -122.02142328399999, 49.153727470000099 ], [ -122.021412652999985, 49.154267114000092 ], [ -122.02264676499999, 49.154277567000072 ], [ -122.022641454999984, 49.154547389000108 ], [ -122.023052826999972, 49.154550870999984 ], [ -122.02304752199997, 49.154820693000055 ], [ -122.025104395999989, 49.154838078000054 ], [ -122.025099101999956, 49.155107900000147 ], [ -122.02551048, 49.155111372000142 ], [ -122.025494598999956, 49.155920838000021 ], [ -122.023026292999972, 49.155899980000129 ], [ -122.022999757999941, 49.157249090000114 ], [ -122.022176968999972, 49.157242125000046 ], [ -122.022171656999959, 49.157511946000042 ], [ -122.020937464000014, 49.157501488000037 ], [ -122.020942782999924, 49.157231666000023 ], [ -122.020531387999966, 49.157228178000018 ], [ -122.020520746999964, 49.157767821000029 ], [ -122.020267529999927, 49.157765672000053 ], [ -122.020056284999924, 49.160232699000112 ], [ -122.021142653999931, 49.160272877000118 ], [ -122.021235496999921, 49.159188338000021 ], [ -122.025235508999941, 49.159336178000039 ], [ -122.025297162999934, 49.158615234000138 ], [ -122.025885219999921, 49.158636955000119 ], [ -122.025924962999937, 49.158172148000048 ], [ -122.027315066999918, 49.158223484000096 ], [ -122.027416365999969, 49.157038281000077 ], [ -122.030118438999978, 49.15713801400004 ], [ -122.030176684999958, 49.156456045000041 ], [ -122.030650161999972, 49.156473514000062 ], [ -122.030723708999943, 49.155612254000054 ], [ -122.031640247999974, 49.15564606500002 ], [ -122.031687799999972, 49.155089078000039 ], [ -122.034834683, 49.1552051030001 ], [ -122.03495944, 49.153742551000043 ], [ -122.035884314999976, 49.153776634000039 ], [ -122.035904412999969, 49.153540973000048 ], [ -122.037198301999979, 49.153588641000113 ], [ -122.037233477999933, 49.153176004000109 ], [ -122.03897074799994, 49.153239982000095 ], [ -122.038977152999962, 49.153164818000072 ], [ -122.037039028, 49.153093442000106 ], [ -122.037345478999939, 49.149498496000035 ], [ -122.042814028999913, 49.149699800000114 ], [ -122.042711725999979, 49.150901633000061 ], [ -122.04295829499992, 49.150910703000051 ], [ -122.043078843999922, 49.14949443400009 ], [ -122.043435686999928, 49.149507559000014 ], [ -122.043490062, 49.148868641000014 ], [ -122.048958564999936, 49.149069633000046 ], [ -122.048906318999983, 49.149684369000099 ], [ -122.048880787999963, 49.149984785000086 ], [ -122.048460101, 49.150245986000108 ], [ -122.046896507999961, 49.151645992000056 ], [ -122.045871389999945, 49.152275509000106 ], [ -122.043762790999935, 49.15484911600003 ], [ -122.043039391999983, 49.155454412000047 ], [ -122.041943211999964, 49.15605680500002 ], [ -122.041170907999955, 49.15633030200005 ], [ -122.039806893, 49.156588104000029 ], [ -122.038594203999935, 49.156928394 ], [ -122.038142085999979, 49.156952607000065 ], [ -122.037672112999985, 49.157127806000126 ], [ -122.03740091, 49.157639090000075 ], [ -122.03642030499999, 49.157980910000077 ], [ -122.035671217999919, 49.158460906000123 ], [ -122.034646499999951, 49.159675685000117 ], [ -122.033615406999971, 49.16047610300005 ], [ -122.032660603999958, 49.160873493000025 ], [ -122.031465891999972, 49.161007397000091 ], [ -122.028461200999928, 49.162413109000042 ], [ -122.027265314999937, 49.162501395000021 ], [ -122.027015708999926, 49.162574979000091 ], [ -122.02672486299997, 49.162564240000066 ], [ -122.02674958299994, 49.162275090000094 ], [ -122.026622587999952, 49.162270401000093 ], [ -122.026586830999932, 49.162688641000052 ], [ -122.024909809999969, 49.162994096000077 ], [ -122.023794583999972, 49.163737699000094 ], [ -122.023147812999952, 49.163713798000096 ], [ -122.02310338699999, 49.164232954000049 ], [ -122.022042099999979, 49.165128998000064 ], [ -122.021377973999904, 49.165456372000058 ], [ -122.019246510999963, 49.165377547000048 ], [ -122.019237325999882, 49.165484781000096 ], [ -122.018405147999928, 49.165453995000071 ], [ -122.018397171999965, 49.165547094000061 ], [ -122.01838451899998, 49.165547804 ], [ -122.017737482999976, 49.165694499000061 ], [ -122.017523276999952, 49.165697040000104 ], [ -122.016659160999922, 49.165665058000052 ], [ -122.016655537999938, 49.16570733000011 ], [ -122.01642132099991, 49.165710107000059 ], [ -122.015711592999978, 49.165551998000126 ], [ -122.014271794, 49.165449511000077 ] ], [ [ -122.006717145999971, 49.15621841100004 ], [ -122.006858699999924, 49.154570690000043 ], [ -122.006757641999968, 49.154566939000077 ], [ -122.006622292999964, 49.156142411000076 ], [ -122.004918792999959, 49.156079168000076 ], [ -122.004917343000017, 49.156151595000033 ], [ -122.006717145999971, 49.15621841100004 ] ], [ [ -122.018483948999986, 49.156131324000107 ], [ -122.01846084899995, 49.156400994000087 ], [ -122.018490411999949, 49.156401246000016 ], [ -122.018495744999896, 49.156131424000094 ], [ -122.018483948999986, 49.156131324000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.924779557315098", "sL_AssetLoss": "5557", "sL_BldgLoss": "5139", "sL_StrLoss": "4160", "sL_NStrLoss": "979", "sL_ContLoss": "418", "geom_point": "0101000020E61000004F8BA82694815EC0469AD3C06A924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.026620681999958, 49.142865217000086 ], [ -122.026942037999959, 49.142801366000079 ], [ -122.026905798999962, 49.14322546100005 ], [ -122.026855835, 49.143810162000044 ], [ -122.026444655999939, 49.143794972000087 ], [ -122.026427426999987, 49.143996572000063 ], [ -122.02452987099997, 49.143926453000056 ], [ -122.024206579999955, 49.143914504000101 ], [ -122.024196829999966, 49.144028526000099 ], [ -122.024119884999948, 49.144928325000116 ], [ -122.023581510999975, 49.144908423000047 ], [ -122.02355967499993, 49.145163737000061 ], [ -122.023174516999973, 49.145149497000048 ], [ -122.022710790999923, 49.144483956000087 ], [ -122.022399419999886, 49.144016112000024 ], [ -122.024996851, 49.14325974000009 ], [ -122.025324585999954, 49.143164306000081 ], [ -122.026042006, 49.142985976000041 ], [ -122.026158193999933, 49.142957111000051 ], [ -122.026442215999936, 49.142900660000109 ], [ -122.026620681999958, 49.142865217000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1615000", "BldgCostT": "850000", "sL_LossRatio": "0.942702552719201", "sL_AssetLoss": "7208", "sL_BldgLoss": "6795", "sL_StrLoss": "6120", "sL_NStrLoss": "675", "sL_ContLoss": "413", "geom_point": "0101000020E6100000809E271A3B805EC03A3F4139BC944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.004594991999966, 49.164368495000055 ], [ -122.002722493999954, 49.164019591000134 ], [ -121.999999609999975, 49.164049486000089 ], [ -121.99933231299994, 49.164010640000065 ], [ -121.999486518, 49.162219275000091 ], [ -121.999582274999938, 49.161106826000086 ], [ -122.000246496999964, 49.161131518000097 ], [ -122.000318389000014, 49.160296141000074 ], [ -122.005502227999969, 49.160488710000145 ], [ -122.005539788999954, 49.160051664000051 ], [ -122.005966917999984, 49.160067520000077 ], [ -122.005979734999954, 49.159918379000061 ], [ -122.00547865499999, 49.159899778000067 ], [ -122.005489024999918, 49.159779109000084 ], [ -122.004450525999943, 49.159740549999988 ], [ -122.004513666999969, 49.159006065000014 ], [ -122.005666798999968, 49.158873120000081 ], [ -122.006174535999961, 49.158904930000027 ], [ -122.007505668999912, 49.158801788000105 ], [ -122.007511097999966, 49.158882414000104 ], [ -122.007529923999982, 49.158881138000027 ], [ -122.00753574099997, 49.15914089500005 ], [ -122.007346449999943, 49.159808042000066 ], [ -122.006682714999968, 49.162391644000145 ], [ -122.006604139999979, 49.162656384000101 ], [ -122.006327765999927, 49.164783844000084 ], [ -122.005960187, 49.16477020100006 ], [ -122.004594991999966, 49.164368495000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21029833", "BldgCostT": "13558333", "sL_LossRatio": "0.77481093363839", "sL_AssetLoss": "76838.1", "sL_BldgLoss": "59535", "sL_StrLoss": "36663", "sL_NStrLoss": "22872", "sL_ContLoss": "17303.1", "geom_point": "0101000020E6100000DAEA28BD657F5EC0C7C0F871CD954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.988097808999967, 49.178517802000052 ], [ -121.988232018999923, 49.176963614000059 ], [ -121.986916290999901, 49.176914567000033 ], [ -121.986778161999922, 49.178513609000099 ], [ -121.98677743799999, 49.178521984000028 ], [ -121.986766396999968, 49.178513572000092 ], [ -121.98639512499993, 49.178122229000117 ], [ -121.985639678000013, 49.177202137000087 ], [ -121.985297578999933, 49.176785458000055 ], [ -121.985176721999963, 49.176638208000092 ], [ -121.985057066999929, 49.176386059000016 ], [ -121.986654348999949, 49.17644562600006 ], [ -121.986655269, 49.176434972000074 ], [ -121.985092386999924, 49.176376687000058 ], [ -121.985134996999989, 49.175883620000064 ], [ -121.985195600999987, 49.175732455000116 ], [ -121.985967617999989, 49.175121030000113 ], [ -121.987015589999913, 49.17390500600002 ], [ -121.988484458999949, 49.171956450000025 ], [ -121.988410573999914, 49.171663724000076 ], [ -121.988166167999921, 49.170695497000082 ], [ -121.988075008999914, 49.16979115700007 ], [ -121.987969025999945, 49.169251437000085 ], [ -121.98773874699999, 49.16874765000005 ], [ -121.987730052999922, 49.168740808000059 ], [ -121.987437662999966, 49.168217628000079 ], [ -121.987139216999964, 49.167664421000048 ], [ -121.98712216499996, 49.167632512000061 ], [ -121.987097619999972, 49.167633740000049 ], [ -121.985513113999929, 49.166224222000025 ], [ -121.985097205, 49.165206959000102 ], [ -121.985220505999962, 49.165211559000042 ], [ -121.985277167, 49.164555693000146 ], [ -121.987971790999921, 49.164656192000095 ], [ -121.988177375999896, 49.162274756000066 ], [ -121.990505325999933, 49.162361525000087 ], [ -121.990546099999989, 49.161888911000034 ], [ -121.990567399, 49.161889705000092 ], [ -121.990819750999933, 49.158964409000042 ], [ -121.991576377999962, 49.158992600000076 ], [ -121.991645940999931, 49.15818600500009 ], [ -121.991731676999962, 49.158175997000036 ], [ -121.99248278, 49.158289993000018 ], [ -121.992899510999962, 49.158680203000067 ], [ -121.993177717, 49.159204304000063 ], [ -121.993126600999943, 49.159725587000011 ], [ -121.99282781099997, 49.16017281000012 ], [ -121.992145301999955, 49.160752390000127 ], [ -121.992016408999945, 49.161020193000127 ], [ -121.991313486999942, 49.16178779800002 ], [ -121.991379505999973, 49.16193309100008 ], [ -121.992289301999932, 49.162398794000119 ], [ -121.992611895999957, 49.162753504000065 ], [ -121.99277509700002, 49.162771991000035 ], [ -121.992800237999944, 49.162821574000084 ], [ -121.992997156999976, 49.163190191000105 ], [ -121.993272596999972, 49.163271912000035 ], [ -121.994343984999915, 49.163963997000046 ], [ -121.995024998999924, 49.164159203000068 ], [ -121.995829646999979, 49.164254389000078 ], [ -121.99570617599997, 49.165687345000102 ], [ -121.993378049999961, 49.165600688000083 ], [ -121.993337301999958, 49.166073300000107 ], [ -121.990642583999929, 49.165972936000124 ], [ -121.990438893999951, 49.168333680000032 ], [ -121.99201554099993, 49.168392410000074 ], [ -121.992012594999963, 49.168426567000061 ], [ -121.992534324999937, 49.168445997000077 ], [ -121.992467811999944, 49.169217218000064 ], [ -121.992494175000033, 49.16921819900012 ], [ -121.99244331499996, 49.169807913000156 ], [ -121.992526210000023, 49.169811001000035 ], [ -121.992505886999965, 49.170046651000099 ], [ -121.996139801999931, 49.170181905000014 ], [ -121.995830029999951, 49.173776618000048 ], [ -121.99238472499999, 49.173648388000096 ], [ -121.992119260999985, 49.17672583600006 ], [ -121.994336479999959, 49.176808370000046 ], [ -121.994118121, 49.179340808000042 ], [ -121.99171339599999, 49.179251488000048 ], [ -121.988608209999896, 49.178838502000048 ], [ -121.98807220499998, 49.178814276000011 ], [ -121.988097808999967, 49.178517802000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136721251", "BldgCostT": "90135001", "sL_LossRatio": "0.868027134932088", "sL_AssetLoss": "397671.9", "sL_BldgLoss": "345190", "sL_StrLoss": "220821", "sL_NStrLoss": "124369", "sL_ContLoss": "52481.9", "geom_point": "0101000020E61000004C37E4FA927E5EC03197AF26AA954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.969479564999958, 49.17197078700012 ], [ -121.969479483999962, 49.171317610000123 ], [ -121.969513289999924, 49.171054695000123 ], [ -121.971641188999953, 49.171042408000055 ], [ -121.972220058999966, 49.17104422600007 ], [ -121.972393744, 49.170939831000041 ], [ -121.97271619499999, 49.171145740000014 ], [ -121.97378698199995, 49.171139827000061 ], [ -121.9741163, 49.170823064000096 ], [ -121.974523269999978, 49.170433487000011 ], [ -121.974492007999956, 49.169780478000064 ], [ -121.972477080999965, 49.169820476000069 ], [ -121.972233886999959, 49.169792447000056 ], [ -121.972002837, 49.169719787000112 ], [ -121.971193494999937, 49.169353204000075 ], [ -121.970632208999945, 49.169101399000041 ], [ -121.970250702999948, 49.168991516000098 ], [ -121.967289187999981, 49.168271113000095 ], [ -121.967752403999953, 49.165604511000055 ], [ -121.96954449899999, 49.165743694000064 ], [ -121.970409611999969, 49.165861802000109 ], [ -121.970741488999948, 49.165989611000015 ], [ -121.972035541999901, 49.16652490100013 ], [ -121.97283998099995, 49.16539560000006 ], [ -121.972926601, 49.165234689000116 ], [ -121.973170599999918, 49.164445958000059 ], [ -121.97425447799999, 49.164635280000041 ], [ -121.974107067999952, 49.165307763000015 ], [ -121.97401999799996, 49.165520876000052 ], [ -121.973059091999971, 49.166841815000069 ], [ -121.972565861999939, 49.167497743000041 ], [ -121.972305615, 49.16784962100003 ], [ -121.972251409999956, 49.167922904000122 ], [ -121.973087675, 49.167888718000043 ], [ -121.978369072999953, 49.167772472000081 ], [ -121.980065697999976, 49.167663137000062 ], [ -121.980816793999978, 49.167660017000117 ], [ -121.98081640099997, 49.167679130000039 ], [ -121.98122787799997, 49.167682761000023 ], [ -121.981218863, 49.168122132000065 ], [ -121.983799842999971, 49.168218483000054 ], [ -121.983849202999949, 49.167647376000076 ], [ -121.987097619999972, 49.167633740000049 ], [ -121.98712216499996, 49.167632512000061 ], [ -121.987139216999964, 49.167664421000048 ], [ -121.987437662999966, 49.168217628000079 ], [ -121.987730052999922, 49.168740808000059 ], [ -121.98773874699999, 49.16874765000005 ], [ -121.987969025999945, 49.169251437000085 ], [ -121.988075008999914, 49.16979115700007 ], [ -121.988166167999921, 49.170695497000082 ], [ -121.988410573999914, 49.171663724000076 ], [ -121.980648311999985, 49.171790080000086 ], [ -121.976371571999962, 49.171859413000121 ], [ -121.976386420999972, 49.171687945000066 ], [ -121.974560676999928, 49.171671746000122 ], [ -121.974556193999916, 49.171888793000022 ], [ -121.969479564999958, 49.17197078700012 ] ], [ [ -121.986427889999945, 49.169544559000038 ], [ -121.986439015999935, 49.16941575900006 ], [ -121.983885859999958, 49.169320511000052 ], [ -121.983862125999963, 49.169595124000111 ], [ -121.983819988, 49.1700826450001 ], [ -121.986373185000019, 49.170177894000048 ], [ -121.986427889999945, 49.169544559000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111155833", "BldgCostT": "74713333", "sL_LossRatio": "0.882933866593768", "sL_AssetLoss": "348247.6", "sL_BldgLoss": "307479.6", "sL_StrLoss": "207589.6", "sL_NStrLoss": "99890", "sL_ContLoss": "40768", "geom_point": "0101000020E6100000A1860C37227E5EC091689F1AF1944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.967207885999983, 49.164812290000057 ], [ -121.967408287999945, 49.163688296 ], [ -121.966198461999937, 49.163528730000095 ], [ -121.966129324999955, 49.163519598000107 ], [ -121.966442480999959, 49.162407897000037 ], [ -121.966631103999973, 49.162163390000103 ], [ -121.966828495999962, 49.162039200000052 ], [ -121.96714370499997, 49.161948199000044 ], [ -121.967545694999956, 49.161899304000038 ], [ -121.967777506999965, 49.16191610200012 ], [ -121.96914029899996, 49.162020395000091 ], [ -121.970410514999983, 49.162180600000042 ], [ -121.971406398999932, 49.162387409000196 ], [ -121.972097772999973, 49.162562097000027 ], [ -121.972886479999985, 49.162136294000028 ], [ -121.973086310999946, 49.162094189000072 ], [ -121.974385638999976, 49.162297858000052 ], [ -121.974706730999969, 49.161742786000111 ], [ -121.97515500599999, 49.161255613000044 ], [ -121.975770011999913, 49.160632998000033 ], [ -121.976073947999964, 49.160309801000061 ], [ -121.976081231999956, 49.16030204000004 ], [ -121.976211615999958, 49.159936400000042 ], [ -121.976409223999923, 49.159948752000055 ], [ -121.976498200999984, 49.159954300000038 ], [ -121.976612330999927, 49.159934763000145 ], [ -121.976658282999892, 49.159926893000033 ], [ -121.977454115999947, 49.159529305000056 ], [ -121.978182109999977, 49.159248195000018 ], [ -121.979165886999908, 49.159008197000063 ], [ -121.978009046999958, 49.159463259000091 ], [ -121.976429348999915, 49.160362350000085 ], [ -121.975210475999972, 49.161427402000058 ], [ -121.97444596699998, 49.162809986000077 ], [ -121.974388031999965, 49.164175985000035 ], [ -121.97425447799999, 49.164635280000041 ], [ -121.973170599999918, 49.164445958000059 ], [ -121.972926601, 49.165234689000116 ], [ -121.97283998099995, 49.16539560000006 ], [ -121.972035541999901, 49.16652490100013 ], [ -121.970741488999948, 49.165989611000015 ], [ -121.970409611999969, 49.165861802000109 ], [ -121.96954449899999, 49.165743694000064 ], [ -121.969679309, 49.164995991000097 ], [ -121.967207885999983, 49.164812290000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135545249", "BldgCostT": "87374999", "sL_LossRatio": "0.801697262934571", "sL_AssetLoss": "262069", "sL_BldgLoss": "210100", "sL_StrLoss": "115924", "sL_NStrLoss": "94176", "sL_ContLoss": "51969", "geom_point": "0101000020E61000009F588E2DD77D5EC0C09C55762C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.963894982999989, 49.165914305000086 ], [ -121.964211012999954, 49.164250102000082 ], [ -121.964352302999941, 49.163286088000078 ], [ -121.966129324999955, 49.163519598000107 ], [ -121.966198461999937, 49.163528730000095 ], [ -121.967408287999945, 49.163688296 ], [ -121.967207885999983, 49.164812290000057 ], [ -121.969679309, 49.164995991000097 ], [ -121.96954449899999, 49.165743694000064 ], [ -121.967752403999953, 49.165604511000055 ], [ -121.967289187999981, 49.168271113000095 ], [ -121.965974798999923, 49.167954110000011 ], [ -121.966214111999989, 49.166461908000038 ], [ -121.965941634999979, 49.166440381000079 ], [ -121.963825405999955, 49.166273197000109 ], [ -121.963894982999989, 49.165914305000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143809083", "BldgCostT": "97023333", "sL_LossRatio": "0.876046046861129", "sL_AssetLoss": "451939.6", "sL_BldgLoss": "395919.9", "sL_StrLoss": "265687.9", "sL_NStrLoss": "130232", "sL_ContLoss": "56019.7", "geom_point": "0101000020E6100000AF3A61781B7E5EC01B2984A39E944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.96083678899997, 49.162820640000071 ], [ -121.95994092299999, 49.16271037700006 ], [ -121.959733661999948, 49.162759768000051 ], [ -121.959656526999979, 49.162778123000059 ], [ -121.958994944000011, 49.163129244000054 ], [ -121.958969185999976, 49.162823744000029 ], [ -121.960585553999977, 49.16249613600008 ], [ -121.962259733999929, 49.162089997000123 ], [ -121.962578553999919, 49.162012647000033 ], [ -121.964278297999954, 49.161781701000017 ], [ -121.964851381999949, 49.161687701000112 ], [ -121.965702157999928, 49.161475068000094 ], [ -121.967110651999988, 49.161065959000091 ], [ -121.972382010999979, 49.159314459 ], [ -121.975308650999963, 49.158585687 ], [ -121.97578642299996, 49.158638023000087 ], [ -121.979165886999908, 49.159008197000063 ], [ -121.978182109999977, 49.159248195000018 ], [ -121.977454115999947, 49.159529305000056 ], [ -121.976658282999892, 49.159926893000033 ], [ -121.976612330999927, 49.159934763000145 ], [ -121.976498200999984, 49.159954300000038 ], [ -121.976409223999923, 49.159948752000055 ], [ -121.976211615999958, 49.159936400000042 ], [ -121.976081231999956, 49.16030204000004 ], [ -121.976073947999964, 49.160309801000061 ], [ -121.975770011999913, 49.160632998000033 ], [ -121.97515500599999, 49.161255613000044 ], [ -121.974706730999969, 49.161742786000111 ], [ -121.974385638999976, 49.162297858000052 ], [ -121.973086310999946, 49.162094189000072 ], [ -121.972886479999985, 49.162136294000028 ], [ -121.972097772999973, 49.162562097000027 ], [ -121.971406398999932, 49.162387409000196 ], [ -121.970410514999983, 49.162180600000042 ], [ -121.96914029899996, 49.162020395000091 ], [ -121.967777506999965, 49.16191610200012 ], [ -121.967545694999956, 49.161899304000038 ], [ -121.96714370499997, 49.161948199000044 ], [ -121.966828495999962, 49.162039200000052 ], [ -121.966631103999973, 49.162163390000103 ], [ -121.966442480999959, 49.162407897000037 ], [ -121.966129324999955, 49.163519598000107 ], [ -121.964352302999941, 49.163286088000078 ], [ -121.963328199999964, 49.163152192000091 ], [ -121.96212241099991, 49.162993310000111 ], [ -121.96083678899997, 49.162820640000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176546293", "BldgCostT": "115350948", "sL_LossRatio": "0.765922295287685", "sL_AssetLoss": "490884", "sL_BldgLoss": "375979", "sL_StrLoss": "197873", "sL_NStrLoss": "178106", "sL_ContLoss": "114905", "geom_point": "0101000020E6100000234A2114C47D5EC0E13FAC5087944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95884888199997, 49.161432368000099 ], [ -121.958795773999952, 49.160812786000129 ], [ -121.95864641199995, 49.159091424000017 ], [ -121.960571008, 49.159324369000032 ], [ -121.960860511999925, 49.159359381000058 ], [ -121.960764395999931, 49.159707414000131 ], [ -121.96082120199999, 49.160601183000082 ], [ -121.9608916, 49.160848205000029 ], [ -121.960996488, 49.161014395000031 ], [ -121.961260111999962, 49.161233484000036 ], [ -121.961674212999966, 49.161472605000036 ], [ -121.961891415999929, 49.161530393000071 ], [ -121.962126387999945, 49.161510302000103 ], [ -121.962611031999927, 49.16141635000011 ], [ -121.962998072999952, 49.161341332000056 ], [ -121.963261187999962, 49.161290333000046 ], [ -121.964663089999959, 49.161018608000084 ], [ -121.966278680999949, 49.16061301000007 ], [ -121.968326317999967, 49.15998650000008 ], [ -121.96929482099992, 49.159701791000096 ], [ -121.968896079, 49.159110793000089 ], [ -121.968523083999955, 49.158555799000055 ], [ -121.969198578999936, 49.158346093000034 ], [ -121.969320311999923, 49.158308329000128 ], [ -121.969748323999966, 49.158175437000118 ], [ -121.970731836999974, 49.15862669200002 ], [ -121.971598932999896, 49.158662019000062 ], [ -121.97235695099999, 49.158572876000051 ], [ -121.973234228999928, 49.158273118000089 ], [ -121.973320986999923, 49.158203482000062 ], [ -121.975308650999963, 49.158585687 ], [ -121.972382010999979, 49.159314459 ], [ -121.967110651999988, 49.161065959000091 ], [ -121.965702157999928, 49.161475068000094 ], [ -121.964851381999949, 49.161687701000112 ], [ -121.964278297999954, 49.161781701000017 ], [ -121.962578553999919, 49.162012647000033 ], [ -121.962259733999929, 49.162089997000123 ], [ -121.960585553999977, 49.16249613600008 ], [ -121.958969185999976, 49.162823744000029 ], [ -121.958965698999947, 49.162782606000079 ], [ -121.958892276999975, 49.161911834000072 ], [ -121.95884888199997, 49.161432368000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "309774605", "BldgCostT": "211532491", "sL_LossRatio": "0.81338946631166", "sL_AssetLoss": "643068.2", "sL_BldgLoss": "523064.9", "sL_StrLoss": "285452.9", "sL_NStrLoss": "237612", "sL_ContLoss": "120003.3", "geom_point": "0101000020E6100000DD179660AD7D5EC09120E03929944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95883646599998, 49.157867859000156 ], [ -121.960074650999942, 49.156279751000064 ], [ -121.961339012999971, 49.155020782000086 ], [ -121.961350440999951, 49.155009812000088 ], [ -121.96217374, 49.154217012000039 ], [ -121.963184648, 49.153243575000026 ], [ -121.963542481, 49.152787258000039 ], [ -121.963787651999908, 49.152269921000112 ], [ -121.964176895999984, 49.150898735000077 ], [ -121.964190543999962, 49.150732052000102 ], [ -121.964197408999922, 49.15064851100005 ], [ -121.964257809999964, 49.15066334300009 ], [ -121.96475591799998, 49.15078580200008 ], [ -121.965243406999903, 49.151023702000103 ], [ -121.965925792999954, 49.151829788000093 ], [ -121.965807314999935, 49.152269907000061 ], [ -121.96567222399996, 49.152431487000094 ], [ -121.965329788999938, 49.15284100300012 ], [ -121.964728691999966, 49.153330915000041 ], [ -121.964721619, 49.153451983000096 ], [ -121.964635060999939, 49.153639369000047 ], [ -121.964559928999932, 49.156046606000054 ], [ -121.964766307999966, 49.156446194000068 ], [ -121.964810366999941, 49.156481707000061 ], [ -121.965467631999971, 49.157011578000038 ], [ -121.966533014000021, 49.157307648000064 ], [ -121.967692734999957, 49.157206981000023 ], [ -121.967852187999966, 49.157303321000072 ], [ -121.968838133999952, 49.157740507000057 ], [ -121.969723806999966, 49.158166372000075 ], [ -121.969748323999966, 49.158175437000118 ], [ -121.969320311999923, 49.158308329000128 ], [ -121.969198578999936, 49.158346093000034 ], [ -121.968523083999955, 49.158555799000055 ], [ -121.968896079, 49.159110793000089 ], [ -121.96929482099992, 49.159701791000096 ], [ -121.968326317999967, 49.15998650000008 ], [ -121.966278680999949, 49.16061301000007 ], [ -121.964663089999959, 49.161018608000084 ], [ -121.963261187999962, 49.161290333000046 ], [ -121.962998072999952, 49.161341332000056 ], [ -121.962611031999927, 49.16141635000011 ], [ -121.962126387999945, 49.161510302000103 ], [ -121.961891415999929, 49.161530393000071 ], [ -121.961674212999966, 49.161472605000036 ], [ -121.961260111999962, 49.161233484000036 ], [ -121.960996488, 49.161014395000031 ], [ -121.9608916, 49.160848205000029 ], [ -121.96082120199999, 49.160601183000082 ], [ -121.960764395999931, 49.159707414000131 ], [ -121.960860511999925, 49.159359381000058 ], [ -121.960571008, 49.159324369000032 ], [ -121.95864641199995, 49.159091424000017 ], [ -121.95862058199999, 49.158678411000018 ], [ -121.958654777999953, 49.158301012000052 ], [ -121.95883646599998, 49.157867859000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "479932858", "BldgCostT": "274324497", "sL_LossRatio": "0.616630539112922", "sL_AssetLoss": "1512649.7", "sL_BldgLoss": "932746", "sL_StrLoss": "340577", "sL_NStrLoss": "592169", "sL_ContLoss": "579903.7", "geom_point": "0101000020E6100000C1AE068BF77C5EC08283C644B1934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.951390754, 49.154945616000134 ], [ -121.95138642199997, 49.154765697000101 ], [ -121.950396023999971, 49.154771838000066 ], [ -121.94981602299994, 49.154775429000068 ], [ -121.949793151, 49.154775568000069 ], [ -121.94943066899999, 49.1547777930001 ], [ -121.94824340699995, 49.15478709100006 ], [ -121.947906292999932, 49.154830404000073 ], [ -121.945925907999978, 49.155094690000098 ], [ -121.945520189, 49.155153392000052 ], [ -121.945212214999941, 49.155256303000016 ], [ -121.944579292999961, 49.155545288000106 ], [ -121.944227316999957, 49.155665501000065 ], [ -121.94211629899999, 49.156025898000053 ], [ -121.940259713999978, 49.156316500000152 ], [ -121.93997037199992, 49.156346726000052 ], [ -121.939959712999922, 49.156347848000117 ], [ -121.93968930799997, 49.156376110000053 ], [ -121.937539658999953, 49.156366193000046 ], [ -121.939840862999958, 49.156257094000054 ], [ -121.939711356999936, 49.156167462000084 ], [ -121.939581831999973, 49.156077807000017 ], [ -121.939452327999931, 49.155988174000079 ], [ -121.939322785999963, 49.155898553000107 ], [ -121.939193333999953, 49.155808931000095 ], [ -121.939063829999952, 49.155719298000101 ], [ -121.938934307999887, 49.155629643000047 ], [ -121.938804803999929, 49.155540009000084 ], [ -121.938675300999961, 49.155450376000033 ], [ -121.938545781999892, 49.155360720000097 ], [ -121.938416278999981, 49.155271085000095 ], [ -121.938286778999966, 49.155181452000093 ], [ -121.938157278999981, 49.155091819000035 ], [ -121.938027724999969, 49.155002174000032 ], [ -121.937898226999934, 49.15491253800004 ], [ -121.937768727000019, 49.154822904000142 ], [ -121.937639228999956, 49.154733270000101 ], [ -121.937509712999926, 49.154643612000051 ], [ -121.937380180999966, 49.154553989000078 ], [ -121.937250773999935, 49.154464353000051 ], [ -121.937121240999957, 49.154374731000125 ], [ -121.936991747000022, 49.154285095000013 ], [ -121.93697826099999, 49.154275760000125 ], [ -121.93007584199998, 49.154137184000042 ], [ -121.930084681999958, 49.153726820000081 ], [ -121.931318743999952, 49.153738248000124 ], [ -121.931324547999978, 49.153468434000011 ], [ -121.934615367999925, 49.153498846000062 ], [ -121.934621154999959, 49.153229032000048 ], [ -121.937911960999941, 49.153259350000063 ], [ -121.937917729999953, 49.152989535000103 ], [ -121.940797174999943, 49.153015987000117 ], [ -121.940802927, 49.152746172000029 ], [ -121.941625620999929, 49.152753715000053 ], [ -121.941631370999986, 49.152483900000043 ], [ -121.942042715999932, 49.152487671000053 ], [ -121.942054207999902, 49.151948039000075 ], [ -121.942465548, 49.151951808000049 ], [ -121.942471293999944, 49.151681993000039 ], [ -121.943705309, 49.151693288000068 ], [ -121.943711046999937, 49.151423473000094 ], [ -121.944122381999946, 49.151427236000124 ], [ -121.94412811700002, 49.151157420000025 ], [ -121.94453945199993, 49.151161181000084 ], [ -121.944545183999978, 49.15089136600006 ], [ -121.944956516999952, 49.150895124000108 ], [ -121.944960339999966, 49.150715106000057 ], [ -121.944927716999942, 49.150713876000076 ], [ -121.944970870999924, 49.150219180000065 ], [ -121.944978091999971, 49.149879156000047 ], [ -121.942730894999926, 49.149794420000063 ], [ -121.942736236999949, 49.149733220000073 ], [ -121.942468646999941, 49.149723127000101 ], [ -121.941992607999964, 49.149705169000043 ], [ -121.9454273599999, 49.148866205000097 ], [ -121.945812677999982, 49.148772059000123 ], [ -121.946973550999971, 49.148488474 ], [ -121.947322464999957, 49.148403246000086 ], [ -121.947335284999937, 49.148400097 ], [ -121.94773521599997, 49.148297714000087 ], [ -121.94814979899995, 49.148191596000125 ], [ -121.95069032, 49.147541187000044 ], [ -121.950681967999984, 49.147637077000113 ], [ -121.95080645299997, 49.147641763000074 ], [ -121.950803602999983, 49.147674475 ], [ -121.950777025999983, 49.147979617000061 ], [ -121.950777861999953, 49.147979625000055 ], [ -121.950774772999978, 49.148125868000051 ], [ -121.950979078, 49.148133559000073 ], [ -121.950940723999963, 49.14857391500005 ], [ -121.951074701, 49.148578958000044 ], [ -121.950943448999936, 49.150085891000032 ], [ -121.95284095599996, 49.150157299000121 ], [ -121.953611566999953, 49.15016428600012 ], [ -121.953611103999918, 49.150186271000045 ], [ -121.954443280999953, 49.150217571000084 ], [ -121.954423791999957, 49.150441511000103 ], [ -121.95442854399991, 49.150441555000072 ], [ -121.954422864999941, 49.150711371000078 ], [ -121.954834197999958, 49.150715094000084 ], [ -121.95482745, 49.151035881000034 ], [ -121.957389528999983, 49.151132195000059 ], [ -121.957302371999958, 49.152134391000068 ], [ -121.959575476999987, 49.152219791000043 ], [ -121.959603217, 49.151900641000104 ], [ -121.960607644999953, 49.151938361000134 ], [ -121.960913054999978, 49.148423462000025 ], [ -121.962697446999982, 49.148490450000061 ], [ -121.962697779999971, 49.148474527000097 ], [ -121.957641331999966, 49.148284624000034 ], [ -121.957846547999964, 49.14592444900012 ], [ -121.957861691999966, 49.145750264000092 ], [ -121.958913788999951, 49.145496692000094 ], [ -121.960833238999939, 49.145034033000101 ], [ -121.960987699999961, 49.144996802000065 ], [ -121.961491417999966, 49.144875369000125 ], [ -121.961941783999976, 49.144766797000088 ], [ -121.961981245999965, 49.144844162000041 ], [ -121.961995710999972, 49.144872514000085 ], [ -121.962033191999922, 49.144946096000083 ], [ -121.962054532999929, 49.144988224000016 ], [ -121.962101108999931, 49.145080065000116 ], [ -121.96217018399993, 49.145216301000119 ], [ -121.96235831099996, 49.145575892000124 ], [ -121.9627702, 49.146375808000073 ], [ -121.963020622999977, 49.146872011000056 ], [ -121.963647423999959, 49.148261509000044 ], [ -121.96384040099997, 49.148692486000101 ], [ -121.964090121999959, 49.149323078000087 ], [ -121.964145258999977, 49.149967993000104 ], [ -121.964215344999928, 49.15006078000004 ], [ -121.964222527999965, 49.150341467000047 ], [ -121.964205294999886, 49.150552006000062 ], [ -121.964197408999922, 49.15064851100005 ], [ -121.964190543999962, 49.150732052000102 ], [ -121.964176895999984, 49.150898735000077 ], [ -121.963787651999908, 49.152269921000112 ], [ -121.963542481, 49.152787258000039 ], [ -121.963184648, 49.153243575000026 ], [ -121.96217374, 49.154217012000039 ], [ -121.961350440999951, 49.155009812000088 ], [ -121.961339012999971, 49.155020782000086 ], [ -121.960074650999942, 49.156279751000064 ], [ -121.95883646599998, 49.157867859000156 ], [ -121.958654777999953, 49.158301012000052 ], [ -121.95862058199999, 49.158678411000018 ], [ -121.95864641199995, 49.159091424000017 ], [ -121.958795773999952, 49.160812786000129 ], [ -121.95884888199997, 49.161432368000099 ], [ -121.958892276999975, 49.161911834000072 ], [ -121.958965698999947, 49.162782606000079 ], [ -121.958969185999976, 49.162823744000029 ], [ -121.958952263999976, 49.16282717100011 ], [ -121.958927301999935, 49.162828476000044 ], [ -121.956558979999969, 49.162952020000048 ], [ -121.955039484999986, 49.163264328000039 ], [ -121.95257380299995, 49.163754843000056 ], [ -121.952563899999987, 49.163185986000073 ], [ -121.952544421999946, 49.161914001000092 ], [ -121.952535102999974, 49.161746261000069 ], [ -121.952378383999957, 49.158920694000145 ], [ -121.952357442999954, 49.158311343000022 ], [ -121.952237692999972, 49.158173391000062 ], [ -121.95154949099998, 49.157271102000067 ], [ -121.951440701999957, 49.157024508000063 ], [ -121.951413955999939, 49.155911745000118 ], [ -121.951409657999974, 49.155731814000035 ], [ -121.951390754, 49.154945616000134 ] ], [ [ -121.946161896999939, 49.152255473000103 ], [ -121.946167302999982, 49.15200062800011 ], [ -121.945756209999928, 49.151985135000075 ], [ -121.945750552, 49.152251718000123 ], [ -121.946161896999939, 49.152255473000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2895834", "BldgCostT": "1733334", "sL_LossRatio": "0.782304852320675", "sL_AssetLoss": "15168", "sL_BldgLoss": "11866", "sL_StrLoss": "8910", "sL_NStrLoss": "2956", "sL_ContLoss": "3302", "geom_point": "0101000020E6100000F30C12891F7C5EC06D6CB8C04C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939971, 49.150198895000059 ], [ -121.94105014799996, 49.149935348000078 ], [ -121.941037528999985, 49.150079874000028 ], [ -121.940931741999961, 49.151291398000048 ], [ -121.936803834999949, 49.151135559000139 ], [ -121.93629572099999, 49.151116365000142 ], [ -121.939971, 49.150198895000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2523561", "BldgCostT": "1328190", "sL_LossRatio": "0.536256323777403", "sL_AssetLoss": "2372", "sL_BldgLoss": "1272", "sL_StrLoss": "242", "sL_NStrLoss": "1030", "sL_ContLoss": "1100", "geom_point": "0101000020E61000003CE84448FE7C5EC0C228319D10934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.952411720999962, 49.148534197000032 ], [ -121.953645662999989, 49.148545387000063 ], [ -121.953628615999904, 49.149354836000022 ], [ -121.952394652999928, 49.149343647000052 ], [ -121.952411720999962, 49.148534197000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141121167", "BldgCostT": "94196667", "sL_LossRatio": "0.88467079772279", "sL_AssetLoss": "285964", "sL_BldgLoss": "252984", "sL_StrLoss": "143197", "sL_NStrLoss": "109787", "sL_ContLoss": "32980", "geom_point": "0101000020E610000011FBCAA4C27C5EC011A5DECF80944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.944004308999979, 49.160893602000023 ], [ -121.944652605999963, 49.160805396000086 ], [ -121.946592189999961, 49.160792795000049 ], [ -121.947578598999911, 49.160918313000074 ], [ -121.947647612999944, 49.160802808000049 ], [ -121.947705605999914, 49.160436198000077 ], [ -121.94789260099999, 49.160038488000062 ], [ -121.948503608999914, 49.15893089900004 ], [ -121.948763602000014, 49.158183311000101 ], [ -121.948033604999949, 49.15818549300014 ], [ -121.948029399999925, 49.157352303000081 ], [ -121.950093583999944, 49.15735609500009 ], [ -121.95010549499996, 49.158179696000026 ], [ -121.952237692999972, 49.158173391000062 ], [ -121.952357442999954, 49.158311343000022 ], [ -121.952378383999957, 49.158920694000145 ], [ -121.952535102999974, 49.161746261000069 ], [ -121.952544421999946, 49.161914001000092 ], [ -121.948865506999951, 49.161924293000013 ], [ -121.947451649999948, 49.161932708000101 ], [ -121.947418694999939, 49.161932909000072 ], [ -121.945610410999976, 49.16193509500004 ], [ -121.944427612999974, 49.161937409000046 ], [ -121.944004308999979, 49.160893602000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113149250", "BldgCostT": "72170000", "sL_LossRatio": "0.85321911754708", "sL_AssetLoss": "294180", "sL_BldgLoss": "251000", "sL_StrLoss": "161140", "sL_NStrLoss": "89860", "sL_ContLoss": "43180", "geom_point": "0101000020E6100000E0C8F2646D7C5EC0827F5BC180944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.941119192, 49.16123928800004 ], [ -121.9411319, 49.159649289000043 ], [ -121.941132589999967, 49.158934299000116 ], [ -121.943464713999973, 49.158933894000029 ], [ -121.945412894999919, 49.158931600000066 ], [ -121.948503608999914, 49.15893089900004 ], [ -121.94789260099999, 49.160038488000062 ], [ -121.947705605999914, 49.160436198000077 ], [ -121.947647612999944, 49.160802808000049 ], [ -121.947578598999911, 49.160918313000074 ], [ -121.946592189999961, 49.160792795000049 ], [ -121.944652605999963, 49.160805396000086 ], [ -121.944004308999979, 49.160893602000023 ], [ -121.944427612999974, 49.161937409000046 ], [ -121.943198221, 49.161939805000031 ], [ -121.942445084, 49.16193929300006 ], [ -121.941116902999966, 49.161941511000087 ], [ -121.941119192, 49.16123928800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112711750", "BldgCostT": "74995000", "sL_LossRatio": "0.88338736551154", "sL_AssetLoss": "309692", "sL_BldgLoss": "273578", "sL_StrLoss": "197580", "sL_NStrLoss": "75998", "sL_ContLoss": "36114", "geom_point": "0101000020E610000021748698817C5EC04F748677F3944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939919991999943, 49.166297989000078 ], [ -121.939899822999948, 49.165586808000064 ], [ -121.939917112999964, 49.164839994000076 ], [ -121.939852204999951, 49.164640094000077 ], [ -121.939757185999966, 49.164549999000073 ], [ -121.939478777000019, 49.164391597000076 ], [ -121.939366905999961, 49.164274699 ], [ -121.939321213999975, 49.164122409000065 ], [ -121.939323881999897, 49.163353393000087 ], [ -121.939326081, 49.16265389400008 ], [ -121.941696816999936, 49.162653095000032 ], [ -121.942683294999981, 49.162651596000046 ], [ -121.942500300999939, 49.162391317000058 ], [ -121.942445084, 49.16193929300006 ], [ -121.943198221, 49.161939805000031 ], [ -121.944427612999974, 49.161937409000046 ], [ -121.945610410999976, 49.16193509500004 ], [ -121.947418694999939, 49.161932909000072 ], [ -121.947451649999948, 49.161932708000101 ], [ -121.948865506999951, 49.161924293000013 ], [ -121.952544421999946, 49.161914001000092 ], [ -121.952563899999987, 49.163185986000073 ], [ -121.95257380299995, 49.163754843000056 ], [ -121.952449782999906, 49.163780667000076 ], [ -121.947251106999929, 49.164899357000181 ], [ -121.946695773999949, 49.165027178000166 ], [ -121.945688642999983, 49.165258955000098 ], [ -121.94562340199991, 49.165276136000053 ], [ -121.945516427999962, 49.16530038700008 ], [ -121.942762497999951, 49.166066195000084 ], [ -121.940983849999924, 49.165985094000135 ], [ -121.940644020999954, 49.166068158000051 ], [ -121.939919991999943, 49.166297989000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118911249", "BldgCostT": "77409999", "sL_LossRatio": "0.806653902716502", "sL_AssetLoss": "367597.8", "sL_BldgLoss": "296524.2", "sL_StrLoss": "198904.2", "sL_NStrLoss": "97620", "sL_ContLoss": "71073.6", "geom_point": "0101000020E6100000947B68BC007C5EC08F0808DEF7944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.941116902999966, 49.161941511000087 ], [ -121.942445084, 49.16193929300006 ], [ -121.942500300999939, 49.162391317000058 ], [ -121.942683294999981, 49.162651596000046 ], [ -121.941696816999936, 49.162653095000032 ], [ -121.939326081, 49.16265389400008 ], [ -121.939323881999897, 49.163353393000087 ], [ -121.939321213999975, 49.164122409000065 ], [ -121.939366905999961, 49.164274699 ], [ -121.939478777000019, 49.164391597000076 ], [ -121.939757185999966, 49.164549999000073 ], [ -121.939852204999951, 49.164640094000077 ], [ -121.939917112999964, 49.164839994000076 ], [ -121.939899822999948, 49.165586808000064 ], [ -121.938317095999963, 49.165878701000068 ], [ -121.936009084999938, 49.166305493000046 ], [ -121.935733410999902, 49.16632030100002 ], [ -121.935584621999922, 49.16629579100001 ], [ -121.935468994999908, 49.166236397000041 ], [ -121.93522250699999, 49.165541889000018 ], [ -121.934641616999954, 49.163900595000072 ], [ -121.934536386, 49.163409782000031 ], [ -121.934774493999925, 49.162491013000093 ], [ -121.935089384999955, 49.161950196000056 ], [ -121.935500810999955, 49.161949677000031 ], [ -121.935866323999932, 49.161949223000136 ], [ -121.936289899999963, 49.161948696000088 ], [ -121.937275095999937, 49.161947100000113 ], [ -121.938135291999956, 49.161946221000036 ], [ -121.941116902999966, 49.161941511000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80119667", "BldgCostT": "54286667", "sL_LossRatio": "0.892927743191809", "sL_AssetLoss": "237251", "sL_BldgLoss": "211848", "sL_StrLoss": "144449", "sL_NStrLoss": "67399", "sL_ContLoss": "25403", "geom_point": "0101000020E610000091E9AFDB107C5EC049D576137C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.937264082999945, 49.161130691000018 ], [ -121.937254003999954, 49.160038516000093 ], [ -121.936270706999963, 49.160049999000087 ], [ -121.935204007999971, 49.160027800000059 ], [ -121.935200713, 49.158951997000017 ], [ -121.936365302999945, 49.158937395000059 ], [ -121.93638181399993, 49.157916499000088 ], [ -121.936548296999973, 49.157817288000068 ], [ -121.938009295999962, 49.157815693 ], [ -121.938137403999946, 49.15784120800005 ], [ -121.938248296999987, 49.157953603000031 ], [ -121.938233783999962, 49.158935789000054 ], [ -121.941132589999967, 49.158934299000116 ], [ -121.9411319, 49.159649289000043 ], [ -121.941119192, 49.16123928800004 ], [ -121.941116902999966, 49.161941511000087 ], [ -121.938135291999956, 49.161946221000036 ], [ -121.937275095999937, 49.161947100000113 ], [ -121.937264082999945, 49.161130691000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237431917", "BldgCostT": "156381667", "sL_LossRatio": "0.876733087057668", "sL_AssetLoss": "684328", "sL_BldgLoss": "599973", "sL_StrLoss": "421302", "sL_NStrLoss": "178671", "sL_ContLoss": "84355", "geom_point": "0101000020E6100000A96B51F26C7C5EC02379BF1B1C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935200713, 49.158951997000017 ], [ -121.935139828999965, 49.157306012000106 ], [ -121.935137499999939, 49.157242898000071 ], [ -121.93514969899995, 49.156884509000079 ], [ -121.935234420999947, 49.156653288000022 ], [ -121.935591601999988, 49.15645849800012 ], [ -121.935880190999939, 49.156358492000081 ], [ -121.937539658999953, 49.156366193000046 ], [ -121.93968930799997, 49.156376110000053 ], [ -121.939959712999922, 49.156347848000117 ], [ -121.93997037199992, 49.156346726000052 ], [ -121.940259713999978, 49.156316500000152 ], [ -121.94211629899999, 49.156025898000053 ], [ -121.944227316999957, 49.155665501000065 ], [ -121.944579292999961, 49.155545288000106 ], [ -121.945212214999941, 49.155256303000016 ], [ -121.945520189, 49.155153392000052 ], [ -121.945925907999978, 49.155094690000098 ], [ -121.947906292999932, 49.154830404000073 ], [ -121.94824340699995, 49.15478709100006 ], [ -121.94943066899999, 49.1547777930001 ], [ -121.949793151, 49.154775568000069 ], [ -121.94981602299994, 49.154775429000068 ], [ -121.950396023999971, 49.154771838000066 ], [ -121.95138642199997, 49.154765697000101 ], [ -121.951390754, 49.154945616000134 ], [ -121.951409657999974, 49.155731814000035 ], [ -121.951413955999939, 49.155911745000118 ], [ -121.951440701999957, 49.157024508000063 ], [ -121.95154949099998, 49.157271102000067 ], [ -121.952237692999972, 49.158173391000062 ], [ -121.95010549499996, 49.158179696000026 ], [ -121.950093583999944, 49.15735609500009 ], [ -121.948029399999925, 49.157352303000081 ], [ -121.948033604999949, 49.15818549300014 ], [ -121.948763602000014, 49.158183311000101 ], [ -121.948503608999914, 49.15893089900004 ], [ -121.945412894999919, 49.158931600000066 ], [ -121.943464713999973, 49.158933894000029 ], [ -121.941132589999967, 49.158934299000116 ], [ -121.938233783999962, 49.158935789000054 ], [ -121.938248296999987, 49.157953603000031 ], [ -121.938137403999946, 49.15784120800005 ], [ -121.938009295999962, 49.157815693 ], [ -121.936548296999973, 49.157817288000068 ], [ -121.93638181399993, 49.157916499000088 ], [ -121.936365302999945, 49.158937395000059 ], [ -121.935200713, 49.158951997000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24778750", "BldgCostT": "16825000", "sL_LossRatio": "0.893076785668717", "sL_AssetLoss": "78374", "sL_BldgLoss": "69994", "sL_StrLoss": "49630", "sL_NStrLoss": "20364", "sL_ContLoss": "8380", "geom_point": "0101000020E610000053EFFCE4E07A5EC0E199AF1648944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.918018697, 49.16191889000001 ], [ -121.918172290999962, 49.156494920000107 ], [ -121.918191685999915, 49.155809597000065 ], [ -121.918197768999931, 49.155558016000064 ], [ -121.91820309, 49.15533579100002 ], [ -121.918205354999955, 49.155216007000071 ], [ -121.918206094999974, 49.15517718800011 ], [ -121.918274779999962, 49.15517529699999 ], [ -121.919293215999971, 49.15515359500008 ], [ -121.919803826999953, 49.155095302000078 ], [ -121.920330993000022, 49.155035093000045 ], [ -121.920641458999953, 49.154976108000035 ], [ -121.921511274999915, 49.154810840000088 ], [ -121.921499473999944, 49.154945319000078 ], [ -121.921451011999963, 49.155497626000034 ], [ -121.922145486999952, 49.155523952000109 ], [ -121.921830094999947, 49.159118532000079 ], [ -121.92162401899995, 49.159110720000093 ], [ -121.921558591999954, 49.159856304000051 ], [ -121.921663371999927, 49.159860276000096 ], [ -121.921585519999937, 49.160747445000077 ], [ -121.921657628, 49.160750179000047 ], [ -121.921554133999962, 49.161929514000065 ], [ -121.918018697, 49.16191889000001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67823416", "BldgCostT": "42361666", "sL_LossRatio": "0.788711156322079", "sL_AssetLoss": "200344.7", "sL_BldgLoss": "158014.1", "sL_StrLoss": "92031.1", "sL_NStrLoss": "65983", "sL_ContLoss": "42330.6", "geom_point": "0101000020E6100000656E3AD9B87B5EC0B9E6868D4F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.928533078999962, 49.159779554000096 ], [ -121.928537751999954, 49.159726219000021 ], [ -121.929533477999954, 49.15976389500004 ], [ -121.929542914999956, 49.159656144000053 ], [ -121.932423520999976, 49.159765085000103 ], [ -121.932448428999948, 49.158606321000065 ], [ -121.93285982399999, 49.158610124000106 ], [ -121.932864880999958, 49.15837476700009 ], [ -121.932040774999933, 49.15834361100007 ], [ -121.932355370999971, 49.154748998000088 ], [ -121.934762122999985, 49.15483997000004 ], [ -121.934784871999966, 49.15457988200005 ], [ -121.930067246999954, 49.154536262000107 ], [ -121.93007584199998, 49.154137184000042 ], [ -121.93697826099999, 49.154275760000125 ], [ -121.936991747000022, 49.154285095000013 ], [ -121.937121240999957, 49.154374731000125 ], [ -121.937250773999935, 49.154464353000051 ], [ -121.937380180999966, 49.154553989000078 ], [ -121.937509712999926, 49.154643612000051 ], [ -121.937639228999956, 49.154733270000101 ], [ -121.937768727000019, 49.154822904000142 ], [ -121.937898226999934, 49.15491253800004 ], [ -121.938027724999969, 49.155002174000032 ], [ -121.938157278999981, 49.155091819000035 ], [ -121.938286778999966, 49.155181452000093 ], [ -121.938416278999981, 49.155271085000095 ], [ -121.938545781999892, 49.155360720000097 ], [ -121.938675300999961, 49.155450376000033 ], [ -121.938804803999929, 49.155540009000084 ], [ -121.938934307999887, 49.155629643000047 ], [ -121.939063829999952, 49.155719298000101 ], [ -121.939193333999953, 49.155808931000095 ], [ -121.939322785999963, 49.155898553000107 ], [ -121.939452327999931, 49.155988174000079 ], [ -121.939581831999973, 49.156077807000017 ], [ -121.939711356999936, 49.156167462000084 ], [ -121.939840862999958, 49.156257094000054 ], [ -121.937539658999953, 49.156366193000046 ], [ -121.935880190999939, 49.156358492000081 ], [ -121.935591601999988, 49.15645849800012 ], [ -121.935234420999947, 49.156653288000022 ], [ -121.93514969899995, 49.156884509000079 ], [ -121.935137499999939, 49.157242898000071 ], [ -121.935139828999965, 49.157306012000106 ], [ -121.935200713, 49.158951997000017 ], [ -121.935204007999971, 49.160027800000059 ], [ -121.936270706999963, 49.160049999000087 ], [ -121.937254003999954, 49.160038516000093 ], [ -121.937264082999945, 49.161130691000018 ], [ -121.937275095999937, 49.161947100000113 ], [ -121.936289899999963, 49.161948696000088 ], [ -121.935866323999932, 49.161949223000136 ], [ -121.935500810999955, 49.161949677000031 ], [ -121.935089384999955, 49.161950196000056 ], [ -121.932220395999948, 49.161953708000119 ], [ -121.930465597999927, 49.161955779000067 ], [ -121.926337344999951, 49.16194370300007 ], [ -121.926525430999916, 49.159797872000055 ], [ -121.927717546999972, 49.159843000000173 ], [ -121.927725783999975, 49.159749002000083 ], [ -121.928533078999962, 49.159779554000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82209750", "BldgCostT": "54015000", "sL_LossRatio": "0.790472272667984", "sL_AssetLoss": "498335", "sL_BldgLoss": "393920", "sL_StrLoss": "219620", "sL_NStrLoss": "174300", "sL_ContLoss": "104415", "geom_point": "0101000020E6100000C11681D24C7B5EC0895C998530954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.917999954, 49.169282147000096 ], [ -121.918015387000011, 49.164892294000083 ], [ -121.918018697, 49.16191889000001 ], [ -121.921554133999962, 49.161929514000065 ], [ -121.921342164999885, 49.164344728000067 ], [ -121.921336943999918, 49.164344530000022 ], [ -121.92130346099999, 49.164726007000127 ], [ -121.921442983999953, 49.164731295000088 ], [ -121.921386974999933, 49.165369440000042 ], [ -121.921446524999922, 49.165371697000076 ], [ -121.921408471999925, 49.165805242000054 ], [ -121.92144425, 49.165806598000103 ], [ -121.921363589999942, 49.166725586000069 ], [ -121.926405539999976, 49.166916568000069 ], [ -121.926311014999925, 49.167994780000058 ], [ -121.926484777999946, 49.167996395000067 ], [ -121.926490611999981, 49.167726582000078 ], [ -121.928136490999947, 49.167741871000089 ], [ -121.928142316999981, 49.167472058000044 ], [ -121.928965251999927, 49.167479695000075 ], [ -121.928971070999978, 49.16720988100009 ], [ -121.930205467999969, 49.16722132400006 ], [ -121.930211281999959, 49.166951510000047 ], [ -121.931034207999915, 49.166959132000088 ], [ -121.931045826999949, 49.166419504000068 ], [ -121.930634367999986, 49.166415694000086 ], [ -121.930640179999941, 49.166145881 ], [ -121.930228720999949, 49.166142069000038 ], [ -121.930246160999943, 49.165332629000069 ], [ -121.929834710999927, 49.165328816000077 ], [ -121.929857971999965, 49.164249562000059 ], [ -121.930269411, 49.164253374000054 ], [ -121.930271102999981, 49.164174877000043 ], [ -121.926514919999974, 49.164032747000093 ], [ -121.926569853999922, 49.163406051000038 ], [ -121.926210349999963, 49.163392441000084 ], [ -121.926337344999951, 49.16194370300007 ], [ -121.930465597999927, 49.161955779000067 ], [ -121.932220395999948, 49.161953708000119 ], [ -121.935089384999955, 49.161950196000056 ], [ -121.934774493999925, 49.162491013000093 ], [ -121.934536386, 49.163409782000031 ], [ -121.934641616999954, 49.163900595000072 ], [ -121.93522250699999, 49.165541889000018 ], [ -121.935468994999908, 49.166236397000041 ], [ -121.935584621999922, 49.16629579100001 ], [ -121.935733410999902, 49.16632030100002 ], [ -121.936009084999938, 49.166305493000046 ], [ -121.938317095999963, 49.165878701000068 ], [ -121.939899822999948, 49.165586808000064 ], [ -121.939919991999943, 49.166297989000078 ], [ -121.939547683999976, 49.166365838000132 ], [ -121.938766062999946, 49.166478368000071 ], [ -121.935312908999947, 49.166998780000021 ], [ -121.933068331999948, 49.167461455000122 ], [ -121.93292608199998, 49.167486604000082 ], [ -121.931830181999942, 49.167655853000056 ], [ -121.928979368999975, 49.168181440000126 ], [ -121.925417685999918, 49.168799786000136 ], [ -121.923052382999927, 49.16924991200009 ], [ -121.92195557099997, 49.169390369000041 ], [ -121.920419167, 49.169527721000058 ], [ -121.918447210999943, 49.169627766000062 ], [ -121.918162158999934, 49.169625103000122 ], [ -121.9179984099999, 49.169724406000057 ], [ -121.917999228, 49.16948910100006 ], [ -121.917999954, 49.169282147000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175777584", "BldgCostT": "120698334", "sL_LossRatio": "0.841631266189708", "sL_AssetLoss": "655123", "sL_BldgLoss": "551372", "sL_StrLoss": "319701", "sL_NStrLoss": "231671", "sL_ContLoss": "103751", "geom_point": "0101000020E61000009362DBFDC57B5EC02E1D205687954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939547683999976, 49.166365838000132 ], [ -121.939919991999943, 49.166297989000078 ], [ -121.939966884999947, 49.169011795000088 ], [ -121.937487588999929, 49.169041793000069 ], [ -121.935335219999928, 49.169068699000086 ], [ -121.933632013999969, 49.169089086000014 ], [ -121.932361398999944, 49.169104202000035 ], [ -121.93157159499998, 49.169114007000069 ], [ -121.929974126999952, 49.169133898000034 ], [ -121.929143104, 49.169143904000073 ], [ -121.928377973999957, 49.169152802000092 ], [ -121.926839608999984, 49.169171306000109 ], [ -121.925406193999947, 49.169197219000097 ], [ -121.924617051999974, 49.169220922000122 ], [ -121.923759517999926, 49.169246695000055 ], [ -121.921727607999955, 49.169524891000023 ], [ -121.920168502999985, 49.169669614000028 ], [ -121.919048597999947, 49.169719092000093 ], [ -121.9179984099999, 49.169724406000057 ], [ -121.918162158999934, 49.169625103000122 ], [ -121.918447210999943, 49.169627766000062 ], [ -121.920419167, 49.169527721000058 ], [ -121.92195557099997, 49.169390369000041 ], [ -121.923052382999927, 49.16924991200009 ], [ -121.925417685999918, 49.168799786000136 ], [ -121.928979368999975, 49.168181440000126 ], [ -121.931830181999942, 49.167655853000056 ], [ -121.93292608199998, 49.167486604000082 ], [ -121.933068331999948, 49.167461455000122 ], [ -121.935312908999947, 49.166998780000021 ], [ -121.938766062999946, 49.166478368000071 ], [ -121.939547683999976, 49.166365838000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98901584", "BldgCostT": "66583334", "sL_LossRatio": "0.874022111707011", "sL_AssetLoss": "282113", "sL_BldgLoss": "246573", "sL_StrLoss": "169689", "sL_NStrLoss": "76884", "sL_ContLoss": "35540", "geom_point": "0101000020E61000001E4573F0CE7B5EC003323B8BDE954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935335219999928, 49.169068699000086 ], [ -121.937487588999929, 49.169041793000069 ], [ -121.937495103999979, 49.170290820000034 ], [ -121.937511093999916, 49.172476891000038 ], [ -121.935368881000016, 49.172495195000081 ], [ -121.935370005, 49.172701704000069 ], [ -121.93302730399995, 49.172705202000039 ], [ -121.931583570999948, 49.172707399000096 ], [ -121.93157159499998, 49.169114007000069 ], [ -121.932361398999944, 49.169104202000035 ], [ -121.933632013999969, 49.169089086000014 ], [ -121.935335219999928, 49.169068699000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34535333", "BldgCostT": "21983333", "sL_LossRatio": "0.778980334361903", "sL_AssetLoss": "108565", "sL_BldgLoss": "84570", "sL_StrLoss": "49371", "sL_NStrLoss": "35199", "sL_ContLoss": "23995", "geom_point": "0101000020E610000034E28752147C5EC05108C304DE954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.937511093999916, 49.172476891000038 ], [ -121.937495103999979, 49.170290820000034 ], [ -121.937487588999929, 49.169041793000069 ], [ -121.939966884999947, 49.169011795000088 ], [ -121.939981797999977, 49.171558511000072 ], [ -121.939985781999937, 49.172453993000033 ], [ -121.93998911599999, 49.172652404000132 ], [ -121.937515319999974, 49.172648407000018 ], [ -121.937511093999916, 49.172476891000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "375301780", "BldgCostT": "253803602", "sL_LossRatio": "0.826883865605591", "sL_AssetLoss": "682201", "sL_BldgLoss": "564101", "sL_StrLoss": "285555", "sL_NStrLoss": "278546", "sL_ContLoss": "118100", "geom_point": "0101000020E6100000419437D9697C5EC049F5F81887964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939439691999922, 49.175955904000055 ], [ -121.940005199999959, 49.175718501000077 ], [ -121.942782326000014, 49.174560996000068 ], [ -121.944039781999933, 49.174067393000023 ], [ -121.945305419999912, 49.173482193000076 ], [ -121.945683595999967, 49.173330503000081 ], [ -121.94778600699999, 49.172495486000052 ], [ -121.948091024999982, 49.173056909000131 ], [ -121.948522800999953, 49.173848591000116 ], [ -121.945681209999961, 49.174521388000066 ], [ -121.945700002999942, 49.174935102000056 ], [ -121.945711398999961, 49.176140890000163 ], [ -121.945835298999967, 49.176184404000047 ], [ -121.946144390999933, 49.176179804000107 ], [ -121.947940596999956, 49.176166303000059 ], [ -121.947946103000021, 49.177598186000132 ], [ -121.945721284999962, 49.177600100000056 ], [ -121.945726511999936, 49.178060099000056 ], [ -121.944546198, 49.178060705000142 ], [ -121.94328640199997, 49.178060088000038 ], [ -121.941972925999906, 49.178062007000044 ], [ -121.940799586999972, 49.178061010000093 ], [ -121.939783910999921, 49.17806239600003 ], [ -121.939655690000023, 49.178116193000065 ], [ -121.939649493999966, 49.176726588000058 ], [ -121.939619314999945, 49.176460395000106 ], [ -121.939439691999922, 49.175955904000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "446127783", "BldgCostT": "305845546", "sL_LossRatio": "0.863981267377469", "sL_AssetLoss": "820387", "sL_BldgLoss": "708799", "sL_StrLoss": "342466", "sL_NStrLoss": "366333", "sL_ContLoss": "111588", "geom_point": "0101000020E61000006DA74AE7C57C5EC0BFD5D7467E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.947946103000021, 49.177598186000132 ], [ -121.947940596999956, 49.176166303000059 ], [ -121.946144390999933, 49.176179804000107 ], [ -121.945835298999967, 49.176184404000047 ], [ -121.945711398999961, 49.176140890000163 ], [ -121.945700002999942, 49.174935102000056 ], [ -121.945681209999961, 49.174521388000066 ], [ -121.948522800999953, 49.173848591000116 ], [ -121.948946687999936, 49.174621901000123 ], [ -121.950749703999989, 49.174198305000068 ], [ -121.951732705999987, 49.173973009000093 ], [ -121.952602292999956, 49.173772211000092 ], [ -121.952603012999958, 49.174661983000043 ], [ -121.952597720999975, 49.175195592000122 ], [ -121.952596853999935, 49.17560304400007 ], [ -121.952596374, 49.175844576000038 ], [ -121.952595796999958, 49.176115104000104 ], [ -121.952594807999944, 49.177040113000018 ], [ -121.952590686999955, 49.177591699000068 ], [ -121.950675995999958, 49.17759459500013 ], [ -121.947946103000021, 49.177598186000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "460125257", "BldgCostT": "304002473", "sL_LossRatio": "0.806656775700614", "sL_AssetLoss": "728611", "sL_BldgLoss": "587739", "sL_StrLoss": "255406", "sL_NStrLoss": "332333", "sL_ContLoss": "140872", "geom_point": "0101000020E6100000086AF1EFD47C5EC04A60D78220964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.952026498999913, 49.17119899500004 ], [ -121.952607479999969, 49.170908896000128 ], [ -121.952608500999958, 49.17105410100006 ], [ -121.9526082, 49.171562606000073 ], [ -121.952606488999919, 49.171990813000015 ], [ -121.952608581999954, 49.172125205000093 ], [ -121.952607712999978, 49.172875299000083 ], [ -121.952602292999956, 49.173772211000092 ], [ -121.951732705999987, 49.173973009000093 ], [ -121.950749703999989, 49.174198305000068 ], [ -121.948946687999936, 49.174621901000123 ], [ -121.948522800999953, 49.173848591000116 ], [ -121.948091024999982, 49.173056909000131 ], [ -121.94778600699999, 49.172495486000052 ], [ -121.94901570499999, 49.172004394000076 ], [ -121.949453421999962, 49.171831608000055 ], [ -121.949606989999921, 49.171769689000094 ], [ -121.95042208299995, 49.171580397000078 ], [ -121.952026498999913, 49.17119899500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205394241", "BldgCostT": "124961932", "sL_LossRatio": "0.733539649020607", "sL_AssetLoss": "549320", "sL_BldgLoss": "402948", "sL_StrLoss": "213200", "sL_NStrLoss": "189748", "sL_ContLoss": "146372", "geom_point": "0101000020E610000028B001F0137D5EC077F209764F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.9526082, 49.171562606000073 ], [ -121.952608500999958, 49.17105410100006 ], [ -121.954143779999967, 49.171544598000025 ], [ -121.954916378999926, 49.171780091000102 ], [ -121.955466188999964, 49.171958511000071 ], [ -121.957163409999936, 49.172512785000038 ], [ -121.957530221999946, 49.172633803000089 ], [ -121.956910208999915, 49.17345169900004 ], [ -121.955568001999936, 49.175202700000099 ], [ -121.955330496, 49.175520104000057 ], [ -121.955319182999972, 49.176121909000102 ], [ -121.955297692999963, 49.177567297000103 ], [ -121.952590686999955, 49.177591699000068 ], [ -121.952594807999944, 49.177040113000018 ], [ -121.952595796999958, 49.176115104000104 ], [ -121.952596374, 49.175844576000038 ], [ -121.952596853999935, 49.17560304400007 ], [ -121.952597720999975, 49.175195592000122 ], [ -121.952603012999958, 49.174661983000043 ], [ -121.952602292999956, 49.173772211000092 ], [ -121.952607712999978, 49.172875299000083 ], [ -121.952608581999954, 49.172125205000093 ], [ -121.952606488999919, 49.171990813000015 ], [ -121.9526082, 49.171562606000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155136917", "BldgCostT": "106486667", "sL_LossRatio": "0.889818743960529", "sL_AssetLoss": "375446.8", "sL_BldgLoss": "334079.6", "sL_StrLoss": "206537.6", "sL_NStrLoss": "127542", "sL_ContLoss": "41367.2", "geom_point": "0101000020E6100000D1B9705A4F7D5EC0CBB1696374964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.956910208999915, 49.17345169900004 ], [ -121.957530221999946, 49.172633803000089 ], [ -121.959232802999949, 49.173189988000075 ], [ -121.959745302999977, 49.173355301000043 ], [ -121.960990207999942, 49.173762703000101 ], [ -121.960371813999927, 49.174561702000176 ], [ -121.960089207999928, 49.175002800000094 ], [ -121.960082820999958, 49.17523428400002 ], [ -121.96006349799994, 49.17613508600008 ], [ -121.960038109999942, 49.177578489000076 ], [ -121.957560807000021, 49.177582001000097 ], [ -121.955297692999963, 49.177567297000103 ], [ -121.955319182999972, 49.176121909000102 ], [ -121.955330496, 49.175520104000057 ], [ -121.955568001999936, 49.175202700000099 ], [ -121.956910208999915, 49.17345169900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "707747309", "BldgCostT": "459459892", "sL_LossRatio": "0.732407210145299", "sL_AssetLoss": "1375778.1", "sL_BldgLoss": "1007629.8", "sL_StrLoss": "397011.8", "sL_NStrLoss": "610618", "sL_ContLoss": "368148.3", "geom_point": "0101000020E6100000AF5CF289467D5EC0D787EDD5E4954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.954326212999916, 49.168819607000096 ], [ -121.955073608999925, 49.168382491000088 ], [ -121.956048197999934, 49.169055634000124 ], [ -121.956790604999966, 49.169307094000082 ], [ -121.958984806999922, 49.170029683000088 ], [ -121.961096592999951, 49.170723800000069 ], [ -121.962887181999974, 49.171308502000073 ], [ -121.962345197, 49.171986894000057 ], [ -121.961688600999963, 49.172863892000123 ], [ -121.960990207999942, 49.173762703000101 ], [ -121.959745302999977, 49.173355301000043 ], [ -121.959232802999949, 49.173189988000075 ], [ -121.957530221999946, 49.172633803000089 ], [ -121.957163409999936, 49.172512785000038 ], [ -121.955466188999964, 49.171958511000071 ], [ -121.954916378999926, 49.171780091000102 ], [ -121.954143779999967, 49.171544598000025 ], [ -121.952608500999958, 49.17105410100006 ], [ -121.952607479999969, 49.170908896000128 ], [ -121.952603973999942, 49.170081986000056 ], [ -121.952601617999946, 49.168928802000018 ], [ -121.953930800999913, 49.16890118600007 ], [ -121.954326212999916, 49.168819607000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139963417", "BldgCostT": "93261667", "sL_LossRatio": "0.868756755847357", "sL_AssetLoss": "475514", "sL_BldgLoss": "413106", "sL_StrLoss": "279078", "sL_NStrLoss": "134028", "sL_ContLoss": "62408", "geom_point": "0101000020E6100000A2D64D8CD97D5EC0DF50197B06964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.964849946999891, 49.168696385000018 ], [ -121.965490390999918, 49.167843992000023 ], [ -121.965974798999923, 49.167954110000011 ], [ -121.967289187999981, 49.168271113000095 ], [ -121.970250702999948, 49.168991516000098 ], [ -121.970632208999945, 49.169101399000041 ], [ -121.971193494999937, 49.169353204000075 ], [ -121.969827095999932, 49.17056880300008 ], [ -121.969606192999947, 49.170821989000117 ], [ -121.969513289999924, 49.171054695000123 ], [ -121.969479483999962, 49.171317610000123 ], [ -121.969479564999958, 49.17197078700012 ], [ -121.96947960199999, 49.172266097000062 ], [ -121.969475309999893, 49.173502006000049 ], [ -121.969473583999942, 49.174549495000115 ], [ -121.969471904000017, 49.175359988000039 ], [ -121.969471841999933, 49.175403449000093 ], [ -121.969471155999969, 49.175880245000023 ], [ -121.96947017, 49.176534658000094 ], [ -121.96804530799993, 49.176064797000024 ], [ -121.965433482999927, 49.175215905000108 ], [ -121.963874901999958, 49.174706686000036 ], [ -121.962914193999964, 49.174392907000033 ], [ -121.960990207999942, 49.173762703000101 ], [ -121.961688600999963, 49.172863892000123 ], [ -121.962345197, 49.171986894000057 ], [ -121.962887181999974, 49.171308502000073 ], [ -121.96472866399999, 49.16885779600004 ], [ -121.964849946999891, 49.168696385000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "451472417", "BldgCostT": "309930682", "sL_LossRatio": "0.852510615893509", "sL_AssetLoss": "698952", "sL_BldgLoss": "595864", "sL_StrLoss": "261741", "sL_NStrLoss": "334123", "sL_ContLoss": "103088", "geom_point": "0101000020E6100000D38F8653A67D5EC0A1E6B355AC954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.961096592999951, 49.170723800000069 ], [ -121.961739874999964, 49.169873398000057 ], [ -121.962894687999921, 49.168347997000119 ], [ -121.963618293999971, 49.167394211000051 ], [ -121.964842911999966, 49.167688433000087 ], [ -121.965490390999918, 49.167843992000023 ], [ -121.964849946999891, 49.168696385000018 ], [ -121.96472866399999, 49.16885779600004 ], [ -121.962887181999974, 49.171308502000073 ], [ -121.961096592999951, 49.170723800000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343884645", "BldgCostT": "232471524", "sL_LossRatio": "0.853403082731425", "sL_AssetLoss": "625095", "sL_BldgLoss": "533458", "sL_StrLoss": "252152", "sL_NStrLoss": "281306", "sL_ContLoss": "91637", "geom_point": "0101000020E6100000203558FE9D7D5EC02CDCD1832B954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.96060489599995, 49.164099413000038 ], [ -121.96083678899997, 49.162820640000071 ], [ -121.96212241099991, 49.162993310000111 ], [ -121.963328199999964, 49.163152192000091 ], [ -121.964352302999941, 49.163286088000078 ], [ -121.964211012999954, 49.164250102000082 ], [ -121.963894982999989, 49.165914305000086 ], [ -121.963825405999955, 49.166273197000109 ], [ -121.965941634999979, 49.166440381000079 ], [ -121.966214111999989, 49.166461908000038 ], [ -121.965974798999923, 49.167954110000011 ], [ -121.965490390999918, 49.167843992000023 ], [ -121.964842911999966, 49.167688433000087 ], [ -121.963618293999971, 49.167394211000051 ], [ -121.961364494999955, 49.166851611000055 ], [ -121.960155119999953, 49.166559206000038 ], [ -121.96060489599995, 49.164099413000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205089417", "BldgCostT": "138911667", "sL_LossRatio": "0.88439198760962", "sL_AssetLoss": "528087.1", "sL_BldgLoss": "467036", "sL_StrLoss": "291316", "sL_NStrLoss": "175720", "sL_ContLoss": "61051.1", "geom_point": "0101000020E6100000FDAF83B5B77D5EC0B1876A0896964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.963971793999974, 49.17850409700003 ], [ -121.963987515999946, 49.177643688000096 ], [ -121.960038109999942, 49.177578489000076 ], [ -121.96006349799994, 49.17613508600008 ], [ -121.960082820999958, 49.17523428400002 ], [ -121.960089207999928, 49.175002800000094 ], [ -121.960371813999927, 49.174561702000176 ], [ -121.960990207999942, 49.173762703000101 ], [ -121.962914193999964, 49.174392907000033 ], [ -121.963874901999958, 49.174706686000036 ], [ -121.965433482999927, 49.175215905000108 ], [ -121.96804530799993, 49.176064797000024 ], [ -121.96947017, 49.176534658000094 ], [ -121.969776648999968, 49.17673301300006 ], [ -121.969753663999882, 49.176824173000092 ], [ -121.969730711, 49.176915321000124 ], [ -121.969707726999971, 49.177006481000085 ], [ -121.969684758999961, 49.177097664000016 ], [ -121.969661772999956, 49.177188824000034 ], [ -121.969638786999923, 49.177279983000112 ], [ -121.969615800999918, 49.177371144000091 ], [ -121.969592830999943, 49.177462327000065 ], [ -121.969569826999987, 49.177553464000034 ], [ -121.969546858999962, 49.177644647000115 ], [ -121.969523907999985, 49.177735796000043 ], [ -121.969500918999984, 49.177826956000025 ], [ -121.969477932999922, 49.17791811700009 ], [ -121.96945496399999, 49.178009300000078 ], [ -121.969429705999957, 49.178109396000124 ], [ -121.968964989999975, 49.178213620000129 ], [ -121.966991413999935, 49.178224959000048 ], [ -121.966330165999949, 49.178312537000068 ], [ -121.964499111999956, 49.178383971000066 ], [ -121.963971793999974, 49.17850409700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123354750", "BldgCostT": "83865000", "sL_LossRatio": "0.886801714162184", "sL_AssetLoss": "393195", "sL_BldgLoss": "348686", "sL_StrLoss": "234560", "sL_NStrLoss": "114126", "sL_ContLoss": "44509", "geom_point": "0101000020E61000000D86632B627D5EC02C4DC60813974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.952554961999979, 49.182288922000083 ], [ -121.952565687999964, 49.182209602000064 ], [ -121.95257869699999, 49.181667298000029 ], [ -121.954446299999958, 49.181655504000084 ], [ -121.954443851999926, 49.181240715000051 ], [ -121.954435799999928, 49.179884389000073 ], [ -121.954951789999924, 49.179884892000103 ], [ -121.955647611999922, 49.179884894000097 ], [ -121.956144403999943, 49.179884612000144 ], [ -121.956834694999927, 49.179885305 ], [ -121.957571599999966, 49.179885890000044 ], [ -121.958756109000021, 49.179885295000133 ], [ -121.959998001999978, 49.179885904000102 ], [ -121.960007790999953, 49.179220897000093 ], [ -121.960022082999984, 49.178473196000013 ], [ -121.960038109999942, 49.177578489000076 ], [ -121.963987515999946, 49.177643688000096 ], [ -121.963971793999974, 49.17850409700003 ], [ -121.96402464699996, 49.179316307000114 ], [ -121.964059977999938, 49.179619722000076 ], [ -121.963921209999938, 49.179581906000053 ], [ -121.963632283999956, 49.179606097000061 ], [ -121.96313398499997, 49.17985389200004 ], [ -121.962682006999927, 49.18047061000005 ], [ -121.962681158999942, 49.180471238000045 ], [ -121.962572974999944, 49.180470265000068 ], [ -121.962437741999963, 49.180618228000093 ], [ -121.962437037999962, 49.180651849000036 ], [ -121.961985090999974, 49.180986213000054 ], [ -121.961929787999964, 49.181004218000048 ], [ -121.96186668899999, 49.181003651 ], [ -121.961757104999961, 49.181060438000053 ], [ -121.961101413999955, 49.181273905000076 ], [ -121.960994070999988, 49.181334201000048 ], [ -121.960774470999922, 49.181412637000044 ], [ -121.96077352099995, 49.181458089000081 ], [ -121.960221948999987, 49.181767913 ], [ -121.959808397999964, 49.182000205000051 ], [ -121.959533541000013, 49.182062118000019 ], [ -121.959239441999941, 49.182059468000034 ], [ -121.958699544999916, 49.182203878000045 ], [ -121.958699440999979, 49.182208809000066 ], [ -121.95670408699999, 49.182215304000088 ], [ -121.95611207099995, 49.182301106000075 ], [ -121.955965578999979, 49.182299782000079 ], [ -121.955963589999925, 49.182322625000019 ], [ -121.955711994999959, 49.182359089000094 ], [ -121.954998890999917, 49.182316410000112 ], [ -121.953268307999949, 49.182390508000019 ], [ -121.9525698, 49.182312103000058 ], [ -121.952552375999971, 49.18230804800001 ], [ -121.952554961999979, 49.182288922000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91051623", "BldgCostT": "62058706", "sL_LossRatio": "0.903683028061358", "sL_AssetLoss": "247921", "sL_BldgLoss": "224042", "sL_StrLoss": "159832", "sL_NStrLoss": "64210", "sL_ContLoss": "23879", "geom_point": "0101000020E61000009C0F4A90387D5EC0F154C9F8DE964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.953790826999963, 49.179883606000097 ], [ -121.953807909999909, 49.178741898000027 ], [ -121.952586806999989, 49.178739300000075 ], [ -121.952590686999955, 49.177591699000068 ], [ -121.955297692999963, 49.177567297000103 ], [ -121.957560807000021, 49.177582001000097 ], [ -121.960038109999942, 49.177578489000076 ], [ -121.960022082999984, 49.178473196000013 ], [ -121.960007790999953, 49.179220897000093 ], [ -121.959998001999978, 49.179885904000102 ], [ -121.958756109000021, 49.179885295000133 ], [ -121.957571599999966, 49.179885890000044 ], [ -121.956834694999927, 49.179885305 ], [ -121.956144403999943, 49.179884612000144 ], [ -121.955647611999922, 49.179884894000097 ], [ -121.954951789999924, 49.179884892000103 ], [ -121.954435799999928, 49.179884389000073 ], [ -121.953790826999963, 49.179883606000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117788333", "BldgCostT": "80288333", "sL_LossRatio": "0.879248058432995", "sL_AssetLoss": "354868", "sL_BldgLoss": "312017", "sL_StrLoss": "215839", "sL_NStrLoss": "96178", "sL_ContLoss": "42851", "geom_point": "0101000020E610000025CE8237C17C5EC097592138F0964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.952579408999966, 49.181580796000041 ], [ -121.95258260599999, 49.180456689000081 ], [ -121.950779986999962, 49.180463704000026 ], [ -121.949986483999965, 49.180466311000089 ], [ -121.946503813999954, 49.180475892000096 ], [ -121.94651528299994, 49.179667593000055 ], [ -121.944526219999943, 49.179657595000108 ], [ -121.943291484999918, 49.179651617000054 ], [ -121.94328640199997, 49.178060088000038 ], [ -121.944546198, 49.178060705000142 ], [ -121.945726511999936, 49.178060099000056 ], [ -121.945721284999962, 49.177600100000056 ], [ -121.947946103000021, 49.177598186000132 ], [ -121.950675995999958, 49.17759459500013 ], [ -121.952590686999955, 49.177591699000068 ], [ -121.952586806999989, 49.178739300000075 ], [ -121.953807909999909, 49.178741898000027 ], [ -121.953790826999963, 49.179883606000097 ], [ -121.954435799999928, 49.179884389000073 ], [ -121.954443851999926, 49.181240715000051 ], [ -121.954446299999958, 49.181655504000084 ], [ -121.95257869699999, 49.181667298000029 ], [ -121.952579408999966, 49.181580796000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121601917", "BldgCostT": "83391667", "sL_LossRatio": "0.916332691924889", "sL_AssetLoss": "331562", "sL_BldgLoss": "303821.1", "sL_StrLoss": "219808.1", "sL_NStrLoss": "84013", "sL_ContLoss": "27740.9", "geom_point": "0101000020E610000019BF7483767C5EC0E8BD10F616974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949249716999972, 49.181652705000054 ], [ -121.947948296, 49.181533089000027 ], [ -121.944889704000019, 49.181451889000051 ], [ -121.94123790499999, 49.181580087000128 ], [ -121.93977385, 49.18175995900004 ], [ -121.939773555999949, 49.181754419000121 ], [ -121.93967911299994, 49.18138170000001 ], [ -121.939636805999939, 49.181159185000055 ], [ -121.939639596999925, 49.180498510000064 ], [ -121.939648713999972, 49.179248314000077 ], [ -121.939655690000023, 49.178116193000065 ], [ -121.939783910999921, 49.17806239600003 ], [ -121.940799586999972, 49.178061010000093 ], [ -121.941972925999906, 49.178062007000044 ], [ -121.94328640199997, 49.178060088000038 ], [ -121.943291484999918, 49.179651617000054 ], [ -121.944526219999943, 49.179657595000108 ], [ -121.94651528299994, 49.179667593000055 ], [ -121.946503813999954, 49.180475892000096 ], [ -121.949986483999965, 49.180466311000089 ], [ -121.950779986999962, 49.180463704000026 ], [ -121.95258260599999, 49.180456689000081 ], [ -121.952579408999966, 49.181580796000041 ], [ -121.95257869699999, 49.181667298000029 ], [ -121.952565687999964, 49.182209602000064 ], [ -121.952554961999979, 49.182288922000083 ], [ -121.952552375999971, 49.18230804800001 ], [ -121.951205402999975, 49.181994511000035 ], [ -121.950519007999929, 49.181961788000045 ], [ -121.949249716999972, 49.181652705000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113272166", "BldgCostT": "74906666", "sL_LossRatio": "0.895484856576008", "sL_AssetLoss": "295871", "sL_BldgLoss": "264948", "sL_StrLoss": "183116", "sL_NStrLoss": "81832", "sL_ContLoss": "30923", "geom_point": "0101000020E61000003EEFCEF34A7C5EC0011F0FBF93974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939835915999964, 49.183073587000074 ], [ -121.939830515999944, 49.18235030500005 ], [ -121.938571693999947, 49.182509289000087 ], [ -121.937916316999988, 49.182627004000089 ], [ -121.937373709999918, 49.18275799000002 ], [ -121.936133990999977, 49.18328011300008 ], [ -121.935703368999967, 49.183504001000102 ], [ -121.935426705999987, 49.183407852000052 ], [ -121.936740684999933, 49.182725094000027 ], [ -121.936925886, 49.182403292000124 ], [ -121.93706113499999, 49.182405885000058 ], [ -121.937817798999902, 49.182420393 ], [ -121.940502887999926, 49.181987399000015 ], [ -121.941904102, 49.181892011000066 ], [ -121.944744593999985, 49.181882001000098 ], [ -121.947488382999964, 49.181943299000068 ], [ -121.948436313999977, 49.182020808000111 ], [ -121.948437655999939, 49.182042888000119 ], [ -121.948454315000021, 49.182187498000111 ], [ -121.946531106999956, 49.182128584000104 ], [ -121.944424877999921, 49.182090700000067 ], [ -121.94443590199991, 49.185218689000052 ], [ -121.944443997999983, 49.186776978000104 ], [ -121.942219488999939, 49.186786890000072 ], [ -121.939853090999975, 49.186802305000079 ], [ -121.939848902999984, 49.186033991000052 ], [ -121.939846406999962, 49.185309005000086 ], [ -121.939839406999937, 49.184525294000117 ], [ -121.939836589, 49.183772293000075 ], [ -121.939835915999964, 49.183073587000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122578250", "BldgCostT": "83120000", "sL_LossRatio": "0.883136121136644", "sL_AssetLoss": "352184.1", "sL_BldgLoss": "311026.5", "sL_StrLoss": "220587.5", "sL_NStrLoss": "90439", "sL_ContLoss": "41157.6", "geom_point": "0101000020E6100000D9ACB8409B7C5EC0A9E89B76A9974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.94443590199991, 49.185218689000052 ], [ -121.944424877999921, 49.182090700000067 ], [ -121.946531106999956, 49.182128584000104 ], [ -121.948454315000021, 49.182187498000111 ], [ -121.949087599999942, 49.18224469200004 ], [ -121.949847284999947, 49.182377800000012 ], [ -121.949852484999937, 49.182791942000073 ], [ -121.949855954999919, 49.183070904000076 ], [ -121.94986240599998, 49.183589198000085 ], [ -121.949924390999911, 49.183665499000021 ], [ -121.950058102999947, 49.183706592000085 ], [ -121.950980282999978, 49.183723192000123 ], [ -121.951075283999941, 49.183688900000057 ], [ -121.951098472999945, 49.183663245000112 ], [ -121.951140607999946, 49.183616593000039 ], [ -121.95116619599996, 49.182645606000058 ], [ -121.951750987999972, 49.182818195000031 ], [ -121.952092712999928, 49.182960790000017 ], [ -121.952461609999943, 49.182979214000113 ], [ -121.952458826999987, 49.18334585000008 ], [ -121.95244998599992, 49.184498807000061 ], [ -121.948484488999938, 49.184485799000072 ], [ -121.948489100999922, 49.184778990000048 ], [ -121.948410016999901, 49.185244792000063 ], [ -121.948416793999954, 49.186346793000077 ], [ -121.948422807999989, 49.187065597000057 ], [ -121.948426905999966, 49.187805090000083 ], [ -121.945662338999952, 49.187813090000112 ], [ -121.942245612999983, 49.187822896000071 ], [ -121.942219488999939, 49.186786890000072 ], [ -121.944443997999983, 49.186776978000104 ], [ -121.94443590199991, 49.185218689000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102201250", "BldgCostT": "66775000", "sL_LossRatio": "0.866877453118186", "sL_AssetLoss": "297172.8", "sL_BldgLoss": "257612.4", "sL_StrLoss": "169816.4", "sL_NStrLoss": "87796", "sL_ContLoss": "39560.4", "geom_point": "0101000020E61000000F4EAF5AFA7C5EC0378CA3EEDA974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.952502692999985, 49.188112236000038 ], [ -121.952498106999897, 49.187789595000034 ], [ -121.948426905999966, 49.187805090000083 ], [ -121.948422807999989, 49.187065597000057 ], [ -121.948416793999954, 49.186346793000077 ], [ -121.948410016999901, 49.185244792000063 ], [ -121.948489100999922, 49.184778990000048 ], [ -121.948484488999938, 49.184485799000072 ], [ -121.95244998599992, 49.184498807000061 ], [ -121.952458826999987, 49.18334585000008 ], [ -121.952461609999943, 49.182979214000113 ], [ -121.952092712999928, 49.182960790000017 ], [ -121.951750987999972, 49.182818195000031 ], [ -121.95116619599996, 49.182645606000058 ], [ -121.951140607999946, 49.183616593000039 ], [ -121.951098472999945, 49.183663245000112 ], [ -121.951075283999941, 49.183688900000057 ], [ -121.950980282999978, 49.183723192000123 ], [ -121.950058102999947, 49.183706592000085 ], [ -121.949924390999911, 49.183665499000021 ], [ -121.94986240599998, 49.183589198000085 ], [ -121.949855954999919, 49.183070904000076 ], [ -121.949852484999937, 49.182791942000073 ], [ -121.949847284999947, 49.182377800000012 ], [ -121.949087599999942, 49.18224469200004 ], [ -121.948454315000021, 49.182187498000111 ], [ -121.948437655999939, 49.182042888000119 ], [ -121.948436313999977, 49.182020808000111 ], [ -121.949212800999987, 49.182084293000116 ], [ -121.952001490999933, 49.182622601000084 ], [ -121.952343991999967, 49.182625388000105 ], [ -121.952502775999918, 49.182674810000023 ], [ -121.952998517999958, 49.182829104000113 ], [ -121.953382292999962, 49.18285050300009 ], [ -121.954118324999968, 49.18313670200007 ], [ -121.954855017999961, 49.183260600000082 ], [ -121.954952420000012, 49.183243604000033 ], [ -121.954824278, 49.183133133000126 ], [ -121.956612308999951, 49.183577311000072 ], [ -121.956610676000011, 49.183654944000054 ], [ -121.957008402999932, 49.183658537000021 ], [ -121.957022235999929, 49.183660879000044 ], [ -121.957005268999978, 49.184468108000068 ], [ -121.956593656999971, 49.184464389000063 ], [ -121.956565285999986, 49.185813464000013 ], [ -121.956200502999948, 49.185810167000042 ], [ -121.956198711999917, 49.185830749000068 ], [ -121.9565384199999, 49.185843508000076 ], [ -121.956392473999927, 49.187519965000043 ], [ -121.955961438999964, 49.187570749000066 ], [ -121.954954394999916, 49.187895589000128 ], [ -121.953910261999965, 49.188432415000172 ], [ -121.953488149999913, 49.188929644000034 ], [ -121.953139657999941, 49.189550014000126 ], [ -121.952940579999947, 49.189986922000102 ], [ -121.953205209999936, 49.190815406000127 ], [ -121.953916979000013, 49.191553034 ], [ -121.954461944999949, 49.191962007000093 ], [ -121.955214903999945, 49.192464019000127 ], [ -121.955355505999961, 49.192518345000138 ], [ -121.955243563999971, 49.192611663000115 ], [ -121.954794318999987, 49.19298260300004 ], [ -121.95458299199997, 49.192977097 ], [ -121.952572412000038, 49.193001588000037 ], [ -121.952544015999976, 49.191009918000127 ], [ -121.952507700999917, 49.188463125000098 ], [ -121.952502692999985, 49.188112236000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4170500", "BldgCostT": "2195000", "sL_LossRatio": "0.485627836611195", "sL_AssetLoss": "15864", "sL_BldgLoss": "7704", "sL_StrLoss": "1114", "sL_NStrLoss": "6590", "sL_ContLoss": "8160", "geom_point": "0101000020E610000051BB8013A17B5EC0D95B4E3287974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.934561691999988, 49.182566196000039 ], [ -121.934986048999917, 49.183081135000094 ], [ -121.934741120999917, 49.183166602000014 ], [ -121.932851482999922, 49.184264702000135 ], [ -121.92975744099999, 49.185779454000048 ], [ -121.928346179999906, 49.184561144000064 ], [ -121.92924771899996, 49.184096635000039 ], [ -121.931010938999961, 49.183188009000084 ], [ -121.933601326999934, 49.181829746000105 ], [ -121.934561691999988, 49.182566196000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137218917", "BldgCostT": "91421667", "sL_LossRatio": "0.894153626955261", "sL_AssetLoss": "359351", "sL_BldgLoss": "321315", "sL_StrLoss": "227882", "sL_NStrLoss": "93433", "sL_ContLoss": "38036", "geom_point": "0101000020E61000003251EF6F717B5EC05FDFC12E8E974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.926961207999952, 49.183657043000032 ], [ -121.927036491999942, 49.183470902000089 ], [ -121.927559294999952, 49.18353580600008 ], [ -121.927655185, 49.183506096000045 ], [ -121.927769595999948, 49.183375096000034 ], [ -121.928479896999974, 49.183023305000077 ], [ -121.928629600999926, 49.18299019600002 ], [ -121.928817904999917, 49.183002793000071 ], [ -121.928971291, 49.182976101000087 ], [ -121.930789298999969, 49.182073793000022 ], [ -121.930827191000034, 49.181453198000071 ], [ -121.931768012999981, 49.181085685000099 ], [ -121.932328387999959, 49.180876098000105 ], [ -121.934858998999928, 49.179922207000061 ], [ -121.935617602000022, 49.180773082000094 ], [ -121.93637319199992, 49.181628410000052 ], [ -121.936526604, 49.181803709000079 ], [ -121.936858344, 49.182177430000088 ], [ -121.936898593999928, 49.182222756000066 ], [ -121.936921394999942, 49.182248450000046 ], [ -121.936583785999971, 49.182319204000088 ], [ -121.935847003999982, 49.182780703000041 ], [ -121.934986048999917, 49.183081135000094 ], [ -121.934561691999988, 49.182566196000039 ], [ -121.933601326999934, 49.181829746000105 ], [ -121.931010938999961, 49.183188009000084 ], [ -121.92924771899996, 49.184096635000039 ], [ -121.928346179999906, 49.184561144000064 ], [ -121.92975744099999, 49.185779454000048 ], [ -121.928993983999973, 49.186153191000102 ], [ -121.926304613999932, 49.186794090000085 ], [ -121.925134492999959, 49.186936513000077 ], [ -121.922318299999915, 49.187098890000087 ], [ -121.921404279999976, 49.186848192000078 ], [ -121.92025389099993, 49.186720103000042 ], [ -121.919120466, 49.18666630400007 ], [ -121.919227708999955, 49.186612093000043 ], [ -121.919228022999945, 49.186611988000074 ], [ -121.919618641999989, 49.186477547000031 ], [ -121.92078368199995, 49.186215801000081 ], [ -121.921153437, 49.186099457000068 ], [ -121.921694203999891, 49.185929308 ], [ -121.923976271999905, 49.185214422000108 ], [ -121.924098867999987, 49.185176028000029 ], [ -121.924179718999966, 49.185150697000076 ], [ -121.924748636999965, 49.184966731 ], [ -121.92477614199997, 49.184957831000062 ], [ -121.925734230999922, 49.184648037000066 ], [ -121.926268976999964, 49.184475104000057 ], [ -121.926539123999987, 49.184272573000094 ], [ -121.926787598999937, 49.184086310000069 ], [ -121.926961207999952, 49.183657043000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249768334", "BldgCostT": "170778334", "sL_LossRatio": "0.862989482978104", "sL_AssetLoss": "525529", "sL_BldgLoss": "453526", "sL_StrLoss": "257510", "sL_NStrLoss": "196016", "sL_ContLoss": "72003", "geom_point": "0101000020E61000006C75EE4DBE7B5EC071D014F021974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.927158603999914, 49.182986909000171 ], [ -121.926948509999974, 49.182173813000063 ], [ -121.926196298999969, 49.181507758000095 ], [ -121.926174088999915, 49.181488089000034 ], [ -121.92617607199999, 49.181477926000085 ], [ -121.926373409999897, 49.18046789100007 ], [ -121.926742515999976, 49.180374504000042 ], [ -121.928349705999892, 49.179858303000067 ], [ -121.929083816999935, 49.180805458000108 ], [ -121.929190588999944, 49.180943204000066 ], [ -121.930317479999957, 49.180612496000037 ], [ -121.930859015999957, 49.180385091000097 ], [ -121.931745082999981, 49.180093099000018 ], [ -121.933976408999911, 49.179218095000081 ], [ -121.934149889999929, 49.179117402000095 ], [ -121.93520661699992, 49.178647911000034 ], [ -121.935727486, 49.178466492000091 ], [ -121.936472595999987, 49.179315092000067 ], [ -121.936820089, 49.1791844050001 ], [ -121.938328709999951, 49.178617003000042 ], [ -121.939655690000023, 49.178116193000065 ], [ -121.939648713999972, 49.179248314000077 ], [ -121.939639596999925, 49.180498510000064 ], [ -121.939636805999939, 49.181159185000055 ], [ -121.93967911299994, 49.18138170000001 ], [ -121.939773555999949, 49.181754419000121 ], [ -121.93977385, 49.18175995900004 ], [ -121.938513298999979, 49.181914813000034 ], [ -121.936921394999942, 49.182248450000046 ], [ -121.936898593999928, 49.182222756000066 ], [ -121.936858344, 49.182177430000088 ], [ -121.936526604, 49.181803709000079 ], [ -121.93637319199992, 49.181628410000052 ], [ -121.935617602000022, 49.180773082000094 ], [ -121.934858998999928, 49.179922207000061 ], [ -121.932328387999959, 49.180876098000105 ], [ -121.931768012999981, 49.181085685000099 ], [ -121.930827191000034, 49.181453198000071 ], [ -121.930789298999969, 49.182073793000022 ], [ -121.928971291, 49.182976101000087 ], [ -121.928817904999917, 49.183002793000071 ], [ -121.928629600999926, 49.18299019600002 ], [ -121.928479896999974, 49.183023305000077 ], [ -121.927769595999948, 49.183375096000034 ], [ -121.927655185, 49.183506096000045 ], [ -121.927559294999952, 49.18353580600008 ], [ -121.927036491999942, 49.183470902000089 ], [ -121.927158603999914, 49.182986909000171 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158116000", "BldgCostT": "103225000", "sL_LossRatio": "0.815228057906952", "sL_AssetLoss": "277990.8", "sL_BldgLoss": "226625.9", "sL_StrLoss": "133507.9", "sL_NStrLoss": "93118", "sL_ContLoss": "51364.9", "geom_point": "0101000020E6100000C44C2697D47B5EC00F409392D8964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.931554789999922, 49.178834498000079 ], [ -121.93300971099994, 49.178346705000088 ], [ -121.933351413999915, 49.178220802000084 ], [ -121.935415512999924, 49.177452091000127 ], [ -121.937858123999931, 49.176543598000123 ], [ -121.939439691999922, 49.175955904000055 ], [ -121.939619314999945, 49.176460395000106 ], [ -121.939649493999966, 49.176726588000058 ], [ -121.939655690000023, 49.178116193000065 ], [ -121.938328709999951, 49.178617003000042 ], [ -121.936820089, 49.1791844050001 ], [ -121.936472595999987, 49.179315092000067 ], [ -121.935727486, 49.178466492000091 ], [ -121.93520661699992, 49.178647911000034 ], [ -121.934149889999929, 49.179117402000095 ], [ -121.933976408999911, 49.179218095000081 ], [ -121.931745082999981, 49.180093099000018 ], [ -121.930859015999957, 49.180385091000097 ], [ -121.930317479999957, 49.180612496000037 ], [ -121.929190588999944, 49.180943204000066 ], [ -121.929083816999935, 49.180805458000108 ], [ -121.928349705999892, 49.179858303000067 ], [ -121.929814111999946, 49.179388101 ], [ -121.931554789999922, 49.178834498000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123213251", "BldgCostT": "78085001", "sL_LossRatio": "0.84280974429956", "sL_AssetLoss": "287109.4", "sL_BldgLoss": "241978.6", "sL_StrLoss": "153218.6", "sL_NStrLoss": "88760", "sL_ContLoss": "45130.8", "geom_point": "0101000020E6100000A2C529A5AD7B5EC07F6BA3119E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.931577381999929, 49.175316405000046 ], [ -121.931576713999974, 49.174619411000073 ], [ -121.932894489999981, 49.174614191000025 ], [ -121.933022888999957, 49.174668708000098 ], [ -121.933128698999937, 49.174714196000139 ], [ -121.935390785999957, 49.174707588000096 ], [ -121.935403686999933, 49.176002806000049 ], [ -121.935415512999924, 49.177452091000127 ], [ -121.933351413999915, 49.178220802000084 ], [ -121.93300971099994, 49.178346705000088 ], [ -121.931554789999922, 49.178834498000079 ], [ -121.929814111999946, 49.179388101 ], [ -121.929876900999943, 49.175303504000084 ], [ -121.931577381999929, 49.175316405000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109484562", "BldgCostT": "70003191", "sL_LossRatio": "0.791307893411364", "sL_AssetLoss": "333544", "sL_BldgLoss": "263936", "sL_StrLoss": "169835", "sL_NStrLoss": "94101", "sL_ContLoss": "69608", "geom_point": "0101000020E610000041EF8D21007C5EC0FF894EBF59964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935370005, 49.172701704000069 ], [ -121.935368881000016, 49.172495195000081 ], [ -121.937511093999916, 49.172476891000038 ], [ -121.937515319999974, 49.172648407000018 ], [ -121.93998911599999, 49.172652404000132 ], [ -121.940005199999959, 49.175718501000077 ], [ -121.939439691999922, 49.175955904000055 ], [ -121.937858123999931, 49.176543598000123 ], [ -121.935415512999924, 49.177452091000127 ], [ -121.935403686999933, 49.176002806000049 ], [ -121.935390785999957, 49.174707588000096 ], [ -121.935370005, 49.172701704000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98445332", "BldgCostT": "66948332", "sL_LossRatio": "0.887085867457966", "sL_AssetLoss": "295614.9", "sL_BldgLoss": "262235.8", "sL_StrLoss": "181174.8", "sL_NStrLoss": "81061", "sL_ContLoss": "33379.1", "geom_point": "0101000020E6100000ACC9BEF1967B5EC00F19C9FD12964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.929876900999943, 49.175303504000084 ], [ -121.929900608999944, 49.173857309000113 ], [ -121.928307794, 49.173869200000127 ], [ -121.928377973999957, 49.169152802000092 ], [ -121.929143104, 49.169143904000073 ], [ -121.929974126999952, 49.169133898000034 ], [ -121.93157159499998, 49.169114007000069 ], [ -121.931583570999948, 49.172707399000096 ], [ -121.93302730399995, 49.172705202000039 ], [ -121.935370005, 49.172701704000069 ], [ -121.935390785999957, 49.174707588000096 ], [ -121.933128698999937, 49.174714196000139 ], [ -121.933022888999957, 49.174668708000098 ], [ -121.932894489999981, 49.174614191000025 ], [ -121.931576713999974, 49.174619411000073 ], [ -121.931577381999929, 49.175316405000046 ], [ -121.929876900999943, 49.175303504000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124491334", "BldgCostT": "82968334", "sL_LossRatio": "0.866674170656433", "sL_AssetLoss": "382019", "sL_BldgLoss": "331086", "sL_StrLoss": "222794", "sL_NStrLoss": "108292", "sL_ContLoss": "50933", "geom_point": "0101000020E61000000F79788D657B5EC053A6DA9F72964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.926779412999977, 49.173881699000049 ], [ -121.926818591999961, 49.170788905000158 ], [ -121.926839608999984, 49.169171306000109 ], [ -121.928377973999957, 49.169152802000092 ], [ -121.928307794, 49.173869200000127 ], [ -121.929900608999944, 49.173857309000113 ], [ -121.929876900999943, 49.175303504000084 ], [ -121.929814111999946, 49.179388101 ], [ -121.928349705999892, 49.179858303000067 ], [ -121.926742515999976, 49.180374504000042 ], [ -121.926755508999989, 49.177801008000046 ], [ -121.926759291999986, 49.17694368300004 ], [ -121.926775391, 49.174287294000059 ], [ -121.926779412999977, 49.173881699000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140825305", "BldgCostT": "92052266", "sL_LossRatio": "0.874728836419769", "sL_AssetLoss": "389986", "sL_BldgLoss": "341132", "sL_StrLoss": "233814", "sL_NStrLoss": "107318", "sL_ContLoss": "48854", "geom_point": "0101000020E6100000E3343CA4F57A5EC0B331C04F66964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.915648420999915, 49.180692599000054 ], [ -121.915764722999967, 49.169691908000047 ], [ -121.9179984099999, 49.169724406000057 ], [ -121.919048597999947, 49.169719092000093 ], [ -121.920168502999985, 49.169669614000028 ], [ -121.921727607999955, 49.169524891000023 ], [ -121.923759517999926, 49.169246695000055 ], [ -121.924617051999974, 49.169220922000122 ], [ -121.925406193999947, 49.169197219000097 ], [ -121.926839608999984, 49.169171306000109 ], [ -121.926818591999961, 49.170788905000158 ], [ -121.926779412999977, 49.173881699000049 ], [ -121.926775391, 49.174287294000059 ], [ -121.926759291999986, 49.17694368300004 ], [ -121.926755508999989, 49.177801008000046 ], [ -121.926742515999976, 49.180374504000042 ], [ -121.926373409999897, 49.18046789100007 ], [ -121.925709595999976, 49.180572616000127 ], [ -121.924451003999934, 49.180634903000069 ], [ -121.923801910999913, 49.18061272100006 ], [ -121.923716210999885, 49.180609795000031 ], [ -121.923265092999884, 49.18054219900008 ], [ -121.92249959599998, 49.180429406 ], [ -121.922124403999959, 49.180404386000092 ], [ -121.918965702999941, 49.180427098000052 ], [ -121.91699059499993, 49.180568592000064 ], [ -121.915648420999915, 49.180692599000054 ] ], [ [ -121.923821523999933, 49.176942521000122 ], [ -121.923893978999942, 49.173600545000035 ], [ -121.919272771999971, 49.173425428000044 ], [ -121.919296375, 49.173156689000109 ], [ -121.91925258899991, 49.173155028000039 ], [ -121.919278956999989, 49.172854810000032 ], [ -121.919179204999935, 49.172851027000021 ], [ -121.919201067999921, 49.172602108000063 ], [ -121.919188420999916, 49.172601629000027 ], [ -121.919215552999916, 49.172292728000045 ], [ -121.91917074, 49.172291028000082 ], [ -121.91917623399999, 49.172228469000117 ], [ -121.91832281399995, 49.172196106000087 ], [ -121.91834642299996, 49.171927363000052 ], [ -121.918302729999965, 49.171925706000103 ], [ -121.918311471999928, 49.171826205000151 ], [ -121.918172103999964, 49.171820920000101 ], [ -121.918044443999989, 49.173273996000034 ], [ -121.919230598999903, 49.173318978000054 ], [ -121.91913507699999, 49.174406494000053 ], [ -121.921375592999979, 49.174491423000042 ], [ -121.921097300999918, 49.177661219000051 ], [ -121.923029331999928, 49.177734416000078 ], [ -121.923101221, 49.176915241000145 ], [ -121.923821523999933, 49.176942521000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235230668", "BldgCostT": "159996668", "sL_LossRatio": "0.967068433038208", "sL_AssetLoss": "274189.2", "sL_BldgLoss": "265159.72", "sL_StrLoss": "230478.72", "sL_NStrLoss": "34681", "sL_ContLoss": "9029.48", "geom_point": "0101000020E6100000F4562C97707A5EC07FCD8B7689974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.903582543999946, 49.187206343000092 ], [ -121.903566761999912, 49.186859861000059 ], [ -121.902730648999949, 49.186584360000076 ], [ -121.902427540999966, 49.186630295000064 ], [ -121.900127208999962, 49.186215499000049 ], [ -121.898970809999952, 49.185528822000038 ], [ -121.898908811999917, 49.184216623000118 ], [ -121.89915138399999, 49.183839212000073 ], [ -121.898604792999933, 49.183330415000064 ], [ -121.899325083999898, 49.182995698000084 ], [ -121.899620914999929, 49.182675305000082 ], [ -121.900514660999988, 49.182626834000089 ], [ -121.90074901499996, 49.182614106000059 ], [ -121.90082267699999, 49.182375390000047 ], [ -121.900836005999949, 49.182378203000084 ], [ -121.901250576999971, 49.182408395000024 ], [ -121.901385345999984, 49.18240796200007 ], [ -121.901687221, 49.182407006000055 ], [ -121.902621184999973, 49.182321693000091 ], [ -121.903723317, 49.182150905000071 ], [ -121.905027618999938, 49.181991301000046 ], [ -121.906826408999962, 49.181771426000104 ], [ -121.909339460999902, 49.181464181000116 ], [ -121.912442280999954, 49.181084756000082 ], [ -121.915648420999915, 49.180692599000054 ], [ -121.91699059499993, 49.180568592000064 ], [ -121.918965702999941, 49.180427098000052 ], [ -121.922124403999959, 49.180404386000092 ], [ -121.92249959599998, 49.180429406 ], [ -121.923265092999884, 49.18054219900008 ], [ -121.923716210999885, 49.180609795000031 ], [ -121.923801910999913, 49.18061272100006 ], [ -121.924451003999934, 49.180634903000069 ], [ -121.925709595999976, 49.180572616000127 ], [ -121.926373409999897, 49.18046789100007 ], [ -121.92617607199999, 49.181477926000085 ], [ -121.926174088999915, 49.181488089000034 ], [ -121.926196298999969, 49.181507758000095 ], [ -121.926948509999974, 49.182173813000063 ], [ -121.927158603999914, 49.182986909000171 ], [ -121.927036491999942, 49.183470902000089 ], [ -121.926961207999952, 49.183657043000032 ], [ -121.926787598999937, 49.184086310000069 ], [ -121.926539123999987, 49.184272573000094 ], [ -121.926268976999964, 49.184475104000057 ], [ -121.925734230999922, 49.184648037000066 ], [ -121.92477614199997, 49.184957831000062 ], [ -121.924748636999965, 49.184966731 ], [ -121.924179718999966, 49.185150697000076 ], [ -121.924098867999987, 49.185176028000029 ], [ -121.923976271999905, 49.185214422000108 ], [ -121.921694203999891, 49.185929308 ], [ -121.921153437, 49.186099457000068 ], [ -121.92078368199995, 49.186215801000081 ], [ -121.919618641999989, 49.186477547000031 ], [ -121.919228022999945, 49.186611988000074 ], [ -121.919227708999955, 49.186612093000043 ], [ -121.919120466, 49.18666630400007 ], [ -121.917403787999916, 49.186584796000055 ], [ -121.916426108999985, 49.186711494000143 ], [ -121.915753195999983, 49.186714413000054 ], [ -121.91510430299995, 49.186878091000082 ], [ -121.914571471999977, 49.187201677000125 ], [ -121.91421283399994, 49.187145938000121 ], [ -121.913490637999971, 49.186980483000099 ], [ -121.90982964199999, 49.187465954000054 ], [ -121.909038790999944, 49.187212369000065 ], [ -121.907621228999972, 49.187205654000124 ], [ -121.907132657999981, 49.187101982000058 ], [ -121.907135371999956, 49.186978709000066 ], [ -121.907021387, 49.186974375000055 ], [ -121.9069731599999, 49.186973920000121 ], [ -121.906965008999961, 49.187066407000032 ], [ -121.906673568999906, 49.18700456400007 ], [ -121.904507286999959, 49.187378122000027 ], [ -121.904386265999932, 49.18758527300006 ], [ -121.903582543999946, 49.187206343000092 ] ], [ [ -121.919226055999943, 49.185325934000048 ], [ -121.919324031999963, 49.18421072000006 ], [ -121.917703658999983, 49.184149286000043 ], [ -121.917588780999964, 49.18545635700012 ], [ -121.917553775, 49.185455029000103 ], [ -121.917526895999956, 49.185760858000052 ], [ -121.917344094999962, 49.185753926000068 ], [ -121.917340345999918, 49.185796582000144 ], [ -121.918163371999952, 49.185827791000065 ], [ -121.918210857999966, 49.185287448000054 ], [ -121.919226055999943, 49.185325934000048 ] ], [ [ -121.92252998, 49.183710084000076 ], [ -121.922583185999912, 49.183103975000094 ], [ -121.922003421999989, 49.183082014 ], [ -121.921988738999971, 49.183249259000014 ], [ -121.92179575599998, 49.18324194700007 ], [ -121.92175722599994, 49.183680812000105 ], [ -121.92252998, 49.183710084000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154697583", "BldgCostT": "102003333", "sL_LossRatio": "0.875017276973201", "sL_AssetLoss": "409504.6", "sL_BldgLoss": "358323.6", "sL_StrLoss": "251772.6", "sL_NStrLoss": "106551", "sL_ContLoss": "51181", "geom_point": "0101000020E61000006F19FC3FBF785EC03FC93E44FA984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.882071303999979, 49.21164569300003 ], [ -121.882191106999983, 49.200003572000092 ], [ -121.88219821499996, 49.199315101000124 ], [ -121.881391694999976, 49.199150787000093 ], [ -121.880293012999985, 49.198998792000047 ], [ -121.877837700999919, 49.198429698000069 ], [ -121.876580897999958, 49.198172403000093 ], [ -121.875299205999966, 49.198132301000037 ], [ -121.87478090800002, 49.198093509000145 ], [ -121.874235916999979, 49.198092503000055 ], [ -121.873777686999958, 49.198150605000052 ], [ -121.873072803999889, 49.198310304000138 ], [ -121.872707197999929, 49.198422491000052 ], [ -121.872442198999963, 49.198577297000035 ], [ -121.872238903999943, 49.198684862 ], [ -121.872070128999965, 49.198817080000076 ], [ -121.872013801999969, 49.198879493000035 ], [ -121.87167441299999, 49.199316964000097 ], [ -121.871463855999963, 49.199521796000035 ], [ -121.87122644599998, 49.199699381000123 ], [ -121.870948666999936, 49.199840613000049 ], [ -121.870684217999937, 49.19999993100005 ], [ -121.870568166999973, 49.200087157000141 ], [ -121.868903381999957, 49.200023307000045 ], [ -121.869223142999928, 49.196429108000082 ], [ -121.86967794, 49.196446554000062 ], [ -121.869779182999977, 49.195308319000041 ], [ -121.873775238999926, 49.195461522000052 ], [ -121.87377961199995, 49.195412315000112 ], [ -121.877328322999986, 49.195548242000044 ], [ -121.877373986999928, 49.195033900000048 ], [ -121.882847187999957, 49.195243312000123 ], [ -121.882703924999987, 49.196859080000067 ], [ -121.883248074, 49.196879884000047 ], [ -121.883297973999973, 49.196317045000036 ], [ -121.883461160999957, 49.196323283000112 ], [ -121.883481680999964, 49.196091822000028 ], [ -121.883366152999926, 49.196087406000082 ], [ -121.88343270799993, 49.195336660000159 ], [ -121.883376402999957, 49.195334508000073 ], [ -121.883469318999943, 49.194286357000045 ], [ -121.88342366799999, 49.194284612000047 ], [ -121.883488437999944, 49.193553948000016 ], [ -121.883432613999901, 49.193551814000038 ], [ -121.883553211999981, 49.192191327000089 ], [ -121.882702474000027, 49.192158798000015 ], [ -121.883021113999945, 49.188564516000071 ], [ -121.883589558, 49.188586251000054 ], [ -121.883741478000033, 49.186872128000097 ], [ -121.884562436999943, 49.186903514000051 ], [ -121.884573143999916, 49.186782688000044 ], [ -121.883624944999951, 49.186746437000089 ], [ -121.883655323000013, 49.186403680000083 ], [ -121.883413458999954, 49.186394433000011 ], [ -121.883539098999933, 49.184976843000115 ], [ -121.883481635999928, 49.184974646000079 ], [ -121.883400307, 49.185892272000054 ], [ -121.880949487999942, 49.185798528000063 ], [ -121.880883240999978, 49.186545532000096 ], [ -121.879956040999957, 49.186510051000056 ], [ -121.879919820999973, 49.186918353000081 ], [ -121.878948645999984, 49.186881181000111 ], [ -121.878894909999985, 49.187486776000057 ], [ -121.877904353999924, 49.187448854000102 ], [ -121.877875185999983, 49.187777500000081 ], [ -121.877286610999988, 49.187754962000049 ], [ -121.877140144999927, 49.189404913000047 ], [ -121.871667656999961, 49.189195209000026 ], [ -121.871771526999922, 49.188026664000027 ], [ -121.870744210999973, 49.187987266000064 ], [ -121.870633348999888, 49.189234158000041 ], [ -121.870718455999963, 49.189237422000119 ], [ -121.870639576999949, 49.19012455700009 ], [ -121.870711710999956, 49.190127324000073 ], [ -121.87039210899998, 49.193721561000118 ], [ -121.870389124999988, 49.193721447000051 ], [ -121.870315150999943, 49.19455326100006 ], [ -121.868648100999934, 49.19448931200003 ], [ -121.868604605999948, 49.194978200000094 ], [ -121.867194629999972, 49.194924092000043 ], [ -121.867130981999978, 49.195639234000048 ], [ -121.861657805999968, 49.195429024000077 ], [ -121.861730137999984, 49.194617385000043 ], [ -121.85888896199999, 49.19450815200009 ], [ -121.858929785000015, 49.194050371000074 ], [ -121.85756106299999, 49.193997722000105 ], [ -121.857477847999974, 49.194930567000021 ], [ -121.857457526999923, 49.194929785000056 ], [ -121.857400878999954, 49.1955647670001 ], [ -121.857032866999987, 49.195550607000051 ], [ -121.856864361999968, 49.197439174000102 ], [ -121.856540540999973, 49.197426714000088 ], [ -121.856453349999967, 49.198403793000068 ], [ -121.860801397999921, 49.198571012000087 ], [ -121.860771481999933, 49.198906591000103 ], [ -121.863435129999957, 49.199008943000067 ], [ -121.863267603999944, 49.20088928800007 ], [ -121.863279651999932, 49.200889751000012 ], [ -121.863272185999918, 49.200973547000061 ], [ -121.863899811999914, 49.200997654000098 ], [ -121.863927023999963, 49.200692194000084 ], [ -121.868887942999891, 49.200882613000026 ], [ -121.86867184299993, 49.200960769000091 ], [ -121.868464120999931, 49.201039696000166 ], [ -121.868187146999958, 49.201144915000029 ], [ -121.86793806499999, 49.201232441000137 ], [ -121.867799576999971, 49.201285051000049 ], [ -121.867605782999988, 49.201355106000051 ], [ -121.867453587999989, 49.201407591000084 ], [ -121.86731532099995, 49.201451207000041 ], [ -121.86706640700001, 49.201529725000064 ], [ -121.866790059999943, 49.201607975000059 ], [ -121.866486507999923, 49.201676959000046 ], [ -121.866348428999927, 49.201711592000059 ], [ -121.865947311999903, 49.201842592000034 ], [ -121.86590593599999, 49.201851168000118 ], [ -121.865850627999947, 49.20186861400007 ], [ -121.865822972999965, 49.201877336000116 ], [ -121.865781612999939, 49.20188593600006 ], [ -121.865450762999956, 49.201945654000085 ], [ -121.865313075999936, 49.201962289000093 ], [ -121.865203095999945, 49.201970212000056 ], [ -121.86488658899998, 49.202003085000058 ], [ -121.864556991999947, 49.202008842000076 ], [ -121.864227393999968, 49.202014600000034 ], [ -121.863980122999948, 49.202021157000068 ], [ -121.863705646999932, 49.202018450000018 ], [ -121.863335307999961, 49.202005811000035 ], [ -121.86311610499996, 49.201985670000084 ], [ -121.862924591999914, 49.2019567930001 ], [ -121.862719732999935, 49.201909808000039 ], [ -121.862500737999966, 49.201880650000184 ], [ -121.862172589999901, 49.201823461000089 ], [ -121.861995008999898, 49.201785714000039 ], [ -121.861748963999958, 49.201738320000054 ], [ -121.861434956999943, 49.201663245000155 ], [ -121.86121620599998, 49.201625113000048 ], [ -121.860915077999934, 49.201586166000034 ], [ -121.86060045100001, 49.201538078000091 ], [ -121.860408906999936, 49.201509209000058 ], [ -121.860245051999968, 49.201471607000066 ], [ -121.860163123999939, 49.201452806000127 ], [ -121.859985735999913, 49.201406075000122 ], [ -121.85978088399996, 49.201359083000085 ], [ -121.859521154, 49.201311524000083 ], [ -121.85935687099996, 49.201291929000021 ], [ -121.859028714999937, 49.20123470700009 ], [ -121.858891893999953, 49.201215371000011 ], [ -121.858700384999935, 49.20118648800014 ], [ -121.858535893999914, 49.201175850000041 ], [ -121.858395656999917, 49.201174482000098 ], [ -121.858070687999913, 49.201113595000045 ], [ -121.856404978999976, 49.200837607000018 ], [ -121.855681285999978, 49.200683497000135 ], [ -121.855310097999947, 49.200580905000102 ], [ -121.854951625999917, 49.200429100000044 ], [ -121.854212389999986, 49.199998834000063 ], [ -121.853793807999978, 49.199755197000087 ], [ -121.853660813999966, 49.199629302000027 ], [ -121.853451965999966, 49.199370518000123 ], [ -121.853052601999977, 49.198875600000079 ], [ -121.852871087999972, 49.198709007000076 ], [ -121.853065, 49.198536991000054 ], [ -121.853131349999927, 49.193808490000045 ], [ -121.85314691, 49.192700294000083 ], [ -121.854723077999921, 49.19271154700008 ], [ -121.856712927999979, 49.192725720000041 ], [ -121.859698292999909, 49.192746893000084 ], [ -121.863661500999953, 49.19275130000004 ], [ -121.867240707999926, 49.192796783000055 ], [ -121.867305019999918, 49.189534166000094 ], [ -121.867381294999959, 49.185663106000085 ], [ -121.867417815999914, 49.183787284000033 ], [ -121.867496491999972, 49.183920084000057 ], [ -121.867706088999952, 49.184064290000052 ], [ -121.868383181999931, 49.184393024000073 ], [ -121.868909997999964, 49.184648799000058 ], [ -121.869235410999963, 49.184772201000058 ], [ -121.869760211999946, 49.184881547000074 ], [ -121.871892976999959, 49.185325898 ], [ -121.873446258999962, 49.185750578000075 ], [ -121.873775914999925, 49.18584069300006 ], [ -121.874020303999899, 49.185840208000059 ], [ -121.874969917999948, 49.185688092000113 ], [ -121.875769209999973, 49.185514084000069 ], [ -121.876506410999923, 49.185126704 ], [ -121.877206988999887, 49.184810904000123 ], [ -121.877956611999949, 49.184531192000037 ], [ -121.880309293999915, 49.183850398000047 ], [ -121.880767766999952, 49.183694893000073 ], [ -121.88134649099996, 49.183452801000087 ], [ -121.882424494999952, 49.182858395000054 ], [ -121.88318788699999, 49.182562094000055 ], [ -121.883764312, 49.182448901000029 ], [ -121.88414469199995, 49.182374195000058 ], [ -121.884450733999969, 49.182378133000078 ], [ -121.884891886999981, 49.182383796000082 ], [ -121.885172009999962, 49.182444982000092 ], [ -121.885375122999974, 49.182529913000053 ], [ -121.885770309999955, 49.182695100000096 ], [ -121.885822047999937, 49.182682378000059 ], [ -121.885919052999938, 49.182658522000118 ], [ -121.885949642999933, 49.182558808000053 ], [ -121.885984439999945, 49.182532356000131 ], [ -121.88608653299994, 49.18245475500003 ], [ -121.886363321999937, 49.182244403000055 ], [ -121.88767168499993, 49.182612696000092 ], [ -121.888593003999972, 49.182794806000089 ], [ -121.890223612999975, 49.182935509000075 ], [ -121.890829002999922, 49.182964987000055 ], [ -121.89313980699994, 49.182785404000114 ], [ -121.893433708999979, 49.182737088000088 ], [ -121.897303883999911, 49.181763003000079 ], [ -121.897530520999922, 49.181730205000058 ], [ -121.897746006999967, 49.181730292000033 ], [ -121.898017811999978, 49.181761409000082 ], [ -121.898577710999987, 49.181901698000047 ], [ -121.90082267699999, 49.182375390000047 ], [ -121.90074901499996, 49.182614106000059 ], [ -121.900514660999988, 49.182626834000089 ], [ -121.899620914999929, 49.182675305000082 ], [ -121.899325083999898, 49.182995698000084 ], [ -121.898604792999933, 49.183330415000064 ], [ -121.89915138399999, 49.183839212000073 ], [ -121.898908811999917, 49.184216623000118 ], [ -121.898970809999952, 49.185528822000038 ], [ -121.900127208999962, 49.186215499000049 ], [ -121.902427540999966, 49.186630295000064 ], [ -121.902730648999949, 49.186584360000076 ], [ -121.903566761999912, 49.186859861000059 ], [ -121.903582543999946, 49.187206343000092 ], [ -121.904386265999932, 49.18758527300006 ], [ -121.904507286999959, 49.187378122000027 ], [ -121.906673568999906, 49.18700456400007 ], [ -121.906965008999961, 49.187066407000032 ], [ -121.906941249999988, 49.187336006000088 ], [ -121.906793257999965, 49.187330379000116 ], [ -121.906754866999933, 49.187766009000043 ], [ -121.906720494999931, 49.187764703000056 ], [ -121.906691780999907, 49.188090510000144 ], [ -121.906393145999971, 49.188079156000128 ], [ -121.90636628399993, 49.18838391700006 ], [ -121.905719623999943, 49.188359327000036 ], [ -121.905709062999975, 49.18847913200004 ], [ -121.905044256999929, 49.188453848000044 ], [ -121.905022570999961, 49.189436401000123 ], [ -121.907775063999935, 49.189541055000049 ], [ -121.907787455999937, 49.18940041000009 ], [ -121.908012020999976, 49.189408945000061 ], [ -121.908177997999957, 49.187525051000094 ], [ -121.907946820999911, 49.187522865000091 ], [ -121.907952758999983, 49.187253055000056 ], [ -121.907129501999947, 49.187245266000041 ], [ -121.907132657999981, 49.187101982000058 ], [ -121.907621228999972, 49.187205654000124 ], [ -121.909038790999944, 49.187212369000065 ], [ -121.90982964199999, 49.187465954000054 ], [ -121.913490637999971, 49.186980483000099 ], [ -121.91421283399994, 49.187145938000121 ], [ -121.914571471999977, 49.187201677000125 ], [ -121.91393629, 49.187587412000092 ], [ -121.912606704999945, 49.188132902000049 ], [ -121.911015307999975, 49.189322089000072 ], [ -121.909902406999947, 49.190022797000047 ], [ -121.909422112999977, 49.190675090000106 ], [ -121.907875299999915, 49.191767397000042 ], [ -121.903875896000017, 49.192583496000069 ], [ -121.902585693999981, 49.193183101000066 ], [ -121.902348113999963, 49.193369705000094 ], [ -121.901557115999964, 49.194415097000046 ], [ -121.901535508999984, 49.194783886000074 ], [ -121.901890857999931, 49.195118878000123 ], [ -121.902046187999971, 49.195265307000113 ], [ -121.902072192999981, 49.19533671300006 ], [ -121.902154380999917, 49.19558523200007 ], [ -121.902779615999975, 49.197475704000112 ], [ -121.904188313999924, 49.19895540600011 ], [ -121.904404691999957, 49.199100688000058 ], [ -121.904734908999956, 49.199113488000137 ], [ -121.904955074999947, 49.199062193000074 ], [ -121.902922582, 49.197180900000049 ], [ -121.90275052099993, 49.196917404000068 ], [ -121.902541079999978, 49.195871993 ], [ -121.90231105099997, 49.195553689000114 ], [ -121.90222100499993, 49.195429083000057 ], [ -121.902242813999976, 49.195316497000121 ], [ -121.90225810599992, 49.194997598 ], [ -121.901795973999967, 49.194803894000067 ], [ -121.902636598, 49.193426691000106 ], [ -121.903151997999942, 49.193026499000084 ], [ -121.90383171299996, 49.192708797000087 ], [ -121.904246682999897, 49.192604898000056 ], [ -121.90701551299999, 49.192127793000026 ], [ -121.907771494999963, 49.192062304000075 ], [ -121.908075411999945, 49.191958293 ], [ -121.909470709999965, 49.19096279500009 ], [ -121.910189695999975, 49.190052701000099 ], [ -121.911426979999973, 49.189398997000112 ], [ -121.912737611999916, 49.188476104000138 ], [ -121.914928997999965, 49.187362404000034 ], [ -121.914977589999921, 49.187347709000043 ], [ -121.915192281999978, 49.187595989000094 ], [ -121.91432149399995, 49.1879451920001 ], [ -121.912896906999919, 49.188691688000105 ], [ -121.9126882899999, 49.188830789000093 ], [ -121.911542623999978, 49.189760995000071 ], [ -121.911400890999971, 49.189923077000095 ], [ -121.911206782999926, 49.190144992000029 ], [ -121.909570119999913, 49.192284490000091 ], [ -121.908903605999953, 49.192463809000088 ], [ -121.908143197999948, 49.19275770800008 ], [ -121.907244713999944, 49.193014796000099 ], [ -121.904624180999932, 49.193586795000044 ], [ -121.903755294999897, 49.193818802000152 ], [ -121.903284693999936, 49.193986702000132 ], [ -121.903029124999989, 49.194113998000091 ], [ -121.902964994999962, 49.194157867000037 ], [ -121.902831898999963, 49.194248899000065 ], [ -121.9026052, 49.19460909 ], [ -121.902563394999945, 49.194755594000071 ], [ -121.902559418999985, 49.194769598000057 ], [ -121.902557757999901, 49.194855868000047 ], [ -121.90255560199995, 49.194968689000056 ], [ -121.902729503999979, 49.195409888000057 ], [ -121.902966171999964, 49.195774998000019 ], [ -121.903095600999976, 49.195974697000167 ], [ -121.903259777999892, 49.196323597000095 ], [ -121.903474103999912, 49.197116099000056 ], [ -121.903563167999891, 49.197270159000091 ], [ -121.903626591999966, 49.197379794000028 ], [ -121.904381096999913, 49.198164908000074 ], [ -121.90463180099999, 49.198544989000041 ], [ -121.905344382999942, 49.199270843000107 ], [ -121.905652272999987, 49.199584496000028 ], [ -121.905821243999981, 49.199824261000124 ], [ -121.905932031999939, 49.199981475000072 ], [ -121.905951307999942, 49.200008801000124 ], [ -121.90596601099999, 49.200051400000106 ], [ -121.906274003999968, 49.200942494000081 ], [ -121.906352127999924, 49.201338521000068 ], [ -121.906463796999958, 49.20190451400002 ], [ -121.906457306, 49.201935298000144 ], [ -121.906405775999957, 49.202009076000138 ], [ -121.906327906999977, 49.20215108700009 ], [ -121.906323367999931, 49.202357936000134 ], [ -121.90634563, 49.202592048000028 ], [ -121.906409924999977, 49.20279055300005 ], [ -121.906474168999949, 49.202989045000074 ], [ -121.906499213999908, 49.203097244000048 ], [ -121.906495067999941, 49.203286120000044 ], [ -121.906504842999979, 49.203466122000087 ], [ -121.906501454999983, 49.203619004000117 ], [ -121.906456493999968, 49.203789494000013 ], [ -121.906384531999933, 49.203941741000087 ], [ -121.906326422999882, 49.204085136000046 ], [ -121.906254046999919, 49.204255334000031 ], [ -121.9062399099999, 49.204273203000099 ], [ -121.906167732999947, 49.204434442000043 ], [ -121.90606708099989, 49.204640376000029 ], [ -121.905967630999896, 49.20479235300008 ], [ -121.905902478999934, 49.204919483000111 ], [ -121.905823049999967, 49.205028754000047 ], [ -121.905785062999968, 49.205078596000064 ], [ -121.905648715999973, 49.205355405000027 ], [ -121.904871901999968, 49.206019193000053 ], [ -121.904543769999947, 49.206420957000034 ], [ -121.904376214999928, 49.206626094000072 ], [ -121.904303506999952, 49.206827984 ], [ -121.904311061999948, 49.208968072000033 ], [ -121.903108179999904, 49.208922327000046 ], [ -121.903036741, 49.20973180400005 ], [ -121.896704182999954, 49.210256891000078 ], [ -121.896114384999933, 49.210341704000065 ], [ -121.8955220779999, 49.210361501000051 ], [ -121.890444674999955, 49.210780998000082 ], [ -121.89013550899989, 49.210767401000062 ], [ -121.888730950999943, 49.210480162000067 ], [ -121.888129573999933, 49.210357192000082 ], [ -121.887752683999977, 49.210302298000109 ], [ -121.886943711999905, 49.210286683000049 ], [ -121.886665216999958, 49.210330196000093 ], [ -121.883086003999964, 49.211323100000079 ], [ -121.882071286999974, 49.211645900000072 ], [ -121.882071303999979, 49.21164569300003 ] ], [ [ -121.891254518, 49.209096503000069 ], [ -121.891351195999945, 49.208004171000056 ], [ -121.894797420999936, 49.20813557300005 ], [ -121.894820060999933, 49.207879553000112 ], [ -121.895584835999983, 49.207908698000097 ], [ -121.895590930999944, 49.20783977200005 ], [ -121.901065721999913, 49.20804825500008 ], [ -121.901035553999932, 49.208389928000031 ], [ -121.902626552999934, 49.208450462000108 ], [ -121.902672316999912, 49.207931950000095 ], [ -121.901095365999964, 49.207871951000065 ], [ -121.90109563599998, 49.207868903000062 ], [ -121.899593013999961, 49.207811711000033 ], [ -121.899848888999898, 49.20491459800013 ], [ -121.900086522999985, 49.20503400100008 ], [ -121.900984014999921, 49.205455500000056 ], [ -121.901815592, 49.205706204000066 ], [ -121.902102088999982, 49.205763194000106 ], [ -121.902528406999963, 49.205731792000094 ], [ -121.902613005999982, 49.205677697000041 ], [ -121.902462417999956, 49.205586599000085 ], [ -121.901589500999947, 49.205317401000109 ], [ -121.901636415999945, 49.205066697000056 ], [ -121.902981595999918, 49.205132199000083 ], [ -121.903890596999972, 49.204996898000076 ], [ -121.905098790999929, 49.204955607000052 ], [ -121.905457910999971, 49.204868696000055 ], [ -121.905862892999963, 49.204602387000129 ], [ -121.906060383999943, 49.204307597000117 ], [ -121.905904702999976, 49.204282996000089 ], [ -121.905717816000021, 49.204286305000096 ], [ -121.90491268599996, 49.204719197000024 ], [ -121.904236589999954, 49.204884390000117 ], [ -121.901200875999962, 49.204908594000173 ], [ -121.900339884999966, 49.204747705000031 ], [ -121.899896340999959, 49.20437728900005 ], [ -121.899910454999969, 49.204217464000159 ], [ -121.901558418999969, 49.204280188000048 ], [ -121.901584901, 49.203980204000118 ], [ -121.901686753999982, 49.203984080000119 ], [ -121.901770993999946, 49.203029761000039 ], [ -121.901311376999942, 49.203012270000094 ], [ -121.901341843999944, 49.202667130000101 ], [ -121.898655931999897, 49.202564879000072 ], [ -121.898648005999974, 49.202447589000016 ], [ -121.899124107999924, 49.201345282000041 ], [ -121.89970440899999, 49.200594686000052 ], [ -121.900147913999916, 49.199744392000092 ], [ -121.900259582999951, 49.199070800000086 ], [ -121.900214692999967, 49.198612195000109 ], [ -121.899831706999919, 49.197996908000029 ], [ -121.898153082999954, 49.196918805000053 ], [ -121.897388189999972, 49.196732202000092 ], [ -121.896524380999907, 49.19671509900008 ], [ -121.89434878899999, 49.19700851100005 ], [ -121.891461316999951, 49.1972236 ], [ -121.890193081999939, 49.19748989200005 ], [ -121.889913490999916, 49.197640904000046 ], [ -121.88953158399994, 49.198186399000072 ], [ -121.889621503999962, 49.198375789000075 ], [ -121.889782303999965, 49.1979997850001 ], [ -121.890297304999933, 49.197680790000028 ], [ -121.890668502999958, 49.19763950700014 ], [ -121.890898514999989, 49.197794702000095 ], [ -121.892210795999944, 49.197428710000061 ], [ -121.89491570499996, 49.197410194000049 ], [ -121.896457381999952, 49.197182291000082 ], [ -121.897270011999979, 49.197135289000144 ], [ -121.897967799999989, 49.19724068700004 ], [ -121.898510691999903, 49.197525487000071 ], [ -121.898994382999945, 49.197898694000067 ], [ -121.899449491999931, 49.198469809000073 ], [ -121.89964731699996, 49.198840102000055 ], [ -121.89970310299995, 49.199434005000036 ], [ -121.89942268, 49.200295598000032 ], [ -121.898459897999956, 49.201600206000137 ], [ -121.898215005999987, 49.202091489000111 ], [ -121.898247152999915, 49.202549311000062 ], [ -121.897757876999975, 49.202530675000027 ], [ -121.898036345999941, 49.199378761000077 ], [ -121.897120351999931, 49.199343866000085 ], [ -121.897129129999925, 49.199244530000058 ], [ -121.896900478999939, 49.199235818000027 ], [ -121.896850127999954, 49.199805611000045 ], [ -121.894071231999959, 49.199699695000106 ], [ -121.893950479999916, 49.201065177000039 ], [ -121.889722860999939, 49.20090390600005 ], [ -121.889711504999951, 49.201032178000077 ], [ -121.88882939299998, 49.200998507000058 ], [ -121.888805379999965, 49.2012696990001 ], [ -121.887831992999935, 49.20123253600007 ], [ -121.887826741999902, 49.201291823000133 ], [ -121.885526523999943, 49.201203966000108 ], [ -121.885257499999938, 49.204239575000059 ], [ -121.884025522999949, 49.204192500000012 ], [ -121.884020524999983, 49.204248872000065 ], [ -121.886843709999937, 49.204356728000043 ], [ -121.886841995999944, 49.204376081000092 ], [ -121.88761518499993, 49.204405606000115 ], [ -121.88749266899994, 49.205788716000036 ], [ -121.88919671799999, 49.205853768000054 ], [ -121.889024629999952, 49.207797143 ], [ -121.891283068999911, 49.207883318000071 ], [ -121.891175956999916, 49.209093506000073 ], [ -121.891254518, 49.209096503000069 ] ], [ [ -121.889329104999945, 49.199271599000042 ], [ -121.889982183999933, 49.198918398000067 ], [ -121.889906791999962, 49.198620716000036 ], [ -121.889289888999883, 49.198587993000018 ], [ -121.888770397999934, 49.19908649800005 ], [ -121.888200203999972, 49.199414011000037 ], [ -121.887466186000012, 49.1996945920001 ], [ -121.88659679099996, 49.199902501000082 ], [ -121.885015992999939, 49.1999766120001 ], [ -121.88260930199999, 49.199567786000046 ], [ -121.882265, 49.199626186000074 ], [ -121.882259105999978, 49.199888290000068 ], [ -121.882268899999971, 49.200094806000031 ], [ -121.883372882999964, 49.200410994000023 ], [ -121.885816511999963, 49.200425193000029 ], [ -121.887304403999963, 49.200188805000096 ], [ -121.888863117999904, 49.199789993000088 ], [ -121.889073996999983, 49.199593503000052 ], [ -121.889329104999945, 49.199271599000042 ] ], [ [ -121.904841506999958, 49.199852685000025 ], [ -121.905030602999929, 49.199952391000117 ], [ -121.905292806999981, 49.199911103000019 ], [ -121.905389692999947, 49.19983989900004 ], [ -121.90530120499993, 49.199542185000055 ], [ -121.905126588999963, 49.199315801000104 ], [ -121.904866808999913, 49.199312885000033 ], [ -121.904551677999947, 49.199318595000108 ], [ -121.904841506999958, 49.199852685000025 ] ], [ [ -121.905484710999971, 49.201179993000018 ], [ -121.905743608999927, 49.20122850300006 ], [ -121.905976701999933, 49.201221300000078 ], [ -121.906049386999968, 49.201077503000114 ], [ -121.905737686999927, 49.200247210000036 ], [ -121.905591189999924, 49.200057806000068 ], [ -121.905386511999936, 49.200046406000077 ], [ -121.905082610999969, 49.200124690000038 ], [ -121.90508077899996, 49.200222999000069 ], [ -121.905319406999951, 49.200532008000039 ], [ -121.905484710999971, 49.201179993000018 ] ], [ [ -121.905545489999966, 49.201513314000088 ], [ -121.905648298999921, 49.203052909000036 ], [ -121.905833408, 49.203360496000087 ], [ -121.905804985999964, 49.204125303000076 ], [ -121.906002689999937, 49.204140113000108 ], [ -121.906175301999966, 49.20411109100008 ], [ -121.906277516999964, 49.203833293000088 ], [ -121.906303815999962, 49.203203906000049 ], [ -121.906076296999927, 49.202382088000029 ], [ -121.90602959499995, 49.201392294000044 ], [ -121.905754481999935, 49.201389399000064 ], [ -121.905576585999967, 49.201388001000048 ], [ -121.905545489999966, 49.201513314000088 ] ], [ [ -121.898379518999917, 49.194077026000038 ], [ -121.898444725999951, 49.193338748000023 ], [ -121.896912329999935, 49.193280364000046 ], [ -121.895185062999957, 49.193214531000088 ], [ -121.89550274599999, 49.189620217000069 ], [ -121.89591471199999, 49.189635922000072 ], [ -121.895959971999986, 49.189637647000076 ], [ -121.89596753, 49.189298027000127 ], [ -121.895807716999954, 49.189296499000129 ], [ -121.895555884999936, 49.189294091000086 ], [ -121.89557245099995, 49.188549973000065 ], [ -121.89557991, 49.188214854000165 ], [ -121.89546648699995, 49.188213769000143 ], [ -121.895168274999918, 49.188210917000049 ], [ -121.89519831699999, 49.186861869000012 ], [ -121.895545964999954, 49.186865195000109 ], [ -121.895609940999961, 49.186865807000089 ], [ -121.895612706999927, 49.186741557000062 ], [ -121.895627956999988, 49.186056378000067 ], [ -121.895980747, 49.18605975200007 ], [ -121.896039572999911, 49.186060313000041 ], [ -121.89604211599999, 49.185946062000028 ], [ -121.896051580999966, 49.185520695000072 ], [ -121.896145681999926, 49.185521594000072 ], [ -121.896194292999965, 49.184971402000052 ], [ -121.895282883, 49.184936654000069 ], [ -121.89528344699994, 49.184930266000023 ], [ -121.89510534499999, 49.184923474000087 ], [ -121.895100534999969, 49.184977896000063 ], [ -121.894605048999921, 49.184959001000074 ], [ -121.894601715999926, 49.184996708000099 ], [ -121.893989958999924, 49.184973376000059 ], [ -121.893985791999953, 49.185020523000077 ], [ -121.89356426199997, 49.185004444000114 ], [ -121.89355957599993, 49.185057433000054 ], [ -121.893016039999978, 49.185036698000012 ], [ -121.893009456999977, 49.185111146000054 ], [ -121.892545043000013, 49.185093428000123 ], [ -121.892519350999976, 49.185383956000081 ], [ -121.890765972999986, 49.185317043000097 ], [ -121.890746088999933, 49.185541798000031 ], [ -121.890680002999915, 49.185539275000103 ], [ -121.890508584999935, 49.187476699000108 ], [ -121.890004194999946, 49.187457444000131 ], [ -121.889884933999937, 49.188805110000033 ], [ -121.889129826999977, 49.188776280000113 ], [ -121.889072810999934, 49.18942042600009 ], [ -121.890232458999947, 49.18946469800008 ], [ -121.890122824999963, 49.190703598000027 ], [ -121.893551225, 49.190834412000136 ], [ -121.893294896000015, 49.19373313300013 ], [ -121.893499106999954, 49.193740921000078 ], [ -121.893452885999949, 49.194263609000075 ], [ -121.894532398999985, 49.194304774000045 ], [ -121.89454113, 49.194206008000073 ], [ -121.896765607999924, 49.194290799000093 ], [ -121.896789848999958, 49.194016460000036 ], [ -121.897637070999977, 49.194048742000057 ], [ -121.898379518999917, 49.194077026000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8758562", "BldgCostT": "5628191", "sL_LossRatio": "0.850343664894307", "sL_AssetLoss": "23133", "sL_BldgLoss": "19671", "sL_StrLoss": "12677", "sL_NStrLoss": "6994", "sL_ContLoss": "3462", "geom_point": "0101000020E6100000B7B564D9FC7E5EC0D0D2156C23964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.985134996999989, 49.175883620000064 ], [ -121.985265452999968, 49.174373932000023 ], [ -121.981909703, 49.174248708000071 ], [ -121.981964104999989, 49.173619651000102 ], [ -121.981108014999933, 49.173587688000097 ], [ -121.9812241489999, 49.172245029000038 ], [ -121.976353936999885, 49.172063064000099 ], [ -121.976371571999962, 49.171859413000121 ], [ -121.980648311999985, 49.171790080000086 ], [ -121.988410573999914, 49.171663724000076 ], [ -121.988484458999949, 49.171956450000025 ], [ -121.987015589999913, 49.17390500600002 ], [ -121.985967617999989, 49.175121030000113 ], [ -121.985195600999987, 49.175732455000116 ], [ -121.985134996999989, 49.175883620000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31091000", "BldgCostT": "20705000", "sL_LossRatio": "0.819870349492672", "sL_AssetLoss": "106440", "sL_BldgLoss": "87267", "sL_StrLoss": "57099", "sL_NStrLoss": "30168", "sL_ContLoss": "19173", "geom_point": "0101000020E6100000E52F67955D7E5EC073E89903A9964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.965458768999937, 49.181603141000018 ], [ -121.965497782999975, 49.181153939000055 ], [ -121.965337869999971, 49.181147945000049 ], [ -121.965369239999973, 49.180786751 ], [ -121.96532909199999, 49.18078524600007 ], [ -121.965360990999969, 49.1804179720001 ], [ -121.964912219, 49.180401151000048 ], [ -121.964910339999918, 49.18049124000003 ], [ -121.964838137999934, 49.180490593000052 ], [ -121.964788093999971, 49.180164396000073 ], [ -121.964193098999942, 49.179655998000079 ], [ -121.964157882999984, 49.179646402000046 ], [ -121.964225687999942, 49.178865902000062 ], [ -121.964120969999968, 49.178864963000137 ], [ -121.964104961999951, 49.179631981000014 ], [ -121.964059977999938, 49.179619722000076 ], [ -121.96402464699996, 49.179316307000114 ], [ -121.963971793999974, 49.17850409700003 ], [ -121.964499111999956, 49.178383971000066 ], [ -121.966330165999949, 49.178312537000068 ], [ -121.966991413999935, 49.178224959000048 ], [ -121.968964989999975, 49.178213620000129 ], [ -121.969429705999957, 49.178109396000124 ], [ -121.96945496399999, 49.178009300000078 ], [ -121.969477932999922, 49.17791811700009 ], [ -121.969500918999984, 49.177826956000025 ], [ -121.969523907999985, 49.177735796000043 ], [ -121.969546858999962, 49.177644647000115 ], [ -121.969569826999987, 49.177553464000034 ], [ -121.969592830999943, 49.177462327000065 ], [ -121.969615800999918, 49.177371144000091 ], [ -121.969638786999923, 49.177279983000112 ], [ -121.969661772999956, 49.177188824000034 ], [ -121.969684758999961, 49.177097664000016 ], [ -121.969707726999971, 49.177006481000085 ], [ -121.969730711, 49.176915321000124 ], [ -121.969753663999882, 49.176824173000092 ], [ -121.969776648999968, 49.17673301300006 ], [ -121.96947017, 49.176534658000094 ], [ -121.969471155999969, 49.175880245000023 ], [ -121.969471841999933, 49.175403449000093 ], [ -121.969471904000017, 49.175359988000039 ], [ -121.969473583999942, 49.174549495000115 ], [ -121.969475309999893, 49.173502006000049 ], [ -121.96947960199999, 49.172266097000062 ], [ -121.969479564999958, 49.17197078700012 ], [ -121.974556193999916, 49.171888793000022 ], [ -121.974543955999977, 49.172481197000117 ], [ -121.974132441999927, 49.172477542000117 ], [ -121.97412686499996, 49.172747358000066 ], [ -121.97371535, 49.172743703000016 ], [ -121.973709769999985, 49.173013518000126 ], [ -121.973298250999918, 49.173009861000068 ], [ -121.973292669999964, 49.173279678 ], [ -121.972816900999931, 49.173275447000037 ], [ -121.972804051999915, 49.173423701000026 ], [ -121.97779698399999, 49.173610406000144 ], [ -121.977506616999932, 49.176964281000117 ], [ -121.977977510999963, 49.176981877000067 ], [ -121.978013197999985, 49.176569653000065 ], [ -121.978870473999947, 49.176601683000108 ], [ -121.978873062000019, 49.176571775000106 ], [ -121.97948835699999, 49.176594758000093 ], [ -121.97950044399991, 49.1764550890001 ], [ -121.980360890999947, 49.176487225000081 ], [ -121.980373212999979, 49.176344809000028 ], [ -121.981472857999961, 49.176385869000043 ], [ -121.981484372999915, 49.17625273600008 ], [ -121.985057066999929, 49.176386059000016 ], [ -121.985176721999963, 49.176638208000092 ], [ -121.985297578999933, 49.176785458000055 ], [ -121.985639678000013, 49.177202137000087 ], [ -121.98639512499993, 49.178122229000117 ], [ -121.986766396999968, 49.178513572000092 ], [ -121.98677743799999, 49.178521984000028 ], [ -121.986757322999935, 49.178754833000035 ], [ -121.985646383999921, 49.178704597000078 ], [ -121.984110113999947, 49.178708897000021 ], [ -121.979502493999973, 49.179242895000122 ], [ -121.977692104999932, 49.179839695000062 ], [ -121.977307296999982, 49.179889513000084 ], [ -121.975798901999966, 49.179795485000106 ], [ -121.974699586999918, 49.17992940800012 ], [ -121.974689539999957, 49.179932733000065 ], [ -121.973400000999973, 49.180359496000065 ], [ -121.9723138, 49.180493401000021 ], [ -121.970712892999927, 49.180316808000057 ], [ -121.969293076999961, 49.17989099800004 ], [ -121.968624395999967, 49.179776991000061 ], [ -121.96767301499996, 49.179947903000063 ], [ -121.967092793999925, 49.18019431200004 ], [ -121.967024150999947, 49.180264186000038 ], [ -121.96597069299996, 49.181336496000029 ], [ -121.965470988999968, 49.181601410000042 ], [ -121.965458768999937, 49.181603141000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37041750", "BldgCostT": "22500000", "sL_LossRatio": "0.718986855991557", "sL_AssetLoss": "135499", "sL_BldgLoss": "97422", "sL_StrLoss": "49447", "sL_NStrLoss": "47975", "sL_ContLoss": "38077", "geom_point": "0101000020E61000007FECE4C2377E5EC02CC995D5CF954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.971193494999937, 49.169353204000075 ], [ -121.972002837, 49.169719787000112 ], [ -121.972233886999959, 49.169792447000056 ], [ -121.972477080999965, 49.169820476000069 ], [ -121.974492007999956, 49.169780478000064 ], [ -121.974523269999978, 49.170433487000011 ], [ -121.9741163, 49.170823064000096 ], [ -121.97378698199995, 49.171139827000061 ], [ -121.97271619499999, 49.171145740000014 ], [ -121.972393744, 49.170939831000041 ], [ -121.972220058999966, 49.17104422600007 ], [ -121.971641188999953, 49.171042408000055 ], [ -121.969513289999924, 49.171054695000123 ], [ -121.969606192999947, 49.170821989000117 ], [ -121.969827095999932, 49.17056880300008 ], [ -121.971193494999937, 49.169353204000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7850000", "BldgCostT": "5150000", "sL_LossRatio": "0.874809393107655", "sL_AssetLoss": "26232", "sL_BldgLoss": "22948", "sL_StrLoss": "17750", "sL_NStrLoss": "5198", "sL_ContLoss": "3284", "geom_point": "0101000020E6100000E63D8C184F785EC05688A29B589A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.881484347999972, 49.216428999000108 ], [ -121.881486639999963, 49.216403181000061 ], [ -121.880352233999986, 49.216359807000075 ], [ -121.880235377999938, 49.215970492000089 ], [ -121.880009409999943, 49.215563101000122 ], [ -121.879305694999971, 49.214889476000046 ], [ -121.879498217999981, 49.21272080100006 ], [ -121.879964471, 49.212738635000051 ], [ -121.879980279999927, 49.212560545000052 ], [ -121.879789997999978, 49.212553268000079 ], [ -121.87989939499991, 49.211320778000122 ], [ -121.879799874999946, 49.211316971000045 ], [ -121.880118870999979, 49.207722802000099 ], [ -121.881822307999983, 49.207787945000071 ], [ -121.881823785999956, 49.207771280000088 ], [ -121.881050543999891, 49.207741714000065 ], [ -121.881351442999943, 49.204350154000117 ], [ -121.878528269999947, 49.204242155000053 ], [ -121.878725283, 49.202022771000067 ], [ -121.87848980699998, 49.202013759000074 ], [ -121.878641035999962, 49.200310091000041 ], [ -121.877934494999948, 49.200283048000095 ], [ -121.877963114999943, 49.199960674000124 ], [ -121.876624169999943, 49.199909415000043 ], [ -121.876693352999922, 49.199130376000042 ], [ -121.874937465999949, 49.199063130000134 ], [ -121.874933093999957, 49.199112337000138 ], [ -121.874478267999976, 49.199094913000167 ], [ -121.874377132999882, 49.200233147000105 ], [ -121.871818294999969, 49.200135087 ], [ -121.872139206000014, 49.200005095000087 ], [ -121.872389888999948, 49.199197613000081 ], [ -121.872822606999975, 49.19893259 ], [ -121.874877000999945, 49.198565189000064 ], [ -121.875602800999971, 49.198590798000119 ], [ -121.876709996999949, 49.198817287000089 ], [ -121.879286587999928, 49.199562111000084 ], [ -121.880605207999963, 49.199529383000083 ], [ -121.880918895999983, 49.199631902000128 ], [ -121.880916118999949, 49.19975729600003 ], [ -121.881229694999931, 49.199904013000051 ], [ -121.881652987999971, 49.200016494000053 ], [ -121.881952706999982, 49.200029295000071 ], [ -121.881957980999928, 49.199866897000092 ], [ -121.881936991999964, 49.199587805000085 ], [ -121.881568920999925, 49.199466703000027 ], [ -121.880936779999956, 49.199433999000114 ], [ -121.880236479999922, 49.199507993000118 ], [ -121.879141996999962, 49.199344188000055 ], [ -121.87868170199999, 49.199070803000026 ], [ -121.87864450099994, 49.198862892000051 ], [ -121.877976898999947, 49.198659206000073 ], [ -121.87559667699999, 49.198257597000065 ], [ -121.874293091, 49.198217703000061 ], [ -121.873467820999963, 49.198344401000085 ], [ -121.872776215999949, 49.19855380400007 ], [ -121.872470901999932, 49.198740387000043 ], [ -121.87119110299993, 49.200005103000073 ], [ -121.871024966999968, 49.200104672000101 ], [ -121.870568166999973, 49.200087157000141 ], [ -121.870684217999937, 49.19999993100005 ], [ -121.870948666999936, 49.199840613000049 ], [ -121.87122644599998, 49.199699381000123 ], [ -121.871463855999963, 49.199521796000035 ], [ -121.87167441299999, 49.199316964000097 ], [ -121.872013801999969, 49.198879493000035 ], [ -121.872070128999965, 49.198817080000076 ], [ -121.872238903999943, 49.198684862 ], [ -121.872442198999963, 49.198577297000035 ], [ -121.872707197999929, 49.198422491000052 ], [ -121.873072803999889, 49.198310304000138 ], [ -121.873777686999958, 49.198150605000052 ], [ -121.874235916999979, 49.198092503000055 ], [ -121.87478090800002, 49.198093509000145 ], [ -121.875299205999966, 49.198132301000037 ], [ -121.876580897999958, 49.198172403000093 ], [ -121.877837700999919, 49.198429698000069 ], [ -121.880293012999985, 49.198998792000047 ], [ -121.881391694999976, 49.199150787000093 ], [ -121.88219821499996, 49.199315101000124 ], [ -121.882191106999983, 49.200003572000092 ], [ -121.882071303999979, 49.21164569300003 ], [ -121.882071286999974, 49.211645900000072 ], [ -121.882068208999939, 49.211804394000104 ], [ -121.881916413999974, 49.212276509000077 ], [ -121.881941198, 49.212492889000018 ], [ -121.882120312999945, 49.212796403000034 ], [ -121.882151309, 49.212988681000112 ], [ -121.882077899999928, 49.213134609000065 ], [ -121.881573106999923, 49.213808198000088 ], [ -121.881164901999938, 49.214352903000098 ], [ -121.880959820999934, 49.21469849600004 ], [ -121.880900096999966, 49.214861206000073 ], [ -121.880943685999981, 49.215065701000114 ], [ -121.88130278199999, 49.215523096000069 ], [ -121.88175679199999, 49.216009551000106 ], [ -121.881766917999968, 49.216020398000083 ], [ -121.881844702999956, 49.216150504000069 ], [ -121.881895201, 49.21633998900009 ], [ -121.881947205999907, 49.218045090000039 ], [ -121.881876925999933, 49.218195019000113 ], [ -121.881371986999966, 49.217897394 ], [ -121.880912484999982, 49.217475205000014 ], [ -121.881006951999979, 49.216410748000051 ], [ -121.881484347999972, 49.216428999000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79818834", "BldgCostT": "54023334", "sL_LossRatio": "0.909721404275672", "sL_AssetLoss": "195272.2", "sL_BldgLoss": "177643.3", "sL_StrLoss": "134144.3", "sL_NStrLoss": "43499", "sL_ContLoss": "17628.9", "geom_point": "0101000020E61000007F95424165765EC04104FB33AC984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.821255491999963, 49.205776007000026 ], [ -121.821317053999934, 49.203383846000094 ], [ -121.821318221999917, 49.2033388810001 ], [ -121.821324916999941, 49.203079697000106 ], [ -121.821392477999922, 49.202862294000113 ], [ -121.821512217999953, 49.202908958000087 ], [ -121.82160787199993, 49.202927910000014 ], [ -121.82173120799996, 49.202938176000082 ], [ -121.821840964999936, 49.2029392950001 ], [ -121.821937051999967, 49.202940271000067 ], [ -121.822005670999886, 49.20294097900009 ], [ -121.82215665299999, 49.202942510000128 ], [ -121.82234879, 49.202944475000052 ], [ -121.82262352, 49.202938272000011 ], [ -121.822747233999948, 49.202930551000037 ], [ -121.82298100899996, 49.202914930000141 ], [ -121.823269228999919, 49.202917871000047 ], [ -121.823379039999935, 49.202919 ], [ -121.823653537999959, 49.202921787000051 ], [ -121.82381757899999, 49.202950436000087 ], [ -121.824117839999928, 49.203025469000053 ], [ -121.824294531999939, 49.203099233000131 ], [ -121.824539234999975, 49.203200680000045 ], [ -121.824810328999945, 49.203347361000063 ], [ -121.825055461999938, 49.203430832000059 ], [ -121.82519143399999, 49.203486185000031 ], [ -121.825314521999957, 49.203505416000056 ], [ -121.825627652999984, 49.203616546000035 ], [ -121.82580481599993, 49.203672321000063 ], [ -121.826077599999948, 49.20374705600009 ], [ -121.826404654999976, 49.203849354000056 ], [ -121.826609287999943, 49.203905398000124 ], [ -121.826937914999945, 49.204056624000131 ], [ -121.827202791999952, 49.204159589000014 ], [ -121.827250140000018, 49.199998098000059 ], [ -121.827262032999954, 49.198954752000084 ], [ -121.827268486999955, 49.198386200000101 ], [ -121.827274094999979, 49.190715190000027 ], [ -121.841110946999919, 49.19080774500005 ], [ -121.846517489999911, 49.190843419000061 ], [ -121.848996399999919, 49.190859698000082 ], [ -121.849009696999957, 49.188760313000031 ], [ -121.849014951999962, 49.18857370800005 ], [ -121.849075977999945, 49.188576062000088 ], [ -121.849100017999959, 49.188307104000117 ], [ -121.854572297999979, 49.188517953000023 ], [ -121.854559599999945, 49.188660222000088 ], [ -121.855476675999981, 49.188695529 ], [ -121.855361854999927, 49.189982155000045 ], [ -121.856836879999904, 49.18999676500006 ], [ -121.856828439999902, 49.190363 ], [ -121.859375693999979, 49.19046099300003 ], [ -121.85938838499996, 49.190318656000024 ], [ -121.859875566999975, 49.190337390000096 ], [ -121.859907581999948, 49.189978266000026 ], [ -121.860131012999986, 49.189986858000118 ], [ -121.86016103299994, 49.188680287000061 ], [ -121.861807569999925, 49.188696528000051 ], [ -121.861789, 49.18950594600004 ], [ -121.861377359, 49.189501888000066 ], [ -121.861365139999961, 49.190034306000051 ], [ -121.86301064299991, 49.190097546000089 ], [ -121.863017739999961, 49.189787919000068 ], [ -121.863429382999925, 49.18979197000003 ], [ -121.86343556599995, 49.189522164000032 ], [ -121.864010163, 49.189527818000037 ], [ -121.864128815999919, 49.188195456000059 ], [ -121.863994739999939, 49.188190305000056 ], [ -121.864177715999958, 49.186135579000059 ], [ -121.863965067999928, 49.186127410000076 ], [ -121.864019090999932, 49.185520747000076 ], [ -121.864015607999974, 49.185520613000023 ], [ -121.864019233999969, 49.185479896000096 ], [ -121.863939879999947, 49.18547911600011 ], [ -121.863946058, 49.185209310000111 ], [ -121.863122845999925, 49.185201208000095 ], [ -121.863129027999932, 49.184931401000064 ], [ -121.861894218999979, 49.184919238000113 ], [ -121.86188803, 49.185189045000058 ], [ -121.860241608999928, 49.18517280700005 ], [ -121.860254004999916, 49.184633193000096 ], [ -121.859842404999938, 49.184629130000047 ], [ -121.859854802999948, 49.184089518000086 ], [ -121.859443207999945, 49.184085453000073 ], [ -121.85944940899995, 49.183815646000042 ], [ -121.858626221999913, 49.183807514000087 ], [ -121.858644839999926, 49.182998095000094 ], [ -121.858233252999952, 49.182994026000109 ], [ -121.858242957999963, 49.182572259000011 ], [ -121.852977202999966, 49.182369524000109 ], [ -121.853105921999912, 49.180927743000069 ], [ -121.853056294999959, 49.180925831000053 ], [ -121.853109371999949, 49.180331292000041 ], [ -121.853100032999961, 49.180330933000072 ], [ -121.853140493999945, 49.179877708000078 ], [ -121.853073661999986, 49.179875133000031 ], [ -121.853080678999973, 49.179796522000103 ], [ -121.852843686999989, 49.179787391000076 ], [ -121.852796492999957, 49.180316012000048 ], [ -121.852959046999914, 49.18032227500003 ], [ -121.852638139999954, 49.183916513000085 ], [ -121.849087341999933, 49.183779653000038 ], [ -121.849159417999928, 49.180894709000022 ], [ -121.849257613999967, 49.178996888000057 ], [ -121.849244106999933, 49.178718590000116 ], [ -121.849282369999926, 49.178673430000153 ], [ -121.849351418999944, 49.178592011000042 ], [ -121.849523279999957, 49.178527397000011 ], [ -121.850189310999966, 49.178169907 ], [ -121.850641197999934, 49.177720303000044 ], [ -121.850813318999954, 49.177607006000066 ], [ -121.851000957999958, 49.177521649000035 ], [ -121.851083708999951, 49.177484011000047 ], [ -121.851533486999983, 49.177334508000058 ], [ -121.85219431199999, 49.177234597000059 ], [ -121.852190007, 49.177118449000019 ], [ -121.852186549999928, 49.177025188000123 ], [ -121.852184381, 49.176966470000075 ], [ -121.852180381999929, 49.176858645000017 ], [ -121.852174186999974, 49.176691102000092 ], [ -121.853267098999979, 49.176470809000058 ], [ -121.854073813999918, 49.176273700000117 ], [ -121.856570796999961, 49.175406011000142 ], [ -121.856558323999963, 49.175807103000125 ], [ -121.856555395999962, 49.175900913000127 ], [ -121.856552724999915, 49.175986962000103 ], [ -121.856533780999939, 49.176594639000093 ], [ -121.858357723, 49.176169943000097 ], [ -121.862228331, 49.176331495000099 ], [ -121.866951971999953, 49.177231464000052 ], [ -121.869992572999976, 49.178571830000045 ], [ -121.870286127999961, 49.17853394600013 ], [ -121.870368499999969, 49.178525071000116 ], [ -121.870776129999953, 49.178481100000056 ], [ -121.870896814, 49.178436092000098 ], [ -121.87104022299998, 49.178335201000039 ], [ -121.871150020999949, 49.178443100000067 ], [ -121.871185203999943, 49.178463137000115 ], [ -121.872681085999929, 49.179315105000093 ], [ -121.873527211999956, 49.179756 ], [ -121.874184100999969, 49.179977697 ], [ -121.876433989999924, 49.180530093000108 ], [ -121.883015703999916, 49.181841397000078 ], [ -121.883412785999923, 49.181898091000029 ], [ -121.883739197999915, 49.181916890000053 ], [ -121.885218403999957, 49.181921193000122 ], [ -121.886363321999937, 49.182244403000055 ], [ -121.88608653299994, 49.18245475500003 ], [ -121.885984439999945, 49.182532356000131 ], [ -121.885949642999933, 49.182558808000053 ], [ -121.885919052999938, 49.182658522000118 ], [ -121.885822047999937, 49.182682378000059 ], [ -121.885770309999955, 49.182695100000096 ], [ -121.885375122999974, 49.182529913000053 ], [ -121.885172009999962, 49.182444982000092 ], [ -121.884891886999981, 49.182383796000082 ], [ -121.884450733999969, 49.182378133000078 ], [ -121.88414469199995, 49.182374195000058 ], [ -121.883764312, 49.182448901000029 ], [ -121.88318788699999, 49.182562094000055 ], [ -121.882424494999952, 49.182858395000054 ], [ -121.88134649099996, 49.183452801000087 ], [ -121.880767766999952, 49.183694893000073 ], [ -121.880309293999915, 49.183850398000047 ], [ -121.877956611999949, 49.184531192000037 ], [ -121.877206988999887, 49.184810904000123 ], [ -121.876506410999923, 49.185126704 ], [ -121.875769209999973, 49.185514084000069 ], [ -121.874969917999948, 49.185688092000113 ], [ -121.874020303999899, 49.185840208000059 ], [ -121.873775914999925, 49.18584069300006 ], [ -121.873446258999962, 49.185750578000075 ], [ -121.871892976999959, 49.185325898 ], [ -121.869760211999946, 49.184881547000074 ], [ -121.869235410999963, 49.184772201000058 ], [ -121.868909997999964, 49.184648799000058 ], [ -121.868383181999931, 49.184393024000073 ], [ -121.867706088999952, 49.184064290000052 ], [ -121.867496491999972, 49.183920084000057 ], [ -121.867417815999914, 49.183787284000033 ], [ -121.867381294999959, 49.185663106000085 ], [ -121.867305019999918, 49.189534166000094 ], [ -121.867240707999926, 49.192796783000055 ], [ -121.863661500999953, 49.19275130000004 ], [ -121.859698292999909, 49.192746893000084 ], [ -121.856712927999979, 49.192725720000041 ], [ -121.854723077999921, 49.19271154700008 ], [ -121.85314691, 49.192700294000083 ], [ -121.853131349999927, 49.193808490000045 ], [ -121.853065, 49.198536991000054 ], [ -121.852871087999972, 49.198709007000076 ], [ -121.853052601999977, 49.198875600000079 ], [ -121.853451965999966, 49.199370518000123 ], [ -121.853660813999966, 49.199629302000027 ], [ -121.853793807999978, 49.199755197000087 ], [ -121.854212389999986, 49.199998834000063 ], [ -121.854951625999917, 49.200429100000044 ], [ -121.855310097999947, 49.200580905000102 ], [ -121.855681285999978, 49.200683497000135 ], [ -121.856404978999976, 49.200837607000018 ], [ -121.858070687999913, 49.201113595000045 ], [ -121.858395656999917, 49.201174482000098 ], [ -121.858535893999914, 49.201175850000041 ], [ -121.858700384999935, 49.20118648800014 ], [ -121.858891893999953, 49.201215371000011 ], [ -121.859028714999937, 49.20123470700009 ], [ -121.85935687099996, 49.201291929000021 ], [ -121.859521154, 49.201311524000083 ], [ -121.85978088399996, 49.201359083000085 ], [ -121.859985735999913, 49.201406075000122 ], [ -121.860163123999939, 49.201452806000127 ], [ -121.860245051999968, 49.201471607000066 ], [ -121.860408906999936, 49.201509209000058 ], [ -121.86060045100001, 49.201538078000091 ], [ -121.860915077999934, 49.201586166000034 ], [ -121.86121620599998, 49.201625113000048 ], [ -121.861434956999943, 49.201663245000155 ], [ -121.861748963999958, 49.201738320000054 ], [ -121.861995008999898, 49.201785714000039 ], [ -121.862172589999901, 49.201823461000089 ], [ -121.862500737999966, 49.201880650000184 ], [ -121.862719732999935, 49.201909808000039 ], [ -121.862924591999914, 49.2019567930001 ], [ -121.86311610499996, 49.201985670000084 ], [ -121.863335307999961, 49.202005811000035 ], [ -121.863705646999932, 49.202018450000018 ], [ -121.863980122999948, 49.202021157000068 ], [ -121.864227393999968, 49.202014600000034 ], [ -121.864556991999947, 49.202008842000076 ], [ -121.86488658899998, 49.202003085000058 ], [ -121.865203095999945, 49.201970212000056 ], [ -121.865313075999936, 49.201962289000093 ], [ -121.865450762999956, 49.201945654000085 ], [ -121.865781612999939, 49.20188593600006 ], [ -121.865822972999965, 49.201877336000116 ], [ -121.865850627999947, 49.20186861400007 ], [ -121.86590593599999, 49.201851168000118 ], [ -121.865947311999903, 49.201842592000034 ], [ -121.866348428999927, 49.201711592000059 ], [ -121.866486507999923, 49.201676959000046 ], [ -121.866790059999943, 49.201607975000059 ], [ -121.86706640700001, 49.201529725000064 ], [ -121.86731532099995, 49.201451207000041 ], [ -121.867453587999989, 49.201407591000084 ], [ -121.867605782999988, 49.201355106000051 ], [ -121.867799576999971, 49.201285051000049 ], [ -121.86793806499999, 49.201232441000137 ], [ -121.868187146999958, 49.201144915000029 ], [ -121.868464120999931, 49.201039696000166 ], [ -121.86867184299993, 49.200960769000091 ], [ -121.868887942999891, 49.200882613000026 ], [ -121.869400829999933, 49.200902287000119 ], [ -121.869399993999963, 49.200911694000077 ], [ -121.868140605999912, 49.20141359200008 ], [ -121.867833215999923, 49.201581706000077 ], [ -121.867803, 49.201771095000012 ], [ -121.86808571499995, 49.201980492000118 ], [ -121.868598390999963, 49.201815193000087 ], [ -121.869350756999935, 49.201465129000056 ], [ -121.869081051999942, 49.204496462000037 ], [ -121.863741651999931, 49.204291532000141 ], [ -121.863714437999946, 49.204596990000063 ], [ -121.858240221999964, 49.204386609000039 ], [ -121.858247697999943, 49.204302815000055 ], [ -121.857485202999953, 49.204273489000052 ], [ -121.857564397999923, 49.2033859040001 ], [ -121.852899400999945, 49.2032063690001 ], [ -121.852900571999925, 49.203193268000078 ], [ -121.851931369999932, 49.203155942000066 ], [ -121.852140322999944, 49.2008171250001 ], [ -121.848609202999924, 49.200681060000058 ], [ -121.848660444999908, 49.200107960000032 ], [ -121.847934178999964, 49.200079960000053 ], [ -121.847886368999923, 49.200614579000067 ], [ -121.847460319, 49.200598151000129 ], [ -121.847428269999966, 49.200956489000085 ], [ -121.845499861999954, 49.200882111000062 ], [ -121.845447218999951, 49.201470435000019 ], [ -121.844935027999952, 49.201450674000057 ], [ -121.844924800999934, 49.201564947000101 ], [ -121.843209045999956, 49.20149873400004 ], [ -121.843099389999963, 49.20272348800011 ], [ -121.842050133999962, 49.202682982000042 ], [ -121.8419889799999, 49.20336581100004 ], [ -121.836911954999891, 49.203169674000065 ], [ -121.836656408999929, 49.206019332000018 ], [ -121.835241413999938, 49.205964625000043 ], [ -121.83519347599993, 49.206498965000037 ], [ -121.832264705999989, 49.206385672000074 ], [ -121.832171204999923, 49.207427135000074 ], [ -121.826696798999961, 49.207215154000075 ], [ -121.826959926999947, 49.204288014000049 ], [ -121.82581391799999, 49.204243603000066 ], [ -121.82566975, 49.205846994000126 ], [ -121.824920099999972, 49.205817937000056 ], [ -121.824754911999989, 49.207654611000066 ], [ -121.824507576999963, 49.207645023000076 ], [ -121.82419468099998, 49.211123414000035 ], [ -121.823333039999937, 49.211090008000106 ], [ -121.823324625999973, 49.211183521000081 ], [ -121.821192398999941, 49.211123677000018 ], [ -121.821214010999981, 49.210353405000099 ], [ -121.82122040199999, 49.207139301000019 ], [ -121.821255491999963, 49.205776007000026 ] ], [ [ -121.831480307999954, 49.20456679500009 ], [ -121.831353623999973, 49.204753403000041 ], [ -121.831833677999967, 49.204704995000014 ], [ -121.833028709999951, 49.20412389900013 ], [ -121.833765219999947, 49.203726498000023 ], [ -121.834157906999934, 49.203397484000106 ], [ -121.833996208999949, 49.203252305 ], [ -121.833694498999975, 49.203220889000121 ], [ -121.833344902999926, 49.203514309000099 ], [ -121.832206598999946, 49.204069786000062 ], [ -121.831480307999954, 49.20456679500009 ] ], [ [ -121.839813080999946, 49.200549096000074 ], [ -121.839647901, 49.200493585000068 ], [ -121.839249911999971, 49.200524894000104 ], [ -121.838697000999929, 49.200717200000099 ], [ -121.838120502999942, 49.200729991000081 ], [ -121.837744922, 49.200888102000064 ], [ -121.837028907999979, 49.201024792000062 ], [ -121.835072193999949, 49.201859405000036 ], [ -121.834234115999919, 49.202488902000056 ], [ -121.834132594000025, 49.202695397000099 ], [ -121.834220208999952, 49.203074209000114 ], [ -121.834398291999918, 49.203148305000056 ], [ -121.835023619999973, 49.202776600000036 ], [ -121.83554578899999, 49.202161311000076 ], [ -121.836077785999962, 49.201734099000078 ], [ -121.836783584, 49.201471993000084 ], [ -121.839281702, 49.20090229700002 ], [ -121.839768803999959, 49.200674510000056 ], [ -121.839813080999946, 49.200549096000074 ] ], [ [ -121.840186697999982, 49.200372497000068 ], [ -121.840402601999983, 49.200554799000074 ], [ -121.840664918, 49.200520598000047 ], [ -121.841249502999972, 49.200140413000042 ], [ -121.842748813999918, 49.199399805000084 ], [ -121.842606511999975, 49.199065099000137 ], [ -121.842412689999918, 49.199072195000078 ], [ -121.841505864999959, 49.199552971000109 ], [ -121.841207172999958, 49.199711327000045 ], [ -121.840148098999933, 49.200272791000089 ], [ -121.840186697999982, 49.200372497000068 ] ], [ [ -121.852732083999967, 49.19987690300011 ], [ -121.85367580599997, 49.200614604000037 ], [ -121.854151194999986, 49.200862413000088 ], [ -121.854383797999958, 49.200819712000055 ], [ -121.854482402999935, 49.200712893000073 ], [ -121.854555191999964, 49.200569100000088 ], [ -121.853380422999933, 49.199740200000072 ], [ -121.852869283999922, 49.199267295000084 ], [ -121.852462002999943, 49.19905509000008 ], [ -121.852253412999943, 49.199032800000062 ], [ -121.852078787000011, 49.199025193000104 ], [ -121.852090511999961, 49.19913350500012 ], [ -121.852732083999967, 49.19987690300011 ] ], [ [ -121.83496474899998, 49.199740664000025 ], [ -121.835108744999928, 49.198135398000062 ], [ -121.837775423999986, 49.19823850500007 ], [ -121.837861678999971, 49.197276261000098 ], [ -121.839064020999942, 49.197322728000117 ], [ -121.839125362999965, 49.196638190000158 ], [ -121.839993128999936, 49.196671718000076 ], [ -121.84002424399992, 49.196324411000056 ], [ -121.845497427999973, 49.196535718000064 ], [ -121.845463527999939, 49.196914603000067 ], [ -121.845644562999965, 49.196921587000084 ], [ -121.845821482999895, 49.194944045000042 ], [ -121.84890739, 49.195063057000041 ], [ -121.849101231999924, 49.192894571000124 ], [ -121.847521351999944, 49.192833651000079 ], [ -121.84752228, 49.192823277000102 ], [ -121.845241475999941, 49.192735289999987 ], [ -121.845285009999955, 49.192248688000078 ], [ -121.84397771299993, 49.192198233000049 ], [ -121.843912580999969, 49.192925997000039 ], [ -121.839449227999964, 49.192753618 ], [ -121.839429598999985, 49.192972704000091 ], [ -121.836643926999955, 49.192865023000138 ], [ -121.836567624999972, 49.193716070000058 ], [ -121.831094812999964, 49.193504307000055 ], [ -121.831133063, 49.193078254000049 ], [ -121.830783902999926, 49.193064735000107 ], [ -121.830627910999951, 49.194802133000032 ], [ -121.831494629999952, 49.19483569000009 ], [ -121.831171962999932, 49.198429785000073 ], [ -121.830614869999962, 49.198408216000111 ], [ -121.830562027999989, 49.198996664000127 ], [ -121.830767516999956, 49.199004620999986 ], [ -121.83067714, 49.200011094000047 ], [ -121.831533768, 49.200044257000108 ], [ -121.831572807999962, 49.199609418000172 ], [ -121.83496474899998, 49.199740664000025 ] ], [ [ -121.843108409999971, 49.198691987000068 ], [ -121.842843612999957, 49.198887091000067 ], [ -121.843735790999943, 49.198878498000127 ], [ -121.844372678999918, 49.198614995000121 ], [ -121.844853998999938, 49.198593687000027 ], [ -121.845824217999962, 49.198206297000119 ], [ -121.848229888, 49.198086700000147 ], [ -121.84856059399999, 49.198018315000056 ], [ -121.84872979, 49.197786204000032 ], [ -121.849419113999957, 49.197712102000025 ], [ -121.850034190999978, 49.197799004000089 ], [ -121.851863802999972, 49.198815903000096 ], [ -121.852165596999924, 49.198854298000121 ], [ -121.852711802999963, 49.198914099000078 ], [ -121.851728101000035, 49.198203389000035 ], [ -121.850720708999958, 49.197824608000076 ], [ -121.849940800999946, 49.197645193000021 ], [ -121.849134814999928, 49.197556902000017 ], [ -121.847427717999949, 49.197754808000028 ], [ -121.844506307999964, 49.198256094000065 ], [ -121.843108409999971, 49.198691987000068 ] ], [ [ -121.854660512999885, 49.200787009000059 ], [ -121.854529882999969, 49.201027696000025 ], [ -121.855348805999967, 49.201269794000012 ], [ -121.858441803999966, 49.20169700900005 ], [ -121.860105894999961, 49.20218131200005 ], [ -121.860681397999954, 49.202214009000073 ], [ -121.861026184999901, 49.202100100000088 ], [ -121.861527912, 49.201843702000069 ], [ -121.859939307999937, 49.201612989000097 ], [ -121.858916586999925, 49.201332403000073 ], [ -121.85798480399994, 49.201286906000071 ], [ -121.856425321999936, 49.201047602000095 ], [ -121.854993003999937, 49.200664502000052 ], [ -121.854813798999913, 49.200661603000071 ], [ -121.854660512999885, 49.200787009000059 ] ], [ [ -121.867076282999946, 49.201655697000042 ], [ -121.86540591, 49.202142789000092 ], [ -121.863317789999925, 49.20214990900007 ], [ -121.862345782999924, 49.202014596000048 ], [ -121.861603598999949, 49.202060204000141 ], [ -121.861216789999958, 49.202164204000034 ], [ -121.86092559299999, 49.202279516000019 ], [ -121.860951019999959, 49.202423402000136 ], [ -121.862154388999954, 49.20260569400007 ], [ -121.863197298999978, 49.202669786000094 ], [ -121.8650923899999, 49.202617109000101 ], [ -121.867064294999949, 49.202231110000113 ], [ -121.867672391, 49.20203029200011 ], [ -121.867496699999961, 49.201893589000086 ], [ -121.867214907999966, 49.201657188000112 ], [ -121.867076282999946, 49.201655697000042 ] ], [ [ -121.863172298999928, 49.183042755000066 ], [ -121.863209384999905, 49.181423915000011 ], [ -121.864228720999975, 49.18143394600007 ], [ -121.864259295999929, 49.181090546000064 ], [ -121.864532742999955, 49.181101051000098 ], [ -121.864624938999953, 49.180065451000132 ], [ -121.866533212999968, 49.180138748000047 ], [ -121.866619167999914, 49.179172749000088 ], [ -121.865781469999945, 49.179140576000052 ], [ -121.865929312999953, 49.177479315000056 ], [ -121.86575137199999, 49.177472480000098 ], [ -121.865767637999966, 49.177289699000049 ], [ -121.86168154399995, 49.177132672000035 ], [ -121.861691295999947, 49.177023199000068 ], [ -121.861632777999958, 49.177020948000091 ], [ -121.8616296269999, 49.177056319000123 ], [ -121.86114591099999, 49.17703772000003 ], [ -121.86114470699999, 49.177051231000057 ], [ -121.860456932999938, 49.177024781000085 ], [ -121.860440486999934, 49.177209347000016 ], [ -121.860027554999959, 49.177193465000109 ], [ -121.859909337999966, 49.178519957000049 ], [ -121.858835879999972, 49.178478662000067 ], [ -121.858529297999894, 49.181917482000053 ], [ -121.859081240999927, 49.18192293700011 ], [ -121.85908744399994, 49.181653130000072 ], [ -121.861556898999936, 49.181677503000117 ], [ -121.86153213899992, 49.182756729000069 ], [ -121.861943723999943, 49.182760786000053 ], [ -121.861937535999957, 49.183030592000094 ], [ -121.863172298999928, 49.183042755000066 ] ], [ [ -121.869964328, 49.181760082000054 ], [ -121.869876103999985, 49.182752325000045 ], [ -121.870780050999926, 49.182787003000087 ], [ -121.870774674999964, 49.182847481000131 ], [ -121.871410204999961, 49.182853692000052 ], [ -121.871407036999969, 49.182993033000074 ], [ -121.872074400999921, 49.183018625000031 ], [ -121.872078771999952, 49.182969438000065 ], [ -121.875697699999975, 49.183108151000049 ], [ -121.87571755399992, 49.182884543000107 ], [ -121.873249813999948, 49.182789969000062 ], [ -121.873311152, 49.182099547000099 ], [ -121.871834608999947, 49.182042932000094 ], [ -121.871847441999961, 49.181898532000069 ], [ -121.871114293999966, 49.18187041300007 ], [ -121.871197759000012, 49.180931400000098 ], [ -121.870219789999936, 49.180893884000092 ], [ -121.870200015999927, 49.181762389 ], [ -121.869964328, 49.181760082000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.925423728813559", "sL_AssetLoss": "1475", "sL_BldgLoss": "1365", "sL_StrLoss": "1110", "sL_NStrLoss": "255", "sL_ContLoss": "110", "geom_point": "0101000020E610000058241E37D9765EC081966C44C9954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.856866578999956, 49.17083644900007 ], [ -121.856872792, 49.170566642000033 ], [ -121.855638341999935, 49.170554414000023 ], [ -121.85566321899995, 49.169475189000117 ], [ -121.85689764199995, 49.169487415000077 ], [ -121.856891429999948, 49.169757222000086 ], [ -121.85771438399999, 49.169765367000082 ], [ -121.857708175, 49.170035173 ], [ -121.858531132999985, 49.170043311000029 ], [ -121.858512521999927, 49.17085273100006 ], [ -121.856866578999956, 49.17083644900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88519667", "BldgCostT": "60256667", "sL_LossRatio": "0.91068140169605", "sL_AssetLoss": "223024.1", "sL_BldgLoss": "203103.9", "sL_StrLoss": "153515.9", "sL_NStrLoss": "49588", "sL_ContLoss": "19920.2", "geom_point": "0101000020E6100000D2E4522A9B765EC0E0E9DF3FA7954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.862228331, 49.176331495000099 ], [ -121.858357723, 49.176169943000097 ], [ -121.856533780999939, 49.176594639000093 ], [ -121.856552724999915, 49.175986962000103 ], [ -121.856555395999962, 49.175900913000127 ], [ -121.856558323999963, 49.175807103000125 ], [ -121.856570796999961, 49.175406011000142 ], [ -121.854073813999918, 49.176273700000117 ], [ -121.853267098999979, 49.176470809000058 ], [ -121.852174186999974, 49.176691102000092 ], [ -121.852001522999927, 49.176727106000058 ], [ -121.851867907999946, 49.176754967000115 ], [ -121.851836138999971, 49.176761601000074 ], [ -121.851728656999967, 49.176784018000035 ], [ -121.850006506999989, 49.177143090000122 ], [ -121.849176818999979, 49.177289602000059 ], [ -121.848759987999983, 49.177315892000095 ], [ -121.847946495999963, 49.177281802000095 ], [ -121.847401173999941, 49.177178529000074 ], [ -121.847276979999933, 49.177154989000101 ], [ -121.845783138999948, 49.176687963000028 ], [ -121.843727, 49.176045089000056 ], [ -121.842267801999952, 49.175695698000048 ], [ -121.84188429299995, 49.175625916000087 ], [ -121.841738822999957, 49.17585352000004 ], [ -121.841676528, 49.175833618000048 ], [ -121.841077677999948, 49.175664616000084 ], [ -121.840524584999969, 49.175547006000087 ], [ -121.840080202999928, 49.175426575000081 ], [ -121.839836958999953, 49.17538895800007 ], [ -121.839549331999962, 49.175374131000062 ], [ -121.839118075999963, 49.175279695000043 ], [ -121.837760464999974, 49.174982389000085 ], [ -121.837406111999954, 49.174904789000102 ], [ -121.836387211999963, 49.17454309500004 ], [ -121.835587490999913, 49.174058796000033 ], [ -121.835264097000021, 49.173518547000093 ], [ -121.834980507999944, 49.173044808000093 ], [ -121.834565405999982, 49.172646011000047 ], [ -121.833889199999987, 49.172170293000065 ], [ -121.833700911999983, 49.172079952000097 ], [ -121.831191206, 49.170875702000075 ], [ -121.830263293999948, 49.170595203000069 ], [ -121.830226524999915, 49.170590520000069 ], [ -121.830194917999975, 49.170340589000041 ], [ -121.830206002999901, 49.168946928000089 ], [ -121.830206422999964, 49.168894223000116 ], [ -121.830221571999942, 49.166996248000039 ], [ -121.830229117999977, 49.166051760000123 ], [ -121.830239990999928, 49.164686117000045 ], [ -121.830222305999939, 49.161473607000083 ], [ -121.835451513999928, 49.161575097000089 ], [ -121.847674557999966, 49.16169867300006 ], [ -121.848026804999947, 49.161702203000068 ], [ -121.85220300099995, 49.161719988000108 ], [ -121.863010112999945, 49.161766307000022 ], [ -121.865361384999972, 49.161753897000054 ], [ -121.87436750199997, 49.161810193000058 ], [ -121.874375507999929, 49.166373754000112 ], [ -121.874380207999977, 49.169068996000085 ], [ -121.874378159999978, 49.169154212000144 ], [ -121.874350124999978, 49.170335601 ], [ -121.874346897999899, 49.17508540300004 ], [ -121.874292895999986, 49.176233797000108 ], [ -121.874074101999909, 49.176472499000099 ], [ -121.871050232, 49.178329055000113 ], [ -121.87104022299998, 49.178335201000039 ], [ -121.870896814, 49.178436092000098 ], [ -121.870776129999953, 49.178481100000056 ], [ -121.870368499999969, 49.178525071000116 ], [ -121.870286127999961, 49.17853394600013 ], [ -121.869992572999976, 49.178571830000045 ], [ -121.866951971999953, 49.177231464000052 ], [ -121.862228331, 49.176331495000099 ] ], [ [ -121.849744162999983, 49.174419979000113 ], [ -121.849749709999983, 49.174357884000116 ], [ -121.848493241999932, 49.174309425000033 ], [ -121.848698396999964, 49.172013488000069 ], [ -121.848510284999946, 49.172006232000072 ], [ -121.848761268999937, 49.169197218000079 ], [ -121.848474059999916, 49.169186138000072 ], [ -121.848478727999975, 49.16913389500008 ], [ -121.848262960999961, 49.169131743000072 ], [ -121.848276729999981, 49.168538131000055 ], [ -121.843496730999945, 49.168353606000011 ], [ -121.843627212999962, 49.16689494200002 ], [ -121.842235477999978, 49.166841176000013 ], [ -121.842498421999949, 49.163902416000028 ], [ -121.842324264999931, 49.16389568600006 ], [ -121.842324614999924, 49.163891768000063 ], [ -121.840546118999939, 49.163823031000078 ], [ -121.840526942999958, 49.164037261000033 ], [ -121.835057605999936, 49.163825691000064 ], [ -121.835133600999924, 49.162977780000105 ], [ -121.834490315999957, 49.162952878000119 ], [ -121.834410282999968, 49.163845708000103 ], [ -121.832676907999911, 49.163778587000138 ], [ -121.83263985, 49.164191802000062 ], [ -121.83275537599999, 49.16419627699999 ], [ -121.832617596999953, 49.165732586000068 ], [ -121.834256321999987, 49.165796041000085 ], [ -121.834051883999976, 49.168076318000011 ], [ -121.834907241999971, 49.168109429000133 ], [ -121.834834116999971, 49.168925173000034 ], [ -121.835173884000014, 49.168938324000109 ], [ -121.835097865999984, 49.16978638299999 ], [ -121.83720906799999, 49.169868072000114 ], [ -121.837150934999954, 49.170516896000052 ], [ -121.838393169, 49.170564942000041 ], [ -121.838318578999974, 49.171397666000104 ], [ -121.839289790999942, 49.171435220000035 ], [ -121.839258117999918, 49.171788895000105 ], [ -121.843525767999935, 49.171953807000101 ], [ -121.843381970999943, 49.173561081000109 ], [ -121.845494700999922, 49.173642659000045 ], [ -121.845446552999974, 49.174181079000086 ], [ -121.847574564999917, 49.174263204000077 ], [ -121.847533555999959, 49.17472201100005 ], [ -121.848425423999956, 49.174756418000115 ], [ -121.84845991499995, 49.174370448000055 ], [ -121.849744162999983, 49.174419979000113 ] ], [ [ -121.860850161999949, 49.164070060000064 ], [ -121.860793507999958, 49.164706075 ], [ -121.855496772999985, 49.164502188000014 ], [ -121.855400771999939, 49.165578540000084 ], [ -121.855513134999939, 49.165582868000129 ], [ -121.855444358999975, 49.166353965000063 ], [ -121.855470484999969, 49.166354972000128 ], [ -121.855259639999971, 49.168718750000103 ], [ -121.855486231999933, 49.168727478000029 ], [ -121.855305759999922, 49.170750657000042 ], [ -121.855817746999932, 49.170770374000128 ], [ -121.855775130999959, 49.171248152000011 ], [ -121.859709045000017, 49.17139957100013 ], [ -121.859611411999964, 49.172495148000039 ], [ -121.86470114399998, 49.17269084100009 ], [ -121.864690973999956, 49.172805099000051 ], [ -121.865956206999982, 49.172853707000073 ], [ -121.865944344999946, 49.172987030000108 ], [ -121.867301969999957, 49.173039171000084 ], [ -121.867293691000015, 49.173132255000084 ], [ -121.867939555999982, 49.1731570540001 ], [ -121.867932533000015, 49.17323601400004 ], [ -121.868412543999966, 49.17325444100004 ], [ -121.868396501999939, 49.17343483300008 ], [ -121.869498017999959, 49.173477113000033 ], [ -121.869487180999926, 49.17359900100012 ], [ -121.870078605999964, 49.173621698000048 ], [ -121.87007474499994, 49.173665132000025 ], [ -121.870504832999956, 49.173669340000018 ], [ -121.87060530199993, 49.172538982000042 ], [ -121.87046035199999, 49.172533420000043 ], [ -121.87077980299999, 49.168939066000114 ], [ -121.87089383599999, 49.168943442000121 ], [ -121.87102075699994, 49.167515171000026 ], [ -121.870960181999976, 49.167512847000047 ], [ -121.871056172999914, 49.166432598000064 ], [ -121.871015851000024, 49.166431051000046 ], [ -121.871069321000036, 49.165829304000106 ], [ -121.87099238699993, 49.165826351000142 ], [ -121.871215703999951, 49.163313023000107 ], [ -121.87108921799998, 49.163308170000043 ], [ -121.87098021599995, 49.164534932000095 ], [ -121.865510681999965, 49.164324907999983 ], [ -121.865537443999955, 49.164024111000103 ], [ -121.865014516999963, 49.164004017000089 ], [ -121.865011743999972, 49.164035176000034 ], [ -121.863451616999953, 49.163975211000086 ], [ -121.863444681999965, 49.164053114000069 ], [ -121.86097264199995, 49.163958050000062 ], [ -121.860962281999946, 49.164074373000034 ], [ -121.860850161999949, 49.164070060000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3063558", "BldgCostT": "1303642", "sL_LossRatio": "0.713502398903358", "sL_AssetLoss": "14590", "sL_BldgLoss": "10410", "sL_StrLoss": "3970", "sL_NStrLoss": "6440", "sL_ContLoss": "4180", "geom_point": "0101000020E61000006FAA83F649755EC0226B4FC1C8964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.82717628199994, 49.17597671300004 ], [ -121.830418858999934, 49.176036614000068 ], [ -121.830226524999915, 49.170590520000069 ], [ -121.830263293999948, 49.170595203000069 ], [ -121.831191206, 49.170875702000075 ], [ -121.833700911999983, 49.172079952000097 ], [ -121.833889199999987, 49.172170293000065 ], [ -121.834565405999982, 49.172646011000047 ], [ -121.834980507999944, 49.173044808000093 ], [ -121.835264097000021, 49.173518547000093 ], [ -121.835587490999913, 49.174058796000033 ], [ -121.836387211999963, 49.17454309500004 ], [ -121.837406111999954, 49.174904789000102 ], [ -121.837760464999974, 49.174982389000085 ], [ -121.839118075999963, 49.175279695000043 ], [ -121.839549331999962, 49.175374131000062 ], [ -121.839836958999953, 49.17538895800007 ], [ -121.840080202999928, 49.175426575000081 ], [ -121.840524584999969, 49.175547006000087 ], [ -121.841077677999948, 49.175664616000084 ], [ -121.841676528, 49.175833618000048 ], [ -121.841738822999957, 49.17585352000004 ], [ -121.83865568899995, 49.175876459000072 ], [ -121.838853363999945, 49.183922615 ], [ -121.83813959299999, 49.183924804000121 ], [ -121.838245538999914, 49.182742384000086 ], [ -121.838122438999989, 49.182737624000104 ], [ -121.838212900999935, 49.181727991000052 ], [ -121.835833423999958, 49.18163596600003 ], [ -121.836155613999935, 49.178041765000074 ], [ -121.837801375999973, 49.178105420000108 ], [ -121.837922043999953, 49.176758630000101 ], [ -121.833721762999943, 49.176596121000131 ], [ -121.833879912999976, 49.174832633000065 ], [ -121.833497264999892, 49.174817820000079 ], [ -121.833571944999974, 49.173985104000074 ], [ -121.832600686999939, 49.1739474990001 ], [ -121.832658886999965, 49.17329868100007 ], [ -121.832453963, 49.173290745000031 ], [ -121.832166190999942, 49.176498525000028 ], [ -121.82940304600001, 49.176391489000132 ], [ -121.82939567399994, 49.176473595000125 ], [ -121.829643354999973, 49.176483193000131 ], [ -121.829530926999936, 49.177735528000028 ], [ -121.829630733999977, 49.177739395000089 ], [ -121.829506013999946, 49.179128611000124 ], [ -121.829590922999955, 49.179131901000133 ], [ -121.829485657999925, 49.18030436300004 ], [ -121.830619159999955, 49.180348276000075 ], [ -121.830482402999948, 49.181871842000099 ], [ -121.833255165999972, 49.18197920900014 ], [ -121.833080899999956, 49.183921775000066 ], [ -121.829875851999986, 49.183910168000125 ], [ -121.827225130999977, 49.183888117000031 ], [ -121.827191298999963, 49.183768313000051 ], [ -121.827131798999929, 49.183666802000076 ], [ -121.82707502, 49.183381498000074 ], [ -121.827095029999953, 49.18191578800009 ], [ -121.82712236899999, 49.179919130000101 ], [ -121.82717628199994, 49.17597671300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.932460260533562", "sL_AssetLoss": "4321.9", "sL_BldgLoss": "4030", "sL_StrLoss": "3020", "sL_NStrLoss": "1010", "sL_ContLoss": "291.9", "geom_point": "0101000020E610000078D7766684735EC07FE91F0A879A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.80529901299991, 49.205505057000053 ], [ -121.807785063999987, 49.205601855000047 ], [ -121.80746048899999, 49.209195820000041 ], [ -121.805383212999985, 49.20911494200007 ], [ -121.803737774999959, 49.209050849000086 ], [ -121.802773186999929, 49.208608691000052 ], [ -121.802042965999945, 49.208352546000086 ], [ -121.802310984999906, 49.205388636000059 ], [ -121.80529901299991, 49.205505057000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9388750", "BldgCostT": "6475000", "sL_LossRatio": "0.927191608524372", "sL_AssetLoss": "21069", "sL_BldgLoss": "19535", "sL_StrLoss": "14921", "sL_NStrLoss": "4614", "sL_ContLoss": "1534", "geom_point": "0101000020E61000002AB9FDD1FB755EC0A15D4BE915974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.839429521999975, 49.185371153000034 ], [ -121.839481106999983, 49.1847952890001 ], [ -121.838172915999948, 49.184744721000115 ], [ -121.838244086999907, 49.183950436000082 ], [ -121.838137664999977, 49.1839463210001 ], [ -121.83813959299999, 49.183924804000121 ], [ -121.838853363999945, 49.183922615 ], [ -121.83865568899995, 49.175876459000072 ], [ -121.841738822999957, 49.17585352000004 ], [ -121.84188429299995, 49.175625916000087 ], [ -121.842267801999952, 49.175695698000048 ], [ -121.843727, 49.176045089000056 ], [ -121.845783138999948, 49.176687963000028 ], [ -121.847276979999933, 49.177154989000101 ], [ -121.847401173999941, 49.177178529000074 ], [ -121.847946495999963, 49.177281802000095 ], [ -121.848759987999983, 49.177315892000095 ], [ -121.849176818999979, 49.177289602000059 ], [ -121.850006506999989, 49.177143090000122 ], [ -121.851728656999967, 49.176784018000035 ], [ -121.851836138999971, 49.176761601000074 ], [ -121.851867907999946, 49.176754967000115 ], [ -121.852001522999927, 49.176727106000058 ], [ -121.852174186999974, 49.176691102000092 ], [ -121.852180381999929, 49.176858645000017 ], [ -121.852184381, 49.176966470000075 ], [ -121.852186549999928, 49.177025188000123 ], [ -121.852190007, 49.177118449000019 ], [ -121.85219431199999, 49.177234597000059 ], [ -121.851533486999983, 49.177334508000058 ], [ -121.851083708999951, 49.177484011000047 ], [ -121.851000957999958, 49.177521649000035 ], [ -121.850813318999954, 49.177607006000066 ], [ -121.850641197999934, 49.177720303000044 ], [ -121.850189310999966, 49.178169907 ], [ -121.849523279999957, 49.178527397000011 ], [ -121.849351418999944, 49.178592011000042 ], [ -121.849282369999926, 49.178673430000153 ], [ -121.849244106999933, 49.178718590000116 ], [ -121.849257613999967, 49.178996888000057 ], [ -121.849159417999928, 49.180894709000022 ], [ -121.849087341999933, 49.183779653000038 ], [ -121.847166407999964, 49.183705565000089 ], [ -121.847364135999939, 49.181493947000099 ], [ -121.84574399899995, 49.181431432000132 ], [ -121.845920837999927, 49.179454035000028 ], [ -121.845630617999944, 49.179442835000081 ], [ -121.845631949999984, 49.179427931000092 ], [ -121.843915003999911, 49.179361649000072 ], [ -121.843807894999912, 49.180558766000061 ], [ -121.84393099, 49.180563519000081 ], [ -121.843906668999963, 49.180835347000077 ], [ -121.84403020299996, 49.180840117000095 ], [ -121.843931932999965, 49.181938450000054 ], [ -121.845222930999967, 49.181988288000106 ], [ -121.844901413999978, 49.185582495000105 ], [ -121.839429521999975, 49.185371153000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77201835", "BldgCostT": "52243335", "sL_LossRatio": "0.911825194196199", "sL_AssetLoss": "165953.3", "sL_BldgLoss": "151320.4", "sL_StrLoss": "118544.1", "sL_NStrLoss": "32776.3", "sL_ContLoss": "14632.9", "geom_point": "0101000020E61000009C044E3A3A745EC000D50D4EA3984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.817847238999946, 49.210999706000095 ], [ -121.817908041999914, 49.210324849000052 ], [ -121.817541072999944, 49.21031060000012 ], [ -121.817610740999953, 49.209537380000022 ], [ -121.817412915999981, 49.209529698000068 ], [ -121.817718101999944, 49.20614241100003 ], [ -121.817372925999948, 49.206129006000069 ], [ -121.817696712999961, 49.202534994000068 ], [ -121.818237579999959, 49.202555999000012 ], [ -121.818297125999905, 49.201894908000043 ], [ -121.819078407999925, 49.201925242000058 ], [ -121.819593007999984, 49.201945220000056 ], [ -121.819679846, 49.200980780000144 ], [ -121.817910470999962, 49.200912082000059 ], [ -121.817815254999914, 49.200908384000044 ], [ -121.81773510099994, 49.201798196000063 ], [ -121.816872656999976, 49.201764699000073 ], [ -121.816865266999926, 49.201846716000063 ], [ -121.816559066999943, 49.20183482200008 ], [ -121.816408141999887, 49.203509723000117 ], [ -121.812305063999972, 49.203350253000096 ], [ -121.812265386999954, 49.203790120000043 ], [ -121.811323457999919, 49.20375348900005 ], [ -121.811272475999957, 49.20431854400011 ], [ -121.806732372999946, 49.204141865000075 ], [ -121.806612347999973, 49.205470651000049 ], [ -121.805299034, 49.20541950700013 ], [ -121.802156205999907, 49.205297053000074 ], [ -121.802042320999959, 49.206556457000019 ], [ -121.798330856999911, 49.206411728000063 ], [ -121.797255181, 49.205663499000167 ], [ -121.796674176999915, 49.205172027000081 ], [ -121.796766867999935, 49.204148290000084 ], [ -121.79543529099999, 49.204096312000082 ], [ -121.794892404999985, 49.203461588000096 ], [ -121.794516480999945, 49.203142600000092 ], [ -121.792351602999972, 49.201816702000052 ], [ -121.790775930999942, 49.201057571000064 ], [ -121.790826352999886, 49.200501393000089 ], [ -121.790837493999916, 49.200378513000061 ], [ -121.790941867999919, 49.199227200000038 ], [ -121.79050188099994, 49.199210001000033 ], [ -121.790827697999944, 49.195616033000157 ], [ -121.790842204999933, 49.195616600000058 ], [ -121.790984976999965, 49.194041532000057 ], [ -121.794089556999921, 49.194162851000023 ], [ -121.796457668999921, 49.194255330000026 ], [ -121.796132297, 49.197849324000053 ], [ -121.796117790000011, 49.197848757000081 ], [ -121.796004560999933, 49.199099312000094 ], [ -121.80111021499999, 49.199298519000067 ], [ -121.801064243999988, 49.199806841000097 ], [ -121.801948017999933, 49.199841298000102 ], [ -121.801856835999956, 49.200849726000065 ], [ -121.801782135999957, 49.201675834000078 ], [ -121.801840392999921, 49.201678105000028 ], [ -121.80191503199994, 49.200852662000059 ], [ -121.802030406999947, 49.199576638000053 ], [ -121.801126246999971, 49.199541386000085 ], [ -121.801451243999963, 49.195947388000086 ], [ -121.802036582, 49.195970210000063 ], [ -121.802112360999971, 49.195132001000083 ], [ -121.803054771999925, 49.195168739000117 ], [ -121.803065148999949, 49.195053926000071 ], [ -121.802511277999884, 49.195032335000072 ], [ -121.80253613299999, 49.194757365000115 ], [ -121.803189398999976, 49.194803897000085 ], [ -121.804139081999907, 49.194669993000076 ], [ -121.804472512, 49.194538989000115 ], [ -121.804778608999953, 49.194362406000025 ], [ -121.804922106999967, 49.194093184000096 ], [ -121.805059847999928, 49.194028010000125 ], [ -121.805440211999965, 49.193809839000032 ], [ -121.805877429999938, 49.193120214000032 ], [ -121.806088578999933, 49.19209419 ], [ -121.806218734999973, 49.191380473000059 ], [ -121.80617223599991, 49.190637805000108 ], [ -121.805906705999988, 49.190203664000073 ], [ -121.805426413999939, 49.189766524000085 ], [ -121.805064611999967, 49.189608822000068 ], [ -121.80506488499995, 49.189331894000105 ], [ -121.805069080999928, 49.183829096000075 ], [ -121.805059253999914, 49.183055649000032 ], [ -121.805057331999961, 49.18290277500008 ], [ -121.805057231999967, 49.182895049000059 ], [ -121.805341698999925, 49.182871787000053 ], [ -121.806608510999922, 49.182634934000077 ], [ -121.806803907999949, 49.182598398000124 ], [ -121.807333786999934, 49.182208210000077 ], [ -121.808006918999965, 49.181108704000032 ], [ -121.808865491999953, 49.180128816000057 ], [ -121.809326590999916, 49.179809811000069 ], [ -121.811189395999975, 49.178848404000092 ], [ -121.81176222199997, 49.178350001000076 ], [ -121.812975803999933, 49.177552392000067 ], [ -121.815071204999938, 49.176620984000088 ], [ -121.818405716999905, 49.175431794000112 ], [ -121.820405421999965, 49.174966105000124 ], [ -121.823254475999974, 49.174617095 ], [ -121.8236411399999, 49.174500528000102 ], [ -121.823655785999975, 49.174496101000109 ], [ -121.825560409999966, 49.173453499000125 ], [ -121.82668929499999, 49.172691610000058 ], [ -121.826782837999957, 49.172608160000095 ], [ -121.827082065999917, 49.172341206000063 ], [ -121.827586403999959, 49.171891201000058 ], [ -121.828024014999954, 49.171301598000092 ], [ -121.82855989699999, 49.170758886000101 ], [ -121.82915807099999, 49.170612127000084 ], [ -121.829581209, 49.170508297000048 ], [ -121.830226524999915, 49.170590520000069 ], [ -121.830418858999934, 49.176036614000068 ], [ -121.82717628199994, 49.17597671300004 ], [ -121.82712236899999, 49.179919130000101 ], [ -121.827095029999953, 49.18191578800009 ], [ -121.82707502, 49.183381498000074 ], [ -121.827131798999929, 49.183666802000076 ], [ -121.827191298999963, 49.183768313000051 ], [ -121.827225130999977, 49.183888117000031 ], [ -121.829875851999986, 49.183910168000125 ], [ -121.833080899999956, 49.183921775000066 ], [ -121.832932724999935, 49.185573380000093 ], [ -121.830618047, 49.185483756000039 ], [ -121.830591414999915, 49.185780433000161 ], [ -121.831333473999933, 49.185809171000081 ], [ -121.831104408999963, 49.188361151000088 ], [ -121.832114407999924, 49.188400257000126 ], [ -121.832111417999926, 49.188433574000086 ], [ -121.834208237999974, 49.188514731000033 ], [ -121.834342491999976, 49.187017948000097 ], [ -121.839814554000014, 49.187229547000051 ], [ -121.839707069999974, 49.188429464000109 ], [ -121.840659206999973, 49.188466254000033 ], [ -121.840659454, 49.188463503000065 ], [ -121.842362671, 49.188529292000084 ], [ -121.842386693999984, 49.188260943000031 ], [ -121.847858937999902, 49.188472133000062 ], [ -121.847853861, 49.188528934000018 ], [ -121.849014951999962, 49.18857370800005 ], [ -121.849009696999957, 49.188760313000031 ], [ -121.848996399999919, 49.190859698000082 ], [ -121.846517489999911, 49.190843419000061 ], [ -121.841110946999919, 49.19080774500005 ], [ -121.827274094999979, 49.190715190000027 ], [ -121.827268486999955, 49.198386200000101 ], [ -121.827262032999954, 49.198954752000084 ], [ -121.827250140000018, 49.199998098000059 ], [ -121.827202791999952, 49.204159589000014 ], [ -121.826937914999945, 49.204056624000131 ], [ -121.826609287999943, 49.203905398000124 ], [ -121.826404654999976, 49.203849354000056 ], [ -121.826077599999948, 49.20374705600009 ], [ -121.82580481599993, 49.203672321000063 ], [ -121.825627652999984, 49.203616546000035 ], [ -121.825314521999957, 49.203505416000056 ], [ -121.82519143399999, 49.203486185000031 ], [ -121.825055461999938, 49.203430832000059 ], [ -121.824810328999945, 49.203347361000063 ], [ -121.824539234999975, 49.203200680000045 ], [ -121.824294531999939, 49.203099233000131 ], [ -121.824117839999928, 49.203025469000053 ], [ -121.82381757899999, 49.202950436000087 ], [ -121.823653537999959, 49.202921787000051 ], [ -121.823379039999935, 49.202919 ], [ -121.823269228999919, 49.202917871000047 ], [ -121.82298100899996, 49.202914930000141 ], [ -121.822747233999948, 49.202930551000037 ], [ -121.82262352, 49.202938272000011 ], [ -121.82234879, 49.202944475000052 ], [ -121.82215665299999, 49.202942510000128 ], [ -121.822005670999886, 49.20294097900009 ], [ -121.821937051999967, 49.202940271000067 ], [ -121.821840964999936, 49.2029392950001 ], [ -121.82173120799996, 49.202938176000082 ], [ -121.82160787199993, 49.202927910000014 ], [ -121.821512217999953, 49.202908958000087 ], [ -121.821392477999922, 49.202862294000113 ], [ -121.821324916999941, 49.203079697000106 ], [ -121.821318221999917, 49.2033388810001 ], [ -121.821317053999934, 49.203383846000094 ], [ -121.821255491999963, 49.205776007000026 ], [ -121.82122040199999, 49.207139301000019 ], [ -121.821214010999981, 49.210353405000099 ], [ -121.821192398999941, 49.211123677000018 ], [ -121.820947282999938, 49.211116795000052 ], [ -121.820937356999963, 49.211119640000042 ], [ -121.817847238999946, 49.210999706000095 ] ], [ [ -121.810318088999921, 49.200275707000067 ], [ -121.810380790999915, 49.199933913000109 ], [ -121.81089781299994, 49.199597796000091 ], [ -121.812788494999936, 49.199122092000074 ], [ -121.814025801999932, 49.199072195000078 ], [ -121.814861610999941, 49.19914340100005 ], [ -121.815247608999954, 49.199066486000049 ], [ -121.815306490999959, 49.19894970800005 ], [ -121.81497931899996, 49.198811603000088 ], [ -121.812738094999986, 49.198951210000075 ], [ -121.810987689999948, 49.199301490000046 ], [ -121.810292788999917, 49.199636207000069 ], [ -121.808681997999955, 49.201517605000063 ], [ -121.807722287999923, 49.202047389000015 ], [ -121.806862392, 49.202399200000102 ], [ -121.805274496, 49.202751008000057 ], [ -121.805203214999892, 49.202884800000092 ], [ -121.8052840899999, 49.202931801000034 ], [ -121.806289893999988, 49.202787990000097 ], [ -121.807409812999964, 49.202511695000076 ], [ -121.809369503999932, 49.20151621300009 ], [ -121.809592697999918, 49.201365188000096 ], [ -121.809947282999985, 49.200892391000082 ], [ -121.810318088999921, 49.200275707000067 ] ], [ [ -121.804941721999953, 49.202891903000086 ], [ -121.804767713, 49.202763797000046 ], [ -121.803391786999939, 49.20288479000002 ], [ -121.801550620999976, 49.202901900000029 ], [ -121.798837900999914, 49.203286487000071 ], [ -121.798601290999954, 49.203383299000016 ], [ -121.798656203999968, 49.20341178400006 ], [ -121.801035711999972, 49.203238009000088 ], [ -121.802670178999946, 49.203209598000079 ], [ -121.80437589099995, 49.203047210000086 ], [ -121.804775918999965, 49.202943203000103 ], [ -121.804941721999953, 49.202891903000086 ] ], [ [ -121.820090205999975, 49.197390104000121 ], [ -121.819821843999989, 49.200371006000061 ], [ -121.825133655999934, 49.200577067000026 ], [ -121.825195084999962, 49.199893894000141 ], [ -121.824989594, 49.199885927000047 ], [ -121.824996044999949, 49.199814176000089 ], [ -121.823872160999926, 49.199770597000089 ], [ -121.824160971999973, 49.196559362000109 ], [ -121.823893960999925, 49.196549006000055 ], [ -121.824098091999957, 49.194279186000131 ], [ -121.823714496999969, 49.194264307000061 ], [ -121.823940724999915, 49.191748735000104 ], [ -121.823172047999961, 49.191718917000067 ], [ -121.823076419999907, 49.192782095000013 ], [ -121.821207736999938, 49.192709584000049 ], [ -121.821204041999977, 49.192750639000081 ], [ -121.819991064999925, 49.192703555000016 ], [ -121.819988391999942, 49.192733268000012 ], [ -121.819237515999973, 49.192704114000065 ], [ -121.819226264999969, 49.192829086000089 ], [ -121.818393672999932, 49.192796753000017 ], [ -121.818389931999917, 49.192838306000105 ], [ -121.81530075399999, 49.192718284000158 ], [ -121.81527771199994, 49.192973980000055 ], [ -121.811080659999959, 49.19281077200003 ], [ -121.811051747999983, 49.19313128000001 ], [ -121.80873892299995, 49.193041273000098 ], [ -121.808598100999973, 49.194601452 ], [ -121.808812541999941, 49.194609800000066 ], [ -121.808620294, 49.196739659000052 ], [ -121.81151051099999, 49.196852123000106 ], [ -121.811571217000022, 49.196179130000047 ], [ -121.817044253999939, 49.196391883000018 ], [ -121.817033826999989, 49.196507626000056 ], [ -121.8185327099999, 49.196565843000087 ], [ -121.818464166999945, 49.19732697200002 ], [ -121.820090205999975, 49.197390104000121 ] ], [ [ -121.82407055799996, 49.188147126000104 ], [ -121.824218440999957, 49.186502383000096 ], [ -121.82407029299999, 49.186496637000083 ], [ -121.824210914000034, 49.1849326090001 ], [ -121.823600475999967, 49.18490892799999 ], [ -121.82367791199998, 49.184047739000079 ], [ -121.82166376399999, 49.183969579000106 ], [ -121.821987065999963, 49.180375433000052 ], [ -121.823820115999936, 49.180446568000065 ], [ -121.823872299999934, 49.179866133000061 ], [ -121.823849498999948, 49.179865249000095 ], [ -121.82390450299998, 49.17925343000006 ], [ -121.823649730999946, 49.179243545000105 ], [ -121.823793106999958, 49.177648766000111 ], [ -121.823065510999982, 49.177620533000109 ], [ -121.823160098999907, 49.176568549000095 ], [ -121.823051081999949, 49.176564318000047 ], [ -121.822989856, 49.177245242000033 ], [ -121.822282541999954, 49.177217789000039 ], [ -121.822248944999927, 49.1775913580001 ], [ -121.82131882199991, 49.17755525100003 ], [ -121.82131390899994, 49.17760988100008 ], [ -121.820421509000013, 49.177575230000045 ], [ -121.820328423999982, 49.178609801000086 ], [ -121.818640902999931, 49.178544258000038 ], [ -121.818627258000021, 49.178695841000064 ], [ -121.816924445000012, 49.17862967700006 ], [ -121.81679356099994, 49.180083082000102 ], [ -121.816181876999934, 49.180059307000064 ], [ -121.816177635999978, 49.180106397000038 ], [ -121.814913620999903, 49.180057256000104 ], [ -121.814876502999965, 49.180469227000053 ], [ -121.813387574999979, 49.180411324000076 ], [ -121.813279600999977, 49.181609261000034 ], [ -121.812617007999961, 49.181583486000093 ], [ -121.812576495999963, 49.182032877000033 ], [ -121.810965950999929, 49.181970212000103 ], [ -121.810940040999924, 49.182257515000046 ], [ -121.810682781999986, 49.182247503000092 ], [ -121.810661141999958, 49.182487421000062 ], [ -121.810645599999944, 49.182486816000072 ], [ -121.810614059999978, 49.182836521000084 ], [ -121.81046237799994, 49.182830617000064 ], [ -121.81043576799999, 49.183125625000073 ], [ -121.809985541999978, 49.183108101000123 ], [ -121.809952466999945, 49.183474735000075 ], [ -121.809951718999969, 49.183474706000013 ], [ -121.809911489999976, 49.183920635000078 ], [ -121.809518408999921, 49.183905334000045 ], [ -121.809499884999937, 49.184110643000139 ], [ -121.808618795999948, 49.184076341000043 ], [ -121.808536652999933, 49.184986572000113 ], [ -121.808657546999896, 49.184991279000059 ], [ -121.808517960999964, 49.186538025000075 ], [ -121.809238225999962, 49.186566067000079 ], [ -121.809082236999984, 49.188294736000046 ], [ -121.813789405999941, 49.188477876000029 ], [ -121.813802359999968, 49.188334161000071 ], [ -121.814925978999966, 49.188377847000041 ], [ -121.814940518999904, 49.188216487000041 ], [ -121.816780025999961, 49.18828798099999 ], [ -121.817098524999963, 49.184751729000013 ], [ -121.822570240999951, 49.184964204000096 ], [ -121.822246953000018, 49.188558327000059 ], [ -121.820407427999896, 49.188486926000053 ], [ -121.820405738999952, 49.18850567800007 ], [ -121.821455903999933, 49.188546444000089 ], [ -121.821405144000011, 49.18911059800012 ], [ -121.822785373999949, 49.189164160000054 ], [ -121.822881, 49.188100977000069 ], [ -121.82407055799996, 49.188147126000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.929524525465138", "sL_AssetLoss": "5321", "sL_BldgLoss": "4946", "sL_StrLoss": "3890", "sL_NStrLoss": "1056", "sL_ContLoss": "375", "geom_point": "0101000020E6100000AAEF3EBF96725EC06EA385F4A9984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.788133011999932, 49.194528101000103 ], [ -121.788140977, 49.19052694100008 ], [ -121.788140983999966, 49.190517420000099 ], [ -121.789613892999967, 49.190317594000085 ], [ -121.790442916999922, 49.190101095000088 ], [ -121.791610513999942, 49.19003279100005 ], [ -121.791630446999974, 49.190045211000069 ], [ -121.792949000999954, 49.190865888000097 ], [ -121.79317458599999, 49.191054177000083 ], [ -121.793527397999966, 49.191348687000129 ], [ -121.794224526999969, 49.191712533000157 ], [ -121.794354390999956, 49.191780291000086 ], [ -121.79481050599999, 49.192234603000138 ], [ -121.795364799999902, 49.192546493000073 ], [ -121.795640684999952, 49.192885510000053 ], [ -121.794179761999899, 49.192828451000018 ], [ -121.790880699999931, 49.192699528000098 ], [ -121.790910670999963, 49.192368872 ], [ -121.790375898999955, 49.192347965000046 ], [ -121.79034527499999, 49.192685777000108 ], [ -121.790339545, 49.192685553000061 ], [ -121.790252123999934, 49.193649876000045 ], [ -121.790187427999982, 49.193647347000123 ], [ -121.790156038999953, 49.193993576000025 ], [ -121.790132511999957, 49.193992657000145 ], [ -121.790085864999966, 49.19450717700002 ], [ -121.790051912999957, 49.19450585000007 ], [ -121.789847880999972, 49.196756176000129 ], [ -121.789216523999954, 49.196731488000083 ], [ -121.789216251999932, 49.196734492000132 ], [ -121.788198703999953, 49.196694695000105 ], [ -121.788069012999969, 49.19470319200007 ], [ -121.788133011999932, 49.194528101000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123850334", "BldgCostT": "83263334", "sL_LossRatio": "0.899564437062264", "sL_AssetLoss": "279592.2", "sL_BldgLoss": "251511.2", "sL_StrLoss": "180828.2", "sL_NStrLoss": "70683", "sL_ContLoss": "28081", "geom_point": "0101000020E6100000864F198337745EC0977FA10570964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.815181745999922, 49.173347635000027 ], [ -121.815346252999916, 49.173255663000063 ], [ -121.81601061899994, 49.172853566000043 ], [ -121.816483558999977, 49.172858415000057 ], [ -121.816472267, 49.173331945000015 ], [ -121.816975859999957, 49.17335152000004 ], [ -121.817039995999906, 49.172639192000105 ], [ -121.819034116999958, 49.172716682000058 ], [ -121.819067229, 49.172348740000096 ], [ -121.81994442, 49.172382815000013 ], [ -121.819962302999954, 49.172184060000077 ], [ -121.820554386999959, 49.172207056000111 ], [ -121.820562580999947, 49.172115975000025 ], [ -121.820976071999922, 49.172132032000079 ], [ -121.82098697, 49.172010884000017 ], [ -121.821266928999975, 49.172021756000092 ], [ -121.821294671999922, 49.171713292000071 ], [ -121.821740948999931, 49.171730619000101 ], [ -121.821744655999964, 49.171689402 ], [ -121.822250615000016, 49.1717090450001 ], [ -121.82228075099999, 49.171373914000128 ], [ -121.822599319999966, 49.171386281000096 ], [ -121.822620950999934, 49.171145721000052 ], [ -121.822954257999967, 49.171158659000085 ], [ -121.822967243999969, 49.171014229 ], [ -121.823294708999939, 49.171026939000107 ], [ -121.823327547999952, 49.170661636000062 ], [ -121.823579076, 49.170671398000074 ], [ -121.823599547999919, 49.170443643000048 ], [ -121.825082515999952, 49.170501185000063 ], [ -121.825165300999984, 49.169579872000021 ], [ -121.826056234999925, 49.169401110000152 ], [ -121.827605499999919, 49.169182965000083 ], [ -121.829665252999973, 49.168972050000065 ], [ -121.830206002999901, 49.168946928000089 ], [ -121.830194917999975, 49.170340589000041 ], [ -121.830226524999915, 49.170590520000069 ], [ -121.829581209, 49.170508297000048 ], [ -121.82915807099999, 49.170612127000084 ], [ -121.82855989699999, 49.170758886000101 ], [ -121.828024014999954, 49.171301598000092 ], [ -121.827586403999959, 49.171891201000058 ], [ -121.827082065999917, 49.172341206000063 ], [ -121.826782837999957, 49.172608160000095 ], [ -121.82668929499999, 49.172691610000058 ], [ -121.825560409999966, 49.173453499000125 ], [ -121.823655785999975, 49.174496101000109 ], [ -121.8236411399999, 49.174500528000102 ], [ -121.823254475999974, 49.174617095 ], [ -121.820405421999965, 49.174966105000124 ], [ -121.818405716999905, 49.175431794000112 ], [ -121.815071204999938, 49.176620984000088 ], [ -121.812975803999933, 49.177552392000067 ], [ -121.81176222199997, 49.178350001000076 ], [ -121.811189395999975, 49.178848404000092 ], [ -121.809326590999916, 49.179809811000069 ], [ -121.808865491999953, 49.180128816000057 ], [ -121.808006918999965, 49.181108704000032 ], [ -121.807333786999934, 49.182208210000077 ], [ -121.806803907999949, 49.182598398000124 ], [ -121.806608510999922, 49.182634934000077 ], [ -121.805341698999925, 49.182871787000053 ], [ -121.805057231999967, 49.182895049000059 ], [ -121.80505584799999, 49.182785667000068 ], [ -121.805050296999966, 49.182350509000067 ], [ -121.805051488999979, 49.18075718500004 ], [ -121.805056816999965, 49.179436491000082 ], [ -121.805056970999928, 49.179341394000026 ], [ -121.805063532999924, 49.175995270000051 ], [ -121.805063610999952, 49.175971505000071 ], [ -121.805659490999957, 49.175970537000104 ], [ -121.807884485999963, 49.175966900000077 ], [ -121.810736944, 49.175962377000111 ], [ -121.811007143999959, 49.175961932000078 ], [ -121.811912206999949, 49.175437753000082 ], [ -121.814302788999939, 49.173891020000084 ], [ -121.815181745999922, 49.173347635000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115502833", "BldgCostT": "76918333", "sL_LossRatio": "0.88949060580775", "sL_AssetLoss": "252869", "sL_BldgLoss": "224924.6", "sL_StrLoss": "162018.6", "sL_NStrLoss": "62906", "sL_ContLoss": "27944.4", "geom_point": "0101000020E610000084C7F26CDE725EC0913C74CDA6974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.802551313999942, 49.194589431000054 ], [ -121.802623669999917, 49.19378896800005 ], [ -121.801727229, 49.193754017000096 ], [ -121.801903936999935, 49.191799410000058 ], [ -121.801724750999981, 49.191792422000042 ], [ -121.801754591999952, 49.191462359000077 ], [ -121.801445761999929, 49.191450316000044 ], [ -121.801770678999929, 49.187856272000026 ], [ -121.801897212999947, 49.187861207000054 ], [ -121.801897619999977, 49.187856705000044 ], [ -121.801659794999978, 49.187847431000115 ], [ -121.801673502999947, 49.187695783 ], [ -121.801228289999926, 49.187678420000104 ], [ -121.801257474999957, 49.18735559800006 ], [ -121.801138344999956, 49.187350952000088 ], [ -121.801070058999983, 49.188106234000088 ], [ -121.800805304999955, 49.188095907000111 ], [ -121.800787958999976, 49.188287740000078 ], [ -121.800605053000012, 49.188280605000081 ], [ -121.800580163999939, 49.188555845000039 ], [ -121.80035475599999, 49.188547052000061 ], [ -121.80028549499994, 49.189312949000083 ], [ -121.798829636, 49.189256146000062 ], [ -121.798754373999941, 49.190088083000084 ], [ -121.798544432999918, 49.190079891000039 ], [ -121.798506787999898, 49.190495988000059 ], [ -121.797210018, 49.190445374000035 ], [ -121.797135973999957, 49.191263518 ], [ -121.796504805999987, 49.191238878000028 ], [ -121.796353232999962, 49.192913332000074 ], [ -121.795956295999972, 49.192897834000057 ], [ -121.795343485999965, 49.192294403000098 ], [ -121.794546783999976, 49.191790198 ], [ -121.794354390999956, 49.191780291000086 ], [ -121.794224526999969, 49.191712533000157 ], [ -121.793527397999966, 49.191348687000129 ], [ -121.79317458599999, 49.191054177000083 ], [ -121.792949000999954, 49.190865888000097 ], [ -121.791630446999974, 49.190045211000069 ], [ -121.791610513999942, 49.19003279100005 ], [ -121.790442916999922, 49.190101095000088 ], [ -121.789613892999967, 49.190317594000085 ], [ -121.788140983999966, 49.190517420000099 ], [ -121.788141316999884, 49.190359426000114 ], [ -121.788141592000017, 49.190209412000051 ], [ -121.788077872999963, 49.189442994000117 ], [ -121.787913907999965, 49.187468742000114 ], [ -121.782388308999927, 49.187608508000082 ], [ -121.781435312999946, 49.183812563000117 ], [ -121.781605652999957, 49.18230661300008 ], [ -121.781775078999971, 49.180808528000114 ], [ -121.78183385599999, 49.180288540000099 ], [ -121.776805245999967, 49.180104 ], [ -121.776696944999969, 49.18010002900013 ], [ -121.77698821499996, 49.178795224000083 ], [ -121.779291571999963, 49.178885574000056 ], [ -121.779296516999949, 49.178684510000068 ], [ -121.780631835999927, 49.178722930000042 ], [ -121.78068567699999, 49.178423068000065 ], [ -121.78218406699996, 49.178438879000097 ], [ -121.782177446999924, 49.178708679000032 ], [ -121.783000525999967, 49.178717356000099 ], [ -121.78300714299999, 49.178447557 ], [ -121.784653293999952, 49.178464895000097 ], [ -121.784620256999943, 49.179813892000013 ], [ -121.785854905999912, 49.179826879000096 ], [ -121.785848304999959, 49.18009667900008 ], [ -121.786671409999911, 49.180105331000092 ], [ -121.786664886999958, 49.180372097000067 ], [ -121.789232870999939, 49.180472589000061 ], [ -121.789214844999947, 49.180671444000069 ], [ -121.79082562899994, 49.18073444700007 ], [ -121.790763611999964, 49.18141881800009 ], [ -121.79314679499997, 49.181511986000068 ], [ -121.793142629000016, 49.181557987000105 ], [ -121.793523075999957, 49.181572856000038 ], [ -121.793552480999949, 49.18124815700002 ], [ -121.797254251999959, 49.181392756000051 ], [ -121.79731835799997, 49.18068424500003 ], [ -121.797776866999939, 49.180702146000066 ], [ -121.797802052999913, 49.180423756000053 ], [ -121.798310817999933, 49.180443617000037 ], [ -121.79833204199997, 49.180208967000063 ], [ -121.798777267999981, 49.180226346000133 ], [ -121.798784626999947, 49.180144978000044 ], [ -121.79925316799995, 49.180163266000093 ], [ -121.799264913999963, 49.180033389000066 ], [ -121.799371284999921, 49.180037540000086 ], [ -121.799406629999964, 49.179646692000041 ], [ -121.799895165999914, 49.179665757000059 ], [ -121.799901112000029, 49.179600003000125 ], [ -121.801586120999943, 49.179665743000015 ], [ -121.801730714999962, 49.178065904000142 ], [ -121.799623835999938, 49.177983702000091 ], [ -121.799678534999913, 49.177378766000047 ], [ -121.798100321999968, 49.177317163000069 ], [ -121.798222056999961, 49.175971306000093 ], [ -121.79999422399996, 49.175971397000026 ], [ -121.805063610999952, 49.175971505000071 ], [ -121.805063532999924, 49.175995270000051 ], [ -121.805056970999928, 49.179341394000026 ], [ -121.805056816999965, 49.179436491000082 ], [ -121.805051488999979, 49.18075718500004 ], [ -121.805050296999966, 49.182350509000067 ], [ -121.80505584799999, 49.182785667000068 ], [ -121.805057231999967, 49.182895049000059 ], [ -121.805057331999961, 49.18290277500008 ], [ -121.805059253999914, 49.183055649000032 ], [ -121.805069080999928, 49.183829096000075 ], [ -121.80506488499995, 49.189331894000105 ], [ -121.805064611999967, 49.189608822000068 ], [ -121.805426413999939, 49.189766524000085 ], [ -121.805906705999988, 49.190203664000073 ], [ -121.80617223599991, 49.190637805000108 ], [ -121.806218734999973, 49.191380473000059 ], [ -121.806088578999933, 49.19209419 ], [ -121.805877429999938, 49.193120214000032 ], [ -121.805440211999965, 49.193809839000032 ], [ -121.805059847999928, 49.194028010000125 ], [ -121.804922106999967, 49.194093184000096 ], [ -121.80366200099995, 49.19449480600008 ], [ -121.802781116999967, 49.19465569800014 ], [ -121.802551313999942, 49.194589431000054 ] ], [ [ -121.793113665999911, 49.186037172000141 ], [ -121.793118051999926, 49.185856850000036 ], [ -121.792745086000011, 49.185842274000059 ], [ -121.792737197999955, 49.185929338000058 ], [ -121.789217142999973, 49.185791706000039 ], [ -121.789116303999961, 49.186903923000045 ], [ -121.787320743999928, 49.18683367200007 ], [ -121.787312422999975, 49.186925399000074 ], [ -121.788963886999966, 49.186990013000077 ], [ -121.788940462999946, 49.187248368000141 ], [ -121.789346079999945, 49.187264234000061 ], [ -121.789349621, 49.187225173000122 ], [ -121.789817910999943, 49.187243489000096 ], [ -121.78985262099998, 49.186860584000073 ], [ -121.792653712999964, 49.186970096000039 ], [ -121.792739549999965, 49.186022550000096 ], [ -121.793113665999911, 49.186037172000141 ] ], [ [ -121.783665218999914, 49.1813228090001 ], [ -121.78376183599994, 49.18025842 ], [ -121.784608559999967, 49.180291584000067 ], [ -121.784613649000022, 49.180083690000117 ], [ -121.783378996999886, 49.180070688000029 ], [ -121.783365767999896, 49.180610287000086 ], [ -121.782954210999918, 49.18060595 ], [ -121.782937329999967, 49.18129429400004 ], [ -121.783665218999914, 49.1813228090001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15044311", "BldgCostT": "9963190", "sL_LossRatio": "0.901634673599487", "sL_AssetLoss": "28079", "sL_BldgLoss": "25317", "sL_StrLoss": "17679", "sL_NStrLoss": "7638", "sL_ContLoss": "2762", "geom_point": "0101000020E6100000BD5E92B177725EC070992E1FA4964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.783278626999959, 49.178229461000122 ], [ -121.783305468999984, 49.177933771000077 ], [ -121.782452216999971, 49.177900339000054 ], [ -121.782529769999911, 49.177046164000025 ], [ -121.782391366999946, 49.177040741000063 ], [ -121.782509408999971, 49.17574057800006 ], [ -121.781660924000022, 49.175707324000093 ], [ -121.781725078999926, 49.175000805000067 ], [ -121.785787107, 49.17506518900008 ], [ -121.785756103000011, 49.175935888000012 ], [ -121.78608187099999, 49.175936944000057 ], [ -121.788098105999921, 49.17594342200006 ], [ -121.790896720999953, 49.17595235600006 ], [ -121.794107511999954, 49.175962530000092 ], [ -121.796248874999932, 49.175969260000059 ], [ -121.796062297999967, 49.178030983000049 ], [ -121.794501676999957, 49.177970015000028 ], [ -121.794494632999942, 49.178047820000131 ], [ -121.79049521899999, 49.177891473000052 ], [ -121.79048786599995, 49.177972615000094 ], [ -121.78962839699993, 49.17793899800008 ], [ -121.78959075099999, 49.178354336000048 ], [ -121.788760463999935, 49.178321854000103 ], [ -121.78874942199991, 49.178443656000049 ], [ -121.783278626999959, 49.178229461000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.924422673198041", "sL_AssetLoss": "1429", "sL_BldgLoss": "1321", "sL_StrLoss": "976", "sL_NStrLoss": "345", "sL_ContLoss": "108", "geom_point": "0101000020E61000002019DD0701725EC0DDB38DC389964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.78135605599995, 49.174994948000126 ], [ -121.781616544999906, 49.174999083000117 ], [ -121.781432742999954, 49.17702313500012 ], [ -121.780940495999957, 49.177003839000115 ], [ -121.78116615299993, 49.175746951000058 ], [ -121.78130128299992, 49.174994084000048 ], [ -121.78135605599995, 49.174994948000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3504250", "BldgCostT": "1945000", "sL_LossRatio": "0.797079707970797", "sL_AssetLoss": "2999.7", "sL_BldgLoss": "2391", "sL_StrLoss": "1241", "sL_NStrLoss": "1150", "sL_ContLoss": "608.7", "geom_point": "0101000020E6100000C2B11D420B705EC081D4A2154A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.748969234999947, 49.20641611000012 ], [ -121.749480282999968, 49.205761036000091 ], [ -121.749532956999985, 49.203555601000048 ], [ -121.74976884799996, 49.203564911000115 ], [ -121.749706343999932, 49.204247599000077 ], [ -121.751532728999962, 49.204319665000078 ], [ -121.751531616999927, 49.204331821000054 ], [ -121.75223700599993, 49.204359646000086 ], [ -121.752048335999916, 49.20642151400002 ], [ -121.751603696999922, 49.206392710000081 ], [ -121.748783880999966, 49.206653691000028 ], [ -121.748969234999947, 49.20641611000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39234667", "BldgCostT": "26586667", "sL_LossRatio": "0.920770009633722", "sL_AssetLoss": "81380.8", "sL_BldgLoss": "74933", "sL_StrLoss": "58469", "sL_NStrLoss": "16464", "sL_ContLoss": "6447.8", "geom_point": "0101000020E610000022F302CBD5715EC060606FC5F2984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.771558354999939, 49.198018530000041 ], [ -121.771789983999938, 49.195474978000107 ], [ -121.772602420999959, 49.195506879000092 ], [ -121.772854961999926, 49.192732810000045 ], [ -121.770254354999949, 49.192630674000092 ], [ -121.770362217999917, 49.191446469000063 ], [ -121.775214938999937, 49.191354719000088 ], [ -121.777764723999937, 49.19091337800009 ], [ -121.777829396999905, 49.190895207000068 ], [ -121.778007458999951, 49.190845144000043 ], [ -121.777930599999976, 49.190458597000024 ], [ -121.777881327, 49.190478069000079 ], [ -121.777336136999963, 49.18782494700006 ], [ -121.777303800999931, 49.187697060000076 ], [ -121.778483971999947, 49.187679967000093 ], [ -121.782388308999927, 49.187608508000082 ], [ -121.787913907999965, 49.187468742000114 ], [ -121.788077872999963, 49.189442994000117 ], [ -121.788141592000017, 49.190209412000051 ], [ -121.788141316999884, 49.190359426000114 ], [ -121.788140983999966, 49.190517420000099 ], [ -121.788140977, 49.19052694100008 ], [ -121.788133011999932, 49.194528101000103 ], [ -121.788069012999969, 49.19470319200007 ], [ -121.788198703999953, 49.196694695000105 ], [ -121.787743210999977, 49.196676877000122 ], [ -121.787489832999967, 49.199469726000082 ], [ -121.786124959999967, 49.199416323000044 ], [ -121.785187227999955, 49.198954258000093 ], [ -121.784098630999893, 49.198614700000086 ], [ -121.783788575999978, 49.198549764000084 ], [ -121.783100393999959, 49.198428408000076 ], [ -121.782544381999969, 49.198433730000033 ], [ -121.782204426999968, 49.198476498000048 ], [ -121.78137347699996, 49.198660076000088 ], [ -121.780806050999985, 49.198826470000085 ], [ -121.778329893999938, 49.198729420000056 ], [ -121.777976554999938, 49.19871556600004 ], [ -121.778105803999921, 49.197294166000027 ], [ -121.777120355999969, 49.197255523000138 ], [ -121.777036045999978, 49.198182511000091 ], [ -121.777241212999982, 49.198190558000107 ], [ -121.777086167999968, 49.199895252000061 ], [ -121.777053479999964, 49.19990902100006 ], [ -121.776730324999946, 49.200074453000092 ], [ -121.77465779399995, 49.200921804000075 ], [ -121.773736516999946, 49.201203754000076 ], [ -121.77348174699992, 49.201388038000097 ], [ -121.77344659299996, 49.201592973000025 ], [ -121.773220592999962, 49.20169053700009 ], [ -121.770945921999939, 49.201601231000076 ], [ -121.77083503599999, 49.202818513000068 ], [ -121.765361454999962, 49.202603416000059 ], [ -121.765689238999968, 49.199009543000102 ], [ -121.770348110999947, 49.199192642000135 ], [ -121.770459001999953, 49.197975354000121 ], [ -121.771558354999939, 49.198018530000041 ] ], [ [ -121.780864690999977, 49.195614213000106 ], [ -121.781455239999957, 49.195245170000106 ], [ -121.783776096999972, 49.195336075000085 ], [ -121.783741571999954, 49.195716303000061 ], [ -121.783816043999977, 49.1957192200001 ], [ -121.784067689999915, 49.192947647000118 ], [ -121.784088467999979, 49.192927102000063 ], [ -121.784664785999951, 49.192949667000143 ], [ -121.784735616999981, 49.19216937300007 ], [ -121.784794785999978, 49.19206650700005 ], [ -121.784827395999983, 49.191797392000119 ], [ -121.78581358699995, 49.191340209000082 ], [ -121.787891980999945, 49.190551203000105 ], [ -121.787852006999984, 49.190461500000069 ], [ -121.787454989999944, 49.190465697000093 ], [ -121.786638785999941, 49.19070070600003 ], [ -121.784958877999898, 49.191501096000074 ], [ -121.784778631999956, 49.191695495000054 ], [ -121.784781519999981, 49.191663683000073 ], [ -121.784741747999973, 49.191662126000054 ], [ -121.784741079999932, 49.191689378000135 ], [ -121.784329432999982, 49.191685045 ], [ -121.784322821999922, 49.191954844000051 ], [ -121.783911170999929, 49.191950510000055 ], [ -121.783892246999969, 49.192722395 ], [ -121.783852075, 49.192759492000036 ], [ -121.783068014999984, 49.192751232000091 ], [ -121.783061396999983, 49.193021031000093 ], [ -121.782238079999928, 49.193012351000071 ], [ -121.782224832999944, 49.193551948000035 ], [ -121.781813168999975, 49.193547606000088 ], [ -121.781806543999934, 49.193817404000065 ], [ -121.781394877999958, 49.193813061000114 ], [ -121.781388249999964, 49.194082859000019 ], [ -121.780976583000026, 49.194078515000115 ], [ -121.780969950999975, 49.194348313000035 ], [ -121.780558282999948, 49.194343966000069 ], [ -121.780545016999966, 49.194883563000062 ], [ -121.780133342999946, 49.19487921500005 ], [ -121.780126708, 49.195149013000055 ], [ -121.77992011, 49.195146830000034 ], [ -121.779916653000015, 49.195184877 ], [ -121.781029888999925, 49.195228504000028 ], [ -121.780968187, 49.19527390100005 ], [ -121.779606380999923, 49.195943193000055 ], [ -121.779506008999959, 49.196158299000039 ], [ -121.779656204999981, 49.196176792000109 ], [ -121.780864690999977, 49.195614213000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.932473053365028", "sL_AssetLoss": "7950.9", "sL_BldgLoss": "7414", "sL_StrLoss": "5846", "sL_NStrLoss": "1568", "sL_ContLoss": "536.9", "geom_point": "0101000020E61000009D0378C9C7705EC07369FCC2AB994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.759621507999967, 49.198649597000056 ], [ -121.765094596999987, 49.198864986000082 ], [ -121.764766767999959, 49.202458859000032 ], [ -121.759293257, 49.202243454000069 ], [ -121.759621507999967, 49.198649597000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198179000", "BldgCostT": "132650000", "sL_LossRatio": "0.809926416988073", "sL_AssetLoss": "829947", "sL_BldgLoss": "672196", "sL_StrLoss": "448517", "sL_NStrLoss": "223679", "sL_ContLoss": "157751", "geom_point": "0101000020E61000003C5584BC5A705EC0CF3970B56B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.740863771999912, 49.203710515000083 ], [ -121.740717753999917, 49.203697086000034 ], [ -121.740454447999952, 49.203703058000016 ], [ -121.738561192999938, 49.20374610800009 ], [ -121.738162566999975, 49.203630250000089 ], [ -121.738168991999927, 49.201763134000089 ], [ -121.735409426999951, 49.200942561000069 ], [ -121.735488320999949, 49.20008366900003 ], [ -121.733866318999972, 49.200019420000061 ], [ -121.733808905000018, 49.199953726000111 ], [ -121.733511552999971, 49.19934765700004 ], [ -121.733242929999946, 49.199078180000164 ], [ -121.732498511999964, 49.198689441000042 ], [ -121.731293137999955, 49.198207787000101 ], [ -121.731419510999928, 49.198071899000105 ], [ -121.731983986999978, 49.197309800000085 ], [ -121.732262405999961, 49.197014200000062 ], [ -121.732629908999954, 49.196751107000061 ], [ -121.73344448499995, 49.196290883000096 ], [ -121.735387513999939, 49.195193103000086 ], [ -121.735886696999941, 49.194840411000015 ], [ -121.736282504999934, 49.194493580000071 ], [ -121.737097392999956, 49.193693598000031 ], [ -121.737425390999988, 49.193485614000075 ], [ -121.737744199999938, 49.193378309000124 ], [ -121.738127222999964, 49.193319502000108 ], [ -121.738524700999932, 49.193326291000091 ], [ -121.738522296999932, 49.192829289000017 ], [ -121.738569211999931, 49.192587705000037 ], [ -121.738545229999914, 49.192232583000091 ], [ -121.738544795999971, 49.191972007000132 ], [ -121.738543679999964, 49.191790541000081 ], [ -121.739415710999936, 49.19114331300004 ], [ -121.74018096599994, 49.190606751000097 ], [ -121.740337194999981, 49.190497203000085 ], [ -121.741280219999965, 49.189880990000063 ], [ -121.742007976999943, 49.189405399000066 ], [ -121.743727094999926, 49.188399496000059 ], [ -121.744909116999935, 49.187755509000056 ], [ -121.7449334399999, 49.187743352000062 ], [ -121.74573918399993, 49.187341896000092 ], [ -121.74976024599998, 49.185590207000082 ], [ -121.752636669999973, 49.18433696500005 ], [ -121.754408101, 49.183565100000052 ], [ -121.756971968999949, 49.182503173000015 ], [ -121.756965585, 49.18275793400008 ], [ -121.75655401599991, 49.182753503000121 ], [ -121.756548816999924, 49.182961039000077 ], [ -121.756545687999946, 49.183085908000066 ], [ -121.756544848999965, 49.183119331000022 ], [ -121.756680319999987, 49.183124672000133 ], [ -121.756671896999976, 49.183216870000138 ], [ -121.757406263999883, 49.183245817000099 ], [ -121.757455493999927, 49.182706865000057 ], [ -121.75746677799998, 49.182583323000117 ], [ -121.757474978999966, 49.18249354800011 ], [ -121.757007357999939, 49.182488515000088 ], [ -121.757934305999981, 49.18210455400007 ], [ -121.758548346999959, 49.181850947000086 ], [ -121.760358669999917, 49.181117024000109 ], [ -121.761204431999914, 49.180788971000027 ], [ -121.761307585999987, 49.180746518000049 ], [ -121.761546729999935, 49.18065312900012 ], [ -121.761558577999949, 49.18064849200001 ], [ -121.761660573999947, 49.180756396000085 ], [ -121.761732127999963, 49.180832050000049 ], [ -121.761849008999917, 49.180955702000077 ], [ -121.76193992899999, 49.181051407000012 ], [ -121.762180897999897, 49.181305105000071 ], [ -121.763092882999942, 49.182261696000054 ], [ -121.763484803999944, 49.183037232000039 ], [ -121.763703410999952, 49.182988108000139 ], [ -121.764179984999913, 49.182879691000096 ], [ -121.764814706999942, 49.182874982000094 ], [ -121.765143713, 49.182909508000058 ], [ -121.765420152999965, 49.182988472000027 ], [ -121.765656102999984, 49.183055891000059 ], [ -121.765919939999918, 49.183155199000062 ], [ -121.767354908999934, 49.183695307000058 ], [ -121.76772415, 49.183760893000091 ], [ -121.767739875999922, 49.183763700000092 ], [ -121.768976898999966, 49.183822194000115 ], [ -121.769738878999959, 49.183820603000107 ], [ -121.772152290999927, 49.183819908000046 ], [ -121.773600592999941, 49.18381901 ], [ -121.774292958999965, 49.183815716000069 ], [ -121.77467764, 49.183813901000107 ], [ -121.775711383999962, 49.183808992000081 ], [ -121.776598004999968, 49.183809398000037 ], [ -121.777393962999909, 49.183809751000133 ], [ -121.778066442999943, 49.183810057000066 ], [ -121.778381983, 49.183810183000091 ], [ -121.779104642, 49.183810461000064 ], [ -121.780852706999923, 49.183812037000095 ], [ -121.781435312999946, 49.183812563000117 ], [ -121.782388308999927, 49.187608508000082 ], [ -121.778483971999947, 49.187679967000093 ], [ -121.777303800999931, 49.187697060000076 ], [ -121.777336136999963, 49.18782494700006 ], [ -121.777881327, 49.190478069000079 ], [ -121.777930599999976, 49.190458597000024 ], [ -121.778007458999951, 49.190845144000043 ], [ -121.777829396999905, 49.190895207000068 ], [ -121.777764723999937, 49.19091337800009 ], [ -121.775214938999937, 49.191354719000088 ], [ -121.770362217999917, 49.191446469000063 ], [ -121.770391450999938, 49.191125513000038 ], [ -121.770260748999931, 49.191120379000047 ], [ -121.770329378999975, 49.190366898000029 ], [ -121.769096356999981, 49.190318449000053 ], [ -121.769121787999893, 49.190039318000068 ], [ -121.768575156999958, 49.190017836000088 ], [ -121.768585, 49.189909817000085 ], [ -121.765315153999921, 49.189781248000052 ], [ -121.765444091999925, 49.188367208000088 ], [ -121.76259202599999, 49.188254984000046 ], [ -121.762586275, 49.188485549000063 ], [ -121.761351421999947, 49.188472309000133 ], [ -121.76136205799996, 49.188046309000072 ], [ -121.759058948999964, 49.187955604000074 ], [ -121.759043238999979, 49.188127637000029 ], [ -121.757795432999941, 49.188078472000072 ], [ -121.75754642699998, 49.190804265000068 ], [ -121.757140960999919, 49.190788286000036 ], [ -121.757100531999953, 49.191230774000147 ], [ -121.751628379999929, 49.191014976000069 ], [ -121.751631052999969, 49.190985745000098 ], [ -121.747419337999972, 49.190819464000128 ], [ -121.747623117999979, 49.188594108000103 ], [ -121.746938056999952, 49.188586675000046 ], [ -121.746944870999954, 49.188316881000027 ], [ -121.746607044999934, 49.188313215000107 ], [ -121.746470618000018, 49.189802732000039 ], [ -121.745369920999948, 49.189759237000011 ], [ -121.745316898999974, 49.190337957000089 ], [ -121.744994418999951, 49.190325212000054 ], [ -121.744963903, 49.190658265000096 ], [ -121.74280648200002, 49.190572974000133 ], [ -121.742785022999939, 49.190807049000043 ], [ -121.74464834199992, 49.190880716000017 ], [ -121.744646015999933, 49.190906089000073 ], [ -121.745253520999967, 49.190930099000049 ], [ -121.744924214999983, 49.194523954000054 ], [ -121.740615720999969, 49.194353595000031 ], [ -121.740613146, 49.194454986000032 ], [ -121.741024809999914, 49.194459475000045 ], [ -121.741013449999954, 49.194907050000012 ], [ -121.742038589999964, 49.194947596000056 ], [ -121.741933955999983, 49.196088595000084 ], [ -121.743042108999973, 49.196100662000049 ], [ -121.743014757999916, 49.197179839000057 ], [ -121.741835059, 49.19716699300001 ], [ -121.741760881999966, 49.197975790000044 ], [ -121.742994242999941, 49.197989222000054 ], [ -121.742977343999911, 49.198655947000077 ], [ -121.743329575999923, 49.19866987100005 ], [ -121.743158153999914, 49.200539544000087 ], [ -121.745897704999933, 49.200647807000088 ], [ -121.745670688999937, 49.203125202000138 ], [ -121.747966090999981, 49.203215859000053 ], [ -121.747962720999951, 49.203252659000071 ], [ -121.748625869999913, 49.203278841000099 ], [ -121.748603884000019, 49.203518927000061 ], [ -121.749532956999985, 49.203555601000048 ], [ -121.749480282999968, 49.205761036000091 ], [ -121.748439231999939, 49.205911082000092 ], [ -121.748135880999939, 49.205924365000094 ], [ -121.747721331999941, 49.205891766000029 ], [ -121.746960510999955, 49.205726460000101 ], [ -121.746147411999956, 49.205486964000087 ], [ -121.74599862299999, 49.205457537000065 ], [ -121.744996777000011, 49.205259364000042 ], [ -121.74442601, 49.205088036000056 ], [ -121.743329199999906, 49.204647952000087 ], [ -121.74223247799992, 49.204072577000041 ], [ -121.741573642999938, 49.203843631000034 ], [ -121.741114044000014, 49.203733499000087 ], [ -121.740863771999912, 49.203710515000083 ] ], [ [ -121.7361368099999, 49.197134297000062 ], [ -121.736312818, 49.195217614000121 ], [ -121.736064224, 49.195214894000046 ], [ -121.736050474999956, 49.195754480000041 ], [ -121.735227126999945, 49.195745466000083 ], [ -121.735220245999969, 49.196015259000021 ], [ -121.734808570999988, 49.196010750000021 ], [ -121.734801688999966, 49.196280543000128 ], [ -121.734390009999956, 49.196276033000046 ], [ -121.734386000999947, 49.196433136000081 ], [ -121.735919209, 49.196493865000029 ], [ -121.735838619999967, 49.197371374000092 ], [ -121.735874984999953, 49.197371772000054 ], [ -121.73589766399999, 49.197124826000078 ], [ -121.7361368099999, 49.197134297000062 ] ], [ [ -121.759314000999964, 49.182166835000046 ], [ -121.75933162799997, 49.181973773000045 ], [ -121.759303844999948, 49.181973474000074 ], [ -121.758961056999937, 49.181969791000043 ], [ -121.75863211299999, 49.181966255000084 ], [ -121.758628609999931, 49.182106278000056 ], [ -121.758627770999965, 49.18213979700009 ], [ -121.75886353099996, 49.182149087000077 ], [ -121.759314000999964, 49.182166835000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9222000", "BldgCostT": "6360000", "sL_LossRatio": "0.986368010264087", "sL_AssetLoss": "6734.16", "sL_BldgLoss": "6642.36", "sL_StrLoss": "6199.16", "sL_NStrLoss": "443.2", "sL_ContLoss": "91.8", "geom_point": "0101000020E6100000BE620D17796B5EC0EF8ECEF1B8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.676724844999953, 49.258508967000104 ], [ -121.676746743999928, 49.257689929000051 ], [ -121.674320707999968, 49.257592625000079 ], [ -121.67465592799995, 49.25399933200012 ], [ -121.677103263999967, 49.254097490000035 ], [ -121.677289724999966, 49.252097389000014 ], [ -121.680326949999937, 49.252219129000089 ], [ -121.680933424999921, 49.252243427000067 ], [ -121.682166562999967, 49.252292823000083 ], [ -121.682319401999948, 49.252544203000078 ], [ -121.682223114999971, 49.253065389000128 ], [ -121.682663982999927, 49.254059496000089 ], [ -121.682702784999918, 49.25469040800008 ], [ -121.6833769039999, 49.256191611000091 ], [ -121.683900780999949, 49.256788964000094 ], [ -121.683724056999921, 49.258687328000029 ], [ -121.678244296999978, 49.258467828000093 ], [ -121.678289103999987, 49.257987141000136 ], [ -121.678226701999961, 49.257986427000027 ], [ -121.677975816999947, 49.25798355600007 ], [ -121.677967096999964, 49.258310008000151 ], [ -121.677961402999955, 49.25852312500006 ], [ -121.677797616999911, 49.25852125100004 ], [ -121.676724844999953, 49.258508967000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.977045219192268", "sL_AssetLoss": "579.4", "sL_BldgLoss": "566.1", "sL_StrLoss": "525", "sL_NStrLoss": "41.1", "sL_ContLoss": "13.3", "geom_point": "0101000020E6100000621EA63B976C5EC095993525979B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.69766678799999, 49.21475855100001 ], [ -121.698902265999962, 49.214772476000114 ], [ -121.6988918979999, 49.215167460000011 ], [ -121.698881017999966, 49.215581841000059 ], [ -121.698057354999946, 49.215572560000098 ], [ -121.698050267, 49.215842348000102 ], [ -121.697226598999933, 49.21583305900004 ], [ -121.697219505999925, 49.216102849000045 ], [ -121.695983995999939, 49.21608890500007 ], [ -121.69597690199997, 49.216358564000089 ], [ -121.695976286999894, 49.216358686000106 ], [ -121.694741384999972, 49.216344736000067 ], [ -121.694747588999974, 49.216109130000042 ], [ -121.694769803000028, 49.215265583000047 ], [ -121.696417121999957, 49.215284189000023 ], [ -121.696424217999919, 49.21501440100009 ], [ -121.697659699999974, 49.215028339000078 ], [ -121.69766678799999, 49.21475855100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73417250", "BldgCostT": "50105000", "sL_LossRatio": "0.851194773805709", "sL_AssetLoss": "259003", "sL_BldgLoss": "220462", "sL_StrLoss": "149832", "sL_NStrLoss": "70630", "sL_ContLoss": "38541", "geom_point": "0101000020E61000008EABBADC5A705EC0D1904CE287974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.725542293999936, 49.204061089000078 ], [ -121.723445128999927, 49.202479315000083 ], [ -121.723313368999925, 49.202379915000044 ], [ -121.722990684999928, 49.202133432000075 ], [ -121.722820440999897, 49.202003407000078 ], [ -121.722624015999955, 49.201839042000067 ], [ -121.722404489999946, 49.201653411000017 ], [ -121.72117588499998, 49.200718227000088 ], [ -121.721509810999947, 49.200721924000121 ], [ -121.721523722999933, 49.200182341000044 ], [ -121.720700306, 49.200173222000032 ], [ -121.720728143999963, 49.19909405500006 ], [ -121.721139843999964, 49.19909861500004 ], [ -121.72114680199995, 49.198828823000063 ], [ -121.723616984999964, 49.198856151000037 ], [ -121.723623928999984, 49.198586360000036 ], [ -121.72403562599996, 49.19859090900011 ], [ -121.724042566999941, 49.198321118000074 ], [ -121.72527764699997, 49.198334757000133 ], [ -121.725284580999983, 49.198064964000075 ], [ -121.726107962999933, 49.198074050000045 ], [ -121.72613568299991, 49.196994880000069 ], [ -121.72654736599999, 49.196999422000026 ], [ -121.726561220999898, 49.19645983600001 ], [ -121.726972897999971, 49.196464375000062 ], [ -121.72697982399994, 49.196194583000128 ], [ -121.7273915009999, 49.196199120000159 ], [ -121.727393310999958, 49.196128551000143 ], [ -121.726966164, 49.196111601000055 ], [ -121.727296869999932, 49.192517808000019 ], [ -121.7325187599999, 49.192724919000042 ], [ -121.732719058999919, 49.190545332000063 ], [ -121.733066884999971, 49.190559119000135 ], [ -121.733094558999952, 49.190257940000066 ], [ -121.733506137999925, 49.190274252000044 ], [ -121.733524651999943, 49.190072749000151 ], [ -121.73591652099999, 49.190167514000102 ], [ -121.736197104999945, 49.187111604000059 ], [ -121.73624300499992, 49.187113422000024 ], [ -121.736347394999953, 49.185976376000042 ], [ -121.736385785, 49.185558205000092 ], [ -121.738327936999923, 49.185635112000064 ], [ -121.738330301999895, 49.18560935100006 ], [ -121.738620163999911, 49.185620826000026 ], [ -121.741250208999986, 49.185724910000026 ], [ -121.741328718999981, 49.184868721000051 ], [ -121.743735959999967, 49.184963930000023 ], [ -121.743747604999967, 49.184503975000091 ], [ -121.744330101999964, 49.184510310000086 ], [ -121.744982350999948, 49.184517401000079 ], [ -121.744975525999948, 49.184787197000119 ], [ -121.745387109999953, 49.184791669000056 ], [ -121.745386316999912, 49.184823052000077 ], [ -121.745381110999972, 49.185028967000108 ], [ -121.74620368799999, 49.185061476000094 ], [ -121.746209161999957, 49.184844859000073 ], [ -121.746244366999946, 49.183451635000075 ], [ -121.746655940999943, 49.183456101000033 ], [ -121.746669567999959, 49.182916511 ], [ -121.746968521999946, 49.182919755000114 ], [ -121.747081137999913, 49.182920977000045 ], [ -121.747087949999951, 49.182651182000022 ], [ -121.748322650999938, 49.182664572000085 ], [ -121.748302233999979, 49.183473959000018 ], [ -121.747890659999939, 49.183469497000019 ], [ -121.747877043999935, 49.184009087000035 ], [ -121.748288621999976, 49.184013549000127 ], [ -121.748281817999924, 49.184283344000086 ], [ -121.748693398999961, 49.184287806000036 ], [ -121.74867298599996, 49.185097191000033 ], [ -121.749026731999948, 49.185101024000105 ], [ -121.749107836999926, 49.184214904000022 ], [ -121.750340779999974, 49.184263586000085 ], [ -121.750346516999954, 49.184035838000113 ], [ -121.750758096999931, 49.18404029200007 ], [ -121.750764887999978, 49.183770496000086 ], [ -121.751129938999938, 49.183774445000047 ], [ -121.751209122999938, 49.182908851000064 ], [ -121.752432092999982, 49.182957117000043 ], [ -121.752445112999922, 49.182439316000064 ], [ -121.753679811, 49.18245264799999 ], [ -121.753693363999929, 49.181913057000045 ], [ -121.754104925999954, 49.181917498000111 ], [ -121.75413202, 49.180838313000088 ], [ -121.754543571999989, 49.180842753000036 ], [ -121.754550342999906, 49.180572957000031 ], [ -121.754961894999923, 49.180577395000078 ], [ -121.754968663999989, 49.18030759800007 ], [ -121.755791761999916, 49.180316471000069 ], [ -121.755805289999941, 49.179776878000091 ], [ -121.756241588999956, 49.179781578000089 ], [ -121.756283991999936, 49.179317453000074 ], [ -121.754778726, 49.179258092000062 ], [ -121.755107162999963, 49.175664123000026 ], [ -121.757260332999962, 49.175749028000034 ], [ -121.757295188999933, 49.175367374000082 ], [ -121.757382098, 49.175370800000067 ], [ -121.75742181, 49.1749359760001 ], [ -121.75837453199992, 49.174973530000045 ], [ -121.758385774999965, 49.174850399000029 ], [ -121.758550772999968, 49.174856902000101 ], [ -121.758595692999918, 49.174364902000086 ], [ -121.762314560999954, 49.174511404000107 ], [ -121.762509348999956, 49.172375937000091 ], [ -121.762511843999917, 49.172348589000123 ], [ -121.763541295, 49.172389121000059 ], [ -121.76460671699995, 49.172431058000072 ], [ -121.764609295999918, 49.172402757000015 ], [ -121.764630466999975, 49.172170540000096 ], [ -121.769288854999914, 49.172353779000026 ], [ -121.770100464, 49.172385683000059 ], [ -121.770096481999971, 49.17242941000012 ], [ -121.771568116999958, 49.172487244000131 ], [ -121.771240973999937, 49.176081280000027 ], [ -121.767804476999927, 49.175946198000169 ], [ -121.767691888999977, 49.17718196200007 ], [ -121.766131058999974, 49.177120573000089 ], [ -121.765975925, 49.178822603000143 ], [ -121.766312903999932, 49.178835859000053 ], [ -121.766591941999977, 49.178846835000051 ], [ -121.766874041999927, 49.178857930000049 ], [ -121.769584891999955, 49.178964514000072 ], [ -121.769573251999972, 49.179092330000074 ], [ -121.770122731999962, 49.179113926000042 ], [ -121.770168683999955, 49.178609290000111 ], [ -121.770196390999956, 49.178610379000069 ], [ -121.770305608999962, 49.177410932000058 ], [ -121.770312871999948, 49.177331156000072 ], [ -121.770321104999965, 49.177240739000055 ], [ -121.770402, 49.176352289000071 ], [ -121.772328990999981, 49.176428002000108 ], [ -121.772438095, 49.176432288000122 ], [ -121.772444173999958, 49.176365487000126 ], [ -121.772583494999949, 49.174834537000059 ], [ -121.774642240999981, 49.174915386000158 ], [ -121.774743614999977, 49.174919366000054 ], [ -121.774853544999985, 49.17492368200007 ], [ -121.774879686999896, 49.174924708000034 ], [ -121.774882100999932, 49.174898168000034 ], [ -121.774893071999941, 49.174777537000175 ], [ -121.774901318000019, 49.174686873000077 ], [ -121.775145445999939, 49.172002490000089 ], [ -121.778572912999934, 49.172136995000095 ], [ -121.778804629999982, 49.172146084000069 ], [ -121.77897061299997, 49.172152595000043 ], [ -121.780615470999962, 49.172217099000036 ], [ -121.780509842999948, 49.173380098000052 ], [ -121.78175910399996, 49.173429072000033 ], [ -121.781616544999906, 49.174999083000117 ], [ -121.78135605599995, 49.174994948000126 ], [ -121.78130128299992, 49.174994084000048 ], [ -121.78116615299993, 49.175746951000058 ], [ -121.780940495999957, 49.177003839000115 ], [ -121.777887081999921, 49.176884099000169 ], [ -121.77772754199998, 49.178639347000036 ], [ -121.777494145999952, 49.178632627000141 ], [ -121.777345424999965, 49.178628342000124 ], [ -121.775690979999951, 49.178563420000046 ], [ -121.775585938999924, 49.179718448000116 ], [ -121.775977746, 49.179722603000066 ], [ -121.775973958999941, 49.179876127000043 ], [ -121.776267780999916, 49.179887657000087 ], [ -121.776369322000022, 49.178770939000046 ], [ -121.77698821499996, 49.178795224000083 ], [ -121.776696944999969, 49.18010002900013 ], [ -121.776805245999967, 49.180104 ], [ -121.78183385599999, 49.180288540000099 ], [ -121.781775078999971, 49.180808528000114 ], [ -121.781605652999957, 49.18230661300008 ], [ -121.781435312999946, 49.183812563000117 ], [ -121.780852706999923, 49.183812037000095 ], [ -121.779104642, 49.183810461000064 ], [ -121.778381983, 49.183810183000091 ], [ -121.778066442999943, 49.183810057000066 ], [ -121.777393962999909, 49.183809751000133 ], [ -121.776598004999968, 49.183809398000037 ], [ -121.775711383999962, 49.183808992000081 ], [ -121.77467764, 49.183813901000107 ], [ -121.774292958999965, 49.183815716000069 ], [ -121.773600592999941, 49.18381901 ], [ -121.772152290999927, 49.183819908000046 ], [ -121.769738878999959, 49.183820603000107 ], [ -121.768976898999966, 49.183822194000115 ], [ -121.767739875999922, 49.183763700000092 ], [ -121.76772415, 49.183760893000091 ], [ -121.767354908999934, 49.183695307000058 ], [ -121.765919939999918, 49.183155199000062 ], [ -121.765656102999984, 49.183055891000059 ], [ -121.765420152999965, 49.182988472000027 ], [ -121.765143713, 49.182909508000058 ], [ -121.764814706999942, 49.182874982000094 ], [ -121.764179984999913, 49.182879691000096 ], [ -121.763703410999952, 49.182988108000139 ], [ -121.763484803999944, 49.183037232000039 ], [ -121.763092882999942, 49.182261696000054 ], [ -121.762180897999897, 49.181305105000071 ], [ -121.76193992899999, 49.181051407000012 ], [ -121.761849008999917, 49.180955702000077 ], [ -121.761732127999963, 49.180832050000049 ], [ -121.761660573999947, 49.180756396000085 ], [ -121.761558577999949, 49.18064849200001 ], [ -121.761546729999935, 49.18065312900012 ], [ -121.761307585999987, 49.180746518000049 ], [ -121.761204431999914, 49.180788971000027 ], [ -121.760358669999917, 49.181117024000109 ], [ -121.758548346999959, 49.181850947000086 ], [ -121.757934305999981, 49.18210455400007 ], [ -121.757007357999939, 49.182488515000088 ], [ -121.756972344999951, 49.182488138000082 ], [ -121.756971968999949, 49.182503173000015 ], [ -121.754408101, 49.183565100000052 ], [ -121.752636669999973, 49.18433696500005 ], [ -121.74976024599998, 49.185590207000082 ], [ -121.74573918399993, 49.187341896000092 ], [ -121.7449334399999, 49.187743352000062 ], [ -121.744909116999935, 49.187755509000056 ], [ -121.743727094999926, 49.188399496000059 ], [ -121.742007976999943, 49.189405399000066 ], [ -121.741280219999965, 49.189880990000063 ], [ -121.740337194999981, 49.190497203000085 ], [ -121.74018096599994, 49.190606751000097 ], [ -121.739415710999936, 49.19114331300004 ], [ -121.738543679999964, 49.191790541000081 ], [ -121.738544795999971, 49.191972007000132 ], [ -121.738545229999914, 49.192232583000091 ], [ -121.738569211999931, 49.192587705000037 ], [ -121.738522296999932, 49.192829289000017 ], [ -121.738524700999932, 49.193326291000091 ], [ -121.738127222999964, 49.193319502000108 ], [ -121.737744199999938, 49.193378309000124 ], [ -121.737425390999988, 49.193485614000075 ], [ -121.737097392999956, 49.193693598000031 ], [ -121.736282504999934, 49.194493580000071 ], [ -121.735886696999941, 49.194840411000015 ], [ -121.735387513999939, 49.195193103000086 ], [ -121.73344448499995, 49.196290883000096 ], [ -121.732629908999954, 49.196751107000061 ], [ -121.732262405999961, 49.197014200000062 ], [ -121.731983986999978, 49.197309800000085 ], [ -121.731419510999928, 49.198071899000105 ], [ -121.731293137999955, 49.198207787000101 ], [ -121.732498511999964, 49.198689441000042 ], [ -121.733242929999946, 49.199078180000164 ], [ -121.733511552999971, 49.19934765700004 ], [ -121.733808905000018, 49.199953726000111 ], [ -121.733866318999972, 49.200019420000061 ], [ -121.730116045999964, 49.199870775000051 ], [ -121.73012829799994, 49.19973754200003 ], [ -121.729771730999985, 49.199733620000082 ], [ -121.729764820999932, 49.2000034120001 ], [ -121.728941404999915, 49.199994353000051 ], [ -121.728934490999961, 49.200264146000023 ], [ -121.727699358999985, 49.200250545000081 ], [ -121.727692436999959, 49.200520337000064 ], [ -121.726457301999972, 49.200506722000114 ], [ -121.72645037199996, 49.200776515 ], [ -121.725626944999931, 49.200767432000134 ], [ -121.725620010999961, 49.201037223000128 ], [ -121.725208294999931, 49.201032679000065 ], [ -121.725201359999957, 49.201302471000119 ], [ -121.724789640999944, 49.201297925000077 ], [ -121.724768828000023, 49.202107302000108 ], [ -121.725180551999983, 49.202111848000094 ], [ -121.725166679999944, 49.202651433000014 ], [ -121.72557841, 49.202655976000109 ], [ -121.725571474999967, 49.202925768000114 ], [ -121.726394937999956, 49.202934852000112 ], [ -121.726388008999962, 49.203204645000014 ], [ -121.726799743999962, 49.20320918500007 ], [ -121.72677896, 49.204018562000037 ], [ -121.725543738999988, 49.204004936000089 ], [ -121.725542293999936, 49.204061089000078 ] ], [ [ -121.734026537999938, 49.194382966000056 ], [ -121.734031099000021, 49.194204235000043 ], [ -121.732639120999934, 49.194149074000038 ], [ -121.732569489999932, 49.194906722000034 ], [ -121.732777765999984, 49.194909007000042 ], [ -121.732791551999981, 49.194369421000076 ], [ -121.734026537999938, 49.194382966000056 ] ], [ [ -121.765146146999925, 49.182396833000027 ], [ -121.765144443999986, 49.182415493000079 ], [ -121.76520765199993, 49.182417980000039 ], [ -121.765208115999911, 49.182399271000158 ], [ -121.765146146999925, 49.182396833000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.97042082138978", "sL_AssetLoss": "1224.51", "sL_BldgLoss": "1188.29", "sL_StrLoss": "1062.49", "sL_NStrLoss": "125.8", "sL_ContLoss": "36.22", "geom_point": "0101000020E610000064364C5D47725EC00C8BF61D68934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.783863092999965, 49.15022823500005 ], [ -121.789330598999953, 49.150442408000089 ], [ -121.789247320999934, 49.151361698000073 ], [ -121.785269792999941, 49.151301996000065 ], [ -121.785353004999962, 49.153893597000014 ], [ -121.783537055999929, 49.153822431000094 ], [ -121.783769510999932, 49.151259927000126 ], [ -121.783863092999965, 49.15022823500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.932691548962361", "sL_AssetLoss": "1267.3", "sL_BldgLoss": "1182", "sL_StrLoss": "982", "sL_NStrLoss": "200", "sL_ContLoss": "85.3", "geom_point": "0101000020E610000038AE143C24725EC070A994E876994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.782016569999939, 49.19925547400009 ], [ -121.782051110999987, 49.198875247000068 ], [ -121.780806050999985, 49.198826470000085 ], [ -121.78137347699996, 49.198660076000088 ], [ -121.782204426999968, 49.198476498000048 ], [ -121.782544381999969, 49.198433730000033 ], [ -121.783100393999959, 49.198428408000076 ], [ -121.783788575999978, 49.198549764000084 ], [ -121.784098630999893, 49.198614700000086 ], [ -121.785187227999955, 49.198954258000093 ], [ -121.786124959999967, 49.199416323000044 ], [ -121.782016569999939, 49.19925547400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.988078087361256", "sL_AssetLoss": "1714.49", "sL_BldgLoss": "1694.05", "sL_StrLoss": "1545.85", "sL_NStrLoss": "148.2", "sL_ContLoss": "20.44", "geom_point": "0101000020E610000067AD4FD67B665EC0A297D5645B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.599805725999914, 49.247650942000035 ], [ -121.599811094999922, 49.247594371000083 ], [ -121.599472117999966, 49.247580533000139 ], [ -121.59947755799999, 49.24752321100005 ], [ -121.59848798799996, 49.247482807000019 ], [ -121.598829001999945, 49.243889697000093 ], [ -121.599089256999946, 49.243900323000055 ], [ -121.599148622999934, 49.243274702000065 ], [ -121.599270072999971, 49.243279661000059 ], [ -121.599298031999965, 49.242985005000065 ], [ -121.599376607999972, 49.242988213000068 ], [ -121.599404143999976, 49.242698007000101 ], [ -121.599668244999961, 49.242708790000094 ], [ -121.599690244999948, 49.24247691300004 ], [ -121.599723939999976, 49.242478289000097 ], [ -121.599758662999989, 49.242112314000089 ], [ -121.603034898999965, 49.242246023000035 ], [ -121.603598687999977, 49.243020505000096 ], [ -121.604044290999937, 49.243295304000156 ], [ -121.604160994000011, 49.243565901000103 ], [ -121.603998683, 49.244896193000073 ], [ -121.60402261299997, 49.245517088000085 ], [ -121.60389202, 49.245803402000028 ], [ -121.603984403999959, 49.246415787000025 ], [ -121.603694199, 49.246448504000021 ], [ -121.603598012999967, 49.246942688000019 ], [ -121.603393590999957, 49.246894308000115 ], [ -121.602753591999914, 49.247193397000075 ], [ -121.602305593999986, 49.247466908000092 ], [ -121.60227439399992, 49.247627815000058 ], [ -121.602627910999942, 49.247740304000054 ], [ -121.603313613999887, 49.247757409000087 ], [ -121.603460620999925, 49.247800078000111 ], [ -121.599805725999914, 49.247650942000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3699917", "BldgCostT": "2551667", "sL_LossRatio": "0.932874566065559", "sL_AssetLoss": "6510.2", "sL_BldgLoss": "6073.2", "sL_StrLoss": "4736.2", "sL_NStrLoss": "1337", "sL_ContLoss": "437", "geom_point": "0101000020E6100000EDBF106A2D725EC04994494F09964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.784707965999971, 49.168956933000075 ], [ -121.785811379999984, 49.169000151000027 ], [ -121.785880476999978, 49.171084999000087 ], [ -121.785868733999948, 49.17158568100006 ], [ -121.785858360999896, 49.172028572000023 ], [ -121.785847389999972, 49.172495082000069 ], [ -121.785787107, 49.17506518900008 ], [ -121.781725078999926, 49.175000805000067 ], [ -121.781987259999937, 49.172113254000095 ], [ -121.782461167999941, 49.172131827000065 ], [ -121.782589902999973, 49.170713689000095 ], [ -121.782598027999924, 49.170624180000111 ], [ -121.782606796, 49.170527592000056 ], [ -121.782756307999975, 49.168880462000061 ], [ -121.784504324999915, 49.168948955000175 ], [ -121.78463419, 49.168954043000035 ], [ -121.784707965999971, 49.168956933000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.952510917030568", "sL_AssetLoss": "1099.2", "sL_BldgLoss": "1047", "sL_StrLoss": "904", "sL_NStrLoss": "143", "sL_ContLoss": "52.2", "geom_point": "0101000020E6100000B85707BCA3715EC0EC66CA77BE994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.777053479999964, 49.19990902100006 ], [ -121.777086167999968, 49.199895252000061 ], [ -121.776914327999989, 49.201784471000067 ], [ -121.775609696999979, 49.201733300000036 ], [ -121.77560507499993, 49.201784102000069 ], [ -121.773220592999962, 49.20169053700009 ], [ -121.77344659299996, 49.201592973000025 ], [ -121.77348174699992, 49.201388038000097 ], [ -121.773736516999946, 49.201203754000076 ], [ -121.77465779399995, 49.200921804000075 ], [ -121.776730324999946, 49.200074453000092 ], [ -121.777053479999964, 49.19990902100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.979063239067661", "sL_AssetLoss": "2985.18", "sL_BldgLoss": "2922.68", "sL_StrLoss": "2617.88", "sL_NStrLoss": "304.8", "sL_ContLoss": "62.5", "geom_point": "0101000020E610000066C9EBDA81715EC0E0F25833B2954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.7709794599999, 49.16759627700003 ], [ -121.776448948000024, 49.167811101 ], [ -121.776122215999962, 49.171405178000064 ], [ -121.770652307999939, 49.171190340000052 ], [ -121.7709794599999, 49.16759627700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.887908208296558", "sL_AssetLoss": "33.99", "sL_BldgLoss": "30.18", "sL_StrLoss": "4.18", "sL_NStrLoss": "26", "sL_ContLoss": "3.81", "geom_point": "0101000020E6100000BD16BA338F6B5EC04E00CD395B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.681437206999988, 49.236163863000058 ], [ -121.68185523399994, 49.236168633000013 ], [ -121.681826511999972, 49.237247777000057 ], [ -121.681218343, 49.23724083500008 ], [ -121.681002493, 49.237238371000053 ], [ -121.680989149999945, 49.237739284000071 ], [ -121.680980935999941, 49.238047728000026 ], [ -121.680794602999981, 49.238045600000135 ], [ -121.679332870999986, 49.238028895000106 ], [ -121.679361649999947, 49.236949753000104 ], [ -121.680597669999926, 49.236963879000086 ], [ -121.680619231999984, 49.236154522000085 ], [ -121.681437206999988, 49.236163863000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5145083", "BldgCostT": "3548333", "sL_LossRatio": "0.98016673625234", "sL_AssetLoss": "3712.45", "sL_BldgLoss": "3638.82", "sL_StrLoss": "3307.12", "sL_NStrLoss": "331.7", "sL_ContLoss": "73.63", "geom_point": "0101000020E61000009833DB153A6D5EC0A7AB9E40169B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.703460585999949, 49.213744264000105 ], [ -121.703461276, 49.213717861000113 ], [ -121.703206902999952, 49.213707715000091 ], [ -121.703215787999909, 49.2136117390001 ], [ -121.703539570999951, 49.210114092000012 ], [ -121.704689768999941, 49.210159969000081 ], [ -121.704721439999972, 49.209817720000039 ], [ -121.705458721999918, 49.209847120000056 ], [ -121.705586979999978, 49.208460837000082 ], [ -121.70678663299995, 49.208508665000053 ], [ -121.706794276999986, 49.208426023000065 ], [ -121.707325126999947, 49.208800009000093 ], [ -121.707958807999916, 49.20924646700005 ], [ -121.708208982999963, 49.209441869000059 ], [ -121.708242991999953, 49.209562193000046 ], [ -121.708227707999967, 49.209712639000053 ], [ -121.709312306999905, 49.21058272500008 ], [ -121.710776517999975, 49.211757296000016 ], [ -121.710728895999949, 49.212272619000089 ], [ -121.70999157199999, 49.212243254000029 ], [ -121.709869316, 49.213565923000075 ], [ -121.709316107999911, 49.213607734000085 ], [ -121.708713146999983, 49.213583714000038 ], [ -121.708701721999915, 49.213707287000091 ], [ -121.707728280999959, 49.213887982000095 ], [ -121.704382727999942, 49.213754613000063 ], [ -121.703460585999949, 49.213744264000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5572833", "BldgCostT": "3843333", "sL_LossRatio": "0.973571734166974", "sL_AssetLoss": "4721.46", "sL_BldgLoss": "4596.68", "sL_StrLoss": "4116.88", "sL_NStrLoss": "479.8", "sL_ContLoss": "124.78", "geom_point": "0101000020E61000008D4D2B8540725EC031DC0C79FC944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.784338856999938, 49.16461460000005 ], [ -121.784352475999953, 49.164464495000111 ], [ -121.783352187999967, 49.164425299000058 ], [ -121.783678312999939, 49.160831162000171 ], [ -121.785057351999953, 49.160885197000056 ], [ -121.785097376999886, 49.160443894000082 ], [ -121.785615322999973, 49.160464184000013 ], [ -121.785624960999925, 49.160357906000058 ], [ -121.787820464999925, 49.160443886000039 ], [ -121.78789771, 49.159591658000117 ], [ -121.790382833999928, 49.159688926000058 ], [ -121.790392326999978, 49.161207514000033 ], [ -121.79031464399999, 49.161211907000109 ], [ -121.790189321999932, 49.161218951000102 ], [ -121.790064018999956, 49.161226016000107 ], [ -121.789938696999968, 49.161233059000104 ], [ -121.789813411999944, 49.161240147000065 ], [ -121.789688109999986, 49.16124721400007 ], [ -121.789562786999966, 49.161254256000156 ], [ -121.789437483999933, 49.161261322000072 ], [ -121.789312145999986, 49.161268398000104 ], [ -121.789186876999935, 49.161275451000108 ], [ -121.789061571999966, 49.161282516000021 ], [ -121.788936252999989, 49.161289558000078 ], [ -121.788810948999952, 49.161296623000077 ], [ -121.788685661, 49.161303709000045 ], [ -121.788560305999937, 49.161310762000063 ], [ -121.788435001999957, 49.16131782700009 ], [ -121.788309731999959, 49.161324879000112 ], [ -121.788184426999948, 49.16133194300005 ], [ -121.788059123999972, 49.161339006000098 ], [ -121.787933767999988, 49.161346057000067 ], [ -121.787808463999937, 49.161353120000065 ], [ -121.787683175999916, 49.161360207000051 ], [ -121.78755785599995, 49.161367247000058 ], [ -121.787432585999923, 49.161374298000041 ], [ -121.787307246999887, 49.161381371000047 ], [ -121.787181941999918, 49.161388434000038 ], [ -121.787056636999964, 49.161395497000029 ], [ -121.786931333999959, 49.16140255800012 ], [ -121.786806010999982, 49.161409598000091 ], [ -121.786680671999989, 49.161416671 ], [ -121.786567595999969, 49.161423058000061 ], [ -121.786555401999976, 49.161423721000041 ], [ -121.786430098999944, 49.161430782000139 ], [ -121.786304792999914, 49.161437843000051 ], [ -121.78617947099994, 49.161444881000094 ], [ -121.786487331, 49.163450386000079 ], [ -121.786218819999959, 49.163762297000069 ], [ -121.786150733999989, 49.163841351000038 ], [ -121.78595738199999, 49.165092494000085 ], [ -121.785767000999897, 49.167890746000047 ], [ -121.785778520999926, 49.167977979000085 ], [ -121.785778775999987, 49.167989200000122 ], [ -121.785781033999939, 49.168084512000121 ], [ -121.785787455000019, 49.168278237000052 ], [ -121.785549606999894, 49.168268922000074 ], [ -121.785442359999962, 49.168264721000142 ], [ -121.78531142099996, 49.16825959300013 ], [ -121.781926307, 49.168126951000048 ], [ -121.78225256899999, 49.164532838000071 ], [ -121.784338856999938, 49.16461460000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10077500", "BldgCostT": "6950000", "sL_LossRatio": "0.982574650413525", "sL_AssetLoss": "7225.68", "sL_BldgLoss": "7099.77", "sL_StrLoss": "6475.27", "sL_NStrLoss": "624.5", "sL_ContLoss": "125.91", "geom_point": "0101000020E61000002D8320F6786A5EC07FE3E79608A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.651039260999951, 49.295831146000062 ], [ -121.65108610399993, 49.29533218800006 ], [ -121.655341700999941, 49.295503606000089 ], [ -121.655371931999952, 49.295181281000069 ], [ -121.654488133999976, 49.295145696000084 ], [ -121.654825160999948, 49.291552667000083 ], [ -121.656879906999961, 49.291635391000057 ], [ -121.656915190999968, 49.291259017000066 ], [ -121.662398723999928, 49.291479588000051 ], [ -121.662317582999933, 49.292346196000018 ], [ -121.662991489999953, 49.292353997000077 ], [ -121.663028536999917, 49.292354426000095 ], [ -121.663028890999925, 49.292341379000099 ], [ -121.66303583399997, 49.292084644000113 ], [ -121.663079523999954, 49.292085151000059 ], [ -121.663448298999967, 49.292089417000085 ], [ -121.663455593, 49.291819635000117 ], [ -121.664280515999934, 49.29182917400005 ], [ -121.664287807999969, 49.291559393000036 ], [ -121.665112726, 49.291568927000107 ], [ -121.665120010999914, 49.291299147000053 ], [ -121.665936649999963, 49.291308579000066 ], [ -121.665944926999941, 49.291308674000057 ], [ -121.665945031999954, 49.291304788000012 ], [ -121.66595220799995, 49.291038892000074 ], [ -121.666510471999942, 49.291045337000099 ], [ -121.666777117999942, 49.291048414000024 ], [ -121.666781709999938, 49.290878181000103 ], [ -121.66678439399999, 49.290778633000023 ], [ -121.666940321999917, 49.290780431000087 ], [ -121.667196847999918, 49.290783391000019 ], [ -121.667201263999971, 49.290619618000079 ], [ -121.667211394999981, 49.290243828000015 ], [ -121.66762384399999, 49.290248584000096 ], [ -121.667638388999961, 49.289709021000156 ], [ -121.668050832999953, 49.289713777000046 ], [ -121.668058100999957, 49.289443995000092 ], [ -121.668410806999944, 49.289448060000019 ], [ -121.668470543999959, 49.289448748000069 ], [ -121.668472815999962, 49.289364409000036 ], [ -121.668492343999972, 49.288639403000154 ], [ -121.668861513999985, 49.288643657000108 ], [ -121.668904778999931, 49.288644156000032 ], [ -121.668908415999965, 49.288509077000093 ], [ -121.669020994999968, 49.284327641000054 ], [ -121.66938743399993, 49.284331862000037 ], [ -121.669433393999924, 49.284332392000053 ], [ -121.669436711999964, 49.284209117000046 ], [ -121.669455175999929, 49.283523045000024 ], [ -121.669821274999904, 49.283527261000124 ], [ -121.669867567999972, 49.283527793000133 ], [ -121.669869471999974, 49.2834570200001 ], [ -121.669882082999933, 49.28298822900009 ], [ -121.670188717999963, 49.282991759 ], [ -121.670294472999956, 49.282992976000067 ], [ -121.67029882099996, 49.28283129500003 ], [ -121.670308982000037, 49.282453411000105 ], [ -121.670556150999985, 49.282456255000092 ], [ -121.670721365999924, 49.282458156000175 ], [ -121.670728158, 49.282205553000061 ], [ -121.670735872999941, 49.281918591000078 ], [ -121.670923559999935, 49.281920750000019 ], [ -121.671148251999952, 49.281923335000045 ], [ -121.671160216000018, 49.281478147000058 ], [ -121.671177252999911, 49.280844204000083 ], [ -121.671396615999967, 49.280846728000085 ], [ -121.671589623999935, 49.28084894800002 ], [ -121.671662095999977, 49.278151120000089 ], [ -121.671612457999984, 49.278150549000024 ], [ -121.671249747000019, 49.278146377000091 ], [ -121.671271492999949, 49.277337030000062 ], [ -121.671653983999974, 49.277341428000092 ], [ -121.671683834999953, 49.277341772000071 ], [ -121.67168891099999, 49.277152781000069 ], [ -121.671727309999937, 49.275723074000034 ], [ -121.672139637999976, 49.27572781400012 ], [ -121.672146880999904, 49.275458031000049 ], [ -121.672333415999944, 49.275460175000092 ], [ -121.673383861, 49.27547224300006 ], [ -121.673380401999964, 49.275601207000115 ], [ -121.673212201999945, 49.275982386000123 ], [ -121.673142097000024, 49.276547802000067 ], [ -121.672563291999921, 49.277099009000018 ], [ -121.672630212999977, 49.277198602000084 ], [ -121.672916817999933, 49.277506640000098 ], [ -121.672827391999974, 49.280838810000027 ], [ -121.672786108999915, 49.281113803000046 ], [ -121.671807598999933, 49.282730291000057 ], [ -121.67165120699994, 49.282962383000033 ], [ -121.670179592999958, 49.284483497000075 ], [ -121.670106097999934, 49.285157090000013 ], [ -121.67043829399995, 49.286601300000036 ], [ -121.670483809999922, 49.287437302000107 ], [ -121.670583150999974, 49.287598623000058 ], [ -121.670556626999925, 49.288584981000071 ], [ -121.670235013999942, 49.288929339000049 ], [ -121.67013483099997, 49.288928186000071 ], [ -121.670132867999882, 49.289001122000094 ], [ -121.669385816999949, 49.28943970600006 ], [ -121.669507298999946, 49.289999404000092 ], [ -121.66950669799995, 49.29000041700003 ], [ -121.669280905, 49.289997817000042 ], [ -121.669270110999918, 49.290398753000019 ], [ -121.669220492999983, 49.29048229100006 ], [ -121.669135214999983, 49.290535870000078 ], [ -121.668853927999962, 49.290532629000083 ], [ -121.668848997999987, 49.29071569300001 ], [ -121.668744589999946, 49.290781290000105 ], [ -121.668077688, 49.290990712000031 ], [ -121.667926592999905, 49.291546097000051 ], [ -121.667758489999969, 49.291670004000075 ], [ -121.666945799999951, 49.292174185000128 ], [ -121.666551599999977, 49.292537407000083 ], [ -121.665706288999914, 49.292789514000106 ], [ -121.664233794999987, 49.292772406000104 ], [ -121.662746488999957, 49.292907704000037 ], [ -121.662232687999946, 49.293072908000049 ], [ -121.661757321, 49.293381905000018 ], [ -121.661238299999965, 49.293690990000087 ], [ -121.66044999399999, 49.293906008000114 ], [ -121.660012841999929, 49.294144787000043 ], [ -121.659797552, 49.293755566000122 ], [ -121.659685033999949, 49.293552122000087 ], [ -121.659217729999938, 49.293751524000072 ], [ -121.659021773999953, 49.293873179000045 ], [ -121.658377026999972, 49.294273448000098 ], [ -121.658048810999944, 49.294477199000092 ], [ -121.65714717899999, 49.295140585000041 ], [ -121.657101382999954, 49.29518467400009 ], [ -121.65669200799999, 49.295578700000085 ], [ -121.65677022, 49.295562218000086 ], [ -121.657528618999891, 49.295402451000044 ], [ -121.658620056999922, 49.29447584600004 ], [ -121.659117373999933, 49.294232910000105 ], [ -121.65929498899996, 49.294418706000094 ], [ -121.658990174999943, 49.294863898000074 ], [ -121.657861599999961, 49.295684216000062 ], [ -121.656309525999959, 49.295977023000056 ], [ -121.656270502000027, 49.295984400000123 ], [ -121.655946804999985, 49.295978252000083 ], [ -121.655351250999914, 49.295966930000098 ], [ -121.650609914999947, 49.295876725 ], [ -121.65061579599994, 49.295814079000053 ], [ -121.651039260999951, 49.295831146000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.986232574248853", "sL_AssetLoss": "461.96", "sL_BldgLoss": "455.6", "sL_StrLoss": "434", "sL_NStrLoss": "21.6", "sL_ContLoss": "6.36", "geom_point": "0101000020E6100000BBC54F253B6B5EC0E2DEA1CD16A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.67488826899995, 49.265504451000055 ], [ -121.676125000999932, 49.265518630000059 ], [ -121.676081685, 49.267137333000036 ], [ -121.674844911999969, 49.267123153000092 ], [ -121.67488826899995, 49.265504451000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9625584", "BldgCostT": "6638334", "sL_LossRatio": "0.931835754924929", "sL_AssetLoss": "17330.2", "sL_BldgLoss": "16148.9", "sL_StrLoss": "13167.9", "sL_NStrLoss": "2981", "sL_ContLoss": "1181.3", "geom_point": "0101000020E6100000A3E4931D346F5EC0EAF90581369A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.731233945, 49.206935687000097 ], [ -121.731564398000017, 49.203341942000108 ], [ -121.731967398999956, 49.203357914000058 ], [ -121.732017308999943, 49.20281505 ], [ -121.734185175000022, 49.202900947000018 ], [ -121.73423834399992, 49.202322302000034 ], [ -121.735334664999954, 49.202365725000114 ], [ -121.735329130999958, 49.201615561000047 ], [ -121.735667410999909, 49.201614299000049 ], [ -121.735678858999947, 49.201489654000063 ], [ -121.735455638999923, 49.201480815000096 ], [ -121.735489866999899, 49.201108188000077 ], [ -121.735394559999975, 49.201104414000085 ], [ -121.735409426999951, 49.200942561000069 ], [ -121.738168991999927, 49.201763134000089 ], [ -121.738162566999975, 49.203630250000089 ], [ -121.738561192999938, 49.20374610800009 ], [ -121.740454447999952, 49.203703058000016 ], [ -121.740717753999917, 49.203697086000034 ], [ -121.740863771999912, 49.203710515000083 ], [ -121.741114044000014, 49.203733499000087 ], [ -121.741573642999938, 49.203843631000034 ], [ -121.74223247799992, 49.204072577000041 ], [ -121.743329199999906, 49.204647952000087 ], [ -121.74442601, 49.205088036000056 ], [ -121.744996777000011, 49.205259364000042 ], [ -121.74599862299999, 49.205457537000065 ], [ -121.746147411999956, 49.205486964000087 ], [ -121.746960510999955, 49.205726460000101 ], [ -121.747721331999941, 49.205891766000029 ], [ -121.748135880999939, 49.205924365000094 ], [ -121.748439231999939, 49.205911082000092 ], [ -121.749480282999968, 49.205761036000091 ], [ -121.748969234999947, 49.20641611000012 ], [ -121.748783880999966, 49.206653691000028 ], [ -121.747680318999983, 49.206755803000092 ], [ -121.746557085999967, 49.206680305000106 ], [ -121.744618412999955, 49.206263092000022 ], [ -121.743745792999945, 49.205983889 ], [ -121.742128623999974, 49.205867104000042 ], [ -121.74108600699995, 49.20532590300013 ], [ -121.740471198999941, 49.20522049800006 ], [ -121.738463305, 49.204234990000089 ], [ -121.737764700999946, 49.204182296000127 ], [ -121.737575003999908, 49.204647989000058 ], [ -121.737792992999942, 49.204713492000074 ], [ -121.738704989, 49.204508394000108 ], [ -121.739941986999938, 49.205492591000102 ], [ -121.740218385999967, 49.205424200000039 ], [ -121.74112099499996, 49.205569497000035 ], [ -121.742095109999966, 49.206137693000052 ], [ -121.740222397999986, 49.206359909000049 ], [ -121.739524355999933, 49.206534362000085 ], [ -121.739536677, 49.206400124000062 ], [ -121.738992561999908, 49.206378597000047 ], [ -121.739016454999941, 49.206118294000106 ], [ -121.737213902999912, 49.206046961000034 ], [ -121.73716076599996, 49.206625604000052 ], [ -121.736757734999983, 49.20660965100015 ], [ -121.736720090999981, 49.207019528000075 ], [ -121.736403705999976, 49.206992199000091 ], [ -121.736137786999919, 49.207129945000091 ], [ -121.731233945, 49.206935687000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.894706559263521", "sL_AssetLoss": "1738", "sL_BldgLoss": "1555", "sL_StrLoss": "1180", "sL_NStrLoss": "375", "sL_ContLoss": "183", "geom_point": "0101000020E61000008B8F6865AF725EC0BE1DFA51019A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.791479920999961, 49.203941816000032 ], [ -121.791488554999958, 49.203846572000067 ], [ -121.79102621199999, 49.203828503000096 ], [ -121.79114481, 49.202520328000034 ], [ -121.790645080999965, 49.202500796000066 ], [ -121.79071847199998, 49.201691326000109 ], [ -121.791035612999963, 49.201793888000047 ], [ -121.79146878899995, 49.202031694000105 ], [ -121.791534546999955, 49.202103092000115 ], [ -121.792004007999978, 49.202612809000108 ], [ -121.793513815, 49.203762092000055 ], [ -121.793926542999927, 49.203761309000107 ], [ -121.794068290999974, 49.203910207000085 ], [ -121.794161718999973, 49.204046583000036 ], [ -121.791479920999961, 49.203941816000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.956096898961797", "sL_AssetLoss": "2947.4", "sL_BldgLoss": "2818", "sL_StrLoss": "2392", "sL_NStrLoss": "426", "sL_ContLoss": "129.4", "geom_point": "0101000020E6100000E315B11D066D5EC003CACFDB92A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.704294954999938, 49.302965217000043 ], [ -121.704340635999969, 49.302472670000071 ], [ -121.700554458999932, 49.302321917000043 ], [ -121.700686258999923, 49.300902006000108 ], [ -121.699153103999933, 49.300840923000045 ], [ -121.699109552999943, 49.301309940000046 ], [ -121.697367701999923, 49.301240514000035 ], [ -121.697564310999979, 49.30096019000009 ], [ -121.697776819999916, 49.300684769000078 ], [ -121.69798718499996, 49.300412104000046 ], [ -121.69908721799996, 49.3000856970001 ], [ -121.701210090999908, 49.299950404000107 ], [ -121.703017060999969, 49.300103436 ], [ -121.703045082999949, 49.300105798000111 ], [ -121.704371790999971, 49.300448896000042 ], [ -121.707372627, 49.30030310900009 ], [ -121.707451113, 49.300299295000151 ], [ -121.707598673999925, 49.300279532000054 ], [ -121.70758359699991, 49.300596674000133 ], [ -121.707510540999948, 49.302134034000076 ], [ -121.707465038999956, 49.303091336000101 ], [ -121.704294954999938, 49.302965217000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.933760157596651", "sL_AssetLoss": "2842.7", "sL_BldgLoss": "2654.4", "sL_StrLoss": "1954.4", "sL_NStrLoss": "700", "sL_ContLoss": "188.3", "geom_point": "0101000020E6100000C4D83A1F7B725EC0A5B3DD4EEC9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.789125010999925, 49.220969395000083 ], [ -121.78819579, 49.220798503000054 ], [ -121.787393602999941, 49.220429703000036 ], [ -121.786774405999935, 49.219955390000081 ], [ -121.786471641999952, 49.219435919000041 ], [ -121.786194204999944, 49.218959899000055 ], [ -121.786022086999978, 49.217555599000029 ], [ -121.785987604999917, 49.216372495000073 ], [ -121.786036273999954, 49.215836477000067 ], [ -121.788303604999967, 49.215925148000025 ], [ -121.791511508999989, 49.216050519000078 ], [ -121.791486422999938, 49.216327163000095 ], [ -121.791536524999913, 49.216329120000069 ], [ -121.791268533, 49.21928437400004 ], [ -121.791480173999929, 49.21928659000011 ], [ -121.791460435000019, 49.220095984000054 ], [ -121.78977766099996, 49.220078364000123 ], [ -121.789704279999967, 49.220887196000064 ], [ -121.789793130999897, 49.22088812600002 ], [ -121.789791178999906, 49.22096807100008 ], [ -121.789125010999925, 49.220969395000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.953164916264547", "sL_AssetLoss": "1056.9", "sL_BldgLoss": "1007.4", "sL_StrLoss": "728.4", "sL_NStrLoss": "279", "sL_ContLoss": "49.5", "geom_point": "0101000020E610000023F02CE6CC6E5EC0E1AABA60D39E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.72962570299994, 49.238990999000059 ], [ -121.733588255999976, 49.239147930000065 ], [ -121.733557790999939, 49.239390204000088 ], [ -121.732760698999982, 49.240973906000107 ], [ -121.732781510999985, 49.241730109000088 ], [ -121.733018095999967, 49.242732001000014 ], [ -121.729294845999959, 49.242584544000053 ], [ -121.72962570299994, 49.238990999000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.985398750888057", "sL_AssetLoss": "943.07", "sL_BldgLoss": "929.3", "sL_StrLoss": "863", "sL_NStrLoss": "66.3", "sL_ContLoss": "13.77", "geom_point": "0101000020E6100000D805EE06F26A5EC069EE197033A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.668249394999989, 49.313619727000045 ], [ -121.669154804999948, 49.312862293000066 ], [ -121.669583081, 49.312785403000092 ], [ -121.669798695999972, 49.312785171000016 ], [ -121.670073880999936, 49.312784886000024 ], [ -121.670999512999956, 49.312783886000084 ], [ -121.671091691999905, 49.312973399000079 ], [ -121.672160591999955, 49.313067388000078 ], [ -121.673360706999944, 49.312981898000032 ], [ -121.67382966400001, 49.31283321500009 ], [ -121.673782860999921, 49.313334160000053 ], [ -121.673599680999956, 49.315294707000135 ], [ -121.668492624999971, 49.31508993300011 ], [ -121.668113277999979, 49.315074712000083 ], [ -121.668249394999989, 49.313619727000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.986442891159075", "sL_AssetLoss": "520.76", "sL_BldgLoss": "513.7", "sL_StrLoss": "465", "sL_NStrLoss": "48.7", "sL_ContLoss": "7.06", "geom_point": "0101000020E6100000C1F42822246D5EC007B9E6E937A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.704214865999958, 49.31252540400007 ], [ -121.707159109999964, 49.312642518000111 ], [ -121.70715439599995, 49.313243907000079 ], [ -121.705624415999978, 49.316187809000013 ], [ -121.703881515999953, 49.31611847200007 ], [ -121.704214865999958, 49.31252540400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.93337357579416", "sL_AssetLoss": "2650.6", "sL_BldgLoss": "2474", "sL_StrLoss": "1876", "sL_NStrLoss": "598", "sL_ContLoss": "176.6", "geom_point": "0101000020E61000008FDA6910CB715EC01167B06FC89A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.776307338, 49.207858744000056 ], [ -121.776526813999951, 49.207856690000014 ], [ -121.780881341999986, 49.208127588000082 ], [ -121.780867891999918, 49.208275578999988 ], [ -121.780654270999975, 49.21062575500013 ], [ -121.775746876999946, 49.21043340500006 ], [ -121.775179723999926, 49.210411160000071 ], [ -121.775382940999947, 49.208178349000079 ], [ -121.775406771999968, 49.207916498000095 ], [ -121.77560609299999, 49.207865305000034 ], [ -121.776307338, 49.207858744000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.973192915270464", "sL_AssetLoss": "626.7", "sL_BldgLoss": "609.9", "sL_StrLoss": "528", "sL_NStrLoss": "81.9", "sL_ContLoss": "16.8", "geom_point": "0101000020E610000012772765336D5EC0FB1154C709A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.705319543, 49.303123304000067 ], [ -121.707459472999943, 49.303208429000044 ], [ -121.707409260999896, 49.304264794000076 ], [ -121.707330244999952, 49.305927620000134 ], [ -121.707288395999967, 49.306807998000068 ], [ -121.704986344999938, 49.306716426000023 ], [ -121.705319543, 49.303123304000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.989944323461894", "sL_AssetLoss": "2713.89", "sL_BldgLoss": "2686.6", "sL_StrLoss": "2498", "sL_NStrLoss": "188.6", "sL_ContLoss": "27.29", "geom_point": "0101000020E61000001A189A67BC675EC05043E9454CAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.619213194999972, 49.342662079000036 ], [ -121.619514013999947, 49.342279308000101 ], [ -121.619590367999976, 49.342087604000056 ], [ -121.623040601999946, 49.342227452000024 ], [ -121.624758184, 49.34229703000004 ], [ -121.624721891999982, 49.342680856000086 ], [ -121.62490390399999, 49.342688228000057 ], [ -121.624564185999958, 49.346280887000084 ], [ -121.623552425999947, 49.346239907000076 ], [ -121.623425908999977, 49.347577409000088 ], [ -121.621859857999979, 49.347513960000171 ], [ -121.621552409999978, 49.350762745000111 ], [ -121.617794241999931, 49.350610388000042 ], [ -121.617707388999989, 49.347738859000046 ], [ -121.617666486, 49.347733366000092 ], [ -121.616788307999968, 49.347565053000039 ], [ -121.616361182999981, 49.347383224000083 ], [ -121.616402463999947, 49.346947511000046 ], [ -121.617968488999921, 49.347011039000044 ], [ -121.618276163999923, 49.343762246000075 ], [ -121.619105849, 49.343795894000024 ], [ -121.619213194999972, 49.342662079000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.982534773026133", "sL_AssetLoss": "1079.86", "sL_BldgLoss": "1061", "sL_StrLoss": "972", "sL_NStrLoss": "89", "sL_ContLoss": "18.86", "geom_point": "0101000020E61000002C41CA78296D5EC0F999403299A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.704030386999989, 49.311875387000036 ], [ -121.704175565999947, 49.310310426000093 ], [ -121.703950982, 49.310301489000061 ], [ -121.704284284999972, 49.306708390000033 ], [ -121.707287450999956, 49.306827861000102 ], [ -121.707284059999949, 49.306899186000116 ], [ -121.707237902999907, 49.307870112000039 ], [ -121.707237067999955, 49.307888093000031 ], [ -121.70718843399996, 49.308912208000066 ], [ -121.707182771999939, 49.309632108000073 ], [ -121.70717314099997, 49.310855422000024 ], [ -121.707164152999937, 49.312000045000033 ], [ -121.704030386999989, 49.311875387000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54413667", "BldgCostT": "37526667", "sL_LossRatio": "0.937822853227259", "sL_AssetLoss": "104052.7", "sL_BldgLoss": "97583", "sL_StrLoss": "77005", "sL_NStrLoss": "20578", "sL_ContLoss": "6469.7", "geom_point": "0101000020E6100000E29B64B3FC705EC02AFE08262B9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.734756088000012, 49.2464754310001 ], [ -121.734760605999966, 49.246298680000073 ], [ -121.734655541, 49.246294523000138 ], [ -121.734278202999974, 49.245551308000103 ], [ -121.733552198, 49.244923212000046 ], [ -121.733558219999921, 49.244158398000067 ], [ -121.733431928999963, 49.243583375000114 ], [ -121.733508459999925, 49.24275141200016 ], [ -121.733246936999961, 49.242741060000107 ], [ -121.732991779999949, 49.241579198000039 ], [ -121.73300778399998, 49.240958196000044 ], [ -121.733401601999944, 49.240117903000034 ], [ -121.733927806999986, 49.2393587910001 ], [ -121.733947027999989, 49.239162132000061 ], [ -121.734380362999971, 49.239179284000095 ], [ -121.735103405999922, 49.239207897000014 ], [ -121.734965143999943, 49.240711606000026 ], [ -121.734782949999968, 49.242692947000094 ], [ -121.737735017999967, 49.242809722000047 ], [ -121.737743204999944, 49.242488600000094 ], [ -121.736080203999975, 49.242422826000038 ], [ -121.736127874999923, 49.241904271000081 ], [ -121.735421112999958, 49.241876310000066 ], [ -121.735455029999954, 49.241507429000094 ], [ -121.735022122999965, 49.241490300000123 ], [ -121.735093831999976, 49.240710414000013 ], [ -121.735328289999927, 49.238160382000046 ], [ -121.735230538999957, 49.238156515000114 ], [ -121.7355609049999, 49.234562927000113 ], [ -121.74102772599997, 49.234779116000048 ], [ -121.74107336899999, 49.234281952000046 ], [ -121.740674079999934, 49.234266171000044 ], [ -121.741003996999964, 49.230672546000058 ], [ -121.742842340999943, 49.230745189000068 ], [ -121.742889678999958, 49.230229288000018 ], [ -121.742050183999979, 49.230196118000045 ], [ -121.742128284, 49.229345112000026 ], [ -121.7409714019999, 49.229299391000019 ], [ -121.740978368999947, 49.229223491000042 ], [ -121.73734438299999, 49.229079795000125 ], [ -121.737452093999963, 49.227907392000091 ], [ -121.737489619999934, 49.227498916000052 ], [ -121.737621776999958, 49.226060320000052 ], [ -121.738482606, 49.225626593000079 ], [ -121.73865027, 49.225524747000115 ], [ -121.741074558999941, 49.225620602000028 ], [ -121.741217710999933, 49.224060929000132 ], [ -121.742201096999963, 49.223068688000112 ], [ -121.742996815999931, 49.222124971 ], [ -121.746955916999951, 49.222281334000037 ], [ -121.746882259999907, 49.223084987000043 ], [ -121.746754467999963, 49.224479199000065 ], [ -121.746755661999913, 49.22447924500014 ], [ -121.746751807999928, 49.224521295000081 ], [ -121.747667034999935, 49.224557421000064 ], [ -121.747576610999943, 49.225544105000068 ], [ -121.752043446999934, 49.22572030700011 ], [ -121.751960064999977, 49.226631077000064 ], [ -121.752437490999938, 49.226649898000112 ], [ -121.75243464499999, 49.226680989000066 ], [ -121.752583972999943, 49.226686875000091 ], [ -121.752608756999948, 49.226416111000063 ], [ -121.75276510299993, 49.226422274000079 ], [ -121.753875117999897, 49.226466023000064 ], [ -121.75388780899999, 49.226327341000065 ], [ -121.755024668999937, 49.226372136000073 ], [ -121.755075650999984, 49.225814866000064 ], [ -121.752770284999883, 49.225724016000122 ], [ -121.750372071999948, 49.225629454000064 ], [ -121.750426122999926, 49.225039281000065 ], [ -121.749306772999915, 49.224995127000085 ], [ -121.749336558999943, 49.224669983000098 ], [ -121.749309792999938, 49.224668927000074 ], [ -121.749519713, 49.222377292000083 ], [ -121.749638974999982, 49.221075224000096 ], [ -121.752803847999942, 49.22120003800007 ], [ -121.752795152999965, 49.222373755000021 ], [ -121.756156656999934, 49.222473818 ], [ -121.75590081499999, 49.225271128000109 ], [ -121.758345257999977, 49.225367386000059 ], [ -121.75848796199989, 49.223806243000048 ], [ -121.762838960999972, 49.223977443000145 ], [ -121.762960846999988, 49.222642588000021 ], [ -121.762744555, 49.222634081000066 ], [ -121.76557506599994, 49.222330021000097 ], [ -121.765583134999943, 49.22157474400008 ], [ -121.765586095999936, 49.221298130000093 ], [ -121.765606892, 49.219352966000017 ], [ -121.765611219, 49.218946870000067 ], [ -121.765646585999917, 49.215638194000121 ], [ -121.765659692999961, 49.214786691000015 ], [ -121.765685309999952, 49.214706758000091 ], [ -121.765873579999919, 49.213429784000013 ], [ -121.76608282399998, 49.213438009000079 ], [ -121.766091709999969, 49.213081058000057 ], [ -121.766503531999959, 49.213085456000094 ], [ -121.766510245999925, 49.212815661000015 ], [ -121.767364201999925, 49.212824778000034 ], [ -121.767745707999936, 49.212828850000051 ], [ -121.767728954999924, 49.213502700000106 ], [ -121.768789848, 49.213544378000094 ], [ -121.768791207999939, 49.21352945900005 ], [ -121.768864008999941, 49.213532319000095 ], [ -121.768823688999959, 49.213972303000013 ], [ -121.76917969499999, 49.214543404000032 ], [ -121.769615390999945, 49.214737107000076 ], [ -121.770503696, 49.21489951300002 ], [ -121.771258598999964, 49.214843899000101 ], [ -121.771344504999931, 49.214718597000058 ], [ -121.771059996999924, 49.214607500000071 ], [ -121.769865985999928, 49.214514907000101 ], [ -121.769228320999929, 49.214247206000046 ], [ -121.769202390999951, 49.213616212000019 ], [ -121.769468702999959, 49.212828700000038 ], [ -121.769110229999924, 49.212406067000046 ], [ -121.769233575000015, 49.21105287299999 ], [ -121.769285255999975, 49.210485862000141 ], [ -121.769312917999969, 49.210486949000128 ], [ -121.769333962999923, 49.210256051000044 ], [ -121.769557191999922, 49.210141389000064 ], [ -121.770531960999932, 49.210179671000105 ], [ -121.77481966, 49.210347954000085 ], [ -121.774492500999941, 49.213941793000068 ], [ -121.77446483599999, 49.213940708000109 ], [ -121.77443261799999, 49.214294594000073 ], [ -121.774216767999945, 49.214286126 ], [ -121.773938867999973, 49.217338197000075 ], [ -121.770811192999986, 49.217215454000069 ], [ -121.770809831999898, 49.217230372000074 ], [ -121.769697189999931, 49.217186685000051 ], [ -121.769677589999972, 49.217976235000044 ], [ -121.769677572999953, 49.21797692700008 ], [ -121.768030117999956, 49.217959365000084 ], [ -121.768032813000019, 49.217850972000107 ], [ -121.767812838999973, 49.217842331000014 ], [ -121.767786123999912, 49.218135275000151 ], [ -121.770109125999966, 49.218226512000065 ], [ -121.770259016999901, 49.21823239600009 ], [ -121.770253263999919, 49.21829552700008 ], [ -121.771134530000012, 49.21833012500008 ], [ -121.771154457999941, 49.218111429 ], [ -121.774054414999981, 49.218225226000087 ], [ -121.776629891999931, 49.218326226000102 ], [ -121.776597362999922, 49.218683673000037 ], [ -121.777330390999921, 49.218712408000101 ], [ -121.777291809999966, 49.219136431000109 ], [ -121.777240318999972, 49.219702303000091 ], [ -121.779541920999989, 49.219792494000075 ], [ -121.77997706299999, 49.219809540000078 ], [ -121.779946939999988, 49.220140785000119 ], [ -121.779843190999969, 49.221281663000127 ], [ -121.780427039999921, 49.221304531000072 ], [ -121.780385391999957, 49.221762547 ], [ -121.781165882999971, 49.221793112000086 ], [ -121.78124935699995, 49.220874913000053 ], [ -121.781491126999981, 49.218215276000102 ], [ -121.784441256999969, 49.218330758000036 ], [ -121.784507037999958, 49.217606547000081 ], [ -121.785457132999966, 49.217643720000048 ], [ -121.785656808999988, 49.219070981000066 ], [ -121.785289301999953, 49.218959911000098 ], [ -121.784364990999933, 49.219058191000038 ], [ -121.783123601999961, 49.219314493000127 ], [ -121.782899615999952, 49.219474001000037 ], [ -121.783158788999927, 49.219602207000058 ], [ -121.784107704999954, 49.219513892000045 ], [ -121.784866413999936, 49.219324501000074 ], [ -121.785634197999954, 49.219404199000117 ], [ -121.785631485999915, 49.219485407000043 ], [ -121.785954886999917, 49.21967660899999 ], [ -121.786404796999989, 49.219942602000067 ], [ -121.786442581, 49.220050792000137 ], [ -121.786259679999915, 49.220247395000094 ], [ -121.786964886999897, 49.220577800000122 ], [ -121.787519389999957, 49.220952312000144 ], [ -121.788079215999957, 49.221084797000032 ], [ -121.788749695999968, 49.221163088000047 ], [ -121.789786466999928, 49.221160966000078 ], [ -121.789766775999951, 49.221967318000118 ], [ -121.787707276999953, 49.221945718000065 ], [ -121.787713876999959, 49.221675921000134 ], [ -121.786890082999903, 49.221667271000094 ], [ -121.786896685999963, 49.221397475000039 ], [ -121.786697365999942, 49.221395381000015 ], [ -121.786640346999917, 49.222023380000095 ], [ -121.784139628, 49.22192555400003 ], [ -121.782542744999986, 49.221863055000021 ], [ -121.7824080499999, 49.223345068000107 ], [ -121.784099163999912, 49.223411254 ], [ -121.786415758999937, 49.223501876000043 ], [ -121.786089405999988, 49.227095679000108 ], [ -121.784933020999958, 49.227050448000114 ], [ -121.784748960999949, 49.229076505000116 ], [ -121.779296755999937, 49.228863084000075 ], [ -121.779296495999972, 49.228873669000031 ], [ -121.778472582999925, 49.228864958000024 ], [ -121.778465929999982, 49.229134754000064 ], [ -121.778877887999968, 49.229139110000084 ], [ -121.778871238999898, 49.229408907000028 ], [ -121.77928319899992, 49.229413261000083 ], [ -121.779276550999953, 49.229683057000045 ], [ -121.779616977999964, 49.229686655000123 ], [ -121.779667296999932, 49.229133464000043 ], [ -121.7851440699999, 49.229347825000033 ], [ -121.785125560999973, 49.229551572000013 ], [ -121.785597067999902, 49.229570014000117 ], [ -121.78534919499999, 49.232298728000124 ], [ -121.787830962999976, 49.232395761000141 ], [ -121.787704329999912, 49.233790506000076 ], [ -121.790176371999934, 49.2338871010001 ], [ -121.79004660399994, 49.235317108000082 ], [ -121.791457901999962, 49.235372229000092 ], [ -121.79150969899996, 49.234801263000058 ], [ -121.79374578099997, 49.234888560000101 ], [ -121.793780120999941, 49.234509817000159 ], [ -121.799257592999965, 49.234723460000041 ], [ -121.799249634999924, 49.2348113480001 ], [ -121.80039302699997, 49.234855909000025 ], [ -121.800466272999969, 49.234046776000127 ], [ -121.80299223899999, 49.234145177000045 ], [ -121.803128941999972, 49.232634035000046 ], [ -121.80640038099996, 49.232761388000085 ], [ -121.806440023999983, 49.23232281300006 ], [ -121.811356882999959, 49.232514032000068 ], [ -121.811057701, 49.232720498000106 ], [ -121.810715820000013, 49.232972558000078 ], [ -121.810099308999938, 49.233427108000036 ], [ -121.809975666999932, 49.233480662 ], [ -121.808959492999961, 49.233920991000041 ], [ -121.808471497999918, 49.234104907000066 ], [ -121.80817459799999, 49.234121305 ], [ -121.808100704999944, 49.234118577000061 ], [ -121.806316094999985, 49.234052596000055 ], [ -121.805631722000015, 49.234174698000061 ], [ -121.804589697999987, 49.234452402000137 ], [ -121.80394690899999, 49.234844004000095 ], [ -121.803643592999947, 49.235416397000044 ], [ -121.803324015, 49.236214481000104 ], [ -121.802872602999955, 49.236677499000088 ], [ -121.802546215999911, 49.236820800000068 ], [ -121.802297299, 49.236930096000037 ], [ -121.800000577999938, 49.236921014000089 ], [ -121.794521707999962, 49.236899199000057 ], [ -121.794445498999892, 49.241378196000014 ], [ -121.793884026999976, 49.241356305000075 ], [ -121.78670929099999, 49.240859694000058 ], [ -121.787814314999935, 49.240057097000069 ], [ -121.785908721999974, 49.238794303000056 ], [ -121.7893829019999, 49.236313588 ], [ -121.780966303999918, 49.23128780600009 ], [ -121.777087998999946, 49.228908005000072 ], [ -121.776276890999938, 49.229108803000017 ], [ -121.773028597999925, 49.229470097000053 ], [ -121.772081817999933, 49.229561897000025 ], [ -121.769811404, 49.22956566200002 ], [ -121.769369157999932, 49.230181257000062 ], [ -121.769051722999976, 49.23049789800011 ], [ -121.767646074999931, 49.231491300000101 ], [ -121.766734846999924, 49.232095689000104 ], [ -121.7661165009999, 49.231809008000035 ], [ -121.765208392999966, 49.23147579500008 ], [ -121.76502442599994, 49.23159329800005 ], [ -121.76447578599999, 49.231943772000058 ], [ -121.76330930099999, 49.231656298000111 ], [ -121.76324671899998, 49.231469002000068 ], [ -121.763378096999972, 49.230933181000069 ], [ -121.762401615, 49.230686498000047 ], [ -121.761824444999903, 49.230457865000076 ], [ -121.761731885999922, 49.230421199000048 ], [ -121.760909383, 49.230023699000064 ], [ -121.760658854999932, 49.229904581000056 ], [ -121.759408086999912, 49.229310008000034 ], [ -121.758935480999938, 49.229079466000073 ], [ -121.758628091999967, 49.228929483000101 ], [ -121.757076893999979, 49.22930390600002 ], [ -121.755277388999943, 49.229883188000031 ], [ -121.754210966999935, 49.230330717000101 ], [ -121.753971290999971, 49.230431306000078 ], [ -121.752721220999959, 49.231088000000128 ], [ -121.752118904999946, 49.231452903000097 ], [ -121.751422318999943, 49.231931307000096 ], [ -121.751035773999917, 49.232212050000072 ], [ -121.749903274999923, 49.233034624000048 ], [ -121.749279487999971, 49.233487698000083 ], [ -121.74863316699998, 49.233957109000158 ], [ -121.747434798999961, 49.234827452000069 ], [ -121.746799706999951, 49.235288666000059 ], [ -121.746404987999966, 49.235575291000082 ], [ -121.745976000999974, 49.23556289800009 ], [ -121.745714284999949, 49.235719398000121 ], [ -121.744314202999988, 49.236749693000036 ], [ -121.744144110999969, 49.236806087000147 ], [ -121.74388449199995, 49.236834593000019 ], [ -121.741322698999966, 49.236819094000047 ], [ -121.74136380600001, 49.238842189000124 ], [ -121.74126860299998, 49.239429887000064 ], [ -121.740253323, 49.240338408000071 ], [ -121.739891197999896, 49.240464687000021 ], [ -121.73863360199999, 49.240509685000056 ], [ -121.738566010999975, 49.242397798000113 ], [ -121.737509, 49.243428892000111 ], [ -121.737315707999969, 49.24367830300006 ], [ -121.736884203, 49.244439317000086 ], [ -121.736672062999929, 49.244689652000055 ], [ -121.73605469499995, 49.245418200000174 ], [ -121.73576904399999, 49.245640646000041 ], [ -121.735603757999968, 49.245769376000048 ], [ -121.735529087999964, 49.245827490000138 ], [ -121.736036740999936, 49.246196774000026 ], [ -121.735760905999939, 49.24648643200009 ], [ -121.734756088000012, 49.2464754310001 ] ], [ [ -121.74114212799999, 49.238495891000134 ], [ -121.74114331299999, 49.238449216000049 ], [ -121.740799633999956, 49.23844547100007 ], [ -121.740796258999978, 49.238482224000073 ], [ -121.74114212799999, 49.238495891000134 ] ], [ [ -121.740739800999961, 49.238109770000072 ], [ -121.740742653999945, 49.237997577000044 ], [ -121.740732377999919, 49.23810947700008 ], [ -121.740739800999961, 49.238109770000072 ] ], [ [ -121.76375456199996, 49.228981195000124 ], [ -121.763631749999973, 49.230326253000065 ], [ -121.764269736999978, 49.230333078000044 ], [ -121.764344504999954, 49.229514099000042 ], [ -121.765588242999968, 49.229562981000107 ], [ -121.765594653999969, 49.229492729000135 ], [ -121.767026528999963, 49.229548986000033 ], [ -121.767066455999952, 49.229111347000078 ], [ -121.76375456199996, 49.228981195000124 ] ], [ [ -121.769431455999936, 49.22877651500005 ], [ -121.769566291000018, 49.227297694000178 ], [ -121.769159774999977, 49.227281733000034 ], [ -121.768524630999934, 49.227256792000077 ], [ -121.768476151999948, 49.227788378000071 ], [ -121.768389761999941, 49.228735611000147 ], [ -121.769431455999936, 49.22877651500005 ] ], [ [ -121.777991947, 49.22639681000004 ], [ -121.777866168999964, 49.227779076000083 ], [ -121.778911138999916, 49.227790128000031 ], [ -121.778917787999958, 49.227520332000076 ], [ -121.779329733999987, 49.227524686000024 ], [ -121.779336379999933, 49.227254890000033 ], [ -121.779418344999925, 49.227255756000083 ], [ -121.779431431999953, 49.227111881000042 ], [ -121.778564206999974, 49.227077909000023 ], [ -121.778725578999939, 49.225304124000061 ], [ -121.77674125599999, 49.225226364000065 ], [ -121.776782941999969, 49.224768353000101 ], [ -121.774624012999965, 49.224683709000082 ], [ -121.774682417999941, 49.224042305000062 ], [ -121.773475815000026, 49.2239949800001 ], [ -121.773560238999949, 49.223068061000021 ], [ -121.771291098999896, 49.222979023000086 ], [ -121.771376291999957, 49.222044119 ], [ -121.771385179, 49.221946602000088 ], [ -121.769573504999954, 49.22187548000008 ], [ -121.769579259999958, 49.221812350000079 ], [ -121.768535846999953, 49.221771374000127 ], [ -121.768365091999968, 49.223643908000099 ], [ -121.770192815999934, 49.22371567700003 ], [ -121.772115996999929, 49.223791162000069 ], [ -121.771935602999989, 49.225770981000018 ], [ -121.775986490999955, 49.225929862000072 ], [ -121.775951263999914, 49.226316829000112 ], [ -121.777991947, 49.22639681000004 ] ], [ [ -121.766466137999899, 49.225481149000053 ], [ -121.766582444999983, 49.224206339000048 ], [ -121.765555428999946, 49.224165981000098 ], [ -121.763956572999987, 49.224103132000032 ], [ -121.76384019399994, 49.225377938000072 ], [ -121.765541748999951, 49.225444823000082 ], [ -121.766466137999899, 49.225481149000053 ] ], [ [ -121.79079868, 49.23895297100006 ], [ -121.79070350399995, 49.240001819000078 ], [ -121.791155626999966, 49.240019475000061 ], [ -121.791225933999925, 49.239244601000046 ], [ -121.791006, 49.239236012000113 ], [ -121.791030859999935, 49.238962038000039 ], [ -121.79079868, 49.23895297100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.92108491208941", "sL_AssetLoss": "2934.8", "sL_BldgLoss": "2703.2", "sL_StrLoss": "2012.2", "sL_NStrLoss": "691", "sL_ContLoss": "231.6", "geom_point": "0101000020E61000000DCF4354FE725EC007DC4645149C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.794159362999977, 49.218157565000105 ], [ -121.794192530999979, 49.217791577000085 ], [ -121.799668033999936, 49.218005205000061 ], [ -121.799641174999934, 49.218301974000063 ], [ -121.799908352, 49.21831239000003 ], [ -121.800351805999981, 49.218901045000074 ], [ -121.800264437999914, 49.219866503000048 ], [ -121.800249199999968, 49.219879901000091 ], [ -121.799706405999984, 49.22015341000013 ], [ -121.7994397, 49.220402591000045 ], [ -121.79889790499999, 49.220630497000045 ], [ -121.798014895, 49.220838411000116 ], [ -121.795799594999963, 49.220995096000131 ], [ -121.794388183999956, 49.220835592000121 ], [ -121.793540764999975, 49.220672915000137 ], [ -121.793770127999949, 49.218142368000024 ], [ -121.794159362999977, 49.218157565000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.973636126337771", "sL_AssetLoss": "766.2", "sL_BldgLoss": "746", "sL_StrLoss": "638", "sL_NStrLoss": "108", "sL_ContLoss": "20.2", "geom_point": "0101000020E61000000EAF77C1D86E5EC0259FCB92889F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.733075150999937, 49.248407156000042 ], [ -121.729379146999946, 49.24543494300012 ], [ -121.728471921999969, 49.244705031000102 ], [ -121.732698249999913, 49.244872427000061 ], [ -121.732686876999963, 49.244921798000107 ], [ -121.732859690999973, 49.245158193000037 ], [ -121.733115094999917, 49.245952891000059 ], [ -121.733513288999958, 49.246487005000084 ], [ -121.733888994, 49.247328687000035 ], [ -121.733998298999964, 49.247401290000099 ], [ -121.734276983999948, 49.247216206000068 ], [ -121.734797277999959, 49.247498309000079 ], [ -121.734707380999907, 49.247592710000042 ], [ -121.73365930599999, 49.248693231000061 ], [ -121.733121050999927, 49.248459270000112 ], [ -121.733075150999937, 49.248407156000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.928162226061653", "sL_AssetLoss": "10997", "sL_BldgLoss": "10207", "sL_StrLoss": "7890", "sL_NStrLoss": "2317", "sL_ContLoss": "790", "geom_point": "0101000020E6100000F45ABF4F4B745EC03EB3454E369D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.81585632299999, 49.231118998000078 ], [ -121.815381979, 49.231091601000109 ], [ -121.815058850999932, 49.231089168000075 ], [ -121.815200655999945, 49.229517002000044 ], [ -121.814266545999899, 49.229480722000091 ], [ -121.810881240999919, 49.229349172000049 ], [ -121.811205691999987, 49.225755307000071 ], [ -121.811905270999901, 49.225782501000062 ], [ -121.812139896999923, 49.223182822000112 ], [ -121.814449409999952, 49.223272565000038 ], [ -121.815363777999949, 49.223308082000074 ], [ -121.8155139939999, 49.223423185000115 ], [ -121.81750453799999, 49.224633499000085 ], [ -121.81729217799996, 49.226989434000068 ], [ -121.816592577999927, 49.226962274000051 ], [ -121.816361247999978, 49.229527959000066 ], [ -121.818775735999935, 49.229621672000064 ], [ -121.818793476999957, 49.22942479900005 ], [ -121.82160135, 49.22953371300013 ], [ -121.821609260999963, 49.229445867000067 ], [ -121.825680468999934, 49.229603651000055 ], [ -121.826859828999901, 49.230320441000082 ], [ -121.827016849999936, 49.230429880000031 ], [ -121.826896590999922, 49.231766949000097 ], [ -121.823878321999942, 49.231728608000076 ], [ -121.818093193999943, 49.231684607000055 ], [ -121.817732708999927, 49.231643582000068 ], [ -121.816218906999964, 49.231220381000085 ], [ -121.816190724999956, 49.231212521000089 ], [ -121.81585632299999, 49.231118998000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.978309232480534", "sL_AssetLoss": "719.2", "sL_BldgLoss": "703.6", "sL_StrLoss": "612", "sL_NStrLoss": "91.6", "sL_ContLoss": "15.6", "geom_point": "0101000020E61000000A662BB3716D5EC04888F205ADAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.707107845999985, 49.349645812000119 ], [ -121.708093296999948, 49.348289657000059 ], [ -121.710487592999968, 49.347583207000184 ], [ -121.712357542999939, 49.348940165000059 ], [ -121.712527647999948, 49.349063621000013 ], [ -121.712663541999987, 49.349162225000022 ], [ -121.712561027999939, 49.350268479000114 ], [ -121.710399973, 49.350182709000116 ], [ -121.710433478999903, 49.350139494000103 ], [ -121.71071742, 49.349314905000057 ], [ -121.711341992999934, 49.349132614000041 ], [ -121.711077901999928, 49.348644095000054 ], [ -121.71002749199999, 49.348803606000033 ], [ -121.708809299999956, 49.349068503000076 ], [ -121.708456401999968, 49.349388990000051 ], [ -121.708363989999967, 49.34981909600009 ], [ -121.708429738999882, 49.350104474000034 ], [ -121.7070703, 49.350050472000142 ], [ -121.707107845999985, 49.349645812000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258682417", "BldgCostT": "176961667", "sL_LossRatio": "0.927650496279036", "sL_AssetLoss": "520443.1", "sL_BldgLoss": "482789.3", "sL_StrLoss": "384573.3", "sL_NStrLoss": "98216", "sL_ContLoss": "37653.8", "geom_point": "0101000020E610000081F86D4655705EC0FFB64856D59D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.749279487999971, 49.233487698000083 ], [ -121.749903274999923, 49.233034624000048 ], [ -121.751035773999917, 49.232212050000072 ], [ -121.751422318999943, 49.231931307000096 ], [ -121.752118904999946, 49.231452903000097 ], [ -121.752721220999959, 49.231088000000128 ], [ -121.753971290999971, 49.230431306000078 ], [ -121.754210966999935, 49.230330717000101 ], [ -121.755277388999943, 49.229883188000031 ], [ -121.757076893999979, 49.22930390600002 ], [ -121.758628091999967, 49.228929483000101 ], [ -121.758935480999938, 49.229079466000073 ], [ -121.759408086999912, 49.229310008000034 ], [ -121.760658854999932, 49.229904581000056 ], [ -121.760909383, 49.230023699000064 ], [ -121.760886887999931, 49.230766697000064 ], [ -121.760867600000012, 49.231563917000067 ], [ -121.759558110999947, 49.231533099000089 ], [ -121.759557369, 49.232293168000105 ], [ -121.759537478999974, 49.232750385000017 ], [ -121.75930261399999, 49.2331713 ], [ -121.759566008999968, 49.233672091000095 ], [ -121.760799306999942, 49.233680110000073 ], [ -121.760729152999915, 49.235786264000112 ], [ -121.758504070999919, 49.235772673000021 ], [ -121.75796837799993, 49.235769605000023 ], [ -121.75658929699992, 49.235762194000081 ], [ -121.756124912999923, 49.235760202000037 ], [ -121.755396881999943, 49.235756713000058 ], [ -121.753631828999985, 49.235746712000044 ], [ -121.752453963000022, 49.235732753000043 ], [ -121.751586151999931, 49.235724697000109 ], [ -121.750833754999917, 49.235716673000091 ], [ -121.749929993999956, 49.235708356000018 ], [ -121.74937138199995, 49.235703171000061 ], [ -121.749190122999948, 49.235704489000035 ], [ -121.749011621999983, 49.235705783000114 ], [ -121.748558176999936, 49.235709059000087 ], [ -121.748154305999932, 49.235711973000022 ], [ -121.747198620999939, 49.235719192000055 ], [ -121.74706101799994, 49.235720239000102 ], [ -121.746404987999966, 49.235575291000082 ], [ -121.746799706999951, 49.235288666000059 ], [ -121.747434798999961, 49.234827452000069 ], [ -121.74863316699998, 49.233957109000158 ], [ -121.749279487999971, 49.233487698000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90575583", "BldgCostT": "61938333", "sL_LossRatio": "0.925036898035447", "sL_AssetLoss": "198452.3", "sL_BldgLoss": "183575.7", "sL_StrLoss": "144353.7", "sL_NStrLoss": "39222", "sL_ContLoss": "14876.6", "geom_point": "0101000020E6100000095507CCC5705EC0A1B4BB30E79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.760729152999915, 49.235786264000112 ], [ -121.760799306999942, 49.233680110000073 ], [ -121.759566008999968, 49.233672091000095 ], [ -121.75930261399999, 49.2331713 ], [ -121.759537478999974, 49.232750385000017 ], [ -121.759557369, 49.232293168000105 ], [ -121.759558110999947, 49.231533099000089 ], [ -121.760867600000012, 49.231563917000067 ], [ -121.760886887999931, 49.230766697000064 ], [ -121.760909383, 49.230023699000064 ], [ -121.761731885999922, 49.230421199000048 ], [ -121.761824444999903, 49.230457865000076 ], [ -121.762401615, 49.230686498000047 ], [ -121.763378096999972, 49.230933181000069 ], [ -121.76324671899998, 49.231469002000068 ], [ -121.76330930099999, 49.231656298000111 ], [ -121.76447578599999, 49.231943772000058 ], [ -121.76502442599994, 49.23159329800005 ], [ -121.765208392999966, 49.23147579500008 ], [ -121.7661165009999, 49.231809008000035 ], [ -121.766734846999924, 49.232095689000104 ], [ -121.765039179999917, 49.23332923300007 ], [ -121.762288282999975, 49.235198030000063 ], [ -121.761903817999936, 49.235459194000079 ], [ -121.761712931999938, 49.235668076000081 ], [ -121.761655523999963, 49.235800171000037 ], [ -121.761594009, 49.238142894000113 ], [ -121.760666995999912, 49.238165985000144 ], [ -121.760347893999906, 49.238143344000044 ], [ -121.758618689999977, 49.238020505000101 ], [ -121.758454890999957, 49.237933805000068 ], [ -121.758699547999939, 49.237763437000119 ], [ -121.760659510999943, 49.236398504000086 ], [ -121.760729152999915, 49.235786264000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "662996707", "BldgCostT": "435249917", "sL_LossRatio": "0.746354772107548", "sL_AssetLoss": "938795.9", "sL_BldgLoss": "700674.8", "sL_StrLoss": "330270", "sL_NStrLoss": "370404.8", "sL_ContLoss": "238121.1", "geom_point": "0101000020E6100000C13CD0AF52715EC0C5F1E935E69D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.761594009, 49.238142894000113 ], [ -121.761655523999963, 49.235800171000037 ], [ -121.761712931999938, 49.235668076000081 ], [ -121.761903817999936, 49.235459194000079 ], [ -121.762288282999975, 49.235198030000063 ], [ -121.765039179999917, 49.23332923300007 ], [ -121.766734846999924, 49.232095689000104 ], [ -121.767646074999931, 49.231491300000101 ], [ -121.769051722999976, 49.23049789800011 ], [ -121.769369157999932, 49.230181257000062 ], [ -121.769811404, 49.22956566200002 ], [ -121.772081817999933, 49.229561897000025 ], [ -121.773028597999925, 49.229470097000053 ], [ -121.776276890999938, 49.229108803000017 ], [ -121.777087998999946, 49.228908005000072 ], [ -121.780966303999918, 49.23128780600009 ], [ -121.779369393999971, 49.232408312000132 ], [ -121.779494353999894, 49.231034693000048 ], [ -121.779243307999977, 49.23103204000008 ], [ -121.779249955999973, 49.230762243000079 ], [ -121.778837985999985, 49.230757888000078 ], [ -121.77884463599996, 49.230488092000037 ], [ -121.778020698999981, 49.230479378000062 ], [ -121.778027352999956, 49.230209581000061 ], [ -121.777615385999951, 49.230205223000063 ], [ -121.777620725999938, 49.229988839000065 ], [ -121.776930110999942, 49.229961776000032 ], [ -121.776794765999938, 49.23144868800005 ], [ -121.772365609999923, 49.231275016000048 ], [ -121.77225453899996, 49.232493893 ], [ -121.770822566999954, 49.232437705000045 ], [ -121.770743820999911, 49.233301526000098 ], [ -121.769499976999924, 49.233252704000058 ], [ -121.769493570999913, 49.233322956000052 ], [ -121.768884936999925, 49.2332990620001 ], [ -121.768883648999989, 49.233350883000057 ], [ -121.768471656999949, 49.233346491000098 ], [ -121.768464949999895, 49.233616286000071 ], [ -121.768052955999977, 49.233611893000038 ], [ -121.768046245, 49.233881688000068 ], [ -121.76845824099999, 49.233886081000016 ], [ -121.768444824999946, 49.234425672000093 ], [ -121.768856824999943, 49.23443006400003 ], [ -121.768850118999964, 49.234699859000109 ], [ -121.772146144000018, 49.234734943000085 ], [ -121.772139455999962, 49.235004738000058 ], [ -121.772598122999966, 49.235009614000049 ], [ -121.772920945999886, 49.231466710000092 ], [ -121.778397962999975, 49.231681413000082 ], [ -121.778261054999987, 49.233185955000046 ], [ -121.777233379999927, 49.233906967000074 ], [ -121.775760668999965, 49.234940154000128 ], [ -121.774397318999931, 49.235896610000054 ], [ -121.771569902999929, 49.237922588000096 ], [ -121.77068118599999, 49.238549506000048 ], [ -121.770160986999912, 49.238226109000038 ], [ -121.769977795999964, 49.237824011000043 ], [ -121.77095660899991, 49.237157400000079 ], [ -121.771347027, 49.2368774770001 ], [ -121.771782989999934, 49.236564916000049 ], [ -121.771043258999924, 49.236120727000035 ], [ -121.770986070999967, 49.236086424000106 ], [ -121.770955595999965, 49.236068097000015 ], [ -121.770728317999939, 49.235997892000043 ], [ -121.770461690999952, 49.235953211000052 ], [ -121.769248112999904, 49.235923587000073 ], [ -121.76886731099998, 49.23587979900001 ], [ -121.768676978999963, 49.235782098000072 ], [ -121.76761439899991, 49.235272495000075 ], [ -121.767277706999934, 49.235107801000034 ], [ -121.766604903999962, 49.235748586000071 ], [ -121.766306478000018, 49.236081289000026 ], [ -121.76612220299991, 49.237318317000181 ], [ -121.765970978000013, 49.2382390000001 ], [ -121.765953344999971, 49.238346390000046 ], [ -121.765933423999982, 49.238467695000111 ], [ -121.761594009, 49.238142894000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129701334", "BldgCostT": "87503334", "sL_LossRatio": "0.931806508083088", "sL_AssetLoss": "253288.1", "sL_BldgLoss": "236015.5", "sL_StrLoss": "180432.5", "sL_NStrLoss": "55583", "sL_ContLoss": "17272.6", "geom_point": "0101000020E610000039B99D85D6715EC0BF87642B5C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.765933423999982, 49.238467695000111 ], [ -121.765953344999971, 49.238346390000046 ], [ -121.765970978000013, 49.2382390000001 ], [ -121.76612220299991, 49.237318317000181 ], [ -121.766306478000018, 49.236081289000026 ], [ -121.766604903999962, 49.235748586000071 ], [ -121.767277706999934, 49.235107801000034 ], [ -121.76761439899991, 49.235272495000075 ], [ -121.768676978999963, 49.235782098000072 ], [ -121.76886731099998, 49.23587979900001 ], [ -121.769248112999904, 49.235923587000073 ], [ -121.770461690999952, 49.235953211000052 ], [ -121.770728317999939, 49.235997892000043 ], [ -121.770955595999965, 49.236068097000015 ], [ -121.770986070999967, 49.236086424000106 ], [ -121.771043258999924, 49.236120727000035 ], [ -121.771782989999934, 49.236564916000049 ], [ -121.771347027, 49.2368774770001 ], [ -121.77095660899991, 49.237157400000079 ], [ -121.769977795999964, 49.237824011000043 ], [ -121.770160986999912, 49.238226109000038 ], [ -121.77068118599999, 49.238549506000048 ], [ -121.771569902999929, 49.237922588000096 ], [ -121.774397318999931, 49.235896610000054 ], [ -121.775760668999965, 49.234940154000128 ], [ -121.777233379999927, 49.233906967000074 ], [ -121.778261054999987, 49.233185955000046 ], [ -121.778070930999945, 49.235275146000056 ], [ -121.777490825999976, 49.235252418000123 ], [ -121.777462239999949, 49.236410531000075 ], [ -121.77828627699995, 49.23641925000009 ], [ -121.778266311999914, 49.237228638000026 ], [ -121.778678336999945, 49.23723299500007 ], [ -121.778655805, 49.238146652000083 ], [ -121.781850648999963, 49.238271737000076 ], [ -121.781849825000023, 49.238280793000087 ], [ -121.783154779999933, 49.238331857000041 ], [ -121.78323629099999, 49.237435173000087 ], [ -121.783517256, 49.237446165000037 ], [ -121.783628410999981, 49.236223236000079 ], [ -121.781431445999942, 49.236137263000074 ], [ -121.781667693, 49.233539190000045 ], [ -121.779367137999884, 49.233449114000031 ], [ -121.779432483999969, 49.232730822000072 ], [ -121.779340382999976, 49.232727215000097 ], [ -121.779369393999971, 49.232408312000132 ], [ -121.780966303999918, 49.23128780600009 ], [ -121.7893829019999, 49.236313588 ], [ -121.785908721999974, 49.238794303000056 ], [ -121.787814314999935, 49.240057097000069 ], [ -121.78670929099999, 49.240859694000058 ], [ -121.777186518999912, 49.24018032200005 ], [ -121.775295699999944, 49.240045321000096 ], [ -121.77185001, 49.239799238000074 ], [ -121.77005399299992, 49.239670906000114 ], [ -121.769954335999927, 49.239622580000081 ], [ -121.76989601, 49.239594308000072 ], [ -121.769825510999979, 49.239493305000032 ], [ -121.769863491999956, 49.239242308000065 ], [ -121.769904988999926, 49.239073496000081 ], [ -121.770164440999963, 49.238904392000094 ], [ -121.770266507999921, 49.238837869000029 ], [ -121.770355100999979, 49.238780095000088 ], [ -121.765933423999982, 49.238467695000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211712478", "BldgCostT": "138439857", "sL_LossRatio": "0.89303251321851", "sL_AssetLoss": "403146.8", "sL_BldgLoss": "360023.2", "sL_StrLoss": "264509.2", "sL_NStrLoss": "95514", "sL_ContLoss": "43123.6", "geom_point": "0101000020E6100000A6E9064CD8705EC038A5BC56C29E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.74136380600001, 49.238842189000124 ], [ -121.741322698999966, 49.236819094000047 ], [ -121.74388449199995, 49.236834593000019 ], [ -121.744144110999969, 49.236806087000147 ], [ -121.744314202999988, 49.236749693000036 ], [ -121.745714284999949, 49.235719398000121 ], [ -121.745976000999974, 49.23556289800009 ], [ -121.746404987999966, 49.235575291000082 ], [ -121.74706101799994, 49.235720239000102 ], [ -121.747198620999939, 49.235719192000055 ], [ -121.748154305999932, 49.235711973000022 ], [ -121.748558176999936, 49.235709059000087 ], [ -121.749011621999983, 49.235705783000114 ], [ -121.749190122999948, 49.235704489000035 ], [ -121.74937138199995, 49.235703171000061 ], [ -121.749929993999956, 49.235708356000018 ], [ -121.750833754999917, 49.235716673000091 ], [ -121.751586151999931, 49.235724697000109 ], [ -121.752453963000022, 49.235732753000043 ], [ -121.753631828999985, 49.235746712000044 ], [ -121.755396881999943, 49.235756713000058 ], [ -121.756124912999923, 49.235760202000037 ], [ -121.75658929699992, 49.235762194000081 ], [ -121.75796837799993, 49.235769605000023 ], [ -121.758504070999919, 49.235772673000021 ], [ -121.760729152999915, 49.235786264000112 ], [ -121.760659510999943, 49.236398504000086 ], [ -121.758699547999939, 49.237763437000119 ], [ -121.758454890999957, 49.237933805000068 ], [ -121.758618689999977, 49.238020505000101 ], [ -121.760347893999906, 49.238143344000044 ], [ -121.760666995999912, 49.238165985000144 ], [ -121.761594009, 49.238142894000113 ], [ -121.765933423999982, 49.238467695000111 ], [ -121.770355100999979, 49.238780095000088 ], [ -121.770266507999921, 49.238837869000029 ], [ -121.770164440999963, 49.238904392000094 ], [ -121.769904988999926, 49.239073496000081 ], [ -121.769863491999956, 49.239242308000065 ], [ -121.769825510999979, 49.239493305000032 ], [ -121.76989601, 49.239594308000072 ], [ -121.769954335999927, 49.239622580000081 ], [ -121.77005399299992, 49.239670906000114 ], [ -121.77185001, 49.239799238000074 ], [ -121.775295699999944, 49.240045321000096 ], [ -121.777186518999912, 49.24018032200005 ], [ -121.78670929099999, 49.240859694000058 ], [ -121.786397366999935, 49.241082217000063 ], [ -121.786512311999928, 49.241212592000124 ], [ -121.781845200999967, 49.24429120500006 ], [ -121.780848890999934, 49.2449987870001 ], [ -121.78077877799997, 49.245165489000094 ], [ -121.777723323999965, 49.247097105000115 ], [ -121.77716921699999, 49.24691670400005 ], [ -121.776632210999978, 49.246670294000069 ], [ -121.772697491999935, 49.244249345000071 ], [ -121.770729382999917, 49.243086587000086 ], [ -121.77046370799998, 49.24292279500002 ], [ -121.770067470999919, 49.242678469000104 ], [ -121.768113812999985, 49.241473698000057 ], [ -121.767504, 49.241107147000086 ], [ -121.766602117999938, 49.240567701000032 ], [ -121.766426518999964, 49.24045891500004 ], [ -121.76591220499995, 49.240145680000055 ], [ -121.765062297999989, 49.240076236000043 ], [ -121.761334958999953, 49.239774635000089 ], [ -121.759810358999943, 49.239492922000125 ], [ -121.758955981999975, 49.239367325000075 ], [ -121.757259076999972, 49.239238290000067 ], [ -121.752145203999987, 49.238849297000115 ], [ -121.750205647999934, 49.238747220000107 ], [ -121.750034677999949, 49.238738193000096 ], [ -121.749222699, 49.238738699000045 ], [ -121.748888391999913, 49.238738897000083 ], [ -121.748375566, 49.238777301 ], [ -121.748137885999938, 49.238795102000076 ], [ -121.747925332999955, 49.238792798000048 ], [ -121.747923650999923, 49.238811147000035 ], [ -121.747784111999948, 49.238821596000079 ], [ -121.747095989999977, 49.238923948 ], [ -121.747038814999939, 49.238932457000082 ], [ -121.74641859799999, 49.239024687000075 ], [ -121.745752446, 49.239180426000118 ], [ -121.745115187999929, 49.239329411000092 ], [ -121.744172589999962, 49.239641101000132 ], [ -121.74394870699993, 49.239729414000081 ], [ -121.743299884999971, 49.239985291000039 ], [ -121.743034653999956, 49.240119204000024 ], [ -121.742749775999968, 49.240107953000091 ], [ -121.742745787999951, 49.240265049000101 ], [ -121.742569957999976, 49.240353823000092 ], [ -121.742084289999951, 49.240348535000095 ], [ -121.741768974999957, 49.240345101000102 ], [ -121.74175551899999, 49.240491695000046 ], [ -121.741723211999954, 49.240843595000094 ], [ -121.741679172999937, 49.240870757000039 ], [ -121.741267393999976, 49.241269273000071 ], [ -121.740716435999971, 49.241880452000032 ], [ -121.740437752, 49.242295920000032 ], [ -121.740389448999963, 49.242350988000062 ], [ -121.740318354999943, 49.242431998000086 ], [ -121.740184012999975, 49.242585090000084 ], [ -121.739802019999928, 49.24256999300011 ], [ -121.739797376999917, 49.242752407000047 ], [ -121.73938531099995, 49.242747912 ], [ -121.739371574999922, 49.243287495000104 ], [ -121.738959505999958, 49.24328299700003 ], [ -121.738952633999958, 49.243552788000073 ], [ -121.738932929999976, 49.243552574000027 ], [ -121.738920596999904, 49.243686829000055 ], [ -121.737697871999913, 49.244627325000081 ], [ -121.737155777999959, 49.245044243000088 ], [ -121.736534284999962, 49.245674279000148 ], [ -121.73637953299999, 49.24583676900015 ], [ -121.736036740999936, 49.246196774000026 ], [ -121.735529087999964, 49.245827490000138 ], [ -121.735603757999968, 49.245769376000048 ], [ -121.73576904399999, 49.245640646000041 ], [ -121.73605469499995, 49.245418200000174 ], [ -121.736672062999929, 49.244689652000055 ], [ -121.736884203, 49.244439317000086 ], [ -121.737315707999969, 49.24367830300006 ], [ -121.737509, 49.243428892000111 ], [ -121.738566010999975, 49.242397798000113 ], [ -121.73863360199999, 49.240509685000056 ], [ -121.739891197999896, 49.240464687000021 ], [ -121.740253323, 49.240338408000071 ], [ -121.74126860299998, 49.239429887000064 ], [ -121.74136380600001, 49.238842189000124 ] ], [ [ -121.778046391999965, 49.241812931000069 ], [ -121.777898715999967, 49.243435295000047 ], [ -121.778933678999934, 49.243475828000037 ], [ -121.77892191299992, 49.243605116000047 ], [ -121.779500146999965, 49.243627758000024 ], [ -121.779559033999973, 49.242980601000028 ], [ -121.780387369, 49.243013031000061 ], [ -121.780474848000026, 49.242051421000035 ], [ -121.780664528999964, 49.242058846000099 ], [ -121.780673425999922, 49.241961034000084 ], [ -121.779277705999959, 49.241906390000103 ], [ -121.779278341999913, 49.24189939900014 ], [ -121.778468079999982, 49.241867668000047 ], [ -121.778471546999981, 49.241829583000047 ], [ -121.778046391999965, 49.241812931000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37843250", "BldgCostT": "25835000", "sL_LossRatio": "0.97616699174089", "sL_AssetLoss": "40452.3", "sL_BldgLoss": "39488.2", "sL_StrLoss": "35064.9", "sL_NStrLoss": "4423.3", "sL_ContLoss": "964.1", "geom_point": "0101000020E6100000A2F4B7CAB4715EC07C623A00A4A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.779497533, 49.27688118600004 ], [ -121.779569911999943, 49.276086361000111 ], [ -121.778898555999888, 49.27606009300009 ], [ -121.779032225999984, 49.274592357000117 ], [ -121.776236557999951, 49.274482925000029 ], [ -121.776296, 49.273830643000032 ], [ -121.775327167999961, 49.273792702000065 ], [ -121.775654683999988, 49.270199187000053 ], [ -121.77942923699996, 49.27034695400004 ], [ -121.779482194999929, 49.26976532500003 ], [ -121.779272465999966, 49.26975711900014 ], [ -121.779534331999955, 49.266880986000125 ], [ -121.779054837999979, 49.266862220000064 ], [ -121.779382014999968, 49.263268656000065 ], [ -121.780057979999938, 49.263295110000087 ], [ -121.780146218999946, 49.262325685000128 ], [ -121.778560408000018, 49.262263619000073 ], [ -121.778887591999961, 49.258670031000136 ], [ -121.779922852, 49.258710552000075 ], [ -121.779977150999954, 49.25811396400016 ], [ -121.77990821599991, 49.258111265000061 ], [ -121.77998484599999, 49.257269321000066 ], [ -121.779809665999892, 49.257262465000096 ], [ -121.779979404999949, 49.255397464000062 ], [ -121.77965497799994, 49.255384766000041 ], [ -121.779982028999925, 49.251791137000041 ], [ -121.780072327999932, 49.251794672000109 ], [ -121.78012215199999, 49.251247139000036 ], [ -121.782270093999927, 49.251331191000126 ], [ -121.78244366199999, 49.249422730000063 ], [ -121.779644356999967, 49.249313181000055 ], [ -121.779700176999967, 49.248699791000021 ], [ -121.779211780999958, 49.248680671000052 ], [ -121.77922247, 49.24856323000008 ], [ -121.778587166999927, 49.248538354000132 ], [ -121.778614537999928, 49.248237661000111 ], [ -121.77823593899997, 49.248222835000092 ], [ -121.778214667, 49.248456505000036 ], [ -121.772735671999939, 49.248241798000052 ], [ -121.772756005999938, 49.248018711000036 ], [ -121.772222368999948, 49.247997784000098 ], [ -121.772334708999935, 49.246765420000017 ], [ -121.770968076999949, 49.246711815000047 ], [ -121.770948384999926, 49.246927782000071 ], [ -121.770586443999946, 49.246913582000062 ], [ -121.770564082999925, 49.24715879000005 ], [ -121.769311395999949, 49.247109636000069 ], [ -121.769226175999918, 49.248043820000106 ], [ -121.768328927999917, 49.248008603000088 ], [ -121.763747271999989, 49.247828657000056 ], [ -121.76378144399996, 49.247454552000114 ], [ -121.763096672999936, 49.24742764100008 ], [ -121.763117274999956, 49.247202134000084 ], [ -121.762086451999906, 49.247161614000099 ], [ -121.762104401999963, 49.24696519000004 ], [ -121.761700352999981, 49.246949304000076 ], [ -121.761742298999977, 49.246490291000086 ], [ -121.761013684999952, 49.246461642000057 ], [ -121.76038633499995, 49.246436970000026 ], [ -121.760714813999982, 49.242843352000094 ], [ -121.760879949999946, 49.242849846000063 ], [ -121.760903619999937, 49.242590855000124 ], [ -121.760964452999971, 49.242593247000094 ], [ -121.761142743, 49.24064236700012 ], [ -121.75598665199999, 49.24043946700008 ], [ -121.756075444999965, 49.239468977000115 ], [ -121.755954978999966, 49.239464233000085 ], [ -121.755942552999926, 49.2399588910001 ], [ -121.754706420000019, 49.239945571000135 ], [ -121.754713204999945, 49.239675778000098 ], [ -121.75430116299998, 49.239671335 ], [ -121.754307947999934, 49.239401541000063 ], [ -121.753483870999929, 49.239392651000045 ], [ -121.753484518999954, 49.239366926000066 ], [ -121.75194507399999, 49.239306261000181 ], [ -121.751963380999953, 49.239106366000023 ], [ -121.749782331999967, 49.239082779000128 ], [ -121.749775521999979, 49.239352573000048 ], [ -121.748539405999949, 49.239339186000073 ], [ -121.748546223999966, 49.23906939400004 ], [ -121.748134189, 49.239064929000037 ], [ -121.748141008999966, 49.238795136000121 ], [ -121.748137885999938, 49.238795102000076 ], [ -121.748375566, 49.238777301 ], [ -121.748888391999913, 49.238738897000083 ], [ -121.749222699, 49.238738699000045 ], [ -121.750034677999949, 49.238738193000096 ], [ -121.750205647999934, 49.238747220000107 ], [ -121.752145203999987, 49.238849297000115 ], [ -121.757259076999972, 49.239238290000067 ], [ -121.758955981999975, 49.239367325000075 ], [ -121.759810358999943, 49.239492922000125 ], [ -121.761334958999953, 49.239774635000089 ], [ -121.765062297999989, 49.240076236000043 ], [ -121.76591220499995, 49.240145680000055 ], [ -121.766426518999964, 49.24045891500004 ], [ -121.766602117999938, 49.240567701000032 ], [ -121.767504, 49.241107147000086 ], [ -121.768113812999985, 49.241473698000057 ], [ -121.770067470999919, 49.242678469000104 ], [ -121.77046370799998, 49.24292279500002 ], [ -121.770729382999917, 49.243086587000086 ], [ -121.772697491999935, 49.244249345000071 ], [ -121.776632210999978, 49.246670294000069 ], [ -121.77716921699999, 49.24691670400005 ], [ -121.777723323999965, 49.247097105000115 ], [ -121.78077877799997, 49.245165489000094 ], [ -121.780848890999934, 49.2449987870001 ], [ -121.781845200999967, 49.24429120500006 ], [ -121.786512311999928, 49.241212592000124 ], [ -121.786397366999935, 49.241082217000063 ], [ -121.78670929099999, 49.240859694000058 ], [ -121.793884026999976, 49.241356305000075 ], [ -121.793882415999974, 49.241510954000084 ], [ -121.793879899000018, 49.241750085000078 ], [ -121.793862125, 49.244249588000073 ], [ -121.786791305999955, 49.244239402000076 ], [ -121.786289503999967, 49.244316300000065 ], [ -121.785489286999976, 49.244499599000051 ], [ -121.784752009, 49.244824205000043 ], [ -121.78403988899997, 49.245278693000046 ], [ -121.78368872499999, 49.245604 ], [ -121.783316800999913, 49.246125912000075 ], [ -121.783145898, 49.246569086000072 ], [ -121.783069527999913, 49.247303656000078 ], [ -121.783126395999972, 49.255053334000053 ], [ -121.783129373999913, 49.255458179000065 ], [ -121.783146769000012, 49.257823019000078 ], [ -121.783311080999965, 49.25835959000009 ], [ -121.783477857999983, 49.258712530000068 ], [ -121.783495567999978, 49.258749969000029 ], [ -121.784171422, 49.259558083000087 ], [ -121.783532641999955, 49.263588436000056 ], [ -121.783057370999956, 49.26658661400009 ], [ -121.783027104999917, 49.271766194000072 ], [ -121.783018535999929, 49.273231560000113 ], [ -121.783019116999924, 49.274419639000079 ], [ -121.783021560999913, 49.279303932000097 ], [ -121.783021792999961, 49.27969977100004 ], [ -121.783022191999962, 49.280522689000072 ], [ -121.779586161999973, 49.280533100000135 ], [ -121.777839975999882, 49.280538355000026 ], [ -121.777521142999973, 49.2805392490001 ], [ -121.776599377999958, 49.280530495000036 ], [ -121.775546993999981, 49.280520477000017 ], [ -121.774908478999961, 49.280514398000129 ], [ -121.772733186999943, 49.280493607000054 ], [ -121.772760046000016, 49.28019914700009 ], [ -121.777200721999961, 49.280373057000062 ], [ -121.77720683099993, 49.28012602000009 ], [ -121.778031594999931, 49.280134745000126 ], [ -121.77803826199991, 49.279864952000047 ], [ -121.778214554, 49.279866817000062 ], [ -121.778276675999933, 49.279184875000027 ], [ -121.778639965999972, 49.279199091000059 ], [ -121.778853383999888, 49.276855982000036 ], [ -121.779497533, 49.27688118600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18615584", "BldgCostT": "12838334", "sL_LossRatio": "0.973744467397423", "sL_AssetLoss": "20268.49", "sL_BldgLoss": "19736.33", "sL_StrLoss": "16991.03", "sL_NStrLoss": "2745.3", "sL_ContLoss": "532.16", "geom_point": "0101000020E6100000C16AD1A7FA6F5EC097031CC64DAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.741290484999951, 49.344647608000059 ], [ -121.741320389999927, 49.344322677000058 ], [ -121.741262804999934, 49.344320408000094 ], [ -121.741279710999947, 49.344136714000044 ], [ -121.740807400999955, 49.344118096000081 ], [ -121.741138089999978, 49.34052506400009 ], [ -121.741496742999956, 49.340539203000105 ], [ -121.74153409699997, 49.340133272000017 ], [ -121.74180635499998, 49.340144005000084 ], [ -121.741998591999973, 49.338054677000052 ], [ -121.742087937999941, 49.338058199000074 ], [ -121.742142018999985, 49.337470379000159 ], [ -121.742978881999974, 49.337503362000085 ], [ -121.743175692999955, 49.335363598000043 ], [ -121.743901094999927, 49.335392184000099 ], [ -121.74394618799991, 49.334901816000027 ], [ -121.747398361999942, 49.335037781000139 ], [ -121.747590246999934, 49.332949297000084 ], [ -121.747841750999925, 49.33295919800004 ], [ -121.747927163999918, 49.332029438000085 ], [ -121.747743613999958, 49.332022213000094 ], [ -121.747925134999946, 49.330046232000079 ], [ -121.747419127999976, 49.330026309000083 ], [ -121.747749203999959, 49.326433182000123 ], [ -121.749209498999903, 49.326490670000041 ], [ -121.749484094999971, 49.323500016000033 ], [ -121.749551624999981, 49.323502674000039 ], [ -121.74959561699994, 49.323023517000074 ], [ -121.749774442999978, 49.323030555000052 ], [ -121.749800048999958, 49.322751644000043 ], [ -121.749742767999976, 49.322749390000105 ], [ -121.750072613000029, 49.319156216000117 ], [ -121.75053962699999, 49.319174597000021 ], [ -121.750562604999971, 49.318924228000107 ], [ -121.751043914999968, 49.318943169000136 ], [ -121.751059893999923, 49.318769039000095 ], [ -121.752345867999949, 49.318819635000068 ], [ -121.752429784999919, 49.317904869000117 ], [ -121.75289681299999, 49.317923241000067 ], [ -121.752919776999988, 49.317672880000025 ], [ -121.75348164899998, 49.317694979000109 ], [ -121.753516873999956, 49.317310894000087 ], [ -121.754205981999974, 49.317337993000073 ], [ -121.754247967999973, 49.316880110000092 ], [ -121.757634667999938, 49.317013230000036 ], [ -121.75768194799997, 49.316497190000085 ], [ -121.763168939999971, 49.316712640000077 ], [ -121.763107651999974, 49.317382424000101 ], [ -121.763096292999961, 49.317506563000073 ], [ -121.763023704999952, 49.317539411000062 ], [ -121.761042604999957, 49.318084894000087 ], [ -121.760216499999956, 49.319181504 ], [ -121.759979494999953, 49.31929689599999 ], [ -121.759360480999959, 49.319254097000105 ], [ -121.759181209999909, 49.319323892000014 ], [ -121.758593610999966, 49.319650110000019 ], [ -121.757358708999959, 49.320662708000029 ], [ -121.756996880999978, 49.320777468000053 ], [ -121.756483188999979, 49.320940392000082 ], [ -121.756153449999928, 49.321164792000104 ], [ -121.755909798999951, 49.321330610000068 ], [ -121.755651005999937, 49.321229497000047 ], [ -121.753231085999943, 49.321733702000124 ], [ -121.75290789499995, 49.321964393000016 ], [ -121.752402395000018, 49.322930004000078 ], [ -121.752321591999959, 49.323351610000039 ], [ -121.752753179999928, 49.323734693000063 ], [ -121.753152197999967, 49.324322911000074 ], [ -121.753148703999969, 49.324449590000036 ], [ -121.75278578299995, 49.324607697000069 ], [ -121.752598310999957, 49.324973693000047 ], [ -121.752498847999931, 49.325031948000067 ], [ -121.751661895999945, 49.325522113000048 ], [ -121.751383785999948, 49.326175800000087 ], [ -121.751547798999937, 49.326743997000094 ], [ -121.751825233999966, 49.327269737000066 ], [ -121.751929613999948, 49.327467499000107 ], [ -121.752009797999932, 49.328088506000022 ], [ -121.7523950099999, 49.328659607000105 ], [ -121.752455696999959, 49.329478501000068 ], [ -121.752652109999957, 49.32990441000004 ], [ -121.752677704999954, 49.330569509000021 ], [ -121.75311339699999, 49.33129439500005 ], [ -121.753153092999966, 49.331869802000092 ], [ -121.753051890000023, 49.332094802000029 ], [ -121.752518595999916, 49.332458003000049 ], [ -121.752162815999938, 49.332912304000068 ], [ -121.751413714999941, 49.334775192000038 ], [ -121.751411173999912, 49.334778670000041 ], [ -121.75093048899997, 49.33543601000008 ], [ -121.750199284999894, 49.33603990500005 ], [ -121.74972448699998, 49.336304789000053 ], [ -121.748864212999933, 49.336519797000108 ], [ -121.748056509999941, 49.336907205000038 ], [ -121.74693449099999, 49.337227694000021 ], [ -121.7467506, 49.33737859100011 ], [ -121.746715506999948, 49.337639193000037 ], [ -121.746820190999969, 49.337936913000043 ], [ -121.7466252899999, 49.338565008000103 ], [ -121.746557598999985, 49.339526305000071 ], [ -121.746802896999938, 49.340725490000068 ], [ -121.746936291999987, 49.34089780700009 ], [ -121.747427116999944, 49.341127099000083 ], [ -121.747528780999971, 49.34142620300004 ], [ -121.747869987999977, 49.341510311000064 ], [ -121.748113399999966, 49.341692493000068 ], [ -121.748277489999978, 49.342342004000045 ], [ -121.748123389999989, 49.342997109000109 ], [ -121.748167288999966, 49.343411594000102 ], [ -121.748054189999948, 49.343491288000109 ], [ -121.747655099999946, 49.343541195000093 ], [ -121.747165112999966, 49.343806088000086 ], [ -121.746459812999959, 49.344535289000113 ], [ -121.746384886999948, 49.344741803000012 ], [ -121.746450228999976, 49.344850868000087 ], [ -121.744677549999892, 49.344781064000088 ], [ -121.741290484999951, 49.344647608000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.985145400880631", "sL_AssetLoss": "2066.7", "sL_BldgLoss": "2036", "sL_StrLoss": "1859", "sL_NStrLoss": "177", "sL_ContLoss": "30.7", "geom_point": "0101000020E610000007EEFE80E06E5EC0E7ACAAF218A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.729876811999958, 49.280106223000118 ], [ -121.735359369999955, 49.280323095000043 ], [ -121.735028663999941, 49.28391643200009 ], [ -121.729545681999952, 49.283699545000033 ], [ -121.729876811999958, 49.280106223000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.968156906973056", "sL_AssetLoss": "5674.7", "sL_BldgLoss": "5494", "sL_StrLoss": "4862", "sL_NStrLoss": "632", "sL_ContLoss": "180.7", "geom_point": "0101000020E6100000F7246E1DB56F5EC061314D85B6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.743590020999932, 49.268020515000032 ], [ -121.74907121499993, 49.26823669500007 ], [ -121.748741656, 49.271830140000077 ], [ -121.747414248999959, 49.271777813000085 ], [ -121.74717653099998, 49.274368671000083 ], [ -121.741694620999908, 49.274152397000094 ], [ -121.741879910999955, 49.272135581000022 ], [ -121.742348186999934, 49.271358006000078 ], [ -121.742469903000014, 49.270909287000016 ], [ -121.742425291, 49.270574798000062 ], [ -121.743352107999968, 49.270611379000115 ], [ -121.743590020999932, 49.268020515000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.985619407288896", "sL_AssetLoss": "1075.06", "sL_BldgLoss": "1059.6", "sL_StrLoss": "954", "sL_NStrLoss": "105.6", "sL_ContLoss": "15.46", "geom_point": "0101000020E6100000CBA50AA94F6D5EC02404924D45A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.707159109999964, 49.312642518000111 ], [ -121.709701137999971, 49.312743567000034 ], [ -121.709368209999965, 49.316336651000015 ], [ -121.705624415999978, 49.316187809000013 ], [ -121.70715439599995, 49.313243907000079 ], [ -121.707159109999964, 49.312642518000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.980261944290721", "sL_AssetLoss": "542.1", "sL_BldgLoss": "531.4", "sL_StrLoss": "497", "sL_NStrLoss": "34.4", "sL_ContLoss": "10.7", "geom_point": "0101000020E6100000D2E2AD6F376F5EC0A529A7E26B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.737697871999913, 49.244627325000081 ], [ -121.738920596999904, 49.243686829000055 ], [ -121.738666433999938, 49.246453154000115 ], [ -121.736407778999975, 49.246363842000086 ], [ -121.736404469, 49.246493475000094 ], [ -121.735760905999939, 49.24648643200009 ], [ -121.736036740999936, 49.246196774000026 ], [ -121.73637953299999, 49.24583676900015 ], [ -121.736534284999962, 49.245674279000148 ], [ -121.737155777999959, 49.245044243000088 ], [ -121.737697871999913, 49.244627325000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10096833", "BldgCostT": "6963333", "sL_LossRatio": "0.981970935879198", "sL_AssetLoss": "9925.64", "sL_BldgLoss": "9746.69", "sL_StrLoss": "8839.09", "sL_NStrLoss": "907.6", "sL_ContLoss": "178.95", "geom_point": "0101000020E610000049F6C618B16E5EC0E5F647EF06A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.72032240099999, 49.290564893000038 ], [ -121.720313986999912, 49.290392498000053 ], [ -121.720147880999946, 49.290436698000057 ], [ -121.720024598999927, 49.290372596000047 ], [ -121.719858212999924, 49.289956707000016 ], [ -121.719550302999934, 49.289602097000063 ], [ -121.71958661299999, 49.289216094000025 ], [ -121.720051906999984, 49.288842985000102 ], [ -121.72050779199995, 49.288182200000087 ], [ -121.720626895999956, 49.287814695000108 ], [ -121.720597100999896, 49.28741878500005 ], [ -121.721288814999951, 49.286202500000108 ], [ -121.722629997999945, 49.284823893000052 ], [ -121.722781002999966, 49.284348210000097 ], [ -121.723055914, 49.28433390400015 ], [ -121.723126984999951, 49.284244198000067 ], [ -121.723067902999958, 49.28387530600002 ], [ -121.723157809999975, 49.283560592000057 ], [ -121.722629211000012, 49.283798386000015 ], [ -121.722444598999971, 49.284030587000117 ], [ -121.72236200899999, 49.283993596000094 ], [ -121.72240220599997, 49.283579107000016 ], [ -121.72345871099999, 49.28200819100001 ], [ -121.724279387999943, 49.281153700000047 ], [ -121.728536592999944, 49.278168497000067 ], [ -121.72908467900001, 49.27817569700003 ], [ -121.728774709999982, 49.278486099000133 ], [ -121.728813413999958, 49.278585808000045 ], [ -121.729986083999933, 49.277942101000093 ], [ -121.730120911999961, 49.278016103000013 ], [ -121.730129411999883, 49.27819559800006 ], [ -121.73025378599999, 49.278170001000085 ], [ -121.73090838, 49.277870900000089 ], [ -121.7317499, 49.277178703000111 ], [ -121.732296220999956, 49.27685260100008 ], [ -121.733658307999931, 49.276282896000112 ], [ -121.735211185999958, 49.275777310000059 ], [ -121.735777500999959, 49.275640587000076 ], [ -121.736534405999961, 49.275630602000085 ], [ -121.739344099999983, 49.274365908000078 ], [ -121.739460087999959, 49.27427971500007 ], [ -121.741161984999948, 49.274346924000056 ], [ -121.740831768999925, 49.277940312000084 ], [ -121.740283030999962, 49.277918645000078 ], [ -121.740246266999947, 49.278318625000104 ], [ -121.737301414999948, 49.278202299000036 ], [ -121.73722298199999, 49.279054994000028 ], [ -121.734838297999943, 49.27896073600008 ], [ -121.73477741399995, 49.279622252000102 ], [ -121.729781307999986, 49.279424603000024 ], [ -121.72972323, 49.280054871000075 ], [ -121.72799347199998, 49.279986386000076 ], [ -121.727896110999922, 49.281042512000063 ], [ -121.725283243999954, 49.280939011000072 ], [ -121.725212708999919, 49.281703649000129 ], [ -121.72731715499999, 49.281787014000031 ], [ -121.726985813999946, 49.285380320000087 ], [ -121.726712874999961, 49.285369510000123 ], [ -121.726678121999953, 49.285746327000012 ], [ -121.723759176999963, 49.28563067700005 ], [ -121.723673842999972, 49.286555296000088 ], [ -121.723211285, 49.286536962000092 ], [ -121.723208002999925, 49.28657251700011 ], [ -121.724408763999989, 49.286620106000072 ], [ -121.724077162999947, 49.290213375000043 ], [ -121.721110529999919, 49.290095776000108 ], [ -121.7209965, 49.291330446000174 ], [ -121.720235512999977, 49.291300267000025 ], [ -121.72032240099999, 49.290564893000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.977839643652561", "sL_AssetLoss": "1796", "sL_BldgLoss": "1756.2", "sL_StrLoss": "1571", "sL_NStrLoss": "185.2", "sL_ContLoss": "39.8", "geom_point": "0101000020E6100000E4F19B5F606D5EC0009013260CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.707459472999943, 49.303208429000044 ], [ -121.710804707999955, 49.303341414000066 ], [ -121.710471932999951, 49.306934552000079 ], [ -121.707288395999967, 49.306807998000068 ], [ -121.707330244999952, 49.305927620000134 ], [ -121.707409260999896, 49.304264794000076 ], [ -121.707459472999943, 49.303208429000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.961191870025653", "sL_AssetLoss": "4560.9", "sL_BldgLoss": "4383.9", "sL_StrLoss": "3770", "sL_NStrLoss": "613.9", "sL_ContLoss": "177", "geom_point": "0101000020E61000008F2BDC8F676F5EC06ACAE3A3A4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.737268990999951, 49.264078799000082 ], [ -121.738295595999929, 49.262587692000061 ], [ -121.74078121299999, 49.260572397000026 ], [ -121.741734841999943, 49.259730156000025 ], [ -121.742621102, 49.258947392000046 ], [ -121.743288212999971, 49.258192348000058 ], [ -121.743329511999988, 49.258145605000067 ], [ -121.743337317999945, 49.258146313000104 ], [ -121.743107303000031, 49.260651606000081 ], [ -121.742554578999915, 49.260629786000038 ], [ -121.742545988999908, 49.260723325000065 ], [ -121.744953615999989, 49.26081835600008 ], [ -121.745031508999915, 49.260942703000062 ], [ -121.743952702999977, 49.262298601000083 ], [ -121.742937878999939, 49.263295501000101 ], [ -121.742416700999954, 49.26428819900012 ], [ -121.742793909999961, 49.264661301000082 ], [ -121.742768194999968, 49.264923484000057 ], [ -121.739566930999956, 49.264797063000096 ], [ -121.739729206, 49.263031261000101 ], [ -121.739130869999983, 49.263007621000021 ], [ -121.738991149999904, 49.264527795000049 ], [ -121.738424668, 49.264505410000091 ], [ -121.738320283999983, 49.265640907000019 ], [ -121.737861683999938, 49.265622783000062 ], [ -121.737744828999894, 49.26689371700008 ], [ -121.736374758999929, 49.266839561000062 ], [ -121.736388509999941, 49.266786289000066 ], [ -121.736219200999955, 49.266415995000031 ], [ -121.736255249999928, 49.266153207000052 ], [ -121.736480558999972, 49.265297235000084 ], [ -121.73670361399995, 49.264666991000119 ], [ -121.737268990999951, 49.264078799000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.984533003305385", "sL_AssetLoss": "3264.37", "sL_BldgLoss": "3213.88", "sL_StrLoss": "2873.38", "sL_NStrLoss": "340.5", "sL_ContLoss": "50.49", "geom_point": "0101000020E6100000A45016BEBE6D5EC02D18C70E4BA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.716640991999952, 49.296781781000043 ], [ -121.71721628899995, 49.295764604000077 ], [ -121.717470602, 49.295525406000074 ], [ -121.717692493999934, 49.295501211000037 ], [ -121.718407706, 49.2949144090001 ], [ -121.718624510999959, 49.295034009000084 ], [ -121.719718242999988, 49.293668880000048 ], [ -121.719447504, 49.29659898400007 ], [ -121.719978651999938, 49.296620050000072 ], [ -121.719646636999954, 49.300213253000088 ], [ -121.714310198999939, 49.300001482000049 ], [ -121.714251538999932, 49.300635480000047 ], [ -121.714178788999945, 49.300632591000088 ], [ -121.714153047999929, 49.300910782000066 ], [ -121.710205039999963, 49.300753937000131 ], [ -121.710125422999951, 49.301613576000079 ], [ -121.709926231999958, 49.301605659000082 ], [ -121.70978009599996, 49.303183380000043 ], [ -121.707465038999956, 49.303091336000101 ], [ -121.707510540999948, 49.302134034000076 ], [ -121.70758359699991, 49.300596674000133 ], [ -121.707598673999925, 49.300279532000054 ], [ -121.710086399999938, 49.29994609800012 ], [ -121.710769122000016, 49.299772293000075 ], [ -121.714449701999968, 49.298835201000031 ], [ -121.715738201999955, 49.29831969100016 ], [ -121.716152610999956, 49.29806469800009 ], [ -121.716648286999941, 49.297549199000052 ], [ -121.716553287999929, 49.296936799000079 ], [ -121.716640991999952, 49.296781781000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.979662810917064", "sL_AssetLoss": "1322.7", "sL_BldgLoss": "1295.8", "sL_StrLoss": "1169", "sL_NStrLoss": "126.8", "sL_ContLoss": "26.9", "geom_point": "0101000020E6100000C0C6BB44716D5EC02615F0DF7AAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.707677993999965, 49.34756310800001 ], [ -121.707606479999981, 49.347184295000034 ], [ -121.707364111999951, 49.346974890000105 ], [ -121.707356037999915, 49.346970755000015 ], [ -121.707403647999968, 49.346457577000109 ], [ -121.712893952999977, 49.346675567000069 ], [ -121.712663541999987, 49.349162225000022 ], [ -121.712527647999948, 49.349063621000013 ], [ -121.712357542999939, 49.348940165000059 ], [ -121.710487592999968, 49.347583207000184 ], [ -121.708093296999948, 49.348289657000059 ], [ -121.707107845999985, 49.349645812000119 ], [ -121.707290760999953, 49.347674352000062 ], [ -121.707413288999987, 49.347677101000052 ], [ -121.707677993999965, 49.34756310800001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802833", "BldgCostT": "1243333", "sL_LossRatio": "0.931244124099028", "sL_AssetLoss": "3191", "sL_BldgLoss": "2971.6", "sL_StrLoss": "1984.6", "sL_NStrLoss": "987", "sL_ContLoss": "219.4", "geom_point": "0101000020E61000009E81AA3496715EC074C23A4412A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.772217019999985, 49.248653243000028 ], [ -121.777696061999933, 49.248867976000035 ], [ -121.777368854999949, 49.252461613000072 ], [ -121.771889390999931, 49.25224686500011 ], [ -121.772217019999985, 49.248653243000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.970387918270654", "sL_AssetLoss": "675.4", "sL_BldgLoss": "655.4", "sL_StrLoss": "597", "sL_NStrLoss": "58.4", "sL_ContLoss": "20", "geom_point": "0101000020E6100000584A434BA66F5EC0B83AA528BCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.74392318299995, 49.264969073000032 ], [ -121.74388841199999, 49.264330905000143 ], [ -121.743776319999981, 49.264339504000134 ], [ -121.743495685999932, 49.264597206000076 ], [ -121.743310603999973, 49.264315292000035 ], [ -121.743035910999964, 49.264303905000091 ], [ -121.742942204999949, 49.264168600000112 ], [ -121.742968094999981, 49.263726999000042 ], [ -121.743746692999977, 49.262862594000111 ], [ -121.744330588999929, 49.262546390000018 ], [ -121.744439411, 49.262583403000143 ], [ -121.744287686999954, 49.263165906000076 ], [ -121.744298902999944, 49.263238490000028 ], [ -121.744397084999932, 49.263238489000088 ], [ -121.744566191999979, 49.263024900000119 ], [ -121.74479229399999, 49.262281503000068 ], [ -121.744739292999895, 49.262154710000054 ], [ -121.745304593999975, 49.261566511000133 ], [ -121.745440178999928, 49.261613492000038 ], [ -121.745540296999948, 49.262019405000046 ], [ -121.745687374999989, 49.262110532000065 ], [ -121.745473110999953, 49.264445340000037 ], [ -121.745101214999977, 49.264430668000024 ], [ -121.745047725999939, 49.26501344800004 ], [ -121.74392318299995, 49.264969073000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.980059510591997", "sL_AssetLoss": "2251.7", "sL_BldgLoss": "2206.8", "sL_StrLoss": "2002", "sL_NStrLoss": "204.8", "sL_ContLoss": "44.9", "geom_point": "0101000020E6100000CB6C6F3B5D6D5EC0E9AA8ABAA0A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.70718843399996, 49.308912208000066 ], [ -121.707237067999955, 49.307888093000031 ], [ -121.707237902999907, 49.307870112000039 ], [ -121.707284059999949, 49.306899186000116 ], [ -121.707287450999956, 49.306827861000102 ], [ -121.709769868, 49.306926551000053 ], [ -121.709641148999978, 49.30831602900011 ], [ -121.710826321999917, 49.308363126000046 ], [ -121.710493511999971, 49.311956237000047 ], [ -121.709532840999927, 49.311918062000117 ], [ -121.709516580999917, 49.312093561000026 ], [ -121.707164152999937, 49.312000045000033 ], [ -121.70717314099997, 49.310855422000024 ], [ -121.707182771999939, 49.309632108000073 ], [ -121.70718843399996, 49.308912208000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.96610884545071", "sL_AssetLoss": "2133.3", "sL_BldgLoss": "2061", "sL_StrLoss": "1816", "sL_NStrLoss": "245", "sL_ContLoss": "72.3", "geom_point": "0101000020E610000092FFB0425D715EC014B214459FA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.770358121999976, 49.313149269000078 ], [ -121.770416401, 49.312511205000099 ], [ -121.770326160999929, 49.312507670000038 ], [ -121.770550503999957, 49.310051334000079 ], [ -121.770235012999962, 49.310038973000097 ], [ -121.770442508999963, 49.307767022000043 ], [ -121.770181052999959, 49.307756778000027 ], [ -121.770261788999989, 49.306872778000063 ], [ -121.770238910999979, 49.306871882000088 ], [ -121.770567053999955, 49.303278561000177 ], [ -121.770947598999911, 49.303293471000082 ], [ -121.771006384999978, 49.304371759000077 ], [ -121.771407938999943, 49.309364963000064 ], [ -121.771659031999889, 49.309394227000041 ], [ -121.773022524999959, 49.309553260000094 ], [ -121.773108038999965, 49.309567919000123 ], [ -121.772961992999967, 49.310187592000062 ], [ -121.772764812999981, 49.310401203 ], [ -121.77308840699996, 49.310639094000052 ], [ -121.773143006999987, 49.311233010000052 ], [ -121.772779112999928, 49.311480807000095 ], [ -121.773149411999938, 49.311493604000056 ], [ -121.773387225999898, 49.311919405 ], [ -121.772431777999884, 49.312170097000106 ], [ -121.771741308999935, 49.312800999000046 ], [ -121.771087486999974, 49.313177840000108 ], [ -121.7709514099999, 49.313172510000108 ], [ -121.770358121999976, 49.313149269000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989944737607512", "sL_AssetLoss": "481.34", "sL_BldgLoss": "476.5", "sL_StrLoss": "438", "sL_NStrLoss": "38.5", "sL_ContLoss": "4.84", "geom_point": "0101000020E6100000AD4DA597BF6F5EC0E34D65EEAD9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.747784111999948, 49.238821596000079 ], [ -121.747923650999923, 49.238811147000035 ], [ -121.747869519999981, 49.239401655000037 ], [ -121.747770039999949, 49.23939773000005 ], [ -121.747687064, 49.240302857000103 ], [ -121.743034653999956, 49.240119204000024 ], [ -121.743299884999971, 49.239985291000039 ], [ -121.74394870699993, 49.239729414000081 ], [ -121.744172589999962, 49.239641101000132 ], [ -121.745115187999929, 49.239329411000092 ], [ -121.745752446, 49.239180426000118 ], [ -121.74641859799999, 49.239024687000075 ], [ -121.747038814999939, 49.238932457000082 ], [ -121.747095989999977, 49.238923948 ], [ -121.747784111999948, 49.238821596000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.983186275557075", "sL_AssetLoss": "468.07", "sL_BldgLoss": "460.2", "sL_StrLoss": "435", "sL_NStrLoss": "25.2", "sL_ContLoss": "7.87", "geom_point": "0101000020E61000005B9C8C85FC6A5EC0A167B3EAF3A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.67016431499998, 49.312127401000048 ], [ -121.670735180999912, 49.311573440000082 ], [ -121.673935372999964, 49.311701729000085 ], [ -121.673863153999903, 49.312474746000063 ], [ -121.67322580199999, 49.312377984000065 ], [ -121.672159517999916, 49.312086103000119 ], [ -121.671896397999916, 49.312164392000035 ], [ -121.670999512999956, 49.312783886000084 ], [ -121.670073880999936, 49.312784886000024 ], [ -121.669798695999972, 49.312785171000016 ], [ -121.669583081, 49.312785403000092 ], [ -121.669154804999948, 49.312862293000066 ], [ -121.67016431499998, 49.312127401000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.968589494756361", "sL_AssetLoss": "3117.11", "sL_BldgLoss": "3019.2", "sL_StrLoss": "2523.7", "sL_NStrLoss": "495.5", "sL_ContLoss": "97.91", "geom_point": "0101000020E6100000E4CC022FEB6B5EC055603386DAA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.68331955, 49.305230846000029 ], [ -121.68365441499995, 49.301637783000061 ], [ -121.689139300999955, 49.301856994000154 ], [ -121.68880485899993, 49.305450073000017 ], [ -121.687243461999941, 49.3053876990001 ], [ -121.687226983999921, 49.305359503000012 ], [ -121.687148852999883, 49.305383918000075 ], [ -121.68331955, 49.305230846000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10737333", "BldgCostT": "6933333", "sL_LossRatio": "0.900230023672339", "sL_AssetLoss": "17911.2", "sL_BldgLoss": "16124.2", "sL_StrLoss": "12201.2", "sL_NStrLoss": "3923", "sL_ContLoss": "1787", "geom_point": "0101000020E6100000279DAB5AD06C5EC06759A447DBA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.701245659999984, 49.291562664 ], [ -121.701526147999985, 49.288539562000089 ], [ -121.699307213999973, 49.288451142000035 ], [ -121.69922009599999, 49.289389671000016 ], [ -121.693846341, 49.2891753460001 ], [ -121.693736634999979, 49.289170967000125 ], [ -121.694070577999966, 49.285577785000036 ], [ -121.696176667, 49.28566181900004 ], [ -121.696313963999899, 49.284183635000048 ], [ -121.69855506399999, 49.284273009000081 ], [ -121.701796846999969, 49.284402209000056 ], [ -121.70174678799999, 49.284941863000036 ], [ -121.702006373999907, 49.284952204000056 ], [ -121.701725937999967, 49.28797532300014 ], [ -121.707062392999916, 49.288187776000044 ], [ -121.706729436999979, 49.291780985000081 ], [ -121.701245659999984, 49.291562664 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23656750", "BldgCostT": "16315000", "sL_LossRatio": "0.976998055381451", "sL_AssetLoss": "24889.2", "sL_BldgLoss": "24316.7", "sL_StrLoss": "21717.3", "sL_NStrLoss": "2599.4", "sL_ContLoss": "572.5", "geom_point": "0101000020E61000004AA5127D426E5EC0CF644159DFA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.715512706999931, 49.291112849000122 ], [ -121.715772889, 49.288299228000092 ], [ -121.714750031999984, 49.288258610000106 ], [ -121.714689405999948, 49.288914103000081 ], [ -121.70920592899995, 49.288696185000042 ], [ -121.709538669999944, 49.285102952000081 ], [ -121.710658377999934, 49.285147474000077 ], [ -121.710719055999931, 49.284491979000101 ], [ -121.712274969999967, 49.284553825000117 ], [ -121.71233532199993, 49.28390161600008 ], [ -121.717515011999978, 49.284107340000062 ], [ -121.717555621999949, 49.283667940000058 ], [ -121.717971564999942, 49.283684450000067 ], [ -121.718022129999952, 49.283137249000077 ], [ -121.718484652999962, 49.283155605000061 ], [ -121.718522631999917, 49.282744560000062 ], [ -121.71880270599992, 49.282755674000086 ], [ -121.719098885999955, 49.279549664000079 ], [ -121.719905945999983, 49.279581688000086 ], [ -121.719941669999955, 49.279194884000084 ], [ -121.722554426999935, 49.279298514000082 ], [ -121.72274516399996, 49.277231945000075 ], [ -121.724474812999944, 49.277300514000103 ], [ -121.724572244999962, 49.276244385000084 ], [ -121.725659470999972, 49.276287472000014 ], [ -121.72587962099999, 49.273900310000023 ], [ -121.72627815, 49.27391610100004 ], [ -121.72634674199999, 49.273172219000038 ], [ -121.72638199799999, 49.273173616000065 ], [ -121.726498006999975, 49.271915419000045 ], [ -121.726715445999943, 49.271924034000051 ], [ -121.726772727999929, 49.271302724000115 ], [ -121.727049281999939, 49.271313680000034 ], [ -121.727092540999976, 49.270844430000118 ], [ -121.7285965, 49.270904001000105 ], [ -121.728709138999974, 49.269681666000068 ], [ -121.729286668999976, 49.269704536000056 ], [ -121.729307624999976, 49.269477079000133 ], [ -121.734135963999961, 49.269668159000048 ], [ -121.734534004999887, 49.269683902000047 ], [ -121.73450600299999, 49.269976506000042 ], [ -121.73469299199995, 49.270185815000062 ], [ -121.734742907999973, 49.270194080000067 ], [ -121.734740352999893, 49.270221844000027 ], [ -121.734408550999945, 49.27056942500014 ], [ -121.734497041999973, 49.271406956000078 ], [ -121.734621548999911, 49.271512909000108 ], [ -121.734541733999933, 49.272380216000052 ], [ -121.735330652999934, 49.272388855000095 ], [ -121.735323754999953, 49.272658644000039 ], [ -121.73573606799998, 49.272663158000093 ], [ -121.735701588, 49.274012106000079 ], [ -121.73446461499999, 49.273998563000127 ], [ -121.734450807999934, 49.274538142000047 ], [ -121.734038479999967, 49.274533624000085 ], [ -121.734037184999963, 49.274584164000068 ], [ -121.7340460599999, 49.274584515000065 ], [ -121.734033755, 49.274718190000094 ], [ -121.734024667999932, 49.275073204000137 ], [ -121.734001102999983, 49.275072946000122 ], [ -121.73397833599995, 49.275320291000085 ], [ -121.734128621999957, 49.275326235000129 ], [ -121.732527910999977, 49.275865598000088 ], [ -121.732054889999944, 49.276076415000034 ], [ -121.73202169399994, 49.276300003000067 ], [ -121.730675099999928, 49.277329697 ], [ -121.730293412999913, 49.277208590000043 ], [ -121.729579206999944, 49.277658687000027 ], [ -121.728347795999952, 49.277987711000065 ], [ -121.7280685899999, 49.278118709000097 ], [ -121.728066321, 49.278272505000103 ], [ -121.727469204999977, 49.278427692000044 ], [ -121.726593983999962, 49.278803702000062 ], [ -121.724634700999943, 49.280168109000094 ], [ -121.723705181999918, 49.280985595000104 ], [ -121.722261204999953, 49.283164700000022 ], [ -121.722070390999988, 49.283611890000046 ], [ -121.72205758699999, 49.284079001000066 ], [ -121.721655780999981, 49.284795398000078 ], [ -121.721087094999973, 49.285454808000061 ], [ -121.720426812, 49.286004508000111 ], [ -121.719317809999964, 49.288511094000128 ], [ -121.719140219999986, 49.289462505000067 ], [ -121.719221374999933, 49.29058759400008 ], [ -121.71971290399992, 49.290737199000013 ], [ -121.719751699999932, 49.290818397000102 ], [ -121.719832389999979, 49.291284278000099 ], [ -121.719056883999954, 49.291253514000061 ], [ -121.715512706999931, 49.291112849000122 ] ], [ [ -121.73238907699999, 49.274518971000091 ], [ -121.732389165999962, 49.27451554000006 ], [ -121.732269017999926, 49.274514221000047 ], [ -121.73238907699999, 49.274518971000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43351416", "BldgCostT": "27951666", "sL_LossRatio": "0.934938807419676", "sL_AssetLoss": "49630.2", "sL_BldgLoss": "46401.2", "sL_StrLoss": "37051.2", "sL_NStrLoss": "9350", "sL_ContLoss": "3229", "geom_point": "0101000020E6100000B2E31289BA6E5EC097E6B932E6A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.737320903999972, 49.257731227000065 ], [ -121.737360514999949, 49.257300348000058 ], [ -121.73365851100003, 49.257153932000072 ], [ -121.733648943999967, 49.257527817000039 ], [ -121.73283405799998, 49.25751888100006 ], [ -121.732824568999945, 49.257518777000087 ], [ -121.732817660999928, 49.25778856700002 ], [ -121.732405472999986, 49.257784045000086 ], [ -121.732387861999896, 49.258471577000137 ], [ -121.732384741999965, 49.258593416000075 ], [ -121.732277145999959, 49.258592235000052 ], [ -121.731560348999921, 49.258584367000047 ], [ -121.731553434999981, 49.258854158000076 ], [ -121.72949244699997, 49.258831508000107 ], [ -121.72951322599998, 49.258022137000076 ], [ -121.729925416999919, 49.258026670000056 ], [ -121.729932341, 49.25775688100007 ], [ -121.729072753999958, 49.257747427 ], [ -121.728988714999971, 49.258659749000124 ], [ -121.728506139999979, 49.258640633000056 ], [ -121.728431234999931, 49.259453661000094 ], [ -121.72795412, 49.259434759000044 ], [ -121.727903641999916, 49.259982572000112 ], [ -121.726998209000016, 49.259946695000053 ], [ -121.726920245999921, 49.260792593000112 ], [ -121.724360856999951, 49.260691141000052 ], [ -121.724070997999945, 49.26383395199999 ], [ -121.723460963999941, 49.263809761000033 ], [ -121.723402504999925, 49.26444346600001 ], [ -121.719885583999925, 49.264303938000062 ], [ -121.718266079999964, 49.264239649000075 ], [ -121.717921877999942, 49.264225981000038 ], [ -121.718252776999933, 49.260643329000104 ], [ -121.718093309999986, 49.260636996000095 ], [ -121.718425161999946, 49.257043584000101 ], [ -121.721753741, 49.257175710000119 ], [ -121.721771627999956, 49.256981863000128 ], [ -121.722677, 49.257017784000091 ], [ -121.722755031999981, 49.25617188500005 ], [ -121.723232112999966, 49.256190809000039 ], [ -121.723282641, 49.255642995000102 ], [ -121.723765181999951, 49.255662135000058 ], [ -121.723840162999977, 49.254849107000069 ], [ -121.726492455999974, 49.254954267000066 ], [ -121.726733680999928, 49.25233676800007 ], [ -121.727558350999956, 49.252369452000032 ], [ -121.727683214999928, 49.251014187000052 ], [ -121.730646094999912, 49.251131563000136 ], [ -121.730734937999969, 49.250166546000074 ], [ -121.729729789999965, 49.250126735000087 ], [ -121.729891742999925, 49.248367907000038 ], [ -121.727980741999914, 49.248292194000051 ], [ -121.728311740999956, 49.244698683000124 ], [ -121.728471921999969, 49.244705031000102 ], [ -121.729379146999946, 49.24543494300012 ], [ -121.733075150999937, 49.248407156000042 ], [ -121.733121050999927, 49.248459270000112 ], [ -121.73365930599999, 49.248693231000061 ], [ -121.733941239999922, 49.248815560000047 ], [ -121.734371501999959, 49.249447547000088 ], [ -121.734639021999953, 49.249729256000137 ], [ -121.735106731999949, 49.249798350000084 ], [ -121.735208509999921, 49.249857192000057 ], [ -121.735720406999974, 49.250460511000021 ], [ -121.737505589999955, 49.252054204000075 ], [ -121.737823944999946, 49.252464487000054 ], [ -121.737998480999977, 49.252689399000118 ], [ -121.739514817999989, 49.253851237000049 ], [ -121.739510275, 49.254029653000053 ], [ -121.739508899999947, 49.254083649000052 ], [ -121.738892643999961, 49.25407692200011 ], [ -121.738636100999955, 49.256868475000033 ], [ -121.742305771999924, 49.25701344600008 ], [ -121.74242596299996, 49.257018192000075 ], [ -121.742321904, 49.257746790000041 ], [ -121.741895193999966, 49.25833639200011 ], [ -121.74095887499999, 49.259231641000049 ], [ -121.740825691999959, 49.259358995000092 ], [ -121.739774102999959, 49.260183611000031 ], [ -121.738599999, 49.261421293000033 ], [ -121.738026703999964, 49.261865607000125 ], [ -121.736647207999937, 49.263658706000065 ], [ -121.736047198999955, 49.265045907000037 ], [ -121.735762895999926, 49.266815370000124 ], [ -121.735573882999972, 49.266807896000095 ], [ -121.732263846999928, 49.266676962000126 ], [ -121.732594644999963, 49.263083540000096 ], [ -121.733053217999952, 49.263101685000059 ], [ -121.733170190999942, 49.261830749000083 ], [ -121.733736637999982, 49.261853161000055 ], [ -121.733841125999916, 49.260717662000012 ], [ -121.735386109, 49.260778775000077 ], [ -121.735424413999937, 49.260362336000064 ], [ -121.735525936999963, 49.259258598 ], [ -121.736126015999901, 49.259282329000072 ], [ -121.736197950999951, 49.258500112000014 ], [ -121.736447363999915, 49.258509974000113 ], [ -121.736477558999965, 49.258181617000076 ], [ -121.736821251999956, 49.258195206000053 ], [ -121.73686556899996, 49.257713226000035 ], [ -121.737320903999972, 49.257731227000065 ] ], [ [ -121.730784392999951, 49.256686781000028 ], [ -121.730791312999926, 49.256416990000105 ], [ -121.73244002199999, 49.256435094000039 ], [ -121.732446931999931, 49.256165304000035 ], [ -121.733200301999943, 49.256173567000097 ], [ -121.733342751999942, 49.254625517000115 ], [ -121.732851773999954, 49.254606086000095 ], [ -121.732831657999981, 49.254824669000101 ], [ -121.732006940999952, 49.254792025000079 ], [ -121.731882191999929, 49.256147287000026 ], [ -121.729229818, 49.256042259000068 ], [ -121.729172085999934, 49.25666905500001 ], [ -121.730784392999951, 49.256686781000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31546000", "BldgCostT": "19810000", "sL_LossRatio": "0.915956454437545", "sL_AssetLoss": "39342.7", "sL_BldgLoss": "36036.2", "sL_StrLoss": "26852.5", "sL_NStrLoss": "9183.7", "sL_ContLoss": "3306.5", "geom_point": "0101000020E61000008156472BCA6C5EC027CD721B05A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.693624684, 49.301091234000125 ], [ -121.693669797, 49.300606 ], [ -121.692121062999945, 49.300544195000093 ], [ -121.692157545, 49.300151942000099 ], [ -121.690930647999949, 49.300102964000132 ], [ -121.691083703999979, 49.298457669000058 ], [ -121.686875213999897, 49.298289559000054 ], [ -121.686949891999959, 49.297487529000115 ], [ -121.685844997999965, 49.297443366000081 ], [ -121.685706526999951, 49.297437831000103 ], [ -121.686041151, 49.293844718000123 ], [ -121.688440291999953, 49.293940601 ], [ -121.688675777999947, 49.291410274000064 ], [ -121.691587353, 49.291526565000062 ], [ -121.69415947799996, 49.291629233000059 ], [ -121.693825498999971, 49.295222383000095 ], [ -121.69266959, 49.295176252000068 ], [ -121.692540850999947, 49.296560786000065 ], [ -121.696749203999943, 49.296728675000075 ], [ -121.69671276499993, 49.297120932000041 ], [ -121.697939587999912, 49.297169845000035 ], [ -121.697938081999965, 49.297186064000094 ], [ -121.70335840499996, 49.297402 ], [ -121.703226695999916, 49.298821922000045 ], [ -121.704873031999966, 49.298887454000095 ], [ -121.704973653, 49.297802280000099 ], [ -121.708921391999951, 49.297959318000018 ], [ -121.709001024999978, 49.297099674000052 ], [ -121.709073767999953, 49.297102567000145 ], [ -121.709099536999972, 49.296824375000057 ], [ -121.712644322999921, 49.29696525700006 ], [ -121.712891221999939, 49.29429745900002 ], [ -121.713348565999979, 49.294315627000096 ], [ -121.71338362099999, 49.293936769000055 ], [ -121.713645929999956, 49.29394719000009 ], [ -121.713674825999988, 49.293634876000077 ], [ -121.714215202999938, 49.293656339000052 ], [ -121.714238816, 49.293401088000053 ], [ -121.718554176999945, 49.293572388000044 ], [ -121.71918449899999, 49.293597394000081 ], [ -121.717532394999978, 49.295264698000025 ], [ -121.717470602, 49.295525406000074 ], [ -121.71721628899995, 49.295764604000077 ], [ -121.716640991999952, 49.296781781000043 ], [ -121.716553287999929, 49.296936799000079 ], [ -121.716648286999941, 49.297549199000052 ], [ -121.716152610999956, 49.29806469800009 ], [ -121.715738201999955, 49.29831969100016 ], [ -121.714449701999968, 49.298835201000031 ], [ -121.710769122000016, 49.299772293000075 ], [ -121.710086399999938, 49.29994609800012 ], [ -121.707598673999925, 49.300279532000054 ], [ -121.707451113, 49.300299295000151 ], [ -121.707372627, 49.30030310900009 ], [ -121.704371790999971, 49.300448896000042 ], [ -121.703045082999949, 49.300105798000111 ], [ -121.703017060999969, 49.300103436 ], [ -121.701210090999908, 49.299950404000107 ], [ -121.69908721799996, 49.3000856970001 ], [ -121.69798718499996, 49.300412104000046 ], [ -121.697776819999916, 49.300684769000078 ], [ -121.697564310999979, 49.30096019000009 ], [ -121.697367701999923, 49.301240514000035 ], [ -121.693624684, 49.301091234000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14700583", "BldgCostT": "10138333", "sL_LossRatio": "0.924456822289242", "sL_AssetLoss": "35080.6", "sL_BldgLoss": "32430.5", "sL_StrLoss": "25089.5", "sL_NStrLoss": "7341", "sL_ContLoss": "2650.1", "geom_point": "0101000020E61000000943CB57956D5EC0C3F6EEEAB0A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.705631145999945, 49.276767619000118 ], [ -121.705725095999981, 49.275753690000066 ], [ -121.704034655999948, 49.275686379000092 ], [ -121.704299192999969, 49.272832324000035 ], [ -121.704367704999967, 49.272093092000041 ], [ -121.707283179999962, 49.272209166000039 ], [ -121.707311493999953, 49.271903461000072 ], [ -121.707926609, 49.271927940000033 ], [ -121.708011713999937, 49.271008875000042 ], [ -121.709794333999952, 49.271079798000123 ], [ -121.70979571, 49.271027039000018 ], [ -121.710477744999963, 49.271034655000058 ], [ -121.710726850999933, 49.268342733000097 ], [ -121.711958938999942, 49.268391727000036 ], [ -121.712099976999951, 49.266867061 ], [ -121.714172353999984, 49.266949438000069 ], [ -121.714382904999979, 49.26467200900003 ], [ -121.714714822999952, 49.264685200000073 ], [ -121.714735600999987, 49.264460417000123 ], [ -121.71792115199996, 49.26458695500002 ], [ -121.719544579999962, 49.264651405000045 ], [ -121.720216241999935, 49.264678063000076 ], [ -121.719884472999965, 49.268271439000074 ], [ -121.719552526999962, 49.268258265000107 ], [ -121.719531771000035, 49.26848304700011 ], [ -121.717459314999957, 49.268400773000039 ], [ -121.717248897999966, 49.270678195000066 ], [ -121.716016743999916, 49.270629261000138 ], [ -121.715875824999969, 49.272153924000044 ], [ -121.713818075999939, 49.27207217100009 ], [ -121.713553582999936, 49.274932171000053 ], [ -121.712536721, 49.274891758000145 ], [ -121.712460580999959, 49.275714794000088 ], [ -121.711777790999975, 49.275687652000038 ], [ -121.711714986999979, 49.27636641000003 ], [ -121.711172505, 49.276344843000096 ], [ -121.71111319699996, 49.276985723000081 ], [ -121.705929877999949, 49.276779512000047 ], [ -121.705631145999945, 49.276767619000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113605250", "BldgCostT": "75875000", "sL_LossRatio": "0.931776405246612", "sL_AssetLoss": "197315.9", "sL_BldgLoss": "183854.3", "sL_StrLoss": "149032.3", "sL_NStrLoss": "34822", "sL_ContLoss": "13461.6", "geom_point": "0101000020E61000007F312107A1715EC06D6E75CE89A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.772505234999954, 49.303354487000078 ], [ -121.772540484999979, 49.301935520000093 ], [ -121.77171535899997, 49.301926752000142 ], [ -121.771782417999972, 49.299228829000064 ], [ -121.77219496, 49.299233213000065 ], [ -121.77220166299999, 49.298963421000074 ], [ -121.772614199999964, 49.298967804000057 ], [ -121.772620901999971, 49.298698012000081 ], [ -121.773033437999928, 49.298702394000088 ], [ -121.773040136999938, 49.298432601000108 ], [ -121.773865205, 49.298441359000066 ], [ -121.773871898, 49.298171566000065 ], [ -121.774696964, 49.298180318000078 ], [ -121.774703651999928, 49.297910527000077 ], [ -121.775116181999977, 49.29791490000008 ], [ -121.775136031999949, 49.297114060000048 ], [ -121.774987195999927, 49.297108234000056 ], [ -121.77506114699996, 49.296297400000043 ], [ -121.774972645, 49.296293935000087 ], [ -121.775222070999945, 49.293558936000103 ], [ -121.775040919999981, 49.293551845000138 ], [ -121.775225350999946, 49.291529394000044 ], [ -121.77494574399995, 49.291518446000083 ], [ -121.774976509999973, 49.291181073000082 ], [ -121.774955466999955, 49.291180248000025 ], [ -121.774990211999963, 49.290799237000051 ], [ -121.774918989999946, 49.290796448000016 ], [ -121.775042711999959, 49.289439692000016 ], [ -121.774890972999955, 49.289433751000111 ], [ -121.774933042000015, 49.288972423000104 ], [ -121.774859701999958, 49.288969551000058 ], [ -121.77489369199999, 49.288596796000085 ], [ -121.77479802199997, 49.288593050000131 ], [ -121.77512568299997, 49.284999617000032 ], [ -121.775169851000015, 49.285001347000069 ], [ -121.775209103999941, 49.28457081700008 ], [ -121.775996556999985, 49.284601649000081 ], [ -121.77601458, 49.284403936000103 ], [ -121.776813915999981, 49.28443522700011 ], [ -121.776856690999949, 49.283965873000056 ], [ -121.77381464699998, 49.283846758000081 ], [ -121.773800732999945, 49.284407749000117 ], [ -121.77338831599991, 49.284403372000043 ], [ -121.773381622999949, 49.284673165000058 ], [ -121.772144364999932, 49.28466002200004 ], [ -121.772164464999989, 49.28385064400004 ], [ -121.772576876999935, 49.283855025000065 ], [ -121.772578285999955, 49.283798322000059 ], [ -121.772432236999933, 49.283792599000051 ], [ -121.772733186999943, 49.280493607000054 ], [ -121.774908478999961, 49.280514398000129 ], [ -121.775546993999981, 49.280520477000017 ], [ -121.776599377999958, 49.280530495000036 ], [ -121.777521142999973, 49.2805392490001 ], [ -121.777528736999969, 49.281836653000084 ], [ -121.777547531999957, 49.285039589000064 ], [ -121.777550638999941, 49.285570317000058 ], [ -121.777555487999962, 49.286397191000056 ], [ -121.778214573999961, 49.286395894000073 ], [ -121.778249527999918, 49.286919298000051 ], [ -121.779412504, 49.286914294000042 ], [ -121.77992860099998, 49.286912007000048 ], [ -121.779951096999966, 49.286664894000069 ], [ -121.780704575999977, 49.286669093000029 ], [ -121.780613285999948, 49.287445389000027 ], [ -121.780257901999974, 49.288175285000086 ], [ -121.780135095999967, 49.288571706000035 ], [ -121.780093775999916, 49.290853709000075 ], [ -121.780326575999979, 49.291455200000094 ], [ -121.777574399999978, 49.291459295000074 ], [ -121.777551687999946, 49.294168512000113 ], [ -121.777545213999957, 49.295493509000075 ], [ -121.777601123999972, 49.296462061000049 ], [ -121.777603913999883, 49.296510094000048 ], [ -121.777557000999977, 49.296873402000074 ], [ -121.777370808999976, 49.297088265000085 ], [ -121.77735665799996, 49.297104625000053 ], [ -121.777340505999945, 49.297123237000051 ], [ -121.777306952999979, 49.297161971000023 ], [ -121.777273398999967, 49.29720070700008 ], [ -121.777133901, 49.297361675000069 ], [ -121.776817293999926, 49.297727011000084 ], [ -121.77677507899989, 49.297775317000053 ], [ -121.77637525199998, 49.298232650000031 ], [ -121.77623809699999, 49.298389548000038 ], [ -121.776066806999921, 49.298608221000151 ], [ -121.775973697999959, 49.29887413200008 ], [ -121.775994087999962, 49.299178802000071 ], [ -121.776098211999951, 49.299425403000029 ], [ -121.776215009999973, 49.299550139000047 ], [ -121.776266781999979, 49.299605461000084 ], [ -121.776609899999983, 49.299971902000067 ], [ -121.77668941, 49.300058368000059 ], [ -121.777398688999966, 49.30082949500013 ], [ -121.776214508999914, 49.301289801000081 ], [ -121.776671962999927, 49.301863165000036 ], [ -121.776738079999973, 49.302459795000068 ], [ -121.776735724999938, 49.303119605000106 ], [ -121.77632473, 49.303288807000065 ], [ -121.773612351999986, 49.304406047000057 ], [ -121.772831934999928, 49.304727477 ], [ -121.772838987999961, 49.30562929200007 ], [ -121.772722646999966, 49.305828970000043 ], [ -121.772645019, 49.30602481300015 ], [ -121.772529473999924, 49.306288650000099 ], [ -121.772702002999949, 49.307355818000062 ], [ -121.77270430499999, 49.30811499200005 ], [ -121.773101194999967, 49.308742709000114 ], [ -121.773089100999954, 49.30932819800006 ], [ -121.773022524999959, 49.309553260000094 ], [ -121.771659031999889, 49.309394227000041 ], [ -121.771407938999943, 49.309364963000064 ], [ -121.771006384999978, 49.304371759000077 ], [ -121.770947598999911, 49.303293471000082 ], [ -121.772505234999954, 49.303354487000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274904749", "BldgCostT": "183034999", "sL_LossRatio": "0.913191072729449", "sL_AssetLoss": "149404.68", "sL_BldgLoss": "136435.02", "sL_StrLoss": "116760.62", "sL_NStrLoss": "19674.4", "sL_ContLoss": "12969.66", "geom_point": "0101000020E610000041CF5E641F725EC003A3EDF373A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.772645019, 49.30602481300015 ], [ -121.772722646999966, 49.305828970000043 ], [ -121.772838987999961, 49.30562929200007 ], [ -121.772831934999928, 49.304727477 ], [ -121.773612351999986, 49.304406047000057 ], [ -121.77632473, 49.303288807000065 ], [ -121.776735724999938, 49.303119605000106 ], [ -121.776738079999973, 49.302459795000068 ], [ -121.77704081, 49.302460789000115 ], [ -121.778721282999967, 49.302474208000085 ], [ -121.779794093999925, 49.302481887000106 ], [ -121.782878823000019, 49.302490703000082 ], [ -121.782883901999966, 49.30176971000003 ], [ -121.783308731999909, 49.301777353000077 ], [ -121.783996310999939, 49.30178970700009 ], [ -121.785325393999983, 49.301813593000091 ], [ -121.78532103699996, 49.301042838000072 ], [ -121.785320147999968, 49.300881151000148 ], [ -121.78531938899999, 49.300749428000074 ], [ -121.785318471999958, 49.300584923000066 ], [ -121.785317871999894, 49.300476838000073 ], [ -121.78531754399998, 49.30042290200003 ], [ -121.785315991999951, 49.300147206000091 ], [ -121.78529034099995, 49.300002641000084 ], [ -121.785238694999975, 49.29971148700006 ], [ -121.785051687999967, 49.299264264000058 ], [ -121.784817115999914, 49.298703310000128 ], [ -121.78465494999989, 49.29820983200009 ], [ -121.784501427999913, 49.297742508000063 ], [ -121.78449557099999, 49.297718517000064 ], [ -121.784174002999919, 49.296395500000123 ], [ -121.78327661499992, 49.296397397000071 ], [ -121.783246577999961, 49.295729094000102 ], [ -121.78319271, 49.295610707000073 ], [ -121.783092100999909, 49.29553729 ], [ -121.782995515999986, 49.295510085000068 ], [ -121.777545213999957, 49.295493509000075 ], [ -121.777551687999946, 49.294168512000113 ], [ -121.777574399999978, 49.291459295000074 ], [ -121.780326575999979, 49.291455200000094 ], [ -121.780093775999916, 49.290853709000075 ], [ -121.780135095999967, 49.288571706000035 ], [ -121.780257901999974, 49.288175285000086 ], [ -121.780613285999948, 49.287445389000027 ], [ -121.780704575999977, 49.286669093000029 ], [ -121.779951096999966, 49.286664894000069 ], [ -121.77992860099998, 49.286912007000048 ], [ -121.779412504, 49.286914294000042 ], [ -121.778249527999918, 49.286919298000051 ], [ -121.778214573999961, 49.286395894000073 ], [ -121.777555487999962, 49.286397191000056 ], [ -121.777550638999941, 49.285570317000058 ], [ -121.777547531999957, 49.285039589000064 ], [ -121.777528736999969, 49.281836653000084 ], [ -121.777521142999973, 49.2805392490001 ], [ -121.777839975999882, 49.280538355000026 ], [ -121.779586161999973, 49.280533100000135 ], [ -121.783022191999962, 49.280522689000072 ], [ -121.785518320999969, 49.280596993000039 ], [ -121.787122196999974, 49.280644690000067 ], [ -121.786877658999941, 49.283334498000073 ], [ -121.785962410999943, 49.283298754000057 ], [ -121.785897155999962, 49.284016319000109 ], [ -121.785790000999938, 49.284012134000136 ], [ -121.78575627099994, 49.284383021000046 ], [ -121.785490734999911, 49.284372649000105 ], [ -121.785452081999935, 49.284797627000074 ], [ -121.785335778999936, 49.284793084000036 ], [ -121.785334020999983, 49.284812405000039 ], [ -121.783660591999976, 49.284831339000029 ], [ -121.783682341999963, 49.285277734000047 ], [ -121.783848134999943, 49.288679386000126 ], [ -121.783987566999926, 49.28868171600007 ], [ -121.783909507999965, 49.28953956400003 ], [ -121.784041175999945, 49.289544709000062 ], [ -121.784006163999933, 49.289929498000021 ], [ -121.784095999, 49.289933009000109 ], [ -121.784040145999924, 49.290546828000167 ], [ -121.784142034999945, 49.290550809000095 ], [ -121.784118048999943, 49.2908144190001 ], [ -121.784266147999915, 49.290820205000031 ], [ -121.784229491999966, 49.291223070000107 ], [ -121.784504164999987, 49.291233801000075 ], [ -121.78447485, 49.291555990000084 ], [ -121.785490851999924, 49.291595675000032 ], [ -121.785431960999915, 49.292243077000101 ], [ -121.785762083999941, 49.292255970000042 ], [ -121.785713240999911, 49.292792921000093 ], [ -121.786218700999896, 49.29281265900007 ], [ -121.786184799999916, 49.293185399000073 ], [ -121.786636811, 49.293203048000059 ], [ -121.786601621000017, 49.293589992000086 ], [ -121.787220014999932, 49.29361413400008 ], [ -121.786915816999922, 49.296959214000026 ], [ -121.787180426999953, 49.296969543000053 ], [ -121.787129524999941, 49.297529278000077 ], [ -121.787389854999958, 49.297539440000079 ], [ -121.78733450599999, 49.298148089000044 ], [ -121.787540686999989, 49.298156136000081 ], [ -121.787512304999922, 49.298468260000092 ], [ -121.787637204999953, 49.298473135000059 ], [ -121.787577492999958, 49.299129778000044 ], [ -121.790317056000021, 49.299236665000073 ], [ -121.790308393999965, 49.299331982000091 ], [ -121.790771743999954, 49.299350052000051 ], [ -121.790544067999917, 49.301855506000074 ], [ -121.790699976, 49.301857138000059 ], [ -121.79068677099994, 49.30239672600009 ], [ -121.791099339999974, 49.30240104300001 ], [ -121.79109273899999, 49.30267083800009 ], [ -121.791917884000014, 49.302679468000107 ], [ -121.791905062999902, 49.303203824000086 ], [ -121.791943633999921, 49.303219463000097 ], [ -121.792317269999941, 49.303223369000101 ], [ -121.792313695999937, 49.303369525000093 ], [ -121.792521431999916, 49.303453762000125 ], [ -121.79259274899999, 49.303496111000094 ], [ -121.792723253999952, 49.303497474000075 ], [ -121.792721149999977, 49.303583585000162 ], [ -121.792762631999935, 49.303629661000102 ], [ -121.792827932999955, 49.303857162000099 ], [ -121.792804932, 49.304021761000037 ], [ -121.79278705199999, 49.304041491000092 ], [ -121.792707824999979, 49.304128911000134 ], [ -121.792706204999931, 49.304195300000053 ], [ -121.792229300999949, 49.304336989000056 ], [ -121.790246876999959, 49.304361197000063 ], [ -121.789586845999906, 49.304318175000077 ], [ -121.789380232999974, 49.304285262000086 ], [ -121.78932965300001, 49.304271557000114 ], [ -121.788990204999905, 49.304268 ], [ -121.788992356999984, 49.304180165000055 ], [ -121.78829361799994, 49.303990835000029 ], [ -121.787133459999922, 49.303978664000063 ], [ -121.786955096999975, 49.303958102000152 ], [ -121.785950508999946, 49.303965199000125 ], [ -121.785947438999969, 49.303966209000066 ], [ -121.784045825999925, 49.303946211000103 ], [ -121.784059104999983, 49.303406625000022 ], [ -121.783646527999963, 49.303402282000043 ], [ -121.783639885999932, 49.303672076000083 ], [ -121.780339252999937, 49.303637284000068 ], [ -121.780345910999969, 49.303367490000063 ], [ -121.779933334999939, 49.30336313400003 ], [ -121.77992667299999, 49.30363292700013 ], [ -121.779101515999955, 49.303624212000052 ], [ -121.779094848999947, 49.30389400500006 ], [ -121.776880010999889, 49.303870582000052 ], [ -121.776670321, 49.303777204000028 ], [ -121.776269991999982, 49.303818508000063 ], [ -121.776104115999914, 49.303862367000129 ], [ -121.776018970999971, 49.303861464000114 ], [ -121.776016785999943, 49.303885457000028 ], [ -121.775440356999951, 49.304037861000069 ], [ -121.77391589399997, 49.304440890000102 ], [ -121.773261100999918, 49.304821208000106 ], [ -121.772978582999926, 49.305078994000084 ], [ -121.77303851399999, 49.305429294000128 ], [ -121.773283892999942, 49.305548989000037 ], [ -121.773262593999959, 49.305801012000096 ], [ -121.77313621699993, 49.305943496000033 ], [ -121.772767714999944, 49.305832401000025 ], [ -121.77274629, 49.306128606000094 ], [ -121.773176193999944, 49.306528814000011 ], [ -121.773295216999941, 49.308374606000129 ], [ -121.773135386999954, 49.308705005000093 ], [ -121.773160690999944, 49.309344514000024 ], [ -121.773108038999965, 49.309567919000123 ], [ -121.773022524999959, 49.309553260000094 ], [ -121.773089100999954, 49.30932819800006 ], [ -121.773101194999967, 49.308742709000114 ], [ -121.77270430499999, 49.30811499200005 ], [ -121.772702002999949, 49.307355818000062 ], [ -121.772529473999924, 49.306288650000099 ], [ -121.772645019, 49.30602481300015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160659250", "BldgCostT": "108115000", "sL_LossRatio": "0.935698490657239", "sL_AssetLoss": "165919.9", "sL_BldgLoss": "155251", "sL_StrLoss": "138674.3", "sL_NStrLoss": "16576.7", "sL_ContLoss": "10668.9", "geom_point": "0101000020E6100000C6C462ABF6715EC03FF8D4DA49A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.777601123999972, 49.296462061000049 ], [ -121.777545213999957, 49.295493509000075 ], [ -121.782995515999986, 49.295510085000068 ], [ -121.783092100999909, 49.29553729 ], [ -121.78319271, 49.295610707000073 ], [ -121.783246577999961, 49.295729094000102 ], [ -121.78327661499992, 49.296397397000071 ], [ -121.784174002999919, 49.296395500000123 ], [ -121.78449557099999, 49.297718517000064 ], [ -121.784501427999913, 49.297742508000063 ], [ -121.78465494999989, 49.29820983200009 ], [ -121.784817115999914, 49.298703310000128 ], [ -121.785051687999967, 49.299264264000058 ], [ -121.785238694999975, 49.29971148700006 ], [ -121.78529034099995, 49.300002641000084 ], [ -121.785315991999951, 49.300147206000091 ], [ -121.78531754399998, 49.30042290200003 ], [ -121.785317871999894, 49.300476838000073 ], [ -121.785318471999958, 49.300584923000066 ], [ -121.78531938899999, 49.300749428000074 ], [ -121.785320147999968, 49.300881151000148 ], [ -121.78532103699996, 49.301042838000072 ], [ -121.785325393999983, 49.301813593000091 ], [ -121.783996310999939, 49.30178970700009 ], [ -121.783308731999909, 49.301777353000077 ], [ -121.782883901999966, 49.30176971000003 ], [ -121.782878823000019, 49.302490703000082 ], [ -121.779794093999925, 49.302481887000106 ], [ -121.778721282999967, 49.302474208000085 ], [ -121.77704081, 49.302460789000115 ], [ -121.776738079999973, 49.302459795000068 ], [ -121.776671962999927, 49.301863165000036 ], [ -121.776214508999914, 49.301289801000081 ], [ -121.777398688999966, 49.30082949500013 ], [ -121.77668941, 49.300058368000059 ], [ -121.776609899999983, 49.299971902000067 ], [ -121.776266781999979, 49.299605461000084 ], [ -121.776215009999973, 49.299550139000047 ], [ -121.776098211999951, 49.299425403000029 ], [ -121.775994087999962, 49.299178802000071 ], [ -121.775973697999959, 49.29887413200008 ], [ -121.776066806999921, 49.298608221000151 ], [ -121.77623809699999, 49.298389548000038 ], [ -121.77637525199998, 49.298232650000031 ], [ -121.77677507899989, 49.297775317000053 ], [ -121.776817293999926, 49.297727011000084 ], [ -121.777133901, 49.297361675000069 ], [ -121.777273398999967, 49.29720070700008 ], [ -121.777306952999979, 49.297161971000023 ], [ -121.777340505999945, 49.297123237000051 ], [ -121.77735665799996, 49.297104625000053 ], [ -121.777370808999976, 49.297088265000085 ], [ -121.777557000999977, 49.296873402000074 ], [ -121.777603913999883, 49.296510094000048 ], [ -121.777601123999972, 49.296462061000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5419394", "BldgCostT": "3061523", "sL_LossRatio": "0.950675458346735", "sL_AssetLoss": "6218", "sL_BldgLoss": "5911.3", "sL_StrLoss": "5100.3", "sL_NStrLoss": "811", "sL_ContLoss": "306.7", "geom_point": "0101000020E6100000B5590E577B775EC08D4EAFF78F9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.864202023999908, 49.231894099000073 ], [ -121.86423094599995, 49.23156963400006 ], [ -121.862607130999933, 49.2315073050001 ], [ -121.862619102999943, 49.231493696000022 ], [ -121.862849297999986, 49.231146392 ], [ -121.863501992999943, 49.230729707000116 ], [ -121.864374317999989, 49.230423291000122 ], [ -121.865527898999957, 49.230075310000082 ], [ -121.866239788999934, 49.229888094000053 ], [ -121.867121002, 49.229821801000114 ], [ -121.868267700999965, 49.229827910000104 ], [ -121.869254593999941, 49.229699796000041 ], [ -121.869312049999976, 49.229677079000034 ], [ -121.869916842999942, 49.229437988000043 ], [ -121.869679507999948, 49.232104167000124 ], [ -121.864202023999908, 49.231894099000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7016333", "BldgCostT": "4103333", "sL_LossRatio": "0.94747800016656", "sL_AssetLoss": "7204.6", "sL_BldgLoss": "6826.2", "sL_StrLoss": "5814.7", "sL_NStrLoss": "1011.5", "sL_ContLoss": "378.4", "geom_point": "0101000020E6100000AA03285F73785EC0D75DEA31DBA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.879691841999943, 49.262596350000116 ], [ -121.885173017999975, 49.262805623000069 ], [ -121.88485403599995, 49.266399506 ], [ -121.88439405900003, 49.266381955000035 ], [ -121.884391816999951, 49.266407217000143 ], [ -121.878910216999927, 49.266197906000116 ], [ -121.879229659999936, 49.262604039000088 ], [ -121.87968959599999, 49.262621612000068 ], [ -121.879691841999943, 49.262596350000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6335417", "BldgCostT": "3841667", "sL_LossRatio": "0.959767236650688", "sL_AssetLoss": "12579.3", "sL_BldgLoss": "12073.2", "sL_StrLoss": "10820", "sL_NStrLoss": "1253.2", "sL_ContLoss": "506.1", "geom_point": "0101000020E610000091DC50E7C0785EC006346CEFAE9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.88741559, 49.233180019000031 ], [ -121.887419758999911, 49.23313299600003 ], [ -121.88376116799999, 49.232993322000048 ], [ -121.883843320999986, 49.232067308000083 ], [ -121.879732388999983, 49.231910216000102 ], [ -121.879930827999914, 49.229675540000095 ], [ -121.880070986999954, 49.229741567000126 ], [ -121.880782034999982, 49.230120344000049 ], [ -121.881475798999972, 49.230430879000046 ], [ -121.881994745999961, 49.230590430000071 ], [ -121.884242661, 49.231116269000033 ], [ -121.884810279999968, 49.231116006000079 ], [ -121.885362536999978, 49.231115766000087 ], [ -121.886255465999966, 49.231009873000033 ], [ -121.887683876, 49.230840467000064 ], [ -121.888042485999947, 49.230797927000012 ], [ -121.88888406599996, 49.230805711000045 ], [ -121.889439143999965, 49.230883665000178 ], [ -121.889756110999883, 49.230949156000044 ], [ -121.89101782099999, 49.231209822000089 ], [ -121.891825354000034, 49.231400199000092 ], [ -121.89271394599993, 49.231528739000019 ], [ -121.89305717099991, 49.231538024000024 ], [ -121.89289333, 49.233388909000098 ], [ -121.88741559, 49.233180019000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5759667", "BldgCostT": "3236667", "sL_LossRatio": "0.934983464593775", "sL_AssetLoss": "5866.2", "sL_BldgLoss": "5484.8", "sL_StrLoss": "4480.6", "sL_NStrLoss": "1004.2", "sL_ContLoss": "381.4", "geom_point": "0101000020E6100000B3F803D48A775EC014FCA15F7CA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.864779329999948, 49.291200526000132 ], [ -121.870087556999977, 49.291403801000094 ], [ -121.869817903999945, 49.294428835000048 ], [ -121.869293888999948, 49.294609591000089 ], [ -121.868050300999982, 49.294831808000048 ], [ -121.866665798999961, 49.29469219200007 ], [ -121.866688583999945, 49.29426070100002 ], [ -121.866538082999966, 49.294223599000119 ], [ -121.86633049699995, 49.293735111000103 ], [ -121.866007691999968, 49.293363389 ], [ -121.865688712999926, 49.292316599000081 ], [ -121.864779329999948, 49.291200526000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4154167", "BldgCostT": "2391667", "sL_LossRatio": "0.671717120325617", "sL_AssetLoss": "9827.5", "sL_BldgLoss": "6601.3", "sL_StrLoss": "4602.8", "sL_NStrLoss": "1998.5", "sL_ContLoss": "3226.2", "geom_point": "0101000020E6100000C8480FA6D5755EC06F445AD726A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.839455812999944, 49.259402034000054 ], [ -121.839439676999916, 49.25715632900004 ], [ -121.841950245999925, 49.257253170000105 ], [ -121.84194990799989, 49.257256933000072 ], [ -121.8430368099999, 49.25729884000004 ], [ -121.842714601999944, 49.260892628000072 ], [ -121.839465629999893, 49.260767328000036 ], [ -121.839455812999944, 49.259402034000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3680417", "BldgCostT": "2041667", "sL_LossRatio": "0.774713851636929", "sL_AssetLoss": "4377.1", "sL_BldgLoss": "3391", "sL_StrLoss": "1218", "sL_NStrLoss": "2173", "sL_ContLoss": "986.1", "geom_point": "0101000020E6100000EDCF2CA6E5765EC0CA09668E5D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.857457217999979, 49.235272951000098 ], [ -121.85884176199994, 49.235326159000074 ], [ -121.858520930999987, 49.238920114000109 ], [ -121.856201429999913, 49.238830966000108 ], [ -121.856790205999957, 49.237697101000045 ], [ -121.85688055199995, 49.237350224000117 ], [ -121.856936561999987, 49.237135255000055 ], [ -121.857009075999926, 49.236856848000066 ], [ -121.857051251999977, 49.236695045000026 ], [ -121.857060684999936, 49.236658646000095 ], [ -121.857348493999936, 49.235553817000017 ], [ -121.857404975999884, 49.235407904000063 ], [ -121.857457217999979, 49.235272951000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19488750", "BldgCostT": "11175000", "sL_LossRatio": "0.836247711634367", "sL_AssetLoss": "47523", "sL_BldgLoss": "39741", "sL_StrLoss": "28040", "sL_NStrLoss": "11701", "sL_ContLoss": "7782", "geom_point": "0101000020E6100000890928DC44765EC03605B673AF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.843162659999919, 49.251085784000061 ], [ -121.843310173, 49.249439988000105 ], [ -121.8427886489999, 49.249419878000019 ], [ -121.842882990999954, 49.248367374000082 ], [ -121.84284951799999, 49.248366083000093 ], [ -121.843020925999951, 49.246453704000068 ], [ -121.843712935, 49.246448378000061 ], [ -121.844009304999958, 49.246446101000117 ], [ -121.845411890999983, 49.246316290000109 ], [ -121.84715972, 49.24598510900006 ], [ -121.848605678999888, 49.245492693000052 ], [ -121.84992519799999, 49.244878098000079 ], [ -121.850671792999975, 49.244445293000034 ], [ -121.851755207999972, 49.243657507000094 ], [ -121.852159564999951, 49.243343983000038 ], [ -121.854164337999947, 49.243421105000046 ], [ -121.853868020000021, 49.246736103000075 ], [ -121.853814709999952, 49.246798902000045 ], [ -121.853840018999946, 49.246979799000073 ], [ -121.853846228999956, 49.246979864000103 ], [ -121.853843087999948, 49.247015002000076 ], [ -121.848520614, 49.246810169000078 ], [ -121.848442486999915, 49.247682975000075 ], [ -121.848963994999949, 49.24770305700013 ], [ -121.848642311999981, 49.251296915000047 ], [ -121.843162659999919, 49.251085784000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3528417", "BldgCostT": "1961667", "sL_LossRatio": "0.916293676003465", "sL_AssetLoss": "554.08", "sL_BldgLoss": "507.7", "sL_StrLoss": "327.6", "sL_NStrLoss": "180.1", "sL_ContLoss": "46.38", "geom_point": "0101000020E6100000AAA8B00834725EC083220EC0A3A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.783660591999976, 49.284831339000029 ], [ -121.785334020999983, 49.284812405000039 ], [ -121.785096213999964, 49.287426828000044 ], [ -121.784303686, 49.287395868000075 ], [ -121.784238516999949, 49.288112146000032 ], [ -121.784040096999945, 49.288104395000111 ], [ -121.783987566999926, 49.28868171600007 ], [ -121.783848134999943, 49.288679386000126 ], [ -121.783682341999963, 49.285277734000047 ], [ -121.783660591999976, 49.284831339000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15892333", "BldgCostT": "9433333", "sL_LossRatio": "0.949207636305946", "sL_AssetLoss": "28364.5", "sL_BldgLoss": "26923.8", "sL_StrLoss": "23808.4", "sL_NStrLoss": "3115.4", "sL_ContLoss": "1440.7", "geom_point": "0101000020E6100000F7C353B8B3795EC09CCBA2EA369E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.902374214999924, 49.239924304000105 ], [ -121.902421836999963, 49.239385167000073 ], [ -121.900351678999968, 49.239306451000026 ], [ -121.900407715999961, 49.238672344000065 ], [ -121.89962399199996, 49.238642533000053 ], [ -121.899886109999926, 49.23567682000008 ], [ -121.898808450999979, 49.235635819000066 ], [ -121.898836424999942, 49.235319371000074 ], [ -121.898398556999979, 49.235302709000045 ], [ -121.898435880999926, 49.234880537000052 ], [ -121.897743660999978, 49.234854192000107 ], [ -121.897756709999939, 49.23470661200006 ], [ -121.897298755999913, 49.234689180000068 ], [ -121.897313638999961, 49.234520887000087 ], [ -121.896916551999936, 49.234505770000041 ], [ -121.896925642, 49.234402986000063 ], [ -121.896425842999975, 49.234383958000059 ], [ -121.89644023699999, 49.234221202000064 ], [ -121.89590823499999, 49.234200944000065 ], [ -121.895936203999952, 49.233884766000081 ], [ -121.894755915999923, 49.233839814000085 ], [ -121.894765992999922, 49.233725923000073 ], [ -121.893468179999928, 49.233676480000149 ], [ -121.893656013999987, 49.231554222000035 ], [ -121.896566944999904, 49.231632916000116 ], [ -121.896956335999931, 49.231643448000092 ], [ -121.897716739, 49.231714776000047 ], [ -121.898290993999979, 49.231855628000062 ], [ -121.898455743999975, 49.231911081000085 ], [ -121.8991516299999, 49.232145306000106 ], [ -121.900107318999986, 49.23266166100008 ], [ -121.900251472, 49.2327395370001 ], [ -121.900355016999939, 49.232795480000064 ], [ -121.900971864, 49.233128723000092 ], [ -121.90187793399997, 49.233635600000099 ], [ -121.904392968999943, 49.235124082000013 ], [ -121.906232624999944, 49.236606678000044 ], [ -121.90649666899999, 49.236822261000057 ], [ -121.908240918999965, 49.2382188650001 ], [ -121.90860419499991, 49.238509712000088 ], [ -121.908795069999911, 49.23860649500012 ], [ -121.90920968099999, 49.238816722000116 ], [ -121.909099964999911, 49.240060902000046 ], [ -121.907863268999961, 49.240013959000123 ], [ -121.907852817999967, 49.240132432000024 ], [ -121.902374214999924, 49.239924304000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68071000", "BldgCostT": "47650000", "sL_LossRatio": "0.947260686333534", "sL_AssetLoss": "83050", "sL_BldgLoss": "78670", "sL_StrLoss": "34650", "sL_NStrLoss": "44020", "sL_ContLoss": "4380", "geom_point": "0101000020E6100000E2836C93697C5EC08F22639C5C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.942792618999974, 49.245066640000118 ], [ -121.942934285999954, 49.243446955000117 ], [ -121.943061216999951, 49.243511899000055 ], [ -121.944215883999902, 49.244294503000049 ], [ -121.944841482999976, 49.244808918000054 ], [ -121.945366009999987, 49.245240209000038 ], [ -121.945573883999927, 49.245466417000038 ], [ -121.945983034999983, 49.245911571000114 ], [ -121.942729419999978, 49.245789172000066 ], [ -121.942792618999974, 49.245066640000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.978253917492805", "sL_AssetLoss": "625.4", "sL_BldgLoss": "611.8", "sL_StrLoss": "535", "sL_NStrLoss": "76.8", "sL_ContLoss": "13.6", "geom_point": "0101000020E61000008E5AFECF23755EC047228F3B00A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.829138705, 49.266176569000095 ], [ -121.829253546, 49.264900065000077 ], [ -121.82951361, 49.264958080000049 ], [ -121.830547708999944, 49.264988143000046 ], [ -121.831057152999961, 49.264950135000142 ], [ -121.831726493999952, 49.266276613000137 ], [ -121.829138705, 49.266176569000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7333750", "BldgCostT": "4375000", "sL_LossRatio": "0.609336019957782", "sL_AssetLoss": "41688", "sL_BldgLoss": "25402", "sL_StrLoss": "12050", "sL_NStrLoss": "13352", "sL_ContLoss": "16286", "geom_point": "0101000020E6100000451559C6E17B5EC0E104AE44039F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.936517207999941, 49.243950310000038 ], [ -121.936556635999963, 49.2435002140001 ], [ -121.934433264999939, 49.243420156000084 ], [ -121.934455856999975, 49.243162394000102 ], [ -121.930435191999976, 49.243010685000051 ], [ -121.930256636999957, 49.243003944000073 ], [ -121.93034180399998, 49.242033214000024 ], [ -121.930343527999938, 49.242013564000104 ], [ -121.930530219, 49.239885474000047 ], [ -121.935423385, 49.24088569600007 ], [ -121.936705171999961, 49.241141302000059 ], [ -121.938124181999953, 49.241492295000036 ], [ -121.939234188999961, 49.241810892000046 ], [ -121.939504902999957, 49.2418896 ], [ -121.941307709999961, 49.242614686000145 ], [ -121.942096048999971, 49.243018062000111 ], [ -121.941996438999951, 49.244156704000019 ], [ -121.936517207999941, 49.243950310000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11130000", "BldgCostT": "6675000", "sL_LossRatio": "0.799887164659459", "sL_AssetLoss": "31195.9", "sL_BldgLoss": "24953.2", "sL_StrLoss": "19033", "sL_NStrLoss": "5920.2", "sL_ContLoss": "6242.7", "geom_point": "0101000020E61000007D7BD7A0EF755EC021751AED61A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.838966536999948, 49.251596421000066 ], [ -121.838833449999981, 49.250001880000035 ], [ -121.838728176999965, 49.248740463000104 ], [ -121.841304243999943, 49.248839865000058 ], [ -121.841276234999924, 49.249152233000061 ], [ -121.841370361999921, 49.249155864000045 ], [ -121.841172762999932, 49.251359411000109 ], [ -121.842354303000022, 49.251404982000082 ], [ -121.842359696999907, 49.251344825000047 ], [ -121.847839375999939, 49.251555996000064 ], [ -121.847517580999977, 49.255149830000065 ], [ -121.844444038999924, 49.255031419000062 ], [ -121.844350901999945, 49.256070703000063 ], [ -121.839430513999972, 49.255880959000045 ], [ -121.839415677999966, 49.253816002000043 ], [ -121.839298205999967, 49.253669895000101 ], [ -121.839120004999941, 49.253434889000104 ], [ -121.838966536999948, 49.251596421000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124239728", "BldgCostT": "72654857", "sL_LossRatio": "0.85818681810484", "sL_AssetLoss": "237967.3", "sL_BldgLoss": "204220.4", "sL_StrLoss": "154374.5", "sL_NStrLoss": "49845.9", "sL_ContLoss": "33746.9", "geom_point": "0101000020E61000001D253B789E725EC01F6F3CE98EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.783021792999961, 49.27969977100004 ], [ -121.783021560999913, 49.279303932000097 ], [ -121.783019116999924, 49.274419639000079 ], [ -121.783018535999929, 49.273231560000113 ], [ -121.783027104999917, 49.271766194000072 ], [ -121.783057370999956, 49.26658661400009 ], [ -121.783532641999955, 49.263588436000056 ], [ -121.784171422, 49.259558083000087 ], [ -121.783495567999978, 49.258749969000029 ], [ -121.783477857999983, 49.258712530000068 ], [ -121.783311080999965, 49.25835959000009 ], [ -121.783146769000012, 49.257823019000078 ], [ -121.783129373999913, 49.255458179000065 ], [ -121.783126395999972, 49.255053334000053 ], [ -121.783069527999913, 49.247303656000078 ], [ -121.783145898, 49.246569086000072 ], [ -121.783316800999913, 49.246125912000075 ], [ -121.78368872499999, 49.245604 ], [ -121.78403988899997, 49.245278693000046 ], [ -121.784752009, 49.244824205000043 ], [ -121.785489286999976, 49.244499599000051 ], [ -121.786289503999967, 49.244316300000065 ], [ -121.786791305999955, 49.244239402000076 ], [ -121.793862125, 49.244249588000073 ], [ -121.793840281, 49.247370100000069 ], [ -121.793852848999961, 49.247373966000083 ], [ -121.794304410999985, 49.247512596000092 ], [ -121.794414500999963, 49.247586405000014 ], [ -121.794467208999961, 49.247687600000127 ], [ -121.794423217999935, 49.251447389000077 ], [ -121.794542260999961, 49.251447395000106 ], [ -121.79725812399991, 49.251447367000068 ], [ -121.800006630999917, 49.251447297000084 ], [ -121.802851554999975, 49.251447123000041 ], [ -121.803469974999956, 49.251447069000072 ], [ -121.805451079999941, 49.251446891000072 ], [ -121.805453820999901, 49.253270780000079 ], [ -121.805454588999964, 49.253779878000032 ], [ -121.802489767999987, 49.253664495000137 ], [ -121.802481456999956, 49.253756310000021 ], [ -121.800751764999987, 49.253688957000058 ], [ -121.800724895999963, 49.253985651000029 ], [ -121.795245145999942, 49.25377208900008 ], [ -121.795250378999967, 49.253714362000082 ], [ -121.791798732999965, 49.253579697000085 ], [ -121.791814889999969, 49.25340164600005 ], [ -121.79120862399995, 49.253377981000078 ], [ -121.79153476499998, 49.249784307000077 ], [ -121.792218939999927, 49.249811013000091 ], [ -121.792324853999986, 49.248643661000088 ], [ -121.790595290999988, 49.248576142000069 ], [ -121.790571595999921, 49.248837208000069 ], [ -121.789922900999954, 49.248811877000016 ], [ -121.789915670999974, 49.248891524000072 ], [ -121.789829593999954, 49.248888162000078 ], [ -121.789765304999946, 49.249596325000034 ], [ -121.78902892499994, 49.249567565000106 ], [ -121.789028172999963, 49.249575843000052 ], [ -121.787932278999904, 49.249533032000102 ], [ -121.787705955, 49.252024768000098 ], [ -121.785557972000021, 49.251940824 ], [ -121.785382273999943, 49.253874025000108 ], [ -121.785616386999948, 49.253883176000087 ], [ -121.785590188999961, 49.254171443000104 ], [ -121.787120152999989, 49.25423123500007 ], [ -121.786908909999966, 49.256556257000071 ], [ -121.788141564999947, 49.256604414000059 ], [ -121.788078208999963, 49.257301899 ], [ -121.791442019, 49.257433243000065 ], [ -121.791451949999953, 49.257323827000086 ], [ -121.793848204999932, 49.257417327000041 ], [ -121.793906780999947, 49.256771583000045 ], [ -121.79455015799999, 49.25679667900004 ], [ -121.794554455999943, 49.256749299000077 ], [ -121.796295818999965, 49.256817202000015 ], [ -121.796303784999949, 49.256729341000039 ], [ -121.801783888999978, 49.256942849000104 ], [ -121.801729761999965, 49.257540678000083 ], [ -121.801818926999886, 49.257544149000125 ], [ -121.801703561999915, 49.258818279000103 ], [ -121.801493525999931, 49.261137813000069 ], [ -121.799249269999976, 49.261050412000053 ], [ -121.799117983999963, 49.262499376000065 ], [ -121.799650515999986, 49.262520119000094 ], [ -121.799324913999925, 49.266113750000052 ], [ -121.797627869999985, 49.266047637000035 ], [ -121.797570772999933, 49.266677490000042 ], [ -121.794347088999956, 49.266551830000083 ], [ -121.792089537999985, 49.266463772000129 ], [ -121.792143511999953, 49.265869135000095 ], [ -121.792134276999946, 49.265868774000118 ], [ -121.792170683, 49.265467675000089 ], [ -121.792098900000013, 49.26546487400006 ], [ -121.79216089399992, 49.264781866000078 ], [ -121.792143244, 49.264781178000078 ], [ -121.792188485999986, 49.26428273100003 ], [ -121.791125540999957, 49.264241252000026 ], [ -121.791165980999935, 49.263795818000105 ], [ -121.791105368999936, 49.263793453000112 ], [ -121.791315179999927, 49.261482282000024 ], [ -121.790635297999955, 49.261455745000077 ], [ -121.790675794999956, 49.261009701000091 ], [ -121.789179461999964, 49.260951281000054 ], [ -121.789166517999931, 49.26109380700008 ], [ -121.788089671999941, 49.261051752000114 ], [ -121.787903476999986, 49.263101232000068 ], [ -121.78784750899996, 49.26309904500004 ], [ -121.787785009999965, 49.263786932000052 ], [ -121.786589700999926, 49.263740238000032 ], [ -121.786344498999981, 49.266438059000038 ], [ -121.78553399299993, 49.2664063900001 ], [ -121.785528562999971, 49.266466128000062 ], [ -121.786679038999964, 49.266511079000054 ], [ -121.786566255999929, 49.267751955000016 ], [ -121.786641216999968, 49.267754884000041 ], [ -121.786608790999978, 49.268111643000047 ], [ -121.786691739, 49.268114883000038 ], [ -121.786499976999949, 49.270224596000119 ], [ -121.787592339999918, 49.27026726400009 ], [ -121.78752642900001, 49.270992551000028 ], [ -121.788051879999898, 49.271013071000056 ], [ -121.788072040999964, 49.270791186000068 ], [ -121.791095131999953, 49.270909194000041 ], [ -121.79141419299998, 49.26739505400009 ], [ -121.794339765999936, 49.267509176 ], [ -121.796895535999937, 49.267608807000101 ], [ -121.796871578999983, 49.267873029000057 ], [ -121.796958248999971, 49.267876406000134 ], [ -121.796811522999946, 49.269494633000065 ], [ -121.796939251999945, 49.269499610000089 ], [ -121.796898079999963, 49.26995369400008 ], [ -121.796903682000035, 49.269953913000094 ], [ -121.796872746999966, 49.270295072000074 ], [ -121.796912302999928, 49.270296613000063 ], [ -121.796835664999946, 49.271141803000027 ], [ -121.798159512999945, 49.271193383000117 ], [ -121.79783373399999, 49.27478696100011 ], [ -121.797689382000016, 49.27478133700005 ], [ -121.797614169999974, 49.275610864000036 ], [ -121.796943881999979, 49.27558474900006 ], [ -121.796838601999966, 49.276745679000065 ], [ -121.79255557099998, 49.276578713000028 ], [ -121.792550677999955, 49.276779163000043 ], [ -121.791725963999923, 49.276770540000129 ], [ -121.791719371999946, 49.277040335000024 ], [ -121.791307014999958, 49.277036022000082 ], [ -121.791300419999942, 49.277305817000077 ], [ -121.79047569799998, 49.277297186000055 ], [ -121.790469098999964, 49.277566982000089 ], [ -121.790056736999944, 49.277562663000033 ], [ -121.790050136999952, 49.277832459000102 ], [ -121.789637772999967, 49.277828140000068 ], [ -121.789631167999971, 49.278097934000108 ], [ -121.789218800999947, 49.278093614000099 ], [ -121.789212196000022, 49.278363409000065 ], [ -121.788799826999977, 49.278359086000101 ], [ -121.788793218999942, 49.278628882000099 ], [ -121.788380846999971, 49.278624558000104 ], [ -121.78837423799996, 49.278894353000055 ], [ -121.787549489999975, 49.278885701000036 ], [ -121.787542875999961, 49.279155495000069 ], [ -121.78548099899993, 49.279133838000142 ], [ -121.785479464000019, 49.279196322000068 ], [ -121.786651735999939, 49.279242113000066 ], [ -121.786608493999935, 49.279717730000101 ], [ -121.787204346999957, 49.27974099900004 ], [ -121.787122196999974, 49.280644690000067 ], [ -121.785518320999969, 49.280596993000039 ], [ -121.783022191999962, 49.280522689000072 ], [ -121.783021792999961, 49.27969977100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3528417", "BldgCostT": "1961667", "sL_LossRatio": "0.78362429309073", "sL_AssetLoss": "4067", "sL_BldgLoss": "3187", "sL_StrLoss": "1528", "sL_NStrLoss": "1659", "sL_ContLoss": "880", "geom_point": "0101000020E610000074449D3DC0755EC0842A357BA09F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.838625400999945, 49.247508921000119 ], [ -121.838505901999937, 49.246077009000025 ], [ -121.841488098999946, 49.246362200000128 ], [ -121.841373311999959, 49.247642399000057 ], [ -121.840162085999935, 49.247595670000138 ], [ -121.840104991999951, 49.248232227000102 ], [ -121.83868117599999, 49.248177278000092 ], [ -121.838625400999945, 49.247508921000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31068667", "BldgCostT": "18276667", "sL_LossRatio": "0.949370045523813", "sL_AssetLoss": "29110.04", "sL_BldgLoss": "27636.2", "sL_StrLoss": "22774.2", "sL_NStrLoss": "4862", "sL_ContLoss": "1473.84", "geom_point": "0101000020E61000004F9F91C630745EC0F171AFC46AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.823386706999912, 49.263584438000066 ], [ -121.823387062999956, 49.26356941700007 ], [ -121.82339907, 49.263064507000095 ], [ -121.820824891999976, 49.263038262000116 ], [ -121.820513343, 49.263035082000044 ], [ -121.820514219999964, 49.262998313 ], [ -121.820030919999937, 49.262979580000014 ], [ -121.820016496999983, 49.263139564000078 ], [ -121.817961312999969, 49.263059885000089 ], [ -121.814535574999965, 49.262926984000032 ], [ -121.814625124, 49.261935042000061 ], [ -121.813850314999911, 49.261904969000113 ], [ -121.813924699, 49.261081109000081 ], [ -121.810544553999975, 49.260949844000081 ], [ -121.81051450299999, 49.261282397000073 ], [ -121.809509556999927, 49.261243350000065 ], [ -121.809502365999961, 49.261322921000065 ], [ -121.80402170799999, 49.261109806000029 ], [ -121.804023723999947, 49.261087525000065 ], [ -121.801714429999933, 49.260997644000042 ], [ -121.801804303999944, 49.260005093000117 ], [ -121.801803194999977, 49.260005049000043 ], [ -121.801910507999949, 49.258819848000037 ], [ -121.802128562999911, 49.256411379000056 ], [ -121.803363262999966, 49.25645944100004 ], [ -121.803597643999964, 49.253869607000084 ], [ -121.805454832999914, 49.253941874000063 ], [ -121.805462229999961, 49.258846647000084 ], [ -121.820253757999978, 49.258690783000127 ], [ -121.822646998999971, 49.258665372000031 ], [ -121.822523479999958, 49.260387087000062 ], [ -121.824642125999929, 49.26200721500004 ], [ -121.825375574999924, 49.262413362000139 ], [ -121.827135354999953, 49.263225239000086 ], [ -121.827397252999958, 49.263375025000052 ], [ -121.827207761999944, 49.263373100000081 ], [ -121.827102899999929, 49.263372036000078 ], [ -121.82709446299998, 49.263727969000065 ], [ -121.827321414999972, 49.263736750000113 ], [ -121.827736911, 49.263752825000104 ], [ -121.828411531999919, 49.264507065000039 ], [ -121.828452785999929, 49.264538408000114 ], [ -121.828197366999987, 49.267376856000112 ], [ -121.822715908999939, 49.267164693000076 ], [ -121.823039708999929, 49.263570999000088 ], [ -121.823386706999912, 49.263584438000066 ] ], [ [ -121.824210649999927, 49.263616345000045 ], [ -121.824210741999963, 49.263612501000097 ], [ -121.824075942999968, 49.263611128000079 ], [ -121.824210649999927, 49.263616345000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.973868534482759", "sL_AssetLoss": "742.4", "sL_BldgLoss": "723", "sL_StrLoss": "619", "sL_NStrLoss": "104", "sL_ContLoss": "19.4", "geom_point": "0101000020E61000008585ACD19F755EC005BDBBBE24A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.837233843999954, 49.260681200000064 ], [ -121.837234180999957, 49.260677436000094 ], [ -121.836147206999954, 49.260635471000057 ], [ -121.8364699199999, 49.25704170100007 ], [ -121.839439676999916, 49.25715632900004 ], [ -121.839455812999944, 49.259402034000054 ], [ -121.839465629999893, 49.260767328000036 ], [ -121.837233843999954, 49.260681200000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.963696369636964", "sL_AssetLoss": "909", "sL_BldgLoss": "876", "sL_StrLoss": "724", "sL_NStrLoss": "152", "sL_ContLoss": "33", "geom_point": "0101000020E61000007698E5A125755EC07FEEB2FC4CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.830020551999922, 49.26205229900004 ], [ -121.830026929999974, 49.261782499000041 ], [ -121.829614691999922, 49.261778324000026 ], [ -121.829621074999949, 49.261508524000099 ], [ -121.829208839999936, 49.261504347000049 ], [ -121.829215222999935, 49.261234548000076 ], [ -121.828802989999986, 49.261230368000057 ], [ -121.82887961199999, 49.257992770000023 ], [ -121.830528432999984, 49.25800947400004 ], [ -121.830522058999989, 49.258279274000081 ], [ -121.830934266999947, 49.258283446000121 ], [ -121.830930524999985, 49.258441796000035 ], [ -121.831516032999929, 49.258444262000125 ], [ -121.83154153, 49.25963891300011 ], [ -121.83172683799999, 49.259640787000102 ], [ -121.831707729999934, 49.260450187000096 ], [ -121.832532183999916, 49.260458523000047 ], [ -121.832527655999954, 49.260650372000093 ], [ -121.832538631999938, 49.260551062000069 ], [ -121.832925431999954, 49.260565661000051 ], [ -121.832914332999906, 49.260835361000098 ], [ -121.83252373000002, 49.260816844000068 ], [ -121.832506720999959, 49.261537723000082 ], [ -121.83209448599996, 49.261533556000046 ], [ -121.832088117999945, 49.261803356000087 ], [ -121.831675879999949, 49.261799187000129 ], [ -121.831669510999944, 49.262068988000102 ], [ -121.830020551999922, 49.26205229900004 ] ], [ [ -121.831313494999932, 49.259636606000043 ], [ -121.831320132999963, 49.258620162000085 ], [ -121.830926341999927, 49.258618931000058 ], [ -121.830902398999939, 49.259632447000094 ], [ -121.831313494999932, 49.259636606000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.969872958257713", "sL_AssetLoss": "1377.5", "sL_BldgLoss": "1336", "sL_StrLoss": "1140", "sL_NStrLoss": "196", "sL_ContLoss": "41.5", "geom_point": "0101000020E6100000CF9F159C6A755EC0E2A758D2DDA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.832625372999928, 49.267105960000102 ], [ -121.832632566999905, 49.267025937000035 ], [ -121.83209412199993, 49.267005131000062 ], [ -121.831918012999921, 49.266656142000116 ], [ -121.831951353999969, 49.266285303000068 ], [ -121.831726493999952, 49.266276613000137 ], [ -121.831057152999961, 49.264950135000142 ], [ -121.830547708999944, 49.264988143000046 ], [ -121.82951361, 49.264958080000049 ], [ -121.829253546, 49.264900065000077 ], [ -121.829461999, 49.262582849000083 ], [ -121.831624897, 49.262666472000056 ], [ -121.834037223999985, 49.26275968700002 ], [ -121.834078326999972, 49.262302259000094 ], [ -121.839478165999964, 49.262510718000023 ], [ -121.839484204999934, 49.263350256000116 ], [ -121.83939944799999, 49.264294728000053 ], [ -121.839372078999986, 49.264353511000053 ], [ -121.83936137499991, 49.264359475000063 ], [ -121.838470206999943, 49.264856894000012 ], [ -121.838863606999936, 49.264795049000035 ], [ -121.837493724999945, 49.267293959000042 ], [ -121.832625372999928, 49.267105960000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.963383187209902", "sL_AssetLoss": "969.5", "sL_BldgLoss": "934", "sL_StrLoss": "771", "sL_NStrLoss": "163", "sL_ContLoss": "35.5", "geom_point": "0101000020E610000022BD8F404F755EC0585AC2B199A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.826313662999965, 49.255592220000075 ], [ -121.826498906999973, 49.253534020000068 ], [ -121.839298205999967, 49.253669895000101 ], [ -121.839415677999966, 49.253816002000043 ], [ -121.839430513999972, 49.255880959000045 ], [ -121.838870703999973, 49.255859356 ], [ -121.83887640399999, 49.255795841000051 ], [ -121.838365273999926, 49.25577611500011 ], [ -121.838356045999944, 49.255878947000127 ], [ -121.837650229999923, 49.255851703000054 ], [ -121.837649515999956, 49.255859664000113 ], [ -121.837060563999984, 49.255836928000065 ], [ -121.837058890999984, 49.255855578000087 ], [ -121.836107516999959, 49.255818844000061 ], [ -121.836106550999929, 49.255829601000094 ], [ -121.834911320999979, 49.255783438000066 ], [ -121.834904701999974, 49.255857130000024 ], [ -121.832320985999957, 49.255757295000151 ], [ -121.832317292999932, 49.255798392000031 ], [ -121.831796104999967, 49.255778246000041 ], [ -121.831793772, 49.255804204000107 ], [ -121.826313662999965, 49.255592220000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.974720265230004", "sL_AssetLoss": "723.9", "sL_BldgLoss": "705.6", "sL_StrLoss": "606", "sL_NStrLoss": "99.6", "sL_ContLoss": "18.3", "geom_point": "0101000020E6100000681C6EB0C5745EC0BEB23D4018A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.827135354999953, 49.263225239000086 ], [ -121.825375574999924, 49.262413362000139 ], [ -121.824642125999929, 49.26200721500004 ], [ -121.822523479999958, 49.260387087000062 ], [ -121.822646998999971, 49.258665372000031 ], [ -121.82288001699996, 49.255476207000108 ], [ -121.824837561999956, 49.255552025000071 ], [ -121.824832720999964, 49.255605791000043 ], [ -121.826485609999949, 49.255669781000037 ], [ -121.826162133, 49.259263529000052 ], [ -121.825868473999918, 49.259252162000038 ], [ -121.82575818499997, 49.260477235000046 ], [ -121.823469747999951, 49.26038862700004 ], [ -121.823460164999943, 49.26049500800012 ], [ -121.82345680499999, 49.260636315000085 ], [ -121.824281259999978, 49.260644708000051 ], [ -121.824268438999937, 49.2611843070001 ], [ -121.824680669999964, 49.261188502000067 ], [ -121.824674262000016, 49.261458302000079 ], [ -121.825086495999955, 49.26146249400005 ], [ -121.825080089999972, 49.261732294000034 ], [ -121.825492326999921, 49.261736486000089 ], [ -121.825485922999988, 49.262006285000041 ], [ -121.826310399999983, 49.26201466500013 ], [ -121.826304, 49.2622844650001 ], [ -121.826716240999957, 49.262288653000077 ], [ -121.826709845, 49.262558451000089 ], [ -121.82753433, 49.262566822000096 ], [ -121.827515152, 49.263376221000073 ], [ -121.827397252999958, 49.263375025000052 ], [ -121.827135354999953, 49.263225239000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10575333", "BldgCostT": "7293333", "sL_LossRatio": "0.939422064458701", "sL_AssetLoss": "18424.2", "sL_BldgLoss": "17308.1", "sL_StrLoss": "13826.1", "sL_NStrLoss": "3482", "sL_ContLoss": "1116.1", "geom_point": "0101000020E610000022FB494AF4795EC097323695C19D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.900107318999986, 49.23266166100008 ], [ -121.8991516299999, 49.232145306000106 ], [ -121.898455743999975, 49.231911081000085 ], [ -121.898290993999979, 49.231855628000062 ], [ -121.897716739, 49.231714776000047 ], [ -121.896956335999931, 49.231643448000092 ], [ -121.896566944999904, 49.231632916000116 ], [ -121.893656013999987, 49.231554222000035 ], [ -121.893786270999982, 49.230082393000018 ], [ -121.894243868999965, 49.230099828000057 ], [ -121.894315092999975, 49.229294903000067 ], [ -121.89979240699995, 49.22950344400008 ], [ -121.899786234999965, 49.22957329000014 ], [ -121.903555681999933, 49.229716644000057 ], [ -121.903537438999976, 49.229923296000052 ], [ -121.904800753999922, 49.229971310000096 ], [ -121.904793907999988, 49.230048870000083 ], [ -121.905397237999978, 49.23007179500005 ], [ -121.905358084999989, 49.230515458000049 ], [ -121.905572158999973, 49.230523592000097 ], [ -121.905415068999957, 49.232303717000072 ], [ -121.906848327999953, 49.232358162000011 ], [ -121.906820615999948, 49.232672291000043 ], [ -121.90695169199995, 49.232677270000124 ], [ -121.906959769, 49.232311242 ], [ -121.907371771999919, 49.232315140000061 ], [ -121.907377171999926, 49.232070342000057 ], [ -121.906260447999898, 49.232027928000051 ], [ -121.906577538999898, 49.22843379400009 ], [ -121.912054805999944, 49.228641713000066 ], [ -121.911775046999963, 49.231816978000076 ], [ -121.91191566399999, 49.231818303000111 ], [ -121.911903810999931, 49.232357921000059 ], [ -121.912315814999928, 49.232361801000096 ], [ -121.912303965999968, 49.232901418000012 ], [ -121.912715974999969, 49.232905298000098 ], [ -121.912698208, 49.233714724000052 ], [ -121.912286191999968, 49.233710846000122 ], [ -121.912256566999943, 49.235059889000084 ], [ -121.911844541000022, 49.235056008000065 ], [ -121.91183268599994, 49.235595626000119 ], [ -121.911420653999969, 49.235591744000047 ], [ -121.911414724999972, 49.235861553000078 ], [ -121.911129405999958, 49.235858863000061 ], [ -121.910973005999907, 49.23763336500005 ], [ -121.909319560999975, 49.23757062500006 ], [ -121.90920968099999, 49.238816722000116 ], [ -121.908795069999911, 49.23860649500012 ], [ -121.90860419499991, 49.238509712000088 ], [ -121.908240918999965, 49.2382188650001 ], [ -121.90649666899999, 49.236822261000057 ], [ -121.906232624999944, 49.236606678000044 ], [ -121.904392968999943, 49.235124082000013 ], [ -121.90187793399997, 49.233635600000099 ], [ -121.900971864, 49.233128723000092 ], [ -121.900355016999939, 49.232795480000064 ], [ -121.900251472, 49.2327395370001 ], [ -121.900107318999986, 49.23266166100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.91920216362407", "sL_AssetLoss": "2958", "sL_BldgLoss": "2719", "sL_StrLoss": "2080", "sL_NStrLoss": "639", "sL_ContLoss": "239", "geom_point": "0101000020E61000002EFC85C337765EC0B465D03B5B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.84868558899997, 49.243210253000086 ], [ -121.852159564999951, 49.243343983000038 ], [ -121.851755207999972, 49.243657507000094 ], [ -121.850671792999975, 49.244445293000034 ], [ -121.84992519799999, 49.244878098000079 ], [ -121.848605678999888, 49.245492693000052 ], [ -121.84715972, 49.24598510900006 ], [ -121.845411890999983, 49.246316290000109 ], [ -121.844009304999958, 49.246446101000117 ], [ -121.843712935, 49.246448378000061 ], [ -121.843020925999951, 49.246453704000068 ], [ -121.843171627999965, 49.244772226000109 ], [ -121.848527317999952, 49.244978613000079 ], [ -121.84868558899997, 49.243210253000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752667", "BldgCostT": "5346667", "sL_LossRatio": "0.917231715509279", "sL_AssetLoss": "19054.4", "sL_BldgLoss": "17477.3", "sL_StrLoss": "13033.3", "sL_NStrLoss": "4444", "sL_ContLoss": "1577.1", "geom_point": "0101000020E610000039F60557ED7A5EC0CD9C050CD89D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.915940882999948, 49.237118875000156 ], [ -121.916029966999986, 49.236106916000075 ], [ -121.91489881199999, 49.236064049000035 ], [ -121.915215260999943, 49.232469912000084 ], [ -121.915493046999956, 49.232480440000138 ], [ -121.91557009499995, 49.231605218000013 ], [ -121.917278384999989, 49.231669948000025 ], [ -121.91753927500001, 49.228704858000071 ], [ -121.923016622999967, 49.228912219000073 ], [ -121.923008617, 49.229003341000031 ], [ -121.923483512999937, 49.229021307000068 ], [ -121.923473118999965, 49.229139612000139 ], [ -121.92472797899994, 49.22918707400008 ], [ -121.924708978999931, 49.229403408000053 ], [ -121.925576356999898, 49.229436205000063 ], [ -121.925291025999968, 49.229523605000111 ], [ -121.92456366299993, 49.2297863800001 ], [ -121.923810552999939, 49.229959350000065 ], [ -121.922351013999943, 49.230001440000102 ], [ -121.921536389999943, 49.229858529000083 ], [ -121.921454504999943, 49.229959202000053 ], [ -121.921427256999934, 49.229984176000073 ], [ -121.921059170999968, 49.230830131000047 ], [ -121.921059587999977, 49.231025809000137 ], [ -121.920971494999904, 49.231175485000087 ], [ -121.920901288999957, 49.231294800000128 ], [ -121.920888699999978, 49.23137539400004 ], [ -121.920905009999927, 49.231384373000076 ], [ -121.921059089999972, 49.231469302000065 ], [ -121.921951600999961, 49.231663607000016 ], [ -121.925154402999937, 49.232116502000082 ], [ -121.93015974599993, 49.23292545000011 ], [ -121.929998324999985, 49.234765617000043 ], [ -121.924520256000037, 49.234558611000068 ], [ -121.924656499999955, 49.233007542000067 ], [ -121.922729763999953, 49.23293466800002 ], [ -121.922626686999962, 49.234107595000118 ], [ -121.921705233999944, 49.234072732000065 ], [ -121.921419215999904, 49.237326315000125 ], [ -121.919101225999924, 49.237238577000085 ], [ -121.918916419, 49.237194058000092 ], [ -121.918484001999943, 49.237099346000029 ], [ -121.918237751, 49.237045396000021 ], [ -121.91808056099994, 49.237010963000067 ], [ -121.917420161999956, 49.23697333800002 ], [ -121.916774784999944, 49.237061580000031 ], [ -121.916506558999984, 49.237140308000079 ], [ -121.915940882999948, 49.237118875000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45482333", "BldgCostT": "31103333", "sL_LossRatio": "0.954927167856096", "sL_AssetLoss": "61374", "sL_BldgLoss": "58607.7", "sL_StrLoss": "49183.8", "sL_NStrLoss": "9423.9", "sL_ContLoss": "2766.3", "geom_point": "0101000020E6100000FEFE41E226745EC07A8E7EEA0E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.805453820999901, 49.253270780000079 ], [ -121.805451079999941, 49.251446891000072 ], [ -121.803469974999956, 49.251447069000072 ], [ -121.802851554999975, 49.251447123000041 ], [ -121.800006630999917, 49.251447297000084 ], [ -121.79725812399991, 49.251447367000068 ], [ -121.794542260999961, 49.251447395000106 ], [ -121.794423217999935, 49.251447389000077 ], [ -121.794467208999961, 49.247687600000127 ], [ -121.794414500999963, 49.247586405000014 ], [ -121.794304410999985, 49.247512596000092 ], [ -121.793852848999961, 49.247373966000083 ], [ -121.793840281, 49.247370100000069 ], [ -121.793862125, 49.244249588000073 ], [ -121.793879899000018, 49.241750085000078 ], [ -121.793882415999974, 49.241510954000084 ], [ -121.793884026999976, 49.241356305000075 ], [ -121.794445498999892, 49.241378196000014 ], [ -121.794521707999962, 49.236899199000057 ], [ -121.800000577999938, 49.236921014000089 ], [ -121.802297299, 49.236930096000037 ], [ -121.802546215999911, 49.236820800000068 ], [ -121.802872602999955, 49.236677499000088 ], [ -121.803324015, 49.236214481000104 ], [ -121.803643592999947, 49.235416397000044 ], [ -121.80394690899999, 49.234844004000095 ], [ -121.804589697999987, 49.234452402000137 ], [ -121.805631722000015, 49.234174698000061 ], [ -121.806316094999985, 49.234052596000055 ], [ -121.808100704999944, 49.234118577000061 ], [ -121.80817459799999, 49.234121305 ], [ -121.808471497999918, 49.234104907000066 ], [ -121.808959492999961, 49.233920991000041 ], [ -121.809975666999932, 49.233480662 ], [ -121.810099308999938, 49.233427108000036 ], [ -121.810715820000013, 49.232972558000078 ], [ -121.811057701, 49.232720498000106 ], [ -121.811356882999959, 49.232514032000068 ], [ -121.811917296000033, 49.232535814000137 ], [ -121.811592852999979, 49.236129643000041 ], [ -121.808321161999928, 49.236002448000079 ], [ -121.808281533999946, 49.236441022000058 ], [ -121.805755431999899, 49.236342744000112 ], [ -121.805618802999959, 49.237853881000099 ], [ -121.802270620999963, 49.237723530000089 ], [ -121.802197399999926, 49.238532660000132 ], [ -121.800647980999955, 49.238472303000108 ], [ -121.800593663999962, 49.239072297000071 ], [ -121.797791261999976, 49.238963074000019 ], [ -121.797546683999954, 49.241662762000075 ], [ -121.797201391, 49.241649300000105 ], [ -121.797169489999973, 49.242001399000117 ], [ -121.797806720999972, 49.242026243000105 ], [ -121.797815844999917, 49.241925534000046 ], [ -121.799176290999966, 49.241978562000099 ], [ -121.799183489999976, 49.241899067000105 ], [ -121.801993779, 49.242008555000027 ], [ -121.801996269999918, 49.241981034000098 ], [ -121.803098530999932, 49.242023958000125 ], [ -121.803106927999949, 49.241931161000061 ], [ -121.808585317999928, 49.242144327000098 ], [ -121.808513073999961, 49.242943802000049 ], [ -121.81028994899999, 49.243012882000087 ], [ -121.810316888999921, 49.242714634000109 ], [ -121.811284889999953, 49.242752255000077 ], [ -121.811290949999915, 49.242685158000079 ], [ -121.812269850999897, 49.242723193000089 ], [ -121.812537860999953, 49.239754479000084 ], [ -121.818016037999911, 49.239967168000128 ], [ -121.817974306999972, 49.240430040000021 ], [ -121.82148454799993, 49.240566177000048 ], [ -121.821428771999933, 49.241185358000088 ], [ -121.821858085999907, 49.241189738000031 ], [ -121.821864503999933, 49.24091993800009 ], [ -121.822534116999961, 49.240926765000047 ], [ -121.822583820999952, 49.240374859000028 ], [ -121.8211510309999, 49.240319320000019 ], [ -121.82143756699999, 49.237138441000127 ], [ -121.821287733999938, 49.237132632000069 ], [ -121.821474903999928, 49.235054674 ], [ -121.82043923599997, 49.235014514000063 ], [ -121.820611551999932, 49.233101756000096 ], [ -121.820374689999966, 49.233092570000039 ], [ -121.82035695399999, 49.2332894420001 ], [ -121.814879552999955, 49.233076870000048 ], [ -121.815058850999932, 49.231089168000075 ], [ -121.815381979, 49.231091601000109 ], [ -121.81585632299999, 49.231118998000078 ], [ -121.816190724999956, 49.231212521000089 ], [ -121.816218906999964, 49.231220381000085 ], [ -121.817732708999927, 49.231643582000068 ], [ -121.818093193999943, 49.231684607000055 ], [ -121.823878321999942, 49.231728608000076 ], [ -121.826896590999922, 49.231766949000097 ], [ -121.826866545, 49.232100994000113 ], [ -121.827248911999973, 49.232115800000031 ], [ -121.826925658, 49.235709678000099 ], [ -121.826912782999983, 49.235709180000107 ], [ -121.826802791999953, 49.236931919000035 ], [ -121.826952623999929, 49.236937720000093 ], [ -121.826836227999962, 49.23823162500004 ], [ -121.828268959999917, 49.238287089000032 ], [ -121.827945740999922, 49.241880937000168 ], [ -121.824317995999934, 49.241740462000045 ], [ -121.824312798999969, 49.241959461000057 ], [ -121.826969141999911, 49.242062333000021 ], [ -121.826909391999948, 49.242726473000062 ], [ -121.827652120999986, 49.242755224000156 ], [ -121.827655976999964, 49.24271234900008 ], [ -121.829213911999958, 49.242772641000037 ], [ -121.829259936999932, 49.242260786000031 ], [ -121.834738485999964, 49.242472625000104 ], [ -121.834674375999896, 49.243186556000111 ], [ -121.838725494999935, 49.243343020000019 ], [ -121.838679501999977, 49.24385567000013 ], [ -121.839908087, 49.243903091000078 ], [ -121.839901249999969, 49.243979313000075 ], [ -121.841695530999985, 49.244048543000197 ], [ -121.841488098999946, 49.246362200000128 ], [ -121.838505901999937, 49.246077009000025 ], [ -121.838625400999945, 49.247508921000119 ], [ -121.83868117599999, 49.248177278000092 ], [ -121.834789403999963, 49.24802698600012 ], [ -121.834788363999934, 49.248038556000068 ], [ -121.829309159000019, 49.247826720000042 ], [ -121.829351577999944, 49.247355003000081 ], [ -121.827350520999929, 49.247277569000069 ], [ -121.827429054999968, 49.246404642000108 ], [ -121.827423574999983, 49.24640443100008 ], [ -121.827377098999975, 49.246921035000121 ], [ -121.823351328999934, 49.246765138000093 ], [ -121.821898058000016, 49.246708824000059 ], [ -121.821901156999957, 49.24667443200007 ], [ -121.81924237, 49.246571352000061 ], [ -121.819261522999966, 49.246358859000068 ], [ -121.816467087999968, 49.246250449000094 ], [ -121.81644532699994, 49.246491698000121 ], [ -121.815477241999972, 49.246454124000081 ], [ -121.81547118899999, 49.246521221000052 ], [ -121.810028311999986, 49.246309806000077 ], [ -121.810001367999931, 49.246608051000145 ], [ -121.804774348999956, 49.246404760000075 ], [ -121.804765047999979, 49.246507577000031 ], [ -121.803251566999961, 49.246448667000095 ], [ -121.803242387999944, 49.246550112000151 ], [ -121.800597427999918, 49.246447109000087 ], [ -121.800595475999927, 49.246468676000084 ], [ -121.799828421999948, 49.246438792000063 ], [ -121.799827642999901, 49.246447395000111 ], [ -121.797134398999972, 49.246342425000101 ], [ -121.797095890999969, 49.24676736100006 ], [ -121.797990194999912, 49.246802225000053 ], [ -121.79789408399995, 49.247862995000077 ], [ -121.79825905, 49.24787722000012 ], [ -121.798111980999948, 49.249500492000145 ], [ -121.799680213999949, 49.249561604000078 ], [ -121.799696453999985, 49.249382301000026 ], [ -121.802296202999941, 49.249483559000033 ], [ -121.802306847999915, 49.249365964000042 ], [ -121.803460591999922, 49.249410881000109 ], [ -121.80346139699999, 49.249401990000052 ], [ -121.808940670999959, 49.249615137000021 ], [ -121.808615877999955, 49.253208865000055 ], [ -121.807462032999936, 49.253164003000073 ], [ -121.807461228999927, 49.253172893000041 ], [ -121.806797362999944, 49.253147077000072 ], [ -121.806735633999963, 49.253829708000069 ], [ -121.805454588999964, 49.253779878000032 ], [ -121.805453820999901, 49.253270780000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17146917", "BldgCostT": "11561667", "sL_LossRatio": "0.868792489136526", "sL_AssetLoss": "56749.8", "sL_BldgLoss": "49303.8", "sL_StrLoss": "34350.8", "sL_NStrLoss": "14953", "sL_ContLoss": "7446", "geom_point": "0101000020E6100000A71C591A747C5EC0D9A21694B39E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.943811467999979, 49.242223895000095 ], [ -121.943813672999966, 49.242198681000033 ], [ -121.942546038999922, 49.242150976000076 ], [ -121.942582383999977, 49.241735445000053 ], [ -121.94265769899999, 49.240874361000053 ], [ -121.942284797999918, 49.24086032400006 ], [ -121.942207508999942, 49.241743898000038 ], [ -121.942096048999971, 49.243018062000111 ], [ -121.941307709999961, 49.242614686000145 ], [ -121.939504902999957, 49.2418896 ], [ -121.939234188999961, 49.241810892000046 ], [ -121.938124181999953, 49.241492295000036 ], [ -121.936705171999961, 49.241141302000059 ], [ -121.935423385, 49.24088569600007 ], [ -121.930530219, 49.239885474000047 ], [ -121.930571946999976, 49.239409800000047 ], [ -121.933105872999931, 49.239505434000108 ], [ -121.933232412999985, 49.238061959000063 ], [ -121.934096598999957, 49.238094561000068 ], [ -121.934285886999973, 49.23593467900006 ], [ -121.93976416299995, 49.236141188000033 ], [ -121.939728298999967, 49.236550978000054 ], [ -121.939449586999928, 49.239735377000088 ], [ -121.938585367999977, 49.23970281800009 ], [ -121.938566065999979, 49.239923295 ], [ -121.940782166999952, 49.24000677100004 ], [ -121.940738715999942, 49.240503340000046 ], [ -121.942208456999964, 49.240558677000045 ], [ -121.942447854999926, 49.237821666000052 ], [ -121.939674011999941, 49.237717211000067 ], [ -121.939780402999958, 49.236501583000127 ], [ -121.939944414999957, 49.234627423000049 ], [ -121.940693687999939, 49.234743893000015 ], [ -121.941318412999948, 49.234765693000035 ], [ -121.941388090999936, 49.234741457000055 ], [ -121.941659306999924, 49.234647172000081 ], [ -121.94174211, 49.234618395000012 ], [ -121.945941789999935, 49.235318302000053 ], [ -121.94922817599999, 49.235873696000091 ], [ -121.949605110999968, 49.235925245000097 ], [ -121.94940103, 49.23826273500007 ], [ -121.94942764299999, 49.238263735000032 ], [ -121.949325543, 49.239433087000123 ], [ -121.952873199999956, 49.239566345000043 ], [ -121.952866432999912, 49.23964390700008 ], [ -121.956643274999976, 49.239785645000062 ], [ -121.956378794999949, 49.24281989100006 ], [ -121.956014797999927, 49.242946400000093 ], [ -121.954334199999934, 49.243304982000055 ], [ -121.952776503999957, 49.24324651200002 ], [ -121.952735339999919, 49.243718300000054 ], [ -121.952681936999966, 49.243739117000111 ], [ -121.949187660999911, 49.243607872000013 ], [ -121.94911358399996, 49.244456125000092 ], [ -121.948974100999948, 49.244501694000078 ], [ -121.947997899, 49.245212311000074 ], [ -121.946736499999957, 49.245723607000073 ], [ -121.946583569999945, 49.245934152000054 ], [ -121.945983034999983, 49.245911571000114 ], [ -121.945573883999927, 49.245466417000038 ], [ -121.945366009999987, 49.245240209000038 ], [ -121.944841482999976, 49.244808918000054 ], [ -121.944215883999902, 49.244294503000049 ], [ -121.943061216999951, 49.243511899000055 ], [ -121.942934285999954, 49.243446955000117 ], [ -121.943043780999986, 49.242195007000056 ], [ -121.943811467999979, 49.242223895000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3651583", "BldgCostT": "2518333", "sL_LossRatio": "0.89903141244946", "sL_AssetLoss": "9002.8", "sL_BldgLoss": "8093.8", "sL_StrLoss": "5502.8", "sL_NStrLoss": "2591", "sL_ContLoss": "909", "geom_point": "0101000020E6100000BD5852CD70755EC0C1429C3D869E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.833829682999976, 49.240441461000067 ], [ -121.833867663999953, 49.240018578000026 ], [ -121.830389092999923, 49.239884069000041 ], [ -121.83071210899999, 49.236290204000071 ], [ -121.836189959999942, 49.236501972000084 ], [ -121.83615200399997, 49.236924856000044 ], [ -121.839630368999963, 49.237059181000106 ], [ -121.839308038999974, 49.24065306800005 ], [ -121.833829682999976, 49.240441461000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "0.970052083333333", "sL_AssetLoss": "3732.48", "sL_BldgLoss": "3620.7", "sL_StrLoss": "3060", "sL_NStrLoss": "560.7", "sL_ContLoss": "111.78", "geom_point": "0101000020E6100000040961A0B1785EC019D5F922679D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.889439143999965, 49.230883665000178 ], [ -121.88888406599996, 49.230805711000045 ], [ -121.888042485999947, 49.230797927000012 ], [ -121.887683876, 49.230840467000064 ], [ -121.886255465999966, 49.231009873000033 ], [ -121.885362536999978, 49.231115766000087 ], [ -121.884810279999968, 49.231116006000079 ], [ -121.884242661, 49.231116269000033 ], [ -121.881994745999961, 49.230590430000071 ], [ -121.881475798999972, 49.230430879000046 ], [ -121.880782034999982, 49.230120344000049 ], [ -121.880070986999954, 49.229741567000126 ], [ -121.879930827999914, 49.229675540000095 ], [ -121.88005153099999, 49.228316160000091 ], [ -121.880499355999987, 49.228333280000101 ], [ -121.880524129999969, 49.228054227000101 ], [ -121.883489400999963, 49.228109013000029 ], [ -121.884172316000019, 49.22773870400011 ], [ -121.884804603, 49.227654683000033 ], [ -121.884940994999965, 49.227700287000076 ], [ -121.885308596999977, 49.227848394000041 ], [ -121.886034335, 49.2278901540001 ], [ -121.886021421999928, 49.2280358020001 ], [ -121.887026882000029, 49.228074183000061 ], [ -121.88689988099999, 49.229506926000042 ], [ -121.889557285999928, 49.229608320000089 ], [ -121.889553119999945, 49.22965534400003 ], [ -121.893211464999951, 49.229794822000045 ], [ -121.89305717099991, 49.231538024000024 ], [ -121.89271394599993, 49.231528739000019 ], [ -121.891825354000034, 49.231400199000092 ], [ -121.89101782099999, 49.231209822000089 ], [ -121.889756110999883, 49.230949156000044 ], [ -121.889439143999965, 49.230883665000178 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.89916476979024", "sL_AssetLoss": "11026.9", "sL_BldgLoss": "9915", "sL_StrLoss": "6893", "sL_NStrLoss": "3022", "sL_ContLoss": "1111.9", "geom_point": "0101000020E6100000F5B536A64A7D5EC07731AC66469E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.954832821999943, 49.238404315000032 ], [ -121.954853203999932, 49.238170568000065 ], [ -121.954558526999946, 49.238159509000042 ], [ -121.954575131999889, 49.237969081000131 ], [ -121.95329359499999, 49.237920976000055 ], [ -121.953607086999938, 49.234326736000057 ], [ -121.954200468999929, 49.234349012000045 ], [ -121.954206665999948, 49.234277951000145 ], [ -121.955321139999938, 49.234319780000114 ], [ -121.95533718199999, 49.23413575900004 ], [ -121.955348498999939, 49.234133387000092 ], [ -121.957299316000018, 49.234106306000072 ], [ -121.958875096, 49.234372701000012 ], [ -121.959420208999973, 49.234549299000101 ], [ -121.959603792999971, 49.234919588000082 ], [ -121.959821309999967, 49.235100389000173 ], [ -121.960569694999961, 49.235418596000095 ], [ -121.961399110999963, 49.235771198000073 ], [ -121.96229580699999, 49.236273991000111 ], [ -121.962580513999953, 49.236568289000118 ], [ -121.962403364999929, 49.238603831000063 ], [ -121.961857482999989, 49.238583382000073 ], [ -121.961856242, 49.238597644000073 ], [ -121.961328893999905, 49.238577887000076 ], [ -121.961327320999928, 49.238595957000086 ], [ -121.960315982999958, 49.238558060000031 ], [ -121.960311479999959, 49.238609781000072 ], [ -121.954832821999943, 49.238404315000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0.898127993034393", "sL_AssetLoss": "229.7", "sL_BldgLoss": "206.3", "sL_StrLoss": "31.2", "sL_NStrLoss": "175.1", "sL_ContLoss": "23.4", "geom_point": "0101000020E61000002617C68A58775EC0BFC68199679D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.867709815999959, 49.228422366000096 ], [ -121.869999429999922, 49.228510142000111 ], [ -121.869916842999942, 49.229437988000043 ], [ -121.869312049999976, 49.229677079000034 ], [ -121.869254593999941, 49.229699796000041 ], [ -121.868267700999965, 49.229827910000104 ], [ -121.867121002, 49.229821801000114 ], [ -121.866239788999934, 49.229888094000053 ], [ -121.865527898999957, 49.230075310000082 ], [ -121.864374317999989, 49.230423291000122 ], [ -121.863501992999943, 49.230729707000116 ], [ -121.862849297999986, 49.231146392 ], [ -121.862619102999943, 49.231493696000022 ], [ -121.862607130999933, 49.2315073050001 ], [ -121.860583720999983, 49.231429603000059 ], [ -121.860718401999947, 49.229919951000078 ], [ -121.861549898999954, 49.229568812000117 ], [ -121.862094694999968, 49.229141497000072 ], [ -121.862524587999971, 49.229001991000111 ], [ -121.863087691999965, 49.228972095000074 ], [ -121.863432604999957, 49.228858109000029 ], [ -121.864794492999977, 49.228845311000057 ], [ -121.866487104, 49.228673012000101 ], [ -121.867632290999936, 49.228449397000077 ], [ -121.867709815999959, 49.228422366000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311833", "BldgCostT": "3663333", "sL_LossRatio": "0.964072339738414", "sL_AssetLoss": "6193", "sL_BldgLoss": "5970.5", "sL_StrLoss": "5136.7", "sL_NStrLoss": "833.8", "sL_ContLoss": "222.5", "geom_point": "0101000020E6100000D65327770A745EC053C53B5DE9A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.805462229999961, 49.258846647000084 ], [ -121.805454832999914, 49.253941874000063 ], [ -121.809077444999943, 49.254082745000083 ], [ -121.808840616999944, 49.256703040000069 ], [ -121.809345745999948, 49.256722673000063 ], [ -121.809349651999966, 49.256679452000107 ], [ -121.809864981999951, 49.256699479000062 ], [ -121.8098662299999, 49.256685665000084 ], [ -121.810841459999963, 49.256723558000054 ], [ -121.810844989999964, 49.256684488000126 ], [ -121.811531271999968, 49.256711148000143 ], [ -121.811535963, 49.256659205000062 ], [ -121.817016129999942, 49.256871939000064 ], [ -121.816966054999924, 49.257427031000077 ], [ -121.819161639999962, 49.257512183000067 ], [ -121.81935751599994, 49.255339687000088 ], [ -121.82288001699996, 49.255476207000108 ], [ -121.822646998999971, 49.258665372000031 ], [ -121.820253757999978, 49.258690783000127 ], [ -121.805462229999961, 49.258846647000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.91254752851711", "sL_AssetLoss": "1578", "sL_BldgLoss": "1440", "sL_StrLoss": "1140", "sL_NStrLoss": "300", "sL_ContLoss": "138", "geom_point": "0101000020E61000002856574F777C5EC0490B9FC6A09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.942628222999943, 49.229620481000069 ], [ -121.943736957999974, 49.229662219000069 ], [ -121.943944696999949, 49.230450395000069 ], [ -121.944116788999935, 49.230703892000157 ], [ -121.944712795999962, 49.231095586000087 ], [ -121.945772004999952, 49.232293292000044 ], [ -121.947082388999917, 49.23332159100007 ], [ -121.94776656099999, 49.233553704000066 ], [ -121.947749059999964, 49.233754087000086 ], [ -121.94731772199998, 49.233626636000061 ], [ -121.946625069999968, 49.233280977000064 ], [ -121.946016632999971, 49.232917933000124 ], [ -121.945480156999949, 49.23250906100003 ], [ -121.945091097999963, 49.232185278000067 ], [ -121.943785917999918, 49.231033992000086 ], [ -121.94341851899999, 49.230526515000122 ], [ -121.943219889999938, 49.230313621000036 ], [ -121.942973139999978, 49.229890008000055 ], [ -121.942628222999943, 49.229620481000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.923826383070728", "sL_AssetLoss": "7400.2", "sL_BldgLoss": "6836.5", "sL_StrLoss": "5011.5", "sL_NStrLoss": "1825", "sL_ContLoss": "563.7", "geom_point": "0101000020E610000054CE723462755EC015E03F0640A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.828059718999924, 49.252027461000075 ], [ -121.828113773999959, 49.251426586000086 ], [ -121.83359339899998, 49.251638480000054 ], [ -121.83355308499992, 49.252087198000048 ], [ -121.835507548999914, 49.252162709000089 ], [ -121.835824913999929, 49.248628361000058 ], [ -121.838728176999965, 49.248740463000104 ], [ -121.838833449999981, 49.250001880000035 ], [ -121.838966536999948, 49.251596421000066 ], [ -121.839120004999941, 49.253434889000104 ], [ -121.839298205999967, 49.253669895000101 ], [ -121.826498906999973, 49.253534020000068 ], [ -121.826637102999882, 49.251998452000052 ], [ -121.827158246999929, 49.252018624000122 ], [ -121.827160581999948, 49.251992665000088 ], [ -121.828059718999924, 49.252027461000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.938042446825746", "sL_AssetLoss": "4320.7", "sL_BldgLoss": "4053", "sL_StrLoss": "3070", "sL_NStrLoss": "983", "sL_ContLoss": "267.7", "geom_point": "0101000020E6100000E0BEAB71B8765EC0ECAE60D9549E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.853042692999963, 49.238709481000058 ], [ -121.85336394700002, 49.235115541000035 ], [ -121.856352624999943, 49.235230488000084 ], [ -121.856367593999892, 49.235705703000065 ], [ -121.856197391999956, 49.23588519200004 ], [ -121.855771690999987, 49.235889493000045 ], [ -121.855645586, 49.235969202000071 ], [ -121.855758079999958, 49.236464800000128 ], [ -121.856015817999932, 49.236036095000081 ], [ -121.856166898999973, 49.236046095000042 ], [ -121.856310978999943, 49.236291097000034 ], [ -121.856596608999936, 49.236437783000078 ], [ -121.856762314999926, 49.236412103000077 ], [ -121.856834287999988, 49.236251205000045 ], [ -121.856839685999944, 49.236026205000023 ], [ -121.856615505, 49.235637396000115 ], [ -121.856583101999902, 49.235239349000103 ], [ -121.857457217999979, 49.235272951000098 ], [ -121.857404975999884, 49.235407904000063 ], [ -121.857348493999936, 49.235553817000017 ], [ -121.857060684999936, 49.236658646000095 ], [ -121.857051251999977, 49.236695045000026 ], [ -121.857009075999926, 49.236856848000066 ], [ -121.856936561999987, 49.237135255000055 ], [ -121.85688055199995, 49.237350224000117 ], [ -121.856790205999957, 49.237697101000045 ], [ -121.856201429999913, 49.238830966000108 ], [ -121.853042692999963, 49.238709481000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9623166", "BldgCostT": "6636666", "sL_LossRatio": "0.973350297742695", "sL_AssetLoss": "11553.6", "sL_BldgLoss": "11245.7", "sL_StrLoss": "9830", "sL_NStrLoss": "1415.7", "sL_ContLoss": "307.9", "geom_point": "0101000020E61000008DB05540E9665EC091AF2DD113AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.603178290999935, 49.336983777000121 ], [ -121.60319443499999, 49.336413398000083 ], [ -121.603201196999919, 49.336174460000059 ], [ -121.60350813, 49.336178170000025 ], [ -121.604026839999946, 49.336184437000043 ], [ -121.604034471999981, 49.33591466400005 ], [ -121.604447291999946, 49.335919651000033 ], [ -121.604454921999945, 49.335649878 ], [ -121.604867737999911, 49.335654862000084 ], [ -121.604875364999927, 49.335385090000081 ], [ -121.605288179999917, 49.335390073000084 ], [ -121.605303964999933, 49.334831476000076 ], [ -121.605311050999916, 49.334580754000058 ], [ -121.60563310799999, 49.334584641000042 ], [ -121.60580837, 49.334586756000085 ], [ -121.605822022000012, 49.334442968000076 ], [ -121.60584120499999, 49.334240923000046 ], [ -121.606020824999959, 49.33424823100016 ], [ -121.606057532999955, 49.333861607000053 ], [ -121.606551979999963, 49.333895535000089 ], [ -121.607433925999914, 49.3335863080001 ], [ -121.60895149599996, 49.333054206000064 ], [ -121.61099305299993, 49.332145148000031 ], [ -121.611949698999979, 49.332120092000132 ], [ -121.616025333999971, 49.332131389000054 ], [ -121.615921860999933, 49.333223767000071 ], [ -121.61718449199995, 49.333275012000065 ], [ -121.616978456999931, 49.335450631000114 ], [ -121.616862202999968, 49.335762092000031 ], [ -121.61621119099999, 49.336842007000016 ], [ -121.611566146999976, 49.336653384000087 ], [ -121.611524437999947, 49.337093223000053 ], [ -121.611261585999941, 49.337082544000104 ], [ -121.611209853999966, 49.337628029000072 ], [ -121.611030219999961, 49.337620730000062 ], [ -121.610988868999982, 49.338056733000023 ], [ -121.610627369, 49.338042044000169 ], [ -121.610576282, 49.338580641000078 ], [ -121.610412560999947, 49.338573988000064 ], [ -121.610312128999965, 49.339632745000088 ], [ -121.607221863999939, 49.339507119000061 ], [ -121.604823146999948, 49.339409545000095 ], [ -121.60507698399995, 49.33673684700009 ], [ -121.60483723199998, 49.336733953000127 ], [ -121.604829605999939, 49.337003726000077 ], [ -121.60441677599999, 49.336998740000048 ], [ -121.604401516999971, 49.337538285000051 ], [ -121.603988683999944, 49.337533300000061 ], [ -121.603981052999927, 49.337803072000028 ], [ -121.603568217999936, 49.337798083000095 ], [ -121.60356058399999, 49.338067856000038 ], [ -121.603147745999962, 49.338062867000126 ], [ -121.603140109999956, 49.338332639000065 ], [ -121.602727269999889, 49.338327649000092 ], [ -121.602711991999968, 49.338867193000084 ], [ -121.602299149999951, 49.338862201 ], [ -121.602291507999894, 49.339131972000139 ], [ -121.6018786599999, 49.339126979000071 ], [ -121.601871018999958, 49.339396751000031 ], [ -121.60104532099993, 49.339386758000103 ], [ -121.601022375999889, 49.34019607400009 ], [ -121.600609520999981, 49.340191076000089 ], [ -121.600601870999938, 49.34046084800012 ], [ -121.600189012999948, 49.340455848000069 ], [ -121.600181360999954, 49.3407256200001 ], [ -121.599768500999943, 49.340720617000073 ], [ -121.599760845999953, 49.340990390000108 ], [ -121.599582558999955, 49.340988229000104 ], [ -121.599380471999893, 49.343113195000065 ], [ -121.599304545999985, 49.34311010200004 ], [ -121.597250975999955, 49.341869332000044 ], [ -121.596739481000014, 49.341542149000119 ], [ -121.596380971999906, 49.341312823000067 ], [ -121.594866080999978, 49.340366308000064 ], [ -121.594455393999965, 49.3401097 ], [ -121.594518282999971, 49.340036001000072 ], [ -121.595118253999942, 49.339332957000032 ], [ -121.598985788000036, 49.33949060000004 ], [ -121.599389946999977, 49.339507066000074 ], [ -121.599393928999959, 49.339366756000047 ], [ -121.600533223999918, 49.339380558000109 ], [ -121.600632471999958, 49.339381761000077 ], [ -121.60063469, 49.339303608000066 ], [ -121.600655423999939, 49.33857244400005 ], [ -121.601068266000013, 49.338577442000073 ], [ -121.601083560999896, 49.338037899000035 ], [ -121.60149639699992, 49.33804289400004 ], [ -121.601504043999938, 49.337773123000048 ], [ -121.60191687799994, 49.337778119000113 ], [ -121.601924520999916, 49.337508346000078 ], [ -121.602337353999985, 49.337513340000086 ], [ -121.60234499499991, 49.337243567000023 ], [ -121.602757824999941, 49.337248559000038 ], [ -121.602765463999987, 49.336978787000071 ], [ -121.603178290999935, 49.336983777000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.965127789046653", "sL_AssetLoss": "6162.5", "sL_BldgLoss": "5947.6", "sL_StrLoss": "4948", "sL_NStrLoss": "999.6", "sL_ContLoss": "214.9", "geom_point": "0101000020E610000064888CDCCD665EC017F693B5F6AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.607653896999949, 49.340681841000077 ], [ -121.611055388999944, 49.34082009600008 ], [ -121.610846289999955, 49.343024571000036 ], [ -121.609934088999921, 49.343739092000128 ], [ -121.6092918209999, 49.344354905000039 ], [ -121.609117203999944, 49.344347809000055 ], [ -121.609098984, 49.34453979600007 ], [ -121.6090265, 49.344609292 ], [ -121.608221713999953, 49.345172826000045 ], [ -121.605629514999961, 49.346987800000065 ], [ -121.605566365999934, 49.347037297000078 ], [ -121.605523279999957, 49.347035543000068 ], [ -121.60389851299999, 49.345938476000121 ], [ -121.602823609999973, 49.345236074000098 ], [ -121.599721662999968, 49.343362110000086 ], [ -121.601127975999987, 49.343419383 ], [ -121.601143998999973, 49.343250837000056 ], [ -121.601485787999962, 49.343264753000049 ], [ -121.60151900299995, 49.342915345000087 ], [ -121.603194564999967, 49.342983555000103 ], [ -121.603231448999921, 49.342595384000049 ], [ -121.603770872999959, 49.342617338000089 ], [ -121.603800841999927, 49.342301897000077 ], [ -121.605398171999965, 49.342366889000104 ], [ -121.605566263999947, 49.340596935000107 ], [ -121.607653896999949, 49.340681841000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13517084", "BldgCostT": "9058334", "sL_LossRatio": "0.977048254208816", "sL_AssetLoss": "14727.42", "sL_BldgLoss": "14389.4", "sL_StrLoss": "13109", "sL_NStrLoss": "1280.4", "sL_ContLoss": "338.02", "geom_point": "0101000020E610000027F864CD61635EC0B93DB5B8CEAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.553199522999947, 49.379547209000073 ], [ -121.553207441999959, 49.379277444000095 ], [ -121.552381096999937, 49.379267098000078 ], [ -121.552389020999939, 49.378997334000125 ], [ -121.551975849999948, 49.378992159000113 ], [ -121.551983777999936, 49.378722395000047 ], [ -121.551570609999928, 49.378717218000098 ], [ -121.551610255999947, 49.377368396000115 ], [ -121.552023411999969, 49.377373572000103 ], [ -121.552024408999984, 49.377339676000062 ], [ -121.550182475999961, 49.377263877000097 ], [ -121.550253656999956, 49.376524295000117 ], [ -121.550253323999982, 49.376524281000066 ], [ -121.550312692999952, 49.375907417000057 ], [ -121.549743046999964, 49.37588396800011 ], [ -121.549831046999941, 49.374969704000058 ], [ -121.548527563999926, 49.374916039000034 ], [ -121.548561544999984, 49.374563088000109 ], [ -121.548497185999935, 49.374560439000042 ], [ -121.548675371999963, 49.372709612000094 ], [ -121.54664033899995, 49.372625794000079 ], [ -121.546674043999971, 49.372275842000143 ], [ -121.546332851999964, 49.372261785000028 ], [ -121.54660199599995, 49.369467328000056 ], [ -121.54667883099998, 49.36866951400004 ], [ -121.549310434999953, 49.368777905000115 ], [ -121.549414170999952, 49.367700076000084 ], [ -121.549435486, 49.367700953000032 ], [ -121.549494700999958, 49.367085676000094 ], [ -121.554986695999929, 49.367311675000096 ], [ -121.554972952999947, 49.367454645000095 ], [ -121.555505887999985, 49.367476561000103 ], [ -121.555489726999909, 49.367644712000072 ], [ -121.555918685999956, 49.367662350000046 ], [ -121.555891772999956, 49.367942385000049 ], [ -121.555694058999947, 49.369999611000019 ], [ -121.555882433999969, 49.370007356 ], [ -121.555672138999967, 49.372195370000057 ], [ -121.55701403399992, 49.372250531000148 ], [ -121.556668830999953, 49.375842817000041 ], [ -121.555837285999985, 49.375808637000034 ], [ -121.555675680999954, 49.377489836000088 ], [ -121.55326284099999, 49.377390621000153 ], [ -121.553239124999948, 49.378198386000086 ], [ -121.55365229100002, 49.378203557000056 ], [ -121.553644370999919, 49.378473321000037 ], [ -121.554057538999984, 49.378478490000127 ], [ -121.554049621999965, 49.378748255000041 ], [ -121.554099287999961, 49.378748877000078 ], [ -121.554224429999962, 49.377447519000036 ], [ -121.559717677999984, 49.37767327300007 ], [ -121.559467671999954, 49.38027622900011 ], [ -121.556434039999942, 49.380437189000091 ], [ -121.552760331999977, 49.380427714000113 ], [ -121.552761841999924, 49.380376324000061 ], [ -121.552786344999973, 49.379542037000085 ], [ -121.553199522999947, 49.379547209000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.992942560282297", "sL_AssetLoss": "1530.3", "sL_BldgLoss": "1519.5", "sL_StrLoss": "1454", "sL_NStrLoss": "65.5", "sL_ContLoss": "10.8", "geom_point": "0101000020E61000000CE47E2CE9635EC0833CB30B23AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.559745852999981, 49.366384505000042 ], [ -121.564008319999942, 49.36655952900005 ], [ -121.564003038, 49.366614602000013 ], [ -121.563663701999971, 49.370151868000072 ], [ -121.558171328999904, 49.369926311000015 ], [ -121.558401341999911, 49.367531652000139 ], [ -121.558492615999967, 49.366581345000021 ], [ -121.559745852999981, 49.366384505000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993361782835467", "sL_AssetLoss": "379.62", "sL_BldgLoss": "377.1", "sL_StrLoss": "355", "sL_NStrLoss": "22.1", "sL_ContLoss": "2.52", "geom_point": "0101000020E610000037408245F2625EC077080C27A3B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.543128942999928, 49.38040219100008 ], [ -121.543225475999989, 49.379400862000054 ], [ -121.548718900999958, 49.379627175000088 ], [ -121.548677911999945, 49.380052884000122 ], [ -121.549452101999918, 49.380084755000055 ], [ -121.549436681999936, 49.380244945000086 ], [ -121.549859398999928, 49.380262344000052 ], [ -121.549844214999965, 49.38042007800005 ], [ -121.543128942999928, 49.38040219100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.990355820698437", "sL_AssetLoss": "424.09", "sL_BldgLoss": "420", "sL_StrLoss": "389", "sL_NStrLoss": "31", "sL_ContLoss": "4.09", "geom_point": "0101000020E610000060C56F2B79615EC0FCC22B499EB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.520397616999972, 49.379416619000104 ], [ -121.525890931999982, 49.379644089000088 ], [ -121.525822218999963, 49.380354079000043 ], [ -121.52542516699998, 49.380352937000076 ], [ -121.518217843999977, 49.379649884000038 ], [ -121.518225397999984, 49.379571968000064 ], [ -121.52037393699996, 49.379661012000085 ], [ -121.520397616999972, 49.379416619000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.979682444126721", "sL_AssetLoss": "2657.8", "sL_BldgLoss": "2603.8", "sL_StrLoss": "2284", "sL_NStrLoss": "319.8", "sL_ContLoss": "54", "geom_point": "0101000020E610000094D343D9C0625EC04A47F77B7BAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.540384809999935, 49.372654025 ], [ -121.540490193999943, 49.371561372000023 ], [ -121.539796606000024, 49.371552611000027 ], [ -121.539804597999989, 49.371282848000135 ], [ -121.539391493999915, 49.371277628 ], [ -121.539399487999972, 49.371007866000099 ], [ -121.538986386999952, 49.371002645000033 ], [ -121.53899476199993, 49.370720050000045 ], [ -121.539010375999936, 49.370193355000083 ], [ -121.540620167000014, 49.370213692000029 ], [ -121.540731252999976, 49.369061774000087 ], [ -121.546223439999949, 49.36928821500009 ], [ -121.546199807999926, 49.369533574000087 ], [ -121.545877420999929, 49.372880483000131 ], [ -121.540384809999935, 49.372654025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.964143796621198", "sL_AssetLoss": "4303.3", "sL_BldgLoss": "4149", "sL_StrLoss": "3499", "sL_NStrLoss": "650", "sL_ContLoss": "154.3", "geom_point": "0101000020E610000009E1B0B8E8615EC0DBFF5B24C8AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.52804064799993, 49.371385379000095 ], [ -121.53353304699999, 49.371612464000073 ], [ -121.533532395999941, 49.371619199000094 ], [ -121.533186025999967, 49.375204678000017 ], [ -121.531624161999957, 49.375140131000087 ], [ -121.531617861999962, 49.37520531500013 ], [ -121.526125045999919, 49.374978134000088 ], [ -121.526335474999897, 49.372803373000117 ], [ -121.526472613999942, 49.37138594100005 ], [ -121.528034342999902, 49.371450563000053 ], [ -121.52804064799993, 49.371385379000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283334", "BldgCostT": "4333334", "sL_LossRatio": "0.983150093155621", "sL_AssetLoss": "5372.73", "sL_BldgLoss": "5282.2", "sL_StrLoss": "4754", "sL_NStrLoss": "528.2", "sL_ContLoss": "90.53", "geom_point": "0101000020E6100000601B759DDB605EC0F5B468A620B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.517740400999926, 49.373133770000052 ], [ -121.520790813999966, 49.373260211000037 ], [ -121.520746357999926, 49.373719101000063 ], [ -121.520442792000011, 49.376852376000038 ], [ -121.519513760999956, 49.376813876 ], [ -121.519464478, 49.377322398000075 ], [ -121.516141510999958, 49.377184627000119 ], [ -121.516113447999984, 49.377473977000115 ], [ -121.515549865999915, 49.377450601000142 ], [ -121.515539129999979, 49.377561291000099 ], [ -121.511997180999984, 49.377414309000109 ], [ -121.51193530799999, 49.378051675000037 ], [ -121.511212065999985, 49.378021648000114 ], [ -121.511199982999969, 49.378146092000058 ], [ -121.510935057999959, 49.378135092000036 ], [ -121.510857732999952, 49.378931409000046 ], [ -121.505678087, 49.378425472000067 ], [ -121.50556054599997, 49.376687411000063 ], [ -121.505640853999964, 49.37586129900005 ], [ -121.505673827999942, 49.375522105000066 ], [ -121.509180812999915, 49.375216995000038 ], [ -121.512875891999968, 49.374194395000131 ], [ -121.517327805999955, 49.373244491000058 ], [ -121.517740400999926, 49.373133770000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9889000", "BldgCostT": "6820000", "sL_LossRatio": "0.985291447248956", "sL_AssetLoss": "4956.3", "sL_BldgLoss": "4883.4", "sL_StrLoss": "4062.4", "sL_NStrLoss": "821", "sL_ContLoss": "72.9", "geom_point": "0101000020E6100000F9BD0B63645B5EC0BDC5605153BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.43015903299991, 49.468289012000056 ], [ -121.432027225999946, 49.468207407000058 ], [ -121.431578381999941, 49.473154225000016 ], [ -121.431373508999982, 49.473145585000118 ], [ -121.431323259999957, 49.473652926000071 ], [ -121.427605576999923, 49.473548866000016 ], [ -121.427285360999988, 49.473538011000059 ], [ -121.427024150999955, 49.473533157000055 ], [ -121.423131750999971, 49.473474871000093 ], [ -121.423310951999952, 49.47166876400005 ], [ -121.423436359999968, 49.470404717000157 ], [ -121.423462873999938, 49.470137475000058 ], [ -121.426115708999973, 49.470249509000027 ], [ -121.426139669999955, 49.470007838000086 ], [ -121.426430922999927, 49.470020134000052 ], [ -121.42649899299991, 49.469333544000094 ], [ -121.428440200999958, 49.469415479000119 ], [ -121.428549122999954, 49.468316329000118 ], [ -121.43015903299991, 49.468289012000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59005993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.962163352976813", "sL_AssetLoss": "18.157", "sL_BldgLoss": "17.47", "sL_StrLoss": "1.57", "sL_NStrLoss": "15.9", "sL_ContLoss": "0.687", "geom_point": "0101000020E6100000622F14B0DD5A5EC0272AE12A4BBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.420054998999944, 49.469212188000036 ], [ -121.420257836999909, 49.469220763000081 ], [ -121.420126622999973, 49.470542434000038 ], [ -121.419901275999933, 49.472812092 ], [ -121.419128024999921, 49.472779401000061 ], [ -121.419478485999946, 49.472060948000077 ], [ -121.419485577999964, 49.47032001600008 ], [ -121.419807704999954, 49.469201732000087 ], [ -121.420054998999944, 49.469212188000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144495449", "BldgCostT": "97342212", "sL_LossRatio": "0.909134179362045", "sL_AssetLoss": "44603.372", "sL_BldgLoss": "40550.45", "sL_StrLoss": "35866.05", "sL_NStrLoss": "4684.4", "sL_ContLoss": "4052.922", "geom_point": "0101000020E6100000C41782563F5B5EC0CF090C1FB2AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.411883802, 49.373133008000089 ], [ -121.410907189999975, 49.372607585000011 ], [ -121.410864029999971, 49.372584356000068 ], [ -121.409230699999924, 49.371705604000091 ], [ -121.40849747099999, 49.371414483000066 ], [ -121.408418589999897, 49.371383173000012 ], [ -121.407844563999959, 49.371155264000066 ], [ -121.407713566999945, 49.371109496000024 ], [ -121.404675953999941, 49.370048524000012 ], [ -121.40383514199999, 49.369630416000092 ], [ -121.402885552999976, 49.369129170000122 ], [ -121.402116494999987, 49.368723211000045 ], [ -121.401939509999977, 49.368635168000026 ], [ -121.402020205999946, 49.367823677000047 ], [ -121.407537169, 49.367799288000086 ], [ -121.40727640399993, 49.370424644000067 ], [ -121.41198789699996, 49.370624742000082 ], [ -121.411891498, 49.371596207000039 ], [ -121.411867454999978, 49.371838478000036 ], [ -121.41176878399996, 49.372832781000035 ], [ -121.412470133999946, 49.372842416000104 ], [ -121.412466766999955, 49.372946944000084 ], [ -121.412774371999973, 49.37295999800007 ], [ -121.412860883999926, 49.372088052 ], [ -121.412877571999942, 49.371919845000086 ], [ -121.413380114999939, 49.371941172000028 ], [ -121.41674151699999, 49.372083756000059 ], [ -121.418081103999967, 49.372140551000044 ], [ -121.418369462999976, 49.372152773000082 ], [ -121.418333640999904, 49.372514269000106 ], [ -121.419475048999942, 49.372562645000137 ], [ -121.41946996199999, 49.37261398800009 ], [ -121.420453682999934, 49.372655671000068 ], [ -121.420551797999963, 49.371665097000054 ], [ -121.420552468999929, 49.371658326000102 ], [ -121.42058075199995, 49.371659525000062 ], [ -121.425039115999979, 49.371848322000055 ], [ -121.42508851599996, 49.37134907799999 ], [ -121.425110506999914, 49.371126826000115 ], [ -121.425111910999973, 49.371112634000099 ], [ -121.43060376699999, 49.371344941000146 ], [ -121.430547454999953, 49.37191473900009 ], [ -121.430477222999968, 49.372625365000061 ], [ -121.430660904999954, 49.372633130000111 ], [ -121.43068069499995, 49.372011644000096 ], [ -121.431045051999916, 49.372016592000094 ], [ -121.431919962999956, 49.372028465000014 ], [ -121.431914677999927, 49.372194588000106 ], [ -121.43191138, 49.372298214000118 ], [ -121.43245715499998, 49.372305618000048 ], [ -121.433150657999988, 49.372315021000183 ], [ -121.433146471000029, 49.372446698 ], [ -121.433142081999947, 49.372584771000049 ], [ -121.433869360999935, 49.372594628000101 ], [ -121.434794460999925, 49.372607160000044 ], [ -121.434788882999896, 49.372782810000054 ], [ -121.434788192999932, 49.372804483000046 ], [ -121.434922510999982, 49.372810156000071 ], [ -121.435773151999939, 49.372846078000045 ], [ -121.435808393999935, 49.372489091000062 ], [ -121.436978720999932, 49.372538503000037 ], [ -121.437071990999954, 49.371593419000078 ], [ -121.437790397999919, 49.371623744000104 ], [ -121.437845486999919, 49.371065435000069 ], [ -121.438227489, 49.371081558000142 ], [ -121.438274294999985, 49.370607145000101 ], [ -121.439833313999912, 49.370672930000083 ], [ -121.43992257399999, 49.369767881000072 ], [ -121.445414344999946, 49.369999437000075 ], [ -121.445320526, 49.370951871000045 ], [ -121.444939068999957, 49.371179318000024 ], [ -121.444801411999947, 49.371244999000105 ], [ -121.444330038999937, 49.371469863000101 ], [ -121.442556302999947, 49.372315983000128 ], [ -121.442280457999985, 49.372495716000081 ], [ -121.442168900999945, 49.372568411000039 ], [ -121.44192439899993, 49.372810579000046 ], [ -121.441730675000017, 49.373097274000045 ], [ -121.441701288999937, 49.373203034 ], [ -121.441683621999928, 49.373266614000045 ], [ -121.441634867999937, 49.373439479000091 ], [ -121.441258590999979, 49.373424524000058 ], [ -121.440891559999926, 49.373469456000066 ], [ -121.440551824999957, 49.373558809000016 ], [ -121.440075958999955, 49.373862563000039 ], [ -121.439894881999948, 49.373978115000064 ], [ -121.439629985999971, 49.374147167000082 ], [ -121.439524787999986, 49.374214319000039 ], [ -121.438585876999952, 49.374619243000069 ], [ -121.437652486, 49.374898180000052 ], [ -121.436361459999944, 49.375084413000074 ], [ -121.434947856999941, 49.375185252000051 ], [ -121.433946698999975, 49.37528449400012 ], [ -121.433074899999923, 49.37537213300007 ], [ -121.430389847999933, 49.375613939000033 ], [ -121.429374850999977, 49.375629651000054 ], [ -121.428969345999946, 49.375617016 ], [ -121.42575299399995, 49.375375456 ], [ -121.423661215999942, 49.375209403000049 ], [ -121.422579562999928, 49.375120471000045 ], [ -121.420882488999936, 49.374980890000046 ], [ -121.417787493000034, 49.374726286000083 ], [ -121.41717149399993, 49.3746756150001 ], [ -121.415572817999958, 49.374515898000055 ], [ -121.414971187999981, 49.37441674500009 ], [ -121.414946003999916, 49.374412584000041 ], [ -121.414304445000013, 49.374245143000067 ], [ -121.41421620899996, 49.374222103000058 ], [ -121.413608199999885, 49.373998791000091 ], [ -121.411883802, 49.373133008000089 ] ], [ [ -121.431478437999928, 49.372916371000088 ], [ -121.431481119999944, 49.372832109000065 ], [ -121.431108502999976, 49.37282705100008 ], [ -121.430984062999968, 49.3728253620001 ], [ -121.430962513999987, 49.373043409000026 ], [ -121.431473705999963, 49.373065016000126 ], [ -121.431478437999928, 49.372916371000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.993724787090991", "sL_AssetLoss": "669.3", "sL_BldgLoss": "665.1", "sL_StrLoss": "632", "sL_NStrLoss": "33.1", "sL_ContLoss": "4.2", "geom_point": "0101000020E610000071736C35925C5EC02A11139A45AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.445914994999953, 49.368532420000058 ], [ -121.447621853999962, 49.368604326000131 ], [ -121.446468989999971, 49.369993992000126 ], [ -121.445700702999929, 49.370708112000031 ], [ -121.445914994999953, 49.368532420000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46869667", "BldgCostT": "29586667", "sL_LossRatio": "0.987830127986506", "sL_AssetLoss": "24717.762", "sL_BldgLoss": "24416.95", "sL_StrLoss": "22929.71", "sL_NStrLoss": "1487.24", "sL_ContLoss": "300.812", "geom_point": "0101000020E61000002F491AB3975D5EC05FC8C08DD6AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.455470380999927, 49.360107041000063 ], [ -121.45551619299998, 49.359640822000053 ], [ -121.457926942999961, 49.359742180000076 ], [ -121.457928427999974, 49.359694692000112 ], [ -121.45834141899999, 49.359700202000063 ], [ -121.458349852999945, 49.359430447000122 ], [ -121.459175830999953, 49.359441463000039 ], [ -121.459184261999951, 49.359171708000098 ], [ -121.45959724899997, 49.359177213000088 ], [ -121.459605675999967, 49.358907460000125 ], [ -121.460431646999936, 49.358918466000063 ], [ -121.460446633999979, 49.358438425000067 ], [ -121.460424929999959, 49.358416361000153 ], [ -121.460447634999937, 49.35840640200005 ], [ -121.46044849299993, 49.358378958000038 ], [ -121.460508383999965, 49.358379755000065 ], [ -121.460866522999964, 49.358222661000113 ], [ -121.460869893999984, 49.358114704000116 ], [ -121.461105481999951, 49.35811784000007 ], [ -121.461285408999956, 49.358038917000052 ], [ -121.461291288999917, 49.3578504480001 ], [ -121.461704265999956, 49.357855946000093 ], [ -121.46172109599992, 49.357316437000129 ], [ -121.462960013999989, 49.35733292200014 ], [ -121.46297683, 49.356793412000101 ], [ -121.461737925999927, 49.356776929000034 ], [ -121.461771583999948, 49.35569791100005 ], [ -121.46218454299995, 49.355703407000128 ], [ -121.462192955999953, 49.35543365300002 ], [ -121.463844783999917, 49.35545562 ], [ -121.463827975999934, 49.355995130000061 ], [ -121.46424093899999, 49.356000618000053 ], [ -121.464224136999988, 49.356540127000052 ], [ -121.465050068999943, 49.356551100000118 ], [ -121.465058465999959, 49.35628134500012 ], [ -121.465471429999951, 49.356286829000041 ], [ -121.465479823999971, 49.356017074000086 ], [ -121.46677811699999, 49.356034306000012 ], [ -121.466858329999965, 49.356008261000092 ], [ -121.467136458999988, 49.35588505500003 ], [ -121.467140059999906, 49.355769241000083 ], [ -121.467390404999961, 49.355772560000048 ], [ -121.467555357999984, 49.355699487000109 ], [ -121.46756140199993, 49.355504962000055 ], [ -121.467948485999955, 49.35551009400011 ], [ -121.467986388999961, 49.355123253000087 ], [ -121.468016260999917, 49.354161661000035 ], [ -121.468290887999927, 49.354165301000066 ], [ -121.468301428999965, 49.354057712000014 ], [ -121.466632008999937, 49.353987681000028 ], [ -121.466984031999957, 49.35039556800006 ], [ -121.467163363999958, 49.350403093000047 ], [ -121.467190489999908, 49.350126250000095 ], [ -121.470259192999933, 49.350130555000113 ], [ -121.470227692999956, 49.35025580500011 ], [ -121.470150109999977, 49.350556399000055 ], [ -121.470042400999915, 49.350670900000082 ], [ -121.469636333999986, 49.350970654000072 ], [ -121.469303695999955, 49.351074059000013 ], [ -121.469260178999946, 49.351145448000032 ], [ -121.469241420999978, 49.351307106000021 ], [ -121.469248738999951, 49.351514096000052 ], [ -121.469300835999945, 49.351896501000112 ], [ -121.469325939, 49.351977646000115 ], [ -121.469299801999938, 49.352160090000041 ], [ -121.469305468999906, 49.352629637000099 ], [ -121.469330507999942, 49.354703292000124 ], [ -121.469330593999928, 49.355926007000058 ], [ -121.469309677999931, 49.356491389000041 ], [ -121.469146107999947, 49.356994006000043 ], [ -121.468938986999959, 49.357349587000115 ], [ -121.466931737999957, 49.359676351000068 ], [ -121.465969052999966, 49.360792216000107 ], [ -121.464594902999977, 49.360369395000077 ], [ -121.463797406999959, 49.360139299000124 ], [ -121.463188773999931, 49.36002089900007 ], [ -121.462611988999981, 49.359956992000079 ], [ -121.462004938999925, 49.359939250000039 ], [ -121.461835518, 49.359934301000045 ], [ -121.46097778699999, 49.359980303000043 ], [ -121.460025796999957, 49.360116214000094 ], [ -121.459727220999966, 49.360193277000064 ], [ -121.459202692999966, 49.360328708000097 ], [ -121.459049859999965, 49.360387944000109 ], [ -121.45862703200001, 49.360551855000026 ], [ -121.458199712999928, 49.360717495000074 ], [ -121.457789101999964, 49.360941008000033 ], [ -121.454066203999957, 49.363436383000121 ], [ -121.453437156999939, 49.363823374000084 ], [ -121.450452296999927, 49.365659489000087 ], [ -121.450393459999958, 49.365703009000065 ], [ -121.450661306999962, 49.362980417000074 ], [ -121.451259088999933, 49.363005580000092 ], [ -121.451304004999898, 49.362548930000173 ], [ -121.452059057999961, 49.362580709000106 ], [ -121.452090286999947, 49.362263148000046 ], [ -121.45237099399999, 49.362274961000018 ], [ -121.452428205999951, 49.361693155000118 ], [ -121.452802444999975, 49.361708902000089 ], [ -121.452830903999896, 49.361419464000029 ], [ -121.454585976999951, 49.361493300000092 ], [ -121.454725299999978, 49.360075705000092 ], [ -121.455470380999927, 49.360107041000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127170925", "BldgCostT": "83120126", "sL_LossRatio": "0.98607707722191", "sL_AssetLoss": "71256.59", "sL_BldgLoss": "70264.49", "sL_StrLoss": "64224.89", "sL_NStrLoss": "6039.6", "sL_ContLoss": "992.1", "geom_point": "0101000020E6100000548259FC815D5EC0EF3A7E1C8BAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.452952297999929, 49.366814546000079 ], [ -121.452965112, 49.366684235000058 ], [ -121.450307921999922, 49.366572410000032 ], [ -121.450393459999958, 49.365703009000065 ], [ -121.450452296999927, 49.365659489000087 ], [ -121.453437156999939, 49.363823374000084 ], [ -121.454066203999957, 49.363436383000121 ], [ -121.457789101999964, 49.360941008000033 ], [ -121.458199712999928, 49.360717495000074 ], [ -121.45862703200001, 49.360551855000026 ], [ -121.459049859999965, 49.360387944000109 ], [ -121.459202692999966, 49.360328708000097 ], [ -121.459727220999966, 49.360193277000064 ], [ -121.460025796999957, 49.360116214000094 ], [ -121.46097778699999, 49.359980303000043 ], [ -121.461835518, 49.359934301000045 ], [ -121.462004938999925, 49.359939250000039 ], [ -121.462611988999981, 49.359956992000079 ], [ -121.463188773999931, 49.36002089900007 ], [ -121.463797406999959, 49.360139299000124 ], [ -121.464594902999977, 49.360369395000077 ], [ -121.465969052999966, 49.360792216000107 ], [ -121.467166621999951, 49.361159866000051 ], [ -121.470758261999919, 49.362268916000048 ], [ -121.471195864999984, 49.362404038000093 ], [ -121.47049738699998, 49.363233695000055 ], [ -121.468470504999956, 49.364958980000026 ], [ -121.468649772, 49.364948201000111 ], [ -121.473090669999976, 49.364681364000035 ], [ -121.47351339199993, 49.365083719000026 ], [ -121.469437346999953, 49.365276698000059 ], [ -121.468586013999968, 49.365334082000047 ], [ -121.468020213999964, 49.365372255000082 ], [ -121.468016304999978, 49.365372502000113 ], [ -121.467107862999967, 49.365433744000043 ], [ -121.463147345999971, 49.365700677000092 ], [ -121.457778142000038, 49.366062328000048 ], [ -121.457033354999979, 49.366164463000054 ], [ -121.456599891999957, 49.366248558000123 ], [ -121.455895063999961, 49.366385308000069 ], [ -121.455505404999883, 49.366535002000091 ], [ -121.454710290999913, 49.36684045100008 ], [ -121.453858076999921, 49.367278018000036 ], [ -121.452302604999886, 49.368354645000132 ], [ -121.452335858999959, 49.368016514000118 ], [ -121.452456120999926, 49.36679367000005 ], [ -121.452952297999929, 49.366814546000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18331083", "BldgCostT": "12378333", "sL_LossRatio": "0.991320035924369", "sL_AssetLoss": "11373.895", "sL_BldgLoss": "11275.17", "sL_StrLoss": "10670.68", "sL_NStrLoss": "604.49", "sL_ContLoss": "98.725", "geom_point": "0101000020E61000004F12E02E9A5C5EC090E40BBD72AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.444939068999957, 49.371179318000024 ], [ -121.445320526, 49.370951871000045 ], [ -121.44530299899999, 49.371129794000112 ], [ -121.445658695999953, 49.371134578000067 ], [ -121.445700702999929, 49.370708112000031 ], [ -121.446468989999971, 49.369993992000126 ], [ -121.447621853999962, 49.368604326000131 ], [ -121.45128681499996, 49.368758630000087 ], [ -121.451406649999925, 49.368763672000092 ], [ -121.451384368, 49.368990180000019 ], [ -121.449467451999951, 49.370316850000073 ], [ -121.448857172999951, 49.370732106000034 ], [ -121.448107529000012, 49.371176641000076 ], [ -121.447014664, 49.371746492000057 ], [ -121.446264839999969, 49.372066576000037 ], [ -121.444763369999961, 49.372584898000071 ], [ -121.443966199999963, 49.372783545000061 ], [ -121.443017751999918, 49.373019884000058 ], [ -121.442148435999954, 49.373195144000128 ], [ -121.441697254999951, 49.373264510000098 ], [ -121.441683621999928, 49.373266614000045 ], [ -121.441701288999937, 49.373203034 ], [ -121.441730675000017, 49.373097274000045 ], [ -121.44192439899993, 49.372810579000046 ], [ -121.442168900999945, 49.372568411000039 ], [ -121.442280457999985, 49.372495716000081 ], [ -121.442556302999947, 49.372315983000128 ], [ -121.444330038999937, 49.371469863000101 ], [ -121.444801411999947, 49.371244999000105 ], [ -121.444939068999957, 49.371179318000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18187494", "BldgCostT": "11094076", "sL_LossRatio": "0.855952302550005", "sL_AssetLoss": "12299.19", "sL_BldgLoss": "10527.52", "sL_StrLoss": "9061.92", "sL_NStrLoss": "1465.6", "sL_ContLoss": "1771.67", "geom_point": "0101000020E6100000E76AD8ADAD5C5EC01F5D32AF1FB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.445713031999972, 49.409692377000077 ], [ -121.445723593000011, 49.409585263000032 ], [ -121.445522554999982, 49.409576799000106 ], [ -121.444100783999886, 49.409516935000099 ], [ -121.44411164899999, 49.409406770000075 ], [ -121.444454979999989, 49.405925192000055 ], [ -121.445014334999939, 49.405948746000014 ], [ -121.445043069999926, 49.40565730400008 ], [ -121.445536053999945, 49.40567806200005 ], [ -121.445559560999953, 49.40543961500007 ], [ -121.44574290099996, 49.405447335000133 ], [ -121.445796980999944, 49.404898720000091 ], [ -121.451292951, 49.40512996700005 ], [ -121.451259416999974, 49.405470565000044 ], [ -121.452105645999922, 49.405506145000068 ], [ -121.452092002999962, 49.40564473500006 ], [ -121.451840515, 49.40819934500005 ], [ -121.451752047999946, 49.409097916000036 ], [ -121.45129277700002, 49.409078606000016 ], [ -121.451241808999939, 49.409596236000048 ], [ -121.450971893999906, 49.409516198000084 ], [ -121.450197189999969, 49.409173011000057 ], [ -121.44959439199998, 49.409057697000073 ], [ -121.448984808, 49.409103194000075 ], [ -121.447866809999965, 49.408755696000085 ], [ -121.446795785999925, 49.40903770200002 ], [ -121.446348584999953, 49.409670097000024 ], [ -121.446286264999927, 49.409716508000038 ], [ -121.445713031999972, 49.409692377000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11121417", "BldgCostT": "6701667", "sL_LossRatio": "0.966262266359173", "sL_AssetLoss": "2752.141", "sL_BldgLoss": "2659.29", "sL_StrLoss": "2174.19", "sL_NStrLoss": "485.1", "sL_ContLoss": "92.851", "geom_point": "0101000020E610000053EA0E39285D5EC0776AAAFE73B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.452990778999947, 49.403637889000059 ], [ -121.453234446999986, 49.401161833000074 ], [ -121.451755694999918, 49.401099662000085 ], [ -121.451784593999946, 49.400806078000095 ], [ -121.449935650999976, 49.400728314000055 ], [ -121.449967311999927, 49.400406808000078 ], [ -121.452199283999974, 49.400414214000072 ], [ -121.453403083999916, 49.400426868000082 ], [ -121.455708955999953, 49.40042189100005 ], [ -121.457310943999957, 49.400452896000068 ], [ -121.458819510999945, 49.400482068000088 ], [ -121.458486634999957, 49.403868772000116 ], [ -121.454801353999983, 49.403713983000081 ], [ -121.453114795999909, 49.403643102000032 ], [ -121.452990778999947, 49.403637889000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5814333", "BldgCostT": "3513333", "sL_LossRatio": "0.948184715135663", "sL_AssetLoss": "2171.56", "sL_BldgLoss": "2059.04", "sL_StrLoss": "1525.74", "sL_NStrLoss": "533.3", "sL_ContLoss": "112.52", "geom_point": "0101000020E6100000C385D957205D5EC09E47DE9C3EAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.453739801999944, 49.368550801000019 ], [ -121.45469378599995, 49.368241887000117 ], [ -121.455803784999901, 49.367945 ], [ -121.457027215999943, 49.367770986000039 ], [ -121.457995011999969, 49.36774230000006 ], [ -121.458372855999983, 49.367767600000057 ], [ -121.458285787999969, 49.368654080000098 ], [ -121.457973791999947, 49.368627212000014 ], [ -121.457594892999936, 49.368846498000018 ], [ -121.456772896999894, 49.369555791000032 ], [ -121.455017113999972, 49.370206605000078 ], [ -121.453598684000013, 49.370448576000051 ], [ -121.452102847, 49.370385648000067 ], [ -121.452237096999966, 49.369020706000057 ], [ -121.452612828999946, 49.368964299000098 ], [ -121.452791920999957, 49.368937408000107 ], [ -121.453739801999944, 49.368550801000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20421750", "BldgCostT": "12720000", "sL_LossRatio": "0.678393038647716", "sL_AssetLoss": "29810.3", "sL_BldgLoss": "20223.1", "sL_StrLoss": "13063.1", "sL_NStrLoss": "7160", "sL_ContLoss": "9587.2", "geom_point": "0101000020E61000000B2C1DFF875C5EC0C0DD823A9FB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.447901191999989, 49.385412994000028 ], [ -121.447779406999928, 49.384311395000069 ], [ -121.447629694999961, 49.384361906 ], [ -121.44711930199999, 49.383775112000059 ], [ -121.445888574999941, 49.384214697000068 ], [ -121.445060292000022, 49.383285298000075 ], [ -121.444321525999968, 49.382484093000059 ], [ -121.443677905999891, 49.38173839500007 ], [ -121.44301180799999, 49.380984409000064 ], [ -121.442325005, 49.380229609000061 ], [ -121.44165259, 49.379482595000127 ], [ -121.441029613999945, 49.378710615000081 ], [ -121.440385890999949, 49.377995488000067 ], [ -121.441614075999937, 49.377537805000067 ], [ -121.44248400099994, 49.377218292000038 ], [ -121.442865639, 49.377081078000074 ], [ -121.442416328999954, 49.376421933000117 ], [ -121.442197495999935, 49.37599792000006 ], [ -121.44202019, 49.375656811000084 ], [ -121.441778624, 49.374637196000123 ], [ -121.441718749999964, 49.374384556000116 ], [ -121.44166511499995, 49.374158109000085 ], [ -121.44165507299999, 49.374115719000031 ], [ -121.441578544999942, 49.373731071000044 ], [ -121.441634867999937, 49.373439479000091 ], [ -121.441683621999928, 49.373266614000045 ], [ -121.441697254999951, 49.373264510000098 ], [ -121.442148435999954, 49.373195144000128 ], [ -121.443017751999918, 49.373019884000058 ], [ -121.443966199999963, 49.372783545000061 ], [ -121.444763369999961, 49.372584898000071 ], [ -121.446264839999969, 49.372066576000037 ], [ -121.447014664, 49.371746492000057 ], [ -121.448107529000012, 49.371176641000076 ], [ -121.448857172999951, 49.370732106000034 ], [ -121.449467451999951, 49.370316850000073 ], [ -121.451384368, 49.368990180000019 ], [ -121.451255020999938, 49.3703050290001 ], [ -121.450666202999955, 49.370156789000134 ], [ -121.45022060699999, 49.370330506000087 ], [ -121.448777389999918, 49.371498392000042 ], [ -121.447640641999953, 49.372211964000023 ], [ -121.447618388999899, 49.372211028000059 ], [ -121.44761791, 49.372226235000028 ], [ -121.447595856999982, 49.372240077000058 ], [ -121.447204369999923, 49.372234817000056 ], [ -121.447196302999927, 49.372490882000086 ], [ -121.447174944999972, 49.372504289000098 ], [ -121.44678277499996, 49.372499019000095 ], [ -121.446777068999921, 49.372680072000051 ], [ -121.446561981999963, 49.372764502000059 ], [ -121.446559855999936, 49.372765889000057 ], [ -121.446361176000011, 49.37276321900007 ], [ -121.446356915999928, 49.372898333000073 ], [ -121.44615469099989, 49.373030308000061 ], [ -121.445526469999947, 49.37302186200003 ], [ -121.445517959999904, 49.373291613000099 ], [ -121.44519782499998, 49.373287307000048 ], [ -121.445182739999922, 49.373440435000084 ], [ -121.444019806999975, 49.373828386000106 ], [ -121.443558995999936, 49.374081899000039 ], [ -121.442865711999943, 49.374613101000079 ], [ -121.442520478999953, 49.375067497000032 ], [ -121.442576098999893, 49.375976109000064 ], [ -121.442910596999965, 49.376682502000051 ], [ -121.443729257, 49.377585293000031 ], [ -121.44372925499999, 49.377585397000047 ], [ -121.443729351999934, 49.377585398000079 ], [ -121.444455286999954, 49.378385900000048 ], [ -121.445022584999919, 49.379149291000068 ], [ -121.445314551999971, 49.379396606000036 ], [ -121.446339017999989, 49.38026440200013 ], [ -121.446898507999947, 49.380450994000107 ], [ -121.447561490999931, 49.38081130299999 ], [ -121.448072098999944, 49.38119579600005 ], [ -121.44812830599993, 49.38126025100015 ], [ -121.448106966999958, 49.381476968000051 ], [ -121.448325315999938, 49.381486161000126 ], [ -121.448524182999975, 49.381714199000093 ], [ -121.449034913999967, 49.382575908000057 ], [ -121.449850911999974, 49.384692307000087 ], [ -121.450260106000016, 49.386109386000101 ], [ -121.450293968999972, 49.38655135000009 ], [ -121.45032920199999, 49.387010885000066 ], [ -121.450155818, 49.388123197000027 ], [ -121.449724467999928, 49.389236506000046 ], [ -121.449709968999954, 49.38925360800004 ], [ -121.449571598999952, 49.389332611000086 ], [ -121.449411383999987, 49.389208693000164 ], [ -121.44881927699997, 49.389044899000048 ], [ -121.449654616999965, 49.387005300000126 ], [ -121.449785288999948, 49.386559899000133 ], [ -121.449384404999989, 49.386527694000108 ], [ -121.448957990999929, 49.38641781100003 ], [ -121.448787970999945, 49.386341814000062 ], [ -121.448617192999933, 49.386265517000012 ], [ -121.448373993999908, 49.386116398000077 ], [ -121.448162195999942, 49.385914508000049 ], [ -121.448004798999989, 49.385692409000043 ], [ -121.447901191999989, 49.385412994000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512083", "BldgCostT": "2158333", "sL_LossRatio": "0.970874663976672", "sL_AssetLoss": "5531.61", "sL_BldgLoss": "5370.5", "sL_StrLoss": "4940", "sL_NStrLoss": "430.5", "sL_ContLoss": "161.11", "geom_point": "0101000020E61000000FF1AC303F5D5EC069FC04489BB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.457888976999982, 49.376162925000045 ], [ -121.458133924999956, 49.37617321800014 ], [ -121.45800408099997, 49.376434700000054 ], [ -121.45784218799993, 49.377225094000103 ], [ -121.45866410899994, 49.378260509000071 ], [ -121.458666704999985, 49.378602393000087 ], [ -121.457503608999971, 49.380134798000078 ], [ -121.456461711999935, 49.381254207000069 ], [ -121.456208803999971, 49.381853805000048 ], [ -121.455583994999955, 49.382420687000078 ], [ -121.454980281999937, 49.382799496000068 ], [ -121.454581682999915, 49.382803794000111 ], [ -121.454219194999922, 49.382474803000107 ], [ -121.45414820799995, 49.382312925000058 ], [ -121.454740228999924, 49.382320841000109 ], [ -121.454748689, 49.382051090000083 ], [ -121.455161867999919, 49.382056612000078 ], [ -121.455170326999962, 49.38178686000002 ], [ -121.455949038000014, 49.381797265000024 ], [ -121.456104926999956, 49.380211395000053 ], [ -121.457143549999941, 49.380255043000034 ], [ -121.457487861999979, 49.376751118000058 ], [ -121.457829776, 49.376765485000135 ], [ -121.457888976999982, 49.376162925000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69846583", "BldgCostT": "49138333", "sL_LossRatio": "0.987565396222332", "sL_AssetLoss": "23198.97", "sL_BldgLoss": "22910.5", "sL_StrLoss": "8416.1", "sL_NStrLoss": "14494.4", "sL_ContLoss": "288.47", "geom_point": "0101000020E61000000833B78CA55D5EC0DD12D27D2DAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.463376722999911, 49.370475275000089 ], [ -121.463390843999974, 49.370022354000128 ], [ -121.462564685999936, 49.370011367000068 ], [ -121.462578792000016, 49.369559103000029 ], [ -121.461476042999919, 49.369512804000109 ], [ -121.461482787999969, 49.369444077 ], [ -121.460606031999973, 49.369407259000056 ], [ -121.460414303, 49.369293951000024 ], [ -121.460457505999941, 49.368853890000054 ], [ -121.460302341999977, 49.368847373000115 ], [ -121.460404589999911, 49.367805890000064 ], [ -121.460490395999926, 49.367782204000029 ], [ -121.461686796999956, 49.367208510000083 ], [ -121.461990190000037, 49.367206792000118 ], [ -121.465335491999937, 49.367464403000078 ], [ -121.466320907999915, 49.367609282000096 ], [ -121.465854505999957, 49.368578806000073 ], [ -121.465342717999974, 49.369707242000111 ], [ -121.463815910999941, 49.3696431750001 ], [ -121.46381232899995, 49.369758091000058 ], [ -121.46463848399999, 49.369769069000021 ], [ -121.464627235999984, 49.370130169000049 ], [ -121.464091282999945, 49.370309204000108 ], [ -121.463376722999911, 49.370475275000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11941917", "BldgCostT": "6761667", "sL_LossRatio": "0.972314575804509", "sL_AssetLoss": "1452.75", "sL_BldgLoss": "1412.53", "sL_StrLoss": "1044.33", "sL_NStrLoss": "368.2", "sL_ContLoss": "40.22", "geom_point": "0101000020E61000000126996AA05B5EC0BCD7FFEFBEB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.433654286999953, 49.402076729000107 ], [ -121.434142082999983, 49.402097322 ], [ -121.433787115999905, 49.40568905100011 ], [ -121.428291165999951, 49.405456917000045 ], [ -121.42839256699996, 49.404432182000086 ], [ -121.429913010999925, 49.40366419300004 ], [ -121.432872505, 49.402526186000031 ], [ -121.433390403999979, 49.402254195000133 ], [ -121.433654286999953, 49.402076729000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73969500", "BldgCostT": "45120000", "sL_LossRatio": "0.892855408753478", "sL_AssetLoss": "62815.49", "sL_BldgLoss": "56085.15", "sL_StrLoss": "46380.15", "sL_NStrLoss": "9705", "sL_ContLoss": "6730.34", "geom_point": "0101000020E610000011D222F4965D5EC01975843E1EB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.454566409999927, 49.391582597000117 ], [ -121.454866490999947, 49.391272093000033 ], [ -121.455029305999986, 49.390931686000052 ], [ -121.455061991000022, 49.390312215000101 ], [ -121.455253499999955, 49.389927689000061 ], [ -121.455650912999957, 49.389564505000124 ], [ -121.456152186999958, 49.389363703000107 ], [ -121.456437385999905, 49.389107290000027 ], [ -121.456505393000029, 49.388658697000082 ], [ -121.456098092999966, 49.388050596000021 ], [ -121.455593301999954, 49.387845507000073 ], [ -121.454999031999989, 49.387731478000049 ], [ -121.455023465999929, 49.387482990000095 ], [ -121.455592950999971, 49.387506926000071 ], [ -121.455703582999959, 49.386381696000051 ], [ -121.455439734, 49.386378170000057 ], [ -121.455448192999938, 49.386108417000067 ], [ -121.455034978999961, 49.386102896000061 ], [ -121.455038050999946, 49.386004958000107 ], [ -121.45506035899993, 49.385293639000103 ], [ -121.456299975999968, 49.385310201000031 ], [ -121.456295917999967, 49.385439717000111 ], [ -121.457534427999931, 49.385491755000082 ], [ -121.457539593999982, 49.3853267490001 ], [ -121.457952799999973, 49.385332263000116 ], [ -121.45798371399999, 49.384344700000028 ], [ -121.456482627999947, 49.384281631000057 ], [ -121.45652644399992, 49.383835867000052 ], [ -121.456137473999917, 49.383819520000031 ], [ -121.456471273999938, 49.383602794000033 ], [ -121.456672378999883, 49.383307893000023 ], [ -121.45684162199997, 49.382771003000087 ], [ -121.456931511000036, 49.381655885000043 ], [ -121.458323288999949, 49.380307113000114 ], [ -121.459418498000019, 49.378774687000046 ], [ -121.459853993999928, 49.377619596000038 ], [ -121.459685389999947, 49.376880489000037 ], [ -121.45977768599991, 49.375262592000119 ], [ -121.459992697999951, 49.37495920100006 ], [ -121.460684008999934, 49.37445649200005 ], [ -121.461670691999984, 49.374190209000112 ], [ -121.46251300199998, 49.374138900000098 ], [ -121.463199416999913, 49.374201506000119 ], [ -121.4638557899999, 49.374372497000067 ], [ -121.465702517999972, 49.375205604000058 ], [ -121.467713609999919, 49.376960191000038 ], [ -121.468737105999963, 49.377729307000074 ], [ -121.47037141899996, 49.378767606000039 ], [ -121.472544693999936, 49.37983000600012 ], [ -121.47319000899995, 49.380351297000125 ], [ -121.473302439999927, 49.38037247200009 ], [ -121.473222483999905, 49.381188985000044 ], [ -121.467729244999958, 49.380958844000112 ], [ -121.467992379999927, 49.378274847000085 ], [ -121.464856793999928, 49.378143354 ], [ -121.464778711999955, 49.378939292000076 ], [ -121.464193110999972, 49.37891472400004 ], [ -121.46407614599994, 49.380106805 ], [ -121.463380472999958, 49.38007761500009 ], [ -121.4633765499999, 49.380117610000056 ], [ -121.463461529999947, 49.380121176000095 ], [ -121.463109006999929, 49.383713118000038 ], [ -121.462058993999946, 49.383669053000048 ], [ -121.461976204999957, 49.384512343000047 ], [ -121.45963502699999, 49.384414055000114 ], [ -121.459598616999969, 49.385578454000068 ], [ -121.461291956999986, 49.385649548000067 ], [ -121.461245933999948, 49.38611823800003 ], [ -121.462131959999951, 49.386155426000144 ], [ -121.462093397, 49.386548212000044 ], [ -121.462934456999932, 49.386583507000047 ], [ -121.462799998999941, 49.38795323700004 ], [ -121.463190678999979, 49.387969629000075 ], [ -121.463282851999949, 49.387030585000126 ], [ -121.468776787999943, 49.387260950000091 ], [ -121.468734226999985, 49.387695089000047 ], [ -121.468424623999979, 49.390852872000032 ], [ -121.467450624999927, 49.390812052000051 ], [ -121.467358527999977, 49.391751094000021 ], [ -121.461864066999979, 49.391520659000079 ], [ -121.461974234999957, 49.390398691000016 ], [ -121.461998561999934, 49.390150937000087 ], [ -121.461936216999931, 49.390148320000023 ], [ -121.461928077999943, 49.390408941000096 ], [ -121.46190799399993, 49.391052124000048 ], [ -121.461494737999956, 49.391046625000087 ], [ -121.461486311999948, 49.391316378000084 ], [ -121.461073054999986, 49.391310877000095 ], [ -121.461064625999938, 49.391580630000071 ], [ -121.460958811999916, 49.391579221000072 ], [ -121.461029538999981, 49.390730352000105 ], [ -121.461037222999892, 49.390638044000113 ], [ -121.46105731599999, 49.390396833000068 ], [ -121.461109784999906, 49.39015465700006 ], [ -121.461119508999971, 49.390109899000031 ], [ -121.461142702999922, 49.390002892000034 ], [ -121.460283645999965, 49.390112963000014 ], [ -121.46028452199999, 49.390084881000078 ], [ -121.460281739999957, 49.390113207000098 ], [ -121.459398312999895, 49.39022639400013 ], [ -121.459236704999981, 49.390906672000114 ], [ -121.459236407999981, 49.390907950000013 ], [ -121.458002127, 49.391283487000045 ], [ -121.457991559999954, 49.391286721000071 ], [ -121.456743341999982, 49.391666457000056 ], [ -121.455272184999956, 49.391388128000109 ], [ -121.454566409999927, 49.391582597000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113974916", "BldgCostT": "75206666", "sL_LossRatio": "0.908219228052886", "sL_AssetLoss": "16722.13", "sL_BldgLoss": "15187.36", "sL_StrLoss": "12286.06", "sL_NStrLoss": "2901.3", "sL_ContLoss": "1534.77", "geom_point": "0101000020E6100000F05B8494255C5EC0BAB88D06F0B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.435916748999901, 49.4180262920001 ], [ -121.436023126999913, 49.416949766000066 ], [ -121.434837879999989, 49.4168997660001 ], [ -121.435192850999954, 49.413308093000083 ], [ -121.435388589999903, 49.413316350000038 ], [ -121.435685497999941, 49.410311595000039 ], [ -121.437612074999919, 49.410392860000094 ], [ -121.437763792999974, 49.408856641000121 ], [ -121.443260192999972, 49.409088293000075 ], [ -121.443197144999957, 49.409727464000049 ], [ -121.443044914999945, 49.411270681000083 ], [ -121.443043598999964, 49.411284021000057 ], [ -121.443367021999975, 49.411297643000076 ], [ -121.443035283999961, 49.411532890000053 ], [ -121.442257706999953, 49.41217948600007 ], [ -121.442267308999959, 49.412269209000101 ], [ -121.442403288999969, 49.412316211000096 ], [ -121.44276180599999, 49.412338992000109 ], [ -121.443536217999934, 49.41227779700008 ], [ -121.444454298999986, 49.412009999000105 ], [ -121.445469782999922, 49.411804897000067 ], [ -121.445463300999933, 49.411870646000068 ], [ -121.44584777599999, 49.411886831000125 ], [ -121.445493643999924, 49.415478547000056 ], [ -121.44376185099999, 49.415405635000134 ], [ -121.443739779999945, 49.415629387000074 ], [ -121.441682214999943, 49.415542724000041 ], [ -121.44141423, 49.418258036000069 ], [ -121.439652622999958, 49.418183806000094 ], [ -121.436997308999963, 49.418071865000059 ], [ -121.435916748999901, 49.4180262920001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "0.991678966997555", "sL_AssetLoss": "710.008", "sL_BldgLoss": "704.1", "sL_StrLoss": "629.1", "sL_NStrLoss": "75", "sL_ContLoss": "5.908", "geom_point": "0101000020E610000033EFC4EE735E5EC0F34FFC5A0FB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.475779215, 49.383679651000122 ], [ -121.475804250999929, 49.38287038600005 ], [ -121.475391062999933, 49.382864936000047 ], [ -121.475432799999936, 49.381516162000047 ], [ -121.476672333999886, 49.381532505000088 ], [ -121.476647311999926, 49.382341770000117 ], [ -121.477473681999982, 49.382352658000116 ], [ -121.477452531999987, 49.383037059000024 ], [ -121.47744033499994, 49.383431678000079 ], [ -121.477130082999935, 49.383427591000078 ], [ -121.477027140999922, 49.383426235000023 ], [ -121.477024, 49.383527876000095 ], [ -121.477018801999989, 49.383695990000021 ], [ -121.476848537999942, 49.383693747000031 ], [ -121.476192410999914, 49.383685098000079 ], [ -121.4761746, 49.384260928000131 ], [ -121.476167378999946, 49.384494363000087 ], [ -121.475786076999967, 49.384489336000073 ], [ -121.474927770999955, 49.384478014000081 ], [ -121.474915352999986, 49.38487915000011 ], [ -121.474911068999972, 49.385017524000034 ], [ -121.474615000999975, 49.385013617000041 ], [ -121.473671449999983, 49.385001162 ], [ -121.473696521999926, 49.384191898000097 ], [ -121.474936120999956, 49.384208261000012 ], [ -121.474952821999949, 49.383668751000137 ], [ -121.475779215, 49.383679651000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.982644641392289", "sL_AssetLoss": "3108.55", "sL_BldgLoss": "3054.6", "sL_StrLoss": "2577", "sL_NStrLoss": "477.6", "sL_ContLoss": "53.95", "geom_point": "0101000020E6100000D0198314DD5E5EC076A1A0B102B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.479273943999928, 49.377136919000058 ], [ -121.479462940999937, 49.375204054000037 ], [ -121.478972918999915, 49.375183561000071 ], [ -121.479224961999989, 49.372605950000093 ], [ -121.479241599999938, 49.37260498600002 ], [ -121.48048167899999, 49.372630592000071 ], [ -121.481686792999966, 49.372871296000085 ], [ -121.483933693999944, 49.373683096000029 ], [ -121.485545696999949, 49.374145989000041 ], [ -121.486928305000021, 49.374433706000083 ], [ -121.487526001000035, 49.37468440500006 ], [ -121.487794519999937, 49.374922196000107 ], [ -121.487708721000018, 49.375010500000066 ], [ -121.487346606999949, 49.375140096000059 ], [ -121.48644959799995, 49.375191405000102 ], [ -121.48600578099996, 49.375329493000066 ], [ -121.485218483999958, 49.375832301000045 ], [ -121.484102320999938, 49.376708206000067 ], [ -121.482453005999929, 49.37747009900005 ], [ -121.481696003999957, 49.37749571100008 ], [ -121.480266186000023, 49.377396102000063 ], [ -121.479273943999928, 49.377136919000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11831744", "BldgCostT": "7184076", "sL_LossRatio": "0.968251411809858", "sL_AssetLoss": "2918.24", "sL_BldgLoss": "2825.59", "sL_StrLoss": "2244.19", "sL_NStrLoss": "581.4", "sL_ContLoss": "92.65", "geom_point": "0101000020E61000004ACCD4A07F645EC0A954C35DC1AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.57136266599997, 49.353321357000041 ], [ -121.574502232000029, 49.35344999000008 ], [ -121.5745012299999, 49.353452918000109 ], [ -121.574464612999975, 49.353560027000086 ], [ -121.574384522999978, 49.353794103000034 ], [ -121.574810390999943, 49.354762504000092 ], [ -121.574725402999945, 49.355346403000048 ], [ -121.574641602999989, 49.355477120000074 ], [ -121.57434592599995, 49.35593825200008 ], [ -121.574262419999954, 49.356068497000095 ], [ -121.57320059499996, 49.357089708000103 ], [ -121.573276057999962, 49.357302407000063 ], [ -121.572351181, 49.357264516000086 ], [ -121.572205133999915, 49.358790197000062 ], [ -121.57212060099998, 49.359673215000093 ], [ -121.569715598999935, 49.360437997000069 ], [ -121.568235858999927, 49.361061598000035 ], [ -121.567390554999974, 49.361026930000044 ], [ -121.565759969999988, 49.360960038000059 ], [ -121.566104356999972, 49.357367643000089 ], [ -121.566825995999949, 49.357397251000087 ], [ -121.566866046999962, 49.35697936100005 ], [ -121.570486827999915, 49.357127840000032 ], [ -121.570825072999966, 49.353595445000117 ], [ -121.571334426999954, 49.353616323000047 ], [ -121.57136266599997, 49.353321357000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.956715905187221", "sL_AssetLoss": "29.11", "sL_BldgLoss": "27.85", "sL_StrLoss": "2.95", "sL_NStrLoss": "24.9", "sL_ContLoss": "1.26", "geom_point": "0101000020E6100000919205E9B5635EC0CC1B92207DAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.559178718999959, 49.362890332000049 ], [ -121.5598859399999, 49.362899145 ], [ -121.559869477999953, 49.363462762000083 ], [ -121.559449383999947, 49.363504292000137 ], [ -121.556148915999955, 49.363525225000132 ], [ -121.556161145999965, 49.363107623000111 ], [ -121.556168608999926, 49.362852767000021 ], [ -121.559178718999959, 49.362890332000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216722555", "BldgCostT": "142207266", "sL_LossRatio": "0.896998657475461", "sL_AssetLoss": "107975.68", "sL_BldgLoss": "96854.04", "sL_StrLoss": "83131.34", "sL_NStrLoss": "13722.7", "sL_ContLoss": "11121.64", "geom_point": "0101000020E610000035CECFA2715F5EC09C95D4A6BDAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.479294794999959, 49.37189172100009 ], [ -121.479324145999925, 49.371591522000081 ], [ -121.481935401, 49.371700699000016 ], [ -121.48193798600002, 49.371616771000113 ], [ -121.481524889999932, 49.371611346000108 ], [ -121.481541511999978, 49.371071833000016 ], [ -121.481128419999933, 49.371066405000079 ], [ -121.481153359999922, 49.370257137000117 ], [ -121.481566442999934, 49.370262565000118 ], [ -121.481572223999962, 49.370074958000082 ], [ -121.479418063999944, 49.369984885000115 ], [ -121.479444363999917, 49.369715872000015 ], [ -121.478458588999956, 49.369674639000046 ], [ -121.478444668999941, 49.369816994000125 ], [ -121.474972695999952, 49.369671696000069 ], [ -121.474965451999964, 49.369905790000111 ], [ -121.474552372999938, 49.369900338000015 ], [ -121.474535673999966, 49.370439849 ], [ -121.47288333599991, 49.370418030000131 ], [ -121.472908410999977, 49.369608764000098 ], [ -121.47332148699995, 49.369614222000095 ], [ -121.473321848999916, 49.369602571 ], [ -121.47295275499999, 49.36958711300008 ], [ -121.473044030999972, 49.368654788000107 ], [ -121.470066515999974, 49.368530038000053 ], [ -121.470070264999947, 49.36849176900003 ], [ -121.469224228999977, 49.368480566000109 ], [ -121.469240982999906, 49.367941057000081 ], [ -121.468827920999928, 49.367935585000104 ], [ -121.468828341999952, 49.367922025000077 ], [ -121.468836299999921, 49.367665830000078 ], [ -121.46830380499992, 49.367658775000066 ], [ -121.468281345999941, 49.367887940000109 ], [ -121.468091741999928, 49.369822540000051 ], [ -121.465342717999974, 49.369707242000111 ], [ -121.465854505999957, 49.368578806000073 ], [ -121.466320907999915, 49.367609282000096 ], [ -121.465335491999937, 49.367464403000078 ], [ -121.461990190000037, 49.367206792000118 ], [ -121.461686796999956, 49.367208510000083 ], [ -121.460490395999926, 49.367782204000029 ], [ -121.460404589999911, 49.367805890000064 ], [ -121.46050867799994, 49.366745610000088 ], [ -121.458475892999971, 49.366718516000034 ], [ -121.458372855999983, 49.367767600000057 ], [ -121.457995011999969, 49.36774230000006 ], [ -121.457027215999943, 49.367770986000039 ], [ -121.455803784999901, 49.367945 ], [ -121.45469378599995, 49.368241887000117 ], [ -121.453739801999944, 49.368550801000019 ], [ -121.452791920999957, 49.368937408000107 ], [ -121.452612828999946, 49.368964299000098 ], [ -121.452237096999966, 49.369020706000057 ], [ -121.452302604999886, 49.368354645000132 ], [ -121.453858076999921, 49.367278018000036 ], [ -121.454710290999913, 49.36684045100008 ], [ -121.455505404999883, 49.366535002000091 ], [ -121.455895063999961, 49.366385308000069 ], [ -121.456599891999957, 49.366248558000123 ], [ -121.457033354999979, 49.366164463000054 ], [ -121.457778142000038, 49.366062328000048 ], [ -121.463147345999971, 49.365700677000092 ], [ -121.467107862999967, 49.365433744000043 ], [ -121.468016304999978, 49.365372502000113 ], [ -121.468020213999964, 49.365372255000082 ], [ -121.468586013999968, 49.365334082000047 ], [ -121.469437346999953, 49.365276698000059 ], [ -121.47351339199993, 49.365083719000026 ], [ -121.473090669999976, 49.364681364000035 ], [ -121.468649772, 49.364948201000111 ], [ -121.468470504999956, 49.364958980000026 ], [ -121.47049738699998, 49.363233695000055 ], [ -121.471195864999984, 49.362404038000093 ], [ -121.470758261999919, 49.362268916000048 ], [ -121.467166621999951, 49.361159866000051 ], [ -121.465969052999966, 49.360792216000107 ], [ -121.466931737999957, 49.359676351000068 ], [ -121.468938986999959, 49.357349587000115 ], [ -121.469146107999947, 49.356994006000043 ], [ -121.469309677999931, 49.356491389000041 ], [ -121.469330593999928, 49.355926007000058 ], [ -121.469330507999942, 49.354703292000124 ], [ -121.469305468999906, 49.352629637000099 ], [ -121.469299801999938, 49.352160090000041 ], [ -121.469325939, 49.351977646000115 ], [ -121.469300835999945, 49.351896501000112 ], [ -121.469248738999951, 49.351514096000052 ], [ -121.469241420999978, 49.351307106000021 ], [ -121.469260178999946, 49.351145448000032 ], [ -121.469303695999955, 49.351074059000013 ], [ -121.469636333999986, 49.350970654000072 ], [ -121.470042400999915, 49.350670900000082 ], [ -121.470150109999977, 49.350556399000055 ], [ -121.470227692999956, 49.35025580500011 ], [ -121.470259192999933, 49.350130555000113 ], [ -121.470299992999941, 49.349968400000051 ], [ -121.470501005999921, 49.349534097000067 ], [ -121.471148596999925, 49.348641450000116 ], [ -121.471161030999937, 49.348442746000053 ], [ -121.471289500999887, 49.348447197000056 ], [ -121.473038727999935, 49.348336768000095 ], [ -121.473194415999941, 49.348326930000056 ], [ -121.473382017999924, 49.350422722000133 ], [ -121.473823743, 49.350404813000125 ], [ -121.474986036999923, 49.350497189000123 ], [ -121.474939463999974, 49.35100358600009 ], [ -121.475462427999958, 49.351598962 ], [ -121.476190303999914, 49.351922041000094 ], [ -121.476293578999957, 49.353637826000124 ], [ -121.477605394999983, 49.353716912000031 ], [ -121.477397349999976, 49.355844758000025 ], [ -121.475330352999947, 49.35575822200007 ], [ -121.475320195, 49.355862059000032 ], [ -121.476409430999965, 49.355907665000117 ], [ -121.476358449999964, 49.356428952000059 ], [ -121.476463861999946, 49.356433365000058 ], [ -121.47641518099999, 49.356931139000032 ], [ -121.476470793999937, 49.356933467000076 ], [ -121.476212191999963, 49.359577506000072 ], [ -121.478475193999913, 49.359672219000068 ], [ -121.478306781999919, 49.361394808000057 ], [ -121.481045216999945, 49.361509354000177 ], [ -121.481030285999964, 49.361662150000015 ], [ -121.484363113999962, 49.361801465999989 ], [ -121.484113385999933, 49.364358956000025 ], [ -121.48464048699995, 49.364365868000057 ], [ -121.484648778999883, 49.364096111000059 ], [ -121.486300913999912, 49.364117761000045 ], [ -121.486281738999978, 49.364742247000059 ], [ -121.486276064999913, 49.364927032000011 ], [ -121.485863023999912, 49.36492162200004 ], [ -121.485858316999938, 49.365074947000032 ], [ -121.486555994999961, 49.365104086000045 ], [ -121.486571015999971, 49.364950175000018 ], [ -121.487186764999976, 49.364975888000068 ], [ -121.487215377999917, 49.364682691000063 ], [ -121.487232913999932, 49.364502989000073 ], [ -121.488492800999921, 49.364555589000098 ], [ -121.492067758999909, 49.364704764000145 ], [ -121.49207515099998, 49.364463106000123 ], [ -121.490836037999941, 49.364446933000103 ], [ -121.49084125899999, 49.364276412000073 ], [ -121.49086081199998, 49.363637661000027 ], [ -121.49251293399999, 49.363659221 ], [ -121.492521182999951, 49.36338946300009 ], [ -121.492934212999984, 49.363394850000084 ], [ -121.492942458999948, 49.363125092000068 ], [ -121.49459456799994, 49.363146623000063 ], [ -121.494602803999953, 49.36287686500004 ], [ -121.495841880999976, 49.362892998000078 ], [ -121.495833649999952, 49.363162756000044 ], [ -121.496659706999978, 49.363173503000105 ], [ -121.496648153, 49.363552414 ], [ -121.496635028999947, 49.363982778000093 ], [ -121.495395924999968, 49.363966654000116 ], [ -121.495387691999923, 49.364236412000018 ], [ -121.49497465499999, 49.364231035000032 ], [ -121.494966419999969, 49.364500793000097 ], [ -121.49455338199995, 49.364495413000043 ], [ -121.49450432099998, 49.366101924000091 ], [ -121.49626323199999, 49.366112761000139 ], [ -121.496319831999969, 49.366952961000031 ], [ -121.49589308499999, 49.366941644000072 ], [ -121.49489229699999, 49.366928615000077 ], [ -121.494884061, 49.367198374000097 ], [ -121.499281105999927, 49.367255551000049 ], [ -121.499516887999945, 49.364832883000133 ], [ -121.501591378999962, 49.364919248000049 ], [ -121.501660034999972, 49.364213432000014 ], [ -121.502640974999963, 49.364254257000077 ], [ -121.50278365299999, 49.362787081000064 ], [ -121.502964061999961, 49.360931753000109 ], [ -121.507368433999943, 49.361114944000079 ], [ -121.507421498999975, 49.360568658000012 ], [ -121.509132075, 49.360639758000033 ], [ -121.509132176999927, 49.360636410000033 ], [ -121.509545185999983, 49.36064173800002 ], [ -121.509553340999972, 49.360371978000089 ], [ -121.515335450999899, 49.36044639800005 ], [ -121.515327327999941, 49.360716158000024 ], [ -121.516153349999939, 49.360726767000109 ], [ -121.516146062999965, 49.360968938000042 ], [ -121.517561760999939, 49.361027668000091 ], [ -121.517510768999955, 49.361553783000033 ], [ -121.51819408599999, 49.361562544000073 ], [ -121.518185978, 49.361832306000018 ], [ -121.51942504299997, 49.361848185000056 ], [ -121.519421349999945, 49.36197111500006 ], [ -121.519438350999977, 49.361971820000072 ], [ -121.519413681999978, 49.362226455000041 ], [ -121.51940883899999, 49.362387708000021 ], [ -121.52147397, 49.362414145000123 ], [ -121.521449700999952, 49.363223429000101 ], [ -121.521862732999921, 49.363228712000065 ], [ -121.521861824, 49.363259079000059 ], [ -121.522609018999958, 49.363290037000084 ], [ -121.522566555999987, 49.363728633000072 ], [ -121.526577612999986, 49.363894732000126 ], [ -121.526475060999985, 49.364954903000083 ], [ -121.526426805999918, 49.365453737000067 ], [ -121.525771485999968, 49.365445490000084 ], [ -121.525631209999958, 49.365515302000119 ], [ -121.525724610999987, 49.365589406 ], [ -121.526059800000027, 49.365898392000091 ], [ -121.526070700999952, 49.366015195000024 ], [ -121.525828987999887, 49.366228800000023 ], [ -121.52496529899993, 49.366567789000051 ], [ -121.523954913999958, 49.366717293000114 ], [ -121.521902099999963, 49.36724860800004 ], [ -121.520977588000022, 49.368181397000043 ], [ -121.518967608999944, 49.369064409000075 ], [ -121.516975081999959, 49.369830599000068 ], [ -121.515798800999946, 49.370202852000084 ], [ -121.514887646999966, 49.370165048000089 ], [ -121.514855008999987, 49.370501516000068 ], [ -121.512667032999971, 49.371193856000033 ], [ -121.510559243999964, 49.371106334000103 ], [ -121.510512006999932, 49.371592837000016 ], [ -121.509948709999975, 49.371656499000032 ], [ -121.507993814999963, 49.372108002000076 ], [ -121.49906350599997, 49.373059014000034 ], [ -121.49907214199996, 49.372970307000067 ], [ -121.498988085999983, 49.372966807000083 ], [ -121.499035312, 49.372481680000107 ], [ -121.497810577999957, 49.372430676000093 ], [ -121.497810772999969, 49.372428678000126 ], [ -121.496174160999971, 49.37236050000007 ], [ -121.496155849999965, 49.372548466000069 ], [ -121.495473585999932, 49.372520036000012 ], [ -121.495469722999971, 49.372559681000091 ], [ -121.494820352999966, 49.372532619000033 ], [ -121.494808701999915, 49.372652197000086 ], [ -121.493879361999916, 49.3726134610001 ], [ -121.493879161999971, 49.37261552000011 ], [ -121.48969415399992, 49.3724409800001 ], [ -121.489549354999951, 49.373925318000062 ], [ -121.488175438, 49.373867982000078 ], [ -121.48816456599998, 49.373979395000035 ], [ -121.487843317999975, 49.373780007000065 ], [ -121.486970009999979, 49.373489384000045 ], [ -121.481531704999895, 49.372050983000108 ], [ -121.479294794999959, 49.37189172100009 ] ], [ [ -121.507029606999964, 49.368662281000091 ], [ -121.507051627999957, 49.368435644000044 ], [ -121.505590986999948, 49.368416767000113 ], [ -121.505585364999945, 49.368602236000065 ], [ -121.507029606999964, 49.368662281000091 ] ], [ [ -121.469219738999968, 49.35922018100014 ], [ -121.469275786999944, 49.358648038000084 ], [ -121.469110539999988, 49.358834919000159 ], [ -121.469104370999915, 49.359033672000081 ], [ -121.468936758000012, 49.359031451000135 ], [ -121.468785954999973, 49.359201992000045 ], [ -121.469219738999968, 49.35922018100014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.897934868943606", "sL_AssetLoss": "25.18", "sL_BldgLoss": "22.61", "sL_StrLoss": "2.91", "sL_NStrLoss": "19.7", "sL_ContLoss": "2.57", "geom_point": "0101000020E61000001CA34CD503645EC09F70B8876BAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.565187247, 49.361885622000081 ], [ -121.565286838999924, 49.361886858000084 ], [ -121.565274541999941, 49.362309462000056 ], [ -121.564696783999949, 49.36255290400009 ], [ -121.562850010999981, 49.363051390000095 ], [ -121.561148706999958, 49.363336291000046 ], [ -121.560283866999967, 49.363421796000054 ], [ -121.560301748999962, 49.362809442000113 ], [ -121.560306855999968, 49.362634525000047 ], [ -121.561812503999974, 49.362653270000116 ], [ -121.561958997999966, 49.362655093000072 ], [ -121.56195957199999, 49.362635455000124 ], [ -121.561966866999981, 49.362385326000073 ], [ -121.563205967999977, 49.362400737000037 ], [ -121.563213827999988, 49.362130970000059 ], [ -121.564039892999972, 49.362141236000063 ], [ -121.564047749999929, 49.361871469000029 ], [ -121.565187247, 49.361885622000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.954469367258118", "sL_AssetLoss": "29.87", "sL_BldgLoss": "28.51", "sL_StrLoss": "3.11", "sL_NStrLoss": "25.4", "sL_ContLoss": "1.36", "geom_point": "0101000020E610000036CC4C40FE625EC0C3CEDA8EA5AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.545802950999985, 49.364072135000036 ], [ -121.547868175999923, 49.364098101000053 ], [ -121.547866241999913, 49.364163798000043 ], [ -121.547851810999987, 49.364653692000019 ], [ -121.547264017999922, 49.364727696000031 ], [ -121.54585620499995, 49.364854509000061 ], [ -121.545780004999955, 49.364850078000075 ], [ -121.545795819999952, 49.364313908000064 ], [ -121.545802950999985, 49.364072135000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36617251", "BldgCostT": "22305001", "sL_LossRatio": "0.983942873870458", "sL_AssetLoss": "12502.86", "sL_BldgLoss": "12302.1", "sL_StrLoss": "10906.9", "sL_NStrLoss": "1395.2", "sL_ContLoss": "200.76", "geom_point": "0101000020E6100000FFFC7B191A5D5EC0F1A2C04CA5B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.449967311999927, 49.400406808000078 ], [ -121.450289326999922, 49.397136505000077 ], [ -121.451532474999965, 49.39718879400003 ], [ -121.451618772999936, 49.396312057000046 ], [ -121.451407018999959, 49.396309220000056 ], [ -121.451431997999933, 49.395514885000097 ], [ -121.448256, 49.395381261000097 ], [ -121.448303213999935, 49.395312605000072 ], [ -121.449759306999923, 49.393721785000032 ], [ -121.450976100999938, 49.392686409000078 ], [ -121.45173180099998, 49.392345998000053 ], [ -121.453629116999963, 49.392046897000057 ], [ -121.454566409999927, 49.391582597000117 ], [ -121.455272184999956, 49.391388128000109 ], [ -121.456743341999982, 49.391666457000056 ], [ -121.457991559999954, 49.391286721000071 ], [ -121.458002127, 49.391283487000045 ], [ -121.459236407999981, 49.390907950000013 ], [ -121.459236704999981, 49.390906672000114 ], [ -121.459398312999895, 49.39022639400013 ], [ -121.460281739999957, 49.390113207000098 ], [ -121.460244704999965, 49.39049025200007 ], [ -121.460271840999937, 49.390490612000121 ], [ -121.460283645999965, 49.390112963000014 ], [ -121.461142702999922, 49.390002892000034 ], [ -121.461119508999971, 49.390109899000031 ], [ -121.461109784999906, 49.39015465700006 ], [ -121.46105731599999, 49.390396833000068 ], [ -121.461037222999892, 49.390638044000113 ], [ -121.461029538999981, 49.390730352000105 ], [ -121.460958811999916, 49.391579221000072 ], [ -121.460721377999946, 49.391576059000087 ], [ -121.460651366999969, 49.391575128000063 ], [ -121.460646090999958, 49.39174391400006 ], [ -121.460634504999959, 49.392114632000073 ], [ -121.460449479999923, 49.392112168000011 ], [ -121.460221239999953, 49.392109128000065 ], [ -121.460208381999976, 49.392520415000071 ], [ -121.460205867999932, 49.3926008010001 ], [ -121.460204371999936, 49.39264863300005 ], [ -121.460159275999985, 49.392648032000068 ], [ -121.460133219999975, 49.392647686000046 ], [ -121.45979110599994, 49.392643128000039 ], [ -121.459779582999943, 49.393011527000048 ], [ -121.459774231999916, 49.393182631000052 ], [ -121.459601073999977, 49.393180325000039 ], [ -121.459360960999931, 49.393177125000072 ], [ -121.459353537999974, 49.393414391000135 ], [ -121.459344081999944, 49.393716629000025 ], [ -121.459068775999953, 49.393712960000094 ], [ -121.458970646999958, 49.394711585000039 ], [ -121.458169353999949, 49.394677937000061 ], [ -121.458073761999927, 49.394673922000067 ], [ -121.458069106999915, 49.394822622000071 ], [ -121.45805357499998, 49.395318611000121 ], [ -121.457728452999973, 49.395314273000047 ], [ -121.457628722000024, 49.395312943000079 ], [ -121.457226994999971, 49.395307582000051 ], [ -121.457210095, 49.395847086000046 ], [ -121.457324163999914, 49.395848608000051 ], [ -121.45735790499999, 49.395849059000049 ], [ -121.45762338899999, 49.395852601000108 ], [ -121.457614939999942, 49.396122353000052 ], [ -121.458028235999947, 49.396127867000175 ], [ -121.457969105999965, 49.398016131000105 ], [ -121.457871260000019, 49.398014826000093 ], [ -121.457653783999945, 49.400227155000103 ], [ -121.458839670999936, 49.400276951000123 ], [ -121.458819510999945, 49.400482068000088 ], [ -121.457310943999957, 49.400452896000068 ], [ -121.455708955999953, 49.40042189100005 ], [ -121.453403083999916, 49.400426868000082 ], [ -121.452199283999974, 49.400414214000072 ], [ -121.449967311999927, 49.400406808000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141691166", "BldgCostT": "95036666", "sL_LossRatio": "0.968167294980812", "sL_AssetLoss": "147882.5", "sL_BldgLoss": "143175", "sL_StrLoss": "121897.3", "sL_NStrLoss": "21277.7", "sL_ContLoss": "4707.5", "geom_point": "0101000020E6100000933C85F97E5C5EC0EBC38A8567B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.441185368999925, 49.384681933000167 ], [ -121.440602202999969, 49.383953117000033 ], [ -121.442010560999933, 49.38344622900005 ], [ -121.442124199999952, 49.383342809000027 ], [ -121.442180399000023, 49.383290179000099 ], [ -121.443189258999965, 49.382918825000075 ], [ -121.444321525999968, 49.382484093000059 ], [ -121.445060292000022, 49.383285298000075 ], [ -121.445888574999941, 49.384214697000068 ], [ -121.44711930199999, 49.383775112000059 ], [ -121.447629694999961, 49.384361906 ], [ -121.447779406999928, 49.384311395000069 ], [ -121.447901191999989, 49.385412994000028 ], [ -121.448004798999989, 49.385692409000043 ], [ -121.448162195999942, 49.385914508000049 ], [ -121.448373993999908, 49.386116398000077 ], [ -121.448617192999933, 49.386265517000012 ], [ -121.448787970999945, 49.386341814000062 ], [ -121.448957990999929, 49.38641781100003 ], [ -121.449384404999989, 49.386527694000108 ], [ -121.449785288999948, 49.386559899000133 ], [ -121.449654616999965, 49.387005300000126 ], [ -121.44881927699997, 49.389044899000048 ], [ -121.44749058599993, 49.388825796000035 ], [ -121.44686580299998, 49.388714695000097 ], [ -121.444885198999927, 49.388350890000083 ], [ -121.444632332999944, 49.388306681000074 ], [ -121.44208550099998, 49.387861392000097 ], [ -121.442437501999962, 49.386990769000136 ], [ -121.442685647999966, 49.386432265000082 ], [ -121.442057837000036, 49.385624021000098 ], [ -121.441185368999925, 49.384681933000167 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "440724139", "BldgCostT": "278472274", "sL_LossRatio": "0.786459473084546", "sL_AssetLoss": "329201.96", "sL_BldgLoss": "258904", "sL_StrLoss": "155079.7", "sL_NStrLoss": "103824.3", "sL_ContLoss": "70297.96", "geom_point": "0101000020E61000001EA0F3011E5C5EC0A1830DD3E7B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.434286102999948, 49.381118492000013 ], [ -121.437117412999939, 49.380026144000048 ], [ -121.437214607999948, 49.380131260000041 ], [ -121.438813406999955, 49.379552187000058 ], [ -121.441029613999945, 49.378710615000081 ], [ -121.44165259, 49.379482595000127 ], [ -121.442325005, 49.380229609000061 ], [ -121.44301180799999, 49.380984409000064 ], [ -121.443677905999891, 49.38173839500007 ], [ -121.444321525999968, 49.382484093000059 ], [ -121.443189258999965, 49.382918825000075 ], [ -121.442180399000023, 49.383290179000099 ], [ -121.442124199999952, 49.383342809000027 ], [ -121.442010560999933, 49.38344622900005 ], [ -121.440602202999969, 49.383953117000033 ], [ -121.441185368999925, 49.384681933000167 ], [ -121.43945985299996, 49.385327827000054 ], [ -121.438347161999985, 49.385744369000079 ], [ -121.437624127000035, 49.384895988000046 ], [ -121.437391998999956, 49.384621110000069 ], [ -121.43705409599994, 49.384229904000058 ], [ -121.43639569199999, 49.383467299000053 ], [ -121.435725208999912, 49.382716712000089 ], [ -121.43546420899996, 49.382427002000085 ], [ -121.435068335999972, 49.381983061000078 ], [ -121.435058198999954, 49.381971701000083 ], [ -121.434286102999948, 49.381118492000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161305249", "BldgCostT": "103144999", "sL_LossRatio": "0.896838394300065", "sL_AssetLoss": "161966.75", "sL_BldgLoss": "145258", "sL_StrLoss": "116527.1", "sL_NStrLoss": "28730.9", "sL_ContLoss": "16708.75", "geom_point": "0101000020E61000004037B02C035C5EC06C1B3D8660B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.43474401099995, 49.385599511000045 ], [ -121.433744903, 49.384475298000069 ], [ -121.433389288999976, 49.384054489000057 ], [ -121.432617315999963, 49.383144489000053 ], [ -121.432429713999966, 49.382921090000103 ], [ -121.435058198999954, 49.381971701000083 ], [ -121.435068335999972, 49.381983061000078 ], [ -121.43546420899996, 49.382427002000085 ], [ -121.435725208999912, 49.382716712000089 ], [ -121.43639569199999, 49.383467299000053 ], [ -121.43705409599994, 49.384229904000058 ], [ -121.437391998999956, 49.384621110000069 ], [ -121.437624127000035, 49.384895988000046 ], [ -121.438347161999985, 49.385744369000079 ], [ -121.43945985299996, 49.385327827000054 ], [ -121.441185368999925, 49.384681933000167 ], [ -121.442057837000036, 49.385624021000098 ], [ -121.442685647999966, 49.386432265000082 ], [ -121.442437501999962, 49.386990769000136 ], [ -121.44208550099998, 49.387861392000097 ], [ -121.441740109999927, 49.388678208000094 ], [ -121.438624897999958, 49.388128418000058 ], [ -121.437454220999882, 49.387903201000029 ], [ -121.435275979, 49.387502005000066 ], [ -121.434624913999983, 49.386875787000115 ], [ -121.435565216999976, 49.386528700000035 ], [ -121.43508140899999, 49.385981593000096 ], [ -121.43474401099995, 49.385599511000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899583", "BldgCostT": "4758333", "sL_LossRatio": "0.984883188273019", "sL_AssetLoss": "6330.7", "sL_BldgLoss": "6235", "sL_StrLoss": "5580", "sL_NStrLoss": "655", "sL_ContLoss": "95.7", "geom_point": "0101000020E6100000BBAE04F7685A5EC0EF62505CC4B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.411555323999949, 49.387320404 ], [ -121.411738305999947, 49.387033300000084 ], [ -121.412468304999919, 49.386431205000058 ], [ -121.412933316999954, 49.386110113000022 ], [ -121.413265820999953, 49.386001907000079 ], [ -121.41314476899997, 49.387221713000066 ], [ -121.414057472999971, 49.387260427000044 ], [ -121.413701060999969, 49.390852170000102 ], [ -121.410723810999983, 49.390725856000117 ], [ -121.410858803999986, 49.390626296000065 ], [ -121.411013786999931, 49.390454310000052 ], [ -121.411102700999933, 49.390281314000028 ], [ -121.411135988999959, 49.389904901000094 ], [ -121.41123690699996, 49.389652209000083 ], [ -121.411464505999959, 49.38930478700005 ], [ -121.4118611909999, 49.388893310000121 ], [ -121.412032377999964, 49.388585889000112 ], [ -121.412026590999957, 49.38840801200007 ], [ -121.41158949, 49.387990004000095 ], [ -121.411469506999964, 49.387768502000071 ], [ -121.411462104999941, 49.387592306000045 ], [ -121.411555323999949, 49.387320404 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31150917", "BldgCostT": "21011667", "sL_LossRatio": "0.989629802980883", "sL_AssetLoss": "20510.7", "sL_BldgLoss": "20298", "sL_StrLoss": "18684", "sL_NStrLoss": "1614", "sL_ContLoss": "212.7", "geom_point": "0101000020E61000004D5D5C570A5C5EC0E4CD8E12C3B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.449709968999954, 49.38925360800004 ], [ -121.448501009999944, 49.390350688000069 ], [ -121.446909107999929, 49.391471491000033 ], [ -121.443489411000016, 49.392837302000054 ], [ -121.441035080999924, 49.393703201000129 ], [ -121.440540599999963, 49.393670499000102 ], [ -121.439971805999974, 49.393338707000048 ], [ -121.438088993999926, 49.391864603000016 ], [ -121.436213176999942, 49.390652594000073 ], [ -121.435218998999957, 49.389837904000032 ], [ -121.434564686999948, 49.389164289000071 ], [ -121.434085090999972, 49.388625891000075 ], [ -121.433912190999976, 49.38823669800005 ], [ -121.433991006999946, 49.387438900000106 ], [ -121.433909865999922, 49.387437801000047 ], [ -121.433918443, 49.387168051000081 ], [ -121.433894295999963, 49.387167724000079 ], [ -121.433814419999948, 49.387976238000114 ], [ -121.433892712999977, 49.387977300000053 ], [ -121.433886318, 49.388178457000016 ], [ -121.433558706999932, 49.387440999000049 ], [ -121.431968718999883, 49.385044103 ], [ -121.43121101899996, 49.384116900000109 ], [ -121.430396081999902, 49.383332202000098 ], [ -121.429800914999959, 49.382990303000085 ], [ -121.429472823, 49.382931903000078 ], [ -121.426578012999983, 49.382929096000069 ], [ -121.42587781499995, 49.382856494000059 ], [ -121.425572727999935, 49.382736823000101 ], [ -121.42579205199999, 49.382739810000018 ], [ -121.425808436999915, 49.38222704000006 ], [ -121.426501505999951, 49.382736303000073 ], [ -121.426792786999954, 49.382789207000052 ], [ -121.427210991, 49.38279970200005 ], [ -121.428448082999935, 49.382631102000062 ], [ -121.42960631299999, 49.382633093000031 ], [ -121.430398289999928, 49.382712606000027 ], [ -121.431074493000025, 49.382847600000112 ], [ -121.431365283999952, 49.382848990000042 ], [ -121.431654007999938, 49.382789091000113 ], [ -121.431985276999939, 49.382631797000016 ], [ -121.432429713999966, 49.382921090000103 ], [ -121.432617315999963, 49.383144489000053 ], [ -121.433389288999976, 49.384054489000057 ], [ -121.433744903, 49.384475298000069 ], [ -121.43474401099995, 49.385599511000045 ], [ -121.43508140899999, 49.385981593000096 ], [ -121.435565216999976, 49.386528700000035 ], [ -121.434624913999983, 49.386875787000115 ], [ -121.435275979, 49.387502005000066 ], [ -121.437454220999882, 49.387903201000029 ], [ -121.437293593999939, 49.388313910000072 ], [ -121.437323493999941, 49.388555913000111 ], [ -121.438989206999963, 49.390474707000088 ], [ -121.43968929, 49.391276998000059 ], [ -121.440358584999927, 49.39204280400002 ], [ -121.440938799999984, 49.392704713000029 ], [ -121.444734203999985, 49.391282208000064 ], [ -121.445607686999978, 49.391726591000157 ], [ -121.446280795999968, 49.390074198000079 ], [ -121.446651407999965, 49.389210590000104 ], [ -121.44686580299998, 49.388714695000097 ], [ -121.44749058599993, 49.388825796000035 ], [ -121.44881927699997, 49.389044899000048 ], [ -121.449411383999987, 49.389208693000164 ], [ -121.449571598999952, 49.389332611000086 ], [ -121.449709968999954, 49.38925360800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60276417", "BldgCostT": "41096667", "sL_LossRatio": "0.948262588150743", "sL_AssetLoss": "44526", "sL_BldgLoss": "42222.34", "sL_StrLoss": "38273.94", "sL_NStrLoss": "3948.4", "sL_ContLoss": "2303.66", "geom_point": "0101000020E61000004585A8CA905B5EC0CFD42D33D3B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.432412659999926, 49.395513468000061 ], [ -121.43242983199994, 49.39497397000008 ], [ -121.432016550999919, 49.394968366000036 ], [ -121.432033727999965, 49.39442886700003 ], [ -121.43162045099993, 49.394423261000071 ], [ -121.431629041999912, 49.394153512000045 ], [ -121.431215766999941, 49.394147904000121 ], [ -121.431224359999973, 49.393878156000078 ], [ -121.430811086999981, 49.393872547000129 ], [ -121.430817471999887, 49.393672134000063 ], [ -121.43109792599999, 49.393384406000038 ], [ -121.431254845999888, 49.393223384000081 ], [ -121.431221069999964, 49.393222466000061 ], [ -121.430419044999951, 49.393200748000019 ], [ -121.430449397999951, 49.392248443000042 ], [ -121.430036136999917, 49.392242831000083 ], [ -121.43004473699996, 49.391973083000082 ], [ -121.429218223999911, 49.391961854000023 ], [ -121.42922682699999, 49.391692106000058 ], [ -121.428813573999932, 49.391686489000087 ], [ -121.428889864999974, 49.389294842000098 ], [ -121.427631003999949, 49.389241619000103 ], [ -121.427238084999885, 49.38923627300003 ], [ -121.427238443999968, 49.389225019000015 ], [ -121.426760738000027, 49.389204817000042 ], [ -121.426811605999958, 49.38869073900004 ], [ -121.426428852999962, 49.388685528000089 ], [ -121.426437471999975, 49.388415781000049 ], [ -121.426024245999912, 49.388410154000077 ], [ -121.426032864999954, 49.388140406000041 ], [ -121.42561964099994, 49.388134779000076 ], [ -121.425679990999939, 49.386246540000066 ], [ -121.425266782999955, 49.386240911000058 ], [ -121.425301274999967, 49.385161918000087 ], [ -121.424888077, 49.385156288000076 ], [ -121.424893445999913, 49.384988358000044 ], [ -121.421342832999954, 49.384838057000124 ], [ -121.421211801999931, 49.384836268000043 ], [ -121.42170470399995, 49.384592787000074 ], [ -121.421898083999935, 49.384450391 ], [ -121.422127627999899, 49.384239579000095 ], [ -121.422360795999964, 49.384025395000108 ], [ -121.422617816999974, 49.383853305000081 ], [ -121.422819526999973, 49.383766197000043 ], [ -121.423472394999976, 49.383649607000066 ], [ -121.423785412999976, 49.383594304000034 ], [ -121.423936285999929, 49.383504205000044 ], [ -121.424330094999959, 49.383036701000044 ], [ -121.424331912999975, 49.382907778000096 ], [ -121.42429285399993, 49.382849448000051 ], [ -121.424259800999977, 49.382800089000092 ], [ -121.424142429, 49.382712737000134 ], [ -121.423335010999921, 49.382111805000093 ], [ -121.4234948499999, 49.38206588 ], [ -121.423495488999933, 49.382065696000076 ], [ -121.423626295, 49.382205608000021 ], [ -121.424433008999983, 49.382792411000018 ], [ -121.425343798999947, 49.383595591000073 ], [ -121.426369187999967, 49.383447507000021 ], [ -121.429233096999951, 49.383487413000061 ], [ -121.4296161, 49.383599909000054 ], [ -121.430372297999938, 49.384059909000015 ], [ -121.431865492999975, 49.386500989000091 ], [ -121.432596110999967, 49.387382593000055 ], [ -121.433482592999979, 49.389392209000057 ], [ -121.43420769299999, 49.39043610800006 ], [ -121.435498590999927, 49.391415995000045 ], [ -121.43797419899991, 49.392915709000071 ], [ -121.438372712999978, 49.393406989000042 ], [ -121.438602707999962, 49.393949590000055 ], [ -121.438613617999962, 49.394445301000125 ], [ -121.438554966999931, 49.394517141000051 ], [ -121.438232906999986, 49.394512790000071 ], [ -121.43822435099996, 49.39478253900004 ], [ -121.437397788999959, 49.394771369000047 ], [ -121.437389228999947, 49.395041118000059 ], [ -121.436149377999953, 49.395024351000089 ], [ -121.436140811999948, 49.395294101000061 ], [ -121.434487669999967, 49.395271724000075 ], [ -121.434479466999903, 49.395529751000062 ], [ -121.434364788999972, 49.395539925000016 ], [ -121.432412659999926, 49.395513468000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989364226695144", "sL_AssetLoss": "463.53", "sL_BldgLoss": "458.6", "sL_StrLoss": "422", "sL_NStrLoss": "36.6", "sL_ContLoss": "4.93", "geom_point": "0101000020E6100000A4C5F8B4335B5EC0A76A0E52E8B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.425113503999981, 49.381600886000072 ], [ -121.42512029999989, 49.381597222 ], [ -121.425222997999938, 49.38179680800009 ], [ -121.425258371999973, 49.381822844000027 ], [ -121.42555656399999, 49.382041961 ], [ -121.42549097199999, 49.382704755000084 ], [ -121.425307789999962, 49.38263290000009 ], [ -121.424207122000027, 49.381861272000023 ], [ -121.424364821, 49.381815972000069 ], [ -121.424591946999939, 49.381750728000029 ], [ -121.424789197999971, 49.381694053000089 ], [ -121.425113503999981, 49.381600886000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "0.988331627430911", "sL_AssetLoss": "4885", "sL_BldgLoss": "4828", "sL_StrLoss": "4430", "sL_NStrLoss": "398", "sL_ContLoss": "57", "geom_point": "0101000020E61000000F0F61FC345A5EC0F868D4F06BB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.408234700999941, 49.394186596000054 ], [ -121.407357597, 49.393504700000122 ], [ -121.407190992999944, 49.393237890000087 ], [ -121.407132495999988, 49.392965800000106 ], [ -121.407205482000037, 49.392647895000039 ], [ -121.407226235999957, 49.392624045000019 ], [ -121.407376902999943, 49.39245049000003 ], [ -121.407935483999978, 49.392131598000027 ], [ -121.408452079999918, 49.391898945000037 ], [ -121.409780824999956, 49.391955355000043 ], [ -121.409639039999931, 49.393382788000032 ], [ -121.411072473, 49.393443624000028 ], [ -121.411002694999922, 49.394146306000039 ], [ -121.411438905999944, 49.394164816000114 ], [ -121.411173718999947, 49.396835336000017 ], [ -121.410346684999922, 49.396713595000044 ], [ -121.410016789999986, 49.396590506000102 ], [ -121.409933114999902, 49.396530213000105 ], [ -121.409932425999898, 49.396514668000066 ], [ -121.409928886999978, 49.396434414000034 ], [ -121.409982708999976, 49.396350999000092 ], [ -121.410348911999947, 49.396135704000081 ], [ -121.410495282999989, 49.395939892000015 ], [ -121.410542045999961, 49.395588709000023 ], [ -121.410565789999964, 49.395410004000027 ], [ -121.410412022999964, 49.395153694000058 ], [ -121.410161285, 49.394969099000114 ], [ -121.409966853999919, 49.394895989000055 ], [ -121.408539001999884, 49.394359203000128 ], [ -121.408427794, 49.394296115 ], [ -121.408234700999941, 49.394186596000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109727084", "BldgCostT": "74938334", "sL_LossRatio": "0.98266310361143", "sL_AssetLoss": "93036.26", "sL_BldgLoss": "91423.3", "sL_StrLoss": "81881.4", "sL_NStrLoss": "9541.9", "sL_ContLoss": "1612.96", "geom_point": "0101000020E6100000348D795F4D5C5EC0D6A357A0E9B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.43968929, 49.391276998000059 ], [ -121.438989206999963, 49.390474707000088 ], [ -121.437323493999941, 49.388555913000111 ], [ -121.437293593999939, 49.388313910000072 ], [ -121.437454220999882, 49.387903201000029 ], [ -121.438624897999958, 49.388128418000058 ], [ -121.441740109999927, 49.388678208000094 ], [ -121.44208550099998, 49.387861392000097 ], [ -121.444632332999944, 49.388306681000074 ], [ -121.444885198999927, 49.388350890000083 ], [ -121.44686580299998, 49.388714695000097 ], [ -121.446651407999965, 49.389210590000104 ], [ -121.446280795999968, 49.390074198000079 ], [ -121.445607686999978, 49.391726591000157 ], [ -121.444734203999985, 49.391282208000064 ], [ -121.440938799999984, 49.392704713000029 ], [ -121.440358584999927, 49.39204280400002 ], [ -121.43968929, 49.391276998000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258599575", "BldgCostT": "164378871", "sL_LossRatio": "0.799663554377265", "sL_AssetLoss": "92597.43", "sL_BldgLoss": "74046.79", "sL_StrLoss": "60905.59", "sL_NStrLoss": "13141.2", "sL_ContLoss": "18550.64", "geom_point": "0101000020E61000007EF43C6EAE5B5EC021D7B0536AB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.426501505999951, 49.382736303000073 ], [ -121.425808436999915, 49.38222704000006 ], [ -121.425809289999975, 49.382200314000094 ], [ -121.428288334999962, 49.382234050000079 ], [ -121.428296940999957, 49.381964300000107 ], [ -121.428945454999933, 49.381973117000072 ], [ -121.42625948499996, 49.381859521000074 ], [ -121.42630520299997, 49.381397468000038 ], [ -121.426248313999935, 49.38139669300007 ], [ -121.426239697999975, 49.381666442000082 ], [ -121.425826527999931, 49.381660816000064 ], [ -121.4258179099999, 49.381930565000083 ], [ -121.425567923999949, 49.381927160000039 ], [ -121.42555656399999, 49.382041961 ], [ -121.425258371999973, 49.381822844000027 ], [ -121.425222997999938, 49.38179680800009 ], [ -121.42512029999989, 49.381597222 ], [ -121.423854956999946, 49.380452778000141 ], [ -121.42430517299999, 49.380471834000033 ], [ -121.424274948999951, 49.380777170000052 ], [ -121.425402954999981, 49.38082490500004 ], [ -121.425400924999906, 49.38084542100006 ], [ -121.42543922199998, 49.380845943000104 ], [ -121.425456462999961, 49.380306445000073 ], [ -121.42586962199999, 49.380312073000056 ], [ -121.425876508999949, 49.38009648700011 ], [ -121.423726376999952, 49.380005493000084 ], [ -121.426982092999978, 49.378436506000185 ], [ -121.422789406999925, 49.377735880000046 ], [ -121.423661215999942, 49.375209403000049 ], [ -121.42575299399995, 49.375375456 ], [ -121.428969345999946, 49.375617016 ], [ -121.429374850999977, 49.375629651000054 ], [ -121.430389847999933, 49.375613939000033 ], [ -121.433074899999923, 49.37537213300007 ], [ -121.433946698999975, 49.37528449400012 ], [ -121.434947856999941, 49.375185252000051 ], [ -121.436361459999944, 49.375084413000074 ], [ -121.437652486, 49.374898180000052 ], [ -121.438585876999952, 49.374619243000069 ], [ -121.439524787999986, 49.374214319000039 ], [ -121.439629985999971, 49.374147167000082 ], [ -121.439894881999948, 49.373978115000064 ], [ -121.440075958999955, 49.373862563000039 ], [ -121.440551824999957, 49.373558809000016 ], [ -121.440891559999926, 49.373469456000066 ], [ -121.441258590999979, 49.373424524000058 ], [ -121.441634867999937, 49.373439479000091 ], [ -121.441578544999942, 49.373731071000044 ], [ -121.44165507299999, 49.374115719000031 ], [ -121.44166511499995, 49.374158109000085 ], [ -121.441718749999964, 49.374384556000116 ], [ -121.441778624, 49.374637196000123 ], [ -121.44202019, 49.375656811000084 ], [ -121.442197495999935, 49.37599792000006 ], [ -121.442416328999954, 49.376421933000117 ], [ -121.442865639, 49.377081078000074 ], [ -121.44248400099994, 49.377218292000038 ], [ -121.441614075999937, 49.377537805000067 ], [ -121.440385890999949, 49.377995488000067 ], [ -121.441029613999945, 49.378710615000081 ], [ -121.438813406999955, 49.379552187000058 ], [ -121.437214607999948, 49.380131260000041 ], [ -121.437117412999939, 49.380026144000048 ], [ -121.434286102999948, 49.381118492000013 ], [ -121.435058198999954, 49.381971701000083 ], [ -121.432429713999966, 49.382921090000103 ], [ -121.431985276999939, 49.382631797000016 ], [ -121.431654007999938, 49.382789091000113 ], [ -121.431365283999952, 49.382848990000042 ], [ -121.431074493000025, 49.382847600000112 ], [ -121.430398289999928, 49.382712606000027 ], [ -121.42960631299999, 49.382633093000031 ], [ -121.428448082999935, 49.382631102000062 ], [ -121.427210991, 49.38279970200005 ], [ -121.426792786999954, 49.382789207000052 ], [ -121.426501505999951, 49.382736303000073 ] ], [ [ -121.430773191999947, 49.382085410000094 ], [ -121.43077430699995, 49.382050425000024 ], [ -121.429948713999977, 49.382015530000018 ], [ -121.42994103499997, 49.382256511000101 ], [ -121.430199414999919, 49.382260020000032 ], [ -121.430218993000011, 49.38206198600011 ], [ -121.430773191999947, 49.382085410000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.990253079299213", "sL_AssetLoss": "1291.69", "sL_BldgLoss": "1279.1", "sL_StrLoss": "1188", "sL_NStrLoss": "91.1", "sL_ContLoss": "12.59", "geom_point": "0101000020E610000083F844C7235B5EC04C1BAB20C8B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.42398719699996, 49.381707088000013 ], [ -121.423107509999937, 49.380335604000081 ], [ -121.423065202999936, 49.38021051400009 ], [ -121.423477187999978, 49.380227956000063 ], [ -121.423456598999977, 49.380435915000092 ], [ -121.423854956999946, 49.380452778000141 ], [ -121.42512029999989, 49.381597222 ], [ -121.425113503999981, 49.381600886000072 ], [ -121.424789197999971, 49.381694053000089 ], [ -121.424591946999939, 49.381750728000029 ], [ -121.424364821, 49.381815972000069 ], [ -121.424207122000027, 49.381861272000023 ], [ -121.42398719699996, 49.381707088000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60817834", "BldgCostT": "41943334", "sL_LossRatio": "0.991979059566142", "sL_AssetLoss": "33516.02", "sL_BldgLoss": "33247.19", "sL_StrLoss": "31343.02", "sL_NStrLoss": "1904.17", "sL_ContLoss": "268.83", "geom_point": "0101000020E61000001E9B7862715A5EC04E1F0DE9E8AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.422267386999977, 49.375584506000045 ], [ -121.420366316999932, 49.375162894000034 ], [ -121.419441205999973, 49.375177086000093 ], [ -121.417517609999933, 49.375447701000034 ], [ -121.414855114999938, 49.376463207000029 ], [ -121.41416159, 49.37656150000003 ], [ -121.4138326899999, 49.376530097000042 ], [ -121.412588402999972, 49.376216803000027 ], [ -121.41177630199995, 49.375799509000096 ], [ -121.410306275999986, 49.374799695000029 ], [ -121.409499878999952, 49.374131822000095 ], [ -121.409500448999935, 49.374126088000054 ], [ -121.409492551999946, 49.374125753000072 ], [ -121.409300398, 49.373966605000078 ], [ -121.40803150699999, 49.373149095000052 ], [ -121.407133399999907, 49.372417005000059 ], [ -121.406340283999953, 49.371961033000083 ], [ -121.40642300499999, 49.371128425000052 ], [ -121.401711483999975, 49.370928086000042 ], [ -121.401939509999977, 49.368635168000026 ], [ -121.402116494999987, 49.368723211000045 ], [ -121.402885552999976, 49.369129170000122 ], [ -121.40383514199999, 49.369630416000092 ], [ -121.404675953999941, 49.370048524000012 ], [ -121.407713566999945, 49.371109496000024 ], [ -121.407844563999959, 49.371155264000066 ], [ -121.408418589999897, 49.371383173000012 ], [ -121.40849747099999, 49.371414483000066 ], [ -121.409230699999924, 49.371705604000091 ], [ -121.410864029999971, 49.372584356000068 ], [ -121.410907189999975, 49.372607585000011 ], [ -121.411883802, 49.373133008000089 ], [ -121.413608199999885, 49.373998791000091 ], [ -121.41421620899996, 49.374222103000058 ], [ -121.414304445000013, 49.374245143000067 ], [ -121.414946003999916, 49.374412584000041 ], [ -121.414971187999981, 49.37441674500009 ], [ -121.415572817999958, 49.374515898000055 ], [ -121.41717149399993, 49.3746756150001 ], [ -121.417787493000034, 49.374726286000083 ], [ -121.420882488999936, 49.374980890000046 ], [ -121.422579562999928, 49.375120471000045 ], [ -121.423661215999942, 49.375209403000049 ], [ -121.422789406999925, 49.377735880000046 ], [ -121.426982092999978, 49.378436506000185 ], [ -121.423726376999952, 49.380005493000084 ], [ -121.422985251999947, 49.379974119000067 ], [ -121.422527088, 49.37861939000009 ], [ -121.4225653, 49.377431687000083 ], [ -121.422885794999928, 49.37644749400004 ], [ -121.422885187999952, 49.376095704000186 ], [ -121.42270288499995, 49.37576960200002 ], [ -121.422267386999977, 49.375584506000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63851416", "BldgCostT": "43771666", "sL_LossRatio": "0.993953365096091", "sL_AssetLoss": "34235.902", "sL_BldgLoss": "34028.89", "sL_StrLoss": "32592.59", "sL_NStrLoss": "1436.3", "sL_ContLoss": "207.012", "geom_point": "0101000020E61000002DDFE984C65A5EC0A18FC7467FB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.414618412, 49.380907465000064 ], [ -121.414271277999944, 49.380867455000057 ], [ -121.413675492999957, 49.380853891000136 ], [ -121.413695582999964, 49.380789676000042 ], [ -121.413933970999921, 49.380028065000062 ], [ -121.414544278999969, 49.378139595000093 ], [ -121.414680019999977, 49.377719704000114 ], [ -121.414478530999986, 49.377006588000057 ], [ -121.414492889999934, 49.377007189000039 ], [ -121.415061018999936, 49.376924602000038 ], [ -121.41600770699992, 49.376587089000033 ], [ -121.417097988999942, 49.376080099000049 ], [ -121.419084803999965, 49.375558796000121 ], [ -121.420132286999959, 49.375537511000061 ], [ -121.420788718999916, 49.375689902000047 ], [ -121.421068394999935, 49.376035905000052 ], [ -121.421350706999974, 49.378360201000064 ], [ -121.421916506999949, 49.379194783000095 ], [ -121.42218694599994, 49.379991995000104 ], [ -121.422159842999974, 49.379991625000045 ], [ -121.422154067999926, 49.380171937000028 ], [ -121.42224935899999, 49.380175971000043 ], [ -121.422269210999971, 49.380234491000088 ], [ -121.422774118999925, 49.381294096000062 ], [ -121.423495488999933, 49.382065696000076 ], [ -121.4234948499999, 49.38206588 ], [ -121.423335010999921, 49.382111805000093 ], [ -121.422954580999914, 49.382067694000057 ], [ -121.422166111999971, 49.381835923000068 ], [ -121.421918800999961, 49.381763209000106 ], [ -121.42165401699999, 49.381730605000023 ], [ -121.421353574999941, 49.381693638000066 ], [ -121.420990825999979, 49.381649003000099 ], [ -121.419841083999984, 49.381507502000012 ], [ -121.418267392999894, 49.381315501000095 ], [ -121.415385191999988, 49.380995813000119 ], [ -121.414618412, 49.380907465000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.995126185071438", "sL_AssetLoss": "599.12", "sL_BldgLoss": "596.2", "sL_StrLoss": "573", "sL_NStrLoss": "23.2", "sL_ContLoss": "2.92", "geom_point": "0101000020E6100000AB2D0AF593565EC07E31BEDCE5B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.352730558999951, 49.383078678000061 ], [ -121.351884602999959, 49.381194290000046 ], [ -121.352868807, 49.381281703000091 ], [ -121.353333591999956, 49.381280896000092 ], [ -121.353401841, 49.381270224000112 ], [ -121.353217931999936, 49.383099627000028 ], [ -121.352730558999951, 49.383078678000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.992321647048897", "sL_AssetLoss": "711.09", "sL_BldgLoss": "705.63", "sL_StrLoss": "675", "sL_NStrLoss": "30.63", "sL_ContLoss": "5.46", "geom_point": "0101000020E6100000BBF9DBD80B5A5EC0D25D4C12CFAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.406139351999983, 49.373983297000045 ], [ -121.406285784999952, 49.372509540000088 ], [ -121.407112097999942, 49.3730194890001 ], [ -121.408440193999965, 49.374081057000097 ], [ -121.406139351999983, 49.373983297000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26806833", "BldgCostT": "17013333", "sL_LossRatio": "0.98848277964994", "sL_AssetLoss": "11445.47", "sL_BldgLoss": "11313.65", "sL_StrLoss": "10452.85", "sL_NStrLoss": "860.8", "sL_ContLoss": "131.82", "geom_point": "0101000020E61000005F0FC39A0C5A5EC0DDF1C3948AB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.405623168999966, 49.39716292200012 ], [ -121.405657209999944, 49.396820549000083 ], [ -121.405220976999928, 49.396802016000052 ], [ -121.405362908999976, 49.395374596000146 ], [ -121.40392942299998, 49.39531368500009 ], [ -121.404286626999948, 49.391721998000087 ], [ -121.408452079999918, 49.391898945000037 ], [ -121.407935483999978, 49.392131598000027 ], [ -121.407376902999943, 49.39245049000003 ], [ -121.407226235999957, 49.392624045000019 ], [ -121.407205482000037, 49.392647895000039 ], [ -121.407132495999988, 49.392965800000106 ], [ -121.407190992999944, 49.393237890000087 ], [ -121.407357597, 49.393504700000122 ], [ -121.408234700999941, 49.394186596000054 ], [ -121.408427794, 49.394296115 ], [ -121.408539001999884, 49.394359203000128 ], [ -121.409966853999919, 49.394895989000055 ], [ -121.410161285, 49.394969099000114 ], [ -121.410412022999964, 49.395153694000058 ], [ -121.410565789999964, 49.395410004000027 ], [ -121.410542045999961, 49.395588709000023 ], [ -121.410495282999989, 49.395939892000015 ], [ -121.410348911999947, 49.396135704000081 ], [ -121.409982708999976, 49.396350999000092 ], [ -121.409928886999978, 49.396434414000034 ], [ -121.409932425999898, 49.396514668000066 ], [ -121.409933114999902, 49.396530213000105 ], [ -121.410016789999986, 49.396590506000102 ], [ -121.410346684999922, 49.396713595000044 ], [ -121.411173718999947, 49.396835336000017 ], [ -121.411108520999932, 49.397491860000073 ], [ -121.405623168999966, 49.39716292200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "294254303", "BldgCostT": "200668746", "sL_LossRatio": "0.975566550425009", "sL_AssetLoss": "153734.33", "sL_BldgLoss": "149978.07", "sL_StrLoss": "135316.57", "sL_NStrLoss": "14661.5", "sL_ContLoss": "3756.26", "geom_point": "0101000020E6100000651C972FB7595EC04F86C2EB23B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.392386009999925, 49.392060181000012 ], [ -121.392387022999912, 49.392050024000127 ], [ -121.391463178999956, 49.392010656000103 ], [ -121.391469603999937, 49.391946235000056 ], [ -121.390968654999938, 49.391924885000073 ], [ -121.391050271999973, 49.39037548500005 ], [ -121.391439610999939, 49.389298343000057 ], [ -121.388370413999922, 49.38945608100002 ], [ -121.388421124, 49.388947889000107 ], [ -121.38753183399993, 49.388909957000067 ], [ -121.387599790999985, 49.388229026000069 ], [ -121.385520408999966, 49.388140305 ], [ -121.385522034999923, 49.388124012000077 ], [ -121.38479508599994, 49.388092985000078 ], [ -121.384796302, 49.388080818000063 ], [ -121.384057160999973, 49.388049266000081 ], [ -121.384223913999932, 49.386379602000012 ], [ -121.384009965999951, 49.386370469000049 ], [ -121.384368647999949, 49.38277880000004 ], [ -121.38443027799994, 49.382781431000062 ], [ -121.384504181999887, 49.382041302000047 ], [ -121.385191792999962, 49.382070655000135 ], [ -121.385198955999954, 49.381998917000026 ], [ -121.385281608999918, 49.382002446000087 ], [ -121.385296112999953, 49.381857165000085 ], [ -121.385345085999958, 49.381366619000048 ], [ -121.386641818999962, 49.381421962000104 ], [ -121.386650432999943, 49.381335650000061 ], [ -121.387521237, 49.381372806000094 ], [ -121.387534601, 49.381238871000065 ], [ -121.388224554999979, 49.381268306000102 ], [ -121.388228665999932, 49.381142649000054 ], [ -121.388641823999961, 49.38114841 ], [ -121.388650645000013, 49.3808786660001 ], [ -121.392189106999979, 49.380927942000049 ], [ -121.392362216, 49.379191280000022 ], [ -121.397854865999975, 49.379425246000061 ], [ -121.397822794999968, 49.379747385000016 ], [ -121.399258839999931, 49.379808508000096 ], [ -121.39924693599994, 49.379928121000063 ], [ -121.400773907999977, 49.379993094000042 ], [ -121.400899287999962, 49.378732881000111 ], [ -121.401708326999938, 49.378767297000095 ], [ -121.401746771999939, 49.378380799000055 ], [ -121.407239374999975, 49.378614290000023 ], [ -121.407172513999967, 49.379287250000061 ], [ -121.40854065, 49.379345366000102 ], [ -121.408569376999978, 49.378455970000118 ], [ -121.40815623899999, 49.37845028100012 ], [ -121.408217235999956, 49.376562055000129 ], [ -121.407804112999941, 49.376556365000098 ], [ -121.407812829999926, 49.376286619000034 ], [ -121.407399708, 49.376280927000032 ], [ -121.407434579999986, 49.375201941000071 ], [ -121.408673914999966, 49.375219011000119 ], [ -121.408656492999953, 49.375758504000025 ], [ -121.409069609, 49.375764192000148 ], [ -121.409060900999975, 49.376033939000081 ], [ -121.409310664999964, 49.376037376000099 ], [ -121.409426632999924, 49.374869489000105 ], [ -121.40974559199999, 49.375124414000041 ], [ -121.410661712999982, 49.375739697000078 ], [ -121.411932884999942, 49.376477401000102 ], [ -121.413199787999957, 49.376953113000091 ], [ -121.414478530999986, 49.377006588000057 ], [ -121.414680019999977, 49.377719704000114 ], [ -121.414544278999969, 49.378139595000093 ], [ -121.413933970999921, 49.380028065000062 ], [ -121.413695582999964, 49.380789676000042 ], [ -121.413675492999957, 49.380853891000136 ], [ -121.414271277999944, 49.380867455000057 ], [ -121.414618412, 49.380907465000064 ], [ -121.415385191999988, 49.380995813000119 ], [ -121.418267392999894, 49.381315501000095 ], [ -121.419841083999984, 49.381507502000012 ], [ -121.420990825999979, 49.381649003000099 ], [ -121.421353574999941, 49.381693638000066 ], [ -121.42165401699999, 49.381730605000023 ], [ -121.421918800999961, 49.381763209000106 ], [ -121.422166111999971, 49.381835923000068 ], [ -121.422954580999914, 49.382067694000057 ], [ -121.423335010999921, 49.382111805000093 ], [ -121.424142429, 49.382712737000134 ], [ -121.424259800999977, 49.382800089000092 ], [ -121.42429285399993, 49.382849448000051 ], [ -121.424331912999975, 49.382907778000096 ], [ -121.424330094999959, 49.383036701000044 ], [ -121.423936285999929, 49.383504205000044 ], [ -121.423785412999976, 49.383594304000034 ], [ -121.423472394999976, 49.383649607000066 ], [ -121.422819526999973, 49.383766197000043 ], [ -121.422617816999974, 49.383853305000081 ], [ -121.422360795999964, 49.384025395000108 ], [ -121.422127627999899, 49.384239579000095 ], [ -121.421898083999935, 49.384450391 ], [ -121.42170470399995, 49.384592787000074 ], [ -121.421211801999931, 49.384836268000043 ], [ -121.421177942, 49.384835805000122 ], [ -121.42117809199999, 49.384831081000108 ], [ -121.419769963999954, 49.38477143900009 ], [ -121.41979485, 49.384520304000077 ], [ -121.418865149999988, 49.384480916000101 ], [ -121.418897967999925, 49.384149804000018 ], [ -121.417547626999976, 49.384092581000104 ], [ -121.417556017999914, 49.384007932000081 ], [ -121.41646419700001, 49.383961652000053 ], [ -121.416466610999947, 49.383937295000074 ], [ -121.413769788999943, 49.383822932000037 ], [ -121.41374045399999, 49.384733976000085 ], [ -121.41167449299995, 49.384705606000075 ], [ -121.4116831899999, 49.384435859000135 ], [ -121.410856810999945, 49.384424501000055 ], [ -121.410874212999943, 49.383885008000064 ], [ -121.410461028, 49.383879326000105 ], [ -121.410469731999953, 49.383609579000051 ], [ -121.410056548999947, 49.38360389700005 ], [ -121.410065254999964, 49.383334150000074 ], [ -121.409652074999954, 49.38332846600008 ], [ -121.409663078999955, 49.382987560000117 ], [ -121.409634682999979, 49.382986354000117 ], [ -121.409633457999973, 49.382998689000068 ], [ -121.408667075999944, 49.382957654000137 ], [ -121.408628839999935, 49.383342585000079 ], [ -121.408684821999941, 49.383344963000127 ], [ -121.408497554999911, 49.385230172000028 ], [ -121.413322083999958, 49.385434943000028 ], [ -121.413265820999953, 49.386001907000079 ], [ -121.412933316999954, 49.386110113000022 ], [ -121.412468304999919, 49.386431205000058 ], [ -121.411738305999947, 49.387033300000084 ], [ -121.411555323999949, 49.387320404 ], [ -121.411462104999941, 49.387592306000045 ], [ -121.411469506999964, 49.387768502000071 ], [ -121.41158949, 49.387990004000095 ], [ -121.412026590999957, 49.38840801200007 ], [ -121.412032377999964, 49.388585889000112 ], [ -121.4118611909999, 49.388893310000121 ], [ -121.411464505999959, 49.38930478700005 ], [ -121.41123690699996, 49.389652209000083 ], [ -121.411135988999959, 49.389904901000094 ], [ -121.411102700999933, 49.390281314000028 ], [ -121.411013786999931, 49.390454310000052 ], [ -121.410858803999986, 49.390626296000065 ], [ -121.410723810999983, 49.390725856000117 ], [ -121.408206975000013, 49.390619011000126 ], [ -121.40838449499995, 49.388832259000033 ], [ -121.407471763999979, 49.388793497000108 ], [ -121.407659086999914, 49.386908299000062 ], [ -121.40283442899999, 49.386703276000027 ], [ -121.402848585999948, 49.386560943000099 ], [ -121.402254017999923, 49.386535661000067 ], [ -121.402263004999952, 49.386445326000029 ], [ -121.40169440399994, 49.386421146000046 ], [ -121.401707922999961, 49.386285266000058 ], [ -121.400140759999985, 49.386218605000053 ], [ -121.400175592999958, 49.385868614000039 ], [ -121.399834373999965, 49.385854097000049 ], [ -121.399891608999951, 49.38527902000007 ], [ -121.399557199999961, 49.385264791000061 ], [ -121.399619807999969, 49.384635765000041 ], [ -121.39905612299998, 49.384611779000096 ], [ -121.399097684999958, 49.384194242000078 ], [ -121.399008241999979, 49.384190436000061 ], [ -121.398987495999947, 49.384398838000088 ], [ -121.39670794099996, 49.384301807000028 ], [ -121.396542981999971, 49.385958091000127 ], [ -121.396278244999976, 49.385946819000054 ], [ -121.396204707999956, 49.38668509700009 ], [ -121.39562151899996, 49.386660264000106 ], [ -121.395601547999945, 49.386860741000049 ], [ -121.395608216999932, 49.386861025000051 ], [ -121.395516215000015, 49.387784527000051 ], [ -121.395600777999974, 49.387788128000103 ], [ -121.395557202999939, 49.388225502000132 ], [ -121.39599909099995, 49.388244318000062 ], [ -121.395973572999964, 49.388500471000057 ], [ -121.399064503999981, 49.388632036000075 ], [ -121.398706918999977, 49.392223722000047 ], [ -121.397890659999916, 49.39218898700004 ], [ -121.397880188999977, 49.39229414200004 ], [ -121.392386009999925, 49.392060181000012 ] ], [ [ -121.394788090999953, 49.384086112000034 ], [ -121.395824461999894, 49.383619188000097 ], [ -121.39688856399999, 49.383519446000065 ], [ -121.396628783999944, 49.382092467000042 ], [ -121.395685867999958, 49.381798032000049 ], [ -121.395318130999911, 49.381684073000052 ], [ -121.395304607999961, 49.3816798900001 ], [ -121.394817182999958, 49.381572375000111 ], [ -121.391727511999989, 49.381529063000059 ], [ -121.392488966999935, 49.383709669000027 ], [ -121.392457803999974, 49.384437004000077 ], [ -121.392422606999972, 49.385481752000025 ], [ -121.392417154999976, 49.385643595000083 ], [ -121.392412427999943, 49.38578448600002 ], [ -121.393855992999974, 49.385840117000043 ], [ -121.394039730999936, 49.385259098000063 ], [ -121.394788090999953, 49.384086112000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.991232406275204", "sL_AssetLoss": "384.37", "sL_BldgLoss": "381", "sL_StrLoss": "356", "sL_NStrLoss": "25", "sL_ContLoss": "3.37", "geom_point": "0101000020E6100000CC6241E508585EC0EE0FAD7817B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.374936520999981, 49.38311546700001 ], [ -121.376176035999961, 49.383132887000066 ], [ -121.376149360999946, 49.383942113000067 ], [ -121.374909826999939, 49.383924692000093 ], [ -121.374936520999981, 49.38311546700001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37775583", "BldgCostT": "25788333", "sL_LossRatio": "0.99413390988653", "sL_AssetLoss": "20197.269", "sL_BldgLoss": "20078.79", "sL_StrLoss": "19351.59", "sL_NStrLoss": "727.2", "sL_ContLoss": "118.479", "geom_point": "0101000020E6100000CFD7B0CF31575EC03F4EA0A1E2B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.362220889999918, 49.384564084000012 ], [ -121.362384016999954, 49.382938306000042 ], [ -121.358822945999961, 49.382887793000044 ], [ -121.358826610000037, 49.382777840000088 ], [ -121.358770675999907, 49.383334894000043 ], [ -121.35327775899998, 49.383098947000079 ], [ -121.353462551999954, 49.381260730000079 ], [ -121.354762780999963, 49.381057404000103 ], [ -121.355294898999915, 49.381045107000034 ], [ -121.355542407999934, 49.38112151000005 ], [ -121.356025385999914, 49.381324407000136 ], [ -121.356371108999937, 49.381383505000066 ], [ -121.356799678999906, 49.381414494000097 ], [ -121.357107003999914, 49.381402392000034 ], [ -121.357548121999983, 49.381308702000084 ], [ -121.358485531999975, 49.381202800000068 ], [ -121.358589696999957, 49.381099099000075 ], [ -121.358049485999985, 49.380880290000079 ], [ -121.357887286, 49.380814616000038 ], [ -121.358072603999943, 49.38079548200011 ], [ -121.358390269999958, 49.380762711000024 ], [ -121.35899798399997, 49.380699999000079 ], [ -121.359249347999977, 49.380663039000083 ], [ -121.359871879999929, 49.380571521000022 ], [ -121.360184903999951, 49.380525502000069 ], [ -121.361262499999896, 49.380300302000073 ], [ -121.361453662999963, 49.380252961000032 ], [ -121.362330192999963, 49.38003589200013 ], [ -121.362511976999954, 49.379973143000015 ], [ -121.363040655999924, 49.379790567000136 ], [ -121.363075915999929, 49.379778392000105 ], [ -121.365647599999988, 49.378744520000119 ], [ -121.365659315999963, 49.378739800000062 ], [ -121.367561608999921, 49.377974956000067 ], [ -121.36757431299992, 49.377969859000075 ], [ -121.367575652999946, 49.377969319 ], [ -121.367254605999946, 49.381172847000066 ], [ -121.368073957999982, 49.381207955000072 ], [ -121.367870833999945, 49.383234926000064 ], [ -121.367714025999987, 49.384799577000081 ], [ -121.362220889999918, 49.384564084000012 ] ], [ [ -121.362492168999907, 49.381860366000097 ], [ -121.362519205999945, 49.381590882000111 ], [ -121.36078919, 49.381566361000111 ], [ -121.360762143000017, 49.381835844000122 ], [ -121.362492168999907, 49.381860366000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.986984275570869", "sL_AssetLoss": "4016.68", "sL_BldgLoss": "3964.4", "sL_StrLoss": "3622", "sL_NStrLoss": "342.4", "sL_ContLoss": "52.28", "geom_point": "0101000020E6100000FD0AFC55BE575EC0D1E7A38C38B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.37108726299995, 49.374895335000112 ], [ -121.372387074999978, 49.374921568000097 ], [ -121.372079227999905, 49.377996794000083 ], [ -121.367947449999946, 49.377819828000021 ], [ -121.368013323, 49.37779334100005 ], [ -121.368536195999951, 49.377583101000056 ], [ -121.368536443999957, 49.377583021000135 ], [ -121.368967377999965, 49.37741086100003 ], [ -121.369141526999968, 49.37734414400007 ], [ -121.370251591999988, 49.376667324000096 ], [ -121.370251731999986, 49.37666704800013 ], [ -121.37025307199994, 49.376664711000039 ], [ -121.370622676999943, 49.376020521000044 ], [ -121.370776650999943, 49.375763999000057 ], [ -121.37091294199999, 49.375536840000052 ], [ -121.37108726299995, 49.374895335000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.880712293499249", "sL_AssetLoss": "9322", "sL_BldgLoss": "8210", "sL_StrLoss": "5620", "sL_NStrLoss": "2590", "sL_ContLoss": "1112", "geom_point": "0101000020E610000028F87D6A82775EC0DB0ED3DFC7904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.864390065999956, 49.132273831000084 ], [ -121.864568395, 49.130268504000114 ], [ -121.870033923999969, 49.130478587000049 ], [ -121.870030085999929, 49.130521807000029 ], [ -121.87241084599998, 49.130613230000108 ], [ -121.872419360999956, 49.130517293000082 ], [ -121.873148942999961, 49.130545299000104 ], [ -121.866527545999986, 49.132040273000037 ], [ -121.864390065999956, 49.132273831000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.96325774095072", "sL_AssetLoss": "7337.6", "sL_BldgLoss": "7068", "sL_StrLoss": "6219", "sL_NStrLoss": "849", "sL_ContLoss": "269.6", "geom_point": "0101000020E61000009D16D5850C755EC0F8E868B0848C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.826319755999961, 49.095895988000066 ], [ -121.831781080999946, 49.096108025000063 ], [ -121.831459118999973, 49.099702666000034 ], [ -121.825997375999933, 49.099490614000061 ], [ -121.826319755999961, 49.095895988000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8252917", "BldgCostT": "5691667", "sL_LossRatio": "0.971770602489489", "sL_AssetLoss": "9656.6", "sL_BldgLoss": "9384", "sL_StrLoss": "8386", "sL_NStrLoss": "998", "sL_ContLoss": "272.6", "geom_point": "0101000020E610000018F2843540745EC04B34924EEE8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.814866153999901, 49.094931727000073 ], [ -121.814900575999943, 49.094548929000076 ], [ -121.812884709999963, 49.094470375000085 ], [ -121.812917350999953, 49.0941075490001 ], [ -121.811611490999923, 49.094056642000027 ], [ -121.81164056599998, 49.093733534000108 ], [ -121.811831264999938, 49.091614293000077 ], [ -121.818012990999989, 49.091791171000047 ], [ -121.817999060999938, 49.091062394000048 ], [ -121.818668744999954, 49.091088464000045 ], [ -121.818634355999961, 49.09147126700006 ], [ -121.8206501, 49.09154971300007 ], [ -121.820451467999959, 49.093761802000067 ], [ -121.820327312999964, 49.095144346000012 ], [ -121.819977259000012, 49.095130726 ], [ -121.819574268999943, 49.095115044000089 ], [ -121.818363634999955, 49.095067926000056 ], [ -121.814866153999901, 49.094931727000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "0.941152760983474", "sL_AssetLoss": "9924", "sL_BldgLoss": "9340", "sL_StrLoss": "7490", "sL_NStrLoss": "1850", "sL_ContLoss": "584", "geom_point": "0101000020E61000003530C1C26C755EC003A4912A658C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.83693276599999, 49.095117890000083 ], [ -121.837654707, 49.095145865000028 ], [ -121.837333206, 49.098740528000128 ], [ -121.831871547999953, 49.098528775000055 ], [ -121.832152173999972, 49.095395271000022 ], [ -121.832193469999979, 49.094934126000098 ], [ -121.83693276599999, 49.095117890000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.975114309272169", "sL_AssetLoss": "1334.1", "sL_BldgLoss": "1300.9", "sL_StrLoss": "1158", "sL_NStrLoss": "142.9", "sL_ContLoss": "33.2", "geom_point": "0101000020E61000003A6CAEDC83765EC0C27200D43F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.853128567999946, 49.121046380000109 ], [ -121.84986886199998, 49.117934142000145 ], [ -121.849541764000023, 49.117802592000039 ], [ -121.851936600999949, 49.117895041000033 ], [ -121.851799536999962, 49.119432085000028 ], [ -121.853344749000016, 49.119491707000115 ], [ -121.853196216999933, 49.121157876000055 ], [ -121.853128567999946, 49.121046380000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218100168", "BldgCostT": "149206668", "sL_LossRatio": "0.968487833187471", "sL_AssetLoss": "257433.9", "sL_BldgLoss": "249321.6", "sL_StrLoss": "218519.1", "sL_NStrLoss": "30802.5", "sL_ContLoss": "8112.3", "geom_point": "0101000020E61000003F07F94DDF765EC0880374A16A8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.879665323999973, 49.126878786000063 ], [ -121.879699147999943, 49.12649698900006 ], [ -121.878654813999972, 49.126456959000116 ], [ -121.878698189999938, 49.125967459000087 ], [ -121.877583807999926, 49.125924732000101 ], [ -121.8776402619999, 49.125287794000059 ], [ -121.874649147999904, 49.12517305500009 ], [ -121.874701496999975, 49.124582844 ], [ -121.873260036999923, 49.124527519000019 ], [ -121.873431192999959, 49.122598364000034 ], [ -121.869274521999941, 49.122438719000087 ], [ -121.869521864999982, 49.119653341000102 ], [ -121.86754033699999, 49.119577179000068 ], [ -121.86785965099989, 49.115982541000079 ], [ -121.8688601599999, 49.116021001000021 ], [ -121.868932712999964, 49.115203961000049 ], [ -121.867328403999977, 49.115142285000069 ], [ -121.867461118000023, 49.113648276000063 ], [ -121.867091989999935, 49.113634082000047 ], [ -121.86723787699998, 49.111991796000027 ], [ -121.867183094999945, 49.111989689000055 ], [ -121.867490745999945, 49.108526039000076 ], [ -121.86512514099995, 49.108435043000057 ], [ -121.865413634999967, 49.105188445000088 ], [ -121.861616123999937, 49.105042257000029 ], [ -121.861758136999939, 49.103445385000043 ], [ -121.861245809999943, 49.103425652000105 ], [ -121.86129506499999, 49.102871849000046 ], [ -121.86125624499999, 49.102870353000078 ], [ -121.861261203999945, 49.102814597000076 ], [ -121.859797699999902, 49.102758215000044 ], [ -121.859893315999926, 49.101683491000074 ], [ -121.859039742000022, 49.101650597000059 ], [ -121.859085541999917, 49.101135898000102 ], [ -121.856655991999943, 49.101042235000079 ], [ -121.8567153799999, 49.10037519900002 ], [ -121.856031413000025, 49.100348820000114 ], [ -121.856058171999933, 49.100048307000115 ], [ -121.85492489399999, 49.100004591000051 ], [ -121.855040035999963, 49.098711815000058 ], [ -121.853492746999933, 49.098652109000071 ], [ -121.853206925999984, 49.101859841000092 ], [ -121.852325547999911, 49.101825820000094 ], [ -121.852010670999931, 49.105358359000036 ], [ -121.849257180999942, 49.105252032000124 ], [ -121.849069160999989, 49.10735972300008 ], [ -121.848260112999967, 49.10732846800002 ], [ -121.847969693999943, 49.110583039000026 ], [ -121.842506598999961, 49.110371830000069 ], [ -121.842600691999934, 49.10931880800014 ], [ -121.840529998, 49.109238680000082 ], [ -121.840599168999944, 49.10846492600011 ], [ -121.83549517499992, 49.1082672470001 ], [ -121.835590375999928, 49.107203588000104 ], [ -121.834822617999961, 49.107173832000072 ], [ -121.83485094599996, 49.106857378000043 ], [ -121.832640463999937, 49.106771674000122 ], [ -121.832714746999926, 49.105942271000053 ], [ -121.83253431199995, 49.105935274000018 ], [ -121.832566337999964, 49.105577694000033 ], [ -121.830801375999954, 49.105509228000123 ], [ -121.830865884999966, 49.104789240000052 ], [ -121.830602612999925, 49.104779024000059 ], [ -121.830730308999989, 49.103353849000065 ], [ -121.828888944999932, 49.10328238200006 ], [ -121.828910061999949, 49.103046809000098 ], [ -121.829211128999972, 49.099687770000138 ], [ -121.834672911999959, 49.099899657000073 ], [ -121.834628161999902, 49.100399617000072 ], [ -121.835466169999975, 49.100432102000063 ], [ -121.835491046999962, 49.100154121000052 ], [ -121.839027791, 49.100291151000128 ], [ -121.839032221999915, 49.100241593000085 ], [ -121.837383246999948, 49.100177719000087 ], [ -121.83770475299994, 49.09658306300004 ], [ -121.837934023999935, 49.096591945000036 ], [ -121.838029796999976, 49.095520967000049 ], [ -121.839881314999914, 49.095592682000081 ], [ -121.839938826999955, 49.094949251000052 ], [ -121.839934962999948, 49.094949101000118 ], [ -121.839984681999951, 49.094392841000058 ], [ -121.840119847999944, 49.092880528000137 ], [ -121.839117987999927, 49.092841726000145 ], [ -121.839018309999958, 49.093956722 ], [ -121.838927962999932, 49.094967302000029 ], [ -121.836911589999943, 49.094889181000077 ], [ -121.833466739999935, 49.094755628000058 ], [ -121.833788511999984, 49.091160953000021 ], [ -121.83884009, 49.091356760000025 ], [ -121.838845465999952, 49.091296636000045 ], [ -121.838402334999927, 49.091279470000131 ], [ -121.838573711999942, 49.089362582000106 ], [ -121.835124242999939, 49.089228887000054 ], [ -121.835445847999907, 49.085634176000063 ], [ -121.836949021999942, 49.085692451000092 ], [ -121.836883530999927, 49.087055828000089 ], [ -121.836863669999985, 49.088388866000066 ], [ -121.842085920000031, 49.088141702000065 ], [ -121.842494692999978, 49.088349611000091 ], [ -121.84271990499991, 49.088404296000093 ], [ -121.843072450999969, 49.088405345000098 ], [ -121.84494900599995, 49.08841083700004 ], [ -121.846290730999954, 49.088414775000039 ], [ -121.848057855999969, 49.088419884000103 ], [ -121.8530349, 49.088434198000115 ], [ -121.853032700999961, 49.092072799000043 ], [ -121.852993418, 49.095635100000031 ], [ -121.854067511999943, 49.095641944000043 ], [ -121.856081302999968, 49.095654725000038 ], [ -121.856875696999964, 49.095659782000062 ], [ -121.858002093999986, 49.095666898000097 ], [ -121.85804951899999, 49.095673435000023 ], [ -121.858374296999955, 49.095718192000064 ], [ -121.858614793999919, 49.095895195000089 ], [ -121.858757598999972, 49.096214508000045 ], [ -121.858749519999918, 49.09673729800005 ], [ -121.85881931099999, 49.097291800000043 ], [ -121.8590036, 49.097684898000061 ], [ -121.859164912999958, 49.097904807000141 ], [ -121.859368785999919, 49.098045209000134 ], [ -121.860032616999931, 49.098357625000105 ], [ -121.860111783, 49.098394903000063 ], [ -121.860361724999933, 49.098512695000082 ], [ -121.860378199999914, 49.098518862000105 ], [ -121.861243592999955, 49.09884159300006 ], [ -121.861608998999884, 49.098923288000023 ], [ -121.862668819999968, 49.099038099000033 ], [ -121.86360951099999, 49.099353807000092 ], [ -121.869369589999962, 49.099399596000026 ], [ -121.874907706999963, 49.099414011000121 ], [ -121.87490452899999, 49.099971473000096 ], [ -121.874904358999942, 49.100000095000027 ], [ -121.874888186999968, 49.102843320000026 ], [ -121.87488718899999, 49.103015706000065 ], [ -121.876533011999953, 49.103029201000034 ], [ -121.877331370999954, 49.104041538000118 ], [ -121.878198502999965, 49.10514101000004 ], [ -121.879025515999928, 49.105783204000033 ], [ -121.879235711999968, 49.106103124000079 ], [ -121.879297195, 49.106196702000062 ], [ -121.879406067, 49.106263553000048 ], [ -121.879427113999938, 49.106276499000103 ], [ -121.879498854999923, 49.106299928000027 ], [ -121.879624301999968, 49.10634088500003 ], [ -121.879787730999965, 49.106339337000101 ], [ -121.880019186999917, 49.106337101000058 ], [ -121.880015399999976, 49.106589954000128 ], [ -121.880012981999968, 49.106747993000091 ], [ -121.879495103999957, 49.107490112000058 ], [ -121.879347959999933, 49.107488077000028 ], [ -121.879239096, 49.107486604000094 ], [ -121.878796682999976, 49.107174795000027 ], [ -121.878483118999924, 49.107125792000062 ], [ -121.87786290799994, 49.10742939600005 ], [ -121.877430320999963, 49.108630095000137 ], [ -121.876620116999959, 49.109113004000022 ], [ -121.876552197999942, 49.110033788000116 ], [ -121.876501991999973, 49.110251546000029 ], [ -121.876414285999928, 49.110631707000024 ], [ -121.875770091999982, 49.110987604000073 ], [ -121.874818341999926, 49.111214319000041 ], [ -121.874687914, 49.111245396000129 ], [ -121.873290633999943, 49.111246419000061 ], [ -121.871230013999963, 49.111247896000059 ], [ -121.871658790000012, 49.111888128 ], [ -121.871810821999986, 49.112115100000061 ], [ -121.871784908999942, 49.112352615000056 ], [ -121.871685885999966, 49.113260904000072 ], [ -121.871145595999948, 49.114128405000031 ], [ -121.87080556399998, 49.114857024000024 ], [ -121.870715700999952, 49.115049590000069 ], [ -121.870866432999946, 49.115637442000043 ], [ -121.870887789000022, 49.115720805000159 ], [ -121.870795266999949, 49.11597788300007 ], [ -121.870760418999964, 49.116074786000084 ], [ -121.870771504999965, 49.116181698000041 ], [ -121.870859808999981, 49.116268005000109 ], [ -121.871530795999902, 49.116672965000092 ], [ -121.871796515999932, 49.116833312000068 ], [ -121.871634890999957, 49.117495300000051 ], [ -121.87167730500002, 49.117728606000071 ], [ -121.872313317999911, 49.118160692000053 ], [ -121.872752510999987, 49.118355198000067 ], [ -121.872932275999958, 49.118398991000099 ], [ -121.873237003999947, 49.118409795000055 ], [ -121.87361371899999, 49.118335004000116 ], [ -121.873776354999919, 49.118266892000136 ], [ -121.874037913999985, 49.118157399000047 ], [ -121.874650898999931, 49.117891493000073 ], [ -121.875207197999941, 49.117939894000102 ], [ -121.875496900999977, 49.118073710000097 ], [ -121.876750793999975, 49.119514898000048 ], [ -121.876914608999954, 49.119600588000061 ], [ -121.877057387999955, 49.119643896000071 ], [ -121.877300208999955, 49.119656812000116 ], [ -121.877431696999935, 49.11964289900007 ], [ -121.877799812, 49.119510087000037 ], [ -121.878354401, 49.119130082000019 ], [ -121.878481111000013, 49.119092606000031 ], [ -121.878608612999955, 49.119092 ], [ -121.879866484999965, 49.119499105000102 ], [ -121.880217289999948, 49.119871493000105 ], [ -121.881067091999938, 49.121033012000076 ], [ -121.881271892999976, 49.12186320800005 ], [ -121.88158861, 49.122125102000055 ], [ -121.88188, 49.122627693000084 ], [ -121.882043097999983, 49.123216397000085 ], [ -121.88250039199994, 49.123981514000057 ], [ -121.882973177999972, 49.124292599000071 ], [ -121.883213010999924, 49.124354993000075 ], [ -121.883440195999967, 49.124313206000089 ], [ -121.884215207999958, 49.123951587000121 ], [ -121.885807989999947, 49.122542790000089 ], [ -121.88811947, 49.120972099000028 ], [ -121.889100300999971, 49.120871590000043 ], [ -121.889648996999981, 49.120990897000105 ], [ -121.890409295999945, 49.120452807000085 ], [ -121.891040802999953, 49.120597688000075 ], [ -121.891733910999903, 49.120898282000034 ], [ -121.892987820999949, 49.120015562000077 ], [ -121.894756391999977, 49.118770400000109 ], [ -121.894871912999946, 49.118734193000066 ], [ -121.894956305999969, 49.11874100100006 ], [ -121.895205620999945, 49.118867799000078 ], [ -121.895394110999945, 49.118920987000081 ], [ -121.895688401999976, 49.118956608000055 ], [ -121.896224406999934, 49.11886249700013 ], [ -121.897034793999978, 49.118843804000058 ], [ -121.899373806999947, 49.118665293000063 ], [ -121.899540784999971, 49.118636507000112 ], [ -121.899718598999954, 49.118562989000026 ], [ -121.90013489299993, 49.118319194000087 ], [ -121.900235475999949, 49.118303747 ], [ -121.900332178999975, 49.118288905000057 ], [ -121.90055350599999, 49.11829730900012 ], [ -121.900706405999983, 49.118350904000103 ], [ -121.901352599999967, 49.118732707000056 ], [ -121.901626484999923, 49.118922516000026 ], [ -121.90184249499994, 49.118990308000079 ], [ -121.902328677999961, 49.119072812000063 ], [ -121.902517698999972, 49.119074610000048 ], [ -121.902886611999946, 49.119166207000035 ], [ -121.903254901999929, 49.11929570700002 ], [ -121.903608301999938, 49.119297406000079 ], [ -121.904888621999945, 49.119125308000051 ], [ -121.905160302999946, 49.119153705000059 ], [ -121.905445502999939, 49.119370108000041 ], [ -121.905750217999937, 49.119444 ], [ -121.907412792999963, 49.11928821300004 ], [ -121.90770231, 49.11922250800005 ], [ -121.909030114999965, 49.118665300000039 ], [ -121.909176301999977, 49.118639398000035 ], [ -121.90901951799998, 49.118785806000048 ], [ -121.90857700399999, 49.119017811000141 ], [ -121.907725507999942, 49.119394801000141 ], [ -121.906859408999964, 49.119640043000039 ], [ -121.906783874999931, 49.119661415000046 ], [ -121.905943099999931, 49.119899483000033 ], [ -121.905768298999959, 49.119907208000058 ], [ -121.905481983999948, 49.11985849000007 ], [ -121.904875803999943, 49.119645107000103 ], [ -121.904631285999969, 49.119588897000057 ], [ -121.904206704999964, 49.1195852930001 ], [ -121.902346298999987, 49.119821913000173 ], [ -121.901928315999911, 49.119805987000092 ], [ -121.900899877000015, 49.119670300000038 ], [ -121.900450088999904, 49.119672994000055 ], [ -121.900146017999944, 49.119761243000021 ], [ -121.899008198999979, 49.120091390000027 ], [ -121.8985836899999, 49.120086899000114 ], [ -121.898081086, 49.120144398000086 ], [ -121.896941774999945, 49.120550800000082 ], [ -121.896761694, 49.120650407000035 ], [ -121.896707989000021, 49.120714985000113 ], [ -121.892111093999972, 49.122871718000098 ], [ -121.889897637999979, 49.122787112000069 ], [ -121.88979411699998, 49.123958624000046 ], [ -121.886378830999917, 49.125560567000015 ], [ -121.885506654, 49.125993939000047 ], [ -121.88522826799999, 49.125983284000043 ], [ -121.885214482999984, 49.126139112000011 ], [ -121.883435112999933, 49.127023199000092 ], [ -121.879665323999973, 49.126878786000063 ] ], [ [ -121.874436729999928, 49.107444646000033 ], [ -121.874525944999931, 49.106438411000113 ], [ -121.87420509599994, 49.106426092000042 ], [ -121.87432277299996, 49.105098880000071 ], [ -121.872943128, 49.105045901000068 ], [ -121.872876246999937, 49.10579995900013 ], [ -121.872832352999978, 49.105798273000104 ], [ -121.872692262999976, 49.107377659000065 ], [ -121.874436729999928, 49.107444646000033 ] ], [ [ -121.851203577999939, 49.092495057000079 ], [ -121.851250502999974, 49.091968606000059 ], [ -121.849619253999961, 49.091905593000099 ], [ -121.849614933999987, 49.091954056000134 ], [ -121.84846427199993, 49.091909592000015 ], [ -121.84837891599993, 49.092866565000087 ], [ -121.849739178999982, 49.092919127000123 ], [ -121.849781889, 49.092440139000082 ], [ -121.851203577999939, 49.092495057000079 ] ], [ [ -121.844465142999923, 49.10077741800005 ], [ -121.844398244999951, 49.101526581000094 ], [ -121.845529587999934, 49.101570332000051 ], [ -121.846564483999899, 49.101610343000097 ], [ -121.846382532999925, 49.103648863000046 ], [ -121.84668089199999, 49.103660397000084 ], [ -121.846869003999927, 49.101552697000024 ], [ -121.847750374999947, 49.101586762000061 ], [ -121.847811047999969, 49.100906776000045 ], [ -121.845660622999972, 49.100823650000095 ], [ -121.844465142999923, 49.10077741800005 ] ], [ [ -121.841019051999965, 49.102332194000049 ], [ -121.841101351999953, 49.101411329000072 ], [ -121.840860293999981, 49.101401998000064 ], [ -121.840777990000035, 49.102322863000133 ], [ -121.841019051999965, 49.102332194000049 ] ], [ [ -121.841863073999917, 49.105035571000087 ], [ -121.841805398999938, 49.105680989000049 ], [ -121.843730876999985, 49.105755483000067 ], [ -121.843788525999969, 49.105110063000076 ], [ -121.841863073999917, 49.105035571000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7588333", "BldgCostT": "5233333", "sL_LossRatio": "0.940417824688505", "sL_AssetLoss": "12809.2", "sL_BldgLoss": "12046", "sL_StrLoss": "8879", "sL_NStrLoss": "3167", "sL_ContLoss": "763.2", "geom_point": "0101000020E6100000D382599997795EC02DFAD8974B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.89979429399996, 49.089853035000075 ], [ -121.900945572999973, 49.088618483000118 ], [ -121.900504811999937, 49.087911193000103 ], [ -121.898522739999947, 49.088119531000103 ], [ -121.896527572999929, 49.087532914000043 ], [ -121.894950914, 49.087905833000036 ], [ -121.893838225999929, 49.087880654000045 ], [ -121.894003136999956, 49.086010978000097 ], [ -121.899463608999923, 49.086219581000066 ], [ -121.899419376999973, 49.086721751000063 ], [ -121.902593933999981, 49.086842897000096 ], [ -121.902372366999941, 49.089360099000075 ], [ -121.903538558999983, 49.089404580000064 ], [ -121.903538013999977, 49.089410772000107 ], [ -121.904051840999969, 49.089430366000101 ], [ -121.904034972999966, 49.089622077000094 ], [ -121.904480239999955, 49.089639055000099 ], [ -121.904468577999921, 49.089771593000101 ], [ -121.905175322999938, 49.089798537000071 ], [ -121.904989646000033, 49.091909225000052 ], [ -121.904712221999944, 49.091906576 ], [ -121.903836353999964, 49.091143269000057 ], [ -121.901890296999937, 49.090874618000029 ], [ -121.901625976999981, 49.090158082000073 ], [ -121.89979429399996, 49.089853035000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0.888046226074395", "sL_AssetLoss": "553.8", "sL_BldgLoss": "491.8", "sL_StrLoss": "90.8", "sL_NStrLoss": "401", "sL_ContLoss": "62", "geom_point": "0101000020E61000005DEDF693107A5EC020D933B69D8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.906760332999909, 49.089351793000041 ], [ -121.907826229999955, 49.089392404000051 ], [ -121.908027773999947, 49.091934980000076 ], [ -121.90802823699994, 49.091938173000102 ], [ -121.906190077999952, 49.091920671000075 ], [ -121.906212626999903, 49.091664287000043 ], [ -121.906555832, 49.091677365000081 ], [ -121.906760332999909, 49.089351793000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.935894403609635", "sL_AssetLoss": "10992.8", "sL_BldgLoss": "10288.1", "sL_StrLoss": "7356.1", "sL_NStrLoss": "2932", "sL_ContLoss": "704.7", "geom_point": "0101000020E6100000398C3853D77A5EC0EE2ABD99458B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.924005705999917, 49.089556412000036 ], [ -121.914978372999926, 49.088492100000018 ], [ -121.913925182999961, 49.08849807100006 ], [ -121.914064969999984, 49.08690546 ], [ -121.914929194999928, 49.086938332000052 ], [ -121.919525635999946, 49.087113043000031 ], [ -121.919525026999906, 49.08711999300003 ], [ -121.924203478000024, 49.087297619000047 ], [ -121.924005705999917, 49.089556412000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40650583", "BldgCostT": "27538333", "sL_LossRatio": "0.927702813568325", "sL_AssetLoss": "59117.1", "sL_BldgLoss": "54843.1", "sL_StrLoss": "39363.8", "sL_NStrLoss": "15479.3", "sL_ContLoss": "4274", "geom_point": "0101000020E61000009266DA9B2B765EC099076EACDD8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.836863669999985, 49.088388866000066 ], [ -121.836883530999927, 49.087055828000089 ], [ -121.836949021999942, 49.085692451000092 ], [ -121.83805772699999, 49.085735420000063 ], [ -121.838066290999933, 49.085639631000078 ], [ -121.837458425999955, 49.085633510000065 ], [ -121.837464723999915, 49.085363701000112 ], [ -121.837053946999958, 49.085359562000079 ], [ -121.837068177999981, 49.084750236000126 ], [ -121.837072851999949, 49.084550136000111 ], [ -121.838162711999956, 49.084561112000088 ], [ -121.838202920999962, 49.084111338000135 ], [ -121.839973377999968, 49.084179929000136 ], [ -121.840173258, 49.081942979000083 ], [ -121.840248216999896, 49.081945883000103 ], [ -121.8404966, 49.079165778000046 ], [ -121.845956026999943, 49.07937710000008 ], [ -121.845832407999964, 49.0807626060001 ], [ -121.845837616999987, 49.080762808000046 ], [ -121.845516846999914, 49.084357576000038 ], [ -121.845436675, 49.08435447500009 ], [ -121.845342161999952, 49.085413530000089 ], [ -121.84712908599991, 49.085482637000048 ], [ -121.847140887999913, 49.085350355000045 ], [ -121.849440967999968, 49.085439265000048 ], [ -121.849467152999978, 49.08514556700009 ], [ -121.848998899999941, 49.085127471000085 ], [ -121.849319408000014, 49.081532696000117 ], [ -121.854779153999985, 49.081743570000093 ], [ -121.854619416999952, 49.083537595000102 ], [ -121.85508765499999, 49.083555666000095 ], [ -121.854860455, 49.086107419000015 ], [ -121.855097613999973, 49.086116572000051 ], [ -121.855032097, 49.086852399000072 ], [ -121.85814525699999, 49.086972493000076 ], [ -121.858049934999968, 49.088043822000039 ], [ -121.8530349, 49.088434198000115 ], [ -121.848057855999969, 49.088419884000103 ], [ -121.846290730999954, 49.088414775000039 ], [ -121.84494900599995, 49.08841083700004 ], [ -121.843072450999969, 49.088405345000098 ], [ -121.84271990499991, 49.088404296000093 ], [ -121.842494692999978, 49.088349611000091 ], [ -121.842085920000031, 49.088141702000065 ], [ -121.836863669999985, 49.088388866000066 ] ], [ [ -121.844432345999948, 49.087072210000073 ], [ -121.844539564999948, 49.085871095000073 ], [ -121.844630920999975, 49.085874629000052 ], [ -121.84464443499995, 49.085723243000089 ], [ -121.843541689999981, 49.085680573000069 ], [ -121.843420928999961, 49.087033074000011 ], [ -121.844432345999948, 49.087072210000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27578250", "BldgCostT": "18810000", "sL_LossRatio": "0.847543198235607", "sL_AssetLoss": "62253.7", "sL_BldgLoss": "52762.7", "sL_StrLoss": "35233.7", "sL_NStrLoss": "17529", "sL_ContLoss": "9491", "geom_point": "0101000020E6100000AEA73551747B5EC0272E0948E28A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93984908399996, 49.089829067000025 ], [ -121.939870093999986, 49.08958818100006 ], [ -121.937216882, 49.089563780000056 ], [ -121.937222640999934, 49.089293962000113 ], [ -121.936811818999971, 49.089290179000081 ], [ -121.936823342999972, 49.08875054300011 ], [ -121.936412524, 49.088746759000074 ], [ -121.936422062999938, 49.088300273000058 ], [ -121.93317067, 49.088177224000034 ], [ -121.93318877699997, 49.087969951000048 ], [ -121.931990942999946, 49.087924593000054 ], [ -121.931995008999948, 49.087878065000041 ], [ -121.929737168999964, 49.087792533000076 ], [ -121.929840241999955, 49.086613627000098 ], [ -121.929320327999946, 49.086593925000081 ], [ -121.929320745999945, 49.086589150000094 ], [ -121.928329995999917, 49.086551598000078 ], [ -121.928366556999933, 49.086133552000078 ], [ -121.926631162999925, 49.086067754000069 ], [ -121.926872986999982, 49.083303790000109 ], [ -121.923653315999928, 49.083181639000053 ], [ -121.923565823000018, 49.084180910000065 ], [ -121.91810548299999, 49.08397353099999 ], [ -121.918120013999982, 49.083807786000143 ], [ -121.917510372, 49.08378461500007 ], [ -121.917514276, 49.083740104000057 ], [ -121.915782616999962, 49.083674269000056 ], [ -121.915806474999897, 49.083402310000054 ], [ -121.914816095999967, 49.083364644000021 ], [ -121.914295182999965, 49.083344830000058 ], [ -121.91446926199994, 49.08136111 ], [ -121.914753360999939, 49.081382049000105 ], [ -121.917999002999977, 49.081621183000053 ], [ -121.919135264999909, 49.08167552599999 ], [ -121.920022259999953, 49.081717926000103 ], [ -121.923240297999925, 49.081871706000079 ], [ -121.925496184999986, 49.081982159000034 ], [ -121.92757690699996, 49.082083992000072 ], [ -121.928468806999916, 49.08222151000011 ], [ -121.928950905999955, 49.082346187000056 ], [ -121.929406175999972, 49.082496007000046 ], [ -121.931102887999927, 49.083236948000092 ], [ -121.931627578999951, 49.083466090000059 ], [ -121.931764446, 49.083525849000054 ], [ -121.932503771999905, 49.083848696000068 ], [ -121.933618572999976, 49.084344490000056 ], [ -121.933795796999945, 49.084423282000053 ], [ -121.935137284999939, 49.085012453000076 ], [ -121.935757140999982, 49.085285682000084 ], [ -121.935963539999932, 49.085376697000136 ], [ -121.937251473999936, 49.085944565000034 ], [ -121.939014757999956, 49.086723611000046 ], [ -121.939439756999917, 49.086911555000015 ], [ -121.939915507999942, 49.087121938000124 ], [ -121.940041705999946, 49.0871777750001 ], [ -121.940152214999912, 49.087226613000048 ], [ -121.940716048999903, 49.087475933000078 ], [ -121.940949770999978, 49.087579532000063 ], [ -121.941000517999953, 49.087602030000021 ], [ -121.940846815, 49.089846286000075 ], [ -121.93984908399996, 49.089829067000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77490500", "BldgCostT": "51440000", "sL_LossRatio": "0.885957147334217", "sL_AssetLoss": "181879", "sL_BldgLoss": "161137", "sL_StrLoss": "105346", "sL_NStrLoss": "55791", "sL_ContLoss": "20742", "geom_point": "0101000020E610000052F2C19D91785EC0705A53CD6A8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.902223130999928, 49.085188601 ], [ -121.902254230999958, 49.084835265000045 ], [ -121.901541829999957, 49.084808083000055 ], [ -121.901571488999977, 49.084471174000079 ], [ -121.901068636999938, 49.084451985000086 ], [ -121.901064122999969, 49.08450324800009 ], [ -121.900471252, 49.084480620000129 ], [ -121.900470297999931, 49.084491462000088 ], [ -121.89905371499998, 49.084437382000075 ], [ -121.89904664, 49.084517696000091 ], [ -121.89358637, 49.08430907100017 ], [ -121.893623412999943, 49.083889114000037 ], [ -121.893385613999953, 49.083880022000059 ], [ -121.8933665859999, 49.084095733000019 ], [ -121.887906391999977, 49.083886820000039 ], [ -121.88799991399992, 49.082827963000049 ], [ -121.886804619999964, 49.082782193000128 ], [ -121.88680913899999, 49.082731043000052 ], [ -121.886295359999963, 49.082711366000076 ], [ -121.886207471999981, 49.083706004000085 ], [ -121.885531863, 49.083680125000093 ], [ -121.885521249999911, 49.083800221000047 ], [ -121.884616942999941, 49.083765574000104 ], [ -121.884614612999911, 49.083791943000058 ], [ -121.879154491999913, 49.083582586000077 ], [ -121.879169013999928, 49.083418525000141 ], [ -121.878051864999946, 49.083375656000037 ], [ -121.878060039, 49.083283316000049 ], [ -121.877354546999953, 49.083256237000086 ], [ -121.877359016999961, 49.08320574300015 ], [ -121.875792396999941, 49.083145596000101 ], [ -121.875855212999966, 49.08243647500008 ], [ -121.875710649999974, 49.082430923000054 ], [ -121.875660701999962, 49.082994759000016 ], [ -121.870200714999939, 49.082784947000036 ], [ -121.870245596999936, 49.082278982000034 ], [ -121.870244750000012, 49.082278949000056 ], [ -121.870281437999935, 49.081865330000063 ], [ -121.870276774999951, 49.081865151000059 ], [ -121.870320517999971, 49.081372010000038 ], [ -121.870282289999921, 49.081371636000064 ], [ -121.870222427999977, 49.082046492000138 ], [ -121.868977191999988, 49.081998602000041 ], [ -121.868969878999977, 49.082081023000079 ], [ -121.867737843, 49.082033625000051 ], [ -121.86772733199993, 49.082152051000037 ], [ -121.862267479999929, 49.081941836000127 ], [ -121.862289872999909, 49.081689863000044 ], [ -121.860424732999945, 49.081617987000051 ], [ -121.860522714999917, 49.08051597800003 ], [ -121.859601573999925, 49.080480469000122 ], [ -121.859629281999929, 49.080168897000085 ], [ -121.859119877999916, 49.08014925600002 ], [ -121.859144898999972, 49.079867923000158 ], [ -121.858813584999922, 49.079855148000057 ], [ -121.858838894999963, 49.07957058400013 ], [ -121.858427987999946, 49.079554738000084 ], [ -121.858430359999915, 49.07952808100007 ], [ -121.857946673999919, 49.079509426000136 ], [ -121.857957233999969, 49.079390744000079 ], [ -121.856737539999941, 49.079343693000055 ], [ -121.856775051999975, 49.078922157000122 ], [ -121.85250902199999, 49.078757481000068 ], [ -121.852561526999978, 49.078168068000089 ], [ -121.852479058999933, 49.078164883000092 ], [ -121.852490872999951, 49.078032254000085 ], [ -121.851784343999981, 49.078004964000087 ], [ -121.851787543999976, 49.077969042000078 ], [ -121.850710608999975, 49.077927436000088 ], [ -121.85076801299995, 49.077283270000052 ], [ -121.850549643999912, 49.077274832000086 ], [ -121.8506196, 49.076489823000038 ], [ -121.848106987999969, 49.076392703000096 ], [ -121.848057941999954, 49.07694273700006 ], [ -121.842598787999918, 49.076731520000038 ], [ -121.842627645999983, 49.07640833699999 ], [ -121.843209752999954, 49.07632383100006 ], [ -121.843366416999928, 49.076301092000023 ], [ -121.844831085999957, 49.076033102000032 ], [ -121.84559570299993, 49.075858910000115 ], [ -121.845957692999932, 49.075715995000103 ], [ -121.846193825999961, 49.07574233000004 ], [ -121.846673627999934, 49.075795820000089 ], [ -121.853179029999964, 49.076520787000085 ], [ -121.85391060299996, 49.076602283000042 ], [ -121.855425216999919, 49.076768939000026 ], [ -121.858503778999989, 49.077107531000067 ], [ -121.859559781999963, 49.077223658000044 ], [ -121.860047510999962, 49.077277297000151 ], [ -121.860378016, 49.077334298000068 ], [ -121.86081359, 49.077449945000026 ], [ -121.861037598999957, 49.077509418000055 ], [ -121.861211294, 49.077557589000087 ], [ -121.861359577999949, 49.077646845000025 ], [ -121.86163379599999, 49.077811898000085 ], [ -121.862723512999963, 49.078649294000066 ], [ -121.863231811, 49.078970981000111 ], [ -121.863507089999985, 49.079109600000088 ], [ -121.864106578999966, 49.079297690000097 ], [ -121.864498134999963, 49.079382152000122 ], [ -121.864732881999942, 49.07943280300006 ], [ -121.866023468999941, 49.079614075000045 ], [ -121.86629656199996, 49.07965245400009 ], [ -121.869217016, 49.080062593000015 ], [ -121.869709632999971, 49.080114328000029 ], [ -121.869894107000036, 49.080133696000054 ], [ -121.870153991999985, 49.080137401000087 ], [ -121.871010701, 49.080043120000028 ], [ -121.872145695999976, 49.079918207000034 ], [ -121.87236686199995, 49.079892470000082 ], [ -121.872887786999954, 49.079831852 ], [ -121.873966859999911, 49.079706297000065 ], [ -121.874388788, 49.079657209000032 ], [ -121.874904199999918, 49.079621103000072 ], [ -121.87547992099999, 49.079616105000099 ], [ -121.876012692999922, 49.079708706000162 ], [ -121.876822488999935, 49.07993109500007 ], [ -121.877732771999916, 49.080181051000061 ], [ -121.878201952, 49.08030987500009 ], [ -121.87852099199992, 49.080397509000072 ], [ -121.878983971999958, 49.080488711000029 ], [ -121.879162997999984, 49.080523996000046 ], [ -121.879661793999958, 49.080567500000043 ], [ -121.882378668999976, 49.080581141000032 ], [ -121.887370500999936, 49.080605995000099 ], [ -121.888144048999948, 49.080606322000023 ], [ -121.890759536999937, 49.08060733100011 ], [ -121.892718, 49.0806080300001 ], [ -121.893662721999959, 49.080608355000045 ], [ -121.894059198999926, 49.08060851400009 ], [ -121.895205011999977, 49.080598193000078 ], [ -121.896351209999963, 49.080552698000069 ], [ -121.896364774999981, 49.080551611000033 ], [ -121.89808272, 49.080413745000122 ], [ -121.900424142999924, 49.080225795000075 ], [ -121.904150839999957, 49.079926515000118 ], [ -121.904534500999944, 49.079895695000076 ], [ -121.905274865999971, 49.079907968000114 ], [ -121.90566281199996, 49.0799144040001 ], [ -121.906045415999941, 49.079955095000066 ], [ -121.906349392999942, 49.080017207000019 ], [ -121.908192980999956, 49.080521795000045 ], [ -121.909626014999901, 49.080913995000103 ], [ -121.910021054999959, 49.080986519000092 ], [ -121.910177191999978, 49.081015211000135 ], [ -121.91097478399999, 49.081103305000099 ], [ -121.911804812999961, 49.08116469000003 ], [ -121.912338151999961, 49.081204035000098 ], [ -121.912922752999989, 49.081247117000018 ], [ -121.912819987999924, 49.082417772000028 ], [ -121.912166455999952, 49.082392900000123 ], [ -121.912122783999934, 49.08289028700009 ], [ -121.910500044999949, 49.082828511000073 ], [ -121.910445845999973, 49.083445526000027 ], [ -121.910106137999975, 49.083432591000069 ], [ -121.909993597999943, 49.084713633000085 ], [ -121.907751100999931, 49.084628216000027 ], [ -121.907683541999944, 49.085396786000103 ], [ -121.902223130999928, 49.085188601 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.932014560429459", "sL_AssetLoss": "2719.7", "sL_BldgLoss": "2534.8", "sL_StrLoss": "1818.8", "sL_NStrLoss": "716", "sL_ContLoss": "184.9", "geom_point": "0101000020E61000001B87762574785EC0711A05353A8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.879792049999963, 49.087231141000103 ], [ -121.885252599999916, 49.087440466000061 ], [ -121.88521586399996, 49.087856078000101 ], [ -121.879702109000021, 49.088293935000074 ], [ -121.87969795099994, 49.088294295000026 ], [ -121.879792049999963, 49.087231141000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19347833", "BldgCostT": "13343333", "sL_LossRatio": "0.94402258849776", "sL_AssetLoss": "34424.6", "sL_BldgLoss": "32497.6", "sL_StrLoss": "26285.1", "sL_NStrLoss": "6212.5", "sL_ContLoss": "1927", "geom_point": "0101000020E6100000CDF6F8EF077B5EC00119F859FE8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.913460298999922, 49.097573518000026 ], [ -121.913564857, 49.095830732000103 ], [ -121.913493151999944, 49.09508682200002 ], [ -121.913462601000035, 49.092080193000037 ], [ -121.913063729999962, 49.092079379000033 ], [ -121.908579888999952, 49.092070112000023 ], [ -121.90842108399994, 49.092115485000129 ], [ -121.907850017999976, 49.092846700000052 ], [ -121.907449495999984, 49.093008202000078 ], [ -121.906087688999975, 49.093196091000088 ], [ -121.906077892, 49.093196229000071 ], [ -121.906190077999952, 49.091920671000075 ], [ -121.90802823699994, 49.091938173000102 ], [ -121.908027773999947, 49.091934980000076 ], [ -121.907826229999955, 49.089392404000051 ], [ -121.912221253, 49.08955974600012 ], [ -121.912058276999915, 49.091415577000127 ], [ -121.914953157999918, 49.09152570100018 ], [ -121.91503883299994, 49.090549437000114 ], [ -121.913749420999963, 49.090500396000053 ], [ -121.913925182999961, 49.08849807100006 ], [ -121.914978372999926, 49.088492100000018 ], [ -121.924005705999917, 49.089556412000036 ], [ -121.923991058999931, 49.089723699000011 ], [ -121.926457651999954, 49.089817265000036 ], [ -121.926180770999949, 49.092981082000051 ], [ -121.928415981999962, 49.093065821000046 ], [ -121.928406839, 49.093170355000034 ], [ -121.931914169999942, 49.093303228000067 ], [ -121.931750084, 49.095180601000038 ], [ -121.932987200999946, 49.095192043000104 ], [ -121.932992983999981, 49.094922225000047 ], [ -121.933580696999968, 49.094927657000035 ], [ -121.933662478999935, 49.093991550000119 ], [ -121.935490031999947, 49.094060709000097 ], [ -121.935494303999974, 49.094011794000075 ], [ -121.936166536, 49.094037224000054 ], [ -121.936250325999964, 49.093077510000043 ], [ -121.936934514999933, 49.09310338800001 ], [ -121.936937295999925, 49.093071525000077 ], [ -121.938971184999971, 49.093148430000035 ], [ -121.938939078999923, 49.09602575100012 ], [ -121.939267816999916, 49.096070409000063 ], [ -121.939415127999951, 49.096313095000049 ], [ -121.939052319999945, 49.09646800800008 ], [ -121.938439719999963, 49.096580121000088 ], [ -121.938235438999968, 49.096644517000115 ], [ -121.937898716999882, 49.096845511000069 ], [ -121.93656000499999, 49.097397221000065 ], [ -121.936407941999988, 49.097334671000112 ], [ -121.935243003999929, 49.09757466000012 ], [ -121.934001764999948, 49.097559240000059 ], [ -121.933872891999954, 49.097468317000036 ], [ -121.933188767999923, 49.096985629000052 ], [ -121.932982591999988, 49.096977821000074 ], [ -121.932800911999905, 49.097222531000099 ], [ -121.932343243999966, 49.097051008000086 ], [ -121.930603635999944, 49.09728270600008 ], [ -121.929688440999925, 49.097283209000118 ], [ -121.929376112999961, 49.097219961000093 ], [ -121.927794272999989, 49.097214128000104 ], [ -121.927462892999955, 49.097087044 ], [ -121.927135821999954, 49.097020544000031 ], [ -121.926909758999955, 49.097001069000065 ], [ -121.926426003999907, 49.096959372000093 ], [ -121.925795896999915, 49.09675514100006 ], [ -121.924279081999913, 49.096679570000042 ], [ -121.923614463999968, 49.096681400000108 ], [ -121.923209815999925, 49.096765246000061 ], [ -121.922338038999939, 49.096786265000091 ], [ -121.921837837999931, 49.096763950000081 ], [ -121.921386866999953, 49.096743842000052 ], [ -121.921092957999988, 49.096767852000028 ], [ -121.920809001999956, 49.096849939000016 ], [ -121.919757642999969, 49.097309573000075 ], [ -121.919316652999925, 49.097448831000058 ], [ -121.919109482999943, 49.09754554900006 ], [ -121.918847805999974, 49.097764639000047 ], [ -121.918666404999968, 49.097848839000108 ], [ -121.918479605999934, 49.097901254000107 ], [ -121.918244070999961, 49.097931090000053 ], [ -121.918140484999952, 49.097932632000095 ], [ -121.917087620999951, 49.097948444000096 ], [ -121.91658596399995, 49.098060132000029 ], [ -121.916052048, 49.098274281000101 ], [ -121.91547062199993, 49.098670584000033 ], [ -121.91534542, 49.098720937000124 ], [ -121.915151062999897, 49.098799114000109 ], [ -121.915033654999903, 49.098794640000072 ], [ -121.914697009999912, 49.098696187000058 ], [ -121.914435522999938, 49.098662794000056 ], [ -121.914375254, 49.098637761000091 ], [ -121.914210836999985, 49.098569488000066 ], [ -121.914076691999952, 49.098474203000123 ], [ -121.913897118999927, 49.098178821000069 ], [ -121.91344071599994, 49.097899962000021 ], [ -121.9134425069999, 49.097870009000076 ], [ -121.913460298999922, 49.097573518000026 ] ], [ [ -121.918658969999981, 49.09529882300005 ], [ -121.918756185999953, 49.094190139000027 ], [ -121.916766694000017, 49.094114540000135 ], [ -121.916671649999955, 49.09519794200002 ], [ -121.915708555999984, 49.095161333000085 ], [ -121.915696318999949, 49.095300780000045 ], [ -121.916744307999949, 49.095310620000141 ], [ -121.916751700999924, 49.09522634899999 ], [ -121.918658969999981, 49.09529882300005 ] ], [ [ -121.920722369999936, 49.092739809000086 ], [ -121.920894211999894, 49.090778915000037 ], [ -121.920499320999966, 49.090763919000047 ], [ -121.920327463999968, 49.092724812000036 ], [ -121.920722369999936, 49.092739809000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752667", "BldgCostT": "5346667", "sL_LossRatio": "0.943422048580581", "sL_AssetLoss": "13079.3", "sL_BldgLoss": "12339.3", "sL_StrLoss": "10016.9", "sL_NStrLoss": "2322.4", "sL_ContLoss": "740", "geom_point": "0101000020E6100000968C4A879A775EC09D36DBC3FB8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.869604095999975, 49.097270793000078 ], [ -121.869703095999981, 49.096155249000091 ], [ -121.86465269699994, 49.095960962000028 ], [ -121.864783927999966, 49.094483949000036 ], [ -121.863271742, 49.09442573000009 ], [ -121.863378950999945, 49.093219455000046 ], [ -121.862791201999954, 49.093196820000081 ], [ -121.863110700999982, 49.089602050000032 ], [ -121.868571453999962, 49.089812221000031 ], [ -121.86846438799995, 49.091018507000101 ], [ -121.869052111999963, 49.091041110000027 ], [ -121.869035957999941, 49.09122315000009 ], [ -121.872820195999935, 49.091368611000064 ], [ -121.872606450999982, 49.093779155000092 ], [ -121.875384358999966, 49.093885847000067 ], [ -121.875065777999964, 49.097480631000103 ], [ -121.869604095999975, 49.097270793000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51946334", "BldgCostT": "35353334", "sL_LossRatio": "0.943646617795922", "sL_AssetLoss": "89897", "sL_BldgLoss": "84831", "sL_StrLoss": "67959", "sL_NStrLoss": "16872", "sL_ContLoss": "5066", "geom_point": "0101000020E6100000E2142DAB76785EC09E946A1B568C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.88530630199989, 49.106704701000076 ], [ -121.88411462199997, 49.106544493000072 ], [ -121.883219585999925, 49.106623896000087 ], [ -121.883078358999981, 49.10659244300011 ], [ -121.882770869999931, 49.106523960000082 ], [ -121.882357094999946, 49.106431821000065 ], [ -121.881904010999961, 49.106330893000099 ], [ -121.880019186999917, 49.106337101000058 ], [ -121.879787730999965, 49.106339337000101 ], [ -121.879624301999968, 49.10634088500003 ], [ -121.879498854999923, 49.106299928000027 ], [ -121.879427113999938, 49.106276499000103 ], [ -121.879406067, 49.106263553000048 ], [ -121.879297195, 49.106196702000062 ], [ -121.879235711999968, 49.106103124000079 ], [ -121.879025515999928, 49.105783204000033 ], [ -121.878198502999965, 49.10514101000004 ], [ -121.877331370999954, 49.104041538000118 ], [ -121.876533011999953, 49.103029201000034 ], [ -121.87488718899999, 49.103015706000065 ], [ -121.874888186999968, 49.102843320000026 ], [ -121.874904358999942, 49.100000095000027 ], [ -121.87490452899999, 49.099971473000096 ], [ -121.874907706999963, 49.099414011000121 ], [ -121.869369589999962, 49.099399596000026 ], [ -121.86360951099999, 49.099353807000092 ], [ -121.862668819999968, 49.099038099000033 ], [ -121.861608998999884, 49.098923288000023 ], [ -121.861243592999955, 49.09884159300006 ], [ -121.860378199999914, 49.098518862000105 ], [ -121.860361724999933, 49.098512695000082 ], [ -121.860111783, 49.098394903000063 ], [ -121.860032616999931, 49.098357625000105 ], [ -121.859368785999919, 49.098045209000134 ], [ -121.859164912999958, 49.097904807000141 ], [ -121.8590036, 49.097684898000061 ], [ -121.85881931099999, 49.097291800000043 ], [ -121.858749519999918, 49.09673729800005 ], [ -121.858757598999972, 49.096214508000045 ], [ -121.858614793999919, 49.095895195000089 ], [ -121.858374296999955, 49.095718192000064 ], [ -121.85804951899999, 49.095673435000023 ], [ -121.858002093999986, 49.095666898000097 ], [ -121.856875696999964, 49.095659782000062 ], [ -121.856081302999968, 49.095654725000038 ], [ -121.854067511999943, 49.095641944000043 ], [ -121.852993418, 49.095635100000031 ], [ -121.853032700999961, 49.092072799000043 ], [ -121.8530349, 49.088434198000115 ], [ -121.858049934999968, 49.088043822000039 ], [ -121.857999795999888, 49.0886073120001 ], [ -121.861888530999948, 49.088757197000085 ], [ -121.861723347999956, 49.090615279000112 ], [ -121.862211735999935, 49.090634093000077 ], [ -121.861937614999974, 49.093717591 ], [ -121.862041834, 49.093721605000063 ], [ -121.861813850999965, 49.096285856000101 ], [ -121.864143221999939, 49.096375557000094 ], [ -121.864029766999948, 49.097652250000095 ], [ -121.864087202999926, 49.097654461000076 ], [ -121.864048175999969, 49.098093619000046 ], [ -121.866052192999916, 49.098170749000097 ], [ -121.866058410999969, 49.098100745000046 ], [ -121.869261417999951, 49.098223942000061 ], [ -121.869289590999969, 49.097906522000059 ], [ -121.874508494999972, 49.098107051000063 ], [ -121.87454578799999, 49.097686347000078 ], [ -121.880007539999923, 49.097895934000071 ], [ -121.87979642499999, 49.100280619000038 ], [ -121.880255779999985, 49.100298234000086 ], [ -121.880162311999925, 49.101354050000033 ], [ -121.880214145999929, 49.101356038000077 ], [ -121.88010851300001, 49.102549234000087 ], [ -121.881148788999937, 49.102589116000061 ], [ -121.881091375999944, 49.103237761000095 ], [ -121.881622113999981, 49.103258104000084 ], [ -121.881562529999911, 49.103931357000057 ], [ -121.884266522999908, 49.10403496100006 ], [ -121.884285951999914, 49.103815297000082 ], [ -121.884906508999947, 49.103839064000098 ], [ -121.885210101999945, 49.100405710000096 ], [ -121.89067222099996, 49.100614755000052 ], [ -121.890548070999955, 49.102020710000083 ], [ -121.893374560999959, 49.102128775000025 ], [ -121.893395284999926, 49.101893910000044 ], [ -121.89368590699992, 49.101905016000039 ], [ -121.893819346999948, 49.100392706000058 ], [ -121.890166358999934, 49.100253036000076 ], [ -121.890252615999941, 49.099276257000042 ], [ -121.88819645199996, 49.099197587000049 ], [ -121.888292754999938, 49.098107567000028 ], [ -121.88820586, 49.098104241000051 ], [ -121.888112501999984, 49.099160914000066 ], [ -121.882650564999906, 49.098951739000036 ], [ -121.882889056999943, 49.096255848000069 ], [ -121.882244219999933, 49.096231134000078 ], [ -121.882433186999933, 49.094095161000055 ], [ -121.880952708999985, 49.094038406000045 ], [ -121.88123101599993, 49.090893364000124 ], [ -121.879473854999915, 49.090825975 ], [ -121.87969795099994, 49.088294295000026 ], [ -121.879702109000021, 49.088293935000074 ], [ -121.88521586399996, 49.087856078000101 ], [ -121.885045803999958, 49.089779923000023 ], [ -121.889479003999938, 49.089949658000123 ], [ -121.889373989999953, 49.091138844000042 ], [ -121.889730465999932, 49.091152484000105 ], [ -121.889768249999975, 49.090724590000065 ], [ -121.89243626399994, 49.09082664400011 ], [ -121.892472256999923, 49.090418754000012 ], [ -121.893348376999981, 49.090452252000013 ], [ -121.893530324999986, 49.08838977300011 ], [ -121.89379243499999, 49.088399793000093 ], [ -121.893838225999929, 49.087880654000045 ], [ -121.894950914, 49.087905833000036 ], [ -121.896527572999929, 49.087532914000043 ], [ -121.898522739999947, 49.088119531000103 ], [ -121.900504811999937, 49.087911193000103 ], [ -121.900945572999973, 49.088618483000118 ], [ -121.89979429399996, 49.089853035000075 ], [ -121.901625976999981, 49.090158082000073 ], [ -121.901890296999937, 49.090874618000029 ], [ -121.903836353999964, 49.091143269000057 ], [ -121.904712221999944, 49.091906576 ], [ -121.904989646000033, 49.091909225000052 ], [ -121.904988477999922, 49.091922488000144 ], [ -121.906120023999904, 49.091965616000017 ], [ -121.906011705999958, 49.093197156000016 ], [ -121.905758483999989, 49.093200704000061 ], [ -121.90545460499996, 49.093135896000035 ], [ -121.90511259, 49.092974995000077 ], [ -121.903886497999949, 49.092975197000094 ], [ -121.902754814999966, 49.093241302000074 ], [ -121.902298823999942, 49.093496645000144 ], [ -121.901777807999949, 49.0937883940001 ], [ -121.900670192999925, 49.093890414000079 ], [ -121.899851486, 49.09411790500009 ], [ -121.899499579999926, 49.094096140000062 ], [ -121.898141516999985, 49.094012100000121 ], [ -121.89724810499996, 49.094232297000076 ], [ -121.895881498, 49.095639081000094 ], [ -121.895824181999942, 49.097019298000063 ], [ -121.896011305999977, 49.097739686000082 ], [ -121.896357454999972, 49.098086070000114 ], [ -121.895838434999945, 49.098081107000041 ], [ -121.895816439000029, 49.098330541000038 ], [ -121.895712897999942, 49.099504638000077 ], [ -121.896968447999953, 49.099552593000098 ], [ -121.896981772999965, 49.099997365000085 ], [ -121.897006301999966, 49.100816182000038 ], [ -121.897031618999947, 49.101660594000094 ], [ -121.89692648799992, 49.102054320000029 ], [ -121.896755399999932, 49.102695197000124 ], [ -121.896621407999973, 49.103406892000059 ], [ -121.896602402999946, 49.103773761000085 ], [ -121.896598003999969, 49.103858694000067 ], [ -121.89610021299994, 49.104236399000072 ], [ -121.89583869099999, 49.104591593000151 ], [ -121.89565098199995, 49.105166093000101 ], [ -121.8952972969999, 49.105193966000087 ], [ -121.894556695999967, 49.105252306000096 ], [ -121.89401151, 49.105731990000031 ], [ -121.893990803999955, 49.107442591000037 ], [ -121.892873988999952, 49.107240407000099 ], [ -121.889360573999966, 49.106930304000038 ], [ -121.888877029999918, 49.10688760000005 ], [ -121.88530630199989, 49.106704701000076 ] ], [ [ -121.893971707, 49.096791585000069 ], [ -121.893984911999937, 49.096641914000045 ], [ -121.893902632999954, 49.09663876900008 ], [ -121.893889427999952, 49.09678844000009 ], [ -121.893971707, 49.096791585000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263512834", "BldgCostT": "167463334", "sL_LossRatio": "0.863423104477759", "sL_AssetLoss": "569217.8", "sL_BldgLoss": "491475.8", "sL_StrLoss": "358606", "sL_NStrLoss": "132869.8", "sL_ContLoss": "77742", "geom_point": "0101000020E6100000771F0C7E537B5EC089897A7F0B8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.918547046999976, 49.116222867000054 ], [ -121.918563471999903, 49.115145065000085 ], [ -121.918643820999961, 49.113885736000036 ], [ -121.91867183799999, 49.113704681000137 ], [ -121.918691252999963, 49.113579159000025 ], [ -121.918731470999916, 49.113500749000117 ], [ -121.918727839999946, 49.113473045000084 ], [ -121.91871360599994, 49.113363720000116 ], [ -121.918520682999926, 49.111883801000026 ], [ -121.918521004999931, 49.111645765000063 ], [ -121.918520568999966, 49.111291374000189 ], [ -121.918528541999976, 49.111059949000044 ], [ -121.91854023499999, 49.110614060000039 ], [ -121.918539779999918, 49.11054101400007 ], [ -121.918531045999927, 49.109734539000073 ], [ -121.918524614999953, 49.109292479000068 ], [ -121.91858274400002, 49.109176541000039 ], [ -121.918604177999896, 49.109159739000091 ], [ -121.918616505, 49.109150781000011 ], [ -121.918724036999947, 49.109065603000104 ], [ -121.92099589, 49.108145547000028 ], [ -121.921644872999963, 49.107979926000048 ], [ -121.923484863999974, 49.107076800000058 ], [ -121.924435839999944, 49.106497914000094 ], [ -121.925512753999939, 49.105904856000123 ], [ -121.925692749999968, 49.105758394000063 ], [ -121.925924764999976, 49.105424543000105 ], [ -121.925920961999935, 49.105186353000086 ], [ -121.926135998999925, 49.105171965000061 ], [ -121.92637167, 49.105203444000026 ], [ -121.926581566999914, 49.105284707000067 ], [ -121.926717542999967, 49.105337381000041 ], [ -121.927579116999951, 49.104558505000085 ], [ -121.928026380999967, 49.104222878000087 ], [ -121.928259285999943, 49.104112365000105 ], [ -121.928392521999939, 49.104049164000067 ], [ -121.928445225999937, 49.104024141000075 ], [ -121.928928976999941, 49.1038982070001 ], [ -121.929367588000019, 49.103865216000052 ], [ -121.931084492999929, 49.103849089000022 ], [ -121.931082585999945, 49.103510001000117 ], [ -121.9311648, 49.103368812000113 ], [ -121.931355603999947, 49.103334600000082 ], [ -121.933342275999962, 49.103334892000127 ], [ -121.933337186999964, 49.102577291000074 ], [ -121.932035984999956, 49.102572316000071 ], [ -121.931708205999925, 49.102513902000091 ], [ -121.931347690999957, 49.102373990000082 ], [ -121.931079515999954, 49.102182611000082 ], [ -121.930960492999944, 49.101976085000054 ], [ -121.930976114999964, 49.101798104000089 ], [ -121.931458882999905, 49.101243815000025 ], [ -121.931684893999972, 49.10110359 ], [ -121.932097114999948, 49.100995696 ], [ -121.932421813999895, 49.100964700000063 ], [ -121.933339092999944, 49.100972390000074 ], [ -121.934441608999961, 49.100977106000066 ], [ -121.93444422200001, 49.100210798000091 ], [ -121.934457910999953, 49.100210877000087 ], [ -121.935156300999964, 49.100214279000099 ], [ -121.935827701999983, 49.100214008000115 ], [ -121.935841408999963, 49.100213996000015 ], [ -121.936967578999941, 49.100214196000181 ], [ -121.936961694999965, 49.103200399000066 ], [ -121.936913799999957, 49.103278894000056 ], [ -121.936773978999938, 49.103342099000038 ], [ -121.936020822999978, 49.103337105000037 ], [ -121.935924403999948, 49.103310911000065 ], [ -121.93585418399999, 49.103236110000097 ], [ -121.935826792999976, 49.103158387000157 ], [ -121.935829798999961, 49.102386680000073 ], [ -121.935158673999979, 49.102382892000058 ], [ -121.935179646999956, 49.103821950000039 ], [ -121.9351732639999, 49.104522335000041 ], [ -121.935169574999946, 49.10495681300003 ], [ -121.93516448299998, 49.105454349000048 ], [ -121.935143552999961, 49.107262362000071 ], [ -121.935175108999957, 49.107403292000043 ], [ -121.935234051999942, 49.107481277000076 ], [ -121.935424951999963, 49.107602108000087 ], [ -121.935658322000023, 49.107754317000058 ], [ -121.936269759999988, 49.108064977 ], [ -121.936327471999974, 49.108094300000054 ], [ -121.936706846999954, 49.108222254000097 ], [ -121.939365038999966, 49.108507589000027 ], [ -121.93986145099997, 49.108597564000092 ], [ -121.940102624999952, 49.108671140000084 ], [ -121.940251730999961, 49.108716624000046 ], [ -121.93750798399995, 49.108759688000063 ], [ -121.929568439999912, 49.10888383900005 ], [ -121.929560763999987, 49.109809808000065 ], [ -121.929385293999971, 49.109803162000041 ], [ -121.929357798999888, 49.111080783000048 ], [ -121.925658792999968, 49.111046416000065 ], [ -121.925664618999988, 49.110776600000108 ], [ -121.925253620999953, 49.110772775000065 ], [ -121.925259449999899, 49.11050295900003 ], [ -121.924848453, 49.110499131000097 ], [ -121.924864336999946, 49.109764165000037 ], [ -121.924818771999952, 49.109762438000097 ], [ -121.924799698999934, 49.109980204000074 ], [ -121.92440153599992, 49.109965106000104 ], [ -121.924382492999939, 49.110182514 ], [ -121.923784423, 49.110159831000061 ], [ -121.923758481999982, 49.11045592800005 ], [ -121.92341392499999, 49.110442859000038 ], [ -121.923337910999962, 49.111310436000089 ], [ -121.923110205999976, 49.111301798000071 ], [ -121.922929408999948, 49.113365039000087 ], [ -121.922771284999897, 49.113359041000116 ], [ -121.92260320199992, 49.115276942000065 ], [ -121.92059260399995, 49.115200650000105 ], [ -121.92056949399992, 49.11546419300003 ], [ -121.920985441999974, 49.115479979000071 ], [ -121.92091436599999, 49.116290623000118 ], [ -121.923164890999942, 49.116376008000074 ], [ -121.92322250499997, 49.115718564000076 ], [ -121.92868658799992, 49.115925674000088 ], [ -121.928665295, 49.116168987000087 ], [ -121.929488186999933, 49.116200154000076 ], [ -121.929462404999938, 49.118195908000068 ], [ -121.929458618999945, 49.118489606 ], [ -121.928220522999965, 49.118491929000108 ], [ -121.923793122999896, 49.118500076000011 ], [ -121.91845611899997, 49.118509702999987 ], [ -121.918547046999976, 49.116222867000054 ] ], [ [ -121.925687924999977, 49.10969733600006 ], [ -121.92569393, 49.109419245000055 ], [ -121.925280356999949, 49.109403565000065 ], [ -121.925254982999974, 49.109693307000057 ], [ -121.925687924999977, 49.10969733600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65886334", "BldgCostT": "44703334", "sL_LossRatio": "0.927139782244279", "sL_AssetLoss": "120979.6", "sL_BldgLoss": "112165", "sL_StrLoss": "93112", "sL_NStrLoss": "19053", "sL_ContLoss": "8814.6", "geom_point": "0101000020E61000005E89A31F0B7C5EC069C31F4D0E8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935158673999979, 49.102382892000058 ], [ -121.935829798999961, 49.102386680000073 ], [ -121.935826792999976, 49.103158387000157 ], [ -121.93585418399999, 49.103236110000097 ], [ -121.935924403999948, 49.103310911000065 ], [ -121.936020822999978, 49.103337105000037 ], [ -121.936773978999938, 49.103342099000038 ], [ -121.936913799999957, 49.103278894000056 ], [ -121.936961694999965, 49.103200399000066 ], [ -121.936967578999941, 49.100214196000181 ], [ -121.93768510699995, 49.100234188000051 ], [ -121.938089993999952, 49.100272889000053 ], [ -121.938534290999939, 49.100315904000126 ], [ -121.939652300999953, 49.100315696000074 ], [ -121.940716884999958, 49.100190004000027 ], [ -121.940713177999967, 49.100750743000098 ], [ -121.94071090099996, 49.101640650000014 ], [ -121.940637736, 49.101643631000073 ], [ -121.94044691, 49.10165140000008 ], [ -121.940162420999968, 49.101771400000054 ], [ -121.939616291999968, 49.102095204000094 ], [ -121.939489502999905, 49.102291508000036 ], [ -121.93915107399998, 49.103076725000108 ], [ -121.93903448599994, 49.103816219000088 ], [ -121.93729018099999, 49.103817008000107 ], [ -121.935179646999956, 49.103821950000039 ], [ -121.935158673999979, 49.102382892000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68315834", "BldgCostT": "46408334", "sL_LossRatio": "0.866251935095465", "sL_AssetLoss": "174410", "sL_BldgLoss": "151083", "sL_StrLoss": "113203", "sL_NStrLoss": "37880", "sL_ContLoss": "23327", "geom_point": "0101000020E6100000334E7DFF2A7C5EC0AF047370408D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.94071090099996, 49.101640650000014 ], [ -121.941891552999962, 49.101660902000049 ], [ -121.942106740999989, 49.101691570000085 ], [ -121.942294576999956, 49.101752758000067 ], [ -121.942423648999977, 49.101827968000073 ], [ -121.942550033999936, 49.101949953 ], [ -121.942760962999941, 49.102351167000073 ], [ -121.942818010999957, 49.102459605000028 ], [ -121.942891753999902, 49.102980891000122 ], [ -121.943009722999989, 49.103215264 ], [ -121.943190085999944, 49.103409625000033 ], [ -121.943246989999935, 49.103542536000084 ], [ -121.943292370999956, 49.103823749000078 ], [ -121.943071270999951, 49.103823155000114 ], [ -121.942879498999929, 49.103822612000052 ], [ -121.942258096999964, 49.103820814000123 ], [ -121.94132219, 49.103821493000083 ], [ -121.940647835999954, 49.10382384100005 ], [ -121.940414396999969, 49.1038246150001 ], [ -121.940140765999942, 49.103825548000053 ], [ -121.940136175999911, 49.10442766799999 ], [ -121.940065987999944, 49.104525173000034 ], [ -121.939922676999984, 49.104550380000035 ], [ -121.938680369999958, 49.104528668000071 ], [ -121.938482784999934, 49.104595165000035 ], [ -121.938418178999939, 49.104676588000075 ], [ -121.938409899999954, 49.106293907000094 ], [ -121.93727269299994, 49.106292408000101 ], [ -121.93728450699993, 49.10458858500003 ], [ -121.93729018099999, 49.103817008000107 ], [ -121.93903448599994, 49.103816219000088 ], [ -121.93915107399998, 49.103076725000108 ], [ -121.939489502999905, 49.102291508000036 ], [ -121.939616291999968, 49.102095204000094 ], [ -121.940162420999968, 49.101771400000054 ], [ -121.94044691, 49.10165140000008 ], [ -121.940637736, 49.101643631000073 ], [ -121.94071090099996, 49.101640650000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104615000", "BldgCostT": "71675000", "sL_LossRatio": "0.903529505233678", "sL_AssetLoss": "211457.4", "sL_BldgLoss": "191058", "sL_StrLoss": "154769", "sL_NStrLoss": "36289", "sL_ContLoss": "20399.4", "geom_point": "0101000020E6100000A903EEB3A97C5EC08824617CA48C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.945502678999929, 49.100313911000114 ], [ -121.94554598799999, 49.100116303000057 ], [ -121.94561690899998, 49.100011239000011 ], [ -121.945703296999966, 49.099883312000053 ], [ -121.945818092999929, 49.099823616000094 ], [ -121.945956597999967, 49.099821601000066 ], [ -121.946153838999976, 49.099892150000095 ], [ -121.946482170999957, 49.100009568000111 ], [ -121.946979705999922, 49.100187497000022 ], [ -121.947128097999922, 49.100009202000081 ], [ -121.947127743999943, 49.100006376000046 ], [ -121.947091445999945, 49.099710503000082 ], [ -121.947077619999973, 49.099597910000064 ], [ -121.947147784999942, 49.099386310000128 ], [ -121.947237390999973, 49.099116097000021 ], [ -121.947255796999968, 49.098574903000042 ], [ -121.946648800999981, 49.098574988000053 ], [ -121.946019976999963, 49.09857515500002 ], [ -121.946015519999946, 49.097918551000078 ], [ -121.946010081999987, 49.097147381000042 ], [ -121.946077202999959, 49.096927193000113 ], [ -121.946243465999942, 49.096717056000045 ], [ -121.946481361999943, 49.096580864000074 ], [ -121.94696413299998, 49.096464709000038 ], [ -121.947239567999986, 49.096479619000078 ], [ -121.948464535999932, 49.096728715000026 ], [ -121.949016593999914, 49.096776574000017 ], [ -121.949419204999913, 49.096904469000094 ], [ -121.949576411999914, 49.097018600000062 ], [ -121.949678013999957, 49.097157680000073 ], [ -121.94972339399996, 49.097312678000058 ], [ -121.949669717999981, 49.098591061000079 ], [ -121.949664505999934, 49.098969105000116 ], [ -121.949662819999929, 49.099095804000065 ], [ -121.949583406999963, 49.099393924000054 ], [ -121.949212971999884, 49.100186960000094 ], [ -121.948896153999954, 49.100631301000135 ], [ -121.94847562399994, 49.101102343000044 ], [ -121.948173975, 49.101325403000047 ], [ -121.947557172999922, 49.101642994000024 ], [ -121.947322747999948, 49.101361108000027 ], [ -121.947064802999975, 49.101050951000055 ], [ -121.946713503999902, 49.100837546000079 ], [ -121.945552594999967, 49.100401506000082 ], [ -121.945502678999929, 49.100313911000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2344167", "BldgCostT": "1616667", "sL_LossRatio": "0.973865918487891", "sL_AssetLoss": "3386", "sL_BldgLoss": "3297.51", "sL_StrLoss": "2925.81", "sL_NStrLoss": "371.7", "sL_ContLoss": "88.49", "geom_point": "0101000020E61000004B07A9E30A7D5EC04FF5F962CE8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.950934788999973, 49.101563573000071 ], [ -121.950938908999973, 49.101368113000042 ], [ -121.951913622999911, 49.101544403000069 ], [ -121.955510774999965, 49.098265071000085 ], [ -121.956442882999937, 49.098493512000054 ], [ -121.955520994999986, 49.09845881400004 ], [ -121.95551160199993, 49.098906377000105 ], [ -121.955100697999967, 49.098902657000075 ], [ -121.955089368999936, 49.09944229600007 ], [ -121.954678460000011, 49.099438576000075 ], [ -121.954672793999976, 49.099708394000096 ], [ -121.954261882999972, 49.09970467200003 ], [ -121.954256213999912, 49.099974490000058 ], [ -121.953845300999916, 49.09997076700008 ], [ -121.953833956999986, 49.100510405000058 ], [ -121.953423039999947, 49.100506680000102 ], [ -121.953417365999911, 49.100776499000048 ], [ -121.953006447999925, 49.100772772 ], [ -121.952995092999956, 49.101312410000048 ], [ -121.95258417099997, 49.101308681000013 ], [ -121.952578491999972, 49.101578500000073 ], [ -121.950934788999973, 49.101563573000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.959264832330181", "sL_AssetLoss": "1860.8", "sL_BldgLoss": "1785", "sL_StrLoss": "1468", "sL_NStrLoss": "317", "sL_ContLoss": "75.8", "geom_point": "0101000020E61000002D637DE2C47C5EC0FDB17BB8058D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.9488815, 49.101822759000079 ], [ -121.950037232999975, 49.101205022000038 ], [ -121.950505965999966, 49.101289805000057 ], [ -121.950118630999938, 49.101286283000093 ], [ -121.950107246999934, 49.101825920000039 ], [ -121.949696318999926, 49.101822181000031 ], [ -121.949690624999931, 49.102092 ], [ -121.948660509999954, 49.102082622000047 ], [ -121.948656337, 49.102130557000102 ], [ -121.948520713, 49.102125443 ], [ -121.948532683999957, 49.102113605000099 ], [ -121.9488815, 49.101822759000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89929166", "BldgCostT": "54686666", "sL_LossRatio": "0.946810784290039", "sL_AssetLoss": "53807.9", "sL_BldgLoss": "50945.9", "sL_StrLoss": "41456", "sL_NStrLoss": "9489.9", "sL_ContLoss": "2862", "geom_point": "0101000020E6100000ED9689C72A7D5EC0B3089CD71E8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.944356803999966, 49.106829829000091 ], [ -121.945465592999952, 49.106106373000067 ], [ -121.945573980999882, 49.106004561000091 ], [ -121.94554195799999, 49.106372097000076 ], [ -121.945900816999938, 49.106375374000066 ], [ -121.945906531999952, 49.106105557000042 ], [ -121.947139419999985, 49.106116808000095 ], [ -121.947145127999974, 49.105846990000053 ], [ -121.947556088999931, 49.105850738000051 ], [ -121.947561795999917, 49.105580921000069 ], [ -121.947972753999949, 49.105584666000055 ], [ -121.947978458999955, 49.105314849000095 ], [ -121.948459874999969, 49.105319235000067 ], [ -121.948638855999917, 49.103263436000113 ], [ -121.952950626999979, 49.103425916000063 ], [ -121.952955355999947, 49.103201140000053 ], [ -121.95377723699994, 49.103208591000048 ], [ -121.953782906999933, 49.102938773000048 ], [ -121.954107191999967, 49.102941712000138 ], [ -121.954318977999975, 49.100505563000119 ], [ -121.95876250399999, 49.100672781000043 ], [ -121.958764968999915, 49.100554991000166 ], [ -121.959175886999901, 49.100558697000096 ], [ -121.959181530999928, 49.100288878000143 ], [ -121.95936919399999, 49.100290569000116 ], [ -121.95953677299994, 49.098360325000094 ], [ -121.959743721999985, 49.098314791000078 ], [ -121.960297738999941, 49.098335623 ], [ -121.960310368999984, 49.098190113000072 ], [ -121.963806993999938, 49.097420680000049 ], [ -121.963560527, 49.097689946000088 ], [ -121.963480110999953, 49.097777817000107 ], [ -121.963236480999953, 49.098043962000155 ], [ -121.962745274999961, 49.098636849000087 ], [ -121.962619136999948, 49.098906224000075 ], [ -121.962595634999929, 49.099394834000051 ], [ -121.962566266999971, 49.100005181000022 ], [ -121.962567889999931, 49.100855501000083 ], [ -121.962566518999949, 49.102245897000103 ], [ -121.962570192999976, 49.102787020000022 ], [ -121.962596882999918, 49.103869150000087 ], [ -121.962372875999932, 49.103876941000074 ], [ -121.962218684, 49.103917134000028 ], [ -121.960794719999981, 49.103952898000053 ], [ -121.960795796999918, 49.104571492000083 ], [ -121.95995618399995, 49.104567901000117 ], [ -121.95985697799992, 49.104495597000088 ], [ -121.959839201999927, 49.10395850000004 ], [ -121.958310785999956, 49.103965899000066 ], [ -121.959338083999953, 49.103461029000044 ], [ -121.96019036499996, 49.103448926000084 ], [ -121.960804879999984, 49.102633648000072 ], [ -121.960503039999978, 49.10230007400002 ], [ -121.959661932999921, 49.102078141000099 ], [ -121.959447697, 49.102101209000089 ], [ -121.958926784999932, 49.1021687100001 ], [ -121.95838083699999, 49.101476904000016 ], [ -121.957177075999965, 49.101952038000022 ], [ -121.953854171, 49.103379596000046 ], [ -121.948843827999937, 49.105576325000122 ], [ -121.944124936999984, 49.107513277000095 ], [ -121.941195441, 49.108685080000051 ], [ -121.940674129999948, 49.108893606000017 ], [ -121.940347316999947, 49.108745786000071 ], [ -121.940251730999961, 49.108716624000046 ], [ -121.940662647999972, 49.107956102000124 ], [ -121.940669462999935, 49.107947635000073 ], [ -121.941011662999983, 49.107523008000058 ], [ -121.941015796999977, 49.107520525000034 ], [ -121.941230245000014, 49.107390999000074 ], [ -121.944356803999966, 49.106829829000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116397311", "BldgCostT": "76423190", "sL_LossRatio": "0.856809622439335", "sL_AssetLoss": "348103", "sL_BldgLoss": "298258", "sL_StrLoss": "212843", "sL_NStrLoss": "85415", "sL_ContLoss": "49845", "geom_point": "0101000020E6100000634F1B38547D5EC0F3DCBE1E7E8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.955265608999966, 49.105219214000037 ], [ -121.955094846999941, 49.104790016000017 ], [ -121.95501597799999, 49.104591750000075 ], [ -121.955326965, 49.104531450000053 ], [ -121.956329387000011, 49.104365084000072 ], [ -121.957137619999969, 49.104405177000103 ], [ -121.957497808999932, 49.10448713300007 ], [ -121.958153084999964, 49.104644972000095 ], [ -121.958929075999947, 49.105054318000093 ], [ -121.959066560999986, 49.104917219000043 ], [ -121.95927708699999, 49.1047072980001 ], [ -121.958310785999956, 49.103965899000066 ], [ -121.959839201999927, 49.10395850000004 ], [ -121.95985697799992, 49.104495597000088 ], [ -121.95995618399995, 49.104567901000117 ], [ -121.960795796999918, 49.104571492000083 ], [ -121.960794719999981, 49.103952898000053 ], [ -121.962218684, 49.103917134000028 ], [ -121.962372875999932, 49.103876941000074 ], [ -121.962596882999918, 49.103869150000087 ], [ -121.962578335, 49.103956808000092 ], [ -121.962389026999986, 49.104559223000102 ], [ -121.962331455999916, 49.104639642000102 ], [ -121.962152049999958, 49.1048902510001 ], [ -121.961966473999951, 49.105051114000084 ], [ -121.961563834999964, 49.105400141000089 ], [ -121.960880484000015, 49.105995704000165 ], [ -121.960554308999988, 49.106280995000098 ], [ -121.96030530099992, 49.106623302000074 ], [ -121.958029651999965, 49.106620207000113 ], [ -121.95720736599999, 49.106619070000093 ], [ -121.956797903999927, 49.106618512000026 ], [ -121.956385295999922, 49.106618144000052 ], [ -121.95540031499992, 49.106617297000064 ], [ -121.954740721999926, 49.106616789000022 ], [ -121.954250779999953, 49.106616441000092 ], [ -121.954249373999957, 49.10656702400005 ], [ -121.954232511999962, 49.105991179000085 ], [ -121.954221118999968, 49.105601802000059 ], [ -121.95443220199999, 49.105524464000034 ], [ -121.955265608999966, 49.105219214000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145127083", "BldgCostT": "99088333", "sL_LossRatio": "0.886247686676836", "sL_AssetLoss": "462916.3", "sL_BldgLoss": "410258.5", "sL_StrLoss": "286565.5", "sL_NStrLoss": "123693", "sL_ContLoss": "52657.8", "geom_point": "0101000020E610000011FEB926EC7D5EC0D52D5461E08E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.961988758999951, 49.114967425000017 ], [ -121.96209761099999, 49.112626369000061 ], [ -121.96199207699999, 49.111281613000116 ], [ -121.96248446299991, 49.111280023000106 ], [ -121.962920066999956, 49.111278600000063 ], [ -121.962933093999965, 49.111839008000111 ], [ -121.962994669999929, 49.112266013000074 ], [ -121.962997614999935, 49.114183630000085 ], [ -121.962998011999971, 49.114439184000041 ], [ -121.96321851099998, 49.114882258000051 ], [ -121.963626432999931, 49.114862891000044 ], [ -121.966716648999977, 49.114715927000091 ], [ -121.966960741999955, 49.114704310000079 ], [ -121.968713841999914, 49.114620919000046 ], [ -121.97035886899999, 49.114632529000076 ], [ -121.973213381999969, 49.114688666000056 ], [ -121.974595309999955, 49.114719498000092 ], [ -121.976247621999946, 49.115577776000109 ], [ -121.976247886999971, 49.115578004000014 ], [ -121.973027682999899, 49.115572800000059 ], [ -121.97301269899999, 49.11634770700006 ], [ -121.972930309999967, 49.11655470400008 ], [ -121.972940507999965, 49.118369198000053 ], [ -121.972561955999979, 49.118368152000059 ], [ -121.970654884999931, 49.118362892000057 ], [ -121.967684215999938, 49.118402002000039 ], [ -121.967507385999937, 49.11840169 ], [ -121.965936621999944, 49.118403198000081 ], [ -121.964210693999959, 49.118406927000102 ], [ -121.962323333999962, 49.118403367000099 ], [ -121.961988758999951, 49.114967425000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235922479", "BldgCostT": "149734858", "sL_LossRatio": "0.82254272623238", "sL_AssetLoss": "691203", "sL_BldgLoss": "568544", "sL_StrLoss": "354087", "sL_NStrLoss": "214457", "sL_ContLoss": "122659", "geom_point": "0101000020E610000058D547B7107E5EC0947A811F768E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.976247621999946, 49.115577776000109 ], [ -121.974595309999955, 49.114719498000092 ], [ -121.973213381999969, 49.114688666000056 ], [ -121.97035886899999, 49.114632529000076 ], [ -121.968713841999914, 49.114620919000046 ], [ -121.966960741999955, 49.114704310000079 ], [ -121.966716648999977, 49.114715927000091 ], [ -121.963626432999931, 49.114862891000044 ], [ -121.96321851099998, 49.114882258000051 ], [ -121.962998011999971, 49.114439184000041 ], [ -121.962997614999935, 49.114183630000085 ], [ -121.962994669999929, 49.112266013000074 ], [ -121.962933093999965, 49.111839008000111 ], [ -121.962920066999956, 49.111278600000063 ], [ -121.963605788999971, 49.111271910000077 ], [ -121.964620832999913, 49.111261338000119 ], [ -121.965736289999896, 49.111230167000073 ], [ -121.967564778999957, 49.11121606200004 ], [ -121.967654714, 49.11121537000011 ], [ -121.968606417999951, 49.111208026000028 ], [ -121.969602523999967, 49.111199462000108 ], [ -121.969662854999925, 49.111198932 ], [ -121.97198961699992, 49.111178881000036 ], [ -121.973754858999911, 49.111139920000049 ], [ -121.974200090999929, 49.111130097000043 ], [ -121.976346122999985, 49.111082401000097 ], [ -121.97632530199995, 49.11279659100007 ], [ -121.976314110999965, 49.113640092000033 ], [ -121.976312845999956, 49.114347475000038 ], [ -121.976312263999972, 49.114698134 ], [ -121.976311623999962, 49.115057908000047 ], [ -121.97631121299996, 49.115289994000136 ], [ -121.976247886999971, 49.115578004000014 ], [ -121.976247621999946, 49.115577776000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144803083", "BldgCostT": "96478333", "sL_LossRatio": "0.816372156245529", "sL_AssetLoss": "726856", "sL_BldgLoss": "593385", "sL_StrLoss": "352947", "sL_NStrLoss": "240438", "sL_ContLoss": "133471", "geom_point": "0101000020E6100000E34EE1EFB4805EC071C87A28D98D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.01957158499998, 49.118423506000106 ], [ -122.019346898999913, 49.118407108000106 ], [ -122.018042533999932, 49.118404444000056 ], [ -122.008888118999963, 49.118385398000036 ], [ -122.006778594999929, 49.118380886000068 ], [ -121.99999416899999, 49.118365930000103 ], [ -121.997417372999948, 49.118360153000076 ], [ -121.995169984999947, 49.118355047000129 ], [ -121.993011305, 49.118350112000016 ], [ -121.992086480999944, 49.118347184000079 ], [ -121.987304513999916, 49.118356046000017 ], [ -121.983015217999935, 49.118363806000055 ], [ -121.982083529999954, 49.118365458000035 ], [ -121.978739193999971, 49.118371359000086 ], [ -121.977510986999931, 49.11837350100005 ], [ -121.976258987999984, 49.118380711000036 ], [ -121.976247886999971, 49.115578004000014 ], [ -121.97631121299996, 49.115289994000136 ], [ -121.976311623999962, 49.115057908000047 ], [ -121.976312263999972, 49.114698134 ], [ -121.976312845999956, 49.114347475000038 ], [ -121.976314110999965, 49.113640092000033 ], [ -121.97632530199995, 49.11279659100007 ], [ -121.976346122999985, 49.111082401000097 ], [ -121.980630115999958, 49.111095704000022 ], [ -121.982984893999969, 49.111089093000018 ], [ -121.984680101999984, 49.111088388000049 ], [ -121.986356096999927, 49.111087443000073 ], [ -121.987424878999931, 49.111086823000107 ], [ -121.987651208999964, 49.111086697000069 ], [ -121.987836003999973, 49.111086679000074 ], [ -121.988260719999957, 49.111086638000096 ], [ -121.988761197999935, 49.11108660900004 ], [ -121.991232010999965, 49.111085467000095 ], [ -121.992817609, 49.111084705000067 ], [ -121.993803075999935, 49.111075800000073 ], [ -121.994370996999976, 49.111070667000064 ], [ -121.995671840999975, 49.111058901000071 ], [ -121.995673243999974, 49.11102813100009 ], [ -121.998198308, 49.110906483000051 ], [ -121.998726606999981, 49.10961690000002 ], [ -121.998791802999932, 49.109384894000094 ], [ -121.998708500999911, 49.10879129100006 ], [ -121.998483420999946, 49.107626316000037 ], [ -121.998341596000017, 49.106892294000076 ], [ -121.998146015999936, 49.106457595000052 ], [ -121.997903988999965, 49.105925602000049 ], [ -121.997693450999989, 49.105462436000039 ], [ -121.997534190999986, 49.105112097000053 ], [ -121.996954103999954, 49.103858811000045 ], [ -121.995724120999967, 49.103854474000087 ], [ -121.995733788999942, 49.103105564000025 ], [ -121.995759100999976, 49.100581877000046 ], [ -121.99576931299994, 49.099667074000145 ], [ -121.995768901999938, 49.099577305000089 ], [ -121.995767897999926, 49.099364965000056 ], [ -121.996188912999955, 49.098358699000109 ], [ -121.998560818999977, 49.098963103000074 ], [ -121.999499068999938, 49.099112779000095 ], [ -121.999315948999964, 49.101243120000049 ], [ -122.000924453, 49.101302996000122 ], [ -122.000912029999952, 49.101447573000044 ], [ -122.001968027999965, 49.101486869000077 ], [ -122.00196772000001, 49.101490441000131 ], [ -122.003405578999931, 49.101543930000084 ], [ -122.003393667999916, 49.101682627000024 ], [ -122.003483279999926, 49.101685960000033 ], [ -122.003683827999936, 49.099350443000056 ], [ -122.003761413999939, 49.099353329000024 ], [ -122.003788078999946, 49.099042753000063 ], [ -122.005982895999978, 49.099108400000013 ], [ -122.006960015999979, 49.098954599000109 ], [ -122.008356207999938, 49.098965998000097 ], [ -122.009242158999925, 49.098856414000103 ], [ -122.01020956799999, 49.098892341000095 ], [ -122.010173099999932, 49.099317746000047 ], [ -122.010202592999946, 49.099318842000066 ], [ -122.010178558999897, 49.09959921300004 ], [ -122.010601896999958, 49.099614932000065 ], [ -122.010545806999986, 49.100269289000039 ], [ -122.010587437999902, 49.10027083500011 ], [ -122.010584133999913, 49.100309384000063 ], [ -122.013870428999965, 49.100431347000097 ], [ -122.013811575999952, 49.101118492000133 ], [ -122.018338418999974, 49.101286329000068 ], [ -122.01832117, 49.101487945000081 ], [ -122.021752514999974, 49.101615038000034 ], [ -122.021696520999953, 49.102270086000082 ], [ -122.021847375, 49.102275670000083 ], [ -122.021852229000032, 49.102218886000117 ], [ -122.022695795999979, 49.102250113000117 ], [ -122.022697993999941, 49.102224407000065 ], [ -122.024376291999971, 49.102286512000035 ], [ -122.024449666999928, 49.101427546000124 ], [ -122.026847430999965, 49.101516231000041 ], [ -122.027067196999923, 49.098941802000056 ], [ -122.028070983999925, 49.098978913000046 ], [ -122.028129130999972, 49.098297558000063 ], [ -122.028427609999966, 49.098219709000041 ], [ -122.029505194999956, 49.097725510000068 ], [ -122.030323681999946, 49.097191398000056 ], [ -122.031270305999925, 49.096767990000103 ], [ -122.033515637999955, 49.096850905000082 ], [ -122.033739486999963, 49.09422394700006 ], [ -122.034952332999936, 49.094268716000016 ], [ -122.035069699999937, 49.092890824000037 ], [ -122.035574517999947, 49.092683801000057 ], [ -122.036144884999942, 49.092279912000024 ], [ -122.036754215999949, 49.092302393000111 ], [ -122.037990773999951, 49.093334816000045 ], [ -122.041389676999984, 49.096172301000095 ], [ -122.042205277999983, 49.096529118000063 ], [ -122.042693361999923, 49.096531860000034 ], [ -122.043087529999951, 49.096534060000096 ], [ -122.043883765999979, 49.096675192000056 ], [ -122.044393802999963, 49.096682082000079 ], [ -122.045509305999957, 49.096697153000036 ], [ -122.045515413999965, 49.099998584000119 ], [ -122.04551591099991, 49.100268908000075 ], [ -122.045519760999952, 49.102347302000112 ], [ -122.045522489999883, 49.103829479000062 ], [ -122.028971550999955, 49.103834062000033 ], [ -122.028972015999912, 49.1063762570001 ], [ -122.025731955999987, 49.106256483000088 ], [ -122.025668746999941, 49.10699659800008 ], [ -122.020205282999939, 49.106794411000095 ], [ -122.020247043000012, 49.106306111000023 ], [ -122.017297314999936, 49.106196834000066 ], [ -122.017314923999919, 49.105991074000016 ], [ -122.016894139000016, 49.105975480000019 ], [ -122.016890335999946, 49.10601991200015 ], [ -122.01620531699993, 49.105994519000049 ], [ -122.016204305999963, 49.106006328000035 ], [ -122.015421825999951, 49.105977318000065 ], [ -122.015419674000015, 49.106002447000066 ], [ -122.014527991999969, 49.105969380000076 ], [ -122.014522638999935, 49.10603186800013 ], [ -122.013354669999941, 49.105988546000113 ], [ -122.013352490999949, 49.106013996000044 ], [ -122.012485091999963, 49.105981815000057 ], [ -122.01248045599999, 49.106035917000064 ], [ -122.011624680999958, 49.106004160000083 ], [ -122.011622119999984, 49.106034038000097 ], [ -122.010856927999953, 49.106005636000084 ], [ -122.010558270000018, 49.109489353000065 ], [ -122.010018771999967, 49.109469326000074 ], [ -122.010002804999942, 49.109655520000054 ], [ -122.010445724999954, 49.109671963000054 ], [ -122.010345131999927, 49.110845186000113 ], [ -122.010675791999915, 49.110857459000044 ], [ -122.010589060999962, 49.111869033000083 ], [ -122.011007241999934, 49.11188455300011 ], [ -122.010898098999959, 49.113157596000036 ], [ -122.01112188599997, 49.11315951200001 ], [ -122.01110043099996, 49.114238804000067 ], [ -122.010805614999981, 49.114236277000067 ], [ -122.01069900600001, 49.115479632000053 ], [ -122.009063398999928, 49.115418916000074 ], [ -122.009026766999938, 49.115845954000164 ], [ -122.010247818999957, 49.115891284000071 ], [ -122.010235691999952, 49.116032685000121 ], [ -122.012799113999947, 49.11612780300009 ], [ -122.012816037999983, 49.115930311000078 ], [ -122.018280540999967, 49.116132870000087 ], [ -122.018208456999972, 49.116975135000089 ], [ -122.019032367999955, 49.11700565200011 ], [ -122.018944124999905, 49.118036883000073 ], [ -122.02034996899998, 49.118088940000092 ], [ -122.020406445999967, 49.117428696000061 ], [ -122.020944970999977, 49.117448632000027 ], [ -122.021024871999927, 49.116514409000089 ], [ -122.02211089399999, 49.116554604000015 ], [ -122.022141843, 49.116192634000036 ], [ -122.025535248999972, 49.116318159000073 ], [ -122.025664876999969, 49.114800715000058 ], [ -122.026622575, 49.114836121000067 ], [ -122.026891099999929, 49.111691635000085 ], [ -122.02897298299996, 49.11176857400006 ], [ -122.028973163999964, 49.112994534000045 ], [ -122.028973462999943, 49.114685545000064 ], [ -122.028973789999938, 49.116588468000046 ], [ -122.028973897999919, 49.116610503000054 ], [ -122.028991901, 49.120214493000056 ], [ -122.0255033, 49.120196657000051 ], [ -122.023817617999967, 49.120187985000015 ], [ -122.021501724999936, 49.120176051000087 ], [ -122.020043194999971, 49.120168493000079 ], [ -122.019878904, 49.120134498000091 ], [ -122.019743883999922, 49.120030296000031 ], [ -122.01974158899999, 49.119357792000102 ], [ -122.019738810999939, 49.11855230500003 ], [ -122.01957158499998, 49.118423506000106 ] ], [ [ -121.989801895, 49.115961027000047 ], [ -121.98985991, 49.115287958000131 ], [ -121.990269336999958, 49.11530323300012 ], [ -121.990412378999906, 49.113643467000038 ], [ -121.992093198999953, 49.113706155000031 ], [ -121.99212012299995, 49.113393607000077 ], [ -121.993202860999972, 49.113433976000138 ], [ -121.993204275999972, 49.113417533000053 ], [ -121.99356131399999, 49.113430842000099 ], [ -121.993637271999944, 49.112548741000126 ], [ -121.993243918999895, 49.11253407800011 ], [ -121.993236934999942, 49.112615158000054 ], [ -121.992604604999912, 49.112591583000075 ], [ -121.992551041999945, 49.113213474000077 ], [ -121.989908276999969, 49.113114905000025 ], [ -121.989865153999958, 49.11361523700009 ], [ -121.984401069999961, 49.113411233000122 ], [ -121.98443862799995, 49.112976067000091 ], [ -121.984031347999959, 49.112960850000015 ], [ -121.984002895999978, 49.113290477000135 ], [ -121.98344763199999, 49.113269728 ], [ -121.983442575999945, 49.113328292000055 ], [ -121.982788581999984, 49.113303850000072 ], [ -121.982785848999981, 49.113335508000056 ], [ -121.982064951999945, 49.113308560000043 ], [ -121.982061119999969, 49.113352924000075 ], [ -121.97983164499999, 49.113269557000059 ], [ -121.979789950999972, 49.113752097000066 ], [ -121.97990479, 49.113756393000081 ], [ -121.979860127000038, 49.114273295000025 ], [ -121.979977720999969, 49.114277693000048 ], [ -121.979967613999946, 49.114394660000087 ], [ -121.98518455, 49.114589653000088 ], [ -121.985081413999964, 49.115784809000054 ], [ -121.989801895, 49.115961027000047 ] ], [ [ -121.998532656999913, 49.115199423000092 ], [ -121.99845915, 49.116054067000093 ], [ -122.000485015999971, 49.116129466000046 ], [ -122.000495034999958, 49.116012915000049 ], [ -122.002563056999946, 49.116089843000047 ], [ -122.002564747999898, 49.11607016500011 ], [ -122.003125424999922, 49.116091015000109 ], [ -122.003133228999928, 49.116000179000075 ], [ -122.003530381999923, 49.116014945000082 ], [ -122.003644193999918, 49.114689975000054 ], [ -122.003503486999975, 49.11468474300009 ], [ -122.003610600999977, 49.113437729000033 ], [ -122.003406560999977, 49.113430142000077 ], [ -122.003715346999911, 49.109835074000017 ], [ -122.004946654999983, 49.109880851000135 ], [ -122.004981263999952, 49.109477748000074 ], [ -122.004538347999983, 49.109461284000062 ], [ -122.004589359999954, 49.108867175000078 ], [ -122.004549286000028, 49.108865685000062 ], [ -122.004633499999983, 49.107884887000083 ], [ -122.002943491999929, 49.107822045000063 ], [ -122.002982362999916, 49.10736951000009 ], [ -122.002854217999982, 49.10736474400008 ], [ -122.002897713999971, 49.106858366000026 ], [ -122.001687519999976, 49.106813347000127 ], [ -122.001605387999973, 49.107769230000088 ], [ -122.002388803999978, 49.107798374000048 ], [ -122.002079927999972, 49.111393450000016 ], [ -122.001713901999935, 49.111379834000111 ], [ -122.001549911999973, 49.113288158000103 ], [ -121.99999094599994, 49.113230152000014 ], [ -121.999985947999932, 49.11328829500011 ], [ -121.999485441999965, 49.11326966700004 ], [ -121.999340913999944, 49.114950505000088 ], [ -121.998913627999954, 49.114934600000069 ], [ -121.998889709999958, 49.115212715000034 ], [ -121.998532656999913, 49.115199423000092 ] ], [ [ -122.030977848999981, 49.102843846000056 ], [ -122.030990683999946, 49.102693334000051 ], [ -122.030264025999927, 49.10266649200009 ], [ -122.029825441999918, 49.102650288000078 ], [ -122.029812602999925, 49.102800800000068 ], [ -122.030103467999965, 49.102811547000023 ], [ -122.030977848999981, 49.102843846000056 ] ], [ [ -122.03453448199997, 49.101481835000094 ], [ -122.03456727299999, 49.101096988000108 ], [ -122.040030129999963, 49.101298448000115 ], [ -122.040016199999968, 49.101462173000087 ], [ -122.04187824899999, 49.101530778000061 ], [ -122.042026736999929, 49.099784740000118 ], [ -122.04197441099997, 49.099782814000029 ], [ -122.042017948999984, 49.099270843000049 ], [ -122.041827036999948, 49.099263810000075 ], [ -122.041868318999917, 49.098778382000091 ], [ -122.041806668, 49.098776111000035 ], [ -122.04188151799994, 49.097895931000039 ], [ -122.040873390999977, 49.097858789000078 ], [ -122.040883768999933, 49.097736773000072 ], [ -122.040647230999923, 49.097728057000062 ], [ -122.040530116999932, 49.099104765000043 ], [ -122.03534181399999, 49.098913451000122 ], [ -122.035204976999978, 49.100519788000064 ], [ -122.03490918699994, 49.100508874000106 ], [ -122.034876383999986, 49.100893895000091 ], [ -122.034542727999948, 49.100881583000081 ], [ -122.034513986999926, 49.101218904000064 ], [ -122.033363478999917, 49.101176438000095 ], [ -122.033344549999953, 49.101398531000015 ], [ -122.03234070500001, 49.101361470000064 ], [ -122.032263035999975, 49.102272525000053 ], [ -122.032925397999961, 49.102296981000087 ], [ -122.032930676999968, 49.102235052000061 ], [ -122.033135779999967, 49.102242624000084 ], [ -122.033204808999969, 49.101432757000104 ], [ -122.03453448199997, 49.101481835000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.877528429103351", "sL_AssetLoss": "9937", "sL_BldgLoss": "8720", "sL_StrLoss": "5790", "sL_NStrLoss": "2930", "sL_ContLoss": "1217", "geom_point": "0101000020E6100000A636A3ACC0815EC0A8C9087FF18D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.027010566999948, 49.10675872300007 ], [ -122.028972099999976, 49.106831222000061 ], [ -122.028972206999967, 49.107416770000086 ], [ -122.028972765999981, 49.110736547000052 ], [ -122.028972799999934, 49.110922094000074 ], [ -122.025549129999931, 49.110795544000041 ], [ -122.025856189999914, 49.107200397000092 ], [ -122.026969344999898, 49.107241555 ], [ -122.027010566999948, 49.10675872300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95085667", "BldgCostT": "63366667", "sL_LossRatio": "0.878595272892533", "sL_AssetLoss": "305853", "sL_BldgLoss": "268721", "sL_StrLoss": "183980", "sL_NStrLoss": "84741", "sL_ContLoss": "37132", "geom_point": "0101000020E61000002123DA6D5B7E5EC0FF66D610248F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.976280305, 49.120004508000079 ], [ -121.97626850599994, 49.119221393 ], [ -121.974500501999927, 49.119220988000038 ], [ -121.974492312999985, 49.120202592000076 ], [ -121.971844407999967, 49.120185493000065 ], [ -121.970662007999948, 49.120179900000068 ], [ -121.970654884999931, 49.118362892000057 ], [ -121.972561955999979, 49.118368152000059 ], [ -121.972940507999965, 49.118369198000053 ], [ -121.972930309999967, 49.11655470400008 ], [ -121.97301269899999, 49.11634770700006 ], [ -121.973027682999899, 49.115572800000059 ], [ -121.976247886999971, 49.115578004000014 ], [ -121.976258987999984, 49.118380711000036 ], [ -121.977510986999931, 49.11837350100005 ], [ -121.977471187999939, 49.121322206000087 ], [ -121.976484994999922, 49.120728090000156 ], [ -121.976374798, 49.120622912000037 ], [ -121.97628372299998, 49.120472607000039 ], [ -121.976280305, 49.120004508000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89291500", "BldgCostT": "60820000", "sL_LossRatio": "0.862517602671178", "sL_AssetLoss": "338727", "sL_BldgLoss": "292158", "sL_StrLoss": "186989", "sL_NStrLoss": "105169", "sL_ContLoss": "46569", "geom_point": "0101000020E61000000F10278B567E5EC026BA1DD0888F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.974500501999927, 49.119220988000038 ], [ -121.97626850599994, 49.119221393 ], [ -121.976280305, 49.120004508000079 ], [ -121.97628372299998, 49.120472607000039 ], [ -121.976374798, 49.120622912000037 ], [ -121.976484994999922, 49.120728090000156 ], [ -121.977471187999939, 49.121322206000087 ], [ -121.977466495999948, 49.122771805000085 ], [ -121.976147715999957, 49.122773898000062 ], [ -121.974919410999959, 49.122775708000063 ], [ -121.972935486999944, 49.122780695000074 ], [ -121.971667412000016, 49.122782808000053 ], [ -121.970622793999937, 49.122784215000109 ], [ -121.970662007999948, 49.120179900000068 ], [ -121.971844407999967, 49.120185493000065 ], [ -121.974492312999985, 49.120202592000076 ], [ -121.974500501999927, 49.119220988000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102912645", "BldgCostT": "68881524", "sL_LossRatio": "0.868980138820987", "sL_AssetLoss": "316018.5", "sL_BldgLoss": "274613.8", "sL_StrLoss": "188763.8", "sL_NStrLoss": "85850", "sL_ContLoss": "41404.7", "geom_point": "0101000020E61000005185796EE57D5EC0AF7079496F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.964601587999979, 49.121910995000086 ], [ -121.964601388999981, 49.121708093000052 ], [ -121.96309348799997, 49.121710102000087 ], [ -121.963085104999919, 49.119485406000123 ], [ -121.963513610999968, 49.119475394000176 ], [ -121.963818676999892, 49.119402100000123 ], [ -121.964159520999942, 49.119266105000072 ], [ -121.964214302999935, 49.119155409000044 ], [ -121.964210693999959, 49.118406927000102 ], [ -121.965936621999944, 49.118403198000081 ], [ -121.967507385999937, 49.11840169 ], [ -121.967684215999938, 49.118402002000039 ], [ -121.970654884999931, 49.118362892000057 ], [ -121.970662007999948, 49.120179900000068 ], [ -121.970622793999937, 49.122784215000109 ], [ -121.969430084999928, 49.122786409000099 ], [ -121.964086196999943, 49.122796899000015 ], [ -121.964090093, 49.122467098000079 ], [ -121.964153196999945, 49.122308011000044 ], [ -121.964503415999957, 49.12209489100006 ], [ -121.964601587999979, 49.121910995000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125607396", "BldgCostT": "78032865", "sL_LossRatio": "0.778524019232419", "sL_AssetLoss": "333478.6", "sL_BldgLoss": "259621.1", "sL_StrLoss": "164005.1", "sL_NStrLoss": "95616", "sL_ContLoss": "73857.5", "geom_point": "0101000020E61000001F137BCB897D5EC05324677A6C8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.958558996999926, 49.118415491000043 ], [ -121.960873856999939, 49.118400621000028 ], [ -121.962323333999962, 49.118403367000099 ], [ -121.964210693999959, 49.118406927000102 ], [ -121.964214302999935, 49.119155409000044 ], [ -121.964159520999942, 49.119266105000072 ], [ -121.963818676999892, 49.119402100000123 ], [ -121.963513610999968, 49.119475394000176 ], [ -121.963085104999919, 49.119485406000123 ], [ -121.96309348799997, 49.121710102000087 ], [ -121.964601388999981, 49.121708093000052 ], [ -121.964601587999979, 49.121910995000086 ], [ -121.964503415999957, 49.12209489100006 ], [ -121.964153196999945, 49.122308011000044 ], [ -121.964090093, 49.122467098000079 ], [ -121.964086196999943, 49.122796899000015 ], [ -121.962731690999988, 49.122799207000057 ], [ -121.961710403999973, 49.122800591000065 ], [ -121.959838934999965, 49.122805092000114 ], [ -121.959705530999912, 49.121106795000095 ], [ -121.959144971999976, 49.119791053000057 ], [ -121.958803202999945, 49.118988801000093 ], [ -121.958749496999971, 49.118862677000102 ], [ -121.958671376, 49.118679353000047 ], [ -121.958558996999926, 49.118415491000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110918084", "BldgCostT": "74023334", "sL_LossRatio": "0.862812546184129", "sL_AssetLoss": "366061.9", "sL_BldgLoss": "315842.8", "sL_StrLoss": "223739.8", "sL_NStrLoss": "92103", "sL_ContLoss": "50219.1", "geom_point": "0101000020E61000009073B40D107E5EC0C408D960FE904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.968730594999968, 49.134083892000014 ], [ -121.965612686999961, 49.133122108000052 ], [ -121.965682489999935, 49.132965099000032 ], [ -121.965655187, 49.131383507000038 ], [ -121.965215670999925, 49.13138560900007 ], [ -121.964876014999973, 49.131387220000086 ], [ -121.965328593, 49.131329158 ], [ -121.965534997999939, 49.131294664000059 ], [ -121.966227777999947, 49.130958977000013 ], [ -121.968948825, 49.129674467000072 ], [ -121.970115048999929, 49.129068195000038 ], [ -121.970333984999968, 49.128995859000085 ], [ -121.97037128399991, 49.128978243000056 ], [ -121.970574199999973, 49.129785490000096 ], [ -121.969721560999915, 49.130157360000105 ], [ -121.969633900999938, 49.130195597000082 ], [ -121.969164613999951, 49.130437680000043 ], [ -121.96894671299998, 49.130642296000111 ], [ -121.968734213999966, 49.130958906000082 ], [ -121.96869177799999, 49.131052898000092 ], [ -121.968664799999914, 49.131363911000065 ], [ -121.968695711999914, 49.132794103000137 ], [ -121.96979599499997, 49.132785790000106 ], [ -121.969802820999945, 49.133546089000021 ], [ -121.969850500999911, 49.133581298000152 ], [ -121.970208216999964, 49.133566702000067 ], [ -121.970523400999966, 49.133567699 ], [ -121.970622792999947, 49.13349661200008 ], [ -121.970626690999936, 49.132818706000073 ], [ -121.971723291999979, 49.13282189100012 ], [ -121.971731079999955, 49.133285695000041 ], [ -121.972015241999912, 49.133283653000056 ], [ -121.973345088999949, 49.133274051000051 ], [ -121.975082609999973, 49.133261502000053 ], [ -121.97509481599991, 49.133947883000054 ], [ -121.97509520599999, 49.133970712000057 ], [ -121.975110201999925, 49.134827790000095 ], [ -121.973360801999945, 49.134857797000016 ], [ -121.971756871999915, 49.134887 ], [ -121.971388799999914, 49.134893986000151 ], [ -121.970980977999957, 49.134901190000129 ], [ -121.9709269, 49.134766709000083 ], [ -121.968730594999968, 49.134083892000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100061584", "BldgCostT": "66798334", "sL_LossRatio": "0.864992842197996", "sL_AssetLoss": "317835", "sL_BldgLoss": "274925", "sL_StrLoss": "185300", "sL_NStrLoss": "89625", "sL_ContLoss": "42910", "geom_point": "0101000020E61000009F5C42F45A7E5EC000014AC7C5904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.97509481599991, 49.133947883000054 ], [ -121.975082609999973, 49.133261502000053 ], [ -121.973345088999949, 49.133274051000051 ], [ -121.972015241999912, 49.133283653000056 ], [ -121.971731079999955, 49.133285695000041 ], [ -121.971723291999979, 49.13282189100012 ], [ -121.970626690999936, 49.132818706000073 ], [ -121.970622792999947, 49.13349661200008 ], [ -121.970523400999966, 49.133567699 ], [ -121.970208216999964, 49.133566702000067 ], [ -121.969850500999911, 49.133581298000152 ], [ -121.969802820999945, 49.133546089000021 ], [ -121.96979599499997, 49.132785790000106 ], [ -121.968695711999914, 49.132794103000137 ], [ -121.968664799999914, 49.131363911000065 ], [ -121.96869177799999, 49.131052898000092 ], [ -121.968734213999966, 49.130958906000082 ], [ -121.96894671299998, 49.130642296000111 ], [ -121.969164613999951, 49.130437680000043 ], [ -121.969633900999938, 49.130195597000082 ], [ -121.969721560999915, 49.130157360000105 ], [ -121.970574199999973, 49.129785490000096 ], [ -121.97037128399991, 49.128978243000056 ], [ -121.970922457999947, 49.128762066000036 ], [ -121.970911941999972, 49.129270066000075 ], [ -121.97132309899996, 49.129273730000079 ], [ -121.971306350999924, 49.130083186 ], [ -121.970895188000014, 49.130079522000045 ], [ -121.97088401799999, 49.130619159000091 ], [ -121.970979888999949, 49.13062001400003 ], [ -121.971287732999912, 49.130602862000089 ], [ -121.971382833999925, 49.130653661000117 ], [ -121.971486390999956, 49.130894396000045 ], [ -121.972523113999927, 49.130903627000123 ], [ -121.972511960999967, 49.131443265 ], [ -121.97374548599997, 49.131454236000117 ], [ -121.973739915999928, 49.131724056000088 ], [ -121.974363878999895, 49.131729600000071 ], [ -121.974448563999928, 49.130751251000078 ], [ -121.974156422999954, 49.130740313000047 ], [ -121.974347495999922, 49.128532868000036 ], [ -121.974167259999916, 49.128526119000121 ], [ -121.974265481999979, 49.127391349000064 ], [ -121.977399863999963, 49.126132818000023 ], [ -121.977397992999968, 49.126226208000062 ], [ -121.977461902999934, 49.126501689000136 ], [ -121.977470949999926, 49.126950497000102 ], [ -121.977526722999954, 49.129721813000039 ], [ -121.97757745399997, 49.132241662000112 ], [ -121.977617988999924, 49.134255311000054 ], [ -121.977627291999951, 49.134781301000018 ], [ -121.975110201999925, 49.134827790000095 ], [ -121.97509520599999, 49.133970712000057 ], [ -121.97509481599991, 49.133947883000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263227644", "BldgCostT": "165746523", "sL_LossRatio": "0.804994294928929", "sL_AssetLoss": "752839", "sL_BldgLoss": "606031.1", "sL_StrLoss": "386975.1", "sL_NStrLoss": "219056", "sL_ContLoss": "146807.9", "geom_point": "0101000020E6100000E51271E7407E5EC0DD6354DF9A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.966666556999982, 49.139719188000115 ], [ -121.966648068999945, 49.138799531000124 ], [ -121.966645367999959, 49.138666068000092 ], [ -121.966641759999931, 49.138486156000091 ], [ -121.966638688000018, 49.138333268000032 ], [ -121.966622625999904, 49.138000008000041 ], [ -121.966613546999952, 49.137931239000046 ], [ -121.966623519999956, 49.137929246000027 ], [ -121.966538891999946, 49.137377892000131 ], [ -121.967694551999912, 49.137168066000108 ], [ -121.968080484999916, 49.137104995000101 ], [ -121.968080519999944, 49.137103800000027 ], [ -121.968818512000027, 49.137436910000098 ], [ -121.968810828999921, 49.137375237000072 ], [ -121.968770311999918, 49.137049296000058 ], [ -121.969342300999955, 49.135867209000011 ], [ -121.969403589999942, 49.135570998000162 ], [ -121.969326899999913, 49.135308907000088 ], [ -121.969265612999891, 49.13525620500004 ], [ -121.969030477999965, 49.135053993000049 ], [ -121.968650088999965, 49.134888806000035 ], [ -121.968545685999942, 49.13486826700008 ], [ -121.969219206999952, 49.134932592000077 ], [ -121.970118591999906, 49.13491671400007 ], [ -121.970980977999957, 49.134901190000129 ], [ -121.971388799999914, 49.134893986000151 ], [ -121.971756871999915, 49.134887 ], [ -121.973360801999945, 49.134857797000016 ], [ -121.975110201999925, 49.134827790000095 ], [ -121.977627291999951, 49.134781301000018 ], [ -121.977619998999899, 49.138269954000101 ], [ -121.977616406999942, 49.139979607000022 ], [ -121.974043896999959, 49.139982517000078 ], [ -121.973817918999927, 49.139982701000122 ], [ -121.973107011, 49.139957799000051 ], [ -121.971905215999982, 49.139914336000047 ], [ -121.97098420599994, 49.139881001000091 ], [ -121.97005615799992, 49.139845807000022 ], [ -121.970055402999975, 49.139845799000121 ], [ -121.969823111999958, 49.139836978000041 ], [ -121.969439645999927, 49.139822430000031 ], [ -121.969145993999945, 49.139811294000033 ], [ -121.966666556999982, 49.139719188000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "502820500", "BldgCostT": "341275000", "sL_LossRatio": "0.863302195772215", "sL_AssetLoss": "721058.4", "sL_BldgLoss": "622491.3", "sL_StrLoss": "297895.3", "sL_NStrLoss": "324596", "sL_ContLoss": "98567.1", "geom_point": "0101000020E610000022359B64B77D5EC074FB82695A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.961122103999941, 49.138021586000036 ], [ -121.961093986999956, 49.136387711000111 ], [ -121.96108030799995, 49.136387944000042 ], [ -121.958964148999954, 49.136424918000095 ], [ -121.958984426999947, 49.136286806000051 ], [ -121.959087705999934, 49.13591831100009 ], [ -121.959719792999962, 49.134718612000079 ], [ -121.959874694999911, 49.13438809900002 ], [ -121.95990650899995, 49.13351650000007 ], [ -121.959927009999959, 49.133122298000025 ], [ -121.960330197999966, 49.133137484000038 ], [ -121.960796710999958, 49.13308559700009 ], [ -121.96110334799999, 49.133021750000097 ], [ -121.962074342999983, 49.132819536000049 ], [ -121.962399595999955, 49.132751797000033 ], [ -121.963376890999911, 49.132501708000035 ], [ -121.963637920999986, 49.132511502000099 ], [ -121.965612686999961, 49.133122108000052 ], [ -121.968730594999968, 49.134083892000014 ], [ -121.9709269, 49.134766709000083 ], [ -121.970980977999957, 49.134901190000129 ], [ -121.970118591999906, 49.13491671400007 ], [ -121.969219206999952, 49.134932592000077 ], [ -121.968545685999942, 49.13486826700008 ], [ -121.968650088999965, 49.134888806000035 ], [ -121.969030477999965, 49.135053993000049 ], [ -121.969265612999891, 49.13525620500004 ], [ -121.969326899999913, 49.135308907000088 ], [ -121.969403589999942, 49.135570998000162 ], [ -121.969342300999955, 49.135867209000011 ], [ -121.968770311999918, 49.137049296000058 ], [ -121.968810828999921, 49.137375237000072 ], [ -121.968818512000027, 49.137436910000098 ], [ -121.968080519999944, 49.137103800000027 ], [ -121.968080484999916, 49.137104995000101 ], [ -121.967694551999912, 49.137168066000108 ], [ -121.966538891999946, 49.137377892000131 ], [ -121.966623519999956, 49.137929246000027 ], [ -121.966613546999952, 49.137931239000046 ], [ -121.966622625999904, 49.138000008000041 ], [ -121.966638688000018, 49.138333268000032 ], [ -121.966641759999931, 49.138486156000091 ], [ -121.966645367999959, 49.138666068000092 ], [ -121.966648068999945, 49.138799531000124 ], [ -121.966666556999982, 49.139719188000115 ], [ -121.966241477000011, 49.139703304000072 ], [ -121.965770267999943, 49.139617983000086 ], [ -121.965422256999901, 49.139503895000118 ], [ -121.965122262999955, 49.139327703000092 ], [ -121.964875072999945, 49.139110092000088 ], [ -121.96431520699997, 49.138404803000086 ], [ -121.964098094999954, 49.138252402000042 ], [ -121.963848572999922, 49.138141097000101 ], [ -121.963731480999954, 49.138108525000071 ], [ -121.963398692999988, 49.138016006000093 ], [ -121.963274873999978, 49.138002847000074 ], [ -121.963110693999937, 49.137985398000119 ], [ -121.962513966999921, 49.137996263000126 ], [ -121.962022651999973, 49.138005215000085 ], [ -121.961721003999955, 49.138010694000059 ], [ -121.961122103999941, 49.138021586000036 ] ], [ [ -121.964170409999952, 49.137035961000095 ], [ -121.964176033999976, 49.136766144000013 ], [ -121.964587251999916, 49.136769833000052 ], [ -121.964588398, 49.136714823000027 ], [ -121.96294450699996, 49.136653123000094 ], [ -121.9629423799999, 49.136755068000085 ], [ -121.96253116299999, 49.136751374000035 ], [ -121.962525531, 49.13702119200012 ], [ -121.964170409999952, 49.137035961000095 ] ], [ [ -121.968699438999963, 49.136806639000042 ], [ -121.96871063299993, 49.136267002000096 ], [ -121.968299419999965, 49.136263329000094 ], [ -121.968305018999928, 49.135993510000056 ], [ -121.96748259499999, 49.135986158000016 ], [ -121.96747699, 49.136255976000022 ], [ -121.966654562999935, 49.136248617000057 ], [ -121.966643342999959, 49.136788254000088 ], [ -121.968699438999963, 49.136806639000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162730386", "BldgCostT": "103377079", "sL_LossRatio": "0.717371343966056", "sL_AssetLoss": "382279", "sL_BldgLoss": "274236", "sL_StrLoss": "136476", "sL_NStrLoss": "137760", "sL_ContLoss": "108043", "geom_point": "0101000020E61000003FFA362F147D5EC07E21D39027914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.953109975999922, 49.138101 ], [ -121.952402319999962, 49.135254244000031 ], [ -121.951046927999968, 49.135233785000047 ], [ -121.951051260999989, 49.135028431000052 ], [ -121.953929677999923, 49.135054547000031 ], [ -121.953901286999951, 49.136403633000057 ], [ -121.954312498999968, 49.136407359000039 ], [ -121.954311025, 49.13647750300003 ], [ -121.955954896999984, 49.136539335000094 ], [ -121.955968690999939, 49.135882610000046 ], [ -121.956205070999928, 49.135884748000095 ], [ -121.956204679999971, 49.135614876000041 ], [ -121.955974357999963, 49.135612794000117 ], [ -121.955980024999945, 49.135342976000111 ], [ -121.955568819999925, 49.135339256000108 ], [ -121.955574489999918, 49.135069440000045 ], [ -121.954752082999946, 49.13506199700003 ], [ -121.954808815999954, 49.13236382400008 ], [ -121.952341735999937, 49.132341462000078 ], [ -121.952318989999966, 49.133420731000029 ], [ -121.950674235999941, 49.133405793000115 ], [ -121.950679930999939, 49.133135976000084 ], [ -121.95026874399997, 49.133132239000112 ], [ -121.950274441999937, 49.132862422000073 ], [ -121.949863258000022, 49.132858682000091 ], [ -121.949874656999967, 49.132319048000085 ], [ -121.945837491999981, 49.132282256000096 ], [ -121.945789426999966, 49.132833603000051 ], [ -121.949245796999918, 49.132963866000061 ], [ -121.949126946999982, 49.134328283000094 ], [ -121.949609469999984, 49.134346460000103 ], [ -121.949607117999975, 49.13437345800002 ], [ -121.950060856999983, 49.134390549000059 ], [ -121.95004219899999, 49.134604799000059 ], [ -121.95027436299992, 49.134613543000086 ], [ -121.950235020999941, 49.135065309000069 ], [ -121.950424385999924, 49.135072440000023 ], [ -121.950411172999935, 49.135224183000084 ], [ -121.945345600999985, 49.135147539000116 ], [ -121.945079316999909, 49.135276573000041 ], [ -121.944511705999986, 49.134860209000088 ], [ -121.943695698999989, 49.134124313000044 ], [ -121.943169588999979, 49.133443498000112 ], [ -121.94310766199996, 49.133386301000066 ], [ -121.942933599999975, 49.133225504000038 ], [ -121.942836810999935, 49.133175738000098 ], [ -121.944412490999952, 49.131831412000089 ], [ -121.947072576999915, 49.131828006000077 ], [ -121.94761737099999, 49.131827483000059 ], [ -121.9502234099999, 49.131824987000094 ], [ -121.955522704999964, 49.131820692000041 ], [ -121.957024006999958, 49.131819406000083 ], [ -121.958311113999969, 49.131807402000071 ], [ -121.95853271, 49.131765310000041 ], [ -121.958546035999959, 49.131760055000022 ], [ -121.95878820399993, 49.131664909000037 ], [ -121.959346000999972, 49.131319796000106 ], [ -121.959415765999921, 49.131296015000025 ], [ -121.959679483999935, 49.13120610200005 ], [ -121.959990581999989, 49.131175407000029 ], [ -121.960408897, 49.131204591000092 ], [ -121.961085002999937, 49.131323145000074 ], [ -121.961337991999983, 49.131367494000074 ], [ -121.962004617999952, 49.131411494000083 ], [ -121.96351130499994, 49.131395993000062 ], [ -121.964567596000037, 49.131388705000049 ], [ -121.964876014999973, 49.131387220000086 ], [ -121.965215670999925, 49.13138560900007 ], [ -121.965655187, 49.131383507000038 ], [ -121.965682489999935, 49.132965099000032 ], [ -121.965612686999961, 49.133122108000052 ], [ -121.963637920999986, 49.132511502000099 ], [ -121.963376890999911, 49.132501708000035 ], [ -121.962399595999955, 49.132751797000033 ], [ -121.962074342999983, 49.132819536000049 ], [ -121.96110334799999, 49.133021750000097 ], [ -121.960796710999958, 49.13308559700009 ], [ -121.960330197999966, 49.133137484000038 ], [ -121.959927009999959, 49.133122298000025 ], [ -121.95990650899995, 49.13351650000007 ], [ -121.959874694999911, 49.13438809900002 ], [ -121.959719792999962, 49.134718612000079 ], [ -121.959087705999934, 49.13591831100009 ], [ -121.958984426999947, 49.136286806000051 ], [ -121.958964148999954, 49.136424918000095 ], [ -121.958863951999973, 49.137104590000071 ], [ -121.9587593299999, 49.137219657000045 ], [ -121.958654626999959, 49.138061452000088 ], [ -121.957329898999959, 49.138079303000069 ], [ -121.956535206999945, 49.138083413000054 ], [ -121.956368595999933, 49.138084268000036 ], [ -121.953109975999922, 49.138101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97348000", "BldgCostT": "63040000", "sL_LossRatio": "0.86595588715589", "sL_AssetLoss": "275566", "sL_BldgLoss": "238628", "sL_StrLoss": "155822", "sL_NStrLoss": "82806", "sL_ContLoss": "36938", "geom_point": "0101000020E61000009885764E337D5EC0B749A88DA8904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.950292, 49.131163096000066 ], [ -121.950441671999968, 49.130577203000087 ], [ -121.950518419000019, 49.130483607000023 ], [ -121.950665591999936, 49.130399019000031 ], [ -121.950911515999948, 49.130330700000108 ], [ -121.951883604999963, 49.130187900000088 ], [ -121.953611198999951, 49.130122204000074 ], [ -121.953859910999981, 49.130100005000052 ], [ -121.954116704999976, 49.130016793000017 ], [ -121.954752690999968, 49.129560997000091 ], [ -121.954873216999943, 49.129436608000084 ], [ -121.954924201999987, 49.129291599000076 ], [ -121.95493099399998, 49.128646311000097 ], [ -121.954979312999981, 49.12853179500005 ], [ -121.955078511999915, 49.128463394000114 ], [ -121.95525960799992, 49.128429594000053 ], [ -121.956471468999894, 49.128430092000087 ], [ -121.956471014999963, 49.127725903000062 ], [ -121.956484730999946, 49.127725829000084 ], [ -121.957491970999939, 49.127721058000155 ], [ -121.960068310999986, 49.127708811000062 ], [ -121.960014886999915, 49.128401898000071 ], [ -121.960196403999944, 49.129170200000068 ], [ -121.960238418999936, 49.129347994000078 ], [ -121.960500503, 49.130939403000106 ], [ -121.960408897, 49.131204591000092 ], [ -121.959990581999989, 49.131175407000029 ], [ -121.959679483999935, 49.13120610200005 ], [ -121.959415765999921, 49.131296015000025 ], [ -121.959346000999972, 49.131319796000106 ], [ -121.95878820399993, 49.131664909000037 ], [ -121.958546035999959, 49.131760055000022 ], [ -121.95853271, 49.131765310000041 ], [ -121.958311113999969, 49.131807402000071 ], [ -121.957024006999958, 49.131819406000083 ], [ -121.955522704999964, 49.131820692000041 ], [ -121.9502234099999, 49.131824987000094 ], [ -121.950292, 49.131163096000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110410416", "BldgCostT": "75201666", "sL_LossRatio": "0.906188903234461", "sL_AssetLoss": "298195", "sL_BldgLoss": "270221", "sL_StrLoss": "193800", "sL_NStrLoss": "76421", "sL_ContLoss": "27974", "geom_point": "0101000020E6100000FA8A875A477C5EC061ACE3B685904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939426922999985, 49.13218420200004 ], [ -121.938423713999924, 49.132117497000067 ], [ -121.937207702999928, 49.132115707000018 ], [ -121.93609401599997, 49.132026787000022 ], [ -121.934976290999913, 49.131889815000129 ], [ -121.934649908999987, 49.131812612000026 ], [ -121.934375259999953, 49.131684817000057 ], [ -121.934337615999979, 49.131667280000038 ], [ -121.934285404, 49.13161845900003 ], [ -121.933839603999942, 49.131201314000045 ], [ -121.933695716999978, 49.130682798000123 ], [ -121.933672091999981, 49.13048260500004 ], [ -121.934041704999942, 49.129861808000108 ], [ -121.934306110999941, 49.12967529400008 ], [ -121.934577495999946, 49.12955029700003 ], [ -121.93526689, 49.129380689000101 ], [ -121.938652514999902, 49.127770195000082 ], [ -121.938758704999913, 49.127668695000096 ], [ -121.938773383999944, 49.127562896000015 ], [ -121.938381807000013, 49.126333495000054 ], [ -121.93826111199999, 49.125753700000111 ], [ -121.939892261999944, 49.125757352000051 ], [ -121.940264815999953, 49.125758192000077 ], [ -121.942229318999949, 49.125757498000056 ], [ -121.94372629599999, 49.125757191000083 ], [ -121.948058103999969, 49.125756412000079 ], [ -121.948718914999972, 49.125756107000079 ], [ -121.950446013999965, 49.125757993000079 ], [ -121.950465299999976, 49.126874105000034 ], [ -121.94982079699993, 49.126876909000018 ], [ -121.949695501999912, 49.126899206000132 ], [ -121.949591986, 49.126953889000085 ], [ -121.949489797999888, 49.127056490000065 ], [ -121.94946010299995, 49.127130184000144 ], [ -121.949493314999955, 49.12772559700003 ], [ -121.949490282999989, 49.128593790000075 ], [ -121.948262593999928, 49.128602592000085 ], [ -121.948138293999961, 49.128644791000099 ], [ -121.94769349799999, 49.129107701000116 ], [ -121.947467, 49.129268695000079 ], [ -121.946940820999941, 49.12948599 ], [ -121.946836596999944, 49.129549597000064 ], [ -121.94677960199995, 49.12965301200007 ], [ -121.946720118, 49.130524497000067 ], [ -121.946263600999956, 49.130571289000045 ], [ -121.94574550499999, 49.130695081000084 ], [ -121.945343497, 49.130825110000096 ], [ -121.945046490000024, 49.130976215000075 ], [ -121.944794617999889, 49.131144302000067 ], [ -121.944550716999942, 49.131394798000073 ], [ -121.94442197799998, 49.131644194000046 ], [ -121.944412490999952, 49.131831412000089 ], [ -121.942836810999935, 49.133175738000098 ], [ -121.942556995999965, 49.133031788000054 ], [ -121.940853898999976, 49.132438311000094 ], [ -121.940602276999982, 49.132386669000049 ], [ -121.940471442999979, 49.132359821000051 ], [ -121.940180519999927, 49.132300091000054 ], [ -121.939426922999985, 49.13218420200004 ] ], [ [ -121.946676692999972, 49.127972013000047 ], [ -121.946682409999966, 49.127702197000112 ], [ -121.944626705999937, 49.127683422000089 ], [ -121.944632433, 49.127413605000079 ], [ -121.941052842999966, 49.127380826000035 ], [ -121.940892603999941, 49.129216886000052 ], [ -121.942671608999916, 49.129284034000086 ], [ -121.942660670999942, 49.129409411000104 ], [ -121.945400323999976, 49.129512761000058 ], [ -121.945394503999978, 49.12957952 ], [ -121.945408927, 49.129579653000079 ], [ -121.945420371999916, 49.129040020000112 ], [ -121.945831524999932, 49.129043775000106 ], [ -121.945842966, 49.128504141000128 ], [ -121.946254112999966, 49.128507895000062 ], [ -121.94626555, 49.127968261000071 ], [ -121.946676692999972, 49.127972013000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186349917", "BldgCostT": "119051667", "sL_LossRatio": "0.840537755350817", "sL_AssetLoss": "488103", "sL_BldgLoss": "410269", "sL_StrLoss": "287241", "sL_NStrLoss": "123028", "sL_ContLoss": "77834", "geom_point": "0101000020E6100000164FF2FABE7C5EC06158171A7C8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95301997099989, 49.119663773000056 ], [ -121.952608894999969, 49.119660044000049 ], [ -121.952594508999965, 49.12034315000006 ], [ -121.953005342999973, 49.120358618000118 ], [ -121.95301997099989, 49.119663773000056 ], [ -121.954128745999981, 49.119673825000099 ], [ -121.954130297999924, 49.119655984000076 ], [ -121.953864971999934, 49.11964599800006 ], [ -121.953964566999943, 49.118500900000079 ], [ -121.957956320999955, 49.118490209000072 ], [ -121.958558996999926, 49.118415491000043 ], [ -121.958671376, 49.118679353000047 ], [ -121.958749496999971, 49.118862677000102 ], [ -121.958803202999945, 49.118988801000093 ], [ -121.959144971999976, 49.119791053000057 ], [ -121.959705530999912, 49.121106795000095 ], [ -121.959838934999965, 49.122805092000114 ], [ -121.959047195000011, 49.122814999000084 ], [ -121.958674356999936, 49.122925413000097 ], [ -121.958382155999956, 49.123085746000136 ], [ -121.957986288000015, 49.122924794000056 ], [ -121.957754613999938, 49.122830416000106 ], [ -121.956264212999898, 49.122819438000136 ], [ -121.954619864999984, 49.122813490000077 ], [ -121.953464116999939, 49.122816007000033 ], [ -121.95079769699997, 49.122820206000078 ], [ -121.950681881999969, 49.122859103000039 ], [ -121.950582200999918, 49.12293381100006 ], [ -121.950315220999954, 49.123339400000091 ], [ -121.95003281299995, 49.123276398000087 ], [ -121.949581894999966, 49.123244116000059 ], [ -121.949122486999954, 49.123246703000049 ], [ -121.948141852999953, 49.123248984000099 ], [ -121.947704895, 49.123250003000066 ], [ -121.947633516999986, 49.123255898000103 ], [ -121.94704488799999, 49.123304495000113 ], [ -121.946527302, 49.123455403000023 ], [ -121.945835691999918, 49.123574488000017 ], [ -121.945541216999985, 49.123603094000032 ], [ -121.943804317999948, 49.123605192000042 ], [ -121.94365980799995, 49.123643001000097 ], [ -121.938557167999974, 49.123052455000085 ], [ -121.93878808, 49.121428517000062 ], [ -121.938807491999938, 49.120971225000133 ], [ -121.9393500899999, 49.120455215000092 ], [ -121.93954380699995, 49.119759228000113 ], [ -121.938938887999953, 49.118539814 ], [ -121.952633231000021, 49.118504433000105 ], [ -121.952625942999958, 49.118850592000094 ], [ -121.953037009999946, 49.118854321000114 ], [ -121.95301997099989, 49.119663773000056 ] ], [ [ -121.948914923999936, 49.119356601000099 ], [ -121.948932031999945, 49.118547148000125 ], [ -121.94728777100002, 49.118532166000051 ], [ -121.94728205899996, 49.118801983000068 ], [ -121.946048858000012, 49.118790731000075 ], [ -121.946031703999935, 49.119600182000077 ], [ -121.946853851999933, 49.119607685000126 ], [ -121.94684813899994, 49.11987750200008 ], [ -121.947670290999937, 49.119885000000131 ], [ -121.947653162, 49.12069445200013 ], [ -121.946008832999951, 49.120679450000054 ], [ -121.946003114999968, 49.120949268000075 ], [ -121.945180944999919, 49.120941759000118 ], [ -121.945175219999939, 49.121211576000043 ], [ -121.943530874999936, 49.121196539000032 ], [ -121.943525142999988, 49.121466356000049 ], [ -121.942892769999986, 49.121460567000099 ], [ -121.942828124999906, 49.122201741000026 ], [ -121.943511003999959, 49.122131850000095 ], [ -121.943513677999931, 49.122005990000055 ], [ -121.945980239, 49.122028536000087 ], [ -121.945977235999948, 49.122170242000017 ], [ -121.946337833999976, 49.122179662000107 ], [ -121.94633750399997, 49.122301667000045 ], [ -121.947207809999895, 49.122309606000016 ], [ -121.947213522999974, 49.122039790000059 ], [ -121.947624614999953, 49.122043537000081 ], [ -121.94764745399999, 49.120964270000094 ], [ -121.948058538999973, 49.120968016000042 ], [ -121.948075660999947, 49.120158565000061 ], [ -121.950542134, 49.120181013000092 ], [ -121.950559213999924, 49.119371560000083 ], [ -121.948914923999936, 49.119356601000099 ] ], [ [ -121.943970606999954, 49.119851216000043 ], [ -121.943976336999938, 49.119581398 ], [ -121.944387410999965, 49.119585158000106 ], [ -121.944398864999968, 49.1190455240001 ], [ -121.943987793999923, 49.119041765000105 ], [ -121.943993522999918, 49.118771948000052 ], [ -121.943384110999901, 49.118766371000056 ], [ -121.943290049999959, 49.119844988000068 ], [ -121.943970606999954, 49.119851216000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6186667", "BldgCostT": "4266667", "sL_LossRatio": "0.905457383354702", "sL_AssetLoss": "17939", "sL_BldgLoss": "16243", "sL_StrLoss": "11380", "sL_NStrLoss": "4863", "sL_ContLoss": "1696", "geom_point": "0101000020E61000003167AEBAEB7B5EC00FC4891A12914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.933159572999926, 49.132910792000104 ], [ -121.933200792999941, 49.13289300400006 ], [ -121.933270898, 49.132812692000059 ], [ -121.933839603999942, 49.131201314000045 ], [ -121.934285404, 49.13161845900003 ], [ -121.934337615999979, 49.131667280000038 ], [ -121.934375259999953, 49.131684817000057 ], [ -121.934649908999987, 49.131812612000026 ], [ -121.934976290999913, 49.131889815000129 ], [ -121.93609401599997, 49.132026787000022 ], [ -121.937207702999928, 49.132115707000018 ], [ -121.938423713999924, 49.132117497000067 ], [ -121.939426922999985, 49.13218420200004 ], [ -121.940180519999927, 49.132300091000054 ], [ -121.940471442999979, 49.132359821000051 ], [ -121.940602276999982, 49.132386669000049 ], [ -121.939969266999938, 49.134602664000056 ], [ -121.93846468699999, 49.134545845000083 ], [ -121.938478406999963, 49.134388760000071 ], [ -121.937813073999962, 49.134363628000138 ], [ -121.937815438, 49.134336574000045 ], [ -121.935054836999939, 49.134232251000064 ], [ -121.934965609999921, 49.135252987000051 ], [ -121.934672811, 49.135241919000102 ], [ -121.933991287999987, 49.135140399000129 ], [ -121.932512503999959, 49.134920094000059 ], [ -121.932305016999919, 49.134856362000114 ], [ -121.932069884, 49.134819200000031 ], [ -121.932048130999959, 49.134813363000028 ], [ -121.932066231999968, 49.134783011000131 ], [ -121.93309786199994, 49.133051220000027 ], [ -121.933159572999926, 49.132910792000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152017416", "BldgCostT": "103101666", "sL_LossRatio": "0.884049848728318", "sL_AssetLoss": "430021", "sL_BldgLoss": "380160", "sL_StrLoss": "280860", "sL_NStrLoss": "99300", "sL_ContLoss": "49861", "geom_point": "0101000020E6100000C129AD9E577C5EC04A58E1B79D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939969266999938, 49.134602664000056 ], [ -121.940602276999982, 49.132386669000049 ], [ -121.940853898999976, 49.132438311000094 ], [ -121.942556995999965, 49.133031788000054 ], [ -121.942836810999935, 49.133175738000098 ], [ -121.942933599999975, 49.133225504000038 ], [ -121.94310766199996, 49.133386301000066 ], [ -121.943169588999979, 49.133443498000112 ], [ -121.943695698999989, 49.134124313000044 ], [ -121.944511705999986, 49.134860209000088 ], [ -121.945079316999909, 49.135276573000041 ], [ -121.945456275999902, 49.135553095000084 ], [ -121.945659309999897, 49.135631091000079 ], [ -121.945917298, 49.13569130500008 ], [ -121.947048595999917, 49.135721287000173 ], [ -121.947294612999912, 49.13577838300008 ], [ -121.947444314999984, 49.135869693000075 ], [ -121.947661776999922, 49.136001399000094 ], [ -121.94783690099996, 49.136242401000096 ], [ -121.947983504999911, 49.136605007000114 ], [ -121.94812938699998, 49.137101888000124 ], [ -121.948156894999954, 49.1375736050001 ], [ -121.94809599499996, 49.138098706000086 ], [ -121.948036581999972, 49.138309307000064 ], [ -121.947956484999963, 49.138598400000099 ], [ -121.94782489, 49.138897303000057 ], [ -121.947413792999939, 49.139319110000017 ], [ -121.947112089999948, 49.139492603000122 ], [ -121.946506504999945, 49.139706890000092 ], [ -121.946173507999958, 49.13978269400009 ], [ -121.945776811999949, 49.139788493000054 ], [ -121.94524940699992, 49.139765896 ], [ -121.944686905, 49.139690602000037 ], [ -121.94438690699991, 49.139687383000123 ], [ -121.944105913000016, 49.139717400000123 ], [ -121.943388298999963, 49.139879613000105 ], [ -121.943068683, 49.139951751000083 ], [ -121.942513320999936, 49.140077111000025 ], [ -121.942392397999924, 49.140104385000029 ], [ -121.942078787999918, 49.140241400000136 ], [ -121.941786801999982, 49.140444088000059 ], [ -121.941457499999927, 49.140807588000051 ], [ -121.941017000999963, 49.141612388000098 ], [ -121.941101842999956, 49.141895393000091 ], [ -121.937771371999958, 49.142035270000129 ], [ -121.93798908399998, 49.139543287000045 ], [ -121.938263513999971, 49.139553652000082 ], [ -121.938307998999932, 49.139044394000109 ], [ -121.938472740999885, 49.139050615000045 ], [ -121.938515716999945, 49.138558597000134 ], [ -121.939405493999971, 49.138592197000065 ], [ -121.939460411999974, 49.137963318000111 ], [ -121.941116665999942, 49.138025843000072 ], [ -121.941119212999979, 49.137906318000034 ], [ -121.941530436999983, 49.137910090000076 ], [ -121.941536183999943, 49.137640274000034 ], [ -121.942246445999942, 49.137646783000022 ], [ -121.942278135999985, 49.13728362800007 ], [ -121.941931042999926, 49.137270531000091 ], [ -121.941961830999929, 49.136917752000073 ], [ -121.941542352999988, 49.136901922000028 ], [ -121.941648762999961, 49.135682690000124 ], [ -121.940061777999972, 49.135622784000056 ], [ -121.940150242999962, 49.134609496000145 ], [ -121.939969266999938, 49.134602664000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73582583", "BldgCostT": "47798333", "sL_LossRatio": "0.875198732200299", "sL_AssetLoss": "156617.8", "sL_BldgLoss": "137071.7", "sL_StrLoss": "97030.7", "sL_NStrLoss": "40041", "sL_ContLoss": "19546.1", "geom_point": "0101000020E6100000B86E31DCCC7C5EC0571B31ED7A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.945079316999909, 49.135276573000041 ], [ -121.945345600999985, 49.135147539000116 ], [ -121.950411172999935, 49.135224183000084 ], [ -121.950404382000031, 49.135302170000067 ], [ -121.951044975999977, 49.135326291000091 ], [ -121.951046927999968, 49.135233785000047 ], [ -121.952402319999962, 49.135254244000031 ], [ -121.953109975999922, 49.138101 ], [ -121.951437881999979, 49.138109569000015 ], [ -121.951214418999925, 49.138110708000092 ], [ -121.949651786999979, 49.138105103000079 ], [ -121.94847143899996, 49.138100258000073 ], [ -121.94809599499996, 49.138098706000086 ], [ -121.948156894999954, 49.1375736050001 ], [ -121.94812938699998, 49.137101888000124 ], [ -121.947983504999911, 49.136605007000114 ], [ -121.94783690099996, 49.136242401000096 ], [ -121.947661776999922, 49.136001399000094 ], [ -121.947444314999984, 49.135869693000075 ], [ -121.947294612999912, 49.13577838300008 ], [ -121.947048595999917, 49.135721287000173 ], [ -121.945917298, 49.13569130500008 ], [ -121.945659309999897, 49.135631091000079 ], [ -121.945456275999902, 49.135553095000084 ], [ -121.945079316999909, 49.135276573000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156410105", "BldgCostT": "88193813", "sL_LossRatio": "0.659041608289359", "sL_AssetLoss": "458226", "sL_BldgLoss": "301990", "sL_StrLoss": "138700", "sL_NStrLoss": "163290", "sL_ContLoss": "156236", "geom_point": "0101000020E6100000DA96AE1EFF7C5EC0C1173FF025924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.94538111199995, 49.14747078300006 ], [ -121.944886915999987, 49.14653249600012 ], [ -121.944791515999952, 49.14580310900002 ], [ -121.944738413999957, 49.145326003000022 ], [ -121.944834492999973, 49.144617301000139 ], [ -121.944784296999956, 49.1443601940001 ], [ -121.944686726999947, 49.144173500000086 ], [ -121.944501308000014, 49.143988890000038 ], [ -121.944262813999927, 49.143861796000067 ], [ -121.943891007999923, 49.143784699000015 ], [ -121.943513100999937, 49.143762313000074 ], [ -121.943073605, 49.143691589000063 ], [ -121.942359604999979, 49.143465401000114 ], [ -121.942125702999959, 49.143317706000076 ], [ -121.941361600999983, 49.142440502000099 ], [ -121.941164592999939, 49.142104796000048 ], [ -121.941101842999956, 49.141895393000091 ], [ -121.941017000999963, 49.141612388000098 ], [ -121.941457499999927, 49.140807588000051 ], [ -121.941786801999982, 49.140444088000059 ], [ -121.942078787999918, 49.140241400000136 ], [ -121.942392397999924, 49.140104385000029 ], [ -121.942513320999936, 49.140077111000025 ], [ -121.943068683, 49.139951751000083 ], [ -121.943388298999963, 49.139879613000105 ], [ -121.944105913000016, 49.139717400000123 ], [ -121.94438690699991, 49.139687383000123 ], [ -121.944686905, 49.139690602000037 ], [ -121.94524940699992, 49.139765896 ], [ -121.945776811999949, 49.139788493000054 ], [ -121.946173507999958, 49.13978269400009 ], [ -121.946506504999945, 49.139706890000092 ], [ -121.947112089999948, 49.139492603000122 ], [ -121.947413792999939, 49.139319110000017 ], [ -121.94782489, 49.138897303000057 ], [ -121.947956484999963, 49.138598400000099 ], [ -121.948036581999972, 49.138309307000064 ], [ -121.94809599499996, 49.138098706000086 ], [ -121.94847143899996, 49.138100258000073 ], [ -121.949651786999979, 49.138105103000079 ], [ -121.951214418999925, 49.138110708000092 ], [ -121.951437881999979, 49.138109569000015 ], [ -121.953109975999922, 49.138101 ], [ -121.956368595999933, 49.138084268000036 ], [ -121.956535206999945, 49.138083413000054 ], [ -121.957329898999959, 49.138079303000069 ], [ -121.958654626999959, 49.138061452000088 ], [ -121.9587593299999, 49.137219657000045 ], [ -121.958863951999973, 49.137104590000071 ], [ -121.958964148999954, 49.136424918000095 ], [ -121.96108030799995, 49.136387944000042 ], [ -121.961093986999956, 49.136387711000111 ], [ -121.961122103999941, 49.138021586000036 ], [ -121.961721003999955, 49.138010694000059 ], [ -121.962022651999973, 49.138005215000085 ], [ -121.962513966999921, 49.137996263000126 ], [ -121.963110693999937, 49.137985398000119 ], [ -121.963274873999978, 49.138002847000074 ], [ -121.963398692999988, 49.138016006000093 ], [ -121.963731480999954, 49.138108525000071 ], [ -121.963848572999922, 49.138141097000101 ], [ -121.964098094999954, 49.138252402000042 ], [ -121.96431520699997, 49.138404803000086 ], [ -121.964875072999945, 49.139110092000088 ], [ -121.965122262999955, 49.139327703000092 ], [ -121.965422256999901, 49.139503895000118 ], [ -121.965770267999943, 49.139617983000086 ], [ -121.966241477000011, 49.139703304000072 ], [ -121.966666556999982, 49.139719188000115 ], [ -121.966623411999976, 49.140880675000133 ], [ -121.966127818999922, 49.140776426000052 ], [ -121.961625619999936, 49.140796804000026 ], [ -121.960683092999929, 49.140801983000053 ], [ -121.960056150999947, 49.14083705899999 ], [ -121.959886625999928, 49.140846896000049 ], [ -121.96091536599999, 49.142849856000076 ], [ -121.961370159999902, 49.143735229000086 ], [ -121.961411396999921, 49.143815492000037 ], [ -121.961640572999968, 49.144227363000041 ], [ -121.961731717999967, 49.14439109900011 ], [ -121.961775900999967, 49.144470113000089 ], [ -121.96179693000002, 49.144507724000057 ], [ -121.961846832999967, 49.144596945000032 ], [ -121.961907458999974, 49.144705380000076 ], [ -121.961941783999976, 49.144766797000088 ], [ -121.961491417999966, 49.144875369000125 ], [ -121.960987699999961, 49.144996802000065 ], [ -121.960833238999939, 49.145034033000101 ], [ -121.958913788999951, 49.145496692000094 ], [ -121.957861691999966, 49.145750264000092 ], [ -121.957873444999962, 49.145615077000066 ], [ -121.957821064999905, 49.145614604000038 ], [ -121.957818, 49.145760795000079 ], [ -121.957323471, 49.14587997900005 ], [ -121.956398264999947, 49.145871621000069 ], [ -121.956170236, 49.145869558000129 ], [ -121.9561964599999, 49.144621148000056 ], [ -121.954228540999935, 49.144547142000143 ], [ -121.954229049999952, 49.144541281000024 ], [ -121.954039133999956, 49.144534137000036 ], [ -121.954351937999903, 49.140939383000067 ], [ -121.954774101999973, 49.140955263000052 ], [ -121.954775220999977, 49.140942394000099 ], [ -121.95627254499999, 49.140998702000047 ], [ -121.956290192, 49.140158483000086 ], [ -121.954896254999952, 49.140106062000015 ], [ -121.954877102999944, 49.140326196000046 ], [ -121.953710246999975, 49.14028230100012 ], [ -121.953660484999943, 49.140854124000036 ], [ -121.953650876999987, 49.140853762000091 ], [ -121.953621501000015, 49.141191323000015 ], [ -121.953611446999943, 49.141190945000126 ], [ -121.953583817999956, 49.141508423000047 ], [ -121.952703551999917, 49.141475301000071 ], [ -121.952698481999931, 49.141533544 ], [ -121.950784362999926, 49.141461496 ], [ -121.950735227999971, 49.142025691000072 ], [ -121.949939386999958, 49.141995724000019 ], [ -121.949938595999953, 49.142004809000092 ], [ -121.947865725999975, 49.141926731000105 ], [ -121.947695689999989, 49.143877696000068 ], [ -121.94892759, 49.143924103000103 ], [ -121.948849516999957, 49.144820121000109 ], [ -121.949191436999925, 49.144832999000101 ], [ -121.949158445999899, 49.145211646000149 ], [ -121.950478816999947, 49.14526136500011 ], [ -121.950369914999939, 49.146511616000097 ], [ -121.950300388999935, 49.147309776000064 ], [ -121.950709136999976, 49.147325164000073 ], [ -121.95069032, 49.147541187000044 ], [ -121.94814979899995, 49.148191596000125 ], [ -121.94773521599997, 49.148297714000087 ], [ -121.947335284999937, 49.148400097 ], [ -121.947323803999922, 49.148395028000103 ], [ -121.946611510999901, 49.148081233000049 ], [ -121.946404177999952, 49.147989900000098 ], [ -121.946100096999913, 49.147860413000032 ], [ -121.945445870999919, 49.147505903000102 ], [ -121.94538111199995, 49.14747078300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392680653", "BldgCostT": "250332308", "sL_LossRatio": "0.688773431441833", "sL_AssetLoss": "989109", "sL_BldgLoss": "681272", "sL_StrLoss": "284638", "sL_NStrLoss": "396634", "sL_ContLoss": "307837", "geom_point": "0101000020E61000003FB7D095087E5EC0A6DBE9392F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.962245814999932, 49.144898108000099 ], [ -121.962208579, 49.144821005000061 ], [ -121.961995710999972, 49.144872514000085 ], [ -121.961981245999965, 49.144844162000041 ], [ -121.961941783999976, 49.144766797000088 ], [ -121.961907458999974, 49.144705380000076 ], [ -121.961846832999967, 49.144596945000032 ], [ -121.96179693000002, 49.144507724000057 ], [ -121.961775900999967, 49.144470113000089 ], [ -121.961731717999967, 49.14439109900011 ], [ -121.961640572999968, 49.144227363000041 ], [ -121.961411396999921, 49.143815492000037 ], [ -121.961370159999902, 49.143735229000086 ], [ -121.96091536599999, 49.142849856000076 ], [ -121.959886625999928, 49.140846896000049 ], [ -121.960056150999947, 49.14083705899999 ], [ -121.960683092999929, 49.140801983000053 ], [ -121.961625619999936, 49.140796804000026 ], [ -121.966127818999922, 49.140776426000052 ], [ -121.966623411999976, 49.140880675000133 ], [ -121.966666556999982, 49.139719188000115 ], [ -121.969145993999945, 49.139811294000033 ], [ -121.969439645999927, 49.139822430000031 ], [ -121.969823111999958, 49.139836978000041 ], [ -121.970055402999975, 49.139845799000121 ], [ -121.97005615799992, 49.139845807000022 ], [ -121.97098420599994, 49.139881001000091 ], [ -121.971905215999982, 49.139914336000047 ], [ -121.973107011, 49.139957799000051 ], [ -121.973817918999927, 49.139982701000122 ], [ -121.974043896999959, 49.139982517000078 ], [ -121.977616406999942, 49.139979607000022 ], [ -121.977622527999941, 49.140383297000028 ], [ -121.977636499999946, 49.141301206000023 ], [ -121.977638259999964, 49.142642231000075 ], [ -121.977639388999975, 49.14349881600009 ], [ -121.977646149999927, 49.143681413000138 ], [ -121.977660662999966, 49.143852568000071 ], [ -121.977612814999986, 49.143847274000073 ], [ -121.975861242999912, 49.143821065000061 ], [ -121.975841698999957, 49.143820787000067 ], [ -121.969249928999957, 49.143721904000081 ], [ -121.967839421999912, 49.14377810000007 ], [ -121.967319580999913, 49.143831986000095 ], [ -121.967320019999974, 49.143810881000086 ], [ -121.96649746699994, 49.143803521000073 ], [ -121.966495052999932, 49.143919584000059 ], [ -121.966494352999973, 49.143953298000099 ], [ -121.963976396999954, 49.144472606000065 ], [ -121.963032035999959, 49.144704800000078 ], [ -121.962245814999932, 49.144898108000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3537917", "BldgCostT": "1966667", "sL_LossRatio": "0.635310941369328", "sL_AssetLoss": "28671", "sL_BldgLoss": "18215", "sL_StrLoss": "9739", "sL_NStrLoss": "8476", "sL_ContLoss": "10456", "geom_point": "0101000020E6100000295B03DF1D7F5EC025587FF837944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.984949893999953, 49.158458015000058 ], [ -121.986115191999929, 49.156489815000079 ], [ -121.986211504999972, 49.156145069000075 ], [ -121.986179719999924, 49.156513137000047 ], [ -121.987077085999928, 49.156546612000092 ], [ -121.987018307999961, 49.15722739100007 ], [ -121.987219922999941, 49.157234910000113 ], [ -121.987071417, 49.158954986000033 ], [ -121.986501086999922, 49.159002104000102 ], [ -121.986254008999964, 49.159098889000084 ], [ -121.985786908999927, 49.159086108000075 ], [ -121.985384310999962, 49.159370998000085 ], [ -121.984944603999935, 49.15866449900011 ], [ -121.984949893999953, 49.158458015000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10082975", "BldgCostT": "5145309", "sL_LossRatio": "0.667024338732478", "sL_AssetLoss": "58713", "sL_BldgLoss": "39163", "sL_StrLoss": "23407", "sL_NStrLoss": "15756", "sL_ContLoss": "19550", "geom_point": "0101000020E610000093D5BECA2B7F5EC0209011716F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.985834080999965, 49.15075590500004 ], [ -121.98647104099993, 49.149941274000099 ], [ -121.986318500999914, 49.150148323000053 ], [ -121.985856957999914, 49.150744546000048 ], [ -121.9863298, 49.150803861 ], [ -121.990191336999928, 49.151198122000039 ], [ -121.990123088999951, 49.151989317000137 ], [ -121.989874522999955, 49.151980053000052 ], [ -121.989848501999958, 49.152281681000076 ], [ -121.989817371999976, 49.152307349000061 ], [ -121.98946769799997, 49.152294314000052 ], [ -121.989423306999967, 49.152808832000083 ], [ -121.98395462299996, 49.152604819000025 ], [ -121.984051430999955, 49.151484269000051 ], [ -121.985582904999916, 49.150925391000065 ], [ -121.985834080999965, 49.15075590500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3063558", "BldgCostT": "1303642", "sL_LossRatio": "0.663961813842482", "sL_AssetLoss": "20950", "sL_BldgLoss": "13910", "sL_StrLoss": "5930", "sL_NStrLoss": "7980", "sL_ContLoss": "7040", "geom_point": "0101000020E6100000A59421D8027E5EC0FF2247BEBB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.969137659999944, 49.155336851000051 ], [ -121.969141297999968, 49.155161600000064 ], [ -121.96872992699997, 49.155157927000126 ], [ -121.968741128999937, 49.154618292000073 ], [ -121.968329763999947, 49.154614617000099 ], [ -121.968357781999941, 49.153265529000066 ], [ -121.969138767999965, 49.153272506000086 ], [ -121.96937210599998, 49.153632793000099 ], [ -121.969405094999914, 49.153950893000037 ], [ -121.969600110999949, 49.154409801999989 ], [ -121.969411161999957, 49.154860354000093 ], [ -121.969137659999944, 49.155336851000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1898750", "BldgCostT": "1100000", "sL_LossRatio": "0.507871321013005", "sL_AssetLoss": "16071", "sL_BldgLoss": "8162", "sL_StrLoss": "1836", "sL_NStrLoss": "6326", "sL_ContLoss": "7909", "geom_point": "0101000020E6100000CDA434385D7F5EC0D243449C14944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.989254650999953, 49.15749835900003 ], [ -121.98926563199997, 49.156958721000088 ], [ -121.988854244999956, 49.15695511900001 ], [ -121.98887072199993, 49.156145662000085 ], [ -121.989100735999969, 49.156147676000067 ], [ -121.989300590999932, 49.156318897000077 ], [ -121.990056185999919, 49.156209201000138 ], [ -121.990727484999979, 49.156296094000062 ], [ -121.990920472999946, 49.156516051000089 ], [ -121.990916668999958, 49.156703294000081 ], [ -121.99108605899994, 49.156704774000076 ], [ -121.991101090999962, 49.156721907000133 ], [ -121.991312991999934, 49.157181890000047 ], [ -121.991318346999961, 49.157184989000044 ], [ -121.991311616999965, 49.157516347000112 ], [ -121.989254650999953, 49.15749835900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77532981", "BldgCostT": "42344718", "sL_LossRatio": "0.605162272377051", "sL_AssetLoss": "212852", "sL_BldgLoss": "128810", "sL_StrLoss": "44148", "sL_NStrLoss": "84662", "sL_ContLoss": "84042", "geom_point": "0101000020E6100000C38DD793EB7D5EC0BD8E61E334934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.965467631999971, 49.157011578000038 ], [ -121.964810366999941, 49.156481707000061 ], [ -121.964766307999966, 49.156446194000068 ], [ -121.964559928999932, 49.156046606000054 ], [ -121.964635060999939, 49.153639369000047 ], [ -121.964721619, 49.153451983000096 ], [ -121.964728691999966, 49.153330915000041 ], [ -121.965329788999938, 49.15284100300012 ], [ -121.96567222399996, 49.152431487000094 ], [ -121.965807314999935, 49.152269907000061 ], [ -121.965925792999954, 49.151829788000093 ], [ -121.965243406999903, 49.151023702000103 ], [ -121.96475591799998, 49.15078580200008 ], [ -121.964257809999964, 49.15066334300009 ], [ -121.964197408999922, 49.15064851100005 ], [ -121.964205294999886, 49.150552006000062 ], [ -121.964222527999965, 49.150341467000047 ], [ -121.964215344999928, 49.15006078000004 ], [ -121.964145258999977, 49.149967993000104 ], [ -121.964090121999959, 49.149323078000087 ], [ -121.96384040099997, 49.148692486000101 ], [ -121.963647423999959, 49.148261509000044 ], [ -121.963020622999977, 49.146872011000056 ], [ -121.9627702, 49.146375808000073 ], [ -121.96235831099996, 49.145575892000124 ], [ -121.96217018399993, 49.145216301000119 ], [ -121.962101108999931, 49.145080065000116 ], [ -121.962054532999929, 49.144988224000016 ], [ -121.962033191999922, 49.144946096000083 ], [ -121.961995710999972, 49.144872514000085 ], [ -121.962208579, 49.144821005000061 ], [ -121.962245814999932, 49.144898108000099 ], [ -121.963032035999959, 49.144704800000078 ], [ -121.963976396999954, 49.144472606000065 ], [ -121.966494352999973, 49.143953298000099 ], [ -121.966480631999929, 49.144612973000086 ], [ -121.965658065999918, 49.144605607000074 ], [ -121.965652448999933, 49.144875426000098 ], [ -121.965241163999963, 49.144871739000088 ], [ -121.965235544999985, 49.145141557000031 ], [ -121.964868248999935, 49.145138265000135 ], [ -121.964813355, 49.145770737000142 ], [ -121.969238676999936, 49.145936663000022 ], [ -121.96921319199997, 49.146230605000092 ], [ -121.968930363999917, 49.149492498000058 ], [ -121.972138138999966, 49.149521099000026 ], [ -121.972132558999988, 49.149790916000043 ], [ -121.972543885, 49.149794578000034 ], [ -121.972538304999901, 49.150064395000129 ], [ -121.97294963399996, 49.150068055000084 ], [ -121.972944057999939, 49.150337874000108 ], [ -121.973355387999987, 49.15034153100008 ], [ -121.973349812000023, 49.150611351000059 ], [ -121.973761146999905, 49.150615007000077 ], [ -121.973755574, 49.150884825000041 ], [ -121.974069941999971, 49.150887619000038 ], [ -121.974063620999942, 49.150922503000103 ], [ -121.974161617, 49.151144780000088 ], [ -121.974161337999973, 49.151158299000024 ], [ -121.97416760099999, 49.151158355000092 ], [ -121.974246978999986, 49.151338396000035 ], [ -121.97443629499999, 49.151492212000107 ], [ -121.974973004999953, 49.151699174000029 ], [ -121.974972880999971, 49.151705241000101 ], [ -121.97498911299999, 49.151705385000092 ], [ -121.975034792999935, 49.151723000000125 ], [ -121.975381598999974, 49.151836113000101 ], [ -121.975378657999954, 49.151978710000051 ], [ -121.975790003999961, 49.151982359000016 ], [ -121.975756625999963, 49.15360126900007 ], [ -121.974522548999985, 49.153590314000098 ], [ -121.974533688999955, 49.153050679000053 ], [ -121.974122333999986, 49.153047025000035 ], [ -121.974133477999942, 49.152507389000057 ], [ -121.973722129999885, 49.152503732000049 ], [ -121.973727702999938, 49.152233915000089 ], [ -121.972082313999962, 49.152219278000047 ], [ -121.97208789799997, 49.151949461000072 ], [ -121.970853864, 49.151938468000019 ], [ -121.970859453999964, 49.151668650000055 ], [ -121.968802742999955, 49.15165030000005 ], [ -121.96880834299999, 49.151380481000096 ], [ -121.968760584999984, 49.151380055000068 ], [ -121.968737995999945, 49.151640532000094 ], [ -121.968391795999935, 49.151627557000047 ], [ -121.968391400999948, 49.151646624000115 ], [ -121.968323351, 49.151646017000125 ], [ -121.968292698999946, 49.151999440000132 ], [ -121.968258209999988, 49.151998148000111 ], [ -121.96810868599999, 49.153722040000083 ], [ -121.967015333999939, 49.153681058000068 ], [ -121.96688351799996, 49.155200265000069 ], [ -121.966621232999927, 49.155190433000072 ], [ -121.966461883999898, 49.157026719000051 ], [ -121.967873309999916, 49.157039345000079 ], [ -121.967692734999957, 49.157206981000023 ], [ -121.966533014000021, 49.157307648000064 ], [ -121.965467631999971, 49.157011578000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302563855", "BldgCostT": "163129895", "sL_LossRatio": "0.575924456837899", "sL_AssetLoss": "1100329.9", "sL_BldgLoss": "633706.9", "sL_StrLoss": "200465.9", "sL_NStrLoss": "433241", "sL_ContLoss": "466623", "geom_point": "0101000020E61000008148AF9BCC7F5EC02936B43B03934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.991735587999969, 49.156900355000083 ], [ -121.99174491899997, 49.156440663000083 ], [ -121.991333534999953, 49.156437070000052 ], [ -121.991339013999962, 49.156167251000028 ], [ -121.991181132999884, 49.156165871000098 ], [ -121.99114317899992, 49.155992692000098 ], [ -121.990519876999926, 49.15598161300008 ], [ -121.990532700999935, 49.155350602000055 ], [ -121.991766827999967, 49.155361386000088 ], [ -121.99177230399999, 49.15509156600011 ], [ -121.992183675999982, 49.155095158000094 ], [ -121.992185385999932, 49.155010865000087 ], [ -121.991926663999948, 49.155001226000145 ], [ -121.991950071999938, 49.154729768000081 ], [ -121.99179587499998, 49.154724024000089 ], [ -121.99207497899998, 49.151487076000066 ], [ -121.994753570999976, 49.151872034000085 ], [ -121.99489397, 49.151388587000071 ], [ -121.995155690999979, 49.150785057000057 ], [ -121.995411341999926, 49.150195466000113 ], [ -121.995634415999973, 49.149681012000052 ], [ -121.995691550999965, 49.149549289000042 ], [ -121.995808482999962, 49.149417505 ], [ -121.996263007999914, 49.149190399000126 ], [ -121.995688624999929, 49.148818157000093 ], [ -121.995774685999919, 49.148801896000087 ], [ -121.996194412999969, 49.148418807000063 ], [ -121.996299320999967, 49.147906098000121 ], [ -121.996205081999946, 49.147168294000032 ], [ -121.996344515999951, 49.147007392000063 ], [ -121.996621197999957, 49.146937603000055 ], [ -121.997648818, 49.146956104000083 ], [ -121.997979095999966, 49.146894888000112 ], [ -121.999664005999946, 49.146306706000118 ], [ -122.000234692999967, 49.145889389000068 ], [ -122.00033588899997, 49.145682899000036 ], [ -122.000302801999965, 49.145197204000027 ], [ -121.999934582999956, 49.145859498000014 ], [ -121.999405311999951, 49.146251097000096 ], [ -121.997681911999976, 49.146739592000124 ], [ -121.996268209000021, 49.14675528500009 ], [ -121.995964807999925, 49.146815110000041 ], [ -121.995865918999982, 49.147003105000032 ], [ -121.995954909999924, 49.148038495 ], [ -121.995739298999965, 49.148495703000052 ], [ -121.995530301000016, 49.148663788000071 ], [ -121.995201093999967, 49.148660907000071 ], [ -121.994755801999929, 49.14835190200008 ], [ -121.994433695999959, 49.147953092000122 ], [ -121.993835889999986, 49.147713799000073 ], [ -121.992667891999929, 49.147766512000118 ], [ -121.991929119999895, 49.147723799000083 ], [ -121.990468590999953, 49.148106898000023 ], [ -121.989370515999937, 49.148115406000045 ], [ -121.98972011099994, 49.147813507000087 ], [ -121.989819779999962, 49.147642595000072 ], [ -121.98973720099994, 49.14762408500011 ], [ -121.989225092999988, 49.147898991000034 ], [ -121.988867206999927, 49.147958793000058 ], [ -121.987800492999924, 49.147805013000017 ], [ -121.987577193999954, 49.147920314000025 ], [ -121.987572168999975, 49.148189027000072 ], [ -121.987388079999903, 49.148175762000072 ], [ -121.987299902999936, 49.148169413000112 ], [ -121.987062622999986, 49.148168115 ], [ -121.987066413999969, 49.148086903000078 ], [ -121.986615216999908, 49.147426098000032 ], [ -121.986618622999984, 49.147201103000022 ], [ -121.986715909999958, 49.14718399700007 ], [ -121.98655431399996, 49.147020189000038 ], [ -121.985913984999939, 49.146870692000014 ], [ -121.985198397, 49.146946191000104 ], [ -121.983946518999957, 49.146449104000069 ], [ -121.98356452299997, 49.146392101000067 ], [ -121.982543591999928, 49.146625695000104 ], [ -121.982253511999943, 49.146758196000064 ], [ -121.981816279999975, 49.147140737000065 ], [ -121.981649266999938, 49.147134497000096 ], [ -121.981648404999973, 49.14717656300008 ], [ -121.980825792, 49.14716930400008 ], [ -121.980820255999902, 49.147439123000048 ], [ -121.980408948999965, 49.147435492000028 ], [ -121.980403410999969, 49.147705310000077 ], [ -121.977935547999948, 49.147683491000052 ], [ -121.977924446999964, 49.148223128000026 ], [ -121.977513132999945, 49.148219486000073 ], [ -121.977496473999935, 49.149028942000037 ], [ -121.977085152999948, 49.149025298000026 ], [ -121.977079597999975, 49.149295116000104 ], [ -121.976833978999963, 49.149292940000066 ], [ -121.976668274999966, 49.149291471000076 ], [ -121.976666106999929, 49.149396730000063 ], [ -121.976536404999933, 49.149414298000067 ], [ -121.97622551799995, 49.149557414000085 ], [ -121.975428740999945, 49.149550347000051 ], [ -121.975445432999948, 49.148740891000052 ], [ -121.975856751999913, 49.14874454100007 ], [ -121.975862314999915, 49.148474722000039 ], [ -121.976273629999966, 49.14847837000007 ], [ -121.97628475, 49.147938733000018 ], [ -121.975873436999962, 49.147935086000054 ], [ -121.975906564999988, 49.146327843000073 ], [ -121.974881583999974, 49.146289492000093 ], [ -121.97491143799999, 49.145944664000098 ], [ -121.974853403999958, 49.145942492000124 ], [ -121.974858285999971, 49.145886114000049 ], [ -121.973809572, 49.145846864000063 ], [ -121.973865180999937, 49.14520471700007 ], [ -121.9736213199999, 49.145195588000142 ], [ -121.970296391999952, 49.145071071000118 ], [ -121.970318639999945, 49.144814387000018 ], [ -121.96852374799991, 49.144747126 ], [ -121.968580553999956, 49.144092016000087 ], [ -121.967314413999958, 49.144080698000067 ], [ -121.967319580999913, 49.143831986000095 ], [ -121.967839421999912, 49.14377810000007 ], [ -121.969249928999957, 49.143721904000081 ], [ -121.975841698999957, 49.143820787000067 ], [ -121.975861242999912, 49.143821065000061 ], [ -121.977612814999986, 49.143847274000073 ], [ -121.977660662999966, 49.143852568000071 ], [ -121.979369088999974, 49.14387355000008 ], [ -121.981345792999932, 49.143902213000089 ], [ -121.986002183999958, 49.143972398000145 ], [ -121.999568386999954, 49.144257614000075 ], [ -121.999760191999925, 49.144261621000119 ], [ -121.999993102999937, 49.144266503000033 ], [ -122.001759691999979, 49.144303502000071 ], [ -122.002274896999964, 49.14431429800009 ], [ -122.003308628999946, 49.144352299000083 ], [ -122.004583468999968, 49.144399165000046 ], [ -122.006909004999969, 49.144484600000077 ], [ -122.006907692999945, 49.144292241000038 ], [ -122.006907195999929, 49.144218599000084 ], [ -122.006977091999914, 49.144219406000047 ], [ -122.006977628999948, 49.144484507000165 ], [ -122.01017639399997, 49.144500998000133 ], [ -122.015160683999952, 49.144526510000027 ], [ -122.018684197999946, 49.144582996000096 ], [ -122.019985401999932, 49.144504997000077 ], [ -122.021269419999896, 49.144290995000055 ], [ -122.022066298999945, 49.144113114000014 ], [ -122.022399419999886, 49.144016112000024 ], [ -122.022710790999923, 49.144483956000087 ], [ -122.023174516999973, 49.145149497000048 ], [ -122.023104757999974, 49.145146918000087 ], [ -122.023090564999961, 49.145312848000032 ], [ -122.021021594999965, 49.145236332000067 ], [ -122.020978301999918, 49.145742197000025 ], [ -122.020307435999968, 49.145717378000022 ], [ -122.02029817899999, 49.145825513000069 ], [ -122.019650563999932, 49.145801550000058 ], [ -122.019645453999914, 49.145861229000047 ], [ -122.019478404999973, 49.145855047000055 ], [ -122.017877180999989, 49.145795780000078 ], [ -122.017875690999972, 49.145871204000052 ], [ -122.017053090999966, 49.145864203 ], [ -122.017047752999957, 49.146134025000073 ], [ -122.016877427999972, 49.146132575000088 ], [ -122.016784811999955, 49.147213594000043 ], [ -122.015696459999958, 49.147173287000051 ], [ -122.015690568999915, 49.147242020000093 ], [ -122.014147302999973, 49.147184844000094 ], [ -122.01413651699994, 49.147728406000049 ], [ -122.011257312999987, 49.147703787000069 ], [ -122.011251942999962, 49.147973608000058 ], [ -122.011124509999917, 49.147972517 ], [ -122.011020886999972, 49.149180226000063 ], [ -122.010038526999935, 49.149143793000107 ], [ -122.00998617499998, 49.14975374900007 ], [ -122.008251165, 49.149689381000051 ], [ -122.008220469999983, 49.150046869000114 ], [ -122.009427444999972, 49.150091650000071 ], [ -122.01075152599999, 49.15014076100011 ], [ -122.010746874999967, 49.150194955000046 ], [ -122.006922317999965, 49.151754590000095 ], [ -122.006824480999953, 49.151851286000038 ], [ -122.006790407999929, 49.151884935000034 ], [ -122.006413825999985, 49.152145279000166 ], [ -122.003402798999957, 49.15411766500003 ], [ -122.003134369999927, 49.154256447000087 ], [ -122.000985850999939, 49.15507638400004 ], [ -122.000051127999939, 49.155555661000051 ], [ -121.995327581, 49.157977269000106 ], [ -121.994564928999978, 49.158720956000138 ], [ -121.994490448999954, 49.158793599 ], [ -121.994347154999957, 49.159135377000048 ], [ -121.994292891999933, 49.159306025 ], [ -121.993966995999983, 49.160331092000128 ], [ -121.993925389999958, 49.160685712000038 ], [ -121.994017013999965, 49.160896494000085 ], [ -121.994193084999978, 49.161113090000065 ], [ -121.99460574499993, 49.161429113000068 ], [ -121.992893373999962, 49.161654482000095 ], [ -121.992776188999983, 49.161423189000068 ], [ -121.992943181999948, 49.160641393000056 ], [ -121.993618491999896, 49.15972991600011 ], [ -121.993750008999911, 49.159362405000103 ], [ -121.993726287999962, 49.159164504000067 ], [ -121.993329793999962, 49.15849508800008 ], [ -121.992521080999936, 49.15770609300008 ], [ -121.992257814999931, 49.157244599000144 ], [ -121.991735587999969, 49.156900355000083 ] ], [ [ -122.003092819999907, 49.151582923000056 ], [ -122.003158338999938, 49.150820896000063 ], [ -122.002068796999964, 49.150780410000024 ], [ -122.002084877999948, 49.150593414000106 ], [ -122.000503454999972, 49.150579735000029 ], [ -122.000508883999927, 49.15030991400004 ], [ -121.997675841999978, 49.150285356000104 ], [ -121.997657888999953, 49.150493882 ], [ -121.997967612999929, 49.150505404000057 ], [ -121.997930899999986, 49.15093185100006 ], [ -121.998934406999965, 49.150969180000125 ], [ -121.998794991999929, 49.152588920000106 ], [ -121.999125574999979, 49.152601214000093 ], [ -121.999148978999983, 49.15232929000009 ], [ -122.000742678999984, 49.152388547000029 ], [ -122.000819256999989, 49.151498427000014 ], [ -122.003092819999907, 49.151582923000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11974583", "BldgCostT": "8258333", "sL_LossRatio": "0.894089732528041", "sL_AssetLoss": "37088", "sL_BldgLoss": "33160", "sL_StrLoss": "23720", "sL_NStrLoss": "9440", "sL_ContLoss": "3928", "geom_point": "0101000020E61000004273A5B7A27E5EC0302259D921944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.979165886999908, 49.159008197000063 ], [ -121.97578642299996, 49.158638023000087 ], [ -121.975308650999963, 49.158585687 ], [ -121.973320986999923, 49.158203482000062 ], [ -121.973234228999928, 49.158273118000089 ], [ -121.97235695099999, 49.158572876000051 ], [ -121.971598932999896, 49.158662019000062 ], [ -121.970731836999974, 49.15862669200002 ], [ -121.969748323999966, 49.158175437000118 ], [ -121.969723806999966, 49.158166372000075 ], [ -121.968838133999952, 49.157740507000057 ], [ -121.967852187999966, 49.157303321000072 ], [ -121.967692734999957, 49.157206981000023 ], [ -121.967873309999916, 49.157039345000079 ], [ -121.968279325999973, 49.157042974000049 ], [ -121.968284928999978, 49.156773156000042 ], [ -121.968696313999914, 49.156776831000116 ], [ -121.968701916999947, 49.156507014000091 ], [ -121.96993606299999, 49.156518030000015 ], [ -121.969930467999944, 49.156787848000135 ], [ -121.970753236999968, 49.156795185000121 ], [ -121.970742054, 49.157334820000088 ], [ -121.971153443999967, 49.157338487000096 ], [ -121.97114785399998, 49.157608304000071 ], [ -121.971559245999984, 49.157611968000055 ], [ -121.971553657999976, 49.15788178600009 ], [ -121.972642002999962, 49.15789147600006 ], [ -121.972664765999951, 49.157628770000052 ], [ -121.972793200999959, 49.157633578000031 ], [ -121.97279342099992, 49.157622955000072 ], [ -121.973204812999967, 49.157626614000058 ], [ -121.973210389999934, 49.157356797000027 ], [ -121.975267339999959, 49.157375070000093 ], [ -121.975261772999957, 49.1576448880001 ], [ -121.97533602799993, 49.157645547000044 ], [ -121.97540607699996, 49.15683656700002 ], [ -121.97486708699995, 49.156831783000044 ], [ -121.974883794999982, 49.156022329000081 ], [ -121.97611793, 49.156033279000049 ], [ -121.976116454999953, 49.156104906000046 ], [ -121.976109496999939, 49.156442411000043 ], [ -121.976216384999987, 49.156446408000058 ], [ -121.976219688999947, 49.156408252000119 ], [ -121.976656824999935, 49.156424600000015 ], [ -121.976669777999945, 49.156274962000083 ], [ -121.977113203999963, 49.15629154300008 ], [ -121.977125466999922, 49.156149873000068 ], [ -121.977530962999978, 49.156165034000018 ], [ -121.977547358999928, 49.155975582000067 ], [ -121.97795383, 49.155990779000021 ], [ -121.977966747999972, 49.155841492000064 ], [ -121.978432415999947, 49.155858899000059 ], [ -121.978452341999969, 49.155628603000054 ], [ -121.978859887999988, 49.155643837000085 ], [ -121.978869328999963, 49.15553471300008 ], [ -121.979386669999954, 49.15555404800012 ], [ -121.979397614, 49.155427525000107 ], [ -121.979903359000019, 49.155446424000033 ], [ -121.979912196999948, 49.155344237000108 ], [ -121.980503998999964, 49.155366349000062 ], [ -121.980511876999969, 49.155275251 ], [ -121.985687532999961, 49.155468495000022 ], [ -121.985729784999961, 49.155820396000088 ], [ -121.985625097999929, 49.156296097000059 ], [ -121.984960910999988, 49.157261699000081 ], [ -121.984416489999944, 49.158362603000107 ], [ -121.984364408999923, 49.158929402000105 ], [ -121.984393149999931, 49.159104725000049 ], [ -121.983467187999935, 49.15895069400009 ], [ -121.98247340899999, 49.158910001000031 ], [ -121.982364449999963, 49.158912762000107 ], [ -121.98156609499992, 49.158932906000068 ], [ -121.981012093999979, 49.158946414000113 ], [ -121.98048570499995, 49.158894289000074 ], [ -121.980100075999971, 49.158880796000147 ], [ -121.979474112, 49.158934101000106 ], [ -121.979165886999908, 49.159008197000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.874024184907393", "sL_AssetLoss": "6533", "sL_BldgLoss": "5710", "sL_StrLoss": "3870", "sL_NStrLoss": "1840", "sL_ContLoss": "823", "geom_point": "0101000020E61000005D4CF931227E5EC0307E5C13B9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.969693387999911, 49.153374989000028 ], [ -121.969907886999962, 49.152981991000047 ], [ -121.970587391999928, 49.15262730500006 ], [ -121.970959301999969, 49.152540384000083 ], [ -121.971252406999938, 49.152560308000048 ], [ -121.971248444999901, 49.152751587000154 ], [ -121.971659796999944, 49.152755251 ], [ -121.971654210999958, 49.153025069000094 ], [ -121.97206556499998, 49.153028731000049 ], [ -121.972059981999962, 49.153298549000056 ], [ -121.972471338, 49.153302211000018 ], [ -121.972443429999913, 49.154651300000111 ], [ -121.972032064999922, 49.154647638000078 ], [ -121.972026479999968, 49.154917456000049 ], [ -121.971615110999906, 49.154913793000077 ], [ -121.97160952499999, 49.155183610000044 ], [ -121.97119815399999, 49.155179946000025 ], [ -121.971192563999921, 49.155449764000117 ], [ -121.969135696999942, 49.15543141800012 ], [ -121.969137659999944, 49.155336851000051 ], [ -121.969411161999957, 49.154860354000093 ], [ -121.969600110999949, 49.154409801999989 ], [ -121.969405094999914, 49.153950893000037 ], [ -121.96937210599998, 49.153632793000099 ], [ -121.969693387999911, 49.153374989000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.893759474482062", "sL_AssetLoss": "7916", "sL_BldgLoss": "7075", "sL_StrLoss": "5190", "sL_NStrLoss": "1885", "sL_ContLoss": "841", "geom_point": "0101000020E61000008A48A003037F5EC08FEB9568FF924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.984572508999946, 49.149021496000067 ], [ -121.984644918999919, 49.148183171000014 ], [ -121.982379153999929, 49.148098569000098 ], [ -121.982372269999971, 49.148091056000069 ], [ -121.982452341999931, 49.147164495000055 ], [ -121.982178986999884, 49.14715428600006 ], [ -121.982359816999974, 49.146956100000061 ], [ -121.983063197999954, 49.146711199000045 ], [ -121.983861291000011, 49.146628607000061 ], [ -121.984555505999978, 49.146877786000104 ], [ -121.985352600999988, 49.147414693000073 ], [ -121.986236392999942, 49.148438699000067 ], [ -121.986493309999929, 49.149367291000054 ], [ -121.98557247899997, 49.150142098000103 ], [ -121.98420030199999, 49.150822902000094 ], [ -121.984105328999959, 49.150860367000043 ], [ -121.984265170999919, 49.14901002300013 ], [ -121.984572508999946, 49.149021496000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2699417", "BldgCostT": "1861667", "sL_LossRatio": "0.856029810298103", "sL_AssetLoss": "11808", "sL_BldgLoss": "10108", "sL_StrLoss": "7080", "sL_NStrLoss": "3028", "sL_ContLoss": "1700", "geom_point": "0101000020E61000001D00CC10A27E5EC000E917FC68934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.978647235999972, 49.153087140000132 ], [ -121.978652782999959, 49.152817322000011 ], [ -121.97824142899999, 49.152813682000044 ], [ -121.978246977999987, 49.152543863000041 ], [ -121.977975958999963, 49.152541464000059 ], [ -121.977835628999912, 49.152540223000109 ], [ -121.977839012999965, 49.15237572600013 ], [ -121.977841180999974, 49.152270404 ], [ -121.977739460999913, 49.15226950300012 ], [ -121.977018484999917, 49.1522631180001 ], [ -121.97702404099995, 49.151993300000044 ], [ -121.976612694999957, 49.151989655000051 ], [ -121.976634928999914, 49.150910382000085 ], [ -121.976838468999972, 49.150912185000095 ], [ -121.977046263999952, 49.150914027000077 ], [ -121.977051820999975, 49.150644208000074 ], [ -121.977463155999885, 49.150647852000127 ], [ -121.97746870899999, 49.150378033000024 ], [ -121.979525371999941, 49.150396229000116 ], [ -121.979519829999987, 49.150666048000062 ], [ -121.979931163999964, 49.150669683000096 ], [ -121.979925623999918, 49.150939501 ], [ -121.980336960999963, 49.150943134000087 ], [ -121.980298194999989, 49.152831865000046 ], [ -121.97988684099991, 49.152828231000058 ], [ -121.979881300999949, 49.153098049000072 ], [ -121.978647235999972, 49.153087140000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9488500", "BldgCostT": "6280000", "sL_LossRatio": "0.813334193049197", "sL_AssetLoss": "46527", "sL_BldgLoss": "37842", "sL_StrLoss": "24805", "sL_NStrLoss": "13037", "sL_ContLoss": "8685", "geom_point": "0101000020E6100000F65D5B89CA855EC01F8488ED51904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078794979999941, 49.131828646000081 ], [ -122.081622898999925, 49.129755801000066 ], [ -122.081802087999961, 49.129825392000043 ], [ -122.083651356999937, 49.128444841000032 ], [ -122.083988285999965, 49.128193296000106 ], [ -122.084717809, 49.127648627000056 ], [ -122.085286278999916, 49.127224192000064 ], [ -122.085296453999916, 49.127218125000077 ], [ -122.086118859, 49.126729057000141 ], [ -122.086141882999982, 49.126715389000019 ], [ -122.087032258999926, 49.12623388400003 ], [ -122.088296220999922, 49.125677627000073 ], [ -122.090193743999976, 49.125019083000026 ], [ -122.094931086999978, 49.123465635000059 ], [ -122.095285376999939, 49.123478502000069 ], [ -122.095872626999949, 49.123499829000131 ], [ -122.096360859999891, 49.123990799000048 ], [ -122.096270019999963, 49.125073284000052 ], [ -122.096194721999964, 49.125970516000059 ], [ -122.096379136999943, 49.125977211000048 ], [ -122.097374660999932, 49.12601335100004 ], [ -122.097491703999964, 49.126436791000074 ], [ -122.097490884999942, 49.126446547000029 ], [ -122.097422222999953, 49.126594205000039 ], [ -122.097433390999981, 49.127131828000081 ], [ -122.09737379699996, 49.127842106000045 ], [ -122.097299876999941, 49.128068297000027 ], [ -122.097150895999931, 49.128714888000047 ], [ -122.096749590999963, 49.129596856000049 ], [ -122.095020088999931, 49.129534061000072 ], [ -122.091758689999978, 49.129415570000077 ], [ -122.091857208999983, 49.12824306700012 ], [ -122.086585685999964, 49.128051335000123 ], [ -122.086616284999977, 49.127687639000094 ], [ -122.085755680999938, 49.127656313000031 ], [ -122.085769168999946, 49.127496027000085 ], [ -122.085678300999959, 49.127492719000038 ], [ -122.085667555999976, 49.128077006000098 ], [ -122.085256394999988, 49.128073748000077 ], [ -122.085246466999976, 49.128613404000056 ], [ -122.085158256999961, 49.128612705000137 ], [ -122.08500726199999, 49.130406607000076 ], [ -122.084391408, 49.130384183000082 ], [ -122.084389353999953, 49.130495681000056 ], [ -122.083978173999952, 49.130492419000127 ], [ -122.083973201999953, 49.130762247000057 ], [ -122.083562018999928, 49.13075898400006 ], [ -122.083557044, 49.131028811000064 ], [ -122.083145857999952, 49.13102554600011 ], [ -122.083140883999974, 49.131295374000082 ], [ -122.082318506999954, 49.131288841000135 ], [ -122.08231352699994, 49.131558668000068 ], [ -122.081714250999966, 49.131553903000039 ], [ -122.081693702999971, 49.131797782000078 ], [ -122.0806648, 49.131760286000024 ], [ -122.080663780999956, 49.131815410000115 ], [ -122.080252589999958, 49.131812135000118 ], [ -122.080247596999982, 49.132081963000132 ], [ -122.07969810899999, 49.132077583000118 ], [ -122.079670954999941, 49.132399729000056 ], [ -122.078094246999981, 49.132342236000035 ], [ -122.078794979999941, 49.131828646000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287666", "BldgCostT": "3646666", "sL_LossRatio": "0.865388293802602", "sL_AssetLoss": "20912", "sL_BldgLoss": "18097", "sL_StrLoss": "11688", "sL_NStrLoss": "6409", "sL_ContLoss": "2815", "geom_point": "0101000020E61000000AD40FA886835EC001C38FBD20924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.054394588999955, 49.144560229000035 ], [ -122.054524591999893, 49.14302823 ], [ -122.051838497999981, 49.142929665000032 ], [ -122.051872368, 49.142530776000044 ], [ -122.049871554999982, 49.142457313000072 ], [ -122.050059289999965, 49.140247376000083 ], [ -122.05011223599999, 49.139624074000089 ], [ -122.050176944999976, 49.138862272000054 ], [ -122.05472215199994, 49.139029104000024 ], [ -122.055644300999973, 49.139062928000037 ], [ -122.055617655999953, 49.139377069000055 ], [ -122.05661522299999, 49.139413650000087 ], [ -122.058693916999957, 49.139489847000064 ], [ -122.058556876999944, 49.141106609000069 ], [ -122.059422042000037, 49.141138311000155 ], [ -122.059559090000036, 49.142025508000117 ], [ -122.059718215999965, 49.142358806000075 ], [ -122.05984062200001, 49.142387304000067 ], [ -122.060072080999944, 49.142288986000018 ], [ -122.059862633999941, 49.14476066800006 ], [ -122.05899551899995, 49.144728901000086 ], [ -122.05898248699998, 49.144215895000109 ], [ -122.058615285999963, 49.144104898000109 ], [ -122.058326406, 49.144147603000114 ], [ -122.057977009999945, 49.144486501000067 ], [ -122.057970090999973, 49.144691326000085 ], [ -122.054394588999955, 49.144560229000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.910290237467018", "sL_AssetLoss": "3411", "sL_BldgLoss": "3105", "sL_StrLoss": "2310", "sL_NStrLoss": "795", "sL_ContLoss": "306", "geom_point": "0101000020E6100000BA35E145BC825EC0B9B74BB072924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.040096200999983, 49.143930895000061 ], [ -122.040098508999932, 49.14264950700008 ], [ -122.042510706999948, 49.142738289000192 ], [ -122.042471082999953, 49.143203833000086 ], [ -122.043567299999893, 49.143244163000077 ], [ -122.043560153, 49.14332815500007 ], [ -122.044291181999981, 49.143355043000078 ], [ -122.04429022799998, 49.143366260000043 ], [ -122.045056055999908, 49.143394423000046 ], [ -122.044798448, 49.146422763000047 ], [ -122.043838305999898, 49.145816807000053 ], [ -122.04351229299999, 49.145571297000082 ], [ -122.043279500999986, 49.1453346340001 ], [ -122.043074299999901, 49.145126013000031 ], [ -122.042805987999969, 49.14492769900005 ], [ -122.042530812999971, 49.144809404000078 ], [ -122.042239290999987, 49.144738312000136 ], [ -122.041679416, 49.144684805000104 ], [ -122.041348414999945, 49.144653192000121 ], [ -122.04101129899999, 49.144599306000011 ], [ -122.040850499999962, 49.144573608000115 ], [ -122.04053581600003, 49.144485405000125 ], [ -122.040463829999936, 49.144435192000067 ], [ -122.040360982999985, 49.144363500000118 ], [ -122.04031315499999, 49.144303182000016 ], [ -122.040284848999988, 49.144267525000075 ], [ -122.040179012999957, 49.14413410700012 ], [ -122.040096200999983, 49.143930895000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74216250", "BldgCostT": "49185000", "sL_LossRatio": "0.833486801718846", "sL_AssetLoss": "286704", "sL_BldgLoss": "238964", "sL_StrLoss": "160279", "sL_NStrLoss": "78685", "sL_ContLoss": "47740", "geom_point": "0101000020E6100000FC79B6BB45825EC05FBDE54581914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.993363182999985, 49.143768096000045 ], [ -121.999576780999988, 49.14385338500005 ], [ -121.999823494999987, 49.143856775000103 ], [ -121.999878317999944, 49.143857514000096 ], [ -122.00000171, 49.143859226000131 ], [ -122.003033159999916, 49.143900698000088 ], [ -122.003931329999944, 49.143869145000039 ], [ -122.005252573999911, 49.14368560700008 ], [ -122.005603148999967, 49.143611170000099 ], [ -122.005848010999927, 49.143506664000029 ], [ -122.006037982999885, 49.143370359000116 ], [ -122.006182197999976, 49.143208022000046 ], [ -122.00626432199999, 49.143018129000041 ], [ -122.00627684799997, 49.142106200000079 ], [ -122.006379524999915, 49.141996402000117 ], [ -122.00653039499997, 49.141947925000075 ], [ -122.006875797999953, 49.141949923 ], [ -122.006866114999966, 49.140934738000091 ], [ -122.006787382999931, 49.132680892000103 ], [ -122.006755902999913, 49.129934299000119 ], [ -122.028491764999913, 49.130004185000118 ], [ -122.0288071, 49.130005162000096 ], [ -122.02901271599994, 49.130005796000049 ], [ -122.032778, 49.130156199000055 ], [ -122.040005211999983, 49.130444505000071 ], [ -122.045556905999959, 49.130447810000106 ], [ -122.047687756999935, 49.130449927000036 ], [ -122.052287201999974, 49.130454392000054 ], [ -122.054722027999958, 49.130456404000093 ], [ -122.062040051999972, 49.130462103000092 ], [ -122.063767492999915, 49.130463394000103 ], [ -122.06487760899995, 49.130464185000051 ], [ -122.06488329699998, 49.133270287000109 ], [ -122.064885097999962, 49.134166291000099 ], [ -122.064349716999985, 49.135375541000023 ], [ -122.064105420999908, 49.135927303000067 ], [ -122.06364889799994, 49.136591298000042 ], [ -122.062972769999931, 49.137892670000056 ], [ -122.068316778999943, 49.137113776000092 ], [ -122.068638156999938, 49.137116369000097 ], [ -122.068633931999983, 49.137341846000012 ], [ -122.068622987999959, 49.137925848000059 ], [ -122.067389266999925, 49.137915889000062 ], [ -122.067384204999911, 49.138185715000112 ], [ -122.069029175999958, 49.138198991000067 ], [ -122.069014047999971, 49.139006640000105 ], [ -122.069435894999941, 49.139022058000144 ], [ -122.069414743999943, 49.13927229700009 ], [ -122.070015290999919, 49.139294243000073 ], [ -122.069881910999939, 49.140872393000066 ], [ -122.075184111999931, 49.141066009000063 ], [ -122.075057557999941, 49.14256531400008 ], [ -122.075117487999975, 49.14256579400007 ], [ -122.075105345999972, 49.143218172000061 ], [ -122.074165487999934, 49.143267395000109 ], [ -122.072831613999966, 49.143526591000104 ], [ -122.072236602, 49.143791510000028 ], [ -122.07143999500002, 49.143875589000068 ], [ -122.069030183999971, 49.144395400000114 ], [ -122.067877394, 49.144485110000119 ], [ -122.06670588, 49.144745803000042 ], [ -122.064841881999953, 49.144775699000071 ], [ -122.064612401999938, 49.14447660400004 ], [ -122.064649023999962, 49.144000904000094 ], [ -122.064949300999928, 49.143418410000024 ], [ -122.065322008999914, 49.143241808000106 ], [ -122.065419790999897, 49.143106494000094 ], [ -122.065537898999963, 49.142757591000063 ], [ -122.065507994999933, 49.142064007000037 ], [ -122.065622694999931, 49.141848912000036 ], [ -122.065115693999971, 49.141108299000066 ], [ -122.06422918899996, 49.140119892000058 ], [ -122.064135197999917, 49.140047312000043 ], [ -122.06373791499999, 49.140034492000034 ], [ -122.063439846999984, 49.140089083000085 ], [ -122.063520784999938, 49.13913299400005 ], [ -122.063940868, 49.13914836800005 ], [ -122.063968483999972, 49.138822103000017 ], [ -122.064081704, 49.138826246000079 ], [ -122.064084104999935, 49.138698745000077 ], [ -122.062779350999975, 49.138688161000097 ], [ -122.062439119999979, 49.138685398000057 ], [ -122.062438174999954, 49.138735393000069 ], [ -122.062434028, 49.138955224000064 ], [ -122.060789035999946, 49.138941854000045 ], [ -122.06079013899992, 49.138883497000023 ], [ -122.06080288699999, 49.138208831000064 ], [ -122.060804331999975, 49.138132377000083 ], [ -122.061272707999976, 49.138136185000114 ], [ -122.06156311099997, 49.134707334000083 ], [ -122.062016764999939, 49.134723947000026 ], [ -122.06211315099999, 49.133585644000064 ], [ -122.06262994399998, 49.133604567000106 ], [ -122.062655826999915, 49.133298848000088 ], [ -122.060471838999945, 49.133218860000042 ], [ -122.060439038999959, 49.133606087000082 ], [ -122.054972300999935, 49.133405674000109 ], [ -122.055006977999938, 49.132996879000032 ], [ -122.05421860199999, 49.132967954000101 ], [ -122.054235900999942, 49.132764060000042 ], [ -122.054083158999902, 49.132758455000079 ], [ -122.054022869000022, 49.133469042000101 ], [ -122.052639282999976, 49.133418262000056 ], [ -122.052638609999946, 49.133426175000139 ], [ -122.052103108, 49.133406516000029 ], [ -122.052092693999981, 49.133529187000093 ], [ -122.051548178999937, 49.133509195000073 ], [ -122.051527182999934, 49.133756500000118 ], [ -122.050798441999973, 49.133729740000035 ], [ -122.050778964999921, 49.133959117000096 ], [ -122.050361094999957, 49.133943770000045 ], [ -122.050346355999949, 49.134117327000119 ], [ -122.048505830999943, 49.134049712000056 ], [ -122.04849788099996, 49.134143271000028 ], [ -122.046998318999897, 49.134088159 ], [ -122.046957241999948, 49.134571407000116 ], [ -122.046299872999938, 49.134547240000117 ], [ -122.046208369999988, 49.135623522000095 ], [ -122.046015770999972, 49.135616440000071 ], [ -122.04598518099999, 49.135976226000039 ], [ -122.044639084999986, 49.135926725000026 ], [ -122.044616236999929, 49.136195358000059 ], [ -122.044162359999945, 49.136178663000109 ], [ -122.044144827999943, 49.136384769000067 ], [ -122.043751781999944, 49.136370311000086 ], [ -122.04373602, 49.136555579000046 ], [ -122.04340726399991, 49.1365434840001 ], [ -122.043400539999936, 49.136622505000069 ], [ -122.046018207000017, 49.136718780000095 ], [ -122.045998428999923, 49.13695138700006 ], [ -122.046384207999949, 49.136965571000061 ], [ -122.04636646499992, 49.137174280000067 ], [ -122.046733209999942, 49.13718776100005 ], [ -122.04672209, 49.137318568000097 ], [ -122.047227599999985, 49.137337149000068 ], [ -122.047208596999923, 49.137560716000046 ], [ -122.047679900999967, 49.137578038000058 ], [ -122.047649097999951, 49.137940445000076 ], [ -122.048277101999972, 49.137963522000099 ], [ -122.048114071999962, 49.139881898000098 ], [ -122.048060863999979, 49.140507959000061 ], [ -122.04797157199999, 49.141558562000078 ], [ -122.042503953999969, 49.141357518000049 ], [ -122.042514727999915, 49.14123093300001 ], [ -122.042534798999952, 49.140995115000038 ], [ -122.042163292999973, 49.140981445000087 ], [ -122.042137875999941, 49.141280046000112 ], [ -122.042122626999983, 49.141459203000068 ], [ -122.041062513999975, 49.141420187000065 ], [ -122.040157019999967, 49.14138685299999 ], [ -122.040281933, 49.141036135000022 ], [ -122.040053205000035, 49.141065602 ], [ -122.038135817999901, 49.141312418000041 ], [ -122.036655046999911, 49.141257862000039 ], [ -122.036918717999939, 49.13816425800006 ], [ -122.036624724999939, 49.138153424000052 ], [ -122.036596135999901, 49.138488844000058 ], [ -122.033489012, 49.13837429200008 ], [ -122.033338594, 49.140137617000079 ], [ -122.03275805799997, 49.140116205000076 ], [ -122.032734183999963, 49.140396031000151 ], [ -122.03254314699997, 49.140388984000019 ], [ -122.032527186999985, 49.140576036 ], [ -122.031817376999982, 49.140549849000053 ], [ -122.031795769, 49.140803052000081 ], [ -122.030533457999937, 49.140756471000024 ], [ -122.030456761999972, 49.14165488200009 ], [ -122.030118957999917, 49.141642414000081 ], [ -122.030102156999973, 49.141839190000056 ], [ -122.029675215999973, 49.141823430000045 ], [ -122.029649755999941, 49.142121600000067 ], [ -122.02700845699998, 49.142024064000069 ], [ -122.026942037999959, 49.142801366000079 ], [ -122.026620681999958, 49.142865217000086 ], [ -122.026442215999936, 49.142900660000109 ], [ -122.026158193999933, 49.142957111000051 ], [ -122.026042006, 49.142985976000041 ], [ -122.025324585999954, 49.143164306000081 ], [ -122.024996851, 49.14325974000009 ], [ -122.022399419999886, 49.144016112000024 ], [ -122.022066298999945, 49.144113114000014 ], [ -122.021269419999896, 49.144290995000055 ], [ -122.019985401999932, 49.144504997000077 ], [ -122.018684197999946, 49.144582996000096 ], [ -122.015160683999952, 49.144526510000027 ], [ -122.01017639399997, 49.144500998000133 ], [ -122.006977628999948, 49.144484507000165 ], [ -122.006977091999914, 49.144219406000047 ], [ -122.006907195999929, 49.144218599000084 ], [ -122.006907692999945, 49.144292241000038 ], [ -122.006909004999969, 49.144484600000077 ], [ -122.004583468999968, 49.144399165000046 ], [ -122.003308628999946, 49.144352299000083 ], [ -122.002274896999964, 49.14431429800009 ], [ -122.001759691999979, 49.144303502000071 ], [ -121.999993102999937, 49.144266503000033 ], [ -121.999760191999925, 49.144261621000119 ], [ -121.999568386999954, 49.144257614000075 ], [ -121.986002183999958, 49.143972398000145 ], [ -121.981345792999932, 49.143902213000089 ], [ -121.979369088999974, 49.14387355000008 ], [ -121.977660662999966, 49.143852568000071 ], [ -121.977646149999927, 49.143681413000138 ], [ -121.977639388999975, 49.14349881600009 ], [ -121.978542, 49.143507397000114 ], [ -121.979476913000013, 49.143518601000039 ], [ -121.985065438999953, 49.143593032000098 ], [ -121.993363182999985, 49.143768096000045 ] ], [ [ -122.0240184099999, 49.138826020000117 ], [ -122.024196520999965, 49.136742844000018 ], [ -122.027360011, 49.136859751 ], [ -122.027366889999897, 49.136779220000072 ], [ -122.027557911999935, 49.136786276000052 ], [ -122.027573890999989, 49.136599224000072 ], [ -122.028154380999965, 49.136620665000102 ], [ -122.0281587059999, 49.13657002700004 ], [ -122.025975954, 49.136489388000065 ], [ -122.026247192999918, 49.133315209000081 ], [ -122.025220824999934, 49.133277276000044 ], [ -122.025286991999948, 49.132503100000058 ], [ -122.025180871999979, 49.132499177000078 ], [ -122.025213800999893, 49.132113883000088 ], [ -122.020630240999935, 49.131944356000062 ], [ -122.020680294, 49.131359368000076 ], [ -122.020403025999926, 49.131349107000041 ], [ -122.020336320999903, 49.132128653000102 ], [ -122.018147122999963, 49.132047609000054 ], [ -122.018138432999962, 49.132149105000046 ], [ -122.01267205100001, 49.131946543000048 ], [ -122.012726359999974, 49.131313072000069 ], [ -122.010145967999961, 49.131217356000022 ], [ -122.01003649899998, 49.132493361000087 ], [ -122.010119253999974, 49.132496432000025 ], [ -122.010065578999956, 49.133122069000066 ], [ -122.010161590999971, 49.133125632000038 ], [ -122.010059609999928, 49.134314294000042 ], [ -122.010109265999958, 49.134316136000088 ], [ -122.010008059999947, 49.135495727000105 ], [ -122.010143138999965, 49.135500739000108 ], [ -122.010093588999922, 49.136078253000065 ], [ -122.01018217299999, 49.136081539 ], [ -122.010146049999989, 49.136502555000092 ], [ -122.010218397999978, 49.13650523900003 ], [ -122.010125976999987, 49.137582411000082 ], [ -122.010442057999967, 49.137594136000068 ], [ -122.010261793000026, 49.139695164000081 ], [ -122.010280193999975, 49.139695846000059 ], [ -122.00997171599991, 49.143290768000035 ], [ -122.008877841999919, 49.143250183000092 ], [ -122.008875542999988, 49.143365487000068 ], [ -122.012141614999976, 49.143393479000046 ], [ -122.012322553999951, 49.141283772000044 ], [ -122.016754520999953, 49.141448004000047 ], [ -122.016839415999982, 49.140456978000032 ], [ -122.01753602399998, 49.140482775000116 ], [ -122.017560800999959, 49.140193495000126 ], [ -122.018196183999962, 49.140217020000115 ], [ -122.018220888999977, 49.139928510000054 ], [ -122.021284896999987, 49.140041905000047 ], [ -122.021397224999944, 49.138729083000079 ], [ -122.0240184099999, 49.138826020000117 ] ], [ [ -122.032628430999949, 49.132418316000042 ], [ -122.032506511999941, 49.133847456000069 ], [ -122.032464809999965, 49.133845918000127 ], [ -122.03242123699999, 49.134356656000115 ], [ -122.031644598999904, 49.134328 ], [ -122.031612961999912, 49.134698751000016 ], [ -122.033006576999966, 49.134750170000103 ], [ -122.033035188999989, 49.134414749000086 ], [ -122.034755842999928, 49.134478209000072 ], [ -122.034854476999968, 49.133321389000116 ], [ -122.035133559999963, 49.133331680000083 ], [ -122.03516158199993, 49.133002996000066 ], [ -122.036581544999962, 49.133055342000077 ], [ -122.036598050999942, 49.132861672000089 ], [ -122.0337864699999, 49.132758007000064 ], [ -122.033811716999978, 49.132461967000047 ], [ -122.032628430999949, 49.132418316000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.887327136703695", "sL_AssetLoss": "8822", "sL_BldgLoss": "7828", "sL_StrLoss": "5300", "sL_NStrLoss": "2528", "sL_ContLoss": "994", "geom_point": "0101000020E610000028B72F9826835EC02BA5466CA0924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.046645425999913, 49.143625202000102 ], [ -122.052113325999954, 49.143826035000068 ], [ -122.051808052999959, 49.14742105300013 ], [ -122.046800218999977, 49.147237130000107 ], [ -122.046350326999985, 49.147095600000107 ], [ -122.046645425999913, 49.143625202000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109472917", "BldgCostT": "70551667", "sL_LossRatio": "0.848885113612232", "sL_AssetLoss": "353175", "sL_BldgLoss": "299805", "sL_StrLoss": "201230", "sL_NStrLoss": "98575", "sL_ContLoss": "53370", "geom_point": "0101000020E6100000E1C09AB9F67F5EC001DD762572904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.977638259999964, 49.142642231000075 ], [ -121.977636499999946, 49.141301206000023 ], [ -121.977622527999941, 49.140383297000028 ], [ -121.977616406999942, 49.139979607000022 ], [ -121.977619998999899, 49.138269954000101 ], [ -121.977627291999951, 49.134781301000018 ], [ -121.977617988999924, 49.134255311000054 ], [ -121.97757745399997, 49.132241662000112 ], [ -121.977526722999954, 49.129721813000039 ], [ -121.977470949999926, 49.126950497000102 ], [ -121.977461902999934, 49.126501689000136 ], [ -121.977397992999968, 49.126226208000062 ], [ -121.977399863999963, 49.126132818000023 ], [ -121.977401468999958, 49.126052110000039 ], [ -121.977459583999945, 49.123120042000089 ], [ -121.977466495999948, 49.122771805000085 ], [ -121.977471187999939, 49.121322206000087 ], [ -121.977510986999931, 49.11837350100005 ], [ -121.978739193999971, 49.118371359000086 ], [ -121.982083529999954, 49.118365458000035 ], [ -121.983015217999935, 49.118363806000055 ], [ -121.987304513999916, 49.118356046000017 ], [ -121.992086480999944, 49.118347184000079 ], [ -121.993011305, 49.118350112000016 ], [ -121.995169984999947, 49.118355047000129 ], [ -121.997417372999948, 49.118360153000076 ], [ -121.99999416899999, 49.118365930000103 ], [ -122.006778594999929, 49.118380886000068 ], [ -122.008888118999963, 49.118385398000036 ], [ -122.018042533999932, 49.118404444000056 ], [ -122.019346898999913, 49.118407108000106 ], [ -122.01957158499998, 49.118423506000106 ], [ -122.019738810999939, 49.11855230500003 ], [ -122.01974158899999, 49.119357792000102 ], [ -122.019743883999922, 49.120030296000031 ], [ -122.019878904, 49.120134498000091 ], [ -122.020043194999971, 49.120168493000079 ], [ -122.021501724999936, 49.120176051000087 ], [ -122.023817617999967, 49.120187985000015 ], [ -122.0255033, 49.120196657000051 ], [ -122.028991901, 49.120214493000056 ], [ -122.029006578999912, 49.127119930000106 ], [ -122.026632763999956, 49.127032230000083 ], [ -122.026894878999954, 49.123963658000079 ], [ -122.026477548999978, 49.123948234000103 ], [ -122.02651288899996, 49.123534513000017 ], [ -122.026508075999942, 49.12353433500008 ], [ -122.026586155999922, 49.12262025400004 ], [ -122.026415229999941, 49.122613936000072 ], [ -122.026432620999969, 49.122410335000112 ], [ -122.024927591999983, 49.122354697000098 ], [ -122.024932129999982, 49.122301598000071 ], [ -122.02186419, 49.122188115000029 ], [ -122.021864625999967, 49.122183031000127 ], [ -122.021258468999946, 49.122160599000047 ], [ -122.02125861499999, 49.122158902000088 ], [ -122.020996803999964, 49.1221492130001 ], [ -122.02099, 49.122228766000013 ], [ -122.015524769999956, 49.122026346000084 ], [ -122.015656612999976, 49.120487054000058 ], [ -122.015140467999956, 49.120467922000053 ], [ -122.01513246899999, 49.120561311000067 ], [ -122.01433753699996, 49.120531841000044 ], [ -122.014335034999959, 49.120561030000097 ], [ -122.013668357, 49.120536310000027 ], [ -122.013667007999956, 49.120552046000029 ], [ -122.012413630999902, 49.120505561000044 ], [ -122.012408957999966, 49.120560076000103 ], [ -122.011932189999953, 49.120542389000015 ], [ -122.011930337999928, 49.12056398699999 ], [ -122.010456983999944, 49.120509319000057 ], [ -122.010371126999971, 49.121510422000021 ], [ -122.010271429999975, 49.121506722000099 ], [ -122.010187142999925, 49.122489461000043 ], [ -122.010468320999934, 49.122499896000051 ], [ -122.010277676999962, 49.124722668000125 ], [ -122.010531856999975, 49.124732099000013 ], [ -122.010284491999954, 49.127616064000051 ], [ -122.012691098999952, 49.127705339000087 ], [ -122.012698796999985, 49.127615542000065 ], [ -122.013163592999973, 49.127632778000063 ], [ -122.013165075999922, 49.127615453000089 ], [ -122.014628003, 49.12766969000009 ], [ -122.014628414999947, 49.127664888000069 ], [ -122.015118580999939, 49.12768305600013 ], [ -122.015137304999953, 49.12746450000008 ], [ -122.015760380999936, 49.12748759000003 ], [ -122.015764780999945, 49.127436214000049 ], [ -122.021230647999971, 49.12763862000002 ], [ -122.021220235999962, 49.127760336000073 ], [ -122.0246210399999, 49.127886131000089 ], [ -122.024619963999953, 49.127898703000021 ], [ -122.025618105999968, 49.127935604000093 ], [ -122.025576810999979, 49.128418875000136 ], [ -122.029009611000021, 49.128545710000033 ], [ -122.02901271599994, 49.130005796000049 ], [ -122.0288071, 49.130005162000096 ], [ -122.028491764999913, 49.130004185000118 ], [ -122.006755902999913, 49.129934299000119 ], [ -122.006787382999931, 49.132680892000103 ], [ -122.006866114999966, 49.140934738000091 ], [ -122.006875797999953, 49.141949923 ], [ -122.00653039499997, 49.141947925000075 ], [ -122.006379524999915, 49.141996402000117 ], [ -122.00627684799997, 49.142106200000079 ], [ -122.00626432199999, 49.143018129000041 ], [ -122.006182197999976, 49.143208022000046 ], [ -122.006037982999885, 49.143370359000116 ], [ -122.005848010999927, 49.143506664000029 ], [ -122.005603148999967, 49.143611170000099 ], [ -122.005252573999911, 49.14368560700008 ], [ -122.003931329999944, 49.143869145000039 ], [ -122.003033159999916, 49.143900698000088 ], [ -122.00000171, 49.143859226000131 ], [ -121.999878317999944, 49.143857514000096 ], [ -121.999823494999987, 49.143856775000103 ], [ -121.999576780999988, 49.14385338500005 ], [ -121.993363182999985, 49.143768096000045 ], [ -121.985065438999953, 49.143593032000098 ], [ -121.979476913000013, 49.143518601000039 ], [ -121.978542, 49.143507397000114 ], [ -121.977639388999975, 49.14349881600009 ], [ -121.977638259999964, 49.142642231000075 ] ], [ [ -121.987034415999986, 49.142636198000048 ], [ -121.991612872999923, 49.142676270000081 ], [ -121.991611640999963, 49.142737012000069 ], [ -121.992195575999972, 49.142758773000047 ], [ -121.99219719499996, 49.14273999400011 ], [ -121.997664754999988, 49.14294359200008 ], [ -121.997660001999961, 49.14299880800008 ], [ -121.998914977999959, 49.143009696000036 ], [ -121.999152147999908, 49.140253454000074 ], [ -122.002982469999964, 49.140395875000117 ], [ -122.003132673999986, 49.138648445000072 ], [ -122.003312717999904, 49.138655136000111 ], [ -122.003393965999948, 49.13770980900005 ], [ -122.003247748999982, 49.137704375000069 ], [ -122.003280658, 49.137321491000087 ], [ -122.003037965999965, 49.137312471000023 ], [ -122.003117003999989, 49.136392916000069 ], [ -122.002725512999945, 49.136378365000084 ], [ -122.00293376899999, 49.133955485000079 ], [ -122.0022578499999, 49.133930359000033 ], [ -122.002263804999956, 49.133861077000049 ], [ -122.000511056, 49.133795901000092 ], [ -122.00048761799998, 49.134068422000055 ], [ -121.998187612999985, 49.133982853000077 ], [ -121.99808058499994, 49.135226576000015 ], [ -121.992613929999933, 49.135022997000071 ], [ -121.992687620999931, 49.13416783400006 ], [ -121.992923690999959, 49.131428080000035 ], [ -121.995223561999978, 49.131513762000118 ], [ -121.995330656999954, 49.13027003300008 ], [ -122.000533413999975, 49.130463681000073 ], [ -122.000556849999938, 49.130191158000059 ], [ -122.002774428999956, 49.130273620000018 ], [ -122.002796217999986, 49.130020100000088 ], [ -121.999155285999947, 49.129884686 ], [ -121.99946450799996, 49.126289721000013 ], [ -122.000065515999907, 49.126312082 ], [ -122.000279958999954, 49.123818297000128 ], [ -121.996409773, 49.123674241000067 ], [ -121.996397841999965, 49.12381285400005 ], [ -121.996452111999986, 49.123814876000033 ], [ -121.996142672999952, 49.12740984600002 ], [ -121.99550845, 49.12738622600007 ], [ -121.995399910999964, 49.12864686000006 ], [ -121.989934039999966, 49.128443141000069 ], [ -121.99024396599999, 49.124848196000052 ], [ -121.990712542999987, 49.124865671000109 ], [ -121.990741357999951, 49.124531355000052 ], [ -121.990653308999953, 49.124528072000032 ], [ -121.990672098999966, 49.124310071000089 ], [ -121.989711590999931, 49.124274247000045 ], [ -121.989865718999951, 49.122486457000036 ], [ -121.989524994999968, 49.122473747000114 ], [ -121.989622800999982, 49.121339280000065 ], [ -121.989167494999933, 49.121335293000094 ], [ -121.989180126999912, 49.12071383500006 ], [ -121.987040517999958, 49.120633985000026 ], [ -121.987044055999931, 49.120592980000083 ], [ -121.98628429899999, 49.120564615000013 ], [ -121.986281193, 49.120600601000056 ], [ -121.98409159, 49.120518825000026 ], [ -121.984086303999902, 49.12058005500009 ], [ -121.982961729999943, 49.120538037000046 ], [ -121.982956457999975, 49.120599081000094 ], [ -121.982014980999949, 49.120563896000071 ], [ -121.98201161899999, 49.12060280400005 ], [ -121.980958629999961, 49.120563442000055 ], [ -121.980818059999962, 49.122190428000103 ], [ -121.978050540999931, 49.122086924000051 ], [ -121.978034726999951, 49.122856489000121 ], [ -121.977623621999896, 49.12285284899999 ], [ -121.977623013999917, 49.122882383000061 ], [ -121.981732600999976, 49.123036067000065 ], [ -121.981563316999924, 49.124995642000059 ], [ -121.981639124999958, 49.124998476000016 ], [ -121.981328532999953, 49.128593396000078 ], [ -121.980716502999911, 49.128570520000096 ], [ -121.980635355999979, 49.129509510000048 ], [ -121.980085793999976, 49.129488966000032 ], [ -121.980071584999976, 49.129653363000038 ], [ -121.981062437999981, 49.129690403 ], [ -121.980751770999959, 49.133285297000086 ], [ -121.979962787999952, 49.133255804000058 ], [ -121.979877507999973, 49.134242319000073 ], [ -121.979798434999921, 49.135157015000104 ], [ -121.979746622999983, 49.13515507700005 ], [ -121.979695163999963, 49.135750315000074 ], [ -121.977833986999912, 49.135680717000106 ], [ -121.977755941999987, 49.136583018000053 ], [ -121.979826814999925, 49.136660455000047 ], [ -121.979717881999974, 49.137920440000102 ], [ -121.980352063999973, 49.137944146000059 ], [ -121.980371854999959, 49.137715197000091 ], [ -121.985838772999969, 49.137919397000097 ], [ -121.985837523999948, 49.137933886000056 ], [ -121.986327757999973, 49.137952184000063 ], [ -121.986293344999979, 49.138350865000049 ], [ -121.98761413899993, 49.138400150000095 ], [ -121.987303919999988, 49.141995015000084 ], [ -121.986816595999969, 49.141976832000132 ], [ -121.986761170999941, 49.142618959000075 ], [ -121.98703502299999, 49.142629177000067 ], [ -121.987034415999986, 49.142636198000048 ] ], [ [ -122.002417667999978, 49.120832971000034 ], [ -122.002360498999963, 49.121498214000084 ], [ -122.000648223000027, 49.121434527000062 ], [ -122.000525648999925, 49.122860188000068 ], [ -122.003133344999952, 49.122957170000099 ], [ -122.003196135999971, 49.122226373000039 ], [ -122.00314610599996, 49.122224513000084 ], [ -122.003262965999937, 49.120864402000045 ], [ -122.002417667999978, 49.120832971000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.902863666634954", "sL_AssetLoss": "10511", "sL_BldgLoss": "9490", "sL_StrLoss": "6550", "sL_NStrLoss": "2940", "sL_ContLoss": "1021", "geom_point": "0101000020E6100000F0057F22037F5EC046F762DE19904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.981988854999912, 49.123889895000062 ], [ -121.987454158, 49.12409401700009 ], [ -121.987144021999924, 49.127688961 ], [ -121.98167829899991, 49.12748482300006 ], [ -121.981988854999912, 49.123889895000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117327978", "BldgCostT": "79294857", "sL_LossRatio": "0.836042304537859", "sL_AssetLoss": "488931", "sL_BldgLoss": "408767", "sL_StrLoss": "259258", "sL_NStrLoss": "149509", "sL_ContLoss": "80164", "geom_point": "0101000020E610000054F534585F835EC0DE4EB6DCF48F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.02901271599994, 49.130005796000049 ], [ -122.029009611000021, 49.128545710000033 ], [ -122.030021785, 49.128583087000045 ], [ -122.02998021499991, 49.12907010700004 ], [ -122.030954184, 49.129106064000062 ], [ -122.030888116999932, 49.12988024800007 ], [ -122.030894331999946, 49.129880477000064 ], [ -122.031002793999917, 49.128609483000083 ], [ -122.031108192999952, 49.128613374000082 ], [ -122.031183034999955, 49.12773628500004 ], [ -122.036010498999957, 49.127914369000045 ], [ -122.036019333999889, 49.12781070100003 ], [ -122.041079828999926, 49.127997148000077 ], [ -122.041265330999948, 49.125817621000095 ], [ -122.041497681999914, 49.125826176000025 ], [ -122.041754918000024, 49.122803301000069 ], [ -122.03987301299999, 49.122733996000058 ], [ -122.03989874199999, 49.12243177200002 ], [ -122.038540696999959, 49.12238173800003 ], [ -122.038529829999973, 49.122509344000093 ], [ -122.038048203999921, 49.122491596000074 ], [ -122.03804191499999, 49.122565456000054 ], [ -122.034604620999914, 49.122438726000048 ], [ -122.034595771999975, 49.122542538000097 ], [ -122.032088072, 49.122450012000108 ], [ -122.031987963999924, 49.123623608000052 ], [ -122.032405291999964, 49.123639011000087 ], [ -122.032098629999965, 49.127234085000076 ], [ -122.029006578999912, 49.127119930000106 ], [ -122.028991901, 49.120214493000056 ], [ -122.035893173999966, 49.120193001000075 ], [ -122.036866233999888, 49.120189932000137 ], [ -122.040046007999962, 49.120179863000054 ], [ -122.045549998999931, 49.120162206000082 ], [ -122.045549082999926, 49.118349988000062 ], [ -122.04935189699998, 49.11835360400007 ], [ -122.054335011999953, 49.118358074000113 ], [ -122.061912517999986, 49.11836441700008 ], [ -122.062132168999966, 49.118364590000063 ], [ -122.069284941, 49.118370731000063 ], [ -122.070614404999944, 49.118371809000116 ], [ -122.073104787999952, 49.118373796000085 ], [ -122.073110822999965, 49.119339968000112 ], [ -122.073122129999945, 49.121157124000021 ], [ -122.07318009699999, 49.130471106000101 ], [ -122.068153567, 49.130466994000116 ], [ -122.06622056099998, 49.130465353000076 ], [ -122.06487760899995, 49.130464185000051 ], [ -122.063767492999915, 49.130463394000103 ], [ -122.062040051999972, 49.130462103000092 ], [ -122.054722027999958, 49.130456404000093 ], [ -122.052287201999974, 49.130454392000054 ], [ -122.047687756999935, 49.130449927000036 ], [ -122.045556905999959, 49.130447810000106 ], [ -122.040005211999983, 49.130444505000071 ], [ -122.032778, 49.130156199000055 ], [ -122.02901271599994, 49.130005796000049 ] ], [ [ -122.055029702999931, 49.128245585000094 ], [ -122.055093373999952, 49.127494858000027 ], [ -122.055330746999985, 49.127503566000101 ], [ -122.055374590999975, 49.126986563000102 ], [ -122.060840575999961, 49.127186957000085 ], [ -122.060790021999964, 49.127783905000086 ], [ -122.062232481999942, 49.127836742000106 ], [ -122.062292560999964, 49.12465110100009 ], [ -122.06270369, 49.124654439000061 ], [ -122.062713862999885, 49.124114786000128 ], [ -122.063124988, 49.124118123000052 ], [ -122.063130070999961, 49.123848296000133 ], [ -122.063541195000013, 49.123851633000086 ], [ -122.063546275999897, 49.123581806000097 ], [ -122.06560188399996, 49.123598462000054 ], [ -122.065606953999961, 49.123328635000107 ], [ -122.066018073999956, 49.123331962000123 ], [ -122.066033276999974, 49.122522481000068 ], [ -122.066444389999916, 49.122525806000091 ], [ -122.066454519000033, 49.121986153000087 ], [ -122.069050659999959, 49.12200711900006 ], [ -122.069171228999963, 49.120580240000038 ], [ -122.06824407, 49.120546334000061 ], [ -122.068177073999905, 49.121339037000119 ], [ -122.062711743999927, 49.121139013000082 ], [ -122.06276653799992, 49.120491588000121 ], [ -122.062513147999937, 49.120482307000046 ], [ -122.06248371399991, 49.120830075000107 ], [ -122.061648645999981, 49.120799486000131 ], [ -122.061637284, 49.120933695000097 ], [ -122.058541421999934, 49.120820235000039 ], [ -122.058458402999946, 49.121800069000138 ], [ -122.054543240999962, 49.121656454000103 ], [ -122.054516251999956, 49.121974662000106 ], [ -122.049050906999952, 49.121773945 ], [ -122.04913656699999, 49.120765341000038 ], [ -122.04784046499995, 49.120754657000099 ], [ -122.047823746999939, 49.120951451000067 ], [ -122.049012822999927, 49.120995159000131 ], [ -122.048977358999963, 49.121412704000122 ], [ -122.049000650000011, 49.121413560000093 ], [ -122.048792579999969, 49.123863273000083 ], [ -122.04888770599996, 49.123866769000131 ], [ -122.048862472999971, 49.124163833000104 ], [ -122.048882523999964, 49.12416457000004 ], [ -122.048820091, 49.124899585000023 ], [ -122.04883337099993, 49.124900073000099 ], [ -122.04878872499999, 49.125425667000108 ], [ -122.048851503999984, 49.125427974000026 ], [ -122.048791095999945, 49.126139131000031 ], [ -122.04914043699992, 49.126151968000094 ], [ -122.049117536999958, 49.126421581000024 ], [ -122.049424544999951, 49.12643286200008 ], [ -122.049393169, 49.126802279000039 ], [ -122.049409067999946, 49.126802863000087 ], [ -122.049294194999931, 49.128155327000059 ], [ -122.049857138, 49.128176010000097 ], [ -122.049857449999976, 49.128172334000084 ], [ -122.050248873999962, 49.128186713000055 ], [ -122.050249932999947, 49.128174243000096 ], [ -122.051587969999929, 49.12822338700007 ], [ -122.051596781999947, 49.128119576000131 ], [ -122.055029702999931, 49.128245585000094 ] ], [ [ -122.068028159999969, 49.125777015000047 ], [ -122.067984601999953, 49.128100928000066 ], [ -122.068345451999988, 49.128114123000117 ], [ -122.068346900999984, 49.128096977000055 ], [ -122.069148855999913, 49.128126298000069 ], [ -122.069148966999947, 49.128124996000089 ], [ -122.070827341999987, 49.12818634300001 ], [ -122.070865970999989, 49.127729047000031 ], [ -122.070813030999972, 49.127727113000034 ], [ -122.070877373, 49.126965421000101 ], [ -122.07073487599996, 49.12696021400005 ], [ -122.070800364999968, 49.126184944000023 ], [ -122.070785926999946, 49.126184416000058 ], [ -122.070840528999966, 49.125538011000025 ], [ -122.070805165999957, 49.125536718000063 ], [ -122.070835643999914, 49.125175904000038 ], [ -122.070764888000014, 49.125173318000073 ], [ -122.070833407999899, 49.124362129000133 ], [ -122.070805839999977, 49.124361121000078 ], [ -122.070842454999962, 49.123927638000104 ], [ -122.070806466999926, 49.123926323000056 ], [ -122.070844401000031, 49.123477218000083 ], [ -122.070765192999957, 49.123474323000053 ], [ -122.070794000999939, 49.123133270000096 ], [ -122.07075441299996, 49.123131824000041 ], [ -122.070831731999974, 49.122216433000105 ], [ -122.070562107999976, 49.122206578000075 ], [ -122.070500044999918, 49.125527076000047 ], [ -122.06926663199999, 49.125517139000095 ], [ -122.069261580999935, 49.125786966000071 ], [ -122.068028159999969, 49.125777015000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.883899556868538", "sL_AssetLoss": "16925", "sL_BldgLoss": "14960", "sL_StrLoss": "9800", "sL_NStrLoss": "5160", "sL_ContLoss": "1965", "geom_point": "0101000020E61000004DA0A953F5815EC0F703DCFBED8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.028972099999976, 49.106831222000061 ], [ -122.032474055999984, 49.106960565000072 ], [ -122.032167509999923, 49.110555732000073 ], [ -122.031054270999931, 49.110514627000065 ], [ -122.031013085999959, 49.110997459000068 ], [ -122.028972799999934, 49.110922094000074 ], [ -122.028972765999981, 49.110736547000052 ], [ -122.028972206999967, 49.107416770000086 ], [ -122.028972099999976, 49.106831222000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119908084", "BldgCostT": "80223334", "sL_LossRatio": "0.838303819769431", "sL_AssetLoss": "468502.1", "sL_BldgLoss": "392747.1", "sL_StrLoss": "256295.1", "sL_NStrLoss": "136452", "sL_ContLoss": "75755", "geom_point": "0101000020E610000025D714C8EC825EC07FBCFCF3598E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.028991901, 49.120214493000056 ], [ -122.028973897999919, 49.116610503000054 ], [ -122.028973789999938, 49.116588468000046 ], [ -122.028973462999943, 49.114685545000064 ], [ -122.028973163999964, 49.112994534000045 ], [ -122.02897298299996, 49.11176857400006 ], [ -122.032355165999931, 49.111893482000035 ], [ -122.032294646999915, 49.112603179000075 ], [ -122.032411207999985, 49.112607482000051 ], [ -122.032318499, 49.113694663000139 ], [ -122.035945554999941, 49.113828490000074 ], [ -122.035918209999977, 49.114149449000081 ], [ -122.035957273999912, 49.114150890000069 ], [ -122.035929965999955, 49.11447142300004 ], [ -122.035999592999971, 49.114473990000064 ], [ -122.03576616099997, 49.117213676000077 ], [ -122.036138157999943, 49.117227394000039 ], [ -122.036116888999942, 49.117477029000042 ], [ -122.037812717999955, 49.117539550000068 ], [ -122.037779757999928, 49.117926557000089 ], [ -122.038365221999939, 49.117948136000109 ], [ -122.038359825, 49.118011511000176 ], [ -122.039378814999964, 49.118049060000054 ], [ -122.039381132999921, 49.117863561000028 ], [ -122.039339232999978, 49.117846361000048 ], [ -122.039337633999978, 49.117560461000032 ], [ -122.039388732999953, 49.117525561000065 ], [ -122.03939043299999, 49.117288061000082 ], [ -122.039408146999932, 49.117278866000035 ], [ -122.039420544999984, 49.11663687900004 ], [ -122.039831604999932, 49.116640299000082 ], [ -122.039836812999937, 49.116370474000092 ], [ -122.04140998799997, 49.116383549000091 ], [ -122.041581551999954, 49.114367095 ], [ -122.042059711999954, 49.114384703000042 ], [ -122.042068023999988, 49.114286984000067 ], [ -122.042018914999915, 49.114285176000095 ], [ -122.042107711999989, 49.113241316000021 ], [ -122.042049678999959, 49.113239180000093 ], [ -122.04235548199992, 49.109644 ], [ -122.043303511999966, 49.109678905000138 ], [ -122.043368457999932, 49.10891511200002 ], [ -122.043137787999953, 49.108906620000035 ], [ -122.043147547, 49.108791860000053 ], [ -122.041945254999973, 49.108747589000089 ], [ -122.042057654999923, 49.107426103000059 ], [ -122.04204114, 49.107425495000051 ], [ -122.042106979000025, 49.106651399000071 ], [ -122.042000986999938, 49.106647496000058 ], [ -122.04205529799998, 49.106008940000088 ], [ -122.039248332999946, 49.105905524000079 ], [ -122.039320789, 49.105054200000033 ], [ -122.038379542999934, 49.105019505000108 ], [ -122.038361665999929, 49.105229499000032 ], [ -122.038156547999932, 49.105221938000049 ], [ -122.038087599, 49.106031803000079 ], [ -122.036192496999931, 49.105961921000123 ], [ -122.036187221999953, 49.106023848000071 ], [ -122.031106645999927, 49.105836334000124 ], [ -122.031054035999972, 49.106453170000123 ], [ -122.028972015999912, 49.1063762570001 ], [ -122.028971550999955, 49.103834062000033 ], [ -122.045522489999883, 49.103829479000062 ], [ -122.050964812999936, 49.103840686000119 ], [ -122.053871080999897, 49.103846552000057 ], [ -122.062090616999939, 49.103862703000061 ], [ -122.062095978999977, 49.105469179000067 ], [ -122.062097180999984, 49.105828945 ], [ -122.062098385999974, 49.10618882600005 ], [ -122.062099828999976, 49.106611536000067 ], [ -122.062102569999936, 49.107439120000052 ], [ -122.062116397999944, 49.111568631000083 ], [ -122.062127074000017, 49.114765196000093 ], [ -122.062070298999984, 49.115080496000111 ], [ -122.062132168999966, 49.118364590000063 ], [ -122.061912517999986, 49.11836441700008 ], [ -122.054335011999953, 49.118358074000113 ], [ -122.04935189699998, 49.11835360400007 ], [ -122.045549082999926, 49.118349988000062 ], [ -122.045549998999931, 49.120162206000082 ], [ -122.040046007999962, 49.120179863000054 ], [ -122.036866233999888, 49.120189932000137 ], [ -122.035893173999966, 49.120193001000075 ], [ -122.028991901, 49.120214493000056 ] ], [ [ -122.042252186999988, 49.119038706 ], [ -122.042260881999965, 49.118587043000048 ], [ -122.04080693, 49.118584140000053 ], [ -122.040783626999954, 49.118857970000057 ], [ -122.041909851999918, 49.118899443000018 ], [ -122.041884138999947, 49.119201671000091 ], [ -122.042237218000011, 49.119214670000062 ], [ -122.042252186999988, 49.119038706 ] ], [ [ -122.04993540199996, 49.11618415700007 ], [ -122.049986541999942, 49.115581800000086 ], [ -122.055451165999955, 49.115782472000014 ], [ -122.055442864999975, 49.115880376000057 ], [ -122.05601465299999, 49.115901357000013 ], [ -122.055999484999987, 49.11608028100008 ], [ -122.05698920499999, 49.116116590000118 ], [ -122.056992629999925, 49.116076170000078 ], [ -122.057652994999941, 49.116100391000053 ], [ -122.057655003, 49.116076686000056 ], [ -122.058234609999886, 49.116097941000092 ], [ -122.058240281999943, 49.116030999000017 ], [ -122.058691102999958, 49.11604753000006 ], [ -122.058744523999934, 49.115416900000071 ], [ -122.058592247999982, 49.115411317000039 ], [ -122.058651946999973, 49.114706586000139 ], [ -122.05810707599997, 49.114686606000049 ], [ -122.058180849999957, 49.113815822000085 ], [ -122.058090528999955, 49.113812509000105 ], [ -122.058322729999986, 49.111071574000078 ], [ -122.05807299899999, 49.111062415000077 ], [ -122.058377548999985, 49.107467178000057 ], [ -122.058725873999947, 49.107479952000105 ], [ -122.058843188999973, 49.106094771000052 ], [ -122.05854809, 49.106083949000059 ], [ -122.058543238999931, 49.106141213000093 ], [ -122.054574636999931, 49.105995587000088 ], [ -122.05456667499999, 49.106089508000082 ], [ -122.049103191999961, 49.105888788000065 ], [ -122.04910332299994, 49.105887247000112 ], [ -122.04887575399999, 49.10587888000002 ], [ -122.048695954999985, 49.107996447000033 ], [ -122.0489266229999, 49.108004927000074 ], [ -122.048621337999947, 49.111600135000067 ], [ -122.047780400999926, 49.111569216000078 ], [ -122.04775335, 49.111887680000059 ], [ -122.048880966999931, 49.111929138000043 ], [ -122.048575652999915, 49.115524324000042 ], [ -122.047642164999928, 49.11549000400003 ], [ -122.047514290999928, 49.116995246000094 ], [ -122.047382, 49.116990381000022 ], [ -122.047360587999947, 49.117242411000085 ], [ -122.048042515999924, 49.117248036000028 ], [ -122.04804768, 49.116978211000074 ], [ -122.048122557999974, 49.116978828000093 ], [ -122.048134047999952, 49.116843559000102 ], [ -122.048461155999988, 49.116855585000046 ], [ -122.048463906000023, 49.116711774000109 ], [ -122.048808310999945, 49.116714612000052 ], [ -122.048806733999967, 49.116217461000119 ], [ -122.048857832999943, 49.116182562000105 ], [ -122.048885136999957, 49.116183398000047 ], [ -122.048885286999933, 49.116175510000126 ], [ -122.04993540199996, 49.11618415700007 ] ], [ [ -122.048577589999951, 49.105500313000057 ], [ -122.048595150999944, 49.105293481000032 ], [ -122.04774164899996, 49.105262096000061 ], [ -122.047724082999963, 49.105468928000072 ], [ -122.048577589999951, 49.105500313000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.845846817691478", "sL_AssetLoss": "9270", "sL_BldgLoss": "7841", "sL_StrLoss": "4830", "sL_NStrLoss": "3011", "sL_ContLoss": "1429", "geom_point": "0101000020E610000033024B2A6A845EC0E3CEE04A518C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.070993975999912, 49.099083965000091 ], [ -122.071004048999924, 49.09854430800015 ], [ -122.070593133000031, 49.098540999000122 ], [ -122.070598170999915, 49.098271173000057 ], [ -122.070187258999937, 49.098267863000054 ], [ -122.070197338999904, 49.097728206000134 ], [ -122.069786430999926, 49.097724895000091 ], [ -122.069791473999928, 49.097455067000055 ], [ -122.068969661999972, 49.0974484420001 ], [ -122.068974707999971, 49.097178613000075 ], [ -122.066920190999937, 49.097162024000028 ], [ -122.066925247999905, 49.096892196000098 ], [ -122.066514346999938, 49.096888874000044 ], [ -122.066529525999954, 49.096079390000064 ], [ -122.068173106999964, 49.096092669000029 ], [ -122.068183208999955, 49.095553013000071 ], [ -122.067772317999953, 49.095549695000052 ], [ -122.067777371999938, 49.095279867000109 ], [ -122.06736648299993, 49.095276548000093 ], [ -122.06737659399991, 49.094736891000046 ], [ -122.066965710999952, 49.094733571000084 ], [ -122.066970767999976, 49.094463742000052 ], [ -122.066559885999965, 49.094460420000068 ], [ -122.066570005999893, 49.093920764000089 ], [ -122.066159129999974, 49.093917441000016 ], [ -122.066174313999909, 49.093107956000011 ], [ -122.067161522999939, 49.093115938000111 ], [ -122.067404182999937, 49.09326421500009 ], [ -122.067401869999941, 49.093387750000097 ], [ -122.067609096999945, 49.093389424000051 ], [ -122.067810468999966, 49.093512470000057 ], [ -122.067807688999949, 49.093660897000035 ], [ -122.067949442999947, 49.093662041000108 ], [ -122.06861508799993, 49.094434575000065 ], [ -122.068614294000028, 49.094477015000031 ], [ -122.068651919, 49.094477320000109 ], [ -122.069821750999921, 49.09583492400003 ], [ -122.069821727999923, 49.095836097000074 ], [ -122.06982276799999, 49.09583610500011 ], [ -122.070445794999912, 49.096559098000107 ], [ -122.071837375999962, 49.097934404000107 ], [ -122.071835942999954, 49.098011263000103 ], [ -122.07191579699996, 49.098011904000074 ], [ -122.072644460999967, 49.098732002000091 ], [ -122.072637656, 49.099097182000072 ], [ -122.070993975999912, 49.099083965000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86074918", "BldgCostT": "58601668", "sL_LossRatio": "0.849106686800289", "sL_AssetLoss": "358273", "sL_BldgLoss": "304212", "sL_StrLoss": "196646", "sL_NStrLoss": "107566", "sL_ContLoss": "54061", "geom_point": "0101000020E6100000BC3775D447845EC0DFDDF3914E8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.062972769999931, 49.137892670000056 ], [ -122.06364889799994, 49.136591298000042 ], [ -122.064105420999908, 49.135927303000067 ], [ -122.064349716999985, 49.135375541000023 ], [ -122.064885097999962, 49.134166291000099 ], [ -122.06488329699998, 49.133270287000109 ], [ -122.06487760899995, 49.130464185000051 ], [ -122.06622056099998, 49.130465353000076 ], [ -122.068153567, 49.130466994000116 ], [ -122.07318009699999, 49.130471106000101 ], [ -122.073122129999945, 49.121157124000021 ], [ -122.073110822999965, 49.119339968000112 ], [ -122.073104787999952, 49.118373796000085 ], [ -122.070614404999944, 49.118371809000116 ], [ -122.069284941, 49.118370731000063 ], [ -122.062132168999966, 49.118364590000063 ], [ -122.062070298999984, 49.115080496000111 ], [ -122.062127074000017, 49.114765196000093 ], [ -122.062116397999944, 49.111568631000083 ], [ -122.062102569999936, 49.107439120000052 ], [ -122.062099828999976, 49.106611536000067 ], [ -122.062098385999974, 49.10618882600005 ], [ -122.062097180999984, 49.105828945 ], [ -122.062095978999977, 49.105469179000067 ], [ -122.062090616999939, 49.103862703000061 ], [ -122.053871080999897, 49.103846552000057 ], [ -122.050964812999936, 49.103840686000119 ], [ -122.045522489999883, 49.103829479000062 ], [ -122.045519760999952, 49.102347302000112 ], [ -122.04551591099991, 49.100268908000075 ], [ -122.045515413999965, 49.099998584000119 ], [ -122.045509305999957, 49.096697153000036 ], [ -122.044393802999963, 49.096682082000079 ], [ -122.043883765999979, 49.096675192000056 ], [ -122.043087529999951, 49.096534060000096 ], [ -122.042693361999923, 49.096531860000034 ], [ -122.042205277999983, 49.096529118000063 ], [ -122.041389676999984, 49.096172301000095 ], [ -122.037990773999951, 49.093334816000045 ], [ -122.036754215999949, 49.092302393000111 ], [ -122.040586761999961, 49.092443709000094 ], [ -122.040444681999972, 49.094114060000145 ], [ -122.042190033999944, 49.094178371000062 ], [ -122.042247579999938, 49.093501550000056 ], [ -122.04474369899998, 49.093593474000087 ], [ -122.044762184999954, 49.093375910000113 ], [ -122.050224179999987, 49.093576854000069 ], [ -122.050197508999972, 49.093891192000065 ], [ -122.050079989, 49.095276146000067 ], [ -122.050625090999944, 49.09529618600007 ], [ -122.05065005499992, 49.095001955000036 ], [ -122.052474095999955, 49.095068989000019 ], [ -122.05252971099999, 49.094413199000037 ], [ -122.053023077999939, 49.094431325000116 ], [ -122.05302969399996, 49.09435331100007 ], [ -122.058491840000016, 49.094553835000056 ], [ -122.05845688499997, 49.094966639000077 ], [ -122.058913384999954, 49.094983385 ], [ -122.058917722999965, 49.094932154000105 ], [ -122.059978348999934, 49.094971054000084 ], [ -122.06002970899999, 49.094364279000068 ], [ -122.060105566999979, 49.094367061000106 ], [ -122.060136923999977, 49.093996580000095 ], [ -122.0655990599999, 49.094196743000097 ], [ -122.065295151999948, 49.097792076000111 ], [ -122.065219287999952, 49.09778929700007 ], [ -122.065187968999965, 49.098159777000085 ], [ -122.064278257999945, 49.098126459000035 ], [ -122.064252735999986, 49.098428273000117 ], [ -122.064433264999934, 49.098434885000103 ], [ -122.06437896700001, 49.09907704700008 ], [ -122.064426504, 49.099078788000106 ], [ -122.064289287999941, 49.100701501000081 ], [ -122.064313709999979, 49.100702395000013 ], [ -122.064239293999947, 49.101582383000029 ], [ -122.06623717699992, 49.101655539000056 ], [ -122.066243455999967, 49.101581248000052 ], [ -122.071706506999973, 49.101781100000046 ], [ -122.071706438, 49.101781915000053 ], [ -122.071864428999916, 49.101787690000023 ], [ -122.071967278999963, 49.10056908300011 ], [ -122.073020505999935, 49.100607578000037 ], [ -122.073023448999933, 49.100449625000053 ], [ -122.074348703999988, 49.100460259000023 ], [ -122.075271501999907, 49.101572294000071 ], [ -122.076360800999979, 49.102651793000064 ], [ -122.076876939000016, 49.103268675000024 ], [ -122.077188168999953, 49.10364064200008 ], [ -122.077181366, 49.103721363000041 ], [ -122.077256209999973, 49.103721961000133 ], [ -122.077478780999925, 49.103987963000094 ], [ -122.077478677000016, 49.103993608000053 ], [ -122.077483536999949, 49.103993647000038 ], [ -122.077861113, 49.104444891000114 ], [ -122.078687825999936, 49.105285409000011 ], [ -122.078681586999949, 49.105622426000068 ], [ -122.07830580299999, 49.105619426000032 ], [ -122.07703768799999, 49.105609294000068 ], [ -122.077047697999916, 49.105069637000106 ], [ -122.07663672699999, 49.105066350000122 ], [ -122.076641732999988, 49.104796522000072 ], [ -122.07623076699997, 49.104793234000063 ], [ -122.076239336999947, 49.104331558000069 ], [ -122.07500709899989, 49.104286559000066 ], [ -122.075002879999886, 49.104513533000052 ], [ -122.073769985999945, 49.104503647000108 ], [ -122.073774862999983, 49.104241546000075 ], [ -122.072478705999984, 49.104194182000057 ], [ -122.07237586299999, 49.105412783000048 ], [ -122.071209274999958, 49.10537014100003 ], [ -122.071179655999984, 49.105720977000075 ], [ -122.071208267999936, 49.105722023000098 ], [ -122.071007792, 49.10809655600012 ], [ -122.075164179999959, 49.108248424000045 ], [ -122.074990977999974, 49.110301883000048 ], [ -122.075296103999932, 49.11031302600005 ], [ -122.075103801999958, 49.112592886000101 ], [ -122.075280344999953, 49.112599332000094 ], [ -122.075232207999974, 49.113170027000066 ], [ -122.076611936999925, 49.113220398000081 ], [ -122.076573375999885, 49.113677691000078 ], [ -122.076628364, 49.113679699000038 ], [ -122.076571142999939, 49.114358300000028 ], [ -122.076601305999958, 49.11435940100008 ], [ -122.076572636000023, 49.11469940400012 ], [ -122.076704024999955, 49.114704199000101 ], [ -122.07657869799999, 49.11619043300005 ], [ -122.077504224999956, 49.116224210000098 ], [ -122.077510088999958, 49.11615466100011 ], [ -122.078029671999943, 49.116173620000069 ], [ -122.078031867999954, 49.116147574000131 ], [ -122.083496676999971, 49.116346822000089 ], [ -122.083194007999964, 49.119942081000026 ], [ -122.082772047000034, 49.119926706000108 ], [ -122.082731714999966, 49.120405691000052 ], [ -122.081950056999986, 49.120377206000043 ], [ -122.08190531000001, 49.120908509000046 ], [ -122.08096315799996, 49.120874168000078 ], [ -122.080961569999928, 49.120893031000087 ], [ -122.080411377999923, 49.120872973000111 ], [ -122.080409147999916, 49.120899445000049 ], [ -122.079878604999962, 49.120880100000115 ], [ -122.079813765999987, 49.121649557000076 ], [ -122.076562629999927, 49.121530957000054 ], [ -122.076543695999973, 49.121755440000072 ], [ -122.077104547999966, 49.121775907000014 ], [ -122.077061253999929, 49.122289304000063 ], [ -122.077129877999965, 49.122291808000092 ], [ -122.076838983999963, 49.125741114000107 ], [ -122.077003596999958, 49.125747120000106 ], [ -122.076851100999974, 49.127555214000054 ], [ -122.077647429999928, 49.127584268000049 ], [ -122.07783987, 49.125302096 ], [ -122.083114818999974, 49.125494395000032 ], [ -122.08325763199997, 49.123798322000077 ], [ -122.086757197999972, 49.123925756000077 ], [ -122.086860645999977, 49.122696005000059 ], [ -122.092326261999972, 49.122894802000104 ], [ -122.092286381999926, 49.123369541000088 ], [ -122.094931086999978, 49.123465635000059 ], [ -122.090193743999976, 49.125019083000026 ], [ -122.088296220999922, 49.125677627000073 ], [ -122.087032258999926, 49.12623388400003 ], [ -122.086141882999982, 49.126715389000019 ], [ -122.086118859, 49.126729057000141 ], [ -122.085296453999916, 49.127218125000077 ], [ -122.085286278999916, 49.127224192000064 ], [ -122.084717809, 49.127648627000056 ], [ -122.083988285999965, 49.128193296000106 ], [ -122.083651356999937, 49.128444841000032 ], [ -122.081802087999961, 49.129825392000043 ], [ -122.081622898999925, 49.129755801000066 ], [ -122.078794979999941, 49.131828646000081 ], [ -122.078094246999981, 49.132342236000035 ], [ -122.077630098999961, 49.132325306000062 ], [ -122.077597996999899, 49.132705946000073 ], [ -122.077115317999926, 49.133059700000075 ], [ -122.076986581999961, 49.133155622000082 ], [ -122.076870850999981, 49.133151400000038 ], [ -122.07686270899994, 49.13324792000008 ], [ -122.076476180999975, 49.13353591900006 ], [ -122.071370502999983, 49.133349513000098 ], [ -122.07143311599998, 49.132608284000071 ], [ -122.068231730999955, 49.132491279000085 ], [ -122.067947967999928, 49.13584760100008 ], [ -122.067744572999956, 49.135840163000019 ], [ -122.067637341999969, 49.137108292000079 ], [ -122.068316778999943, 49.137113776000092 ], [ -122.062972769999931, 49.137892670000056 ] ], [ [ -122.070884628999949, 49.116134019000086 ], [ -122.070892116999971, 49.116045352000064 ], [ -122.069512310999954, 49.115994908000033 ], [ -122.0697049, 49.113715071000094 ], [ -122.069528352999924, 49.113708616000061 ], [ -122.069701808999966, 49.111655175000095 ], [ -122.069396675999968, 49.111644017000081 ], [ -122.069597249999944, 49.109269500000103 ], [ -122.06547693, 49.109118741000017 ], [ -122.065464565999903, 49.10926497000009 ], [ -122.065563293999972, 49.10926858400007 ], [ -122.065501263, 49.11000221700008 ], [ -122.065636936999965, 49.110007184000025 ], [ -122.065550344999963, 49.111031302000029 ], [ -122.065577300999962, 49.11103228900005 ], [ -122.065521333000021, 49.111694208000067 ], [ -122.065600043999936, 49.111697089000067 ], [ -122.065486592999946, 49.113038772000053 ], [ -122.0655036299999, 49.113039395000023 ], [ -122.065472336999946, 49.113409457000046 ], [ -122.065781941999944, 49.113420789000074 ], [ -122.065647478999935, 49.115010985000012 ], [ -122.065707843999988, 49.115013195000067 ], [ -122.065618935999964, 49.116064582000092 ], [ -122.066742681999955, 49.116105707000052 ], [ -122.06674323099999, 49.116099203000047 ], [ -122.067257027999986, 49.116118003000082 ], [ -122.067258209999977, 49.116104016000065 ], [ -122.068816246, 49.116161007000095 ], [ -122.068824548999885, 49.116062753000101 ], [ -122.069871061999919, 49.116101021000063 ], [ -122.06987140399994, 49.116096979000055 ], [ -122.070884628999949, 49.116134019000086 ] ], [ [ -122.065489809, 49.108537660000067 ], [ -122.065532471, 49.10803307 ], [ -122.065503857999943, 49.108032022000017 ], [ -122.065733390999952, 49.105317120000088 ], [ -122.063505267000011, 49.105235527000104 ], [ -122.063459593999966, 49.10577547100003 ], [ -122.0643479229999, 49.105808007000057 ], [ -122.064261427999966, 49.106830738000049 ], [ -122.06441078499995, 49.106836208000111 ], [ -122.064270658999973, 49.108493021000065 ], [ -122.065489809, 49.108537660000067 ] ], [ [ -122.058550762999957, 49.101523190000051 ], [ -122.058575087999941, 49.101235964000075 ], [ -122.05871605699997, 49.101241134000105 ], [ -122.05877420399996, 49.100554479000088 ], [ -122.058593668999961, 49.100547857000095 ], [ -122.058642271999958, 49.099973910000074 ], [ -122.058602705999945, 49.099972458000074 ], [ -122.058669985999984, 49.099177949000143 ], [ -122.058593954999935, 49.099175160000087 ], [ -122.058617616, 49.098895752000054 ], [ -122.055808064999951, 49.098792657000089 ], [ -122.055807621999989, 49.098797899000012 ], [ -122.054328816999927, 49.098743606000028 ], [ -122.054303873999942, 49.09903783500004 ], [ -122.049611233999954, 49.098865412000052 ], [ -122.049374386999986, 49.10165578200008 ], [ -122.049717960999899, 49.101668413000027 ], [ -122.049727429999962, 49.101556853000012 ], [ -122.05161024399996, 49.101626052000064 ], [ -122.05161515099995, 49.101568197000105 ], [ -122.052006369999972, 49.101582572000027 ], [ -122.052007434999922, 49.101570007000142 ], [ -122.053392566999918, 49.10162088900006 ], [ -122.053404484999973, 49.101480341000077 ], [ -122.056282231999887, 49.10158599500005 ], [ -122.056294568999959, 49.101440410000066 ], [ -122.058550762999957, 49.101523190000051 ] ], [ [ -122.048891187999942, 49.098248469000062 ], [ -122.048925333999989, 49.097846237000091 ], [ -122.048649263999977, 49.097836084000093 ], [ -122.04861511499999, 49.098238317000053 ], [ -122.048891187999942, 49.098248469000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124820417", "BldgCostT": "84346667", "sL_LossRatio": "0.853744245917077", "sL_AssetLoss": "494866", "sL_BldgLoss": "422489", "sL_StrLoss": "278006", "sL_NStrLoss": "144483", "sL_ContLoss": "72377", "geom_point": "0101000020E6100000915A6AB5AE825EC0A21C8A0AEE8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.031715611999971, 49.08746999800011 ], [ -122.031736485999915, 49.083184889000051 ], [ -122.034581918999947, 49.08254609700009 ], [ -122.035734712999954, 49.082469594000045 ], [ -122.035929071999973, 49.082430396000063 ], [ -122.036584700999924, 49.082298093000063 ], [ -122.037220001999955, 49.0821222880001 ], [ -122.037305443999941, 49.082106297000045 ], [ -122.03780964399999, 49.082011910000055 ], [ -122.037879611999941, 49.081998798000093 ], [ -122.039589900999971, 49.082016811000095 ], [ -122.045576308999955, 49.082073198000039 ], [ -122.049571882999942, 49.082077801000061 ], [ -122.05243350799999, 49.082083786000119 ], [ -122.0524335, 49.08209283200005 ], [ -122.0524349, 49.084377686000025 ], [ -122.052449284999966, 49.08528979200004 ], [ -122.052419191999917, 49.086889100000057 ], [ -122.05241919499997, 49.086890284000091 ], [ -122.052402736999937, 49.087030881000032 ], [ -122.052394544999913, 49.087101168000054 ], [ -122.052390269999961, 49.087137657000063 ], [ -122.052200799999952, 49.087171395000063 ], [ -122.049988099999922, 49.087664404000066 ], [ -122.049258501999986, 49.087789904000033 ], [ -122.048660912999964, 49.087858984000071 ], [ -122.048317014999924, 49.087875817000047 ], [ -122.048153749999955, 49.087883833000078 ], [ -122.048072298999955, 49.087887792000068 ], [ -122.045531702999938, 49.087888096 ], [ -122.042828987999926, 49.087889479000069 ], [ -122.041602760999965, 49.088380459000099 ], [ -122.039025685999945, 49.089319496000073 ], [ -122.038541499999965, 49.089316603000043 ], [ -122.030707104999976, 49.089316910000022 ], [ -122.031709924999959, 49.088638904000085 ], [ -122.031715611999971, 49.08746999800011 ] ], [ [ -122.039168402999948, 49.087116350000052 ], [ -122.039236929999959, 49.083564824000078 ], [ -122.036597764999939, 49.083467472000073 ], [ -122.036466570999934, 49.085008604000116 ], [ -122.035693011999982, 49.084980057000045 ], [ -122.035610130999942, 49.085953429000021 ], [ -122.03626531899999, 49.085977608000093 ], [ -122.03619439499991, 49.086810661000058 ], [ -122.037103042999945, 49.086844187000096 ], [ -122.037086411999937, 49.087039561000047 ], [ -122.039168402999948, 49.087116350000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107601751", "BldgCostT": "70110001", "sL_LossRatio": "0.809815897180973", "sL_AssetLoss": "456647", "sL_BldgLoss": "369800", "sL_StrLoss": "221505", "sL_NStrLoss": "148295", "sL_ContLoss": "86847", "geom_point": "0101000020E6100000A10C8FDC5E845EC031420D196E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.077939909999955, 49.099965076000117 ], [ -122.078016342999959, 49.099058039000042 ], [ -122.077943465999965, 49.099055380000017 ], [ -122.077976922999966, 49.098658327000088 ], [ -122.077923590999902, 49.098656380000172 ], [ -122.077963179999955, 49.098186559000041 ], [ -122.077944620999943, 49.098185881000106 ], [ -122.078050893999915, 49.096924630000082 ], [ -122.078036001999948, 49.096924087000055 ], [ -122.078109302999934, 49.096054116000118 ], [ -122.077957852999987, 49.096048587000013 ], [ -122.077960284999975, 49.096019723000062 ], [ -122.07698072099997, 49.095983961000101 ], [ -122.077006044999948, 49.095683485000073 ], [ -122.076936938999978, 49.095680962000067 ], [ -122.076938367999972, 49.0956640100001 ], [ -122.07270449899994, 49.095509335000088 ], [ -122.07269295399999, 49.096129069000042 ], [ -122.073103848999963, 49.096132369000038 ], [ -122.073089910999954, 49.096880952000092 ], [ -122.06982032399999, 49.09340726500006 ], [ -122.070688850999915, 49.09341426000006 ], [ -122.070683813999935, 49.093684089000064 ], [ -122.071094688999906, 49.093687396000071 ], [ -122.071089652999959, 49.093957225000096 ], [ -122.071500531999902, 49.093960530000061 ], [ -122.071490467, 49.094500188000104 ], [ -122.071901347999955, 49.094503492000051 ], [ -122.071896316999982, 49.094773320000094 ], [ -122.072307201999976, 49.094776623 ], [ -122.072297145, 49.09531628100008 ], [ -122.072512289999977, 49.095318010000042 ], [ -122.072653877999954, 49.093639864000089 ], [ -122.072470101999969, 49.093633146000123 ], [ -122.072622128999967, 49.091831226000068 ], [ -122.071082066999935, 49.09177491500003 ], [ -122.071094651999914, 49.091625787000062 ], [ -122.069483419999941, 49.091566850000056 ], [ -122.069478181999983, 49.091628893000042 ], [ -122.069078771999969, 49.091614280000087 ], [ -122.069075633999887, 49.091782046000105 ], [ -122.069486492999914, 49.091785359000028 ], [ -122.069466319999918, 49.092864673000093 ], [ -122.069308470999943, 49.092863400000148 ], [ -122.068616968999933, 49.092128628000104 ], [ -122.0672255, 49.090649983000034 ], [ -122.066656015999968, 49.090127886000118 ], [ -122.066032216999986, 49.089648802000056 ], [ -122.065434203, 49.089237389000083 ], [ -122.064214206999949, 49.088552598000042 ], [ -122.063251289, 49.088116100000093 ], [ -122.063059284999937, 49.088039961000092 ], [ -122.062612608999984, 49.087862804000061 ], [ -122.061650195999931, 49.08755069900009 ], [ -122.061463266999979, 49.087501313000054 ], [ -122.061480328999949, 49.087299635000029 ], [ -122.061467592999961, 49.087299169000062 ], [ -122.061664175999965, 49.084975299000035 ], [ -122.060574887999948, 49.084966438000045 ], [ -122.060569796, 49.085236265000091 ], [ -122.059748188999919, 49.085229575000021 ], [ -122.059743093999941, 49.085499404000061 ], [ -122.059332286999947, 49.0854960570001 ], [ -122.059327189999948, 49.085765885000058 ], [ -122.058916379999957, 49.085762536000104 ], [ -122.058911282999986, 49.086032364000125 ], [ -122.057678849999945, 49.086022309000036 ], [ -122.057668636999949, 49.08656196500003 ], [ -122.056847006999988, 49.08655525300005 ], [ -122.056842773999961, 49.086778759 ], [ -122.056627196999983, 49.086767711000029 ], [ -122.05540808399995, 49.086768895000027 ], [ -122.054706487999965, 49.086819407000057 ], [ -122.054420204999943, 49.086839996000066 ], [ -122.053292299999953, 49.086977001000072 ], [ -122.052390269999961, 49.087137657000063 ], [ -122.052394544999913, 49.087101168000054 ], [ -122.052402736999937, 49.087030881000032 ], [ -122.05241919499997, 49.086890284000091 ], [ -122.052419191999917, 49.086889100000057 ], [ -122.052449284999966, 49.08528979200004 ], [ -122.0524349, 49.084377686000025 ], [ -122.0524335, 49.08209283200005 ], [ -122.05243350799999, 49.082083786000119 ], [ -122.055140688999984, 49.082085904000095 ], [ -122.056578482999925, 49.082087294000054 ], [ -122.05708674600001, 49.0820876330001 ], [ -122.060828715999918, 49.082090111000042 ], [ -122.062884321999917, 49.082091410000068 ], [ -122.064959003999917, 49.08209079000008 ], [ -122.064961002999937, 49.083363093000109 ], [ -122.064966284999926, 49.084333262000037 ], [ -122.064971994999951, 49.085388589000033 ], [ -122.064967499999952, 49.087516302000019 ], [ -122.06497777, 49.088107192000066 ], [ -122.065329804999962, 49.088642093000018 ], [ -122.065592191999954, 49.08885909 ], [ -122.066072605999949, 49.089089492000078 ], [ -122.066232935999921, 49.089124915000056 ], [ -122.06670858699999, 49.08922998300006 ], [ -122.067152809999953, 49.089273304000052 ], [ -122.074703724999921, 49.08930823900009 ], [ -122.078168865999899, 49.089324077000065 ], [ -122.080416517999979, 49.089334301000086 ], [ -122.080409386999946, 49.092378806000092 ], [ -122.080400481999973, 49.094875938000079 ], [ -122.080397867, 49.095602676000084 ], [ -122.080397235999968, 49.095782591000066 ], [ -122.080390215999927, 49.097745557000032 ], [ -122.080382170999954, 49.100000348000094 ], [ -122.080382099999923, 49.100012336000113 ], [ -122.08038195200001, 49.100054184000044 ], [ -122.077939909999955, 49.099965076000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7874167", "BldgCostT": "5166667", "sL_LossRatio": "0.810531872772865", "sL_AssetLoss": "37885", "sL_BldgLoss": "30707", "sL_StrLoss": "21080", "sL_NStrLoss": "9627", "sL_ContLoss": "7178", "geom_point": "0101000020E610000092D5085806855EC0ED7A2FDFF68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.077394962999961, 49.101453740000075 ], [ -122.077093292999976, 49.101133339000043 ], [ -122.076009881999966, 49.099982659000027 ], [ -122.07546238299993, 49.099401129000057 ], [ -122.074701930999964, 49.098593368000095 ], [ -122.074702288999944, 49.098574012000071 ], [ -122.075935038999958, 49.09858388800005 ], [ -122.075925017999964, 49.099123545000104 ], [ -122.076335939999979, 49.099126834000074 ], [ -122.076330931999934, 49.099396662000103 ], [ -122.076741855999956, 49.099399950000134 ], [ -122.076731845000012, 49.099939607000053 ], [ -122.077142771999945, 49.099942894000044 ], [ -122.077132766, 49.100482551000049 ], [ -122.077543697999914, 49.100485835000065 ], [ -122.077538696999952, 49.100755664000125 ], [ -122.077949629999964, 49.100758947000088 ], [ -122.077939632999957, 49.101298604000121 ], [ -122.078117886999934, 49.101300029000086 ], [ -122.078213846999972, 49.100161231000051 ], [ -122.080381288999945, 49.100240316000033 ], [ -122.080380819999917, 49.100372207000127 ], [ -122.080379167999965, 49.100831014000057 ], [ -122.080377327999969, 49.101352860000119 ], [ -122.080375389999944, 49.101892168000077 ], [ -122.08034433100002, 49.102846732000131 ], [ -122.080277508999984, 49.103743002000037 ], [ -122.080273624999961, 49.103842774000071 ], [ -122.07955186399991, 49.103816445000064 ], [ -122.078497120999927, 49.102631226000099 ], [ -122.07846962899994, 49.102600338000087 ], [ -122.078397792999951, 49.102518789000108 ], [ -122.077638607000026, 49.10171252300006 ], [ -122.077394962999961, 49.101453740000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98707667", "BldgCostT": "67546667", "sL_LossRatio": "0.85957259455825", "sL_AssetLoss": "417917", "sL_BldgLoss": "359230", "sL_StrLoss": "235223", "sL_NStrLoss": "124007", "sL_ContLoss": "58687", "geom_point": "0101000020E610000021BA1415B9845EC0766506E0558A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.064967499999952, 49.087516302000019 ], [ -122.064971994999951, 49.085388589000033 ], [ -122.064966284999926, 49.084333262000037 ], [ -122.064961002999937, 49.083363093000109 ], [ -122.064959003999917, 49.08209079000008 ], [ -122.067643113999949, 49.08209090000004 ], [ -122.067645273999943, 49.07501005000011 ], [ -122.067646419999917, 49.071267699000053 ], [ -122.070719201999907, 49.071257888000048 ], [ -122.07070351499999, 49.071443823000067 ], [ -122.069215543999974, 49.071389366000055 ], [ -122.069207032999969, 49.072660662000025 ], [ -122.069246840999966, 49.072892553000081 ], [ -122.069428635999913, 49.072894018000085 ], [ -122.069376909999988, 49.075662897000065 ], [ -122.06938183299998, 49.076726662000063 ], [ -122.069391125, 49.076941766000118 ], [ -122.070585235999914, 49.076951387000086 ], [ -122.070590268999979, 49.076681558000139 ], [ -122.07100100599996, 49.076684864000043 ], [ -122.071021133999949, 49.075605548000091 ], [ -122.071431859999947, 49.075608853000077 ], [ -122.071436889999958, 49.075339023000062 ], [ -122.07266906299995, 49.075348930000047 ], [ -122.072679108999921, 49.074809270000067 ], [ -122.071857668999911, 49.074802668000103 ], [ -122.071862697999947, 49.074532838000039 ], [ -122.07104126199998, 49.074526229000099 ], [ -122.071056356999947, 49.073716741000084 ], [ -122.072288488999959, 49.073726651000065 ], [ -122.072290713999934, 49.07360713700011 ], [ -122.071498906999963, 49.073578174000055 ], [ -122.071694887999953, 49.071254754000051 ], [ -122.072617326999989, 49.07125178200004 ], [ -122.073196882999966, 49.071249902000034 ], [ -122.074287316999957, 49.071246443000099 ], [ -122.075136025999939, 49.071243752000022 ], [ -122.075465983999948, 49.07124269600007 ], [ -122.075591509999967, 49.071205722000059 ], [ -122.075732787000021, 49.071164091000071 ], [ -122.080383431999962, 49.06773280000003 ], [ -122.08043631699999, 49.074863993000093 ], [ -122.080453493999983, 49.08211101500013 ], [ -122.080472501999949, 49.088180510000036 ], [ -122.081089198999948, 49.089184796000112 ], [ -122.08109469199999, 49.089331110000039 ], [ -122.080812968999965, 49.089332432000063 ], [ -122.080416517999979, 49.089334301000086 ], [ -122.078168865999899, 49.089324077000065 ], [ -122.074703724999921, 49.08930823900009 ], [ -122.067152809999953, 49.089273304000052 ], [ -122.06670858699999, 49.08922998300006 ], [ -122.066232935999921, 49.089124915000056 ], [ -122.066072605999949, 49.089089492000078 ], [ -122.065592191999954, 49.08885909 ], [ -122.065329804999962, 49.088642093000018 ], [ -122.06497777, 49.088107192000066 ], [ -122.064967499999952, 49.087516302000019 ] ], [ [ -122.077000367999958, 49.086697964000159 ], [ -122.077033884999963, 49.086300184000052 ], [ -122.077001120999938, 49.086298987000077 ], [ -122.077079473999959, 49.085369089000096 ], [ -122.076895974999957, 49.085362387000032 ], [ -122.076940950999969, 49.084828612000074 ], [ -122.076601230999955, 49.084825894000033 ], [ -122.076586219999982, 49.085635382000078 ], [ -122.076175410999937, 49.085632094000069 ], [ -122.076170403999967, 49.085901923000101 ], [ -122.075759592999987, 49.08589863500012 ], [ -122.075754583999981, 49.086168464000139 ], [ -122.074593144999966, 49.08615915900009 ], [ -122.074555247999925, 49.086608641000048 ], [ -122.077000367999958, 49.086697964000159 ] ], [ [ -122.073003874999984, 49.079431309000043 ], [ -122.073009485999975, 49.079129841000032 ], [ -122.07259873199996, 49.079126542000068 ], [ -122.072603755999964, 49.07885671300005 ], [ -122.071782248999938, 49.078850109000015 ], [ -122.071787276999956, 49.078580279000022 ], [ -122.070144274999947, 49.078567054000054 ], [ -122.070149312999931, 49.078297226000061 ], [ -122.069662071999943, 49.078293300000013 ], [ -122.069450180999979, 49.080803626000012 ], [ -122.069280971999945, 49.080797434000083 ], [ -122.069277394, 49.080988895000075 ], [ -122.06975462199992, 49.080992743000124 ], [ -122.069853913999964, 49.07981637200006 ], [ -122.070416198999936, 49.079836946000079 ], [ -122.070417090999925, 49.079826384000036 ], [ -122.070599811999983, 49.079833070000113 ], [ -122.070641006999921, 49.079344888000023 ], [ -122.073003874999984, 49.079431309000043 ] ], [ [ -122.07665691399994, 49.078079600000081 ], [ -122.076844478999988, 49.075853261000098 ], [ -122.07682666, 49.075852610000034 ], [ -122.076855494999975, 49.075510339000104 ], [ -122.076583573999955, 49.075500405000106 ], [ -122.076593683999988, 49.075380396000099 ], [ -122.075544133999955, 49.075371993000047 ], [ -122.075534117999936, 49.075911654000073 ], [ -122.074712659999975, 49.075905071000101 ], [ -122.074707647999929, 49.076174900000105 ], [ -122.073886184999978, 49.07616831200005 ], [ -122.07387113499999, 49.076977801000105 ], [ -122.073049659999967, 49.076971206000067 ], [ -122.073044638999988, 49.0772410350001 ], [ -122.072633897999964, 49.077237736000022 ], [ -122.072623850999946, 49.077777395000069 ], [ -122.0734453399999, 49.077783993 ], [ -122.073440319999989, 49.078053822000079 ], [ -122.07665691399994, 49.078079600000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.859756097560976", "sL_AssetLoss": "5248", "sL_BldgLoss": "4512", "sL_StrLoss": "2960", "sL_NStrLoss": "1552", "sL_ContLoss": "736", "geom_point": "0101000020E6100000DD61B06E3E855EC0D4065021118D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.080357345999943, 49.103911609000122 ], [ -122.080358561999972, 49.103845872000072 ], [ -122.080273624999961, 49.103842774000071 ], [ -122.080277508999984, 49.103743002000037 ], [ -122.08034433100002, 49.102846732000131 ], [ -122.080375389999944, 49.101892168000077 ], [ -122.080377327999969, 49.101352860000119 ], [ -122.080379167999965, 49.100831014000057 ], [ -122.080380819999917, 49.100372207000127 ], [ -122.080381288999945, 49.100240316000033 ], [ -122.083676782999959, 49.100360475000045 ], [ -122.083376569999984, 49.103928025000137 ], [ -122.081511315999947, 49.103908094000133 ], [ -122.081345006999982, 49.103881279000099 ], [ -122.080357345999943, 49.103911609000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11052083", "BldgCostT": "7358333", "sL_LossRatio": "0.831288933323079", "sL_AssetLoss": "52012", "sL_BldgLoss": "43237", "sL_StrLoss": "28600", "sL_NStrLoss": "14637", "sL_ContLoss": "8775", "geom_point": "0101000020E6100000EA29CD412B865EC047929C235D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.092760996999957, 49.06522766500013 ], [ -122.09297666499999, 49.062656399000026 ], [ -122.092676354999981, 49.062645470000042 ], [ -122.092677234999954, 49.06263497200009 ], [ -122.090464277999956, 49.062554410000125 ], [ -122.09065379599997, 49.060296129000051 ], [ -122.095046479999937, 49.060269500000103 ], [ -122.095105029999928, 49.045854201000132 ], [ -122.09743969499999, 49.045853808000047 ], [ -122.097429823999917, 49.046399223000023 ], [ -122.097293799999974, 49.046398158000038 ], [ -122.09723904599997, 49.04705195800004 ], [ -122.097135017999932, 49.047048176000011 ], [ -122.097121116999915, 49.047214155000063 ], [ -122.098424364, 49.047261539000075 ], [ -122.098402601999979, 49.047521464000148 ], [ -122.098855564999951, 49.047537929000079 ], [ -122.098554525999972, 49.051133615000019 ], [ -122.098428447999964, 49.051129032000034 ], [ -122.098266219999957, 49.05306641500011 ], [ -122.097297801999957, 49.053031210000022 ], [ -122.097090289999983, 49.055508539000115 ], [ -122.09739421099999, 49.055519589 ], [ -122.097274462999962, 49.056949167000056 ], [ -122.097300002999972, 49.056950096000016 ], [ -122.09720190299997, 49.058121161000102 ], [ -122.101523429999929, 49.058278185000113 ], [ -122.101353913999944, 49.060303888000057 ], [ -122.101222526999976, 49.061873819000063 ], [ -122.098231501999933, 49.061765158000114 ], [ -122.098226917999938, 49.061819886000066 ], [ -122.09852105899995, 49.06183057600002 ], [ -122.098219902000011, 49.065426181000142 ], [ -122.095054469999951, 49.06531110300012 ], [ -122.092760996999957, 49.06522766500013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81005751", "BldgCostT": "51290001", "sL_LossRatio": "0.766750808429257", "sL_AssetLoss": "389026", "sL_BldgLoss": "298286", "sL_StrLoss": "166386", "sL_NStrLoss": "131900", "sL_ContLoss": "90740", "geom_point": "0101000020E61000001FB5364BD1855EC07D70CA1E998A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.091809128999955, 49.104017728000045 ], [ -122.091953987999901, 49.102292664000082 ], [ -122.091711368999981, 49.102283839000016 ], [ -122.091807796999916, 49.101135517000088 ], [ -122.091759040999975, 49.101133745000041 ], [ -122.091836334999954, 49.100213239000055 ], [ -122.091536690999931, 49.100202340000031 ], [ -122.091838588999948, 49.096606947000097 ], [ -122.091845424999946, 49.0966071960001 ], [ -122.09188944099999, 49.096082958000054 ], [ -122.091694151999903, 49.096075855000102 ], [ -122.091759227999916, 49.095300783000091 ], [ -122.09174480199998, 49.095300258000073 ], [ -122.091794303999976, 49.094710674000069 ], [ -122.091711436999958, 49.094707660000061 ], [ -122.09201328599994, 49.091112236000136 ], [ -122.093103379999945, 49.091151885000073 ], [ -122.09312904599993, 49.090846060000111 ], [ -122.088778133999966, 49.090687746000064 ], [ -122.088762524999964, 49.090873532000089 ], [ -122.08560179599999, 49.090758413000067 ], [ -122.085596692999943, 49.090819109000066 ], [ -122.084437058999981, 49.090776849000093 ], [ -122.084370385999989, 49.09156953600008 ], [ -122.083828555999929, 49.091549787000062 ], [ -122.08376459099999, 49.092310150000088 ], [ -122.085253429999952, 49.092364411000048 ], [ -122.084951050999933, 49.095959809000064 ], [ -122.084421737999946, 49.095940521000074 ], [ -122.08441243499999, 49.096051122000063 ], [ -122.083678072999987, 49.096024357000054 ], [ -122.083632474999916, 49.096566308000028 ], [ -122.083705346999949, 49.096568964 ], [ -122.083402822000011, 49.100164334000063 ], [ -122.08038195200001, 49.100054184000044 ], [ -122.080382099999923, 49.100012336000113 ], [ -122.080382170999954, 49.100000348000094 ], [ -122.080390215999927, 49.097745557000032 ], [ -122.080397235999968, 49.095782591000066 ], [ -122.080397867, 49.095602676000084 ], [ -122.080400481999973, 49.094875938000079 ], [ -122.080409386999946, 49.092378806000092 ], [ -122.080416517999979, 49.089334301000086 ], [ -122.080812968999965, 49.089332432000063 ], [ -122.08109469199999, 49.089331110000039 ], [ -122.081089198999948, 49.089184796000112 ], [ -122.080472501999949, 49.088180510000036 ], [ -122.080453493999983, 49.08211101500013 ], [ -122.08043631699999, 49.074863993000093 ], [ -122.080383431999962, 49.06773280000003 ], [ -122.080349695999985, 49.060357889000024 ], [ -122.083858197999959, 49.06033697099999 ], [ -122.083786100999959, 49.061194608000051 ], [ -122.083850754, 49.061196967000065 ], [ -122.083748839999942, 49.06240926500007 ], [ -122.083817530999951, 49.062411771000029 ], [ -122.083626514999963, 49.064683828000078 ], [ -122.084444449999964, 49.064713661000077 ], [ -122.084142188, 49.068309209000063 ], [ -122.083631301999944, 49.068290577000077 ], [ -122.083584194999943, 49.068850822000037 ], [ -122.082447109999961, 49.06880934200008 ], [ -122.082419514999955, 49.069137431000065 ], [ -122.083635655999927, 49.069181794000016 ], [ -122.083478123999924, 49.071055195000014 ], [ -122.083686569999912, 49.071062798000142 ], [ -122.083595769999974, 49.072142601000095 ], [ -122.083667037999959, 49.072145201000048 ], [ -122.083624248999968, 49.072654040000053 ], [ -122.083735566999977, 49.072658101000044 ], [ -122.08362314199999, 49.073995028000098 ], [ -122.083682850999935, 49.073997205000097 ], [ -122.083610137999955, 49.074861866000056 ], [ -122.083609280999909, 49.07487205900005 ], [ -122.083687404000017, 49.074874908 ], [ -122.083672312999965, 49.075054372000132 ], [ -122.084461563999952, 49.075083152000026 ], [ -122.084480218999943, 49.074861266000013 ], [ -122.084592162, 49.073529807000099 ], [ -122.085424098999937, 49.073560136000019 ], [ -122.08550087299993, 49.072646725000027 ], [ -122.090960614999929, 49.072845607000083 ], [ -122.090791807999935, 49.074856705000045 ], [ -122.090658804, 49.076441129000024 ], [ -122.089826811999941, 49.076410841000047 ], [ -122.089750115999905, 49.077324249000057 ], [ -122.085694393999972, 49.077176507000033 ], [ -122.085563822999973, 49.078729845000062 ], [ -122.083807845999971, 49.078665831000123 ], [ -122.083756342999976, 49.079278232000071 ], [ -122.084290355999954, 49.079297703000066 ], [ -122.083987987999976, 49.082893170000013 ], [ -122.083943955999985, 49.082891565000075 ], [ -122.083811468999983, 49.084466771000031 ], [ -122.083792990999896, 49.08446609700011 ], [ -122.083712582999965, 49.085422060000035 ], [ -122.083722856999927, 49.085422434000066 ], [ -122.083578454999966, 49.087139103000013 ], [ -122.083598045999977, 49.087139817000057 ], [ -122.08360315199991, 49.087079122000063 ], [ -122.087506213999959, 49.087221349000039 ], [ -122.08752249399997, 49.087027617000039 ], [ -122.09171759199991, 49.087180326000066 ], [ -122.091763995999941, 49.086627536000059 ], [ -122.090566197999948, 49.08658395000009 ], [ -122.09086808099994, 49.082988485000079 ], [ -122.091394689999973, 49.083007648000091 ], [ -122.0914254569999, 49.082641125000038 ], [ -122.09134457, 49.082638181000114 ], [ -122.091646369, 49.079042692000044 ], [ -122.092975461999941, 49.079091049000048 ], [ -122.093201552, 49.076396221000081 ], [ -122.095085684999916, 49.07646474400012 ], [ -122.096264662999985, 49.076507605000131 ], [ -122.096266649999961, 49.076483892000056 ], [ -122.095085447999921, 49.076440951000116 ], [ -122.091114454999968, 49.076296492000033 ], [ -122.091235329999918, 49.074856370000049 ], [ -122.091416229999965, 49.072700967000038 ], [ -122.091788918999939, 49.072714532000091 ], [ -122.09194501099995, 49.070854375000124 ], [ -122.09268887799999, 49.070881444000058 ], [ -122.092711795999932, 49.07060826 ], [ -122.092703262999947, 49.070607949000085 ], [ -122.092849766999947, 49.068861547000054 ], [ -122.092773073999965, 49.068858756000054 ], [ -122.093074672999961, 49.065263185000056 ], [ -122.095054507999947, 49.065335209000054 ], [ -122.098533583999981, 49.065461685000109 ], [ -122.098387302, 49.067208105000105 ], [ -122.098463992999925, 49.067210891000073 ], [ -122.098437080999972, 49.067532183000033 ], [ -122.098445613999942, 49.06753249300008 ], [ -122.09814441499995, 49.071128066000028 ], [ -122.09740053900002, 49.071101034000073 ], [ -122.097337679999939, 49.071851196000075 ], [ -122.097432217999938, 49.071854632000068 ], [ -122.097402673999909, 49.072207211000055 ], [ -122.098530801999942, 49.072248203000115 ], [ -122.09850219399999, 49.072589705000091 ], [ -122.102998971999938, 49.072752984000054 ], [ -122.102988001999933, 49.072884074000051 ], [ -122.10485021699999, 49.072951635000024 ], [ -122.10478136499998, 49.073774848000035 ], [ -122.104803167999975, 49.073775638000036 ], [ -122.104710896999933, 49.07487882300007 ], [ -122.104502417999953, 49.077371195000062 ], [ -122.101677792999936, 49.077268705000051 ], [ -122.10167639899997, 49.077285362000062 ], [ -122.099563886999974, 49.077208662000082 ], [ -122.099302070999954, 49.080334311000065 ], [ -122.09845142799999, 49.08030341400012 ], [ -122.098397051999939, 49.080952381000024 ], [ -122.098687236000018, 49.080962921000015 ], [ -122.098506328999989, 49.083122040000035 ], [ -122.099034357999983, 49.083141217000076 ], [ -122.098733102999958, 49.086736705000071 ], [ -122.098507718999926, 49.086728520000086 ], [ -122.09840785499992, 49.087920209000053 ], [ -122.097137553999971, 49.087874066000047 ], [ -122.097131603999969, 49.087945040000086 ], [ -122.095199729999933, 49.087874835000044 ], [ -122.094331155999981, 49.08784326000012 ], [ -122.094318341999923, 49.087996003000057 ], [ -122.095201262000018, 49.088028100000081 ], [ -122.098832674999983, 49.088160037000108 ], [ -122.098829428999977, 49.088198766000112 ], [ -122.099307460999967, 49.088216125000031 ], [ -122.09913408199999, 49.09028539400007 ], [ -122.099006193999941, 49.091811584000055 ], [ -122.097438011999941, 49.091754632000047 ], [ -122.097425793999918, 49.091900372000083 ], [ -122.097508654999956, 49.091903382000105 ], [ -122.097479487999976, 49.09225130700009 ], [ -122.098650937999963, 49.092293852000054 ], [ -122.098604656999939, 49.092846078000015 ], [ -122.098796666999959, 49.092853049000034 ], [ -122.098753352999935, 49.093369878 ], [ -122.098870995999988, 49.093374149000041 ], [ -122.098569660999956, 49.09696957900006 ], [ -122.098518563999974, 49.096967724000095 ], [ -122.09837435799993, 49.098688118000105 ], [ -122.098700731999941, 49.098699968000055 ], [ -122.098399350999927, 49.102295368000107 ], [ -122.097436583999936, 49.102260409000088 ], [ -122.097406190999934, 49.102622873000058 ], [ -122.097610914999962, 49.102630308000073 ], [ -122.097489895999942, 49.104073574000083 ], [ -122.095189762999922, 49.10405345800006 ], [ -122.095090495999955, 49.104052455000087 ], [ -122.091809128999955, 49.104017728000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.848826291079812", "sL_AssetLoss": "5325", "sL_BldgLoss": "4520", "sL_StrLoss": "3060", "sL_NStrLoss": "1460", "sL_ContLoss": "805", "geom_point": "0101000020E610000050608DF585865EC01394CB142D8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.099322103999938, 49.101667142000046 ], [ -122.104785305999926, 49.10186531300014 ], [ -122.104595306999954, 49.104135385000077 ], [ -122.102432727999926, 49.104116645000083 ], [ -122.102405321999953, 49.104116396000116 ], [ -122.099119217999942, 49.104087793000041 ], [ -122.099322103999938, 49.101667142000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18202418", "BldgCostT": "12081668", "sL_LossRatio": "0.831395705709761", "sL_AssetLoss": "81457", "sL_BldgLoss": "67723", "sL_StrLoss": "40420", "sL_NStrLoss": "27303", "sL_ContLoss": "13734", "geom_point": "0101000020E6100000710D6424D8865EC04428BEF36E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.106193353999984, 49.104149205000041 ], [ -122.106281884999987, 49.103091058000125 ], [ -122.106245147999957, 49.103089727000103 ], [ -122.106416737999936, 49.101038691000049 ], [ -122.106252275999935, 49.101032732000128 ], [ -122.106510089, 49.097950834000102 ], [ -122.106220466999957, 49.097940340000086 ], [ -122.1063460399999, 49.096439195000087 ], [ -122.105878048999955, 49.096422235000077 ], [ -122.10616884400001, 49.092945982000067 ], [ -122.105936064999952, 49.092937545000076 ], [ -122.105974664999934, 49.092476096000098 ], [ -122.105931893999951, 49.092474546000055 ], [ -122.105982202999925, 49.091873127000085 ], [ -122.104626927999945, 49.091823996000059 ], [ -122.104625124, 49.091845549 ], [ -122.099163096999959, 49.09164736700005 ], [ -122.099277161999922, 49.090286072000048 ], [ -122.099464351999984, 49.088051906000018 ], [ -122.100496954999954, 49.088089394000093 ], [ -122.100500309999944, 49.088049330000096 ], [ -122.103546919999957, 49.088159878000042 ], [ -122.103563989999969, 49.087955904000147 ], [ -122.107761196, 49.088108059 ], [ -122.107785556999886, 49.087816662000129 ], [ -122.10620729499999, 49.08775946700009 ], [ -122.106500605999926, 49.084252145000043 ], [ -122.106181412999916, 49.084240574000063 ], [ -122.106482076999896, 49.080645052000101 ], [ -122.107648443, 49.080687327000078 ], [ -122.107652605999974, 49.080637513000084 ], [ -122.105949429999896, 49.080575778000053 ], [ -122.106174448999951, 49.077884863000101 ], [ -122.106133802999977, 49.077883390000075 ], [ -122.10638434, 49.074886957000061 ], [ -122.106434430999926, 49.074287832000039 ], [ -122.107563596999952, 49.074328765000047 ], [ -122.107589197999985, 49.074022460000087 ], [ -122.109697946999916, 49.07409887100011 ], [ -122.10970310099999, 49.074902986000069 ], [ -122.109703036999989, 49.074937318000096 ], [ -122.10970211899992, 49.075478179000051 ], [ -122.109696076999938, 49.078969758000063 ], [ -122.109689565999986, 49.082736723000032 ], [ -122.109688443999943, 49.083366436000034 ], [ -122.10968762, 49.083852245000038 ], [ -122.109676399999941, 49.090334796000057 ], [ -122.109676629999925, 49.090437104000024 ], [ -122.10969747199999, 49.099999715000109 ], [ -122.109700689999968, 49.101483695000084 ], [ -122.10970131899991, 49.103903758000122 ], [ -122.109701356999935, 49.103984600000075 ], [ -122.109701382999901, 49.104179460000083 ], [ -122.106193353999984, 49.104149205000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978334", "BldgCostT": "3433334", "sL_LossRatio": "0.874129280529982", "sL_AssetLoss": "20529", "sL_BldgLoss": "17945", "sL_StrLoss": "11740", "sL_NStrLoss": "6205", "sL_ContLoss": "2584", "geom_point": "0101000020E61000007B8F0ACEE6865EC056B3B55B9E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.10605634299999, 49.057775841000058 ], [ -122.106154593999975, 49.056600276000076 ], [ -122.106037913999955, 49.056596044000067 ], [ -122.10608591, 49.056021775000069 ], [ -122.106076851999987, 49.056021446000031 ], [ -122.106340245999917, 49.052869691000041 ], [ -122.106226351999979, 49.05286555900004 ], [ -122.106414681999965, 49.050611814000021 ], [ -122.106104486, 49.050600561000103 ], [ -122.106267554999988, 49.048649100000041 ], [ -122.105519285999932, 49.048621951000058 ], [ -122.10575077, 49.045851998000039 ], [ -122.10609659899994, 49.045851908000081 ], [ -122.109613481999986, 49.045850930000071 ], [ -122.109613476999982, 49.045940121000072 ], [ -122.109613452999952, 49.045979668000037 ], [ -122.109610567999965, 49.057904705000034 ], [ -122.10605634299999, 49.057775841000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.86555795353561", "sL_AssetLoss": "7877", "sL_BldgLoss": "6818", "sL_StrLoss": "4420", "sL_NStrLoss": "2398", "sL_ContLoss": "1059", "geom_point": "0101000020E61000001D1BE4A298855EC09D9DEB7F298D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.084348924999986, 49.102405736000016 ], [ -122.084430922999971, 49.101431084000076 ], [ -122.089894033999926, 49.101630011000111 ], [ -122.089817504999957, 49.102540921000028 ], [ -122.091297842999936, 49.102594776000089 ], [ -122.091178893999967, 49.104011047000036 ], [ -122.084006775999924, 49.103934752000072 ], [ -122.084136080999926, 49.102397980000021 ], [ -122.084348924999986, 49.102405736000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.851203142903912", "sL_AssetLoss": "6109", "sL_BldgLoss": "5200", "sL_StrLoss": "3120", "sL_NStrLoss": "2080", "sL_ContLoss": "909", "geom_point": "0101000020E61000008FB0034286865EC0F335B2C802864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.099176333999978, 49.045853483000016 ], [ -122.104907786999931, 49.045852211000096 ], [ -122.104786866999973, 49.04729887600007 ], [ -122.104529524, 49.047289536000079 ], [ -122.104454401999973, 49.048188182000082 ], [ -122.098997488999913, 49.047989978 ], [ -122.099176333999978, 49.045853483000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.850306278713629", "sL_AssetLoss": "2612", "sL_BldgLoss": "2221", "sL_StrLoss": "1510", "sL_NStrLoss": "711", "sL_ContLoss": "391", "geom_point": "0101000020E6100000402112F0F1865EC0D0ECBAB7A2884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.10753146699993, 49.065584034000025 ], [ -122.109643959999971, 49.065660596 ], [ -122.109666223, 49.069142738000025 ], [ -122.109667023999947, 49.069267928000016 ], [ -122.107230980999958, 49.069179642000094 ], [ -122.10753146699993, 49.065584034000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.843365997822367", "sL_AssetLoss": "6429", "sL_BldgLoss": "5422", "sL_StrLoss": "3360", "sL_NStrLoss": "2062", "sL_ContLoss": "1007", "geom_point": "0101000020E6100000EA25A524148B5EC0D2210DFA14864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.171859207999915, 49.046193724000027 ], [ -122.177602303999947, 49.04619954200006 ], [ -122.17748214099997, 49.047664530000077 ], [ -122.175538880999937, 49.047595304000083 ], [ -122.175425930999921, 49.048971576000064 ], [ -122.174862460999947, 49.048951496000022 ], [ -122.174847416999938, 49.049134789000085 ], [ -122.169390094999954, 49.048940161000061 ], [ -122.16961603699994, 49.046191367000127 ], [ -122.171859207999915, 49.046193724000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.855557576860105", "sL_AssetLoss": "5497", "sL_BldgLoss": "4703", "sL_StrLoss": "3020", "sL_NStrLoss": "1683", "sL_ContLoss": "794", "geom_point": "0101000020E6100000EA428BF05F875EC0F7AE626D638B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115700106999896, 49.091547310000131 ], [ -122.11570122399999, 49.091533923000078 ], [ -122.11511968899994, 49.091512896000069 ], [ -122.11519762099999, 49.090579007000038 ], [ -122.11518157399999, 49.090578427000061 ], [ -122.113282783999949, 49.090509749000027 ], [ -122.113582940999947, 49.086914242000041 ], [ -122.117203552999939, 49.087045168000039 ], [ -122.116826997999979, 49.08896231000012 ], [ -122.116784657999958, 49.089476258000097 ], [ -122.116687719999959, 49.090652901000055 ], [ -122.116441681, 49.091352094000058 ], [ -122.11635021799998, 49.09157081300004 ], [ -122.115700106999896, 49.091547310000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.843945469125902", "sL_AssetLoss": "6235", "sL_BldgLoss": "5262", "sL_StrLoss": "3280", "sL_NStrLoss": "1982", "sL_ContLoss": "973", "geom_point": "0101000020E61000007AF51A5029895EC056574FF7CB874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.140783678999981, 49.059015312000078 ], [ -122.146242059999921, 49.059211390000023 ], [ -122.146127466999971, 49.060596664000172 ], [ -122.145944598999918, 49.062807143000107 ], [ -122.145511001999949, 49.062791576000066 ], [ -122.145509579999938, 49.06280875300012 ], [ -122.14005078199996, 49.062612639000101 ], [ -122.140220686999953, 49.060562005000079 ], [ -122.140348695999947, 49.059016901000064 ], [ -122.140782255999966, 49.059032488000071 ], [ -122.140783678999981, 49.059015312000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.840090728664587", "sL_AssetLoss": "3527", "sL_BldgLoss": "2963", "sL_StrLoss": "1654", "sL_NStrLoss": "1309", "sL_ContLoss": "564", "geom_point": "0101000020E61000002836932D9A855EC07E5636FF718D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.084006775999924, 49.103934752000072 ], [ -122.091178893999967, 49.104011047000036 ], [ -122.090995863999979, 49.106190134000059 ], [ -122.08930255199999, 49.10612852900006 ], [ -122.089297194999915, 49.106192274000122 ], [ -122.083833551999945, 49.105993319000049 ], [ -122.084006775999924, 49.103934752000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.872834500552893", "sL_AssetLoss": "2713", "sL_BldgLoss": "2368", "sL_StrLoss": "1500", "sL_NStrLoss": "868", "sL_ContLoss": "345", "geom_point": "0101000020E6100000962A49850E865EC0483D3C32738D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.091845741999975, 49.106027133000119 ], [ -122.091913020999954, 49.105225978000064 ], [ -122.091708286999975, 49.105218532000031 ], [ -122.091809128999955, 49.104017728000045 ], [ -122.095090495999955, 49.104052455000087 ], [ -122.095189762999922, 49.10405345800006 ], [ -122.097489895999942, 49.104073574000083 ], [ -122.09730942399996, 49.106225683000062 ], [ -122.09519482499995, 49.106148872000098 ], [ -122.091845741999975, 49.106027133000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.859864672364672", "sL_AssetLoss": "5616", "sL_BldgLoss": "4829", "sL_StrLoss": "3140", "sL_NStrLoss": "1689", "sL_ContLoss": "787", "geom_point": "0101000020E6100000F01CE3EDF5885EC09C3FF9FD93864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.139291435999937, 49.049562252000094 ], [ -122.142887893999927, 49.049691555000067 ], [ -122.142590235999975, 49.053287351000094 ], [ -122.139306126999941, 49.053169284000049 ], [ -122.13713256399997, 49.053091086000052 ], [ -122.137430641999956, 49.049495304000054 ], [ -122.139291435999937, 49.049562252000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.844828746383151", "sL_AssetLoss": "14861", "sL_BldgLoss": "12555", "sL_StrLoss": "7670", "sL_NStrLoss": "4885", "sL_ContLoss": "2306", "geom_point": "0101000020E6100000AB230D8F39875EC0837A4C075F864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.109610567999965, 49.057904705000034 ], [ -122.109613452999952, 49.045979668000037 ], [ -122.109613476999982, 49.045940121000072 ], [ -122.109613481999986, 49.045850930000071 ], [ -122.117222471999952, 49.045839752000084 ], [ -122.117331945999979, 49.045839570000069 ], [ -122.117455055999969, 49.045839396000083 ], [ -122.120872121999966, 49.045834203 ], [ -122.120748017999944, 49.047325093000097 ], [ -122.118747146, 49.047252753000073 ], [ -122.118678973999963, 49.048071241000116 ], [ -122.116750588999935, 49.048001486000061 ], [ -122.116742696999964, 49.048096187000091 ], [ -122.11180214299999, 49.047917317000021 ], [ -122.11167371699996, 49.049456445000089 ], [ -122.111983904999988, 49.049467682000042 ], [ -122.111720910999964, 49.052619469000057 ], [ -122.111834806999937, 49.052623594000032 ], [ -122.111786884999958, 49.053197869 ], [ -122.111795942999947, 49.053198197000022 ], [ -122.111697839999962, 49.054373773000066 ], [ -122.111814514999978, 49.054377999000017 ], [ -122.111514430999989, 49.057973684000025 ], [ -122.109610567999965, 49.057904705000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.856071689831748", "sL_AssetLoss": "5468", "sL_BldgLoss": "4681", "sL_StrLoss": "3040", "sL_NStrLoss": "1641", "sL_ContLoss": "787", "geom_point": "0101000020E6100000F13368C791875EC08FECDF2FC5874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115370893999952, 49.062424478000139 ], [ -122.115540398999912, 49.060391697000071 ], [ -122.115670709999947, 49.058828808000065 ], [ -122.121128962999947, 49.05902616300007 ], [ -122.12101195699999, 49.060431451000049 ], [ -122.120829567999948, 49.062621846000098 ], [ -122.117472163999977, 49.062500487000094 ], [ -122.117467903999966, 49.060532290000069 ], [ -122.117285489000011, 49.060531102 ], [ -122.117236199999937, 49.060530789 ], [ -122.117214091999969, 49.062491154000021 ], [ -122.115370893999952, 49.062424478000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46574667", "BldgCostT": "29381667", "sL_LossRatio": "0.745355246184517", "sL_AssetLoss": "238764", "sL_BldgLoss": "177964", "sL_StrLoss": "108755", "sL_NStrLoss": "69209", "sL_ContLoss": "60800", "geom_point": "0101000020E6100000E5F506E3D0895EC000BBE4C9FF884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.13831965199995, 49.079686403000075 ], [ -122.138362208999965, 49.077226378000077 ], [ -122.137031372, 49.07717851899999 ], [ -122.137209946999974, 49.075025656000022 ], [ -122.137327595999949, 49.073607184000096 ], [ -122.135954856999945, 49.073557800000074 ], [ -122.136157413999953, 49.071116288000027 ], [ -122.134356253999925, 49.071051464000128 ], [ -122.134654659999967, 49.067455790000032 ], [ -122.135746092999938, 49.067495074000092 ], [ -122.135812455999925, 49.066695116000048 ], [ -122.139344162999933, 49.066822157000047 ], [ -122.141271714999959, 49.066891444000078 ], [ -122.141003167999912, 49.070132941000061 ], [ -122.141712799999937, 49.070158440000057 ], [ -122.141416933999892, 49.073729807000106 ], [ -122.142789683000018, 49.073779121000086 ], [ -122.142726566999954, 49.074541205000045 ], [ -122.143971959999959, 49.074550448000068 ], [ -122.144238456999958, 49.071331531000034 ], [ -122.149698293999933, 49.071527430000074 ], [ -122.149589186999918, 49.072847201000108 ], [ -122.149939126999953, 49.072859748000056 ], [ -122.14994176, 49.072705481000057 ], [ -122.150167344999943, 49.072707143000052 ], [ -122.149825116, 49.072694874000071 ], [ -122.150122341, 49.069099166000029 ], [ -122.155339644999984, 49.069286092000056 ], [ -122.155340480999939, 49.069236818000043 ], [ -122.155751165, 49.069239823000146 ], [ -122.155755737, 49.068969987000031 ], [ -122.156166416999937, 49.068972990000098 ], [ -122.156170987999957, 49.068703153000072 ], [ -122.156279681999962, 49.068703948000042 ], [ -122.156365165999958, 49.067668012000055 ], [ -122.157266108, 49.067700257000176 ], [ -122.157278236999957, 49.067553234000094 ], [ -122.158653950999977, 49.067602457000163 ], [ -122.158656807999975, 49.067433201000064 ], [ -122.15630558299992, 49.067349062000069 ], [ -122.156602273999908, 49.06375330600013 ], [ -122.157641853999948, 49.063790515000051 ], [ -122.157718503999931, 49.062861215000027 ], [ -122.157440837999971, 49.062851278000039 ], [ -122.157435170999975, 49.062919967000049 ], [ -122.156219815999975, 49.062876463000059 ], [ -122.156216321999977, 49.062918796000055 ], [ -122.15075746499997, 49.062723225000099 ], [ -122.150930863999989, 49.060624610000062 ], [ -122.151054554999945, 49.059127459000102 ], [ -122.151802274999952, 49.059154264000128 ], [ -122.152005050999918, 49.056699175000055 ], [ -122.157463206999964, 49.056894684000071 ], [ -122.157330524999978, 49.058503426000044 ], [ -122.157513802999958, 49.058509986000033 ], [ -122.157509264999959, 49.058565016000067 ], [ -122.158647668999961, 49.058605756000041 ], [ -122.15859157700001, 49.059286060000112 ], [ -122.159502081999946, 49.059318635000054 ], [ -122.159390408999926, 49.060673289000128 ], [ -122.159374131999968, 49.060870722000054 ], [ -122.161134019999935, 49.060933664000068 ], [ -122.162919307999957, 49.060997485000058 ], [ -122.162952889999957, 49.060589750000126 ], [ -122.168411546999948, 49.06078470100006 ], [ -122.168352296999899, 49.061505098000104 ], [ -122.168612937999967, 49.061506975000107 ], [ -122.168617438999945, 49.061237138000074 ], [ -122.16902805799999, 49.061240095000137 ], [ -122.16903255699998, 49.06097025800009 ], [ -122.169420211999977, 49.060973049000026 ], [ -122.16971469299996, 49.057391303000074 ], [ -122.174736562999968, 49.057570361000138 ], [ -122.174781606999915, 49.057021723000041 ], [ -122.175678225999931, 49.057053668000094 ], [ -122.175872291999951, 49.054689242000038 ], [ -122.178169414, 49.054771050000049 ], [ -122.17817291399993, 49.054558836000048 ], [ -122.178583478999883, 49.054561759000066 ], [ -122.178587923999956, 49.054291920000068 ], [ -122.178998488, 49.054294843000044 ], [ -122.17900737399998, 49.05375516600008 ], [ -122.179764266999896, 49.053760548000085 ], [ -122.179311360000014, 49.054488431000031 ], [ -122.179282746999931, 49.054534404000087 ], [ -122.17896697899999, 49.055041839000054 ], [ -122.178295460999962, 49.056120962000122 ], [ -122.177980772999959, 49.056536698000045 ], [ -122.177690704999947, 49.056919872000023 ], [ -122.17778604499992, 49.057075645000104 ], [ -122.177971450999962, 49.057201266000057 ], [ -122.178722674999975, 49.056969241000026 ], [ -122.179618760999972, 49.056566482000079 ], [ -122.180123182999935, 49.056339750000056 ], [ -122.180173264999922, 49.056317241000052 ], [ -122.180258192999986, 49.056426305000095 ], [ -122.180684640999928, 49.056840496000085 ], [ -122.181107207999958, 49.057250908000142 ], [ -122.181153101999911, 49.05766389700004 ], [ -122.180987084999984, 49.057851899000056 ], [ -122.180216916999896, 49.058116801000025 ], [ -122.1798014929999, 49.058365995000031 ], [ -122.17921679399997, 49.058918603000102 ], [ -122.178914310999943, 49.059051099000108 ], [ -122.175287383999944, 49.05982579500013 ], [ -122.173980813999961, 49.060177607000107 ], [ -122.173317191999928, 49.060559291000075 ], [ -122.172720181999964, 49.061103394000085 ], [ -122.17196614699999, 49.06291310800006 ], [ -122.171332728999985, 49.064433215000108 ], [ -122.171349607999943, 49.064227855000098 ], [ -122.170777603999952, 49.064207457000123 ], [ -122.170842980999907, 49.063412106000094 ], [ -122.169402699999949, 49.063401749000086 ], [ -122.169398201999968, 49.063671586000062 ], [ -122.168987563999949, 49.063668629000091 ], [ -122.168983063999974, 49.063938467000114 ], [ -122.168161782999988, 49.063932550000118 ], [ -122.168157279999946, 49.064202387000087 ], [ -122.168130452999989, 49.064202194000096 ], [ -122.168115785999959, 49.064380506000063 ], [ -122.167743833999978, 49.064367231000055 ], [ -122.167742129999922, 49.064469264000124 ], [ -122.16733148499992, 49.064466301000067 ], [ -122.167326975999941, 49.064736139000068 ], [ -122.166916327999942, 49.064733175000129 ], [ -122.166911816999956, 49.065003012000027 ], [ -122.166501167999911, 49.065000047000076 ], [ -122.166496654999946, 49.06526988400006 ], [ -122.166086002999975, 49.065266918000056 ], [ -122.166081486999957, 49.065536755000025 ], [ -122.16567083399994, 49.065533787000035 ], [ -122.165666315999886, 49.065803623000065 ], [ -122.165255659999929, 49.065800654000043 ], [ -122.1652511399999, 49.066070491000083 ], [ -122.164840482999963, 49.066067520000026 ], [ -122.164835959999948, 49.066337356000147 ], [ -122.164425299999948, 49.066334384000093 ], [ -122.164420774999911, 49.066604221000098 ], [ -122.164010112999961, 49.066601247000094 ], [ -122.164005585999945, 49.066871083000073 ], [ -122.163594921999945, 49.066868108000094 ], [ -122.163590391999961, 49.067137945000098 ], [ -122.163179724999964, 49.067134967000136 ], [ -122.163175193999962, 49.067404804000084 ], [ -122.162764524999929, 49.067401825000019 ], [ -122.162759991999977, 49.067671662000144 ], [ -122.162349319999947, 49.067668682000026 ], [ -122.162348213, 49.06773455200009 ], [ -122.162737685999915, 49.067748471000144 ], [ -122.16256819499992, 49.069805775000106 ], [ -122.164249259999949, 49.069865836000083 ], [ -122.164122160999909, 49.071409135000053 ], [ -122.164407750999928, 49.071419336000105 ], [ -122.164384239999933, 49.07170482099999 ], [ -122.164703656999905, 49.071716229000081 ], [ -122.164610432999922, 49.072848319000038 ], [ -122.165328092999914, 49.072873948000037 ], [ -122.165338920999886, 49.072742443000053 ], [ -122.166915876999937, 49.072798740000067 ], [ -122.166869798000022, 49.072845994000019 ], [ -122.165251197, 49.073814413000086 ], [ -122.163152575999959, 49.075246401000115 ], [ -122.162107705999986, 49.075959301000069 ], [ -122.159455571999928, 49.077575627000101 ], [ -122.157796108999889, 49.077516275000058 ], [ -122.15799242099996, 49.075136762000071 ], [ -122.15809275, 49.073920572000077 ], [ -122.158723622999929, 49.073943139000072 ], [ -122.158773915999944, 49.073333357000074 ], [ -122.157407556999942, 49.073284476000062 ], [ -122.157432833999962, 49.072978104000065 ], [ -122.156495243000023, 49.072944552000109 ], [ -122.156632280999972, 49.071283927000124 ], [ -122.15653808399999, 49.071280555000072 ], [ -122.156535987999945, 49.071404515000047 ], [ -122.156125285999934, 49.071401513000119 ], [ -122.156120713999925, 49.071671348000038 ], [ -122.155710012, 49.071668345000099 ], [ -122.155705439, 49.071938180000146 ], [ -122.15536395399999, 49.071935682000074 ], [ -122.155285134999986, 49.072890489000123 ], [ -122.154046997999927, 49.072846155000022 ], [ -122.15404429099999, 49.073005494000093 ], [ -122.153996919999955, 49.07300514700006 ], [ -122.154925396, 49.073038394000051 ], [ -122.15487270399997, 49.073676620000107 ], [ -122.157677940999932, 49.073777023000055 ], [ -122.157565963999971, 49.075134258000062 ], [ -122.157561521000034, 49.075188106000098 ], [ -122.157819122999953, 49.075197323000026 ], [ -122.157522453999889, 49.078793018000084 ], [ -122.152061732999968, 49.078597519000098 ], [ -122.152165503999981, 49.077341641000018 ], [ -122.151960524999964, 49.077334298000068 ], [ -122.151942258999952, 49.077555355000108 ], [ -122.146575869999978, 49.077362951000048 ], [ -122.146572866, 49.077538266000069 ], [ -122.146162115999942, 49.077535228000031 ], [ -122.14615912, 49.077709987000055 ], [ -122.14814673599993, 49.077781288000054 ], [ -122.147849302999973, 49.081376943000024 ], [ -122.143560894999936, 49.081223059000138 ], [ -122.143378721999966, 49.083422627000125 ], [ -122.143300584999906, 49.083471693000085 ], [ -122.140909959999988, 49.083385832000026 ], [ -122.140841068999976, 49.084217034000091 ], [ -122.140767287999935, 49.084231091000085 ], [ -122.139383805999941, 49.084356407000058 ], [ -122.138054682999964, 49.084327901000051 ], [ -122.137337795999954, 49.084557190000076 ], [ -122.136798718999955, 49.084930397000058 ], [ -122.136559301999966, 49.085289294000063 ], [ -122.13660889099998, 49.085549891000014 ], [ -122.136886692999909, 49.086118199000083 ], [ -122.137349861999951, 49.086663286000032 ], [ -122.132724739999958, 49.08649688 ], [ -122.132842310999962, 49.085081372000111 ], [ -122.132862484, 49.084838488000067 ], [ -122.132945641999953, 49.083837238000065 ], [ -122.133023371999968, 49.082901296000031 ], [ -122.134395659999967, 49.082950690000068 ], [ -122.135465396999962, 49.082989183000038 ], [ -122.135525947999952, 49.082259590000042 ], [ -122.135574435999914, 49.081675354000076 ], [ -122.135820065999894, 49.081684191000143 ], [ -122.135827834999972, 49.081236483000069 ], [ -122.13623861499994, 49.081239557000096 ], [ -122.136243293999925, 49.080969724000106 ], [ -122.136654071999914, 49.080972797000086 ], [ -122.136658750999956, 49.080702962000096 ], [ -122.137069525999934, 49.080706035000091 ], [ -122.137074199999944, 49.080436201000062 ], [ -122.137484972999985, 49.08043927100006 ], [ -122.13748964699991, 49.080169437000052 ], [ -122.137900417999944, 49.080172506000039 ], [ -122.137905088, 49.079902672000109 ], [ -122.138193002999913, 49.079904821000071 ], [ -122.138211439999935, 49.079682512000069 ], [ -122.13831965199995, 49.079686403000075 ] ], [ [ -122.142049967999924, 49.07777460300008 ], [ -122.14205461399996, 49.077504769000086 ], [ -122.14246536399996, 49.077507821000097 ], [ -122.142467668999927, 49.077373913 ], [ -122.140004389999945, 49.077285411000098 ], [ -122.139982230999934, 49.078568822000136 ], [ -122.140392989999967, 49.078571882000098 ], [ -122.140397646999958, 49.078302048000069 ], [ -122.14080840299999, 49.078305106000101 ], [ -122.140813056999932, 49.078035271000019 ], [ -122.141634564999947, 49.078041385000105 ], [ -122.141639214999955, 49.077771549000069 ], [ -122.142049967999924, 49.07777460300008 ] ], [ [ -122.142880757999961, 49.077241038000103 ], [ -122.142885400999944, 49.076971203000092 ], [ -122.143296146999958, 49.076974253000074 ], [ -122.14330078799999, 49.076704418000112 ], [ -122.143711530999937, 49.07670746600008 ], [ -122.143716168999916, 49.07643763100004 ], [ -122.1441269099999, 49.076440677000107 ], [ -122.144131545999926, 49.076170842000053 ], [ -122.144542284999943, 49.076173888000049 ], [ -122.144546919999939, 49.075904053000073 ], [ -122.144957655999974, 49.075907097000048 ], [ -122.144962288999949, 49.075637263000026 ], [ -122.142637212999972, 49.075620016000109 ], [ -122.142503174999931, 49.077238233000088 ], [ -122.142880757999961, 49.077241038000103 ] ], [ [ -122.155728303, 49.070589001000052 ], [ -122.155737448999943, 49.070049330000131 ], [ -122.155572353999943, 49.070048122000081 ], [ -122.155519790999975, 49.070047738000085 ], [ -122.15551696299994, 49.070082 ], [ -122.155475266999957, 49.070587151000069 ], [ -122.155728303, 49.070589001000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "0.843978793234032", "sL_AssetLoss": "7922", "sL_BldgLoss": "6686", "sL_StrLoss": "3480", "sL_NStrLoss": "3206", "sL_ContLoss": "1236", "geom_point": "0101000020E61000004C85FC5C02885EC0182952695D894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.121639404999897, 49.075667911000025 ], [ -122.121674464999927, 49.075246921 ], [ -122.121602230999926, 49.075244312000073 ], [ -122.121625992999952, 49.0749589710001 ], [ -122.12190164799992, 49.071648696000103 ], [ -122.12294457099992, 49.071686355000089 ], [ -122.123048567999916, 49.070437021000039 ], [ -122.125008147999935, 49.070507751000022 ], [ -122.128508210999939, 49.070633996000048 ], [ -122.128453654999944, 49.071290315000063 ], [ -122.128666645999942, 49.071297993000051 ], [ -122.128367751999988, 49.074893630000091 ], [ -122.127183979999984, 49.07485094700013 ], [ -122.127172934999976, 49.074983760000158 ], [ -122.12709965399992, 49.075864957000128 ], [ -122.12502917099998, 49.075790272000063 ], [ -122.121639404999897, 49.075667911000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.858741798533385", "sL_AssetLoss": "5182", "sL_BldgLoss": "4450", "sL_StrLoss": "2900", "sL_NStrLoss": "1550", "sL_ContLoss": "732", "geom_point": "0101000020E61000003A325E0C08885EC08A14B12537874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.124949224999952, 49.054547636000066 ], [ -122.128369629999924, 49.0546710570001 ], [ -122.12807082099998, 49.058266785000043 ], [ -122.12495859199997, 49.058154491000089 ], [ -122.122612626999981, 49.058069783000086 ], [ -122.12291185799999, 49.054474070000019 ], [ -122.124949224999952, 49.054547636000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4744584", "BldgCostT": "3008334", "sL_LossRatio": "0.751759133964817", "sL_AssetLoss": "29560", "sL_BldgLoss": "22222", "sL_StrLoss": "15730", "sL_NStrLoss": "6492", "sL_ContLoss": "7338", "geom_point": "0101000020E6100000CB0326AA16885EC0D430F80BA8884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.126311643999941, 49.06484928200004 ], [ -122.131770645999936, 49.06504609400011 ], [ -122.131472031999948, 49.068641774000099 ], [ -122.127234333999965, 49.068489018000022 ], [ -122.127083946999932, 49.070297673000042 ], [ -122.126449074999968, 49.07027477400004 ], [ -122.126446120999958, 49.070310289000062 ], [ -122.125007067999945, 49.070258369000065 ], [ -122.120986523999989, 49.070113209000063 ], [ -122.121285956999955, 49.066517567000091 ], [ -122.12192077499995, 49.066540496000115 ], [ -122.121923731999956, 49.066504981000023 ], [ -122.124991285999982, 49.066615730000059 ], [ -122.12616123199993, 49.066657946000106 ], [ -122.126311643999941, 49.06484928200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.848872993429261", "sL_AssetLoss": "12023", "sL_BldgLoss": "10206", "sL_StrLoss": "6290", "sL_NStrLoss": "3916", "sL_ContLoss": "1817", "geom_point": "0101000020E61000008F99D9215D8A5EC081D2AB5C03874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.158868381999923, 49.057541757000074 ], [ -122.159036191999945, 49.055506212000054 ], [ -122.158945409999902, 49.055502964000013 ], [ -122.159241822, 49.051907134000089 ], [ -122.161444968999916, 49.05198594300002 ], [ -122.164699447999951, 49.052102277000131 ], [ -122.164672471999921, 49.052430006000115 ], [ -122.165163950999968, 49.052447565000122 ], [ -122.164867993, 49.05604340800005 ], [ -122.164515885999947, 49.05603082800009 ], [ -122.164470905999934, 49.056577216000093 ], [ -122.164422278999922, 49.056575479000045 ], [ -122.164326663999958, 49.05773691600006 ], [ -122.161250679999938, 49.057626970000101 ], [ -122.158868381999923, 49.057541757000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.847076461769115", "sL_AssetLoss": "2668", "sL_BldgLoss": "2260", "sL_StrLoss": "1520", "sL_NStrLoss": "740", "sL_ContLoss": "408", "geom_point": "0101000020E61000008580B6B41E875EC07727A78FA3884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.109643959999971, 49.065660596 ], [ -122.112990476999983, 49.065781798000039 ], [ -122.112690409999971, 49.069377422000123 ], [ -122.109667023999947, 49.069267928000016 ], [ -122.109666223, 49.069142738000025 ], [ -122.109643959999971, 49.065660596 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.880023296447292", "sL_AssetLoss": "5151", "sL_BldgLoss": "4533", "sL_StrLoss": "2920", "sL_NStrLoss": "1613", "sL_ContLoss": "618", "geom_point": "0101000020E6100000B4C598680E865EC0C58A01AF228E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.095200870999932, 49.108651073 ], [ -122.097512296000019, 49.108735026000076 ], [ -122.097210756999971, 49.112330367000069 ], [ -122.095209585999925, 49.112257686000056 ], [ -122.091746359999988, 49.112131815000083 ], [ -122.092048318999929, 49.108536488000048 ], [ -122.095200870999932, 49.108651073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.863868806207018", "sL_AssetLoss": "5671", "sL_BldgLoss": "4899", "sL_StrLoss": "3180", "sL_NStrLoss": "1719", "sL_ContLoss": "772", "geom_point": "0101000020E61000001A26C75BF6885EC038846C514D884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.139339350999947, 49.063031279000029 ], [ -122.142914923999967, 49.063159790000029 ], [ -122.142617181999967, 49.066755511000032 ], [ -122.13934392799996, 49.066637871000083 ], [ -122.137157933999944, 49.066559251000086 ], [ -122.137456096, 49.06296354400007 ], [ -122.139339350999947, 49.063031279000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17282334", "BldgCostT": "11183334", "sL_LossRatio": "0.778414157780373", "sL_AssetLoss": "79617", "sL_BldgLoss": "61975", "sL_StrLoss": "39520", "sL_NStrLoss": "22455", "sL_ContLoss": "17642", "geom_point": "0101000020E6100000BE2342A710885EC07EF98D44228B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.120632104, 49.094502036000023 ], [ -122.120856685999982, 49.091807026000069 ], [ -122.117696170999935, 49.09169286400008 ], [ -122.117702273999967, 49.091619680000115 ], [ -122.116782400999924, 49.09158643500006 ], [ -122.116952592999937, 49.091158503000031 ], [ -122.117133634999902, 49.089477752000072 ], [ -122.117197587999954, 49.088883991000074 ], [ -122.117552398999948, 49.087438393000049 ], [ -122.11755077, 49.087057718000082 ], [ -122.119044473999921, 49.087111692000093 ], [ -122.119041228999919, 49.087150633000121 ], [ -122.121763366999971, 49.087248942000066 ], [ -122.122005520999949, 49.084341707000156 ], [ -122.121797375999947, 49.084334193000124 ], [ -122.121849511999969, 49.083708259000055 ], [ -122.121784013999928, 49.083705895000094 ], [ -122.12190932599999, 49.08220135400007 ], [ -122.121747105999944, 49.08219549700015 ], [ -122.121883481999987, 49.080558058000108 ], [ -122.12139979599999, 49.080540593000052 ], [ -122.121699262999982, 49.076945007000106 ], [ -122.121942682999929, 49.076953797000023 ], [ -122.121965666, 49.076677813000067 ], [ -122.125031189999959, 49.076788462000096 ], [ -122.127426034999985, 49.076874841000077 ], [ -122.127266911, 49.078788282000097 ], [ -122.127507151000017, 49.078796944000054 ], [ -122.127382028999989, 49.08030149800009 ], [ -122.127544243999964, 49.080307347000016 ], [ -122.127492187999934, 49.080933287000029 ], [ -122.127557682999935, 49.080935648000029 ], [ -122.127269550999955, 49.084400056000099 ], [ -122.127477698999954, 49.084407559000077 ], [ -122.127358625999975, 49.085839175000061 ], [ -122.128351651999978, 49.085874970000084 ], [ -122.128353522999973, 49.085768053000059 ], [ -122.128764340999979, 49.085771154000064 ], [ -122.128769059999925, 49.085501321000102 ], [ -122.129179874999949, 49.085504421000067 ], [ -122.12918459499997, 49.085234588000063 ], [ -122.130642012999957, 49.08524557500003 ], [ -122.131649467, 49.085253157000103 ], [ -122.131643684999972, 49.085584854000032 ], [ -122.131639735999954, 49.085811250000113 ], [ -122.131626846999936, 49.086550309000124 ], [ -122.135726038999948, 49.086697844000085 ], [ -122.135641868999983, 49.087711942000055 ], [ -122.135715446999953, 49.087712494000122 ], [ -122.13572012899999, 49.087442659 ], [ -122.137592488999985, 49.087456664000079 ], [ -122.13778700499995, 49.087915505000112 ], [ -122.138173566999939, 49.088128450000077 ], [ -122.138152423999927, 49.089349927000121 ], [ -122.137741575999911, 49.089346859000059 ], [ -122.13773690399999, 49.089616692000099 ], [ -122.137326054999974, 49.089613623000041 ], [ -122.137321378999985, 49.089883456000067 ], [ -122.13691052899999, 49.089880385000114 ], [ -122.13690643, 49.09011673600002 ], [ -122.136833117999913, 49.090149674000102 ], [ -122.136494997999989, 49.090147146000035 ], [ -122.136492297999965, 49.090302797000099 ], [ -122.136242276999937, 49.090415123000142 ], [ -122.13618985, 49.090414731000074 ], [ -122.136187785999965, 49.090439604000025 ], [ -122.135712990999977, 49.090652911000049 ], [ -122.134210392999989, 49.091135712000074 ], [ -122.13407130399996, 49.09129658600007 ], [ -122.133175890999922, 49.091614212000124 ], [ -122.132366519999962, 49.092047497000095 ], [ -122.129236475999946, 49.091934772000059 ], [ -122.129367121999948, 49.090363471000124 ], [ -122.128273217999947, 49.090355215000066 ], [ -122.128263768999943, 49.090894880000164 ], [ -122.127852909999916, 49.090891777000081 ], [ -122.127848183000012, 49.091161610000064 ], [ -122.127026461999947, 49.09115539800009 ], [ -122.127021730999928, 49.091425231000066 ], [ -122.126367402999932, 49.091420281000119 ], [ -122.126094556999988, 49.09469912600013 ], [ -122.121591289999969, 49.094536664000117 ], [ -122.121283045000013, 49.094525537000102 ], [ -122.120632104, 49.094502036000023 ] ], [ [ -122.130109993999909, 49.088359928000067 ], [ -122.130189689999966, 49.087401117000091 ], [ -122.129968502999972, 49.087399450000099 ], [ -122.129963786999923, 49.087669284000093 ], [ -122.12955295499998, 49.08766618500006 ], [ -122.12954823799997, 49.087936018000093 ], [ -122.129137403999948, 49.087932919000046 ], [ -122.129132684999945, 49.088202753000097 ], [ -122.128721847999913, 49.088199652000071 ], [ -122.128717126999902, 49.088469486000122 ], [ -122.128405003999958, 49.088467129000016 ], [ -122.12838257599995, 49.088736828000037 ], [ -122.129501655999903, 49.088745274000132 ], [ -122.129535412999971, 49.088339229000027 ], [ -122.130109993999909, 49.088359928000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.84731335343146", "sL_AssetLoss": "5639", "sL_BldgLoss": "4778", "sL_StrLoss": "3220", "sL_NStrLoss": "1558", "sL_ContLoss": "861", "geom_point": "0101000020E61000005DAF7EA6BD895EC013F7F5CF15864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.15495884799995, 49.046188216000068 ], [ -122.155021580999986, 49.046188165000089 ], [ -122.154789694, 49.048998571000034 ], [ -122.149332472, 49.048802924000015 ], [ -122.149551151000011, 49.046156381000081 ], [ -122.152686419999952, 49.046188151000095 ], [ -122.152859989999953, 49.046189907000091 ], [ -122.15495884799995, 49.046188216000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.818589025755879", "sL_AssetLoss": "893", "sL_BldgLoss": "731", "sL_StrLoss": "157", "sL_NStrLoss": "574", "sL_ContLoss": "162", "geom_point": "0101000020E61000004BEB0CDF84865EC0A133C40C688D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.102432727999926, 49.104116645000083 ], [ -122.104595306999954, 49.104135385000077 ], [ -122.10448437300002, 49.10546071300012 ], [ -122.099020750999955, 49.105262527000043 ], [ -122.099119217999942, 49.104087793000041 ], [ -122.102405321999953, 49.104116396000116 ], [ -122.102432727999926, 49.104116645000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22674501", "BldgCostT": "15110001", "sL_LossRatio": "0.816714368540691", "sL_AssetLoss": "108661", "sL_BldgLoss": "88745", "sL_StrLoss": "59381", "sL_NStrLoss": "29364", "sL_ContLoss": "19916", "geom_point": "0101000020E6100000792F6B20E5865EC021640FA3568D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.101069756999919, 49.120689928000068 ], [ -122.101306531999938, 49.117864588000032 ], [ -122.10083247099999, 49.117847394000052 ], [ -122.10083051299992, 49.117870764000038 ], [ -122.099588914999927, 49.117825722000106 ], [ -122.099586359999961, 49.117856194000041 ], [ -122.094121303999927, 49.1176577640001 ], [ -122.094148701, 49.117331440000036 ], [ -122.091789745999932, 49.117245703000023 ], [ -122.092091734999912, 49.113650404000097 ], [ -122.093982000999944, 49.113719111000087 ], [ -122.094004066999929, 49.113456250000048 ], [ -122.095212588, 49.113500159000068 ], [ -122.09946863, 49.113654687000071 ], [ -122.09942548199993, 49.114169393000033 ], [ -122.099670964999916, 49.114178300000027 ], [ -122.099675199, 49.114127788000125 ], [ -122.100138703999974, 49.114144604000089 ], [ -122.100202118999988, 49.113387998000078 ], [ -122.104845106999932, 49.113556351000099 ], [ -122.104848197999914, 49.113384606000089 ], [ -122.105259239999938, 49.113387793000065 ], [ -122.105268945999939, 49.112848132000039 ], [ -122.10564734099999, 49.112851065000065 ], [ -122.105688917999942, 49.11235427900003 ], [ -122.105689684999945, 49.112311657000085 ], [ -122.105692483999945, 49.112311679000129 ], [ -122.10574743, 49.111655158000076 ], [ -122.104801067999944, 49.11162086700007 ], [ -122.105102015999961, 49.108025500000032 ], [ -122.105496362999929, 49.108039791000067 ], [ -122.105545830999958, 49.107448709000096 ], [ -122.105896893999898, 49.107461429000075 ], [ -122.105967158999988, 49.106621716000078 ], [ -122.106301387999906, 49.10663382700006 ], [ -122.106442421999972, 49.104948154000041 ], [ -122.106292534999966, 49.10494272400009 ], [ -122.106331031999957, 49.104482603000072 ], [ -122.106165959999913, 49.104476622000064 ], [ -122.106193353999984, 49.104149205000041 ], [ -122.109701382999901, 49.104179460000083 ], [ -122.109701356999935, 49.103984600000075 ], [ -122.10970131899991, 49.103903758000122 ], [ -122.109700689999968, 49.101483695000084 ], [ -122.10969747199999, 49.099999715000109 ], [ -122.109676629999925, 49.090437104000024 ], [ -122.109676399999941, 49.090334796000057 ], [ -122.10968762, 49.083852245000038 ], [ -122.109688443999943, 49.083366436000034 ], [ -122.109689565999986, 49.082736723000032 ], [ -122.109696076999938, 49.078969758000063 ], [ -122.10970211899992, 49.075478179000051 ], [ -122.109703036999989, 49.074937318000096 ], [ -122.10970310099999, 49.074902986000069 ], [ -122.109697946999916, 49.07409887100011 ], [ -122.11304919599999, 49.074220219000047 ], [ -122.112990908999961, 49.07491856500009 ], [ -122.112749078999954, 49.077815795000014 ], [ -122.112747622999905, 49.077815743000023 ], [ -122.112694310999927, 49.078454395000051 ], [ -122.111607140999979, 49.078415040000088 ], [ -122.111584952, 49.07868077800007 ], [ -122.113288066999971, 49.07874242500003 ], [ -122.112987939999954, 49.08233797600009 ], [ -122.111821526999933, 49.082295760000115 ], [ -122.11175768799994, 49.083060262000167 ], [ -122.113149640999978, 49.083110640000044 ], [ -122.113002573999921, 49.084872349000086 ], [ -122.113507937999941, 49.084890635000093 ], [ -122.113207787999954, 49.088486153000055 ], [ -122.11150122199993, 49.088424394000072 ], [ -122.111448776999936, 49.089052298000134 ], [ -122.113395602999944, 49.089122749000104 ], [ -122.113253898999943, 49.090820094000051 ], [ -122.11309541699994, 49.092718243000036 ], [ -122.112942931999939, 49.092712726000109 ], [ -122.112806595999984, 49.09434544600002 ], [ -122.111767031999975, 49.094307830000048 ], [ -122.111748125999938, 49.094534180000025 ], [ -122.111983590999927, 49.094542701000123 ], [ -122.111726157999954, 49.097624628000105 ], [ -122.112015780999954, 49.097635109000102 ], [ -122.112008198999916, 49.097725873000108 ], [ -122.113191345999937, 49.097768678000065 ], [ -122.113130339999941, 49.098499251000085 ], [ -122.113186390999985, 49.098501279000097 ], [ -122.113113453999958, 49.099374704000063 ], [ -122.112722306999942, 49.10027480800003 ], [ -122.112646517, 49.100687804000117 ], [ -122.11146828599999, 49.103772694000099 ], [ -122.111448480999925, 49.104124496000018 ], [ -122.110957593999942, 49.104686986000054 ], [ -122.110390296999967, 49.10499749300007 ], [ -122.11015301, 49.105246707000092 ], [ -122.110234293999937, 49.106039991000088 ], [ -122.110776487999885, 49.10717799 ], [ -122.111033907999939, 49.107323193000063 ], [ -122.111073188999967, 49.107458504000135 ], [ -122.110401606999957, 49.108244704000057 ], [ -122.110025168999925, 49.109035690000084 ], [ -122.109761783999915, 49.109589106000087 ], [ -122.109460605999985, 49.111044696000064 ], [ -122.109468186999948, 49.112178389000078 ], [ -122.109310287999946, 49.112535792000067 ], [ -122.109443298999921, 49.112780790000052 ], [ -122.110175591999919, 49.113262189000082 ], [ -122.110385466999958, 49.113726825000136 ], [ -122.110477285999977, 49.113930095000057 ], [ -122.110807990999916, 49.113878912000068 ], [ -122.11098581399996, 49.113817593000107 ], [ -122.111043702999922, 49.113665188000063 ], [ -122.110741692999937, 49.113292273000127 ], [ -122.11058929099994, 49.113104088000043 ], [ -122.110438912999939, 49.112320805000088 ], [ -122.109985596999962, 49.111516104000017 ], [ -122.109897309999923, 49.111137290000016 ], [ -122.110022106999935, 49.110238602000095 ], [ -122.110557801, 49.108677599000082 ], [ -122.111402191999943, 49.107461417000145 ], [ -122.111373336999961, 49.107273890000108 ], [ -122.111328777999987, 49.106984292000035 ], [ -122.110855376999936, 49.105873395000081 ], [ -122.110834806999932, 49.105450395000069 ], [ -122.111745704000015, 49.104279708000071 ], [ -122.111968812, 49.103318293 ], [ -122.112976158999942, 49.101018733000025 ], [ -122.112965818999939, 49.101142551000116 ], [ -122.11315205599999, 49.10114928800008 ], [ -122.11311944599997, 49.101539771000041 ], [ -122.113398971999942, 49.101549882 ], [ -122.113362212999959, 49.101990075000053 ], [ -122.113684062999965, 49.102001716000139 ], [ -122.11369159900002, 49.101578649000061 ], [ -122.11410254499998, 49.101581803000087 ], [ -122.114112149999954, 49.101042141000015 ], [ -122.11534497400001, 49.101051595000037 ], [ -122.115327027999953, 49.102061121000084 ], [ -122.115481894999945, 49.102066720000103 ], [ -122.115885261999921, 49.102081299000105 ], [ -122.118017840999983, 49.102158359000036 ], [ -122.117824545999952, 49.104475696000087 ], [ -122.117355783, 49.104726901000056 ], [ -122.116777511999956, 49.104902088000095 ], [ -122.11488669199997, 49.10490631400004 ], [ -122.11417631499998, 49.104783894000036 ], [ -122.113928987999927, 49.104826608000032 ], [ -122.11374801699999, 49.104977501000121 ], [ -122.113705720000013, 49.106542800000042 ], [ -122.113784739999957, 49.107571222000061 ], [ -122.11350427499994, 49.107561079000092 ], [ -122.11293440799993, 49.107540470000053 ], [ -122.112848485999947, 49.108569102000061 ], [ -122.111289484999986, 49.108512706000113 ], [ -122.111204371000014, 49.109531216000086 ], [ -122.113424213999949, 49.109611511000061 ], [ -122.113765595999951, 49.109623855000088 ], [ -122.113760702999983, 49.109647486000092 ], [ -122.113576802999944, 49.109960908000069 ], [ -122.11372439099992, 49.110195888000121 ], [ -122.113703209000022, 49.11131959500009 ], [ -122.113152990999978, 49.112934597000063 ], [ -122.111855512999981, 49.113500007000034 ], [ -122.112086783999928, 49.113663806000041 ], [ -122.112597185, 49.113434500000018 ], [ -122.113065086999924, 49.113339098000054 ], [ -122.112945602999943, 49.113833312000075 ], [ -122.11306590099997, 49.114041184000058 ], [ -122.112927013999951, 49.114227358000058 ], [ -122.112799191999898, 49.114398696000094 ], [ -122.112714894999954, 49.114459888000098 ], [ -122.112139899999974, 49.114501199000088 ], [ -122.111744481999949, 49.114408695000066 ], [ -122.111697601999978, 49.114696405000089 ], [ -122.111856722999946, 49.115011104000104 ], [ -122.11165911099999, 49.115288792000065 ], [ -122.111367496999989, 49.11551239200007 ], [ -122.110956285999961, 49.115589309000057 ], [ -122.11055820099989, 49.115622096000031 ], [ -122.110368096999963, 49.115476814000147 ], [ -122.109874587999954, 49.115472611000051 ], [ -122.109636613999925, 49.115704698000108 ], [ -122.10930950699999, 49.116449603000099 ], [ -122.108681715999921, 49.117037791000094 ], [ -122.108419504999915, 49.117153087000119 ], [ -122.10758099099999, 49.118018998000117 ], [ -122.104979912999951, 49.121345333000093 ], [ -122.101026837999925, 49.121202040000071 ], [ -122.101069756999919, 49.120689928000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.856045519203414", "sL_AssetLoss": "10545", "sL_BldgLoss": "9027", "sL_StrLoss": "6010", "sL_NStrLoss": "3017", "sL_ContLoss": "1518", "geom_point": "0101000020E6100000C1F4E60592875EC0D81F51369F8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.1201540499999, 49.096437284000096 ], [ -122.122977812999949, 49.09653921100012 ], [ -122.122678317999942, 49.100134691000108 ], [ -122.118705600999988, 49.099991271000086 ], [ -122.118635092999938, 49.100836787000041 ], [ -122.11687474899999, 49.100773188000126 ], [ -122.116512674, 49.100760105000106 ], [ -122.113171952999934, 49.100639319000052 ], [ -122.113188067999957, 49.100446343000115 ], [ -122.114429352999935, 49.097078486000058 ], [ -122.117444633, 49.097187483000084 ], [ -122.117515157999932, 49.096341963000086 ], [ -122.119849847999916, 49.096426300000083 ], [ -122.1201540499999, 49.096437284000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.856097750797727", "sL_AssetLoss": "12849", "sL_BldgLoss": "11000", "sL_StrLoss": "6550", "sL_NStrLoss": "4450", "sL_ContLoss": "1849", "geom_point": "0101000020E61000004BF1AFED068B5EC0C722763BB5854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.16961603699994, 49.046191367000127 ], [ -122.169622514999929, 49.046112545000042 ], [ -122.167885218999928, 49.046050529000134 ], [ -122.168180881999916, 49.042454621000047 ], [ -122.173637438999918, 49.042649313000034 ], [ -122.173533329999913, 49.04391738100005 ], [ -122.177777074999938, 49.044068605000085 ], [ -122.177602303999947, 49.04619954200006 ], [ -122.171859207999915, 49.046193724000027 ], [ -122.16961603699994, 49.046191367000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.846296839839546", "sL_AssetLoss": "10221", "sL_BldgLoss": "8650", "sL_StrLoss": "5100", "sL_NStrLoss": "3550", "sL_ContLoss": "1571", "geom_point": "0101000020E6100000B6C86E4D978B5EC0DB93765982854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.18010628899998, 49.046201981000117 ], [ -122.18026982399999, 49.044206749000068 ], [ -122.178839333999974, 49.044155826000065 ], [ -122.17913414199991, 49.040559879000035 ], [ -122.183678879999931, 49.040721598000097 ], [ -122.183677316999947, 49.041290894000042 ], [ -122.183577504999931, 49.041590305000113 ], [ -122.182719282999955, 49.042848191000047 ], [ -122.18254304099996, 49.043414751000064 ], [ -122.182199385999922, 49.044519308000147 ], [ -122.182216882999953, 49.044689398000124 ], [ -122.182381204999956, 49.045089209 ], [ -122.182911679999933, 49.045943645000079 ], [ -122.183073780999962, 49.046204797000023 ], [ -122.18010628899998, 49.046201981000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.85156126168965", "sL_AssetLoss": "12618", "sL_BldgLoss": "10745", "sL_StrLoss": "6650", "sL_NStrLoss": "4095", "sL_ContLoss": "1873", "geom_point": "0101000020E610000055451BF4638A5EC0E97AE40795854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.160912205999978, 49.045379743000076 ], [ -122.160915060999969, 49.045345086000026 ], [ -122.158036209, 49.045242067000032 ], [ -122.158332625999961, 49.041646182000129 ], [ -122.161633399999971, 49.041764293000035 ], [ -122.163789047999913, 49.041841374000086 ], [ -122.163786194999929, 49.041876033000037 ], [ -122.166664851999883, 49.041978898000146 ], [ -122.166369073999959, 49.045574804000033 ], [ -122.161642793999945, 49.045405875 ], [ -122.160912205999978, 49.045379743000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2083167", "BldgCostT": "1436667", "sL_LossRatio": "0.822675529070212", "sL_AssetLoss": "13089", "sL_BldgLoss": "10768", "sL_StrLoss": "6720", "sL_NStrLoss": "4048", "sL_ContLoss": "2321", "geom_point": "0101000020E61000005528DA6EA5895EC06592AA5051824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.14780893599999, 49.019294262000081 ], [ -122.147816946999953, 49.019197293000019 ], [ -122.145799272999952, 49.019124808000086 ], [ -122.145982478999912, 49.016908103000063 ], [ -122.149026120999935, 49.016917494000019 ], [ -122.151111992999958, 49.016923898000059 ], [ -122.151268993999935, 49.016924357000093 ], [ -122.151392081999958, 49.016924725000131 ], [ -122.151624562999956, 49.016925425000132 ], [ -122.15566722199999, 49.016937320000096 ], [ -122.155483871999962, 49.019161343000121 ], [ -122.153296282999975, 49.019082909000062 ], [ -122.15326270099996, 49.019489996000047 ], [ -122.14780893599999, 49.019294262000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20580334", "BldgCostT": "14193334", "sL_LossRatio": "0.894802064235757", "sL_AssetLoss": "58908", "sL_BldgLoss": "52711", "sL_StrLoss": "36517", "sL_NStrLoss": "16194", "sL_ContLoss": "6197", "geom_point": "0101000020E610000097D5E893A4855EC0F102BA6992864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.072627494999949, 49.057942 ], [ -122.0729080499999, 49.056154922000076 ], [ -122.0728926, 49.055166674000077 ], [ -122.075121444999965, 49.055248193000054 ], [ -122.07540052899995, 49.051935022000038 ], [ -122.08085780299993, 49.052134424000066 ], [ -122.080828081, 49.052487786000086 ], [ -122.081652897999973, 49.052517899000087 ], [ -122.082205692999977, 49.052538077000129 ], [ -122.082209592999945, 49.05249168600011 ], [ -122.081843148999951, 49.052478310000041 ], [ -122.081533276999949, 49.052466998000043 ], [ -122.081835636999926, 49.048871367000082 ], [ -122.085119707999965, 49.048991208000139 ], [ -122.085325022999939, 49.046547244000081 ], [ -122.086892607, 49.046604412000107 ], [ -122.086920773999964, 49.046268981000026 ], [ -122.09171232099996, 49.046443581000062 ], [ -122.091883375999942, 49.044403895000109 ], [ -122.091987397999944, 49.044407684000106 ], [ -122.092083828999975, 49.043257696000047 ], [ -122.094064980000013, 49.043329823000064 ], [ -122.094195826999979, 49.041768543000082 ], [ -122.094463548999897, 49.041778287000049 ], [ -122.094583288999928, 49.040349348000078 ], [ -122.096058351999929, 49.040403022000085 ], [ -122.096146579999981, 49.039349683000047 ], [ -122.101602469999946, 49.039548034000092 ], [ -122.10153692699997, 49.040331656000077 ], [ -122.101301694, 49.043143772000072 ], [ -122.099826538999963, 49.043090171000117 ], [ -122.0997913369999, 49.043510806 ], [ -122.105087401999981, 49.043703152000056 ], [ -122.104907786999931, 49.045852211000096 ], [ -122.099176333999978, 49.045853483000016 ], [ -122.099201127999962, 49.045557263000099 ], [ -122.097369796999928, 49.045490683000075 ], [ -122.097361557999989, 49.045589075000073 ], [ -122.097444473999929, 49.045589724000109 ], [ -122.09743969499999, 49.045853808000047 ], [ -122.095105029999928, 49.045854201000132 ], [ -122.095046479999937, 49.060269500000103 ], [ -122.09065379599997, 49.060296129000051 ], [ -122.090766015999961, 49.058958811000103 ], [ -122.091654215999981, 49.058991151000058 ], [ -122.091660388999941, 49.058917582000042 ], [ -122.091634845999977, 49.058916653000018 ], [ -122.091862335999977, 49.056204823000087 ], [ -122.091558411999955, 49.056193757000045 ], [ -122.091860022999981, 49.052598119000088 ], [ -122.092828428999979, 49.052633374000038 ], [ -122.092993009999986, 49.050670602000075 ], [ -122.092767557999935, 49.050662395000067 ], [ -122.092717893999975, 49.051254655000051 ], [ -122.087802572999948, 49.051075609000101 ], [ -122.087632160999974, 49.053105205000058 ], [ -122.087874508999974, 49.053114038000096 ], [ -122.087572586999926, 49.05670966200006 ], [ -122.08501420499999, 49.056616387000076 ], [ -122.084792313999955, 49.059256822000144 ], [ -122.083951573999983, 49.059226156000143 ], [ -122.083858197999959, 49.06033697099999 ], [ -122.080349695999985, 49.060357889000024 ], [ -122.07558560699999, 49.060367689000039 ], [ -122.074956061, 49.060362370000121 ], [ -122.074995615999953, 49.060308117000083 ], [ -122.075042585999952, 49.060225354000075 ], [ -122.075042823000032, 49.060224927000064 ], [ -122.075047356999931, 49.060216952000069 ], [ -122.075194035999957, 49.059958332000072 ], [ -122.075643127999953, 49.059341801000052 ], [ -122.076046821999938, 49.058967114000112 ], [ -122.075809161999956, 49.058815600000116 ], [ -122.072627494999949, 49.057942 ] ], [ [ -122.076978933999953, 49.057846825000063 ], [ -122.077013066999896, 49.057441476000101 ], [ -122.076974029999946, 49.057440050000054 ], [ -122.076939895999914, 49.05784539800004 ], [ -122.076978933999953, 49.057846825000063 ] ], [ [ -122.099555798999944, 49.044403626000033 ], [ -122.09957805699996, 49.044137681000088 ], [ -122.099470650999962, 49.04413377600013 ], [ -122.099448391999942, 49.044399722000023 ], [ -122.099555798999944, 49.044403626000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.844698205546493", "sL_AssetLoss": "12260", "sL_BldgLoss": "10356", "sL_StrLoss": "6500", "sL_NStrLoss": "3856", "sL_ContLoss": "1904", "geom_point": "0101000020E610000083F7D9F1748A5EC0B53E9B0B92844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.162200898999942, 49.033859052000039 ], [ -122.167656426999926, 49.034054050000087 ], [ -122.167612614999953, 49.034586972000056 ], [ -122.167360775999981, 49.037650003000088 ], [ -122.164575020999933, 49.037550466000106 ], [ -122.164574657999978, 49.037554870000051 ], [ -122.16162227699999, 49.037449301000038 ], [ -122.159118734999936, 49.037359717000051 ], [ -122.15937147399994, 49.034292301000093 ], [ -122.159415018999979, 49.033763785000055 ], [ -122.161612964999932, 49.03384243700004 ], [ -122.162200536999975, 49.03386345600007 ], [ -122.162200898999942, 49.033859052000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.854308873720137", "sL_AssetLoss": "9376", "sL_BldgLoss": "8010", "sL_StrLoss": "4870", "sL_NStrLoss": "3140", "sL_ContLoss": "1366", "geom_point": "0101000020E61000007197D43BA28B5EC08337FF0A74844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.181233377999945, 49.038389407000146 ], [ -122.181240294999938, 49.038304974000049 ], [ -122.180217747999947, 49.038268579000018 ], [ -122.180299520999966, 49.037270697000146 ], [ -122.180108006999916, 49.037263879000072 ], [ -122.180290321999919, 49.035039037000033 ], [ -122.180312237999928, 49.034771562000067 ], [ -122.180135961999909, 49.034765286000017 ], [ -122.180169484999979, 49.034356181000085 ], [ -122.18012188599999, 49.034354487000087 ], [ -122.180239897999925, 49.032914290000036 ], [ -122.178711126999957, 49.032859853000033 ], [ -122.178816079999962, 49.031579432000058 ], [ -122.18370390299998, 49.031626501000062 ], [ -122.183690198, 49.036605424000037 ], [ -122.183689102999907, 49.037001222000058 ], [ -122.183685049999923, 49.038476626000033 ], [ -122.181233377999945, 49.038389407000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.852484472049689", "sL_AssetLoss": "12880", "sL_BldgLoss": "10980", "sL_StrLoss": "6570", "sL_NStrLoss": "4410", "sL_ContLoss": "1900", "geom_point": "0101000020E6100000E2DE2506FB8A5EC0EFBF7C4F38844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.17042087599999, 49.034687239000135 ], [ -122.170440322999923, 49.034450524000071 ], [ -122.170280620999918, 49.034444823000051 ], [ -122.170352510999976, 49.033569758000034 ], [ -122.165143, 49.03338368800005 ], [ -122.165302229999966, 49.031447988000089 ], [ -122.165509254999989, 49.03145001700004 ], [ -122.167848407999927, 49.031472898000111 ], [ -122.172554094999938, 49.031518804000044 ], [ -122.177064082999905, 49.031562506000093 ], [ -122.176949307999962, 49.03296208700003 ], [ -122.176036680999943, 49.032929564000057 ], [ -122.175876535000015, 49.034881820000116 ], [ -122.175855582999972, 49.035137206000066 ], [ -122.170399894999932, 49.034942626000088 ], [ -122.17042087599999, 49.034687239000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4219500", "BldgCostT": "2910000", "sL_LossRatio": "0.85362860489764", "sL_AssetLoss": "17927", "sL_BldgLoss": "15303", "sL_StrLoss": "9366", "sL_NStrLoss": "5937", "sL_ContLoss": "2624", "geom_point": "0101000020E61000006F15FEEBE0885EC0B3F0F5B5AE824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.135958151999944, 49.025030828000084 ], [ -122.136020971999955, 49.024272793000101 ], [ -122.135927595999988, 49.024269430000082 ], [ -122.13598991500001, 49.023517439000052 ], [ -122.134345489999987, 49.023458190000021 ], [ -122.134643591999975, 49.01986224900007 ], [ -122.135955729, 49.019909528000042 ], [ -122.136013749999961, 49.019209334000053 ], [ -122.13494197499999, 49.019170718000048 ], [ -122.13495326599994, 49.019034499000064 ], [ -122.134229058999921, 49.019008399000064 ], [ -122.134406352999974, 49.016869659000108 ], [ -122.13946739299999, 49.016887708000041 ], [ -122.141225809, 49.016893251000106 ], [ -122.141169403999982, 49.017574891000031 ], [ -122.140545861999982, 49.017552455000043 ], [ -122.140530122999962, 49.017742637 ], [ -122.141602072999973, 49.017781205000112 ], [ -122.141588149999947, 49.01794947800007 ], [ -122.14266124699999, 49.01798807700002 ], [ -122.142542983999988, 49.019417766000046 ], [ -122.143246514999987, 49.019443065000075 ], [ -122.142949076999926, 49.023039032000064 ], [ -122.142589543000014, 49.023026104000031 ], [ -122.142434359999982, 49.024901839000087 ], [ -122.141442410999971, 49.024866163000056 ], [ -122.141412536999937, 49.025227162000078 ], [ -122.139414425999959, 49.025155271000088 ], [ -122.135958151999944, 49.025030828000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12448916", "BldgCostT": "8321666", "sL_LossRatio": "0.811329046244891", "sL_AssetLoss": "68267", "sL_BldgLoss": "55387", "sL_StrLoss": "34962", "sL_NStrLoss": "20425", "sL_ContLoss": "12880", "geom_point": "0101000020E6100000CFF0EA45C2885EC041FB89B169844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.136756315999975, 49.042267405000104 ], [ -122.136927434999976, 49.040202932000042 ], [ -122.132437296999967, 49.040041195000072 ], [ -122.132735653999987, 49.036445353000012 ], [ -122.137199384000027, 49.036606139000078 ], [ -122.137262603999929, 49.035843260000043 ], [ -122.137283447999963, 49.035844010000105 ], [ -122.137331683999903, 49.035261925000064 ], [ -122.137029059999961, 49.035251031 ], [ -122.137173171999947, 49.033511981000061 ], [ -122.137163672, 49.033511639000018 ], [ -122.137165041999978, 49.033495116000012 ], [ -122.13722805, 49.03273471500011 ], [ -122.136597197999919, 49.032712001000071 ], [ -122.13657786600001, 49.032945255000072 ], [ -122.135681357999914, 49.032912970000076 ], [ -122.135676830999898, 49.032967578000068 ], [ -122.132192418, 49.032842022000061 ], [ -122.132181388999982, 49.032974962000104 ], [ -122.12672613699999, 49.03277816100006 ], [ -122.126840878999985, 49.031397156000025 ], [ -122.127024886999962, 49.029182294000087 ], [ -122.12825248299994, 49.029226604000051 ], [ -122.130509010999972, 49.02930801800008 ], [ -122.130520045999958, 49.029175078000087 ], [ -122.131119327999926, 49.029196691000088 ], [ -122.13119356699994, 49.028302090000061 ], [ -122.136648314999917, 49.028498665000122 ], [ -122.136598034999963, 49.029105405000109 ], [ -122.13938658099994, 49.029205789000123 ], [ -122.141408788999954, 49.029278540000114 ], [ -122.141352776999923, 49.029955273000056 ], [ -122.143600254999981, 49.030036084000045 ], [ -122.143489467999984, 49.031375351000065 ], [ -122.143302777999978, 49.033631992000061 ], [ -122.142636844999942, 49.033608053000059 ], [ -122.142629921999983, 49.033691727000047 ], [ -122.142485692999983, 49.035434641000059 ], [ -122.142788317999987, 49.035445520000117 ], [ -122.142651772999926, 49.03709559200005 ], [ -122.142713921999956, 49.037097826000021 ], [ -122.14241633099999, 49.040693692000069 ], [ -122.142360613999955, 49.040691690000109 ], [ -122.142324651999957, 49.041126194000114 ], [ -122.14232343099998, 49.041126150000053 ], [ -122.142212720999964, 49.042463693000116 ], [ -122.139299096999977, 49.042358913000065 ], [ -122.136756315999975, 49.042267405000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.855228167216254", "sL_AssetLoss": "9401", "sL_BldgLoss": "8040", "sL_StrLoss": "4900", "sL_NStrLoss": "3140", "sL_ContLoss": "1361", "geom_point": "0101000020E61000005BA2693FC8895EC081BF6FAEA7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.150388225999905, 49.042045893000108 ], [ -122.155844661999978, 49.042241489000077 ], [ -122.155548048999947, 49.045837362000093 ], [ -122.155051990999979, 49.04581959300004 ], [ -122.155021580999986, 49.046188165000089 ], [ -122.15495884799995, 49.046188216000068 ], [ -122.152859989999953, 49.046189907000091 ], [ -122.152686419999952, 49.046188151000095 ], [ -122.149551151000011, 49.046156381000081 ], [ -122.149629582999964, 49.045207084 ], [ -122.150125632999945, 49.045224879000038 ], [ -122.150388225999905, 49.042045893000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16646666", "BldgCostT": "11216666", "sL_LossRatio": "0.83063213167727", "sL_AssetLoss": "79224", "sL_BldgLoss": "65806", "sL_StrLoss": "43310", "sL_NStrLoss": "22496", "sL_ContLoss": "13418", "geom_point": "0101000020E61000008A950B7431875EC09AB9FA90BB844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.106057140999965, 49.045034844000078 ], [ -122.106101486999933, 49.04450409800009 ], [ -122.105993357999978, 49.04450017500011 ], [ -122.106178679999985, 49.04228214500008 ], [ -122.10591229399995, 49.042272478 ], [ -122.106043764999981, 49.040698924000026 ], [ -122.105965492999957, 49.040696083000057 ], [ -122.106074884999913, 49.039386739000044 ], [ -122.106107770999955, 49.038993102000035 ], [ -122.105757291999936, 49.03898038300008 ], [ -122.105901400999969, 49.037255515000091 ], [ -122.102251578999983, 49.037122994000057 ], [ -122.102552241999931, 49.03352721900005 ], [ -122.10623555599993, 49.033660956000041 ], [ -122.106254896999957, 49.03342940700005 ], [ -122.107051082999959, 49.033458299000117 ], [ -122.107138637999924, 49.032409857000033 ], [ -122.107179643999956, 49.031918825000098 ], [ -122.108943800999953, 49.031982822000025 ], [ -122.109665270999983, 49.032008986000086 ], [ -122.109697653999945, 49.031620945000093 ], [ -122.10985905699998, 49.029686783000116 ], [ -122.115313876999949, 49.029884440000082 ], [ -122.115303800999968, 49.030005358000039 ], [ -122.117470869999948, 49.030083805000075 ], [ -122.11754117, 49.02923966700007 ], [ -122.11888973899994, 49.029288462000117 ], [ -122.118893714999928, 49.029240698000066 ], [ -122.119429024999988, 49.029260063000116 ], [ -122.119435895999985, 49.029177511000036 ], [ -122.12489069599998, 49.029374683000057 ], [ -122.12472186799999, 49.031405712000065 ], [ -122.12459178, 49.032970544000051 ], [ -122.124084486999976, 49.03295221900008 ], [ -122.124078587999961, 49.033023164000042 ], [ -122.124027894999955, 49.03363285500005 ], [ -122.1185726, 49.033435641000054 ], [ -122.118618421999926, 49.03288532200002 ], [ -122.1181441519999, 49.032868163000082 ], [ -122.118073857999946, 49.033712298000033 ], [ -122.117365247999913, 49.033686657000054 ], [ -122.117365226999979, 49.033686915000033 ], [ -122.11251839699996, 49.033511410000088 ], [ -122.11234594299998, 49.035579240000075 ], [ -122.112999514999899, 49.035602918000095 ], [ -122.112841995999986, 49.037491808000027 ], [ -122.113093527999936, 49.037500921000031 ], [ -122.11282644799995, 49.040703453000084 ], [ -122.113057726999955, 49.040711830000134 ], [ -122.112900306999947, 49.042599339000105 ], [ -122.112919647999959, 49.04260003900005 ], [ -122.112816833999943, 49.043832739000017 ], [ -122.112855625999885, 49.04383414400013 ], [ -122.112812822999913, 49.044347319000074 ], [ -122.113514003999981, 49.044372715000065 ], [ -122.11352190199996, 49.04427801500006 ], [ -122.115522638999934, 49.044350452000053 ], [ -122.115590858999937, 49.043531962000046 ], [ -122.121047320999978, 49.043729324000047 ], [ -122.120872121999966, 49.045834203 ], [ -122.117455055999969, 49.045839396000083 ], [ -122.117331945999979, 49.045839570000069 ], [ -122.117222471999952, 49.045839752000084 ], [ -122.109613481999986, 49.045850930000071 ], [ -122.10609659899994, 49.045851908000081 ], [ -122.10575077, 49.045851998000039 ], [ -122.105819772999894, 49.045026231000023 ], [ -122.106057140999965, 49.045034844000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "0.846170145142494", "sL_AssetLoss": "28317", "sL_BldgLoss": "23961", "sL_StrLoss": "14710", "sL_NStrLoss": "9251", "sL_ContLoss": "4356", "geom_point": "0101000020E6100000E3CB1B92A0895EC0899AA6D7FF834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.145358062999975, 49.033789773000073 ], [ -122.145557574999941, 49.031376870000031 ], [ -122.145560314999955, 49.031343736000075 ], [ -122.144302367999927, 49.031298536000129 ], [ -122.144599754999945, 49.027702611000073 ], [ -122.150054488999942, 49.027898505000039 ], [ -122.149963749999955, 49.028997309000026 ], [ -122.155288577999968, 49.029188269000024 ], [ -122.155186073999943, 49.030431193000084 ], [ -122.15743638099994, 49.030511814000185 ], [ -122.157364063999978, 49.031389161000035 ], [ -122.157139964999928, 49.034107758000111 ], [ -122.151684475999929, 49.033912226000062 ], [ -122.151787079999963, 49.032669312000053 ], [ -122.150924754999949, 49.032638379000048 ], [ -122.150813511999942, 49.033985628000025 ], [ -122.150788518999931, 49.034288311000104 ], [ -122.145333033999933, 49.034092456000053 ], [ -122.145358062999975, 49.033789773000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13326167", "BldgCostT": "8926667", "sL_LossRatio": "0.809777347531462", "sL_AssetLoss": "66112", "sL_BldgLoss": "53536", "sL_StrLoss": "34578", "sL_NStrLoss": "18958", "sL_ContLoss": "12576", "geom_point": "0101000020E61000000920C6B5EB875EC0A02CA5FCDE824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.113891582999926, 49.027702431000122 ], [ -122.114134249999964, 49.024790965000093 ], [ -122.11340994599999, 49.024764725000047 ], [ -122.113709671, 49.021168850000066 ], [ -122.119163510999954, 49.021366315000115 ], [ -122.118930369999958, 49.024167342000098 ], [ -122.11979354199994, 49.024198569000127 ], [ -122.11999898399999, 49.021729803000042 ], [ -122.120021258999941, 49.021730609000087 ], [ -122.120143259999935, 49.020264402000102 ], [ -122.120442621999985, 49.020275230000095 ], [ -122.120480670999967, 49.019817909000075 ], [ -122.121840092999918, 49.019867070000082 ], [ -122.121856731999969, 49.019667003000094 ], [ -122.120549524, 49.019619730000073 ], [ -122.120606205999962, 49.01893840000011 ], [ -122.120142350999942, 49.01892162200005 ], [ -122.12034044399995, 49.0165406590001 ], [ -122.127701267999925, 49.016919224000063 ], [ -122.128088855, 49.016939153000102 ], [ -122.128329926999982, 49.01688474000008 ], [ -122.129272129999933, 49.016851105000043 ], [ -122.13305957599999, 49.016864816000059 ], [ -122.133002170999944, 49.017557087000085 ], [ -122.132856285999964, 49.017551827000048 ], [ -122.132720248999959, 49.019192190000105 ], [ -122.130558580999946, 49.01911422600007 ], [ -122.130535035999927, 49.019397965000088 ], [ -122.131663636000027, 49.019438675000067 ], [ -122.131543070999939, 49.020891988000102 ], [ -122.131941916999921, 49.020906372000077 ], [ -122.131643598999958, 49.024502300000037 ], [ -122.130518323999951, 49.024461714000083 ], [ -122.130331567999917, 49.026711925000079 ], [ -122.130310602999927, 49.026711169000087 ], [ -122.130280585999969, 49.027072824000157 ], [ -122.130123410999886, 49.027067155000083 ], [ -122.130060917999984, 49.027820027000082 ], [ -122.128265654, 49.027755250000091 ], [ -122.124606278, 49.027623118000086 ], [ -122.1247819699999, 49.025509410000097 ], [ -122.120767249999986, 49.025364302000106 ], [ -122.12056183299994, 49.027833056000084 ], [ -122.11935538199999, 49.027789421000129 ], [ -122.119346186999948, 49.027899884000092 ], [ -122.113891582999926, 49.027702431000122 ] ], [ [ -122.125999937999921, 49.021769963000054 ], [ -122.126022913999947, 49.02149341100008 ], [ -122.125816213999911, 49.021485945000052 ], [ -122.125793237, 49.021762497000083 ], [ -122.125999937999921, 49.021769963000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.942503243084906", "sL_AssetLoss": "4779.4", "sL_BldgLoss": "4504.6", "sL_StrLoss": "3408.6", "sL_NStrLoss": "1096", "sL_ContLoss": "274.8", "geom_point": "0101000020E610000028E1199F8F865EC0BB3FE61C1F834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.100306015999976, 49.027254768000013 ], [ -122.100444875999941, 49.025594604000041 ], [ -122.098495556999978, 49.025523725000056 ], [ -122.098796434999926, 49.021927895000097 ], [ -122.100347808999942, 49.021984308000093 ], [ -122.100385591999938, 49.021532532000087 ], [ -122.105839417999945, 49.021730674000025 ], [ -122.105663027999967, 49.023842631000022 ], [ -122.106060840999959, 49.023857074000084 ], [ -122.105760509999968, 49.027452912000051 ], [ -122.100306015999976, 49.027254768000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.850600343053173", "sL_AssetLoss": "11660", "sL_BldgLoss": "9918", "sL_StrLoss": "6222", "sL_NStrLoss": "3696", "sL_ContLoss": "1742", "geom_point": "0101000020E6100000DD7EF96405885EC0DFD83720D7844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.121448663999956, 49.040577499000065 ], [ -122.121586634999957, 49.038919476000046 ], [ -122.121518268999978, 49.038917005 ], [ -122.12181746, 49.035321187000086 ], [ -122.124342333999948, 49.035412417000046 ], [ -122.124355459999933, 49.0352545470001 ], [ -122.12486798, 49.035273059000055 ], [ -122.12981099199996, 49.035451467000037 ], [ -122.129512414999937, 49.039047308000079 ], [ -122.127055699999957, 49.038958666000049 ], [ -122.12690480699996, 49.040774565000092 ], [ -122.12489812799997, 49.040702120000041 ], [ -122.121448663999956, 49.040577499000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.862283580400588", "sL_AssetLoss": "8837", "sL_BldgLoss": "7620", "sL_StrLoss": "4690", "sL_NStrLoss": "2930", "sL_ContLoss": "1217", "geom_point": "0101000020E610000098C79220398A5EC0B1BBC481A5824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.158481545999976, 49.017691715000112 ], [ -122.161603118999906, 49.017803474000068 ], [ -122.161603869999951, 49.020668202000067 ], [ -122.161603887999917, 49.020749147000096 ], [ -122.161603918999944, 49.020857062000097 ], [ -122.16160394799995, 49.020902154000026 ], [ -122.161604590999929, 49.023382149000092 ], [ -122.157489245999926, 49.023234810000062 ], [ -122.157785565, 49.019638804000053 ], [ -122.15831956699995, 49.019657931000118 ], [ -122.158481545999976, 49.017691715000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.847011144883485", "sL_AssetLoss": "9870", "sL_BldgLoss": "8360", "sL_StrLoss": "4930", "sL_NStrLoss": "3430", "sL_ContLoss": "1510", "geom_point": "0101000020E610000045B75ED3438A5EC038C1D422E4834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.158131414999943, 49.0313932500001 ], [ -122.158326923999965, 49.029020744 ], [ -122.159262170999966, 49.029054231000053 ], [ -122.15943049, 49.027010966000013 ], [ -122.161605553999948, 49.027088811000063 ], [ -122.161606677999927, 49.031411701000081 ], [ -122.16359957099999, 49.031431286000036 ], [ -122.163485951999988, 49.032811910000099 ], [ -122.161610126999946, 49.03274481800004 ], [ -122.158030587, 49.032616700000062 ], [ -122.158131414999943, 49.0313932500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.81132751822201", "sL_AssetLoss": "8369", "sL_BldgLoss": "6790", "sL_StrLoss": "3870", "sL_NStrLoss": "2920", "sL_ContLoss": "1579", "geom_point": "0101000020E61000004F7D7B329A8B5EC0A81CB4D3E6834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.179005871999948, 49.029263842000056 ], [ -122.18370928799996, 49.029431254 ], [ -122.18370390299998, 49.031626501000062 ], [ -122.178816079999962, 49.031579432000058 ], [ -122.179005871999948, 49.029263842000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724167", "BldgCostT": "6016667", "sL_LossRatio": "0.850850115145279", "sL_AssetLoss": "40818", "sL_BldgLoss": "34730", "sL_StrLoss": "21930", "sL_NStrLoss": "12800", "sL_ContLoss": "6088", "geom_point": "0101000020E610000015AABC99E88B5EC09BA401D522824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.180405829, 49.022461126000046 ], [ -122.180521958, 49.021043407000064 ], [ -122.179134572999928, 49.020993996000094 ], [ -122.179410266999952, 49.017629153000073 ], [ -122.177617127999952, 49.017565264000076 ], [ -122.177663324999969, 49.017001660000091 ], [ -122.177911860999956, 49.01396917000006 ], [ -122.183365128999966, 49.014163377000102 ], [ -122.183269469999956, 49.015332264000094 ], [ -122.183518699999979, 49.015341134000046 ], [ -122.183521861, 49.015302509000037 ], [ -122.184022229999982, 49.015320314000029 ], [ -122.184023038999925, 49.015310422 ], [ -122.18869806, 49.015476657000065 ], [ -122.188911274999938, 49.012867532000087 ], [ -122.194364460999935, 49.01306117900004 ], [ -122.194338137000017, 49.013383770000054 ], [ -122.194717585999953, 49.013397234000116 ], [ -122.195256550999929, 49.013416357000089 ], [ -122.195091130999955, 49.015443983000125 ], [ -122.198240972999912, 49.015555682000077 ], [ -122.198217412999938, 49.015844695000069 ], [ -122.19823119199999, 49.015845184000106 ], [ -122.198131983999971, 49.017062132000035 ], [ -122.194747288999935, 49.017049120000117 ], [ -122.189902196999967, 49.017035804000045 ], [ -122.189918732, 49.016833423000044 ], [ -122.189509507999944, 49.016818885000099 ], [ -122.189535866999947, 49.016496297000089 ], [ -122.189395841999954, 49.01649132200005 ], [ -122.18935147699996, 49.017034278000075 ], [ -122.183739790999937, 49.017018601000053 ], [ -122.183726123999989, 49.022579304000033 ], [ -122.180405829, 49.022461126000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3842500", "BldgCostT": "2650000", "sL_LossRatio": "0.962761126248865", "sL_AssetLoss": "5835.3", "sL_BldgLoss": "5618", "sL_StrLoss": "4668", "sL_NStrLoss": "950", "sL_ContLoss": "217.3", "geom_point": "0101000020E6100000ABC93AB932885EC091F4C4CEEF814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.126152713999915, 49.014573642000087 ], [ -122.126315630999954, 49.012612228000059 ], [ -122.131768525999959, 49.012809055000048 ], [ -122.131677821999986, 49.013902605000091 ], [ -122.131896560999976, 49.013910494000079 ], [ -122.133300341999956, 49.013961117000044 ], [ -122.13305957599999, 49.016864816000059 ], [ -122.129272129999933, 49.016851105000043 ], [ -122.128329926999982, 49.01688474000008 ], [ -122.128088855, 49.016939153000102 ], [ -122.127701267999925, 49.016919224000063 ], [ -122.12034044399995, 49.0165406590001 ], [ -122.120441519999957, 49.015325695000115 ], [ -122.124904073999943, 49.015487030000024 ], [ -122.124983479999912, 49.01453140100007 ], [ -122.126152713999915, 49.014573642000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.833594681051245", "sL_AssetLoss": "15943", "sL_BldgLoss": "13290", "sL_StrLoss": "7460", "sL_NStrLoss": "5830", "sL_ContLoss": "2653", "geom_point": "0101000020E61000007C5B76A94D8E5EC0DF53D6C26E804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.22593011, 49.00530220800006 ], [ -122.225988576999967, 49.004579537000041 ], [ -122.225654325999983, 49.004567772 ], [ -122.225651216999921, 49.004606200000076 ], [ -122.220198888999974, 49.004414138000094 ], [ -122.220206566999963, 49.004319384000027 ], [ -122.21836043199994, 49.004254290000056 ], [ -122.218360929999946, 49.004248154000038 ], [ -122.217170392999932, 49.004206159000056 ], [ -122.217324094, 49.002310657000109 ], [ -122.221000557999957, 49.002334371000096 ], [ -122.222546482, 49.002394986000134 ], [ -122.227540683999962, 49.002331058000046 ], [ -122.229036670000013, 49.00231293900007 ], [ -122.231324894999972, 49.002285182000072 ], [ -122.230859607999946, 49.002458289000053 ], [ -122.230446273999945, 49.002548399000013 ], [ -122.230402232999921, 49.002577994000077 ], [ -122.229420852999979, 49.003236838000085 ], [ -122.227722682999982, 49.004376792000087 ], [ -122.227512205999957, 49.004518093000101 ], [ -122.227314052999972, 49.004616296000044 ], [ -122.22593011, 49.00530220800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899584", "BldgCostT": "4758334", "sL_LossRatio": "0.829779090113736", "sL_AssetLoss": "36576", "sL_BldgLoss": "30350", "sL_StrLoss": "18380", "sL_NStrLoss": "11970", "sL_ContLoss": "6226", "geom_point": "0101000020E6100000D0D25788758C5EC0CD721B05EF804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.192195714999968, 49.011804369000075 ], [ -122.192210719999949, 49.011620578000034 ], [ -122.191094586999895, 49.01158094100002 ], [ -122.191245842999976, 49.00972871800009 ], [ -122.191354324999935, 49.008400197000107 ], [ -122.191000980999945, 49.008387647000092 ], [ -122.191294624999941, 49.004791465000075 ], [ -122.192189612999968, 49.004823251000104 ], [ -122.192384211, 49.002439185000121 ], [ -122.197836192999944, 49.002632659000042 ], [ -122.197812030999927, 49.002929100000095 ], [ -122.198216697999896, 49.002943449000085 ], [ -122.197923599, 49.006539661000019 ], [ -122.197782262999951, 49.006534649000095 ], [ -122.197727346999969, 49.007208356000035 ], [ -122.197823674999938, 49.007211771000087 ], [ -122.197727300999958, 49.008394060000072 ], [ -122.197941943999965, 49.008401671000087 ], [ -122.19764878899997, 49.011997851000061 ], [ -122.194705334999952, 49.011893448000109 ], [ -122.192195714999968, 49.011804369000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.850926672038678", "sL_AssetLoss": "6205", "sL_BldgLoss": "5280", "sL_StrLoss": "3150", "sL_NStrLoss": "2130", "sL_ContLoss": "925", "geom_point": "0101000020E610000091824466708A5EC011825D66BB834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.161605553999948, 49.027088811000063 ], [ -122.164885204999948, 49.027206107000097 ], [ -122.164589385999989, 49.030802090000115 ], [ -122.163654099999945, 49.030768650000027 ], [ -122.16359957099999, 49.031431286000036 ], [ -122.161606677999927, 49.031411701000081 ], [ -122.161605553999948, 49.027088811000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71202251", "BldgCostT": "46630001", "sL_LossRatio": "0.792552867328905", "sL_AssetLoss": "360998", "sL_BldgLoss": "286110", "sL_StrLoss": "175226", "sL_NStrLoss": "110884", "sL_ContLoss": "74888", "geom_point": "0101000020E6100000B4479837418A5EC0E7FEB0C655814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.161603869999951, 49.020668202000067 ], [ -122.161603118999906, 49.017803474000068 ], [ -122.161905570999949, 49.017814298000083 ], [ -122.16195612599995, 49.01720004200007 ], [ -122.161602959999982, 49.01719747700006 ], [ -122.161602895999977, 49.016954509000108 ], [ -122.161149173999974, 49.016953207000029 ], [ -122.161158728999936, 49.016384633000065 ], [ -122.162022716999942, 49.016390910000034 ], [ -122.162099919999932, 49.015452796000076 ], [ -122.162671382000028, 49.015473243000045 ], [ -122.16267920199999, 49.015378209000012 ], [ -122.163263274999906, 49.015399105000029 ], [ -122.163269781999958, 49.015320023000072 ], [ -122.164332205999983, 49.01535802500009 ], [ -122.16433223599995, 49.015357649000087 ], [ -122.169182235999969, 49.015530994000102 ], [ -122.169250363999979, 49.014701585000061 ], [ -122.169173696999934, 49.014698846000044 ], [ -122.169446642999944, 49.011375733000065 ], [ -122.164471963999972, 49.011197924000037 ], [ -122.164423827999926, 49.011783249000089 ], [ -122.158970917999966, 49.011588081000056 ], [ -122.158990897999928, 49.01134546 ], [ -122.158123485999965, 49.011314387000091 ], [ -122.158107356, 49.0115102030001 ], [ -122.154025116999961, 49.011363877000129 ], [ -122.153999139999925, 49.011678901000089 ], [ -122.154009044999952, 49.011679256000043 ], [ -122.153828623999956, 49.013867081000051 ], [ -122.154271270999985, 49.013882955000085 ], [ -122.154237726999966, 49.01428975500005 ], [ -122.155854343, 49.014347714000067 ], [ -122.155754055, 49.015564378000143 ], [ -122.155780318999931, 49.015565319000061 ], [ -122.15566722199999, 49.016937320000096 ], [ -122.151624562999956, 49.016925425000132 ], [ -122.151392081999958, 49.016924725000131 ], [ -122.151268993999935, 49.016924357000093 ], [ -122.151111992999958, 49.016923898000059 ], [ -122.149026120999935, 49.016917494000019 ], [ -122.145982478999912, 49.016908103000063 ], [ -122.146096466999921, 49.015528811000053 ], [ -122.147163090999939, 49.015567134000079 ], [ -122.147177547999917, 49.015392144000103 ], [ -122.147122151999909, 49.015390154000052 ], [ -122.147265266999938, 49.013657806000033 ], [ -122.147030054999973, 49.013649356000052 ], [ -122.147089444999949, 49.012930486000087 ], [ -122.147088701999962, 49.012930459000081 ], [ -122.147198292000013, 49.011603864000087 ], [ -122.146961578999978, 49.011595360000044 ], [ -122.146997343999885, 49.011162443000032 ], [ -122.146931003999953, 49.011160059000076 ], [ -122.147049528999958, 49.009725318000093 ], [ -122.146095664999976, 49.009691042000064 ], [ -122.146163611, 49.008868722000102 ], [ -122.146080715, 49.00886574300003 ], [ -122.146101681999966, 49.008611998000099 ], [ -122.144098662999937, 49.008539991000056 ], [ -122.144138679999955, 49.008055923000079 ], [ -122.143631377999981, 49.008037680000044 ], [ -122.143687089999958, 49.007363823000105 ], [ -122.142725380999963, 49.007329233000092 ], [ -122.142587086999981, 49.009001483000141 ], [ -122.142219474999948, 49.00898825900007 ], [ -122.142166305, 49.009631091000095 ], [ -122.141443113999955, 49.009605072000056 ], [ -122.141394904999942, 49.010187808000047 ], [ -122.141276891999937, 49.010183561000076 ], [ -122.141170149999979, 49.01147372200009 ], [ -122.142455456000022, 49.011519965000069 ], [ -122.142158007999981, 49.015115975000064 ], [ -122.141375195999927, 49.015087813000093 ], [ -122.141225809, 49.016893251000106 ], [ -122.13946739299999, 49.016887708000041 ], [ -122.134406352999974, 49.016869659000108 ], [ -122.134527143999946, 49.015412433000073 ], [ -122.135824164999988, 49.015459173000075 ], [ -122.135839752999985, 49.015271032000101 ], [ -122.135651441000022, 49.01526424700004 ], [ -122.135715380999955, 49.01449261100003 ], [ -122.1350721699999, 49.014469433000045 ], [ -122.135341040999933, 49.011224851000101 ], [ -122.135370158999976, 49.010873439000072 ], [ -122.135749706999903, 49.010887116000099 ], [ -122.135861211999924, 49.009541247000115 ], [ -122.135979224, 49.009545500000051 ], [ -122.136240170999926, 49.006395447000067 ], [ -122.136963309999928, 49.006421502000052 ], [ -122.137011570999974, 49.005838765000128 ], [ -122.137379156999941, 49.005852007000087 ], [ -122.137432387999922, 49.005209172000022 ], [ -122.139292695999956, 49.00527617200008 ], [ -122.139431095999925, 49.003603916000017 ], [ -122.139945988999969, 49.003622454000038 ], [ -122.139977393999914, 49.003242928000084 ], [ -122.14063842399996, 49.003266724000106 ], [ -122.140689897999934, 49.002644543000038 ], [ -122.141681779999914, 49.002680242000089 ], [ -122.141716279, 49.002263132000117 ], [ -122.143309349999939, 49.00226618900011 ], [ -122.14958848199997, 49.002298151000076 ], [ -122.14941411199996, 49.004410632000045 ], [ -122.14823756499996, 49.004368373000027 ], [ -122.148230885999922, 49.004449253000054 ], [ -122.150939416999961, 49.004546519000051 ], [ -122.150866442, 49.005430914000087 ], [ -122.151829941999964, 49.005465498000035 ], [ -122.151814812999959, 49.005648891000092 ], [ -122.152633778999942, 49.005678279000151 ], [ -122.152909318999946, 49.00233733500005 ], [ -122.153175184999938, 49.002346875000086 ], [ -122.153177709999937, 49.002316257000089 ], [ -122.156204414999976, 49.00233143100008 ], [ -122.15915234799999, 49.002390371000068 ], [ -122.159176813999949, 49.002393833000063 ], [ -122.159279010999967, 49.002383403000117 ], [ -122.159619890999977, 49.002383017000149 ], [ -122.159487139999939, 49.003995528000054 ], [ -122.159924058999962, 49.004011177000045 ], [ -122.159781562999967, 49.005742100000056 ], [ -122.160816433999969, 49.005779158000053 ], [ -122.160790970999969, 49.006088548000015 ], [ -122.163192172999928, 49.006174496000092 ], [ -122.163138491999931, 49.006827117000093 ], [ -122.164688161999891, 49.006882557000026 ], [ -122.164635576999913, 49.007522081000118 ], [ -122.164707783999958, 49.007524664000059 ], [ -122.164763110999971, 49.006851759000085 ], [ -122.164642515999972, 49.006847445000048 ], [ -122.164938180999911, 49.003251327000093 ], [ -122.170390143, 49.003446195000045 ], [ -122.170243861999964, 49.005227994000066 ], [ -122.170364453999952, 49.005232301000142 ], [ -122.170310775999965, 49.005886119000088 ], [ -122.170383092999927, 49.005888702000078 ], [ -122.170263877999943, 49.00734073200006 ], [ -122.171108256999958, 49.007370887000036 ], [ -122.170955932999959, 49.009226474000059 ], [ -122.172408813999979, 49.00927834200008 ], [ -122.172483990999936, 49.008362223000063 ], [ -122.174884160999966, 49.008447867000051 ], [ -122.174900298999916, 49.008251082000122 ], [ -122.175532627999985, 49.008273635000059 ], [ -122.175540477999974, 49.008177897000095 ], [ -122.178751395999953, 49.008292366000063 ], [ -122.178771252999979, 49.008049974000116 ], [ -122.17896927000001, 49.008057030000039 ], [ -122.178995743999934, 49.00773386200003 ], [ -122.175317457999967, 49.007602729000055 ], [ -122.175448323999944, 49.006006673000051 ], [ -122.173873606999962, 49.005950495000029 ], [ -122.17416763599999, 49.002365554000086 ], [ -122.174471825999959, 49.002365167000107 ], [ -122.179620450999906, 49.00254874500007 ], [ -122.179489736999983, 49.00414481500011 ], [ -122.181064398999936, 49.004200911000076 ], [ -122.180942317999964, 49.005692080000131 ], [ -122.184620469999913, 49.005823021000012 ], [ -122.184326305999932, 49.009419179000041 ], [ -122.184128281999989, 49.00941213300009 ], [ -122.18410341299996, 49.009716118000021 ], [ -122.18407122399995, 49.010109547000077 ], [ -122.188724393999934, 49.010275024000066 ], [ -122.188430518999894, 49.013871168000044 ], [ -122.182977262999941, 49.013677219000094 ], [ -122.183129926, 49.011811822 ], [ -122.180718449, 49.011725967000061 ], [ -122.180698599999957, 49.011968359000029 ], [ -122.180066217999936, 49.011945835000049 ], [ -122.180058376999952, 49.012041573000012 ], [ -122.177658012, 49.011956046000087 ], [ -122.177641884999971, 49.012152831000066 ], [ -122.175889474999977, 49.012090357 ], [ -122.175814357999954, 49.01300647300009 ], [ -122.174861466999971, 49.012972490000088 ], [ -122.174847888999977, 49.013138042000044 ], [ -122.174905574999983, 49.013140100000101 ], [ -122.174655775999923, 49.016185642000025 ], [ -122.174901561999917, 49.016194408000075 ], [ -122.174836004999975, 49.016993666000104 ], [ -122.174606582999928, 49.01979048200014 ], [ -122.174553981999949, 49.019788606000077 ], [ -122.174433657999927, 49.021255282000048 ], [ -122.172439596999951, 49.021184144000117 ], [ -122.16897959899994, 49.021060624000015 ], [ -122.169028995999938, 49.020459366000075 ], [ -122.168921433999941, 49.02045552400002 ], [ -122.169030153, 49.019132174000063 ], [ -122.169015046999931, 49.019131635000029 ], [ -122.169011622999975, 49.019173318000121 ], [ -122.167840178999981, 49.01913147 ], [ -122.16783707399999, 49.019169246000075 ], [ -122.167265565999941, 49.019148826000041 ], [ -122.167257754999952, 49.019243859000056 ], [ -122.165951087999943, 49.019197160000026 ], [ -122.165685965999927, 49.022421488000113 ], [ -122.16303430899994, 49.02232667000002 ], [ -122.162943511999941, 49.023430050000101 ], [ -122.161604590999929, 49.023382149000092 ], [ -122.16160394799995, 49.020902154000026 ], [ -122.161603918999944, 49.020857062000097 ], [ -122.161603887999917, 49.020749147000096 ], [ -122.161603869999951, 49.020668202000067 ] ], [ [ -122.170498573999936, 49.01113952800015 ], [ -122.170513617, 49.0109563070001 ], [ -122.169573578999973, 49.010922734000069 ], [ -122.169558532999986, 49.01110595500009 ], [ -122.170498573999936, 49.01113952800015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12925001", "BldgCostT": "8650001", "sL_LossRatio": "0.806125629345481", "sL_AssetLoss": "83420", "sL_BldgLoss": "67247", "sL_StrLoss": "40930", "sL_NStrLoss": "26317", "sL_ContLoss": "16173", "geom_point": "0101000020E6100000E3D34ABE658D5EC0D77E42A898814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.203482701999945, 49.017057958000123 ], [ -122.20359754099999, 49.015647279000106 ], [ -122.202308148999975, 49.015601631000038 ], [ -122.202504848999922, 49.013185964000101 ], [ -122.200602639999914, 49.013118591000129 ], [ -122.200895574999947, 49.009522410000116 ], [ -122.203283828999957, 49.009606992000109 ], [ -122.203466889999902, 49.007357966000029 ], [ -122.205379302999916, 49.007425657000041 ], [ -122.205393217999955, 49.00725461100005 ], [ -122.210845814999971, 49.007447423000038 ], [ -122.210553659999988, 49.011043644000068 ], [ -122.208641092, 49.010976045000113 ], [ -122.20862718799999, 49.011147090000087 ], [ -122.206238844, 49.011062627000022 ], [ -122.206151930999937, 49.012131136000029 ], [ -122.208054109, 49.012198411000035 ], [ -122.207939413999924, 49.013609102000082 ], [ -122.209228755999945, 49.013654683000027 ], [ -122.209081741999981, 49.01546335700003 ], [ -122.212878519999919, 49.015597489000079 ], [ -122.213101694999949, 49.012849013000078 ], [ -122.213129417999951, 49.012849992000092 ], [ -122.213156510999937, 49.012516313000127 ], [ -122.215921592999919, 49.012613913000081 ], [ -122.216035667, 49.011207879000054 ], [ -122.217994432999944, 49.011276974000054 ], [ -122.218127868999957, 49.009631324000118 ], [ -122.218951122999968, 49.009660354000061 ], [ -122.219065207999932, 49.008252943000102 ], [ -122.222397678, 49.008370389000049 ], [ -122.222219055999958, 49.00867334800008 ], [ -122.221862508999962, 49.009278102000088 ], [ -122.221216061999925, 49.010019445000111 ], [ -122.221053181999963, 49.01020619300008 ], [ -122.220119890999939, 49.011549204000055 ], [ -122.218577776999922, 49.012647266000066 ], [ -122.218097229999941, 49.012989419000121 ], [ -122.217312302999929, 49.013548290000095 ], [ -122.216749498999917, 49.014132495000098 ], [ -122.216322600999945, 49.015350006000048 ], [ -122.21677641499997, 49.016069869000084 ], [ -122.216930695, 49.016314595000019 ], [ -122.21694741499999, 49.016550191000107 ], [ -122.216955050999943, 49.016657361000114 ], [ -122.216967802999974, 49.016836777000037 ], [ -122.216986899999981, 49.017105492000034 ], [ -122.214575482999976, 49.017102553000065 ], [ -122.214600882999889, 49.01678962600009 ], [ -122.214369217999931, 49.016781449000064 ], [ -122.214343173999978, 49.017102268000095 ], [ -122.205871511999987, 49.017091495000081 ], [ -122.204258647999893, 49.017085421000075 ], [ -122.203482701999945, 49.017057958000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283334", "BldgCostT": "4333334", "sL_LossRatio": "0.839146044364662", "sL_AssetLoss": "31196", "sL_BldgLoss": "26178", "sL_StrLoss": "16540", "sL_NStrLoss": "9638", "sL_ContLoss": "5018", "geom_point": "0101000020E61000007AC39EF2FF8A5EC037AA2E3B9F834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.170335397999963, 49.029962619000081 ], [ -122.170445086, 49.028627280000109 ], [ -122.168905233, 49.028572302000072 ], [ -122.169003872999937, 49.027371884000019 ], [ -122.168959708999978, 49.027370306000108 ], [ -122.169255169999971, 49.023774292000027 ], [ -122.172469556999985, 49.02388903300006 ], [ -122.174709547999925, 49.023968934000038 ], [ -122.17461106099995, 49.025169364000078 ], [ -122.17465522400002, 49.025170938 ], [ -122.174389425999891, 49.028410415000039 ], [ -122.175929281999956, 49.028465314000087 ], [ -122.175859444999944, 49.02931673100008 ], [ -122.177244188999936, 49.02936608100007 ], [ -122.177064082999905, 49.031562506000093 ], [ -122.172554094999938, 49.031518804000044 ], [ -122.167848407999927, 49.031472898000111 ], [ -122.165509254999989, 49.03145001700004 ], [ -122.165302229999966, 49.031447988000089 ], [ -122.16543879299999, 49.029787718000115 ], [ -122.170335397999963, 49.029962619000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.825162433549911", "sL_AssetLoss": "16930", "sL_BldgLoss": "13970", "sL_StrLoss": "7710", "sL_NStrLoss": "6260", "sL_ContLoss": "2960", "geom_point": "0101000020E61000004C48D6A7FD8E5EC07AB041367B804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.234464664999962, 49.002247005000065 ], [ -122.241242264999983, 49.002294725000077 ], [ -122.241229170999958, 49.002457229000044 ], [ -122.24104455, 49.004748530000029 ], [ -122.23636111699993, 49.004584245000053 ], [ -122.236345659999984, 49.004775842000065 ], [ -122.23145445899999, 49.004604050000061 ], [ -122.231366108999964, 49.005697659000148 ], [ -122.225913630999969, 49.005505889000112 ], [ -122.22593011, 49.00530220800006 ], [ -122.227314052999972, 49.004616296000044 ], [ -122.227512205999957, 49.004518093000101 ], [ -122.227722682999982, 49.004376792000087 ], [ -122.229420852999979, 49.003236838000085 ], [ -122.230402232999921, 49.002577994000077 ], [ -122.230446273999945, 49.002548399000013 ], [ -122.230859607999946, 49.002458289000053 ], [ -122.231324894999972, 49.002285182000072 ], [ -122.234464664999962, 49.002247005000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.83919798167574", "sL_AssetLoss": "7531", "sL_BldgLoss": "6320", "sL_StrLoss": "3630", "sL_NStrLoss": "2690", "sL_ContLoss": "1211", "geom_point": "0101000020E61000005051F52BDD8F5EC02D584F5285814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.246274533999937, 49.014298411000112 ], [ -122.246310006999963, 49.013857648000055 ], [ -122.245882947000013, 49.01384270100003 ], [ -122.246172397999942, 49.0102464 ], [ -122.246568938999957, 49.010260279000107 ], [ -122.246606805999946, 49.009789710000085 ], [ -122.247469234999983, 49.00981989100007 ], [ -122.247537912, 49.00896623000007 ], [ -122.249476710999943, 49.009034054000054 ], [ -122.249440915999926, 49.009873808000094 ], [ -122.24947611799999, 49.010954709000053 ], [ -122.249588838999941, 49.014414358000103 ], [ -122.246274533999937, 49.014298411000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6617500", "BldgCostT": "4300000", "sL_LossRatio": "0.765281757402101", "sL_AssetLoss": "41880", "sL_BldgLoss": "32050", "sL_StrLoss": "21100", "sL_NStrLoss": "10950", "sL_ContLoss": "9830", "geom_point": "0101000020E6100000D5894F2A2F8E5EC0938A1068FA814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.217312643999918, 49.020017656000043 ], [ -122.217322908999961, 49.019363120000058 ], [ -122.215371098999952, 49.019294270000074 ], [ -122.21542624199995, 49.01861480400003 ], [ -122.214455508999933, 49.01858054700012 ], [ -122.214575482999976, 49.017102553000065 ], [ -122.216986899999981, 49.017105492000034 ], [ -122.216967802999974, 49.016836777000037 ], [ -122.216955050999943, 49.016657361000114 ], [ -122.21694741499999, 49.016550191000107 ], [ -122.216930695, 49.016314595000019 ], [ -122.21677641499997, 49.016069869000084 ], [ -122.216322600999945, 49.015350006000048 ], [ -122.216749498999917, 49.014132495000098 ], [ -122.217312302999929, 49.013548290000095 ], [ -122.218097229999941, 49.012989419000121 ], [ -122.218577776999922, 49.012647266000066 ], [ -122.220119890999939, 49.011549204000055 ], [ -122.221053181999963, 49.01020619300008 ], [ -122.221216061999925, 49.010019445000111 ], [ -122.221862508999962, 49.009278102000088 ], [ -122.222219055999958, 49.00867334800008 ], [ -122.222397678, 49.008370389000049 ], [ -122.22451797799998, 49.008445060000085 ], [ -122.224226869999939, 49.0120413120001 ], [ -122.223403571999967, 49.012012323000064 ], [ -122.223289606999941, 49.013419731000091 ], [ -122.221330742999982, 49.013350731000038 ], [ -122.221218535999967, 49.014735628000054 ], [ -122.223428548999891, 49.01481347100011 ], [ -122.223438573999957, 49.014689668000138 ], [ -122.228892113999933, 49.014881560000099 ], [ -122.228720222, 49.017007283000048 ], [ -122.22860130399998, 49.018477788000084 ], [ -122.226265728999977, 49.018395641 ], [ -122.22625571, 49.018519445000067 ], [ -122.222974764999947, 49.01840396000005 ], [ -122.222905614999959, 49.01925772200007 ], [ -122.22119530499999, 49.019197482000038 ], [ -122.221178053999921, 49.019410363000134 ], [ -122.220832306999981, 49.019398182000018 ], [ -122.220825142999914, 49.019486571000094 ], [ -122.21909278399994, 49.019425521000123 ], [ -122.218963292999931, 49.019420957000136 ], [ -122.218953781999986, 49.020028776000068 ], [ -122.217312643999918, 49.020017656000043 ] ], [ [ -122.221060789999939, 49.015130778000135 ], [ -122.221072039, 49.014991959000071 ], [ -122.220414902999977, 49.014968802000077 ], [ -122.220403651999945, 49.015107622000073 ], [ -122.221060789999939, 49.015130778000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.833225848058816", "sL_AssetLoss": "7753", "sL_BldgLoss": "6460", "sL_StrLoss": "3650", "sL_NStrLoss": "2810", "sL_ContLoss": "1293", "geom_point": "0101000020E6100000EAF9C364E48F5EC0B9E85C38AD804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.247054394999935, 49.00888414500006 ], [ -122.24729410599997, 49.005904595000125 ], [ -122.247238784999979, 49.005902659000093 ], [ -122.247338209999924, 49.004666729000064 ], [ -122.24621842599997, 49.004627535000054 ], [ -122.246393129999916, 49.002456327000026 ], [ -122.246403232999967, 49.002330774000036 ], [ -122.24910243, 49.00234953000011 ], [ -122.25393768, 49.002337951000065 ], [ -122.253928805999976, 49.002448449000021 ], [ -122.253445300999928, 49.002449289 ], [ -122.252857271999943, 49.002450313000089 ], [ -122.249757115999927, 49.002455604000012 ], [ -122.249579592999936, 49.006620271000081 ], [ -122.249569242999954, 49.006863195000044 ], [ -122.249522855999956, 49.007951500000047 ], [ -122.249479485999984, 49.008968988000113 ], [ -122.247054394999935, 49.00888414500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.853354134165367", "sL_AssetLoss": "6410", "sL_BldgLoss": "5470", "sL_StrLoss": "3270", "sL_NStrLoss": "2200", "sL_ContLoss": "940", "geom_point": "0101000020E610000086526274CC8B5EC0C9F36C9899854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.182199385999922, 49.044519308000147 ], [ -122.18254304099996, 49.043414751000064 ], [ -122.182719282999955, 49.042848191000047 ], [ -122.183577504999931, 49.041590305000113 ], [ -122.183677316999947, 49.041290894000042 ], [ -122.183678879999931, 49.040721598000097 ], [ -122.184590521999951, 49.040754014000072 ], [ -122.184571020999897, 49.040992247000062 ], [ -122.186178083999934, 49.041049373000071 ], [ -122.185921412999974, 49.044185935 ], [ -122.186316571999924, 49.044199977000034 ], [ -122.186181684999951, 49.045848328000027 ], [ -122.18479942099998, 49.045879667000122 ], [ -122.184767206999965, 49.045968308000049 ], [ -122.183651703999971, 49.046401189000079 ], [ -122.183219258999941, 49.046694241000111 ], [ -122.183098904999937, 49.046775807000081 ], [ -122.182818089999927, 49.047178901000031 ], [ -122.182658052999955, 49.047676323000182 ], [ -122.18225290299999, 49.04766191300007 ], [ -122.18263702299997, 49.047138763000085 ], [ -122.183096423999928, 49.046513051000048 ], [ -122.183134413999937, 49.046333179000072 ], [ -122.18312598499989, 49.046315392000125 ], [ -122.183073780999962, 49.046204797000023 ], [ -122.182911679999933, 49.045943645000079 ], [ -122.182381204999956, 49.045089209 ], [ -122.182216882999953, 49.044689398000124 ], [ -122.182199385999922, 49.044519308000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.848689632437778", "sL_AssetLoss": "6067", "sL_BldgLoss": "5149", "sL_StrLoss": "3240", "sL_NStrLoss": "1909", "sL_ContLoss": "918", "geom_point": "0101000020E6100000ED3F1980D98B5EC0D80CD36B71844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.183690198, 49.036605424000037 ], [ -122.18370390299998, 49.031626501000062 ], [ -122.18370928799996, 49.029431254 ], [ -122.18446093099999, 49.029457988000061 ], [ -122.184343058999957, 49.030898198000145 ], [ -122.185871771000038, 49.030952554000059 ], [ -122.18583830199999, 49.031361663000055 ], [ -122.185885896999977, 49.031363355000053 ], [ -122.185864200999944, 49.031628550000093 ], [ -122.185795976999913, 49.032462404000064 ], [ -122.186961427999989, 49.032503829000078 ], [ -122.186758928999936, 49.034979448000101 ], [ -122.186983680999973, 49.034987435000069 ], [ -122.186960055, 49.035276264000032 ], [ -122.186689513999951, 49.03858343600011 ], [ -122.183685049999923, 49.038476626000033 ], [ -122.183689102999907, 49.037001222000058 ], [ -122.183690198, 49.036605424000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.827626687536686", "sL_AssetLoss": "20444", "sL_BldgLoss": "16920", "sL_StrLoss": "9450", "sL_NStrLoss": "7470", "sL_ContLoss": "3524", "geom_point": "0101000020E610000044CFDA2BBB8F5EC0A56A79ED6B834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249941988999964, 49.024194817000108 ], [ -122.252169542999951, 49.024272662000023 ], [ -122.251880466999964, 49.027868900000101 ], [ -122.248119034999945, 49.027737424000044 ], [ -122.248078633999981, 49.028239491000136 ], [ -122.245678304999942, 49.028155521 ], [ -122.245255743999977, 49.028140733000079 ], [ -122.245129494999929, 49.029708357000054 ], [ -122.239674155000017, 49.029517293000076 ], [ -122.239964182, 49.025921098000026 ], [ -122.242786926999941, 49.026019995000098 ], [ -122.242913242999975, 49.024452364000119 ], [ -122.246674395999932, 49.024584024000042 ], [ -122.246714809999943, 49.024081954000067 ], [ -122.249941988999964, 49.024194817000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.854098103745494", "sL_AssetLoss": "6381", "sL_BldgLoss": "5450", "sL_StrLoss": "3290", "sL_NStrLoss": "2160", "sL_ContLoss": "931", "geom_point": "0101000020E6100000F1255CE1808C5EC02DB009611C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.19473840299996, 49.022478038 ], [ -122.198240106999961, 49.022602201 ], [ -122.197946885999926, 49.026198301000136 ], [ -122.194732500999976, 49.026084332000082 ], [ -122.192492151999915, 49.02600484000002 ], [ -122.192785790999935, 49.0224087530001 ], [ -122.19473840299996, 49.022478038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.854602510460251", "sL_AssetLoss": "9560", "sL_BldgLoss": "8170", "sL_StrLoss": "4920", "sL_NStrLoss": "3250", "sL_ContLoss": "1390", "geom_point": "0101000020E6100000018FA0DF548D5EC0DAD3271C6E824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.208819691, 49.017767558000102 ], [ -122.208861908999964, 49.017248229000089 ], [ -122.205870877999971, 49.01714246500012 ], [ -122.204258647999893, 49.017085421000075 ], [ -122.205871511999987, 49.017091495000081 ], [ -122.214343173999978, 49.017102268000095 ], [ -122.214168859999972, 49.019249533000099 ], [ -122.209253399999923, 49.019075927000074 ], [ -122.209065870999936, 49.021382749000132 ], [ -122.206484914999962, 49.021291504000018 ], [ -122.203611651999935, 49.02118985100001 ], [ -122.20390440599999, 49.017593706000049 ], [ -122.205864414999937, 49.017663058000068 ], [ -122.208819691, 49.017767558000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.845927209705373", "sL_AssetLoss": "5770", "sL_BldgLoss": "4881", "sL_StrLoss": "3240", "sL_NStrLoss": "1641", "sL_ContLoss": "889", "geom_point": "0101000020E6100000E973DE946C8C5EC0FD0999F157824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.191285102, 49.019577525000066 ], [ -122.191311334999909, 49.01925633300003 ], [ -122.191302722, 49.019256027000047 ], [ -122.19132662799997, 49.018963339000045 ], [ -122.190940228999949, 49.018949618000093 ], [ -122.190940729000019, 49.018943485000108 ], [ -122.189749788999947, 49.01890118500004 ], [ -122.189902196999967, 49.017035804000045 ], [ -122.194747288999935, 49.017049120000117 ], [ -122.198131983999971, 49.017062132000035 ], [ -122.197938012999913, 49.019441322 ], [ -122.197927133999954, 49.019440936000045 ], [ -122.197904525999917, 49.01971822200013 ], [ -122.196746736999955, 49.019677176000066 ], [ -122.19673908, 49.019771050000074 ], [ -122.19474295, 49.019700253000089 ], [ -122.191285102, 49.019577525000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.85", "sL_AssetLoss": "6800", "sL_BldgLoss": "5780", "sL_StrLoss": "3430", "sL_NStrLoss": "2350", "sL_ContLoss": "1020", "geom_point": "0101000020E61000007D53601AA98C5EC03ED8182A35854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.19523978499997, 49.038790261000081 ], [ -122.200696025999903, 49.03898357900006 ], [ -122.200402890999939, 49.042579594000138 ], [ -122.194946230999918, 49.042386262000079 ], [ -122.19523978499997, 49.038790261000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18462083", "BldgCostT": "11258333", "sL_LossRatio": "0.795037477384337", "sL_AssetLoss": "77380", "sL_BldgLoss": "61520", "sL_StrLoss": "33900", "sL_NStrLoss": "27620", "sL_ContLoss": "15860", "geom_point": "0101000020E6100000C1BB097CCD8C5EC094BB110E24844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.197698735999936, 49.035657337 ], [ -122.197704050999945, 49.035592174000037 ], [ -122.193393503999943, 49.035439340000046 ], [ -122.193455879999973, 49.034675477000107 ], [ -122.193172840999935, 49.034665435000143 ], [ -122.193420270999965, 49.031635376000054 ], [ -122.193445271999963, 49.031329185000089 ], [ -122.188500088999945, 49.031153619000087 ], [ -122.1885247069999, 49.03085250600008 ], [ -122.188516707999938, 49.030852221000082 ], [ -122.188810684999936, 49.027256172000108 ], [ -122.19426555099993, 49.027449820000086 ], [ -122.194240971999989, 49.027750937000079 ], [ -122.194248969999961, 49.027751221000095 ], [ -122.193976617999951, 49.03108749300003 ], [ -122.194155238999926, 49.031093829000035 ], [ -122.194309353999984, 49.029205910000037 ], [ -122.19472736499992, 49.029220737000038 ], [ -122.197860509999927, 49.029331820000095 ], [ -122.197872409999931, 49.029185895000047 ], [ -122.203327538999986, 49.029379082000055 ], [ -122.203279483999964, 49.029969171000104 ], [ -122.20389456299992, 49.029990936000118 ], [ -122.204002690999943, 49.028662942000061 ], [ -122.205109135999933, 49.028702085000084 ], [ -122.20945778299992, 49.028855817000085 ], [ -122.209165386999985, 49.032451914000035 ], [ -122.207924128999977, 49.03240805100009 ], [ -122.207858898999973, 49.033209964000037 ], [ -122.209125964999913, 49.033254738000018 ], [ -122.208898351999977, 49.036053616000103 ], [ -122.208833516999931, 49.036850809000093 ], [ -122.203377490999941, 49.03665790400008 ], [ -122.203442419999931, 49.035860714000144 ], [ -122.203461514999944, 49.035626260000065 ], [ -122.203173716999984, 49.035616077000128 ], [ -122.203154619999964, 49.035850531000058 ], [ -122.20301811799996, 49.037526347000082 ], [ -122.197562037999958, 49.037333146000108 ], [ -122.197698735999936, 49.035657337 ] ], [ [ -122.201145954, 49.033853663000052 ], [ -122.20122276799999, 49.032911024000114 ], [ -122.19948322099998, 49.032849421000094 ], [ -122.199471323999902, 49.032995346000142 ], [ -122.199065566999948, 49.032980972000082 ], [ -122.19900060799992, 49.033777686000079 ], [ -122.201145954, 49.033853663000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.835489833641405", "sL_AssetLoss": "4328", "sL_BldgLoss": "3616", "sL_StrLoss": "1893", "sL_NStrLoss": "1723", "sL_ContLoss": "712", "geom_point": "0101000020E6100000D5C93A98E48B5EC0238405FF74824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.183726123999989, 49.022579304000033 ], [ -122.183739790999937, 49.017018601000053 ], [ -122.18935147699996, 49.017034278000075 ], [ -122.18918263799999, 49.019100434000059 ], [ -122.188682225999955, 49.019082654000059 ], [ -122.18868141699997, 49.01909254600006 ], [ -122.188126752999963, 49.019072835000038 ], [ -122.18812359499999, 49.019111459000037 ], [ -122.18476833899993, 49.018992164000096 ], [ -122.184766896999946, 49.019009776000118 ], [ -122.186154228999953, 49.019059115000083 ], [ -122.185860099999971, 49.02265520300012 ], [ -122.183726123999989, 49.022579304000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.843391980360065", "sL_AssetLoss": "9776", "sL_BldgLoss": "8245", "sL_StrLoss": "4980", "sL_NStrLoss": "3265", "sL_ContLoss": "1531", "geom_point": "0101000020E6100000716E7618518F5EC004C3FBA2EB824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.236556223999983, 49.024917323000068 ], [ -122.236619832, 49.024129242000051 ], [ -122.236348365999959, 49.024119718000108 ], [ -122.236638616, 49.020523502000096 ], [ -122.242092891999945, 49.020714722000086 ], [ -122.242029380999981, 49.021502810000101 ], [ -122.242300832999959, 49.021512320000056 ], [ -122.242011013999957, 49.025108546000105 ], [ -122.236556223999983, 49.024917323000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20302251", "BldgCostT": "13505001", "sL_LossRatio": "0.754954802618137", "sL_AssetLoss": "141933", "sL_BldgLoss": "107153", "sL_StrLoss": "56243", "sL_NStrLoss": "50910", "sL_ContLoss": "34780", "geom_point": "0101000020E61000002EA7D289E38F5EC025F51A92C5824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.238438717999927, 49.033843021000052 ], [ -122.238441624999965, 49.033652568000107 ], [ -122.238031226999937, 49.033649859000079 ], [ -122.238037604999974, 49.033232202000121 ], [ -122.238043590999965, 49.03284033000012 ], [ -122.239685158999961, 49.032851157000096 ], [ -122.23968132, 49.033102966000065 ], [ -122.239681044999955, 49.033121001000055 ], [ -122.24214341099993, 49.033137199000109 ], [ -122.242145163999965, 49.033021849000065 ], [ -122.242151609999922, 49.032597513000042 ], [ -122.244613950999977, 49.032613657000105 ], [ -122.244618036999952, 49.0323438140001 ], [ -122.245592868999935, 49.032350190000038 ], [ -122.245849200999942, 49.032351866000106 ], [ -122.245845122999953, 49.032621709000104 ], [ -122.247346874999948, 49.032631515000105 ], [ -122.247507514999981, 49.030635793000073 ], [ -122.248038013999917, 49.030654346000084 ], [ -122.248059205999979, 49.030391006000023 ], [ -122.248727140999947, 49.030414361000076 ], [ -122.248739085999944, 49.030265921000094 ], [ -122.250394390999972, 49.030323784000068 ], [ -122.250416179999903, 49.028873309000041 ], [ -122.250826540999952, 49.028875974000101 ], [ -122.250830592999947, 49.028606130000043 ], [ -122.251651308999911, 49.028611455000032 ], [ -122.251655355999958, 49.02834161100008 ], [ -122.252476067999979, 49.028346931 ], [ -122.252480109999951, 49.028077087000021 ], [ -122.254121525999949, 49.028087708000065 ], [ -122.254097322999897, 49.029706773000051 ], [ -122.252455854999951, 49.029696152000106 ], [ -122.252451811999933, 49.029965996000108 ], [ -122.252041442999925, 49.029963336000058 ], [ -122.252037396999953, 49.030233180000089 ], [ -122.251627024999976, 49.030230520000053 ], [ -122.251624981999939, 49.030366784000101 ], [ -122.254194549999937, 49.030456524000037 ], [ -122.25416421099996, 49.030834132000059 ], [ -122.25451036299999, 49.030846217000061 ], [ -122.254384939999937, 49.032407336000084 ], [ -122.257340099999965, 49.032426390000104 ], [ -122.257336083999974, 49.032696235000081 ], [ -122.258977652999988, 49.032706788000098 ], [ -122.258985668999969, 49.032167099000077 ], [ -122.259396055999929, 49.032169734000071 ], [ -122.259400062999944, 49.031899890000062 ], [ -122.259810446999907, 49.031902523000127 ], [ -122.25981445099994, 49.031632678000079 ], [ -122.260224835999963, 49.031635310000041 ], [ -122.260228836999943, 49.031365465000079 ], [ -122.261049599999964, 49.031370725000052 ], [ -122.261053595999968, 49.031100879000057 ], [ -122.262284733999934, 49.031108757000062 ], [ -122.262288724999976, 49.030838912000064 ], [ -122.262699101999942, 49.030841536000032 ], [ -122.262707078999981, 49.030301845000032 ], [ -122.263117450999971, 49.03030446700005 ], [ -122.26312542099997, 49.029764778000107 ], [ -122.263535788999931, 49.029767398000047 ], [ -122.263550414999941, 49.028776517000068 ], [ -122.26200521899996, 49.028722693000077 ], [ -122.2621313, 49.027150032000073 ], [ -122.261960914999946, 49.027144095000047 ], [ -122.261997819000015, 49.026683780000091 ], [ -122.26186334, 49.02667909500007 ], [ -122.262102983999981, 49.023689782000091 ], [ -122.261839522999978, 49.023680602000113 ], [ -122.262060822999956, 49.020919963000054 ], [ -122.258743886999923, 49.020804327000064 ], [ -122.258880452999946, 49.019102059000048 ], [ -122.253692718999929, 49.01892099700008 ], [ -122.253737751999964, 49.018360418000043 ], [ -122.251253909999917, 49.018273638000089 ], [ -122.251187454000018, 49.019100342000165 ], [ -122.24974973399999, 49.019050085000067 ], [ -122.249638646999955, 49.019046201000045 ], [ -122.249631691999966, 49.01913268000007 ], [ -122.244421459999941, 49.018950382000057 ], [ -122.244406180999974, 49.019140106000108 ], [ -122.242021585999979, 49.019056588000097 ], [ -122.242011885999958, 49.019176963000078 ], [ -122.236557789999935, 49.018985738000062 ], [ -122.23661741599993, 49.018246879000053 ], [ -122.236290931, 49.018235423000164 ], [ -122.236186269999976, 49.019532202000057 ], [ -122.233735877999948, 49.019446192000011 ], [ -122.233482128999952, 49.022587858000051 ], [ -122.228027668999971, 49.022396200000038 ], [ -122.228318547999947, 49.018799996000077 ], [ -122.230159790999949, 49.018864725000114 ], [ -122.230216202999941, 49.018166879000077 ], [ -122.230110605, 49.018163168000036 ], [ -122.230111672999968, 49.018149956000165 ], [ -122.22953118599996, 49.018129552000062 ], [ -122.229622001999971, 49.017006289000044 ], [ -122.229821922999932, 49.014533320000112 ], [ -122.234831629, 49.014709308000079 ], [ -122.234842218999958, 49.014578141000072 ], [ -122.23690766299994, 49.014650630000084 ], [ -122.237161092999983, 49.01150948800003 ], [ -122.24261431799998, 49.011700684000111 ], [ -122.242407625999959, 49.01426627200005 ], [ -122.245230086, 49.014365121000019 ], [ -122.245194535999985, 49.01480669900009 ], [ -122.245560601999955, 49.014819514000067 ], [ -122.2455153, 49.01538227000006 ], [ -122.245997034999974, 49.015399133000081 ], [ -122.246060559999975, 49.014609911000015 ], [ -122.247715558, 49.014667825000117 ], [ -122.247733602, 49.014443551000049 ], [ -122.249591908999918, 49.01450854799999 ], [ -122.249672716999896, 49.016988392000044 ], [ -122.256389183999971, 49.01695670000003 ], [ -122.25666265199996, 49.016955399000068 ], [ -122.25767474299991, 49.016950578000099 ], [ -122.258946844999983, 49.016944508000023 ], [ -122.259316061999968, 49.016942731 ], [ -122.259958953999913, 49.016939687000054 ], [ -122.260768483999982, 49.016935806000042 ], [ -122.262899284999932, 49.016925773000011 ], [ -122.263925019999959, 49.01692095500006 ], [ -122.265350611999949, 49.016914189000019 ], [ -122.265355327999956, 49.020048277000029 ], [ -122.265355802999963, 49.020889792000055 ], [ -122.265357246999912, 49.02343917700005 ], [ -122.26529920099992, 49.023531839000107 ], [ -122.265298743999935, 49.024050237000054 ], [ -122.265295918999954, 49.027124503000074 ], [ -122.265350902999941, 49.028887125 ], [ -122.265374550999937, 49.029644065000085 ], [ -122.265377341999979, 49.029733975000063 ], [ -122.265388102999964, 49.030079199000113 ], [ -122.265391395999941, 49.03018421600008 ], [ -122.265654847999883, 49.031576016000081 ], [ -122.265706611, 49.031849491000109 ], [ -122.265739603999947, 49.031949806000071 ], [ -122.265977909999918, 49.032696498000043 ], [ -122.266231481999966, 49.033355410000112 ], [ -122.266235207999912, 49.033364442000028 ], [ -122.26629452499999, 49.033509009000049 ], [ -122.266265649999951, 49.03350900300007 ], [ -122.265923640999972, 49.033509158000122 ], [ -122.265121630999957, 49.033509517000027 ], [ -122.264707786999978, 49.033509710000089 ], [ -122.261026181999924, 49.033510014000079 ], [ -122.260396916999966, 49.033510074000105 ], [ -122.259723605999966, 49.033510083000124 ], [ -122.259042525999988, 49.033510387000021 ], [ -122.259012569999967, 49.033510402000019 ], [ -122.255458723999979, 49.033511901000075 ], [ -122.254463391999977, 49.033549889000071 ], [ -122.252420049999927, 49.033627851000062 ], [ -122.252337375999971, 49.033630993000067 ], [ -122.250256326999974, 49.033635260000025 ], [ -122.245574259999927, 49.033644732000077 ], [ -122.245496049999986, 49.033644875000057 ], [ -122.241441084999948, 49.033652894000078 ], [ -122.240617602999961, 49.033705052000073 ], [ -122.238438717999927, 49.033843021000052 ] ], [ [ -122.264913977999939, 49.019790980000082 ], [ -122.264923391999957, 49.019151816000033 ], [ -122.264573804999941, 49.01913964300013 ], [ -122.26456960199999, 49.019192120000071 ], [ -122.264343298999947, 49.019184239000076 ], [ -122.264265230999939, 49.020158774000016 ], [ -122.264498112999917, 49.020166884000069 ], [ -122.264503690999931, 49.0197883660001 ], [ -122.264913977999939, 49.019790980000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32039001", "BldgCostT": "21095001", "sL_LossRatio": "0.760085332821976", "sL_AssetLoss": "208595", "sL_BldgLoss": "158550", "sL_StrLoss": "94200", "sL_NStrLoss": "64350", "sL_ContLoss": "50045", "geom_point": "0101000020E6100000E5E366FADD8D5EC0E725393F49844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.206895065999944, 49.048907265000089 ], [ -122.206983257, 49.047823749000059 ], [ -122.20689323199997, 49.047820568000134 ], [ -122.207053194999943, 49.045855181000043 ], [ -122.206643722999971, 49.045852365000066 ], [ -122.206639429999925, 49.046122207000089 ], [ -122.205984002999983, 49.046117699000064 ], [ -122.205904963999956, 49.047088549000073 ], [ -122.204951405999935, 49.047054836000029 ], [ -122.204914846999898, 49.047503771000052 ], [ -122.202064390999936, 49.047402945000066 ], [ -122.201563870999962, 49.047385233000043 ], [ -122.200046467999982, 49.047331521000075 ], [ -122.199695645999938, 49.047319099000084 ], [ -122.199475435999915, 49.047091878000053 ], [ -122.19975082900001, 49.043714684000108 ], [ -122.200704316000014, 49.043748443000027 ], [ -122.200740910999968, 49.043299506000061 ], [ -122.206197703000015, 49.043492543000063 ], [ -122.206159656999915, 49.043959948000094 ], [ -122.206263291999974, 49.043960660000018 ], [ -122.206267587999932, 49.043690820000052 ], [ -122.206678064999934, 49.043693643000083 ], [ -122.206682357999938, 49.043423801000067 ], [ -122.207503308999947, 49.043429442000033 ], [ -122.20750759799995, 49.04315960200006 ], [ -122.207918071000023, 49.043162420000094 ], [ -122.207922355999955, 49.042892579000096 ], [ -122.208743299999966, 49.042898211000086 ], [ -122.208747580999926, 49.042628370000052 ], [ -122.20907863099994, 49.042630639000024 ], [ -122.209358889999947, 49.03918470100011 ], [ -122.214815235999964, 49.039377302000062 ], [ -122.214767039999984, 49.039970785000065 ], [ -122.214947102999972, 49.039972010000078 ], [ -122.214951349999964, 49.039702168000147 ], [ -122.215772242999961, 49.039707751000037 ], [ -122.215774801999984, 49.039544926000069 ], [ -122.215536457999931, 49.039536521000038 ], [ -122.21579944399997, 49.036297215000097 ], [ -122.215828406999933, 49.035940447000023 ], [ -122.217643056999947, 49.036004428000112 ], [ -122.217661549999931, 49.035776508 ], [ -122.214474057999965, 49.035664103000094 ], [ -122.21447433899999, 49.035660638000103 ], [ -122.213747233999953, 49.03563498300008 ], [ -122.214039295999953, 49.03203889300012 ], [ -122.216576639999971, 49.032128395 ], [ -122.216683824999947, 49.030807619 ], [ -122.216574735000023, 49.030803772000034 ], [ -122.216699130999984, 49.029270861000043 ], [ -122.215204380999936, 49.029218140000047 ], [ -122.21521191099994, 49.029125394000125 ], [ -122.210793236, 49.028969422000024 ], [ -122.211019022999935, 49.026191170000118 ], [ -122.208165816999951, 49.026090360000069 ], [ -122.208187381999949, 49.02582519700011 ], [ -122.206482275999974, 49.025764915000124 ], [ -122.206525035999945, 49.025239353000067 ], [ -122.205120155999964, 49.025189664000067 ], [ -122.20304189099997, 49.025116125000089 ], [ -122.203334711999972, 49.02152000400006 ], [ -122.204384205999958, 49.021557145000017 ], [ -122.204387168999972, 49.02152073000007 ], [ -122.205680822999966, 49.021566497000066 ], [ -122.205684016999925, 49.02152726100006 ], [ -122.206486668999958, 49.021555650000018 ], [ -122.21113828199999, 49.021720053000109 ], [ -122.211089429999959, 49.022321275000067 ], [ -122.212229181999959, 49.022361526000061 ], [ -122.212207642999942, 49.022626691 ], [ -122.21252621899994, 49.022637939000099 ], [ -122.212710493999921, 49.020369126000112 ], [ -122.218164654999896, 49.02056156200014 ], [ -122.218094564999944, 49.021425776000058 ], [ -122.219059242999947, 49.021459783000054 ], [ -122.221122405999935, 49.021532485000137 ], [ -122.22112111499996, 49.021548422000109 ], [ -122.224553789999931, 49.021669294000041 ], [ -122.224399457999951, 49.023575364000081 ], [ -122.227638502, 49.02368931700007 ], [ -122.22753838700001, 49.024926758000085 ], [ -122.227858470999948, 49.024938014000035 ], [ -122.227826698999976, 49.025330746000087 ], [ -122.228246481999946, 49.025345506000079 ], [ -122.227955555999969, 49.028941672000059 ], [ -122.222500375999957, 49.028749736000101 ], [ -122.222532195999975, 49.028357009000061 ], [ -122.222244791999969, 49.028346889000019 ], [ -122.222212920999979, 49.028740232000082 ], [ -122.222322006999946, 49.02874407300002 ], [ -122.222282187999966, 49.029235496000133 ], [ -122.22250293099998, 49.029243269000077 ], [ -122.222458358999972, 49.029793384000136 ], [ -122.224189606999985, 49.029854326000056 ], [ -122.223930249999938, 49.033056514000073 ], [ -122.22454719299995, 49.033078225000068 ], [ -122.224526576999935, 49.033332786000109 ], [ -122.224771262999951, 49.033341394000033 ], [ -122.224845435999924, 49.032425453000023 ], [ -122.225326342999949, 49.032442373000059 ], [ -122.225342427999976, 49.031406413000092 ], [ -122.226573564999939, 49.03141467100005 ], [ -122.226577747999926, 49.03114482900002 ], [ -122.229040007999956, 49.031161306000101 ], [ -122.229036239999985, 49.031405159000066 ], [ -122.234463038999976, 49.03159575500014 ], [ -122.234293275, 49.033697477000025 ], [ -122.234240416999981, 49.034351827000123 ], [ -122.23029620899996, 49.035051143 ], [ -122.230213420999959, 49.035065818000071 ], [ -122.230136650999967, 49.03508741500012 ], [ -122.227623927999957, 49.035794327000055 ], [ -122.22630776599999, 49.036253811000115 ], [ -122.22464799399998, 49.036985243000096 ], [ -122.224382235999911, 49.037102363000088 ], [ -122.223059981999938, 49.037685057000012 ], [ -122.222448816999986, 49.03795437400003 ], [ -122.222152383999955, 49.038084979000104 ], [ -122.219917005999932, 49.03906993800004 ], [ -122.220004533999941, 49.039151409000091 ], [ -122.220124335999969, 49.039262954000073 ], [ -122.220156514999957, 49.03935516800005 ], [ -122.22021343499992, 49.039412157000122 ], [ -122.220840424999963, 49.040031102000079 ], [ -122.22098277399999, 49.040170969000052 ], [ -122.221712182999909, 49.040887647000019 ], [ -122.22193391899999, 49.041093415000049 ], [ -122.221220993999978, 49.041776798000093 ], [ -122.221056690999916, 49.04177540400012 ], [ -122.22070461, 49.041530401000045 ], [ -122.219968116999937, 49.041299698000081 ], [ -122.219586598999967, 49.041323888000122 ], [ -122.21941958299999, 49.041422200000078 ], [ -122.219508785999935, 49.041872297000062 ], [ -122.219901187999966, 49.042162811 ], [ -122.220377598999946, 49.042300991000097 ], [ -122.220566091999913, 49.042554509000041 ], [ -122.2204671099999, 49.042688303000098 ], [ -122.219806497999983, 49.042944705000075 ], [ -122.219806803999973, 49.0431477280001 ], [ -122.219807604999957, 49.043682409000084 ], [ -122.218979698999959, 49.044253491000084 ], [ -122.218700194999911, 49.04461100700005 ], [ -122.218718771999988, 49.044855115000118 ], [ -122.21874540099999, 49.045204906000066 ], [ -122.21865939599995, 49.045368476000071 ], [ -122.218436159999925, 49.045793124000106 ], [ -122.218392013999917, 49.045877091000108 ], [ -122.218583279999933, 49.046814300000044 ], [ -122.218414729999964, 49.046979454000038 ], [ -122.218318705999977, 49.047073504000132 ], [ -122.217753105999975, 49.047294192000088 ], [ -122.217734650999958, 49.04730480300006 ], [ -122.217621989999927, 49.047369646000064 ], [ -122.217390327999965, 49.047502963000106 ], [ -122.216842309999947, 49.047818306000082 ], [ -122.216739460999989, 49.047842459000073 ], [ -122.216839575999956, 49.046609203000067 ], [ -122.216895318999903, 49.046611168000076 ], [ -122.216901897999932, 49.046192301000055 ], [ -122.216491397999931, 49.046189516000013 ], [ -122.216508355999935, 49.04511015100006 ], [ -122.21691884699996, 49.045112937000027 ], [ -122.216919485999981, 49.045072234000052 ], [ -122.212601975000013, 49.04491995899999 ], [ -122.212554772999951, 49.045500799000138 ], [ -122.212644792, 49.045503976000134 ], [ -122.212352538999966, 49.049099988000094 ], [ -122.210438771999932, 49.04903243800009 ], [ -122.206895065999944, 49.048907265000089 ] ], [ [ -122.207054467999953, 49.045839538000052 ], [ -122.207075145999923, 49.045585462000084 ], [ -122.207058509999939, 49.045585347000042 ], [ -122.207054467999953, 49.045839538000052 ] ], [ [ -122.21235836399994, 49.044407235000037 ], [ -122.212457001999965, 49.043193484000035 ], [ -122.212433284999975, 49.043193322000072 ], [ -122.212429022999956, 49.04346316400013 ], [ -122.212018545999968, 49.043460361000051 ], [ -122.212014282999959, 49.043730203000024 ], [ -122.211193325999929, 49.04372459300005 ], [ -122.211183185, 49.044365754000061 ], [ -122.21235836399994, 49.044407235000037 ] ], [ [ -122.218066347999979, 49.04150632100005 ], [ -122.217816987, 49.044579288000079 ], [ -122.218158779999968, 49.044581605000054 ], [ -122.218167240999918, 49.044041922000126 ], [ -122.218577722999953, 49.044044702000043 ], [ -122.21859556699999, 49.042905868000055 ], [ -122.218133344999913, 49.042889581000097 ], [ -122.21828065099993, 49.041074121000101 ], [ -122.217803314999941, 49.041070886000028 ], [ -122.21779908299996, 49.041340728000129 ], [ -122.216978163999926, 49.041335160000067 ], [ -122.21697607899992, 49.041467892000064 ], [ -122.218066347999979, 49.04150632100005 ] ], [ [ -122.222189121999932, 49.02739520700009 ], [ -122.222212652999985, 49.027104796000131 ], [ -122.221892555999915, 49.027093524000058 ], [ -122.22204700099995, 49.025187469000038 ], [ -122.219960659999956, 49.025113974000149 ], [ -122.219948426999906, 49.025264876000037 ], [ -122.218987804999969, 49.025231022000099 ], [ -122.21725658099993, 49.025169991000013 ], [ -122.217214992, 49.025682627000059 ], [ -122.218975585999928, 49.025744694000061 ], [ -122.220951076999981, 49.025814302000079 ], [ -122.22082683, 49.027347227000057 ], [ -122.222189121999932, 49.02739520700009 ] ], [ [ -122.214520598999954, 49.024741338000062 ], [ -122.214577415999969, 49.024041487000062 ], [ -122.213804863999954, 49.024014223000108 ], [ -122.213748034999981, 49.024714073 ], [ -122.214520598999954, 49.024741338000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39544668", "BldgCostT": "26536668", "sL_LossRatio": "0.867985869362585", "sL_AssetLoss": "128203.7", "sL_BldgLoss": "111279", "sL_StrLoss": "76801", "sL_NStrLoss": "34478", "sL_ContLoss": "16924.7", "geom_point": "0101000020E610000045F408C16C8C5EC0D3A3801F1B874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.191504241999937, 49.060795737000028 ], [ -122.191563510999984, 49.057751006000075 ], [ -122.182895544999937, 49.057547695000096 ], [ -122.182801862999938, 49.056318426000139 ], [ -122.182963494999925, 49.056108335000054 ], [ -122.183317068999941, 49.055648831000084 ], [ -122.183299061999946, 49.055544584000067 ], [ -122.183239127999968, 49.055197377000106 ], [ -122.183216180999977, 49.05506432600005 ], [ -122.183191790999956, 49.054922940000033 ], [ -122.183098270999949, 49.054323935000056 ], [ -122.183514676999948, 49.05432688100008 ], [ -122.183519095999912, 49.054057044 ], [ -122.183929656999979, 49.054059947000056 ], [ -122.183934074999939, 49.053790108000094 ], [ -122.18475519299993, 49.053795912000098 ], [ -122.184759604999911, 49.053526073000107 ], [ -122.185170161, 49.053528972000052 ], [ -122.185174570999934, 49.053259134000051 ], [ -122.185995680999966, 49.053264929000079 ], [ -122.186000087999957, 49.052995090000096 ], [ -122.186410638999988, 49.05299798500004 ], [ -122.18641504299994, 49.052728146000092 ], [ -122.186825592999966, 49.052731040000054 ], [ -122.186829994999982, 49.052461201000035 ], [ -122.187651091999967, 49.052466984000013 ], [ -122.187655486999944, 49.052197145000044 ], [ -122.188066032999984, 49.052200034000087 ], [ -122.188070427999946, 49.051930195000089 ], [ -122.188891515999927, 49.051935969000063 ], [ -122.188895905999971, 49.051666130000051 ], [ -122.189306446999979, 49.051669014000076 ], [ -122.189310834999972, 49.051399176000132 ], [ -122.18972137400003, 49.051402059000047 ], [ -122.189725759999973, 49.051132220000049 ], [ -122.190546835999896, 49.051137982000107 ], [ -122.190551215999918, 49.05086814200007 ], [ -122.190961751999936, 49.050871021000027 ], [ -122.190966128999975, 49.050601182000051 ], [ -122.191787196999911, 49.050606935000111 ], [ -122.191791570999953, 49.050337095000039 ], [ -122.192202101999968, 49.050339970000074 ], [ -122.192206473999946, 49.050070131000041 ], [ -122.193027531999974, 49.050075875000097 ], [ -122.193031898999891, 49.049806036000128 ], [ -122.19344242599999, 49.049808905000106 ], [ -122.193446791, 49.04953906700009 ], [ -122.193857315999949, 49.049541935000065 ], [ -122.193861353999964, 49.049292084000029 ], [ -122.194622004999971, 49.049285309000126 ], [ -122.194647058, 49.049277578000051 ], [ -122.194682722999971, 49.049277828000058 ], [ -122.194682907999891, 49.049266517000014 ], [ -122.195789910999963, 49.048924903000056 ], [ -122.19664497799999, 49.048481894000126 ], [ -122.197158894999987, 49.048485471000049 ], [ -122.197156351999979, 49.048643411000107 ], [ -122.197154550999983, 49.048755310000061 ], [ -122.19745421899998, 49.048757394000042 ], [ -122.197975587999977, 49.048761019000075 ], [ -122.197971245999923, 49.04903085900002 ], [ -122.198381767999962, 49.049033711000099 ], [ -122.198381021999964, 49.049080150000123 ], [ -122.198368752999954, 49.049843231000075 ], [ -122.197958225999912, 49.049840378000049 ], [ -122.197953885999951, 49.050110218000022 ], [ -122.197132824999969, 49.050104509000043 ], [ -122.19712848099999, 49.050374349000052 ], [ -122.196717948999932, 49.050371491000107 ], [ -122.196713600999885, 49.050641330000069 ], [ -122.19630306599997, 49.050638473000113 ], [ -122.196298716999948, 49.0509083110001 ], [ -122.195477644999954, 49.050902591000074 ], [ -122.195453572999924, 49.052394287000048 ], [ -122.197519773999915, 49.0524675 ], [ -122.197474100999926, 49.053027188000087 ], [ -122.197703002999901, 49.05303529600009 ], [ -122.197668033999918, 49.053463827 ], [ -122.197777225, 49.053467694000091 ], [ -122.197757359999983, 49.053711141000058 ], [ -122.199615676999954, 49.053776947000102 ], [ -122.19959190799996, 49.05406837600006 ], [ -122.199746390999962, 49.054073845000097 ], [ -122.199710487999965, 49.054514040000079 ], [ -122.199788504999958, 49.054516803000048 ], [ -122.199791031999936, 49.054485816000096 ], [ -122.205249127999977, 49.054678899000102 ], [ -122.205129049999982, 49.056153269000035 ], [ -122.204957849999943, 49.0582551460001 ], [ -122.204956245999966, 49.058274838000067 ], [ -122.204901472999921, 49.058272903000024 ], [ -122.204413865999953, 49.058255664000086 ], [ -122.204397238999917, 49.058459766000027 ], [ -122.204390437999947, 49.05854325100006 ], [ -122.204324771999936, 49.058540930000035 ], [ -122.201329099999938, 49.058434974000143 ], [ -122.201269844999914, 49.059161724000013 ], [ -122.200946676999948, 49.059150289000158 ], [ -122.200888067999983, 49.059869032000037 ], [ -122.197821962999939, 49.059760490000095 ], [ -122.197749229999914, 49.060651686000092 ], [ -122.194797291999947, 49.060590309000098 ], [ -122.194472718, 49.060712174000145 ], [ -122.194403871999896, 49.060800796000045 ], [ -122.193984661999949, 49.060801201000039 ], [ -122.192918798000022, 49.060802191000093 ], [ -122.192562890999938, 49.060803112000023 ], [ -122.191504241999937, 49.060795737000028 ] ], [ [ -122.185973651, 49.054614122000039 ], [ -122.185978056999929, 49.054344284000102 ], [ -122.18556749399994, 49.054341387000079 ], [ -122.185563084999956, 49.054611225000087 ], [ -122.185973651, 49.054614122000039 ], [ -122.18596924399999, 49.054883961000044 ], [ -122.185998490999964, 49.054884167000075 ], [ -122.18637981199997, 49.054886856000124 ], [ -122.186382705999961, 49.054709559000067 ], [ -122.186384216999969, 49.054617017000076 ], [ -122.185973651, 49.054614122000039 ] ], [ [ -122.190700187999937, 49.053891402000083 ], [ -122.190716243999958, 49.053694996000033 ], [ -122.191311927999934, 49.053716133000101 ], [ -122.191322024, 49.053592610000067 ], [ -122.191952382999943, 49.053614973000066 ], [ -122.192043679999983, 49.052497820000063 ], [ -122.191756575999989, 49.052495809000078 ], [ -122.191752200999957, 49.05276564900003 ], [ -122.191341650999973, 49.052762773000033 ], [ -122.191337273000016, 49.053032612000024 ], [ -122.190926721, 49.053029734000098 ], [ -122.190922340999975, 49.05329957400005 ], [ -122.190101230999943, 49.053293813000039 ], [ -122.190096847999925, 49.053563653000019 ], [ -122.189686288999937, 49.053560770000054 ], [ -122.18968190399994, 49.053830610000077 ], [ -122.188860785, 49.053824841000065 ], [ -122.188858762999971, 49.053949113000058 ], [ -122.18935075499995, 49.053966579000075 ], [ -122.18936079099997, 49.053843864000051 ], [ -122.190700187999937, 49.053891402000083 ] ], [ [ -122.19381213599992, 49.052336097000065 ], [ -122.193818048999972, 49.051970489000041 ], [ -122.192996958999984, 49.051964750000096 ], [ -122.192992590999935, 49.052234589000058 ], [ -122.192582043999963, 49.05223171800003 ], [ -122.192581061999988, 49.052292438000066 ], [ -122.19381213599992, 49.052336097000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.839499146272055", "sL_AssetLoss": "3514", "sL_BldgLoss": "2950", "sL_StrLoss": "1710", "sL_NStrLoss": "1240", "sL_ContLoss": "564", "geom_point": "0101000020E6100000E5F8DB7DD28B5EC068B6C8C906864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.184088788999929, 49.046422590000105 ], [ -122.184584087999937, 49.046254590000082 ], [ -122.185978386999921, 49.046372803000089 ], [ -122.18613480099999, 49.046421242000079 ], [ -122.186022296999951, 49.047795925000116 ], [ -122.182970291999979, 49.047687428000046 ], [ -122.182969866999969, 49.047629888000124 ], [ -122.183159984999961, 49.047144702000011 ], [ -122.183453486999966, 49.04680430400002 ], [ -122.184088788999929, 49.046422590000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53626584", "BldgCostT": "35303334", "sL_LossRatio": "0.691119135463276", "sL_AssetLoss": "764340", "sL_BldgLoss": "528250", "sL_StrLoss": "244740", "sL_NStrLoss": "283510", "sL_ContLoss": "236090", "geom_point": "0101000020E610000095214C599F905EC062213A048E814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249672716999896, 49.016988392000044 ], [ -122.249591908999918, 49.01450854799999 ], [ -122.253187213000032, 49.014634210000047 ], [ -122.253180977999989, 49.014711838000011 ], [ -122.254893756999962, 49.014771660000051 ], [ -122.254907402999933, 49.014601724 ], [ -122.255535687999938, 49.014623661000023 ], [ -122.255537576999984, 49.014600138000013 ], [ -122.256962051999963, 49.014649861000102 ], [ -122.256975325, 49.01448447300006 ], [ -122.261687190999979, 49.014648810000104 ], [ -122.261712239999952, 49.014336287000056 ], [ -122.261932725999912, 49.014343972000077 ], [ -122.262014309999984, 49.013326031000062 ], [ -122.261041133999967, 49.013292108 ], [ -122.261329412999928, 49.009695763000131 ], [ -122.261559567999953, 49.009703787000028 ], [ -122.261574732999961, 49.009514565000089 ], [ -122.260142522, 49.009505390000058 ], [ -122.260162512999969, 49.00815616200002 ], [ -122.259752322999972, 49.008153532000016 ], [ -122.259792323999974, 49.005455076000082 ], [ -122.259382154999983, 49.005452443000074 ], [ -122.259386157, 49.0051825970001 ], [ -122.258975990999943, 49.005179964000085 ], [ -122.258983998999966, 49.004640273000078 ], [ -122.25734335099996, 49.004629724000061 ], [ -122.257339338999898, 49.004899570000127 ], [ -122.256929174999968, 49.004896929000047 ], [ -122.256917129999962, 49.005706465000095 ], [ -122.255276447999961, 49.005695887000044 ], [ -122.255288520999912, 49.004886351000103 ], [ -122.254878357999985, 49.004883702000086 ], [ -122.254890434999965, 49.004074167000091 ], [ -122.255710748999931, 49.004079462000085 ], [ -122.255714770999973, 49.003809615000058 ], [ -122.256124926, 49.003812260000075 ], [ -122.256128944999929, 49.003542415000027 ], [ -122.256539096999973, 49.003545059000039 ], [ -122.256551146999954, 49.002735522000073 ], [ -122.25684578, 49.002737421000084 ], [ -122.256869814999945, 49.003704914000146 ], [ -122.25695534399992, 49.003882814000079 ], [ -122.256962359999989, 49.003890665000014 ], [ -122.256979915999949, 49.003910347000065 ], [ -122.257095829999955, 49.004040081000078 ], [ -122.257134634999943, 49.004062563000041 ], [ -122.25725649099995, 49.004133132000035 ], [ -122.257570324999904, 49.004225242000139 ], [ -122.258781354999968, 49.004208891000168 ], [ -122.260078116, 49.004209201000023 ], [ -122.260720845999941, 49.004209324000051 ], [ -122.26294356599999, 49.004209790000083 ], [ -122.262950616999959, 49.004637393000102 ], [ -122.262958000999959, 49.005087597000077 ], [ -122.262968416999939, 49.005527742000091 ], [ -122.262979808999916, 49.006009797000047 ], [ -122.262983100999961, 49.006481564000048 ], [ -122.262986383999973, 49.006951309000044 ], [ -122.262990883999976, 49.007363381000104 ], [ -122.262991321999934, 49.007402207000048 ], [ -122.262993534999936, 49.007840202000047 ], [ -122.262993598999955, 49.007851290000097 ], [ -122.263003917999981, 49.008747005000089 ], [ -122.263010310999945, 49.009554105000056 ], [ -122.263814106999959, 49.00954761900006 ], [ -122.26415586499995, 49.009544887000118 ], [ -122.264587494999958, 49.00954138900007 ], [ -122.264699733999947, 49.009529534000031 ], [ -122.265295518999963, 49.009460293000082 ], [ -122.265309512999963, 49.011353887000077 ], [ -122.265315828999931, 49.012208605000076 ], [ -122.265333426999973, 49.014592739000079 ], [ -122.265337324999948, 49.015114526000083 ], [ -122.265340603999931, 49.015564360000013 ], [ -122.265350611999949, 49.016914189000019 ], [ -122.263925019999959, 49.01692095500006 ], [ -122.262899284999932, 49.016925773000011 ], [ -122.260768483999982, 49.016935806000042 ], [ -122.259958953999913, 49.016939687000054 ], [ -122.259316061999968, 49.016942731 ], [ -122.258946844999983, 49.016944508000023 ], [ -122.25767474299991, 49.016950578000099 ], [ -122.25666265199996, 49.016955399000068 ], [ -122.256389183999971, 49.01695670000003 ], [ -122.249672716999896, 49.016988392000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18462084", "BldgCostT": "11258334", "sL_LossRatio": "0.74643516188559", "sL_AssetLoss": "119220", "sL_BldgLoss": "88990", "sL_StrLoss": "46440", "sL_NStrLoss": "42550", "sL_ContLoss": "30230", "geom_point": "0101000020E6100000D2B0CEE712905EC05965A6B47E814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.24947611799999, 49.010954709000053 ], [ -122.249440915999926, 49.009873808000094 ], [ -122.249476710999943, 49.009034054000054 ], [ -122.252990882999882, 49.009156900000093 ], [ -122.252869945, 49.01066233100007 ], [ -122.252940777999981, 49.010664806000086 ], [ -122.252651844999917, 49.014261122000093 ], [ -122.251748982999956, 49.01422957199999 ], [ -122.25172812199996, 49.014489144000038 ], [ -122.249588838999941, 49.014414358000103 ], [ -122.24947611799999, 49.010954709000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24552167", "BldgCostT": "14986667", "sL_LossRatio": "0.745645730989404", "sL_AssetLoss": "123155", "sL_BldgLoss": "91830", "sL_StrLoss": "50470", "sL_NStrLoss": "41360", "sL_ContLoss": "31325", "geom_point": "0101000020E6100000715C00F916905EC0F7D37765B4804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249579592999936, 49.006620271000081 ], [ -122.249757115999927, 49.002455604000012 ], [ -122.252857271999943, 49.002450313000089 ], [ -122.253445300999928, 49.002449289 ], [ -122.253928805999976, 49.002448449000021 ], [ -122.253737567999963, 49.004829924 ], [ -122.252795529999958, 49.0047970070001 ], [ -122.252740942999935, 49.005476562000069 ], [ -122.252796264, 49.005478495000041 ], [ -122.252507352999942, 49.009074841000071 ], [ -122.249479485999984, 49.008968988000113 ], [ -122.249522855999956, 49.007951500000047 ], [ -122.249569242999954, 49.006863195000044 ], [ -122.249579592999936, 49.006620271000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81931666", "BldgCostT": "53326666", "sL_LossRatio": "0.691858111527173", "sL_AssetLoss": "1185720", "sL_BldgLoss": "820350", "sL_StrLoss": "380350", "sL_NStrLoss": "440000", "sL_ContLoss": "365370", "geom_point": "0101000020E61000006FADD458E7905EC09FB4EC20E1804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.26294356599999, 49.004209790000083 ], [ -122.265160094999956, 49.004183293000054 ], [ -122.265230591999952, 49.004412990000105 ], [ -122.26523249199991, 49.004975569000116 ], [ -122.265232907999973, 49.005101001000106 ], [ -122.265233700999929, 49.006029684000112 ], [ -122.265277203999986, 49.00695530200003 ], [ -122.265280304999948, 49.007386406000087 ], [ -122.265280347, 49.007397184000041 ], [ -122.265283612999937, 49.007848109000093 ], [ -122.265289363999955, 49.008630037000046 ], [ -122.265289536999944, 49.00865327000006 ], [ -122.265292067999965, 49.008997014000052 ], [ -122.265294212999905, 49.009284963000027 ], [ -122.265295518999963, 49.009460293000082 ], [ -122.264699733999947, 49.009529534000031 ], [ -122.264587494999958, 49.00954138900007 ], [ -122.26415586499995, 49.009544887000118 ], [ -122.263814106999959, 49.00954761900006 ], [ -122.263010310999945, 49.009554105000056 ], [ -122.263003917999981, 49.008747005000089 ], [ -122.262993598999955, 49.007851290000097 ], [ -122.262993534999936, 49.007840202000047 ], [ -122.262991321999934, 49.007402207000048 ], [ -122.262990883999976, 49.007363381000104 ], [ -122.262986383999973, 49.006951309000044 ], [ -122.262983100999961, 49.006481564000048 ], [ -122.262979808999916, 49.006009797000047 ], [ -122.262968416999939, 49.005527742000091 ], [ -122.262958000999959, 49.005087597000077 ], [ -122.262950616999959, 49.004637393000102 ], [ -122.26294356599999, 49.004209790000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.970590624746121", "sL_AssetLoss": "2461.8", "sL_BldgLoss": "2389.4", "sL_StrLoss": "2060", "sL_NStrLoss": "329.4", "sL_ContLoss": "72.4", "geom_point": "0101000020E6100000847E2A979B7F5EC09A3580D0DD874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.992314111999931, 49.060371310000058 ], [ -121.992617988999925, 49.060310106000088 ], [ -121.992970790999934, 49.060367012000029 ], [ -121.993139305999961, 49.060216085000022 ], [ -121.993458695999948, 49.058572501000064 ], [ -121.993206874999927, 49.058408886000116 ], [ -121.996270874999965, 49.058523209000128 ], [ -121.996224328, 49.059064810000066 ], [ -121.996623597999957, 49.059079700000062 ], [ -121.996314601000023, 49.06267503100004 ], [ -121.99437653399994, 49.062602737000084 ], [ -121.994197425, 49.064685476000093 ], [ -121.991522392999954, 49.064585634000046 ], [ -121.991561492999935, 49.064394700000051 ], [ -121.991770716999923, 49.064233796000067 ], [ -121.991872482999923, 49.064001605000044 ], [ -121.991840300999982, 49.063524494000042 ], [ -121.991616408999946, 49.063117207000062 ], [ -121.991289604999949, 49.062961988000104 ], [ -121.991119884999961, 49.062573103000062 ], [ -121.99113870599993, 49.062312485000085 ], [ -121.990925807999957, 49.06205049600009 ], [ -121.990841591999967, 49.061482202000029 ], [ -121.991072220999939, 49.060918203000014 ], [ -121.992314111999931, 49.060371310000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21673333", "BldgCostT": "14683333", "sL_LossRatio": "0.889829848841011", "sL_AssetLoss": "64237", "sL_BldgLoss": "57160", "sL_StrLoss": "42102", "sL_NStrLoss": "15058", "sL_ContLoss": "7077", "geom_point": "0101000020E61000002FEB30EC91835EC060FF967C43834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.038770381999953, 49.036906693000077 ], [ -122.038905, 49.035322642000061 ], [ -122.038356364999956, 49.035302386000083 ], [ -122.038480130999986, 49.033846137000126 ], [ -122.036823917999953, 49.033784970000035 ], [ -122.036744004999946, 49.034724845000014 ], [ -122.035121146999955, 49.034664885000076 ], [ -122.035055674999938, 49.035434584000015 ], [ -122.034155506999966, 49.035401315000108 ], [ -122.034103368999951, 49.036014105000042 ], [ -122.033041092999966, 49.035974835000069 ], [ -122.033019536, 49.036228130000048 ], [ -122.032380984999961, 49.036204519000165 ], [ -122.032371813999973, 49.036312246000051 ], [ -122.029849641999931, 49.03621894900003 ], [ -122.029847506999957, 49.036244007000057 ], [ -122.028907287999985, 49.036209212000088 ], [ -122.028874659999971, 49.03407161800002 ], [ -122.028983245999939, 49.034062670000033 ], [ -122.029853351999975, 49.033991067000031 ], [ -122.03075350099995, 49.033750261000144 ], [ -122.03157898799995, 49.033360483000095 ], [ -122.031761215999893, 49.033274429000095 ], [ -122.03254733599999, 49.032846341000088 ], [ -122.033244496999913, 49.032643082000043 ], [ -122.033459260999962, 49.032498615000087 ], [ -122.033698929999943, 49.032093596000053 ], [ -122.033967926999964, 49.031841544000066 ], [ -122.034137878999957, 49.031682277000044 ], [ -122.034486765999972, 49.031355336000033 ], [ -122.034752097999942, 49.031273509000115 ], [ -122.034967206999951, 49.03120719000006 ], [ -122.035526027999964, 49.031070042000131 ], [ -122.036315723, 49.030953150000101 ], [ -122.036532202, 49.030905860000125 ], [ -122.036872880999951, 49.030831427000045 ], [ -122.037904663999925, 49.030606042000066 ], [ -122.038996178000019, 49.030687842000056 ], [ -122.039348021999928, 49.030764850000089 ], [ -122.039816025999968, 49.030939922000144 ], [ -122.040193114999937, 49.031009761000078 ], [ -122.040627444999927, 49.031017670000026 ], [ -122.040944562, 49.030940114000096 ], [ -122.041020920999969, 49.030899803000054 ], [ -122.041195174999984, 49.030807776000117 ], [ -122.041831244999969, 49.030163980000076 ], [ -122.041916273999959, 49.030108001000087 ], [ -122.04216733899996, 49.02994283800011 ], [ -122.042360108999958, 49.029863388000102 ], [ -122.043506187999981, 49.029640491000173 ], [ -122.043775815999965, 49.029526098000098 ], [ -122.043853965, 49.029478015000066 ], [ -122.043941800000013, 49.029424003000017 ], [ -122.044836493999966, 49.028712991000106 ], [ -122.044953597999935, 49.028602587000137 ], [ -122.045319692999939, 49.028257402000058 ], [ -122.045640076, 49.02802759100004 ], [ -122.046203116999919, 49.027759787000079 ], [ -122.046817208999968, 49.027421702000076 ], [ -122.048446019999972, 49.026393401000071 ], [ -122.049039520999898, 49.025933618000046 ], [ -122.049548315999942, 49.025539503000118 ], [ -122.04886636399999, 49.024736610000048 ], [ -122.048462608999927, 49.024261238000101 ], [ -122.048450080999942, 49.024246493000092 ], [ -122.048238205999922, 49.023922194000122 ], [ -122.048200392999917, 49.023803598000093 ], [ -122.048245599999959, 49.023673596000044 ], [ -122.048265534, 49.023653343000042 ], [ -122.048381789999965, 49.02353518800011 ], [ -122.05013271299994, 49.022677288000132 ], [ -122.050418496999953, 49.022451507000078 ], [ -122.050454217, 49.022404458000089 ], [ -122.050541716999945, 49.022289195 ], [ -122.050603407, 49.022045300000102 ], [ -122.05059929199993, 49.021947700000041 ], [ -122.050527490999968, 49.020228299000117 ], [ -122.050532274999981, 49.019504505000043 ], [ -122.053006408999963, 49.019595584000072 ], [ -122.052800929999961, 49.02202293100008 ], [ -122.052865733999937, 49.022023463000089 ], [ -122.053057415999959, 49.019759091000026 ], [ -122.058510831999953, 49.019959637000113 ], [ -122.058471977999957, 49.020419281000081 ], [ -122.058352304999971, 49.021834961000096 ], [ -122.059232845999972, 49.021867317000023 ], [ -122.059267867999949, 49.021452944000046 ], [ -122.060058287999979, 49.021481982000054 ], [ -122.060069240999894, 49.021352364000037 ], [ -122.063171553999965, 49.021466276000055 ], [ -122.06319052100001, 49.021241638000035 ], [ -122.068026970999981, 49.021419046000105 ], [ -122.068027083999951, 49.021417697000054 ], [ -122.067236072999947, 49.02138869700012 ], [ -122.067446526, 49.018893420000026 ], [ -122.064518334999931, 49.018786014000064 ], [ -122.063741608999962, 49.018757511000111 ], [ -122.064045121999982, 49.015161740000046 ], [ -122.069498048999975, 49.015361730000038 ], [ -122.06944709, 49.015966333000016 ], [ -122.069287722999917, 49.017857025000097 ], [ -122.072992582999987, 49.01799274400004 ], [ -122.072948333999932, 49.018518172000022 ], [ -122.074181648999982, 49.01856332200002 ], [ -122.074223947999911, 49.018060893000055 ], [ -122.079457325999968, 49.018252326000066 ], [ -122.079677257, 49.018260365000124 ], [ -122.079374928999954, 49.021856162000077 ], [ -122.076121778999919, 49.021737201000057 ], [ -122.0760388399999, 49.022722739000116 ], [ -122.074773721999918, 49.02267645000007 ], [ -122.074738007999912, 49.023100669000065 ], [ -122.069284154999934, 49.022900949000082 ], [ -122.069335624, 49.022290416000089 ], [ -122.068574940999952, 49.022262538000049 ], [ -122.068340954999925, 49.025037417000085 ], [ -122.066195863999951, 49.024958771000136 ], [ -122.066063646000018, 49.02652576600007 ], [ -122.062178543999963, 49.026383219000138 ], [ -122.062083836999975, 49.02750445900007 ], [ -122.060730137999968, 49.027454758000019 ], [ -122.060723382999981, 49.027534692000096 ], [ -122.055269071999959, 49.027334261000092 ], [ -122.055319907999902, 49.026733451000069 ], [ -122.054827694999972, 49.026715350000124 ], [ -122.054901930999932, 49.025838045000071 ], [ -122.05336511699997, 49.025781514000109 ], [ -122.053364586999919, 49.025787774000015 ], [ -122.053177880999939, 49.025780904000143 ], [ -122.052992392999911, 49.027971876000045 ], [ -122.048353383999967, 49.02780108900005 ], [ -122.048226972999942, 49.029292386000094 ], [ -122.04729818, 49.029258168000105 ], [ -122.047216726, 49.030218818000101 ], [ -122.04708306399999, 49.031795107000022 ], [ -122.045641796999917, 49.031741992000065 ], [ -122.045621315999966, 49.031983441000051 ], [ -122.044115006999974, 49.031927909000096 ], [ -122.043982258999904, 49.033492120000055 ], [ -122.044530875999939, 49.033512348000102 ], [ -122.044225739999945, 49.03710795900006 ], [ -122.038770381999953, 49.036906693000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18877917", "BldgCostT": "12491667", "sL_LossRatio": "0.843670299921636", "sL_AssetLoss": "70185", "sL_BldgLoss": "59213", "sL_StrLoss": "42290", "sL_NStrLoss": "16923", "sL_ContLoss": "10972", "geom_point": "0101000020E61000005EB2E034B3805EC060BEE57F2C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.006666584999948, 49.031304491000107 ], [ -122.00604451099997, 49.031252493000103 ], [ -122.005044986999977, 49.031278415000031 ], [ -122.004809870999935, 49.031305109000066 ], [ -122.004788848999937, 49.031307490000124 ], [ -122.004780005999962, 49.0311708 ], [ -122.004540978999927, 49.030727794000072 ], [ -122.004525510999954, 49.030662235000115 ], [ -122.004415602999984, 49.030196601000121 ], [ -122.004359091999916, 49.029575601000097 ], [ -122.004108301999977, 49.029159785000012 ], [ -122.004181306999925, 49.028943292000129 ], [ -122.00490611399999, 49.028959001000047 ], [ -122.005181785999966, 49.028872107000076 ], [ -122.005210604999931, 49.028736811000066 ], [ -122.004241682999961, 49.027909296000111 ], [ -122.003135114999978, 49.027162995000026 ], [ -122.002862259000011, 49.027099074000056 ], [ -122.001420596999978, 49.026761404000027 ], [ -122.001243790999951, 49.026722900000081 ], [ -122.001069397999956, 49.026560609000114 ], [ -122.000793391999977, 49.026059339000057 ], [ -122.000808369, 49.025884738000038 ], [ -122.000665658999964, 49.025879417000034 ], [ -122.000135112999942, 49.025374188000058 ], [ -121.999939996999956, 49.025228386000073 ], [ -121.999688210999963, 49.025040245000127 ], [ -121.999251622999964, 49.024714 ], [ -121.999245081999902, 49.024709102000031 ], [ -121.99915868199993, 49.024222 ], [ -121.999388609, 49.023028484000065 ], [ -121.99936488499992, 49.022784995000087 ], [ -121.999164013999959, 49.022612697000071 ], [ -121.997699812999912, 49.022017486000088 ], [ -121.997846629999941, 49.020307069000069 ], [ -122.003299871999971, 49.020510419000075 ], [ -122.003140927999979, 49.022364635000017 ], [ -122.004288652999932, 49.022407398000063 ], [ -122.00426629599994, 49.022668275000086 ], [ -122.00537352099991, 49.022709517000081 ], [ -122.005507272, 49.021148355000093 ], [ -122.006013546999938, 49.021167209000097 ], [ -122.006234883999966, 49.018583164000049 ], [ -122.006933228999941, 49.018609168000076 ], [ -122.006945960999985, 49.018460481000012 ], [ -122.007621065999913, 49.018485615000088 ], [ -122.007629637999912, 49.018385498000029 ], [ -122.012761164999972, 49.018576399000089 ], [ -122.012911808999959, 49.016814619000129 ], [ -122.013812549999969, 49.016848103 ], [ -122.013821675999964, 49.01674134200011 ], [ -122.01927457099994, 49.016943881000053 ], [ -122.019126629, 49.018676833000029 ], [ -122.01896759899995, 49.020539514000113 ], [ -122.01831501499997, 49.020515289000073 ], [ -122.018194897999976, 49.021921855000123 ], [ -122.020383043999956, 49.022003065000021 ], [ -122.020334682999987, 49.022569637000124 ], [ -122.018628714999977, 49.022746098000034 ], [ -122.0178259, 49.022889396 ], [ -122.015594892999957, 49.023355711000114 ], [ -122.014783621999953, 49.023567209000134 ], [ -122.014423509, 49.023699091 ], [ -122.014131107999901, 49.023951506000124 ], [ -122.013886178999954, 49.02451230800007 ], [ -122.013925985999961, 49.025278503000116 ], [ -122.014118790999973, 49.025743707000046 ], [ -122.014242244999977, 49.02582822700009 ], [ -122.014764908999936, 49.026186111000108 ], [ -122.015058516999915, 49.026280976000137 ], [ -122.015146702999942, 49.02630947200003 ], [ -122.015610100999979, 49.026459189000079 ], [ -122.016644750999959, 49.026575734000112 ], [ -122.016536009999953, 49.027848372000129 ], [ -122.016430763999921, 49.029080046000097 ], [ -122.01640987899999, 49.02932444900005 ], [ -122.015486770999971, 49.029290166000088 ], [ -122.015478236999925, 49.029390016 ], [ -122.017706489999981, 49.029472756000125 ], [ -122.01770682199999, 49.029455861000017 ], [ -122.017349632999967, 49.029390861000074 ], [ -122.017345740999957, 49.029282869000099 ], [ -122.017299827999977, 49.02928247800002 ], [ -122.017303176999974, 49.029112440000098 ], [ -122.017316047999984, 49.028458899000086 ], [ -122.017294206999949, 49.027852797000094 ], [ -122.01729403399996, 49.027847961000084 ], [ -122.017328298999956, 49.027847528000045 ], [ -122.016681837999926, 49.02782352500008 ], [ -122.016787081999922, 49.026591765000077 ], [ -122.017258888999933, 49.02664490600003 ], [ -122.017557861999961, 49.026689440000062 ], [ -122.019910198999952, 49.027040001000096 ], [ -122.020532108999959, 49.027045887000035 ], [ -122.021564296999955, 49.026779388000072 ], [ -122.021942496999927, 49.026707798000118 ], [ -122.022249712999965, 49.026693669000061 ], [ -122.022164230999948, 49.027695529000034 ], [ -122.022480205999969, 49.02770724499999 ], [ -122.023076269999976, 49.02771229300005 ], [ -122.023075936999973, 49.027729333000124 ], [ -122.024500116999903, 49.027782123000058 ], [ -122.024471591999941, 49.027894409000069 ], [ -122.024454450999954, 49.027972279000075 ], [ -122.024447004999928, 49.028006184000098 ], [ -122.024326691999974, 49.028214605000109 ], [ -122.024123586999949, 49.028398202000069 ], [ -122.023807496999922, 49.028575912000079 ], [ -122.02338762, 49.028719906000013 ], [ -122.023245002999943, 49.02873840000008 ], [ -122.023026591999951, 49.028766702000041 ], [ -122.022543801, 49.028829284000061 ], [ -122.02231509799995, 49.028912779000102 ], [ -122.022176987999941, 49.029040214000069 ], [ -122.021745331999952, 49.029760189000029 ], [ -122.021740107, 49.02976891300009 ], [ -122.021749982999978, 49.029924301000079 ], [ -122.021822407999977, 49.030037879000112 ], [ -122.021957331999928, 49.030107901000122 ], [ -122.022218008999957, 49.030179793000045 ], [ -122.022742904, 49.03023170000003 ], [ -122.023322009999987, 49.030370406000017 ], [ -122.023880997999981, 49.030552490000048 ], [ -122.024895395999977, 49.030929105000098 ], [ -122.025348904999959, 49.031193912000141 ], [ -122.025626413999959, 49.031420607000094 ], [ -122.025765586999952, 49.031633194000072 ], [ -122.025809785999954, 49.031783491000041 ], [ -122.024638457999913, 49.031773596000022 ], [ -122.024643730999941, 49.031503768000078 ], [ -122.024233375, 49.031500299000108 ], [ -122.024235741999917, 49.03137927500007 ], [ -122.020226256999962, 49.031230611000055 ], [ -122.020344283999975, 49.029848111000135 ], [ -122.01934091399994, 49.029839588000108 ], [ -122.019343559000035, 49.029704972000111 ], [ -122.018893833999954, 49.029671862000043 ], [ -122.018283055999945, 49.029560720000099 ], [ -122.018079926999988, 49.029558992000091 ], [ -122.01791149899995, 49.031530741000132 ], [ -122.015499259999913, 49.031530903000039 ], [ -122.011676598999955, 49.031531044000076 ], [ -122.009362645999929, 49.031531059000045 ], [ -122.009033879999947, 49.031530033000131 ], [ -122.008535915999957, 49.0315284570001 ], [ -122.007772103999983, 49.031525999000152 ], [ -122.007573811999976, 49.031486284000131 ], [ -122.006666584999948, 49.031304491000107 ] ], [ [ -122.007862068999955, 49.029201716000074 ], [ -122.007866971999931, 49.028955097000065 ], [ -122.006892405, 49.028918824000101 ], [ -122.006868903999973, 49.029193172000141 ], [ -122.007862068999955, 49.029201716000074 ] ], [ [ -122.010037405999952, 49.029029530000081 ], [ -122.010040874999959, 49.028988999000042 ], [ -122.009746115999945, 49.028978036000119 ], [ -122.009747629999978, 49.02896034000009 ], [ -122.009508663999952, 49.028951451000047 ], [ -122.009507502999924, 49.029009820000077 ], [ -122.010037405999952, 49.029029530000081 ] ], [ [ -122.008336257999929, 49.028935920000023 ], [ -122.009173382999961, 49.028943111000068 ], [ -122.00833830299996, 49.028912042000059 ], [ -122.008336257999929, 49.028935920000023 ] ], [ [ -122.010642735999951, 49.025386628000035 ], [ -122.010901371999964, 49.02236387500011 ], [ -122.010874101999946, 49.022362862000044 ], [ -122.01065300499999, 49.024946900000025 ], [ -122.008642056, 49.024872090000038 ], [ -122.008604495999947, 49.025310803000103 ], [ -122.010642735999951, 49.025386628000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31926750", "BldgCostT": "21075000", "sL_LossRatio": "0.907369550699744", "sL_AssetLoss": "68582.2", "sL_BldgLoss": "62229.4", "sL_StrLoss": "45322.4", "sL_NStrLoss": "16907", "sL_ContLoss": "6352.8", "geom_point": "0101000020E610000052CFBCFB27835EC09F950F9C8E814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.021329378999937, 49.018564773000051 ], [ -122.021346542999964, 49.018363626000024 ], [ -122.020046070999953, 49.0183153730001 ], [ -122.019985845999926, 49.018313138000117 ], [ -122.020292724999962, 49.014717490000052 ], [ -122.025745411999949, 49.014919702000078 ], [ -122.025728268999984, 49.015120852000067 ], [ -122.026546840999984, 49.01515118500005 ], [ -122.026758674999911, 49.012664939000089 ], [ -122.027290578999967, 49.012684646000025 ], [ -122.027307862999933, 49.01248175200007 ], [ -122.032760318999948, 49.012683608000081 ], [ -122.032754854999951, 49.012747834000059 ], [ -122.033175577999941, 49.012763398000047 ], [ -122.033299183999986, 49.011310192000089 ], [ -122.034055220999974, 49.011338156000107 ], [ -122.034058353999967, 49.011301310000071 ], [ -122.039510701999987, 49.011502824000047 ], [ -122.039507930999932, 49.011535435000035 ], [ -122.040275331999965, 49.011563776000038 ], [ -122.040380349999964, 49.010326859000081 ], [ -122.045832610999952, 49.010528052000083 ], [ -122.045804783999927, 49.01085625200011 ], [ -122.049049116999981, 49.010975838000057 ], [ -122.049144619999964, 49.009848468000023 ], [ -122.053224961999973, 49.009998730000113 ], [ -122.054596862000011, 49.010049216000048 ], [ -122.054569429999987, 49.01037348200002 ], [ -122.05465728199999, 49.010376715000042 ], [ -122.054626990999935, 49.010734781000039 ], [ -122.055758984999954, 49.010776424000042 ], [ -122.055876873000017, 49.009382428000094 ], [ -122.056343381999937, 49.009399586000043 ], [ -122.056430030999977, 49.008374806000049 ], [ -122.054517210999947, 49.008304439000042 ], [ -122.054402241999952, 49.009663496000066 ], [ -122.05335566699992, 49.009624981000051 ], [ -122.04895004399998, 49.009462738000117 ], [ -122.049254635999915, 49.005866958000098 ], [ -122.052179454999987, 49.005974690000095 ], [ -122.052294480999976, 49.004615627000192 ], [ -122.055815140999982, 49.004745200000066 ], [ -122.055917392999945, 49.003535911000064 ], [ -122.056401305999927, 49.003553711000066 ], [ -122.06088043699998, 49.003718372000037 ], [ -122.06091750399996, 49.00327943100006 ], [ -122.066369030999908, 49.003479583000072 ], [ -122.066259748999954, 49.004775436000031 ], [ -122.066220590999961, 49.005239765000148 ], [ -122.068201876, 49.005312438 ], [ -122.067898748999937, 49.008908275000131 ], [ -122.06778209399999, 49.00890399700009 ], [ -122.067725776999964, 49.009571977000064 ], [ -122.064098001999938, 49.009438880000062 ], [ -122.064092431999967, 49.009504887000084 ], [ -122.065698228999963, 49.009563817000078 ], [ -122.065664867999985, 49.009959287000086 ], [ -122.066194136999982, 49.009978705000059 ], [ -122.066112784999959, 49.01094317900003 ], [ -122.067786441999914, 49.011004565000093 ], [ -122.067483243999959, 49.014600368000131 ], [ -122.066499418999982, 49.014564287000042 ], [ -122.066463224999922, 49.014993391000047 ], [ -122.065588187999964, 49.014961292000116 ], [ -122.065574795999908, 49.015120013000107 ], [ -122.064709233999963, 49.015088255000137 ], [ -122.064704661999954, 49.015142433000086 ], [ -122.059432213999941, 49.014948830000037 ], [ -122.059168797999931, 49.018065957000083 ], [ -122.053715598999972, 49.017865444000087 ], [ -122.053748759999934, 49.017473610000053 ], [ -122.052752745999953, 49.017436956000054 ], [ -122.052704430999938, 49.018007712000106 ], [ -122.052623986, 49.01800475200006 ], [ -122.052548774999977, 49.018893214000087 ], [ -122.050536805999954, 49.018819143 ], [ -122.050549154999899, 49.01695061900012 ], [ -122.050553206999922, 49.016339984000062 ], [ -122.049811803999958, 49.016697792000038 ], [ -122.049269404999933, 49.016886104 ], [ -122.047859550999974, 49.017292147000063 ], [ -122.047468093999896, 49.01740489800008 ], [ -122.047198584999933, 49.017476412000107 ], [ -122.047400301999971, 49.015096642000088 ], [ -122.047480741999948, 49.015099606000064 ], [ -122.047529289999943, 49.014526809000053 ], [ -122.045887338999961, 49.014466281000075 ], [ -122.045680981999936, 49.016899896000069 ], [ -122.04701126399999, 49.016948937000059 ], [ -122.046961208999932, 49.017539399000057 ], [ -122.044504998999969, 49.01819111 ], [ -122.04417712199999, 49.018235807000053 ], [ -122.043751088999898, 49.01822819100007 ], [ -122.043708147999908, 49.018217797000027 ], [ -122.043505974999931, 49.018168821000081 ], [ -122.043479102999981, 49.018162302000079 ], [ -122.042987294999961, 49.017945803000096 ], [ -122.04268250599992, 49.017718098000053 ], [ -122.04225913, 49.017293897000123 ], [ -122.042166848, 49.016504822000037 ], [ -122.042360532999908, 49.015942096000074 ], [ -122.042402941999939, 49.015628920000026 ], [ -122.042404013999885, 49.015387041000039 ], [ -122.042350429999914, 49.015117844000031 ], [ -122.04203709299999, 49.014685454000109 ], [ -122.04202414599996, 49.01452409900007 ], [ -122.042246051999953, 49.013764626000061 ], [ -122.042234214999951, 49.013343503000073 ], [ -122.042058, 49.012929991000128 ], [ -122.041799102999931, 49.012587616000076 ], [ -122.041787391999918, 49.012139594000075 ], [ -122.041705679999964, 49.012022496000057 ], [ -122.041500014999926, 49.011922544000043 ], [ -122.041361342999949, 49.011948792000062 ], [ -122.040530089999947, 49.01207904500005 ], [ -122.04026703599996, 49.012113570000054 ], [ -122.04004223299998, 49.01226549200004 ], [ -122.040195030999953, 49.012592060000067 ], [ -122.040582592999939, 49.01307368300008 ], [ -122.040627026999957, 49.013128915000038 ], [ -122.040671502999956, 49.013833896000087 ], [ -122.040475796999942, 49.014356250000056 ], [ -122.040104683, 49.014786997000058 ], [ -122.040197896, 49.015010400000079 ], [ -122.040176688999978, 49.015167129000062 ], [ -122.039692412999955, 49.015149247000068 ], [ -122.03969054599996, 49.015171233000082 ], [ -122.039350085999928, 49.015158660000061 ], [ -122.039285970999956, 49.015913541000046 ], [ -122.037038747999958, 49.015830523000041 ], [ -122.036997851, 49.016311766000086 ], [ -122.039567526999988, 49.016406692000089 ], [ -122.039359204999954, 49.016544896000056 ], [ -122.038617788999915, 49.01686920100007 ], [ -122.037436911999961, 49.017280994000018 ], [ -122.03705320899999, 49.017402658000094 ], [ -122.036841994, 49.017469651000084 ], [ -122.035656257, 49.017845652000126 ], [ -122.034326109999967, 49.018267417000047 ], [ -122.03424774799997, 49.018292265000042 ], [ -122.03430097599994, 49.017666400000039 ], [ -122.029549442999908, 49.017490597000069 ], [ -122.029574635999964, 49.017194716000105 ], [ -122.027722998999977, 49.017126149000077 ], [ -122.027792499999933, 49.016310265000087 ], [ -122.026994357999911, 49.016280700000038 ], [ -122.026782520000026, 49.018766931000087 ], [ -122.021329378999937, 49.018564773000051 ] ], [ [ -122.057165711999986, 49.013036787000026 ], [ -122.057133187999966, 49.01342147700008 ], [ -122.059373326999903, 49.013503817000043 ], [ -122.05940583200001, 49.013119127000031 ], [ -122.057165711999986, 49.013036787000026 ] ], [ [ -122.05918845799998, 49.00797199000003 ], [ -122.059248160999971, 49.007265375000024 ], [ -122.057544413999949, 49.007202744000097 ], [ -122.057484686999899, 49.00790935800007 ], [ -122.05918845799998, 49.00797199000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "0.975265559035817", "sL_AssetLoss": "5874.4", "sL_BldgLoss": "5729.1", "sL_StrLoss": "5051", "sL_NStrLoss": "678.1", "sL_ContLoss": "145.3", "geom_point": "0101000020E6100000640155D447815EC0BB257B7C298B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.006927764999944, 49.089160302000018 ], [ -122.007043493999944, 49.086477496000036 ], [ -122.010115370999969, 49.08659164200003 ], [ -122.01012837899998, 49.086439859000066 ], [ -122.015589412999944, 49.086642565000041 ], [ -122.015549563, 49.087108182000108 ], [ -122.016748435999887, 49.087152645000046 ], [ -122.016748770999953, 49.087148720000087 ], [ -122.017156143999941, 49.087163825000125 ], [ -122.017163758, 49.087074830000091 ], [ -122.01761600499999, 49.087091597000089 ], [ -122.017617137999977, 49.087078341000066 ], [ -122.018809419999968, 49.087122537000035 ], [ -122.018810588999941, 49.08710886900009 ], [ -122.019505734999925, 49.087134630000016 ], [ -122.019512262999967, 49.087058285000033 ], [ -122.020215341, 49.087084336000025 ], [ -122.020235945999943, 49.08684330300008 ], [ -122.021549988999979, 49.086891979000058 ], [ -122.021572903999953, 49.086623834000072 ], [ -122.023973628999926, 49.086712722000115 ], [ -122.023976782999981, 49.086551852000078 ], [ -122.024118360999964, 49.086553049000045 ], [ -122.02432462799996, 49.084137593000037 ], [ -122.024856370999927, 49.084157273000102 ], [ -122.024976578999983, 49.082749304000103 ], [ -122.025428141, 49.082766014000114 ], [ -122.025450873999986, 49.082499715000061 ], [ -122.028704164999937, 49.082620052000053 ], [ -122.028724145999917, 49.082385792000096 ], [ -122.029002921999947, 49.082396100000061 ], [ -122.028887120999968, 49.084302687000033 ], [ -122.0289196799999, 49.086609609000057 ], [ -122.028957910999964, 49.089317997000087 ], [ -122.026890001999988, 49.089318475000013 ], [ -122.023520835999989, 49.089319187000058 ], [ -122.022081652999987, 49.089319453000066 ], [ -122.018003115999974, 49.089320093000062 ], [ -122.017894000999931, 49.089234908000066 ], [ -122.016956431999972, 49.089351893000099 ], [ -122.010506392999957, 49.089292912000118 ], [ -122.006927764999944, 49.089160302000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9811750", "BldgCostT": "6295000", "sL_LossRatio": "0.851327222949649", "sL_AssetLoss": "25203", "sL_BldgLoss": "21456", "sL_StrLoss": "13940", "sL_NStrLoss": "7516", "sL_ContLoss": "3747", "geom_point": "0101000020E6100000FBD556CB21865EC0A971A9294D814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.091613828999954, 49.014068369000057 ], [ -122.091626527999921, 49.013916837000082 ], [ -122.090858695999913, 49.013888850000107 ], [ -122.091058908999983, 49.011500192000014 ], [ -122.086484292999955, 49.011333340000142 ], [ -122.086786006999901, 49.007737465000048 ], [ -122.089714724999936, 49.007844307000056 ], [ -122.089758307999929, 49.007324434000097 ], [ -122.095210428999962, 49.007523121000077 ], [ -122.094966917999969, 49.010431675000099 ], [ -122.096394512999936, 49.010483653000094 ], [ -122.096657727999911, 49.007338599000086 ], [ -122.097316288999963, 49.00736257100003 ], [ -122.097376736999962, 49.006640115000046 ], [ -122.098925403999971, 49.006696471000069 ], [ -122.09896989899994, 49.006164452000043 ], [ -122.103125955999985, 49.006315578000063 ], [ -122.104421922999961, 49.006362670000037 ], [ -122.10412157799999, 49.009958603000079 ], [ -122.102626971999896, 49.009904292000016 ], [ -122.102372471999971, 49.012949736000031 ], [ -122.097192745999948, 49.012761354000055 ], [ -122.097026054999915, 49.014753159000072 ], [ -122.091573081999968, 49.014554567000097 ], [ -122.091613828999954, 49.014068369000057 ] ], [ [ -122.097053927999966, 49.011147335000011 ], [ -122.09706956699992, 49.010960450000049 ], [ -122.096574828000016, 49.010942443000062 ], [ -122.09655918699994, 49.01112932700002 ], [ -122.097053927999966, 49.011147335000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.967321781602512", "sL_AssetLoss": "1719.8", "sL_BldgLoss": "1663.6", "sL_StrLoss": "1440", "sL_NStrLoss": "223.6", "sL_ContLoss": "56.2", "geom_point": "0101000020E6100000B1634C8F207F5EC0B5CCF994A9894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.98508827699996, 49.078292349000016 ], [ -121.985125496, 49.078006161000069 ], [ -121.984993085999932, 49.078049200000045 ], [ -121.984866078999985, 49.07804540300009 ], [ -121.985087898999922, 49.077463501000089 ], [ -121.985278993999927, 49.076962081000033 ], [ -121.984995497999961, 49.07141552300007 ], [ -121.984417098999984, 49.07177069700009 ], [ -121.985123581999986, 49.071336841000125 ], [ -121.986275633999966, 49.071379910000083 ], [ -121.98620601099999, 49.072187743000086 ], [ -121.986862964999915, 49.072212297000071 ], [ -121.986730549999933, 49.073748859000098 ], [ -121.986886859, 49.07375470100002 ], [ -121.986644646999935, 49.076565215000137 ], [ -121.986941928999983, 49.076576325000104 ], [ -121.988716990999961, 49.076642642000152 ], [ -121.98884586799997, 49.076647456000039 ], [ -121.988811613999971, 49.077045111000054 ], [ -121.988807030999965, 49.077098306000082 ], [ -121.988802632, 49.077149366000036 ], [ -121.988815799999955, 49.077149857000066 ], [ -121.988716247999889, 49.078305511000046 ], [ -121.98528701499994, 49.078292416000117 ], [ -121.98508827699996, 49.078292349000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.955110720724886", "sL_AssetLoss": "2163.1", "sL_BldgLoss": "2066", "sL_StrLoss": "1658", "sL_NStrLoss": "408", "sL_ContLoss": "97.1", "geom_point": "0101000020E6100000685B8B1ED1865EC09471E71D82804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.103937921999886, 49.002073859000127 ], [ -122.109389490999973, 49.002271826000076 ], [ -122.109089554999969, 49.005867795000057 ], [ -122.103815528000027, 49.005676281000021 ], [ -122.103637567999982, 49.005669814000058 ], [ -122.10390442899994, 49.002474884000065 ], [ -122.103937921999886, 49.002073859000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.880701104733691", "sL_AssetLoss": "16203", "sL_BldgLoss": "14270", "sL_StrLoss": "10030", "sL_NStrLoss": "4240", "sL_ContLoss": "1933", "geom_point": "0101000020E610000025AEA57803855EC0BC93709D56814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.073008483999942, 49.014168790000078 ], [ -122.073048666999952, 49.013691594000072 ], [ -122.072608144999961, 49.013675462000073 ], [ -122.072910940999947, 49.010079638000043 ], [ -122.074587014999935, 49.01014100700008 ], [ -122.074673823999959, 49.009109578000078 ], [ -122.07711619899996, 49.009198958000056 ], [ -122.077368174999961, 49.006202933000068 ], [ -122.082820110999975, 49.006402249000068 ], [ -122.082787417999967, 49.00679154200003 ], [ -122.082775283, 49.006936035000159 ], [ -122.084876975000014, 49.007012796000026 ], [ -122.084575119999926, 49.01060867100005 ], [ -122.080030811999961, 49.01044264700004 ], [ -122.079823852999937, 49.012904878000057 ], [ -122.07858818899993, 49.012859700000064 ], [ -122.07840091499996, 49.015086805000067 ], [ -122.072947981999931, 49.014887267000091 ], [ -122.073008483999942, 49.014168790000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11027917", "BldgCostT": "7341667", "sL_LossRatio": "0.88043358946213", "sL_AssetLoss": "36440", "sL_BldgLoss": "32083", "sL_StrLoss": "23690", "sL_NStrLoss": "8393", "sL_ContLoss": "4357", "geom_point": "0101000020E610000009F7A9AE2C855EC0BC2D899A85804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.068251917999987, 49.008290459000129 ], [ -122.068503309999983, 49.005308068000012 ], [ -122.067338271999972, 49.005265342000108 ], [ -122.067467767, 49.00372938200006 ], [ -122.067566314999937, 49.002560407000097 ], [ -122.067641419999958, 49.00166948600004 ], [ -122.067762838999968, 49.001673940000053 ], [ -122.06779035699999, 49.00134747600007 ], [ -122.097515609999945, 49.001887981000081 ], [ -122.097467603000013, 49.002461838000023 ], [ -122.097251227999934, 49.005048082000037 ], [ -122.0955681499999, 49.004986806000076 ], [ -122.095427344999948, 49.006668921000028 ], [ -122.08997532099994, 49.006470246000035 ], [ -122.08999814199997, 49.006198017 ], [ -122.089227911999942, 49.006169927000059 ], [ -122.089331370999957, 49.004935944000117 ], [ -122.08596597699993, 49.004813143000071 ], [ -122.085991749999891, 49.004505984000026 ], [ -122.084216048999977, 49.004441148000133 ], [ -122.082699684999952, 49.004385757000108 ], [ -122.082703455999962, 49.004340850000062 ], [ -122.081564922, 49.004299247000127 ], [ -122.081535166999942, 49.004653461000018 ], [ -122.077300802999957, 49.004498625000025 ], [ -122.077080521999989, 49.007117860000058 ], [ -122.074638100999948, 49.007028474000059 ], [ -122.074542776999976, 49.008161118000089 ], [ -122.073734257999931, 49.008131516000034 ], [ -122.0737040599999, 49.008490238000071 ], [ -122.068251917999987, 49.008290459000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76372916", "BldgCostT": "51671666", "sL_LossRatio": "0.851937435206484", "sL_AssetLoss": "286487", "sL_BldgLoss": "244069", "sL_StrLoss": "165619", "sL_NStrLoss": "78450", "sL_ContLoss": "42418", "geom_point": "0101000020E6100000B97E6E266E825EC0BC38F94657834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.022173450999915, 49.037333747000062 ], [ -122.022213761999978, 49.036861418000093 ], [ -122.019281581999977, 49.036752670000055 ], [ -122.019428179000016, 49.035036123000083 ], [ -122.019476332, 49.034472253000082 ], [ -122.019573974999943, 49.033328828000109 ], [ -122.019588636999984, 49.033157128 ], [ -122.019790969999946, 49.033164635000041 ], [ -122.020658042999955, 49.033196799000038 ], [ -122.022616372999906, 49.033269418000039 ], [ -122.022661834999937, 49.032736600000099 ], [ -122.023510559999963, 49.032768062000073 ], [ -122.024247111999969, 49.032795360000065 ], [ -122.024345, 49.032827607000101 ], [ -122.02461939599999, 49.033010914000016 ], [ -122.024866198999931, 49.0331166 ], [ -122.025057998999927, 49.033160704000082 ], [ -122.025242616999932, 49.033130494000027 ], [ -122.025279796999953, 49.033098049000024 ], [ -122.025411108999933, 49.032983503000047 ], [ -122.025488657999958, 49.032822866000124 ], [ -122.025582209999939, 49.032629102000094 ], [ -122.025624464999964, 49.032480739000022 ], [ -122.02722092599997, 49.032539869000026 ], [ -122.027223061999962, 49.03251481000013 ], [ -122.02786156, 49.03253845200004 ], [ -122.027870740000012, 49.032430724000065 ], [ -122.028932929999925, 49.032470046000107 ], [ -122.02895450699998, 49.032216750000032 ], [ -122.029142182999934, 49.032223696000059 ], [ -122.029854609999987, 49.032250063000113 ], [ -122.029906800999981, 49.031637272000111 ], [ -122.031529545999902, 49.031697310000041 ], [ -122.031595071999931, 49.030927609000095 ], [ -122.032565685999955, 49.030963509000053 ], [ -122.032674748999966, 49.029682017000027 ], [ -122.032745739999925, 49.028847831000093 ], [ -122.036153082999974, 49.028973787000076 ], [ -122.036203370999914, 49.028382343000139 ], [ -122.035434387999942, 49.028353926000058 ], [ -122.035490260999921, 49.027696908000046 ], [ -122.035740144000016, 49.024758291000119 ], [ -122.035942709999986, 49.024765777 ], [ -122.03599856799994, 49.024108795000124 ], [ -122.040654960999973, 49.024280774000061 ], [ -122.04086209699993, 49.021841504000101 ], [ -122.041874003999936, 49.021878851000046 ], [ -122.041957079999946, 49.02090020800005 ], [ -122.038162755999906, 49.020760119000094 ], [ -122.038230375999916, 49.019964279000099 ], [ -122.034118465999953, 49.019812313000017 ], [ -122.03424774799997, 49.018292265000042 ], [ -122.034326109999967, 49.018267417000047 ], [ -122.035656257, 49.017845652000126 ], [ -122.036841994, 49.017469651000084 ], [ -122.03705320899999, 49.017402658000094 ], [ -122.037436911999961, 49.017280994000018 ], [ -122.038617788999915, 49.01686920100007 ], [ -122.039359204999954, 49.016544896000056 ], [ -122.039567526999988, 49.016406692000089 ], [ -122.039877189999913, 49.016418127000108 ], [ -122.039809602999981, 49.017213973000047 ], [ -122.040155635999938, 49.017226749000102 ], [ -122.040330046999927, 49.015172792000037 ], [ -122.040176688999978, 49.015167129000062 ], [ -122.040197896, 49.015010400000079 ], [ -122.040104683, 49.014786997000058 ], [ -122.040475796999942, 49.014356250000056 ], [ -122.040671502999956, 49.013833896000087 ], [ -122.040627026999957, 49.013128915000038 ], [ -122.040582592999939, 49.01307368300008 ], [ -122.040195030999953, 49.012592060000067 ], [ -122.04004223299998, 49.01226549200004 ], [ -122.04026703599996, 49.012113570000054 ], [ -122.040530089999947, 49.01207904500005 ], [ -122.041361342999949, 49.011948792000062 ], [ -122.041500014999926, 49.011922544000043 ], [ -122.041705679999964, 49.012022496000057 ], [ -122.041787391999918, 49.012139594000075 ], [ -122.041799102999931, 49.012587616000076 ], [ -122.042058, 49.012929991000128 ], [ -122.042234214999951, 49.013343503000073 ], [ -122.042246051999953, 49.013764626000061 ], [ -122.04202414599996, 49.01452409900007 ], [ -122.04203709299999, 49.014685454000109 ], [ -122.042350429999914, 49.015117844000031 ], [ -122.042404013999885, 49.015387041000039 ], [ -122.042402941999939, 49.015628920000026 ], [ -122.042360532999908, 49.015942096000074 ], [ -122.042166848, 49.016504822000037 ], [ -122.04225913, 49.017293897000123 ], [ -122.04268250599992, 49.017718098000053 ], [ -122.042987294999961, 49.017945803000096 ], [ -122.043479102999981, 49.018162302000079 ], [ -122.043505974999931, 49.018168821000081 ], [ -122.043708147999908, 49.018217797000027 ], [ -122.043751088999898, 49.01822819100007 ], [ -122.04417712199999, 49.018235807000053 ], [ -122.044504998999969, 49.01819111 ], [ -122.046961208999932, 49.017539399000057 ], [ -122.046783020999925, 49.019641245000045 ], [ -122.047529831999938, 49.019668770000095 ], [ -122.047553057999892, 49.019394758000026 ], [ -122.050532274999981, 49.019504505000043 ], [ -122.050527490999968, 49.020228299000117 ], [ -122.05059929199993, 49.021947700000041 ], [ -122.050603407, 49.022045300000102 ], [ -122.050541716999945, 49.022289195 ], [ -122.050454217, 49.022404458000089 ], [ -122.050418496999953, 49.022451507000078 ], [ -122.05013271299994, 49.022677288000132 ], [ -122.048381789999965, 49.02353518800011 ], [ -122.048265534, 49.023653343000042 ], [ -122.048245599999959, 49.023673596000044 ], [ -122.048200392999917, 49.023803598000093 ], [ -122.048238205999922, 49.023922194000122 ], [ -122.048450080999942, 49.024246493000092 ], [ -122.048462608999927, 49.024261238000101 ], [ -122.04886636399999, 49.024736610000048 ], [ -122.049548315999942, 49.025539503000118 ], [ -122.049039520999898, 49.025933618000046 ], [ -122.048446019999972, 49.026393401000071 ], [ -122.046817208999968, 49.027421702000076 ], [ -122.046203116999919, 49.027759787000079 ], [ -122.045640076, 49.02802759100004 ], [ -122.045319692999939, 49.028257402000058 ], [ -122.044953597999935, 49.028602587000137 ], [ -122.044836493999966, 49.028712991000106 ], [ -122.043941800000013, 49.029424003000017 ], [ -122.043853965, 49.029478015000066 ], [ -122.043775815999965, 49.029526098000098 ], [ -122.043506187999981, 49.029640491000173 ], [ -122.042360108999958, 49.029863388000102 ], [ -122.04216733899996, 49.02994283800011 ], [ -122.041916273999959, 49.030108001000087 ], [ -122.041831244999969, 49.030163980000076 ], [ -122.041195174999984, 49.030807776000117 ], [ -122.041020920999969, 49.030899803000054 ], [ -122.040944562, 49.030940114000096 ], [ -122.040627444999927, 49.031017670000026 ], [ -122.040193114999937, 49.031009761000078 ], [ -122.039816025999968, 49.030939922000144 ], [ -122.039348021999928, 49.030764850000089 ], [ -122.038996178000019, 49.030687842000056 ], [ -122.037904663999925, 49.030606042000066 ], [ -122.036872880999951, 49.030831427000045 ], [ -122.036532202, 49.030905860000125 ], [ -122.036315723, 49.030953150000101 ], [ -122.035526027999964, 49.031070042000131 ], [ -122.034967206999951, 49.03120719000006 ], [ -122.034752097999942, 49.031273509000115 ], [ -122.034486765999972, 49.031355336000033 ], [ -122.034137878999957, 49.031682277000044 ], [ -122.033967926999964, 49.031841544000066 ], [ -122.033698929999943, 49.032093596000053 ], [ -122.033459260999962, 49.032498615000087 ], [ -122.033244496999913, 49.032643082000043 ], [ -122.03254733599999, 49.032846341000088 ], [ -122.031761215999893, 49.033274429000095 ], [ -122.03157898799995, 49.033360483000095 ], [ -122.03075350099995, 49.033750261000144 ], [ -122.029853351999975, 49.033991067000031 ], [ -122.028983245999939, 49.034062670000033 ], [ -122.028874659999971, 49.03407161800002 ], [ -122.028907287999985, 49.036209212000088 ], [ -122.027841303999963, 49.036169753000117 ], [ -122.027810240999926, 49.036534255000085 ], [ -122.027714453, 49.036530708000022 ], [ -122.02762878899992, 49.03753585600009 ], [ -122.022173450999915, 49.037333747000062 ] ], [ [ -122.042906151999915, 49.027516866000063 ], [ -122.043058174999913, 49.02572576700009 ], [ -122.042571312999968, 49.025707806000142 ], [ -122.042416737999957, 49.027528765000049 ], [ -122.04237548899999, 49.028014652000046 ], [ -122.042862375999945, 49.028032613000057 ], [ -122.042906151999915, 49.027516866000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23562584", "BldgCostT": "15778334", "sL_LossRatio": "0.860351241930189", "sL_AssetLoss": "73112", "sL_BldgLoss": "62902", "sL_StrLoss": "43252", "sL_NStrLoss": "19650", "sL_ContLoss": "10210", "geom_point": "0101000020E61000003EA9DD4CD8805EC006C41CEB7F844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.011325170999967, 49.040835956000109 ], [ -122.011330518999941, 49.040566129000133 ], [ -122.010561591999974, 49.04055953900005 ], [ -122.010698182999988, 49.040361200000113 ], [ -122.010477396999988, 49.039792911000085 ], [ -122.010397477999945, 49.039018094000021 ], [ -122.010264217, 49.038783204 ], [ -122.010257968, 49.038584438000036 ], [ -122.010239906999914, 49.038009796000075 ], [ -122.009911385999956, 49.037269206000069 ], [ -122.009844588999968, 49.036567110000057 ], [ -122.009373310999962, 49.036112789000065 ], [ -122.008916554999956, 49.035852676000026 ], [ -122.008992391999953, 49.033419342000094 ], [ -122.009023840999944, 49.031986178000068 ], [ -122.009033879999947, 49.031530033000131 ], [ -122.009362645999929, 49.031531059000045 ], [ -122.011676598999955, 49.031531044000076 ], [ -122.015499259999913, 49.031530903000039 ], [ -122.01791149899995, 49.031530741000132 ], [ -122.017810922999928, 49.032708059000072 ], [ -122.01777894199995, 49.033082405000172 ], [ -122.017345209999945, 49.033066305000069 ], [ -122.017340202999961, 49.033124916000055 ], [ -122.018162911999937, 49.033155454000052 ], [ -122.018152889999925, 49.033272775000043 ], [ -122.01805119699999, 49.034463206000098 ], [ -122.018002869999975, 49.03502891100004 ], [ -122.017855746999913, 49.036750992000051 ], [ -122.016824964999941, 49.036712731000108 ], [ -122.016799917999947, 49.037005817000072 ], [ -122.013866067999942, 49.036896860000077 ], [ -122.013851788999943, 49.037619109000111 ], [ -122.014262194999958, 49.037622615000018 ], [ -122.014238054999936, 49.038844103000024 ], [ -122.013943960999924, 49.039031352000045 ], [ -122.0138570599999, 49.03914094200006 ], [ -122.013804147999963, 49.039302313000043 ], [ -122.013827351999936, 49.039413121000081 ], [ -122.013780137, 49.039625709000049 ], [ -122.013212169999989, 49.040213576000099 ], [ -122.013006503000014, 49.04031305400013 ], [ -122.012399282, 49.040606796000105 ], [ -122.012117362999959, 49.040743160000034 ], [ -122.011783974999943, 49.040826675000076 ], [ -122.011732986999931, 49.040839449000025 ], [ -122.011325170999967, 49.040835956000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9388750", "BldgCostT": "6475000", "sL_LossRatio": "0.887958183175871", "sL_AssetLoss": "30801", "sL_BldgLoss": "27350", "sL_StrLoss": "19500", "sL_NStrLoss": "7850", "sL_ContLoss": "3451", "geom_point": "0101000020E6100000851BF86A2A815EC0F246414B32834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.016787081999922, 49.026591765000077 ], [ -122.016882057999908, 49.02548011400004 ], [ -122.016108414999962, 49.025451384000085 ], [ -122.016086703999918, 49.025705462000133 ], [ -122.016717106999948, 49.025728873000091 ], [ -122.016644750999959, 49.026575734000112 ], [ -122.015610100999979, 49.026459189000079 ], [ -122.015146702999942, 49.02630947200003 ], [ -122.015058516999915, 49.026280976000137 ], [ -122.014764908999936, 49.026186111000108 ], [ -122.014242244999977, 49.02582822700009 ], [ -122.014118790999973, 49.025743707000046 ], [ -122.013925985999961, 49.025278503000116 ], [ -122.013886178999954, 49.02451230800007 ], [ -122.014131107999901, 49.023951506000124 ], [ -122.014423509, 49.023699091 ], [ -122.014783621999953, 49.023567209000134 ], [ -122.015594892999957, 49.023355711000114 ], [ -122.0178259, 49.022889396 ], [ -122.018628714999977, 49.022746098000034 ], [ -122.020334682999987, 49.022569637000124 ], [ -122.02018301499993, 49.024346494000099 ], [ -122.022442816999956, 49.024430316000078 ], [ -122.022249712999965, 49.026693669000061 ], [ -122.021942496999927, 49.026707798000118 ], [ -122.021564296999955, 49.026779388000072 ], [ -122.020532108999959, 49.027045887000035 ], [ -122.019910198999952, 49.027040001000096 ], [ -122.017557861999961, 49.026689440000062 ], [ -122.017258888999933, 49.02664490600003 ], [ -122.016787081999922, 49.026591765000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.874942231259821", "sL_AssetLoss": "10819", "sL_BldgLoss": "9466", "sL_StrLoss": "6700", "sL_NStrLoss": "2766", "sL_ContLoss": "1353", "geom_point": "0101000020E6100000374D86808F815EC07C2DC7AFC8834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.025348904999959, 49.031193912000141 ], [ -122.024895395999977, 49.030929105000098 ], [ -122.023880997999981, 49.030552490000048 ], [ -122.023322009999987, 49.030370406000017 ], [ -122.022742904, 49.03023170000003 ], [ -122.022218008999957, 49.030179793000045 ], [ -122.021957331999928, 49.030107901000122 ], [ -122.021822407999977, 49.030037879000112 ], [ -122.021749982999978, 49.029924301000079 ], [ -122.021740107, 49.02976891300009 ], [ -122.021745331999952, 49.029760189000029 ], [ -122.022176987999941, 49.029040214000069 ], [ -122.02231509799995, 49.028912779000102 ], [ -122.022543801, 49.028829284000061 ], [ -122.023026591999951, 49.028766702000041 ], [ -122.023245002999943, 49.02873840000008 ], [ -122.02338762, 49.028719906000013 ], [ -122.023807496999922, 49.028575912000079 ], [ -122.024123586999949, 49.028398202000069 ], [ -122.024326691999974, 49.028214605000109 ], [ -122.024447004999928, 49.028006184000098 ], [ -122.024454450999954, 49.027972279000075 ], [ -122.024471591999941, 49.027894409000069 ], [ -122.024500116999903, 49.027782123000058 ], [ -122.0259874, 49.027837231000078 ], [ -122.025983561999951, 49.027882262000041 ], [ -122.025851666999969, 49.029429468000068 ], [ -122.025743058000018, 49.030703437000156 ], [ -122.025890608999958, 49.030704683000096 ], [ -122.025885341999981, 49.030974511000153 ], [ -122.026295693999955, 49.030977975000035 ], [ -122.026279895999977, 49.031787459000029 ], [ -122.025809785999954, 49.031783491000041 ], [ -122.025765586999952, 49.031633194000072 ], [ -122.025626413999959, 49.031420607000094 ], [ -122.025348904999959, 49.031193912000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.878995433789954", "sL_AssetLoss": "6570", "sL_BldgLoss": "5775", "sL_StrLoss": "4040", "sL_NStrLoss": "1735", "sL_ContLoss": "795", "geom_point": "0101000020E6100000653E5A7B23835EC0829D51A948824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.049811803999958, 49.016697792000038 ], [ -122.050553206999922, 49.016339984000062 ], [ -122.050549154999899, 49.01695061900012 ], [ -122.050536805999954, 49.018819143 ], [ -122.047095507999956, 49.01869236400011 ], [ -122.047198584999933, 49.017476412000107 ], [ -122.047468093999896, 49.01740489800008 ], [ -122.047859550999974, 49.017292147000063 ], [ -122.049269404999933, 49.016886104 ], [ -122.049811803999958, 49.016697792000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.966698218741933", "sL_AssetLoss": "2324.2", "sL_BldgLoss": "2246.8", "sL_StrLoss": "1930", "sL_NStrLoss": "316.8", "sL_ContLoss": "77.4", "geom_point": "0101000020E61000002F6FABAC2F7D5EC0C67DB3E6AA884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.9549493, 49.069526098000061 ], [ -121.954952835999947, 49.069485396000069 ], [ -121.954896315999989, 49.069484885000087 ], [ -121.954930273999977, 49.067865963000081 ], [ -121.955229214999989, 49.06786867000006 ], [ -121.955266964999964, 49.067433989000087 ], [ -121.955349991, 49.067437117000054 ], [ -121.955352235999968, 49.067330040000087 ], [ -121.956173523999951, 49.067337471000016 ], [ -121.95617917700001, 49.067067650000062 ], [ -121.956497457999916, 49.067070528000038 ], [ -121.956589817999927, 49.067071363000061 ], [ -121.956595467999989, 49.066801543000068 ], [ -121.957707720999977, 49.066811594000065 ], [ -121.95747808499999, 49.067209795000039 ], [ -121.957308591999933, 49.067348611000092 ], [ -121.95704681199993, 49.067456773000089 ], [ -121.95643538399996, 49.067709426000071 ], [ -121.955614502999978, 49.068048590000082 ], [ -121.955355104999938, 49.068213796000109 ], [ -121.95518128499999, 49.068481311000042 ], [ -121.955258892999964, 49.068991006000033 ], [ -121.955203910999984, 49.069245088000123 ], [ -121.955086810999902, 49.069442607000028 ], [ -121.9549493, 49.069526098000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.935532711769862", "sL_AssetLoss": "2509.8", "sL_BldgLoss": "2348", "sL_StrLoss": "1866", "sL_NStrLoss": "482", "sL_ContLoss": "161.8", "geom_point": "0101000020E61000000FDB711EA97D5EC0BE9FBF75EA874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.962486274999947, 49.061460400000016 ], [ -121.963664916999946, 49.061485620000063 ], [ -121.964294608000031, 49.061697887 ], [ -121.964484301999917, 49.061846574000036 ], [ -121.964617382999961, 49.062048172000047 ], [ -121.96461181299999, 49.062192339000056 ], [ -121.962461866999931, 49.062111501000039 ], [ -121.962486274999947, 49.061460400000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5401334", "BldgCostT": "3253334", "sL_LossRatio": "0.905932303337658", "sL_AssetLoss": "4239.5", "sL_BldgLoss": "3840.7", "sL_StrLoss": "2839", "sL_NStrLoss": "1001.7", "sL_ContLoss": "398.8", "geom_point": "0101000020E61000007E5F0AACEF7C5EC0861E5288D7884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.951075911999951, 49.06952274800004 ], [ -121.951283516999979, 49.068102755000098 ], [ -121.951639415999949, 49.06810598800012 ], [ -121.95163373699998, 49.068375809000059 ], [ -121.952455042999958, 49.068383266000041 ], [ -121.952449367999961, 49.06865308600009 ], [ -121.953270676999963, 49.068660538000117 ], [ -121.95325367099997, 49.069469998000052 ], [ -121.952843010999956, 49.069466273000053 ], [ -121.952831667999959, 49.070005913000053 ], [ -121.952631486999962, 49.07000409600009 ], [ -121.95261446899994, 49.069976920000045 ], [ -121.952399343999957, 49.069880896 ], [ -121.951968987, 49.069737556000042 ], [ -121.951566448999984, 49.069655874000041 ], [ -121.951075911999951, 49.06952274800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57709333", "BldgCostT": "35698333", "sL_LossRatio": "0.814044222909574", "sL_AssetLoss": "134817", "sL_BldgLoss": "109747", "sL_StrLoss": "69487", "sL_NStrLoss": "40260", "sL_ContLoss": "25070", "geom_point": "0101000020E610000058171AFC7B7D5EC02FCA4B82E0884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.961308650999982, 49.066131870000092 ], [ -121.96142099399999, 49.064836228000047 ], [ -121.962358301999984, 49.064873936000048 ], [ -121.962375953999967, 49.064403155000058 ], [ -121.963908399999951, 49.064460777000093 ], [ -121.963382286, 49.065780008000097 ], [ -121.962996302999954, 49.067200994000125 ], [ -121.962831918999967, 49.067507632000073 ], [ -121.962775885999946, 49.067612109000116 ], [ -121.96268246899993, 49.06784556400001 ], [ -121.962665706999985, 49.067887492000111 ], [ -121.962573020999969, 49.068893893000059 ], [ -121.96252792899999, 49.06954526700013 ], [ -121.962481107, 49.070222282000024 ], [ -121.962469000999931, 49.071577992000108 ], [ -121.962652486999971, 49.072778801000013 ], [ -121.962477154999974, 49.072798596000041 ], [ -121.961771600999953, 49.072878214000077 ], [ -121.961020417999961, 49.072857202000044 ], [ -121.960678683999944, 49.072827208000056 ], [ -121.95967032099999, 49.072738631000099 ], [ -121.958828498999964, 49.07266471 ], [ -121.958541633999943, 49.072642356000095 ], [ -121.957550006999952, 49.07256519400002 ], [ -121.95756559199999, 49.072432294000095 ], [ -121.957086682999943, 49.071592802000076 ], [ -121.957078109999884, 49.071377003000073 ], [ -121.957182992999932, 49.071209600000032 ], [ -121.957330706999954, 49.071120866000101 ], [ -121.957752093999929, 49.0708676920001 ], [ -121.957865188999961, 49.070716810000093 ], [ -121.957935686999988, 49.070534610000031 ], [ -121.957963596999917, 49.070213699000092 ], [ -121.958114919, 49.069139954000015 ], [ -121.958134617999988, 49.069000100000075 ], [ -121.959355814999952, 49.06797579800012 ], [ -121.959373410999945, 49.067883504000079 ], [ -121.959330493999985, 49.067746694000107 ], [ -121.959359924, 49.067644096 ], [ -121.959416382999933, 49.067566156000076 ], [ -121.959429880999906, 49.067547500000046 ], [ -121.959826285999924, 49.067318095000061 ], [ -121.960647094999928, 49.066551783000101 ], [ -121.960727387999952, 49.06636818900003 ], [ -121.960736989999958, 49.066210711000032 ], [ -121.960704744999987, 49.066109151000028 ], [ -121.961308650999982, 49.066131870000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6309167", "BldgCostT": "4141667", "sL_LossRatio": "0.683380746018664", "sL_AssetLoss": "11283.9", "sL_BldgLoss": "7711.2", "sL_StrLoss": "5192.2", "sL_NStrLoss": "2519", "sL_ContLoss": "3572.7", "geom_point": "0101000020E6100000481229722D7D5EC03920538811884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.953375636999951, 49.063435931000136 ], [ -121.953465967999989, 49.062396136000089 ], [ -121.956271852999961, 49.062560961000038 ], [ -121.956931773999969, 49.062599711000068 ], [ -121.958521723, 49.062693067000041 ], [ -121.958412034, 49.063625652000063 ], [ -121.956837872999955, 49.063566379000044 ], [ -121.953375636999951, 49.063435931000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.978615743388921", "sL_AssetLoss": "2272.7", "sL_BldgLoss": "2224.1", "sL_StrLoss": "2042", "sL_NStrLoss": "182.1", "sL_ContLoss": "48.6", "geom_point": "0101000020E61000002419E6C2907E5EC0E8851A095D8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.975895071999915, 49.088298145000124 ], [ -121.979453476999964, 49.088431389000107 ], [ -121.97945536, 49.089159341000048 ], [ -121.975838729999964, 49.089215121000038 ], [ -121.97581582299999, 49.089214924000011 ], [ -121.975895071999915, 49.088298145000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.896418448853388", "sL_AssetLoss": "7762", "sL_BldgLoss": "6958", "sL_StrLoss": "5020", "sL_NStrLoss": "1938", "sL_ContLoss": "804", "geom_point": "0101000020E61000002EF666ED597E5EC08615766A118A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.973581139999908, 49.079637801000018 ], [ -121.973586699999942, 49.079367980000058 ], [ -121.973208379999932, 49.07936461400007 ], [ -121.973276871999957, 49.078015870000108 ], [ -121.973614500999972, 49.07801887300009 ], [ -121.97362006199991, 49.077749051000083 ], [ -121.975262988999987, 49.077763650000122 ], [ -121.97523523299999, 49.0791127580001 ], [ -121.974824488999957, 49.079109110000054 ], [ -121.974813381999979, 49.079648754000047 ], [ -121.973581139999908, 49.079637801000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134415667", "BldgCostT": "92436667", "sL_LossRatio": "0.885804118926817", "sL_AssetLoss": "445810.3", "sL_BldgLoss": "394900.6", "sL_StrLoss": "274705.6", "sL_NStrLoss": "120195", "sL_ContLoss": "50909.7", "geom_point": "0101000020E61000006E853CC4777E5EC0A96CD41AB5894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.977731926999965, 49.082023878000044 ], [ -121.977759694999961, 49.081702449000055 ], [ -121.977558986999938, 49.08169493200004 ], [ -121.977563037999971, 49.081648027000035 ], [ -121.977615667999913, 49.081038827000086 ], [ -121.97633888499999, 49.080991002000083 ], [ -121.976339416999949, 49.080984839000074 ], [ -121.97582556899998, 49.080965588000019 ], [ -121.975877565999937, 49.080363948000105 ], [ -121.97544609299996, 49.080347779000135 ], [ -121.975713256999981, 49.077256641000048 ], [ -121.973319979999985, 49.077166931000114 ], [ -121.973431643999959, 49.074967763000082 ], [ -121.972823387999981, 49.074961506000086 ], [ -121.970344512999986, 49.074958505000026 ], [ -121.970057037999936, 49.074958154000043 ], [ -121.966614317999984, 49.074953899000079 ], [ -121.966251710999984, 49.074934779000067 ], [ -121.965678100999966, 49.074964693 ], [ -121.965298497999953, 49.074967915000116 ], [ -121.964640802999924, 49.074973502000034 ], [ -121.964363994999985, 49.074912611000101 ], [ -121.964120215999941, 49.074817802000098 ], [ -121.963892489999964, 49.074633405000114 ], [ -121.963492702999972, 49.074143112000058 ], [ -121.963389694999989, 49.07384620800007 ], [ -121.963311617999977, 49.073772462000065 ], [ -121.96318589899991, 49.073653707000119 ], [ -121.962833403999966, 49.073218388000072 ], [ -121.962764503999935, 49.073050961000071 ], [ -121.962652486999971, 49.072778801000013 ], [ -121.962469000999931, 49.071577992000108 ], [ -121.962481107, 49.070222282000024 ], [ -121.96252792899999, 49.06954526700013 ], [ -121.962573020999969, 49.068893893000059 ], [ -121.962665706999985, 49.067887492000111 ], [ -121.96268246899993, 49.06784556400001 ], [ -121.96690417399995, 49.067672023000021 ], [ -121.966860305999944, 49.068178621000087 ], [ -121.966608437000019, 49.06816915900005 ], [ -121.966572015999944, 49.068589726000056 ], [ -121.965228100000033, 49.068539233000067 ], [ -121.96516425499999, 49.069276203000115 ], [ -121.965245867999911, 49.069279269000049 ], [ -121.965220464999973, 49.069572513000033 ], [ -121.965221989, 49.069572571000073 ], [ -121.965048864999943, 49.071570821000094 ], [ -121.9655717, 49.071590467000114 ], [ -121.965539619, 49.071960790000077 ], [ -121.96581831599994, 49.071971261000016 ], [ -121.965771330999985, 49.072513648000076 ], [ -121.966109538999987, 49.072526355000043 ], [ -121.966087116999987, 49.072785208000056 ], [ -121.966277249999948, 49.072792351000082 ], [ -121.966249751999968, 49.073109803000108 ], [ -121.966594258999962, 49.073122744000059 ], [ -121.966552407999984, 49.073605939000117 ], [ -121.96679738099999, 49.07361513900009 ], [ -121.966736541999964, 49.074317608000094 ], [ -121.966994805999946, 49.074327308000051 ], [ -121.96707105199998, 49.073446890000135 ], [ -121.968818752999965, 49.073512514000058 ], [ -121.968841689999962, 49.073247531000042 ], [ -121.970181627999963, 49.073297825000033 ], [ -121.970259079999963, 49.072402763000099 ], [ -121.973214403999947, 49.072513630000067 ], [ -121.973327420999965, 49.071206533000066 ], [ -121.975530262999925, 49.071289118000031 ], [ -121.975806872999954, 49.071291573000025 ], [ -121.9758457, 49.069402818000107 ], [ -121.975435037999929, 49.069399174000047 ], [ -121.975440584999916, 49.069129352000118 ], [ -121.968048698999922, 49.069063494000027 ], [ -121.968076640999982, 49.067714387000102 ], [ -121.968216415999933, 49.067715637000056 ], [ -121.968215432999969, 49.067669161000026 ], [ -121.968339296999886, 49.06766874900007 ], [ -121.968309360999925, 49.068065056000108 ], [ -121.971848347000019, 49.068065740000051 ], [ -121.971729902, 49.067657099000016 ], [ -121.973945887999918, 49.067663619000065 ], [ -121.973900124999943, 49.068079508000032 ], [ -121.973902232999961, 49.068540297000055 ], [ -121.97389038199999, 49.06897246300008 ], [ -121.976425442999982, 49.069064359000073 ], [ -121.97642327899996, 49.06935159500005 ], [ -121.977905276999934, 49.069217800000054 ], [ -121.977862971999969, 49.068963890000092 ], [ -121.977826794999928, 49.068746811999986 ], [ -121.977509401999967, 49.068322166000044 ], [ -121.978128878999939, 49.068353630000097 ], [ -121.978303719999971, 49.068748501000059 ], [ -121.978404140999913, 49.069329417000091 ], [ -121.978553927999926, 49.070195976000072 ], [ -121.978608996999967, 49.070514512000102 ], [ -121.978618938999944, 49.070542812000063 ], [ -121.978774314999953, 49.070984923000069 ], [ -121.979081289999954, 49.071858404000096 ], [ -121.979081249, 49.071860326000035 ], [ -121.979081966999942, 49.071860331999986 ], [ -121.97938582099999, 49.072724902000083 ], [ -121.97992359099996, 49.073916995000076 ], [ -121.980839281, 49.075284196000041 ], [ -121.980943393999922, 49.075590399000077 ], [ -121.981431586, 49.075846796000064 ], [ -121.981409312999958, 49.076269804000084 ], [ -121.981573895999972, 49.076252699000101 ], [ -121.981754183999911, 49.076074699000046 ], [ -121.981825897999926, 49.075878091000114 ], [ -121.982259222, 49.075495003000114 ], [ -121.982573424999899, 49.074885403000067 ], [ -121.982796196999956, 49.074734506000119 ], [ -121.983172519, 49.072984098000049 ], [ -121.983770793999895, 49.072521213000101 ], [ -121.983971117999971, 49.072109703000137 ], [ -121.984417098999984, 49.07177069700009 ], [ -121.984995497999961, 49.07141552300007 ], [ -121.985278993999927, 49.076962081000033 ], [ -121.985087898999922, 49.077463501000089 ], [ -121.984866078999985, 49.07804540300009 ], [ -121.984993085999932, 49.078049200000045 ], [ -121.985125496, 49.078006161000069 ], [ -121.98508827699996, 49.078292349000016 ], [ -121.985043246999936, 49.080615670000029 ], [ -121.983336919999957, 49.080551869000068 ], [ -121.983205451999964, 49.082075813000046 ], [ -121.981364338999981, 49.082116144000125 ], [ -121.981149483999928, 49.08570176500011 ], [ -121.979446373999963, 49.085681824000034 ], [ -121.979446405999965, 49.085694847000127 ], [ -121.976491306999918, 49.085584193000031 ], [ -121.976797666999957, 49.082038998000044 ], [ -121.976801983999977, 49.081989048000075 ], [ -121.976846296999966, 49.081990708000113 ], [ -121.977731926999965, 49.082023878000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.974768655695856", "sL_AssetLoss": "4387.4", "sL_BldgLoss": "4276.7", "sL_StrLoss": "3709", "sL_NStrLoss": "567.7", "sL_ContLoss": "110.7", "geom_point": "0101000020E610000080D106DC4A7E5EC0C11BF3B6298B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.97386513299989, 49.08536994800005 ], [ -121.974145941999922, 49.085380473000114 ], [ -121.973835036999972, 49.088975592000104 ], [ -121.972372925999977, 49.088920782000081 ], [ -121.972881522999941, 49.085800314000089 ], [ -121.972905210999969, 49.085333962000107 ], [ -121.97386513299989, 49.08536994800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035334", "BldgCostT": "2093334", "sL_LossRatio": "0.907106536028773", "sL_AssetLoss": "8063", "sL_BldgLoss": "7314", "sL_StrLoss": "4887", "sL_NStrLoss": "2427", "sL_ContLoss": "749", "geom_point": "0101000020E6100000197807DB7C7C5EC0B106DE7F9A8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.944261800999982, 49.093040825000102 ], [ -121.944465183999938, 49.090706478000115 ], [ -121.940942351999936, 49.09057342200007 ], [ -121.940846815, 49.089846286000075 ], [ -121.941000517999953, 49.087602030000021 ], [ -121.940939051999948, 49.087305839000095 ], [ -121.940559583000024, 49.085477437000058 ], [ -121.940688098999956, 49.085762098000131 ], [ -121.941731076999957, 49.086959894000067 ], [ -121.942442205999924, 49.08767629500008 ], [ -121.943056486, 49.088365601000064 ], [ -121.943422401999939, 49.088611987000085 ], [ -121.943786381999942, 49.088839799000048 ], [ -121.945337235999958, 49.089725013000134 ], [ -121.945302129999931, 49.090128063000122 ], [ -121.945281116999979, 49.090369294000041 ], [ -121.945580386999922, 49.090380589000063 ], [ -121.946049531999961, 49.090398295000057 ], [ -121.94607550299996, 49.090100072000062 ], [ -121.946738913999965, 49.090423596000022 ], [ -121.948261117999891, 49.091013203000102 ], [ -121.948560898999943, 49.091024591000085 ], [ -121.94957019600001, 49.091268086000063 ], [ -121.949813703999951, 49.09143190300005 ], [ -121.950012384999951, 49.091757991000129 ], [ -121.950755513999951, 49.092232303000081 ], [ -121.951091192999939, 49.092558515000043 ], [ -121.951829930999963, 49.092880928000056 ], [ -121.951341594, 49.092982040000045 ], [ -121.948560765999957, 49.092869284000052 ], [ -121.946241938999933, 49.093049783000019 ], [ -121.944495234999948, 49.093039707000088 ], [ -121.944261800999982, 49.093040825000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40070751", "BldgCostT": "27635001", "sL_LossRatio": "0.899475845546507", "sL_AssetLoss": "120880.4", "sL_BldgLoss": "108729", "sL_StrLoss": "76005", "sL_NStrLoss": "32724", "sL_ContLoss": "12151.4", "geom_point": "0101000020E61000004EF15DEFA37D5EC0F6A46507898A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.960893383999959, 49.092747204000034 ], [ -121.961016074, 49.091333247000115 ], [ -121.959193725999981, 49.091264715000079 ], [ -121.959488068999974, 49.087873658000014 ], [ -121.959216036999948, 49.087863424 ], [ -121.959231815999914, 49.087681637000081 ], [ -121.959440620999914, 49.085275879000058 ], [ -121.956352199999969, 49.085159654000037 ], [ -121.956476485999929, 49.083728649000072 ], [ -121.95621898399996, 49.083718955000059 ], [ -121.95629732699993, 49.082816948000072 ], [ -121.956151437999978, 49.082811455000069 ], [ -121.956340452999939, 49.080635132000062 ], [ -121.95627757699998, 49.080632765000082 ], [ -121.956351313999946, 49.079783725000084 ], [ -121.955430301999968, 49.079749044000025 ], [ -121.955631684999958, 49.077430566000068 ], [ -121.953012747999978, 49.077331903000058 ], [ -121.952202436, 49.077301364000022 ], [ -121.952211709999943, 49.077194669000122 ], [ -121.952098396999986, 49.077190398000091 ], [ -121.951895719999982, 49.079521745000115 ], [ -121.946435801999939, 49.079315803000107 ], [ -121.94674875499993, 49.075720709000073 ], [ -121.948890617999908, 49.07580153200005 ], [ -121.948928219999971, 49.075369301000087 ], [ -121.948784431999954, 49.075363877000051 ], [ -121.948859457, 49.074501488000124 ], [ -121.950808763999987, 49.074540622 ], [ -121.951784389999943, 49.074606070000065 ], [ -121.953314926999937, 49.074708699000098 ], [ -121.964363994999985, 49.074912611000101 ], [ -121.964640802999924, 49.074973502000034 ], [ -121.965298497999953, 49.074967915000116 ], [ -121.965678100999966, 49.074964693 ], [ -121.966251710999984, 49.074934779000067 ], [ -121.966614317999984, 49.074953899000079 ], [ -121.970057037999936, 49.074958154000043 ], [ -121.970344512999986, 49.074958505000026 ], [ -121.972823387999981, 49.074961506000086 ], [ -121.973431643999959, 49.074967763000082 ], [ -121.973319979999985, 49.077166931000114 ], [ -121.972764891999972, 49.077146116000087 ], [ -121.97277021399999, 49.077084590000091 ], [ -121.972590025999949, 49.077077833000025 ], [ -121.972499372999934, 49.078125944000064 ], [ -121.972634048999907, 49.07813099500008 ], [ -121.97252787299999, 49.079358559000084 ], [ -121.97276521, 49.079360672000078 ], [ -121.972726251999987, 49.081249420000063 ], [ -121.972364593999913, 49.081246201000077 ], [ -121.972323075999938, 49.081726151000112 ], [ -121.972305591999927, 49.081725495000043 ], [ -121.972304355999967, 49.081785406000101 ], [ -121.971893589999965, 49.081781748000061 ], [ -121.971871307999891, 49.082861032000061 ], [ -121.971460536, 49.082857373000117 ], [ -121.971454963000014, 49.083127194000085 ], [ -121.970633409999962, 49.083119870000054 ], [ -121.97062783299998, 49.083389691000015 ], [ -121.97055131499998, 49.083389008000012 ], [ -121.970414124999976, 49.084974124000055 ], [ -121.972107195999939, 49.085037627000148 ], [ -121.972084219999957, 49.085303179000057 ], [ -121.972905210999969, 49.085333962000107 ], [ -121.972881522999941, 49.085800314000089 ], [ -121.972372925999977, 49.088920782000081 ], [ -121.97159131799998, 49.088891473000103 ], [ -121.97158874199999, 49.08892124700008 ], [ -121.967762718999964, 49.088777697000069 ], [ -121.966127633999989, 49.088716308000052 ], [ -121.966288547999952, 49.086859227000069 ], [ -121.966036448999915, 49.086856970000085 ], [ -121.966030845999967, 49.087126790000099 ], [ -121.964798420999983, 49.08711574300002 ], [ -121.96479281199997, 49.087385564000051 ], [ -121.964736273999918, 49.087385057000091 ], [ -121.964694698999949, 49.087864707000072 ], [ -121.964966730999919, 49.087874926000055 ], [ -121.964808327999918, 49.089702405000033 ], [ -121.967348413999972, 49.089797790000055 ], [ -121.970085168999915, 49.089900494000055 ], [ -121.970066572999897, 49.090115318000095 ], [ -121.972624220999961, 49.090211237000105 ], [ -121.97317039299999, 49.093046767000075 ], [ -121.971791373999949, 49.09304962700007 ], [ -121.968225807999914, 49.092769068000059 ], [ -121.964761580999934, 49.092792390000085 ], [ -121.964521162999972, 49.092794001000058 ], [ -121.964271554999968, 49.092795668000072 ], [ -121.96193832899999, 49.09282922400007 ], [ -121.960893383999959, 49.092747204000034 ] ], [ [ -121.968585121999951, 49.082831713000132 ], [ -121.968596297999952, 49.082292071000069 ], [ -121.968185528999953, 49.082288400000017 ], [ -121.968189839999951, 49.082080385000054 ], [ -121.965706336999986, 49.081987128000016 ], [ -121.965674752999945, 49.082351638000027 ], [ -121.966218943999962, 49.082372078000077 ], [ -121.966201294999948, 49.08257578200007 ], [ -121.967704806999947, 49.082632239000141 ], [ -121.967675556999922, 49.082969958 ], [ -121.968171021999964, 49.082988559000029 ], [ -121.968174346999916, 49.082828042000131 ], [ -121.968585121999951, 49.082831713000132 ] ], [ [ -121.960048063, 49.075352868000074 ], [ -121.960061424999978, 49.075198839000095 ], [ -121.958884523999956, 49.075188229000091 ], [ -121.95888898, 49.074975087000034 ], [ -121.957882845999933, 49.074964581000117 ], [ -121.957856301, 49.075270389000067 ], [ -121.960048063, 49.075352868000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.909243697478992", "sL_AssetLoss": "1785", "sL_BldgLoss": "1623", "sL_StrLoss": "1150", "sL_NStrLoss": "473", "sL_ContLoss": "162", "geom_point": "0101000020E610000003DDA85F737C5EC03D910EAC368B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.942991538999962, 49.087043979000114 ], [ -121.945562291000016, 49.087141046000099 ], [ -121.945447519999959, 49.088458829000018 ], [ -121.944756505, 49.088283010000019 ], [ -121.943619691999984, 49.087714691000031 ], [ -121.943095201999981, 49.087206298000034 ], [ -121.942991538999962, 49.087043979000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10413333", "BldgCostT": "6708333", "sL_LossRatio": "0.772001170275015", "sL_AssetLoss": "34180", "sL_BldgLoss": "26387", "sL_StrLoss": "17572", "sL_NStrLoss": "8815", "sL_ContLoss": "7793", "geom_point": "0101000020E6100000A9CF7A9D398E5EC07FF4B0C4418C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.223898376999955, 49.102533778000058 ], [ -122.223979816999957, 49.101529931000051 ], [ -122.22152985799994, 49.101443818000121 ], [ -122.221604692999975, 49.100521933000046 ], [ -122.221072197999959, 49.100503208000084 ], [ -122.221117586999981, 49.099944152000013 ], [ -122.216482919999962, 49.099781074000092 ], [ -122.216476577, 49.099508937000088 ], [ -122.216480414999978, 49.095268607000108 ], [ -122.216864141999963, 49.095282118000064 ], [ -122.216911306, 49.09470174600014 ], [ -122.218144498999948, 49.09474515800013 ], [ -122.21829507299999, 49.092891614000031 ], [ -122.217319056999912, 49.09285725600008 ], [ -122.217264698999912, 49.09352623900002 ], [ -122.216482017999937, 49.093498681000078 ], [ -122.216485714999962, 49.089414833000042 ], [ -122.218399185999886, 49.089377255000088 ], [ -122.220179129999963, 49.089380036000072 ], [ -122.222351945999947, 49.089393817000023 ], [ -122.226793412999911, 49.089174392000068 ], [ -122.226513824999984, 49.09262401900002 ], [ -122.225637693999914, 49.092593245000103 ], [ -122.225456403999914, 49.094829238000038 ], [ -122.223860288, 49.094773155999988 ], [ -122.22370983499999, 49.096627874000021 ], [ -122.222962946999971, 49.096601624000066 ], [ -122.222933654999949, 49.096962642000051 ], [ -122.226827256999911, 49.097099434000036 ], [ -122.226752529999928, 49.098021328000094 ], [ -122.227284997999973, 49.098040024000085 ], [ -122.227203635999984, 49.099043880000117 ], [ -122.229653478999964, 49.099129863000073 ], [ -122.229362201999933, 49.102725621000062 ], [ -122.223898376999955, 49.102533778000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.828950663661407", "sL_AssetLoss": "15972", "sL_BldgLoss": "13240", "sL_StrLoss": "7470", "sL_NStrLoss": "5770", "sL_ContLoss": "2732", "geom_point": "0101000020E61000002BF88E96DA915EC0EB884BA7588C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.276990153999947, 49.09870630800004 ], [ -122.27699606799996, 49.098632360000089 ], [ -122.275764215999942, 49.098589675 ], [ -122.275835821999976, 49.097694642000064 ], [ -122.275077548999974, 49.097668360000071 ], [ -122.275365267999916, 49.094072450000112 ], [ -122.280828309999961, 49.094261682000074 ], [ -122.280823922999971, 49.094316604000028 ], [ -122.282642449999926, 49.094379533000023 ], [ -122.282569459999962, 49.095293602000076 ], [ -122.282740902999976, 49.095299533000102 ], [ -122.28245374600003, 49.098895455000033 ], [ -122.276990153999947, 49.09870630800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.812158632153883", "sL_AssetLoss": "8422", "sL_BldgLoss": "6840", "sL_StrLoss": "3900", "sL_NStrLoss": "2940", "sL_ContLoss": "1582", "geom_point": "0101000020E610000060BA208D50925EC096181582668C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.288403417, 49.099009729000038 ], [ -122.288408246999964, 49.098671877000115 ], [ -122.283706711999969, 49.098509388000089 ], [ -122.283993768999949, 49.094913461000019 ], [ -122.287928621999939, 49.095049466000027 ], [ -122.288058592999946, 49.095053957000069 ], [ -122.28833217199994, 49.096481007000115 ], [ -122.288814080999913, 49.098631413000057 ], [ -122.288893588999969, 49.099012750000036 ], [ -122.288739425999964, 49.099011801000103 ], [ -122.288403417, 49.099009729000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.961485430646199", "sL_AssetLoss": "1087.9", "sL_BldgLoss": "1046", "sL_StrLoss": "799", "sL_NStrLoss": "247", "sL_ContLoss": "41.9", "geom_point": "0101000020E6100000677A0DEAF08D5EC0FD6751C8E38F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.216692920999918, 49.122335763000102 ], [ -122.219104804999944, 49.12242060600002 ], [ -122.218812565999926, 49.126016206000052 ], [ -122.216700365999927, 49.125941909000112 ], [ -122.216692920999918, 49.122335763000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.887389202256245", "sL_AssetLoss": "4964", "sL_BldgLoss": "4405", "sL_StrLoss": "2780", "sL_NStrLoss": "1625", "sL_ContLoss": "559", "geom_point": "0101000020E6100000DE31024BAA8E5EC0DD2C98D7158B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.229175991999938, 49.084033931000114 ], [ -122.230719310999959, 49.084088095000034 ], [ -122.230428209999957, 49.087683940000012 ], [ -122.230333027, 49.087680600000063 ], [ -122.230213882999919, 49.089152140000046 ], [ -122.228619163999923, 49.089096172000069 ], [ -122.228613419999945, 49.089167079000042 ], [ -122.227635776999961, 49.089132755999984 ], [ -122.227851743999963, 49.089122080000102 ], [ -122.227836461999942, 49.088926238000049 ], [ -122.22755609499994, 49.085335141000023 ], [ -122.227553217999969, 49.0852985920001 ], [ -122.227530642999952, 49.085009517000046 ], [ -122.227621698999926, 49.085007286000049 ], [ -122.227992317000016, 49.084912104000047 ], [ -122.228483080999936, 49.08460030100008 ], [ -122.228989799999937, 49.084126684000111 ], [ -122.229175991999938, 49.084033931000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.966845827439887", "sL_AssetLoss": "1767.5", "sL_BldgLoss": "1708.9", "sL_StrLoss": "1432", "sL_NStrLoss": "276.9", "sL_ContLoss": "58.6", "geom_point": "0101000020E6100000A11B5025F98D5EC0DE9B95A3B68D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.216662254999918, 49.107473784000071 ], [ -122.21659673399995, 49.104663447000071 ], [ -122.220168675999915, 49.104789132000064 ], [ -122.220068594999944, 49.106021409000057 ], [ -122.220168851999944, 49.106024935000107 ], [ -122.219876797999945, 49.109620629000084 ], [ -122.217654875999983, 49.109542464000114 ], [ -122.217637415999917, 49.109757283000114 ], [ -122.216666894999904, 49.109723127000045 ], [ -122.216662254999918, 49.107473784000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101079250", "BldgCostT": "65770000", "sL_LossRatio": "0.761050853441867", "sL_AssetLoss": "617441", "sL_BldgLoss": "469904", "sL_StrLoss": "259604", "sL_NStrLoss": "210300", "sL_ContLoss": "147537", "geom_point": "0101000020E61000002B3EFC0469905EC07F676257E68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.228284107999968, 49.123977311000019 ], [ -122.228422502999962, 49.122270241000145 ], [ -122.227747120999979, 49.122246547000017 ], [ -122.225493922999959, 49.122167470000043 ], [ -122.225785620999929, 49.118571829000068 ], [ -122.227761581, 49.11864118000004 ], [ -122.228649236999956, 49.118672323000112 ], [ -122.228686158999949, 49.118216827000012 ], [ -122.228807079999953, 49.116724954000112 ], [ -122.22543996499995, 49.116606783000087 ], [ -122.225481655999914, 49.116092844000107 ], [ -122.22201567799999, 49.115971093000105 ], [ -122.22230760599993, 49.112375428000071 ], [ -122.223803055999923, 49.112427973000109 ], [ -122.223870986999927, 49.111590863000067 ], [ -122.223876404999942, 49.111591053000048 ], [ -122.223934122999978, 49.110879763000113 ], [ -122.224615231, 49.110903688000043 ], [ -122.224665424999941, 49.11028497800001 ], [ -122.225854996999928, 49.110326754 ], [ -122.225996567999971, 49.108581106000102 ], [ -122.231461109999927, 49.108772840000057 ], [ -122.231420650999922, 49.109272457000081 ], [ -122.231648232999959, 49.109280436000091 ], [ -122.23164290699998, 49.109346214000077 ], [ -122.232544306999955, 49.109377812000012 ], [ -122.23225318899992, 49.112973521000058 ], [ -122.229934475999983, 49.112892224000063 ], [ -122.22991295599999, 49.11315784300006 ], [ -122.231196692999987, 49.113202860000136 ], [ -122.23097428, 49.115948800000112 ], [ -122.235570983999949, 49.116109863000098 ], [ -122.235592673999946, 49.115841757000048 ], [ -122.241058106999958, 49.116033002000087 ], [ -122.241010416999927, 49.11662332800006 ], [ -122.243874202999947, 49.116723426000121 ], [ -122.24398252799989, 49.115381495000094 ], [ -122.243867613999925, 49.115377479000124 ], [ -122.244035389999979, 49.113298974000074 ], [ -122.240019509999968, 49.113158581000057 ], [ -122.240022883, 49.113116837000106 ], [ -122.235357751999956, 49.112953558000051 ], [ -122.235648630999933, 49.109357839000076 ], [ -122.241113304999899, 49.109549084000044 ], [ -122.241109932999933, 49.109590829000133 ], [ -122.242391014999953, 49.109635621000031 ], [ -122.242501012999938, 49.108273301000033 ], [ -122.24668082599996, 49.108419342000062 ], [ -122.246695753999916, 49.108234240000044 ], [ -122.246625054999981, 49.108231771000121 ], [ -122.246867435999931, 49.10522627000006 ], [ -122.246529737999978, 49.105214477000054 ], [ -122.246819706999972, 49.101618685000048 ], [ -122.247891173999932, 49.101656100000085 ], [ -122.247910231999953, 49.101419676000035 ], [ -122.246429971999959, 49.101367984000049 ], [ -122.246649086999938, 49.098650710000094 ], [ -122.245762781999943, 49.098619749000065 ], [ -122.245760242999935, 49.09865124 ], [ -122.244446277999927, 49.09860532600004 ], [ -122.244441787999932, 49.098660970000026 ], [ -122.243842724999965, 49.098640032000077 ], [ -122.243840863999964, 49.098663085000027 ], [ -122.243150708999977, 49.098638959000013 ], [ -122.243147137, 49.098683201 ], [ -122.242776656999936, 49.09867024800014 ], [ -122.242750039999962, 49.099000010000033 ], [ -122.242077651, 49.098976499000088 ], [ -122.242001759999951, 49.099916525000047 ], [ -122.241464200999928, 49.099897725000069 ], [ -122.241424762999941, 49.100386138000083 ], [ -122.241376985, 49.100384468000101 ], [ -122.241189082999981, 49.102711337000073 ], [ -122.235725209999956, 49.102520094000049 ], [ -122.23572706899995, 49.102497128000081 ], [ -122.234257860999961, 49.102445656000022 ], [ -122.234548758999964, 49.098849883000113 ], [ -122.236065629, 49.098903024000052 ], [ -122.236251914999954, 49.096599118 ], [ -122.236789433999917, 49.096617943000147 ], [ -122.236828917999972, 49.096129529000059 ], [ -122.23704980399999, 49.096137264000028 ], [ -122.237214014999935, 49.094105733000056 ], [ -122.237842443999938, 49.094127738000083 ], [ -122.237847592000023, 49.09406404800005 ], [ -122.240122617999972, 49.09414368100007 ], [ -122.240125096, 49.094113003000096 ], [ -122.242153388999924, 49.094183959000084 ], [ -122.242162114999928, 49.094075852000145 ], [ -122.247625022999969, 49.094266770000061 ], [ -122.247574828999973, 49.09488948700001 ], [ -122.247766417999941, 49.094896177000116 ], [ -122.247826163999918, 49.094154919000054 ], [ -122.245761097999917, 49.094082786000087 ], [ -122.246051055999942, 49.090486935000058 ], [ -122.251513559, 49.090677656000111 ], [ -122.251320113999967, 49.093080186000087 ], [ -122.25338514399999, 49.093152213000046 ], [ -122.253244457999983, 49.094900268000039 ], [ -122.257312620999983, 49.095042045000113 ], [ -122.257327456999974, 49.09485751900008 ], [ -122.260541558999975, 49.094969423000059 ], [ -122.260553625999961, 49.094819196000103 ], [ -122.266016695999895, 49.095009180000055 ], [ -122.266014893999966, 49.095031652000031 ], [ -122.266835269999888, 49.09506015700002 ], [ -122.266822935000036, 49.095213968000067 ], [ -122.267370640999971, 49.095232995000075 ], [ -122.26739314199996, 49.094952362000086 ], [ -122.267765906999969, 49.094965310000113 ], [ -122.268041005999947, 49.091533667000093 ], [ -122.268319517999913, 49.091543340000072 ], [ -122.268522300999976, 49.089013253000076 ], [ -122.268495042, 49.089012306000093 ], [ -122.268572959999958, 49.088040068000069 ], [ -122.268571304999952, 49.088040011000018 ], [ -122.268655907999971, 49.086984312000084 ], [ -122.26857246899999, 49.086981414000014 ], [ -122.268730308999963, 49.085011768000072 ], [ -122.268475487, 49.085002917000068 ], [ -122.268546008999976, 49.084122901000114 ], [ -122.265824950999956, 49.084028348000054 ], [ -122.26588501099998, 49.083279411000021 ], [ -122.265767836999942, 49.083275339000117 ], [ -122.265764702999959, 49.08331440300001 ], [ -122.265356313, 49.083300206000054 ], [ -122.265279235999969, 49.084261212000058 ], [ -122.264186715999969, 49.084223224000056 ], [ -122.264161506999983, 49.084537438000041 ], [ -122.262316243999962, 49.084473251000063 ], [ -122.262315210999972, 49.084542993000092 ], [ -122.261082752000021, 49.084535111000037 ], [ -122.261084306999948, 49.084430381000075 ], [ -122.258699670999988, 49.08434735800008 ], [ -122.258707493999921, 49.084250012000027 ], [ -122.25862185299998, 49.084249463000013 ], [ -122.25861381799993, 49.084789147000023 ], [ -122.257792174999949, 49.084783866000073 ], [ -122.257788152999979, 49.08505370800011 ], [ -122.257377329999883, 49.085051065000108 ], [ -122.25737330599999, 49.085320907000018 ], [ -122.256140827999971, 49.085312970000103 ], [ -122.256144858999932, 49.08504312900002 ], [ -122.255734036999954, 49.0850404810001 ], [ -122.25573806899996, 49.084770639000077 ], [ -122.255584684999945, 49.084769650000062 ], [ -122.255485435999958, 49.086003842000117 ], [ -122.251973844999966, 49.085881385000057 ], [ -122.251894263999944, 49.086870021000088 ], [ -122.253437096999946, 49.086923837000057 ], [ -122.253474378999982, 49.086460501000076 ], [ -122.258936439999914, 49.086650847 ], [ -122.258850569999964, 49.087719567000143 ], [ -122.259372859999985, 49.087737753000113 ], [ -122.259379472999939, 49.087655447000081 ], [ -122.264841697999913, 49.087845492000064 ], [ -122.26481368899999, 49.088194633000086 ], [ -122.266896848999963, 49.088267039000122 ], [ -122.26660851299998, 49.091862958000085 ], [ -122.261145808999913, 49.091673003000039 ], [ -122.261167237999956, 49.091406171000067 ], [ -122.259730086000019, 49.091356151000099 ], [ -122.259724407999983, 49.09142682400006 ], [ -122.259010105999977, 49.091401956000027 ], [ -122.259005880999922, 49.091454542000051 ], [ -122.256985685999936, 49.091384183000045 ], [ -122.256971503999964, 49.091560590000064 ], [ -122.251508873999924, 49.091370146000024 ], [ -122.25158174299996, 49.090465104000089 ], [ -122.251324924999921, 49.090456144000072 ], [ -122.251512163999962, 49.088130561000085 ], [ -122.246329797, 49.087949616000046 ], [ -122.24636919799994, 49.087460878000051 ], [ -122.245903512999945, 49.087444607000087 ], [ -122.245925403999976, 49.087173101000126 ], [ -122.245092301999989, 49.087143986000058 ], [ -122.245113551999964, 49.086880484000041 ], [ -122.243607866999966, 49.086827847000109 ], [ -122.243665854999932, 49.086109052000062 ], [ -122.243634312999959, 49.086107949000073 ], [ -122.243924385999946, 49.082512060000077 ], [ -122.244186832999929, 49.082521236000041 ], [ -122.244427829999893, 49.079533063 ], [ -122.24472410499996, 49.079543422000015 ], [ -122.244727768999951, 49.079301762000021 ], [ -122.243495443999976, 49.079293692000078 ], [ -122.24349954299997, 49.079023850000077 ], [ -122.243088769999972, 49.079021157000035 ], [ -122.243092870999973, 49.078751316000108 ], [ -122.241860559999964, 49.078743229000104 ], [ -122.241868624999967, 49.078213392000066 ], [ -122.241982008000022, 49.07821738900001 ], [ -122.242674603999944, 49.078083786000036 ], [ -122.242872995999946, 49.078085294000068 ], [ -122.243235104999954, 49.078179210000052 ], [ -122.243788613999968, 49.078582607000115 ], [ -122.243905494999922, 49.07869478800005 ], [ -122.244026591, 49.078755012000073 ], [ -122.244771613999916, 49.078785496000094 ], [ -122.244917589999929, 49.078826698000107 ], [ -122.245578177999974, 49.079230266000074 ], [ -122.245600000999957, 49.079243595000023 ], [ -122.245995702999934, 49.079429593000036 ], [ -122.246221100999904, 49.079469892000112 ], [ -122.246696291999925, 49.079689399000081 ], [ -122.246789707999952, 49.079821597000048 ], [ -122.246995006999953, 49.080315612000021 ], [ -122.247148108999923, 49.080557099 ], [ -122.247343183999959, 49.08076949900002 ], [ -122.24764118399996, 49.080928586 ], [ -122.248062228999956, 49.081344503 ], [ -122.248449393, 49.081517608000084 ], [ -122.248762081999985, 49.081716003000047 ], [ -122.249800588000014, 49.082200298000046 ], [ -122.250031282999956, 49.08227780300011 ], [ -122.250468082999959, 49.082378696000056 ], [ -122.25086238099999, 49.082423920000089 ], [ -122.250987801999926, 49.082438280000169 ], [ -122.251040495000026, 49.082440909000056 ], [ -122.252036519999962, 49.082490217000071 ], [ -122.252467100999951, 49.082482583000093 ], [ -122.253030621999983, 49.082472627000087 ], [ -122.253322000999972, 49.082475575000103 ], [ -122.253382723999934, 49.082468323000072 ], [ -122.253888849999967, 49.082407904000043 ], [ -122.254373211, 49.082283142000136 ], [ -122.254881564999934, 49.08215221500005 ], [ -122.255240193999953, 49.081995718000023 ], [ -122.255354070999928, 49.081946019000092 ], [ -122.261001258999968, 49.081939005000095 ], [ -122.266853325999989, 49.081926405000047 ], [ -122.271984102999937, 49.081915049000024 ], [ -122.272276543000018, 49.081913757000052 ], [ -122.279124232999948, 49.081883188000084 ], [ -122.279261178999917, 49.081882562000033 ], [ -122.279453064999984, 49.081881701000029 ], [ -122.283657361999957, 49.081862691000069 ], [ -122.283712978999972, 49.081862439000112 ], [ -122.2835950299999, 49.083340374000095 ], [ -122.280517744999884, 49.083233868000057 ], [ -122.280447143999936, 49.084117747000036 ], [ -122.274985291999926, 49.083928493000066 ], [ -122.27506001899998, 49.082994339000017 ], [ -122.274115949999896, 49.082961599000079 ], [ -122.274067572999954, 49.083566190000049 ], [ -122.274322387999987, 49.083575027000023 ], [ -122.274237917999955, 49.084630736000115 ], [ -122.27432135399999, 49.084633630000077 ], [ -122.274289547999913, 49.08503113700008 ], [ -122.27431247799997, 49.085031932000057 ], [ -122.274159664999928, 49.086941714000076 ], [ -122.274382292999974, 49.086949435000044 ], [ -122.274200343999937, 49.089223293000032 ], [ -122.274158498999952, 49.089746194000057 ], [ -122.275434439000023, 49.089790434000051 ], [ -122.275480264999914, 49.089217561000034 ], [ -122.275484834999986, 49.089160439000068 ], [ -122.276943325999966, 49.089210990000041 ], [ -122.277938465999981, 49.089245471000105 ], [ -122.277941581999983, 49.089206496000031 ], [ -122.278064112999971, 49.087673697000035 ], [ -122.278839086999966, 49.087700542000022 ], [ -122.278899219999957, 49.086948114000052 ], [ -122.280400365, 49.087000099000129 ], [ -122.28042937399999, 49.086636950000056 ], [ -122.285291959999981, 49.086805196000057 ], [ -122.285324963999983, 49.086391503000087 ], [ -122.284556891999941, 49.086364943000028 ], [ -122.284641100999977, 49.085309589000126 ], [ -122.284527057, 49.085305645000041 ], [ -122.284732646999899, 49.082728952000068 ], [ -122.28450421399998, 49.082721051000064 ], [ -122.284573019999982, 49.081858685000029 ], [ -122.284944831999965, 49.081857276000108 ], [ -122.28505759899997, 49.08185682700006 ], [ -122.285225910999898, 49.08185813500009 ], [ -122.285328964999962, 49.082248447000048 ], [ -122.286000550999916, 49.084814732000069 ], [ -122.286047996999969, 49.085037015000104 ], [ -122.286615564, 49.087696289000057 ], [ -122.286642719999975, 49.087823560000047 ], [ -122.286936566999955, 49.089200316000074 ], [ -122.286979176, 49.089422605000038 ], [ -122.287367193999941, 49.091447063000061 ], [ -122.287207883999884, 49.091446079000072 ], [ -122.286867896999979, 49.091443979000061 ], [ -122.286868749999968, 49.091384481000055 ], [ -122.283255268999937, 49.091259542000017 ], [ -122.283239366999936, 49.091458759000062 ], [ -122.280785607999945, 49.091373849000021 ], [ -122.28066004399993, 49.092945616000108 ], [ -122.279355568999961, 49.092900453000055 ], [ -122.27930522099993, 49.093530446000081 ], [ -122.2738422689999, 49.093341138000042 ], [ -122.2740661, 49.090544395000073 ], [ -122.27398674299998, 49.09054164300008 ], [ -122.27392689199992, 49.091289497000027 ], [ -122.273986276999935, 49.091291557000105 ], [ -122.273698468999925, 49.094887478000061 ], [ -122.273251674, 49.094871982 ], [ -122.273239458999981, 49.095024564000042 ], [ -122.274044004999979, 49.095052465000137 ], [ -122.273756189999972, 49.098648220000037 ], [ -122.275150090999929, 49.09869654500006 ], [ -122.274921154999902, 49.101557376000116 ], [ -122.275004177999932, 49.101560253000095 ], [ -122.275005865999901, 49.101539164000023 ], [ -122.277766896999978, 49.101634830000137 ], [ -122.277781058999963, 49.101457730000092 ], [ -122.281113764999958, 49.101573109000086 ], [ -122.281138732999963, 49.10126061000004 ], [ -122.286602640999959, 49.101449546000062 ], [ -122.286594760999918, 49.101548325000081 ], [ -122.288788072999978, 49.101624089000119 ], [ -122.288630615000017, 49.103598864000034 ], [ -122.288748804999955, 49.103599591000076 ], [ -122.28875266199999, 49.10332974900011 ], [ -122.289662597999921, 49.103335352000094 ], [ -122.289795107999936, 49.10333616700008 ], [ -122.289880949999912, 49.103747792000036 ], [ -122.289887225999948, 49.103777908000069 ], [ -122.289822534999971, 49.103777898000047 ], [ -122.289757074999926, 49.103777919000031 ], [ -122.289758832999922, 49.103786846000077 ], [ -122.28996671799996, 49.104851625000023 ], [ -122.29042139299996, 49.107180232000069 ], [ -122.290435330999941, 49.107251599000044 ], [ -122.290444821999955, 49.107300190000039 ], [ -122.290440705999941, 49.107661506000071 ], [ -122.290377008999911, 49.108168607000053 ], [ -122.290224683999938, 49.108753731000085 ], [ -122.29021699299993, 49.108783302000084 ], [ -122.290139596999921, 49.108939982000052 ], [ -122.290046, 49.109129362000026 ], [ -122.289957293000015, 49.109308913000071 ], [ -122.289855184999979, 49.109472455000109 ], [ -122.284804085999923, 49.109297989000012 ], [ -122.284841652999887, 49.10882739200008 ], [ -122.284204693999968, 49.108805375 ], [ -122.284491776999943, 49.105209503000076 ], [ -122.28708039699994, 49.105298960000034 ], [ -122.287082230999914, 49.105170977000022 ], [ -122.283036984999967, 49.105031154000066 ], [ -122.283044874, 49.104932376000093 ], [ -122.28298277699993, 49.104930229000097 ], [ -122.282957819999964, 49.105242725000025 ], [ -122.280196566, 49.105147193000057 ], [ -122.280182409999924, 49.105324292000134 ], [ -122.279455535999887, 49.105299132000063 ], [ -122.279396718, 49.106034909000101 ], [ -122.275755128999947, 49.105908786000057 ], [ -122.275737874999948, 49.10612439600002 ], [ -122.275504532, 49.106116310000097 ], [ -122.27527021899995, 49.109044099000059 ], [ -122.274984373999942, 49.10903419300012 ], [ -122.274936762999928, 49.109629010000042 ], [ -122.279344221999978, 49.109781663000021 ], [ -122.279243015999938, 49.111047487000079 ], [ -122.27258388599995, 49.111082786000075 ], [ -122.272616681999949, 49.110673332000019 ], [ -122.271894878, 49.110648300000086 ], [ -122.270589520999962, 49.11060301800007 ], [ -122.270551196999961, 49.111081238000125 ], [ -122.263513415999938, 49.111054000000102 ], [ -122.263122136999954, 49.111057264000117 ], [ -122.263243198999987, 49.109549604000158 ], [ -122.265188490999947, 49.109617214000082 ], [ -122.265191617999918, 49.10957825000002 ], [ -122.268306063999901, 49.109686422000067 ], [ -122.268460532999924, 49.107759991000151 ], [ -122.268208773999959, 49.107751250000057 ], [ -122.268402428999977, 49.105336040000047 ], [ -122.268380681999986, 49.105335285000066 ], [ -122.268322969999971, 49.1060550750001 ], [ -122.266796824999957, 49.10600207600001 ], [ -122.266785711999944, 49.106140612000054 ], [ -122.263617050999969, 49.106030503000078 ], [ -122.263612780999949, 49.106083688000098 ], [ -122.259670028999963, 49.105946550000098 ], [ -122.25965662099999, 49.106113383 ], [ -122.258946816999952, 49.106088679000038 ], [ -122.258946790999957, 49.106089001000051 ], [ -122.253482450999968, 49.10589866100009 ], [ -122.25354233299997, 49.105154759000101 ], [ -122.252356112999976, 49.105113403000104 ], [ -122.252344661, 49.105255620000037 ], [ -122.252423526, 49.105258371000076 ], [ -122.252397011999975, 49.105587651000057 ], [ -122.25241194699997, 49.105588172000132 ], [ -122.252366360999972, 49.106154304000036 ], [ -122.252399882999967, 49.106155473000108 ], [ -122.252348771999962, 49.106790195000087 ], [ -122.252359722999969, 49.106790576000073 ], [ -122.252189104, 49.108909329000056 ], [ -122.252629678999938, 49.108924691000084 ], [ -122.25263697099993, 49.108834147000024 ], [ -122.258101650999947, 49.109024528000127 ], [ -122.258052854999946, 49.109631404000083 ], [ -122.262488037999958, 49.109785713000079 ], [ -122.262385420999934, 49.111063404000099 ], [ -122.257908790999977, 49.111100607000083 ], [ -122.253104323999963, 49.111116193000079 ], [ -122.25251210499999, 49.111118091 ], [ -122.250112886999929, 49.111103889000049 ], [ -122.247246995999959, 49.111100316000091 ], [ -122.247267405999978, 49.113938902000058 ], [ -122.247273935999928, 49.114867349000107 ], [ -122.247297893999956, 49.118284094000096 ], [ -122.247282507999913, 49.119617374000043 ], [ -122.247279611999929, 49.119870906000102 ], [ -122.247065978999942, 49.119867890000059 ], [ -122.23312320799999, 49.123420514000124 ], [ -122.227736908999987, 49.124792306000096 ], [ -122.22191901399998, 49.126274043000073 ], [ -122.222089259999933, 49.124177757000069 ], [ -122.223363794999912, 49.124222532000068 ], [ -122.223397625999908, 49.123805788000013 ], [ -122.227740252999965, 49.123958232000071 ], [ -122.228284107999968, 49.123977311000019 ] ], [ [ -122.233704164999921, 49.121334774000054 ], [ -122.233742642999957, 49.120859462000098 ], [ -122.233312189999978, 49.120844382000087 ], [ -122.233408786999959, 49.119651216000086 ], [ -122.231185742999955, 49.119573310000057 ], [ -122.231050582999927, 49.121241785000024 ], [ -122.233704164999921, 49.121334774000054 ] ], [ [ -122.238897238, 49.119563282000051 ], [ -122.238841584999989, 49.120251704000061 ], [ -122.239272033999981, 49.12026676100011 ], [ -122.239256504999943, 49.120458869000032 ], [ -122.241818450999943, 49.120548454000115 ], [ -122.241841892999972, 49.120258247000073 ], [ -122.239059143, 49.120160937 ], [ -122.239106861999971, 49.119570615000086 ], [ -122.238897238, 49.119563282000051 ] ], [ [ -122.269445780999931, 49.101511321000046 ], [ -122.269676092999973, 49.09863753300008 ], [ -122.268855686000023, 49.098609051000061 ], [ -122.268833192999949, 49.098889684000106 ], [ -122.263640830999947, 49.098709274000093 ], [ -122.263633675999941, 49.098798408000071 ], [ -122.260026608999937, 49.098672931000053 ], [ -122.259999640999951, 49.09900859600004 ], [ -122.25453612599992, 49.098818308000048 ], [ -122.254551955999943, 49.098621577000053 ], [ -122.254076335999912, 49.098604998000056 ], [ -122.254072679999965, 49.098650439000018 ], [ -122.253276112999941, 49.098622669000093 ], [ -122.253180906999958, 49.099805462000077 ], [ -122.253518350999983, 49.099817227000138 ], [ -122.253385684999913, 49.101465446000134 ], [ -122.255908801999979, 49.101553381000066 ], [ -122.255926753999958, 49.101330204000128 ], [ -122.261390568999957, 49.101520421000075 ], [ -122.261384562, 49.101595196000098 ], [ -122.263913784999957, 49.101683153000081 ], [ -122.26386472800003, 49.102294323000123 ], [ -122.263886737999954, 49.10229508900008 ], [ -122.263944513999974, 49.101575298000085 ], [ -122.266129178999975, 49.101651224000122 ], [ -122.266147031999978, 49.101428650000109 ], [ -122.266800954999937, 49.101451368000056 ], [ -122.266803506999963, 49.101419566000075 ], [ -122.269445780999931, 49.101511321000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83439251", "BldgCostT": "56545001", "sL_LossRatio": "0.81123393828884", "sL_AssetLoss": "491386", "sL_BldgLoss": "398629", "sL_StrLoss": "239100", "sL_NStrLoss": "159529", "sL_ContLoss": "92757", "geom_point": "0101000020E61000006F82A08AB8905EC0CFAE9C39FB8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.2631156299999, 49.141489903000036 ], [ -122.26313132599995, 49.140431158000062 ], [ -122.262804958999979, 49.140419820000069 ], [ -122.262824672999926, 49.140174496000064 ], [ -122.26250566299997, 49.140163412000035 ], [ -122.262595464999904, 49.139046002000057 ], [ -122.261242488999983, 49.138998982000018 ], [ -122.261277872999983, 49.138558846000073 ], [ -122.259794186999983, 49.138507263000058 ], [ -122.259705684999957, 49.13960768500003 ], [ -122.25423740799999, 49.139417393000052 ], [ -122.254356903, 49.137933751000091 ], [ -122.254146994999957, 49.137926440000058 ], [ -122.254084604999889, 49.138701022000078 ], [ -122.248616456999954, 49.138510445000094 ], [ -122.248617108999923, 49.138502361000057 ], [ -122.247251110999926, 49.138454709000037 ], [ -122.247254344999973, 49.13841463600005 ], [ -122.24671428799995, 49.138395791000086 ], [ -122.246232779999929, 49.138198821000088 ], [ -122.246355535999896, 49.136677921000064 ], [ -122.242714987999975, 49.136550803000027 ], [ -122.241326011999959, 49.135842994000036 ], [ -122.241007445999969, 49.135641916000033 ], [ -122.241229595999968, 49.132893142000057 ], [ -122.246145523999971, 49.133064846000138 ], [ -122.246278273999948, 49.131419960000102 ], [ -122.248018239999951, 49.131480680000053 ], [ -122.248059611999935, 49.130967770000055 ], [ -122.247158471999924, 49.130936326000075 ], [ -122.247201239999953, 49.130406241000117 ], [ -122.247180804999942, 49.130405527000065 ], [ -122.247213527999961, 49.129999948000098 ], [ -122.247184330999957, 49.129998930000028 ], [ -122.247216067999943, 49.129605556000037 ], [ -122.24718095599998, 49.129604330000078 ], [ -122.247346899, 49.127547407000066 ], [ -122.24560182899999, 49.127486493000092 ], [ -122.245892007999956, 49.123890828000043 ], [ -122.246179087999906, 49.12390085100008 ], [ -122.246265496999982, 49.122829936000109 ], [ -122.24326606599999, 49.122725177000085 ], [ -122.24323771899999, 49.123076214000022 ], [ -122.243585151000019, 49.123088353000099 ], [ -122.243573284999968, 49.123235308000076 ], [ -122.244060844999979, 49.123252341000047 ], [ -122.243987546999932, 49.124160208000028 ], [ -122.24435479, 49.124173036000037 ], [ -122.244064489999957, 49.127768695000029 ], [ -122.240136541999988, 49.1276314240001 ], [ -122.240127628999957, 49.127741690000043 ], [ -122.236344601999946, 49.127609347000067 ], [ -122.236326994999928, 49.127586907000079 ], [ -122.235825607999928, 49.127179594000125 ], [ -122.23551090699999, 49.127097006000092 ], [ -122.235319508999964, 49.127122606000093 ], [ -122.235176408999934, 49.127427398000073 ], [ -122.235276587999962, 49.1275719610001 ], [ -122.234660823999903, 49.127550401000114 ], [ -122.23479615399998, 49.12587847600004 ], [ -122.229681957999958, 49.125699272000105 ], [ -122.229726425999942, 49.125150602000062 ], [ -122.228773190999931, 49.125117173000078 ], [ -122.228572449999945, 49.127593268000027 ], [ -122.22729781699995, 49.127548555000018 ], [ -122.227264016999968, 49.127965298000099 ], [ -122.221797241000033, 49.127773355000087 ], [ -122.22191901399998, 49.126274043000073 ], [ -122.227736908999987, 49.124792306000096 ], [ -122.23312320799999, 49.123420514000124 ], [ -122.247065978999942, 49.119867890000059 ], [ -122.247279611999929, 49.119870906000102 ], [ -122.247282507999913, 49.119617374000043 ], [ -122.247297893999956, 49.118284094000096 ], [ -122.247273935999928, 49.114867349000107 ], [ -122.247267405999978, 49.113938902000058 ], [ -122.247246995999959, 49.111100316000091 ], [ -122.250112886999929, 49.111103889000049 ], [ -122.25251210499999, 49.111118091 ], [ -122.253104323999963, 49.111116193000079 ], [ -122.257908790999977, 49.111100607000083 ], [ -122.262385420999934, 49.111063404000099 ], [ -122.262199228999961, 49.113381501000049 ], [ -122.259102626999962, 49.113273784000029 ], [ -122.258991169999916, 49.114660174000086 ], [ -122.253525822999976, 49.114469840000048 ], [ -122.253619110999949, 49.113311153000012 ], [ -122.250524694999967, 49.113203263000074 ], [ -122.250513251999948, 49.113345282000068 ], [ -122.250428194999927, 49.113342315000111 ], [ -122.250362201999963, 49.114161282000083 ], [ -122.250547446, 49.114167744000099 ], [ -122.250409079999926, 49.115884849000039 ], [ -122.250632647999964, 49.115892647000067 ], [ -122.25046775899996, 49.117938851000076 ], [ -122.25107683899995, 49.117960091000015 ], [ -122.251087832999971, 49.117823635000036 ], [ -122.253811104999969, 49.117918565000053 ], [ -122.253868354999938, 49.117207501000102 ], [ -122.259334023999926, 49.117397818000065 ], [ -122.259284803999947, 49.118010040000158 ], [ -122.260188931999977, 49.118041496000011 ], [ -122.260127203999929, 49.118809472000059 ], [ -122.26049666599999, 49.118822324000085 ], [ -122.260499297999928, 49.118789565000085 ], [ -122.262627659, 49.118863574000052 ], [ -122.262743280999956, 49.117424115000091 ], [ -122.263449157999958, 49.117448651000139 ], [ -122.263717626999934, 49.114105329000068 ], [ -122.267849304999942, 49.11424885200006 ], [ -122.267923958999972, 49.11331804200006 ], [ -122.26295445, 49.1131453960001 ], [ -122.263122136999954, 49.111057264000117 ], [ -122.263513415999938, 49.111054000000102 ], [ -122.270551196999961, 49.111081238000125 ], [ -122.270527576999939, 49.11137594700007 ], [ -122.271903127999948, 49.111423664000043 ], [ -122.272554772999925, 49.111446262000086 ], [ -122.27258388599995, 49.111082786000075 ], [ -122.279243015999938, 49.111047487000079 ], [ -122.279103202999963, 49.112796089000042 ], [ -122.281424536999978, 49.112876415000123 ], [ -122.281162137, 49.116159847000041 ], [ -122.282138114999938, 49.116193605000014 ], [ -122.281998712999922, 49.117938222000141 ], [ -122.286722665999946, 49.11810148700004 ], [ -122.286671021999936, 49.118748595000078 ], [ -122.287000695999936, 49.118759982000043 ], [ -122.286935984999943, 49.119570867000022 ], [ -122.291102304999967, 49.119714674000093 ], [ -122.291062854999922, 49.120209561000088 ], [ -122.290815642999988, 49.123310483000076 ], [ -122.290307173999949, 49.123292941000102 ], [ -122.29029003399998, 49.123507895000081 ], [ -122.286331052999969, 49.123371231000142 ], [ -122.286161174999961, 49.125499288000093 ], [ -122.283262732999972, 49.125399142000084 ], [ -122.283142830999935, 49.126899857000083 ], [ -122.282362083999956, 49.126872867000024 ], [ -122.282335016000019, 49.127211576000029 ], [ -122.281160401999912, 49.127170960000107 ], [ -122.280902933999982, 49.130391401000111 ], [ -122.275435651999913, 49.130202184000041 ], [ -122.275437731999929, 49.130176211000119 ], [ -122.275033456999964, 49.130162208000094 ], [ -122.274992708999989, 49.130671042000067 ], [ -122.272148428999955, 49.130572483000023 ], [ -122.272143430999918, 49.130634841000088 ], [ -122.273157337999933, 49.130669983000118 ], [ -122.27300630399999, 49.132554979000055 ], [ -122.27537177899994, 49.132636929000064 ], [ -122.275142443000021, 49.135500696000051 ], [ -122.273868177999972, 49.136169197000058 ], [ -122.272911971999946, 49.13661111000004 ], [ -122.26834860699999, 49.136452878000057 ], [ -122.26853614299992, 49.134115432000094 ], [ -122.267401518999947, 49.134076060000069 ], [ -122.267458746999978, 49.13336292900005 ], [ -122.26707595, 49.133349642000049 ], [ -122.266988693999934, 49.134436824000062 ], [ -122.262400006999897, 49.134277453000045 ], [ -122.262397166999975, 49.134468821000041 ], [ -122.262808400999944, 49.13447144700006 ], [ -122.262804397999972, 49.134741287000068 ], [ -122.263215632999945, 49.134743912000047 ], [ -122.263211632999955, 49.135013751000017 ], [ -122.263622869999892, 49.13501637600011 ], [ -122.263622599999962, 49.135034636000121 ], [ -122.265510291999959, 49.135100200000117 ], [ -122.265493699999951, 49.13530683200014 ], [ -122.26808361499999, 49.135396731000071 ], [ -122.267975214999964, 49.136747658000118 ], [ -122.268262593999964, 49.136757629000115 ], [ -122.268242909999969, 49.137002955000057 ], [ -122.26856189899992, 49.137014022000059 ], [ -122.268409107999929, 49.138918314000072 ], [ -122.267512308999954, 49.139447685000064 ], [ -122.266061103999959, 49.140364902000051 ], [ -122.265841525999974, 49.140525279000073 ], [ -122.264364654999952, 49.140473998000033 ], [ -122.2643495, 49.141497771000076 ], [ -122.2631156299999, 49.141489903000036 ] ], [ [ -122.259954029999903, 49.136010629000054 ], [ -122.260042519999971, 49.134910202000064 ], [ -122.261156216999922, 49.134948923000117 ], [ -122.261159459999988, 49.134730772000069 ], [ -122.260748225999919, 49.134728140000071 ], [ -122.260756250999918, 49.134188460000075 ], [ -122.260345022999957, 49.134185826000056 ], [ -122.260353050999967, 49.133646147000086 ], [ -122.259941825999974, 49.133643512000084 ], [ -122.259945842999954, 49.133373672000054 ], [ -122.259157417999944, 49.13336861600002 ], [ -122.259153017999935, 49.133423315000137 ], [ -122.259098821999956, 49.133421430000077 ], [ -122.258931024999953, 49.135507615000051 ], [ -122.25667317599999, 49.135429054 ], [ -122.256635659999986, 49.135895185000066 ], [ -122.259954029999903, 49.136010629000054 ] ], [ [ -122.261621168999937, 49.133000560000134 ], [ -122.261809984999957, 49.130651231000122 ], [ -122.265424200999988, 49.13077680400005 ], [ -122.265511486999984, 49.129689618000079 ], [ -122.266733390999917, 49.129732044000015 ], [ -122.266832899999955, 49.128492145000031 ], [ -122.269677041999984, 49.128590845000126 ], [ -122.269813767999935, 49.126885812000062 ], [ -122.270706265999962, 49.126916769000104 ], [ -122.27074705699999, 49.126407934000071 ], [ -122.271705589999939, 49.126441173000018 ], [ -122.271731933999888, 49.126112457000012 ], [ -122.274656830999973, 49.126213829000086 ], [ -122.274789895999973, 49.124552126000047 ], [ -122.277059508999969, 49.124630732000078 ], [ -122.277124213999983, 49.123822174000075 ], [ -122.271797323999962, 49.123637604000102 ], [ -122.27204728599996, 49.12051823300002 ], [ -122.272085456999903, 49.120041847000088 ], [ -122.272835463999968, 49.120067851000023 ], [ -122.272918409999974, 49.119032401000027 ], [ -122.270305158999989, 49.118941776000057 ], [ -122.270431334999941, 49.117367692000066 ], [ -122.269317722999972, 49.117329054000038 ], [ -122.269508752999954, 49.114946395000047 ], [ -122.269131804999944, 49.114933314000041 ], [ -122.269044476999966, 49.116022443000105 ], [ -122.269090881999944, 49.116024052000036 ], [ -122.268812273999941, 49.119498496000055 ], [ -122.271654407999932, 49.119597094 ], [ -122.271580168999961, 49.120523537000047 ], [ -122.271366245999928, 49.123192851000049 ], [ -122.271288317999932, 49.123190149000052 ], [ -122.271265058999916, 49.123480353000097 ], [ -122.265798626, 49.123290644000065 ], [ -122.265971076999932, 49.121142052000017 ], [ -122.265792117999951, 49.1211358360001 ], [ -122.26567658099999, 49.122575290000071 ], [ -122.264250951999955, 49.122525766000102 ], [ -122.264248321999972, 49.122558525000109 ], [ -122.258782028, 49.122368460000082 ], [ -122.258843783999964, 49.121600489000073 ], [ -122.257865995999964, 49.121566461000086 ], [ -122.257796851999956, 49.122426080000068 ], [ -122.257169502999943, 49.122404243000162 ], [ -122.256088575999939, 49.122366610000036 ], [ -122.256070790999971, 49.122587620000118 ], [ -122.253571892999943, 49.122500578 ], [ -122.253373113999885, 49.124968879000079 ], [ -122.252926643999928, 49.124953321000056 ], [ -122.252870230999946, 49.125653690000085 ], [ -122.252837613999972, 49.125652552000098 ], [ -122.25279397499996, 49.126194303000013 ], [ -122.252937701999912, 49.126199312000104 ], [ -122.25290601599994, 49.126592689000034 ], [ -122.252941125999939, 49.1265939130001 ], [ -122.252908455999915, 49.126999496000074 ], [ -122.25293765, 49.127000513000027 ], [ -122.252894951999963, 49.127530604000036 ], [ -122.25291538499999, 49.127531316000102 ], [ -122.252655321999939, 49.130759610000034 ], [ -122.25355646199999, 49.13079100699999 ], [ -122.253513560000016, 49.131323664000021 ], [ -122.253583492999923, 49.131326100000109 ], [ -122.25363971699997, 49.130628034000068 ], [ -122.253894558999889, 49.130636912000085 ], [ -122.253975059999945, 49.129637339000105 ], [ -122.254730197999919, 49.12966364199999 ], [ -122.254750904999952, 49.129406459000037 ], [ -122.254620839999916, 49.12940193000005 ], [ -122.254664502999987, 49.128859641000133 ], [ -122.25464987499997, 49.128859132000066 ], [ -122.25483314799996, 49.126582799000069 ], [ -122.253639279999973, 49.126541211000109 ], [ -122.253928832999961, 49.122945519 ], [ -122.257171843999942, 49.123058459000106 ], [ -122.259395174999952, 49.123135831000106 ], [ -122.259212138999928, 49.125412183000023 ], [ -122.260405982999885, 49.125453710000016 ], [ -122.260362388999937, 49.125996003000111 ], [ -122.260377016999911, 49.125996512000093 ], [ -122.26033578699996, 49.126509389000041 ], [ -122.260465844999956, 49.12651391100006 ], [ -122.260301207999973, 49.128561871000073 ], [ -122.260417573999945, 49.128565918000049 ], [ -122.260128487999907, 49.132161596000067 ], [ -122.259256931999957, 49.13213128400006 ], [ -122.259244189999947, 49.132289712000059 ], [ -122.261195553, 49.132302215000095 ], [ -122.261186289999984, 49.13292546300007 ], [ -122.261183522999957, 49.133111734000046 ], [ -122.26161201299999, 49.133114475000106 ], [ -122.261621168999937, 49.133000560000134 ] ], [ [ -122.275122325999959, 49.11355323500009 ], [ -122.274966676999966, 49.115497625000096 ], [ -122.275732260999945, 49.115524150000098 ], [ -122.275887878999967, 49.113579759000082 ], [ -122.275122325999959, 49.11355323500009 ] ], [ [ -122.277418211999972, 49.121897526000048 ], [ -122.277295467999963, 49.123431513000106 ], [ -122.277936548999961, 49.12345370600012 ], [ -122.277963646999979, 49.123114998000105 ], [ -122.280861934999976, 49.123215287000043 ], [ -122.280942529999933, 49.122207094000103 ], [ -122.280356926999943, 49.122186836000019 ], [ -122.280492860999985, 49.120486560000067 ], [ -122.280552182999926, 49.119744492000038 ], [ -122.278576074999989, 49.119676109000068 ], [ -122.278348656999967, 49.119668238 ], [ -122.278282726999976, 49.120492454000079 ], [ -122.278168250999926, 49.121923491000082 ], [ -122.277418211999972, 49.121897526000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9388750", "BldgCostT": "6475000", "sL_LossRatio": "0.815877080665813", "sL_AssetLoss": "58575", "sL_BldgLoss": "47790", "sL_StrLoss": "28140", "sL_NStrLoss": "19650", "sL_ContLoss": "10785", "geom_point": "0101000020E6100000737F58E3AA925EC06493995E248F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.29504158, 49.123608279000081 ], [ -122.295053054000022, 49.122798814000078 ], [ -122.29470201499997, 49.12278671800005 ], [ -122.294719567999977, 49.122566322000033 ], [ -122.292968767999923, 49.122505973000059 ], [ -122.292979544999952, 49.122370721000038 ], [ -122.292516661999912, 49.122354761000103 ], [ -122.292517858999986, 49.122339740000015 ], [ -122.292088947999929, 49.122324949000067 ], [ -122.292090882999958, 49.122300669000033 ], [ -122.291422926999971, 49.122277632000134 ], [ -122.291587889999946, 49.120208059000113 ], [ -122.291662156999948, 49.119276259000102 ], [ -122.290956795999961, 49.119251928000047 ], [ -122.290970611999981, 49.11907860900012 ], [ -122.29067819799999, 49.119068521 ], [ -122.290930608999986, 49.115902172000148 ], [ -122.290636474999957, 49.115892023000065 ], [ -122.290582058999931, 49.116574609000089 ], [ -122.289352921000017, 49.116532192000136 ], [ -122.28934920899999, 49.116578738000015 ], [ -122.283883513999967, 49.11638994600002 ], [ -122.283886825999943, 49.116348469000116 ], [ -122.282294161999957, 49.116293404 ], [ -122.282456107999948, 49.114266399000094 ], [ -122.281924073999932, 49.114248 ], [ -122.282181038999965, 49.111031781000101 ], [ -122.287663520999971, 49.111002259000102 ], [ -122.28751508, 49.112862995000064 ], [ -122.288000538999981, 49.112879760000062 ], [ -122.288150508999934, 49.110999623000055 ], [ -122.288304604999936, 49.110998789000121 ], [ -122.288904997999936, 49.110994295000111 ], [ -122.288742905999968, 49.111343892000029 ], [ -122.28869937099995, 49.111500741000086 ], [ -122.28865048699997, 49.111676898000155 ], [ -122.288608311, 49.112085591000017 ], [ -122.288639002, 49.112594205000072 ], [ -122.288744702999963, 49.1130387010001 ], [ -122.288878584999978, 49.113386695 ], [ -122.288998587999941, 49.113575611000037 ], [ -122.289140296999932, 49.113798712000083 ], [ -122.289421009999941, 49.114144594000038 ], [ -122.289466353999956, 49.114184806000054 ], [ -122.289929091999937, 49.11459491100009 ], [ -122.290411604999989, 49.114935114000062 ], [ -122.29219253899997, 49.115947265000031 ], [ -122.292655516999972, 49.116210362000082 ], [ -122.292809434999924, 49.116297841000083 ], [ -122.293257802999918, 49.116552648000074 ], [ -122.293905137999943, 49.116920514000071 ], [ -122.294319211999976, 49.117155785000122 ], [ -122.294604092999947, 49.117316178000074 ], [ -122.297919253000018, 49.11918232200005 ], [ -122.298704693999952, 49.119624404000064 ], [ -122.299417962999939, 49.12002559000009 ], [ -122.30108270599996, 49.120961913000087 ], [ -122.30109313399997, 49.12096774300008 ], [ -122.301741389999961, 49.121329795000037 ], [ -122.30205729, 49.121509306000043 ], [ -122.302336532999931, 49.121666379000075 ], [ -122.302351147999971, 49.121674601000073 ], [ -122.301495798999923, 49.12231450900002 ], [ -122.300513314999947, 49.122902706000104 ], [ -122.299986304999919, 49.123412509000055 ], [ -122.29915897799998, 49.123685997000052 ], [ -122.298664968, 49.124022537000116 ], [ -122.298325346999903, 49.12401084600004 ], [ -122.298321883999932, 49.124256255000034 ], [ -122.298057653999962, 49.124436253000063 ], [ -122.297497015999951, 49.124432842000061 ], [ -122.297493418999949, 49.124687569000137 ], [ -122.297455525999965, 49.124702456000087 ], [ -122.297082050999933, 49.124700182000012 ], [ -122.297079931999974, 49.124850009000049 ], [ -122.296779065, 49.124968203000094 ], [ -122.296255920999968, 49.12496501600009 ], [ -122.296252952, 49.12517488100012 ], [ -122.29621828099998, 49.125188501000096 ], [ -122.296124493, 49.125234080000091 ], [ -122.295429785999943, 49.125229842000095 ], [ -122.295424907999958, 49.125574060000083 ], [ -122.295031379999926, 49.125765301000051 ], [ -122.29502826099997, 49.125767122000099 ], [ -122.29459981299999, 49.125764505000092 ], [ -122.294596197999965, 49.126019336000056 ], [ -122.29411322599999, 49.126301262000027 ], [ -122.293769820999913, 49.126299162000052 ], [ -122.293766921, 49.126503406000019 ], [ -122.292740627999962, 49.127102458000124 ], [ -122.292524802999964, 49.127101136000078 ], [ -122.292555513999957, 49.124942400000066 ], [ -122.293377825999968, 49.124947435000088 ], [ -122.293393164999884, 49.123868068000071 ], [ -122.293804310999988, 49.123870583000098 ], [ -122.293808143999968, 49.123600740000036 ], [ -122.29504158, 49.123608279000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17500750", "BldgCostT": "11860000", "sL_LossRatio": "0.760271177217486", "sL_AssetLoss": "132312", "sL_BldgLoss": "100593", "sL_StrLoss": "49653", "sL_NStrLoss": "50940", "sL_ContLoss": "31719", "geom_point": "0101000020E6100000D926D370E3925EC0D1293C265A8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.298704693999952, 49.119624404000064 ], [ -122.297919253000018, 49.11918232200005 ], [ -122.294604092999947, 49.117316178000074 ], [ -122.294319211999976, 49.117155785000122 ], [ -122.293905137999943, 49.116920514000071 ], [ -122.293257802999918, 49.116552648000074 ], [ -122.292809434999924, 49.116297841000083 ], [ -122.292655516999972, 49.116210362000082 ], [ -122.29219253899997, 49.115947265000031 ], [ -122.290411604999989, 49.114935114000062 ], [ -122.289929091999937, 49.11459491100009 ], [ -122.289466353999956, 49.114184806000054 ], [ -122.289421009999941, 49.114144594000038 ], [ -122.289140296999932, 49.113798712000083 ], [ -122.288998587999941, 49.113575611000037 ], [ -122.288878584999978, 49.113386695 ], [ -122.288744702999963, 49.1130387010001 ], [ -122.288639002, 49.112594205000072 ], [ -122.288608311, 49.112085591000017 ], [ -122.28865048699997, 49.111676898000155 ], [ -122.28869937099995, 49.111500741000086 ], [ -122.288742905999968, 49.111343892000029 ], [ -122.288904997999936, 49.110994295000111 ], [ -122.288944234, 49.110931450000074 ], [ -122.289055017999928, 49.110935274 ], [ -122.28905767, 49.110749764000076 ], [ -122.289307467999933, 49.110349692000071 ], [ -122.289441786999973, 49.110350519000121 ], [ -122.290492580999953, 49.110356983 ], [ -122.290575148999935, 49.109321102000067 ], [ -122.290282958999953, 49.109311019000067 ], [ -122.290268952999966, 49.109486736000065 ], [ -122.290005967999932, 49.109477659000092 ], [ -122.289855184999979, 49.109472455000109 ], [ -122.289957293000015, 49.109308913000071 ], [ -122.290046, 49.109129362000026 ], [ -122.290139596999921, 49.108939982000052 ], [ -122.29021699299993, 49.108783302000084 ], [ -122.290224683999938, 49.108753731000085 ], [ -122.290377008999911, 49.108168607000053 ], [ -122.290440705999941, 49.107661506000071 ], [ -122.290444821999955, 49.107300190000039 ], [ -122.290435330999941, 49.107251599000044 ], [ -122.29042139299996, 49.107180232000069 ], [ -122.28996671799996, 49.104851625000023 ], [ -122.289758832999922, 49.103786846000077 ], [ -122.289757074999926, 49.103777919000031 ], [ -122.289822534999971, 49.103777898000047 ], [ -122.289887225999948, 49.103777908000069 ], [ -122.290370648999925, 49.10377566700005 ], [ -122.290624502999947, 49.103774509000068 ], [ -122.29099418, 49.10521969400002 ], [ -122.291100584999953, 49.10544868900012 ], [ -122.291261193999972, 49.105788701000023 ], [ -122.29128701499998, 49.106324099000041 ], [ -122.291307110999966, 49.106811594000092 ], [ -122.291376997999961, 49.10725750400006 ], [ -122.294216205999959, 49.10726529100004 ], [ -122.294200222999905, 49.106331805000117 ], [ -122.294184494999939, 49.105461290000079 ], [ -122.294152008999902, 49.103753800000071 ], [ -122.297654822999931, 49.10376742000004 ], [ -122.29754254199996, 49.105178915000081 ], [ -122.297625167999954, 49.105181762 ], [ -122.297428539999956, 49.107653460000051 ], [ -122.297727718999951, 49.10766376600008 ], [ -122.297665463999977, 49.108446332000057 ], [ -122.297747765999958, 49.108449167000039 ], [ -122.297719571999949, 49.108803579000032 ], [ -122.297986179999953, 49.108812761000138 ], [ -122.297793023999958, 49.111240834000093 ], [ -122.300435245999935, 49.111331803000049 ], [ -122.30025832699998, 49.113557139000065 ], [ -122.300149354999959, 49.114927683000097 ], [ -122.297646481999934, 49.114841514000034 ], [ -122.297499946999906, 49.116683142000028 ], [ -122.296644659999913, 49.116653682000027 ], [ -122.296637747999938, 49.116740541000055 ], [ -122.298694247999933, 49.1168113640001 ], [ -122.298665159999985, 49.117177039000069 ], [ -122.299342248999949, 49.117200348000011 ], [ -122.299323262999962, 49.117439068000067 ], [ -122.299868444999987, 49.11745783300011 ], [ -122.299837282999974, 49.117849700000065 ], [ -122.299785592999982, 49.118499693000047 ], [ -122.300027903999975, 49.118508033000104 ], [ -122.300009405999958, 49.118740647000074 ], [ -122.300395205999934, 49.118753923000064 ], [ -122.300347573999943, 49.119352963000026 ], [ -122.300464375000018, 49.119356981000067 ], [ -122.300570233999963, 49.119234561000056 ], [ -122.300953253000017, 49.119373803000038 ], [ -122.303388039999945, 49.119457545000067 ], [ -122.303365767999964, 49.11973786600003 ], [ -122.303789543999983, 49.119752435000088 ], [ -122.303732196999988, 49.120474292000083 ], [ -122.302520096999942, 49.121548203000074 ], [ -122.302351147999971, 49.121674601000073 ], [ -122.302336532999931, 49.121666379000075 ], [ -122.30205729, 49.121509306000043 ], [ -122.301741389999961, 49.121329795000037 ], [ -122.30109313399997, 49.12096774300008 ], [ -122.30108270599996, 49.120961913000087 ], [ -122.299417962999939, 49.12002559000009 ], [ -122.298704693999952, 49.119624404000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.7893533638145", "sL_AssetLoss": "30620", "sL_BldgLoss": "24170", "sL_StrLoss": "12090", "sL_NStrLoss": "12080", "sL_ContLoss": "6450", "geom_point": "0101000020E61000007B975A0815955EC0C548E5DC5C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.326818842999955, 49.094692591000047 ], [ -122.332282165, 49.094879208000073 ], [ -122.33199883499999, 49.098475265000069 ], [ -122.326535091999929, 49.098288634000021 ], [ -122.326818842999955, 49.094692591000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12903916", "BldgCostT": "8371666", "sL_LossRatio": "0.728232841389148", "sL_AssetLoss": "109362", "sL_BldgLoss": "79641", "sL_StrLoss": "47043", "sL_NStrLoss": "32598", "sL_ContLoss": "29721", "geom_point": "0101000020E6100000BED5C61AA6935EC06A84B851688E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.301204626999947, 49.118320704000098 ], [ -122.30131758, 49.116899789000101 ], [ -122.300914343999963, 49.116897348000094 ], [ -122.300481360999953, 49.116894725000051 ], [ -122.300492744999957, 49.116085196000029 ], [ -122.300903826999956, 49.116087686000064 ], [ -122.300907620999965, 49.115817843000052 ], [ -122.301403342999919, 49.115820843000051 ], [ -122.301490456999929, 49.11472483900009 ], [ -122.303621563999968, 49.114798137000101 ], [ -122.303718614999966, 49.113576357000071 ], [ -122.303817294999959, 49.112333989000078 ], [ -122.306784709999988, 49.112435980000086 ], [ -122.306977921999959, 49.11000132900012 ], [ -122.305310696000021, 49.109944035000098 ], [ -122.30559615599999, 49.106348113000095 ], [ -122.31106076, 49.106535806000096 ], [ -122.310837772999946, 49.109348967000102 ], [ -122.312504985999936, 49.109406175000061 ], [ -122.3122200399999, 49.113002098000074 ], [ -122.309252576999967, 49.112900256000025 ], [ -122.308997380999941, 49.116117667 ], [ -122.306866204999949, 49.116044476000077 ], [ -122.306679700999979, 49.118394202000118 ], [ -122.306523424999938, 49.118503559 ], [ -122.301204626999947, 49.118320704000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63096417", "BldgCostT": "40721667", "sL_LossRatio": "0.74421580333148", "sL_AssetLoss": "514246", "sL_BldgLoss": "382710", "sL_StrLoss": "211603", "sL_NStrLoss": "171107", "sL_ContLoss": "131536", "geom_point": "0101000020E6100000F046ACE6B5945EC0C7551B52FB8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.314536478999983, 49.112454276000086 ], [ -122.314700340999977, 49.110385128000104 ], [ -122.313995687999949, 49.110360966000023 ], [ -122.313997926999946, 49.110332702000036 ], [ -122.312987255999971, 49.110298040000018 ], [ -122.31327212599993, 49.106702100000078 ], [ -122.314444772999963, 49.10674231500014 ], [ -122.31450655499998, 49.105962099000116 ], [ -122.313983098999984, 49.105944149000095 ], [ -122.313974424999984, 49.106053676 ], [ -122.309993017999901, 49.105917062000081 ], [ -122.309985161, 49.10601617200016 ], [ -122.307563873, 49.105933018 ], [ -122.307557461000016, 49.106013831000084 ], [ -122.303107300999926, 49.105860856000042 ], [ -122.303092281, 49.106049938000062 ], [ -122.29762776599999, 49.105861841 ], [ -122.297794324999941, 49.103767960000077 ], [ -122.305248858999974, 49.103796555000031 ], [ -122.308139616999966, 49.103807520000039 ], [ -122.316353788999919, 49.103838191000108 ], [ -122.316356343999956, 49.100005214000063 ], [ -122.31635866299996, 49.096531685000059 ], [ -122.316361084999954, 49.09287143100007 ], [ -122.316361389999912, 49.092457673000126 ], [ -122.316361723999961, 49.091948080000066 ], [ -122.318645888999924, 49.092026364000048 ], [ -122.318625403999988, 49.092285437000065 ], [ -122.319819264999964, 49.092326334000113 ], [ -122.319597250999919, 49.095134811000072 ], [ -122.31994843499993, 49.09514683800014 ], [ -122.31983475199992, 49.096584925000109 ], [ -122.319867425, 49.096586044000048 ], [ -122.319842351999966, 49.096903233000027 ], [ -122.319863144999928, 49.096903945000058 ], [ -122.319824439999934, 49.097393537000066 ], [ -122.319874373999937, 49.097395246000104 ], [ -122.319793129999951, 49.09842292200009 ], [ -122.319869837999974, 49.098425549000076 ], [ -122.31978067299994, 49.099553383000121 ], [ -122.319890706999928, 49.099557151000063 ], [ -122.319807334999936, 49.100611687 ], [ -122.320337557999935, 49.100629843000021 ], [ -122.320307919999962, 49.101004767000077 ], [ -122.321223751, 49.10103612000011 ], [ -122.32118770699999, 49.101492167000067 ], [ -122.321614604999965, 49.101506779000069 ], [ -122.321620578999926, 49.101431185000102 ], [ -122.32402378099999, 49.101513412000045 ], [ -122.324028879999943, 49.101448843000064 ], [ -122.32604596699997, 49.101517818000097 ], [ -122.326052598999951, 49.101433792000073 ], [ -122.328798609999964, 49.10152763100006 ], [ -122.328803385999976, 49.101467058000033 ], [ -122.333671291999963, 49.101633235000108 ], [ -122.333698295999937, 49.101290375000119 ], [ -122.33466333599992, 49.101323293000043 ], [ -122.334829066999973, 49.099218496000056 ], [ -122.334947523999944, 49.09922253600012 ], [ -122.33498987099992, 49.098684687000109 ], [ -122.334129347999976, 49.098655336000022 ], [ -122.334412514999883, 49.095059275000033 ], [ -122.335264426999927, 49.095088332000039 ], [ -122.335282757999934, 49.094855454000047 ], [ -122.334749404999954, 49.094837263000052 ], [ -122.33487861199994, 49.093196071000058 ], [ -122.334699605999944, 49.093189965000136 ], [ -122.334825082999956, 49.091596097000028 ], [ -122.332470380999965, 49.091515749000081 ], [ -122.332466370999953, 49.091566674000063 ], [ -122.327003434999966, 49.091380065000045 ], [ -122.327003770999951, 49.091375804000023 ], [ -122.326113572999958, 49.091345369000038 ], [ -122.326103506999942, 49.091472928000016 ], [ -122.320640607999977, 49.091285995000142 ], [ -122.320696509999905, 49.090578615000069 ], [ -122.320081542999958, 49.090557554000071 ], [ -122.320069819999915, 49.090705874000065 ], [ -122.317529710999978, 49.09061884700008 ], [ -122.317461555999927, 49.091480535000088 ], [ -122.316362056999964, 49.091442845000053 ], [ -122.316363489999944, 49.089263092000074 ], [ -122.333734534999905, 49.08931682800003 ], [ -122.333912574999928, 49.089317378000075 ], [ -122.334172809999984, 49.089318156000083 ], [ -122.336285305999937, 49.089324491000085 ], [ -122.336260678999949, 49.089637459000116 ], [ -122.336306075999957, 49.089639007000073 ], [ -122.336330813999936, 49.089324628000078 ], [ -122.338469100999959, 49.08933099700009 ], [ -122.338423004999925, 49.089395202000091 ], [ -122.338408361999939, 49.091542736000086 ], [ -122.338407675, 49.091641668000143 ], [ -122.33840697, 49.091749613000033 ], [ -122.338398935999948, 49.092927917000047 ], [ -122.338397769, 49.093098834000045 ], [ -122.338373894999975, 49.096600512000109 ], [ -122.338372206999935, 49.096858870000062 ], [ -122.338371435999946, 49.096975816000032 ], [ -122.33837093799994, 49.097047781000086 ], [ -122.338369219999976, 49.09730861 ], [ -122.338362941999932, 49.098262180000063 ], [ -122.33835829299997, 49.098963843000099 ], [ -122.338353263999963, 49.099728368000115 ], [ -122.33835144299999, 49.099998213000099 ], [ -122.338350464999905, 49.100151085000107 ], [ -122.33835029799999, 49.100173790000078 ], [ -122.338379452999916, 49.101248160000054 ], [ -122.338381631999965, 49.101329088000035 ], [ -122.338385787999982, 49.101482150000045 ], [ -122.338451787999929, 49.103915497000095 ], [ -122.338453850999912, 49.104016015000113 ], [ -122.338472501999959, 49.10492400600009 ], [ -122.338490580999974, 49.10566601400005 ], [ -122.338494207999958, 49.105814394000042 ], [ -122.338416951999989, 49.107085757000057 ], [ -122.338410953999968, 49.107184392000072 ], [ -122.338410393999965, 49.107193388000113 ], [ -122.338406639999917, 49.107610448000131 ], [ -122.338402012999964, 49.107804045000066 ], [ -122.33840559199993, 49.108102798000097 ], [ -122.33648150199997, 49.108271797000036 ], [ -122.3358204099999, 49.108448391000074 ], [ -122.335009040000017, 49.108527956000081 ], [ -122.33521983899999, 49.10585094900005 ], [ -122.335002534999916, 49.105843539000062 ], [ -122.335058158999942, 49.105137162000048 ], [ -122.334990078999979, 49.105134841000037 ], [ -122.335005370999966, 49.104940641000091 ], [ -122.33474544799999, 49.104931777000047 ], [ -122.334665658999981, 49.105944978000153 ], [ -122.333847673999941, 49.105917081000086 ], [ -122.333841527999937, 49.105995098000108 ], [ -122.329139671999911, 49.105834616000024 ], [ -122.32912673699991, 49.105998611000103 ], [ -122.324805718, 49.105850947000057 ], [ -122.324681435999935, 49.107424814000041 ], [ -122.319883279999928, 49.107260640000035 ], [ -122.319806709999952, 49.108228964000098 ], [ -122.32362051399997, 49.108359475000022 ], [ -122.323450353999959, 49.110513465000075 ], [ -122.322512119999942, 49.110772706000084 ], [ -122.321900298999964, 49.110463601000106 ], [ -122.321406588999935, 49.110452191000093 ], [ -122.321717612999947, 49.110732795000075 ], [ -122.321976376999956, 49.110832495000054 ], [ -122.322058283999965, 49.110977697000081 ], [ -122.322042393999965, 49.111067498000068 ], [ -122.320136593999933, 49.111845943000041 ], [ -122.320064941999973, 49.111843489000059 ], [ -122.3200623499999, 49.111876267000063 ], [ -122.318328966999914, 49.112584231000028 ], [ -122.316381582999966, 49.112517518000075 ], [ -122.314536478999983, 49.112454276000086 ] ], [ [ -122.320566392, 49.109718715000092 ], [ -122.320254099999886, 49.109661811000123 ], [ -122.320346100000023, 49.109878313000138 ], [ -122.320672190999957, 49.110133192000077 ], [ -122.32086370899999, 49.110151704000039 ], [ -122.320960090000014, 49.109999292000076 ], [ -122.320566392, 49.109718715000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20693334", "BldgCostT": "12533334", "sL_LossRatio": "0.726083780408298", "sL_AssetLoss": "127309", "sL_BldgLoss": "92437", "sL_StrLoss": "51150", "sL_NStrLoss": "41287", "sL_ContLoss": "34872", "geom_point": "0101000020E61000003981E143E6935EC09A57122CD08C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.31417096499996, 49.098067714000102 ], [ -122.314334795999955, 49.095998493000096 ], [ -122.312987640999907, 49.095952278 ], [ -122.31302824899997, 49.095439540000072 ], [ -122.312898167999933, 49.095435076000044 ], [ -122.313182954999931, 49.09183905400004 ], [ -122.316361723999961, 49.091948080000066 ], [ -122.316361389999912, 49.092457673000126 ], [ -122.316361084999954, 49.09287143100007 ], [ -122.31635866299996, 49.096531685000059 ], [ -122.316356343999956, 49.100005214000063 ], [ -122.316353788999919, 49.103838191000108 ], [ -122.308139616999966, 49.103807520000039 ], [ -122.305248858999974, 49.103796555000031 ], [ -122.297794324999941, 49.103767960000077 ], [ -122.297913794999914, 49.102265917000089 ], [ -122.302363595999921, 49.102419108000063 ], [ -122.302378615999942, 49.102230025000047 ], [ -122.303683254999967, 49.102274904000083 ], [ -122.303751805999951, 49.101411655000042 ], [ -122.306992364999957, 49.101523060000012 ], [ -122.307000174, 49.101424633000121 ], [ -122.308620203999951, 49.101480291000016 ], [ -122.308624906999981, 49.101420972 ], [ -122.310783929999957, 49.101495109 ], [ -122.31078721799993, 49.101453625000026 ], [ -122.312901982999961, 49.101526200000059 ], [ -122.313178610999941, 49.098033672000049 ], [ -122.31417096499996, 49.098067714000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21407584", "BldgCostT": "14028334", "sL_LossRatio": "0.766252279131444", "sL_AssetLoss": "150825", "sL_BldgLoss": "115570", "sL_StrLoss": "63040", "sL_NStrLoss": "52530", "sL_ContLoss": "35255", "geom_point": "0101000020E610000070506F0471935EC06C6027CC668B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.291849156999945, 49.091256224000112 ], [ -122.291853800999917, 49.091197914000041 ], [ -122.290665420999957, 49.091156894000044 ], [ -122.290820615999976, 49.089208863000138 ], [ -122.290951895999939, 49.087560906000128 ], [ -122.291006749999937, 49.087562800000086 ], [ -122.291061528999975, 49.086875107000012 ], [ -122.293292547999911, 49.086952106000069 ], [ -122.29329783699994, 49.086885661000025 ], [ -122.29876011, 49.087073983000039 ], [ -122.29870542499998, 49.087761925000045 ], [ -122.298781586999937, 49.087764549000106 ], [ -122.298847209999906, 49.086938995000011 ], [ -122.299458707999946, 49.086960059000077 ], [ -122.299459283999951, 49.086952809000167 ], [ -122.304049711999966, 49.087110827000032 ], [ -122.304132142999933, 49.086072319000095 ], [ -122.304975645999946, 49.086101334000034 ], [ -122.304977708999971, 49.08607534000005 ], [ -122.310439932999898, 49.086263069000054 ], [ -122.310370328999952, 49.0871414860001 ], [ -122.310497984999927, 49.087145869000025 ], [ -122.310454160999925, 49.087698939000099 ], [ -122.310686833999981, 49.087706929000049 ], [ -122.310749027999989, 49.086921981000032 ], [ -122.31233740099999, 49.086976514000064 ], [ -122.312343663999954, 49.086897419000088 ], [ -122.314886744999953, 49.086984680000043 ], [ -122.314891659999901, 49.086922581000046 ], [ -122.316359313999939, 49.086972913000125 ], [ -122.316363489999944, 49.089263092000074 ], [ -122.316362056999964, 49.091442845000053 ], [ -122.313700801999943, 49.09135157500004 ], [ -122.3136957, 49.091416025000029 ], [ -122.309312907, 49.091265567000086 ], [ -122.309302120999973, 49.091401631000103 ], [ -122.308821359999982, 49.091385116000048 ], [ -122.308813903999933, 49.091479143000122 ], [ -122.303815919999934, 49.091307325000123 ], [ -122.303797204999952, 49.091543064000057 ], [ -122.302648401999932, 49.091503538000111 ], [ -122.30264445899999, 49.091553191000109 ], [ -122.297317889999988, 49.091369763000067 ], [ -122.297311935999971, 49.091444620000082 ], [ -122.294193512, 49.09133710900003 ], [ -122.291849156999945, 49.091256224000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41390394", "BldgCostT": "27341523", "sL_LossRatio": "0.81312984496124", "sL_AssetLoss": "227040", "sL_BldgLoss": "184613", "sL_StrLoss": "115286", "sL_NStrLoss": "69327", "sL_ContLoss": "42427", "geom_point": "0101000020E61000005EC55EFF60935EC020BCB0144D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.287367193999941, 49.091447063000061 ], [ -122.286979176, 49.089422605000038 ], [ -122.286936566999955, 49.089200316000074 ], [ -122.286642719999975, 49.087823560000047 ], [ -122.286615564, 49.087696289000057 ], [ -122.286047996999969, 49.085037015000104 ], [ -122.286000550999916, 49.084814732000069 ], [ -122.285328964999962, 49.082248447000048 ], [ -122.285225910999898, 49.08185813500009 ], [ -122.28505759899997, 49.08185682700006 ], [ -122.284923651999975, 49.081356388000131 ], [ -122.284771791999987, 49.080805715000132 ], [ -122.284768269999987, 49.080686382000053 ], [ -122.284928909999977, 49.080780613000073 ], [ -122.285123251999934, 49.080894601000104 ], [ -122.285383264999936, 49.080824823000093 ], [ -122.285411697, 49.080935067000027 ], [ -122.285908926999966, 49.081472289000089 ], [ -122.286227164999943, 49.081784582000097 ], [ -122.286414934999968, 49.081713550000046 ], [ -122.28656851, 49.081710756000057 ], [ -122.287756449999975, 49.081888821000099 ], [ -122.287794077999948, 49.081891438000035 ], [ -122.288572432999928, 49.081945059000084 ], [ -122.290538386999984, 49.082080491000049 ], [ -122.29228237199996, 49.082076198000067 ], [ -122.292994404999959, 49.082074449000054 ], [ -122.293707257000023, 49.082072674000088 ], [ -122.293984202999951, 49.08203354700008 ], [ -122.294147461999984, 49.08196077100007 ], [ -122.294130084999964, 49.081348835000043 ], [ -122.29411252200002, 49.080731693000061 ], [ -122.294117477999961, 49.080080830000064 ], [ -122.294129762999916, 49.078470720000048 ], [ -122.294146740999963, 49.076248964000058 ], [ -122.294153495999936, 49.075364811000085 ], [ -122.294155968999974, 49.075142573000058 ], [ -122.29416149799999, 49.074643909000059 ], [ -122.299330835999967, 49.074622987000069 ], [ -122.30515911099998, 49.074599121000062 ], [ -122.305916431999947, 49.07459965900005 ], [ -122.306655909999961, 49.074600193000059 ], [ -122.30758705199996, 49.074600852000081 ], [ -122.308052526999958, 49.074601168000108 ], [ -122.31072262899994, 49.074602994000031 ], [ -122.312105564999925, 49.074603941000092 ], [ -122.312393071999963, 49.074604106000074 ], [ -122.313981201000033, 49.074605140000131 ], [ -122.315282327999938, 49.074605967000153 ], [ -122.31618799899999, 49.074606542000083 ], [ -122.31625887199999, 49.076012588000047 ], [ -122.31633296899993, 49.077481794000107 ], [ -122.316334398, 49.077821515000053 ], [ -122.316337375999922, 49.078532298000077 ], [ -122.316342639999974, 49.079800854000034 ], [ -122.316351718999925, 49.081969949000054 ], [ -122.31635070699997, 49.082242984000118 ], [ -122.316350900999964, 49.082357432000087 ], [ -122.316352993999928, 49.0835067820001 ], [ -122.316358154999975, 49.086337896000089 ], [ -122.314478891999968, 49.086273444000021 ], [ -122.31454905, 49.085387041000033 ], [ -122.314415044999933, 49.085382444000054 ], [ -122.3145146199999, 49.084124344000067 ], [ -122.313527177000012, 49.084090463000095 ], [ -122.313524286999964, 49.084126951000037 ], [ -122.312076278999953, 49.084077251000032 ], [ -122.312071429999975, 49.084138486000015 ], [ -122.306609446999985, 49.083950838000113 ], [ -122.306649764999946, 49.083442515000058 ], [ -122.303761180999956, 49.083343164000048 ], [ -122.303772764999962, 49.083197222000052 ], [ -122.302191243999957, 49.083142793000029 ], [ -122.302117221999964, 49.084074926000078 ], [ -122.301165218999969, 49.084042151000126 ], [ -122.301158586000028, 49.084125649000065 ], [ -122.299321211999981, 49.084062370000026 ], [ -122.299292026999964, 49.084429593000081 ], [ -122.293830061999984, 49.084241297000055 ], [ -122.293832827999921, 49.084206551000079 ], [ -122.290302642999947, 49.084084703 ], [ -122.29035982100001, 49.083366964000042 ], [ -122.290273199999959, 49.083363972000043 ], [ -122.290114234999962, 49.085359269000065 ], [ -122.290882294, 49.085385790000046 ], [ -122.290595825999915, 49.088981789000101 ], [ -122.287801706, 49.08888528300011 ], [ -122.287758026999981, 49.088883774000081 ], [ -122.287732684, 49.089201617000093 ], [ -122.287682597999918, 49.089829806000097 ], [ -122.28812368399997, 49.089832528000066 ], [ -122.288100534999955, 49.091451587000108 ], [ -122.287367193999941, 49.091447063000061 ] ], [ [ -122.303882102999978, 49.077443988 ], [ -122.303909654999984, 49.077096811000047 ], [ -122.299066903999972, 49.076930056000037 ], [ -122.29908037599999, 49.076760527000054 ], [ -122.297332324999957, 49.076700281000043 ], [ -122.29726885, 49.077498680000133 ], [ -122.297454866999956, 49.077505093000099 ], [ -122.297417597999939, 49.077973884000102 ], [ -122.297528094999961, 49.077977692000076 ], [ -122.297483572999923, 49.078537708000042 ], [ -122.298036911999986, 49.078556780000056 ], [ -122.29799984499999, 49.079023069000129 ], [ -122.302752277999957, 49.079186756000091 ], [ -122.302723026999942, 49.079555207000119 ], [ -122.303016429999971, 49.079565306000049 ], [ -122.303155041999943, 49.077819172000027 ], [ -122.303609065999964, 49.077834798000062 ], [ -122.303640742999903, 49.077435682000015 ], [ -122.303882102999978, 49.077443988 ] ], [ [ -122.31075529499999, 49.077156253000041 ], [ -122.310748288999918, 49.077244707000034 ], [ -122.311962146, 49.077286393000072 ], [ -122.311969149999939, 49.077197939 ], [ -122.31075529499999, 49.077156253000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17335417", "BldgCostT": "11691667", "sL_LossRatio": "0.784802522901336", "sL_AssetLoss": "133180", "sL_BldgLoss": "104520", "sL_StrLoss": "58800", "sL_NStrLoss": "45720", "sL_ContLoss": "28660", "geom_point": "0101000020E610000077A9CFDDC7925EC0C0302E8F948C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.29099418, 49.10521969400002 ], [ -122.290624502999947, 49.103774509000068 ], [ -122.290370648999925, 49.10377566700005 ], [ -122.289887225999948, 49.103777908000069 ], [ -122.289880949999912, 49.103747792000036 ], [ -122.289795107999936, 49.10333616700008 ], [ -122.290774214, 49.103342186000098 ], [ -122.291052008999941, 49.099856045000124 ], [ -122.291861528999931, 49.09988398100009 ], [ -122.291932452999973, 49.098993648000075 ], [ -122.289637708999948, 49.098914441000048 ], [ -122.289636241999943, 49.099017323000098 ], [ -122.288893588999969, 49.099012750000036 ], [ -122.288814080999913, 49.098631413000057 ], [ -122.28833217199994, 49.096481007000115 ], [ -122.288058592999946, 49.095053957000069 ], [ -122.288362116999977, 49.095064441000062 ], [ -122.288507477999985, 49.093241164000105 ], [ -122.2901274, 49.093297107000119 ], [ -122.290221772999956, 49.092112802000031 ], [ -122.292103156999943, 49.092177744000075 ], [ -122.292148120999954, 49.091613147000018 ], [ -122.294192256999978, 49.091683669000084 ], [ -122.29761094399997, 49.09180152600009 ], [ -122.29735689599994, 49.094995920000052 ], [ -122.298030327, 49.095019123000021 ], [ -122.297744351999967, 49.098615088000038 ], [ -122.29744206399999, 49.098604674000093 ], [ -122.297268553999942, 49.100785994 ], [ -122.296459015999972, 49.100758098000057 ], [ -122.296391174999954, 49.10161073200009 ], [ -122.297822445999955, 49.101660047000038 ], [ -122.297654822999931, 49.10376742000004 ], [ -122.294152008999902, 49.103753800000071 ], [ -122.294184494999939, 49.105461290000079 ], [ -122.294200222999905, 49.106331805000117 ], [ -122.294216205999959, 49.10726529100004 ], [ -122.291376997999961, 49.10725750400006 ], [ -122.291307110999966, 49.106811594000092 ], [ -122.29128701499998, 49.106324099000041 ], [ -122.291261193999972, 49.105788701000023 ], [ -122.291100584999953, 49.10544868900012 ], [ -122.29099418, 49.10521969400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172374750", "BldgCostT": "105390000", "sL_LossRatio": "0.726550003247126", "sL_AssetLoss": "1000885", "sL_BldgLoss": "727193", "sL_StrLoss": "382889", "sL_NStrLoss": "344304", "sL_ContLoss": "273692", "geom_point": "0101000020E6100000DD5B25B3D5905EC0B2895950148A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249868312999951, 49.080985672000097 ], [ -122.249855563999944, 49.079988133000057 ], [ -122.249781871999986, 49.078318690000046 ], [ -122.2496454, 49.078032137000072 ], [ -122.249614368999971, 49.077966929000063 ], [ -122.249380196999937, 49.077475270000065 ], [ -122.249349028999973, 49.077265942000089 ], [ -122.249331323999954, 49.07714721100006 ], [ -122.249325594999931, 49.076964015000058 ], [ -122.249346996999989, 49.076869981000065 ], [ -122.249452686000026, 49.076405008000087 ], [ -122.249404299999952, 49.075135788000033 ], [ -122.24939382699999, 49.074851710000139 ], [ -122.249393747999974, 49.074848756000073 ], [ -122.25225976399993, 49.074305109000079 ], [ -122.25250696199997, 49.074488508000115 ], [ -122.253526936999904, 49.074640309000159 ], [ -122.254199210999928, 49.074548260000057 ], [ -122.25485298699999, 49.074472192000059 ], [ -122.255004980999956, 49.0745729980001 ], [ -122.255199184999938, 49.074578129 ], [ -122.255428486, 49.074584198000132 ], [ -122.255939497999933, 49.074733590000065 ], [ -122.256100772999957, 49.074734495000079 ], [ -122.258537917999959, 49.07474784200015 ], [ -122.26100248399996, 49.074761262000145 ], [ -122.261208060999962, 49.074761528000089 ], [ -122.26587697599993, 49.074767496000085 ], [ -122.266561695999911, 49.074768334000062 ], [ -122.267451622999957, 49.074769456000055 ], [ -122.270477781999958, 49.074773182000101 ], [ -122.273065475999914, 49.074776284000102 ], [ -122.276198074999925, 49.07477995400005 ], [ -122.276147685999959, 49.075410176000105 ], [ -122.270686871999928, 49.075220701 ], [ -122.270708949999985, 49.074944973000122 ], [ -122.270262388999981, 49.074929466000107 ], [ -122.270259185999961, 49.075148116000079 ], [ -122.26999298599999, 49.075146433000057 ], [ -122.2698448189999, 49.076996424000114 ], [ -122.264463432999918, 49.076809397 ], [ -122.26440605599997, 49.0775247300001 ], [ -122.264961956999969, 49.077544062000115 ], [ -122.264833441999883, 49.079146447 ], [ -122.264888659999954, 49.079148368000105 ], [ -122.264849435999963, 49.0796374170001 ], [ -122.267209849999944, 49.079719472000129 ], [ -122.267250620999931, 49.079210811000088 ], [ -122.271419180999942, 49.079355594000091 ], [ -122.27142664899999, 49.079262312000012 ], [ -122.276887940999984, 49.079451748000082 ], [ -122.276813254999951, 49.080385908000089 ], [ -122.27835001299999, 49.080439163000086 ], [ -122.278420647999937, 49.079555282000086 ], [ -122.283562995999944, 49.079733325000106 ], [ -122.283729739999927, 49.077643804000076 ], [ -122.284912478999971, 49.077684719000111 ], [ -122.284880464999929, 49.07786433900003 ], [ -122.284724110999932, 49.079189513000102 ], [ -122.284768269999987, 49.080686382000053 ], [ -122.284771791999987, 49.080805715000132 ], [ -122.284923651999975, 49.081356388000131 ], [ -122.28505759899997, 49.08185682700006 ], [ -122.284944831999965, 49.081857276000108 ], [ -122.284573019999982, 49.081858685000029 ], [ -122.284584513999931, 49.081714624000071 ], [ -122.284542212999966, 49.081714361000088 ], [ -122.28454847899998, 49.081278077000057 ], [ -122.283761784999939, 49.08125086400004 ], [ -122.283712978999972, 49.081862439000112 ], [ -122.283657361999957, 49.081862691000069 ], [ -122.279453064999984, 49.081881701000029 ], [ -122.279261178999917, 49.081882562000033 ], [ -122.279124232999948, 49.081883188000084 ], [ -122.272276543000018, 49.081913757000052 ], [ -122.271984102999937, 49.081915049000024 ], [ -122.266853325999989, 49.081926405000047 ], [ -122.261001258999968, 49.081939005000095 ], [ -122.255354070999928, 49.081946019000092 ], [ -122.255240193999953, 49.081995718000023 ], [ -122.254881564999934, 49.08215221500005 ], [ -122.254373211, 49.082283142000136 ], [ -122.253888849999967, 49.082407904000043 ], [ -122.253382723999934, 49.082468323000072 ], [ -122.253322000999972, 49.082475575000103 ], [ -122.253030621999983, 49.082472627000087 ], [ -122.252900682999893, 49.082447563000052 ], [ -122.252669833999903, 49.082403078000034 ], [ -122.252619387999971, 49.082393349000057 ], [ -122.252577439999982, 49.082380989000043 ], [ -122.252352544999937, 49.082314655000069 ], [ -122.250550348999965, 49.081782975000095 ], [ -122.25052996099997, 49.081769013000041 ], [ -122.250286922, 49.081602496000102 ], [ -122.250121308999923, 49.081448864000137 ], [ -122.249986362999934, 49.081253925000034 ], [ -122.249868312999951, 49.080985672000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100393084", "BldgCostT": "66738334", "sL_LossRatio": "0.805585587533606", "sL_AssetLoss": "554964", "sL_BldgLoss": "447071", "sL_StrLoss": "260938", "sL_NStrLoss": "186133", "sL_ContLoss": "107893", "geom_point": "0101000020E6100000D57CE8C416965EC0DE91FB67178B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.370009994999918, 49.10534430900001 ], [ -122.369491821999972, 49.103895873000049 ], [ -122.369313409999961, 49.103955605000102 ], [ -122.368942485999938, 49.104003403000029 ], [ -122.367529033999972, 49.104000172000092 ], [ -122.36128170299996, 49.103985655000045 ], [ -122.360157186, 49.103982990000056 ], [ -122.359953730999948, 49.103961335000108 ], [ -122.359775182999897, 49.103942330000045 ], [ -122.359536392999985, 49.103916889000082 ], [ -122.359126037999914, 49.103770037000061 ], [ -122.357742196999965, 49.103705144000131 ], [ -122.356806989999924, 49.103721776000093 ], [ -122.352870134999961, 49.103824188000097 ], [ -122.352022199999979, 49.10382240200007 ], [ -122.351948565000015, 49.103846862000069 ], [ -122.351829890999952, 49.103886313000011 ], [ -122.349568719999965, 49.103897290000134 ], [ -122.349047969999958, 49.10389981700007 ], [ -122.344304316, 49.103922704000063 ], [ -122.343756207999888, 49.103924802000066 ], [ -122.343243394999959, 49.10386229100002 ], [ -122.342571190999948, 49.103665397000157 ], [ -122.342268303999944, 49.103632589000036 ], [ -122.341978871999956, 49.103655200000084 ], [ -122.341034988999951, 49.10386549600004 ], [ -122.340391105999942, 49.10391930100009 ], [ -122.339868855999924, 49.103918265000111 ], [ -122.339677047999956, 49.103917911000067 ], [ -122.33945784, 49.103917489000047 ], [ -122.338950961999899, 49.10391647600008 ], [ -122.338625403999984, 49.103915831000045 ], [ -122.338451787999929, 49.103915497000095 ], [ -122.338385787999982, 49.101482150000045 ], [ -122.338381631999965, 49.101329088000035 ], [ -122.338379452999916, 49.101248160000054 ], [ -122.33835029799999, 49.100173790000078 ], [ -122.338350464999905, 49.100151085000107 ], [ -122.33835144299999, 49.099998213000099 ], [ -122.338353263999963, 49.099728368000115 ], [ -122.33835829299997, 49.098963843000099 ], [ -122.338362941999932, 49.098262180000063 ], [ -122.338369219999976, 49.09730861 ], [ -122.33837093799994, 49.097047781000086 ], [ -122.338371435999946, 49.096975816000032 ], [ -122.338372206999935, 49.096858870000062 ], [ -122.338373894999975, 49.096600512000109 ], [ -122.338397769, 49.093098834000045 ], [ -122.338398935999948, 49.092927917000047 ], [ -122.33840697, 49.091749613000033 ], [ -122.338407675, 49.091641668000143 ], [ -122.338408361999939, 49.091542736000086 ], [ -122.338423004999925, 49.089395202000091 ], [ -122.338469100999959, 49.08933099700009 ], [ -122.336330813999936, 49.089324628000078 ], [ -122.336396674999932, 49.088487601000061 ], [ -122.336351279000013, 49.088486054000072 ], [ -122.336285305999937, 49.089324491000085 ], [ -122.334172809999984, 49.089318156000083 ], [ -122.333912574999928, 49.089317378000075 ], [ -122.333734534999905, 49.08931682800003 ], [ -122.316363489999944, 49.089263092000074 ], [ -122.316359313999939, 49.086972913000125 ], [ -122.317921807999966, 49.087026476000048 ], [ -122.317933537999977, 49.086878154 ], [ -122.319829772999981, 49.086943126000037 ], [ -122.3198299579999, 49.086940800000036 ], [ -122.321335989999938, 49.086992379000066 ], [ -122.321350402999883, 49.08680993500009 ], [ -122.326513186999975, 49.086986590000059 ], [ -122.326513882999947, 49.086977761000128 ], [ -122.331976299999923, 49.087164396000063 ], [ -122.331919047999975, 49.087891161000115 ], [ -122.334618825999939, 49.087983303000051 ], [ -122.334775219999983, 49.085996511000069 ], [ -122.334648346, 49.085992183000087 ], [ -122.33492963099998, 49.082418491000034 ], [ -122.334931396999977, 49.082396051000032 ], [ -122.334994292, 49.082398196000149 ], [ -122.335078150999962, 49.08133265000005 ], [ -122.33529600699994, 49.08134008200004 ], [ -122.335392004999974, 49.080120154000042 ], [ -122.337656086, 49.080197370000043 ], [ -122.33768722500001, 49.079801408000058 ], [ -122.33698491499996, 49.079777462000109 ], [ -122.337001253999986, 49.079569723000162 ], [ -122.33621890199997, 49.079543041000107 ], [ -122.336239547999966, 49.079280599000114 ], [ -122.334996975999928, 49.079238210000049 ], [ -122.335045444999977, 49.078622295000066 ], [ -122.334802505999946, 49.078614006000052 ], [ -122.334826800999949, 49.078305308000047 ], [ -122.332390342999958, 49.078222143000112 ], [ -122.332537584999983, 49.076352346000121 ], [ -122.331314286999927, 49.076310569000036 ], [ -122.331202548999912, 49.07772904500009 ], [ -122.327394012999946, 49.077598891000044 ], [ -122.327389190999952, 49.077660037000093 ], [ -122.327290449999936, 49.07765666100002 ], [ -122.327257408999941, 49.078075639000112 ], [ -122.326106942999957, 49.078036295000103 ], [ -122.326037405999898, 49.078917765000043 ], [ -122.321557533999965, 49.078764444000043 ], [ -122.321532688999923, 49.080588382000052 ], [ -122.321121896999955, 49.080585966000108 ], [ -122.321118218999942, 49.080855811000056 ], [ -122.318653451999964, 49.080841288000066 ], [ -122.318659494999963, 49.080399598000056 ], [ -122.318539459999954, 49.081918024000032 ], [ -122.320161412999965, 49.081973598000062 ], [ -122.320130080999903, 49.082370112000049 ], [ -122.320091367999979, 49.082860009000065 ], [ -122.320225366999978, 49.082864599000089 ], [ -122.319941177999965, 49.086460691000113 ], [ -122.316358154999975, 49.086337896000089 ], [ -122.316352993999928, 49.0835067820001 ], [ -122.316350900999964, 49.082357432000087 ], [ -122.31635070699997, 49.082242984000118 ], [ -122.316351718999925, 49.081969949000054 ], [ -122.316342639999974, 49.079800854000034 ], [ -122.316337375999922, 49.078532298000077 ], [ -122.316334398, 49.077821515000053 ], [ -122.31633296899993, 49.077481794000107 ], [ -122.31625887199999, 49.076012588000047 ], [ -122.31618799899999, 49.074606542000083 ], [ -122.316667460999923, 49.074598862000073 ], [ -122.317365627999919, 49.074587689000055 ], [ -122.318036840999952, 49.074576929000067 ], [ -122.318967101999974, 49.074562027000077 ], [ -122.319199671999939, 49.07455829200007 ], [ -122.32099359599998, 49.074529513000137 ], [ -122.321563755999989, 49.074520353000025 ], [ -122.322502770999932, 49.074496642000049 ], [ -122.324198723, 49.074453699000095 ], [ -122.324404495999929, 49.074448116000028 ], [ -122.326724902999928, 49.074395005000014 ], [ -122.326990508, 49.074396023000048 ], [ -122.327376438999963, 49.07439749100007 ], [ -122.329059324999903, 49.074403916000122 ], [ -122.332215304999963, 49.074415857000126 ], [ -122.333874889999933, 49.074375157000091 ], [ -122.334731541999986, 49.074413420000113 ], [ -122.338459659999913, 49.07447568 ], [ -122.339040104999981, 49.074478371000048 ], [ -122.339697343999887, 49.074481406000118 ], [ -122.341285644999942, 49.074488738000113 ], [ -122.344297787999921, 49.074502611000085 ], [ -122.344530540999983, 49.074503673000038 ], [ -122.344763292999957, 49.074504738000066 ], [ -122.345346781, 49.074507394000051 ], [ -122.349348293999981, 49.074585479000056 ], [ -122.350607410999913, 49.074610018000094 ], [ -122.351538735999924, 49.074628150000066 ], [ -122.352483731999953, 49.074646557000079 ], [ -122.354053404999917, 49.074677100000109 ], [ -122.355056783999927, 49.074728375000085 ], [ -122.357406679999912, 49.074848396000057 ], [ -122.357575194999981, 49.074857 ], [ -122.357923398999958, 49.074938195000115 ], [ -122.35863739, 49.075050814000072 ], [ -122.359633587999951, 49.075125093000061 ], [ -122.359974812999951, 49.075103295000083 ], [ -122.359968215999942, 49.076515796000116 ], [ -122.35996308599999, 49.077613197000069 ], [ -122.3599621769999, 49.077802092000134 ], [ -122.359958703999965, 49.078549915000082 ], [ -122.359965975999955, 49.079412386000094 ], [ -122.359986710999934, 49.081869911000105 ], [ -122.35996619299999, 49.082183797000049 ], [ -122.359942909999916, 49.08230447600004 ], [ -122.359871982999962, 49.082671898000036 ], [ -122.35986030199993, 49.082775147000092 ], [ -122.359830068999884, 49.083042270000064 ], [ -122.360275479999984, 49.086000850000055 ], [ -122.360307610999968, 49.086000886000065 ], [ -122.362950784999938, 49.086003156000082 ], [ -122.363567095999912, 49.086003673000072 ], [ -122.364524576999912, 49.086004472000113 ], [ -122.36447839299997, 49.086596017000019 ], [ -122.363904061999946, 49.086576580000042 ], [ -122.36377865299994, 49.088182529000022 ], [ -122.361111981999954, 49.08809224400003 ], [ -122.361110141999944, 49.088115794000039 ], [ -122.360082633999951, 49.088080988000087 ], [ -122.360081997999927, 49.088089119000102 ], [ -122.359045678999934, 49.088054004000078 ], [ -122.358982195999943, 49.088865842000075 ], [ -122.357005185999967, 49.088798826000065 ], [ -122.356706367999919, 49.088788693 ], [ -122.356676573999948, 49.089169464000122 ], [ -122.35700432299997, 49.089180578000011 ], [ -122.36038769399994, 49.089295243000066 ], [ -122.360106565999914, 49.092891404000035 ], [ -122.357036957999966, 49.092787378 ], [ -122.35464336499993, 49.092706199000069 ], [ -122.354742793999918, 49.091436280000018 ], [ -122.351031518999932, 49.091310307000072 ], [ -122.351089086999977, 49.090575758000021 ], [ -122.350689851999988, 49.090562199000097 ], [ -122.35078322899993, 49.08937080900008 ], [ -122.350971691999945, 49.086966050000079 ], [ -122.35304732799996, 49.08703652800007 ], [ -122.353289665999938, 49.083942197000049 ], [ -122.355206581999951, 49.084007251000067 ], [ -122.355212587999958, 49.083930517000098 ], [ -122.354015784999916, 49.083889906000074 ], [ -122.354111939999953, 49.082661771000026 ], [ -122.351283366999937, 49.082565735000131 ], [ -122.351526969999938, 49.079456438000129 ], [ -122.350133919999962, 49.07940911400005 ], [ -122.350257544999977, 49.077831616000097 ], [ -122.34923659899998, 49.077796921000065 ], [ -122.349093381000017, 49.079623908000059 ], [ -122.345434816999898, 49.079499498000132 ], [ -122.345421341999909, 49.079671209000054 ], [ -122.345750534999951, 49.079682409000014 ], [ -122.345709277999973, 49.080208214000038 ], [ -122.34677553399996, 49.080244482000076 ], [ -122.346493409999965, 49.083840658000064 ], [ -122.344711787999955, 49.083780052000073 ], [ -122.344681093999924, 49.084171076000068 ], [ -122.34600790699993, 49.084216213000076 ], [ -122.345732148999971, 49.087730186000066 ], [ -122.350286876999917, 49.087885010000043 ], [ -122.350170701999957, 49.089367095000092 ], [ -122.350004976999969, 49.091481152000071 ], [ -122.348318374999906, 49.091423844000147 ], [ -122.348312707999966, 49.091496092000042 ], [ -122.342849717999954, 49.091310288000081 ], [ -122.343004499999964, 49.089339686000081 ], [ -122.343131388999922, 49.087724093000098 ], [ -122.340263151999977, 49.087626428000064 ], [ -122.340500595999927, 49.084605231000111 ], [ -122.34029793599997, 49.084598328000062 ], [ -122.340265290999938, 49.085013688000096 ], [ -122.340329262999916, 49.085015867000038 ], [ -122.340112448999903, 49.087774429000085 ], [ -122.342646253999987, 49.087860713000047 ], [ -122.342530150999934, 49.089338787000024 ], [ -122.342363765999977, 49.091456835000052 ], [ -122.342206398999949, 49.09145147800011 ], [ -122.342077144999934, 49.093096637000045 ], [ -122.341856659999962, 49.093089131000092 ], [ -122.341827755999958, 49.09345698100006 ], [ -122.341867926999939, 49.093458348000091 ], [ -122.341803342999953, 49.094280287000046 ], [ -122.342627152, 49.094308330000018 ], [ -122.342524576999949, 49.095613990000039 ], [ -122.34288412399998, 49.095626227000103 ], [ -122.342601606999906, 49.099222307000048 ], [ -122.342257454999967, 49.099210594000056 ], [ -122.342249043, 49.099317667000037 ], [ -122.342730157999938, 49.099334042000109 ], [ -122.342666561999977, 49.100143483000117 ], [ -122.342847503999934, 49.100149640000076 ], [ -122.342742810999965, 49.101482163000128 ], [ -122.346952444999886, 49.101625335000051 ], [ -122.346897030999969, 49.102331420000041 ], [ -122.35061115399999, 49.102457601000012 ], [ -122.350740231999936, 49.100811185000119 ], [ -122.353934748999947, 49.100919610000069 ], [ -122.353969819999932, 49.100471861000109 ], [ -122.354793515999972, 49.10049980400003 ], [ -122.35943392800003, 49.100657098000028 ], [ -122.359340649000032, 49.101849763000054 ], [ -122.359409703000011, 49.101852102000052 ], [ -122.35936057899994, 49.10248019600008 ], [ -122.359427268999937, 49.102482456000111 ], [ -122.359497233999946, 49.101587898000027 ], [ -122.360431733999988, 49.101619549000077 ], [ -122.36043699799994, 49.101552221000055 ], [ -122.365206612999927, 49.101713638000085 ], [ -122.365217302999952, 49.101576736000048 ], [ -122.366847310999958, 49.101631850000089 ], [ -122.366858539999981, 49.101487975000104 ], [ -122.367051668999949, 49.101494503000026 ], [ -122.367169266999952, 49.099987680000019 ], [ -122.366960066999951, 49.09998060800006 ], [ -122.367101937999934, 49.098162743000017 ], [ -122.366905777999975, 49.098156113000108 ], [ -122.367121690999966, 49.095389388000022 ], [ -122.36629402799997, 49.095361403000034 ], [ -122.366486192999943, 49.092899256000145 ], [ -122.36607067199999, 49.092885204000069 ], [ -122.366351338999948, 49.08928902700012 ], [ -122.366352549999959, 49.089289068 ], [ -122.366472019999932, 49.087758126000082 ], [ -122.366653260999925, 49.087764254000042 ], [ -122.366743343999985, 49.086609759000112 ], [ -122.365668645999961, 49.086573409000081 ], [ -122.365682911999926, 49.086390623000064 ], [ -122.364827629999922, 49.086361688000103 ], [ -122.364855493999968, 49.086004746000079 ], [ -122.36497773499994, 49.086004848000101 ], [ -122.366894904000034, 49.086006421000093 ], [ -122.367278575999975, 49.086006743000041 ], [ -122.36804558599998, 49.086007350000088 ], [ -122.368333177999943, 49.08600758000005 ], [ -122.368798789999971, 49.08600794700007 ], [ -122.369993871999952, 49.086008897000106 ], [ -122.37010870899995, 49.087282356000053 ], [ -122.370197298999983, 49.088264887000108 ], [ -122.370092114999949, 49.089490804000057 ], [ -122.370157980999934, 49.092115997000136 ], [ -122.370158801999949, 49.092147781000044 ], [ -122.370180954999938, 49.092629051000067 ], [ -122.370188795, 49.09280009500003 ], [ -122.37026041899999, 49.094357874000146 ], [ -122.370289810999964, 49.094996116000083 ], [ -122.370307597999968, 49.095383142000081 ], [ -122.370336928999947, 49.096021030000024 ], [ -122.370358087999975, 49.096481328000074 ], [ -122.370366109999935, 49.096655498000125 ], [ -122.370960479999923, 49.096655694000091 ], [ -122.370956325999913, 49.097607779000029 ], [ -122.370945840999966, 49.100000654000119 ], [ -122.370930303999941, 49.103543213000123 ], [ -122.370934215999938, 49.105231264000032 ], [ -122.370412395999949, 49.105213644000052 ], [ -122.370401177999952, 49.10535751900003 ], [ -122.370009994999918, 49.10534430900001 ] ], [ [ -122.356052801999951, 49.077206903000032 ], [ -122.356132521999925, 49.076187954000083 ], [ -122.355862818999981, 49.076178803000097 ], [ -122.355783091999982, 49.077197753000114 ], [ -122.356052801999951, 49.077206903000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "0.801159420289855", "sL_AssetLoss": "43125", "sL_BldgLoss": "34550", "sL_StrLoss": "17690", "sL_NStrLoss": "16860", "sL_ContLoss": "8575", "geom_point": "0101000020E6100000FB4DD5FB15975EC0C02D0E1D718C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.359312994999968, 49.093428969000108 ], [ -122.364776299999974, 49.093613936000061 ], [ -122.364495483999974, 49.097210085 ], [ -122.363664812999957, 49.097181980000101 ], [ -122.363537234999981, 49.098815204000068 ], [ -122.36329663399999, 49.098807062000041 ], [ -122.363161114999954, 49.100541708000101 ], [ -122.361807493999947, 49.100495892000048 ], [ -122.361793366999947, 49.100676640000081 ], [ -122.356329246999934, 49.100491524000077 ], [ -122.356343584999976, 49.100308349000088 ], [ -122.356610712999952, 49.096895415000049 ], [ -122.357077447999941, 49.096911238000096 ], [ -122.357964222999968, 49.096941296000125 ], [ -122.357978363999948, 49.096760547 ], [ -122.358218951999959, 49.096768701000023 ], [ -122.35835464499992, 49.095034052000067 ], [ -122.359185273999984, 49.0950621980001 ], [ -122.359312994999968, 49.093428969000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22644167", "BldgCostT": "15616667", "sL_LossRatio": "0.78790357503729", "sL_AssetLoss": "207830", "sL_BldgLoss": "163750", "sL_StrLoss": "84270", "sL_NStrLoss": "79480", "sL_ContLoss": "44080", "geom_point": "0101000020E61000004B34924E2E965EC075801601848D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.33840559199993, 49.108102798000097 ], [ -122.338402012999964, 49.107804045000066 ], [ -122.338406639999917, 49.107610448000131 ], [ -122.338410393999965, 49.107193388000113 ], [ -122.338410953999968, 49.107184392000072 ], [ -122.338416951999989, 49.107085757000057 ], [ -122.338494207999958, 49.105814394000042 ], [ -122.338490580999974, 49.10566601400005 ], [ -122.338472501999959, 49.10492400600009 ], [ -122.338453850999912, 49.104016015000113 ], [ -122.338451787999929, 49.103915497000095 ], [ -122.338625403999984, 49.103915831000045 ], [ -122.338950961999899, 49.10391647600008 ], [ -122.33945784, 49.103917489000047 ], [ -122.339677047999956, 49.103917911000067 ], [ -122.339868855999924, 49.103918265000111 ], [ -122.340391105999942, 49.10391930100009 ], [ -122.341034988999951, 49.10386549600004 ], [ -122.341978871999956, 49.103655200000084 ], [ -122.342268303999944, 49.103632589000036 ], [ -122.342571190999948, 49.103665397000157 ], [ -122.343243394999959, 49.10386229100002 ], [ -122.343756207999888, 49.103924802000066 ], [ -122.344304316, 49.103922704000063 ], [ -122.349047969999958, 49.10389981700007 ], [ -122.349568719999965, 49.103897290000134 ], [ -122.351829890999952, 49.103886313000011 ], [ -122.351948565000015, 49.103846862000069 ], [ -122.352022199999979, 49.10382240200007 ], [ -122.352870134999961, 49.103824188000097 ], [ -122.356806989999924, 49.103721776000093 ], [ -122.357742196999965, 49.103705144000131 ], [ -122.359126037999914, 49.103770037000061 ], [ -122.359536392999985, 49.103916889000082 ], [ -122.359775182999897, 49.103942330000045 ], [ -122.359953730999948, 49.103961335000108 ], [ -122.359898336999947, 49.104504020000064 ], [ -122.359798020999946, 49.106100626000071 ], [ -122.358931597999941, 49.10607127800003 ], [ -122.358980731999935, 49.105443187000084 ], [ -122.353663753999953, 49.10526293900007 ], [ -122.353722110999939, 49.104518033000083 ], [ -122.351693448, 49.104449190000089 ], [ -122.351553459999934, 49.106235071000079 ], [ -122.347618754999985, 49.106101439000028 ], [ -122.347616994999925, 49.106123866000118 ], [ -122.346736415, 49.106093940000065 ], [ -122.346716669999964, 49.106345487000091 ], [ -122.344556236999921, 49.106272034000021 ], [ -122.344526099999925, 49.106655752000087 ], [ -122.34551520899997, 49.106689386 ], [ -122.345297500999934, 49.109461883000073 ], [ -122.344757596999969, 49.109264392000021 ], [ -122.343970099999964, 49.108747389000087 ], [ -122.343120715999973, 49.108741699000042 ], [ -122.339514111999961, 49.107984109000014 ], [ -122.339197706000022, 49.108022503000029 ], [ -122.338881421999972, 49.108061000000113 ], [ -122.33840559199993, 49.108102798000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9031083", "BldgCostT": "6228333", "sL_LossRatio": "0.808696841241625", "sL_AssetLoss": "73130", "sL_BldgLoss": "59140", "sL_StrLoss": "30930", "sL_NStrLoss": "28210", "sL_ContLoss": "13990", "geom_point": "0101000020E6100000A24C593CAB965EC04CDCAEC025914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.352282232, 49.135587824 ], [ -122.35228501499995, 49.135552348000026 ], [ -122.351885920999962, 49.135538812000036 ], [ -122.351925860999941, 49.135029601000113 ], [ -122.352158101, 49.132068392000065 ], [ -122.352940421999932, 49.132312404000082 ], [ -122.355470704999973, 49.132758205000073 ], [ -122.35701472, 49.133152702000103 ], [ -122.358327515999989, 49.13325950200003 ], [ -122.35815918499999, 49.133645493000117 ], [ -122.357896311999951, 49.133859090000065 ], [ -122.357196401999929, 49.133883303000026 ], [ -122.356787116999953, 49.133709601000142 ], [ -122.356430405999944, 49.133698183000014 ], [ -122.356196815999979, 49.133706706000098 ], [ -122.355907008999921, 49.133884694000074 ], [ -122.355863256999967, 49.134231909000057 ], [ -122.355831085999938, 49.134487190000129 ], [ -122.35538008799989, 49.135438495000059 ], [ -122.355376154999988, 49.135692708000079 ], [ -122.352282232, 49.135587824 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109966978", "BldgCostT": "70799857", "sL_LossRatio": "0.719941433164906", "sL_AssetLoss": "1393280", "sL_BldgLoss": "1003080", "sL_StrLoss": "455480", "sL_NStrLoss": "547600", "sL_ContLoss": "390200", "geom_point": "0101000020E6100000AFD479750A965EC0879E7BAC6C914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.34136059199993, 49.143409715000111 ], [ -122.341338899999954, 49.142604915000085 ], [ -122.339514905, 49.142614107000107 ], [ -122.339500681999965, 49.140653091000111 ], [ -122.338390900999968, 49.140645104000022 ], [ -122.338379105999977, 49.140202995000024 ], [ -122.338377914999953, 49.139556687000059 ], [ -122.339487803999987, 49.139563006000088 ], [ -122.34064671299997, 49.13955550100011 ], [ -122.340617008999928, 49.138487310000144 ], [ -122.342246075999967, 49.138478696000078 ], [ -122.342256082999967, 49.138734995000078 ], [ -122.34354, 49.138758906000085 ], [ -122.343406062999918, 49.138510638000056 ], [ -122.343118879999977, 49.137978393000026 ], [ -122.343113317999965, 49.13791059600004 ], [ -122.343154681999948, 49.137819097000097 ], [ -122.343453200999974, 49.137631917000107 ], [ -122.343552601999988, 49.137465801000111 ], [ -122.343527579999972, 49.13630220400006 ], [ -122.343354697999956, 49.136321598000087 ], [ -122.342317661999942, 49.136325829000022 ], [ -122.338288287999916, 49.136342103000032 ], [ -122.338269698, 49.135133586000066 ], [ -122.338259689999973, 49.134754688000086 ], [ -122.338266889999915, 49.1345593 ], [ -122.338257150999965, 49.134270131000093 ], [ -122.338240139999968, 49.133766234000056 ], [ -122.338219607999974, 49.133157903000146 ], [ -122.338217614999934, 49.133073860000096 ], [ -122.338215798999897, 49.132997288000084 ], [ -122.33820731699997, 49.132756384000061 ], [ -122.338203018999934, 49.132398975000079 ], [ -122.338200408999953, 49.132182833000059 ], [ -122.338185907999957, 49.130977374000103 ], [ -122.338183719999932, 49.130793325000084 ], [ -122.338274821999974, 49.130645835000045 ], [ -122.337829725999882, 49.130261505000064 ], [ -122.336126611999958, 49.129730623000086 ], [ -122.335060316999943, 49.129394132000122 ], [ -122.335080591999954, 49.129136790000068 ], [ -122.336420708999981, 49.129182453000055 ], [ -122.338008485999964, 49.129429802000075 ], [ -122.33895499, 49.1294525960001 ], [ -122.339540414999959, 49.129644899000063 ], [ -122.340171913999924, 49.129559391000029 ], [ -122.341324891999932, 49.129537990000109 ], [ -122.341855786999986, 49.129686192000165 ], [ -122.342816120999942, 49.129781603000062 ], [ -122.344919107999971, 49.130324194000174 ], [ -122.347105409999955, 49.130758605000096 ], [ -122.347628336999932, 49.13089759100005 ], [ -122.347531394, 49.132132230000124 ], [ -122.349773129999917, 49.132208339000073 ], [ -122.349618123999917, 49.134183497000073 ], [ -122.350823998999928, 49.134190283000152 ], [ -122.35081695199996, 49.134729973000063 ], [ -122.351639436999932, 49.134734595 ], [ -122.35163508, 49.135068611000115 ], [ -122.351625358999982, 49.135813974000058 ], [ -122.350595378999969, 49.135808185000052 ], [ -122.349980353999953, 49.135804724000138 ], [ -122.349983606999942, 49.135556043000065 ], [ -122.34998388299999, 49.135534880000108 ], [ -122.349931544999961, 49.135534585000116 ], [ -122.349572632999951, 49.135532564000115 ], [ -122.349574532999966, 49.135387436 ], [ -122.349576164999974, 49.135262719000046 ], [ -122.349533442999928, 49.135262478000136 ], [ -122.349525229999927, 49.135367116000097 ], [ -122.349490922999934, 49.135804234000041 ], [ -122.348599963999945, 49.135773991000072 ], [ -122.348395320999941, 49.138380553000026 ], [ -122.347936134999941, 49.138364963000129 ], [ -122.347935702999933, 49.13837046400004 ], [ -122.344190246, 49.13824323000005 ], [ -122.344187395999967, 49.138459097000066 ], [ -122.344205236999954, 49.138470712000128 ], [ -122.34583233499994, 49.138479942000046 ], [ -122.345818129999913, 49.139559320000082 ], [ -122.345629972999959, 49.139558254000114 ], [ -122.345408434999968, 49.139617061000102 ], [ -122.345193934999926, 49.139612361000047 ], [ -122.344935545999988, 49.139554316000044 ], [ -122.34335044, 49.139545312000067 ], [ -122.343354006999974, 49.139275468000072 ], [ -122.342531448000017, 49.139270787000044 ], [ -122.342520738999937, 49.140080319000056 ], [ -122.342109454, 49.1400779760001 ], [ -122.34210588199997, 49.140347821000042 ], [ -122.341694592999914, 49.140345477000047 ], [ -122.341691020999946, 49.140615320000045 ], [ -122.341279728999922, 49.140612974000099 ], [ -122.341265423000024, 49.141692351000053 ], [ -122.341310262999954, 49.141692606000063 ], [ -122.341346163999958, 49.141236276000079 ], [ -122.342513269999969, 49.14127596600013 ], [ -122.342521619999943, 49.141169804000114 ], [ -122.3479904599999, 49.141355610000076 ], [ -122.347974868, 49.141554159000101 ], [ -122.348387981999934, 49.141568183000061 ], [ -122.348469613999924, 49.14052854600002 ], [ -122.352756329999963, 49.140673977000084 ], [ -122.352879944999984, 49.139097700000086 ], [ -122.353249798999983, 49.13909588800005 ], [ -122.353849152999899, 49.139196640000137 ], [ -122.354410592999926, 49.139290992000028 ], [ -122.354273569999975, 49.13951347600009 ], [ -122.354216705999988, 49.13960578400004 ], [ -122.354441905999977, 49.140173989000104 ], [ -122.354698298999949, 49.140381988000101 ], [ -122.354831094999895, 49.140687234000076 ], [ -122.354889818999965, 49.140822226000054 ], [ -122.353605584999983, 49.141330512000145 ], [ -122.352997577999957, 49.141829058000013 ], [ -122.352700513999963, 49.141981247000068 ], [ -122.352393374999906, 49.142051933000076 ], [ -122.351897979999976, 49.142075711000054 ], [ -122.351505550999917, 49.14205751100009 ], [ -122.351030652999938, 49.14203547600011 ], [ -122.35069213599995, 49.142069056000018 ], [ -122.350429337999984, 49.142151181000024 ], [ -122.350025622999965, 49.142439428000039 ], [ -122.349793400999957, 49.142516284000109 ], [ -122.349094039999954, 49.142658392000044 ], [ -122.34790155, 49.143179463000102 ], [ -122.347002835999888, 49.1433986340001 ], [ -122.346234395999915, 49.143495115000086 ], [ -122.345761123999935, 49.143480926000024 ], [ -122.345324890999933, 49.143467840000042 ], [ -122.34459728499999, 49.143393529000072 ], [ -122.343800305999949, 49.14339870900011 ], [ -122.341970606999936, 49.143410605000014 ], [ -122.341867032999957, 49.143410448000132 ], [ -122.34136059199993, 49.143409715000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.752371916508539", "sL_AssetLoss": "10540", "sL_BldgLoss": "7930", "sL_StrLoss": "3400", "sL_NStrLoss": "4530", "sL_ContLoss": "2610", "geom_point": "0101000020E6100000BC69E9C068965EC05C4DC731CC914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.349533792999949, 49.138500855000061 ], [ -122.35076761199997, 49.138507798000056 ], [ -122.350753513000015, 49.139587177000074 ], [ -122.349519666, 49.139580233000089 ], [ -122.349533792999949, 49.138500855000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83945873", "BldgCostT": "56003706", "sL_LossRatio": "0.757502888309734", "sL_AssetLoss": "744380", "sL_BldgLoss": "563870", "sL_StrLoss": "277170", "sL_NStrLoss": "286700", "sL_ContLoss": "180510", "geom_point": "0101000020E61000002F540E98CD955EC08B9ABF74A0914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.338377914999953, 49.139556687000059 ], [ -122.338315995999963, 49.137783412000019 ], [ -122.338313075999977, 49.13763384600005 ], [ -122.338312018999915, 49.137579868000039 ], [ -122.338292584999976, 49.136583801 ], [ -122.338288287999916, 49.136342103000032 ], [ -122.342317661999942, 49.136325829000022 ], [ -122.343354697999956, 49.136321598000087 ], [ -122.343527579999972, 49.13630220400006 ], [ -122.343552601999988, 49.137465801000111 ], [ -122.343453200999974, 49.137631917000107 ], [ -122.343154681999948, 49.137819097000097 ], [ -122.343113317999965, 49.13791059600004 ], [ -122.343118879999977, 49.137978393000026 ], [ -122.343406062999918, 49.138510638000056 ], [ -122.34354, 49.138758906000085 ], [ -122.342256082999967, 49.138734995000078 ], [ -122.342246075999967, 49.138478696000078 ], [ -122.340617008999928, 49.138487310000144 ], [ -122.34064671299997, 49.13955550100011 ], [ -122.339487803999987, 49.139563006000088 ], [ -122.338377914999953, 49.139556687000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139217084", "BldgCostT": "85888334", "sL_LossRatio": "0.746660677346204", "sL_AssetLoss": "783617", "sL_BldgLoss": "585096", "sL_StrLoss": "292066", "sL_NStrLoss": "293030", "sL_ContLoss": "198521", "geom_point": "0101000020E6100000EA8B316E72955EC08DC446514E914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.332705716999953, 49.136946006000173 ], [ -122.332698583999942, 49.136469113000025 ], [ -122.332696480999971, 49.136328024000129 ], [ -122.332693798999955, 49.136148116000101 ], [ -122.332691495999924, 49.13599550900004 ], [ -122.332706345999938, 49.135077454000054 ], [ -122.332695703999946, 49.134688768000125 ], [ -122.332676701999958, 49.133995541000097 ], [ -122.332674551999986, 49.133916304000074 ], [ -122.332500622999987, 49.133775174000078 ], [ -122.332326185999989, 49.133727769000117 ], [ -122.33229772199995, 49.133728780000091 ], [ -122.33178272, 49.133747202000087 ], [ -122.33071383399998, 49.133785440000111 ], [ -122.330231743999903, 49.133767528000064 ], [ -122.330119376999932, 49.133763356000053 ], [ -122.329839115999945, 49.133719537000061 ], [ -122.329709180999885, 49.133663714000157 ], [ -122.329529676999968, 49.133592719000063 ], [ -122.329233701999911, 49.133150022000059 ], [ -122.329137421999988, 49.133006039000122 ], [ -122.329173503, 49.13300628500005 ], [ -122.333538811999958, 49.13303718700012 ], [ -122.335440098999968, 49.133034382000119 ], [ -122.338219607999974, 49.133157903000146 ], [ -122.338240139999968, 49.133766234000056 ], [ -122.338257150999965, 49.134270131000093 ], [ -122.338266889999915, 49.1345593 ], [ -122.338259689999973, 49.134754688000086 ], [ -122.338269698, 49.135133586000066 ], [ -122.338288287999916, 49.136342103000032 ], [ -122.338292584999976, 49.136583801 ], [ -122.338312018999915, 49.137579868000039 ], [ -122.338313075999977, 49.13763384600005 ], [ -122.338315995999963, 49.137783412000019 ], [ -122.338042903999934, 49.137839002000071 ], [ -122.337158502999969, 49.137843197000066 ], [ -122.335538395999933, 49.137841209000051 ], [ -122.335508512999951, 49.137002787000071 ], [ -122.334277697999966, 49.137001390000123 ], [ -122.334267011999927, 49.137710399000106 ], [ -122.334128125999925, 49.13782020100011 ], [ -122.333916119999955, 49.137849894000084 ], [ -122.332707896999949, 49.137839293000091 ], [ -122.33270676699999, 49.137377848000078 ], [ -122.332705716999953, 49.136946006000173 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62817161", "BldgCostT": "40825743", "sL_LossRatio": "0.743915298952825", "sL_AssetLoss": "517774", "sL_BldgLoss": "385180", "sL_StrLoss": "194070", "sL_NStrLoss": "191110", "sL_ContLoss": "132594", "geom_point": "0101000020E61000004F64F72EEF945EC09FF98B8F85914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.324355483999966, 49.137881223000051 ], [ -122.324419933999977, 49.137065721000113 ], [ -122.324265657999916, 49.137060449000039 ], [ -122.324228291999958, 49.137533238000074 ], [ -122.323091509999941, 49.13749438300006 ], [ -122.323733597999961, 49.13686597000008 ], [ -122.324482410999963, 49.135941504000037 ], [ -122.324678161999941, 49.13577151500003 ], [ -122.32595793899999, 49.135013928000049 ], [ -122.325811046999917, 49.134947599000078 ], [ -122.326124973999981, 49.134582457000135 ], [ -122.326152881999917, 49.134509117000064 ], [ -122.326249568999955, 49.134254996000031 ], [ -122.326232895999951, 49.134127102000036 ], [ -122.32622963099999, 49.1341018890001 ], [ -122.326214268999962, 49.133983512000057 ], [ -122.326131042999975, 49.13334324900012 ], [ -122.326055711, 49.132995448000031 ], [ -122.326216273999975, 49.132992821000087 ], [ -122.326682167999934, 49.13299431500009 ], [ -122.329137421999988, 49.133006039000122 ], [ -122.329233701999911, 49.133150022000059 ], [ -122.329529676999968, 49.133592719000063 ], [ -122.329709180999885, 49.133663714000157 ], [ -122.329839115999945, 49.133719537000061 ], [ -122.330119376999932, 49.133763356000053 ], [ -122.330231743999903, 49.133767528000064 ], [ -122.33071383399998, 49.133785440000111 ], [ -122.33178272, 49.133747202000087 ], [ -122.33229772199995, 49.133728780000091 ], [ -122.332326185999989, 49.133727769000117 ], [ -122.332500622999987, 49.133775174000078 ], [ -122.332674551999986, 49.133916304000074 ], [ -122.332676701999958, 49.133995541000097 ], [ -122.332695703999946, 49.134688768000125 ], [ -122.332706345999938, 49.135077454000054 ], [ -122.332691495999924, 49.13599550900004 ], [ -122.332693798999955, 49.136148116000101 ], [ -122.332696480999971, 49.136328024000129 ], [ -122.332698583999942, 49.136469113000025 ], [ -122.332705716999953, 49.136946006000173 ], [ -122.332468478999942, 49.136911799000146 ], [ -122.328910579999942, 49.13692199700003 ], [ -122.328883585999932, 49.137750297000103 ], [ -122.328876107999946, 49.138140400000047 ], [ -122.328897586999929, 49.139380033000087 ], [ -122.328905223999953, 49.139821033000075 ], [ -122.328911881999971, 49.140204904 ], [ -122.328800655999956, 49.140203811000077 ], [ -122.328617391999927, 49.140202001000041 ], [ -122.328130603999938, 49.140204452000042 ], [ -122.327321816000023, 49.140208500000035 ], [ -122.326246286999933, 49.140213908000078 ], [ -122.325182606999931, 49.140208953000126 ], [ -122.324505895999906, 49.140205784000067 ], [ -122.323620056999957, 49.140207546000063 ], [ -122.321398392999953, 49.140211934000035 ], [ -122.320690281999987, 49.14021329400002 ], [ -122.320709907999969, 49.139358564000119 ], [ -122.320884211999939, 49.138625589000121 ], [ -122.320898886999927, 49.138563684000076 ], [ -122.320687263999929, 49.138379768000163 ], [ -122.321322593999952, 49.138285227000033 ], [ -122.322053142999948, 49.138060535000079 ], [ -122.322120030999912, 49.138029758000151 ], [ -122.322526394999969, 49.137842647000177 ], [ -122.322794117999962, 49.137851800000078 ], [ -122.32279600699998, 49.137827920000106 ], [ -122.324355483999966, 49.137881223000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63408917", "BldgCostT": "37186667", "sL_LossRatio": "0.69546048652972", "sL_AssetLoss": "358827", "sL_BldgLoss": "249550", "sL_StrLoss": "112320", "sL_NStrLoss": "137230", "sL_ContLoss": "109277", "geom_point": "0101000020E6100000B1BB48BA89945EC014A529A762914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.316811941999902, 49.138968708000078 ], [ -122.316452918999943, 49.137929310000068 ], [ -122.316458391999973, 49.137714532000061 ], [ -122.316472487999974, 49.137162907000047 ], [ -122.316486500999957, 49.136258405000063 ], [ -122.316428609999932, 49.135086390000026 ], [ -122.316433804, 49.134899106000034 ], [ -122.316470085999967, 49.13447581000009 ], [ -122.319531198999954, 49.134453500000063 ], [ -122.31993551399998, 49.134420400000074 ], [ -122.320625595999942, 49.13430789100002 ], [ -122.321141598999958, 49.134248097000082 ], [ -122.321475698999947, 49.134269401000076 ], [ -122.322556514000013, 49.134503787000057 ], [ -122.322558502999982, 49.133750294000045 ], [ -122.32256914499996, 49.133008798000084 ], [ -122.324690792999931, 49.133000675000055 ], [ -122.325510026999936, 49.132997532000104 ], [ -122.325807574999899, 49.133048272000025 ], [ -122.325962894999961, 49.133129276000048 ], [ -122.326131042999975, 49.13334324900012 ], [ -122.326214268999962, 49.133983512000057 ], [ -122.32622963099999, 49.1341018890001 ], [ -122.326232895999951, 49.134127102000036 ], [ -122.326249568999955, 49.134254996000031 ], [ -122.326152881999917, 49.134509117000064 ], [ -122.326124973999981, 49.134582457000135 ], [ -122.325811046999917, 49.134947599000078 ], [ -122.32595793899999, 49.135013928000049 ], [ -122.324678161999941, 49.13577151500003 ], [ -122.324482410999963, 49.135941504000037 ], [ -122.323733597999961, 49.13686597000008 ], [ -122.323091509999941, 49.13749438300006 ], [ -122.322955146999945, 49.137489722000055 ], [ -122.319171984999983, 49.137360323000053 ], [ -122.319171433999941, 49.137382162000065 ], [ -122.319111815999946, 49.137442578000019 ], [ -122.319103419, 49.138055544000132 ], [ -122.321034222999955, 49.13806691500011 ], [ -122.321053978999913, 49.137817178000049 ], [ -122.322131270999947, 49.137854020000113 ], [ -122.322133232999988, 49.137829204000056 ], [ -122.322329404999948, 49.137835911000117 ], [ -122.322526394999969, 49.137842647000177 ], [ -122.322120030999912, 49.138029758000151 ], [ -122.322053142999948, 49.138060535000079 ], [ -122.321322593999952, 49.138285227000033 ], [ -122.320687263999929, 49.138379768000163 ], [ -122.317353127, 49.138851580000043 ], [ -122.317009460999884, 49.138950682000051 ], [ -122.316841733, 49.139055030000051 ], [ -122.316811941999902, 49.138968708000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226467636", "BldgCostT": "149922079", "sL_LossRatio": "0.772982784869423", "sL_AssetLoss": "1195460", "sL_BldgLoss": "924070", "sL_StrLoss": "420450", "sL_NStrLoss": "503620", "sL_ContLoss": "271390", "geom_point": "0101000020E61000001D7D056986945EC0EE1041CDF7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.31983098399995, 49.141111396000063 ], [ -122.319856617999932, 49.140215411000035 ], [ -122.31906486499993, 49.14021659900007 ], [ -122.318790584999931, 49.14021700900004 ], [ -122.316423598999947, 49.140220495000044 ], [ -122.316442538999979, 49.139929103000078 ], [ -122.316508237999969, 49.139843918000025 ], [ -122.316515420999963, 49.139476396000148 ], [ -122.316599662999963, 49.139295409000091 ], [ -122.316778745999954, 49.139094202000081 ], [ -122.316841733, 49.139055030000051 ], [ -122.317009460999884, 49.138950682000051 ], [ -122.317353127, 49.138851580000043 ], [ -122.320687263999929, 49.138379768000163 ], [ -122.320898886999927, 49.138563684000076 ], [ -122.320884211999939, 49.138625589000121 ], [ -122.320709907999969, 49.139358564000119 ], [ -122.320690281999987, 49.14021329400002 ], [ -122.321398392999953, 49.140211934000035 ], [ -122.323620056999957, 49.140207546000063 ], [ -122.324505895999906, 49.140205784000067 ], [ -122.324492509999985, 49.14110490300002 ], [ -122.324486221999948, 49.14201690200008 ], [ -122.323156430999973, 49.142018729000036 ], [ -122.322676414999961, 49.142019357000017 ], [ -122.321757879999893, 49.142020612000096 ], [ -122.321696109999976, 49.14202070900005 ], [ -122.321159528999914, 49.141993302000103 ], [ -122.319792298999971, 49.141894305000044 ], [ -122.31983098399995, 49.141111396000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172167083", "BldgCostT": "114338333", "sL_LossRatio": "0.837988718471563", "sL_AssetLoss": "721888", "sL_BldgLoss": "604934", "sL_StrLoss": "315141", "sL_NStrLoss": "289793", "sL_ContLoss": "116954", "geom_point": "0101000020E6100000EDBA01B00B945EC051BCA9CCBD914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309508785999981, 49.138944193000022 ], [ -122.30951588799999, 49.138077304000035 ], [ -122.309947787999945, 49.138111 ], [ -122.311427692999956, 49.138134801000071 ], [ -122.31144330699999, 49.137143780000038 ], [ -122.311452989999978, 49.1362436000001 ], [ -122.313371680999964, 49.136248094000081 ], [ -122.313359283999915, 49.137147301000049 ], [ -122.315291494999954, 49.137154901000066 ], [ -122.316472487999974, 49.137162907000047 ], [ -122.316458391999973, 49.137714532000061 ], [ -122.316452918999943, 49.137929310000068 ], [ -122.316811941999902, 49.138968708000078 ], [ -122.316841733, 49.139055030000051 ], [ -122.316778745999954, 49.139094202000081 ], [ -122.316599662999963, 49.139295409000091 ], [ -122.316515420999963, 49.139476396000148 ], [ -122.316508237999969, 49.139843918000025 ], [ -122.316442538999979, 49.139929103000078 ], [ -122.316423598999947, 49.140220495000044 ], [ -122.315257985999963, 49.140207598000131 ], [ -122.314929620999962, 49.140200001000082 ], [ -122.313330394999966, 49.140192903000063 ], [ -122.311414794999962, 49.140181386000044 ], [ -122.309500698999926, 49.14016888599999 ], [ -122.30949996899993, 49.139731394000115 ], [ -122.30949900899995, 49.139153909000051 ], [ -122.309508785999981, 49.138944193000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83723667", "BldgCostT": "52616667", "sL_LossRatio": "0.75408624284431", "sL_AssetLoss": "603366", "sL_BldgLoss": "454990", "sL_StrLoss": "228980", "sL_NStrLoss": "226010", "sL_ContLoss": "148376", "geom_point": "0101000020E61000005E68B64411945EC0A172D9092B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.313023989999948, 49.142760392000049 ], [ -122.313036395999973, 49.14211989299999 ], [ -122.310293900999937, 49.142110027000037 ], [ -122.309481307999988, 49.142107099000029 ], [ -122.309486159999963, 49.141622355000081 ], [ -122.309489204999949, 49.14131655400012 ], [ -122.309500698999926, 49.14016888599999 ], [ -122.311414794999962, 49.140181386000044 ], [ -122.313330394999966, 49.140192903000063 ], [ -122.314929620999962, 49.140200001000082 ], [ -122.315257985999963, 49.140207598000131 ], [ -122.316423598999947, 49.140220495000044 ], [ -122.316399559, 49.140674236000024 ], [ -122.316379538999954, 49.14105215100011 ], [ -122.316287995999957, 49.142780293000094 ], [ -122.31622832199993, 49.143811195000055 ], [ -122.316221607999964, 49.144501413000107 ], [ -122.313060414999939, 49.144474206000041 ], [ -122.31305948499994, 49.144474205000051 ], [ -122.312987924999959, 49.14378670100011 ], [ -122.31298791799999, 49.143786355000032 ], [ -122.313026314999931, 49.143371581000139 ], [ -122.313023989999948, 49.142760392000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113572333", "BldgCostT": "71518333", "sL_LossRatio": "0.750186198886453", "sL_AssetLoss": "767996", "sL_BldgLoss": "576140", "sL_StrLoss": "295370", "sL_NStrLoss": "280770", "sL_ContLoss": "191856", "geom_point": "0101000020E6100000211EE4505A945EC0AB80B54949924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.31906486499993, 49.14021659900007 ], [ -122.319856617999932, 49.140215411000035 ], [ -122.31983098399995, 49.141111396000063 ], [ -122.319792298999971, 49.141894305000044 ], [ -122.319764691999978, 49.142381887000106 ], [ -122.319721310999938, 49.143137610000096 ], [ -122.319705138999907, 49.143464560000048 ], [ -122.319686994999969, 49.143831309000028 ], [ -122.319728794999918, 49.143920409000074 ], [ -122.319913401999941, 49.144314097000027 ], [ -122.319865218999922, 49.145234602000102 ], [ -122.318244896999957, 49.145248488000064 ], [ -122.318079791999963, 49.145342906000025 ], [ -122.318065667000013, 49.145462373000029 ], [ -122.317587990999982, 49.145632605000067 ], [ -122.31615969799995, 49.145610696000062 ], [ -122.316184700999955, 49.145162673000051 ], [ -122.316193213, 49.145009930000072 ], [ -122.316199757999982, 49.144892874000043 ], [ -122.316221607999964, 49.144501413000107 ], [ -122.31622832199993, 49.143811195000055 ], [ -122.316287995999957, 49.142780293000094 ], [ -122.316379538999954, 49.14105215100011 ], [ -122.316399559, 49.140674236000024 ], [ -122.316423598999947, 49.140220495000044 ], [ -122.318790584999931, 49.14021700900004 ], [ -122.31906486499993, 49.14021659900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86587146", "BldgCostT": "51471525", "sL_LossRatio": "0.672316988777832", "sL_AssetLoss": "700845", "sL_BldgLoss": "471190", "sL_StrLoss": "225430", "sL_NStrLoss": "245760", "sL_ContLoss": "229655", "geom_point": "0101000020E610000023C51A700E945EC0235B1B32B7924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.309421500999932, 49.146349702000116 ], [ -122.309452705999931, 49.146076708000138 ], [ -122.310693416999968, 49.1460787050001 ], [ -122.31187199099999, 49.14608489700008 ], [ -122.312427083999978, 49.146086812000092 ], [ -122.312768217999931, 49.146280500000081 ], [ -122.31309581, 49.146299012000021 ], [ -122.313032603999929, 49.145107909000053 ], [ -122.31305948499994, 49.144474205000051 ], [ -122.313060414999939, 49.144474206000041 ], [ -122.316221607999964, 49.144501413000107 ], [ -122.316199757999982, 49.144892874000043 ], [ -122.316193213, 49.145009930000072 ], [ -122.316184700999955, 49.145162673000051 ], [ -122.31615969799995, 49.145610696000062 ], [ -122.316134015999978, 49.145936098000064 ], [ -122.316131878, 49.145980325000089 ], [ -122.316063891999974, 49.147392208000035 ], [ -122.31384310699994, 49.147387306000049 ], [ -122.31236016099993, 49.147384388 ], [ -122.311138383999918, 49.147382009000083 ], [ -122.309086006999962, 49.147380111000068 ], [ -122.309122799999969, 49.14712450200004 ], [ -122.30924667099994, 49.146803230000081 ], [ -122.309421500999932, 49.146349702000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164992166", "BldgCostT": "108896666", "sL_LossRatio": "0.790579780283599", "sL_AssetLoss": "826520", "sL_BldgLoss": "653430", "sL_StrLoss": "332520", "sL_NStrLoss": "320910", "sL_ContLoss": "173090", "geom_point": "0101000020E61000004FB7C391CD935EC06F37C1374D924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312768217999931, 49.146280500000081 ], [ -122.312427083999978, 49.146086812000092 ], [ -122.31187199099999, 49.14608489700008 ], [ -122.310693416999968, 49.1460787050001 ], [ -122.309452705999931, 49.146076708000138 ], [ -122.309455037999953, 49.145598202000087 ], [ -122.309456707, 49.145247342000083 ], [ -122.309457493999972, 49.14508440900002 ], [ -122.309467778999974, 49.143866100000011 ], [ -122.306772572999961, 49.143869132000077 ], [ -122.305905708999958, 49.143870097000089 ], [ -122.30591057, 49.143669934000037 ], [ -122.305924795999985, 49.143082336000091 ], [ -122.305930381999971, 49.142851607000026 ], [ -122.305934005999958, 49.142701906000084 ], [ -122.305928213999906, 49.142176405000086 ], [ -122.305924519999948, 49.141838099000047 ], [ -122.305859076999965, 49.141608699000052 ], [ -122.305620211999951, 49.141250794 ], [ -122.30561981799994, 49.141086185000077 ], [ -122.305618908999961, 49.140715283000098 ], [ -122.305612998999919, 49.139839813000052 ], [ -122.30713799499992, 49.139849801000032 ], [ -122.307922490999914, 49.139880397000134 ], [ -122.308842203999959, 49.140122890000029 ], [ -122.308901129999981, 49.140129590000051 ], [ -122.309240288999959, 49.140168108000125 ], [ -122.309500698999926, 49.14016888599999 ], [ -122.309489204999949, 49.14131655400012 ], [ -122.309486159999963, 49.141622355000081 ], [ -122.309481307999988, 49.142107099000029 ], [ -122.310293900999937, 49.142110027000037 ], [ -122.313036395999973, 49.14211989299999 ], [ -122.313023989999948, 49.142760392000049 ], [ -122.313026314999931, 49.143371581000139 ], [ -122.31298791799999, 49.143786355000032 ], [ -122.312987924999959, 49.14378670100011 ], [ -122.31305948499994, 49.144474205000051 ], [ -122.313032603999929, 49.145107909000053 ], [ -122.31309581, 49.146299012000021 ], [ -122.312768217999931, 49.146280500000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144342667", "BldgCostT": "89286667", "sL_LossRatio": "0.810775318010385", "sL_AssetLoss": "529228", "sL_BldgLoss": "429085", "sL_StrLoss": "252110", "sL_NStrLoss": "176975", "sL_ContLoss": "100143", "geom_point": "0101000020E6100000DFFFF08804945EC060F7464215934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.312490081999968, 49.150478598000106 ], [ -122.31253178499999, 49.149607490000072 ], [ -122.311780551999988, 49.149603252000084 ], [ -122.311684543999959, 49.14960271500005 ], [ -122.31127842699999, 49.149600433000032 ], [ -122.311223559999959, 49.149600109000062 ], [ -122.310390991999981, 49.149595396000045 ], [ -122.309854881999954, 49.149786091000045 ], [ -122.309084402999986, 49.149784906000065 ], [ -122.309087021999957, 49.149182002000025 ], [ -122.309086790999984, 49.148321200000026 ], [ -122.309086006999962, 49.147380111000068 ], [ -122.311138383999918, 49.147382009000083 ], [ -122.31236016099993, 49.147384388 ], [ -122.31384310699994, 49.147387306000049 ], [ -122.316063891999974, 49.147392208000035 ], [ -122.316042791999948, 49.148474689000111 ], [ -122.316037092999977, 49.148767602000106 ], [ -122.316038361999958, 49.148821211000069 ], [ -122.316047096999938, 49.149196096000011 ], [ -122.316046031999974, 49.149766069000037 ], [ -122.316045393999943, 49.150099196000021 ], [ -122.316033818, 49.15100739800009 ], [ -122.314283107000037, 49.151004190000023 ], [ -122.313647700000033, 49.151010401000093 ], [ -122.313283364999904, 49.151010176000085 ], [ -122.311815917999965, 49.15100920000004 ], [ -122.310886295, 49.151008585000099 ], [ -122.30982911599996, 49.151008396000066 ], [ -122.309088697999954, 49.151008296000064 ], [ -122.309090594999972, 49.150483681000026 ], [ -122.311850547999938, 49.150479572000101 ], [ -122.312490081999968, 49.150478598000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151460333", "BldgCostT": "92963333", "sL_LossRatio": "0.745091520950856", "sL_AssetLoss": "977645", "sL_BldgLoss": "728435", "sL_StrLoss": "360325", "sL_NStrLoss": "368110", "sL_ContLoss": "249210", "geom_point": "0101000020E610000061D838CD08945EC0CEF742B74D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.313359283999915, 49.137147301000049 ], [ -122.313371680999964, 49.136248094000081 ], [ -122.311452989999978, 49.1362436000001 ], [ -122.309529517, 49.136230792000092 ], [ -122.30715639899995, 49.136234998000056 ], [ -122.30714668899999, 49.135337805000077 ], [ -122.309539021999953, 49.135333295000066 ], [ -122.309562557, 49.134553170000075 ], [ -122.309566803999985, 49.13441220400005 ], [ -122.309832707999988, 49.134378896000065 ], [ -122.31019889199996, 49.134271598000105 ], [ -122.310820375, 49.133980741000094 ], [ -122.311250682999983, 49.133779354000083 ], [ -122.311266595999911, 49.133771909000139 ], [ -122.311519677999939, 49.133734388000086 ], [ -122.313272377999951, 49.133474440000072 ], [ -122.315091513999974, 49.133204630000058 ], [ -122.315311012999985, 49.133172076000072 ], [ -122.315645208999925, 49.133122499000066 ], [ -122.316508386999899, 49.133074496000035 ], [ -122.316488293999896, 49.133553411000065 ], [ -122.316470085999967, 49.13447581000009 ], [ -122.316433804, 49.134899106000034 ], [ -122.316428609999932, 49.135086390000026 ], [ -122.316486500999957, 49.136258405000063 ], [ -122.316472487999974, 49.137162907000047 ], [ -122.315291494999954, 49.137154901000066 ], [ -122.313359283999915, 49.137147301000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "601584318", "BldgCostT": "332507801", "sL_LossRatio": "0.607527313015066", "sL_AssetLoss": "4612270", "sL_BldgLoss": "2802080", "sL_StrLoss": "969050", "sL_NStrLoss": "1833030", "sL_ContLoss": "1810190", "geom_point": "0101000020E610000004E4C9034B945EC0FEDD19129C904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304643820999928, 49.13623411600004 ], [ -122.304782699999961, 49.135314307000058 ], [ -122.304296809, 49.135315801000075 ], [ -122.304022571999937, 49.135316628000119 ], [ -122.302325785999955, 49.135321802000128 ], [ -122.302332081999921, 49.134983096000013 ], [ -122.302323671999915, 49.134399590000079 ], [ -122.300530502999905, 49.134390554000056 ], [ -122.29993000499999, 49.134387484000065 ], [ -122.299934352999969, 49.134288307000119 ], [ -122.299956881999933, 49.133774608000138 ], [ -122.300097296999951, 49.133549232000099 ], [ -122.300121813999937, 49.133509907000111 ], [ -122.30049980599992, 49.133256112000026 ], [ -122.301521026, 49.13272061 ], [ -122.300454685999966, 49.131898820000089 ], [ -122.300346617999935, 49.131815521000064 ], [ -122.300110693999954, 49.131633713000099 ], [ -122.299921716999947, 49.131484947000033 ], [ -122.299423196999953, 49.131092592000115 ], [ -122.299131364999965, 49.130850417000033 ], [ -122.298716082999974, 49.130505801000012 ], [ -122.29835957799996, 49.130240960000108 ], [ -122.298036785999912, 49.130007361000047 ], [ -122.298715882999971, 49.129953898000053 ], [ -122.299240783999963, 49.129650594000054 ], [ -122.299775908999905, 49.129492492000075 ], [ -122.301793590999978, 49.128388696000094 ], [ -122.302242956999962, 49.127969874000051 ], [ -122.302381636999939, 49.127970712000099 ], [ -122.302383485999911, 49.127838895000082 ], [ -122.302475113999918, 49.127753494000032 ], [ -122.303093393999958, 49.127542703000088 ], [ -122.303605302000037, 49.127176691000074 ], [ -122.304625392999966, 49.126786501000034 ], [ -122.305868802999981, 49.126110008000069 ], [ -122.306999112999961, 49.125721200000079 ], [ -122.308222898999986, 49.125450594000085 ], [ -122.308716722999989, 49.125257312000144 ], [ -122.309558318999947, 49.124927904000081 ], [ -122.310651919999927, 49.124656647000045 ], [ -122.310650182999936, 49.12478199400006 ], [ -122.311472495999936, 49.124786901000036 ], [ -122.311476231999976, 49.124517058000045 ], [ -122.312709694999953, 49.124524407000173 ], [ -122.312705965999953, 49.124794251000097 ], [ -122.313528279999957, 49.12479914300004 ], [ -122.313524554999958, 49.125068987000077 ], [ -122.314758030999911, 49.125076314000047 ], [ -122.314743157999914, 49.126155687000036 ], [ -122.313098485999959, 49.126145913000173 ], [ -122.31310221399994, 49.125876070000118 ], [ -122.31186871599999, 49.125868725000032 ], [ -122.311857513999882, 49.126678254000048 ], [ -122.31473572, 49.126695374000086 ], [ -122.314739439999954, 49.12642553000012 ], [ -122.315150609999961, 49.12642797000008 ], [ -122.31515804199995, 49.125888283000045 ], [ -122.315569207999943, 49.125890722000072 ], [ -122.315576637, 49.125351035000072 ], [ -122.315987798, 49.125353472000072 ], [ -122.315998931999928, 49.124543942000088 ], [ -122.315587778999898, 49.124541505000074 ], [ -122.315598918999953, 49.123731975000076 ], [ -122.31601006599999, 49.123734412000012 ], [ -122.316016223999952, 49.123286836000048 ], [ -122.317341299999967, 49.123085012000047 ], [ -122.320493892999977, 49.123049297000144 ], [ -122.321603375999985, 49.123171793000033 ], [ -122.324755820999883, 49.124144602000079 ], [ -122.325048462999945, 49.124294532000086 ], [ -122.325048017999961, 49.124327334000071 ], [ -122.325113229999943, 49.124327715000064 ], [ -122.327791505999954, 49.125699800000078 ], [ -122.331987011999942, 49.128137028000026 ], [ -122.331986894999915, 49.128145804000035 ], [ -122.332002273999947, 49.128145892000113 ], [ -122.332579700999943, 49.128481294000039 ], [ -122.333575701999933, 49.12883731200003 ], [ -122.333621935999986, 49.128879319000092 ], [ -122.333606321999923, 49.130044218000108 ], [ -122.334931660999985, 49.130051861000098 ], [ -122.334959565999952, 49.129697689000082 ], [ -122.33503619599999, 49.129700300000131 ], [ -122.335060316999943, 49.129394132000122 ], [ -122.336126611999958, 49.129730623000086 ], [ -122.337829725999882, 49.130261505000064 ], [ -122.338274821999974, 49.130645835000045 ], [ -122.338183719999932, 49.130793325000084 ], [ -122.338185907999957, 49.130977374000103 ], [ -122.338200408999953, 49.132182833000059 ], [ -122.338203018999934, 49.132398975000079 ], [ -122.33820731699997, 49.132756384000061 ], [ -122.338215798999897, 49.132997288000084 ], [ -122.338217614999934, 49.133073860000096 ], [ -122.338219607999974, 49.133157903000146 ], [ -122.335440098999968, 49.133034382000119 ], [ -122.333538811999958, 49.13303718700012 ], [ -122.329173503, 49.13300628500005 ], [ -122.329137421999988, 49.133006039000122 ], [ -122.326682167999934, 49.13299431500009 ], [ -122.326216273999975, 49.132992821000087 ], [ -122.326055711, 49.132995448000031 ], [ -122.326131042999975, 49.13334324900012 ], [ -122.325962894999961, 49.133129276000048 ], [ -122.325807574999899, 49.133048272000025 ], [ -122.325510026999936, 49.132997532000104 ], [ -122.324690792999931, 49.133000675000055 ], [ -122.32256914499996, 49.133008798000084 ], [ -122.322558502999982, 49.133750294000045 ], [ -122.322556514000013, 49.134503787000057 ], [ -122.321475698999947, 49.134269401000076 ], [ -122.321141598999958, 49.134248097000082 ], [ -122.320625595999942, 49.13430789100002 ], [ -122.31993551399998, 49.134420400000074 ], [ -122.319531198999954, 49.134453500000063 ], [ -122.316470085999967, 49.13447581000009 ], [ -122.316488293999896, 49.133553411000065 ], [ -122.316508386999899, 49.133074496000035 ], [ -122.315645208999925, 49.133122499000066 ], [ -122.315311012999985, 49.133172076000072 ], [ -122.315091513999974, 49.133204630000058 ], [ -122.313272377999951, 49.133474440000072 ], [ -122.311519677999939, 49.133734388000086 ], [ -122.311266595999911, 49.133771909000139 ], [ -122.311250682999983, 49.133779354000083 ], [ -122.310820375, 49.133980741000094 ], [ -122.31019889199996, 49.134271598000105 ], [ -122.309832707999988, 49.134378896000065 ], [ -122.309566803999985, 49.13441220400005 ], [ -122.309562557, 49.134553170000075 ], [ -122.309539021999953, 49.135333295000066 ], [ -122.30714668899999, 49.135337805000077 ], [ -122.30715639899995, 49.136234998000056 ], [ -122.305393082999956, 49.136223998000055 ], [ -122.305336605999941, 49.136225356000075 ], [ -122.305029861999927, 49.136229228000055 ], [ -122.304643820999928, 49.13623411600004 ] ], [ [ -122.331957888999952, 49.130304556000119 ], [ -122.331965139999937, 49.129764868000088 ], [ -122.331553940999981, 49.129762488000082 ], [ -122.331564825999919, 49.128952956 ], [ -122.330742438999962, 49.128948192000031 ], [ -122.330735175999948, 49.129487879000116 ], [ -122.329501584999917, 49.129480722000032 ], [ -122.32950886199994, 49.128941034000057 ], [ -122.328686477999966, 49.128936255000028 ], [ -122.328690120999937, 49.128666412000022 ], [ -122.328278930999943, 49.12866402 ], [ -122.328264347999962, 49.129743396000045 ], [ -122.327853149999953, 49.129741003000021 ], [ -122.327849500999918, 49.130010845000101 ], [ -122.329083104999967, 49.130018021000097 ], [ -122.329079464999921, 49.130287865000128 ], [ -122.331957888999952, 49.130304556000119 ] ], [ [ -122.326623206999969, 49.129463970000103 ], [ -122.326626861999927, 49.12919412600008 ], [ -122.326215667999989, 49.129191728000102 ], [ -122.326212010999896, 49.129461571000043 ], [ -122.326623206999969, 49.129463970000103 ] ], [ [ -122.308538117999944, 49.128817344000055 ], [ -122.308539425000021, 49.128723319000088 ], [ -122.308531966999965, 49.128817307000091 ], [ -122.308538117999944, 49.128817344000055 ] ], [ [ -122.310441315999981, 49.128558861000144 ], [ -122.310504866999949, 49.127757595000098 ], [ -122.311019899999962, 49.127775264000078 ], [ -122.311027691999982, 49.127213035000075 ], [ -122.310205338999978, 49.127208125 ], [ -122.310212824999937, 49.126668439000078 ], [ -122.308703200999943, 49.126659411000048 ], [ -122.308553372999981, 49.128547570000094 ], [ -122.310441315999981, 49.128558861000144 ] ], [ [ -122.327049011999989, 49.128386992000102 ], [ -122.327045361000017, 49.128656837000015 ], [ -122.32745655, 49.128659232000111 ], [ -122.327460200999894, 49.128389389000063 ], [ -122.327049011999989, 49.128386992000102 ] ], [ [ -122.322573743999953, 49.124852573000055 ], [ -122.32257741899997, 49.124582730000029 ], [ -122.322166263999975, 49.124580315000038 ], [ -122.322162584999958, 49.12485015900009 ], [ -122.322573743999953, 49.124852573000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202554311", "BldgCostT": "121648190", "sL_LossRatio": "0.791478925538566", "sL_AssetLoss": "681346", "sL_BldgLoss": "539271", "sL_StrLoss": "312526", "sL_NStrLoss": "226745", "sL_ContLoss": "142075", "geom_point": "0101000020E6100000D5FABF7672965EC0F2ED6EAF16894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.355056783999927, 49.074728375000085 ], [ -122.354053404999917, 49.074677100000109 ], [ -122.352483731999953, 49.074646557000079 ], [ -122.351538735999924, 49.074628150000066 ], [ -122.350607410999913, 49.074610018000094 ], [ -122.349348293999981, 49.074585479000056 ], [ -122.345346781, 49.074507394000051 ], [ -122.345281403999977, 49.074333592000052 ], [ -122.345224482999939, 49.07418230200004 ], [ -122.345032810999967, 49.073951697000076 ], [ -122.343294660999973, 49.071860390000033 ], [ -122.343202092999945, 49.071749014 ], [ -122.342868800999938, 49.071460907000052 ], [ -122.342350198999952, 49.071127688000047 ], [ -122.342272468999909, 49.071083094000087 ], [ -122.342279525999984, 49.070993239000124 ], [ -122.342200670999915, 49.070992789000101 ], [ -122.342204233999965, 49.070722942000039 ], [ -122.341639086999947, 49.070719720000049 ], [ -122.34062130199996, 49.070135793000063 ], [ -122.340439402999948, 49.070031713000063 ], [ -122.340428709999912, 49.070025603000062 ], [ -122.339788016999961, 49.06966009500011 ], [ -122.339831033999971, 49.069605017000136 ], [ -122.340315953999948, 49.068661802000044 ], [ -122.340305529999924, 49.06768080500008 ], [ -122.340305246999947, 49.067651625000103 ], [ -122.340937330999935, 49.066996116000048 ], [ -122.342370406999919, 49.067062426000092 ], [ -122.342670207999959, 49.067113511000088 ], [ -122.342892188999912, 49.067004464000092 ], [ -122.34280658199998, 49.066755332000035 ], [ -122.342781791999968, 49.066683174000055 ], [ -122.343437287999933, 49.065600143000019 ], [ -122.34344188399993, 49.065607406000055 ], [ -122.343731814999956, 49.066221196000065 ], [ -122.343945493999939, 49.066505604000028 ], [ -122.34398210099998, 49.066554298000078 ], [ -122.344225275999918, 49.066786098000165 ], [ -122.344562057999951, 49.066983162000028 ], [ -122.344591680999926, 49.067000502000035 ], [ -122.344604089999933, 49.067004491000084 ], [ -122.345124304999914, 49.067172787000075 ], [ -122.347489102999972, 49.067473203000119 ], [ -122.348729797999908, 49.067500102000047 ], [ -122.348731569, 49.067520233000067 ], [ -122.348771716999948, 49.067977507000137 ], [ -122.348805095999978, 49.068285109000037 ], [ -122.348805914999943, 49.06848332400007 ], [ -122.348807792999949, 49.068949611000079 ], [ -122.349851214999973, 49.068996689000123 ], [ -122.35228798699994, 49.069077697000132 ], [ -122.354623700999937, 49.069175087000083 ], [ -122.354777908999935, 49.0691451880001 ], [ -122.354912598999974, 49.069033391000048 ], [ -122.354936804999909, 49.068898996000016 ], [ -122.354917903999976, 49.067618299000124 ], [ -122.356122289999959, 49.067653799000013 ], [ -122.357817728999947, 49.06769108400006 ], [ -122.359821011999927, 49.067735071000122 ], [ -122.359830792999944, 49.068100488000049 ], [ -122.359906415999916, 49.072072128000116 ], [ -122.359912469000022, 49.072341303000051 ], [ -122.35995610400002, 49.074275356 ], [ -122.359974812999951, 49.075103295000083 ], [ -122.359633587999951, 49.075125093000061 ], [ -122.35863739, 49.075050814000072 ], [ -122.357923398999958, 49.074938195000115 ], [ -122.357575194999981, 49.074857 ], [ -122.357406679999912, 49.074848396000057 ], [ -122.355056783999927, 49.074728375000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36175917", "BldgCostT": "23741667", "sL_LossRatio": "0.787887809539358", "sL_AssetLoss": "208253", "sL_BldgLoss": "164080", "sL_StrLoss": "97170", "sL_NStrLoss": "66910", "sL_ContLoss": "44173", "geom_point": "0101000020E610000062C0719D6F965EC04CE86834BD884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.348729797999908, 49.067500102000047 ], [ -122.35235471699994, 49.067579105000107 ], [ -122.352318198999981, 49.068377409000043 ], [ -122.35228798699994, 49.069077697000132 ], [ -122.349851214999973, 49.068996689000123 ], [ -122.348807792999949, 49.068949611000079 ], [ -122.348805914999943, 49.06848332400007 ], [ -122.348805095999978, 49.068285109000037 ], [ -122.348771716999948, 49.067977507000137 ], [ -122.348731569, 49.067520233000067 ], [ -122.348729797999908, 49.067500102000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29592250", "BldgCostT": "19465000", "sL_LossRatio": "0.804458814390897", "sL_AssetLoss": "150623", "sL_BldgLoss": "121170", "sL_StrLoss": "73100", "sL_NStrLoss": "48070", "sL_ContLoss": "29453", "geom_point": "0101000020E6100000EFF541D8A1965EC049C5EF3BC0884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.35228798699994, 49.069077697000132 ], [ -122.352318198999981, 49.068377409000043 ], [ -122.35235471699994, 49.067579105000107 ], [ -122.354917903999976, 49.067618299000124 ], [ -122.354936804999909, 49.068898996000016 ], [ -122.354912598999974, 49.069033391000048 ], [ -122.354777908999935, 49.0691451880001 ], [ -122.354623700999937, 49.069175087000083 ], [ -122.35228798699994, 49.069077697000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181139417", "BldgCostT": "120091667", "sL_LossRatio": "0.80595564599888", "sL_AssetLoss": "568066", "sL_BldgLoss": "457836", "sL_StrLoss": "265690", "sL_NStrLoss": "192146", "sL_ContLoss": "110230", "geom_point": "0101000020E61000004F6E04779A965EC001339DA57D884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.357535411999919, 49.064757597000067 ], [ -122.357748800999943, 49.064759404 ], [ -122.357722371999969, 49.066130494000099 ], [ -122.357674007999918, 49.066311894000066 ], [ -122.357561599999926, 49.06640091500006 ], [ -122.357383097999943, 49.066443608 ], [ -122.357108388999947, 49.066441020000148 ], [ -122.356172707999974, 49.066432197000061 ], [ -122.35615179499996, 49.06696835800004 ], [ -122.356145490999936, 49.067129889000093 ], [ -122.356124794000024, 49.067587200000062 ], [ -122.356122289999959, 49.067653799000013 ], [ -122.354917903999976, 49.067618299000124 ], [ -122.35235471699994, 49.067579105000107 ], [ -122.348729797999908, 49.067500102000047 ], [ -122.348726821999961, 49.06745130700012 ], [ -122.348724998999927, 49.066862589000024 ], [ -122.348827295999939, 49.066482889000014 ], [ -122.348928504999932, 49.066134810000086 ], [ -122.349136395999935, 49.065892206000065 ], [ -122.349244485999961, 49.06579587300012 ], [ -122.349379107999965, 49.065675913000092 ], [ -122.349522606, 49.065591641000083 ], [ -122.349770783999944, 49.065445908000122 ], [ -122.349984584, 49.065372903000053 ], [ -122.35012119299995, 49.065323505000052 ], [ -122.350746799999982, 49.065199596000085 ], [ -122.351096795999965, 49.065203396000115 ], [ -122.353046787999958, 49.065224495000059 ], [ -122.354408821999982, 49.065239199000096 ], [ -122.355227991, 49.06523010300004 ], [ -122.355941497999964, 49.065153288000033 ], [ -122.356514387999965, 49.065003291000082 ], [ -122.357146107999966, 49.064835397000067 ], [ -122.357159548999931, 49.064832718000041 ], [ -122.357535411999919, 49.064757597000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45078083", "BldgCostT": "27668333", "sL_LossRatio": "0.78867627785059", "sL_AssetLoss": "190750", "sL_BldgLoss": "150440", "sL_StrLoss": "89730", "sL_NStrLoss": "60710", "sL_ContLoss": "40310", "geom_point": "0101000020E61000005EC6A8C6E6965EC046536E8979884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.357748800999943, 49.064759404 ], [ -122.358780197999948, 49.06476551 ], [ -122.358732221999986, 49.066974298000147 ], [ -122.358676297999935, 49.067058885000058 ], [ -122.358579496999965, 49.067123286000047 ], [ -122.358412591999951, 49.067157297000094 ], [ -122.357126479000016, 49.067141750000097 ], [ -122.356496895999925, 49.067134147000033 ], [ -122.356145490999936, 49.067129889000093 ], [ -122.35615179499996, 49.06696835800004 ], [ -122.356172707999974, 49.066432197000061 ], [ -122.357108388999947, 49.066441020000148 ], [ -122.357383097999943, 49.066443608 ], [ -122.357561599999926, 49.06640091500006 ], [ -122.357674007999918, 49.066311894000066 ], [ -122.357722371999969, 49.066130494000099 ], [ -122.357748800999943, 49.064759404 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23611000", "BldgCostT": "15340000", "sL_LossRatio": "0.809905163329821", "sL_AssetLoss": "94900", "sL_BldgLoss": "76860", "sL_StrLoss": "47570", "sL_NStrLoss": "29290", "sL_ContLoss": "18040", "geom_point": "0101000020E6100000AFEC82C1F5965EC055AA972186884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.356145490999936, 49.067129889000093 ], [ -122.356496895999925, 49.067134147000033 ], [ -122.357126479000016, 49.067141750000097 ], [ -122.358412591999951, 49.067157297000094 ], [ -122.358579496999965, 49.067123286000047 ], [ -122.358676297999935, 49.067058885000058 ], [ -122.358732221999986, 49.066974298000147 ], [ -122.358780197999948, 49.06476551 ], [ -122.35990289199998, 49.064778416000102 ], [ -122.359823655999946, 49.067591440000108 ], [ -122.359821883999984, 49.067653996000068 ], [ -122.359821011999927, 49.067735071000122 ], [ -122.357817728999947, 49.06769108400006 ], [ -122.356122289999959, 49.067653799000013 ], [ -122.356124794000024, 49.067587200000062 ], [ -122.356145490999936, 49.067129889000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64023083", "BldgCostT": "43418333", "sL_LossRatio": "0.832233774308314", "sL_AssetLoss": "318461", "sL_BldgLoss": "265034", "sL_StrLoss": "167214", "sL_NStrLoss": "97820", "sL_ContLoss": "53427", "geom_point": "0101000020E61000007CB89170E9965EC00B58C413EE874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.355439991999972, 49.060368502000109 ], [ -122.356502110999912, 49.060375107000027 ], [ -122.357022246999946, 49.060378357000054 ], [ -122.357720313999948, 49.060382684000089 ], [ -122.358377344999894, 49.060386776000037 ], [ -122.359198575999955, 49.060391853000077 ], [ -122.360028922999931, 49.060397025000022 ], [ -122.36001333199998, 49.060791922000057 ], [ -122.359941080999945, 49.062625215000018 ], [ -122.359928151999952, 49.063355025000135 ], [ -122.359923209, 49.063633856000067 ], [ -122.359912358999949, 49.064245513000031 ], [ -122.35990289199998, 49.064778416000102 ], [ -122.358780197999948, 49.06476551 ], [ -122.358823101999974, 49.063533800000116 ], [ -122.358832172999939, 49.063312993000103 ], [ -122.358842811000017, 49.063053998000015 ], [ -122.358771904999912, 49.062910993000095 ], [ -122.358652652999922, 49.062850447000116 ], [ -122.358611042999925, 49.062829327000053 ], [ -122.358610016999961, 49.062828809000109 ], [ -122.358592385999955, 49.062828807000123 ], [ -122.357974753999983, 49.062828883000059 ], [ -122.357182388999931, 49.062828980000063 ], [ -122.356253299999935, 49.062829112000067 ], [ -122.356154805999935, 49.062815807000113 ], [ -122.356056993999971, 49.062802588000082 ], [ -122.355856592999913, 49.062739898000132 ], [ -122.355654996999988, 49.062605998000095 ], [ -122.355517686, 49.062436411000064 ], [ -122.355432797999953, 49.062209012000054 ], [ -122.355433429999906, 49.062070678000083 ], [ -122.355438112999963, 49.061039102000045 ], [ -122.355439991999972, 49.060368502000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93375500", "BldgCostT": "61070000", "sL_LossRatio": "0.778198040927165", "sL_AssetLoss": "463995", "sL_BldgLoss": "361080", "sL_StrLoss": "213920", "sL_NStrLoss": "147160", "sL_ContLoss": "102915", "geom_point": "0101000020E6100000DE2BB13ACB965EC0CE8A8FEC1D884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.354383002999953, 49.060356890000087 ], [ -122.355173919999913, 49.06036557900007 ], [ -122.355256021999935, 49.060366468000105 ], [ -122.355439991999972, 49.060368502000109 ], [ -122.355438112999963, 49.061039102000045 ], [ -122.355433429999906, 49.062070678000083 ], [ -122.355432797999953, 49.062209012000054 ], [ -122.355517686, 49.062436411000064 ], [ -122.355654996999988, 49.062605998000095 ], [ -122.355856592999913, 49.062739898000132 ], [ -122.356056993999971, 49.062802588000082 ], [ -122.356154805999935, 49.062815807000113 ], [ -122.356253299999935, 49.062829112000067 ], [ -122.357182388999931, 49.062828980000063 ], [ -122.357974753999983, 49.062828883000059 ], [ -122.358592385999955, 49.062828807000123 ], [ -122.358610016999961, 49.062828809000109 ], [ -122.358611042999925, 49.062829327000053 ], [ -122.358652652999922, 49.062850447000116 ], [ -122.358771904999912, 49.062910993000095 ], [ -122.358842811000017, 49.063053998000015 ], [ -122.358832172999939, 49.063312993000103 ], [ -122.358823101999974, 49.063533800000116 ], [ -122.358780197999948, 49.06476551 ], [ -122.357748800999943, 49.064759404 ], [ -122.357535411999919, 49.064757597000067 ], [ -122.357159548999931, 49.064832718000041 ], [ -122.357146107999966, 49.064835397000067 ], [ -122.356514387999965, 49.065003291000082 ], [ -122.355941497999964, 49.065153288000033 ], [ -122.355227991, 49.06523010300004 ], [ -122.354408821999982, 49.065239199000096 ], [ -122.354408173999957, 49.06482637200002 ], [ -122.354407524999957, 49.06438189400005 ], [ -122.354411714, 49.062928898000038 ], [ -122.354383002999953, 49.060356890000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218717999", "BldgCostT": "142964999", "sL_LossRatio": "0.784076236556088", "sL_AssetLoss": "1127648", "sL_BldgLoss": "884162", "sL_StrLoss": "531580", "sL_NStrLoss": "352582", "sL_ContLoss": "243486", "geom_point": "0101000020E610000077AB004258965EC042B3CAD021884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.344225275999918, 49.066786098000165 ], [ -122.34398210099998, 49.066554298000078 ], [ -122.343945493999939, 49.066505604000028 ], [ -122.343731814999956, 49.066221196000065 ], [ -122.34344188399993, 49.065607406000055 ], [ -122.343437287999933, 49.065600143000019 ], [ -122.343440834999967, 49.065409425000034 ], [ -122.343451788999928, 49.064815651000046 ], [ -122.343457207999961, 49.064523117000071 ], [ -122.343518145999937, 49.064523464000068 ], [ -122.343514591000016, 49.064793311000123 ], [ -122.343925255, 49.064795647000039 ], [ -122.343921702999964, 49.065065495000127 ], [ -122.344332368999972, 49.065067828000075 ], [ -122.344328817999923, 49.06533767600007 ], [ -122.344739486999984, 49.065340008000071 ], [ -122.344743034999965, 49.065070160000069 ], [ -122.344332368999972, 49.065067828000075 ], [ -122.344346570000013, 49.063988437000077 ], [ -122.344757226999988, 49.063990768000082 ], [ -122.344760774999926, 49.063720921000098 ], [ -122.344350119999959, 49.063718589000075 ], [ -122.344367869999985, 49.062369350000083 ], [ -122.346010447999959, 49.062378669000061 ], [ -122.346006906999961, 49.062648518000074 ], [ -122.347238845999982, 49.062655491000093 ], [ -122.347228242999947, 49.0634650350001 ], [ -122.347638896999982, 49.063467357000015 ], [ -122.34763183299999, 49.064007053000083 ], [ -122.347827157999959, 49.064008157000011 ], [ -122.347869449999905, 49.063468660000083 ], [ -122.347638896999982, 49.063467357000015 ], [ -122.347649492999963, 49.062657813000037 ], [ -122.34793288499999, 49.062659414000102 ], [ -122.347966044999964, 49.062236399000071 ], [ -122.347951396999974, 49.062235901000136 ], [ -122.347985077999965, 49.061806213000061 ], [ -122.345931552999929, 49.061736348000032 ], [ -122.346061998, 49.06007307400008 ], [ -122.349209795999911, 49.06027400100006 ], [ -122.349562905999946, 49.060278116000113 ], [ -122.350999765999958, 49.060294801000047 ], [ -122.351145791999969, 49.060296508000043 ], [ -122.353778251999955, 49.060329384000092 ], [ -122.354124790999919, 49.06033370100004 ], [ -122.354383002999953, 49.060356890000087 ], [ -122.354411714, 49.062928898000038 ], [ -122.354407524999957, 49.06438189400005 ], [ -122.354408173999957, 49.06482637200002 ], [ -122.354408821999982, 49.065239199000096 ], [ -122.353046787999958, 49.065224495000059 ], [ -122.351096795999965, 49.065203396000115 ], [ -122.350746799999982, 49.065199596000085 ], [ -122.35012119299995, 49.065323505000052 ], [ -122.349984584, 49.065372903000053 ], [ -122.349770783999944, 49.065445908000122 ], [ -122.349522606, 49.065591641000083 ], [ -122.349379107999965, 49.065675913000092 ], [ -122.349244485999961, 49.06579587300012 ], [ -122.349136395999935, 49.065892206000065 ], [ -122.348928504999932, 49.066134810000086 ], [ -122.348827295999939, 49.066482889000014 ], [ -122.348724998999927, 49.066862589000024 ], [ -122.348726821999961, 49.06745130700012 ], [ -122.348729797999908, 49.067500102000047 ], [ -122.347489102999972, 49.067473203000119 ], [ -122.345124304999914, 49.067172787000075 ], [ -122.344604089999933, 49.067004491000084 ], [ -122.344591680999926, 49.067000502000035 ], [ -122.344562057999951, 49.066983162000028 ], [ -122.344225275999918, 49.066786098000165 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.788571428571429", "sL_AssetLoss": "5250", "sL_BldgLoss": "4140", "sL_StrLoss": "2330", "sL_NStrLoss": "1810", "sL_ContLoss": "1110", "geom_point": "0101000020E6100000A3FD382F08965EC0CDFBE69BC0874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.344246653999974, 49.059957156000024 ], [ -122.34439947299991, 49.059966916000072 ], [ -122.34438561899999, 49.061020110000086 ], [ -122.344003864999934, 49.061017942000028 ], [ -122.344246653999974, 49.059957156000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.847457627118644", "sL_AssetLoss": "3127", "sL_BldgLoss": "2650", "sL_StrLoss": "1730", "sL_NStrLoss": "920", "sL_ContLoss": "477", "geom_point": "0101000020E610000067EB85A7FC955EC00BC2AAB424884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.343590122999927, 49.062878674000039 ], [ -122.343607034999977, 49.064000861000117 ], [ -122.34349873499994, 49.064082962000043 ], [ -122.343465343999924, 49.064083357000122 ], [ -122.343469418999959, 49.063863001000129 ], [ -122.343519717999953, 49.063266658000103 ], [ -122.343590122999927, 49.062878674000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196859083", "BldgCostT": "124063333", "sL_LossRatio": "0.801683135300209", "sL_AssetLoss": "797678", "sL_BldgLoss": "639485", "sL_StrLoss": "387085", "sL_NStrLoss": "252400", "sL_ContLoss": "158193", "geom_point": "0101000020E6100000366EB5775B975EC00C24720B27884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.359823655999946, 49.067591440000108 ], [ -122.35990289199998, 49.064778416000102 ], [ -122.359912358999949, 49.064245513000031 ], [ -122.359923209, 49.063633856000067 ], [ -122.359928151999952, 49.063355025000135 ], [ -122.359941080999945, 49.062625215000018 ], [ -122.36001333199998, 49.060791922000057 ], [ -122.360028922999931, 49.060397025000022 ], [ -122.36077270499996, 49.060401179000046 ], [ -122.360986406999984, 49.060402399000118 ], [ -122.363318705999973, 49.060414797000078 ], [ -122.364167256999977, 49.060419042000071 ], [ -122.364304149999967, 49.060419710000126 ], [ -122.36450472699994, 49.060420657000087 ], [ -122.365558246999953, 49.060422976000055 ], [ -122.365690280999928, 49.060449979000069 ], [ -122.365784584999972, 49.060381057000029 ], [ -122.365807199999907, 49.060325251000044 ], [ -122.365916309999974, 49.060382157000056 ], [ -122.366017024999948, 49.060423828000097 ], [ -122.366061907999963, 49.060437774000036 ], [ -122.366232241999967, 49.060450849000077 ], [ -122.367379391999975, 49.060455505000064 ], [ -122.367804556999914, 49.060457206000116 ], [ -122.369006394999971, 49.060445904000076 ], [ -122.37050240399995, 49.060459498000093 ], [ -122.370510971999948, 49.060642030000039 ], [ -122.370518992999962, 49.060812729000133 ], [ -122.370552834999941, 49.061533566000065 ], [ -122.370566389999937, 49.061821421000104 ], [ -122.370582429999928, 49.062162821000072 ], [ -122.37067118199991, 49.06405194300001 ], [ -122.370754118999969, 49.065817038000034 ], [ -122.370755213999985, 49.065839808000121 ], [ -122.370759318999916, 49.065910267000085 ], [ -122.370339857999923, 49.06590889900005 ], [ -122.369367951999919, 49.06590566300013 ], [ -122.368542694999988, 49.065902908000041 ], [ -122.368382015999927, 49.065909585000057 ], [ -122.367979785999964, 49.065926302000058 ], [ -122.367409801999926, 49.066004306000096 ], [ -122.366941729999951, 49.066118737000025 ], [ -122.366826611999912, 49.066146890000034 ], [ -122.36622761199996, 49.06640429600008 ], [ -122.365123809999901, 49.067097104000013 ], [ -122.364531677999963, 49.067353797000109 ], [ -122.364478008, 49.06736886200018 ], [ -122.363861411999892, 49.06754200500005 ], [ -122.363692645999933, 49.067567655000055 ], [ -122.36328928799999, 49.067629018000119 ], [ -122.362647177999946, 49.067666802000062 ], [ -122.359834701999944, 49.067734768000022 ], [ -122.359821011999927, 49.067735071000122 ], [ -122.359821883999984, 49.067653996000068 ], [ -122.359823655999946, 49.067591440000108 ] ], [ [ -122.36527314599999, 49.063367842000076 ], [ -122.36527876199996, 49.063295847000113 ], [ -122.364889828999935, 49.063293707000085 ], [ -122.36489326799996, 49.063023858000115 ], [ -122.364482615999961, 49.063021598000041 ], [ -122.364486056999937, 49.062751749000057 ], [ -122.363369568999971, 49.062745596000134 ], [ -122.3631636329999, 49.06538373800003 ], [ -122.36322037, 49.065385660000047 ], [ -122.363223078999908, 49.065173597000097 ], [ -122.364630213999973, 49.065181352000138 ], [ -122.364773043999932, 49.063350913000143 ], [ -122.36527314599999, 49.063367842000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223195583", "BldgCostT": "137048333", "sL_LossRatio": "0.694853019889952", "sL_AssetLoss": "1868280", "sL_BldgLoss": "1298180", "sL_StrLoss": "625190", "sL_NStrLoss": "672990", "sL_ContLoss": "570100", "geom_point": "0101000020E6100000488040EBCA975EC0031D84EB17894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.35995610400002, 49.074275356 ], [ -122.359912469000022, 49.072341303000051 ], [ -122.359906415999916, 49.072072128000116 ], [ -122.359830792999944, 49.068100488000049 ], [ -122.359821011999927, 49.067735071000122 ], [ -122.359834701999944, 49.067734768000022 ], [ -122.362647177999946, 49.067666802000062 ], [ -122.36328928799999, 49.067629018000119 ], [ -122.363692645999933, 49.067567655000055 ], [ -122.363861411999892, 49.06754200500005 ], [ -122.364478008, 49.06736886200018 ], [ -122.364531677999963, 49.067353797000109 ], [ -122.365123809999901, 49.067097104000013 ], [ -122.36622761199996, 49.06640429600008 ], [ -122.366826611999912, 49.066146890000034 ], [ -122.366941729999951, 49.066118737000025 ], [ -122.367409801999926, 49.066004306000096 ], [ -122.367979785999964, 49.065926302000058 ], [ -122.368382015999927, 49.065909585000057 ], [ -122.368542694999988, 49.065902908000041 ], [ -122.369367951999919, 49.06590566300013 ], [ -122.370339857999923, 49.06590889900005 ], [ -122.370759318999916, 49.065910267000085 ], [ -122.370759887999952, 49.065932985000053 ], [ -122.370766332999978, 49.066175046000069 ], [ -122.370789606999921, 49.067049785000037 ], [ -122.370832006999976, 49.067296390000045 ], [ -122.370979796999976, 49.067560191000098 ], [ -122.371138873999925, 49.067698510000049 ], [ -122.371490015999882, 49.068003788000063 ], [ -122.371516540999892, 49.06806960100004 ], [ -122.37162191099999, 49.068330984000099 ], [ -122.371657025999923, 49.06846673900003 ], [ -122.37179893899993, 49.069014824000099 ], [ -122.371826003999928, 49.06911941200007 ], [ -122.373420481999943, 49.069144574000049 ], [ -122.373598615999953, 49.069147395000108 ], [ -122.37363048399996, 49.069147887000057 ], [ -122.375592206999954, 49.06914289500007 ], [ -122.376113381999986, 49.069128895000063 ], [ -122.376536783999953, 49.069053095000051 ], [ -122.376786264999964, 49.068926403000056 ], [ -122.376903001999921, 49.068867094000026 ], [ -122.377144689999938, 49.068663403000059 ], [ -122.377318289999977, 49.068419604000098 ], [ -122.377394374999966, 49.068179705000013 ], [ -122.37739455699996, 49.067527042000066 ], [ -122.377302038999972, 49.066512060000072 ], [ -122.377298545999963, 49.066473626000082 ], [ -122.377237767999972, 49.066234482000056 ], [ -122.377125111999931, 49.065799788 ], [ -122.377103213999945, 49.065729641000097 ], [ -122.378727247999933, 49.065559963000084 ], [ -122.379667253999969, 49.065561465000066 ], [ -122.380160024999967, 49.065562237000101 ], [ -122.381224629999977, 49.065563913000048 ], [ -122.381220973999945, 49.065663857000082 ], [ -122.381217004999954, 49.066421620000064 ], [ -122.381210531999926, 49.067654044000079 ], [ -122.381208739999948, 49.067995812000078 ], [ -122.381208105, 49.06811989600007 ], [ -122.381207753999959, 49.068184702000082 ], [ -122.381202463999969, 49.069147149000074 ], [ -122.381199309999943, 49.06971391700003 ], [ -122.381197103999966, 49.070118693000012 ], [ -122.381194921999935, 49.07051447900006 ], [ -122.381192714999912, 49.070919254000074 ], [ -122.381188793999968, 49.071627596000091 ], [ -122.38115134899999, 49.074580327000042 ], [ -122.381149763999986, 49.074706274000022 ], [ -122.381147399999989, 49.074891207000078 ], [ -122.380354746999956, 49.074891919000088 ], [ -122.379373648999973, 49.074892808000122 ], [ -122.377976821999965, 49.074894060000119 ], [ -122.377470273999975, 49.074894502000063 ], [ -122.377073194999937, 49.074894868000065 ], [ -122.375416139999942, 49.0748963180001 ], [ -122.373512780999945, 49.07489795500004 ], [ -122.370733507999915, 49.074900279000062 ], [ -122.368145198999969, 49.074902369 ], [ -122.364010755999942, 49.074905580000078 ], [ -122.361457509999937, 49.074907506000123 ], [ -122.359974812999951, 49.075103295000083 ], [ -122.35995610400002, 49.074275356 ] ], [ [ -122.370564206999973, 49.071417804000085 ], [ -122.370659990999982, 49.070188463000079 ], [ -122.369052982999946, 49.070134143000168 ], [ -122.369140511999944, 49.069011194000041 ], [ -122.368633037999984, 49.068994035000081 ], [ -122.368739155999975, 49.067632708000097 ], [ -122.367709623999971, 49.067627072000093 ], [ -122.367713049999907, 49.067357223000108 ], [ -122.365659613999981, 49.067345956000018 ], [ -122.36565617799999, 49.067615806000063 ], [ -122.365245488999946, 49.067613548000097 ], [ -122.365242051999942, 49.067883397000081 ], [ -122.364420668999955, 49.067878876000087 ], [ -122.364406899999892, 49.068958271000064 ], [ -122.363996200999964, 49.06895600800005 ], [ -122.363992755999917, 49.06922585700007 ], [ -122.36326463099999, 49.06922184300003 ], [ -122.362991960000016, 49.072714194000106 ], [ -122.362039109999941, 49.072681922000065 ], [ -122.362019204999939, 49.072936764000083 ], [ -122.362116321999906, 49.072940053000096 ], [ -122.36202662299999, 49.074088514000039 ], [ -122.362983067, 49.074120906000125 ], [ -122.363048562999921, 49.073282100000036 ], [ -122.364740779999948, 49.073339390000115 ], [ -122.364745794000015, 49.073275141000082 ], [ -122.365809296999885, 49.073311133000047 ], [ -122.365863885999943, 49.072611466000126 ], [ -122.367275520999954, 49.072659223000116 ], [ -122.367295939999977, 49.072397400000142 ], [ -122.369871658999955, 49.072484490000065 ], [ -122.369956388999952, 49.071397262000048 ], [ -122.370564206999973, 49.071417804000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116531168", "BldgCostT": "77796668", "sL_LossRatio": "0.750755010168618", "sL_AssetLoss": "900319", "sL_BldgLoss": "675919", "sL_StrLoss": "366960", "sL_NStrLoss": "308959", "sL_ContLoss": "224400", "geom_point": "0101000020E61000004BAE41E3F2975EC0C6CDC201A1884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.370759318999916, 49.065910267000085 ], [ -122.370755213999985, 49.065839808000121 ], [ -122.372134118999938, 49.065845638000077 ], [ -122.372676114999976, 49.065847932000096 ], [ -122.373119757999987, 49.065850438000091 ], [ -122.373189140999926, 49.065850824000023 ], [ -122.374803556999964, 49.065852915000086 ], [ -122.375761911000026, 49.065854125000044 ], [ -122.375964404999962, 49.065854373000015 ], [ -122.377103213999945, 49.065729641000097 ], [ -122.377125111999931, 49.065799788 ], [ -122.377237767999972, 49.066234482000056 ], [ -122.377298545999963, 49.066473626000082 ], [ -122.377302038999972, 49.066512060000072 ], [ -122.37739455699996, 49.067527042000066 ], [ -122.377394374999966, 49.068179705000013 ], [ -122.377318289999977, 49.068419604000098 ], [ -122.377144689999938, 49.068663403000059 ], [ -122.376903001999921, 49.068867094000026 ], [ -122.376786264999964, 49.068926403000056 ], [ -122.376536783999953, 49.069053095000051 ], [ -122.376113381999986, 49.069128895000063 ], [ -122.375592206999954, 49.06914289500007 ], [ -122.37363048399996, 49.069147887000057 ], [ -122.373598615999953, 49.069147395000108 ], [ -122.373420481999943, 49.069144574000049 ], [ -122.371826003999928, 49.06911941200007 ], [ -122.37179893899993, 49.069014824000099 ], [ -122.371657025999923, 49.06846673900003 ], [ -122.37162191099999, 49.068330984000099 ], [ -122.371516540999892, 49.06806960100004 ], [ -122.371490015999882, 49.068003788000063 ], [ -122.371138873999925, 49.067698510000049 ], [ -122.370979796999976, 49.067560191000098 ], [ -122.370832006999976, 49.067296390000045 ], [ -122.370789606999921, 49.067049785000037 ], [ -122.370766332999978, 49.066175046000069 ], [ -122.370759887999952, 49.065932985000053 ], [ -122.370759318999916, 49.065910267000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167830001", "BldgCostT": "109555001", "sL_LossRatio": "0.739000443269095", "sL_AssetLoss": "1326508", "sL_BldgLoss": "980290", "sL_StrLoss": "517080", "sL_NStrLoss": "463210", "sL_ContLoss": "346218", "geom_point": "0101000020E61000006F80EBED03985EC0712D20D52C884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.37067118199991, 49.06405194300001 ], [ -122.370582429999928, 49.062162821000072 ], [ -122.370566389999937, 49.061821421000104 ], [ -122.370552834999941, 49.061533566000065 ], [ -122.370518992999962, 49.060812729000133 ], [ -122.370510971999948, 49.060642030000039 ], [ -122.37050240399995, 49.060459498000093 ], [ -122.37066827299995, 49.06047449600004 ], [ -122.371090792999922, 49.060512713000094 ], [ -122.371639911999949, 49.060666503000043 ], [ -122.371994343999987, 49.060765151000055 ], [ -122.372266825999972, 49.060841002000117 ], [ -122.372813208999901, 49.061063996 ], [ -122.373158596999957, 49.061337989000066 ], [ -122.373203049, 49.061421828000114 ], [ -122.373322089999974, 49.061646406000101 ], [ -122.373401798999978, 49.062064709000047 ], [ -122.373609707999961, 49.062346708000042 ], [ -122.374054099999938, 49.062615890000124 ], [ -122.374654083999928, 49.062730799000128 ], [ -122.375187718999925, 49.062732593000064 ], [ -122.375527190999961, 49.062733665000046 ], [ -122.376631101, 49.062737081000073 ], [ -122.377793997999916, 49.062742105000076 ], [ -122.380331867999971, 49.062749327000041 ], [ -122.381210388999975, 49.062751797000068 ], [ -122.381214649999919, 49.063596945000064 ], [ -122.38121673899991, 49.064010700000097 ], [ -122.381219984999987, 49.064649513000028 ], [ -122.381221934999985, 49.065036202000037 ], [ -122.381224629999977, 49.065563913000048 ], [ -122.380160024999967, 49.065562237000101 ], [ -122.379667253999969, 49.065561465000066 ], [ -122.378727247999933, 49.065559963000084 ], [ -122.377103213999945, 49.065729641000097 ], [ -122.375964404999962, 49.065854373000015 ], [ -122.375761911000026, 49.065854125000044 ], [ -122.374803556999964, 49.065852915000086 ], [ -122.373189140999926, 49.065850824000023 ], [ -122.373119757999987, 49.065850438000091 ], [ -122.372676114999976, 49.065847932000096 ], [ -122.372134118999938, 49.065845638000077 ], [ -122.370755213999985, 49.065839808000121 ], [ -122.370754118999969, 49.065817038000034 ], [ -122.37067118199991, 49.06405194300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.898073290517567", "sL_AssetLoss": "13235", "sL_BldgLoss": "11886", "sL_StrLoss": "8640", "sL_NStrLoss": "3246", "sL_ContLoss": "1349", "geom_point": "0101000020E6100000A4793A3686725EC0BF63BA083A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.785787107, 49.17506518900008 ], [ -121.785847389999972, 49.172495082000069 ], [ -121.785858360999896, 49.172028572000023 ], [ -121.785868733999948, 49.17158568100006 ], [ -121.785880476999978, 49.171084999000087 ], [ -121.785811379999984, 49.169000151000027 ], [ -121.788226000999927, 49.169094687000012 ], [ -121.788000500999914, 49.171582131000108 ], [ -121.789731105, 49.171649853000091 ], [ -121.789540582999962, 49.173752105000048 ], [ -121.794085988999896, 49.173929841000039 ], [ -121.794048357999941, 49.174345489000054 ], [ -121.796387535999941, 49.174436882000109 ], [ -121.796248874999932, 49.175969260000059 ], [ -121.794107511999954, 49.175962530000092 ], [ -121.790896720999953, 49.17595235600006 ], [ -121.788098105999921, 49.17594342200006 ], [ -121.78608187099999, 49.175936944000057 ], [ -121.785756103000011, 49.175935888000012 ], [ -121.785787107, 49.17506518900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156382144", "BldgCostT": "103176523", "sL_LossRatio": "0.884931027126741", "sL_AssetLoss": "405485.5", "sL_BldgLoss": "358826.7", "sL_StrLoss": "268330.6", "sL_NStrLoss": "90496.1", "sL_ContLoss": "46658.8", "geom_point": "0101000020E61000000BD992B8BB775EC04D340E164A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.886363321999937, 49.182244403000055 ], [ -121.885218403999957, 49.181921193000122 ], [ -121.883739197999915, 49.181916890000053 ], [ -121.883412785999923, 49.181898091000029 ], [ -121.883015703999916, 49.181841397000078 ], [ -121.876433989999924, 49.180530093000108 ], [ -121.874184100999969, 49.179977697 ], [ -121.873527211999956, 49.179756 ], [ -121.872681085999929, 49.179315105000093 ], [ -121.871185203999943, 49.178463137000115 ], [ -121.871150020999949, 49.178443100000067 ], [ -121.87104022299998, 49.178335201000039 ], [ -121.871050232, 49.178329055000113 ], [ -121.874074101999909, 49.176472499000099 ], [ -121.874292895999986, 49.176233797000108 ], [ -121.874346897999899, 49.17508540300004 ], [ -121.874350124999978, 49.170335601 ], [ -121.874378159999978, 49.169154212000144 ], [ -121.874380207999977, 49.169068996000085 ], [ -121.874375507999929, 49.166373754000112 ], [ -121.87436750199997, 49.161810193000058 ], [ -121.865361384999972, 49.161753897000054 ], [ -121.863010112999945, 49.161766307000022 ], [ -121.85220300099995, 49.161719988000108 ], [ -121.848026804999947, 49.161702203000068 ], [ -121.847674557999966, 49.16169867300006 ], [ -121.835451513999928, 49.161575097000089 ], [ -121.830222305999939, 49.161473607000083 ], [ -121.830239990999928, 49.164686117000045 ], [ -121.830229117999977, 49.166051760000123 ], [ -121.830221571999942, 49.166996248000039 ], [ -121.830206422999964, 49.168894223000116 ], [ -121.830206002999901, 49.168946928000089 ], [ -121.829665252999973, 49.168972050000065 ], [ -121.827605499999919, 49.169182965000083 ], [ -121.826056234999925, 49.169401110000152 ], [ -121.825165300999984, 49.169579872000021 ], [ -121.825251881999961, 49.168616277000133 ], [ -121.827061619999967, 49.168686471000036 ], [ -121.827160432999975, 49.167586209000056 ], [ -121.826963276999962, 49.16757856400006 ], [ -121.827087996, 49.166189848000073 ], [ -121.82697246499994, 49.166185367000082 ], [ -121.827124663999925, 49.164490584000056 ], [ -121.826719363, 49.164474865000045 ], [ -121.826767727999979, 49.163936334000063 ], [ -121.822508551999974, 49.16377105300009 ], [ -121.822517111999929, 49.163675833000106 ], [ -121.820633994999937, 49.16360270400002 ], [ -121.820644998999967, 49.163480351000018 ], [ -121.820123456999937, 49.163460091000061 ], [ -121.820089396999947, 49.163838750000075 ], [ -121.819451599999979, 49.16381397100006 ], [ -121.819432878999976, 49.16402206500004 ], [ -121.8139636399999, 49.163809423000046 ], [ -121.813985083999938, 49.163571371000032 ], [ -121.813222470999975, 49.163541700000096 ], [ -121.813207007999921, 49.163713314000098 ], [ -121.810282419999908, 49.163599472000058 ], [ -121.810120075999933, 49.165399983000107 ], [ -121.808034399999912, 49.165318748000054 ], [ -121.804650715999927, 49.165186870000113 ], [ -121.804680440999974, 49.164857640000058 ], [ -121.804665836999945, 49.164857071000057 ], [ -121.80479558299993, 49.16341997300006 ], [ -121.804703326999956, 49.163416376000093 ], [ -121.804836279999947, 49.161943685000061 ], [ -121.802753008999957, 49.161922101000137 ], [ -121.802759513999931, 49.161652299000146 ], [ -121.802348110999958, 49.161648032000166 ], [ -121.802341604, 49.161917834000072 ], [ -121.800350623999989, 49.161897166000045 ], [ -121.800082833999937, 49.164860124000072 ], [ -121.799964870999986, 49.164855520000046 ], [ -121.799927349999933, 49.165270628000087 ], [ -121.798773651999909, 49.165225587000087 ], [ -121.798674323999975, 49.166324147000111 ], [ -121.800144996999947, 49.166381559000051 ], [ -121.799820105, 49.169975716000074 ], [ -121.796948036999979, 49.169863577000044 ], [ -121.794350254999955, 49.169762081000073 ], [ -121.794603353999918, 49.16696582400003 ], [ -121.792472867999891, 49.166882537000028 ], [ -121.792518072999925, 49.166383318000015 ], [ -121.792260190999954, 49.166373233000058 ], [ -121.792341584000013, 49.165474428000046 ], [ -121.791886015999935, 49.165456612000092 ], [ -121.79187243899996, 49.165606519000015 ], [ -121.789846760999978, 49.165527277000109 ], [ -121.789567221999945, 49.165516338000096 ], [ -121.789599823999964, 49.165498061000051 ], [ -121.790323614999977, 49.165092308000048 ], [ -121.793484557999989, 49.163320188000085 ], [ -121.793912595, 49.16308019800011 ], [ -121.793965071999935, 49.163050783000067 ], [ -121.794341654, 49.162839607000102 ], [ -121.796813581999984, 49.161453572000035 ], [ -121.796875971999967, 49.161418569000041 ], [ -121.797056740999921, 49.161323397000032 ], [ -121.797059442, 49.161321947000047 ], [ -121.798433308999961, 49.160598423000131 ], [ -121.798867213000023, 49.16042779400005 ], [ -121.799345310999939, 49.160284150000088 ], [ -121.79941352099992, 49.160268208000019 ], [ -121.799500914999953, 49.160269117000063 ], [ -121.799501434999954, 49.160247661000049 ], [ -121.799917174999933, 49.160150492000085 ], [ -121.800004012999963, 49.160135220000022 ], [ -121.80044973599999, 49.160056766000068 ], [ -121.800825382999932, 49.160013010000092 ], [ -121.801564375999988, 49.160020684000088 ], [ -121.80156561099993, 49.159969490000016 ], [ -121.801628199999982, 49.159966613000094 ], [ -121.802349196999955, 49.159989314000057 ], [ -121.803184027999976, 49.160088617 ], [ -121.805607028999958, 49.160528454000072 ], [ -121.80594857799997, 49.160565412000054 ], [ -121.806310853999918, 49.160604596000077 ], [ -121.806755604999964, 49.16062366700006 ], [ -121.806996966000014, 49.160634034000118 ], [ -121.807674822999971, 49.160624716000058 ], [ -121.807766246999947, 49.160623453000042 ], [ -121.808091905999945, 49.160599396000066 ], [ -121.808405757999978, 49.160576219000099 ], [ -121.809214804999939, 49.16047427300002 ], [ -121.810532713999919, 49.160161314000085 ], [ -121.811117049999936, 49.159949632000036 ], [ -121.812448612999916, 49.159332384000074 ], [ -121.814293542000016, 49.158402041000031 ], [ -121.815516004999949, 49.157785519000093 ], [ -121.816784240999979, 49.15714590100005 ], [ -121.817567881999977, 49.156750672000072 ], [ -121.818643397999892, 49.156278484000062 ], [ -121.820108460999975, 49.155745715000066 ], [ -121.821328839999978, 49.155400865000104 ], [ -121.822437252999961, 49.155157166000023 ], [ -121.823492940999941, 49.154973571000042 ], [ -121.823490227999912, 49.155088058000082 ], [ -121.823476721999938, 49.155658268000089 ], [ -121.82224265799999, 49.155645686000064 ], [ -121.822249055999961, 49.155375882000087 ], [ -121.822027913999975, 49.155373627000074 ], [ -121.821864577, 49.15537196000006 ], [ -121.821861143999925, 49.1554101340001 ], [ -121.821828061999938, 49.155778148000095 ], [ -121.821824902999978, 49.155911294000127 ], [ -121.821816098999989, 49.15591120300008 ], [ -121.821677306999959, 49.157455031000062 ], [ -121.820335494999981, 49.157402908000073 ], [ -121.820225899999954, 49.158621496000052 ], [ -121.825471305999983, 49.15882515900006 ], [ -121.825441070999915, 49.15916176600016 ], [ -121.825523325999896, 49.159164958000119 ], [ -121.825505478999929, 49.159363639000098 ], [ -121.826404908999947, 49.159398535000037 ], [ -121.826367450999925, 49.159815626000075 ], [ -121.828041828999972, 49.159880567000094 ], [ -121.828118594999964, 49.159025418000056 ], [ -121.830210670999932, 49.159106523000112 ], [ -121.833587337999973, 49.159237342000083 ], [ -121.833580744999935, 49.159310884000021 ], [ -121.83536513599995, 49.159379972000053 ], [ -121.835433418999955, 49.158617991000078 ], [ -121.840902145999962, 49.158829544000056 ], [ -121.840777239999966, 49.160225216000036 ], [ -121.843943931999888, 49.160347589 ], [ -121.843967888999927, 49.160079699000072 ], [ -121.844407745999916, 49.16009668900012 ], [ -121.844538945999972, 49.158629408000074 ], [ -121.845347297999965, 49.158660627000067 ], [ -121.845390136, 49.158181428 ], [ -121.849963266999964, 49.158357932000087 ], [ -121.850156096999982, 49.156198383000081 ], [ -121.848515172999939, 49.156135073000065 ], [ -121.848619960999926, 49.154961903000164 ], [ -121.848634248999971, 49.154801929000051 ], [ -121.852209199999976, 49.154823969000063 ], [ -121.85222276699993, 49.154824050000101 ], [ -121.854118387999961, 49.154835686000112 ], [ -121.8541043099999, 49.154993511000072 ], [ -121.854031806999913, 49.155806313000014 ], [ -121.855672725999966, 49.155869539000044 ], [ -121.8555102399999, 49.157691716000038 ], [ -121.855661538999939, 49.157697544000051 ], [ -121.855539514, 49.159065934000083 ], [ -121.855685223999942, 49.159071548000057 ], [ -121.855639438999944, 49.159584974000076 ], [ -121.85582956199994, 49.159592298000085 ], [ -121.85583663499996, 49.159512980000045 ], [ -121.859116711999931, 49.159639275000082 ], [ -121.85914901299999, 49.159276760000061 ], [ -121.861601728999972, 49.159371132000032 ], [ -121.861614214999946, 49.159230918000098 ], [ -121.862298478999932, 49.159257237000062 ], [ -121.862304888999944, 49.159185234000077 ], [ -121.867773804999942, 49.159395423000092 ], [ -121.867751031999958, 49.159651551000053 ], [ -121.868896266999926, 49.159695530000064 ], [ -121.868903194999945, 49.15961759400011 ], [ -121.869593680999927, 49.159644104000094 ], [ -121.869599367999967, 49.159580110000078 ], [ -121.870730728999959, 49.159623538000083 ], [ -121.870737223999967, 49.159550438000046 ], [ -121.87117704299996, 49.159567316000071 ], [ -121.871254353, 49.15869709499999 ], [ -121.870925328999988, 49.158684468000033 ], [ -121.871244614999981, 49.155090418000093 ], [ -121.871244648999948, 49.155090036000068 ], [ -121.871256305999978, 49.15509048400007 ], [ -121.874422343000035, 49.155211947000041 ], [ -121.876713124999952, 49.155299772000042 ], [ -121.876614376999953, 49.156412859000085 ], [ -121.876943386000036, 49.156425469000126 ], [ -121.876680401999977, 49.159389805000053 ], [ -121.88133942099995, 49.159568259 ], [ -121.881330132999921, 49.159673064000053 ], [ -121.881960187999951, 49.159697182000073 ], [ -121.881976666999947, 49.159511206000083 ], [ -121.886626216999929, 49.159689067000109 ], [ -121.886646878999912, 49.159455617000049 ], [ -121.887569721999967, 49.159490895000012 ], [ -121.887577043999983, 49.159408140000096 ], [ -121.893046099999978, 49.15961704500004 ], [ -121.893043663999975, 49.15964461500004 ], [ -121.893413138999946, 49.159658719000106 ], [ -121.893418549999964, 49.159597498000103 ], [ -121.893268385999946, 49.159591766000098 ], [ -121.893306204999973, 49.15916376800007 ], [ -121.893135807999897, 49.159157264000044 ], [ -121.893208925999929, 49.158329821000059 ], [ -121.893199661999986, 49.158329468000062 ], [ -121.893231230000012, 49.157972210000068 ], [ -121.891788535999922, 49.157917130000051 ], [ -121.89202798299999, 49.155208083000012 ], [ -121.892041441999964, 49.155055791000066 ], [ -121.896474851000022, 49.155079786000137 ], [ -121.896569298, 49.155080308000024 ], [ -121.899925500999942, 49.155098347000084 ], [ -121.899911969999948, 49.15525174600004 ], [ -121.899803048999942, 49.156486467000022 ], [ -121.89903250299993, 49.156457097000057 ], [ -121.898960877999968, 49.157268852000058 ], [ -121.899111032999926, 49.157274576000134 ], [ -121.898909276, 49.159561073000113 ], [ -121.899924347999942, 49.15959976000002 ], [ -121.899905260999958, 49.159816117000069 ], [ -121.900664336999981, 49.159845041000061 ], [ -121.900477322999961, 49.161965143000025 ], [ -121.900347256999936, 49.163439533000094 ], [ -121.90020868299996, 49.163434254000087 ], [ -121.900117802999944, 49.164464336000073 ], [ -121.897916766999955, 49.164380449000134 ], [ -121.897817580999956, 49.165504035000033 ], [ -121.898842556999952, 49.165543105000083 ], [ -121.898525297999981, 49.169137560000074 ], [ -121.896931692999914, 49.169076812000135 ], [ -121.896621410999956, 49.172590296000045 ], [ -121.89576196199999, 49.172557524000048 ], [ -121.895747675999957, 49.172719261000111 ], [ -121.896998973, 49.172766973000101 ], [ -121.896705093999969, 49.176094505000059 ], [ -121.896987781999925, 49.176105282000051 ], [ -121.896722074999957, 49.179113609000105 ], [ -121.898945302999948, 49.179198337000081 ], [ -121.898935747999985, 49.179306570000087 ], [ -121.901837747999963, 49.179417096000044 ], [ -121.90188367899999, 49.17889643900007 ], [ -121.902613769000013, 49.178924233000082 ], [ -121.902652769999946, 49.178482056000128 ], [ -121.908124136999959, 49.178690190000097 ], [ -121.908098337999945, 49.178983069000026 ], [ -121.90813045499999, 49.178984291000077 ], [ -121.908106114999896, 49.179260619000104 ], [ -121.908186870999913, 49.179263689000074 ], [ -121.908186563999948, 49.179267163000091 ], [ -121.909302033999964, 49.179309559000103 ], [ -121.909292108999921, 49.179422257000056 ], [ -121.910537571999924, 49.179469581000077 ], [ -121.910548200000022, 49.179348847000036 ], [ -121.911194263999917, 49.179373390000073 ], [ -121.911206579999899, 49.179233463000038 ], [ -121.911682467999981, 49.179251539000049 ], [ -121.911689662999947, 49.17916977300014 ], [ -121.912282293999937, 49.179192281000041 ], [ -121.912288541999942, 49.17912128800004 ], [ -121.912830467999967, 49.17914186700007 ], [ -121.912842324999986, 49.17900710100006 ], [ -121.913405078999972, 49.179028468000062 ], [ -121.913506673999919, 49.177873543000011 ], [ -121.913322679999979, 49.177866558000048 ], [ -121.913622629999921, 49.174456572000089 ], [ -121.912455262999927, 49.174412243000106 ], [ -121.912542416999926, 49.173421615000038 ], [ -121.912387821999957, 49.17341574400011 ], [ -121.91270404, 49.169821271000039 ], [ -121.915205957999916, 49.169916265000097 ], [ -121.915223960999981, 49.169711464000024 ], [ -121.914706336999984, 49.169691815000071 ], [ -121.914989119999987, 49.166475330000047 ], [ -121.914720561999957, 49.166465135000088 ], [ -121.91463656099998, 49.167420580000055 ], [ -121.909166489999933, 49.167212774000035 ], [ -121.909194311999968, 49.166896748000063 ], [ -121.908371182999957, 49.166865452000103 ], [ -121.908524265999958, 49.165126877000056 ], [ -121.908068580999952, 49.165109549000178 ], [ -121.908154358, 49.16413541900009 ], [ -121.907260392999945, 49.16410142000008 ], [ -121.90725138099999, 49.164203766000092 ], [ -121.901781720999963, 49.163995583000066 ], [ -121.901842298999981, 49.163308680000071 ], [ -121.9007706299999, 49.163267858000047 ], [ -121.900885402999961, 49.161966701000054 ], [ -121.901087676999936, 49.159673363000138 ], [ -121.905478074999948, 49.159840535000043 ], [ -121.905484592, 49.159766569000034 ], [ -121.909842156999957, 49.159932312000045 ], [ -121.909855712999942, 49.159778273000043 ], [ -121.914293629999975, 49.159946890000128 ], [ -121.914305129999903, 49.159816080000056 ], [ -121.91479983899994, 49.159834865000036 ], [ -121.91499102099999, 49.157659790000068 ], [ -121.915995457999912, 49.157697923000022 ], [ -121.91612078299994, 49.156271642000085 ], [ -121.913950350999954, 49.156189230000088 ], [ -121.914008913999936, 49.155523055000032 ], [ -121.913942490999929, 49.155520532000075 ], [ -121.91395955199998, 49.155326462000033 ], [ -121.913972803999926, 49.155175719000063 ], [ -121.917088001999971, 49.155194292000033 ], [ -121.918206094999974, 49.15517718800011 ], [ -121.918205354999955, 49.155216007000071 ], [ -121.91820309, 49.15533579100002 ], [ -121.918197768999931, 49.155558016000064 ], [ -121.918191685999915, 49.155809597000065 ], [ -121.918172290999962, 49.156494920000107 ], [ -121.918018697, 49.16191889000001 ], [ -121.918015387000011, 49.164892294000083 ], [ -121.917999954, 49.169282147000096 ], [ -121.917999228, 49.16948910100006 ], [ -121.9179984099999, 49.169724406000057 ], [ -121.915764722999967, 49.169691908000047 ], [ -121.915648420999915, 49.180692599000054 ], [ -121.912442280999954, 49.181084756000082 ], [ -121.909339460999902, 49.181464181000116 ], [ -121.906826408999962, 49.181771426000104 ], [ -121.905027618999938, 49.181991301000046 ], [ -121.903723317, 49.182150905000071 ], [ -121.902621184999973, 49.182321693000091 ], [ -121.901687221, 49.182407006000055 ], [ -121.901385345999984, 49.18240796200007 ], [ -121.901250576999971, 49.182408395000024 ], [ -121.900836005999949, 49.182378203000084 ], [ -121.90082267699999, 49.182375390000047 ], [ -121.898577710999987, 49.181901698000047 ], [ -121.898017811999978, 49.181761409000082 ], [ -121.897746006999967, 49.181730292000033 ], [ -121.897530520999922, 49.181730205000058 ], [ -121.897303883999911, 49.181763003000079 ], [ -121.893433708999979, 49.182737088000088 ], [ -121.89313980699994, 49.182785404000114 ], [ -121.890829002999922, 49.182964987000055 ], [ -121.890223612999975, 49.182935509000075 ], [ -121.888593003999972, 49.182794806000089 ], [ -121.88767168499993, 49.182612696000092 ], [ -121.886363321999937, 49.182244403000055 ] ], [ [ -121.881775679, 49.178934543000025 ], [ -121.881839224999936, 49.178217736000093 ], [ -121.881744406999957, 49.178214108000134 ], [ -121.88189204699998, 49.176548657000069 ], [ -121.881726211999975, 49.176542311000098 ], [ -121.882044820999951, 49.172947947000083 ], [ -121.887515443, 49.173157128000057 ], [ -121.887469072999977, 49.173680980000086 ], [ -121.887684868999926, 49.173689226000128 ], [ -121.88762087399999, 49.174412208000049 ], [ -121.887639716999928, 49.174412929000042 ], [ -121.88760437799999, 49.174812159000048 ], [ -121.888148737999984, 49.174832958000074 ], [ -121.888338376999926, 49.172690196000076 ], [ -121.890036140999911, 49.172755045000073 ], [ -121.890347385999931, 49.16923633400009 ], [ -121.891425306999977, 49.169277494000077 ], [ -121.891468665000019, 49.168787160000079 ], [ -121.893062252, 49.168847989000071 ], [ -121.89312952, 49.168086912000049 ], [ -121.89191901199996, 49.168040708 ], [ -121.892190143999954, 49.164973784000075 ], [ -121.89198168199998, 49.164971784000073 ], [ -121.891975660999918, 49.165241594000051 ], [ -121.89156421699991, 49.165237645000026 ], [ -121.89155819299998, 49.165507455000089 ], [ -121.891146745999976, 49.165503505000132 ], [ -121.891128670999976, 49.16631293500005 ], [ -121.889482859999987, 49.16629711900007 ], [ -121.889488894999928, 49.166027308000011 ], [ -121.889077442999934, 49.16602335000006 ], [ -121.889083480999957, 49.165753540000026 ], [ -121.888672033999967, 49.165749581000078 ], [ -121.888678071999962, 49.165479771000058 ], [ -121.887855179999946, 49.165471849000085 ], [ -121.887861223999948, 49.165202039000107 ], [ -121.887449779999926, 49.165198074000124 ], [ -121.887461870999971, 49.164658456000033 ], [ -121.887050432999942, 49.164654490000061 ], [ -121.887056480999931, 49.16438468100008 ], [ -121.886645042999973, 49.164380714000082 ], [ -121.886651092999941, 49.16411090400004 ], [ -121.885416792999976, 49.164098996000078 ], [ -121.885421025999946, 49.163910302000026 ], [ -121.884682604999981, 49.163882062000063 ], [ -121.884648859999956, 49.164263106000099 ], [ -121.88261923, 49.164185461000095 ], [ -121.882604379999975, 49.16435305500007 ], [ -121.877594311999957, 49.164161226000033 ], [ -121.877482590999946, 49.165420572000073 ], [ -121.877840113999966, 49.165434268000105 ], [ -121.877694802999926, 49.167072278000077 ], [ -121.880990708999931, 49.167198488000025 ], [ -121.880672057999973, 49.1707928820001 ], [ -121.877644171999975, 49.170676940000106 ], [ -121.877643611999986, 49.170683262000153 ], [ -121.877756444999989, 49.170687584000092 ], [ -121.877489003999969, 49.173701750000056 ], [ -121.877769431999937, 49.173712491000046 ], [ -121.87745048799998, 49.177306840000043 ], [ -121.877357870999973, 49.177303292000012 ], [ -121.877297518999967, 49.177983342000047 ], [ -121.877213353999977, 49.1779801180001 ], [ -121.877203172999927, 49.178094839000032 ], [ -121.878290687999964, 49.178136489000096 ], [ -121.878245738999922, 49.178643088000122 ], [ -121.881415113999935, 49.178764407000159 ], [ -121.8814013, 49.178920219000076 ], [ -121.881775679, 49.178934543000025 ] ], [ [ -121.877156033999981, 49.163904465000023 ], [ -121.877229849999964, 49.16307244000005 ], [ -121.876803739999943, 49.163056112000085 ], [ -121.876729915999974, 49.163888137000072 ], [ -121.877156033999981, 49.163904465000023 ] ], [ [ -121.892405877999977, 49.164403921000087 ], [ -121.89240479099999, 49.164452680000082 ], [ -121.892422241999924, 49.164453346000059 ], [ -121.892426540999935, 49.164404710000099 ], [ -121.892405877999977, 49.164403921000087 ] ], [ [ -121.88841154099994, 49.17629953000008 ], [ -121.888253055999883, 49.178090180000041 ], [ -121.890096707999973, 49.178160593 ], [ -121.890255121999985, 49.17636994 ], [ -121.88841154099994, 49.17629953000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.894645941278066", "sL_AssetLoss": "1737", "sL_BldgLoss": "1554", "sL_StrLoss": "1180", "sL_NStrLoss": "374", "sL_ContLoss": "183", "geom_point": "0101000020E6100000514B94392D755EC03640A353DB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.828076962999987, 49.155624125000053 ], [ -121.828097070999888, 49.155400106000073 ], [ -121.82765636299996, 49.155383014000058 ], [ -121.827706094999954, 49.154829005000131 ], [ -121.827715914999914, 49.154719626000066 ], [ -121.830126476999922, 49.154696294000068 ], [ -121.830119395999986, 49.154317314000124 ], [ -121.830433879999958, 49.154328600000071 ], [ -121.832565570999961, 49.154528680000119 ], [ -121.833375475999944, 49.154604678000048 ], [ -121.833653349999963, 49.154630755000071 ], [ -121.833646215999934, 49.154710346000066 ], [ -121.833631386999983, 49.154875763000121 ], [ -121.833545305, 49.15583605300003 ], [ -121.830142197999962, 49.155704196000094 ], [ -121.828076962999987, 49.155624125000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11695583", "BldgCostT": "7538333", "sL_LossRatio": "0.862583393758318", "sL_AssetLoss": "34340.1", "sL_BldgLoss": "29621.2", "sL_StrLoss": "23685.2", "sL_NStrLoss": "5936", "sL_ContLoss": "4718.9", "geom_point": "0101000020E6100000B76C63A277735EC0D566D63132964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.798222056999961, 49.175971306000093 ], [ -121.798393147999946, 49.174079647000056 ], [ -121.796897720999965, 49.174021253000092 ], [ -121.794412699999953, 49.173924172000056 ], [ -121.794738036999945, 49.170330053000036 ], [ -121.796941346999958, 49.170416132000142 ], [ -121.800207954999976, 49.170543668000015 ], [ -121.799915278999904, 49.17378120700004 ], [ -121.80389573299999, 49.173936478000087 ], [ -121.803865308999974, 49.1742733130001 ], [ -121.803926641999936, 49.174275705000071 ], [ -121.803983373999984, 49.173647584000037 ], [ -121.804165948999952, 49.173654702000128 ], [ -121.80423470599996, 49.17289338700003 ], [ -121.805569700999968, 49.172945428000091 ], [ -121.805679510999965, 49.171729118000052 ], [ -121.805802925999942, 49.171733928000059 ], [ -121.805864339999957, 49.171053621000041 ], [ -121.80605940599996, 49.171061223000059 ], [ -121.80610565899994, 49.170548825000076 ], [ -121.807959769999968, 49.170621068000045 ], [ -121.811575655999917, 49.170761863000067 ], [ -121.811266287999956, 49.174193308000092 ], [ -121.811533796999967, 49.174203720000072 ], [ -121.811534234999954, 49.174198865000086 ], [ -121.812330083999939, 49.174229836000031 ], [ -121.812332702, 49.174200785000025 ], [ -121.812821262999975, 49.174219794000102 ], [ -121.812827183999957, 49.174154096000095 ], [ -121.812851361999947, 49.174155037000105 ], [ -121.812937931999969, 49.1731944960001 ], [ -121.814004954999973, 49.173236005000035 ], [ -121.81400813499999, 49.173102884000038 ], [ -121.815242628999926, 49.173115557000095 ], [ -121.815249069999965, 49.172845755000097 ], [ -121.81601061899994, 49.172853566000043 ], [ -121.815346252999916, 49.173255663000063 ], [ -121.815181745999922, 49.173347635000027 ], [ -121.814302788999939, 49.173891020000084 ], [ -121.811912206999949, 49.175437753000082 ], [ -121.811007143999959, 49.175961932000078 ], [ -121.810736944, 49.175962377000111 ], [ -121.807884485999963, 49.175966900000077 ], [ -121.805659490999957, 49.175970537000104 ], [ -121.805063610999952, 49.175971505000071 ], [ -121.79999422399996, 49.175971397000026 ], [ -121.798222056999961, 49.175971306000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997772551251328", "sL_AssetLoss": "224.921", "sL_BldgLoss": "224.42", "sL_StrLoss": "220", "sL_NStrLoss": "4.42", "sL_ContLoss": "0.501", "geom_point": "0101000020E61000006863FC66E85C5EC00114234B66EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.451684969999917, 49.864268494000044 ], [ -121.451129693999974, 49.862265692000022 ], [ -121.451091585999933, 49.860994861000094 ], [ -121.451664250999954, 49.861002513000081 ], [ -121.452046509999988, 49.861007618000038 ], [ -121.452012029999977, 49.862086535000103 ], [ -121.451594773999915, 49.862080963000011 ], [ -121.451577527999945, 49.862620421000059 ], [ -121.452412050999939, 49.86263156700003 ], [ -121.452386194999988, 49.863440755000092 ], [ -121.451968926999939, 49.863435183000043 ], [ -121.451960297999946, 49.863705144000029 ], [ -121.451956222999939, 49.863832638000105 ], [ -121.451934440999977, 49.864514101000097 ], [ -121.451634656999957, 49.864510095000085 ], [ -121.451684969999917, 49.864268494000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11902083", "BldgCostT": "8208333", "sL_LossRatio": "0.996022404415943", "sL_AssetLoss": "5297.17", "sL_BldgLoss": "5276.1", "sL_StrLoss": "5090", "sL_NStrLoss": "186.1", "sL_ContLoss": "21.07", "geom_point": "0101000020E61000007D448634EE5C5EC0D7E86A6521F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.444471667999906, 49.878815198000055 ], [ -121.444593079999947, 49.877597281000057 ], [ -121.447081105999985, 49.877700889000074 ], [ -121.447097779, 49.877533541000027 ], [ -121.447150828999952, 49.87753575 ], [ -121.447168838999943, 49.877354980000064 ], [ -121.447186994999967, 49.877172742 ], [ -121.44758504399999, 49.877189312000041 ], [ -121.447849826, 49.877200334000122 ], [ -121.447864906999953, 49.877048935000047 ], [ -121.447962026, 49.876073957000088 ], [ -121.448409788, 49.876092594000113 ], [ -121.448534971999933, 49.874835668000095 ], [ -121.449386389, 49.874871102000057 ], [ -121.449589741999958, 49.872828787000095 ], [ -121.450693223999977, 49.872874701000072 ], [ -121.45083626899999, 49.871437614000044 ], [ -121.452170446999943, 49.871493111000049 ], [ -121.456388271999955, 49.871668450000115 ], [ -121.456031408999948, 49.87525784500005 ], [ -121.454927862999952, 49.875211985000057 ], [ -121.454784935999953, 49.87664907000007 ], [ -121.453933481999968, 49.876613679000037 ], [ -121.453840845999963, 49.877544872000037 ], [ -121.456670347999946, 49.877662455000035 ], [ -121.456567408999931, 49.878697811000102 ], [ -121.458406854999978, 49.87877421100012 ], [ -121.458363399999911, 49.879211452000042 ], [ -121.45847558299999, 49.879216110000087 ], [ -121.458479932999978, 49.879537047000063 ], [ -121.458460065999944, 49.879736935000025 ], [ -121.457183151999956, 49.879714974000116 ], [ -121.454036258999977, 49.879459777000051 ], [ -121.452384296999952, 49.879325745000109 ], [ -121.450500771999955, 49.879222632000058 ], [ -121.449906939999948, 49.879190136000055 ], [ -121.447047852999944, 49.879033545 ], [ -121.444471667999906, 49.878815198000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15744583", "BldgCostT": "10858333", "sL_LossRatio": "0.997132850125655", "sL_AssetLoss": "6044.33", "sL_BldgLoss": "6027", "sL_StrLoss": "5880", "sL_NStrLoss": "147", "sL_ContLoss": "17.33", "geom_point": "0101000020E610000064A5308C075F5EC05CCF6B474CFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.482317372999916, 49.963366229000066 ], [ -121.482482630999954, 49.959670365000065 ], [ -121.48293843499999, 49.95967532100012 ], [ -121.482718428999988, 49.961896759000084 ], [ -121.486152122999968, 49.962038254000106 ], [ -121.486140511999977, 49.962155573000054 ], [ -121.487684128999916, 49.962219146000074 ], [ -121.487623457999973, 49.964533658000036 ], [ -121.487616795999898, 49.964856723000096 ], [ -121.486220176999922, 49.964839820000073 ], [ -121.484430463, 49.964818112000096 ], [ -121.483341715999984, 49.96480490000004 ], [ -121.482466809999934, 49.964862300000085 ], [ -121.482511604999956, 49.964282714 ], [ -121.482458600999976, 49.964162586000022 ], [ -121.482350337999918, 49.963767263000136 ], [ -121.482317372999916, 49.963366229000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248182144", "BldgCostT": "154566523", "sL_LossRatio": "0.745758928901364", "sL_AssetLoss": "1353078", "sL_BldgLoss": "1009070", "sL_StrLoss": "567915", "sL_NStrLoss": "441155", "sL_ContLoss": "344008", "geom_point": "0101000020E6100000624A5E7C55905EC0118ECD4C38894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249570112999947, 49.073298002000051 ], [ -122.249538482999981, 49.072726856000024 ], [ -122.249529398999968, 49.0725627160001 ], [ -122.249422305999957, 49.071648431000021 ], [ -122.25016415499999, 49.071667120000043 ], [ -122.25044578499994, 49.071637284000076 ], [ -122.25097816099999, 49.071400738000079 ], [ -122.251195584999948, 49.071216302000032 ], [ -122.251345535999974, 49.071003365000081 ], [ -122.251364105999954, 49.070932748000089 ], [ -122.251406656999947, 49.070771097000055 ], [ -122.25139619, 49.070374075000089 ], [ -122.251409687999981, 49.06986516000012 ], [ -122.251492981999945, 49.069647171000071 ], [ -122.251738582999934, 49.069316792000059 ], [ -122.252523794999959, 49.068523784000035 ], [ -122.253361286999933, 49.067981492000044 ], [ -122.253648772999895, 49.068109467000063 ], [ -122.253778881999935, 49.068167386000084 ], [ -122.254051694999987, 49.068212902 ], [ -122.255237218, 49.06822899500002 ], [ -122.255406590999939, 49.068222159000065 ], [ -122.25617098499994, 49.068191298000102 ], [ -122.257199188999948, 49.068137897000078 ], [ -122.257240195999913, 49.068513404000093 ], [ -122.2574007899999, 49.06877960900006 ], [ -122.25706100499994, 49.068869602000042 ], [ -122.256502604000019, 49.068919488000091 ], [ -122.256331015999947, 49.068923691000066 ], [ -122.256106192999951, 49.068929193000045 ], [ -122.255935703999967, 49.069007104000072 ], [ -122.255895057, 49.06910346500009 ], [ -122.255883290999975, 49.069131400000096 ], [ -122.255892692999964, 49.069917009000037 ], [ -122.255979490999891, 49.070029106000064 ], [ -122.256117816999989, 49.070096095000117 ], [ -122.256567073999975, 49.070098107000064 ], [ -122.25692299399995, 49.070099720000066 ], [ -122.257007284999958, 49.070100098000104 ], [ -122.25862478399992, 49.07010599600008 ], [ -122.259094907999952, 49.069979003000071 ], [ -122.25953228399996, 49.069765306000065 ], [ -122.260697790999984, 49.070849814000098 ], [ -122.260879620999916, 49.071141909000097 ], [ -122.260901603999983, 49.072096479000038 ], [ -122.260938910999968, 49.073131794000069 ], [ -122.26095835699999, 49.073611285000055 ], [ -122.260984909999976, 49.07426480900002 ], [ -122.26100130699993, 49.074727021000037 ], [ -122.26100248399996, 49.074761262000145 ], [ -122.258537917999959, 49.07474784200015 ], [ -122.256100772999957, 49.074734495000079 ], [ -122.255939497999933, 49.074733590000065 ], [ -122.255428486, 49.074584198000132 ], [ -122.255199184999938, 49.074578129 ], [ -122.255004980999956, 49.0745729980001 ], [ -122.25485298699999, 49.074472192000059 ], [ -122.254199210999928, 49.074548260000057 ], [ -122.253526936999904, 49.074640309000159 ], [ -122.25250696199997, 49.074488508000115 ], [ -122.25225976399993, 49.074305109000079 ], [ -122.249393747999974, 49.074848756000073 ], [ -122.249384986999971, 49.074611294000121 ], [ -122.24941028799995, 49.074457306000049 ], [ -122.249433296999968, 49.074317295000114 ], [ -122.249586477999955, 49.073604093000078 ], [ -122.249579569999952, 49.073474690000118 ], [ -122.249570112999947, 49.073298002000051 ] ], [ [ -122.257654978999966, 49.072459972000097 ], [ -122.257792307999978, 49.070750730000086 ], [ -122.255947697999929, 49.070738854000133 ], [ -122.255951727999957, 49.070469011000064 ], [ -122.255130321999957, 49.070463713 ], [ -122.255134355999971, 49.070193870000026 ], [ -122.25472365499995, 49.070191218000076 ], [ -122.254719618999943, 49.070461062000078 ], [ -122.254308914999953, 49.070458408000079 ], [ -122.254304875999949, 49.070728251000034 ], [ -122.254715581999946, 49.070730903000076 ], [ -122.254711544999964, 49.071000746000088 ], [ -122.255122253999943, 49.071003398000059 ], [ -122.255101806999946, 49.072370973000034 ], [ -122.257654978999966, 49.072459972000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166643083", "BldgCostT": "106798333", "sL_LossRatio": "0.769585097625642", "sL_AssetLoss": "946319", "sL_BldgLoss": "728273", "sL_StrLoss": "405541", "sL_NStrLoss": "322732", "sL_ContLoss": "218046", "geom_point": "0101000020E6100000844EBE8F19905EC094F5EED193884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249373079999955, 49.066314263000059 ], [ -122.249371172999972, 49.065513540000047 ], [ -122.249369798, 49.064939212000056 ], [ -122.249439879999912, 49.064578407000042 ], [ -122.249868502999931, 49.064100213000103 ], [ -122.250013697999961, 49.063997088000058 ], [ -122.250378066999957, 49.063735172000065 ], [ -122.250901824999929, 49.063358642000026 ], [ -122.251347279999919, 49.063038403000114 ], [ -122.251571875999957, 49.063307447000057 ], [ -122.251721782999979, 49.06348699100004 ], [ -122.252009301, 49.063655689000022 ], [ -122.25378418599999, 49.063999795000043 ], [ -122.25388118799999, 49.064067410000092 ], [ -122.253103447999962, 49.064695429000039 ], [ -122.252708952999953, 49.065013965000048 ], [ -122.253350199999943, 49.065638966000115 ], [ -122.253872124999987, 49.066147608000065 ], [ -122.25558635, 49.065255464000096 ], [ -122.25634106199999, 49.064898125000127 ], [ -122.256484912999937, 49.064984439000085 ], [ -122.256266589999939, 49.065145710000102 ], [ -122.256020401999962, 49.065484213000069 ], [ -122.255998750999979, 49.065690182000075 ], [ -122.255973621999942, 49.065929689000058 ], [ -122.25572741, 49.066353798000137 ], [ -122.255403806999965, 49.066632807000083 ], [ -122.254644980999927, 49.066962501000056 ], [ -122.254302609, 49.067186684000056 ], [ -122.253729118999928, 49.067629200000049 ], [ -122.253559343999896, 49.067791796000108 ], [ -122.253535740999936, 49.067814381000055 ], [ -122.253361286999933, 49.067981492000044 ], [ -122.252523794999959, 49.068523784000035 ], [ -122.251738582999934, 49.069316792000059 ], [ -122.251492981999945, 49.069647171000071 ], [ -122.251409687999981, 49.06986516000012 ], [ -122.25139619, 49.070374075000089 ], [ -122.251406656999947, 49.070771097000055 ], [ -122.251364105999954, 49.070932748000089 ], [ -122.251345535999974, 49.071003365000081 ], [ -122.251195584999948, 49.071216302000032 ], [ -122.25097816099999, 49.071400738000079 ], [ -122.25044578499994, 49.071637284000076 ], [ -122.25016415499999, 49.071667120000043 ], [ -122.249422305999957, 49.071648431000021 ], [ -122.249395126999929, 49.071358580000073 ], [ -122.24937410099993, 49.071134059000073 ], [ -122.249324398999974, 49.070603702000064 ], [ -122.249343318999962, 49.069561465000028 ], [ -122.249351983999986, 49.0690847320001 ], [ -122.249361094999983, 49.068583802000049 ], [ -122.249376387999973, 49.067713504000061 ], [ -122.249373079999955, 49.066314263000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37410083", "BldgCostT": "25328333", "sL_LossRatio": "0.857484063839547", "sL_AssetLoss": "126442", "sL_BldgLoss": "108422", "sL_StrLoss": "76084", "sL_NStrLoss": "32338", "sL_ContLoss": "18020", "geom_point": "0101000020E61000004EAA2AF2738E5EC06AD4C76C5E894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.227936238999945, 49.075952246000043 ], [ -122.227940420999943, 49.075682404000098 ], [ -122.226708190999929, 49.075674156000062 ], [ -122.226712378999963, 49.07540431600011 ], [ -122.225069415999911, 49.075393297000062 ], [ -122.225099371999974, 49.073467443000013 ], [ -122.224688828999945, 49.073453012000058 ], [ -122.22468807199999, 49.073501656000076 ], [ -122.223045172999946, 49.073490609000025 ], [ -122.223049380999896, 49.073220769000017 ], [ -122.222227935999953, 49.073215236000131 ], [ -122.222215297, 49.074024756000021 ], [ -122.221804566999964, 49.074021988000048 ], [ -122.22179613599999, 49.074561668000101 ], [ -122.221346303999923, 49.07455863400007 ], [ -122.221500840999965, 49.074250094000021 ], [ -122.221548976999955, 49.074153981000059 ], [ -122.221681156999949, 49.073621328000065 ], [ -122.221843899999925, 49.072965318000037 ], [ -122.221975221999941, 49.07269677700009 ], [ -122.222210911, 49.072373309000056 ], [ -122.222596241999952, 49.072010917000071 ], [ -122.223055645999963, 49.071697101000048 ], [ -122.223634873999956, 49.071441600000071 ], [ -122.223861970999963, 49.071383765000085 ], [ -122.224228923999988, 49.071290301000033 ], [ -122.224471744999946, 49.071250152000125 ], [ -122.224745523999957, 49.071216495000051 ], [ -122.224881918999969, 49.071171712000101 ], [ -122.225324021999967, 49.071155705000152 ], [ -122.225469253999989, 49.071155712000028 ], [ -122.22618315899993, 49.071155836000067 ], [ -122.227247953999935, 49.071155977000103 ], [ -122.228156161999934, 49.071156111000086 ], [ -122.228250933999945, 49.07249390700013 ], [ -122.228663546999925, 49.075957109000043 ], [ -122.227936238999945, 49.075952246000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208543000", "BldgCostT": "140350000", "sL_LossRatio": "0.861738907876373", "sL_AssetLoss": "707191", "sL_BldgLoss": "609414", "sL_StrLoss": "439816", "sL_NStrLoss": "169598", "sL_ContLoss": "97777", "geom_point": "0101000020E61000007F520EE21A8E5EC066555B1CDB8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.210294285999979, 49.088868086000076 ], [ -122.211332016999947, 49.087658425 ], [ -122.212788195, 49.08637479800008 ], [ -122.214087374999949, 49.085438889000073 ], [ -122.213894553, 49.08781024800011 ], [ -122.214282771999976, 49.087823930000035 ], [ -122.214338530999925, 49.08713816200008 ], [ -122.216335826999938, 49.087208525000015 ], [ -122.216418698999931, 49.086188709000069 ], [ -122.217590789999974, 49.086229984000092 ], [ -122.217634977, 49.085686037000123 ], [ -122.218071281999954, 49.085701397000065 ], [ -122.218102377999955, 49.085318547000099 ], [ -122.21900813799999, 49.085350431000066 ], [ -122.219045616999921, 49.08488887900004 ], [ -122.215181890999929, 49.084752819000052 ], [ -122.215701960999965, 49.084495881000116 ], [ -122.217020294999912, 49.083979949000067 ], [ -122.217018727999985, 49.083746401000056 ], [ -122.216918556999957, 49.083512981000048 ], [ -122.21664967399991, 49.083114956000053 ], [ -122.215199092999939, 49.082261504000037 ], [ -122.215087802999932, 49.082194077000075 ], [ -122.214061186, 49.081572288000075 ], [ -122.21386311299996, 49.081381376000053 ], [ -122.213714884999916, 49.081148978000044 ], [ -122.213656004999947, 49.080913376000105 ], [ -122.213646334999964, 49.080359472000055 ], [ -122.21356332299996, 49.080117659000017 ], [ -122.21338303099995, 49.079842661000036 ], [ -122.212899807999989, 49.079358975000062 ], [ -122.213915562999901, 49.079365897000052 ], [ -122.213911303999964, 49.079635736000107 ], [ -122.214322078999942, 49.079638533000086 ], [ -122.214300793999911, 49.080987730000082 ], [ -122.214643182999922, 49.080990060000076 ], [ -122.214753829999935, 49.079628850000041 ], [ -122.220214931999962, 49.079821165000055 ], [ -122.220182720999929, 49.080218014000145 ], [ -122.220886041999933, 49.080222763000044 ], [ -122.220890261999912, 49.079952924000082 ], [ -122.222122597999928, 49.079961236000088 ], [ -122.222126810999953, 49.079691396000086 ], [ -122.222948363999961, 49.07969693000009 ], [ -122.222952572999972, 49.079427089000085 ], [ -122.22336334699996, 49.079429854000061 ], [ -122.223371761999914, 49.078890174000058 ], [ -122.224193300999957, 49.078895699000057 ], [ -122.224197503999974, 49.078625859000077 ], [ -122.224608270999951, 49.078628620000096 ], [ -122.224612471999933, 49.078358779000069 ], [ -122.226255533999975, 49.078369805000079 ], [ -122.226251341999927, 49.078639646000049 ], [ -122.226662109999921, 49.078642399000096 ], [ -122.226653729999924, 49.079182079000091 ], [ -122.227064502999966, 49.079184830000031 ], [ -122.227060314999932, 49.079454670000118 ], [ -122.227471090000037, 49.079457420000097 ], [ -122.227466903999982, 49.079727260000084 ], [ -122.227877680999939, 49.079730009000066 ], [ -122.227860948999975, 49.08080937000004 ], [ -122.225807019999976, 49.080795612000088 ], [ -122.225811214999936, 49.080525772000044 ], [ -122.225400431999972, 49.080523016000043 ], [ -122.225392037999953, 49.081062696000082 ], [ -122.224981250999974, 49.081059939000056 ], [ -122.224964452999927, 49.082139298000044 ], [ -122.223732064999979, 49.082131016000091 ], [ -122.223727858999922, 49.082400856000099 ], [ -122.223317061, 49.08239809300003 ], [ -122.223308643999985, 49.082937772000044 ], [ -122.222076234999989, 49.082929473000071 ], [ -122.222072021000017, 49.083199312000055 ], [ -122.220839605999984, 49.083191 ], [ -122.22083538399994, 49.083460839000097 ], [ -122.22060389799999, 49.083459277000038 ], [ -122.220535252999952, 49.084305018000094 ], [ -122.22379184, 49.084419545000031 ], [ -122.223802103999972, 49.084292981000075 ], [ -122.225221465999951, 49.08434286600005 ], [ -122.225257665999933, 49.083896315000061 ], [ -122.227666734999971, 49.083980941000107 ], [ -122.227665762999891, 49.083986557000095 ], [ -122.227530642999952, 49.085009517000046 ], [ -122.227553217999969, 49.0852985920001 ], [ -122.22755609499994, 49.085335141000023 ], [ -122.227836461999942, 49.088926238000049 ], [ -122.227851743999963, 49.089122080000102 ], [ -122.227635776999961, 49.089132755999984 ], [ -122.226799168999932, 49.089103376000025 ], [ -122.226793412999911, 49.089174392000068 ], [ -122.222351945999947, 49.089393817000023 ], [ -122.220179129999963, 49.089380036000072 ], [ -122.218399185999886, 49.089377255000088 ], [ -122.216485714999962, 49.089414833000042 ], [ -122.216413236, 49.089416268000051 ], [ -122.213551583999987, 49.089472390000012 ], [ -122.213173738999899, 49.089481303000056 ], [ -122.210803357999978, 49.089537162000035 ], [ -122.210085935999956, 49.089554066000112 ], [ -122.210250710999944, 49.089067103000055 ], [ -122.210294285999979, 49.088868086000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55547083", "BldgCostT": "34888333", "sL_LossRatio": "0.900590474276976", "sL_AssetLoss": "89589", "sL_BldgLoss": "80683", "sL_StrLoss": "62064", "sL_NStrLoss": "18619", "sL_ContLoss": "8906", "geom_point": "0101000020E61000002F282567558E5EC019B74557F1884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.218912540999966, 49.075081927000092 ], [ -122.218929464, 49.074002567000036 ], [ -122.21851873599995, 49.073999786000051 ], [ -122.218561061999964, 49.071301388000023 ], [ -122.220203887999944, 49.071312498000083 ], [ -122.220199664999939, 49.071582338000027 ], [ -122.220610373999975, 49.071585112000044 ], [ -122.220606153999981, 49.071854953000098 ], [ -122.221427574999936, 49.071860497000053 ], [ -122.221431791999962, 49.071590656000161 ], [ -122.222253209999977, 49.071596195 ], [ -122.222257422999959, 49.071326354000064 ], [ -122.22266813, 49.071329121000083 ], [ -122.222672339999988, 49.071059281000025 ], [ -122.22349375, 49.071064810000131 ], [ -122.223495615000033, 49.070945117000058 ], [ -122.222972994, 49.070926737000057 ], [ -122.223058287999947, 49.069874885000047 ], [ -122.223089795999968, 49.069486316000074 ], [ -122.222592670999916, 49.069468831000066 ], [ -122.222783319999948, 49.067117819000053 ], [ -122.222884263999944, 49.065872905000049 ], [ -122.228207700999945, 49.066060030000088 ], [ -122.228196403999931, 49.067177679000068 ], [ -122.228192881999959, 49.067524930000033 ], [ -122.228175312999952, 49.069262592000044 ], [ -122.22817046699997, 49.069742804000022 ], [ -122.228156161999934, 49.071156111000086 ], [ -122.227247953999935, 49.071155977000103 ], [ -122.22618315899993, 49.071155836000067 ], [ -122.225469253999989, 49.071155712000028 ], [ -122.225324021999967, 49.071155705000152 ], [ -122.224881918999969, 49.071171712000101 ], [ -122.224745523999957, 49.071216495000051 ], [ -122.224471744999946, 49.071250152000125 ], [ -122.224228923999988, 49.071290301000033 ], [ -122.223861970999963, 49.071383765000085 ], [ -122.223634873999956, 49.071441600000071 ], [ -122.223055645999963, 49.071697101000048 ], [ -122.222596241999952, 49.072010917000071 ], [ -122.222210911, 49.072373309000056 ], [ -122.221975221999941, 49.07269677700009 ], [ -122.221843899999925, 49.072965318000037 ], [ -122.221681156999949, 49.073621328000065 ], [ -122.221548976999955, 49.074153981000059 ], [ -122.221500840999965, 49.074250094000021 ], [ -122.221346303999923, 49.07455863400007 ], [ -122.22120216399999, 49.074557661000085 ], [ -122.220974669999961, 49.074556126000047 ], [ -122.220970449999967, 49.074825966000049 ], [ -122.22055971499999, 49.07482319300005 ], [ -122.220555491999946, 49.075093033000016 ], [ -122.218912540999966, 49.075081927000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9835917", "BldgCostT": "6311667", "sL_LossRatio": "0.904879137527561", "sL_AssetLoss": "14785.4", "sL_BldgLoss": "13379", "sL_StrLoss": "10473", "sL_NStrLoss": "2906", "sL_ContLoss": "1406.4", "geom_point": "0101000020E6100000DADAEB72C48C5EC013B190D24F884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.197693326999968, 49.066300574000117 ], [ -122.197702016999969, 49.065760895000039 ], [ -122.197291357999958, 49.06575804100013 ], [ -122.197304397999943, 49.064948524000059 ], [ -122.198125701999942, 49.064954233000044 ], [ -122.198130043999967, 49.064684394000054 ], [ -122.198540692, 49.064687246000055 ], [ -122.198553713, 49.063877729000112 ], [ -122.199375, 49.063883430000054 ], [ -122.199383668999971, 49.063343751000104 ], [ -122.201026225999925, 49.063355133000108 ], [ -122.201004593999969, 49.06470433000009 ], [ -122.201415244999936, 49.064707172000077 ], [ -122.201402272999985, 49.065516689000056 ], [ -122.200991614999978, 49.065513848000137 ], [ -122.200987287999936, 49.065783687000078 ], [ -122.200165969999887, 49.06577799800008 ], [ -122.200161638999987, 49.066047837000077 ], [ -122.199340315999905, 49.066042141000068 ], [ -122.1993359799999, 49.066311981000084 ], [ -122.197693326999968, 49.066300574000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12566667", "BldgCostT": "8666667", "sL_LossRatio": "0.945356456092871", "sL_AssetLoss": "22465.6", "sL_BldgLoss": "21238", "sL_StrLoss": "18087", "sL_NStrLoss": "3151", "sL_ContLoss": "1227.6", "geom_point": "0101000020E61000008BF468CB758C5EC0E010AAD4EC874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.194797291999947, 49.060590309000098 ], [ -122.197749229999914, 49.060651686000092 ], [ -122.197593424999965, 49.062560649000119 ], [ -122.197571497999931, 49.06282930200009 ], [ -122.197055830999972, 49.062811039000032 ], [ -122.196476936999929, 49.06279053300004 ], [ -122.196470473999938, 49.062869691000024 ], [ -122.196440474999918, 49.063237129000051 ], [ -122.19171202699999, 49.063069518000084 ], [ -122.191477085999949, 49.062247697000082 ], [ -122.191455498999986, 49.062009789000065 ], [ -122.191513304999944, 49.061721594000062 ], [ -122.191642715999947, 49.061478191000049 ], [ -122.191861697999968, 49.061260611000058 ], [ -122.19218341699991, 49.061058396000135 ], [ -122.192510474999949, 49.060913370000023 ], [ -122.192541314999971, 49.060899690000063 ], [ -122.192918798000022, 49.060802191000093 ], [ -122.193984661999949, 49.060801201000039 ], [ -122.194403871999896, 49.060800796000045 ], [ -122.194472718, 49.060712174000145 ], [ -122.194797291999947, 49.060590309000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70014917", "BldgCostT": "45106667", "sL_LossRatio": "0.858311637460243", "sL_AssetLoss": "145573", "sL_BldgLoss": "124947", "sL_StrLoss": "93746", "sL_NStrLoss": "31201", "sL_ContLoss": "20626", "geom_point": "0101000020E61000001B13CDC9EC8C5EC07FCEEEDA6F894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.205429601, 49.077135109000096 ], [ -122.20508401699999, 49.076890202000101 ], [ -122.203815580999972, 49.076359500000066 ], [ -122.202685402999961, 49.075813796 ], [ -122.202000388999977, 49.075365803000082 ], [ -122.201908295999971, 49.075313478000055 ], [ -122.201939245999966, 49.074933950000073 ], [ -122.201193932999956, 49.074907590000109 ], [ -122.201002094000017, 49.074798588000135 ], [ -122.200587326999965, 49.074613496000026 ], [ -122.200214380999924, 49.074409523000035 ], [ -122.200025555999972, 49.074306193000069 ], [ -122.199584809, 49.074065096000069 ], [ -122.19851034299991, 49.073843275000044 ], [ -122.197971804999966, 49.073732096000064 ], [ -122.197456393999914, 49.073539015000094 ], [ -122.197199421999969, 49.073350402000123 ], [ -122.196463582999939, 49.072714320000102 ], [ -122.196421924999953, 49.07267830300006 ], [ -122.194725496999951, 49.071491308000127 ], [ -122.193368698999933, 49.070538893000027 ], [ -122.19318221599994, 49.070308688000061 ], [ -122.193060959, 49.070093749000073 ], [ -122.192994398999957, 49.069975711000112 ], [ -122.192868749999931, 49.069472734000065 ], [ -122.19271266599992, 49.068848110000054 ], [ -122.192630299999962, 49.068518510000104 ], [ -122.192614102999983, 49.068265518 ], [ -122.192639596, 49.068036497000072 ], [ -122.192873594999966, 49.067384800000085 ], [ -122.192916969, 49.067186939000095 ], [ -122.193867516999987, 49.067220637000098 ], [ -122.19372381, 49.068979315000085 ], [ -122.193795127999948, 49.068981842000035 ], [ -122.193676349999933, 49.070435363000044 ], [ -122.195463760999957, 49.070498703000034 ], [ -122.195435824999947, 49.070840716000049 ], [ -122.196417148999942, 49.070875478000055 ], [ -122.19641307099999, 49.070925407000068 ], [ -122.197301020999959, 49.070956854000052 ], [ -122.197284191999969, 49.071163004000077 ], [ -122.198025355999974, 49.071189247000106 ], [ -122.198025817999948, 49.071160525000089 ], [ -122.197615113999944, 49.071157671000101 ], [ -122.197619459999942, 49.070887833000015 ], [ -122.197208758999949, 49.070884977000098 ], [ -122.197217455, 49.070345300000035 ], [ -122.196806758999955, 49.070342442000083 ], [ -122.196811107999949, 49.07007260400011 ], [ -122.196400413999982, 49.070069745000083 ], [ -122.196413471, 49.069260229000079 ], [ -122.19887759599996, 49.069277359000047 ], [ -122.198873257999935, 49.069547198000102 ], [ -122.199283948999906, 49.069550048000046 ], [ -122.199279610999952, 49.069819887000136 ], [ -122.199690305, 49.069822735000088 ], [ -122.199681635, 49.070362412000051 ], [ -122.200913725999925, 49.070370950000125 ], [ -122.200909397999951, 49.070640788000077 ], [ -122.20132009699995, 49.070643631000081 ], [ -122.201309489, 49.071305467000052 ], [ -122.201720005999945, 49.071319987000081 ], [ -122.201726473999884, 49.070916311000097 ], [ -122.20295857799999, 49.07092482700007 ], [ -122.202954262999953, 49.071194666000096 ], [ -122.204186374999964, 49.071203168000103 ], [ -122.204182063999966, 49.071473007000122 ], [ -122.204592770999966, 49.071475838000012 ], [ -122.204571228999953, 49.072825034000083 ], [ -122.204160512999934, 49.072822202000111 ], [ -122.204156200999961, 49.073092042 ], [ -122.202924041999921, 49.073083538000056 ], [ -122.202932676999964, 49.072543860000074 ], [ -122.202579622999949, 49.072541422000043 ], [ -122.202464070999966, 49.073958629000074 ], [ -122.207480446999952, 49.074135890000058 ], [ -122.207431410999931, 49.074738059000069 ], [ -122.208156859999974, 49.074763674000046 ], [ -122.208011543999987, 49.076548457000143 ], [ -122.208952042999968, 49.076581657000098 ], [ -122.208910284, 49.077094652000028 ], [ -122.20900957299996, 49.07709815700013 ], [ -122.208792817999921, 49.079760748000076 ], [ -122.208614494999949, 49.079770940000067 ], [ -122.20542474299999, 49.079832294000013 ], [ -122.205571931999927, 49.079504795000048 ], [ -122.205595020999979, 49.077949382000121 ], [ -122.20559938400001, 49.077654893000052 ], [ -122.205568594999988, 49.077310403000055 ], [ -122.205466354999913, 49.077181440000068 ], [ -122.205429601, 49.077135109000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48815417", "BldgCostT": "32191667", "sL_LossRatio": "0.919596649783772", "sL_AssetLoss": "86991.4", "sL_BldgLoss": "79997", "sL_StrLoss": "63636", "sL_NStrLoss": "16361", "sL_ContLoss": "6994.4", "geom_point": "0101000020E610000027605C261A8E5EC0607BC102F3864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.214268815999944, 49.05696918900005 ], [ -122.214277322000015, 49.056429507000075 ], [ -122.21386673899994, 49.056426712000146 ], [ -122.213901715999938, 49.054208657000096 ], [ -122.214959538999921, 49.053741516000045 ], [ -122.214982224999957, 49.053735610000039 ], [ -122.21555153599995, 49.05373948200009 ], [ -122.215553939999936, 49.053586750000036 ], [ -122.217127784999946, 49.053176942000036 ], [ -122.217462342999937, 49.053050789000061 ], [ -122.218921513999987, 49.052218667000027 ], [ -122.219032907999988, 49.052279370000129 ], [ -122.219854396999921, 49.052239803000056 ], [ -122.220396418999911, 49.05222100800006 ], [ -122.220747332999935, 49.052163046000025 ], [ -122.22145276599997, 49.051884035000107 ], [ -122.222056689999931, 49.051743026000061 ], [ -122.222987895999921, 49.051688674000076 ], [ -122.223145565999928, 49.051679460000074 ], [ -122.223768218999936, 49.051510229000037 ], [ -122.224047737999939, 49.051472962000027 ], [ -122.224235868999969, 49.051447865000085 ], [ -122.224249609999944, 49.05144602900009 ], [ -122.224340657999932, 49.051453730000034 ], [ -122.224393329999927, 49.051496172000029 ], [ -122.224358339999981, 49.051641893000117 ], [ -122.224349950999922, 49.051676769000018 ], [ -122.224353253999951, 49.051855385000074 ], [ -122.224429545999953, 49.051960848000114 ], [ -122.224571736999977, 49.052029854000033 ], [ -122.22478485699996, 49.052068007000038 ], [ -122.22513281, 49.052063107000052 ], [ -122.225207865999963, 49.052403842000111 ], [ -122.225412228999971, 49.05275272600008 ], [ -122.225769899999946, 49.053067318000046 ], [ -122.225872123999949, 49.053156563000101 ], [ -122.226130936999979, 49.053306303000085 ], [ -122.226693177999948, 49.053510886000048 ], [ -122.227660651999912, 49.053680124000074 ], [ -122.22765587899994, 49.053764111000085 ], [ -122.227852074999987, 49.054362174000104 ], [ -122.227449481999898, 49.054359479000055 ], [ -122.22744530099996, 49.054629321000071 ], [ -122.226624159999986, 49.054623821000156 ], [ -122.226619974999949, 49.054893663000051 ], [ -122.226209401999981, 49.054890911000015 ], [ -122.22620521499999, 49.055160751000066 ], [ -122.225794638999943, 49.055157998000077 ], [ -122.225790447999984, 49.05542783900011 ], [ -122.223326991999897, 49.055411287000076 ], [ -122.223322787999962, 49.05568112800011 ], [ -122.222912209999961, 49.05567836400013 ], [ -122.22290800199994, 49.055948205000078 ], [ -122.221676261999917, 49.055939905000038 ], [ -122.221680474999943, 49.05567006400004 ], [ -122.220859318999885, 49.055664523000125 ], [ -122.220855101999987, 49.055934364000066 ], [ -122.220033942, 49.055928817000066 ], [ -122.220029719999943, 49.056198658000071 ], [ -122.217976808999978, 49.056184766000072 ], [ -122.217981041999948, 49.055914925000103 ], [ -122.217570463999948, 49.055912142000068 ], [ -122.217557756999938, 49.056721664000065 ], [ -122.216736583999989, 49.056716094000073 ], [ -122.216732343999979, 49.056985934000089 ], [ -122.214268815999944, 49.05696918900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132020083", "BldgCostT": "89158333", "sL_LossRatio": "0.81643302502271", "sL_AssetLoss": "581232", "sL_BldgLoss": "474537", "sL_StrLoss": "305802", "sL_NStrLoss": "168735", "sL_ContLoss": "106695", "geom_point": "0101000020E61000004163BBB5AB8F5EC04B4B7A5205894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.24506864899999, 49.071604496000077 ], [ -122.244681728999936, 49.071563895000033 ], [ -122.244139556999968, 49.071551576000097 ], [ -122.243861916999947, 49.071545256000043 ], [ -122.243455701999949, 49.07153601100002 ], [ -122.24291361799996, 49.071523682000134 ], [ -122.242611481999987, 49.071509688000056 ], [ -122.241804812999959, 49.07147226900009 ], [ -122.241599091999959, 49.071426300000049 ], [ -122.241333114000014, 49.071329549000069 ], [ -122.241138886999963, 49.071209156000066 ], [ -122.241027539999962, 49.07106191400009 ], [ -122.240940803999962, 49.070932667000115 ], [ -122.240862913999976, 49.070727089000052 ], [ -122.24088775200002, 49.070504379000035 ], [ -122.241031926999952, 49.070270695000019 ], [ -122.241268853999898, 49.06988666800008 ], [ -122.241342418999963, 49.069602539000115 ], [ -122.241343101999959, 49.069518134000056 ], [ -122.241345387, 49.069226704000052 ], [ -122.241363826999986, 49.068540401000128 ], [ -122.241404803999956, 49.067828701000089 ], [ -122.24437659799996, 49.06787768700012 ], [ -122.244648494999936, 49.067917894000111 ], [ -122.244945695999903, 49.068001291000023 ], [ -122.24503503399994, 49.068080490000078 ], [ -122.245244658999965, 49.068266328000043 ], [ -122.245254801999963, 49.068275291000106 ], [ -122.245281200999926, 49.068627811000091 ], [ -122.245365887, 49.068901307000019 ], [ -122.245556702999977, 49.06908098300007 ], [ -122.245742386999936, 49.069189399000052 ], [ -122.246017991, 49.069251293000065 ], [ -122.246298165, 49.069250663000041 ], [ -122.246407859, 49.069250426000032 ], [ -122.246647817999971, 49.069249900000031 ], [ -122.246995596999966, 49.069282819000051 ], [ -122.246827904999961, 49.069528484000038 ], [ -122.246471187999958, 49.070558111000018 ], [ -122.248212910999982, 49.07082369700003 ], [ -122.248217331999939, 49.071118942000055 ], [ -122.248220210999975, 49.071310710000077 ], [ -122.24845679799995, 49.071518202000107 ], [ -122.24878929, 49.071638009000033 ], [ -122.249422305999957, 49.071648431000021 ], [ -122.249529398999968, 49.0725627160001 ], [ -122.249538482999981, 49.072726856000024 ], [ -122.249570112999947, 49.073298002000051 ], [ -122.24844777499996, 49.073294798000077 ], [ -122.247584986999954, 49.073298895000057 ], [ -122.247320889999926, 49.073264509000083 ], [ -122.247063401999966, 49.073181487000063 ], [ -122.246753174999981, 49.072969691000047 ], [ -122.246413758999935, 49.072534504000018 ], [ -122.246295547999964, 49.072382999000084 ], [ -122.246101798999973, 49.072134602000091 ], [ -122.245886109999958, 49.071957590000082 ], [ -122.245371638, 49.071717793000033 ], [ -122.24506864899999, 49.071604496000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235093166", "BldgCostT": "154346666", "sL_LossRatio": "0.831091798585866", "sL_AssetLoss": "829030.2", "sL_BldgLoss": "689000.2", "sL_StrLoss": "457487.2", "sL_NStrLoss": "231513", "sL_ContLoss": "140030", "geom_point": "0101000020E61000008499C7AB7D8F5EC0FA0D1B7E1A894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.242326124000016, 49.075143803000095 ], [ -122.24232879499999, 49.074968149000036 ], [ -122.241918055999975, 49.074965451 ], [ -122.241934478999951, 49.073886086000051 ], [ -122.242345211, 49.073888783000037 ], [ -122.24235341799999, 49.073349100000073 ], [ -122.239478338999987, 49.073330192000107 ], [ -122.239482459999948, 49.073060351000059 ], [ -122.239071735999971, 49.07305764300002 ], [ -122.239079978999953, 49.072517961000109 ], [ -122.238669260999984, 49.072515252000066 ], [ -122.238669802999965, 49.072479762000043 ], [ -122.238196053999943, 49.072463168000063 ], [ -122.238168299999955, 49.072806798000087 ], [ -122.237184951999907, 49.07277234800015 ], [ -122.236980900999967, 49.072449874000029 ], [ -122.236432375, 49.071720130000038 ], [ -122.236122498999961, 49.071296320000023 ], [ -122.235779308999923, 49.070966933000072 ], [ -122.235404246999948, 49.070687326000076 ], [ -122.235517560999938, 49.07060523400007 ], [ -122.236096612999972, 49.070185805000051 ], [ -122.23642420499999, 49.069948464000099 ], [ -122.23661898, 49.069807369000102 ], [ -122.236632869999966, 49.069797325000089 ], [ -122.237551814999946, 49.069130826000084 ], [ -122.237831338999911, 49.068839508000096 ], [ -122.238022592999982, 49.06847116900007 ], [ -122.23814687199993, 49.06774618500004 ], [ -122.238298000999961, 49.067399877000064 ], [ -122.238598744999962, 49.067048909000043 ], [ -122.238990353999966, 49.06677592300008 ], [ -122.239381686999934, 49.066591279000122 ], [ -122.241205399999927, 49.066035761000087 ], [ -122.241300100999965, 49.066006888000068 ], [ -122.241659163999955, 49.065897524000022 ], [ -122.241782912999923, 49.065856774000096 ], [ -122.243221137999939, 49.065368888000144 ], [ -122.243668817999946, 49.065163666000089 ], [ -122.244525172999943, 49.064269539000051 ], [ -122.245241467999932, 49.064892319000087 ], [ -122.245355482999983, 49.065158611000129 ], [ -122.245353102999928, 49.065357801000118 ], [ -122.245238910999944, 49.065518804000114 ], [ -122.245120792999913, 49.065658890000066 ], [ -122.244891994999975, 49.065815 ], [ -122.244324803999959, 49.066021461000048 ], [ -122.24389778799997, 49.066176891000083 ], [ -122.243387499999955, 49.06669999000006 ], [ -122.242938405999965, 49.066956496000032 ], [ -122.242645601999982, 49.067074293000097 ], [ -122.242082718999953, 49.067179905000017 ], [ -122.24183128599995, 49.067275701000092 ], [ -122.241550183999919, 49.067502909999988 ], [ -122.241443082999965, 49.067676798000043 ], [ -122.241404803999956, 49.067828701000089 ], [ -122.241363826999986, 49.068540401000128 ], [ -122.241345387, 49.069226704000052 ], [ -122.241343101999959, 49.069518134000056 ], [ -122.241342418999963, 49.069602539000115 ], [ -122.241268853999898, 49.06988666800008 ], [ -122.241031926999952, 49.070270695000019 ], [ -122.24088775200002, 49.070504379000035 ], [ -122.240862913999976, 49.070727089000052 ], [ -122.240940803999962, 49.070932667000115 ], [ -122.241027539999962, 49.07106191400009 ], [ -122.241138886999963, 49.071209156000066 ], [ -122.241333114000014, 49.071329549000069 ], [ -122.241599091999959, 49.071426300000049 ], [ -122.241804812999959, 49.07147226900009 ], [ -122.242611481999987, 49.071509688000056 ], [ -122.24291361799996, 49.071523682000134 ], [ -122.243455701999949, 49.07153601100002 ], [ -122.243861916999947, 49.071545256000043 ], [ -122.244139556999968, 49.071551576000097 ], [ -122.244681728999936, 49.071563895000033 ], [ -122.24506864899999, 49.071604496000077 ], [ -122.245371638, 49.071717793000033 ], [ -122.245886109999958, 49.071957590000082 ], [ -122.246101798999973, 49.072134602000091 ], [ -122.246295547999964, 49.072382999000084 ], [ -122.246413758999935, 49.072534504000018 ], [ -122.246753174999981, 49.072969691000047 ], [ -122.247063401999966, 49.073181487000063 ], [ -122.247320889999926, 49.073264509000083 ], [ -122.247584986999954, 49.073298895000057 ], [ -122.24844777499996, 49.073294798000077 ], [ -122.249570112999947, 49.073298002000051 ], [ -122.249579569999952, 49.073474690000118 ], [ -122.249586477999955, 49.073604093000078 ], [ -122.249433296999968, 49.074317295000114 ], [ -122.24941028799995, 49.074457306000049 ], [ -122.249384986999971, 49.074611294000121 ], [ -122.249393747999974, 49.074848756000073 ], [ -122.24939382699999, 49.074851710000139 ], [ -122.249404299999952, 49.075135788000033 ], [ -122.24824079399994, 49.075133892000075 ], [ -122.246789975999945, 49.0751296440001 ], [ -122.246776294999961, 49.075129608000111 ], [ -122.244799296999972, 49.075131704000093 ], [ -122.244798113999977, 49.075131150000061 ], [ -122.242377957999949, 49.075143186000048 ], [ -122.242326124000016, 49.075143803000095 ] ], [ [ -122.239545895999967, 49.068904323000041 ], [ -122.239564531999946, 49.067683273000071 ], [ -122.238743530999955, 49.067654519000108 ], [ -122.238735230999964, 49.068197791000038 ], [ -122.238324546999948, 49.068195082000031 ], [ -122.238316297999944, 49.068734765000059 ], [ -122.238076478999943, 49.068733181000013 ], [ -122.238066840999963, 49.068852518000021 ], [ -122.239545895999967, 49.068904323000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91319583", "BldgCostT": "57588333", "sL_LossRatio": "0.816521308121447", "sL_AssetLoss": "284469", "sL_BldgLoss": "232275", "sL_StrLoss": "147283", "sL_NStrLoss": "84992", "sL_ContLoss": "52194", "geom_point": "0101000020E6100000D44266BAD98E5EC09913492E5E894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.234828750999938, 49.070948427000069 ], [ -122.235404246999948, 49.070687326000076 ], [ -122.235779308999923, 49.070966933000072 ], [ -122.236122498999961, 49.071296320000023 ], [ -122.236432375, 49.071720130000038 ], [ -122.236980900999967, 49.072449874000029 ], [ -122.237184951999907, 49.07277234800015 ], [ -122.236201287999933, 49.072737879000073 ], [ -122.236188402999986, 49.073578334000082 ], [ -122.236004470999944, 49.073577117000063 ], [ -122.235777676999987, 49.073575616000113 ], [ -122.235769395999966, 49.074115299000034 ], [ -122.235358665999925, 49.074112578000012 ], [ -122.235350381999979, 49.074652259000096 ], [ -122.233296703999969, 49.074638636 ], [ -122.233292549999987, 49.074908476000061 ], [ -122.23247107499995, 49.074903016000114 ], [ -122.23246691899999, 49.075172858000066 ], [ -122.23205617799999, 49.075170125000113 ], [ -122.232043698999988, 49.0759796480001 ], [ -122.228663546999925, 49.075957109000043 ], [ -122.228250933999945, 49.07249390700013 ], [ -122.228156161999934, 49.071156111000086 ], [ -122.228255508999922, 49.071156114000104 ], [ -122.229209428, 49.071156241000075 ], [ -122.230606254999941, 49.071156399000145 ], [ -122.232605324999938, 49.071156577000089 ], [ -122.233774259999961, 49.071156692000045 ], [ -122.233893733999963, 49.07113801400002 ], [ -122.234259502999947, 49.071080843000033 ], [ -122.234738086999982, 49.070969524000077 ], [ -122.234828750999938, 49.070948427000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71214333", "BldgCostT": "46143333", "sL_LossRatio": "0.740508710157758", "sL_AssetLoss": "443907", "sL_BldgLoss": "328717", "sL_StrLoss": "186545", "sL_NStrLoss": "142172", "sL_ContLoss": "115190", "geom_point": "0101000020E6100000AFF2A197D38F5EC03DA81F2FFF894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.244337463999955, 49.077949867000079 ], [ -122.244333368999946, 49.078219708000091 ], [ -122.245154901999939, 49.07822508400011 ], [ -122.24515081199992, 49.078494925000079 ], [ -122.24597235, 49.078500295000055 ], [ -122.245968263999941, 49.078770136000045 ], [ -122.246125024999955, 49.078771161000105 ], [ -122.246146766999985, 49.078501434000032 ], [ -122.24597235, 49.078500295000055 ], [ -122.245976433999886, 49.078230454000106 ], [ -122.245565666999951, 49.078227769000137 ], [ -122.245569754999934, 49.077957928000032 ], [ -122.244337463999955, 49.077949867000079 ], [ -122.244353836999949, 49.076870502000041 ], [ -122.2447645929999, 49.076873190000057 ], [ -122.244772773999955, 49.076333507000044 ], [ -122.244362024999944, 49.076330818000024 ], [ -122.244370210999989, 49.075791136000134 ], [ -122.243548718999989, 49.07578575500002 ], [ -122.243556913999939, 49.075246072000013 ], [ -122.242324689999947, 49.075237990000041 ], [ -122.242326124000016, 49.075143803000095 ], [ -122.242377957999949, 49.075143186000048 ], [ -122.244798113999977, 49.075131150000061 ], [ -122.244799296999972, 49.075131704000093 ], [ -122.246776294999961, 49.075129608000111 ], [ -122.246789975999945, 49.0751296440001 ], [ -122.24824079399994, 49.075133892000075 ], [ -122.249404299999952, 49.075135788000033 ], [ -122.249452686000026, 49.076405008000087 ], [ -122.249346996999989, 49.076869981000065 ], [ -122.249325594999931, 49.076964015000058 ], [ -122.249331323999954, 49.07714721100006 ], [ -122.249349028999973, 49.077265942000089 ], [ -122.249380196999937, 49.077475270000065 ], [ -122.249614368999971, 49.077966929000063 ], [ -122.2496454, 49.078032137000072 ], [ -122.249781871999986, 49.078318690000046 ], [ -122.249855563999944, 49.079988133000057 ], [ -122.249868312999951, 49.080985672000097 ], [ -122.249986362999934, 49.081253925000034 ], [ -122.250121308999923, 49.081448864000137 ], [ -122.250286922, 49.081602496000102 ], [ -122.25052996099997, 49.081769013000041 ], [ -122.250550348999965, 49.081782975000095 ], [ -122.252352544999937, 49.082314655000069 ], [ -122.252577439999982, 49.082380989000043 ], [ -122.252619387999971, 49.082393349000057 ], [ -122.252669833999903, 49.082403078000034 ], [ -122.252900682999893, 49.082447563000052 ], [ -122.253030621999983, 49.082472627000087 ], [ -122.252467100999951, 49.082482583000093 ], [ -122.252036519999962, 49.082490217000071 ], [ -122.251040495000026, 49.082440909000056 ], [ -122.250987801999926, 49.082438280000169 ], [ -122.25086238099999, 49.082423920000089 ], [ -122.250468082999959, 49.082378696000056 ], [ -122.250031282999956, 49.08227780300011 ], [ -122.249800588000014, 49.082200298000046 ], [ -122.248762081999985, 49.081716003000047 ], [ -122.248449393, 49.081517608000084 ], [ -122.248062228999956, 49.081344503 ], [ -122.24764118399996, 49.080928586 ], [ -122.247343183999959, 49.08076949900002 ], [ -122.247148108999923, 49.080557099 ], [ -122.246995006999953, 49.080315612000021 ], [ -122.246789707999952, 49.079821597000048 ], [ -122.246696291999925, 49.079689399000081 ], [ -122.246221100999904, 49.079469892000112 ], [ -122.245995702999934, 49.079429593000036 ], [ -122.245600000999957, 49.079243595000023 ], [ -122.245578177999974, 49.079230266000074 ], [ -122.244917589999929, 49.078826698000107 ], [ -122.244771613999916, 49.078785496000094 ], [ -122.244026591, 49.078755012000073 ], [ -122.243905494999922, 49.07869478800005 ], [ -122.243788613999968, 49.078582607000115 ], [ -122.243235104999954, 49.078179210000052 ], [ -122.242872995999946, 49.078085294000068 ], [ -122.242674603999944, 49.078083786000036 ], [ -122.241982008000022, 49.07821738900001 ], [ -122.241868624999967, 49.078213392000066 ], [ -122.241876987999973, 49.077663864000144 ], [ -122.243930794999969, 49.077677335000068 ], [ -122.243926699000028, 49.077947177000027 ], [ -122.244337463999955, 49.077949867000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10281667", "BldgCostT": "5616667", "sL_LossRatio": "0.751281722635222", "sL_AssetLoss": "15604", "sL_BldgLoss": "11723", "sL_StrLoss": "6400", "sL_NStrLoss": "5323", "sL_ContLoss": "3881", "geom_point": "0101000020E6100000CC704DCB998E5EC0F51E159CCD8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.227666734999971, 49.083980941000107 ], [ -122.229175991999938, 49.084033931000114 ], [ -122.228989799999937, 49.084126684000111 ], [ -122.228483080999936, 49.08460030100008 ], [ -122.227992317000016, 49.084912104000047 ], [ -122.227621698999926, 49.085007286000049 ], [ -122.227530642999952, 49.085009517000046 ], [ -122.227665762999891, 49.083986557000095 ], [ -122.227666734999971, 49.083980941000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6333333", "BldgCostT": "4158333", "sL_LossRatio": "0.68769902111098", "sL_AssetLoss": "33916", "sL_BldgLoss": "23324", "sL_StrLoss": "11982", "sL_NStrLoss": "11342", "sL_ContLoss": "10592", "geom_point": "0101000020E61000001DFC2F9DB78E5EC0CF733C4D03874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.228269929, 49.054409545000127 ], [ -122.228270618999915, 49.054364974000102 ], [ -122.228162218999955, 49.054364248000091 ], [ -122.228034371999911, 49.054195565000057 ], [ -122.227921993999985, 49.053919757000074 ], [ -122.22783162199994, 49.053832385000099 ], [ -122.228492822999897, 49.054093440000081 ], [ -122.228622616999971, 49.054142415000044 ], [ -122.231545881999978, 49.054988932000072 ], [ -122.231538524999962, 49.055466256000038 ], [ -122.23059411399997, 49.055459964000121 ], [ -122.230363657999987, 49.05528319800009 ], [ -122.229360110999949, 49.054750131000091 ], [ -122.228623524999989, 49.054525870000077 ], [ -122.228269929, 49.054409545000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153234166", "BldgCostT": "99631666", "sL_LossRatio": "0.815616670325191", "sL_AssetLoss": "637780", "sL_BldgLoss": "520184", "sL_StrLoss": "323671", "sL_NStrLoss": "196513", "sL_ContLoss": "117596", "geom_point": "0101000020E61000001E4ECBD5708F5EC0B0794DF6EC874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.238620816999969, 49.062250168000112 ], [ -122.238486431999959, 49.061761052000072 ], [ -122.238384867999969, 49.061781813000124 ], [ -122.23790872599993, 49.06177352600011 ], [ -122.23783152399993, 49.061770149000033 ], [ -122.237412588999973, 49.061751810000054 ], [ -122.23739895099996, 49.061751211000072 ], [ -122.236571967999936, 49.061714993000123 ], [ -122.236210211999975, 49.061185230000135 ], [ -122.236197426999951, 49.061164435000116 ], [ -122.23678927399996, 49.061168351000063 ], [ -122.236793405999919, 49.060898509000062 ], [ -122.237204027999923, 49.060901223000045 ], [ -122.237208156999941, 49.060631382000075 ], [ -122.23679753699993, 49.060628667000039 ], [ -122.236805801999978, 49.060088984000117 ], [ -122.236395185999953, 49.06008626800012 ], [ -122.236411720999953, 49.059006902000142 ], [ -122.237643541999944, 49.059015045000066 ], [ -122.237639414999975, 49.059284887000075 ], [ -122.238050023999961, 49.059287598000026 ], [ -122.238041773999939, 49.059827282000114 ], [ -122.238253541999939, 49.059828679000084 ], [ -122.238452387999956, 49.059829992000097 ], [ -122.238448265999963, 49.060099833000031 ], [ -122.241643039999971, 49.060120871000038 ], [ -122.241643702999951, 49.059934165000122 ], [ -122.240774725000023, 49.05990374200011 ], [ -122.240801200999925, 49.059575598000066 ], [ -122.239688346999955, 49.059568271000082 ], [ -122.239692461999979, 49.059298430000126 ], [ -122.238871242999963, 49.059293017000073 ], [ -122.238883603999938, 49.058483491000047 ], [ -122.240526016999965, 49.058494311000025 ], [ -122.240521905999941, 49.058764153000055 ], [ -122.240866489999959, 49.058766420000012 ], [ -122.240902573999975, 49.058319187000095 ], [ -122.242056419, 49.058743442000029 ], [ -122.242110184999916, 49.058762741000102 ], [ -122.243602292999924, 49.060387715000047 ], [ -122.243627110999952, 49.061301801000063 ], [ -122.243641250999929, 49.061787264000053 ], [ -122.243648920999988, 49.062049988000076 ], [ -122.243755991999933, 49.062163688000055 ], [ -122.243889586999927, 49.062204392000119 ], [ -122.244080093999955, 49.062184913000117 ], [ -122.24410993499994, 49.06217768600002 ], [ -122.24451981199995, 49.062078593000159 ], [ -122.244800314999949, 49.062078505000109 ], [ -122.245210996999973, 49.062077601000034 ], [ -122.24575002, 49.062182900000082 ], [ -122.246073680999984, 49.062378200000069 ], [ -122.246598002999988, 49.06312320100006 ], [ -122.245799984999962, 49.063294504000091 ], [ -122.245489483, 49.063410818000094 ], [ -122.245221967999953, 49.063588924000051 ], [ -122.245007677, 49.063798264000091 ], [ -122.244525172999943, 49.064269539000051 ], [ -122.243668817999946, 49.065163666000089 ], [ -122.243221137999939, 49.065368888000144 ], [ -122.241782912999923, 49.065856774000096 ], [ -122.241589681999983, 49.06547717400008 ], [ -122.2415461, 49.065391532000035 ], [ -122.241452113999955, 49.065206887 ], [ -122.241429386999982, 49.065183395000062 ], [ -122.241258809999948, 49.065007171000019 ], [ -122.240017056999989, 49.064072938000066 ], [ -122.239667798999946, 49.063810142000115 ], [ -122.239572386999967, 49.063710673000095 ], [ -122.239198179999974, 49.063320400000094 ], [ -122.23896765399995, 49.062988674000039 ], [ -122.238670488999958, 49.062431012000076 ], [ -122.238620816999969, 49.062250168000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "313835666", "BldgCostT": "195041666", "sL_LossRatio": "0.872826303630395", "sL_AssetLoss": "519213.5", "sL_BldgLoss": "453183.2", "sL_StrLoss": "335215.2", "sL_NStrLoss": "117968", "sL_ContLoss": "66030.3", "geom_point": "0101000020E61000006D2E160A018F5EC0A0044F8481884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.234255042999962, 49.065739336000043 ], [ -122.234665705999959, 49.065742059000108 ], [ -122.234669850999936, 49.065472218000117 ], [ -122.235080510999964, 49.065474940000051 ], [ -122.235084651999969, 49.06520509900011 ], [ -122.235495309999962, 49.065207819000129 ], [ -122.235507729999966, 49.064398296000043 ], [ -122.23591838, 49.064401014000069 ], [ -122.235922517999981, 49.064131173000085 ], [ -122.23551186899999, 49.064128454000098 ], [ -122.235516008999937, 49.063858613000065 ], [ -122.235105360999967, 49.063855892000078 ], [ -122.235109503000018, 49.06358605000009 ], [ -122.234698858999963, 49.063583328000057 ], [ -122.234703001999961, 49.063313486000069 ], [ -122.234292360000012, 49.063310763000054 ], [ -122.234288213999889, 49.063580605000055 ], [ -122.234698858999963, 49.063583328000057 ], [ -122.234673994, 49.06520237600008 ], [ -122.234263337999934, 49.065199652000032 ], [ -122.234255042999962, 49.065739336000043 ], [ -122.233844381999944, 49.065736610000044 ], [ -122.233840232, 49.066006450000053 ], [ -122.233018903999948, 49.06600099600012 ], [ -122.233014751999988, 49.06627083700009 ], [ -122.231372085999965, 49.066259909000038 ], [ -122.23137626599997, 49.06598890600003 ], [ -122.23138457099995, 49.065450386000109 ], [ -122.231162012999917, 49.065448904000071 ], [ -122.230973913999946, 49.065447650000102 ], [ -122.230978076999989, 49.065177809000048 ], [ -122.230567419999915, 49.065175072000031 ], [ -122.230588250999929, 49.063825867000133 ], [ -122.230998896999907, 49.063828604 ], [ -122.231015551999917, 49.062749239 ], [ -122.231426189999951, 49.062751974000108 ], [ -122.231430350999943, 49.062482133000053 ], [ -122.231840985999938, 49.062484866 ], [ -122.23185762199995, 49.061405502000042 ], [ -122.233089499999892, 49.061413694000045 ], [ -122.23308119699999, 49.061953377000108 ], [ -122.233491826999952, 49.061956105000135 ], [ -122.233487676999943, 49.062225946000062 ], [ -122.234308942999974, 49.062231398000023 ], [ -122.234313089999915, 49.061961556000021 ], [ -122.234723720999924, 49.06196428000009 ], [ -122.234732006999963, 49.061424597000062 ], [ -122.235553260999936, 49.061430039000079 ], [ -122.235557399999934, 49.061160197000078 ], [ -122.236197426999951, 49.061164435000116 ], [ -122.236210211999975, 49.061185230000135 ], [ -122.236571967999936, 49.061714993000123 ], [ -122.23739895099996, 49.061751211000072 ], [ -122.237412588999973, 49.061751810000054 ], [ -122.23783152399993, 49.061770149000033 ], [ -122.23790872599993, 49.06177352600011 ], [ -122.238384867999969, 49.061781813000124 ], [ -122.238486431999959, 49.061761052000072 ], [ -122.238620816999969, 49.062250168000112 ], [ -122.238670488999958, 49.062431012000076 ], [ -122.23896765399995, 49.062988674000039 ], [ -122.239198179999974, 49.063320400000094 ], [ -122.239572386999967, 49.063710673000095 ], [ -122.239667798999946, 49.063810142000115 ], [ -122.240017056999989, 49.064072938000066 ], [ -122.241258809999948, 49.065007171000019 ], [ -122.241429386999982, 49.065183395000062 ], [ -122.241452113999955, 49.065206887 ], [ -122.2415461, 49.065391532000035 ], [ -122.241589681999983, 49.06547717400008 ], [ -122.241782912999923, 49.065856774000096 ], [ -122.241659163999955, 49.065897524000022 ], [ -122.241300100999965, 49.066006888000068 ], [ -122.241205399999927, 49.066035761000087 ], [ -122.239381686999934, 49.066591279000122 ], [ -122.238990353999966, 49.06677592300008 ], [ -122.238598744999962, 49.067048909000043 ], [ -122.238298000999961, 49.067399877000064 ], [ -122.23814687199993, 49.06774618500004 ], [ -122.238022592999982, 49.06847116900007 ], [ -122.237831338999911, 49.068839508000096 ], [ -122.237551814999946, 49.069130826000084 ], [ -122.236632869999966, 49.069797325000089 ], [ -122.23661898, 49.069807369000102 ], [ -122.23642420499999, 49.069948464000099 ], [ -122.236096612999972, 49.070185805000051 ], [ -122.235517560999938, 49.07060523400007 ], [ -122.235404246999948, 49.070687326000076 ], [ -122.234828750999938, 49.070948427000069 ], [ -122.234738086999982, 49.070969524000077 ], [ -122.234259502999947, 49.071080843000033 ], [ -122.233893733999963, 49.07113801400002 ], [ -122.233774259999961, 49.071156692000045 ], [ -122.232605324999938, 49.071156577000089 ], [ -122.230606254999941, 49.071156399000145 ], [ -122.229209428, 49.071156241000075 ], [ -122.228255508999922, 49.071156114000104 ], [ -122.228156161999934, 49.071156111000086 ], [ -122.22817046699997, 49.069742804000022 ], [ -122.228175312999952, 49.069262592000044 ], [ -122.228192881999959, 49.067524930000033 ], [ -122.228196403999931, 49.067177679000068 ], [ -122.228207700999945, 49.066060030000088 ], [ -122.228343787999975, 49.066064811000082 ], [ -122.228227156999935, 49.067505245000085 ], [ -122.228724262999918, 49.067522704000069 ], [ -122.228707012999948, 49.067735781000032 ], [ -122.228832532999945, 49.067740190000109 ], [ -122.228840121999966, 49.067646453000116 ], [ -122.229424841999915, 49.067666987000074 ], [ -122.22945011399996, 49.067354768000051 ], [ -122.23270336799996, 49.067468952000127 ], [ -122.232756810999959, 49.066808146000021 ], [ -122.237250788999916, 49.066965715000066 ], [ -122.237282834999945, 49.066568991000032 ], [ -122.236706618999989, 49.06656518100008 ], [ -122.236702483999963, 49.066835022000092 ], [ -122.235059800000016, 49.06682414600008 ], [ -122.23506394199994, 49.06655430600005 ], [ -122.234242604999906, 49.066548858000068 ], [ -122.234255042999962, 49.065739336000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.856489818534423", "sL_AssetLoss": "7219", "sL_BldgLoss": "6183", "sL_StrLoss": "4260", "sL_NStrLoss": "1923", "sL_ContLoss": "1036", "geom_point": "0101000020E610000044809910AF8E5EC06BCF8F330B874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.229485638999975, 49.05545256900011 ], [ -122.229489809999947, 49.055182728000069 ], [ -122.229079234999944, 49.05517998600007 ], [ -122.229083407999937, 49.054910144000097 ], [ -122.228672837, 49.054907401000072 ], [ -122.22867701199999, 49.054637559000099 ], [ -122.228266439999985, 49.05463481400011 ], [ -122.228269929, 49.054409545000127 ], [ -122.228623524999989, 49.054525870000077 ], [ -122.229360110999949, 49.054750131000091 ], [ -122.230363657999987, 49.05528319800009 ], [ -122.23059411399997, 49.055459964000121 ], [ -122.229485638999975, 49.05545256900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.865452930728242", "sL_AssetLoss": "2252", "sL_BldgLoss": "1949", "sL_StrLoss": "1370", "sL_NStrLoss": "579", "sL_ContLoss": "303", "geom_point": "0101000020E610000078C34BAA958E5EC07B6E1DF3EC864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.227852074999987, 49.054362174000104 ], [ -122.22765587899994, 49.053764111000085 ], [ -122.22783162199994, 49.053832385000099 ], [ -122.227921993999985, 49.053919757000074 ], [ -122.228034371999911, 49.054195565000057 ], [ -122.228162218999955, 49.054364248000091 ], [ -122.227852074999987, 49.054362174000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99985500", "BldgCostT": "63270000", "sL_LossRatio": "0.818830948117108", "sL_AssetLoss": "394234", "sL_BldgLoss": "322811", "sL_StrLoss": "201936", "sL_NStrLoss": "120875", "sL_ContLoss": "71423", "geom_point": "0101000020E6100000AFEB590899955EC09F726D2460894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.327280363999961, 49.074220709000038 ], [ -122.328795997, 49.073667707000027 ], [ -122.328804537999986, 49.073667052000118 ], [ -122.328775121999954, 49.074040253000078 ], [ -122.330750208999987, 49.074107747000042 ], [ -122.330842272999973, 49.072939080000033 ], [ -122.331469016999947, 49.072017702000018 ], [ -122.332034105999952, 49.07203700300002 ], [ -122.332037991999954, 49.07198764900005 ], [ -122.332489065999965, 49.072003054000071 ], [ -122.332493276999912, 49.071949560000064 ], [ -122.334076754999955, 49.072003622000118 ], [ -122.334095621999921, 49.071763898 ], [ -122.339556286999951, 49.071950153000039 ], [ -122.339555009999941, 49.071966400000051 ], [ -122.342196039999962, 49.072056381000088 ], [ -122.342272468999909, 49.071083094000087 ], [ -122.342350198999952, 49.071127688000047 ], [ -122.342868800999938, 49.071460907000052 ], [ -122.343202092999945, 49.071749014 ], [ -122.343294660999973, 49.071860390000033 ], [ -122.345032810999967, 49.073951697000076 ], [ -122.345224482999939, 49.07418230200004 ], [ -122.345281403999977, 49.074333592000052 ], [ -122.345346781, 49.074507394000051 ], [ -122.344763292999957, 49.074504738000066 ], [ -122.344530540999983, 49.074503673000038 ], [ -122.344297787999921, 49.074502611000085 ], [ -122.341285644999942, 49.074488738000113 ], [ -122.339697343999887, 49.074481406000118 ], [ -122.339040104999981, 49.074478371000048 ], [ -122.338459659999913, 49.07447568 ], [ -122.334731541999986, 49.074413420000113 ], [ -122.333874889999933, 49.074375157000091 ], [ -122.332215304999963, 49.074415857000126 ], [ -122.329059324999903, 49.074403916000122 ], [ -122.327376438999963, 49.07439749100007 ], [ -122.326990508, 49.074396023000048 ], [ -122.327172107999942, 49.074260184000124 ], [ -122.327280363999961, 49.074220709000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98934667", "BldgCostT": "63786667", "sL_LossRatio": "0.751690251267203", "sL_AssetLoss": "644135", "sL_BldgLoss": "484190", "sL_StrLoss": "267490", "sL_NStrLoss": "216700", "sL_ContLoss": "159945", "geom_point": "0101000020E6100000416A5EFE58955EC0EEC84741A6884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.339739957999925, 49.07070887100015 ], [ -122.339743534000021, 49.070439025000098 ], [ -122.339332823999968, 49.070436673000131 ], [ -122.339336401999972, 49.070166827 ], [ -122.338925693999926, 49.070164475000134 ], [ -122.338932125999989, 49.06967957700008 ], [ -122.33852157799997, 49.069665580000077 ], [ -122.338514984999946, 49.070162122000056 ], [ -122.338104276999957, 49.070159768000053 ], [ -122.338100692999987, 49.070429615000144 ], [ -122.334676816999917, 49.070409931 ], [ -122.334681590999963, 49.06902023700011 ], [ -122.328696155999978, 49.067819350000086 ], [ -122.326030615999983, 49.067316067000078 ], [ -122.325797398999939, 49.067272047000117 ], [ -122.325890405999971, 49.067272805000094 ], [ -122.326385515999959, 49.067191405000102 ], [ -122.326729109, 49.067086004000075 ], [ -122.326760712999942, 49.067069229000076 ], [ -122.327069086999984, 49.066905596000012 ], [ -122.327318400999943, 49.066695108 ], [ -122.327595386999946, 49.066306107000109 ], [ -122.327743296, 49.065957814000107 ], [ -122.327832711000028, 49.065413703000047 ], [ -122.327748394999929, 49.065060116000076 ], [ -122.327506214999957, 49.06474620300007 ], [ -122.32762539399998, 49.064709712000074 ], [ -122.327961904999967, 49.064608481000043 ], [ -122.3284346, 49.064514699000078 ], [ -122.328839712, 49.064497888000098 ], [ -122.330070807999945, 49.064539994000022 ], [ -122.330595908999911, 49.064737304000062 ], [ -122.33017332499999, 49.06518492100011 ], [ -122.330144885999957, 49.065215009000084 ], [ -122.330105671999945, 49.06533089200007 ], [ -122.330489511999971, 49.065445902000064 ], [ -122.330939407999949, 49.065519811000115 ], [ -122.331547557999954, 49.065521129000025 ], [ -122.332909906999973, 49.065524099000122 ], [ -122.332913992999949, 49.066237291000043 ], [ -122.335981217999986, 49.066236504000102 ], [ -122.337062505999981, 49.066235497000015 ], [ -122.337904210999938, 49.066234848000057 ], [ -122.338068353999958, 49.066234714000089 ], [ -122.338095937999952, 49.066234710000053 ], [ -122.338221725999958, 49.066236287000024 ], [ -122.338307895999932, 49.068396433000032 ], [ -122.338341490999966, 49.068543627000061 ], [ -122.338547350999988, 49.068832796000081 ], [ -122.338656282999949, 49.068926654000101 ], [ -122.339104615999929, 49.069196168000097 ], [ -122.339151727999962, 49.069258160000111 ], [ -122.339267939999957, 49.069329727000103 ], [ -122.339672412999931, 49.069587626000057 ], [ -122.339769789999934, 49.069649695000102 ], [ -122.339788016999961, 49.06966009500011 ], [ -122.340428709999912, 49.070025603000062 ], [ -122.340439402999948, 49.070031713000063 ], [ -122.34062130199996, 49.070135793000063 ], [ -122.341639086999947, 49.070719720000049 ], [ -122.339739957999925, 49.07070887100015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146441335", "BldgCostT": "94658335", "sL_LossRatio": "0.762036467451421", "sL_AssetLoss": "1055023", "sL_BldgLoss": "803966", "sL_StrLoss": "418561", "sL_NStrLoss": "385405", "sL_ContLoss": "251057", "geom_point": "0101000020E610000017159AB9BA945EC08DA8EDB221894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.318537809999938, 49.07184390200009 ], [ -122.318958997999971, 49.071103798000088 ], [ -122.319048559999928, 49.071032026000076 ], [ -122.319457412999895, 49.070704399000064 ], [ -122.319727885999953, 49.070485603000051 ], [ -122.320112904999974, 49.070289586000037 ], [ -122.31991129, 49.070051897000056 ], [ -122.31986620099994, 49.068855882000037 ], [ -122.31992899, 49.068754411000064 ], [ -122.320075386999989, 49.068668406 ], [ -122.320501585999949, 49.068662204000042 ], [ -122.320890993999939, 49.068618801000106 ], [ -122.321324725999943, 49.068499303000053 ], [ -122.320799400999988, 49.067906189000091 ], [ -122.321038701999925, 49.067268891000019 ], [ -122.321467607999949, 49.067331387000138 ], [ -122.321515362999946, 49.06733143000011 ], [ -122.323022416999947, 49.067332397 ], [ -122.323692114999943, 49.067332933000088 ], [ -122.324291085999931, 49.067333411000028 ], [ -122.324646678999926, 49.067285195000053 ], [ -122.324714591999907, 49.067276447000019 ], [ -122.324812607999945, 49.067263800000021 ], [ -122.325130402999946, 49.067266463000095 ], [ -122.325797398999939, 49.067272047000117 ], [ -122.326030615999983, 49.067316067000078 ], [ -122.328696155999978, 49.067819350000086 ], [ -122.334681590999963, 49.06902023700011 ], [ -122.334676816999917, 49.070409931 ], [ -122.332350756999958, 49.070396497000075 ], [ -122.332357988999917, 49.069856803000093 ], [ -122.331536579, 49.069852049000076 ], [ -122.331547438999962, 49.069042508000045 ], [ -122.330726043999988, 49.069037749000074 ], [ -122.330729667999975, 49.068767902000062 ], [ -122.330318972999947, 49.068765519000074 ], [ -122.330322597999952, 49.068495673000044 ], [ -122.32950121199994, 49.068490903000033 ], [ -122.329504842999953, 49.068221057000073 ], [ -122.328683459999937, 49.068216283000041 ], [ -122.328686179999977, 49.068014462000058 ], [ -122.326288310999985, 49.067932459000048 ], [ -122.325812275999965, 49.067929679000052 ], [ -122.325808624999979, 49.068199525000111 ], [ -122.325555376999958, 49.068198046000148 ], [ -122.325408534, 49.068412862000045 ], [ -122.325394909999957, 49.068420477000039 ], [ -122.32539428099993, 49.068466973000092 ], [ -122.325312587999974, 49.068466495000052 ], [ -122.32498105099999, 49.068651821000081 ], [ -122.324976275999973, 49.069004264000057 ], [ -122.323493201999923, 49.068995580000077 ], [ -122.323331595999903, 49.069134001000101 ], [ -122.323327970999912, 49.069400806000118 ], [ -122.326530311999988, 49.069510395000059 ], [ -122.326509394999974, 49.069775634000081 ], [ -122.327183106999939, 49.069798678000062 ], [ -122.327158439999948, 49.070111515000065 ], [ -122.32754601299996, 49.070124769000067 ], [ -122.327515832999936, 49.07050756600011 ], [ -122.327758529000022, 49.070515865000054 ], [ -122.327755241999967, 49.070557563000136 ], [ -122.32899159099999, 49.070599833000088 ], [ -122.328903617999984, 49.071716071000083 ], [ -122.328958159999971, 49.071717935000066 ], [ -122.328804537999986, 49.073667052000118 ], [ -122.328795997, 49.073667707000027 ], [ -122.327280363999961, 49.074220709000038 ], [ -122.327172107999942, 49.074260184000124 ], [ -122.326990508, 49.074396023000048 ], [ -122.326724902999928, 49.074395005000014 ], [ -122.324404495999929, 49.074448116000028 ], [ -122.324198723, 49.074453699000095 ], [ -122.322502770999932, 49.074496642000049 ], [ -122.321563755999989, 49.074520353000025 ], [ -122.32099359599998, 49.074529513000137 ], [ -122.319199671999939, 49.07455829200007 ], [ -122.318967101999974, 49.074562027000077 ], [ -122.318036840999952, 49.074576929000067 ], [ -122.317365627999919, 49.074587689000055 ], [ -122.316667460999923, 49.074598862000073 ], [ -122.31618799899999, 49.074606542000083 ], [ -122.316120123999923, 49.072349620000054 ], [ -122.316243911999933, 49.0723494510001 ], [ -122.316326063999981, 49.072349350000088 ], [ -122.316827896999982, 49.072348655000056 ], [ -122.317476221999939, 49.072347571000101 ], [ -122.317630202999965, 49.072347298000047 ], [ -122.318028315999953, 49.072245592000094 ], [ -122.318350803999962, 49.07206187900011 ], [ -122.318537809999938, 49.07184390200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.843240254354437", "sL_AssetLoss": "3617", "sL_BldgLoss": "3050", "sL_StrLoss": "1770", "sL_NStrLoss": "1280", "sL_ContLoss": "567", "geom_point": "0101000020E61000000B46E35830955EC0E418E2BB41894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330916338999884, 49.07199882200004 ], [ -122.331469016999947, 49.072017702000018 ], [ -122.330842272999973, 49.072939080000033 ], [ -122.330916338999884, 49.07199882200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5052500", "BldgCostT": "3275000", "sL_LossRatio": "0.634802784222738", "sL_AssetLoss": "11852.5", "sL_BldgLoss": "7524", "sL_StrLoss": "4630", "sL_NStrLoss": "2894", "sL_ContLoss": "4328.5", "geom_point": "0101000020E610000063553153228F5EC0179492B36A864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.236145838999974, 49.049559717000179 ], [ -122.237134000999987, 49.049566254000069 ], [ -122.237160526, 49.050179596000106 ], [ -122.237078279999977, 49.05064536200004 ], [ -122.235718765999948, 49.050636367000052 ], [ -122.235731174999941, 49.049826841000055 ], [ -122.236141704999952, 49.049829559000109 ], [ -122.236145838999974, 49.049559717000179 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.946219167003639", "sL_AssetLoss": "2720.3", "sL_BldgLoss": "2574", "sL_StrLoss": "2202", "sL_NStrLoss": "372", "sL_ContLoss": "146.3", "geom_point": "0101000020E6100000678FC489378F5EC02B6B9BE2F1854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.237845700999955, 49.045792781000053 ], [ -122.238456849, 49.045796815000116 ], [ -122.237960285, 49.046472466000083 ], [ -122.237543554999959, 49.047410003000053 ], [ -122.237410442999945, 49.047409123000101 ], [ -122.237431076999925, 49.046059912000075 ], [ -122.23784157599999, 49.046062624000058 ], [ -122.237845700999955, 49.045792781000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255084148", "BldgCostT": "167589718", "sL_LossRatio": "0.851630844586151", "sL_AssetLoss": "476103", "sL_BldgLoss": "405464", "sL_StrLoss": "281121", "sL_NStrLoss": "124343", "sL_ContLoss": "70639", "geom_point": "0101000020E61000009FE7578CDD8E5EC0728AF97F76864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.226693177999948, 49.053510886000048 ], [ -122.226130936999979, 49.053306303000085 ], [ -122.225872123999949, 49.053156563000101 ], [ -122.225769899999946, 49.053067318000046 ], [ -122.225412228999971, 49.05275272600008 ], [ -122.225207865999963, 49.052403842000111 ], [ -122.22513281, 49.052063107000052 ], [ -122.22554583599999, 49.052032614000098 ], [ -122.225873813999968, 49.051970218000086 ], [ -122.225998273999906, 49.051915268000037 ], [ -122.226305197999935, 49.05177980500013 ], [ -122.226812002, 49.051570406000096 ], [ -122.227028716999925, 49.051514005000058 ], [ -122.228128602, 49.051364214000102 ], [ -122.228902354999946, 49.05116561700008 ], [ -122.229095583999978, 49.051116009000069 ], [ -122.229528590999934, 49.051058219000055 ], [ -122.22960215099999, 49.051057279000062 ], [ -122.230551724999955, 49.051045406000064 ], [ -122.231245055999963, 49.051010450000057 ], [ -122.231321161, 49.051006649000023 ], [ -122.231299597999922, 49.050190003000111 ], [ -122.231296578999917, 49.050091594000101 ], [ -122.231891484999935, 49.049283910000057 ], [ -122.231985213999948, 49.049055484000114 ], [ -122.23198119599995, 49.04878310800003 ], [ -122.231707100999969, 49.04848409600006 ], [ -122.231070722999917, 49.04887559600008 ], [ -122.23083951299995, 49.048925194000084 ], [ -122.230608726999961, 49.048919795000103 ], [ -122.230118701999984, 49.048787096000119 ], [ -122.230168717999973, 49.048676212000039 ], [ -122.230384595999936, 49.048341194000024 ], [ -122.23079242899999, 49.048036404000086 ], [ -122.23116470899997, 49.047780790000026 ], [ -122.231362400999927, 49.047586710000061 ], [ -122.231492905, 49.04735949200002 ], [ -122.231517634999975, 49.047262847000063 ], [ -122.231826993999903, 49.04716419100005 ], [ -122.232490206999969, 49.046993327000038 ], [ -122.232488463999971, 49.047106625000062 ], [ -122.232898970999969, 49.047109354000042 ], [ -122.232903122999971, 49.046839512000091 ], [ -122.23372413499996, 49.046844966000066 ], [ -122.233728282999948, 49.046575124000114 ], [ -122.234138786999921, 49.046577850000077 ], [ -122.23414293, 49.046308007000036 ], [ -122.234963934999939, 49.046313453000096 ], [ -122.234968075999944, 49.046043610000041 ], [ -122.236610075999948, 49.046054484000123 ], [ -122.236597681999967, 49.046864011000075 ], [ -122.236187174999941, 49.046861295000056 ], [ -122.236183042999983, 49.0471311370001 ], [ -122.236593552000016, 49.047133854000023 ], [ -122.236581157999979, 49.047943380000049 ], [ -122.23699167299999, 49.047946095000064 ], [ -122.236995802999957, 49.047676253000084 ], [ -122.237423947999957, 49.047679082000073 ], [ -122.237085334999961, 49.048440837000093 ], [ -122.237110654999924, 49.049026360000028 ], [ -122.236564631999983, 49.049022749000059 ], [ -122.236560499999953, 49.049292591000047 ], [ -122.234918392999987, 49.04928171700012 ], [ -122.234914254, 49.049551559000115 ], [ -122.234503722999975, 49.049548836000085 ], [ -122.234487151999971, 49.050628205000116 ], [ -122.234076615, 49.050625481000061 ], [ -122.234068324999953, 49.051165164000047 ], [ -122.234478865999932, 49.051167889000077 ], [ -122.234474722999934, 49.051437730000011 ], [ -122.235295809999982, 49.051443173000074 ], [ -122.235291671999988, 49.0517130160001 ], [ -122.235702218999947, 49.051715735000094 ], [ -122.235698081999885, 49.051985577000046 ], [ -122.236108632999958, 49.051988295000079 ], [ -122.236104496999957, 49.052258137000088 ], [ -122.23651504799993, 49.052260854000046 ], [ -122.23650148899999, 49.053146210000101 ], [ -122.235658594999961, 49.053225184000077 ], [ -122.235268072999958, 49.053251613000029 ], [ -122.235270977999988, 49.053062225000097 ], [ -122.234860419999961, 49.053059505000064 ], [ -122.234864560999981, 49.052789663000084 ], [ -122.234454005999964, 49.052786940000061 ], [ -122.234446016999968, 49.053307240000066 ], [ -122.234185095999919, 49.053324894000077 ], [ -122.229108442999959, 49.053291095000105 ], [ -122.229104271, 49.053560937000057 ], [ -122.229925394999924, 49.053566418000052 ], [ -122.229923882999969, 49.053664301000069 ], [ -122.228834609999979, 49.053762527000053 ], [ -122.227660651999912, 49.053680124000074 ], [ -122.226693177999948, 49.053510886000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124507000", "BldgCostT": "82450000", "sL_LossRatio": "0.951185776305002", "sL_AssetLoss": "163681.8", "sL_BldgLoss": "155691.8", "sL_StrLoss": "131873.8", "sL_NStrLoss": "23818", "sL_ContLoss": "7990", "geom_point": "0101000020E610000001959EA7098F5EC0F520D2A98A854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.231866708999945, 49.042651998000075 ], [ -122.232411025999937, 49.041842605000106 ], [ -122.232419982999943, 49.041832008000029 ], [ -122.232675644999915, 49.041530398000084 ], [ -122.232728600999977, 49.041467895000068 ], [ -122.233047009999936, 49.041082396000029 ], [ -122.23303333099993, 49.041082796000083 ], [ -122.231945233999937, 49.041114657000094 ], [ -122.231858125999935, 49.041117202000095 ], [ -122.23168240199999, 49.041091185000049 ], [ -122.23157311199999, 49.041037802000119 ], [ -122.231532085999945, 49.040953394000056 ], [ -122.231608484999967, 49.040854191000093 ], [ -122.231926103999982, 49.040625390000059 ], [ -122.232222982999971, 49.040411512000084 ], [ -122.232612313999951, 49.040282689000023 ], [ -122.233227900999935, 49.040248410000039 ], [ -122.23527248799999, 49.040208943000096 ], [ -122.236477231999956, 49.040185673000039 ], [ -122.236724484999968, 49.040180897000049 ], [ -122.237112799999963, 49.040251298000086 ], [ -122.237394190999979, 49.040358502000046 ], [ -122.237607903999958, 49.040507592000104 ], [ -122.238356309999986, 49.0412018990001 ], [ -122.238507026999912, 49.041282904000106 ], [ -122.23868092399999, 49.041332300000086 ], [ -122.239033289999952, 49.041373498000041 ], [ -122.239194259000016, 49.041372754000115 ], [ -122.240585653999986, 49.041366293000038 ], [ -122.240276168, 49.043039055000051 ], [ -122.239254864999936, 49.04470437800012 ], [ -122.235080660999941, 49.044558030000111 ], [ -122.235265690999967, 49.042267407000118 ], [ -122.235026025999971, 49.042265818000061 ], [ -122.235009470999984, 49.043345188000039 ], [ -122.23459899199996, 49.043342466000055 ], [ -122.234594851999987, 49.04361230800005 ], [ -122.234184371000012, 49.043609585000112 ], [ -122.234167795999937, 49.044688954000051 ], [ -122.233757306999962, 49.044686229000057 ], [ -122.233741287999976, 49.045728761000056 ], [ -122.233717407, 49.045732749000074 ], [ -122.233506042999949, 49.046033909000087 ], [ -122.233326074999979, 49.046032714000035 ], [ -122.233322026999943, 49.046296103000046 ], [ -122.233317517999936, 49.046302527000151 ], [ -122.232911424999983, 49.046299828000016 ], [ -122.232907273999928, 49.046569669000071 ], [ -122.232496770999973, 49.046566940000083 ], [ -122.232490206999969, 49.046993327000038 ], [ -122.231826993999903, 49.04716419100005 ], [ -122.231517634999975, 49.047262847000063 ], [ -122.231492905, 49.04735949200002 ], [ -122.231362400999927, 49.047586710000061 ], [ -122.23116470899997, 49.047780790000026 ], [ -122.23079242899999, 49.048036404000086 ], [ -122.230360900999926, 49.047738098000139 ], [ -122.230333375999962, 49.047705971000077 ], [ -122.230235922999938, 49.047592200000103 ], [ -122.230206015999926, 49.047471199000071 ], [ -122.230032627999918, 49.046889728000053 ], [ -122.22997891599999, 49.046709502000155 ], [ -122.230019758999958, 49.046361067000092 ], [ -122.230036104999954, 49.046221998000142 ], [ -122.230017529999941, 49.046194755 ], [ -122.229683882999936, 49.045704696000065 ], [ -122.229668994999926, 49.045467094000067 ], [ -122.229886214999937, 49.045065400000112 ], [ -122.230052182999884, 49.044754789000109 ], [ -122.230248520999936, 49.044527292000026 ], [ -122.230573597999978, 49.044347582000029 ], [ -122.231060408999937, 49.044249305000072 ], [ -122.231580889999933, 49.04424140800009 ], [ -122.231968017999932, 49.044191893000068 ], [ -122.232271506999965, 49.044075408000083 ], [ -122.232462617999914, 49.043963089000066 ], [ -122.232809208, 49.043685902000099 ], [ -122.232923002999939, 49.043513198000028 ], [ -122.232932813999966, 49.04334218100005 ], [ -122.23292179299996, 49.043138990000038 ], [ -122.232761502999921, 49.042939493000034 ], [ -122.232570080999892, 49.042801993000111 ], [ -122.232179803999941, 49.042671107000025 ], [ -122.231866708999945, 49.042651998000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269134500", "BldgCostT": "181110000", "sL_LossRatio": "0.806346666809357", "sL_AssetLoss": "1495084", "sL_BldgLoss": "1205556", "sL_StrLoss": "723466", "sL_NStrLoss": "482090", "sL_ContLoss": "289528", "geom_point": "0101000020E61000004DE59399FB8F5EC0E21DD8D842864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.250878698999912, 49.052733369000052 ], [ -122.25088032799999, 49.052624865000077 ], [ -122.250469772999978, 49.052622198000108 ], [ -122.250486000999956, 49.051542826000109 ], [ -122.249664906999953, 49.051537491000019 ], [ -122.24966896799999, 49.05126764800012 ], [ -122.249258421999954, 49.051264978000034 ], [ -122.249335612999928, 49.046137962000074 ], [ -122.249746114999965, 49.0461406310001 ], [ -122.249750175999964, 49.045870788000109 ], [ -122.248929174999915, 49.045865447000054 ], [ -122.248921045999964, 49.04640513400004 ], [ -122.24768953399996, 49.046397111000054 ], [ -122.247693605999984, 49.046127268000099 ], [ -122.247283101999955, 49.046124593000137 ], [ -122.247291248999957, 49.045584906000016 ], [ -122.246880751999981, 49.045582228000065 ], [ -122.246888901999981, 49.045042542000054 ], [ -122.246478408999963, 49.045039863000099 ], [ -122.24648248699998, 49.044770019000048 ], [ -122.245661505999962, 49.044764656000062 ], [ -122.24565742299994, 49.045034499000067 ], [ -122.246067915999944, 49.045037181000055 ], [ -122.246035276999976, 49.047195925000011 ], [ -122.246445788, 49.047198606000066 ], [ -122.246441711, 49.047468449000043 ], [ -122.246852223999952, 49.047471129000044 ], [ -122.246844072999934, 49.048010815000033 ], [ -122.248075625999931, 49.048018845000023 ], [ -122.248071555999928, 49.048288688000135 ], [ -122.248892594999973, 49.048294034000108 ], [ -122.248868207, 49.049913092000089 ], [ -122.246815539999929, 49.049899715000059 ], [ -122.246819615, 49.049629872000033 ], [ -122.245177493999975, 49.049619143000015 ], [ -122.245181578999933, 49.049349300000117 ], [ -122.244360522999941, 49.049343927000088 ], [ -122.24436461199997, 49.04907408400009 ], [ -122.243954086, 49.049071396000045 ], [ -122.243958177999957, 49.048801553000054 ], [ -122.243547653999912, 49.048798863000087 ], [ -122.243543559999949, 49.049068705000082 ], [ -122.243133035999904, 49.049066014000104 ], [ -122.243128938999973, 49.049335856000013 ], [ -122.242718410999942, 49.049333163000071 ], [ -122.242693820999961, 49.050952218000056 ], [ -122.24228327899999, 49.050949524000032 ], [ -122.24227990599999, 49.051171420000031 ], [ -122.242279176999944, 49.051219367000037 ], [ -122.241868633999957, 49.051216670000052 ], [ -122.241864530999962, 49.05148651200011 ], [ -122.241043441000016, 49.051481115000151 ], [ -122.24104205499998, 49.051572124000167 ], [ -122.241035223999958, 49.052020799000097 ], [ -122.239393025999959, 49.052009988000108 ], [ -122.239397142999934, 49.05174014600005 ], [ -122.238697104000011, 49.051735531000055 ], [ -122.238578337999968, 49.05158484800004 ], [ -122.238579965, 49.051478321000111 ], [ -122.239477395, 49.050931319000064 ], [ -122.239561193999961, 49.050802478000058 ], [ -122.239798393999962, 49.050593515000095 ], [ -122.240311878999989, 49.050368088000042 ], [ -122.240475524999908, 49.050282191000072 ], [ -122.240704817999983, 49.050161873000064 ], [ -122.241026591999969, 49.049904460000057 ], [ -122.24146524299999, 49.049419458000088 ], [ -122.24177836399997, 49.049201440000054 ], [ -122.242650224999949, 49.048773970000063 ], [ -122.243923737999978, 49.04799721700001 ], [ -122.244582301999955, 49.047668697000084 ], [ -122.244891006999978, 49.047454101000042 ], [ -122.245135502999972, 49.047221912000055 ], [ -122.245272790999934, 49.046995004000074 ], [ -122.245312181999978, 49.046761099000022 ], [ -122.245291634999916, 49.046695929000037 ], [ -122.245269045999947, 49.046624250000036 ], [ -122.245222816999942, 49.046477602000095 ], [ -122.245043406999955, 49.046242304000089 ], [ -122.244800320999929, 49.046067006000079 ], [ -122.244463185999976, 49.045920901000088 ], [ -122.243339707999922, 49.045651714000016 ], [ -122.242183682999908, 49.045430888000027 ], [ -122.240968494999947, 49.044891611000089 ], [ -122.240688500999937, 49.044715905000011 ], [ -122.24052739299999, 49.044524497000062 ], [ -122.240449203, 49.044256708000056 ], [ -122.240489887999956, 49.044039909000105 ], [ -122.240648786999913, 49.043817411000127 ], [ -122.240819993999963, 49.043679202000057 ], [ -122.241116523999935, 49.043531803000093 ], [ -122.241574720999935, 49.043447709000098 ], [ -122.241983198999961, 49.043471983000117 ], [ -122.242356217999927, 49.043595899000103 ], [ -122.242707499999966, 49.043821007000126 ], [ -122.242991975999971, 49.043940007000025 ], [ -122.243405099999904, 49.04402568400009 ], [ -122.243689186, 49.044032092000116 ], [ -122.244253716999978, 49.043987787000084 ], [ -122.24472011, 49.044023104000125 ], [ -122.245988781999969, 49.044220696000075 ], [ -122.24667831, 49.044204214000025 ], [ -122.247055809999893, 49.044188606000063 ], [ -122.247576600999935, 49.044262690000068 ], [ -122.248271587999938, 49.04450069500016 ], [ -122.248962096999918, 49.044844906 ], [ -122.24930511399999, 49.045088503000066 ], [ -122.249576906999934, 49.045382898000078 ], [ -122.249749889000029, 49.045477301000048 ], [ -122.249947988, 49.045514894000043 ], [ -122.250101110999978, 49.045482405000065 ], [ -122.25034089499999, 49.045358187000041 ], [ -122.252141253999937, 49.046646951000085 ], [ -122.252207445999971, 49.046694332000065 ], [ -122.252402882999903, 49.046834218000072 ], [ -122.252540186999951, 49.046932488000046 ], [ -122.253332208999964, 49.047326208000129 ], [ -122.253827802999979, 49.047423811000058 ], [ -122.253945713999983, 49.047863293000056 ], [ -122.254011616, 49.047980104000018 ], [ -122.254272984999901, 49.048438186000062 ], [ -122.254929813999951, 49.049595306000043 ], [ -122.254944010999978, 49.049708504000144 ], [ -122.255007096999947, 49.050404915000058 ], [ -122.25547291, 49.050568101000074 ], [ -122.255961515999942, 49.051060209000099 ], [ -122.25618070299997, 49.051550196000079 ], [ -122.256218081999947, 49.052209589000022 ], [ -122.257357617999929, 49.052280908000021 ], [ -122.257375596999935, 49.049978093000064 ], [ -122.260312309999946, 49.049990296000011 ], [ -122.260348685999958, 49.050610893000091 ], [ -122.260358401999923, 49.050743361000066 ], [ -122.260407496999946, 49.051413515000014 ], [ -122.260395919999908, 49.05227320300002 ], [ -122.260399003999964, 49.052649212000084 ], [ -122.260399574, 49.05271520000008 ], [ -122.257431181999934, 49.052834037000089 ], [ -122.257305212999981, 49.052831679000114 ], [ -122.256522581999917, 49.052850274 ], [ -122.255926455999898, 49.052791531000082 ], [ -122.25567408799999, 49.052763519000052 ], [ -122.254390031999932, 49.052670029000097 ], [ -122.250878698999912, 49.052733369000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172203666", "BldgCostT": "115131666", "sL_LossRatio": "0.941992699427134", "sL_AssetLoss": "220749.8", "sL_BldgLoss": "207944.7", "sL_StrLoss": "180428.7", "sL_NStrLoss": "27516", "sL_ContLoss": "12805.1", "geom_point": "0101000020E6100000BBCAA86C778F5EC04E400235EB854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.237348534999938, 49.051456757000011 ], [ -122.237358227999906, 49.050823061000123 ], [ -122.237360916999961, 49.05064723099999 ], [ -122.237078279999977, 49.05064536200004 ], [ -122.237160526, 49.050179596000106 ], [ -122.237134000999987, 49.049566254000069 ], [ -122.238609014999923, 49.049575994000143 ], [ -122.238617255999927, 49.049036309000051 ], [ -122.239848830999975, 49.049044428000052 ], [ -122.239852943999935, 49.048774586000036 ], [ -122.237389807999961, 49.04875833500008 ], [ -122.237385681999967, 49.049028177000032 ], [ -122.237110654999924, 49.049026360000028 ], [ -122.237085334999961, 49.048440837000093 ], [ -122.237423947999957, 49.047679082000073 ], [ -122.237816829999986, 49.04768167800006 ], [ -122.237820953999957, 49.047411835000105 ], [ -122.237543554999959, 49.047410003000053 ], [ -122.237960285, 49.046472466000083 ], [ -122.238456849, 49.045796815000116 ], [ -122.23907719599994, 49.045800908000082 ], [ -122.239081313999961, 49.045531065000048 ], [ -122.239491809999947, 49.045533772000034 ], [ -122.239495924999972, 49.045263928000075 ], [ -122.240316913999919, 49.045269336000089 ], [ -122.240321023000021, 49.044999493000077 ], [ -122.23991053099995, 49.044996791000102 ], [ -122.239914636999956, 49.044727494000014 ], [ -122.239895408999985, 49.044726821000047 ], [ -122.239504154999935, 49.044724244000079 ], [ -122.239504323999981, 49.044713118000111 ], [ -122.239254864999936, 49.04470437800012 ], [ -122.240276168, 49.043039055000051 ], [ -122.240585653999986, 49.041366293000038 ], [ -122.241738888999947, 49.041360897000068 ], [ -122.242240913, 49.041411896000049 ], [ -122.242457600999956, 49.041490706000076 ], [ -122.242946033999928, 49.041658383000055 ], [ -122.243258919999931, 49.041765801000061 ], [ -122.243924285999924, 49.042047799000095 ], [ -122.244131881999976, 49.042172464000039 ], [ -122.244504020999955, 49.042395996000032 ], [ -122.244514200999973, 49.042402109000115 ], [ -122.244860010999943, 49.042609802000072 ], [ -122.245273694999966, 49.042658963000079 ], [ -122.245408804999926, 49.042674996000059 ], [ -122.245916802999943, 49.042617882000073 ], [ -122.246021529999936, 49.042587052000066 ], [ -122.246318990999896, 49.04249943500006 ], [ -122.246686343999912, 49.042813736000042 ], [ -122.246963440999963, 49.043050796000038 ], [ -122.247180551999946, 49.043236542000059 ], [ -122.247522095999955, 49.043528725000044 ], [ -122.247909915999955, 49.043774695000081 ], [ -122.249298849999988, 49.044655576 ], [ -122.25034089499999, 49.045358187000041 ], [ -122.250101110999978, 49.045482405000065 ], [ -122.249947988, 49.045514894000043 ], [ -122.249749889000029, 49.045477301000048 ], [ -122.249576906999934, 49.045382898000078 ], [ -122.24930511399999, 49.045088503000066 ], [ -122.248962096999918, 49.044844906 ], [ -122.248271587999938, 49.04450069500016 ], [ -122.247576600999935, 49.044262690000068 ], [ -122.247055809999893, 49.044188606000063 ], [ -122.24667831, 49.044204214000025 ], [ -122.245988781999969, 49.044220696000075 ], [ -122.24472011, 49.044023104000125 ], [ -122.244253716999978, 49.043987787000084 ], [ -122.243689186, 49.044032092000116 ], [ -122.243405099999904, 49.04402568400009 ], [ -122.242991975999971, 49.043940007000025 ], [ -122.242707499999966, 49.043821007000126 ], [ -122.242356217999927, 49.043595899000103 ], [ -122.241983198999961, 49.043471983000117 ], [ -122.241574720999935, 49.043447709000098 ], [ -122.241116523999935, 49.043531803000093 ], [ -122.240819993999963, 49.043679202000057 ], [ -122.240648786999913, 49.043817411000127 ], [ -122.240489887999956, 49.044039909000105 ], [ -122.240449203, 49.044256708000056 ], [ -122.24052739299999, 49.044524497000062 ], [ -122.240688500999937, 49.044715905000011 ], [ -122.240968494999947, 49.044891611000089 ], [ -122.242183682999908, 49.045430888000027 ], [ -122.243339707999922, 49.045651714000016 ], [ -122.244463185999976, 49.045920901000088 ], [ -122.244800320999929, 49.046067006000079 ], [ -122.245043406999955, 49.046242304000089 ], [ -122.245222816999942, 49.046477602000095 ], [ -122.245269045999947, 49.046624250000036 ], [ -122.245291634999916, 49.046695929000037 ], [ -122.245312181999978, 49.046761099000022 ], [ -122.245272790999934, 49.046995004000074 ], [ -122.245135502999972, 49.047221912000055 ], [ -122.244891006999978, 49.047454101000042 ], [ -122.244582301999955, 49.047668697000084 ], [ -122.243923737999978, 49.04799721700001 ], [ -122.242650224999949, 49.048773970000063 ], [ -122.24177836399997, 49.049201440000054 ], [ -122.24146524299999, 49.049419458000088 ], [ -122.241026591999969, 49.049904460000057 ], [ -122.240704817999983, 49.050161873000064 ], [ -122.240475524999908, 49.050282191000072 ], [ -122.240311878999989, 49.050368088000042 ], [ -122.239798393999962, 49.050593515000095 ], [ -122.239561193999961, 49.050802478000058 ], [ -122.239477395, 49.050931319000064 ], [ -122.238579965, 49.051478321000111 ], [ -122.238580168999931, 49.051464890000027 ], [ -122.237348534999938, 49.051456757000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.930232558139535", "sL_AssetLoss": "2627.3", "sL_BldgLoss": "2444", "sL_StrLoss": "1919", "sL_NStrLoss": "525", "sL_ContLoss": "183.3", "geom_point": "0101000020E6100000880CCC86CC8D5EC00229B16B7B8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.216366772999962, 49.099776984000066 ], [ -122.216378429999963, 49.099633583000063 ], [ -122.214551319999913, 49.099569235000025 ], [ -122.214843720999909, 49.095973500000099 ], [ -122.214933430999935, 49.095976660000126 ], [ -122.214995255999909, 49.095216301000043 ], [ -122.216480414999978, 49.095268607000108 ], [ -122.216476577, 49.099508937000088 ], [ -122.216482919999962, 49.099781074000092 ], [ -122.216366772999962, 49.099776984000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40508729", "BldgCostT": "27524858", "sL_LossRatio": "0.952004698094069", "sL_AssetLoss": "54319.9", "sL_BldgLoss": "51712.8", "sL_StrLoss": "43470", "sL_NStrLoss": "8242.8", "sL_ContLoss": "2607.1", "geom_point": "0101000020E6100000B20FECD7618C5EC02ECB3A90338F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.194292204999911, 49.128929765000052 ], [ -122.194482181999902, 49.126607669000073 ], [ -122.194379209999965, 49.126604025000027 ], [ -122.194384594, 49.12653822700009 ], [ -122.192448149999962, 49.126469674000084 ], [ -122.192505135999951, 49.125773441000028 ], [ -122.187086706999963, 49.125581433000072 ], [ -122.187121769, 49.125153667000077 ], [ -122.186596017999989, 49.125135021000084 ], [ -122.186890738, 49.121539504000083 ], [ -122.186937286999949, 49.121541155000102 ], [ -122.187005173999978, 49.120712860000026 ], [ -122.185585656999962, 49.120662506000052 ], [ -122.185599979999949, 49.120487808000071 ], [ -122.184990515999957, 49.120466184000094 ], [ -122.184899535999961, 49.11925032199999 ], [ -122.184136839999937, 49.119256827000072 ], [ -122.18433530399993, 49.11683692800009 ], [ -122.18782209299998, 49.116960632000023 ], [ -122.187942295999989, 49.116964894000013 ], [ -122.187966130999925, 49.116673986000073 ], [ -122.188068528999935, 49.115424114000106 ], [ -122.188637983999939, 49.115444306000086 ], [ -122.188674728999985, 49.114995727000064 ], [ -122.1924151899999, 49.115128281000068 ], [ -122.193176366999978, 49.115155239000075 ], [ -122.193214443999963, 49.114689837000086 ], [ -122.193250164999938, 49.11425321000015 ], [ -122.19267421399995, 49.114232812000154 ], [ -122.192725055999944, 49.113611448000086 ], [ -122.1912001099999, 49.113557425000074 ], [ -122.191131394999928, 49.114396906000145 ], [ -122.186398529999906, 49.11422910200006 ], [ -122.186366013999958, 49.114625820000043 ], [ -122.18090097299995, 49.114431797000051 ], [ -122.181007662999946, 49.113131888000048 ], [ -122.181028843999982, 49.112873796000066 ], [ -122.18119606399992, 49.110836235000086 ], [ -122.182084390999961, 49.110867793000118 ], [ -122.184452234000034, 49.11095187300009 ], [ -122.184488947999938, 49.110504114000015 ], [ -122.18835414299997, 49.110641251000118 ], [ -122.188418723999959, 49.109852805000045 ], [ -122.191816738999933, 49.109973252000039 ], [ -122.191962672999978, 49.108189887000073 ], [ -122.197118423999939, 49.10837243100007 ], [ -122.197427028999982, 49.108383350000054 ], [ -122.197230524999938, 49.110788093000053 ], [ -122.198433042999952, 49.110830629000134 ], [ -122.198356459999957, 49.111768051000105 ], [ -122.198932384, 49.111788418000124 ], [ -122.198638654999911, 49.1153840220001 ], [ -122.194136974999978, 49.115224739000062 ], [ -122.193845748999962, 49.118784928000089 ], [ -122.193276249999897, 49.118764765000051 ], [ -122.193239546999948, 49.119213342000108 ], [ -122.191191893999985, 49.119140816000019 ], [ -122.191066249999921, 49.120675532000121 ], [ -122.192485771999941, 49.120725813000043 ], [ -122.192368177999981, 49.122162640000084 ], [ -122.192847349999937, 49.122179609000092 ], [ -122.19279037199999, 49.122875846000134 ], [ -122.198208507999965, 49.12306756700012 ], [ -122.198203131999946, 49.123133365000044 ], [ -122.199512040999977, 49.123179641000064 ], [ -122.199579676000027, 49.122351710000018 ], [ -122.200337997999938, 49.122378513000037 ], [ -122.20039648199996, 49.121662429000025 ], [ -122.205862453999913, 49.12185546000012 ], [ -122.205782393999982, 49.122837118000056 ], [ -122.208092137999941, 49.122918602000027 ], [ -122.207849923, 49.125890066000132 ], [ -122.207799045999963, 49.126514170000064 ], [ -122.205188051999968, 49.126422054000066 ], [ -122.205140665999963, 49.127002932000025 ], [ -122.20044046799994, 49.126836950000062 ], [ -122.200343523999933, 49.128023796000129 ], [ -122.199141489999931, 49.128199311000067 ], [ -122.197998007999971, 49.128605203000042 ], [ -122.197546188999937, 49.128629411000055 ], [ -122.19717659299998, 49.128536806000042 ], [ -122.195790884999951, 49.128553905000047 ], [ -122.194319106999899, 49.128929910000053 ], [ -122.194292204999911, 49.128929765000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.959149477090195", "sL_AssetLoss": "5192.1", "sL_BldgLoss": "4980", "sL_StrLoss": "4374", "sL_NStrLoss": "606", "sL_ContLoss": "212.1", "geom_point": "0101000020E6100000138AE74BB38D5EC02D4FD65EFA8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.213638711000016, 49.122228248000084 ], [ -122.216692920999918, 49.122335763000102 ], [ -122.216700365999927, 49.125941909000112 ], [ -122.216534897999964, 49.125936087000035 ], [ -122.216475351000028, 49.126668213000173 ], [ -122.21644252899992, 49.127071761000089 ], [ -122.210975901, 49.126879269000057 ], [ -122.211024405000018, 49.126283767000132 ], [ -122.211268748999927, 49.123283695000026 ], [ -122.213546278999914, 49.123363926000131 ], [ -122.213638711000016, 49.122228248000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.964549955758043", "sL_AssetLoss": "5311.7", "sL_BldgLoss": "5123.4", "sL_StrLoss": "4349", "sL_NStrLoss": "774.4", "sL_ContLoss": "188.3", "geom_point": "0101000020E6100000472CD62EB58D5EC08B30EAFFC18D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.21470464799998, 49.104596823000072 ], [ -122.21659673399995, 49.104663447000071 ], [ -122.216662254999918, 49.107473784000071 ], [ -122.216666894999904, 49.109723127000045 ], [ -122.21663113999989, 49.109721868000072 ], [ -122.216620379999981, 49.109854207000097 ], [ -122.211155771999969, 49.109661718000119 ], [ -122.211448498999928, 49.106066048000059 ], [ -122.212454693000012, 49.106101512000087 ], [ -122.212465462999944, 49.105969173000084 ], [ -122.213149531999974, 49.105993278000071 ], [ -122.213173232999935, 49.105701984000021 ], [ -122.213227982999953, 49.105029088000023 ], [ -122.21466537199997, 49.105079724000092 ], [ -122.21470464799998, 49.104596823000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32407584", "BldgCostT": "21878334", "sL_LossRatio": "0.903339097331135", "sL_AssetLoss": "74601", "sL_BldgLoss": "67390", "sL_StrLoss": "50145", "sL_NStrLoss": "17245", "sL_ContLoss": "7211", "geom_point": "0101000020E6100000BE8F611DA08C5EC0F81EAA00CA8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.200921649999941, 49.097480777000079 ], [ -122.200959329999989, 49.097019091000071 ], [ -122.199558132000035, 49.096969541000064 ], [ -122.199851673999945, 49.093373833000037 ], [ -122.201506461999927, 49.093432348000128 ], [ -122.201549916, 49.092899776000131 ], [ -122.200084706999988, 49.092847967000033 ], [ -122.20008673299999, 49.09282313600005 ], [ -122.197736926999951, 49.092740004000106 ], [ -122.197846076999966, 49.091403558000088 ], [ -122.197644987999951, 49.091396441000036 ], [ -122.197607207999937, 49.091859017000061 ], [ -122.197069510999967, 49.091839986000089 ], [ -122.197067685999912, 49.091862330000012 ], [ -122.19677678, 49.091852033000073 ], [ -122.196749590999957, 49.092184836000094 ], [ -122.19128713799995, 49.091991333000074 ], [ -122.191359966999983, 49.091101114000075 ], [ -122.19105822099999, 49.091090418000135 ], [ -122.191046606999919, 49.091232376000058 ], [ -122.186709335999979, 49.091078521000036 ], [ -122.186634768999966, 49.091988880000095 ], [ -122.185774141999971, 49.091958330000033 ], [ -122.185771425999988, 49.092124467000076 ], [ -122.185330782999955, 49.09212135800005 ], [ -122.185322427999893, 49.092223311000062 ], [ -122.184279707999977, 49.092186283000046 ], [ -122.18426949099991, 49.092310936000032 ], [ -122.183261506999955, 49.092275133000086 ], [ -122.183257251, 49.092327060000073 ], [ -122.182864986, 49.092313125000018 ], [ -122.182660363999972, 49.094808567000015 ], [ -122.177197661999955, 49.094614349000032 ], [ -122.17732926199993, 49.093011762000039 ], [ -122.173848546999963, 49.092887864000062 ], [ -122.174126822999938, 49.089501800000029 ], [ -122.177333052999941, 49.089534927000081 ], [ -122.177515442999947, 49.089648705000108 ], [ -122.177887897999966, 49.089637539000108 ], [ -122.178175782999929, 49.089628927000092 ], [ -122.178793221999939, 49.089631267000122 ], [ -122.179902573999968, 49.089635520000115 ], [ -122.181906577999897, 49.089642573000035 ], [ -122.183394927999956, 49.089648799000059 ], [ -122.18428726499998, 49.089652173000012 ], [ -122.18588511199999, 49.08967479400004 ], [ -122.18626849499999, 49.089709147000107 ], [ -122.18702938699991, 49.089916451000072 ], [ -122.187247942999974, 49.089923314000032 ], [ -122.18745950399996, 49.089882132000078 ], [ -122.187899513, 49.089693094 ], [ -122.18812526399995, 49.089662342000025 ], [ -122.188792460999963, 49.089676089000086 ], [ -122.189465293999945, 49.089618643000087 ], [ -122.18965019700002, 49.089603767000028 ], [ -122.191295255999989, 49.0896169970001 ], [ -122.194686224999927, 49.089683065000024 ], [ -122.195099033999895, 49.089658921000144 ], [ -122.19532676099999, 49.089603904000036 ], [ -122.195718295999953, 49.089393456000053 ], [ -122.196336624999986, 49.08906090300011 ], [ -122.19651710600003, 49.088996891000093 ], [ -122.196761710999965, 49.088970392000128 ], [ -122.19736298399999, 49.089036790000058 ], [ -122.19930400899996, 49.089449893000044 ], [ -122.199896018999951, 49.089529402000061 ], [ -122.19999758499992, 49.08953141500011 ], [ -122.202521105999949, 49.08958171600009 ], [ -122.202983578999948, 49.089620496000087 ], [ -122.203145919999912, 49.089622998000046 ], [ -122.205565930999938, 49.08966038900018 ], [ -122.206488882999949, 49.089638704000066 ], [ -122.210085935999956, 49.089554066000112 ], [ -122.210803357999978, 49.089537162000035 ], [ -122.213173738999899, 49.089481303000056 ], [ -122.213551583999987, 49.089472390000012 ], [ -122.216413236, 49.089416268000051 ], [ -122.216485714999962, 49.089414833000042 ], [ -122.216482017999937, 49.093498681000078 ], [ -122.216221034999961, 49.093489490000124 ], [ -122.21617628499996, 49.094040063000058 ], [ -122.210713532999975, 49.093847548000092 ], [ -122.210723503999972, 49.093725044000045 ], [ -122.209514997999989, 49.093682417000096 ], [ -122.209567737999933, 49.093034671000034 ], [ -122.209243886999928, 49.093023246 ], [ -122.209151603999914, 49.094156532000063 ], [ -122.206932227, 49.09407820600007 ], [ -122.20689083699996, 49.094586186000093 ], [ -122.20663713099999, 49.094577229000024 ], [ -122.20638478699999, 49.097673789000062 ], [ -122.202709142999936, 49.097543960000088 ], [ -122.200921649999941, 49.097480777000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.963174333860332", "sL_AssetLoss": "2593.3", "sL_BldgLoss": "2497.8", "sL_StrLoss": "2170", "sL_NStrLoss": "327.8", "sL_ContLoss": "95.5", "geom_point": "0101000020E6100000F996A4F8198B5EC0D7755E190A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.172736543999918, 49.134670794000087 ], [ -122.17274552399999, 49.134131126000057 ], [ -122.172334305, 49.134128179000058 ], [ -122.172343287999979, 49.133588511 ], [ -122.170698425999902, 49.133576707000024 ], [ -122.170711927999946, 49.132767206000061 ], [ -122.170300718999982, 49.132764252000094 ], [ -122.170310983999968, 49.132149178000056 ], [ -122.173613926999934, 49.132022837000065 ], [ -122.173613335999974, 49.131978411000013 ], [ -122.174426256999965, 49.131984227000025 ], [ -122.174421776, 49.13225406100004 ], [ -122.175655391999953, 49.132262875000059 ], [ -122.175650917999974, 49.13253271100006 ], [ -122.17647333299999, 49.132538580000144 ], [ -122.176455452999946, 49.133617917000024 ], [ -122.175633019999978, 49.133612047000078 ], [ -122.175628545, 49.133881881000072 ], [ -122.175217326999984, 49.133878945000092 ], [ -122.17521284899999, 49.134148778000046 ], [ -122.174390407999937, 49.134142901000068 ], [ -122.174385925999985, 49.134412734000108 ], [ -122.173974702999914, 49.134409793000046 ], [ -122.173970219999944, 49.134679628000093 ], [ -122.172736543999918, 49.134670794000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.871310507674144", "sL_AssetLoss": "4235", "sL_BldgLoss": "3690", "sL_StrLoss": "2660", "sL_NStrLoss": "1030", "sL_ContLoss": "545", "geom_point": "0101000020E61000003DFB3EDAC78B5EC06B87B7B5A2904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.182681383999963, 49.130153897000049 ], [ -122.18270799799997, 49.128534889000086 ], [ -122.185586227999977, 49.128555229 ], [ -122.185577387999942, 49.129094899000052 ], [ -122.185988567999942, 49.129097798000075 ], [ -122.185962060999927, 49.130716809000063 ], [ -122.185139671999963, 49.130711007000087 ], [ -122.185135248999956, 49.130980843 ], [ -122.184724055999979, 49.130977940000029 ], [ -122.184719629, 49.131247774000052 ], [ -122.183897232999954, 49.131241964 ], [ -122.183892804999971, 49.131511799000052 ], [ -122.182248003999987, 49.131500161000126 ], [ -122.182270194999958, 49.130150986000146 ], [ -122.182681383999963, 49.130153897000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.991325356945498", "sL_AssetLoss": "778.13", "sL_BldgLoss": "771.38", "sL_StrLoss": "703.68", "sL_NStrLoss": "67.7", "sL_ContLoss": "6.75", "geom_point": "0101000020E610000083563749F9625EC0E1DDA193EBB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.544090634999961, 49.38393279600006 ], [ -121.544111672, 49.383714552000093 ], [ -121.543114915, 49.383673471000051 ], [ -121.54317932099994, 49.383005440000012 ], [ -121.542879147999912, 49.382993066000047 ], [ -121.543122865999976, 49.380465222000069 ], [ -121.543128942999928, 49.38040219100008 ], [ -121.549844214999965, 49.38042007800005 ], [ -121.549834703999949, 49.380518884000082 ], [ -121.54983048299998, 49.380562730000086 ], [ -121.549930415999967, 49.380566843000068 ], [ -121.549584600999978, 49.38415906200003 ], [ -121.544090634999961, 49.38393279600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9013417", "BldgCostT": "6006667", "sL_LossRatio": "0.747588402376607", "sL_AssetLoss": "7287.7", "sL_BldgLoss": "5448.2", "sL_StrLoss": "4290.6", "sL_NStrLoss": "1157.6", "sL_ContLoss": "1839.5", "geom_point": "0101000020E61000002FF6A809EC5A5EC0131B7FE44EC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.422866348999918, 49.516299858000089 ], [ -121.422837397999928, 49.516294306000091 ], [ -121.421542865999953, 49.516180649000042 ], [ -121.420835808999954, 49.516118581000093 ], [ -121.420817205999953, 49.516116936000088 ], [ -121.420792165999956, 49.516114742000113 ], [ -121.420688724999934, 49.516105657000011 ], [ -121.419930813999898, 49.516039103000047 ], [ -121.419139861999938, 49.515935821000078 ], [ -121.419130082999956, 49.515934550000047 ], [ -121.41903345899999, 49.515921913000042 ], [ -121.414958672999944, 49.515389792000107 ], [ -121.414778903999945, 49.514829384000059 ], [ -121.41462010399999, 49.512956596000059 ], [ -121.414769807999974, 49.511690396000098 ], [ -121.415345401999943, 49.510592392000042 ], [ -121.416289593999949, 49.509596902000055 ], [ -121.416530490999961, 49.509403212000045 ], [ -121.417073692999949, 49.509239415000074 ], [ -121.41743822899997, 49.509250912000084 ], [ -121.417571013000014, 49.509255099000022 ], [ -121.418298617999966, 49.509417402000039 ], [ -121.418452314999911, 49.509303498000079 ], [ -121.417988388999987, 49.509143991000094 ], [ -121.417410310999941, 49.509072785000022 ], [ -121.417396149, 49.5090731720001 ], [ -121.416732397999937, 49.509091305000076 ], [ -121.416259604999965, 49.509192391000028 ], [ -121.415932879999943, 49.509143359000042 ], [ -121.416133953999974, 49.507121656000088 ], [ -121.416392114999965, 49.506855294000054 ], [ -121.416472456999927, 49.506712039000035 ], [ -121.417629103999928, 49.506760928000105 ], [ -121.419321907, 49.506832457000087 ], [ -121.419627357, 49.503758777 ], [ -121.42068869399999, 49.50380361100008 ], [ -121.421230544, 49.503826495000041 ], [ -121.425134966999963, 49.503991317000072 ], [ -121.424778515999932, 49.507582480000089 ], [ -121.422481294999926, 49.507485522000117 ], [ -121.421632477999964, 49.507449684000044 ], [ -121.421507969999979, 49.508703085000057 ], [ -121.421388875, 49.509901920000104 ], [ -121.421847104999955, 49.50992126800007 ], [ -121.42201160499999, 49.508265202000082 ], [ -121.422087345999955, 49.507502646000113 ], [ -121.422472676999973, 49.507518914000087 ], [ -121.427595414999985, 49.507735059000034 ], [ -121.427525498999913, 49.508439815000052 ], [ -121.427359555999885, 49.510112434000057 ], [ -121.427239127999954, 49.511326211000018 ], [ -121.421809988999954, 49.511097131000078 ], [ -121.421650517999979, 49.512702410000045 ], [ -121.422844206999969, 49.512752800000129 ], [ -121.42262598899994, 49.51494981700003 ], [ -121.42397800899991, 49.515006875000019 ], [ -121.423919561999952, 49.515595464000093 ], [ -121.424156741, 49.515605472000047 ], [ -121.424083020999916, 49.516347873000043 ], [ -121.424225186999962, 49.516353871000021 ], [ -121.424218624999952, 49.516419952000078 ], [ -121.422866348999918, 49.516299858000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.996897509880218", "sL_AssetLoss": "1574.864", "sL_BldgLoss": "1569.978", "sL_StrLoss": "1517.738", "sL_NStrLoss": "52.24", "sL_ContLoss": "4.886", "geom_point": "0101000020E6100000A75536A4B8595EC0333097F933D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.402287210999972, 49.692327178000056 ], [ -121.402543350999949, 49.689770292000119 ], [ -121.398830300999947, 49.689613452000096 ], [ -121.397525262999949, 49.689558296 ], [ -121.39755767299999, 49.689235110000041 ], [ -121.396172736999972, 49.689176561000117 ], [ -121.396532829999956, 49.685586429000082 ], [ -121.397440502999956, 49.685624804000014 ], [ -121.397456, 49.685470250000094 ], [ -121.398511151999955, 49.6855148510001 ], [ -121.402985265999988, 49.685703854000089 ], [ -121.402937418999926, 49.686181598000083 ], [ -121.403414582999972, 49.686201744000044 ], [ -121.403090730999949, 49.689435386000113 ], [ -121.408100272999931, 49.689646764000038 ], [ -121.407734990999984, 49.690284895000069 ], [ -121.407493214999988, 49.69128899500005 ], [ -121.407291114999936, 49.692797205000055 ], [ -121.406940224000024, 49.693203138000037 ], [ -121.40314303699995, 49.693042909000063 ], [ -121.402219412999941, 49.693003915000091 ], [ -121.402287210999972, 49.692327178000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.994992882342019", "sL_AssetLoss": "1615.7", "sL_BldgLoss": "1607.61", "sL_StrLoss": "1545", "sL_NStrLoss": "62.61", "sL_ContLoss": "8.09", "geom_point": "0101000020E61000002BFBF024905B5EC08FEB19A1A3BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.431578381999941, 49.473154225000016 ], [ -121.432027225999946, 49.468207407000058 ], [ -121.43015903299991, 49.468289012000056 ], [ -121.428549122999954, 49.468316329000118 ], [ -121.428625397999937, 49.467546593000129 ], [ -121.428231332999985, 49.467529963000118 ], [ -121.42833614599999, 49.466472292000084 ], [ -121.42649604399999, 49.46639461800001 ], [ -121.426852042999926, 49.462803234000077 ], [ -121.432354805999978, 49.463035421000072 ], [ -121.432250094, 49.464093102000035 ], [ -121.433131807, 49.464130279000059 ], [ -121.434090113999929, 49.464170678000059 ], [ -121.433873690999988, 49.466357469000059 ], [ -121.434267747999954, 49.466374078000079 ], [ -121.433912296999964, 49.469965468000041 ], [ -121.431971054999963, 49.46988363 ], [ -121.431646880999978, 49.473157113000141 ], [ -121.431578381999941, 49.473154225000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.994190334770587", "sL_AssetLoss": "1231.052", "sL_BldgLoss": "1223.9", "sL_StrLoss": "1163.53", "sL_NStrLoss": "60.37", "sL_ContLoss": "7.152", "geom_point": "0101000020E610000059CA6C6F3B565EC0D7ED1E66D0B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.346448907999928, 49.383160861000107 ], [ -121.346520339000023, 49.382451351000043 ], [ -121.341098072999941, 49.382217819000061 ], [ -121.341270805999955, 49.380504038000055 ], [ -121.342247817999947, 49.38017868200005 ], [ -121.343235099999944, 49.37984990000011 ], [ -121.343872186999974, 49.379714111000105 ], [ -121.345092005, 49.37955648600007 ], [ -121.345944827999986, 49.379546581000064 ], [ -121.34650989799999, 49.379539997000094 ], [ -121.347521897999954, 49.379624188000079 ], [ -121.351077842999956, 49.380102382000068 ], [ -121.353486677999967, 49.3804262620001 ], [ -121.353401841, 49.381270224000112 ], [ -121.353333591999956, 49.381280896000092 ], [ -121.352868807, 49.381281703000091 ], [ -121.351884602999959, 49.381194290000046 ], [ -121.352730558999951, 49.383078678000061 ], [ -121.35197708, 49.383046286000109 ], [ -121.351941795999906, 49.383397156000051 ], [ -121.346448907999928, 49.383160861000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.989264105322829", "sL_AssetLoss": "864.39", "sL_BldgLoss": "855.11", "sL_StrLoss": "760.41", "sL_NStrLoss": "94.7", "sL_ContLoss": "9.28", "geom_point": "0101000020E61000000DC00644C85B5EC0E87AEC785DC74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.436264511999951, 49.555673435000081 ], [ -121.43899195599991, 49.555788070000119 ], [ -121.438905491999947, 49.556660848000092 ], [ -121.438533722999978, 49.557215303000049 ], [ -121.437232086999956, 49.558565401000074 ], [ -121.436537699, 49.559059687000065 ], [ -121.435968101999947, 49.559123697000103 ], [ -121.434784109999953, 49.559422792000063 ], [ -121.433882790000027, 49.559472695000125 ], [ -121.432574180999922, 49.559365901000049 ], [ -121.431885793999982, 49.559220615000086 ], [ -121.429195528999983, 49.558902623000108 ], [ -121.429321773999987, 49.557631074000035 ], [ -121.42943100299999, 49.556530856000073 ], [ -121.43336499699997, 49.556696425000105 ], [ -121.433478088999948, 49.555556249000055 ], [ -121.436264511999951, 49.555673435000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.95973461450469", "sL_AssetLoss": "17.484", "sL_BldgLoss": "16.78", "sL_StrLoss": "1.58", "sL_NStrLoss": "15.2", "sL_ContLoss": "0.704", "geom_point": "0101000020E61000000F392AF5F4585EC01DD7F125F5B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.390735259999957, 49.391914937000067 ], [ -121.390763858999961, 49.391628210000057 ], [ -121.390147157999962, 49.39160192100011 ], [ -121.390190785999934, 49.391164551000045 ], [ -121.389748873999935, 49.391145712000117 ], [ -121.38976759, 49.390958089000065 ], [ -121.388531442999977, 49.390905379000067 ], [ -121.388616141999961, 49.390056555000065 ], [ -121.388311791999939, 49.390043576000053 ], [ -121.388370413999922, 49.38945608100002 ], [ -121.391439610999939, 49.389298343000057 ], [ -121.391050271999973, 49.39037548500005 ], [ -121.390968654999938, 49.391924885000073 ], [ -121.390735259999957, 49.391914937000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5431917", "BldgCostT": "3536667", "sL_LossRatio": "0.637761855589831", "sL_AssetLoss": "2748.366", "sL_BldgLoss": "1752.803", "sL_StrLoss": "1291.253", "sL_NStrLoss": "461.55", "sL_ContLoss": "995.563", "geom_point": "0101000020E610000032C64D2E825A5EC0E65BDDB949D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.415937043, 49.684625221000069 ], [ -121.418652733999949, 49.684739529000076 ], [ -121.418294374999974, 49.68832973800005 ], [ -121.418262718999955, 49.688328406000075 ], [ -121.418216095999981, 49.688795438000021 ], [ -121.418114077999974, 49.688791145000032 ], [ -121.418076211999903, 49.689170440000069 ], [ -121.418036640999929, 49.689168775000063 ], [ -121.417996831999915, 49.689567542000098 ], [ -121.417970055999945, 49.689566414000097 ], [ -121.417928651999929, 49.689981142000114 ], [ -121.417815367999964, 49.689976375000121 ], [ -121.417773068999978, 49.690400044000043 ], [ -121.417727604999968, 49.69039813100008 ], [ -121.417686588999942, 49.690808945000121 ], [ -121.417599311999979, 49.690805273000095 ], [ -121.417551808999946, 49.691281047000089 ], [ -121.417341575999956, 49.691272200000093 ], [ -121.417289926999942, 49.691789452000137 ], [ -121.416907222999953, 49.691773346000119 ], [ -121.416826451999896, 49.692582160000072 ], [ -121.416219627999951, 49.69255661800009 ], [ -121.416092791999944, 49.693826474000076 ], [ -121.415975579999966, 49.693821541000069 ], [ -121.415924012999966, 49.694337778000076 ], [ -121.414628893999961, 49.694283251000101 ], [ -121.414599371999955, 49.694578708000087 ], [ -121.412135011999979, 49.694474913000128 ], [ -121.410557492999885, 49.694408441000093 ], [ -121.409068976999976, 49.694345697000074 ], [ -121.409174267999944, 49.693293175000129 ], [ -121.409802492000011, 49.692750215000054 ], [ -121.410331090999989, 49.691867194000103 ], [ -121.410123915999961, 49.691459807000044 ], [ -121.410189206999959, 49.69028200700005 ], [ -121.40990702299996, 49.689505877000023 ], [ -121.409956778999941, 49.689008357000034 ], [ -121.410389187999925, 49.689026585000107 ], [ -121.410467777999926, 49.688240647000065 ], [ -121.410507593999938, 49.688199796000113 ], [ -121.412246604999922, 49.687566097000101 ], [ -121.412782881999959, 49.687241292000067 ], [ -121.41304618399991, 49.686831198000071 ], [ -121.413356809000035, 49.684532502000124 ], [ -121.41337266499994, 49.684517218000067 ], [ -121.415937043, 49.684625221000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.992870995056131", "sL_AssetLoss": "366.11", "sL_BldgLoss": "363.5", "sL_StrLoss": "343", "sL_NStrLoss": "20.5", "sL_ContLoss": "2.61", "geom_point": "0101000020E61000008C6345896D535EC0895019BD22B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.304546394999974, 49.437427153000058 ], [ -121.305275330999976, 49.437437840000058 ], [ -121.305238142999912, 49.438516759000102 ], [ -121.304824521999961, 49.438510695000033 ], [ -121.304815220999942, 49.438780424000129 ], [ -121.304401596999938, 49.43877436000011 ], [ -121.304392295999904, 49.439044088000045 ], [ -121.30397867, 49.439038022000055 ], [ -121.303969364999901, 49.439307751000037 ], [ -121.302728480999974, 49.439289542000111 ], [ -121.30271917099995, 49.439559271000064 ], [ -121.301478279999984, 49.439541047000084 ], [ -121.30149570499999, 49.43903664900008 ], [ -121.301499770999953, 49.43891895399999 ], [ -121.30173094099996, 49.438823708000029 ], [ -121.301938470999957, 49.438738209000114 ], [ -121.302269908999932, 49.438743077000026 ], [ -121.3023334799999, 49.438744010000086 ], [ -121.302334385999984, 49.438717784000062 ], [ -121.302339450999924, 49.438571057000082 ], [ -121.302523466999943, 49.438476934000057 ], [ -121.302756412999926, 49.438480353000045 ], [ -121.302760721999945, 49.438355578000028 ], [ -121.303036342999974, 49.438214597000076 ], [ -121.303179343999929, 49.438216696000083 ], [ -121.303182191999952, 49.438134173 ], [ -121.30348367199997, 49.437951296000065 ], [ -121.303602269999942, 49.43795303600006 ], [ -121.303604865999915, 49.437877778000072 ], [ -121.303824403999954, 49.437744605000027 ], [ -121.30391015599993, 49.437687686000096 ], [ -121.30402519099999, 49.437689374000037 ], [ -121.304027944999973, 49.437609504000058 ], [ -121.304307937999965, 49.437423656000128 ], [ -121.304546394999974, 49.437427153000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.995935245468943", "sL_AssetLoss": "568.3", "sL_BldgLoss": "565.99", "sL_StrLoss": "546", "sL_NStrLoss": "19.99", "sL_ContLoss": "2.31", "geom_point": "0101000020E610000022E90DD6435A5EC05E45A931DFCC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.408660810999919, 49.598571679000059 ], [ -121.41100178399995, 49.598670574000039 ], [ -121.411327380000017, 49.599141198000041 ], [ -121.411407891999943, 49.599205290000086 ], [ -121.412070106999963, 49.599284984000107 ], [ -121.412495006999961, 49.599821997000078 ], [ -121.412444006999948, 49.602304307000097 ], [ -121.412432755999987, 49.602336750000127 ], [ -121.408302343999978, 49.602162296000117 ], [ -121.408660810999919, 49.598571679000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.994980422509561", "sL_AssetLoss": "878.56", "sL_BldgLoss": "874.15", "sL_StrLoss": "829.25", "sL_NStrLoss": "44.9", "sL_ContLoss": "4.41", "geom_point": "0101000020E6100000D326355197545EC024A63CA1F4B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.31882811, 49.389899608000114 ], [ -121.318868793, 49.388858002000106 ], [ -121.31887691699994, 49.388082794000091 ], [ -121.319007609999957, 49.388331902000054 ], [ -121.319227801999943, 49.388472188000094 ], [ -121.31944541199999, 49.388530412000051 ], [ -121.319480211999945, 49.388521141000027 ], [ -121.319740274999916, 49.388452 ], [ -121.319898704999986, 49.388345297000093 ], [ -121.319954814999946, 49.388240396000086 ], [ -121.32025211399997, 49.387723920000091 ], [ -121.320361490999971, 49.387533907000055 ], [ -121.320401204999953, 49.387332695000062 ], [ -121.320396632999945, 49.387302814000115 ], [ -121.320373011999934, 49.38714838400012 ], [ -121.320343832999981, 49.387099066000133 ], [ -121.323434157999912, 49.387232777000058 ], [ -121.323259822999887, 49.388955556000084 ], [ -121.323764255999933, 49.38897737300006 ], [ -121.323722700999951, 49.389388049000097 ], [ -121.324779446999941, 49.389433746000087 ], [ -121.324416089999914, 49.393025181000056 ], [ -121.319462639000022, 49.392810887000046 ], [ -121.318860292999901, 49.390358192000043 ], [ -121.31882811, 49.389899608000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99574006151417", "sL_AssetLoss": "607.99", "sL_BldgLoss": "605.4", "sL_StrLoss": "583", "sL_NStrLoss": "22.4", "sL_ContLoss": "2.59", "geom_point": "0101000020E6100000A2F2E9905F545EC070C03AD03BB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.317056976999936, 49.406591938000155 ], [ -121.31677448399995, 49.405786069000065 ], [ -121.316699603, 49.405572429000117 ], [ -121.318714494999966, 49.405659651000107 ], [ -121.31869267799999, 49.405874949000079 ], [ -121.319609577999955, 49.405914627000101 ], [ -121.319245689999917, 49.409505956000075 ], [ -121.319147247999936, 49.409501696000106 ], [ -121.318970375999967, 49.411247058000072 ], [ -121.317770191999927, 49.411195119000126 ], [ -121.31762559, 49.411188860000031 ], [ -121.31768119199991, 49.41050338700007 ], [ -121.317669720999973, 49.409443708000062 ], [ -121.317666307999943, 49.409125809000052 ], [ -121.317609965999949, 49.40888522500012 ], [ -121.317485414999936, 49.408353229000056 ], [ -121.31737451199993, 49.407879509000082 ], [ -121.31734827299999, 49.407805982000063 ], [ -121.317471371999929, 49.407774021000101 ], [ -121.317056976999936, 49.406591938000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14518250", "BldgCostT": "9485000", "sL_LossRatio": "0.990150610269673", "sL_AssetLoss": "9426.98", "sL_BldgLoss": "9334.13", "sL_StrLoss": "8877.61", "sL_NStrLoss": "456.52", "sL_ContLoss": "92.85", "geom_point": "0101000020E610000077AD94D0235B5EC09707C0AAC0BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.418545685999945, 49.493580201000135 ], [ -121.418838099999931, 49.492208698000034 ], [ -121.41915691399997, 49.489639405000048 ], [ -121.419151806999963, 49.48883361700004 ], [ -121.419365447999937, 49.488842646000144 ], [ -121.419414126999982, 49.488352629000111 ], [ -121.419432805999989, 49.488353418000038 ], [ -121.419627725999987, 49.486391129000062 ], [ -121.41967701399993, 49.486393212000074 ], [ -121.41997057699993, 49.48343752800006 ], [ -121.419995660999987, 49.483438588000055 ], [ -121.42004280099999, 49.482963929000107 ], [ -121.420056679999917, 49.482964516000024 ], [ -121.42009942299994, 49.482534129000015 ], [ -121.420167657999968, 49.482537013000126 ], [ -121.420215242999944, 49.482057831000077 ], [ -121.421165198, 49.482097974000062 ], [ -121.421362204999951, 49.480113652000057 ], [ -121.421764775000014, 49.480130662000136 ], [ -121.421807509999937, 49.479700162000086 ], [ -121.422270681999947, 49.479719729000074 ], [ -121.422275395999961, 49.479573001000034 ], [ -121.422689387999966, 49.479578648000064 ], [ -121.422692567999931, 49.479479714000064 ], [ -121.417901428999954, 49.479277217000138 ], [ -121.417624818999926, 49.478006504000049 ], [ -121.417544811999974, 49.476233293000035 ], [ -121.418020075999976, 49.474679492000057 ], [ -121.418306015999917, 49.473744604000053 ], [ -121.418601441999925, 49.473757096000057 ], [ -121.421694280999986, 49.47388783600011 ], [ -121.42154162099996, 49.475425824000069 ], [ -121.422086065999949, 49.475448830000047 ], [ -121.422052016999913, 49.475791887000106 ], [ -121.424052577999987, 49.475819167000061 ], [ -121.424069890999945, 49.475279679000082 ], [ -121.424897803999926, 49.475290958000095 ], [ -121.424906455999988, 49.475021213000076 ], [ -121.425320409999983, 49.475026851000074 ], [ -121.425334783999944, 49.474578586000092 ], [ -121.425203976999953, 49.474573063000022 ], [ -121.425278610999911, 49.473820544000084 ], [ -121.423106553999958, 49.473728809000121 ], [ -121.423131750999971, 49.473474871000093 ], [ -121.427024150999955, 49.473533157000055 ], [ -121.427285360999988, 49.473538011000059 ], [ -121.427605576999923, 49.473548866000016 ], [ -121.431323259999957, 49.473652926000071 ], [ -121.431264374999927, 49.474247432000084 ], [ -121.431426335999973, 49.474254261000112 ], [ -121.43156539099999, 49.474260124000132 ], [ -121.432161426000036, 49.474285255000019 ], [ -121.432081130999904, 49.475096063000137 ], [ -121.43204536799999, 49.47545717200007 ], [ -121.431945440999954, 49.47646618000006 ], [ -121.433142522999944, 49.476482404000087 ], [ -121.433094069999967, 49.478000775000119 ], [ -121.433082268, 49.47837061900006 ], [ -121.432668283999959, 49.478365010000061 ], [ -121.432659672999961, 49.47863475500008 ], [ -121.431083890999943, 49.47861338800007 ], [ -121.43100373, 49.478612301000048 ], [ -121.431020969999906, 49.478072811000089 ], [ -121.430606988999955, 49.478067194000062 ], [ -121.430589744999963, 49.478606683000045 ], [ -121.430175759999969, 49.478601065000056 ], [ -121.430167134999948, 49.478870809000092 ], [ -121.429623458999927, 49.478863428000125 ], [ -121.429168623999914, 49.47885725000009 ], [ -121.428925174000014, 49.478853943000068 ], [ -121.428920625999964, 49.478996071 ], [ -121.428916542999943, 49.479123689000076 ], [ -121.428697948, 49.479120718000054 ], [ -121.428502553, 49.479118064000026 ], [ -121.428498980999976, 49.479229714000041 ], [ -121.428493918999948, 49.479387807000059 ], [ -121.427251945999942, 49.479370924000072 ], [ -121.427268821999945, 49.47884414700011 ], [ -121.42727786799999, 49.478561692000021 ], [ -121.426863883999957, 49.478556061000042 ], [ -121.426861986999938, 49.478615297000047 ], [ -121.426846596999908, 49.479095550000054 ], [ -121.426432609999921, 49.479089918000057 ], [ -121.426415318999943, 49.479629406000107 ], [ -121.425630207000012, 49.479618720000104 ], [ -121.425587333999928, 49.479618137000102 ], [ -121.425579594999959, 49.479859468000022 ], [ -121.425657164999961, 49.479862743000091 ], [ -121.427312261999987, 49.479932599000101 ], [ -121.426956166, 49.483523895000133 ], [ -121.42655356299997, 49.483506905000063 ], [ -121.426510869999973, 49.483937405000127 ], [ -121.426250192999959, 49.483926403000062 ], [ -121.425560872999981, 49.483897307000035 ], [ -121.425529959999935, 49.484208939000048 ], [ -121.426207573999989, 49.484237539000056 ], [ -121.426017474, 49.486154154000161 ], [ -121.426133397999962, 49.486159047000037 ], [ -121.426088220999986, 49.486614518000117 ], [ -121.42635892, 49.486625941000085 ], [ -121.426324389999962, 49.486974084000096 ], [ -121.42665652899997, 49.486988101000065 ], [ -121.426851524999904, 49.486996329000135 ], [ -121.426790323999953, 49.487613428000095 ], [ -121.427361246999965, 49.48763751700011 ], [ -121.427005095999945, 49.491228773000067 ], [ -121.426473813999976, 49.491206356000127 ], [ -121.426255887999929, 49.493403284000046 ], [ -121.425879631999948, 49.493387407000064 ], [ -121.425498498999957, 49.493371323000076 ], [ -121.425466969999931, 49.49368910200004 ], [ -121.420932277999938, 49.493497629000068 ], [ -121.420582364000026, 49.49348284600012 ], [ -121.41996058699999, 49.493456575000053 ], [ -121.420004068999972, 49.493018865000039 ], [ -121.419949915999965, 49.493016577000077 ], [ -121.419999514999972, 49.492517261000032 ], [ -121.419991015000022, 49.492516902000027 ], [ -121.419320326999966, 49.492488560000048 ], [ -121.419324433999947, 49.492447215000013 ], [ -121.418862948999916, 49.492427711000076 ], [ -121.418616607999923, 49.494906863000075 ], [ -121.418610356, 49.494969761000092 ], [ -121.418461933999978, 49.494963489000057 ], [ -121.418465557, 49.494903533000134 ], [ -121.418466108999951, 49.494894543000086 ], [ -121.418545685999945, 49.493580201000135 ] ], [ [ -121.423595318, 49.477162244000048 ], [ -121.42360397799996, 49.476892501000087 ], [ -121.423526626999973, 49.476891446000131 ], [ -121.423499886999977, 49.477160944000111 ], [ -121.423595318, 49.477162244000048 ] ], [ [ -121.426563787999925, 49.474996427000079 ], [ -121.426599921999951, 49.474631996000028 ], [ -121.426575498999938, 49.474630966000042 ], [ -121.426563787999925, 49.474996427000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17266000", "BldgCostT": "11380000", "sL_LossRatio": "0.982595696972933", "sL_AssetLoss": "14984.8", "sL_BldgLoss": "14724", "sL_StrLoss": "13492.6", "sL_NStrLoss": "1231.4", "sL_ContLoss": "260.8", "geom_point": "0101000020E6100000960A4BB8E75B5EC0BFAAC486B8C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.430597818999956, 49.567939426000081 ], [ -121.43072847, 49.566623376000074 ], [ -121.429942899, 49.566590314000074 ], [ -121.428912437999884, 49.566546935000069 ], [ -121.42706610299993, 49.56646918900006 ], [ -121.427074413999947, 49.566385536000041 ], [ -121.426073491999901, 49.566343375 ], [ -121.425937525000037, 49.567711585000048 ], [ -121.425766610999958, 49.567704385000042 ], [ -121.420422296999917, 49.567479107000054 ], [ -121.42065031199995, 49.565187345000062 ], [ -121.420751082999985, 49.564174427000154 ], [ -121.41988279, 49.564137801000093 ], [ -121.41992656099994, 49.563697892000086 ], [ -121.419699113, 49.563688297000041 ], [ -121.419743393, 49.563243291000084 ], [ -121.419836240999985, 49.56231015200013 ], [ -121.419906212999962, 49.562463620000081 ], [ -121.419984903999961, 49.562636232000074 ], [ -121.420050534999987, 49.56268262400004 ], [ -121.420235963999986, 49.562813754000061 ], [ -121.420270755999965, 49.562808114000042 ], [ -121.421284084999954, 49.563206560000069 ], [ -121.421859752999964, 49.563332874000018 ], [ -121.422111874999985, 49.563388178000082 ], [ -121.42298794099996, 49.56325452600008 ], [ -121.423326194, 49.563174790000076 ], [ -121.423911727999908, 49.563036765000057 ], [ -121.424590569999964, 49.562852012000072 ], [ -121.424648352999924, 49.562836279000102 ], [ -121.425542750999981, 49.562453448000035 ], [ -121.425827195999972, 49.562252899000022 ], [ -121.426121024999958, 49.562045745000049 ], [ -121.426145869999971, 49.56201071600006 ], [ -121.42639707, 49.561492647000094 ], [ -121.426448223999927, 49.561387208000042 ], [ -121.426526125999942, 49.560701743000038 ], [ -121.427098207999961, 49.560632009000059 ], [ -121.431470492999907, 49.560950992000109 ], [ -121.433866517999917, 49.561281394000098 ], [ -121.435630194999959, 49.561089194000012 ], [ -121.436236201999961, 49.561114809000046 ], [ -121.436975481999966, 49.560972403000044 ], [ -121.437422495999982, 49.560815705000017 ], [ -121.438339088999967, 49.560280193000054 ], [ -121.438868500999931, 49.560143486000094 ], [ -121.440114712999971, 49.559206308000107 ], [ -121.441726288, 49.55764541000012 ], [ -121.441966783999973, 49.557072896000072 ], [ -121.442409589999954, 49.556628507000013 ], [ -121.44274361, 49.556120107000069 ], [ -121.442925380999938, 49.555160192000109 ], [ -121.443208179999914, 49.554093398000113 ], [ -121.443157503999927, 49.55312211200004 ], [ -121.442982987999983, 49.552498298000046 ], [ -121.441868785999986, 49.550594206000042 ], [ -121.441323910999984, 49.550326385000055 ], [ -121.440881687999976, 49.550320696000043 ], [ -121.440633190999932, 49.550299298000056 ], [ -121.440092077999964, 49.549958995000054 ], [ -121.438860282999926, 49.548682891000027 ], [ -121.438671893, 49.548060496000069 ], [ -121.438722888999905, 49.547754300000094 ], [ -121.439114090999951, 49.547643213000086 ], [ -121.439417403, 49.547664488000102 ], [ -121.438927397999961, 49.546992303000103 ], [ -121.438844258999964, 49.546373298000049 ], [ -121.440059708999968, 49.546424375000051 ], [ -121.441724173999958, 49.546494297000052 ], [ -121.44283012799994, 49.546540743000037 ], [ -121.44278001399999, 49.547047139000014 ], [ -121.442741396999935, 49.547437348000095 ], [ -121.44269992599996, 49.547856372000034 ], [ -121.443394393999981, 49.547885531000063 ], [ -121.443137255999915, 49.550483966000094 ], [ -121.443130945999968, 49.55054773200002 ], [ -121.443215982999931, 49.550551301000077 ], [ -121.446510453999977, 49.550689565000013 ], [ -121.447629919999883, 49.550736524000094 ], [ -121.447377884999966, 49.553285609000085 ], [ -121.447297549, 49.554098071000105 ], [ -121.447501330999913, 49.554106618000105 ], [ -121.448476406999973, 49.554147509000053 ], [ -121.448454785999971, 49.554366215000144 ], [ -121.448422978999943, 49.554687964000024 ], [ -121.448652933999981, 49.554697606000076 ], [ -121.448385204999937, 49.557405777000078 ], [ -121.448297924, 49.558288582000039 ], [ -121.447616951999933, 49.558260027000074 ], [ -121.447530204999964, 49.559137267000054 ], [ -121.447450782999965, 49.559940397000084 ], [ -121.445906535999953, 49.559875627000096 ], [ -121.445900916999975, 49.559932433000043 ], [ -121.445550683999954, 49.559917741000042 ], [ -121.445123855999967, 49.559899833000017 ], [ -121.44508491299996, 49.560293411000089 ], [ -121.445067712999972, 49.560467252000123 ], [ -121.444879181999966, 49.560459341000112 ], [ -121.444330460999979, 49.560436317000054 ], [ -121.444280388999957, 49.560942285000095 ], [ -121.444263615999944, 49.561111769000085 ], [ -121.444162941999963, 49.561107544000052 ], [ -121.444121432999935, 49.561526971000085 ], [ -121.443583416999928, 49.561504392000046 ], [ -121.44351574199996, 49.561501552000031 ], [ -121.443509564999928, 49.561563952000036 ], [ -121.443490418999943, 49.561757385000071 ], [ -121.443280634999894, 49.561748581000103 ], [ -121.442893682999966, 49.561732339000059 ], [ -121.442858360999963, 49.562089131 ], [ -121.442857612, 49.562096700000104 ], [ -121.442849402999968, 49.562096355000058 ], [ -121.441652662999957, 49.562046115000079 ], [ -121.439825280999969, 49.56196937400005 ], [ -121.439665872999953, 49.563578482000018 ], [ -121.439641174999934, 49.563827771000092 ], [ -121.439358060999922, 49.56381587900011 ], [ -121.438957564999924, 49.563799055000089 ], [ -121.438922622999939, 49.564151699000071 ], [ -121.438922564999984, 49.564152287000098 ], [ -121.438921895999954, 49.564152259000075 ], [ -121.435961654999957, 49.564027859000092 ], [ -121.435862137999919, 49.565031522 ], [ -121.436422139999976, 49.56505506200007 ], [ -121.436361430999952, 49.565667391000041 ], [ -121.436066096, 49.568645943000043 ], [ -121.430550705999948, 49.568413979000091 ], [ -121.430597818999956, 49.567939426000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.995049654381358", "sL_AssetLoss": "662.58", "sL_BldgLoss": "659.3", "sL_StrLoss": "630", "sL_NStrLoss": "29.3", "sL_ContLoss": "3.28", "geom_point": "0101000020E61000006779C3226B5D5EC0DDAA56ECD0BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.4593743399999, 49.485200524000092 ], [ -121.459382805999937, 49.484930775000088 ], [ -121.45896876099999, 49.484925259000086 ], [ -121.45898429, 49.484430605000078 ], [ -121.458985696999946, 49.484385763000049 ], [ -121.458571658999958, 49.484380246000093 ], [ -121.458580128999927, 49.484110498000049 ], [ -121.458166090999924, 49.484104979000065 ], [ -121.458174563999989, 49.483835231000057 ], [ -121.457760527999966, 49.483829710000066 ], [ -121.457836793999931, 49.481401979000061 ], [ -121.459078837, 49.481418533000095 ], [ -121.459087301999929, 49.481148786000041 ], [ -121.460170356999953, 49.48116321100008 ], [ -121.461571378999963, 49.481181857000109 ], [ -121.461520659999962, 49.482800348000048 ], [ -121.461106633, 49.482794839000107 ], [ -121.461055895999934, 49.484413328000031 ], [ -121.460641854999963, 49.484407819000083 ], [ -121.460616479999914, 49.485217064000032 ], [ -121.4593743399999, 49.485200524000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.998416400407067", "sL_AssetLoss": "788.078", "sL_BldgLoss": "786.83", "sL_StrLoss": "777", "sL_NStrLoss": "9.83", "sL_ContLoss": "1.248", "geom_point": "0101000020E610000084BBD48444405EC0F0A7C64B37D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.006560270999941, 49.636766306000034 ], [ -121.006583445999951, 49.636767369000069 ], [ -121.006530051999988, 49.637258598000052 ], [ -121.006193312999955, 49.64035640700007 ], [ -121.006187519, 49.64035614100009 ], [ -121.005823784999961, 49.643701807000063 ], [ -121.005419650999912, 49.643683245000041 ], [ -121.005148094, 49.646180517000069 ], [ -121.002732768999948, 49.646069552000043 ], [ -121.002305140999923, 49.646049901000055 ], [ -121.001879452999944, 49.64464847400005 ], [ -121.001783083999953, 49.64418233300011 ], [ -121.001711740999937, 49.643856246000084 ], [ -121.00169543, 49.643075497 ], [ -121.001854054999967, 49.642319019000112 ], [ -121.002196407999989, 49.641506042000152 ], [ -121.002957871999968, 49.640500438000046 ], [ -121.004287178999945, 49.639145803000176 ], [ -121.006560270999941, 49.636766306000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.992840024190116", "sL_AssetLoss": "669.695", "sL_BldgLoss": "664.9", "sL_StrLoss": "624.9", "sL_NStrLoss": "40", "sL_ContLoss": "4.795", "geom_point": "0101000020E6100000840840F5B25B5EC06B0534AE0BBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.432877940999958, 49.490744216000053 ], [ -121.435728648999927, 49.490864299000059 ], [ -121.435373123999938, 49.494455565000017 ], [ -121.43346594799999, 49.494375235000057 ], [ -121.429866599999926, 49.494223541000089 ], [ -121.430222551999989, 49.490632291000054 ], [ -121.432877940999958, 49.490744216000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2039667", "BldgCostT": "1406667", "sL_LossRatio": "0.992256052923344", "sL_AssetLoss": "706.229", "sL_BldgLoss": "700.76", "sL_StrLoss": "647.15", "sL_NStrLoss": "53.61", "sL_ContLoss": "5.469", "geom_point": "0101000020E61000008A1FA50A2D605EC0AD435EA48ABB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.501277384999952, 49.467626634000105 ], [ -121.501352869999948, 49.466852509000034 ], [ -121.498588142999893, 49.466737663000075 ], [ -121.498641264999947, 49.466193193000066 ], [ -121.49842387299995, 49.466184160000061 ], [ -121.498774279999935, 49.462592541000106 ], [ -121.499956254, 49.462641651000077 ], [ -121.499965732999939, 49.462544469000086 ], [ -121.505468828999966, 49.462772947000055 ], [ -121.505330913999927, 49.46418873600004 ], [ -121.507130862999958, 49.464263406000086 ], [ -121.506781094999951, 49.467855044000054 ], [ -121.501277384999952, 49.467626634000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.996914700544465", "sL_AssetLoss": "551", "sL_BldgLoss": "549.3", "sL_StrLoss": "533", "sL_NStrLoss": "16.3", "sL_ContLoss": "1.7", "geom_point": "0101000020E61000002D2E654B9C595EC08AF42E202CD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.398728911, 49.636036703000059 ], [ -121.39808368599995, 49.635901405000041 ], [ -121.39836950499992, 49.635961020000117 ], [ -121.398419390999948, 49.634749585000058 ], [ -121.398534683999941, 49.631945649000031 ], [ -121.401411992999925, 49.632067368000087 ], [ -121.401388729999937, 49.632299853000056 ], [ -121.401840491999934, 49.632318957000045 ], [ -121.401793680999958, 49.632786821000174 ], [ -121.402059315999921, 49.632798053000045 ], [ -121.401704012999971, 49.636349040000056 ], [ -121.401700065999961, 49.636388472000057 ], [ -121.399220686999911, 49.636283607000045 ], [ -121.398728911, 49.636036703000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99691280468105", "sL_AssetLoss": "278.57", "sL_BldgLoss": "277.71", "sL_StrLoss": "270", "sL_NStrLoss": "7.71", "sL_ContLoss": "0.86", "geom_point": "0101000020E6100000D52AD1C4415A5EC0A63627E5A4D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.409398773999953, 49.646708850000039 ], [ -121.409477882999937, 49.644281243000101 ], [ -121.410724035999976, 49.644298358000071 ], [ -121.410680121999945, 49.645647029000038 ], [ -121.410751954999967, 49.645648016000116 ], [ -121.411095517999954, 49.645652732000123 ], [ -121.411086736999962, 49.645922467000069 ], [ -121.411502133999988, 49.645928168000104 ], [ -121.411475798999945, 49.64673737100005 ], [ -121.410200028999952, 49.646719857000086 ], [ -121.409398773999953, 49.646708850000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993880801363548", "sL_AssetLoss": "357.89", "sL_BldgLoss": "355.7", "sL_StrLoss": "338", "sL_NStrLoss": "17.7", "sL_ContLoss": "2.19", "geom_point": "0101000020E610000073672618CE5B5EC09EC15386F9C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.434009096999944, 49.54018117600009 ], [ -121.434017718999911, 49.539911433000043 ], [ -121.43360321599999, 49.539905822000023 ], [ -121.43361184099993, 49.53963607900004 ], [ -121.433197339999978, 49.539630467000087 ], [ -121.433205965999932, 49.539360725000037 ], [ -121.432376968, 49.539349495000117 ], [ -121.432385598999986, 49.539079752000077 ], [ -121.431971102999938, 49.539074134000074 ], [ -121.431994605999989, 49.53833974700013 ], [ -121.431997000999985, 49.538264909000112 ], [ -121.432825980999965, 49.538276141000075 ], [ -121.432834607999965, 49.538006399000061 ], [ -121.434492558, 49.538028847000078 ], [ -121.434501175999955, 49.53775910500007 ], [ -121.43657360499999, 49.537787131000066 ], [ -121.436539174999908, 49.53886610100011 ], [ -121.436124679, 49.538860499000094 ], [ -121.436107459999931, 49.539399984000063 ], [ -121.435692958999979, 49.53939438 ], [ -121.435667122000012, 49.540203608000084 ], [ -121.435214443999925, 49.540197485000107 ], [ -121.434009096999944, 49.54018117600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6216334", "BldgCostT": "4023334", "sL_LossRatio": "0.982720300156551", "sL_AssetLoss": "6087.49", "sL_BldgLoss": "5982.3", "sL_StrLoss": "5516.1", "sL_NStrLoss": "466.2", "sL_ContLoss": "105.19", "geom_point": "0101000020E6100000022E235058615EC0459CD2EAF9B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.519731729999975, 49.385808935000043 ], [ -121.519882555999985, 49.384252804 ], [ -121.518752260000014, 49.384238325000062 ], [ -121.518774010999948, 49.38351492200011 ], [ -121.513889773999892, 49.383312383000032 ], [ -121.514238354999989, 49.379720274000093 ], [ -121.518195110999969, 49.379884370000134 ], [ -121.518217843999977, 49.379649884000038 ], [ -121.52542516699998, 49.380352937000076 ], [ -121.525822218999963, 49.380354079000043 ], [ -121.525803221999965, 49.380550368000058 ], [ -121.525889827999961, 49.380551473000068 ], [ -121.525865615999962, 49.381360757000046 ], [ -121.52572496099998, 49.381358963000103 ], [ -121.525672785999959, 49.381898026000073 ], [ -121.525849472999951, 49.381900279000057 ], [ -121.525841402999959, 49.382170040000112 ], [ -121.526254594999941, 49.382175309000026 ], [ -121.52624866099994, 49.382373703000034 ], [ -121.527212057999947, 49.382413561000057 ], [ -121.52686446599995, 49.386005697 ], [ -121.526047682999916, 49.385971906000059 ], [ -121.526039434999973, 49.386057117000085 ], [ -121.525227052999952, 49.386023502000086 ], [ -121.525225800999976, 49.386036436000062 ], [ -121.519731729999975, 49.385808935000043 ] ], [ [ -121.519602996999978, 49.383439632000091 ], [ -121.51960911899999, 49.383235875000047 ], [ -121.519413801000013, 49.383227781000095 ], [ -121.51939352699999, 49.383436949000078 ], [ -121.519602996999978, 49.383439632000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.906210392902408", "sL_AssetLoss": "15.78", "sL_BldgLoss": "14.3", "sL_StrLoss": "1.7", "sL_NStrLoss": "12.6", "sL_ContLoss": "1.48", "geom_point": "0101000020E6100000C5D16E579C635EC052453347BDB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.553151994999936, 49.381165796000097 ], [ -121.553167836999961, 49.380626268000043 ], [ -121.552754651999933, 49.380621095000073 ], [ -121.552756954999921, 49.380542650000081 ], [ -121.552760331999977, 49.380427714000113 ], [ -121.556434039999942, 49.380437189000091 ], [ -121.559467671999954, 49.38027622900011 ], [ -121.559372642999918, 49.381265538000044 ], [ -121.554395092999954, 49.381060991000069 ], [ -121.554391562999967, 49.381181305000055 ], [ -121.553151994999936, 49.381165796000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.994233493624918", "sL_AssetLoss": "1002.34", "sL_BldgLoss": "996.56", "sL_StrLoss": "955", "sL_NStrLoss": "41.56", "sL_ContLoss": "5.78", "geom_point": "0101000020E61000003B8DB4549E505EC0CBB7E3F244BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.25667490599993, 49.463693077000137 ], [ -121.256780936999959, 49.462661825000033 ], [ -121.256161502999987, 49.462634695000126 ], [ -121.256326782999963, 49.462354400000024 ], [ -121.258231486999989, 49.461216459000099 ], [ -121.262437069999976, 49.461400511000107 ], [ -121.262068302, 49.464991353000102 ], [ -121.25817046, 49.464820776000089 ], [ -121.257842804999925, 49.464329806000094 ], [ -121.256992882999924, 49.46381279900006 ], [ -121.25667490599993, 49.463693077000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.991277477350938", "sL_AssetLoss": "355.975", "sL_BldgLoss": "352.87", "sL_StrLoss": "316.17", "sL_NStrLoss": "36.7", "sL_ContLoss": "3.105", "geom_point": "0101000020E61000005DD8A21E055A5EC08076B093B4D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.406418603999924, 49.652553465000103 ], [ -121.409316920999956, 49.652675805000086 ], [ -121.409040737999959, 49.655439209000079 ], [ -121.40576966499998, 49.65526489100008 ], [ -121.403520468999943, 49.655152024000074 ], [ -121.403601751999986, 49.654339743000023 ], [ -121.403855207999939, 49.654241007000039 ], [ -121.404308787999952, 49.653914806000124 ], [ -121.40436862199999, 49.653743902000066 ], [ -121.404207315999912, 49.653175691000058 ], [ -121.40378779299995, 49.652480483000055 ], [ -121.403791591999962, 49.652442512000064 ], [ -121.406418603999924, 49.652553465000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.971383858707802", "sL_AssetLoss": "1341.9", "sL_BldgLoss": "1303.5", "sL_StrLoss": "1132", "sL_NStrLoss": "171.5", "sL_ContLoss": "38.4", "geom_point": "0101000020E61000005BAFF1B2C9645EC0D113E005DBAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.572236726999975, 49.364150409000104 ], [ -121.57772848399999, 49.364375253000063 ], [ -121.57772055099997, 49.364458221000078 ], [ -121.577384946999985, 49.367967648000068 ], [ -121.571892764999959, 49.367742787000047 ], [ -121.572117077999948, 49.365400107000092 ], [ -121.572236726999975, 49.364150409000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.988868409564922", "sL_AssetLoss": "824.68", "sL_BldgLoss": "815.5", "sL_StrLoss": "783", "sL_NStrLoss": "32.5", "sL_ContLoss": "9.18", "geom_point": "0101000020E61000005C7F0173E3665EC0F4AA6B40C6AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.60446643399996, 49.358479887000108 ], [ -121.604479517999906, 49.35834219500007 ], [ -121.603842221999969, 49.35831627200011 ], [ -121.603842714999956, 49.358311077000103 ], [ -121.603813717999927, 49.358310726000092 ], [ -121.603821355999983, 49.358040954000053 ], [ -121.602995344999954, 49.358030974 ], [ -121.603002987999929, 49.357761203000074 ], [ -121.602589985999941, 49.357756210000076 ], [ -121.602594819, 49.357585678000099 ], [ -121.602620563999949, 49.356677125000076 ], [ -121.603033558999968, 49.356682117000048 ], [ -121.60303916, 49.356484357000078 ], [ -121.60317281, 49.356430307000018 ], [ -121.60400870399999, 49.357025690000064 ], [ -121.608106574999923, 49.356999871000092 ], [ -121.609847278999936, 49.356827855000091 ], [ -121.614023155999973, 49.356854689000095 ], [ -121.614384675999958, 49.35696822200007 ], [ -121.614340883999915, 49.357430098000108 ], [ -121.611250792999911, 49.357304647000063 ], [ -121.611208672999965, 49.357748572000034 ], [ -121.61071562099994, 49.357728547000058 ], [ -121.610672773999966, 49.358180082000054 ], [ -121.610009868999924, 49.358153156000093 ], [ -121.609957674, 49.35870309900011 ], [ -121.60446643399996, 49.358479887000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.986013261500207", "sL_AssetLoss": "965.2", "sL_BldgLoss": "951.7", "sL_StrLoss": "866", "sL_NStrLoss": "85.7", "sL_ContLoss": "13.5", "geom_point": "0101000020E6100000A9E2DFCA065B5EC0211DC30886B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.420164219999918, 49.416049244000121 ], [ -121.422734191999965, 49.416157995000098 ], [ -121.423362091999977, 49.416689994000123 ], [ -121.424562991999963, 49.417939009000115 ], [ -121.425261791999958, 49.418955910000143 ], [ -121.425385364999926, 49.419068665000061 ], [ -121.425305652999924, 49.419873413000083 ], [ -121.419808060999941, 49.41964085300004 ], [ -121.420164219999918, 49.416049244000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.974978842991042", "sL_AssetLoss": "626.27", "sL_BldgLoss": "610.6", "sL_StrLoss": "491.3", "sL_NStrLoss": "119.3", "sL_ContLoss": "15.67", "geom_point": "0101000020E61000005A15FAC3835A5EC0325B2EF21DBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.413461115999965, 49.49114569500005 ], [ -121.416813293999965, 49.491287495000051 ], [ -121.416804384, 49.491452400000071 ], [ -121.416546306, 49.492608895000096 ], [ -121.416334177, 49.495068865000064 ], [ -121.411824001999918, 49.494878052000097 ], [ -121.412181361999941, 49.491286865000049 ], [ -121.413441766999966, 49.491340209000072 ], [ -121.413461115999965, 49.49114569500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996100673520028", "sL_AssetLoss": "310.31", "sL_BldgLoss": "309.1", "sL_StrLoss": "298", "sL_NStrLoss": "11.1", "sL_ContLoss": "1.21", "geom_point": "0101000020E6100000379C014765505EC0A9F3EA1412BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.255388819999951, 49.461589699000044 ], [ -121.25690179599999, 49.459304288000126 ], [ -121.257064360999962, 49.459067233000049 ], [ -121.257580498999957, 49.459089837000079 ], [ -121.257365791999945, 49.46117855300011 ], [ -121.257606565999978, 49.461189097000023 ], [ -121.257268506999978, 49.461496998000058 ], [ -121.256606793999964, 49.46184600400008 ], [ -121.255811697999917, 49.462103809000062 ], [ -121.255472205999951, 49.462288899000015 ], [ -121.255155991, 49.462679092000037 ], [ -121.255034088999963, 49.463019492000093 ], [ -121.255035094999968, 49.463334288000127 ], [ -121.25518139699993, 49.463661224000134 ], [ -121.255069696999939, 49.464747220000042 ], [ -121.254456622999925, 49.464720360000037 ], [ -121.254463809999905, 49.464657759000048 ], [ -121.254544107999948, 49.463958586000039 ], [ -121.25471114, 49.463059169000068 ], [ -121.254717707999959, 49.463023890000052 ], [ -121.254894599999943, 49.462539316000168 ], [ -121.255388819999951, 49.461589699000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.958694543600204", "sL_AssetLoss": "17.649", "sL_BldgLoss": "16.92", "sL_StrLoss": "1.72", "sL_NStrLoss": "15.2", "sL_ContLoss": "0.729", "geom_point": "0101000020E61000003D734143A0595EC0A8A9A787CFCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.39954044400001, 49.586178398000058 ], [ -121.399596854999984, 49.585614260000042 ], [ -121.399316673999948, 49.58560239400007 ], [ -121.399675712, 49.582011720000033 ], [ -121.400291426999956, 49.582037797000055 ], [ -121.400458105999959, 49.582393910000079 ], [ -121.400890707999935, 49.582732897000028 ], [ -121.400955911999944, 49.583238491000074 ], [ -121.401290805999977, 49.584024609000025 ], [ -121.401276690999964, 49.584862099000105 ], [ -121.401582800999975, 49.585243697000102 ], [ -121.401754784999923, 49.585876099000082 ], [ -121.40194774299998, 49.586280326000072 ], [ -121.39954044400001, 49.586178398000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.993977267581397", "sL_AssetLoss": "662.49", "sL_BldgLoss": "658.5", "sL_StrLoss": "626", "sL_NStrLoss": "32.5", "sL_ContLoss": "3.99", "geom_point": "0101000020E61000002F0C3FD5B45A5EC0DB2F23E5BCB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.415622751999962, 49.409865818000092 ], [ -121.417492789999969, 49.409945047000093 ], [ -121.417775408999958, 49.410353687000075 ], [ -121.418175889999972, 49.41071829800002 ], [ -121.418436804999942, 49.411235299000097 ], [ -121.418960877999893, 49.41163829700011 ], [ -121.419163996999984, 49.412189487 ], [ -121.42037110299999, 49.413653606000025 ], [ -121.420394039999962, 49.413674616000073 ], [ -121.415266286999966, 49.413457446000109 ], [ -121.415622751999962, 49.409865818000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "0.995124905675364", "sL_AssetLoss": "1208.592", "sL_BldgLoss": "1202.7", "sL_StrLoss": "1137.83", "sL_NStrLoss": "64.87", "sL_ContLoss": "5.892", "geom_point": "0101000020E610000087CDD797B2595EC0BFC63F7D15D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.401577549999942, 49.645187212000039 ], [ -121.401712258999922, 49.643841286000118 ], [ -121.401554436999959, 49.643834614000085 ], [ -121.401687072999948, 49.642509352000062 ], [ -121.400718391999973, 49.64246839500008 ], [ -121.40078859299993, 49.64176708400003 ], [ -121.399414294999957, 49.641708962000095 ], [ -121.39950564599998, 49.640796597000076 ], [ -121.396416451999983, 49.640665883000125 ], [ -121.396434885999923, 49.640481892000047 ], [ -121.395959548999954, 49.640461771000147 ], [ -121.396298594999948, 49.637077828000095 ], [ -121.396452496999984, 49.637030788000068 ], [ -121.396979807999969, 49.637027997000146 ], [ -121.397319614999901, 49.637240206000058 ], [ -121.398182475999945, 49.637530693000073 ], [ -121.398898317, 49.638053402000047 ], [ -121.399948782999942, 49.638553297000037 ], [ -121.400732517, 49.638744205000073 ], [ -121.402001604999924, 49.63886951000007 ], [ -121.403669609999966, 49.639558791000056 ], [ -121.404294685999986, 49.639953307000077 ], [ -121.404626797999981, 49.640345002000061 ], [ -121.40501030899999, 49.640909001000097 ], [ -121.405606386999949, 49.642139510000035 ], [ -121.406218395999986, 49.643794404000104 ], [ -121.406204597999988, 49.645044905000063 ], [ -121.40610262899996, 49.645378417000082 ], [ -121.401577549999942, 49.645187212000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.991876332744496", "sL_AssetLoss": "349.842", "sL_BldgLoss": "347", "sL_StrLoss": "314.8", "sL_NStrLoss": "32.2", "sL_ContLoss": "2.842", "geom_point": "0101000020E610000070FB0E13475A5EC06F9CF3D754D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.411583787, 49.69624798600011 ], [ -121.41296828199998, 49.696306310000068 ], [ -121.412609388999925, 49.699896441000099 ], [ -121.410943575999951, 49.699826264000045 ], [ -121.409278666999981, 49.699756098000108 ], [ -121.408857891999958, 49.699196205000106 ], [ -121.4080962849999, 49.697467197000066 ], [ -121.40806287099997, 49.696099580000073 ], [ -121.41007342099999, 49.69618433800008 ], [ -121.411583787, 49.69624798600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0.949601089706168", "sL_AssetLoss": "20.556", "sL_BldgLoss": "19.52", "sL_StrLoss": "1.64", "sL_NStrLoss": "17.88", "sL_ContLoss": "1.036", "geom_point": "0101000020E6100000FDB90D0FC65A5EC0B83B8CC546D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.418431998999921, 49.672323531000103 ], [ -121.420913062999915, 49.672427939000059 ], [ -121.42055497599992, 49.676018218000124 ], [ -121.418668546, 49.675938838000079 ], [ -121.416411342999965, 49.675843813000029 ], [ -121.416405720999947, 49.675597002000082 ], [ -121.41622951, 49.674659898000115 ], [ -121.41584689799997, 49.674033207000058 ], [ -121.415702392999975, 49.673365290000028 ], [ -121.41574009499999, 49.672664592000032 ], [ -121.415391221999968, 49.6723 ], [ -121.415375787999892, 49.672290509000113 ], [ -121.415385299999912, 49.672195240000079 ], [ -121.416970945999964, 49.672262019000122 ], [ -121.418431998999921, 49.672323531000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.991861648016277", "sL_AssetLoss": "1120.62", "sL_BldgLoss": "1111.5", "sL_StrLoss": "1078", "sL_NStrLoss": "33.5", "sL_ContLoss": "9.12", "geom_point": "0101000020E61000005BBF0DEF81635EC0C687D9CB36B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.55223132899998, 49.382575685000155 ], [ -121.557725173999984, 49.382801539000063 ], [ -121.557379946999973, 49.386393770000019 ], [ -121.551885676, 49.386167901000114 ], [ -121.55223132899998, 49.382575685000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994958297024773", "sL_AssetLoss": "321.32", "sL_BldgLoss": "319.7", "sL_StrLoss": "306", "sL_NStrLoss": "13.7", "sL_ContLoss": "1.62", "geom_point": "0101000020E6100000C2F916CE9C5A5EC0C0C9999A42BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.414754397999957, 49.468987964000057 ], [ -121.41707452899999, 49.469086141000062 ], [ -121.417238090999973, 49.469482598000049 ], [ -121.417311214999984, 49.470651897000053 ], [ -121.416932801000016, 49.47162740800006 ], [ -121.416387459999896, 49.472663489000077 ], [ -121.414397410000021, 49.472579276000069 ], [ -121.414754397999957, 49.468987964000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.994630503224755", "sL_AssetLoss": "981.47", "sL_BldgLoss": "976.2", "sL_StrLoss": "930", "sL_NStrLoss": "46.2", "sL_ContLoss": "5.27", "geom_point": "0101000020E610000021F6B6572E5D5EC089C855D144BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.457527511999956, 49.484738043000114 ], [ -121.458883220999965, 49.484794858000093 ], [ -121.458529544000029, 49.488386232000082 ], [ -121.453023627999954, 49.488155381000091 ], [ -121.453241442999968, 49.485946343000073 ], [ -121.45337773199995, 49.4845640240001 ], [ -121.457527511999956, 49.484738043000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.993736128236745", "sL_AssetLoss": "1013.75", "sL_BldgLoss": "1007.4", "sL_StrLoss": "957", "sL_NStrLoss": "50.4", "sL_ContLoss": "6.35", "geom_point": "0101000020E6100000172B6A30CD5B5EC0C16A13C4CCBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.431225650999963, 49.461086759000068 ], [ -121.431255176999954, 49.46078857400007 ], [ -121.430939360999901, 49.46077525200009 ], [ -121.431263452999971, 49.457502167000072 ], [ -121.431321069, 49.457501300000054 ], [ -121.435826483999904, 49.457610677000083 ], [ -121.437875180999967, 49.457620952000113 ], [ -121.437575529999933, 49.460651607000052 ], [ -121.437338719999957, 49.460641632000019 ], [ -121.437275652999958, 49.461279413000085 ], [ -121.436734375999947, 49.461256610000085 ], [ -121.436728230999933, 49.461318725000083 ], [ -121.43494531799999, 49.461243596000081 ], [ -121.431225650999963, 49.461086759000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.989899258392919", "sL_AssetLoss": "376.21", "sL_BldgLoss": "372.41", "sL_StrLoss": "321.81", "sL_NStrLoss": "50.6", "sL_ContLoss": "3.8", "geom_point": "0101000020E6100000976069C7AA5A5EC02578431A95D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.417776823999958, 49.670300975000018 ], [ -121.417783335999943, 49.670100268000091 ], [ -121.416243990999988, 49.670035447000025 ], [ -121.413313096999914, 49.669911970000072 ], [ -121.413583393999943, 49.667205845000076 ], [ -121.41231893899996, 49.6671525490001 ], [ -121.412459888999976, 49.66574165300004 ], [ -121.412500590999983, 49.665721494000138 ], [ -121.41290508799996, 49.666077591000018 ], [ -121.413489306, 49.666849500000112 ], [ -121.413854793999931, 49.667134403000063 ], [ -121.414142788999968, 49.667182807000067 ], [ -121.415339087999939, 49.667073095000042 ], [ -121.415965700999934, 49.66685199200009 ], [ -121.4166143, 49.666623099000091 ], [ -121.417518004999948, 49.666113193000101 ], [ -121.417989630999898, 49.665946730000037 ], [ -121.417934301999978, 49.666501240000095 ], [ -121.419198748000014, 49.666554471000033 ], [ -121.419080246999926, 49.667742376000028 ], [ -121.419038645999962, 49.668159384000077 ], [ -121.419948617, 49.668171807000078 ], [ -121.420340367, 49.668177152000119 ], [ -121.420314154999929, 49.668986356000119 ], [ -121.419898560999954, 49.668980685000079 ], [ -121.419872340999973, 49.669789887000029 ], [ -121.419456738999969, 49.669784214000096 ], [ -121.41944799599996, 49.670053949000078 ], [ -121.419056514999923, 49.670048603000048 ], [ -121.419032390999959, 49.670048274000074 ], [ -121.419030639999946, 49.670102267000054 ], [ -121.419006156999956, 49.670857476000101 ], [ -121.418668729999951, 49.670852869000029 ], [ -121.418590544999958, 49.670851800000115 ], [ -121.418582081999915, 49.671112746000034 ], [ -121.418573049999935, 49.671391269000047 ], [ -121.418523428999919, 49.671390590000087 ], [ -121.418157431999973, 49.671385591000103 ], [ -121.418139932999964, 49.671925058000092 ], [ -121.416994844999977, 49.671909408000033 ], [ -121.416893070999933, 49.671908015000092 ], [ -121.416908977, 49.671418035000073 ], [ -121.416919340999954, 49.67109881400004 ], [ -121.41733495499993, 49.671104496000055 ], [ -121.417361216999936, 49.670295295000059 ], [ -121.417776823999958, 49.670300975000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.992983088009958", "sL_AssetLoss": "316.521", "sL_BldgLoss": "314.3", "sL_StrLoss": "287.5", "sL_NStrLoss": "26.8", "sL_ContLoss": "2.221", "geom_point": "0101000020E6100000B61C013FD7595EC0A29D2EE6C2CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.401901013999947, 49.583134499000046 ], [ -121.401803192999964, 49.582278493000061 ], [ -121.40169010699999, 49.582097022000042 ], [ -121.403069654999967, 49.582155418000077 ], [ -121.405192573999926, 49.582245246000149 ], [ -121.405136235999933, 49.582809390000079 ], [ -121.405416402, 49.582821242000115 ], [ -121.405057803999981, 49.586411929000128 ], [ -121.405047313999916, 49.586411486000124 ], [ -121.402993318999975, 49.586324579000078 ], [ -121.40302528399998, 49.585955804000051 ], [ -121.402705694999966, 49.585151211000081 ], [ -121.402476182999933, 49.584994496000022 ], [ -121.402241284999931, 49.583687095000066 ], [ -121.401901013999947, 49.583134499000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4104167", "BldgCostT": "2566667", "sL_LossRatio": "0.988849086508599", "sL_AssetLoss": "3735.12", "sL_BldgLoss": "3693.47", "sL_StrLoss": "3563", "sL_NStrLoss": "130.47", "sL_ContLoss": "41.65", "geom_point": "0101000020E61000001BACAC2B2E4D5EC03E39F172649C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.203417775999966, 49.223994690000055 ], [ -121.203518115999955, 49.223024303000017 ], [ -121.202623810999953, 49.222984472000107 ], [ -121.202995253999958, 49.219392535000054 ], [ -121.208468038999953, 49.219636166000086 ], [ -121.208367809999956, 49.220606564 ], [ -121.209262072999962, 49.220646348000116 ], [ -121.208891104999935, 49.22423830000006 ], [ -121.203417775999966, 49.223994690000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.990510486026181", "sL_AssetLoss": "883.08", "sL_BldgLoss": "874.7", "sL_StrLoss": "826", "sL_NStrLoss": "48.7", "sL_ContLoss": "8.38", "geom_point": "0101000020E6100000A75AC996BE685EC01C1AA24C9BA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.64102858899993, 49.305321173000024 ], [ -121.641629602999956, 49.305328240000065 ], [ -121.641623872999944, 49.305536633000031 ], [ -121.641171083999922, 49.305798194000019 ], [ -121.640355601999971, 49.306365013000097 ], [ -121.639410887999944, 49.307235190000043 ], [ -121.639021992999972, 49.307877497000028 ], [ -121.638836111999964, 49.308155296000081 ], [ -121.638683241999956, 49.308262084000056 ], [ -121.638659839999946, 49.308261809000072 ], [ -121.638659371999921, 49.308278757000075 ], [ -121.63845689499999, 49.308420195000089 ], [ -121.63806408, 49.308649496000051 ], [ -121.637706042999952, 49.309086501000131 ], [ -121.637699533999964, 49.309094445000063 ], [ -121.63755298699999, 49.309273300000036 ], [ -121.63621057899995, 49.31057069700006 ], [ -121.635698513999898, 49.311148890000062 ], [ -121.635306642999979, 49.311730501000049 ], [ -121.635262195999985, 49.311729977000034 ], [ -121.635260279999954, 49.311799313000066 ], [ -121.634945851999973, 49.312265971000045 ], [ -121.634834659999925, 49.312264657000043 ], [ -121.634829865999976, 49.31243810900002 ], [ -121.63476545499995, 49.312533705000085 ], [ -121.634414575, 49.312529559000033 ], [ -121.634403043999924, 49.312946651000068 ], [ -121.634270600000022, 49.313067587000063 ], [ -121.633161756, 49.31305447600004 ], [ -121.633168585999954, 49.312807662000083 ], [ -121.633184152999902, 49.312245146000109 ], [ -121.63359602, 49.312250016000085 ], [ -121.633596780999966, 49.312250025000061 ], [ -121.63359680699989, 49.312248988000057 ], [ -121.633619168999971, 49.311440694000105 ], [ -121.634031788999948, 49.311445574000125 ], [ -121.634069089999983, 49.310096687000033 ], [ -121.634481698999963, 49.310101564000092 ], [ -121.634485679999941, 49.309957565000012 ], [ -121.634489156999948, 49.309831787000114 ], [ -121.635548850999896, 49.30984430600008 ], [ -121.63572697799999, 49.309846409000052 ], [ -121.635732128999948, 49.309659922000087 ], [ -121.635749329999925, 49.309037077000013 ], [ -121.636161929999943, 49.309041948000107 ], [ -121.636169378999938, 49.308772170000069 ], [ -121.636581977999967, 49.308777039000063 ], [ -121.636587269999907, 49.308585246000099 ], [ -121.63658942299999, 49.30850726200002 ], [ -121.637002018999965, 49.308512129000086 ], [ -121.637016906, 49.307972575000093 ], [ -121.637429496999914, 49.307977441000091 ], [ -121.637436937999951, 49.307707663000031 ], [ -121.637849527999919, 49.307712528000181 ], [ -121.637856967999966, 49.307442750000163 ], [ -121.638269553999976, 49.307447613000072 ], [ -121.638284425999984, 49.306908058000019 ], [ -121.63869701, 49.306912919000091 ], [ -121.63870444299998, 49.306643142 ], [ -121.639117025999923, 49.306648002000038 ], [ -121.639124455999976, 49.306378223000138 ], [ -121.639537035000018, 49.306383082000082 ], [ -121.639544464999943, 49.30611330300006 ], [ -121.63995704199999, 49.306118161000093 ], [ -121.639971895, 49.305578605000079 ], [ -121.640384465999915, 49.305583461000047 ], [ -121.64039189099999, 49.305313683000108 ], [ -121.64102858899993, 49.305321173000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.979825474341526", "sL_AssetLoss": "1249.1", "sL_BldgLoss": "1223.9", "sL_StrLoss": "1104", "sL_NStrLoss": "119.9", "sL_ContLoss": "25.2", "geom_point": "0101000020E6100000CCE37A259A575EC0A62B540E18B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.369280915000019, 49.374758391000064 ], [ -121.368889606999943, 49.374554794000119 ], [ -121.369053700999984, 49.374997696000058 ], [ -121.369019714999936, 49.375195604000098 ], [ -121.368548393999902, 49.376134198000052 ], [ -121.36669671599995, 49.377105495000038 ], [ -121.366650959999973, 49.377122179000082 ], [ -121.366946843999969, 49.37416986300007 ], [ -121.372438769999945, 49.374405120000063 ], [ -121.372387074999978, 49.374921568000097 ], [ -121.37108726299995, 49.374895335000112 ], [ -121.37091294199999, 49.375536840000052 ], [ -121.370776650999943, 49.375763999000057 ], [ -121.370622676999943, 49.376020521000044 ], [ -121.37025307199994, 49.376664711000039 ], [ -121.370251731999986, 49.37666704800013 ], [ -121.370251591999988, 49.376667324000096 ], [ -121.369141526999968, 49.37734414400007 ], [ -121.368967377999965, 49.37741086100003 ], [ -121.368536443999957, 49.377583021000135 ], [ -121.368536195999951, 49.377583101000056 ], [ -121.368013323, 49.37779334100005 ], [ -121.367947449999946, 49.377819828000021 ], [ -121.366586878999968, 49.377761519000046 ], [ -121.366614833999961, 49.377482609000069 ], [ -121.367259482999913, 49.37719520500012 ], [ -121.36924932, 49.376179804000067 ], [ -121.370150198999966, 49.375563106000079 ], [ -121.370254507999988, 49.375320996000056 ], [ -121.37015221299994, 49.375113004000099 ], [ -121.369801306999975, 49.374882286000094 ], [ -121.369280915000019, 49.374758391000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8509833", "BldgCostT": "5133333", "sL_LossRatio": "0.992367538969151", "sL_AssetLoss": "3814.235", "sL_BldgLoss": "3785.123", "sL_StrLoss": "3664.143", "sL_NStrLoss": "120.98", "sL_ContLoss": "29.112", "geom_point": "0101000020E610000050896F51FB3F5EC09B140FBDFFD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.999625685999916, 49.645926727000059 ], [ -120.999669415999961, 49.645525028000051 ], [ -120.999238598999938, 49.645505217000114 ], [ -120.999477616999954, 49.643309774000024 ], [ -120.99946794799996, 49.643309329000026 ], [ -120.99952035099993, 49.642827964000027 ], [ -120.99431340699999, 49.642588391000046 ], [ -120.994704484999943, 49.638999407000078 ], [ -120.994787704999979, 49.6390032380001 ], [ -120.994859215999924, 49.638346909000084 ], [ -120.99984502299999, 49.638576310000126 ], [ -120.999949944999955, 49.637612326000102 ], [ -120.999998248999972, 49.637614548000087 ], [ -121.000059569999934, 49.63705112700007 ], [ -121.000264051999935, 49.637060530000028 ], [ -121.000318987999961, 49.636555733000066 ], [ -121.000392771999941, 49.636559125000069 ], [ -121.000450610999948, 49.636027634000044 ], [ -121.002368662000023, 49.63611581800005 ], [ -121.002406889999989, 49.637331401000083 ], [ -121.002583494999939, 49.637406805000033 ], [ -121.002998491999975, 49.637422497000074 ], [ -121.003466101999976, 49.6378354960001 ], [ -121.003853103999916, 49.637886794000053 ], [ -121.004218323, 49.637777107000034 ], [ -121.004548390999915, 49.637485215 ], [ -121.004623592999977, 49.637298599000097 ], [ -121.00535719599999, 49.636986694000058 ], [ -121.005764485999975, 49.636526710000076 ], [ -121.005764531999901, 49.636271863000097 ], [ -121.005971836999933, 49.636281385000053 ], [ -121.005922308999985, 49.636737003000079 ], [ -121.006560270999941, 49.636766306000034 ], [ -121.004287178999945, 49.639145803000176 ], [ -121.002957871999968, 49.640500438000046 ], [ -121.002196407999989, 49.641506042000152 ], [ -121.001854054999967, 49.642319019000112 ], [ -121.00169543, 49.643075497 ], [ -121.001711740999937, 49.643856246000084 ], [ -121.001783083999953, 49.64418233300011 ], [ -121.001879452999944, 49.64464847400005 ], [ -121.002305140999923, 49.646049901000055 ], [ -120.999625685999916, 49.645926727000059 ] ], [ [ -121.001764196999929, 49.638130297000075 ], [ -121.001584994999945, 49.63811750900004 ], [ -121.00138390799999, 49.638294095000077 ], [ -121.001322497999922, 49.638465006000089 ], [ -121.000846003999953, 49.638573300000111 ], [ -121.000675311999956, 49.638695708000064 ], [ -120.999416405999952, 49.638970606000036 ], [ -120.998918993999951, 49.639313887000135 ], [ -120.99890311399993, 49.639682701000012 ], [ -120.998505182999907, 49.640250999000074 ], [ -120.998162185999917, 49.641216597000046 ], [ -120.998521408999977, 49.641240786000019 ], [ -120.999143504999921, 49.641584000000115 ], [ -120.999707899999976, 49.641683701000048 ], [ -121.000417006999896, 49.641623892000041 ], [ -121.001062583999925, 49.641428803000075 ], [ -121.00097660199999, 49.641166696000028 ], [ -121.001247923999983, 49.640298005000091 ], [ -121.001172706999938, 49.640054387000063 ], [ -121.001245107999949, 49.639668503000053 ], [ -121.001101802999969, 49.639432102000114 ], [ -121.001322188999922, 49.63881540400007 ], [ -121.001764196999929, 49.638130297000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15262289", "BldgCostT": "9765372", "sL_LossRatio": "0.953936601284077", "sL_AssetLoss": "11028.93", "sL_BldgLoss": "10520.9", "sL_StrLoss": "8701.3", "sL_NStrLoss": "1819.6", "sL_ContLoss": "508.03", "geom_point": "0101000020E6100000001C5AE8F3675EC07AE50F4049A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.619363143, 49.315426586000108 ], [ -121.619440135999952, 49.314612791000052 ], [ -121.620406334999984, 49.314651991000062 ], [ -121.620448015999983, 49.314211314000069 ], [ -121.622159035999971, 49.314280712000084 ], [ -121.622393772999956, 49.311797876000107 ], [ -121.622407441999925, 49.311653287000034 ], [ -121.622424887999983, 49.311468753000042 ], [ -121.62278733, 49.311483450000068 ], [ -121.622902433999954, 49.310265761000053 ], [ -121.627835137999966, 49.310465659000052 ], [ -121.628388052999981, 49.310488052000082 ], [ -121.628379816999939, 49.310575291000099 ], [ -121.630853573999957, 49.310675442000061 ], [ -121.6310373699999, 49.31068288200008 ], [ -121.631031961999923, 49.310740183000114 ], [ -121.631666550999967, 49.310765864000061 ], [ -121.631327590999959, 49.314358716000065 ], [ -121.63115393599999, 49.314351689000048 ], [ -121.631055128999975, 49.315398853000033 ], [ -121.631000166999982, 49.31598132000007 ], [ -121.630479021000014, 49.315960229000069 ], [ -121.629252506999961, 49.31591058099999 ], [ -121.62921351199995, 49.316323661000119 ], [ -121.626268662999948, 49.316204402000082 ], [ -121.626262274999988, 49.315985594000033 ], [ -121.626067685, 49.315595293000079 ], [ -121.62657759299999, 49.315035613000106 ], [ -121.625785607999916, 49.3153404070001 ], [ -121.625670079999978, 49.315536898000119 ], [ -121.625957559, 49.316191798000041 ], [ -121.625768725999976, 49.316184148000033 ], [ -121.625713138, 49.316772528000151 ], [ -121.624742817999959, 49.317199000000137 ], [ -121.624442500999976, 49.317627704000053 ], [ -121.62468419, 49.31783700600014 ], [ -121.625136888999933, 49.318007995000102 ], [ -121.62462838499998, 49.317987389000052 ], [ -121.624586739, 49.318428065000028 ], [ -121.62258483899997, 49.31834692000006 ], [ -121.622507893999938, 49.319160712000098 ], [ -121.622065520999982, 49.319142776000035 ], [ -121.622064674999976, 49.319151723000061 ], [ -121.621407605999977, 49.319125079000045 ], [ -121.621404648999885, 49.319156339000109 ], [ -121.619332524, 49.31907228700009 ], [ -121.615918037999933, 49.318933696000016 ], [ -121.616258225999971, 49.315340917000086 ], [ -121.616915239999955, 49.315367593000126 ], [ -121.61691819899994, 49.315336332000058 ], [ -121.617360532999982, 49.315354290000073 ], [ -121.617361379999963, 49.315345343000089 ], [ -121.619363143, 49.315426586000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16432334", "BldgCostT": "10333334", "sL_LossRatio": "0.983651423328897", "sL_AssetLoss": "11608.35", "sL_BldgLoss": "11418.57", "sL_StrLoss": "10655.97", "sL_NStrLoss": "762.6", "sL_ContLoss": "189.78", "geom_point": "0101000020E61000006242AB172C4F5EC0493AF3401EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.239532174999923, 49.27964882800007 ], [ -121.239571521999963, 49.279265899000052 ], [ -121.238942079999958, 49.279238113000076 ], [ -121.23895627899995, 49.279099931000076 ], [ -121.239342812999965, 49.279062895000067 ], [ -121.238972496999963, 49.278942130000118 ], [ -121.238978542999959, 49.278883289000071 ], [ -121.23876286499997, 49.278873767000043 ], [ -121.238648573999981, 49.278836494000068 ], [ -121.238361088999909, 49.278805144000074 ], [ -121.238381056999913, 49.27861085900004 ], [ -121.237985782999957, 49.278593406000034 ], [ -121.238163182999983, 49.278550195000058 ], [ -121.238793187999988, 49.278612912000057 ], [ -121.23959320499992, 49.278948990000082 ], [ -121.239977489999887, 49.278956091000104 ], [ -121.239967393999947, 49.278865011000036 ], [ -121.238167082999908, 49.278073101000139 ], [ -121.237878012999886, 49.278060300000043 ], [ -121.237362177999941, 49.278276799000047 ], [ -121.236938428999949, 49.278324329000078 ], [ -121.23694920899996, 49.278219475000029 ], [ -121.236368035999988, 49.278193805000107 ], [ -121.236262120999953, 49.278148359000049 ], [ -121.23627621299994, 49.278011307000085 ], [ -121.235608837999962, 49.277981826000051 ], [ -121.235625412999951, 49.27782065100007 ], [ -121.235257094999923, 49.277804378000056 ], [ -121.235400082999931, 49.277427890000133 ], [ -121.235289498, 49.277390902000079 ], [ -121.234736087999963, 49.277507703000019 ], [ -121.234669721, 49.277426501000022 ], [ -121.23511259799993, 49.276992103000062 ], [ -121.235200603999942, 49.276804109000089 ], [ -121.235092980999923, 49.276758602000044 ], [ -121.234983103, 49.276774209000067 ], [ -121.23431208699995, 49.277429405000092 ], [ -121.234159620999947, 49.277607261000128 ], [ -121.234110406999918, 49.277605087000047 ], [ -121.234125835, 49.27745510700003 ], [ -121.233495996999949, 49.277427270000025 ], [ -121.233553634999978, 49.276867014000061 ], [ -121.233355726999946, 49.276858268000119 ], [ -121.233410295999988, 49.276327862000095 ], [ -121.232292324999932, 49.276278441000038 ], [ -121.23237211499999, 49.275503041000064 ], [ -121.232050963999953, 49.27549812700007 ], [ -121.232061757999944, 49.275196183000055 ], [ -121.230393130999985, 49.275122391000053 ], [ -121.230477406, 49.274303708000033 ], [ -121.230488853999987, 49.274192492000111 ], [ -121.230617084999906, 49.272946740000052 ], [ -121.230492589, 49.272941233000104 ], [ -121.230459911999986, 49.273854516000036 ], [ -121.229699922999941, 49.273842872000145 ], [ -121.229438790999936, 49.27383886800002 ], [ -121.22922323100002, 49.273835565000084 ], [ -121.229226514999979, 49.27374386000011 ], [ -121.229230419999936, 49.273634802000075 ], [ -121.229232889999963, 49.273565837000021 ], [ -121.22906914099994, 49.27356332800008 ], [ -121.228814431, 49.273559422000055 ], [ -121.228408440999885, 49.273553196000087 ], [ -121.228414627999896, 49.273380478000085 ], [ -121.228418102999967, 49.273283469000091 ], [ -121.22819008, 49.273279972000061 ], [ -121.228005880999916, 49.273277147000051 ], [ -121.22800868899995, 49.273198783000048 ], [ -121.228012407999969, 49.273094997000022 ], [ -121.228015547, 49.273007420000035 ], [ -121.227807606999974, 49.273004230000048 ], [ -121.227603328, 49.273001096000016 ], [ -121.22760641099994, 49.272915060000081 ], [ -121.227632325999977, 49.272191916000068 ], [ -121.228456751999914, 49.272204564000099 ], [ -121.22846641299999, 49.271934837000082 ], [ -121.228878623999933, 49.271941158000097 ], [ -121.228888282999947, 49.271671431000122 ], [ -121.230236399999953, 49.271692094000102 ], [ -121.230403513999988, 49.270068573000067 ], [ -121.230479273999904, 49.269332530000042 ], [ -121.232693851999969, 49.269430470000025 ], [ -121.232699580999963, 49.269374782000064 ], [ -121.235719684999964, 49.269508275000064 ], [ -121.236388189, 49.269537811000149 ], [ -121.236404239999942, 49.269087683000087 ], [ -121.237496548999928, 49.269104356000064 ], [ -121.238052994999947, 49.269112845000116 ], [ -121.238035264999937, 49.269610567000086 ], [ -121.238178413999947, 49.269616889000154 ], [ -121.238174553999954, 49.269654449000015 ], [ -121.239367460999958, 49.26967263800006 ], [ -121.239682553999984, 49.269677440000116 ], [ -121.23962495399995, 49.271295810000034 ], [ -121.239528351999979, 49.271294337000029 ], [ -121.239212746999939, 49.271289527000121 ], [ -121.239203143999987, 49.271559255000035 ], [ -121.239555168999985, 49.271564620000078 ], [ -121.240027562999984, 49.271571819000066 ], [ -121.240025111999941, 49.271640712000099 ], [ -121.240017964999964, 49.271841547000108 ], [ -121.240842389999983, 49.271854106000028 ], [ -121.240813607999939, 49.272663291000107 ], [ -121.241225824999958, 49.272669568000012 ], [ -121.24121623399999, 49.272939296000111 ], [ -121.241310538999954, 49.272940732000066 ], [ -121.241628455999958, 49.272945572000033 ], [ -121.241580732999978, 49.274287757000053 ], [ -121.241580503999941, 49.274294214000044 ], [ -121.240756036999983, 49.274281661000011 ], [ -121.240750443999943, 49.274438897000024 ], [ -121.240758024999963, 49.274439231000066 ], [ -121.240746408999925, 49.274552318000083 ], [ -121.240745288999946, 49.274583808000045 ], [ -121.241648111999922, 49.274623651000077 ], [ -121.243024357999943, 49.274684371000014 ], [ -121.242994995999979, 49.274970358000118 ], [ -121.243297460999926, 49.274983700000035 ], [ -121.244057942, 49.275017243000015 ], [ -121.244008674999947, 49.27549720100005 ], [ -121.244204566999954, 49.275505841000061 ], [ -121.244168146999954, 49.275860669000053 ], [ -121.244790769999923, 49.275888125000058 ], [ -121.244751467999947, 49.276271059000074 ], [ -121.245380875999942, 49.276298811000061 ], [ -121.245303708, 49.277050769000049 ], [ -121.245078007999908, 49.279249972000031 ], [ -121.245012257999946, 49.27989058400005 ], [ -121.242994594999942, 49.279801607000081 ], [ -121.242735321999959, 49.279790170000112 ], [ -121.242067954999982, 49.27976072900001 ], [ -121.241972985999894, 49.27973229500008 ], [ -121.24163509899995, 49.279741632000054 ], [ -121.239532174999923, 49.27964882800007 ] ], [ [ -121.235929002999981, 49.27064438700004 ], [ -121.235835605999966, 49.270571790000126 ], [ -121.235506399, 49.270574714000098 ], [ -121.23470447699999, 49.271057495000051 ], [ -121.234630319999937, 49.271236897 ], [ -121.234696710999984, 49.271318087000076 ], [ -121.235204800999938, 49.27130811200005 ], [ -121.235853983999959, 49.270832404000103 ], [ -121.235929002999981, 49.27064438700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3179583", "BldgCostT": "1983333", "sL_LossRatio": "0.52924004881835", "sL_AssetLoss": "3826.43", "sL_BldgLoss": "2025.1", "sL_StrLoss": "1173.7", "sL_NStrLoss": "851.4", "sL_ContLoss": "1801.33", "geom_point": "0101000020E61000004B8525DC734F5EC0BC5983F7D5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.238892335999935, 49.25461288600011 ], [ -121.244369459999973, 49.254854684000058 ], [ -121.244000933999942, 49.258446571000107 ], [ -121.238523388999951, 49.258204755000044 ], [ -121.238892335999935, 49.25461288600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3179583", "BldgCostT": "1983333", "sL_LossRatio": "0.56238888923632", "sL_AssetLoss": "1758.943", "sL_BldgLoss": "989.21", "sL_StrLoss": "680.27", "sL_NStrLoss": "308.94", "sL_ContLoss": "769.733", "geom_point": "0101000020E61000004BD24E30D0455EC0AB7D3A1E339C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.088152852999983, 49.222003771000061 ], [ -121.088155270999906, 49.221980929000026 ], [ -121.087658236999971, 49.221958258000029 ], [ -121.088038560000015, 49.218366716000112 ], [ -121.089107472999913, 49.218415468000053 ], [ -121.093510613999953, 49.218616181000094 ], [ -121.09350819699992, 49.218639024000041 ], [ -121.094005197999977, 49.218661667000063 ], [ -121.093693212999966, 49.221611491000012 ], [ -121.093625334999942, 49.22225322900006 ], [ -121.088152852999983, 49.222003771000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.565663835189868", "sL_AssetLoss": "1572.913", "sL_BldgLoss": "889.74", "sL_StrLoss": "624.42", "sL_NStrLoss": "265.32", "sL_ContLoss": "683.173", "geom_point": "0101000020E6100000CEC77385D0405EC08A55833037954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.010187357999911, 49.163824218000094 ], [ -121.015652577000012, 49.164077655000021 ], [ -121.015267109999982, 49.16766923800003 ], [ -121.00980147300001, 49.167415783000138 ], [ -121.010187357999911, 49.163824218000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67973667", "BldgCostT": "47846667", "sL_LossRatio": "0.995796391575385", "sL_AssetLoss": "712.721", "sL_BldgLoss": "709.725", "sL_StrLoss": "465.195", "sL_NStrLoss": "244.53", "sL_ContLoss": "2.996", "geom_point": "0101000020E6100000EC32BA8B89415EC05815866DB0944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.021480117999985, 49.159711873000035 ], [ -121.026944912999951, 49.159964737000074 ], [ -121.026560352999937, 49.163556383000106 ], [ -121.021095136999961, 49.163303501000044 ], [ -121.021480117999985, 49.159711873000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8400834", "BldgCostT": "5033334", "sL_LossRatio": "0.768952753346173", "sL_AssetLoss": "6183.93", "sL_BldgLoss": "4755.15", "sL_StrLoss": "4136.31", "sL_NStrLoss": "618.84", "sL_ContLoss": "1428.78", "geom_point": "0101000020E61000005AA2B3CCA23A5EC041960D84C7884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.914880716999946, 49.066073083000035 ], [ -120.920333953999958, 49.066331393000098 ], [ -120.919941951999974, 49.069923173000042 ], [ -120.91977276599998, 49.069915164000044 ], [ -120.919679285999948, 49.070771576000084 ], [ -120.917279483999934, 49.070657933000078 ], [ -120.917249593999912, 49.070931634000068 ], [ -120.911795837999932, 49.070673168000077 ], [ -120.912188472999944, 49.06708142100009 ], [ -120.913517269, 49.067144422000077 ], [ -120.913556932999938, 49.066781453000047 ], [ -120.914796907000024, 49.066840228000032 ], [ -120.914880716999946, 49.066073083000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "0.96078148134773", "sL_AssetLoss": "1107.64", "sL_BldgLoss": "1064.2", "sL_StrLoss": "879.9", "sL_NStrLoss": "184.3", "sL_ContLoss": "43.44", "geom_point": "0101000020E610000071272A7EC0695EC06C95817F21A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.64584404499999, 49.302139324000052 ], [ -121.64585417699999, 49.301769625000126 ], [ -121.646175472999985, 49.301843197000039 ], [ -121.647799717999931, 49.300892002000104 ], [ -121.649181985999974, 49.300561809000079 ], [ -121.652183457999925, 49.299669633000136 ], [ -121.653662245999939, 49.298687387000022 ], [ -121.654961031999932, 49.297489246000112 ], [ -121.654932618999936, 49.297276334000074 ], [ -121.65387255899995, 49.298301626000104 ], [ -121.65322377699998, 49.298820906000046 ], [ -121.652319194999961, 49.299367895000103 ], [ -121.651434972999979, 49.299740705000055 ], [ -121.650511181999917, 49.300006287000087 ], [ -121.650441199999975, 49.300026407000054 ], [ -121.650448356, 49.299764405000126 ], [ -121.651273407999938, 49.299774039000106 ], [ -121.651280769, 49.299504259000024 ], [ -121.65169329299999, 49.299509074000042 ], [ -121.65169452, 49.299464136000054 ], [ -121.650278412999938, 49.299407071000076 ], [ -121.650609914999947, 49.295876725 ], [ -121.655351250999914, 49.295966930000098 ], [ -121.655946804999985, 49.295978252000083 ], [ -121.656270502000027, 49.295984400000123 ], [ -121.656309525999959, 49.295977023000056 ], [ -121.657861599999961, 49.295684216000062 ], [ -121.656366517999942, 49.296690996000116 ], [ -121.655850382999944, 49.297038533000041 ], [ -121.65500866099994, 49.297846085000117 ], [ -121.65477389299997, 49.298071327000123 ], [ -121.653396579999949, 49.299132357000104 ], [ -121.652984980999989, 49.299449405000111 ], [ -121.647585364999927, 49.301619988 ], [ -121.64750899199997, 49.301619094000053 ], [ -121.647508115999955, 49.30165103800006 ], [ -121.646280544, 49.302144439000038 ], [ -121.64584404499999, 49.302139324000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.983374541734163", "sL_AssetLoss": "586.45", "sL_BldgLoss": "576.7", "sL_StrLoss": "515", "sL_NStrLoss": "61.7", "sL_ContLoss": "9.75", "geom_point": "0101000020E6100000611488C713515EC002A51D0E7DB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.268356942999958, 49.448225184000073 ], [ -121.268829133999958, 49.44823225500005 ], [ -121.26856021299993, 49.448382739000103 ], [ -121.268761588999922, 49.448534015000071 ], [ -121.268093572999987, 49.448910272000028 ], [ -121.265910411, 49.450139894000131 ], [ -121.26513821099995, 49.450605731000081 ], [ -121.265083734, 49.450604914000031 ], [ -121.265093102, 49.450339499000066 ], [ -121.265112297999963, 49.44979574300006 ], [ -121.265526005999959, 49.449801950000065 ], [ -121.265535523999944, 49.449532227000034 ], [ -121.265949229999933, 49.449538431000086 ], [ -121.265968263999952, 49.44899898500006 ], [ -121.266381965999983, 49.449005188000058 ], [ -121.26640099399998, 49.448465741000113 ], [ -121.266814690999936, 49.448471942 ], [ -121.266824200999906, 49.448202219000081 ], [ -121.268087692, 49.448221152000038 ], [ -121.268356942999958, 49.448225184000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.944013303769401", "sL_AssetLoss": "18.04", "sL_BldgLoss": "17.03", "sL_StrLoss": "2.33", "sL_NStrLoss": "14.7", "sL_ContLoss": "1.01", "geom_point": "0101000020E6100000D8FA1A3065545EC0A4A6E184D7B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.318922200999936, 49.392787493000093 ], [ -121.31896380099991, 49.392376821000113 ], [ -121.317906993999898, 49.392331067000072 ], [ -121.318081538999962, 49.39060830600009 ], [ -121.31757709099999, 49.390586462000044 ], [ -121.317891760999913, 49.387480672000073 ], [ -121.31794096, 49.386995038000116 ], [ -121.318667524999967, 49.387026499000086 ], [ -121.318871682999941, 49.387035339000072 ], [ -121.320343832999981, 49.387099066000133 ], [ -121.320373011999934, 49.38714838400012 ], [ -121.320396632999945, 49.387302814000115 ], [ -121.320401204999953, 49.387332695000062 ], [ -121.320361490999971, 49.387533907000055 ], [ -121.32025211399997, 49.387723920000091 ], [ -121.319954814999946, 49.388240396000086 ], [ -121.319898704999986, 49.388345297000093 ], [ -121.319740274999916, 49.388452 ], [ -121.319480211999945, 49.388521141000027 ], [ -121.31944541199999, 49.388530412000051 ], [ -121.319227801999943, 49.388472188000094 ], [ -121.319007609999957, 49.388331902000054 ], [ -121.31887691699994, 49.388082794000091 ], [ -121.318868793, 49.388858002000106 ], [ -121.31882811, 49.389899608000114 ], [ -121.318860292999901, 49.390358192000043 ], [ -121.319462639000022, 49.392810887000046 ], [ -121.319327301999976, 49.392805029000044 ], [ -121.319121136999939, 49.392796105000066 ], [ -121.318922200999936, 49.392787493000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6595000", "BldgCostT": "4075000", "sL_LossRatio": "0.772415405726382", "sL_AssetLoss": "6500.44", "sL_BldgLoss": "5021.04", "sL_StrLoss": "4301.5", "sL_NStrLoss": "719.54", "sL_ContLoss": "1479.4", "geom_point": "0101000020E6100000D85EF2DC4E5E5EC01FE8150DA1AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.476293578999957, 49.353637826000124 ], [ -121.476190303999914, 49.351922041000094 ], [ -121.475462427999958, 49.351598962 ], [ -121.474939463999974, 49.35100358600009 ], [ -121.474986036999923, 49.350497189000123 ], [ -121.473823743, 49.350404813000125 ], [ -121.473382017999924, 49.350422722000133 ], [ -121.473194415999941, 49.348326930000056 ], [ -121.473038727999935, 49.348336768000095 ], [ -121.471289500999887, 49.348447197000056 ], [ -121.471161030999937, 49.348442746000053 ], [ -121.471148596999925, 49.348641450000116 ], [ -121.470501005999921, 49.349534097000067 ], [ -121.470299992999941, 49.349968400000051 ], [ -121.470259192999933, 49.350130555000113 ], [ -121.467190489999908, 49.350126250000095 ], [ -121.467208046999957, 49.349947072000106 ], [ -121.467302194999959, 49.349951022000084 ], [ -121.467366875999971, 49.34929087400004 ], [ -121.468338125999978, 49.349331619000075 ], [ -121.468460798999914, 49.348079296000094 ], [ -121.468925301999903, 49.348098780000029 ], [ -121.469176911999966, 49.345529707000054 ], [ -121.473379154999961, 49.345705874000053 ], [ -121.474665955999953, 49.345759787000091 ], [ -121.474561731999941, 49.346825285000193 ], [ -121.477473328, 49.346947214000117 ], [ -121.477387682999918, 49.347823308 ], [ -121.477760373999942, 49.347838909000075 ], [ -121.477708294999928, 49.348371667000045 ], [ -121.47786930399991, 49.348378408000066 ], [ -121.477808082999971, 49.349004694000058 ], [ -121.47787294299999, 49.34900740900013 ], [ -121.477746582999941, 49.35030003100011 ], [ -121.47787752499994, 49.350305512000084 ], [ -121.477687428999943, 49.352250061000106 ], [ -121.477748551999952, 49.352252619000069 ], [ -121.477605394999983, 49.353716912000031 ], [ -121.476293578999957, 49.353637826000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69609750", "BldgCostT": "48975000", "sL_LossRatio": "0.993885554271546", "sL_AssetLoss": "3210.43", "sL_BldgLoss": "3190.8", "sL_StrLoss": "1872", "sL_NStrLoss": "1318.8", "sL_ContLoss": "19.63", "geom_point": "0101000020E61000006FC9BB344F585EC04B7FED68B5AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.378051521999922, 49.362684593000033 ], [ -121.383542141999925, 49.362919291000097 ], [ -121.383322135999919, 49.365123021000052 ], [ -121.383288193999945, 49.365462981000093 ], [ -121.383183551999949, 49.366511063000075 ], [ -121.382845268999958, 49.366496611000045 ], [ -121.382745787999923, 49.367492871000131 ], [ -121.378374653999941, 49.367306035000063 ], [ -121.37802118799999, 49.367064795000054 ], [ -121.377163388999961, 49.366764312000043 ], [ -121.376938877999962, 49.366490893000091 ], [ -121.377002205999986, 49.365808705000092 ], [ -121.376912100999974, 49.365627807000131 ], [ -121.376509885999937, 49.365271797000013 ], [ -121.375831535999907, 49.364994079 ], [ -121.375996644999958, 49.363342926000094 ], [ -121.376010707, 49.363202300000161 ], [ -121.376068407999952, 49.362625245000118 ], [ -121.37804898499995, 49.362709976000104 ], [ -121.378051521999922, 49.362684593000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99409512685744", "sL_AssetLoss": "308.22", "sL_BldgLoss": "306.4", "sL_StrLoss": "292", "sL_NStrLoss": "14.4", "sL_ContLoss": "1.82", "geom_point": "0101000020E6100000D9DB5EB93B565EC0574A64598FB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.342369077999933, 49.37988979800005 ], [ -121.344956906999968, 49.378703484000063 ], [ -121.346122491999921, 49.378072608000146 ], [ -121.346220491999972, 49.378048 ], [ -121.346141971999941, 49.378827935000054 ], [ -121.346764644999965, 49.378854740000072 ], [ -121.34679423399993, 49.378560797000013 ], [ -121.34847092899993, 49.378632958000019 ], [ -121.349763220999989, 49.379221904000111 ], [ -121.352028192999938, 49.379848501000026 ], [ -121.353367183, 49.380200292000026 ], [ -121.353508080999987, 49.380213348000041 ], [ -121.353486677999967, 49.3804262620001 ], [ -121.351077842999956, 49.380102382000068 ], [ -121.347521897999954, 49.379624188000079 ], [ -121.34650989799999, 49.379539997000094 ], [ -121.345944827999986, 49.379546581000064 ], [ -121.345092005, 49.37955648600007 ], [ -121.343872186999974, 49.379714111000105 ], [ -121.343235099999944, 49.37984990000011 ], [ -121.342247817999947, 49.38017868200005 ], [ -121.341270805999955, 49.380504038000055 ], [ -121.34129366599997, 49.38027721400001 ], [ -121.342369077999933, 49.37988979800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.994766073915201", "sL_AssetLoss": "624.77", "sL_BldgLoss": "621.5", "sL_StrLoss": "594", "sL_NStrLoss": "27.5", "sL_ContLoss": "3.27", "geom_point": "0101000020E61000003DF3EE9F19575EC0B8D7174398B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.356232013999929, 49.380749798000117 ], [ -121.355360791999956, 49.380678206000077 ], [ -121.353545635999922, 49.380434189 ], [ -121.353567283999908, 49.380218834000097 ], [ -121.354396883999968, 49.380295700000069 ], [ -121.355760292, 49.3803056980001 ], [ -121.356551893999963, 49.380164709000013 ], [ -121.357307893000012, 49.380166093000035 ], [ -121.357834588999964, 49.380083494000054 ], [ -121.358191997999953, 49.379711794000059 ], [ -121.358910097999981, 49.379649195000034 ], [ -121.359729112999943, 49.379462607000022 ], [ -121.361020280999966, 49.379263753000082 ], [ -121.360951465999932, 49.379949457000066 ], [ -121.360987489999943, 49.379949968000069 ], [ -121.360996462999935, 49.379680228000105 ], [ -121.361822742999919, 49.379691941000061 ], [ -121.361831710999965, 49.379422201000125 ], [ -121.36191381399999, 49.379423366000054 ], [ -121.361944105999939, 49.37912146200005 ], [ -121.36315069599999, 49.37893560800007 ], [ -121.363818405999936, 49.378720598000044 ], [ -121.364393896999928, 49.378404410000059 ], [ -121.365342576999979, 49.37804979700006 ], [ -121.365791621999961, 49.377849609000108 ], [ -121.367579967999959, 49.377926260000081 ], [ -121.367575652999946, 49.377969319 ], [ -121.36757431299992, 49.377969859000075 ], [ -121.367561608999921, 49.377974956000067 ], [ -121.365659315999963, 49.378739800000062 ], [ -121.365647599999988, 49.378744520000119 ], [ -121.363075915999929, 49.379778392000105 ], [ -121.363040655999924, 49.379790567000136 ], [ -121.362511976999954, 49.379973143000015 ], [ -121.362330192999963, 49.38003589200013 ], [ -121.361453662999963, 49.380252961000032 ], [ -121.361262499999896, 49.380300302000073 ], [ -121.360184903999951, 49.380525502000069 ], [ -121.359871879999929, 49.380571521000022 ], [ -121.359249347999977, 49.380663039000083 ], [ -121.35899798399997, 49.380699999000079 ], [ -121.358390269999958, 49.380762711000024 ], [ -121.358072603999943, 49.38079548200011 ], [ -121.357887286, 49.380814616000038 ], [ -121.357507200999933, 49.380782101000094 ], [ -121.356232013999929, 49.380749798000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3536250", "BldgCostT": "2175000", "sL_LossRatio": "0.989688139045384", "sL_AssetLoss": "3672.47", "sL_BldgLoss": "3634.6", "sL_StrLoss": "3546", "sL_NStrLoss": "88.6", "sL_ContLoss": "37.87", "geom_point": "0101000020E610000063271F2FA24D5EC03BC9B15046A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.211299883999942, 49.265890198000108 ], [ -121.215948594999972, 49.266096582000038 ], [ -121.215767557, 49.267850192000026 ], [ -121.215757492999956, 49.267947672000062 ], [ -121.215591809999964, 49.269552431000058 ], [ -121.215577780000032, 49.269688310000021 ], [ -121.210099055999976, 49.269445056000094 ], [ -121.210433430999942, 49.266210005000033 ], [ -121.210470292999915, 49.265853346000064 ], [ -121.211110579, 49.265881789000112 ], [ -121.211299883999942, 49.265890198000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.992525029009364", "sL_AssetLoss": "741.14", "sL_BldgLoss": "735.6", "sL_StrLoss": "692", "sL_NStrLoss": "43.6", "sL_ContLoss": "5.54", "geom_point": "0101000020E6100000B6D4C596F3555EC0CD98BCE057B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.340891408999966, 49.376192751000069 ], [ -121.34638344199999, 49.376429330000057 ], [ -121.346285422999983, 49.377403014000052 ], [ -121.346271969, 49.377536657000078 ], [ -121.346252564999972, 49.377729401000117 ], [ -121.34607759299999, 49.377747792000079 ], [ -121.344856184999941, 49.378053998000055 ], [ -121.344352305999962, 49.378254793000039 ], [ -121.343436512999972, 49.378888607000107 ], [ -121.34184072, 49.379630597000094 ], [ -121.341301603, 49.379817590000101 ], [ -121.340529405999987, 49.37978431000009 ], [ -121.340625102999937, 49.378834922000053 ], [ -121.340647573999945, 49.378611988000088 ], [ -121.340891408999966, 49.376192751000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997863095025214", "sL_AssetLoss": "223.688", "sL_BldgLoss": "223.21", "sL_StrLoss": "219", "sL_NStrLoss": "4.21", "sL_ContLoss": "0.478", "geom_point": "0101000020E610000027B04A33E7425EC0B368F0AD7E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.046028078999939, 49.223261996000062 ], [ -121.046033949999966, 49.223113135000062 ], [ -121.043899069999966, 49.223076990000045 ], [ -121.043151623999933, 49.223064326000028 ], [ -121.043162061999965, 49.222800062000054 ], [ -121.043162275999947, 49.222794625000063 ], [ -121.043146899999954, 49.222794365000034 ], [ -121.042750518999952, 49.222787647000068 ], [ -121.042756713999907, 49.222630830000085 ], [ -121.042782483999957, 49.22197854700012 ], [ -121.047311759999928, 49.222055228000059 ], [ -121.047301128999905, 49.222324929000088 ], [ -121.047712883999921, 49.222331892000042 ], [ -121.047670369999963, 49.223410696000052 ], [ -121.046633226999944, 49.223393156000036 ], [ -121.046023311999974, 49.223382837000052 ], [ -121.046028078999939, 49.223261996000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5505000", "BldgCostT": "3300000", "sL_LossRatio": "0.9718279402479", "sL_AssetLoss": "1156.11", "sL_BldgLoss": "1123.54", "sL_StrLoss": "947.44", "sL_NStrLoss": "176.1", "sL_ContLoss": "32.57", "geom_point": "0101000020E6100000A662846C30505EC068A6830E1DBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.25675109699999, 49.459053513000114 ], [ -121.257064360999962, 49.459067233000049 ], [ -121.25690179599999, 49.459304288000126 ], [ -121.255388819999951, 49.461589699000044 ], [ -121.254894599999943, 49.462539316000168 ], [ -121.254717707999959, 49.463023890000052 ], [ -121.25471114, 49.463059169000068 ], [ -121.254544107999948, 49.463958586000039 ], [ -121.254463809999905, 49.464657759000048 ], [ -121.254456622999925, 49.464720360000037 ], [ -121.254150850999935, 49.464706962000072 ], [ -121.249567638999935, 49.464506040000074 ], [ -121.249937373999913, 49.460915237000073 ], [ -121.251857768999955, 49.460999449000049 ], [ -121.252079099999932, 49.458848782000082 ], [ -121.25675109699999, 49.459053513000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.526050308281612", "sL_AssetLoss": "3905.52", "sL_BldgLoss": "2054.5", "sL_StrLoss": "1179.3", "sL_NStrLoss": "875.2", "sL_ContLoss": "1851.02", "geom_point": "0101000020E6100000F0A4E8F525665EC0936FB6B9B1A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.593494725999989, 49.316015478000068 ], [ -121.598980882999967, 49.316239259000028 ], [ -121.598950143999929, 49.316562628000028 ], [ -121.59863934899991, 49.319831979000057 ], [ -121.593152767999953, 49.319608181000056 ], [ -121.593493876999929, 49.316024385000077 ], [ -121.593494725999989, 49.316015478000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.988841817718823", "sL_AssetLoss": "863.94", "sL_BldgLoss": "854.3", "sL_StrLoss": "787", "sL_NStrLoss": "67.3", "sL_ContLoss": "9.64", "geom_point": "0101000020E6100000817DCFA3BD565EC080B2CE9D85B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.353612984999941, 49.379764176000066 ], [ -121.353631944999933, 49.379575561000124 ], [ -121.353572275999966, 49.379574711000053 ], [ -121.353554067999966, 49.379755843000062 ], [ -121.352477694999962, 49.379603594000088 ], [ -121.350231195999953, 49.378797492000011 ], [ -121.35000653699997, 49.378699023000081 ], [ -121.350891139999945, 49.378737071000124 ], [ -121.351520420000014, 49.378764132000114 ], [ -121.351530388999961, 49.378466136000036 ], [ -121.35180028399995, 49.378469986000034 ], [ -121.3543597099999, 49.37850645700005 ], [ -121.354372230999971, 49.378381876000077 ], [ -121.35779835999989, 49.378529060000034 ], [ -121.359864591999951, 49.378617770000062 ], [ -121.359857630999969, 49.378687124000038 ], [ -121.359828785999966, 49.378974482000068 ], [ -121.360430036999929, 49.379000288000086 ], [ -121.356104118999923, 49.379924006000081 ], [ -121.354521609999949, 49.379892688000055 ], [ -121.353612984999941, 49.379764176000066 ] ], [ [ -121.353149479999942, 49.379489582000083 ], [ -121.353155851999929, 49.379298911000035 ], [ -121.35227712399994, 49.379286387000057 ], [ -121.352237438000017, 49.379285822000078 ], [ -121.352220964999944, 49.379449665000031 ], [ -121.35313050799999, 49.379488766000094 ], [ -121.353149479999942, 49.379489582000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.95896700143472", "sL_AssetLoss": "1742.5", "sL_BldgLoss": "1671", "sL_StrLoss": "1419", "sL_NStrLoss": "252", "sL_ContLoss": "71.5", "geom_point": "0101000020E6100000550682BE3C6A5EC026E9D474C1A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.656662462999932, 49.311876311000084 ], [ -121.656809433999967, 49.310309357000051 ], [ -121.656687781999921, 49.310304462000097 ], [ -121.658210903999986, 49.309982493000057 ], [ -121.659057892999968, 49.309713294000048 ], [ -121.660855605, 49.30882608900005 ], [ -121.661288347999971, 49.308455839000075 ], [ -121.66154545099999, 49.308466172000067 ], [ -121.662484988999935, 49.308503929000103 ], [ -121.662148432999956, 49.312096889000074 ], [ -121.66120882300001, 49.312059129000012 ], [ -121.656662462999932, 49.311876311000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.995490284832939", "sL_AssetLoss": "596.49", "sL_BldgLoss": "593.8", "sL_StrLoss": "571", "sL_NStrLoss": "22.8", "sL_ContLoss": "2.69", "geom_point": "0101000020E61000000841815624545EC0A0E4273869B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.313474348999961, 49.411009101000062 ], [ -121.313514027999986, 49.410618026000051 ], [ -121.312876053999929, 49.410590385000042 ], [ -121.313035316999958, 49.409020813000026 ], [ -121.312854752999954, 49.409012989000132 ], [ -121.313219132999919, 49.405421679000028 ], [ -121.313841422999971, 49.40544864000006 ], [ -121.313794575999978, 49.40563529500006 ], [ -121.31353448599999, 49.406001307000111 ], [ -121.313396610000012, 49.406800302000093 ], [ -121.313463399999961, 49.408069212000072 ], [ -121.313748583999967, 49.408198790000043 ], [ -121.315075902000018, 49.408487990000019 ], [ -121.316409696999941, 49.408948014000032 ], [ -121.316698198999987, 49.409136242 ], [ -121.316734915999945, 49.409160197000098 ], [ -121.317121706999927, 49.40989510100006 ], [ -121.317099507999913, 49.410560199000038 ], [ -121.316845886999914, 49.411155109000099 ], [ -121.316170484999972, 49.41112586900001 ], [ -121.313474348999961, 49.411009101000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29764416", "BldgCostT": "18666666", "sL_LossRatio": "0.682467414936953", "sL_AssetLoss": "26851.26", "sL_BldgLoss": "18325.11", "sL_StrLoss": "14137.81", "sL_NStrLoss": "4187.3", "sL_ContLoss": "8526.15", "geom_point": "0101000020E6100000244134CA25675EC0C93D7EEB9AA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.607179492999975, 49.332326813000066 ], [ -121.607257717999957, 49.33150260900009 ], [ -121.605703680999937, 49.331439390000085 ], [ -121.605773997, 49.330698764000033 ], [ -121.605509120999955, 49.330687986000036 ], [ -121.605541414999934, 49.330347839000055 ], [ -121.605409837999957, 49.330342484000042 ], [ -121.605750923999949, 49.326749799000069 ], [ -121.606639224999952, 49.326785943000068 ], [ -121.60665159399997, 49.326655621000086 ], [ -121.608991474999968, 49.32675079100008 ], [ -121.609027045999937, 49.326375810000094 ], [ -121.607865180999966, 49.32632856000005 ], [ -121.607918382999955, 49.325767852000105 ], [ -121.606951828, 49.325728536000078 ], [ -121.606936127999987, 49.325893964000102 ], [ -121.603684184999977, 49.32576162000008 ], [ -121.60144878899996, 49.325670589000062 ], [ -121.601582752999946, 49.324260733000109 ], [ -121.601772731999958, 49.322261207000068 ], [ -121.601790148999982, 49.322077892000017 ], [ -121.60317527399998, 49.322134304000016 ], [ -121.603235430999973, 49.321500917000023 ], [ -121.603490458999943, 49.318815523000048 ], [ -121.604215982999904, 49.318845064000058 ], [ -121.607864488999951, 49.318993546000087 ], [ -121.608976995999924, 49.319038797000147 ], [ -121.608703001999956, 49.321927478000049 ], [ -121.608953238999959, 49.321937654000116 ], [ -121.608994582999955, 49.321501761000071 ], [ -121.609644368999952, 49.321528184000044 ], [ -121.609880582999921, 49.319037276000124 ], [ -121.615367177999985, 49.319260225000107 ], [ -121.615175217999976, 49.321287019000081 ], [ -121.617453056999935, 49.321379497000052 ], [ -121.61774903299991, 49.321391510000097 ], [ -121.617778843999986, 49.321076570000031 ], [ -121.617867683999975, 49.321080175000105 ], [ -121.617889783999928, 49.320846696000039 ], [ -121.617903161999948, 49.32070537200012 ], [ -121.618002324999921, 49.32070939600009 ], [ -121.623389991999957, 49.320927913000091 ], [ -121.623318840999957, 49.321680524000044 ], [ -121.623274038, 49.322154425000079 ], [ -121.624523535999984, 49.322205064000087 ], [ -121.623889913999975, 49.323153597000044 ], [ -121.62366498199999, 49.324056819000084 ], [ -121.623448084999936, 49.324275194000116 ], [ -121.622862497999961, 49.324453909000098 ], [ -121.622537413999979, 49.324774405000085 ], [ -121.621937018, 49.325706759000063 ], [ -121.620506506999988, 49.325648753000124 ], [ -121.62048198599993, 49.325907942000079 ], [ -121.619241580999983, 49.325857628000108 ], [ -121.618106990999962, 49.325811595000047 ], [ -121.618101570999983, 49.325811375000107 ], [ -121.618101101999969, 49.325816332000031 ], [ -121.618074398999937, 49.32609841700004 ], [ -121.618349833999943, 49.326101710000046 ], [ -121.618336699999958, 49.326570952000104 ], [ -121.618327182999977, 49.32691103300003 ], [ -121.617911581999962, 49.326906064000056 ], [ -121.617325058999981, 49.326899047000055 ], [ -121.617277036999937, 49.327406251000056 ], [ -121.61725354899994, 49.32765431300006 ], [ -121.616976595, 49.327643073000097 ], [ -121.615857328999979, 49.327597640000135 ], [ -121.614565307999925, 49.327545180000108 ], [ -121.614455371, 49.328705525000089 ], [ -121.61436067899993, 49.329704923000087 ], [ -121.614339389999927, 49.329929607000089 ], [ -121.616226620999953, 49.330006229000084 ], [ -121.616025333999971, 49.332131389000054 ], [ -121.611949698999979, 49.332120092000132 ], [ -121.61099305299993, 49.332145148000031 ], [ -121.60895149599996, 49.333054206000064 ], [ -121.607433925999914, 49.3335863080001 ], [ -121.606551979999963, 49.333895535000089 ], [ -121.606057532999955, 49.333861607000053 ], [ -121.606062219999927, 49.333812227000116 ], [ -121.60615854400001, 49.333816146000075 ], [ -121.606174762999927, 49.333241852000064 ], [ -121.606365163999953, 49.333244148000034 ], [ -121.606417368999985, 49.332694232000044 ], [ -121.606690102999963, 49.332705327000077 ], [ -121.606727776999918, 49.332308439000016 ], [ -121.607179492999975, 49.332326813000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3416417", "BldgCostT": "2146667", "sL_LossRatio": "0.545026578710673", "sL_AssetLoss": "2162.445", "sL_BldgLoss": "1178.59", "sL_StrLoss": "770.88", "sL_NStrLoss": "407.71", "sL_ContLoss": "983.855", "geom_point": "0101000020E610000058486DA008525EC01FBF12A3C2B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.279304818999933, 49.414033968000098 ], [ -121.279335008999951, 49.413738594000051 ], [ -121.278385207999946, 49.413697145000107 ], [ -121.278752299999937, 49.410105976000089 ], [ -121.284248039999937, 49.410345695000146 ], [ -121.284217882999911, 49.410641072000026 ], [ -121.285167627999968, 49.410682470000083 ], [ -121.284801027999933, 49.41427365800012 ], [ -121.279304818999933, 49.414033968000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3773083", "BldgCostT": "2338333", "sL_LossRatio": "0.995361446357118", "sL_AssetLoss": "2413.899", "sL_BldgLoss": "2402.702", "sL_StrLoss": "2360.292", "sL_NStrLoss": "42.41", "sL_ContLoss": "11.197", "geom_point": "0101000020E61000004DC87B932E405EC0708390E252964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.00032398399992, 49.176158403000031 ], [ -121.000338180999918, 49.176026548000038 ], [ -120.999508464999963, 49.175987982000024 ], [ -120.999895216999931, 49.17239650100003 ], [ -121.005361385999961, 49.172650456000021 ], [ -121.005347203999989, 49.172782313000013 ], [ -121.006176867999912, 49.172820834000071 ], [ -121.005790597999948, 49.176412335000066 ], [ -121.00032398399992, 49.176158403000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4785083", "BldgCostT": "2828333", "sL_LossRatio": "0.984887709230928", "sL_AssetLoss": "1069.99", "sL_BldgLoss": "1053.82", "sL_StrLoss": "947.42", "sL_NStrLoss": "106.4", "sL_ContLoss": "16.17", "geom_point": "0101000020E6100000D4C0A807B94C5EC0855561D8869B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.196243177, 49.213134656000122 ], [ -121.201715188999941, 49.213378634000087 ], [ -121.20134369499999, 49.216970599000049 ], [ -121.195871261999955, 49.216726605000055 ], [ -121.196243177, 49.213134656000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29223500", "BldgCostT": "18185000", "sL_LossRatio": "0.898167661749239", "sL_AssetLoss": "30007.56", "sL_BldgLoss": "26951.82", "sL_StrLoss": "23433.72", "sL_NStrLoss": "3518.1", "sL_ContLoss": "3055.74", "geom_point": "0101000020E61000002CD8674AC2655EC04B3AEBCFD5AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.577405945999928, 49.358154130000081 ], [ -121.577524833, 49.356910706000072 ], [ -121.577412640999967, 49.356909325000053 ], [ -121.577404858999969, 49.357179094000024 ], [ -121.576165880999952, 49.357163836000076 ], [ -121.576167011999985, 49.357124674000076 ], [ -121.576000213999961, 49.357117846000051 ], [ -121.57597200099994, 49.357412811000117 ], [ -121.57528799100001, 49.357384806000042 ], [ -121.573276057999962, 49.357302407000063 ], [ -121.57320059499996, 49.357089708000103 ], [ -121.574262419999954, 49.356068497000095 ], [ -121.57434592599995, 49.35593825200008 ], [ -121.574641602999989, 49.355477120000074 ], [ -121.574725402999945, 49.355346403000048 ], [ -121.574810390999943, 49.354762504000092 ], [ -121.574384522999978, 49.353794103000034 ], [ -121.574464612999975, 49.353560027000086 ], [ -121.5745012299999, 49.353452918000109 ], [ -121.574502232000029, 49.35344999000008 ], [ -121.575218056999987, 49.353479306000068 ], [ -121.575365877999943, 49.351933849000034 ], [ -121.578074704999935, 49.352044742000011 ], [ -121.578160906, 49.351142914000064 ], [ -121.581705677999977, 49.351287924000076 ], [ -121.581713234999967, 49.351025166000113 ], [ -121.582126176999964, 49.351030232000021 ], [ -121.582133931999977, 49.350760463000029 ], [ -121.582229091, 49.350761630000122 ], [ -121.582299158999902, 49.350027871000073 ], [ -121.582344322999987, 49.349554908000066 ], [ -121.582959864999921, 49.349580074000116 ], [ -121.583005019, 49.349107122000092 ], [ -121.586153817999957, 49.349235806000046 ], [ -121.586308302999925, 49.349242117000102 ], [ -121.586309725999982, 49.349192431000056 ], [ -121.587135582999906, 49.349202530000099 ], [ -121.58715103499992, 49.348662990000037 ], [ -121.587563958999979, 49.348668038000014 ], [ -121.58757821799999, 49.348170069000126 ], [ -121.58758713099999, 49.347858728000062 ], [ -121.587987777999928, 49.347863623000116 ], [ -121.588412964999932, 49.347868817000112 ], [ -121.588420683999942, 49.347599047000053 ], [ -121.588833598999955, 49.347604090000026 ], [ -121.588841315999929, 49.347334320000044 ], [ -121.589254227999973, 49.347339360000021 ], [ -121.589266599999974, 49.346906733000033 ], [ -121.589269657999978, 49.346799820000072 ], [ -121.589407233999935, 49.346801499000023 ], [ -121.589682565999937, 49.346804860000084 ], [ -121.589688682999906, 49.346590893000091 ], [ -121.589690278999981, 49.346535089000035 ], [ -121.589762087999944, 49.346535965000072 ], [ -121.590103184, 49.34654012700004 ], [ -121.590110759999945, 49.346275053000035 ], [ -121.590110893999977, 49.346270358000019 ], [ -121.590116935999959, 49.346270431000043 ], [ -121.590523798, 49.346275393000028 ], [ -121.590531506, 49.34600562200005 ], [ -121.59094440799997, 49.346010658000083 ], [ -121.59095211199994, 49.345740887000069 ], [ -121.591365011999955, 49.345745921000116 ], [ -121.591377752999946, 49.34529967600006 ], [ -121.591380416999954, 49.345206380000064 ], [ -121.591493124999914, 49.345207753000125 ], [ -121.591793311999979, 49.345211411000072 ], [ -121.591800405999933, 49.344962921000146 ], [ -121.591801011999962, 49.344941641000055 ], [ -121.591826720999933, 49.344941954000014 ], [ -121.592213905999969, 49.344946671000066 ], [ -121.592221602999956, 49.344676901000135 ], [ -121.592634494, 49.344681929000046 ], [ -121.592642189999978, 49.344412158000111 ], [ -121.593467967, 49.344422211000058 ], [ -121.593475658000017, 49.34415244000008 ], [ -121.593888543999981, 49.344157465000059 ], [ -121.593903920999963, 49.34361792300006 ], [ -121.594316803999959, 49.343622946000032 ], [ -121.594332176999984, 49.343083403000016 ], [ -121.594745053999944, 49.343088425000069 ], [ -121.594749724999971, 49.342924458 ], [ -121.59437766799999, 49.342909286000115 ], [ -121.593891129999946, 49.342889443000033 ], [ -121.594165482999955, 49.340008134000108 ], [ -121.594233201999913, 49.339296862000026 ], [ -121.595118253999942, 49.339332957000032 ], [ -121.594518282999971, 49.340036001000072 ], [ -121.594455393999965, 49.3401097 ], [ -121.594866080999978, 49.340366308000064 ], [ -121.596380971999906, 49.341312823000067 ], [ -121.596739481000014, 49.341542149000119 ], [ -121.597250975999955, 49.341869332000044 ], [ -121.599304545999985, 49.34311010200004 ], [ -121.597224970999946, 49.34302536700006 ], [ -121.597222322999983, 49.34311852000009 ], [ -121.596809443999931, 49.343113509000077 ], [ -121.59680575299997, 49.343243299000036 ], [ -121.599721662999968, 49.343362110000086 ], [ -121.602823609999973, 49.345236074000098 ], [ -121.60389851299999, 49.345938476000121 ], [ -121.605523279999957, 49.347035543000068 ], [ -121.603291986999963, 49.346944761000017 ], [ -121.602005811999945, 49.346892412000038 ], [ -121.601927858999915, 49.347712463000029 ], [ -121.602758574999925, 49.347746276000116 ], [ -121.604567855999989, 49.347819902000047 ], [ -121.602937021999978, 49.34909802599999 ], [ -121.601051910999942, 49.350575289000027 ], [ -121.600235810999919, 49.35120479100005 ], [ -121.599623626999971, 49.351586899000047 ], [ -121.596864598999957, 49.35147450000003 ], [ -121.59692248599994, 49.350866295000131 ], [ -121.59696669899995, 49.350401755000071 ], [ -121.596817032999937, 49.350399938000038 ], [ -121.595776369999939, 49.350387298000051 ], [ -121.595801982999973, 49.349487608000047 ], [ -121.594455059, 49.349432696000086 ], [ -121.594346461999947, 49.35057307900005 ], [ -121.596626133999905, 49.350666010000069 ], [ -121.596604945, 49.3508886360001 ], [ -121.596392554999923, 49.35311990700005 ], [ -121.591834976999962, 49.354611496000118 ], [ -121.590277277999959, 49.354979085000117 ], [ -121.588025162999969, 49.354887154000053 ], [ -121.588122414999944, 49.353867473000086 ], [ -121.583702242999948, 49.353686906000043 ], [ -121.583692734999914, 49.354017948000084 ], [ -121.58339845199994, 49.354014342000013 ], [ -121.583308167999974, 49.354959943000019 ], [ -121.582575460999948, 49.35492999200013 ], [ -121.582564556999941, 49.355044179000075 ], [ -121.583212898999989, 49.355070682000118 ], [ -121.583058620999964, 49.356686402000051 ], [ -121.580898584999943, 49.357562498000028 ], [ -121.579080402, 49.358079485000097 ], [ -121.578389502, 49.358170585000032 ], [ -121.577405945999928, 49.358154130000081 ] ], [ [ -121.594391898999945, 49.349228107000066 ], [ -121.594418832999978, 49.348945258000057 ], [ -121.593846648999985, 49.34892192500012 ], [ -121.594058165999954, 49.346700893000104 ], [ -121.594188770999935, 49.345329377000013 ], [ -121.594247065999966, 49.345331755000075 ], [ -121.594255669999924, 49.345241390000091 ], [ -121.593857790999934, 49.345236548000081 ], [ -121.593834721999926, 49.346045861000121 ], [ -121.593028212999926, 49.346036046000037 ], [ -121.593008916999949, 49.346035810000096 ], [ -121.593001221999941, 49.346305581000124 ], [ -121.592588316999979, 49.346300553000042 ], [ -121.592580620999982, 49.34657032400002 ], [ -121.59216771699991, 49.346565295000119 ], [ -121.592152318999922, 49.347104836 ], [ -121.591739405999974, 49.347099806000074 ], [ -121.591731705999933, 49.347369576000041 ], [ -121.591318791999981, 49.347364544000094 ], [ -121.59131109, 49.347634314000089 ], [ -121.590898172999943, 49.347629280000042 ], [ -121.590890467999941, 49.34789905100007 ], [ -121.59047755, 49.347894016000055 ], [ -121.590462132999946, 49.348433557000128 ], [ -121.590049210999894, 49.348428519000073 ], [ -121.590041500999931, 49.348698289000062 ], [ -121.589628576999971, 49.348693252000082 ], [ -121.589620863999983, 49.348963022000092 ], [ -121.589207936999969, 49.348957982000144 ], [ -121.589206261999962, 49.349016531000061 ], [ -121.594391898999945, 49.349228107000066 ] ], [ [ -121.594277104999946, 49.345016289000036 ], [ -121.594281337, 49.344971837000081 ], [ -121.594278370999987, 49.344971801000042 ], [ -121.594277104999946, 49.345016289000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.994904659347586", "sL_AssetLoss": "552.073", "sL_BldgLoss": "549.26", "sL_StrLoss": "521.03", "sL_NStrLoss": "28.23", "sL_ContLoss": "2.813", "geom_point": "0101000020E6100000012E0AB337515EC04C866732B1B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.26672847199994, 49.44123327799999 ], [ -121.272227848999961, 49.44147359600003 ], [ -121.272152676999923, 49.442207498000116 ], [ -121.27200141299997, 49.443684169000122 ], [ -121.270479211999927, 49.443731404000054 ], [ -121.269601597999937, 49.444006308000077 ], [ -121.269238296999944, 49.444521905000066 ], [ -121.269047232999966, 49.444941698000058 ], [ -121.268076926999953, 49.444899291000105 ], [ -121.266360197999958, 49.444824242000024 ], [ -121.26672847199994, 49.44123327799999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7846661", "BldgCostT": "4435743", "sL_LossRatio": "0.955533885303635", "sL_AssetLoss": "1609.99", "sL_BldgLoss": "1538.4", "sL_StrLoss": "1193.3", "sL_NStrLoss": "345.1", "sL_ContLoss": "71.59", "geom_point": "0101000020E6100000364CE1FFD6655EC0048761D13EA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.588675285999926, 49.320321175000096 ], [ -121.594161929999927, 49.32054520000009 ], [ -121.593819989999986, 49.324137881000048 ], [ -121.588332922999953, 49.323913840000067 ], [ -121.588675285999926, 49.320321175000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.994178440607012", "sL_AssetLoss": "305.76", "sL_BldgLoss": "303.98", "sL_StrLoss": "281.18", "sL_NStrLoss": "22.8", "sL_ContLoss": "1.78", "geom_point": "0101000020E6100000CCE4A3DE36545EC0DD54AC3321B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.316549879999968, 49.405565947000092 ], [ -121.316699603, 49.405572429000117 ], [ -121.31677448399995, 49.405786069000065 ], [ -121.317056976999936, 49.406591938000155 ], [ -121.317471371999929, 49.407774021000101 ], [ -121.31734827299999, 49.407805982000063 ], [ -121.31737451199993, 49.407879509000082 ], [ -121.317485414999936, 49.408353229000056 ], [ -121.317609965999949, 49.40888522500012 ], [ -121.317666307999943, 49.409125809000052 ], [ -121.317669720999973, 49.409443708000062 ], [ -121.31768119199991, 49.41050338700007 ], [ -121.31762559, 49.411188860000031 ], [ -121.317312905999927, 49.411175325000023 ], [ -121.317417192999955, 49.410977498000094 ], [ -121.317386297, 49.409808197000103 ], [ -121.31726621599995, 49.409321099000131 ], [ -121.317120307999971, 49.409174396000068 ], [ -121.316915359999939, 49.409019340000071 ], [ -121.316030411999989, 49.40834980200006 ], [ -121.314913206999904, 49.407955283000042 ], [ -121.314175614999954, 49.407810008000084 ], [ -121.313917287999971, 49.407697507000059 ], [ -121.313784184999975, 49.407515203000038 ], [ -121.313909486999947, 49.406276209000161 ], [ -121.314259204999956, 49.40546673900004 ], [ -121.316370618999912, 49.405558185000054 ], [ -121.316549879999968, 49.405565947000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3697500", "BldgCostT": "2550000", "sL_LossRatio": "0.875883739198743", "sL_AssetLoss": "12730", "sL_BldgLoss": "11150", "sL_StrLoss": "8070", "sL_NStrLoss": "3080", "sL_ContLoss": "1580", "geom_point": "0101000020E6100000D1C54BDCCF875EC0ACA5C2D0518D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.120587871999973, 49.106714246000116 ], [ -122.120609031999919, 49.105516898000062 ], [ -122.119439327999928, 49.105474668000113 ], [ -122.118416946999957, 49.105437747000096 ], [ -122.1184702299999, 49.104798895000052 ], [ -122.118934799999948, 49.104577300000138 ], [ -122.12039801, 49.103194399000074 ], [ -122.120882802999972, 49.102865507000054 ], [ -122.122774786999969, 49.102042303000069 ], [ -122.12362711699997, 49.101593231000088 ], [ -122.124834460999963, 49.101636776000099 ], [ -122.124744491999977, 49.102717321000085 ], [ -122.124630114999931, 49.104090931000094 ], [ -122.124710053999976, 49.104091537000052 ], [ -122.124086560999928, 49.104685561000117 ], [ -122.123555348999915, 49.105210320000019 ], [ -122.122761511999983, 49.105723979000061 ], [ -122.122027276999916, 49.106118534000075 ], [ -122.121221982999941, 49.106487297000079 ], [ -122.120587871999973, 49.106714246000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100176334", "BldgCostT": "65403334", "sL_LossRatio": "0.86813438257629", "sL_AssetLoss": "274458.2", "sL_BldgLoss": "238266.6", "sL_StrLoss": "167029.6", "sL_NStrLoss": "71237", "sL_ContLoss": "36191.6", "geom_point": "0101000020E6100000403D2ABC938C5EC0CE4065FC7B8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.177515442999947, 49.089648705000108 ], [ -122.177333052999941, 49.089534927000081 ], [ -122.174126822999938, 49.089501800000029 ], [ -122.174144046, 49.08929220300012 ], [ -122.175639187999963, 49.089345437000127 ], [ -122.17572543699994, 49.088295437000106 ], [ -122.178734981999966, 49.088402529000142 ], [ -122.178753791999981, 49.088173346000119 ], [ -122.174045854000028, 49.088005783 ], [ -122.174341307999924, 49.084410094000077 ], [ -122.179802801999955, 49.084604459000033 ], [ -122.17958282799999, 49.08728542500009 ], [ -122.184290713999971, 49.087452746000075 ], [ -122.184221520999984, 49.088297036000043 ], [ -122.184949825999936, 49.088322902000122 ], [ -122.185131574999929, 49.08610475800009 ], [ -122.190593312999951, 49.086298575000065 ], [ -122.190557395999946, 49.086737569000107 ], [ -122.193273655, 49.086833856000034 ], [ -122.193477633999947, 49.084338853000069 ], [ -122.19421351799997, 49.084364927000131 ], [ -122.19439481799999, 49.082146668000071 ], [ -122.19444446199999, 49.082148427000043 ], [ -122.194487954999929, 49.081616233000027 ], [ -122.19049345699996, 49.081474639000106 ], [ -122.19066669299994, 49.079356984000057 ], [ -122.188304713999941, 49.079273187000162 ], [ -122.188421968999975, 49.077840619000085 ], [ -122.188285901999933, 49.077835790000044 ], [ -122.188356502999966, 49.076973216000042 ], [ -122.186884205999917, 49.076920955000091 ], [ -122.187178600999943, 49.073325169000078 ], [ -122.189749337999942, 49.073416408000107 ], [ -122.189828607000024, 49.072447431000064 ], [ -122.188041129999959, 49.072383998000142 ], [ -122.188092262999959, 49.071759239000038 ], [ -122.18690162899999, 49.071716970000111 ], [ -122.187001148999954, 49.070501330000056 ], [ -122.186173878999966, 49.070471953000066 ], [ -122.186357324999946, 49.068231466000064 ], [ -122.18646828599999, 49.066876132000111 ], [ -122.191927777999922, 49.067069888000077 ], [ -122.191921095999973, 49.067151627000051 ], [ -122.192916969, 49.067186939000095 ], [ -122.192873594999966, 49.067384800000085 ], [ -122.192639596, 49.068036497000072 ], [ -122.192614102999983, 49.068265518 ], [ -122.192630299999962, 49.068518510000104 ], [ -122.19271266599992, 49.068848110000054 ], [ -122.192868749999931, 49.069472734000065 ], [ -122.192994398999957, 49.069975711000112 ], [ -122.193060959, 49.070093749000073 ], [ -122.19318221599994, 49.070308688000061 ], [ -122.193368698999933, 49.070538893000027 ], [ -122.194725496999951, 49.071491308000127 ], [ -122.196421924999953, 49.07267830300006 ], [ -122.196463582999939, 49.072714320000102 ], [ -122.197199421999969, 49.073350402000123 ], [ -122.197456393999914, 49.073539015000094 ], [ -122.197971804999966, 49.073732096000064 ], [ -122.19851034299991, 49.073843275000044 ], [ -122.199584809, 49.074065096000069 ], [ -122.200025555999972, 49.074306193000069 ], [ -122.200214380999924, 49.074409523000035 ], [ -122.200587326999965, 49.074613496000026 ], [ -122.201002094000017, 49.074798588000135 ], [ -122.201193932999956, 49.074907590000109 ], [ -122.197615646999978, 49.074780962000091 ], [ -122.19760946599996, 49.074856666000102 ], [ -122.197450166999914, 49.074851026000054 ], [ -122.19737620599993, 49.07575686900006 ], [ -122.194292378999961, 49.075647638000063 ], [ -122.194100442999925, 49.077996311000057 ], [ -122.196248398999955, 49.078072401000057 ], [ -122.195983770999959, 49.081312022000063 ], [ -122.199978271999939, 49.081453411000069 ], [ -122.199957133999987, 49.081712438000118 ], [ -122.200826458999927, 49.081743189000058 ], [ -122.200785443999948, 49.082245902000054 ], [ -122.201771257999937, 49.082280764000053 ], [ -122.201672032999966, 49.0834972030001 ], [ -122.202083721999927, 49.083511760000093 ], [ -122.202008124999935, 49.084438575000071 ], [ -122.202112377999981, 49.084442261000092 ], [ -122.202054201999971, 49.085155499000024 ], [ -122.202220019, 49.085161360000086 ], [ -122.20215501399997, 49.085958321000057 ], [ -122.202241143999984, 49.085961366000099 ], [ -122.202417600999979, 49.083797866000019 ], [ -122.203207587999927, 49.083825791000088 ], [ -122.203235675999949, 49.083481316000068 ], [ -122.20202855699992, 49.083438643000108 ], [ -122.202321822999949, 49.079842852000077 ], [ -122.20320721799996, 49.079874153000112 ], [ -122.203320584999943, 49.078483649000063 ], [ -122.200783864999963, 49.078466112000022 ], [ -122.200796854, 49.077656596000068 ], [ -122.20038609599996, 49.077653750000096 ], [ -122.20039909099998, 49.076844234000077 ], [ -122.20178267499989, 49.076853812000117 ], [ -122.201908295999971, 49.075313478000055 ], [ -122.202000388999977, 49.075365803000082 ], [ -122.202685402999961, 49.075813796 ], [ -122.203815580999972, 49.076359500000066 ], [ -122.20508401699999, 49.076890202000101 ], [ -122.205429601, 49.077135109000096 ], [ -122.205466354999913, 49.077181440000068 ], [ -122.205568594999988, 49.077310403000055 ], [ -122.20559938400001, 49.077654893000052 ], [ -122.205595020999979, 49.077949382000121 ], [ -122.205571931999927, 49.079504795000048 ], [ -122.20542474299999, 49.079832294000013 ], [ -122.208614494999949, 49.079770940000067 ], [ -122.208792817999921, 49.079760748000076 ], [ -122.208716839999951, 49.080693982000057 ], [ -122.207732129999954, 49.08065922100014 ], [ -122.207711772999943, 49.080909201000097 ], [ -122.208946015, 49.080952769000106 ], [ -122.208897683999965, 49.081546420000016 ], [ -122.21059352099995, 49.081606259000083 ], [ -122.210595170999966, 49.081502182000079 ], [ -122.211005959999966, 49.081504991 ], [ -122.211014508999966, 49.080965313000078 ], [ -122.211425293999952, 49.080968120000122 ], [ -122.211442383999952, 49.079888763000021 ], [ -122.211853161999926, 49.079891569000083 ], [ -122.211861086999988, 49.079390752000094 ], [ -122.212033669999983, 49.079353065000127 ], [ -122.212899807999989, 49.079358975000062 ], [ -122.21338303099995, 49.079842661000036 ], [ -122.21356332299996, 49.080117659000017 ], [ -122.213646334999964, 49.080359472000055 ], [ -122.213656004999947, 49.080913376000105 ], [ -122.213714884999916, 49.081148978000044 ], [ -122.21386311299996, 49.081381376000053 ], [ -122.214061186, 49.081572288000075 ], [ -122.215087802999932, 49.082194077000075 ], [ -122.215199092999939, 49.082261504000037 ], [ -122.21664967399991, 49.083114956000053 ], [ -122.216918556999957, 49.083512981000048 ], [ -122.217018727999985, 49.083746401000056 ], [ -122.217020294999912, 49.083979949000067 ], [ -122.215701960999965, 49.084495881000116 ], [ -122.215181890999929, 49.084752819000052 ], [ -122.215022050999977, 49.084747188000087 ], [ -122.215085906999988, 49.083961622000068 ], [ -122.212919851000024, 49.083946871000045 ], [ -122.212869187999971, 49.084569776000116 ], [ -122.214028553999938, 49.084610643000069 ], [ -122.213980982999928, 49.085195708000079 ], [ -122.214106788999956, 49.08520014200009 ], [ -122.214087374999949, 49.085438889000073 ], [ -122.212788195, 49.08637479800008 ], [ -122.211332016999947, 49.087658425 ], [ -122.210294285999979, 49.088868086000076 ], [ -122.210250710999944, 49.089067103000055 ], [ -122.210085935999956, 49.089554066000112 ], [ -122.206488882999949, 49.089638704000066 ], [ -122.205565930999938, 49.08966038900018 ], [ -122.203145919999912, 49.089622998000046 ], [ -122.202983578999948, 49.089620496000087 ], [ -122.202521105999949, 49.08958171600009 ], [ -122.19999758499992, 49.08953141500011 ], [ -122.199896018999951, 49.089529402000061 ], [ -122.19930400899996, 49.089449893000044 ], [ -122.19736298399999, 49.089036790000058 ], [ -122.196761710999965, 49.088970392000128 ], [ -122.19651710600003, 49.088996891000093 ], [ -122.196336624999986, 49.08906090300011 ], [ -122.195718295999953, 49.089393456000053 ], [ -122.19532676099999, 49.089603904000036 ], [ -122.195099033999895, 49.089658921000144 ], [ -122.194686224999927, 49.089683065000024 ], [ -122.191295255999989, 49.0896169970001 ], [ -122.18965019700002, 49.089603767000028 ], [ -122.189465293999945, 49.089618643000087 ], [ -122.188792460999963, 49.089676089000086 ], [ -122.18812526399995, 49.089662342000025 ], [ -122.187899513, 49.089693094 ], [ -122.18745950399996, 49.089882132000078 ], [ -122.187247942999974, 49.089923314000032 ], [ -122.18702938699991, 49.089916451000072 ], [ -122.18626849499999, 49.089709147000107 ], [ -122.18588511199999, 49.08967479400004 ], [ -122.18428726499998, 49.089652173000012 ], [ -122.183394927999956, 49.089648799000059 ], [ -122.181906577999897, 49.089642573000035 ], [ -122.179902573999968, 49.089635520000115 ], [ -122.178793221999939, 49.089631267000122 ], [ -122.178175782999929, 49.089628927000092 ], [ -122.177887897999966, 49.089637539000108 ], [ -122.177515442999947, 49.089648705000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.967969883049958", "sL_AssetLoss": "3240.7", "sL_BldgLoss": "3136.9", "sL_StrLoss": "2755", "sL_NStrLoss": "381.9", "sL_ContLoss": "103.8", "geom_point": "0101000020E61000008096118B168A5EC0682F91C1408C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.15503053399999, 49.094500759000042 ], [ -122.160493130999953, 49.094696103000047 ], [ -122.1603157, 49.096847210000114 ], [ -122.154835371999965, 49.09686347300007 ], [ -122.15503053399999, 49.094500759000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9081834", "BldgCostT": "6263334", "sL_LossRatio": "0.953678690036236", "sL_AssetLoss": "13881.3", "sL_BldgLoss": "13238.3", "sL_StrLoss": "11043.3", "sL_NStrLoss": "2195", "sL_ContLoss": "643", "geom_point": "0101000020E61000002FE7104003875EC0623F30EC558F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.110464300999951, 49.1162600910001 ], [ -122.111427312, 49.115979589000055 ], [ -122.111924715999947, 49.11575029500009 ], [ -122.112627531999948, 49.115063873000103 ], [ -122.112629126999963, 49.115063886000087 ], [ -122.112629154999979, 49.115062288000075 ], [ -122.113012582999943, 49.114687794000105 ], [ -122.112977186999984, 49.114454199000065 ], [ -122.113088843999918, 49.114278296000109 ], [ -122.113215804, 49.114078283 ], [ -122.11339329, 49.114079693000107 ], [ -122.11360271299999, 49.113954289000041 ], [ -122.113687510999938, 49.113774889000112 ], [ -122.11372470799995, 49.113453096000114 ], [ -122.114652104999948, 49.113460212000071 ], [ -122.115124266999956, 49.113463832000043 ], [ -122.11510986699993, 49.114273325000084 ], [ -122.11469881699999, 49.114270173000115 ], [ -122.114684409999938, 49.115079666000014 ], [ -122.114273354999938, 49.11507651300014 ], [ -122.114268548000027, 49.115346343000056 ], [ -122.113857489999972, 49.11534318800004 ], [ -122.113852682999919, 49.115613019000129 ], [ -122.113441622999986, 49.115609864000078 ], [ -122.113432003999932, 49.116149525000026 ], [ -122.113020938999938, 49.116146368000031 ], [ -122.113018497999946, 49.116283236000108 ], [ -122.113349985999918, 49.116295222000083 ], [ -122.113180628999942, 49.118322500000033 ], [ -122.112106878, 49.11833923800004 ], [ -122.111854275999946, 49.121970442000077 ], [ -122.111773967999966, 49.121973177000086 ], [ -122.111412182999956, 49.121960092000101 ], [ -122.111410051999954, 49.121985570000078 ], [ -122.10894069899993, 49.122069628000133 ], [ -122.108724678999977, 49.124081803000131 ], [ -122.106001329999955, 49.124145075000072 ], [ -122.10588546299999, 49.1251306260001 ], [ -122.1037815, 49.125054403000064 ], [ -122.10379337899991, 49.124912579000068 ], [ -122.10397881599999, 49.124774095000092 ], [ -122.104637897999979, 49.123960792000034 ], [ -122.104826303999971, 49.123431012000054 ], [ -122.105815797999981, 49.121739103000067 ], [ -122.105944317999928, 49.121526564000135 ], [ -122.105966257999938, 49.12152735800003 ], [ -122.105969859999959, 49.121484322000086 ], [ -122.106422096999964, 49.12073641300006 ], [ -122.106825895999918, 49.120378989000066 ], [ -122.108403481999943, 49.118088797000098 ], [ -122.109213908999934, 49.117185909000099 ], [ -122.110200487999975, 49.116429594000067 ], [ -122.110464300999951, 49.1162600910001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49145417", "BldgCostT": "33421667", "sL_LossRatio": "0.929738802905715", "sL_AssetLoss": "88886.9", "sL_BldgLoss": "82641.6", "sL_StrLoss": "66461.8", "sL_NStrLoss": "16179.8", "sL_ContLoss": "6245.3", "geom_point": "0101000020E6100000D253FDAD518B5EC0C1429C3D86884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.162021089999911, 49.080314882000053 ], [ -122.162238645999977, 49.077675110000079 ], [ -122.161380502000014, 49.07764444200005 ], [ -122.161427101999934, 49.077376387000108 ], [ -122.16171978899996, 49.077018902000063 ], [ -122.163217494999941, 49.075913704000079 ], [ -122.163397884999952, 49.075752798000039 ], [ -122.163484701999934, 49.075456490000072 ], [ -122.163761611999988, 49.075378189000048 ], [ -122.164426003999921, 49.074834197 ], [ -122.166169982999946, 49.073713300000044 ], [ -122.167391364999943, 49.072815711000075 ], [ -122.168640121999914, 49.072860269000053 ], [ -122.168756283, 49.071448166000117 ], [ -122.169246983000022, 49.070695402000119 ], [ -122.169701705999927, 49.069754006000046 ], [ -122.169718998999954, 49.069649098000092 ], [ -122.17298036899993, 49.069765378000064 ], [ -122.173147538999942, 49.067730690000111 ], [ -122.173163491999929, 49.067536515000086 ], [ -122.174276223999954, 49.067576166000066 ], [ -122.174805263999957, 49.067595014000084 ], [ -122.174807276999942, 49.067570487000062 ], [ -122.174871517999975, 49.066788196000047 ], [ -122.171901487999904, 49.066682353000054 ], [ -122.17115006799996, 49.066655561000076 ], [ -122.171214751999941, 49.065868615000021 ], [ -122.172203183999969, 49.06339349700005 ], [ -122.172352571999951, 49.062916031000086 ], [ -122.172621583999899, 49.062056200000015 ], [ -122.173298609999932, 49.060828490000056 ], [ -122.17374268599994, 49.060472402000038 ], [ -122.174267217999954, 49.060277307000042 ], [ -122.177358089999942, 49.059526799000011 ], [ -122.178758108999929, 49.059303204000059 ], [ -122.179490610999977, 49.058911508000016 ], [ -122.179934904999939, 49.058492801000021 ], [ -122.181507294999975, 49.057766400000077 ], [ -122.181609908999974, 49.057370488000075 ], [ -122.18128518799989, 49.057134096 ], [ -122.180936395999936, 49.056780909000061 ], [ -122.180921865999906, 49.05673311000006 ], [ -122.180927900999933, 49.056730378000047 ], [ -122.181024860999926, 49.056686490000075 ], [ -122.183317068999941, 49.055648831000084 ], [ -122.182963494999925, 49.056108335000054 ], [ -122.182801862999938, 49.056318426000139 ], [ -122.182895544999937, 49.057547695000096 ], [ -122.191563510999984, 49.057751006000075 ], [ -122.191504241999937, 49.060795737000028 ], [ -122.192562890999938, 49.060803112000023 ], [ -122.192918798000022, 49.060802191000093 ], [ -122.192541314999971, 49.060899690000063 ], [ -122.192510474999949, 49.060913370000023 ], [ -122.19218341699991, 49.061058396000135 ], [ -122.191861697999968, 49.061260611000058 ], [ -122.191642715999947, 49.061478191000049 ], [ -122.191513304999944, 49.061721594000062 ], [ -122.191455498999986, 49.062009789000065 ], [ -122.191477085999949, 49.062247697000082 ], [ -122.19171202699999, 49.063069518000084 ], [ -122.190981413, 49.063043602000128 ], [ -122.19104349899996, 49.062284265000095 ], [ -122.190315979999923, 49.062258453000055 ], [ -122.190254209999935, 49.063013778000077 ], [ -122.188855557999958, 49.062964141000059 ], [ -122.188832866000027, 49.063241512000076 ], [ -122.185821525999984, 49.063134578000117 ], [ -122.18572030099989, 49.064370882000084 ], [ -122.180261150999939, 49.06417681100006 ], [ -122.180266159999988, 49.064115729000029 ], [ -122.176843889999958, 49.063993926000144 ], [ -122.176759139999916, 49.065026548000084 ], [ -122.18048047699989, 49.065158989000047 ], [ -122.180285225999953, 49.067540147000095 ], [ -122.180185617999939, 49.068754804000015 ], [ -122.178543798999939, 49.068696388000056 ], [ -122.17832798699996, 49.071326741000085 ], [ -122.175181028999972, 49.071214702000091 ], [ -122.174986674999957, 49.073581313000048 ], [ -122.17075844699994, 49.073430634000026 ], [ -122.170503356999973, 49.076533013000116 ], [ -122.167622451999975, 49.076430252000065 ], [ -122.167586955999937, 49.076861581000024 ], [ -122.167225056999897, 49.076848667000057 ], [ -122.167221302999934, 49.076894297000116 ], [ -122.167777965999946, 49.076914161000062 ], [ -122.167482053999919, 49.080509874000086 ], [ -122.162021089999911, 49.080314882000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.892797319932998", "sL_AssetLoss": "1791", "sL_BldgLoss": "1599", "sL_StrLoss": "1210", "sL_NStrLoss": "389", "sL_ContLoss": "192", "geom_point": "0101000020E6100000E6F1CD99E1885EC0E637D06CEC8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.139592919000023, 49.084897605000052 ], [ -122.140792156999922, 49.084807154000053 ], [ -122.140737439999967, 49.08546730200009 ], [ -122.138295275999951, 49.085379535000072 ], [ -122.138197751999968, 49.086555353000044 ], [ -122.137278310999989, 49.0857080050001 ], [ -122.137216197999962, 49.085347707000103 ], [ -122.13735637699989, 49.085096996000097 ], [ -122.137702216999941, 49.084891904000081 ], [ -122.139592919000023, 49.084897605000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.949793930310978", "sL_AssetLoss": "1067.6", "sL_BldgLoss": "1014", "sL_StrLoss": "874", "sL_NStrLoss": "140", "sL_ContLoss": "53.6", "geom_point": "0101000020E6100000DA8E679F60875EC092699F549C8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.114385446, 49.107592941000085 ], [ -122.114396420999967, 49.105523006000084 ], [ -122.114725805999953, 49.105426208000075 ], [ -122.115835304999933, 49.105426196000053 ], [ -122.116311981999985, 49.105645498000065 ], [ -122.116600293999966, 49.105665414000022 ], [ -122.117039193999972, 49.105578612000087 ], [ -122.11746871299998, 49.105276595000049 ], [ -122.117769712999944, 49.105133027000171 ], [ -122.117717927999976, 49.10575379300009 ], [ -122.115536214999949, 49.105674959000048 ], [ -122.115373135999945, 49.107628645000034 ], [ -122.114385446, 49.107592941000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5454417", "BldgCostT": "3761667", "sL_LossRatio": "0.99813720231746", "sL_AssetLoss": "1485.937", "sL_BldgLoss": "1483.169", "sL_StrLoss": "1448.959", "sL_NStrLoss": "34.21", "sL_ContLoss": "2.768", "geom_point": "0101000020E61000001B8DD71724625EC0885C998530024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.529535514999935, 50.019575583000091 ], [ -121.529616107999942, 50.018754409000039 ], [ -121.529797205999927, 50.018785887000078 ], [ -121.530714209999957, 50.018015386000066 ], [ -121.530920499999979, 50.017657912000061 ], [ -121.530919650999948, 50.017491425000046 ], [ -121.531369820999927, 50.017509759000099 ], [ -121.531494523999953, 50.016238555000065 ], [ -121.530033718999931, 50.016179053000037 ], [ -121.52943332199996, 50.015651203000054 ], [ -121.529020811999928, 50.014063189000147 ], [ -121.528685794999959, 50.013600309000061 ], [ -121.528430384999965, 50.012510424 ], [ -121.53369056, 50.012724687000038 ], [ -121.533496571999962, 50.014703293000139 ], [ -121.538342728999964, 50.014900466000078 ], [ -121.537991194999933, 50.018489427000056 ], [ -121.537356298999896, 50.018463609000023 ], [ -121.537345371999976, 50.018575143000071 ], [ -121.537339689999953, 50.01857491200014 ], [ -121.537099702999939, 50.0210243430001 ], [ -121.534994553000018, 50.020938706000024 ], [ -121.53496312599999, 50.021259292000124 ], [ -121.530424691999912, 50.021074533000032 ], [ -121.530265679999971, 50.020852394000066 ], [ -121.529535514999935, 50.019575583000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4197750", "BldgCostT": "2895000", "sL_LossRatio": "0.995920866281128", "sL_AssetLoss": "1355.68", "sL_BldgLoss": "1350.15", "sL_StrLoss": "1277.95", "sL_NStrLoss": "72.2", "sL_ContLoss": "5.53", "geom_point": "0101000020E61000008C188FB5F3615EC0744D373F34044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.532667604000011, 50.037991322000074 ], [ -121.53269226899999, 50.037182129000087 ], [ -121.532273482999983, 50.037176833000039 ], [ -121.53229815499995, 50.036367639000098 ], [ -121.531879374, 50.036362341000071 ], [ -121.531894060999946, 50.035880753000129 ], [ -121.528791841999947, 50.035754438000033 ], [ -121.528863489999978, 50.035024804000052 ], [ -121.52776885499992, 50.034980212000015 ], [ -121.527992700999945, 50.032701064000051 ], [ -121.526007644999964, 50.032620170000015 ], [ -121.526360230999956, 50.02903131500009 ], [ -121.529178781999988, 50.029146164000075 ], [ -121.531931797999974, 50.029258272000064 ], [ -121.531708166999962, 50.031537440000108 ], [ -121.533693184999962, 50.031618229000081 ], [ -121.533621619999963, 50.032347870000123 ], [ -121.534716197999927, 50.032392404000106 ], [ -121.534364243, 50.035981269000061 ], [ -121.533567738999949, 50.035948864 ], [ -121.533541145999905, 50.036821792000062 ], [ -121.533538063999984, 50.036922985000096 ], [ -121.533599106999944, 50.036923757000068 ], [ -121.533956849, 50.036928277000044 ], [ -121.533938788999961, 50.037521287000068 ], [ -121.533923987999941, 50.038007203000063 ], [ -121.532667604000011, 50.037991322000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3675750", "BldgCostT": "2535000", "sL_LossRatio": "0.992626224314495", "sL_AssetLoss": "1792.84", "sL_BldgLoss": "1779.62", "sL_StrLoss": "1645.42", "sL_NStrLoss": "134.2", "sL_ContLoss": "13.22", "geom_point": "0101000020E61000008D2958E3AC5B5EC0886F7A7A99E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.42910158499997, 49.764855872000069 ], [ -121.429133735999983, 49.764533602000029 ], [ -121.428404781999987, 49.764503053000105 ], [ -121.428669972999955, 49.761845116000167 ], [ -121.428762944999932, 49.760913196000125 ], [ -121.429436985999985, 49.760941445000078 ], [ -121.429473834999939, 49.760572013000079 ], [ -121.429641497999967, 49.760579038000095 ], [ -121.429690652999909, 49.760086216000104 ], [ -121.430684303999925, 49.760127850000053 ], [ -121.43070367199999, 49.759527883000068 ], [ -121.43236916099994, 49.759550434000033 ], [ -121.432348291999986, 49.760197551000054 ], [ -121.434386163999974, 49.760282878000055 ], [ -121.434475213999946, 49.760324692000061 ], [ -121.435206903999926, 49.760540715000083 ], [ -121.435199869999948, 49.760611329000028 ], [ -121.435486748999935, 49.760623335000027 ], [ -121.435685808999949, 49.760682104000082 ], [ -121.436008882999943, 49.760706525000032 ], [ -121.435904247999972, 49.761757016000047 ], [ -121.438129056999983, 49.761787035000026 ], [ -121.43810305599996, 49.762596232000085 ], [ -121.435823716999977, 49.762565476000127 ], [ -121.435657373999959, 49.764235322000083 ], [ -121.435238211999945, 49.764217781000134 ], [ -121.435200874999964, 49.764592531000126 ], [ -121.434692054999942, 49.764571237000055 ], [ -121.434640578999904, 49.765087843000103 ], [ -121.434200882999917, 49.765069439000051 ], [ -121.42910158499997, 49.764855872000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.997922812212333", "sL_AssetLoss": "626.809", "sL_BldgLoss": "625.507", "sL_StrLoss": "611.317", "sL_NStrLoss": "14.19", "sL_ContLoss": "1.302", "geom_point": "0101000020E6100000973E32256B4E5EC01B259EA259ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.222702779999935, 49.8523823620001 ], [ -121.228251293999932, 49.852624770000077 ], [ -121.228084616999979, 49.854221637000101 ], [ -121.227876695999925, 49.85621349700007 ], [ -121.222327748999973, 49.855971072000024 ], [ -121.222501232999917, 49.854311062000122 ], [ -121.222702779999935, 49.8523823620001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997794469072142", "sL_AssetLoss": "228.063", "sL_BldgLoss": "227.56", "sL_StrLoss": "223", "sL_NStrLoss": "4.56", "sL_ContLoss": "0.503", "geom_point": "0101000020E6100000ACA7B989585C5EC0CAF474430DEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.442526902999973, 49.845498917000022 ], [ -121.442552906999936, 49.844689730000056 ], [ -121.442135802999957, 49.844684124000061 ], [ -121.442196487999922, 49.842796021000048 ], [ -121.443447755999927, 49.84281283300006 ], [ -121.443387116999972, 49.844700938000052 ], [ -121.443804222999944, 49.844706539000079 ], [ -121.443778239999986, 49.845515727000056 ], [ -121.442526902999973, 49.845498917000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.994374346526683", "sL_AssetLoss": "648.458", "sL_BldgLoss": "644.81", "sL_StrLoss": "601.51", "sL_NStrLoss": "43.3", "sL_ContLoss": "3.648", "geom_point": "0101000020E6100000D0C254E99D5C5EC059347C8F23E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.449009562, 49.784328663000039 ], [ -121.449022870999968, 49.784194737000121 ], [ -121.447124826, 49.784115566000047 ], [ -121.444605921999965, 49.784010445000057 ], [ -121.444937878999937, 49.780672912000064 ], [ -121.444962969999978, 49.780420633000112 ], [ -121.448983781999956, 49.780588405000096 ], [ -121.44903242399999, 49.780098866000102 ], [ -121.449577217, 49.780541308000132 ], [ -121.449407209, 49.781519701000057 ], [ -121.449217006999902, 49.781823094000103 ], [ -121.449329116999962, 49.782193402000082 ], [ -121.449320508999904, 49.782921204000104 ], [ -121.449736429999973, 49.784358974000071 ], [ -121.449009562, 49.784328663000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.992953549553742", "sL_AssetLoss": "979.926", "sL_BldgLoss": "973.021", "sL_StrLoss": "917.951", "sL_NStrLoss": "55.07", "sL_ContLoss": "6.905", "geom_point": "0101000020E610000031A6CB28F75C5EC0843EA25321E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.451955399, 49.785449445000012 ], [ -121.451987163999902, 49.784452799000071 ], [ -121.450847665000012, 49.784405303000064 ], [ -121.451233110999979, 49.783936597000036 ], [ -121.450872089, 49.78307639700013 ], [ -121.450310879999947, 49.782368594000097 ], [ -121.450318508999899, 49.782098003000073 ], [ -121.450395499999928, 49.781874400000049 ], [ -121.450181613999959, 49.781646500000122 ], [ -121.449937290999969, 49.780977102000094 ], [ -121.450140906999977, 49.780692292000069 ], [ -121.45007199199992, 49.780304893000057 ], [ -121.450291718999935, 49.779921798000039 ], [ -121.450279908, 49.779871900000074 ], [ -121.454600933999956, 49.780051984000131 ], [ -121.454564404999985, 49.780420064000019 ], [ -121.454766451999916, 49.780428480000097 ], [ -121.454713534999939, 49.780961708000078 ], [ -121.454907281999979, 49.780969778000106 ], [ -121.454551008999914, 49.784559619000049 ], [ -121.453235808999978, 49.784504830000024 ], [ -121.45320519299996, 49.785466138000061 ], [ -121.451955399, 49.785449445000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997399361129229", "sL_AssetLoss": "239.172", "sL_BldgLoss": "238.55", "sL_StrLoss": "233", "sL_NStrLoss": "5.55", "sL_ContLoss": "0.622", "geom_point": "0101000020E61000009A8933D0865F5EC07745F8305EFC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.492388605999935, 49.971120580000061 ], [ -121.496111054999943, 49.971273606000075 ], [ -121.496072534999925, 49.971663599000046 ], [ -121.493365241999953, 49.971806552000096 ], [ -121.492924691999988, 49.971937893000074 ], [ -121.490758293999988, 49.972540590000023 ], [ -121.490396519999962, 49.972563825000066 ], [ -121.490546742999982, 49.971044816000074 ], [ -121.492388605999935, 49.971120580000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "0.998162292540056", "sL_AssetLoss": "592.042", "sL_BldgLoss": "590.954", "sL_StrLoss": "576.464", "sL_NStrLoss": "14.49", "sL_ContLoss": "1.088", "geom_point": "0101000020E610000054528ACAC44F5EC028974A6860ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.24391672199998, 49.856234154000028 ], [ -121.243925205999986, 49.85615260600008 ], [ -121.242870989999972, 49.856106726000085 ], [ -121.243068049999962, 49.854212965000059 ], [ -121.243244412999957, 49.852517947000145 ], [ -121.248793051999911, 49.852759314000096 ], [ -121.248784576999981, 49.852840862000086 ], [ -121.249838721999964, 49.852886686000097 ], [ -121.249689905999958, 49.85431893500008 ], [ -121.249465812999944, 49.856475485000047 ], [ -121.24391672199998, 49.856234154000028 ] ], [ [ -121.244768621999953, 49.853825405000073 ], [ -121.244745089999981, 49.853690109000063 ], [ -121.244045786999919, 49.853822593000061 ], [ -121.243517582999971, 49.853796892000084 ], [ -121.243481790999965, 49.853976410000051 ], [ -121.243617800999971, 49.854104611000018 ], [ -121.244088611999985, 49.854130187000074 ], [ -121.244768621999953, 49.853825405000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "0.997321263822793", "sL_AssetLoss": "932.156", "sL_BldgLoss": "929.659", "sL_StrLoss": "899.889", "sL_NStrLoss": "29.77", "sL_ContLoss": "2.497", "geom_point": "0101000020E61000005BB0D84FD45F5EC0C7BF6C8E35FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.494927076999943, 49.953290467000059 ], [ -121.495018620999986, 49.952363473000048 ], [ -121.50058068, 49.952592043000045 ], [ -121.500530969999929, 49.95309604200002 ], [ -121.501236789999908, 49.953125027000084 ], [ -121.500882814999969, 49.956714168000076 ], [ -121.498989692999942, 49.956636416000016 ], [ -121.498947953999931, 49.957059413000074 ], [ -121.493385358999944, 49.95683076100002 ], [ -121.49373992299995, 49.953241645000062 ], [ -121.494927076999943, 49.953290467000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997735096937851", "sL_AssetLoss": "220.76", "sL_BldgLoss": "220.26", "sL_StrLoss": "216", "sL_NStrLoss": "4.26", "sL_ContLoss": "0.5", "geom_point": "0101000020E610000068439B6F465C5EC08ADCBA38FDF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.441329187999912, 49.882729590000082 ], [ -121.44133813799999, 49.882451665000119 ], [ -121.441270486999954, 49.882450754000054 ], [ -121.440920706999961, 49.882446051000066 ], [ -121.44094677199999, 49.881636870000122 ], [ -121.440969944999907, 49.881637182000105 ], [ -121.442199041999956, 49.881653705000069 ], [ -121.442172998999979, 49.88246288800012 ], [ -121.442590428999921, 49.882468496000065 ], [ -121.442547030999947, 49.883817131000114 ], [ -121.441555338999947, 49.883803804000173 ], [ -121.441294705999923, 49.883800300000104 ], [ -121.441329187999912, 49.882729590000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997559616293994", "sL_AssetLoss": "236.848", "sL_BldgLoss": "236.27", "sL_StrLoss": "231", "sL_NStrLoss": "5.27", "sL_ContLoss": "0.578", "geom_point": "0101000020E6100000F11DA97C97625EC08E5143C0C6054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.538787080999953, 50.043557680000056 ], [ -121.54034411399999, 50.043620935000021 ], [ -121.540486309999949, 50.043827786000065 ], [ -121.540786117999929, 50.044101201000103 ], [ -121.541354816999927, 50.045150902000067 ], [ -121.541619212999947, 50.045469385000025 ], [ -121.541442987000011, 50.047268672000044 ], [ -121.541092779999957, 50.047254452000047 ], [ -121.540510268, 50.04621237700011 ], [ -121.538787080999953, 50.043557680000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997390809258736", "sL_AssetLoss": "244.137", "sL_BldgLoss": "243.5", "sL_StrLoss": "238", "sL_NStrLoss": "5.5", "sL_ContLoss": "0.637", "geom_point": "0101000020E61000009134D14A0E5C5EC00C1E2AB697EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.437895371999943, 49.833833213000048 ], [ -121.437930132999938, 49.832754296000118 ], [ -121.437513130999918, 49.832748675000055 ], [ -121.437547897999949, 49.831669759000114 ], [ -121.438798874999961, 49.831686618000042 ], [ -121.438772820999972, 49.832495806000068 ], [ -121.439189819999953, 49.832501424000078 ], [ -121.439146405999978, 49.833850069000029 ], [ -121.437895371999943, 49.833833213000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4340333", "BldgCostT": "2993333", "sL_LossRatio": "0.997239257203107", "sL_AssetLoss": "1394.19", "sL_BldgLoss": "1390.341", "sL_StrLoss": "1348.981", "sL_NStrLoss": "41.36", "sL_ContLoss": "3.849", "geom_point": "0101000020E610000015928ACECB5C5EC010D3D75660ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.448777637999939, 49.858805159000013 ], [ -121.448803548999976, 49.857995970000118 ], [ -121.448386328999973, 49.857990386000054 ], [ -121.448401529999941, 49.857515749000072 ], [ -121.447710102999949, 49.857486957000049 ], [ -121.447875600999978, 49.855824788000042 ], [ -121.447621035999973, 49.855821380000144 ], [ -121.447660048999964, 49.854603786000112 ], [ -121.446359842, 49.854549628000036 ], [ -121.446717301999954, 49.850960162000057 ], [ -121.452266800999936, 49.851191212000096 ], [ -121.451981419999953, 49.854060427000078 ], [ -121.453617340999969, 49.854128483000068 ], [ -121.453260397999898, 49.857717956000045 ], [ -121.449652050999944, 49.857567812000077 ], [ -121.449637991999936, 49.858007135 ], [ -121.450055213999974, 49.85801271499999 ], [ -121.450029322999924, 49.858821903000056 ], [ -121.448777637999939, 49.858805159000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997785610398459", "sL_AssetLoss": "228.957", "sL_BldgLoss": "228.45", "sL_StrLoss": "224", "sL_NStrLoss": "4.45", "sL_ContLoss": "0.507", "geom_point": "0101000020E61000000488486E895C5EC0D5DBD1C5C7EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.445690786999975, 49.850938299000106 ], [ -121.445716743, 49.850129111000086 ], [ -121.444882438999969, 49.850117920000066 ], [ -121.444925718, 49.848769274000034 ], [ -121.446177140999964, 49.848786058000108 ], [ -121.446159843999979, 49.84932551600005 ], [ -121.44657699099993, 49.849331109000062 ], [ -121.446551047999918, 49.850140296000063 ], [ -121.446968203, 49.850145887000089 ], [ -121.446942266999955, 49.850955074000112 ], [ -121.445690786999975, 49.850938299000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99628969480921", "sL_AssetLoss": "274.91", "sL_BldgLoss": "273.89", "sL_StrLoss": "265", "sL_NStrLoss": "8.89", "sL_ContLoss": "1.02", "geom_point": "0101000020E61000000C587215CB5B5EC0CBB86FD6DCE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.434707319999944, 49.829202809000023 ], [ -121.434733438999942, 49.828393622000078 ], [ -121.433899513000014, 49.828382355000031 ], [ -121.433916933999953, 49.827842898000021 ], [ -121.433499975999936, 49.827837263000013 ], [ -121.433534825999956, 49.826758348000062 ], [ -121.43311787599994, 49.826752712000037 ], [ -121.433178876999989, 49.824864609000052 ], [ -121.434429677000011, 49.824881515000072 ], [ -121.434368725999903, 49.82676961700011 ], [ -121.434785673999912, 49.826775250000082 ], [ -121.43475955699995, 49.827584435000034 ], [ -121.435176514999981, 49.827590067000123 ], [ -121.435150401999962, 49.828399254000068 ], [ -121.435984330999972, 49.828410511000065 ], [ -121.435958231999933, 49.829219699000092 ], [ -121.434707319999944, 49.829202809000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.995029661696328", "sL_AssetLoss": "311.85", "sL_BldgLoss": "310.3", "sL_StrLoss": "298", "sL_NStrLoss": "12.3", "sL_ContLoss": "1.55", "geom_point": "0101000020E61000001ECA69B2735D5EC0ACC0562AA4E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.460539126999919, 49.803913439000034 ], [ -121.46055623699999, 49.80337397300017 ], [ -121.460139482999935, 49.803368435000039 ], [ -121.46016515499997, 49.802559236 ], [ -121.459748407999896, 49.802553697000079 ], [ -121.459765526999959, 49.802014230000111 ], [ -121.459348785999936, 49.802008689000033 ], [ -121.459374467999936, 49.801199490000094 ], [ -121.458957734999956, 49.801193947000087 ], [ -121.45897486, 49.800654481000088 ], [ -121.458558130000014, 49.800648938000073 ], [ -121.45858382599999, 49.799839738000053 ], [ -121.459833994999968, 49.79985636300011 ], [ -121.459816878, 49.800395831000081 ], [ -121.46023360699999, 49.800401369000042 ], [ -121.460207937999925, 49.801210570000073 ], [ -121.460624673999973, 49.801216107000101 ], [ -121.46060756599995, 49.801755573000065 ], [ -121.46102430399999, 49.801761109000097 ], [ -121.460998649999965, 49.802570309000075 ], [ -121.46141539599995, 49.802575844000039 ], [ -121.461398295999984, 49.80311531100007 ], [ -121.461815046999945, 49.80312084400002 ], [ -121.461789402, 49.803930044000047 ], [ -121.460539126999919, 49.803913439000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18731583", "BldgCostT": "12918333", "sL_LossRatio": "0.997553754698885", "sL_AssetLoss": "5805.632", "sL_BldgLoss": "5791.43", "sL_StrLoss": "5611.16", "sL_NStrLoss": "180.27", "sL_ContLoss": "14.202", "geom_point": "0101000020E610000008B48DA23B5C5EC034952CC476EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.441184302999915, 49.874261012000076 ], [ -121.441187484999929, 49.874162180000035 ], [ -121.439163809999954, 49.874077797000034 ], [ -121.438882908999972, 49.874066081000073 ], [ -121.438979916999955, 49.873094067000068 ], [ -121.438762068999964, 49.873084981000019 ], [ -121.438930832999958, 49.871393942000111 ], [ -121.439120267999911, 49.869495631000049 ], [ -121.439262812999914, 49.869501577000065 ], [ -121.439270691999937, 49.869422619000019 ], [ -121.439171918999961, 49.869418500000045 ], [ -121.439225425999922, 49.868882274000022 ], [ -121.438919044999963, 49.868869495000041 ], [ -121.43899399799993, 49.868118376000069 ], [ -121.438459863999981, 49.868111180000042 ], [ -121.438468560999979, 49.867841453000025 ], [ -121.438134685999927, 49.867836955000016 ], [ -121.438051258999948, 49.867835831000086 ], [ -121.438059146999933, 49.867591241000049 ], [ -121.438068656999974, 49.867296376000141 ], [ -121.437968081999955, 49.867295021000054 ], [ -121.437651358999943, 49.867290751000063 ], [ -121.437686164999889, 49.866211843 ], [ -121.43809235099998, 49.86621731600011 ], [ -121.438103455999922, 49.866217466000137 ], [ -121.438106116999961, 49.86613494100002 ], [ -121.438155646999974, 49.864599101000074 ], [ -121.438362307999967, 49.864601885000113 ], [ -121.438524289999961, 49.864604068000041 ], [ -121.438635328999936, 49.863491303000032 ], [ -121.438700613999956, 49.863494027000108 ], [ -121.43872399599995, 49.863259699000132 ], [ -121.438587538999911, 49.863254005 ], [ -121.43780797, 49.863221477000103 ], [ -121.437942537999973, 49.861873074000115 ], [ -121.437958974999944, 49.861708366000073 ], [ -121.437499927999966, 49.86168921000008 ], [ -121.436755832999935, 49.861658152000061 ], [ -121.436790957999918, 49.861306261000067 ], [ -121.436570247999938, 49.861297048000075 ], [ -121.436577501999949, 49.861224376000045 ], [ -121.435467114999966, 49.861178019000072 ], [ -121.435508636999941, 49.860762174000129 ], [ -121.43523653499993, 49.860750813000081 ], [ -121.435278437999941, 49.860331159000062 ], [ -121.434987453999966, 49.860319008000047 ], [ -121.43502377399993, 49.859955272 ], [ -121.434777869999934, 49.859945003000107 ], [ -121.434819706999932, 49.859526043000123 ], [ -121.434466586999946, 49.859511295000068 ], [ -121.434504926000031, 49.859127382000054 ], [ -121.434258503999956, 49.859117091000094 ], [ -121.434298809999973, 49.858713497000068 ], [ -121.434020822999969, 49.858701885000073 ], [ -121.434056609999942, 49.858343566000023 ], [ -121.43367383399999, 49.858327577000061 ], [ -121.433764415999946, 49.857420657000056 ], [ -121.433943441999929, 49.855628114000027 ], [ -121.43403231799999, 49.854738171000108 ], [ -121.43441710599997, 49.85475424400002 ], [ -121.434801605999922, 49.854770304000034 ], [ -121.434861913999953, 49.854166289000084 ], [ -121.435547974999935, 49.854194941000046 ], [ -121.435561536999899, 49.854059098000079 ], [ -121.435567993999939, 49.85399440599999 ], [ -121.436826373999949, 49.85404694800004 ], [ -121.436843448000019, 49.853517766000095 ], [ -121.436426266999945, 49.853512138000049 ], [ -121.436443675999939, 49.852972683000068 ], [ -121.436026500999972, 49.85296705300005 ], [ -121.436035207999907, 49.852697326000069 ], [ -121.435618034999976, 49.852691696000043 ], [ -121.435644160999914, 49.851882513000071 ], [ -121.436061326999919, 49.851888142000107 ], [ -121.43607873699996, 49.851348686000023 ], [ -121.437330222999918, 49.851365567000038 ], [ -121.437321522999952, 49.85163529500003 ], [ -121.437738686999936, 49.851640919000047 ], [ -121.437729989999937, 49.851910647000125 ], [ -121.438147156999946, 49.851916270000082 ], [ -121.438129766999978, 49.852455725000034 ], [ -121.43854693899999, 49.852461346000055 ], [ -121.438538245999922, 49.852731074000154 ], [ -121.438955420999946, 49.852736694000058 ], [ -121.438946730999945, 49.853006422000121 ], [ -121.439363906999958, 49.853012041000042 ], [ -121.439346529999966, 49.853551496000108 ], [ -121.439763710999927, 49.853557114000068 ], [ -121.439755024999926, 49.853826842000018 ], [ -121.440461804999956, 49.853836354000066 ], [ -121.440586265999968, 49.853935192000023 ], [ -121.440581347999938, 49.854087989000099 ], [ -121.440790517999915, 49.854096714000057 ], [ -121.442308404999977, 49.855155609000093 ], [ -121.444245394999925, 49.857196491000074 ], [ -121.44439111399997, 49.857383349000095 ], [ -121.444362889999965, 49.857666609000077 ], [ -121.444614649999906, 49.857669989000073 ], [ -121.444639012999943, 49.857701227000028 ], [ -121.44462268499997, 49.858209787000156 ], [ -121.445039907999899, 49.858215384000054 ], [ -121.445035302999926, 49.858358866000032 ], [ -121.445155804999899, 49.858363887000039 ], [ -121.44588931, 49.85930439000002 ], [ -121.446228312999963, 49.859587801 ], [ -121.446274047999964, 49.859865335000059 ], [ -121.446402206999906, 49.860643094000125 ], [ -121.446494383999948, 49.860755604000119 ], [ -121.446857200999958, 49.861198500000029 ], [ -121.446799781999971, 49.861701299000067 ], [ -121.446921784999944, 49.862259590000129 ], [ -121.44693644099999, 49.862294453000032 ], [ -121.44743899099997, 49.863490098000085 ], [ -121.447595908999944, 49.865085188000116 ], [ -121.447505909999961, 49.867043500000072 ], [ -121.447440183999987, 49.86731270500006 ], [ -121.44691850699999, 49.86800768800007 ], [ -121.446710487999908, 49.868815210000058 ], [ -121.446463987999934, 49.869376802000055 ], [ -121.44621094399993, 49.869953332000094 ], [ -121.445819033999911, 49.870846176000043 ], [ -121.445705893999971, 49.871103913000077 ], [ -121.445257115999965, 49.871592394000068 ], [ -121.444945900999969, 49.872334295000073 ], [ -121.444911795999971, 49.872415593000021 ], [ -121.44421602599999, 49.873323471000013 ], [ -121.444083282999941, 49.873496672000059 ], [ -121.44406971799998, 49.873514384 ], [ -121.443807197999959, 49.873856911000118 ], [ -121.443504188999924, 49.874239659000104 ], [ -121.443489567999947, 49.874258128000072 ], [ -121.442743315999977, 49.874227029000075 ], [ -121.44243842499999, 49.87421432200005 ], [ -121.442437871999957, 49.874231549000108 ], [ -121.44240963499999, 49.875109211000094 ], [ -121.442407349999897, 49.875180246000077 ], [ -121.44238077599999, 49.875179889000094 ], [ -121.441347751999956, 49.87516600400005 ], [ -121.44115524599999, 49.875163414000035 ], [ -121.441184302999915, 49.874261012000076 ] ], [ [ -121.437243179999953, 49.854064348000101 ], [ -121.437243227999943, 49.854062847000073 ], [ -121.437190056999896, 49.854062131000056 ], [ -121.437243179999953, 49.854064348000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.998614305987595", "sL_AssetLoss": "1016.819", "sL_BldgLoss": "1015.41", "sL_StrLoss": "1004", "sL_NStrLoss": "11.41", "sL_ContLoss": "1.409", "geom_point": "0101000020E610000065AFD2382F605EC087F8C9498FFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.50107461499999, 49.991185091000055 ], [ -121.501124849999968, 49.990676158000028 ], [ -121.499374889999956, 49.99060434700003 ], [ -121.499411520999956, 49.990233378000084 ], [ -121.499064602999979, 49.990219139000054 ], [ -121.499099597999958, 49.989864759000099 ], [ -121.499096728000026, 49.989864641000054 ], [ -121.499402780999986, 49.986765062000103 ], [ -121.499801019999921, 49.986784409000052 ], [ -121.500669078999962, 49.988163193000112 ], [ -121.50276848499999, 49.987707231000044 ], [ -121.503401605999926, 49.987556737000055 ], [ -121.502049768999939, 49.985949907000069 ], [ -121.50540477299991, 49.986087489000077 ], [ -121.505290787999925, 49.987243500000041 ], [ -121.505295551999922, 49.987243695000117 ], [ -121.505245367999947, 49.987752633000056 ], [ -121.50699522599993, 49.987824350000082 ], [ -121.506809251999982, 49.989711022000073 ], [ -121.503497212999932, 49.990078342000103 ], [ -121.503462116999913, 49.991283018000061 ], [ -121.503310403999961, 49.991276797000054 ], [ -121.50107461499999, 49.991185091000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6829500", "BldgCostT": "4710000", "sL_LossRatio": "0.996410322826584", "sL_AssetLoss": "2455.374", "sL_BldgLoss": "2446.56", "sL_StrLoss": "2363.46", "sL_NStrLoss": "83.1", "sL_ContLoss": "8.814", "geom_point": "0101000020E61000005C721E46EF5E5EC0935B726062FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.482094956999958, 49.968961430000029 ], [ -121.482377320999902, 49.966111193000138 ], [ -121.481492621999962, 49.96607472000003 ], [ -121.48151293299999, 49.965869720000022 ], [ -121.48109552199999, 49.965852510000026 ], [ -121.481136866999989, 49.965435249000116 ], [ -121.480233320999957, 49.965397988000099 ], [ -121.480487297999957, 49.962835151000021 ], [ -121.480498314000016, 49.962723980000078 ], [ -121.480386946999928, 49.962719387000035 ], [ -121.477064585, 49.962582309000034 ], [ -121.477126969999958, 49.961953225000094 ], [ -121.476823618999973, 49.961940704000043 ], [ -121.477179523999965, 49.958351666000056 ], [ -121.478189065999985, 49.958393332000043 ], [ -121.482742224, 49.958581138000092 ], [ -121.482679920999914, 49.959210228000067 ], [ -121.482983255999955, 49.959222733000018 ], [ -121.48293843499999, 49.95967532100012 ], [ -121.482482630999954, 49.959670365000065 ], [ -121.482317372999916, 49.963366229000066 ], [ -121.482350337999918, 49.963767263000136 ], [ -121.482458600999976, 49.964162586000022 ], [ -121.482511604999956, 49.964282714 ], [ -121.482466809999934, 49.964862300000085 ], [ -121.483341715999984, 49.96480490000004 ], [ -121.484430463, 49.964818112000096 ], [ -121.486220176999922, 49.964839820000073 ], [ -121.487616795999898, 49.964856723000096 ], [ -121.487623457999973, 49.964533658000036 ], [ -121.487684128999916, 49.962219146000074 ], [ -121.489115428000034, 49.962278074000089 ], [ -121.489109916999936, 49.962333799000078 ], [ -121.490303892, 49.962382942000083 ], [ -121.489948986999948, 49.965972003000054 ], [ -121.48841259299995, 49.96590876500008 ], [ -121.488220129999974, 49.967854188000075 ], [ -121.488124470999963, 49.968821039000055 ], [ -121.487697286999904, 49.968803453000049 ], [ -121.487658973999942, 49.969190650000066 ], [ -121.482094956999958, 49.968961430000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.994160964881068", "sL_AssetLoss": "295.083", "sL_BldgLoss": "293.36", "sL_StrLoss": "271.16", "sL_NStrLoss": "22.2", "sL_ContLoss": "1.723", "geom_point": "0101000020E61000005930968E9E5C5EC0BAFB56CAB6F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.4462977969999, 49.897069168000044 ], [ -121.446305796000019, 49.896820058000053 ], [ -121.44625940499995, 49.896819436000044 ], [ -121.445888240000031, 49.896814461000112 ], [ -121.445914235999936, 49.896005280000139 ], [ -121.446269906999959, 49.896010047000047 ], [ -121.446331783999938, 49.896010877000073 ], [ -121.446340183999951, 49.895749304000041 ], [ -121.446375094999937, 49.894662240000095 ], [ -121.446759423999978, 49.894667390000102 ], [ -121.446792631999969, 49.894667834000117 ], [ -121.446796418999924, 49.894549846000075 ], [ -121.446827269, 49.893588925000088 ], [ -121.446969579999973, 49.893590832000037 ], [ -121.448079851999978, 49.893605701000126 ], [ -121.448019283999926, 49.895493793000064 ], [ -121.448436826999966, 49.895499381000086 ], [ -121.448410874999951, 49.896308564000137 ], [ -121.447993324999942, 49.896302975000054 ], [ -121.447932747999971, 49.898191065000077 ], [ -121.447515180999943, 49.898185475000012 ], [ -121.447497867999942, 49.898724929000053 ], [ -121.446247505999935, 49.898708179000046 ], [ -121.446245152999907, 49.898708147000043 ], [ -121.4462977969999, 49.897069168000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997145998549606", "sL_AssetLoss": "256.482", "sL_BldgLoss": "255.75", "sL_StrLoss": "249", "sL_NStrLoss": "6.75", "sL_ContLoss": "0.732", "geom_point": "0101000020E6100000E7CFAF94425A5EC04B94BDA59CDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.409488353999947, 49.70769697 ], [ -121.409505970999987, 49.707157509000133 ], [ -121.411036096999979, 49.707178514000127 ], [ -121.411169652999959, 49.707180347000083 ], [ -121.411166852999912, 49.707266174000061 ], [ -121.411152052999924, 49.707719809000096 ], [ -121.411567977999979, 49.707725516000089 ], [ -121.41154158599997, 49.708534711000105 ], [ -121.409045995000014, 49.70850045100012 ], [ -121.409072428999977, 49.707691257000107 ], [ -121.409488353999947, 49.70769697 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99719824113988", "sL_AssetLoss": "254.483", "sL_BldgLoss": "253.77", "sL_StrLoss": "248", "sL_NStrLoss": "5.77", "sL_ContLoss": "0.713", "geom_point": "0101000020E6100000448DBE59F55C5EC0EB41F79B3FE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.452243054999954, 49.789501005000069 ], [ -121.453492953999913, 49.789517695000072 ], [ -121.453441412999979, 49.791136094000073 ], [ -121.45302476499999, 49.791130532000075 ], [ -121.453007578999959, 49.791669997000064 ], [ -121.452590925999942, 49.791664434000111 ], [ -121.45256513799994, 49.792473631000085 ], [ -121.451315162999947, 49.792456931000082 ], [ -121.451349575000037, 49.791378000000115 ], [ -121.451766221999961, 49.791383568000114 ], [ -121.451783423999984, 49.79084410300004 ], [ -121.452200069, 49.79084967000005 ], [ -121.452243054999954, 49.789501005000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.957356895889358", "sL_AssetLoss": "26.03", "sL_BldgLoss": "24.92", "sL_StrLoss": "2.62", "sL_NStrLoss": "22.3", "sL_ContLoss": "1.11", "geom_point": "0101000020E610000063810AA2895D5EC08A1C648A20E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.460947332999964, 49.804188709000094 ], [ -121.462197614999951, 49.804205309000146 ], [ -121.462103598999988, 49.80717237699999 ], [ -121.460853238999974, 49.807155775000069 ], [ -121.460947332999964, 49.804188709000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802833", "BldgCostT": "1243333", "sL_LossRatio": "0.994561804888963", "sL_AssetLoss": "554.228", "sL_BldgLoss": "551.214", "sL_StrLoss": "520.364", "sL_NStrLoss": "30.85", "sL_ContLoss": "3.014", "geom_point": "0101000020E6100000300F57D60F5A5EC063CED83C33EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.404621358999975, 49.866839906000024 ], [ -121.410172569999943, 49.867073086000083 ], [ -121.409812118999966, 49.870662353000078 ], [ -121.404260474999944, 49.870429155000103 ], [ -121.404621358999975, 49.866839906000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.997855421027513", "sL_AssetLoss": "657.938", "sL_BldgLoss": "656.527", "sL_StrLoss": "640.337", "sL_NStrLoss": "16.19", "sL_ContLoss": "1.411", "geom_point": "0101000020E6100000ACD07AD7E45F5EC097D03493B5FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.499484496999983, 49.986266252000057 ], [ -121.498688443, 49.985282820000066 ], [ -121.498608642999926, 49.985207242000101 ], [ -121.498701892999932, 49.985208449000012 ], [ -121.498710289999963, 49.984938719000098 ], [ -121.498319779999989, 49.984933664000089 ], [ -121.498057747999923, 49.984685493000043 ], [ -121.499385344999936, 49.984697786000048 ], [ -121.494767342999964, 49.98022299100009 ], [ -121.494375380999912, 49.979857040000105 ], [ -121.494446318999962, 49.979864632000051 ], [ -121.495712643999951, 49.979632632000047 ], [ -121.497117553999956, 49.97936739900004 ], [ -121.497439958999962, 49.979249486000064 ], [ -121.499089008999988, 49.978655998000107 ], [ -121.498954297999944, 49.976724394000051 ], [ -121.499388688999915, 49.97674223000007 ], [ -121.499034384999931, 49.980331251000095 ], [ -121.498097061999914, 49.980292763000122 ], [ -121.498018092999956, 49.980289520000042 ], [ -121.498016443999987, 49.980342485000115 ], [ -121.498129299999917, 49.980343947000122 ], [ -121.498434730999946, 49.980347901000059 ], [ -121.498420462999917, 49.98080620700005 ], [ -121.498409538999965, 49.981157090000082 ], [ -121.49864338499999, 49.98116011600009 ], [ -121.498827835, 49.981162504000125 ], [ -121.498819220999934, 49.981439268000088 ], [ -121.498802647999952, 49.981971693000048 ], [ -121.499157489999973, 49.981976285000087 ], [ -121.50005755499997, 49.981987927000084 ], [ -121.500040777999942, 49.982527387000054 ], [ -121.500459085, 49.982532796000029 ], [ -121.500425538999977, 49.983611715000102 ], [ -121.500185754999933, 49.98360861400004 ], [ -121.500007221999923, 49.983606307000116 ], [ -121.499998832999964, 49.983876036000076 ], [ -121.500357139999963, 49.983880669000051 ], [ -121.500417152999944, 49.983881444000076 ], [ -121.500414352999897, 49.983971487000048 ], [ -121.50040037799999, 49.984420905000022 ], [ -121.500699915999974, 49.984424776000012 ], [ -121.500818699999911, 49.984426311000057 ], [ -121.500813160999883, 49.984604532000041 ], [ -121.500801931999931, 49.984965771000056 ], [ -121.501042700999974, 49.984968882000032 ], [ -121.501220259999982, 49.984971176000059 ], [ -121.50121198, 49.985237576000046 ], [ -121.501195109999927, 49.985780367000089 ], [ -121.501556893999947, 49.98578504000006 ], [ -121.501613446999954, 49.98578577100006 ], [ -121.501610808999914, 49.985870615000046 ], [ -121.501609873999911, 49.98590074800007 ], [ -121.499484496999983, 49.986266252000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "0.997353497164461", "sL_AssetLoss": "661.25", "sL_BldgLoss": "659.5", "sL_StrLoss": "635.99", "sL_NStrLoss": "23.51", "sL_ContLoss": "1.75", "geom_point": "0101000020E6100000A316B5C16A5C5EC0BDDA7A1BD5F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.441608967999912, 49.8917273140001 ], [ -121.441654410999988, 49.891271896000042 ], [ -121.441318687999924, 49.891257907000032 ], [ -121.441347599999929, 49.890968175000111 ], [ -121.44133400699998, 49.890967609 ], [ -121.441353726999978, 49.890769995000063 ], [ -121.44100590799998, 49.890755500000125 ], [ -121.441045913999957, 49.890354615000085 ], [ -121.44087993, 49.890347698000014 ], [ -121.441238098999975, 49.886758427000068 ], [ -121.442867836999952, 49.88682633500018 ], [ -121.442872891999954, 49.886669194000014 ], [ -121.442895050999965, 49.885980558000043 ], [ -121.44414743399993, 49.885997373000095 ], [ -121.44413009099992, 49.886536827000057 ], [ -121.44454755699995, 49.886542429 ], [ -121.444536197000019, 49.886895828000043 ], [ -121.44584961599999, 49.886950517000102 ], [ -121.445990989999956, 49.88734278900008 ], [ -121.446259690999952, 49.887678909000044 ], [ -121.447376423000023, 49.889820923000102 ], [ -121.447163385999914, 49.891958611000057 ], [ -121.446430801999924, 49.891928121000085 ], [ -121.441608967999912, 49.8917273140001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.992392267208587", "sL_AssetLoss": "383.82", "sL_BldgLoss": "380.9", "sL_StrLoss": "357", "sL_NStrLoss": "23.9", "sL_ContLoss": "2.92", "geom_point": "0101000020E6100000A4196A988A5B5EC0467CE549EBEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.430207579999959, 49.837921553000122 ], [ -121.430411591999956, 49.83587947300002 ], [ -121.429159719999959, 49.835827106000103 ], [ -121.429284403999986, 49.834579318000081 ], [ -121.428138766999922, 49.83453138300009 ], [ -121.428162686999954, 49.834292051000098 ], [ -121.431541396999961, 49.834261598000062 ], [ -121.431626006999963, 49.834724797000028 ], [ -121.431444606999918, 49.835635395000054 ], [ -121.43029460599999, 49.837760724000105 ], [ -121.430207579999959, 49.837921553000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995128967929648", "sL_AssetLoss": "305.89", "sL_BldgLoss": "304.4", "sL_StrLoss": "292", "sL_NStrLoss": "12.4", "sL_ContLoss": "1.49", "geom_point": "0101000020E6100000DA0DB297335B5EC02347BE3BC7DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.425762296999935, 49.73913101100004 ], [ -121.425855379999959, 49.7390690370001 ], [ -121.42561956899999, 49.74143232100009 ], [ -121.423776575999923, 49.741354973000035 ], [ -121.423894791999956, 49.741093616000079 ], [ -121.424432416999949, 49.740777406000092 ], [ -121.424258914999911, 49.740568003000163 ], [ -121.424263088999979, 49.740378593000088 ], [ -121.424562204999958, 49.739761888000061 ], [ -121.425057900999917, 49.739408691000015 ], [ -121.425521696999937, 49.739280504000071 ], [ -121.425762296999935, 49.73913101100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14601583", "BldgCostT": "9598333", "sL_LossRatio": "0.991103670978089", "sL_AssetLoss": "5131.33", "sL_BldgLoss": "5085.68", "sL_StrLoss": "4653.58", "sL_NStrLoss": "432.1", "sL_ContLoss": "45.65", "geom_point": "0101000020E6100000B74B139D025D5EC08BD5EE701EF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.4531912899999, 49.890510491000086 ], [ -121.453216947, 49.889707841000067 ], [ -121.451678572, 49.889643890000031 ], [ -121.451877397999951, 49.887646728000099 ], [ -121.44883996799993, 49.887520399000032 ], [ -121.448203339999949, 49.886450113000073 ], [ -121.44845736, 49.883900290000049 ], [ -121.449225306999949, 49.88393224400005 ], [ -121.449226125999985, 49.883906674000123 ], [ -121.448391236999981, 49.883895503000097 ], [ -121.44840633699998, 49.88342447900002 ], [ -121.446849301000029, 49.883359674000125 ], [ -121.446926516999966, 49.882584780000101 ], [ -121.445718753, 49.882534498000069 ], [ -121.445608211999968, 49.882390793000077 ], [ -121.445201875999956, 49.881664477000065 ], [ -121.445080063999981, 49.881446731 ], [ -121.444883199999964, 49.881094808000121 ], [ -121.44452641399999, 49.880082107000085 ], [ -121.444388591999981, 49.879469239000066 ], [ -121.44437601099996, 49.879413299000049 ], [ -121.44442951399999, 49.878876581000036 ], [ -121.444465398999967, 49.878878076000056 ], [ -121.444471667999906, 49.878815198000055 ], [ -121.447047852999944, 49.879033545 ], [ -121.449906939999948, 49.879190136000055 ], [ -121.450500771999955, 49.879222632000058 ], [ -121.452384296999952, 49.879325745000109 ], [ -121.454036258999977, 49.879459777000051 ], [ -121.457183151999956, 49.879714974000116 ], [ -121.458460065999944, 49.879736935000025 ], [ -121.458454578999948, 49.87979215200005 ], [ -121.458492021, 49.879793706000015 ], [ -121.459702876999984, 49.87984397900005 ], [ -121.459673875999897, 49.880135866000103 ], [ -121.459861989999965, 49.880143675000085 ], [ -121.459808862999935, 49.88067837800002 ], [ -121.46027111099994, 49.880697565000069 ], [ -121.46021507899998, 49.881261553000108 ], [ -121.460559738999976, 49.881275859000013 ], [ -121.460512593999979, 49.881750421000049 ], [ -121.460942154999913, 49.881768249000054 ], [ -121.460622215999962, 49.884988782000121 ], [ -121.460585571999928, 49.885357610000113 ], [ -121.45985154499995, 49.885327145000105 ], [ -121.459821953999949, 49.885624927000094 ], [ -121.45970377399999, 49.88562002200004 ], [ -121.457903749999943, 49.88554529200011 ], [ -121.45755905399993, 49.889012372000074 ], [ -121.457319522, 49.889002425000058 ], [ -121.457294441999949, 49.889254643000079 ], [ -121.457232789999964, 49.889874678000083 ], [ -121.456007490999951, 49.889823789000019 ], [ -121.454969606999981, 49.889780673000075 ], [ -121.454885427999926, 49.889777176000145 ], [ -121.454884195999952, 49.889815727000112 ], [ -121.454855066999954, 49.890727924000061 ], [ -121.454437562999928, 49.890722359000094 ], [ -121.454428947999943, 49.890992087000072 ], [ -121.453176427999963, 49.890975382000086 ], [ -121.4531912899999, 49.890510491000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6732833", "BldgCostT": "4643333", "sL_LossRatio": "0.996858602670295", "sL_AssetLoss": "2322.215", "sL_BldgLoss": "2314.92", "sL_StrLoss": "2244.22", "sL_NStrLoss": "70.7", "sL_ContLoss": "7.295", "geom_point": "0101000020E6100000EC768BFAC35C5EC0E4809F6970F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.45071631899998, 49.92240329000002 ], [ -121.450734774999916, 49.922218085000047 ], [ -121.450349617999947, 49.922202080000091 ], [ -121.450370751999984, 49.921990024000152 ], [ -121.450426228, 49.921433377000071 ], [ -121.450387869999972, 49.921431783000038 ], [ -121.450429863999943, 49.9210104100001 ], [ -121.450294394999929, 49.921004781000065 ], [ -121.450486763999962, 49.919074468000098 ], [ -121.450493863999938, 49.919003204000056 ], [ -121.450441283999936, 49.919002502000083 ], [ -121.449772470999989, 49.918993562000068 ], [ -121.449795956999978, 49.918261230000027 ], [ -121.44616103, 49.918110077000065 ], [ -121.446176125999955, 49.917958734000067 ], [ -121.445268007999957, 49.917920953000113 ], [ -121.445330649999974, 49.917293055000073 ], [ -121.443032172999949, 49.91719739500013 ], [ -121.443032939, 49.917189718000138 ], [ -121.443390382999922, 49.913608248000052 ], [ -121.443818482, 49.913626069000031 ], [ -121.44385108299997, 49.913299358000096 ], [ -121.444355015999946, 49.913320333000094 ], [ -121.444384074999903, 49.913029070000086 ], [ -121.444842117999912, 49.913048133000117 ], [ -121.444855460999946, 49.912914380000061 ], [ -121.445205383999948, 49.91292894300009 ], [ -121.445370096999966, 49.912935797000138 ], [ -121.445376767999946, 49.912728333000096 ], [ -121.445465557999952, 49.912729523000081 ], [ -121.445821538999922, 49.912734296000032 ], [ -121.450074815999969, 49.914402010000117 ], [ -121.452397871999921, 49.915312736 ], [ -121.452391217999946, 49.91552059600005 ], [ -121.452000170999924, 49.915515376000052 ], [ -121.451842462999963, 49.917098559000131 ], [ -121.451878429999979, 49.917093962000074 ], [ -121.452030329999971, 49.917070363000093 ], [ -121.45206591, 49.917143269000135 ], [ -121.452144429999976, 49.917304162000043 ], [ -121.452202423999935, 49.917406971000048 ], [ -121.452330771999939, 49.917408684000129 ], [ -121.452328319999978, 49.917485282000023 ], [ -121.4537843049999, 49.917545760000046 ], [ -121.454393381999978, 49.918451792000027 ], [ -121.454958203, 49.920447099000071 ], [ -121.455381784999986, 49.921153500000059 ], [ -121.45556480399992, 49.921471093000015 ], [ -121.456228805999913, 49.921677606000031 ], [ -121.456339801999917, 49.921978133000017 ], [ -121.45627450899994, 49.922634115000079 ], [ -121.452576925999963, 49.922480590000099 ], [ -121.45071631899998, 49.92240329000002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3557333", "BldgCostT": "2453333", "sL_LossRatio": "0.997448099715975", "sL_AssetLoss": "901.681", "sL_BldgLoss": "899.38", "sL_StrLoss": "867.31", "sL_NStrLoss": "32.07", "sL_ContLoss": "2.301", "geom_point": "0101000020E6100000BB8DFE7ECE5D5EC0D598AD488EF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.464155953, 49.929518535000057 ], [ -121.464465620999988, 49.926402203000052 ], [ -121.461385558999979, 49.926274569000029 ], [ -121.461742399999963, 49.922685407000117 ], [ -121.464556427999966, 49.922802021000095 ], [ -121.467300681999973, 49.92291567300002 ], [ -121.467033691999944, 49.925604442000164 ], [ -121.466991229999934, 49.926032029000076 ], [ -121.467557357999937, 49.926055466000079 ], [ -121.470071290999968, 49.926159506000083 ], [ -121.469773953999947, 49.929155486000084 ], [ -121.469715077999965, 49.929748678000102 ], [ -121.464155953, 49.929518535000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4932417", "BldgCostT": "3401667", "sL_LossRatio": "0.996724325654496", "sL_AssetLoss": "1723.004", "sL_BldgLoss": "1717.36", "sL_StrLoss": "1670.15", "sL_NStrLoss": "47.21", "sL_ContLoss": "5.644", "geom_point": "0101000020E610000096892A15B75B5EC0567A5499B5E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.43037152, 49.816655886000063 ], [ -121.430448567999989, 49.815884283000059 ], [ -121.433622139999898, 49.81601703000009 ], [ -121.434786716999966, 49.816065720000033 ], [ -121.434834135999921, 49.815590363000112 ], [ -121.43492545, 49.814674986000085 ], [ -121.436178524999917, 49.814727362000092 ], [ -121.436192301999981, 49.81458921600008 ], [ -121.441737343999989, 49.814820812000086 ], [ -121.44167265499999, 49.815470264000098 ], [ -121.441505462999913, 49.817148732000135 ], [ -121.441302599999972, 49.817164802000029 ], [ -121.440179617999917, 49.817078000000109 ], [ -121.439008285999961, 49.816747493000086 ], [ -121.437758084, 49.816749005000148 ], [ -121.437011515, 49.817026696000028 ], [ -121.4353398, 49.817147785000067 ], [ -121.434465081999988, 49.817586403000035 ], [ -121.434407684999925, 49.81801649500003 ], [ -121.433682300999948, 49.818546303000105 ], [ -121.433564190999945, 49.818761390000063 ], [ -121.432589708999927, 49.819215685000088 ], [ -121.431896206999951, 49.819601689000102 ], [ -121.431695012999981, 49.819796797000073 ], [ -121.430888010000018, 49.821575607000085 ], [ -121.43067350199999, 49.822687714000068 ], [ -121.429241965999978, 49.822653599000063 ], [ -121.426864912, 49.82259750800003 ], [ -121.42716229399997, 49.819621915000035 ], [ -121.42745643399999, 49.819634231000073 ], [ -121.427523115000014, 49.818966922000072 ], [ -121.42800311799999, 49.818987017000069 ], [ -121.428097342999962, 49.818043934000116 ], [ -121.429004991999975, 49.818081927000101 ], [ -121.429081142999962, 49.817319555000054 ], [ -121.429666477999945, 49.817344052000109 ], [ -121.429737855999988, 49.816629369000033 ], [ -121.43037152, 49.816655886000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.994193605955537", "sL_AssetLoss": "313.792", "sL_BldgLoss": "311.97", "sL_StrLoss": "288.17", "sL_NStrLoss": "23.8", "sL_ContLoss": "1.822", "geom_point": "0101000020E6100000A1B2ABDAFF5E5EC0223781F125F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.483816971999929, 49.949017833000028 ], [ -121.483442466999975, 49.942205520000066 ], [ -121.484578298999963, 49.942252350000096 ], [ -121.484305664999937, 49.945007256000039 ], [ -121.485050160999933, 49.945037945000152 ], [ -121.484939574999956, 49.946155478000051 ], [ -121.485511118999952, 49.946179035000064 ], [ -121.485155962999926, 49.949768159000072 ], [ -121.485150284999946, 49.949767926000042 ], [ -121.485123976999915, 49.950033759000064 ], [ -121.483832025999973, 49.949980507000049 ], [ -121.483816971999929, 49.949017833000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4221917", "BldgCostT": "2911667", "sL_LossRatio": "0.996035929464981", "sL_AssetLoss": "1305.224", "sL_BldgLoss": "1300.05", "sL_StrLoss": "1240.46", "sL_NStrLoss": "59.59", "sL_ContLoss": "5.174", "geom_point": "0101000020E6100000851A11CEDF5A5EC065093A73F2DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.422664069999939, 49.737703263000142 ], [ -121.422664611999949, 49.737686554000049 ], [ -121.42267743099994, 49.737291158000076 ], [ -121.423046458999949, 49.737296182000094 ], [ -121.423093611, 49.737296825000058 ], [ -121.423095191999963, 49.737248054000084 ], [ -121.423102354999955, 49.737027094000041 ], [ -121.42349381899993, 49.737032422 ], [ -121.42435088799995, 49.737044086000019 ], [ -121.424327277999978, 49.737773090000054 ], [ -121.425834368999986, 49.737836340000072 ], [ -121.425528586999945, 49.738219501000138 ], [ -121.424164993999938, 49.739145208000089 ], [ -121.423120715999985, 49.740543806000076 ], [ -121.42301428699993, 49.741322971000081 ], [ -121.422276249999939, 49.741291982000128 ], [ -121.42204893899995, 49.743568173000078 ], [ -121.421831411999989, 49.743907798000087 ], [ -121.421819328999902, 49.744137375000058 ], [ -121.420950501000021, 49.744100887000052 ], [ -121.420793806999939, 49.74566942400002 ], [ -121.416614888999973, 49.745493826000043 ], [ -121.415257225999937, 49.745436743000042 ], [ -121.415616268999912, 49.741846834000128 ], [ -121.416657081999986, 49.741890597000122 ], [ -121.416813904999941, 49.740322058000054 ], [ -121.420157137000018, 49.740462564000062 ], [ -121.420442105999967, 49.737609937000073 ], [ -121.422655463999916, 49.737702901000077 ], [ -121.422664069999939, 49.737703263000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463083", "BldgCostT": "2388333", "sL_LossRatio": "0.99680271341499", "sL_AssetLoss": "1285.465", "sL_BldgLoss": "1281.355", "sL_StrLoss": "1240.645", "sL_NStrLoss": "40.71", "sL_ContLoss": "4.11", "geom_point": "0101000020E61000000D1887A7D55A5EC0211AE5B2B4DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.41770004599995, 49.712331204000137 ], [ -121.419276462999946, 49.712397499000048 ], [ -121.420011010999986, 49.71319189800009 ], [ -121.420619396999967, 49.713677508000046 ], [ -121.421568205999975, 49.714822583000071 ], [ -121.421843800999937, 49.715312494000017 ], [ -121.422119711999954, 49.716225398000041 ], [ -121.421562721999976, 49.716666899000124 ], [ -121.42147141199996, 49.716936099000051 ], [ -121.421843709999962, 49.717894586000106 ], [ -121.422127638999939, 49.718272773000095 ], [ -121.421995388999932, 49.719597766000099 ], [ -121.42086388599995, 49.719550220000059 ], [ -121.416461944, 49.71936513700004 ], [ -121.41682068799993, 49.715775092000051 ], [ -121.417353759999969, 49.715797516000059 ], [ -121.417680169, 49.712530174000058 ], [ -121.41770004599995, 49.712331204000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.996626615087588", "sL_AssetLoss": "707.005", "sL_BldgLoss": "704.62", "sL_StrLoss": "662.11", "sL_NStrLoss": "42.51", "sL_ContLoss": "2.385", "geom_point": "0101000020E6100000E33E726B525C5EC058D925470DF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.438726375999963, 49.910072094000043 ], [ -121.438778665999934, 49.909548614000123 ], [ -121.438403699999938, 49.909532987000077 ], [ -121.438457205999953, 49.908997363000083 ], [ -121.438088122999915, 49.908981980000142 ], [ -121.438446657, 49.90539280900007 ], [ -121.438495134999954, 49.905394829000045 ], [ -121.438549483999907, 49.904850710000048 ], [ -121.439546343999922, 49.904892257000029 ], [ -121.441702784999919, 49.904982102000091 ], [ -121.441732659999943, 49.904682785000034 ], [ -121.443077221999928, 49.904738783000106 ], [ -121.443126724999956, 49.904740845000049 ], [ -121.443130092999965, 49.904636219000125 ], [ -121.44314852799999, 49.904063466000068 ], [ -121.443423422999928, 49.904067157000028 ], [ -121.443566145999966, 49.904069073000109 ], [ -121.443575714999952, 49.903771704000121 ], [ -121.443592187999926, 49.903259894000044 ], [ -121.443837826999953, 49.9032631910001 ], [ -121.444009797999954, 49.9032655 ], [ -121.444021324999937, 49.90290718600005 ], [ -121.444035828999958, 49.902456320000056 ], [ -121.444252633999938, 49.902459230000083 ], [ -121.4452886399999, 49.9024731270001 ], [ -121.445212947999948, 49.90482769700003 ], [ -121.447288651999912, 49.904914071000114 ], [ -121.447030578999914, 49.907502684000086 ], [ -121.446315816999984, 49.907804687000095 ], [ -121.444865770999911, 49.908417343000046 ], [ -121.444472814000022, 49.908400987000029 ], [ -121.4444538199999, 49.908591389000051 ], [ -121.442593359999933, 49.909377381000098 ], [ -121.439453015000012, 49.909408066 ], [ -121.439452891999949, 49.909417104000042 ], [ -121.43944464199997, 49.910102026000118 ], [ -121.438726375999963, 49.910072094000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998051505974599", "sL_AssetLoss": "212.985", "sL_BldgLoss": "212.57", "sL_StrLoss": "209", "sL_NStrLoss": "3.57", "sL_ContLoss": "0.415", "geom_point": "0101000020E61000008B6F498A5F625EC03E50FA84E4054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.535869170999902, 50.047042202000071 ], [ -121.536163092999971, 50.04404489200008 ], [ -121.536604091999934, 50.044042699000101 ], [ -121.536693129999961, 50.044873042000042 ], [ -121.537552252999987, 50.044894534000079 ], [ -121.537824163999971, 50.046575571000048 ], [ -121.539106256999958, 50.046609412000045 ], [ -121.539391308999924, 50.047110669000084 ], [ -121.539399827999972, 50.047185690000035 ], [ -121.535869170999902, 50.047042202000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996974164015828", "sL_AssetLoss": "257.78", "sL_BldgLoss": "257", "sL_StrLoss": "250", "sL_NStrLoss": "7", "sL_ContLoss": "0.78", "geom_point": "0101000020E6100000FEFB0062DA5C5EC0FE06710E6CEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.450682608999912, 49.864497375000084 ], [ -121.450725749999933, 49.863148728000077 ], [ -121.450308483999919, 49.86314315000007 ], [ -121.450351632999912, 49.861794504000073 ], [ -121.449934379999945, 49.861788924000074 ], [ -121.449960275999985, 49.860979737000044 ], [ -121.451091585999933, 49.860994861000094 ], [ -121.451129693999974, 49.862265692000022 ], [ -121.451684969999917, 49.864268494000044 ], [ -121.451634656999957, 49.864510095000085 ], [ -121.450682608999912, 49.864497375000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4956584", "BldgCostT": "3418334", "sL_LossRatio": "0.940430401474936", "sL_AssetLoss": "6291.8", "sL_BldgLoss": "5917", "sL_StrLoss": "4013", "sL_NStrLoss": "1904", "sL_ContLoss": "374.8", "geom_point": "0101000020E6100000494C71D1A07E5EC08AAC1486F1854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.979818579999957, 49.0451355020001 ], [ -121.981412817999967, 49.04519521400006 ], [ -121.981453295999984, 49.045306004000047 ], [ -121.981421614999988, 49.045522499000128 ], [ -121.980863726999971, 49.046026261000094 ], [ -121.980178698999936, 49.04664479000008 ], [ -121.979459978999941, 49.047664501000042 ], [ -121.979115, 49.047885298000068 ], [ -121.978192887, 49.048111696000021 ], [ -121.976587627999919, 49.048152797000057 ], [ -121.97666347699996, 49.047274344000058 ], [ -121.976857722999938, 49.045024540000043 ], [ -121.979818579999957, 49.0451355020001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30563667", "BldgCostT": "20606667", "sL_LossRatio": "0.862618990099236", "sL_AssetLoss": "96447.1", "sL_BldgLoss": "83197.1", "sL_StrLoss": "48037.1", "sL_NStrLoss": "35160", "sL_ContLoss": "13250", "geom_point": "0101000020E61000001FC662A345805EC03C59413E2E844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.001159807999912, 49.035647007000094 ], [ -122.000854586999949, 49.035158503000083 ], [ -122.000354583999979, 49.034839498000046 ], [ -121.999743482999975, 49.034644395000107 ], [ -121.999346488999933, 49.034614497000057 ], [ -121.999173153999919, 49.034647918000111 ], [ -121.999207102999932, 49.034252382 ], [ -121.999305364999941, 49.033107542000081 ], [ -122.001158822999969, 49.033176643000083 ], [ -122.004497021999939, 49.03330101700007 ], [ -122.004515717999979, 49.032364119000128 ], [ -122.002335101999975, 49.032282885000022 ], [ -122.001136, 49.032238195000083 ], [ -122.001444423999956, 49.028642680000068 ], [ -122.002885135999961, 49.028696372000098 ], [ -122.002895407999944, 49.028576563000072 ], [ -122.002905689999949, 49.028456643000048 ], [ -122.001810361999972, 49.02841582400012 ], [ -122.001830166999966, 49.028184893000052 ], [ -122.00061493499993, 49.028139593000027 ], [ -122.000793391999977, 49.026059339000057 ], [ -122.001069397999956, 49.026560609000114 ], [ -122.001243790999951, 49.026722900000081 ], [ -122.001420596999978, 49.026761404000027 ], [ -122.002862259000011, 49.027099074000056 ], [ -122.003135114999978, 49.027162995000026 ], [ -122.004241682999961, 49.027909296000111 ], [ -122.005210604999931, 49.028736811000066 ], [ -122.005181785999966, 49.028872107000076 ], [ -122.00490611399999, 49.028959001000047 ], [ -122.004181306999925, 49.028943292000129 ], [ -122.004108301999977, 49.029159785000012 ], [ -122.004359091999916, 49.029575601000097 ], [ -122.004415602999984, 49.030196601000121 ], [ -122.004525510999954, 49.030662235000115 ], [ -122.004540978999927, 49.030727794000072 ], [ -122.004780005999962, 49.0311708 ], [ -122.004788848999937, 49.031307490000124 ], [ -122.004809870999935, 49.031305109000066 ], [ -122.005044986999977, 49.031278415000031 ], [ -122.00604451099997, 49.031252493000103 ], [ -122.006666584999948, 49.031304491000107 ], [ -122.007573811999976, 49.031486284000131 ], [ -122.007772103999983, 49.031525999000152 ], [ -122.008535915999957, 49.0315284570001 ], [ -122.009033879999947, 49.031530033000131 ], [ -122.009023840999944, 49.031986178000068 ], [ -122.008992391999953, 49.033419342000094 ], [ -122.008916554999956, 49.035852676000026 ], [ -122.008765597999954, 49.035766707000114 ], [ -122.008274710999956, 49.035635695000067 ], [ -122.007945777999922, 49.035669797000089 ], [ -122.007626200999979, 49.03597180900006 ], [ -122.00691969699993, 49.036397611000048 ], [ -122.006505901999958, 49.036555699000083 ], [ -122.005860188999975, 49.036658191000065 ], [ -122.004855163999963, 49.036632793000116 ], [ -122.004847906999927, 49.03663261000009 ], [ -122.003880491999951, 49.036470208 ], [ -122.00313120899996, 49.03626660200004 ], [ -122.002449284999926, 49.036215301000091 ], [ -122.001914483999926, 49.03603643400006 ], [ -122.001457185999982, 49.035883503000058 ], [ -122.001159807999912, 49.035647007000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10055750", "BldgCostT": "6935000", "sL_LossRatio": "0.884887608069164", "sL_AssetLoss": "26025", "sL_BldgLoss": "23029.2", "sL_StrLoss": "13807.2", "sL_NStrLoss": "9222", "sL_ContLoss": "2995.8", "geom_point": "0101000020E61000003D7F3DD3497E5EC05FA130A49A884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.97642327899996, 49.06935159500005 ], [ -121.976425442999982, 49.069064359000073 ], [ -121.97389038199999, 49.06897246300008 ], [ -121.973902232999961, 49.068540297000055 ], [ -121.973900124999943, 49.068079508000032 ], [ -121.973945887999918, 49.067663619000065 ], [ -121.971729902, 49.067657099000016 ], [ -121.971848347000019, 49.068065740000051 ], [ -121.968309360999925, 49.068065056000108 ], [ -121.968339296999886, 49.06766874900007 ], [ -121.968488320999953, 49.067668252000068 ], [ -121.968488766999911, 49.067646698000047 ], [ -121.968492875999956, 49.067448236000054 ], [ -121.969421068999964, 49.067456529000026 ], [ -121.969633899999948, 49.064997041000034 ], [ -121.969934403999929, 49.064985807000021 ], [ -121.970255376999916, 49.065044617000055 ], [ -121.971380197999963, 49.065250696000042 ], [ -121.971859798999958, 49.065219313000043 ], [ -121.972318195999932, 49.065546891000068 ], [ -121.973028262999975, 49.065745343000124 ], [ -121.97394726899995, 49.066002189000059 ], [ -121.973955504999978, 49.066004469000063 ], [ -121.974041810999935, 49.066028607000064 ], [ -121.97452339299997, 49.066163169000056 ], [ -121.975080292999905, 49.066318803000108 ], [ -121.975176244999915, 49.066362473 ], [ -121.976247386999916, 49.066849989000033 ], [ -121.976417633999944, 49.06685164800011 ], [ -121.976547805999971, 49.066852907000055 ], [ -121.976520091999959, 49.066961096000036 ], [ -121.976774796999976, 49.067160490000035 ], [ -121.977519181, 49.067580701000033 ], [ -121.977599505999933, 49.067671786000112 ], [ -121.977848721999948, 49.067982660000069 ], [ -121.978107599999959, 49.068305587000076 ], [ -121.978128878999939, 49.068353630000097 ], [ -121.977509401999967, 49.068322166000044 ], [ -121.977826794999928, 49.068746811999986 ], [ -121.977862971999969, 49.068963890000092 ], [ -121.977905276999934, 49.069217800000054 ], [ -121.97642327899996, 49.06935159500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28573000", "BldgCostT": "18970000", "sL_LossRatio": "0.86027868164165", "sL_AssetLoss": "76216", "sL_BldgLoss": "65567", "sL_StrLoss": "40267", "sL_NStrLoss": "25300", "sL_ContLoss": "10649", "geom_point": "0101000020E6100000D7AFCFF72E7D5EC0EC4B783A3E894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.951784389999943, 49.074606070000065 ], [ -121.950808763999987, 49.074540622 ], [ -121.948859457, 49.074501488000124 ], [ -121.94908798199999, 49.071874476000048 ], [ -121.94909717799996, 49.071768754000097 ], [ -121.949224283999982, 49.071773549000042 ], [ -121.949598259999917, 49.071787657000122 ], [ -121.949619366999968, 49.071544966000062 ], [ -121.950980859999959, 49.071596315000043 ], [ -121.951685097999956, 49.07162286900008 ], [ -121.954757120999957, 49.07173864600005 ], [ -121.954767208999939, 49.071622515000044 ], [ -121.9549493, 49.069526098000061 ], [ -121.955086810999902, 49.069442607000028 ], [ -121.955203910999984, 49.069245088000123 ], [ -121.955258892999964, 49.068991006000033 ], [ -121.95518128499999, 49.068481311000042 ], [ -121.955355104999938, 49.068213796000109 ], [ -121.955614502999978, 49.068048590000082 ], [ -121.95643538399996, 49.067709426000071 ], [ -121.95704681199993, 49.067456773000089 ], [ -121.957308591999933, 49.067348611000092 ], [ -121.95747808499999, 49.067209795000039 ], [ -121.957707720999977, 49.066811594000065 ], [ -121.958238025999947, 49.066816382000063 ], [ -121.958229223999922, 49.067237393000035 ], [ -121.95849289899995, 49.067247318000057 ], [ -121.958499047000018, 49.067176466000078 ], [ -121.958641105999916, 49.067181813000076 ], [ -121.958643027, 49.067089908000078 ], [ -121.959402875999942, 49.067096763000102 ], [ -121.95940821799999, 49.067035187000052 ], [ -121.95966319199999, 49.067044782000011 ], [ -121.959689223999959, 49.066744693000075 ], [ -121.959757299999964, 49.066747255000053 ], [ -121.959815552999913, 49.06607569300008 ], [ -121.960704744999987, 49.066109151000028 ], [ -121.960736989999958, 49.066210711000032 ], [ -121.960727387999952, 49.06636818900003 ], [ -121.960647094999928, 49.066551783000101 ], [ -121.959826285999924, 49.067318095000061 ], [ -121.959429880999906, 49.067547500000046 ], [ -121.959416382999933, 49.067566156000076 ], [ -121.959359924, 49.067644096 ], [ -121.959330493999985, 49.067746694000107 ], [ -121.959373410999945, 49.067883504000079 ], [ -121.959355814999952, 49.06797579800012 ], [ -121.958134617999988, 49.069000100000075 ], [ -121.958114919, 49.069139954000015 ], [ -121.957963596999917, 49.070213699000092 ], [ -121.957935686999988, 49.070534610000031 ], [ -121.957865188999961, 49.070716810000093 ], [ -121.957752093999929, 49.0708676920001 ], [ -121.957330706999954, 49.071120866000101 ], [ -121.957182992999932, 49.071209600000032 ], [ -121.957078109999884, 49.071377003000073 ], [ -121.957086682999943, 49.071592802000076 ], [ -121.95756559199999, 49.072432294000095 ], [ -121.957550006999952, 49.07256519400002 ], [ -121.958541633999943, 49.072642356000095 ], [ -121.958828498999964, 49.07266471 ], [ -121.95967032099999, 49.072738631000099 ], [ -121.960678683999944, 49.072827208000056 ], [ -121.961020417999961, 49.072857202000044 ], [ -121.961771600999953, 49.072878214000077 ], [ -121.962477154999974, 49.072798596000041 ], [ -121.962652486999971, 49.072778801000013 ], [ -121.962764503999935, 49.073050961000071 ], [ -121.962833403999966, 49.073218388000072 ], [ -121.96318589899991, 49.073653707000119 ], [ -121.963311617999977, 49.073772462000065 ], [ -121.963389694999989, 49.07384620800007 ], [ -121.963492702999972, 49.074143112000058 ], [ -121.963892489999964, 49.074633405000114 ], [ -121.964120215999941, 49.074817802000098 ], [ -121.964363994999985, 49.074912611000101 ], [ -121.953314926999937, 49.074708699000098 ], [ -121.951784389999943, 49.074606070000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1684417", "BldgCostT": "1161667", "sL_LossRatio": "0.901124466847615", "sL_AssetLoss": "2579", "sL_BldgLoss": "2324", "sL_StrLoss": "1137", "sL_NStrLoss": "1187", "sL_ContLoss": "255", "geom_point": "0101000020E610000067CAB9DAEB7F5EC00954FF2012834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.998526602999959, 49.025799642000024 ], [ -121.998685742999982, 49.023945444000042 ], [ -121.997537983999962, 49.023902621000047 ], [ -121.997699812999912, 49.022017486000088 ], [ -121.999164013999959, 49.022612697000071 ], [ -121.99936488499992, 49.022784995000087 ], [ -121.999388609, 49.023028484000065 ], [ -121.99915868199993, 49.024222 ], [ -121.999245081999902, 49.024709102000031 ], [ -121.999251622999964, 49.024714 ], [ -121.999688210999963, 49.025040245000127 ], [ -121.999939996999956, 49.025228386000073 ], [ -122.000135112999942, 49.025374188000058 ], [ -122.000665658999964, 49.025879417000034 ], [ -121.998526602999959, 49.025799642000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37997061", "BldgCostT": "25583190", "sL_LossRatio": "0.887852461710169", "sL_AssetLoss": "46859.7", "sL_BldgLoss": "41604.5", "sL_StrLoss": "31392.5", "sL_NStrLoss": "10212", "sL_ContLoss": "5255.2", "geom_point": "0101000020E6100000993F325F967D5EC0622B474C79874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.953465967999989, 49.062396136000089 ], [ -121.953687949000013, 49.059840729 ], [ -121.956429091999965, 49.059944017000113 ], [ -121.958997510999922, 49.060040733000044 ], [ -121.95903496399994, 49.059608994000058 ], [ -121.959225755999967, 49.05740945400003 ], [ -121.959359010999918, 49.057414470000055 ], [ -121.959403376999902, 49.056902957000027 ], [ -121.95985271799999, 49.056919871000034 ], [ -121.959882775999944, 49.056573267000076 ], [ -121.96018144599995, 49.056584508000086 ], [ -121.960204377999929, 49.056320074000048 ], [ -121.960532969999932, 49.056332440000098 ], [ -121.96055767899999, 49.056047482000054 ], [ -121.960820032999948, 49.056057355000092 ], [ -121.960841878999958, 49.055805388000067 ], [ -121.961178923999938, 49.055818070000093 ], [ -121.961195974999967, 49.055621396000085 ], [ -121.963579109999941, 49.05571103900008 ], [ -121.96362009899994, 49.055237953000095 ], [ -121.963799357999932, 49.055244694000045 ], [ -121.963914358999943, 49.05391725600002 ], [ -121.969371381999935, 49.054122318000069 ], [ -121.969352281999988, 49.054343085000049 ], [ -121.969712482999981, 49.05435661000007 ], [ -121.969544342999953, 49.05630019900007 ], [ -121.969471303999924, 49.057144434000065 ], [ -121.969424594999936, 49.057684302000027 ], [ -121.969401443999956, 49.057951890000069 ], [ -121.969350295999917, 49.057949969000092 ], [ -121.96931877899999, 49.058314237000076 ], [ -121.968878283999985, 49.058400196000093 ], [ -121.966946207999982, 49.058545490000064 ], [ -121.966590502999935, 49.058497104000033 ], [ -121.965938193999989, 49.058257806000064 ], [ -121.965295573999981, 49.058216493000032 ], [ -121.965051100999958, 49.058123892000054 ], [ -121.964688698999922, 49.057777805000129 ], [ -121.964303, 49.057910297000035 ], [ -121.963781555999944, 49.058368256000087 ], [ -121.963675500999926, 49.058461390000055 ], [ -121.963445204999957, 49.058913710000098 ], [ -121.963147755999927, 49.059497834000091 ], [ -121.963004698999939, 49.059778792000088 ], [ -121.96295760199996, 49.060119212000146 ], [ -121.963093596999954, 49.060193293000019 ], [ -121.962975787999952, 49.060506607000015 ], [ -121.963132394999946, 49.060876911 ], [ -121.963396924, 49.061083622000055 ], [ -121.963551605999953, 49.061204506000088 ], [ -121.96423133299993, 49.061469109000051 ], [ -121.964473594999944, 49.061563415000123 ], [ -121.96493460399995, 49.061828303000027 ], [ -121.964997008999958, 49.06220681700011 ], [ -121.96461181299999, 49.062192339000056 ], [ -121.964617382999961, 49.062048172000047 ], [ -121.964484301999917, 49.061846574000036 ], [ -121.964294608000031, 49.061697887 ], [ -121.963664916999946, 49.061485620000063 ], [ -121.962486274999947, 49.061460400000016 ], [ -121.962461866999931, 49.062111501000039 ], [ -121.959692353999955, 49.06200730400014 ], [ -121.959775094999912, 49.061053362000081 ], [ -121.959603510999926, 49.061046905000076 ], [ -121.959604916000018, 49.061030698000103 ], [ -121.959061998999957, 49.061010263000114 ], [ -121.958833727999945, 49.063641526000026 ], [ -121.958412034, 49.063625652000063 ], [ -121.958521723, 49.062693067000041 ], [ -121.956931773999969, 49.062599711000068 ], [ -121.956271852999961, 49.062560961000038 ], [ -121.953465967999989, 49.062396136000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.901476734147834", "sL_AssetLoss": "17491.3", "sL_BldgLoss": "15768", "sL_StrLoss": "10251", "sL_NStrLoss": "5517", "sL_ContLoss": "1723.3", "geom_point": "0101000020E61000007B9529A4C47D5EC06FCA893479884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.963908399999951, 49.064460777000093 ], [ -121.967035525999961, 49.064578293000103 ], [ -121.967167020999966, 49.064636392000082 ], [ -121.96690417399995, 49.067672023000021 ], [ -121.96268246899993, 49.06784556400001 ], [ -121.962775885999946, 49.067612109000116 ], [ -121.962831918999967, 49.067507632000073 ], [ -121.962996302999954, 49.067200994000125 ], [ -121.963382286, 49.065780008000097 ], [ -121.963908399999951, 49.064460777000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.961926439397858", "sL_AssetLoss": "1933.1", "sL_BldgLoss": "1859.5", "sL_StrLoss": "1383.5", "sL_NStrLoss": "476", "sL_ContLoss": "73.6", "geom_point": "0101000020E6100000B555A41DD27C5EC0C8233CCAD6884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95036767699996, 49.069983530000101 ], [ -121.950373361999965, 49.069713710000023 ], [ -121.949962698999968, 49.069709975000087 ], [ -121.949964843999936, 49.069608261000056 ], [ -121.949968385999981, 49.06944015400007 ], [ -121.949147065999981, 49.069432679000073 ], [ -121.949152756999979, 49.069162860000048 ], [ -121.948742097999968, 49.069159120000101 ], [ -121.948759177999975, 49.068349661000084 ], [ -121.950401782999919, 49.068364610000039 ], [ -121.950407466999962, 49.06809479100005 ], [ -121.951283516999979, 49.068102755000098 ], [ -121.951075911999951, 49.06952274800004 ], [ -121.951566448999984, 49.069655874000041 ], [ -121.951968987, 49.069737556000042 ], [ -121.952399343999957, 49.069880896 ], [ -121.95261446899994, 49.069976920000045 ], [ -121.952631486999962, 49.07000409600009 ], [ -121.95100183299995, 49.069989296000045 ], [ -121.95036767699996, 49.069983530000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.992134766739803", "sL_AssetLoss": "1909.67", "sL_BldgLoss": "1894.65", "sL_StrLoss": "1769.75", "sL_NStrLoss": "124.9", "sL_ContLoss": "15.02", "geom_point": "0101000020E6100000DCA5894E015F5EC06EC383C1108C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.484493382999929, 49.096433704000027 ], [ -121.484737684999985, 49.095583506000047 ], [ -121.484701492999989, 49.094998102000034 ], [ -121.484522796999897, 49.094572302000138 ], [ -121.484272012999938, 49.094290290000153 ], [ -121.483818490999965, 49.093880113000054 ], [ -121.482206689999913, 49.093246297000071 ], [ -121.481156095999893, 49.09264818700013 ], [ -121.479825954999939, 49.091473107000049 ], [ -121.48300382299999, 49.091606812000137 ], [ -121.48296591499998, 49.091997362000065 ], [ -121.483599227999932, 49.092023996000115 ], [ -121.483576161999949, 49.092261668000042 ], [ -121.484242321999943, 49.092289680000093 ], [ -121.48421335799999, 49.092588158000105 ], [ -121.484820021999923, 49.092613664000112 ], [ -121.484792265999928, 49.092899720000098 ], [ -121.485435218999953, 49.092926749000057 ], [ -121.485360826999965, 49.093693552000055 ], [ -121.486107443999913, 49.093724934000079 ], [ -121.486067497999926, 49.094136730000123 ], [ -121.486224563999926, 49.094143331000069 ], [ -121.486175585999916, 49.094648264000043 ], [ -121.486267595999948, 49.094652131000039 ], [ -121.486223587999987, 49.095105813000011 ], [ -121.486228824999927, 49.095106034000018 ], [ -121.486217939, 49.095218272000125 ], [ -121.48733959499999, 49.095265404000074 ], [ -121.487297340999987, 49.095701108000092 ], [ -121.487473317999957, 49.095708501000033 ], [ -121.487329697999954, 49.097189441000054 ], [ -121.486961604, 49.097276890000046 ], [ -121.48601510499995, 49.097309598000081 ], [ -121.485332606999947, 49.097201390000066 ], [ -121.484942314999927, 49.096980594000037 ], [ -121.484493382999929, 49.096433704000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.986798126591297", "sL_AssetLoss": "954.41", "sL_BldgLoss": "941.81", "sL_StrLoss": "847.51", "sL_NStrLoss": "94.3", "sL_ContLoss": "12.6", "geom_point": "0101000020E6100000CDEC90EEA9685EC0ABDD024BA68D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.631891361999962, 49.107177169000096 ], [ -121.631941537000031, 49.106642745000066 ], [ -121.631950698999987, 49.106545173000065 ], [ -121.631726693999923, 49.106536066000039 ], [ -121.63184940699999, 49.105229072000078 ], [ -121.632090205999987, 49.105268085000048 ], [ -121.632398193999904, 49.105514506000041 ], [ -121.632730305999971, 49.106427398000086 ], [ -121.632945809999939, 49.106564094000092 ], [ -121.633599187999891, 49.106725107000088 ], [ -121.633898389999928, 49.106773496000145 ], [ -121.63450449699998, 49.106645305000015 ], [ -121.635943089999927, 49.106132610000053 ], [ -121.636470083999953, 49.105904692000088 ], [ -121.637377210999958, 49.105843490000076 ], [ -121.638714616999948, 49.106127764000085 ], [ -121.638628536999974, 49.107046045000111 ], [ -121.638088502999949, 49.107024122000084 ], [ -121.638072122, 49.107198857000071 ], [ -121.637374533999932, 49.107170535000144 ], [ -121.637353102999981, 49.107399074000043 ], [ -121.63593168899996, 49.10734135000007 ], [ -121.631891361999962, 49.107177169000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.942512040363887", "sL_AssetLoss": "1308.1", "sL_BldgLoss": "1232.9", "sL_StrLoss": "848.9", "sL_NStrLoss": "384", "sL_ContLoss": "75.2", "geom_point": "0101000020E61000005F711F568B795EC0004A2AF0A1894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.896453329999943, 49.074808550000093 ], [ -121.896457768999966, 49.074608211000097 ], [ -121.896868463999937, 49.074612137000074 ], [ -121.896871866999987, 49.074458408000091 ], [ -121.897194706999983, 49.074469605000061 ], [ -121.898161479999928, 49.074677501000103 ], [ -121.898477218999957, 49.074680300000082 ], [ -121.899756903999929, 49.074376997000059 ], [ -121.900160062999987, 49.074370375000058 ], [ -121.900159990999938, 49.074373679000068 ], [ -121.900570683999931, 49.074377591 ], [ -121.900564728999896, 49.074647407000128 ], [ -121.900975425999917, 49.074651318000086 ], [ -121.900969472999975, 49.074921134000071 ], [ -121.901380171999904, 49.074925044000061 ], [ -121.901363734999947, 49.075670309000074 ], [ -121.901081403999953, 49.075784093000074 ], [ -121.900463602999963, 49.075868104000101 ], [ -121.899857107999949, 49.076060395000049 ], [ -121.898264990999962, 49.076162890000042 ], [ -121.897746207999901, 49.076121584000056 ], [ -121.896961607999913, 49.075043481000066 ], [ -121.896990486999954, 49.074980903000061 ], [ -121.897691187999897, 49.074925310000054 ], [ -121.896453329999943, 49.074808550000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12733417", "BldgCostT": "8781667", "sL_LossRatio": "0.991867162120678", "sL_AssetLoss": "6547.53", "sL_BldgLoss": "6494.28", "sL_StrLoss": "6066.79", "sL_NStrLoss": "427.49", "sL_ContLoss": "53.25", "geom_point": "0101000020E6100000E030D120C55E5EC0313322075B8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.477707401, 49.100536227000127 ], [ -121.477793640999963, 49.099648948000031 ], [ -121.477783758999976, 49.099648531000071 ], [ -121.47784709699998, 49.098996851000081 ], [ -121.477592392999938, 49.098986128000071 ], [ -121.477660538999913, 49.09828501500008 ], [ -121.477520735999988, 49.098279128000051 ], [ -121.47757792499999, 49.097690738000082 ], [ -121.477404267999958, 49.097683427000135 ], [ -121.477445693999954, 49.097257218000067 ], [ -121.476768672999967, 49.097228710000103 ], [ -121.476790863999952, 49.097000433000098 ], [ -121.476008661999956, 49.096967490000097 ], [ -121.476127664999964, 49.095743470000116 ], [ -121.47606654099998, 49.095740895000112 ], [ -121.47641588599997, 49.092147341000093 ], [ -121.476463297999899, 49.092149338000105 ], [ -121.476540623999981, 49.091353842000039 ], [ -121.477542836999959, 49.091396050000093 ], [ -121.477544681999959, 49.091377066000078 ], [ -121.479442418999952, 49.091456963000027 ], [ -121.479692405, 49.091702497000043 ], [ -121.480678687999941, 49.092578408000044 ], [ -121.481299002999947, 49.092928688000086 ], [ -121.481930284999962, 49.093314695000117 ], [ -121.483377598999965, 49.093918604000045 ], [ -121.483928118999955, 49.094330198000058 ], [ -121.484372987999961, 49.094983889000055 ], [ -121.484279217, 49.096260005000012 ], [ -121.484430900999911, 49.096694405000108 ], [ -121.484934600999978, 49.097222707000114 ], [ -121.485573202999916, 49.097446303000034 ], [ -121.486792404999917, 49.097390801000088 ], [ -121.487317440999959, 49.097315829000074 ], [ -121.487124801, 49.099302072000064 ], [ -121.48664277099999, 49.099281819000097 ], [ -121.486614992999975, 49.099568183 ], [ -121.485660785999954, 49.099528086000063 ], [ -121.485637963999935, 49.099763305000074 ], [ -121.484781558999885, 49.099727310000056 ], [ -121.484735451999924, 49.100202426000067 ], [ -121.484114851999948, 49.100176337000086 ], [ -121.484054955999937, 49.100793440000068 ], [ -121.483168566999964, 49.100756172000047 ], [ -121.483167617, 49.100765961000064 ], [ -121.477707401, 49.100536227000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "0.983167864886454", "sL_AssetLoss": "3329.94", "sL_BldgLoss": "3273.89", "sL_StrLoss": "2881.19", "sL_NStrLoss": "392.7", "sL_ContLoss": "56.05", "geom_point": "0101000020E61000000C58D53F06695EC003B00111628C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.63844459799995, 49.094834904000052 ], [ -121.643904922999951, 49.095056480000039 ], [ -121.643568475999956, 49.098650551000063 ], [ -121.638107731, 49.098428959000053 ], [ -121.63844459799995, 49.094834904000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.981300539083558", "sL_AssetLoss": "474.88", "sL_BldgLoss": "466", "sL_StrLoss": "439", "sL_NStrLoss": "27", "sL_ContLoss": "8.88", "geom_point": "0101000020E61000001C25F1EA83695EC0CDB3503AAA8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.648968537999934, 49.105980567000053 ], [ -121.64954643499999, 49.105987330000048 ], [ -121.649509819999949, 49.10733627200009 ], [ -121.649098892999945, 49.107331464000026 ], [ -121.649091567999946, 49.107601252000059 ], [ -121.647858778999989, 49.107586818000087 ], [ -121.647898931999976, 49.106109320000058 ], [ -121.647902769999931, 49.105968087000036 ], [ -121.648968537999934, 49.105980567000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.923276983094928", "sL_AssetLoss": "1538", "sL_BldgLoss": "1420", "sL_StrLoss": "1040", "sL_NStrLoss": "380", "sL_ContLoss": "118", "geom_point": "0101000020E6100000359E84A9D8785EC0F23D441F038A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.887053768999976, 49.077925388000047 ], [ -121.890187063, 49.078045347000057 ], [ -121.889921016999935, 49.078240902000083 ], [ -121.888684875999942, 49.078445996000049 ], [ -121.888060914999969, 49.078717993000041 ], [ -121.886704205999948, 49.078148293000098 ], [ -121.886559408999972, 49.078117087000052 ], [ -121.886574286, 49.077948676000048 ], [ -121.887050100999957, 49.077966901000138 ], [ -121.887053768999976, 49.077925388000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.966808451752984", "sL_AssetLoss": "3035.11", "sL_BldgLoss": "2934.37", "sL_StrLoss": "2290.07", "sL_NStrLoss": "644.3", "sL_ContLoss": "100.74", "geom_point": "0101000020E61000003DF71E2EF96C5EC0FDDCD0941D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.701389611999943, 49.081230300000115 ], [ -121.700292913999988, 49.080723307000071 ], [ -121.699634799999941, 49.080707601 ], [ -121.699346696999982, 49.08080301200004 ], [ -121.699138946999938, 49.080926494000011 ], [ -121.699168794999977, 49.080603409000048 ], [ -121.69936371599999, 49.080611215000062 ], [ -121.699428759999975, 49.079907109000025 ], [ -121.699610223999954, 49.077942612000093 ], [ -121.700467720999939, 49.077976951000089 ], [ -121.700572445999924, 49.076842931000016 ], [ -121.706030956999911, 49.077061359000076 ], [ -121.705928311999941, 49.078174283000088 ], [ -121.705766662999949, 49.079926844000092 ], [ -121.705512191999929, 49.080097999000046 ], [ -121.705006559999973, 49.080628014000084 ], [ -121.704841879999933, 49.080621427000061 ], [ -121.704840769999961, 49.080633444000135 ], [ -121.704995474999933, 49.080639632000015 ], [ -121.704696908, 49.080952592000102 ], [ -121.703281309999952, 49.081107794000076 ], [ -121.702783399999959, 49.08134569800005 ], [ -121.702028591, 49.081364212000061 ], [ -121.701700089999974, 49.081342797000076 ], [ -121.701389611999943, 49.081230300000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0.884615384615385", "sL_AssetLoss": "910", "sL_BldgLoss": "805", "sL_StrLoss": "151", "sL_NStrLoss": "654", "sL_ContLoss": "105", "geom_point": "0101000020E6100000CC3A0C7B147A5EC080A1E461E3894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.912716492999891, 49.079736292000042 ], [ -121.911917483999943, 49.079287699000133 ], [ -121.910802010999944, 49.078917384000071 ], [ -121.909985197999958, 49.078756395000021 ], [ -121.908959182999965, 49.078737900000085 ], [ -121.90752409199996, 49.078552802000083 ], [ -121.90639588099998, 49.078236599000078 ], [ -121.905906800999944, 49.078025802000106 ], [ -121.905638802999988, 49.07712288900008 ], [ -121.905512815999941, 49.077202594000056 ], [ -121.905352889999932, 49.077030308000083 ], [ -121.905274291999973, 49.076849400000093 ], [ -121.905358615999944, 49.076211403000023 ], [ -121.905188997999943, 49.075761301000092 ], [ -121.90508378699991, 49.075570510000027 ], [ -121.904667615999983, 49.075234400000049 ], [ -121.904061454999919, 49.074950536000067 ], [ -121.905897866999922, 49.074967959000091 ], [ -121.905891939999975, 49.075237776000037 ], [ -121.906302642999975, 49.07524166800011 ], [ -121.906296717999979, 49.075511484000103 ], [ -121.90711812699999, 49.075519264000086 ], [ -121.907100365999952, 49.076328712000048 ], [ -121.907511077999985, 49.076332600000086 ], [ -121.907487404999969, 49.077411863000094 ], [ -121.908308848, 49.07741963600003 ], [ -121.908302933999934, 49.077689452000051 ], [ -121.908713655, 49.077693336000031 ], [ -121.908695920999946, 49.078502784000158 ], [ -121.908285192000022, 49.078498899000117 ], [ -121.908282142999894, 49.078637984000153 ], [ -121.913135554999897, 49.078822794000068 ], [ -121.91305738899996, 49.079713308000102 ], [ -121.912950209999977, 49.079683588000094 ], [ -121.912716492999891, 49.079736292000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.986172970816991", "sL_AssetLoss": "902.58", "sL_BldgLoss": "890.1", "sL_StrLoss": "817", "sL_NStrLoss": "73.1", "sL_ContLoss": "12.48", "geom_point": "0101000020E61000009162C26065635EC090E18820948C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.549427587999901, 49.099180376000049 ], [ -121.54952829299998, 49.098127494000032 ], [ -121.549559174999956, 49.097804597000042 ], [ -121.549868331999917, 49.097817405000043 ], [ -121.549901679999962, 49.097468704000129 ], [ -121.550562041999939, 49.09749606000009 ], [ -121.550562351999957, 49.09749282000012 ], [ -121.55221891299999, 49.097561426 ], [ -121.556022566999971, 49.097718857000082 ], [ -121.556006065999924, 49.097891649000076 ], [ -121.556358967999955, 49.097906248000079 ], [ -121.556342714999971, 49.098076443000082 ], [ -121.557294745999954, 49.098115823000093 ], [ -121.557194595999988, 49.099164744000113 ], [ -121.556600620000012, 49.098960307000056 ], [ -121.555318495, 49.098782193000048 ], [ -121.55441190699996, 49.098860589000012 ], [ -121.553798176999933, 49.098735195000117 ], [ -121.552665983999958, 49.098604202000089 ], [ -121.551731590999978, 49.09869248899999 ], [ -121.551221393999981, 49.098802197000133 ], [ -121.550899491999971, 49.099049992000069 ], [ -121.550154204999899, 49.099185289000054 ], [ -121.549427587999901, 49.099180376000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7327333", "BldgCostT": "5053333", "sL_LossRatio": "0.989852196678763", "sL_AssetLoss": "3976.23", "sL_BldgLoss": "3935.88", "sL_StrLoss": "3676.08", "sL_NStrLoss": "259.8", "sL_ContLoss": "40.35", "geom_point": "0101000020E6100000B38F5718C95C5EC049C552667B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.44177208, 49.091134602000068 ], [ -121.442460317, 49.090873593000026 ], [ -121.443201817999949, 49.090802404000108 ], [ -121.443800016999958, 49.090998905000028 ], [ -121.444304482999954, 49.09100609799999 ], [ -121.44498301699997, 49.090816592000095 ], [ -121.445997718999962, 49.090335302000071 ], [ -121.447134592999987, 49.089892289000055 ], [ -121.44784940699995, 49.089775507000049 ], [ -121.448500392999946, 49.08957759 ], [ -121.450329520999958, 49.088432506000053 ], [ -121.452352104999946, 49.086840205000094 ], [ -121.453092800999912, 49.086401606000059 ], [ -121.454944110999918, 49.085427387000038 ], [ -121.45511360799999, 49.085259393000058 ], [ -121.455651058999976, 49.085010116000014 ], [ -121.456364674999961, 49.085040314000061 ], [ -121.456013837999961, 49.088633842000078 ], [ -121.45333759, 49.088520566000057 ], [ -121.453116638, 49.090782104000056 ], [ -121.449616318999958, 49.090633847000014 ], [ -121.449437877999969, 49.092458686000114 ], [ -121.44808665799999, 49.092401425000048 ], [ -121.448063230999978, 49.092640919000026 ], [ -121.447110251999973, 49.092600524000026 ], [ -121.447083303999975, 49.092875941000067 ], [ -121.441624191999949, 49.092644373000098 ], [ -121.44177208, 49.091134602000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4316167", "BldgCostT": "2976667", "sL_LossRatio": "0.967696629213483", "sL_AssetLoss": "4485.6", "sL_BldgLoss": "4340.7", "sL_StrLoss": "3601.6", "sL_NStrLoss": "739.1", "sL_ContLoss": "144.9", "geom_point": "0101000020E6100000350E2F67FA6C5EC0A6E7E5C9988A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.699162107999939, 49.081502288000081 ], [ -121.70034211799999, 49.081416906000072 ], [ -121.700974410999947, 49.081352786000089 ], [ -121.702474979999963, 49.081611991000045 ], [ -121.703065096999936, 49.081502287000056 ], [ -121.703400991999942, 49.081298613000079 ], [ -121.704617491999926, 49.081365598000147 ], [ -121.705365003999972, 49.081077884000067 ], [ -121.705545097999973, 49.080926905000098 ], [ -121.705743384999934, 49.080669544000102 ], [ -121.706401468999942, 49.080695858000112 ], [ -121.706069943999964, 49.084290204000112 ], [ -121.704314190000019, 49.084219989000061 ], [ -121.704296078999974, 49.084416246000082 ], [ -121.698836713999967, 49.084197733000089 ], [ -121.698838088999977, 49.084182850000069 ], [ -121.698914898999988, 49.084106095000017 ], [ -121.69923031699993, 49.083635792000095 ], [ -121.699297702999942, 49.0831956950001 ], [ -121.698957462999914, 49.082890857000073 ], [ -121.699076482999928, 49.08160262500008 ], [ -121.699162107999939, 49.081502288000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.93582932093641", "sL_AssetLoss": "1204.6", "sL_BldgLoss": "1127.3", "sL_StrLoss": "827.3", "sL_NStrLoss": "300", "sL_ContLoss": "77.3", "geom_point": "0101000020E610000010E7E10426745EC061D7DDD9AA8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.811831264999938, 49.091614293000077 ], [ -121.81193494199999, 49.09046202900003 ], [ -121.817395564999956, 49.090674798000094 ], [ -121.817362961999919, 49.091037627000027 ], [ -121.817999060999938, 49.091062394000048 ], [ -121.818012990999989, 49.091791171000047 ], [ -121.811831264999938, 49.091614293000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4316167", "BldgCostT": "2976667", "sL_LossRatio": "0.985454150812469", "sL_AssetLoss": "3040.73", "sL_BldgLoss": "2996.5", "sL_StrLoss": "2660.5", "sL_NStrLoss": "336", "sL_ContLoss": "44.23", "geom_point": "0101000020E610000022EFC98166635EC05B636DDFE58C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.551252823999931, 49.102034579000133 ], [ -121.551270705, 49.101847585000058 ], [ -121.551256776999963, 49.101847009000082 ], [ -121.551264005999911, 49.101771403000107 ], [ -121.550834066999954, 49.101753597000027 ], [ -121.550846820999979, 49.101620216000114 ], [ -121.550201354999928, 49.10159348100008 ], [ -121.550211631999943, 49.101486025000092 ], [ -121.549756445999947, 49.101467169000088 ], [ -121.549760866999961, 49.10142095200009 ], [ -121.54921542999989, 49.101398355000043 ], [ -121.549408639999967, 49.099378470000019 ], [ -121.551044010999988, 49.099213789000061 ], [ -121.552387591999945, 49.099168188000093 ], [ -121.552639291999952, 49.099054296000077 ], [ -121.553167792999915, 49.099205189000045 ], [ -121.554955205999974, 49.099497207000141 ], [ -121.556112719999987, 49.100186507000117 ], [ -121.556234001999954, 49.100259107000056 ], [ -121.55703061299999, 49.100179391000069 ], [ -121.557097100999982, 49.100185802000055 ], [ -121.556951595999976, 49.101709604000114 ], [ -121.556766921999937, 49.10170196600005 ], [ -121.55674061099991, 49.101977484000024 ], [ -121.55670192300002, 49.102382608000049 ], [ -121.551241156999978, 49.102156608000065 ], [ -121.551252823999931, 49.102034579000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5454417", "BldgCostT": "3761667", "sL_LossRatio": "0.920429402605917", "sL_AssetLoss": "12203", "sL_BldgLoss": "11232", "sL_StrLoss": "7668", "sL_NStrLoss": "3564", "sL_ContLoss": "971", "geom_point": "0101000020E61000009A35E3FAD87A5EC06A39E9E00D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.915507491999975, 49.079376604000053 ], [ -121.91574296499999, 49.076692171000026 ], [ -121.921202441999966, 49.076899672000138 ], [ -121.921019117999933, 49.07899241500013 ], [ -121.921900180999955, 49.079025876000038 ], [ -121.922020155999945, 49.07765602300006 ], [ -121.923295890999952, 49.077704460000078 ], [ -121.923343929999973, 49.077155754000053 ], [ -121.928803494999954, 49.077362870000066 ], [ -121.928775148999989, 49.077687064000081 ], [ -121.928660204999943, 49.077681187000039 ], [ -121.927780603999949, 49.077799398000131 ], [ -121.925616611999928, 49.077814992000107 ], [ -121.92529530199999, 49.078108394000061 ], [ -121.923952585999928, 49.078735096000088 ], [ -121.923564102999947, 49.079009889000055 ], [ -121.92324690399991, 49.079096805000063 ], [ -121.919861282999989, 49.079874402000016 ], [ -121.919128295999911, 49.080183497000128 ], [ -121.91925028799993, 49.080310194000084 ], [ -121.918215498999956, 49.080614999000069 ], [ -121.916925492999951, 49.08078309200004 ], [ -121.91613220899994, 49.080738883000087 ], [ -121.914972284999948, 49.080548098000058 ], [ -121.914001456999955, 49.080110343000065 ], [ -121.914011877999911, 49.079632413000091 ], [ -121.914422617999946, 49.079636276000045 ], [ -121.914428498999925, 49.079366460000109 ], [ -121.915507491999975, 49.079376604000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3960916", "BldgCostT": "2731666", "sL_LossRatio": "0.983468292409253", "sL_AssetLoss": "2673.65", "sL_BldgLoss": "2629.45", "sL_StrLoss": "2324.25", "sL_NStrLoss": "305.2", "sL_ContLoss": "44.2", "geom_point": "0101000020E6100000B6E93A1AA8685EC05496D7005B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.632848915999958, 49.10556430700013 ], [ -121.632731881999973, 49.10538350200008 ], [ -121.632270498999929, 49.105171194000029 ], [ -121.631864926999967, 49.105063764000093 ], [ -121.632064112999899, 49.102942075000016 ], [ -121.632193703999917, 49.102947344000015 ], [ -121.632234929999967, 49.102508178000051 ], [ -121.632422041999945, 49.102515785000016 ], [ -121.637127461999953, 49.102706975000039 ], [ -121.63769612599998, 49.102730068000078 ], [ -121.637680866000011, 49.102892833000119 ], [ -121.638210917999942, 49.102914354000085 ], [ -121.63817899299994, 49.10325491800004 ], [ -121.638248838999985, 49.103257754000062 ], [ -121.638233411999948, 49.103422318000042 ], [ -121.638965424999967, 49.103452035000039 ], [ -121.638740382, 49.105852913000028 ], [ -121.63773949499999, 49.105639789000065 ], [ -121.636778784999976, 49.105638402000075 ], [ -121.63650618399997, 49.105661198000057 ], [ -121.635479379999978, 49.106089895000117 ], [ -121.634747186999959, 49.106279291000121 ], [ -121.634274812999976, 49.10653560700009 ], [ -121.63344060799993, 49.106515699000035 ], [ -121.633169890000019, 49.106387504000104 ], [ -121.632823582999933, 49.106031491000053 ], [ -121.632848915999958, 49.10556430700013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.929953302201468", "sL_AssetLoss": "2998", "sL_BldgLoss": "2788", "sL_StrLoss": "2080", "sL_NStrLoss": "708", "sL_ContLoss": "210", "geom_point": "0101000020E6100000F8003851A6755EC0AEE542A343894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.835661883999961, 49.072773145000049 ], [ -121.835763300999957, 49.071639059000113 ], [ -121.836500388999966, 49.071840512000037 ], [ -121.837879427999979, 49.071860596000072 ], [ -121.838746101999931, 49.071873208000092 ], [ -121.839857395999971, 49.071749301000125 ], [ -121.840393395999982, 49.072203612000052 ], [ -121.841005393999978, 49.072444288000092 ], [ -121.841106894999896, 49.07298418600007 ], [ -121.840084583999968, 49.072944584000041 ], [ -121.835661883999961, 49.072773145000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3296333", "BldgCostT": "2273333", "sL_LossRatio": "0.974118105013128", "sL_AssetLoss": "2517.59", "sL_BldgLoss": "2452.43", "sL_StrLoss": "2030.53", "sL_NStrLoss": "421.9", "sL_ContLoss": "65.16", "geom_point": "0101000020E6100000930F4946715F5EC0D56BC4DDEA8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.48873280399998, 49.09900615500009 ], [ -121.494192894999983, 49.099235329000081 ], [ -121.493844867999925, 49.102828901000066 ], [ -121.488384357999976, 49.102599710000057 ], [ -121.48873280399998, 49.09900615500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3083667", "BldgCostT": "2126667", "sL_LossRatio": "0.939024131867201", "sL_AssetLoss": "4719.9", "sL_BldgLoss": "4432.1", "sL_StrLoss": "3260.1", "sL_NStrLoss": "1172", "sL_ContLoss": "287.8", "geom_point": "0101000020E610000022DE7C1B09735EC011BD31A9C6894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.79511859899999, 49.074703581000072 ], [ -121.800577296999961, 49.074917209000077 ], [ -121.800459228999955, 49.076226304000102 ], [ -121.800379181999972, 49.077113797000017 ], [ -121.799293997999925, 49.077208287000111 ], [ -121.798243614999976, 49.077548698000051 ], [ -121.797758820999931, 49.07783070400005 ], [ -121.797236063999975, 49.078370569000093 ], [ -121.79721435299993, 49.078392988000076 ], [ -121.796606356999931, 49.078369190000046 ], [ -121.794793957999971, 49.078298231000126 ], [ -121.79483533299999, 49.077840128000048 ], [ -121.79511859899999, 49.074703581000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6781166", "BldgCostT": "4676666", "sL_LossRatio": "0.931563359424582", "sL_AssetLoss": "13235.6", "sL_BldgLoss": "12329.8", "sL_StrLoss": "9727.8", "sL_NStrLoss": "2602", "sL_ContLoss": "905.8", "geom_point": "0101000020E61000006F3614468C705EC0FD3BF440D8894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.75305286399994, 49.076600937000116 ], [ -121.753173010999916, 49.075283722000101 ], [ -121.753200695999936, 49.074980182000047 ], [ -121.755309472999969, 49.075063567000072 ], [ -121.755309804999982, 49.075059932000094 ], [ -121.760768362999897, 49.075275581000056 ], [ -121.760759722999964, 49.075370467000134 ], [ -121.761251152999947, 49.075389868000059 ], [ -121.761237697999945, 49.075537655000069 ], [ -121.761663345999949, 49.075554458000056 ], [ -121.761658001999962, 49.075613178000019 ], [ -121.761649448999918, 49.075707143000088 ], [ -121.762001745999953, 49.075721049000016 ], [ -121.761952056, 49.076266971000109 ], [ -121.762504742999951, 49.076288784000049 ], [ -121.762693455999937, 49.07629623200009 ], [ -121.762667175999951, 49.076584994000086 ], [ -121.763774937999969, 49.076628704000022 ], [ -121.763745936999939, 49.076947443000087 ], [ -121.764322538999977, 49.076970190000097 ], [ -121.76426924099998, 49.077556050000076 ], [ -121.764256398000029, 49.077558712000098 ], [ -121.763069115999926, 49.077941793000072 ], [ -121.761431615999982, 49.07884190700004 ], [ -121.759576089999911, 49.07909971000003 ], [ -121.758720713999963, 49.079343201000121 ], [ -121.75814598699999, 49.079319009000081 ], [ -121.756987708999972, 49.078541387000058 ], [ -121.756906617999903, 49.078473372000069 ], [ -121.756009616999933, 49.077721005000093 ], [ -121.753758188999939, 49.07679820100001 ], [ -121.75305286399994, 49.076600937000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.885523275008254", "sL_AssetLoss": "2423.2", "sL_BldgLoss": "2145.8", "sL_StrLoss": "1313.8", "sL_NStrLoss": "832", "sL_ContLoss": "277.4", "geom_point": "0101000020E6100000929EF907D77B5EC0763A2DCB998A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.932260587999906, 49.082194503000096 ], [ -121.931965711999965, 49.081876892000047 ], [ -121.93221948, 49.081510893000022 ], [ -121.932395996999929, 49.08153929100007 ], [ -121.932865784999976, 49.082073399000123 ], [ -121.933206297999931, 49.082140405000068 ], [ -121.933589203999958, 49.082089084000096 ], [ -121.9340008, 49.082138907000108 ], [ -121.934572182999915, 49.082314102000041 ], [ -121.935336791999973, 49.082348298000085 ], [ -121.936811602, 49.082569 ], [ -121.938097493, 49.083291106000047 ], [ -121.938028886999973, 49.083336700000046 ], [ -121.93603529799995, 49.083641510000028 ], [ -121.934545801999917, 49.083510407000027 ], [ -121.933705985999964, 49.083125902000099 ], [ -121.932260587999906, 49.082194503000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4932417", "BldgCostT": "3401667", "sL_LossRatio": "0.96381080933185", "sL_AssetLoss": "5482.3", "sL_BldgLoss": "5283.9", "sL_StrLoss": "4530.9", "sL_NStrLoss": "753", "sL_ContLoss": "198.4", "geom_point": "0101000020E61000008F6356B5C57B5EC070D1A84402894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.931163385999966, 49.072226412000063 ], [ -121.931164348999971, 49.072215393000086 ], [ -121.930723870999898, 49.072198700000065 ], [ -121.930992332999978, 49.069126162000018 ], [ -121.931037986999954, 49.068603612000047 ], [ -121.931647555, 49.068626712000011 ], [ -121.931673776999958, 49.068326527000082 ], [ -121.935340276999966, 49.068465395000018 ], [ -121.936160619999924, 49.068496448000069 ], [ -121.937132344999966, 49.068533223000045 ], [ -121.937096893999964, 49.06893959600017 ], [ -121.936926871999958, 49.070888472000036 ], [ -121.936915851999927, 49.071014778000077 ], [ -121.936818697999968, 49.072128328000133 ], [ -121.93664956100001, 49.072121928000136 ], [ -121.936622406999959, 49.072433132000093 ], [ -121.931163385999966, 49.072226412000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.933214672651292", "sL_AssetLoss": "1292.2", "sL_BldgLoss": "1205.9", "sL_StrLoss": "871.9", "sL_NStrLoss": "334", "sL_ContLoss": "86.3", "geom_point": "0101000020E61000001D5B8DF47B795EC0BB3FA400CD894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.898862299999948, 49.077329896000037 ], [ -121.89886826299994, 49.077060081000056 ], [ -121.898046830999974, 49.077052241000082 ], [ -121.898052800999935, 49.076782426000079 ], [ -121.89558852, 49.076758872000028 ], [ -121.895612448999955, 49.075679613000077 ], [ -121.896023152999945, 49.075683542 ], [ -121.896031742, 49.075296033000065 ], [ -121.896160817999899, 49.075324099000049 ], [ -121.896783291999938, 49.075725711000139 ], [ -121.896874189999963, 49.07591509600006 ], [ -121.896458813000024, 49.076172893000034 ], [ -121.896965583999972, 49.076114499000077 ], [ -121.897497003999916, 49.076272593000084 ], [ -121.89833771399999, 49.076658589 ], [ -121.899155811999933, 49.076755387000091 ], [ -121.90072440099999, 49.076383699000104 ], [ -121.901022304999941, 49.075973511000093 ], [ -121.901357187999963, 49.075967144000053 ], [ -121.901350416999918, 49.076274120000043 ], [ -121.900939705999988, 49.076270210000061 ], [ -121.900915890999926, 49.077349471000105 ], [ -121.898862299999948, 49.077329896000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22122166", "BldgCostT": "15256666", "sL_LossRatio": "0.916680559491856", "sL_AssetLoss": "47986.4", "sL_BldgLoss": "43988.2", "sL_StrLoss": "31019.2", "sL_NStrLoss": "12969", "sL_ContLoss": "3998.2", "geom_point": "0101000020E61000003F1A9826F6775EC0A77C6BD4018A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.876012692999922, 49.079708706000162 ], [ -121.87547992099999, 49.079616105000099 ], [ -121.874904199999918, 49.079621103000072 ], [ -121.874388788, 49.079657209000032 ], [ -121.873966859999911, 49.079706297000065 ], [ -121.872887786999954, 49.079831852 ], [ -121.87236686199995, 49.079892470000082 ], [ -121.872145695999976, 49.079918207000034 ], [ -121.871010701, 49.080043120000028 ], [ -121.870153991999985, 49.080137401000087 ], [ -121.869894107000036, 49.080133696000054 ], [ -121.869709632999971, 49.080114328000029 ], [ -121.869217016, 49.080062593000015 ], [ -121.86629656199996, 49.07965245400009 ], [ -121.866023468999941, 49.079614075000045 ], [ -121.864732881999942, 49.07943280300006 ], [ -121.864498134999963, 49.079382152000122 ], [ -121.864106578999966, 49.079297690000097 ], [ -121.863507089999985, 49.079109600000088 ], [ -121.863231811, 49.078970981000111 ], [ -121.862723512999963, 49.078649294000066 ], [ -121.86163379599999, 49.077811898000085 ], [ -121.861359577999949, 49.077646845000025 ], [ -121.861211294, 49.077557589000087 ], [ -121.861037598999957, 49.077509418000055 ], [ -121.86081359, 49.077449945000026 ], [ -121.860378016, 49.077334298000068 ], [ -121.860047510999962, 49.077277297000151 ], [ -121.859559781999963, 49.077223658000044 ], [ -121.858503778999989, 49.077107531000067 ], [ -121.855425216999919, 49.076768939000026 ], [ -121.85391060299996, 49.076602283000042 ], [ -121.853179029999964, 49.076520787000085 ], [ -121.846673627999934, 49.075795820000089 ], [ -121.846193825999961, 49.07574233000004 ], [ -121.845957692999932, 49.075715995000103 ], [ -121.84559570299993, 49.075858910000115 ], [ -121.844831085999957, 49.076033102000032 ], [ -121.843366416999928, 49.076301092000023 ], [ -121.843209752999954, 49.07632383100006 ], [ -121.842627645999983, 49.07640833699999 ], [ -121.842752766999965, 49.075006927000032 ], [ -121.842812414999955, 49.074338825000041 ], [ -121.84388950499999, 49.074433985000077 ], [ -121.844847697999953, 49.074416903000078 ], [ -121.847044083999947, 49.074727295000109 ], [ -121.847784904999955, 49.07467039200008 ], [ -121.848573180999935, 49.074418294000097 ], [ -121.84986229799992, 49.074277312000099 ], [ -121.850507194999977, 49.074238805000036 ], [ -121.852039098999953, 49.074327085000107 ], [ -121.854326713999981, 49.074862605000071 ], [ -121.855759705999944, 49.075623188000051 ], [ -121.856656093999959, 49.075973514000047 ], [ -121.857802192999941, 49.076128790000048 ], [ -121.85962830699999, 49.075940791000058 ], [ -121.859998101999977, 49.075962100000076 ], [ -121.860423296999969, 49.075876693000019 ], [ -121.862024997999953, 49.075972097000061 ], [ -121.864505117999926, 49.075835393000027 ], [ -121.86580629599996, 49.075848213000029 ], [ -121.86669591199994, 49.075883788000112 ], [ -121.86802700199999, 49.076292600000087 ], [ -121.86952669799993, 49.077279500000053 ], [ -121.870095386999964, 49.077562198000116 ], [ -121.871002301999951, 49.078013010000049 ], [ -121.871802311999943, 49.078317806000079 ], [ -121.872541087999963, 49.078387597000081 ], [ -121.873490703999963, 49.078145389000028 ], [ -121.873728909999912, 49.077940401000056 ], [ -121.87374960199999, 49.077942837000059 ], [ -121.87482467699999, 49.078069250000048 ], [ -121.876732889999943, 49.078293594000044 ], [ -121.877059698999943, 49.078350491000037 ], [ -121.877398215999932, 49.078525705000047 ], [ -121.878094977999979, 49.078620444000109 ], [ -121.878733697999948, 49.078707286000061 ], [ -121.878749205999938, 49.078709392000107 ], [ -121.87928449099995, 49.078705198000137 ], [ -121.87975269, 49.078584108000065 ], [ -121.88097099799991, 49.0787015330001 ], [ -121.880953233999975, 49.078902345000117 ], [ -121.881292316999975, 49.078915350000059 ], [ -121.881277839999925, 49.079079007000054 ], [ -121.883134562999928, 49.079150201000097 ], [ -121.883124590999898, 49.07926299100005 ], [ -121.883800047999927, 49.079288883000046 ], [ -121.883794632999965, 49.079350139000034 ], [ -121.884413730999981, 49.079373867000065 ], [ -121.884355909999925, 49.080028003000088 ], [ -121.885786626999931, 49.080082823000055 ], [ -121.885892669999947, 49.078882734000032 ], [ -121.886987005999941, 49.079004298000022 ], [ -121.887057502999951, 49.078970099000081 ], [ -121.886936501999941, 49.078841908000044 ], [ -121.887861998999981, 49.079049803000053 ], [ -121.888120685999937, 49.079195098000035 ], [ -121.88893898799995, 49.079338897000049 ], [ -121.889868788999934, 49.079347512000076 ], [ -121.891010882000032, 49.079125302000058 ], [ -121.891604698999927, 49.078914492000074 ], [ -121.892388060999963, 49.078129558000043 ], [ -121.892513260999948, 49.07813434600012 ], [ -121.892489203999929, 49.078407044000116 ], [ -121.892520677999983, 49.078408247000091 ], [ -121.892434017, 49.079390593 ], [ -121.892581836999938, 49.079396247000027 ], [ -121.892527925999971, 49.080007363000036 ], [ -121.894542398999974, 49.080084391000099 ], [ -121.894545344999983, 49.080050973000013 ], [ -121.895434806999958, 49.080084973000076 ], [ -121.89544561299999, 49.079962394000091 ], [ -121.896277057999939, 49.079994168000056 ], [ -121.896277176999945, 49.07999281400005 ], [ -121.896488186999974, 49.080000877000039 ], [ -121.89656061, 49.079179118000098 ], [ -121.900425122999934, 49.079326712000082 ], [ -121.90044455599994, 49.079106012000139 ], [ -121.900899879999912, 49.079123392000071 ], [ -121.90093145599991, 49.078764722000109 ], [ -121.903347533999963, 49.078856915000074 ], [ -121.903356443999925, 49.078452173000073 ], [ -121.904999358999987, 49.078467773000057 ], [ -121.905011221999985, 49.077928141000086 ], [ -121.904600497999979, 49.077924244000023 ], [ -121.904612366, 49.077384613000056 ], [ -121.904201646999979, 49.07738071400005 ], [ -121.90421744799994, 49.076662460000129 ], [ -121.904613410999929, 49.077041707000049 ], [ -121.905441222999954, 49.078632504000076 ], [ -121.905984605999933, 49.078836192000047 ], [ -121.906565683999972, 49.079183700000037 ], [ -121.907303178999911, 49.079324699000068 ], [ -121.908643801999972, 49.079318986000061 ], [ -121.909454807999978, 49.079173698000048 ], [ -121.909891495999915, 49.079250592000044 ], [ -121.910285510999955, 49.079398803000089 ], [ -121.910663111999924, 49.079672201000093 ], [ -121.910684400999941, 49.079959909000124 ], [ -121.910392594999948, 49.080109415000095 ], [ -121.910542015999923, 49.08016500600008 ], [ -121.910732237999952, 49.080165002000108 ], [ -121.911487791999917, 49.080165 ], [ -121.912127309000013, 49.080324489000049 ], [ -121.912619502999917, 49.08035579200002 ], [ -121.912988774000027, 49.080495006000028 ], [ -121.912922752999989, 49.081247117000018 ], [ -121.912338151999961, 49.081204035000098 ], [ -121.911804812999961, 49.08116469000003 ], [ -121.91097478399999, 49.081103305000099 ], [ -121.910177191999978, 49.081015211000135 ], [ -121.910021054999959, 49.080986519000092 ], [ -121.909626014999901, 49.080913995000103 ], [ -121.908192980999956, 49.080521795000045 ], [ -121.906349392999942, 49.080017207000019 ], [ -121.906045415999941, 49.079955095000066 ], [ -121.90566281199996, 49.0799144040001 ], [ -121.905274865999971, 49.079907968000114 ], [ -121.904534500999944, 49.079895695000076 ], [ -121.904150839999957, 49.079926515000118 ], [ -121.900424142999924, 49.080225795000075 ], [ -121.89808272, 49.080413745000122 ], [ -121.896364774999981, 49.080551611000033 ], [ -121.896351209999963, 49.080552698000069 ], [ -121.895205011999977, 49.080598193000078 ], [ -121.894059198999926, 49.08060851400009 ], [ -121.893662721999959, 49.080608355000045 ], [ -121.892718, 49.0806080300001 ], [ -121.890759536999937, 49.08060733100011 ], [ -121.888144048999948, 49.080606322000023 ], [ -121.887370500999936, 49.080605995000099 ], [ -121.882378668999976, 49.080581141000032 ], [ -121.879661793999958, 49.080567500000043 ], [ -121.879162997999984, 49.080523996000046 ], [ -121.878983971999958, 49.080488711000029 ], [ -121.87852099199992, 49.080397509000072 ], [ -121.878201952, 49.08030987500009 ], [ -121.877732771999916, 49.080181051000061 ], [ -121.876822488999935, 49.07993109500007 ], [ -121.876012692999922, 49.079708706000162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8062000", "BldgCostT": "5560000", "sL_LossRatio": "0.985194786018392", "sL_AssetLoss": "6095.15", "sL_BldgLoss": "6004.91", "sL_StrLoss": "5466.51", "sL_NStrLoss": "538.4", "sL_ContLoss": "90.24", "geom_point": "0101000020E6100000BB32C1D3D86A5EC00F7A99D5F98A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.667166622999986, 49.08812696899999 ], [ -121.667171785, 49.088071518000149 ], [ -121.665293362999989, 49.087995719000062 ], [ -121.665628057999967, 49.084401521000039 ], [ -121.665697390999981, 49.084404319000036 ], [ -121.665734476999916, 49.084006022000054 ], [ -121.666530882999922, 49.084038162000127 ], [ -121.666569462999973, 49.083623741000054 ], [ -121.66780663599999, 49.083673658000116 ], [ -121.667865842, 49.083037470000122 ], [ -121.673324925999978, 49.083257557000074 ], [ -121.67325750899991, 49.083982880000086 ], [ -121.673385968999966, 49.083988056000067 ], [ -121.673051873999952, 49.087582281000067 ], [ -121.673025675999966, 49.087581226000054 ], [ -121.672988289, 49.087983405000081 ], [ -121.672987193999987, 49.087995182000029 ], [ -121.672959273999965, 49.087994057000117 ], [ -121.672660240999988, 49.087982009000065 ], [ -121.67264851399996, 49.088108149000028 ], [ -121.672626298999944, 49.088347089000074 ], [ -121.672059851999947, 49.088324265000061 ], [ -121.667166622999986, 49.08812696899999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.987624936245604", "sL_AssetLoss": "2235.14", "sL_BldgLoss": "2207.48", "sL_StrLoss": "1984.98", "sL_NStrLoss": "222.5", "sL_ContLoss": "27.66", "geom_point": "0101000020E610000000327C5DA9655EC0726BD26D098E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.585901838999987, 49.107753692000045 ], [ -121.591363427999909, 49.107977930000047 ], [ -121.591022833999972, 49.111571765000093 ], [ -121.585560824999931, 49.111347509000083 ], [ -121.585901838999987, 49.107753692000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23332917", "BldgCostT": "16091667", "sL_LossRatio": "0.945827155263715", "sL_AssetLoss": "37768", "sL_BldgLoss": "35722", "sL_StrLoss": "27553", "sL_NStrLoss": "8169", "sL_ContLoss": "2046", "geom_point": "0101000020E6100000BAACA15897745EC0AE0507C5208A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.811721658999957, 49.083358073000078 ], [ -121.811732783999943, 49.083234415000121 ], [ -121.811295550999972, 49.083217363000074 ], [ -121.811314758999941, 49.083003879000074 ], [ -121.81102185499999, 49.08299245600012 ], [ -121.811039673, 49.082794435000068 ], [ -121.810080834999923, 49.082757031000085 ], [ -121.810178522999976, 49.081671586000063 ], [ -121.809918196999959, 49.081661430000118 ], [ -121.810109755, 49.079532929000081 ], [ -121.812736105999988, 49.079128098000062 ], [ -121.813506106999967, 49.078982902000085 ], [ -121.814406303999988, 49.07916379100007 ], [ -121.81567041800001, 49.079509798000046 ], [ -121.816745493999946, 49.079215006 ], [ -121.818020095999913, 49.078642497000061 ], [ -121.818568396999979, 49.077983108000069 ], [ -121.819793808999989, 49.077195499000041 ], [ -121.820287894000018, 49.077118606000077 ], [ -121.821204906999981, 49.077155582000046 ], [ -121.821832200999978, 49.077269588000078 ], [ -121.822454518000015, 49.077572906000093 ], [ -121.82283580099994, 49.077658400000118 ], [ -121.823154487999943, 49.077525903000051 ], [ -121.823547397, 49.077107213000062 ], [ -121.823720074999983, 49.076685594000011 ], [ -121.82388342199998, 49.075807583000085 ], [ -121.823940508999925, 49.075500707000074 ], [ -121.823895908999972, 49.075086193000061 ], [ -121.823248994999972, 49.07408219400007 ], [ -121.823283711, 49.07376740600013 ], [ -121.823619292000018, 49.073411404000076 ], [ -121.8242424099999, 49.073192103000103 ], [ -121.824274239999937, 49.073192786000028 ], [ -121.82503661, 49.07320910800005 ], [ -121.826628238999916, 49.073644408000078 ], [ -121.82664061199992, 49.07364779500007 ], [ -121.827867799999979, 49.073841498000085 ], [ -121.830234773999948, 49.073789869000088 ], [ -121.830207450999964, 49.07409498300013 ], [ -121.831531025999965, 49.074146375000048 ], [ -121.831343650999926, 49.076239385000093 ], [ -121.831209197999968, 49.077741138000107 ], [ -121.831072530999933, 49.07773583100002 ], [ -121.831037512999941, 49.078126939000065 ], [ -121.830648080999978, 49.078111820000046 ], [ -121.830620711999956, 49.078417449000078 ], [ -121.830255935, 49.078403286000032 ], [ -121.830227511999951, 49.078720657000126 ], [ -121.829752709, 49.078702220000032 ], [ -121.829745395999964, 49.078783869000105 ], [ -121.829067713999905, 49.078757550000056 ], [ -121.829043280999912, 49.079030284000133 ], [ -121.82878657299996, 49.079020314000076 ], [ -121.828765081, 49.079260190000099 ], [ -121.828570994999964, 49.079252651000125 ], [ -121.828523299999929, 49.079784995000047 ], [ -121.828493623999947, 49.079783842000012 ], [ -121.828362973999972, 49.081241995000084 ], [ -121.826011363999939, 49.081150621000063 ], [ -121.826003578999959, 49.081237451000021 ], [ -121.825832875999978, 49.081230817000034 ], [ -121.825745920999935, 49.082200654000097 ], [ -121.825212092999962, 49.082179905000025 ], [ -121.825197505999938, 49.082342566000108 ], [ -121.824584599999952, 49.082318739000108 ], [ -121.82456848899993, 49.08249838200009 ], [ -121.82173988299995, 49.082388371000093 ], [ -121.821528098999948, 49.082380131000043 ], [ -121.82151509599997, 49.082524995000021 ], [ -121.82151276799999, 49.082550954000098 ], [ -121.821474816, 49.082549478000068 ], [ -121.820788642999958, 49.082522778000111 ], [ -121.820759396, 49.082848591000136 ], [ -121.820755455999958, 49.082892471000022 ], [ -121.820640680999958, 49.082888005000065 ], [ -121.820129325999943, 49.082868104000099 ], [ -121.820116434999946, 49.083011687000045 ], [ -121.818989362999943, 49.082967815000032 ], [ -121.818975594999955, 49.083121113000054 ], [ -121.817603357999943, 49.083067682000042 ], [ -121.817591142999945, 49.083203646000136 ], [ -121.817215753999932, 49.083189027000124 ], [ -121.817181446999911, 49.08357085500004 ], [ -121.811721658999957, 49.083358073000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13538167", "BldgCostT": "9336667", "sL_LossRatio": "0.924193278715934", "sL_AssetLoss": "29905", "sL_BldgLoss": "27638", "sL_StrLoss": "20354", "sL_NStrLoss": "7284", "sL_ContLoss": "2267", "geom_point": "0101000020E61000008EC21EA80D745EC0CAD40BDBA2894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.814646908, 49.078824788000077 ], [ -121.813401090999889, 49.078209502000092 ], [ -121.813358286999943, 49.078280707000047 ], [ -121.813008908999947, 49.077997309000104 ], [ -121.812655804999963, 49.077904783000079 ], [ -121.811061117999927, 49.078112696000076 ], [ -121.810205859999897, 49.078464981000074 ], [ -121.810241694999917, 49.078066752000076 ], [ -121.810322941999971, 49.078069923000058 ], [ -121.810338200999936, 49.077900354000029 ], [ -121.810962138999955, 49.077924696000075 ], [ -121.810982285999899, 49.077700769000032 ], [ -121.812028162999979, 49.077741564000092 ], [ -121.812047651999976, 49.077524894000092 ], [ -121.813577137999971, 49.077584533000092 ], [ -121.813700125999915, 49.076216650000013 ], [ -121.811921900999934, 49.076147309000085 ], [ -121.811853361999951, 49.076909302000075 ], [ -121.811030385, 49.076877201000066 ], [ -121.811022331999936, 49.076966721000147 ], [ -121.805563344999982, 49.076753625000059 ], [ -121.805666741999971, 49.075605809000066 ], [ -121.80588714299995, 49.073158933000052 ], [ -121.806710052000014, 49.073191075000111 ], [ -121.806718113000031, 49.073101553000093 ], [ -121.809743060999963, 49.073219647000037 ], [ -121.809852744999901, 49.072000725000066 ], [ -121.815311196, 49.072213605000094 ], [ -121.815270132999956, 49.072670533000064 ], [ -121.816064397, 49.072701487000089 ], [ -121.815897631999974, 49.074557452000107 ], [ -121.81772971499997, 49.074628827000062 ], [ -121.820114377, 49.074721683000099 ], [ -121.81997855199991, 49.076234701000011 ], [ -121.82123937799993, 49.076283775000107 ], [ -121.821263757999986, 49.07601211000005 ], [ -121.821536649, 49.076022729000066 ], [ -121.821735860999965, 49.073802714000074 ], [ -121.821991546999925, 49.073812663000076 ], [ -121.82201666499995, 49.073532721000085 ], [ -121.822284368999988, 49.073543137000051 ], [ -121.822309866999916, 49.073258926000044 ], [ -121.822735122999944, 49.073275471000109 ], [ -121.822744553999925, 49.07317033600004 ], [ -121.822932901999962, 49.073177664000042 ], [ -121.82275838299995, 49.073411397000029 ], [ -121.822723586999956, 49.073671995000034 ], [ -121.822746992999939, 49.074418309000073 ], [ -121.822845706999885, 49.074330005000022 ], [ -121.822776589999961, 49.07551639800009 ], [ -121.823101820999938, 49.076212799000061 ], [ -121.823050111999976, 49.076696989000055 ], [ -121.822909891, 49.07680379100006 ], [ -121.820629800999924, 49.076520409000139 ], [ -121.819930599999921, 49.07656598800007 ], [ -121.819009409000031, 49.076763985000085 ], [ -121.818440305999943, 49.077081608000107 ], [ -121.817266800999931, 49.078068486000127 ], [ -121.816797085999951, 49.078756400000053 ], [ -121.815819216999927, 49.079034205000049 ], [ -121.81547638799999, 49.079058411000091 ], [ -121.81454798399993, 49.078931603000065 ], [ -121.814646908, 49.078824788000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.902845966026937", "sL_AssetLoss": "7617.8", "sL_BldgLoss": "6877.7", "sL_StrLoss": "4738.7", "sL_NStrLoss": "2139", "sL_ContLoss": "740.1", "geom_point": "0101000020E6100000C8C7B457DB7B5EC0BBEF208F438A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.933404194999937, 49.078447124000064 ], [ -121.937246363999947, 49.078592545000063 ], [ -121.936953392999982, 49.081949988000062 ], [ -121.936276702, 49.081943789000036 ], [ -121.935549513999931, 49.082036392000084 ], [ -121.934524103999962, 49.081936711000104 ], [ -121.933684197999952, 49.081577793000058 ], [ -121.933264974999929, 49.081304293000152 ], [ -121.933133294999934, 49.081059391000025 ], [ -121.93354068099994, 49.080596494000069 ], [ -121.933601976999981, 49.080308793000064 ], [ -121.933270592999975, 49.07978330700012 ], [ -121.933446906999933, 49.078525694000092 ], [ -121.933404194999937, 49.078447124000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10171750", "BldgCostT": "7015000", "sL_LossRatio": "0.961785786809666", "sL_AssetLoss": "13296.1", "sL_BldgLoss": "12788", "sL_StrLoss": "10588.2", "sL_NStrLoss": "2199.8", "sL_ContLoss": "508.1", "geom_point": "0101000020E610000091859E831D775EC0C7AF2F4494894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.879836995999952, 49.077910492000093 ], [ -121.878033402999947, 49.077731003000039 ], [ -121.875692299999955, 49.077708196000081 ], [ -121.874279183999974, 49.077802191000103 ], [ -121.873703912999986, 49.077760906000073 ], [ -121.870659221000011, 49.076228506000056 ], [ -121.869465495999918, 49.075695796000083 ], [ -121.868868307999932, 49.07555489600005 ], [ -121.868825516999934, 49.075544801000078 ], [ -121.867828285999948, 49.075409491000102 ], [ -121.866117790999922, 49.075346889000087 ], [ -121.862872603999961, 49.075378192000116 ], [ -121.859488210000023, 49.07548930800003 ], [ -121.858263096999949, 49.075755604000037 ], [ -121.857537219999969, 49.075784100000085 ], [ -121.856761612999932, 49.075587605000038 ], [ -121.854948517999944, 49.074616299000034 ], [ -121.853087192999951, 49.073968199000028 ], [ -121.851558680999943, 49.073754597000075 ], [ -121.849764203999953, 49.07383578900005 ], [ -121.846672208999976, 49.074246006000081 ], [ -121.844088091999978, 49.074085012000097 ], [ -121.842852814999972, 49.073886288000047 ], [ -121.842919732999988, 49.073136718000036 ], [ -121.846444848999951, 49.073273139000065 ], [ -121.846493908999889, 49.072723102000054 ], [ -121.848655113999939, 49.07280668300006 ], [ -121.848685934999963, 49.0724609540001 ], [ -121.851458214999937, 49.072568102000083 ], [ -121.854144614999939, 49.072671863000032 ], [ -121.854126408999932, 49.072876366000074 ], [ -121.855568177999928, 49.072932025000128 ], [ -121.855548889999938, 49.073148760000095 ], [ -121.856630355999954, 49.07319049800001 ], [ -121.856618784999966, 49.073320553000087 ], [ -121.857184545999928, 49.073342383000046 ], [ -121.857170008999958, 49.073505784000083 ], [ -121.857638840999954, 49.073523871000134 ], [ -121.857624568999981, 49.073684311000072 ], [ -121.857582892999943, 49.074152805000047 ], [ -121.858082064999905, 49.074172061000105 ], [ -121.858075878999898, 49.07424160500009 ], [ -121.858670648999947, 49.074264545000126 ], [ -121.858670191999977, 49.074269682000072 ], [ -121.859042334999941, 49.07428403400008 ], [ -121.859045813999941, 49.074244908000026 ], [ -121.85970491099999, 49.074270323000128 ], [ -121.85970878699996, 49.074226723000045 ], [ -121.860829401999979, 49.074269926000092 ], [ -121.860839746999915, 49.074153562000063 ], [ -121.860843747999979, 49.074108550000034 ], [ -121.861271503999973, 49.074125038000076 ], [ -121.861271928999912, 49.074120260000051 ], [ -121.8633561499999, 49.07420057300007 ], [ -121.863357540999985, 49.074184910000064 ], [ -121.868816489999944, 49.074395073000105 ], [ -121.868811049999934, 49.074456398000081 ], [ -121.86978456099996, 49.07449384800006 ], [ -121.86977215899999, 49.07463366300005 ], [ -121.870546043999965, 49.074663427000054 ], [ -121.870527634999959, 49.074871011000049 ], [ -121.870608340999922, 49.074874114000117 ], [ -121.870985440999917, 49.074888616000074 ], [ -121.870960909999951, 49.075165251000065 ], [ -121.871365444999967, 49.075180806000063 ], [ -121.871342001999892, 49.075445225000067 ], [ -121.871752247999922, 49.075460997000064 ], [ -121.871731628999925, 49.075693582000035 ], [ -121.872116749999961, 49.075708388000102 ], [ -121.872095976999958, 49.075942718000178 ], [ -121.872682746999956, 49.075965273000058 ], [ -121.872648698999924, 49.076349387000143 ], [ -121.872871142999927, 49.076357937000111 ], [ -121.872876734999949, 49.076294844000095 ], [ -121.878335973000034, 49.07650452300004 ], [ -121.878308977999907, 49.076809499000014 ], [ -121.878689781999981, 49.0768241150001 ], [ -121.878671585999939, 49.077029692000039 ], [ -121.87931277399997, 49.077054298000036 ], [ -121.879304503999947, 49.077147732000064 ], [ -121.879918257999961, 49.077171282000045 ], [ -121.87987412699999, 49.077670013000017 ], [ -121.880516769999957, 49.077694668000063 ], [ -121.880484559999985, 49.078058737000092 ], [ -121.879836995999952, 49.077910492000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3675750", "BldgCostT": "2535000", "sL_LossRatio": "0.920938815523903", "sL_AssetLoss": "6936.4", "sL_BldgLoss": "6388", "sL_StrLoss": "4721", "sL_NStrLoss": "1667", "sL_ContLoss": "548.4", "geom_point": "0101000020E6100000047289238F705EC0362593322D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.756706628999922, 49.080680100000073 ], [ -121.756717515999938, 49.080560646000031 ], [ -121.756268122, 49.080542888000139 ], [ -121.756286452999944, 49.080341788000091 ], [ -121.755957322999933, 49.080328781000027 ], [ -121.755958716999928, 49.080313498000173 ], [ -121.755530410999938, 49.080296570000044 ], [ -121.755540641, 49.080184356000082 ], [ -121.75515870599996, 49.080169260000019 ], [ -121.75517653799993, 49.079973672000108 ], [ -121.754713000999928, 49.07995534800007 ], [ -121.754831828999897, 49.078652167000058 ], [ -121.752872820999926, 49.078574703000058 ], [ -121.753007512999929, 49.077098138000046 ], [ -121.753350402999942, 49.077215403000068 ], [ -121.754752614999958, 49.077591402000039 ], [ -121.755657606999947, 49.078060005000033 ], [ -121.756685183999977, 49.079159495000113 ], [ -121.756954896999957, 49.079314714000077 ], [ -121.757579693999929, 49.07950128800006 ], [ -121.758620090999941, 49.079521211000063 ], [ -121.760293613, 49.079395907000041 ], [ -121.76165627799999, 49.079176594000089 ], [ -121.762275580999983, 49.078985702000118 ], [ -121.764212280999942, 49.078182145000078 ], [ -121.763995506999933, 49.080564734000092 ], [ -121.762581365999949, 49.080508942000108 ], [ -121.762566754999952, 49.080669467000099 ], [ -121.762187803999936, 49.080654514000067 ], [ -121.762165851999981, 49.080895676000132 ], [ -121.756706628999922, 49.080680100000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "0.986478040431022", "sL_AssetLoss": "3855.95", "sL_BldgLoss": "3803.81", "sL_StrLoss": "3448.71", "sL_NStrLoss": "355.1", "sL_ContLoss": "52.14", "geom_point": "0101000020E61000008CE58EE53A6A5EC07B7D52921A8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.660281996999956, 49.092640116000133 ], [ -121.66329607899999, 49.092761852000173 ], [ -121.662961142999919, 49.096355997000025 ], [ -121.662468815999986, 49.096336118000046 ], [ -121.662457828999962, 49.096454008000066 ], [ -121.661868498, 49.096430210000051 ], [ -121.661854410999965, 49.096581322000127 ], [ -121.656393821999984, 49.09636065800008 ], [ -121.656616092999968, 49.093979169000143 ], [ -121.656729262999974, 49.092766534000155 ], [ -121.657318543999935, 49.092790360000031 ], [ -121.657332643999965, 49.092639247000086 ], [ -121.657824929999919, 49.092659150000031 ], [ -121.657835928999958, 49.092541259000079 ], [ -121.660281996999956, 49.092640116000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189084", "BldgCostT": "4268334", "sL_LossRatio": "0.971571322267612", "sL_AssetLoss": "6584.9", "sL_BldgLoss": "6397.7", "sL_StrLoss": "5429.2", "sL_NStrLoss": "968.5", "sL_ContLoss": "187.2", "geom_point": "0101000020E6100000886832EB5E6C5EC0D35E6D5A638A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.690622929999947, 49.082771275000134 ], [ -121.690684802999954, 49.082102887000069 ], [ -121.690249233999978, 49.082085408000069 ], [ -121.690581961999925, 49.0784910980001 ], [ -121.691541678999926, 49.078529611000064 ], [ -121.696040619999934, 49.078710032000032 ], [ -121.69590185, 49.080211071000086 ], [ -121.696337404999937, 49.080228528000049 ], [ -121.696230035999974, 49.081389944000108 ], [ -121.696005106999905, 49.0838228450001 ], [ -121.690545849999964, 49.083603911000068 ], [ -121.690622929999947, 49.082771275000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9628000", "BldgCostT": "6640000", "sL_LossRatio": "0.902226847034339", "sL_AssetLoss": "24025", "sL_BldgLoss": "21676", "sL_StrLoss": "14465", "sL_NStrLoss": "7211", "sL_ContLoss": "2349", "geom_point": "0101000020E61000003D7C5F7D787B5EC0C57F4FE67E8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935137284999939, 49.085012453000076 ], [ -121.933795796999945, 49.084423282000053 ], [ -121.933618572999976, 49.084344490000056 ], [ -121.932503771999905, 49.083848696000068 ], [ -121.931764446, 49.083525849000054 ], [ -121.931627578999951, 49.083466090000059 ], [ -121.931102887999927, 49.083236948000092 ], [ -121.929406175999972, 49.082496007000046 ], [ -121.928950905999955, 49.082346187000056 ], [ -121.928468806999916, 49.08222151000011 ], [ -121.92757690699996, 49.082083992000072 ], [ -121.925496184999986, 49.081982159000034 ], [ -121.923240297999925, 49.081871706000079 ], [ -121.920022259999953, 49.081717926000103 ], [ -121.919135264999909, 49.08167552599999 ], [ -121.917999002999977, 49.081621183000053 ], [ -121.914753360999939, 49.081382049000105 ], [ -121.91446926199994, 49.08136111 ], [ -121.914519943999963, 49.080783522000033 ], [ -121.91461001299993, 49.080797294000057 ], [ -121.915480901999985, 49.081075006000134 ], [ -121.916504203999978, 49.081228908000085 ], [ -121.917270895999977, 49.081190413000051 ], [ -121.91824890799991, 49.080929794000099 ], [ -121.91878754899993, 49.080839926000102 ], [ -121.919418102999941, 49.080734708000101 ], [ -121.920839688999976, 49.080270410000054 ], [ -121.921836191999915, 49.079786089000045 ], [ -121.923693313999976, 49.079371691000048 ], [ -121.92335720599999, 49.07970070100005 ], [ -121.923325009999985, 49.079907196000086 ], [ -121.923642821000016, 49.079757706000109 ], [ -121.924216098999963, 49.079232102000049 ], [ -121.926006491999914, 49.078736493000093 ], [ -121.927752915999946, 49.078383296000034 ], [ -121.928701134, 49.078533580000077 ], [ -121.928653407999917, 49.079079406000091 ], [ -121.929229985999939, 49.07910126200003 ], [ -121.929212243999984, 49.079304200000124 ], [ -121.930944790999945, 49.079369859000089 ], [ -121.931471491999972, 49.080028304000088 ], [ -121.9315096, 49.080164299000018 ], [ -121.931698977999972, 49.080840095000021 ], [ -121.931716006999977, 49.081371304000044 ], [ -121.931758295999956, 49.08191108700008 ], [ -121.93215870899995, 49.082426587000015 ], [ -121.93274009, 49.082774103000055 ], [ -121.934215300999981, 49.083615794000067 ], [ -121.935974507999958, 49.083964787000092 ], [ -121.936251000999945, 49.083905903000129 ], [ -121.937432294999923, 49.083654291000144 ], [ -121.93836420299999, 49.083608684000104 ], [ -121.93853423099992, 49.083632793000035 ], [ -121.93853371199998, 49.083638736000069 ], [ -121.938575901, 49.083639125000026 ], [ -121.938574351999989, 49.083711775000069 ], [ -121.938612629999952, 49.083713223000075 ], [ -121.938579087, 49.084097739000107 ], [ -121.938668552999957, 49.084101123000032 ], [ -121.93865649599995, 49.084239340000117 ], [ -121.938717131999979, 49.084294661000051 ], [ -121.938840042999942, 49.084451167000061 ], [ -121.938969429999986, 49.084452357000067 ], [ -121.938965771999904, 49.084624000000105 ], [ -121.938987860999958, 49.084681008000047 ], [ -121.940204486999988, 49.084727 ], [ -121.940243775999988, 49.084777995000088 ], [ -121.940559583000024, 49.085477437000058 ], [ -121.940939051999948, 49.087305839000095 ], [ -121.941000517999953, 49.087602030000021 ], [ -121.940949770999978, 49.087579532000063 ], [ -121.940716048999903, 49.087475933000078 ], [ -121.940152214999912, 49.087226613000048 ], [ -121.940041705999946, 49.0871777750001 ], [ -121.939915507999942, 49.087121938000124 ], [ -121.939439756999917, 49.086911555000015 ], [ -121.939014757999956, 49.086723611000046 ], [ -121.937251473999936, 49.085944565000034 ], [ -121.935963539999932, 49.085376697000136 ], [ -121.935757140999982, 49.085285682000084 ], [ -121.935137284999939, 49.085012453000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "0.943127582988935", "sL_AssetLoss": "3750.5", "sL_BldgLoss": "3537.2", "sL_StrLoss": "2665.2", "sL_NStrLoss": "872", "sL_ContLoss": "213.3", "geom_point": "0101000020E61000008AABCABEAB755EC0C65F078CFD884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.840894185999929, 49.071300696000023 ], [ -121.840770098999897, 49.070805087000103 ], [ -121.840343711999978, 49.070863494000101 ], [ -121.83990800199993, 49.071371895000013 ], [ -121.839235905999885, 49.071383311000027 ], [ -121.837860388, 49.071621096000051 ], [ -121.83779974299992, 49.071615132000069 ], [ -121.836427705999981, 49.071480188000109 ], [ -121.835791135999941, 49.071327768000053 ], [ -121.835827271, 49.070923677000067 ], [ -121.83598333399999, 49.069178341000033 ], [ -121.836092472999951, 49.069182574000031 ], [ -121.836116642999954, 49.068912243000106 ], [ -121.841574850999962, 49.069123791000059 ], [ -121.841443968999982, 49.070589507000108 ], [ -121.84131464399999, 49.072037682000079 ], [ -121.84085812099994, 49.071686707 ], [ -121.840894185999929, 49.071300696000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245896166", "BldgCostT": "163331666", "sL_LossRatio": "0.88368496159006", "sL_AssetLoss": "585135", "sL_BldgLoss": "517075", "sL_StrLoss": "387935", "sL_NStrLoss": "129140", "sL_ContLoss": "68060", "geom_point": "0101000020E61000003F8EE6C84A7C5EC02F7236BA568D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935143552999961, 49.107262362000071 ], [ -121.93516448299998, 49.105454349000048 ], [ -121.935169574999946, 49.10495681300003 ], [ -121.9351732639999, 49.104522335000041 ], [ -121.935179646999956, 49.103821950000039 ], [ -121.93729018099999, 49.103817008000107 ], [ -121.93728450699993, 49.10458858500003 ], [ -121.93727269299994, 49.106292408000101 ], [ -121.938409899999954, 49.106293907000094 ], [ -121.938418178999939, 49.104676588000075 ], [ -121.938482784999934, 49.104595165000035 ], [ -121.938680369999958, 49.104528668000071 ], [ -121.939922676999984, 49.104550380000035 ], [ -121.940065987999944, 49.104525173000034 ], [ -121.940136175999911, 49.10442766799999 ], [ -121.940140765999942, 49.103825548000053 ], [ -121.940414396999969, 49.1038246150001 ], [ -121.940647835999954, 49.10382384100005 ], [ -121.94132219, 49.103821493000083 ], [ -121.942258096999964, 49.103820814000123 ], [ -121.942879498999929, 49.103822612000052 ], [ -121.943071270999951, 49.103823155000114 ], [ -121.943292370999956, 49.103823749000078 ], [ -121.943246989999935, 49.103542536000084 ], [ -121.943190085999944, 49.103409625000033 ], [ -121.943009722999989, 49.103215264 ], [ -121.942891753999902, 49.102980891000122 ], [ -121.942818010999957, 49.102459605000028 ], [ -121.942760962999941, 49.102351167000073 ], [ -121.942550033999936, 49.101949953 ], [ -121.942423648999977, 49.101827968000073 ], [ -121.942294576999956, 49.101752758000067 ], [ -121.942106740999989, 49.101691570000085 ], [ -121.941891552999962, 49.101660902000049 ], [ -121.94071090099996, 49.101640650000014 ], [ -121.940713177999967, 49.100750743000098 ], [ -121.940716884999958, 49.100190004000027 ], [ -121.944370685999914, 49.100207190000056 ], [ -121.944520695999955, 49.100137108000062 ], [ -121.944594249999966, 49.100037282000066 ], [ -121.944924702999984, 49.09958879300008 ], [ -121.945567000999986, 49.099184390000104 ], [ -121.945588029999968, 49.099171147000021 ], [ -121.945840812999933, 49.099012002000066 ], [ -121.945940489999941, 49.098889511000095 ], [ -121.945980585999948, 49.098802165000023 ], [ -121.946004805999934, 49.098749512000047 ], [ -121.946019976999963, 49.09857515500002 ], [ -121.946648800999981, 49.098574988000053 ], [ -121.947255796999968, 49.098574903000042 ], [ -121.947237390999973, 49.099116097000021 ], [ -121.947147784999942, 49.099386310000128 ], [ -121.947077619999973, 49.099597910000064 ], [ -121.947091445999945, 49.099710503000082 ], [ -121.947127743999943, 49.100006376000046 ], [ -121.947128097999922, 49.100009202000081 ], [ -121.946979705999922, 49.100187497000022 ], [ -121.946482170999957, 49.100009568000111 ], [ -121.946153838999976, 49.099892150000095 ], [ -121.945956597999967, 49.099821601000066 ], [ -121.945818092999929, 49.099823616000094 ], [ -121.945703296999966, 49.099883312000053 ], [ -121.94561690899998, 49.100011239000011 ], [ -121.94554598799999, 49.100116303000057 ], [ -121.945502678999929, 49.100313911000114 ], [ -121.945552594999967, 49.100401506000082 ], [ -121.946713503999902, 49.100837546000079 ], [ -121.947064802999975, 49.101050951000055 ], [ -121.947322747999948, 49.101361108000027 ], [ -121.947557172999922, 49.101642994000024 ], [ -121.948173975, 49.101325403000047 ], [ -121.94847562399994, 49.101102343000044 ], [ -121.948896153999954, 49.100631301000135 ], [ -121.949212971999884, 49.100186960000094 ], [ -121.949855531999972, 49.100359977000039 ], [ -121.949976568999944, 49.100449284000085 ], [ -121.95003178199994, 49.100570407000085 ], [ -121.950002248999937, 49.100720784000082 ], [ -121.949213253999972, 49.101584615000093 ], [ -121.9488815, 49.101822759000079 ], [ -121.948532683999957, 49.102113605000099 ], [ -121.948520713, 49.102125443 ], [ -121.947635580999972, 49.10209206600009 ], [ -121.94762456699999, 49.102612923000066 ], [ -121.947213631999944, 49.102609174000065 ], [ -121.947202215999965, 49.103148811000054 ], [ -121.946791277999949, 49.103145061000063 ], [ -121.946785566999964, 49.103414880000038 ], [ -121.946374626999898, 49.103411130000033 ], [ -121.946368914999965, 49.10368094800004 ], [ -121.945957970999956, 49.103677196000078 ], [ -121.945917963999975, 49.105565921000057 ], [ -121.945612440999966, 49.105563131000046 ], [ -121.945573980999882, 49.106004561000091 ], [ -121.945465592999952, 49.106106373000067 ], [ -121.944356803999966, 49.106829829000091 ], [ -121.941230245000014, 49.107390999000074 ], [ -121.941015796999977, 49.107520525000034 ], [ -121.941011662999983, 49.107523008000058 ], [ -121.940669462999935, 49.107947635000073 ], [ -121.940662647999972, 49.107956102000124 ], [ -121.940251730999961, 49.108716624000046 ], [ -121.940102624999952, 49.108671140000084 ], [ -121.93986145099997, 49.108597564000092 ], [ -121.939365038999966, 49.108507589000027 ], [ -121.936706846999954, 49.108222254000097 ], [ -121.936327471999974, 49.108094300000054 ], [ -121.936269759999988, 49.108064977 ], [ -121.935658322000023, 49.107754317000058 ], [ -121.935424951999963, 49.107602108000087 ], [ -121.935234051999942, 49.107481277000076 ], [ -121.935175108999957, 49.107403292000043 ], [ -121.935143552999961, 49.107262362000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38711334", "BldgCostT": "21803334", "sL_LossRatio": "0.934965047372343", "sL_AssetLoss": "11272.4", "sL_BldgLoss": "10539.3", "sL_StrLoss": "8382.2", "sL_NStrLoss": "2157.1", "sL_ContLoss": "733.1", "geom_point": "0101000020E6100000756372518A7D5EC00943AA496C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.960721039999953, 49.095683034000039 ], [ -121.961043580999942, 49.095695160000041 ], [ -121.961335490999943, 49.095899609000078 ], [ -121.96189850199994, 49.096453691000072 ], [ -121.96276609899995, 49.096883813 ], [ -121.963854991999966, 49.097271207000105 ], [ -121.963939587999931, 49.097310780000072 ], [ -121.96393610899996, 49.097313664000104 ], [ -121.963820485999989, 49.097409503000065 ], [ -121.963806993999938, 49.097420680000049 ], [ -121.960310368999984, 49.098190113000072 ], [ -121.9605285909999, 49.09567579900007 ], [ -121.960721039999953, 49.095683034000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.950194110406212", "sL_AssetLoss": "4224.4", "sL_BldgLoss": "4014", "sL_StrLoss": "3361", "sL_NStrLoss": "653", "sL_ContLoss": "210.4", "geom_point": "0101000020E6100000F16072401E7D5EC01CACC5C80E8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.954386588999938, 49.093768655000147 ], [ -121.954847758999961, 49.093772833000038 ], [ -121.95500920799999, 49.093808905000095 ], [ -121.955616001999971, 49.093930968000102 ], [ -121.955611858999987, 49.094128357000073 ], [ -121.95560218899999, 49.094589272000071 ], [ -121.954369583999934, 49.094578112000157 ], [ -121.954384360999939, 49.093874679000123 ], [ -121.954386588999938, 49.093768655000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "432805417", "BldgCostT": "271641667", "sL_LossRatio": "0.880659137320178", "sL_AssetLoss": "684397.6", "sL_BldgLoss": "602721", "sL_StrLoss": "462397", "sL_NStrLoss": "140324", "sL_ContLoss": "81676.6", "geom_point": "0101000020E61000007FD6046A947C5EC0B5C2DB20668C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949213253999972, 49.101584615000093 ], [ -121.950002248999937, 49.100720784000082 ], [ -121.95003178199994, 49.100570407000085 ], [ -121.949976568999944, 49.100449284000085 ], [ -121.949855531999972, 49.100359977000039 ], [ -121.949212971999884, 49.100186960000094 ], [ -121.949583406999963, 49.099393924000054 ], [ -121.949662819999929, 49.099095804000065 ], [ -121.949664505999934, 49.098969105000116 ], [ -121.949669717999981, 49.098591061000079 ], [ -121.94972339399996, 49.097312678000058 ], [ -121.949678013999957, 49.097157680000073 ], [ -121.949576411999914, 49.097018600000062 ], [ -121.949419204999913, 49.096904469000094 ], [ -121.949016593999914, 49.096776574000017 ], [ -121.948464535999932, 49.096728715000026 ], [ -121.947239567999986, 49.096479619000078 ], [ -121.94696413299998, 49.096464709000038 ], [ -121.946481361999943, 49.096580864000074 ], [ -121.946243465999942, 49.096717056000045 ], [ -121.946077202999959, 49.096927193000113 ], [ -121.946010081999987, 49.097147381000042 ], [ -121.946015519999946, 49.097918551000078 ], [ -121.946019976999963, 49.09857515500002 ], [ -121.946004805999934, 49.098749512000047 ], [ -121.945980585999948, 49.098802165000023 ], [ -121.945940489999941, 49.098889511000095 ], [ -121.945840812999933, 49.099012002000066 ], [ -121.945588029999968, 49.099171147000021 ], [ -121.945567000999986, 49.099184390000104 ], [ -121.944924702999984, 49.09958879300008 ], [ -121.944594249999966, 49.100037282000066 ], [ -121.944520695999955, 49.100137108000062 ], [ -121.944370685999914, 49.100207190000056 ], [ -121.940716884999958, 49.100190004000027 ], [ -121.939652300999953, 49.100315696000074 ], [ -121.938534290999939, 49.100315904000126 ], [ -121.938089993999952, 49.100272889000053 ], [ -121.93768510699995, 49.100234188000051 ], [ -121.936967578999941, 49.100214196000181 ], [ -121.935841408999963, 49.100213996000015 ], [ -121.935827701999983, 49.100214008000115 ], [ -121.935156300999964, 49.100214279000099 ], [ -121.935154627999935, 49.099995829000129 ], [ -121.935145182999989, 49.098763618000064 ], [ -121.935143819999979, 49.098585305000086 ], [ -121.935888614999939, 49.098025621000019 ], [ -121.93656000499999, 49.097397221000065 ], [ -121.937898716999882, 49.096845511000069 ], [ -121.938235438999968, 49.096644517000115 ], [ -121.938439719999963, 49.096580121000088 ], [ -121.939052319999945, 49.09646800800008 ], [ -121.939415127999951, 49.096313095000049 ], [ -121.939267816999916, 49.096070409000063 ], [ -121.938939078999923, 49.09602575100012 ], [ -121.938971184999971, 49.093148430000035 ], [ -121.942398785999956, 49.093277946000086 ], [ -121.942227088, 49.095247515000104 ], [ -121.943038093999974, 49.095278143 ], [ -121.94313758499996, 49.094136677000122 ], [ -121.944515126999946, 49.094188688000038 ], [ -121.944520212999976, 49.093948726000065 ], [ -121.944566590999941, 49.093949151000132 ], [ -121.944183912999975, 49.093934705000045 ], [ -121.944261800999982, 49.093040825000102 ], [ -121.944495234999948, 49.093039707000088 ], [ -121.946241938999933, 49.093049783000019 ], [ -121.948560765999957, 49.092869284000052 ], [ -121.951341594, 49.092982040000045 ], [ -121.951829930999963, 49.092880928000056 ], [ -121.95191726099992, 49.092919042000069 ], [ -121.951915729999925, 49.092936635000086 ], [ -121.951965861999938, 49.092937091000053 ], [ -121.952346662999943, 49.093066644000068 ], [ -121.952343637999959, 49.093210389000077 ], [ -121.952754493999933, 49.09321411800002 ], [ -121.952747132999932, 49.093564027000127 ], [ -121.952731788999955, 49.094293393000036 ], [ -121.951910057999925, 49.094285936000077 ], [ -121.951904376999892, 49.094555754000055 ], [ -121.95177501799995, 49.094554580000107 ], [ -121.951724676, 49.095133404000109 ], [ -121.951481456, 49.095124239000064 ], [ -121.951470774999947, 49.095631298000043 ], [ -121.951948599999952, 49.095635638000054 ], [ -121.952028189999922, 49.094720492000079 ], [ -121.957489938999927, 49.094926145000038 ], [ -121.957177685999952, 49.098521163000086 ], [ -121.956442882999937, 49.098493512000054 ], [ -121.955510774999965, 49.098265071000085 ], [ -121.951913622999911, 49.101544403000069 ], [ -121.950938908999973, 49.101368113000042 ], [ -121.95094616399993, 49.101023936000026 ], [ -121.950535243000033, 49.10102020099999 ], [ -121.950529552999967, 49.101290019000032 ], [ -121.950505965999966, 49.101289805000057 ], [ -121.950037232999975, 49.101205022000038 ], [ -121.9488815, 49.101822759000079 ], [ -121.949213253999972, 49.101584615000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.893166506256015", "sL_AssetLoss": "5195", "sL_BldgLoss": "4640", "sL_StrLoss": "3520", "sL_NStrLoss": "1120", "sL_ContLoss": "555", "geom_point": "0101000020E61000007738B2D92E7C5EC0AD1E8BC88B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93984908399996, 49.089829067000025 ], [ -121.940846815, 49.089846286000075 ], [ -121.940942351999936, 49.09057342200007 ], [ -121.939787964999979, 49.090529796000062 ], [ -121.93984908399996, 49.089829067000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "351243666", "BldgCostT": "231711666", "sL_LossRatio": "0.903688595457841", "sL_AssetLoss": "494456.5", "sL_BldgLoss": "446834.7", "sL_StrLoss": "342217.7", "sL_NStrLoss": "104617", "sL_ContLoss": "47621.8", "geom_point": "0101000020E6100000E32F80323E7B5EC03CE0E3E1F78C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.918389848999951, 49.105041391000057 ], [ -121.918401577999973, 49.104501759000073 ], [ -121.918812522999986, 49.104505610000075 ], [ -121.918818385999913, 49.104235794000047 ], [ -121.919229328999933, 49.104239643000021 ], [ -121.919258627999952, 49.102890566000056 ], [ -121.91966956099999, 49.102894411000101 ], [ -121.919692988999913, 49.101815149000053 ], [ -121.92092576, 49.10182668000003 ], [ -121.920931609999968, 49.101556865000056 ], [ -121.92109688, 49.101558409000155 ], [ -121.921214142999943, 49.100220471000036 ], [ -121.92282206199999, 49.100281497 ], [ -121.92282507499999, 49.100247110000048 ], [ -121.927022131999976, 49.100406291000084 ], [ -121.927061117999955, 49.099960810000056 ], [ -121.927952341999969, 49.099994590000101 ], [ -121.927957971999916, 49.099733243000102 ], [ -121.92836888, 49.09973705700002 ], [ -121.928380499999975, 49.099197425000114 ], [ -121.928791401999902, 49.099201239000145 ], [ -121.928793836999915, 49.099088130000084 ], [ -121.928480824999923, 49.099076270000062 ], [ -121.928485604999977, 49.099021622000038 ], [ -121.924532496, 49.098871747000018 ], [ -121.924531672999976, 49.098881143000064 ], [ -121.921919988999946, 49.098782045000149 ], [ -121.921898375999959, 49.099028706000084 ], [ -121.920321757999972, 49.098968852000091 ], [ -121.920172293999912, 49.100673842000056 ], [ -121.918385750999974, 49.100605991000101 ], [ -121.918221913999929, 49.102473985000124 ], [ -121.917235972999976, 49.102436527000087 ], [ -121.917135722999944, 49.102432717000113 ], [ -121.917079994999966, 49.100394678000036 ], [ -121.918514888999965, 49.100359929000035 ], [ -121.918479605999934, 49.097901254000107 ], [ -121.918666404999968, 49.097848839000108 ], [ -121.918847805999974, 49.097764639000047 ], [ -121.919109482999943, 49.09754554900006 ], [ -121.919316652999925, 49.097448831000058 ], [ -121.919757642999969, 49.097309573000075 ], [ -121.920809001999956, 49.096849939000016 ], [ -121.921092957999988, 49.096767852000028 ], [ -121.921386866999953, 49.096743842000052 ], [ -121.921837837999931, 49.096763950000081 ], [ -121.922338038999939, 49.096786265000091 ], [ -121.923209815999925, 49.096765246000061 ], [ -121.923614463999968, 49.096681400000108 ], [ -121.924279081999913, 49.096679570000042 ], [ -121.925795896999915, 49.09675514100006 ], [ -121.926426003999907, 49.096959372000093 ], [ -121.926909758999955, 49.097001069000065 ], [ -121.927135821999954, 49.097020544000031 ], [ -121.927462892999955, 49.097087044 ], [ -121.927794272999989, 49.097214128000104 ], [ -121.929376112999961, 49.097219961000093 ], [ -121.929688440999925, 49.097283209000118 ], [ -121.930603635999944, 49.09728270600008 ], [ -121.932343243999966, 49.097051008000086 ], [ -121.932800911999905, 49.097222531000099 ], [ -121.932982591999988, 49.096977821000074 ], [ -121.933188767999923, 49.096985629000052 ], [ -121.933872891999954, 49.097468317000036 ], [ -121.934001764999948, 49.097559240000059 ], [ -121.935243003999929, 49.09757466000012 ], [ -121.936407941999988, 49.097334671000112 ], [ -121.93656000499999, 49.097397221000065 ], [ -121.935888614999939, 49.098025621000019 ], [ -121.935143819999979, 49.098585305000086 ], [ -121.935145182999989, 49.098763618000064 ], [ -121.935154627999935, 49.099995829000129 ], [ -121.935156300999964, 49.100214279000099 ], [ -121.934457910999953, 49.100210877000087 ], [ -121.93444422200001, 49.100210798000091 ], [ -121.934441608999961, 49.100977106000066 ], [ -121.933339092999944, 49.100972390000074 ], [ -121.932421813999895, 49.100964700000063 ], [ -121.932097114999948, 49.100995696 ], [ -121.931684893999972, 49.10110359 ], [ -121.931458882999905, 49.101243815000025 ], [ -121.930976114999964, 49.101798104000089 ], [ -121.930960492999944, 49.101976085000054 ], [ -121.931079515999954, 49.102182611000082 ], [ -121.931347690999957, 49.102373990000082 ], [ -121.931708205999925, 49.102513902000091 ], [ -121.932035984999956, 49.102572316000071 ], [ -121.933337186999964, 49.102577291000074 ], [ -121.933342275999962, 49.103334892000127 ], [ -121.931355603999947, 49.103334600000082 ], [ -121.9311648, 49.103368812000113 ], [ -121.931082585999945, 49.103510001000117 ], [ -121.931084492999929, 49.103849089000022 ], [ -121.929367588000019, 49.103865216000052 ], [ -121.928928976999941, 49.1038982070001 ], [ -121.928445225999937, 49.104024141000075 ], [ -121.928392521999939, 49.104049164000067 ], [ -121.928259285999943, 49.104112365000105 ], [ -121.928026380999967, 49.104222878000087 ], [ -121.927579116999951, 49.104558505000085 ], [ -121.926717542999967, 49.105337381000041 ], [ -121.926581566999914, 49.105284707000067 ], [ -121.92637167, 49.105203444000026 ], [ -121.926135998999925, 49.105171965000061 ], [ -121.925920961999935, 49.105186353000086 ], [ -121.925924764999976, 49.105424543000105 ], [ -121.925692749999968, 49.105758394000063 ], [ -121.925512753999939, 49.105904856000123 ], [ -121.924435839999944, 49.106497914000094 ], [ -121.923484863999974, 49.107076800000058 ], [ -121.923261549999978, 49.10693577900004 ], [ -121.923035779999978, 49.106884831000038 ], [ -121.922756174999932, 49.106901279000041 ], [ -121.921655737999956, 49.10710569900003 ], [ -121.921482358999953, 49.107098215000107 ], [ -121.921359028999973, 49.107051161000115 ], [ -121.921273833999976, 49.106975781000074 ], [ -121.921236409999935, 49.106886882000033 ], [ -121.921341186999911, 49.106676255000082 ], [ -121.921342395999886, 49.106584349000073 ], [ -121.921284401999941, 49.106495570000064 ], [ -121.921033557999962, 49.106324645000065 ], [ -121.920267995999893, 49.105913257000047 ], [ -121.92003218699989, 49.105742888000037 ], [ -121.919698313999987, 49.105409209000115 ], [ -121.919183855999989, 49.105056956000084 ], [ -121.918215834999941, 49.10599132000003 ], [ -121.917691328999965, 49.106497596000047 ], [ -121.91768362, 49.106505032000065 ], [ -121.91579631899998, 49.107790995000087 ], [ -121.915830800999927, 49.106297312000073 ], [ -121.916134829999947, 49.106308866000063 ], [ -121.916179139999926, 49.10580396700005 ], [ -121.917139359999965, 49.105840454000024 ], [ -121.917139384, 49.105839278000083 ], [ -121.917550341000023, 49.105843133000093 ], [ -121.917556209999972, 49.10557331800009 ], [ -121.917581123999952, 49.105573551000099 ], [ -121.917967165000022, 49.105577170000153 ], [ -121.917978897999959, 49.105037539000151 ], [ -121.918389848999951, 49.105041391000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181840833", "BldgCostT": "120513333", "sL_LossRatio": "0.934178791350797", "sL_AssetLoss": "286708.5", "sL_BldgLoss": "267837", "sL_StrLoss": "222151", "sL_NStrLoss": "45686", "sL_ContLoss": "18871.5", "geom_point": "0101000020E61000003DF3FE81AA7A5EC0615D1E63558E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.91464764600002, 49.118501655000046 ], [ -121.914783724, 49.116952096000098 ], [ -121.914037591999929, 49.116923735000078 ], [ -121.914107001999966, 49.11613343300013 ], [ -121.912954303999982, 49.116089608000067 ], [ -121.91321790399995, 49.113088920000081 ], [ -121.912870652999956, 49.113085651000112 ], [ -121.912876550999954, 49.112815836000074 ], [ -121.912465536999918, 49.112811964000123 ], [ -121.912500926999954, 49.111193077000109 ], [ -121.912911926999968, 49.111196949000067 ], [ -121.91291782199994, 49.110927133000111 ], [ -121.913739817999968, 49.110934872000058 ], [ -121.913751599999927, 49.110395243000056 ], [ -121.91416259499999, 49.110399110000053 ], [ -121.914168482999969, 49.11012929500005 ], [ -121.915098390999944, 49.110138039000034 ], [ -121.91512129399996, 49.109877171000107 ], [ -121.914076879999982, 49.109837469000134 ], [ -121.913813322999943, 49.109827447000086 ], [ -121.913877347999943, 49.109098402000079 ], [ -121.913992924999917, 49.107782276000101 ], [ -121.91579631899998, 49.107790995000087 ], [ -121.91768362, 49.106505032000065 ], [ -121.917691328999965, 49.106497596000047 ], [ -121.918215834999941, 49.10599132000003 ], [ -121.919183855999989, 49.105056956000084 ], [ -121.919698313999987, 49.105409209000115 ], [ -121.92003218699989, 49.105742888000037 ], [ -121.920267995999893, 49.105913257000047 ], [ -121.921033557999962, 49.106324645000065 ], [ -121.921284401999941, 49.106495570000064 ], [ -121.921342395999886, 49.106584349000073 ], [ -121.921341186999911, 49.106676255000082 ], [ -121.921236409999935, 49.106886882000033 ], [ -121.921273833999976, 49.106975781000074 ], [ -121.921359028999973, 49.107051161000115 ], [ -121.921482358999953, 49.107098215000107 ], [ -121.921655737999956, 49.10710569900003 ], [ -121.922756174999932, 49.106901279000041 ], [ -121.923035779999978, 49.106884831000038 ], [ -121.923261549999978, 49.10693577900004 ], [ -121.923484863999974, 49.107076800000058 ], [ -121.921644872999963, 49.107979926000048 ], [ -121.92099589, 49.108145547000028 ], [ -121.918724036999947, 49.109065603000104 ], [ -121.918616505, 49.109150781000011 ], [ -121.918604177999896, 49.109159739000091 ], [ -121.91858274400002, 49.109176541000039 ], [ -121.918524614999953, 49.109292479000068 ], [ -121.918531045999927, 49.109734539000073 ], [ -121.918539779999918, 49.11054101400007 ], [ -121.91854023499999, 49.110614060000039 ], [ -121.918528541999976, 49.111059949000044 ], [ -121.918520568999966, 49.111291374000189 ], [ -121.918521004999931, 49.111645765000063 ], [ -121.918520682999926, 49.111883801000026 ], [ -121.91871360599994, 49.113363720000116 ], [ -121.918727839999946, 49.113473045000084 ], [ -121.918731470999916, 49.113500749000117 ], [ -121.918691252999963, 49.113579159000025 ], [ -121.91867183799999, 49.113704681000137 ], [ -121.918643820999961, 49.113885736000036 ], [ -121.918563471999903, 49.115145065000085 ], [ -121.918547046999976, 49.116222867000054 ], [ -121.91845611899997, 49.118509702999987 ], [ -121.915679377999979, 49.118503850000124 ], [ -121.91464764600002, 49.118501655000046 ] ], [ [ -121.91532748799996, 49.112410081000043 ], [ -121.915360892999956, 49.112029596000113 ], [ -121.914538265999951, 49.112021864000063 ], [ -121.914530456999955, 49.112379786000098 ], [ -121.91532748799996, 49.112410081000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88183167", "BldgCostT": "57926667", "sL_LossRatio": "0.957741605883721", "sL_AssetLoss": "98849", "sL_BldgLoss": "94671.8", "sL_StrLoss": "82200.8", "sL_NStrLoss": "12471", "sL_ContLoss": "4177.2", "geom_point": "0101000020E61000002BE29D111F7A5EC07B002061F78E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.903180673999941, 49.11860367500001 ], [ -121.903189210999969, 49.115138105000042 ], [ -121.903880165999936, 49.11584866500008 ], [ -121.90463295, 49.115906145000068 ], [ -121.905810055999893, 49.115736803000132 ], [ -121.907040986999959, 49.115112773000099 ], [ -121.907392694999913, 49.114713456000061 ], [ -121.907490299999921, 49.111537036000101 ], [ -121.908230262, 49.111565211000027 ], [ -121.908012088999968, 49.114045878000127 ], [ -121.907914094999938, 49.115159993000127 ], [ -121.907913813999983, 49.115159982000101 ], [ -121.90783184299994, 49.116091892000057 ], [ -121.907419573999974, 49.11607619600008 ], [ -121.907358974999937, 49.116765029000128 ], [ -121.907653334, 49.116776236000135 ], [ -121.90770651299999, 49.116171694000037 ], [ -121.908555687, 49.116204022000041 ], [ -121.90856078, 49.116146115000092 ], [ -121.909205556999922, 49.116170656000101 ], [ -121.914024847999926, 49.116353969000038 ], [ -121.913836361999969, 49.118499920000104 ], [ -121.909658210999979, 49.118490896000075 ], [ -121.909479047, 49.118533690000056 ], [ -121.909417403999925, 49.118548387 ], [ -121.909176301999977, 49.118639398000035 ], [ -121.903180673999941, 49.11860367500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71337584", "BldgCostT": "48253334", "sL_LossRatio": "0.927967407496409", "sL_AssetLoss": "89885.7", "sL_BldgLoss": "83411", "sL_StrLoss": "70361.1", "sL_NStrLoss": "13049.9", "sL_ContLoss": "6474.7", "geom_point": "0101000020E6100000712287A929795EC00F8A7B66288E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.881271892999976, 49.12186320800005 ], [ -121.881067091999938, 49.121033012000076 ], [ -121.880217289999948, 49.119871493000105 ], [ -121.879866484999965, 49.119499105000102 ], [ -121.878608612999955, 49.119092 ], [ -121.878481111000013, 49.119092606000031 ], [ -121.878354401, 49.119130082000019 ], [ -121.877799812, 49.119510087000037 ], [ -121.877431696999935, 49.11964289900007 ], [ -121.877300208999955, 49.119656812000116 ], [ -121.877057387999955, 49.119643896000071 ], [ -121.876914608999954, 49.119600588000061 ], [ -121.876750793999975, 49.119514898000048 ], [ -121.875496900999977, 49.118073710000097 ], [ -121.875207197999941, 49.117939894000102 ], [ -121.874650898999931, 49.117891493000073 ], [ -121.874037913999985, 49.118157399000047 ], [ -121.873776354999919, 49.118266892000136 ], [ -121.87361371899999, 49.118335004000116 ], [ -121.873237003999947, 49.118409795000055 ], [ -121.872932275999958, 49.118398991000099 ], [ -121.872752510999987, 49.118355198000067 ], [ -121.872313317999911, 49.118160692000053 ], [ -121.87167730500002, 49.117728606000071 ], [ -121.871634890999957, 49.117495300000051 ], [ -121.871796515999932, 49.116833312000068 ], [ -121.871530795999902, 49.116672965000092 ], [ -121.870859808999981, 49.116268005000109 ], [ -121.870771504999965, 49.116181698000041 ], [ -121.870760418999964, 49.116074786000084 ], [ -121.870795266999949, 49.11597788300007 ], [ -121.870887789000022, 49.115720805000159 ], [ -121.870866432999946, 49.115637442000043 ], [ -121.870715700999952, 49.115049590000069 ], [ -121.87080556399998, 49.114857024000024 ], [ -121.871145595999948, 49.114128405000031 ], [ -121.871685885999966, 49.113260904000072 ], [ -121.871784908999942, 49.112352615000056 ], [ -121.871810821999986, 49.112115100000061 ], [ -121.871658790000012, 49.111888128 ], [ -121.871230013999963, 49.111247896000059 ], [ -121.873290633999943, 49.111246419000061 ], [ -121.874687914, 49.111245396000129 ], [ -121.874818341999926, 49.111214319000041 ], [ -121.875770091999982, 49.110987604000073 ], [ -121.876414285999928, 49.110631707000024 ], [ -121.876501991999973, 49.110251546000029 ], [ -121.876552197999942, 49.110033788000116 ], [ -121.876620116999959, 49.109113004000022 ], [ -121.877430320999963, 49.108630095000137 ], [ -121.87786290799994, 49.10742939600005 ], [ -121.878483118999924, 49.107125792000062 ], [ -121.878796682999976, 49.107174795000027 ], [ -121.879239096, 49.107486604000094 ], [ -121.879347959999933, 49.107488077000028 ], [ -121.879495103999957, 49.107490112000058 ], [ -121.880012981999968, 49.106747993000091 ], [ -121.880015399999976, 49.106589954000128 ], [ -121.880019186999917, 49.106337101000058 ], [ -121.881904010999961, 49.106330893000099 ], [ -121.882357094999946, 49.106431821000065 ], [ -121.882770869999931, 49.106523960000082 ], [ -121.883078358999981, 49.10659244300011 ], [ -121.883219585999925, 49.106623896000087 ], [ -121.88411462199997, 49.106544493000072 ], [ -121.88530630199989, 49.106704701000076 ], [ -121.888877029999918, 49.10688760000005 ], [ -121.889360573999966, 49.106930304000038 ], [ -121.892873988999952, 49.107240407000099 ], [ -121.893990803999955, 49.107442591000037 ], [ -121.89401151, 49.105731990000031 ], [ -121.894556695999967, 49.105252306000096 ], [ -121.8952972969999, 49.105193966000087 ], [ -121.89565098199995, 49.105166093000101 ], [ -121.89583869099999, 49.104591593000151 ], [ -121.89610021299994, 49.104236399000072 ], [ -121.896598003999969, 49.103858694000067 ], [ -121.896602402999946, 49.103773761000085 ], [ -121.896621407999973, 49.103406892000059 ], [ -121.896755399999932, 49.102695197000124 ], [ -121.89692648799992, 49.102054320000029 ], [ -121.897031618999947, 49.101660594000094 ], [ -121.897006301999966, 49.100816182000038 ], [ -121.896981772999965, 49.099997365000085 ], [ -121.896968447999953, 49.099552593000098 ], [ -121.898725503999955, 49.099619678000046 ], [ -121.898926750999976, 49.097335899000065 ], [ -121.89677770899999, 49.097253844000093 ], [ -121.896759176999964, 49.098089910000098 ], [ -121.896357454999972, 49.098086070000114 ], [ -121.896011305999977, 49.097739686000082 ], [ -121.895824181999942, 49.097019298000063 ], [ -121.895881498, 49.095639081000094 ], [ -121.89724810499996, 49.094232297000076 ], [ -121.898141516999985, 49.094012100000121 ], [ -121.899499579999926, 49.094096140000062 ], [ -121.899851486, 49.09411790500009 ], [ -121.900670192999925, 49.093890414000079 ], [ -121.901777807999949, 49.0937883940001 ], [ -121.902298823999942, 49.093496645000144 ], [ -121.902754814999966, 49.093241302000074 ], [ -121.903886497999949, 49.092975197000094 ], [ -121.90511259, 49.092974995000077 ], [ -121.90545460499996, 49.093135896000035 ], [ -121.905758483999989, 49.093200704000061 ], [ -121.906011705999958, 49.093197156000016 ], [ -121.905803825999968, 49.095560501000094 ], [ -121.903224768999934, 49.095462184000048 ], [ -121.903093492999957, 49.09695356200006 ], [ -121.901931067999911, 49.096909229000069 ], [ -121.901911153999933, 49.097135391000059 ], [ -121.899429869999921, 49.097040714000087 ], [ -121.899424234999927, 49.097104680000029 ], [ -121.904410516999988, 49.097294877000095 ], [ -121.904409976999915, 49.097301010000059 ], [ -121.905633474999945, 49.097347644000052 ], [ -121.905594128999923, 49.097794904000125 ], [ -121.905825995999933, 49.097803740000067 ], [ -121.905745814999932, 49.098715196000072 ], [ -121.905786903999982, 49.098715586000047 ], [ -121.905780971999931, 49.098985400000068 ], [ -121.906191868999926, 49.098989295000116 ], [ -121.906189348999973, 49.09910394000007 ], [ -121.908119898999928, 49.099177482000108 ], [ -121.90780380699999, 49.102772332000086 ], [ -121.902341357999916, 49.10256415800005 ], [ -121.902445398999973, 49.101382569000123 ], [ -121.902029319999912, 49.101378611000037 ], [ -121.902031804999964, 49.101266001000091 ], [ -121.901048299999943, 49.101228486000075 ], [ -121.900883859999936, 49.103095373000052 ], [ -121.901908568999929, 49.103134460000085 ], [ -121.901819442999965, 49.104146499000052 ], [ -121.903595373999934, 49.104214217000091 ], [ -121.903278899000028, 49.107809026000062 ], [ -121.899446616999953, 49.107662862000076 ], [ -121.899287852, 49.109464343000056 ], [ -121.900218909999978, 49.109499867000089 ], [ -121.900285325999945, 49.108746094000082 ], [ -121.905748489999922, 49.108954371000095 ], [ -121.905527798999941, 49.111462287000052 ], [ -121.907490299999921, 49.111537036000101 ], [ -121.907392694999913, 49.114713456000061 ], [ -121.907040986999959, 49.115112773000099 ], [ -121.905810055999893, 49.115736803000132 ], [ -121.90463295, 49.115906145000068 ], [ -121.903880165999936, 49.11584866500008 ], [ -121.903189210999969, 49.115138105000042 ], [ -121.903180673999941, 49.11860367500001 ], [ -121.909176301999977, 49.118639398000035 ], [ -121.909030114999965, 49.118665300000039 ], [ -121.90770231, 49.11922250800005 ], [ -121.907412792999963, 49.11928821300004 ], [ -121.905750217999937, 49.119444 ], [ -121.905445502999939, 49.119370108000041 ], [ -121.905160302999946, 49.119153705000059 ], [ -121.904888621999945, 49.119125308000051 ], [ -121.903608301999938, 49.119297406000079 ], [ -121.903254901999929, 49.11929570700002 ], [ -121.902886611999946, 49.119166207000035 ], [ -121.902517698999972, 49.119074610000048 ], [ -121.902328677999961, 49.119072812000063 ], [ -121.90184249499994, 49.118990308000079 ], [ -121.901626484999923, 49.118922516000026 ], [ -121.901352599999967, 49.118732707000056 ], [ -121.900706405999983, 49.118350904000103 ], [ -121.90055350599999, 49.11829730900012 ], [ -121.900332178999975, 49.118288905000057 ], [ -121.900235475999949, 49.118303747 ], [ -121.90013489299993, 49.118319194000087 ], [ -121.899718598999954, 49.118562989000026 ], [ -121.899540784999971, 49.118636507000112 ], [ -121.899373806999947, 49.118665293000063 ], [ -121.897034793999978, 49.118843804000058 ], [ -121.896224406999934, 49.11886249700013 ], [ -121.895688401999976, 49.118956608000055 ], [ -121.895394110999945, 49.118920987000081 ], [ -121.895205620999945, 49.118867799000078 ], [ -121.894956305999969, 49.11874100100006 ], [ -121.894871912999946, 49.118734193000066 ], [ -121.894756391999977, 49.118770400000109 ], [ -121.892987820999949, 49.120015562000077 ], [ -121.891733910999903, 49.120898282000034 ], [ -121.891040802999953, 49.120597688000075 ], [ -121.890409295999945, 49.120452807000085 ], [ -121.889648996999981, 49.120990897000105 ], [ -121.889100300999971, 49.120871590000043 ], [ -121.88811947, 49.120972099000028 ], [ -121.885807989999947, 49.122542790000089 ], [ -121.884215207999958, 49.123951587000121 ], [ -121.883440195999967, 49.124313206000089 ], [ -121.883213010999924, 49.124354993000075 ], [ -121.882973177999972, 49.124292599000071 ], [ -121.88250039199994, 49.123981514000057 ], [ -121.882043097999983, 49.123216397000085 ], [ -121.88188, 49.122627693000084 ], [ -121.88158861, 49.122125102000055 ], [ -121.881271892999976, 49.12186320800005 ] ], [ [ -121.883972089999986, 49.121578869000089 ], [ -121.884186707999902, 49.119153340000025 ], [ -121.884866106999965, 49.119179353000092 ], [ -121.884886690999934, 49.118946657000023 ], [ -121.885087894999955, 49.118954359000028 ], [ -121.885173732999988, 49.117983961000107 ], [ -121.886021265, 49.118016402000109 ], [ -121.886031702999944, 49.11789838100001 ], [ -121.886263367999987, 49.11790724700014 ], [ -121.886433391999915, 49.115984485000105 ], [ -121.887436223999941, 49.116022861000062 ], [ -121.887522099, 49.115051409000053 ], [ -121.888428061999917, 49.115086069000071 ], [ -121.888572744999976, 49.113448928000103 ], [ -121.88947738799996, 49.11348353100005 ], [ -121.889543244999956, 49.112738149000045 ], [ -121.890604796999924, 49.112778745000107 ], [ -121.890636016999963, 49.112425275000064 ], [ -121.891096529, 49.112442882000025 ], [ -121.891132818999949, 49.112031986000041 ], [ -121.891425563, 49.11204317800015 ], [ -121.891519007999932, 49.110984977000086 ], [ -121.890646610999966, 49.110951622000137 ], [ -121.890791070999953, 49.109315970000118 ], [ -121.890510008999939, 49.109305223000014 ], [ -121.890531798999973, 49.109058517000058 ], [ -121.887141910999958, 49.108928834000096 ], [ -121.887143559999984, 49.108910179000091 ], [ -121.886310982999987, 49.108878311000062 ], [ -121.886321134999918, 49.108763482 ], [ -121.884161260999974, 49.108680781000032 ], [ -121.884128885999957, 49.10904678 ], [ -121.881919926999942, 49.108962154000054 ], [ -121.881712211999954, 49.11130893100006 ], [ -121.878729710999934, 49.111194599000058 ], [ -121.878953509999974, 49.11099629400011 ], [ -121.879321803999943, 49.110479304000101 ], [ -121.879263696999942, 49.110081903000058 ], [ -121.879073196999968, 49.109982201000037 ], [ -121.878049091000022, 49.109853992000048 ], [ -121.877190107, 49.110205799000049 ], [ -121.876888693999888, 49.110850989000042 ], [ -121.877070692999936, 49.111248291000052 ], [ -121.877454241999942, 49.111415395000137 ], [ -121.877373790999954, 49.11232333200013 ], [ -121.87663992599991, 49.112295178000046 ], [ -121.876554809999945, 49.113255549000051 ], [ -121.874795682999931, 49.113188042000097 ], [ -121.874680300999941, 49.11448929 ], [ -121.874479165999944, 49.114481570000109 ], [ -121.874451840999924, 49.114789706000117 ], [ -121.87479087899996, 49.114802719000046 ], [ -121.87475571, 49.115199331000042 ], [ -121.878743468999957, 49.115352314000134 ], [ -121.878715009999951, 49.115673561000065 ], [ -121.87943316599997, 49.115701096000031 ], [ -121.87941130499992, 49.115947910000152 ], [ -121.881382014999971, 49.116023444000085 ], [ -121.88135728499999, 49.116302772000083 ], [ -121.883292066999957, 49.116376894000076 ], [ -121.883227334999944, 49.1171083770001 ], [ -121.883901091999988, 49.117134179000061 ], [ -121.883592285999967, 49.120624029000062 ], [ -121.883664517999975, 49.120626795000135 ], [ -121.88358158799997, 49.121563915000081 ], [ -121.883972089999986, 49.121578869000089 ] ], [ [ -121.900827809999967, 49.116311798000019 ], [ -121.900820402999983, 49.116395864000047 ], [ -121.900858629999959, 49.116397322000111 ], [ -121.900848643999922, 49.116510650000137 ], [ -121.901003216999982, 49.116516545000039 ], [ -121.901020608999957, 49.116319151000027 ], [ -121.900827809999967, 49.116311798000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.933552091878589", "sL_AssetLoss": "1219", "sL_BldgLoss": "1138", "sL_StrLoss": "947", "sL_NStrLoss": "191", "sL_ContLoss": "81", "geom_point": "0101000020E6100000C628F83B8E7A5EC0B6CC3340B38D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.914129, 49.106232618000028 ], [ -121.915830800999927, 49.106297312000073 ], [ -121.91579631899998, 49.107790995000087 ], [ -121.913992924999917, 49.107782276000101 ], [ -121.914129, 49.106232618000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12276750", "BldgCostT": "7995000", "sL_LossRatio": "0.932495164410058", "sL_AssetLoss": "15510", "sL_BldgLoss": "14463", "sL_StrLoss": "11645", "sL_NStrLoss": "2818", "sL_ContLoss": "1047", "geom_point": "0101000020E6100000E349777C607A5EC0676B962E718C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.912759453999954, 49.102266339000053 ], [ -121.91281936299994, 49.101584220000071 ], [ -121.910287312999955, 49.101487874000028 ], [ -121.910541726999938, 49.09859267500012 ], [ -121.909414363999971, 49.098549759 ], [ -121.909508065999901, 49.097483635000032 ], [ -121.90824479, 49.09743553 ], [ -121.908427640999946, 49.095355604000098 ], [ -121.905896438999932, 49.095259173000031 ], [ -121.906077892, 49.093196229000071 ], [ -121.906087688999975, 49.093196091000088 ], [ -121.907449495999984, 49.093008202000078 ], [ -121.907850017999976, 49.092846700000052 ], [ -121.90842108399994, 49.092115485000129 ], [ -121.908579888999952, 49.092070112000023 ], [ -121.913063729999962, 49.092079379000033 ], [ -121.913462601000035, 49.092080193000037 ], [ -121.913493151999944, 49.09508682200002 ], [ -121.913564857, 49.095830732000103 ], [ -121.913460298999922, 49.097573518000026 ], [ -121.9134425069999, 49.097870009000076 ], [ -121.91344071599994, 49.097899962000021 ], [ -121.913897118999927, 49.098178821000069 ], [ -121.914076691999952, 49.098474203000123 ], [ -121.914210836999985, 49.098569488000066 ], [ -121.914375254, 49.098637761000091 ], [ -121.914435522999938, 49.098662794000056 ], [ -121.914697009999912, 49.098696187000058 ], [ -121.915033654999903, 49.098794640000072 ], [ -121.915151062999897, 49.098799114000109 ], [ -121.91534542, 49.098720937000124 ], [ -121.91547062199993, 49.098670584000033 ], [ -121.916052048, 49.098274281000101 ], [ -121.91658596399995, 49.098060132000029 ], [ -121.917087620999951, 49.097948444000096 ], [ -121.918140484999952, 49.097932632000095 ], [ -121.918244070999961, 49.097931090000053 ], [ -121.918479605999934, 49.097901254000107 ], [ -121.918514888999965, 49.100359929000035 ], [ -121.917079994999966, 49.100394678000036 ], [ -121.917135722999944, 49.102432717000113 ], [ -121.912759453999954, 49.102266339000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.971370159674187", "sL_AssetLoss": "2475.04", "sL_BldgLoss": "2404.18", "sL_StrLoss": "2186.78", "sL_NStrLoss": "217.4", "sL_ContLoss": "70.86", "geom_point": "0101000020E610000005D1BDFB61725EC0732A006389934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.785269792999941, 49.151301996000065 ], [ -121.789247320999934, 49.151361698000073 ], [ -121.789004982999955, 49.154036621000039 ], [ -121.785353004999962, 49.153893597000014 ], [ -121.785269792999941, 49.151301996000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13818500", "BldgCostT": "9530000", "sL_LossRatio": "0.954813757403026", "sL_AssetLoss": "20245.1", "sL_BldgLoss": "19330.3", "sL_StrLoss": "16849.3", "sL_NStrLoss": "2481", "sL_ContLoss": "914.8", "geom_point": "0101000020E6100000EB50F28FA3725EC07A846076CB944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.790392326999978, 49.161207514000033 ], [ -121.790382833999928, 49.159688926000058 ], [ -121.793250685999922, 49.159801102000131 ], [ -121.793295404999981, 49.159307086000105 ], [ -121.798764019999936, 49.159520779000033 ], [ -121.798701007999966, 49.160217796000069 ], [ -121.798697122999926, 49.160260757000039 ], [ -121.79941352099992, 49.160268208000019 ], [ -121.799345310999939, 49.160284150000088 ], [ -121.798867213000023, 49.16042779400005 ], [ -121.798433308999961, 49.160598423000131 ], [ -121.797059442, 49.161321947000047 ], [ -121.797056740999921, 49.161323397000032 ], [ -121.796875971999967, 49.161418569000041 ], [ -121.796813581999984, 49.161453572000035 ], [ -121.794341654, 49.162839607000102 ], [ -121.793965071999935, 49.163050783000067 ], [ -121.793912595, 49.16308019800011 ], [ -121.793484557999989, 49.163320188000085 ], [ -121.790323614999977, 49.165092308000048 ], [ -121.789599823999964, 49.165498061000051 ], [ -121.789567221999945, 49.165516338000096 ], [ -121.787658784999934, 49.16544164200009 ], [ -121.787547665999938, 49.166667357000122 ], [ -121.787130765999933, 49.166907648000098 ], [ -121.786310419999921, 49.167479686000021 ], [ -121.785767000999897, 49.167890746000047 ], [ -121.78595738199999, 49.165092494000085 ], [ -121.786150733999989, 49.163841351000038 ], [ -121.786218819999959, 49.163762297000069 ], [ -121.786487331, 49.163450386000079 ], [ -121.78617947099994, 49.161444881000094 ], [ -121.786304792999914, 49.161437843000051 ], [ -121.786430098999944, 49.161430782000139 ], [ -121.786555401999976, 49.161423721000041 ], [ -121.786567595999969, 49.161423058000061 ], [ -121.786680671999989, 49.161416671 ], [ -121.786806010999982, 49.161409598000091 ], [ -121.786931333999959, 49.16140255800012 ], [ -121.787056636999964, 49.161395497000029 ], [ -121.787181941999918, 49.161388434000038 ], [ -121.787307246999887, 49.161381371000047 ], [ -121.787432585999923, 49.161374298000041 ], [ -121.78755785599995, 49.161367247000058 ], [ -121.787683175999916, 49.161360207000051 ], [ -121.787808463999937, 49.161353120000065 ], [ -121.787933767999988, 49.161346057000067 ], [ -121.788059123999972, 49.161339006000098 ], [ -121.788184426999948, 49.16133194300005 ], [ -121.788309731999959, 49.161324879000112 ], [ -121.788435001999957, 49.16131782700009 ], [ -121.788560305999937, 49.161310762000063 ], [ -121.788685661, 49.161303709000045 ], [ -121.788810948999952, 49.161296623000077 ], [ -121.788936252999989, 49.161289558000078 ], [ -121.789061571999966, 49.161282516000021 ], [ -121.789186876999935, 49.161275451000108 ], [ -121.789312145999986, 49.161268398000104 ], [ -121.789437483999933, 49.161261322000072 ], [ -121.789562786999966, 49.161254256000156 ], [ -121.789688109999986, 49.16124721400007 ], [ -121.789813411999944, 49.161240147000065 ], [ -121.789938696999968, 49.161233059000104 ], [ -121.790064018999956, 49.161226016000107 ], [ -121.790189321999932, 49.161218951000102 ], [ -121.79031464399999, 49.161211907000109 ], [ -121.790392326999978, 49.161207514000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13325500", "BldgCostT": "9190000", "sL_LossRatio": "0.923296401830913", "sL_AssetLoss": "26391.2", "sL_BldgLoss": "24366.9", "sL_StrLoss": "19495.9", "sL_NStrLoss": "4871", "sL_ContLoss": "2024.3", "geom_point": "0101000020E61000002DB308C516755EC00B6F417C01934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.827715914999914, 49.154719626000066 ], [ -121.827734435999901, 49.154513299000072 ], [ -121.826842287999952, 49.154478694000062 ], [ -121.82685456199999, 49.15434198800012 ], [ -121.826932369999938, 49.153475381000142 ], [ -121.826845150999986, 49.153471997000068 ], [ -121.827110650999956, 49.150514719000029 ], [ -121.826813834999953, 49.15050320299999 ], [ -121.826878586999939, 49.149781965000109 ], [ -121.826706874999942, 49.149775303000041 ], [ -121.826732991999947, 49.149484407000067 ], [ -121.826502814, 49.149482067000079 ], [ -121.826496440999932, 49.149751872000131 ], [ -121.824439908999963, 49.149730950000055 ], [ -121.824465444999959, 49.148651732000076 ], [ -121.82569933699989, 49.148664290000063 ], [ -121.825705714999927, 49.148394484000086 ], [ -121.82611701099998, 49.148398666000034 ], [ -121.826123383999985, 49.148128862000107 ], [ -121.826534676999984, 49.148133043 ], [ -121.82654105, 49.147863238000099 ], [ -121.826844348999913, 49.147866320000091 ], [ -121.827112919999976, 49.144874451000192 ], [ -121.827845039999886, 49.144902856000044 ], [ -121.827875704999911, 49.144561169000063 ], [ -121.830730050999961, 49.144671859000042 ], [ -121.83073015799999, 49.144667303000062 ], [ -121.831141422999949, 49.144671469000045 ], [ -121.831154115999951, 49.144131858000037 ], [ -121.831321420999927, 49.144133552000014 ], [ -121.83132369, 49.14410824900007 ], [ -121.832207977999985, 49.144142522000067 ], [ -121.83362168099994, 49.144156813000045 ], [ -121.833640680999963, 49.143347396000074 ], [ -121.834387678999974, 49.143354940000094 ], [ -121.834348691999963, 49.143402702000024 ], [ -121.834272317999975, 49.143567506000124 ], [ -121.834447211999986, 49.144217192000063 ], [ -121.834637314999966, 49.144514004000079 ], [ -121.834810014999974, 49.144989607000113 ], [ -121.834932486999932, 49.145689504000089 ], [ -121.834933212, 49.145910501000074 ], [ -121.834830406, 49.146491709000024 ], [ -121.835025200999937, 49.146721097000075 ], [ -121.835012618999954, 49.146931021000043 ], [ -121.835011559999955, 49.14694857100006 ], [ -121.835003117999946, 49.147089923000138 ], [ -121.834835652999971, 49.147088217000039 ], [ -121.834410634999941, 49.147083871000071 ], [ -121.833484815999938, 49.147074419000042 ], [ -121.832111633999915, 49.147061778000129 ], [ -121.830042146999958, 49.147043779000114 ], [ -121.83007135299999, 49.149795892000022 ], [ -121.830103306999916, 49.152802478000091 ], [ -121.83010708800002, 49.153158065000099 ], [ -121.830113331999883, 49.153746214000087 ], [ -121.830114423999973, 49.153849066000085 ], [ -121.830115579999969, 49.153957035000076 ], [ -121.830118300999942, 49.154212817000072 ], [ -121.830119395999986, 49.154317314000124 ], [ -121.830126476999922, 49.154696294000068 ], [ -121.827715914999914, 49.154719626000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17665833", "BldgCostT": "12183333", "sL_LossRatio": "0.979603372445658", "sL_AssetLoss": "15745.25", "sL_BldgLoss": "15424.1", "sL_StrLoss": "14139", "sL_NStrLoss": "1285.1", "sL_ContLoss": "321.15", "geom_point": "0101000020E6100000C92D5A3E1A735EC0F2E64F9F8D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.797589916999982, 49.156219503000045 ], [ -121.797803118999965, 49.153861498000026 ], [ -121.797442358999945, 49.153847405000093 ], [ -121.797448659999944, 49.153777713000096 ], [ -121.796975110999966, 49.153759212000089 ], [ -121.796885744999955, 49.154747431000011 ], [ -121.791417697999961, 49.154533641000079 ], [ -121.79152211399996, 49.153380489000035 ], [ -121.791743131999965, 49.150939425000033 ], [ -121.794957241999896, 49.151065124000056 ], [ -121.795046642999949, 49.150076901000034 ], [ -121.79605124699998, 49.150116170000068 ], [ -121.796093323999955, 49.149650926000056 ], [ -121.798940105999961, 49.149762151000033 ], [ -121.798943003999966, 49.14973009300008 ], [ -121.804410519999948, 49.149943502000028 ], [ -121.804086070999958, 49.153537762000084 ], [ -121.803322311999963, 49.153507968000014 ], [ -121.803232988999952, 49.154497224000131 ], [ -121.803058189999916, 49.156432979000044 ], [ -121.797589916999982, 49.156219503000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76422166", "BldgCostT": "51736666", "sL_LossRatio": "0.969154197879171", "sL_AssetLoss": "64243.75", "sL_BldgLoss": "62262.1", "sL_StrLoss": "56180.1", "sL_NStrLoss": "6082", "sL_ContLoss": "1981.65", "geom_point": "0101000020E610000079A21CB309745EC0312D0331FD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.803184027999976, 49.160088617 ], [ -121.802349196999955, 49.159989314000057 ], [ -121.801628199999982, 49.159966613000094 ], [ -121.80156561099993, 49.159969490000016 ], [ -121.801570885999979, 49.159750882000068 ], [ -121.801982271999975, 49.159755152000074 ], [ -121.80198251299997, 49.159745212000125 ], [ -121.801988780999963, 49.1594853490001 ], [ -121.80486846699992, 49.159515193000104 ], [ -121.804861973999934, 49.159784995000024 ], [ -121.806145420999925, 49.159798273000057 ], [ -121.806193779999901, 49.159262394000045 ], [ -121.807342381999959, 49.159307162000054 ], [ -121.807343252999956, 49.159270913000071 ], [ -121.80748823, 49.15927241 ], [ -121.807511638999983, 49.159012925000106 ], [ -121.807760696999964, 49.159022631000056 ], [ -121.80776111199998, 49.159005359000069 ], [ -121.808172491999983, 49.159009607000073 ], [ -121.808178966999947, 49.158739804000113 ], [ -121.807767587999962, 49.158735557000085 ], [ -121.80778054299995, 49.158195952 ], [ -121.807369168999983, 49.158191703000099 ], [ -121.807435434999974, 49.155431956000029 ], [ -121.806141879999984, 49.155381535000032 ], [ -121.806170746999939, 49.155061627000094 ], [ -121.806040095999904, 49.155056534000089 ], [ -121.806092957999937, 49.154470716000034 ], [ -121.80531840799992, 49.154440516000108 ], [ -121.805353247999932, 49.154054489000075 ], [ -121.805398583999988, 49.153552134000044 ], [ -121.80473874399992, 49.153526402000111 ], [ -121.80506314199998, 49.149932140000018 ], [ -121.807082668999954, 49.150010883000057 ], [ -121.807151393999945, 49.149248988000075 ], [ -121.808058703999933, 49.149284352000073 ], [ -121.808162513999946, 49.148133209000093 ], [ -121.809492908999971, 49.148185050000016 ], [ -121.809573202999943, 49.147294340000087 ], [ -121.811159443999927, 49.147356130000034 ], [ -121.811188027999918, 49.147038910000028 ], [ -121.806647327999926, 49.146861971000043 ], [ -121.806971530999959, 49.143267666000092 ], [ -121.812438325999906, 49.143480669000098 ], [ -121.812324051999937, 49.144749295000068 ], [ -121.812628142999941, 49.144752422000103 ], [ -121.812634588999941, 49.144482618000062 ], [ -121.814279632999956, 49.144499525000057 ], [ -121.814286071999959, 49.144229722000077 ], [ -121.815519848999912, 49.144242386000059 ], [ -121.815526279999972, 49.143972582000089 ], [ -121.815937538999947, 49.143976800000125 ], [ -121.815943965999949, 49.143706997000109 ], [ -121.816355221999956, 49.143711214000113 ], [ -121.816359321999983, 49.143539137000104 ], [ -121.810950604999974, 49.143328596000053 ], [ -121.811114786999951, 49.141506416000055 ], [ -121.807057384999965, 49.14134829600011 ], [ -121.807173974999927, 49.140055506000159 ], [ -121.80639374499999, 49.140025082000086 ], [ -121.806717919999969, 49.136430740000044 ], [ -121.81094385199998, 49.136595456000045 ], [ -121.811290803, 49.136721809000093 ], [ -121.811533886999939, 49.136922592000104 ], [ -121.81209278499999, 49.137655490000014 ], [ -121.812067468999942, 49.137936561000089 ], [ -121.812258464999928, 49.137944 ], [ -121.81254652199999, 49.138759801000099 ], [ -121.812763040999954, 49.138906660000011 ], [ -121.812683565, 49.139789137000108 ], [ -121.815345436999962, 49.139892753 ], [ -121.815389700999944, 49.139400955000063 ], [ -121.815428771999919, 49.139402475000033 ], [ -121.81614280899997, 49.139722593 ], [ -121.817207385999964, 49.139940499000055 ], [ -121.817906803999975, 49.139884886000125 ], [ -121.818422106999918, 49.140151198000119 ], [ -121.818750315999964, 49.140181205000097 ], [ -121.820470009999951, 49.139883508000047 ], [ -121.82107869599993, 49.140241005000107 ], [ -121.821910800999945, 49.139862109000028 ], [ -121.82238569699993, 49.139534605000051 ], [ -121.822780210999966, 49.13910479 ], [ -121.825093298999946, 49.139194618000033 ], [ -121.824770523000012, 49.142789000000157 ], [ -121.82233518799994, 49.142694425000087 ], [ -121.822222983999893, 49.143943057000037 ], [ -121.818410007999887, 49.143794871000132 ], [ -121.818392248999913, 49.144541689000064 ], [ -121.817980988999977, 49.144537480000096 ], [ -121.81796815199999, 49.145077088000058 ], [ -121.815500554999915, 49.14505179800004 ], [ -121.815498092999917, 49.145155047000053 ], [ -121.818780407999938, 49.145282703000078 ], [ -121.818457102999957, 49.148877033000097 ], [ -121.817832773999953, 49.148852759000093 ], [ -121.817831775999977, 49.148863848000119 ], [ -121.816916406999965, 49.148828252000051 ], [ -121.816842157999972, 49.149653341000082 ], [ -121.817036416999912, 49.149655332000052 ], [ -121.817042840999946, 49.149385528000103 ], [ -121.818688049999963, 49.149402373000036 ], [ -121.818694465999968, 49.149132568000056 ], [ -121.819928366999974, 49.149145187000073 ], [ -121.819909138999932, 49.149954599000054 ], [ -121.819497832999943, 49.149950395000083 ], [ -121.819491421999942, 49.150220198000078 ], [ -121.819080112999941, 49.150215993000039 ], [ -121.819073699999961, 49.150485797000037 ], [ -121.81742845399999, 49.150468957000072 ], [ -121.817422030999936, 49.150738760000074 ], [ -121.816188091999962, 49.15072611500009 ], [ -121.816181663999942, 49.150995919000088 ], [ -121.815770346999912, 49.150991701000088 ], [ -121.815763914999977, 49.151261504000026 ], [ -121.815505745999957, 49.151258855999984 ], [ -121.81535300099992, 49.152955494000039 ], [ -121.813400137999963, 49.15287950700008 ], [ -121.813318513999917, 49.153785685000081 ], [ -121.816508821999918, 49.153909805000076 ], [ -121.81653236699999, 49.153648225000069 ], [ -121.822000423999953, 49.153860740000027 ], [ -121.821961524999935, 49.154293474000077 ], [ -121.823508674999943, 49.154309247000079 ], [ -121.823498128, 49.154754549000124 ], [ -121.823492940999941, 49.154973571000042 ], [ -121.822437252999961, 49.155157166000023 ], [ -121.821328839999978, 49.155400865000104 ], [ -121.820108460999975, 49.155745715000066 ], [ -121.818643397999892, 49.156278484000062 ], [ -121.817567881999977, 49.156750672000072 ], [ -121.816784240999979, 49.15714590100005 ], [ -121.815516004999949, 49.157785519000093 ], [ -121.814293542000016, 49.158402041000031 ], [ -121.812448612999916, 49.159332384000074 ], [ -121.811117049999936, 49.159949632000036 ], [ -121.810532713999919, 49.160161314000085 ], [ -121.809214804999939, 49.16047427300002 ], [ -121.808405757999978, 49.160576219000099 ], [ -121.808091905999945, 49.160599396000066 ], [ -121.807766246999947, 49.160623453000042 ], [ -121.807674822999971, 49.160624716000058 ], [ -121.806996966000014, 49.160634034000118 ], [ -121.806755604999964, 49.16062366700006 ], [ -121.806310853999918, 49.160604596000077 ], [ -121.80594857799997, 49.160565412000054 ], [ -121.805607028999958, 49.160528454000072 ], [ -121.803184027999976, 49.160088617 ] ], [ [ -121.809863272999905, 49.157137962000022 ], [ -121.80986973899995, 49.15686815800008 ], [ -121.811103826999911, 49.156880873000084 ], [ -121.81109737, 49.157150676000057 ], [ -121.811441276, 49.157154217000048 ], [ -121.811581931999953, 49.1555934800001 ], [ -121.809079708999946, 49.155496027000048 ], [ -121.809040542999966, 49.157129478000087 ], [ -121.809863272999905, 49.157137962000022 ] ], [ [ -121.816805979999927, 49.143176094000133 ], [ -121.816816121999977, 49.143063390000073 ], [ -121.81646168, 49.143049601000016 ], [ -121.816426361999973, 49.143442073000088 ], [ -121.816772900999965, 49.143445624000059 ], [ -121.816779325000013, 49.143175820000089 ], [ -121.816805979999927, 49.143176094000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802833", "BldgCostT": "1243333", "sL_LossRatio": "0.966199208917656", "sL_AssetLoss": "1390.5", "sL_BldgLoss": "1343.5", "sL_StrLoss": "1164", "sL_NStrLoss": "179.5", "sL_ContLoss": "47", "geom_point": "0101000020E6100000D3EE80802F755EC0D38CA08CCC914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.828751466999933, 49.139864683000049 ], [ -121.828901758999976, 49.138189409000034 ], [ -121.828716298999893, 49.138182215000093 ], [ -121.828704206999959, 49.137854008000055 ], [ -121.828898197999962, 49.137730106000035 ], [ -121.829173091999934, 49.1377144000001 ], [ -121.830549691999963, 49.138061899000057 ], [ -121.831520061999967, 49.138116510000067 ], [ -121.831891210999984, 49.13813740000009 ], [ -121.832421897999907, 49.13830551300007 ], [ -121.833711911999956, 49.139452005000045 ], [ -121.833999870999946, 49.139896857000025 ], [ -121.834236677, 49.139867688000045 ], [ -121.834217959999989, 49.140076582000049 ], [ -121.828751466999933, 49.139864683000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.974428098282369", "sL_AssetLoss": "1298.3", "sL_BldgLoss": "1265.1", "sL_StrLoss": "1129", "sL_NStrLoss": "136.1", "sL_ContLoss": "33.2", "geom_point": "0101000020E61000004CC43AD976745EC023E04A55DE914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.818422106999918, 49.140151198000119 ], [ -121.817906803999975, 49.139884886000125 ], [ -121.817207385999964, 49.139940499000055 ], [ -121.81614280899997, 49.139722593 ], [ -121.815428771999919, 49.139402475000033 ], [ -121.819574669999923, 49.139563726000048 ], [ -121.819626950999947, 49.138982255000087 ], [ -121.822780210999966, 49.13910479 ], [ -121.82238569699993, 49.139534605000051 ], [ -121.821910800999945, 49.139862109000028 ], [ -121.82107869599993, 49.140241005000107 ], [ -121.820470009999951, 49.139883508000047 ], [ -121.818750315999964, 49.140181205000097 ], [ -121.818422106999918, 49.140151198000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.945631264554014", "sL_AssetLoss": "987.7", "sL_BldgLoss": "934", "sL_StrLoss": "801", "sL_NStrLoss": "133", "sL_ContLoss": "53.7", "geom_point": "0101000020E6100000B6C77F3F44765EC0346C31CBE0914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.846894784999932, 49.139432490000061 ], [ -121.848950905999956, 49.139453008000025 ], [ -121.848940316999943, 49.139910193000048 ], [ -121.846884053999986, 49.139895005000021 ], [ -121.846894784999932, 49.139432490000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40249750", "BldgCostT": "26815000", "sL_LossRatio": "0.944060350725577", "sL_AssetLoss": "55542", "sL_BldgLoss": "52435", "sL_StrLoss": "44265", "sL_NStrLoss": "8170", "sL_ContLoss": "3107", "geom_point": "0101000020E6100000C602786E0E755EC015B54D54E3904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.830549691999963, 49.138061899000057 ], [ -121.829173091999934, 49.1377144000001 ], [ -121.828898197999962, 49.137730106000035 ], [ -121.828704206999959, 49.137854008000055 ], [ -121.828716298999893, 49.138182215000093 ], [ -121.826427992999982, 49.138093426000083 ], [ -121.826472272999979, 49.137600113000126 ], [ -121.824273949999935, 49.137514768000102 ], [ -121.824596727999946, 49.133920359000101 ], [ -121.824909393, 49.133932500000064 ], [ -121.824992661999943, 49.133005066000067 ], [ -121.825933438999925, 49.133041592000012 ], [ -121.826046886999947, 49.131777688000113 ], [ -121.826702609999941, 49.131803142000081 ], [ -121.82685378399999, 49.130118544000034 ], [ -121.826263782999987, 49.130095642000114 ], [ -121.82628040799996, 49.129910416000023 ], [ -121.825608372999952, 49.12988432500002 ], [ -121.825674313999983, 49.129149700000077 ], [ -121.823855859999981, 49.129079080000039 ], [ -121.824178609999947, 49.125484625000126 ], [ -121.826865670999965, 49.125588968000031 ], [ -121.826907318999986, 49.12512478900004 ], [ -121.832372073999949, 49.125336786000076 ], [ -121.83209096899995, 49.128473649000071 ], [ -121.832484165999972, 49.128488891000067 ], [ -121.832414769999929, 49.129263283000114 ], [ -121.832489812999981, 49.129266193000078 ], [ -121.832445106999941, 49.129765073000037 ], [ -121.833443512999935, 49.129803769000041 ], [ -121.833121446999911, 49.133398228000054 ], [ -121.831392167000018, 49.1333311980001 ], [ -121.831336145999899, 49.133956099000066 ], [ -121.832574505999972, 49.134004103000059 ], [ -121.832359978999989, 49.136397686000123 ], [ -121.834539986999943, 49.136482157000081 ], [ -121.834236677, 49.139867688000045 ], [ -121.833999870999946, 49.139896857000025 ], [ -121.833711911999956, 49.139452005000045 ], [ -121.832421897999907, 49.13830551300007 ], [ -121.831891210999984, 49.13813740000009 ], [ -121.831520061999967, 49.138116510000067 ], [ -121.830549691999963, 49.138061899000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.928181436371273", "sL_AssetLoss": "1190.5", "sL_BldgLoss": "1105", "sL_StrLoss": "910", "sL_NStrLoss": "195", "sL_ContLoss": "85.5", "geom_point": "0101000020E610000085B03B5901775EC0594BA6AF0C914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.858436609999984, 49.132727564000099 ], [ -121.86161393899998, 49.132849903000078 ], [ -121.858321371999963, 49.134021466000043 ], [ -121.858436609999984, 49.132727564000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96133083", "BldgCostT": "65088333", "sL_LossRatio": "0.920548851936675", "sL_AssetLoss": "112582.64", "sL_BldgLoss": "103637.82", "sL_StrLoss": "92402.02", "sL_NStrLoss": "11235.8", "sL_ContLoss": "8944.82", "geom_point": "0101000020E61000008505F7031E765EC0C9B0C4E2BB904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.83871445299998, 49.137461406000035 ], [ -121.83912566, 49.137465542000037 ], [ -121.839131961999968, 49.137195735000041 ], [ -121.838720757, 49.137191599000033 ], [ -121.83871445299998, 49.137461406000035 ], [ -121.83706962899997, 49.137444850000065 ], [ -121.837075939999977, 49.137175043000056 ], [ -121.836664738, 49.137170900000086 ], [ -121.836683681999943, 49.136361481000051 ], [ -121.836272483999934, 49.136357337000028 ], [ -121.836278801999981, 49.136087531000115 ], [ -121.835867605999965, 49.13608338500012 ], [ -121.835899200999961, 49.134734354000031 ], [ -121.83548801699996, 49.134730206000071 ], [ -121.835506979999963, 49.133920787000086 ], [ -121.835918155999963, 49.133924934000035 ], [ -121.835924474999928, 49.133655128000036 ], [ -121.835513299999946, 49.133650981000102 ], [ -121.835519620999918, 49.133381174000085 ], [ -121.835108448999947, 49.133377027000058 ], [ -121.835140060999962, 49.13202799400004 ], [ -121.836373544999944, 49.132040434000068 ], [ -121.836386174999987, 49.131500820000042 ], [ -121.83597501899996, 49.131496676000069 ], [ -121.83599397099999, 49.13068725600008 ], [ -121.836816270999961, 49.130695544000105 ], [ -121.836835209999975, 49.129886125 ], [ -121.836012923999974, 49.129877836000098 ], [ -121.836031873999929, 49.12906841700007 ], [ -121.837265285999933, 49.129080846000129 ], [ -121.837258973999937, 49.129350652000063 ], [ -121.838081252, 49.129358931000077 ], [ -121.838074945999907, 49.129628739000026 ], [ -121.839308371999962, 49.129641146 ], [ -121.839283176, 49.130720374000092 ], [ -121.838460873999935, 49.130712103000064 ], [ -121.838435657999966, 49.131791331000052 ], [ -121.838024496999964, 49.131787192000104 ], [ -121.838018191999964, 49.132057 ], [ -121.837607029999987, 49.13205286000003 ], [ -121.837600720999916, 49.132322667000032 ], [ -121.836367228999947, 49.132310241000049 ], [ -121.836360913999911, 49.132580047000026 ], [ -121.838005578000022, 49.132596613000047 ], [ -121.837999272, 49.132866419000088 ], [ -121.838410439999947, 49.132870557000103 ], [ -121.838416743999986, 49.132600750000101 ], [ -121.838978393999952, 49.132606400000093 ], [ -121.839086474999988, 49.131398498000081 ], [ -121.842575493999973, 49.131533466000079 ], [ -121.842720789999959, 49.129908182000086 ], [ -121.839745792999949, 49.129793105000076 ], [ -121.84006732099999, 49.126198606000045 ], [ -121.843909512999971, 49.126347213000045 ], [ -121.843945449, 49.12594506000007 ], [ -121.84364177399999, 49.12593332000003 ], [ -121.843962975999943, 49.122338788000015 ], [ -121.847595075999976, 49.122479152000089 ], [ -121.847599203999934, 49.122432907000082 ], [ -121.843744404999924, 49.122283931 ], [ -121.843776572999957, 49.121923925000068 ], [ -121.843644822999977, 49.121918830000048 ], [ -121.843965996999884, 49.118324277000092 ], [ -121.846407038999956, 49.118418634000108 ], [ -121.846472629999965, 49.117684035000075 ], [ -121.849541764000023, 49.117802592000039 ], [ -121.84986886199998, 49.117934142000145 ], [ -121.853128567999946, 49.121046380000109 ], [ -121.853196216999933, 49.121157876000055 ], [ -121.853024290999912, 49.123086282000067 ], [ -121.85148489, 49.123026885000066 ], [ -121.85117950099999, 49.126450617000046 ], [ -121.849390264999982, 49.126381552000083 ], [ -121.849341951999961, 49.12692292800007 ], [ -121.850558813999967, 49.12696990200002 ], [ -121.850238089999934, 49.130564427000103 ], [ -121.848863326999933, 49.130511357000039 ], [ -121.848748996999944, 49.131792159000021 ], [ -121.848039278999977, 49.131764755000106 ], [ -121.848016679999915, 49.132017876000084 ], [ -121.844527606999947, 49.131883085000055 ], [ -121.844430157999966, 49.132973598000042 ], [ -121.844618504999971, 49.132980877000108 ], [ -121.844524831999976, 49.134029133000105 ], [ -121.84807279099999, 49.134166191000084 ], [ -121.848178715999936, 49.132979821000028 ], [ -121.848500095999981, 49.132992230000113 ], [ -121.848531618999928, 49.132639128000122 ], [ -121.848885113999984, 49.132652776000114 ], [ -121.848996267999951, 49.131407535000037 ], [ -121.849009129999928, 49.131408032000081 ], [ -121.849070103999935, 49.130724935000089 ], [ -121.85453561599995, 49.130935805000014 ], [ -121.854316895999958, 49.133389313000052 ], [ -121.857594365999915, 49.133515629000058 ], [ -121.857524033999965, 49.134305150000081 ], [ -121.852328007, 49.13615361300004 ], [ -121.852375896999902, 49.136231102000053 ], [ -121.85237561699995, 49.136273868000103 ], [ -121.852349913999944, 49.139935289000093 ], [ -121.850309225999965, 49.139920282000077 ], [ -121.850375883, 49.139173412000041 ], [ -121.847393494999949, 49.139058287000033 ], [ -121.847510216999964, 49.137751340000122 ], [ -121.847345242999936, 49.137744970000078 ], [ -121.847343553999963, 49.137817753000014 ], [ -121.846932342999963, 49.137813646000041 ], [ -121.846926083999989, 49.138083454000096 ], [ -121.84651487, 49.138079346000033 ], [ -121.846508609999944, 49.138349154000096 ], [ -121.84609739299999, 49.138345044000069 ], [ -121.846091128999959, 49.138614852000082 ], [ -121.845679912999941, 49.138610740000104 ], [ -121.845673645999938, 49.138880548000017 ], [ -121.845262425999934, 49.138876435000057 ], [ -121.845256159, 49.139146243000063 ], [ -121.84521808, 49.139145861 ], [ -121.845193985999941, 49.139415490000012 ], [ -121.845249888999945, 49.139416050000079 ], [ -121.845239043999982, 49.13988282800009 ], [ -121.843078896999941, 49.139866797000082 ], [ -121.838112409999951, 49.139829803000026 ], [ -121.837529, 49.139826773000067 ], [ -121.837494078999953, 49.139826589000059 ], [ -121.837432924999987, 49.139826260000049 ], [ -121.836419479999961, 49.139820994000061 ], [ -121.83626595, 49.139904419000061 ], [ -121.835710018000015, 49.139686191000116 ], [ -121.834684313999958, 49.13981254700014 ], [ -121.834898212999946, 49.13742481600007 ], [ -121.838673479999926, 49.137570979 ], [ -121.838681254999983, 49.137484107000034 ], [ -121.83871389299999, 49.137485369000046 ], [ -121.83871445299998, 49.137461406000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "339275477", "BldgCostT": "227869856", "sL_LossRatio": "0.826575908988257", "sL_AssetLoss": "566784", "sL_BldgLoss": "468490", "sL_StrLoss": "214058", "sL_NStrLoss": "254432", "sL_ContLoss": "98294", "geom_point": "0101000020E61000004966CC8F857D5EC0E47BFC9499954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.960769994999978, 49.167646189000067 ], [ -121.961364494999955, 49.166851611000055 ], [ -121.963618293999971, 49.167394211000051 ], [ -121.962894687999921, 49.168347997000119 ], [ -121.961739874999964, 49.169873398000057 ], [ -121.961096592999951, 49.170723800000069 ], [ -121.958984806999922, 49.170029683000088 ], [ -121.959618106999983, 49.169185201000069 ], [ -121.960197107999988, 49.168411785000046 ], [ -121.960769994999978, 49.167646189000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "377280045", "BldgCostT": "233095836", "sL_LossRatio": "0.67652439797556", "sL_AssetLoss": "828081", "sL_BldgLoss": "560217", "sL_StrLoss": "198297", "sL_NStrLoss": "361920", "sL_ContLoss": "267864", "geom_point": "0101000020E61000009D67C2823D7D5EC0C37563AC7C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.956048197999934, 49.169055634000124 ], [ -121.955073608999925, 49.168382491000088 ], [ -121.954326212999916, 49.168819607000096 ], [ -121.953930800999913, 49.16890118600007 ], [ -121.952601617999946, 49.168928802000018 ], [ -121.952593197999988, 49.167970102000091 ], [ -121.952592482999961, 49.167095483000082 ], [ -121.952592252, 49.166625745000061 ], [ -121.955754134999935, 49.166632829000015 ], [ -121.956774887999941, 49.166624424000126 ], [ -121.957092810999939, 49.166621827 ], [ -121.958200901999973, 49.166595816000097 ], [ -121.95847721, 49.166526869000059 ], [ -121.9587035699999, 49.166369451000101 ], [ -121.959153088000022, 49.166327757000083 ], [ -121.960155119999953, 49.166559206000038 ], [ -121.961364494999955, 49.166851611000055 ], [ -121.960769994999978, 49.167646189000067 ], [ -121.960197107999988, 49.168411785000046 ], [ -121.959618106999983, 49.169185201000069 ], [ -121.958984806999922, 49.170029683000088 ], [ -121.956790604999966, 49.169307094000082 ], [ -121.956048197999934, 49.169055634000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "270994996", "BldgCostT": "153174086", "sL_LossRatio": "0.605819903984005", "sL_AssetLoss": "803470.3", "sL_BldgLoss": "486758.3", "sL_StrLoss": "198330.3", "sL_NStrLoss": "288428", "sL_ContLoss": "316712", "geom_point": "0101000020E61000007FDDA6683A7D5EC05A23714518954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.952589338999957, 49.16615500100005 ], [ -121.95258830299997, 49.165647387000085 ], [ -121.952584493999979, 49.165218098000089 ], [ -121.952584695999974, 49.164759192000083 ], [ -121.952582598, 49.164263199000082 ], [ -121.952573905999955, 49.163762029000118 ], [ -121.952573822999938, 49.163757522000033 ], [ -121.952573816999958, 49.163757120000106 ], [ -121.95257380299995, 49.163754843000056 ], [ -121.955039484999986, 49.163264328000039 ], [ -121.956558979999969, 49.162952020000048 ], [ -121.958927301999935, 49.162828476000044 ], [ -121.958952263999976, 49.16282717100011 ], [ -121.958969185999976, 49.162823744000029 ], [ -121.958994944000011, 49.163129244000054 ], [ -121.959656526999979, 49.162778123000059 ], [ -121.959733661999948, 49.162759768000051 ], [ -121.95994092299999, 49.16271037700006 ], [ -121.96083678899997, 49.162820640000071 ], [ -121.96060489599995, 49.164099413000038 ], [ -121.960155119999953, 49.166559206000038 ], [ -121.959153088000022, 49.166327757000083 ], [ -121.9587035699999, 49.166369451000101 ], [ -121.95847721, 49.166526869000059 ], [ -121.958200901999973, 49.166595816000097 ], [ -121.957092810999939, 49.166621827 ], [ -121.956774887999941, 49.166624424000126 ], [ -121.955754134999935, 49.166632829000015 ], [ -121.952592252, 49.166625745000061 ], [ -121.952589338999957, 49.16615500100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82453750", "BldgCostT": "51505000", "sL_LossRatio": "0.718733951752875", "sL_AssetLoss": "307666", "sL_BldgLoss": "221130", "sL_StrLoss": "115177", "sL_NStrLoss": "105953", "sL_ContLoss": "86536", "geom_point": "0101000020E610000094B4B852517C5EC0FFEDDBDE28964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.94279838599999, 49.171548398000077 ], [ -121.945686403999943, 49.171552706000121 ], [ -121.945688714999989, 49.172439001000043 ], [ -121.945683595999967, 49.173330503000081 ], [ -121.945305419999912, 49.173482193000076 ], [ -121.944039781999933, 49.174067393000023 ], [ -121.942782326000014, 49.174560996000068 ], [ -121.940005199999959, 49.175718501000077 ], [ -121.93998911599999, 49.172652404000132 ], [ -121.939985781999937, 49.172453993000033 ], [ -121.939981797999977, 49.171558511000072 ], [ -121.94279838599999, 49.171548398000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85922084", "BldgCostT": "55363334", "sL_LossRatio": "0.81470826879103", "sL_AssetLoss": "284697", "sL_BldgLoss": "231945", "sL_StrLoss": "153405", "sL_NStrLoss": "78540", "sL_ContLoss": "52752", "geom_point": "0101000020E61000001516C372577C5EC09B99C218CB954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.942776789999968, 49.16896629900004 ], [ -121.945658596, 49.168930703000058 ], [ -121.94566817399999, 49.169764103000034 ], [ -121.945678201999982, 49.17067151000002 ], [ -121.945686403999943, 49.171552706000121 ], [ -121.94279838599999, 49.171548398000077 ], [ -121.939981797999977, 49.171558511000072 ], [ -121.939966884999947, 49.169011795000088 ], [ -121.94099212, 49.16899369900009 ], [ -121.941640485000036, 49.168984795000021 ], [ -121.942776789999968, 49.16896629900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408440234", "BldgCostT": "259934061", "sL_LossRatio": "0.790998931752109", "sL_AssetLoss": "833514.4", "sL_BldgLoss": "659309", "sL_StrLoss": "282258", "sL_NStrLoss": "377051", "sL_ContLoss": "174205.4", "geom_point": "0101000020E61000002183C3A8B77C5EC01F610FF5D4954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.948973121999984, 49.168920298000039 ], [ -121.952601617999946, 49.168928802000018 ], [ -121.952603973999942, 49.170081986000056 ], [ -121.952607479999969, 49.170908896000128 ], [ -121.952026498999913, 49.17119899500004 ], [ -121.95042208299995, 49.171580397000078 ], [ -121.949606989999921, 49.171769689000094 ], [ -121.949453421999962, 49.171831608000055 ], [ -121.94901570499999, 49.172004394000076 ], [ -121.94778600699999, 49.172495486000052 ], [ -121.945683595999967, 49.173330503000081 ], [ -121.945688714999989, 49.172439001000043 ], [ -121.945686403999943, 49.171552706000121 ], [ -121.945678201999982, 49.17067151000002 ], [ -121.94566817399999, 49.169764103000034 ], [ -121.945658596, 49.168930703000058 ], [ -121.948973121999984, 49.168920298000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152283335", "BldgCostT": "97847350", "sL_LossRatio": "0.856197264809958", "sL_AssetLoss": "294751", "sL_BldgLoss": "252365", "sL_StrLoss": "139515", "sL_NStrLoss": "112850", "sL_ContLoss": "42386", "geom_point": "0101000020E6100000D64486F2517C5EC0B339628877954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939966884999947, 49.169011795000088 ], [ -121.939919991999943, 49.166297989000078 ], [ -121.940644020999954, 49.166068158000051 ], [ -121.940983849999924, 49.165985094000135 ], [ -121.942762497999951, 49.166066195000084 ], [ -121.942759619999947, 49.166303304000046 ], [ -121.942764486000016, 49.167033699000072 ], [ -121.945467908999944, 49.167027409000056 ], [ -121.945637903999952, 49.167045601000055 ], [ -121.945645607999921, 49.167947484000116 ], [ -121.945658596, 49.168930703000058 ], [ -121.942776789999968, 49.16896629900004 ], [ -121.941640485000036, 49.168984795000021 ], [ -121.94099212, 49.16899369900009 ], [ -121.939966884999947, 49.169011795000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "355486183", "BldgCostT": "221809440", "sL_LossRatio": "0.752716391774213", "sL_AssetLoss": "886286", "sL_BldgLoss": "667122", "sL_StrLoss": "332788", "sL_NStrLoss": "334334", "sL_ContLoss": "219164", "geom_point": "0101000020E61000007F01CD52B87C5EC0F91EEBD254954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.945637903999952, 49.167045601000055 ], [ -121.945467908999944, 49.167027409000056 ], [ -121.942764486000016, 49.167033699000072 ], [ -121.942759619999947, 49.166303304000046 ], [ -121.942762497999951, 49.166066195000084 ], [ -121.945516427999962, 49.16530038700008 ], [ -121.94562340199991, 49.165276136000053 ], [ -121.945688642999983, 49.165258955000098 ], [ -121.946695773999949, 49.165027178000166 ], [ -121.947251106999929, 49.164899357000181 ], [ -121.952449782999906, 49.163780667000076 ], [ -121.95257380299995, 49.163754843000056 ], [ -121.952573816999958, 49.163757120000106 ], [ -121.952573822999938, 49.163757522000033 ], [ -121.952573905999955, 49.163762029000118 ], [ -121.952582598, 49.164263199000082 ], [ -121.952584695999974, 49.164759192000083 ], [ -121.952584493999979, 49.165218098000089 ], [ -121.95258830299997, 49.165647387000085 ], [ -121.952589338999957, 49.16615500100005 ], [ -121.952592252, 49.166625745000061 ], [ -121.952592482999961, 49.167095483000082 ], [ -121.952593197999988, 49.167970102000091 ], [ -121.952601617999946, 49.168928802000018 ], [ -121.948973121999984, 49.168920298000039 ], [ -121.945658596, 49.168930703000058 ], [ -121.945645607999921, 49.167947484000116 ], [ -121.945637903999952, 49.167045601000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "387521167", "BldgCostT": "266256667", "sL_LossRatio": "0.951269331424385", "sL_AssetLoss": "579167.1", "sL_BldgLoss": "550943.9", "sL_StrLoss": "478668.9", "sL_NStrLoss": "72275", "sL_ContLoss": "28223.2", "geom_point": "0101000020E61000009E2E8B89CD7C5EC0BCA4DE119D8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.948843827999937, 49.105576325000122 ], [ -121.953854171, 49.103379596000046 ], [ -121.957177075999965, 49.101952038000022 ], [ -121.95838083699999, 49.101476904000016 ], [ -121.958926784999932, 49.1021687100001 ], [ -121.959447697, 49.102101209000089 ], [ -121.959661932999921, 49.102078141000099 ], [ -121.960503039999978, 49.10230007400002 ], [ -121.960804879999984, 49.102633648000072 ], [ -121.96019036499996, 49.103448926000084 ], [ -121.959338083999953, 49.103461029000044 ], [ -121.958310785999956, 49.103965899000066 ], [ -121.95927708699999, 49.1047072980001 ], [ -121.959066560999986, 49.104917219000043 ], [ -121.958929075999947, 49.105054318000093 ], [ -121.958153084999964, 49.104644972000095 ], [ -121.957497808999932, 49.10448713300007 ], [ -121.957137619999969, 49.104405177000103 ], [ -121.956329387000011, 49.104365084000072 ], [ -121.955326965, 49.104531450000053 ], [ -121.95501597799999, 49.104591750000075 ], [ -121.951514548999981, 49.106583198000088 ], [ -121.947757467999949, 49.108075956000107 ], [ -121.946168098999962, 49.109688136000088 ], [ -121.945044664999955, 49.110711930000022 ], [ -121.943482692999964, 49.111291485 ], [ -121.943130955999933, 49.111286335000031 ], [ -121.942483697999975, 49.111275428000027 ], [ -121.942214337999985, 49.111221075000046 ], [ -121.942004721, 49.111110368000013 ], [ -121.941880924999936, 49.110958718000084 ], [ -121.941822023999961, 49.110769858000012 ], [ -121.941825657, 49.110576483000052 ], [ -121.94183405299999, 49.110129218000068 ], [ -121.941682898999915, 49.109772747000079 ], [ -121.94167025199999, 49.109754880000075 ], [ -121.941479161999922, 49.109484631000079 ], [ -121.941176441999943, 49.109184661 ], [ -121.940819265999949, 49.108959275000068 ], [ -121.940674129999948, 49.108893606000017 ], [ -121.941195441, 49.108685080000051 ], [ -121.944124936999984, 49.107513277000095 ], [ -121.948843827999937, 49.105576325000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143575334", "BldgCostT": "97543334", "sL_LossRatio": "0.895423999127602", "sL_AssetLoss": "366805", "sL_BldgLoss": "328446", "sL_StrLoss": "250339", "sL_NStrLoss": "78107", "sL_ContLoss": "38359", "geom_point": "0101000020E61000000EEF4992ED7B5EC024B4E55C8A8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.937484654999963, 49.113841799000078 ], [ -121.937671898999966, 49.111697335000052 ], [ -121.935100273, 49.111673641000017 ], [ -121.93513224499992, 49.110179948000116 ], [ -121.931175343999953, 49.110030213000144 ], [ -121.931175920999976, 49.110023607000066 ], [ -121.93069242699994, 49.110005301000108 ], [ -121.930705732000021, 49.109853168000072 ], [ -121.929560763999987, 49.109809808000065 ], [ -121.929568439999912, 49.10888383900005 ], [ -121.93750798399995, 49.108759688000063 ], [ -121.940251730999961, 49.108716624000046 ], [ -121.940347316999947, 49.108745786000071 ], [ -121.940674129999948, 49.108893606000017 ], [ -121.940819265999949, 49.108959275000068 ], [ -121.941176441999943, 49.109184661 ], [ -121.941479161999922, 49.109484631000079 ], [ -121.94167025199999, 49.109754880000075 ], [ -121.941682898999915, 49.109772747000079 ], [ -121.94183405299999, 49.110129218000068 ], [ -121.941825657, 49.110576483000052 ], [ -121.941822023999961, 49.110769858000012 ], [ -121.941880924999936, 49.110958718000084 ], [ -121.942004721, 49.111110368000013 ], [ -121.942214337999985, 49.111221075000046 ], [ -121.942483697999975, 49.111275428000027 ], [ -121.943130955999933, 49.111286335000031 ], [ -121.943482692999964, 49.111291485 ], [ -121.943452672999939, 49.111604153000023 ], [ -121.943338627999978, 49.111764861000061 ], [ -121.943150429, 49.111895706000062 ], [ -121.942919013999955, 49.11198797100014 ], [ -121.941963523999945, 49.112180025000029 ], [ -121.941697960999988, 49.112270964000096 ], [ -121.941038821999939, 49.112678888000104 ], [ -121.940951163999955, 49.112741407000094 ], [ -121.940799275999964, 49.112926825000145 ], [ -121.940542932999989, 49.113728664000028 ], [ -121.940451808999967, 49.114062392000058 ], [ -121.940412060999961, 49.114207904000047 ], [ -121.939179731999928, 49.115890777000097 ], [ -121.938637289999946, 49.116499644000065 ], [ -121.938552964999985, 49.116680414000079 ], [ -121.938536106999948, 49.116826755000027 ], [ -121.938857430999974, 49.118358232000055 ], [ -121.938938887999953, 49.118539814 ], [ -121.936660427999968, 49.118518030000118 ], [ -121.935797237999935, 49.118509783 ], [ -121.935360501, 49.118505606000035 ], [ -121.934852246999966, 49.118504245000068 ], [ -121.933947893999928, 49.118501800000047 ], [ -121.932687074999961, 49.118498384000141 ], [ -121.93098782899996, 49.118493776000093 ], [ -121.929458618999945, 49.118489606 ], [ -121.929462404999938, 49.118195908000068 ], [ -121.929488186999933, 49.116200154000076 ], [ -121.929668072999917, 49.116206966000071 ], [ -121.929674017999957, 49.116139019000038 ], [ -121.930448735999931, 49.116168355000092 ], [ -121.930456888999942, 49.116075138000021 ], [ -121.931284470999984, 49.116106469000016 ], [ -121.931320774999932, 49.115691358000078 ], [ -121.933429813999936, 49.115771173000091 ], [ -121.933437188999903, 49.115686809000053 ], [ -121.934481596999916, 49.1157263180001 ], [ -121.934570396999945, 49.11471013200007 ], [ -121.935183281999969, 49.114733313000031 ], [ -121.935221093999957, 49.114300547000092 ], [ -121.935592509999978, 49.114314593000053 ], [ -121.935639905999963, 49.11377205600013 ], [ -121.937484654999963, 49.113841799000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166563584", "BldgCostT": "111718334", "sL_LossRatio": "0.895465889661342", "sL_AssetLoss": "478418", "sL_BldgLoss": "428407", "sL_StrLoss": "293025", "sL_NStrLoss": "135382", "sL_ContLoss": "50011", "geom_point": "0101000020E61000009ABC33A0FF7B5EC01F519949F1974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.935128687999978, 49.188917603000135 ], [ -121.9351033, 49.186807906000126 ], [ -121.9350926, 49.186239488000076 ], [ -121.935054014999963, 49.183841582000063 ], [ -121.935703368999967, 49.183504001000102 ], [ -121.936133990999977, 49.18328011300008 ], [ -121.937373709999918, 49.18275799000002 ], [ -121.937916316999988, 49.182627004000089 ], [ -121.938571693999947, 49.182509289000087 ], [ -121.939830515999944, 49.18235030500005 ], [ -121.939835915999964, 49.183073587000074 ], [ -121.939836589, 49.183772293000075 ], [ -121.939839406999937, 49.184525294000117 ], [ -121.939846406999962, 49.185309005000086 ], [ -121.939848902999984, 49.186033991000052 ], [ -121.939853090999975, 49.186802305000079 ], [ -121.937903801999965, 49.186804509000055 ], [ -121.937893606, 49.186214485000036 ], [ -121.937944276999957, 49.186152390000075 ], [ -121.938071790000023, 49.186107591000031 ], [ -121.93857011599998, 49.186091202000085 ], [ -121.938667014999922, 49.186049793000031 ], [ -121.938730599999971, 49.185981896000094 ], [ -121.938720091999983, 49.185443201000069 ], [ -121.938680199, 49.185381294000045 ], [ -121.938580189999982, 49.185347802000095 ], [ -121.936481004, 49.18533799800008 ], [ -121.936545202, 49.185513498000127 ], [ -121.936565297999934, 49.186806309000175 ], [ -121.936819314999966, 49.186805011000033 ], [ -121.936834394999948, 49.187416900000152 ], [ -121.936885987999943, 49.187470208000043 ], [ -121.93702168799993, 49.187520413000058 ], [ -121.938492787999962, 49.187524495000083 ], [ -121.93860630399999, 49.187561287000115 ], [ -121.938680485999924, 49.187622702000091 ], [ -121.938671597999956, 49.188195712000052 ], [ -121.939062400999958, 49.188199695000044 ], [ -121.93906671, 49.188904786000087 ], [ -121.939298704999942, 49.188904603 ], [ -121.939581216999983, 49.188987052000087 ], [ -121.939713585999954, 49.189025695000083 ], [ -121.939920889999954, 49.189135407000016 ], [ -121.940237011, 49.189444797000128 ], [ -121.940254483999979, 49.190375900000049 ], [ -121.940254205999935, 49.191086382000101 ], [ -121.939132193999967, 49.191091194000087 ], [ -121.937958099999918, 49.191096211000108 ], [ -121.935158285999961, 49.191119495000081 ], [ -121.935148482999949, 49.190384294000054 ], [ -121.935128687999978, 49.188917603000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132912917", "BldgCostT": "88771667", "sL_LossRatio": "0.861324656955772", "sL_AssetLoss": "393098", "sL_BldgLoss": "338585", "sL_StrLoss": "229620", "sL_NStrLoss": "108965", "sL_ContLoss": "54513", "geom_point": "0101000020E6100000C4A09FEBB37B5EC0D7E47CF313984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.9314276899999, 49.185832293000075 ], [ -121.935054014999963, 49.183841582000063 ], [ -121.9350926, 49.186239488000076 ], [ -121.9351033, 49.186807906000126 ], [ -121.935128687999978, 49.188917603000135 ], [ -121.935148482999949, 49.190384294000054 ], [ -121.935158285999961, 49.191119495000081 ], [ -121.933892499999928, 49.191121295000123 ], [ -121.931476300999947, 49.1911229110001 ], [ -121.930961488999955, 49.191122389000057 ], [ -121.930155862999953, 49.191132033 ], [ -121.930350611, 49.18632417900006 ], [ -121.930641090000023, 49.186209209000076 ], [ -121.9314276899999, 49.185832293000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168913500", "BldgCostT": "115260000", "sL_LossRatio": "0.887459238360169", "sL_AssetLoss": "515067.6", "sL_BldgLoss": "457101.5", "sL_StrLoss": "315950.5", "sL_NStrLoss": "141151", "sL_ContLoss": "57966.1", "geom_point": "0101000020E6100000CE164A05D97B5EC022FCA43DD2984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.936728807999927, 49.196686706000015 ], [ -121.936515886, 49.196414602000111 ], [ -121.935759437999977, 49.196105123000066 ], [ -121.935760016999907, 49.196078080000113 ], [ -121.935521231999957, 49.195934561000144 ], [ -121.935344431999965, 49.195874688000103 ], [ -121.93491812299996, 49.195870758000069 ], [ -121.934578987999927, 49.195776597000105 ], [ -121.931870012999951, 49.195436208000061 ], [ -121.931222904999913, 49.195476105000097 ], [ -121.930131806999938, 49.195789405000028 ], [ -121.92997802499994, 49.195859762000083 ], [ -121.929971156999926, 49.195690627000026 ], [ -121.930155862999953, 49.191132033 ], [ -121.930961488999955, 49.191122389000057 ], [ -121.931476300999947, 49.1911229110001 ], [ -121.933892499999928, 49.191121295000123 ], [ -121.935158285999961, 49.191119495000081 ], [ -121.937958099999918, 49.191096211000108 ], [ -121.939132193999967, 49.191091194000087 ], [ -121.939243783999942, 49.19456124000007 ], [ -121.939086789999962, 49.194559799000082 ], [ -121.939041069999988, 49.196697243000067 ], [ -121.939113959999958, 49.196699992000056 ], [ -121.939115570999974, 49.196681581000057 ], [ -121.939312231999963, 49.196688998000084 ], [ -121.939367044999983, 49.198392421000044 ], [ -121.93802058199999, 49.198416593000097 ], [ -121.937555799999956, 49.198457007000052 ], [ -121.936712518999954, 49.197405901000067 ], [ -121.936638588999941, 49.197054089000083 ], [ -121.936728807999927, 49.196686706000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97110727", "BldgCostT": "64614856", "sL_LossRatio": "0.890065525661722", "sL_AssetLoss": "257135.9", "sL_BldgLoss": "228867.8", "sL_StrLoss": "159117.8", "sL_NStrLoss": "69750", "sL_ContLoss": "28268.1", "geom_point": "0101000020E6100000BFA12A85847C5EC0E5A706D4FA984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949862600999936, 49.191854387000042 ], [ -121.949875837999969, 49.191702615000061 ], [ -121.949846247999957, 49.191701502000086 ], [ -121.949901568999977, 49.191067149000034 ], [ -121.94986049, 49.191065604000038 ], [ -121.950017737999971, 49.189262378000087 ], [ -121.949905089999987, 49.189261354000031 ], [ -121.949911599999936, 49.188953711000096 ], [ -121.949709689999906, 49.188719844000055 ], [ -121.949504863999891, 49.188717982000099 ], [ -121.949509728999942, 49.188488232000047 ], [ -121.949474858999935, 49.18844784200008 ], [ -121.947864000999942, 49.188433178000032 ], [ -121.94785827799997, 49.188702991000078 ], [ -121.947446632, 49.188699240000119 ], [ -121.947440907999962, 49.18896905500003 ], [ -121.94702926099994, 49.188965301000088 ], [ -121.947023533999925, 49.189235115 ], [ -121.946611882999917, 49.189231362000086 ], [ -121.94660615399998, 49.18950117600005 ], [ -121.946194501999983, 49.189497419000077 ], [ -121.946193348999884, 49.189551630000032 ], [ -121.949723905999974, 49.189684501000102 ], [ -121.949410415999964, 49.193278973000062 ], [ -121.943937147999961, 49.193072940000036 ], [ -121.944109666999935, 49.191097574000054 ], [ -121.941220126999937, 49.191071117000099 ], [ -121.941214367999962, 49.191340931000099 ], [ -121.941154679999926, 49.191340383000046 ], [ -121.940924807999977, 49.193970474000018 ], [ -121.939512302999972, 49.193917218000117 ], [ -121.939500768999935, 49.194456665000118 ], [ -121.939504132999986, 49.194521062000064 ], [ -121.939499372999961, 49.194521993000073 ], [ -121.939498483999984, 49.194563579000032 ], [ -121.939243783999942, 49.19456124000007 ], [ -121.939132193999967, 49.191091194000087 ], [ -121.940254205999935, 49.191086382000101 ], [ -121.940254483999979, 49.190375900000049 ], [ -121.940237011, 49.189444797000128 ], [ -121.939920889999954, 49.189135407000016 ], [ -121.939713585999954, 49.189025695000083 ], [ -121.939581216999983, 49.188987052000087 ], [ -121.939298704999942, 49.188904603 ], [ -121.93906671, 49.188904786000087 ], [ -121.939062400999958, 49.188199695000044 ], [ -121.938671597999956, 49.188195712000052 ], [ -121.938680485999924, 49.187622702000091 ], [ -121.93860630399999, 49.187561287000115 ], [ -121.938492787999962, 49.187524495000083 ], [ -121.93702168799993, 49.187520413000058 ], [ -121.936885987999943, 49.187470208000043 ], [ -121.936834394999948, 49.187416900000152 ], [ -121.936819314999966, 49.186805011000033 ], [ -121.936565297999934, 49.186806309000175 ], [ -121.936545202, 49.185513498000127 ], [ -121.936481004, 49.18533799800008 ], [ -121.938580189999982, 49.185347802000095 ], [ -121.938680199, 49.185381294000045 ], [ -121.938720091999983, 49.185443201000069 ], [ -121.938730599999971, 49.185981896000094 ], [ -121.938667014999922, 49.186049793000031 ], [ -121.93857011599998, 49.186091202000085 ], [ -121.938071790000023, 49.186107591000031 ], [ -121.937944276999957, 49.186152390000075 ], [ -121.937893606, 49.186214485000036 ], [ -121.937903801999965, 49.186804509000055 ], [ -121.939853090999975, 49.186802305000079 ], [ -121.942219488999939, 49.186786890000072 ], [ -121.942245612999983, 49.187822896000071 ], [ -121.945662338999952, 49.187813090000112 ], [ -121.948426905999966, 49.187805090000083 ], [ -121.952498106999897, 49.187789595000034 ], [ -121.952502692999985, 49.188112236000038 ], [ -121.952507700999917, 49.188463125000098 ], [ -121.952544015999976, 49.191009918000127 ], [ -121.952572412000038, 49.193001588000037 ], [ -121.952608200999947, 49.195237004000077 ], [ -121.952512505999977, 49.195579599000062 ], [ -121.952530606, 49.197545700000028 ], [ -121.952639345999927, 49.198771402000084 ], [ -121.952515000999981, 49.198937843000024 ], [ -121.951914862, 49.19891528600008 ], [ -121.95184636499999, 49.199700984000089 ], [ -121.951327595999942, 49.200238598000041 ], [ -121.95124031899995, 49.200404987000105 ], [ -121.950048203999941, 49.20036016300002 ], [ -121.950046835999942, 49.200375837000095 ], [ -121.949840139999978, 49.200368064000045 ], [ -121.949813641999938, 49.200671841000045 ], [ -121.949595355999918, 49.200663631000054 ], [ -121.949566749999974, 49.200991547000093 ], [ -121.949378037999949, 49.200984449000103 ], [ -121.949352956999974, 49.201271951000088 ], [ -121.949216345999943, 49.201266813000103 ], [ -121.949103531000034, 49.202559888000081 ], [ -121.947327376999937, 49.203027195000104 ], [ -121.944868701999951, 49.203129793000073 ], [ -121.940465093999975, 49.20297309700014 ], [ -121.939297402999927, 49.20301589900005 ], [ -121.939253608999962, 49.202883236000041 ], [ -121.939178177000016, 49.202654819000067 ], [ -121.939156555999929, 49.202589350000018 ], [ -121.939014301999975, 49.202158510000075 ], [ -121.939178307999953, 49.202161299000117 ], [ -121.939179308999954, 49.202097200000061 ], [ -121.938115085999982, 49.19920889400003 ], [ -121.937905507999986, 49.198802998000119 ], [ -121.937555799999956, 49.198457007000052 ], [ -121.93802058199999, 49.198416593000097 ], [ -121.939367044999983, 49.198392421000044 ], [ -121.939312231999963, 49.196688998000084 ], [ -121.939946736999929, 49.19671292200011 ], [ -121.93995564, 49.196611101000116 ], [ -121.941334890999926, 49.196663094000037 ], [ -121.941377005999968, 49.196181233000061 ], [ -121.945442213999954, 49.196334375000028 ], [ -121.945462744999986, 49.196099231000126 ], [ -121.945631361999943, 49.196105579000033 ], [ -121.945662054999957, 49.195754035000057 ], [ -121.947620431999937, 49.195827751000067 ], [ -121.947693913999927, 49.194985681000055 ], [ -121.948136442999896, 49.195002334000101 ], [ -121.94814979299997, 49.194372834000021 ], [ -121.94856148599996, 49.194376583000057 ], [ -121.948567203999943, 49.194106770000083 ], [ -121.949390587, 49.194114262000014 ], [ -121.949396301999982, 49.193844449000082 ], [ -121.949548459999946, 49.193845834000065 ], [ -121.949722605999952, 49.191849120000036 ], [ -121.949862600999936, 49.191854387000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89532334", "BldgCostT": "60483334", "sL_LossRatio": "0.872909561888754", "sL_AssetLoss": "273202.3", "sL_BldgLoss": "238480.9", "sL_StrLoss": "167152.9", "sL_NStrLoss": "71328", "sL_ContLoss": "34721.4", "geom_point": "0101000020E610000043B75ED3C37A5EC01AAAE662A1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.914140850999928, 49.214119885000031 ], [ -121.91419471799999, 49.213507930000034 ], [ -121.913228058999934, 49.213471263 ], [ -121.913298523999984, 49.212670898000106 ], [ -121.913159894999964, 49.212669594000069 ], [ -121.913164316999897, 49.21246780900001 ], [ -121.913062915999944, 49.212463961000054 ], [ -121.913063321999971, 49.212459354000039 ], [ -121.913211241999988, 49.210779245000019 ], [ -121.91195446199994, 49.210731556000034 ], [ -121.912517007999938, 49.2103504950001 ], [ -121.913498477999909, 49.209441895000062 ], [ -121.913486590999952, 49.209333701000091 ], [ -121.912993916999966, 49.209275302000044 ], [ -121.912182406999932, 49.209349302000099 ], [ -121.910535908999933, 49.20991758700012 ], [ -121.909610492999974, 49.210142610000069 ], [ -121.908910423999913, 49.210407118 ], [ -121.908977970999956, 49.209640652000083 ], [ -121.908627730999953, 49.209627349000073 ], [ -121.908670580999967, 49.209141167000034 ], [ -121.908670162999897, 49.209141151000033 ], [ -121.908986910999957, 49.205546885000025 ], [ -121.909496536999939, 49.205566242000032 ], [ -121.909556524999914, 49.204885397000062 ], [ -121.91000041400001, 49.204902255000071 ], [ -121.910086166, 49.203928846000096 ], [ -121.909642414999922, 49.203911994000123 ], [ -121.90958571299997, 49.204555592000133 ], [ -121.908102927999963, 49.204499268000127 ], [ -121.908014501999929, 49.205502528000075 ], [ -121.908378399, 49.205516352000117 ], [ -121.908061602999979, 49.209110616000096 ], [ -121.904311061999948, 49.208968072000033 ], [ -121.904303506999952, 49.206827984 ], [ -121.904376214999928, 49.206626094000072 ], [ -121.904543769999947, 49.206420957000034 ], [ -121.904871901999968, 49.206019193000053 ], [ -121.905648715999973, 49.205355405000027 ], [ -121.905785062999968, 49.205078596000064 ], [ -121.905823049999967, 49.205028754000047 ], [ -121.905902478999934, 49.204919483000111 ], [ -121.905967630999896, 49.20479235300008 ], [ -121.90606708099989, 49.204640376000029 ], [ -121.906167732999947, 49.204434442000043 ], [ -121.9062399099999, 49.204273203000099 ], [ -121.906254046999919, 49.204255334000031 ], [ -121.906326422999882, 49.204085136000046 ], [ -121.906384531999933, 49.203941741000087 ], [ -121.906456493999968, 49.203789494000013 ], [ -121.906501454999983, 49.203619004000117 ], [ -121.906504842999979, 49.203466122000087 ], [ -121.906495067999941, 49.203286120000044 ], [ -121.906499213999908, 49.203097244000048 ], [ -121.906474168999949, 49.202989045000074 ], [ -121.906409924999977, 49.20279055300005 ], [ -121.90634563, 49.202592048000028 ], [ -121.906323367999931, 49.202357936000134 ], [ -121.906327906999977, 49.20215108700009 ], [ -121.906405775999957, 49.202009076000138 ], [ -121.906457306, 49.201935298000144 ], [ -121.906463796999958, 49.20190451400002 ], [ -121.906352127999924, 49.201338521000068 ], [ -121.906274003999968, 49.200942494000081 ], [ -121.90596601099999, 49.200051400000106 ], [ -121.905951307999942, 49.200008801000124 ], [ -121.905932031999939, 49.199981475000072 ], [ -121.905821243999981, 49.199824261000124 ], [ -121.905652272999987, 49.199584496000028 ], [ -121.905344382999942, 49.199270843000107 ], [ -121.90463180099999, 49.198544989000041 ], [ -121.904381096999913, 49.198164908000074 ], [ -121.903626591999966, 49.197379794000028 ], [ -121.903563167999891, 49.197270159000091 ], [ -121.903474103999912, 49.197116099000056 ], [ -121.903259777999892, 49.196323597000095 ], [ -121.903095600999976, 49.195974697000167 ], [ -121.902966171999964, 49.195774998000019 ], [ -121.902729503999979, 49.195409888000057 ], [ -121.90255560199995, 49.194968689000056 ], [ -121.902557757999901, 49.194855868000047 ], [ -121.902559418999985, 49.194769598000057 ], [ -121.902563394999945, 49.194755594000071 ], [ -121.9026052, 49.19460909 ], [ -121.902831898999963, 49.194248899000065 ], [ -121.902964994999962, 49.194157867000037 ], [ -121.903029124999989, 49.194113998000091 ], [ -121.903284693999936, 49.193986702000132 ], [ -121.903755294999897, 49.193818802000152 ], [ -121.904624180999932, 49.193586795000044 ], [ -121.907244713999944, 49.193014796000099 ], [ -121.908143197999948, 49.19275770800008 ], [ -121.908903605999953, 49.192463809000088 ], [ -121.909570119999913, 49.192284490000091 ], [ -121.911206782999926, 49.190144992000029 ], [ -121.911400890999971, 49.189923077000095 ], [ -121.911542623999978, 49.189760995000071 ], [ -121.9126882899999, 49.188830789000093 ], [ -121.912896906999919, 49.188691688000105 ], [ -121.91432149399995, 49.1879451920001 ], [ -121.915192281999978, 49.187595989000094 ], [ -121.914977589999921, 49.187347709000043 ], [ -121.916228908999983, 49.186969286000071 ], [ -121.917137490999934, 49.186834009000108 ], [ -121.918771398999951, 49.186805497000087 ], [ -121.922643793999924, 49.187335301000076 ], [ -121.924275302999945, 49.187350989000045 ], [ -121.925648903999971, 49.187265506000067 ], [ -121.928295796999976, 49.186714410000022 ], [ -121.930066657999973, 49.186053043000065 ], [ -121.930096638999913, 49.186080876000034 ], [ -121.930350611, 49.18632417900006 ], [ -121.930155862999953, 49.191132033 ], [ -121.929971156999926, 49.195690627000026 ], [ -121.92997802499994, 49.195859762000083 ], [ -121.930131806999938, 49.195789405000028 ], [ -121.931222904999913, 49.195476105000097 ], [ -121.931870012999951, 49.195436208000061 ], [ -121.934578987999927, 49.195776597000105 ], [ -121.93491812299996, 49.195870758000069 ], [ -121.93411879199999, 49.195863383000109 ], [ -121.934070061999989, 49.196419930000118 ], [ -121.934053042999949, 49.196419288000072 ], [ -121.934007288999965, 49.1969418300001 ], [ -121.932270605999975, 49.196876243000091 ], [ -121.932131595999977, 49.198463071000035 ], [ -121.930910291999965, 49.198416930000093 ], [ -121.930852377999955, 49.199077800000055 ], [ -121.928750031999982, 49.198998340000081 ], [ -121.928734267999985, 49.199178135000054 ], [ -121.928802931999968, 49.199152561000091 ], [ -121.928839611999976, 49.199195520000082 ], [ -121.929922622000035, 49.199236457 ], [ -121.929607534999974, 49.202830819000063 ], [ -121.927468140999906, 49.202749941000071 ], [ -121.92744485799993, 49.20301537000006 ], [ -121.925680762999917, 49.202948649000071 ], [ -121.925504914999948, 49.204952448000085 ], [ -121.92753659899995, 49.205029289 ], [ -121.92769147199999, 49.203263627000119 ], [ -121.933165866999985, 49.20347048100006 ], [ -121.932926502999962, 49.206203 ], [ -121.932919775999963, 49.206279799000065 ], [ -121.932141407999922, 49.206413997000098 ], [ -121.930866299999977, 49.206959507000114 ], [ -121.930788341999943, 49.206986923000095 ], [ -121.930583369999965, 49.206979179000015 ], [ -121.930235470999961, 49.206966034000089 ], [ -121.930220298999984, 49.207139102000056 ], [ -121.930215994999983, 49.207188203000086 ], [ -121.929549609999981, 49.207422548000139 ], [ -121.928845385999963, 49.207670193000048 ], [ -121.928571362999961, 49.207946290000088 ], [ -121.927874593999945, 49.208648312000022 ], [ -121.927857008999979, 49.208647647000099 ], [ -121.924605680999946, 49.208524681000057 ], [ -121.924863588999941, 49.205586626000141 ], [ -121.923758898999964, 49.205544824000114 ], [ -121.923621027999943, 49.207115050000013 ], [ -121.92304954799999, 49.207093420000071 ], [ -121.922584399999948, 49.206495191000045 ], [ -121.922028892999933, 49.206157703000095 ], [ -121.921388092, 49.205926888000135 ], [ -121.921087005999951, 49.205861404000082 ], [ -121.919740804999932, 49.205867105000102 ], [ -121.919121585999932, 49.206013802000093 ], [ -121.918136396999941, 49.206463912000039 ], [ -121.916741606999921, 49.207422389000087 ], [ -121.914959604000018, 49.207962101000113 ], [ -121.91313059, 49.208745399000072 ], [ -121.91289249499999, 49.208896396000114 ], [ -121.913289086999924, 49.209017509000091 ], [ -121.913673212999953, 49.208994703000045 ], [ -121.914549692999913, 49.208507612000062 ], [ -121.915267179999944, 49.208316798000091 ], [ -121.915392697999948, 49.208182897 ], [ -121.915823600999929, 49.207979201000107 ], [ -121.91597518899999, 49.207999189000134 ], [ -121.915875700999919, 49.208151602000079 ], [ -121.916538891999949, 49.20794219900008 ], [ -121.917508720999962, 49.207536301000047 ], [ -121.918858505999978, 49.206704594000044 ], [ -121.919411990999961, 49.206510903000066 ], [ -121.92032198899993, 49.206285797000078 ], [ -121.920885506000033, 49.206272986000052 ], [ -121.921392620999924, 49.206377003000092 ], [ -121.922099104999987, 49.20669889800007 ], [ -121.92254792199995, 49.207074432000049 ], [ -121.922006242999913, 49.207053925 ], [ -121.921991567999925, 49.207220988000053 ], [ -121.921225194999948, 49.207191969000071 ], [ -121.921224436, 49.207200607000068 ], [ -121.918890793999935, 49.207112211 ], [ -121.918881189999979, 49.207221455000095 ], [ -121.919214009999962, 49.207234065000137 ], [ -121.919176782999941, 49.207657576000095 ], [ -121.91939023, 49.207665662000068 ], [ -121.91920948799999, 49.209721823000088 ], [ -121.923924504999974, 49.209900346000033 ], [ -121.923838437999976, 49.210880530000061 ], [ -121.924732430999924, 49.210888856000061 ], [ -121.924729133999946, 49.211040881000038 ], [ -121.924717409999985, 49.211581328000101 ], [ -121.924624019999925, 49.211697443000112 ], [ -121.923767404999936, 49.211689463000035 ], [ -121.923679441000033, 49.212691176000085 ], [ -121.922969484999939, 49.213362693000121 ], [ -121.922834359999968, 49.213465321000079 ], [ -121.920394248999926, 49.213372940000021 ], [ -121.920334179999927, 49.214056409000079 ], [ -121.91964259099997, 49.214030216000026 ], [ -121.91961646599999, 49.214327424000075 ], [ -121.914140850999928, 49.214119885000031 ] ], [ [ -121.923235920999957, 49.199249842000043 ], [ -121.923294436999967, 49.198583346000078 ], [ -121.921767500999948, 49.198525531000051 ], [ -121.922083163999943, 49.194931169000029 ], [ -121.92285566699999, 49.19496042100004 ], [ -121.922855731999974, 49.194959687000143 ], [ -121.923509907999971, 49.194984454000092 ], [ -121.923516206, 49.194912703000071 ], [ -121.92415026799992, 49.194936705000089 ], [ -121.924162185999975, 49.19480091800007 ], [ -121.924415330999949, 49.194810500000109 ], [ -121.924450496999924, 49.194409823000072 ], [ -121.925575576999947, 49.194452401000063 ], [ -121.925606666999926, 49.194098050000079 ], [ -121.92603624900002, 49.194114304000081 ], [ -121.926055357999928, 49.193896460000133 ], [ -121.928696072999969, 49.193996339000059 ], [ -121.928887158999927, 49.191816622000097 ], [ -121.929263105999979, 49.191830836000122 ], [ -121.929281877999955, 49.190961047000037 ], [ -121.928870216999911, 49.190957230000095 ], [ -121.928876041999942, 49.190687418000046 ], [ -121.92805272199999, 49.190679779000057 ], [ -121.928058551999925, 49.190409966000033 ], [ -121.927646894999953, 49.190406144000058 ], [ -121.92765272599992, 49.190136332000115 ], [ -121.927241071999944, 49.190132508000019 ], [ -121.927246904999933, 49.189862696000063 ], [ -121.926835251999961, 49.189858871000126 ], [ -121.926836163999937, 49.189816748000105 ], [ -121.925534705999965, 49.189767505000063 ], [ -121.925524551999928, 49.189883254000065 ], [ -121.921989614999973, 49.189749423000137 ], [ -121.92198220299997, 49.189833839000052 ], [ -121.91988511299995, 49.18975438800004 ], [ -121.919819232999927, 49.19050427600007 ], [ -121.920086337999976, 49.190514399000044 ], [ -121.9197705499999, 49.194108779000054 ], [ -121.919311217999976, 49.194091373000049 ], [ -121.919040988999939, 49.197166388000056 ], [ -121.918688623999969, 49.19715303400011 ], [ -121.918639388999921, 49.197713206000053 ], [ -121.919020424999985, 49.197727646000068 ], [ -121.918877857999959, 49.199349760000118 ], [ -121.918993727, 49.199354151000158 ], [ -121.918949627999922, 49.199855895000098 ], [ -121.918993358999984, 49.199857552000054 ], [ -121.91890699799994, 49.200840124000081 ], [ -121.919241909, 49.200852815000111 ], [ -121.919363022999946, 49.199474716000076 ], [ -121.922253696, 49.199584211000044 ], [ -121.922286218999943, 49.199213886000095 ], [ -121.923235920999957, 49.199249842000043 ] ], [ [ -121.910783024999944, 49.199746625000081 ], [ -121.910808874999972, 49.199453112000079 ], [ -121.91226969, 49.199508572000092 ], [ -121.912270844999938, 49.199495459000111 ], [ -121.91214469099998, 49.199490670000067 ], [ -121.912184602999943, 49.199037317000013 ], [ -121.912117517999945, 49.199034770000068 ], [ -121.912198486999927, 49.198115049000101 ], [ -121.912162277, 49.198113674000091 ], [ -121.912191508999953, 49.197781622000036 ], [ -121.912066393999964, 49.197776872000148 ], [ -121.912321064999972, 49.194883915000077 ], [ -121.911951271999939, 49.194869877 ], [ -121.91202794099992, 49.193998929000038 ], [ -121.911595173999956, 49.193982499000114 ], [ -121.911545837999981, 49.194542875000096 ], [ -121.911043768999932, 49.194523811000067 ], [ -121.911020629999953, 49.19478658700006 ], [ -121.90925001, 49.194719335000059 ], [ -121.90924575499993, 49.194767630000086 ], [ -121.908599558999924, 49.194743078000094 ], [ -121.90858723599996, 49.194882944000049 ], [ -121.908149709999961, 49.194866319000063 ], [ -121.908136524999975, 49.195015956000077 ], [ -121.907509245999947, 49.194992117000062 ], [ -121.907494806, 49.195155970000094 ], [ -121.90700395099995, 49.195137313000089 ], [ -121.906984694999935, 49.195355781000039 ], [ -121.90649645799999, 49.195337222 ], [ -121.90648888, 49.195423194000043 ], [ -121.906021072999977, 49.195405409000017 ], [ -121.905966843999963, 49.196020490000123 ], [ -121.907991224999989, 49.196097438000066 ], [ -121.907730003999973, 49.199061580000034 ], [ -121.909609956999972, 49.199133002000089 ], [ -121.909559991999956, 49.199700177000096 ], [ -121.910783024999944, 49.199746625000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26633000", "BldgCostT": "17840000", "sL_LossRatio": "0.881645602005833", "sL_AssetLoss": "78172", "sL_BldgLoss": "68920", "sL_StrLoss": "51375", "sL_NStrLoss": "17545", "sL_ContLoss": "9252", "geom_point": "0101000020E6100000823A592861795EC082F9E9475C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.881947205999907, 49.218045090000039 ], [ -121.881895201, 49.21633998900009 ], [ -121.881844702999956, 49.216150504000069 ], [ -121.881766917999968, 49.216020398000083 ], [ -121.88175679199999, 49.216009551000106 ], [ -121.88130278199999, 49.215523096000069 ], [ -121.880943685999981, 49.215065701000114 ], [ -121.880900096999966, 49.214861206000073 ], [ -121.880959820999934, 49.21469849600004 ], [ -121.881164901999938, 49.214352903000098 ], [ -121.881573106999923, 49.213808198000088 ], [ -121.882077899999928, 49.213134609000065 ], [ -121.882151309, 49.212988681000112 ], [ -121.882120312999945, 49.212796403000034 ], [ -121.881941198, 49.212492889000018 ], [ -121.881916413999974, 49.212276509000077 ], [ -121.882068208999939, 49.211804394000104 ], [ -121.882071286999974, 49.211645900000072 ], [ -121.883086003999964, 49.211323100000079 ], [ -121.886665216999958, 49.210330196000093 ], [ -121.886943711999905, 49.210286683000049 ], [ -121.887752683999977, 49.210302298000109 ], [ -121.888129573999933, 49.210357192000082 ], [ -121.888730950999943, 49.210480162000067 ], [ -121.89013550899989, 49.210767401000062 ], [ -121.890444674999955, 49.210780998000082 ], [ -121.8955220779999, 49.210361501000051 ], [ -121.896114384999933, 49.210341704000065 ], [ -121.896704182999954, 49.210256891000078 ], [ -121.903036741, 49.20973180400005 ], [ -121.902861171999959, 49.21172103100011 ], [ -121.903294301999949, 49.211737504000034 ], [ -121.903311560999938, 49.210957304000026 ], [ -121.904311393999961, 49.210966794000022 ], [ -121.90483224300003, 49.210971735000058 ], [ -121.904875604999958, 49.210480201000017 ], [ -121.908195246999981, 49.210606354000092 ], [ -121.907970189999958, 49.211081210000096 ], [ -121.906635488999953, 49.211887312000066 ], [ -121.906054596999979, 49.212060988000076 ], [ -121.904509510999915, 49.212334492000089 ], [ -121.904495203999929, 49.212442697 ], [ -121.905017494999967, 49.212411409000033 ], [ -121.905125582, 49.212412800000088 ], [ -121.905123710999973, 49.212529606000075 ], [ -121.904691815999982, 49.212804406000082 ], [ -121.904732205999906, 49.212849991000034 ], [ -121.905312314999932, 49.212728992000152 ], [ -121.905605505999915, 49.21245270600005 ], [ -121.905869603999975, 49.212338688000102 ], [ -121.906805393999946, 49.21223899000006 ], [ -121.907986602999983, 49.211639390000101 ], [ -121.908824895999942, 49.210927287000132 ], [ -121.909271213999929, 49.210679502000083 ], [ -121.909846969999975, 49.21066908400006 ], [ -121.909927933999924, 49.210672158000072 ], [ -121.910346515999933, 49.210736244000074 ], [ -121.910276767999989, 49.211527939000078 ], [ -121.911347566999964, 49.211568588000056 ], [ -121.911267185999975, 49.212481162000081 ], [ -121.911030959999948, 49.215162828000061 ], [ -121.906859842999907, 49.215004428000107 ], [ -121.906818105999918, 49.215477727000085 ], [ -121.906149916999951, 49.215452338000034 ], [ -121.906127989999916, 49.215700943000073 ], [ -121.904161795999983, 49.215626208000039 ], [ -121.904110535999948, 49.216207090000076 ], [ -121.903545937999951, 49.216185623000094 ], [ -121.903526223999918, 49.216409004000084 ], [ -121.90182678499994, 49.216344370000108 ], [ -121.901723609999948, 49.217512843000108 ], [ -121.896247700999965, 49.217304397000071 ], [ -121.896351269999982, 49.216133012000114 ], [ -121.892278439000023, 49.215977794000032 ], [ -121.892559595999941, 49.21280069000008 ], [ -121.894082595999947, 49.213837012000106 ], [ -121.8955017899999, 49.214272802000025 ], [ -121.897601814999973, 49.214275701000105 ], [ -121.898813313999966, 49.214097606000053 ], [ -121.899489292999988, 49.213950902000057 ], [ -121.899689003999953, 49.21363758800004 ], [ -121.899622394999966, 49.213591998000062 ], [ -121.897126819999983, 49.214000801000047 ], [ -121.896070122999973, 49.21401790300007 ], [ -121.895454880999949, 49.213868296000108 ], [ -121.89433958399999, 49.213398295000061 ], [ -121.892797800999944, 49.212367208000074 ], [ -121.890614190999955, 49.211176607 ], [ -121.889866402999971, 49.210854693000094 ], [ -121.888895304999963, 49.210611189000048 ], [ -121.887152011999945, 49.210576997000032 ], [ -121.885196579999928, 49.210854696000112 ], [ -121.882724513999932, 49.211505599000127 ], [ -121.882307216999919, 49.211744803000094 ], [ -121.882317482999952, 49.211870201000082 ], [ -121.882468484999919, 49.211880102000102 ], [ -121.885538115999907, 49.210965791000021 ], [ -121.886471217999912, 49.210965807000093 ], [ -121.887771609999945, 49.211113901000097 ], [ -121.888926085999913, 49.211133795000094 ], [ -121.889978694999968, 49.211350301000088 ], [ -121.890930487999981, 49.211692091000025 ], [ -121.892484731999929, 49.212749748000086 ], [ -121.888155699999942, 49.212584592000042 ], [ -121.888226389999929, 49.211786571000061 ], [ -121.885678943999935, 49.211689302000124 ], [ -121.88537860699995, 49.215077542000067 ], [ -121.884785136999966, 49.215054872000117 ], [ -121.884656250999953, 49.216508533000123 ], [ -121.886963768999962, 49.216596655000039 ], [ -121.886691987999924, 49.219663374000049 ], [ -121.886536889999931, 49.21962931200008 ], [ -121.885496889999942, 49.219475398000057 ], [ -121.882973791999945, 49.21872199400012 ], [ -121.88233378599999, 49.218464297 ], [ -121.881876925999933, 49.218195019000113 ], [ -121.881947205999907, 49.218045090000039 ] ], [ [ -121.89366806299995, 49.212374692000068 ], [ -121.893663673999953, 49.212424300000073 ], [ -121.89807181499999, 49.212592247000067 ], [ -121.897968297999967, 49.213763640000089 ], [ -121.898264800999982, 49.213774930000071 ], [ -121.898368053999931, 49.212606453000035 ], [ -121.898932605999917, 49.212627947000115 ], [ -121.898952341999987, 49.212404565000057 ], [ -121.900918389999958, 49.212479397000024 ], [ -121.900961307, 49.211993408000104 ], [ -121.900389759999939, 49.211971657000049 ], [ -121.900368860999947, 49.212208290000042 ], [ -121.897935714999946, 49.212115663000127 ], [ -121.897908772000036, 49.212420549000115 ], [ -121.897304545999972, 49.212397539000101 ], [ -121.89729435299995, 49.212512864000125 ], [ -121.89366806299995, 49.212374692000068 ] ], [ [ -121.900654698999986, 49.213495191000042 ], [ -121.90045618399995, 49.213700305000017 ], [ -121.89898230799993, 49.214611810000122 ], [ -121.899047123999978, 49.21473000400001 ], [ -121.89937751899997, 49.214724296000092 ], [ -121.900851011999961, 49.213919591 ], [ -121.901905389999968, 49.213452504000088 ], [ -121.901411115999949, 49.213411200000074 ], [ -121.901371497999932, 49.213312898000027 ], [ -121.902006994999965, 49.213139093000017 ], [ -121.902914304999925, 49.213083588000096 ], [ -121.90381550499994, 49.212760286000041 ], [ -121.904010307999982, 49.212572308000098 ], [ -121.904042075999911, 49.212438397000071 ], [ -121.902396615999947, 49.212917 ], [ -121.901075592999916, 49.213085 ], [ -121.900729395999974, 49.213215991000027 ], [ -121.900654698999986, 49.213495191000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4884084", "BldgCostT": "3368334", "sL_LossRatio": "0.895404875941334", "sL_AssetLoss": "13425.1", "sL_BldgLoss": "12020.9", "sL_StrLoss": "8545.9", "sL_NStrLoss": "3475", "sL_ContLoss": "1404.2", "geom_point": "0101000020E6100000DDFA7EA4E77B5EC018CCA13DC5994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93558381099993, 49.201233077000019 ], [ -121.935638677999989, 49.200606270000058 ], [ -121.93434033299999, 49.200557263000071 ], [ -121.934655037999931, 49.196962875000082 ], [ -121.936106126999945, 49.197017647000138 ], [ -121.936133591999948, 49.196703809000049 ], [ -121.93653041099995, 49.196718784000055 ], [ -121.936532471999968, 49.196695232000067 ], [ -121.936158641999896, 49.19669179000006 ], [ -121.936164590999923, 49.196414446000048 ], [ -121.936031931999977, 49.196326562000124 ], [ -121.935858349999975, 49.196149291000033 ], [ -121.935758509999971, 49.196148371000099 ], [ -121.935759437999977, 49.196105123000066 ], [ -121.936515886, 49.196414602000111 ], [ -121.936728807999927, 49.196686706000015 ], [ -121.936638588999941, 49.197054089000083 ], [ -121.936712518999954, 49.197405901000067 ], [ -121.937555799999956, 49.198457007000052 ], [ -121.937497608999962, 49.198627888000097 ], [ -121.937832920999981, 49.19899100700006 ], [ -121.938108481999933, 49.199542194000053 ], [ -121.938358400999945, 49.200704406000128 ], [ -121.939014301999975, 49.202158510000075 ], [ -121.939156555999929, 49.202589350000018 ], [ -121.939178177000016, 49.202654819000067 ], [ -121.939253608999962, 49.202883236000041 ], [ -121.939297402999927, 49.20301589900005 ], [ -121.93795241399999, 49.203623996000069 ], [ -121.937411587999975, 49.203942993000119 ], [ -121.93647818699999, 49.204873066000111 ], [ -121.936273490999952, 49.204865342000112 ], [ -121.933093626999906, 49.2047453180001 ], [ -121.933408457000027, 49.201150957000031 ], [ -121.93558381099993, 49.201233077000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "256167583", "BldgCostT": "167383333", "sL_LossRatio": "0.833155682725471", "sL_AssetLoss": "493478", "sL_BldgLoss": "411144", "sL_StrLoss": "209864", "sL_NStrLoss": "201280", "sL_ContLoss": "82334", "geom_point": "0101000020E6100000F7E1063A227D5EC009B09F30EE8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.954250779999953, 49.106616441000092 ], [ -121.954740721999926, 49.106616789000022 ], [ -121.95540031499992, 49.106617297000064 ], [ -121.956385295999922, 49.106618144000052 ], [ -121.956797903999927, 49.106618512000026 ], [ -121.95720736599999, 49.106619070000093 ], [ -121.958029651999965, 49.106620207000113 ], [ -121.96030530099992, 49.106623302000074 ], [ -121.958306630999985, 49.109835688000032 ], [ -121.957971561999926, 49.11112279000006 ], [ -121.957943868999934, 49.111229197000036 ], [ -121.957926131999955, 49.111297379000128 ], [ -121.956177819999965, 49.111297324000056 ], [ -121.95444388699994, 49.111297229000094 ], [ -121.954424013999969, 49.111297236000098 ], [ -121.953615903999918, 49.111297165000096 ], [ -121.953561116999964, 49.111297180000072 ], [ -121.951400381999917, 49.111297012000065 ], [ -121.951409456999983, 49.109608261000055 ], [ -121.951411364999956, 49.109257349000103 ], [ -121.951417281999937, 49.108160525000088 ], [ -121.951423864999938, 49.106931971 ], [ -121.951510510999967, 49.106802678000072 ], [ -121.95165003599999, 49.106726785000042 ], [ -121.951999275999967, 49.106618226000109 ], [ -121.952158603999962, 49.106607628000042 ], [ -121.952215658999947, 49.106603818000096 ], [ -121.952247525999951, 49.106604024000021 ], [ -121.953781443999929, 49.106613525000036 ], [ -121.954250779999953, 49.106616441000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15672083", "BldgCostT": "10808333", "sL_LossRatio": "0.909167722855936", "sL_AssetLoss": "47340", "sL_BldgLoss": "43040", "sL_StrLoss": "30300", "sL_NStrLoss": "12740", "sL_ContLoss": "4300", "geom_point": "0101000020E610000016F9D435C37C5EC04C3BB15EF78D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.947757467999949, 49.108075956000107 ], [ -121.951514548999981, 49.106583198000088 ], [ -121.95501597799999, 49.104591750000075 ], [ -121.955094846999941, 49.104790016000017 ], [ -121.955265608999966, 49.105219214000037 ], [ -121.95443220199999, 49.105524464000034 ], [ -121.954221118999968, 49.105601802000059 ], [ -121.954232511999962, 49.105991179000085 ], [ -121.954249373999957, 49.10656702400005 ], [ -121.954250779999953, 49.106616441000092 ], [ -121.953781443999929, 49.106613525000036 ], [ -121.952247525999951, 49.106604024000021 ], [ -121.952215658999947, 49.106603818000096 ], [ -121.952158603999962, 49.106607628000042 ], [ -121.951999275999967, 49.106618226000109 ], [ -121.95165003599999, 49.106726785000042 ], [ -121.951510510999967, 49.106802678000072 ], [ -121.951423864999938, 49.106931971 ], [ -121.951417281999937, 49.108160525000088 ], [ -121.951411364999956, 49.109257349000103 ], [ -121.951409456999983, 49.109608261000055 ], [ -121.951400381999917, 49.111297012000065 ], [ -121.949535092999966, 49.111295771000087 ], [ -121.949311159999965, 49.111295611000038 ], [ -121.943482692999964, 49.111291485 ], [ -121.945044664999955, 49.110711930000022 ], [ -121.946168098999962, 49.109688136000088 ], [ -121.947757467999949, 49.108075956000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199818083", "BldgCostT": "135068333", "sL_LossRatio": "0.876258612975109", "sL_AssetLoss": "633375.8", "sL_BldgLoss": "555001", "sL_StrLoss": "400808", "sL_NStrLoss": "154193", "sL_ContLoss": "78374.8", "geom_point": "0101000020E6100000117D4EAC997F5EC0315871AAB58D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.990371068999934, 49.109135 ], [ -121.990313147999942, 49.108231673 ], [ -121.991053143999977, 49.108259280000034 ], [ -121.991025523999895, 49.108579882000122 ], [ -121.99109516299994, 49.108582480000102 ], [ -121.991072464999931, 49.108845934000023 ], [ -121.995164082999935, 49.108998483000036 ], [ -121.995174746999979, 49.108874567000107 ], [ -121.9951790799999, 49.108874729000085 ], [ -121.995197323999903, 49.10866275900009 ], [ -121.993679705999952, 49.108606195000085 ], [ -121.993811722999951, 49.107072811000073 ], [ -121.993320207999929, 49.107068525000066 ], [ -121.993311137, 49.107173873000121 ], [ -121.990690353000019, 49.107076129000063 ], [ -121.99068002599995, 49.107585206000103 ], [ -121.990271470999971, 49.107581633000073 ], [ -121.99018588899996, 49.106246795000061 ], [ -121.986903878999968, 49.10616640000007 ], [ -121.986945976999934, 49.105837104000102 ], [ -121.987028397999936, 49.105548881000111 ], [ -121.987072498999964, 49.104338697000109 ], [ -121.987082195999932, 49.103860311000091 ], [ -121.988476980999948, 49.103855167000127 ], [ -121.988860476999918, 49.103853750000063 ], [ -121.990796501999966, 49.103846606000097 ], [ -121.995724120999967, 49.103854474000087 ], [ -121.996954103999954, 49.103858811000045 ], [ -121.997534190999986, 49.105112097000053 ], [ -121.997693450999989, 49.105462436000039 ], [ -121.997903988999965, 49.105925602000049 ], [ -121.998146015999936, 49.106457595000052 ], [ -121.998341596000017, 49.106892294000076 ], [ -121.998483420999946, 49.107626316000037 ], [ -121.998708500999911, 49.10879129100006 ], [ -121.998791802999932, 49.109384894000094 ], [ -121.998726606999981, 49.10961690000002 ], [ -121.998198308, 49.110906483000051 ], [ -121.995673243999974, 49.11102813100009 ], [ -121.995671840999975, 49.111058901000071 ], [ -121.994370996999976, 49.111070667000064 ], [ -121.993803075999935, 49.111075800000073 ], [ -121.992817609, 49.111084705000067 ], [ -121.991232010999965, 49.111085467000095 ], [ -121.991158901999981, 49.11006388300008 ], [ -121.990371068999934, 49.109135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203122999", "BldgCostT": "136459999", "sL_LossRatio": "0.880758576915187", "sL_AssetLoss": "601515.8", "sL_BldgLoss": "529790.2", "sL_StrLoss": "384018.3", "sL_NStrLoss": "145771.9", "sL_ContLoss": "71725.6", "geom_point": "0101000020E610000025DBC88E307F5EC06FFEBA2ED78D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.984680101999984, 49.111088388000049 ], [ -121.984673208999979, 49.107881895000077 ], [ -121.984670701999903, 49.106836102000074 ], [ -121.984668184999947, 49.105795311000044 ], [ -121.984672326999942, 49.103842401000044 ], [ -121.986817794999979, 49.103860350000041 ], [ -121.987082195999932, 49.103860311000091 ], [ -121.987072498999964, 49.104338697000109 ], [ -121.987028397999936, 49.105548881000111 ], [ -121.986945976999934, 49.105837104000102 ], [ -121.986903878999968, 49.10616640000007 ], [ -121.99018588899996, 49.106246795000061 ], [ -121.990271470999971, 49.107581633000073 ], [ -121.990269046999956, 49.107581612000068 ], [ -121.990255898, 49.108229537000042 ], [ -121.990313147999942, 49.108231673 ], [ -121.990371068999934, 49.109135 ], [ -121.991158901999981, 49.11006388300008 ], [ -121.991232010999965, 49.111085467000095 ], [ -121.988761197999935, 49.11108660900004 ], [ -121.988260719999957, 49.111086638000096 ], [ -121.987836003999973, 49.111086679000074 ], [ -121.987651208999964, 49.111086697000069 ], [ -121.987424878999931, 49.111086823000107 ], [ -121.986356096999927, 49.111087443000073 ], [ -121.984680101999984, 49.111088388000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261785251", "BldgCostT": "174735001", "sL_LossRatio": "0.868793015916216", "sL_AssetLoss": "764252", "sL_BldgLoss": "663976.8", "sL_StrLoss": "472252.8", "sL_NStrLoss": "191724", "sL_ContLoss": "100275.2", "geom_point": "0101000020E61000005E171B46C37E5EC09FB58075C18D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.981760802999986, 49.103842701000062 ], [ -121.984672326999942, 49.103842401000044 ], [ -121.984668184999947, 49.105795311000044 ], [ -121.984670701999903, 49.106836102000074 ], [ -121.984673208999979, 49.107881895000077 ], [ -121.984680101999984, 49.111088388000049 ], [ -121.982984893999969, 49.111089093000018 ], [ -121.980630115999958, 49.111095704000022 ], [ -121.976346122999985, 49.111082401000097 ], [ -121.976370458999938, 49.110847153000115 ], [ -121.976371393999912, 49.110838089 ], [ -121.97674498899994, 49.110066700000075 ], [ -121.976743315999926, 49.109183004000052 ], [ -121.97674288799999, 49.108078501000193 ], [ -121.976746855, 49.107042610000114 ], [ -121.976746912999957, 49.107033609000091 ], [ -121.976746691999921, 49.106528707000109 ], [ -121.976619373999981, 49.106047954000069 ], [ -121.976607282, 49.106002294000042 ], [ -121.97660683299992, 49.105903569000098 ], [ -121.976597241999954, 49.103852344000131 ], [ -121.976610981999954, 49.103852198000013 ], [ -121.97678245199991, 49.103850551000107 ], [ -121.977340133999988, 49.103845145000086 ], [ -121.977682810999966, 49.103841849000098 ], [ -121.977821792999976, 49.103840500000111 ], [ -121.978352016999906, 49.103840482000116 ], [ -121.97843435099999, 49.103840540000135 ], [ -121.979129933999971, 49.103841011000107 ], [ -121.979516691999891, 49.103841275000043 ], [ -121.98083190899996, 49.103842098000101 ], [ -121.98125655599992, 49.103842375000028 ], [ -121.981462188999927, 49.103842511000067 ], [ -121.981760802999986, 49.103842701000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139903917", "BldgCostT": "89966667", "sL_LossRatio": "0.834213492688501", "sL_AssetLoss": "388566", "sL_BldgLoss": "324147", "sL_StrLoss": "219067", "sL_NStrLoss": "105080", "sL_ContLoss": "64419", "geom_point": "0101000020E61000005F031909867F5EC021904B1CF98C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.990796501999966, 49.103846606000097 ], [ -121.990794873999945, 49.10345863000002 ], [ -121.989555217999964, 49.10347353100007 ], [ -121.989528978, 49.101256140000054 ], [ -121.989522245000018, 49.100539506000096 ], [ -121.989522091999973, 49.100530518000049 ], [ -121.989491211999947, 49.098673713 ], [ -121.991189433999963, 49.098648720000028 ], [ -121.992417071999952, 49.098790108000102 ], [ -121.993886834999969, 49.098983764000195 ], [ -121.994137774999956, 49.099092310000096 ], [ -121.994578772999958, 49.099491943000032 ], [ -121.994883753999886, 49.099609709000077 ], [ -121.995212867999982, 49.099653532000112 ], [ -121.99576931299994, 49.099667074000145 ], [ -121.995759100999976, 49.100581877000046 ], [ -121.995733788999942, 49.103105564000025 ], [ -121.995724120999967, 49.103854474000087 ], [ -121.990796501999966, 49.103846606000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134555834", "BldgCostT": "92533334", "sL_LossRatio": "0.881506956385806", "sL_AssetLoss": "434996", "sL_BldgLoss": "383452", "sL_StrLoss": "282250", "sL_NStrLoss": "101202", "sL_ContLoss": "51544", "geom_point": "0101000020E610000027E75983567F5EC0A153C2D9CE8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.986817794999979, 49.103860350000041 ], [ -121.986816662999956, 49.10288831200004 ], [ -121.98681689599999, 49.102806274000038 ], [ -121.986815957999966, 49.102538390000035 ], [ -121.986815146999987, 49.102302172000051 ], [ -121.986815098999955, 49.102235101000055 ], [ -121.986814703, 49.101719715000115 ], [ -121.986812921999942, 49.10122735200013 ], [ -121.986810398999921, 49.100530197000076 ], [ -121.986835582999944, 49.09996762300009 ], [ -121.986820036999944, 49.099385488000088 ], [ -121.986810704, 49.09838160000006 ], [ -121.986929394999976, 49.097993240000058 ], [ -121.987614746999952, 49.097650312000098 ], [ -121.988256560999972, 49.097409905000085 ], [ -121.988251845999969, 49.097308904000037 ], [ -121.99015892199999, 49.097325604000019 ], [ -121.990660495999961, 49.097392196000051 ], [ -121.990886268999958, 49.097415250000068 ], [ -121.990882486999936, 49.097601801000046 ], [ -121.991704284999955, 49.097608983000136 ], [ -121.991698817999961, 49.09787880500005 ], [ -121.992109716999934, 49.097882394000088 ], [ -121.99210425299999, 49.098152216000152 ], [ -121.992926057999966, 49.098159388000077 ], [ -121.992922797999938, 49.098320528000038 ], [ -121.993186353999988, 49.098330357000052 ], [ -121.993244406999935, 49.097656009000026 ], [ -121.99345090499996, 49.097677089000037 ], [ -121.995237293999949, 49.098026001000072 ], [ -121.995889095999971, 49.098282295000068 ], [ -121.996188912999955, 49.098358699000109 ], [ -121.995767897999926, 49.099364965000056 ], [ -121.995768901999938, 49.099577305000089 ], [ -121.99576931299994, 49.099667074000145 ], [ -121.995212867999982, 49.099653532000112 ], [ -121.994883753999886, 49.099609709000077 ], [ -121.994578772999958, 49.099491943000032 ], [ -121.994137774999956, 49.099092310000096 ], [ -121.993886834999969, 49.098983764000195 ], [ -121.992417071999952, 49.098790108000102 ], [ -121.991189433999963, 49.098648720000028 ], [ -121.989491211999947, 49.098673713 ], [ -121.989522091999973, 49.100530518000049 ], [ -121.989522245000018, 49.100539506000096 ], [ -121.989528978, 49.101256140000054 ], [ -121.989555217999964, 49.10347353100007 ], [ -121.990794873999945, 49.10345863000002 ], [ -121.990796501999966, 49.103846606000097 ], [ -121.988860476999918, 49.103853750000063 ], [ -121.988476980999948, 49.103855167000127 ], [ -121.987082195999932, 49.103860311000091 ], [ -121.986817794999979, 49.103860350000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65994251", "BldgCostT": "39145001", "sL_LossRatio": "0.815498041625067", "sL_AssetLoss": "130210", "sL_BldgLoss": "106186", "sL_StrLoss": "69068", "sL_NStrLoss": "37118", "sL_ContLoss": "24024", "geom_point": "0101000020E6100000FE72E2825E7E5EC097FDC244E68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.963560527, 49.097689946000088 ], [ -121.963806993999938, 49.097420680000049 ], [ -121.963820485999989, 49.097409503000065 ], [ -121.96393610899996, 49.097313664000104 ], [ -121.963939587999931, 49.097310780000072 ], [ -121.964247698999941, 49.097454908 ], [ -121.96616239799999, 49.097661402000035 ], [ -121.968790992999956, 49.0977654000001 ], [ -121.97239749499991, 49.09749189300009 ], [ -121.976094990999968, 49.096974902000163 ], [ -121.977391315999952, 49.097131603000044 ], [ -121.97925139499992, 49.098001796000119 ], [ -121.979617796999918, 49.09813138600007 ], [ -121.980370492999953, 49.098236802000095 ], [ -121.981411796999964, 49.098219709000041 ], [ -121.98231791099991, 49.09806439700008 ], [ -121.98226220799999, 49.0981542050001 ], [ -121.982787493999936, 49.097951895000058 ], [ -121.984987691999919, 49.098186898000094 ], [ -121.985985698999968, 49.098224002000123 ], [ -121.986384787999896, 49.098145595000084 ], [ -121.98824012299994, 49.097308802000107 ], [ -121.988251845999969, 49.097308904000037 ], [ -121.988256560999972, 49.097409905000085 ], [ -121.987614746999952, 49.097650312000098 ], [ -121.986929394999976, 49.097993240000058 ], [ -121.986810704, 49.09838160000006 ], [ -121.986820036999944, 49.099385488000088 ], [ -121.986835582999944, 49.09996762300009 ], [ -121.986810398999921, 49.100530197000076 ], [ -121.986812921999942, 49.10122735200013 ], [ -121.986814703, 49.101719715000115 ], [ -121.986815098999955, 49.102235101000055 ], [ -121.986815146999987, 49.102302172000051 ], [ -121.986815957999966, 49.102538390000035 ], [ -121.98681689599999, 49.102806274000038 ], [ -121.986816662999956, 49.10288831200004 ], [ -121.986817794999979, 49.103860350000041 ], [ -121.984672326999942, 49.103842401000044 ], [ -121.981760802999986, 49.103842701000062 ], [ -121.981462188999927, 49.103842511000067 ], [ -121.98125655599992, 49.103842375000028 ], [ -121.98083190899996, 49.103842098000101 ], [ -121.979516691999891, 49.103841275000043 ], [ -121.979129933999971, 49.103841011000107 ], [ -121.97843435099999, 49.103840540000135 ], [ -121.978352016999906, 49.103840482000116 ], [ -121.977821792999976, 49.103840500000111 ], [ -121.977682810999966, 49.103841849000098 ], [ -121.977340133999988, 49.103845145000086 ], [ -121.97678245199991, 49.103850551000107 ], [ -121.976610981999954, 49.103852198000013 ], [ -121.976597241999954, 49.103852344000131 ], [ -121.975665274, 49.103855928000044 ], [ -121.975021013999964, 49.10385841600008 ], [ -121.974741433999952, 49.103859486000033 ], [ -121.973441481999942, 49.103861013000085 ], [ -121.97214930599992, 49.103862507000073 ], [ -121.969978940999965, 49.103865024000058 ], [ -121.969632964999974, 49.10386547500012 ], [ -121.969207052999963, 49.103865889000133 ], [ -121.968114691999972, 49.103867137000073 ], [ -121.967904760999943, 49.103917853000034 ], [ -121.966377456999922, 49.10391749800003 ], [ -121.965922212999942, 49.103917392000021 ], [ -121.962660812999957, 49.103955822000032 ], [ -121.962578335, 49.103956808000092 ], [ -121.962596882999918, 49.103869150000087 ], [ -121.962570192999976, 49.102787020000022 ], [ -121.962566518999949, 49.102245897000103 ], [ -121.962567889999931, 49.100855501000083 ], [ -121.962566266999971, 49.100005181000022 ], [ -121.962595634999929, 49.099394834000051 ], [ -121.962619136999948, 49.098906224000075 ], [ -121.962745274999961, 49.098636849000087 ], [ -121.963236480999953, 49.098043962000155 ], [ -121.963480110999953, 49.097777817000107 ], [ -121.963560527, 49.097689946000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287148363", "BldgCostT": "186791935", "sL_LossRatio": "0.83263362829605", "sL_AssetLoss": "911098.2", "sL_BldgLoss": "758611", "sL_StrLoss": "520877", "sL_NStrLoss": "237734", "sL_ContLoss": "152487.2", "geom_point": "0101000020E610000008B0DA253F7E5EC016FC2598A08D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.973719615999983, 49.110239778000086 ], [ -121.973609722999967, 49.107431681000058 ], [ -121.973468159999982, 49.107445295000034 ], [ -121.97303852499999, 49.107447371000077 ], [ -121.97110921699999, 49.107435527000113 ], [ -121.9710955259999, 49.107435569000117 ], [ -121.970778867999982, 49.107436378000067 ], [ -121.969713958999961, 49.107439126000081 ], [ -121.969487654999924, 49.107439498000069 ], [ -121.968178621999954, 49.107441631000071 ], [ -121.967640468999917, 49.107442482000103 ], [ -121.967658405999913, 49.107373562000127 ], [ -121.967722689999931, 49.107126378000046 ], [ -121.967724962, 49.106846941000121 ], [ -121.967730728999982, 49.106132134000106 ], [ -121.967699575, 49.106048937000082 ], [ -121.967664509999906, 49.10601192600005 ], [ -121.96760040599996, 49.105944226000076 ], [ -121.966958206999948, 49.105496346000059 ], [ -121.966142693999984, 49.104930135000075 ], [ -121.965972022999935, 49.104705754000022 ], [ -121.965908997999918, 49.10462290600001 ], [ -121.965922212999942, 49.103917392000021 ], [ -121.966377456999922, 49.10391749800003 ], [ -121.967904760999943, 49.103917853000034 ], [ -121.968114691999972, 49.103867137000073 ], [ -121.969207052999963, 49.103865889000133 ], [ -121.969632964999974, 49.10386547500012 ], [ -121.969978940999965, 49.103865024000058 ], [ -121.97214930599992, 49.103862507000073 ], [ -121.973441481999942, 49.103861013000085 ], [ -121.974741433999952, 49.103859486000033 ], [ -121.975021013999964, 49.10385841600008 ], [ -121.975665274, 49.103855928000044 ], [ -121.976597241999954, 49.103852344000131 ], [ -121.97660683299992, 49.105903569000098 ], [ -121.976607282, 49.106002294000042 ], [ -121.976619373999981, 49.106047954000069 ], [ -121.976746691999921, 49.106528707000109 ], [ -121.976746912999957, 49.107033609000091 ], [ -121.976746855, 49.107042610000114 ], [ -121.97674288799999, 49.108078501000193 ], [ -121.976743315999926, 49.109183004000052 ], [ -121.97674498899994, 49.110066700000075 ], [ -121.976371393999912, 49.110838089 ], [ -121.976370458999938, 49.110847153000115 ], [ -121.976346122999985, 49.111082401000097 ], [ -121.974200090999929, 49.111130097000043 ], [ -121.973754858999911, 49.111139920000049 ], [ -121.973719615999983, 49.110239778000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162474417", "BldgCostT": "106061667", "sL_LossRatio": "0.836349709435245", "sL_AssetLoss": "511762", "sL_BldgLoss": "428012", "sL_StrLoss": "286147", "sL_NStrLoss": "141865", "sL_ContLoss": "83750", "geom_point": "0101000020E6100000E10619541D7E5EC0ABD58120FE8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.973468159999982, 49.107445295000034 ], [ -121.973609722999967, 49.107431681000058 ], [ -121.973719615999983, 49.110239778000086 ], [ -121.973754858999911, 49.111139920000049 ], [ -121.97198961699992, 49.111178881000036 ], [ -121.969662854999925, 49.111198932 ], [ -121.969602523999967, 49.111199462000108 ], [ -121.968606417999951, 49.111208026000028 ], [ -121.967654714, 49.11121537000011 ], [ -121.967564778999957, 49.11121606200004 ], [ -121.96745630199996, 49.110642822000052 ], [ -121.967569000999973, 49.110607362000053 ], [ -121.967676268999952, 49.110523948000065 ], [ -121.967693046999955, 49.110314476000042 ], [ -121.967658860999961, 49.109997595000053 ], [ -121.967588800999977, 49.109857019000103 ], [ -121.967268746999963, 49.109565492000087 ], [ -121.966686797999941, 49.109007187000039 ], [ -121.967134934999962, 49.108769715000086 ], [ -121.967379326999918, 49.108605756000046 ], [ -121.967525057, 49.108426395000059 ], [ -121.967598242999941, 49.10821453500003 ], [ -121.967640468999917, 49.107442482000103 ], [ -121.968178621999954, 49.107441631000071 ], [ -121.969487654999924, 49.107439498000069 ], [ -121.969713958999961, 49.107439126000081 ], [ -121.970778867999982, 49.107436378000067 ], [ -121.9710955259999, 49.107435569000117 ], [ -121.97110921699999, 49.107435527000113 ], [ -121.97303852499999, 49.107447371000077 ], [ -121.973468159999982, 49.107445295000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "585859864", "BldgCostT": "400376936", "sL_LossRatio": "0.876489625102063", "sL_AssetLoss": "907527", "sL_BldgLoss": "795438", "sL_StrLoss": "443870", "sL_NStrLoss": "351568", "sL_ContLoss": "112089", "geom_point": "0101000020E6100000984ABA5EC17D5EC01EEF54E1CB8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.962660812999957, 49.103955822000032 ], [ -121.965922212999942, 49.103917392000021 ], [ -121.965908997999918, 49.10462290600001 ], [ -121.965972022999935, 49.104705754000022 ], [ -121.966142693999984, 49.104930135000075 ], [ -121.966958206999948, 49.105496346000059 ], [ -121.96760040599996, 49.105944226000076 ], [ -121.967664509999906, 49.10601192600005 ], [ -121.967699575, 49.106048937000082 ], [ -121.967730728999982, 49.106132134000106 ], [ -121.967724962, 49.106846941000121 ], [ -121.967722689999931, 49.107126378000046 ], [ -121.967658405999913, 49.107373562000127 ], [ -121.967640468999917, 49.107442482000103 ], [ -121.967598242999941, 49.10821453500003 ], [ -121.967525057, 49.108426395000059 ], [ -121.967379326999918, 49.108605756000046 ], [ -121.967134934999962, 49.108769715000086 ], [ -121.966686797999941, 49.109007187000039 ], [ -121.967268746999963, 49.109565492000087 ], [ -121.967588800999977, 49.109857019000103 ], [ -121.967658860999961, 49.109997595000053 ], [ -121.967693046999955, 49.110314476000042 ], [ -121.967676268999952, 49.110523948000065 ], [ -121.967569000999973, 49.110607362000053 ], [ -121.96745630199996, 49.110642822000052 ], [ -121.967564778999957, 49.11121606200004 ], [ -121.965736289999896, 49.111230167000073 ], [ -121.964620832999913, 49.111261338000119 ], [ -121.963605788999971, 49.111271910000077 ], [ -121.962920066999956, 49.111278600000063 ], [ -121.96248446299991, 49.111280023000106 ], [ -121.962569907999949, 49.107732235000057 ], [ -121.962569905999914, 49.107732063000057 ], [ -121.962592963999953, 49.106773956000097 ], [ -121.962633550999925, 49.105088778000081 ], [ -121.962644224999934, 49.104645068000131 ], [ -121.962660812999957, 49.103955822000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "314488433", "BldgCostT": "211316895", "sL_LossRatio": "0.821197304405959", "sL_AssetLoss": "655766.4", "sL_BldgLoss": "538513.6", "sL_StrLoss": "261434.6", "sL_NStrLoss": "277079", "sL_ContLoss": "117252.8", "geom_point": "0101000020E61000006142ED337E7D5EC0D8498D3BEB8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.962578335, 49.103956808000092 ], [ -121.962660812999957, 49.103955822000032 ], [ -121.962644224999934, 49.104645068000131 ], [ -121.962633550999925, 49.105088778000081 ], [ -121.962592963999953, 49.106773956000097 ], [ -121.962569905999914, 49.107732063000057 ], [ -121.962569907999949, 49.107732235000057 ], [ -121.96248446299991, 49.111280023000106 ], [ -121.96199207699999, 49.111281613000116 ], [ -121.957926131999955, 49.111297379000128 ], [ -121.957943868999934, 49.111229197000036 ], [ -121.957971561999926, 49.11112279000006 ], [ -121.958306630999985, 49.109835688000032 ], [ -121.96030530099992, 49.106623302000074 ], [ -121.960554308999988, 49.106280995000098 ], [ -121.960880484000015, 49.105995704000165 ], [ -121.961563834999964, 49.105400141000089 ], [ -121.961966473999951, 49.105051114000084 ], [ -121.962152049999958, 49.1048902510001 ], [ -121.962331455999916, 49.104639642000102 ], [ -121.962389026999986, 49.104559223000102 ], [ -121.962578335, 49.103956808000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14652166", "BldgCostT": "9136666", "sL_LossRatio": "0.862241908853658", "sL_AssetLoss": "22530.8", "sL_BldgLoss": "19427", "sL_StrLoss": "13101", "sL_NStrLoss": "6326", "sL_ContLoss": "3103.8", "geom_point": "0101000020E610000090F10FF8CF795EC00FB5B7A59F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.896710074999987, 49.122420819000034 ], [ -121.896707989000021, 49.120714985000113 ], [ -121.896761694, 49.120650407000035 ], [ -121.896941774999945, 49.120550800000082 ], [ -121.898081086, 49.120144398000086 ], [ -121.8985836899999, 49.120086899000114 ], [ -121.899008198999979, 49.120091390000027 ], [ -121.900146017999944, 49.119761243000021 ], [ -121.900450088999904, 49.119672994000055 ], [ -121.900899877000015, 49.119670300000038 ], [ -121.901928315999911, 49.119805987000092 ], [ -121.902346298999987, 49.119821913000173 ], [ -121.904206704999964, 49.1195852930001 ], [ -121.904631285999969, 49.119588897000057 ], [ -121.904875803999943, 49.119645107000103 ], [ -121.905481983999948, 49.11985849000007 ], [ -121.905768298999959, 49.119907208000058 ], [ -121.905943099999931, 49.119899483000033 ], [ -121.906783874999931, 49.119661415000046 ], [ -121.906859408999964, 49.119640043000039 ], [ -121.907725507999942, 49.119394801000141 ], [ -121.90857700399999, 49.119017811000141 ], [ -121.90901951799998, 49.118785806000048 ], [ -121.909176301999977, 49.118639398000035 ], [ -121.909417403999925, 49.118548387 ], [ -121.909479047, 49.118533690000056 ], [ -121.909658210999979, 49.118490896000075 ], [ -121.913836361999969, 49.118499920000104 ], [ -121.913709095999934, 49.119948741 ], [ -121.912859850999951, 49.119916454000055 ], [ -121.91285476299997, 49.119974361000118 ], [ -121.910557141999945, 49.119886976000082 ], [ -121.91050399599996, 49.120491516000065 ], [ -121.910112059999975, 49.1204766050001 ], [ -121.90990609899994, 49.122819024000108 ], [ -121.908301871, 49.122757975000106 ], [ -121.90824196600002, 49.123438961000012 ], [ -121.902777091999923, 49.123230816000031 ], [ -121.90283396699995, 49.122585123000107 ], [ -121.90005853299995, 49.122479307000056 ], [ -121.899780540999984, 49.125632958000054 ], [ -121.899146798999951, 49.125608785000061 ], [ -121.898908854999902, 49.128307369000062 ], [ -121.896717115999934, 49.128223744000067 ], [ -121.896713927999883, 49.125596543000036 ], [ -121.89671344, 49.125200682000106 ], [ -121.896712969999925, 49.12480496000007 ], [ -121.896710074999987, 49.122420819000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117854144", "BldgCostT": "78076523", "sL_LossRatio": "0.890684603048562", "sL_AssetLoss": "321135", "sL_BldgLoss": "286030", "sL_StrLoss": "216471", "sL_NStrLoss": "69559", "sL_ContLoss": "35105", "geom_point": "0101000020E6100000D15C76A1DC7A5EC006CE5B6DAC914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.896593096999965, 49.154461407000028 ], [ -121.896650102999928, 49.147367490000128 ], [ -121.896661814999945, 49.145037759000054 ], [ -121.897283313999978, 49.145061468000058 ], [ -121.897316560999954, 49.144684729000076 ], [ -121.902783928999909, 49.144893145000069 ], [ -121.902758462999955, 49.145182113000047 ], [ -121.904705829999941, 49.14525627900008 ], [ -121.904713931999964, 49.145164308000048 ], [ -121.906554748999923, 49.145234383000094 ], [ -121.906562958, 49.145141152000093 ], [ -121.908018020999975, 49.145196521000116 ], [ -121.908026199999952, 49.145103587000094 ], [ -121.909379295999912, 49.145155057000103 ], [ -121.909379941999958, 49.145147719000114 ], [ -121.914847419999916, 49.145355522000067 ], [ -121.914792203000019, 49.145983893000114 ], [ -121.915066390999968, 49.145994307000095 ], [ -121.915134739999957, 49.14521643100003 ], [ -121.915033570999967, 49.145212588000071 ], [ -121.915349393, 49.14161795200004 ], [ -121.91611726499994, 49.141647113000104 ], [ -121.916165812999921, 49.141094383000038 ], [ -121.915173634999974, 49.141056703000167 ], [ -121.915225492999966, 49.140466423000127 ], [ -121.91520397299999, 49.140465605000067 ], [ -121.91551975, 49.136870942000023 ], [ -121.91633522299999, 49.136901913000031 ], [ -121.916434472999981, 49.135771760000047 ], [ -121.916758801999919, 49.135784076000064 ], [ -121.916827338999951, 49.135003542000106 ], [ -121.915041520999949, 49.134935716000072 ], [ -121.915020091999935, 49.135179665000102 ], [ -121.911460691999977, 49.135044388000068 ], [ -121.911447945999953, 49.135189350000111 ], [ -121.9087071, 49.135085101000122 ], [ -121.90857640499992, 49.136570515000116 ], [ -121.903109987999926, 49.136362390000038 ], [ -121.903216886999957, 49.135149049000056 ], [ -121.900251947999948, 49.135036047000085 ], [ -121.900210204999894, 49.135509518000021 ], [ -121.899153315999968, 49.135469217000072 ], [ -121.899089892999896, 49.136188381000061 ], [ -121.900209984999961, 49.136231091000063 ], [ -121.899893030999962, 49.139825713000029 ], [ -121.896688625999943, 49.139703495000084 ], [ -121.896722580999949, 49.132945756000076 ], [ -121.896722789999956, 49.132901094000076 ], [ -121.89672038099998, 49.130913910000125 ], [ -121.896821478999982, 49.130917769000085 ], [ -121.896796660999954, 49.131199046000035 ], [ -121.89850386199997, 49.131264184000017 ], [ -121.898554984999933, 49.130684518000095 ], [ -121.899407530999937, 49.130717036000085 ], [ -121.89942255699998, 49.130546639000066 ], [ -121.904888274999962, 49.130754951000014 ], [ -121.904831875999946, 49.131395429000079 ], [ -121.906097374999959, 49.13144362000002 ], [ -121.906095795999988, 49.131461552000104 ], [ -121.906290886999969, 49.131468980000129 ], [ -121.906298128999978, 49.131386705000111 ], [ -121.906334735999977, 49.131388099000063 ], [ -121.906397363999986, 49.130676606000044 ], [ -121.910100111999938, 49.130817517000033 ], [ -121.910206267999968, 49.129610394000039 ], [ -121.914875570999953, 49.129787905000072 ], [ -121.915004442999958, 49.128320705000093 ], [ -121.915283681999981, 49.128331314000036 ], [ -121.915319457999914, 49.127923963000043 ], [ -121.915131849999938, 49.127916836000054 ], [ -121.915349126999942, 49.12544282600004 ], [ -121.915297008999957, 49.125440846000046 ], [ -121.915459988999942, 49.123584942000036 ], [ -121.914401694999952, 49.123544727000137 ], [ -121.914717416999949, 49.119949973000075 ], [ -121.916232489999985, 49.120007543000106 ], [ -121.91624891399999, 49.119820472000086 ], [ -121.914537533999962, 49.119755441000045 ], [ -121.91464764600002, 49.118501655000046 ], [ -121.915679377999979, 49.118503850000124 ], [ -121.91845611899997, 49.118509702999987 ], [ -121.923793122999896, 49.118500076000011 ], [ -121.928220522999965, 49.118491929000108 ], [ -121.929458618999945, 49.118489606 ], [ -121.93098782899996, 49.118493776000093 ], [ -121.932687074999961, 49.118498384000141 ], [ -121.933947893999928, 49.118501800000047 ], [ -121.934852246999966, 49.118504245000068 ], [ -121.935360501, 49.118505606000035 ], [ -121.935797237999935, 49.118509783 ], [ -121.936660427999968, 49.118518030000118 ], [ -121.938938887999953, 49.118539814 ], [ -121.93954380699995, 49.119759228000113 ], [ -121.9393500899999, 49.120455215000092 ], [ -121.938807491999938, 49.120971225000133 ], [ -121.93878808, 49.121428517000062 ], [ -121.938557167999974, 49.123052455000085 ], [ -121.93836569299998, 49.124398909000021 ], [ -121.938261, 49.125472397000053 ], [ -121.93826111199999, 49.125753700000111 ], [ -121.938381807000013, 49.126333495000054 ], [ -121.938773383999944, 49.127562896000015 ], [ -121.938758704999913, 49.127668695000096 ], [ -121.938652514999902, 49.127770195000082 ], [ -121.93526689, 49.129380689000101 ], [ -121.934577495999946, 49.12955029700003 ], [ -121.934306110999941, 49.12967529400008 ], [ -121.934041704999942, 49.129861808000108 ], [ -121.933672091999981, 49.13048260500004 ], [ -121.933695716999978, 49.130682798000123 ], [ -121.933839603999942, 49.131201314000045 ], [ -121.933270898, 49.132812692000059 ], [ -121.933200792999941, 49.13289300400006 ], [ -121.933159572999926, 49.132910792000104 ], [ -121.93309786199994, 49.133051220000027 ], [ -121.932066231999968, 49.134783011000131 ], [ -121.932048130999959, 49.134813363000028 ], [ -121.932069884, 49.134819200000031 ], [ -121.932305016999919, 49.134856362000114 ], [ -121.932512503999959, 49.134920094000059 ], [ -121.933991287999987, 49.135140399000129 ], [ -121.934672811, 49.135241919000102 ], [ -121.929499229999962, 49.13504620300008 ], [ -121.929539928999986, 49.134581234000102 ], [ -121.92420223299996, 49.134379047000031 ], [ -121.924196824999925, 49.13444074700007 ], [ -121.922367279999918, 49.134371384000076 ], [ -121.922054732, 49.137935489000043 ], [ -121.921730386999911, 49.13792318800003 ], [ -121.921660088999928, 49.138724671000034 ], [ -121.922931716999955, 49.138772888000084 ], [ -121.922616499999918, 49.142367562000139 ], [ -121.922270106, 49.142354430000097 ], [ -121.922246646999909, 49.142621908000066 ], [ -121.923177347999925, 49.142657191000119 ], [ -121.922990961999943, 49.144782732000095 ], [ -121.926364624999934, 49.144910561000117 ], [ -121.926412188999961, 49.144367725000038 ], [ -121.931879649999956, 49.1445746630001 ], [ -121.931820358999914, 49.145252259000124 ], [ -121.931942091999986, 49.145256863000043 ], [ -121.931866455999938, 49.146121245000053 ], [ -121.932061178999916, 49.146128610000105 ], [ -121.93206266199995, 49.146111664000045 ], [ -121.932240172999968, 49.146118377000057 ], [ -121.932322602999989, 49.145176269000075 ], [ -121.934077966999936, 49.145242640000063 ], [ -121.934085333, 49.145158410000093 ], [ -121.93568866399994, 49.145219008000069 ], [ -121.935692365999955, 49.145176649000121 ], [ -121.936144184999932, 49.145193721000069 ], [ -121.93614884899992, 49.145140360000084 ], [ -121.938120502999979, 49.145214837 ], [ -121.938121065999923, 49.145208407000091 ], [ -121.93844205799995, 49.145220529000056 ], [ -121.938474671, 49.144847215000027 ], [ -121.938683680999944, 49.144855107000062 ], [ -121.938829863999914, 49.143181614000049 ], [ -121.937675023999972, 49.143138001000089 ], [ -121.937771371999958, 49.142035270000129 ], [ -121.941101842999956, 49.141895393000091 ], [ -121.941164592999939, 49.142104796000048 ], [ -121.941361600999983, 49.142440502000099 ], [ -121.942125702999959, 49.143317706000076 ], [ -121.942359604999979, 49.143465401000114 ], [ -121.943073605, 49.143691589000063 ], [ -121.943513100999937, 49.143762313000074 ], [ -121.943891007999923, 49.143784699000015 ], [ -121.944262813999927, 49.143861796000067 ], [ -121.944501308000014, 49.143988890000038 ], [ -121.944686726999947, 49.144173500000086 ], [ -121.944784296999956, 49.1443601940001 ], [ -121.944834492999973, 49.144617301000139 ], [ -121.944738413999957, 49.145326003000022 ], [ -121.944791515999952, 49.14580310900002 ], [ -121.944886915999987, 49.14653249600012 ], [ -121.94538111199995, 49.14747078300006 ], [ -121.945445870999919, 49.147505903000102 ], [ -121.946100096999913, 49.147860413000032 ], [ -121.946404177999952, 49.147989900000098 ], [ -121.946611510999901, 49.148081233000049 ], [ -121.947323803999922, 49.148395028000103 ], [ -121.947335284999937, 49.148400097 ], [ -121.947322464999957, 49.148403246000086 ], [ -121.946973550999971, 49.148488474 ], [ -121.945812677999982, 49.148772059000123 ], [ -121.9454273599999, 49.148866205000097 ], [ -121.941992607999964, 49.149705169000043 ], [ -121.941073274999937, 49.149670484000197 ], [ -121.94105014799996, 49.149935348000078 ], [ -121.939971, 49.150198895000059 ], [ -121.93629572099999, 49.151116365000142 ], [ -121.935463450999976, 49.15108492100007 ], [ -121.935528645999938, 49.150339283000029 ], [ -121.933978044999918, 49.150280683000098 ], [ -121.93402076699999, 49.149792254000054 ], [ -121.933615441999947, 49.14977693100014 ], [ -121.933613959999931, 49.149793877000057 ], [ -121.931435610999969, 49.149711507000099 ], [ -121.931428869999948, 49.149788530000123 ], [ -121.925960797999977, 49.149581570000095 ], [ -121.925966496999933, 49.149516542000065 ], [ -121.925778501999972, 49.14950942200003 ], [ -121.925762932999973, 49.149687065000066 ], [ -121.923591023999961, 49.149604780000054 ], [ -121.923579035999964, 49.150158066000095 ], [ -121.923167711999966, 49.150154230000076 ], [ -121.923161863999951, 49.150424044000033 ], [ -121.921927887999956, 49.150412529000114 ], [ -121.92193208599997, 49.150219116000052 ], [ -121.921637181, 49.153580453000124 ], [ -121.921619293999981, 49.153579774000086 ], [ -121.921511274999915, 49.154810840000088 ], [ -121.920641458999953, 49.154976108000035 ], [ -121.920330993000022, 49.155035093000045 ], [ -121.919803826999953, 49.155095302000078 ], [ -121.919293215999971, 49.15515359500008 ], [ -121.918274779999962, 49.15517529699999 ], [ -121.918206094999974, 49.15517718800011 ], [ -121.917088001999971, 49.155194292000033 ], [ -121.913972803999926, 49.155175719000063 ], [ -121.913978903999947, 49.155106333000127 ], [ -121.914258467999943, 49.151925955000138 ], [ -121.914468102999976, 49.151933918000111 ], [ -121.91450468, 49.151517760000111 ], [ -121.91480522799999, 49.151529175000057 ], [ -121.914865902999949, 49.15083876800005 ], [ -121.916113679999967, 49.150886146000055 ], [ -121.916215674999961, 49.149725158000088 ], [ -121.914862388999936, 49.149673772000028 ], [ -121.914869448999937, 49.149593435000092 ], [ -121.913118641, 49.149526930000029 ], [ -121.913105414999961, 49.149677369000074 ], [ -121.909051313999939, 49.149523260000059 ], [ -121.909050441999938, 49.149533165000058 ], [ -121.905741597999935, 49.149407272000104 ], [ -121.905726608999885, 49.149577446000094 ], [ -121.900258676999925, 49.14936918100004 ], [ -121.900310324999921, 49.148783546000111 ], [ -121.899043751999955, 49.148735265000084 ], [ -121.898940046999954, 49.149910791000103 ], [ -121.899101775999938, 49.149916957000045 ], [ -121.899058893999921, 49.15040304300009 ], [ -121.89905930799992, 49.150403059000091 ], [ -121.898983889999954, 49.151257912000091 ], [ -121.899061261999947, 49.151260862000143 ], [ -121.899027844, 49.151639641000031 ], [ -121.89999315299994, 49.151676438000095 ], [ -121.899886723999956, 49.15288304200007 ], [ -121.900120123999926, 49.152891938000046 ], [ -121.899925500999942, 49.155098347000084 ], [ -121.896569298, 49.155080308000024 ], [ -121.896572853999928, 49.154987878000085 ], [ -121.896576408999948, 49.154895450000083 ], [ -121.896579948999943, 49.154802998000029 ], [ -121.896583520999968, 49.15471059100004 ], [ -121.896587076999978, 49.154618162000098 ], [ -121.896590613999976, 49.15452571100009 ], [ -121.896593096999965, 49.154461407000028 ] ], [ [ -121.931439792999953, 49.131513004000105 ], [ -121.931448466999925, 49.131413854000066 ], [ -121.931054712999952, 49.131398955000073 ], [ -121.931369202999988, 49.127804195000117 ], [ -121.935027331999933, 49.127942566000101 ], [ -121.935096987999913, 49.127145581000036 ], [ -121.935131839999968, 49.127146899000088 ], [ -121.935145495999905, 49.126990642000067 ], [ -121.933966094999974, 49.126946044000078 ], [ -121.93428033099994, 49.123351251000017 ], [ -121.934910168999949, 49.123375070000122 ], [ -121.934912203999943, 49.123351767000088 ], [ -121.935366668000015, 49.123368950000021 ], [ -121.935396593999926, 49.123026477000053 ], [ -121.934637465, 49.122997772000083 ], [ -121.934912516999987, 49.119850458000109 ], [ -121.934832203999989, 49.119847419000095 ], [ -121.934824057999919, 49.119940635000098 ], [ -121.933797655999967, 49.119901815000105 ], [ -121.933791716999949, 49.119969760000053 ], [ -121.932990430999936, 49.119939447000085 ], [ -121.932988583999943, 49.119960579000072 ], [ -121.93182777, 49.1199166540001 ], [ -121.931821337999963, 49.11999020700005 ], [ -121.931724105999947, 49.119986527000087 ], [ -121.931660071999943, 49.120718709000109 ], [ -121.931534411999934, 49.120713954000045 ], [ -121.931483696999962, 49.121293811000022 ], [ -121.926018969999973, 49.121086845000065 ], [ -121.926048405999936, 49.12075074900013 ], [ -121.922321716999988, 49.12060944800006 ], [ -121.922288004, 49.120994032000077 ], [ -121.921666196, 49.120970443000083 ], [ -121.921658181999959, 49.121061847000149 ], [ -121.920107805, 49.12100301600006 ], [ -121.920045420999941, 49.121714268000034 ], [ -121.921977196999975, 49.121787569000034 ], [ -121.921757408999937, 49.124294447000061 ], [ -121.922098147999932, 49.12430737200004 ], [ -121.921782964999977, 49.127902124000087 ], [ -121.920872668999891, 49.127867591000097 ], [ -121.920845742999944, 49.128174596000051 ], [ -121.92095163, 49.128178613000046 ], [ -121.92075445399999, 49.130426704000023 ], [ -121.925134927999949, 49.130592807000028 ], [ -121.92512065899993, 49.130755678000064 ], [ -121.927751149999978, 49.130855338000075 ], [ -121.927746652999971, 49.130906682000145 ], [ -121.929933378999976, 49.130989479000071 ], [ -121.929892685999931, 49.131454452000092 ], [ -121.931439792999953, 49.131513004000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.837623337623338", "sL_AssetLoss": "9324", "sL_BldgLoss": "7810", "sL_StrLoss": "4920", "sL_NStrLoss": "2890", "sL_ContLoss": "1514", "geom_point": "0101000020E610000038C76FC01D775EC0D3CBDE0841914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.863763137999911, 49.132932600000139 ], [ -121.863902401999965, 49.132937958000106 ], [ -121.863582665999971, 49.136532490000043 ], [ -121.85811645499993, 49.136322082000113 ], [ -121.858321371999963, 49.134021466000043 ], [ -121.86161393899998, 49.132849903000078 ], [ -121.863394919999962, 49.132918436000047 ], [ -121.863763137999911, 49.132932600000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.873224556872872", "sL_AssetLoss": "17038", "sL_BldgLoss": "14878", "sL_StrLoss": "9640", "sL_NStrLoss": "5238", "sL_ContLoss": "2160", "geom_point": "0101000020E6100000C8BB7E1CA8765EC010C379FED5914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.852349913999944, 49.139935289000093 ], [ -121.85237561699995, 49.136273868000103 ], [ -121.852375896999902, 49.136231102000053 ], [ -121.852328007, 49.13615361300004 ], [ -121.857524033999965, 49.134305150000081 ], [ -121.857274139999944, 49.137110139000065 ], [ -121.855915244999963, 49.137057779000045 ], [ -121.855851216999895, 49.13777617100002 ], [ -121.855772745999914, 49.137773148000043 ], [ -121.855705352999905, 49.138529273000074 ], [ -121.85293550199998, 49.138422490000067 ], [ -121.85286756, 49.13918423300008 ], [ -121.856552363999938, 49.139326272000083 ], [ -121.856232018999961, 49.142920748000094 ], [ -121.855529568999913, 49.142893680000071 ], [ -121.855523491999961, 49.142961865000053 ], [ -121.852315853, 49.142838205000011 ], [ -121.85005656199999, 49.142751049000076 ], [ -121.850309225999965, 49.139920282000077 ], [ -121.852349913999944, 49.139935289000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.909902597402597", "sL_AssetLoss": "6160", "sL_BldgLoss": "5605", "sL_StrLoss": "4320", "sL_NStrLoss": "1285", "sL_ContLoss": "555", "geom_point": "0101000020E6100000539684B8F0775EC0A5A47F308D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.874444446000012, 49.150957368000064 ], [ -121.876960952000033, 49.151053854000111 ], [ -121.876642099999984, 49.154648325000025 ], [ -121.87442125599992, 49.154563179000029 ], [ -121.871173702999926, 49.154438586000083 ], [ -121.871492974999953, 49.15084413000011 ], [ -121.874444446000012, 49.150957368000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58779167", "BldgCostT": "39646667", "sL_LossRatio": "0.829604519774011", "sL_AssetLoss": "212400", "sL_BldgLoss": "176208", "sL_StrLoss": "114215", "sL_NStrLoss": "61993", "sL_ContLoss": "36192", "geom_point": "0101000020E61000005963F98812775EC040E0FDC8DF924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.832565570999961, 49.154528680000119 ], [ -121.830433879999958, 49.154328600000071 ], [ -121.830119395999986, 49.154317314000124 ], [ -121.830118300999942, 49.154212817000072 ], [ -121.830115579999969, 49.153957035000076 ], [ -121.830114423999973, 49.153849066000085 ], [ -121.830113331999883, 49.153746214000087 ], [ -121.83010708800002, 49.153158065000099 ], [ -121.830103306999916, 49.152802478000091 ], [ -121.83007135299999, 49.149795892000022 ], [ -121.830042146999958, 49.147043779000114 ], [ -121.832111633999915, 49.147061778000129 ], [ -121.833484815999938, 49.147074419000042 ], [ -121.834410634999941, 49.147083871000071 ], [ -121.834835652999971, 49.147088217000039 ], [ -121.835003117999946, 49.147089923000138 ], [ -121.835011559999955, 49.14694857100006 ], [ -121.835012618999954, 49.146931021000043 ], [ -121.835025200999937, 49.146721097000075 ], [ -121.834830406, 49.146491709000024 ], [ -121.834933212, 49.145910501000074 ], [ -121.834932486999932, 49.145689504000089 ], [ -121.834810014999974, 49.144989607000113 ], [ -121.834637314999966, 49.144514004000079 ], [ -121.834447211999986, 49.144217192000063 ], [ -121.834272317999975, 49.143567506000124 ], [ -121.834348691999963, 49.143402702000024 ], [ -121.834387678999974, 49.143354940000094 ], [ -121.835285698999954, 49.143364003000102 ], [ -121.835264676999955, 49.144260934000087 ], [ -121.836790693999916, 49.144320016000087 ], [ -121.836760647999967, 49.144655522000029 ], [ -121.837289796999983, 49.144676003000036 ], [ -121.83727057199998, 49.144890711000059 ], [ -121.838824261999932, 49.144950834000028 ], [ -121.838971378999986, 49.143307183000111 ], [ -121.837809384999957, 49.14326221900005 ], [ -121.837912686999957, 49.142108323000052 ], [ -121.836578714999916, 49.142056688000039 ], [ -121.836592573999937, 49.14190192100007 ], [ -121.835712994999966, 49.141867865000052 ], [ -121.835784811999986, 49.141066044000084 ], [ -121.834576206999927, 49.141019237000059 ], [ -121.834593444999896, 49.140826835000063 ], [ -121.834609207999918, 49.140802285000085 ], [ -121.834756404999951, 49.140689913000074 ], [ -121.8349857799999, 49.140577998000012 ], [ -121.835551194999979, 49.140359997000097 ], [ -121.83610810299993, 49.139990211000033 ], [ -121.83626595, 49.139904419000061 ], [ -121.836419479999961, 49.139820994000061 ], [ -121.837432924999987, 49.139826260000049 ], [ -121.837494078999953, 49.139826589000059 ], [ -121.837529, 49.139826773000067 ], [ -121.838112409999951, 49.139829803000026 ], [ -121.843078896999941, 49.139866797000082 ], [ -121.845239043999982, 49.13988282800009 ], [ -121.845231080999895, 49.140225470000075 ], [ -121.845121703999894, 49.140224377000038 ], [ -121.845014576999972, 49.141423120000049 ], [ -121.844426151999954, 49.141400384000043 ], [ -121.84433089, 49.142466145000107 ], [ -121.844531697999983, 49.142473904000049 ], [ -121.844248590999896, 49.145641114000107 ], [ -121.844431560999936, 49.145648183000063 ], [ -121.844445676999911, 49.145490268000046 ], [ -121.844665942999939, 49.145498778000075 ], [ -121.844708891999957, 49.145018273000062 ], [ -121.849146700999938, 49.145189637000037 ], [ -121.849300388999936, 49.143468278000071 ], [ -121.850397515999958, 49.143510614000022 ], [ -121.850414751999949, 49.143317503000027 ], [ -121.852309382000016, 49.143390589000077 ], [ -121.85588174899999, 49.143528301000075 ], [ -121.855750561999983, 49.144999998000074 ], [ -121.856027679999983, 49.145010676000048 ], [ -121.856030730999962, 49.144976443000104 ], [ -121.860302139999973, 49.145140935000057 ], [ -121.860311453999898, 49.145036345000086 ], [ -121.861932673999945, 49.145098733000111 ], [ -121.86193788599995, 49.145040184000052 ], [ -121.865504374999958, 49.145177345000093 ], [ -121.86551654000003, 49.14504057100006 ], [ -121.867382615999986, 49.145112289000089 ], [ -121.867388062999979, 49.145051015000099 ], [ -121.868886339999975, 49.145108574000048 ], [ -121.868893202999942, 49.145031351000078 ], [ -121.870797427999932, 49.145104476000085 ], [ -121.871112604999894, 49.141555694000068 ], [ -121.872653616999955, 49.141614846000024 ], [ -121.872681554999986, 49.141300130000083 ], [ -121.874499115999924, 49.141369869000037 ], [ -121.878148416000016, 49.141509798000065 ], [ -121.877829721999902, 49.145104325000041 ], [ -121.87628858699999, 49.145045247000027 ], [ -121.876287742999963, 49.145054764000037 ], [ -121.877878938999956, 49.145115760000074 ], [ -121.877884534, 49.145052665000016 ], [ -121.881768216999902, 49.145201442000072 ], [ -121.881784576999948, 49.145016759000043 ], [ -121.887251916999944, 49.145225962000062 ], [ -121.887210029999949, 49.145699427000075 ], [ -121.890938009999942, 49.145841915000041 ], [ -121.890946461999974, 49.145746281000093 ], [ -121.895509170999958, 49.145920496000059 ], [ -121.895590712999976, 49.144996889000026 ], [ -121.896661814999945, 49.145037759000054 ], [ -121.896650102999928, 49.147367490000128 ], [ -121.896593096999965, 49.154461407000028 ], [ -121.896590613999976, 49.15452571100009 ], [ -121.896587076999978, 49.154618162000098 ], [ -121.896583520999968, 49.15471059100004 ], [ -121.896579948999943, 49.154802998000029 ], [ -121.896576408999948, 49.154895450000083 ], [ -121.896572853999928, 49.154987878000085 ], [ -121.896569298, 49.155080308000024 ], [ -121.896474851000022, 49.155079786000137 ], [ -121.892041441999964, 49.155055791000066 ], [ -121.892106239000015, 49.154322633000035 ], [ -121.893300205999964, 49.15436821800008 ], [ -121.893351121999942, 49.153791935000093 ], [ -121.893273746999981, 49.153788981000019 ], [ -121.893316692999974, 49.15330289900001 ], [ -121.893316278999947, 49.153302884000063 ], [ -121.893574495999957, 49.15038006800004 ], [ -121.893412763999947, 49.15037389400004 ], [ -121.893494359, 49.149450261000041 ], [ -121.892265305, 49.149403333000066 ], [ -121.892256853999967, 49.149498967000113 ], [ -121.89094310499999, 49.149448789000061 ], [ -121.890932903999925, 49.149564199000096 ], [ -121.890057284999983, 49.149530746000018 ], [ -121.890056766999919, 49.149536621000088 ], [ -121.886038137999947, 49.149382997 ], [ -121.88602130299999, 49.149573216000121 ], [ -121.884669049999985, 49.149521489000072 ], [ -121.884664847999915, 49.149568948000152 ], [ -121.882912033999972, 49.149501873000126 ], [ -121.882895682, 49.149686490000093 ], [ -121.87742783799996, 49.149477067000092 ], [ -121.877433297999957, 49.149415493000056 ], [ -121.875067761999944, 49.149324804000052 ], [ -121.875111936999971, 49.148826974000023 ], [ -121.874458305999937, 49.148801907000099 ], [ -121.874045875999911, 49.148786087000119 ], [ -121.874041471999959, 49.148835704000099 ], [ -121.873993204999948, 49.148833854000031 ], [ -121.873927907999928, 49.149569506000063 ], [ -121.870016960999962, 49.149419414000079 ], [ -121.870008745999954, 49.149511900000029 ], [ -121.869482525999942, 49.149491694000119 ], [ -121.869480922999955, 49.149509712000103 ], [ -121.868612693, 49.14947636800008 ], [ -121.868607888999932, 49.149530432000034 ], [ -121.863140127999927, 49.149320283000115 ], [ -121.863144684999924, 49.149269081000064 ], [ -121.861293126999954, 49.149197854000064 ], [ -121.861271184999936, 49.149444308000042 ], [ -121.860237776999938, 49.149404540000027 ], [ -121.860232443999919, 49.149464433000091 ], [ -121.857639417999977, 49.149364604000077 ], [ -121.857627138999987, 49.149502394000123 ], [ -121.855757362999924, 49.149430371000079 ], [ -121.855447437999928, 49.152906437000041 ], [ -121.855395531999946, 49.152904438000071 ], [ -121.855342466999986, 49.153499537000108 ], [ -121.854402638999929, 49.153463323000068 ], [ -121.854348655999956, 49.154068560000063 ], [ -121.854187367999941, 49.154062344000096 ], [ -121.854118387999961, 49.154835686000112 ], [ -121.85222276699993, 49.154824050000101 ], [ -121.852209199999976, 49.154823969000063 ], [ -121.848634248999971, 49.154801929000051 ], [ -121.848646878999944, 49.154660535000112 ], [ -121.847242821999913, 49.154606343000054 ], [ -121.847563943999944, 49.15101195900008 ], [ -121.848906382999928, 49.151063774000072 ], [ -121.849051973999948, 49.149433409000054 ], [ -121.84770772899995, 49.149381525000074 ], [ -121.847560612, 49.151028431000064 ], [ -121.84684594499997, 49.151000840000052 ], [ -121.846839482999926, 49.151073149000062 ], [ -121.841371640999938, 49.150861895000041 ], [ -121.841499374999941, 49.149434119000048 ], [ -121.837489282, 49.149279008000072 ], [ -121.837460119999974, 49.149604677000063 ], [ -121.833644518999947, 49.14945694900009 ], [ -121.83341662199993, 49.151999454000084 ], [ -121.83344689399999, 49.152000627000049 ], [ -121.833426811999956, 49.1522246480001 ], [ -121.833867492999929, 49.152241716000042 ], [ -121.833653349999963, 49.154630755000071 ], [ -121.833375475999944, 49.154604678000048 ], [ -121.832565570999961, 49.154528680000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.909834846005059", "sL_AssetLoss": "6721", "sL_BldgLoss": "6115", "sL_StrLoss": "4460", "sL_NStrLoss": "1655", "sL_ContLoss": "606", "geom_point": "0101000020E6100000595970794B795EC051E782E1F98F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.894393698999963, 49.124528256000154 ], [ -121.894414830999963, 49.124288852000134 ], [ -121.89430051799998, 49.124284486000093 ], [ -121.894417442999938, 49.122959825000066 ], [ -121.892111093999972, 49.122871718000098 ], [ -121.896707989000021, 49.120714985000113 ], [ -121.896710074999987, 49.122420819000034 ], [ -121.896712969999925, 49.12480496000007 ], [ -121.89671344, 49.125200682000106 ], [ -121.896713927999883, 49.125596543000036 ], [ -121.896717115999934, 49.128223744000067 ], [ -121.893443448999946, 49.128098752000064 ], [ -121.893760821999962, 49.124504085000112 ], [ -121.894393698999963, 49.124528256000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.895505139590049", "sL_AssetLoss": "16441", "sL_BldgLoss": "14723", "sL_StrLoss": "10130", "sL_NStrLoss": "4593", "sL_ContLoss": "1718", "geom_point": "0101000020E6100000F4A78DEAF4775EC0A8325210B8914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.87189746199999, 49.141056540000058 ], [ -121.871913776999946, 49.140872776000059 ], [ -121.870408921999939, 49.140815001000107 ], [ -121.870728159999913, 49.137220472000081 ], [ -121.871234273999974, 49.137239905000101 ], [ -121.871262253999944, 49.136924783000062 ], [ -121.871339282999926, 49.136927741000044 ], [ -121.871473827999978, 49.135412384000041 ], [ -121.874525675999962, 49.135529515000037 ], [ -121.876939992999922, 49.135622115000061 ], [ -121.87685477399999, 49.136583199000057 ], [ -121.878189911999968, 49.136634384000047 ], [ -121.878151120999974, 49.137071980000044 ], [ -121.878174738999959, 49.137072885000109 ], [ -121.87785607799999, 49.140667437000012 ], [ -121.877418873, 49.1406506780001 ], [ -121.87736429, 49.1412662480001 ], [ -121.874500236999936, 49.141156417000033 ], [ -121.87189746199999, 49.141056540000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19601667", "BldgCostT": "13046667", "sL_LossRatio": "0.857799926118544", "sL_AssetLoss": "69029.5", "sL_BldgLoss": "59213.5", "sL_StrLoss": "37878.5", "sL_NStrLoss": "21335", "sL_ContLoss": "9816", "geom_point": "0101000020E6100000F9BC3D637A785EC0690D31A00F914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.894426269999897, 49.139617148000127 ], [ -121.894632997999935, 49.137275799000093 ], [ -121.893512884999893, 49.137233030000104 ], [ -121.893762381999949, 49.13440773800005 ], [ -121.892330717, 49.134353056000094 ], [ -121.892262659999943, 49.135123509000032 ], [ -121.891148785999974, 49.135080952000095 ], [ -121.891147310999955, 49.135097636000054 ], [ -121.885844811999945, 49.134894888000105 ], [ -121.885826694999963, 49.135099662000108 ], [ -121.880360551999914, 49.134890383000027 ], [ -121.880360576999976, 49.13489010200005 ], [ -121.879681028999983, 49.134864065000045 ], [ -121.879732926, 49.13427836799999 ], [ -121.877708392, 49.134200771000046 ], [ -121.877584486000018, 49.135598459000022 ], [ -121.87452596, 49.135481160000047 ], [ -121.872118321999949, 49.13538876100008 ], [ -121.872156389999972, 49.134959917000117 ], [ -121.867817001999953, 49.134793247000104 ], [ -121.86781900199999, 49.134770729000074 ], [ -121.866257349999955, 49.13471070500011 ], [ -121.866315044999951, 49.134061680000087 ], [ -121.865459462999965, 49.134028785000041 ], [ -121.865470022999943, 49.133910021000105 ], [ -121.864248728999911, 49.133863053000105 ], [ -121.864354360999968, 49.132675325000086 ], [ -121.864390065999956, 49.132273831000084 ], [ -121.866527545999986, 49.132040273000037 ], [ -121.873148942999961, 49.130545299000104 ], [ -121.875715568999937, 49.130643783000068 ], [ -121.875726724999979, 49.13051797100006 ], [ -121.881192334999966, 49.130727488000076 ], [ -121.881140460999958, 49.131313189000132 ], [ -121.881728627999919, 49.13133571900007 ], [ -121.881802578999952, 49.130500617000081 ], [ -121.883636925999951, 49.130570862000049 ], [ -121.883644104, 49.130489761000049 ], [ -121.889109744999942, 49.13069887500005 ], [ -121.889048306999968, 49.131393905000067 ], [ -121.89128770799995, 49.131479503 ], [ -121.891355777999976, 49.130709046000092 ], [ -121.89672038099998, 49.130913910000125 ], [ -121.896722789999956, 49.132901094000076 ], [ -121.896722580999949, 49.132945756000076 ], [ -121.896688625999943, 49.139703495000084 ], [ -121.894426269999897, 49.139617148000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260442553", "BldgCostT": "171993746", "sL_LossRatio": "0.856473496354512", "sL_AssetLoss": "793721", "sL_BldgLoss": "679801", "sL_StrLoss": "446042", "sL_NStrLoss": "233759", "sL_ContLoss": "113920", "geom_point": "0101000020E610000082405F61DE7D5EC0B347B9452A904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.960014886999915, 49.128401898000071 ], [ -121.960068310999986, 49.127708811000062 ], [ -121.960261440999943, 49.126076770000061 ], [ -121.960403338999967, 49.124877491000056 ], [ -121.959864726999939, 49.123423678000066 ], [ -121.959838934999965, 49.122805092000114 ], [ -121.961710403999973, 49.122800591000065 ], [ -121.962731690999988, 49.122799207000057 ], [ -121.964086196999943, 49.122796899000015 ], [ -121.969430084999928, 49.122786409000099 ], [ -121.970622793999937, 49.122784215000109 ], [ -121.971667412000016, 49.122782808000053 ], [ -121.972935486999944, 49.122780695000074 ], [ -121.974919410999959, 49.122775708000063 ], [ -121.976147715999957, 49.122773898000062 ], [ -121.977466495999948, 49.122771805000085 ], [ -121.977459583999945, 49.123120042000089 ], [ -121.977401468999958, 49.126052110000039 ], [ -121.977399863999963, 49.126132818000023 ], [ -121.974265481999979, 49.127391349000064 ], [ -121.974443248999989, 49.125337417000082 ], [ -121.971142523999958, 49.125213775000184 ], [ -121.971131836999973, 49.125337151000018 ], [ -121.970348426999976, 49.1253077900001 ], [ -121.970348004999934, 49.125312670000071 ], [ -121.969242325, 49.125271220000037 ], [ -121.969234961999973, 49.125356196 ], [ -121.968526294999947, 49.125329624000059 ], [ -121.968523370999975, 49.125470587000095 ], [ -121.968112245, 49.125466913000025 ], [ -121.968106645999953, 49.125736731000075 ], [ -121.96687326299994, 49.125725700000054 ], [ -121.966878869999931, 49.12545588100005 ], [ -121.966056619999975, 49.125448520000141 ], [ -121.96603978899995, 49.126257976000069 ], [ -121.9664509199999, 49.126261658000054 ], [ -121.966445311999905, 49.126531476000039 ], [ -121.967267578999937, 49.126538834000058 ], [ -121.967261974999985, 49.126808654000044 ], [ -121.96767311, 49.126812330000121 ], [ -121.967661906999965, 49.127351968000013 ], [ -121.968484188, 49.127359318000032 ], [ -121.968467394999919, 49.128168774000088 ], [ -121.968878541999942, 49.128172447000118 ], [ -121.968867350999957, 49.128712085000117 ], [ -121.97092311199998, 49.128730428000033 ], [ -121.970922457999947, 49.128762066000036 ], [ -121.97037128399991, 49.128978243000056 ], [ -121.970333984999968, 49.128995859000085 ], [ -121.970115048999929, 49.129068195000038 ], [ -121.968948825, 49.129674467000072 ], [ -121.966227777999947, 49.130958977000013 ], [ -121.965534997999939, 49.131294664000059 ], [ -121.965328593, 49.131329158 ], [ -121.964876014999973, 49.131387220000086 ], [ -121.964567596000037, 49.131388705000049 ], [ -121.96351130499994, 49.131395993000062 ], [ -121.962004617999952, 49.131411494000083 ], [ -121.961337991999983, 49.131367494000074 ], [ -121.961085002999937, 49.131323145000074 ], [ -121.960408897, 49.131204591000092 ], [ -121.960500503, 49.130939403000106 ], [ -121.960238418999936, 49.129347994000078 ], [ -121.960196403999944, 49.129170200000068 ], [ -121.960014886999915, 49.128401898000071 ] ], [ [ -121.975669314999948, 49.124460209000055 ], [ -121.975763107999938, 49.123376096000122 ], [ -121.974719653999927, 49.12336683400008 ], [ -121.974583931999916, 49.124935170000064 ], [ -121.975505520999903, 49.124969672000063 ], [ -121.975549986999908, 49.124455743000063 ], [ -121.975669314999948, 49.124460209000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116916667", "BldgCostT": "79896667", "sL_LossRatio": "0.904586700901584", "sL_AssetLoss": "342730", "sL_BldgLoss": "310029", "sL_StrLoss": "219423", "sL_NStrLoss": "90606", "sL_ContLoss": "32701", "geom_point": "0101000020E610000069A9B4ACD87C5EC08F8D82D880904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.946940820999941, 49.12948599 ], [ -121.947467, 49.129268695000079 ], [ -121.94769349799999, 49.129107701000116 ], [ -121.948138293999961, 49.128644791000099 ], [ -121.948262593999928, 49.128602592000085 ], [ -121.949490282999989, 49.128593790000075 ], [ -121.949493314999955, 49.12772559700003 ], [ -121.94946010299995, 49.127130184000144 ], [ -121.949489797999888, 49.127056490000065 ], [ -121.949591986, 49.126953889000085 ], [ -121.949695501999912, 49.126899206000132 ], [ -121.94982079699993, 49.126876909000018 ], [ -121.950465299999976, 49.126874105000034 ], [ -121.950446013999965, 49.125757993000079 ], [ -121.951631885999944, 49.12575578900001 ], [ -121.954640582999971, 49.125727505000071 ], [ -121.95464802, 49.126855804000058 ], [ -121.95467150099995, 49.127578898000102 ], [ -121.954757992999959, 49.127687606000073 ], [ -121.95492229599995, 49.127721700000038 ], [ -121.956471014999963, 49.127725903000062 ], [ -121.956471468999894, 49.128430092000087 ], [ -121.95525960799992, 49.128429594000053 ], [ -121.955078511999915, 49.128463394000114 ], [ -121.954979312999981, 49.12853179500005 ], [ -121.95493099399998, 49.128646311000097 ], [ -121.954924201999987, 49.129291599000076 ], [ -121.954873216999943, 49.129436608000084 ], [ -121.954752690999968, 49.129560997000091 ], [ -121.954116704999976, 49.130016793000017 ], [ -121.953859910999981, 49.130100005000052 ], [ -121.953611198999951, 49.130122204000074 ], [ -121.951883604999963, 49.130187900000088 ], [ -121.950911515999948, 49.130330700000108 ], [ -121.950665591999936, 49.130399019000031 ], [ -121.950518419000019, 49.130483607000023 ], [ -121.950441671999968, 49.130577203000087 ], [ -121.950292, 49.131163096000066 ], [ -121.9502234099999, 49.131824987000094 ], [ -121.94761737099999, 49.131827483000059 ], [ -121.947072576999915, 49.131828006000077 ], [ -121.944412490999952, 49.131831412000089 ], [ -121.94442197799998, 49.131644194000046 ], [ -121.944550716999942, 49.131394798000073 ], [ -121.944794617999889, 49.131144302000067 ], [ -121.945046490000024, 49.130976215000075 ], [ -121.945343497, 49.130825110000096 ], [ -121.94574550499999, 49.130695081000084 ], [ -121.946263600999956, 49.130571289000045 ], [ -121.946720118, 49.130524497000067 ], [ -121.94677960199995, 49.12965301200007 ], [ -121.946836596999944, 49.129549597000064 ], [ -121.946940820999941, 49.12948599 ] ], [ [ -121.953968080999942, 49.128405802000017 ], [ -121.953777388, 49.128287593000039 ], [ -121.95351718699996, 49.128293297000084 ], [ -121.953430990999948, 49.128499794000049 ], [ -121.953695796999938, 49.128898601000138 ], [ -121.953613413999932, 49.12897830000005 ], [ -121.953352489999986, 49.128966891000097 ], [ -121.953230010999931, 49.128300409000104 ], [ -121.952987009999944, 49.128109594000108 ], [ -121.952842591999968, 49.127793389000132 ], [ -121.952035990999931, 49.127642404 ], [ -121.951745508, 49.127837494000111 ], [ -121.951692515000019, 49.128385901000087 ], [ -121.95192338599999, 49.129089404000098 ], [ -121.952056920999894, 49.129288802000055 ], [ -121.952301797999965, 49.129425488000059 ], [ -121.95295659199995, 49.129521007000037 ], [ -121.953523088999944, 49.129355702000076 ], [ -121.953953900999977, 49.12901680700007 ], [ -121.953968080999942, 49.128405802000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81339832", "BldgCostT": "54833332", "sL_LossRatio": "0.958522045512869", "sL_AssetLoss": "115343.2", "sL_BldgLoss": "110559", "sL_StrLoss": "97250", "sL_NStrLoss": "13309", "sL_ContLoss": "4784.2", "geom_point": "0101000020E610000044F7FFB35E7E5EC0FFC32312018C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.964025791999958, 49.097003415000131 ], [ -121.963754919999971, 49.096146 ], [ -121.963117193999921, 49.095888302000091 ], [ -121.96237969, 49.095782899000035 ], [ -121.962336886999978, 49.095743773000066 ], [ -121.962678424999936, 49.095756608000045 ], [ -121.962750240999952, 49.094928649000103 ], [ -121.962848345999959, 49.094932336000049 ], [ -121.962908372999905, 49.094240251 ], [ -121.963417041999932, 49.094259365 ], [ -121.963417619999944, 49.094231541000077 ], [ -121.960853586999974, 49.094135172000108 ], [ -121.960773204999953, 49.094132149000131 ], [ -121.960782155999979, 49.094029005000046 ], [ -121.960893383999959, 49.092747204000034 ], [ -121.96193832899999, 49.09282922400007 ], [ -121.964271554999968, 49.092795668000072 ], [ -121.964521162999972, 49.092794001000058 ], [ -121.964761580999934, 49.092792390000085 ], [ -121.968225807999914, 49.092769068000059 ], [ -121.971791373999949, 49.09304962700007 ], [ -121.97317039299999, 49.093046767000075 ], [ -121.972624220999961, 49.090211237000105 ], [ -121.97446353499997, 49.09028017800005 ], [ -121.974388013999956, 49.091153474000073 ], [ -121.974545924999987, 49.091159391000062 ], [ -121.974917505999912, 49.091173314000137 ], [ -121.97529766000001, 49.091187558000087 ], [ -121.97529704699997, 49.091194635000086 ], [ -121.97564355899999, 49.091207617000066 ], [ -121.975813981999977, 49.089236221000135 ], [ -121.97581582299999, 49.089214924000011 ], [ -121.975838729999964, 49.089215121000038 ], [ -121.97945536, 49.089159341000048 ], [ -121.981303843999967, 49.089108775000035 ], [ -121.981045804999951, 49.092097710000125 ], [ -121.979433572999966, 49.092037384000022 ], [ -121.979424028999972, 49.092147892000078 ], [ -121.980154544999948, 49.092175229000055 ], [ -121.980132254999887, 49.092433333000081 ], [ -121.980738439999953, 49.092456014000078 ], [ -121.980674725999961, 49.093193905000128 ], [ -121.980601290999942, 49.094044358000147 ], [ -121.981478347999939, 49.094077168000069 ], [ -121.98154367699999, 49.093320436000042 ], [ -121.981629014999925, 49.092331894000068 ], [ -121.984638489999952, 49.092444420000035 ], [ -121.985655102999914, 49.092482413000035 ], [ -121.985690263999956, 49.092074690000061 ], [ -121.986729261999955, 49.092113509000043 ], [ -121.986732021999927, 49.092081515000103 ], [ -121.987466781999956, 49.092108961000044 ], [ -121.987504210999958, 49.091674733000048 ], [ -121.987592340999953, 49.091678025000085 ], [ -121.98783897099996, 49.093735882000033 ], [ -121.988012164999972, 49.095180758000012 ], [ -121.986728492999958, 49.094792990000016 ], [ -121.98503040599995, 49.094770202000092 ], [ -121.983846296999985, 49.0950195080001 ], [ -121.982738504999986, 49.09562190300003 ], [ -121.982498403999926, 49.095251593000036 ], [ -121.982294107999934, 49.095258704000045 ], [ -121.98202918799997, 49.09541829700013 ], [ -121.981789198999977, 49.095838405000073 ], [ -121.9816503119999, 49.095918197000046 ], [ -121.980723697999935, 49.095703108000087 ], [ -121.980379396999979, 49.09571879300011 ], [ -121.979417086999959, 49.095960895000061 ], [ -121.978839894999936, 49.096027807000056 ], [ -121.978453199999976, 49.096187285000099 ], [ -121.977549309, 49.096160306000051 ], [ -121.976649004999913, 49.09591958400005 ], [ -121.976125107999948, 49.095438187000084 ], [ -121.976068809999973, 49.095517995000094 ], [ -121.9764022909999, 49.095979413000045 ], [ -121.976124092999939, 49.096122484000048 ], [ -121.976117968, 49.09612243000003 ], [ -121.976117901999956, 49.096125668000056 ], [ -121.975696101999958, 49.096342588000049 ], [ -121.975369770999947, 49.096385661000113 ], [ -121.975192451999945, 49.096384087000089 ], [ -121.975190267999935, 49.096409354000045 ], [ -121.973785904999943, 49.096594702000061 ], [ -121.971199487999968, 49.097148710000042 ], [ -121.971078994999957, 49.097084589000133 ], [ -121.97036658699993, 49.097031892000089 ], [ -121.967512090999975, 49.097295394000028 ], [ -121.966926613999973, 49.097110194000038 ], [ -121.964760187999957, 49.097234099000048 ], [ -121.964391816999949, 49.097177202000069 ], [ -121.964211296999949, 49.097085486000076 ], [ -121.964119795000016, 49.097038998000073 ], [ -121.964025791999958, 49.097003415000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.897373988501488", "sL_AssetLoss": "8366.3", "sL_BldgLoss": "7507.7", "sL_StrLoss": "5678.7", "sL_NStrLoss": "1829", "sL_ContLoss": "858.6", "geom_point": "0101000020E6100000B7FEA72C147F5EC01D131030468C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.986476804999967, 49.096329801000088 ], [ -121.98609659200001, 49.096208695 ], [ -121.985061581999958, 49.096569002000095 ], [ -121.984117719999958, 49.096543401000055 ], [ -121.982702692999965, 49.096053512000012 ], [ -121.983922408999945, 49.095300003000112 ], [ -121.985502589999967, 49.095097795000136 ], [ -121.986434093999989, 49.095114911000117 ], [ -121.986828400999926, 49.095190406000029 ], [ -121.987481705, 49.095429697000071 ], [ -121.987694485999938, 49.095747289000059 ], [ -121.987512419999987, 49.095979404000111 ], [ -121.988111153999967, 49.096006562000134 ], [ -121.988165313999971, 49.096458342000105 ], [ -121.988029043999987, 49.096453253000014 ], [ -121.98802554299999, 49.096625433000042 ], [ -121.987771020999944, 49.096701501000062 ], [ -121.986322317999978, 49.096544803000064 ], [ -121.986476804999967, 49.096329801000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.981772575250836", "sL_AssetLoss": "598", "sL_BldgLoss": "587.1", "sL_StrLoss": "521", "sL_NStrLoss": "66.1", "sL_ContLoss": "10.9", "geom_point": "0101000020E61000002221E3B4D47E5EC0A0C5CEEBBA8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.981364338999981, 49.082116144000125 ], [ -121.983205451999964, 49.082075813000046 ], [ -121.983183152000024, 49.082334288000077 ], [ -121.982253198999928, 49.082299506 ], [ -121.981952092999961, 49.085788608000058 ], [ -121.979446405999965, 49.085694847000127 ], [ -121.979446373999963, 49.085681824000034 ], [ -121.981149483999928, 49.08570176500011 ], [ -121.981364338999981, 49.082116144000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.862082514734774", "sL_AssetLoss": "2545", "sL_BldgLoss": "2194", "sL_StrLoss": "1530", "sL_NStrLoss": "664", "sL_ContLoss": "351", "geom_point": "0101000020E61000004B0237FFED845EC079EBDBCDFC8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.0779787099999, 49.102951627000074 ], [ -122.077981529999988, 49.102918152000051 ], [ -122.07794867299999, 49.102917890000057 ], [ -122.07790194099999, 49.102865400000077 ], [ -122.075970991999924, 49.100696403000015 ], [ -122.075493050999938, 49.100253413000061 ], [ -122.075494049999989, 49.100199569000047 ], [ -122.075434443999882, 49.100199092000075 ], [ -122.075089017999971, 49.099878919000083 ], [ -122.075098163999897, 49.099386792000104 ], [ -122.074687240999936, 49.09938349800008 ], [ -122.074701930999964, 49.098593368000095 ], [ -122.07546238299993, 49.099401129000057 ], [ -122.076009881999966, 49.099982659000027 ], [ -122.077093292999976, 49.101133339000043 ], [ -122.077394962999961, 49.101453740000075 ], [ -122.077638607000026, 49.10171252300006 ], [ -122.078397792999951, 49.102518789000108 ], [ -122.07846962899994, 49.102600338000087 ], [ -122.078497120999927, 49.102631226000099 ], [ -122.07955186399991, 49.103816445000064 ], [ -122.078721709999954, 49.103786156000112 ], [ -122.0779787099999, 49.102951627000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.964718211457848", "sL_AssetLoss": "1717.6", "sL_BldgLoss": "1657", "sL_StrLoss": "1378", "sL_NStrLoss": "279", "sL_ContLoss": "60.6", "geom_point": "0101000020E61000002A1F619C287F5EC00D141D6E2C8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.98528701499994, 49.078292416000117 ], [ -121.988716247999889, 49.078305511000046 ], [ -121.988506080999969, 49.080745065000059 ], [ -121.985043246999936, 49.080615670000029 ], [ -121.98508827699996, 49.078292349000016 ], [ -121.98528701499994, 49.078292416000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.853658536585366", "sL_AssetLoss": "3280", "sL_BldgLoss": "2800", "sL_StrLoss": "1680", "sL_NStrLoss": "1120", "sL_ContLoss": "480", "geom_point": "0101000020E61000009128F6C88D845EC004D1CDDD328C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.07185906799999, 49.096771077000064 ], [ -122.071866131999954, 49.096392292000111 ], [ -122.071513827999951, 49.096389459000058 ], [ -122.071456408999936, 49.096325988000061 ], [ -122.071465300999947, 49.095849330000064 ], [ -122.071054406999963, 49.095846024000068 ], [ -122.071059441999964, 49.095576196000103 ], [ -122.070812084999943, 49.095574205000091 ], [ -122.070652297, 49.095372260000062 ], [ -122.070658626999943, 49.095033231000059 ], [ -122.070382286999944, 49.09503100600007 ], [ -122.070250823999956, 49.0948648540001 ], [ -122.07025278, 49.094760094 ], [ -122.070167391999945, 49.09475940600003 ], [ -122.069849358999974, 49.094357446000174 ], [ -122.069851979999925, 49.0942171270001 ], [ -122.069737607999969, 49.094216205000045 ], [ -122.069521293999912, 49.093942798000057 ], [ -122.06944759699995, 49.093866260000055 ], [ -122.069456230999947, 49.093404330000112 ], [ -122.06982032399999, 49.09340726500006 ], [ -122.073089910999954, 49.096880952000092 ], [ -122.073088775999935, 49.096941854000114 ], [ -122.072005694999973, 49.09693315099999 ], [ -122.07185906799999, 49.096771077000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.979930741382024", "sL_AssetLoss": "2541.2", "sL_BldgLoss": "2490.2", "sL_StrLoss": "2183", "sL_NStrLoss": "307.2", "sL_ContLoss": "51", "geom_point": "0101000020E61000004B6BBA3BBE7F5EC032695BE6578A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.993390393999931, 49.080685381000102 ], [ -121.993551275999948, 49.078815640000109 ], [ -121.996373890999934, 49.078920901000082 ], [ -121.996391948999957, 49.079075179000021 ], [ -121.997720523999959, 49.079080425000051 ], [ -121.997782518999912, 49.079885723000082 ], [ -121.998936684999961, 49.07988805500004 ], [ -121.998795064999968, 49.081536134000025 ], [ -121.998702399999971, 49.082614416000048 ], [ -121.993241911999974, 49.08241085200013 ], [ -121.993390393999931, 49.080685381000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41042250", "BldgCostT": "28305000", "sL_LossRatio": "0.899873836442098", "sL_AssetLoss": "134587.2", "sL_BldgLoss": "121111.5", "sL_StrLoss": "84402.5", "sL_NStrLoss": "36709", "sL_ContLoss": "13475.7", "geom_point": "0101000020E6100000AE37FFE9E5805EC0C57A9BE5CF8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.004601523999909, 49.097582728000091 ], [ -122.0047250199999, 49.096144016000025 ], [ -122.001604772999954, 49.096027940000035 ], [ -122.00186326699999, 49.093018595000032 ], [ -121.999711672999979, 49.092938500000081 ], [ -121.999567398999929, 49.09461726000012 ], [ -121.9990518769999, 49.094598063000049 ], [ -121.99899750899999, 49.095230572000098 ], [ -121.99652819399995, 49.095138585000036 ], [ -121.996441455, 49.096147030000118 ], [ -121.996163159999981, 49.096136659000102 ], [ -121.996180412999962, 49.096098990000065 ], [ -121.996080407999941, 49.095675995000036 ], [ -121.995850189999928, 49.095547892000063 ], [ -121.993694906999963, 49.095033707000049 ], [ -121.992818093999958, 49.095045096000071 ], [ -121.99214322099999, 49.095210300000119 ], [ -121.99149109699998, 49.095023803000075 ], [ -121.990287912999989, 49.095490899000076 ], [ -121.988416486999981, 49.095302890000013 ], [ -121.988012164999972, 49.095180758000012 ], [ -121.98783897099996, 49.093735882000033 ], [ -121.987592340999953, 49.091678025000085 ], [ -121.98843464, 49.091709480000112 ], [ -121.988472594999962, 49.091269054000087 ], [ -121.989324907999929, 49.091300878000069 ], [ -121.989337865999971, 49.091150475000092 ], [ -121.98965317599999, 49.091162246000074 ], [ -121.989698489999967, 49.090636238000116 ], [ -121.989722694999941, 49.090355282000111 ], [ -121.990462507999965, 49.090382897000076 ], [ -121.992409821999928, 49.090455562000017 ], [ -121.992476241999924, 49.089684028000065 ], [ -121.992483024999942, 49.089605246000076 ], [ -121.992684341999947, 49.089612756000101 ], [ -121.997282218999985, 49.089784176000073 ], [ -121.997328746, 49.089243061000055 ], [ -122.002790051999966, 49.089446415000062 ], [ -122.002692055999958, 49.090587673000087 ], [ -122.002531636999919, 49.092455780000122 ], [ -122.002847189999954, 49.092467521000046 ], [ -122.002914683999975, 49.091681502000078 ], [ -122.003459745999947, 49.091701780000086 ], [ -122.003504858999946, 49.091176308000087 ], [ -122.003249233999966, 49.091166797000099 ], [ -122.003303087999939, 49.090539557000106 ], [ -122.003557885999953, 49.087571605000093 ], [ -122.004228305999959, 49.087596546000086 ], [ -122.004235861000012, 49.087508521000103 ], [ -122.006946127999981, 49.087609303000072 ], [ -122.007043202999952, 49.086477486000014 ], [ -122.007043493999944, 49.086477496000036 ], [ -122.006927764999944, 49.089160302000018 ], [ -122.010506392999957, 49.089292912000118 ], [ -122.016956431999972, 49.089351893000099 ], [ -122.017894000999931, 49.089234908000066 ], [ -122.018003115999974, 49.089320093000062 ], [ -122.022081652999987, 49.089319453000066 ], [ -122.023520835999989, 49.089319187000058 ], [ -122.026890001999988, 49.089318475000013 ], [ -122.028957910999964, 49.089317997000087 ], [ -122.030707104999976, 49.089316910000022 ], [ -122.038541499999965, 49.089316603000043 ], [ -122.039025685999945, 49.089319496000073 ], [ -122.041602760999965, 49.088380459000099 ], [ -122.042828987999926, 49.087889479000069 ], [ -122.045531702999938, 49.087888096 ], [ -122.048072298999955, 49.087887792000068 ], [ -122.048153749999955, 49.087883833000078 ], [ -122.048317014999924, 49.087875817000047 ], [ -122.048660912999964, 49.087858984000071 ], [ -122.049258501999986, 49.087789904000033 ], [ -122.049988099999922, 49.087664404000066 ], [ -122.052200799999952, 49.087171395000063 ], [ -122.052390269999961, 49.087137657000063 ], [ -122.053292299999953, 49.086977001000072 ], [ -122.054420204999943, 49.086839996000066 ], [ -122.054706487999965, 49.086819407000057 ], [ -122.05540808399995, 49.086768895000027 ], [ -122.056627196999983, 49.086767711000029 ], [ -122.056842773999961, 49.086778759 ], [ -122.05684189699997, 49.086825081 ], [ -122.056431078999935, 49.086821724000089 ], [ -122.056420851999974, 49.087361379000065 ], [ -122.05541587099999, 49.087353160000056 ], [ -122.055402976999943, 49.087505345000103 ], [ -122.053862990999974, 49.08760929700005 ], [ -122.052486408999968, 49.087985293000031 ], [ -122.051621457999914, 49.088442012000073 ], [ -122.049827328999953, 49.088376054000044 ], [ -122.049827122999957, 49.088386767000067 ], [ -122.049416295999947, 49.088383384000167 ], [ -122.049406328, 49.088905428000018 ], [ -122.0493147, 49.088922286000106 ], [ -122.048425497999972, 49.088914959000078 ], [ -122.048410759999967, 49.08908859000006 ], [ -122.047076787999956, 49.089333995000054 ], [ -122.043500794999915, 49.090160090000033 ], [ -122.042831483999933, 49.090273579000041 ], [ -122.043019581999928, 49.088060657 ], [ -122.042437401999933, 49.088055828000073 ], [ -122.042432212999984, 49.088325655000084 ], [ -122.042021386999963, 49.088322245000072 ], [ -122.04201619399997, 49.088592073 ], [ -122.041605364999967, 49.088588662000042 ], [ -122.041584587999978, 49.089667968000107 ], [ -122.039845606999918, 49.089653515000094 ], [ -122.039740694999935, 49.090886761000064 ], [ -122.039347692999968, 49.090943409000076 ], [ -122.038466792999927, 49.09116980000006 ], [ -122.03785091599994, 49.091174093000078 ], [ -122.036839583999978, 49.091057298000109 ], [ -122.036688595999948, 49.09111 ], [ -122.036324585999978, 49.091494593000085 ], [ -122.035808164999978, 49.091763156000091 ], [ -122.032172713999955, 49.091628947000046 ], [ -122.031934605999965, 49.094422285000057 ], [ -122.030932445999966, 49.094385266000081 ], [ -122.030929064999924, 49.094424909000047 ], [ -122.030845234999944, 49.09442181200005 ], [ -122.030799589999944, 49.09495711000006 ], [ -122.025337515999965, 49.094755180000085 ], [ -122.025359782999956, 49.094494399000062 ], [ -122.025483842999932, 49.093041462000031 ], [ -122.024439355999931, 49.093032640000089 ], [ -122.02428411899993, 49.094850219000065 ], [ -122.024162192999938, 49.096277666000042 ], [ -122.021052355, 49.096162541000105 ], [ -122.02100019199996, 49.096772740000105 ], [ -122.015537946999956, 49.096570312000033 ], [ -122.015546924999967, 49.096465444000053 ], [ -122.014980016999957, 49.096460607000068 ], [ -122.014940352999957, 49.096923885000066 ], [ -122.010814590999942, 49.096770780000071 ], [ -122.010763705999949, 49.097364483000035 ], [ -122.010102052999912, 49.09733991500007 ], [ -122.010101696, 49.097344083000088 ], [ -122.009966998999971, 49.097198492000089 ], [ -122.009558117999958, 49.097133003000131 ], [ -122.008253716999931, 49.097273996000133 ], [ -122.006596116999987, 49.097259808000075 ], [ -122.005922993999945, 49.097370892000072 ], [ -122.005293483999978, 49.097339506000132 ], [ -122.004601523999909, 49.097582728000091 ] ], [ [ -122.011288413999978, 49.092456309000099 ], [ -122.011320917999939, 49.092076985000077 ], [ -122.010595763999973, 49.092050058000062 ], [ -122.010563253999962, 49.09242938300013 ], [ -122.011288413999978, 49.092456309000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.883467741935484", "sL_AssetLoss": "2480", "sL_BldgLoss": "2191", "sL_StrLoss": "1430", "sL_NStrLoss": "761", "sL_ContLoss": "289", "geom_point": "0101000020E61000006EF861AD2F845EC03359F51C858B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.068233854, 49.092847321000114 ], [ -122.068238763999915, 49.092584901000059 ], [ -122.067959851999944, 49.092582649000093 ], [ -122.067830376999964, 49.092449254000122 ], [ -122.067838003999938, 49.092041927000082 ], [ -122.067431843999941, 49.092038646000049 ], [ -122.067427230999968, 49.092033894000139 ], [ -122.06743219699996, 49.091768780000066 ], [ -122.067167844999986, 49.091766644000124 ], [ -122.067024091999912, 49.091618531000037 ], [ -122.067025580999925, 49.091539134000058 ], [ -122.06694413799994, 49.091536152000046 ], [ -122.066884400999967, 49.091474603000115 ], [ -122.065749474999919, 49.090538895000044 ], [ -122.064173681999975, 49.089567806000041 ], [ -122.064178043999945, 49.089516207 ], [ -122.064084389999934, 49.089512776000035 ], [ -122.063651013999916, 49.08924569500001 ], [ -122.062549086999951, 49.08873673300009 ], [ -122.062569873999934, 49.088490961000112 ], [ -122.062152029999979, 49.088487566000033 ], [ -122.062157113999959, 49.08821773800004 ], [ -122.061746283, 49.088214400000076 ], [ -122.061749821999967, 49.088026663000043 ], [ -122.061419846999939, 49.088014565000066 ], [ -122.061463266999979, 49.087501313000054 ], [ -122.061650195999931, 49.08755069900009 ], [ -122.062612608999984, 49.087862804000061 ], [ -122.063059284999937, 49.088039961000092 ], [ -122.063251289, 49.088116100000093 ], [ -122.064214206999949, 49.088552598000042 ], [ -122.065434203, 49.089237389000083 ], [ -122.066032216999986, 49.089648802000056 ], [ -122.066656015999968, 49.090127886000118 ], [ -122.0672255, 49.090649983000034 ], [ -122.068616968999933, 49.092128628000104 ], [ -122.069308470999943, 49.092863400000148 ], [ -122.068245470999969, 49.09285482500011 ], [ -122.068233854, 49.092847321000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34766751", "BldgCostT": "23240001", "sL_LossRatio": "0.800674414477268", "sL_AssetLoss": "163401", "sL_BldgLoss": "130831", "sL_StrLoss": "82674", "sL_NStrLoss": "48157", "sL_ContLoss": "32570", "geom_point": "0101000020E6100000DF1B74F0E9845EC0F1960E4A56884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078169236999898, 49.06364861300009 ], [ -122.078177566999926, 49.063549658000113 ], [ -122.076731920999976, 49.063496841000045 ], [ -122.076809554999969, 49.06257504100013 ], [ -122.075916888999942, 49.062542417000031 ], [ -122.075762329999975, 49.064377122000096 ], [ -122.07030364299996, 49.064177467 ], [ -122.070316233999932, 49.064028231000059 ], [ -122.071199786999912, 49.063506841000098 ], [ -122.072641645999965, 49.062536834000106 ], [ -122.07369625, 49.061745653000123 ], [ -122.074744166999935, 49.060655825000048 ], [ -122.074956061, 49.060362370000121 ], [ -122.07558560699999, 49.060367689000039 ], [ -122.080349695999985, 49.060357889000024 ], [ -122.080383431999962, 49.06773280000003 ], [ -122.075732787000021, 49.071164091000071 ], [ -122.075591509999967, 49.071205722000059 ], [ -122.075465983999948, 49.07124269600007 ], [ -122.075136025999939, 49.071243752000022 ], [ -122.074287316999957, 49.071246443000099 ], [ -122.073196882999966, 49.071249902000034 ], [ -122.072617326999989, 49.07125178200004 ], [ -122.071694887999953, 49.071254754000051 ], [ -122.071802177999956, 49.069982690000089 ], [ -122.075135765999946, 49.070104588000071 ], [ -122.0754037, 49.066924866000086 ], [ -122.076861547999954, 49.06697814300005 ], [ -122.077145111999954, 49.063611199000043 ], [ -122.078169236999898, 49.06364861300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130991478", "BldgCostT": "87454857", "sL_LossRatio": "0.834903968930064", "sL_AssetLoss": "527069", "sL_BldgLoss": "440052", "sL_StrLoss": "288012", "sL_NStrLoss": "152040", "sL_ContLoss": "87017", "geom_point": "0101000020E61000000FCB4D71A8835EC06FE66FC6D9894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.038677297999968, 49.080818374000053 ], [ -122.038780680999963, 49.080721306000065 ], [ -122.038884079999917, 49.080624204000102 ], [ -122.038987459999959, 49.080527137000047 ], [ -122.039090895999919, 49.080430023000048 ], [ -122.039194326999962, 49.0803329660001 ], [ -122.039297689999927, 49.08023587600006 ], [ -122.039401121999958, 49.080138762000104 ], [ -122.039504500999897, 49.08004169400008 ], [ -122.039579928999956, 49.079970857000056 ], [ -122.042018143999954, 49.080060739000032 ], [ -122.04194557799994, 49.080914430000092 ], [ -122.042371233999972, 49.080913861000091 ], [ -122.042574815999942, 49.080909169000108 ], [ -122.04257748399999, 49.080770505000082 ], [ -122.043809779999961, 49.080780720000043 ], [ -122.043859966999932, 49.078166475000089 ], [ -122.043695510999896, 49.078160416000081 ], [ -122.043696318999935, 49.078150905 ], [ -122.041600483999972, 49.078073678000031 ], [ -122.041703271999921, 49.077977138000101 ], [ -122.04180669099999, 49.077880023000027 ], [ -122.041910077, 49.077782976000023 ], [ -122.042013460999968, 49.077685871000071 ], [ -122.042116863999951, 49.077588790000021 ], [ -122.042220246999932, 49.077491685000062 ], [ -122.042323700999987, 49.077394614000056 ], [ -122.042530431999936, 49.077200418000047 ], [ -122.042633828999939, 49.077103335000082 ], [ -122.042737212, 49.077006230000023 ], [ -122.042840593999983, 49.076909184000016 ], [ -122.042944008999925, 49.076812066000109 ], [ -122.04304735399991, 49.076714973000044 ], [ -122.04315075, 49.076617892000051 ], [ -122.043254182999945, 49.076520797000079 ], [ -122.043333404999942, 49.076446402000073 ], [ -122.04349540699998, 49.076392786000071 ], [ -122.043557105000019, 49.076392396000095 ], [ -122.043474300999918, 49.076560706000102 ], [ -122.042852291999949, 49.076952500000026 ], [ -122.042877520999966, 49.077010203000015 ], [ -122.042945385999957, 49.077032605000092 ], [ -122.043103319999929, 49.077011305000021 ], [ -122.043505681999932, 49.076868395000069 ], [ -122.044445316999912, 49.07663235700003 ], [ -122.044454324999919, 49.076630098000095 ], [ -122.045135744999968, 49.076245802000059 ], [ -122.045590405999945, 49.07598940499999 ], [ -122.045588187999968, 49.076458114000054 ], [ -122.045587680999986, 49.076566536000101 ], [ -122.047922017999923, 49.075964819 ], [ -122.051319102999983, 49.075147058000013 ], [ -122.052035248999971, 49.074945811000177 ], [ -122.052802814999964, 49.074733558000013 ], [ -122.053232142999903, 49.07447450299999 ], [ -122.054830766999956, 49.07348862500001 ], [ -122.055574931999942, 49.073268576000068 ], [ -122.058096693999957, 49.072954141000011 ], [ -122.059329061999932, 49.072695212000049 ], [ -122.059623543999962, 49.072633323000062 ], [ -122.060725379999951, 49.072344761000089 ], [ -122.061344393999946, 49.072107936000037 ], [ -122.062160891999923, 49.071646434000051 ], [ -122.062735480999976, 49.071263644000119 ], [ -122.062752243999952, 49.071264259000039 ], [ -122.062448266999979, 49.074859710000069 ], [ -122.06200098, 49.07484330900008 ], [ -122.061964871999976, 49.075270321000083 ], [ -122.05911659, 49.075165837000057 ], [ -122.059115204999927, 49.075239234000094 ], [ -122.059525924999946, 49.075242581000055 ], [ -122.059520830999958, 49.075512410000087 ], [ -122.059931555999967, 49.075515756000136 ], [ -122.059926462999968, 49.075785584000052 ], [ -122.060337189, 49.075788929000055 ], [ -122.060332097999918, 49.076058758000102 ], [ -122.061975014999973, 49.076072122000028 ], [ -122.061954688999933, 49.077151436000051 ], [ -122.061543949999958, 49.077148097000091 ], [ -122.06153378499998, 49.077687755000049 ], [ -122.06030155699996, 49.077677729000122 ], [ -122.060306648, 49.077407901000115 ], [ -122.059074428999978, 49.077397861000115 ], [ -122.059069331999979, 49.077667690000055 ], [ -122.05865859, 49.077664341000101 ], [ -122.058638191999989, 49.078743653000039 ], [ -122.058227440999985, 49.078740303000124 ], [ -122.05822562799996, 49.078836178000131 ], [ -122.058836157999949, 49.078858584000116 ], [ -122.058663129999957, 49.080902817000087 ], [ -122.059641428999953, 49.080910791000115 ], [ -122.059663681999908, 49.080647830000018 ], [ -122.06024511699998, 49.080669159000095 ], [ -122.060245557999963, 49.080645841000141 ], [ -122.061477856999986, 49.080655868000086 ], [ -122.061488024999946, 49.080116211000131 ], [ -122.061648564, 49.080117517000069 ], [ -122.061645732999978, 49.080046961000072 ], [ -122.062311161999972, 49.08003724900005 ], [ -122.062324790999924, 49.079313403000086 ], [ -122.062735545999885, 49.079316739000021 ], [ -122.062740622999939, 49.079046911000098 ], [ -122.063151377999972, 49.079050245000062 ], [ -122.063156451999973, 49.078780416 ], [ -122.06414303499993, 49.07878842000013 ], [ -122.064279796999969, 49.077170310000071 ], [ -122.063186901999984, 49.077161445000108 ], [ -122.063202125999936, 49.076351958000089 ], [ -122.064434320999936, 49.076361953000088 ], [ -122.064439388999944, 49.076092124000127 ], [ -122.065260847999966, 49.076098780000066 ], [ -122.065269451999939, 49.075640354000022 ], [ -122.062818768999975, 49.075550535000076 ], [ -122.063122720999957, 49.071955086000052 ], [ -122.066158027, 49.072066324000062 ], [ -122.06616093599996, 49.071911089000068 ], [ -122.066149433999954, 49.071714561000064 ], [ -122.066140705999928, 49.071276765000093 ], [ -122.06524402399999, 49.071243912000121 ], [ -122.065273150999943, 49.070899138000065 ], [ -122.065215143999964, 49.070897012000074 ], [ -122.065242924999936, 49.070568175000027 ], [ -122.065197562999941, 49.070566513000124 ], [ -122.065223682999928, 49.070257338000062 ], [ -122.065209384, 49.070256813000114 ], [ -122.065302032999966, 49.069160126000021 ], [ -122.065692676999973, 49.068787731000029 ], [ -122.067150168999916, 49.067729166000021 ], [ -122.067984574999969, 49.067069350000097 ], [ -122.068333414999955, 49.066703754000109 ], [ -122.068699722999909, 49.066148980000023 ], [ -122.068889534999983, 49.065476814000135 ], [ -122.069018582999945, 49.065145003000048 ], [ -122.069395847999886, 49.064697735000102 ], [ -122.06979432699994, 49.064372050000038 ], [ -122.069682755999935, 49.065694364000102 ], [ -122.068899127999956, 49.065665676000059 ], [ -122.068804920999924, 49.066781903000113 ], [ -122.070972074999958, 49.066861228000064 ], [ -122.070945993999914, 49.067170406000045 ], [ -122.07096029299997, 49.067170929000085 ], [ -122.070932552999949, 49.067499769000094 ], [ -122.070977911999947, 49.067501430000071 ], [ -122.070948829, 49.067846207000073 ], [ -122.071006832999984, 49.067848329000121 ], [ -122.070719201999907, 49.071257888000048 ], [ -122.067646419999917, 49.071267699000053 ], [ -122.067645273999943, 49.07501005000011 ], [ -122.067643113999949, 49.08209090000004 ], [ -122.064959003999917, 49.08209079000008 ], [ -122.062884321999917, 49.082091410000068 ], [ -122.060828715999918, 49.082090111000042 ], [ -122.05708674600001, 49.0820876330001 ], [ -122.056578482999925, 49.082087294000054 ], [ -122.055140688999984, 49.082085904000095 ], [ -122.05243350799999, 49.082083786000119 ], [ -122.049571882999942, 49.082077801000061 ], [ -122.045576308999955, 49.082073198000039 ], [ -122.039589900999971, 49.082016811000095 ], [ -122.037879611999941, 49.081998798000093 ], [ -122.03780964399999, 49.082011910000055 ], [ -122.037305443999941, 49.082106297000045 ], [ -122.037436356999947, 49.081983396000105 ], [ -122.037539779999946, 49.081886317000077 ], [ -122.03764320499999, 49.081789239000088 ], [ -122.037849995999977, 49.08159507100001 ], [ -122.037953416999969, 49.081497993000028 ], [ -122.038056818999976, 49.08140089200009 ], [ -122.038160238999978, 49.081303813000027 ], [ -122.038263623999967, 49.081206746000056 ], [ -122.03836706, 49.081109633000068 ], [ -122.038470461999964, 49.08101253100002 ], [ -122.038573844999945, 49.080915464000043 ], [ -122.038677297999968, 49.080818374000053 ] ], [ [ -122.053280815999941, 49.079779314000021 ], [ -122.053349388999962, 49.078970267000059 ], [ -122.052761172000018, 49.078965441000058 ], [ -122.052669727999941, 49.080044171000075 ], [ -122.052862035999965, 49.080045749000057 ], [ -122.052867165999928, 49.079775921000092 ], [ -122.053280815999941, 49.079779314000021 ] ], [ [ -122.055351926999947, 49.07873067000007 ], [ -122.05536754299996, 49.077907323000055 ], [ -122.054135311999957, 49.07789723100008 ], [ -122.054138660999968, 49.077720888000044 ], [ -122.050885407999928, 49.077601311000095 ], [ -122.050961628999957, 49.076702510000089 ], [ -122.049741674999922, 49.076657643000082 ], [ -122.049641611999959, 49.077837194000033 ], [ -122.052846819999942, 49.077955042000056 ], [ -122.05282975199999, 49.078156394000061 ], [ -122.05371944299999, 49.078163691000043 ], [ -122.053709816999941, 49.078670345000027 ], [ -122.055351926999947, 49.07873067000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96259751", "BldgCostT": "64915001", "sL_LossRatio": "0.908540782811576", "sL_AssetLoss": "238821.2", "sL_BldgLoss": "216978.8", "sL_StrLoss": "168018.8", "sL_NStrLoss": "48960", "sL_ContLoss": "21842.4", "geom_point": "0101000020E61000003152EFA9DC835EC0204A0F9E64884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.04139093299996, 49.078065954000046 ], [ -122.041696553999913, 49.074470580000138 ], [ -122.04295420299999, 49.074516929000083 ], [ -122.043039054999937, 49.073518309000079 ], [ -122.043501575999969, 49.073535352000079 ], [ -122.043646720999945, 49.071826819000151 ], [ -122.04754982299994, 49.071970552000082 ], [ -122.0476006869999, 49.071371213000099 ], [ -122.048861934999962, 49.071417629000109 ], [ -122.048954488999982, 49.070326642000055 ], [ -122.051343326999984, 49.070414514 ], [ -122.05134839, 49.070354799000079 ], [ -122.05167292199999, 49.070366733000043 ], [ -122.051710698999926, 49.069921107000056 ], [ -122.052643127, 49.069955388000068 ], [ -122.052651421999926, 49.069519083000074 ], [ -122.053883446, 49.069529190000033 ], [ -122.053874491999949, 49.070000648000068 ], [ -122.054629204, 49.070028381000043 ], [ -122.054877025999986, 49.067102675000065 ], [ -122.055703648999966, 49.067133044000052 ], [ -122.055738812999934, 49.066717793000095 ], [ -122.055835419999966, 49.066721343000069 ], [ -122.055841118000018, 49.066654058000033 ], [ -122.055348447999947, 49.066635959000052 ], [ -122.055429756999928, 49.065675831000142 ], [ -122.054744287999966, 49.065650645000076 ], [ -122.055048798999962, 49.0620551640001 ], [ -122.055438427, 49.062069481000059 ], [ -122.055580967999958, 49.060386072000043 ], [ -122.056801908999944, 49.060430925000063 ], [ -122.056845943000013, 49.059910701000057 ], [ -122.057089277999978, 49.059919638000068 ], [ -122.057171783999962, 49.058944806000042 ], [ -122.05885607499999, 49.059006654000079 ], [ -122.058982089999944, 49.057517044000079 ], [ -122.064439946000022, 49.05771727799999 ], [ -122.064136187999921, 49.061312810000096 ], [ -122.063740441, 49.061298301000079 ], [ -122.063722272999939, 49.061513312000109 ], [ -122.064343160999897, 49.061518348000092 ], [ -122.06439698199992, 49.060881284000047 ], [ -122.065124353999934, 49.060907947000047 ], [ -122.065138194, 49.0607441000001 ], [ -122.06513873599999, 49.060715182000074 ], [ -122.06514063499999, 49.06071519799999 ], [ -122.06517407699999, 49.06031927500009 ], [ -122.065039290999934, 49.060314335000037 ], [ -122.065096970999974, 49.059631464000084 ], [ -122.064755023999965, 49.059618930000042 ], [ -122.065058723999982, 49.056023386000042 ], [ -122.065207778999948, 49.056028850000054 ], [ -122.065259149999974, 49.055420589000072 ], [ -122.066831821999983, 49.055478225000051 ], [ -122.066844890999931, 49.055323427000133 ], [ -122.068973194999941, 49.055401389000053 ], [ -122.068987808999964, 49.055228179000025 ], [ -122.07167752, 49.055326645000086 ], [ -122.071694703999952, 49.055122842000038 ], [ -122.0728926, 49.055166674000077 ], [ -122.0729080499999, 49.056154922000076 ], [ -122.072627494999949, 49.057942 ], [ -122.075809161999956, 49.058815600000116 ], [ -122.076046821999938, 49.058967114000112 ], [ -122.075643127999953, 49.059341801000052 ], [ -122.075194035999957, 49.059958332000072 ], [ -122.075047356999931, 49.060216952000069 ], [ -122.075042823000032, 49.060224927000064 ], [ -122.075042585999952, 49.060225354000075 ], [ -122.074995615999953, 49.060308117000083 ], [ -122.074956061, 49.060362370000121 ], [ -122.074744166999935, 49.060655825000048 ], [ -122.07369625, 49.061745653000123 ], [ -122.072641645999965, 49.062536834000106 ], [ -122.071199786999912, 49.063506841000098 ], [ -122.070316233999932, 49.064028231000059 ], [ -122.070317997999908, 49.064007322000059 ], [ -122.069826617999979, 49.063989335000016 ], [ -122.06979432699994, 49.064372050000038 ], [ -122.069395847999886, 49.064697735000102 ], [ -122.069018582999945, 49.065145003000048 ], [ -122.068889534999983, 49.065476814000135 ], [ -122.068699722999909, 49.066148980000023 ], [ -122.068333414999955, 49.066703754000109 ], [ -122.067984574999969, 49.067069350000097 ], [ -122.067150168999916, 49.067729166000021 ], [ -122.065692676999973, 49.068787731000029 ], [ -122.065302032999966, 49.069160126000021 ], [ -122.065364022999972, 49.068426340000023 ], [ -122.0648402099999, 49.068407144000076 ], [ -122.064797134999964, 49.068916972000103 ], [ -122.063753377999916, 49.068878714000128 ], [ -122.063749783999967, 49.069069909000085 ], [ -122.063665501999978, 49.069069225000071 ], [ -122.063611829999957, 49.069704298000097 ], [ -122.062916864999977, 49.069678819000117 ], [ -122.062913217999963, 49.0698727300001 ], [ -122.062816313000013, 49.069871943000123 ], [ -122.062698775999948, 49.0712622980001 ], [ -122.062735480999976, 49.071263644000119 ], [ -122.062160891999923, 49.071646434000051 ], [ -122.061344393999946, 49.072107936000037 ], [ -122.060725379999951, 49.072344761000089 ], [ -122.059623543999962, 49.072633323000062 ], [ -122.059329061999932, 49.072695212000049 ], [ -122.058096693999957, 49.072954141000011 ], [ -122.055574931999942, 49.073268576000068 ], [ -122.054830766999956, 49.07348862500001 ], [ -122.053232142999903, 49.07447450299999 ], [ -122.052802814999964, 49.074733558000013 ], [ -122.052035248999971, 49.074945811000177 ], [ -122.051319102999983, 49.075147058000013 ], [ -122.047922017999923, 49.075964819 ], [ -122.045587680999986, 49.076566536000101 ], [ -122.045588187999968, 49.076458114000054 ], [ -122.045590405999945, 49.07598940499999 ], [ -122.045135744999968, 49.076245802000059 ], [ -122.044454324999919, 49.076630098000095 ], [ -122.044445316999912, 49.07663235700003 ], [ -122.043505681999932, 49.076868395000069 ], [ -122.043103319999929, 49.077011305000021 ], [ -122.042945385999957, 49.077032605000092 ], [ -122.042877520999966, 49.077010203000015 ], [ -122.042852291999949, 49.076952500000026 ], [ -122.043474300999918, 49.076560706000102 ], [ -122.043557105000019, 49.076392396000095 ], [ -122.04349540699998, 49.076392786000071 ], [ -122.043333404999942, 49.076446402000073 ], [ -122.043254182999945, 49.076520797000079 ], [ -122.04315075, 49.076617892000051 ], [ -122.04304735399991, 49.076714973000044 ], [ -122.042944008999925, 49.076812066000109 ], [ -122.042840593999983, 49.076909184000016 ], [ -122.042737212, 49.077006230000023 ], [ -122.042633828999939, 49.077103335000082 ], [ -122.042530431999936, 49.077200418000047 ], [ -122.042323700999987, 49.077394614000056 ], [ -122.042220246999932, 49.077491685000062 ], [ -122.042116863999951, 49.077588790000021 ], [ -122.042013460999968, 49.077685871000071 ], [ -122.041910077, 49.077782976000023 ], [ -122.04180669099999, 49.077880023000027 ], [ -122.041703271999921, 49.077977138000101 ], [ -122.041600483999972, 49.078073678000031 ], [ -122.04139093299996, 49.078065954000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9980833", "BldgCostT": "6883333", "sL_LossRatio": "0.893731143144485", "sL_AssetLoss": "29830", "sL_BldgLoss": "26660", "sL_StrLoss": "19340", "sL_NStrLoss": "7320", "sL_ContLoss": "3170", "geom_point": "0101000020E610000058CAAE8B0D825EC0F54CED14C48A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.036557768, 49.079859373000041 ], [ -122.039579928999956, 49.079970857000056 ], [ -122.039504500999897, 49.08004169400008 ], [ -122.039401121999958, 49.080138762000104 ], [ -122.039297689999927, 49.08023587600006 ], [ -122.039194326999962, 49.0803329660001 ], [ -122.039090895999919, 49.080430023000048 ], [ -122.038987459999959, 49.080527137000047 ], [ -122.038884079999917, 49.080624204000102 ], [ -122.038780680999963, 49.080721306000065 ], [ -122.038677297999968, 49.080818374000053 ], [ -122.038573844999945, 49.080915464000043 ], [ -122.038470461999964, 49.08101253100002 ], [ -122.03836706, 49.081109633000068 ], [ -122.038263623999967, 49.081206746000056 ], [ -122.038160238999978, 49.081303813000027 ], [ -122.038056818999976, 49.08140089200009 ], [ -122.037953416999969, 49.081497993000028 ], [ -122.037849995999977, 49.08159507100001 ], [ -122.03764320499999, 49.081789239000088 ], [ -122.037539779999946, 49.081886317000077 ], [ -122.037436356999947, 49.081983396000105 ], [ -122.037305443999941, 49.082106297000045 ], [ -122.037220001999955, 49.0821222880001 ], [ -122.036584700999924, 49.082298093000063 ], [ -122.035929071999973, 49.082430396000063 ], [ -122.035734712999954, 49.082469594000045 ], [ -122.034581918999947, 49.08254609700009 ], [ -122.031736485999915, 49.083184889000051 ], [ -122.031715611999971, 49.08746999800011 ], [ -122.031709924999959, 49.088638904000085 ], [ -122.030707104999976, 49.089316910000022 ], [ -122.028957910999964, 49.089317997000087 ], [ -122.0289196799999, 49.086609609000057 ], [ -122.028887120999968, 49.084302687000033 ], [ -122.029002921999947, 49.082396100000061 ], [ -122.029645339999888, 49.082419849000097 ], [ -122.029652410999987, 49.082336915000091 ], [ -122.029718230999919, 49.082339348000062 ], [ -122.029782346999937, 49.081587416000112 ], [ -122.031275373999947, 49.081642595000083 ], [ -122.031312105999916, 49.081211651000039 ], [ -122.036426582999951, 49.081400514000073 ], [ -122.036557768, 49.079859373000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364164750", "BldgCostT": "249435000", "sL_LossRatio": "0.857136122346995", "sL_AssetLoss": "742413", "sL_BldgLoss": "636349", "sL_StrLoss": "387292", "sL_NStrLoss": "249057", "sL_ContLoss": "106064", "geom_point": "0101000020E61000004C608DF5457D5EC041842CC909904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95463330699998, 49.124896787000075 ], [ -121.954619864999984, 49.122813490000077 ], [ -121.956264212999898, 49.122819438000136 ], [ -121.957754613999938, 49.122830416000106 ], [ -121.957986288000015, 49.122924794000056 ], [ -121.958382155999956, 49.123085746000136 ], [ -121.958674356999936, 49.122925413000097 ], [ -121.959047195000011, 49.122814999000084 ], [ -121.959838934999965, 49.122805092000114 ], [ -121.959864726999939, 49.123423678000066 ], [ -121.960403338999967, 49.124877491000056 ], [ -121.960261440999943, 49.126076770000061 ], [ -121.960068310999986, 49.127708811000062 ], [ -121.957491970999939, 49.127721058000155 ], [ -121.956484730999946, 49.127725829000084 ], [ -121.956471014999963, 49.127725903000062 ], [ -121.95492229599995, 49.127721700000038 ], [ -121.954757992999959, 49.127687606000073 ], [ -121.95467150099995, 49.127578898000102 ], [ -121.95464802, 49.126855804000058 ], [ -121.954640582999971, 49.125727505000071 ], [ -121.95463330699998, 49.124896787000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143700583", "BldgCostT": "98368333", "sL_LossRatio": "0.891238080038303", "sL_AssetLoss": "426071", "sL_BldgLoss": "379730.7", "sL_StrLoss": "271231.7", "sL_NStrLoss": "108499", "sL_ContLoss": "46340.3", "geom_point": "0101000020E610000096A1F9B5987C5EC0CE1E8913EF8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93836569299998, 49.124398909000021 ], [ -121.938557167999974, 49.123052455000085 ], [ -121.94365980799995, 49.123643001000097 ], [ -121.943804317999948, 49.123605192000042 ], [ -121.945541216999985, 49.123603094000032 ], [ -121.945835691999918, 49.123574488000017 ], [ -121.946527302, 49.123455403000023 ], [ -121.94704488799999, 49.123304495000113 ], [ -121.947633516999986, 49.123255898000103 ], [ -121.947704895, 49.123250003000066 ], [ -121.948141852999953, 49.123248984000099 ], [ -121.949122486999954, 49.123246703000049 ], [ -121.949581894999966, 49.123244116000059 ], [ -121.95003281299995, 49.123276398000087 ], [ -121.950315220999954, 49.123339400000091 ], [ -121.950582200999918, 49.12293381100006 ], [ -121.950681881999969, 49.122859103000039 ], [ -121.95079769699997, 49.122820206000078 ], [ -121.953464116999939, 49.122816007000033 ], [ -121.954619864999984, 49.122813490000077 ], [ -121.95463330699998, 49.124896787000075 ], [ -121.954640582999971, 49.125727505000071 ], [ -121.951631885999944, 49.12575578900001 ], [ -121.950446013999965, 49.125757993000079 ], [ -121.948718914999972, 49.125756107000079 ], [ -121.948058103999969, 49.125756412000079 ], [ -121.94372629599999, 49.125757191000083 ], [ -121.942229318999949, 49.125757498000056 ], [ -121.940264815999953, 49.125758192000077 ], [ -121.939892261999944, 49.125757352000051 ], [ -121.93826111199999, 49.125753700000111 ], [ -121.938261, 49.125472397000053 ], [ -121.93836569299998, 49.124398909000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143614834", "BldgCostT": "97578334", "sL_LossRatio": "0.845126844723038", "sL_AssetLoss": "358339.7", "sL_BldgLoss": "302842.5", "sL_StrLoss": "183472.5", "sL_NStrLoss": "119370", "sL_ContLoss": "55497.2", "geom_point": "0101000020E61000006FF68B02D27C5EC0CAD644B0BB8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.938857430999974, 49.118358232000055 ], [ -121.938536106999948, 49.116826755000027 ], [ -121.938552964999985, 49.116680414000079 ], [ -121.938637289999946, 49.116499644000065 ], [ -121.939179731999928, 49.115890777000097 ], [ -121.940412060999961, 49.114207904000047 ], [ -121.940451808999967, 49.114062392000058 ], [ -121.940542932999989, 49.113728664000028 ], [ -121.940799275999964, 49.112926825000145 ], [ -121.940951163999955, 49.112741407000094 ], [ -121.941038821999939, 49.112678888000104 ], [ -121.941697960999988, 49.112270964000096 ], [ -121.941963523999945, 49.112180025000029 ], [ -121.942919013999955, 49.11198797100014 ], [ -121.943150429, 49.111895706000062 ], [ -121.943338627999978, 49.111764861000061 ], [ -121.943452672999939, 49.111604153000023 ], [ -121.943482692999964, 49.111291485 ], [ -121.949311159999965, 49.111295611000038 ], [ -121.949535092999966, 49.111295771000087 ], [ -121.951400381999917, 49.111297012000065 ], [ -121.953561116999964, 49.111297180000072 ], [ -121.953615903999918, 49.111297165000096 ], [ -121.954424013999969, 49.111297236000098 ], [ -121.95444388699994, 49.111297229000094 ], [ -121.956177819999965, 49.111297324000056 ], [ -121.957926131999955, 49.111297379000128 ], [ -121.96199207699999, 49.111281613000116 ], [ -121.96209761099999, 49.112626369000061 ], [ -121.96135301399994, 49.112662209000042 ], [ -121.961286881999939, 49.112608033000114 ], [ -121.960631953999922, 49.112603743000115 ], [ -121.960041254999936, 49.112603245000088 ], [ -121.959935315999985, 49.112603158000049 ], [ -121.959729927999902, 49.112604871000087 ], [ -121.959382880999954, 49.112607729000054 ], [ -121.959311643999982, 49.112608597000147 ], [ -121.957683528999922, 49.112616236000108 ], [ -121.957682522999946, 49.112621886000035 ], [ -121.957669286999959, 49.112693869000083 ], [ -121.957642779999929, 49.112837845000051 ], [ -121.957505296, 49.113585289000099 ], [ -121.957479704999969, 49.113913777000043 ], [ -121.957462175999979, 49.114139221000059 ], [ -121.957453911999963, 49.114245278000084 ], [ -121.957432884999974, 49.114514919000094 ], [ -121.957411241999949, 49.114792851000111 ], [ -121.95738588499999, 49.11511820100003 ], [ -121.957388228999918, 49.115138694000102 ], [ -121.957402403999964, 49.115263544000086 ], [ -121.957788890999907, 49.11524242600008 ], [ -121.961793378999971, 49.114980243000026 ], [ -121.961988758999951, 49.114967425000017 ], [ -121.962323333999962, 49.118403367000099 ], [ -121.960873856999939, 49.118400621000028 ], [ -121.958558996999926, 49.118415491000043 ], [ -121.957956320999955, 49.118490209000072 ], [ -121.953964566999943, 49.118500900000079 ], [ -121.953980029, 49.118323131000068 ], [ -121.952637305999957, 49.118310956000066 ], [ -121.952633231000021, 49.118504433000105 ], [ -121.938938887999953, 49.118539814 ], [ -121.938857430999974, 49.118358232000055 ] ], [ [ -121.95433828799996, 49.115627682000138 ], [ -121.954349630999928, 49.115088046000047 ], [ -121.953938593999951, 49.115084322000058 ], [ -121.953943588, 49.114846825000058 ], [ -121.95340800299999, 49.114856760000123 ], [ -121.953405537000023, 49.114885106 ], [ -121.952901939999947, 49.114866144000089 ], [ -121.952162032999979, 49.114879862000095 ], [ -121.952107902999984, 49.114836244000031 ], [ -121.950245266999929, 49.11476607900007 ], [ -121.950244953999942, 49.114780922000087 ], [ -121.94901185, 49.114769703000093 ], [ -121.94900615, 49.115039520000025 ], [ -121.948595114999961, 49.115035777000088 ], [ -121.94857800399997, 49.11584523 ], [ -121.948989047999987, 49.115848973000062 ], [ -121.948983345999949, 49.116118791000098 ], [ -121.950216482999934, 49.116130011000038 ], [ -121.950222177999976, 49.115860194000085 ], [ -121.952688439999932, 49.115882595000066 ], [ -121.95269412, 49.11561277800007 ], [ -121.95433828799996, 49.115627682000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3113206", "BldgCostT": "2147039", "sL_LossRatio": "0.765574126329499", "sL_AssetLoss": "4607", "sL_BldgLoss": "3527", "sL_StrLoss": "677", "sL_NStrLoss": "2850", "sL_ContLoss": "1080", "geom_point": "0101000020E61000000AFE8E136C7D5EC02C429878938E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.959729927999902, 49.112604871000087 ], [ -121.959935315999985, 49.112603158000049 ], [ -121.960041254999936, 49.112603245000088 ], [ -121.960631953999922, 49.112603743000115 ], [ -121.961286881999939, 49.112608033000114 ], [ -121.96135301399994, 49.112662209000042 ], [ -121.96209761099999, 49.112626369000061 ], [ -121.961988758999951, 49.114967425000017 ], [ -121.961793378999971, 49.114980243000026 ], [ -121.957788890999907, 49.11524242600008 ], [ -121.957402403999964, 49.115263544000086 ], [ -121.957388228999918, 49.115138694000102 ], [ -121.95738588499999, 49.11511820100003 ], [ -121.957411241999949, 49.114792851000111 ], [ -121.957432884999974, 49.114514919000094 ], [ -121.957453911999963, 49.114245278000084 ], [ -121.957462175999979, 49.114139221000059 ], [ -121.957479704999969, 49.113913777000043 ], [ -121.957505296, 49.113585289000099 ], [ -121.957642779999929, 49.112837845000051 ], [ -121.957669286999959, 49.112693869000083 ], [ -121.957682522999946, 49.112621886000035 ], [ -121.957683528999922, 49.112616236000108 ], [ -121.959311643999982, 49.112608597000147 ], [ -121.959382880999954, 49.112607729000054 ], [ -121.959729927999902, 49.112604871000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4910667", "BldgCostT": "3386667", "sL_LossRatio": "0.872972972972973", "sL_AssetLoss": "10360", "sL_BldgLoss": "9044", "sL_StrLoss": "3553", "sL_NStrLoss": "5491", "sL_ContLoss": "1316", "geom_point": "0101000020E61000008F0CC55F0B7F5EC0A31673A558954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.985097205, 49.165206959000102 ], [ -121.985513113999929, 49.166224222000025 ], [ -121.987097619999972, 49.167633740000049 ], [ -121.983849202999949, 49.167647376000076 ], [ -121.984015853999892, 49.165719065000083 ], [ -121.984736671999954, 49.16574596300012 ], [ -121.984784251999884, 49.165195283000052 ], [ -121.985097205, 49.165206959000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62596500", "BldgCostT": "43170000", "sL_LossRatio": "0.868226866961029", "sL_AssetLoss": "166688", "sL_BldgLoss": "144723", "sL_StrLoss": "65440", "sL_NStrLoss": "79283", "sL_ContLoss": "21965", "geom_point": "0101000020E6100000A7B9707B9D7E5EC0AC86CCAEDE944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.972565861999939, 49.167497743000041 ], [ -121.973059091999971, 49.166841815000069 ], [ -121.973720366999956, 49.167031540000053 ], [ -121.97373984499994, 49.167031497000046 ], [ -121.97467819, 49.167029498000019 ], [ -121.975280240999922, 49.166209043 ], [ -121.97564581099999, 49.165710601000043 ], [ -121.976428759999948, 49.165335722000066 ], [ -121.975325413999911, 49.164863775000114 ], [ -121.974997350999942, 49.164770369000053 ], [ -121.97425447799999, 49.164635280000041 ], [ -121.974388031999965, 49.164175985000035 ], [ -121.97444596699998, 49.162809986000077 ], [ -121.975210475999972, 49.161427402000058 ], [ -121.976429348999915, 49.160362350000085 ], [ -121.978009046999958, 49.159463259000091 ], [ -121.979165886999908, 49.159008197000063 ], [ -121.979474112, 49.158934101000106 ], [ -121.980100075999971, 49.158880796000147 ], [ -121.98048570499995, 49.158894289000074 ], [ -121.981012093999979, 49.158946414000113 ], [ -121.98156609499992, 49.158932906000068 ], [ -121.982364449999963, 49.158912762000107 ], [ -121.98247340899999, 49.158910001000031 ], [ -121.983467187999935, 49.15895069400009 ], [ -121.984393149999931, 49.159104725000049 ], [ -121.984498904999938, 49.159749789000145 ], [ -121.98444091099999, 49.159883689000075 ], [ -121.984788809999955, 49.159941839000062 ], [ -121.984479337, 49.160307022000048 ], [ -121.984217335999958, 49.160729225000061 ], [ -121.98244868099999, 49.160663201000034 ], [ -121.982411278999948, 49.161095876000068 ], [ -121.982201493999952, 49.16108804400006 ], [ -121.982024476999953, 49.163135580000045 ], [ -121.978694098999981, 49.16301117000004 ], [ -121.978572112999984, 49.164420896000109 ], [ -121.978825613999931, 49.164423139000114 ], [ -121.978808966999964, 49.165232592000073 ], [ -121.979631878999939, 49.165239867 ], [ -121.979615243999945, 49.166049321000116 ], [ -121.97879231899999, 49.166042046000072 ], [ -121.978786768999953, 49.166311863000047 ], [ -121.97919823499997, 49.166315502 ], [ -121.979187139999937, 49.166855138000123 ], [ -121.97959861, 49.166858774000062 ], [ -121.979593063999971, 49.167128593000072 ], [ -121.980004535999967, 49.167132227000074 ], [ -121.979998992999967, 49.167402045000074 ], [ -121.980821940999988, 49.167409312000103 ], [ -121.980816793999978, 49.167660017000117 ], [ -121.980065697999976, 49.167663137000062 ], [ -121.978369072999953, 49.167772472000081 ], [ -121.973087675, 49.167888718000043 ], [ -121.972251409999956, 49.167922904000122 ], [ -121.972305615, 49.16784962100003 ], [ -121.972565861999939, 49.167497743000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1615000", "BldgCostT": "850000", "sL_LossRatio": "0.794448612153038", "sL_AssetLoss": "13330", "sL_BldgLoss": "10590", "sL_StrLoss": "8130", "sL_NStrLoss": "2460", "sL_ContLoss": "2740", "geom_point": "0101000020E610000046ED7E15607E5EC0EDCE5EA63B954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.974107067999952, 49.165307763000015 ], [ -121.97425447799999, 49.164635280000041 ], [ -121.974997350999942, 49.164770369000053 ], [ -121.975325413999911, 49.164863775000114 ], [ -121.976428759999948, 49.165335722000066 ], [ -121.97564581099999, 49.165710601000043 ], [ -121.975280240999922, 49.166209043 ], [ -121.97467819, 49.167029498000019 ], [ -121.97373984499994, 49.167031497000046 ], [ -121.973720366999956, 49.167031540000053 ], [ -121.973059091999971, 49.166841815000069 ], [ -121.97401999799996, 49.165520876000052 ], [ -121.974107067999952, 49.165307763000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.880584192439863", "sL_AssetLoss": "2328", "sL_BldgLoss": "2050", "sL_StrLoss": "1340", "sL_NStrLoss": "710", "sL_ContLoss": "278", "geom_point": "0101000020E61000002E4F100A04D15EC076359AD8D3B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.265785004999955, 49.381009166000077 ], [ -123.266391204999948, 49.381007771000093 ], [ -123.266395581999916, 49.381817314000095 ], [ -123.265155613999966, 49.381820164 ], [ -123.265154216999917, 49.381560511 ], [ -123.265191094, 49.381544003000023 ], [ -123.265413140999939, 49.381398336000053 ], [ -123.265683454999973, 49.381135911000086 ], [ -123.265785004999955, 49.381009166000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197489008", "BldgCostT": "124235784", "sL_LossRatio": "0.680661925801905", "sL_AssetLoss": "683279", "sL_BldgLoss": "465082", "sL_StrLoss": "195082", "sL_NStrLoss": "270000", "sL_ContLoss": "218197", "geom_point": "0101000020E6100000777CDDB714D05EC057D9141BB5B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.24813462899999, 49.398171622000049 ], [ -123.250273672999953, 49.395862189000049 ], [ -123.250746194999977, 49.395189808000076 ], [ -123.251681246999965, 49.394533262000124 ], [ -123.252065649999977, 49.394532426000119 ], [ -123.252082331999972, 49.394251633000081 ], [ -123.253693112999912, 49.393120544000055 ], [ -123.25451929899998, 49.392313937000033 ], [ -123.255058871999921, 49.391647763 ], [ -123.255483783999949, 49.390870598000042 ], [ -123.255665532999927, 49.390244858000109 ], [ -123.255704791999975, 49.389685827000051 ], [ -123.255727689999929, 49.389359445000039 ], [ -123.255831525999923, 49.38883979200012 ], [ -123.255925768999973, 49.388672668000062 ], [ -123.256011867999959, 49.388514014000044 ], [ -123.256217148999923, 49.388144480000108 ], [ -123.256818263999932, 49.387505852000089 ], [ -123.256918708999976, 49.387505629000039 ], [ -123.256918155999969, 49.387399724000019 ], [ -123.257035887999919, 49.38727464099999 ], [ -123.257749902999976, 49.386533381000049 ], [ -123.257855030999963, 49.386424143000092 ], [ -123.258153163999978, 49.386423476000097 ], [ -123.258151552999948, 49.386116021000113 ], [ -123.258808841999937, 49.385433002000049 ], [ -123.259286226999947, 49.3851059570001 ], [ -123.259732917999941, 49.38480083400011 ], [ -123.259798070999963, 49.384800688000098 ], [ -123.25979783699999, 49.384756488000072 ], [ -123.259974418999931, 49.384635869000121 ], [ -123.260091892999981, 49.384530176000112 ], [ -123.260209993999979, 49.384529910000069 ], [ -123.260209436999972, 49.384424422000045 ], [ -123.260359932999904, 49.384289019000093 ], [ -123.26038173100001, 49.384259672000042 ], [ -123.260621911, 49.384259132000068 ], [ -123.260620406999962, 49.383974723000073 ], [ -123.26078866, 49.383793802000099 ], [ -123.260939555999954, 49.383687750000057 ], [ -123.260987023999959, 49.383664331000034 ], [ -123.261156593999885, 49.383580669000011 ], [ -123.262037919999926, 49.383233781000094 ], [ -123.262494666999899, 49.383009400000049 ], [ -123.262998461, 49.382594398000037 ], [ -123.263587079999979, 49.382189647000096 ], [ -123.263837130999917, 49.382036575 ], [ -123.264133604, 49.381913499000113 ], [ -123.264437703999988, 49.381821809000058 ], [ -123.264742290999934, 49.381821111000065 ], [ -123.264746640999988, 49.382630654000081 ], [ -123.26433331199999, 49.382631600000067 ], [ -123.264334759999926, 49.382901447000059 ], [ -123.263921426999929, 49.382902392000041 ], [ -123.263922872999927, 49.383172240000128 ], [ -123.263509538999926, 49.383173183000096 ], [ -123.263510981999957, 49.38344302899999 ], [ -123.263097645999892, 49.383443972000087 ], [ -123.263099086999958, 49.383713818000054 ], [ -123.262685748999942, 49.383714759000028 ], [ -123.262687187999973, 49.383984607000059 ], [ -123.26227384799995, 49.383985545000044 ], [ -123.262275282999937, 49.384255392000036 ], [ -123.26186194, 49.384256329000102 ], [ -123.261864808999974, 49.384796025000092 ], [ -123.261451461999968, 49.384796960000109 ], [ -123.26145289399993, 49.38506680800004 ], [ -123.261039543999942, 49.385067742000082 ], [ -123.261040972999922, 49.385337589000095 ], [ -123.260627620999941, 49.385338522000055 ], [ -123.260630475999946, 49.385878217000084 ], [ -123.260217118999961, 49.385879148000086 ], [ -123.260219968999976, 49.386418844000055 ], [ -123.259806608999924, 49.386419772000025 ], [ -123.259809453999964, 49.38695946800005 ], [ -123.259396087999932, 49.386960395000131 ], [ -123.259397508999896, 49.387230244000079 ], [ -123.258984141000013, 49.387231170000049 ], [ -123.258985559999985, 49.387501018000073 ], [ -123.258572189999967, 49.387501943000046 ], [ -123.258573605999942, 49.387771791000013 ], [ -123.258160232999955, 49.387772714000036 ], [ -123.258160752999984, 49.387871947000122 ], [ -123.259108800999982, 49.387895961000098 ], [ -123.258735305999892, 49.388247089000131 ], [ -123.258256207999978, 49.38903899600006 ], [ -123.258195502999968, 49.390641191000036 ], [ -123.257949989999958, 49.391018609000064 ], [ -123.257415709999947, 49.391380386000037 ], [ -123.256919488, 49.391569810000107 ], [ -123.25657929399992, 49.392227792000071 ], [ -123.255851889999988, 49.393110790000037 ], [ -123.254698897999944, 49.39385989800008 ], [ -123.254026086999929, 49.394149004000056 ], [ -123.252911690999952, 49.394825511000107 ], [ -123.252183787999982, 49.395440298000032 ], [ -123.252011969999955, 49.395435936000069 ], [ -123.252017545999948, 49.395342081000145 ], [ -123.251998290999921, 49.395342122000102 ], [ -123.251999588999965, 49.395595869000068 ], [ -123.251980475999943, 49.395612011 ], [ -123.251586232999955, 49.395612871000019 ], [ -123.25158761199998, 49.395882718000095 ], [ -123.251174169999942, 49.395883616000106 ], [ -123.251176922999932, 49.396423311000035 ], [ -123.250763476999978, 49.396424209000052 ], [ -123.250764436999958, 49.396612556000079 ], [ -123.25191007799998, 49.39664164800012 ], [ -123.252042504999949, 49.397148402000077 ], [ -123.251867803999914, 49.398192384000055 ], [ -123.252051113, 49.398713603000026 ], [ -123.252038780999939, 49.399182198000062 ], [ -123.251586405999944, 49.399767499000063 ], [ -123.250461501999936, 49.400435490000106 ], [ -123.249263098999933, 49.400888386000133 ], [ -123.248632007999987, 49.401231593000063 ], [ -123.248012599999981, 49.401402484000059 ], [ -123.246940890999937, 49.401972190000087 ], [ -123.246458116999918, 49.402125997000063 ], [ -123.245453316999914, 49.402541906000152 ], [ -123.245303093999965, 49.402668613000088 ], [ -123.245153821999949, 49.402991906000054 ], [ -123.24508829200002, 49.403756694000016 ], [ -123.244622991999961, 49.404279413000054 ], [ -123.24437688299993, 49.404910401000116 ], [ -123.24392449799997, 49.405468601000095 ], [ -123.244284395999941, 49.405692212000098 ], [ -123.244312908999973, 49.405890202000144 ], [ -123.244534483999971, 49.406106695000041 ], [ -123.244468397999952, 49.40660090600003 ], [ -123.244043099999942, 49.406998191000071 ], [ -123.24358850899992, 49.407241808000101 ], [ -123.243275701999906, 49.407678379000046 ], [ -123.242601296999965, 49.407848977000114 ], [ -123.242439727999979, 49.407886523000052 ], [ -123.242255358999927, 49.40792937800007 ], [ -123.241615411999959, 49.408078064000065 ], [ -123.241477285999963, 49.408110159000081 ], [ -123.241513289999887, 49.40786803800011 ], [ -123.241564531999927, 49.407523616000063 ], [ -123.241609679999968, 49.407220272000131 ], [ -123.241642899999974, 49.406996890000102 ], [ -123.242100748999974, 49.406066650000071 ], [ -123.242120976, 49.405991490000076 ], [ -123.242176840999946, 49.40578402800007 ], [ -123.24219021, 49.405444888000055 ], [ -123.24198287899999, 49.404485098000059 ], [ -123.241988712999927, 49.404346338000089 ], [ -123.241999329999913, 49.404093787000079 ], [ -123.24210249399999, 49.403727207 ], [ -123.242230283999959, 49.403455837000074 ], [ -123.242629972999978, 49.402876175000067 ], [ -123.24284077199998, 49.402575386000073 ], [ -123.242972568999946, 49.402491403000127 ], [ -123.243387314999922, 49.401936451000097 ], [ -123.243651192999948, 49.401623490000077 ], [ -123.243860923999975, 49.401430250000061 ], [ -123.244091472999941, 49.401217785000028 ], [ -123.244810902999959, 49.400727242000066 ], [ -123.246156546999913, 49.39980974200008 ], [ -123.246411730999981, 49.399647951000055 ], [ -123.246432560999935, 49.399634769000052 ], [ -123.247044244, 49.399247002000031 ], [ -123.24813462899999, 49.398171622000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45713219", "BldgCostT": "26075412", "sL_LossRatio": "0.611743127279079", "sL_AssetLoss": "457970", "sL_BldgLoss": "280160", "sL_StrLoss": "90390", "sL_NStrLoss": "189770", "sL_ContLoss": "177810", "geom_point": "0101000020E6100000AF2FB72080D15EC0CFDF2118C9AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.270909489999937, 49.375870100000022 ], [ -123.270897625999979, 49.373711316000076 ], [ -123.269657862999964, 49.373714215000149 ], [ -123.269655601999915, 49.373301151000121 ], [ -123.269708248999962, 49.37314197900006 ], [ -123.269876993999958, 49.372918401000042 ], [ -123.26989445399991, 49.372904108000071 ], [ -123.270066682999939, 49.372903707000035 ], [ -123.270065914999947, 49.372763764000084 ], [ -123.270133934999933, 49.372708088000124 ], [ -123.27016796599996, 49.372681522000015 ], [ -123.270446783999887, 49.372457909000026 ], [ -123.270621735999953, 49.372314943000092 ], [ -123.271665222999943, 49.371593831000055 ], [ -123.272032430999928, 49.371320329000127 ], [ -123.272120174999927, 49.371279782000087 ], [ -123.272123980999964, 49.371279773000055 ], [ -123.272123970999957, 49.371278028000084 ], [ -123.273030307999989, 49.370859200000055 ], [ -123.273560268999958, 49.370510574000036 ], [ -123.27424079599993, 49.369896443000073 ], [ -123.274495380999966, 49.369582136000069 ], [ -123.274663968999931, 49.369373990000028 ], [ -123.274882615999971, 49.369000617000047 ], [ -123.274973172999978, 49.368845987000064 ], [ -123.274979796999943, 49.36885391600007 ], [ -123.27506815199996, 49.36895921000005 ], [ -123.275243349999954, 49.369167964000063 ], [ -123.275439885999958, 49.36940705300006 ], [ -123.275522383999913, 49.369479406000018 ], [ -123.275208898999963, 49.369978764000081 ], [ -123.274822147999913, 49.370594854000025 ], [ -123.274515095, 49.371083910000038 ], [ -123.273940808999939, 49.371529607000113 ], [ -123.273871616999926, 49.37157034600007 ], [ -123.273716352999969, 49.371661847000041 ], [ -123.27371300599999, 49.371663813000048 ], [ -123.273360310999976, 49.371871598000041 ], [ -123.27327743799998, 49.372107490000062 ], [ -123.273030568999943, 49.372810076000093 ], [ -123.273078470999948, 49.3728500080001 ], [ -123.273121478999926, 49.3728859020001 ], [ -123.273040804999965, 49.373438486000055 ], [ -123.274327989999932, 49.373512390000073 ], [ -123.274607181999954, 49.373564492000085 ], [ -123.274941400999964, 49.373710703000064 ], [ -123.275664588999945, 49.373003998000101 ], [ -123.277023014999926, 49.373553286000096 ], [ -123.277040553999953, 49.373596382000102 ], [ -123.27723964799999, 49.373644173000088 ], [ -123.277306274999944, 49.374143889000081 ], [ -123.277265889999981, 49.374455403000049 ], [ -123.277158909999969, 49.374659811000122 ], [ -123.276730789999974, 49.375359495000112 ], [ -123.27665080599999, 49.375379661000089 ], [ -123.276441510999945, 49.375432395000047 ], [ -123.27567789299998, 49.375655389000016 ], [ -123.27567759899992, 49.375655522000038 ], [ -123.275293879999964, 49.375801287000066 ], [ -123.27501837599999, 49.37589058300015 ], [ -123.275007906999988, 49.375759598000108 ], [ -123.274729592999932, 49.375473388000096 ], [ -123.273763012999908, 49.374890904000054 ], [ -123.273385096999931, 49.374795298000087 ], [ -123.273385712999954, 49.374784865000066 ], [ -123.273344244999947, 49.374784962000071 ], [ -123.272969343999989, 49.374690117000092 ], [ -123.272968378999977, 49.374515999000025 ], [ -123.272555117999943, 49.374516975000105 ], [ -123.27255599099999, 49.374674671000093 ], [ -123.272039195, 49.374724192000087 ], [ -123.272145576999947, 49.375191483000016 ], [ -123.272148192999964, 49.375665486000109 ], [ -123.271976797999969, 49.375677009000114 ], [ -123.271868181999963, 49.375803792000021 ], [ -123.271715008999976, 49.375776692000073 ], [ -123.271704098999948, 49.375868234000102 ], [ -123.270909489999937, 49.375870100000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302022124", "BldgCostT": "193148351", "sL_LossRatio": "0.737978815815283", "sL_AssetLoss": "4282440", "sL_BldgLoss": "3160350", "sL_StrLoss": "1353700", "sL_NStrLoss": "1806650", "sL_ContLoss": "1122090", "geom_point": "0101000020E6100000C143394DB6D15EC08C06F88790AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.273040804999965, 49.373438486000055 ], [ -123.273121478999926, 49.3728859020001 ], [ -123.273078470999948, 49.3728500080001 ], [ -123.273030568999943, 49.372810076000093 ], [ -123.27327743799998, 49.372107490000062 ], [ -123.273360310999976, 49.371871598000041 ], [ -123.27371300599999, 49.371663813000048 ], [ -123.273716352999969, 49.371661847000041 ], [ -123.273871616999926, 49.37157034600007 ], [ -123.273940808999939, 49.371529607000113 ], [ -123.274515095, 49.371083910000038 ], [ -123.274822147999913, 49.370594854000025 ], [ -123.275208898999963, 49.369978764000081 ], [ -123.275522383999913, 49.369479406000018 ], [ -123.275621270999977, 49.369563819000099 ], [ -123.275669683999951, 49.369596556000033 ], [ -123.275808533, 49.369693685000115 ], [ -123.276034127999978, 49.369855070000028 ], [ -123.276098406999964, 49.369639089 ], [ -123.276218193999966, 49.369236651000051 ], [ -123.276312433000015, 49.370021563000073 ], [ -123.277150180999968, 49.369285307000041 ], [ -123.2772012289999, 49.369307506000077 ], [ -123.27857449399994, 49.369904687000023 ], [ -123.278956297999969, 49.369944012000055 ], [ -123.27949457199999, 49.370226810000069 ], [ -123.279668557999969, 49.370241991000064 ], [ -123.279654837999942, 49.370311909000037 ], [ -123.2797106299999, 49.370369109000102 ], [ -123.279798603999907, 49.370394686000026 ], [ -123.279898677999952, 49.370379254000092 ], [ -123.2800166899999, 49.37047947100006 ], [ -123.280816403999921, 49.370811156000087 ], [ -123.279765095999934, 49.371878837000082 ], [ -123.279611683999946, 49.372146031000042 ], [ -123.279397846999927, 49.372972746000059 ], [ -123.279158685, 49.372942406000092 ], [ -123.278942410999932, 49.372944164000032 ], [ -123.278756741999985, 49.37298722900011 ], [ -123.278657499999909, 49.373036783000046 ], [ -123.277604676999957, 49.372642754 ], [ -123.277573694999916, 49.372688211000074 ], [ -123.277404602, 49.37294150600006 ], [ -123.277239388999945, 49.373642394000129 ], [ -123.27723964799999, 49.373644173000088 ], [ -123.277040553999953, 49.373596382000102 ], [ -123.277023014999926, 49.373553286000096 ], [ -123.275664588999945, 49.373003998000101 ], [ -123.274941400999964, 49.373710703000064 ], [ -123.274607181999954, 49.373564492000085 ], [ -123.274327989999932, 49.373512390000073 ], [ -123.273040804999965, 49.373438486000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87191000", "BldgCostT": "59660000", "sL_LossRatio": "0.862696263114823", "sL_AssetLoss": "394687", "sL_BldgLoss": "340495", "sL_StrLoss": "208473", "sL_NStrLoss": "132022", "sL_ContLoss": "54192", "geom_point": "0101000020E6100000FBA146DFECD15EC0495886FEAAAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.277239388999945, 49.373642394000129 ], [ -123.277404602, 49.37294150600006 ], [ -123.277573694999916, 49.372688211000074 ], [ -123.277604676999957, 49.372642754 ], [ -123.278657499999909, 49.373036783000046 ], [ -123.278756741999985, 49.37298722900011 ], [ -123.278942410999932, 49.372944164000032 ], [ -123.279158685, 49.372942406000092 ], [ -123.279397846999927, 49.372972746000059 ], [ -123.279611683999946, 49.372146031000042 ], [ -123.279765095999934, 49.371878837000082 ], [ -123.280816403999921, 49.370811156000087 ], [ -123.2800166899999, 49.37047947100006 ], [ -123.279898677999952, 49.370379254000092 ], [ -123.279798603999907, 49.370394686000026 ], [ -123.2797106299999, 49.370369109000102 ], [ -123.279654837999942, 49.370311909000037 ], [ -123.279668557999969, 49.370241991000064 ], [ -123.279720811999937, 49.370196505000088 ], [ -123.27981417699999, 49.370176302000111 ], [ -123.280421885999971, 49.369604495000068 ], [ -123.281141365999943, 49.368841797000087 ], [ -123.281534697999973, 49.368427538000091 ], [ -123.281542574999946, 49.368340387000103 ], [ -123.283047533999948, 49.368571797000058 ], [ -123.282352418999935, 49.369272950000031 ], [ -123.282375792999957, 49.369296960000057 ], [ -123.28272417699992, 49.369038248000024 ], [ -123.282826744999937, 49.369003000000113 ], [ -123.282921325999979, 49.369009891000076 ], [ -123.282976797999979, 49.369073424000099 ], [ -123.283069949999941, 49.369526921000045 ], [ -123.283235304999934, 49.369641840000092 ], [ -123.283430587999973, 49.369716052000079 ], [ -123.283565514999935, 49.36995089100008 ], [ -123.283578904999928, 49.369955299000061 ], [ -123.282794968999951, 49.37057539900006 ], [ -123.281966411999974, 49.371320920000123 ], [ -123.281915017999964, 49.371328645000069 ], [ -123.281915286999933, 49.371370975000104 ], [ -123.281691896, 49.371611182000017 ], [ -123.281694596999955, 49.371682401000058 ], [ -123.281931993999976, 49.372024268000111 ], [ -123.282022342999966, 49.372247374000082 ], [ -123.282041428999946, 49.37229445600007 ], [ -123.281983028999889, 49.372444279000014 ], [ -123.281637039999922, 49.372662519000123 ], [ -123.281551392999944, 49.372878284000137 ], [ -123.281451531999934, 49.37300724100001 ], [ -123.28047305199999, 49.373655344000106 ], [ -123.280038468999976, 49.374137906000023 ], [ -123.27967600599996, 49.374799669000026 ], [ -123.27946336399998, 49.375406044000087 ], [ -123.279386481999964, 49.375625353000046 ], [ -123.27933033799998, 49.375784226000114 ], [ -123.279146715999957, 49.376026363000086 ], [ -123.279014187000016, 49.376102254000081 ], [ -123.278906626999955, 49.376128375000114 ], [ -123.278579447999903, 49.37610077100009 ], [ -123.277036317999944, 49.375970592000051 ], [ -123.276888592999939, 49.375742611000128 ], [ -123.276853788000025, 49.375492297000051 ], [ -123.276730789999974, 49.375359495000112 ], [ -123.277158909999969, 49.374659811000122 ], [ -123.277265889999981, 49.374455403000049 ], [ -123.277306274999944, 49.374143889000081 ], [ -123.27723964799999, 49.373644173000088 ], [ -123.277239388999945, 49.373642394000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162076034", "BldgCostT": "106412124", "sL_LossRatio": "0.776206334407119", "sL_AssetLoss": "716468", "sL_BldgLoss": "556127", "sL_StrLoss": "318997", "sL_NStrLoss": "237130", "sL_ContLoss": "160341", "geom_point": "0101000020E61000004C1E2EBD26D25EC041910FF6FDAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.275081986999908, 49.376893308000021 ], [ -123.275136418999935, 49.376560003000165 ], [ -123.275327496999921, 49.376263813000072 ], [ -123.275036715999988, 49.37612000400005 ], [ -123.27501837599999, 49.37589058300015 ], [ -123.275293879999964, 49.375801287000066 ], [ -123.27567759899992, 49.375655522000038 ], [ -123.27567789299998, 49.375655389000016 ], [ -123.276441510999945, 49.375432395000047 ], [ -123.27665080599999, 49.375379661000089 ], [ -123.276730789999974, 49.375359495000112 ], [ -123.276853788000025, 49.375492297000051 ], [ -123.276888592999939, 49.375742611000128 ], [ -123.277036317999944, 49.375970592000051 ], [ -123.278579447999903, 49.37610077100009 ], [ -123.278906626999955, 49.376128375000114 ], [ -123.279014187000016, 49.376102254000081 ], [ -123.279146715999957, 49.376026363000086 ], [ -123.27933033799998, 49.375784226000114 ], [ -123.279386481999964, 49.375625353000046 ], [ -123.27946336399998, 49.375406044000087 ], [ -123.27967600599996, 49.374799669000026 ], [ -123.280038468999976, 49.374137906000023 ], [ -123.28047305199999, 49.373655344000106 ], [ -123.281451531999934, 49.37300724100001 ], [ -123.281551392999944, 49.372878284000137 ], [ -123.281637039999922, 49.372662519000123 ], [ -123.281983028999889, 49.372444279000014 ], [ -123.282041428999946, 49.37229445600007 ], [ -123.282022342999966, 49.372247374000082 ], [ -123.281931993999976, 49.372024268000111 ], [ -123.281694596999955, 49.371682401000058 ], [ -123.281691896, 49.371611182000017 ], [ -123.281915286999933, 49.371370975000104 ], [ -123.281915017999964, 49.371328645000069 ], [ -123.281966411999974, 49.371320920000123 ], [ -123.282794968999951, 49.37057539900006 ], [ -123.283578904999928, 49.369955299000061 ], [ -123.283565514999935, 49.36995089100008 ], [ -123.283430587999973, 49.369716052000079 ], [ -123.283235304999934, 49.369641840000092 ], [ -123.283069949999941, 49.369526921000045 ], [ -123.282976797999979, 49.369073424000099 ], [ -123.282921325999979, 49.369009891000076 ], [ -123.282826744999937, 49.369003000000113 ], [ -123.28272417699992, 49.369038248000024 ], [ -123.282375792999957, 49.369296960000057 ], [ -123.282352418999935, 49.369272950000031 ], [ -123.283047533999948, 49.368571797000058 ], [ -123.283939501999967, 49.368385515000043 ], [ -123.283982164999912, 49.368381527000054 ], [ -123.284014332999931, 49.368374745000061 ], [ -123.284228116999955, 49.368365033000096 ], [ -123.284182437000013, 49.368426562000089 ], [ -123.284170929999931, 49.368822124000104 ], [ -123.284381969999956, 49.368821605000086 ], [ -123.284363881999965, 49.368954799000065 ], [ -123.284601620999965, 49.36944900100012 ], [ -123.284629106999944, 49.369630551000036 ], [ -123.28451163699998, 49.369630841000124 ], [ -123.284511907999928, 49.369677572000079 ], [ -123.284705436999943, 49.370378362000061 ], [ -123.284720435999958, 49.370712863000037 ], [ -123.284673235999946, 49.371276063000053 ], [ -123.284527036999975, 49.371850263000113 ], [ -123.284586841999953, 49.37193217400003 ], [ -123.284532820999942, 49.37214780500004 ], [ -123.284739995, 49.372273209000113 ], [ -123.285099464999945, 49.372344446000113 ], [ -123.285774902999947, 49.372478293000057 ], [ -123.286007788999925, 49.372387110000076 ], [ -123.286557807999927, 49.371872987000067 ], [ -123.287380906999928, 49.371421487000049 ], [ -123.287806795999984, 49.371348886000035 ], [ -123.288369998999912, 49.371086803000019 ], [ -123.28941839799991, 49.371073996000035 ], [ -123.290451106999939, 49.371306099000016 ], [ -123.290994476, 49.372123598000073 ], [ -123.29154658299997, 49.372374304000118 ], [ -123.29181940399999, 49.372130697000081 ], [ -123.292152091999938, 49.372254698000113 ], [ -123.29249499299999, 49.372065189000097 ], [ -123.292811189999938, 49.37202819500007 ], [ -123.292867703999931, 49.372288811000089 ], [ -123.293267096999898, 49.372278891000072 ], [ -123.293529585999948, 49.372503908000034 ], [ -123.293491800999945, 49.372800090000048 ], [ -123.292943799999961, 49.37340401000003 ], [ -123.292753898999976, 49.373908186000122 ], [ -123.292095907999951, 49.374396695000051 ], [ -123.29101021699995, 49.374964899000084 ], [ -123.290888486999933, 49.375289604000095 ], [ -123.291028812999983, 49.375595902000086 ], [ -123.290988785999943, 49.375892107000062 ], [ -123.290415322999962, 49.376739504000057 ], [ -123.289962694999986, 49.377018598000049 ], [ -123.289480798999932, 49.377074214000068 ], [ -123.289369193999903, 49.376876187000022 ], [ -123.289381097999978, 49.376544407000047 ], [ -123.289790712999931, 49.375894903000066 ], [ -123.289638114999903, 49.375742503000019 ], [ -123.288987817999896, 49.375429201000038 ], [ -123.288161405999958, 49.375179992 ], [ -123.287707410999957, 49.375387906000057 ], [ -123.286856396999937, 49.376055908000161 ], [ -123.286410837999966, 49.376188586000112 ], [ -123.28633924, 49.376186790000077 ], [ -123.286344167999957, 49.376102753000033 ], [ -123.284962293999939, 49.376106167000088 ], [ -123.284960731999917, 49.375836319000051 ], [ -123.28454746099996, 49.3758373370001 ], [ -123.284545904, 49.375567490000059 ], [ -123.283983064999944, 49.375568873000155 ], [ -123.28391673699997, 49.375660762000102 ], [ -123.283835534999966, 49.375905463000016 ], [ -123.283884730999944, 49.376108818000013 ], [ -123.284135745999919, 49.376108201000093 ], [ -123.284137339999958, 49.37638489900008 ], [ -123.284380637999959, 49.376464063000078 ], [ -123.284417536999968, 49.376681963000038 ], [ -123.284229236999963, 49.377428763000047 ], [ -123.284143863999958, 49.377516214000153 ], [ -123.284145078999984, 49.377727285000056 ], [ -123.283937303999977, 49.377727795000048 ], [ -123.283732992999944, 49.377937073000069 ], [ -123.283733179999942, 49.377969335000067 ], [ -123.282352809000017, 49.378629398000093 ], [ -123.281225496999966, 49.379011109000047 ], [ -123.281112512999968, 49.379013671000067 ], [ -123.280784614999931, 49.37902110600006 ], [ -123.280431869, 49.378857063000133 ], [ -123.280431816999965, 49.378847847000053 ], [ -123.280366626999978, 49.378815916000079 ], [ -123.280343510999927, 49.37881597100003 ], [ -123.28024551499999, 49.378770398000079 ], [ -123.279954682999985, 49.37825769500008 ], [ -123.279188625999936, 49.378268607000081 ], [ -123.279188459999915, 49.378239012000016 ], [ -123.279142936, 49.378183262000036 ], [ -123.279109636999948, 49.378053963000056 ], [ -123.27918680899991, 49.377947348000113 ], [ -123.279182571999968, 49.377199673000099 ], [ -123.279595855999929, 49.377198675000081 ], [ -123.279594324999906, 49.376928827000043 ], [ -123.278767763999923, 49.376930823000123 ], [ -123.278767725999927, 49.376924345000084 ], [ -123.278709992999978, 49.377906007000043 ], [ -123.278441285999961, 49.377899250000091 ], [ -123.278399420999989, 49.378611014000072 ], [ -123.277897124, 49.378598379000131 ], [ -123.277852304999954, 49.379360190000064 ], [ -123.276932315999957, 49.379983804000112 ], [ -123.276054613999989, 49.380516496000041 ], [ -123.275090195999923, 49.380779990000121 ], [ -123.274373498999978, 49.380735797000021 ], [ -123.27416611299995, 49.380529299000038 ], [ -123.274289180999958, 49.380206002000094 ], [ -123.274297496999978, 49.379449799 ], [ -123.274761201000032, 49.378603793000096 ], [ -123.27487031599992, 49.378099605000095 ], [ -123.275278787999952, 49.377235109000019 ], [ -123.27526401399993, 49.377055707000089 ], [ -123.275081986999908, 49.376893308000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168867385", "BldgCostT": "108452078", "sL_LossRatio": "0.749353801227284", "sL_AssetLoss": "1013620", "sL_BldgLoss": "759560", "sL_StrLoss": "391690", "sL_NStrLoss": "367870", "sL_ContLoss": "254060", "geom_point": "0101000020E61000007EF7AF28BCD15EC0AC2FC70211AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.281476046999941, 49.367386852000067 ], [ -123.281440230999934, 49.367293210000106 ], [ -123.281627144999945, 49.36727540400009 ], [ -123.28209595700001, 49.367356517000111 ], [ -123.282262428999942, 49.367358902000056 ], [ -123.282414666, 49.36732220100005 ], [ -123.282698678999978, 49.367174445000053 ], [ -123.282994830999925, 49.366890120000036 ], [ -123.283779983999949, 49.365757173000041 ], [ -123.283841662999976, 49.365480466000037 ], [ -123.283780457999953, 49.365279904000076 ], [ -123.283469110999974, 49.364908287000034 ], [ -123.283423036999963, 49.364801773000103 ], [ -123.283332778000016, 49.364298825000084 ], [ -123.283237363999888, 49.364165835000129 ], [ -123.282918700999957, 49.363966026000064 ], [ -123.282600998999953, 49.364030999000114 ], [ -123.281964352, 49.364346382000051 ], [ -123.280773237999981, 49.364797327000112 ], [ -123.280642619999966, 49.364680339000067 ], [ -123.280590127999986, 49.364633322000032 ], [ -123.280385549999892, 49.36453135300011 ], [ -123.280319992999964, 49.364498658000095 ], [ -123.280013768999979, 49.364383814000107 ], [ -123.279514492999922, 49.364196549000106 ], [ -123.279232846999932, 49.36367165100004 ], [ -123.279379114999955, 49.36335160400003 ], [ -123.280474795999979, 49.362661748000065 ], [ -123.280629791999928, 49.36232235100006 ], [ -123.280616111999962, 49.362270099000099 ], [ -123.280606571999925, 49.362251308000104 ], [ -123.28047919799991, 49.362000188000081 ], [ -123.28041254399993, 49.36186874800012 ], [ -123.28042184, 49.361593439000082 ], [ -123.280787742999934, 49.361110661000119 ], [ -123.28108289099994, 49.360721247000079 ], [ -123.281643176999978, 49.360368811000086 ], [ -123.282292608999953, 49.360139285000116 ], [ -123.28257618399999, 49.359998713000039 ], [ -123.28341607899992, 49.3596434070001 ], [ -123.283708467999972, 49.358952836000071 ], [ -123.283695105, 49.358875960000013 ], [ -123.283598027999972, 49.358794284000048 ], [ -123.282916746999931, 49.358534918000046 ], [ -123.282689550999962, 49.358489597000066 ], [ -123.282420904999952, 49.358403807000045 ], [ -123.2824017499999, 49.358397719000052 ], [ -123.28220034499995, 49.358381834000092 ], [ -123.281644763999978, 49.358513763000119 ], [ -123.281527822999948, 49.358582879000068 ], [ -123.281318713999951, 49.358815357000026 ], [ -123.281213474999973, 49.35888146700006 ], [ -123.281202962999913, 49.358888085000125 ], [ -123.280960931999942, 49.358977465000123 ], [ -123.280546200999979, 49.359080363000025 ], [ -123.28052041699999, 49.359086742000073 ], [ -123.280287214999987, 49.359144617000034 ], [ -123.280199655999951, 49.359166350000109 ], [ -123.279874326999959, 49.359033873000023 ], [ -123.279320317999975, 49.358787610000071 ], [ -123.2787313799999, 49.358550356000073 ], [ -123.278602210999964, 49.358522796000081 ], [ -123.279080422999925, 49.357061557000087 ], [ -123.279083460999956, 49.356728449000094 ], [ -123.278924515999975, 49.356435357000059 ], [ -123.278680138999974, 49.35621400100009 ], [ -123.278069819999956, 49.355942880000086 ], [ -123.27720944399999, 49.355743063000141 ], [ -123.27646075499996, 49.355569181000099 ], [ -123.276108561999962, 49.355590038000059 ], [ -123.275858585999941, 49.355674692000029 ], [ -123.275278111999967, 49.356066183000046 ], [ -123.274398499999961, 49.35634840700007 ], [ -123.273723512999936, 49.356895141000081 ], [ -123.273277623999917, 49.357133067000113 ], [ -123.273001571999913, 49.357280370000105 ], [ -123.272291480999925, 49.357535333 ], [ -123.271729684999912, 49.357676569000041 ], [ -123.270020256999928, 49.35810628000015 ], [ -123.268938264999946, 49.358378238000071 ], [ -123.267900201999964, 49.358824802000093 ], [ -123.267635858999967, 49.358872174000112 ], [ -123.267389620999964, 49.358846134000061 ], [ -123.267069481999968, 49.358720075000093 ], [ -123.266906552999956, 49.358565574000103 ], [ -123.266861775999942, 49.358460896000075 ], [ -123.26689433300001, 49.357723269000068 ], [ -123.266801228999952, 49.357551620000024 ], [ -123.267011379999957, 49.357442553000062 ], [ -123.267166384999967, 49.357311384000106 ], [ -123.267507286999901, 49.357156093000114 ], [ -123.267736782999989, 49.357099934000075 ], [ -123.26783409799999, 49.357076099000075 ], [ -123.267978065999955, 49.356992393000034 ], [ -123.268024395999959, 49.356907105000118 ], [ -123.26802113599993, 49.356875679000147 ], [ -123.26801472699999, 49.356814101000069 ], [ -123.267918286999972, 49.356699100000128 ], [ -123.267240293, 49.356246120000087 ], [ -123.267309703999942, 49.356002915000083 ], [ -123.267316962999971, 49.35557715400008 ], [ -123.267369487999929, 49.355410084000063 ], [ -123.267257011, 49.35509678600004 ], [ -123.26725009799999, 49.355077483000073 ], [ -123.267536212, 49.355127034000056 ], [ -123.26774299499999, 49.355307857000078 ], [ -123.267954791999969, 49.355404157000066 ], [ -123.268155923999942, 49.355424542000058 ], [ -123.268766116999956, 49.355183312000122 ], [ -123.269015633999956, 49.354897794000081 ], [ -123.269185510999975, 49.354350095 ], [ -123.268937411999957, 49.354193440000095 ], [ -123.268252192999981, 49.35390956400007 ], [ -123.26808459199998, 49.353881018000045 ], [ -123.267758606999934, 49.353877299000096 ], [ -123.267518538999923, 49.353910830000082 ], [ -123.267160174999958, 49.354045595000052 ], [ -123.266600780999966, 49.354255962000046 ], [ -123.266125138999968, 49.354455579000025 ], [ -123.265046787999921, 49.355212681000083 ], [ -123.264603117, 49.355616606000062 ], [ -123.264415473999946, 49.356066640000115 ], [ -123.26450996199992, 49.356633658000078 ], [ -123.26446000599995, 49.356710752000026 ], [ -123.262926658999973, 49.356220801000084 ], [ -123.262748245999944, 49.356096490000013 ], [ -123.262664381999983, 49.355932287000073 ], [ -123.262637367999957, 49.355760492000087 ], [ -123.262686043, 49.355566303000074 ], [ -123.263133223999972, 49.354893200000106 ], [ -123.263197012999953, 49.354675994000075 ], [ -123.263121958999974, 49.354478668000063 ], [ -123.262963543999959, 49.354327759000135 ], [ -123.262607272999901, 49.353988361000098 ], [ -123.262414923999955, 49.353867315000088 ], [ -123.262341882999948, 49.35382135900003 ], [ -123.262114830999934, 49.353740756000057 ], [ -123.261937481999922, 49.353677827000062 ], [ -123.261319892999921, 49.353531605000114 ], [ -123.261035468999921, 49.353407340000047 ], [ -123.260797770999929, 49.353237409000052 ], [ -123.260629138999917, 49.353017007000091 ], [ -123.260609856999963, 49.352923765000064 ], [ -123.260593880999949, 49.352845019000078 ], [ -123.263617326999949, 49.352894474000017 ], [ -123.266220327999946, 49.352936982000095 ], [ -123.266661892999977, 49.352917515000108 ], [ -123.267182334999987, 49.352961285000049 ], [ -123.267503516999923, 49.352952291000072 ], [ -123.267789909999976, 49.35288027100011 ], [ -123.2685139109999, 49.352890484000106 ], [ -123.268646074999978, 49.352657028000124 ], [ -123.268999181999945, 49.351806568000057 ], [ -123.269160695999972, 49.351697991000073 ], [ -123.26961824199999, 49.351545283000057 ], [ -123.26975556599993, 49.351414185000067 ], [ -123.269816123999959, 49.351360730000096 ], [ -123.269806373000023, 49.351200535000039 ], [ -123.269904436000019, 49.351190805000023 ], [ -123.269900480000032, 49.351233296000053 ], [ -123.269710201999914, 49.35156658800004 ], [ -123.269063020999937, 49.351830105000062 ], [ -123.268970189999891, 49.352540690000033 ], [ -123.268150393999974, 49.353396700000097 ], [ -123.26809588799992, 49.353504903000072 ], [ -123.268234603999986, 49.353611785000076 ], [ -123.268771503999943, 49.353962085000035 ], [ -123.269309403999941, 49.354058988000126 ], [ -123.269354115999946, 49.354015738000051 ], [ -123.269550160999955, 49.354015282000049 ], [ -123.269549684999944, 49.353928232000037 ], [ -123.269915214999955, 49.353860999000105 ], [ -123.27054708499999, 49.353570498000046 ], [ -123.270875489000019, 49.353228604000051 ], [ -123.27103940799995, 49.353174510000059 ], [ -123.271219993999978, 49.353218701000124 ], [ -123.271370607999984, 49.353335509000026 ], [ -123.271334281999884, 49.354081694000065 ], [ -123.271490908999937, 49.354819495000164 ], [ -123.271451094999946, 49.355215406000035 ], [ -123.271080997999931, 49.355475990000102 ], [ -123.269868189999926, 49.355533005000098 ], [ -123.269347109, 49.355642686000067 ], [ -123.268974414999946, 49.355815009000018 ], [ -123.26879749699998, 49.35595029200006 ], [ -123.269032679999953, 49.356273599000104 ], [ -123.26822401799997, 49.356850403000045 ], [ -123.268265101999987, 49.356913086000134 ], [ -123.269193795999939, 49.358162096000122 ], [ -123.26998204899995, 49.358006002000145 ], [ -123.270020922999919, 49.357998303000073 ], [ -123.271833916999981, 49.357435805000122 ], [ -123.27198300799995, 49.356733605000031 ], [ -123.272339492999919, 49.356481516000066 ], [ -123.273248515999967, 49.356478696000053 ], [ -123.27383861700001, 49.35631630299999 ], [ -123.274071509999942, 49.356225188000039 ], [ -123.275457586999934, 49.355214009000079 ], [ -123.276392091999966, 49.35493341100009 ], [ -123.277689216999974, 49.355451795000086 ], [ -123.27877760899996, 49.355503084000119 ], [ -123.279451701999946, 49.35583100400008 ], [ -123.279448776999985, 49.355880741000114 ], [ -123.279474994999973, 49.355880679000045 ], [ -123.279475145999953, 49.355907108000082 ], [ -123.279508336999953, 49.35592786300009 ], [ -123.279636436999965, 49.356187163000079 ], [ -123.279654436, 49.357049263000114 ], [ -123.279700767999941, 49.357229393000097 ], [ -123.279895756999963, 49.357228922000104 ], [ -123.279897288999976, 49.357498770000049 ], [ -123.27991637199996, 49.357498724000031 ], [ -123.280395826999921, 49.357497562000049 ], [ -123.28040098699995, 49.357505499000098 ], [ -123.280760716, 49.357693507000064 ], [ -123.280944516999966, 49.357741809000068 ], [ -123.280996166999941, 49.357765956000073 ], [ -123.281036035999975, 49.35776586 ], [ -123.281138333999976, 49.357792743000076 ], [ -123.281138629999987, 49.357844477000043 ], [ -123.281453877999965, 49.358034695000043 ], [ -123.28155284099995, 49.358034454000048 ], [ -123.28155208199999, 49.357901470000044 ], [ -123.281573879999939, 49.357907200000106 ], [ -123.281753189999932, 49.357907188000048 ], [ -123.282185142999978, 49.35776306000011 ], [ -123.283108597999941, 49.35776080300009 ], [ -123.283183815999934, 49.357813200000074 ], [ -123.283417695999987, 49.357813189000112 ], [ -123.28356948899993, 49.35775967400005 ], [ -123.283839734999987, 49.357759010000052 ], [ -123.283925735999958, 49.357734663000102 ], [ -123.284168147999964, 49.357715053000028 ], [ -123.284340680999918, 49.357739101000085 ], [ -123.284603905999987, 49.358016793000019 ], [ -123.284468706999974, 49.358458286000129 ], [ -123.2845574, 49.358639404000037 ], [ -123.284578637999985, 49.358817963000064 ], [ -123.284450860999954, 49.359096141000073 ], [ -123.284451838999971, 49.359265505000081 ], [ -123.284258333999958, 49.359721834 ], [ -123.284243638999897, 49.359740163000055 ], [ -123.284042521999979, 49.35992931500008 ], [ -123.284042637000013, 49.359949061000052 ], [ -123.283812965999957, 49.360187744000029 ], [ -123.283767628999954, 49.360187855000063 ], [ -123.283631600999925, 49.360315790000087 ], [ -123.283631945999986, 49.360375867000094 ], [ -123.283292407999951, 49.360728725000079 ], [ -123.283246222999935, 49.360728837000089 ], [ -123.283221028999918, 49.360764134000078 ], [ -123.283221548999975, 49.360854800000034 ], [ -123.283181713, 49.360998848000087 ], [ -123.283053254, 49.360999163000052 ], [ -123.28281117099999, 49.361338286000034 ], [ -123.282812322999973, 49.361539456000031 ], [ -123.282582631999901, 49.361540019000081 ], [ -123.282399902999941, 49.361668189000071 ], [ -123.282400716, 49.361810314000095 ], [ -123.282188919999939, 49.361810832000067 ], [ -123.281988316999943, 49.361943202000148 ], [ -123.281989106999987, 49.362081172000039 ], [ -123.281879934999921, 49.362081439000143 ], [ -123.281848608999965, 49.362614901000036 ], [ -123.281848238999984, 49.362621219000083 ], [ -123.281906207999953, 49.362621077000071 ], [ -123.281991934999951, 49.362575837000115 ], [ -123.281991780999959, 49.362548959000073 ], [ -123.281990648999937, 49.362351020000105 ], [ -123.282366468999939, 49.362350102000022 ], [ -123.282505635999968, 49.362255863000037 ], [ -123.282605851999946, 49.362266124000044 ], [ -123.282819135999944, 49.36228796300005 ], [ -123.283605035999983, 49.362192963000041 ], [ -123.283695370999965, 49.362209361000097 ], [ -123.283814707999952, 49.362255310000087 ], [ -123.28392619899995, 49.362251262000044 ], [ -123.284009936999894, 49.362266462000044 ], [ -123.284762035999933, 49.36227176300013 ], [ -123.285079470999975, 49.362334296000043 ], [ -123.285428248999935, 49.362534818000029 ], [ -123.285542243999942, 49.362612153000086 ], [ -123.285562671999983, 49.362612104000064 ], [ -123.285608417, 49.362638403000048 ], [ -123.285788603999961, 49.362611545000057 ], [ -123.285878221999951, 49.362611322000099 ], [ -123.28595583699996, 49.362568462000056 ], [ -123.286221235999946, 49.362346162000058 ], [ -123.28640793699999, 49.362288062000061 ], [ -123.286752336999939, 49.362320563000047 ], [ -123.286775092999946, 49.362338019000028 ], [ -123.286958310000017, 49.362850587000082 ], [ -123.28704633699999, 49.36286870100011 ], [ -123.287065048999963, 49.362878234000036 ], [ -123.28709233699999, 49.362878166000037 ], [ -123.287365184999942, 49.362934311000082 ], [ -123.287365750999982, 49.363031437000089 ], [ -123.287385035999989, 49.363041262000074 ], [ -123.28741121799996, 49.363133030000107 ], [ -123.287393414999926, 49.364216404000047 ], [ -123.287615990999981, 49.36467499000004 ], [ -123.287551391999955, 49.365231893000079 ], [ -123.287149404, 49.366228456000051 ], [ -123.28711844899999, 49.36625657900003 ], [ -123.286156295999902, 49.366818397000031 ], [ -123.286049436, 49.366928529000056 ], [ -123.286005554999974, 49.366928638000076 ], [ -123.285864135999987, 49.367005563000049 ], [ -123.28573657799997, 49.36708827300005 ], [ -123.285737220999948, 49.367199154000041 ], [ -123.285564919999956, 49.367199578000069 ], [ -123.285324918999905, 49.367355198000062 ], [ -123.28532549599997, 49.367454812000062 ], [ -123.285295279999914, 49.367470097000066 ], [ -123.285147150999947, 49.36747046200005 ], [ -123.284913255, 49.367622119000053 ], [ -123.284913491999987, 49.367663224000069 ], [ -123.28461840199995, 49.367812492000027 ], [ -123.28449578699994, 49.367983500000065 ], [ -123.284455289, 49.368281722000049 ], [ -123.284289666999925, 49.368282128000033 ], [ -123.284228116999955, 49.368365033000096 ], [ -123.284014332999931, 49.368374745000061 ], [ -123.283982164999912, 49.368381527000054 ], [ -123.283939501999967, 49.368385515000043 ], [ -123.283047533999948, 49.368571797000058 ], [ -123.281542574999946, 49.368340387000103 ], [ -123.281471164999928, 49.368032413000094 ], [ -123.281476046999941, 49.367386852000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28931250", "BldgCostT": "17535000", "sL_LossRatio": "0.786279010456516", "sL_AssetLoss": "117630", "sL_BldgLoss": "92490", "sL_StrLoss": "49970", "sL_NStrLoss": "42520", "sL_ContLoss": "25140", "geom_point": "0101000020E6100000927D5F7587D15EC0F7EF1BDB42AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.271946298999978, 49.352865506000072 ], [ -123.272110888999961, 49.352658997000027 ], [ -123.272221512999948, 49.35264899400007 ], [ -123.272636193999944, 49.35285551400009 ], [ -123.27322609399999, 49.352476702000025 ], [ -123.273637783999959, 49.352367003000047 ], [ -123.274092016999973, 49.352348507000059 ], [ -123.274710311999968, 49.351969599000014 ], [ -123.274929688999961, 49.351941189000037 ], [ -123.275454, 49.351976805000042 ], [ -123.275578294999917, 49.352120597000095 ], [ -123.275517099999945, 49.35352350700002 ], [ -123.275326487, 49.353892293000115 ], [ -123.274681918999974, 49.354550295000067 ], [ -123.274452802999946, 49.355181202000018 ], [ -123.274164802999948, 49.355334992000024 ], [ -123.273502905999976, 49.355380595000028 ], [ -123.272868997999979, 49.355167007 ], [ -123.272591892999912, 49.354906412000091 ], [ -123.272573307999934, 49.353997694000029 ], [ -123.272074189999927, 49.353467892000012 ], [ -123.271946298999978, 49.352865506000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93453584", "BldgCostT": "62008334", "sL_LossRatio": "0.722739939263799", "sL_AssetLoss": "1439010", "sL_BldgLoss": "1040030", "sL_StrLoss": "456660", "sL_NStrLoss": "583370", "sL_ContLoss": "398980", "geom_point": "0101000020E610000090002489D4D15EC047DB9D5AA2AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.2772012289999, 49.369307506000077 ], [ -123.277150180999968, 49.369285307000041 ], [ -123.276312433000015, 49.370021563000073 ], [ -123.276218193999966, 49.369236651000051 ], [ -123.276098406999964, 49.369639089 ], [ -123.276034127999978, 49.369855070000028 ], [ -123.275808533, 49.369693685000115 ], [ -123.275669683999951, 49.369596556000033 ], [ -123.275621270999977, 49.369563819000099 ], [ -123.275522383999913, 49.369479406000018 ], [ -123.275439885999958, 49.36940705300006 ], [ -123.275243349999954, 49.369167964000063 ], [ -123.27506815199996, 49.36895921000005 ], [ -123.274979796999943, 49.36885391600007 ], [ -123.274973172999978, 49.368845987000064 ], [ -123.27499946099999, 49.368786963000034 ], [ -123.275401521999967, 49.367884222000072 ], [ -123.275392030999967, 49.367631770000052 ], [ -123.275384365999969, 49.3674272330001 ], [ -123.275266343999959, 49.366889013000048 ], [ -123.27525629599991, 49.366843171000049 ], [ -123.27508523499999, 49.36649635200007 ], [ -123.275067093999894, 49.366459577000086 ], [ -123.274988883999924, 49.36630102800008 ], [ -123.274987725999935, 49.366093398000075 ], [ -123.27488517399992, 49.366090815000113 ], [ -123.274862714000022, 49.366045298000117 ], [ -123.274854633999936, 49.365979803000123 ], [ -123.274828650999979, 49.365769759000074 ], [ -123.27480957099999, 49.365615310000059 ], [ -123.274841740999932, 49.365527661000101 ], [ -123.274876935999956, 49.365431847000075 ], [ -123.274945254999963, 49.365245739000081 ], [ -123.275136967999984, 49.364723627000082 ], [ -123.27542352599994, 49.363943120000094 ], [ -123.275534235999928, 49.363641606000087 ], [ -123.275591073, 49.363331451000107 ], [ -123.275475844999931, 49.362716182000092 ], [ -123.275333026999988, 49.36250000400004 ], [ -123.275631646999955, 49.362507526000044 ], [ -123.275794082999965, 49.362511617000081 ], [ -123.275794022999889, 49.362500687000058 ], [ -123.27579326899999, 49.362365970000027 ], [ -123.275736081999966, 49.362366107000106 ], [ -123.275561922999913, 49.362366523000034 ], [ -123.275380108999968, 49.362366955000084 ], [ -123.275378544999938, 49.362086748000152 ], [ -123.275377094999939, 49.361827260000062 ], [ -123.27512332500001, 49.361827864000077 ], [ -123.274675786, 49.36182892900004 ], [ -123.274661495999965, 49.3618176680001 ], [ -123.274170039999944, 49.361560334000075 ], [ -123.273759361, 49.36142842200006 ], [ -123.273501573999937, 49.361411098000083 ], [ -123.273540858999951, 49.36132833900011 ], [ -123.273622749999916, 49.361153007000077 ], [ -123.273068001999945, 49.361059793000031 ], [ -123.271767517999947, 49.360983763000057 ], [ -123.271315011999974, 49.361027309000058 ], [ -123.270918662999989, 49.361028238000088 ], [ -123.271968251999965, 49.360800606000083 ], [ -123.273674088999925, 49.360514896000041 ], [ -123.273912454999959, 49.360699174000025 ], [ -123.273830843999946, 49.36077551500005 ], [ -123.273750891999953, 49.360917592000064 ], [ -123.273694888999913, 49.361003511000014 ], [ -123.274060813999981, 49.361077591 ], [ -123.274626948999952, 49.361281878000106 ], [ -123.275225814999928, 49.361654506000029 ], [ -123.274909684999969, 49.361343044000122 ], [ -123.274825208, 49.361187780000087 ], [ -123.274788012999963, 49.36111843900008 ], [ -123.274762914999897, 49.360913377000017 ], [ -123.274863732999947, 49.360603454000064 ], [ -123.274835511, 49.360498268000072 ], [ -123.27470834499999, 49.360367187000087 ], [ -123.274948497, 49.360215705000037 ], [ -123.274990162, 49.360121561000028 ], [ -123.275062780999988, 49.35995740300006 ], [ -123.275023599999912, 49.359688900000151 ], [ -123.275086099999953, 49.359468990000067 ], [ -123.27525011699997, 49.359347899000099 ], [ -123.275491576999968, 49.359220699000062 ], [ -123.275545591999958, 49.359121191000078 ], [ -123.275546704999954, 49.358986204000082 ], [ -123.275630005999972, 49.358857700000108 ], [ -123.276340798999968, 49.358427113000097 ], [ -123.276648888999887, 49.358336810000061 ], [ -123.276956183999943, 49.358331892000052 ], [ -123.277043096999947, 49.358422315000048 ], [ -123.276894913999911, 49.35946772500008 ], [ -123.276577437999947, 49.360722333000069 ], [ -123.27669594799994, 49.361047617000082 ], [ -123.277010682999943, 49.361196774000106 ], [ -123.277532940999933, 49.36144423100005 ], [ -123.277759707999948, 49.36121669400012 ], [ -123.277775011999978, 49.361167692000123 ], [ -123.278602210999964, 49.358522796000081 ], [ -123.2787313799999, 49.358550356000073 ], [ -123.279320317999975, 49.358787610000071 ], [ -123.279874326999959, 49.359033873000023 ], [ -123.280199655999951, 49.359166350000109 ], [ -123.280287214999987, 49.359144617000034 ], [ -123.28052041699999, 49.359086742000073 ], [ -123.280546200999979, 49.359080363000025 ], [ -123.280960931999942, 49.358977465000123 ], [ -123.281202962999913, 49.358888085000125 ], [ -123.281213474999973, 49.35888146700006 ], [ -123.281318713999951, 49.358815357000026 ], [ -123.281527822999948, 49.358582879000068 ], [ -123.281644763999978, 49.358513763000119 ], [ -123.28220034499995, 49.358381834000092 ], [ -123.2824017499999, 49.358397719000052 ], [ -123.282420904999952, 49.358403807000045 ], [ -123.282689550999962, 49.358489597000066 ], [ -123.282916746999931, 49.358534918000046 ], [ -123.283598027999972, 49.358794284000048 ], [ -123.283695105, 49.358875960000013 ], [ -123.283708467999972, 49.358952836000071 ], [ -123.28341607899992, 49.3596434070001 ], [ -123.28257618399999, 49.359998713000039 ], [ -123.282292608999953, 49.360139285000116 ], [ -123.281643176999978, 49.360368811000086 ], [ -123.28108289099994, 49.360721247000079 ], [ -123.280787742999934, 49.361110661000119 ], [ -123.28042184, 49.361593439000082 ], [ -123.28041254399993, 49.36186874800012 ], [ -123.28047919799991, 49.362000188000081 ], [ -123.280606571999925, 49.362251308000104 ], [ -123.280616111999962, 49.362270099000099 ], [ -123.280629791999928, 49.36232235100006 ], [ -123.280474795999979, 49.362661748000065 ], [ -123.279379114999955, 49.36335160400003 ], [ -123.279232846999932, 49.36367165100004 ], [ -123.279514492999922, 49.364196549000106 ], [ -123.280013768999979, 49.364383814000107 ], [ -123.280319992999964, 49.364498658000095 ], [ -123.280385549999892, 49.36453135300011 ], [ -123.280590127999986, 49.364633322000032 ], [ -123.280642619999966, 49.364680339000067 ], [ -123.280773237999981, 49.364797327000112 ], [ -123.281964352, 49.364346382000051 ], [ -123.282600998999953, 49.364030999000114 ], [ -123.282918700999957, 49.363966026000064 ], [ -123.283237363999888, 49.364165835000129 ], [ -123.283332778000016, 49.364298825000084 ], [ -123.283423036999963, 49.364801773000103 ], [ -123.283469110999974, 49.364908287000034 ], [ -123.283780457999953, 49.365279904000076 ], [ -123.283841662999976, 49.365480466000037 ], [ -123.283779983999949, 49.365757173000041 ], [ -123.282994830999925, 49.366890120000036 ], [ -123.282698678999978, 49.367174445000053 ], [ -123.282414666, 49.36732220100005 ], [ -123.282262428999942, 49.367358902000056 ], [ -123.28209595700001, 49.367356517000111 ], [ -123.281627144999945, 49.36727540400009 ], [ -123.281440230999934, 49.367293210000106 ], [ -123.281476046999941, 49.367386852000067 ], [ -123.281471164999928, 49.368032413000094 ], [ -123.281542574999946, 49.368340387000103 ], [ -123.281534697999973, 49.368427538000091 ], [ -123.281141365999943, 49.368841797000087 ], [ -123.280421885999971, 49.369604495000068 ], [ -123.27981417699999, 49.370176302000111 ], [ -123.279720811999937, 49.370196505000088 ], [ -123.279668557999969, 49.370241991000064 ], [ -123.27949457199999, 49.370226810000069 ], [ -123.278956297999969, 49.369944012000055 ], [ -123.27857449399994, 49.369904687000023 ], [ -123.2772012289999, 49.369307506000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188146001", "BldgCostT": "128755001", "sL_LossRatio": "0.83960759774732", "sL_AssetLoss": "990820", "sL_BldgLoss": "831900", "sL_StrLoss": "503207", "sL_NStrLoss": "328693", "sL_ContLoss": "158920", "geom_point": "0101000020E6100000FB6B367F21D15EC0D9D64FFFD9AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.266693550999946, 49.360498358000015 ], [ -123.267106695, 49.360497406000043 ], [ -123.267105383999962, 49.360255322000064 ], [ -123.266692613999936, 49.360324884000065 ], [ -123.266693550999946, 49.360498358000015 ], [ -123.265648930999987, 49.360500764000115 ], [ -123.265454294999941, 49.36053356200005 ], [ -123.265455572999883, 49.360771061000101 ], [ -123.262976698999978, 49.360776726000068 ], [ -123.26297636399994, 49.360714021000085 ], [ -123.262149951999973, 49.36069310600007 ], [ -123.262151841, 49.361048452000084 ], [ -123.262564988999941, 49.361047513000116 ], [ -123.262569298999949, 49.361857060000084 ], [ -123.261524636999923, 49.361859428000038 ], [ -123.260919434999977, 49.361860796000023 ], [ -123.260717587999935, 49.36182351300004 ], [ -123.260503111999952, 49.361783914000092 ], [ -123.260502557999985, 49.361678699000073 ], [ -123.260502097999932, 49.361591884000148 ], [ -123.260164054999962, 49.361592647000109 ], [ -123.259779558999952, 49.36159351000007 ], [ -123.259675629999919, 49.361562999000064 ], [ -123.25967504799992, 49.361452479000079 ], [ -123.259674370999946, 49.361323895000083 ], [ -123.25930899799999, 49.361324716000084 ], [ -123.258960355999974, 49.361325497000017 ], [ -123.258847864999922, 49.3612866490001 ], [ -123.258847216000035, 49.361163260000097 ], [ -123.258846652999964, 49.361055900000096 ], [ -123.25854210699994, 49.361056581000099 ], [ -123.258183971999983, 49.361057382000062 ], [ -123.258020059, 49.36100077400009 ], [ -123.258019393999959, 49.360873816000051 ], [ -123.258018946, 49.360787897000044 ], [ -123.257774405999911, 49.360788443000061 ], [ -123.257407596999954, 49.360789260000068 ], [ -123.257192261999975, 49.360714894000061 ], [ -123.257191586999966, 49.360585752000084 ], [ -123.257191244999945, 49.360519891000095 ], [ -123.257003414999943, 49.360520308 ], [ -123.256631232999908, 49.360521135000091 ], [ -123.256245966999941, 49.360388076000035 ], [ -123.255898350999971, 49.360268016000113 ], [ -123.256151468999931, 49.360224016000053 ], [ -123.256725033999913, 49.360185412000128 ], [ -123.257163231999982, 49.360223546000036 ], [ -123.257612556999973, 49.360353816000064 ], [ -123.257656419999989, 49.360367382000042 ], [ -123.257876169000014, 49.36043523700004 ], [ -123.258100097999929, 49.360473958000121 ], [ -123.258230436999966, 49.360496460000057 ], [ -123.259021972999932, 49.360566048000116 ], [ -123.259291376999968, 49.360618819000081 ], [ -123.259729324999924, 49.360824416000106 ], [ -123.259851493999975, 49.360821246000157 ], [ -123.259869975999976, 49.360820771000085 ], [ -123.259882328999964, 49.360815027000051 ], [ -123.259921358999961, 49.360796872000058 ], [ -123.259987443999975, 49.36076611700004 ], [ -123.260098183999943, 49.360630805000035 ], [ -123.26012099399999, 49.360602897000057 ], [ -123.26014263499998, 49.360470179000046 ], [ -123.260115199999987, 49.360282172000055 ], [ -123.260071986999918, 49.360198211000039 ], [ -123.25999052, 49.360133127000033 ], [ -123.259767993999944, 49.360055444000061 ], [ -123.259406311999925, 49.359956229000062 ], [ -123.25919685199996, 49.359867148000035 ], [ -123.259150398999964, 49.359824376000077 ], [ -123.25909634599995, 49.359774546000025 ], [ -123.259023575999947, 49.359608811 ], [ -123.258982001999968, 49.359195326000098 ], [ -123.258970303999931, 49.359043739000064 ], [ -123.25899899099997, 49.358609569000116 ], [ -123.259004943999969, 49.358519814000054 ], [ -123.259049851999961, 49.357839917000014 ], [ -123.259090635999897, 49.35779625800005 ], [ -123.259210046999925, 49.35766838800005 ], [ -123.259350281999929, 49.35761510800014 ], [ -123.25959457, 49.357522286000155 ], [ -123.259611126999943, 49.357516 ], [ -123.259678949999952, 49.357490240000061 ], [ -123.259817414999972, 49.357406414000081 ], [ -123.259842315999947, 49.357376484000042 ], [ -123.259900387999934, 49.357306740000148 ], [ -123.259942010999978, 49.357228315000043 ], [ -123.260121976999955, 49.356889232000057 ], [ -123.260221084999969, 49.356702507000108 ], [ -123.26084275099997, 49.356129300000063 ], [ -123.261193658999943, 49.355804977000091 ], [ -123.26133516199998, 49.355599639000097 ], [ -123.261378858999933, 49.355443162000036 ], [ -123.2613589599999, 49.355150882000082 ], [ -123.261273330999984, 49.355071345000049 ], [ -123.261130636999923, 49.354938862000068 ], [ -123.260105905999978, 49.354498095000089 ], [ -123.259838119999955, 49.354382904000026 ], [ -123.259218439, 49.354039411000031 ], [ -123.258994133000016, 49.353829311000069 ], [ -123.25891147399993, 49.353644390000035 ], [ -123.258932452999929, 49.353496863000039 ], [ -123.25894216899998, 49.353428135000058 ], [ -123.259066430999951, 49.353189047000036 ], [ -123.259181948999966, 49.35305147300005 ], [ -123.259273874999948, 49.353009702000122 ], [ -123.260609856999963, 49.352923765000064 ], [ -123.260629138999917, 49.353017007000091 ], [ -123.260797770999929, 49.353237409000052 ], [ -123.261035468999921, 49.353407340000047 ], [ -123.261319892999921, 49.353531605000114 ], [ -123.261937481999922, 49.353677827000062 ], [ -123.262114830999934, 49.353740756000057 ], [ -123.262341882999948, 49.35382135900003 ], [ -123.262414923999955, 49.353867315000088 ], [ -123.262607272999901, 49.353988361000098 ], [ -123.262963543999959, 49.354327759000135 ], [ -123.263121958999974, 49.354478668000063 ], [ -123.263197012999953, 49.354675994000075 ], [ -123.263133223999972, 49.354893200000106 ], [ -123.262686043, 49.355566303000074 ], [ -123.262637367999957, 49.355760492000087 ], [ -123.262664381999983, 49.355932287000073 ], [ -123.262748245999944, 49.356096490000013 ], [ -123.262926658999973, 49.356220801000084 ], [ -123.26446000599995, 49.356710752000026 ], [ -123.26450996199992, 49.356633658000078 ], [ -123.264415473999946, 49.356066640000115 ], [ -123.264603117, 49.355616606000062 ], [ -123.265046787999921, 49.355212681000083 ], [ -123.266125138999968, 49.354455579000025 ], [ -123.266600780999966, 49.354255962000046 ], [ -123.267160174999958, 49.354045595000052 ], [ -123.267518538999923, 49.353910830000082 ], [ -123.267758606999934, 49.353877299000096 ], [ -123.26808459199998, 49.353881018000045 ], [ -123.268252192999981, 49.35390956400007 ], [ -123.268937411999957, 49.354193440000095 ], [ -123.269185510999975, 49.354350095 ], [ -123.269015633999956, 49.354897794000081 ], [ -123.268766116999956, 49.355183312000122 ], [ -123.268155923999942, 49.355424542000058 ], [ -123.267954791999969, 49.355404157000066 ], [ -123.26774299499999, 49.355307857000078 ], [ -123.267536212, 49.355127034000056 ], [ -123.26725009799999, 49.355077483000073 ], [ -123.267257011, 49.35509678600004 ], [ -123.267369487999929, 49.355410084000063 ], [ -123.267316962999971, 49.35557715400008 ], [ -123.267309703999942, 49.356002915000083 ], [ -123.267240293, 49.356246120000087 ], [ -123.267918286999972, 49.356699100000128 ], [ -123.26801472699999, 49.356814101000069 ], [ -123.26802113599993, 49.356875679000147 ], [ -123.268024395999959, 49.356907105000118 ], [ -123.267978065999955, 49.356992393000034 ], [ -123.26783409799999, 49.357076099000075 ], [ -123.267736782999989, 49.357099934000075 ], [ -123.267507286999901, 49.357156093000114 ], [ -123.267166384999967, 49.357311384000106 ], [ -123.267011379999957, 49.357442553000062 ], [ -123.266801228999952, 49.357551620000024 ], [ -123.26689433300001, 49.357723269000068 ], [ -123.266861775999942, 49.358460896000075 ], [ -123.266906552999956, 49.358565574000103 ], [ -123.267069481999968, 49.358720075000093 ], [ -123.267389620999964, 49.358846134000061 ], [ -123.267635858999967, 49.358872174000112 ], [ -123.267900201999964, 49.358824802000093 ], [ -123.268938264999946, 49.358378238000071 ], [ -123.270020256999928, 49.35810628000015 ], [ -123.271729684999912, 49.357676569000041 ], [ -123.272291480999925, 49.357535333 ], [ -123.273001571999913, 49.357280370000105 ], [ -123.273277623999917, 49.357133067000113 ], [ -123.273723512999936, 49.356895141000081 ], [ -123.274398499999961, 49.35634840700007 ], [ -123.275278111999967, 49.356066183000046 ], [ -123.275858585999941, 49.355674692000029 ], [ -123.276108561999962, 49.355590038000059 ], [ -123.27646075499996, 49.355569181000099 ], [ -123.27720944399999, 49.355743063000141 ], [ -123.278069819999956, 49.355942880000086 ], [ -123.278680138999974, 49.35621400100009 ], [ -123.278924515999975, 49.356435357000059 ], [ -123.279083460999956, 49.356728449000094 ], [ -123.279080422999925, 49.357061557000087 ], [ -123.278602210999964, 49.358522796000081 ], [ -123.277775011999978, 49.361167692000123 ], [ -123.277759707999948, 49.36121669400012 ], [ -123.277532940999933, 49.36144423100005 ], [ -123.277010682999943, 49.361196774000106 ], [ -123.27669594799994, 49.361047617000082 ], [ -123.276577437999947, 49.360722333000069 ], [ -123.276894913999911, 49.35946772500008 ], [ -123.277043096999947, 49.358422315000048 ], [ -123.276956183999943, 49.358331892000052 ], [ -123.276648888999887, 49.358336810000061 ], [ -123.276340798999968, 49.358427113000097 ], [ -123.275630005999972, 49.358857700000108 ], [ -123.275546704999954, 49.358986204000082 ], [ -123.275545591999958, 49.359121191000078 ], [ -123.275491576999968, 49.359220699000062 ], [ -123.27525011699997, 49.359347899000099 ], [ -123.275086099999953, 49.359468990000067 ], [ -123.275023599999912, 49.359688900000151 ], [ -123.275062780999988, 49.35995740300006 ], [ -123.274990162, 49.360121561000028 ], [ -123.274948497, 49.360215705000037 ], [ -123.27470834499999, 49.360367187000087 ], [ -123.274835511, 49.360498268000072 ], [ -123.274863732999947, 49.360603454000064 ], [ -123.274762914999897, 49.360913377000017 ], [ -123.274788012999963, 49.36111843900008 ], [ -123.274825208, 49.361187780000087 ], [ -123.274909684999969, 49.361343044000122 ], [ -123.275225814999928, 49.361654506000029 ], [ -123.274626948999952, 49.361281878000106 ], [ -123.274060813999981, 49.361077591 ], [ -123.273694888999913, 49.361003511000014 ], [ -123.273750891999953, 49.360917592000064 ], [ -123.273830843999946, 49.36077551500005 ], [ -123.273912454999959, 49.360699174000025 ], [ -123.273674088999925, 49.360514896000041 ], [ -123.271968251999965, 49.360800606000083 ], [ -123.270918662999989, 49.361028238000088 ], [ -123.270315035999957, 49.36102965200012 ], [ -123.269588507999941, 49.361031348000083 ], [ -123.269589072999906, 49.361134831000115 ], [ -123.269589684999943, 49.36124695200008 ], [ -123.26927763099999, 49.361301924000024 ], [ -123.268542669999945, 49.361303634000073 ], [ -123.267937381999957, 49.361305039000101 ], [ -123.267937950999951, 49.361409732000048 ], [ -123.267938643999969, 49.36153740200006 ], [ -123.267719724999935, 49.361575395000024 ], [ -123.266983977999971, 49.36157709600009 ], [ -123.266699389999985, 49.361577753000041 ], [ -123.266693550999946, 49.360498358000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105274000", "BldgCostT": "71425000", "sL_LossRatio": "0.836694680235871", "sL_AssetLoss": "473818", "sL_BldgLoss": "396441", "sL_StrLoss": "238879", "sL_NStrLoss": "157562", "sL_ContLoss": "77377", "geom_point": "0101000020E6100000FBCC6110FBCF5EC0DF08FFE0CBAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.247529296999986, 49.353895605000105 ], [ -123.247297831999944, 49.353853681000025 ], [ -123.247027375999977, 49.353864824000048 ], [ -123.246108258, 49.354161112000099 ], [ -123.245866423999985, 49.354177474000075 ], [ -123.2454268799999, 49.354115839000031 ], [ -123.245443815999963, 49.35401630900008 ], [ -123.24530545699993, 49.353843483000063 ], [ -123.24508938, 49.353704702000122 ], [ -123.244810139999956, 49.353609338000055 ], [ -123.244526431999986, 49.353566073000131 ], [ -123.243490162999962, 49.353587400000052 ], [ -123.243173949999928, 49.353535219000065 ], [ -123.242951118999926, 49.353440369000097 ], [ -123.242735973999928, 49.353262882000088 ], [ -123.242669674999945, 49.353081982000063 ], [ -123.242702450999943, 49.352947745000101 ], [ -123.242880380999949, 49.352317389000078 ], [ -123.243006805999983, 49.351927970000055 ], [ -123.243192792999977, 49.35176249800007 ], [ -123.24344197299996, 49.351622964000057 ], [ -123.243724859999958, 49.351541013000023 ], [ -123.243885934999938, 49.351515632000016 ], [ -123.243900137, 49.35151338900004 ], [ -123.244516755999925, 49.351416209000028 ], [ -123.24486833099995, 49.351359431000091 ], [ -123.245327897999985, 49.35116877300004 ], [ -123.245451134999939, 49.351117629000022 ], [ -123.245592246999962, 49.350897697000065 ], [ -123.245652149999927, 49.350804368000034 ], [ -123.245715507999989, 49.350705620000085 ], [ -123.245727417999959, 49.350687066000063 ], [ -123.24593935899999, 49.350128626000064 ], [ -123.248220412999913, 49.34884487600003 ], [ -123.248468853999967, 49.348137956000066 ], [ -123.249703724999918, 49.346949123000087 ], [ -123.25001668099999, 49.346545542000108 ], [ -123.250032026999946, 49.346171286000043 ], [ -123.251313577999937, 49.345956213000065 ], [ -123.252687694999949, 49.345757896000102 ], [ -123.252914983999943, 49.345684425000094 ], [ -123.253070430999941, 49.345569516000047 ], [ -123.253195594999937, 49.345361938000067 ], [ -123.253199563999942, 49.345248587000114 ], [ -123.253134754999962, 49.345111853000105 ], [ -123.254072667999978, 49.344842990000132 ], [ -123.254440141000018, 49.344795580000053 ], [ -123.25559166, 49.344706859000027 ], [ -123.256320858999985, 49.344476792000115 ], [ -123.256495846999911, 49.344426304000088 ], [ -123.256713530999917, 49.344398519000087 ], [ -123.256999776999947, 49.344398572000074 ], [ -123.25698724399993, 49.344609897000034 ], [ -123.256884657999962, 49.344762175000085 ], [ -123.25675623099994, 49.344862487000029 ], [ -123.256092360999986, 49.34520504200006 ], [ -123.255914482999913, 49.34529682100009 ], [ -123.255120583999897, 49.345875532000036 ], [ -123.255036063999938, 49.346001274000031 ], [ -123.254940784999988, 49.346285223000059 ], [ -123.25480067399991, 49.346605899000124 ], [ -123.254003933999982, 49.346961964000073 ], [ -123.253691025999942, 49.347101799000107 ], [ -123.253547110999961, 49.347230503000098 ], [ -123.253510203999937, 49.347365594000088 ], [ -123.253537767999916, 49.34755 ], [ -123.253638013999961, 49.347717281000016 ], [ -123.25397559399994, 49.348126696000094 ], [ -123.25428539399995, 49.348327598000019 ], [ -123.255061004999916, 49.348830528000057 ], [ -123.254703804999934, 49.349191589000078 ], [ -123.254348270999941, 49.349732808000077 ], [ -123.254073034999962, 49.349941945000111 ], [ -123.253657635999929, 49.350170042000059 ], [ -123.252245974999937, 49.350697030000035 ], [ -123.252123662, 49.350787585000091 ], [ -123.251856543999935, 49.351094368000091 ], [ -123.251806086999963, 49.351152343000145 ], [ -123.251674094999913, 49.351347857000071 ], [ -123.25156160899995, 49.351514493000074 ], [ -123.251474904999952, 49.351631091000058 ], [ -123.251376551999982, 49.351763407000128 ], [ -123.25108000499992, 49.352162306000025 ], [ -123.251026744999976, 49.352348208000137 ], [ -123.25093632, 49.352663798000066 ], [ -123.2508950499999, 49.352807837000057 ], [ -123.250892514999975, 49.352816760000096 ], [ -123.250885656999941, 49.352824776000013 ], [ -123.250719604, 49.353019663000055 ], [ -123.250599573999963, 49.353160526000082 ], [ -123.25011921199993, 49.353439191000106 ], [ -123.249224355999942, 49.353790145000119 ], [ -123.248725394999894, 49.354034117 ], [ -123.248394656999935, 49.354297447000135 ], [ -123.248312191999943, 49.354363101000104 ], [ -123.24811382599998, 49.354342760000087 ], [ -123.247729647, 49.353975447000096 ], [ -123.247529296999986, 49.353895605000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68995833", "BldgCostT": "47583333", "sL_LossRatio": "0.863956005539645", "sL_AssetLoss": "297492", "sL_BldgLoss": "257020", "sL_StrLoss": "163050", "sL_NStrLoss": "93970", "sL_ContLoss": "40472", "geom_point": "0101000020E6100000B3953C43DDCF5EC06C6D8E317FAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.241363696999926, 49.357745043000143 ], [ -123.241333506999979, 49.357604703000099 ], [ -123.241371871999917, 49.357446277000108 ], [ -123.24149871899999, 49.35728111100007 ], [ -123.241698613999958, 49.357160154000056 ], [ -123.241949724, 49.357080998000114 ], [ -123.242642888999953, 49.35702120600007 ], [ -123.243190754999929, 49.356928023000066 ], [ -123.244020778999968, 49.356511521000101 ], [ -123.244321706999983, 49.356312051 ], [ -123.244407611999961, 49.356209769000081 ], [ -123.244462370999926, 49.356030158000081 ], [ -123.244442660999951, 49.355852256000048 ], [ -123.244342956999915, 49.355723623000095 ], [ -123.244156021999913, 49.355581086000051 ], [ -123.243298815999964, 49.355136886000032 ], [ -123.242950969, 49.355014556000164 ], [ -123.242421344000022, 49.354940701000039 ], [ -123.242079639999957, 49.354900472000118 ], [ -123.24189729599999, 49.354841782000037 ], [ -123.241813384999915, 49.354772093000065 ], [ -123.241800066999971, 49.354695227000057 ], [ -123.24185531199997, 49.354622785000053 ], [ -123.241991132999928, 49.354560514000092 ], [ -123.242272109999931, 49.354510934000089 ], [ -123.242668050999896, 49.354495809000113 ], [ -123.24373982899999, 49.354595185000058 ], [ -123.244162547999963, 49.35459243500005 ], [ -123.244538132999949, 49.35454887800006 ], [ -123.245047357999951, 49.354433991000143 ], [ -123.2452442299999, 49.354340837000095 ], [ -123.245375057999965, 49.354223502000082 ], [ -123.2454268799999, 49.354115839000031 ], [ -123.245866423999985, 49.354177474000075 ], [ -123.246108258, 49.354161112000099 ], [ -123.247027375999977, 49.353864824000048 ], [ -123.247297831999944, 49.353853681000025 ], [ -123.247529296999986, 49.353895605000105 ], [ -123.247729647, 49.353975447000096 ], [ -123.24811382599998, 49.354342760000087 ], [ -123.248312191999943, 49.354363101000104 ], [ -123.248394656999935, 49.354297447000135 ], [ -123.248725394999894, 49.354034117 ], [ -123.249224355999942, 49.353790145000119 ], [ -123.25011921199993, 49.353439191000106 ], [ -123.250599573999963, 49.353160526000082 ], [ -123.250719604, 49.353019663000055 ], [ -123.250885656999941, 49.352824776000013 ], [ -123.250892514999975, 49.352816760000096 ], [ -123.2508950499999, 49.352807837000057 ], [ -123.25093632, 49.352663798000066 ], [ -123.251026744999976, 49.352348208000137 ], [ -123.25108000499992, 49.352162306000025 ], [ -123.251956211999968, 49.352402518000112 ], [ -123.252668088999911, 49.352744799000099 ], [ -123.253002630999944, 49.353021673000057 ], [ -123.25317972, 49.353417515000089 ], [ -123.253204346999937, 49.353472568 ], [ -123.253287723999904, 49.353807807000088 ], [ -123.253495503999972, 49.35464345400004 ], [ -123.253462437999957, 49.355084802000093 ], [ -123.253239027999953, 49.355880590000048 ], [ -123.252924443999916, 49.355847400000144 ], [ -123.252757265999946, 49.355880983000098 ], [ -123.252393134999949, 49.356056343000084 ], [ -123.252145824999928, 49.356095087000021 ], [ -123.251757454999918, 49.356098709000051 ], [ -123.251209397999972, 49.35610281300012 ], [ -123.25052085, 49.356108711000033 ], [ -123.25000401199999, 49.356059809000044 ], [ -123.249961011999943, 49.356055754000096 ], [ -123.249322557999989, 49.356237643000085 ], [ -123.248881700999974, 49.356313783000076 ], [ -123.248478338999988, 49.356315209000094 ], [ -123.247737908999966, 49.356267574000107 ], [ -123.247692194999914, 49.356920198000076 ], [ -123.247575823999966, 49.35721083200005 ], [ -123.246958877999987, 49.357933556000042 ], [ -123.246890595999957, 49.358132641000097 ], [ -123.246547765999964, 49.358102394000056 ], [ -123.246316854999975, 49.358082025000122 ], [ -123.246248139999963, 49.358060477000045 ], [ -123.24543853899999, 49.357806602000025 ], [ -123.245354488999965, 49.357797654000095 ], [ -123.24529354399999, 49.3577911940001 ], [ -123.245150442999915, 49.357800034000043 ], [ -123.245097343999987, 49.35780331900007 ], [ -123.245013822999937, 49.357824297000064 ], [ -123.244985270999905, 49.357831492000109 ], [ -123.244303627999969, 49.358002827000099 ], [ -123.243000696999928, 49.357980571000077 ], [ -123.242942838999937, 49.357979597000089 ], [ -123.242912064999928, 49.357979041000128 ], [ -123.242730491999922, 49.358023061000061 ], [ -123.242639757999939, 49.35808781100009 ], [ -123.242586710999916, 49.358125657000052 ], [ -123.242318201999979, 49.358520460000157 ], [ -123.242269840999981, 49.35850549 ], [ -123.241905951999954, 49.358392868000095 ], [ -123.24167429499991, 49.358238369000077 ], [ -123.241503333999972, 49.358058408000026 ], [ -123.241363696999926, 49.357745043000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.867861609003752", "sL_AssetLoss": "2399", "sL_BldgLoss": "2082", "sL_StrLoss": "1470", "sL_NStrLoss": "612", "sL_ContLoss": "317", "geom_point": "0101000020E6100000539FDC9D52D05EC00A96F27326AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.253887480999964, 49.360797046000101 ], [ -123.253886091999973, 49.360527197000117 ], [ -123.253472947999953, 49.360528104000053 ], [ -123.253472349000035, 49.360411597000031 ], [ -123.254061358999962, 49.360302440000076 ], [ -123.254496097999919, 49.360283760000044 ], [ -123.255263869999936, 49.360335670000097 ], [ -123.25560842199999, 49.360328191000107 ], [ -123.255898350999971, 49.360268016000113 ], [ -123.256245966999941, 49.360388076000035 ], [ -123.256631232999908, 49.360521135000091 ], [ -123.256364956, 49.360521726000059 ], [ -123.256366358999941, 49.360791575000107 ], [ -123.253887480999964, 49.360797046000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9578917", "BldgCostT": "6396667", "sL_LossRatio": "0.728084179367574", "sL_AssetLoss": "48106.8", "sL_BldgLoss": "35025.8", "sL_StrLoss": "19015.8", "sL_NStrLoss": "16010", "sL_ContLoss": "13081", "geom_point": "0101000020E61000004DAFE663ABCC5EC038EC08F192AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.195603589999962, 49.373967502000042 ], [ -123.19564095599999, 49.373350940000087 ], [ -123.195484127999975, 49.373346875000045 ], [ -123.195068107999973, 49.373336089000119 ], [ -123.195097731999923, 49.372847374000102 ], [ -123.19459652099999, 49.372834379000047 ], [ -123.194800215, 49.369474242000109 ], [ -123.194814545999975, 49.369237815000069 ], [ -123.200313337999972, 49.369380267000118 ], [ -123.200283771999949, 49.369868986000064 ], [ -123.200784949999914, 49.369881955000096 ], [ -123.200747655999962, 49.370498523000045 ], [ -123.201320470999917, 49.370513343000042 ], [ -123.201102944999946, 49.37410991400003 ], [ -123.195603589999962, 49.373967502000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.863392488650433", "sL_AssetLoss": "2423", "sL_BldgLoss": "2092", "sL_StrLoss": "1460", "sL_NStrLoss": "632", "sL_ContLoss": "331", "geom_point": "0101000020E61000001934DBB28FD15EC0379DF05438AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.27499855399999, 49.368034752000064 ], [ -123.274988883999924, 49.36630102800008 ], [ -123.275067093999894, 49.366459577000086 ], [ -123.27508523499999, 49.36649635200007 ], [ -123.27525629599991, 49.366843171000049 ], [ -123.275266343999959, 49.366889013000048 ], [ -123.275384365999969, 49.3674272330001 ], [ -123.275392030999967, 49.367631770000052 ], [ -123.275401521999967, 49.367884222000072 ], [ -123.27499946099999, 49.368786963000034 ], [ -123.274973172999978, 49.368845987000064 ], [ -123.274882615999971, 49.369000617000047 ], [ -123.274663968999931, 49.369373990000028 ], [ -123.274495380999966, 49.369582136000069 ], [ -123.27424079599993, 49.369896443000073 ], [ -123.273560268999958, 49.370510574000036 ], [ -123.273030307999989, 49.370859200000055 ], [ -123.272123970999957, 49.371278028000084 ], [ -123.272122490999919, 49.371009925000124 ], [ -123.272535722999962, 49.371008952000089 ], [ -123.27253423099998, 49.370739104000073 ], [ -123.272947459999969, 49.370738129000102 ], [ -123.272945966999927, 49.370468281000086 ], [ -123.273359193999909, 49.370467305000062 ], [ -123.273357697000023, 49.370197457000124 ], [ -123.27377092199994, 49.370196478000082 ], [ -123.27376942299999, 49.369926631000048 ], [ -123.274182646, 49.369925651000138 ], [ -123.274178143999961, 49.369116107000103 ], [ -123.274591357999952, 49.369115127000086 ], [ -123.274585347, 49.368035735000056 ], [ -123.27499855399999, 49.368034752000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18850001", "BldgCostT": "13000001", "sL_LossRatio": "0.858145724314386", "sL_AssetLoss": "77777", "sL_BldgLoss": "66744", "sL_StrLoss": "44360", "sL_NStrLoss": "22384", "sL_ContLoss": "11033", "geom_point": "0101000020E61000003079A8128ACF5EC00764F19351AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.250163685999894, 49.359725757000049 ], [ -123.250159035999943, 49.358809014000066 ], [ -123.24890601599999, 49.358777148000058 ], [ -123.248922890999964, 49.358493180000025 ], [ -123.24815050699999, 49.358473530000019 ], [ -123.24815791499999, 49.358348912000082 ], [ -123.248091040999924, 49.358347210000069 ], [ -123.248091210999959, 49.358380963000101 ], [ -123.247678083999972, 49.358381848000121 ], [ -123.247679438999953, 49.358651698000081 ], [ -123.247266310999947, 49.358652583000016 ], [ -123.247267664, 49.358922432000057 ], [ -123.246441402999906, 49.358924195000014 ], [ -123.246442748999968, 49.359194045000031 ], [ -123.24602961699999, 49.359194925000061 ], [ -123.246030962999924, 49.359464774000045 ], [ -123.241899607, 49.359473493000074 ], [ -123.241898283999944, 49.359203644000068 ], [ -123.241485148999971, 49.359204508000118 ], [ -123.241483882999916, 49.358946105000022 ], [ -123.241457736999948, 49.358934762000047 ], [ -123.241457699999941, 49.358934713000025 ], [ -123.240657565000021, 49.358936382000131 ], [ -123.2406365, 49.354618791000064 ], [ -123.24082662499994, 49.354618396000099 ], [ -123.240848935999978, 49.354577363000082 ], [ -123.241048898999921, 49.354475386000104 ], [ -123.241048276999948, 49.354348082000087 ], [ -123.241461368999964, 49.354347220000079 ], [ -123.241450801999946, 49.35218842400014 ], [ -123.24103772699999, 49.352189286000048 ], [ -123.241033771999938, 49.351379737000045 ], [ -123.240620703999952, 49.351380598000091 ], [ -123.240619387999928, 49.35111074800011 ], [ -123.238967124999974, 49.351114176000131 ], [ -123.238966012999953, 49.350884629000113 ], [ -123.238852762999969, 49.350844559000031 ], [ -123.238441693999917, 49.350845409000073 ], [ -123.237759435999934, 49.350921063000051 ], [ -123.237747205999966, 49.35084683900012 ], [ -123.237726626999972, 49.350846881000109 ], [ -123.237726006999978, 49.350718188 ], [ -123.237696935999907, 49.350541763000088 ], [ -123.237724828999902, 49.350473412000049 ], [ -123.237724026999956, 49.350307182000087 ], [ -123.236484847999932, 49.350309724000049 ], [ -123.236483555999897, 49.350039874000061 ], [ -123.235244384999973, 49.350042402000064 ], [ -123.235243097999927, 49.349772552000104 ], [ -123.234003932999912, 49.349775068000064 ], [ -123.234001373999959, 49.349235368000059 ], [ -123.233588323999953, 49.349236203000054 ], [ -123.233587714999942, 49.349107681000092 ], [ -123.233587045999954, 49.348966354000069 ], [ -123.23317399699999, 49.348967187000056 ], [ -123.233174540999983, 49.349082139000117 ], [ -123.233176547999989, 49.349506887000068 ], [ -123.230285179999925, 49.349512684000082 ], [ -123.23028266099999, 49.348972984000056 ], [ -123.229869612999948, 49.348973806000039 ], [ -123.229870870999946, 49.349243656000041 ], [ -123.228631719999896, 49.349246113000063 ], [ -123.228628774999919, 49.348610826000041 ], [ -123.228627967, 49.348436564000068 ], [ -123.227801879999944, 49.34843819500005 ], [ -123.227800632999944, 49.348168345 ], [ -123.226561509999939, 49.348170780000018 ], [ -123.22656027, 49.347900930000037 ], [ -123.225416317999986, 49.347903167 ], [ -123.225321151999978, 49.347903352000138 ], [ -123.22532104, 49.347878860000023 ], [ -123.225319919999947, 49.347633502000029 ], [ -123.224906881999956, 49.34763430700005 ], [ -123.224905998999986, 49.347440443000053 ], [ -123.227117568999972, 49.34799081400007 ], [ -123.22827849299992, 49.348279703000038 ], [ -123.230492107999936, 49.348658795000063 ], [ -123.231746815999927, 49.348804403000081 ], [ -123.23383799799997, 49.348975882000062 ], [ -123.235962663999985, 49.348982710000023 ], [ -123.23637118399995, 49.34898399800003 ], [ -123.236385001999963, 49.348983730000022 ], [ -123.236953895999974, 49.348973472000061 ], [ -123.237986469999896, 49.348954816000088 ], [ -123.237994601999972, 49.348954648000088 ], [ -123.238798925999944, 49.348940118000023 ], [ -123.239184170999948, 49.348933154000107 ], [ -123.23994489599994, 49.348919411000082 ], [ -123.240761905999989, 49.348974503000086 ], [ -123.24180350499995, 49.349138884000055 ], [ -123.242509403999946, 49.349371192000049 ], [ -123.243301545999941, 49.349702475000058 ], [ -123.245678500999929, 49.350696508000098 ], [ -123.245715507999989, 49.350705620000085 ], [ -123.245652149999927, 49.350804368000034 ], [ -123.245592246999962, 49.350897697000065 ], [ -123.245451134999939, 49.351117629000022 ], [ -123.245327897999985, 49.35116877300004 ], [ -123.24486833099995, 49.351359431000091 ], [ -123.244516755999925, 49.351416209000028 ], [ -123.243900137, 49.35151338900004 ], [ -123.243885934999938, 49.351515632000016 ], [ -123.243724859999958, 49.351541013000023 ], [ -123.24344197299996, 49.351622964000057 ], [ -123.243192792999977, 49.35176249800007 ], [ -123.243006805999983, 49.351927970000055 ], [ -123.242880380999949, 49.352317389000078 ], [ -123.242702450999943, 49.352947745000101 ], [ -123.242669674999945, 49.353081982000063 ], [ -123.242735973999928, 49.353262882000088 ], [ -123.242951118999926, 49.353440369000097 ], [ -123.243173949999928, 49.353535219000065 ], [ -123.243490162999962, 49.353587400000052 ], [ -123.244526431999986, 49.353566073000131 ], [ -123.244810139999956, 49.353609338000055 ], [ -123.24508938, 49.353704702000122 ], [ -123.24530545699993, 49.353843483000063 ], [ -123.245443815999963, 49.35401630900008 ], [ -123.2454268799999, 49.354115839000031 ], [ -123.245375057999965, 49.354223502000082 ], [ -123.2452442299999, 49.354340837000095 ], [ -123.245047357999951, 49.354433991000143 ], [ -123.244538132999949, 49.35454887800006 ], [ -123.244162547999963, 49.35459243500005 ], [ -123.24373982899999, 49.354595185000058 ], [ -123.242668050999896, 49.354495809000113 ], [ -123.242272109999931, 49.354510934000089 ], [ -123.241991132999928, 49.354560514000092 ], [ -123.24185531199997, 49.354622785000053 ], [ -123.241800066999971, 49.354695227000057 ], [ -123.241813384999915, 49.354772093000065 ], [ -123.24189729599999, 49.354841782000037 ], [ -123.242079639999957, 49.354900472000118 ], [ -123.242421344000022, 49.354940701000039 ], [ -123.242950969, 49.355014556000164 ], [ -123.243298815999964, 49.355136886000032 ], [ -123.244156021999913, 49.355581086000051 ], [ -123.244342956999915, 49.355723623000095 ], [ -123.244442660999951, 49.355852256000048 ], [ -123.244462370999926, 49.356030158000081 ], [ -123.244407611999961, 49.356209769000081 ], [ -123.244321706999983, 49.356312051 ], [ -123.244020778999968, 49.356511521000101 ], [ -123.243190754999929, 49.356928023000066 ], [ -123.242642888999953, 49.35702120600007 ], [ -123.241949724, 49.357080998000114 ], [ -123.241698613999958, 49.357160154000056 ], [ -123.24149871899999, 49.35728111100007 ], [ -123.241371871999917, 49.357446277000108 ], [ -123.241333506999979, 49.357604703000099 ], [ -123.241363696999926, 49.357745043000143 ], [ -123.241503333999972, 49.358058408000026 ], [ -123.24167429499991, 49.358238369000077 ], [ -123.241905951999954, 49.358392868000095 ], [ -123.242269840999981, 49.35850549 ], [ -123.242318201999979, 49.358520460000157 ], [ -123.242586710999916, 49.358125657000052 ], [ -123.242639757999939, 49.35808781100009 ], [ -123.242730491999922, 49.358023061000061 ], [ -123.242912064999928, 49.357979041000128 ], [ -123.242942838999937, 49.357979597000089 ], [ -123.243000696999928, 49.357980571000077 ], [ -123.244303627999969, 49.358002827000099 ], [ -123.244985270999905, 49.357831492000109 ], [ -123.245013822999937, 49.357824297000064 ], [ -123.245097343999987, 49.35780331900007 ], [ -123.245150442999915, 49.357800034000043 ], [ -123.24529354399999, 49.3577911940001 ], [ -123.245354488999965, 49.357797654000095 ], [ -123.24543853899999, 49.357806602000025 ], [ -123.246248139999963, 49.358060477000045 ], [ -123.246316854999975, 49.358082025000122 ], [ -123.246547765999964, 49.358102394000056 ], [ -123.246890595999957, 49.358132641000097 ], [ -123.246958877999987, 49.357933556000042 ], [ -123.247575823999966, 49.35721083200005 ], [ -123.247692194999914, 49.356920198000076 ], [ -123.247737908999966, 49.356267574000107 ], [ -123.248478338999988, 49.356315209000094 ], [ -123.248881700999974, 49.356313783000076 ], [ -123.249322557999989, 49.356237643000085 ], [ -123.249961011999943, 49.356055754000096 ], [ -123.25000401199999, 49.356059809000044 ], [ -123.25052085, 49.356108711000033 ], [ -123.251209397999972, 49.35610281300012 ], [ -123.251757454999918, 49.356098709000051 ], [ -123.252145824999928, 49.356095087000021 ], [ -123.252393134999949, 49.356056343000084 ], [ -123.252757265999946, 49.355880983000098 ], [ -123.252924443999916, 49.355847400000144 ], [ -123.253239027999953, 49.355880590000048 ], [ -123.252984627999979, 49.356688231000106 ], [ -123.252908932999986, 49.356819947000105 ], [ -123.252808113999933, 49.356995340000125 ], [ -123.251439789999893, 49.358203342000103 ], [ -123.251200336999901, 49.35869294 ], [ -123.251176612, 49.358741467000065 ], [ -123.25109790399992, 49.35913931400006 ], [ -123.251146169999956, 49.359601599000044 ], [ -123.251199867999958, 49.359723510000094 ], [ -123.250163685999894, 49.359725757000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.872770511296076", "sL_AssetLoss": "2523", "sL_BldgLoss": "2202", "sL_StrLoss": "1400", "sL_NStrLoss": "802", "sL_ContLoss": "321", "geom_point": "0101000020E6100000697C36DD78D15EC049DBB6F742AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.272898167999983, 49.361833138000094 ], [ -123.272896675999988, 49.361563290000049 ], [ -123.272291229999922, 49.361564717000128 ], [ -123.272070371999973, 49.361565237000022 ], [ -123.272070041999939, 49.361505449000042 ], [ -123.272069803999926, 49.36146252500005 ], [ -123.272069099999953, 49.361335 ], [ -123.272068882999946, 49.361295389000126 ], [ -123.271980927999934, 49.361295596000076 ], [ -123.27165573299996, 49.361296360000068 ], [ -123.271655132999953, 49.361187544000067 ], [ -123.271654245999969, 49.36102651200013 ], [ -123.271315011999974, 49.361027309000058 ], [ -123.271767517999947, 49.360983763000057 ], [ -123.273068001999945, 49.361059793000031 ], [ -123.273622749999916, 49.361153007000077 ], [ -123.273540858999951, 49.36132833900011 ], [ -123.273501573999937, 49.361411098000083 ], [ -123.273759361, 49.36142842200006 ], [ -123.274170039999944, 49.361560334000075 ], [ -123.274661495999965, 49.3618176680001 ], [ -123.274675786, 49.36182892900004 ], [ -123.272898167999983, 49.361833138000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10717917", "BldgCostT": "7391667", "sL_LossRatio": "0.741774045098942", "sL_AssetLoss": "173840", "sL_BldgLoss": "128950", "sL_StrLoss": "59260", "sL_NStrLoss": "69690", "sL_ContLoss": "44890", "geom_point": "0101000020E610000042AD1F5197CF5EC0D96F37D263B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.239984753999977, 49.407892530000098 ], [ -123.240024224999928, 49.407231292000048 ], [ -123.238642143999982, 49.407196053000114 ], [ -123.238856906, 49.40359958500003 ], [ -123.241254188999946, 49.403660698000124 ], [ -123.241283131999964, 49.403175543000039 ], [ -123.24164583799994, 49.403184785000128 ], [ -123.241673242999937, 49.402725351000051 ], [ -123.241741858999887, 49.402727100000106 ], [ -123.241852340999927, 49.400874751000082 ], [ -123.241858006999948, 49.400874895000122 ], [ -123.241871452999973, 49.40064945000006 ], [ -123.242581477999963, 49.400667538000064 ], [ -123.24259233399998, 49.400485468000113 ], [ -123.243294788999961, 49.400503357000083 ], [ -123.243308516999917, 49.40027308500003 ], [ -123.243340398999948, 49.400273897000083 ], [ -123.243340122999911, 49.400217972000036 ], [ -123.242926645999901, 49.400218842000072 ], [ -123.242919989999947, 49.398869606000048 ], [ -123.24333345699992, 49.398868736000061 ], [ -123.243332123999949, 49.398598889000027 ], [ -123.243745587999982, 49.398598017000054 ], [ -123.243744251999971, 49.398328171000038 ], [ -123.244571174999976, 49.398326424000061 ], [ -123.244567154999913, 49.397516882000069 ], [ -123.244980609999942, 49.3975160070001 ], [ -123.244979268999927, 49.397246159000083 ], [ -123.246219624999966, 49.397243524000039 ], [ -123.246218274999961, 49.396973678000045 ], [ -123.24663172699999, 49.396972797000103 ], [ -123.246630373999949, 49.39670294900008 ], [ -123.247043822999956, 49.396702066000017 ], [ -123.247042469999926, 49.396432218000022 ], [ -123.247869358999935, 49.396430449000022 ], [ -123.247868001999962, 49.396160602000066 ], [ -123.248281444999947, 49.396159715000067 ], [ -123.248280082999941, 49.395889868000083 ], [ -123.2491069659999, 49.395888089000088 ], [ -123.249105601999958, 49.395618242000076 ], [ -123.249519038999935, 49.395617349000084 ], [ -123.249516305999961, 49.395077656000048 ], [ -123.250756608999893, 49.395074971000014 ], [ -123.250755235999989, 49.394805124000122 ], [ -123.251168666999931, 49.394804227000058 ], [ -123.251167289999898, 49.394534380000053 ], [ -123.251681246999965, 49.394533262000124 ], [ -123.250746194999977, 49.395189808000076 ], [ -123.250273672999953, 49.395862189000049 ], [ -123.24813462899999, 49.398171622000049 ], [ -123.247044244, 49.399247002000031 ], [ -123.246432560999935, 49.399634769000052 ], [ -123.246411730999981, 49.399647951000055 ], [ -123.246156546999913, 49.39980974200008 ], [ -123.244810902999959, 49.400727242000066 ], [ -123.244091472999941, 49.401217785000028 ], [ -123.243860923999975, 49.401430250000061 ], [ -123.243651192999948, 49.401623490000077 ], [ -123.243387314999922, 49.401936451000097 ], [ -123.242972568999946, 49.402491403000127 ], [ -123.24284077199998, 49.402575386000073 ], [ -123.242629972999978, 49.402876175000067 ], [ -123.242230283999959, 49.403455837000074 ], [ -123.24210249399999, 49.403727207 ], [ -123.241999329999913, 49.404093787000079 ], [ -123.241988712999927, 49.404346338000089 ], [ -123.24198287899999, 49.404485098000059 ], [ -123.24219021, 49.405444888000055 ], [ -123.242176840999946, 49.40578402800007 ], [ -123.242120976, 49.405991490000076 ], [ -123.242100748999974, 49.406066650000071 ], [ -123.241642899999974, 49.406996890000102 ], [ -123.241609679999968, 49.407220272000131 ], [ -123.241564531999927, 49.407523616000063 ], [ -123.241513289999887, 49.40786803800011 ], [ -123.241477285999963, 49.408110159000081 ], [ -123.241233899999912, 49.408088445000068 ], [ -123.240622851999973, 49.40803398200012 ], [ -123.240428886999936, 49.408028347000091 ], [ -123.239930103999939, 49.408013831000041 ], [ -123.239937416999979, 49.407891323000058 ], [ -123.239984753999977, 49.407892530000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.883402489626556", "sL_AssetLoss": "2410", "sL_BldgLoss": "2129", "sL_StrLoss": "1390", "sL_NStrLoss": "739", "sL_ContLoss": "281", "geom_point": "0101000020E610000037ECCE45C9D05EC027B771B4F8B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.2626771179999, 49.382095673000087 ], [ -123.26267524599993, 49.381744524000084 ], [ -123.26267424199996, 49.381555978000051 ], [ -123.262907146999936, 49.381555448000064 ], [ -123.263914202, 49.381553154000116 ], [ -123.263915645999973, 49.381823001000065 ], [ -123.264437703999988, 49.381821809000058 ], [ -123.264133604, 49.381913499000113 ], [ -123.263837130999917, 49.382036575 ], [ -123.263587079999979, 49.382189647000096 ], [ -123.262998461, 49.382594398000037 ], [ -123.262494666999899, 49.383009400000049 ], [ -123.262037919999926, 49.383233781000094 ], [ -123.261156593999885, 49.383580669000011 ], [ -123.260987023999959, 49.383664331000034 ], [ -123.260939555999954, 49.383687750000057 ], [ -123.26078866, 49.383793802000099 ], [ -123.260620406999962, 49.383974723000073 ], [ -123.260620215999936, 49.383938624000109 ], [ -123.260614775999926, 49.382909893 ], [ -123.261441437999977, 49.382908027000042 ], [ -123.261440007999923, 49.382638179000068 ], [ -123.261728595999955, 49.382637526000096 ], [ -123.261853337999923, 49.38263724300004 ], [ -123.261852701999928, 49.382517797000027 ], [ -123.261851901999947, 49.382367395000088 ], [ -123.262008968999922, 49.382367040000062 ], [ -123.262265228999951, 49.382366459000096 ], [ -123.262263923999967, 49.382121073000079 ], [ -123.262263793, 49.382096612000112 ], [ -123.262289338999921, 49.382096553000089 ], [ -123.2626771179999, 49.382095673000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9031084", "BldgCostT": "6228334", "sL_LossRatio": "0.866889522139413", "sL_AssetLoss": "36496", "sL_BldgLoss": "31638", "sL_StrLoss": "21660", "sL_NStrLoss": "9978", "sL_ContLoss": "4858", "geom_point": "0101000020E61000007FC6A6114ACC5EC0C869A1C71CB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190264373999966, 49.380484180000103 ], [ -123.191359603999928, 49.364455585000059 ], [ -123.191329257999939, 49.363774570000025 ], [ -123.192334291999941, 49.363800663000077 ], [ -123.19225823, 49.365054494000113 ], [ -123.1921161, 49.367397251000028 ], [ -123.191878393999957, 49.367391080000054 ], [ -123.191809350999932, 49.368528956000091 ], [ -123.191236280999973, 49.368514078000025 ], [ -123.19122580699991, 49.368686650000022 ], [ -123.191293330999912, 49.368688403000057 ], [ -123.191150754999938, 49.371037509000153 ], [ -123.19155876799999, 49.371048103000113 ], [ -123.191374714999952, 49.374080621000068 ], [ -123.192486822, 49.374109485000069 ], [ -123.192301835999928, 49.377158197000021 ], [ -123.193722766999898, 49.377195061000108 ], [ -123.193702499999944, 49.377529225000046 ], [ -123.194655452999953, 49.377553938000126 ], [ -123.194598833999947, 49.378487764000099 ], [ -123.194437376999986, 49.38115045600005 ], [ -123.191570089999971, 49.381076076000035 ], [ -123.190226292999952, 49.381041189000058 ], [ -123.190264373999966, 49.380484180000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537501", "BldgCostT": "1750001", "sL_LossRatio": "0.845700312894637", "sL_AssetLoss": "12432.3", "sL_BldgLoss": "10514", "sL_StrLoss": "6610", "sL_NStrLoss": "3904", "sL_ContLoss": "1918.3", "geom_point": "0101000020E61000001B9F66D43ECE5EC04E75D03EB9AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.22120237699994, 49.35050293700008 ], [ -123.221199479999953, 49.349856665000118 ], [ -123.221190536000023, 49.349856662000093 ], [ -123.22119898699998, 49.349746651000025 ], [ -123.221198015999917, 49.349530431000098 ], [ -123.220784963999961, 49.349531220000074 ], [ -123.220782548999978, 49.34899151900008 ], [ -123.219956451999977, 49.348993094000015 ], [ -123.219955214999942, 49.348715751000071 ], [ -123.219952841999927, 49.34818354400003 ], [ -123.22243109299994, 49.34817880100006 ], [ -123.222432308999885, 49.348448652000066 ], [ -123.223258398999931, 49.34844705900008 ], [ -123.223259618, 49.348716910000064 ], [ -123.224085709999912, 49.34871531100007 ], [ -123.224086936999953, 49.348985161000016 ], [ -123.224499984999952, 49.348984359000077 ], [ -123.224501212999925, 49.349254210000083 ], [ -123.224914263999935, 49.349253406000095 ], [ -123.224915492999926, 49.349523256000076 ], [ -123.225328545999957, 49.349522451000098 ], [ -123.225332242999912, 49.350332002000052 ], [ -123.223741757999974, 49.350335092000115 ], [ -123.223266945999939, 49.350336010000014 ], [ -123.223268166999929, 49.350605859000041 ], [ -123.221455339999949, 49.350609347000081 ], [ -123.22120285699999, 49.350609830000089 ], [ -123.22120237699994, 49.35050293700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3339834", "BldgCostT": "2303334", "sL_LossRatio": "0.878005464480874", "sL_AssetLoss": "14640", "sL_BldgLoss": "12854", "sL_StrLoss": "8790", "sL_NStrLoss": "4064", "sL_ContLoss": "1786", "geom_point": "0101000020E61000006A8C943543D05EC01A18795913B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.256599934999926, 49.38750633800003 ], [ -123.256818263999932, 49.387505852000089 ], [ -123.256217148999923, 49.388144480000108 ], [ -123.256011867999959, 49.388514014000044 ], [ -123.255925768999973, 49.388672668000062 ], [ -123.255831525999923, 49.38883979200012 ], [ -123.255727689999929, 49.389359445000039 ], [ -123.255704791999975, 49.389685827000051 ], [ -123.255665532999927, 49.390244858000109 ], [ -123.255483783999949, 49.390870598000042 ], [ -123.255058871999921, 49.391647763 ], [ -123.25451929899998, 49.392313937000033 ], [ -123.253693112999912, 49.393120544000055 ], [ -123.252082331999972, 49.394251633000081 ], [ -123.252225638999931, 49.391839379000039 ], [ -123.252587827999974, 49.391848573000104 ], [ -123.252603637999968, 49.391582388000124 ], [ -123.25294710299994, 49.391591105000046 ], [ -123.252963138999988, 49.39132109600007 ], [ -123.253218773999933, 49.391327583000098 ], [ -123.253237845999962, 49.391006402000066 ], [ -123.25353769699997, 49.391014011000088 ], [ -123.253554647999948, 49.390728509000049 ], [ -123.253681202999985, 49.390731720000133 ], [ -123.253699460999911, 49.390424211000017 ], [ -123.253776612999971, 49.390426168000097 ], [ -123.253795074, 49.390115213000115 ], [ -123.253926817999954, 49.390118556000083 ], [ -123.253946986999935, 49.389778815000035 ], [ -123.254258500999939, 49.389786719000035 ], [ -123.254276889999971, 49.389476922000085 ], [ -123.254757599999962, 49.389489117000018 ], [ -123.254770381999904, 49.389273733000088 ], [ -123.255102790999942, 49.389282164000072 ], [ -123.255116179999945, 49.389056541000052 ], [ -123.255261370999904, 49.389060224 ], [ -123.255279390999988, 49.388756545000042 ], [ -123.255379780999974, 49.388759091000047 ], [ -123.255401106999969, 49.388399647 ], [ -123.255482031999989, 49.388401699000092 ], [ -123.255517436, 49.387804948000088 ], [ -123.256270474999937, 49.387824041000059 ], [ -123.256507021999965, 49.387830038000047 ], [ -123.256505781999962, 49.387591970000102 ], [ -123.256505337999897, 49.387506547000065 ], [ -123.256599934999926, 49.38750633800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26822501", "BldgCostT": "18025001", "sL_LossRatio": "0.729431447943879", "sL_AssetLoss": "340690", "sL_BldgLoss": "248510", "sL_StrLoss": "119180", "sL_NStrLoss": "129330", "sL_ContLoss": "92180", "geom_point": "0101000020E610000011BDD6EF13CD5EC0F74E71C1BEB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.200752949999952, 49.400569606000062 ], [ -123.200749649, 49.399760063000066 ], [ -123.200336174999919, 49.399760780000065 ], [ -123.200333980000011, 49.399221083000086 ], [ -123.199920510999959, 49.399221799000053 ], [ -123.199918318999963, 49.398682103000112 ], [ -123.199504852999922, 49.398682817000029 ], [ -123.199505945999931, 49.398952666000106 ], [ -123.197852073999954, 49.398955507000082 ], [ -123.197850990999925, 49.398685658000069 ], [ -123.197024057999911, 49.398687072000016 ], [ -123.197019741999966, 49.397607679000046 ], [ -123.196606282999966, 49.397608382000065 ], [ -123.196601974999965, 49.396528989000061 ], [ -123.197015422999925, 49.396528286000027 ], [ -123.197014343999953, 49.39625843700005 ], [ -123.198254679999977, 49.396256317000102 ], [ -123.198253594000022, 49.395986469000036 ], [ -123.198991151999962, 49.395985201000094 ], [ -123.199117363999946, 49.393901088000057 ], [ -123.199341010999916, 49.393906875000049 ], [ -123.199362874999949, 49.393545793000037 ], [ -123.199568821999904, 49.393551122000112 ], [ -123.199627218999964, 49.392586597000083 ], [ -123.199893607999982, 49.392593489000035 ], [ -123.199890939999975, 49.391935896000035 ], [ -123.201131167999947, 49.391933745000074 ], [ -123.20113226799999, 49.392203594000144 ], [ -123.201545679999967, 49.392202874000091 ], [ -123.20154678399993, 49.392472723000026 ], [ -123.20196019799999, 49.392472001000037 ], [ -123.201960913999955, 49.392646951000131 ], [ -123.205128798999979, 49.39272880000005 ], [ -123.205124735000012, 49.392796058000037 ], [ -123.206174966999981, 49.392823172000107 ], [ -123.206156028999928, 49.393136699000145 ], [ -123.206189885999933, 49.393137572000079 ], [ -123.206061367999965, 49.395265147000018 ], [ -123.207475449999947, 49.395301638000021 ], [ -123.207483053999937, 49.39517569600018 ], [ -123.212984966999926, 49.395317499000043 ], [ -123.212773359999957, 49.398828883000078 ], [ -123.212743189999955, 49.398828991000073 ], [ -123.212395452999914, 49.398904360000081 ], [ -123.21019711699995, 49.398847728000071 ], [ -123.20997320599993, 49.398762002000112 ], [ -123.209726506999942, 49.398834701000077 ], [ -123.209339515999943, 49.398799098000069 ], [ -123.20935701399999, 49.398826074000027 ], [ -123.209164287999968, 49.398821106000049 ], [ -123.209156687999979, 49.398947048000096 ], [ -123.204053556999895, 49.398815363000026 ], [ -123.204054092999968, 49.398944728000068 ], [ -123.20364062500002, 49.39894545700006 ], [ -123.20364174099997, 49.399215305000048 ], [ -123.202814801, 49.39921675900014 ], [ -123.202815911999934, 49.399486607000064 ], [ -123.202402440999919, 49.399487331000046 ], [ -123.202404657999978, 49.400027027000064 ], [ -123.201991181999972, 49.400027750000071 ], [ -123.201993394999988, 49.400567446000089 ], [ -123.200752949999952, 49.400569606000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.823534679622084", "sL_AssetLoss": "22333", "sL_BldgLoss": "18392", "sL_StrLoss": "11060", "sL_NStrLoss": "7332", "sL_ContLoss": "3941", "geom_point": "0101000020E61000001DFF479ED2CD5EC0952EDC3D69AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.213754873999946, 49.34765546600007 ], [ -123.213753704999974, 49.347385616000103 ], [ -123.21251459799997, 49.347387901000069 ], [ -123.212513436999984, 49.347118051000052 ], [ -123.211687368999932, 49.347119566000053 ], [ -123.211683511999951, 49.346220331000069 ], [ -123.212494708999927, 49.346198890000046 ], [ -123.213616209999927, 49.346223290000083 ], [ -123.216315204999958, 49.346354901000055 ], [ -123.218032206999936, 49.346453204000056 ], [ -123.2197288, 49.346617483000067 ], [ -123.220978559999949, 49.346832326000055 ], [ -123.220355820999956, 49.346833514000132 ], [ -123.220305212999946, 49.347676518000107 ], [ -123.216232751999954, 49.347571744000078 ], [ -123.216233097999947, 49.347650858000122 ], [ -123.213754873999946, 49.34765546600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8748333", "BldgCostT": "6033333", "sL_LossRatio": "0.761368920301311", "sL_AssetLoss": "107530", "sL_BldgLoss": "81870", "sL_StrLoss": "39000", "sL_NStrLoss": "42870", "sL_ContLoss": "25660", "geom_point": "0101000020E61000009DC4B514EFCC5EC0F3AE179681AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.191142587999934, 49.34776540700004 ], [ -123.190965858999931, 49.347311426000068 ], [ -123.190941400999932, 49.347248564000026 ], [ -123.190975055999914, 49.347250808000062 ], [ -123.1915145789999, 49.347286460000056 ], [ -123.191620500999946, 49.347185073000041 ], [ -123.191730576999959, 49.347079659000102 ], [ -123.191980292, 49.347061188000069 ], [ -123.192384494999942, 49.346954603000079 ], [ -123.192751184, 49.34680750900008 ], [ -123.193075915999941, 49.346741102000131 ], [ -123.193618292999972, 49.346759712000107 ], [ -123.193982997999967, 49.346827709000081 ], [ -123.19426841899994, 49.346932406000064 ], [ -123.194423477999976, 49.347030990000064 ], [ -123.194567954999954, 49.347155149000088 ], [ -123.194721685000019, 49.347287306000112 ], [ -123.194815539999965, 49.347373336000032 ], [ -123.194861184999951, 49.347415196000071 ], [ -123.196192318999948, 49.347432607000044 ], [ -123.197569432999927, 49.347387224000023 ], [ -123.197691297999953, 49.347383204000018 ], [ -123.200004750999966, 49.347246225000042 ], [ -123.200018507999971, 49.347245400000133 ], [ -123.201298032999944, 49.347137108000055 ], [ -123.204920318999925, 49.346791949000085 ], [ -123.207793824999953, 49.346518058000036 ], [ -123.208939919, 49.346408805000053 ], [ -123.209206040999959, 49.346385828000045 ], [ -123.209208026999974, 49.346854229000016 ], [ -123.210860150999977, 49.346851226000069 ], [ -123.210861303999977, 49.347121076000107 ], [ -123.211274336999963, 49.347120323000134 ], [ -123.211275493999963, 49.347390173000065 ], [ -123.211688528, 49.347389417000031 ], [ -123.211692000999932, 49.348198968000098 ], [ -123.210039831999921, 49.348201982000035 ], [ -123.210038682999965, 49.347932131000029 ], [ -123.20838652399999, 49.347935122000109 ], [ -123.208387369999954, 49.348135671000144 ], [ -123.208387662999939, 49.348204972000033 ], [ -123.207867513999958, 49.348205909000086 ], [ -123.207148536999952, 49.348207199000136 ], [ -123.207149076999954, 49.348335938000105 ], [ -123.207149668999946, 49.348477050000071 ], [ -123.206541336999948, 49.348478139000029 ], [ -123.205910533999926, 49.348479264000012 ], [ -123.205911143999955, 49.348625588000061 ], [ -123.20591166, 49.348749114000029 ], [ -123.205379135999976, 49.348750062000114 ], [ -123.200955095999959, 49.348757837000079 ], [ -123.200953997999974, 49.348487986000073 ], [ -123.198246871999942, 49.348492662000105 ], [ -123.197236591999939, 49.348494389000045 ], [ -123.197236172999951, 49.348389324000102 ], [ -123.197235513999928, 49.348224539000086 ], [ -123.196197156999958, 49.348226307000047 ], [ -123.19599638599999, 49.348226647000075 ], [ -123.19599745599993, 49.348496498000038 ], [ -123.19393223099992, 49.348499980000085 ], [ -123.193930109999911, 49.347960279000048 ], [ -123.192277947999969, 49.347963040000096 ], [ -123.192276894999935, 49.347693189000069 ], [ -123.191510817999955, 49.347694461000067 ], [ -123.191372376999979, 49.3499767180001 ], [ -123.191245499999951, 49.349973422000055 ], [ -123.191300005999921, 49.349762092000105 ], [ -123.191142587999934, 49.34776540700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235001", "BldgCostT": "4300001", "sL_LossRatio": "0.848040777317617", "sL_AssetLoss": "31390", "sL_BldgLoss": "26620", "sL_StrLoss": "15950", "sL_NStrLoss": "10670", "sL_ContLoss": "4770", "geom_point": "0101000020E61000006288D669A8CD5EC05B3BF6581FB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.210761834999985, 49.389712561000088 ], [ -123.216263107999936, 49.389854198000144 ], [ -123.216046652999964, 49.39345069400008 ], [ -123.210544952999939, 49.393309046000113 ], [ -123.210761834999985, 49.389712561000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23100834", "BldgCostT": "12983334", "sL_LossRatio": "0.766231884057971", "sL_AssetLoss": "48300", "sL_BldgLoss": "37009", "sL_StrLoss": "20800", "sL_NStrLoss": "16209", "sL_ContLoss": "11291", "geom_point": "0101000020E6100000B933D1EFD4CE5EC0A7E617CAAEAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.22910557199998, 49.355027912000018 ], [ -123.234602781999953, 49.355168624000036 ], [ -123.234387912000017, 49.358765343000115 ], [ -123.228890276999962, 49.35862462000005 ], [ -123.22910557199998, 49.355027912000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.872050147492625", "sL_AssetLoss": "5424", "sL_BldgLoss": "4730", "sL_StrLoss": "3000", "sL_NStrLoss": "1730", "sL_ContLoss": "694", "geom_point": "0101000020E6100000E0C31D5695D15EC0633FCDC19AAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.274282525999936, 49.362473536000017 ], [ -123.275333026999988, 49.36250000400004 ], [ -123.275475844999931, 49.362716182000092 ], [ -123.275591073, 49.363331451000107 ], [ -123.275534235999928, 49.363641606000087 ], [ -123.27542352599994, 49.363943120000094 ], [ -123.275136967999984, 49.364723627000082 ], [ -123.274945254999963, 49.365245739000081 ], [ -123.274876935999956, 49.365431847000075 ], [ -123.274841740999932, 49.365527661000101 ], [ -123.27480957099999, 49.365615310000059 ], [ -123.274828650999979, 49.365769759000074 ], [ -123.274854633999936, 49.365979803000123 ], [ -123.274862714000022, 49.366045298000117 ], [ -123.27488517399992, 49.366090815000113 ], [ -123.274070705999989, 49.366070293000043 ], [ -123.274282525999936, 49.362473536000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107006500", "BldgCostT": "73270000", "sL_LossRatio": "0.852611425442077", "sL_AssetLoss": "489558.3", "sL_BldgLoss": "417403", "sL_StrLoss": "268390", "sL_NStrLoss": "149013", "sL_ContLoss": "72155.3", "geom_point": "0101000020E61000008A45A19F88CE5EC0DE2B4E1050AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.224905998999986, 49.347440443000053 ], [ -123.22490565299999, 49.347364456000065 ], [ -123.224603041999984, 49.347365045000046 ], [ -123.22407898699997, 49.347234617000048 ], [ -123.224078355999936, 49.347096210000053 ], [ -123.223527167999976, 49.347097278 ], [ -123.221835023999958, 49.346676104000075 ], [ -123.221104296999926, 49.34651409000007 ], [ -123.220185694999913, 49.346372251000119 ], [ -123.218858567999973, 49.346167298000061 ], [ -123.21856205099995, 49.346062400000079 ], [ -123.218423163999958, 49.345923794000065 ], [ -123.218374770999944, 49.34556228700005 ], [ -123.218769827999964, 49.345629185000121 ], [ -123.218887740999946, 49.345498950000085 ], [ -123.218980425999987, 49.345444581000059 ], [ -123.21914045599999, 49.345415372000055 ], [ -123.220241560999952, 49.345366255000016 ], [ -123.22021159799999, 49.344650414000036 ], [ -123.220266159999937, 49.34454375100006 ], [ -123.220699973999899, 49.344079402000027 ], [ -123.220716660999955, 49.343985273000037 ], [ -123.220563705999936, 49.343598587000038 ], [ -123.22059026, 49.343500206 ], [ -123.220858802999913, 49.343565651000041 ], [ -123.222120252999957, 49.34403105900001 ], [ -123.222191610999957, 49.344057405000122 ], [ -123.222439936999976, 49.344092596000017 ], [ -123.222592919999954, 49.344065908000069 ], [ -123.222678031000029, 49.344021521000094 ], [ -123.222696619999951, 49.344011843 ], [ -123.222732506999989, 49.343918186000124 ], [ -123.222696068999966, 49.343791191000072 ], [ -123.222205019999976, 49.342961735000067 ], [ -123.221941895999976, 49.342324575000127 ], [ -123.22188287799996, 49.341932193000098 ], [ -123.221921107999947, 49.341730551000126 ], [ -123.222025944999984, 49.341657600000076 ], [ -123.222098223999978, 49.341644086000045 ], [ -123.222224963999977, 49.341620389000077 ], [ -123.223120827999978, 49.341687545000056 ], [ -123.223266950999985, 49.341729110000088 ], [ -123.223424240999961, 49.34186014000008 ], [ -123.223502253000021, 49.342050359000091 ], [ -123.223631579999974, 49.342243093000079 ], [ -123.22364120899999, 49.342257468000128 ], [ -123.223624710999943, 49.342808177000059 ], [ -123.223732109999929, 49.343082022 ], [ -123.224081734999984, 49.343631327 ], [ -123.22426088099995, 49.344086238000109 ], [ -123.224606425999951, 49.344404889000067 ], [ -123.224761644999944, 49.344501637000079 ], [ -123.224933982999943, 49.344519576000046 ], [ -123.22571677599997, 49.344476619000069 ], [ -123.226100154, 49.344398893000118 ], [ -123.226229412999956, 49.344372702000044 ], [ -123.226438732999895, 49.344301528000109 ], [ -123.226685854, 49.3443799120001 ], [ -123.22728956399996, 49.34470789100007 ], [ -123.227495382999933, 49.344763599000061 ], [ -123.228077754, 49.344805556000033 ], [ -123.228669247999932, 49.345038649000067 ], [ -123.228855706999923, 49.345073147000036 ], [ -123.229818130999959, 49.345110423000115 ], [ -123.230413031999888, 49.345149984000059 ], [ -123.231093913999985, 49.345062956000078 ], [ -123.231099975999911, 49.345168469000022 ], [ -123.231336941999984, 49.345462718000057 ], [ -123.231869788000012, 49.345987897000079 ], [ -123.231924899999967, 49.346124404000115 ], [ -123.23194351799998, 49.346549930000066 ], [ -123.231966138, 49.346631555000052 ], [ -123.232081036999958, 49.346781298000067 ], [ -123.232160699999937, 49.346830162000124 ], [ -123.232305586, 49.346869909000134 ], [ -123.233303465999981, 49.346890044000062 ], [ -123.235066677999967, 49.346907215000023 ], [ -123.235226728999976, 49.346946424000073 ], [ -123.235300604999907, 49.347023076000021 ], [ -123.235434667, 49.347474080000076 ], [ -123.235794404999922, 49.348201899000038 ], [ -123.236007827999913, 49.348491313000103 ], [ -123.23637118399995, 49.34898399800003 ], [ -123.235962663999985, 49.348982710000023 ], [ -123.23383799799997, 49.348975882000062 ], [ -123.231746815999927, 49.348804403000081 ], [ -123.230492107999936, 49.348658795000063 ], [ -123.22827849299992, 49.348279703000038 ], [ -123.227117568999972, 49.34799081400007 ], [ -123.224905998999986, 49.347440443000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81158917", "BldgCostT": "55971667", "sL_LossRatio": "0.895391219828284", "sL_AssetLoss": "271612", "sL_BldgLoss": "243199", "sL_StrLoss": "171736", "sL_NStrLoss": "71463", "sL_ContLoss": "28413", "geom_point": "0101000020E61000002EC287F19ECD5EC04868910E0BAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.210033693999932, 49.345548237000088 ], [ -123.20796701099998, 49.345357063000037 ], [ -123.206699081999915, 49.345160408000076 ], [ -123.206667819999922, 49.345039813000042 ], [ -123.20671308499999, 49.344745601000085 ], [ -123.206805358999972, 49.344151805000116 ], [ -123.206240300999951, 49.343983541000057 ], [ -123.206209187999931, 49.343974280000047 ], [ -123.206024421999984, 49.34384344700009 ], [ -123.205437544999967, 49.342988019000117 ], [ -123.20602268199994, 49.34302836200014 ], [ -123.206619041999929, 49.342956796000074 ], [ -123.206905658999986, 49.342922381000058 ], [ -123.20723193, 49.342845033000124 ], [ -123.207984766, 49.342666594000029 ], [ -123.208607516999933, 49.342676351000179 ], [ -123.208629318999911, 49.342680587000068 ], [ -123.209459517, 49.342841857000032 ], [ -123.209620334999926, 49.342873114000078 ], [ -123.210104762999947, 49.342035059000089 ], [ -123.210694697999912, 49.341881887000056 ], [ -123.210762843999959, 49.341846709000045 ], [ -123.210806655999988, 49.341782081000069 ], [ -123.212109980999941, 49.342030115000057 ], [ -123.212138137999915, 49.342031592000062 ], [ -123.212377385999957, 49.342044204000082 ], [ -123.212603309999977, 49.341995911000012 ], [ -123.21300959300001, 49.341783100000065 ], [ -123.213482214999928, 49.341452991000047 ], [ -123.213539603999948, 49.341481496000043 ], [ -123.213688495999989, 49.341538042000046 ], [ -123.213750796999989, 49.341561702000099 ], [ -123.213593798999938, 49.341838699000071 ], [ -123.21355660899998, 49.34199978500007 ], [ -123.213577301999962, 49.342502006000082 ], [ -123.213509603999938, 49.342712806000058 ], [ -123.213510915999933, 49.343377397000083 ], [ -123.214253134999964, 49.343382288000058 ], [ -123.215107905999943, 49.343387913000129 ], [ -123.21697290599991, 49.343380090000068 ], [ -123.217005430000015, 49.343380676000017 ], [ -123.217089160999961, 49.343384405000037 ], [ -123.21737067199993, 49.343415900000117 ], [ -123.2180285699999, 49.343445126000056 ], [ -123.219568649999971, 49.343478257000115 ], [ -123.22059026, 49.343500206 ], [ -123.220563705999936, 49.343598587000038 ], [ -123.220716660999955, 49.343985273000037 ], [ -123.220699973999899, 49.344079402000027 ], [ -123.220266159999937, 49.34454375100006 ], [ -123.22021159799999, 49.344650414000036 ], [ -123.220241560999952, 49.345366255000016 ], [ -123.21914045599999, 49.345415372000055 ], [ -123.218980425999987, 49.345444581000059 ], [ -123.218887740999946, 49.345498950000085 ], [ -123.218769827999964, 49.345629185000121 ], [ -123.218374770999944, 49.34556228700005 ], [ -123.21835760499998, 49.345389842000039 ], [ -123.218283828000011, 49.345312278000058 ], [ -123.218137859999956, 49.345268019000102 ], [ -123.217946706999939, 49.345265781000158 ], [ -123.216950861999933, 49.345578776000082 ], [ -123.21659834899998, 49.345604834 ], [ -123.21628750299999, 49.34559203400002 ], [ -123.215544112999979, 49.345561483000075 ], [ -123.214431446999953, 49.34552831500006 ], [ -123.213464418999962, 49.345635783000091 ], [ -123.21341681, 49.345645334000075 ], [ -123.212960149999972, 49.345737148000048 ], [ -123.212711244999966, 49.345756855000012 ], [ -123.210829941999961, 49.345621893000015 ], [ -123.210033693999932, 49.345548237000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80375251", "BldgCostT": "53220001", "sL_LossRatio": "0.873021364516269", "sL_AssetLoss": "248580.4", "sL_BldgLoss": "217016", "sL_StrLoss": "154166", "sL_NStrLoss": "62850", "sL_ContLoss": "31564.4", "geom_point": "0101000020E61000009F2E51DE03CE5EC06B500B90AEAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.220858802999913, 49.343565651000041 ], [ -123.22059026, 49.343500206 ], [ -123.219568649999971, 49.343478257000115 ], [ -123.2180285699999, 49.343445126000056 ], [ -123.21737067199993, 49.343415900000117 ], [ -123.217089160999961, 49.343384405000037 ], [ -123.217005430000015, 49.343380676000017 ], [ -123.21697290599991, 49.343380090000068 ], [ -123.215107905999943, 49.343387913000129 ], [ -123.214253134999964, 49.343382288000058 ], [ -123.213510915999933, 49.343377397000083 ], [ -123.213509603999938, 49.342712806000058 ], [ -123.213577301999962, 49.342502006000082 ], [ -123.21355660899998, 49.34199978500007 ], [ -123.213593798999938, 49.341838699000071 ], [ -123.213750796999989, 49.341561702000099 ], [ -123.213688495999989, 49.341538042000046 ], [ -123.213539603999948, 49.341481496000043 ], [ -123.213482214999928, 49.341452991000047 ], [ -123.213653875999938, 49.341298065000046 ], [ -123.213821673999988, 49.341093366000081 ], [ -123.214049184999908, 49.340605748000115 ], [ -123.21424179199991, 49.340376546000066 ], [ -123.214902086, 49.340036946000041 ], [ -123.215543016, 49.339629268000067 ], [ -123.21625403299997, 49.339246856000038 ], [ -123.217336121999921, 49.33882527300004 ], [ -123.218762254999959, 49.338492771000077 ], [ -123.219438534999966, 49.338411966000102 ], [ -123.22005203199997, 49.338438572000072 ], [ -123.220573937999973, 49.338569069000101 ], [ -123.220996941999928, 49.338787980000106 ], [ -123.221678338999936, 49.339356699000042 ], [ -123.222084348999942, 49.339537308000075 ], [ -123.224263955999959, 49.340178709000035 ], [ -123.225011140999982, 49.340568023000024 ], [ -123.224839771999953, 49.341200320000034 ], [ -123.224856981999906, 49.341372784000036 ], [ -123.225362602999965, 49.342119735000026 ], [ -123.225289946999922, 49.342217689000016 ], [ -123.225272808999989, 49.342240817000089 ], [ -123.22485697799999, 49.342405745000057 ], [ -123.224528661999955, 49.342442360000049 ], [ -123.224230377999945, 49.342413968000145 ], [ -123.22364120899999, 49.342257468000128 ], [ -123.223631579999974, 49.342243093000079 ], [ -123.223502253000021, 49.342050359000091 ], [ -123.223424240999961, 49.34186014000008 ], [ -123.223266950999985, 49.341729110000088 ], [ -123.223120827999978, 49.341687545000056 ], [ -123.222224963999977, 49.341620389000077 ], [ -123.222098223999978, 49.341644086000045 ], [ -123.222025944999984, 49.341657600000076 ], [ -123.221921107999947, 49.341730551000126 ], [ -123.22188287799996, 49.341932193000098 ], [ -123.221941895999976, 49.342324575000127 ], [ -123.222205019999976, 49.342961735000067 ], [ -123.222696068999966, 49.343791191000072 ], [ -123.222732506999989, 49.343918186000124 ], [ -123.222696619999951, 49.344011843 ], [ -123.222678031000029, 49.344021521000094 ], [ -123.222592919999954, 49.344065908000069 ], [ -123.222439936999976, 49.344092596000017 ], [ -123.222191610999957, 49.344057405000122 ], [ -123.222120252999957, 49.34403105900001 ], [ -123.220858802999913, 49.343565651000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149970334", "BldgCostT": "98853334", "sL_LossRatio": "0.843095271113577", "sL_AssetLoss": "540825", "sL_BldgLoss": "455967", "sL_StrLoss": "295475", "sL_NStrLoss": "160492", "sL_ContLoss": "84858", "geom_point": "0101000020E61000005F3F50B0F7CD5EC0CA2E83F776AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.206237103, 49.340925331000044 ], [ -123.205422058999886, 49.340782092000026 ], [ -123.204711389999915, 49.340633126000071 ], [ -123.20322035099997, 49.340325213000078 ], [ -123.202801923999942, 49.340238799000126 ], [ -123.202527253999918, 49.340184875000027 ], [ -123.200543641999957, 49.339811095000101 ], [ -123.20002419399998, 49.339613372000038 ], [ -123.199731287999938, 49.33950187300006 ], [ -123.199777468999969, 49.339169848000083 ], [ -123.19978295699994, 49.339031410000061 ], [ -123.199731641000014, 49.338790423000056 ], [ -123.197924224999895, 49.338212213000098 ], [ -123.197806260999954, 49.338139523000109 ], [ -123.197545191999922, 49.337978643000028 ], [ -123.197141611999925, 49.337729918000072 ], [ -123.196978684999962, 49.337609328000013 ], [ -123.196521364999953, 49.337270734000064 ], [ -123.19642358099999, 49.337224453000026 ], [ -123.19604650699992, 49.337045898000085 ], [ -123.194927864999954, 49.336774607000038 ], [ -123.195226197999915, 49.336278006000072 ], [ -123.192907135999974, 49.335720973000022 ], [ -123.192741758999986, 49.335681258000129 ], [ -123.192462486999929, 49.335681220000033 ], [ -123.191965033999963, 49.335789768000062 ], [ -123.191376104999947, 49.33619428800008 ], [ -123.191023294999951, 49.336158988000072 ], [ -123.190415195999933, 49.336157588000106 ], [ -123.190436417999962, 49.335921253000031 ], [ -123.190484688999902, 49.335238109000059 ], [ -123.190416298999963, 49.335093009000076 ], [ -123.190402303999946, 49.335043004000084 ], [ -123.192469303999971, 49.335079888000017 ], [ -123.194272183999942, 49.335230895000109 ], [ -123.195120038999917, 49.335517715000044 ], [ -123.195120065, 49.335524568000018 ], [ -123.195152082, 49.335545 ], [ -123.195186670999988, 49.335544942000055 ], [ -123.195955410999929, 49.336009892000057 ], [ -123.197489191999949, 49.337392889000114 ], [ -123.198164087999928, 49.337787392000109 ], [ -123.198433075999972, 49.337886502000025 ], [ -123.198433401999978, 49.337968090000068 ], [ -123.198653479999933, 49.337967713000097 ], [ -123.198867576999959, 49.338046596000062 ], [ -123.201444116999966, 49.338483795000045 ], [ -123.20229570099994, 49.33825740200006 ], [ -123.202692364999976, 49.337960701000014 ], [ -123.20315609499994, 49.337959886000057 ], [ -123.203389085999945, 49.338007949000044 ], [ -123.203389138999967, 49.338021294000029 ], [ -123.203553421999985, 49.338089907000075 ], [ -123.203874057999883, 49.338413624000054 ], [ -123.20388939499999, 49.338498300000069 ], [ -123.203957808999974, 49.338498179000055 ], [ -123.20399149299999, 49.338532187000069 ], [ -123.204060590999973, 49.339081992000089 ], [ -123.204392596999966, 49.339395289000016 ], [ -123.204634419999948, 49.339565026000045 ], [ -123.20463446799999, 49.339576395000037 ], [ -123.204650577999942, 49.339576366000074 ], [ -123.204918192999983, 49.339764204000083 ], [ -123.205495985999988, 49.339789796000098 ], [ -123.205580204999947, 49.340185697000052 ], [ -123.206090179999933, 49.34034669700003 ], [ -123.20666800099994, 49.340372306000134 ], [ -123.207382907999914, 49.340101705000052 ], [ -123.208167996999919, 49.339973508000135 ], [ -123.208744604999936, 49.339955002000096 ], [ -123.209118699999976, 49.340124510000052 ], [ -123.209724217999977, 49.340043301000101 ], [ -123.210068082999911, 49.340258392000067 ], [ -123.210358987999953, 49.340671394 ], [ -123.210718699999973, 49.340769712000046 ], [ -123.211255513999944, 49.340786706000117 ], [ -123.212151389999946, 49.341046009000102 ], [ -123.212454400999917, 49.341036011 ], [ -123.21260521399995, 49.340927703000041 ], [ -123.2127002, 49.340775392000083 ], [ -123.212710985999962, 49.340199999000035 ], [ -123.212958113999917, 49.339848194000083 ], [ -123.213286615999891, 49.339623193000101 ], [ -123.213560920999939, 49.339560247000072 ], [ -123.213704297, 49.339559982000054 ], [ -123.213751924999897, 49.339559894000026 ], [ -123.214261435999902, 49.339428063000092 ], [ -123.214310288999968, 49.33942580300009 ], [ -123.21478778599996, 49.339557789000089 ], [ -123.214788023999958, 49.339557974000023 ], [ -123.214788451999965, 49.339557972000129 ], [ -123.214910806999953, 49.339591793000061 ], [ -123.214950477999935, 49.339557671000073 ], [ -123.214953296999923, 49.339557665000022 ], [ -123.21495870299999, 49.339553990000141 ], [ -123.214958687999967, 49.339550610000089 ], [ -123.215264898999962, 49.339287233000086 ], [ -123.215351411999976, 49.339287071000108 ], [ -123.215370454999928, 49.339274128000071 ], [ -123.215370116999964, 49.339196731000101 ], [ -123.215579313999982, 49.339016794000024 ], [ -123.215749520999921, 49.339016477000044 ], [ -123.215782200999968, 49.338994263000075 ], [ -123.215781689999943, 49.338877431000107 ], [ -123.216115231999964, 49.338745941000063 ], [ -123.216147625999923, 49.338745880000012 ], [ -123.216156035999973, 49.338740163000061 ], [ -123.216193983999986, 49.338723372000082 ], [ -123.216193945999962, 49.338714909000046 ], [ -123.21673679, 49.338500900000042 ], [ -123.217823992999939, 49.338283012000034 ], [ -123.218852345999963, 49.338197424000064 ], [ -123.218990559999924, 49.33820082400009 ], [ -123.219454730000024, 49.33819994300007 ], [ -123.220465893999986, 49.338295813000059 ], [ -123.221032292999908, 49.33843819600007 ], [ -123.22114870199999, 49.338527998000124 ], [ -123.221149238999942, 49.338647698000109 ], [ -123.221269492999966, 49.338736187000016 ], [ -123.221384637999947, 49.338735967000055 ], [ -123.221737504, 49.339193084000087 ], [ -123.22217811799996, 49.339345398000049 ], [ -123.222522096999938, 49.339398099000107 ], [ -123.222905322999935, 49.339272751000081 ], [ -123.2229382599999, 49.339272688000037 ], [ -123.22299963599994, 49.339256362000093 ], [ -123.223499035999978, 49.339250763000059 ], [ -123.223731375999947, 49.339271156000116 ], [ -123.223879975000017, 49.339270867000025 ], [ -123.224456330999928, 49.33938839000011 ], [ -123.22445633699995, 49.339389676000053 ], [ -123.22455715199996, 49.339420091000086 ], [ -123.224659211999963, 49.339485943000085 ], [ -123.224724633999955, 49.339539081000034 ], [ -123.22474151599998, 49.33953904800007 ], [ -123.224794604999943, 49.339573302000083 ], [ -123.224870750999941, 49.339706004000085 ], [ -123.224870883999969, 49.339735310000037 ], [ -123.224893791999975, 49.339746158000054 ], [ -123.224934389999987, 49.339816908000024 ], [ -123.225677394999977, 49.340049007000047 ], [ -123.226190502999913, 49.340506185000045 ], [ -123.227223290999945, 49.340890712000082 ], [ -123.227458885999937, 49.340926294000084 ], [ -123.227927985999926, 49.341213989000053 ], [ -123.229111696999922, 49.341273797000028 ], [ -123.230462913999986, 49.341131257000065 ], [ -123.231285093999958, 49.341044516000117 ], [ -123.231670295999933, 49.340738302000069 ], [ -123.231957105999939, 49.340621498000061 ], [ -123.231895145, 49.34052063400005 ], [ -123.231894962999945, 49.340481812000071 ], [ -123.233386896999932, 49.340168591000086 ], [ -123.233440288999986, 49.339853897000083 ], [ -123.234293624999935, 49.339527705000073 ], [ -123.234525707, 49.339302696000132 ], [ -123.236394408999899, 49.338614792000136 ], [ -123.237605616999986, 49.338297198000056 ], [ -123.239847984000036, 49.338355598000113 ], [ -123.240883486, 49.338623398000088 ], [ -123.241269013999911, 49.339000805000047 ], [ -123.241142442999944, 49.339429983000052 ], [ -123.241011601999972, 49.339873802000078 ], [ -123.240713098999947, 49.340413606000048 ], [ -123.24045130899999, 49.340648609000041 ], [ -123.240178006999955, 49.340756788000064 ], [ -123.240102927999914, 49.340836604000117 ], [ -123.240102148999966, 49.340836527000107 ], [ -123.23989266699999, 49.340811921000117 ], [ -123.239398235999957, 49.34075382200006 ], [ -123.239120882999941, 49.340721254000066 ], [ -123.239070644999984, 49.340716850000049 ], [ -123.237976546999946, 49.340620871000084 ], [ -123.237087066999933, 49.340551727000033 ], [ -123.236854829999942, 49.340533677000074 ], [ -123.23671731499999, 49.340531948000034 ], [ -123.236703454999912, 49.340533896000167 ], [ -123.236384340999962, 49.340578393000044 ], [ -123.235968108999955, 49.340682114000046 ], [ -123.23561234099999, 49.340833315000054 ], [ -123.234965088999942, 49.341173292000079 ], [ -123.234680461999943, 49.341322805000047 ], [ -123.234328440999974, 49.341457 ], [ -123.233998107999952, 49.341527797000019 ], [ -123.233649914999958, 49.341552211000113 ], [ -123.232979555999975, 49.341510039000042 ], [ -123.23275745199993, 49.341496043000113 ], [ -123.232309387999976, 49.341510695000125 ], [ -123.231709106999972, 49.341630719000094 ], [ -123.23113957899993, 49.341744610000042 ], [ -123.230589412999976, 49.341809765000058 ], [ -123.228682303999932, 49.341993181000099 ], [ -123.228148082999951, 49.34197408000005 ], [ -123.227712789999913, 49.34186838100009 ], [ -123.226733036999974, 49.341425776000087 ], [ -123.226567272999915, 49.341350931000086 ], [ -123.225011140999982, 49.340568023000024 ], [ -123.224263955999959, 49.340178709000035 ], [ -123.222084348999942, 49.339537308000075 ], [ -123.221678338999936, 49.339356699000042 ], [ -123.220996941999928, 49.338787980000106 ], [ -123.220573937999973, 49.338569069000101 ], [ -123.22005203199997, 49.338438572000072 ], [ -123.219438534999966, 49.338411966000102 ], [ -123.218762254999959, 49.338492771000077 ], [ -123.217336121999921, 49.33882527300004 ], [ -123.21625403299997, 49.339246856000038 ], [ -123.215543016, 49.339629268000067 ], [ -123.214902086, 49.340036946000041 ], [ -123.21424179199991, 49.340376546000066 ], [ -123.214049184999908, 49.340605748000115 ], [ -123.213821673999988, 49.341093366000081 ], [ -123.213653875999938, 49.341298065000046 ], [ -123.213482214999928, 49.341452991000047 ], [ -123.21300959300001, 49.341783100000065 ], [ -123.212603309999977, 49.341995911000012 ], [ -123.212377385999957, 49.342044204000082 ], [ -123.212138137999915, 49.342031592000062 ], [ -123.212109980999941, 49.342030115000057 ], [ -123.210806655999988, 49.341782081000069 ], [ -123.206545348999953, 49.340979527000066 ], [ -123.206237103, 49.340925331000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "309926003", "BldgCostT": "195284861", "sL_LossRatio": "0.718788076110275", "sL_AssetLoss": "2002568", "sL_BldgLoss": "1439422", "sL_StrLoss": "654186", "sL_NStrLoss": "785236", "sL_ContLoss": "563146", "geom_point": "0101000020E610000026B1F6DAE0CE5EC038EBEECFFFAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.235226728999976, 49.346946424000073 ], [ -123.235066677999967, 49.346907215000023 ], [ -123.233303465999981, 49.346890044000062 ], [ -123.232305586, 49.346869909000134 ], [ -123.232160699999937, 49.346830162000124 ], [ -123.232081036999958, 49.346781298000067 ], [ -123.231966138, 49.346631555000052 ], [ -123.23194351799998, 49.346549930000066 ], [ -123.231924899999967, 49.346124404000115 ], [ -123.231869788000012, 49.345987897000079 ], [ -123.231336941999984, 49.345462718000057 ], [ -123.231099975999911, 49.345168469000022 ], [ -123.231093913999985, 49.345062956000078 ], [ -123.230413031999888, 49.345149984000059 ], [ -123.229818130999959, 49.345110423000115 ], [ -123.228855706999923, 49.345073147000036 ], [ -123.228669247999932, 49.345038649000067 ], [ -123.228077754, 49.344805556000033 ], [ -123.227495382999933, 49.344763599000061 ], [ -123.22728956399996, 49.34470789100007 ], [ -123.226685854, 49.3443799120001 ], [ -123.226438732999895, 49.344301528000109 ], [ -123.226229412999956, 49.344372702000044 ], [ -123.226100154, 49.344398893000118 ], [ -123.22571677599997, 49.344476619000069 ], [ -123.224933982999943, 49.344519576000046 ], [ -123.224761644999944, 49.344501637000079 ], [ -123.224606425999951, 49.344404889000067 ], [ -123.22426088099995, 49.344086238000109 ], [ -123.224081734999984, 49.343631327 ], [ -123.223732109999929, 49.343082022 ], [ -123.223624710999943, 49.342808177000059 ], [ -123.22364120899999, 49.342257468000128 ], [ -123.224230377999945, 49.342413968000145 ], [ -123.224528661999955, 49.342442360000049 ], [ -123.22485697799999, 49.342405745000057 ], [ -123.225272808999989, 49.342240817000089 ], [ -123.225289946999922, 49.342217689000016 ], [ -123.225362602999965, 49.342119735000026 ], [ -123.224856981999906, 49.341372784000036 ], [ -123.224839771999953, 49.341200320000034 ], [ -123.225011140999982, 49.340568023000024 ], [ -123.226567272999915, 49.341350931000086 ], [ -123.226733036999974, 49.341425776000087 ], [ -123.227712789999913, 49.34186838100009 ], [ -123.228148082999951, 49.34197408000005 ], [ -123.228682303999932, 49.341993181000099 ], [ -123.230589412999976, 49.341809765000058 ], [ -123.23113957899993, 49.341744610000042 ], [ -123.231709106999972, 49.341630719000094 ], [ -123.232309387999976, 49.341510695000125 ], [ -123.23275745199993, 49.341496043000113 ], [ -123.232979555999975, 49.341510039000042 ], [ -123.233649914999958, 49.341552211000113 ], [ -123.233998107999952, 49.341527797000019 ], [ -123.234328440999974, 49.341457 ], [ -123.234680461999943, 49.341322805000047 ], [ -123.234965088999942, 49.341173292000079 ], [ -123.23561234099999, 49.340833315000054 ], [ -123.235968108999955, 49.340682114000046 ], [ -123.236384340999962, 49.340578393000044 ], [ -123.236703454999912, 49.340533896000167 ], [ -123.23671731499999, 49.340531948000034 ], [ -123.236854829999942, 49.340533677000074 ], [ -123.237087066999933, 49.340551727000033 ], [ -123.237976546999946, 49.340620871000084 ], [ -123.239070644999984, 49.340716850000049 ], [ -123.239120882999941, 49.340721254000066 ], [ -123.239398235999957, 49.34075382200006 ], [ -123.23989266699999, 49.340811921000117 ], [ -123.240102148999966, 49.340836527000107 ], [ -123.240102927999914, 49.340836604000117 ], [ -123.240082762999947, 49.340858055000098 ], [ -123.239931493999961, 49.341018897000019 ], [ -123.23984990699995, 49.341523094000053 ], [ -123.239595750999939, 49.341864695 ], [ -123.23949492, 49.342000196000093 ], [ -123.239274179999981, 49.342135494000033 ], [ -123.238477304999961, 49.342307792000085 ], [ -123.237901211999912, 49.342561292000084 ], [ -123.237457536999926, 49.342918393000083 ], [ -123.237419892999952, 49.342948698000093 ], [ -123.237412510999945, 49.3430545860001 ], [ -123.237356110999897, 49.343865890000124 ], [ -123.23758098799999, 49.344999601000119 ], [ -123.237266308999921, 49.345216009000147 ], [ -123.236661303999952, 49.345450993000021 ], [ -123.236608222999976, 49.345524860000083 ], [ -123.236538484999983, 49.34562189200004 ], [ -123.236511907999954, 49.34592808900004 ], [ -123.236836093999941, 49.347385097000043 ], [ -123.237044198999968, 49.347554592000094 ], [ -123.237677801999965, 49.347617303000092 ], [ -123.237775778999975, 49.34823679400013 ], [ -123.238109100999935, 49.348532992000109 ], [ -123.238054618999911, 49.348857696000017 ], [ -123.237994601999972, 49.348954648000088 ], [ -123.237986469999896, 49.348954816000088 ], [ -123.236953895999974, 49.348973472000061 ], [ -123.236385001999963, 49.348983730000022 ], [ -123.23637118399995, 49.34898399800003 ], [ -123.236007827999913, 49.348491313000103 ], [ -123.235794404999922, 49.348201899000038 ], [ -123.235434667, 49.347474080000076 ], [ -123.235300604999907, 49.347023076000021 ], [ -123.235226728999976, 49.346946424000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78555417", "BldgCostT": "53966667", "sL_LossRatio": "0.839422757198909", "sL_AssetLoss": "375925", "sL_BldgLoss": "315560", "sL_StrLoss": "199230", "sL_NStrLoss": "116330", "sL_ContLoss": "60365", "geom_point": "0101000020E6100000B7C3BA4C68CF5EC05A9CCEA14EAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.240761905999989, 49.348974503000086 ], [ -123.23994489599994, 49.348919411000082 ], [ -123.239184170999948, 49.348933154000107 ], [ -123.238798925999944, 49.348940118000023 ], [ -123.237994601999972, 49.348954648000088 ], [ -123.238054618999911, 49.348857696000017 ], [ -123.238109100999935, 49.348532992000109 ], [ -123.237775778999975, 49.34823679400013 ], [ -123.237677801999965, 49.347617303000092 ], [ -123.237044198999968, 49.347554592000094 ], [ -123.236836093999941, 49.347385097000043 ], [ -123.236511907999954, 49.34592808900004 ], [ -123.236538484999983, 49.34562189200004 ], [ -123.236608222999976, 49.345524860000083 ], [ -123.236661303999952, 49.345450993000021 ], [ -123.237266308999921, 49.345216009000147 ], [ -123.23758098799999, 49.344999601000119 ], [ -123.237356110999897, 49.343865890000124 ], [ -123.237412510999945, 49.3430545860001 ], [ -123.237419892999952, 49.342948698000093 ], [ -123.237457536999926, 49.342918393000083 ], [ -123.237901211999912, 49.342561292000084 ], [ -123.238477304999961, 49.342307792000085 ], [ -123.239274179999981, 49.342135494000033 ], [ -123.23949492, 49.342000196000093 ], [ -123.239595750999939, 49.341864695 ], [ -123.23984990699995, 49.341523094000053 ], [ -123.239931493999961, 49.341018897000019 ], [ -123.240082762999947, 49.340858055000098 ], [ -123.240102927999914, 49.340836604000117 ], [ -123.240340617999962, 49.340864529000065 ], [ -123.241207388999911, 49.340966333000019 ], [ -123.241906911999976, 49.341049926000025 ], [ -123.24187541699996, 49.341116654000089 ], [ -123.241303818999967, 49.341541561000057 ], [ -123.241115483999948, 49.341700647 ], [ -123.241005631999926, 49.341858157000068 ], [ -123.240963252999961, 49.341992171000079 ], [ -123.240969381999946, 49.342189548000107 ], [ -123.241625404999951, 49.343581437000061 ], [ -123.241715590999945, 49.343777972000048 ], [ -123.241848292, 49.34406713400012 ], [ -123.242117638999943, 49.344627869000114 ], [ -123.24239054099999, 49.344943723000071 ], [ -123.242593125999974, 49.345079486000039 ], [ -123.24276766399997, 49.345196480000077 ], [ -123.243279484999917, 49.345383348000077 ], [ -123.24326081699995, 49.345465723000039 ], [ -123.243846745999946, 49.346441560000045 ], [ -123.24417915199993, 49.346752610000081 ], [ -123.244917809999919, 49.347128060000038 ], [ -123.245055855999965, 49.347282876000051 ], [ -123.245094228999946, 49.347447763000119 ], [ -123.245085262999964, 49.347644756000115 ], [ -123.245071751999888, 49.347987511000014 ], [ -123.245170808999958, 49.348172846000082 ], [ -123.245906106999897, 49.348883233000016 ], [ -123.245740605999984, 49.348958251000035 ], [ -123.245398223, 49.349045895000046 ], [ -123.244808605999964, 49.349125430000129 ], [ -123.244711161999973, 49.349190472000018 ], [ -123.244699374999939, 49.349295551000054 ], [ -123.244761104999924, 49.349391688000011 ], [ -123.244965915999956, 49.349534680000055 ], [ -123.24560885599999, 49.349854543000056 ], [ -123.24593935899999, 49.350128626000064 ], [ -123.245727417999959, 49.350687066000063 ], [ -123.245715507999989, 49.350705620000085 ], [ -123.245678500999929, 49.350696508000098 ], [ -123.243301545999941, 49.349702475000058 ], [ -123.242509403999946, 49.349371192000049 ], [ -123.24180350499995, 49.349138884000055 ], [ -123.240761905999989, 49.348974503000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59989584", "BldgCostT": "41108334", "sL_LossRatio": "0.729209509250828", "sL_AssetLoss": "1261887", "sL_BldgLoss": "920180", "sL_StrLoss": "396210", "sL_NStrLoss": "523970", "sL_ContLoss": "341707", "geom_point": "0101000020E6100000A6BD1CD198CF5EC07F820F4ED9AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.242117638999943, 49.344627869000114 ], [ -123.241848292, 49.34406713400012 ], [ -123.241715590999945, 49.343777972000048 ], [ -123.241625404999951, 49.343581437000061 ], [ -123.240969381999946, 49.342189548000107 ], [ -123.240963252999961, 49.341992171000079 ], [ -123.241005631999926, 49.341858157000068 ], [ -123.241115483999948, 49.341700647 ], [ -123.241303818999967, 49.341541561000057 ], [ -123.24187541699996, 49.341116654000089 ], [ -123.241906911999976, 49.341049926000025 ], [ -123.241207388999911, 49.340966333000019 ], [ -123.240340617999962, 49.340864529000065 ], [ -123.240102927999914, 49.340836604000117 ], [ -123.240178006999955, 49.340756788000064 ], [ -123.24045130899999, 49.340648609000041 ], [ -123.240713098999947, 49.340413606000048 ], [ -123.241011601999972, 49.339873802000078 ], [ -123.241142442999944, 49.339429983000052 ], [ -123.24149524099991, 49.339298604000092 ], [ -123.241691008999908, 49.339373257000098 ], [ -123.241730671999946, 49.339388384000088 ], [ -123.24216209199993, 49.339953231000088 ], [ -123.242713125999941, 49.340109127000126 ], [ -123.242785528999946, 49.340129603000051 ], [ -123.243614052999959, 49.340364006000108 ], [ -123.244076584, 49.340776545000018 ], [ -123.244241022, 49.340926635000095 ], [ -123.245106963999916, 49.341323532000033 ], [ -123.24515883699992, 49.341319270000099 ], [ -123.245980962999923, 49.341030405000033 ], [ -123.246466061999939, 49.340971629000087 ], [ -123.24737649399998, 49.34104884400012 ], [ -123.247307633, 49.341304646000069 ], [ -123.247360686999954, 49.341661719000122 ], [ -123.247154279999961, 49.341800567000142 ], [ -123.246490038, 49.341956543000094 ], [ -123.246233589999946, 49.342173368000061 ], [ -123.246180491999908, 49.342302598000067 ], [ -123.246189744999938, 49.34240189100008 ], [ -123.246297423999977, 49.342557729000148 ], [ -123.246303839999896, 49.342567537000043 ], [ -123.246450587999988, 49.34291745300002 ], [ -123.246539365999965, 49.342932235000092 ], [ -123.24617041099999, 49.343745057000042 ], [ -123.246152464999938, 49.343885068000056 ], [ -123.24626359, 49.344260734000038 ], [ -123.246267263, 49.344730926000132 ], [ -123.246072750999957, 49.344716080000069 ], [ -123.245687439999926, 49.344839348000079 ], [ -123.244101812999958, 49.345346682000077 ], [ -123.243818021999942, 49.345421399000031 ], [ -123.243535338999962, 49.345431298000086 ], [ -123.243279484999917, 49.345383348000077 ], [ -123.24276766399997, 49.345196480000077 ], [ -123.242593125999974, 49.345079486000039 ], [ -123.24239054099999, 49.344943723000071 ], [ -123.242117638999943, 49.344627869000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54979249", "BldgCostT": "37444999", "sL_LossRatio": "0.762598175142906", "sL_AssetLoss": "645530", "sL_BldgLoss": "492280", "sL_StrLoss": "228870", "sL_NStrLoss": "263410", "sL_ContLoss": "153250", "geom_point": "0101000020E6100000613921F8C8CF5EC040C4A3E06BAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.243846745999946, 49.346441560000045 ], [ -123.24326081699995, 49.345465723000039 ], [ -123.243279484999917, 49.345383348000077 ], [ -123.243535338999962, 49.345431298000086 ], [ -123.243818021999942, 49.345421399000031 ], [ -123.244101812999958, 49.345346682000077 ], [ -123.245687439999926, 49.344839348000079 ], [ -123.246072750999957, 49.344716080000069 ], [ -123.246267263, 49.344730926000132 ], [ -123.246791195999933, 49.344827158000044 ], [ -123.247462410999958, 49.344950475000104 ], [ -123.249388454, 49.346326017000081 ], [ -123.250032026999946, 49.346171286000043 ], [ -123.25001668099999, 49.346545542000108 ], [ -123.249703724999918, 49.346949123000087 ], [ -123.248468853999967, 49.348137956000066 ], [ -123.248220412999913, 49.34884487600003 ], [ -123.24593935899999, 49.350128626000064 ], [ -123.24560885599999, 49.349854543000056 ], [ -123.244965915999956, 49.349534680000055 ], [ -123.244761104999924, 49.349391688000011 ], [ -123.244699374999939, 49.349295551000054 ], [ -123.244711161999973, 49.349190472000018 ], [ -123.244808605999964, 49.349125430000129 ], [ -123.245398223, 49.349045895000046 ], [ -123.245740605999984, 49.348958251000035 ], [ -123.245906106999897, 49.348883233000016 ], [ -123.245170808999958, 49.348172846000082 ], [ -123.245071751999888, 49.347987511000014 ], [ -123.245085262999964, 49.347644756000115 ], [ -123.245094228999946, 49.347447763000119 ], [ -123.245055855999965, 49.347282876000051 ], [ -123.244917809999919, 49.347128060000038 ], [ -123.24417915199993, 49.346752610000081 ], [ -123.243846745999946, 49.346441560000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110189145", "BldgCostT": "75316524", "sL_LossRatio": "0.754599626688985", "sL_AssetLoss": "1452944", "sL_BldgLoss": "1096391", "sL_StrLoss": "537271", "sL_NStrLoss": "559120", "sL_ContLoss": "356553", "geom_point": "0101000020E6100000B5934E4526D05EC06B6281AFE8AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.246490038, 49.341956543000094 ], [ -123.247154279999961, 49.341800567000142 ], [ -123.247360686999954, 49.341661719000122 ], [ -123.247307633, 49.341304646000069 ], [ -123.24737649399998, 49.34104884400012 ], [ -123.248170031999976, 49.341032129000077 ], [ -123.248309119999988, 49.341053677000097 ], [ -123.248329162999937, 49.341017252000078 ], [ -123.248337635999974, 49.341016903000089 ], [ -123.248490549999985, 49.341010548000035 ], [ -123.249390622999954, 49.341146032000054 ], [ -123.249699479999919, 49.3411124510001 ], [ -123.249993273999948, 49.341015002000034 ], [ -123.25019357799998, 49.340948530000063 ], [ -123.250639775999929, 49.340849102000114 ], [ -123.251054564999961, 49.340699345000104 ], [ -123.251318882999897, 49.340534962000056 ], [ -123.25154063799998, 49.340438839000072 ], [ -123.251467947999984, 49.341116179000075 ], [ -123.251693991999986, 49.341100156000067 ], [ -123.253491084999922, 49.340727956000123 ], [ -123.254014267999963, 49.340644449000116 ], [ -123.254109252999925, 49.340629293000056 ], [ -123.255318087, 49.340337576000088 ], [ -123.255663788999939, 49.340286030000073 ], [ -123.256001396999977, 49.340277487000058 ], [ -123.256377943999965, 49.340318962000062 ], [ -123.256511295999985, 49.340333635 ], [ -123.256895454999977, 49.340421765000073 ], [ -123.256927357999984, 49.340435 ], [ -123.257932199999928, 49.340852403000028 ], [ -123.258207848, 49.340914325000014 ], [ -123.258501814999974, 49.340922693000017 ], [ -123.258744534999977, 49.340890100000074 ], [ -123.258750744999958, 49.341203670000084 ], [ -123.258788841999959, 49.341303699000065 ], [ -123.258879439999987, 49.34140055000006 ], [ -123.259054297999981, 49.341468018000036 ], [ -123.259832273999962, 49.341660185000066 ], [ -123.260037541999907, 49.34171088600003 ], [ -123.260048091999963, 49.341721256000056 ], [ -123.26048361600003, 49.342148154000029 ], [ -123.260182732999937, 49.34228012000009 ], [ -123.26006515499995, 49.34233272500007 ], [ -123.259925496999969, 49.342395164000102 ], [ -123.259621102999986, 49.342438980000047 ], [ -123.259606283, 49.342441123000079 ], [ -123.259233813999955, 49.342425762000069 ], [ -123.258924065999963, 49.342413010000037 ], [ -123.258341159999958, 49.342311779000056 ], [ -123.257305888999966, 49.342134234000078 ], [ -123.257019562999943, 49.342135968000022 ], [ -123.256805655000022, 49.342170171000049 ], [ -123.256720314999896, 49.342263461000108 ], [ -123.256703205999955, 49.342366594000048 ], [ -123.256745469999927, 49.34265224300006 ], [ -123.256798257999932, 49.342689596000071 ], [ -123.257236390999964, 49.342726839000044 ], [ -123.257516806999917, 49.342801491000088 ], [ -123.257775201999948, 49.342969232000037 ], [ -123.257875415999948, 49.343135700000104 ], [ -123.257893546, 49.34325405200007 ], [ -123.257905195000021, 49.343330050000056 ], [ -123.257912150999942, 49.343380796000083 ], [ -123.257934027999909, 49.343540622000098 ], [ -123.257916182999949, 49.343958019000119 ], [ -123.257964614999977, 49.344140379000102 ], [ -123.258015189999981, 49.34433066400004 ], [ -123.257495321999926, 49.3443958390001 ], [ -123.256999776999947, 49.344398572000074 ], [ -123.256713530999917, 49.344398519000087 ], [ -123.256495846999911, 49.344426304000088 ], [ -123.256320858999985, 49.344476792000115 ], [ -123.25559166, 49.344706859000027 ], [ -123.254440141000018, 49.344795580000053 ], [ -123.254072667999978, 49.344842990000132 ], [ -123.253134754999962, 49.345111853000105 ], [ -123.253199563999942, 49.345248587000114 ], [ -123.253195594999937, 49.345361938000067 ], [ -123.253070430999941, 49.345569516000047 ], [ -123.252914983999943, 49.345684425000094 ], [ -123.252687694999949, 49.345757896000102 ], [ -123.251313577999937, 49.345956213000065 ], [ -123.250032026999946, 49.346171286000043 ], [ -123.249388454, 49.346326017000081 ], [ -123.247462410999958, 49.344950475000104 ], [ -123.246791195999933, 49.344827158000044 ], [ -123.246267263, 49.344730926000132 ], [ -123.24626359, 49.344260734000038 ], [ -123.246152464999938, 49.343885068000056 ], [ -123.24617041099999, 49.343745057000042 ], [ -123.246539365999965, 49.342932235000092 ], [ -123.246450587999988, 49.34291745300002 ], [ -123.246303839999896, 49.342567537000043 ], [ -123.246297423999977, 49.342557729000148 ], [ -123.246189744999938, 49.34240189100008 ], [ -123.246180491999908, 49.342302598000067 ], [ -123.246233589999946, 49.342173368000061 ], [ -123.246490038, 49.341956543000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86606001", "BldgCostT": "56375001", "sL_LossRatio": "0.771875682122922", "sL_AssetLoss": "410483.2", "sL_BldgLoss": "316842", "sL_StrLoss": "179180", "sL_NStrLoss": "137662", "sL_ContLoss": "93641.2", "geom_point": "0101000020E6100000096E62507FD05EC0A4DCA75788AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.263444555999968, 49.341639569000094 ], [ -123.263241576999974, 49.341628144000033 ], [ -123.262484482999966, 49.341703529000043 ], [ -123.26048361600003, 49.342148154000029 ], [ -123.260048091999963, 49.341721256000056 ], [ -123.260037541999907, 49.34171088600003 ], [ -123.259832273999962, 49.341660185000066 ], [ -123.259054297999981, 49.341468018000036 ], [ -123.258879439999987, 49.34140055000006 ], [ -123.258788841999959, 49.341303699000065 ], [ -123.258750744999958, 49.341203670000084 ], [ -123.258744534999977, 49.340890100000074 ], [ -123.258501814999974, 49.340922693000017 ], [ -123.258207848, 49.340914325000014 ], [ -123.257932199999928, 49.340852403000028 ], [ -123.256927357999984, 49.340435 ], [ -123.256895454999977, 49.340421765000073 ], [ -123.256511295999985, 49.340333635 ], [ -123.256377943999965, 49.340318962000062 ], [ -123.256001396999977, 49.340277487000058 ], [ -123.255663788999939, 49.340286030000073 ], [ -123.255318087, 49.340337576000088 ], [ -123.254109252999925, 49.340629293000056 ], [ -123.254014267999963, 49.340644449000116 ], [ -123.253491084999922, 49.340727956000123 ], [ -123.251693991999986, 49.341100156000067 ], [ -123.251467947999984, 49.341116179000075 ], [ -123.25154063799998, 49.340438839000072 ], [ -123.251475498999923, 49.340376853000073 ], [ -123.250868006999909, 49.340133554000083 ], [ -123.250696534999975, 49.340008520000048 ], [ -123.25061587499999, 49.339907417000092 ], [ -123.250554816999966, 49.339800478000072 ], [ -123.250553083999989, 49.339713700000033 ], [ -123.250549610999954, 49.339540084000063 ], [ -123.250762424999891, 49.338829548000049 ], [ -123.25090602099999, 49.338496389000056 ], [ -123.250936888999945, 49.338231499000038 ], [ -123.251074716999966, 49.33787927900007 ], [ -123.251263398999924, 49.33776069000006 ], [ -123.251448445999941, 49.337725774000099 ], [ -123.25205387499993, 49.337841150000052 ], [ -123.25284740699999, 49.337846896000016 ], [ -123.253177085999965, 49.337925525000081 ], [ -123.253372946999946, 49.33814932100011 ], [ -123.253386028999941, 49.338392815000127 ], [ -123.253505163999975, 49.338472391000053 ], [ -123.25399317499992, 49.338685488000102 ], [ -123.254024191, 49.338699003000087 ], [ -123.254268968999952, 49.338863725000039 ], [ -123.254424164999932, 49.338914505000069 ], [ -123.254688809999976, 49.338930234000074 ], [ -123.255413089999976, 49.338897305000074 ], [ -123.255627755999967, 49.338943275000069 ], [ -123.255811656999953, 49.339020882000092 ], [ -123.256043919999968, 49.339211383000112 ], [ -123.256840295999964, 49.339039804000052 ], [ -123.257023688999979, 49.339000315000071 ], [ -123.25709005600001, 49.33899226400009 ], [ -123.257712459999965, 49.338916905000104 ], [ -123.259094217999973, 49.33893394600004 ], [ -123.260027537999932, 49.339112496000027 ], [ -123.26058002900001, 49.339421149000025 ], [ -123.260758739999943, 49.339520994000054 ], [ -123.260897587999963, 49.339569538000035 ], [ -123.261133103999953, 49.339589008000083 ], [ -123.261946028999915, 49.339559338000136 ], [ -123.262036302999945, 49.339556052000056 ], [ -123.262765845999979, 49.339620447000044 ], [ -123.263695270999946, 49.340006684000102 ], [ -123.263806628999987, 49.340052945000132 ], [ -123.264783020999985, 49.340387177000061 ], [ -123.26526305499999, 49.340733156000042 ], [ -123.265604889999977, 49.341219654000028 ], [ -123.265576355999968, 49.341702527000038 ], [ -123.265513740999964, 49.341784688000118 ], [ -123.265410038, 49.341839695000104 ], [ -123.265240490999986, 49.341867846000127 ], [ -123.264954724999924, 49.341971148000063 ], [ -123.264794749999922, 49.342023244000032 ], [ -123.264238005999985, 49.342256280000065 ], [ -123.264127917999986, 49.342136866000097 ], [ -123.263648067999924, 49.341758212000059 ], [ -123.263444555999968, 49.341639569000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44291802", "BldgCostT": "28893745", "sL_LossRatio": "0.739722280395081", "sL_AssetLoss": "233977", "sL_BldgLoss": "173078", "sL_StrLoss": "91927", "sL_NStrLoss": "81151", "sL_ContLoss": "60899", "geom_point": "0101000020E6100000564D0804D7D05EC04E34E59698AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.259114852999957, 49.335122279000068 ], [ -123.259262378999907, 49.332629242000031 ], [ -123.259723309999956, 49.332529191000091 ], [ -123.260190110999957, 49.332573303000096 ], [ -123.260523208, 49.332707183000132 ], [ -123.260895111999943, 49.333011991000049 ], [ -123.261282003999909, 49.333066086000031 ], [ -123.261445399999971, 49.33293941199999 ], [ -123.26160779699994, 49.332218710000092 ], [ -123.261645296999944, 49.331572096000059 ], [ -123.261408425999946, 49.331221803000055 ], [ -123.261502286999942, 49.330842908000086 ], [ -123.261900387999958, 49.330617900000085 ], [ -123.262423088, 49.330489693000125 ], [ -123.262837378999976, 49.330479694000083 ], [ -123.263482376999917, 49.330173497000033 ], [ -123.26368870899995, 49.330334500000113 ], [ -123.26396399799998, 49.330090889000104 ], [ -123.264357507999975, 49.329932033000077 ], [ -123.264567115999981, 49.329847401000052 ], [ -123.264800010999977, 49.329783289000076 ], [ -123.26511810099997, 49.329827495000046 ], [ -123.265146216999966, 49.330160706000093 ], [ -123.265533400999942, 49.330330197000066 ], [ -123.265577588999989, 49.330905605000027 ], [ -123.265893603999984, 49.330895598000019 ], [ -123.266417079999925, 49.330750297000058 ], [ -123.266789101999947, 49.33076890300007 ], [ -123.266790015999945, 49.331065096000074 ], [ -123.266950328999926, 49.331271581000095 ], [ -123.266957009999913, 49.331280185000075 ], [ -123.267499492999946, 49.331684770000052 ], [ -123.267439859999939, 49.332695609000119 ], [ -123.266241477999955, 49.332665306000123 ], [ -123.266237012999937, 49.332740939000075 ], [ -123.264760849999945, 49.332703593000069 ], [ -123.264609790999984, 49.335261472000099 ], [ -123.259114852999957, 49.335122279000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139576501", "BldgCostT": "90225001", "sL_LossRatio": "0.77813720406904", "sL_AssetLoss": "533659.1", "sL_BldgLoss": "415260", "sL_StrLoss": "249118", "sL_NStrLoss": "166142", "sL_ContLoss": "118399.1", "geom_point": "0101000020E6100000DD2D138FD5D05EC0D38CE2A81EAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.25899780099995, 49.352837895000036 ], [ -123.259202027999962, 49.352456725000103 ], [ -123.259987354999922, 49.351698552000066 ], [ -123.260391306999949, 49.351430541000113 ], [ -123.260642242999964, 49.351342145000039 ], [ -123.260918403999966, 49.351244853 ], [ -123.261256580999955, 49.351181383000053 ], [ -123.26156801399992, 49.351177581000016 ], [ -123.263416122999899, 49.351155003000031 ], [ -123.264122992999916, 49.351280977000044 ], [ -123.264388427999933, 49.351284076000091 ], [ -123.264824058999963, 49.351178008000062 ], [ -123.266053972999927, 49.351209122000085 ], [ -123.266180723, 49.351230323000024 ], [ -123.2661971199999, 49.351185737 ], [ -123.26631361699999, 49.350844657000096 ], [ -123.266324751999932, 49.350694390000051 ], [ -123.266334717999968, 49.350560074000086 ], [ -123.266347266999929, 49.350390730000122 ], [ -123.26628167099993, 49.349823527000048 ], [ -123.266405166999988, 49.349634870000088 ], [ -123.26656002299994, 49.3493982950001 ], [ -123.266674078999984, 49.349284116000021 ], [ -123.266945392999943, 49.349047845000044 ], [ -123.267431376000019, 49.348625154000032 ], [ -123.267603290999972, 49.34839356 ], [ -123.267722820999907, 49.348070573000072 ], [ -123.267742588999937, 49.347852244000144 ], [ -123.267712289999977, 49.347736200000085 ], [ -123.267608360999958, 49.347608392000041 ], [ -123.267301407000019, 49.347399823000046 ], [ -123.266406153, 49.346782816000015 ], [ -123.266356445999961, 49.346739238000069 ], [ -123.266223966999959, 49.346605313000033 ], [ -123.266053516999989, 49.346322729000121 ], [ -123.265898664999952, 49.345868534000097 ], [ -123.265875873999931, 49.345791511000144 ], [ -123.265755285999958, 49.34538401800004 ], [ -123.265760182999927, 49.345184214000021 ], [ -123.265911397999915, 49.344604483000111 ], [ -123.26592658700001, 49.344347311 ], [ -123.265785135, 49.343729413000034 ], [ -123.265751539999954, 49.343582812000072 ], [ -123.265370386999948, 49.342231337000072 ], [ -123.265240490999986, 49.341867846000127 ], [ -123.265410038, 49.341839695000104 ], [ -123.265513740999964, 49.341784688000118 ], [ -123.265576355999968, 49.341702527000038 ], [ -123.265604889999977, 49.341219654000028 ], [ -123.26526305499999, 49.340733156000042 ], [ -123.264783020999985, 49.340387177000061 ], [ -123.263806628999987, 49.340052945000132 ], [ -123.263695270999946, 49.340006684000102 ], [ -123.262765845999979, 49.339620447000044 ], [ -123.262036302999945, 49.339556052000056 ], [ -123.261946028999915, 49.339559338000136 ], [ -123.261133103999953, 49.339589008000083 ], [ -123.260897587999963, 49.339569538000035 ], [ -123.260758739999943, 49.339520994000054 ], [ -123.26058002900001, 49.339421149000025 ], [ -123.260027537999932, 49.339112496000027 ], [ -123.259094217999973, 49.33893394600004 ], [ -123.257712459999965, 49.338916905000104 ], [ -123.25709005600001, 49.33899226400009 ], [ -123.257023688999979, 49.339000315000071 ], [ -123.256840295999964, 49.339039804000052 ], [ -123.256043919999968, 49.339211383000112 ], [ -123.255811656999953, 49.339020882000092 ], [ -123.255627755999967, 49.338943275000069 ], [ -123.255413089999976, 49.338897305000074 ], [ -123.254688809999976, 49.338930234000074 ], [ -123.254424164999932, 49.338914505000069 ], [ -123.254268968999952, 49.338863725000039 ], [ -123.254024191, 49.338699003000087 ], [ -123.25399317499992, 49.338685488000102 ], [ -123.253505163999975, 49.338472391000053 ], [ -123.253386028999941, 49.338392815000127 ], [ -123.253372946999946, 49.33814932100011 ], [ -123.253177085999965, 49.337925525000081 ], [ -123.25284740699999, 49.337846896000016 ], [ -123.25205387499993, 49.337841150000052 ], [ -123.251448445999941, 49.337725774000099 ], [ -123.251263398999924, 49.33776069000006 ], [ -123.251074716999966, 49.33787927900007 ], [ -123.250936888999945, 49.338231499000038 ], [ -123.25090602099999, 49.338496389000056 ], [ -123.250762424999891, 49.338829548000049 ], [ -123.250549610999954, 49.339540084000063 ], [ -123.250553083999989, 49.339713700000033 ], [ -123.250554816999966, 49.339800478000072 ], [ -123.25061587499999, 49.339907417000092 ], [ -123.250696534999975, 49.340008520000048 ], [ -123.250868006999909, 49.340133554000083 ], [ -123.251475498999923, 49.340376853000073 ], [ -123.25154063799998, 49.340438839000072 ], [ -123.251318882999897, 49.340534962000056 ], [ -123.251054564999961, 49.340699345000104 ], [ -123.250639775999929, 49.340849102000114 ], [ -123.25019357799998, 49.340948530000063 ], [ -123.249993273999948, 49.341015002000034 ], [ -123.249699479999919, 49.3411124510001 ], [ -123.249390622999954, 49.341146032000054 ], [ -123.248490549999985, 49.341010548000035 ], [ -123.248337635999974, 49.341016903000089 ], [ -123.248329162999937, 49.341017252000078 ], [ -123.248309119999988, 49.341053677000097 ], [ -123.248170031999976, 49.341032129000077 ], [ -123.24737649399998, 49.34104884400012 ], [ -123.246466061999939, 49.340971629000087 ], [ -123.245980962999923, 49.341030405000033 ], [ -123.24515883699992, 49.341319270000099 ], [ -123.245106963999916, 49.341323532000033 ], [ -123.244241022, 49.340926635000095 ], [ -123.244076584, 49.340776545000018 ], [ -123.243614052999959, 49.340364006000108 ], [ -123.242785528999946, 49.340129603000051 ], [ -123.242713125999941, 49.340109127000126 ], [ -123.24216209199993, 49.339953231000088 ], [ -123.241730671999946, 49.339388384000088 ], [ -123.241691008999908, 49.339373257000098 ], [ -123.24149524099991, 49.339298604000092 ], [ -123.241142442999944, 49.339429983000052 ], [ -123.241269013999911, 49.339000805000047 ], [ -123.241737202999957, 49.338694603000128 ], [ -123.242231990999983, 49.338801388000086 ], [ -123.242923495999918, 49.339438004000058 ], [ -123.243860683999955, 49.339787001000062 ], [ -123.244951914999916, 49.340540406000052 ], [ -123.245351380999921, 49.340576000000127 ], [ -123.246164908999901, 49.340447806000107 ], [ -123.247175096999968, 49.340449614000093 ], [ -123.247175441999914, 49.3405186600001 ], [ -123.248304336999979, 49.340504963000093 ], [ -123.248414246999943, 49.340490974 ], [ -123.248414049999923, 49.340451816000098 ], [ -123.248573383999911, 49.340452099000125 ], [ -123.248957202, 49.340388004000047 ], [ -123.249145782999989, 49.340298580000145 ], [ -123.249181194999949, 49.340298504000025 ], [ -123.249239129000031, 49.340276973000115 ], [ -123.249239014999944, 49.340254370000096 ], [ -123.24945281199993, 49.340152987000074 ], [ -123.249491221999961, 49.340027982000073 ], [ -123.249585886999967, 49.340027777000067 ], [ -123.249588235999951, 49.34002596300008 ], [ -123.249649363999936, 49.339734611000054 ], [ -123.249648262999941, 49.339516898000149 ], [ -123.249723694999915, 49.33927140400008 ], [ -123.249762231999981, 49.339217839000057 ], [ -123.24980367399999, 49.339217748000053 ], [ -123.249898464999916, 49.339028479000085 ], [ -123.250243191999971, 49.338549313000023 ], [ -123.250256700999969, 49.338405510000058 ], [ -123.250053920999932, 49.338072983000124 ], [ -123.250053295999948, 49.337949715000093 ], [ -123.250015636999947, 49.337889062000073 ], [ -123.249977236999925, 49.337731463000097 ], [ -123.250051635999966, 49.337621993000084 ], [ -123.25005112599996, 49.337521299000031 ], [ -123.250168386, 49.33744409399999 ], [ -123.250608901999925, 49.337407110000122 ], [ -123.250724093999978, 49.337259822000085 ], [ -123.250856535999972, 49.337178863000084 ], [ -123.251167691999953, 49.337173587000045 ], [ -123.251319328999926, 49.337185843000036 ], [ -123.251876774999957, 49.337324279000072 ], [ -123.252006185999946, 49.337323998000052 ], [ -123.252466989999931, 49.337484006000111 ], [ -123.252687300999938, 49.337465490000042 ], [ -123.25294735199999, 49.337321942000123 ], [ -123.253563518999968, 49.337320591 ], [ -123.253747181999969, 49.337399992000066 ], [ -123.253639781999979, 49.337868495000073 ], [ -123.254221792999957, 49.338621990000043 ], [ -123.254624662999916, 49.338674954000076 ], [ -123.25482811699996, 49.338701701000062 ], [ -123.255102500999968, 49.338637598000105 ], [ -123.255308808999942, 49.338485200000051 ], [ -123.255320205999951, 49.338368393000096 ], [ -123.254974289999964, 49.338009500000069 ], [ -123.254837595999973, 49.33778685000005 ], [ -123.258439225999936, 49.337878251000092 ], [ -123.258408974999938, 49.338389273000125 ], [ -123.261205503999975, 49.338382986000113 ], [ -123.261206047999934, 49.338485476000066 ], [ -123.261238736999971, 49.338486563000025 ], [ -123.261379136999921, 49.338532562000069 ], [ -123.261444936999979, 49.338601863000086 ], [ -123.261445273999982, 49.338652296000141 ], [ -123.261619894999981, 49.338651902 ], [ -123.261621324999979, 49.338921752000076 ], [ -123.262447250999941, 49.338919879000045 ], [ -123.262444381999927, 49.338380179000097 ], [ -123.264096215, 49.338376416000102 ], [ -123.264097460999906, 49.338609060000145 ], [ -123.26517695899993, 49.338643796000056 ], [ -123.268640224999956, 49.338635798000055 ], [ -123.268640964, 49.338771360000116 ], [ -123.269149636999956, 49.338767363000052 ], [ -123.268774137999927, 49.339382863000019 ], [ -123.268645058999979, 49.339524102000077 ], [ -123.268649038999982, 49.340254895000015 ], [ -123.269062012999939, 49.340253935000092 ], [ -123.269069367999947, 49.341603183000089 ], [ -123.268656381999975, 49.341604143000083 ], [ -123.268659321999976, 49.342143843000073 ], [ -123.268246330999943, 49.342144802000028 ], [ -123.268247797999933, 49.342414651000112 ], [ -123.267834806999971, 49.34241560800006 ], [ -123.267837402999959, 49.342894041000051 ], [ -123.267863135999974, 49.342907163000113 ], [ -123.267837787999909, 49.342965089000124 ], [ -123.267839199999969, 49.343225157000042 ], [ -123.26768609899996, 49.343225512000103 ], [ -123.267428069999937, 49.343571048000037 ], [ -123.26742912499995, 49.343765811000047 ], [ -123.26728237599994, 49.343766152000086 ], [ -123.267018033999989, 49.344120134000065 ], [ -123.267019042999934, 49.344306466000084 ], [ -123.267161068999911, 49.344306137000018 ], [ -123.267151406999957, 49.344314491000034 ], [ -123.267178575999964, 49.344448398000061 ], [ -123.267316793999925, 49.344521003000068 ], [ -123.267433131999965, 49.344504807000128 ], [ -123.267433425999954, 49.344559366000055 ], [ -123.267488173999965, 49.344575233000036 ], [ -123.267846523999964, 49.344574404000042 ], [ -123.267849102999932, 49.345049681000084 ], [ -123.267926725999956, 49.345113923000035 ], [ -123.268137143999979, 49.345113435000073 ], [ -123.26826308199999, 49.345226178000097 ], [ -123.268263639999986, 49.345328772000109 ], [ -123.268263708999882, 49.345341540000064 ], [ -123.268329895999969, 49.34538284000007 ], [ -123.268437802, 49.345382590000021 ], [ -123.269198323999944, 49.346063404000063 ], [ -123.269588492999915, 49.346979216000101 ], [ -123.269890188999966, 49.346952099000085 ], [ -123.27015088399996, 49.34663739700013 ], [ -123.270520590999951, 49.346509213000012 ], [ -123.270838107999936, 49.346527683000062 ], [ -123.271447017999947, 49.346974900000099 ], [ -123.271545316999905, 49.347389401000072 ], [ -123.271682685999949, 49.347451992000146 ], [ -123.272233919, 49.347459207000064 ], [ -123.272400207999965, 49.347540403000096 ], [ -123.272305106999966, 49.347863583000155 ], [ -123.271989303999959, 49.348090110000044 ], [ -123.271397308999966, 49.348054483000027 ], [ -123.270957308, 49.348299492000066 ], [ -123.270421902999914, 49.348461803000092 ], [ -123.270188791999942, 49.348417711000074 ], [ -123.270062687999882, 49.348238191000071 ], [ -123.269731813999968, 49.348185498000113 ], [ -123.269486094999962, 49.348671202000077 ], [ -123.269476785999956, 49.349427408000068 ], [ -123.269314493999957, 49.349769205000065 ], [ -123.269026197999921, 49.350039793000079 ], [ -123.268988207999882, 49.350525493000085 ], [ -123.269029479999944, 49.350750500000053 ], [ -123.269238081999944, 49.350830296000076 ], [ -123.269607495999963, 49.350722009000016 ], [ -123.269788497999954, 49.350784690000083 ], [ -123.269927315999979, 49.35094560600006 ], [ -123.269904436000019, 49.351190805000023 ], [ -123.269806373000023, 49.351200535000039 ], [ -123.269816123999959, 49.351360730000096 ], [ -123.26975556599993, 49.351414185000067 ], [ -123.26961824199999, 49.351545283000057 ], [ -123.269160695999972, 49.351697991000073 ], [ -123.268999181999945, 49.351806568000057 ], [ -123.268646074999978, 49.352657028000124 ], [ -123.2685139109999, 49.352890484000106 ], [ -123.267789909999976, 49.35288027100011 ], [ -123.267503516999923, 49.352952291000072 ], [ -123.267182334999987, 49.352961285000049 ], [ -123.266661892999977, 49.352917515000108 ], [ -123.266220327999946, 49.352936982000095 ], [ -123.263617326999949, 49.352894474000017 ], [ -123.260593880999949, 49.352845019000078 ], [ -123.260609856999963, 49.352923765000064 ], [ -123.259273874999948, 49.353009702000122 ], [ -123.259181948999966, 49.35305147300005 ], [ -123.259060408999957, 49.352988967000094 ], [ -123.258993104999917, 49.352917012000098 ], [ -123.25899780099995, 49.352837895000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178616406", "BldgCostT": "122129252", "sL_LossRatio": "0.816401887676069", "sL_AssetLoss": "1110360", "sL_BldgLoss": "906500", "sL_StrLoss": "406110", "sL_NStrLoss": "500390", "sL_ContLoss": "203860", "geom_point": "0101000020E61000009FA533498FCB5EC0D118085D9DAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.187042975999944, 49.335544824000081 ], [ -123.185667286999887, 49.334863279000096 ], [ -123.185263553999945, 49.334713174000086 ], [ -123.183268944999966, 49.334214352000032 ], [ -123.182405530999958, 49.333998401000038 ], [ -123.179306776999937, 49.33325829700005 ], [ -123.175020085999961, 49.332194400000077 ], [ -123.174778991999972, 49.332131407000062 ], [ -123.173977106, 49.331633090000068 ], [ -123.172647203999944, 49.330497697000048 ], [ -123.171875992999944, 49.330060582000073 ], [ -123.17106350499995, 49.329780799000076 ], [ -123.171054799, 49.329089795000101 ], [ -123.17109111299996, 49.328698142000057 ], [ -123.171014586999959, 49.328317544000043 ], [ -123.171011818999929, 49.328103994000067 ], [ -123.17100671299994, 49.328045789000022 ], [ -123.173801003999984, 49.330397104000085 ], [ -123.174960608999982, 49.33112350600009 ], [ -123.175552806, 49.331374209000046 ], [ -123.177235377999949, 49.331983696000094 ], [ -123.179148086999959, 49.332214402000091 ], [ -123.179782492999891, 49.332375400000082 ], [ -123.181022502999909, 49.332940796000102 ], [ -123.182247914999962, 49.333046199000059 ], [ -123.182426718999977, 49.332973507000098 ], [ -123.182480410999986, 49.332712906000104 ], [ -123.18258279199992, 49.332697414000123 ], [ -123.182659594999947, 49.332685792000085 ], [ -123.183210817999978, 49.333009101000087 ], [ -123.18394359199999, 49.333420697000079 ], [ -123.184919482999959, 49.333519000000116 ], [ -123.185470889999962, 49.333652911000073 ], [ -123.187443310999967, 49.334719586000112 ], [ -123.188325893999973, 49.33500590800007 ], [ -123.190402303999946, 49.335043004000084 ], [ -123.190416298999963, 49.335093009000076 ], [ -123.190484688999902, 49.335238109000059 ], [ -123.190436417999962, 49.335921253000031 ], [ -123.190415195999933, 49.336157588000106 ], [ -123.189471624999925, 49.33610782600006 ], [ -123.188879058999973, 49.336032079000077 ], [ -123.188048319999893, 49.335869065000111 ], [ -123.187042975999944, 49.335544824000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "706850095", "BldgCostT": "437774783", "sL_LossRatio": "0.692087773300272", "sL_AssetLoss": "6456223", "sL_BldgLoss": "4468273", "sL_StrLoss": "1756513", "sL_NStrLoss": "2711760", "sL_ContLoss": "1987950", "geom_point": "0101000020E61000003BEEBED7CECB5EC0BF3EDFBBF2AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17929161, 49.333665894000028 ], [ -123.179306776999937, 49.33325829700005 ], [ -123.182405530999958, 49.333998401000038 ], [ -123.183268944999966, 49.334214352000032 ], [ -123.185263553999945, 49.334713174000086 ], [ -123.185667286999887, 49.334863279000096 ], [ -123.187042975999944, 49.335544824000081 ], [ -123.188048319999893, 49.335869065000111 ], [ -123.188879058999973, 49.336032079000077 ], [ -123.189471624999925, 49.33610782600006 ], [ -123.190415195999933, 49.336157588000106 ], [ -123.190381309, 49.336875393000156 ], [ -123.190369811999943, 49.337632493000072 ], [ -123.18948288499999, 49.337621999000056 ], [ -123.18882449299997, 49.337476114000012 ], [ -123.185590716999911, 49.336689500000041 ], [ -123.185224421999976, 49.336603414000095 ], [ -123.18432268, 49.336386300000086 ], [ -123.183117342999978, 49.33608320800009 ], [ -123.182384793999987, 49.335899015000102 ], [ -123.181339068999989, 49.335650359000091 ], [ -123.179181385, 49.335137302000113 ], [ -123.179267883999927, 49.334168702000078 ], [ -123.17929161, 49.333665894000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111668167", "BldgCostT": "71646667", "sL_LossRatio": "0.733388477439513", "sL_AssetLoss": "1303252", "sL_BldgLoss": "955790", "sL_StrLoss": "439250", "sL_NStrLoss": "516540", "sL_ContLoss": "347462", "geom_point": "0101000020E6100000E17DA876BECB5EC06DFE67E62CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.179092489999931, 49.337454999000052 ], [ -123.179113693999952, 49.336541415000113 ], [ -123.179142974999962, 49.335655096000032 ], [ -123.179181385, 49.335137302000113 ], [ -123.181339068999989, 49.335650359000091 ], [ -123.182384793999987, 49.335899015000102 ], [ -123.183117342999978, 49.33608320800009 ], [ -123.18432268, 49.336386300000086 ], [ -123.185224421999976, 49.336603414000095 ], [ -123.185590716999911, 49.336689500000041 ], [ -123.18882449299997, 49.337476114000012 ], [ -123.18948288499999, 49.337621999000056 ], [ -123.190369811999943, 49.337632493000072 ], [ -123.190369903999979, 49.3377667150001 ], [ -123.189940978999957, 49.338530896000051 ], [ -123.189550773999912, 49.338525043000097 ], [ -123.188783491999914, 49.338513488000082 ], [ -123.185541993999948, 49.338465102000072 ], [ -123.182983695999923, 49.338424443000044 ], [ -123.182263501999955, 49.338413 ], [ -123.179076600999934, 49.338370488000059 ], [ -123.179092489999931, 49.337454999000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120014750", "BldgCostT": "79085000", "sL_LossRatio": "0.737959006105445", "sL_AssetLoss": "1480318", "sL_BldgLoss": "1092414", "sL_StrLoss": "509844", "sL_NStrLoss": "582570", "sL_ContLoss": "387904", "geom_point": "0101000020E6100000DB50F722D6CB5EC00631A7367EAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.189493848, 49.341364326000047 ], [ -123.188669520999923, 49.341342885000095 ], [ -123.185426857999971, 49.341309831000032 ], [ -123.182169525999925, 49.341246609000066 ], [ -123.182208414999948, 49.34033618800008 ], [ -123.181801259999986, 49.340329701000094 ], [ -123.18173784699998, 49.340328691000082 ], [ -123.178988902999947, 49.340284707000158 ], [ -123.179036103999948, 49.339261008000058 ], [ -123.179076600999934, 49.338370488000059 ], [ -123.182263501999955, 49.338413 ], [ -123.182983695999923, 49.338424443000044 ], [ -123.185541993999948, 49.338465102000072 ], [ -123.188783491999914, 49.338513488000082 ], [ -123.189550773999912, 49.338525043000097 ], [ -123.189940978999957, 49.338530896000051 ], [ -123.189893480999928, 49.339426703000072 ], [ -123.190049232, 49.339915189000081 ], [ -123.19015312, 49.340477239000045 ], [ -123.190031628999975, 49.341731319000104 ], [ -123.190000083999948, 49.341684576000027 ], [ -123.189841106999921, 49.34156676200007 ], [ -123.189761370999946, 49.341507636000117 ], [ -123.189655035, 49.341428846000028 ], [ -123.189493848, 49.341364326000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167758978", "BldgCostT": "111599857", "sL_LossRatio": "0.831021781245414", "sL_AssetLoss": "810927", "sL_BldgLoss": "673898", "sL_StrLoss": "405547", "sL_NStrLoss": "268351", "sL_ContLoss": "137029", "geom_point": "0101000020E6100000440955C5AFCB5EC09CBFF0E7E7AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178964529, 49.341181929000115 ], [ -123.178988902999947, 49.340284707000158 ], [ -123.18173784699998, 49.340328691000082 ], [ -123.181801259999986, 49.340329701000094 ], [ -123.182208414999948, 49.34033618800008 ], [ -123.182169525999925, 49.341246609000066 ], [ -123.185426857999971, 49.341309831000032 ], [ -123.188669520999923, 49.341342885000095 ], [ -123.189493848, 49.341364326000047 ], [ -123.189655035, 49.341428846000028 ], [ -123.189761370999946, 49.341507636000117 ], [ -123.189841106999921, 49.34156676200007 ], [ -123.190000083999948, 49.341684576000027 ], [ -123.190031628999975, 49.341731319000104 ], [ -123.18996565499998, 49.342931901000036 ], [ -123.189857244999928, 49.343244288000029 ], [ -123.189981331999959, 49.345511832000057 ], [ -123.189992982, 49.345724446000069 ], [ -123.190154290999914, 49.346951369000116 ], [ -123.190160395999968, 49.346997923000124 ], [ -123.190181303999964, 49.347156790000085 ], [ -123.189567710999938, 49.346948993000055 ], [ -123.188798800999948, 49.346625504000016 ], [ -123.18679441899998, 49.345481001000039 ], [ -123.185846087999948, 49.345052806000126 ], [ -123.185329986999989, 49.344895311000073 ], [ -123.184062895999972, 49.344685793000025 ], [ -123.183984955999932, 49.34468146600009 ], [ -123.181899134, 49.344565657000075 ], [ -123.181926000999965, 49.344444645000131 ], [ -123.180848912, 49.344379964000019 ], [ -123.180574655, 49.344363488000035 ], [ -123.180520381999898, 49.344360235000103 ], [ -123.17860998899998, 49.344245500000078 ], [ -123.176869832999927, 49.344022655000032 ], [ -123.17664921, 49.343994382000041 ], [ -123.176303772, 49.343910921000067 ], [ -123.176076913999964, 49.343856108000097 ], [ -123.174902210999974, 49.343666901000113 ], [ -123.173222192999916, 49.343505891000078 ], [ -123.173156827999918, 49.343503866000049 ], [ -123.173101866999986, 49.343502161000089 ], [ -123.17194901699996, 49.343466303000106 ], [ -123.171583702999911, 49.343408999000104 ], [ -123.172801272999919, 49.342770556000126 ], [ -123.172830389999916, 49.342755305000132 ], [ -123.173953955999934, 49.342158790000035 ], [ -123.174141924999944, 49.342033094000072 ], [ -123.174262247999934, 49.341797590000034 ], [ -123.17421792399989, 49.341553283000067 ], [ -123.174104326999938, 49.34140800200008 ], [ -123.17361341299997, 49.341087188000124 ], [ -123.178964529, 49.341181929000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112531289", "BldgCostT": "71880372", "sL_LossRatio": "0.686582311562167", "sL_AssetLoss": "2295850", "sL_BldgLoss": "1576290", "sL_StrLoss": "634730", "sL_NStrLoss": "941560", "sL_ContLoss": "719560", "geom_point": "0101000020E61000007E2B8EDA6FCC5EC0D52E75A974AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.189857244999928, 49.343244288000029 ], [ -123.18996565499998, 49.342931901000036 ], [ -123.190031628999975, 49.341731319000104 ], [ -123.19015312, 49.340477239000045 ], [ -123.190049232, 49.339915189000081 ], [ -123.189893480999928, 49.339426703000072 ], [ -123.189940978999957, 49.338530896000051 ], [ -123.190369903999979, 49.3377667150001 ], [ -123.190369811999943, 49.337632493000072 ], [ -123.190381309, 49.336875393000156 ], [ -123.190415195999933, 49.336157588000106 ], [ -123.191023294999951, 49.336158988000072 ], [ -123.191376104999947, 49.33619428800008 ], [ -123.191965033999963, 49.335789768000062 ], [ -123.192462486999929, 49.335681220000033 ], [ -123.192741758999986, 49.335681258000129 ], [ -123.192907135999974, 49.335720973000022 ], [ -123.195226197999915, 49.336278006000072 ], [ -123.194927864999954, 49.336774607000038 ], [ -123.19604650699992, 49.337045898000085 ], [ -123.19642358099999, 49.337224453000026 ], [ -123.196521364999953, 49.337270734000064 ], [ -123.196978684999962, 49.337609328000013 ], [ -123.197141611999925, 49.337729918000072 ], [ -123.197545191999922, 49.337978643000028 ], [ -123.197806260999954, 49.338139523000109 ], [ -123.197924224999895, 49.338212213000098 ], [ -123.199731641000014, 49.338790423000056 ], [ -123.19978295699994, 49.339031410000061 ], [ -123.199777468999969, 49.339169848000083 ], [ -123.199731287999938, 49.33950187300006 ], [ -123.199690325999981, 49.339655702000087 ], [ -123.199978184999949, 49.339946856000097 ], [ -123.200007729999967, 49.340026881000028 ], [ -123.199941558999953, 49.340097209000113 ], [ -123.199525242999954, 49.340224216000045 ], [ -123.199445785999984, 49.340286096000078 ], [ -123.199386646999969, 49.340399850000018 ], [ -123.199372379999929, 49.340544464000075 ], [ -123.199586528999987, 49.340849006000084 ], [ -123.19959071699995, 49.341303005000093 ], [ -123.19951191299999, 49.341513520000092 ], [ -123.198787868999915, 49.34138129100004 ], [ -123.198920784999956, 49.341799893000086 ], [ -123.198863867999989, 49.342679669000091 ], [ -123.198857809999978, 49.342772704000033 ], [ -123.198651576, 49.34277005800007 ], [ -123.196911517999965, 49.342358227000098 ], [ -123.196254445999969, 49.342202696000058 ], [ -123.192825319999955, 49.341340095000106 ], [ -123.192496648999935, 49.341268529000018 ], [ -123.19233783199995, 49.341255377000024 ], [ -123.192198901999944, 49.341276996000019 ], [ -123.192194965999946, 49.341279603000096 ], [ -123.192127207999988, 49.341324672000056 ], [ -123.192100003999926, 49.341387895000011 ], [ -123.192101720999972, 49.34312968200009 ], [ -123.192154569999971, 49.343211227000062 ], [ -123.190777199999985, 49.343110033000073 ], [ -123.190518652999941, 49.343091057000059 ], [ -123.189857244999928, 49.343244288000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98180584", "BldgCostT": "65763334", "sL_LossRatio": "0.739371892082044", "sL_AssetLoss": "1466818", "sL_BldgLoss": "1084524", "sL_StrLoss": "482714", "sL_NStrLoss": "601810", "sL_ContLoss": "382294", "geom_point": "0101000020E6100000D98EB12CBBCC5EC0B1783DDA30AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193618292999972, 49.346759712000107 ], [ -123.193075915999941, 49.346741102000131 ], [ -123.192751184, 49.34680750900008 ], [ -123.192384494999942, 49.346954603000079 ], [ -123.191980292, 49.347061188000069 ], [ -123.191730576999959, 49.347079659000102 ], [ -123.191620500999946, 49.347185073000041 ], [ -123.1915145789999, 49.347286460000056 ], [ -123.190975055999914, 49.347250808000062 ], [ -123.190941400999932, 49.347248564000026 ], [ -123.190919016999928, 49.347247098000011 ], [ -123.19061624099993, 49.347210046000065 ], [ -123.190181303999964, 49.347156790000085 ], [ -123.190160395999968, 49.346997923000124 ], [ -123.190154290999914, 49.346951369000116 ], [ -123.189992982, 49.345724446000069 ], [ -123.189981331999959, 49.345511832000057 ], [ -123.189857244999928, 49.343244288000029 ], [ -123.190518652999941, 49.343091057000059 ], [ -123.190777199999985, 49.343110033000073 ], [ -123.192154569999971, 49.343211227000062 ], [ -123.192101720999972, 49.34312968200009 ], [ -123.192100003999926, 49.341387895000011 ], [ -123.192127207999988, 49.341324672000056 ], [ -123.192194965999946, 49.341279603000096 ], [ -123.192198901999944, 49.341276996000019 ], [ -123.19233783199995, 49.341255377000024 ], [ -123.192496648999935, 49.341268529000018 ], [ -123.192825319999955, 49.341340095000106 ], [ -123.196254445999969, 49.342202696000058 ], [ -123.196911517999965, 49.342358227000098 ], [ -123.198651576, 49.34277005800007 ], [ -123.198857809999978, 49.342772704000033 ], [ -123.198845440999975, 49.343319044000054 ], [ -123.196215480999911, 49.343300396000068 ], [ -123.196224206999943, 49.344520021000065 ], [ -123.196237, 49.345399336000078 ], [ -123.197222900999947, 49.345412285000094 ], [ -123.197365661, 49.345396178000101 ], [ -123.19757433399991, 49.345335851000137 ], [ -123.19794771, 49.345101455000062 ], [ -123.198213039, 49.34501469000007 ], [ -123.198683483000011, 49.3449953410001 ], [ -123.19999650499993, 49.345001623000051 ], [ -123.20081583799994, 49.345005536000031 ], [ -123.20180192, 49.345584917000068 ], [ -123.20194902899999, 49.345701317000106 ], [ -123.202064299999932, 49.345752038000015 ], [ -123.20228797599998, 49.345785732000117 ], [ -123.202379922999953, 49.345786855000057 ], [ -123.202434912999948, 49.345787539000092 ], [ -123.204155712, 49.345808709000039 ], [ -123.204213133999986, 49.345809414000023 ], [ -123.205154458999957, 49.345717984000039 ], [ -123.206007133999989, 49.34563515500006 ], [ -123.206276222, 49.34555475300003 ], [ -123.206454090999969, 49.345457586000045 ], [ -123.206665926000014, 49.345254111000024 ], [ -123.206699081999915, 49.345160408000076 ], [ -123.20796701099998, 49.345357063000037 ], [ -123.210033693999932, 49.345548237000088 ], [ -123.210829941999961, 49.345621893000015 ], [ -123.212711244999966, 49.345756855000012 ], [ -123.212960149999972, 49.345737148000048 ], [ -123.21341681, 49.345645334000075 ], [ -123.213464418999962, 49.345635783000091 ], [ -123.214431446999953, 49.34552831500006 ], [ -123.215544112999979, 49.345561483000075 ], [ -123.21628750299999, 49.34559203400002 ], [ -123.21659834899998, 49.345604834 ], [ -123.216950861999933, 49.345578776000082 ], [ -123.217946706999939, 49.345265781000158 ], [ -123.218137859999956, 49.345268019000102 ], [ -123.218283828000011, 49.345312278000058 ], [ -123.21835760499998, 49.345389842000039 ], [ -123.218374770999944, 49.34556228700005 ], [ -123.218423163999958, 49.345923794000065 ], [ -123.21856205099995, 49.346062400000079 ], [ -123.218858567999973, 49.346167298000061 ], [ -123.220185694999913, 49.346372251000119 ], [ -123.221104296999926, 49.34651409000007 ], [ -123.221835023999958, 49.346676104000075 ], [ -123.221525242999917, 49.346831279000057 ], [ -123.220978559999949, 49.346832326000055 ], [ -123.2197288, 49.346617483000067 ], [ -123.218032206999936, 49.346453204000056 ], [ -123.216315204999958, 49.346354901000055 ], [ -123.213616209999927, 49.346223290000083 ], [ -123.212494708999927, 49.346198890000046 ], [ -123.211683511999951, 49.346220331000069 ], [ -123.211682738999983, 49.346040165000034 ], [ -123.210699573999975, 49.346041962000051 ], [ -123.210030774999922, 49.346074160000065 ], [ -123.210031792999956, 49.346313030000026 ], [ -123.209205738999955, 49.346314528000086 ], [ -123.209206040999959, 49.346385828000045 ], [ -123.208939919, 49.346408805000053 ], [ -123.207793824999953, 49.346518058000036 ], [ -123.204920318999925, 49.346791949000085 ], [ -123.201298032999944, 49.347137108000055 ], [ -123.200018507999971, 49.347245400000133 ], [ -123.200004750999966, 49.347246225000042 ], [ -123.197691297999953, 49.347383204000018 ], [ -123.197569432999927, 49.347387224000023 ], [ -123.196192318999948, 49.347432607000044 ], [ -123.194861184999951, 49.347415196000071 ], [ -123.194815539999965, 49.347373336000032 ], [ -123.194721685000019, 49.347287306000112 ], [ -123.194567954999954, 49.347155149000088 ], [ -123.194423477999976, 49.347030990000064 ], [ -123.19426841899994, 49.346932406000064 ], [ -123.193982997999967, 49.346827709000081 ], [ -123.193618292999972, 49.346759712000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117885395", "BldgCostT": "74991524", "sL_LossRatio": "0.69744338921477", "sL_AssetLoss": "2424538", "sL_BldgLoss": "1690978", "sL_StrLoss": "733588", "sL_NStrLoss": "957390", "sL_ContLoss": "733560", "geom_point": "0101000020E61000004CDE4AC0F9CC5EC00F0013C0E6AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.20180192, 49.345584917000068 ], [ -123.20081583799994, 49.345005536000031 ], [ -123.19999650499993, 49.345001623000051 ], [ -123.198683483000011, 49.3449953410001 ], [ -123.198213039, 49.34501469000007 ], [ -123.19794771, 49.345101455000062 ], [ -123.19757433399991, 49.345335851000137 ], [ -123.197365661, 49.345396178000101 ], [ -123.197222900999947, 49.345412285000094 ], [ -123.196237, 49.345399336000078 ], [ -123.196224206999943, 49.344520021000065 ], [ -123.196215480999911, 49.343300396000068 ], [ -123.198845440999975, 49.343319044000054 ], [ -123.198857809999978, 49.342772704000033 ], [ -123.198863867999989, 49.342679669000091 ], [ -123.198920784999956, 49.341799893000086 ], [ -123.198787868999915, 49.34138129100004 ], [ -123.19951191299999, 49.341513520000092 ], [ -123.19959071699995, 49.341303005000093 ], [ -123.199586528999987, 49.340849006000084 ], [ -123.199372379999929, 49.340544464000075 ], [ -123.199386646999969, 49.340399850000018 ], [ -123.199445785999984, 49.340286096000078 ], [ -123.199525242999954, 49.340224216000045 ], [ -123.199941558999953, 49.340097209000113 ], [ -123.200007729999967, 49.340026881000028 ], [ -123.199978184999949, 49.339946856000097 ], [ -123.199690325999981, 49.339655702000087 ], [ -123.199731287999938, 49.33950187300006 ], [ -123.20002419399998, 49.339613372000038 ], [ -123.200543641999957, 49.339811095000101 ], [ -123.202527253999918, 49.340184875000027 ], [ -123.202801923999942, 49.340238799000126 ], [ -123.20322035099997, 49.340325213000078 ], [ -123.204711389999915, 49.340633126000071 ], [ -123.205422058999886, 49.340782092000026 ], [ -123.206237103, 49.340925331000044 ], [ -123.206545348999953, 49.340979527000066 ], [ -123.210806655999988, 49.341782081000069 ], [ -123.210762843999959, 49.341846709000045 ], [ -123.210694697999912, 49.341881887000056 ], [ -123.210104762999947, 49.342035059000089 ], [ -123.209620334999926, 49.342873114000078 ], [ -123.209459517, 49.342841857000032 ], [ -123.208629318999911, 49.342680587000068 ], [ -123.208607516999933, 49.342676351000179 ], [ -123.207984766, 49.342666594000029 ], [ -123.20723193, 49.342845033000124 ], [ -123.206905658999986, 49.342922381000058 ], [ -123.206619041999929, 49.342956796000074 ], [ -123.20602268199994, 49.34302836200014 ], [ -123.205437544999967, 49.342988019000117 ], [ -123.206024421999984, 49.34384344700009 ], [ -123.206209187999931, 49.343974280000047 ], [ -123.206240300999951, 49.343983541000057 ], [ -123.206805358999972, 49.344151805000116 ], [ -123.20671308499999, 49.344745601000085 ], [ -123.206667819999922, 49.345039813000042 ], [ -123.206699081999915, 49.345160408000076 ], [ -123.206665926000014, 49.345254111000024 ], [ -123.206454090999969, 49.345457586000045 ], [ -123.206276222, 49.34555475300003 ], [ -123.206007133999989, 49.34563515500006 ], [ -123.205154458999957, 49.345717984000039 ], [ -123.204213133999986, 49.345809414000023 ], [ -123.204155712, 49.345808709000039 ], [ -123.202434912999948, 49.345787539000092 ], [ -123.202379922999953, 49.345786855000057 ], [ -123.20228797599998, 49.345785732000117 ], [ -123.202064299999932, 49.345752038000015 ], [ -123.20194902899999, 49.345701317000106 ], [ -123.20180192, 49.345584917000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173330001", "BldgCostT": "109520001", "sL_LossRatio": "0.802084730850542", "sL_AssetLoss": "708101", "sL_BldgLoss": "567957", "sL_StrLoss": "345541", "sL_NStrLoss": "222416", "sL_ContLoss": "140144", "geom_point": "0101000020E610000038D88AECB9CB5EC03399F06C8BAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181542853999986, 49.349059807000081 ], [ -123.181543846999944, 49.349329658000023 ], [ -123.181956899999946, 49.349329009000044 ], [ -123.181955903999921, 49.349059158000067 ], [ -123.181542853999986, 49.349059807000081 ], [ -123.181538882999988, 49.347980404000062 ], [ -123.182247394999976, 49.347979289000051 ], [ -123.1822704399999, 49.347600604000043 ], [ -123.18071726699999, 49.347560116000103 ], [ -123.180606704999946, 49.347125889000047 ], [ -123.180606634999961, 49.347124337000082 ], [ -123.180592998999913, 49.346898684000045 ], [ -123.180563348999954, 49.346406440000109 ], [ -123.180560632999942, 49.346361387000059 ], [ -123.180542716999952, 49.346064346000063 ], [ -123.181345457999953, 49.345085289000039 ], [ -123.180509725999968, 49.345068423000107 ], [ -123.179397008999899, 49.345045951000031 ], [ -123.179366317999936, 49.345486094000094 ], [ -123.179231457999961, 49.34557924000007 ], [ -123.178936621, 49.345729171000137 ], [ -123.178455378999928, 49.345781771000127 ], [ -123.178348333999978, 49.345793476000111 ], [ -123.177945984999937, 49.345869687000054 ], [ -123.177622123999939, 49.345931034000053 ], [ -123.177264407999971, 49.34592081600001 ], [ -123.176886711999913, 49.345809889000087 ], [ -123.176520290999946, 49.345543689000102 ], [ -123.176279595999958, 49.34542930200012 ], [ -123.175953182999976, 49.345320808000061 ], [ -123.175474589999908, 49.345224593000054 ], [ -123.174397799999966, 49.345048901000034 ], [ -123.173791794999929, 49.344950004000083 ], [ -123.172932300999975, 49.3446475000001 ], [ -123.172662823999957, 49.344554899000094 ], [ -123.172567840999974, 49.344464093000106 ], [ -123.172598314999931, 49.344302804000073 ], [ -123.17011288499998, 49.344237790000115 ], [ -123.169495624999925, 49.344295470000105 ], [ -123.169323337999927, 49.34432047500006 ], [ -123.168833308999979, 49.344391604000087 ], [ -123.16816960099996, 49.344488602000034 ], [ -123.167811395999962, 49.344495426000037 ], [ -123.167819551999941, 49.344338606000051 ], [ -123.167826531999978, 49.344204090000098 ], [ -123.167826980999934, 49.344195000000113 ], [ -123.167820813999953, 49.343891365000076 ], [ -123.167820716999984, 49.34388226400003 ], [ -123.167819977999898, 49.343819244000024 ], [ -123.167819269999981, 49.343758929000096 ], [ -123.16781986099997, 49.343029451000078 ], [ -123.167836622999943, 49.342676398000087 ], [ -123.167846475999937, 49.342469163000025 ], [ -123.167848632999934, 49.342424100000109 ], [ -123.167956737999958, 49.341848752000104 ], [ -123.170622857999959, 49.341837509000079 ], [ -123.170608618999964, 49.342746705000081 ], [ -123.170619003999917, 49.343206307000031 ], [ -123.171405685999929, 49.343371599000065 ], [ -123.171583702999911, 49.343408999000104 ], [ -123.17194901699996, 49.343466303000106 ], [ -123.173101866999986, 49.343502161000089 ], [ -123.173156827999918, 49.343503866000049 ], [ -123.173222192999916, 49.343505891000078 ], [ -123.174902210999974, 49.343666901000113 ], [ -123.176076913999964, 49.343856108000097 ], [ -123.176303772, 49.343910921000067 ], [ -123.17664921, 49.343994382000041 ], [ -123.176869832999927, 49.344022655000032 ], [ -123.17860998899998, 49.344245500000078 ], [ -123.180520381999898, 49.344360235000103 ], [ -123.180574655, 49.344363488000035 ], [ -123.180848912, 49.344379964000019 ], [ -123.181926000999965, 49.344444645000131 ], [ -123.181899134, 49.344565657000075 ], [ -123.183984955999932, 49.34468146600009 ], [ -123.184062895999972, 49.344685793000025 ], [ -123.185329986999989, 49.344895311000073 ], [ -123.185846087999948, 49.345052806000126 ], [ -123.18679441899998, 49.345481001000039 ], [ -123.188798800999948, 49.346625504000016 ], [ -123.189567710999938, 49.346948993000055 ], [ -123.190181303999964, 49.347156790000085 ], [ -123.19061624099993, 49.347210046000065 ], [ -123.190919016999928, 49.347247098000011 ], [ -123.190941400999932, 49.347248564000026 ], [ -123.190965858999931, 49.347311426000068 ], [ -123.191142587999934, 49.34776540700004 ], [ -123.191300005999921, 49.349762092000105 ], [ -123.191245499999951, 49.349973422000055 ], [ -123.190633479999931, 49.349957523000093 ], [ -123.190636393999952, 49.350711704000055 ], [ -123.190727542999937, 49.35071407200013 ], [ -123.190509861999928, 49.354301271000082 ], [ -123.185091834999923, 49.352860002000064 ], [ -123.185191981999935, 49.351212837000091 ], [ -123.184442275999942, 49.351214035000062 ], [ -123.184443284999944, 49.351483886000032 ], [ -123.184030213999904, 49.351484545000041 ], [ -123.184031220999927, 49.351754395000057 ], [ -123.181965858999916, 49.351757664000047 ], [ -123.181964861999958, 49.351487813000062 ], [ -123.181138721999957, 49.351489112000074 ], [ -123.181137729999961, 49.35121926100004 ], [ -123.180724662999964, 49.351219908000083 ], [ -123.18072367399995, 49.350950057000027 ], [ -123.180310606999953, 49.350950702000077 ], [ -123.180307648999985, 49.350141150000134 ], [ -123.180220957999936, 49.350141285000056 ], [ -123.180581920999913, 49.34962201600009 ], [ -123.1806974, 49.349455885000069 ], [ -123.180850831999919, 49.349066366000045 ], [ -123.180852988999973, 49.349060889000043 ], [ -123.181542853999986, 49.349059807000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100181167", "BldgCostT": "68826667", "sL_LossRatio": "0.762061580650105", "sL_AssetLoss": "1207035", "sL_BldgLoss": "919835", "sL_StrLoss": "442195", "sL_NStrLoss": "477640", "sL_ContLoss": "287200", "geom_point": "0101000020E6100000BE29F6E12ACB5EC0EAAD81AD92AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17475419599999, 49.338311590000053 ], [ -123.179076600999934, 49.338370488000059 ], [ -123.179036103999948, 49.339261008000058 ], [ -123.178988902999947, 49.340284707000158 ], [ -123.178964529, 49.341181929000115 ], [ -123.17361341299997, 49.341087188000124 ], [ -123.174104326999938, 49.34140800200008 ], [ -123.17421792399989, 49.341553283000067 ], [ -123.174262247999934, 49.341797590000034 ], [ -123.174141924999944, 49.342033094000072 ], [ -123.173953955999934, 49.342158790000035 ], [ -123.172830389999916, 49.342755305000132 ], [ -123.172801272999919, 49.342770556000126 ], [ -123.171583702999911, 49.343408999000104 ], [ -123.171405685999929, 49.343371599000065 ], [ -123.170619003999917, 49.343206307000031 ], [ -123.170608618999964, 49.342746705000081 ], [ -123.170622857999959, 49.341837509000079 ], [ -123.170660094999974, 49.3410702830001 ], [ -123.170660488999914, 49.340951379000082 ], [ -123.170710371999945, 49.340022375000046 ], [ -123.170730333999956, 49.339132196000037 ], [ -123.174718995999967, 49.33920410200011 ], [ -123.17475419599999, 49.338311590000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197198323", "BldgCostT": "129355563", "sL_LossRatio": "0.745262881795899", "sL_AssetLoss": "2211260", "sL_BldgLoss": "1647970", "sL_StrLoss": "696410", "sL_NStrLoss": "951560", "sL_ContLoss": "563290", "geom_point": "0101000020E610000015DB8394C8CA5EC094378FDC7DAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170759713999971, 49.338246804000079 ], [ -123.17475419599999, 49.338311590000053 ], [ -123.174718995999967, 49.33920410200011 ], [ -123.170730333999956, 49.339132196000037 ], [ -123.170710371999945, 49.340022375000046 ], [ -123.170660488999914, 49.340951379000082 ], [ -123.170660094999974, 49.3410702830001 ], [ -123.170622857999959, 49.341837509000079 ], [ -123.167956737999958, 49.341848752000104 ], [ -123.166958449999967, 49.341841745000096 ], [ -123.166565907999924, 49.34183897400009 ], [ -123.166518018999938, 49.341838643000116 ], [ -123.166228754999963, 49.341836586000049 ], [ -123.165467119999974, 49.341831196000037 ], [ -123.165490587999955, 49.340997906000069 ], [ -123.165401791999926, 49.340920813000061 ], [ -123.164585395999978, 49.340096116000019 ], [ -123.164551282999952, 49.339416998000075 ], [ -123.164556706999932, 49.338204904000044 ], [ -123.165157133999955, 49.338205134000056 ], [ -123.165162046999981, 49.338205135000138 ], [ -123.165289980999944, 49.338205210000126 ], [ -123.166652200999977, 49.338205812000098 ], [ -123.168017116999948, 49.338206469000077 ], [ -123.170759713999971, 49.338246804000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98849417", "BldgCostT": "64576667", "sL_LossRatio": "0.72425195078415", "sL_AssetLoss": "1173118", "sL_BldgLoss": "849633", "sL_StrLoss": "386113", "sL_NStrLoss": "463520", "sL_ContLoss": "323485", "geom_point": "0101000020E6100000711CD36E0FCB5EC0518FE16F03AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170951809999949, 49.333704610000069 ], [ -123.173387103999943, 49.333748507000088 ], [ -123.174903109999917, 49.334112293000068 ], [ -123.17488520399999, 49.33467570800007 ], [ -123.174856982999984, 49.335589990000138 ], [ -123.17483002299997, 49.336483605000055 ], [ -123.174781590999928, 49.337389214000027 ], [ -123.17475419599999, 49.338311590000053 ], [ -123.170759713999971, 49.338246804000079 ], [ -123.170793117999949, 49.337316401000052 ], [ -123.170813500999941, 49.336419018000122 ], [ -123.17085150199992, 49.335527491000043 ], [ -123.170900209999928, 49.334617388000034 ], [ -123.170943173999916, 49.333857014000074 ], [ -123.170951809999949, 49.333704610000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92347001", "BldgCostT": "60640001", "sL_LossRatio": "0.721348297496497", "sL_AssetLoss": "1313360", "sL_BldgLoss": "947390", "sL_StrLoss": "411690", "sL_NStrLoss": "535700", "sL_ContLoss": "365970", "geom_point": "0101000020E6100000FC494AB4C3CA5EC016CBA1031AAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166732585999981, 49.335497099000087 ], [ -123.166752602999964, 49.334585288000063 ], [ -123.168003609999943, 49.334601850000084 ], [ -123.168147730999962, 49.334608272000011 ], [ -123.168882101999912, 49.335220185000047 ], [ -123.169344506999934, 49.335512382000047 ], [ -123.17085150199992, 49.335527491000043 ], [ -123.170813500999941, 49.336419018000122 ], [ -123.170793117999949, 49.337316401000052 ], [ -123.170759713999971, 49.338246804000079 ], [ -123.168017116999948, 49.338206469000077 ], [ -123.166652200999977, 49.338205812000098 ], [ -123.165289980999944, 49.338205210000126 ], [ -123.165334326, 49.336403409000084 ], [ -123.165577718999927, 49.336403225000012 ], [ -123.166710207999941, 49.336402500000105 ], [ -123.166744192999928, 49.335960303000093 ], [ -123.166732585999981, 49.335497099000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95969873", "BldgCostT": "55511381", "sL_LossRatio": "0.634832693362589", "sL_AssetLoss": "1458400", "sL_BldgLoss": "925840", "sL_StrLoss": "339920", "sL_NStrLoss": "585920", "sL_ContLoss": "532560", "geom_point": "0101000020E6100000A1EBC20FCECA5EC0018B36A6ABAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168147730999962, 49.334608272000011 ], [ -123.168003609999943, 49.334601850000084 ], [ -123.166752602999964, 49.334585288000063 ], [ -123.16647061799992, 49.334584202 ], [ -123.166428707999941, 49.333583391000055 ], [ -123.166429093999966, 49.332563913000122 ], [ -123.166446214999937, 49.331609701000104 ], [ -123.168061791999961, 49.331624993000119 ], [ -123.170994955999944, 49.331697107000124 ], [ -123.170960699999966, 49.332590787000086 ], [ -123.170953667999967, 49.333562343000075 ], [ -123.170951809999949, 49.333704610000069 ], [ -123.170943173999916, 49.333857014000074 ], [ -123.170900209999928, 49.334617388000034 ], [ -123.17085150199992, 49.335527491000043 ], [ -123.169344506999934, 49.335512382000047 ], [ -123.168882101999912, 49.335220185000047 ], [ -123.168147730999962, 49.334608272000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104108311", "BldgCostT": "68553190", "sL_LossRatio": "0.714384264715539", "sL_AssetLoss": "1446685", "sL_BldgLoss": "1033489", "sL_StrLoss": "460329", "sL_NStrLoss": "573160", "sL_ContLoss": "413196", "geom_point": "0101000020E61000008E89E66456CA5EC074C75A2A0CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16647061799992, 49.334584202 ], [ -123.166752602999964, 49.334585288000063 ], [ -123.166732585999981, 49.335497099000087 ], [ -123.166744192999928, 49.335960303000093 ], [ -123.166710207999941, 49.336402500000105 ], [ -123.165577718999927, 49.336403225000012 ], [ -123.165334326, 49.336403409000084 ], [ -123.165289980999944, 49.338205210000126 ], [ -123.165162046999981, 49.338205135000138 ], [ -123.165157133999955, 49.338205134000056 ], [ -123.164556706999932, 49.338204904000044 ], [ -123.163959631999987, 49.338202766000094 ], [ -123.163945839999883, 49.338202724000034 ], [ -123.162882419999917, 49.338197186000031 ], [ -123.162445127999916, 49.338194906000069 ], [ -123.161756760999964, 49.338191284000082 ], [ -123.160358697999968, 49.338183992000069 ], [ -123.160022469999959, 49.33818223400008 ], [ -123.159802097999972, 49.338181079000023 ], [ -123.156937623999937, 49.338166017000084 ], [ -123.156956271999945, 49.337279388000077 ], [ -123.156947973999976, 49.336361426000053 ], [ -123.156966199999928, 49.335458606000017 ], [ -123.156972320999955, 49.334552733000102 ], [ -123.158950595999968, 49.334561171000132 ], [ -123.158977809999953, 49.334561300000061 ], [ -123.159647574999909, 49.334565425000122 ], [ -123.16022948899996, 49.334567189000033 ], [ -123.161937681999959, 49.334572423000097 ], [ -123.163138813999936, 49.334576045000055 ], [ -123.163905959999965, 49.334577988000063 ], [ -123.16441529899997, 49.334579234000103 ], [ -123.165115709999952, 49.334580933000041 ], [ -123.165323742999973, 49.334581429000096 ], [ -123.166086481999926, 49.334583264000074 ], [ -123.16647061799992, 49.334584202 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80543250", "BldgCostT": "54315000", "sL_LossRatio": "0.737453921837292", "sL_AssetLoss": "1131230", "sL_BldgLoss": "834230", "sL_StrLoss": "373590", "sL_NStrLoss": "460640", "sL_ContLoss": "297000", "geom_point": "0101000020E6100000ED68456969CA5EC0FA9531B2A2AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16436198599996, 49.331609104000073 ], [ -123.166446214999937, 49.331609701000104 ], [ -123.166429093999966, 49.332563913000122 ], [ -123.166428707999941, 49.333583391000055 ], [ -123.16647061799992, 49.334584202 ], [ -123.166086481999926, 49.334583264000074 ], [ -123.165323742999973, 49.334581429000096 ], [ -123.165115709999952, 49.334580933000041 ], [ -123.16441529899997, 49.334579234000103 ], [ -123.163905959999965, 49.334577988000063 ], [ -123.163138813999936, 49.334576045000055 ], [ -123.161937681999959, 49.334572423000097 ], [ -123.16022948899996, 49.334567189000033 ], [ -123.159647574999909, 49.334565425000122 ], [ -123.158977809999953, 49.334561300000061 ], [ -123.158934346999928, 49.333934064000076 ], [ -123.158906975999969, 49.333539101000063 ], [ -123.158910100999947, 49.332524099000125 ], [ -123.158933219999966, 49.33158810200009 ], [ -123.160214099999976, 49.331608305000024 ], [ -123.162118823999947, 49.331608569000146 ], [ -123.162423616999916, 49.331608589000048 ], [ -123.163213307000021, 49.331608690000088 ], [ -123.164102727999975, 49.331609016000087 ], [ -123.16436198599996, 49.331609104000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "399959719", "BldgCostT": "269304427", "sL_LossRatio": "0.838548661344707", "sL_AssetLoss": "3469900", "sL_BldgLoss": "2909680", "sL_StrLoss": "1303980", "sL_NStrLoss": "1605700", "sL_ContLoss": "560220", "geom_point": "0101000020E6100000A426C11B52CA5EC001E5DFFC40AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160231987, 49.330643315000067 ], [ -123.160232300999908, 49.329741684000126 ], [ -123.160238505999985, 49.328629590000105 ], [ -123.162069920999969, 49.32860928800006 ], [ -123.162238785999989, 49.32860742000009 ], [ -123.162329610999976, 49.329751791 ], [ -123.162362102999978, 49.330636197000103 ], [ -123.162118823999947, 49.331608569000146 ], [ -123.160214099999976, 49.331608305000024 ], [ -123.160231987, 49.330643315000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97888061", "BldgCostT": "63343190", "sL_LossRatio": "0.709197225706486", "sL_AssetLoss": "1084240", "sL_BldgLoss": "768940", "sL_StrLoss": "288760", "sL_NStrLoss": "480180", "sL_ContLoss": "315300", "geom_point": "0101000020E6100000C450140922CA5EC01A62BCE655AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156761994999954, 49.329686502000108 ], [ -123.158922706999959, 49.329739702000083 ], [ -123.158914997999929, 49.330605886000058 ], [ -123.160231987, 49.330643315000067 ], [ -123.160214099999976, 49.331608305000024 ], [ -123.158933219999966, 49.33158810200009 ], [ -123.157008079999954, 49.331571697000058 ], [ -123.157010604, 49.331195312000027 ], [ -123.156913916999898, 49.330573106000017 ], [ -123.156820105999941, 49.33021940200004 ], [ -123.156761994999954, 49.329686502000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "416887838", "BldgCostT": "265826524", "sL_LossRatio": "0.733958818328933", "sL_AssetLoss": "6537860", "sL_BldgLoss": "4798520", "sL_StrLoss": "1979170", "sL_NStrLoss": "2819350", "sL_ContLoss": "1739340", "geom_point": "0101000020E6100000E8712A42FFC95EC0DE7F8DB925AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154323897999944, 49.328728887000103 ], [ -123.154370890999928, 49.327919604000044 ], [ -123.156774013999922, 49.328325108000108 ], [ -123.157915104999958, 49.328516310000069 ], [ -123.15890610299999, 49.32861979000004 ], [ -123.158922706999959, 49.329739702000083 ], [ -123.156761994999954, 49.329686502000108 ], [ -123.156820105999941, 49.33021940200004 ], [ -123.156913916999898, 49.330573106000017 ], [ -123.154226605999924, 49.33053660800006 ], [ -123.154281103999949, 49.329649111000087 ], [ -123.154323897999944, 49.328728887000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87294561", "BldgCostT": "58613190", "sL_LossRatio": "0.778644653375623", "sL_AssetLoss": "1412480", "sL_BldgLoss": "1099820", "sL_StrLoss": "445720", "sL_NStrLoss": "654100", "sL_ContLoss": "312660", "geom_point": "0101000020E6100000C0C74728C9C95EC02F01746F30AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.151817009999931, 49.328675170000047 ], [ -123.154323897999944, 49.328728887000103 ], [ -123.154281103999949, 49.329649111000087 ], [ -123.154226605999924, 49.33053660800006 ], [ -123.151489501999961, 49.330481608000049 ], [ -123.15152638799999, 49.329591896000132 ], [ -123.151542834999987, 49.329213426000095 ], [ -123.151565944999945, 49.328682896000061 ], [ -123.151566539999948, 49.328669789000053 ], [ -123.151817009999931, 49.328675170000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145228183", "BldgCostT": "94816895", "sL_LossRatio": "0.737295650003013", "sL_AssetLoss": "2323220", "sL_BldgLoss": "1712900", "sL_StrLoss": "768380", "sL_NStrLoss": "944520", "sL_ContLoss": "610320", "geom_point": "0101000020E610000031447828C8C95EC0B109178F5EAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154226605999924, 49.33053660800006 ], [ -123.156913916999898, 49.330573106000017 ], [ -123.157010604, 49.331195312000027 ], [ -123.157008079999954, 49.331571697000058 ], [ -123.1541906, 49.331526394000043 ], [ -123.152086152999928, 49.331503756000131 ], [ -123.151477981999932, 49.331497202000016 ], [ -123.148736215999975, 49.33145018500008 ], [ -123.148750421999964, 49.330437293000053 ], [ -123.15114731099996, 49.330476063000063 ], [ -123.151489501999961, 49.330481608000049 ], [ -123.154226605999924, 49.33053660800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247729313", "BldgCostT": "166824148", "sL_LossRatio": "0.777039460233081", "sL_AssetLoss": "3032420", "sL_BldgLoss": "2356310", "sL_StrLoss": "1035870", "sL_NStrLoss": "1320440", "sL_ContLoss": "676110", "geom_point": "0101000020E6100000F185240EF4C95EC07200ABC09CAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154194091999926, 49.334558866000052 ], [ -123.154194628999946, 49.33352046900005 ], [ -123.152299196999948, 49.333508070000043 ], [ -123.151464690999887, 49.333502607000064 ], [ -123.151484426999986, 49.332465597000137 ], [ -123.151477981999932, 49.331497202000016 ], [ -123.152086152999928, 49.331503756000131 ], [ -123.1541906, 49.331526394000043 ], [ -123.157008079999954, 49.331571697000058 ], [ -123.158933219999966, 49.33158810200009 ], [ -123.158910100999947, 49.332524099000125 ], [ -123.158906975999969, 49.333539101000063 ], [ -123.158934346999928, 49.333934064000076 ], [ -123.158977809999953, 49.334561300000061 ], [ -123.158950595999968, 49.334561171000132 ], [ -123.156972320999955, 49.334552733000102 ], [ -123.155377496999918, 49.334556274000064 ], [ -123.154194091999926, 49.334558866000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277020325", "BldgCostT": "184999021", "sL_LossRatio": "0.764348187139202", "sL_AssetLoss": "2986440", "sL_BldgLoss": "2282680", "sL_StrLoss": "998850", "sL_NStrLoss": "1283830", "sL_ContLoss": "703760", "geom_point": "0101000020E6100000CD7C5A87DBC95EC010DE891F04AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15142888299999, 49.334554497000077 ], [ -123.151464690999887, 49.333502607000064 ], [ -123.152299196999948, 49.333508070000043 ], [ -123.154194628999946, 49.33352046900005 ], [ -123.154194091999926, 49.334558866000052 ], [ -123.155377496999918, 49.334556274000064 ], [ -123.156972320999955, 49.334552733000102 ], [ -123.156966199999928, 49.335458606000017 ], [ -123.156947973999976, 49.336361426000053 ], [ -123.156956271999945, 49.337279388000077 ], [ -123.156937623999937, 49.338166017000084 ], [ -123.154133804999972, 49.338159810000072 ], [ -123.151437246999947, 49.338154491000125 ], [ -123.151435463999974, 49.337723212000121 ], [ -123.151435192999926, 49.337660243000045 ], [ -123.151433579999917, 49.337274489000066 ], [ -123.151450316999941, 49.336331084000072 ], [ -123.151428440999936, 49.335434381000056 ], [ -123.15142888299999, 49.334554497000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127969708", "BldgCostT": "82064715", "sL_LossRatio": "0.694679311244869", "sL_AssetLoss": "2528620", "sL_BldgLoss": "1756580", "sL_StrLoss": "748230", "sL_NStrLoss": "1008350", "sL_ContLoss": "772040", "geom_point": "0101000020E61000009199C1CE83C95EC06659BDE4FBAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.148710876999957, 49.333492092000036 ], [ -123.151464690999887, 49.333502607000064 ], [ -123.15142888299999, 49.334554497000077 ], [ -123.151428440999936, 49.335434381000056 ], [ -123.151450316999941, 49.336331084000072 ], [ -123.151433579999917, 49.337274489000066 ], [ -123.151435192999926, 49.337660243000045 ], [ -123.151435463999974, 49.337723212000121 ], [ -123.151437246999947, 49.338154491000125 ], [ -123.151423470999944, 49.338154410000065 ], [ -123.15129469399993, 49.33815356300002 ], [ -123.150254505999925, 49.338146641000058 ], [ -123.150239724999935, 49.338146534000046 ], [ -123.149133950999897, 49.338139186000028 ], [ -123.148500512999959, 49.338134977000038 ], [ -123.145866907999959, 49.338117389000033 ], [ -123.145897226, 49.337223898000069 ], [ -123.145902915999955, 49.336304510000012 ], [ -123.14590919199999, 49.335421193000059 ], [ -123.145917203999929, 49.33450911000002 ], [ -123.14592500399999, 49.333445597000029 ], [ -123.148710876999957, 49.333492092000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107378166", "BldgCostT": "71316666", "sL_LossRatio": "0.711426349620261", "sL_AssetLoss": "2060098", "sL_BldgLoss": "1465608", "sL_StrLoss": "653778", "sL_NStrLoss": "811830", "sL_ContLoss": "594490", "geom_point": "0101000020E61000002B90973D62C95EC0E57FB05B9DAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143149906999952, 49.332350112000057 ], [ -123.143145410999963, 49.33131151 ], [ -123.14359706399999, 49.331333071000074 ], [ -123.144451683999975, 49.331389294000061 ], [ -123.145946303999963, 49.331403607000027 ], [ -123.148736215999975, 49.33145018500008 ], [ -123.151477981999932, 49.331497202000016 ], [ -123.151484426999986, 49.332465597000137 ], [ -123.151464690999887, 49.333502607000064 ], [ -123.148710876999957, 49.333492092000036 ], [ -123.14592500399999, 49.333445597000029 ], [ -123.145917203999929, 49.33450911000002 ], [ -123.14590919199999, 49.335421193000059 ], [ -123.1431414899999, 49.335411107000013 ], [ -123.14315928900001, 49.334498305000096 ], [ -123.143150075999927, 49.332382734000092 ], [ -123.143149906999952, 49.332350112000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85258167", "BldgCostT": "56171667", "sL_LossRatio": "0.746967586561993", "sL_AssetLoss": "974966", "sL_BldgLoss": "728268", "sL_StrLoss": "335818", "sL_NStrLoss": "392450", "sL_ContLoss": "246698", "geom_point": "0101000020E61000005B9E4993F9C85EC0DA3E81031CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136577011999961, 49.337887780000067 ], [ -123.135254573999987, 49.337797532000138 ], [ -123.134962678999898, 49.337777638000055 ], [ -123.134967456999931, 49.337633663000069 ], [ -123.134679825999953, 49.337612539000133 ], [ -123.134681949999958, 49.337533335000074 ], [ -123.134685906999948, 49.33731369700007 ], [ -123.134763862999975, 49.336765469000099 ], [ -123.134866677, 49.336660108000054 ], [ -123.134868144000038, 49.33657127400005 ], [ -123.134874384999975, 49.336187726000105 ], [ -123.134878079999936, 49.335960361000048 ], [ -123.134901992999971, 49.334487566000043 ], [ -123.134902507, 49.334457187000062 ], [ -123.136128403999933, 49.334479933000132 ], [ -123.136709707999955, 49.334490688000052 ], [ -123.136778476999936, 49.33555889800008 ], [ -123.136884191999954, 49.335785887000107 ], [ -123.137000813, 49.33592499400001 ], [ -123.137381621999936, 49.336197208000058 ], [ -123.137859481999968, 49.336323297000099 ], [ -123.138237310999955, 49.336377388000088 ], [ -123.139645889999926, 49.336360693000039 ], [ -123.139984976999955, 49.336372401000077 ], [ -123.140125981, 49.336318503000022 ], [ -123.140324591999914, 49.336287716000079 ], [ -123.143156600999987, 49.336282398000037 ], [ -123.1431414899999, 49.335411107000013 ], [ -123.14590919199999, 49.335421193000059 ], [ -123.145902915999955, 49.336304510000012 ], [ -123.145897226, 49.337223898000069 ], [ -123.145866907999959, 49.338117389000033 ], [ -123.143298208999965, 49.338112613000135 ], [ -123.14303750299996, 49.338034583000145 ], [ -123.140785084999919, 49.338066931000093 ], [ -123.140673125, 49.338077867000024 ], [ -123.139809000999975, 49.338162415000042 ], [ -123.139097946999968, 49.338093565000115 ], [ -123.138950438, 49.338079267000097 ], [ -123.138841411, 49.338068719000042 ], [ -123.137918192999962, 49.337979300000079 ], [ -123.136577011999961, 49.337887780000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138486084", "BldgCostT": "91088334", "sL_LossRatio": "0.801959850379879", "sL_AssetLoss": "900681", "sL_BldgLoss": "722310", "sL_StrLoss": "396820", "sL_NStrLoss": "325490", "sL_ContLoss": "178371", "geom_point": "0101000020E6100000536F2609F6C85EC0C1E635D9B3AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137859481999968, 49.336323297000099 ], [ -123.137381621999936, 49.336197208000058 ], [ -123.137000813, 49.33592499400001 ], [ -123.136884191999954, 49.335785887000107 ], [ -123.136778476999936, 49.33555889800008 ], [ -123.136709707999955, 49.334490688000052 ], [ -123.136128403999933, 49.334479933000132 ], [ -123.134902507, 49.334457187000062 ], [ -123.134910276999946, 49.333509096000085 ], [ -123.136237694999977, 49.333513610000068 ], [ -123.136611209999899, 49.333480301000129 ], [ -123.136852198999975, 49.333410091000069 ], [ -123.137108305999959, 49.333295286000045 ], [ -123.137319394999935, 49.33315229300004 ], [ -123.137717215999928, 49.332771093000062 ], [ -123.137649798999988, 49.331702006000079 ], [ -123.138935163999946, 49.330871434000109 ], [ -123.139431958, 49.330802633000111 ], [ -123.142050693999977, 49.330323431000117 ], [ -123.143038123999958, 49.33033816000011 ], [ -123.143145410999963, 49.33131151 ], [ -123.143149906999952, 49.332350112000057 ], [ -123.143150075999927, 49.332382734000092 ], [ -123.14315928900001, 49.334498305000096 ], [ -123.1431414899999, 49.335411107000013 ], [ -123.143156600999987, 49.336282398000037 ], [ -123.140324591999914, 49.336287716000079 ], [ -123.140125981, 49.336318503000022 ], [ -123.139984976999955, 49.336372401000077 ], [ -123.139645889999926, 49.336360693000039 ], [ -123.138237310999955, 49.336377388000088 ], [ -123.137859481999968, 49.336323297000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145657828", "BldgCostT": "88707410", "sL_LossRatio": "0.652156674871558", "sL_AssetLoss": "3026650", "sL_BldgLoss": "1973850", "sL_StrLoss": "758360", "sL_NStrLoss": "1215490", "sL_ContLoss": "1052800", "geom_point": "0101000020E61000009F8703B6FDC85EC0B420281227AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143145410999963, 49.33131151 ], [ -123.143038123999958, 49.33033816000011 ], [ -123.142050693999977, 49.330323431000117 ], [ -123.139431958, 49.330802633000111 ], [ -123.138935163999946, 49.330871434000109 ], [ -123.13619278699997, 49.330857357000056 ], [ -123.134930586999971, 49.330844609000053 ], [ -123.134923997999948, 49.330062703000117 ], [ -123.134924870999939, 49.329825797000076 ], [ -123.134920900999987, 49.329267295000065 ], [ -123.134919211999915, 49.329063499000014 ], [ -123.134912655, 49.328288122000089 ], [ -123.134917182999956, 49.327624093000061 ], [ -123.134920162999961, 49.327188627000091 ], [ -123.13492037899999, 49.327138483000113 ], [ -123.134920452999978, 49.327127077000064 ], [ -123.134920547999911, 49.327115694000021 ], [ -123.134904501999955, 49.326351026000083 ], [ -123.134900648999974, 49.32616578700005 ], [ -123.137586818999949, 49.326991823000107 ], [ -123.137778972999939, 49.32705091000004 ], [ -123.140528708999966, 49.327947712000103 ], [ -123.141878064999943, 49.328334417000057 ], [ -123.142814579999978, 49.328608238000079 ], [ -123.143559130999975, 49.328844296000064 ], [ -123.144196020999985, 49.327931586000034 ], [ -123.14424169499992, 49.327922600000051 ], [ -123.144615334999941, 49.327909040000108 ], [ -123.144932786999945, 49.327936363000099 ], [ -123.146097731999959, 49.328185978000093 ], [ -123.14602219699999, 49.328273146000079 ], [ -123.146000347999973, 49.328583308000134 ], [ -123.145978836, 49.329490555000064 ], [ -123.145961068999924, 49.330381729000123 ], [ -123.148750421999964, 49.330437293000053 ], [ -123.148736215999975, 49.33145018500008 ], [ -123.145946303999963, 49.331403607000027 ], [ -123.144451683999975, 49.331389294000061 ], [ -123.14359706399999, 49.331333071000074 ], [ -123.143145410999963, 49.33131151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106355833", "BldgCostT": "71668333", "sL_LossRatio": "0.711393053953608", "sL_AssetLoss": "2340900", "sL_BldgLoss": "1665300", "sL_StrLoss": "696500", "sL_NStrLoss": "968800", "sL_ContLoss": "675600", "geom_point": "0101000020E610000030664B5685C95EC0812FF1EC17AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146713818999984, 49.327341210000036 ], [ -123.14710131199999, 49.326857011000087 ], [ -123.14711461499995, 49.326859298000095 ], [ -123.149546275999967, 49.327281057000093 ], [ -123.149568043000031, 49.327284845000079 ], [ -123.151358918999946, 49.327595423000133 ], [ -123.151584799999938, 49.327634540000105 ], [ -123.151574121999928, 49.327696408000058 ], [ -123.15157259599998, 49.327891115000071 ], [ -123.151566539999948, 49.328669789000053 ], [ -123.151565944999945, 49.328682896000061 ], [ -123.151542834999987, 49.329213426000095 ], [ -123.15152638799999, 49.329591896000132 ], [ -123.151489501999961, 49.330481608000049 ], [ -123.15114731099996, 49.330476063000063 ], [ -123.148750421999964, 49.330437293000053 ], [ -123.145961068999924, 49.330381729000123 ], [ -123.145978836, 49.329490555000064 ], [ -123.146000347999973, 49.328583308000134 ], [ -123.14602219699999, 49.328273146000079 ], [ -123.146097731999959, 49.328185978000093 ], [ -123.146713818999984, 49.327341210000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277613944", "BldgCostT": "160934623", "sL_LossRatio": "0.616030636278166", "sL_AssetLoss": "7264590", "sL_BldgLoss": "4475210", "sL_StrLoss": "1605910", "sL_NStrLoss": "2869300", "sL_ContLoss": "2789380", "geom_point": "0101000020E61000005A9188BEB5C95EC0BEF3D455C7A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156774013999922, 49.328325108000108 ], [ -123.154370890999928, 49.327919604000044 ], [ -123.154323897999944, 49.328728887000103 ], [ -123.151817009999931, 49.328675170000047 ], [ -123.151566539999948, 49.328669789000053 ], [ -123.15157259599998, 49.327891115000071 ], [ -123.151574121999928, 49.327696408000058 ], [ -123.151584799999938, 49.327634540000105 ], [ -123.151358918999946, 49.327595423000133 ], [ -123.149568043000031, 49.327284845000079 ], [ -123.149546275999967, 49.327281057000093 ], [ -123.14711461499995, 49.326859298000095 ], [ -123.14710131199999, 49.326857011000087 ], [ -123.146713818999984, 49.327341210000036 ], [ -123.146097731999959, 49.328185978000093 ], [ -123.144932786999945, 49.327936363000099 ], [ -123.144615334999941, 49.327909040000108 ], [ -123.14424169499992, 49.327922600000051 ], [ -123.144196020999985, 49.327931586000034 ], [ -123.145136499999964, 49.326712758000056 ], [ -123.145167212999937, 49.326650707000056 ], [ -123.145203808999923, 49.326576822000028 ], [ -123.145717229999931, 49.325785254000024 ], [ -123.146036782999914, 49.325376145000071 ], [ -123.146508174999923, 49.324772580000058 ], [ -123.147132513999964, 49.323973148000071 ], [ -123.147354481999983, 49.323697147000061 ], [ -123.147363998999964, 49.323685498000074 ], [ -123.147541583999967, 49.323468865000088 ], [ -123.147949652999912, 49.322973392000115 ], [ -123.147989127999935, 49.32292688800004 ], [ -123.146741562, 49.322501144000093 ], [ -123.146289668999913, 49.322335659000053 ], [ -123.147269290999986, 49.321870399000048 ], [ -123.148161408999954, 49.321626901000052 ], [ -123.14824130599996, 49.321622208000115 ], [ -123.14847778699999, 49.321608291000111 ], [ -123.148589791999939, 49.321688096000052 ], [ -123.148603983000015, 49.321967195000099 ], [ -123.14878050599998, 49.322201526000072 ], [ -123.148990290999933, 49.322480011000017 ], [ -123.150259502999944, 49.323485504000068 ], [ -123.152109786999972, 49.325885192000037 ], [ -123.152725075, 49.326321432000071 ], [ -123.15303392, 49.326540399000109 ], [ -123.153571890999956, 49.326701303000036 ], [ -123.154039093999955, 49.326682803000068 ], [ -123.154465110999979, 49.326528992000064 ], [ -123.155265884999935, 49.326681397000073 ], [ -123.15750849899996, 49.326722696000047 ], [ -123.15851298199999, 49.326604493000069 ], [ -123.158974976999943, 49.326604027000073 ], [ -123.158974514999954, 49.326620115 ], [ -123.158947613999985, 49.327062150000053 ], [ -123.158897330999977, 49.32723890000009 ], [ -123.160265969999926, 49.327220144000115 ], [ -123.160238724999957, 49.327683960000115 ], [ -123.160240086999977, 49.328155005 ], [ -123.160238505999985, 49.328629590000105 ], [ -123.160232300999908, 49.329741684000126 ], [ -123.160231987, 49.330643315000067 ], [ -123.158914997999929, 49.330605886000058 ], [ -123.158922706999959, 49.329739702000083 ], [ -123.15890610299999, 49.32861979000004 ], [ -123.157915104999958, 49.328516310000069 ], [ -123.156774013999922, 49.328325108000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67959841", "BldgCostT": "35801792", "sL_LossRatio": "0.581272961058045", "sL_AssetLoss": "1088800", "sL_BldgLoss": "632890", "sL_StrLoss": "206660", "sL_NStrLoss": "426230", "sL_ContLoss": "455910", "geom_point": "0101000020E610000084E03454B7C85EC04FA96463D2A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134444291999927, 49.31754078800008 ], [ -123.134953480999926, 49.317459599000109 ], [ -123.135159596999955, 49.31721609699999 ], [ -123.135682910999961, 49.316964002000063 ], [ -123.136844015999941, 49.316903138000086 ], [ -123.13684505699996, 49.317278717000065 ], [ -123.136925638999955, 49.317278622000124 ], [ -123.137257842999986, 49.317278228000106 ], [ -123.13725859199999, 49.317548081000027 ], [ -123.137322962, 49.317548005000077 ], [ -123.137321506999953, 49.317556482000029 ], [ -123.137432298999926, 49.31791541000009 ], [ -123.137434698, 49.319057613000112 ], [ -123.137629407999938, 49.319722706000036 ], [ -123.137630624999957, 49.320142575000013 ], [ -123.136738943999958, 49.321106582 ], [ -123.134380755999956, 49.319996717000016 ], [ -123.134416514999955, 49.319958527000047 ], [ -123.135587226999959, 49.318708177000069 ], [ -123.134456215999947, 49.317854512000039 ], [ -123.134444291999927, 49.31754078800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178810834", "BldgCostT": "111138334", "sL_LossRatio": "0.67383797362668", "sL_AssetLoss": "2730790", "sL_BldgLoss": "1840110", "sL_StrLoss": "782300", "sL_NStrLoss": "1057810", "sL_ContLoss": "890680", "geom_point": "0101000020E6100000789848CC60C85EC0DDCA11531EAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124322491999948, 49.330860089000076 ], [ -123.124357551999978, 49.330219013000018 ], [ -123.124420571999963, 49.329066434000019 ], [ -123.125434088999953, 49.329065491000065 ], [ -123.128104083999986, 49.328827690000018 ], [ -123.129617689999947, 49.328467314000129 ], [ -123.130647203999928, 49.328024411000058 ], [ -123.131663788999987, 49.327330804000042 ], [ -123.131921766999966, 49.326906167000054 ], [ -123.131970992999968, 49.326825108000051 ], [ -123.13250042, 49.325953605000073 ], [ -123.132721988999933, 49.325658097000094 ], [ -123.1327280499999, 49.325650022000104 ], [ -123.134900648999974, 49.32616578700005 ], [ -123.134904501999955, 49.326351026000083 ], [ -123.134920547999911, 49.327115694000021 ], [ -123.134920452999978, 49.327127077000064 ], [ -123.13492037899999, 49.327138483000113 ], [ -123.134920162999961, 49.327188627000091 ], [ -123.134917182999956, 49.327624093000061 ], [ -123.134912655, 49.328288122000089 ], [ -123.134919211999915, 49.329063499000014 ], [ -123.134920900999987, 49.329267295000065 ], [ -123.134924870999939, 49.329825797000076 ], [ -123.134923997999948, 49.330062703000117 ], [ -123.134930586999971, 49.330844609000053 ], [ -123.133447107999956, 49.330852088000029 ], [ -123.132636548999955, 49.330846419000046 ], [ -123.132107701999985, 49.330842716000078 ], [ -123.13131513399999, 49.33083523500008 ], [ -123.130738212, 49.330829790000038 ], [ -123.127768799999942, 49.330793201000148 ], [ -123.127559937999962, 49.330766515000107 ], [ -123.127018941999964, 49.330697423000025 ], [ -123.127003699999989, 49.330695490000053 ], [ -123.126487168999944, 49.330629449000057 ], [ -123.125845958999946, 49.330585371000033 ], [ -123.124562920999907, 49.330816746000039 ], [ -123.124322491999948, 49.330860089000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63400367", "BldgCostT": "34402426", "sL_LossRatio": "0.61371535648442", "sL_AssetLoss": "1323480", "sL_BldgLoss": "812240", "sL_StrLoss": "280330", "sL_NStrLoss": "531910", "sL_ContLoss": "511240", "geom_point": "0101000020E6100000DEB419A721C85EC0BB30D28BDAA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124605495999958, 49.326124806000067 ], [ -123.124365290999904, 49.324918706000048 ], [ -123.125190091999968, 49.325153198000116 ], [ -123.125405176999948, 49.325214342000031 ], [ -123.125907635999951, 49.325357205000046 ], [ -123.126616008999974, 49.325558611000098 ], [ -123.127088810999908, 49.325692823000061 ], [ -123.127888784999953, 49.325919944000098 ], [ -123.128040392999978, 49.325962975000039 ], [ -123.128457209999965, 49.326081295000058 ], [ -123.128883955, 49.326196693000107 ], [ -123.128896902999969, 49.326200185000097 ], [ -123.12967293, 49.326381294000022 ], [ -123.130789286999956, 49.32664185900007 ], [ -123.131243830999935, 49.326747941000079 ], [ -123.131182190999979, 49.326855106000025 ], [ -123.130782497999988, 49.32725110300003 ], [ -123.129930718999958, 49.327773798000045 ], [ -123.128790101999982, 49.328108402000041 ], [ -123.127579812999954, 49.328307799000086 ], [ -123.124401445999965, 49.328590039000062 ], [ -123.124605495999958, 49.326124806000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287669833", "BldgCostT": "199108333", "sL_LossRatio": "0.892479214516498", "sL_AssetLoss": "3104330", "sL_BldgLoss": "2770550", "sL_StrLoss": "1339950", "sL_NStrLoss": "1430600", "sL_ContLoss": "333780", "geom_point": "0101000020E6100000BAD55A35DBC75EC031005CE22BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122868249999911, 49.329212453000146 ], [ -123.123064488999958, 49.329186405000065 ], [ -123.123062405999931, 49.329457349000052 ], [ -123.123090990999984, 49.329661464000019 ], [ -123.122434793999957, 49.329695200000081 ], [ -123.122386756999944, 49.329423554000094 ], [ -123.122374736, 49.329355669000108 ], [ -123.122868249999911, 49.329212453000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195232116", "BldgCostT": "127303879", "sL_LossRatio": "0.703242288424352", "sL_AssetLoss": "9323970", "sL_BldgLoss": "6557010", "sL_StrLoss": "2654510", "sL_NStrLoss": "3902500", "sL_ContLoss": "2766960", "geom_point": "0101000020E6100000B7C0FD04C0C75EC0EF0B0123DCA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120976224999964, 49.323967936000081 ], [ -123.12103625499995, 49.323969080000047 ], [ -123.12128188599999, 49.324040082000046 ], [ -123.121846874999903, 49.324203442000055 ], [ -123.122008912999931, 49.324250298000074 ], [ -123.122384876999931, 49.324358968000134 ], [ -123.12242433099999, 49.324370140000021 ], [ -123.124365290999904, 49.324918706000048 ], [ -123.124605495999958, 49.326124806000067 ], [ -123.124401445999965, 49.328590039000062 ], [ -123.122272724999917, 49.328779009000058 ], [ -123.122157793, 49.328789215000022 ], [ -123.119381196999939, 49.329610988000113 ], [ -123.118816318999919, 49.329835997000075 ], [ -123.118225597999952, 49.330260400000064 ], [ -123.117801484999973, 49.33108790800005 ], [ -123.11745969699993, 49.332482204000115 ], [ -123.117526777999942, 49.332608586000099 ], [ -123.117515514999965, 49.332608552000046 ], [ -123.117162923999942, 49.332607543000101 ], [ -123.117164380999924, 49.332598311000027 ], [ -123.117174496999908, 49.332536133000112 ], [ -123.117176303999884, 49.332524766000063 ], [ -123.117180828999921, 49.332497249000035 ], [ -123.117193274, 49.332113728000081 ], [ -123.117198845999923, 49.331943009000085 ], [ -123.117200397999923, 49.331895235000069 ], [ -123.117201334999919, 49.331859141000102 ], [ -123.117210497, 49.331502469000043 ], [ -123.117212982, 49.331405620000069 ], [ -123.11721342599995, 49.331396566000123 ], [ -123.117236328999979, 49.330919886000096 ], [ -123.117240505, 49.330820956000103 ], [ -123.11725883099993, 49.330387157000082 ], [ -123.117271161999952, 49.330094933000034 ], [ -123.118047856999937, 49.328954698000125 ], [ -123.118161931000017, 49.328787463000026 ], [ -123.118384412999958, 49.328461183000059 ], [ -123.118686695999941, 49.328017896000077 ], [ -123.119130798999933, 49.327335407000092 ], [ -123.11897919099998, 49.327229610000082 ], [ -123.118923919999986, 49.327079503000107 ], [ -123.118922382999983, 49.325931104000098 ], [ -123.118907599999972, 49.323958300000079 ], [ -123.120083674999961, 49.323957195000091 ], [ -123.120098312999943, 49.323956977000122 ], [ -123.120273807999979, 49.323954198000088 ], [ -123.120976224999964, 49.323967936000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201746346", "BldgCostT": "120207283", "sL_LossRatio": "0.670596853524959", "sL_AssetLoss": "9746780", "sL_BldgLoss": "6536160", "sL_StrLoss": "2499860", "sL_NStrLoss": "4036300", "sL_ContLoss": "3210620", "geom_point": "0101000020E6100000A610B0D274C75EC0E1F8A94351A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.113417679999927, 49.322103200000065 ], [ -123.113438205999927, 49.321398500000072 ], [ -123.114255996999958, 49.321408706000042 ], [ -123.11528259, 49.321422602000034 ], [ -123.116349200999977, 49.321435705000113 ], [ -123.117448720999946, 49.321449801000028 ], [ -123.11756370699996, 49.322143593000106 ], [ -123.120136852999963, 49.322173519000089 ], [ -123.120110833999931, 49.3230462080001 ], [ -123.120102016999937, 49.323342689000036 ], [ -123.120083674999961, 49.323957195000091 ], [ -123.118907599999972, 49.323958300000079 ], [ -123.117544186999936, 49.323938095000102 ], [ -123.116151883999962, 49.32392079900012 ], [ -123.11477700899999, 49.323909292000053 ], [ -123.113368091999945, 49.323893304000109 ], [ -123.113396724999959, 49.322860326000132 ], [ -123.113417679999927, 49.322103200000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233731999", "BldgCostT": "156349999", "sL_LossRatio": "0.745695040094102", "sL_AssetLoss": "10133660", "sL_BldgLoss": "7556620", "sL_StrLoss": "3299720", "sL_NStrLoss": "4256900", "sL_ContLoss": "2577040", "geom_point": "0101000020E610000095E278786EC75EC03E42593A97A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117544186999936, 49.323938095000102 ], [ -123.118907599999972, 49.323958300000079 ], [ -123.118922382999983, 49.325931104000098 ], [ -123.117512204999969, 49.325934001000036 ], [ -123.116127208999899, 49.32593040299999 ], [ -123.114745012999933, 49.325925896000093 ], [ -123.113311179999968, 49.325910195000048 ], [ -123.113315691999972, 49.325726497000062 ], [ -123.113343508999961, 49.324839190000027 ], [ -123.113368091999945, 49.323893304000109 ], [ -123.11477700899999, 49.323909292000053 ], [ -123.116151883999962, 49.32392079900012 ], [ -123.117544186999936, 49.323938095000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192302471", "BldgCostT": "111436370", "sL_LossRatio": "0.586318204482277", "sL_AssetLoss": "12274120", "sL_BldgLoss": "7196540", "sL_StrLoss": "2835640", "sL_NStrLoss": "4360900", "sL_ContLoss": "5077580", "geom_point": "0101000020E6100000808DDAB31DC75EC0826C17A25CA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11057380699998, 49.323878092000029 ], [ -123.110616513999943, 49.322973092000097 ], [ -123.107795876999901, 49.322940900000077 ], [ -123.107785894999921, 49.322044516000048 ], [ -123.107811609999956, 49.321147207000116 ], [ -123.108456090999951, 49.321156391000024 ], [ -123.109131588999929, 49.321294979000129 ], [ -123.109436069999944, 49.321345594000057 ], [ -123.110910363999892, 49.321366547000068 ], [ -123.111083781999966, 49.321369002000019 ], [ -123.112129802999988, 49.321381591000062 ], [ -123.113190791999969, 49.321395497000054 ], [ -123.113438205999927, 49.321398500000072 ], [ -123.113417679999927, 49.322103200000065 ], [ -123.113396724999959, 49.322860326000132 ], [ -123.113368091999945, 49.323893304000109 ], [ -123.113343508999961, 49.324839190000027 ], [ -123.113315691999972, 49.325726497000062 ], [ -123.110953736999946, 49.325696655000122 ], [ -123.11081542099997, 49.325694902000102 ], [ -123.110518903999917, 49.325641901000097 ], [ -123.110544654999913, 49.3248140030001 ], [ -123.110546050999957, 49.324769465000024 ], [ -123.11057380699998, 49.323878092000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111852417", "BldgCostT": "73961667", "sL_LossRatio": "0.673865310767981", "sL_AssetLoss": "6203020", "sL_BldgLoss": "4180000", "sL_StrLoss": "1634720", "sL_NStrLoss": "2545280", "sL_ContLoss": "2023020", "geom_point": "0101000020E6100000FB31A49253C75EC0237C73A8F4A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115358701999966, 49.318103009000076 ], [ -123.117530823999971, 49.318118599000059 ], [ -123.117505789999896, 49.318851992000148 ], [ -123.117460798999929, 49.320133021000068 ], [ -123.117455312999979, 49.320289553000116 ], [ -123.117420210999953, 49.321288705000065 ], [ -123.117448720999946, 49.321449801000028 ], [ -123.116349200999977, 49.321435705000113 ], [ -123.11528259, 49.321422602000034 ], [ -123.114255996999958, 49.321408706000042 ], [ -123.113438205999927, 49.321398500000072 ], [ -123.113190791999969, 49.321395497000054 ], [ -123.112129802999988, 49.321381591000062 ], [ -123.111083781999966, 49.321369002000019 ], [ -123.111139006999963, 49.320152691000047 ], [ -123.111109197999951, 49.319483612000035 ], [ -123.111080380999937, 49.318776702000079 ], [ -123.112201705, 49.318794088000097 ], [ -123.11326970199994, 49.318804585000116 ], [ -123.114303289999938, 49.318815994000019 ], [ -123.115341002999969, 49.318828398000051 ], [ -123.115358701999966, 49.318103009000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "595907433", "BldgCostT": "344965050", "sL_LossRatio": "0.608997828538109", "sL_AssetLoss": "33373830", "sL_BldgLoss": "20324590", "sL_StrLoss": "7120990", "sL_NStrLoss": "13203600", "sL_ContLoss": "13049240", "geom_point": "0101000020E6100000291BF61838C75EC0438713DA6AA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102242514999929, 49.321714901000135 ], [ -123.102264888999969, 49.320854652000058 ], [ -123.102281797999936, 49.320206504000033 ], [ -123.102340261999984, 49.319122083000124 ], [ -123.102393790999926, 49.318129811000048 ], [ -123.102403088999921, 49.317392626000121 ], [ -123.102405655999959, 49.317187082 ], [ -123.102398677999986, 49.316435399000092 ], [ -123.102507517999982, 49.31630599700005 ], [ -123.102584285, 49.314065700000114 ], [ -123.102516105999925, 49.313732492000028 ], [ -123.102705204999964, 49.312823799000057 ], [ -123.102829577999927, 49.310837497000122 ], [ -123.103607120999968, 49.310836802000068 ], [ -123.103558998999929, 49.312805288000114 ], [ -123.103475603999954, 49.312886483000042 ], [ -123.1030634, 49.312950602000114 ], [ -123.103025692999964, 49.31403868900005 ], [ -123.104511503999902, 49.314072886000083 ], [ -123.104979506999896, 49.314064307000109 ], [ -123.10535027799996, 49.313973194000035 ], [ -123.106863304999962, 49.313990284000091 ], [ -123.106901520999912, 49.312981905000065 ], [ -123.107219924999981, 49.312990504000076 ], [ -123.107365991999956, 49.310724503000095 ], [ -123.107501696999947, 49.31067039500013 ], [ -123.108205606999988, 49.310750186000114 ], [ -123.108492701999964, 49.310633387000088 ], [ -123.109620900999928, 49.310577789000092 ], [ -123.109854012999961, 49.31039839500005 ], [ -123.109865403999933, 49.310291316000061 ], [ -123.110199752999932, 49.310290996000028 ], [ -123.11018501300002, 49.310569305000037 ], [ -123.110433617999931, 49.31076579500003 ], [ -123.110818909999978, 49.310676103000084 ], [ -123.11194632299997, 49.310710304000075 ], [ -123.113034598999931, 49.310817106000059 ], [ -123.113433391999962, 49.310988013000085 ], [ -123.11334051399993, 49.313003308000098 ], [ -123.11250200799995, 49.313148496000082 ], [ -123.11242132, 49.313705402000068 ], [ -123.112531798999981, 49.31384919400007 ], [ -123.113603091999934, 49.313605696000089 ], [ -123.113768917999977, 49.313318004000102 ], [ -123.114593406999987, 49.312920684000098 ], [ -123.115376922999985, 49.313010401000028 ], [ -123.115611612999928, 49.313108700000043 ], [ -123.115970595999968, 49.313783701000055 ], [ -123.116122287999971, 49.313854995000057 ], [ -123.116411212999978, 49.313846399000084 ], [ -123.116629700000018, 49.313450513000063 ], [ -123.11665679399999, 49.313179891000125 ], [ -123.115980291999989, 49.311983506000061 ], [ -123.116021496999949, 49.311353990000079 ], [ -123.114766214999946, 49.310780093000062 ], [ -123.11439470199997, 49.310223200000038 ], [ -123.114267495999968, 49.308810400000027 ], [ -123.114322617999932, 49.308675107000091 ], [ -123.114568547, 49.308551913000024 ], [ -123.11460971799994, 49.308531296000147 ], [ -123.115024208999941, 49.308539788000076 ], [ -123.116358878999975, 49.308996998000104 ], [ -123.117033208999928, 49.309428488000059 ], [ -123.117845406999933, 49.309652089000046 ], [ -123.118665075999928, 49.310047236000038 ], [ -123.118665641999911, 49.310282614000087 ], [ -123.119152300999971, 49.310282113000085 ], [ -123.119169082999974, 49.310290203000093 ], [ -123.119491731999958, 49.310544823000043 ], [ -123.119492295999933, 49.310778148000054 ], [ -123.11968054, 49.310783167000103 ], [ -123.119940282999949, 49.311116191000067 ], [ -123.120421502999946, 49.311080612000055 ], [ -123.120889702999989, 49.310710283000041 ], [ -123.124440906999951, 49.312064685000045 ], [ -123.124842883999946, 49.312460605000105 ], [ -123.125985236999924, 49.312863403000094 ], [ -123.125930548, 49.312917210000087 ], [ -123.12360857799996, 49.3151250310001 ], [ -123.123403273999926, 49.315388534000135 ], [ -123.123363508999986, 49.315439497000114 ], [ -123.123288324, 49.315519250000072 ], [ -123.123234153999974, 49.315576655000044 ], [ -123.123146184999939, 49.315676224000114 ], [ -123.123064089999957, 49.315769071000034 ], [ -123.123017823999959, 49.315821463000091 ], [ -123.122829262999929, 49.316002409000092 ], [ -123.122804511999931, 49.316021017000033 ], [ -123.121297823999896, 49.317380993 ], [ -123.120610491999955, 49.317694591000063 ], [ -123.120598057, 49.317715161000066 ], [ -123.120131616999956, 49.318485105000043 ], [ -123.12015274499997, 49.318542098000115 ], [ -123.120146709999943, 49.319919246000062 ], [ -123.120136852999963, 49.322173519000089 ], [ -123.11756370699996, 49.322143593000106 ], [ -123.117448720999946, 49.321449801000028 ], [ -123.117420210999953, 49.321288705000065 ], [ -123.117455312999979, 49.320289553000116 ], [ -123.117460798999929, 49.320133021000068 ], [ -123.117505789999896, 49.318851992000148 ], [ -123.117530823999971, 49.318118599000059 ], [ -123.115358701999966, 49.318103009000076 ], [ -123.115341002999969, 49.318828398000051 ], [ -123.114303289999938, 49.318815994000019 ], [ -123.11326970199994, 49.318804585000116 ], [ -123.112201705, 49.318794088000097 ], [ -123.111080380999937, 49.318776702000079 ], [ -123.111109197999951, 49.319483612000035 ], [ -123.111139006999963, 49.320152691000047 ], [ -123.111083781999966, 49.321369002000019 ], [ -123.110910363999892, 49.321366547000068 ], [ -123.109436069999944, 49.321345594000057 ], [ -123.109131588999929, 49.321294979000129 ], [ -123.108456090999951, 49.321156391000024 ], [ -123.107811609999956, 49.321147207000116 ], [ -123.107785894999921, 49.322044516000048 ], [ -123.10496369599997, 49.32201669100008 ], [ -123.103509194999944, 49.322016812000086 ], [ -123.102972492999939, 49.322016846000047 ], [ -123.102766120999902, 49.322016855000108 ], [ -123.10221670699994, 49.322016893000054 ], [ -123.102201494000013, 49.321820102000089 ], [ -123.102222152999929, 49.321767085000111 ], [ -123.102242514999929, 49.321714901000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "665383633", "BldgCostT": "408351369", "sL_LossRatio": "0.679849892286483", "sL_AssetLoss": "10416520", "sL_BldgLoss": "7081670", "sL_StrLoss": "2822320", "sL_NStrLoss": "4259350", "sL_ContLoss": "3334850", "geom_point": "0101000020E6100000849FC6BDB9C65EC0048A72AB98A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102206922, 49.322944298000074 ], [ -123.102211290999904, 49.322528718000022 ], [ -123.10221670699994, 49.322016893000054 ], [ -123.102766120999902, 49.322016855000108 ], [ -123.102972492999939, 49.322016846000047 ], [ -123.103509194999944, 49.322016812000086 ], [ -123.10496369599997, 49.32201669100008 ], [ -123.107785894999921, 49.322044516000048 ], [ -123.107795876999901, 49.322940900000077 ], [ -123.110616513999943, 49.322973092000097 ], [ -123.11057380699998, 49.323878092000029 ], [ -123.107769706999932, 49.323845405000029 ], [ -123.107714683999959, 49.324726599000073 ], [ -123.10765539199997, 49.325830109000023 ], [ -123.107653805999945, 49.325965986000057 ], [ -123.107610184999956, 49.327655399000022 ], [ -123.104840219999943, 49.327646105000028 ], [ -123.10481401499996, 49.328658602000104 ], [ -123.103024091999913, 49.328638577000092 ], [ -123.102278626999976, 49.328638565000055 ], [ -123.102305414999975, 49.32844079500012 ], [ -123.101933850999956, 49.326537122000047 ], [ -123.101975214999968, 49.325683640000101 ], [ -123.101890813999944, 49.324714189000083 ], [ -123.102146678999986, 49.324170298000062 ], [ -123.102142412999953, 49.323863997000053 ], [ -123.10214221299999, 49.32376737200012 ], [ -123.10214219399991, 49.323757695000054 ], [ -123.102170348999962, 49.32340380500009 ], [ -123.102206922, 49.322944298000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141462704", "BldgCostT": "82016123", "sL_LossRatio": "0.620999854672286", "sL_AssetLoss": "2752400", "sL_BldgLoss": "1709240", "sL_StrLoss": "715140", "sL_NStrLoss": "994100", "sL_ContLoss": "1043160", "geom_point": "0101000020E6100000FA587DBF62C65EC0D99A7311DBA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099031312999927, 49.324450595 ], [ -123.099261519, 49.324069498 ], [ -123.09457098699994, 49.324000196000036 ], [ -123.094577509999922, 49.323237502000083 ], [ -123.099764504999939, 49.323285884000072 ], [ -123.100508624, 49.323308494000116 ], [ -123.100620084999932, 49.323352721000028 ], [ -123.101220001999977, 49.323590590000023 ], [ -123.101978191999976, 49.323851396000087 ], [ -123.102142412999953, 49.323863997000053 ], [ -123.102146678999986, 49.324170298000062 ], [ -123.101890813999944, 49.324714189000083 ], [ -123.101975214999968, 49.325683640000101 ], [ -123.101933850999956, 49.326537122000047 ], [ -123.102305414999975, 49.32844079500012 ], [ -123.102278626999976, 49.328638565000055 ], [ -123.102218496999953, 49.32981253800007 ], [ -123.102100603999986, 49.330246426 ], [ -123.102044542999934, 49.33103598200011 ], [ -123.101464134999958, 49.331024844000076 ], [ -123.100366709999946, 49.330974483 ], [ -123.099543123999979, 49.330936629000028 ], [ -123.098106203999961, 49.330891331000082 ], [ -123.098305296999939, 49.329792042000101 ], [ -123.097846692999923, 49.328713108000045 ], [ -123.097840417999976, 49.328572493000138 ], [ -123.097844438999985, 49.328282115000036 ], [ -123.097854976999955, 49.327526297000077 ], [ -123.097774974999979, 49.326540335000054 ], [ -123.097771190999978, 49.326493706000122 ], [ -123.097904579999962, 49.326185597000126 ], [ -123.097918692999954, 49.326163571000073 ], [ -123.098199002999976, 49.325725215000041 ], [ -123.099031312999927, 49.324450595 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124638501", "BldgCostT": "81515001", "sL_LossRatio": "0.743792639935073", "sL_AssetLoss": "1182870", "sL_BldgLoss": "879810", "sL_StrLoss": "350180", "sL_NStrLoss": "529630", "sL_ContLoss": "303060", "geom_point": "0101000020E6100000D308BB302BC65EC0813BCC6E98A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093988366999952, 49.325660631000062 ], [ -123.094464384999981, 49.324712494000032 ], [ -123.09455697599995, 49.324398791000142 ], [ -123.09457098699994, 49.324000196000036 ], [ -123.099261519, 49.324069498 ], [ -123.099031312999927, 49.324450595 ], [ -123.098199002999976, 49.325725215000041 ], [ -123.097226176999953, 49.325816103000093 ], [ -123.096482501999901, 49.325830399000075 ], [ -123.096003587999959, 49.325789591000074 ], [ -123.094974693999959, 49.325634011000041 ], [ -123.094850229999949, 49.325646004000127 ], [ -123.094730178, 49.325738298000019 ], [ -123.094355509999957, 49.326448690000042 ], [ -123.093596588999972, 49.32644089899999 ], [ -123.093983230999953, 49.325670827000025 ], [ -123.093988366999952, 49.325660631000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100270834", "BldgCostT": "65313334", "sL_LossRatio": "0.733671265412173", "sL_AssetLoss": "1254690", "sL_BldgLoss": "920530", "sL_StrLoss": "416340", "sL_NStrLoss": "504190", "sL_ContLoss": "334160", "geom_point": "0101000020E6100000E180C07719C65EC0C1A68C8710AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094355509999957, 49.326448690000042 ], [ -123.094730178, 49.325738298000019 ], [ -123.094850229999949, 49.325646004000127 ], [ -123.094974693999959, 49.325634011000041 ], [ -123.096003587999959, 49.325789591000074 ], [ -123.096482501999901, 49.325830399000075 ], [ -123.097226176999953, 49.325816103000093 ], [ -123.098199002999976, 49.325725215000041 ], [ -123.097918692999954, 49.326163571000073 ], [ -123.097904579999962, 49.326185597000126 ], [ -123.097771190999978, 49.326493706000122 ], [ -123.097774974999979, 49.326540335000054 ], [ -123.097854976999955, 49.327526297000077 ], [ -123.097844438999985, 49.328282115000036 ], [ -123.097840417999976, 49.328572493000138 ], [ -123.097846692999923, 49.328713108000045 ], [ -123.098305296999939, 49.329792042000101 ], [ -123.098106203999961, 49.330891331000082 ], [ -123.095264874999913, 49.331054100000081 ], [ -123.094991034999964, 49.331068025 ], [ -123.093982996999927, 49.331069898000109 ], [ -123.093262097999968, 49.331047800000128 ], [ -123.092754469999974, 49.33097641500013 ], [ -123.092374313999954, 49.330900948000114 ], [ -123.09226794599999, 49.330480853000033 ], [ -123.092038072999983, 49.329572894000115 ], [ -123.091807518999957, 49.328582079000093 ], [ -123.092561006999944, 49.328431405000124 ], [ -123.092515199999966, 49.328371691000051 ], [ -123.092533192999937, 49.328304592000102 ], [ -123.093109921999911, 49.327466305000065 ], [ -123.093336913999934, 49.326988071000073 ], [ -123.093443944999976, 49.326762545000093 ], [ -123.093596588999972, 49.32644089899999 ], [ -123.094355509999957, 49.326448690000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129839500", "BldgCostT": "82450000", "sL_LossRatio": "0.690362194076904", "sL_AssetLoss": "2543940", "sL_BldgLoss": "1756240", "sL_StrLoss": "734630", "sL_NStrLoss": "1021610", "sL_ContLoss": "787700", "geom_point": "0101000020E6100000DFE5E0A1C1C55EC0D564F8150CAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088160867999989, 49.331386086000116 ], [ -123.088167909999953, 49.331216912000095 ], [ -123.087481097999898, 49.33137489500011 ], [ -123.087395540999964, 49.331374126000107 ], [ -123.08457288699995, 49.331348801000068 ], [ -123.084585067999967, 49.330389872000104 ], [ -123.084591341999968, 49.329857806000078 ], [ -123.084596309999952, 49.329434981000091 ], [ -123.084596792999946, 49.329394098000151 ], [ -123.084563383999978, 49.329268923000043 ], [ -123.084401063999934, 49.329160020000103 ], [ -123.084409824999966, 49.329153050000045 ], [ -123.084456722999946, 49.329115555000087 ], [ -123.084663351999964, 49.328950549000083 ], [ -123.084799529999941, 49.32884182300009 ], [ -123.08534261899996, 49.32840810000004 ], [ -123.089333609, 49.328452703000032 ], [ -123.089419607999915, 49.328264897000096 ], [ -123.089445108999939, 49.327421715000085 ], [ -123.08946869299993, 49.326389304000081 ], [ -123.090761115999925, 49.32640060300011 ], [ -123.091088880999962, 49.326398319000099 ], [ -123.091145312999942, 49.32619750700006 ], [ -123.091151383999915, 49.325465494000078 ], [ -123.091157613999897, 49.324863537000098 ], [ -123.091162490999977, 49.32439038800004 ], [ -123.091161710999984, 49.324294003000084 ], [ -123.091891222999962, 49.323909343000025 ], [ -123.092486186999935, 49.323595603000108 ], [ -123.093013804999927, 49.323386387000113 ], [ -123.093151464999934, 49.323348258000166 ], [ -123.093398819999948, 49.323279702000058 ], [ -123.093416875999978, 49.32327744700013 ], [ -123.093463533, 49.323271643000048 ], [ -123.093512377999957, 49.32326557000011 ], [ -123.093705873999937, 49.323241530000089 ], [ -123.093774492999927, 49.323233010000081 ], [ -123.094577509999922, 49.323237502000083 ], [ -123.09457098699994, 49.324000196000036 ], [ -123.09455697599995, 49.324398791000142 ], [ -123.094464384999981, 49.324712494000032 ], [ -123.093988366999952, 49.325660631000062 ], [ -123.093983230999953, 49.325670827000025 ], [ -123.093596588999972, 49.32644089899999 ], [ -123.093443944999976, 49.326762545000093 ], [ -123.093336913999934, 49.326988071000073 ], [ -123.093109921999911, 49.327466305000065 ], [ -123.092533192999937, 49.328304592000102 ], [ -123.092515199999966, 49.328371691000051 ], [ -123.092561006999944, 49.328431405000124 ], [ -123.091807518999957, 49.328582079000093 ], [ -123.092038072999983, 49.329572894000115 ], [ -123.09226794599999, 49.330480853000033 ], [ -123.092374313999954, 49.330900948000114 ], [ -123.091434037999989, 49.330728969000091 ], [ -123.091511787999949, 49.330919569000081 ], [ -123.09151310499999, 49.331097581000066 ], [ -123.091620829999911, 49.331945757000035 ], [ -123.091597612, 49.332162851000142 ], [ -123.091267071999965, 49.332162182000069 ], [ -123.091046858000013, 49.332161732000088 ], [ -123.091019333999924, 49.332161694000028 ], [ -123.09097437699991, 49.332161620000065 ], [ -123.089048998999942, 49.33230253300006 ], [ -123.088661125, 49.332300183000079 ], [ -123.088127456999956, 49.332297512000139 ], [ -123.088126912999925, 49.332153386000108 ], [ -123.08813247799999, 49.332031189000126 ], [ -123.088137747, 49.331915017000071 ], [ -123.088142540999939, 49.331815780000078 ], [ -123.088146482999946, 49.331732416000115 ], [ -123.088147866000014, 49.331699239000045 ], [ -123.088160867999989, 49.331386086000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104191886", "BldgCostT": "66632079", "sL_LossRatio": "0.679822694147404", "sL_AssetLoss": "2395860", "sL_BldgLoss": "1628760", "sL_StrLoss": "647460", "sL_NStrLoss": "981300", "sL_ContLoss": "767100", "geom_point": "0101000020E6100000D3C39FFAAAC55EC05130BEC3C8A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088378906999978, 49.325145811000013 ], [ -123.088377098999928, 49.324278384000102 ], [ -123.089505123, 49.32428703100004 ], [ -123.090658647999987, 49.324295855000081 ], [ -123.090663597999978, 49.324295905000071 ], [ -123.090935604999956, 49.324411300000079 ], [ -123.091161710999984, 49.324294003000084 ], [ -123.091162490999977, 49.32439038800004 ], [ -123.091157613999897, 49.324863537000098 ], [ -123.091151383999915, 49.325465494000078 ], [ -123.091145312999942, 49.32619750700006 ], [ -123.091088880999962, 49.326398319000099 ], [ -123.090761115999925, 49.32640060300011 ], [ -123.08946869299993, 49.326389304000081 ], [ -123.089445108999939, 49.327421715000085 ], [ -123.089419607999915, 49.328264897000096 ], [ -123.089333609, 49.328452703000032 ], [ -123.08534261899996, 49.32840810000004 ], [ -123.085545391999943, 49.328247006000041 ], [ -123.086365182999884, 49.327395388000085 ], [ -123.086575920999934, 49.327174194000094 ], [ -123.08587143199999, 49.326884489000079 ], [ -123.085842305999975, 49.32687249700011 ], [ -123.086288879, 49.326378297000083 ], [ -123.086845626999946, 49.326056502000043 ], [ -123.087415611999944, 49.325717943000029 ], [ -123.088378906999978, 49.325145811000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129514417", "BldgCostT": "79626667", "sL_LossRatio": "0.659072462102118", "sL_AssetLoss": "2574946", "sL_BldgLoss": "1697076", "sL_StrLoss": "715616", "sL_NStrLoss": "981460", "sL_ContLoss": "877870", "geom_point": "0101000020E61000003D83228A87C55EC0EA43D5B765A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081592089, 49.324242212000101 ], [ -123.081615608000021, 49.323191707000035 ], [ -123.084760896999981, 49.323224405000062 ], [ -123.08478630599997, 49.322208183000093 ], [ -123.084811103000021, 49.321158697000044 ], [ -123.084837000999954, 49.320112795000099 ], [ -123.084841549999979, 49.319999885000129 ], [ -123.084844309999966, 49.319931989000047 ], [ -123.084848651999977, 49.319747555000106 ], [ -123.08486740499994, 49.31895170000012 ], [ -123.085618380999918, 49.31895219300003 ], [ -123.08571238899998, 49.318922296000046 ], [ -123.088405180999985, 49.319080134000082 ], [ -123.088461939999931, 49.318926491000077 ], [ -123.088807302999967, 49.319074198000067 ], [ -123.089248317999974, 49.319062135000138 ], [ -123.089786916999941, 49.319047413000092 ], [ -123.090128534999906, 49.319048176000095 ], [ -123.091577503999957, 49.319051494000071 ], [ -123.091408792, 49.319942290000043 ], [ -123.09140611399999, 49.319984846000054 ], [ -123.091404171999926, 49.320015099000095 ], [ -123.09140215399999, 49.320047713000037 ], [ -123.091401274999967, 49.320061260000074 ], [ -123.091841591999952, 49.320211511000068 ], [ -123.09139371599997, 49.320160704000045 ], [ -123.091319988999885, 49.321224194000088 ], [ -123.09124570099999, 49.322255303000155 ], [ -123.091196790999959, 49.323187105000066 ], [ -123.09119510799998, 49.323278895000051 ], [ -123.091186257999937, 49.32354705100007 ], [ -123.091161710999984, 49.324294003000084 ], [ -123.090935604999956, 49.324411300000079 ], [ -123.090663597999978, 49.324295905000071 ], [ -123.090658647999987, 49.324295855000081 ], [ -123.089505123, 49.32428703100004 ], [ -123.088377098999928, 49.324278384000102 ], [ -123.088378906999978, 49.325145811000013 ], [ -123.087415611999944, 49.325717943000029 ], [ -123.086845626999946, 49.326056502000043 ], [ -123.086288879, 49.326378297000083 ], [ -123.085842305999975, 49.32687249700011 ], [ -123.08587143199999, 49.326884489000079 ], [ -123.086575920999934, 49.327174194000094 ], [ -123.086365182999884, 49.327395388000085 ], [ -123.085545391999943, 49.328247006000041 ], [ -123.08534261899996, 49.32840810000004 ], [ -123.084294178000036, 49.328402456000106 ], [ -123.081502915999934, 49.328387409000072 ], [ -123.081524604999942, 49.327365700000122 ], [ -123.081548995999952, 49.326323396000063 ], [ -123.081558572999953, 49.325857332000034 ], [ -123.081567261999965, 49.325434771000161 ], [ -123.081570311999954, 49.325286396000138 ], [ -123.081592089, 49.324242212000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239226917", "BldgCostT": "159751667", "sL_LossRatio": "0.7627059218336", "sL_AssetLoss": "1996510", "sL_BldgLoss": "1522750", "sL_StrLoss": "663230", "sL_NStrLoss": "859520", "sL_ContLoss": "473760", "geom_point": "0101000020E610000039AEC1F339C55EC04B6331A04DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081696911999956, 49.321137706000101 ], [ -123.084811103000021, 49.321158697000044 ], [ -123.08478630599997, 49.322208183000093 ], [ -123.084760896999981, 49.323224405000062 ], [ -123.081615608000021, 49.323191707000035 ], [ -123.081592089, 49.324242212000101 ], [ -123.078518193999969, 49.324210495000038 ], [ -123.07854449, 49.323161001000081 ], [ -123.078570425999928, 49.322139399000079 ], [ -123.081638586999986, 49.322172803000036 ], [ -123.081696911999956, 49.321137706000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42723249", "BldgCostT": "26934999", "sL_LossRatio": "0.707055878353319", "sL_AssetLoss": "647120", "sL_BldgLoss": "457550", "sL_StrLoss": "223990", "sL_NStrLoss": "233560", "sL_ContLoss": "189570", "geom_point": "0101000020E6100000EF30681950C55EC0862EEA8BEBA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081236398000016, 49.318877643000114 ], [ -123.080661283999987, 49.318646307000023 ], [ -123.080781905999942, 49.318521698000076 ], [ -123.081544384000026, 49.317771301000064 ], [ -123.082358198999941, 49.318123942000092 ], [ -123.08426640499998, 49.318950805000071 ], [ -123.08486740499994, 49.31895170000012 ], [ -123.084848651999977, 49.319747555000106 ], [ -123.084844309999966, 49.319931989000047 ], [ -123.084841549999979, 49.319999885000129 ], [ -123.084837000999954, 49.320112795000099 ], [ -123.084811103000021, 49.321158697000044 ], [ -123.081696911999956, 49.321137706000101 ], [ -123.081723716999974, 49.320078305000031 ], [ -123.08172527399995, 49.319983446000045 ], [ -123.081726605999947, 49.319901789000014 ], [ -123.081749399999964, 49.319168384000065 ], [ -123.081746726999953, 49.318948608000092 ], [ -123.081405048, 49.318925528000065 ], [ -123.081345398999972, 49.318921487000054 ], [ -123.081236398000016, 49.318877643000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "246459069", "BldgCostT": "159966649", "sL_LossRatio": "0.73461325456895", "sL_AssetLoss": "2166800", "sL_BldgLoss": "1591760", "sL_StrLoss": "724330", "sL_NStrLoss": "867430", "sL_ContLoss": "575040", "geom_point": "0101000020E610000048583C7110C55EC03F9C34CBEDA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078596395, 49.321117790000081 ], [ -123.078619892999896, 49.320046713000082 ], [ -123.07762039399995, 49.320039489000123 ], [ -123.07549610699999, 49.320025199999989 ], [ -123.075555606999984, 49.319518785000078 ], [ -123.075670187999947, 49.319206688000051 ], [ -123.076735410999973, 49.318151102000051 ], [ -123.077444808999985, 49.31741550800006 ], [ -123.077550807999927, 49.317304006000022 ], [ -123.07767910799997, 49.317189495000093 ], [ -123.080552850999965, 49.318417865000065 ], [ -123.080781905999942, 49.318521698000076 ], [ -123.080661283999987, 49.318646307000023 ], [ -123.081236398000016, 49.318877643000114 ], [ -123.081345398999972, 49.318921487000054 ], [ -123.081405048, 49.318925528000065 ], [ -123.081746726999953, 49.318948608000092 ], [ -123.081749399999964, 49.319168384000065 ], [ -123.081726605999947, 49.319901789000014 ], [ -123.08172527399995, 49.319983446000045 ], [ -123.081723716999974, 49.320078305000031 ], [ -123.081696911999956, 49.321137706000101 ], [ -123.081638586999986, 49.322172803000036 ], [ -123.078570425999928, 49.322139399000079 ], [ -123.078596395, 49.321117790000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203870790", "BldgCostT": "133235017", "sL_LossRatio": "0.781438544802408", "sL_AssetLoss": "1561300", "sL_BldgLoss": "1220060", "sL_StrLoss": "539300", "sL_NStrLoss": "680760", "sL_ContLoss": "341240", "geom_point": "0101000020E61000000315D186EEC45EC03B57730419A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07762039399995, 49.320039489000123 ], [ -123.078619892999896, 49.320046713000082 ], [ -123.078596395, 49.321117790000081 ], [ -123.078570425999928, 49.322139399000079 ], [ -123.075502411999949, 49.322105091000047 ], [ -123.075536018999955, 49.321068390000093 ], [ -123.07549610699999, 49.320025199999989 ], [ -123.07762039399995, 49.320039489000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191648667", "BldgCostT": "130301667", "sL_LossRatio": "0.792246805858523", "sL_AssetLoss": "1604500", "sL_BldgLoss": "1271160", "sL_StrLoss": "548790", "sL_NStrLoss": "722370", "sL_ContLoss": "333340", "geom_point": "0101000020E610000083E0FAA8EDC45EC05E6D18475DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075502411999949, 49.322105091000047 ], [ -123.078570425999928, 49.322139399000079 ], [ -123.07854449, 49.323161001000081 ], [ -123.078518193999969, 49.324210495000038 ], [ -123.075432102999955, 49.324177398000039 ], [ -123.07546801399991, 49.323129095000098 ], [ -123.075502411999949, 49.322105091000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392562515", "BldgCostT": "254952991", "sL_LossRatio": "0.719064129185479", "sL_AssetLoss": "3149580", "sL_BldgLoss": "2264750", "sL_StrLoss": "955330", "sL_NStrLoss": "1309420", "sL_ContLoss": "884830", "geom_point": "0101000020E61000000739CEF1BAC45EC05F6AF8D439A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074688657999957, 49.321049933000026 ], [ -123.075536018999955, 49.321068390000093 ], [ -123.075502411999949, 49.322105091000047 ], [ -123.07546801399991, 49.323129095000098 ], [ -123.072295215999986, 49.32309719000007 ], [ -123.072318898000034, 49.322069316000075 ], [ -123.072348218999963, 49.321018102000103 ], [ -123.073330464999984, 49.321040217000075 ], [ -123.074378089999939, 49.321045151000092 ], [ -123.074688657999957, 49.321049933000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "512045935", "BldgCostT": "338760556", "sL_LossRatio": "0.782684237565011", "sL_AssetLoss": "3464820", "sL_BldgLoss": "2711860", "sL_StrLoss": "1167130", "sL_NStrLoss": "1544730", "sL_ContLoss": "752960", "geom_point": "0101000020E6100000C2584335A7C45EC0F711734164A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07070711199998, 49.324129604000035 ], [ -123.070762703999947, 49.322054998000105 ], [ -123.072318898000034, 49.322069316000075 ], [ -123.072295215999986, 49.32309719000007 ], [ -123.07546801399991, 49.323129095000098 ], [ -123.075432102999955, 49.324177398000039 ], [ -123.074151181999937, 49.324164266000082 ], [ -123.072267491999966, 49.324144910000086 ], [ -123.07070711199998, 49.324129604000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "566403313", "BldgCostT": "381432206", "sL_LossRatio": "0.810296925069885", "sL_AssetLoss": "3520080", "sL_BldgLoss": "2852310", "sL_StrLoss": "1265370", "sL_NStrLoss": "1586940", "sL_ContLoss": "667770", "geom_point": "0101000020E6100000EA1C0B23A0C45EC0216C99888EA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074151181999937, 49.324164266000082 ], [ -123.075432102999955, 49.324177398000039 ], [ -123.07539559599995, 49.325212206000053 ], [ -123.07224069699997, 49.325178106000031 ], [ -123.069119904999965, 49.325148503000037 ], [ -123.069146803999985, 49.324114307000094 ], [ -123.07070711199998, 49.324129604000035 ], [ -123.072267491999966, 49.324144910000086 ], [ -123.074151181999937, 49.324164266000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231354303", "BldgCostT": "157703746", "sL_LossRatio": "0.814860681114551", "sL_AssetLoss": "1647300", "sL_BldgLoss": "1342320", "sL_StrLoss": "591770", "sL_NStrLoss": "750550", "sL_ContLoss": "304980", "geom_point": "0101000020E6100000641ADA217AC45EC082EC61D45AA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069175515, 49.323052303000061 ], [ -123.069198176, 49.322040502000014 ], [ -123.070762703999947, 49.322054998000105 ], [ -123.07070711199998, 49.324129604000035 ], [ -123.069146803999985, 49.324114307000094 ], [ -123.069175515, 49.323052303000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253043000", "BldgCostT": "169325000", "sL_LossRatio": "0.801990801615964", "sL_AssetLoss": "1680730", "sL_BldgLoss": "1347930", "sL_StrLoss": "561110", "sL_NStrLoss": "786820", "sL_ContLoss": "332800", "geom_point": "0101000020E6100000829A215554C45EC0D6471ABB48A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066122875999966, 49.322011102000047 ], [ -123.069198176, 49.322040502000014 ], [ -123.069175515, 49.323052303000061 ], [ -123.066093212999959, 49.323023600000084 ], [ -123.066122875999966, 49.322011102000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "346681137", "BldgCostT": "236552080", "sL_LossRatio": "0.810217392288299", "sL_AssetLoss": "2209370", "sL_BldgLoss": "1790070", "sL_StrLoss": "813250", "sL_NStrLoss": "976820", "sL_ContLoss": "419300", "geom_point": "0101000020E61000009DF3AD8B32C45EC0BC5BB3115FA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063000075999952, 49.322993595000092 ], [ -123.063025605999897, 49.321983703000058 ], [ -123.066122875999966, 49.322011102000047 ], [ -123.066093212999959, 49.323023600000084 ], [ -123.069175515, 49.323052303000061 ], [ -123.069146803999985, 49.324114307000094 ], [ -123.06606320600001, 49.324083782000045 ], [ -123.062969986999974, 49.32405290100008 ], [ -123.063000075999952, 49.322993595000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97145834", "BldgCostT": "62953334", "sL_LossRatio": "0.720005408491331", "sL_AssetLoss": "1331240", "sL_BldgLoss": "958500", "sL_StrLoss": "417130", "sL_NStrLoss": "541370", "sL_ContLoss": "372740", "geom_point": "0101000020E61000004385C9D839C45EC0E4B10BAB9DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06606320600001, 49.324083782000045 ], [ -123.069146803999985, 49.324114307000094 ], [ -123.069119904999965, 49.325148503000037 ], [ -123.069093602999914, 49.326194304000111 ], [ -123.066004279999902, 49.326164497000015 ], [ -123.062913676999969, 49.32613460000006 ], [ -123.062942792999976, 49.325090585000083 ], [ -123.062969986999974, 49.32405290100008 ], [ -123.06606320600001, 49.324083782000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "520305268", "BldgCostT": "344329874", "sL_LossRatio": "0.798734198428082", "sL_AssetLoss": "3580340", "sL_BldgLoss": "2859740", "sL_StrLoss": "1239850", "sL_NStrLoss": "1619890", "sL_ContLoss": "720600", "geom_point": "0101000020E6100000CB6A68A085C45EC055DFF1D4C0A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069119904999965, 49.325148503000037 ], [ -123.07224069699997, 49.325178106000031 ], [ -123.07221431, 49.326226707000082 ], [ -123.072187994999965, 49.327252801000036 ], [ -123.069067893999929, 49.327209604000103 ], [ -123.069093602999914, 49.326194304000111 ], [ -123.069119904999965, 49.325148503000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "400291345", "BldgCostT": "272913519", "sL_LossRatio": "0.82478598045324", "sL_AssetLoss": "2507014", "sL_BldgLoss": "2067750", "sL_StrLoss": "900770", "sL_NStrLoss": "1166980", "sL_ContLoss": "439264", "geom_point": "0101000020E6100000112C27049FC45EC0F2E7B203F4A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072187994999965, 49.327252801000036 ], [ -123.075358983999976, 49.327296300000036 ], [ -123.075349032999895, 49.327651887000066 ], [ -123.075330485999984, 49.328313303000094 ], [ -123.072147812999972, 49.328258602000055 ], [ -123.070504604999911, 49.328245591000034 ], [ -123.069078703999978, 49.328234 ], [ -123.069067893999929, 49.327209604000103 ], [ -123.072187994999965, 49.327252801000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141073768", "BldgCostT": "92220230", "sL_LossRatio": "0.729370490137519", "sL_AssetLoss": "1456530", "sL_BldgLoss": "1062350", "sL_StrLoss": "486180", "sL_NStrLoss": "576170", "sL_ContLoss": "394180", "geom_point": "0101000020E610000058EAD48DDEC45EC06816ECAFECA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075349032999895, 49.327651887000066 ], [ -123.075358983999976, 49.327296300000036 ], [ -123.072187994999965, 49.327252801000036 ], [ -123.07221431, 49.326226707000082 ], [ -123.075390112999955, 49.326259486000019 ], [ -123.078469602999974, 49.326290597000096 ], [ -123.078459911999971, 49.326704546000045 ], [ -123.078453628999966, 49.326974197000055 ], [ -123.078449832999922, 49.327136360000104 ], [ -123.078445285999962, 49.327330193000144 ], [ -123.078440551999961, 49.327514352000016 ], [ -123.078418698999926, 49.328362597000101 ], [ -123.078395, 49.329326597000012 ], [ -123.076645366, 49.329303096000082 ], [ -123.076147598999952, 49.329296412000062 ], [ -123.075303318999914, 49.329486100000061 ], [ -123.075307673999959, 49.329297907000083 ], [ -123.075320803999915, 49.32873123500007 ], [ -123.075330485999984, 49.328313303000094 ], [ -123.075349032999895, 49.327651887000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "365601227", "BldgCostT": "246169856", "sL_LossRatio": "0.782358697845863", "sL_AssetLoss": "2626110", "sL_BldgLoss": "2054560", "sL_StrLoss": "913460", "sL_NStrLoss": "1141100", "sL_ContLoss": "571550", "geom_point": "0101000020E6100000DC79E239DBC45EC019D22BAFA6A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075432102999955, 49.324177398000039 ], [ -123.078518193999969, 49.324210495000038 ], [ -123.078493896999959, 49.325250106000105 ], [ -123.078469602999974, 49.326290597000096 ], [ -123.075390112999955, 49.326259486000019 ], [ -123.07221431, 49.326226707000082 ], [ -123.07224069699997, 49.325178106000031 ], [ -123.07539559599995, 49.325212206000053 ], [ -123.075432102999955, 49.324177398000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117966477", "BldgCostT": "75104856", "sL_LossRatio": "0.730380468199337", "sL_AssetLoss": "1333620", "sL_BldgLoss": "974050", "sL_StrLoss": "443530", "sL_NStrLoss": "530520", "sL_ContLoss": "359570", "geom_point": "0101000020E610000074E637AF1EC55EC0327CB031D4A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078518193999969, 49.324210495000038 ], [ -123.081592089, 49.324242212000101 ], [ -123.081570311999954, 49.325286396000138 ], [ -123.081567261999965, 49.325434771000161 ], [ -123.081558572999953, 49.325857332000034 ], [ -123.081548995999952, 49.326323396000063 ], [ -123.081524604999942, 49.327365700000122 ], [ -123.081502915999934, 49.328387409000072 ], [ -123.081481083999961, 49.329366707000077 ], [ -123.078395, 49.329326597000012 ], [ -123.078418698999926, 49.328362597000101 ], [ -123.078440551999961, 49.327514352000016 ], [ -123.078445285999962, 49.327330193000144 ], [ -123.078449832999922, 49.327136360000104 ], [ -123.078453628999966, 49.326974197000055 ], [ -123.078459911999971, 49.326704546000045 ], [ -123.078469602999974, 49.326290597000096 ], [ -123.078493896999959, 49.325250106000105 ], [ -123.078518193999969, 49.324210495000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160709395", "BldgCostT": "98546524", "sL_LossRatio": "0.69623720763173", "sL_AssetLoss": "1865370", "sL_BldgLoss": "1298740", "sL_StrLoss": "560740", "sL_NStrLoss": "738000", "sL_ContLoss": "566630", "geom_point": "0101000020E6100000AD2903E625C55EC084BB69E940AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.084294178000036, 49.328402456000106 ], [ -123.08534261899996, 49.32840810000004 ], [ -123.084799529999941, 49.32884182300009 ], [ -123.084663351999964, 49.328950549000083 ], [ -123.084456722999946, 49.329115555000087 ], [ -123.084409824999966, 49.329153050000045 ], [ -123.084401063999934, 49.329160020000103 ], [ -123.084563383999978, 49.329268923000043 ], [ -123.084596792999946, 49.329394098000151 ], [ -123.084596309999952, 49.329434981000091 ], [ -123.084591341999968, 49.329857806000078 ], [ -123.084585067999967, 49.330389872000104 ], [ -123.08457288699995, 49.331348801000068 ], [ -123.081426863999965, 49.3313187890001 ], [ -123.078346983999964, 49.331287806000056 ], [ -123.075280994999915, 49.331255319 ], [ -123.075284910000036, 49.330278210000124 ], [ -123.075292193999957, 49.329963680000098 ], [ -123.075297218999978, 49.329747869000087 ], [ -123.075303318999914, 49.329486100000061 ], [ -123.076147598999952, 49.329296412000062 ], [ -123.076645366, 49.329303096000082 ], [ -123.078395, 49.329326597000012 ], [ -123.081481083999961, 49.329366707000077 ], [ -123.081502915999934, 49.328387409000072 ], [ -123.084294178000036, 49.328402456000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150665916", "BldgCostT": "99936666", "sL_LossRatio": "0.731451924484472", "sL_AssetLoss": "2083545", "sL_BldgLoss": "1524013", "sL_StrLoss": "696933", "sL_NStrLoss": "827080", "sL_ContLoss": "559532", "geom_point": "0101000020E610000003A9900236C55EC06FAE9276C0AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078805037999928, 49.335670900000132 ], [ -123.078750206999985, 49.335649797000052 ], [ -123.078293483, 49.335647402000134 ], [ -123.078301996999954, 49.335120696000082 ], [ -123.078311894999942, 49.334200489000075 ], [ -123.078327314999981, 49.333235397000117 ], [ -123.078338665999951, 49.332357588000072 ], [ -123.078352459999962, 49.332357701000028 ], [ -123.079909200999964, 49.332368489000025 ], [ -123.0814473, 49.332413704000061 ], [ -123.08265588099999, 49.332338231000065 ], [ -123.084534185999971, 49.332334842000066 ], [ -123.084529025999984, 49.332790346000081 ], [ -123.084523290000021, 49.333294698000046 ], [ -123.084511900999971, 49.334284186000062 ], [ -123.084507475999899, 49.334733223000114 ], [ -123.084503002999895, 49.335190006000069 ], [ -123.084497809999974, 49.335644709000057 ], [ -123.081411800999959, 49.335619114000075 ], [ -123.079622896999965, 49.335621214000135 ], [ -123.078805037999928, 49.335670900000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114718137", "BldgCostT": "76562080", "sL_LossRatio": "0.74712794179599", "sL_AssetLoss": "1756580", "sL_BldgLoss": "1312390", "sL_StrLoss": "571180", "sL_NStrLoss": "741210", "sL_ContLoss": "444190", "geom_point": "0101000020E6100000C246E56886C55EC0C10786DEA8AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087481097999898, 49.33137489500011 ], [ -123.088167909999953, 49.331216912000095 ], [ -123.088160867999989, 49.331386086000116 ], [ -123.088147866000014, 49.331699239000045 ], [ -123.088146482999946, 49.331732416000115 ], [ -123.088142540999939, 49.331815780000078 ], [ -123.088137747, 49.331915017000071 ], [ -123.08813247799999, 49.332031189000126 ], [ -123.088126912999925, 49.332153386000108 ], [ -123.088127456999956, 49.332297512000139 ], [ -123.088125721999944, 49.332675738000027 ], [ -123.088124012999913, 49.332855855000041 ], [ -123.088121836999932, 49.333147375000046 ], [ -123.088119738000032, 49.333427641000085 ], [ -123.088116782999947, 49.333826477000045 ], [ -123.088116757999956, 49.333830977000055 ], [ -123.088112123999949, 49.33446770000004 ], [ -123.088108106999968, 49.335231346000093 ], [ -123.086689193, 49.335214717000085 ], [ -123.084503002999895, 49.335190006000069 ], [ -123.084507475999899, 49.334733223000114 ], [ -123.084511900999971, 49.334284186000062 ], [ -123.084523290000021, 49.333294698000046 ], [ -123.084529025999984, 49.332790346000081 ], [ -123.084534185999971, 49.332334842000066 ], [ -123.084544409999964, 49.332226626000065 ], [ -123.084548784999924, 49.332180240000127 ], [ -123.084478576999942, 49.331906427000064 ], [ -123.08457288699995, 49.331348801000068 ], [ -123.087395540999964, 49.331374126000107 ], [ -123.087481097999898, 49.33137489500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131408251", "BldgCostT": "85020001", "sL_LossRatio": "0.72225692275661", "sL_AssetLoss": "2257410", "sL_BldgLoss": "1630430", "sL_StrLoss": "728080", "sL_NStrLoss": "902350", "sL_ContLoss": "626980", "geom_point": "0101000020E61000002BA10E6DB8C55EC004A51E58C4AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.084497809999974, 49.335644709000057 ], [ -123.084503002999895, 49.335190006000069 ], [ -123.086689193, 49.335214717000085 ], [ -123.088108106999968, 49.335231346000093 ], [ -123.088112123999949, 49.33446770000004 ], [ -123.088116757999956, 49.333830977000055 ], [ -123.088116782999947, 49.333826477000045 ], [ -123.088119738000032, 49.333427641000085 ], [ -123.088121836999932, 49.333147375000046 ], [ -123.088124012999913, 49.332855855000041 ], [ -123.088125721999944, 49.332675738000027 ], [ -123.088127456999956, 49.332297512000139 ], [ -123.088661125, 49.332300183000079 ], [ -123.089048998999942, 49.33230253300006 ], [ -123.09097437699991, 49.332161620000065 ], [ -123.091019333999924, 49.332161694000028 ], [ -123.091046858000013, 49.332161732000088 ], [ -123.091267071999965, 49.332162182000069 ], [ -123.091597612, 49.332162851000142 ], [ -123.091539111999936, 49.33238640800004 ], [ -123.091468983999931, 49.333253029000076 ], [ -123.091454602999988, 49.333429966000082 ], [ -123.091373449999978, 49.335729502000092 ], [ -123.090928758999937, 49.335731188000089 ], [ -123.090580316999961, 49.335711500000123 ], [ -123.089682871999926, 49.335660744000087 ], [ -123.089098369999959, 49.335620812000094 ], [ -123.088603407, 49.335586993000057 ], [ -123.088101679999951, 49.335552705000069 ], [ -123.087700022999982, 49.335660795000059 ], [ -123.084497809999974, 49.335644709000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134829250", "BldgCostT": "83230000", "sL_LossRatio": "0.692642418525956", "sL_AssetLoss": "2056790", "sL_BldgLoss": "1424620", "sL_StrLoss": "616540", "sL_NStrLoss": "808080", "sL_ContLoss": "632170", "geom_point": "0101000020E6100000373BD6B58BC55EC0FF31DF8724AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088072509999989, 49.338517681000013 ], [ -123.088066488999985, 49.338366308000033 ], [ -123.087529890999974, 49.338365387000088 ], [ -123.086859865999926, 49.338365592000095 ], [ -123.086598308999953, 49.33836565000005 ], [ -123.085965090999977, 49.338365828000107 ], [ -123.085280095999948, 49.338366 ], [ -123.082369816999972, 49.338365795000136 ], [ -123.082379508999963, 49.337447397000147 ], [ -123.08239120199994, 49.336540785000047 ], [ -123.081400794999965, 49.33653559600004 ], [ -123.081411800999959, 49.335619114000075 ], [ -123.084497809999974, 49.335644709000057 ], [ -123.087700022999982, 49.335660795000059 ], [ -123.088101679999951, 49.335552705000069 ], [ -123.088603407, 49.335586993000057 ], [ -123.089098369999959, 49.335620812000094 ], [ -123.089682871999926, 49.335660744000087 ], [ -123.090580316999961, 49.335711500000123 ], [ -123.090928758999937, 49.335731188000089 ], [ -123.091039987, 49.336475454000059 ], [ -123.091054600999925, 49.336579698000094 ], [ -123.091039427999959, 49.337246814000139 ], [ -123.091014095, 49.338362812000078 ], [ -123.090880286999919, 49.338369096000029 ], [ -123.090581921999942, 49.338518699000112 ], [ -123.090470099999919, 49.338656198000095 ], [ -123.090380600999936, 49.338876205000055 ], [ -123.08808619, 49.338862209000098 ], [ -123.088072509999989, 49.338517681000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106087978", "BldgCostT": "70124857", "sL_LossRatio": "0.736509161558491", "sL_AssetLoss": "1417499", "sL_BldgLoss": "1044001", "sL_StrLoss": "468351", "sL_NStrLoss": "575650", "sL_ContLoss": "373498", "geom_point": "0101000020E61000001FC14B785BC55EC0A68CC92C8CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087529890999974, 49.338365387000088 ], [ -123.088066488999985, 49.338366308000033 ], [ -123.088072509999989, 49.338517681000013 ], [ -123.08808619, 49.338862209000098 ], [ -123.088095210999981, 49.33904709900002 ], [ -123.088064484999961, 49.339492102000072 ], [ -123.087980687999931, 49.339686191000062 ], [ -123.087855311999945, 49.339864702000042 ], [ -123.08735000899999, 49.340569803000051 ], [ -123.087344184999949, 49.340578019000056 ], [ -123.086697620999985, 49.341490705000055 ], [ -123.086380619999886, 49.341936100000083 ], [ -123.086096712999961, 49.342336394000021 ], [ -123.085857994999955, 49.342674005000035 ], [ -123.084749977999934, 49.34256759100009 ], [ -123.084521390999925, 49.342547896000021 ], [ -123.083838046999958, 49.342480082000044 ], [ -123.083734513999957, 49.342469800000117 ], [ -123.083459288, 49.342442471000048 ], [ -123.08281600399998, 49.34237860100005 ], [ -123.082360477999941, 49.342335591000051 ], [ -123.082098210999959, 49.342239392000046 ], [ -123.081846000999946, 49.342107511000037 ], [ -123.081328189999937, 49.341836701000069 ], [ -123.080831409999917, 49.341640504000075 ], [ -123.08066558199999, 49.341607201000038 ], [ -123.07958177899998, 49.341379800000034 ], [ -123.07964831299995, 49.339953983000065 ], [ -123.079643391, 49.33970135200007 ], [ -123.079634688999974, 49.339253818000053 ], [ -123.07962069099996, 49.338563410000091 ], [ -123.079617595999977, 49.338412191000089 ], [ -123.07973738599999, 49.33836590300011 ], [ -123.082369816999972, 49.338365795000136 ], [ -123.085280095999948, 49.338366 ], [ -123.085965090999977, 49.338365828000107 ], [ -123.086598308999953, 49.33836565000005 ], [ -123.086859865999926, 49.338365592000095 ], [ -123.087529890999974, 49.338365387000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86562917", "BldgCostT": "57541667", "sL_LossRatio": "0.700582211894487", "sL_AssetLoss": "3132880", "sL_BldgLoss": "2194840", "sL_StrLoss": "864540", "sL_NStrLoss": "1330300", "sL_ContLoss": "938040", "geom_point": "0101000020E610000076BBE2D2C6C55EC0074A0A2C80AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088878826, 49.343091115000043 ], [ -123.087671890999957, 49.342714795000113 ], [ -123.086380619999886, 49.341936100000083 ], [ -123.086697620999985, 49.341490705000055 ], [ -123.087344184999949, 49.340578019000056 ], [ -123.08735000899999, 49.340569803000051 ], [ -123.087855311999945, 49.339864702000042 ], [ -123.087980687999931, 49.339686191000062 ], [ -123.088064484999961, 49.339492102000072 ], [ -123.088095210999981, 49.33904709900002 ], [ -123.08808619, 49.338862209000098 ], [ -123.090380600999936, 49.338876205000055 ], [ -123.090470099999919, 49.338656198000095 ], [ -123.090581921999942, 49.338518699000112 ], [ -123.090880286999919, 49.338369096000029 ], [ -123.091014095, 49.338362812000078 ], [ -123.091039427999959, 49.337246814000139 ], [ -123.091054600999925, 49.336579698000094 ], [ -123.091839332999953, 49.336585440000114 ], [ -123.09233497, 49.336589056000079 ], [ -123.093079113999949, 49.336594499000029 ], [ -123.093855203999965, 49.336602865000081 ], [ -123.093920484999984, 49.337380001000042 ], [ -123.093689563999988, 49.337869556000108 ], [ -123.093632295999939, 49.337991010000046 ], [ -123.092850706999982, 49.339198101000107 ], [ -123.092114822999989, 49.340334521000067 ], [ -123.091971406999974, 49.340556009000125 ], [ -123.09093971499999, 49.341159895000089 ], [ -123.090810817999966, 49.341325146000095 ], [ -123.090279712999973, 49.342005892000088 ], [ -123.089716734999982, 49.34250598100008 ], [ -123.089079199999972, 49.343072266000085 ], [ -123.088941705999943, 49.343046725000129 ], [ -123.088878826, 49.343091115000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136530501", "BldgCostT": "91715001", "sL_LossRatio": "0.737587929452544", "sL_AssetLoss": "1961800", "sL_BldgLoss": "1447000", "sL_StrLoss": "652210", "sL_NStrLoss": "794790", "sL_ContLoss": "514800", "geom_point": "0101000020E6100000B4144669E5C55EC0EC45C4FFE3AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088878826, 49.343091115000043 ], [ -123.088941705999943, 49.343046725000129 ], [ -123.089079199999972, 49.343072266000085 ], [ -123.089716734999982, 49.34250598100008 ], [ -123.090279712999973, 49.342005892000088 ], [ -123.090810817999966, 49.341325146000095 ], [ -123.09093971499999, 49.341159895000089 ], [ -123.091971406999974, 49.340556009000125 ], [ -123.092114822999989, 49.340334521000067 ], [ -123.092850706999982, 49.339198101000107 ], [ -123.093632295999939, 49.337991010000046 ], [ -123.093689563999988, 49.337869556000108 ], [ -123.093920484999984, 49.337380001000042 ], [ -123.093855203999965, 49.336602865000081 ], [ -123.094535994999944, 49.336610187000105 ], [ -123.094751112999958, 49.33661250200003 ], [ -123.094907742999908, 49.336614195000081 ], [ -123.095389907999959, 49.33661944000005 ], [ -123.095874500999955, 49.336624710000123 ], [ -123.097662092999926, 49.336642911000091 ], [ -123.097977520999962, 49.336880194000116 ], [ -123.098089820999945, 49.337020989000038 ], [ -123.098148700999914, 49.33722251300005 ], [ -123.098098498999931, 49.337408507000092 ], [ -123.097950402999984, 49.337861215000061 ], [ -123.097983796, 49.338250190000117 ], [ -123.098103089999981, 49.338608308000083 ], [ -123.09837909499997, 49.339035410000086 ], [ -123.098611008999939, 49.339220903000069 ], [ -123.098750763999988, 49.339281168000092 ], [ -123.098762422999954, 49.33928619700005 ], [ -123.099128617999952, 49.33930590500011 ], [ -123.098448693999927, 49.340120711000111 ], [ -123.097912997999956, 49.34076379600004 ], [ -123.097365428999979, 49.341421905000033 ], [ -123.096851179999973, 49.342072799000029 ], [ -123.09486679099993, 49.341348513000099 ], [ -123.093766692999949, 49.341665715000026 ], [ -123.093512617999963, 49.341701206000067 ], [ -123.093063084, 49.341737707000064 ], [ -123.092839014999981, 49.341800107000026 ], [ -123.092489418999989, 49.342217610000063 ], [ -123.091935290999928, 49.342889903000042 ], [ -123.091238096, 49.34373580500008 ], [ -123.090946713999969, 49.343927004000086 ], [ -123.090839198999959, 49.343995299000085 ], [ -123.090788192999966, 49.344478406000093 ], [ -123.090775880999971, 49.344673497000066 ], [ -123.09067561099999, 49.345460683000034 ], [ -123.090649407999948, 49.346205697000059 ], [ -123.089697080999954, 49.346205297000026 ], [ -123.089683308999938, 49.346839910000135 ], [ -123.089549795999972, 49.346993 ], [ -123.089226001999947, 49.347503086000081 ], [ -123.089051904999934, 49.347689306000063 ], [ -123.088108000999966, 49.348254715000067 ], [ -123.088135885999975, 49.349013793000054 ], [ -123.087851390999987, 49.34970860400005 ], [ -123.087547193999967, 49.350495697000071 ], [ -123.08744018499999, 49.350796305000131 ], [ -123.087425301999957, 49.350858990000113 ], [ -123.08767319699993, 49.351403315000098 ], [ -123.087687871999947, 49.351563197000061 ], [ -123.087632896999978, 49.351714789000013 ], [ -123.087497201999952, 49.351837189000044 ], [ -123.086723221999961, 49.352436007000115 ], [ -123.086004596999913, 49.353049788000114 ], [ -123.085336121999902, 49.353698202000075 ], [ -123.084707348999942, 49.353355443000069 ], [ -123.084616660999984, 49.353305989000084 ], [ -123.084421727999967, 49.353199735000054 ], [ -123.084186095999925, 49.353071289000084 ], [ -123.085177609999946, 49.352093506000131 ], [ -123.086154186000016, 49.35149820400008 ], [ -123.086291593999974, 49.351337290000068 ], [ -123.086454899999978, 49.350895808000089 ], [ -123.086460031999962, 49.350841338000052 ], [ -123.086495657999976, 49.350461763000041 ], [ -123.086577417999976, 49.349591195000066 ], [ -123.086594364999911, 49.349540855000072 ], [ -123.086850972999912, 49.348779955000104 ], [ -123.086877584999982, 49.348701098000028 ], [ -123.086877274999964, 49.348333545000067 ], [ -123.086877207999976, 49.348226114000035 ], [ -123.086876605999933, 49.347494796000021 ], [ -123.087081207999972, 49.346865285000042 ], [ -123.087156553999989, 49.346144899000159 ], [ -123.087202694999988, 49.345703814000075 ], [ -123.087203495999987, 49.345696009000072 ], [ -123.087370374999978, 49.34553442300011 ], [ -123.088068402999937, 49.344858603000098 ], [ -123.088589638999963, 49.343728271000039 ], [ -123.088428785999938, 49.343627466000079 ], [ -123.088447305, 49.34345135800006 ], [ -123.088878826, 49.343091115000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132311895", "BldgCostT": "86641524", "sL_LossRatio": "0.707919528683517", "sL_AssetLoss": "1841650", "sL_BldgLoss": "1303740", "sL_StrLoss": "547920", "sL_NStrLoss": "755820", "sL_ContLoss": "537910", "geom_point": "0101000020E61000001B072CF3F5C55EC070014FF70DAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093766692999949, 49.341665715000026 ], [ -123.09486679099993, 49.341348513000099 ], [ -123.096851179999973, 49.342072799000029 ], [ -123.09629808899993, 49.342750496000043 ], [ -123.095791121, 49.343374593000121 ], [ -123.09523409099998, 49.344048606000037 ], [ -123.09467850399993, 49.344722603000051 ], [ -123.094116098999976, 49.345417206000086 ], [ -123.0935166899999, 49.346174807000089 ], [ -123.092861399999933, 49.346967699000061 ], [ -123.091388124999966, 49.346978498000034 ], [ -123.089549795999972, 49.346993 ], [ -123.089683308999938, 49.346839910000135 ], [ -123.089697080999954, 49.346205297000026 ], [ -123.090649407999948, 49.346205697000059 ], [ -123.09067561099999, 49.345460683000034 ], [ -123.090775880999971, 49.344673497000066 ], [ -123.090788192999966, 49.344478406000093 ], [ -123.090839198999959, 49.343995299000085 ], [ -123.090946713999969, 49.343927004000086 ], [ -123.091238096, 49.34373580500008 ], [ -123.091935290999928, 49.342889903000042 ], [ -123.092489418999989, 49.342217610000063 ], [ -123.092839014999981, 49.341800107000026 ], [ -123.093063084, 49.341737707000064 ], [ -123.093512617999963, 49.341701206000067 ], [ -123.093766692999949, 49.341665715000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98680184", "BldgCostT": "60717421", "sL_LossRatio": "0.717571432783888", "sL_AssetLoss": "1017390", "sL_BldgLoss": "730050", "sL_StrLoss": "345890", "sL_NStrLoss": "384160", "sL_ContLoss": "287340", "geom_point": "0101000020E61000000D9B012E48C65EC070A65368EAAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09467850399993, 49.344722603000051 ], [ -123.09523409099998, 49.344048606000037 ], [ -123.095791121, 49.343374593000121 ], [ -123.09629808899993, 49.342750496000043 ], [ -123.096851179999973, 49.342072799000029 ], [ -123.097365428999979, 49.341421905000033 ], [ -123.097912997999956, 49.34076379600004 ], [ -123.099041721999981, 49.34115440400015 ], [ -123.099836808999896, 49.341423402000068 ], [ -123.10064089799998, 49.341415193000088 ], [ -123.100918020000037, 49.341494701000016 ], [ -123.10102939799998, 49.341605809000072 ], [ -123.101042492999923, 49.341771006000066 ], [ -123.100823502999944, 49.343005306000116 ], [ -123.100700008999951, 49.343767485000107 ], [ -123.100634795999952, 49.343930609000047 ], [ -123.099926296000021, 49.344321404000048 ], [ -123.09956101899999, 49.344551091000135 ], [ -123.098931305999912, 49.344541404000033 ], [ -123.098502209999978, 49.344537089000056 ], [ -123.09795640599998, 49.3444629890001 ], [ -123.097149386999945, 49.344427897000095 ], [ -123.096893987999977, 49.344462395000079 ], [ -123.096680197999916, 49.344558491000058 ], [ -123.094755483999947, 49.345426291000109 ], [ -123.094116098999976, 49.345417206000086 ], [ -123.09467850399993, 49.344722603000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222407583", "BldgCostT": "144333333", "sL_LossRatio": "0.717951626809457", "sL_AssetLoss": "3525920", "sL_BldgLoss": "2531440", "sL_StrLoss": "1114330", "sL_NStrLoss": "1417110", "sL_ContLoss": "994480", "geom_point": "0101000020E6100000C139D9BC60C65EC0F55388EC28AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099978564999958, 49.3545640500001 ], [ -123.099825090999943, 49.354542572000064 ], [ -123.099440577999971, 49.354535895000083 ], [ -123.0991017959999, 49.354516891000067 ], [ -123.099061598999953, 49.354483441000049 ], [ -123.09898467499994, 49.354419469000042 ], [ -123.098916840999948, 49.354363058000089 ], [ -123.098800906999912, 49.354266594000173 ], [ -123.098549307999974, 49.354262497000093 ], [ -123.098207579999936, 49.354399302000061 ], [ -123.098040495999939, 49.353595916000074 ], [ -123.098212368999924, 49.352718798000083 ], [ -123.098177542999935, 49.35268017700006 ], [ -123.09726650599994, 49.351670301000091 ], [ -123.096385818999934, 49.350526299000094 ], [ -123.09517868599994, 49.350087694000123 ], [ -123.095165292, 49.349752307000124 ], [ -123.095357983999918, 49.349577309000097 ], [ -123.095350813999957, 49.348989004000025 ], [ -123.095353978999967, 49.348324397000063 ], [ -123.095355409999968, 49.348148003000077 ], [ -123.095703277000013, 49.347801507000042 ], [ -123.095753488999975, 49.347615600000047 ], [ -123.095443102999965, 49.346948010000148 ], [ -123.092861399999933, 49.346967699000061 ], [ -123.0935166899999, 49.346174807000089 ], [ -123.094116098999976, 49.345417206000086 ], [ -123.094755483999947, 49.345426291000109 ], [ -123.096680197999916, 49.344558491000058 ], [ -123.096893987999977, 49.344462395000079 ], [ -123.097149386999945, 49.344427897000095 ], [ -123.09795640599998, 49.3444629890001 ], [ -123.098502209999978, 49.344537089000056 ], [ -123.098931305999912, 49.344541404000033 ], [ -123.09956101899999, 49.344551091000135 ], [ -123.099926296000021, 49.344321404000048 ], [ -123.100634795999952, 49.343930609000047 ], [ -123.100700008999951, 49.343767485000107 ], [ -123.100823502999944, 49.343005306000116 ], [ -123.101042492999923, 49.341771006000066 ], [ -123.10102939799998, 49.341605809000072 ], [ -123.100918020000037, 49.341494701000016 ], [ -123.10064089799998, 49.341415193000088 ], [ -123.099836808999896, 49.341423402000068 ], [ -123.099041721999981, 49.34115440400015 ], [ -123.097912997999956, 49.34076379600004 ], [ -123.098448693999927, 49.340120711000111 ], [ -123.099128617999952, 49.33930590500011 ], [ -123.10186039499996, 49.339321480000045 ], [ -123.102782493999953, 49.339333730000106 ], [ -123.102981068999924, 49.339336360000075 ], [ -123.104454895999964, 49.339355900000029 ], [ -123.106630501999959, 49.339376388000048 ], [ -123.106807649999951, 49.339377427000031 ], [ -123.107076679, 49.339378967000087 ], [ -123.107138308999978, 49.33957189900012 ], [ -123.106988809999947, 49.340066102000016 ], [ -123.106684061999914, 49.34034621400005 ], [ -123.106508514999973, 49.340507596000066 ], [ -123.106217237999914, 49.340632529000104 ], [ -123.104994198999975, 49.341157006000046 ], [ -123.10411500299989, 49.341877696000047 ], [ -123.1039516109999, 49.342119506000138 ], [ -123.103773142999955, 49.342383591000058 ], [ -123.10356668499999, 49.342689136000061 ], [ -123.103470209999941, 49.342831890000063 ], [ -123.103106552999961, 49.343653240000073 ], [ -123.10293670399993, 49.344036800000083 ], [ -123.102757102999959, 49.344199205000038 ], [ -123.102467906999962, 49.344337243000027 ], [ -123.102208217999959, 49.344461206000048 ], [ -123.102035540999935, 49.344502959000046 ], [ -123.101449872999979, 49.344644582000079 ], [ -123.101354194999942, 49.344667714000074 ], [ -123.100790702000012, 49.345163302000067 ], [ -123.100032694999953, 49.345308591000027 ], [ -123.099908208000031, 49.345313051000048 ], [ -123.09927628, 49.345335698000049 ], [ -123.098563295999895, 49.345521105000053 ], [ -123.098547910999926, 49.345525109000036 ], [ -123.098493107999985, 49.345545596000058 ], [ -123.098025685999971, 49.345720265000111 ], [ -123.09755708299997, 49.345895401000107 ], [ -123.097350402999922, 49.346174505000093 ], [ -123.097343380999945, 49.346558241000032 ], [ -123.097327337999957, 49.347435338000032 ], [ -123.097325885999979, 49.347514692000118 ], [ -123.097491693999984, 49.348000391000063 ], [ -123.097572186999969, 49.348134810000069 ], [ -123.098099915999939, 49.349015803000015 ], [ -123.09863558699999, 49.350150558000067 ], [ -123.098804516999962, 49.350508402000052 ], [ -123.098988651999917, 49.351071724000128 ], [ -123.099054509999988, 49.351273191000089 ], [ -123.099133388999988, 49.351959573000144 ], [ -123.099167116999922, 49.352253098000077 ], [ -123.099474176999962, 49.352763805000123 ], [ -123.099594392999947, 49.352963701000078 ], [ -123.099622711999942, 49.353395291000041 ], [ -123.099968681999925, 49.3537371010001 ], [ -123.099968016, 49.354204197000065 ], [ -123.099978564999958, 49.3545640500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109957061", "BldgCostT": "72208190", "sL_LossRatio": "0.740715120211523", "sL_AssetLoss": "1301040", "sL_BldgLoss": "963700", "sL_StrLoss": "454490", "sL_NStrLoss": "509210", "sL_ContLoss": "337340", "geom_point": "0101000020E6100000EF96AAD5D3C65EC01130A11F19AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104938317999938, 49.345333363000108 ], [ -123.103825198999971, 49.344034096000073 ], [ -123.103530907999982, 49.344338709000063 ], [ -123.103220987999961, 49.344497089000114 ], [ -123.102690985999971, 49.34471970700006 ], [ -123.101960621999979, 49.344911802000034 ], [ -123.102035540999935, 49.344502959000046 ], [ -123.102208217999959, 49.344461206000048 ], [ -123.102467906999962, 49.344337243000027 ], [ -123.102757102999959, 49.344199205000038 ], [ -123.10293670399993, 49.344036800000083 ], [ -123.103106552999961, 49.343653240000073 ], [ -123.103470209999941, 49.342831890000063 ], [ -123.10356668499999, 49.342689136000061 ], [ -123.103773142999955, 49.342383591000058 ], [ -123.1039516109999, 49.342119506000138 ], [ -123.10411500299989, 49.341877696000047 ], [ -123.104994198999975, 49.341157006000046 ], [ -123.106217237999914, 49.340632529000104 ], [ -123.106234361999967, 49.340645213000116 ], [ -123.106998897, 49.341210903000103 ], [ -123.106669718999939, 49.341391206000047 ], [ -123.10664250899994, 49.343654697000055 ], [ -123.107476000999938, 49.343640082000107 ], [ -123.107687604999938, 49.34371149600009 ], [ -123.10807501, 49.343919988000081 ], [ -123.108105091999946, 49.345355506000082 ], [ -123.109284636999959, 49.345345596000087 ], [ -123.109835590999964, 49.345340971000049 ], [ -123.111127507999953, 49.345330097000087 ], [ -123.11112771099998, 49.345811885000053 ], [ -123.11113111, 49.345828580000052 ], [ -123.111142859999958, 49.345886175000039 ], [ -123.111157463999973, 49.345957565000077 ], [ -123.111268433, 49.34650085100003 ], [ -123.111296408999976, 49.346637759000131 ], [ -123.11132292899994, 49.347160852000101 ], [ -123.110538181999985, 49.347165092000125 ], [ -123.110014937999949, 49.347169128000104 ], [ -123.107346386999936, 49.347190522000041 ], [ -123.106998557999958, 49.347140682000081 ], [ -123.106731649, 49.34700745700011 ], [ -123.106296215999947, 49.346619342000068 ], [ -123.105600316999983, 49.34601710400004 ], [ -123.105456649999937, 49.345893909000026 ], [ -123.105313016999929, 49.345770701000106 ], [ -123.104938317999938, 49.345333363000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118961061", "BldgCostT": "80213190", "sL_LossRatio": "0.738683192965729", "sL_AssetLoss": "943950", "sL_BldgLoss": "697280", "sL_StrLoss": "304350", "sL_NStrLoss": "392930", "sL_ContLoss": "246670", "geom_point": "0101000020E610000073BD6535FAC65EC06DCDFBA4FFAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.106669718999939, 49.341391206000047 ], [ -123.106998897, 49.341210903000103 ], [ -123.108651518999949, 49.342820394000043 ], [ -123.110445805, 49.343307902000035 ], [ -123.111698486999913, 49.343611607000099 ], [ -123.11200041299999, 49.343734910000066 ], [ -123.112187597999977, 49.343933589000052 ], [ -123.112156132999957, 49.343947620000023 ], [ -123.111625612999916, 49.344184199000054 ], [ -123.111287606999952, 49.344594893000057 ], [ -123.111169419999953, 49.344988909000065 ], [ -123.111127507999953, 49.345330097000087 ], [ -123.109835590999964, 49.345340971000049 ], [ -123.109284636999959, 49.345345596000087 ], [ -123.108105091999946, 49.345355506000082 ], [ -123.10807501, 49.343919988000081 ], [ -123.107687604999938, 49.34371149600009 ], [ -123.107476000999938, 49.343640082000107 ], [ -123.10664250899994, 49.343654697000055 ], [ -123.106669718999939, 49.341391206000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220451727", "BldgCostT": "144539856", "sL_LossRatio": "0.745603553523651", "sL_AssetLoss": "2309820", "sL_BldgLoss": "1722210", "sL_StrLoss": "785520", "sL_NStrLoss": "936690", "sL_ContLoss": "587610", "geom_point": "0101000020E61000002944F25B15C75EC0D30E2C05ACAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.107532810999899, 49.339381594000066 ], [ -123.109204892999941, 49.339202099000104 ], [ -123.109672089999933, 49.33916861200003 ], [ -123.109881435999938, 49.339192726000128 ], [ -123.112370375999916, 49.33947939400008 ], [ -123.112743305999928, 49.339501104000071 ], [ -123.114486975999952, 49.339497201000057 ], [ -123.114441585999899, 49.339849910000055 ], [ -123.114259602999937, 49.340414005000113 ], [ -123.114050736999943, 49.341061309000082 ], [ -123.113447284999936, 49.342931490000076 ], [ -123.113241075999952, 49.343214209000081 ], [ -123.113019165999972, 49.343377258000075 ], [ -123.112942413, 49.343433699000094 ], [ -123.112387293999944, 49.343841615000031 ], [ -123.11225195699997, 49.343903945000122 ], [ -123.112187597999977, 49.343933589000052 ], [ -123.11200041299999, 49.343734910000066 ], [ -123.111698486999913, 49.343611607000099 ], [ -123.110445805, 49.343307902000035 ], [ -123.108651518999949, 49.342820394000043 ], [ -123.106998897, 49.341210903000103 ], [ -123.106234361999967, 49.340645213000116 ], [ -123.106217237999914, 49.340632529000104 ], [ -123.106508514999973, 49.340507596000066 ], [ -123.106684061999914, 49.34034621400005 ], [ -123.106988809999947, 49.340066102000016 ], [ -123.107138308999978, 49.33957189900012 ], [ -123.107076679, 49.339378967000087 ], [ -123.10715346799999, 49.339379404000056 ], [ -123.107468212999962, 49.339381213000117 ], [ -123.107532810999899, 49.339381594000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103061917", "BldgCostT": "70341667", "sL_LossRatio": "0.799556493983809", "sL_AssetLoss": "810812", "sL_BldgLoss": "648290", "sL_StrLoss": "344901", "sL_NStrLoss": "303389", "sL_ContLoss": "162522", "geom_point": "0101000020E61000006FAD712E2CC75EC05FDE3DBC3EAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.107480689999946, 49.339268507000085 ], [ -123.10745932699993, 49.33899420200003 ], [ -123.10754741, 49.338861402000113 ], [ -123.107681712999977, 49.338761397000027 ], [ -123.107787310999953, 49.338589510000098 ], [ -123.10780699899999, 49.338120807000124 ], [ -123.108088497000011, 49.337755493000088 ], [ -123.108252997999955, 49.337522991000121 ], [ -123.108265175999975, 49.337107293000088 ], [ -123.10841629299992, 49.336956395000044 ], [ -123.108813920999978, 49.336869799000077 ], [ -123.109067994999947, 49.336876585000091 ], [ -123.109360590999927, 49.336884403000042 ], [ -123.109902999000013, 49.336946585000057 ], [ -123.111567496999925, 49.337460299000028 ], [ -123.111939536999927, 49.336968294000123 ], [ -123.112150897999953, 49.336688794000018 ], [ -123.111691806999914, 49.336548603 ], [ -123.111737592999987, 49.335371789000085 ], [ -123.111760701999927, 49.334737404000073 ], [ -123.112756976999947, 49.334646984000045 ], [ -123.113035994999962, 49.334651743000087 ], [ -123.113004304999919, 49.335535295000028 ], [ -123.112971812999916, 49.336431499000106 ], [ -123.115626507999934, 49.336445624000113 ], [ -123.115242304999967, 49.337444109000025 ], [ -123.115100801999986, 49.337816768000032 ], [ -123.11613037099994, 49.338695348000087 ], [ -123.116211592999917, 49.338827204000125 ], [ -123.11622483, 49.338990588000023 ], [ -123.116173782999951, 49.339146837000044 ], [ -123.116070428999961, 49.339260255000077 ], [ -123.115829503999976, 49.339394318000096 ], [ -123.115398006999939, 49.339428686000105 ], [ -123.115295727999978, 49.339436817000113 ], [ -123.114486975999952, 49.339497201000057 ], [ -123.112743305999928, 49.339501104000071 ], [ -123.112370375999916, 49.33947939400008 ], [ -123.109881435999938, 49.339192726000128 ], [ -123.109672089999933, 49.33916861200003 ], [ -123.109204892999941, 49.339202099000104 ], [ -123.107532810999899, 49.339381594000066 ], [ -123.107480689999946, 49.339268507000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.765807962529274", "sL_AssetLoss": "8540", "sL_BldgLoss": "6540", "sL_StrLoss": "2970", "sL_NStrLoss": "3570", "sL_ContLoss": "2000", "geom_point": "0101000020E6100000CCE482D08DC75EC048433AFAE7AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11797590499998, 49.334929004000102 ], [ -123.1181473339999, 49.334671049000093 ], [ -123.118163943999917, 49.33551992400006 ], [ -123.117782908999942, 49.335509764000051 ], [ -123.117866890999963, 49.335351989000102 ], [ -123.11797590499998, 49.334929004000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108961250", "BldgCostT": "66785000", "sL_LossRatio": "0.673944642474392", "sL_AssetLoss": "1665573", "sL_BldgLoss": "1122504", "sL_StrLoss": "478244", "sL_NStrLoss": "644260", "sL_ContLoss": "543069", "geom_point": "0101000020E6100000959F64DD45C75EC05C4015F5D1AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115242304999967, 49.337444109000025 ], [ -123.115626507999934, 49.336445624000113 ], [ -123.112971812999916, 49.336431499000106 ], [ -123.113004304999919, 49.335535295000028 ], [ -123.113035994999962, 49.334651743000087 ], [ -123.112756976999947, 49.334646984000045 ], [ -123.111760701999927, 49.334737404000073 ], [ -123.110117310999939, 49.33472500199999 ], [ -123.110047608999949, 49.334673607000084 ], [ -123.109908538999946, 49.334671348000029 ], [ -123.10884900799999, 49.334654093000026 ], [ -123.107632609999911, 49.334634307000051 ], [ -123.107633587999914, 49.334111390000011 ], [ -123.107634205999958, 49.333771500000111 ], [ -123.107642152999958, 49.333581763000048 ], [ -123.10765916299998, 49.333177044000102 ], [ -123.107673480999949, 49.332836277000041 ], [ -123.107676738999942, 49.33275938100013 ], [ -123.107686211999962, 49.332592943000073 ], [ -123.110606085999933, 49.332602372000096 ], [ -123.11252352799994, 49.332608511000039 ], [ -123.112836269999974, 49.332609498000075 ], [ -123.112966503999985, 49.332609911000112 ], [ -123.115818281999935, 49.332614899000127 ], [ -123.116497001999917, 49.332611159000038 ], [ -123.117149032999961, 49.332607587000091 ], [ -123.117162923999942, 49.332607543000101 ], [ -123.117515514999965, 49.332608552000046 ], [ -123.117526777999942, 49.332608586000099 ], [ -123.117598010999984, 49.332742786000011 ], [ -123.118067696999944, 49.333147311000133 ], [ -123.118068003999966, 49.333696988000028 ], [ -123.117850700999924, 49.334191185000094 ], [ -123.117080791999925, 49.334911901000055 ], [ -123.116848099999984, 49.335964405000041 ], [ -123.116837496999921, 49.336656502000032 ], [ -123.116977405999975, 49.337483999000014 ], [ -123.116814602999938, 49.338968004000037 ], [ -123.116867494999951, 49.339313238000045 ], [ -123.116812537999948, 49.339315200000065 ], [ -123.116706355999895, 49.339335578000089 ], [ -123.115295727999978, 49.339436817000113 ], [ -123.115398006999939, 49.339428686000105 ], [ -123.115829503999976, 49.339394318000096 ], [ -123.116070428999961, 49.339260255000077 ], [ -123.116173782999951, 49.339146837000044 ], [ -123.11622483, 49.338990588000023 ], [ -123.116211592999917, 49.338827204000125 ], [ -123.11613037099994, 49.338695348000087 ], [ -123.115100801999986, 49.337816768000032 ], [ -123.115242304999967, 49.337444109000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "447731156", "BldgCostT": "278286519", "sL_LossRatio": "0.686553501422857", "sL_AssetLoss": "6030120", "sL_BldgLoss": "4140000", "sL_StrLoss": "1572500", "sL_NStrLoss": "2567500", "sL_ContLoss": "1890120", "geom_point": "0101000020E610000080AD5CB9A8C65EC06725CE06F0AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100791314999967, 49.336662108000077 ], [ -123.097899512000012, 49.334546289000052 ], [ -123.096862377999955, 49.333815895000058 ], [ -123.096771892999939, 49.333680201000085 ], [ -123.096548908999978, 49.333374312000146 ], [ -123.096070200999918, 49.333021909000131 ], [ -123.09581446, 49.332862225000035 ], [ -123.095602823999982, 49.332730098000091 ], [ -123.095452530999978, 49.332677050000029 ], [ -123.095329513999928, 49.332633607000076 ], [ -123.095230605999987, 49.33263191000006 ], [ -123.09426109899999, 49.332623810000015 ], [ -123.094077188999975, 49.332595515000015 ], [ -123.093918194999958, 49.332432686000068 ], [ -123.093923717999985, 49.332351214000063 ], [ -123.09393616700001, 49.332167453000089 ], [ -123.0952031099999, 49.332212248000133 ], [ -123.100998536999953, 49.332416976000033 ], [ -123.10163201499995, 49.332439330000106 ], [ -123.10222646899993, 49.332460296000079 ], [ -123.102527907999956, 49.332473200000081 ], [ -123.10469774699996, 49.332566153000066 ], [ -123.104747451999941, 49.33256689500012 ], [ -123.104780790999925, 49.332567378000114 ], [ -123.106189149999963, 49.332588073000089 ], [ -123.107509165999943, 49.332592376000058 ], [ -123.107686211999962, 49.332592943000073 ], [ -123.107676738999942, 49.33275938100013 ], [ -123.107673480999949, 49.332836277000041 ], [ -123.10765916299998, 49.333177044000102 ], [ -123.107642152999958, 49.333581763000048 ], [ -123.107634205999958, 49.333771500000111 ], [ -123.107633587999914, 49.334111390000011 ], [ -123.107632609999911, 49.334634307000051 ], [ -123.10884900799999, 49.334654093000026 ], [ -123.109908538999946, 49.334671348000029 ], [ -123.110047608999949, 49.334673607000084 ], [ -123.110117310999939, 49.33472500199999 ], [ -123.111760701999927, 49.334737404000073 ], [ -123.111737592999987, 49.335371789000085 ], [ -123.111691806999914, 49.336548603 ], [ -123.112150897999953, 49.336688794000018 ], [ -123.111939536999927, 49.336968294000123 ], [ -123.111567496999925, 49.337460299000028 ], [ -123.109902999000013, 49.336946585000057 ], [ -123.109360590999927, 49.336884403000042 ], [ -123.109067994999947, 49.336876585000091 ], [ -123.108813920999978, 49.336869799000077 ], [ -123.10841629299992, 49.336956395000044 ], [ -123.108265175999975, 49.337107293000088 ], [ -123.108252997999955, 49.337522991000121 ], [ -123.108088497000011, 49.337755493000088 ], [ -123.10780699899999, 49.338120807000124 ], [ -123.107787310999953, 49.338589510000098 ], [ -123.107681712999977, 49.338761397000027 ], [ -123.10754741, 49.338861402000113 ], [ -123.10745932699993, 49.33899420200003 ], [ -123.107480689999946, 49.339268507000085 ], [ -123.107532810999899, 49.339381594000066 ], [ -123.107468212999962, 49.339381213000117 ], [ -123.10715346799999, 49.339379404000056 ], [ -123.107076679, 49.339378967000087 ], [ -123.106807649999951, 49.339377427000031 ], [ -123.106630501999959, 49.339376388000048 ], [ -123.104454895999964, 49.339355900000029 ], [ -123.102981068999924, 49.339336360000075 ], [ -123.102782493999953, 49.339333730000106 ], [ -123.10186039499996, 49.339321480000045 ], [ -123.101861925999955, 49.338638006000082 ], [ -123.101555099999985, 49.338418106000077 ], [ -123.101005389999926, 49.338011592000043 ], [ -123.101901896999919, 49.337493391000095 ], [ -123.100791314999967, 49.336662108000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "293954540", "BldgCostT": "189397062", "sL_LossRatio": "0.692773211968824", "sL_AssetLoss": "5464530", "sL_BldgLoss": "3785680", "sL_StrLoss": "1393220", "sL_NStrLoss": "2392460", "sL_ContLoss": "1678850", "geom_point": "0101000020E61000005FB1755F44C75EC043E161770DAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1047208199999, 49.332108103000017 ], [ -123.104723278999941, 49.33182650700013 ], [ -123.107555985999966, 49.331850113000037 ], [ -123.110326809999918, 49.331874705000068 ], [ -123.110270473999947, 49.332230256000081 ], [ -123.113081214, 49.332115265 ], [ -123.113094200999953, 49.332062095000069 ], [ -123.11309610499994, 49.331899200000045 ], [ -123.113122601999976, 49.331099186000138 ], [ -123.113158215999988, 49.329976110000089 ], [ -123.114711805999917, 49.329992403000055 ], [ -123.11471631799999, 49.329411601000018 ], [ -123.114727191999947, 49.328420305000137 ], [ -123.114721706999944, 49.327888687000033 ], [ -123.113225001999936, 49.327865889000101 ], [ -123.112805905999934, 49.327859194000048 ], [ -123.11088411599998, 49.327130504000124 ], [ -123.10765539199997, 49.325830109000023 ], [ -123.107714683999959, 49.324726599000073 ], [ -123.107769706999932, 49.323845405000029 ], [ -123.11057380699998, 49.323878092000029 ], [ -123.110546050999957, 49.324769465000024 ], [ -123.110544654999913, 49.3248140030001 ], [ -123.110518903999917, 49.325641901000097 ], [ -123.11081542099997, 49.325694902000102 ], [ -123.110953736999946, 49.325696655000122 ], [ -123.113315691999972, 49.325726497000062 ], [ -123.113311179999968, 49.325910195000048 ], [ -123.114745012999933, 49.325925896000093 ], [ -123.116127208999899, 49.32593040299999 ], [ -123.117512204999969, 49.325934001000036 ], [ -123.118922382999983, 49.325931104000098 ], [ -123.118923919999986, 49.327079503000107 ], [ -123.11897919099998, 49.327229610000082 ], [ -123.119130798999933, 49.327335407000092 ], [ -123.118686695999941, 49.328017896000077 ], [ -123.118384412999958, 49.328461183000059 ], [ -123.118161931000017, 49.328787463000026 ], [ -123.118047856999937, 49.328954698000125 ], [ -123.117271161999952, 49.330094933000034 ], [ -123.11725883099993, 49.330387157000082 ], [ -123.117240505, 49.330820956000103 ], [ -123.117236328999979, 49.330919886000096 ], [ -123.11721342599995, 49.331396566000123 ], [ -123.117212982, 49.331405620000069 ], [ -123.117210497, 49.331502469000043 ], [ -123.117201334999919, 49.331859141000102 ], [ -123.117200397999923, 49.331895235000069 ], [ -123.117198845999923, 49.331943009000085 ], [ -123.117193274, 49.332113728000081 ], [ -123.117180828999921, 49.332497249000035 ], [ -123.117176303999884, 49.332524766000063 ], [ -123.117174496999908, 49.332536133000112 ], [ -123.117164380999924, 49.332598311000027 ], [ -123.117162923999942, 49.332607543000101 ], [ -123.117149032999961, 49.332607587000091 ], [ -123.116497001999917, 49.332611159000038 ], [ -123.115818281999935, 49.332614899000127 ], [ -123.112966503999985, 49.332609911000112 ], [ -123.112836269999974, 49.332609498000075 ], [ -123.11252352799994, 49.332608511000039 ], [ -123.110606085999933, 49.332602372000096 ], [ -123.107686211999962, 49.332592943000073 ], [ -123.107509165999943, 49.332592376000058 ], [ -123.106189149999963, 49.332588073000089 ], [ -123.104780790999925, 49.332567378000114 ], [ -123.104714465999947, 49.332454537000046 ], [ -123.104718798999926, 49.332339783000108 ], [ -123.104720677999921, 49.332126093000085 ], [ -123.1047208199999, 49.332108103000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133793751", "BldgCostT": "86060001", "sL_LossRatio": "0.719848080382205", "sL_AssetLoss": "1745660", "sL_BldgLoss": "1256610", "sL_StrLoss": "599850", "sL_NStrLoss": "656760", "sL_ContLoss": "489050", "geom_point": "0101000020E6100000B0698C7327C75EC01FC76A4E39AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.110270473999947, 49.332230256000081 ], [ -123.110326809999918, 49.331874705000068 ], [ -123.107555985999966, 49.331850113000037 ], [ -123.107563603999964, 49.331067588000046 ], [ -123.110341700999925, 49.33108340600004 ], [ -123.110360308999972, 49.329948187000078 ], [ -123.110378987, 49.328721991000059 ], [ -123.110405283999953, 49.328195324000042 ], [ -123.11040930899999, 49.328114629000069 ], [ -123.110423094999959, 49.327837814000134 ], [ -123.110335091999957, 49.327705805000029 ], [ -123.11088411599998, 49.327130504000124 ], [ -123.112805905999934, 49.327859194000048 ], [ -123.113225001999936, 49.327865889000101 ], [ -123.114721706999944, 49.327888687000033 ], [ -123.114727191999947, 49.328420305000137 ], [ -123.11471631799999, 49.329411601000018 ], [ -123.114711805999917, 49.329992403000055 ], [ -123.113158215999988, 49.329976110000089 ], [ -123.113122601999976, 49.331099186000138 ], [ -123.11309610499994, 49.331899200000045 ], [ -123.113094200999953, 49.332062095000069 ], [ -123.113081214, 49.332115265 ], [ -123.110270473999947, 49.332230256000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "246155791", "BldgCostT": "164180018", "sL_LossRatio": "0.77505621441265", "sL_AssetLoss": "2205840", "sL_BldgLoss": "1709650", "sL_StrLoss": "787740", "sL_NStrLoss": "921910", "sL_ContLoss": "496190", "geom_point": "0101000020E61000000D32D9AAEAC65EC0415EE6A613AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.107563603999964, 49.331067588000046 ], [ -123.107576202999979, 49.329919592000088 ], [ -123.104779112999935, 49.329878098000037 ], [ -123.10481401499996, 49.328658602000104 ], [ -123.104840219999943, 49.327646105000028 ], [ -123.107610184999956, 49.327655399000022 ], [ -123.107653805999945, 49.325965986000057 ], [ -123.10765539199997, 49.325830109000023 ], [ -123.11088411599998, 49.327130504000124 ], [ -123.110335091999957, 49.327705805000029 ], [ -123.110423094999959, 49.327837814000134 ], [ -123.11040930899999, 49.328114629000069 ], [ -123.110405283999953, 49.328195324000042 ], [ -123.110378987, 49.328721991000059 ], [ -123.110360308999972, 49.329948187000078 ], [ -123.110341700999925, 49.33108340600004 ], [ -123.107563603999964, 49.331067588000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112394017", "BldgCostT": "72160229", "sL_LossRatio": "0.672510878708887", "sL_AssetLoss": "4814450", "sL_BldgLoss": "3237770", "sL_StrLoss": "1208480", "sL_NStrLoss": "2029290", "sL_ContLoss": "1576680", "geom_point": "0101000020E61000002AE27C0376C65EC09B4DA16F62AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0952031099999, 49.332212248000133 ], [ -123.09393616700001, 49.332167453000089 ], [ -123.093922430999925, 49.332167468000065 ], [ -123.093414208999917, 49.332166467000029 ], [ -123.093372895999934, 49.332166376000067 ], [ -123.092478429999986, 49.332164596000027 ], [ -123.091597612, 49.332162851000142 ], [ -123.091620829999911, 49.331945757000035 ], [ -123.09151310499999, 49.331097581000066 ], [ -123.091511787999949, 49.330919569000081 ], [ -123.091434037999989, 49.330728969000091 ], [ -123.092374313999954, 49.330900948000114 ], [ -123.092754469999974, 49.33097641500013 ], [ -123.093262097999968, 49.331047800000128 ], [ -123.093982996999927, 49.331069898000109 ], [ -123.094991034999964, 49.331068025 ], [ -123.095264874999913, 49.331054100000081 ], [ -123.098106203999961, 49.330891331000082 ], [ -123.099543123999979, 49.330936629000028 ], [ -123.100366709999946, 49.330974483 ], [ -123.101464134999958, 49.331024844000076 ], [ -123.102044542999934, 49.33103598200011 ], [ -123.102100603999986, 49.330246426 ], [ -123.102218496999953, 49.32981253800007 ], [ -123.102278626999976, 49.328638565000055 ], [ -123.103024091999913, 49.328638577000092 ], [ -123.10481401499996, 49.328658602000104 ], [ -123.104779112999935, 49.329878098000037 ], [ -123.107576202999979, 49.329919592000088 ], [ -123.107563603999964, 49.331067588000046 ], [ -123.107555985999966, 49.331850113000037 ], [ -123.104723278999941, 49.33182650700013 ], [ -123.1047208199999, 49.332108103000017 ], [ -123.104720677999921, 49.332126093000085 ], [ -123.104718798999926, 49.332339783000108 ], [ -123.104714465999947, 49.332454537000046 ], [ -123.104780790999925, 49.332567378000114 ], [ -123.104747451999941, 49.33256689500012 ], [ -123.10469774699996, 49.332566153000066 ], [ -123.102527907999956, 49.332473200000081 ], [ -123.10222646899993, 49.332460296000079 ], [ -123.10163201499995, 49.332439330000106 ], [ -123.100998536999953, 49.332416976000033 ], [ -123.0952031099999, 49.332212248000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164337700", "BldgCostT": "101387213", "sL_LossRatio": "0.669497846538822", "sL_AssetLoss": "2493660", "sL_BldgLoss": "1669500", "sL_StrLoss": "662650", "sL_NStrLoss": "1006850", "sL_ContLoss": "824160", "geom_point": "0101000020E610000008D2CE6125C65EC07F14229EF4AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097977520999962, 49.336880194000116 ], [ -123.097662092999926, 49.336642911000091 ], [ -123.095874500999955, 49.336624710000123 ], [ -123.095389907999959, 49.33661944000005 ], [ -123.094907742999908, 49.336614195000081 ], [ -123.094751112999958, 49.33661250200003 ], [ -123.094535994999944, 49.336610187000105 ], [ -123.093855203999965, 49.336602865000081 ], [ -123.093079113999949, 49.336594499000029 ], [ -123.09233497, 49.336589056000079 ], [ -123.091839332999953, 49.336585440000114 ], [ -123.091054600999925, 49.336579698000094 ], [ -123.091039987, 49.336475454000059 ], [ -123.090928758999937, 49.335731188000089 ], [ -123.091373449999978, 49.335729502000092 ], [ -123.091454602999988, 49.333429966000082 ], [ -123.091468983999931, 49.333253029000076 ], [ -123.091539111999936, 49.33238640800004 ], [ -123.091597612, 49.332162851000142 ], [ -123.092478429999986, 49.332164596000027 ], [ -123.093372895999934, 49.332166376000067 ], [ -123.093414208999917, 49.332166467000029 ], [ -123.093922430999925, 49.332167468000065 ], [ -123.09393616700001, 49.332167453000089 ], [ -123.093923717999985, 49.332351214000063 ], [ -123.093918194999958, 49.332432686000068 ], [ -123.094077188999975, 49.332595515000015 ], [ -123.09426109899999, 49.332623810000015 ], [ -123.095230605999987, 49.33263191000006 ], [ -123.095329513999928, 49.332633607000076 ], [ -123.095452530999978, 49.332677050000029 ], [ -123.095602823999982, 49.332730098000091 ], [ -123.09581446, 49.332862225000035 ], [ -123.096070200999918, 49.333021909000131 ], [ -123.096548908999978, 49.333374312000146 ], [ -123.096771892999939, 49.333680201000085 ], [ -123.096862377999955, 49.333815895000058 ], [ -123.097899512000012, 49.334546289000052 ], [ -123.100791314999967, 49.336662108000077 ], [ -123.101901896999919, 49.337493391000095 ], [ -123.101005389999926, 49.338011592000043 ], [ -123.101555099999985, 49.338418106000077 ], [ -123.101861925999955, 49.338638006000082 ], [ -123.10186039499996, 49.339321480000045 ], [ -123.099128617999952, 49.33930590500011 ], [ -123.098762422999954, 49.33928619700005 ], [ -123.098750763999988, 49.339281168000092 ], [ -123.098611008999939, 49.339220903000069 ], [ -123.09837909499997, 49.339035410000086 ], [ -123.098103089999981, 49.338608308000083 ], [ -123.097983796, 49.338250190000117 ], [ -123.097950402999984, 49.337861215000061 ], [ -123.098098498999931, 49.337408507000092 ], [ -123.098148700999914, 49.33722251300005 ], [ -123.098089820999945, 49.337020989000038 ], [ -123.097977520999962, 49.336880194000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "265203130", "BldgCostT": "172100128", "sL_LossRatio": "0.706931990646872", "sL_AssetLoss": "5020780", "sL_BldgLoss": "3549350", "sL_StrLoss": "1458150", "sL_NStrLoss": "2091200", "sL_ContLoss": "1471430", "geom_point": "0101000020E610000003AB5E3CCBC75EC0BFA55A1324AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117869157000015, 49.359245313000045 ], [ -123.117938818999974, 49.357507613000095 ], [ -123.118460774000013, 49.35750708000004 ], [ -123.118624335999982, 49.357470363000111 ], [ -123.118835378999961, 49.357506694000058 ], [ -123.119192340999973, 49.357506327000053 ], [ -123.119192712, 49.357660046000049 ], [ -123.119400007999928, 49.357775964000041 ], [ -123.119606116999961, 49.357775751000091 ], [ -123.119606397999974, 49.357891374000083 ], [ -123.119827236999953, 49.358014863000022 ], [ -123.119921653999953, 49.358045277000066 ], [ -123.120433024999954, 49.35804474400009 ], [ -123.120432472999937, 49.357818489000081 ], [ -123.120431835999923, 49.357817963000109 ], [ -123.12023623799999, 49.357505246000059 ], [ -123.120018585999944, 49.35750547100006 ], [ -123.120017732999955, 49.357155902000045 ], [ -123.119951536999949, 49.357050063000081 ], [ -123.119933335999917, 49.3566671620001 ], [ -123.119857335999924, 49.356541262000121 ], [ -123.119887536999954, 49.356372463000092 ], [ -123.119818287999976, 49.356156420000055 ], [ -123.119602190999942, 49.356156644000059 ], [ -123.119595918999948, 49.353569908000082 ], [ -123.119370836999963, 49.353533862000106 ], [ -123.119115061999963, 49.353458628000062 ], [ -123.118769471999926, 49.353458984000049 ], [ -123.118766285999968, 49.352135435000015 ], [ -123.118763350999956, 49.352109730000102 ], [ -123.11810557299999, 49.352110404000058 ], [ -123.118106273, 49.351030995000038 ], [ -123.118749443999903, 49.3510303360001 ], [ -123.118763303999984, 49.350897470000085 ], [ -123.11876247099994, 49.350550737000098 ], [ -123.118749469999941, 49.350490632000103 ], [ -123.118106622999917, 49.350491290000022 ], [ -123.118107508999969, 49.349130610000053 ], [ -123.118107775999945, 49.34870423200006 ], [ -123.11795165699999, 49.347449415000078 ], [ -123.11807570799999, 49.344172759000088 ], [ -123.118030847999989, 49.342125947000106 ], [ -123.118216038999961, 49.342125757000069 ], [ -123.11820733499999, 49.342099763000093 ], [ -123.118248035999926, 49.341987562000071 ], [ -123.11832882499999, 49.341969307000078 ], [ -123.118327904999944, 49.341585937000104 ], [ -123.118740893999984, 49.341585514000023 ], [ -123.118740244999941, 49.341315663000138 ], [ -123.11915323, 49.34131523700011 ], [ -123.119144860999967, 49.337848522000122 ], [ -123.119212479999959, 49.337853577000082 ], [ -123.124034815999948, 49.337887302000084 ], [ -123.12668179699989, 49.337915353000085 ], [ -123.127032382999971, 49.337919060000047 ], [ -123.128481773999937, 49.337934399000027 ], [ -123.128624878999958, 49.337956203000061 ], [ -123.128907595999976, 49.338124015000112 ], [ -123.127799303999936, 49.338510699000039 ], [ -123.127281707999913, 49.338758094000035 ], [ -123.126804292999964, 49.33913451300004 ], [ -123.126660997999963, 49.339515292000087 ], [ -123.126649507999929, 49.339700497000088 ], [ -123.126719110999943, 49.339908603000019 ], [ -123.126318993999973, 49.339970909000087 ], [ -123.126023866999944, 49.34005487400001 ], [ -123.125618605999989, 49.34017021100005 ], [ -123.125272297, 49.340367275000041 ], [ -123.125192093999942, 49.340412889000106 ], [ -123.125142494999977, 49.340745692000041 ], [ -123.125187410999928, 49.340820694000143 ], [ -123.125519785999984, 49.341051095000033 ], [ -123.125810391999906, 49.341136306000124 ], [ -123.126537275999979, 49.341176299000033 ], [ -123.127291503999928, 49.341063084000012 ], [ -123.128193224999976, 49.340812404000097 ], [ -123.128496100999939, 49.340987909000077 ], [ -123.129145581999964, 49.34156538700006 ], [ -123.128324271999986, 49.341938006000049 ], [ -123.12805829399997, 49.342100303000045 ], [ -123.12707309299995, 49.343093288000077 ], [ -123.126866373999945, 49.343301552000092 ], [ -123.126820685999974, 49.343347496000042 ], [ -123.125956449999933, 49.34421668600001 ], [ -123.12538406199999, 49.344613105000093 ], [ -123.123796094999932, 49.345705557000031 ], [ -123.123042199999958, 49.346224208000059 ], [ -123.122247780999942, 49.34687130100005 ], [ -123.121949701999966, 49.347237995000071 ], [ -123.121910847999942, 49.347332252000058 ], [ -123.121828191999967, 49.347532885000092 ], [ -123.12136359499999, 49.348297701000043 ], [ -123.120966502999948, 49.349040105000064 ], [ -123.120779101, 49.349574603000086 ], [ -123.120746331999953, 49.349730162000078 ], [ -123.120594965999913, 49.35044850600007 ], [ -123.120538896999946, 49.350714705000065 ], [ -123.120501077999975, 49.350983775000024 ], [ -123.12047167899999, 49.351193066000114 ], [ -123.120353689999916, 49.352032698000102 ], [ -123.120252397999963, 49.35273161100011 ], [ -123.120193982999965, 49.353560397000059 ], [ -123.120283892999964, 49.35443820000004 ], [ -123.12069401699999, 49.356084159000062 ], [ -123.120719009999988, 49.356184398000082 ], [ -123.12085543499991, 49.356553416000104 ], [ -123.121275214999955, 49.357688807000052 ], [ -123.121648495999978, 49.358281482000038 ], [ -123.121799078999956, 49.358405192000056 ], [ -123.121981499999904, 49.358505606000058 ], [ -123.121706189999955, 49.358792694000066 ], [ -123.121593688999965, 49.358875320000081 ], [ -123.121099803, 49.359026106000051 ], [ -123.121034735999913, 49.359040303000072 ], [ -123.120600075999974, 49.359135195000086 ], [ -123.120172380999961, 49.359151790000077 ], [ -123.119888801999934, 49.359129798000048 ], [ -123.118882288999913, 49.358977804000034 ], [ -123.118643500999966, 49.359010207000104 ], [ -123.118305688999939, 49.359129095000107 ], [ -123.117869157000015, 49.359245313000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136687000", "BldgCostT": "86665000", "sL_LossRatio": "0.697252668512706", "sL_AssetLoss": "2163190", "sL_BldgLoss": "1508290", "sL_StrLoss": "655980", "sL_NStrLoss": "852310", "sL_ContLoss": "654900", "geom_point": "0101000020E61000009432F32E28C75EC0EFD9219BB7AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.106076773999945, 49.355943099000044 ], [ -123.106443880999933, 49.354940571000064 ], [ -123.106621203999907, 49.354456303000113 ], [ -123.106723260999928, 49.354151143000067 ], [ -123.106799447999919, 49.353923372000111 ], [ -123.10692929, 49.353535102000066 ], [ -123.107234004999938, 49.352623711000035 ], [ -123.107367112999938, 49.352257111000092 ], [ -123.107669215999962, 49.351386188000049 ], [ -123.107841074999939, 49.350838619000079 ], [ -123.107854805999978, 49.350794905000051 ], [ -123.108186197999913, 49.350006688000107 ], [ -123.108435687999958, 49.349647815000054 ], [ -123.109368489999937, 49.348749571000099 ], [ -123.110953028999944, 49.348678364000101 ], [ -123.111107152, 49.348562447000091 ], [ -123.111306809999945, 49.348412265000064 ], [ -123.11132292899994, 49.347160852000101 ], [ -123.111296408999976, 49.346637759000131 ], [ -123.111268433, 49.34650085100003 ], [ -123.111157463999973, 49.345957565000077 ], [ -123.111142859999958, 49.345886175000039 ], [ -123.11113111, 49.345828580000052 ], [ -123.11112771099998, 49.345811885000053 ], [ -123.111127507999953, 49.345330097000087 ], [ -123.111169419999953, 49.344988909000065 ], [ -123.111287606999952, 49.344594893000057 ], [ -123.111625612999916, 49.344184199000054 ], [ -123.112156132999957, 49.343947620000023 ], [ -123.112187597999977, 49.343933589000052 ], [ -123.11225195699997, 49.343903945000122 ], [ -123.112387293999944, 49.343841615000031 ], [ -123.112942413, 49.343433699000094 ], [ -123.113019165999972, 49.343377258000075 ], [ -123.113241075999952, 49.343214209000081 ], [ -123.113447284999936, 49.342931490000076 ], [ -123.114050736999943, 49.341061309000082 ], [ -123.114259602999937, 49.340414005000113 ], [ -123.114441585999899, 49.339849910000055 ], [ -123.114486975999952, 49.339497201000057 ], [ -123.115295727999978, 49.339436817000113 ], [ -123.116706355999895, 49.339335578000089 ], [ -123.116812537999948, 49.339315200000065 ], [ -123.116867494999951, 49.339313238000045 ], [ -123.116941379999972, 49.3397954940001 ], [ -123.116927190999959, 49.339968248000098 ], [ -123.116672120999951, 49.339968505000051 ], [ -123.116673397999961, 49.34050820900007 ], [ -123.116434175999984, 49.340508451000076 ], [ -123.116452835999965, 49.340919163000045 ], [ -123.116261679999951, 49.341044545000095 ], [ -123.116261688999927, 49.341048329000046 ], [ -123.116255900999974, 49.341048336000014 ], [ -123.115849330999964, 49.341315009 ], [ -123.115849338999951, 49.341318597000061 ], [ -123.115843852999959, 49.341318601000069 ], [ -123.11543697599997, 49.341585471000094 ], [ -123.115436982999952, 49.34158886200003 ], [ -123.115431797999975, 49.341588866000095 ], [ -123.115024615999971, 49.341855932000037 ], [ -123.115024674999972, 49.341881123000029 ], [ -123.115004897999967, 49.341893386000059 ], [ -123.11490021699997, 49.342129102000101 ], [ -123.1148182699999, 49.342129183000083 ], [ -123.114777536999952, 49.342184262000103 ], [ -123.114626535999903, 49.342649263000119 ], [ -123.114613479999974, 49.342655368000052 ], [ -123.114613512999981, 49.342669090000079 ], [ -123.114584074999954, 49.342669120000089 ], [ -123.114200927999917, 49.342848298000042 ], [ -123.114201139999977, 49.342939351000041 ], [ -123.114005807999959, 49.342939544000046 ], [ -123.113788372999949, 49.343041226000032 ], [ -123.113788760999967, 49.343209610000038 ], [ -123.113427534999971, 49.343209966000103 ], [ -123.113375812999919, 49.343234152000036 ], [ -123.113376378999973, 49.343479869000099 ], [ -123.112963373999932, 49.343480273000083 ], [ -123.112963967999946, 49.343739895000034 ], [ -123.113607986999966, 49.343757092 ], [ -123.11360645799999, 49.343781614000086 ], [ -123.113069398, 49.344001203000047 ], [ -123.11277979, 49.344603612000171 ], [ -123.112809580000018, 49.345124891000097 ], [ -123.113751784999977, 49.345566131000034 ], [ -123.113709795999981, 49.346239732000065 ], [ -123.113679508999965, 49.346284184000076 ], [ -123.113702084999957, 49.346363429000071 ], [ -123.113696816999934, 49.346447929000114 ], [ -123.113726148999959, 49.346447901000019 ], [ -123.113748882999985, 49.346527696000109 ], [ -123.114210240999967, 49.346872380000057 ], [ -123.114210506999939, 49.346987127000077 ], [ -123.114363632, 49.346986976000089 ], [ -123.114623993999913, 49.347181488000075 ], [ -123.11462416799999, 49.347256570000113 ], [ -123.114757024999975, 49.347256438000102 ], [ -123.115037466999979, 49.347368204000084 ], [ -123.115040349999944, 49.348605418000048 ], [ -123.114627303999967, 49.348605829000107 ], [ -123.11462918499997, 49.34941538200011 ], [ -123.114216130000017, 49.349415791000048 ], [ -123.114216755, 49.349685643000051 ], [ -123.11380369799997, 49.349686051000113 ], [ -123.113803922999921, 49.3497843950001 ], [ -123.11513310499997, 49.349819867000079 ], [ -123.1150717, 49.3508052930001 ], [ -123.115025002999943, 49.350996903000052 ], [ -123.115048909999956, 49.351171012000044 ], [ -123.114908983999925, 49.353416372 ], [ -123.114671483999942, 49.353410035000131 ], [ -123.114652489999941, 49.35371477800004 ], [ -123.112818689999983, 49.353665831000072 ], [ -123.111606131999935, 49.353633448000039 ], [ -123.110223449999978, 49.353596507000113 ], [ -123.109155825999892, 49.353567970000036 ], [ -123.109212595999935, 49.352658852000026 ], [ -123.109025668999919, 49.352659029000023 ], [ -123.108930037000022, 49.352697562000095 ], [ -123.108440794999964, 49.352800479000067 ], [ -123.108441077999913, 49.352929430000138 ], [ -123.108027994999986, 49.352929818000085 ], [ -123.108028584999943, 49.353199669000148 ], [ -123.108441670999966, 49.35319928200007 ], [ -123.108443451999946, 49.35400883700008 ], [ -123.108030358999912, 49.354009223000048 ], [ -123.108030948999939, 49.354279075000058 ], [ -123.107617853999969, 49.35427945900009 ], [ -123.107618442999936, 49.354549311000049 ], [ -123.107205344999926, 49.35454969600007 ], [ -123.107206624999932, 49.355138467000117 ], [ -123.108660576999938, 49.355177352000069 ], [ -123.108600422999942, 49.356140435000093 ], [ -123.108501554999947, 49.356148373000075 ], [ -123.1082683489999, 49.356164595000074 ], [ -123.10695969199999, 49.356293830000034 ], [ -123.106134821999945, 49.35618149900003 ], [ -123.106076773999945, 49.355943099000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6145417", "BldgCostT": "3741667", "sL_LossRatio": "0.671750201764395", "sL_AssetLoss": "359330", "sL_BldgLoss": "241380", "sL_StrLoss": "63680", "sL_NStrLoss": "177700", "sL_ContLoss": "117950", "geom_point": "0101000020E61000001843B5988AC75EC0CA2C291475AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117936198999985, 49.350491464000079 ], [ -123.117934263999985, 49.349681911000111 ], [ -123.117521206999953, 49.349682331000089 ], [ -123.117512851999948, 49.346174261000037 ], [ -123.11792587799999, 49.346173840000056 ], [ -123.117916204999958, 49.342126063000151 ], [ -123.118030847999989, 49.342125947000106 ], [ -123.11807570799999, 49.344172759000088 ], [ -123.11795165699999, 49.347449415000078 ], [ -123.118107775999945, 49.34870423200006 ], [ -123.118107508999969, 49.349130610000053 ], [ -123.118106622999917, 49.350491290000022 ], [ -123.117936198999985, 49.350491464000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.844229675952246", "sL_AssetLoss": "3518", "sL_BldgLoss": "2970", "sL_StrLoss": "1740", "sL_NStrLoss": "1230", "sL_ContLoss": "548", "geom_point": "0101000020E61000008F130DEF45C75EC0CD8646C11DAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.113620097999899, 49.344197707000028 ], [ -123.113842897999945, 49.344104400000056 ], [ -123.113775567999937, 49.345184593000077 ], [ -123.11351188499999, 49.345062208000044 ], [ -123.113413908999945, 49.344899910000059 ], [ -123.113428180999946, 49.344566597000096 ], [ -123.113620097999899, 49.344197707000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245043821", "BldgCostT": "160178620", "sL_LossRatio": "0.738826633959599", "sL_AssetLoss": "2690550", "sL_BldgLoss": "1987850", "sL_StrLoss": "869760", "sL_NStrLoss": "1118090", "sL_ContLoss": "702700", "geom_point": "0101000020E610000002C801A2BDC65EC0AFBE1D558BAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103047976999946, 49.347547398000096 ], [ -123.101436600999989, 49.346686385000027 ], [ -123.100948701999982, 49.346455392000031 ], [ -123.100388116999923, 49.346507899000095 ], [ -123.100366120999979, 49.346505899000043 ], [ -123.100274492, 49.346497596000084 ], [ -123.10010517799995, 49.346410194000093 ], [ -123.100042686999956, 49.346309509000079 ], [ -123.1002954, 49.346053282000078 ], [ -123.100288593999977, 49.345942302000033 ], [ -123.100937400999925, 49.345471610000054 ], [ -123.101569396999963, 49.345125828000114 ], [ -123.101960621999979, 49.344911802000034 ], [ -123.102690985999971, 49.34471970700006 ], [ -123.103220987999961, 49.344497089000114 ], [ -123.103530907999982, 49.344338709000063 ], [ -123.103825198999971, 49.344034096000073 ], [ -123.104938317999938, 49.345333363000108 ], [ -123.105313016999929, 49.345770701000106 ], [ -123.105456649999937, 49.345893909000026 ], [ -123.105600316999983, 49.34601710400004 ], [ -123.106296215999947, 49.346619342000068 ], [ -123.106731649, 49.34700745700011 ], [ -123.106998557999958, 49.347140682000081 ], [ -123.107346386999936, 49.347190522000041 ], [ -123.110014937999949, 49.347169128000104 ], [ -123.110538181999985, 49.347165092000125 ], [ -123.11132292899994, 49.347160852000101 ], [ -123.111306809999945, 49.348412265000064 ], [ -123.111107152, 49.348562447000091 ], [ -123.110953028999944, 49.348678364000101 ], [ -123.109368489999937, 49.348749571000099 ], [ -123.108435687999958, 49.349647815000054 ], [ -123.108186197999913, 49.350006688000107 ], [ -123.107854805999978, 49.350794905000051 ], [ -123.106434496999967, 49.350793009000064 ], [ -123.103789300999964, 49.350812190000063 ], [ -123.102881205999935, 49.350818948000033 ], [ -123.101631509999891, 49.350828206000138 ], [ -123.101626513999946, 49.349412293000036 ], [ -123.101627315999963, 49.349026891000079 ], [ -123.103162390999955, 49.349019398000102 ], [ -123.104431886999947, 49.349010098000086 ], [ -123.103863803999928, 49.348256409000079 ], [ -123.103062215999969, 49.34791520700005 ], [ -123.103047976999946, 49.347547398000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128982334", "BldgCostT": "85983334", "sL_LossRatio": "0.737280991678432", "sL_AssetLoss": "1736692", "sL_BldgLoss": "1280430", "sL_StrLoss": "585930", "sL_NStrLoss": "694500", "sL_ContLoss": "456262", "geom_point": "0101000020E6100000A1C3096D75C65EC0DA5D14FBD3AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099133388999988, 49.351959573000144 ], [ -123.099054509999988, 49.351273191000089 ], [ -123.098988651999917, 49.351071724000128 ], [ -123.098804516999962, 49.350508402000052 ], [ -123.09863558699999, 49.350150558000067 ], [ -123.098099915999939, 49.349015803000015 ], [ -123.097572186999969, 49.348134810000069 ], [ -123.097491693999984, 49.348000391000063 ], [ -123.097325885999979, 49.347514692000118 ], [ -123.097327337999957, 49.347435338000032 ], [ -123.097343380999945, 49.346558241000032 ], [ -123.097350402999922, 49.346174505000093 ], [ -123.09755708299997, 49.345895401000107 ], [ -123.098025685999971, 49.345720265000111 ], [ -123.098493107999985, 49.345545596000058 ], [ -123.098547910999926, 49.345525109000036 ], [ -123.098563295999895, 49.345521105000053 ], [ -123.09927628, 49.345335698000049 ], [ -123.099908208000031, 49.345313051000048 ], [ -123.100032694999953, 49.345308591000027 ], [ -123.100790702000012, 49.345163302000067 ], [ -123.101354194999942, 49.344667714000074 ], [ -123.101449872999979, 49.344644582000079 ], [ -123.102035540999935, 49.344502959000046 ], [ -123.101960621999979, 49.344911802000034 ], [ -123.101569396999963, 49.345125828000114 ], [ -123.100937400999925, 49.345471610000054 ], [ -123.100288593999977, 49.345942302000033 ], [ -123.1002954, 49.346053282000078 ], [ -123.100042686999956, 49.346309509000079 ], [ -123.10010517799995, 49.346410194000093 ], [ -123.100274492, 49.346497596000084 ], [ -123.100366120999979, 49.346505899000043 ], [ -123.100388116999923, 49.346507899000095 ], [ -123.100948701999982, 49.346455392000031 ], [ -123.101436600999989, 49.346686385000027 ], [ -123.103047976999946, 49.347547398000096 ], [ -123.103062215999969, 49.34791520700005 ], [ -123.103863803999928, 49.348256409000079 ], [ -123.104431886999947, 49.349010098000086 ], [ -123.103162390999955, 49.349019398000102 ], [ -123.101627315999963, 49.349026891000079 ], [ -123.101626513999946, 49.349412293000036 ], [ -123.101631509999891, 49.350828206000138 ], [ -123.102881205999935, 49.350818948000033 ], [ -123.103789300999964, 49.350812190000063 ], [ -123.103790388, 49.351739898000048 ], [ -123.105197919999966, 49.351727987000103 ], [ -123.105189677999974, 49.352628395000096 ], [ -123.104391311999962, 49.352629606000079 ], [ -123.10434288099998, 49.354415996000121 ], [ -123.102964587999949, 49.354423191000066 ], [ -123.10202258899993, 49.354430411000052 ], [ -123.100472806999932, 49.354539308 ], [ -123.101093788999918, 49.354953992000034 ], [ -123.100821603, 49.355914896000087 ], [ -123.100836012999963, 49.356211591000083 ], [ -123.100162698999895, 49.35621509500006 ], [ -123.099988919999973, 49.356216226000079 ], [ -123.099862856999934, 49.356217055000045 ], [ -123.099818732999893, 49.356217327000117 ], [ -123.100013107999985, 49.355742398000082 ], [ -123.100003577999956, 49.355417397000089 ], [ -123.099978564999958, 49.3545640500001 ], [ -123.099968016, 49.354204197000065 ], [ -123.099968681999925, 49.3537371010001 ], [ -123.099622711999942, 49.353395291000041 ], [ -123.099594392999947, 49.352963701000078 ], [ -123.099474176999962, 49.352763805000123 ], [ -123.099167116999922, 49.352253098000077 ], [ -123.099133388999988, 49.351959573000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120503053", "BldgCostT": "76068746", "sL_LossRatio": "0.681290862950508", "sL_AssetLoss": "1599860", "sL_BldgLoss": "1089970", "sL_StrLoss": "437670", "sL_NStrLoss": "652300", "sL_ContLoss": "509890", "geom_point": "0101000020E61000007493CD2CB4C65EC051FC732C4AAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105189677999974, 49.352628395000096 ], [ -123.105197919999966, 49.351727987000103 ], [ -123.103790388, 49.351739898000048 ], [ -123.103789300999964, 49.350812190000063 ], [ -123.106434496999967, 49.350793009000064 ], [ -123.107854805999978, 49.350794905000051 ], [ -123.107841074999939, 49.350838619000079 ], [ -123.107669215999962, 49.351386188000049 ], [ -123.107367112999938, 49.352257111000092 ], [ -123.107234004999938, 49.352623711000035 ], [ -123.10692929, 49.353535102000066 ], [ -123.106799447999919, 49.353923372000111 ], [ -123.106723260999928, 49.354151143000067 ], [ -123.106621203999907, 49.354456303000113 ], [ -123.106443880999933, 49.354940571000064 ], [ -123.106076773999945, 49.355943099000044 ], [ -123.106134821999945, 49.35618149900003 ], [ -123.104332987999925, 49.356203490000077 ], [ -123.102880410999944, 49.35620779300006 ], [ -123.100836012999963, 49.356211591000083 ], [ -123.100821603, 49.355914896000087 ], [ -123.101093788999918, 49.354953992000034 ], [ -123.100472806999932, 49.354539308 ], [ -123.10202258899993, 49.354430411000052 ], [ -123.102964587999949, 49.354423191000066 ], [ -123.10434288099998, 49.354415996000121 ], [ -123.104391311999962, 49.352629606000079 ], [ -123.105189677999974, 49.352628395000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190850085", "BldgCostT": "124454291", "sL_LossRatio": "0.710781720680696", "sL_AssetLoss": "2432979", "sL_BldgLoss": "1729317", "sL_StrLoss": "793277", "sL_NStrLoss": "936040", "sL_ContLoss": "703662", "geom_point": "0101000020E61000005D64969882C65EC04F3C35D1C6AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104332987999925, 49.356203490000077 ], [ -123.106134821999945, 49.35618149900003 ], [ -123.106457009999986, 49.357083502000066 ], [ -123.10680701499993, 49.357980898000058 ], [ -123.106866804999967, 49.35816889400008 ], [ -123.10686781699998, 49.358187095000069 ], [ -123.106878595999916, 49.358377306000087 ], [ -123.106572805999974, 49.358798690000128 ], [ -123.106311683999976, 49.359011395000046 ], [ -123.105955721999976, 49.359012610000043 ], [ -123.102251106999958, 49.35902503799999 ], [ -123.099885704999977, 49.359032897000084 ], [ -123.098188685999958, 49.359038660000067 ], [ -123.096934902999976, 49.359042897000087 ], [ -123.096872904999913, 49.358056006 ], [ -123.096854808000018, 49.357137800000011 ], [ -123.096846984999942, 49.356231499000053 ], [ -123.099054090999942, 49.356222297000109 ], [ -123.099818732999893, 49.356217327000117 ], [ -123.099862856999934, 49.356217055000045 ], [ -123.099988919999973, 49.356216226000079 ], [ -123.100162698999895, 49.35621509500006 ], [ -123.100836012999963, 49.356211591000083 ], [ -123.102880410999944, 49.35620779300006 ], [ -123.104332987999925, 49.356203490000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "382969509", "BldgCostT": "262200785", "sL_LossRatio": "0.779013886819053", "sL_AssetLoss": "3529534", "sL_BldgLoss": "2749556", "sL_StrLoss": "1161006", "sL_NStrLoss": "1588550", "sL_ContLoss": "779978", "geom_point": "0101000020E6100000CD6F353E15C65EC04E95DEED30AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093360186000012, 49.354871601000113 ], [ -123.093501986999968, 49.354191803000099 ], [ -123.093705179999972, 49.353652400000037 ], [ -123.093692614999938, 49.353589902000046 ], [ -123.09367681099998, 49.353578123000069 ], [ -123.093642605999946, 49.353552584000035 ], [ -123.093391792999938, 49.353535893000071 ], [ -123.092907383999915, 49.353577790000031 ], [ -123.092582212999943, 49.352947604000057 ], [ -123.09256928799999, 49.352714908000102 ], [ -123.091557708999943, 49.35271290900004 ], [ -123.090582323999968, 49.352704706000111 ], [ -123.090581619999966, 49.352650697000044 ], [ -123.090584891999967, 49.351569101000095 ], [ -123.090586319999886, 49.350890100000122 ], [ -123.090597501, 49.349725795000019 ], [ -123.09174471199999, 49.349736884000059 ], [ -123.092986896999932, 49.349746001000064 ], [ -123.095165292, 49.349752307000124 ], [ -123.09517868599994, 49.350087694000123 ], [ -123.096385818999934, 49.350526299000094 ], [ -123.09726650599994, 49.351670301000091 ], [ -123.098177542999935, 49.35268017700006 ], [ -123.098212368999924, 49.352718798000083 ], [ -123.098040495999939, 49.353595916000074 ], [ -123.098207579999936, 49.354399302000061 ], [ -123.098549307999974, 49.354262497000093 ], [ -123.098800906999912, 49.354266594000173 ], [ -123.098916840999948, 49.354363058000089 ], [ -123.09898467499994, 49.354419469000042 ], [ -123.099061598999953, 49.354483441000049 ], [ -123.0991017959999, 49.354516891000067 ], [ -123.099440577999971, 49.354535895000083 ], [ -123.099825090999943, 49.354542572000064 ], [ -123.099978564999958, 49.3545640500001 ], [ -123.100003577999956, 49.355417397000089 ], [ -123.100013107999985, 49.355742398000082 ], [ -123.099818732999893, 49.356217327000117 ], [ -123.099054090999942, 49.356222297000109 ], [ -123.096846984999942, 49.356231499000053 ], [ -123.094795299999973, 49.356240399000058 ], [ -123.093757908999976, 49.356254787000076 ], [ -123.093507301999978, 49.35625528500006 ], [ -123.093087021999949, 49.355385702000035 ], [ -123.093360186000012, 49.354871601000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110567999", "BldgCostT": "72569999", "sL_LossRatio": "0.747008883878952", "sL_AssetLoss": "1268590", "sL_BldgLoss": "947648", "sL_StrLoss": "459048", "sL_NStrLoss": "488600", "sL_ContLoss": "320942", "geom_point": "0101000020E6100000FB3351BEFFC55EC09A869796C7AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094795299999973, 49.356240399000058 ], [ -123.096846984999942, 49.356231499000053 ], [ -123.096854808000018, 49.357137800000011 ], [ -123.096872904999913, 49.358056006 ], [ -123.096934902999976, 49.359042897000087 ], [ -123.095782498999966, 49.359045319000117 ], [ -123.090568669999953, 49.359053796000076 ], [ -123.090587695999929, 49.358095108000043 ], [ -123.090582200999947, 49.357175379000061 ], [ -123.090583908999974, 49.356271281000055 ], [ -123.091675804, 49.35626639600008 ], [ -123.093507301999978, 49.35625528500006 ], [ -123.093757908999976, 49.356254787000076 ], [ -123.094795299999973, 49.356240399000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185306410", "BldgCostT": "119095742", "sL_LossRatio": "0.706752291334817", "sL_AssetLoss": "2781130", "sL_BldgLoss": "1965570", "sL_StrLoss": "830750", "sL_NStrLoss": "1134820", "sL_ContLoss": "815560", "geom_point": "0101000020E6100000F33C2C92BEC55EC0BBB0A86745AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085336121999902, 49.353698202000075 ], [ -123.086004596999913, 49.353049788000114 ], [ -123.086723221999961, 49.352436007000115 ], [ -123.087497201999952, 49.351837189000044 ], [ -123.087632896999978, 49.351714789000013 ], [ -123.087687871999947, 49.351563197000061 ], [ -123.08767319699993, 49.351403315000098 ], [ -123.087425301999957, 49.350858990000113 ], [ -123.08744018499999, 49.350796305000131 ], [ -123.087547193999967, 49.350495697000071 ], [ -123.08877581899992, 49.350503601000106 ], [ -123.09001489399999, 49.35089179000002 ], [ -123.090586319999886, 49.350890100000122 ], [ -123.090584891999967, 49.351569101000095 ], [ -123.090581619999966, 49.352650697000044 ], [ -123.090582323999968, 49.352704706000111 ], [ -123.091557708999943, 49.35271290900004 ], [ -123.09256928799999, 49.352714908000102 ], [ -123.092582212999943, 49.352947604000057 ], [ -123.092907383999915, 49.353577790000031 ], [ -123.093391792999938, 49.353535893000071 ], [ -123.093642605999946, 49.353552584000035 ], [ -123.09367681099998, 49.353578123000069 ], [ -123.093692614999938, 49.353589902000046 ], [ -123.093705179999972, 49.353652400000037 ], [ -123.093501986999968, 49.354191803000099 ], [ -123.093360186000012, 49.354871601000113 ], [ -123.093087021999949, 49.355385702000035 ], [ -123.093507301999978, 49.35625528500006 ], [ -123.091675804, 49.35626639600008 ], [ -123.090583908999974, 49.356271281000055 ], [ -123.090120605, 49.356261506000116 ], [ -123.089796776999975, 49.356157290000041 ], [ -123.087917096999959, 49.35511870900006 ], [ -123.08580279, 49.353958508000076 ], [ -123.085336121999902, 49.353698202000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169406667", "BldgCostT": "116096667", "sL_LossRatio": "0.75959413937989", "sL_AssetLoss": "2208640", "sL_BldgLoss": "1677670", "sL_StrLoss": "779790", "sL_NStrLoss": "897880", "sL_ContLoss": "530970", "geom_point": "0101000020E6100000FF0DDAAB8FC55EC0F9577F19C6AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090375761999923, 49.360680516000066 ], [ -123.089942589, 49.360473397000078 ], [ -123.090035015999931, 49.361126593000066 ], [ -123.08969620100001, 49.361570185000097 ], [ -123.088802388, 49.362119990000053 ], [ -123.088801490999955, 49.362121146000035 ], [ -123.088749070999967, 49.362121187000128 ], [ -123.087801770999974, 49.36131675900004 ], [ -123.087800321999978, 49.360502800000084 ], [ -123.087387174999918, 49.360503114000068 ], [ -123.087386217999921, 49.359963411000088 ], [ -123.086973073999943, 49.359963723000128 ], [ -123.086972597999988, 49.359693871000069 ], [ -123.086559456999922, 49.359694182000034 ], [ -123.086558035999971, 49.358884628000119 ], [ -123.085318635999982, 49.358885549000014 ], [ -123.085318167999944, 49.358615699000033 ], [ -123.084905036999913, 49.358616002000126 ], [ -123.084904572999932, 49.358346151 ], [ -123.084078312999964, 49.35834675400011 ], [ -123.084077851999936, 49.358076904000043 ], [ -123.08366472499992, 49.358077203000057 ], [ -123.083664266999946, 49.357807352000101 ], [ -123.083631004999972, 49.357807377000078 ], [ -123.0835989939999, 49.35831544100003 ], [ -123.083375785999962, 49.358179366000044 ], [ -123.081169262999964, 49.357098336000099 ], [ -123.080502611, 49.356771709000043 ], [ -123.080016546999929, 49.356273082000072 ], [ -123.080129685999921, 49.356070991000138 ], [ -123.080356443999975, 49.356077114000072 ], [ -123.080356189, 49.355920737000176 ], [ -123.080213748999967, 49.355920835000113 ], [ -123.080239520999953, 49.355874801 ], [ -123.08070788699996, 49.355362104000044 ], [ -123.081244386, 49.355037405000061 ], [ -123.081420977, 49.354963221000055 ], [ -123.081935857999966, 49.354746980000066 ], [ -123.082895677999915, 49.354343797000055 ], [ -123.082953325999966, 49.354286981000079 ], [ -123.084186095999925, 49.353071289000084 ], [ -123.084421727999967, 49.353199735000054 ], [ -123.084616660999984, 49.353305989000084 ], [ -123.084707348999942, 49.353355443000069 ], [ -123.085336121999902, 49.353698202000075 ], [ -123.08580279, 49.353958508000076 ], [ -123.087917096999959, 49.35511870900006 ], [ -123.089796776999975, 49.356157290000041 ], [ -123.090120605, 49.356261506000116 ], [ -123.090583908999974, 49.356271281000055 ], [ -123.090582200999947, 49.357175379000061 ], [ -123.090587695999929, 49.358095108000043 ], [ -123.090568669999953, 49.359053796000076 ], [ -123.090588099999962, 49.359620785000068 ], [ -123.090715384999939, 49.359764696000113 ], [ -123.090917184999981, 49.359905195000124 ], [ -123.09116964899999, 49.360031855000031 ], [ -123.091179063, 49.360036590000028 ], [ -123.092064897999947, 49.360481001000061 ], [ -123.093745984999927, 49.361158393000046 ], [ -123.094194409999929, 49.361427097000096 ], [ -123.09519079899998, 49.362222101000043 ], [ -123.09476786799999, 49.362489997000068 ], [ -123.094479090999954, 49.362747890000051 ], [ -123.094282482999986, 49.36287590400007 ], [ -123.094079990999944, 49.362921812000124 ], [ -123.093818979999952, 49.362912102000095 ], [ -123.09358328399999, 49.362784192000092 ], [ -123.093563880999952, 49.362765997000089 ], [ -123.093133503999979, 49.362362311000034 ], [ -123.092559373, 49.361908210000088 ], [ -123.092202324999946, 49.361625798000063 ], [ -123.090990388999927, 49.360974391000035 ], [ -123.090375761999923, 49.360680516000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97998750", "BldgCostT": "66825000", "sL_LossRatio": "0.747938573866116", "sL_AssetLoss": "1260050", "sL_BldgLoss": "942440", "sL_StrLoss": "450930", "sL_NStrLoss": "491510", "sL_ContLoss": "317610", "geom_point": "0101000020E6100000A21BD45DDDC55EC0B387A4B39FAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09001489399999, 49.35089179000002 ], [ -123.08877581899992, 49.350503601000106 ], [ -123.087547193999967, 49.350495697000071 ], [ -123.087851390999987, 49.34970860400005 ], [ -123.088135885999975, 49.349013793000054 ], [ -123.088108000999966, 49.348254715000067 ], [ -123.089051904999934, 49.347689306000063 ], [ -123.089226001999947, 49.347503086000081 ], [ -123.089549795999972, 49.346993 ], [ -123.091388124999966, 49.346978498000034 ], [ -123.092861399999933, 49.346967699000061 ], [ -123.095443102999965, 49.346948010000148 ], [ -123.095753488999975, 49.347615600000047 ], [ -123.095703277000013, 49.347801507000042 ], [ -123.095355409999968, 49.348148003000077 ], [ -123.095353978999967, 49.348324397000063 ], [ -123.095350813999957, 49.348989004000025 ], [ -123.095357983999918, 49.349577309000097 ], [ -123.095165292, 49.349752307000124 ], [ -123.092986896999932, 49.349746001000064 ], [ -123.09174471199999, 49.349736884000059 ], [ -123.090597501, 49.349725795000019 ], [ -123.090586319999886, 49.350890100000122 ], [ -123.09001489399999, 49.35089179000002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "365270061", "BldgCostT": "234363715", "sL_LossRatio": "0.741729692281046", "sL_AssetLoss": "3464200", "sL_BldgLoss": "2569500", "sL_StrLoss": "1107070", "sL_NStrLoss": "1462430", "sL_ContLoss": "894700", "geom_point": "0101000020E6100000C952D3AA6DC55EC036D93F4F83AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079639886999956, 49.350081606000117 ], [ -123.079626212000022, 49.349315692000026 ], [ -123.080024989999984, 49.349299395000095 ], [ -123.080932105999977, 49.349778687000054 ], [ -123.081223325999986, 49.349897407000107 ], [ -123.081732285999962, 49.349967008000114 ], [ -123.083186615999963, 49.349866579000057 ], [ -123.083465909999944, 49.349081602000084 ], [ -123.083528799, 49.348409600000124 ], [ -123.084014278000012, 49.347694093000023 ], [ -123.083170818999974, 49.347450710000011 ], [ -123.082336690999966, 49.347081389000039 ], [ -123.081945494999914, 49.346845711000064 ], [ -123.081468795999939, 49.346482504000036 ], [ -123.081278488999942, 49.346182790000107 ], [ -123.082329785999946, 49.345879805000017 ], [ -123.083398704999979, 49.345580800000079 ], [ -123.08385118699999, 49.345389388000051 ], [ -123.084066914999966, 49.345220498000096 ], [ -123.08412420399999, 49.345140995000051 ], [ -123.08459929199995, 49.344480089000037 ], [ -123.085032481999988, 49.343829810000088 ], [ -123.085857994999955, 49.342674005000035 ], [ -123.086096712999961, 49.342336394000021 ], [ -123.086380619999886, 49.341936100000083 ], [ -123.087671890999957, 49.342714795000113 ], [ -123.088878826, 49.343091115000043 ], [ -123.088447305, 49.34345135800006 ], [ -123.088428785999938, 49.343627466000079 ], [ -123.088589638999963, 49.343728271000039 ], [ -123.088068402999937, 49.344858603000098 ], [ -123.087370374999978, 49.34553442300011 ], [ -123.087203495999987, 49.345696009000072 ], [ -123.087202694999988, 49.345703814000075 ], [ -123.087156553999989, 49.346144899000159 ], [ -123.087081207999972, 49.346865285000042 ], [ -123.086876605999933, 49.347494796000021 ], [ -123.086877207999976, 49.348226114000035 ], [ -123.086877274999964, 49.348333545000067 ], [ -123.086877584999982, 49.348701098000028 ], [ -123.086850972999912, 49.348779955000104 ], [ -123.086594364999911, 49.349540855000072 ], [ -123.086577417999976, 49.349591195000066 ], [ -123.086495657999976, 49.350461763000041 ], [ -123.086460031999962, 49.350841338000052 ], [ -123.086454899999978, 49.350895808000089 ], [ -123.086291593999974, 49.351337290000068 ], [ -123.086154186000016, 49.35149820400008 ], [ -123.085177609999946, 49.352093506000131 ], [ -123.084186095999925, 49.353071289000084 ], [ -123.084152332999935, 49.353052888000072 ], [ -123.084015677999957, 49.352978353000069 ], [ -123.083712450999911, 49.352813068000039 ], [ -123.083280001999952, 49.352577305000068 ], [ -123.082199187999905, 49.351992498000051 ], [ -123.08180331299999, 49.351722384000034 ], [ -123.081354323999932, 49.351028497000115 ], [ -123.079639886999956, 49.350081606000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159563208", "BldgCostT": "100808565", "sL_LossRatio": "0.712033444033627", "sL_AssetLoss": "1966270", "sL_BldgLoss": "1400050", "sL_StrLoss": "619710", "sL_NStrLoss": "780340", "sL_ContLoss": "566220", "geom_point": "0101000020E61000007E12AF1D12C55EC0B4E1248B83AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078620905999969, 49.349412777000047 ], [ -123.07805460499999, 49.349117400000068 ], [ -123.077681823999953, 49.349027202000087 ], [ -123.077286105000013, 49.348971405000036 ], [ -123.077008095999958, 49.348906311000107 ], [ -123.076747808999954, 49.348778596000116 ], [ -123.076350111999929, 49.348493109000053 ], [ -123.076085016999926, 49.348223900000086 ], [ -123.075194804999924, 49.34717388900004 ], [ -123.074885436999978, 49.346730303000065 ], [ -123.07467108499999, 49.346423002000108 ], [ -123.074449688999934, 49.345787493000039 ], [ -123.074169001999934, 49.345504310000138 ], [ -123.073846498999941, 49.345358710000028 ], [ -123.073722382999961, 49.345324452000021 ], [ -123.073683297999949, 49.345241706000067 ], [ -123.07495169799999, 49.345249 ], [ -123.075979482000022, 49.345209199000131 ], [ -123.076505914000023, 49.345220791000074 ], [ -123.07647499899997, 49.346123302000059 ], [ -123.076803497999933, 49.346152889000052 ], [ -123.07703100699996, 49.346210404000033 ], [ -123.077705103999946, 49.346650979000103 ], [ -123.078203909999928, 49.346336604000122 ], [ -123.078368094999945, 49.346329396000094 ], [ -123.07847710299994, 49.346413402000024 ], [ -123.07851885800001, 49.346428925000104 ], [ -123.078642100999943, 49.34647471200001 ], [ -123.078803772999947, 49.346534793000018 ], [ -123.079248711999966, 49.346551287000082 ], [ -123.079563238999981, 49.346664811000075 ], [ -123.07985831299996, 49.346771302000072 ], [ -123.080012709999934, 49.346658399000056 ], [ -123.080186388999934, 49.346588290000035 ], [ -123.080610611999958, 49.346364709000099 ], [ -123.081278488999942, 49.346182790000107 ], [ -123.081468795999939, 49.346482504000036 ], [ -123.081945494999914, 49.346845711000064 ], [ -123.082336690999966, 49.347081389000039 ], [ -123.083170818999974, 49.347450710000011 ], [ -123.084014278000012, 49.347694093000023 ], [ -123.083528799, 49.348409600000124 ], [ -123.083465909999944, 49.349081602000084 ], [ -123.083186615999963, 49.349866579000057 ], [ -123.081732285999962, 49.349967008000114 ], [ -123.081223325999986, 49.349897407000107 ], [ -123.080932105999977, 49.349778687000054 ], [ -123.080024989999984, 49.349299395000095 ], [ -123.079626212000022, 49.349315692000026 ], [ -123.079639886999956, 49.350081606000117 ], [ -123.078620905999969, 49.349412777000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187221750", "BldgCostT": "125070000", "sL_LossRatio": "0.753332915506451", "sL_AssetLoss": "2233780", "sL_BldgLoss": "1682780", "sL_StrLoss": "775060", "sL_NStrLoss": "907720", "sL_ContLoss": "551000", "geom_point": "0101000020E6100000C4DAC63CFEC45EC03F5422A2FBAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080016546999929, 49.356273082000072 ], [ -123.079203408999931, 49.35575019200008 ], [ -123.07800939899991, 49.355022598000076 ], [ -123.077999384999913, 49.354988411000136 ], [ -123.077851230999983, 49.35448295300003 ], [ -123.077667484999949, 49.35385602000008 ], [ -123.077663982999965, 49.353844204 ], [ -123.077270616999925, 49.353315691000113 ], [ -123.076212391999945, 49.353006097000076 ], [ -123.07618879099999, 49.352573201000077 ], [ -123.076153018999904, 49.352421805000063 ], [ -123.07562201599994, 49.352220099000135 ], [ -123.075115286, 49.351765107000034 ], [ -123.074233193999973, 49.351348487000024 ], [ -123.073874899999936, 49.350963283000077 ], [ -123.073836104999941, 49.350531708000098 ], [ -123.07334450899998, 49.350034783000098 ], [ -123.073340744999925, 49.349996112000071 ], [ -123.073322009999956, 49.349802696000012 ], [ -123.073327979999988, 49.349646536000094 ], [ -123.073384242999978, 49.348175903000026 ], [ -123.0734099, 49.347505235000057 ], [ -123.073421190999966, 49.34720970900009 ], [ -123.073425289999989, 49.347109789000072 ], [ -123.073437418999916, 49.346813154000053 ], [ -123.07345658899996, 49.346345025000097 ], [ -123.073471590999944, 49.345978092000095 ], [ -123.07349892299996, 49.345262806000051 ], [ -123.073511767999932, 49.345266342000073 ], [ -123.073581449999949, 49.345285564000022 ], [ -123.073683297999949, 49.345241706000067 ], [ -123.073722382999961, 49.345324452000021 ], [ -123.073846498999941, 49.345358710000028 ], [ -123.074169001999934, 49.345504310000138 ], [ -123.074449688999934, 49.345787493000039 ], [ -123.07467108499999, 49.346423002000108 ], [ -123.074885436999978, 49.346730303000065 ], [ -123.075194804999924, 49.34717388900004 ], [ -123.076085016999926, 49.348223900000086 ], [ -123.076350111999929, 49.348493109000053 ], [ -123.076747808999954, 49.348778596000116 ], [ -123.077008095999958, 49.348906311000107 ], [ -123.077286105000013, 49.348971405000036 ], [ -123.077681823999953, 49.349027202000087 ], [ -123.07805460499999, 49.349117400000068 ], [ -123.078620905999969, 49.349412777000047 ], [ -123.079639886999956, 49.350081606000117 ], [ -123.081354323999932, 49.351028497000115 ], [ -123.08180331299999, 49.351722384000034 ], [ -123.082199187999905, 49.351992498000051 ], [ -123.083280001999952, 49.352577305000068 ], [ -123.083712450999911, 49.352813068000039 ], [ -123.084015677999957, 49.352978353000069 ], [ -123.084152332999935, 49.353052888000072 ], [ -123.084186095999925, 49.353071289000084 ], [ -123.082953325999966, 49.354286981000079 ], [ -123.082895677999915, 49.354343797000055 ], [ -123.081935857999966, 49.354746980000066 ], [ -123.081420977, 49.354963221000055 ], [ -123.081244386, 49.355037405000061 ], [ -123.08070788699996, 49.355362104000044 ], [ -123.080239520999953, 49.355874801 ], [ -123.080213748999967, 49.355920835000113 ], [ -123.079943079999936, 49.355921023000043 ], [ -123.079942643000024, 49.355651171000019 ], [ -123.07993941, 49.35565117400013 ], [ -123.079913295999958, 49.356065149000081 ], [ -123.080129685999921, 49.356070991000138 ], [ -123.080016546999929, 49.356273082000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168148245", "BldgCostT": "114329077", "sL_LossRatio": "0.76053120620358", "sL_AssetLoss": "1619710", "sL_BldgLoss": "1231840", "sL_StrLoss": "557100", "sL_NStrLoss": "674740", "sL_ContLoss": "387870", "geom_point": "0101000020E61000004F822F33C9C45EC00F393266FDAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07349892299996, 49.345262806000051 ], [ -123.073019604999985, 49.345225510000098 ], [ -123.071850978999962, 49.345205592000084 ], [ -123.071871086999977, 49.344192015000026 ], [ -123.0718796, 49.343274383000093 ], [ -123.07190099499995, 49.342391513000059 ], [ -123.071918323999981, 49.341464306000027 ], [ -123.072591511999988, 49.341481606000094 ], [ -123.073059093, 49.341508694000055 ], [ -123.07355480699999, 49.341613103000036 ], [ -123.074015599999939, 49.341768691000077 ], [ -123.074428889, 49.342022199000048 ], [ -123.074809311999957, 49.342382897000093 ], [ -123.076215697999928, 49.342383102000099 ], [ -123.07717579700001, 49.34239101 ], [ -123.077160189999944, 49.343248015000079 ], [ -123.077352302999941, 49.343192005000056 ], [ -123.078360200999924, 49.343184098000052 ], [ -123.078376211, 49.344260803000097 ], [ -123.078395402999959, 49.345242986000059 ], [ -123.077187605999939, 49.345212190000041 ], [ -123.076505914000023, 49.345220791000074 ], [ -123.075979482000022, 49.345209199000131 ], [ -123.07495169799999, 49.345249 ], [ -123.073683297999949, 49.345241706000067 ], [ -123.073581449999949, 49.345285564000022 ], [ -123.073511767999932, 49.345266342000073 ], [ -123.07349892299996, 49.345262806000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128041751", "BldgCostT": "82675001", "sL_LossRatio": "0.738005903936877", "sL_AssetLoss": "1449880", "sL_BldgLoss": "1070020", "sL_StrLoss": "496450", "sL_NStrLoss": "573570", "sL_ContLoss": "379860", "geom_point": "0101000020E6100000A51B727D29C55EC087AFC0A101AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07847710299994, 49.346413402000024 ], [ -123.078368094999945, 49.346329396000094 ], [ -123.078203909999928, 49.346336604000122 ], [ -123.077705103999946, 49.346650979000103 ], [ -123.07703100699996, 49.346210404000033 ], [ -123.076803497999933, 49.346152889000052 ], [ -123.07647499899997, 49.346123302000059 ], [ -123.076505914000023, 49.345220791000074 ], [ -123.077187605999939, 49.345212190000041 ], [ -123.078395402999959, 49.345242986000059 ], [ -123.078376211, 49.344260803000097 ], [ -123.078360200999924, 49.343184098000052 ], [ -123.077352302999941, 49.343192005000056 ], [ -123.077160189999944, 49.343248015000079 ], [ -123.07717579700001, 49.34239101 ], [ -123.077190285, 49.341398898000079 ], [ -123.078403920999989, 49.341401107000046 ], [ -123.078433279, 49.339952702000062 ], [ -123.07964831299995, 49.339953983000065 ], [ -123.07958177899998, 49.341379800000034 ], [ -123.08066558199999, 49.341607201000038 ], [ -123.080831409999917, 49.341640504000075 ], [ -123.081328189999937, 49.341836701000069 ], [ -123.081846000999946, 49.342107511000037 ], [ -123.082098210999959, 49.342239392000046 ], [ -123.082360477999941, 49.342335591000051 ], [ -123.08281600399998, 49.34237860100005 ], [ -123.083459288, 49.342442471000048 ], [ -123.083734513999957, 49.342469800000117 ], [ -123.083838046999958, 49.342480082000044 ], [ -123.084521390999925, 49.342547896000021 ], [ -123.084749977999934, 49.34256759100009 ], [ -123.085857994999955, 49.342674005000035 ], [ -123.085032481999988, 49.343829810000088 ], [ -123.08459929199995, 49.344480089000037 ], [ -123.08412420399999, 49.345140995000051 ], [ -123.084066914999966, 49.345220498000096 ], [ -123.08385118699999, 49.345389388000051 ], [ -123.083398704999979, 49.345580800000079 ], [ -123.082329785999946, 49.345879805000017 ], [ -123.081278488999942, 49.346182790000107 ], [ -123.080610611999958, 49.346364709000099 ], [ -123.080186388999934, 49.346588290000035 ], [ -123.080012709999934, 49.346658399000056 ], [ -123.07985831299996, 49.346771302000072 ], [ -123.079563238999981, 49.346664811000075 ], [ -123.079248711999966, 49.346551287000082 ], [ -123.078803772999947, 49.346534793000018 ], [ -123.078642100999943, 49.34647471200001 ], [ -123.07851885800001, 49.346428925000104 ], [ -123.07847710299994, 49.346413402000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189602561", "BldgCostT": "128394530", "sL_LossRatio": "0.746742739461186", "sL_AssetLoss": "1903440", "sL_BldgLoss": "1421380", "sL_StrLoss": "638060", "sL_NStrLoss": "783320", "sL_ContLoss": "482060", "geom_point": "0101000020E61000004AC4E790CCC45EC0CCFB59A88CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073059093, 49.341508694000055 ], [ -123.072591511999988, 49.341481606000094 ], [ -123.071918323999981, 49.341464306000027 ], [ -123.071919286999957, 49.340143917000056 ], [ -123.071929787000016, 49.33928048900006 ], [ -123.071950804999943, 49.338339902000065 ], [ -123.075046190999956, 49.338349786 ], [ -123.077189405999945, 49.338360109000135 ], [ -123.077230223999919, 49.338368491000068 ], [ -123.077304897, 49.338383892000117 ], [ -123.07726220399995, 49.339321184000035 ], [ -123.07722370099999, 49.33993171200013 ], [ -123.078433279, 49.339952702000062 ], [ -123.078403920999989, 49.341401107000046 ], [ -123.077190285, 49.341398898000079 ], [ -123.07717579700001, 49.34239101 ], [ -123.076215697999928, 49.342383102000099 ], [ -123.074809311999957, 49.342382897000093 ], [ -123.074428889, 49.342022199000048 ], [ -123.074015599999939, 49.341768691000077 ], [ -123.07355480699999, 49.341613103000036 ], [ -123.073059093, 49.341508694000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174720591", "BldgCostT": "116394201", "sL_LossRatio": "0.760155103392744", "sL_AssetLoss": "1751090", "sL_BldgLoss": "1331100", "sL_StrLoss": "577270", "sL_NStrLoss": "753830", "sL_ContLoss": "419990", "geom_point": "0101000020E6100000229961E508C55EC04EF443B63DAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077230223999919, 49.338368491000068 ], [ -123.077189405999945, 49.338360109000135 ], [ -123.075046190999956, 49.338349786 ], [ -123.07507551399999, 49.337449907000035 ], [ -123.07510640199996, 49.336525801000043 ], [ -123.077042184, 49.336523849000095 ], [ -123.078732292999945, 49.336522093000042 ], [ -123.079619490999931, 49.336526189999979 ], [ -123.081400794999965, 49.33653559600004 ], [ -123.08239120199994, 49.336540785000047 ], [ -123.082379508999963, 49.337447397000147 ], [ -123.082369816999972, 49.338365795000136 ], [ -123.07973738599999, 49.33836590300011 ], [ -123.079617595999977, 49.338412191000089 ], [ -123.07962069099996, 49.338563410000091 ], [ -123.079634688999974, 49.339253818000053 ], [ -123.079643391, 49.33970135200007 ], [ -123.07964831299995, 49.339953983000065 ], [ -123.078433279, 49.339952702000062 ], [ -123.07722370099999, 49.33993171200013 ], [ -123.07726220399995, 49.339321184000035 ], [ -123.077304897, 49.338383892000117 ], [ -123.077230223999919, 49.338368491000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118692584", "BldgCostT": "70363334", "sL_LossRatio": "0.669080783812685", "sL_AssetLoss": "1440140", "sL_BldgLoss": "963570", "sL_StrLoss": "432080", "sL_NStrLoss": "531490", "sL_ContLoss": "476570", "geom_point": "0101000020E6100000490EC8F3D3C45EC0601BD8C716AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077095974999978, 49.33564953700008 ], [ -123.078293483, 49.335647402000134 ], [ -123.078750206999985, 49.335649797000052 ], [ -123.078805037999928, 49.335670900000132 ], [ -123.079622896999965, 49.335621214000135 ], [ -123.081411800999959, 49.335619114000075 ], [ -123.081400794999965, 49.33653559600004 ], [ -123.079619490999931, 49.336526189999979 ], [ -123.078732292999945, 49.336522093000042 ], [ -123.077042184, 49.336523849000095 ], [ -123.07510640199996, 49.336525801000043 ], [ -123.07507551399999, 49.337449907000035 ], [ -123.075046190999956, 49.338349786 ], [ -123.071950804999943, 49.338339902000065 ], [ -123.071972478999925, 49.337451494000042 ], [ -123.071991194999953, 49.33652518800006 ], [ -123.07200068399996, 49.336134592000079 ], [ -123.0720103029999, 49.335657511000058 ], [ -123.075138091999975, 49.335653010000073 ], [ -123.077095974999978, 49.33564953700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197610645", "BldgCostT": "134896524", "sL_LossRatio": "0.79015686937848", "sL_AssetLoss": "1359730", "sL_BldgLoss": "1074400", "sL_StrLoss": "474380", "sL_NStrLoss": "600020", "sL_ContLoss": "285330", "geom_point": "0101000020E61000003C074B4C82C45EC08678D25FBBAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068914621999951, 49.332007770000075 ], [ -123.07200265099999, 49.332034824000083 ], [ -123.072002643999937, 49.332169062000084 ], [ -123.072002711999971, 49.332316716000086 ], [ -123.072003199999955, 49.332443374000036 ], [ -123.072006329, 49.333282339000043 ], [ -123.072003383999956, 49.333372314000059 ], [ -123.072060615999959, 49.333468431000021 ], [ -123.07204533799991, 49.334123714000079 ], [ -123.0720103029999, 49.335657511000058 ], [ -123.070411598999939, 49.335654699000045 ], [ -123.068859785999933, 49.335649609000022 ], [ -123.068872800999941, 49.335009507000095 ], [ -123.068884080999936, 49.334092100000099 ], [ -123.068898149999939, 49.33319629300005 ], [ -123.068908386999979, 49.332295906000063 ], [ -123.068823483999921, 49.332006979000077 ], [ -123.068914621999951, 49.332007770000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "509265692", "BldgCostT": "334650355", "sL_LossRatio": "0.762255848066085", "sL_AssetLoss": "3108720", "sL_BldgLoss": "2369640", "sL_StrLoss": "1081500", "sL_NStrLoss": "1288140", "sL_ContLoss": "739080", "geom_point": "0101000020E6100000C6E6376DC2C45EC0E8184FEB53AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072002643999937, 49.332169062000084 ], [ -123.07200265099999, 49.332034824000083 ], [ -123.068914621999951, 49.332007770000075 ], [ -123.068823483999921, 49.332006979000077 ], [ -123.068907459999949, 49.331818882000029 ], [ -123.068951710999926, 49.331719713000048 ], [ -123.068955070999948, 49.331604576000103 ], [ -123.068966980999946, 49.331196004000063 ], [ -123.06899148299999, 49.330199572000062 ], [ -123.069012476999944, 49.329769576000039 ], [ -123.069037798999958, 49.32925058600005 ], [ -123.069078703999978, 49.328234 ], [ -123.070504604999911, 49.328245591000034 ], [ -123.072147812999972, 49.328258602000055 ], [ -123.075330485999984, 49.328313303000094 ], [ -123.075320803999915, 49.32873123500007 ], [ -123.075307673999959, 49.329297907000083 ], [ -123.075303318999914, 49.329486100000061 ], [ -123.075297218999978, 49.329747869000087 ], [ -123.075292193999957, 49.329963680000098 ], [ -123.075284910000036, 49.330278210000124 ], [ -123.075280994999915, 49.331255319 ], [ -123.078346983999964, 49.331287806000056 ], [ -123.081426863999965, 49.3313187890001 ], [ -123.08457288699995, 49.331348801000068 ], [ -123.084478576999942, 49.331906427000064 ], [ -123.084548784999924, 49.332180240000127 ], [ -123.084544409999964, 49.332226626000065 ], [ -123.084534185999971, 49.332334842000066 ], [ -123.08265588099999, 49.332338231000065 ], [ -123.0814473, 49.332413704000061 ], [ -123.079909200999964, 49.332368489000025 ], [ -123.078352459999962, 49.332357701000028 ], [ -123.078338665999951, 49.332357588000072 ], [ -123.075340501999918, 49.332340967000064 ], [ -123.075250130999947, 49.332340467000044 ], [ -123.07367726199999, 49.332331708000041 ], [ -123.0736497, 49.332331561000089 ], [ -123.073563396999987, 49.332331070000059 ], [ -123.072200653999985, 49.332319386000094 ], [ -123.072002711999971, 49.332316716000086 ], [ -123.072002643999937, 49.332169062000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135186662", "BldgCostT": "84796700", "sL_LossRatio": "0.6950078817685", "sL_AssetLoss": "2010970", "sL_BldgLoss": "1397640", "sL_StrLoss": "595200", "sL_NStrLoss": "802440", "sL_ContLoss": "613330", "geom_point": "0101000020E6100000FFE9C4ED29C45EC040557D9519AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065849023999988, 49.331549111000086 ], [ -123.06586271299993, 49.331159497000044 ], [ -123.06278031, 49.331123486000088 ], [ -123.062807514999932, 49.330153283000108 ], [ -123.061998508999977, 49.330153811000052 ], [ -123.061950579000012, 49.329180855000061 ], [ -123.061913106999924, 49.32842041200005 ], [ -123.061827863999895, 49.328220995000045 ], [ -123.061377676999896, 49.327167841000062 ], [ -123.061307920999965, 49.32700463300008 ], [ -123.061262605999971, 49.326898590000056 ], [ -123.06113909699998, 49.326698798000059 ], [ -123.060846208, 49.326435998000072 ], [ -123.06036649399999, 49.32616899900011 ], [ -123.06033659499991, 49.326098809000065 ], [ -123.061473904999943, 49.326114616000041 ], [ -123.062913676999969, 49.32613460000006 ], [ -123.066004279999902, 49.326164497000015 ], [ -123.069093602999914, 49.326194304000111 ], [ -123.069067893999929, 49.327209604000103 ], [ -123.065975277999911, 49.327166191000124 ], [ -123.06288957799994, 49.327122895000031 ], [ -123.06286261799994, 49.328198502000085 ], [ -123.062838493999948, 49.32916520400012 ], [ -123.065898100999931, 49.329209586000069 ], [ -123.065890510999907, 49.330177601000102 ], [ -123.066778928999952, 49.330183909000048 ], [ -123.06899148299999, 49.330199572000062 ], [ -123.068966980999946, 49.331196004000063 ], [ -123.068955070999948, 49.331604576000103 ], [ -123.068951710999926, 49.331719713000048 ], [ -123.068907459999949, 49.331818882000029 ], [ -123.068823483999921, 49.332006979000077 ], [ -123.066261698999952, 49.331984509000108 ], [ -123.065878233999939, 49.331994556000076 ], [ -123.065865370999944, 49.331798565000099 ], [ -123.065859222999933, 49.331704712000047 ], [ -123.065849023999988, 49.331549111000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109947885", "BldgCostT": "70147078", "sL_LossRatio": "0.707252136915453", "sL_AssetLoss": "1570020", "sL_BldgLoss": "1110400", "sL_StrLoss": "488620", "sL_NStrLoss": "621780", "sL_ContLoss": "459620", "geom_point": "0101000020E61000003FFEA0683DC45EC0CB3736960BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065890510999907, 49.330177601000102 ], [ -123.065898100999931, 49.329209586000069 ], [ -123.062838493999948, 49.32916520400012 ], [ -123.06286261799994, 49.328198502000085 ], [ -123.06288957799994, 49.327122895000031 ], [ -123.065975277999911, 49.327166191000124 ], [ -123.069067893999929, 49.327209604000103 ], [ -123.069078703999978, 49.328234 ], [ -123.069037798999958, 49.32925058600005 ], [ -123.069012476999944, 49.329769576000039 ], [ -123.06899148299999, 49.330199572000062 ], [ -123.066778928999952, 49.330183909000048 ], [ -123.065890510999907, 49.330177601000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181269999", "BldgCostT": "115254999", "sL_LossRatio": "0.723398163314287", "sL_AssetLoss": "2374930", "sL_BldgLoss": "1718020", "sL_StrLoss": "765540", "sL_NStrLoss": "952480", "sL_ContLoss": "656910", "geom_point": "0101000020E6100000E373A4E9E2C35EC002E8F7FD9BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054810214999947, 49.334756994000102 ], [ -123.054891980999983, 49.334660997000043 ], [ -123.055161411000014, 49.334471103000034 ], [ -123.055548381, 49.334660903000078 ], [ -123.055719077999967, 49.334702505000038 ], [ -123.056288319999936, 49.334708991000113 ], [ -123.056418697999959, 49.334670213000052 ], [ -123.057223204999943, 49.334071498000164 ], [ -123.057949077999979, 49.333582408000026 ], [ -123.05869218699992, 49.333168500000106 ], [ -123.058822390999964, 49.333046002000145 ], [ -123.058845794999968, 49.332959194000054 ], [ -123.058795614999966, 49.332884005000032 ], [ -123.058707296999927, 49.332823086000111 ], [ -123.057489806999925, 49.332538581000058 ], [ -123.057052885999937, 49.332442092000051 ], [ -123.056420515999989, 49.332217699000111 ], [ -123.055581708999952, 49.331863406000124 ], [ -123.054308708999955, 49.331241497000043 ], [ -123.05413130899997, 49.331197892000056 ], [ -123.053746384999911, 49.331191899000046 ], [ -123.053734499999919, 49.331487012000068 ], [ -123.053694392999958, 49.3323343980001 ], [ -123.053150896999966, 49.332334906000071 ], [ -123.053189572999969, 49.331466798000072 ], [ -123.053070354999988, 49.331180827 ], [ -123.053106864999961, 49.329304100000037 ], [ -123.053109817999925, 49.329153403000092 ], [ -123.053134764, 49.329064809000094 ], [ -123.053134885999967, 49.329064358000011 ], [ -123.053261152999951, 49.328616621000052 ], [ -123.05326141099998, 49.328616880000041 ], [ -123.053398337999965, 49.328753678000041 ], [ -123.053509200999954, 49.328864404000043 ], [ -123.053560896999969, 49.328917104000077 ], [ -123.053742368999977, 49.32913919000007 ], [ -123.054148106999961, 49.329635697000128 ], [ -123.054889396999968, 49.330309781000082 ], [ -123.055343712999914, 49.330630201000041 ], [ -123.055961041999979, 49.330964253000062 ], [ -123.056141513999989, 49.331061921000128 ], [ -123.056551370999927, 49.331283697000082 ], [ -123.05722431099997, 49.331563180000025 ], [ -123.05745276299993, 49.331632999000078 ], [ -123.05806249499993, 49.331819299000102 ], [ -123.059238121999968, 49.332033950000074 ], [ -123.059489314999936, 49.332079821000022 ], [ -123.059523182999953, 49.332085996000025 ], [ -123.059653254999887, 49.332095896000077 ], [ -123.059765063999933, 49.332104412000113 ], [ -123.060259799, 49.332142109000067 ], [ -123.060457924999966, 49.332136891000061 ], [ -123.062786595999953, 49.332075706000076 ], [ -123.064387396999962, 49.332033598000038 ], [ -123.065878233999939, 49.331994556000076 ], [ -123.066261698999952, 49.331984509000108 ], [ -123.068823483999921, 49.332006979000077 ], [ -123.068908386999979, 49.332295906000063 ], [ -123.068898149999939, 49.33319629300005 ], [ -123.068884080999936, 49.334092100000099 ], [ -123.065779306999914, 49.334060094000051 ], [ -123.063847001999932, 49.334047207000083 ], [ -123.062919613, 49.333634708000062 ], [ -123.062752686999929, 49.333606587000112 ], [ -123.061453488999931, 49.333387717000043 ], [ -123.061446691999976, 49.333863095000041 ], [ -123.061138789000026, 49.333836691000052 ], [ -123.060605395999971, 49.333894303000086 ], [ -123.05917549399993, 49.334701998000085 ], [ -123.05795649599996, 49.335587497000027 ], [ -123.057082689999987, 49.335589793000054 ], [ -123.056395010999935, 49.335585496000085 ], [ -123.054862386999986, 49.335575208000122 ], [ -123.054682612999926, 49.335574006000051 ], [ -123.054694376999961, 49.334998803000083 ], [ -123.054810214999947, 49.334756994000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112216500", "BldgCostT": "74970000", "sL_LossRatio": "0.738589103083885", "sL_AssetLoss": "1529240", "sL_BldgLoss": "1129480", "sL_StrLoss": "510000", "sL_NStrLoss": "619480", "sL_ContLoss": "399760", "geom_point": "0101000020E6100000CF3A996E88C35EC04F50581CADAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05302900199996, 49.335569505000095 ], [ -123.053122884999965, 49.333121299000041 ], [ -123.053150896999966, 49.332334906000071 ], [ -123.053694392999958, 49.3323343980001 ], [ -123.053734499999919, 49.331487012000068 ], [ -123.053746384999911, 49.331191899000046 ], [ -123.05413130899997, 49.331197892000056 ], [ -123.054308708999955, 49.331241497000043 ], [ -123.055581708999952, 49.331863406000124 ], [ -123.056420515999989, 49.332217699000111 ], [ -123.057052885999937, 49.332442092000051 ], [ -123.057489806999925, 49.332538581000058 ], [ -123.058707296999927, 49.332823086000111 ], [ -123.058795614999966, 49.332884005000032 ], [ -123.058845794999968, 49.332959194000054 ], [ -123.058822390999964, 49.333046002000145 ], [ -123.05869218699992, 49.333168500000106 ], [ -123.057949077999979, 49.333582408000026 ], [ -123.057223204999943, 49.334071498000164 ], [ -123.056418697999959, 49.334670213000052 ], [ -123.056288319999936, 49.334708991000113 ], [ -123.055719077999967, 49.334702505000038 ], [ -123.055548381, 49.334660903000078 ], [ -123.055161411000014, 49.334471103000034 ], [ -123.054891980999983, 49.334660997000043 ], [ -123.054810214999947, 49.334756994000102 ], [ -123.054694376999961, 49.334998803000083 ], [ -123.054682612999926, 49.335574006000051 ], [ -123.05302900199996, 49.335569505000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108388917", "BldgCostT": "69656667", "sL_LossRatio": "0.715060674203573", "sL_AssetLoss": "1359886", "sL_BldgLoss": "972401", "sL_StrLoss": "422281", "sL_NStrLoss": "550120", "sL_ContLoss": "387485", "geom_point": "0101000020E610000041A1D07843C35EC04C87DA78A8AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.045959383999943, 49.335502598000076 ], [ -123.04602279, 49.334508207000091 ], [ -123.047824904, 49.334644795000038 ], [ -123.04914339, 49.334660997000043 ], [ -123.049212882999939, 49.333677490000092 ], [ -123.050488589999972, 49.333695200000136 ], [ -123.050512203999958, 49.333108598000081 ], [ -123.05053277899998, 49.331424005000081 ], [ -123.050552502999906, 49.330531097000119 ], [ -123.052720908999902, 49.329362585000041 ], [ -123.052788083999943, 49.32932728400008 ], [ -123.052799287999974, 49.329321393000022 ], [ -123.052810492, 49.329315501000082 ], [ -123.053099103999983, 49.329159183000066 ], [ -123.053109817999925, 49.329153403000092 ], [ -123.053106864999961, 49.329304100000037 ], [ -123.053070354999988, 49.331180827 ], [ -123.053189572999969, 49.331466798000072 ], [ -123.053150896999966, 49.332334906000071 ], [ -123.053122884999965, 49.333121299000041 ], [ -123.05302900199996, 49.335569505000095 ], [ -123.052194491999899, 49.335561579000085 ], [ -123.051836470999959, 49.335558194000043 ], [ -123.051409676, 49.335554127000073 ], [ -123.051134646999969, 49.335551504000058 ], [ -123.05108384099999, 49.335551030000069 ], [ -123.050449206999957, 49.335544985000077 ], [ -123.049163285999938, 49.335536093000037 ], [ -123.045959383999943, 49.335502598000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99784916", "BldgCostT": "62186666", "sL_LossRatio": "0.701442445569189", "sL_AssetLoss": "1290170", "sL_BldgLoss": "904980", "sL_StrLoss": "430910", "sL_NStrLoss": "474070", "sL_ContLoss": "385190", "geom_point": "0101000020E610000003C94CB30AC35EC08C76D335ACAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043869710999985, 49.334505083000082 ], [ -123.043576748999968, 49.334229994000069 ], [ -123.043834073999932, 49.334092505000037 ], [ -123.043869670999982, 49.334073649000047 ], [ -123.044048069999945, 49.333979105 ], [ -123.045598510999952, 49.333157363000105 ], [ -123.045621316999956, 49.33314529800009 ], [ -123.045826026999947, 49.333036761000074 ], [ -123.046013223999964, 49.33293753900012 ], [ -123.04664367, 49.33260329000008 ], [ -123.047623596999955, 49.332083759000106 ], [ -123.047637715999954, 49.332076299000114 ], [ -123.04840621699999, 49.331668454000109 ], [ -123.049088800999968, 49.331306194000085 ], [ -123.049127153999947, 49.331285907000073 ], [ -123.050552502999906, 49.330531097000119 ], [ -123.05053277899998, 49.331424005000081 ], [ -123.050512203999958, 49.333108598000081 ], [ -123.050488589999972, 49.333695200000136 ], [ -123.049212882999939, 49.333677490000092 ], [ -123.04914339, 49.334660997000043 ], [ -123.047824904, 49.334644795000038 ], [ -123.04602279, 49.334508207000091 ], [ -123.045959383999943, 49.335502598000076 ], [ -123.043831300999926, 49.33549479300013 ], [ -123.043869710999985, 49.334505083000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151583696", "BldgCostT": "93911692", "sL_LossRatio": "0.701106167831868", "sL_AssetLoss": "1400330", "sL_BldgLoss": "981780", "sL_StrLoss": "421930", "sL_NStrLoss": "559850", "sL_ContLoss": "418550", "geom_point": "0101000020E6100000BE4BE2AC88C25EC0FC8B6EF7D1AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.037788513999885, 49.335916604000062 ], [ -123.037814800999939, 49.335268898000052 ], [ -123.036220868999976, 49.335235878000105 ], [ -123.036207121999936, 49.335235596000068 ], [ -123.036258194999931, 49.334285884000117 ], [ -123.036310302999965, 49.333320886000109 ], [ -123.037883897999933, 49.333350503000069 ], [ -123.039622184999928, 49.33336389800008 ], [ -123.041585790999974, 49.333316804000042 ], [ -123.042130117999989, 49.33332654200003 ], [ -123.042541014999927, 49.333333881000044 ], [ -123.04278949899999, 49.333384906000042 ], [ -123.043028005999972, 49.333464309000092 ], [ -123.043313506999937, 49.333646891000043 ], [ -123.043786113999971, 49.33404709900006 ], [ -123.043798894999924, 49.334059202000063 ], [ -123.043834073999932, 49.334092505000037 ], [ -123.043576748999968, 49.334229994000069 ], [ -123.04161890200001, 49.335275805000101 ], [ -123.041608249999925, 49.335281503000097 ], [ -123.039688609, 49.336306490000041 ], [ -123.03950039599998, 49.336302194000041 ], [ -123.037946290999969, 49.336246994000057 ], [ -123.037788513999885, 49.335916604000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209667786", "BldgCostT": "138723499", "sL_LossRatio": "0.727069708087414", "sL_AssetLoss": "2382220", "sL_BldgLoss": "1732040", "sL_StrLoss": "765400", "sL_NStrLoss": "966640", "sL_ContLoss": "650180", "geom_point": "0101000020E6100000C902A3814EC25EC0C1B2BA513BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034539598999956, 49.330354104000058 ], [ -123.034584115999934, 49.329594189000062 ], [ -123.033374914999968, 49.329571790000109 ], [ -123.033443502999944, 49.328328888000094 ], [ -123.033496323999884, 49.32718200300009 ], [ -123.034708308999939, 49.327440390000099 ], [ -123.034778283999941, 49.326603797000075 ], [ -123.036415710999975, 49.326987402000078 ], [ -123.036990293999978, 49.327037403000134 ], [ -123.03823808099996, 49.327144498000074 ], [ -123.038207002999968, 49.32801741 ], [ -123.038097114, 49.329478901000066 ], [ -123.038030610999897, 49.330453411000072 ], [ -123.03797941, 49.33146978900006 ], [ -123.037973458999929, 49.33158699300008 ], [ -123.037883897999933, 49.333350503000069 ], [ -123.036310302999965, 49.333320886000109 ], [ -123.034374319999984, 49.333258800000124 ], [ -123.034425294999934, 49.332397304000061 ], [ -123.034463764999927, 49.331709927000141 ], [ -123.034506015999938, 49.330954385000048 ], [ -123.034510036999933, 49.330882521000056 ], [ -123.034539598999956, 49.330354104000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168795333", "BldgCostT": "113043333", "sL_LossRatio": "0.759330548656582", "sL_AssetLoss": "1771600", "sL_BldgLoss": "1345230", "sL_StrLoss": "586120", "sL_NStrLoss": "759110", "sL_ContLoss": "426370", "geom_point": "0101000020E61000003CA2F79D91C15EC0349B967136AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022987211, 49.335891003000029 ], [ -123.027566680999911, 49.335974696000029 ], [ -123.02752500299999, 49.336946282000063 ], [ -123.027482513000038, 49.337887195000079 ], [ -123.027463877999963, 49.338326191000142 ], [ -123.027430833, 49.339163008000149 ], [ -123.025249193, 49.339128207000023 ], [ -123.024654427999934, 49.339118870000107 ], [ -123.023222669999953, 49.339096366000078 ], [ -123.023098520999909, 49.339094405000033 ], [ -123.022207004999984, 49.339080408000051 ], [ -123.021035290999947, 49.339067992000025 ], [ -123.021098701999918, 49.338041105000059 ], [ -123.02089620000001, 49.337594199000101 ], [ -123.020901483999978, 49.337511495000058 ], [ -123.021001788999939, 49.337450285000031 ], [ -123.021688879999957, 49.337250409000113 ], [ -123.02210449899998, 49.337207811000077 ], [ -123.022229591999974, 49.336802291 ], [ -123.022416289, 49.336274300000099 ], [ -123.02244351, 49.335893989000091 ], [ -123.022987211, 49.335891003000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142390478", "BldgCostT": "89979857", "sL_LossRatio": "0.714222691090438", "sL_AssetLoss": "1564050", "sL_BldgLoss": "1117080", "sL_StrLoss": "516060", "sL_NStrLoss": "601020", "sL_ContLoss": "446970", "geom_point": "0101000020E610000042E36812E5C15EC0AF43C1CE45AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.029463296999964, 49.34010689900002 ], [ -123.029266302999972, 49.340067302000058 ], [ -123.026806491999949, 49.340013193000125 ], [ -123.026583812, 49.340053907000026 ], [ -123.026162498999923, 49.340270206000099 ], [ -123.025303289999954, 49.33963581200004 ], [ -123.02523629699999, 49.339500684000043 ], [ -123.025249193, 49.339128207000023 ], [ -123.027430833, 49.339163008000149 ], [ -123.027463877999963, 49.338326191000142 ], [ -123.027482513000038, 49.337887195000079 ], [ -123.02752500299999, 49.336946282000063 ], [ -123.027566680999911, 49.335974696000029 ], [ -123.03001671499996, 49.336027590000128 ], [ -123.032696286999979, 49.336083214000034 ], [ -123.032699406999924, 49.33704520800007 ], [ -123.032682391999927, 49.337438297000134 ], [ -123.032603694999949, 49.339246597000027 ], [ -123.031476493999946, 49.339227303000087 ], [ -123.030562483999958, 49.339211191000118 ], [ -123.030518517999937, 49.339854004000095 ], [ -123.030474095000017, 49.340010412000069 ], [ -123.030250185999989, 49.340175405000068 ], [ -123.029902693999986, 49.340380199000066 ], [ -123.029655694999988, 49.34019689900002 ], [ -123.029463296999964, 49.34010689900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233474366", "BldgCostT": "153926796", "sL_LossRatio": "0.734022598870057", "sL_AssetLoss": "2655000", "sL_BldgLoss": "1948830", "sL_StrLoss": "808080", "sL_NStrLoss": "1140750", "sL_ContLoss": "706170", "geom_point": "0101000020E6100000A3E51790C3C15EC074794A39A5AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025711208, 49.343504699000071 ], [ -123.025779823, 49.341687199000056 ], [ -123.024263718999975, 49.341658996000042 ], [ -123.022098089999957, 49.341630017000071 ], [ -123.022152288999948, 49.340379495000036 ], [ -123.022207004999984, 49.339080408000051 ], [ -123.023098520999909, 49.339094405000033 ], [ -123.023222669999953, 49.339096366000078 ], [ -123.024654427999934, 49.339118870000107 ], [ -123.025249193, 49.339128207000023 ], [ -123.02523629699999, 49.339500684000043 ], [ -123.025303289999954, 49.33963581200004 ], [ -123.026162498999923, 49.340270206000099 ], [ -123.026583812, 49.340053907000026 ], [ -123.026806491999949, 49.340013193000125 ], [ -123.029266302999972, 49.340067302000058 ], [ -123.029463296999964, 49.34010689900002 ], [ -123.029655694999988, 49.34019689900002 ], [ -123.029902693999986, 49.340380199000066 ], [ -123.030250185999989, 49.340175405000068 ], [ -123.030474095000017, 49.340010412000069 ], [ -123.030518517999937, 49.339854004000095 ], [ -123.030562483999958, 49.339211191000118 ], [ -123.031476493999946, 49.339227303000087 ], [ -123.032603694999949, 49.339246597000027 ], [ -123.03257959699998, 49.340052 ], [ -123.032559785000032, 49.340885179000068 ], [ -123.03254471, 49.34152088400014 ], [ -123.032790821999924, 49.341529628000032 ], [ -123.033229813, 49.341545201000038 ], [ -123.03319909799994, 49.342368400000097 ], [ -123.032626398000019, 49.342358868000062 ], [ -123.02869001, 49.342293198000064 ], [ -123.028701577999954, 49.342154801000042 ], [ -123.027705781999913, 49.342703896000089 ], [ -123.026158025999976, 49.343511608000043 ], [ -123.025711208, 49.343504699000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139843950", "BldgCostT": "91507213", "sL_LossRatio": "0.740825762745623", "sL_AssetLoss": "1566479", "sL_BldgLoss": "1160488", "sL_StrLoss": "531638", "sL_NStrLoss": "628850", "sL_ContLoss": "405991", "geom_point": "0101000020E610000030B1012A3FC25EC0018B4F43CCAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03254471, 49.34152088400014 ], [ -123.032559785000032, 49.340885179000068 ], [ -123.03257959699998, 49.340052 ], [ -123.033807883999984, 49.339394901000048 ], [ -123.034119945999976, 49.339227506000022 ], [ -123.035262890999931, 49.338614291000056 ], [ -123.035198776999948, 49.340840791000048 ], [ -123.035140390999914, 49.341581403000056 ], [ -123.036650293999983, 49.341598391000112 ], [ -123.036686773999918, 49.341598970000099 ], [ -123.038018192, 49.341619696000087 ], [ -123.03798609299993, 49.342508690000017 ], [ -123.037957801999937, 49.343424816000066 ], [ -123.037923717999945, 49.344388504000037 ], [ -123.034578109000023, 49.344301313000109 ], [ -123.033117103999984, 49.34427019 ], [ -123.033149474999973, 49.343518974000084 ], [ -123.03319909799994, 49.342368400000097 ], [ -123.033229813, 49.341545201000038 ], [ -123.032790821999924, 49.341529628000032 ], [ -123.03254471, 49.34152088400014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158034000", "BldgCostT": "101100000", "sL_LossRatio": "0.725529471284238", "sL_AssetLoss": "1939057", "sL_BldgLoss": "1406843", "sL_StrLoss": "642093", "sL_NStrLoss": "764750", "sL_ContLoss": "532214", "geom_point": "0101000020E610000081D825EC13C25EC0ACD6789F19AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028515017, 49.345920798000087 ], [ -123.028541409999974, 49.344930799000039 ], [ -123.028597912999928, 49.343492198000085 ], [ -123.02869001, 49.342293198000064 ], [ -123.032626398000019, 49.342358868000062 ], [ -123.03319909799994, 49.342368400000097 ], [ -123.033149474999973, 49.343518974000084 ], [ -123.033117103999984, 49.34427019 ], [ -123.034578109000023, 49.344301313000109 ], [ -123.037923717999945, 49.344388504000037 ], [ -123.037890075999954, 49.345299999000069 ], [ -123.037854489, 49.346223106000103 ], [ -123.03391880400001, 49.346107095000043 ], [ -123.033014332000022, 49.34609287600005 ], [ -123.032310099999933, 49.346081784000035 ], [ -123.031803492999956, 49.345977916000017 ], [ -123.031379500999918, 49.34595720900009 ], [ -123.031171281999946, 49.345963207000075 ], [ -123.028515017, 49.345920798000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155715719", "BldgCostT": "105815412", "sL_LossRatio": "0.752869344250724", "sL_AssetLoss": "1416700", "sL_BldgLoss": "1066590", "sL_StrLoss": "450790", "sL_NStrLoss": "615800", "sL_ContLoss": "350110", "geom_point": "0101000020E6100000EC447A381EC25EC07D55BAFD6AAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028515017, 49.345920798000087 ], [ -123.031171281999946, 49.345963207000075 ], [ -123.031379500999918, 49.34595720900009 ], [ -123.031803492999956, 49.345977916000017 ], [ -123.032310099999933, 49.346081784000035 ], [ -123.033014332000022, 49.34609287600005 ], [ -123.03391880400001, 49.346107095000043 ], [ -123.037854489, 49.346223106000103 ], [ -123.037818500999961, 49.347150701000075 ], [ -123.037784299999942, 49.348072893000023 ], [ -123.034404312999925, 49.347994948000085 ], [ -123.033423611, 49.347972298000094 ], [ -123.03235403299999, 49.34794550200008 ], [ -123.03156880200001, 49.347925855000057 ], [ -123.030445784999941, 49.347897693000093 ], [ -123.028428721999958, 49.347866593000099 ], [ -123.028472107999946, 49.346868101 ], [ -123.028515017, 49.345920798000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184154501", "BldgCostT": "124480001", "sL_LossRatio": "0.758625837103839", "sL_AssetLoss": "1942710", "sL_BldgLoss": "1473790", "sL_StrLoss": "623760", "sL_NStrLoss": "850030", "sL_ContLoss": "468920", "geom_point": "0101000020E61000008FB9F8FCACC15EC0E1B64B5539AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023354516999959, 49.344199099000065 ], [ -123.023348720999948, 49.343432501000038 ], [ -123.024185098, 49.343480716000094 ], [ -123.025711208, 49.343504699000071 ], [ -123.026158025999976, 49.343511608000043 ], [ -123.027705781999913, 49.342703896000089 ], [ -123.028701577999954, 49.342154801000042 ], [ -123.02869001, 49.342293198000064 ], [ -123.028597912999928, 49.343492198000085 ], [ -123.028541409999974, 49.344930799000039 ], [ -123.028515017, 49.345920798000087 ], [ -123.028472107999946, 49.346868101 ], [ -123.028428721999958, 49.347866593000099 ], [ -123.026433183000037, 49.347826177000087 ], [ -123.02614388899994, 49.347820319000036 ], [ -123.024692596999941, 49.347790892000027 ], [ -123.022687189999942, 49.347877998000058 ], [ -123.022911327999964, 49.34756224500007 ], [ -123.023884283999962, 49.346191593000079 ], [ -123.02441188, 49.34547740000005 ], [ -123.024832308999976, 49.344867499000053 ], [ -123.024422700999963, 49.34483172900012 ], [ -123.023371992999941, 49.344739988000114 ], [ -123.023354516999959, 49.344199099000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113161053", "BldgCostT": "74603746", "sL_LossRatio": "0.741214388856534", "sL_AssetLoss": "1253470", "sL_BldgLoss": "929090", "sL_StrLoss": "439520", "sL_NStrLoss": "489570", "sL_ContLoss": "324380", "geom_point": "0101000020E61000000329E3A5BCC15EC0248E2373B8AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028428721999958, 49.347866593000099 ], [ -123.030445784999941, 49.347897693000093 ], [ -123.030422370999972, 49.348798695000049 ], [ -123.030390375999929, 49.350799994000077 ], [ -123.030192544999949, 49.350794636000046 ], [ -123.028391111999937, 49.350745880000076 ], [ -123.02640570399997, 49.350691418000075 ], [ -123.024689799999962, 49.350661313000018 ], [ -123.022803489999916, 49.350628292000131 ], [ -123.022383285999922, 49.34967100800003 ], [ -123.024703196999951, 49.349704194000012 ], [ -123.024714761999931, 49.34908195100008 ], [ -123.024721105999973, 49.348739208000069 ], [ -123.024705979999951, 49.348235823000032 ], [ -123.024692596999941, 49.347790892000027 ], [ -123.02614388899994, 49.347820319000036 ], [ -123.026433183000037, 49.347826177000087 ], [ -123.028428721999958, 49.347866593000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125635250", "BldgCostT": "79895000", "sL_LossRatio": "0.710898954548815", "sL_AssetLoss": "1528431", "sL_BldgLoss": "1086560", "sL_StrLoss": "490670", "sL_NStrLoss": "595890", "sL_ContLoss": "441871", "geom_point": "0101000020E6100000E46AD8AD2DC25EC0E16C3A02B8AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030445784999941, 49.347897693000093 ], [ -123.03156880200001, 49.347925855000057 ], [ -123.03235403299999, 49.34794550200008 ], [ -123.033423611, 49.347972298000094 ], [ -123.034404312999925, 49.347994948000085 ], [ -123.037784299999942, 49.348072893000023 ], [ -123.03777470599999, 49.348932807000089 ], [ -123.037751209999954, 49.349815703000075 ], [ -123.037737399999955, 49.350785290000019 ], [ -123.035866680999959, 49.350722388000094 ], [ -123.033659181999937, 49.350696105000111 ], [ -123.03284160199992, 49.350674516000076 ], [ -123.03225848299995, 49.350793500000115 ], [ -123.032172223999922, 49.350811106000045 ], [ -123.031393082999955, 49.35080625700008 ], [ -123.031186431, 49.350804965000066 ], [ -123.030390375999929, 49.350799994000077 ], [ -123.030422370999972, 49.348798695000049 ], [ -123.030445784999941, 49.347897693000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64481917", "BldgCostT": "42786667", "sL_LossRatio": "0.753445820682984", "sL_AssetLoss": "744380", "sL_BldgLoss": "560850", "sL_StrLoss": "255830", "sL_NStrLoss": "305020", "sL_ContLoss": "183530", "geom_point": "0101000020E6100000DAE18EBB31C25EC08FFC0B4E0EAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033659181999937, 49.350696105000111 ], [ -123.035866680999959, 49.350722388000094 ], [ -123.037737399999955, 49.350785290000019 ], [ -123.03773663199999, 49.350795061000049 ], [ -123.037653099999915, 49.35184399600012 ], [ -123.037051212999984, 49.351850009000074 ], [ -123.036024894999983, 49.352335311000033 ], [ -123.032903513999941, 49.353960904000076 ], [ -123.032455166999924, 49.354147383000033 ], [ -123.03218218, 49.354260891000109 ], [ -123.031891906999974, 49.353936800000014 ], [ -123.032015897999955, 49.353098106000068 ], [ -123.032172223999922, 49.350811106000045 ], [ -123.03225848299995, 49.350793500000115 ], [ -123.03284160199992, 49.350674516000076 ], [ -123.033659181999937, 49.350696105000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70704833", "BldgCostT": "45818333", "sL_LossRatio": "0.71723147682872", "sL_AssetLoss": "949257", "sL_BldgLoss": "680837", "sL_StrLoss": "322867", "sL_NStrLoss": "357970", "sL_ContLoss": "268420", "geom_point": "0101000020E6100000844446ACEAC15EC02005913D29AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02758311299999, 49.353619403000081 ], [ -123.027311784999966, 49.353085015000026 ], [ -123.027365806999967, 49.352888388000032 ], [ -123.02749618199999, 49.352722594000056 ], [ -123.02807738099996, 49.352202697000024 ], [ -123.028211481999989, 49.352107293000117 ], [ -123.02833412699999, 49.351891799000057 ], [ -123.028381106999959, 49.351695903000163 ], [ -123.028391111999937, 49.350745880000076 ], [ -123.030192544999949, 49.350794636000046 ], [ -123.030390375999929, 49.350799994000077 ], [ -123.031186431, 49.350804965000066 ], [ -123.031393082999955, 49.35080625700008 ], [ -123.032172223999922, 49.350811106000045 ], [ -123.032015897999955, 49.353098106000068 ], [ -123.031891906999974, 49.353936800000014 ], [ -123.03218218, 49.354260891000109 ], [ -123.03142604599995, 49.354533021000123 ], [ -123.03095208199997, 49.354703602000036 ], [ -123.030323487999951, 49.354910613000058 ], [ -123.02971661, 49.354972299000039 ], [ -123.029383587999973, 49.35497029600004 ], [ -123.029090502999964, 49.354968608000028 ], [ -123.028707112999982, 49.354872489000087 ], [ -123.02846319199989, 49.354770292000062 ], [ -123.028302416999935, 49.354658692000029 ], [ -123.02758311299999, 49.353619403000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121129040", "BldgCostT": "74575017", "sL_LossRatio": "0.694642185321521", "sL_AssetLoss": "2711180", "sL_BldgLoss": "1883300", "sL_StrLoss": "758820", "sL_NStrLoss": "1124480", "sL_ContLoss": "827880", "geom_point": "0101000020E61000005E19AFD44EC25EC0B0DD24A356A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.032254587999972, 49.323800891000104 ], [ -123.032709367999956, 49.323284120000068 ], [ -123.033167096999975, 49.322763984000019 ], [ -123.033491281999929, 49.322599094000097 ], [ -123.034590014999964, 49.322454501000067 ], [ -123.034816810999956, 49.32245719600013 ], [ -123.035327204999987, 49.32211181000006 ], [ -123.035497600999946, 49.321921007000071 ], [ -123.035599006999945, 49.321691404000056 ], [ -123.03586958299995, 49.321266496000071 ], [ -123.03575268900002, 49.320578707000074 ], [ -123.038523196, 49.320598004000068 ], [ -123.039297184999938, 49.320603901000084 ], [ -123.040163201999945, 49.32061407900013 ], [ -123.040788100000015, 49.321791290000142 ], [ -123.038473078999971, 49.321746799000032 ], [ -123.038429095999959, 49.322779614000083 ], [ -123.038382497000015, 49.32380961300008 ], [ -123.038336289999933, 49.324855891000013 ], [ -123.037323610999977, 49.324837100000117 ], [ -123.035232485999927, 49.323871892000057 ], [ -123.034847090999932, 49.324330531000037 ], [ -123.03441651699994, 49.324842903000096 ], [ -123.033925714999967, 49.325416702000034 ], [ -123.033606690999974, 49.325479999000031 ], [ -123.03270860299989, 49.325412109000062 ], [ -123.032211012999937, 49.325362392000066 ], [ -123.031856701, 49.325202290000036 ], [ -123.031616091999922, 49.324856092000061 ], [ -123.031636008999968, 49.324545882000031 ], [ -123.032254587999972, 49.323800891000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94907583", "BldgCostT": "62328333", "sL_LossRatio": "0.714601516213289", "sL_AssetLoss": "1569700", "sL_BldgLoss": "1121710", "sL_StrLoss": "476090", "sL_NStrLoss": "645620", "sL_ContLoss": "447990", "geom_point": "0101000020E6100000B101C75470C25EC0D16851239DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036415710999975, 49.326987402000078 ], [ -123.034778283999941, 49.326603797000075 ], [ -123.033906012999978, 49.326325899000025 ], [ -123.033421909999973, 49.326259500000027 ], [ -123.032799122999918, 49.326253195000099 ], [ -123.032667309999923, 49.326270286000067 ], [ -123.03264860199999, 49.325811306000091 ], [ -123.03270860299989, 49.325412109000062 ], [ -123.033606690999974, 49.325479999000031 ], [ -123.033925714999967, 49.325416702000034 ], [ -123.03441651699994, 49.324842903000096 ], [ -123.034847090999932, 49.324330531000037 ], [ -123.035232485999927, 49.323871892000057 ], [ -123.037323610999977, 49.324837100000117 ], [ -123.038336289999933, 49.324855891000013 ], [ -123.038382497000015, 49.32380961300008 ], [ -123.038429095999959, 49.322779614000083 ], [ -123.038473078999971, 49.321746799000032 ], [ -123.040788100000015, 49.321791290000142 ], [ -123.040877224999988, 49.322341562000091 ], [ -123.040966413999982, 49.322832895000033 ], [ -123.041146805, 49.32384299700005 ], [ -123.041091, 49.324046421000077 ], [ -123.040889487999948, 49.324952574000115 ], [ -123.040893178999909, 49.325065453000029 ], [ -123.040702000999943, 49.325960072000022 ], [ -123.040740130999922, 49.325959516000054 ], [ -123.040787371999954, 49.32595881400006 ], [ -123.041142274999942, 49.325959509000036 ], [ -123.041128693999951, 49.326387012000076 ], [ -123.041206201999969, 49.326508903000096 ], [ -123.041301319999917, 49.326570892000035 ], [ -123.041130802999959, 49.326720297000101 ], [ -123.041102723999956, 49.32685157700007 ], [ -123.04163519399998, 49.326835917000047 ], [ -123.041489093999957, 49.327024796000075 ], [ -123.041279806999952, 49.327295390000074 ], [ -123.040707702999967, 49.327787692000037 ], [ -123.03997311199997, 49.327399191000033 ], [ -123.039481311999936, 49.327237190000126 ], [ -123.03917559599995, 49.327177411000044 ], [ -123.03823808099996, 49.327144498000074 ], [ -123.036990293999978, 49.327037403000134 ], [ -123.036415710999975, 49.326987402000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46759250", "BldgCostT": "29540000", "sL_LossRatio": "0.701059034675508", "sL_AssetLoss": "729910", "sL_BldgLoss": "511710", "sL_StrLoss": "215290", "sL_NStrLoss": "296420", "sL_ContLoss": "218200", "geom_point": "0101000020E61000003119C892BDC25EC0418AE874ACA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041489093999957, 49.327024796000075 ], [ -123.04163519399998, 49.326835917000047 ], [ -123.041102723999956, 49.32685157700007 ], [ -123.041130802999959, 49.326720297000101 ], [ -123.041301319999917, 49.326570892000035 ], [ -123.041206201999969, 49.326508903000096 ], [ -123.041128693999951, 49.326387012000076 ], [ -123.041142274999942, 49.325959509000036 ], [ -123.040787371999954, 49.32595881400006 ], [ -123.040740130999922, 49.325959516000054 ], [ -123.040702000999943, 49.325960072000022 ], [ -123.040893178999909, 49.325065453000029 ], [ -123.040889487999948, 49.324952574000115 ], [ -123.041091, 49.324046421000077 ], [ -123.041146805, 49.32384299700005 ], [ -123.040966413999982, 49.322832895000033 ], [ -123.041124285999956, 49.32283719400003 ], [ -123.041607218999971, 49.322965702000062 ], [ -123.041959189999915, 49.32316271100013 ], [ -123.042114670999936, 49.323344720000051 ], [ -123.042287951999924, 49.323547551000061 ], [ -123.042784779, 49.324129200000115 ], [ -123.043849386000019, 49.325109710000085 ], [ -123.04391789499999, 49.325172814000027 ], [ -123.044124284, 49.325362905000084 ], [ -123.045026201, 49.325888410000083 ], [ -123.045609326999966, 49.326171801000029 ], [ -123.045894306999969, 49.326384103000088 ], [ -123.046015283999949, 49.326535996000075 ], [ -123.046092691999945, 49.326639001000018 ], [ -123.046162505999931, 49.326882298000022 ], [ -123.046161832999985, 49.326979272000088 ], [ -123.043455723999969, 49.327129918 ], [ -123.042421522999945, 49.327147178000125 ], [ -123.041489093999957, 49.327024796000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39133501", "BldgCostT": "25305001", "sL_LossRatio": "0.729114400268844", "sL_AssetLoss": "473137", "sL_BldgLoss": "344971", "sL_StrLoss": "154771", "sL_NStrLoss": "190200", "sL_ContLoss": "128166", "geom_point": "0101000020E61000002FB89BB7DCC25EC061B2E17EFAA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041279806999952, 49.327295390000074 ], [ -123.041489093999957, 49.327024796000075 ], [ -123.042421522999945, 49.327147178000125 ], [ -123.043455723999969, 49.327129918 ], [ -123.046161832999985, 49.326979272000088 ], [ -123.047600012999951, 49.326733300000051 ], [ -123.04784761699996, 49.326977707000061 ], [ -123.048769691999965, 49.327634407000097 ], [ -123.048769193999959, 49.328225290000084 ], [ -123.04744931299993, 49.328212586000106 ], [ -123.046144386, 49.328201296000096 ], [ -123.046087092999983, 49.328495109000102 ], [ -123.045775707999937, 49.328783895000115 ], [ -123.045426694999989, 49.329035509000043 ], [ -123.045322607999978, 49.329157005000049 ], [ -123.045300469999972, 49.329253591000025 ], [ -123.045240588999917, 49.329515010000065 ], [ -123.045226822999908, 49.32951552500009 ], [ -123.045101213999956, 49.329520293000044 ], [ -123.044827669999989, 49.329530676000083 ], [ -123.044661398999935, 49.329537001000077 ], [ -123.044505971999953, 49.329524206000038 ], [ -123.044371444999967, 49.329513132000045 ], [ -123.044250784999974, 49.329503198000019 ], [ -123.04383229799997, 49.329398991000069 ], [ -123.043197605000017, 49.329105190000028 ], [ -123.042742312999948, 49.328864746000058 ], [ -123.042384037999966, 49.328675485000126 ], [ -123.041605894999961, 49.328264505000128 ], [ -123.040707702999967, 49.327787692000037 ], [ -123.041279806999952, 49.327295390000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142431417", "BldgCostT": "92651667", "sL_LossRatio": "0.697875835199766", "sL_AssetLoss": "3195044", "sL_BldgLoss": "2229744", "sL_StrLoss": "932924", "sL_NStrLoss": "1296820", "sL_ContLoss": "965300", "geom_point": "0101000020E61000008191B0D211C35EC0C479ACD77CA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.053248595999946, 49.327245965000074 ], [ -123.053246895999948, 49.327077882000097 ], [ -123.051834362999969, 49.327144021000024 ], [ -123.051348531999949, 49.327166761000043 ], [ -123.051137221999937, 49.327176654000041 ], [ -123.050621302999929, 49.327549913000041 ], [ -123.048769691999965, 49.327634407000097 ], [ -123.04784761699996, 49.326977707000061 ], [ -123.047600012999951, 49.326733300000051 ], [ -123.046161832999985, 49.326979272000088 ], [ -123.046162505999931, 49.326882298000022 ], [ -123.046092691999945, 49.326639001000018 ], [ -123.046015283999949, 49.326535996000075 ], [ -123.045894306999969, 49.326384103000088 ], [ -123.045609326999966, 49.326171801000029 ], [ -123.045026201, 49.325888410000083 ], [ -123.044124284, 49.325362905000084 ], [ -123.04391789499999, 49.325172814000027 ], [ -123.043849386000019, 49.325109710000085 ], [ -123.042784779, 49.324129200000115 ], [ -123.042287951999924, 49.323547551000061 ], [ -123.042114670999936, 49.323344720000051 ], [ -123.041959189999915, 49.32316271100013 ], [ -123.041607218999971, 49.322965702000062 ], [ -123.041124285999956, 49.32283719400003 ], [ -123.040966413999982, 49.322832895000033 ], [ -123.040877224999988, 49.322341562000091 ], [ -123.040788100000015, 49.321791290000142 ], [ -123.040163201999945, 49.32061407900013 ], [ -123.041716267999973, 49.320719663000141 ], [ -123.041891650999929, 49.320713565000077 ], [ -123.044883170999981, 49.320609329000014 ], [ -123.046272304999917, 49.320672287000129 ], [ -123.047225979999936, 49.320677831000104 ], [ -123.04860405, 49.320685841000049 ], [ -123.048629719999909, 49.320685981000061 ], [ -123.050708110999906, 49.32069798600007 ], [ -123.050695600999958, 49.321845999000097 ], [ -123.050685320999946, 49.322892301000081 ], [ -123.050677018999963, 49.323930599000086 ], [ -123.050672797999937, 49.324363703000159 ], [ -123.050667114999925, 49.324949894000035 ], [ -123.051179994999984, 49.324956926000034 ], [ -123.054643391999946, 49.325004305000078 ], [ -123.054630396999926, 49.326053291000051 ], [ -123.056239485, 49.326060192000099 ], [ -123.056181406999926, 49.32643329800004 ], [ -123.0560686099999, 49.326801296000049 ], [ -123.055803298999948, 49.327317388000033 ], [ -123.05540939299999, 49.327743112000071 ], [ -123.055318791999966, 49.327841 ], [ -123.055089874999936, 49.328022106000098 ], [ -123.054812189999922, 49.328235214000095 ], [ -123.054441291, 49.328443110000109 ], [ -123.054430540999974, 49.328448902000019 ], [ -123.053636289999957, 49.328878702000033 ], [ -123.053596188999933, 49.328899136000054 ], [ -123.053560896999969, 49.328917104000077 ], [ -123.053509200999954, 49.328864404000043 ], [ -123.053398337999965, 49.328753678000041 ], [ -123.05326141099998, 49.328616880000041 ], [ -123.053261152999951, 49.328616621000052 ], [ -123.053023090999943, 49.328244992000059 ], [ -123.053033986999964, 49.327502604000095 ], [ -123.053244631999959, 49.327250671000044 ], [ -123.053248595999946, 49.327245965000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90418749", "BldgCostT": "59199999", "sL_LossRatio": "0.743832982823515", "sL_AssetLoss": "1107910", "sL_BldgLoss": "824100", "sL_StrLoss": "368750", "sL_NStrLoss": "455350", "sL_ContLoss": "283810", "geom_point": "0101000020E61000005F7903AB2EC35EC02789E3C81CAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046166990999964, 49.329551112000068 ], [ -123.045602795000022, 49.329510498000026 ], [ -123.045240588999917, 49.329515010000065 ], [ -123.045300469999972, 49.329253591000025 ], [ -123.045322607999978, 49.329157005000049 ], [ -123.045426694999989, 49.329035509000043 ], [ -123.045775707999937, 49.328783895000115 ], [ -123.046087092999983, 49.328495109000102 ], [ -123.046144386, 49.328201296000096 ], [ -123.04744931299993, 49.328212586000106 ], [ -123.048769193999959, 49.328225290000084 ], [ -123.048769691999965, 49.327634407000097 ], [ -123.050621302999929, 49.327549913000041 ], [ -123.051137221999937, 49.327176654000041 ], [ -123.051348531999949, 49.327166761000043 ], [ -123.051834362999969, 49.327144021000024 ], [ -123.053246895999948, 49.327077882000097 ], [ -123.053248595999946, 49.327245965000074 ], [ -123.053244631999959, 49.327250671000044 ], [ -123.053033986999964, 49.327502604000095 ], [ -123.053023090999943, 49.328244992000059 ], [ -123.053261152999951, 49.328616621000052 ], [ -123.053134885999967, 49.329064358000011 ], [ -123.053134764, 49.329064809000094 ], [ -123.053109817999925, 49.329153403000092 ], [ -123.053099103999983, 49.329159183000066 ], [ -123.052810492, 49.329315501000082 ], [ -123.052799287999974, 49.329321393000022 ], [ -123.052788083999943, 49.32932728400008 ], [ -123.052720908999902, 49.329362585000041 ], [ -123.050552502999906, 49.330531097000119 ], [ -123.049127153999947, 49.331285907000073 ], [ -123.049088800999968, 49.331306194000085 ], [ -123.048994092999976, 49.331237908000055 ], [ -123.048154396999948, 49.330639412000039 ], [ -123.047305211999983, 49.330041605000119 ], [ -123.047035008999941, 49.329856619000033 ], [ -123.046955809999957, 49.329802402000041 ], [ -123.046454518999937, 49.329595004000055 ], [ -123.046380817999975, 49.329583741000064 ], [ -123.046166990999964, 49.329551112000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111339978", "BldgCostT": "74404857", "sL_LossRatio": "0.724535063868443", "sL_AssetLoss": "1607210", "sL_BldgLoss": "1164480", "sL_StrLoss": "523700", "sL_NStrLoss": "640780", "sL_ContLoss": "442730", "geom_point": "0101000020E6100000B1BD16F45EC35EC041EC330453A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0517903, 49.320704103 ], [ -123.054680612999974, 49.320720795000092 ], [ -123.054678184999915, 49.320823402000087 ], [ -123.054635287999972, 49.321865197000129 ], [ -123.054641280999959, 49.322918305000044 ], [ -123.054656910999981, 49.323970709000051 ], [ -123.054643391999946, 49.325004305000078 ], [ -123.051179994999984, 49.324956926000034 ], [ -123.050667114999925, 49.324949894000035 ], [ -123.050672797999937, 49.324363703000159 ], [ -123.050677018999963, 49.323930599000086 ], [ -123.050685320999946, 49.322892301000081 ], [ -123.050695600999958, 49.321845999000097 ], [ -123.050708110999906, 49.32069798600007 ], [ -123.0517903, 49.320704103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182346834", "BldgCostT": "121163334", "sL_LossRatio": "0.72698883810703", "sL_AssetLoss": "2196760", "sL_BldgLoss": "1597020", "sL_StrLoss": "653550", "sL_NStrLoss": "943470", "sL_ContLoss": "599740", "geom_point": "0101000020E610000022D9E1B7BAC35EC00F97FB6861A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059987791999973, 49.321904696000075 ], [ -123.063025605999897, 49.321983703000058 ], [ -123.063000075999952, 49.322993595000092 ], [ -123.062969986999974, 49.32405290100008 ], [ -123.059947002999976, 49.324021995000166 ], [ -123.057499679999978, 49.323980603000059 ], [ -123.05627909899998, 49.323986102000049 ], [ -123.056279201999985, 49.325023706000074 ], [ -123.056239485, 49.326060192000099 ], [ -123.054630396999926, 49.326053291000051 ], [ -123.054643391999946, 49.325004305000078 ], [ -123.054656910999981, 49.323970709000051 ], [ -123.054641280999959, 49.322918305000044 ], [ -123.054635287999972, 49.321865197000129 ], [ -123.056330800999945, 49.321874509000111 ], [ -123.057545803999986, 49.321867989000069 ], [ -123.059987791999973, 49.321904696000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191109250", "BldgCostT": "121600000", "sL_LossRatio": "0.751371814538515", "sL_AssetLoss": "1581482", "sL_BldgLoss": "1188281", "sL_StrLoss": "592011", "sL_NStrLoss": "596270", "sL_ContLoss": "393201", "geom_point": "0101000020E6100000D386CB43C9C35EC0020A50AE04AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055961041999979, 49.330964253000062 ], [ -123.055343712999914, 49.330630201000041 ], [ -123.054889396999968, 49.330309781000082 ], [ -123.054148106999961, 49.329635697000128 ], [ -123.053742368999977, 49.32913919000007 ], [ -123.053560896999969, 49.328917104000077 ], [ -123.053596188999933, 49.328899136000054 ], [ -123.053636289999957, 49.328878702000033 ], [ -123.054430540999974, 49.328448902000019 ], [ -123.054441291, 49.328443110000109 ], [ -123.054812189999922, 49.328235214000095 ], [ -123.055089874999936, 49.328022106000098 ], [ -123.055318791999966, 49.327841 ], [ -123.05540939299999, 49.327743112000071 ], [ -123.055803298999948, 49.327317388000033 ], [ -123.0560686099999, 49.326801296000049 ], [ -123.056181406999926, 49.32643329800004 ], [ -123.056239485, 49.326060192000099 ], [ -123.056279201999985, 49.325023706000074 ], [ -123.05627909899998, 49.323986102000049 ], [ -123.057499679999978, 49.323980603000059 ], [ -123.059947002999976, 49.324021995000166 ], [ -123.062969986999974, 49.32405290100008 ], [ -123.062942792999976, 49.325090585000083 ], [ -123.062913676999969, 49.32613460000006 ], [ -123.061473904999943, 49.326114616000041 ], [ -123.06033659499991, 49.326098809000065 ], [ -123.06036649399999, 49.32616899900011 ], [ -123.060846208, 49.326435998000072 ], [ -123.06113909699998, 49.326698798000059 ], [ -123.061262605999971, 49.326898590000056 ], [ -123.061307920999965, 49.32700463300008 ], [ -123.061377676999896, 49.327167841000062 ], [ -123.061827863999895, 49.328220995000045 ], [ -123.061913106999924, 49.32842041200005 ], [ -123.061950579000012, 49.329180855000061 ], [ -123.061998508999977, 49.330153811000052 ], [ -123.062807514999932, 49.330153283000108 ], [ -123.06278031, 49.331123486000088 ], [ -123.06586271299993, 49.331159497000044 ], [ -123.065849023999988, 49.331549111000086 ], [ -123.065859222999933, 49.331704712000047 ], [ -123.065865370999944, 49.331798565000099 ], [ -123.065878233999939, 49.331994556000076 ], [ -123.064387396999962, 49.332033598000038 ], [ -123.062786595999953, 49.332075706000076 ], [ -123.060457924999966, 49.332136891000061 ], [ -123.060259799, 49.332142109000067 ], [ -123.059765063999933, 49.332104412000113 ], [ -123.059653254999887, 49.332095896000077 ], [ -123.059523182999953, 49.332085996000025 ], [ -123.059489314999936, 49.332079821000022 ], [ -123.059238121999968, 49.332033950000074 ], [ -123.05806249499993, 49.331819299000102 ], [ -123.05745276299993, 49.331632999000078 ], [ -123.05722431099997, 49.331563180000025 ], [ -123.056551370999927, 49.331283697000082 ], [ -123.056141513999989, 49.331061921000128 ], [ -123.055961041999979, 49.330964253000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191240303", "BldgCostT": "125743746", "sL_LossRatio": "0.731394951565577", "sL_AssetLoss": "1990320", "sL_BldgLoss": "1455710", "sL_StrLoss": "656560", "sL_NStrLoss": "799150", "sL_ContLoss": "534610", "geom_point": "0101000020E61000009E30165D09C45EC03D8A9C5303A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063107917999986, 49.318862389000074 ], [ -123.066175514999912, 49.318900705000068 ], [ -123.06618081299996, 49.319903290000106 ], [ -123.066153610999933, 49.320876197000075 ], [ -123.066150997999969, 49.320960799000069 ], [ -123.066122875999966, 49.322011102000047 ], [ -123.063025605999897, 49.321983703000058 ], [ -123.059987791999973, 49.321904696000075 ], [ -123.059971801999964, 49.320900900000069 ], [ -123.05995110299996, 49.319839297000101 ], [ -123.060007321999947, 49.318823106000139 ], [ -123.063107917999986, 49.318862389000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216922447", "BldgCostT": "138450269", "sL_LossRatio": "0.737439523632304", "sL_AssetLoss": "1612200", "sL_BldgLoss": "1188900", "sL_StrLoss": "515800", "sL_NStrLoss": "673100", "sL_ContLoss": "423300", "geom_point": "0101000020E61000000F4D7E3055C45EC0C683672105A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066175514999912, 49.318900705000068 ], [ -123.069278089999926, 49.31892991800008 ], [ -123.069252982999956, 49.319934398000079 ], [ -123.069226007999987, 49.321014506000019 ], [ -123.069198176, 49.322040502000014 ], [ -123.066122875999966, 49.322011102000047 ], [ -123.066150997999969, 49.320960799000069 ], [ -123.066153610999933, 49.320876197000075 ], [ -123.06618081299996, 49.319903290000106 ], [ -123.066175514999912, 49.318900705000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "370246750", "BldgCostT": "251305000", "sL_LossRatio": "0.799408455013684", "sL_AssetLoss": "2941450", "sL_BldgLoss": "2351420", "sL_StrLoss": "1060620", "sL_NStrLoss": "1290800", "sL_ContLoss": "590030", "geom_point": "0101000020E61000007D8489F53CC45EC02A22FE1FAFA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066201893999974, 49.316789294000031 ], [ -123.069332838999955, 49.316824702000098 ], [ -123.069305812999929, 49.317861600000036 ], [ -123.069278089999926, 49.31892991800008 ], [ -123.066175514999912, 49.318900705000068 ], [ -123.063107917999986, 49.318862389000074 ], [ -123.063136891999989, 49.317797599000116 ], [ -123.063164401, 49.316756301000026 ], [ -123.066201893999974, 49.316789294000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233768307", "BldgCostT": "146467921", "sL_LossRatio": "0.713456523567843", "sL_AssetLoss": "2139780", "sL_BldgLoss": "1526640", "sL_StrLoss": "629070", "sL_NStrLoss": "897570", "sL_ContLoss": "613140", "geom_point": "0101000020E6100000774DB2BC88C45EC0BFFDF313D2A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069305812999929, 49.317861600000036 ], [ -123.072561981999925, 49.31789578300004 ], [ -123.07254966499994, 49.317919418000052 ], [ -123.072514104999982, 49.317987593000041 ], [ -123.072438318999943, 49.318132917000064 ], [ -123.07239893299996, 49.3189523940001 ], [ -123.072373309999989, 49.319966793000042 ], [ -123.069252982999956, 49.319934398000079 ], [ -123.069278089999926, 49.31892991800008 ], [ -123.069305812999929, 49.317861600000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325380772", "BldgCostT": "218599158", "sL_LossRatio": "0.802744378704666", "sL_AssetLoss": "1837210", "sL_BldgLoss": "1474810", "sL_StrLoss": "646530", "sL_NStrLoss": "828280", "sL_ContLoss": "362400", "geom_point": "0101000020E61000003122E6CC95C45EC0FFD83DDC82A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07053948199993, 49.315468512000045 ], [ -123.071418195999968, 49.3146232140001 ], [ -123.074473792000035, 49.315957111000039 ], [ -123.073958888999968, 49.316466400000095 ], [ -123.073107801, 49.317311618000076 ], [ -123.072561981999925, 49.31789578300004 ], [ -123.069305812999929, 49.317861600000036 ], [ -123.069332838999955, 49.316824702000098 ], [ -123.069334624999925, 49.316752694000066 ], [ -123.069453708999944, 49.316544288000102 ], [ -123.069495606999951, 49.316468799000063 ], [ -123.070359439999919, 49.315641112 ], [ -123.07053948199993, 49.315468512000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83065917", "BldgCostT": "55781667", "sL_LossRatio": "0.792676323270611", "sL_AssetLoss": "443220", "sL_BldgLoss": "351330", "sL_StrLoss": "171760", "sL_NStrLoss": "179570", "sL_ContLoss": "91890", "geom_point": "0101000020E610000077B16134C8C45EC09FA93A58BDA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074430811999946, 49.318968703000166 ], [ -123.074429614999957, 49.318770501000095 ], [ -123.074369289999979, 49.318679704000061 ], [ -123.074209898999968, 49.318589791000115 ], [ -123.072561981999925, 49.31789578300004 ], [ -123.073107801, 49.317311618000076 ], [ -123.07490140499999, 49.318095204 ], [ -123.075250821999987, 49.318115398000032 ], [ -123.075599801999914, 49.318033908000132 ], [ -123.07572378899998, 49.317966518000055 ], [ -123.075803479999976, 49.317923203000099 ], [ -123.075909199999955, 49.317818011000064 ], [ -123.076131794999966, 49.317907748000017 ], [ -123.076735410999973, 49.318151102000051 ], [ -123.075670187999947, 49.319206688000051 ], [ -123.075127580999933, 49.318999290000058 ], [ -123.074430811999946, 49.318968703000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271277000", "BldgCostT": "190070000", "sL_LossRatio": "0.914003858500808", "sL_AssetLoss": "1280290", "sL_BldgLoss": "1170190", "sL_StrLoss": "532290", "sL_NStrLoss": "637900", "sL_ContLoss": "110100", "geom_point": "0101000020E61000000D87CE00D1C45EC0998A22DE99A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07490140499999, 49.318095204 ], [ -123.073107801, 49.317311618000076 ], [ -123.073958888999968, 49.316466400000095 ], [ -123.074473792000035, 49.315957111000039 ], [ -123.076580546999949, 49.316879305000079 ], [ -123.077550807999927, 49.317304006000022 ], [ -123.077444808999985, 49.31741550800006 ], [ -123.076735410999973, 49.318151102000051 ], [ -123.076131794999966, 49.317907748000017 ], [ -123.075909199999955, 49.317818011000064 ], [ -123.075803479999976, 49.317923203000099 ], [ -123.07572378899998, 49.317966518000055 ], [ -123.075599801999914, 49.318033908000132 ], [ -123.075250821999987, 49.318115398000032 ], [ -123.07490140499999, 49.318095204 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "446405508", "BldgCostT": "306523459", "sL_LossRatio": "0.846870596974554", "sL_AssetLoss": "2476990", "sL_BldgLoss": "2097690", "sL_StrLoss": "920990", "sL_NStrLoss": "1176700", "sL_ContLoss": "379300", "geom_point": "0101000020E6100000242DC7F1E4C45EC0E091463F79A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074473792000035, 49.315957111000039 ], [ -123.075356591999963, 49.315089298000053 ], [ -123.078496001, 49.316449613000074 ], [ -123.07767910799997, 49.317189495000093 ], [ -123.077550807999927, 49.317304006000022 ], [ -123.076580546999949, 49.316879305000079 ], [ -123.074473792000035, 49.315957111000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "398906803", "BldgCostT": "270018746", "sL_LossRatio": "0.812768104970982", "sL_AssetLoss": "2615580", "sL_BldgLoss": "2125860", "sL_StrLoss": "897220", "sL_NStrLoss": "1228640", "sL_ContLoss": "489720", "geom_point": "0101000020E61000008B345CAAF3C45EC03E2851C45CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075356591999963, 49.315089298000053 ], [ -123.076273982999908, 49.31421609299999 ], [ -123.079373906999948, 49.315569915000061 ], [ -123.078496001, 49.316449613000074 ], [ -123.075356591999963, 49.315089298000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1012970539", "BldgCostT": "688838047", "sL_LossRatio": "0.825255617419651", "sL_AssetLoss": "5840760", "sL_BldgLoss": "4820120", "sL_StrLoss": "2170790", "sL_NStrLoss": "2649330", "sL_ContLoss": "1020640", "geom_point": "0101000020E61000003E7A2E19E8C45EC0820D2EA12BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073184808999912, 49.312891302000025 ], [ -123.07401828, 49.312105989000024 ], [ -123.077025286999969, 49.313424884000078 ], [ -123.08014748799998, 49.314795496000087 ], [ -123.079373906999948, 49.315569915000061 ], [ -123.076273982999908, 49.31421609299999 ], [ -123.073184808999912, 49.312891302000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299199614", "BldgCostT": "206076936", "sL_LossRatio": "0.856041872020567", "sL_AssetLoss": "1734810", "sL_BldgLoss": "1485070", "sL_StrLoss": "671550", "sL_NStrLoss": "813520", "sL_ContLoss": "249740", "geom_point": "0101000020E610000064FF5D1BC1C45EC011C248D430A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072307676999984, 49.3137574000001 ], [ -123.073184808999912, 49.312891302000025 ], [ -123.076273982999908, 49.31421609299999 ], [ -123.075356591999963, 49.315089298000053 ], [ -123.072307676999984, 49.3137574000001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "459223772", "BldgCostT": "313229158", "sL_LossRatio": "0.850552604262075", "sL_AssetLoss": "2620320", "sL_BldgLoss": "2228720", "sL_StrLoss": "1027470", "sL_NStrLoss": "1201250", "sL_ContLoss": "391600", "geom_point": "0101000020E6100000AFCFA466B2C45EC04A69703A4DA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071418195999968, 49.3146232140001 ], [ -123.072307676999984, 49.3137574000001 ], [ -123.075356591999963, 49.315089298000053 ], [ -123.074473792000035, 49.315957111000039 ], [ -123.071418195999968, 49.3146232140001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119350947", "BldgCostT": "69755269", "sL_LossRatio": "0.647575957957749", "sL_AssetLoss": "1436650", "sL_BldgLoss": "930340", "sL_StrLoss": "386270", "sL_NStrLoss": "544070", "sL_ContLoss": "506310", "geom_point": "0101000020E61000007F67FF2C6BC45EC01643D55C2CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065882902999959, 49.313573187 ], [ -123.065889779999949, 49.312552 ], [ -123.065904119999928, 49.312218196000053 ], [ -123.068370595999937, 49.313294903000013 ], [ -123.069264097999962, 49.312430996000067 ], [ -123.072307676999984, 49.3137574000001 ], [ -123.071418195999968, 49.3146232140001 ], [ -123.07053948199993, 49.315468512000045 ], [ -123.070359439999919, 49.315641112 ], [ -123.06730699399999, 49.314324296000116 ], [ -123.065835107999959, 49.313698900000126 ], [ -123.065445398999927, 49.313597406000021 ], [ -123.065882902999959, 49.313573187 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86562585", "BldgCostT": "52003335", "sL_LossRatio": "0.66480769934497", "sL_AssetLoss": "1366350", "sL_BldgLoss": "908360", "sL_StrLoss": "381120", "sL_NStrLoss": "527240", "sL_ContLoss": "457990", "geom_point": "0101000020E61000007E2EE7AD95C45EC0428F4A77F8A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070148813999978, 49.311576901000144 ], [ -123.070952286999955, 49.310787993000069 ], [ -123.07401828, 49.312105989000024 ], [ -123.073184808999912, 49.312891302000025 ], [ -123.072307676999984, 49.3137574000001 ], [ -123.069264097999962, 49.312430996000067 ], [ -123.070148813999978, 49.311576901000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123698624", "BldgCostT": "76578351", "sL_LossRatio": "0.741347279346227", "sL_AssetLoss": "931210", "sL_BldgLoss": "690350", "sL_StrLoss": "301480", "sL_NStrLoss": "388870", "sL_ContLoss": "240860", "geom_point": "0101000020E61000009AAE8AE4A9C45EC066DEAAEBD0A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070952286999955, 49.310787993000069 ], [ -123.07175000700002, 49.310025104000047 ], [ -123.073424414999948, 49.310751383000131 ], [ -123.074771112999912, 49.311335500000041 ], [ -123.07401828, 49.312105989000024 ], [ -123.070952286999955, 49.310787993000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "579117343", "BldgCostT": "401316794", "sL_LossRatio": "0.865756914879335", "sL_AssetLoss": "3351830", "sL_BldgLoss": "2901870", "sL_StrLoss": "1360810", "sL_NStrLoss": "1541060", "sL_ContLoss": "449960", "geom_point": "0101000020E61000006C1DA02472C45EC022C4F8DDB2A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.067977006999968, 49.309495011000102 ], [ -123.068761096999964, 49.308729894000074 ], [ -123.07175000700002, 49.310025104000047 ], [ -123.070952286999955, 49.310787993000069 ], [ -123.070148813999978, 49.311576901000144 ], [ -123.067180604999976, 49.310236185000072 ], [ -123.067977006999968, 49.309495011000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "742482154", "BldgCostT": "507976953", "sL_LossRatio": "0.852101861642615", "sL_AssetLoss": "4558340", "sL_BldgLoss": "3884170", "sL_StrLoss": "1790480", "sL_NStrLoss": "2093690", "sL_ContLoss": "674170", "geom_point": "0101000020E6100000CA5556478CC45EC0CD3EDA2880A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070194823999941, 49.307319971000034 ], [ -123.070349520999926, 49.307163505000098 ], [ -123.072741207999982, 49.308201110000063 ], [ -123.073361090999953, 49.308467315 ], [ -123.072586079999951, 49.309242596000075 ], [ -123.07175000700002, 49.310025104000047 ], [ -123.068761096999964, 49.308729894000074 ], [ -123.069567396999986, 49.307940298000062 ], [ -123.070061917999922, 49.30745404000006 ], [ -123.070074689999899, 49.307441503000099 ], [ -123.070194823999941, 49.307319971000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3528417", "BldgCostT": "1961667", "sL_LossRatio": "0.587046505965425", "sL_AssetLoss": "41070", "sL_BldgLoss": "24110", "sL_StrLoss": "9090", "sL_NStrLoss": "15020", "sL_ContLoss": "16960", "geom_point": "0101000020E6100000C723C0027BC25EC094247CAD53A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038327588999906, 49.301464066000101 ], [ -123.038669230999929, 49.298216502000031 ], [ -123.039364091999971, 49.298299694000065 ], [ -123.03896757699999, 49.299289594000101 ], [ -123.038882331999901, 49.299745396000091 ], [ -123.038895272999952, 49.299542826000057 ], [ -123.038588018999945, 49.29954292800015 ], [ -123.03858844, 49.300082637000045 ], [ -123.038819272999945, 49.300082560000099 ], [ -123.038775802999936, 49.300314986000089 ], [ -123.038304476999912, 49.301753319000085 ], [ -123.038327588999906, 49.301464066000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "276054517", "BldgCostT": "154711265", "sL_LossRatio": "0.58909755433726", "sL_AssetLoss": "8487270", "sL_BldgLoss": "4999830", "sL_StrLoss": "1655250", "sL_NStrLoss": "3344580", "sL_ContLoss": "3487440", "geom_point": "0101000020E6100000C0FEF34D7DC35EC0423FBF9426A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072741207999982, 49.308201110000063 ], [ -123.070349520999926, 49.307163505000098 ], [ -123.070194823999941, 49.307319971000034 ], [ -123.070074689999899, 49.307441503000099 ], [ -123.06632252699994, 49.305868483000062 ], [ -123.066295777999969, 49.305857298000078 ], [ -123.066143180999944, 49.305879298 ], [ -123.066121001999988, 49.306447001000059 ], [ -123.066108921999913, 49.306746592000096 ], [ -123.066075611999977, 49.307620292000102 ], [ -123.066073389999971, 49.308675003000083 ], [ -123.065788307, 49.30855189400009 ], [ -123.063259495999958, 49.308529185000054 ], [ -123.061629290999946, 49.308495604000036 ], [ -123.060243908999936, 49.308505692000033 ], [ -123.057142704999947, 49.308443709000088 ], [ -123.05652747699996, 49.308439938000028 ], [ -123.053390582999967, 49.308420677000122 ], [ -123.051723896999931, 49.308410396000099 ], [ -123.050167602999963, 49.308383194000044 ], [ -123.050153850999948, 49.308383008000121 ], [ -123.049882843999953, 49.308379244000037 ], [ -123.048561884999913, 49.308360912000062 ], [ -123.048341856000022, 49.308357868000023 ], [ -123.04753028199994, 49.308346579000045 ], [ -123.046948404999952, 49.308338486000082 ], [ -123.045618249999947, 49.308332391000135 ], [ -123.044968811999965, 49.308329405000038 ], [ -123.043680202999951, 49.3080076950001 ], [ -123.0405156959999, 49.307214901000044 ], [ -123.039408955999988, 49.306969672000037 ], [ -123.039118025000022, 49.306905205000064 ], [ -123.039412989999931, 49.306386394000121 ], [ -123.039397919999928, 49.306098704000071 ], [ -123.038751884999925, 49.305190103000058 ], [ -123.038682595999958, 49.30482119600002 ], [ -123.038941614, 49.303149198000021 ], [ -123.038886807999972, 49.302069607000057 ], [ -123.039462707, 49.300431794000083 ], [ -123.03973711299993, 49.29979369600003 ], [ -123.03991668599997, 49.299846395000102 ], [ -123.039903307999964, 49.300000200000085 ], [ -123.039202010999986, 49.30193430700006 ], [ -123.039201884999926, 49.30242849500015 ], [ -123.040055785999968, 49.302455595000062 ], [ -123.04093451699994, 49.300080007000055 ], [ -123.04104410599993, 49.300098499000114 ], [ -123.041180719999943, 49.299721098000092 ], [ -123.041579386999956, 49.299504598000091 ], [ -123.042226297, 49.299729614000071 ], [ -123.042309012999965, 49.299944694000011 ], [ -123.042583682000014, 49.299792299000025 ], [ -123.042172618999984, 49.30036770300007 ], [ -123.042392401999976, 49.300430391000084 ], [ -123.041897116999934, 49.301061300000114 ], [ -123.04210380499994, 49.301123893000039 ], [ -123.042640806999913, 49.300538595000042 ], [ -123.04374048599999, 49.300888895000092 ], [ -123.04390530699996, 49.300699496000043 ], [ -123.04477888699995, 49.300970286000066 ], [ -123.044779057999932, 49.301159822000088 ], [ -123.045389585999942, 49.3011595830001 ], [ -123.04601719399993, 49.301354117000059 ], [ -123.046017263999886, 49.301429189000039 ], [ -123.046259091999957, 49.301429093000117 ], [ -123.046842742999928, 49.301609995000121 ], [ -123.046842827999967, 49.301698711000057 ], [ -123.047128607999966, 49.301698595000055 ], [ -123.047668300999987, 49.30186586600005 ], [ -123.047668398999946, 49.30196822900011 ], [ -123.047998137, 49.301968093000028 ], [ -123.04849386799999, 49.302121733000057 ], [ -123.04849416499998, 49.302425179000053 ], [ -123.047017580999949, 49.303415493000088 ], [ -123.046811079999927, 49.303298699000074 ], [ -123.045986195999944, 49.303829894000025 ], [ -123.047484688999958, 49.304297111000025 ], [ -123.050346194999989, 49.302909901000078 ], [ -123.051046485999947, 49.303124306000015 ], [ -123.055924568999927, 49.304617603000089 ], [ -123.055925842999955, 49.30574248700006 ], [ -123.055928095999917, 49.30574248700006 ], [ -123.055878887999967, 49.306056 ], [ -123.056648814999946, 49.305939199000079 ], [ -123.056689803999987, 49.306047404000061 ], [ -123.060774601999952, 49.30546069400004 ], [ -123.061477404999948, 49.305469186000046 ], [ -123.061958606999937, 49.305234201000069 ], [ -123.062315398999914, 49.305171495000067 ], [ -123.064296198999926, 49.305053293000107 ], [ -123.064515385999954, 49.304990693000057 ], [ -123.064931835999985, 49.304658361000101 ], [ -123.065000310999963, 49.304658322000087 ], [ -123.065003529999913, 49.304607505000043 ], [ -123.065003522999945, 49.304601154000075 ], [ -123.065024001999959, 49.304584811000026 ], [ -123.065974204999947, 49.304485090000071 ], [ -123.066366734999946, 49.304502037000141 ], [ -123.066799191999948, 49.304520704000069 ], [ -123.067128409999953, 49.304655999000076 ], [ -123.067211786999934, 49.304835394000058 ], [ -123.067445610999982, 49.3049081 ], [ -123.067924487999946, 49.304895607000077 ], [ -123.068394821999973, 49.30488635500005 ], [ -123.068792275999925, 49.304844324000044 ], [ -123.069132900999961, 49.304806364000065 ], [ -123.069319841999956, 49.304795076000111 ], [ -123.06961174499996, 49.304760630000054 ], [ -123.069739473999917, 49.304746403000088 ], [ -123.069901266999977, 49.304767545000033 ], [ -123.070426010999967, 49.304848919000058 ], [ -123.070456538999949, 49.304848840000091 ], [ -123.070637104999932, 49.304878443000085 ], [ -123.070700835999943, 49.304893303000036 ], [ -123.070760032999885, 49.304896277000061 ], [ -123.070837147, 49.304889577000118 ], [ -123.070908140999975, 49.304881665000018 ], [ -123.071003212999941, 49.304865342000085 ], [ -123.071144602999965, 49.304864070000079 ], [ -123.071272664999967, 49.304879672000062 ], [ -123.074061506999939, 49.306119827 ], [ -123.074167391999978, 49.306178254000017 ], [ -123.074223995999944, 49.306207091000012 ], [ -123.074242864999945, 49.306230185000068 ], [ -123.074265601999969, 49.306268171000028 ], [ -123.074256229999889, 49.306317343000096 ], [ -123.07424940599995, 49.306349440000119 ], [ -123.07423787099998, 49.306385868000099 ], [ -123.074196783999938, 49.30643710600004 ], [ -123.07410470799999, 49.306623644000055 ], [ -123.075964495000022, 49.30746590800004 ], [ -123.076585001999945, 49.307626898000088 ], [ -123.076739301999964, 49.30768989000012 ], [ -123.076753967999977, 49.307944111000076 ], [ -123.076983377999923, 49.309295670000076 ], [ -123.076854050999927, 49.309485252000073 ], [ -123.076625453999952, 49.30971240000008 ], [ -123.076403030999955, 49.309729644000079 ], [ -123.075571802999931, 49.310546590000087 ], [ -123.074771112999912, 49.311335500000041 ], [ -123.073424414999948, 49.310751383000131 ], [ -123.07175000700002, 49.310025104000047 ], [ -123.072586079999951, 49.309242596000075 ], [ -123.073361090999953, 49.308467315 ], [ -123.072741207999982, 49.308201110000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226188092", "BldgCostT": "149754118", "sL_LossRatio": "0.752122806930274", "sL_AssetLoss": "2010310", "sL_BldgLoss": "1512000", "sL_StrLoss": "652630", "sL_NStrLoss": "859370", "sL_ContLoss": "498310", "geom_point": "0101000020E610000063202AE851C45EC061377D876CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066143180999944, 49.305879298 ], [ -123.066295777999969, 49.305857298000078 ], [ -123.06632252699994, 49.305868483000062 ], [ -123.070074689999899, 49.307441503000099 ], [ -123.070061917999922, 49.30745404000006 ], [ -123.069567396999986, 49.307940298000062 ], [ -123.068761096999964, 49.308729894000074 ], [ -123.067977006999968, 49.309495011000102 ], [ -123.067180604999976, 49.310236185000072 ], [ -123.066014579999916, 49.309712795000067 ], [ -123.066073389999971, 49.308675003000083 ], [ -123.066075611999977, 49.307620292000102 ], [ -123.066108921999913, 49.306746592000096 ], [ -123.066121001999988, 49.306447001000059 ], [ -123.066143180999944, 49.305879298 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192165122", "BldgCostT": "128193705", "sL_LossRatio": "0.741824995167119", "sL_AssetLoss": "2017430", "sL_BldgLoss": "1496580", "sL_StrLoss": "657080", "sL_NStrLoss": "839500", "sL_ContLoss": "520850", "geom_point": "0101000020E6100000618ADE4E07C45EC0CE6AECD8A9A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065950495999942, 49.310986402000047 ], [ -123.065013703999938, 49.310577294000069 ], [ -123.064357771999937, 49.31056718800005 ], [ -123.063172683999966, 49.31054891200008 ], [ -123.060193986999963, 49.310527301000128 ], [ -123.057211783999932, 49.310494693000109 ], [ -123.057242700999922, 49.309467912000102 ], [ -123.057229782999926, 49.30891594100008 ], [ -123.057224892999955, 49.308708101000057 ], [ -123.057142704999947, 49.308443709000088 ], [ -123.060243908999936, 49.308505692000033 ], [ -123.061629290999946, 49.308495604000036 ], [ -123.063259495999958, 49.308529185000054 ], [ -123.065788307, 49.30855189400009 ], [ -123.066073389999971, 49.308675003000083 ], [ -123.066014579999916, 49.309712795000067 ], [ -123.067180604999976, 49.310236185000072 ], [ -123.070148813999978, 49.311576901000144 ], [ -123.069264097999962, 49.312430996000067 ], [ -123.065950495999942, 49.310986402000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129389312", "BldgCostT": "83043191", "sL_LossRatio": "0.706728040860079", "sL_AssetLoss": "1744490", "sL_BldgLoss": "1232880", "sL_StrLoss": "548030", "sL_NStrLoss": "684850", "sL_ContLoss": "511610", "geom_point": "0101000020E6100000B4F2D3D114C45EC081C324BFF2A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.060144801999982, 49.312494898000104 ], [ -123.060167916999902, 49.311524603000123 ], [ -123.060193986999963, 49.310527301000128 ], [ -123.063172683999966, 49.31054891200008 ], [ -123.064357771999937, 49.31056718800005 ], [ -123.065013703999938, 49.310577294000069 ], [ -123.065950495999942, 49.310986402000047 ], [ -123.069264097999962, 49.312430996000067 ], [ -123.068370595999937, 49.313294903000013 ], [ -123.065904119999928, 49.312218196000053 ], [ -123.065889779999949, 49.312552 ], [ -123.065882902999959, 49.313573187 ], [ -123.065445398999927, 49.313597406000021 ], [ -123.063222182999979, 49.313564904 ], [ -123.060116587, 49.313525408000075 ], [ -123.060144801999982, 49.312494898000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140853508", "BldgCostT": "87710784", "sL_LossRatio": "0.695131725981875", "sL_AssetLoss": "1709230", "sL_BldgLoss": "1188140", "sL_StrLoss": "518990", "sL_NStrLoss": "669150", "sL_ContLoss": "521090", "geom_point": "0101000020E610000068941E1B3BC45EC0BF2319285FA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063222182999979, 49.313564904 ], [ -123.065445398999927, 49.313597406000021 ], [ -123.065835107999959, 49.313698900000126 ], [ -123.06730699399999, 49.314324296000116 ], [ -123.070359439999919, 49.315641112 ], [ -123.069495606999951, 49.316468799000063 ], [ -123.069453708999944, 49.316544288000102 ], [ -123.069334624999925, 49.316752694000066 ], [ -123.069332838999955, 49.316824702000098 ], [ -123.066201893999974, 49.316789294000031 ], [ -123.063164401, 49.316756301000026 ], [ -123.063192609999987, 49.315725696000122 ], [ -123.063216782999973, 49.314692392000033 ], [ -123.063217603999988, 49.314136695000059 ], [ -123.063222182999979, 49.313564904 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59006999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "246000561", "BldgCostT": "168389614", "sL_LossRatio": "0.769650895840652", "sL_AssetLoss": "2447980", "sL_BldgLoss": "1884090", "sL_StrLoss": "810030", "sL_NStrLoss": "1074060", "sL_ContLoss": "563890", "geom_point": "0101000020E610000095495F6BE3C35EC0E4FF3CAA6DA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.060062114999965, 49.317765311000073 ], [ -123.060075903999945, 49.316723611000107 ], [ -123.057659695999973, 49.31669658800012 ], [ -123.057681185999954, 49.315664907000055 ], [ -123.05770069, 49.314643197000088 ], [ -123.05772200499996, 49.313505307000042 ], [ -123.060116587, 49.313525408000075 ], [ -123.063222182999979, 49.313564904 ], [ -123.063217603999988, 49.314136695000059 ], [ -123.063216782999973, 49.314692392000033 ], [ -123.063192609999987, 49.315725696000122 ], [ -123.063164401, 49.316756301000026 ], [ -123.063136891999989, 49.317797599000116 ], [ -123.063107917999986, 49.318862389000074 ], [ -123.060007321999947, 49.318823106000139 ], [ -123.060062114999965, 49.317765311000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136703917", "BldgCostT": "87081667", "sL_LossRatio": "0.708321471282302", "sL_AssetLoss": "1907343", "sL_BldgLoss": "1351012", "sL_StrLoss": "563132", "sL_NStrLoss": "787880", "sL_ContLoss": "556331", "geom_point": "0101000020E61000008EF53715A7C35EC044A4967BBBA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05475880099999, 49.316677883000075 ], [ -123.054771481, 49.315633413000036 ], [ -123.054786223999898, 49.314580005000018 ], [ -123.054801711999943, 49.313470711000072 ], [ -123.056563501999946, 49.313491698000085 ], [ -123.05712, 49.313499696000122 ], [ -123.05772200499996, 49.313505307000042 ], [ -123.05770069, 49.314643197000088 ], [ -123.057681185999954, 49.315664907000055 ], [ -123.057659695999973, 49.31669658800012 ], [ -123.060075903999945, 49.316723611000107 ], [ -123.060062114999965, 49.317765311000073 ], [ -123.060007321999947, 49.318823106000139 ], [ -123.05995110299996, 49.319839297000101 ], [ -123.059971801999964, 49.320900900000069 ], [ -123.059987791999973, 49.321904696000075 ], [ -123.057545803999986, 49.321867989000069 ], [ -123.056330800999945, 49.321874509000111 ], [ -123.054635287999972, 49.321865197000129 ], [ -123.054678184999915, 49.320823402000087 ], [ -123.054680612999974, 49.320720795000092 ], [ -123.05471391399999, 49.319785890000013 ], [ -123.05472869599997, 49.31877391400009 ], [ -123.054745411999988, 49.317709690000093 ], [ -123.05475880099999, 49.316677883000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133716084", "BldgCostT": "86363334", "sL_LossRatio": "0.706903121155709", "sL_AssetLoss": "1837140", "sL_BldgLoss": "1298680", "sL_StrLoss": "557490", "sL_NStrLoss": "741190", "sL_ContLoss": "538460", "geom_point": "0101000020E6100000A4139E0A57C35EC03F29287FD6A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051883816999961, 49.31664089700007 ], [ -123.05475880099999, 49.316677883000075 ], [ -123.054745411999988, 49.317709690000093 ], [ -123.05472869599997, 49.31877391400009 ], [ -123.05471391399999, 49.319785890000013 ], [ -123.054680612999974, 49.320720795000092 ], [ -123.0517903, 49.320704103 ], [ -123.050708110999906, 49.32069798600007 ], [ -123.048629719999909, 49.320685981000061 ], [ -123.04860405, 49.320685841000049 ], [ -123.048568308999961, 49.320171207000044 ], [ -123.048579115999956, 49.319722 ], [ -123.04856931099999, 49.318688682000072 ], [ -123.051828976999971, 49.318734398000117 ], [ -123.051854808999963, 49.317679497000093 ], [ -123.051883816999961, 49.31664089700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131667785", "BldgCostT": "85031504", "sL_LossRatio": "0.705617037574585", "sL_AssetLoss": "1984320", "sL_BldgLoss": "1400170", "sL_StrLoss": "583240", "sL_NStrLoss": "816930", "sL_ContLoss": "584150", "geom_point": "0101000020E610000042E3EC4A49C35EC00CA5CC5961A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054327520999962, 49.313465901000058 ], [ -123.054801711999943, 49.313470711000072 ], [ -123.054786223999898, 49.314580005000018 ], [ -123.054771481, 49.315633413000036 ], [ -123.05475880099999, 49.316677883000075 ], [ -123.051883816999961, 49.31664089700007 ], [ -123.051854808999963, 49.317679497000093 ], [ -123.047588384, 49.317633297000121 ], [ -123.048798398999935, 49.317098892000068 ], [ -123.047926585999917, 49.316254497000088 ], [ -123.047071401999943, 49.315429497000139 ], [ -123.050251900999982, 49.314015786000084 ], [ -123.049793686, 49.313608810000105 ], [ -123.049758551, 49.313411066000114 ], [ -123.051238213999966, 49.313429394000053 ], [ -123.051981718000022, 49.313437996000047 ], [ -123.054327520999962, 49.313465901000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284953720", "BldgCostT": "193860413", "sL_LossRatio": "0.770708233939294", "sL_AssetLoss": "2917680", "sL_BldgLoss": "2248680", "sL_StrLoss": "973350", "sL_NStrLoss": "1275330", "sL_ContLoss": "669000", "geom_point": "0101000020E61000000FFC98A4ECC25EC0AFE4DF3E5DA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049675927999928, 49.313410042000051 ], [ -123.049758551, 49.313411066000114 ], [ -123.049793686, 49.313608810000105 ], [ -123.050251900999982, 49.314015786000084 ], [ -123.047071401999943, 49.315429497000139 ], [ -123.047926585999917, 49.316254497000088 ], [ -123.048798398999935, 49.317098892000068 ], [ -123.047588384, 49.317633297000121 ], [ -123.04699414000001, 49.317897522000067 ], [ -123.045647681999924, 49.318496193000072 ], [ -123.04476949499994, 49.317664293000099 ], [ -123.043909996999915, 49.316843606000091 ], [ -123.043041706999972, 49.316009201000071 ], [ -123.042179924999971, 49.315181307000096 ], [ -123.041711993, 49.314711817000074 ], [ -123.041321533999934, 49.314321946000099 ], [ -123.043574151999948, 49.3133333910001 ], [ -123.044795468999922, 49.313348621000074 ], [ -123.04605464499997, 49.313364328000084 ], [ -123.046164573999945, 49.313365537000124 ], [ -123.048940476999988, 49.313400855000062 ], [ -123.049662543999958, 49.313409872000129 ], [ -123.049675927999928, 49.313410042000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173509167", "BldgCostT": "109376667", "sL_LossRatio": "0.72616761349354", "sL_AssetLoss": "1989100", "sL_BldgLoss": "1444420", "sL_StrLoss": "659960", "sL_NStrLoss": "784460", "sL_ContLoss": "544680", "geom_point": "0101000020E6100000EBAE70BB25C35EC011D75A2DEAA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04080815399999, 49.313294584000047 ], [ -123.045516210999921, 49.311194528000044 ], [ -123.046924707999949, 49.310566188000031 ], [ -123.046977366999968, 49.310538106000067 ], [ -123.047668984999973, 49.311512459000021 ], [ -123.05102798899999, 49.309994653000061 ], [ -123.05208249899999, 49.30951809800009 ], [ -123.052082908000017, 49.3094046000001 ], [ -123.054432625999979, 49.30943359300008 ], [ -123.054411021999911, 49.310465203000028 ], [ -123.054386509999958, 49.311457101000087 ], [ -123.054362698999938, 49.312436482000088 ], [ -123.052022107999974, 49.312413194 ], [ -123.051981718000022, 49.313437996000047 ], [ -123.051238213999966, 49.313429394000053 ], [ -123.049758551, 49.313411066000114 ], [ -123.049675927999928, 49.313410042000051 ], [ -123.049662543999958, 49.313409872000129 ], [ -123.048940476999988, 49.313400855000062 ], [ -123.046164573999945, 49.313365537000124 ], [ -123.04605464499997, 49.313364328000084 ], [ -123.044795468999922, 49.313348621000074 ], [ -123.043574151999948, 49.3133333910001 ], [ -123.04080815399999, 49.313294584000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156790917", "BldgCostT": "100931667", "sL_LossRatio": "0.724706263838153", "sL_AssetLoss": "1973710", "sL_BldgLoss": "1430360", "sL_StrLoss": "635970", "sL_NStrLoss": "794390", "sL_ContLoss": "543350", "geom_point": "0101000020E6100000EF214C17C3C25EC0F123B870A4A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.037239989999989, 49.31549721100005 ], [ -123.037307658999936, 49.315407290000039 ], [ -123.037319685999961, 49.315391317000099 ], [ -123.037465098999931, 49.315202567000028 ], [ -123.037686573999935, 49.314915166000091 ], [ -123.037993832999945, 49.314516336000075 ], [ -123.038023116999938, 49.314478398000055 ], [ -123.038128688999933, 49.314224596000052 ], [ -123.038150074999962, 49.313266803000012 ], [ -123.039127876999956, 49.313278762000074 ], [ -123.040344717999957, 49.313293593000033 ], [ -123.040573576999947, 49.313294111000104 ], [ -123.04080815399999, 49.313294584000047 ], [ -123.043574151999948, 49.3133333910001 ], [ -123.041321533999934, 49.314321946000099 ], [ -123.041711993, 49.314711817000074 ], [ -123.042179924999971, 49.315181307000096 ], [ -123.043041706999972, 49.316009201000071 ], [ -123.043909996999915, 49.316843606000091 ], [ -123.04476949499994, 49.317664293000099 ], [ -123.045647681999924, 49.318496193000072 ], [ -123.04699414000001, 49.317897522000067 ], [ -123.047588384, 49.317633297000121 ], [ -123.051854808999963, 49.317679497000093 ], [ -123.051828976999971, 49.318734398000117 ], [ -123.04856931099999, 49.318688682000072 ], [ -123.048579115999956, 49.319722 ], [ -123.048568308999961, 49.320171207000044 ], [ -123.04860405, 49.320685841000049 ], [ -123.047225979999936, 49.320677831000104 ], [ -123.046272304999917, 49.320672287000129 ], [ -123.044883170999981, 49.320609329000014 ], [ -123.041891650999929, 49.320713565000077 ], [ -123.041716267999973, 49.320719663000141 ], [ -123.040690132999899, 49.319425325000097 ], [ -123.040600067999947, 49.319311699000068 ], [ -123.038369847999888, 49.316498252000038 ], [ -123.037564808999946, 49.315730403000039 ], [ -123.037239989999989, 49.31549721100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119894392", "BldgCostT": "71071976", "sL_LossRatio": "0.624333941970652", "sL_AssetLoss": "3751550", "sL_BldgLoss": "2342220", "sL_StrLoss": "811280", "sL_NStrLoss": "1530940", "sL_ContLoss": "1409330", "geom_point": "0101000020E6100000A2890CE5E3C25EC036B3AE55ABA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038222591999926, 49.310518004000087 ], [ -123.038170809999954, 49.310116182000037 ], [ -123.038397009999969, 49.309949806000056 ], [ -123.038699322999932, 49.309427103000083 ], [ -123.038781397999983, 49.308689296000132 ], [ -123.038628913999972, 49.308114002000082 ], [ -123.038655895999966, 49.307718007000091 ], [ -123.039118025000022, 49.306905205000064 ], [ -123.039408955999988, 49.306969672000037 ], [ -123.0405156959999, 49.307214901000044 ], [ -123.043680202999951, 49.3080076950001 ], [ -123.044968811999965, 49.308329405000038 ], [ -123.045618249999947, 49.308332391000135 ], [ -123.046948404999952, 49.308338486000082 ], [ -123.04753028199994, 49.308346579000045 ], [ -123.048341856000022, 49.308357868000023 ], [ -123.048561884999913, 49.308360912000062 ], [ -123.049882843999953, 49.308379244000037 ], [ -123.050153850999948, 49.308383008000121 ], [ -123.050167602999963, 49.308383194000044 ], [ -123.051723896999931, 49.308410396000099 ], [ -123.053390582999967, 49.308420677000122 ], [ -123.05652747699996, 49.308439938000028 ], [ -123.057142704999947, 49.308443709000088 ], [ -123.057224892999955, 49.308708101000057 ], [ -123.057229782999926, 49.30891594100008 ], [ -123.057242700999922, 49.309467912000102 ], [ -123.057211783999932, 49.310494693000109 ], [ -123.054411021999911, 49.310465203000028 ], [ -123.054432625999979, 49.30943359300008 ], [ -123.052082908000017, 49.3094046000001 ], [ -123.05208249899999, 49.30951809800009 ], [ -123.05102798899999, 49.309994653000061 ], [ -123.047668984999973, 49.311512459000021 ], [ -123.046977366999968, 49.310538106000067 ], [ -123.046924707999949, 49.310566188000031 ], [ -123.045516210999921, 49.311194528000044 ], [ -123.04080815399999, 49.313294584000047 ], [ -123.040573576999947, 49.313294111000104 ], [ -123.040344717999957, 49.313293593000033 ], [ -123.039127876999956, 49.313278762000074 ], [ -123.038150074999962, 49.313266803000012 ], [ -123.038200800999931, 49.31134425100003 ], [ -123.038210533999973, 49.310975086000028 ], [ -123.038213426999917, 49.310865953000054 ], [ -123.038222591999926, 49.310518004000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215943543", "BldgCostT": "141979774", "sL_LossRatio": "0.746495526508908", "sL_AssetLoss": "2407851", "sL_BldgLoss": "1797450", "sL_StrLoss": "799080", "sL_NStrLoss": "998370", "sL_ContLoss": "610401", "geom_point": "0101000020E6100000CB01710DA2C35EC07F5F7547F3A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057211783999932, 49.310494693000109 ], [ -123.060193986999963, 49.310527301000128 ], [ -123.060167916999902, 49.311524603000123 ], [ -123.060144801999982, 49.312494898000104 ], [ -123.060116587, 49.313525408000075 ], [ -123.05772200499996, 49.313505307000042 ], [ -123.05712, 49.313499696000122 ], [ -123.056563501999946, 49.313491698000085 ], [ -123.054801711999943, 49.313470711000072 ], [ -123.054327520999962, 49.313465901000058 ], [ -123.051981718000022, 49.313437996000047 ], [ -123.052022107999974, 49.312413194 ], [ -123.054362698999938, 49.312436482000088 ], [ -123.054386509999958, 49.311457101000087 ], [ -123.054411021999911, 49.310465203000028 ], [ -123.057211783999932, 49.310494693000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18016334", "BldgCostT": "11953334", "sL_LossRatio": "0.669672853444952", "sL_AssetLoss": "726280", "sL_BldgLoss": "486370", "sL_StrLoss": "197470", "sL_NStrLoss": "288900", "sL_ContLoss": "239910", "geom_point": "0101000020E61000005ED4FE3952C25EC0CA4264260BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038054394999946, 49.310201807000055 ], [ -123.038170809999954, 49.310116182000037 ], [ -123.038222591999926, 49.310518004000087 ], [ -123.038213426999917, 49.310865953000054 ], [ -123.038210533999973, 49.310975086000028 ], [ -123.038200800999931, 49.31134425100003 ], [ -123.038150074999962, 49.313266803000012 ], [ -123.038128688999933, 49.314224596000052 ], [ -123.038023116999938, 49.314478398000055 ], [ -123.037993832999945, 49.314516336000075 ], [ -123.037686573999935, 49.314915166000091 ], [ -123.037465098999931, 49.315202567000028 ], [ -123.037319685999961, 49.315391317000099 ], [ -123.037307658999936, 49.315407290000039 ], [ -123.037239989999989, 49.31549721100005 ], [ -123.036993823, 49.315324716000077 ], [ -123.036327005999965, 49.314977696000042 ], [ -123.035005523000024, 49.314455669000068 ], [ -123.034942598999947, 49.314430794000053 ], [ -123.033924596999967, 49.31404710300005 ], [ -123.033762951999933, 49.313990307000061 ], [ -123.033492538999951, 49.313895285000093 ], [ -123.033693229999955, 49.313266663000078 ], [ -123.033858709999947, 49.312748307000078 ], [ -123.03432538899996, 49.311883803000072 ], [ -123.034641499999978, 49.311524901000119 ], [ -123.035399808999941, 49.311037896000109 ], [ -123.036018482999964, 49.310795799000047 ], [ -123.03656769899996, 49.310706013000072 ], [ -123.037503912999952, 49.31046249700006 ], [ -123.038054394999946, 49.310201807000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251329633", "BldgCostT": "140021016", "sL_LossRatio": "0.591780099201565", "sL_AssetLoss": "15011860", "sL_BldgLoss": "8883720", "sL_StrLoss": "2888120", "sL_NStrLoss": "5995600", "sL_ContLoss": "6128140", "geom_point": "0101000020E61000000E2E0520C5C05EC07FE518FBD8A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017277504999981, 49.310621532000035 ], [ -123.01756230700002, 49.310476511000097 ], [ -123.017546304999925, 49.30964813800005 ], [ -123.017539027999973, 49.309270630000071 ], [ -123.017536910999979, 49.309160697000017 ], [ -123.017534171999941, 49.308910961000066 ], [ -123.017530699999924, 49.308596075000032 ], [ -123.017526901999958, 49.308247988000119 ], [ -123.017534502, 49.308065389000028 ], [ -123.017520402999963, 49.307750594000076 ], [ -123.017506296999954, 49.307115217000103 ], [ -123.017740305999951, 49.306962214000052 ], [ -123.018084545999955, 49.306613251000023 ], [ -123.018408027999968, 49.306287111000067 ], [ -123.01847864299998, 49.306216096000078 ], [ -123.017932611999981, 49.306003794000041 ], [ -123.017874855999978, 49.30601212200002 ], [ -123.015703633999948, 49.306324744000015 ], [ -123.01440569699993, 49.306511592000057 ], [ -123.014758614999934, 49.307651803000113 ], [ -123.014614294999888, 49.307670303000094 ], [ -123.011417337999944, 49.307622442000067 ], [ -123.01084861599999, 49.307613898000106 ], [ -123.009271504999944, 49.307587283000089 ], [ -123.008176802999984, 49.307568795000066 ], [ -123.007706980999927, 49.307496453000084 ], [ -123.008262407999908, 49.3071590710001 ], [ -123.008102513, 49.307228949000063 ], [ -123.00770662399999, 49.307373065000093 ], [ -123.007539226999981, 49.307434012000044 ], [ -123.006800132999928, 49.307592784000121 ], [ -123.005932004, 49.307684008000102 ], [ -123.005770628999954, 49.307733586000026 ], [ -123.003654277999928, 49.307955857000067 ], [ -123.002561184999976, 49.308070626000088 ], [ -123.002005780999951, 49.308114596000095 ], [ -123.000429696999959, 49.308239337000032 ], [ -122.999423113999981, 49.308387026000077 ], [ -122.999160815999971, 49.308431115000104 ], [ -122.996934432999979, 49.308805165000116 ], [ -122.996467590999913, 49.308836322000104 ], [ -122.994112052999938, 49.308811334000062 ], [ -122.991428365000033, 49.30877895 ], [ -122.990868387999939, 49.308682381000089 ], [ -122.990826815, 49.307647169000084 ], [ -122.991278396999959, 49.307895386000027 ], [ -122.991401793999955, 49.308219208000047 ], [ -122.99173220499992, 49.308425983000099 ], [ -122.992750719999947, 49.308174306000097 ], [ -122.993643492999951, 49.30813830400011 ], [ -122.994441415999944, 49.307868595000038 ], [ -122.994690477999924, 49.307949596000093 ], [ -122.995061477999954, 49.308246498000081 ], [ -122.99594208099991, 49.308291500000109 ], [ -122.996946084999962, 49.308237506000054 ], [ -122.997579085999959, 49.307886694000068 ], [ -122.997868495999967, 49.307823809000041 ], [ -122.99899467699997, 49.307877493000063 ], [ -122.999669891999972, 49.307877809000104 ], [ -122.999807504999936, 49.307320003000029 ], [ -123.000233913999949, 49.306843596000114 ], [ -123.000246983999915, 49.306330801000058 ], [ -123.000122733999973, 49.306160412000075 ], [ -123.00021268899998, 49.306162910000104 ], [ -123.00021268799999, 49.306025874000142 ], [ -123.000111117999921, 49.306025874000142 ], [ -123.000343996999945, 49.305682807000046 ], [ -123.000467025999967, 49.304369704000102 ], [ -123.000728596999977, 49.304171691000128 ], [ -123.000887182999961, 49.304136892000045 ], [ -123.001011776999974, 49.304136890000109 ], [ -123.001320005, 49.304180303000038 ], [ -123.001444407999941, 49.304413905000025 ], [ -123.001553899999976, 49.304432386000087 ], [ -123.001967406999938, 49.30419029800003 ], [ -123.002353299, 49.304153200000044 ], [ -123.00258549099999, 49.303911094000085 ], [ -123.00258934599999, 49.303867011000072 ], [ -123.002688724999928, 49.303867009000079 ], [ -123.002688666999973, 49.302797464000044 ], [ -123.003123416999969, 49.302318899000134 ], [ -123.003666213999935, 49.30224785700004 ], [ -123.005164601999965, 49.302247800000018 ], [ -123.00516459899994, 49.302217850000012 ], [ -123.006616394999938, 49.302237715000118 ], [ -123.006809390999948, 49.30217501300006 ], [ -123.0069232699999, 49.301977853000061 ], [ -123.007227866999983, 49.301977835000116 ], [ -123.007227786999977, 49.301438126000086 ], [ -123.00764044099995, 49.301438099000059 ], [ -123.007640400999946, 49.301168245000042 ], [ -123.007227748999981, 49.301168271000051 ], [ -123.007227652999944, 49.300509741000056 ], [ -123.00739609399993, 49.300275516000021 ], [ -123.007428098, 49.300231013000044 ], [ -123.007744588999969, 49.300051508000145 ], [ -123.008060588999939, 49.300087107000046 ], [ -123.008183408999969, 49.300285091000049 ], [ -123.008362311999988, 49.302308909000089 ], [ -123.008486707, 49.302615082000038 ], [ -123.008665320999938, 49.30262360200004 ], [ -123.009271608999939, 49.302066796000098 ], [ -123.009009798999926, 49.301293391000065 ], [ -123.008954203999963, 49.300384797000078 ], [ -123.008692817999957, 49.299997408000102 ], [ -123.008251709999911, 49.299763809000098 ], [ -123.00742431799992, 49.299928929000011 ], [ -123.007302711999969, 49.299953196000082 ], [ -123.007227568999966, 49.299939577000067 ], [ -123.007227550999957, 49.299819 ], [ -123.006814909999903, 49.299819025000055 ], [ -123.006814799, 49.299009461000033 ], [ -123.006741044999956, 49.299009466000037 ], [ -123.00669928799995, 49.298917807000088 ], [ -123.00607989599996, 49.29885521200007 ], [ -123.005989514999897, 49.298876905000014 ], [ -123.005989498999952, 49.298739652000023 ], [ -123.005576866999888, 49.298739674000117 ], [ -123.005576897999916, 49.299009528000099 ], [ -123.00392636199993, 49.299009596000118 ], [ -123.003926383999925, 49.29927945100011 ], [ -123.001408057999981, 49.299279509000037 ], [ -123.00122370099993, 49.299044590000044 ], [ -123.001037922999927, 49.298923210000083 ], [ -123.001037914, 49.298469949000065 ], [ -123.001450542999962, 49.298469944000097 ], [ -123.001450534999918, 49.298200090000059 ], [ -123.00186316199995, 49.298200084 ], [ -123.00186315199997, 49.297930230000084 ], [ -123.003101025999925, 49.297930203000085 ], [ -123.003101008999977, 49.297660349000147 ], [ -123.005164123000014, 49.297660276000045 ], [ -123.005164094999913, 49.297390420000028 ], [ -123.00681457599994, 49.297390335000031 ], [ -123.006814525999957, 49.297035499000046 ], [ -123.007553577999943, 49.296850581000115 ], [ -123.008577587999937, 49.296850509000087 ], [ -123.00870669399994, 49.296921113000046 ], [ -123.008939178999981, 49.297244394000089 ], [ -123.009063493999975, 49.29762321300008 ], [ -123.009052329999946, 49.297660036000075 ], [ -123.008877724999948, 49.297660050000054 ], [ -123.008877765999955, 49.297885562000047 ], [ -123.008623195, 49.298046206000066 ], [ -123.00887788199999, 49.298534627 ], [ -123.008878112999966, 49.299818885000086 ], [ -123.009061562999989, 49.299818870000074 ], [ -123.009133087999913, 49.300060106000046 ], [ -123.00936749499995, 49.300231006000118 ], [ -123.009627885999976, 49.300149790000042 ], [ -123.009587477999972, 49.299340793000113 ], [ -123.009696499999961, 49.299279111000018 ], [ -123.009703287999969, 49.299279109000111 ], [ -123.009703286999979, 49.299275271000099 ], [ -123.009793911999935, 49.299223996000087 ], [ -123.010659287999928, 49.299215502000031 ], [ -123.01085299799999, 49.299457586000088 ], [ -123.010963278999967, 49.300572795000114 ], [ -123.011113788999978, 49.300672501000108 ], [ -123.011816404999962, 49.300501593000057 ], [ -123.013191308999978, 49.300518694000075 ], [ -123.014003213999942, 49.300114199000056 ], [ -123.014057188999971, 49.299916203000116 ], [ -123.013480192999978, 49.299205495000102 ], [ -123.013162713999961, 49.29834249200011 ], [ -123.013107202999947, 49.297919485000108 ], [ -123.013158066999935, 49.297864577000034 ], [ -123.013416629999981, 49.297871729000043 ], [ -123.013416592999974, 49.297730906000034 ], [ -123.01347841899991, 49.297713005000098 ], [ -123.014854110999977, 49.297667406000052 ], [ -123.015129, 49.297721504000066 ], [ -123.015788794999963, 49.298180115000093 ], [ -123.016408410999958, 49.298288300000124 ], [ -123.016724310999933, 49.298557503000069 ], [ -123.016999591999976, 49.298603098000051 ], [ -123.01737170799997, 49.298395206000052 ], [ -123.017468110999985, 49.298207185000109 ], [ -123.017454103999953, 49.297990707000082 ], [ -123.01741674499999, 49.297928933000073 ], [ -123.017955519999958, 49.297928850000105 ], [ -123.017955420999954, 49.297658994000059 ], [ -123.017542797999951, 49.297659058000107 ], [ -123.017542595999927, 49.297087107000088 ], [ -123.017674113999973, 49.297000907000054 ], [ -123.017865483999984, 49.297342693000054 ], [ -123.018099189999973, 49.297415309000051 ], [ -123.01814209599992, 49.296758710000077 ], [ -123.018278803999962, 49.296614897 ], [ -123.018423257999956, 49.296579504000057 ], [ -123.018599368999958, 49.296579475000073 ], [ -123.018745488999983, 49.296650499000087 ], [ -123.018828695999915, 49.296829998000071 ], [ -123.019215817999964, 49.298539004000098 ], [ -123.019420705999934, 49.298620211000049 ], [ -123.019416055999983, 49.297928613000096 ], [ -123.019616583999934, 49.297928579000015 ], [ -123.019874418999962, 49.299726800000037 ], [ -123.020014094999951, 49.299960414000068 ], [ -123.020356186999933, 49.300022992000017 ], [ -123.020521889999941, 49.299770901000088 ], [ -123.020178711999932, 49.298799600000045 ], [ -123.02021617399997, 49.296849058000113 ], [ -123.021474300999941, 49.296848832000123 ], [ -123.021594006999948, 49.296955290000042 ], [ -123.021668770999952, 49.297082481000103 ], [ -123.021669377999913, 49.298467922000071 ], [ -123.021256747999985, 49.29846799900006 ], [ -123.021256864999941, 49.298737853000041 ], [ -123.021669496999948, 49.298737776000088 ], [ -123.021669504999963, 49.298754432000059 ], [ -123.021237196999934, 49.299068803000054 ], [ -123.021525797999985, 49.29983360300011 ], [ -123.022076598999945, 49.299825095000052 ], [ -123.022311101999946, 49.300508701000055 ], [ -123.022158089999948, 49.300535702000033 ], [ -123.022929316, 49.302586600000033 ], [ -123.023399292999954, 49.303278800000058 ], [ -123.023714888999933, 49.303395590000072 ], [ -123.024044800999974, 49.303368501000087 ], [ -123.024264898999903, 49.303243199000079 ], [ -123.024402489999957, 49.302937005000068 ], [ -123.02438761199997, 49.302549601000116 ], [ -123.024195388999928, 49.302109514000065 ], [ -123.02456820499998, 49.302378698000048 ], [ -123.02465012199994, 49.302568102000073 ], [ -123.024691198999932, 49.303089313000044 ], [ -123.024581897999951, 49.303322889000071 ], [ -123.022311390999946, 49.304591893000115 ], [ -123.021388165999909, 49.305279320000054 ], [ -123.02100500899999, 49.305564606000054 ], [ -123.020565710999975, 49.305752608000077 ], [ -123.020194513999968, 49.306031795000095 ], [ -123.020222492999935, 49.306652699000068 ], [ -123.020607213999966, 49.307371901000081 ], [ -123.020746394999961, 49.308020006000035 ], [ -123.021061702999987, 49.308657987000139 ], [ -123.021022199999948, 49.309324489000112 ], [ -123.02075992099999, 49.309746098000154 ], [ -123.019370601999924, 49.310691801000047 ], [ -123.019317034999943, 49.310722657000042 ], [ -123.019230635999961, 49.310685148000097 ], [ -123.019216003999958, 49.310678794000076 ], [ -123.018931487999936, 49.310612405000072 ], [ -123.018473303999912, 49.310573698000077 ], [ -123.017983494999925, 49.31059801 ], [ -123.017056657999944, 49.310734004000061 ], [ -123.017277504999981, 49.310621532000035 ] ], [ [ -123.006403039999967, 49.305755842000089 ], [ -123.006403005, 49.305485988000036 ], [ -123.005577627999955, 49.305486031000036 ], [ -123.00557765799999, 49.305739795000079 ], [ -123.006752377999987, 49.305772356000084 ], [ -123.006753445999934, 49.30575582299999 ], [ -123.006403039999967, 49.305755842000089 ] ], [ [ -123.003926893999932, 49.305694017000064 ], [ -123.003926833999941, 49.304946391000037 ], [ -123.00227610099999, 49.304946434000037 ], [ -123.002276133999956, 49.305648214000037 ], [ -123.003926893999932, 49.305694017000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157678781", "BldgCostT": "98028603", "sL_LossRatio": "0.668286472148541", "sL_AssetLoss": "8011250", "sL_BldgLoss": "5353810", "sL_StrLoss": "2252110", "sL_NStrLoss": "3101700", "sL_ContLoss": "2657440", "geom_point": "0101000020E61000003ECCB82509C15EC04930EE697BA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017874855999978, 49.30601212200002 ], [ -123.017932611999981, 49.306003794000041 ], [ -123.01847864299998, 49.306216096000078 ], [ -123.018408027999968, 49.306287111000067 ], [ -123.018084545999955, 49.306613251000023 ], [ -123.017740305999951, 49.306962214000052 ], [ -123.017506296999954, 49.307115217000103 ], [ -123.017520402999963, 49.307750594000076 ], [ -123.017534502, 49.308065389000028 ], [ -123.017526901999958, 49.308247988000119 ], [ -123.017530699999924, 49.308596075000032 ], [ -123.017534171999941, 49.308910961000066 ], [ -123.017536910999979, 49.309160697000017 ], [ -123.017539027999973, 49.309270630000071 ], [ -123.017546304999925, 49.30964813800005 ], [ -123.01756230700002, 49.310476511000097 ], [ -123.017277504999981, 49.310621532000035 ], [ -123.017056657999944, 49.310734004000061 ], [ -123.014736995, 49.311074327000092 ], [ -123.014723593999946, 49.311076316000104 ], [ -123.014717732999927, 49.311021989000018 ], [ -123.014714985999959, 49.310996802000055 ], [ -123.014716763999957, 49.31080026300004 ], [ -123.014720705999977, 49.310368457000024 ], [ -123.014723289999935, 49.310078310000087 ], [ -123.014730851999971, 49.3095589140001 ], [ -123.014740789999962, 49.308875326000091 ], [ -123.014742615000017, 49.308749334000019 ], [ -123.014744726999979, 49.308605432000029 ], [ -123.014748412, 49.308353492000052 ], [ -123.014752206999958, 49.308092829000053 ], [ -123.014758614999934, 49.307651803000113 ], [ -123.01440569699993, 49.306511592000057 ], [ -123.015703633999948, 49.306324744000015 ], [ -123.017874855999978, 49.30601212200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159276602", "BldgCostT": "100596238", "sL_LossRatio": "0.676244540799925", "sL_AssetLoss": "3188425", "sL_BldgLoss": "2156155", "sL_StrLoss": "891535", "sL_NStrLoss": "1264620", "sL_ContLoss": "1032270", "geom_point": "0101000020E6100000DE09CC962EC05EC0D7F0253BD3A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.993741201999953, 49.313664929 ], [ -122.993367695999979, 49.313543810000077 ], [ -122.993361129999926, 49.313543738000135 ], [ -122.99324550199999, 49.313542471000041 ], [ -122.992996620999961, 49.313539810000066 ], [ -122.992554314999907, 49.313615802000065 ], [ -122.992270109999964, 49.313226789000048 ], [ -122.991911321999979, 49.31263140500014 ], [ -122.991883220999981, 49.312259503000135 ], [ -122.992012112999973, 49.312010902000097 ], [ -122.992160109999972, 49.311870900000081 ], [ -122.992442803999921, 49.311689592000079 ], [ -122.992902204999936, 49.311561890000057 ], [ -122.994090496999931, 49.311242710000059 ], [ -122.99465861399996, 49.311071196000135 ], [ -122.994848808999933, 49.310916201000168 ], [ -122.995423298999981, 49.310434900000104 ], [ -122.994635163999973, 49.310012177000097 ], [ -122.994253945999915, 49.309677301000043 ], [ -122.994140502999954, 49.309539016000038 ], [ -122.99408639399995, 49.309397902000043 ], [ -122.994112052999938, 49.308811334000062 ], [ -122.996467590999913, 49.308836322000104 ], [ -122.996934432999979, 49.308805165000116 ], [ -122.999160815999971, 49.308431115000104 ], [ -122.999423113999981, 49.308387026000077 ], [ -123.000429696999959, 49.308239337000032 ], [ -123.002005780999951, 49.308114596000095 ], [ -123.002561184999976, 49.308070626000088 ], [ -123.003654277999928, 49.307955857000067 ], [ -123.005770628999954, 49.307733586000026 ], [ -123.005932004, 49.307684008000102 ], [ -123.006800132999928, 49.307592784000121 ], [ -123.007539226999981, 49.307434012000044 ], [ -123.00770662399999, 49.307373065000093 ], [ -123.008102513, 49.307228949000063 ], [ -123.008262407999908, 49.3071590710001 ], [ -123.007706980999927, 49.307496453000084 ], [ -123.008176802999984, 49.307568795000066 ], [ -123.009271504999944, 49.307587283000089 ], [ -123.01084861599999, 49.307613898000106 ], [ -123.011417337999944, 49.307622442000067 ], [ -123.014614294999888, 49.307670303000094 ], [ -123.014758614999934, 49.307651803000113 ], [ -123.014752206999958, 49.308092829000053 ], [ -123.014748412, 49.308353492000052 ], [ -123.014744726999979, 49.308605432000029 ], [ -123.014742615000017, 49.308749334000019 ], [ -123.014740789999962, 49.308875326000091 ], [ -123.014730851999971, 49.3095589140001 ], [ -123.014723289999935, 49.310078310000087 ], [ -123.014720705999977, 49.310368457000024 ], [ -123.014716763999957, 49.31080026300004 ], [ -123.014714985999959, 49.310996802000055 ], [ -123.014717732999927, 49.311021989000018 ], [ -123.014723593999946, 49.311076316000104 ], [ -123.014047614, 49.311066591000021 ], [ -123.013922792999963, 49.311052642000099 ], [ -123.013374391999918, 49.310991283000071 ], [ -123.01238357599999, 49.310779223000054 ], [ -123.011682801999939, 49.310629189000096 ], [ -123.011584323999941, 49.310619173000077 ], [ -123.011173205999938, 49.310577296000055 ], [ -123.010589415999931, 49.310567486000082 ], [ -123.009991008000014, 49.310675208000106 ], [ -123.009517799999912, 49.310826008000085 ], [ -123.00882941899999, 49.311157397000088 ], [ -123.008089757999983, 49.311628408000018 ], [ -123.007653171999962, 49.311906417000031 ], [ -123.007643300000026, 49.311912683000045 ], [ -123.005231740999932, 49.313456895000044 ], [ -123.004808138999977, 49.31372811300011 ], [ -123.004798283999918, 49.313734401000083 ], [ -123.004064296999942, 49.314131887000038 ], [ -123.003106423999952, 49.314525103000037 ], [ -123.002148851999948, 49.314959176000045 ], [ -123.001335220999977, 49.315328003000076 ], [ -123.001323258999918, 49.315332635000111 ], [ -123.00071442399998, 49.315569305000061 ], [ -122.999998806999955, 49.315755465000073 ], [ -122.999972916999937, 49.315762208000109 ], [ -122.999641916999963, 49.315810395000014 ], [ -122.999266202999976, 49.315865088000088 ], [ -122.99882318899995, 49.315887902000057 ], [ -122.99812592399999, 49.315886502000126 ], [ -122.996579317999988, 49.315848252000102 ], [ -122.996524294999929, 49.315846866000093 ], [ -122.996326989999972, 49.315841987000056 ], [ -122.995280618999985, 49.315841625000104 ], [ -122.994812778999957, 49.315841446000093 ], [ -122.994124854999896, 49.315841194000029 ], [ -122.993651893999939, 49.31584101500011 ], [ -122.993638113000017, 49.315841006000042 ], [ -122.993641035999985, 49.315757430000126 ], [ -122.993641379999957, 49.315747402000056 ], [ -122.993671207999981, 49.31522491200009 ], [ -122.993699911999968, 49.314719482 ], [ -122.993998939999969, 49.314329048000033 ], [ -122.994092165999945, 49.314207327000112 ], [ -122.994355110999933, 49.313863986000086 ], [ -122.994156993999951, 49.313799765000091 ], [ -122.993741201999953, 49.313664929 ] ], [ [ -122.995672411000029, 49.313581703000061 ], [ -122.995672456999927, 49.313041995000056 ], [ -122.996910711999988, 49.313042035000059 ], [ -122.996910728000017, 49.31277218100012 ], [ -122.997323475999963, 49.312772192000068 ], [ -122.997323519999938, 49.311962630000018 ], [ -122.998561746999897, 49.311962653000109 ], [ -122.998561730999953, 49.312502360000025 ], [ -122.99897447599993, 49.312502364000103 ], [ -122.998974460999946, 49.313311926000026 ], [ -122.999799966999888, 49.31331193000004 ], [ -122.999799965999983, 49.313581783000096 ], [ -122.999832172999945, 49.313581783000096 ], [ -122.999999935999966, 49.313467062 ], [ -123.001109334999981, 49.313544162000021 ], [ -123.001224539999981, 49.313581777000074 ], [ -123.00186374299993, 49.313581770000027 ], [ -123.00186371199996, 49.312772208000098 ], [ -123.00227646099998, 49.312772201000037 ], [ -123.0022764499999, 49.312502346000073 ], [ -123.002447843999946, 49.31250234400008 ], [ -123.002588110999952, 49.310334003000122 ], [ -123.001034856999951, 49.310290892000118 ], [ -123.001018444999971, 49.310544465000135 ], [ -122.997323603, 49.310441823000133 ], [ -122.997323592999976, 49.310613361000051 ], [ -122.997104796999963, 49.310613355000022 ], [ -122.99691523599995, 49.310785662000065 ], [ -122.996910850999953, 49.310799053000068 ], [ -122.996910828999958, 49.31115305800008 ], [ -122.996669337999933, 49.311153051000126 ], [ -122.996655235999938, 49.311164263000066 ], [ -122.996498080999956, 49.311337647000123 ], [ -122.996498074999977, 49.311422901000107 ], [ -122.996420807999968, 49.311422898000089 ], [ -122.996085308, 49.311793039000072 ], [ -122.996085293999968, 49.311962595000104 ], [ -122.995931623, 49.311962590000107 ], [ -122.995892034999969, 49.312006262000104 ], [ -122.995766134999926, 49.312254063000061 ], [ -122.995672525999979, 49.312265141000111 ], [ -122.995672481999975, 49.312772141000046 ], [ -122.995259732999955, 49.312772126000034 ], [ -122.995259654999956, 49.313581688000085 ], [ -122.995672411000029, 49.313581703000061 ] ], [ [ -123.007381081999952, 49.308999519000054 ], [ -123.00738143599996, 49.30899403300009 ], [ -123.00722889399999, 49.308994042000094 ], [ -123.007228893, 49.308995303000124 ], [ -123.007381081999952, 49.308999519000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "334269145", "BldgCostT": "230096524", "sL_LossRatio": "0.829178040643009", "sL_AssetLoss": "3461850", "sL_BldgLoss": "2870490", "sL_StrLoss": "1313190", "sL_NStrLoss": "1557300", "sL_ContLoss": "591360", "geom_point": "0101000020E6100000F52B3AE553C05EC031F0D40A70A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00499899799992, 49.318140917000036 ], [ -123.005036208999968, 49.315947714000075 ], [ -123.003573609999947, 49.315935102000061 ], [ -123.002324839999943, 49.31592452500005 ], [ -123.002311070999909, 49.315924423000098 ], [ -123.001956713999903, 49.315921417000098 ], [ -123.00181904599998, 49.315920257000116 ], [ -123.00156518899999, 49.315918093000064 ], [ -123.001655366, 49.315858621000125 ], [ -123.001694082999919, 49.315833101000038 ], [ -123.001789299999956, 49.315770299000107 ], [ -123.00134373399996, 49.315336316000071 ], [ -123.001335220999977, 49.315328003000076 ], [ -123.002148851999948, 49.314959176000045 ], [ -123.003106423999952, 49.314525103000037 ], [ -123.004064296999942, 49.314131887000038 ], [ -123.004798283999918, 49.313734401000083 ], [ -123.006404207999964, 49.314768779000062 ], [ -123.006404228999926, 49.314930875000087 ], [ -123.006655857999959, 49.314930861000036 ], [ -123.006817009999963, 49.315034654000023 ], [ -123.006817032999948, 49.31520070500008 ], [ -123.006917528999963, 49.315200699000037 ], [ -123.007366709999928, 49.316530075000102 ], [ -123.00746279099998, 49.318200109000067 ], [ -123.006796410999982, 49.318188902000074 ], [ -123.00499899799992, 49.318140917000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102797500", "BldgCostT": "67450000", "sL_LossRatio": "0.724168255516635", "sL_AssetLoss": "1353180", "sL_BldgLoss": "979930", "sL_StrLoss": "454340", "sL_NStrLoss": "525590", "sL_ContLoss": "373250", "geom_point": "0101000020E6100000E1656E3A19C05EC03FD941E391A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.999266202999976, 49.315865088000088 ], [ -122.999641916999963, 49.315810395000014 ], [ -122.999972916999937, 49.315762208000109 ], [ -122.999998806999955, 49.315755465000073 ], [ -123.00071442399998, 49.315569305000061 ], [ -123.001323258999918, 49.315332635000111 ], [ -123.001335220999977, 49.315328003000076 ], [ -123.00134373399996, 49.315336316000071 ], [ -123.001789299999956, 49.315770299000107 ], [ -123.001694082999919, 49.315833101000038 ], [ -123.001655366, 49.315858621000125 ], [ -123.00156518899999, 49.315918093000064 ], [ -123.00181904599998, 49.315920257000116 ], [ -123.001956713999903, 49.315921417000098 ], [ -123.002311070999909, 49.315924423000098 ], [ -123.002324839999943, 49.31592452500005 ], [ -123.003573609999947, 49.315935102000061 ], [ -123.005036208999968, 49.315947714000075 ], [ -123.00499899799992, 49.318140917000036 ], [ -123.001734154999951, 49.318100018000095 ], [ -123.001565797999916, 49.318097915000067 ], [ -123.000179621999933, 49.318083442000031 ], [ -123.00000057199999, 49.318081563000064 ], [ -122.998081314999951, 49.318061491000037 ], [ -122.998082174999979, 49.318052536000081 ], [ -122.998123400999944, 49.317624904000084 ], [ -122.99811760199999, 49.316969898000067 ], [ -122.99812592399999, 49.315886502000126 ], [ -122.99882318899995, 49.315887902000057 ], [ -122.999266202999976, 49.315865088000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "342464834", "BldgCostT": "227398334", "sL_LossRatio": "0.712109517017647", "sL_AssetLoss": "7151400", "sL_BldgLoss": "5092580", "sL_StrLoss": "2163080", "sL_NStrLoss": "2929500", "sL_ContLoss": "2058820", "geom_point": "0101000020E6100000CC5AF1AADABF5EC034F7DBC71FA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.99442292099999, 49.326259903000022 ], [ -122.99381580499994, 49.325864696000082 ], [ -122.993561905999925, 49.32591889600009 ], [ -122.991209420999951, 49.325876001000069 ], [ -122.990833360999929, 49.325193340000105 ], [ -122.990357012999937, 49.324987730000061 ], [ -122.990441317999938, 49.324919482000077 ], [ -122.990545124999969, 49.324832818000061 ], [ -122.990783635999918, 49.324564980000105 ], [ -122.991424755999901, 49.323604207000137 ], [ -122.993313747999977, 49.323258195000065 ], [ -122.993341925999985, 49.323254476000045 ], [ -122.994146850999968, 49.323148007000043 ], [ -122.994213039999977, 49.322252031000076 ], [ -122.994389164999959, 49.321184513000063 ], [ -122.994042268999948, 49.319518410000029 ], [ -122.994846279999933, 49.319518448000039 ], [ -122.994846392999989, 49.318439034000072 ], [ -122.994433597999929, 49.318439015000067 ], [ -122.994433664999974, 49.317833184000044 ], [ -122.994280550999946, 49.3178289250001 ], [ -122.994316106999946, 49.317630300000083 ], [ -122.994244918999954, 49.317387359000087 ], [ -122.994182111999976, 49.317227206000013 ], [ -122.993638113000017, 49.315841006000042 ], [ -122.993651893999939, 49.31584101500011 ], [ -122.994124854999896, 49.315841194000029 ], [ -122.994812778999957, 49.315841446000093 ], [ -122.995280618999985, 49.315841625000104 ], [ -122.996326989999972, 49.315841987000056 ], [ -122.996524294999929, 49.315846866000093 ], [ -122.996579317999988, 49.315848252000102 ], [ -122.99812592399999, 49.315886502000126 ], [ -122.99811760199999, 49.316969898000067 ], [ -122.998123400999944, 49.317624904000084 ], [ -122.998082174999979, 49.318052536000081 ], [ -122.998081314999951, 49.318061491000037 ], [ -123.00000057199999, 49.318081563000064 ], [ -123.000179621999933, 49.318083442000031 ], [ -123.001565797999916, 49.318097915000067 ], [ -123.001734154999951, 49.318100018000095 ], [ -123.00499899799992, 49.318140917000036 ], [ -123.004978113000021, 49.319038300000038 ], [ -123.002512673999931, 49.319024894000059 ], [ -123.00217677799999, 49.319178599000089 ], [ -123.002032786999933, 49.319426808000109 ], [ -123.002051689999917, 49.3201550940001 ], [ -123.002259311999936, 49.32055990700006 ], [ -123.002450888999974, 49.320830912000048 ], [ -123.004935688999979, 49.32086559400004 ], [ -123.00492539599999, 49.321768709000018 ], [ -123.004919628999971, 49.322666606000062 ], [ -123.004914485999947, 49.323576211000081 ], [ -123.00357429, 49.32355879400005 ], [ -123.002444379999986, 49.323546410000127 ], [ -123.002216778999966, 49.32351754300003 ], [ -123.00217151899993, 49.323511796000012 ], [ -123.0020299, 49.323404286 ], [ -123.001807294999963, 49.322974809000101 ], [ -123.001650306999949, 49.322785801000137 ], [ -123.0013863, 49.322678506000031 ], [ -122.999999796999958, 49.322642261000105 ], [ -122.999734197999942, 49.322635306000087 ], [ -122.999260409999948, 49.32272850100005 ], [ -122.998916792999964, 49.322894603000037 ], [ -122.998235407999971, 49.323474613 ], [ -122.997860908999925, 49.323797499000079 ], [ -122.997739917999937, 49.324072394000041 ], [ -122.997733811000018, 49.32484691300003 ], [ -122.997733110999931, 49.32523960300005 ], [ -122.99769039, 49.326003994000075 ], [ -122.997098986999973, 49.326001108000078 ], [ -122.996721223999941, 49.326056298000061 ], [ -122.996100075999948, 49.326279598000021 ], [ -122.99495578399997, 49.326741313000063 ], [ -122.99442292099999, 49.326259903000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88469500", "BldgCostT": "60070000", "sL_LossRatio": "0.730284635100499", "sL_AssetLoss": "1853250", "sL_BldgLoss": "1353400", "sL_StrLoss": "558520", "sL_NStrLoss": "794880", "sL_ContLoss": "499850", "geom_point": "0101000020E6100000065F03E858C05EC06113DBD512A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00492539599999, 49.321768709000018 ], [ -123.004935688999979, 49.32086559400004 ], [ -123.002450888999974, 49.320830912000048 ], [ -123.002259311999936, 49.32055990700006 ], [ -123.002051689999917, 49.3201550940001 ], [ -123.002032786999933, 49.319426808000109 ], [ -123.00217677799999, 49.319178599000089 ], [ -123.002512673999931, 49.319024894000059 ], [ -123.004978113000021, 49.319038300000038 ], [ -123.00499899799992, 49.318140917000036 ], [ -123.006796410999982, 49.318188902000074 ], [ -123.00746279099998, 49.318200109000067 ], [ -123.007431592999964, 49.319960192000082 ], [ -123.007414811999979, 49.320859491000114 ], [ -123.007397092999895, 49.321772412000016 ], [ -123.006304008999976, 49.321764604000109 ], [ -123.006333887, 49.322537392000058 ], [ -123.006408596999961, 49.322764588000084 ], [ -123.007019088999968, 49.323321892000081 ], [ -123.007434910999933, 49.323700984000062 ], [ -123.007552702999959, 49.323899681000078 ], [ -123.007540895999938, 49.324019095000089 ], [ -123.007531016999906, 49.32408639500008 ], [ -123.007295400999936, 49.324369013000073 ], [ -123.006904786999939, 49.324516690000145 ], [ -123.004918091999969, 49.32454179000004 ], [ -123.004914485999947, 49.323576211000081 ], [ -123.004919628999971, 49.322666606000062 ], [ -123.00492539599999, 49.321768709000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71055833", "BldgCostT": "48113333", "sL_LossRatio": "0.724501358380319", "sL_AssetLoss": "1464980", "sL_BldgLoss": "1061380", "sL_StrLoss": "424550", "sL_NStrLoss": "636830", "sL_ContLoss": "403600", "geom_point": "0101000020E610000006793D9814C05EC04E3251088DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.001774311999924, 49.326076896000075 ], [ -123.00028449899996, 49.326033687000091 ], [ -123.000000220999979, 49.326030432000096 ], [ -122.99769039, 49.326003994000075 ], [ -122.997733110999931, 49.32523960300005 ], [ -122.997733811000018, 49.32484691300003 ], [ -122.997739917999937, 49.324072394000041 ], [ -122.997860908999925, 49.323797499000079 ], [ -122.998235407999971, 49.323474613 ], [ -122.998916792999964, 49.322894603000037 ], [ -122.999260409999948, 49.32272850100005 ], [ -122.999734197999942, 49.322635306000087 ], [ -122.999999796999958, 49.322642261000105 ], [ -123.0013863, 49.322678506000031 ], [ -123.001650306999949, 49.322785801000137 ], [ -123.001807294999963, 49.322974809000101 ], [ -123.0020299, 49.323404286 ], [ -123.00217151899993, 49.323511796000012 ], [ -123.002216778999966, 49.32351754300003 ], [ -123.002444379999986, 49.323546410000127 ], [ -123.00357429, 49.32355879400005 ], [ -123.004914485999947, 49.323576211000081 ], [ -123.004918091999969, 49.32454179000004 ], [ -123.004809295999962, 49.326224090000039 ], [ -123.004797604999965, 49.326405687000104 ], [ -123.004013592999968, 49.326402009000049 ], [ -123.003608183999972, 49.326288894000122 ], [ -123.003121594999982, 49.326154793000043 ], [ -123.002804100999938, 49.326108991000098 ], [ -123.001774311999924, 49.326076896000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200980376", "BldgCostT": "132981649", "sL_LossRatio": "0.724089466359351", "sL_AssetLoss": "3635780", "sL_BldgLoss": "2632630", "sL_StrLoss": "1087450", "sL_NStrLoss": "1545180", "sL_ContLoss": "1003150", "geom_point": "0101000020E61000002F127FB9FBBF5EC0ABAA027BEDA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.996100075999948, 49.326279598000021 ], [ -122.996721223999941, 49.326056298000061 ], [ -122.997098986999973, 49.326001108000078 ], [ -122.99769039, 49.326003994000075 ], [ -123.000000220999979, 49.326030432000096 ], [ -123.00028449899996, 49.326033687000091 ], [ -123.001774311999924, 49.326076896000075 ], [ -123.002804100999938, 49.326108991000098 ], [ -123.003121594999982, 49.326154793000043 ], [ -123.003608183999972, 49.326288894000122 ], [ -123.004013592999968, 49.326402009000049 ], [ -123.004797604999965, 49.326405687000104 ], [ -123.004756281999974, 49.326618005000086 ], [ -123.004508500999947, 49.327089391000058 ], [ -123.004162602999941, 49.327437414000045 ], [ -123.002321389999949, 49.3285285010001 ], [ -123.00206178799999, 49.328649205000048 ], [ -123.000978408999927, 49.329148687000028 ], [ -123.00049889499999, 49.32937139600012 ], [ -123.000019175, 49.329519563000133 ], [ -122.999474101999965, 49.32968788500007 ], [ -122.99847272699999, 49.330109606000107 ], [ -122.996479205999947, 49.328176200000051 ], [ -122.99495578399997, 49.326741313000063 ], [ -122.996100075999948, 49.326279598000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287184000", "BldgCostT": "190020000", "sL_LossRatio": "0.681287634419012", "sL_AssetLoss": "12912050", "sL_BldgLoss": "8796820", "sL_StrLoss": "3446150", "sL_NStrLoss": "5350670", "sL_ContLoss": "4115230", "geom_point": "0101000020E61000007D29C811A3C05EC00FFB90F9F8A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.007295400999936, 49.324369013000073 ], [ -123.007531016999906, 49.32408639500008 ], [ -123.007540895999938, 49.324019095000089 ], [ -123.007552702999959, 49.323899681000078 ], [ -123.007434910999933, 49.323700984000062 ], [ -123.007019088999968, 49.323321892000081 ], [ -123.006408596999961, 49.322764588000084 ], [ -123.006333887, 49.322537392000058 ], [ -123.006304008999976, 49.321764604000109 ], [ -123.007397092999895, 49.321772412000016 ], [ -123.007414811999979, 49.320859491000114 ], [ -123.007431592999964, 49.319960192000082 ], [ -123.00746279099998, 49.318200109000067 ], [ -123.007366709999928, 49.316530075000102 ], [ -123.006917528999963, 49.315200699000037 ], [ -123.007229801999927, 49.315200680000046 ], [ -123.007229840999941, 49.315470533000045 ], [ -123.007642612999973, 49.315470508000068 ], [ -123.007642946999951, 49.317629336000053 ], [ -123.008055736999964, 49.317629308000051 ], [ -123.008055827999954, 49.31819015200012 ], [ -123.008076035999963, 49.318205263000067 ], [ -123.008089335999912, 49.318350362000089 ], [ -123.008055866999939, 49.318426853000062 ], [ -123.008055928999951, 49.318814212000078 ], [ -123.008078835999953, 49.318990562000053 ], [ -123.008193211999981, 49.319518274000046 ], [ -123.008468848999939, 49.319518253000147 ], [ -123.008468952, 49.320117979000031 ], [ -123.008496834999988, 49.320225262000072 ], [ -123.008469019999922, 49.320511744000022 ], [ -123.008469127999902, 49.321137374000081 ], [ -123.008283073999948, 49.321137386000068 ], [ -123.008260035999953, 49.321163962000092 ], [ -123.008056326999935, 49.321249052000034 ], [ -123.008056484999969, 49.3222168160001 ], [ -123.007643656999932, 49.322216845000085 ], [ -123.007643740999981, 49.322756552000079 ], [ -123.008056573, 49.322756523000152 ], [ -123.008056660999927, 49.323296230000103 ], [ -123.00846949799994, 49.323296201000055 ], [ -123.008469542999975, 49.323560784000051 ], [ -123.008490150999975, 49.323566052000068 ], [ -123.008882382999971, 49.323566022000094 ], [ -123.008882410999945, 49.323721152000097 ], [ -123.008985436000017, 49.323803540000057 ], [ -123.009015864999967, 49.323332260000065 ], [ -123.01045936499996, 49.323372207 ], [ -123.010389502999928, 49.323296044000074 ], [ -123.010120844999946, 49.323296067000115 ], [ -123.010120768999926, 49.322928095000051 ], [ -123.010090935, 49.322859062000049 ], [ -123.010045734999963, 49.322226163000074 ], [ -123.010050962999983, 49.32221666099999 ], [ -123.009294968999967, 49.322216723000075 ], [ -123.009294815, 49.321407164000036 ], [ -123.010120455999967, 49.321407093000069 ], [ -123.010120345999923, 49.320867387000078 ], [ -123.010533162999977, 49.320867350000064 ], [ -123.01053294799999, 49.31985286500003 ], [ -123.010385935999963, 49.319593562000087 ], [ -123.010392235000026, 49.319243262000036 ], [ -123.010289516999933, 49.318978398000056 ], [ -123.010119958999951, 49.318978413000089 ], [ -123.010119295999971, 49.315740171000058 ], [ -123.010403432999922, 49.315740146000081 ], [ -123.010532023999957, 49.315525240000106 ], [ -123.010531895999989, 49.314930572000058 ], [ -123.010739697999952, 49.314930553000096 ], [ -123.01080933599998, 49.314795663000098 ], [ -123.010944602999984, 49.314657360000055 ], [ -123.010944543999983, 49.314390827000075 ], [ -123.011205307999916, 49.314390801000116 ], [ -123.011352736999953, 49.314240063000042 ], [ -123.011357268999944, 49.314231816000095 ], [ -123.011357119999943, 49.313581225000121 ], [ -123.011540197999977, 49.313581208000123 ], [ -123.011699549999918, 49.311110391000078 ], [ -123.012005366999972, 49.311118851000032 ], [ -123.012020599999971, 49.310882622000101 ], [ -123.010765534999962, 49.310882744000075 ], [ -123.010648755999938, 49.312692924000089 ], [ -123.010248331999961, 49.312681843000057 ], [ -123.01023555099999, 49.312879934000122 ], [ -123.00971449299999, 49.312865511000027 ], [ -123.009682654999921, 49.313358846000021 ], [ -123.008218682999924, 49.31331831300006 ], [ -123.008058435999942, 49.313344262000101 ], [ -123.007263234999968, 49.313360263000106 ], [ -123.007140834999973, 49.313338262000073 ], [ -123.007129668999966, 49.313311710000107 ], [ -123.006816771999965, 49.313311729000077 ], [ -123.006816809, 49.313581583000037 ], [ -123.00640405399993, 49.313581606000071 ], [ -123.006404207999964, 49.314768779000062 ], [ -123.004798283999918, 49.313734401000083 ], [ -123.004808138999977, 49.31372811300011 ], [ -123.005231740999932, 49.313456895000044 ], [ -123.007643300000026, 49.311912683000045 ], [ -123.007653171999962, 49.311906417000031 ], [ -123.008089757999983, 49.311628408000018 ], [ -123.00882941899999, 49.311157397000088 ], [ -123.009517799999912, 49.310826008000085 ], [ -123.009991008000014, 49.310675208000106 ], [ -123.010589415999931, 49.310567486000082 ], [ -123.011173205999938, 49.310577296000055 ], [ -123.011584323999941, 49.310619173000077 ], [ -123.011682801999939, 49.310629189000096 ], [ -123.01238357599999, 49.310779223000054 ], [ -123.013374391999918, 49.310991283000071 ], [ -123.013922792999963, 49.311052642000099 ], [ -123.014047614, 49.311066591000021 ], [ -123.014723593999946, 49.311076316000104 ], [ -123.014736995, 49.311074327000092 ], [ -123.017056657999944, 49.310734004000061 ], [ -123.017983494999925, 49.31059801 ], [ -123.018473303999912, 49.310573698000077 ], [ -123.018931487999936, 49.310612405000072 ], [ -123.019216003999958, 49.310678794000076 ], [ -123.019230635999961, 49.310685148000097 ], [ -123.019317034999943, 49.310722657000042 ], [ -123.017652398999957, 49.311681614000094 ], [ -123.016949412999963, 49.312400808000099 ], [ -123.016386810999961, 49.312751210000123 ], [ -123.015643712, 49.31313859500009 ], [ -123.014349007999911, 49.313539112000065 ], [ -123.013139296999967, 49.31391331300005 ], [ -123.011763914999946, 49.314757891000077 ], [ -123.011310100999964, 49.315361795000072 ], [ -123.011144609999931, 49.317321490000069 ], [ -123.011407399999911, 49.318419505000037 ], [ -123.01177801399993, 49.319049006000071 ], [ -123.013306316, 49.320093 ], [ -123.013650098, 49.320424796000047 ], [ -123.013994599999961, 49.321153998000064 ], [ -123.013953602999948, 49.321873207000039 ], [ -123.013292409999934, 49.323132197000085 ], [ -123.011820801999988, 49.325364012000065 ], [ -123.010364087999946, 49.326972419000086 ], [ -123.010121596999937, 49.326965710000081 ], [ -123.0101216199999, 49.327074012000082 ], [ -123.00989373899999, 49.327074032000027 ], [ -123.009708781999919, 49.32722869100008 ], [ -123.009708803999928, 49.327343900000088 ], [ -123.009570984999954, 49.327343912000046 ], [ -123.009091235999932, 49.327745063000066 ], [ -123.008883170999951, 49.327949654000122 ], [ -123.008883208999961, 49.328153527000033 ], [ -123.008675819999937, 49.328153543000042 ], [ -123.00847036499998, 49.328355564000027 ], [ -123.008470423999981, 49.328693264000101 ], [ -123.008203648999938, 49.328693282000089 ], [ -123.00814853599999, 49.328781763000066 ], [ -123.008057574999924, 49.328896134000033 ], [ -123.008057629999954, 49.329233 ], [ -123.007789643999928, 49.329233018000167 ], [ -123.007645335999911, 49.329414463000049 ], [ -123.007644771999935, 49.329414517000089 ], [ -123.007644784999954, 49.329502881000089 ], [ -123.006105217999931, 49.329502973000082 ], [ -123.00590353599992, 49.329702062000059 ], [ -123.005816234999884, 49.329728863000142 ], [ -123.005662335999901, 49.329726562000097 ], [ -123.005522234999901, 49.32968006300004 ], [ -123.004871834999932, 49.329601763000028 ], [ -123.004793435999957, 49.329556262000047 ], [ -123.004791136, 49.329447462000104 ], [ -123.004910634999945, 49.329380762000028 ], [ -123.005167414000013, 49.329126244000072 ], [ -123.00516736900002, 49.328693459000121 ], [ -123.00558025, 49.328693440000102 ], [ -123.005580128999895, 49.327614027000074 ], [ -123.006405874, 49.327613985000021 ], [ -123.0064058399999, 49.327344132000071 ], [ -123.006818708999958, 49.327344107000016 ], [ -123.006818635999963, 49.326804402000064 ], [ -123.007231501999954, 49.326804376000069 ], [ -123.00723134399999, 49.325724963000042 ], [ -123.007644199999902, 49.325724938000029 ], [ -123.007644116999984, 49.325185231000027 ], [ -123.008056969, 49.325185202000092 ], [ -123.008056925999981, 49.324915350000033 ], [ -123.008913650999958, 49.324915287000074 ], [ -123.00895076099999, 49.324340552000109 ], [ -123.008921535999946, 49.324383762000103 ], [ -123.008882534999941, 49.324412224000092 ], [ -123.008882576999937, 49.324645436000061 ], [ -123.008342386, 49.324645477000104 ], [ -123.007929135999973, 49.324739062000042 ], [ -123.007644066999944, 49.324863491000102 ], [ -123.007644074999973, 49.324915378000135 ], [ -123.00752517699999, 49.32491538500004 ], [ -123.007231243999968, 49.32504368100011 ], [ -123.007231263999984, 49.325185258000054 ], [ -123.00691478499999, 49.325185277000031 ], [ -123.006818424999906, 49.325276838 ], [ -123.006818562, 49.326264695000049 ], [ -123.006405699999902, 49.326264719000115 ], [ -123.006405735, 49.326534571000138 ], [ -123.005992869999957, 49.326534594000094 ], [ -123.005992902999964, 49.326804448000125 ], [ -123.005246958999976, 49.326804483000053 ], [ -123.005167181999951, 49.326908504000123 ], [ -123.005167227999948, 49.327344193000073 ], [ -123.004943573999952, 49.327344202000127 ], [ -123.004811834999927, 49.327490462000107 ], [ -123.004754376999983, 49.327541036000092 ], [ -123.004754382999948, 49.32761406400008 ], [ -123.004671400999911, 49.327614067000106 ], [ -123.004341535999941, 49.327904397000111 ], [ -123.00434155799995, 49.328153786000016 ], [ -123.004058169999965, 49.32815379700002 ], [ -123.004029236999884, 49.328179262000027 ], [ -123.003928687999974, 49.328251702000074 ], [ -123.003928700999921, 49.328423655000066 ], [ -123.003690004999982, 49.32842366199999 ], [ -123.00351583199992, 49.328549145000075 ], [ -123.003515840999967, 49.328693520000066 ], [ -123.003279097999965, 49.328693527 ], [ -123.003102966000014, 49.328773738000095 ], [ -123.00310297599998, 49.328963386000034 ], [ -123.002690091999938, 49.328963396000063 ], [ -123.00269010699995, 49.329233249000062 ], [ -123.001996869000024, 49.329233263000063 ], [ -123.001864336999944, 49.329286044000078 ], [ -123.001864345999977, 49.329503118000019 ], [ -123.001451456999959, 49.329503124000027 ], [ -123.001451464999917, 49.329772977000061 ], [ -122.999979614999972, 49.329772987000055 ], [ -122.999799900999975, 49.329913824000101 ], [ -122.999799900999975, 49.329973643000066 ], [ -122.99972306199993, 49.329981516000046 ], [ -122.99847272699999, 49.330109606000107 ], [ -122.999474101999965, 49.32968788500007 ], [ -123.000019175, 49.329519563000133 ], [ -123.00049889499999, 49.32937139600012 ], [ -123.000978408999927, 49.329148687000028 ], [ -123.00206178799999, 49.328649205000048 ], [ -123.002321389999949, 49.3285285010001 ], [ -123.004162602999941, 49.327437414000045 ], [ -123.004508500999947, 49.327089391000058 ], [ -123.004756281999974, 49.326618005000086 ], [ -123.004797604999965, 49.326405687000104 ], [ -123.004809295999962, 49.326224090000039 ], [ -123.004918091999969, 49.32454179000004 ], [ -123.006904786999939, 49.324516690000145 ], [ -123.007295400999936, 49.324369013000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85623834", "BldgCostT": "55103334", "sL_LossRatio": "0.863837575408788", "sL_AssetLoss": "298871", "sL_BldgLoss": "258176", "sL_StrLoss": "165330", "sL_NStrLoss": "92846", "sL_ContLoss": "40695", "geom_point": "0101000020E610000079DCE0D918BD5EC06FEA4D5656AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952840296999938, 49.368849078000039 ], [ -122.952914893999932, 49.367716212000083 ], [ -122.95251652499999, 49.367704988000106 ], [ -122.952654977999927, 49.365602503000055 ], [ -122.951202109999926, 49.365561559000078 ], [ -122.95130757, 49.363960710000065 ], [ -122.950987918999928, 49.363951699000019 ], [ -122.950885135999926, 49.365511729000083 ], [ -122.950703538999974, 49.365506610000118 ], [ -122.950498695999968, 49.368615230000039 ], [ -122.950355615, 49.368611196000082 ], [ -122.950288146999981, 49.369634933000029 ], [ -122.948996416999961, 49.36959850500007 ], [ -122.949034008999931, 49.365150996000132 ], [ -122.951871380999975, 49.362104693000077 ], [ -122.952768941999963, 49.361054268000011 ], [ -122.953270690999901, 49.360466990000063 ], [ -122.953576602999988, 49.35993971500011 ], [ -122.95372200599995, 49.35957270100004 ], [ -122.953792987999961, 49.358953195000083 ], [ -122.953683108999925, 49.358594408000044 ], [ -122.953403791999946, 49.358235208000103 ], [ -122.95311209, 49.358024395000037 ], [ -122.952458805999939, 49.357842933000079 ], [ -122.95226029699991, 49.357787793000092 ], [ -122.951610800999958, 49.357763192000064 ], [ -122.950983587999986, 49.357941905000054 ], [ -122.949584891999962, 49.358797699000029 ], [ -122.948266898999989, 49.359660305000077 ], [ -122.94817174899994, 49.359692298000049 ], [ -122.947916638, 49.35970467100001 ], [ -122.947737672999921, 49.359650628000104 ], [ -122.947668863999951, 49.359596615000044 ], [ -122.947613908999969, 49.359479668000098 ], [ -122.947613955999969, 49.359425694000088 ], [ -122.947655421999968, 49.359299795000062 ], [ -122.947779560999962, 49.359110954000073 ], [ -122.947920191999941, 49.358967806000067 ], [ -122.949093625, 49.357145495000069 ], [ -122.949374919999968, 49.35694979000003 ], [ -122.950782311999944, 49.356087003000034 ], [ -122.951847289999989, 49.355279394000092 ], [ -122.952528795999953, 49.354840208000063 ], [ -122.955307107999943, 49.353621417000042 ], [ -122.955733408999947, 49.353482088000078 ], [ -122.956060100999949, 49.353424212000085 ], [ -122.956557898999947, 49.353335998000091 ], [ -122.957316600999917, 49.353270009000063 ], [ -122.958446205999977, 49.353319808000109 ], [ -122.958767284999936, 49.353043305000092 ], [ -122.95844779399998, 49.352855892000036 ], [ -122.95717661499998, 49.352804587000087 ], [ -122.955802187999893, 49.3527491030001 ], [ -122.954270528, 49.35295179700006 ], [ -122.94907441, 49.354156394000036 ], [ -122.947665131999955, 49.354339962000054 ], [ -122.945891909999901, 49.354570912000085 ], [ -122.94565396199998, 49.354616718000088 ], [ -122.944667690999921, 49.354806610000054 ], [ -122.943603203999942, 49.355083605000033 ], [ -122.943194479999988, 49.355228878000041 ], [ -122.942964575999952, 49.355310601000063 ], [ -122.942457399999952, 49.355652008000085 ], [ -122.942200699999944, 49.355777297000053 ], [ -122.94166639599996, 49.355762185000088 ], [ -122.941540020999952, 49.355681912000101 ], [ -122.941680226999921, 49.355331004000021 ], [ -122.942574489999984, 49.355068101000086 ], [ -122.945666190999987, 49.353506197000044 ], [ -122.946744860999928, 49.353015529000103 ], [ -122.949821053999955, 49.353102351000125 ], [ -122.949794252999979, 49.353509099000064 ], [ -122.949815976999929, 49.353509109000065 ], [ -122.949816250999987, 49.353239257000055 ], [ -122.951055510999936, 49.353239789000064 ], [ -122.95105578, 49.352969936000129 ], [ -122.952295033999974, 49.352970454000086 ], [ -122.952295296000031, 49.352700603000116 ], [ -122.953534542999961, 49.352701107000037 ], [ -122.953534796999975, 49.352431254000102 ], [ -122.953998140999886, 49.352431441000157 ], [ -122.954029363999894, 49.351956903000016 ], [ -122.956838933999933, 49.352036016000042 ], [ -122.956878779999954, 49.35142987100005 ], [ -122.962374693999934, 49.351584415000062 ], [ -122.962138704999987, 49.355180585000127 ], [ -122.959328935999935, 49.355101610000126 ], [ -122.959289118999948, 49.355707753000019 ], [ -122.953792725999946, 49.35555305300003 ], [ -122.953838330999972, 49.354860044000041 ], [ -122.953532508999928, 49.354859921000056 ], [ -122.953532255999932, 49.355129773000044 ], [ -122.953208812999932, 49.355129642000051 ], [ -122.95352524299993, 49.355138558000107 ], [ -122.953389212, 49.357205355000097 ], [ -122.955450602999946, 49.357263413000069 ], [ -122.95521404699997, 49.360859538000049 ], [ -122.954578205999894, 49.360841634000025 ], [ -122.95449858299996, 49.362051670000064 ], [ -122.956936148999915, 49.362120286000106 ], [ -122.956797901999906, 49.364222787000102 ], [ -122.958250731999939, 49.364263656000041 ], [ -122.958086815999977, 49.366757454000073 ], [ -122.958485178, 49.366768657000073 ], [ -122.958460563999978, 49.367143163000037 ], [ -122.960393733999979, 49.3671975070001 ], [ -122.960157509999974, 49.370793589000051 ], [ -122.95807294799999, 49.370734988000073 ], [ -122.957950623999963, 49.372595638000121 ], [ -122.952452228999945, 49.372440874000056 ], [ -122.952689059999926, 49.368844817000131 ], [ -122.952840296999938, 49.368849078000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8748333", "BldgCostT": "6033333", "sL_LossRatio": "0.776394518432735", "sL_AssetLoss": "103620", "sL_BldgLoss": "80450", "sL_StrLoss": "37470", "sL_NStrLoss": "42980", "sL_ContLoss": "23170", "geom_point": "0101000020E6100000E9787187B2BF5EC0554C849107AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.999404434999946, 49.331882062000041 ], [ -122.999245843999987, 49.331661954 ], [ -122.998974080000011, 49.331661953000044 ], [ -122.998974086999979, 49.331302973000078 ], [ -122.998855636, 49.331205162000067 ], [ -122.998482120999967, 49.330852388000018 ], [ -122.998148296999986, 49.330852383000064 ], [ -122.998148306999951, 49.330582530000065 ], [ -122.997735409, 49.330582523000082 ], [ -122.997735428999988, 49.330147140000093 ], [ -122.997624976999958, 49.330042816000073 ], [ -122.997322539999971, 49.330042808000023 ], [ -122.997322554999982, 49.329772955000038 ], [ -122.996909664999961, 49.329772945000045 ], [ -122.99690968099999, 49.329503092000103 ], [ -122.996496792999963, 49.329503080000094 ], [ -122.996496831999977, 49.328963374000082 ], [ -122.99608394799999, 49.328963361000021 ], [ -122.996083968999969, 49.328693507000104 ], [ -122.994432439999926, 49.328693440000102 ], [ -122.994432471999943, 49.328423587000017 ], [ -122.994019592999962, 49.328423567000058 ], [ -122.994019623999947, 49.328153714000059 ], [ -122.99360674799999, 49.328153691000161 ], [ -122.993606781999944, 49.327883838000091 ], [ -122.993303913999938, 49.32788382100005 ], [ -122.993205135999972, 49.327948863000053 ], [ -122.993194935999952, 49.328061462000072 ], [ -122.993193882999961, 49.328062418000066 ], [ -122.993193870000013, 49.328153668000041 ], [ -122.99071660599995, 49.328153495000016 ], [ -122.990716683999949, 49.327735783000058 ], [ -122.99068373599998, 49.327640161000048 ], [ -122.990678543999977, 49.327613787000047 ], [ -122.990303835999924, 49.327613756000105 ], [ -122.990303941999983, 49.327074049 ], [ -122.989891071999978, 49.327074013000043 ], [ -122.98989131799999, 49.325869435000087 ], [ -122.990264924999963, 49.325878738000021 ], [ -122.991209420999951, 49.325876001000069 ], [ -122.993561905999925, 49.32591889600009 ], [ -122.99381580499994, 49.325864696000082 ], [ -122.99442292099999, 49.326259903000022 ], [ -122.99495578399997, 49.326741313000063 ], [ -122.996479205999947, 49.328176200000051 ], [ -122.99847272699999, 49.330109606000107 ], [ -122.99972306199993, 49.329981516000046 ], [ -122.999799900999975, 49.329973643000066 ], [ -122.999799899999985, 49.33004283900005 ], [ -122.99963526799999, 49.330042838000104 ], [ -122.99951643499999, 49.33013596200005 ], [ -122.999387434999917, 49.330295062000125 ], [ -122.999463834999972, 49.330570062000028 ], [ -122.999440493999913, 49.330582544000066 ], [ -123.000212794999982, 49.330582545000041 ], [ -123.00021279399999, 49.330312692000113 ], [ -123.000951765999901, 49.330312688000042 ], [ -123.001038584999947, 49.330279639 ], [ -123.001038578999939, 49.33004283500005 ], [ -123.001672949999957, 49.330042827000092 ], [ -123.001991534999945, 49.330020862000033 ], [ -123.00204258399998, 49.330042821000063 ], [ -123.002277257999978, 49.330042816000073 ], [ -123.002277263999957, 49.330170136000106 ], [ -123.002418435999957, 49.330317362000073 ], [ -123.002436834999955, 49.330490762000132 ], [ -123.002356335999934, 49.330674763000061 ], [ -123.002277288999963, 49.33073184400007 ], [ -123.002277294999942, 49.330852376000117 ], [ -123.002108270999926, 49.330852379000085 ], [ -123.001864400999978, 49.330980183000079 ], [ -123.001864406999985, 49.331122237000038 ], [ -123.001505364999957, 49.331122242000085 ], [ -123.001458434999932, 49.331140362000077 ], [ -123.001381479999949, 49.33112224300006 ], [ -123.001340408999937, 49.33112224300006 ], [ -123.001038607999988, 49.331414805000044 ], [ -123.001038612999977, 49.331661952000083 ], [ -123.000599977999968, 49.331661955000129 ], [ -122.999999935999966, 49.331917062000066 ], [ -122.999404434999946, 49.331882062000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9388750", "BldgCostT": "6475000", "sL_LossRatio": "0.777193468032106", "sL_AssetLoss": "108390", "sL_BldgLoss": "84240", "sL_StrLoss": "39640", "sL_NStrLoss": "44600", "sL_ContLoss": "24150", "geom_point": "0101000020E61000003F8B087339BD5EC018288469F3AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.954000486, 49.372740460000074 ], [ -122.959498920999948, 49.372895146000097 ], [ -122.959262597999924, 49.376491196000117 ], [ -122.953763736999946, 49.37633650000005 ], [ -122.954000486, 49.372740460000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101237417", "BldgCostT": "62086667", "sL_LossRatio": "0.680633349319386", "sL_AssetLoss": "1326156", "sL_BldgLoss": "902626", "sL_StrLoss": "403186", "sL_NStrLoss": "499440", "sL_ContLoss": "423530", "geom_point": "0101000020E610000018C07373DABE5EC036977E36B0A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977507359999933, 49.321945056000061 ], [ -122.97750748199995, 49.321675202000023 ], [ -122.976269014999943, 49.321674955000077 ], [ -122.976269533000021, 49.320595542000028 ], [ -122.975743656999953, 49.320595432000054 ], [ -122.978065705999981, 49.318167215000059 ], [ -122.978747461999916, 49.318167342000088 ], [ -122.978747228999922, 49.318707049000068 ], [ -122.979572825999966, 49.318707198000034 ], [ -122.9795730499999, 49.31816749200005 ], [ -122.980398636999922, 49.318167634000091 ], [ -122.980398722999979, 49.317950424000152 ], [ -122.978701752999925, 49.317902982000135 ], [ -122.978699860999924, 49.317931987000058 ], [ -122.978301292, 49.317920840000056 ], [ -122.978600191999973, 49.317608247000095 ], [ -122.980211611999948, 49.315665588000051 ], [ -122.980558362999943, 49.315663279000049 ], [ -122.98101649699997, 49.315660200000067 ], [ -122.981356455999972, 49.315665640000113 ], [ -122.981480194999975, 49.315667627000089 ], [ -122.985674455999941, 49.315734579000079 ], [ -122.985688194999938, 49.315734808000045 ], [ -122.986282144999947, 49.315738224000029 ], [ -122.986722424000021, 49.315740781000081 ], [ -122.987438411000014, 49.315744896000062 ], [ -122.98888742199992, 49.315767311000094 ], [ -122.988747867000015, 49.317914542000061 ], [ -122.987530344, 49.317880601000077 ], [ -122.987528317999931, 49.317911772000052 ], [ -122.987122613999958, 49.317900459000043 ], [ -122.987121500999947, 49.317917582000092 ], [ -122.986747692000023, 49.317907158 ], [ -122.986743989, 49.317964091000057 ], [ -122.984389155999978, 49.317898389000085 ], [ -122.983701075999946, 49.317898294000067 ], [ -122.983701082999943, 49.31787918100013 ], [ -122.983175923999951, 49.3178645180001 ], [ -122.983173040999986, 49.317908778000096 ], [ -122.981637130999943, 49.317865880000035 ], [ -122.981636717999962, 49.318977398000115 ], [ -122.979985514999925, 49.318977124000043 ], [ -122.97998507799997, 49.320056537000035 ], [ -122.9787466499999, 49.320056317000088 ], [ -122.978746415999979, 49.320596023000064 ], [ -122.978333602999939, 49.320595947000101 ], [ -122.978333484999922, 49.320865800000021 ], [ -122.977920667999939, 49.320865722000043 ], [ -122.977920547999986, 49.321135575000042 ], [ -122.979159003999953, 49.321135805000011 ], [ -122.979158660999985, 49.32194536500009 ], [ -122.977507359999933, 49.321945056000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156012417", "BldgCostT": "102461667", "sL_LossRatio": "0.710960856891775", "sL_AssetLoss": "3102002", "sL_BldgLoss": "2205402", "sL_StrLoss": "999772", "sL_NStrLoss": "1205630", "sL_ContLoss": "896600", "geom_point": "0101000020E6100000BDF8252C7BBF5EC0B47BDA5DF7A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.990304206999951, 49.325724784000045 ], [ -122.990304259999974, 49.32545493 ], [ -122.989891404999966, 49.325454895000128 ], [ -122.989891568999923, 49.324645335000113 ], [ -122.99030441799998, 49.324645371000024 ], [ -122.990304576999932, 49.323835811 ], [ -122.990717417999946, 49.323835845000062 ], [ -122.990717468999904, 49.323565992000091 ], [ -122.991543145999955, 49.323566055000128 ], [ -122.991543193, 49.323296202000094 ], [ -122.991130356, 49.323296171000095 ], [ -122.991130404999979, 49.323026317 ], [ -122.990717569999973, 49.323026284000093 ], [ -122.990717619999941, 49.322756431000059 ], [ -122.989479123999985, 49.322756326000068 ], [ -122.98947941299997, 49.32140705900008 ], [ -122.989892231999974, 49.32140709600008 ], [ -122.989892288, 49.321137242000141 ], [ -122.990305107999973, 49.32113727800008 ], [ -122.990305211999967, 49.320597571000114 ], [ -122.98947958399998, 49.320597498000012 ], [ -122.989479870999972, 49.31924823100006 ], [ -122.98989267499995, 49.319248268000109 ], [ -122.989892785, 49.318708561000015 ], [ -122.990305583999913, 49.318708597000025 ], [ -122.990305776999932, 49.317718271000089 ], [ -122.990224816999927, 49.317716016000105 ], [ -122.99030602299996, 49.316465974000053 ], [ -122.990306113999935, 49.316010061000036 ], [ -122.989893336999941, 49.316010025000089 ], [ -122.989893382999924, 49.315782857000066 ], [ -122.991579815999927, 49.315808902000065 ], [ -122.99332689699996, 49.315836149000098 ], [ -122.993638113000017, 49.315841006000042 ], [ -122.994182111999976, 49.317227206000013 ], [ -122.994244918999954, 49.317387359000087 ], [ -122.994316106999946, 49.317630300000083 ], [ -122.994280550999946, 49.3178289250001 ], [ -122.994020875999979, 49.317821700000138 ], [ -122.994020865999985, 49.317899288000092 ], [ -122.993608074999926, 49.317899265000023 ], [ -122.993608038999966, 49.318169119000075 ], [ -122.992782451999972, 49.318169071000042 ], [ -122.992782412999958, 49.318438924000084 ], [ -122.991956820999974, 49.318438869 ], [ -122.99195677699997, 49.318708724000018 ], [ -122.99154397800001, 49.318708694000101 ], [ -122.9915438399999, 49.319518255000034 ], [ -122.991131034999952, 49.319518223000109 ], [ -122.991130985999959, 49.319788076000037 ], [ -122.991543792999934, 49.319788108000083 ], [ -122.991543746999966, 49.32005796100001 ], [ -122.991956556999966, 49.320057991000112 ], [ -122.991956601999931, 49.31978813700001 ], [ -122.992369407999917, 49.319788165000055 ], [ -122.992369533999977, 49.318978605000034 ], [ -122.994020735999953, 49.318978702000095 ], [ -122.994020670999944, 49.319518409000089 ], [ -122.994042268999948, 49.319518410000029 ], [ -122.994389164999959, 49.321184513000063 ], [ -122.994213039999977, 49.322252031000076 ], [ -122.994146850999968, 49.323148007000043 ], [ -122.993341925999985, 49.323254476000045 ], [ -122.993313747999977, 49.323258195000065 ], [ -122.991424755999901, 49.323604207000137 ], [ -122.990783635999918, 49.324564980000105 ], [ -122.990545124999969, 49.324832818000061 ], [ -122.990441317999938, 49.324919482000077 ], [ -122.990357012999937, 49.324987730000061 ], [ -122.990833360999929, 49.325193340000105 ], [ -122.991209420999951, 49.325876001000069 ], [ -122.990264924999963, 49.325878738000021 ], [ -122.98989131799999, 49.325869435000087 ], [ -122.989891348999933, 49.325724748000063 ], [ -122.990304206999951, 49.325724784000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.777007745617611", "sL_AssetLoss": "24530", "sL_BldgLoss": "19060", "sL_StrLoss": "10030", "sL_NStrLoss": "9030", "sL_ContLoss": "5470", "geom_point": "0101000020E6100000B404F8F26BBE5EC0EB7AC3F92BA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.975485635999974, 49.320865232000102 ], [ -122.975856585999963, 49.320865309000077 ], [ -122.975855926999969, 49.3222145760001 ], [ -122.974617443999961, 49.322214311000089 ], [ -122.974617672999941, 49.321769403000076 ], [ -122.974642288999945, 49.321747049000095 ], [ -122.975485635999974, 49.320865232000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.823703703703704", "sL_AssetLoss": "6750", "sL_BldgLoss": "5560", "sL_StrLoss": "3500", "sL_NStrLoss": "2060", "sL_ContLoss": "1190", "geom_point": "0101000020E610000042EB44F63FBE5EC09517910F97A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.972172253999958, 49.325425280000047 ], [ -122.972945277999926, 49.323898136000082 ], [ -122.972844249999923, 49.325444107000109 ], [ -122.972172253999958, 49.325425280000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65658834", "BldgCostT": "41573334", "sL_LossRatio": "0.719359888676292", "sL_AssetLoss": "862350", "sL_BldgLoss": "620340", "sL_StrLoss": "269460", "sL_NStrLoss": "350880", "sL_ContLoss": "242010", "geom_point": "0101000020E61000000B3A08D76FBF5EC0F3B599D045A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987430881999927, 49.315676764000088 ], [ -122.987428899999898, 49.315659008000146 ], [ -122.987399884999903, 49.315428498000109 ], [ -122.987443527, 49.315243304000035 ], [ -122.987515495999929, 49.315173289000064 ], [ -122.987713286999949, 49.315113005000121 ], [ -122.989920006999967, 49.315126786000107 ], [ -122.99020729199999, 49.314282693000095 ], [ -122.988229808999932, 49.314256389 ], [ -122.989048698, 49.313338009000056 ], [ -122.989142270999977, 49.313339672000069 ], [ -122.990559798, 49.313364809000056 ], [ -122.99138301699999, 49.313395803000077 ], [ -122.991693896999934, 49.313373791000139 ], [ -122.992270109999964, 49.313226789000048 ], [ -122.992554314999907, 49.313615802000065 ], [ -122.992996620999961, 49.313539810000066 ], [ -122.99324550199999, 49.313542471000041 ], [ -122.993361129999926, 49.313543738000135 ], [ -122.993367695999979, 49.313543810000077 ], [ -122.993741201999953, 49.313664929 ], [ -122.994156993999951, 49.313799765000091 ], [ -122.994355110999933, 49.313863986000086 ], [ -122.994092165999945, 49.314207327000112 ], [ -122.993998939999969, 49.314329048000033 ], [ -122.993699911999968, 49.314719482 ], [ -122.993671207999981, 49.31522491200009 ], [ -122.993641379999957, 49.315747402000056 ], [ -122.993641035999985, 49.315757430000126 ], [ -122.993638113000017, 49.315841006000042 ], [ -122.99332689699996, 49.315836149000098 ], [ -122.991579815999927, 49.315808902000065 ], [ -122.989893382999924, 49.315782857000066 ], [ -122.989893391999928, 49.315740172000119 ], [ -122.988889191999945, 49.315740080000054 ], [ -122.98888742199992, 49.315767311000094 ], [ -122.987438411000014, 49.315744896000062 ], [ -122.987430881999927, 49.315676764000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137804500", "BldgCostT": "91675000", "sL_LossRatio": "0.747712198807825", "sL_AssetLoss": "1667540", "sL_BldgLoss": "1246840", "sL_StrLoss": "574900", "sL_NStrLoss": "671940", "sL_ContLoss": "420700", "geom_point": "0101000020E61000009DEF969A33BF5EC09F4C16D611A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.980511204999971, 49.314445388000166 ], [ -122.980844885999929, 49.313756608000077 ], [ -122.980929445999891, 49.313416972000013 ], [ -122.981010273999928, 49.313092301000019 ], [ -122.981569480999923, 49.313011085000078 ], [ -122.982051704999947, 49.312956648000046 ], [ -122.982051673999976, 49.313040683000054 ], [ -122.981638924999984, 49.313040618000109 ], [ -122.981638823999958, 49.313310472000111 ], [ -122.982877083999966, 49.313310662000021 ], [ -122.98287723599999, 49.312871110000096 ], [ -122.984193266999952, 49.312771143000127 ], [ -122.984227960999974, 49.312771148000124 ], [ -122.984228132999974, 49.312768495000078 ], [ -122.988020355999964, 49.312480341000061 ], [ -122.988022691999973, 49.312480198000031 ], [ -122.991175275999936, 49.312696862000074 ], [ -122.99109473099999, 49.311643032000077 ], [ -122.991034515999957, 49.310855376000127 ], [ -122.990914447999941, 49.309284554000016 ], [ -122.990868387999939, 49.308682381000089 ], [ -122.991428365000033, 49.30877895 ], [ -122.994112052999938, 49.308811334000062 ], [ -122.99408639399995, 49.309397902000043 ], [ -122.994140502999954, 49.309539016000038 ], [ -122.994253945999915, 49.309677301000043 ], [ -122.994635163999973, 49.310012177000097 ], [ -122.995423298999981, 49.310434900000104 ], [ -122.994848808999933, 49.310916201000168 ], [ -122.99465861399996, 49.311071196000135 ], [ -122.994090496999931, 49.311242710000059 ], [ -122.992902204999936, 49.311561890000057 ], [ -122.992442803999921, 49.311689592000079 ], [ -122.992160109999972, 49.311870900000081 ], [ -122.992012112999973, 49.312010902000097 ], [ -122.991883220999981, 49.312259503000135 ], [ -122.991911321999979, 49.31263140500014 ], [ -122.992270109999964, 49.313226789000048 ], [ -122.991693896999934, 49.313373791000139 ], [ -122.99138301699999, 49.313395803000077 ], [ -122.990559798, 49.313364809000056 ], [ -122.989142270999977, 49.313339672000069 ], [ -122.989048698, 49.313338009000056 ], [ -122.988229808999932, 49.314256389 ], [ -122.99020729199999, 49.314282693000095 ], [ -122.989920006999967, 49.315126786000107 ], [ -122.987713286999949, 49.315113005000121 ], [ -122.987515495999929, 49.315173289000064 ], [ -122.987443527, 49.315243304000035 ], [ -122.987399884999903, 49.315428498000109 ], [ -122.987428899999898, 49.315659008000146 ], [ -122.987430881999927, 49.315676764000088 ], [ -122.987438411000014, 49.315744896000062 ], [ -122.986722424000021, 49.315740781000081 ], [ -122.986282144999947, 49.315738224000029 ], [ -122.985688194999938, 49.315734808000045 ], [ -122.985674455999941, 49.315734579000079 ], [ -122.981480194999975, 49.315667627000089 ], [ -122.981356455999972, 49.315665640000113 ], [ -122.98101649699997, 49.315660200000067 ], [ -122.980558362999943, 49.315663279000049 ], [ -122.980211611999948, 49.315665588000051 ], [ -122.980212894999923, 49.315593811000085 ], [ -122.980213187999979, 49.315576488000026 ], [ -122.980218781999952, 49.315027208000053 ], [ -122.980511204999971, 49.314445388000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4760917", "BldgCostT": "2811667", "sL_LossRatio": "0.609500901984366", "sL_AssetLoss": "83150", "sL_BldgLoss": "50680", "sL_StrLoss": "20530", "sL_NStrLoss": "30150", "sL_ContLoss": "32470", "geom_point": "0101000020E61000009DCC054F1DBE5EC0E5DB7179E2A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970170589999967, 49.312230865000075 ], [ -122.96981304699996, 49.31220593200009 ], [ -122.9694520259999, 49.312209799000073 ], [ -122.969439415999915, 49.309799790000042 ], [ -122.969671134999899, 49.309799851000051 ], [ -122.969670140999966, 49.311418974000063 ], [ -122.97049561599999, 49.311419188000094 ], [ -122.970495776999954, 49.311149334000099 ], [ -122.971733982999979, 49.311149644000075 ], [ -122.971733297999933, 49.312345407000066 ], [ -122.971094132999923, 49.312298556000087 ], [ -122.970250172999968, 49.312236714000022 ], [ -122.970170589999967, 49.312230865000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8390666", "BldgCostT": "5786666", "sL_LossRatio": "0.732675391546878", "sL_AssetLoss": "139830", "sL_BldgLoss": "102450", "sL_StrLoss": "48230", "sL_NStrLoss": "54220", "sL_ContLoss": "37380", "geom_point": "0101000020E6100000F2FA40B0B2BE5EC0DA27BA0DEEA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98097413699999, 49.313097565000078 ], [ -122.978971132999973, 49.312533789000092 ], [ -122.975860680999958, 49.312486130000103 ], [ -122.975860806999904, 49.312229994000035 ], [ -122.977099038999981, 49.312230246000119 ], [ -122.977099539999955, 49.311150831000049 ], [ -122.980401420999939, 49.311151439000042 ], [ -122.980401526999941, 49.310881584000079 ], [ -122.981639727999905, 49.310881788000088 ], [ -122.981639526999942, 49.311421495000083 ], [ -122.982052261999954, 49.311421560000028 ], [ -122.982051704999947, 49.312956648000046 ], [ -122.981569480999923, 49.313011085000078 ], [ -122.981010273999928, 49.313092301000019 ], [ -122.98097413699999, 49.313097565000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15836333", "BldgCostT": "10448333", "sL_LossRatio": "0.696846504559271", "sL_AssetLoss": "263200", "sL_BldgLoss": "183410", "sL_StrLoss": "86610", "sL_NStrLoss": "96800", "sL_ContLoss": "79790", "geom_point": "0101000020E61000004FEA479A2ABE5EC00EEA748315A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970497871999939, 49.307641234000087 ], [ -122.970498515000017, 49.306561818000027 ], [ -122.970085818999976, 49.306561710000011 ], [ -122.970085655, 49.306831566000078 ], [ -122.969423875999908, 49.306831392000049 ], [ -122.969418043999923, 49.305719856000074 ], [ -122.969404406999985, 49.30483966700011 ], [ -122.969418002999973, 49.304152723000072 ], [ -122.969433725999977, 49.303358174000039 ], [ -122.969443019, 49.303138967000045 ], [ -122.969778509999955, 49.303142208000047 ], [ -122.97081129899999, 49.303277604000087 ], [ -122.971708188999955, 49.303617496000058 ], [ -122.971674475999976, 49.304133424000135 ], [ -122.97263637699993, 49.304133656000054 ], [ -122.972975914999921, 49.30433387500004 ], [ -122.972975877999929, 49.30440358900006 ], [ -122.973094185999983, 49.304403618000059 ], [ -122.973388462999978, 49.304577144000064 ], [ -122.973388265999958, 49.30494339400007 ], [ -122.973800948999937, 49.304943488000085 ], [ -122.973800807, 49.305213342000123 ], [ -122.974590579999969, 49.305213519000063 ], [ -122.974626167999958, 49.305231263000103 ], [ -122.974625901999971, 49.305749097000067 ], [ -122.974625760999942, 49.306023088000103 ], [ -122.972562299999979, 49.306022618000114 ], [ -122.97256244899998, 49.305752763000029 ], [ -122.972149759999965, 49.305752665000064 ], [ -122.972148693999941, 49.30764164300011 ], [ -122.970497871999939, 49.307641234000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69490250", "BldgCostT": "44090000", "sL_LossRatio": "0.699704350274532", "sL_AssetLoss": "781330", "sL_BldgLoss": "546700", "sL_StrLoss": "258620", "sL_NStrLoss": "288080", "sL_ContLoss": "234630", "geom_point": "0101000020E6100000AC33D68207BF5EC0BC1C02899EA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.984228132999974, 49.312768495000078 ], [ -122.98430312899994, 49.311616225000151 ], [ -122.98783051499997, 49.311714642000027 ], [ -122.987830721999941, 49.310882605000074 ], [ -122.986592522, 49.310882469000063 ], [ -122.986592448999914, 49.311152322000112 ], [ -122.985766978999933, 49.311152223000128 ], [ -122.985766899999987, 49.311422077 ], [ -122.98411595099999, 49.311421863000085 ], [ -122.984116217999926, 49.31058812100008 ], [ -122.982999691999936, 49.310556943000087 ], [ -122.983021109999981, 49.310228 ], [ -122.982291686999972, 49.310207625000018 ], [ -122.982293856999945, 49.310174307000054 ], [ -122.981739168999979, 49.310158810000118 ], [ -122.98175381799993, 49.30993391600007 ], [ -122.98107666, 49.309914993000035 ], [ -122.981089657, 49.309715504000096 ], [ -122.98030864499998, 49.309693673000062 ], [ -122.980324309999929, 49.309453264000105 ], [ -122.977973176999967, 49.30938751200005 ], [ -122.977983880999957, 49.309223369000087 ], [ -122.976951650999965, 49.309194486000088 ], [ -122.976955533, 49.309134992000054 ], [ -122.976240128999947, 49.309114967000063 ], [ -122.976405258999989, 49.306584220000026 ], [ -122.976428092999967, 49.306234248000074 ], [ -122.976476496999936, 49.306256207000054 ], [ -122.9780037, 49.306877112000073 ], [ -122.980506201999958, 49.307426091000075 ], [ -122.981221690999931, 49.307534308000072 ], [ -122.983271096999943, 49.307660492000103 ], [ -122.984687703999938, 49.308002702000081 ], [ -122.985623217999958, 49.308425897000077 ], [ -122.986312398999956, 49.308443008000076 ], [ -122.98727449, 49.30821870700013 ], [ -122.988471912999941, 49.307463390000116 ], [ -122.989132100999953, 49.30738240500007 ], [ -122.990109519, 49.307445406000049 ], [ -122.99067259899999, 49.307562395000041 ], [ -122.990826815, 49.307647169000084 ], [ -122.990868387999939, 49.308682381000089 ], [ -122.990914447999941, 49.309284554000016 ], [ -122.991034515999957, 49.310855376000127 ], [ -122.99109473099999, 49.311643032000077 ], [ -122.991175275999936, 49.312696862000074 ], [ -122.988022691999973, 49.312480198000031 ], [ -122.988020355999964, 49.312480341000061 ], [ -122.984228132999974, 49.312768495000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117002312", "BldgCostT": "78783191", "sL_LossRatio": "0.717268670187872", "sL_AssetLoss": "2393120", "sL_BldgLoss": "1716510", "sL_StrLoss": "705130", "sL_NStrLoss": "1011380", "sL_ContLoss": "676610", "geom_point": "0101000020E6100000FFD137695ABE5EC03A5EFDAF25A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.967758503999931, 49.315719141000024 ], [ -122.967603194999981, 49.314742009000085 ], [ -122.96828134, 49.314801318000022 ], [ -122.968860461999924, 49.314851306000087 ], [ -122.968874975999952, 49.314133197000025 ], [ -122.968900820999977, 49.312855595000023 ], [ -122.96890597099997, 49.312788657000112 ], [ -122.968991546000012, 49.312259831000048 ], [ -122.968998858999981, 49.312214662000088 ], [ -122.9694520259999, 49.312209799000073 ], [ -122.96981304699996, 49.31220593200009 ], [ -122.970170589999967, 49.312230865000075 ], [ -122.970250172999968, 49.312236714000022 ], [ -122.971094132999923, 49.312298556000087 ], [ -122.971733297999933, 49.312345407000066 ], [ -122.97173305599992, 49.312768766000026 ], [ -122.972145804999982, 49.312768866000035 ], [ -122.972145653, 49.313038720000108 ], [ -122.972971153999936, 49.313038917 ], [ -122.972971302999952, 49.31276906300009 ], [ -122.97338405099994, 49.312769158000137 ], [ -122.973384195999927, 49.312499304000092 ], [ -122.97586067499999, 49.312499848000101 ], [ -122.975860680999958, 49.312486130000103 ], [ -122.978971132999973, 49.312533789000092 ], [ -122.98097413699999, 49.313097565000078 ], [ -122.981010273999928, 49.313092301000019 ], [ -122.980929445999891, 49.313416972000013 ], [ -122.980844885999929, 49.313756608000077 ], [ -122.980511204999971, 49.314445388000166 ], [ -122.980068519999946, 49.314336594000125 ], [ -122.97983207, 49.314312001000104 ], [ -122.979412892999989, 49.314983001000073 ], [ -122.979235596999928, 49.315086192000081 ], [ -122.977746601999954, 49.315120210000032 ], [ -122.977514010999968, 49.315058693000118 ], [ -122.97734209399998, 49.314910704000091 ], [ -122.9772476699999, 49.314755799000061 ], [ -122.977176607000018, 49.314643987000082 ], [ -122.977223710999965, 49.314302102000063 ], [ -122.976807809999983, 49.314120193000122 ], [ -122.976429985999928, 49.313965505000077 ], [ -122.975876695999901, 49.313803196000102 ], [ -122.975444515999968, 49.31378659100011 ], [ -122.975373520999952, 49.313788507000041 ], [ -122.974624711000018, 49.313808705000035 ], [ -122.973474131, 49.313840334000062 ], [ -122.97332537599999, 49.313844392000114 ], [ -122.973267220999958, 49.313848340000114 ], [ -122.97275792, 49.313882883000062 ], [ -122.972714788999895, 49.313885797000047 ], [ -122.972228695999931, 49.314020796000086 ], [ -122.971948003, 49.314172439000068 ], [ -122.971744296999958, 49.31428249700015 ], [ -122.971604218, 49.314358212000052 ], [ -122.971324899999956, 49.314486415000026 ], [ -122.971074113000029, 49.314577507000074 ], [ -122.970870287999958, 49.314581693000022 ], [ -122.970426590999921, 49.314530494000046 ], [ -122.97023567799998, 49.314673799000076 ], [ -122.969471297999945, 49.315215299000101 ], [ -122.969185989999957, 49.315414509000092 ], [ -122.969010177999962, 49.315578894000083 ], [ -122.968964413999942, 49.315879411000097 ], [ -122.96895715199993, 49.315931379000041 ], [ -122.96894881799993, 49.315991501000063 ], [ -122.968935059999964, 49.31599168300005 ], [ -122.968505270999984, 49.315997283000037 ], [ -122.967830392999971, 49.316006088000073 ], [ -122.967803308999976, 49.315898006000062 ], [ -122.967758503999931, 49.315719141000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "479797886", "BldgCostT": "331052079", "sL_LossRatio": "0.846897928798097", "sL_AssetLoss": "6340280", "sL_BldgLoss": "5369570", "sL_StrLoss": "2548080", "sL_NStrLoss": "2821490", "sL_ContLoss": "970710", "geom_point": "0101000020E61000000A5EECA45BBE5EC074E6998F52A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970426590999921, 49.314530494000046 ], [ -122.970870287999958, 49.314581693000022 ], [ -122.971074113000029, 49.314577507000074 ], [ -122.971324899999956, 49.314486415000026 ], [ -122.971604218, 49.314358212000052 ], [ -122.971744296999958, 49.31428249700015 ], [ -122.971948003, 49.314172439000068 ], [ -122.972228695999931, 49.314020796000086 ], [ -122.972714788999895, 49.313885797000047 ], [ -122.97275792, 49.313882883000062 ], [ -122.973267220999958, 49.313848340000114 ], [ -122.97332537599999, 49.313844392000114 ], [ -122.973474131, 49.313840334000062 ], [ -122.974624711000018, 49.313808705000035 ], [ -122.975373520999952, 49.313788507000041 ], [ -122.975444515999968, 49.31378659100011 ], [ -122.975876695999901, 49.313803196000102 ], [ -122.976429985999928, 49.313965505000077 ], [ -122.976807809999983, 49.314120193000122 ], [ -122.977223710999965, 49.314302102000063 ], [ -122.977176607000018, 49.314643987000082 ], [ -122.9772476699999, 49.314755799000061 ], [ -122.97734209399998, 49.314910704000091 ], [ -122.977514010999968, 49.315058693000118 ], [ -122.977746601999954, 49.315120210000032 ], [ -122.979235596999928, 49.315086192000081 ], [ -122.979412892999989, 49.314983001000073 ], [ -122.97983207, 49.314312001000104 ], [ -122.980068519999946, 49.314336594000125 ], [ -122.980511204999971, 49.314445388000166 ], [ -122.980218781999952, 49.315027208000053 ], [ -122.980213187999979, 49.315576488000026 ], [ -122.980212894999923, 49.315593811000085 ], [ -122.980211611999948, 49.315665588000051 ], [ -122.977403088999949, 49.315747495000075 ], [ -122.977389287999983, 49.315747898000076 ], [ -122.974626295999911, 49.315828184000111 ], [ -122.973307061999932, 49.315878378000065 ], [ -122.97215120199999, 49.31592235700009 ], [ -122.970834405999966, 49.31597239600007 ], [ -122.969878197999918, 49.315976204000094 ], [ -122.969429614999953, 49.316000494000065 ], [ -122.96894881799993, 49.315991501000063 ], [ -122.96895715199993, 49.315931379000041 ], [ -122.968964413999942, 49.315879411000097 ], [ -122.969010177999962, 49.315578894000083 ], [ -122.969185989999957, 49.315414509000092 ], [ -122.969471297999945, 49.315215299000101 ], [ -122.97023567799998, 49.314673799000076 ], [ -122.970426590999921, 49.314530494000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136272834", "BldgCostT": "89003334", "sL_LossRatio": "0.691077319763222", "sL_AssetLoss": "3816230", "sL_BldgLoss": "2637310", "sL_StrLoss": "1174970", "sL_NStrLoss": "1462340", "sL_ContLoss": "1178920", "geom_point": "0101000020E6100000A03791704CBE5EC00146340DCCA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.96976571499998, 49.322112506000032 ], [ -122.969177191999947, 49.321708691000083 ], [ -122.9690581, 49.32153150200002 ], [ -122.969033423999946, 49.321384002000094 ], [ -122.968975194, 49.321012112000098 ], [ -122.96896617499999, 49.319572489000109 ], [ -122.968961295000014, 49.318743694000055 ], [ -122.96894881799993, 49.315991501000063 ], [ -122.969429614999953, 49.316000494000065 ], [ -122.969878197999918, 49.315976204000094 ], [ -122.970834405999966, 49.31597239600007 ], [ -122.97215120199999, 49.31592235700009 ], [ -122.973307061999932, 49.315878378000065 ], [ -122.974626295999911, 49.315828184000111 ], [ -122.977389287999983, 49.315747898000076 ], [ -122.977403088999949, 49.315747495000075 ], [ -122.980211611999948, 49.315665588000051 ], [ -122.978600191999973, 49.317608247000095 ], [ -122.978301292, 49.317920840000056 ], [ -122.978301092999956, 49.317920834000077 ], [ -122.97830107799993, 49.317921064000103 ], [ -122.97825915699994, 49.317964905000068 ], [ -122.97792332099999, 49.317955512000083 ], [ -122.977922231999955, 49.317972206000043 ], [ -122.977921961999968, 49.317972198000085 ], [ -122.977921873999918, 49.318167187000057 ], [ -122.978065705999981, 49.318167215000059 ], [ -122.975743656999953, 49.320595432000054 ], [ -122.975443903999931, 49.320595369000102 ], [ -122.975443768999966, 49.320865222000045 ], [ -122.975485635999974, 49.320865232000102 ], [ -122.974642288999945, 49.321747049000095 ], [ -122.974617672999941, 49.321769403000076 ], [ -122.974617719999941, 49.321674604000073 ], [ -122.973792074999906, 49.321674420000093 ], [ -122.973792504, 49.320864859000011 ], [ -122.974205321999989, 49.320864953000054 ], [ -122.97420560299993, 49.320325246000102 ], [ -122.973792791000022, 49.320325153000134 ], [ -122.973793078999933, 49.319785446000033 ], [ -122.973380268999932, 49.319785352000025 ], [ -122.973380705999929, 49.318975791000092 ], [ -122.972967905999937, 49.318975696000074 ], [ -122.972968053999935, 49.318705842000078 ], [ -122.972142456999961, 49.318705646000069 ], [ -122.972142305999981, 49.31897549900004 ], [ -122.97172950400001, 49.318975399000081 ], [ -122.971729196999945, 49.319515106000068 ], [ -122.970077974999967, 49.319514691000101 ], [ -122.970078138999952, 49.319244837000085 ], [ -122.96966533599999, 49.319244730000037 ], [ -122.96966462099995, 49.320408828000076 ], [ -122.971952813999962, 49.32047298100008 ], [ -122.97186517499992, 49.321813735000013 ], [ -122.973079258, 49.321847754000082 ], [ -122.973015187, 49.322828297000093 ], [ -122.972945277999926, 49.323898136000082 ], [ -122.972172253999958, 49.325425280000047 ], [ -122.971071141, 49.325394421000041 ], [ -122.971570693, 49.325223804000089 ], [ -122.972030705999956, 49.324837695000021 ], [ -122.971989290999971, 49.324397793000109 ], [ -122.971826006999947, 49.323843785000051 ], [ -122.971305601000012, 49.323189701000032 ], [ -122.971079781999947, 49.322905902000073 ], [ -122.970858097999951, 49.322678209000038 ], [ -122.970406797999885, 49.322407019000103 ], [ -122.970342686999984, 49.322377543000144 ], [ -122.96976571499998, 49.322112506000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152650335", "BldgCostT": "101668335", "sL_LossRatio": "0.74563112799471", "sL_AssetLoss": "2490517", "sL_BldgLoss": "1857007", "sL_StrLoss": "802927", "sL_NStrLoss": "1054080", "sL_ContLoss": "633510", "geom_point": "0101000020E6100000DDD72E2BDCBD5EC071C7B499B7A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963170987999931, 49.317683 ], [ -122.964413185999916, 49.317681900000089 ], [ -122.965871115999931, 49.317684098000058 ], [ -122.965915529999918, 49.317670165000067 ], [ -122.966063506999916, 49.317623797000067 ], [ -122.96615700299995, 49.317570943000064 ], [ -122.966256284999957, 49.317514795000051 ], [ -122.96666791899996, 49.317005687000076 ], [ -122.966817393999989, 49.316822619000085 ], [ -122.966888008999945, 49.316648011000105 ], [ -122.966903080999899, 49.315954800000107 ], [ -122.9673074299999, 49.315957210000093 ], [ -122.96754457699997, 49.316009794000074 ], [ -122.967830392999971, 49.316006088000073 ], [ -122.968505270999984, 49.315997283000037 ], [ -122.968935059999964, 49.31599168300005 ], [ -122.96894881799993, 49.315991501000063 ], [ -122.968961295000014, 49.318743694000055 ], [ -122.96896617499999, 49.319572489000109 ], [ -122.96843384099995, 49.319570098000014 ], [ -122.968278614999988, 49.319569402000063 ], [ -122.967780580999928, 49.31944459300005 ], [ -122.967474813999914, 49.319346002000046 ], [ -122.967019311999977, 49.319306190000113 ], [ -122.96628931099994, 49.319427107000102 ], [ -122.96569401099994, 49.319484185000071 ], [ -122.96499518499995, 49.319464597000042 ], [ -122.964809300999946, 49.319361163000075 ], [ -122.964447064999945, 49.319542348 ], [ -122.964127845999954, 49.319620206000074 ], [ -122.96289124799992, 49.318855807000077 ], [ -122.963348979999935, 49.318450994000052 ], [ -122.963173091999948, 49.318238793000013 ], [ -122.963170987999931, 49.317683 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112908052", "BldgCostT": "74458745", "sL_LossRatio": "0.719263430767855", "sL_AssetLoss": "1678050", "sL_BldgLoss": "1206960", "sL_StrLoss": "512150", "sL_NStrLoss": "694810", "sL_ContLoss": "471090", "geom_point": "0101000020E61000000BB0C03E97BD5EC0E139DF788CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.958124108, 49.315883699000032 ], [ -122.96129979299999, 49.315909094000062 ], [ -122.963909041999941, 49.315930419000019 ], [ -122.966903080999899, 49.315954800000107 ], [ -122.966888008999945, 49.316648011000105 ], [ -122.966817393999989, 49.316822619000085 ], [ -122.96666791899996, 49.317005687000076 ], [ -122.966256284999957, 49.317514795000051 ], [ -122.96615700299995, 49.317570943000064 ], [ -122.966063506999916, 49.317623797000067 ], [ -122.965915529999918, 49.317670165000067 ], [ -122.965871115999931, 49.317684098000058 ], [ -122.964413185999916, 49.317681900000089 ], [ -122.963170987999931, 49.317683 ], [ -122.962641373999972, 49.317683398000099 ], [ -122.960914195999962, 49.317682482000087 ], [ -122.958068016999974, 49.317680901000074 ], [ -122.958083183999932, 49.316779697000129 ], [ -122.958124108, 49.315883699000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136406500", "BldgCostT": "83005000", "sL_LossRatio": "0.674502343534602", "sL_AssetLoss": "1813500", "sL_BldgLoss": "1223210", "sL_StrLoss": "542940", "sL_NStrLoss": "680270", "sL_ContLoss": "590290", "geom_point": "0101000020E610000088D9379C9EBD5EC0D7488590F7A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.955537391999954, 49.315854912000084 ], [ -122.955463196999972, 49.314953019000079 ], [ -122.956102411999964, 49.314938604000076 ], [ -122.955966810999911, 49.313653007000084 ], [ -122.957295411999922, 49.313632809000126 ], [ -122.957237691999921, 49.311431505000023 ], [ -122.957135497999928, 49.308695702000087 ], [ -122.957655244999927, 49.308804125000073 ], [ -122.960824969999976, 49.308492285000113 ], [ -122.960917565999964, 49.307368537000087 ], [ -122.961005851999928, 49.30736856599999 ], [ -122.961005638999936, 49.307638421000092 ], [ -122.961418343999981, 49.30763855900004 ], [ -122.961417926999928, 49.308172411 ], [ -122.961628603999884, 49.308178337000108 ], [ -122.961830632, 49.308178404000053 ], [ -122.961830628999948, 49.308184019000038 ], [ -122.963820261999928, 49.308239965000048 ], [ -122.963806572999943, 49.308448896000058 ], [ -122.966370263, 49.308449668000044 ], [ -122.966370078999915, 49.308719521000043 ], [ -122.9676082229999, 49.308719875000044 ], [ -122.967608045999953, 49.308989729000039 ], [ -122.968020763999917, 49.30898984500007 ], [ -122.968020589999966, 49.309259698000069 ], [ -122.96843330899992, 49.309259811000103 ], [ -122.968433135999959, 49.309529665000049 ], [ -122.969258578000023, 49.309529888000021 ], [ -122.969258412000016, 49.309799741000056 ], [ -122.969439415999915, 49.309799790000042 ], [ -122.9694520259999, 49.312209799000073 ], [ -122.968998858999981, 49.312214662000088 ], [ -122.968991546000012, 49.312259831000048 ], [ -122.96890597099997, 49.312788657000112 ], [ -122.968900820999977, 49.312855595000023 ], [ -122.968874975999952, 49.314133197000025 ], [ -122.968860461999924, 49.314851306000087 ], [ -122.96828134, 49.314801318000022 ], [ -122.967603194999981, 49.314742009000085 ], [ -122.967758503999931, 49.315719141000024 ], [ -122.967803308999976, 49.315898006000062 ], [ -122.967830392999971, 49.316006088000073 ], [ -122.96754457699997, 49.316009794000074 ], [ -122.9673074299999, 49.315957210000093 ], [ -122.966903080999899, 49.315954800000107 ], [ -122.963909041999941, 49.315930419000019 ], [ -122.96129979299999, 49.315909094000062 ], [ -122.958124108, 49.315883699000032 ], [ -122.957335083999951, 49.315876795000044 ], [ -122.955537391999954, 49.315854912000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.751951431049436", "sL_AssetLoss": "11530", "sL_BldgLoss": "8670", "sL_StrLoss": "3620", "sL_NStrLoss": "5050", "sL_ContLoss": "2860", "geom_point": "0101000020E61000002FF0260993BD5EC0F5CE912A44A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.960982579999921, 49.306579497000072 ], [ -122.9609936199999, 49.306445521000072 ], [ -122.96425676599992, 49.306961801000092 ], [ -122.964255956, 49.306974169000028 ], [ -122.960957701999945, 49.306881418000046 ], [ -122.960982579999921, 49.306579497000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "279642394", "BldgCostT": "183126523", "sL_LossRatio": "0.725088181002582", "sL_AssetLoss": "4283519", "sL_BldgLoss": "3105929", "sL_StrLoss": "1388479", "sL_NStrLoss": "1717450", "sL_ContLoss": "1177590", "geom_point": "0101000020E6100000C268991C69BD5EC0DE7160C5EBA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.956452852999988, 49.322410348000091 ], [ -122.956453030999953, 49.322208895000081 ], [ -122.95604020399999, 49.322208738000036 ], [ -122.956041164999959, 49.321129325000165 ], [ -122.956453982999946, 49.321129481000114 ], [ -122.95645422, 49.320859628000065 ], [ -122.956867036999967, 49.320859783000117 ], [ -122.956867272999943, 49.320589930000082 ], [ -122.958105715999949, 49.320590385000116 ], [ -122.958106400999966, 49.319780825000116 ], [ -122.957693594999981, 49.31978067500004 ], [ -122.957693825999968, 49.319510821000023 ], [ -122.956440136999959, 49.319510356000144 ], [ -122.956397185999919, 49.320164122000051 ], [ -122.955455670999967, 49.320137596000102 ], [ -122.955385104999934, 49.321211345000059 ], [ -122.953977031999983, 49.321171658000054 ], [ -122.953976821999959, 49.321398375000072 ], [ -122.954389640999963, 49.321398538000111 ], [ -122.954389141999968, 49.321938246000052 ], [ -122.95480196799997, 49.321938408000022 ], [ -122.954801473999936, 49.322478114000063 ], [ -122.955214304999913, 49.32247827500008 ], [ -122.955214276000035, 49.322509673000098 ], [ -122.954643139999945, 49.322555472 ], [ -122.954206015999944, 49.322758608000086 ], [ -122.953564115999953, 49.32306388700006 ], [ -122.953577108999951, 49.321037458000028 ], [ -122.953578341999986, 49.320848602000083 ], [ -122.953581747999948, 49.320317936000045 ], [ -122.953584393999947, 49.319904124000061 ], [ -122.95359246699995, 49.318653701000059 ], [ -122.953595154999931, 49.318230905000092 ], [ -122.953596829999952, 49.317970114000026 ], [ -122.953598786999976, 49.317662995000063 ], [ -122.953598549999953, 49.31755598700007 ], [ -122.953598119, 49.317359497000027 ], [ -122.953567480999979, 49.315838097000061 ], [ -122.955262593999933, 49.315849886000109 ], [ -122.955537391999954, 49.315854912000084 ], [ -122.957335083999951, 49.315876795000044 ], [ -122.958124108, 49.315883699000032 ], [ -122.958083183999932, 49.316779697000129 ], [ -122.958068016999974, 49.317680901000074 ], [ -122.960914195999962, 49.317682482000087 ], [ -122.962641373999972, 49.317683398000099 ], [ -122.963170987999931, 49.317683 ], [ -122.963173091999948, 49.318238793000013 ], [ -122.963348979999935, 49.318450994000052 ], [ -122.96289124799992, 49.318855807000077 ], [ -122.964127845999954, 49.319620206000074 ], [ -122.964447064999945, 49.319542348 ], [ -122.964809300999946, 49.319361163000075 ], [ -122.96499518499995, 49.319464597000042 ], [ -122.96569401099994, 49.319484185000071 ], [ -122.96628931099994, 49.319427107000102 ], [ -122.967019311999977, 49.319306190000113 ], [ -122.967474813999914, 49.319346002000046 ], [ -122.967780580999928, 49.31944459300005 ], [ -122.968278614999988, 49.319569402000063 ], [ -122.96843384099995, 49.319570098000014 ], [ -122.96896617499999, 49.319572489000109 ], [ -122.968975194, 49.321012112000098 ], [ -122.969033423999946, 49.321384002000094 ], [ -122.968432754999967, 49.32137993500006 ], [ -122.967641887999889, 49.321374596000076 ], [ -122.966507698999962, 49.32136351200004 ], [ -122.96587789199998, 49.321361085000049 ], [ -122.965407515999971, 49.321359586000099 ], [ -122.965267434999959, 49.321358334000074 ], [ -122.965184725999947, 49.321357584000062 ], [ -122.964555090999951, 49.3213519110001 ], [ -122.96431062, 49.321345996000062 ], [ -122.964074163999967, 49.321369809000089 ], [ -122.963625201999946, 49.321414987000018 ], [ -122.963172687999986, 49.321497699000112 ], [ -122.962920101999885, 49.321091582000065 ], [ -122.962799022999917, 49.321007096000116 ], [ -122.962569099999968, 49.320989913000076 ], [ -122.962330105999939, 49.321025498000076 ], [ -122.962179312999965, 49.32116530800004 ], [ -122.962211515999954, 49.321260800000111 ], [ -122.962499294999972, 49.32169681000007 ], [ -122.962498687, 49.32169699100011 ], [ -122.962498215999986, 49.32169712700005 ], [ -122.962291509999943, 49.321762098000058 ], [ -122.961814920999942, 49.322023407000145 ], [ -122.96116081299999, 49.322451785000062 ], [ -122.960586873999929, 49.323148433000043 ], [ -122.960495691999952, 49.323259089000018 ], [ -122.960057679000016, 49.323896203000118 ], [ -122.959371995999931, 49.323653504000028 ], [ -122.95872642099998, 49.323366909000107 ], [ -122.958793507999943, 49.322407689000052 ], [ -122.95756941799999, 49.322362401000092 ], [ -122.95677261099992, 49.322384697000075 ], [ -122.9567717, 49.322384782000064 ], [ -122.956452852999988, 49.322410348000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "368737070", "BldgCostT": "242883619", "sL_LossRatio": "0.749292843707822", "sL_AssetLoss": "3783817", "sL_BldgLoss": "2835187", "sL_StrLoss": "1226827", "sL_NStrLoss": "1608360", "sL_ContLoss": "948630", "geom_point": "0101000020E610000041CBF42AB6BC5EC0A168BB95E7A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952064512000021, 49.323066603000065 ], [ -122.95208360499997, 49.322712215000116 ], [ -122.949528982999965, 49.322670801000086 ], [ -122.949332404999936, 49.322710311000066 ], [ -122.949352269999949, 49.322115707000137 ], [ -122.949363486999957, 49.321778893000072 ], [ -122.946766096, 49.321739708000052 ], [ -122.94398709099994, 49.321701689000129 ], [ -122.941887506999947, 49.321661526000057 ], [ -122.94123241100003, 49.321648996000057 ], [ -122.940099604999943, 49.321659203000088 ], [ -122.940702008, 49.320910696000112 ], [ -122.94116630799999, 49.320295104000074 ], [ -122.941656895999927, 49.319886513000064 ], [ -122.940963616999952, 49.319553406000111 ], [ -122.940923299999966, 49.319497301000091 ], [ -122.940949410999977, 49.319413395000012 ], [ -122.941054300999966, 49.319283999000092 ], [ -122.943324811999929, 49.319000507000055 ], [ -122.943502843999951, 49.318997893000116 ], [ -122.944162015999922, 49.318988179000044 ], [ -122.944309296999947, 49.318985995000105 ], [ -122.944661258999986, 49.318481500000097 ], [ -122.945164604999917, 49.317759982000034 ], [ -122.948026011999943, 49.318005690000071 ], [ -122.948246200999932, 49.317899302000086 ], [ -122.948573290999931, 49.317735599000052 ], [ -122.948429674999915, 49.317264890000047 ], [ -122.948362711999962, 49.316861312000093 ], [ -122.948260672999979, 49.316383701000078 ], [ -122.948130898999963, 49.315786506000087 ], [ -122.949526094999925, 49.315800710000069 ], [ -122.949766405999966, 49.315805589000043 ], [ -122.950213412999943, 49.315806615000078 ], [ -122.95123798, 49.315829197000028 ], [ -122.952271187999955, 49.315846610000079 ], [ -122.952693594999971, 49.315844114000093 ], [ -122.953567480999979, 49.315838097000061 ], [ -122.953598119, 49.317359497000027 ], [ -122.953598549999953, 49.31755598700007 ], [ -122.953598786999976, 49.317662995000063 ], [ -122.953596829999952, 49.317970114000026 ], [ -122.953595154999931, 49.318230905000092 ], [ -122.95359246699995, 49.318653701000059 ], [ -122.953584393999947, 49.319904124000061 ], [ -122.953581747999948, 49.320317936000045 ], [ -122.953578341999986, 49.320848602000083 ], [ -122.953577108999951, 49.321037458000028 ], [ -122.953564115999953, 49.32306388700006 ], [ -122.952838223999962, 49.323057797000097 ], [ -122.952064512000021, 49.323066603000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413990229", "BldgCostT": "279429858", "sL_LossRatio": "0.773429244039106", "sL_AssetLoss": "5195110", "sL_BldgLoss": "4018050", "sL_StrLoss": "1767780", "sL_NStrLoss": "2250270", "sL_ContLoss": "1177060", "geom_point": "0101000020E610000062FCD20DDABC5EC0C15BCE428EA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94924909199996, 49.326754115000028 ], [ -122.949250808999977, 49.325746195000121 ], [ -122.948593298999953, 49.325744695000054 ], [ -122.948317143999972, 49.325513135000044 ], [ -122.947966909999963, 49.325219429000065 ], [ -122.94792191399992, 49.325181697000083 ], [ -122.947949002999962, 49.32355930700006 ], [ -122.949317985999954, 49.323577296000103 ], [ -122.949332404999936, 49.322710311000066 ], [ -122.949528982999965, 49.322670801000086 ], [ -122.95208360499997, 49.322712215000116 ], [ -122.952064512000021, 49.323066603000065 ], [ -122.952838223999962, 49.323057797000097 ], [ -122.953564115999953, 49.32306388700006 ], [ -122.953488607999958, 49.324777587000078 ], [ -122.953440788999941, 49.324938386000056 ], [ -122.953251990999959, 49.325236692000011 ], [ -122.95194009699992, 49.326775987000069 ], [ -122.950633708999959, 49.326767009000079 ], [ -122.94924909199996, 49.326754115000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225066701", "BldgCostT": "153872214", "sL_LossRatio": "0.783228293241325", "sL_AssetLoss": "3092470", "sL_BldgLoss": "2422110", "sL_StrLoss": "1037200", "sL_NStrLoss": "1384910", "sL_ContLoss": "670360", "geom_point": "0101000020E6100000BD3D837E0DBD5EC0116A4CA9C7A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953488607999958, 49.324777587000078 ], [ -122.953564115999953, 49.32306388700006 ], [ -122.954206015999944, 49.322758608000086 ], [ -122.954643139999945, 49.322555472 ], [ -122.955214276000035, 49.322509673000098 ], [ -122.955214058999942, 49.32274812800005 ], [ -122.955626891999941, 49.322748287000081 ], [ -122.95562666699999, 49.322998587000022 ], [ -122.955705874999936, 49.323000817000022 ], [ -122.955682922999955, 49.323350057000034 ], [ -122.955859629999964, 49.323827790000102 ], [ -122.956038762999967, 49.323827857000047 ], [ -122.9560372, 49.325582746000073 ], [ -122.956068434999963, 49.325928363000052 ], [ -122.956036786000013, 49.326048072000106 ], [ -122.95603636, 49.326526388000076 ], [ -122.95571685699997, 49.326526267000084 ], [ -122.955700935999971, 49.326538763000059 ], [ -122.955473650999977, 49.326534174000045 ], [ -122.955469512999969, 49.326597128000117 ], [ -122.954797720999935, 49.326578198000036 ], [ -122.954797027999973, 49.327335470000016 ], [ -122.954598451999942, 49.327335393000034 ], [ -122.954558735999967, 49.327934362000043 ], [ -122.954443134999934, 49.328725862000056 ], [ -122.95438284699999, 49.328755019 ], [ -122.954381914999914, 49.32976398400011 ], [ -122.953556132999935, 49.329763656000132 ], [ -122.953555879999968, 49.330032834000114 ], [ -122.95355560099992, 49.33003289400007 ], [ -122.952361308999926, 49.330258649000029 ], [ -122.952007988999924, 49.330300710000067 ], [ -122.95194009699992, 49.326775987000069 ], [ -122.953251990999959, 49.325236692000011 ], [ -122.953440788999941, 49.324938386000056 ], [ -122.953488607999958, 49.324777587000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122362135", "BldgCostT": "77717078", "sL_LossRatio": "0.689766073519751", "sL_AssetLoss": "1750550", "sL_BldgLoss": "1207470", "sL_StrLoss": "505700", "sL_NStrLoss": "701770", "sL_ContLoss": "543080", "geom_point": "0101000020E610000003635D3F71BD5EC0F3DDEF48A3A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959808696999971, 49.328416734000022 ], [ -122.959897254999987, 49.327067499000108 ], [ -122.958513086999929, 49.327067011000032 ], [ -122.958513313999958, 49.326797157000073 ], [ -122.957687582999966, 49.326796859000083 ], [ -122.957687813999939, 49.326527005000074 ], [ -122.95727495099996, 49.326526853000061 ], [ -122.957276117999925, 49.325177588000045 ], [ -122.95768897100001, 49.325177740000079 ], [ -122.957689663999986, 49.324368181000118 ], [ -122.958102508999957, 49.32436833100008 ], [ -122.95810296799999, 49.323828625000026 ], [ -122.957277284999975, 49.323828323000065 ], [ -122.957277985999923, 49.323018763000093 ], [ -122.95686515199999, 49.323018608000069 ], [ -122.956865387000022, 49.322748756000124 ], [ -122.956452553999952, 49.322748601000121 ], [ -122.956452852999988, 49.322410348000091 ], [ -122.9567717, 49.322384782000064 ], [ -122.95677261099992, 49.322384697000075 ], [ -122.95756941799999, 49.322362401000092 ], [ -122.958793507999943, 49.322407689000052 ], [ -122.95872642099998, 49.323366909000107 ], [ -122.959371995999931, 49.323653504000028 ], [ -122.960057679000016, 49.323896203000118 ], [ -122.960495691999952, 49.323259089000018 ], [ -122.96067852699997, 49.323322574000031 ], [ -122.96178289699999, 49.323705995000104 ], [ -122.962334450999933, 49.324036166000084 ], [ -122.962471282999942, 49.324118093000031 ], [ -122.962927698999948, 49.32460470500007 ], [ -122.963175894999921, 49.325057491000045 ], [ -122.96325359799998, 49.325719987000042 ], [ -122.963252854999979, 49.325728987000062 ], [ -122.96323179800001, 49.325989610000121 ], [ -122.962570148999973, 49.326997195000089 ], [ -122.959750523999929, 49.328501782000068 ], [ -122.959750591999963, 49.328416713000067 ], [ -122.959808696999971, 49.328416734000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12542500", "BldgCostT": "8650000", "sL_LossRatio": "0.771891043924701", "sL_AssetLoss": "140240", "sL_BldgLoss": "108250", "sL_StrLoss": "52770", "sL_NStrLoss": "55480", "sL_ContLoss": "31990", "geom_point": "0101000020E61000002F015361C7BD5EC0686EF04B9EA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959750523999929, 49.328501782000068 ], [ -122.962570148999973, 49.326997195000089 ], [ -122.96323179800001, 49.325989610000121 ], [ -122.963252854999979, 49.325728987000062 ], [ -122.96325359799998, 49.325719987000042 ], [ -122.963175894999921, 49.325057491000045 ], [ -122.962927698999948, 49.32460470500007 ], [ -122.962471282999942, 49.324118093000031 ], [ -122.962334450999933, 49.324036166000084 ], [ -122.96178289699999, 49.323705995000104 ], [ -122.96067852699997, 49.323322574000031 ], [ -122.960495691999952, 49.323259089000018 ], [ -122.960586873999929, 49.323148433000043 ], [ -122.96116081299999, 49.322451785000062 ], [ -122.961814920999942, 49.322023407000145 ], [ -122.962291509999943, 49.321762098000058 ], [ -122.962498215999986, 49.32169712700005 ], [ -122.962498687, 49.32169699100011 ], [ -122.962499294999972, 49.32169681000007 ], [ -122.962211515999954, 49.321260800000111 ], [ -122.962179312999965, 49.32116530800004 ], [ -122.962330105999939, 49.321025498000076 ], [ -122.962569099999968, 49.320989913000076 ], [ -122.962799022999917, 49.321007096000116 ], [ -122.962920101999885, 49.321091582000065 ], [ -122.963172687999986, 49.321497699000112 ], [ -122.963625201999946, 49.321414987000018 ], [ -122.964074163999967, 49.321369809000089 ], [ -122.96431062, 49.321345996000062 ], [ -122.964555090999951, 49.3213519110001 ], [ -122.965184725999947, 49.321357584000062 ], [ -122.965267434999959, 49.321358334000074 ], [ -122.965407515999971, 49.321359586000099 ], [ -122.96587789199998, 49.321361085000049 ], [ -122.966507698999962, 49.32136351200004 ], [ -122.967641887999889, 49.321374596000076 ], [ -122.968432754999967, 49.32137993500006 ], [ -122.969033423999946, 49.321384002000094 ], [ -122.9690581, 49.32153150200002 ], [ -122.969177191999947, 49.321708691000083 ], [ -122.96976571499998, 49.322112506000032 ], [ -122.970342686999984, 49.322377543000144 ], [ -122.970406797999885, 49.322407019000103 ], [ -122.970858097999951, 49.322678209000038 ], [ -122.971079781999947, 49.322905902000073 ], [ -122.971305601000012, 49.323189701000032 ], [ -122.971826006999947, 49.323843785000051 ], [ -122.971989290999971, 49.324397793000109 ], [ -122.972030705999956, 49.324837695000021 ], [ -122.971570693, 49.325223804000089 ], [ -122.971071141, 49.325394421000041 ], [ -122.967351399999984, 49.325290090000053 ], [ -122.96740483799995, 49.324473832000066 ], [ -122.96510397099992, 49.324409233000104 ], [ -122.965125574999931, 49.324079481000098 ], [ -122.964457569999979, 49.32406071700003 ], [ -122.964508004999928, 49.323291062000074 ], [ -122.964295974, 49.323290997000043 ], [ -122.964295779999958, 49.323560850000071 ], [ -122.963882939999976, 49.323560722000138 ], [ -122.963882544999976, 49.324100428000065 ], [ -122.963469700999937, 49.324100299000108 ], [ -122.963469502999928, 49.324370152000057 ], [ -122.963882347999956, 49.324370281000043 ], [ -122.963882198999968, 49.324574057000127 ], [ -122.965608907, 49.324622560000115 ], [ -122.96541326399992, 49.327608988000101 ], [ -122.965944341999901, 49.327609145000068 ], [ -122.965944329999957, 49.327628980000085 ], [ -122.965943597999953, 49.328688557000113 ], [ -122.965530715999975, 49.328688435000046 ], [ -122.965530339999987, 49.329228140000076 ], [ -122.965278574999928, 49.329228066000056 ], [ -122.965213712999969, 49.330217980000022 ], [ -122.964578295999942, 49.330200135000077 ], [ -122.959720321999967, 49.330063576000015 ], [ -122.959749613999989, 49.329617330000055 ], [ -122.959750523999929, 49.328501782000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.903966383109562", "sL_AssetLoss": "9757", "sL_BldgLoss": "8820", "sL_StrLoss": "6100", "sL_NStrLoss": "2720", "sL_ContLoss": "937", "geom_point": "0101000020E610000094A552C3A9B85EC021C862179CB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.884935601999985, 49.408965499000082 ], [ -122.887503136999968, 49.409039345000046 ], [ -122.88726103499999, 49.412635043000108 ], [ -122.882509751999962, 49.412498343000024 ], [ -122.882530385999942, 49.411747006000027 ], [ -122.883111495999941, 49.410821092000106 ], [ -122.883428493999972, 49.41065990200012 ], [ -122.883870802999937, 49.41029099400005 ], [ -122.884836400000026, 49.409896308000036 ], [ -122.884936094999929, 49.408969299000056 ], [ -122.884935601999985, 49.408965499000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.818599831617123", "sL_AssetLoss": "30882", "sL_BldgLoss": "25280", "sL_StrLoss": "13580", "sL_NStrLoss": "11700", "sL_ContLoss": "5602", "geom_point": "0101000020E610000013B96445A2BC5EC0FB875F775BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940340148999965, 49.332641319000075 ], [ -122.94034037299997, 49.33245612000006 ], [ -122.939927460999954, 49.332455905000074 ], [ -122.939927547999929, 49.33238457200013 ], [ -122.940103979999918, 49.332359285000045 ], [ -122.94047040599996, 49.332436383000079 ], [ -122.940680281, 49.332445892000052 ], [ -122.941735609999952, 49.332343403000074 ], [ -122.942421410999899, 49.332375386000102 ], [ -122.943096397999966, 49.332322389000062 ], [ -122.943561511000027, 49.332259885000035 ], [ -122.945430043999949, 49.331799619000016 ], [ -122.945775606999931, 49.331714488000074 ], [ -122.947187784999983, 49.331267998000079 ], [ -122.947628815999977, 49.331040879000021 ], [ -122.947693392999923, 49.331007604 ], [ -122.9492186, 49.330072051000045 ], [ -122.949431843999903, 49.329941260000062 ], [ -122.949574603999906, 49.329853691000025 ], [ -122.949799787999964, 49.329569097 ], [ -122.950047986999905, 49.329109193000065 ], [ -122.950081801999971, 49.329046490000053 ], [ -122.950650695999983, 49.329037396000054 ], [ -122.950645670999961, 49.328366618000047 ], [ -122.950639800999937, 49.327584181000091 ], [ -122.950636120999931, 49.327089510000064 ], [ -122.950633708999959, 49.326767009000079 ], [ -122.95194009699992, 49.326775987000069 ], [ -122.952007988999924, 49.330300710000067 ], [ -122.952361308999926, 49.330258649000029 ], [ -122.95355560099992, 49.33003289400007 ], [ -122.953555879999968, 49.330032834000114 ], [ -122.953555625999954, 49.330303361000112 ], [ -122.95337954399993, 49.330303291000128 ], [ -122.953371134999955, 49.330388363000083 ], [ -122.953318235, 49.330484162000083 ], [ -122.953142493999934, 49.33055180600013 ], [ -122.953142473999932, 49.330573048000076 ], [ -122.953087362999938, 49.330573026000103 ], [ -122.952805634999962, 49.330681462000015 ], [ -122.952497734999938, 49.33067666200003 ], [ -122.952387734999931, 49.330650762000083 ], [ -122.952241934999947, 49.330596063000108 ], [ -122.952206332999964, 49.330572665000062 ], [ -122.951903780999942, 49.330572539000038 ], [ -122.951904004999946, 49.330343726000102 ], [ -122.951873229999947, 49.33030267300007 ], [ -122.95073970599999, 49.330302195000058 ], [ -122.950698734999932, 49.33033406200007 ], [ -122.950665303999955, 49.330355908000037 ], [ -122.950665088999926, 49.330572017000101 ], [ -122.950334805999915, 49.330571876000121 ], [ -122.950252136999922, 49.330625896000051 ], [ -122.950251919999928, 49.330841693000075 ], [ -122.94992211099999, 49.330841550000059 ], [ -122.949838964999941, 49.3308958820001 ], [ -122.94983874499998, 49.33111136700002 ], [ -122.949432762999962, 49.331111190000051 ], [ -122.949387235999964, 49.331134863000045 ], [ -122.949124735999959, 49.331235363000076 ], [ -122.94901273699999, 49.33130958400011 ], [ -122.949012663999923, 49.331380859000049 ], [ -122.94890525699995, 49.331380811000066 ], [ -122.948599547999947, 49.331583402000021 ], [ -122.94859947899999, 49.331650529000051 ], [ -122.948489977999941, 49.331650480000121 ], [ -122.948186399999955, 49.331816039000024 ], [ -122.948186288999963, 49.331920197000095 ], [ -122.947995560999971, 49.331920111000045 ], [ -122.947773251999962, 49.332041346000075 ], [ -122.947773094999917, 49.332189864000085 ], [ -122.947501137999922, 49.332189741000107 ], [ -122.947367235999963, 49.332262762000028 ], [ -122.947360103999969, 49.332265468000053 ], [ -122.947359896999956, 49.332459529000076 ], [ -122.946786862999957, 49.332459267000026 ], [ -122.946120936999947, 49.332660335000035 ], [ -122.946120862, 49.332728811000095 ], [ -122.945894490999976, 49.332728706000125 ], [ -122.945294830999956, 49.33290975900011 ], [ -122.945294732999955, 49.332998276000112 ], [ -122.944650469999956, 49.332997970000065 ], [ -122.944498335999967, 49.333014662000039 ], [ -122.943642884, 49.333152549000026 ], [ -122.943642754999985, 49.333267335000087 ], [ -122.940714331999942, 49.333265871000059 ], [ -122.939736534999938, 49.333293262000083 ], [ -122.939355335999934, 49.333271063000083 ], [ -122.939136536999925, 49.333132702000043 ], [ -122.939048235999948, 49.333076863000016 ], [ -122.938953134999934, 49.332817563000091 ], [ -122.93916069899997, 49.332767106000098 ], [ -122.939264134999974, 49.332741962000078 ], [ -122.940333934999899, 49.3326422620001 ], [ -122.940340148999965, 49.332641319000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.890843418707196", "sL_AssetLoss": "21318", "sL_BldgLoss": "18991", "sL_StrLoss": "12620", "sL_NStrLoss": "6371", "sL_ContLoss": "2327", "geom_point": "0101000020E610000013799AE5D5B85EC0B3BDED74ADB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.886552190999964, 49.395496896000097 ], [ -122.886677590999938, 49.394885303000052 ], [ -122.886388419999932, 49.394399503000024 ], [ -122.88633392199992, 49.394057905000118 ], [ -122.886224480999914, 49.393814401000085 ], [ -122.885151676999925, 49.393147992000095 ], [ -122.884422291999954, 49.392418497000122 ], [ -122.88422465299999, 49.39233834900012 ], [ -122.889543433999961, 49.392491350000086 ], [ -122.88951008, 49.392987281000011 ], [ -122.889752357999953, 49.392994245000132 ], [ -122.88972588899999, 49.393387826000037 ], [ -122.889792679999928, 49.393389745000064 ], [ -122.889766828999953, 49.393774153000066 ], [ -122.889919600000013, 49.393778543000046 ], [ -122.889857993999982, 49.394694609000062 ], [ -122.88997055599999, 49.394697844000056 ], [ -122.88993719699999, 49.395193877000082 ], [ -122.890179479, 49.395200839 ], [ -122.890153270999988, 49.395590554000087 ], [ -122.890201502, 49.395591940000024 ], [ -122.889959678999958, 49.399187716000057 ], [ -122.889808285999891, 49.399183366000052 ], [ -122.889772701999945, 49.399712419000075 ], [ -122.886066224999979, 49.399605850000107 ], [ -122.886324702999943, 49.39800628700003 ], [ -122.886947192999926, 49.397125504000073 ], [ -122.88696189399991, 49.396748206000098 ], [ -122.886552190999964, 49.395496896000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81345917", "BldgCostT": "55681667", "sL_LossRatio": "0.764388593501882", "sL_AssetLoss": "896752", "sL_BldgLoss": "685467", "sL_StrLoss": "324057", "sL_NStrLoss": "361410", "sL_ContLoss": "211285", "geom_point": "0101000020E610000031D249BE2BBC5EC04FCAE6A208AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940117255999937, 49.379161430000103 ], [ -122.940144364, 49.378751570000077 ], [ -122.939442355999915, 49.378731713000022 ], [ -122.93967324099998, 49.37524137 ], [ -122.938833351999932, 49.375217606000071 ], [ -122.939071253999941, 49.371621594000032 ], [ -122.93916791, 49.371624329000056 ], [ -122.939223292999969, 49.370787089000025 ], [ -122.93665062099997, 49.370714262000043 ], [ -122.936442041999953, 49.370708355000048 ], [ -122.936492581999914, 49.369944978000056 ], [ -122.933518419999984, 49.369860702000011 ], [ -122.933472504999898, 49.370553530000088 ], [ -122.934399408999951, 49.370579804000108 ], [ -122.934327460999953, 49.371665775000082 ], [ -122.935665031999989, 49.371703674000067 ], [ -122.935595043999939, 49.372760471000056 ], [ -122.936513428999902, 49.372786483000048 ], [ -122.938650991999936, 49.372846997000046 ], [ -122.938413050999941, 49.376443002 ], [ -122.936275320999968, 49.376382483000086 ], [ -122.932914265999898, 49.376287246000111 ], [ -122.932984322, 49.375230457000036 ], [ -122.929928224999955, 49.375143771000076 ], [ -122.92996447799996, 49.374597431000083 ], [ -122.925000484999941, 49.374456442000074 ], [ -122.925239456999975, 49.370860457000099 ], [ -122.927341988999927, 49.370920201000068 ], [ -122.927424134, 49.369683106000068 ], [ -122.928020740999926, 49.36970005200002 ], [ -122.928194050999963, 49.367089318000104 ], [ -122.931757369999971, 49.367190459000064 ], [ -122.931767107000013, 49.367251384000113 ], [ -122.932289208999947, 49.367459302000036 ], [ -122.932633110999973, 49.367351094000064 ], [ -122.932853886999951, 49.367117491000059 ], [ -122.932798998999942, 49.366577811000056 ], [ -122.932633814999974, 49.366560699000054 ], [ -122.93245435599999, 49.366745846000057 ], [ -122.932502037999953, 49.366026519000087 ], [ -122.932928761000014, 49.366038621000037 ], [ -122.932961987999946, 49.365537290000042 ], [ -122.93100666399999, 49.365481824000099 ], [ -122.93124512299994, 49.36188577700004 ], [ -122.932100127999945, 49.361910035000122 ], [ -122.932259516999963, 49.359505395000021 ], [ -122.937382883999973, 49.359650612000053 ], [ -122.937756308999937, 49.359661188000082 ], [ -122.93752753499993, 49.363118701000069 ], [ -122.940544345999953, 49.363204085000064 ], [ -122.940659365999963, 49.361464104000021 ], [ -122.946156418, 49.361619470000029 ], [ -122.94614613899995, 49.361775244000093 ], [ -122.947483667000014, 49.36181300500008 ], [ -122.947571387999986, 49.360482949000058 ], [ -122.947437582999925, 49.360479172000076 ], [ -122.94749180899997, 49.359656981000093 ], [ -122.946303894999971, 49.359623444000079 ], [ -122.946502598999984, 49.356611515000104 ], [ -122.944087602999929, 49.356543293000065 ], [ -122.94413456499997, 49.355831965000085 ], [ -122.942200699999944, 49.355777297000053 ], [ -122.942457399999952, 49.355652008000085 ], [ -122.942964575999952, 49.355310601000063 ], [ -122.943194479999988, 49.355228878000041 ], [ -122.943603203999942, 49.355083605000033 ], [ -122.944667690999921, 49.354806610000054 ], [ -122.94565396199998, 49.354616718000088 ], [ -122.945891909999901, 49.354570912000085 ], [ -122.947665131999955, 49.354339962000054 ], [ -122.94907441, 49.354156394000036 ], [ -122.954270528, 49.35295179700006 ], [ -122.955802187999893, 49.3527491030001 ], [ -122.95717661499998, 49.352804587000087 ], [ -122.95844779399998, 49.352855892000036 ], [ -122.958767284999936, 49.353043305000092 ], [ -122.958446205999977, 49.353319808000109 ], [ -122.957316600999917, 49.353270009000063 ], [ -122.956557898999947, 49.353335998000091 ], [ -122.956060100999949, 49.353424212000085 ], [ -122.955733408999947, 49.353482088000078 ], [ -122.955307107999943, 49.353621417000042 ], [ -122.952528795999953, 49.354840208000063 ], [ -122.951847289999989, 49.355279394000092 ], [ -122.950782311999944, 49.356087003000034 ], [ -122.949374919999968, 49.35694979000003 ], [ -122.949093625, 49.357145495000069 ], [ -122.947920191999941, 49.358967806000067 ], [ -122.947779560999962, 49.359110954000073 ], [ -122.947655421999968, 49.359299795000062 ], [ -122.947613955999969, 49.359425694000088 ], [ -122.947613908999969, 49.359479668000098 ], [ -122.947668863999951, 49.359596615000044 ], [ -122.947737672999921, 49.359650628000104 ], [ -122.947916638, 49.35970467100001 ], [ -122.94817174899994, 49.359692298000049 ], [ -122.948266898999989, 49.359660305000077 ], [ -122.949584891999962, 49.358797699000029 ], [ -122.950983587999986, 49.357941905000054 ], [ -122.951610800999958, 49.357763192000064 ], [ -122.95226029699991, 49.357787793000092 ], [ -122.952458805999939, 49.357842933000079 ], [ -122.95311209, 49.358024395000037 ], [ -122.953403791999946, 49.358235208000103 ], [ -122.953683108999925, 49.358594408000044 ], [ -122.953792987999961, 49.358953195000083 ], [ -122.95372200599995, 49.35957270100004 ], [ -122.953576602999988, 49.35993971500011 ], [ -122.953270690999901, 49.360466990000063 ], [ -122.952768941999963, 49.361054268000011 ], [ -122.951871380999975, 49.362104693000077 ], [ -122.949034008999931, 49.365150996000132 ], [ -122.948996416999961, 49.36959850500007 ], [ -122.944790128999941, 49.369479779000073 ], [ -122.944882660999951, 49.36807826200009 ], [ -122.94358334199994, 49.368041555000062 ], [ -122.94350754499996, 49.369189098000099 ], [ -122.94205357599999, 49.369148003000113 ], [ -122.941974277999947, 49.370347937000055 ], [ -122.944755514999926, 49.370426529000063 ], [ -122.944684456999966, 49.371502716000066 ], [ -122.945516454999947, 49.371526213000109 ], [ -122.945503106000018, 49.371728422000047 ], [ -122.94704931299998, 49.371772072000049 ], [ -122.94681203, 49.375368101000092 ], [ -122.946438055999948, 49.375357546000039 ], [ -122.946264056999908, 49.377993807000067 ], [ -122.945704794999941, 49.377978020000064 ], [ -122.94561640799995, 49.37931681900006 ], [ -122.940117255999937, 49.379161430000103 ] ], [ [ -122.93712583199999, 49.36348099800005 ], [ -122.937141344999958, 49.363246584000059 ], [ -122.936663333999945, 49.363233045000079 ], [ -122.936647818, 49.363467460000066 ], [ -122.93712583199999, 49.36348099800005 ] ], [ [ -122.952707082999936, 49.35405003100005 ], [ -122.953120177999949, 49.354050199 ], [ -122.953120433999956, 49.353780348000058 ], [ -122.952707343999961, 49.353780179000069 ], [ -122.952707082999936, 49.35405003100005 ], [ -122.951467801999982, 49.354049517000099 ], [ -122.951467536999928, 49.354319370000027 ], [ -122.950228248999949, 49.35431884200004 ], [ -122.950227976999926, 49.35458869400005 ], [ -122.949723128999921, 49.354588476000096 ], [ -122.949693997999987, 49.355030548000045 ], [ -122.951053696999907, 49.355068896000034 ], [ -122.95105390499999, 49.354858899000114 ], [ -122.951467005999987, 49.354859073000064 ], [ -122.951467269999938, 49.354589221000047 ], [ -122.95188036899998, 49.354589394000065 ], [ -122.951880633999949, 49.354319542000148 ], [ -122.95270682499995, 49.354319883000066 ], [ -122.952707082999936, 49.35405003100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.897788404064555", "sL_AssetLoss": "10038", "sL_BldgLoss": "9012", "sL_StrLoss": "6410", "sL_NStrLoss": "2602", "sL_ContLoss": "1026", "geom_point": "0101000020E610000098DAB53174B85EC0174F777DEAB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879654795999954, 49.381268991000127 ], [ -122.879587020999963, 49.380666097000073 ], [ -122.880125499, 49.380441810000036 ], [ -122.880469882999975, 49.380442203000044 ], [ -122.880689993999965, 49.38049639700003 ], [ -122.88104657699995, 49.380928596000118 ], [ -122.881941705999964, 49.380830495000126 ], [ -122.882368690999968, 49.380983797000077 ], [ -122.883650494999955, 49.381048105000033 ], [ -122.883911798000014, 49.381003200000109 ], [ -122.884480106999916, 49.379672784000022 ], [ -122.88457994, 49.379556921000074 ], [ -122.884343035999976, 49.383074497000081 ], [ -122.883443857999936, 49.383048601000056 ], [ -122.883442298999967, 49.383071719000071 ], [ -122.882990859999936, 49.383058715000054 ], [ -122.882907247999967, 49.384299529000039 ], [ -122.881190592999957, 49.38425006100006 ], [ -122.881040285, 49.383294106000157 ], [ -122.880215612999933, 49.382654787000078 ], [ -122.879515900999976, 49.38174538600007 ], [ -122.879654795999954, 49.381268991000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11230333", "BldgCostT": "7273333", "sL_LossRatio": "0.778941944349021", "sL_AssetLoss": "69864", "sL_BldgLoss": "54420", "sL_StrLoss": "29700", "sL_NStrLoss": "24720", "sL_ContLoss": "15444", "geom_point": "0101000020E61000006606859C12B95EC0E7A2C629DFAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890260599, 49.370008696000099 ], [ -122.88981142499992, 49.369584079000028 ], [ -122.893315879999989, 49.369684791000104 ], [ -122.893309538999944, 49.369779244000028 ], [ -122.893805167999943, 49.369793478000091 ], [ -122.893797754999966, 49.369903900000068 ], [ -122.894959233999927, 49.369937249000088 ], [ -122.894717913999955, 49.373533172000052 ], [ -122.894346985, 49.373522523000119 ], [ -122.894306431999908, 49.374126679000085 ], [ -122.893825809999981, 49.374112881000059 ], [ -122.893666840000023, 49.376480689000104 ], [ -122.892557404999977, 49.376448826000072 ], [ -122.8923989199999, 49.378808313000107 ], [ -122.886900009999934, 49.378650221000065 ], [ -122.886916188999948, 49.378409772000047 ], [ -122.88725272, 49.378308096000119 ], [ -122.887542798999959, 49.377732587000061 ], [ -122.887832409999973, 49.377472197000081 ], [ -122.888976695999972, 49.377275388000093 ], [ -122.889404706999983, 49.376826099000077 ], [ -122.890397293999925, 49.376683206000081 ], [ -122.89060380899997, 49.376557387000062 ], [ -122.890700790999958, 49.376368510000098 ], [ -122.890645200999927, 49.376223891000052 ], [ -122.890494809999964, 49.37602648900004 ], [ -122.890592498999936, 49.37582860100008 ], [ -122.891502311999915, 49.375406705000138 ], [ -122.891585705999987, 49.375110205000048 ], [ -122.890828898, 49.374821596000089 ], [ -122.890196609000014, 49.374137208000107 ], [ -122.889524097999981, 49.373129286000065 ], [ -122.88931848799993, 49.372436895000085 ], [ -122.889871104999926, 49.371321503000104 ], [ -122.890409611999971, 49.370890297000116 ], [ -122.890451094999932, 49.370683515000067 ], [ -122.890260599, 49.370008696000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53722417", "BldgCostT": "36081667", "sL_LossRatio": "0.816697446989868", "sL_AssetLoss": "218213", "sL_BldgLoss": "178214", "sL_StrLoss": "109375", "sL_NStrLoss": "68839", "sL_ContLoss": "39999", "geom_point": "0101000020E610000022D99F9BA8BA5EC02B7A96D695AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.895863075999927, 49.36358339700007 ], [ -122.895872062999914, 49.363449410000044 ], [ -122.895313765999958, 49.363433384000089 ], [ -122.89533275499997, 49.36315031300007 ], [ -122.89479486499999, 49.363134870000138 ], [ -122.894833381999931, 49.36256081800007 ], [ -122.894730697999989, 49.362557870000074 ], [ -122.894763055999974, 49.362075619000031 ], [ -122.894391914999986, 49.362064962000062 ], [ -122.894413761999914, 49.361739398000083 ], [ -122.893733011999942, 49.361719846000042 ], [ -122.893749183999901, 49.36147889700004 ], [ -122.89338501499995, 49.361468437000035 ], [ -122.893394312999959, 49.361329928000018 ], [ -122.892879005999973, 49.361315124000079 ], [ -122.892951279999977, 49.360238548000105 ], [ -122.89353400099999, 49.359532503000089 ], [ -122.894223312999912, 49.359236191000029 ], [ -122.894581395999978, 49.359209593000088 ], [ -122.89593108199989, 49.359381704000086 ], [ -122.896879815999938, 49.359940398000035 ], [ -122.89796681899999, 49.359932400000098 ], [ -122.899042291999976, 49.359798410000067 ], [ -122.900159595, 49.358764699000027 ], [ -122.901015285999932, 49.358090897000096 ], [ -122.901235296999985, 49.358019200000101 ], [ -122.901523813999972, 49.358028308000037 ], [ -122.901894904999935, 49.358937198000085 ], [ -122.902101597999959, 49.35888339800011 ], [ -122.902887093999979, 49.358074391000052 ], [ -122.903287784999989, 49.357796004000086 ], [ -122.903480392999981, 49.357823211000031 ], [ -122.903533881999962, 49.358155992000036 ], [ -122.903645094999931, 49.358192109000115 ], [ -122.90396170799994, 49.358192490000064 ], [ -122.90426431899999, 49.358093605000107 ], [ -122.905477815999973, 49.357266994000035 ], [ -122.906470412999965, 49.356467293000094 ], [ -122.90659558499999, 49.356170593000087 ], [ -122.906376015999953, 49.355954606000076 ], [ -122.906306815999969, 49.35572970300008 ], [ -122.90651499399999, 49.354956197000085 ], [ -122.906997796999974, 49.354453006000021 ], [ -122.907700381, 49.354013393000074 ], [ -122.908129702999958, 49.35342839900008 ], [ -122.908488818999942, 49.352133396000092 ], [ -122.90871020699997, 49.351512890000016 ], [ -122.909359800999979, 49.350613801000108 ], [ -122.909471194000034, 49.350191186000082 ], [ -122.909360895999967, 49.349858392000044 ], [ -122.909609703999976, 49.349714606000049 ], [ -122.909567811999949, 49.349336797000085 ], [ -122.909679488, 49.349003905000131 ], [ -122.910065690999943, 49.348554504000049 ], [ -122.910823982999943, 49.348303404000028 ], [ -122.911360212999938, 49.347925794000098 ], [ -122.91148468499999, 49.347709995000066 ], [ -122.911527599999928, 49.347170511000058 ], [ -122.912508107999912, 49.345677999000017 ], [ -122.913389303999963, 49.345130105000045 ], [ -122.913829804999949, 49.345130197000096 ], [ -122.914587396999977, 49.34527489300006 ], [ -122.915027892999902, 49.345248098000113 ], [ -122.915138101999929, 49.345149108000022 ], [ -122.915662293999944, 49.344609989000098 ], [ -122.916020402999919, 49.344502287000083 ], [ -122.916144502999899, 49.344214488000055 ], [ -122.916433582999957, 49.34400770500006 ], [ -122.917205684999928, 49.343909501000049 ], [ -122.91880288199998, 49.343460796000059 ], [ -122.919588, 49.343011707000059 ], [ -122.919575402999953, 49.342786708000034 ], [ -122.920925509999918, 49.342256502000126 ], [ -122.921532211999988, 49.341870495000144 ], [ -122.922192701999947, 49.341691111000074 ], [ -122.92237238199999, 49.341160595000055 ], [ -122.922662096999929, 49.340917790000063 ], [ -122.923212315999976, 49.340819101000093 ], [ -122.923750218999899, 49.340594601000042 ], [ -122.924686600999948, 49.340559412000061 ], [ -122.925278522999974, 49.340271906000062 ], [ -122.925704984, 49.339885498000086 ], [ -122.926532884999972, 49.339490200000071 ], [ -122.926821090999951, 49.339346407000072 ], [ -122.926944896999942, 49.339166587000094 ], [ -122.926850105999975, 49.338806704000071 ], [ -122.927622811999953, 49.337997795000064 ], [ -122.929357404999934, 49.337027311000021 ], [ -122.930253275999988, 49.336020196000085 ], [ -122.932072697, 49.335014109000078 ], [ -122.934067639999981, 49.333618955000091 ], [ -122.934152865, 49.33367628400007 ], [ -122.934968288, 49.334297804000116 ], [ -122.935372273, 49.334542135000092 ], [ -122.935565932, 49.334699820000111 ], [ -122.935779581999938, 49.334754258000061 ], [ -122.9373159299999, 49.333430139000015 ], [ -122.937114029999961, 49.33648294500005 ], [ -122.935779716999889, 49.336445125000076 ], [ -122.935761589999984, 49.336719078000044 ], [ -122.935528789999978, 49.336712478000052 ], [ -122.935512092999929, 49.33696478300007 ], [ -122.935203195999975, 49.33695602500012 ], [ -122.935191490999969, 49.337132890000085 ], [ -122.934859302999953, 49.337123471000048 ], [ -122.93484438899999, 49.337348798000079 ], [ -122.934531919999955, 49.337339937000074 ], [ -122.934514088999961, 49.337609305000079 ], [ -122.933097293999964, 49.337569114000118 ], [ -122.933028185999959, 49.338612538000064 ], [ -122.93207367199993, 49.338585450000082 ], [ -122.932072830999971, 49.33919787500011 ], [ -122.9324858, 49.339198117000102 ], [ -122.93248616799994, 49.338928265000092 ], [ -122.932899134999985, 49.338928505000048 ], [ -122.932899502999987, 49.338658653000081 ], [ -122.934138396999955, 49.338659365000083 ], [ -122.934138756999914, 49.338389513000052 ], [ -122.935377644999946, 49.33839021200005 ], [ -122.93537623099999, 49.339469622000102 ], [ -122.934137317999955, 49.339468923000076 ], [ -122.934136956999978, 49.339738775000036 ], [ -122.933723981999904, 49.339738539000066 ], [ -122.933723620999942, 49.340008391000083 ], [ -122.933310643999931, 49.340008154000046 ], [ -122.933310278999954, 49.340278006000048 ], [ -122.932897301999972, 49.340277767 ], [ -122.932896566999943, 49.340817471000065 ], [ -122.932483584999943, 49.340817231000123 ], [ -122.93248321499999, 49.341087083000055 ], [ -122.932070230999955, 49.34108684100007 ], [ -122.932069858999938, 49.341356694000034 ], [ -122.931656871999948, 49.34135645000007 ], [ -122.931656497999981, 49.341626302000108 ], [ -122.931243508999927, 49.341626058000045 ], [ -122.931243132999953, 49.341895909000137 ], [ -122.930417147999947, 49.341895415000124 ], [ -122.930416766999898, 49.342165268000059 ], [ -122.930003772999967, 49.342165019000063 ], [ -122.930003390999914, 49.342434871000123 ], [ -122.92959039299997, 49.342434620000056 ], [ -122.92958924, 49.343244177000052 ], [ -122.929176235999961, 49.343243924000078 ], [ -122.929175849000018, 49.343513776000066 ], [ -122.928762842999959, 49.343513522000116 ], [ -122.928762453999965, 49.343783374000118 ], [ -122.927110422999988, 49.343782345000136 ], [ -122.927109624999943, 49.344322049000013 ], [ -122.926696613999979, 49.344321787000048 ], [ -122.926696211999953, 49.34459164000004 ], [ -122.926283196999918, 49.344591377000079 ], [ -122.926282793999974, 49.344861228000042 ], [ -122.926086870999924, 49.344861103000035 ], [ -122.926058581999925, 49.34528718900004 ], [ -122.925869145999968, 49.345281802000024 ], [ -122.925868967999975, 49.345400669000107 ], [ -122.925538998999968, 49.345400457000061 ], [ -122.925533171999959, 49.345488202000077 ], [ -122.925455815999982, 49.345486002000058 ], [ -122.92545553799999, 49.345670256000091 ], [ -122.925042513999955, 49.345669989000051 ], [ -122.925041694999919, 49.346209692000095 ], [ -122.92462866699999, 49.346209424000101 ], [ -122.924628254, 49.346479276000089 ], [ -122.923802193999933, 49.346478734000037 ], [ -122.92380177699999, 49.346748587000029 ], [ -122.922149645999951, 49.346747485000044 ], [ -122.922150072999955, 49.346477634000074 ], [ -122.921737042999936, 49.346477354000051 ], [ -122.921737470999958, 49.346207503000045 ], [ -122.919672331999919, 49.346206085000091 ], [ -122.91967145199996, 49.34674579000005 ], [ -122.920910549999988, 49.346746644000113 ], [ -122.920910117999981, 49.347016497000027 ], [ -122.922149220999984, 49.347017337000104 ], [ -122.922147943999988, 49.347826892000107 ], [ -122.921734901999969, 49.347826615000059 ], [ -122.921734473999919, 49.348096466000122 ], [ -122.920495342999956, 49.348095621000084 ], [ -122.920495777999975, 49.347825769000075 ], [ -122.919256653999952, 49.347824910000028 ], [ -122.919256211999965, 49.348094762000123 ], [ -122.918430123999912, 49.348094182000068 ], [ -122.918429678999942, 49.34836403300006 ], [ -122.917190541000011, 49.348363153000051 ], [ -122.917190087999984, 49.348633004000042 ], [ -122.915950942999984, 49.348632110000075 ], [ -122.915950481999943, 49.348901961000102 ], [ -122.915124381999973, 49.348901358000042 ], [ -122.915123917999949, 49.349171210000023 ], [ -122.914993802999945, 49.3491711140001 ], [ -122.914979765999959, 49.349381747000066 ], [ -122.914570832, 49.349370077000046 ], [ -122.914547967999937, 49.349713156000064 ], [ -122.913446329999957, 49.349681712000105 ], [ -122.91328715, 49.352069081000124 ], [ -122.912119863999962, 49.35203575 ], [ -122.911998399999973, 49.353856607000111 ], [ -122.911631722999971, 49.353846134000051 ], [ -122.911582024, 49.354591015000089 ], [ -122.911323296, 49.354583625000053 ], [ -122.91125167, 49.355657020000066 ], [ -122.910944940999983, 49.355648258 ], [ -122.910927771999951, 49.355905527000104 ], [ -122.910147569999936, 49.355883236000075 ], [ -122.910114165999971, 49.356383646000047 ], [ -122.909785222999957, 49.356374246000023 ], [ -122.909747880999987, 49.356933553000054 ], [ -122.909667475999981, 49.356931255000063 ], [ -122.909582248000021, 49.35820775300008 ], [ -122.905060899999981, 49.358078444000043 ], [ -122.904845430999899, 49.361300560000075 ], [ -122.901608170999907, 49.361207859000075 ], [ -122.901543547999935, 49.362173137000113 ], [ -122.901465354999985, 49.362170897000077 ], [ -122.901360228000016, 49.363741037000068 ], [ -122.895863075999927, 49.36358339700007 ] ], [ [ -122.923390419999961, 49.345668905000053 ], [ -122.923390625999986, 49.345537102000108 ], [ -122.923264423999967, 49.345533510000081 ], [ -122.923255432999937, 49.345668815000046 ], [ -122.923390419999961, 49.345668905000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11538334", "BldgCostT": "6483334", "sL_LossRatio": "0.807946357085668", "sL_AssetLoss": "19984", "sL_BldgLoss": "16146", "sL_StrLoss": "9080", "sL_NStrLoss": "7066", "sL_ContLoss": "3838", "geom_point": "0101000020E6100000B23532FA57BC5EC0C1012D5D41AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940486218999965, 49.355728800000065 ], [ -122.940723892999955, 49.352132680000075 ], [ -122.94621983699993, 49.352288044000069 ], [ -122.946172910999906, 49.35299937700011 ], [ -122.946744860999928, 49.353015529000103 ], [ -122.945666190999987, 49.353506197000044 ], [ -122.942574489999984, 49.355068101000086 ], [ -122.941680226999921, 49.355331004000021 ], [ -122.941540020999952, 49.355681912000101 ], [ -122.94166639599996, 49.355762185000088 ], [ -122.940486218999965, 49.355728800000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121450477", "BldgCostT": "78984856", "sL_LossRatio": "0.823995877587243", "sL_AssetLoss": "523965", "sL_BldgLoss": "431745", "sL_StrLoss": "266195", "sL_NStrLoss": "165550", "sL_ContLoss": "92220", "geom_point": "0101000020E61000000EAD0CB27EBC5EC0BC1604C1A9A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94047040599996, 49.332436383000079 ], [ -122.940103979999918, 49.332359285000045 ], [ -122.939927547999929, 49.33238457200013 ], [ -122.939928169999916, 49.331872968000084 ], [ -122.940087796999975, 49.331870012000124 ], [ -122.940471978999966, 49.332068096000022 ], [ -122.940856699, 49.332077314000074 ], [ -122.942715807999946, 49.331844484000037 ], [ -122.943087997999896, 49.331547888000038 ], [ -122.943914699999979, 49.331296286000047 ], [ -122.945165587999966, 49.331368411000028 ], [ -122.946171675999963, 49.331054694000045 ], [ -122.946612202999944, 49.330840070000072 ], [ -122.94665474699994, 49.330840089000048 ], [ -122.946873876999959, 49.3307125810001 ], [ -122.946929804999954, 49.330685331000041 ], [ -122.94694889599999, 49.330678845000079 ], [ -122.946948898999921, 49.330676030000099 ], [ -122.947094501999942, 49.330605090000105 ], [ -122.947145970999898, 49.330570461000022 ], [ -122.94725220399999, 49.330570510000037 ], [ -122.947361966999978, 49.330518144000109 ], [ -122.947362063999918, 49.330425076000033 ], [ -122.948898092999954, 49.329391611000048 ], [ -122.949132811999931, 49.329103997000068 ], [ -122.949229495999958, 49.328393512000041 ], [ -122.948830908999923, 49.327646991000051 ], [ -122.948570417999974, 49.327250601000038 ], [ -122.948449581999967, 49.326763219000057 ], [ -122.948365284999952, 49.326423201000061 ], [ -122.947731598999937, 49.325819712000111 ], [ -122.947539232999986, 49.325752927000075 ], [ -122.947779896, 49.325759725000104 ], [ -122.947779944999979, 49.325713393000044 ], [ -122.947424901, 49.325713233000037 ], [ -122.947367109999973, 49.325693169000047 ], [ -122.947367375999988, 49.325443354000051 ], [ -122.946954522999988, 49.325443165000124 ], [ -122.946954811999916, 49.325173312000047 ], [ -122.945716254999951, 49.325172737000109 ], [ -122.945715852999967, 49.325537845000021 ], [ -122.945200905999968, 49.325459211000052 ], [ -122.944842410999954, 49.325575998000048 ], [ -122.944352244999905, 49.325981648000045 ], [ -122.944063929, 49.325981509000073 ], [ -122.94406381899995, 49.326078661000025 ], [ -122.944185006999959, 49.326120048000121 ], [ -122.944071113999911, 49.326214301000029 ], [ -122.943259108999953, 49.326348707000051 ], [ -122.94288739699999, 49.326249499000014 ], [ -122.941511697999928, 49.326195097000074 ], [ -122.939110234999987, 49.325482053000059 ], [ -122.939110287999966, 49.325439299000074 ], [ -122.93896599499999, 49.325439223000046 ], [ -122.938718695, 49.325365790000021 ], [ -122.938545720999969, 49.325348218000059 ], [ -122.938654830999894, 49.325037317000081 ], [ -122.938685227999954, 49.324165321000109 ], [ -122.938906132999975, 49.324001717000108 ], [ -122.939225703999981, 49.323766928000097 ], [ -122.939525411999938, 49.323585638000019 ], [ -122.939525123999914, 49.323820397000119 ], [ -122.939751867000012, 49.323820516000083 ], [ -122.940763648, 49.323821038000069 ], [ -122.940763322999913, 49.324090892000086 ], [ -122.941176166, 49.324091102000061 ], [ -122.941175844999975, 49.324360955000031 ], [ -122.943240071999966, 49.324361988000071 ], [ -122.943240595999939, 49.323906956000123 ], [ -122.942911477999942, 49.323897645000095 ], [ -122.943014631999944, 49.322334555000047 ], [ -122.942751733999941, 49.322330363000042 ], [ -122.942619134999958, 49.32225176300004 ], [ -122.942623630999933, 49.32220285700005 ], [ -122.941811971999982, 49.322202452000056 ], [ -122.941819958999986, 49.3221976190001 ], [ -122.94398709099994, 49.321701689000129 ], [ -122.946766096, 49.321739708000052 ], [ -122.949363486999957, 49.321778893000072 ], [ -122.949352269999949, 49.322115707000137 ], [ -122.949332404999936, 49.322710311000066 ], [ -122.949317985999954, 49.323577296000103 ], [ -122.947949002999962, 49.32355930700006 ], [ -122.94792191399992, 49.325181697000083 ], [ -122.947966909999963, 49.325219429000065 ], [ -122.948317143999972, 49.325513135000044 ], [ -122.948593298999953, 49.325744695000054 ], [ -122.949250808999977, 49.325746195000121 ], [ -122.94924909199996, 49.326754115000028 ], [ -122.950633708999959, 49.326767009000079 ], [ -122.950636120999931, 49.327089510000064 ], [ -122.950639800999937, 49.327584181000091 ], [ -122.950645670999961, 49.328366618000047 ], [ -122.950650695999983, 49.329037396000054 ], [ -122.950081801999971, 49.329046490000053 ], [ -122.950047986999905, 49.329109193000065 ], [ -122.949799787999964, 49.329569097 ], [ -122.949574603999906, 49.329853691000025 ], [ -122.949431843999903, 49.329941260000062 ], [ -122.9492186, 49.330072051000045 ], [ -122.947693392999923, 49.331007604 ], [ -122.947628815999977, 49.331040879000021 ], [ -122.947187784999983, 49.331267998000079 ], [ -122.945775606999931, 49.331714488000074 ], [ -122.945430043999949, 49.331799619000016 ], [ -122.943561511000027, 49.332259885000035 ], [ -122.943096397999966, 49.332322389000062 ], [ -122.942421410999899, 49.332375386000102 ], [ -122.941735609999952, 49.332343403000074 ], [ -122.940680281, 49.332445892000052 ], [ -122.94047040599996, 49.332436383000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19605000", "BldgCostT": "11550000", "sL_LossRatio": "0.666297217146452", "sL_AssetLoss": "66766", "sL_BldgLoss": "44486", "sL_StrLoss": "20860", "sL_NStrLoss": "23626", "sL_ContLoss": "22280", "geom_point": "0101000020E6100000EFFBE4E6E3BB5EC0A98D5ECBB3AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.935276819999928, 49.332827906000041 ], [ -122.937351865999972, 49.332886729000037 ], [ -122.9373159299999, 49.333430139000015 ], [ -122.935779581999938, 49.334754258000061 ], [ -122.935565932, 49.334699820000111 ], [ -122.935372273, 49.334542135000092 ], [ -122.934968288, 49.334297804000116 ], [ -122.934152865, 49.33367628400007 ], [ -122.934067639999981, 49.333618955000091 ], [ -122.935144214999951, 49.332866004000088 ], [ -122.935276819999928, 49.332827906000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205950959", "BldgCostT": "137172998", "sL_LossRatio": "0.824619105500238", "sL_AssetLoss": "643354", "sL_BldgLoss": "530522", "sL_StrLoss": "301299", "sL_NStrLoss": "229223", "sL_ContLoss": "112832", "geom_point": "0101000020E6100000A3E659E640BC5EC031A40E1BFAA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.937158435999976, 49.324943562000108 ], [ -122.937145414999961, 49.324898541000032 ], [ -122.93704670299995, 49.324898487000013 ], [ -122.937047047999954, 49.32462863400017 ], [ -122.937003439999913, 49.32462861000009 ], [ -122.936904480999956, 49.323907900000016 ], [ -122.936930462999925, 49.322739596000048 ], [ -122.937028207999944, 49.322739650000123 ], [ -122.937027934999932, 49.322666063000057 ], [ -122.936979165999915, 49.322469770000076 ], [ -122.93688794900001, 49.322469721000076 ], [ -122.936755098999939, 49.322162589000087 ], [ -122.936780295999981, 49.321910806000119 ], [ -122.93680538299995, 49.3216601150001 ], [ -122.93684048899999, 49.32166013500003 ], [ -122.936839035, 49.321619962000064 ], [ -122.936863576999926, 49.321542533000077 ], [ -122.937166939999884, 49.321183244000039 ], [ -122.937447591999941, 49.32085090400011 ], [ -122.937464679999948, 49.320850913000044 ], [ -122.937464704999954, 49.320830640000132 ], [ -122.937471321999979, 49.320822802000123 ], [ -122.937761203999955, 49.320651984000101 ], [ -122.937811898999897, 49.320581248000046 ], [ -122.93787783499999, 49.320581283000124 ], [ -122.937877950999962, 49.320489080000115 ], [ -122.938450600999943, 49.319690002000108 ], [ -122.939649185999897, 49.318907895000066 ], [ -122.94040641299992, 49.318611502000081 ], [ -122.941560688999971, 49.318478220000081 ], [ -122.942731621999954, 49.318343 ], [ -122.943075011999937, 49.318351787000054 ], [ -122.94342039299994, 49.318505006000045 ], [ -122.943654100999964, 49.318487295000061 ], [ -122.943708301999962, 49.318316286000076 ], [ -122.944617788999921, 49.317849107000015 ], [ -122.944617889999932, 49.317534090000045 ], [ -122.944149983000017, 49.317120101000114 ], [ -122.943984684999975, 49.316733405000043 ], [ -122.944151492999964, 49.316445691000077 ], [ -122.9446187, 49.316139891000034 ], [ -122.945404488999927, 49.315852499000059 ], [ -122.945500640999967, 49.315833946000083 ], [ -122.94692783, 49.315859665000126 ], [ -122.947485096999912, 49.315776295000077 ], [ -122.948130898999963, 49.315786506000087 ], [ -122.948260672999979, 49.316383701000078 ], [ -122.948362711999962, 49.316861312000093 ], [ -122.948429674999915, 49.317264890000047 ], [ -122.948573290999931, 49.317735599000052 ], [ -122.948246200999932, 49.317899302000086 ], [ -122.948026011999943, 49.318005690000071 ], [ -122.945164604999917, 49.317759982000034 ], [ -122.944661258999986, 49.318481500000097 ], [ -122.944309296999947, 49.318985995000105 ], [ -122.944162015999922, 49.318988179000044 ], [ -122.943502843999951, 49.318997893000116 ], [ -122.943324811999929, 49.319000507000055 ], [ -122.941054300999966, 49.319283999000092 ], [ -122.940949410999977, 49.319413395000012 ], [ -122.940923299999966, 49.319497301000091 ], [ -122.940963616999952, 49.319553406000111 ], [ -122.941656895999927, 49.319886513000064 ], [ -122.94116630799999, 49.320295104000074 ], [ -122.940702008, 49.320910696000112 ], [ -122.940099604999943, 49.321659203000088 ], [ -122.94123241100003, 49.321648996000057 ], [ -122.941887506999947, 49.321661526000057 ], [ -122.94398709099994, 49.321701689000129 ], [ -122.941819958999986, 49.3221976190001 ], [ -122.941811971999982, 49.322202452000056 ], [ -122.939858825000016, 49.322201451000119 ], [ -122.939527106999947, 49.322201277000104 ], [ -122.939525411999938, 49.323585638000019 ], [ -122.939225703999981, 49.323766928000097 ], [ -122.938906132999975, 49.324001717000108 ], [ -122.938685227999954, 49.324165321000109 ], [ -122.938654830999894, 49.325037317000081 ], [ -122.938545720999969, 49.325348218000059 ], [ -122.937562204999963, 49.32524830300013 ], [ -122.937459198999946, 49.325179005000116 ], [ -122.937459229999945, 49.325154525000102 ], [ -122.937187735999956, 49.324984362000109 ], [ -122.937158435999976, 49.324943562000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198841749", "BldgCostT": "132099999", "sL_LossRatio": "0.724871385739232", "sL_AssetLoss": "2124570", "sL_BldgLoss": "1540040", "sL_StrLoss": "642350", "sL_NStrLoss": "897690", "sL_ContLoss": "584530", "geom_point": "0101000020E6100000DD9CBD120CBD5EC0A1C45BA543A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94664261399997, 49.315745095000089 ], [ -122.947385491999981, 49.315430589000108 ], [ -122.94783869299998, 49.315466697 ], [ -122.948416407999957, 49.315727905000067 ], [ -122.948568899999955, 49.315710005000014 ], [ -122.948459209999939, 49.315287197000075 ], [ -122.94856990699995, 49.314441688000088 ], [ -122.948295217999885, 49.313991701000084 ], [ -122.948213600999978, 49.313272092000062 ], [ -122.948074962999954, 49.313091196000109 ], [ -122.948043234999915, 49.313030398000052 ], [ -122.94802836299999, 49.313030392000051 ], [ -122.94792390399999, 49.312894092000072 ], [ -122.947760013, 49.312381391000024 ], [ -122.948021294999933, 49.311859795000068 ], [ -122.948119083999956, 49.311392202000015 ], [ -122.947720606999965, 49.310213605000087 ], [ -122.947776420999944, 49.309548104000065 ], [ -122.948479587999884, 49.308711690000088 ], [ -122.948686404999961, 49.308181288000078 ], [ -122.948680122999946, 49.307692568000064 ], [ -122.948673220999979, 49.307155697000141 ], [ -122.948275794, 49.306220113000073 ], [ -122.948317507999946, 49.30550929900005 ], [ -122.948596139999907, 49.304784455000103 ], [ -122.948607887, 49.304753894000079 ], [ -122.950271494, 49.30431389500005 ], [ -122.951235795999978, 49.303738698000032 ], [ -122.952009828999934, 49.303587223000108 ], [ -122.952755392999961, 49.303587530000094 ], [ -122.952755651999908, 49.303317676000113 ], [ -122.953168321999911, 49.303317844000063 ], [ -122.953168575999968, 49.303047990000074 ], [ -122.953581244999981, 49.303048156000088 ], [ -122.953581595999964, 49.30267489700001 ], [ -122.954304288999936, 49.302138899000049 ], [ -122.95455348899992, 49.301617201000106 ], [ -122.955254398999941, 49.301203498000056 ], [ -122.955420180999965, 49.300798897000099 ], [ -122.955957495999925, 49.300574215000076 ], [ -122.956043386999937, 49.300580086000132 ], [ -122.956356102999976, 49.300601513000046 ], [ -122.956851085999958, 49.300916401000066 ], [ -122.958157397999955, 49.301465485000087 ], [ -122.958803391999965, 49.301888394000052 ], [ -122.960865694999939, 49.30291479400011 ], [ -122.961208400999965, 49.303220599000063 ], [ -122.961443101999947, 49.303310812000078 ], [ -122.961951408999965, 49.303265999000075 ], [ -122.962268800999965, 49.302960201000047 ], [ -122.963163200999958, 49.302924613000108 ], [ -122.963176206, 49.302672692000094 ], [ -122.96422239899999, 49.302681910000047 ], [ -122.964193890999951, 49.303221497000024 ], [ -122.964277401999979, 49.303248905000032 ], [ -122.96467488799999, 49.303041901000057 ], [ -122.965266503999956, 49.303195093000063 ], [ -122.965281093999948, 49.303365809000063 ], [ -122.965459184999958, 49.30342880500006 ], [ -122.96583158199999, 49.303438100000093 ], [ -122.967055215999963, 49.303231503000056 ], [ -122.96881661799992, 49.303132907000069 ], [ -122.969443019, 49.303138967000045 ], [ -122.969433725999977, 49.303358174000039 ], [ -122.969418002999973, 49.304152723000072 ], [ -122.968329380999961, 49.30414802500011 ], [ -122.965266183999987, 49.304134787000116 ], [ -122.96452346699999, 49.304131576000046 ], [ -122.964468434999958, 49.304131347000087 ], [ -122.964427200999921, 49.304131152000103 ], [ -122.964248276999939, 49.304130381000085 ], [ -122.962762276999968, 49.304123901000104 ], [ -122.962308510999975, 49.304121921000039 ], [ -122.962033408999901, 49.304120719000075 ], [ -122.960437808, 49.304113756000142 ], [ -122.960403805999988, 49.304113579000045 ], [ -122.960052210999891, 49.304110457000078 ], [ -122.957892932999968, 49.304091155000044 ], [ -122.957262103999966, 49.304085506000028 ], [ -122.955912160999915, 49.304078098000062 ], [ -122.955475098999955, 49.304075697000037 ], [ -122.955229763999924, 49.304108285000034 ], [ -122.955095001999965, 49.304126193000087 ], [ -122.954637925999975, 49.304261107000144 ], [ -122.95424449699999, 49.304408493000054 ], [ -122.953807598999973, 49.304674495000057 ], [ -122.953535574999975, 49.304927294000066 ], [ -122.953520605999955, 49.304941208000081 ], [ -122.953286790999954, 49.305255295000087 ], [ -122.953283566999971, 49.305265301000183 ], [ -122.953119397999941, 49.305773008000067 ], [ -122.95309855899994, 49.306590962000051 ], [ -122.953064605999927, 49.307923414000165 ], [ -122.952155097999977, 49.307722106000043 ], [ -122.951564203999979, 49.307715305000016 ], [ -122.951521007999958, 49.30910400500003 ], [ -122.951273707999945, 49.309371699000074 ], [ -122.95112699699996, 49.309573806000103 ], [ -122.950693498999925, 49.310559688000076 ], [ -122.9506723, 49.311404010000039 ], [ -122.95123798, 49.315829197000028 ], [ -122.950213412999943, 49.315806615000078 ], [ -122.949766405999966, 49.315805589000043 ], [ -122.949526094999925, 49.315800710000069 ], [ -122.948130898999963, 49.315786506000087 ], [ -122.947485096999912, 49.315776295000077 ], [ -122.94692783, 49.315859665000126 ], [ -122.945500640999967, 49.315833946000083 ], [ -122.946008786000021, 49.315735897000046 ], [ -122.94664261399997, 49.315745095000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99143500", "BldgCostT": "64930000", "sL_LossRatio": "0.743980006117375", "sL_AssetLoss": "1147551", "sL_BldgLoss": "853755", "sL_StrLoss": "398005", "sL_NStrLoss": "455750", "sL_ContLoss": "293796", "geom_point": "0101000020E61000001F80CB6BFEBC5EC0BDECB68F05A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95123798, 49.315829197000028 ], [ -122.9506723, 49.311404010000039 ], [ -122.950693498999925, 49.310559688000076 ], [ -122.95112699699996, 49.309573806000103 ], [ -122.951273707999945, 49.309371699000074 ], [ -122.951521007999958, 49.30910400500003 ], [ -122.951564203999979, 49.307715305000016 ], [ -122.952155097999977, 49.307722106000043 ], [ -122.953064605999927, 49.307923414000165 ], [ -122.953027520999939, 49.309785107000081 ], [ -122.95303310599995, 49.311413811000087 ], [ -122.953209199999947, 49.311413383000037 ], [ -122.954511304999983, 49.311419513000097 ], [ -122.955120293, 49.311422295000042 ], [ -122.955203603000015, 49.312184811000115 ], [ -122.955803391999964, 49.312183713000117 ], [ -122.955966810999911, 49.313653007000084 ], [ -122.956102411999964, 49.314938604000076 ], [ -122.955463196999972, 49.314953019000079 ], [ -122.955537391999954, 49.315854912000084 ], [ -122.955262593999933, 49.315849886000109 ], [ -122.953567480999979, 49.315838097000061 ], [ -122.952693594999971, 49.315844114000093 ], [ -122.952271187999955, 49.315846610000079 ], [ -122.95123798, 49.315829197000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103194250", "BldgCostT": "67120000", "sL_LossRatio": "0.72893311765947", "sL_AssetLoss": "1421900", "sL_BldgLoss": "1036470", "sL_StrLoss": "441850", "sL_NStrLoss": "594620", "sL_ContLoss": "385430", "geom_point": "0101000020E6100000AB89705926BD5EC0043773C4B1A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.955966810999911, 49.313653007000084 ], [ -122.955803391999964, 49.312183713000117 ], [ -122.955203603000015, 49.312184811000115 ], [ -122.955120293, 49.311422295000042 ], [ -122.954511304999983, 49.311419513000097 ], [ -122.953209199999947, 49.311413383000037 ], [ -122.95303310599995, 49.311413811000087 ], [ -122.953027520999939, 49.309785107000081 ], [ -122.953064605999927, 49.307923414000165 ], [ -122.953962622999981, 49.308094192000034 ], [ -122.955906100999968, 49.308463814000056 ], [ -122.955858588999916, 49.307511213000069 ], [ -122.955840907999942, 49.306839707000087 ], [ -122.957087619999967, 49.30684870000006 ], [ -122.957135497999928, 49.308695702000087 ], [ -122.957237691999921, 49.311431505000023 ], [ -122.957295411999922, 49.313632809000126 ], [ -122.955966810999911, 49.313653007000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214215416", "BldgCostT": "135520681", "sL_LossRatio": "0.702593239464965", "sL_AssetLoss": "2782620", "sL_BldgLoss": "1955050", "sL_StrLoss": "870230", "sL_NStrLoss": "1084820", "sL_ContLoss": "827570", "geom_point": "0101000020E610000021F8DF4A76BD5EC07E02382827A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.957135497999928, 49.308695702000087 ], [ -122.957087619999967, 49.30684870000006 ], [ -122.955840907999942, 49.306839707000087 ], [ -122.955858588999916, 49.307511213000069 ], [ -122.955906100999968, 49.308463814000056 ], [ -122.953962622999981, 49.308094192000034 ], [ -122.953064605999927, 49.307923414000165 ], [ -122.95309855899994, 49.306590962000051 ], [ -122.953119397999941, 49.305773008000067 ], [ -122.953283566999971, 49.305265301000183 ], [ -122.953286790999954, 49.305255295000087 ], [ -122.953520605999955, 49.304941208000081 ], [ -122.953535574999975, 49.304927294000066 ], [ -122.953807598999973, 49.304674495000057 ], [ -122.95424449699999, 49.304408493000054 ], [ -122.954637925999975, 49.304261107000144 ], [ -122.955095001999965, 49.304126193000087 ], [ -122.955229763999924, 49.304108285000034 ], [ -122.955475098999955, 49.304075697000037 ], [ -122.955912160999915, 49.304078098000062 ], [ -122.957262103999966, 49.304085506000028 ], [ -122.957892932999968, 49.304091155000044 ], [ -122.960052210999891, 49.304110457000078 ], [ -122.960403805999988, 49.304113579000045 ], [ -122.960437808, 49.304113756000142 ], [ -122.962033408999901, 49.304120719000075 ], [ -122.962308510999975, 49.304121921000039 ], [ -122.962762276999968, 49.304123901000104 ], [ -122.964248276999939, 49.304130381000085 ], [ -122.964427200999921, 49.304131152000103 ], [ -122.964468434999958, 49.304131347000087 ], [ -122.96452346699999, 49.304131576000046 ], [ -122.965266183999987, 49.304134787000116 ], [ -122.968329380999961, 49.30414802500011 ], [ -122.969418002999973, 49.304152723000072 ], [ -122.969404406999985, 49.30483966700011 ], [ -122.969418043999923, 49.305719856000074 ], [ -122.969423875999908, 49.306831392000049 ], [ -122.968847557999979, 49.306831238000022 ], [ -122.968847908999962, 49.30627612100011 ], [ -122.968273431999933, 49.306259998000051 ], [ -122.968272379999974, 49.306276073000085 ], [ -122.966588602999963, 49.306228799000039 ], [ -122.966570123999958, 49.306511113000077 ], [ -122.96460204399996, 49.306455823000093 ], [ -122.964600441999934, 49.306480262000072 ], [ -122.964288884999945, 49.306471505000061 ], [ -122.96425676599992, 49.306961801000092 ], [ -122.9609936199999, 49.306445521000072 ], [ -122.960982579999921, 49.306579497000072 ], [ -122.960957701999945, 49.306881418000046 ], [ -122.959768164999957, 49.306847942000111 ], [ -122.959767959999951, 49.307098288000063 ], [ -122.960180660999981, 49.307098431000014 ], [ -122.960180443999946, 49.307368285000095 ], [ -122.960917565999964, 49.307368537000087 ], [ -122.960824969999976, 49.308492285000113 ], [ -122.957655244999927, 49.308804125000073 ], [ -122.957135497999928, 49.308695702000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.753196930946292", "sL_AssetLoss": "7820", "sL_BldgLoss": "5890", "sL_StrLoss": "2960", "sL_NStrLoss": "2930", "sL_ContLoss": "1930", "geom_point": "0101000020E61000007AB84F5497BF5EC01425DF7464A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.992786312999939, 49.291723364000077 ], [ -122.994436602999983, 49.291723454000106 ], [ -122.994436513999943, 49.292533019000068 ], [ -122.992786194999923, 49.292532927000103 ], [ -122.992786312999939, 49.291723364000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225184167", "BldgCostT": "143726667", "sL_LossRatio": "0.69889708622103", "sL_AssetLoss": "2415420", "sL_BldgLoss": "1688130", "sL_StrLoss": "804660", "sL_NStrLoss": "883470", "sL_ContLoss": "727290", "geom_point": "0101000020E6100000E010CBE255BE5EC017C5EDC8BFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98187384699996, 49.293150889000088 ], [ -122.981896588999945, 49.292801590000103 ], [ -122.981298367999926, 49.292801494000059 ], [ -122.981296207999918, 49.292800182000079 ], [ -122.981062923999929, 49.292557501000076 ], [ -122.980821400999929, 49.29248634700015 ], [ -122.980821485999968, 49.292261707000051 ], [ -122.980408909999937, 49.292261638000177 ], [ -122.980409016999957, 49.291991783000121 ], [ -122.979171290999957, 49.291991566000029 ], [ -122.979171631999918, 49.291182003000117 ], [ -122.979588436999933, 49.291182077000066 ], [ -122.979569235, 49.291172362000076 ], [ -122.979791834999901, 49.290974462000165 ], [ -122.980202352999967, 49.291182184 ], [ -122.981647041999949, 49.291182422000055 ], [ -122.981647242999912, 49.290642712000093 ], [ -122.981234677999964, 49.290642646000059 ], [ -122.981235088999966, 49.289563226000119 ], [ -122.981647643999935, 49.289563293000093 ], [ -122.981647743999957, 49.289293438000101 ], [ -122.981235190999925, 49.289293371000063 ], [ -122.981235273999985, 49.289076918000021 ], [ -122.98116348799999, 49.289023505000074 ], [ -122.979997641999915, 49.28902331000004 ], [ -122.97999775199996, 49.288753454000137 ], [ -122.979585202999971, 49.288753383000056 ], [ -122.979585314999937, 49.288483527000061 ], [ -122.978760223, 49.288483378000123 ], [ -122.978760338999948, 49.288213524000064 ], [ -122.978347793999944, 49.288213447000039 ], [ -122.978347911999919, 49.287943592000026 ], [ -122.977110289999928, 49.287943353000088 ], [ -122.977110413999981, 49.287673498000146 ], [ -122.976697873999967, 49.287673417000057 ], [ -122.976698254999931, 49.286863852000103 ], [ -122.976285723999965, 49.286863767000078 ], [ -122.976285853999954, 49.286593912000086 ], [ -122.975048262999962, 49.286593652000128 ], [ -122.975048397999899, 49.286323797000065 ], [ -122.974635870999975, 49.286323707000086 ], [ -122.974636655, 49.284794952000077 ], [ -122.97452915799991, 49.284704553000054 ], [ -122.974328944999968, 49.284704508000097 ], [ -122.974305720999922, 49.285060386000112 ], [ -122.972842579999977, 49.28501936900004 ], [ -122.97279989499998, 49.285673121000059 ], [ -122.971986742999917, 49.285650317000069 ], [ -122.971947992999958, 49.286243640000095 ], [ -122.969892027999919, 49.286185954000075 ], [ -122.969759638999975, 49.288211519000065 ], [ -122.972159639999944, 49.288212122000061 ], [ -122.97215948799996, 49.288481977000025 ], [ -122.973809672999934, 49.288482363000043 ], [ -122.973809529, 49.288752217000102 ], [ -122.97422207799994, 49.288752310000092 ], [ -122.974221937, 49.289022166000102 ], [ -122.975047035999978, 49.289022347000071 ], [ -122.975046628999948, 49.289831910000117 ], [ -122.974221514999954, 49.289831730000088 ], [ -122.974221432000022, 49.289988833000102 ], [ -122.973830297999925, 49.289893405000036 ], [ -122.973389113999957, 49.289992208000065 ], [ -122.972862541000012, 49.290371130000047 ], [ -122.97231881099998, 49.290370999000125 ], [ -122.972158468999936, 49.290292700000137 ], [ -122.972158576999959, 49.290101106000066 ], [ -122.971765926999936, 49.290101011000047 ], [ -122.97174602199999, 49.290091291000095 ], [ -122.971746170999921, 49.289831151000087 ], [ -122.970921056999927, 49.28983094600008 ], [ -122.970921215999923, 49.289561092000085 ], [ -122.970096106000014, 49.289560881000099 ], [ -122.970096268999953, 49.289291026000036 ], [ -122.969936583999953, 49.28929098400004 ], [ -122.969897605, 49.28925390400007 ], [ -122.969497684999936, 49.289173405000071 ], [ -122.96927130899999, 49.289056566000149 ], [ -122.969271420999974, 49.288878129000118 ], [ -122.968905707999951, 49.288867863000114 ], [ -122.968205811999951, 49.288506607000045 ], [ -122.966322694999945, 49.288083589000067 ], [ -122.964012209999936, 49.288442499000034 ], [ -122.962622606999957, 49.288774994000043 ], [ -122.961990277999988, 49.288747694000051 ], [ -122.961702320999976, 49.288672018000042 ], [ -122.961703858999982, 49.288648547000015 ], [ -122.961602107999923, 49.288645683 ], [ -122.960754019999953, 49.288422800000063 ], [ -122.959766900999981, 49.288248481000039 ], [ -122.959858002999937, 49.286859229000122 ], [ -122.9597844299999, 49.286859203000034 ], [ -122.959783551999962, 49.287938623000045 ], [ -122.95895847, 49.287938333000092 ], [ -122.958958244999948, 49.288208187000102 ], [ -122.958133156999949, 49.288207892000123 ], [ -122.958132929999948, 49.288477747000059 ], [ -122.956895291999956, 49.28847729200011 ], [ -122.956894950999967, 49.288868191000034 ], [ -122.956561022999963, 49.28901687600009 ], [ -122.956069720999949, 49.289016691000093 ], [ -122.956069481, 49.289286545000067 ], [ -122.955656928999957, 49.289286388000036 ], [ -122.955656765999933, 49.289467337000097 ], [ -122.954843133999944, 49.289555927000059 ], [ -122.954419022999943, 49.289555761000045 ], [ -122.954418921999959, 49.289664891000086 ], [ -122.953949396, 49.289825430000072 ], [ -122.953181102999935, 49.289825121000057 ], [ -122.953180853999939, 49.29008819900006 ], [ -122.953161055999914, 49.29009496700008 ], [ -122.947928186999931, 49.290092728000047 ], [ -122.947905136999978, 49.290442834000032 ], [ -122.947432321999983, 49.290597174000077 ], [ -122.947446717999981, 49.29026708700011 ], [ -122.947446534999941, 49.290260888000063 ], [ -122.947422776999957, 49.290116987000026 ], [ -122.947417526999971, 49.28997367000008 ], [ -122.94740732299995, 49.289260331000037 ], [ -122.947416811, 49.288837595000125 ], [ -122.948166698999955, 49.288848892000011 ], [ -122.949010406999975, 49.288748414000104 ], [ -122.949315903999917, 49.288674644000018 ], [ -122.949445011999956, 49.288643491000116 ], [ -122.949625094999973, 49.288599998000073 ], [ -122.95100450699999, 49.288109314000103 ], [ -122.951080153999939, 49.288075721000077 ], [ -122.952042426999967, 49.287648627000088 ], [ -122.952878710999968, 49.287159633000023 ], [ -122.953490221999957, 49.286639117000099 ], [ -122.953588240999963, 49.286548860000039 ], [ -122.95399502799998, 49.286174150000072 ], [ -122.954014155999957, 49.286149641000058 ], [ -122.954383423999985, 49.286162605000072 ], [ -122.954760176999983, 49.286196500000145 ], [ -122.955330401999973, 49.286247796000026 ], [ -122.955797197999971, 49.286193503000085 ], [ -122.958901126999976, 49.285499899000079 ], [ -122.958901060999921, 49.285031658000015 ], [ -122.958900998999923, 49.284559484000077 ], [ -122.958908258999912, 49.284060499000077 ], [ -122.958914694, 49.283616799000058 ], [ -122.958823033999963, 49.283364677000066 ], [ -122.958743571999932, 49.283146180000116 ], [ -122.958728384999986, 49.283104389000087 ], [ -122.958647550999927, 49.282765191000124 ], [ -122.958204822999903, 49.282809506000049 ], [ -122.956723812999925, 49.283134294000078 ], [ -122.956073036999953, 49.283402656000106 ], [ -122.955899781999932, 49.283375051000107 ], [ -122.95428122499996, 49.283355803000035 ], [ -122.953692656999962, 49.283348821000089 ], [ -122.953722338999981, 49.283273975000057 ], [ -122.953680864999939, 49.283215176000027 ], [ -122.953570746, 49.283175128000046 ], [ -122.953441468000022, 49.283197614000059 ], [ -122.953427723999965, 49.283171724000091 ], [ -122.95338277899998, 49.283087127000044 ], [ -122.953339922999973, 49.28300646600016 ], [ -122.953372305999935, 49.282409256000022 ], [ -122.954454619, 49.282420866000088 ], [ -122.956270978999939, 49.282430702000049 ], [ -122.956577032999974, 49.282433307000069 ], [ -122.956808140999925, 49.282405999000048 ], [ -122.957220634999913, 49.281846691000041 ], [ -122.957797361999951, 49.281268420000075 ], [ -122.957893516999945, 49.281200153000043 ], [ -122.95810618199999, 49.281049225000039 ], [ -122.958371071999949, 49.280861220000162 ], [ -122.958496153999988, 49.280803947000095 ], [ -122.958834417999952, 49.280649073000127 ], [ -122.958976706999934, 49.280598396000087 ], [ -122.95955636799998, 49.280391970000103 ], [ -122.959829290999963, 49.28032787500009 ], [ -122.960114709, 49.280260859000059 ], [ -122.960495987999934, 49.280225820000048 ], [ -122.960529649999955, 49.280222699000042 ], [ -122.960609732999941, 49.280215339000044 ], [ -122.961239056999915, 49.280232373000047 ], [ -122.961415095999882, 49.280237120000095 ], [ -122.962428442, 49.280318474000069 ], [ -122.962451443999939, 49.280320316000079 ], [ -122.963490161999943, 49.280388285000122 ], [ -122.96467150899997, 49.280398097000038 ], [ -122.965822910999918, 49.280403433000103 ], [ -122.970029145999945, 49.280394584000085 ], [ -122.97087177399996, 49.280394315000073 ], [ -122.972084033999977, 49.280393917000083 ], [ -122.972186997, 49.280393875000051 ], [ -122.972383041999976, 49.280338121000042 ], [ -122.973494460999959, 49.280338553000085 ], [ -122.973604511999923, 49.280338576000091 ], [ -122.97428875, 49.280338827000016 ], [ -122.975541311999905, 49.280339271000031 ], [ -122.975534594999957, 49.280817708000022 ], [ -122.975511599999905, 49.282459789000129 ], [ -122.975374207999948, 49.282564114000067 ], [ -122.975314405999953, 49.284282005000136 ], [ -122.976019293999954, 49.284286090000066 ], [ -122.976695189999944, 49.284290011000039 ], [ -122.97661544099995, 49.28614612500008 ], [ -122.977310952999957, 49.286154789000165 ], [ -122.977333230999989, 49.286155074000142 ], [ -122.977368088999967, 49.286155493000152 ], [ -122.977810090999938, 49.286311999000084 ], [ -122.97801741899994, 49.28631599800012 ], [ -122.978177612999986, 49.286495194000054 ], [ -122.978267774999964, 49.286562538000084 ], [ -122.978350617, 49.286624391000046 ], [ -122.978703188999958, 49.286822813000072 ], [ -122.979546613999943, 49.287297403000146 ], [ -122.982360108999956, 49.288971133000111 ], [ -122.982465778999966, 49.289033981000031 ], [ -122.98269089799993, 49.289167905000085 ], [ -122.983297860999954, 49.289571059000089 ], [ -122.983297772999919, 49.289833398000106 ], [ -122.982472657999935, 49.289833276000081 ], [ -122.982472561999899, 49.290103131000073 ], [ -122.983297680999954, 49.290103252000037 ], [ -122.983297589999978, 49.290373107000093 ], [ -122.98550149099999, 49.290373406000079 ], [ -122.985534279999968, 49.289869138000022 ], [ -122.985989639999971, 49.289932050000075 ], [ -122.987618411999946, 49.290214381000048 ], [ -122.988391406999966, 49.290228812000109 ], [ -122.991158847999927, 49.289483534000091 ], [ -122.994601128999975, 49.288908338000113 ], [ -122.994602175999944, 49.288907711000093 ], [ -122.99574276099996, 49.288217492000037 ], [ -122.995941685999981, 49.288097106000109 ], [ -122.995951929999961, 49.28809103100005 ], [ -122.997006707999972, 49.287466493000132 ], [ -122.997833687999943, 49.286963385000078 ], [ -122.998299511999974, 49.286712400000098 ], [ -122.999347687999929, 49.286253387000031 ], [ -122.99999070199999, 49.286000324000021 ], [ -123.000380206999949, 49.285846990000088 ], [ -123.001056094999925, 49.285640593000082 ], [ -123.001565006999911, 49.28555019500002 ], [ -123.001924217999928, 49.285527701000099 ], [ -123.002032803999896, 49.285520894000094 ], [ -123.003043575999953, 49.285513799000086 ], [ -123.003036662999961, 49.285965529000059 ], [ -123.003029478999963, 49.286433994000085 ], [ -123.003012612999967, 49.286874216000093 ], [ -123.002995399999961, 49.287322106000012 ], [ -123.002999919999979, 49.287873480000023 ], [ -123.003001476999913, 49.28806486100008 ], [ -123.002994938999976, 49.288277100000073 ], [ -123.002836537999912, 49.289434852000106 ], [ -123.002780110999964, 49.289847134000084 ], [ -123.002661744, 49.290342488000107 ], [ -123.002571984999975, 49.290717953000119 ], [ -123.002526092999972, 49.290913996000064 ], [ -123.001037754999928, 49.29091401900012 ], [ -123.001037751999959, 49.290741140000115 ], [ -122.999713036999964, 49.290704337000065 ], [ -122.999945785999969, 49.287107737000092 ], [ -123.00021260599999, 49.287115151000073 ], [ -123.00021260499993, 49.286889104000117 ], [ -122.998562475999904, 49.286843242000046 ], [ -122.998562475999904, 49.286866191000051 ], [ -122.998149942999973, 49.28686618600009 ], [ -122.998149941999941, 49.286895877000092 ], [ -122.998718550999982, 49.286911685000128 ], [ -122.998485707999961, 49.290508283000065 ], [ -122.993611632999929, 49.290372678000068 ], [ -122.993611632999929, 49.290374138000104 ], [ -122.993199070999964, 49.290374114000016 ], [ -122.993199033999957, 49.290643969000087 ], [ -122.992786469999885, 49.290643944000038 ], [ -122.992786428999963, 49.290913799000094 ], [ -122.99256710799996, 49.290913786000075 ], [ -122.992484459999972, 49.29218772400003 ], [ -122.991970455999976, 49.292173406000082 ], [ -122.991846574999968, 49.29408247300006 ], [ -122.991363300999964, 49.294276701000022 ], [ -122.99092289, 49.29460049900014 ], [ -122.989355706999959, 49.295049986000066 ], [ -122.987938222, 49.295256800000082 ], [ -122.987140808000021, 49.295283791000045 ], [ -122.986067003999921, 49.295067801000073 ], [ -122.984569198, 49.294554694000077 ], [ -122.983766085999918, 49.294162728000046 ], [ -122.982615394999968, 49.293601099000121 ], [ -122.98187384699996, 49.293150889000088 ] ], [ [ -122.96449307499999, 49.283989740000024 ], [ -122.964552449999928, 49.283082794000073 ], [ -122.962675007999934, 49.283082202000067 ], [ -122.962675211999951, 49.282812346000114 ], [ -122.962262711999983, 49.28281221200006 ], [ -122.962262912999947, 49.282549116000027 ], [ -122.962225549999914, 49.282548064000061 ], [ -122.962234352999985, 49.282413686000083 ], [ -122.962022111999886, 49.282407714000023 ], [ -122.962013680999917, 49.282536392000083 ], [ -122.959375509999973, 49.282462115000058 ], [ -122.959373891999945, 49.284430364000102 ], [ -122.959786405, 49.284430508000064 ], [ -122.959785745999909, 49.285240073000047 ], [ -122.95996417, 49.285240135000052 ], [ -122.959980120999958, 49.284996860000113 ], [ -122.961417132999941, 49.285037316000071 ], [ -122.961491320999983, 49.283905293000018 ], [ -122.96449307499999, 49.283989740000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126843667", "BldgCostT": "82056667", "sL_LossRatio": "0.741283003258268", "sL_AssetLoss": "1373122", "sL_BldgLoss": "1017872", "sL_StrLoss": "490052", "sL_NStrLoss": "527820", "sL_ContLoss": "355250", "geom_point": "0101000020E6100000CFB1EEE51FBD5EC071C3CE9872A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952727893999963, 49.286672603000092 ], [ -122.952088058999948, 49.2864310900001 ], [ -122.952076120999948, 49.286426591000087 ], [ -122.951500429999967, 49.286209631000091 ], [ -122.950891589999941, 49.285980200000083 ], [ -122.952046695999954, 49.283401433000044 ], [ -122.952060468999932, 49.283401507000058 ], [ -122.95328753299998, 49.283406739000121 ], [ -122.953356132999957, 49.283389195000041 ], [ -122.953430132000022, 49.283370240000117 ], [ -122.953534576999914, 49.283391202000068 ], [ -122.953692656999962, 49.283348821000089 ], [ -122.95428122499996, 49.283355803000035 ], [ -122.955899781999932, 49.283375051000107 ], [ -122.956073036999953, 49.283402656000106 ], [ -122.956723812999925, 49.283134294000078 ], [ -122.958204822999903, 49.282809506000049 ], [ -122.958647550999927, 49.282765191000124 ], [ -122.958728384999986, 49.283104389000087 ], [ -122.958743571999932, 49.283146180000116 ], [ -122.958823033999963, 49.283364677000066 ], [ -122.958914694, 49.283616799000058 ], [ -122.958908258999912, 49.284060499000077 ], [ -122.958900998999923, 49.284559484000077 ], [ -122.958901060999921, 49.285031658000015 ], [ -122.958901126999976, 49.285499899000079 ], [ -122.955797197999971, 49.286193503000085 ], [ -122.955330401999973, 49.286247796000026 ], [ -122.954760176999983, 49.286196500000145 ], [ -122.954383423999985, 49.286162605000072 ], [ -122.954014155999957, 49.286149641000058 ], [ -122.95399502799998, 49.286174150000072 ], [ -122.953588240999963, 49.286548860000039 ], [ -122.953490221999957, 49.286639117000099 ], [ -122.953412250999946, 49.286628547000063 ], [ -122.953322611999951, 49.286616385000052 ], [ -122.953193385999967, 49.286611672000106 ], [ -122.95299697199998, 49.28667620700007 ], [ -122.952791266999981, 49.286885977000111 ], [ -122.952602196, 49.286912216000125 ], [ -122.952769604999972, 49.286770095000101 ], [ -122.952777106999946, 49.286718082000121 ], [ -122.952748900999936, 49.286692037000087 ], [ -122.952727893999963, 49.286672603000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109885666", "BldgCostT": "71866666", "sL_LossRatio": "0.728188056253822", "sL_AssetLoss": "1471900", "sL_BldgLoss": "1071820", "sL_StrLoss": "488600", "sL_NStrLoss": "583220", "sL_ContLoss": "400080", "geom_point": "0101000020E6100000A1581B21CBBC5EC001B76AAE85A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947437289999954, 49.288707031000072 ], [ -122.94723038699999, 49.287371345000082 ], [ -122.947288762999932, 49.287141198000079 ], [ -122.948120942999964, 49.287164725000103 ], [ -122.948034776999961, 49.288473647000039 ], [ -122.949056922999887, 49.288474102000109 ], [ -122.949058034999922, 49.287394682000041 ], [ -122.948232961999921, 49.287394315000085 ], [ -122.948233242999947, 49.287124461000033 ], [ -122.947408175999954, 49.287124088 ], [ -122.947408659999923, 49.286668499000079 ], [ -122.947636704999951, 49.285769392000084 ], [ -122.947665498999967, 49.28524304000009 ], [ -122.947670405999958, 49.285153312000027 ], [ -122.94773152099999, 49.284913603000042 ], [ -122.947814135999977, 49.28482821700004 ], [ -122.947868618999962, 49.284771986000052 ], [ -122.947999193999962, 49.284210468000055 ], [ -122.947988036999973, 49.28420523200009 ], [ -122.947747646999971, 49.284092755000103 ], [ -122.947724404, 49.284081906000139 ], [ -122.947640113999952, 49.28400569400003 ], [ -122.947618282999954, 49.28393237300007 ], [ -122.947611987999935, 49.283911202000091 ], [ -122.94767544599992, 49.282805201000059 ], [ -122.947686799999957, 49.28260720800008 ], [ -122.94775118199999, 49.282513309000073 ], [ -122.949406274999973, 49.282418902000089 ], [ -122.949556989, 49.282384392000111 ], [ -122.953372305999935, 49.282409256000022 ], [ -122.953339922999973, 49.28300646600016 ], [ -122.95338277899998, 49.283087127000044 ], [ -122.953427723999965, 49.283171724000091 ], [ -122.953441468000022, 49.283197614000059 ], [ -122.953570746, 49.283175128000046 ], [ -122.953680864999939, 49.283215176000027 ], [ -122.953722338999981, 49.283273975000057 ], [ -122.953692656999962, 49.283348821000089 ], [ -122.953534576999914, 49.283391202000068 ], [ -122.953430132000022, 49.283370240000117 ], [ -122.953356132999957, 49.283389195000041 ], [ -122.95328753299998, 49.283406739000121 ], [ -122.952060468999932, 49.283401507000058 ], [ -122.952046695999954, 49.283401433000044 ], [ -122.950891589999941, 49.285980200000083 ], [ -122.951500429999967, 49.286209631000091 ], [ -122.952076120999948, 49.286426591000087 ], [ -122.952088058999948, 49.2864310900001 ], [ -122.952727893999963, 49.286672603000092 ], [ -122.952748900999936, 49.286692037000087 ], [ -122.952777106999946, 49.286718082000121 ], [ -122.952769604999972, 49.286770095000101 ], [ -122.952602196, 49.286912216000125 ], [ -122.952791266999981, 49.286885977000111 ], [ -122.95299697199998, 49.28667620700007 ], [ -122.953193385999967, 49.286611672000106 ], [ -122.953322611999951, 49.286616385000052 ], [ -122.953412250999946, 49.286628547000063 ], [ -122.953490221999957, 49.286639117000099 ], [ -122.952878710999968, 49.287159633000023 ], [ -122.952042426999967, 49.287648627000088 ], [ -122.951080153999939, 49.288075721000077 ], [ -122.95100450699999, 49.288109314000103 ], [ -122.949625094999973, 49.288599998000073 ], [ -122.949445011999956, 49.288643491000116 ], [ -122.949315903999917, 49.288674644000018 ], [ -122.949010406999975, 49.288748414000104 ], [ -122.948166698999955, 49.288848892000011 ], [ -122.947416811, 49.288837595000125 ], [ -122.947435868999918, 49.288720021000096 ], [ -122.947437289999954, 49.288707031000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133713917", "BldgCostT": "86296667", "sL_LossRatio": "0.722497812502153", "sL_AssetLoss": "1741716", "sL_BldgLoss": "1258386", "sL_StrLoss": "591966", "sL_NStrLoss": "666420", "sL_ContLoss": "483330", "geom_point": "0101000020E610000051836918BEBC5EC0D0021F496AA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94645476599996, 49.280298688000073 ], [ -122.946447654999929, 49.279821946000027 ], [ -122.946472338999939, 49.278310126000164 ], [ -122.946489402999958, 49.277877988000064 ], [ -122.946503224999972, 49.277757375000071 ], [ -122.946579351999972, 49.277091724000044 ], [ -122.94650262299993, 49.276237409000096 ], [ -122.946472279999938, 49.275899619000072 ], [ -122.946372197999906, 49.27537431200011 ], [ -122.946301284999933, 49.275303854000086 ], [ -122.946284166999988, 49.275208771000095 ], [ -122.946294132000034, 49.27395152900003 ], [ -122.946196227999906, 49.273664097000058 ], [ -122.946017758999972, 49.273399621000046 ], [ -122.946012184999987, 49.273391336000053 ], [ -122.946140828999944, 49.273393859000116 ], [ -122.946530996999954, 49.273401493000037 ], [ -122.947949517, 49.273396595000044 ], [ -122.947950922, 49.272581395 ], [ -122.94790179599994, 49.272492611000118 ], [ -122.947783994999938, 49.272465904000072 ], [ -122.946585795999965, 49.272464392000124 ], [ -122.946472003999972, 49.272397202000022 ], [ -122.946307310999899, 49.272102509000042 ], [ -122.946158403999974, 49.271587500000116 ], [ -122.947900206999918, 49.271597196000052 ], [ -122.949166412999958, 49.271881605000097 ], [ -122.949370406999918, 49.271954896000061 ], [ -122.950698906999918, 49.272503207000085 ], [ -122.950695899, 49.275202901000057 ], [ -122.949370282, 49.275204683000076 ], [ -122.947926547999927, 49.275206586000067 ], [ -122.947926398999954, 49.275627308000068 ], [ -122.947909506999949, 49.276029505000103 ], [ -122.94788209599993, 49.276759187000053 ], [ -122.948614612999933, 49.277532106000088 ], [ -122.948898226, 49.277670804000117 ], [ -122.94918990799998, 49.277728487000047 ], [ -122.949543298999984, 49.277731121000066 ], [ -122.949983192, 49.277734361000114 ], [ -122.952691513999937, 49.27775435500007 ], [ -122.953416675999904, 49.277759696000061 ], [ -122.953415285999981, 49.278574798000115 ], [ -122.953400829999964, 49.278941975000073 ], [ -122.95339168699995, 49.280336161000072 ], [ -122.952724981, 49.280329722000076 ], [ -122.951599227999949, 49.280318864000058 ], [ -122.95121853199997, 49.280276590000071 ], [ -122.951039927999958, 49.280255300000036 ], [ -122.950571702000019, 49.280122303000049 ], [ -122.95030510199993, 49.279996793000038 ], [ -122.950194023, 49.280076502000085 ], [ -122.9506250699999, 49.280250802000076 ], [ -122.95119145399994, 49.280374906000041 ], [ -122.950007345999964, 49.28034416300008 ], [ -122.949513359999955, 49.280332030000061 ], [ -122.947373746000025, 49.280308707000124 ], [ -122.94645476599996, 49.280298688000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88438668", "BldgCostT": "57421668", "sL_LossRatio": "0.726410452656899", "sL_AssetLoss": "1097520", "sL_BldgLoss": "797250", "sL_StrLoss": "354060", "sL_NStrLoss": "443190", "sL_ContLoss": "300270", "geom_point": "0101000020E6100000F1FFEC3FD9BC5EC00F44166962A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952173111, 49.275205009000082 ], [ -122.953450915, 49.275208609000074 ], [ -122.953447020999931, 49.276063402000062 ], [ -122.95344201799999, 49.276328107000026 ], [ -122.953431888999958, 49.277005208000062 ], [ -122.953416675999904, 49.277759696000061 ], [ -122.952691513999937, 49.27775435500007 ], [ -122.949983192, 49.277734361000114 ], [ -122.949543298999984, 49.277731121000066 ], [ -122.94918990799998, 49.277728487000047 ], [ -122.948898226, 49.277670804000117 ], [ -122.948614612999933, 49.277532106000088 ], [ -122.94788209599993, 49.276759187000053 ], [ -122.947909506999949, 49.276029505000103 ], [ -122.947926398999954, 49.275627308000068 ], [ -122.947926547999927, 49.275206586000067 ], [ -122.949370282, 49.275204683000076 ], [ -122.950695899, 49.275202901000057 ], [ -122.952173111, 49.275205009000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72518386", "BldgCostT": "45862079", "sL_LossRatio": "0.682204541747467", "sL_AssetLoss": "1103540", "sL_BldgLoss": "752840", "sL_StrLoss": "304740", "sL_NStrLoss": "448100", "sL_ContLoss": "350700", "geom_point": "0101000020E6100000301E94E6C5BC5EC061A8BB99EEA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950698906999918, 49.272503207000085 ], [ -122.949370406999918, 49.271954896000061 ], [ -122.949166412999958, 49.271881605000097 ], [ -122.947900206999918, 49.271597196000052 ], [ -122.946158403999974, 49.271587500000116 ], [ -122.946307310999899, 49.272102509000042 ], [ -122.946472003999972, 49.272397202000022 ], [ -122.946585795999965, 49.272464392000124 ], [ -122.947783994999938, 49.272465904000072 ], [ -122.94790179599994, 49.272492611000118 ], [ -122.947950922, 49.272581395 ], [ -122.947949517, 49.273396595000044 ], [ -122.946530996999954, 49.273401493000037 ], [ -122.946140828999944, 49.273393859000116 ], [ -122.946012184999987, 49.273391336000053 ], [ -122.945460091999905, 49.272635321000074 ], [ -122.945281107999989, 49.272285225000083 ], [ -122.945112774999984, 49.271815594 ], [ -122.945078738999911, 49.271578326000053 ], [ -122.945045002999905, 49.271343401000088 ], [ -122.945070896999965, 49.270741494000056 ], [ -122.945164166, 49.270326231000077 ], [ -122.94516617699999, 49.270317202000079 ], [ -122.945198304999963, 49.270321083000077 ], [ -122.945272475999928, 49.270330145000109 ], [ -122.945793891999955, 49.2704035490001 ], [ -122.946678391999967, 49.270577121000017 ], [ -122.946960610999895, 49.270675218000115 ], [ -122.94762899899996, 49.270958859000118 ], [ -122.949223440999958, 49.271635483000097 ], [ -122.949503209999989, 49.271754208000083 ], [ -122.950621196999947, 49.272201114000069 ], [ -122.951065920999937, 49.272335203000118 ], [ -122.951548808, 49.272430907000071 ], [ -122.952227390999951, 49.27249781100015 ], [ -122.952448219999937, 49.272499939000106 ], [ -122.953497696999932, 49.272510196000049 ], [ -122.953498210999925, 49.273381302000068 ], [ -122.953450915, 49.275208609000074 ], [ -122.952173111, 49.275205009000082 ], [ -122.950695899, 49.275202901000057 ], [ -122.950698906999918, 49.272503207000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215327334", "BldgCostT": "145553334", "sL_LossRatio": "0.779480954099544", "sL_AssetLoss": "1523950", "sL_BldgLoss": "1187890", "sL_StrLoss": "526680", "sL_NStrLoss": "661210", "sL_ContLoss": "336060", "geom_point": "0101000020E61000008D4714202BBD5EC07B8AC168FBA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95764638899999, 49.271586787000039 ], [ -122.959068488999918, 49.271589109000033 ], [ -122.959054090999956, 49.272033612000016 ], [ -122.959041593999942, 49.272418789000021 ], [ -122.95830525300002, 49.272413478000075 ], [ -122.957620018999961, 49.272408495000057 ], [ -122.957614912999944, 49.274695772000022 ], [ -122.957614006999933, 49.275118014000014 ], [ -122.957646587999946, 49.275208100000043 ], [ -122.956231392999882, 49.275204215000024 ], [ -122.953450915, 49.275208609000074 ], [ -122.953498210999925, 49.273381302000068 ], [ -122.953497696999932, 49.272510196000049 ], [ -122.953496582999946, 49.271585007000027 ], [ -122.954955196999933, 49.271596500000072 ], [ -122.955569918999956, 49.271589741000078 ], [ -122.95626569399991, 49.271582095000085 ], [ -122.956944955999944, 49.271584413000042 ], [ -122.95764638899999, 49.271586787000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57007394", "BldgCostT": "38431523", "sL_LossRatio": "0.748843410439304", "sL_AssetLoss": "750050", "sL_BldgLoss": "561670", "sL_StrLoss": "254380", "sL_NStrLoss": "307290", "sL_ContLoss": "188380", "geom_point": "0101000020E61000003E27D60C1DBD5EC0B93BBEFF87A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95338430399994, 49.267960606000031 ], [ -122.956312313999916, 49.267982908000057 ], [ -122.956292699999892, 49.269537106000023 ], [ -122.956288603999923, 49.269846877000056 ], [ -122.956271136999973, 49.271169148000048 ], [ -122.95626569399991, 49.271582095000085 ], [ -122.955569918999956, 49.271589741000078 ], [ -122.954955196999933, 49.271596500000072 ], [ -122.953496582999946, 49.271585007000027 ], [ -122.953528082999981, 49.269117707000063 ], [ -122.95353700299998, 49.268397295000064 ], [ -122.95338430399994, 49.267960606000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247375084", "BldgCostT": "172563334", "sL_LossRatio": "0.854032194325158", "sL_AssetLoss": "1518280", "sL_BldgLoss": "1296660", "sL_StrLoss": "607460", "sL_NStrLoss": "689200", "sL_ContLoss": "221620", "geom_point": "0101000020E61000007C1D92D6EFBC5EC03FABF51388A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950803290999943, 49.267968790000118 ], [ -122.95264891099994, 49.267964098000071 ], [ -122.953006730000013, 49.267962412000067 ], [ -122.95338430399994, 49.267960606000031 ], [ -122.95353700299998, 49.268397295000064 ], [ -122.953528082999981, 49.269117707000063 ], [ -122.953496582999946, 49.271585007000027 ], [ -122.95236746099998, 49.271576404 ], [ -122.952184889999927, 49.271575005000024 ], [ -122.950756128999956, 49.271570356000019 ], [ -122.950742412999929, 49.271570293000082 ], [ -122.950757695999968, 49.269727683000049 ], [ -122.950758299999976, 49.269551988000011 ], [ -122.950803290999943, 49.267968790000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269385250", "BldgCostT": "180985000", "sL_LossRatio": "0.811622019368317", "sL_AssetLoss": "1943380", "sL_BldgLoss": "1577290", "sL_StrLoss": "676860", "sL_NStrLoss": "900430", "sL_ContLoss": "366090", "geom_point": "0101000020E61000009DE4707BBCBC5EC04CE8AA508FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94516617699999, 49.270317202000079 ], [ -122.945357609999959, 49.269810094000036 ], [ -122.94575800899996, 49.269216981000099 ], [ -122.945996180999956, 49.26896284200005 ], [ -122.946297491999928, 49.268641301000081 ], [ -122.946304559999959, 49.26863351100009 ], [ -122.947144884999943, 49.267707693000084 ], [ -122.947256097999968, 49.267751398000023 ], [ -122.947754590999949, 49.267900588000039 ], [ -122.948487504999903, 49.267977187000092 ], [ -122.94955291699992, 49.267969495000031 ], [ -122.950803290999943, 49.267968790000118 ], [ -122.950758299999976, 49.269551988000011 ], [ -122.950757695999968, 49.269727683000049 ], [ -122.950742412999929, 49.271570293000082 ], [ -122.950756128999956, 49.271570356000019 ], [ -122.952184889999927, 49.271575005000024 ], [ -122.95236746099998, 49.271576404 ], [ -122.953496582999946, 49.271585007000027 ], [ -122.953497696999932, 49.272510196000049 ], [ -122.952448219999937, 49.272499939000106 ], [ -122.952227390999951, 49.27249781100015 ], [ -122.951548808, 49.272430907000071 ], [ -122.951065920999937, 49.272335203000118 ], [ -122.950621196999947, 49.272201114000069 ], [ -122.949503209999989, 49.271754208000083 ], [ -122.949223440999958, 49.271635483000097 ], [ -122.94762899899996, 49.270958859000118 ], [ -122.946960610999895, 49.270675218000115 ], [ -122.946678391999967, 49.270577121000017 ], [ -122.945793891999955, 49.2704035490001 ], [ -122.945272475999928, 49.270330145000109 ], [ -122.945198304999963, 49.270321083000077 ], [ -122.94516617699999, 49.270317202000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "481735500", "BldgCostT": "327210000", "sL_LossRatio": "0.833627721001773", "sL_AssetLoss": "3198730", "sL_BldgLoss": "2666550", "sL_StrLoss": "1205420", "sL_NStrLoss": "1461130", "sL_ContLoss": "532180", "geom_point": "0101000020E61000005710B014D1BC5EC00CDF25E52CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947144884999943, 49.267707693000084 ], [ -122.947444695999977, 49.267391007000079 ], [ -122.947804698999974, 49.266868807000073 ], [ -122.947922494999915, 49.266601898 ], [ -122.947997799999911, 49.266126500000013 ], [ -122.948015906999927, 49.265328926000116 ], [ -122.948029775999956, 49.265328907000075 ], [ -122.948098527999903, 49.265328898000092 ], [ -122.948140943999988, 49.26532884600006 ], [ -122.948686468999938, 49.265328061000041 ], [ -122.949300602999955, 49.265537276000067 ], [ -122.949361602999971, 49.265716493000092 ], [ -122.949764986999952, 49.265851285000096 ], [ -122.949868508999941, 49.265843399000047 ], [ -122.949719284, 49.266206150000102 ], [ -122.950154225999967, 49.266368875000111 ], [ -122.949991742999913, 49.266556449000049 ], [ -122.950646262999939, 49.266691641000094 ], [ -122.950812577999955, 49.266322326000122 ], [ -122.95337702099998, 49.266334408000034 ], [ -122.953363919999944, 49.267015986000075 ], [ -122.95337295299997, 49.267434888000047 ], [ -122.95338430399994, 49.267960606000031 ], [ -122.953006730000013, 49.267962412000067 ], [ -122.95264891099994, 49.267964098000071 ], [ -122.950803290999943, 49.267968790000118 ], [ -122.94955291699992, 49.267969495000031 ], [ -122.948487504999903, 49.267977187000092 ], [ -122.947754590999949, 49.267900588000039 ], [ -122.947256097999968, 49.267751398000023 ], [ -122.947144884999943, 49.267707693000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250998416", "BldgCostT": "171041666", "sL_LossRatio": "0.809724778635765", "sL_AssetLoss": "1836340", "sL_BldgLoss": "1486930", "sL_StrLoss": "649290", "sL_NStrLoss": "837640", "sL_ContLoss": "349410", "geom_point": "0101000020E61000001E4739B9DBBC5EC0DC8420ACEBA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.948015906999927, 49.265328926000116 ], [ -122.948045289999968, 49.263796539000104 ], [ -122.948171767999938, 49.263795607000063 ], [ -122.948320012999929, 49.26379572300003 ], [ -122.9495401, 49.26379647100007 ], [ -122.950696297999968, 49.263806592000023 ], [ -122.951965097999903, 49.263880301000036 ], [ -122.953393424999959, 49.263909807000104 ], [ -122.953385079999975, 49.26522931100002 ], [ -122.95337702099998, 49.266334408000034 ], [ -122.950812577999955, 49.266322326000122 ], [ -122.950646262999939, 49.266691641000094 ], [ -122.949991742999913, 49.266556449000049 ], [ -122.950154225999967, 49.266368875000111 ], [ -122.949719284, 49.266206150000102 ], [ -122.949868508999941, 49.265843399000047 ], [ -122.949764986999952, 49.265851285000096 ], [ -122.949361602999971, 49.265716493000092 ], [ -122.949300602999955, 49.265537276000067 ], [ -122.948686468999938, 49.265328061000041 ], [ -122.948140943999988, 49.26532884600006 ], [ -122.948098527999903, 49.265328898000092 ], [ -122.948029775999956, 49.265328907000075 ], [ -122.948015906999927, 49.265328926000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61670917", "BldgCostT": "42531667", "sL_LossRatio": "0.765237714496586", "sL_AssetLoss": "812950", "sL_BldgLoss": "622100", "sL_StrLoss": "281450", "sL_NStrLoss": "340650", "sL_ContLoss": "190850", "geom_point": "0101000020E610000086A4E40F25BD5EC049A3767DEEA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.954843704999917, 49.263353488000121 ], [ -122.956327970999922, 49.263366592000054 ], [ -122.95707899699994, 49.263477869000063 ], [ -122.957762192999922, 49.26357910899999 ], [ -122.95771848, 49.26400161300004 ], [ -122.957690996999943, 49.264267092000068 ], [ -122.957659484999951, 49.265165195000108 ], [ -122.957642120999949, 49.266038597000062 ], [ -122.95692223599994, 49.266038601000062 ], [ -122.956461792999917, 49.266038596000044 ], [ -122.956454572999988, 49.266545682000114 ], [ -122.956448408999975, 49.266976901000142 ], [ -122.95563768699995, 49.26701799800005 ], [ -122.953363919999944, 49.267015986000075 ], [ -122.95337702099998, 49.266334408000034 ], [ -122.953385079999975, 49.26522931100002 ], [ -122.953393424999959, 49.263909807000104 ], [ -122.953421411999926, 49.263358406000101 ], [ -122.95410682799999, 49.263356049000038 ], [ -122.954843704999917, 49.263353488000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64428333", "BldgCostT": "41958333", "sL_LossRatio": "0.720544220670299", "sL_AssetLoss": "912130", "sL_BldgLoss": "657230", "sL_StrLoss": "307480", "sL_NStrLoss": "349750", "sL_ContLoss": "254900", "geom_point": "0101000020E610000024EF778343BD5EC009A482921BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.958436531999936, 49.26358614400003 ], [ -122.959132413999939, 49.263593394000118 ], [ -122.959120894999941, 49.2643560940001 ], [ -122.959147893999955, 49.265767493000091 ], [ -122.959112893999958, 49.26604939900006 ], [ -122.9591003, 49.266976004000099 ], [ -122.95908791899997, 49.267981795000019 ], [ -122.957711108999973, 49.267982687000014 ], [ -122.957016792999951, 49.267982809000038 ], [ -122.956312313999916, 49.267982908000057 ], [ -122.95338430399994, 49.267960606000031 ], [ -122.95337295299997, 49.267434888000047 ], [ -122.953363919999944, 49.267015986000075 ], [ -122.95563768699995, 49.26701799800005 ], [ -122.956448408999975, 49.266976901000142 ], [ -122.956454572999988, 49.266545682000114 ], [ -122.956461792999917, 49.266038596000044 ], [ -122.95692223599994, 49.266038601000062 ], [ -122.957642120999949, 49.266038597000062 ], [ -122.957659484999951, 49.265165195000108 ], [ -122.957690996999943, 49.264267092000068 ], [ -122.95771848, 49.26400161300004 ], [ -122.957762192999922, 49.26357910899999 ], [ -122.958436531999936, 49.26358614400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104700417", "BldgCostT": "68051667", "sL_LossRatio": "0.741515980056522", "sL_AssetLoss": "1305690", "sL_BldgLoss": "968190", "sL_StrLoss": "442010", "sL_NStrLoss": "526180", "sL_ContLoss": "337500", "geom_point": "0101000020E6100000C24572228FBD5EC0685C381012A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963106747999944, 49.264369603000013 ], [ -122.964621185999974, 49.264369497000125 ], [ -122.964617190999917, 49.265858397000081 ], [ -122.964585391999947, 49.267982601000035 ], [ -122.963903397999928, 49.267982705000108 ], [ -122.962171450999946, 49.267982938000067 ], [ -122.961846881999989, 49.267983016000109 ], [ -122.961415436999957, 49.267982926000059 ], [ -122.96049620499997, 49.267982804000042 ], [ -122.960095851999938, 49.267982516000039 ], [ -122.960082084999925, 49.267982501000034 ], [ -122.959779675999926, 49.267982287000045 ], [ -122.95908791899997, 49.267981795000019 ], [ -122.9591003, 49.266976004000099 ], [ -122.959112893999958, 49.26604939900006 ], [ -122.959147893999955, 49.265767493000091 ], [ -122.959120894999941, 49.2643560940001 ], [ -122.959810482999941, 49.264363086000102 ], [ -122.960466398, 49.264369708000068 ], [ -122.962105470999987, 49.264369657000039 ], [ -122.963106747999944, 49.264369603000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123523500", "BldgCostT": "78330000", "sL_LossRatio": "0.703143592607883", "sL_AssetLoss": "1647160", "sL_BldgLoss": "1158190", "sL_StrLoss": "522610", "sL_NStrLoss": "635580", "sL_ContLoss": "488970", "geom_point": "0101000020E61000000D7FB8716CBD5EC0AC64DF9979A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963903397999928, 49.267982705000108 ], [ -122.964585391999947, 49.267982601000035 ], [ -122.964592683999911, 49.268899798000056 ], [ -122.964596982999936, 49.269779093000089 ], [ -122.963888461999915, 49.269777819000069 ], [ -122.959050422999894, 49.269768900000066 ], [ -122.959068488999918, 49.271589109000033 ], [ -122.95764638899999, 49.271586787000039 ], [ -122.956944955999944, 49.271584413000042 ], [ -122.95626569399991, 49.271582095000085 ], [ -122.956271136999973, 49.271169148000048 ], [ -122.956288603999923, 49.269846877000056 ], [ -122.956292699999892, 49.269537106000023 ], [ -122.956312313999916, 49.267982908000057 ], [ -122.957016792999951, 49.267982809000038 ], [ -122.957711108999973, 49.267982687000014 ], [ -122.95908791899997, 49.267981795000019 ], [ -122.959779675999926, 49.267982287000045 ], [ -122.960082084999925, 49.267982501000034 ], [ -122.960095851999938, 49.267982516000039 ], [ -122.96049620499997, 49.267982804000042 ], [ -122.961415436999957, 49.267982926000059 ], [ -122.961846881999989, 49.267983016000109 ], [ -122.962171450999946, 49.267982938000067 ], [ -122.963903397999928, 49.267982705000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105138334", "BldgCostT": "65613334", "sL_LossRatio": "0.712473749885869", "sL_AssetLoss": "1314280", "sL_BldgLoss": "936390", "sL_StrLoss": "439730", "sL_NStrLoss": "496660", "sL_ContLoss": "377890", "geom_point": "0101000020E6100000701173A48EBD5EC03F03345BC3A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963888461999915, 49.269777819000069 ], [ -122.964596982999936, 49.269779093000089 ], [ -122.964605118999913, 49.270704507000033 ], [ -122.964608214999885, 49.271602697000112 ], [ -122.964613123999982, 49.272535098000105 ], [ -122.964618309999963, 49.273400987000059 ], [ -122.963899473999902, 49.273399583000057 ], [ -122.959042484999941, 49.273389888000061 ], [ -122.959041593999942, 49.272418789000021 ], [ -122.959054090999956, 49.272033612000016 ], [ -122.959068488999918, 49.271589109000033 ], [ -122.959050422999894, 49.269768900000066 ], [ -122.963888461999915, 49.269777819000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109782667", "BldgCostT": "69081667", "sL_LossRatio": "0.704367470966531", "sL_AssetLoss": "1385470", "sL_BldgLoss": "975880", "sL_StrLoss": "454570", "sL_NStrLoss": "521310", "sL_ContLoss": "409590", "geom_point": "0101000020E610000084A159027EBD5EC0B2A63F1C20A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95900835599997, 49.275640666000044 ], [ -122.959012601999973, 49.275208691000117 ], [ -122.957646587999946, 49.275208100000043 ], [ -122.957614006999933, 49.275118014000014 ], [ -122.957614912999944, 49.274695772000022 ], [ -122.957620018999961, 49.272408495000057 ], [ -122.95830525300002, 49.272413478000075 ], [ -122.959041593999942, 49.272418789000021 ], [ -122.959042484999941, 49.273389888000061 ], [ -122.963899473999902, 49.273399583000057 ], [ -122.964618309999963, 49.273400987000059 ], [ -122.964624096999913, 49.274299209000063 ], [ -122.964626480999968, 49.275017370000057 ], [ -122.964627086999883, 49.275197389000013 ], [ -122.962418491999983, 49.275201003000113 ], [ -122.96241886199999, 49.27567787400011 ], [ -122.962419192999903, 49.276070310000101 ], [ -122.960348211999985, 49.276070593000036 ], [ -122.959635575, 49.276071090000102 ], [ -122.959004118999957, 49.276071499000061 ], [ -122.95900835599997, 49.275640666000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78180417", "BldgCostT": "51026667", "sL_LossRatio": "0.730538118443875", "sL_AssetLoss": "968560", "sL_BldgLoss": "707570", "sL_StrLoss": "328510", "sL_NStrLoss": "379060", "sL_ContLoss": "260990", "geom_point": "0101000020E61000001195DB30E9BD5EC07105E3F9EFA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.965357959999892, 49.271600754000055 ], [ -122.970096009999978, 49.271588403000095 ], [ -122.970094947999939, 49.272055075000019 ], [ -122.970093884999969, 49.272504504000061 ], [ -122.970092461999954, 49.2729545830001 ], [ -122.970091004999972, 49.273410588000075 ], [ -122.970089128999945, 49.273872101000052 ], [ -122.970087405999891, 49.274307692000043 ], [ -122.96534237699997, 49.274300341000071 ], [ -122.964624096999913, 49.274299209000063 ], [ -122.964618309999963, 49.273400987000059 ], [ -122.964613123999982, 49.272535098000105 ], [ -122.964608214999885, 49.271602697000112 ], [ -122.965357959999892, 49.271600754000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99076990", "BldgCostT": "66231028", "sL_LossRatio": "0.757974867881759", "sL_AssetLoss": "1214064", "sL_BldgLoss": "920230", "sL_StrLoss": "394110", "sL_NStrLoss": "526120", "sL_ContLoss": "293834", "geom_point": "0101000020E610000065811BCEE1BD5EC0E6074BC849A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.96534237699997, 49.274300341000071 ], [ -122.970087405999891, 49.274307692000043 ], [ -122.970086968999965, 49.274798623000059 ], [ -122.970086606999942, 49.275203093000137 ], [ -122.97007850199999, 49.276105501000075 ], [ -122.969369358999955, 49.276102319000081 ], [ -122.967554574999937, 49.27609416800005 ], [ -122.966874609999977, 49.276091095000126 ], [ -122.966871683999941, 49.276934200000014 ], [ -122.966866460999967, 49.277397395000094 ], [ -122.966861883999968, 49.27779869600009 ], [ -122.965839198999973, 49.277801496000116 ], [ -122.964639578999964, 49.277799307000087 ], [ -122.964637751999987, 49.277414634000131 ], [ -122.964634548999982, 49.276749011000042 ], [ -122.964627086999883, 49.275197389000013 ], [ -122.964626480999968, 49.275017370000057 ], [ -122.964624096999913, 49.274299209000063 ], [ -122.96534237699997, 49.274300341000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "306084254", "BldgCostT": "193735462", "sL_LossRatio": "0.698754654675753", "sL_AssetLoss": "3415920", "sL_BldgLoss": "2386890", "sL_StrLoss": "925830", "sL_NStrLoss": "1461060", "sL_ContLoss": "1029030", "geom_point": "0101000020E6100000A4EDFC2EEEBD5EC0215D01BFA5A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.969369358999955, 49.276102319000081 ], [ -122.97007850199999, 49.276105501000075 ], [ -122.970076223999925, 49.2763008350001 ], [ -122.970068611, 49.276951900000057 ], [ -122.970065131999931, 49.277218296000079 ], [ -122.970057310999934, 49.277818192000062 ], [ -122.970051553999937, 49.278324819000019 ], [ -122.970042868999926, 49.279089324000097 ], [ -122.970029212, 49.280288286000044 ], [ -122.970029145999945, 49.280394584000085 ], [ -122.965822910999918, 49.280403433000103 ], [ -122.96467150899997, 49.280398097000038 ], [ -122.964670241999983, 49.280312487000117 ], [ -122.964662527999963, 49.279086291000041 ], [ -122.964647487999954, 49.278242163000087 ], [ -122.964639578999964, 49.277799307000087 ], [ -122.965839198999973, 49.277801496000116 ], [ -122.966861883999968, 49.27779869600009 ], [ -122.966866460999967, 49.277397395000094 ], [ -122.966871683999941, 49.276934200000014 ], [ -122.966874609999977, 49.276091095000126 ], [ -122.967554574999937, 49.27609416800005 ], [ -122.969369358999955, 49.276102319000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192650789", "BldgCostT": "129765372", "sL_LossRatio": "0.739212099998521", "sL_AssetLoss": "2028430", "sL_BldgLoss": "1499440", "sL_StrLoss": "684700", "sL_NStrLoss": "814740", "sL_ContLoss": "528990", "geom_point": "0101000020E6100000012CFA5C90BD5EC0E1672B4896A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95884705499999, 49.280370190000092 ], [ -122.958950086999977, 49.280101011000092 ], [ -122.958982296, 49.277785999000095 ], [ -122.959004118999957, 49.276071499000061 ], [ -122.959635575, 49.276071090000102 ], [ -122.960348211999985, 49.276070593000036 ], [ -122.962419192999903, 49.276070310000101 ], [ -122.96241886199999, 49.27567787400011 ], [ -122.962418491999983, 49.275201003000113 ], [ -122.964627086999883, 49.275197389000013 ], [ -122.964634548999982, 49.276749011000042 ], [ -122.964637751999987, 49.277414634000131 ], [ -122.964639578999964, 49.277799307000087 ], [ -122.964647487999954, 49.278242163000087 ], [ -122.964662527999963, 49.279086291000041 ], [ -122.964670241999983, 49.280312487000117 ], [ -122.96467150899997, 49.280398097000038 ], [ -122.963490161999943, 49.280388285000122 ], [ -122.962451443999939, 49.280320316000079 ], [ -122.962428442, 49.280318474000069 ], [ -122.961415095999882, 49.280237120000095 ], [ -122.961239056999915, 49.280232373000047 ], [ -122.960609732999941, 49.280215339000044 ], [ -122.960529649999955, 49.280222699000042 ], [ -122.960495987999934, 49.280225820000048 ], [ -122.960114709, 49.280260859000059 ], [ -122.959829290999963, 49.28032787500009 ], [ -122.95955636799998, 49.280391970000103 ], [ -122.958976706999934, 49.280598396000087 ], [ -122.958834417999952, 49.280649073000127 ], [ -122.95880728099999, 49.280503751 ], [ -122.958803543999977, 49.280483818000043 ], [ -122.95884705499999, 49.280370190000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143852978", "BldgCostT": "95964857", "sL_LossRatio": "0.740280316879951", "sL_AssetLoss": "1887150", "sL_BldgLoss": "1397020", "sL_StrLoss": "627800", "sL_NStrLoss": "769220", "sL_ContLoss": "490130", "geom_point": "0101000020E610000070ED022D36BD5EC0DAB3294F87A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.958522176999949, 49.280485334000041 ], [ -122.958389908999962, 49.280427571000047 ], [ -122.957075350999901, 49.280437351000067 ], [ -122.956701721999977, 49.280434030000087 ], [ -122.95670239899999, 49.28036108800007 ], [ -122.955946616999981, 49.280358689000103 ], [ -122.955943839, 49.279479418000044 ], [ -122.954469720999967, 49.279470296000028 ], [ -122.954475405999958, 49.278589405000069 ], [ -122.953415285999981, 49.278574798000115 ], [ -122.953416675999904, 49.277759696000061 ], [ -122.953431888999958, 49.277005208000062 ], [ -122.95344201799999, 49.276328107000026 ], [ -122.953447020999931, 49.276063402000062 ], [ -122.953450915, 49.275208609000074 ], [ -122.956231392999882, 49.275204215000024 ], [ -122.957646587999946, 49.275208100000043 ], [ -122.959012601999973, 49.275208691000117 ], [ -122.95900835599997, 49.275640666000044 ], [ -122.959004118999957, 49.276071499000061 ], [ -122.958982296, 49.277785999000095 ], [ -122.958950086999977, 49.280101011000092 ], [ -122.95884705499999, 49.280370190000092 ], [ -122.958803543999977, 49.280483818000043 ], [ -122.95880728099999, 49.280503751 ], [ -122.958834417999952, 49.280649073000127 ], [ -122.958708729999955, 49.280532919000095 ], [ -122.958669437999944, 49.280492584000044 ], [ -122.958522176999949, 49.280485334000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201975555", "BldgCostT": "130620984", "sL_LossRatio": "0.772141268681088", "sL_AssetLoss": "1286060", "sL_BldgLoss": "993020", "sL_StrLoss": "430470", "sL_NStrLoss": "562550", "sL_ContLoss": "293040", "geom_point": "0101000020E6100000D523E4EE39BD5EC0A910F2EE06A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.957075350999901, 49.280437351000067 ], [ -122.958389908999962, 49.280427571000047 ], [ -122.958522176999949, 49.280485334000041 ], [ -122.958669437999944, 49.280492584000044 ], [ -122.958708729999955, 49.280532919000095 ], [ -122.958834417999952, 49.280649073000127 ], [ -122.958496153999988, 49.280803947000095 ], [ -122.958371071999949, 49.280861220000162 ], [ -122.95810618199999, 49.281049225000039 ], [ -122.957893516999945, 49.281200153000043 ], [ -122.957797361999951, 49.281268420000075 ], [ -122.957220634999913, 49.281846691000041 ], [ -122.956808140999925, 49.282405999000048 ], [ -122.956577032999974, 49.282433307000069 ], [ -122.956270978999939, 49.282430702000049 ], [ -122.954454619, 49.282420866000088 ], [ -122.955181694, 49.281814439000044 ], [ -122.956070427999933, 49.281047704000095 ], [ -122.956705304999957, 49.28065122100007 ], [ -122.957075350999901, 49.280437351000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36627166", "BldgCostT": "24631666", "sL_LossRatio": "0.716315711971727", "sL_AssetLoss": "679100", "sL_BldgLoss": "486450", "sL_StrLoss": "196070", "sL_NStrLoss": "290380", "sL_ContLoss": "192650", "geom_point": "0101000020E61000001C3A4DD117BD5EC02F31D805EAA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953391074999928, 49.280408206000054 ], [ -122.95339168699995, 49.280336161000072 ], [ -122.953400829999964, 49.278941975000073 ], [ -122.953415285999981, 49.278574798000115 ], [ -122.954475405999958, 49.278589405000069 ], [ -122.954469720999967, 49.279470296000028 ], [ -122.955943839, 49.279479418000044 ], [ -122.955946616999981, 49.280358689000103 ], [ -122.95670239899999, 49.28036108800007 ], [ -122.956701721999977, 49.280434030000087 ], [ -122.957075350999901, 49.280437351000067 ], [ -122.956705304999957, 49.28065122100007 ], [ -122.956070427999933, 49.281047704000095 ], [ -122.955181694, 49.281814439000044 ], [ -122.954454619, 49.282420866000088 ], [ -122.953372305999935, 49.282409256000022 ], [ -122.953381162, 49.281466005000034 ], [ -122.95338174199999, 49.281404546000076 ], [ -122.953391074999928, 49.280408206000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137754001", "BldgCostT": "86400001", "sL_LossRatio": "0.723110650995676", "sL_AssetLoss": "1642100", "sL_BldgLoss": "1187420", "sL_StrLoss": "549410", "sL_NStrLoss": "638010", "sL_ContLoss": "454680", "geom_point": "0101000020E6100000E146781866BE5EC0DFAE136E64A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970086606999942, 49.275203093000137 ], [ -122.970086968999965, 49.274798623000059 ], [ -122.970087405999891, 49.274307692000043 ], [ -122.970089128999945, 49.273872101000052 ], [ -122.970091004999972, 49.273410588000075 ], [ -122.970092461999954, 49.2729545830001 ], [ -122.970093884999969, 49.272504504000061 ], [ -122.974927506999933, 49.272515805000111 ], [ -122.975628494999953, 49.272512005000031 ], [ -122.975621579999967, 49.273418896000109 ], [ -122.975616606999935, 49.274316897000119 ], [ -122.975613585999909, 49.275206794000091 ], [ -122.975666356999909, 49.275206859000036 ], [ -122.975834727999981, 49.275207047000052 ], [ -122.976285009999941, 49.275207590000086 ], [ -122.976991815999952, 49.27520841200009 ], [ -122.978828324999967, 49.275214023000089 ], [ -122.979048709999958, 49.275214707000039 ], [ -122.979469222999953, 49.275256195000118 ], [ -122.979492098999913, 49.272974717000103 ], [ -122.979496698999966, 49.272513998000051 ], [ -122.981140295, 49.272532090000041 ], [ -122.98110872599996, 49.274981407000034 ], [ -122.980983996999953, 49.275482288000092 ], [ -122.980983497999958, 49.275574496000033 ], [ -122.980976197999937, 49.276986821000015 ], [ -122.980974611999912, 49.277295411000139 ], [ -122.980960807999907, 49.278203010000077 ], [ -122.980955676999912, 49.278767880000032 ], [ -122.980952612999914, 49.279109794000085 ], [ -122.98038063199999, 49.279100683000166 ], [ -122.980198916999925, 49.279097804000052 ], [ -122.979545096999985, 49.27919751400001 ], [ -122.979362484999967, 49.279195555000044 ], [ -122.97735522699999, 49.279174275000052 ], [ -122.975559483999973, 49.279155197000051 ], [ -122.975541311999905, 49.280339271000031 ], [ -122.97428875, 49.280338827000016 ], [ -122.973604511999923, 49.280338576000091 ], [ -122.973494460999959, 49.280338553000085 ], [ -122.972383041999976, 49.280338121000042 ], [ -122.972186997, 49.280393875000051 ], [ -122.972084033999977, 49.280393917000083 ], [ -122.97087177399996, 49.280394315000073 ], [ -122.970029145999945, 49.280394584000085 ], [ -122.970029212, 49.280288286000044 ], [ -122.970042868999926, 49.279089324000097 ], [ -122.970051553999937, 49.278324819000019 ], [ -122.970057310999934, 49.277818192000062 ], [ -122.970065131999931, 49.277218296000079 ], [ -122.970068611, 49.276951900000057 ], [ -122.970076223999925, 49.2763008350001 ], [ -122.97007850199999, 49.276105501000075 ], [ -122.970086606999942, 49.275203093000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92133001", "BldgCostT": "59175001", "sL_LossRatio": "0.721456074495336", "sL_AssetLoss": "1241420", "sL_BldgLoss": "895630", "sL_StrLoss": "400340", "sL_NStrLoss": "495290", "sL_ContLoss": "345790", "geom_point": "0101000020E6100000862F766F43BE5EC019F3BE1AB5A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970099508999979, 49.269788688000055 ], [ -122.975637894999949, 49.269798100000095 ], [ -122.975637204999913, 49.270248346000102 ], [ -122.975636509999944, 49.270703404000095 ], [ -122.975634349999964, 49.271156933000093 ], [ -122.975632219999952, 49.271612201000032 ], [ -122.97563034699999, 49.272065427000051 ], [ -122.975628494999953, 49.272512005000031 ], [ -122.974927506999933, 49.272515805000111 ], [ -122.970093884999969, 49.272504504000061 ], [ -122.970094947999939, 49.272055075000019 ], [ -122.970096009999978, 49.271588403000095 ], [ -122.970097628999966, 49.271146559000023 ], [ -122.970099305999966, 49.270696686000065 ], [ -122.970099392999941, 49.270247047000026 ], [ -122.970099508999979, 49.269788688000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122218500", "BldgCostT": "78870000", "sL_LossRatio": "0.71207048771383", "sL_AssetLoss": "1687670", "sL_BldgLoss": "1201740", "sL_StrLoss": "562880", "sL_NStrLoss": "638860", "sL_ContLoss": "485930", "geom_point": "0101000020E610000072BD1A5E98BE5EC0CE1872AED9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.975613585999909, 49.275206794000091 ], [ -122.975616606999935, 49.274316897000119 ], [ -122.975621579999967, 49.273418896000109 ], [ -122.975628494999953, 49.272512005000031 ], [ -122.97563034699999, 49.272065427000051 ], [ -122.975632219999952, 49.271612201000032 ], [ -122.975634349999964, 49.271156933000093 ], [ -122.975636509999944, 49.270703404000095 ], [ -122.975637204999913, 49.270248346000102 ], [ -122.975637894999949, 49.269798100000095 ], [ -122.976040256999966, 49.269798474000069 ], [ -122.981150301999961, 49.269802900000066 ], [ -122.981148594999965, 49.270249357000068 ], [ -122.981148412999957, 49.270297405000107 ], [ -122.981155781999945, 49.270712003000028 ], [ -122.981157143999894, 49.271166891000099 ], [ -122.981158491999963, 49.271619190000109 ], [ -122.981149596999956, 49.272066611000106 ], [ -122.981140295, 49.272532090000041 ], [ -122.979496698999966, 49.272513998000051 ], [ -122.979492098999913, 49.272974717000103 ], [ -122.979469222999953, 49.275256195000118 ], [ -122.979048709999958, 49.275214707000039 ], [ -122.978828324999967, 49.275214023000089 ], [ -122.976991815999952, 49.27520841200009 ], [ -122.976285009999941, 49.275207590000086 ], [ -122.975834727999981, 49.275207047000052 ], [ -122.975666356999909, 49.275206859000036 ], [ -122.975613585999909, 49.275206794000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159829197", "BldgCostT": "109025269", "sL_LossRatio": "0.784326858673811", "sL_AssetLoss": "1507930", "sL_BldgLoss": "1182710", "sL_StrLoss": "544070", "sL_NStrLoss": "638640", "sL_ContLoss": "325220", "geom_point": "0101000020E6100000DFC070F07DBE5EC0518770276CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.981148594999965, 49.270249357000068 ], [ -122.981150301999961, 49.269802900000066 ], [ -122.976040256999966, 49.269798474000069 ], [ -122.975637894999949, 49.269798100000095 ], [ -122.970099508999979, 49.269788688000055 ], [ -122.970103000999927, 49.268895190000102 ], [ -122.970103848999926, 49.268457001000087 ], [ -122.970104788999961, 49.267983617000056 ], [ -122.971431279999948, 49.267983293000107 ], [ -122.97274569299999, 49.267982991000054 ], [ -122.975649006999944, 49.267983308000119 ], [ -122.978550419999934, 49.267991601000062 ], [ -122.980975812999944, 49.267988295000144 ], [ -122.981157321999916, 49.268006902000096 ], [ -122.98246930000002, 49.268009386000095 ], [ -122.982467449999959, 49.268495546000082 ], [ -122.98246060299995, 49.270298090000082 ], [ -122.981148412999957, 49.270297405000107 ], [ -122.981148594999965, 49.270249357000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140682167", "BldgCostT": "93181667", "sL_LossRatio": "0.732058729503462", "sL_AssetLoss": "2233426", "sL_BldgLoss": "1634999", "sL_StrLoss": "705079", "sL_NStrLoss": "929920", "sL_ContLoss": "598427", "geom_point": "0101000020E6100000B058A237C5BE5EC03E0D9C5C21A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.975649006999944, 49.267983308000119 ], [ -122.97565038, 49.267558811000114 ], [ -122.975651918999972, 49.267096096000024 ], [ -122.975651519999985, 49.266933911000116 ], [ -122.975720301, 49.26667911300013 ], [ -122.975728278999952, 49.266662758000102 ], [ -122.975820209999966, 49.2664747950001 ], [ -122.976056319999941, 49.266203900000086 ], [ -122.976311800999952, 49.265973304000035 ], [ -122.976472297999933, 49.265752631000105 ], [ -122.976600121999923, 49.265576898000027 ], [ -122.976664284999913, 49.265307511000081 ], [ -122.976671858999936, 49.264932475000094 ], [ -122.976676608999966, 49.264697095000038 ], [ -122.976744987999936, 49.264491901000063 ], [ -122.977006398999904, 49.264060292000082 ], [ -122.977026699999968, 49.264026798000039 ], [ -122.977269854999989, 49.263943352000055 ], [ -122.978336222999985, 49.264319345000054 ], [ -122.979075985999927, 49.264521100000131 ], [ -122.980499575999971, 49.264855526000126 ], [ -122.981205115999956, 49.26495004100007 ], [ -122.981200394999945, 49.26505971200006 ], [ -122.981170399999925, 49.265757997000058 ], [ -122.981433306999961, 49.265834711000132 ], [ -122.98503659899994, 49.266393891000114 ], [ -122.985491489999959, 49.26643459100012 ], [ -122.98588360199993, 49.266410107000063 ], [ -122.986149498999922, 49.266393501000039 ], [ -122.986684211999929, 49.266221991000158 ], [ -122.986901901999929, 49.266521452000077 ], [ -122.987386681999936, 49.267188298000121 ], [ -122.987927403999919, 49.268002396000092 ], [ -122.986517158999945, 49.26828134700007 ], [ -122.985716022999981, 49.268196466000063 ], [ -122.984574589999951, 49.268006097000068 ], [ -122.983784515999915, 49.268005596000087 ], [ -122.98246930000002, 49.268009386000095 ], [ -122.981157321999916, 49.268006902000096 ], [ -122.980975812999944, 49.267988295000144 ], [ -122.978550419999934, 49.267991601000062 ], [ -122.975649006999944, 49.267983308000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117534083", "BldgCostT": "78848333", "sL_LossRatio": "0.747543215594605", "sL_AssetLoss": "1608505", "sL_BldgLoss": "1202427", "sL_StrLoss": "550047", "sL_NStrLoss": "652380", "sL_ContLoss": "406078", "geom_point": "0101000020E61000002CEFB27814BF5EC092C45056A5A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.986599806999948, 49.274584388000086 ], [ -122.986604112999927, 49.273735103000021 ], [ -122.986577591999989, 49.273615505000095 ], [ -122.986512083999955, 49.273522689000124 ], [ -122.985779489999956, 49.273060803000085 ], [ -122.985677331999952, 49.273017612000103 ], [ -122.985601599999882, 49.27298560800007 ], [ -122.985431702999975, 49.272957391000013 ], [ -122.983745911999989, 49.272952606000096 ], [ -122.98375881599999, 49.272099101000073 ], [ -122.983752581999937, 49.27130618899999 ], [ -122.983761727999934, 49.270870765000048 ], [ -122.983773516999946, 49.270309607000129 ], [ -122.98246060299995, 49.270298090000082 ], [ -122.982467449999959, 49.268495546000082 ], [ -122.98246930000002, 49.268009386000095 ], [ -122.983784515999915, 49.268005596000087 ], [ -122.984574589999951, 49.268006097000068 ], [ -122.985716022999981, 49.268196466000063 ], [ -122.986517158999945, 49.26828134700007 ], [ -122.987927403999919, 49.268002396000092 ], [ -122.987912293999983, 49.269593348000107 ], [ -122.987894399999973, 49.271473194000095 ], [ -122.98787709199999, 49.272648289000067 ], [ -122.98787710199997, 49.2727059750001 ], [ -122.987877147999953, 49.273002822000102 ], [ -122.987877184999945, 49.273650467000103 ], [ -122.987877222999899, 49.273884326000044 ], [ -122.987877303999966, 49.27461289700004 ], [ -122.987785799999983, 49.274583299000035 ], [ -122.986599806999948, 49.274584388000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119496977", "BldgCostT": "79789856", "sL_LossRatio": "0.744640556171526", "sL_AssetLoss": "1668550", "sL_BldgLoss": "1242470", "sL_StrLoss": "560930", "sL_NStrLoss": "681540", "sL_ContLoss": "426080", "geom_point": "0101000020E6100000BFD8079BF2BE5EC00780AEA600A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98110872599996, 49.274981407000034 ], [ -122.981140295, 49.272532090000041 ], [ -122.981149596999956, 49.272066611000106 ], [ -122.981158491999963, 49.271619190000109 ], [ -122.981157143999894, 49.271166891000099 ], [ -122.981155781999945, 49.270712003000028 ], [ -122.981148412999957, 49.270297405000107 ], [ -122.98246060299995, 49.270298090000082 ], [ -122.983773516999946, 49.270309607000129 ], [ -122.983761727999934, 49.270870765000048 ], [ -122.983752581999937, 49.27130618899999 ], [ -122.98375881599999, 49.272099101000073 ], [ -122.983745911999989, 49.272952606000096 ], [ -122.985431702999975, 49.272957391000013 ], [ -122.985601599999882, 49.27298560800007 ], [ -122.985677331999952, 49.273017612000103 ], [ -122.985779489999956, 49.273060803000085 ], [ -122.986512083999955, 49.273522689000124 ], [ -122.986577591999989, 49.273615505000095 ], [ -122.986604112999927, 49.273735103000021 ], [ -122.986599806999948, 49.274584388000086 ], [ -122.987785799999983, 49.274583299000035 ], [ -122.987877303999966, 49.27461289700004 ], [ -122.987862700999955, 49.275515108000015 ], [ -122.987159644999977, 49.27550967600007 ], [ -122.983718687999954, 49.27548309500007 ], [ -122.983639916999934, 49.275483206000075 ], [ -122.98248730899999, 49.275484696000028 ], [ -122.980983996999953, 49.275482288000092 ], [ -122.98110872599996, 49.274981407000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77785500", "BldgCostT": "52230000", "sL_LossRatio": "0.7476826608506", "sL_AssetLoss": "953680", "sL_BldgLoss": "713050", "sL_StrLoss": "327140", "sL_NStrLoss": "385910", "sL_ContLoss": "240630", "geom_point": "0101000020E61000009B258D1317BF5EC0239F91E77EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987159644999977, 49.27550967600007 ], [ -122.987862700999955, 49.275515108000015 ], [ -122.987858799999913, 49.27642210100008 ], [ -122.98785917399999, 49.277325597000079 ], [ -122.987843906999899, 49.277770202000092 ], [ -122.987828302, 49.278223696000026 ], [ -122.987806213999946, 49.279135605000107 ], [ -122.983715589999989, 49.279122190000066 ], [ -122.983722591999964, 49.278212596000053 ], [ -122.98373070699995, 49.277305791000067 ], [ -122.98373038499993, 49.276402309000062 ], [ -122.983718687999954, 49.27548309500007 ], [ -122.987159644999977, 49.27550967600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117584416", "BldgCostT": "73546666", "sL_LossRatio": "0.71250827568888", "sL_AssetLoss": "1314090", "sL_BldgLoss": "936300", "sL_StrLoss": "427710", "sL_NStrLoss": "508590", "sL_ContLoss": "377790", "geom_point": "0101000020E6100000AF7A545759BF5EC0CF05A2E548A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987877303999966, 49.27461289700004 ], [ -122.987877222999899, 49.273884326000044 ], [ -122.987877184999945, 49.273650467000103 ], [ -122.987877147999953, 49.273002822000102 ], [ -122.98787710199997, 49.2727059750001 ], [ -122.98787709199999, 49.272648289000067 ], [ -122.988342462999981, 49.272649017000063 ], [ -122.988672330999975, 49.272649521000076 ], [ -122.98931299299997, 49.272650501000093 ], [ -122.990074565000015, 49.2726518280001 ], [ -122.990758398999958, 49.272652994000047 ], [ -122.990741197999967, 49.274041511000043 ], [ -122.990803196999977, 49.274144117000098 ], [ -122.991433802999964, 49.274527401000036 ], [ -122.991558001999977, 49.274583102000044 ], [ -122.992014609999913, 49.274577782000058 ], [ -122.992168392999929, 49.274601002000047 ], [ -122.992158465999978, 49.275072021000085 ], [ -122.992155641999958, 49.275206919000013 ], [ -122.992148593999914, 49.275541797000074 ], [ -122.992143477999946, 49.275980490000066 ], [ -122.992138095999948, 49.276445003000056 ], [ -122.992122997999914, 49.276888719000119 ], [ -122.992107683999933, 49.27733769800011 ], [ -122.9921024759999, 49.277788371000085 ], [ -122.992097200999964, 49.278241806000054 ], [ -122.991338246999945, 49.278238587000018 ], [ -122.987828302, 49.278223696000026 ], [ -122.987843906999899, 49.277770202000092 ], [ -122.98785917399999, 49.277325597000079 ], [ -122.987858799999913, 49.27642210100008 ], [ -122.987862700999955, 49.275515108000015 ], [ -122.987877303999966, 49.27461289700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209221418", "BldgCostT": "141081668", "sL_LossRatio": "0.775861525530574", "sL_AssetLoss": "1903600", "sL_BldgLoss": "1476930", "sL_StrLoss": "655530", "sL_NStrLoss": "821400", "sL_ContLoss": "426670", "geom_point": "0101000020E6100000E4BC73E666BF5EC065246331C1A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987806279, 49.28036059300004 ], [ -122.987806254999938, 49.279767178000093 ], [ -122.987806213999946, 49.279135605000107 ], [ -122.987828302, 49.278223696000026 ], [ -122.991338246999945, 49.278238587000018 ], [ -122.992097200999964, 49.278241806000054 ], [ -122.992091855999917, 49.278688043000095 ], [ -122.992086315999956, 49.279150401000038 ], [ -122.99472080299995, 49.279151806000066 ], [ -122.994722509, 49.279613893000018 ], [ -122.994706979999961, 49.280065700000108 ], [ -122.992573296999979, 49.280054006000093 ], [ -122.99226013599997, 49.280161164000077 ], [ -122.992075108, 49.280106807000067 ], [ -122.992106636999949, 49.280213713000101 ], [ -122.992041784999969, 49.280196797000066 ], [ -122.991695886999977, 49.28014840000003 ], [ -122.991461743999935, 49.280148276000098 ], [ -122.991135099999909, 49.280148093000086 ], [ -122.990561180999961, 49.280244694000068 ], [ -122.990412916999972, 49.280264006000031 ], [ -122.990270290999945, 49.280237501000059 ], [ -122.989338198999945, 49.280369102000108 ], [ -122.987806279, 49.28036059300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84932000", "BldgCostT": "57365000", "sL_LossRatio": "0.740740740740741", "sL_AssetLoss": "1180170", "sL_BldgLoss": "874200", "sL_StrLoss": "401450", "sL_NStrLoss": "472750", "sL_ContLoss": "305970", "geom_point": "0101000020E610000004F060D5AABF5EC0FFF3D9A69DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.994752884, 49.277342993000104 ], [ -122.99752541099997, 49.277354397000089 ], [ -122.997517817999892, 49.277815800000035 ], [ -122.99751050399999, 49.278263703000029 ], [ -122.997504315999919, 49.278706318000047 ], [ -122.997497989999914, 49.279157900000079 ], [ -122.99472080299995, 49.279151806000066 ], [ -122.992086315999956, 49.279150401000038 ], [ -122.992091855999917, 49.278688043000095 ], [ -122.992097200999964, 49.278241806000054 ], [ -122.9921024759999, 49.277788371000085 ], [ -122.992107683999933, 49.27733769800011 ], [ -122.994752884, 49.277342993000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117089166", "BldgCostT": "73026666", "sL_LossRatio": "0.704698268488196", "sL_AssetLoss": "1309376", "sL_BldgLoss": "922715", "sL_StrLoss": "421095", "sL_NStrLoss": "501620", "sL_ContLoss": "386661", "geom_point": "0101000020E6100000A149DE10D5BF5EC070D6F91A76A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.997517817999892, 49.277815800000035 ], [ -122.99752541099997, 49.277354397000089 ], [ -122.994752884, 49.277342993000104 ], [ -122.992107683999933, 49.27733769800011 ], [ -122.992122997999914, 49.276888719000119 ], [ -122.992138095999948, 49.276445003000056 ], [ -122.994776985999934, 49.276440209000086 ], [ -122.99477633, 49.275980732000036 ], [ -122.994775702999945, 49.275548315000044 ], [ -122.997539262999936, 49.275558753000034 ], [ -123.00000005699998, 49.275567991000123 ], [ -123.000319393999931, 49.275569220000122 ], [ -123.00031661299991, 49.275998913000073 ], [ -123.000313614999968, 49.276466299000077 ], [ -123.000309744999981, 49.276916479000135 ], [ -123.000305808999897, 49.277373091000079 ], [ -123.000302652999949, 49.277824915000046 ], [ -123.000299501999962, 49.278277293000052 ], [ -123.000295703999953, 49.27872444700008 ], [ -123.00029178799997, 49.279182398000032 ], [ -122.999999890999931, 49.279179842000161 ], [ -122.997497989999914, 49.279157900000079 ], [ -122.997504315999919, 49.278706318000047 ], [ -122.99751050399999, 49.278263703000029 ], [ -122.997517817999892, 49.277815800000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117695832", "BldgCostT": "73153332", "sL_LossRatio": "0.683733946102131", "sL_AssetLoss": "1758140", "sL_BldgLoss": "1202100", "sL_StrLoss": "535100", "sL_NStrLoss": "667000", "sL_ContLoss": "556040", "geom_point": "0101000020E6100000555BD183CEBF5EC02B6F051CDBA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.992106636999949, 49.280213713000101 ], [ -122.992075108, 49.280106807000067 ], [ -122.99226013599997, 49.280161164000077 ], [ -122.992573296999979, 49.280054006000093 ], [ -122.994706979999961, 49.280065700000108 ], [ -122.994722509, 49.279613893000018 ], [ -122.99472080299995, 49.279151806000066 ], [ -122.997497989999914, 49.279157900000079 ], [ -122.999999890999931, 49.279179842000161 ], [ -123.00029178799997, 49.279182398000032 ], [ -123.000283435999933, 49.279642068000079 ], [ -123.000275096999971, 49.280098909000081 ], [ -123.000262071999941, 49.280514606000047 ], [ -123.000246693999927, 49.281005197000063 ], [ -123.000000116, 49.281003394000088 ], [ -122.997474499999939, 49.280984899000039 ], [ -122.994654514999979, 49.280981203000074 ], [ -122.994218215999965, 49.28096900200007 ], [ -122.993902608999989, 49.280919701000116 ], [ -122.993479894999965, 49.280803492000075 ], [ -122.992965945999941, 49.280542815000018 ], [ -122.992408812999969, 49.280260207000019 ], [ -122.992266209999983, 49.280255289000131 ], [ -122.992106636999949, 49.280213713000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "454587060", "BldgCostT": "310188189", "sL_LossRatio": "0.807823687441499", "sL_AssetLoss": "3290520", "sL_BldgLoss": "2658160", "sL_StrLoss": "1213210", "sL_NStrLoss": "1444950", "sL_ContLoss": "632360", "geom_point": "0101000020E61000004363DD0D1CC05EC0A3BDA009BDA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.000305808999897, 49.277373091000079 ], [ -123.003078535999961, 49.277381675000079 ], [ -123.003075877999933, 49.277833803000064 ], [ -123.003074419999905, 49.278083282000111 ], [ -123.003141170999982, 49.278177013000096 ], [ -123.003142113999942, 49.278268911000083 ], [ -123.003159430999943, 49.27873336900003 ], [ -123.003176812999953, 49.279199496000075 ], [ -123.003167146999957, 49.27964203600002 ], [ -123.003157217999942, 49.280098801000108 ], [ -123.003121295999961, 49.281015688000153 ], [ -123.000246693999927, 49.281005197000063 ], [ -123.000262071999941, 49.280514606000047 ], [ -123.000275096999971, 49.280098909000081 ], [ -123.000283435999933, 49.279642068000079 ], [ -123.00029178799997, 49.279182398000032 ], [ -123.000295703999953, 49.27872444700008 ], [ -123.000299501999962, 49.278277293000052 ], [ -123.000302652999949, 49.277824915000046 ], [ -123.000305808999897, 49.277373091000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "439846276", "BldgCostT": "277284214", "sL_LossRatio": "0.700694250065735", "sL_AssetLoss": "4715880", "sL_BldgLoss": "3304390", "sL_StrLoss": "1307360", "sL_NStrLoss": "1997030", "sL_ContLoss": "1411490", "geom_point": "0101000020E6100000D4480B5DEABF5EC07AAC414E4EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.996835111999957, 49.287356310000057 ], [ -122.996859916999981, 49.286400406000048 ], [ -122.994596606999949, 49.286369790000052 ], [ -122.994610886999951, 49.285920595000064 ], [ -122.994627616999963, 49.285393331000094 ], [ -122.994639734999936, 49.285012113000114 ], [ -122.994654808999968, 49.284538400000031 ], [ -122.994665428999937, 49.283581112000043 ], [ -122.994669613999918, 49.283203885000091 ], [ -122.994674700999937, 49.282747292000046 ], [ -122.994671234999913, 49.282304372000084 ], [ -122.994667885999959, 49.281877789000113 ], [ -122.994660957999955, 49.28141393400012 ], [ -122.994654514999979, 49.280981203000074 ], [ -122.997474499999939, 49.280984899000039 ], [ -123.000000116, 49.281003394000088 ], [ -123.000246693999927, 49.281005197000063 ], [ -123.003121295999961, 49.281015688000153 ], [ -123.003127983999931, 49.281440845000127 ], [ -123.003134994999954, 49.281888006000074 ], [ -123.003122547999908, 49.282367391000058 ], [ -123.00311008099996, 49.282846696000036 ], [ -123.003096472, 49.283266952000091 ], [ -123.003082378, 49.283701601000054 ], [ -123.00306768399993, 49.284184248000059 ], [ -123.003054216999928, 49.284625905000098 ], [ -123.003049053999973, 49.285056916000059 ], [ -123.003043575999953, 49.285513799000086 ], [ -123.002032803999896, 49.285520894000094 ], [ -123.001924217999928, 49.285527701000099 ], [ -123.001565006999911, 49.28555019500002 ], [ -123.001056094999925, 49.285640593000082 ], [ -123.000380206999949, 49.285846990000088 ], [ -122.99999070199999, 49.286000324000021 ], [ -122.999347687999929, 49.286253387000031 ], [ -122.998299511999974, 49.286712400000098 ], [ -122.997833687999943, 49.286963385000078 ], [ -122.997006707999972, 49.287466493000132 ], [ -122.996835111999957, 49.287356310000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "443828525", "BldgCostT": "289128688", "sL_LossRatio": "0.724171289578256", "sL_AssetLoss": "4320870", "sL_BldgLoss": "3129050", "sL_StrLoss": "1343450", "sL_NStrLoss": "1785600", "sL_ContLoss": "1191820", "geom_point": "0101000020E61000002BF1DA2155C05EC007121E441DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.005889899999914, 49.281027695000027 ], [ -123.008669996999942, 49.281031800000079 ], [ -123.00866118799999, 49.281494901000038 ], [ -123.008652692999959, 49.28193930000004 ], [ -123.0058664, 49.281923286000051 ], [ -123.00586309, 49.282376332000098 ], [ -123.005859688999962, 49.282835614000092 ], [ -123.005856441999967, 49.283293825000037 ], [ -123.005853420999969, 49.283721797000069 ], [ -123.003082378, 49.283701601000054 ], [ -123.003096472, 49.283266952000091 ], [ -123.00311008099996, 49.282846696000036 ], [ -123.003122547999908, 49.282367391000058 ], [ -123.003134994999954, 49.281888006000074 ], [ -123.003127983999931, 49.281440845000127 ], [ -123.003121295999961, 49.281015688000153 ], [ -123.005889899999914, 49.281027695000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100317334", "BldgCostT": "67713334", "sL_LossRatio": "0.746137959520859", "sL_AssetLoss": "1210500", "sL_BldgLoss": "903200", "sL_StrLoss": "437740", "sL_NStrLoss": "465460", "sL_ContLoss": "307300", "geom_point": "0101000020E61000004531ED595FC05EC01B4DECA96EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.007686113999952, 49.283737242000065 ], [ -123.00860768599992, 49.283744996000031 ], [ -123.008595268999969, 49.28420230600009 ], [ -123.008582797999949, 49.284663104000082 ], [ -123.008577144999919, 49.285092790000071 ], [ -123.008571195999977, 49.285546392000093 ], [ -123.005798204999905, 49.285533495000024 ], [ -123.003043575999953, 49.285513799000086 ], [ -123.003049053999973, 49.285056916000059 ], [ -123.003054216999928, 49.284625905000098 ], [ -123.00306768399993, 49.284184248000059 ], [ -123.003082378, 49.283701601000054 ], [ -123.005853420999969, 49.283721797000069 ], [ -123.007686113999952, 49.283737242000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228062605", "BldgCostT": "145822491", "sL_LossRatio": "0.700100754777014", "sL_AssetLoss": "2828650", "sL_BldgLoss": "1980340", "sL_StrLoss": "872800", "sL_NStrLoss": "1107540", "sL_ContLoss": "848310", "geom_point": "0101000020E61000006702A0E594C05EC084604D4C34A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.008595268999969, 49.28420230600009 ], [ -123.00860768599992, 49.283744996000031 ], [ -123.007686113999952, 49.283737242000065 ], [ -123.005853420999969, 49.283721797000069 ], [ -123.005856441999967, 49.283293825000037 ], [ -123.005859688999962, 49.282835614000092 ], [ -123.00586309, 49.282376332000098 ], [ -123.0058664, 49.281923286000051 ], [ -123.008652692999959, 49.28193930000004 ], [ -123.00866118799999, 49.281494901000038 ], [ -123.008669996999942, 49.281031800000079 ], [ -123.011408394999961, 49.281043691000029 ], [ -123.011416087999947, 49.281503119000078 ], [ -123.011423705999945, 49.281958405000076 ], [ -123.011403948999941, 49.282430668000103 ], [ -123.011385598999979, 49.282868898000075 ], [ -123.011368897999915, 49.283320747000054 ], [ -123.011352396999897, 49.283766990000096 ], [ -123.011343842999935, 49.284211016000086 ], [ -123.011334801999936, 49.284680799000114 ], [ -123.008582797999949, 49.284663104000082 ], [ -123.008595268999969, 49.28420230600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98682750", "BldgCostT": "65430000", "sL_LossRatio": "0.736284947654818", "sL_AssetLoss": "1171359", "sL_BldgLoss": "862454", "sL_StrLoss": "406734", "sL_NStrLoss": "455720", "sL_ContLoss": "308905", "geom_point": "0101000020E61000003DDF709B80C05EC0414CD3B194A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.008582797999949, 49.284663104000082 ], [ -123.011334801999936, 49.284680799000114 ], [ -123.011324755999965, 49.285119605000041 ], [ -123.011314402999986, 49.28557279900005 ], [ -123.011302456999942, 49.286037216000082 ], [ -123.011290599999981, 49.286496385000071 ], [ -123.00853870399996, 49.286476015000105 ], [ -123.005773285999936, 49.286451596000106 ], [ -123.003029478999963, 49.286433994000085 ], [ -123.003036662999961, 49.285965529000059 ], [ -123.003043575999953, 49.285513799000086 ], [ -123.005798204999905, 49.285533495000024 ], [ -123.008571195999977, 49.285546392000093 ], [ -123.008577144999919, 49.285092790000071 ], [ -123.008582797999949, 49.284663104000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102032251", "BldgCostT": "66795001", "sL_LossRatio": "0.724150642010198", "sL_AssetLoss": "1464930", "sL_BldgLoss": "1060830", "sL_StrLoss": "466050", "sL_NStrLoss": "594780", "sL_ContLoss": "404100", "geom_point": "0101000020E6100000E2007645DBC05EC03FFB5FE870A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011352396999897, 49.283766990000096 ], [ -123.011368897999915, 49.283320747000054 ], [ -123.011385598999979, 49.282868898000075 ], [ -123.014164099999931, 49.282899880000059 ], [ -123.014161362, 49.28333815600007 ], [ -123.014158614999971, 49.283774397000066 ], [ -123.016205905, 49.28380569800008 ], [ -123.016196447999931, 49.284264134000061 ], [ -123.016187076999969, 49.284717703000119 ], [ -123.0161792899999, 49.285145656000083 ], [ -123.016170803999955, 49.285610808000051 ], [ -123.014096474999988, 49.285592195000021 ], [ -123.014077972999985, 49.286045794000131 ], [ -123.014058403999982, 49.286525208000086 ], [ -123.011290599999981, 49.286496385000071 ], [ -123.011302456999942, 49.286037216000082 ], [ -123.011314402999986, 49.28557279900005 ], [ -123.011324755999965, 49.285119605000041 ], [ -123.011334801999936, 49.284680799000114 ], [ -123.011343842999935, 49.284211016000086 ], [ -123.011352396999897, 49.283766990000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115014082", "BldgCostT": "74483332", "sL_LossRatio": "0.731381308266113", "sL_AssetLoss": "1416990", "sL_BldgLoss": "1036360", "sL_StrLoss": "472720", "sL_NStrLoss": "563640", "sL_ContLoss": "380630", "geom_point": "0101000020E61000006F530283E0C05EC0500D45CBCBA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.014096474999988, 49.285592195000021 ], [ -123.016170803999955, 49.285610808000051 ], [ -123.016156874999979, 49.28653189300011 ], [ -123.016149631999951, 49.28694488400005 ], [ -123.016141398999963, 49.287413302000111 ], [ -123.016136116999959, 49.287880312000055 ], [ -123.0161311049999, 49.288321905000089 ], [ -123.014032005999979, 49.288301709000038 ], [ -123.01401349399994, 49.288762630000093 ], [ -123.013995495999922, 49.289210403000133 ], [ -123.011215724999886, 49.289193906000015 ], [ -123.011234856999977, 49.288734965000089 ], [ -123.011253719999942, 49.288283404 ], [ -123.011252037999967, 49.287826971000094 ], [ -123.011250422999964, 49.287376197000057 ], [ -123.011270079999974, 49.286945577000026 ], [ -123.011290599999981, 49.286496385000071 ], [ -123.014058403999982, 49.286525208000086 ], [ -123.014077972999985, 49.286045794000131 ], [ -123.014096474999988, 49.285592195000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197123667", "BldgCostT": "131816667", "sL_LossRatio": "0.769976056265009", "sL_AssetLoss": "1986741", "sL_BldgLoss": "1529743", "sL_StrLoss": "713933", "sL_NStrLoss": "815810", "sL_ContLoss": "456998", "geom_point": "0101000020E61000001317EC2BB4C05EC0A133BC9B1FA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.020188851999976, 49.29367557300003 ], [ -123.020210360999954, 49.293340952000101 ], [ -123.016716093999946, 49.293341508 ], [ -123.016716001999981, 49.293071653000041 ], [ -123.014240496999918, 49.293071984000065 ], [ -123.01424018499992, 49.291992565000086 ], [ -123.017128212, 49.291992173000011 ], [ -123.017128304999972, 49.292262028000039 ], [ -123.02001634799997, 49.292261564000057 ], [ -123.020016455999937, 49.292531419000127 ], [ -123.020262400999954, 49.292531376000042 ], [ -123.020314436999968, 49.291721806000119 ], [ -123.014240108999957, 49.291722710000073 ], [ -123.014240039999933, 49.291487613000122 ], [ -123.013910636999981, 49.291478663000191 ], [ -123.013907686999971, 49.291452896000109 ], [ -123.012589745999961, 49.291453047000047 ], [ -123.012589678999973, 49.291183193000066 ], [ -123.012177109999982, 49.291183237000013 ], [ -123.012177042999937, 49.290913383000088 ], [ -123.01093934499994, 49.290913507000013 ], [ -123.010939405, 49.291183360000048 ], [ -123.01176454099999, 49.291183279000066 ], [ -123.011764733999897, 49.291992844000056 ], [ -123.011352157999937, 49.291992886000124 ], [ -123.011352282999908, 49.292532595000125 ], [ -123.009701963999959, 49.292532745000095 ], [ -123.009701910999937, 49.292262891000043 ], [ -123.00887675499996, 49.292262957000091 ], [ -123.00887670699997, 49.291993102000049 ], [ -123.008464132, 49.291993133000105 ], [ -123.008464084999957, 49.291723278000141 ], [ -123.008051511999923, 49.29172330800003 ], [ -123.008051468999923, 49.291453453000074 ], [ -123.00693329799995, 49.291453525000122 ], [ -123.006813748999946, 49.291398842000092 ], [ -123.00681368699999, 49.290950547000051 ], [ -123.005020123999941, 49.290900811000078 ], [ -123.004799622999954, 49.290858204000131 ], [ -123.00330051, 49.290841195000034 ], [ -123.003218778999965, 49.290850830000061 ], [ -123.002688015999951, 49.290836098000099 ], [ -123.002688020999983, 49.290913401000054 ], [ -123.002683003999977, 49.290913992000121 ], [ -123.002526092999972, 49.290913996000064 ], [ -123.002571984999975, 49.290717953000119 ], [ -123.002661744, 49.290342488000107 ], [ -123.002780110999964, 49.289847134000084 ], [ -123.002836537999912, 49.289434852000106 ], [ -123.002994938999976, 49.288277100000073 ], [ -123.003001476999913, 49.28806486100008 ], [ -123.002999919999979, 49.287873480000023 ], [ -123.002995399999961, 49.287322106000012 ], [ -123.003012612999967, 49.286874216000093 ], [ -123.003029478999963, 49.286433994000085 ], [ -123.005773285999936, 49.286451596000106 ], [ -123.00853870399996, 49.286476015000105 ], [ -123.011290599999981, 49.286496385000071 ], [ -123.011270079999974, 49.286945577000026 ], [ -123.011250422999964, 49.287376197000057 ], [ -123.011252037999967, 49.287826971000094 ], [ -123.011253719999942, 49.288283404 ], [ -123.011234856999977, 49.288734965000089 ], [ -123.011215724999886, 49.289193906000015 ], [ -123.013995495999922, 49.289210403000133 ], [ -123.013984718999936, 49.289661955000106 ], [ -123.013973711999981, 49.290124107000047 ], [ -123.013970506999968, 49.290561277000073 ], [ -123.013967196999914, 49.291015706000046 ], [ -123.016080114999923, 49.291036291000083 ], [ -123.018480679999968, 49.291050296000051 ], [ -123.02083151, 49.291070187000138 ], [ -123.023238705999944, 49.291089691000067 ], [ -123.023231109999955, 49.291531195000097 ], [ -123.023229262999962, 49.291637931000039 ], [ -123.023223621999932, 49.291966657 ], [ -123.023159677999971, 49.292314493000092 ], [ -123.02315142199997, 49.292653896000061 ], [ -123.023124765999967, 49.292788200000118 ], [ -123.023076911999937, 49.292994078000035 ], [ -123.023061489999961, 49.293057487000034 ], [ -123.023081605999934, 49.293290551000041 ], [ -123.023082975999927, 49.29330677300004 ], [ -123.023085098999971, 49.293400613000102 ], [ -123.023086030999949, 49.293495318000019 ], [ -123.0221844899999, 49.293518693000102 ], [ -123.020188851999976, 49.29367557300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198958167", "BldgCostT": "129866667", "sL_LossRatio": "0.755970420010244", "sL_AssetLoss": "1874240", "sL_BldgLoss": "1416870", "sL_StrLoss": "659580", "sL_NStrLoss": "757290", "sL_ContLoss": "457370", "geom_point": "0101000020E61000007B3BA9CC20C15EC001E5E76D09A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.018517871000014, 49.287436594000084 ], [ -123.020892382999946, 49.287449001000034 ], [ -123.020886520999923, 49.287915564000087 ], [ -123.020881009, 49.288353090000015 ], [ -123.020878104999952, 49.288509157000099 ], [ -123.020864001999939, 49.289260605000074 ], [ -123.020857453999966, 49.28972365100006 ], [ -123.020851181999973, 49.290165497000082 ], [ -123.020840641999939, 49.290650163000144 ], [ -123.02083151, 49.291070187000138 ], [ -123.018480679999968, 49.291050296000051 ], [ -123.016080114999923, 49.291036291000083 ], [ -123.013967196999914, 49.291015706000046 ], [ -123.013970506999968, 49.290561277000073 ], [ -123.013973711999981, 49.290124107000047 ], [ -123.013984718999936, 49.289661955000106 ], [ -123.013995495999922, 49.289210403000133 ], [ -123.01401349399994, 49.288762630000093 ], [ -123.014032005999979, 49.288301709000038 ], [ -123.0161311049999, 49.288321905000089 ], [ -123.016136116999959, 49.287880312000055 ], [ -123.016141398999963, 49.287413302000111 ], [ -123.016996018000015, 49.287423075000078 ], [ -123.017422166999921, 49.287427926000085 ], [ -123.017532799999955, 49.287429189000086 ], [ -123.018517871000014, 49.287436594000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96625667", "BldgCostT": "63511667", "sL_LossRatio": "0.718383775489782", "sL_AssetLoss": "1349070", "sL_BldgLoss": "969150", "sL_StrLoss": "429110", "sL_NStrLoss": "540040", "sL_ContLoss": "379920", "geom_point": "0101000020E61000004FB7BAD63DC15EC08FE73B11A7A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.016170803999955, 49.285610808000051 ], [ -123.0161792899999, 49.285145656000083 ], [ -123.016187076999969, 49.284717703000119 ], [ -123.018571305999899, 49.284725003000105 ], [ -123.018555133999939, 49.285163526000126 ], [ -123.018538099999901, 49.285626684000114 ], [ -123.020930798999984, 49.285653113000066 ], [ -123.023326189999949, 49.285659716000062 ], [ -123.023308848999946, 49.28615206100006 ], [ -123.023293101999954, 49.286598265000059 ], [ -123.023292795999936, 49.286607291000053 ], [ -123.023288212999915, 49.287051556000037 ], [ -123.023283592999974, 49.287500584000078 ], [ -123.020892382999946, 49.287449001000034 ], [ -123.018517871000014, 49.287436594000084 ], [ -123.017532799999955, 49.287429189000086 ], [ -123.017422166999921, 49.287427926000085 ], [ -123.016996018000015, 49.287423075000078 ], [ -123.016141398999963, 49.287413302000111 ], [ -123.016149631999951, 49.28694488400005 ], [ -123.016156874999979, 49.28653189300011 ], [ -123.016170803999955, 49.285610808000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41784000", "BldgCostT": "27870000", "sL_LossRatio": "0.743305279265494", "sL_AssetLoss": "470520", "sL_BldgLoss": "349740", "sL_StrLoss": "166600", "sL_NStrLoss": "183140", "sL_ContLoss": "120780", "geom_point": "0101000020E61000006484BF7869C15EC0FD3C5F1607A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.020892382999946, 49.287449001000034 ], [ -123.023283592999974, 49.287500584000078 ], [ -123.023281293999943, 49.287906106000058 ], [ -123.023278610999967, 49.288369705000093 ], [ -123.023275285999915, 49.288660924000077 ], [ -123.023274653999977, 49.288714920000054 ], [ -123.02327362399997, 49.28880566100004 ], [ -123.023268188999964, 49.289281791000093 ], [ -123.02325258599997, 49.289738997000015 ], [ -123.023251388999938, 49.290184796000041 ], [ -123.023246100999984, 49.290695387000063 ], [ -123.023238705999944, 49.291089691000067 ], [ -123.02083151, 49.291070187000138 ], [ -123.020840641999939, 49.290650163000144 ], [ -123.020851181999973, 49.290165497000082 ], [ -123.020857453999966, 49.28972365100006 ], [ -123.020864001999939, 49.289260605000074 ], [ -123.020878104999952, 49.288509157000099 ], [ -123.020881009, 49.288353090000015 ], [ -123.020886520999923, 49.287915564000087 ], [ -123.020892382999946, 49.287449001000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181645750", "BldgCostT": "115750000", "sL_LossRatio": "0.733417911607073", "sL_AssetLoss": "1931150", "sL_BldgLoss": "1416340", "sL_StrLoss": "666780", "sL_NStrLoss": "749560", "sL_ContLoss": "514810", "geom_point": "0101000020E6100000ED0C2121A9C15EC02FC53457F6A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028314985999927, 49.285669193000018 ], [ -123.030811804999971, 49.28567940300006 ], [ -123.030445407999963, 49.286177667000061 ], [ -123.03010868599992, 49.286635494000031 ], [ -123.030041290999932, 49.286657985000033 ], [ -123.030087509999959, 49.287120201000036 ], [ -123.030100251999926, 49.287247706000109 ], [ -123.029954596999957, 49.287711015000127 ], [ -123.029662257999945, 49.287956754000078 ], [ -123.029248607999989, 49.28834977000006 ], [ -123.029242531999969, 49.288360955000073 ], [ -123.029199484999978, 49.288440531000042 ], [ -123.02843069199993, 49.289054692000079 ], [ -123.028308500999941, 49.289159516000012 ], [ -123.027646492999935, 49.289737871000106 ], [ -123.02645041, 49.290782805000099 ], [ -123.026312799999928, 49.290955579000091 ], [ -123.026199003999977, 49.291186591000027 ], [ -123.02613281399999, 49.291554107000081 ], [ -123.02613133899996, 49.291580941000063 ], [ -123.026113563999957, 49.291908311000057 ], [ -123.026100359999973, 49.292151368000049 ], [ -123.02608725099999, 49.292392906000075 ], [ -123.026087003, 49.292397685000097 ], [ -123.026087845999967, 49.292430094000053 ], [ -123.026102935000011, 49.293005762000156 ], [ -123.02610309899994, 49.293012014000084 ], [ -123.025940962999982, 49.293069951000042 ], [ -123.025726696999953, 49.293069998000099 ], [ -123.02572167199996, 49.293148308000063 ], [ -123.025290995999967, 49.293302198000063 ], [ -123.023888988999957, 49.293474491000069 ], [ -123.023086030999949, 49.293495318000019 ], [ -123.023085098999971, 49.293400613000102 ], [ -123.023082975999927, 49.29330677300004 ], [ -123.023081605999934, 49.293290551000041 ], [ -123.023061489999961, 49.293057487000034 ], [ -123.023076911999937, 49.292994078000035 ], [ -123.023124765999967, 49.292788200000118 ], [ -123.02315142199997, 49.292653896000061 ], [ -123.023159677999971, 49.292314493000092 ], [ -123.023223621999932, 49.291966657 ], [ -123.023229262999962, 49.291637931000039 ], [ -123.023231109999955, 49.291531195000097 ], [ -123.023238705999944, 49.291089691000067 ], [ -123.023246100999984, 49.290695387000063 ], [ -123.023251388999938, 49.290184796000041 ], [ -123.02325258599997, 49.289738997000015 ], [ -123.023268188999964, 49.289281791000093 ], [ -123.02327362399997, 49.28880566100004 ], [ -123.023274653999977, 49.288714920000054 ], [ -123.023275285999915, 49.288660924000077 ], [ -123.023278610999967, 49.288369705000093 ], [ -123.023281293999943, 49.287906106000058 ], [ -123.023283592999974, 49.287500584000078 ], [ -123.023288212999915, 49.287051556000037 ], [ -123.023292795999936, 49.286607291000053 ], [ -123.023293101999954, 49.286598265000059 ], [ -123.023308848999946, 49.28615206100006 ], [ -123.023326189999949, 49.285659716000062 ], [ -123.023549983999956, 49.285663210000067 ], [ -123.025705693999896, 49.285677488000026 ], [ -123.026374001999955, 49.285675381000033 ], [ -123.027597803999939, 49.285671484000105 ], [ -123.028314985999927, 49.285669193000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116528000", "BldgCostT": "76640000", "sL_LossRatio": "0.717119218705618", "sL_AssetLoss": "1654690", "sL_BldgLoss": "1186610", "sL_StrLoss": "511520", "sL_NStrLoss": "675090", "sL_ContLoss": "468080", "geom_point": "0101000020E6100000EFC9F432A7C15EC0FE49635164A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025699618999937, 49.282943601000063 ], [ -123.028319991, 49.282953593000109 ], [ -123.028316857999954, 49.28341639700006 ], [ -123.028313786999917, 49.283865890000115 ], [ -123.028314546, 49.284306907000058 ], [ -123.028315298999956, 49.284763987000062 ], [ -123.028315131999975, 49.285224419000031 ], [ -123.028314985999927, 49.285669193000018 ], [ -123.027597803999939, 49.285671484000105 ], [ -123.026374001999955, 49.285675381000033 ], [ -123.025705693999896, 49.285677488000026 ], [ -123.023549983999956, 49.285663210000067 ], [ -123.023326189999949, 49.285659716000062 ], [ -123.023332679999925, 49.285216537000061 ], [ -123.023339612, 49.28474400100005 ], [ -123.02333967, 49.284734945000025 ], [ -123.023342606999947, 49.284308017000036 ], [ -123.023345640999963, 49.283865958000071 ], [ -123.023345701999972, 49.283856902000068 ], [ -123.023349211999914, 49.28339952200006 ], [ -123.023352543, 49.282965317000055 ], [ -123.023352621, 49.28295628300009 ], [ -123.023471305999962, 49.282956010000099 ], [ -123.023589110000017, 49.282955695000034 ], [ -123.025699618999937, 49.282943601000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262070121", "BldgCostT": "175196379", "sL_LossRatio": "0.761590272608033", "sL_AssetLoss": "2820900", "sL_BldgLoss": "2148370", "sL_StrLoss": "976180", "sL_NStrLoss": "1172190", "sL_ContLoss": "672530", "geom_point": "0101000020E6100000837289C0E4C15EC08B52E7F637A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030206980999964, 49.280214164000036 ], [ -123.030838768999942, 49.280215210000115 ], [ -123.030805248999954, 49.280695297000094 ], [ -123.030851962999989, 49.281141824 ], [ -123.030821287999956, 49.281625291000111 ], [ -123.030830011999953, 49.282069597000024 ], [ -123.03084950099999, 49.282508633000056 ], [ -123.030869403999986, 49.28295621000008 ], [ -123.030870619000027, 49.283415788000049 ], [ -123.030871914999977, 49.283882187000074 ], [ -123.030875516999984, 49.284297475000081 ], [ -123.030879796999926, 49.284789506000031 ], [ -123.030866139999915, 49.285231775000035 ], [ -123.030854185999956, 49.285619294000071 ], [ -123.030837663999975, 49.285642750000093 ], [ -123.030811804999971, 49.28567940300006 ], [ -123.028314985999927, 49.285669193000018 ], [ -123.028315131999975, 49.285224419000031 ], [ -123.028315298999956, 49.284763987000062 ], [ -123.028314546, 49.284306907000058 ], [ -123.028313786999917, 49.283865890000115 ], [ -123.028316857999954, 49.28341639700006 ], [ -123.028319991, 49.282953593000109 ], [ -123.02831969699993, 49.282525882000094 ], [ -123.028319383999943, 49.282061802000065 ], [ -123.028325122999917, 49.281599519000054 ], [ -123.028330881999963, 49.281132508000063 ], [ -123.028330808999954, 49.280211101000084 ], [ -123.029079550999981, 49.28021233200009 ], [ -123.030206980999964, 49.280214164000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290950853", "BldgCostT": "186012963", "sL_LossRatio": "0.69613429897479", "sL_AssetLoss": "3083270", "sL_BldgLoss": "2146370", "sL_StrLoss": "946750", "sL_NStrLoss": "1199620", "sL_ContLoss": "936900", "geom_point": "0101000020E6100000BAD870A2A7C15EC06708D0E70AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025733623999926, 49.280207100000069 ], [ -123.028330808999954, 49.280211101000084 ], [ -123.028330881999963, 49.281132508000063 ], [ -123.028325122999917, 49.281599519000054 ], [ -123.028319383999943, 49.282061802000065 ], [ -123.02831969699993, 49.282525882000094 ], [ -123.028319991, 49.282953593000109 ], [ -123.025699618999937, 49.282943601000063 ], [ -123.023589110000017, 49.282955695000034 ], [ -123.023471305999962, 49.282956010000099 ], [ -123.023352621, 49.28295628300009 ], [ -123.023367090999983, 49.282509072000082 ], [ -123.023381715999918, 49.282058281000097 ], [ -123.02338202199995, 49.282049197000049 ], [ -123.023392197999968, 49.281148702000067 ], [ -123.023392293999976, 49.281139692000089 ], [ -123.02339254099999, 49.280682959000046 ], [ -123.023392808999915, 49.280241666000059 ], [ -123.023392814999966, 49.280232601000115 ], [ -123.02352553499999, 49.280231246000113 ], [ -123.02362932099993, 49.280230192000047 ], [ -123.025733623999926, 49.280207100000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83567250", "BldgCostT": "55215000", "sL_LossRatio": "0.730569863860883", "sL_AssetLoss": "1228890", "sL_BldgLoss": "897790", "sL_StrLoss": "394190", "sL_NStrLoss": "503600", "sL_ContLoss": "331100", "geom_point": "0101000020E6100000329FFF60D8C15EC0D1242D6CB8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030191608999957, 49.277431799000105 ], [ -123.030769571999954, 49.277431792000129 ], [ -123.030874223999959, 49.277686798000076 ], [ -123.030875502999947, 49.277847999000116 ], [ -123.03087877399993, 49.278258992000062 ], [ -123.030863500999942, 49.279077284000053 ], [ -123.030851298999934, 49.279636965000108 ], [ -123.030838768999942, 49.280215210000115 ], [ -123.030206980999964, 49.280214164000036 ], [ -123.029079550999981, 49.28021233200009 ], [ -123.028330808999954, 49.280211101000084 ], [ -123.025733623999926, 49.280207100000069 ], [ -123.025727774999964, 49.279620923000074 ], [ -123.025722202999987, 49.279056509000092 ], [ -123.028315911, 49.279071200000061 ], [ -123.028329576999909, 49.278666634000096 ], [ -123.028343498999917, 49.278254896000128 ], [ -123.028347079999918, 49.277857143000119 ], [ -123.028350890999903, 49.277431797000055 ], [ -123.029105493999936, 49.277431811000056 ], [ -123.029517947999977, 49.277431793000098 ], [ -123.030191608999957, 49.277431799000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147310417", "BldgCostT": "101121667", "sL_LossRatio": "0.766012646931334", "sL_AssetLoss": "1568760", "sL_BldgLoss": "1201690", "sL_StrLoss": "548020", "sL_NStrLoss": "653670", "sL_ContLoss": "367070", "geom_point": "0101000020E6100000B18AAB88A2C15EC02D4CF808A9A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.027084576999968, 49.277428119000078 ], [ -123.028350890999903, 49.277431797000055 ], [ -123.028347079999918, 49.277857143000119 ], [ -123.028343498999917, 49.278254896000128 ], [ -123.028329576999909, 49.278666634000096 ], [ -123.028315911, 49.279071200000061 ], [ -123.025722202999987, 49.279056509000092 ], [ -123.025727774999964, 49.279620923000074 ], [ -123.025733623999926, 49.280207100000069 ], [ -123.02362932099993, 49.280230192000047 ], [ -123.02352553499999, 49.280231246000113 ], [ -123.023392814999966, 49.280232601000115 ], [ -123.023395334999989, 49.279801452000065 ], [ -123.023398102999963, 49.279336497000038 ], [ -123.023402416999971, 49.279054705000114 ], [ -123.023398405999956, 49.27847539100005 ], [ -123.023406603999945, 49.278240508000124 ], [ -123.023404437999943, 49.277731842000087 ], [ -123.023403689999938, 49.277557698000074 ], [ -123.02359094599997, 49.2774525640001 ], [ -123.023634678999954, 49.277428010000051 ], [ -123.023935939999959, 49.277427458000098 ], [ -123.025462072999943, 49.277424706000069 ], [ -123.025751307999954, 49.277424205000059 ], [ -123.027084576999968, 49.277428119000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "377988158", "BldgCostT": "255521237", "sL_LossRatio": "0.781194595259181", "sL_AssetLoss": "5612110", "sL_BldgLoss": "4384150", "sL_StrLoss": "1945650", "sL_NStrLoss": "2438500", "sL_ContLoss": "1227960", "geom_point": "0101000020E610000082DE7FB7C2C15EC0D8EB9AB955A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023417695999925, 49.274941273000074 ], [ -123.023417086999956, 49.274822401000073 ], [ -123.023650795999956, 49.274927889000075 ], [ -123.024223794999941, 49.274930398000087 ], [ -123.02609347299996, 49.274938492000096 ], [ -123.027096870999955, 49.274942637000031 ], [ -123.028400118999983, 49.274948002000095 ], [ -123.028400450999968, 49.274520143000117 ], [ -123.028400792999932, 49.274101317000017 ], [ -123.030054690999975, 49.274109915000111 ], [ -123.030338967999953, 49.274099028000137 ], [ -123.03040650399997, 49.274196097000093 ], [ -123.03104128799994, 49.275227786000052 ], [ -123.031182584999925, 49.275702796000068 ], [ -123.031299787999927, 49.276148296 ], [ -123.031399096999962, 49.277430110000083 ], [ -123.031279604999952, 49.277429601000058 ], [ -123.030769571999954, 49.277431792000129 ], [ -123.030191608999957, 49.277431799000105 ], [ -123.029517947999977, 49.277431793000098 ], [ -123.029105493999936, 49.277431811000056 ], [ -123.028350890999903, 49.277431797000055 ], [ -123.027084576999968, 49.277428119000078 ], [ -123.025751307999954, 49.277424205000059 ], [ -123.025462072999943, 49.277424706000069 ], [ -123.023935939999959, 49.277427458000098 ], [ -123.023634678999954, 49.277428010000051 ], [ -123.02359094599997, 49.2774525640001 ], [ -123.023403689999938, 49.277557698000074 ], [ -123.023409612999913, 49.276652494000061 ], [ -123.02340839, 49.276393096000028 ], [ -123.023412371999981, 49.276202673000043 ], [ -123.023421695999943, 49.275756596000079 ], [ -123.023417695999925, 49.274941273000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76604702", "BldgCostT": "49665165", "sL_LossRatio": "0.699688547144171", "sL_AssetLoss": "1184770", "sL_BldgLoss": "828970", "sL_StrLoss": "380300", "sL_NStrLoss": "448670", "sL_ContLoss": "355800", "geom_point": "0101000020E6100000A4B47A5E5CC15EC0AC9A9CB19AA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022725972, 49.276649251000087 ], [ -123.023409612999913, 49.276652494000061 ], [ -123.023403689999938, 49.277557698000074 ], [ -123.023404437999943, 49.277731842000087 ], [ -123.023406603999945, 49.278240508000124 ], [ -123.023398405999956, 49.27847539100005 ], [ -123.023402416999971, 49.279054705000114 ], [ -123.023398102999963, 49.279336497000038 ], [ -123.022740876999961, 49.279330904000119 ], [ -123.021035595999948, 49.279316397000059 ], [ -123.018652298999967, 49.279297399000086 ], [ -123.018644948999977, 49.278839809000068 ], [ -123.018638011999911, 49.278407986000026 ], [ -123.018642786999948, 49.277967299000096 ], [ -123.018647797999947, 49.277507500000048 ], [ -123.021037107999973, 49.277537392000099 ], [ -123.021038385999987, 49.277094363000096 ], [ -123.021039698999928, 49.276641209000068 ], [ -123.022725972, 49.276649251000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89011166", "BldgCostT": "56351666", "sL_LossRatio": "0.691496048474284", "sL_AssetLoss": "1193210", "sL_BldgLoss": "825100", "sL_StrLoss": "334600", "sL_NStrLoss": "490500", "sL_ContLoss": "368110", "geom_point": "0101000020E610000095838F773DC15EC0DF4F53EC64A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022780332999929, 49.275747879000093 ], [ -123.023421695999943, 49.275756596000079 ], [ -123.023412371999981, 49.276202673000043 ], [ -123.02340839, 49.276393096000028 ], [ -123.023409612999913, 49.276652494000061 ], [ -123.022725972, 49.276649251000087 ], [ -123.021039698999928, 49.276641209000068 ], [ -123.021038385999987, 49.277094363000096 ], [ -123.021037107999973, 49.277537392000099 ], [ -123.018647797999947, 49.277507500000048 ], [ -123.016292693999929, 49.277481096000066 ], [ -123.016294011999932, 49.277050134000092 ], [ -123.016295403999919, 49.276584003000018 ], [ -123.016290425999955, 49.276114644000138 ], [ -123.016285687999954, 49.275666795000035 ], [ -123.018650889999918, 49.275686201000042 ], [ -123.021037317999927, 49.275717004000072 ], [ -123.02193609899993, 49.275736397000038 ], [ -123.022780332999929, 49.275747879000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227512999", "BldgCostT": "153244999", "sL_LossRatio": "0.773241216428741", "sL_AssetLoss": "1812190", "sL_BldgLoss": "1401260", "sL_StrLoss": "628930", "sL_NStrLoss": "772330", "sL_ContLoss": "410930", "geom_point": "0101000020E610000073840CE419C15EC004CFADA5BAA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.014212481999934, 49.279266601000081 ], [ -123.01422954, 49.278804684000079 ], [ -123.014245685999924, 49.278366694000042 ], [ -123.016296503999968, 49.278382914000112 ], [ -123.01629464399997, 49.277940615000055 ], [ -123.016292693999929, 49.277481096000066 ], [ -123.018647797999947, 49.277507500000048 ], [ -123.018642786999948, 49.277967299000096 ], [ -123.018638011999911, 49.278407986000026 ], [ -123.018644948999977, 49.278839809000068 ], [ -123.018652298999967, 49.279297399000086 ], [ -123.021035595999948, 49.279316397000059 ], [ -123.02099119799999, 49.280220381000127 ], [ -123.01863989, 49.280196094000097 ], [ -123.01628032399995, 49.2801713960001 ], [ -123.014195713999925, 49.280166899000037 ], [ -123.014203686999977, 49.279739974000073 ], [ -123.014212481999934, 49.279266601000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83985833", "BldgCostT": "56183333", "sL_LossRatio": "0.74209853685711", "sL_AssetLoss": "1220660", "sL_BldgLoss": "905850", "sL_StrLoss": "417640", "sL_NStrLoss": "488210", "sL_ContLoss": "314810", "geom_point": "0101000020E6100000A1BBD2CFE7C05EC0312F4D326EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.014249209999932, 49.27792304900003 ], [ -123.014252806999977, 49.277467084000087 ], [ -123.011495281999956, 49.277434892000095 ], [ -123.011508970999927, 49.276988328000108 ], [ -123.011522707, 49.276540291000103 ], [ -123.011526453999963, 49.276079447000043 ], [ -123.011530089999923, 49.275637003000078 ], [ -123.014268580999982, 49.275663199000093 ], [ -123.016285687999954, 49.275666795000035 ], [ -123.016290425999955, 49.276114644000138 ], [ -123.016295403999919, 49.276584003000018 ], [ -123.016294011999932, 49.277050134000092 ], [ -123.016292693999929, 49.277481096000066 ], [ -123.01629464399997, 49.277940615000055 ], [ -123.016296503999968, 49.278382914000112 ], [ -123.014245685999924, 49.278366694000042 ], [ -123.014249209999932, 49.27792304900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144285105", "BldgCostT": "86682491", "sL_LossRatio": "0.653854302084838", "sL_AssetLoss": "2076900", "sL_BldgLoss": "1357990", "sL_StrLoss": "601130", "sL_NStrLoss": "756860", "sL_ContLoss": "718910", "geom_point": "0101000020E610000082B46376D8C05EC081A57864C5A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011442095999911, 49.28013660400007 ], [ -123.011452008999981, 49.279713559000086 ], [ -123.01146321499999, 49.279233703000038 ], [ -123.011467169999946, 49.278786887000088 ], [ -123.011471104999927, 49.278343109000048 ], [ -123.011483225999925, 49.277887619000062 ], [ -123.011495281999956, 49.277434892000095 ], [ -123.014252806999977, 49.277467084000087 ], [ -123.014249209999932, 49.27792304900003 ], [ -123.014245685999924, 49.278366694000042 ], [ -123.01422954, 49.278804684000079 ], [ -123.014212481999934, 49.279266601000081 ], [ -123.014203686999977, 49.279739974000073 ], [ -123.014195713999925, 49.280166899000037 ], [ -123.01628032399995, 49.2801713960001 ], [ -123.016279337999933, 49.280621248000088 ], [ -123.016278395999976, 49.281055901000158 ], [ -123.014159587, 49.281047810000089 ], [ -123.011408394999961, 49.281043691000029 ], [ -123.011426072999939, 49.280568278000032 ], [ -123.011442095999911, 49.28013660400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82205334", "BldgCostT": "55748334", "sL_LossRatio": "0.726790762661513", "sL_AssetLoss": "1531610", "sL_BldgLoss": "1113160", "sL_StrLoss": "487060", "sL_NStrLoss": "626100", "sL_ContLoss": "418450", "geom_point": "0101000020E6100000C0C0DE8AA5C05EC06377819282A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.008726681999988, 49.275614306000151 ], [ -123.011530089999923, 49.275637003000078 ], [ -123.011526453999963, 49.276079447000043 ], [ -123.011522707, 49.276540291000103 ], [ -123.011508970999927, 49.276988328000108 ], [ -123.011495281999956, 49.277434892000095 ], [ -123.011483225999925, 49.277887619000062 ], [ -123.011471104999927, 49.278343109000048 ], [ -123.011467169999946, 49.278786887000088 ], [ -123.01146321499999, 49.279233703000038 ], [ -123.008683882999961, 49.27921799900011 ], [ -123.008689923999952, 49.278787107000042 ], [ -123.008696423999936, 49.278322106000054 ], [ -123.00870937300003, 49.277860597000029 ], [ -123.008721979000015, 49.277412993000048 ], [ -123.008723359999962, 49.276951992000065 ], [ -123.008724606999962, 49.276521289000058 ], [ -123.00872564899997, 49.276061458000136 ], [ -123.008726681999988, 49.275614306000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170539781", "BldgCostT": "106873585", "sL_LossRatio": "0.669985359867094", "sL_AssetLoss": "2534130", "sL_BldgLoss": "1697830", "sL_StrLoss": "756560", "sL_NStrLoss": "941270", "sL_ContLoss": "836300", "geom_point": "0101000020E6100000483328C386C05EC04114696EC7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.005933425999942, 49.279204799000048 ], [ -123.005941778999969, 49.278769439000044 ], [ -123.005950908999935, 49.278295489000037 ], [ -123.005958668999938, 49.277842939000102 ], [ -123.005966394999987, 49.277395212000059 ], [ -123.008721979000015, 49.277412993000048 ], [ -123.00870937300003, 49.277860597000029 ], [ -123.008696423999936, 49.278322106000054 ], [ -123.008689923999952, 49.278787107000042 ], [ -123.008683882999961, 49.27921799900011 ], [ -123.01146321499999, 49.279233703000038 ], [ -123.011452008999981, 49.279713559000086 ], [ -123.011442095999911, 49.28013660400007 ], [ -123.011426072999939, 49.280568278000032 ], [ -123.011408394999961, 49.281043691000029 ], [ -123.008669996999942, 49.281031800000079 ], [ -123.005889899999914, 49.281027695000027 ], [ -123.005899640999985, 49.28055049700005 ], [ -123.005908887999936, 49.280095008000117 ], [ -123.005921108999928, 49.27965115900011 ], [ -123.005933425999942, 49.279204799000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87623000", "BldgCostT": "58805000", "sL_LossRatio": "0.733962785920278", "sL_AssetLoss": "1265650", "sL_BldgLoss": "928940", "sL_StrLoss": "401510", "sL_NStrLoss": "527430", "sL_ContLoss": "336710", "geom_point": "0101000020E6100000AF612B0D61C05EC020834F5264A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.006004098999966, 49.275598291000044 ], [ -123.008726681999988, 49.275614306000151 ], [ -123.00872564899997, 49.276061458000136 ], [ -123.008724606999962, 49.276521289000058 ], [ -123.008723359999962, 49.276951992000065 ], [ -123.008721979000015, 49.277412993000048 ], [ -123.005966394999987, 49.277395212000059 ], [ -123.00322994299999, 49.27737776600005 ], [ -123.003078535999961, 49.277381675000079 ], [ -123.003104461999939, 49.276925253000137 ], [ -123.003128189000023, 49.276508414000048 ], [ -123.003128695999976, 49.276499408000056 ], [ -123.003124695999986, 49.276016791000139 ], [ -123.003121286999985, 49.275602942000042 ], [ -123.003121208999985, 49.275593878000016 ], [ -123.00321687899995, 49.275594213000026 ], [ -123.003269619999955, 49.27559439100002 ], [ -123.006004098999966, 49.275598291000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203951705", "BldgCostT": "140559713", "sL_LossRatio": "0.805595760714841", "sL_AssetLoss": "1671980", "sL_BldgLoss": "1346940", "sL_StrLoss": "612700", "sL_NStrLoss": "734240", "sL_ContLoss": "325040", "geom_point": "0101000020E6100000456B2D484AC05EC021428E73BCA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00322994299999, 49.27737776600005 ], [ -123.005966394999987, 49.277395212000059 ], [ -123.005958668999938, 49.277842939000102 ], [ -123.005950908999935, 49.278295489000037 ], [ -123.005941778999969, 49.278769439000044 ], [ -123.005933425999942, 49.279204799000048 ], [ -123.005921108999928, 49.27965115900011 ], [ -123.005908887999936, 49.280095008000117 ], [ -123.005899640999985, 49.28055049700005 ], [ -123.005889899999914, 49.281027695000027 ], [ -123.003121295999961, 49.281015688000153 ], [ -123.003157217999942, 49.280098801000108 ], [ -123.003167146999957, 49.27964203600002 ], [ -123.003176812999953, 49.279199496000075 ], [ -123.003159430999943, 49.27873336900003 ], [ -123.003142113999942, 49.278268911000083 ], [ -123.003141170999982, 49.278177013000096 ], [ -123.003074419999905, 49.278083282000111 ], [ -123.003075877999933, 49.277833803000064 ], [ -123.003078535999961, 49.277381675000079 ], [ -123.00322994299999, 49.27737776600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113540750", "BldgCostT": "74465000", "sL_LossRatio": "0.733642059739211", "sL_AssetLoss": "1535340", "sL_BldgLoss": "1126390", "sL_StrLoss": "494430", "sL_NStrLoss": "631960", "sL_ContLoss": "408950", "geom_point": "0101000020E61000001C7400CC0EC05EC055D3376129A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00031661299991, 49.275998913000073 ], [ -123.000319393999931, 49.275569220000122 ], [ -123.00000005699998, 49.275567991000123 ], [ -122.997539262999936, 49.275558753000034 ], [ -122.994775702999945, 49.275548315000044 ], [ -122.997551207999919, 49.275088697000044 ], [ -122.997569292999913, 49.274639697000104 ], [ -122.997313481999953, 49.274365995000139 ], [ -122.997741147999974, 49.274195235000072 ], [ -122.998808815999979, 49.273768888000085 ], [ -122.999179821000013, 49.27359910100008 ], [ -122.999841185999969, 49.273188705000081 ], [ -122.999998313999981, 49.273074407000117 ], [ -123.00033150899999, 49.27283209600013 ], [ -123.000593688999956, 49.272560104000107 ], [ -123.000832900999939, 49.272219104000072 ], [ -123.00093821199998, 49.271949984000123 ], [ -123.001635812999936, 49.27195448800007 ], [ -123.002291186999983, 49.271958699000017 ], [ -123.003130104999968, 49.271947787000059 ], [ -123.003115701999974, 49.272830195000083 ], [ -123.003105757999961, 49.273309245000071 ], [ -123.003096904999921, 49.273736689000039 ], [ -123.003106821999936, 49.274217764000049 ], [ -123.003116199999965, 49.274672305000067 ], [ -123.003116241999976, 49.274681325000095 ], [ -123.003118663999913, 49.275126287000063 ], [ -123.003121208999985, 49.275593878000016 ], [ -123.003121286999985, 49.275602942000042 ], [ -123.003124695999986, 49.276016791000139 ], [ -123.003128695999976, 49.276499408000056 ], [ -123.003128189000023, 49.276508414000048 ], [ -123.003104461999939, 49.276925253000137 ], [ -123.003078535999961, 49.277381675000079 ], [ -123.000305808999897, 49.277373091000079 ], [ -123.000309744999981, 49.276916479000135 ], [ -123.000313614999968, 49.276466299000077 ], [ -123.00031661299991, 49.275998913000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102317417", "BldgCostT": "66991667", "sL_LossRatio": "0.72599901252155", "sL_AssetLoss": "1235470", "sL_BldgLoss": "896950", "sL_StrLoss": "411920", "sL_NStrLoss": "485030", "sL_ContLoss": "338520", "geom_point": "0101000020E610000091E1BA5A55C05EC065DCB3320AA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.003096904999921, 49.273736689000039 ], [ -123.003105757999961, 49.273309245000071 ], [ -123.003115701999974, 49.272830195000083 ], [ -123.003130104999968, 49.271947787000059 ], [ -123.003123318999911, 49.271483196000126 ], [ -123.003116882999976, 49.271046603000045 ], [ -123.003098340999912, 49.270601761000037 ], [ -123.003080588999978, 49.270176371000055 ], [ -123.00308023099997, 49.270167346000029 ], [ -123.003174137999906, 49.270168816000066 ], [ -123.003235363999977, 49.270169850000073 ], [ -123.003918408999951, 49.270163113000045 ], [ -123.004623985999928, 49.270156206000095 ], [ -123.004606120999952, 49.271966202000115 ], [ -123.00459087899999, 49.273336102000037 ], [ -123.004586090999965, 49.27376551300015 ], [ -123.006006713999966, 49.273790508000054 ], [ -123.008083607999978, 49.273807317000056 ], [ -123.008760480999982, 49.273812801000062 ], [ -123.008753948999953, 49.274262332000063 ], [ -123.008753775999963, 49.274275680000059 ], [ -123.008747281999945, 49.274720392000106 ], [ -123.00873629299997, 49.275197590000083 ], [ -123.008726681999988, 49.275614306000151 ], [ -123.006004098999966, 49.275598291000044 ], [ -123.003269619999955, 49.27559439100002 ], [ -123.00321687899995, 49.275594213000026 ], [ -123.003121208999985, 49.275593878000016 ], [ -123.003118663999913, 49.275126287000063 ], [ -123.003116241999976, 49.274681325000095 ], [ -123.003116199999965, 49.274672305000067 ], [ -123.003106821999936, 49.274217764000049 ], [ -123.003096904999921, 49.273736689000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84932917", "BldgCostT": "54471667", "sL_LossRatio": "0.712195446567457", "sL_AssetLoss": "1202170", "sL_BldgLoss": "856180", "sL_StrLoss": "380780", "sL_NStrLoss": "475400", "sL_ContLoss": "345990", "geom_point": "0101000020E61000009EE5A2EF68C05EC0AB117661D6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004606120999952, 49.271966202000115 ], [ -123.004623985999928, 49.270156206000095 ], [ -123.005333061999977, 49.270164365000063 ], [ -123.006014891999939, 49.270172199000122 ], [ -123.00669449899999, 49.270179870000092 ], [ -123.007379805999932, 49.270187589000102 ], [ -123.007369985999901, 49.272000592000055 ], [ -123.008056103999976, 49.272004945000035 ], [ -123.008759983999965, 49.272009394000108 ], [ -123.008758310999966, 49.272909201000033 ], [ -123.008760480999982, 49.273812801000062 ], [ -123.008083607999978, 49.273807317000056 ], [ -123.006006713999966, 49.273790508000054 ], [ -123.004586090999965, 49.27376551300015 ], [ -123.00459087899999, 49.273336102000037 ], [ -123.004606120999952, 49.271966202000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117454199", "BldgCostT": "75172212", "sL_LossRatio": "0.675355239786856", "sL_AssetLoss": "2477200", "sL_BldgLoss": "1672990", "sL_StrLoss": "714710", "sL_NStrLoss": "958280", "sL_ContLoss": "804210", "geom_point": "0101000020E61000001DB2EC0FB5C05EC0FD3283BE15A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.008760480999982, 49.273812801000062 ], [ -123.008758310999966, 49.272909201000033 ], [ -123.008759983999965, 49.272009394000108 ], [ -123.009389945999899, 49.272015601000085 ], [ -123.012083279999956, 49.272041989000137 ], [ -123.011887291999969, 49.27237773700007 ], [ -123.011829909999932, 49.272476081 ], [ -123.011558108999935, 49.272941688000088 ], [ -123.011523504999943, 49.273116393000109 ], [ -123.011513616999963, 49.273389576000035 ], [ -123.011497197999986, 49.273843497000044 ], [ -123.013542539999932, 49.273871369000091 ], [ -123.014249982999957, 49.273880988000023 ], [ -123.01424658799999, 49.274324785000083 ], [ -123.014243110000038, 49.274777993000036 ], [ -123.014255962999968, 49.275224402000056 ], [ -123.014268580999982, 49.275663199000093 ], [ -123.011530089999923, 49.275637003000078 ], [ -123.008726681999988, 49.275614306000151 ], [ -123.00873629299997, 49.275197590000083 ], [ -123.008747281999945, 49.274720392000106 ], [ -123.008753775999963, 49.274275680000059 ], [ -123.008753948999953, 49.274262332000063 ], [ -123.008760480999982, 49.273812801000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "609090487", "BldgCostT": "390507074", "sL_LossRatio": "0.705054518717832", "sL_AssetLoss": "6392300", "sL_BldgLoss": "4506920", "sL_StrLoss": "1743600", "sL_NStrLoss": "2763320", "sL_ContLoss": "1885380", "geom_point": "0101000020E61000000284EF6038C15EC0463083CEF7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.018706215999941, 49.270293888000033 ], [ -123.023467580999963, 49.270288407000066 ], [ -123.023457191999952, 49.271199697000078 ], [ -123.023435508999938, 49.272116095000094 ], [ -123.023431592999984, 49.27299149800011 ], [ -123.023428601999939, 49.273186905000067 ], [ -123.023423705999988, 49.273905596000134 ], [ -123.02342398699993, 49.274116388000024 ], [ -123.023417086999956, 49.274822401000073 ], [ -123.023417695999925, 49.274941273000074 ], [ -123.023421695999943, 49.275756596000079 ], [ -123.022780332999929, 49.275747879000093 ], [ -123.02193609899993, 49.275736397000038 ], [ -123.021037317999927, 49.275717004000072 ], [ -123.018650889999918, 49.275686201000042 ], [ -123.016285687999954, 49.275666795000035 ], [ -123.014268580999982, 49.275663199000093 ], [ -123.014255962999968, 49.275224402000056 ], [ -123.014243110000038, 49.274777993000036 ], [ -123.01424658799999, 49.274324785000083 ], [ -123.014249982999957, 49.273880988000023 ], [ -123.014259876999944, 49.272991965000088 ], [ -123.01427010499998, 49.272074591000049 ], [ -123.014276403999972, 49.271165903000032 ], [ -123.015362892999917, 49.271172513000089 ], [ -123.016343618999912, 49.271178903000084 ], [ -123.018696591999941, 49.271191703000113 ], [ -123.018706215999941, 49.270293888000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258736770", "BldgCostT": "168160150", "sL_LossRatio": "0.690769982531877", "sL_AssetLoss": "5198040", "sL_BldgLoss": "3590650", "sL_StrLoss": "1472110", "sL_NStrLoss": "2118540", "sL_ContLoss": "1607390", "geom_point": "0101000020E6100000285F238BACC15EC0F81D788CDDA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.027088686999903, 49.26953151500004 ], [ -123.027487214999937, 49.269530799000052 ], [ -123.027581667999968, 49.269718466000057 ], [ -123.02797227799999, 49.270494490000047 ], [ -123.028637116999946, 49.271668028000043 ], [ -123.028647748999973, 49.271686760000101 ], [ -123.028740156999973, 49.271849876000068 ], [ -123.028742614999913, 49.271854206000093 ], [ -123.029413715999908, 49.272769002000068 ], [ -123.029950019999902, 49.273539969000119 ], [ -123.029955747999935, 49.273548200000057 ], [ -123.030229607999942, 49.27394185200005 ], [ -123.030236232, 49.273951344000096 ], [ -123.030291060999971, 49.274030142000058 ], [ -123.030338967999953, 49.274099028000137 ], [ -123.030054690999975, 49.274109915000111 ], [ -123.028400792999932, 49.274101317000017 ], [ -123.028400450999968, 49.274520143000117 ], [ -123.028400118999983, 49.274948002000095 ], [ -123.027096870999955, 49.274942637000031 ], [ -123.02609347299996, 49.274938492000096 ], [ -123.024223794999941, 49.274930398000087 ], [ -123.023650795999956, 49.274927889000075 ], [ -123.023417086999956, 49.274822401000073 ], [ -123.02342398699993, 49.274116388000024 ], [ -123.023423705999988, 49.273905596000134 ], [ -123.023428601999939, 49.273186905000067 ], [ -123.023431592999984, 49.27299149800011 ], [ -123.023435508999938, 49.272116095000094 ], [ -123.023457191999952, 49.271199697000078 ], [ -123.023467580999963, 49.270288407000066 ], [ -123.023461396999949, 49.269528797000085 ], [ -123.02367170699992, 49.269528309000037 ], [ -123.026731503999883, 49.269530712000019 ], [ -123.027088686999903, 49.26953151500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262759250", "BldgCostT": "169040000", "sL_LossRatio": "0.714283667522946", "sL_AssetLoss": "3769018", "sL_BldgLoss": "2692148", "sL_StrLoss": "1183528", "sL_NStrLoss": "1508620", "sL_ContLoss": "1076870", "geom_point": "0101000020E61000005D2E97640FC25EC09D153876DCA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034406964999931, 49.269536606000074 ], [ -123.03643579099996, 49.269537309000093 ], [ -123.036432038999976, 49.269966384000064 ], [ -123.036428364999949, 49.270384733000085 ], [ -123.036426905999974, 49.270667942000038 ], [ -123.036423409999912, 49.271344797000083 ], [ -123.036413051999958, 49.2718284420001 ], [ -123.036403393999976, 49.27228109100011 ], [ -123.034422569999919, 49.27227845100002 ], [ -123.03364579, 49.272277389000052 ], [ -123.033645499000016, 49.272305939000077 ], [ -123.033635088999944, 49.273239996000036 ], [ -123.033630137999978, 49.273736056000082 ], [ -123.033626177999935, 49.274130601000131 ], [ -123.03362071699999, 49.27455461400006 ], [ -123.033615386999941, 49.274965291000044 ], [ -123.033612157999968, 49.27538231700008 ], [ -123.033608890999972, 49.275797492000073 ], [ -123.0336053, 49.276209925000025 ], [ -123.033601690999959, 49.276619712000127 ], [ -123.033606041999931, 49.277019317000097 ], [ -123.033610688999957, 49.277445899000035 ], [ -123.032804014999954, 49.277440247000143 ], [ -123.031808392999949, 49.277433311000088 ], [ -123.031683492999917, 49.277431688000071 ], [ -123.031544188999987, 49.277430924000086 ], [ -123.031399096999962, 49.277430110000083 ], [ -123.031299787999927, 49.276148296 ], [ -123.031182584999925, 49.275702796000068 ], [ -123.03104128799994, 49.275227786000052 ], [ -123.03040650399997, 49.274196097000093 ], [ -123.030338967999953, 49.274099028000137 ], [ -123.030291060999971, 49.274030142000058 ], [ -123.030236232, 49.273951344000096 ], [ -123.030229607999942, 49.27394185200005 ], [ -123.029955747999935, 49.273548200000057 ], [ -123.029950019999902, 49.273539969000119 ], [ -123.029413715999908, 49.272769002000068 ], [ -123.028742614999913, 49.271854206000093 ], [ -123.028740156999973, 49.271849876000068 ], [ -123.028647748999973, 49.271686760000101 ], [ -123.028637116999946, 49.271668028000043 ], [ -123.02797227799999, 49.270494490000047 ], [ -123.027581667999968, 49.269718466000057 ], [ -123.027487214999937, 49.269530799000052 ], [ -123.027812859000022, 49.269530770000138 ], [ -123.030903556999945, 49.269532868000056 ], [ -123.031302722999939, 49.269533138000078 ], [ -123.03245812899999, 49.269535193000095 ], [ -123.03358341699996, 49.269536408000072 ], [ -123.033811502999981, 49.269536398000113 ], [ -123.034406964999931, 49.269536606000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86852916", "BldgCostT": "58011666", "sL_LossRatio": "0.715675266169726", "sL_AssetLoss": "1478380", "sL_BldgLoss": "1058040", "sL_StrLoss": "454650", "sL_NStrLoss": "603390", "sL_ContLoss": "420340", "geom_point": "0101000020E6100000AAAC3B5046C25EC08383BD8921A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036380311999963, 49.273244281000061 ], [ -123.037634710999953, 49.273247203000039 ], [ -123.03762577399999, 49.273725694000049 ], [ -123.037594909999939, 49.275376393000109 ], [ -123.036954301999955, 49.275379399000023 ], [ -123.036332996999988, 49.275382309000072 ], [ -123.036317415999989, 49.275798905000059 ], [ -123.033608890999972, 49.275797492000073 ], [ -123.033612157999968, 49.27538231700008 ], [ -123.033615386999941, 49.274965291000044 ], [ -123.03362071699999, 49.27455461400006 ], [ -123.033626177999935, 49.274130601000131 ], [ -123.033630137999978, 49.273736056000082 ], [ -123.033635088999944, 49.273239996000036 ], [ -123.036380311999963, 49.273244281000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201205038", "BldgCostT": "134288046", "sL_LossRatio": "0.747551829784035", "sL_AssetLoss": "2128120", "sL_BldgLoss": "1590880", "sL_StrLoss": "704500", "sL_NStrLoss": "886380", "sL_ContLoss": "537240", "geom_point": "0101000020E6100000E25C797F72C25EC0ADF235B2C8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036428364999949, 49.270384733000085 ], [ -123.036432038999976, 49.269966384000064 ], [ -123.03643579099996, 49.269537309000093 ], [ -123.038940720999932, 49.269557405000079 ], [ -123.038937908999912, 49.269992514000108 ], [ -123.038935289999969, 49.270395901000072 ], [ -123.041439484999927, 49.270406005000019 ], [ -123.0414241349999, 49.270890449000056 ], [ -123.041409490999939, 49.271351008000103 ], [ -123.041422179999984, 49.271827063000082 ], [ -123.041434192999958, 49.272277705000135 ], [ -123.041431981999963, 49.27275313500013 ], [ -123.041429587999943, 49.273254892000068 ], [ -123.040161404999935, 49.273252489000143 ], [ -123.038912517999918, 49.273249804000045 ], [ -123.037634710999953, 49.273247203000039 ], [ -123.036380311999963, 49.273244281000061 ], [ -123.033635088999944, 49.273239996000036 ], [ -123.033645499000016, 49.272305939000077 ], [ -123.03364579, 49.272277389000052 ], [ -123.034422569999919, 49.27227845100002 ], [ -123.036403393999976, 49.27228109100011 ], [ -123.036413051999958, 49.2718284420001 ], [ -123.036423409999912, 49.271344797000083 ], [ -123.036426905999974, 49.270667942000038 ], [ -123.036428364999949, 49.270384733000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191745333", "BldgCostT": "130053333", "sL_LossRatio": "0.79584323890245", "sL_AssetLoss": "1257710", "sL_BldgLoss": "1000940", "sL_StrLoss": "505320", "sL_NStrLoss": "495620", "sL_ContLoss": "256770", "geom_point": "0101000020E6100000C5E8A9A39DC25EC03FB4A8B21CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.042744518999982, 49.273256698000061 ], [ -123.044160997999967, 49.27325949500009 ], [ -123.044144287, 49.273723443000108 ], [ -123.044126992999921, 49.274203394000061 ], [ -123.044128017999967, 49.275372607000108 ], [ -123.043388331999935, 49.275372818000115 ], [ -123.042726401999943, 49.2753729880001 ], [ -123.042054786, 49.275372366000084 ], [ -123.04136598799991, 49.275371705000026 ], [ -123.040776221000016, 49.27537185400007 ], [ -123.040126405999956, 49.275372004000069 ], [ -123.039525176999945, 49.275371745000037 ], [ -123.038893791999925, 49.275371487000051 ], [ -123.03824658299996, 49.275373950000109 ], [ -123.037594909999939, 49.275376393000109 ], [ -123.03762577399999, 49.273725694000049 ], [ -123.037634710999953, 49.273247203000039 ], [ -123.038912517999918, 49.273249804000045 ], [ -123.040161404999935, 49.273252489000143 ], [ -123.041429587999943, 49.273254892000068 ], [ -123.042744518999982, 49.273256698000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110268166", "BldgCostT": "72001666", "sL_LossRatio": "0.68645686175361", "sL_AssetLoss": "2301948", "sL_BldgLoss": "1580188", "sL_StrLoss": "660898", "sL_NStrLoss": "919290", "sL_ContLoss": "721760", "geom_point": "0101000020E6100000EA99980DB6C25EC0CFD71B6BB5A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0414241349999, 49.270890449000056 ], [ -123.041439484999927, 49.270406005000019 ], [ -123.038935289999969, 49.270395901000072 ], [ -123.038937908999912, 49.269992514000108 ], [ -123.038940720999932, 49.269557405000079 ], [ -123.041466097999916, 49.269558200000056 ], [ -123.044217191999948, 49.269575987000074 ], [ -123.04421084399992, 49.269972824000014 ], [ -123.044203817999971, 49.27041149500004 ], [ -123.044210074999938, 49.270889893000096 ], [ -123.044212777999959, 49.271096695000089 ], [ -123.044216198999933, 49.271359388000057 ], [ -123.044166705999928, 49.272286798000067 ], [ -123.044160997999967, 49.27325949500009 ], [ -123.042744518999982, 49.273256698000061 ], [ -123.041429587999943, 49.273254892000068 ], [ -123.041431981999963, 49.27275313500013 ], [ -123.041434192999958, 49.272277705000135 ], [ -123.041422179999984, 49.271827063000082 ], [ -123.041409490999939, 49.271351008000103 ], [ -123.0414241349999, 49.270890449000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98503583", "BldgCostT": "64988333", "sL_LossRatio": "0.70154349859682", "sL_AssetLoss": "2138000", "sL_BldgLoss": "1499900", "sL_StrLoss": "642300", "sL_NStrLoss": "857600", "sL_ContLoss": "638100", "geom_point": "0101000020E6100000FC471950F3C25EC07923A93B05A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046883978999972, 49.272296298000064 ], [ -123.049405490999931, 49.272296809000061 ], [ -123.049402175999973, 49.272767933000097 ], [ -123.04939860099995, 49.273269379000062 ], [ -123.04686091899994, 49.27326490400003 ], [ -123.046864064999951, 49.273722628000101 ], [ -123.046867203999952, 49.274179306000043 ], [ -123.046864600999953, 49.274550015000038 ], [ -123.046861816999979, 49.274954806000117 ], [ -123.04685299799992, 49.275373394000013 ], [ -123.046206642999962, 49.2753734550001 ], [ -123.045540678999927, 49.275373507000033 ], [ -123.044859378999945, 49.275373050000063 ], [ -123.044128017999967, 49.275372607000108 ], [ -123.044126992999921, 49.274203394000061 ], [ -123.044144287, 49.273723443000108 ], [ -123.044160997999967, 49.27325949500009 ], [ -123.044166705999928, 49.272286798000067 ], [ -123.044884152999927, 49.272289312000098 ], [ -123.046883978999972, 49.272296298000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173920386", "BldgCostT": "116322079", "sL_LossRatio": "0.706919978069653", "sL_AssetLoss": "3356080", "sL_BldgLoss": "2372480", "sL_StrLoss": "1008480", "sL_NStrLoss": "1364000", "sL_ContLoss": "983600", "geom_point": "0101000020E61000008D9766A1FAC25EC09FE83E29A8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046936210999988, 49.269577410000132 ], [ -123.049441187999946, 49.269575707000065 ], [ -123.04943494799997, 49.269988294000022 ], [ -123.049428295999931, 49.270426592000021 ], [ -123.049420491, 49.270896686000107 ], [ -123.049412805999907, 49.271360210000047 ], [ -123.046905409999937, 49.271357385000051 ], [ -123.046894538999965, 49.271833586000128 ], [ -123.046883978999972, 49.272296298000064 ], [ -123.044884152999927, 49.272289312000098 ], [ -123.044166705999928, 49.272286798000067 ], [ -123.044216198999933, 49.271359388000057 ], [ -123.044212777999959, 49.271096695000089 ], [ -123.044210074999938, 49.270889893000096 ], [ -123.044203817999971, 49.27041149500004 ], [ -123.04421084399992, 49.269972824000014 ], [ -123.044217191999948, 49.269575987000074 ], [ -123.044922867999944, 49.269576357000076 ], [ -123.046936210999988, 49.269577410000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109958167", "BldgCostT": "72996667", "sL_LossRatio": "0.722966272543998", "sL_AssetLoss": "1835300", "sL_BldgLoss": "1326860", "sL_StrLoss": "572760", "sL_NStrLoss": "754100", "sL_ContLoss": "508440", "geom_point": "0101000020E61000009BEC0A4345C35EC0F6ED874CB7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049402175999973, 49.272767933000097 ], [ -123.049405490999931, 49.272296809000061 ], [ -123.046883978999972, 49.272296298000064 ], [ -123.046894538999965, 49.271833586000128 ], [ -123.046905409999937, 49.271357385000051 ], [ -123.049412805999907, 49.271360210000047 ], [ -123.049420491, 49.270896686000107 ], [ -123.049428295999931, 49.270426592000021 ], [ -123.04943494799997, 49.269988294000022 ], [ -123.049441187999946, 49.269575707000065 ], [ -123.052065891999973, 49.26957080600009 ], [ -123.054132115999906, 49.269602242000126 ], [ -123.054669838, 49.269610398000054 ], [ -123.054690890999908, 49.270426199000099 ], [ -123.054679317999927, 49.271365401000118 ], [ -123.0541073699999, 49.271364850000047 ], [ -123.052082485999975, 49.271362904000107 ], [ -123.052060633999972, 49.271839228000012 ], [ -123.052039700999927, 49.272294887000065 ], [ -123.052040155999947, 49.272775840000087 ], [ -123.052040615999942, 49.273274984000103 ], [ -123.04939860099995, 49.273269379000062 ], [ -123.049402175999973, 49.272767933000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120355166", "BldgCostT": "74726666", "sL_LossRatio": "0.695293907340216", "sL_AssetLoss": "1750943", "sL_BldgLoss": "1217420", "sL_StrLoss": "534340", "sL_NStrLoss": "683080", "sL_ContLoss": "533523", "geom_point": "0101000020E61000009774511D80C35EC009234952CAA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054669838, 49.269610398000054 ], [ -123.056603946999985, 49.269553280000096 ], [ -123.056600916999969, 49.269985382000065 ], [ -123.056597961999941, 49.270405243000042 ], [ -123.056595605, 49.270785861000022 ], [ -123.056592997999985, 49.271197790000031 ], [ -123.056591789999942, 49.271367995000084 ], [ -123.056591062999956, 49.2716223420001 ], [ -123.05658981, 49.272049802000055 ], [ -123.056587893999975, 49.272295701000132 ], [ -123.056587248999975, 49.272503840000063 ], [ -123.056585901999981, 49.272934192000072 ], [ -123.056581603999973, 49.273283600000077 ], [ -123.055882553999965, 49.273280483000093 ], [ -123.055264069999964, 49.273277702000051 ], [ -123.054684398999953, 49.27327509 ], [ -123.054109386999983, 49.273275075000072 ], [ -123.052040615999942, 49.273274984000103 ], [ -123.052040155999947, 49.272775840000087 ], [ -123.052039700999927, 49.272294887000065 ], [ -123.052060633999972, 49.271839228000012 ], [ -123.052082485999975, 49.271362904000107 ], [ -123.0541073699999, 49.271364850000047 ], [ -123.054679317999927, 49.271365401000118 ], [ -123.054690890999908, 49.270426199000099 ], [ -123.054669838, 49.269610398000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82586416", "BldgCostT": "55801666", "sL_LossRatio": "0.696846061239911", "sL_AssetLoss": "3480410", "sL_BldgLoss": "2425310", "sL_StrLoss": "957000", "sL_NStrLoss": "1468310", "sL_ContLoss": "1055100", "geom_point": "0101000020E610000024CF92537DC35EC0AB73DA8D1DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054682808999956, 49.275374307000114 ], [ -123.054686095999941, 49.27497940100006 ], [ -123.052027392999932, 49.274974411000052 ], [ -123.052023000999924, 49.27455695000004 ], [ -123.052018592999943, 49.274140894000091 ], [ -123.052029292999933, 49.273720145000034 ], [ -123.052040615999942, 49.273274984000103 ], [ -123.054109386999983, 49.273275075000072 ], [ -123.054684398999953, 49.27327509 ], [ -123.055264069999964, 49.273277702000051 ], [ -123.055882553999965, 49.273280483000093 ], [ -123.056581603999973, 49.273283600000077 ], [ -123.056579204999963, 49.273841105000038 ], [ -123.056579910999957, 49.274154598000095 ], [ -123.056576008999926, 49.274756186000047 ], [ -123.056575189999975, 49.274985902000026 ], [ -123.056573757999985, 49.275211374000058 ], [ -123.056570888999943, 49.275660396000077 ], [ -123.05657120799999, 49.275807301000015 ], [ -123.055803009999963, 49.275804620000088 ], [ -123.05467931099993, 49.275800686000117 ], [ -123.054682808999956, 49.275374307000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202922768", "BldgCostT": "131594874", "sL_LossRatio": "0.734012667677893", "sL_AssetLoss": "2949554", "sL_BldgLoss": "2165010", "sL_StrLoss": "996550", "sL_NStrLoss": "1168460", "sL_ContLoss": "784544", "geom_point": "0101000020E610000081D2AB5CC3C35EC0CC63F79119A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.060433206000013, 49.272956170000064 ], [ -123.06183228299993, 49.272975398000014 ], [ -123.061824156999975, 49.273391696 ], [ -123.061816899999883, 49.273761396000076 ], [ -123.061813396999966, 49.273881101 ], [ -123.061811776999932, 49.273967786000071 ], [ -123.061804792999979, 49.27434502800002 ], [ -123.061796295999926, 49.274802100000066 ], [ -123.059866197999924, 49.274771105000148 ], [ -123.057921123999932, 49.274738804000073 ], [ -123.057913217999953, 49.275228597000122 ], [ -123.057906218999932, 49.275666208000089 ], [ -123.057898710999936, 49.276119305000066 ], [ -123.05789121, 49.276574702000055 ], [ -123.057261175999926, 49.276570236000055 ], [ -123.056777190999952, 49.276566793000022 ], [ -123.056568300999956, 49.276610689000108 ], [ -123.05657011699999, 49.276110901000038 ], [ -123.05657120799999, 49.275807301000015 ], [ -123.056570888999943, 49.275660396000077 ], [ -123.056573757999985, 49.275211374000058 ], [ -123.056575189999975, 49.274985902000026 ], [ -123.056576008999926, 49.274756186000047 ], [ -123.056579910999957, 49.274154598000095 ], [ -123.056579204999963, 49.273841105000038 ], [ -123.056581603999973, 49.273283600000077 ], [ -123.056585901999981, 49.272934192000072 ], [ -123.057954793999912, 49.272906707000097 ], [ -123.059801580999945, 49.272946756000096 ], [ -123.059896508999913, 49.272948809000127 ], [ -123.060433206000013, 49.272956170000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163368833", "BldgCostT": "110483333", "sL_LossRatio": "0.760124142863069", "sL_AssetLoss": "5061910", "sL_BldgLoss": "3847680", "sL_StrLoss": "1701130", "sL_NStrLoss": "2146550", "sL_ContLoss": "1214230", "geom_point": "0101000020E6100000C27C790176C35EC0CCBB76AB5FA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05201588499996, 49.275804498000063 ], [ -123.052021581999909, 49.275393453000106 ], [ -123.052027392999932, 49.274974411000052 ], [ -123.054686095999941, 49.27497940100006 ], [ -123.054682808999956, 49.275374307000114 ], [ -123.05467931099993, 49.275800686000117 ], [ -123.055803009999963, 49.275804620000088 ], [ -123.05657120799999, 49.275807301000015 ], [ -123.05657011699999, 49.276110901000038 ], [ -123.056568300999956, 49.276610689000108 ], [ -123.056561794999965, 49.277469794000119 ], [ -123.055818784999985, 49.27747011200011 ], [ -123.054611707999968, 49.277470590000142 ], [ -123.052013012, 49.277471786000071 ], [ -123.052009452999982, 49.27704851900004 ], [ -123.052005978999944, 49.276631200000018 ], [ -123.052011032999971, 49.276212100000102 ], [ -123.05201588499996, 49.275804498000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77665500", "BldgCostT": "51120000", "sL_LossRatio": "0.714388088325935", "sL_AssetLoss": "1555919", "sL_BldgLoss": "1111530", "sL_StrLoss": "475930", "sL_NStrLoss": "635600", "sL_ContLoss": "444389", "geom_point": "0101000020E61000003E4073ADE8C35EC07461D65176A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063669594999965, 49.276620303000051 ], [ -123.065622090999966, 49.276646400000025 ], [ -123.065614083999918, 49.277059585000117 ], [ -123.065605106999968, 49.27752241000011 ], [ -123.063698914999975, 49.277503795000079 ], [ -123.061745408999954, 49.277493013000061 ], [ -123.059815294999964, 49.27748098900004 ], [ -123.059668754999961, 49.277480081000071 ], [ -123.057878407999937, 49.277468813000034 ], [ -123.057248597999916, 49.27746928000002 ], [ -123.056561794999965, 49.277469794000119 ], [ -123.056568300999956, 49.276610689000108 ], [ -123.056777190999952, 49.276566793000022 ], [ -123.057261175999926, 49.276570236000055 ], [ -123.05789121, 49.276574702000055 ], [ -123.059833726999926, 49.276606003000097 ], [ -123.061752913999982, 49.276615007000046 ], [ -123.063669594999965, 49.276620303000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91445062", "BldgCostT": "59708191", "sL_LossRatio": "0.701133473436164", "sL_AssetLoss": "1765370", "sL_BldgLoss": "1237760", "sL_StrLoss": "546380", "sL_NStrLoss": "691380", "sL_ContLoss": "527610", "geom_point": "0101000020E610000023DE8D47E1C35EC03F0DB5F941A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057906218999932, 49.275666208000089 ], [ -123.057913217999953, 49.275228597000122 ], [ -123.057921123999932, 49.274738804000073 ], [ -123.059866197999924, 49.274771105000148 ], [ -123.061796295999926, 49.274802100000066 ], [ -123.061804792999979, 49.27434502800002 ], [ -123.061811776999932, 49.273967786000071 ], [ -123.061813396999966, 49.273881101 ], [ -123.061816899999883, 49.273761396000076 ], [ -123.062906497999975, 49.273762185000095 ], [ -123.062870785999976, 49.27480339600006 ], [ -123.06345793499996, 49.274807669000104 ], [ -123.063540499999945, 49.274808268000065 ], [ -123.06364002, 49.274809006000091 ], [ -123.063711502999965, 49.274916303000111 ], [ -123.063703289999964, 49.275252932000093 ], [ -123.063691694999974, 49.275728295000093 ], [ -123.061778419999939, 49.275669903000093 ], [ -123.061765365000014, 49.27615267700002 ], [ -123.061752913999982, 49.276615007000046 ], [ -123.059833726999926, 49.276606003000097 ], [ -123.05789121, 49.276574702000055 ], [ -123.057898710999936, 49.276119305000066 ], [ -123.057906218999932, 49.275666208000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209139667", "BldgCostT": "142311667", "sL_LossRatio": "0.805366519290993", "sL_AssetLoss": "1721451", "sL_BldgLoss": "1386399", "sL_StrLoss": "620730", "sL_NStrLoss": "765669", "sL_ContLoss": "335052", "geom_point": "0101000020E6100000742E8BAA1BC45EC04FD2708840A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061765365000014, 49.27615267700002 ], [ -123.061778419999939, 49.275669903000093 ], [ -123.063691694999974, 49.275728295000093 ], [ -123.063703289999964, 49.275252932000093 ], [ -123.063711502999965, 49.274916303000111 ], [ -123.06364002, 49.274809006000091 ], [ -123.063523988999961, 49.274731092000117 ], [ -123.06355068199997, 49.273766205000115 ], [ -123.064035931999982, 49.273770387000049 ], [ -123.064568413999979, 49.273775003000075 ], [ -123.065122072999941, 49.273782799000081 ], [ -123.065534911999961, 49.273788603000057 ], [ -123.065675801999987, 49.27384199500009 ], [ -123.065665198999966, 49.274352121000078 ], [ -123.065655009999915, 49.274844900000069 ], [ -123.065648983999921, 49.27516840800012 ], [ -123.065646929999957, 49.275278573000058 ], [ -123.065645611999955, 49.275348422000057 ], [ -123.065638391999983, 49.275736199000029 ], [ -123.065630494999951, 49.276178179000098 ], [ -123.065622090999966, 49.276646400000025 ], [ -123.063669594999965, 49.276620303000051 ], [ -123.061752913999982, 49.276615007000046 ], [ -123.061765365000014, 49.27615267700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94454008", "BldgCostT": "61613459", "sL_LossRatio": "0.725710983342779", "sL_AssetLoss": "1251049", "sL_BldgLoss": "907900", "sL_StrLoss": "414170", "sL_NStrLoss": "493730", "sL_ContLoss": "343149", "geom_point": "0101000020E61000009428C5D813C45EC0D4E8AC81F3A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.062870785999976, 49.27480339600006 ], [ -123.062906497999975, 49.273762185000095 ], [ -123.061816899999883, 49.273761396000076 ], [ -123.061824156999975, 49.273391696 ], [ -123.06183228299993, 49.272975398000014 ], [ -123.061840532999952, 49.272528184000073 ], [ -123.061849196999958, 49.272057999000069 ], [ -123.063761304999971, 49.272090210000052 ], [ -123.065146816999942, 49.272095259000061 ], [ -123.065710591999917, 49.272097293000179 ], [ -123.065702315999914, 49.272553160000015 ], [ -123.065693901999964, 49.273012897000058 ], [ -123.065675801999987, 49.27384199500009 ], [ -123.065534911999961, 49.273788603000057 ], [ -123.065122072999941, 49.273782799000081 ], [ -123.064568413999979, 49.273775003000075 ], [ -123.064035931999982, 49.273770387000049 ], [ -123.06355068199997, 49.273766205000115 ], [ -123.063523988999961, 49.274731092000117 ], [ -123.06364002, 49.274809006000091 ], [ -123.063540499999945, 49.274808268000065 ], [ -123.06345793499996, 49.274807669000104 ], [ -123.062870785999976, 49.27480339600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191914553", "BldgCostT": "122338746", "sL_LossRatio": "0.709968029617758", "sL_AssetLoss": "2181394", "sL_BldgLoss": "1548720", "sL_StrLoss": "680130", "sL_NStrLoss": "868590", "sL_ContLoss": "632674", "geom_point": "0101000020E61000003E2095A463C45EC0FF84DCDAFCA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07017845899999, 49.272140958000115 ], [ -123.071526696999911, 49.272147194000077 ], [ -123.071510685999968, 49.272594709000046 ], [ -123.071494406999975, 49.273049811000085 ], [ -123.071480862999934, 49.273511976000087 ], [ -123.071468219999986, 49.273944406000041 ], [ -123.070809090999916, 49.273957996000028 ], [ -123.070168802999916, 49.273956891000097 ], [ -123.069559025999936, 49.273951998000022 ], [ -123.068902021999989, 49.273946289000023 ], [ -123.067604704999965, 49.273935 ], [ -123.06759565199998, 49.274359924000116 ], [ -123.067585082999983, 49.274853194000066 ], [ -123.065655009999915, 49.274844900000069 ], [ -123.065665198999966, 49.274352121000078 ], [ -123.065675801999987, 49.27384199500009 ], [ -123.065693901999964, 49.273012897000058 ], [ -123.06762360299993, 49.273027500000069 ], [ -123.067633418999918, 49.272578841000048 ], [ -123.067643296999933, 49.272129986000117 ], [ -123.068872332999931, 49.272135205000026 ], [ -123.069607692999938, 49.272138301000098 ], [ -123.07017845899999, 49.272140958000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88693590", "BldgCostT": "55664590", "sL_LossRatio": "0.691625335773503", "sL_AssetLoss": "1432141", "sL_BldgLoss": "990505", "sL_StrLoss": "396540", "sL_NStrLoss": "593965", "sL_ContLoss": "441636", "geom_point": "0101000020E6100000F717CCC24BC45EC015FFD1B3B0A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068966282999966, 49.269573384000047 ], [ -123.069675513, 49.269586502000074 ], [ -123.069649419999976, 49.2704992050001 ], [ -123.067674688999944, 49.270503188000134 ], [ -123.067659388999957, 49.271287293000036 ], [ -123.067643296999933, 49.272129986000117 ], [ -123.067633418999918, 49.272578841000048 ], [ -123.06762360299993, 49.273027500000069 ], [ -123.065693901999964, 49.273012897000058 ], [ -123.065702315999914, 49.272553160000015 ], [ -123.065710591999917, 49.272097293000179 ], [ -123.065724731999964, 49.271689669000089 ], [ -123.065738905999979, 49.271281100000138 ], [ -123.065746699999963, 49.270834966000081 ], [ -123.06575309599998, 49.270470807000024 ], [ -123.065769407999937, 49.269560591000129 ], [ -123.066394282, 49.269557119000055 ], [ -123.067012829999911, 49.269553695000091 ], [ -123.067696485999974, 49.269549902000115 ], [ -123.068966282999966, 49.269573384000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "626736214", "BldgCostT": "416610498", "sL_LossRatio": "0.755754158243785", "sL_AssetLoss": "4849884", "sL_BldgLoss": "3665320", "sL_StrLoss": "1572030", "sL_NStrLoss": "2093290", "sL_ContLoss": "1184564", "geom_point": "0101000020E6100000C10078FA77C45EC0473A6797B1A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07049799399999, 49.26957280100001 ], [ -123.071574697999949, 49.269601988000026 ], [ -123.071567725999969, 49.270075962000163 ], [ -123.071561295, 49.270511407000065 ], [ -123.071553841999929, 49.270957503000012 ], [ -123.071545902999986, 49.271429804000029 ], [ -123.071526696999911, 49.272147194000077 ], [ -123.07017845899999, 49.272140958000115 ], [ -123.069607692999938, 49.272138301000098 ], [ -123.068872332999931, 49.272135205000026 ], [ -123.067643296999933, 49.272129986000117 ], [ -123.067659388999957, 49.271287293000036 ], [ -123.067674688999944, 49.270503188000134 ], [ -123.069649419999976, 49.2704992050001 ], [ -123.069675513, 49.269586502000074 ], [ -123.07049799399999, 49.26957280100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "669355666", "BldgCostT": "462271666", "sL_LossRatio": "0.863581916894225", "sL_AssetLoss": "3632407", "sL_BldgLoss": "3136881", "sL_StrLoss": "1399310", "sL_NStrLoss": "1737571", "sL_ContLoss": "495526", "geom_point": "0101000020E61000002A7845AEA3C45EC0567FBE0CCAA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071561295, 49.270511407000065 ], [ -123.07346312, 49.270529709000058 ], [ -123.073450662999917, 49.270964848000112 ], [ -123.073437025999965, 49.271445098000051 ], [ -123.073464289999961, 49.272165501000124 ], [ -123.073449720999974, 49.27260269300011 ], [ -123.073434897, 49.273046505000075 ], [ -123.071494406999975, 49.273049811000085 ], [ -123.071510685999968, 49.272594709000046 ], [ -123.071526696999911, 49.272147194000077 ], [ -123.071545902999986, 49.271429804000029 ], [ -123.071553841999929, 49.270957503000012 ], [ -123.071561295, 49.270511407000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181688031", "BldgCostT": "121918603", "sL_LossRatio": "0.783049146623513", "sL_AssetLoss": "1592439", "sL_BldgLoss": "1246958", "sL_StrLoss": "535350", "sL_NStrLoss": "711608", "sL_ContLoss": "345481", "geom_point": "0101000020E6100000A9175CD6B1C45EC06A48160FF3A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073437025999965, 49.271445098000051 ], [ -123.074480699999938, 49.271454415000086 ], [ -123.074478985, 49.272178597000078 ], [ -123.074478386999942, 49.272610676000035 ], [ -123.074477693999981, 49.273070312000115 ], [ -123.074474595999959, 49.273528255000059 ], [ -123.074471393999943, 49.273996993000026 ], [ -123.073402892999951, 49.273987906000052 ], [ -123.071468219999986, 49.273944406000041 ], [ -123.071480862999934, 49.273511976000087 ], [ -123.071494406999975, 49.273049811000085 ], [ -123.073434897, 49.273046505000075 ], [ -123.073449720999974, 49.27260269300011 ], [ -123.073464289999961, 49.272165501000124 ], [ -123.073437025999965, 49.271445098000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168879273", "BldgCostT": "103394159", "sL_LossRatio": "0.671973670506792", "sL_AssetLoss": "2045159", "sL_BldgLoss": "1374293", "sL_StrLoss": "633400", "sL_NStrLoss": "740893", "sL_ContLoss": "670866", "geom_point": "0101000020E6100000F9994759DAC45EC077341ED7CCA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074478985, 49.272178597000078 ], [ -123.074480699999938, 49.271454415000086 ], [ -123.073437025999965, 49.271445098000051 ], [ -123.073450662999917, 49.270964848000112 ], [ -123.07346312, 49.270529709000058 ], [ -123.075403524999956, 49.270547201000049 ], [ -123.075412847999971, 49.270100118000087 ], [ -123.075422609999976, 49.269634307000082 ], [ -123.07598120599998, 49.269638547000049 ], [ -123.076677477999937, 49.269643870000053 ], [ -123.077365887999974, 49.269649108000074 ], [ -123.077359816999945, 49.270099055000088 ], [ -123.077353489, 49.270564898000018 ], [ -123.077349334999894, 49.270823401000015 ], [ -123.077346275999957, 49.271016559000039 ], [ -123.077338490999978, 49.271501194000031 ], [ -123.077315507999941, 49.273130091000034 ], [ -123.077299396999976, 49.274040309000029 ], [ -123.075915600999963, 49.274019008000039 ], [ -123.075378004999962, 49.274010816000036 ], [ -123.074924285999913, 49.274003889000049 ], [ -123.074471393999943, 49.273996993000026 ], [ -123.074474595999959, 49.273528255000059 ], [ -123.074477693999981, 49.273070312000115 ], [ -123.074478386999942, 49.272610676000035 ], [ -123.074478985, 49.272178597000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "278387447", "BldgCostT": "184570269", "sL_LossRatio": "0.764681061449567", "sL_AssetLoss": "1725301", "sL_BldgLoss": "1319305", "sL_StrLoss": "602840", "sL_NStrLoss": "716465", "sL_ContLoss": "405996", "geom_point": "0101000020E61000006B6EC816B4C45EC01D894CD091A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073490092999947, 49.269622499000029 ], [ -123.075422609999976, 49.269634307000082 ], [ -123.075412847999971, 49.270100118000087 ], [ -123.075403524999956, 49.270547201000049 ], [ -123.07346312, 49.270529709000058 ], [ -123.071561295, 49.270511407000065 ], [ -123.071567725999969, 49.270075962000163 ], [ -123.071574697999949, 49.269601988000026 ], [ -123.073490092999947, 49.269622499000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "276597811", "BldgCostT": "183528190", "sL_LossRatio": "0.738052780733055", "sL_AssetLoss": "2124260", "sL_BldgLoss": "1567816", "sL_StrLoss": "649780", "sL_NStrLoss": "918036", "sL_ContLoss": "556444", "geom_point": "0101000020E61000005799A42AD4C45EC015F5DD0866A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076688052999941, 49.267846962000078 ], [ -123.077380308999977, 49.267849795000068 ], [ -123.077382983999968, 49.268348437000057 ], [ -123.077385200999927, 49.268754287000057 ], [ -123.077365887999974, 49.269649108000074 ], [ -123.076677477999937, 49.269643870000053 ], [ -123.07598120599998, 49.269638547000049 ], [ -123.075422609999976, 49.269634307000082 ], [ -123.073490092999947, 49.269622499000029 ], [ -123.073506600999977, 49.269175188000069 ], [ -123.073522976999953, 49.268731595000126 ], [ -123.07353260299999, 49.268266631000088 ], [ -123.073541696999897, 49.267825090000052 ], [ -123.075459990999917, 49.267841898 ], [ -123.076688052999941, 49.267846962000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "585162455", "BldgCostT": "406581053", "sL_LossRatio": "0.877036137404862", "sL_AssetLoss": "3036632", "sL_BldgLoss": "2663236", "sL_StrLoss": "1252050", "sL_NStrLoss": "1411186", "sL_ContLoss": "373396", "geom_point": "0101000020E6100000BEBC297A9AC45EC0A0070CCC69A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07208302, 49.267812665000108 ], [ -123.073541696999897, 49.267825090000052 ], [ -123.07353260299999, 49.268266631000088 ], [ -123.073522976999953, 49.268731595000126 ], [ -123.073506600999977, 49.269175188000069 ], [ -123.073490092999947, 49.269622499000029 ], [ -123.071574697999949, 49.269601988000026 ], [ -123.07049799399999, 49.26957280100001 ], [ -123.069675513, 49.269586502000074 ], [ -123.069673713999975, 49.268700986000084 ], [ -123.070366005999972, 49.26870613600007 ], [ -123.071589509999967, 49.26871520000001 ], [ -123.071597396999977, 49.268267731000066 ], [ -123.071605490999943, 49.267808617000128 ], [ -123.07208302, 49.267812665000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "313575916", "BldgCostT": "203340681", "sL_LossRatio": "0.733051671226029", "sL_AssetLoss": "2880520", "sL_BldgLoss": "2111570", "sL_StrLoss": "964390", "sL_NStrLoss": "1147180", "sL_ContLoss": "768950", "geom_point": "0101000020E6100000F99B2E3090C45EC00AB72A2642A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070349815, 49.266877198000046 ], [ -123.07355930199995, 49.266892387000013 ], [ -123.073550170999951, 49.267376127000055 ], [ -123.073541696999897, 49.267825090000052 ], [ -123.07208302, 49.267812665000108 ], [ -123.071605490999943, 49.267808617000128 ], [ -123.071597396999977, 49.268267731000066 ], [ -123.071589509999967, 49.26871520000001 ], [ -123.070366005999972, 49.26870613600007 ], [ -123.069673713999975, 49.268700986000084 ], [ -123.069678889999963, 49.267792305000057 ], [ -123.069693002999912, 49.267090100000125 ], [ -123.06969981499995, 49.266874099000042 ], [ -123.070349815, 49.266877198000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "352050927", "BldgCostT": "232432097", "sL_LossRatio": "0.761060084317894", "sL_AssetLoss": "2014519", "sL_BldgLoss": "1533170", "sL_StrLoss": "637600", "sL_NStrLoss": "895570", "sL_ContLoss": "481349", "geom_point": "0101000020E6100000578A5FA995C45EC0F5CFEBD31AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069710910999945, 49.266436599000087 ], [ -123.069718608999949, 49.2659892080001 ], [ -123.070224610999972, 49.265993129000044 ], [ -123.073575996999963, 49.266019104000037 ], [ -123.073567750999956, 49.266449674000114 ], [ -123.07355930199995, 49.266892387000013 ], [ -123.070349815, 49.266877198000046 ], [ -123.06969981499995, 49.266874099000042 ], [ -123.069710910999945, 49.266436599000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130973166", "BldgCostT": "79431666", "sL_LossRatio": "0.709319759895083", "sL_AssetLoss": "1341247", "sL_BldgLoss": "951373", "sL_StrLoss": "484190", "sL_NStrLoss": "467183", "sL_ContLoss": "389874", "geom_point": "0101000020E6100000C2B5D25256C45EC0FCD776031AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069055057999947, 49.265073668000056 ], [ -123.069740390999954, 49.265079103000048 ], [ -123.069723211999971, 49.265786603000016 ], [ -123.069718608999949, 49.2659892080001 ], [ -123.069710910999945, 49.266436599000087 ], [ -123.06969981499995, 49.266874099000042 ], [ -123.069693002999912, 49.267090100000125 ], [ -123.069678889999963, 49.267792305000057 ], [ -123.068990188999933, 49.267786397000073 ], [ -123.066391944999921, 49.267764152000026 ], [ -123.065803699999961, 49.267759090000027 ], [ -123.065811457999928, 49.267327055000159 ], [ -123.065817908999961, 49.266967284000039 ], [ -123.065820013999897, 49.266850690000126 ], [ -123.065827638999934, 49.266409433000071 ], [ -123.065835619999945, 49.265951199000028 ], [ -123.065843044999923, 49.265527825000056 ], [ -123.065851485999985, 49.265048208000074 ], [ -123.069055057999947, 49.265073668000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "811962642", "BldgCostT": "548298581", "sL_LossRatio": "0.803958861651169", "sL_AssetLoss": "2981160", "sL_BldgLoss": "2396730", "sL_StrLoss": "1037210", "sL_NStrLoss": "1359520", "sL_ContLoss": "584430", "geom_point": "0101000020E61000003FF3830496C45EC09C643FE6DEA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069778172999975, 49.263232443000021 ], [ -123.069782308999933, 49.263024961000063 ], [ -123.06978431, 49.26292659400012 ], [ -123.070780005999936, 49.26325711000009 ], [ -123.071757729999916, 49.263268214000071 ], [ -123.07363141399999, 49.263289499000066 ], [ -123.073621900999967, 49.263760103000031 ], [ -123.07361328899999, 49.264185199000032 ], [ -123.07360996499996, 49.264374444000062 ], [ -123.073608303999976, 49.264467595000063 ], [ -123.073606998999978, 49.264542515000052 ], [ -123.073601141999973, 49.264875422000024 ], [ -123.073599384999966, 49.264974350000095 ], [ -123.073598901999915, 49.265001808000143 ], [ -123.07398241199995, 49.265130195 ], [ -123.073595298999948, 49.265125112000085 ], [ -123.073585731999955, 49.265567924000045 ], [ -123.073575996999963, 49.266019104000037 ], [ -123.070224610999972, 49.265993129000044 ], [ -123.069718608999949, 49.2659892080001 ], [ -123.069723211999971, 49.265786603000016 ], [ -123.069740390999954, 49.265079103000048 ], [ -123.06975798399999, 49.264168893000097 ], [ -123.069768306999961, 49.263723300000024 ], [ -123.069770754999922, 49.263600811000046 ], [ -123.069775105999909, 49.263384798000089 ], [ -123.069778172999975, 49.263232443000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175474252", "BldgCostT": "111635958", "sL_LossRatio": "0.729071206096021", "sL_AssetLoss": "951309", "sL_BldgLoss": "693572", "sL_StrLoss": "323996", "sL_NStrLoss": "369576", "sL_ContLoss": "257737", "geom_point": "0101000020E61000005F6D493757C45EC029ED1679C0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069106244999915, 49.262319971000096 ], [ -123.069794705999968, 49.262326893000058 ], [ -123.06978617299994, 49.262818070000066 ], [ -123.06978431, 49.26292659400012 ], [ -123.069782308999933, 49.263024961000063 ], [ -123.069778172999975, 49.263232443000021 ], [ -123.069775105999909, 49.263384798000089 ], [ -123.069770754999922, 49.263600811000046 ], [ -123.069768306999961, 49.263723300000024 ], [ -123.06975798399999, 49.264168893000097 ], [ -123.069740390999954, 49.265079103000048 ], [ -123.069055057999947, 49.265073668000056 ], [ -123.065851485999985, 49.265048208000074 ], [ -123.065859577999902, 49.264583233000039 ], [ -123.065867109999914, 49.264150494000042 ], [ -123.065876141999937, 49.263719594000122 ], [ -123.065886146999972, 49.263241299000107 ], [ -123.065901340999972, 49.262757081000061 ], [ -123.065915819999987, 49.262294483000069 ], [ -123.066123628999947, 49.26229508500009 ], [ -123.066838814999954, 49.262297060000073 ], [ -123.067291990999976, 49.262301660000062 ], [ -123.067530458999954, 49.262304080000064 ], [ -123.067924087999984, 49.262308035000032 ], [ -123.069106244999915, 49.262319971000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "397376189", "BldgCostT": "269785825", "sL_LossRatio": "0.839986668992798", "sL_AssetLoss": "2109368", "sL_BldgLoss": "1771841", "sL_StrLoss": "873890", "sL_NStrLoss": "897951", "sL_ContLoss": "337527", "geom_point": "0101000020E6100000170DC646A8C45EC05C754E9AA3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074831143, 49.262370059000091 ], [ -123.075584764999959, 49.262376811000102 ], [ -123.075579279999985, 49.262850358000065 ], [ -123.075573903999953, 49.263312408000019 ], [ -123.074825663999889, 49.263303592000042 ], [ -123.07363141399999, 49.263289499000066 ], [ -123.071757729999916, 49.263268214000071 ], [ -123.070780005999936, 49.26325711000009 ], [ -123.06978431, 49.26292659400012 ], [ -123.06978617299994, 49.262818070000066 ], [ -123.069794705999968, 49.262326893000058 ], [ -123.071787187999959, 49.262343727000072 ], [ -123.073646098000012, 49.26235940600003 ], [ -123.074831143, 49.262370059000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "448643542", "BldgCostT": "298686331", "sL_LossRatio": "0.75830729293473", "sL_AssetLoss": "3429607", "sL_BldgLoss": "2600696", "sL_StrLoss": "1204070", "sL_NStrLoss": "1396626", "sL_ContLoss": "828911", "geom_point": "0101000020E610000053BB1E336DC45EC025546F2E7AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065928178999954, 49.261382350000069 ], [ -123.065930569999921, 49.261008934000131 ], [ -123.06593140299999, 49.26087719 ], [ -123.065934211999931, 49.260440305000074 ], [ -123.069076130999989, 49.260446431000013 ], [ -123.069828213999941, 49.260447895000013 ], [ -123.069821568999899, 49.2609199830001 ], [ -123.069814897999933, 49.26139788100005 ], [ -123.070314127999922, 49.261398378000095 ], [ -123.073661210999958, 49.26140140800004 ], [ -123.073654081999962, 49.261853097000085 ], [ -123.073646098000012, 49.26235940600003 ], [ -123.071787187999959, 49.262343727000072 ], [ -123.069794705999968, 49.262326893000058 ], [ -123.069106244999915, 49.262319971000096 ], [ -123.067924087999984, 49.262308035000032 ], [ -123.067530458999954, 49.262304080000064 ], [ -123.067291990999976, 49.262301660000062 ], [ -123.066838814999954, 49.262297060000073 ], [ -123.066123628999947, 49.26229508500009 ], [ -123.065915819999987, 49.262294483000069 ], [ -123.065917523999957, 49.262167244000125 ], [ -123.065918425999925, 49.262100546000056 ], [ -123.065921359999919, 49.261886000000118 ], [ -123.065923049999967, 49.261761420000035 ], [ -123.065926971999929, 49.261470671000041 ], [ -123.065928178999954, 49.261382350000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140530999", "BldgCostT": "92614999", "sL_LossRatio": "0.707899960033169", "sL_AssetLoss": "1773971", "sL_BldgLoss": "1255794", "sL_StrLoss": "495000", "sL_NStrLoss": "760794", "sL_ContLoss": "518177", "geom_point": "0101000020E6100000019C5A8D97C45EC0DCE7B50258A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069846790999961, 49.25958820000011 ], [ -123.073693406999908, 49.259606108000099 ], [ -123.073684240999938, 49.260045417000043 ], [ -123.073675108000018, 49.260483898000139 ], [ -123.073668251999976, 49.260935697000058 ], [ -123.073661210999958, 49.26140140800004 ], [ -123.070314127999922, 49.261398378000095 ], [ -123.069814897999933, 49.26139788100005 ], [ -123.069821568999899, 49.2609199830001 ], [ -123.069828213999941, 49.260447895000013 ], [ -123.06983743399999, 49.260020447000059 ], [ -123.069846790999961, 49.25958820000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206271684", "BldgCostT": "136396540", "sL_LossRatio": "0.818562878020228", "sL_AssetLoss": "1588870", "sL_BldgLoss": "1300590", "sL_StrLoss": "622840", "sL_NStrLoss": "677750", "sL_ContLoss": "288280", "geom_point": "0101000020E61000003FEAAF5758C45EC0D275232439A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069114159, 49.258680480000095 ], [ -123.069859720999901, 49.258687798000032 ], [ -123.069846790999961, 49.25958820000011 ], [ -123.06983743399999, 49.260020447000059 ], [ -123.069828213999941, 49.260447895000013 ], [ -123.069076130999989, 49.260446431000013 ], [ -123.065934211999931, 49.260440305000074 ], [ -123.065941926999955, 49.259995789000079 ], [ -123.065949813999907, 49.259540892000039 ], [ -123.06596500799999, 49.258649496000075 ], [ -123.066598625, 49.258655737000055 ], [ -123.069114159, 49.258680480000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138251478", "BldgCostT": "92689857", "sL_LossRatio": "0.761381835844599", "sL_AssetLoss": "893507", "sL_BldgLoss": "680300", "sL_StrLoss": "348760", "sL_NStrLoss": "331540", "sL_ContLoss": "213207", "geom_point": "0101000020E6100000F5127BEC97C45EC0B550745507A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069878912999926, 49.256600303000084 ], [ -123.06982923699999, 49.256398112000085 ], [ -123.069821, 49.256364490000109 ], [ -123.070226704999953, 49.256422386000061 ], [ -123.07086948200002, 49.256444392000063 ], [ -123.071747495999915, 49.256478638000075 ], [ -123.072844003999975, 49.256521409000108 ], [ -123.07370514099992, 49.25653118900005 ], [ -123.073724196999962, 49.257463082000129 ], [ -123.073714507999952, 49.257790791000012 ], [ -123.073707615, 49.258237029000057 ], [ -123.073700184999936, 49.258714593000022 ], [ -123.073696844999986, 49.259154546000062 ], [ -123.073693406999908, 49.259606108000099 ], [ -123.069846790999961, 49.25958820000011 ], [ -123.069859720999901, 49.258687798000032 ], [ -123.069863902999899, 49.258203311000024 ], [ -123.069867790999965, 49.257754814000101 ], [ -123.069877198999933, 49.25684530100007 ], [ -123.069878912999926, 49.256600303000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81089624", "BldgCostT": "48693351", "sL_LossRatio": "0.732310042835416", "sL_AssetLoss": "860036", "sL_BldgLoss": "629813", "sL_StrLoss": "311690", "sL_NStrLoss": "318123", "sL_ContLoss": "230223", "geom_point": "0101000020E6100000FE214FF558C45EC08FDE0DF5FDA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069139473999925, 49.256838812000112 ], [ -123.069877198999933, 49.25684530100007 ], [ -123.069867790999965, 49.257754814000101 ], [ -123.069863902999899, 49.258203311000024 ], [ -123.069859720999901, 49.258687798000032 ], [ -123.069114159, 49.258680480000095 ], [ -123.066598625, 49.258655737000055 ], [ -123.06596500799999, 49.258649496000075 ], [ -123.065989314999925, 49.257722384000026 ], [ -123.066008120999953, 49.256816699000062 ], [ -123.066651997999884, 49.25682048000003 ], [ -123.067865909999966, 49.25682760200003 ], [ -123.069139473999925, 49.256838812000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72254136", "BldgCostT": "43287079", "sL_LossRatio": "0.658595209810387", "sL_AssetLoss": "975619", "sL_BldgLoss": "642538", "sL_StrLoss": "273030", "sL_NStrLoss": "369508", "sL_ContLoss": "333081", "geom_point": "0101000020E6100000BF4CFB8354C45EC064F978F0ACA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066225749999916, 49.25308578300011 ], [ -123.066272607999963, 49.252959585000028 ], [ -123.06699199599997, 49.253486302000049 ], [ -123.06751764399999, 49.253884872000079 ], [ -123.067997278999911, 49.254248597000135 ], [ -123.068858512999924, 49.254922398000083 ], [ -123.069076994999961, 49.255138195000015 ], [ -123.069626882999913, 49.256000790000044 ], [ -123.069821, 49.256364490000109 ], [ -123.06982923699999, 49.256398112000085 ], [ -123.069878912999926, 49.256600303000084 ], [ -123.069877198999933, 49.25684530100007 ], [ -123.069139473999925, 49.256838812000112 ], [ -123.067865909999966, 49.25682760200003 ], [ -123.067891782999979, 49.256287790000044 ], [ -123.066056896999939, 49.256219008000059 ], [ -123.066136093999916, 49.254640301000094 ], [ -123.066101193999955, 49.254149294000051 ], [ -123.066116590999926, 49.253699303000076 ], [ -123.066128599999928, 49.253347516000126 ], [ -123.066225749999916, 49.25308578300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102429415", "BldgCostT": "64286665", "sL_LossRatio": "0.682956359733599", "sL_AssetLoss": "1651044", "sL_BldgLoss": "1127591", "sL_StrLoss": "483310", "sL_NStrLoss": "644281", "sL_ContLoss": "523453", "geom_point": "0101000020E610000099CD563DA4C45EC0C13EA65AB0A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071747495999915, 49.256478638000075 ], [ -123.07086948200002, 49.256444392000063 ], [ -123.070226704999953, 49.256422386000061 ], [ -123.069821, 49.256364490000109 ], [ -123.069626882999913, 49.256000790000044 ], [ -123.069076994999961, 49.255138195000015 ], [ -123.068858512999924, 49.254922398000083 ], [ -123.067997278999911, 49.254248597000135 ], [ -123.068404084999926, 49.254288498000079 ], [ -123.068669250999946, 49.254290340000097 ], [ -123.069337696999966, 49.254295003000053 ], [ -123.070977384999964, 49.25436471200009 ], [ -123.071453685999941, 49.254370393000073 ], [ -123.072911313999924, 49.254365798000087 ], [ -123.075127659000017, 49.254392259999989 ], [ -123.075281607999941, 49.254394081000058 ], [ -123.075554846999964, 49.254398592 ], [ -123.075956703999921, 49.254405209000055 ], [ -123.075940005999925, 49.254871381000058 ], [ -123.075923998999954, 49.25531678600003 ], [ -123.07590187199996, 49.255780018000074 ], [ -123.075880736999935, 49.256220891000062 ], [ -123.075870303000031, 49.256430493000103 ], [ -123.075807917999953, 49.256504466000074 ], [ -123.07580633, 49.256595404000016 ], [ -123.075147324999961, 49.256571289000085 ], [ -123.075045720999967, 49.256567575000098 ], [ -123.07427699599998, 49.256537710000103 ], [ -123.074073188999989, 49.256535386000024 ], [ -123.07370514099992, 49.25653118900005 ], [ -123.072844003999975, 49.256521409000108 ], [ -123.071747495999915, 49.256478638000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "425968000", "BldgCostT": "283075000", "sL_LossRatio": "0.7403086331543", "sL_AssetLoss": "2533234", "sL_BldgLoss": "1875375", "sL_StrLoss": "807110", "sL_NStrLoss": "1068265", "sL_ContLoss": "657859", "geom_point": "0101000020E6100000EF19AADE71C45EC097419C2469A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070977384999964, 49.25436471200009 ], [ -123.069337696999966, 49.254295003000053 ], [ -123.068669250999946, 49.254290340000097 ], [ -123.068404084999926, 49.254288498000079 ], [ -123.067997278999911, 49.254248597000135 ], [ -123.06751764399999, 49.253884872000079 ], [ -123.06699199599997, 49.253486302000049 ], [ -123.066272607999963, 49.252959585000028 ], [ -123.065687194999953, 49.25244279599999 ], [ -123.065218097999917, 49.251868001000027 ], [ -123.065041984999937, 49.251416400000075 ], [ -123.066084579999938, 49.251735547000123 ], [ -123.066695320999941, 49.251922506000028 ], [ -123.067358202999941, 49.25216108400015 ], [ -123.068049009999967, 49.252409693000068 ], [ -123.068236016999933, 49.252471594000099 ], [ -123.0687215199999, 49.252479805000043 ], [ -123.069378881999938, 49.252490899000129 ], [ -123.070167810999976, 49.252503304000136 ], [ -123.070501098999927, 49.25251058900006 ], [ -123.071457399999986, 49.252526589000098 ], [ -123.07196521099992, 49.252533193000062 ], [ -123.07295579099997, 49.252550196000072 ], [ -123.072942360999917, 49.253020078000077 ], [ -123.072929512999949, 49.25346830000008 ], [ -123.072920327999967, 49.253919645000018 ], [ -123.072911313999924, 49.254365798000087 ], [ -123.071453685999941, 49.254370393000073 ], [ -123.070977384999964, 49.25436471200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60503228", "BldgCostT": "40314857", "sL_LossRatio": "0.753115574753687", "sL_AssetLoss": "721135", "sL_BldgLoss": "543098", "sL_StrLoss": "267068", "sL_NStrLoss": "276030", "sL_ContLoss": "178037", "geom_point": "0101000020E610000061AC46E1C0C45EC062A7696160A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072942360999917, 49.253020078000077 ], [ -123.07295579099997, 49.252550196000072 ], [ -123.07196521099992, 49.252533193000062 ], [ -123.07197141899999, 49.252085229000073 ], [ -123.071977581999988, 49.251639992000037 ], [ -123.072594830999918, 49.251648205 ], [ -123.073280005999948, 49.251657297000087 ], [ -123.073954823999955, 49.251667440000162 ], [ -123.07461780499996, 49.251677375000035 ], [ -123.075342574, 49.251688031000057 ], [ -123.075996843000013, 49.25169764900005 ], [ -123.075997965999974, 49.25216376500002 ], [ -123.07599902699999, 49.252600283000021 ], [ -123.07599979900003, 49.253063402000095 ], [ -123.076000468999922, 49.253493003000116 ], [ -123.075977490999961, 49.253972158000067 ], [ -123.075956703999921, 49.254405209000055 ], [ -123.075554846999964, 49.254398592 ], [ -123.075281607999941, 49.254394081000058 ], [ -123.075127659000017, 49.254392259999989 ], [ -123.072911313999924, 49.254365798000087 ], [ -123.072920327999967, 49.253919645000018 ], [ -123.072929512999949, 49.25346830000008 ], [ -123.072942360999917, 49.253020078000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98251996", "BldgCostT": "61700086", "sL_LossRatio": "0.701765345959509", "sL_AssetLoss": "1072481", "sL_BldgLoss": "752630", "sL_StrLoss": "370080", "sL_NStrLoss": "382550", "sL_ContLoss": "319851", "geom_point": "0101000020E6100000DF7E6DBB98C45EC09C2F71DC10A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071291984999917, 49.248469560000039 ], [ -123.07129291399994, 49.24801829000009 ], [ -123.072027705999915, 49.248360562000116 ], [ -123.07230948099999, 49.248491787000091 ], [ -123.073352164999932, 49.248944313000088 ], [ -123.073312890999915, 49.250394410000062 ], [ -123.073280005999948, 49.251657297000087 ], [ -123.072594830999918, 49.251648205 ], [ -123.071977581999988, 49.251639992000037 ], [ -123.07197141899999, 49.252085229000073 ], [ -123.07196521099992, 49.252533193000062 ], [ -123.071457399999986, 49.252526589000098 ], [ -123.070501098999927, 49.25251058900006 ], [ -123.070167810999976, 49.252503304000136 ], [ -123.070180067999956, 49.25205967400003 ], [ -123.070192400999957, 49.251614007000065 ], [ -123.070214544999956, 49.250836233000086 ], [ -123.070228496999931, 49.250346707000148 ], [ -123.071090100999953, 49.250361112000043 ], [ -123.071110389999916, 49.249927180000071 ], [ -123.071133310999983, 49.249437198000066 ], [ -123.071290905999945, 49.24900639 ], [ -123.071291984999917, 49.248469560000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "391370169", "BldgCostT": "238412920", "sL_LossRatio": "0.662194329284105", "sL_AssetLoss": "2969290", "sL_BldgLoss": "1966247", "sL_StrLoss": "820950", "sL_NStrLoss": "1145297", "sL_ContLoss": "1003043", "geom_point": "0101000020E610000011D9326CD6C45EC0EE302E6E06A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073352164999932, 49.248944313000088 ], [ -123.073366575999955, 49.248497912000033 ], [ -123.07383752600002, 49.248499887000079 ], [ -123.074569036999961, 49.248503652000096 ], [ -123.0749454799999, 49.248505614000031 ], [ -123.075586, 49.24850947200013 ], [ -123.07597097799993, 49.248511797000099 ], [ -123.075962532999966, 49.248960176000061 ], [ -123.076162493999931, 49.248981787000076 ], [ -123.076811033999917, 49.248993273000039 ], [ -123.078074859999944, 49.249015588000063 ], [ -123.078060779999987, 49.249445800000139 ], [ -123.078045001999939, 49.249926374000033 ], [ -123.078033941999976, 49.250363286000045 ], [ -123.07802944299999, 49.250543145000066 ], [ -123.078021986999943, 49.250837304000058 ], [ -123.078009720999958, 49.251162188000109 ], [ -123.077991656999927, 49.251711176000072 ], [ -123.075996843000013, 49.25169764900005 ], [ -123.075342574, 49.251688031000057 ], [ -123.07461780499996, 49.251677375000035 ], [ -123.073954823999955, 49.251667440000162 ], [ -123.073280005999948, 49.251657297000087 ], [ -123.073312890999915, 49.250394410000062 ], [ -123.073352164999932, 49.248944313000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139683135", "BldgCostT": "94597078", "sL_LossRatio": "0.792912317943275", "sL_AssetLoss": "1356720", "sL_BldgLoss": "1075760", "sL_StrLoss": "488590", "sL_NStrLoss": "587170", "sL_ContLoss": "280960", "geom_point": "0101000020E61000003F24B69AF9C45EC0E1197E816AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07599902699999, 49.252600283000021 ], [ -123.075997965999974, 49.25216376500002 ], [ -123.075996843000013, 49.25169764900005 ], [ -123.077991656999927, 49.251711176000072 ], [ -123.0779752099999, 49.252207906000052 ], [ -123.077961183999932, 49.252630931000077 ], [ -123.079882289999915, 49.252658610000083 ], [ -123.079875656999974, 49.253132471000114 ], [ -123.07986970099995, 49.253557288000103 ], [ -123.07985375199992, 49.254005602000049 ], [ -123.079837506999951, 49.25446168700006 ], [ -123.077898494999943, 49.254433505000058 ], [ -123.075956703999921, 49.254405209000055 ], [ -123.075977490999961, 49.253972158000067 ], [ -123.076000468999922, 49.253493003000116 ], [ -123.07599979900003, 49.253063402000095 ], [ -123.07599902699999, 49.252600283000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224849224", "BldgCostT": "140562618", "sL_LossRatio": "0.663939095508439", "sL_AssetLoss": "2071440", "sL_BldgLoss": "1375310", "sL_StrLoss": "577880", "sL_NStrLoss": "797430", "sL_ContLoss": "696130", "geom_point": "0101000020E61000003EB1EA202DC55EC0BA206B7840A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079875656999974, 49.253132471000114 ], [ -123.079882289999915, 49.252658610000083 ], [ -123.077961183999932, 49.252630931000077 ], [ -123.0779752099999, 49.252207906000052 ], [ -123.077991656999927, 49.251711176000072 ], [ -123.078009720999958, 49.251162188000109 ], [ -123.078021986999943, 49.250837304000058 ], [ -123.079949802999963, 49.250866105000057 ], [ -123.081870798999958, 49.250894688000074 ], [ -123.083809702999957, 49.250922801000058 ], [ -123.083804156999975, 49.251357720000065 ], [ -123.08379817899997, 49.251827691000088 ], [ -123.083770002, 49.252275921000077 ], [ -123.083742812999944, 49.25270899500002 ], [ -123.081803810999972, 49.252681792000011 ], [ -123.081797995999921, 49.252948305000125 ], [ -123.081781096999975, 49.253588312000012 ], [ -123.07986970099995, 49.253557288000103 ], [ -123.079875656999974, 49.253132471000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117068749", "BldgCostT": "77119999", "sL_LossRatio": "0.721480669874027", "sL_AssetLoss": "1715845", "sL_BldgLoss": "1237949", "sL_StrLoss": "533220", "sL_NStrLoss": "704729", "sL_ContLoss": "477896", "geom_point": "0101000020E61000000E9B4C052AC55EC0BB244197F49F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078060779999987, 49.249445800000139 ], [ -123.078074859999944, 49.249015588000063 ], [ -123.076811033999917, 49.248993273000039 ], [ -123.076162493999931, 49.248981787000076 ], [ -123.075962532999966, 49.248960176000061 ], [ -123.07597097799993, 49.248511797000099 ], [ -123.076178231999947, 49.248513801000058 ], [ -123.078088697999945, 49.248534061000022 ], [ -123.079391702999942, 49.248544577000089 ], [ -123.080035092999964, 49.24854979200007 ], [ -123.081908923999947, 49.248563610000126 ], [ -123.082663902999954, 49.248569601000092 ], [ -123.083308554999945, 49.248574266000034 ], [ -123.083892509999927, 49.248578500000093 ], [ -123.083876214999933, 49.249099602000072 ], [ -123.08385896399993, 49.249558702000108 ], [ -123.083841385999975, 49.25002558500006 ], [ -123.083826744999911, 49.250440360000034 ], [ -123.083809702999957, 49.250922801000058 ], [ -123.081870798999958, 49.250894688000074 ], [ -123.079949802999963, 49.250866105000057 ], [ -123.078021986999943, 49.250837304000058 ], [ -123.07802944299999, 49.250543145000066 ], [ -123.078033941999976, 49.250363286000045 ], [ -123.078045001999939, 49.249926374000033 ], [ -123.078060779999987, 49.249445800000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82203416", "BldgCostT": "52331666", "sL_LossRatio": "0.710826566188958", "sL_AssetLoss": "1002146", "sL_BldgLoss": "712352", "sL_StrLoss": "345290", "sL_NStrLoss": "367062", "sL_ContLoss": "289794", "geom_point": "0101000020E61000007626D98F39C55EC0F34311F77D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083356687999952, 49.244616498000013 ], [ -123.083979281999945, 49.244617398000045 ], [ -123.083978153999965, 49.245033823000057 ], [ -123.083977, 49.245463202000046 ], [ -123.082734811999956, 49.245452993000065 ], [ -123.08270931599999, 49.246535990000041 ], [ -123.082681821000037, 49.247717101000035 ], [ -123.081921396999959, 49.247709989000107 ], [ -123.080076998999957, 49.247709594000128 ], [ -123.080080923999901, 49.247538595000051 ], [ -123.080089657999977, 49.247204390000093 ], [ -123.080095313999934, 49.246988587000018 ], [ -123.080108399999915, 49.246489911000033 ], [ -123.080123750999988, 49.245936334000071 ], [ -123.080137610999927, 49.245436806000072 ], [ -123.08014330499999, 49.245019002000028 ], [ -123.080143430999897, 49.245009715 ], [ -123.08014900199997, 49.24460119600009 ], [ -123.080732575999946, 49.244603085000065 ], [ -123.081357216999962, 49.244605092000043 ], [ -123.082051577999962, 49.244610344000108 ], [ -123.082746304999944, 49.24461560800011 ], [ -123.083356687999952, 49.244616498000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80693918", "BldgCostT": "51816668", "sL_LossRatio": "0.714002933877499", "sL_AssetLoss": "1160921", "sL_BldgLoss": "828901", "sL_StrLoss": "368820", "sL_NStrLoss": "460081", "sL_ContLoss": "332020", "geom_point": "0101000020E61000008BB65B7966C55EC06C865CC2849F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083979281999945, 49.244617398000045 ], [ -123.085928891, 49.244624185000127 ], [ -123.085911414999913, 49.245042108000092 ], [ -123.085893306999964, 49.245475298000102 ], [ -123.085868054999978, 49.246004378000052 ], [ -123.085841296999931, 49.246565707000038 ], [ -123.085825743, 49.247020252000034 ], [ -123.085808312999959, 49.247529512000057 ], [ -123.083921506999971, 49.247505601000064 ], [ -123.0839144, 49.247727898000058 ], [ -123.083306899999954, 49.247722576000129 ], [ -123.082681821000037, 49.247717101000035 ], [ -123.08270931599999, 49.246535990000041 ], [ -123.082734811999956, 49.245452993000065 ], [ -123.083977, 49.245463202000046 ], [ -123.083978153999965, 49.245033823000057 ], [ -123.083979281999945, 49.244617398000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97846017", "BldgCostT": "63120229", "sL_LossRatio": "0.730193402648586", "sL_AssetLoss": "1206757", "sL_BldgLoss": "881166", "sL_StrLoss": "408200", "sL_NStrLoss": "472966", "sL_ContLoss": "325591", "geom_point": "0101000020E6100000F39A479385C55EC0D0777D073B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085911414999913, 49.245042108000092 ], [ -123.085928891, 49.244624185000127 ], [ -123.083979281999945, 49.244617398000045 ], [ -123.083998261999952, 49.244261089000062 ], [ -123.084017484999947, 49.243900495000105 ], [ -123.084034495999944, 49.243236199000087 ], [ -123.085952990999957, 49.243256502000065 ], [ -123.08598159099995, 49.242539393000079 ], [ -123.087882099999916, 49.24256101200006 ], [ -123.087881392999961, 49.243069932000019 ], [ -123.087881113999956, 49.243277102 ], [ -123.087873502999926, 49.243506607000064 ], [ -123.087855516, 49.243960374000039 ], [ -123.087826483999976, 49.24469339400013 ], [ -123.087806995000022, 49.245486496000112 ], [ -123.087136645999948, 49.245483491000066 ], [ -123.086605697999943, 49.245481095000137 ], [ -123.085893306999964, 49.245475298000102 ], [ -123.085911414999913, 49.245042108000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234357396", "BldgCostT": "155211525", "sL_LossRatio": "0.788732300943655", "sL_AssetLoss": "1356852", "sL_BldgLoss": "1070193", "sL_StrLoss": "515150", "sL_NStrLoss": "555043", "sL_ContLoss": "286659", "geom_point": "0101000020E6100000188AE74BB3C55EC0E10A49E23C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089604273999967, 49.242585235000142 ], [ -123.09031999499993, 49.242595304000062 ], [ -123.090305271999952, 49.243531690000076 ], [ -123.090274688999969, 49.244566702000036 ], [ -123.090270627999985, 49.244741407000078 ], [ -123.090210815999953, 49.245542396000062 ], [ -123.089581010999964, 49.245527756000087 ], [ -123.088441073999945, 49.245501255000065 ], [ -123.087806995000022, 49.245486496000112 ], [ -123.087826483999976, 49.24469339400013 ], [ -123.087855516, 49.243960374000039 ], [ -123.087873502999926, 49.243506607000064 ], [ -123.087881113999956, 49.243277102 ], [ -123.087881392999961, 49.243069932000019 ], [ -123.087882099999916, 49.24256101200006 ], [ -123.089604273999967, 49.242585235000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193828459", "BldgCostT": "125151440", "sL_LossRatio": "0.743941215553517", "sL_AssetLoss": "1769992", "sL_BldgLoss": "1316770", "sL_StrLoss": "589160", "sL_NStrLoss": "727610", "sL_ContLoss": "453222", "geom_point": "0101000020E610000068B25FDAA4C55EC0160D940CE79E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089752036999968, 49.240291098000036 ], [ -123.090377308999962, 49.240302514000042 ], [ -123.09036078099993, 49.240850596000016 ], [ -123.090333715999975, 49.241720094000065 ], [ -123.09031999499993, 49.242595304000062 ], [ -123.089604273999967, 49.242585235000142 ], [ -123.087882099999916, 49.24256101200006 ], [ -123.08598159099995, 49.242539393000079 ], [ -123.085994236999937, 49.242109283000076 ], [ -123.085995791, 49.242055325000074 ], [ -123.086006884, 49.241677104000082 ], [ -123.08602004, 49.241263934000123 ], [ -123.086033685999965, 49.240833798000089 ], [ -123.086053673999984, 49.24027499200011 ], [ -123.086840090999914, 49.240280916000117 ], [ -123.087931295999937, 49.240287791000057 ], [ -123.08852852299999, 49.240283958000084 ], [ -123.089144295999972, 49.240279986000097 ], [ -123.089752036999968, 49.240291098000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99425372", "BldgCostT": "60051380", "sL_LossRatio": "0.681157747175724", "sL_AssetLoss": "1212700", "sL_BldgLoss": "826040", "sL_StrLoss": "356810", "sL_NStrLoss": "469230", "sL_ContLoss": "386660", "geom_point": "0101000020E6100000761E77DFABC55EC022C78435A19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089788765999984, 49.238315364000137 ], [ -123.090395887999961, 49.23831860200012 ], [ -123.09039141199996, 49.238795312000065 ], [ -123.090377308999962, 49.240302514000042 ], [ -123.089752036999968, 49.240291098000036 ], [ -123.089144295999972, 49.240279986000097 ], [ -123.08852852299999, 49.240283958000084 ], [ -123.087931295999937, 49.240287791000057 ], [ -123.086840090999914, 49.240280916000117 ], [ -123.086845348999972, 49.239868556000062 ], [ -123.08686549399998, 49.238280010000061 ], [ -123.087412206999957, 49.238286944000023 ], [ -123.087998700999933, 49.238294382000078 ], [ -123.088565595999953, 49.238302847000099 ], [ -123.089192084999951, 49.238312201000049 ], [ -123.089788765999984, 49.238315364000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97205584", "BldgCostT": "63708334", "sL_LossRatio": "0.724035873105582", "sL_AssetLoss": "1344740", "sL_BldgLoss": "973640", "sL_StrLoss": "442260", "sL_NStrLoss": "531380", "sL_ContLoss": "371100", "geom_point": "0101000020E61000008329F46E6AC55EC07F196B03A09E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.086299981999971, 49.238272190000067 ], [ -123.08686549399998, 49.238280010000061 ], [ -123.086845348999972, 49.239868556000062 ], [ -123.086840090999914, 49.240280916000117 ], [ -123.086053673999984, 49.24027499200011 ], [ -123.085728390999975, 49.240272487000013 ], [ -123.08458228799999, 49.240264885000059 ], [ -123.084115683999983, 49.240261298000043 ], [ -123.083474776999964, 49.240256596000123 ], [ -123.082859921999969, 49.24025260100008 ], [ -123.082372698999961, 49.240248405000123 ], [ -123.082384312999949, 49.23981786000013 ], [ -123.082427427999974, 49.238219500000056 ], [ -123.083002350999948, 49.238227636 ], [ -123.083545492, 49.238235286000069 ], [ -123.084101176999965, 49.2382421 ], [ -123.084640300999965, 49.238248700000092 ], [ -123.085214017999959, 49.238256925000037 ], [ -123.085772122999941, 49.238264894000103 ], [ -123.086299981999971, 49.238272190000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89221002", "BldgCostT": "57280002", "sL_LossRatio": "0.722698591062322", "sL_AssetLoss": "1156900", "sL_BldgLoss": "836090", "sL_StrLoss": "376380", "sL_NStrLoss": "459710", "sL_ContLoss": "320810", "geom_point": "0101000020E61000005E834A9EA3C55EC0655F1666639E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08924182, 49.23653539300004 ], [ -123.089786491999973, 49.236541093000035 ], [ -123.090115462999961, 49.236555667000133 ], [ -123.090462807999941, 49.236550309000052 ], [ -123.09044758099995, 49.236960715000073 ], [ -123.09044478499996, 49.237035403000029 ], [ -123.090395887999961, 49.23831860200012 ], [ -123.089788765999984, 49.238315364000137 ], [ -123.089192084999951, 49.238312201000049 ], [ -123.088565595999953, 49.238302847000099 ], [ -123.087998700999933, 49.238294382000078 ], [ -123.087412206999957, 49.238286944000023 ], [ -123.08686549399998, 49.238280010000061 ], [ -123.086299981999971, 49.238272190000067 ], [ -123.085772122999941, 49.238264894000103 ], [ -123.085792944, 49.237324037000086 ], [ -123.085811008999926, 49.236508496000091 ], [ -123.08631012599993, 49.236506192000029 ], [ -123.086891798999915, 49.236503508000084 ], [ -123.087450715999921, 49.23651167200012 ], [ -123.088060487999925, 49.236520605000059 ], [ -123.088604397999958, 49.236527396000028 ], [ -123.08924182, 49.23653539300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89124917", "BldgCostT": "58006667", "sL_LossRatio": "0.717894720700874", "sL_AssetLoss": "1173849", "sL_BldgLoss": "842700", "sL_StrLoss": "371130", "sL_NStrLoss": "471570", "sL_ContLoss": "331149", "geom_point": "0101000020E6100000A2F8842E59C55EC0741751A8619E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081927792999949, 49.236447593000037 ], [ -123.08247847899996, 49.236446301000086 ], [ -123.08302882000001, 49.236463409000052 ], [ -123.083607591, 49.236481412000018 ], [ -123.084126204999933, 49.236485387000108 ], [ -123.084726116999946, 49.236490008000054 ], [ -123.085280148999971, 49.236499455000128 ], [ -123.085811008999926, 49.236508496000091 ], [ -123.085792944, 49.237324037000086 ], [ -123.085772122999941, 49.238264894000103 ], [ -123.085214017999959, 49.238256925000037 ], [ -123.084640300999965, 49.238248700000092 ], [ -123.084101176999965, 49.2382421 ], [ -123.083545492, 49.238235286000069 ], [ -123.083002350999948, 49.238227636 ], [ -123.082427427999974, 49.238219500000056 ], [ -123.081890073999958, 49.238212765000092 ], [ -123.081316085999944, 49.238205608000108 ], [ -123.081348008999967, 49.237362798000092 ], [ -123.081382579999968, 49.236449093000047 ], [ -123.081776672999979, 49.236448021000065 ], [ -123.081927792999949, 49.236447593000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147866144", "BldgCostT": "96991523", "sL_LossRatio": "0.714556726324783", "sL_AssetLoss": "1141225", "sL_BldgLoss": "815470", "sL_StrLoss": "370090", "sL_NStrLoss": "445380", "sL_ContLoss": "325755", "geom_point": "0101000020E61000003F034DF8A3C55EC0CDC5323F2F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.084726116999946, 49.236490008000054 ], [ -123.084744806999979, 49.236092287000076 ], [ -123.084767297000013, 49.235614607000059 ], [ -123.08808779099995, 49.235670999000035 ], [ -123.088104573999956, 49.23520786900005 ], [ -123.088121593999958, 49.234736901000133 ], [ -123.088601304999926, 49.234743236000071 ], [ -123.089232810999931, 49.234751602000081 ], [ -123.089865423, 49.234759898000064 ], [ -123.090529181999926, 49.234768601000084 ], [ -123.090494694999975, 49.235690888000079 ], [ -123.090462807999941, 49.236550309000052 ], [ -123.090115462999961, 49.236555667000133 ], [ -123.089786491999973, 49.236541093000035 ], [ -123.08924182, 49.23653539300004 ], [ -123.088604397999958, 49.236527396000028 ], [ -123.088060487999925, 49.236520605000059 ], [ -123.087450715999921, 49.23651167200012 ], [ -123.086891798999915, 49.236503508000084 ], [ -123.08631012599993, 49.236506192000029 ], [ -123.085811008999926, 49.236508496000091 ], [ -123.085280148999971, 49.236499455000128 ], [ -123.084726116999946, 49.236490008000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71740417", "BldgCostT": "47061667", "sL_LossRatio": "0.731156484015277", "sL_AssetLoss": "901517", "sL_BldgLoss": "659150", "sL_StrLoss": "321510", "sL_NStrLoss": "337640", "sL_ContLoss": "242367", "geom_point": "0101000020E6100000C215A3F051C55EC0DBBD89DF1C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081076297999971, 49.236451596000066 ], [ -123.081106213999959, 49.234840895000048 ], [ -123.081799592999985, 49.234755940000092 ], [ -123.082527085999956, 49.234666796000113 ], [ -123.082538928999938, 49.234222854000045 ], [ -123.082551328999926, 49.233757608000069 ], [ -123.084768116999967, 49.23376619600004 ], [ -123.084772328999975, 49.234238785000045 ], [ -123.084776507999933, 49.234703312000121 ], [ -123.084771727999922, 49.235174647000093 ], [ -123.084767297000013, 49.235614607000059 ], [ -123.084744806999979, 49.236092287000076 ], [ -123.084726116999946, 49.236490008000054 ], [ -123.084126204999933, 49.236485387000108 ], [ -123.083607591, 49.236481412000018 ], [ -123.08302882000001, 49.236463409000052 ], [ -123.08247847899996, 49.236446301000086 ], [ -123.081927792999949, 49.236447593000037 ], [ -123.081776672999979, 49.236448021000065 ], [ -123.081382579999968, 49.236449093000047 ], [ -123.081076297999971, 49.236451596000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100708386", "BldgCostT": "61857079", "sL_LossRatio": "0.696820803818042", "sL_AssetLoss": "1064420", "sL_BldgLoss": "741710", "sL_StrLoss": "338650", "sL_NStrLoss": "403060", "sL_ContLoss": "322710", "geom_point": "0101000020E6100000C3D056CA97C55EC061BE5165F79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089308292999959, 49.232891600000144 ], [ -123.0905491, 49.232917997000101 ], [ -123.090539398, 49.23382078500002 ], [ -123.090529181999926, 49.234768601000084 ], [ -123.089865423, 49.234759898000064 ], [ -123.089232810999931, 49.234751602000081 ], [ -123.088601304999926, 49.234743236000071 ], [ -123.088121593999958, 49.234736901000133 ], [ -123.088104573999956, 49.23520786900005 ], [ -123.08808779099995, 49.235670999000035 ], [ -123.084767297000013, 49.235614607000059 ], [ -123.084771727999922, 49.235174647000093 ], [ -123.084776507999933, 49.234703312000121 ], [ -123.084772328999975, 49.234238785000045 ], [ -123.084768116999967, 49.23376619600004 ], [ -123.084800478999981, 49.233322934000057 ], [ -123.084834665999963, 49.232855831000073 ], [ -123.084835790999989, 49.232840188000083 ], [ -123.084849605999949, 49.232840369000023 ], [ -123.086917026999984, 49.232864896000095 ], [ -123.087754018999945, 49.232874201000087 ], [ -123.08783646299996, 49.232875114000088 ], [ -123.088639077999943, 49.232884023000118 ], [ -123.089294473, 49.23289130600002 ], [ -123.089308292999959, 49.232891600000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63229916", "BldgCostT": "42191666", "sL_LossRatio": "0.748839763833585", "sL_AssetLoss": "728300", "sL_BldgLoss": "545380", "sL_StrLoss": "275400", "sL_NStrLoss": "269980", "sL_ContLoss": "182920", "geom_point": "0101000020E61000008D9356D73CC55EC01A8D42B3E79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.082575383999952, 49.232763793000039 ], [ -123.083680206999986, 49.232768386000039 ], [ -123.083744186999979, 49.232799 ], [ -123.084835790999989, 49.232840188000083 ], [ -123.084834665999963, 49.232855831000073 ], [ -123.084800478999981, 49.233322934000057 ], [ -123.084768116999967, 49.23376619600004 ], [ -123.082551328999926, 49.233757608000069 ], [ -123.082538928999938, 49.234222854000045 ], [ -123.082527085999956, 49.234666796000113 ], [ -123.081799592999985, 49.234755940000092 ], [ -123.081106213999959, 49.234840895000048 ], [ -123.08041410599999, 49.23483219500006 ], [ -123.079738412999944, 49.23482369300006 ], [ -123.079792214999912, 49.233180610000012 ], [ -123.079807, 49.232729383000091 ], [ -123.08120370599994, 49.232743794000093 ], [ -123.082575383999952, 49.232763793000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190461101", "BldgCostT": "113162222", "sL_LossRatio": "0.661809990666363", "sL_AssetLoss": "2721340", "sL_BldgLoss": "1801010", "sL_StrLoss": "753220", "sL_NStrLoss": "1047790", "sL_ContLoss": "920330", "geom_point": "0101000020E61000005A5B91FB8AC55EC0FF7298F5839D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083744186999979, 49.232799 ], [ -123.083680206999986, 49.232768386000039 ], [ -123.082575383999952, 49.232763793000039 ], [ -123.082588281, 49.232378813000011 ], [ -123.082617767999977, 49.23149750500005 ], [ -123.082637997999896, 49.230892702000105 ], [ -123.082659516999954, 49.22906559300003 ], [ -123.083276219999945, 49.229074018000091 ], [ -123.083804799999911, 49.229081210000111 ], [ -123.083921679999932, 49.2290825480001 ], [ -123.084429955, 49.229088475000026 ], [ -123.085146386, 49.229096794000085 ], [ -123.085197088999905, 49.227305597000118 ], [ -123.085840574000017, 49.227313745000089 ], [ -123.086579693999965, 49.227323110000043 ], [ -123.087214042999989, 49.227331562000074 ], [ -123.087960899999956, 49.227341504000016 ], [ -123.08790789599999, 49.229126407000088 ], [ -123.088536683999934, 49.229133133000111 ], [ -123.089292205999968, 49.229141207000026 ], [ -123.089924200999974, 49.229151904000069 ], [ -123.090633289999957, 49.229163891000042 ], [ -123.090586018999957, 49.230094107000063 ], [ -123.090601002, 49.230994397000138 ], [ -123.090552396999982, 49.232820802000056 ], [ -123.090549450999944, 49.232908283000071 ], [ -123.0905491, 49.232917997000101 ], [ -123.089308292999959, 49.232891600000144 ], [ -123.089294473, 49.23289130600002 ], [ -123.088639077999943, 49.232884023000118 ], [ -123.08783646299996, 49.232875114000088 ], [ -123.087754018999945, 49.232874201000087 ], [ -123.086917026999984, 49.232864896000095 ], [ -123.084849605999949, 49.232840369000023 ], [ -123.084835790999989, 49.232840188000083 ], [ -123.083744186999979, 49.232799 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100149999", "BldgCostT": "66444999", "sL_LossRatio": "0.747141893991571", "sL_AssetLoss": "1100554", "sL_BldgLoss": "822270", "sL_StrLoss": "403230", "sL_NStrLoss": "419040", "sL_ContLoss": "278284", "geom_point": "0101000020E61000005ECB3BB92CC55EC0E20EFEF2879D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081957304999932, 49.229060007000086 ], [ -123.082659516999954, 49.22906559300003 ], [ -123.082637997999896, 49.230892702000105 ], [ -123.082617767999977, 49.23149750500005 ], [ -123.082588281, 49.232378813000011 ], [ -123.082575383999952, 49.232763793000039 ], [ -123.08120370599994, 49.232743794000093 ], [ -123.079807, 49.232729383000091 ], [ -123.07982089799998, 49.23234379900002 ], [ -123.079875295999912, 49.230836787000058 ], [ -123.079147022999933, 49.230787870000071 ], [ -123.078483607999928, 49.230743310000065 ], [ -123.078541005999938, 49.229024290000091 ], [ -123.079196966999973, 49.229031101000054 ], [ -123.079940312999938, 49.229038786000054 ], [ -123.080611547999936, 49.229046684000082 ], [ -123.081294187999944, 49.229054699000109 ], [ -123.081957304999932, 49.229060007000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91458334", "BldgCostT": "60978334", "sL_LossRatio": "0.734095179252816", "sL_AssetLoss": "1223607", "sL_BldgLoss": "898244", "sL_StrLoss": "403946", "sL_NStrLoss": "494298", "sL_ContLoss": "325363", "geom_point": "0101000020E61000000F6E5B293EC55EC06EDBA460159D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.082822701999987, 49.22537580500012 ], [ -123.08386531599993, 49.225386008000072 ], [ -123.083857823999921, 49.225856087000054 ], [ -123.0838351, 49.22728670700009 ], [ -123.08382698199992, 49.227854005000047 ], [ -123.083804799999911, 49.229081210000111 ], [ -123.083276219999945, 49.229074018000091 ], [ -123.082659516999954, 49.22906559300003 ], [ -123.081957304999932, 49.229060007000086 ], [ -123.081294187999944, 49.229054699000109 ], [ -123.080611547999936, 49.229046684000082 ], [ -123.079940312999938, 49.229038786000054 ], [ -123.079989176999959, 49.227759195 ], [ -123.080001207999942, 49.227396485000035 ], [ -123.080015190999958, 49.226974409000022 ], [ -123.080029060999919, 49.226604848000122 ], [ -123.080045605999885, 49.226163595000102 ], [ -123.080047380999986, 49.225822638000047 ], [ -123.080049910999961, 49.225331309000104 ], [ -123.081439070999977, 49.225352702000031 ], [ -123.082822701999987, 49.22537580500012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53798167", "BldgCostT": "33531667", "sL_LossRatio": "0.686839998187119", "sL_AssetLoss": "860509", "sL_BldgLoss": "591032", "sL_StrLoss": "254540", "sL_NStrLoss": "336492", "sL_ContLoss": "269477", "geom_point": "0101000020E6100000AB9D5188FAC45EC0FBDF6B84559D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0778551759999, 49.230701897000117 ], [ -123.077136916999919, 49.230654595000033 ], [ -123.076424177999954, 49.230637570000106 ], [ -123.075742825999939, 49.230621307000078 ], [ -123.07579679899996, 49.229001306000022 ], [ -123.076449445999955, 49.229003639000034 ], [ -123.077137808999936, 49.229006094000106 ], [ -123.077237984, 49.227653104000055 ], [ -123.079827495999922, 49.227711610000021 ], [ -123.079989176999959, 49.227759195 ], [ -123.079940312999938, 49.229038786000054 ], [ -123.079196966999973, 49.229031101000054 ], [ -123.078541005999938, 49.229024290000091 ], [ -123.078483607999928, 49.230743310000065 ], [ -123.0778551759999, 49.230701897000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87498707", "BldgCostT": "55982040", "sL_LossRatio": "0.707140986198331", "sL_AssetLoss": "1065161", "sL_BldgLoss": "753219", "sL_StrLoss": "352750", "sL_NStrLoss": "400469", "sL_ContLoss": "311942", "geom_point": "0101000020E61000006332B9A4ECC45EC0BCF9A99E0A9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074406382999925, 49.228997811000056 ], [ -123.074471605, 49.227157389000119 ], [ -123.074526711, 49.225691593000079 ], [ -123.074542721999961, 49.225266698000048 ], [ -123.075924495999971, 49.225273610000102 ], [ -123.077324287999915, 49.225279999000101 ], [ -123.078683019999971, 49.225305110000114 ], [ -123.080049910999961, 49.225331309000104 ], [ -123.080047380999986, 49.225822638000047 ], [ -123.080045605999885, 49.226163595000102 ], [ -123.080029060999919, 49.226604848000122 ], [ -123.080015190999958, 49.226974409000022 ], [ -123.080001207999942, 49.227396485000035 ], [ -123.079989176999959, 49.227759195 ], [ -123.079827495999922, 49.227711610000021 ], [ -123.077237984, 49.227653104000055 ], [ -123.077137808999936, 49.229006094000106 ], [ -123.076449445999955, 49.229003639000034 ], [ -123.07579679899996, 49.229001306000022 ], [ -123.075089495999947, 49.228999522000024 ], [ -123.074406382999925, 49.228997811000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90644415", "BldgCostT": "56236665", "sL_LossRatio": "0.702918260673825", "sL_AssetLoss": "906259", "sL_BldgLoss": "637026", "sL_StrLoss": "293970", "sL_NStrLoss": "343056", "sL_ContLoss": "269233", "geom_point": "0101000020E610000093FD987BADC45EC08488A3C4119D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073160994999967, 49.225257098000107 ], [ -123.074542721999961, 49.225266698000048 ], [ -123.074526711, 49.225691593000079 ], [ -123.074471605, 49.227157389000119 ], [ -123.074406382999925, 49.228997811000056 ], [ -123.07364860199999, 49.228978226000024 ], [ -123.073023491999919, 49.228962101000057 ], [ -123.072330047999969, 49.228949618000115 ], [ -123.071650894999934, 49.228937407000096 ], [ -123.071660394999981, 49.228525992000066 ], [ -123.071681582999986, 49.227689689000073 ], [ -123.071696506999899, 49.227127096000046 ], [ -123.071746277999949, 49.225674831000077 ], [ -123.071761894999966, 49.22521918700005 ], [ -123.073160994999967, 49.225257098000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149678417", "BldgCostT": "100096667", "sL_LossRatio": "0.750568150324261", "sL_AssetLoss": "1082460", "sL_BldgLoss": "812460", "sL_StrLoss": "404930", "sL_NStrLoss": "407530", "sL_ContLoss": "270000", "geom_point": "0101000020E6100000498E6C957DC45EC0A10C454F049D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069809692999954, 49.228484703000078 ], [ -123.069840886999941, 49.22766400800014 ], [ -123.068355501999989, 49.227644397000077 ], [ -123.068409399999936, 49.225632647000118 ], [ -123.068421285999975, 49.225188698000053 ], [ -123.069052517, 49.225192400000054 ], [ -123.069937405999951, 49.225200206000075 ], [ -123.071761894999966, 49.22521918700005 ], [ -123.071746277999949, 49.225674831000077 ], [ -123.071696506999899, 49.227127096000046 ], [ -123.071681582999986, 49.227689689000073 ], [ -123.071660394999981, 49.228525992000066 ], [ -123.069809692999954, 49.228484703000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100212468", "BldgCostT": "64255411", "sL_LossRatio": "0.736995083101559", "sL_AssetLoss": "1037646", "sL_BldgLoss": "764740", "sL_StrLoss": "368710", "sL_NStrLoss": "396030", "sL_ContLoss": "272906", "geom_point": "0101000020E6100000D5015A0450C45EC061C247484D9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068355501999989, 49.227644397000077 ], [ -123.069840886999941, 49.22766400800014 ], [ -123.069809692999954, 49.228484703000078 ], [ -123.069801565999938, 49.228671111000061 ], [ -123.069788013, 49.228982287000065 ], [ -123.06904580399997, 49.228980338000035 ], [ -123.068319315999958, 49.228978393000098 ], [ -123.06828043099992, 49.230528500000041 ], [ -123.067579600999949, 49.230518091000071 ], [ -123.066967898999962, 49.230509007000087 ], [ -123.066260020999977, 49.230507030000076 ], [ -123.065566392, 49.230505108000088 ], [ -123.065567802999965, 49.230375508000066 ], [ -123.065570079999944, 49.230258810000102 ], [ -123.065585584999937, 49.229464295000085 ], [ -123.065613590999973, 49.228564317000128 ], [ -123.065659708999974, 49.227639498000038 ], [ -123.06582431, 49.22761958899999 ], [ -123.066324759999972, 49.227622045000061 ], [ -123.067033301999956, 49.227625492000136 ], [ -123.067643241999974, 49.227634215000073 ], [ -123.068355501999989, 49.227644397000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138512052", "BldgCostT": "92763745", "sL_LossRatio": "0.777420293731268", "sL_AssetLoss": "1271230", "sL_BldgLoss": "988280", "sL_StrLoss": "446460", "sL_NStrLoss": "541820", "sL_ContLoss": "282950", "geom_point": "0101000020E610000093F7FDDD73C45EC05207D4F68A9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068685666999912, 49.232633925000137 ], [ -123.068687076999964, 49.232568191000077 ], [ -123.066915225999949, 49.2325371290001 ], [ -123.066967898999962, 49.230509007000087 ], [ -123.067579600999949, 49.230518091000071 ], [ -123.06828043099992, 49.230528500000041 ], [ -123.068319315999958, 49.228978393000098 ], [ -123.06904580399997, 49.228980338000035 ], [ -123.069788013, 49.228982287000065 ], [ -123.069801565999938, 49.228671111000061 ], [ -123.069809692999954, 49.228484703000078 ], [ -123.071660394999981, 49.228525992000066 ], [ -123.071650894999934, 49.228937407000096 ], [ -123.071572691999961, 49.230568391000141 ], [ -123.071526144999922, 49.232206003000037 ], [ -123.071514108999963, 49.23262970800004 ], [ -123.070111683999926, 49.232618620000075 ], [ -123.068941433999953, 49.232605742000061 ], [ -123.068824256999946, 49.232634979000075 ], [ -123.068685666999912, 49.232633925000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202335249", "BldgCostT": "138909999", "sL_LossRatio": "0.778534602003605", "sL_AssetLoss": "954280", "sL_BldgLoss": "742940", "sL_StrLoss": "387190", "sL_NStrLoss": "355750", "sL_ContLoss": "211340", "geom_point": "0101000020E61000006D51B010A7C45EC0CC3206CE809D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07364860199999, 49.228978226000024 ], [ -123.074406382999925, 49.228997811000056 ], [ -123.074346530999946, 49.230601395000114 ], [ -123.073608642999943, 49.23059291600007 ], [ -123.072965107999934, 49.230585503000071 ], [ -123.072918011999946, 49.232232364000033 ], [ -123.072905772999917, 49.232658477000044 ], [ -123.071514108999963, 49.23262970800004 ], [ -123.071526144999922, 49.232206003000037 ], [ -123.071572691999961, 49.230568391000141 ], [ -123.071650894999934, 49.228937407000096 ], [ -123.072330047999969, 49.228949618000115 ], [ -123.073023491999919, 49.228962101000057 ], [ -123.07364860199999, 49.228978226000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71767416", "BldgCostT": "46926666", "sL_LossRatio": "0.740835508484829", "sL_AssetLoss": "719107", "sL_BldgLoss": "532740", "sL_StrLoss": "258750", "sL_NStrLoss": "273990", "sL_ContLoss": "186367", "geom_point": "0101000020E610000076E79A13C5C45EC0D1C931DD949D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075089495999947, 49.228999522000024 ], [ -123.07579679899996, 49.229001306000022 ], [ -123.075742825999939, 49.230621307000078 ], [ -123.075685356999955, 49.232302682000103 ], [ -123.075674374999934, 49.232623678000117 ], [ -123.07429157699994, 49.232628522000013 ], [ -123.074136491999923, 49.232627008000065 ], [ -123.073996623999946, 49.232668270000111 ], [ -123.072905772999917, 49.232658477000044 ], [ -123.072918011999946, 49.232232364000033 ], [ -123.072965107999934, 49.230585503000071 ], [ -123.073608642999943, 49.23059291600007 ], [ -123.074346530999946, 49.230601395000114 ], [ -123.074406382999925, 49.228997811000056 ], [ -123.075089495999947, 49.228999522000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125377083", "BldgCostT": "85548333", "sL_LossRatio": "0.795418438213978", "sL_AssetLoss": "660910", "sL_BldgLoss": "525700", "sL_StrLoss": "279460", "sL_NStrLoss": "246240", "sL_ContLoss": "135210", "geom_point": "0101000020E6100000EF24E0DFF9C45EC07C3C25CEA79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079333724999941, 49.232724698 ], [ -123.079288591999969, 49.232676584000032 ], [ -123.078410702, 49.23266449000009 ], [ -123.077759746999973, 49.232655146000035 ], [ -123.07706650199998, 49.232645201000068 ], [ -123.075688191, 49.232623917000126 ], [ -123.075674374999934, 49.232623678000117 ], [ -123.075685356999955, 49.232302682000103 ], [ -123.075742825999939, 49.230621307000078 ], [ -123.076424177999954, 49.230637570000106 ], [ -123.077136916999919, 49.230654595000033 ], [ -123.0778551759999, 49.230701897000117 ], [ -123.078483607999928, 49.230743310000065 ], [ -123.079147022999933, 49.230787870000071 ], [ -123.079875295999912, 49.230836787000058 ], [ -123.07982089799998, 49.23234379900002 ], [ -123.079807, 49.232729383000091 ], [ -123.079333724999941, 49.232724698 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108331478", "BldgCostT": "68079857", "sL_LossRatio": "0.690616377197871", "sL_AssetLoss": "1489510", "sL_BldgLoss": "1028680", "sL_StrLoss": "441580", "sL_NStrLoss": "587100", "sL_ContLoss": "460830", "geom_point": "0101000020E61000001E7608B1EDC45EC009866B9CEA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07429157699994, 49.232628522000013 ], [ -123.075674374999934, 49.232623678000117 ], [ -123.075688191, 49.232623917000126 ], [ -123.07706650199998, 49.232645201000068 ], [ -123.077759746999973, 49.232655146000035 ], [ -123.078410702, 49.23266449000009 ], [ -123.079288591999969, 49.232676584000032 ], [ -123.079333724999941, 49.232724698 ], [ -123.079807, 49.232729383000091 ], [ -123.079792214999912, 49.233180610000012 ], [ -123.079738412999944, 49.23482369300006 ], [ -123.079026913999911, 49.234815441000052 ], [ -123.078344516999891, 49.234807496000073 ], [ -123.077639467999944, 49.234799718 ], [ -123.076994524999961, 49.234792596000027 ], [ -123.076265711999952, 49.234784930000039 ], [ -123.075586705999967, 49.234777791000106 ], [ -123.074878747999961, 49.234769757000052 ], [ -123.074214745999967, 49.234762229000097 ], [ -123.074274352999979, 49.233112795000118 ], [ -123.074288579, 49.232719419000063 ], [ -123.07429157699994, 49.232628522000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92135417", "BldgCostT": "62101667", "sL_LossRatio": "0.73730416953634", "sL_AssetLoss": "1263210", "sL_BldgLoss": "931370", "sL_StrLoss": "423140", "sL_NStrLoss": "508230", "sL_ContLoss": "331840", "geom_point": "0101000020E610000044CE1D58A9C45EC0303DCC240B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074136491999923, 49.232627008000065 ], [ -123.07429157699994, 49.232628522000013 ], [ -123.074288579, 49.232719419000063 ], [ -123.074274352999979, 49.233112795000118 ], [ -123.074214745999967, 49.234762229000097 ], [ -123.074166490999943, 49.23640545600005 ], [ -123.074154892999928, 49.236799988000065 ], [ -123.072773508999887, 49.236781499000138 ], [ -123.071387898999902, 49.236763594000095 ], [ -123.071399384999893, 49.236388760000054 ], [ -123.071450201999966, 49.234731295000081 ], [ -123.071500163999943, 49.233087752000124 ], [ -123.071514108999963, 49.23262970800004 ], [ -123.072905772999917, 49.232658477000044 ], [ -123.073996623999946, 49.232668270000111 ], [ -123.074136491999923, 49.232627008000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122387999", "BldgCostT": "78449999", "sL_LossRatio": "0.718243947410614", "sL_AssetLoss": "1397088", "sL_BldgLoss": "1003450", "sL_StrLoss": "461670", "sL_NStrLoss": "541780", "sL_ContLoss": "393638", "geom_point": "0101000020E6100000ABB2EF8AE0C45EC062A50F7E5E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074154892999928, 49.236799988000065 ], [ -123.074166490999943, 49.23640545600005 ], [ -123.074214745999967, 49.234762229000097 ], [ -123.074878747999961, 49.234769757000052 ], [ -123.075586705999967, 49.234777791000106 ], [ -123.076265711999952, 49.234784930000039 ], [ -123.076994524999961, 49.234792596000027 ], [ -123.077639467999944, 49.234799718 ], [ -123.078344516999891, 49.234807496000073 ], [ -123.078292147999974, 49.236438608000078 ], [ -123.078278805999943, 49.23685420000006 ], [ -123.079122385999966, 49.236868008000044 ], [ -123.079108243999926, 49.237301873 ], [ -123.07910564899997, 49.237382284000049 ], [ -123.079094411999975, 49.237727495000094 ], [ -123.079078914999954, 49.238191892000032 ], [ -123.079066506999979, 49.238563605000124 ], [ -123.076713399999946, 49.238535899000041 ], [ -123.076609521999941, 49.238963277000089 ], [ -123.076513321, 49.239359195000063 ], [ -123.076367593999919, 49.24021190000007 ], [ -123.075995353999957, 49.240207364000049 ], [ -123.074917306999964, 49.240194212000041 ], [ -123.074240967999941, 49.240189948000065 ], [ -123.074009991999944, 49.240188497000112 ], [ -123.074035905999935, 49.239777673000056 ], [ -123.074062898999969, 49.239349504000081 ], [ -123.074078203999989, 49.23891486900002 ], [ -123.074092376999928, 49.238511593000034 ], [ -123.074109527999937, 49.238060399000076 ], [ -123.074120436999976, 49.237772748000076 ], [ -123.074123598999947, 49.237689196000062 ], [ -123.074154892999928, 49.236799988000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99493136", "BldgCostT": "64622079", "sL_LossRatio": "0.717951308942092", "sL_AssetLoss": "1385470", "sL_BldgLoss": "994700", "sL_StrLoss": "449310", "sL_NStrLoss": "545390", "sL_ContLoss": "390770", "geom_point": "0101000020E61000004CB7D3739EC45EC002FA5CF17D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071333649999971, 49.238044163000019 ], [ -123.071352487999917, 49.237607607000051 ], [ -123.068598924999932, 49.237551696000082 ], [ -123.068608328999957, 49.237173022000043 ], [ -123.068619362999954, 49.236727196000039 ], [ -123.070011893999919, 49.236744293000115 ], [ -123.071387898999902, 49.236763594000095 ], [ -123.072773508999887, 49.236781499000138 ], [ -123.074154892999928, 49.236799988000065 ], [ -123.074123598999947, 49.237689196000062 ], [ -123.074120436999976, 49.237772748000076 ], [ -123.074109527999937, 49.238060399000076 ], [ -123.074092376999928, 49.238511593000034 ], [ -123.074078203999989, 49.23891486900002 ], [ -123.074062898999969, 49.239349504000081 ], [ -123.074035905999935, 49.239777673000056 ], [ -123.074009991999944, 49.240188497000112 ], [ -123.073629920999934, 49.240184504000062 ], [ -123.07290828, 49.240179606000055 ], [ -123.07221617899998, 49.240174893000066 ], [ -123.071481405999975, 49.240145426000012 ], [ -123.071246500000015, 49.240135985000052 ], [ -123.071264173, 49.239725721000035 ], [ -123.071282111999935, 49.239310000000103 ], [ -123.071298775999978, 49.238889332000085 ], [ -123.071317028999914, 49.238430007000076 ], [ -123.071333649999971, 49.238044163000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69413084", "BldgCostT": "44038334", "sL_LossRatio": "0.710342046001994", "sL_AssetLoss": "892570", "sL_BldgLoss": "634030", "sL_StrLoss": "292700", "sL_NStrLoss": "341330", "sL_ContLoss": "258540", "geom_point": "0101000020E610000033AF3CAB79C45EC0012DD988929E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068598924999932, 49.237551696000082 ], [ -123.071352487999917, 49.237607607000051 ], [ -123.071333649999971, 49.238044163000019 ], [ -123.071317028999914, 49.238430007000076 ], [ -123.071298775999978, 49.238889332000085 ], [ -123.071282111999935, 49.239310000000103 ], [ -123.071264173, 49.239725721000035 ], [ -123.071246500000015, 49.240135985000052 ], [ -123.07087599599997, 49.240132192000061 ], [ -123.070175187999951, 49.240122028000044 ], [ -123.06852319799998, 49.240097999000106 ], [ -123.068528523999959, 49.239700836000054 ], [ -123.068534309999976, 49.239269583000087 ], [ -123.068551234999958, 49.23886399200012 ], [ -123.068571592999916, 49.238376102000039 ], [ -123.068584621999932, 49.237982603000056 ], [ -123.068598924999932, 49.237551696000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85439348", "BldgCostT": "51574015", "sL_LossRatio": "0.670696898283004", "sL_AssetLoss": "1024755", "sL_BldgLoss": "687300", "sL_StrLoss": "304320", "sL_NStrLoss": "382980", "sL_ContLoss": "337455", "geom_point": "0101000020E61000009E5ADF5549C45EC08023475B919E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065420711999977, 49.238130994000052 ], [ -123.065433994999978, 49.23748640000008 ], [ -123.065607899999961, 49.237515402000099 ], [ -123.066022014999973, 49.237520427000064 ], [ -123.068598924999932, 49.237551696000082 ], [ -123.068584621999932, 49.237982603000056 ], [ -123.068571592999916, 49.238376102000039 ], [ -123.068551234999958, 49.23886399200012 ], [ -123.068534309999976, 49.239269583000087 ], [ -123.068528523999959, 49.239700836000054 ], [ -123.06852319799998, 49.240097999000106 ], [ -123.06801521899996, 49.240097697000081 ], [ -123.067344231, 49.240095249000028 ], [ -123.06659838399996, 49.240092501000099 ], [ -123.065956591999949, 49.240091725000113 ], [ -123.065765006, 49.240091494000069 ], [ -123.065367504999983, 49.240059108000054 ], [ -123.065390107999974, 49.239223693000078 ], [ -123.065396199999967, 49.238953694000017 ], [ -123.065414189999942, 49.238342491000054 ], [ -123.065420711999977, 49.238130994000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176259667", "BldgCostT": "118161667", "sL_LossRatio": "0.760328190240321", "sL_AssetLoss": "1650628", "sL_BldgLoss": "1255019", "sL_StrLoss": "599330", "sL_NStrLoss": "655689", "sL_ContLoss": "395609", "geom_point": "0101000020E610000079B3D4B46AC45EC03FE477E4D99E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065349904999906, 49.240684607000112 ], [ -123.065367504999983, 49.240059108000054 ], [ -123.065765006, 49.240091494000069 ], [ -123.065956591999949, 49.240091725000113 ], [ -123.06659838399996, 49.240092501000099 ], [ -123.067344231, 49.240095249000028 ], [ -123.06801521899996, 49.240097697000081 ], [ -123.06852319799998, 49.240097999000106 ], [ -123.070175187999951, 49.240122028000044 ], [ -123.07087599599997, 49.240132192000061 ], [ -123.071246500000015, 49.240135985000052 ], [ -123.071481405999975, 49.240145426000012 ], [ -123.07221617899998, 49.240174893000066 ], [ -123.07290828, 49.240179606000055 ], [ -123.073629920999934, 49.240184504000062 ], [ -123.07359100399999, 49.241629189000058 ], [ -123.072869221999937, 49.241618909000074 ], [ -123.072190298999956, 49.24160920100006 ], [ -123.071413756, 49.241597277000103 ], [ -123.070815694999965, 49.241588111000112 ], [ -123.07013584799995, 49.241577254000042 ], [ -123.069450709, 49.241566292000101 ], [ -123.068692754999972, 49.241559885000065 ], [ -123.068006897999979, 49.241554090000101 ], [ -123.067305185999942, 49.241548557000066 ], [ -123.066605599999932, 49.241543005000075 ], [ -123.066674211999924, 49.241652994000063 ], [ -123.066617771999987, 49.242871095000055 ], [ -123.065904962999966, 49.242859835000061 ], [ -123.065352994999969, 49.242851100000053 ], [ -123.06526799, 49.242826309000051 ], [ -123.065303817999975, 49.24152290200005 ], [ -123.065349904999906, 49.240684607000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110767751", "BldgCostT": "72880001", "sL_LossRatio": "0.73733869290081", "sL_AssetLoss": "1490170", "sL_BldgLoss": "1098760", "sL_StrLoss": "509050", "sL_NStrLoss": "589710", "sL_ContLoss": "391410", "geom_point": "0101000020E6100000C0A07D9383C45EC0C2340C1F119F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072869221999937, 49.241618909000074 ], [ -123.07359100399999, 49.241629189000058 ], [ -123.073547081999948, 49.243022397000047 ], [ -123.073323885999955, 49.243019531000051 ], [ -123.072856662999982, 49.243013529000066 ], [ -123.07215439299992, 49.243004486000061 ], [ -123.07214283899999, 49.243530310000061 ], [ -123.072132298, 49.244008201000085 ], [ -123.07143229899999, 49.244001794000035 ], [ -123.07070168599995, 49.243996495000019 ], [ -123.070025417999943, 49.243991603000012 ], [ -123.068640908999924, 49.243981032000114 ], [ -123.067955596999923, 49.243975789000089 ], [ -123.06799425399997, 49.242949353 ], [ -123.06799839599995, 49.242838876000064 ], [ -123.068044805999961, 49.241606513000072 ], [ -123.068006897999979, 49.241554090000101 ], [ -123.068692754999972, 49.241559885000065 ], [ -123.069450709, 49.241566292000101 ], [ -123.07013584799995, 49.241577254000042 ], [ -123.070815694999965, 49.241588111000112 ], [ -123.071413756, 49.241597277000103 ], [ -123.072190298999956, 49.24160920100006 ], [ -123.072869221999937, 49.241618909000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252303417", "BldgCostT": "169241667", "sL_LossRatio": "0.761123651222834", "sL_AssetLoss": "1786711", "sL_BldgLoss": "1359908", "sL_StrLoss": "632460", "sL_NStrLoss": "727448", "sL_ContLoss": "426803", "geom_point": "0101000020E6100000489CE46059C45EC009DB60F2509F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.067305185999942, 49.241548557000066 ], [ -123.068006897999979, 49.241554090000101 ], [ -123.068044805999961, 49.241606513000072 ], [ -123.06799839599995, 49.242838876000064 ], [ -123.06799425399997, 49.242949353 ], [ -123.067955596999923, 49.243975789000089 ], [ -123.067888101999984, 49.245000885000174 ], [ -123.06939797699999, 49.245062591000107 ], [ -123.069997505999979, 49.245087098000099 ], [ -123.069987387, 49.245616408000075 ], [ -123.069957071999937, 49.246896238000019 ], [ -123.06994531399999, 49.247392599000051 ], [ -123.069023409999915, 49.246963105000091 ], [ -123.068793919999933, 49.246856801000028 ], [ -123.068546968999925, 49.246736458000079 ], [ -123.067834705999928, 49.24638939400009 ], [ -123.067165105999919, 49.246079653000052 ], [ -123.066531091999963, 49.245786389000088 ], [ -123.06654267499998, 49.245396541000041 ], [ -123.066617771999987, 49.242871095000055 ], [ -123.066674211999924, 49.241652994000063 ], [ -123.066605599999932, 49.241543005000075 ], [ -123.067305185999942, 49.241548557000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87335168", "BldgCostT": "56106668", "sL_LossRatio": "0.712794544988988", "sL_AssetLoss": "1097413", "sL_BldgLoss": "782230", "sL_StrLoss": "361240", "sL_NStrLoss": "420990", "sL_ContLoss": "315183", "geom_point": "0101000020E6100000882968C57DC45EC0E47A91BF6A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07070168599995, 49.243996495000019 ], [ -123.07143229899999, 49.244001794000035 ], [ -123.071310578999942, 49.247497205000045 ], [ -123.07129291399994, 49.24801829000009 ], [ -123.06994531399999, 49.247392599000051 ], [ -123.069957071999937, 49.246896238000019 ], [ -123.069987387, 49.245616408000075 ], [ -123.069997505999979, 49.245087098000099 ], [ -123.06939797699999, 49.245062591000107 ], [ -123.067888101999984, 49.245000885000174 ], [ -123.067955596999923, 49.243975789000089 ], [ -123.068640908999924, 49.243981032000114 ], [ -123.070025417999943, 49.243991603000012 ], [ -123.07070168599995, 49.243996495000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76819000", "BldgCostT": "49675000", "sL_LossRatio": "0.733689055701828", "sL_AssetLoss": "856848", "sL_BldgLoss": "628660", "sL_StrLoss": "294080", "sL_NStrLoss": "334580", "sL_ContLoss": "228188", "geom_point": "0101000020E61000005E427893A3C45EC043D95BCA799F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073323885999955, 49.243019531000051 ], [ -123.073547081999948, 49.243022397000047 ], [ -123.073525985999964, 49.243640686000091 ], [ -123.07348168, 49.244942466000033 ], [ -123.073466383000024, 49.245391098000013 ], [ -123.073447296999959, 49.245967815000078 ], [ -123.073433019999982, 49.246399094 ], [ -123.073419843999943, 49.246813166000024 ], [ -123.073386991999925, 49.247848102000063 ], [ -123.073379672999977, 49.248081503000037 ], [ -123.073366575999955, 49.248497912000033 ], [ -123.073352164999932, 49.248944313000088 ], [ -123.07230948099999, 49.248491787000091 ], [ -123.072027705999915, 49.248360562000116 ], [ -123.07129291399994, 49.24801829000009 ], [ -123.071310578999942, 49.247497205000045 ], [ -123.07143229899999, 49.244001794000035 ], [ -123.072132298, 49.244008201000085 ], [ -123.07214283899999, 49.243530310000061 ], [ -123.07215439299992, 49.243004486000061 ], [ -123.072856662999982, 49.243013529000066 ], [ -123.073323885999955, 49.243019531000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78488040", "BldgCostT": "47540017", "sL_LossRatio": "0.714851811910827", "sL_AssetLoss": "860528", "sL_BldgLoss": "615150", "sL_StrLoss": "294340", "sL_NStrLoss": "320810", "sL_ContLoss": "245378", "geom_point": "0101000020E6100000A9FCE74001C55EC0DBE9833C6D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079510343, 49.244592044000044 ], [ -123.08014900199997, 49.24460119600009 ], [ -123.080143430999897, 49.245009715 ], [ -123.08014330499999, 49.245019002000028 ], [ -123.080137610999927, 49.245436806000072 ], [ -123.080123750999988, 49.245936334000071 ], [ -123.080108399999915, 49.246489911000033 ], [ -123.076860023999956, 49.246445769000069 ], [ -123.076236282999986, 49.246437286000067 ], [ -123.076270714999978, 49.245411310000023 ], [ -123.07628968099999, 49.244994329000129 ], [ -123.076310017999944, 49.244547598000082 ], [ -123.076941565999974, 49.244559025000036 ], [ -123.077603481999944, 49.244570992000121 ], [ -123.078227976999983, 49.244577096000107 ], [ -123.07887990899998, 49.24458298400004 ], [ -123.079510343, 49.244592044000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83099394", "BldgCostT": "53831523", "sL_LossRatio": "0.715769664809835", "sL_AssetLoss": "999552", "sL_BldgLoss": "715449", "sL_StrLoss": "322360", "sL_NStrLoss": "393089", "sL_ContLoss": "284103", "geom_point": "0101000020E610000083DBB14302C55EC0EA20F123E59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078982979999964, 49.240216988000043 ], [ -123.0801556, 49.240239692000095 ], [ -123.080165183999895, 49.24063780100002 ], [ -123.080199995000015, 49.24208558200008 ], [ -123.08020991299999, 49.242497688000121 ], [ -123.07953424899992, 49.242507702000083 ], [ -123.07894130699998, 49.242516500000121 ], [ -123.078255943000016, 49.242512872000127 ], [ -123.07766050399999, 49.242509706000128 ], [ -123.076964558999975, 49.24250942300003 ], [ -123.076376603999947, 49.24250920000005 ], [ -123.076330074999987, 49.241679192000063 ], [ -123.076356667999931, 49.240640087000052 ], [ -123.076367593999919, 49.24021190000007 ], [ -123.07769217400002, 49.240218094000085 ], [ -123.078982979999964, 49.240216988000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108658750", "BldgCostT": "71635000", "sL_LossRatio": "0.733597330224983", "sL_AssetLoss": "1252540", "sL_BldgLoss": "918860", "sL_StrLoss": "449000", "sL_NStrLoss": "469860", "sL_ContLoss": "333680", "geom_point": "0101000020E610000082F7B8E3CBC45EC06F32D38B149F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075995353999957, 49.240207364000049 ], [ -123.076367593999919, 49.24021190000007 ], [ -123.076356667999931, 49.240640087000052 ], [ -123.076330074999987, 49.241679192000063 ], [ -123.076376603999947, 49.24250920000005 ], [ -123.076359998, 49.243057304000111 ], [ -123.076338393999933, 49.243683599000079 ], [ -123.076310017999944, 49.244547598000082 ], [ -123.07628968099999, 49.244994329000129 ], [ -123.076270714999978, 49.245411310000023 ], [ -123.075938069999964, 49.245408912000123 ], [ -123.075875443999934, 49.245408456000042 ], [ -123.075539671999977, 49.245406044000084 ], [ -123.074468143999951, 49.245398313000081 ], [ -123.07412470899996, 49.245395835000082 ], [ -123.073466383000024, 49.245391098000013 ], [ -123.07348168, 49.244942466000033 ], [ -123.073525985999964, 49.243640686000091 ], [ -123.073547081999948, 49.243022397000047 ], [ -123.07359100399999, 49.241629189000058 ], [ -123.073629920999934, 49.240184504000062 ], [ -123.074009991999944, 49.240188497000112 ], [ -123.074240967999941, 49.240189948000065 ], [ -123.074917306999964, 49.240194212000041 ], [ -123.075995353999957, 49.240207364000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109731584", "BldgCostT": "73318334", "sL_LossRatio": "0.747762592880727", "sL_AssetLoss": "1305976", "sL_BldgLoss": "976560", "sL_StrLoss": "465860", "sL_NStrLoss": "510700", "sL_ContLoss": "329416", "geom_point": "0101000020E6100000D27B743418C55EC03FC437FBA09E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081890073999958, 49.238212765000092 ], [ -123.082427427999974, 49.238219500000056 ], [ -123.082384312999949, 49.23981786000013 ], [ -123.082372698999961, 49.240248405000123 ], [ -123.08155198299994, 49.240241500000103 ], [ -123.081244299999952, 49.240242211000051 ], [ -123.0801556, 49.240239692000095 ], [ -123.078982979999964, 49.240216988000043 ], [ -123.07769217400002, 49.240218094000085 ], [ -123.076367593999919, 49.24021190000007 ], [ -123.076513321, 49.239359195000063 ], [ -123.076609521999941, 49.238963277000089 ], [ -123.076713399999946, 49.238535899000041 ], [ -123.079066506999979, 49.238563605000124 ], [ -123.079078914999954, 49.238191892000032 ], [ -123.079650341999951, 49.238190744000114 ], [ -123.080222807999988, 49.238189611000045 ], [ -123.080750135999921, 49.238197325 ], [ -123.081316085999944, 49.238205608000108 ], [ -123.081890073999958, 49.238212765000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84016613", "BldgCostT": "54856935", "sL_LossRatio": "0.719774286809015", "sL_AssetLoss": "1148360", "sL_BldgLoss": "826560", "sL_StrLoss": "360420", "sL_NStrLoss": "466140", "sL_ContLoss": "321800", "geom_point": "0101000020E61000003E19DA081DC55EC0C0AFF44E439E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079108243999926, 49.237301873 ], [ -123.079122385999966, 49.236868008000044 ], [ -123.078278805999943, 49.23685420000006 ], [ -123.078292147999974, 49.236438608000078 ], [ -123.078344516999891, 49.234807496000073 ], [ -123.079026913999911, 49.234815441000052 ], [ -123.079738412999944, 49.23482369300006 ], [ -123.08041410599999, 49.23483219500006 ], [ -123.081106213999959, 49.234840895000048 ], [ -123.081076297999971, 49.236451596000066 ], [ -123.081382579999968, 49.236449093000047 ], [ -123.081348008999967, 49.237362798000092 ], [ -123.081316085999944, 49.238205608000108 ], [ -123.080750135999921, 49.238197325 ], [ -123.080222807999988, 49.238189611000045 ], [ -123.079650341999951, 49.238190744000114 ], [ -123.079078914999954, 49.238191892000032 ], [ -123.079094411999975, 49.237727495000094 ], [ -123.07910564899997, 49.237382284000049 ], [ -123.079108243999926, 49.237301873 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85154999", "BldgCostT": "56309999", "sL_LossRatio": "0.777554285176559", "sL_AssetLoss": "850140", "sL_BldgLoss": "661030", "sL_StrLoss": "325240", "sL_NStrLoss": "335790", "sL_ContLoss": "189110", "geom_point": "0101000020E61000007F8B884164C55EC00FFF44C0FC9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085728390999975, 49.240272487000013 ], [ -123.086053673999984, 49.24027499200011 ], [ -123.086033685999965, 49.240833798000089 ], [ -123.08602004, 49.241263934000123 ], [ -123.086006884, 49.241677104000082 ], [ -123.085995791, 49.242055325000074 ], [ -123.085994236999937, 49.242109283000076 ], [ -123.08598159099995, 49.242539393000079 ], [ -123.085952990999957, 49.243256502000065 ], [ -123.084034495999944, 49.243236199000087 ], [ -123.084017484999947, 49.243900495000105 ], [ -123.083998261999952, 49.244261089000062 ], [ -123.083979281999945, 49.244617398000045 ], [ -123.083356687999952, 49.244616498000013 ], [ -123.082746304999944, 49.24461560800011 ], [ -123.082761285999965, 49.242518997000083 ], [ -123.082779792999986, 49.242093847 ], [ -123.08284278299999, 49.240646307000091 ], [ -123.082859921999969, 49.24025260100008 ], [ -123.083474776999964, 49.240256596000123 ], [ -123.084115683999983, 49.240261298000043 ], [ -123.08458228799999, 49.240264885000059 ], [ -123.085728390999975, 49.240272487000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229027533", "BldgCostT": "152665546", "sL_LossRatio": "0.784738384865335", "sL_AssetLoss": "2037019", "sL_BldgLoss": "1598527", "sL_StrLoss": "760780", "sL_NStrLoss": "837747", "sL_ContLoss": "438492", "geom_point": "0101000020E6100000C76230B970C45EC0010D2E04D69F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.067806382999933, 49.2472055960001 ], [ -123.067834705999928, 49.24638939400009 ], [ -123.068546968999925, 49.246736458000079 ], [ -123.068793919999933, 49.246856801000028 ], [ -123.069023409999915, 49.246963105000091 ], [ -123.06994531399999, 49.247392599000051 ], [ -123.07129291399994, 49.24801829000009 ], [ -123.071291984999917, 49.248469560000039 ], [ -123.071290905999945, 49.24900639 ], [ -123.071133310999983, 49.249437198000066 ], [ -123.071110389999916, 49.249927180000071 ], [ -123.071090100999953, 49.250361112000043 ], [ -123.070228496999931, 49.250346707000148 ], [ -123.069874423000016, 49.250341595000044 ], [ -123.069442199, 49.250335292000081 ], [ -123.068746202999947, 49.250324513000095 ], [ -123.068304329999961, 49.25031767400008 ], [ -123.068166904999913, 49.25031555 ], [ -123.06813189199994, 49.250314993000046 ], [ -123.067806678999901, 49.250308789000094 ], [ -123.067803698999967, 49.249096291000093 ], [ -123.067929288999935, 49.248587191000105 ], [ -123.067819987999897, 49.248099610000139 ], [ -123.06781896199999, 49.24803061500009 ], [ -123.067808418999974, 49.247338110000079 ], [ -123.067806382999933, 49.2472055960001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96337949", "BldgCostT": "62032212", "sL_LossRatio": "0.710400403634982", "sL_AssetLoss": "1411176", "sL_BldgLoss": "1002500", "sL_StrLoss": "452810", "sL_NStrLoss": "549690", "sL_ContLoss": "408676", "geom_point": "0101000020E6100000AB7F00E73FC45EC0F5885E67BF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065052294999944, 49.249387216000038 ], [ -123.06507518599993, 49.248503197000055 ], [ -123.065088467999942, 49.248014749000092 ], [ -123.065098991999946, 49.247627401000067 ], [ -123.065105764999956, 49.247376135000081 ], [ -123.065122389999928, 49.246758805000042 ], [ -123.065148223999955, 49.245807386000109 ], [ -123.06517368099999, 49.245143301000091 ], [ -123.066531091999963, 49.245786389000088 ], [ -123.067165105999919, 49.246079653000052 ], [ -123.067834705999928, 49.24638939400009 ], [ -123.067806382999933, 49.2472055960001 ], [ -123.067808418999974, 49.247338110000079 ], [ -123.06781896199999, 49.24803061500009 ], [ -123.067819987999897, 49.248099610000139 ], [ -123.067929288999935, 49.248587191000105 ], [ -123.067803698999967, 49.249096291000093 ], [ -123.067806678999901, 49.250308789000094 ], [ -123.067113818999943, 49.25029900100003 ], [ -123.066774910999968, 49.250294290000063 ], [ -123.06639654199995, 49.250288154000081 ], [ -123.065789719999913, 49.250278304000112 ], [ -123.065668333999923, 49.250276457000055 ], [ -123.065030991999919, 49.250266690000053 ], [ -123.065052294999944, 49.249387216000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139993743", "BldgCostT": "83209572", "sL_LossRatio": "0.687294842107942", "sL_AssetLoss": "1336166", "sL_BldgLoss": "918340", "sL_StrLoss": "421870", "sL_NStrLoss": "496470", "sL_ContLoss": "417826", "geom_point": "0101000020E610000006FAFB5A51C45EC03F1CE22727A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069874423000016, 49.250341595000044 ], [ -123.070228496999931, 49.250346707000148 ], [ -123.070214544999956, 49.250836233000086 ], [ -123.070192400999957, 49.251614007000065 ], [ -123.070180067999956, 49.25205967400003 ], [ -123.070167810999976, 49.252503304000136 ], [ -123.069378881999938, 49.252490899000129 ], [ -123.0687215199999, 49.252479805000043 ], [ -123.068236016999933, 49.252471594000099 ], [ -123.068049009999967, 49.252409693000068 ], [ -123.067358202999941, 49.25216108400015 ], [ -123.066695320999941, 49.251922506000028 ], [ -123.066084579999938, 49.251735547000123 ], [ -123.065041984999937, 49.251416400000075 ], [ -123.064362560999896, 49.251209688000081 ], [ -123.063656825999928, 49.250995002000138 ], [ -123.063689593, 49.250259912000054 ], [ -123.064376306999961, 49.250263389000068 ], [ -123.065030991999919, 49.250266690000053 ], [ -123.065668333999923, 49.250276457000055 ], [ -123.065789719999913, 49.250278304000112 ], [ -123.06639654199995, 49.250288154000081 ], [ -123.066774910999968, 49.250294290000063 ], [ -123.067113818999943, 49.25029900100003 ], [ -123.067806678999901, 49.250308789000094 ], [ -123.06813189199994, 49.250314993000046 ], [ -123.068166904999913, 49.25031555 ], [ -123.068304329999961, 49.25031767400008 ], [ -123.068746202999947, 49.250324513000095 ], [ -123.069442199, 49.250335292000081 ], [ -123.069874423000016, 49.250341595000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70387584", "BldgCostT": "46808334", "sL_LossRatio": "0.735534369251062", "sL_AssetLoss": "864290", "sL_BldgLoss": "635715", "sL_StrLoss": "329265", "sL_NStrLoss": "306450", "sL_ContLoss": "228575", "geom_point": "0101000020E610000009A05A7504C45EC06E7751ECCF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.064385557999969, 49.246753430000062 ], [ -123.065122389999928, 49.246758805000042 ], [ -123.065105764999956, 49.247376135000081 ], [ -123.065098991999946, 49.247627401000067 ], [ -123.065088467999942, 49.248014749000092 ], [ -123.06507518599993, 49.248503197000055 ], [ -123.065052294999944, 49.249387216000038 ], [ -123.065030991999919, 49.250266690000053 ], [ -123.064376306999961, 49.250263389000068 ], [ -123.063689593, 49.250259912000054 ], [ -123.062566412999928, 49.250254497000064 ], [ -123.062551607999964, 49.250727088000112 ], [ -123.060881290999973, 49.250187908000072 ], [ -123.060430104999938, 49.250004514000096 ], [ -123.0604772199999, 49.248870808000035 ], [ -123.060507997999963, 49.248123991000043 ], [ -123.060511793999922, 49.24779238600005 ], [ -123.060518249, 49.247225890000145 ], [ -123.06052251199992, 49.246854184000078 ], [ -123.060408508999956, 49.246724991000043 ], [ -123.061115376999908, 49.246729967000057 ], [ -123.062727016999958, 49.246741296000089 ], [ -123.064385557999969, 49.246753430000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187152332", "BldgCostT": "126918332", "sL_LossRatio": "0.757968545013804", "sL_AssetLoss": "1877413", "sL_BldgLoss": "1423020", "sL_StrLoss": "655380", "sL_NStrLoss": "767640", "sL_ContLoss": "454393", "geom_point": "0101000020E61000004CF85380FBC35EC0FB66BC293CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058190009999961, 49.251480067000067 ], [ -123.059286812999986, 49.249812562000052 ], [ -123.059335339999947, 49.249738785000012 ], [ -123.059433204999934, 49.249589989000057 ], [ -123.060430104999938, 49.250004514000096 ], [ -123.060881290999973, 49.250187908000072 ], [ -123.062551607999964, 49.250727088000112 ], [ -123.062566412999928, 49.250254497000064 ], [ -123.063689593, 49.250259912000054 ], [ -123.063656825999928, 49.250995002000138 ], [ -123.064362560999896, 49.251209688000081 ], [ -123.065041984999937, 49.251416400000075 ], [ -123.065218097999917, 49.251868001000027 ], [ -123.065687194999953, 49.25244279599999 ], [ -123.066272607999963, 49.252959585000028 ], [ -123.066225749999916, 49.25308578300011 ], [ -123.066128599999928, 49.253347516000126 ], [ -123.066116590999926, 49.253699303000076 ], [ -123.066101193999955, 49.254149294000051 ], [ -123.065453984999962, 49.253967343000021 ], [ -123.06488503199995, 49.253807389000038 ], [ -123.064632375999963, 49.253736360000083 ], [ -123.064409483999924, 49.253673700000022 ], [ -123.0637422, 49.253486108000089 ], [ -123.0620927, 49.253029614000049 ], [ -123.060698393999928, 49.25264208600003 ], [ -123.05941790599995, 49.252278085000036 ], [ -123.059033477999961, 49.252168797000138 ], [ -123.058581418999935, 49.25204210400004 ], [ -123.0579315199999, 49.251873104000097 ], [ -123.058190009999961, 49.251480067000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53534749", "BldgCostT": "36184999", "sL_LossRatio": "0.744646756719985", "sL_AssetLoss": "727643", "sL_BldgLoss": "541837", "sL_StrLoss": "263990", "sL_NStrLoss": "277847", "sL_ContLoss": "185806", "geom_point": "0101000020E61000000F084A5DB4C35EC05BD6C3B817A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056620302999946, 49.249700596000011 ], [ -123.056625969999956, 49.24929611200006 ], [ -123.056626233, 49.249276722000097 ], [ -123.056632810999986, 49.248810998000039 ], [ -123.056640727999934, 49.24863986000004 ], [ -123.05665162299999, 49.248406089000035 ], [ -123.057376024999911, 49.24871970800011 ], [ -123.057990919999909, 49.248985898000058 ], [ -123.057994299999976, 49.248845407000012 ], [ -123.0604772199999, 49.248870808000035 ], [ -123.060430104999938, 49.250004514000096 ], [ -123.059433204999934, 49.249589989000057 ], [ -123.059335339999947, 49.249738785000012 ], [ -123.059286812999986, 49.249812562000052 ], [ -123.058190009999961, 49.251480067000067 ], [ -123.0579315199999, 49.251873104000097 ], [ -123.058581418999935, 49.25204210400004 ], [ -123.058344698999989, 49.252460795000054 ], [ -123.058328764999928, 49.252515133000053 ], [ -123.058295691999959, 49.25262790200005 ], [ -123.058290712, 49.253486297000023 ], [ -123.05749569699995, 49.253487373000112 ], [ -123.056592899999913, 49.253488592000075 ], [ -123.056590395999976, 49.252878708000075 ], [ -123.056596377999952, 49.252350104000122 ], [ -123.056594418999936, 49.252230194000063 ], [ -123.056595287000022, 49.252048665000061 ], [ -123.056597884999988, 49.251525909000122 ], [ -123.05660048299994, 49.250682795000074 ], [ -123.056600630999981, 49.250636454000102 ], [ -123.056600681999896, 49.25061620500005 ], [ -123.056620302999946, 49.249700596000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71375666", "BldgCostT": "48071666", "sL_LossRatio": "0.732683278282267", "sL_AssetLoss": "1149236", "sL_BldgLoss": "842026", "sL_StrLoss": "372276", "sL_NStrLoss": "469750", "sL_ContLoss": "307210", "geom_point": "0101000020E6100000D40B576AEAC35EC06F2B28D29EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056633502999915, 49.255078701000087 ], [ -123.056592899999913, 49.253488592000075 ], [ -123.05749569699995, 49.253487373000112 ], [ -123.058290712, 49.253486297000023 ], [ -123.058295691999959, 49.25262790200005 ], [ -123.058328764999928, 49.252515133000053 ], [ -123.058344698999989, 49.252460795000054 ], [ -123.058581418999935, 49.25204210400004 ], [ -123.059033477999961, 49.252168797000138 ], [ -123.05941790599995, 49.252278085000036 ], [ -123.060698393999928, 49.25264208600003 ], [ -123.0620927, 49.253029614000049 ], [ -123.0637422, 49.253486108000089 ], [ -123.064409483999924, 49.253673700000022 ], [ -123.064632375999963, 49.253736360000083 ], [ -123.06488503199995, 49.253807389000038 ], [ -123.065453984999962, 49.253967343000021 ], [ -123.066101193999955, 49.254149294000051 ], [ -123.066136093999916, 49.254640301000094 ], [ -123.066056896999939, 49.256219008000059 ], [ -123.067891782999979, 49.256287790000044 ], [ -123.067865909999966, 49.25682760200003 ], [ -123.066651997999884, 49.25682048000003 ], [ -123.066008120999953, 49.256816699000062 ], [ -123.06535749699998, 49.256831393000077 ], [ -123.063475694999923, 49.25676042900011 ], [ -123.063519391999961, 49.256641594000065 ], [ -123.063256511999967, 49.256093290000074 ], [ -123.063118388999925, 49.255463807000091 ], [ -123.062747791999954, 49.254771599000044 ], [ -123.062264186999954, 49.254384207000086 ], [ -123.061716012999938, 49.254286005000068 ], [ -123.061248388, 49.254439795000046 ], [ -123.061152384999971, 49.254825705000052 ], [ -123.061290798999963, 49.255905298000059 ], [ -123.061030599999967, 49.256445085000095 ], [ -123.060768863999911, 49.256720540000074 ], [ -123.058988007, 49.256787705000107 ], [ -123.058277193999928, 49.256776395000031 ], [ -123.057499444999962, 49.256764099000129 ], [ -123.056616680000033, 49.256750102000083 ], [ -123.056619696999974, 49.256442993000114 ], [ -123.056633502999915, 49.255078701000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230659085", "BldgCostT": "158538335", "sL_LossRatio": "0.821427474303128", "sL_AssetLoss": "1627630", "sL_BldgLoss": "1336980", "sL_StrLoss": "685930", "sL_NStrLoss": "651050", "sL_ContLoss": "290650", "geom_point": "0101000020E6100000B64B76C77DC35EC0D26F36889CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052960124999956, 49.256684913000093 ], [ -123.052969912999941, 49.255710105000048 ], [ -123.052976655999956, 49.255396285000096 ], [ -123.052986811999972, 49.254924185000085 ], [ -123.052991888999912, 49.254499100000032 ], [ -123.052158702999947, 49.254489006000036 ], [ -123.052166617999916, 49.254041508000043 ], [ -123.05216865099996, 49.253652003000134 ], [ -123.052170905999972, 49.253217387000049 ], [ -123.054536497999933, 49.253209983000048 ], [ -123.054623181999929, 49.25320925100015 ], [ -123.055738986999955, 49.253199612000095 ], [ -123.055903620999956, 49.253225713000077 ], [ -123.05602199199997, 49.25339461 ], [ -123.056177004999967, 49.253441184000032 ], [ -123.056592899999913, 49.253488592000075 ], [ -123.056633502999915, 49.255078701000087 ], [ -123.056619696999974, 49.256442993000114 ], [ -123.055826532999916, 49.256230154000015 ], [ -123.055001726999976, 49.2560088070001 ], [ -123.055003283999909, 49.256169406000041 ], [ -123.055007602, 49.25660800900004 ], [ -123.053747986999937, 49.256607806000069 ], [ -123.052960124999956, 49.256684913000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167193653", "BldgCostT": "109922308", "sL_LossRatio": "0.703157297233616", "sL_AssetLoss": "1867420", "sL_BldgLoss": "1313090", "sL_StrLoss": "587990", "sL_NStrLoss": "725100", "sL_ContLoss": "554330", "geom_point": "0101000020E6100000C2C5B4E344C35EC04BD446339EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049538598999959, 49.254479489000076 ], [ -123.049543902, 49.254029299000074 ], [ -123.049595003999968, 49.253225393000022 ], [ -123.049603335999947, 49.252411742000056 ], [ -123.04960368199994, 49.2523753030001 ], [ -123.049608192000022, 49.251548504000048 ], [ -123.050196890999942, 49.251548935000173 ], [ -123.052214900999957, 49.251550391000066 ], [ -123.052197465999924, 49.25196949800003 ], [ -123.052181023999964, 49.25236639700011 ], [ -123.052175662999957, 49.25281533100005 ], [ -123.052170905999972, 49.253217387000049 ], [ -123.05216865099996, 49.253652003000134 ], [ -123.052166617999916, 49.254041508000043 ], [ -123.052158702999947, 49.254489006000036 ], [ -123.052991888999912, 49.254499100000032 ], [ -123.052986811999972, 49.254924185000085 ], [ -123.052976655999956, 49.255396285000096 ], [ -123.052969912999941, 49.255710105000048 ], [ -123.052960124999956, 49.256684913000093 ], [ -123.052956294999944, 49.257069427000076 ], [ -123.052954798999977, 49.25721870100012 ], [ -123.052951888999985, 49.257506699000025 ], [ -123.052116416999979, 49.257576611000076 ], [ -123.051815545999929, 49.257613047000099 ], [ -123.049573407999944, 49.257884549000011 ], [ -123.049558308999934, 49.257409388000013 ], [ -123.049539211999942, 49.256828501000101 ], [ -123.049523193999946, 49.256341013000082 ], [ -123.049526095999965, 49.255910926000134 ], [ -123.049529216999986, 49.255448496000049 ], [ -123.049538598999959, 49.254479489000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97834949", "BldgCostT": "65842212", "sL_LossRatio": "0.734258483021191", "sL_AssetLoss": "1409934", "sL_BldgLoss": "1035256", "sL_StrLoss": "492440", "sL_NStrLoss": "542816", "sL_ContLoss": "374678", "geom_point": "0101000020E610000022F15D1072C35EC0741D05E33BA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055903620999956, 49.253225713000077 ], [ -123.055738986999955, 49.253199612000095 ], [ -123.054623181999929, 49.25320925100015 ], [ -123.054536497999933, 49.253209983000048 ], [ -123.052170905999972, 49.253217387000049 ], [ -123.052175662999957, 49.25281533100005 ], [ -123.052181023999964, 49.25236639700011 ], [ -123.052197465999924, 49.25196949800003 ], [ -123.052214900999957, 49.251550391000066 ], [ -123.050196890999942, 49.251548935000173 ], [ -123.049608192000022, 49.251548504000048 ], [ -123.049611538999969, 49.251134533000055 ], [ -123.049615187999947, 49.250682100000077 ], [ -123.049628985999945, 49.25068214700012 ], [ -123.052232478999926, 49.250690589000101 ], [ -123.054509704999987, 49.250686555000115 ], [ -123.055871047999958, 49.250684105000097 ], [ -123.05660048299994, 49.250682795000074 ], [ -123.056597884999988, 49.251525909000122 ], [ -123.056595287000022, 49.252048665000061 ], [ -123.056594418999936, 49.252230194000063 ], [ -123.056596377999952, 49.252350104000122 ], [ -123.056590395999976, 49.252878708000075 ], [ -123.056592899999913, 49.253488592000075 ], [ -123.056177004999967, 49.253441184000032 ], [ -123.05602199199997, 49.25339461 ], [ -123.055903620999956, 49.253225713000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108007666", "BldgCostT": "68386666", "sL_LossRatio": "0.748512836993472", "sL_AssetLoss": "921049", "sL_BldgLoss": "689417", "sL_StrLoss": "358067", "sL_NStrLoss": "331350", "sL_ContLoss": "231632", "geom_point": "0101000020E61000007C96314F78C35EC0DF6ADFD4EE9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052233011999988, 49.248823298000076 ], [ -123.052235714999981, 49.248380778000133 ], [ -123.052238405999972, 49.247938789000109 ], [ -123.054480308999956, 49.24795048500004 ], [ -123.054566108999921, 49.247984396000106 ], [ -123.05460270599994, 49.248078205000105 ], [ -123.054601462999941, 49.248388700000049 ], [ -123.054599707999941, 49.248817606000088 ], [ -123.055400602999967, 49.248815196000102 ], [ -123.05587811, 49.248813336000076 ], [ -123.056065407999967, 49.248812592000085 ], [ -123.056632810999986, 49.248810998000039 ], [ -123.056626233, 49.249276722000097 ], [ -123.056625969999956, 49.24929611200006 ], [ -123.056620302999946, 49.249700596000011 ], [ -123.056600681999896, 49.25061620500005 ], [ -123.056600630999981, 49.250636454000102 ], [ -123.05660048299994, 49.250682795000074 ], [ -123.055871047999958, 49.250684105000097 ], [ -123.054509704999987, 49.250686555000115 ], [ -123.052232478999926, 49.250690589000101 ], [ -123.052232918999948, 49.250618497000076 ], [ -123.052221468, 49.250152879000098 ], [ -123.052210680999949, 49.249714400000059 ], [ -123.052221781999904, 49.249271363000069 ], [ -123.052233011999988, 49.248823298000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98335668", "BldgCostT": "63511668", "sL_LossRatio": "0.73188446808912", "sL_AssetLoss": "1060140", "sL_BldgLoss": "775900", "sL_StrLoss": "369920", "sL_NStrLoss": "405980", "sL_ContLoss": "284240", "geom_point": "0101000020E61000008B9A019132C35EC00C2362EFEA9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049639208999949, 49.247928088000045 ], [ -123.049641299999948, 49.247528204000098 ], [ -123.050398872999949, 49.247525806000063 ], [ -123.051293792999971, 49.24752300800008 ], [ -123.05189438299999, 49.247516894000093 ], [ -123.051912909999913, 49.247938001000129 ], [ -123.052238405999972, 49.247938789000109 ], [ -123.052235714999981, 49.248380778000133 ], [ -123.052233011999988, 49.248823298000076 ], [ -123.052221781999904, 49.249271363000069 ], [ -123.052210680999949, 49.249714400000059 ], [ -123.052221468, 49.250152879000098 ], [ -123.052232918999948, 49.250618497000076 ], [ -123.052232478999926, 49.250690589000101 ], [ -123.049628985999945, 49.25068214700012 ], [ -123.049615187999947, 49.250682100000077 ], [ -123.047071826999968, 49.250678259000111 ], [ -123.047073220999962, 49.250591816000103 ], [ -123.047077945999931, 49.250137122000076 ], [ -123.047082606999979, 49.249689504000074 ], [ -123.047085201999934, 49.249255522000055 ], [ -123.047087903999937, 49.248806813000073 ], [ -123.04891616499999, 49.248803929000132 ], [ -123.049639879, 49.248802793000046 ], [ -123.049639208999949, 49.247928088000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189619916", "BldgCostT": "125786666", "sL_LossRatio": "0.766260079011223", "sL_AssetLoss": "1653436", "sL_BldgLoss": "1266962", "sL_StrLoss": "586580", "sL_NStrLoss": "680382", "sL_ContLoss": "386474", "geom_point": "0101000020E6100000499649C35FC35EC0D43FFB70949F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054566108999921, 49.247984396000106 ], [ -123.054480308999956, 49.24795048500004 ], [ -123.052238405999972, 49.247938789000109 ], [ -123.051912909999913, 49.247938001000129 ], [ -123.05189438299999, 49.247516894000093 ], [ -123.051293792999971, 49.24752300800008 ], [ -123.050398872999949, 49.247525806000063 ], [ -123.049641299999948, 49.247528204000098 ], [ -123.049644487999927, 49.247111205000074 ], [ -123.04965230599997, 49.24627548200008 ], [ -123.049655597999944, 49.245856701000037 ], [ -123.04965693099993, 49.245701431000043 ], [ -123.049658217999976, 49.245548510000077 ], [ -123.049658992999937, 49.245456889000138 ], [ -123.04964759799999, 49.244620597000036 ], [ -123.050327165999974, 49.244617107000082 ], [ -123.050423328999955, 49.244616617000105 ], [ -123.051090087999938, 49.244613195000106 ], [ -123.05177, 49.244616074000092 ], [ -123.05206208499996, 49.24461730600008 ], [ -123.052060886999968, 49.245034692000054 ], [ -123.052059683999971, 49.24545409200006 ], [ -123.054248693999966, 49.245433686000098 ], [ -123.054251316999981, 49.245870150000044 ], [ -123.054253695999989, 49.246263501000037 ], [ -123.054267802999945, 49.247122288000121 ], [ -123.055906691999922, 49.247093197000019 ], [ -123.05665428499999, 49.247107294000052 ], [ -123.056653199999943, 49.248098096000092 ], [ -123.05665162299999, 49.248406089000035 ], [ -123.056640727999934, 49.24863986000004 ], [ -123.056632810999986, 49.248810998000039 ], [ -123.056065407999967, 49.248812592000085 ], [ -123.05587811, 49.248813336000076 ], [ -123.055400602999967, 49.248815196000102 ], [ -123.054599707999941, 49.248817606000088 ], [ -123.054601462999941, 49.248388700000049 ], [ -123.05460270599994, 49.248078205000105 ], [ -123.054566108999921, 49.247984396000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77017251", "BldgCostT": "50285001", "sL_LossRatio": "0.734007158574941", "sL_AssetLoss": "967511", "sL_BldgLoss": "710160", "sL_StrLoss": "329120", "sL_NStrLoss": "381040", "sL_ContLoss": "257351", "geom_point": "0101000020E61000003D2BDCD183C35EC082DDC90A729F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054251316999981, 49.245870150000044 ], [ -123.054248693999966, 49.245433686000098 ], [ -123.052059683999971, 49.24545409200006 ], [ -123.052060886999968, 49.245034692000054 ], [ -123.05206208499996, 49.24461730600008 ], [ -123.052614004999924, 49.244619697000111 ], [ -123.05424381399996, 49.244622807000013 ], [ -123.054517840999907, 49.244621596000059 ], [ -123.056001624999979, 49.244615080000116 ], [ -123.056658706999954, 49.244612204000127 ], [ -123.056660095999959, 49.245413010000092 ], [ -123.056656700999966, 49.245792208000118 ], [ -123.056656199999964, 49.246275917000048 ], [ -123.056652686999968, 49.246699202000109 ], [ -123.05665428499999, 49.247107294000052 ], [ -123.055906691999922, 49.247093197000019 ], [ -123.054267802999945, 49.247122288000121 ], [ -123.054253695999989, 49.246263501000037 ], [ -123.054251316999981, 49.245870150000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90044583", "BldgCostT": "59418333", "sL_LossRatio": "0.749223850282896", "sL_AssetLoss": "1033950", "sL_BldgLoss": "774660", "sL_StrLoss": "390050", "sL_NStrLoss": "384610", "sL_ContLoss": "259290", "geom_point": "0101000020E61000004F2A9EA363C35EC011CF9F57389F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049979910000019, 49.244164703000067 ], [ -123.05085929699996, 49.243273695000084 ], [ -123.051643474999977, 49.242429495000067 ], [ -123.052182202999958, 49.242657548000103 ], [ -123.052746701, 49.242896504000058 ], [ -123.05323244799996, 49.243105967000126 ], [ -123.053824076999945, 49.243361089000075 ], [ -123.053484605999984, 49.24371210200006 ], [ -123.054516779999915, 49.243719198000086 ], [ -123.056000881, 49.243729379000108 ], [ -123.056659479999951, 49.243733895000048 ], [ -123.056652889999953, 49.243989594000034 ], [ -123.056658706999954, 49.244612204000127 ], [ -123.056001624999979, 49.244615080000116 ], [ -123.054517840999907, 49.244621596000059 ], [ -123.05424381399996, 49.244622807000013 ], [ -123.052614004999924, 49.244619697000111 ], [ -123.05206208499996, 49.24461730600008 ], [ -123.05177, 49.244616074000092 ], [ -123.051090087999938, 49.244613195000106 ], [ -123.050423328999955, 49.244616617000105 ], [ -123.050327165999974, 49.244617107000082 ], [ -123.04964759799999, 49.244620597000036 ], [ -123.049875904999979, 49.244270097000076 ], [ -123.049979910000019, 49.244164703000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186187644", "BldgCostT": "121241523", "sL_LossRatio": "0.733169011238939", "sL_AssetLoss": "1732370", "sL_BldgLoss": "1270120", "sL_StrLoss": "561370", "sL_NStrLoss": "708750", "sL_ContLoss": "462250", "geom_point": "0101000020E61000007F3782F990C35EC0B8FBC9D6029F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054532396999946, 49.240715854000058 ], [ -123.054535800999972, 49.24023939800005 ], [ -123.057292533999927, 49.24149274600007 ], [ -123.05750689599995, 49.241590206000083 ], [ -123.058123402999954, 49.241870507000023 ], [ -123.057325398999964, 49.242587389000072 ], [ -123.056921195999948, 49.242963705000058 ], [ -123.056759604999954, 49.243238485000084 ], [ -123.056684781999948, 49.243443701000089 ], [ -123.056659479999951, 49.243733895000048 ], [ -123.056000881, 49.243729379000108 ], [ -123.054516779999915, 49.243719198000086 ], [ -123.053484605999984, 49.24371210200006 ], [ -123.053824076999945, 49.243361089000075 ], [ -123.054387292999976, 49.242708100000044 ], [ -123.054530897999896, 49.242479608000068 ], [ -123.054531108999953, 49.241885163000092 ], [ -123.054531262999944, 49.241354430000101 ], [ -123.054531276999967, 49.241240104000106 ], [ -123.054529678999955, 49.241092296000069 ], [ -123.054532396999946, 49.240715854000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194437501", "BldgCostT": "123180001", "sL_LossRatio": "0.694887716955239", "sL_AssetLoss": "1521512", "sL_BldgLoss": "1057280", "sL_StrLoss": "518210", "sL_NStrLoss": "539070", "sL_ContLoss": "464232", "geom_point": "0101000020E610000041ED7DCB58C35EC0E1BABDFFEA9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052182202999958, 49.242657548000103 ], [ -123.051643474999977, 49.242429495000067 ], [ -123.05085929699996, 49.243273695000084 ], [ -123.050295897999973, 49.243046502000034 ], [ -123.049318760999981, 49.242652469000063 ], [ -123.048911214000015, 49.24248810100007 ], [ -123.049588813999918, 49.241808488000061 ], [ -123.049952850999944, 49.241452382000055 ], [ -123.050278504999952, 49.241133789000067 ], [ -123.050358775999939, 49.241058490000064 ], [ -123.050701878999973, 49.240876650000082 ], [ -123.05091158599997, 49.24076550300007 ], [ -123.051214187999989, 49.240605304000063 ], [ -123.051394714999958, 49.24051029700005 ], [ -123.05158331599992, 49.240316632000045 ], [ -123.051938214999907, 49.239952188000082 ], [ -123.052247768999919, 49.239653521000072 ], [ -123.052581797999949, 49.239331199000034 ], [ -123.054066976999962, 49.240009494000041 ], [ -123.054535800999972, 49.24023939800005 ], [ -123.054532396999946, 49.240715854000058 ], [ -123.054529678999955, 49.241092296000069 ], [ -123.054531276999967, 49.241240104000106 ], [ -123.054531262999944, 49.241354430000101 ], [ -123.054531108999953, 49.241885163000092 ], [ -123.054530897999896, 49.242479608000068 ], [ -123.054387292999976, 49.242708100000044 ], [ -123.053824076999945, 49.243361089000075 ], [ -123.05323244799996, 49.243105967000126 ], [ -123.052746701, 49.242896504000058 ], [ -123.052182202999958, 49.242657548000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166655334", "BldgCostT": "109283334", "sL_LossRatio": "0.745482905240369", "sL_AssetLoss": "1001418", "sL_BldgLoss": "746540", "sL_StrLoss": "385070", "sL_NStrLoss": "361470", "sL_ContLoss": "254878", "geom_point": "0101000020E61000005F73891B9EC35EC0BFBD4AC2AE9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05821890599999, 49.237396867000029 ], [ -123.058736611999933, 49.237394012000067 ], [ -123.058756691999946, 49.238008890000067 ], [ -123.058732598999967, 49.238910011000101 ], [ -123.058721750999936, 49.239355329000034 ], [ -123.05871108599996, 49.23979131500009 ], [ -123.058699689999941, 49.240218928000012 ], [ -123.058688173999911, 49.240649994000051 ], [ -123.05867940399996, 49.24085419199999 ], [ -123.058644512999976, 49.241123487000102 ], [ -123.058570900999939, 49.241309806000075 ], [ -123.058374000999933, 49.24161917600005 ], [ -123.058342083999932, 49.241669306000119 ], [ -123.058123402999954, 49.241870507000023 ], [ -123.05750689599995, 49.241590206000083 ], [ -123.057292533999927, 49.24149274600007 ], [ -123.054535800999972, 49.24023939800005 ], [ -123.054066976999962, 49.240009494000041 ], [ -123.052581797999949, 49.239331199000034 ], [ -123.051889801999963, 49.239006883000101 ], [ -123.051962789999934, 49.238872799000077 ], [ -123.052533252999964, 49.23887804100012 ], [ -123.053005786999947, 49.238882411000105 ], [ -123.053590905999954, 49.238880453000085 ], [ -123.054210228999978, 49.2388784010001 ], [ -123.05454100299994, 49.238881101000061 ], [ -123.0548278, 49.238884624000086 ], [ -123.055442419999977, 49.238892194000073 ], [ -123.055967696999971, 49.238895721000063 ], [ -123.056533513999966, 49.23889950300007 ], [ -123.057107888999937, 49.238900668000063 ], [ -123.057673105999982, 49.23890179600005 ], [ -123.057692803999942, 49.237399798000084 ], [ -123.05821890599999, 49.237396867000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250158559", "BldgCostT": "165910952", "sL_LossRatio": "0.77877520780262", "sL_AssetLoss": "1970620", "sL_BldgLoss": "1534670", "sL_StrLoss": "715200", "sL_NStrLoss": "819470", "sL_ContLoss": "435950", "geom_point": "0101000020E6100000E8FB1E922DC35EC0FFA170A8A59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048075091, 49.238361995000112 ], [ -123.048809399000021, 49.237566900000118 ], [ -123.050316304999967, 49.238270198000045 ], [ -123.051564288999955, 49.238854500000045 ], [ -123.051889801999963, 49.239006883000101 ], [ -123.052581797999949, 49.239331199000034 ], [ -123.052247768999919, 49.239653521000072 ], [ -123.051938214999907, 49.239952188000082 ], [ -123.05158331599992, 49.240316632000045 ], [ -123.051394714999958, 49.24051029700005 ], [ -123.051214187999989, 49.240605304000063 ], [ -123.05091158599997, 49.24076550300007 ], [ -123.050701878999973, 49.240876650000082 ], [ -123.050358775999939, 49.241058490000064 ], [ -123.050278504999952, 49.241133789000067 ], [ -123.047347104999957, 49.23995380500007 ], [ -123.046779981999961, 49.239725496000091 ], [ -123.047111507999929, 49.239375986000077 ], [ -123.047431991999986, 49.239038114000095 ], [ -123.047874599999929, 49.238572803000075 ], [ -123.048075091, 49.238361995000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66148052", "BldgCostT": "43178745", "sL_LossRatio": "0.723435579006788", "sL_AssetLoss": "836156", "sL_BldgLoss": "604905", "sL_StrLoss": "279840", "sL_NStrLoss": "325065", "sL_ContLoss": "231251", "geom_point": "0101000020E61000008CCBF2544BC35EC09E7AFF7A609E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048850880999964, 49.237324796000067 ], [ -123.048850726999959, 49.237066231000057 ], [ -123.04884990799998, 49.235829386000013 ], [ -123.049549069999969, 49.235833082000113 ], [ -123.050274603999981, 49.235836911000057 ], [ -123.050950502999981, 49.235841382000054 ], [ -123.051708797999964, 49.235846400000085 ], [ -123.052420289999958, 49.2358500200001 ], [ -123.053005919000015, 49.235853004000056 ], [ -123.053008692999981, 49.237387187000081 ], [ -123.053616765999905, 49.237389004000114 ], [ -123.05422909, 49.237390790000056 ], [ -123.054210228999978, 49.2388784010001 ], [ -123.053590905999954, 49.238880453000085 ], [ -123.053005786999947, 49.238882411000105 ], [ -123.052533252999964, 49.23887804100012 ], [ -123.051962789999934, 49.238872799000077 ], [ -123.051889801999963, 49.239006883000101 ], [ -123.051564288999955, 49.238854500000045 ], [ -123.050316304999967, 49.238270198000045 ], [ -123.048809399000021, 49.237566900000118 ], [ -123.048850880999964, 49.237324796000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101583334", "BldgCostT": "65703334", "sL_LossRatio": "0.709465439210363", "sL_AssetLoss": "1270052", "sL_BldgLoss": "901058", "sL_StrLoss": "423330", "sL_NStrLoss": "477728", "sL_ContLoss": "368994", "geom_point": "0101000020E6100000ECEE85F293C35EC060D706595C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054210228999978, 49.2388784010001 ], [ -123.05422909, 49.237390790000056 ], [ -123.053616765999905, 49.237389004000114 ], [ -123.053008692999981, 49.237387187000081 ], [ -123.053005919000015, 49.235853004000056 ], [ -123.053601594999975, 49.235856349000088 ], [ -123.054250705999948, 49.235859988000108 ], [ -123.054851829999947, 49.23586334400008 ], [ -123.055494209, 49.235866908000077 ], [ -123.058079863999964, 49.235880815000051 ], [ -123.058781507999939, 49.235884597000087 ], [ -123.058747886, 49.23689080300003 ], [ -123.05873701099999, 49.237376265000059 ], [ -123.058736611999933, 49.237394012000067 ], [ -123.05821890599999, 49.237396867000029 ], [ -123.057692803999942, 49.237399798000084 ], [ -123.057673105999982, 49.23890179600005 ], [ -123.057107888999937, 49.238900668000063 ], [ -123.056533513999966, 49.23889950300007 ], [ -123.055967696999971, 49.238895721000063 ], [ -123.055442419999977, 49.238892194000073 ], [ -123.0548278, 49.238884624000086 ], [ -123.05454100299994, 49.238881101000061 ], [ -123.054210228999978, 49.2388784010001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211242167", "BldgCostT": "145786667", "sL_LossRatio": "0.812853826992754", "sL_AssetLoss": "1413120", "sL_BldgLoss": "1148660", "sL_StrLoss": "561110", "sL_NStrLoss": "587550", "sL_ContLoss": "264460", "geom_point": "0101000020E6100000BDEC212B89C35EC05E1EA5F10F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055528194999965, 49.23385910800004 ], [ -123.058808403999961, 49.23387828600012 ], [ -123.058804206, 49.234380940000058 ], [ -123.058800074999937, 49.23487619600013 ], [ -123.058790635, 49.23538858300001 ], [ -123.058781507999939, 49.235884597000087 ], [ -123.058079863999964, 49.235880815000051 ], [ -123.055494209, 49.235866908000077 ], [ -123.054851829999947, 49.23586334400008 ], [ -123.054250705999948, 49.235859988000108 ], [ -123.053601594999975, 49.235856349000088 ], [ -123.053005919000015, 49.235853004000056 ], [ -123.052420289999958, 49.2358500200001 ], [ -123.051708797999964, 49.235846400000085 ], [ -123.051682622999962, 49.234357177000021 ], [ -123.051673689999973, 49.233848299000051 ], [ -123.055528194999965, 49.23385910800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94731084", "BldgCostT": "62948334", "sL_LossRatio": "0.699596700751958", "sL_AssetLoss": "1921650", "sL_BldgLoss": "1344380", "sL_StrLoss": "590770", "sL_NStrLoss": "753610", "sL_ContLoss": "577270", "geom_point": "0101000020E61000000F18E26048C35EC035F1E570F39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054587937999955, 49.23280356599999 ], [ -123.05548071599992, 49.23281279600009 ], [ -123.055506237999964, 49.233374940000033 ], [ -123.055528194999965, 49.23385910800004 ], [ -123.051673689999973, 49.233848299000051 ], [ -123.051682622999962, 49.234357177000021 ], [ -123.051708797999964, 49.235846400000085 ], [ -123.050950502999981, 49.235841382000054 ], [ -123.050274603999981, 49.235836911000057 ], [ -123.049549069999969, 49.235833082000113 ], [ -123.04884990799998, 49.235829386000013 ], [ -123.04878191399996, 49.234047609000058 ], [ -123.048784211999958, 49.232759499000032 ], [ -123.049367498999942, 49.232759955000049 ], [ -123.050174902999942, 49.232760597000066 ], [ -123.050865563999963, 49.232766479000105 ], [ -123.051656792999921, 49.232773201000079 ], [ -123.054587937999955, 49.23280356599999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "285760334", "BldgCostT": "197068334", "sL_LossRatio": "0.802370472880241", "sL_AssetLoss": "4364530", "sL_BldgLoss": "3501970", "sL_StrLoss": "1711820", "sL_NStrLoss": "1790150", "sL_ContLoss": "862560", "geom_point": "0101000020E61000000190245264C35EC0373B7BFC989D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051593425999954, 49.229340202000081 ], [ -123.054920205999963, 49.22937618800011 ], [ -123.055059092999969, 49.229632195000107 ], [ -123.055147868999953, 49.229928282000046 ], [ -123.055152009999958, 49.229941990000029 ], [ -123.055203197999958, 49.230867603000071 ], [ -123.055220282999983, 49.231787797000102 ], [ -123.05523329899998, 49.232556509000069 ], [ -123.05548071599992, 49.23281279600009 ], [ -123.054587937999955, 49.23280356599999 ], [ -123.051656792999921, 49.232773201000079 ], [ -123.050865563999963, 49.232766479000105 ], [ -123.050174902999942, 49.232760597000066 ], [ -123.050172210999932, 49.232343023000055 ], [ -123.050164409000018, 49.231131594000033 ], [ -123.050876737999957, 49.231135749000089 ], [ -123.051625998999924, 49.231140108000069 ], [ -123.051621697999934, 49.230893194000046 ], [ -123.051611189, 49.23029288700014 ], [ -123.051604279999964, 49.22992269100012 ], [ -123.051601913999946, 49.229796759000109 ], [ -123.051593425999954, 49.229340202000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104422539", "BldgCostT": "69160372", "sL_LossRatio": "0.678527139177716", "sL_AssetLoss": "4193200", "sL_BldgLoss": "2845200", "sL_StrLoss": "1088400", "sL_NStrLoss": "1756800", "sL_ContLoss": "1348000", "geom_point": "0101000020E6100000EA34C12621C35EC051B06B20829D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048802838999947, 49.231570293000125 ], [ -123.048807395999944, 49.231163889000072 ], [ -123.045948300999925, 49.231110805000078 ], [ -123.045950706999974, 49.230671909000115 ], [ -123.045953190999981, 49.230214596000032 ], [ -123.045957026999957, 49.229772432000082 ], [ -123.045959182000018, 49.229520564000111 ], [ -123.045961185999943, 49.22928970400006 ], [ -123.048832932, 49.229315210000074 ], [ -123.05009099899999, 49.229327096000091 ], [ -123.050903147999946, 49.229334181000127 ], [ -123.051593425999954, 49.229340202000081 ], [ -123.051601913999946, 49.229796759000109 ], [ -123.051604279999964, 49.22992269100012 ], [ -123.051611189, 49.23029288700014 ], [ -123.051621697999934, 49.230893194000046 ], [ -123.051625998999924, 49.231140108000069 ], [ -123.050876737999957, 49.231135749000089 ], [ -123.050164409000018, 49.231131594000033 ], [ -123.050172210999932, 49.232343023000055 ], [ -123.050174902999942, 49.232760597000066 ], [ -123.049367498999942, 49.232759955000049 ], [ -123.048784211999958, 49.232759499000032 ], [ -123.048790201999935, 49.232433822000104 ], [ -123.048791890999965, 49.232343871000097 ], [ -123.048797696999912, 49.232028403000058 ], [ -123.048802838999947, 49.231570293000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82360728", "BldgCostT": "54499857", "sL_LossRatio": "0.674378040028706", "sL_AssetLoss": "4013120", "sL_BldgLoss": "2706360", "sL_StrLoss": "1043550", "sL_NStrLoss": "1662810", "sL_ContLoss": "1306760", "geom_point": "0101000020E61000000CB45CB241C35EC004E35429459D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051723690999935, 49.227548497000043 ], [ -123.054643898999984, 49.227565183000067 ], [ -123.054650061999922, 49.228023320000098 ], [ -123.054655897999908, 49.228457412000097 ], [ -123.054683596999936, 49.228821192000041 ], [ -123.054728048999934, 49.228925417000013 ], [ -123.054920205999963, 49.22937618800011 ], [ -123.051593425999954, 49.229340202000081 ], [ -123.050903147999946, 49.229334181000127 ], [ -123.05009099899999, 49.229327096000091 ], [ -123.048832932, 49.229315210000074 ], [ -123.045961185999943, 49.22928970400006 ], [ -123.045453491999965, 49.229285705000066 ], [ -123.045471279, 49.228872564000056 ], [ -123.045490995999941, 49.228415587000065 ], [ -123.04759468099999, 49.228428194000074 ], [ -123.050137490999973, 49.228443716000122 ], [ -123.051680006999945, 49.228452589000042 ], [ -123.051701092999934, 49.228015832000068 ], [ -123.051723690999935, 49.227548497000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168139250", "BldgCostT": "110645000", "sL_LossRatio": "0.733968274683815", "sL_AssetLoss": "6742880", "sL_BldgLoss": "4949060", "sL_StrLoss": "2123040", "sL_NStrLoss": "2826020", "sL_ContLoss": "1793820", "geom_point": "0101000020E61000005FC503462EC35EC094BCAE1D149D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.050551083999949, 49.225916246000118 ], [ -123.051799386999988, 49.225924609000067 ], [ -123.051780373999975, 49.22633365100009 ], [ -123.051761684999974, 49.226734300000025 ], [ -123.051741791999945, 49.227160993000076 ], [ -123.051723690999935, 49.227548497000043 ], [ -123.051701092999934, 49.228015832000068 ], [ -123.051680006999945, 49.228452589000042 ], [ -123.050137490999973, 49.228443716000122 ], [ -123.04759468099999, 49.228428194000074 ], [ -123.04761777099999, 49.227981831000108 ], [ -123.047642187999941, 49.227508807000071 ], [ -123.047659540999945, 49.227145244000042 ], [ -123.047679111999969, 49.226735089000094 ], [ -123.04769862199997, 49.226371005000026 ], [ -123.047723990999913, 49.225898611000105 ], [ -123.049594232999979, 49.225910184000035 ], [ -123.050276301999986, 49.225914400000107 ], [ -123.050551083999949, 49.225916246000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "606017311", "BldgCostT": "418292205", "sL_LossRatio": "0.814700216563506", "sL_AssetLoss": "14711620", "sL_BldgLoss": "11985560", "sL_StrLoss": "5809530", "sL_NStrLoss": "6176030", "sL_ContLoss": "2726060", "geom_point": "0101000020E6100000663B85E061C35EC05F3831A0EE9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051780373999975, 49.22633365100009 ], [ -123.051799386999988, 49.225924609000067 ], [ -123.050551083999949, 49.225916246000118 ], [ -123.050276301999986, 49.225914400000107 ], [ -123.050304649999973, 49.225399334000087 ], [ -123.050306038999949, 49.225373899000083 ], [ -123.050311859999965, 49.225268658000111 ], [ -123.050319275999982, 49.225133919000015 ], [ -123.050321762999985, 49.225088807000077 ], [ -123.050338998999933, 49.224775700000052 ], [ -123.052386203999916, 49.224789286000068 ], [ -123.054726997999978, 49.224804704000078 ], [ -123.05468560599995, 49.225933201000032 ], [ -123.054674345999942, 49.226377054000103 ], [ -123.054664492999947, 49.226764104000033 ], [ -123.054654100999969, 49.227168568000067 ], [ -123.054643898999984, 49.227565183000067 ], [ -123.051723690999935, 49.227548497000043 ], [ -123.051741791999945, 49.227160993000076 ], [ -123.051761684999974, 49.226734300000025 ], [ -123.051780373999975, 49.22633365100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229314916", "BldgCostT": "152746666", "sL_LossRatio": "0.76344712528793", "sL_AssetLoss": "4270132", "sL_BldgLoss": "3260020", "sL_StrLoss": "1470030", "sL_NStrLoss": "1789990", "sL_ContLoss": "1010112", "geom_point": "0101000020E610000041827F9D5DC35EC0816F1606979C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054148873999978, 49.221953813000042 ], [ -123.054820370999948, 49.221968693000093 ], [ -123.054805584999926, 49.222526805 ], [ -123.054793107999927, 49.22298477700005 ], [ -123.054786868999955, 49.223211796000086 ], [ -123.054758904999986, 49.223955926000031 ], [ -123.054742678999929, 49.224387901000064 ], [ -123.054726997999978, 49.224804704000078 ], [ -123.052386203999916, 49.224789286000068 ], [ -123.050338998999933, 49.224775700000052 ], [ -123.050362502999974, 49.224337643000126 ], [ -123.050391104999974, 49.22380509000007 ], [ -123.05044969799999, 49.222709481000052 ], [ -123.050498614999981, 49.221874001000117 ], [ -123.051252635999973, 49.221890308000042 ], [ -123.052538278999947, 49.221918093000099 ], [ -123.054148873999978, 49.221953813000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91013250", "BldgCostT": "60825000", "sL_LossRatio": "0.727729045175472", "sL_AssetLoss": "1428430", "sL_BldgLoss": "1039510", "sL_StrLoss": "490710", "sL_NStrLoss": "548800", "sL_ContLoss": "388920", "geom_point": "0101000020E6100000B1834A5C47C35EC01B7C0679629C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052760212999942, 49.220194507000052 ], [ -123.054871986999942, 49.220182005000012 ], [ -123.054855438999965, 49.22069126700007 ], [ -123.05484020099999, 49.221159383000085 ], [ -123.054820370999948, 49.221968693000093 ], [ -123.054148873999978, 49.221953813000042 ], [ -123.052538278999947, 49.221918093000099 ], [ -123.051252635999973, 49.221890308000042 ], [ -123.050498614999981, 49.221874001000117 ], [ -123.05044969799999, 49.222709481000052 ], [ -123.050391104999974, 49.22380509000007 ], [ -123.050362502999974, 49.224337643000126 ], [ -123.050338998999933, 49.224775700000052 ], [ -123.048777612999956, 49.22476450300006 ], [ -123.0488013, 49.224319770000108 ], [ -123.048884018999971, 49.222766701000047 ], [ -123.049000955999929, 49.220659198000099 ], [ -123.049025708999977, 49.220213107000085 ], [ -123.050586801999941, 49.220183686000048 ], [ -123.051236266999965, 49.220186931000072 ], [ -123.052760212999942, 49.220194507000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110024584", "BldgCostT": "71253334", "sL_LossRatio": "0.729390913119056", "sL_AssetLoss": "1466950", "sL_BldgLoss": "1069980", "sL_StrLoss": "507100", "sL_NStrLoss": "562880", "sL_ContLoss": "396970", "geom_point": "0101000020E61000003E9B1BF4A1C35EC0C3E40D30739C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057416616999944, 49.22486190300009 ], [ -123.056138991999916, 49.224813507000093 ], [ -123.054726997999978, 49.224804704000078 ], [ -123.054742678999929, 49.224387901000064 ], [ -123.054758904999986, 49.223955926000031 ], [ -123.054786868999955, 49.223211796000086 ], [ -123.054793107999927, 49.22298477700005 ], [ -123.054805584999926, 49.222526805 ], [ -123.054820370999948, 49.221968693000093 ], [ -123.05484020099999, 49.221159383000085 ], [ -123.054855438999965, 49.22069126700007 ], [ -123.054871986999942, 49.220182005000012 ], [ -123.056438978999935, 49.22018959900003 ], [ -123.056523604999967, 49.220190027000115 ], [ -123.057114040999963, 49.220193035000065 ], [ -123.057894803999929, 49.220196986000118 ], [ -123.059361612999979, 49.220203687000058 ], [ -123.059363843999904, 49.220437953000101 ], [ -123.059371091999978, 49.221202904000116 ], [ -123.059371705999979, 49.221409200000096 ], [ -123.059343585999926, 49.221987675000072 ], [ -123.059335290999954, 49.222157710000033 ], [ -123.059248592999978, 49.222529204000047 ], [ -123.057731909999944, 49.22252840000013 ], [ -123.057719750999965, 49.22300282800007 ], [ -123.057683613, 49.22441501100014 ], [ -123.057671411999976, 49.224891410000062 ], [ -123.057416616999944, 49.22486190300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168807832", "BldgCostT": "110108332", "sL_LossRatio": "0.715273266492991", "sL_AssetLoss": "1356167", "sL_BldgLoss": "970030", "sL_StrLoss": "468130", "sL_NStrLoss": "501900", "sL_ContLoss": "386137", "geom_point": "0101000020E61000006BF638BAA7C35EC0CB86D26A0A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055350108999917, 49.217982381000063 ], [ -123.05580879899999, 49.217637483000026 ], [ -123.05632430799993, 49.217841682000078 ], [ -123.056507317999959, 49.217889023000076 ], [ -123.056596992999914, 49.217912195000075 ], [ -123.056998212999929, 49.217970900000076 ], [ -123.057869898999968, 49.217967610000102 ], [ -123.059318393999945, 49.217981914000113 ], [ -123.059326824, 49.218414310000078 ], [ -123.059354253, 49.219826265000158 ], [ -123.059361612999979, 49.220203687000058 ], [ -123.057894803999929, 49.220196986000118 ], [ -123.057114040999963, 49.220193035000065 ], [ -123.056523604999967, 49.220190027000115 ], [ -123.056438978999935, 49.22018959900003 ], [ -123.054871986999942, 49.220182005000012 ], [ -123.05487674699998, 49.219810123000059 ], [ -123.054881926999911, 49.219405450000053 ], [ -123.054887607999945, 49.218961809000071 ], [ -123.054862201999967, 49.218540407000077 ], [ -123.055282791999915, 49.218032998000091 ], [ -123.055350108999917, 49.217982381000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63377500", "BldgCostT": "42025000", "sL_LossRatio": "0.778972787813025", "sL_AssetLoss": "564012", "sL_BldgLoss": "439350", "sL_StrLoss": "235210", "sL_NStrLoss": "204140", "sL_ContLoss": "124662", "geom_point": "0101000020E61000001B1EF3E8A3C35EC0E8120EBDC59B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05419528799996, 49.217975414000101 ], [ -123.053915656999948, 49.217540202000073 ], [ -123.053664398999913, 49.217149191000047 ], [ -123.054474083999935, 49.217048079000115 ], [ -123.055137777999946, 49.216965192000032 ], [ -123.055069892999981, 49.21662909300008 ], [ -123.05510881, 49.216231105000077 ], [ -123.055306101999946, 49.215782484000023 ], [ -123.055749751999912, 49.215783823000052 ], [ -123.056416199999944, 49.215785792000098 ], [ -123.05713825, 49.215800898000097 ], [ -123.057827874999987, 49.215815300000095 ], [ -123.05805671, 49.215817112000053 ], [ -123.058294291, 49.215819011000086 ], [ -123.058935122999955, 49.215830477000061 ], [ -123.059344322999934, 49.215837786000101 ], [ -123.059326899999959, 49.216677982000093 ], [ -123.059318199999922, 49.217096400000081 ], [ -123.059318314999956, 49.217559597000033 ], [ -123.059318393999945, 49.217981914000113 ], [ -123.057869898999968, 49.217967610000102 ], [ -123.056998212999929, 49.217970900000076 ], [ -123.056596992999914, 49.217912195000075 ], [ -123.056507317999959, 49.217889023000076 ], [ -123.05632430799993, 49.217841682000078 ], [ -123.05580879899999, 49.217637483000026 ], [ -123.055350108999917, 49.217982381000063 ], [ -123.055282791999915, 49.218032998000091 ], [ -123.054862201999967, 49.218540407000077 ], [ -123.054805909999928, 49.218492734000044 ], [ -123.05419528799996, 49.217975414000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232868083", "BldgCostT": "156733333", "sL_LossRatio": "0.780403047679346", "sL_AssetLoss": "1389910", "sL_BldgLoss": "1084690", "sL_StrLoss": "553170", "sL_NStrLoss": "531520", "sL_ContLoss": "305220", "geom_point": "0101000020E6100000A7528217E0C35EC034BCCC8FC39B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.060074112, 49.214461999000065 ], [ -123.062153295999963, 49.214477513000062 ], [ -123.062126585999962, 49.21529019300003 ], [ -123.062112726999956, 49.215696405000116 ], [ -123.062083308999917, 49.216559209000096 ], [ -123.062077792999958, 49.216712766000079 ], [ -123.062066160999962, 49.21703661600003 ], [ -123.06206341099994, 49.2171135950001 ], [ -123.062049136, 49.217594253000051 ], [ -123.062036809999967, 49.218010103000083 ], [ -123.060740720999917, 49.217996400000068 ], [ -123.06072706399999, 49.218432037000071 ], [ -123.060697576999985, 49.219370793000046 ], [ -123.060686754999907, 49.219852981000052 ], [ -123.060678712999973, 49.220211601000059 ], [ -123.060039177999926, 49.220207772000045 ], [ -123.059361612999979, 49.220203687000058 ], [ -123.059354253, 49.219826265000158 ], [ -123.059326824, 49.218414310000078 ], [ -123.059318393999945, 49.217981914000113 ], [ -123.059318314999956, 49.217559597000033 ], [ -123.059318199999922, 49.217096400000081 ], [ -123.059326899999959, 49.216677982000093 ], [ -123.059344322999934, 49.215837786000101 ], [ -123.059358393999943, 49.215269714000058 ], [ -123.059376911999934, 49.214456799000061 ], [ -123.060074112, 49.214461999000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103308750", "BldgCostT": "67680000", "sL_LossRatio": "0.746822586154206", "sL_AssetLoss": "1112540", "sL_BldgLoss": "830870", "sL_StrLoss": "416820", "sL_NStrLoss": "414050", "sL_ContLoss": "281670", "geom_point": "0101000020E61000007DA05FA50CC45EC0DEDAC2F3D29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.062036809999967, 49.218010103000083 ], [ -123.062049136, 49.217594253000051 ], [ -123.06206341099994, 49.2171135950001 ], [ -123.062066160999962, 49.21703661600003 ], [ -123.062077792999958, 49.216712766000079 ], [ -123.062083308999917, 49.216559209000096 ], [ -123.062112726999956, 49.215696405000116 ], [ -123.062126585999962, 49.21529019300003 ], [ -123.062153295999963, 49.214477513000062 ], [ -123.065319220999939, 49.214498138000117 ], [ -123.066021805999981, 49.214502695000149 ], [ -123.065967615999966, 49.215316506000072 ], [ -123.065984585999956, 49.216176402000059 ], [ -123.065971769000015, 49.216618293000096 ], [ -123.064689806999922, 49.216599596 ], [ -123.063396891999972, 49.216578799000025 ], [ -123.063378354999955, 49.217072495000068 ], [ -123.063358081, 49.217612095000085 ], [ -123.063342589999976, 49.218024104000065 ], [ -123.064640104999938, 49.218036896000037 ], [ -123.06462415199999, 49.218511098000114 ], [ -123.064593256999942, 49.219429188000063 ], [ -123.064577962000016, 49.219914240000087 ], [ -123.064567214999968, 49.22025449100002 ], [ -123.062634015999933, 49.220220806000071 ], [ -123.061921251999948, 49.220217447000024 ], [ -123.061358014999939, 49.220214808000023 ], [ -123.060678712999973, 49.220211601000059 ], [ -123.060686754999907, 49.219852981000052 ], [ -123.060697576999985, 49.219370793000046 ], [ -123.06072706399999, 49.218432037000071 ], [ -123.060740720999917, 49.217996400000068 ], [ -123.062036809999967, 49.218010103000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "305245668", "BldgCostT": "209626668", "sL_LossRatio": "0.819428856465893", "sL_AssetLoss": "1764180", "sL_BldgLoss": "1445620", "sL_StrLoss": "787190", "sL_NStrLoss": "658430", "sL_ContLoss": "318560", "geom_point": "0101000020E6100000DD752D2950C45EC0A51519FC019C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066601720999969, 49.220335107000096 ], [ -123.065870286999953, 49.220267505000074 ], [ -123.065176745999921, 49.220260566000022 ], [ -123.06515701499994, 49.220260384000042 ], [ -123.064567214999968, 49.22025449100002 ], [ -123.064577962000016, 49.219914240000087 ], [ -123.064593256999942, 49.219429188000063 ], [ -123.06462415199999, 49.218511098000114 ], [ -123.064640104999938, 49.218036896000037 ], [ -123.063342589999976, 49.218024104000065 ], [ -123.063358081, 49.217612095000085 ], [ -123.063378354999955, 49.217072495000068 ], [ -123.063396891999972, 49.216578799000025 ], [ -123.064689806999922, 49.216599596 ], [ -123.065971769000015, 49.216618293000096 ], [ -123.065956700999948, 49.217162001000084 ], [ -123.065943582, 49.217636818000059 ], [ -123.065932183999976, 49.218049502000028 ], [ -123.066683461999929, 49.21805727100007 ], [ -123.067797494999951, 49.21806880000009 ], [ -123.06889119799996, 49.217920198000058 ], [ -123.069159096999954, 49.218281291000032 ], [ -123.069473024999951, 49.218704403000039 ], [ -123.069695111999977, 49.218925691 ], [ -123.070327288999948, 49.21860665 ], [ -123.070347174999952, 49.21859660300008 ], [ -123.070468916999943, 49.218501683000106 ], [ -123.071011217999953, 49.218078706000028 ], [ -123.07125113799998, 49.218082007000078 ], [ -123.071736794999964, 49.218088695000063 ], [ -123.072020498999947, 49.218092588000054 ], [ -123.072029253999929, 49.218550597000046 ], [ -123.072037703999968, 49.218994810000019 ], [ -123.072003133999957, 49.219487335000103 ], [ -123.071969891, 49.219961295000104 ], [ -123.070413314999954, 49.219941507000037 ], [ -123.070135186999948, 49.21999969600008 ], [ -123.06919218799996, 49.220327197000067 ], [ -123.068454714999987, 49.220334192000067 ], [ -123.067197427999957, 49.220334200000146 ], [ -123.066601720999969, 49.220335107000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88398251", "BldgCostT": "59965001", "sL_LossRatio": "0.773337756370854", "sL_AssetLoss": "922443", "sL_BldgLoss": "713360", "sL_StrLoss": "369890", "sL_NStrLoss": "343470", "sL_ContLoss": "209083", "geom_point": "0101000020E6100000636AF91EC1C45EC086F499BBAF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074037193, 49.214598082000052 ], [ -123.077086105999982, 49.214627710000038 ], [ -123.077078143000023, 49.215075462000144 ], [ -123.077071005999954, 49.215478499000014 ], [ -123.077064546999964, 49.21592100400008 ], [ -123.07705767799996, 49.216387994000058 ], [ -123.07705044799998, 49.216847503000054 ], [ -123.077043982999953, 49.217259608000056 ], [ -123.075521177999974, 49.217250796000059 ], [ -123.075511072999973, 49.217676355000087 ], [ -123.075500402999964, 49.218124907000039 ], [ -123.074000703999943, 49.21811928500005 ], [ -123.072020498999947, 49.218092588000054 ], [ -123.071736794999964, 49.218088695000063 ], [ -123.07125113799998, 49.218082007000078 ], [ -123.071011217999953, 49.218078706000028 ], [ -123.071159982999944, 49.217919353000084 ], [ -123.071533782999978, 49.21751900700005 ], [ -123.071551030999956, 49.21749137100003 ], [ -123.071619007999985, 49.217382584000077 ], [ -123.071628283999971, 49.217367766000095 ], [ -123.071710803999977, 49.217235612000131 ], [ -123.071719784, 49.217214483000085 ], [ -123.071899282999937, 49.216793010000032 ], [ -123.071900667999955, 49.216783955000082 ], [ -123.07197520899993, 49.216286105000023 ], [ -123.071993139999947, 49.215878723000117 ], [ -123.072013212999934, 49.215422292000035 ], [ -123.072027992, 49.214577803000076 ], [ -123.072774598999928, 49.21458532900008 ], [ -123.074037193, 49.214598082000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57790834", "BldgCostT": "37413334", "sL_LossRatio": "0.723464925355724", "sL_AssetLoss": "771526", "sL_BldgLoss": "558172", "sL_StrLoss": "247980", "sL_NStrLoss": "310192", "sL_ContLoss": "213354", "geom_point": "0101000020E6100000DCAFD8B2BEC45EC0CF2BE8073F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072046026999885, 49.211963099000094 ], [ -123.072073483999972, 49.211091010000118 ], [ -123.07274187099992, 49.211101665000079 ], [ -123.074086006999892, 49.211123097000012 ], [ -123.074080956999978, 49.21157876100002 ], [ -123.074076604999931, 49.211969586000158 ], [ -123.076386696999975, 49.211995121000079 ], [ -123.076424990999939, 49.21199553500005 ], [ -123.076593006999957, 49.21199739100004 ], [ -123.07711731199997, 49.212214295000102 ], [ -123.077114501999958, 49.212732360000082 ], [ -123.077113726999983, 49.21288080500009 ], [ -123.077102098999973, 49.213763287000056 ], [ -123.076384750999978, 49.213760775000019 ], [ -123.074049302999981, 49.213752503000102 ], [ -123.074043091999926, 49.214187270000068 ], [ -123.074037193, 49.214598082000052 ], [ -123.072774598999928, 49.21458532900008 ], [ -123.072027992, 49.214577803000076 ], [ -123.072030286999961, 49.213736401000055 ], [ -123.072032555999968, 49.21355642200006 ], [ -123.072036873999977, 49.213212517000038 ], [ -123.072041208999934, 49.212866506000097 ], [ -123.072046026999885, 49.211963099000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201701834", "BldgCostT": "136918334", "sL_LossRatio": "0.790154285204673", "sL_AssetLoss": "975531", "sL_BldgLoss": "770820", "sL_StrLoss": "389490", "sL_NStrLoss": "381330", "sL_ContLoss": "204711", "geom_point": "0101000020E610000077CD1E47F7C45EC06C092A91619B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079211596, 49.212876503000075 ], [ -123.079893001999949, 49.212875101000101 ], [ -123.079909094999962, 49.213318697000091 ], [ -123.080139986999953, 49.213640199000103 ], [ -123.080165, 49.213787784000054 ], [ -123.080164952999922, 49.214227791000027 ], [ -123.08016491399998, 49.214663394000077 ], [ -123.077086105999982, 49.214627710000038 ], [ -123.074037193, 49.214598082000052 ], [ -123.074043091999926, 49.214187270000068 ], [ -123.074049302999981, 49.213752503000102 ], [ -123.076384750999978, 49.213760775000019 ], [ -123.077102098999973, 49.213763287000056 ], [ -123.077113726999983, 49.21288080500009 ], [ -123.077783668999942, 49.212879436000058 ], [ -123.079211596, 49.212876503000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52241083", "BldgCostT": "33643333", "sL_LossRatio": "0.706711952963467", "sL_AssetLoss": "618583", "sL_BldgLoss": "437160", "sL_StrLoss": "193510", "sL_NStrLoss": "243650", "sL_ContLoss": "181423", "geom_point": "0101000020E610000020DE4AE107C55EC00E52744D969B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077086105999982, 49.214627710000038 ], [ -123.08016491399998, 49.214663394000077 ], [ -123.080152845999976, 49.215101051000012 ], [ -123.080141376999947, 49.21551669400003 ], [ -123.080130216000029, 49.215964412000062 ], [ -123.080118823999925, 49.216421396000015 ], [ -123.079299872999925, 49.216412677000022 ], [ -123.078579982999941, 49.216404992000037 ], [ -123.077816791999908, 49.21639648000005 ], [ -123.07705767799996, 49.216387994000058 ], [ -123.077064546999964, 49.21592100400008 ], [ -123.077071005999954, 49.215478499000014 ], [ -123.077078143000023, 49.215075462000144 ], [ -123.077086105999982, 49.214627710000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59129166", "BldgCostT": "38151666", "sL_LossRatio": "0.717061380871084", "sL_AssetLoss": "805984", "sL_BldgLoss": "577940", "sL_StrLoss": "266370", "sL_NStrLoss": "311570", "sL_ContLoss": "228044", "geom_point": "0101000020E6100000F505708A39C55EC03E01872F979B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08016491399998, 49.214663394000077 ], [ -123.083156197, 49.21467050299999 ], [ -123.083138601, 49.215116841000032 ], [ -123.0831214, 49.21555231300006 ], [ -123.083117466999937, 49.215782073000092 ], [ -123.083113634999947, 49.21600704700009 ], [ -123.083106002999941, 49.216451909000064 ], [ -123.081645394999896, 49.216435716000049 ], [ -123.080851533999976, 49.2164282560001 ], [ -123.080118823999925, 49.216421396000015 ], [ -123.080130216000029, 49.215964412000062 ], [ -123.080141376999947, 49.21551669400003 ], [ -123.080152845999976, 49.215101051000012 ], [ -123.08016491399998, 49.214663394000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84369250", "BldgCostT": "53065000", "sL_LossRatio": "0.700745149262017", "sL_AssetLoss": "990674", "sL_BldgLoss": "694210", "sL_StrLoss": "324290", "sL_NStrLoss": "369920", "sL_ContLoss": "296464", "geom_point": "0101000020E6100000A00CC0CC18C55EC0820BC391D19B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081645394999896, 49.216435716000049 ], [ -123.083106002999941, 49.216451909000064 ], [ -123.083100808000012, 49.216888574000045 ], [ -123.08309929899994, 49.21701448900005 ], [ -123.083095701999923, 49.217316403000083 ], [ -123.083079475999952, 49.217725854000051 ], [ -123.083060795999984, 49.218198201000078 ], [ -123.08159571499999, 49.21816579600015 ], [ -123.080058008, 49.218152087000085 ], [ -123.079303461999984, 49.218145330000034 ], [ -123.078567009999958, 49.218138709000129 ], [ -123.077778531999982, 49.218135624000055 ], [ -123.077053597999964, 49.218132802000113 ], [ -123.076267981999976, 49.218128793000062 ], [ -123.075500402999964, 49.218124907000039 ], [ -123.075511072999973, 49.217676355000087 ], [ -123.075521177999974, 49.217250796000059 ], [ -123.077043982999953, 49.217259608000056 ], [ -123.07705044799998, 49.216847503000054 ], [ -123.07705767799996, 49.216387994000058 ], [ -123.077816791999908, 49.21639648000005 ], [ -123.078579982999941, 49.216404992000037 ], [ -123.079299872999925, 49.216412677000022 ], [ -123.080118823999925, 49.216421396000015 ], [ -123.080851533999976, 49.2164282560001 ], [ -123.081645394999896, 49.216435716000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63773666", "BldgCostT": "42566666", "sL_LossRatio": "0.763301993717077", "sL_AssetLoss": "711134", "sL_BldgLoss": "542810", "sL_StrLoss": "267030", "sL_NStrLoss": "275780", "sL_ContLoss": "168324", "geom_point": "0101000020E61000004D779E780EC55EC09DAFED48509C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078771357999983, 49.22283761300011 ], [ -123.078809190999891, 49.221816103000037 ], [ -123.078128097999965, 49.221807747000085 ], [ -123.077478807999967, 49.221799800000063 ], [ -123.077517287999925, 49.220425312000138 ], [ -123.077476655999959, 49.220037584000131 ], [ -123.077474398999968, 49.220016102000052 ], [ -123.077272279999931, 49.219585396000063 ], [ -123.078533693999958, 49.219584506000103 ], [ -123.078894620999975, 49.219586193000062 ], [ -123.079263350999952, 49.219592262000063 ], [ -123.080165592999904, 49.219607095000114 ], [ -123.080229507999945, 49.219746610000058 ], [ -123.080256903999938, 49.220031112000058 ], [ -123.080255753999893, 49.220049618000132 ], [ -123.080228409000014, 49.220484381000091 ], [ -123.080201970999923, 49.221190325000052 ], [ -123.080177817, 49.221836 ], [ -123.080162085999945, 49.222260344000063 ], [ -123.080135813000012, 49.22297075200008 ], [ -123.080118894999899, 49.223427088000101 ], [ -123.079420770999917, 49.223417810000029 ], [ -123.078750181999936, 49.223408893000098 ], [ -123.078771357999983, 49.22283761300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70747917", "BldgCostT": "45371667", "sL_LossRatio": "0.765899605008555", "sL_AssetLoss": "625330", "sL_BldgLoss": "478940", "sL_StrLoss": "249140", "sL_NStrLoss": "229800", "sL_ContLoss": "146390", "geom_point": "0101000020E61000008318F906F0C45EC06FFE5F75649C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075990210999962, 49.22335838500004 ], [ -123.07605510099999, 49.221783809000073 ], [ -123.076111397, 49.22041059400005 ], [ -123.076126002999928, 49.22003207900012 ], [ -123.07614400099996, 49.219564691000066 ], [ -123.076228093999973, 49.219566249000145 ], [ -123.077272279999931, 49.219585396000063 ], [ -123.077474398999968, 49.220016102000052 ], [ -123.077476655999959, 49.220037584000131 ], [ -123.077517287999925, 49.220425312000138 ], [ -123.077478807999967, 49.221799800000063 ], [ -123.078128097999965, 49.221807747000085 ], [ -123.078809190999891, 49.221816103000037 ], [ -123.078771357999983, 49.22283761300011 ], [ -123.078750181999936, 49.223408893000098 ], [ -123.078076394999982, 49.223389283000138 ], [ -123.077403295999915, 49.223369690000048 ], [ -123.07666079199997, 49.223363769000052 ], [ -123.075990210999962, 49.22335838500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71244812", "BldgCostT": "47043191", "sL_LossRatio": "0.751765965241682", "sL_AssetLoss": "698768", "sL_BldgLoss": "525310", "sL_StrLoss": "272320", "sL_NStrLoss": "252990", "sL_ContLoss": "173458", "geom_point": "0101000020E610000043668929ACC45EC02CDE75F4479C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071905621, 49.22174320199999 ], [ -123.071952491999966, 49.220368903000058 ], [ -123.071969891, 49.219961295000104 ], [ -123.072003133999957, 49.219487335000103 ], [ -123.072037703999968, 49.218994810000019 ], [ -123.072029253999929, 49.218550597000046 ], [ -123.072020498999947, 49.218092588000054 ], [ -123.074000703999943, 49.21811928500005 ], [ -123.073988226000012, 49.218567766000085 ], [ -123.073975802999897, 49.21901500400007 ], [ -123.073961508999957, 49.219568600000066 ], [ -123.073343218000019, 49.21994909900009 ], [ -123.073343009999959, 49.220388681000074 ], [ -123.073295096999971, 49.221757500000081 ], [ -123.073994222999957, 49.22176409900004 ], [ -123.074670981999972, 49.221770501000037 ], [ -123.074615494999932, 49.223348212000097 ], [ -123.073968714999978, 49.223343290000059 ], [ -123.073233884, 49.223337691000062 ], [ -123.072526588999935, 49.22333207 ], [ -123.071826287999968, 49.223326505000024 ], [ -123.071890717999935, 49.222040739000086 ], [ -123.071905621, 49.22174320199999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75167918", "BldgCostT": "50871668", "sL_LossRatio": "0.752677868656104", "sL_AssetLoss": "876630", "sL_BldgLoss": "659820", "sL_StrLoss": "317030", "sL_NStrLoss": "342790", "sL_ContLoss": "216810", "geom_point": "0101000020E610000071BBE188BFC45EC09115B2A9A99C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075381162999975, 49.221777332000052 ], [ -123.07605510099999, 49.221783809000073 ], [ -123.075990210999962, 49.22335838500004 ], [ -123.075938924999946, 49.224853669000133 ], [ -123.075924495999971, 49.225273610000102 ], [ -123.074542721999961, 49.225266698000048 ], [ -123.073160994999967, 49.225257098000107 ], [ -123.071761894999966, 49.22521918700005 ], [ -123.071775493999965, 49.224819899000046 ], [ -123.071826287999968, 49.223326505000024 ], [ -123.072526588999935, 49.22333207 ], [ -123.073233884, 49.223337691000062 ], [ -123.073968714999978, 49.223343290000059 ], [ -123.074615494999932, 49.223348212000097 ], [ -123.074670981999972, 49.221770501000037 ], [ -123.075381162999975, 49.221777332000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65710417", "BldgCostT": "43011667", "sL_LossRatio": "0.724039107673593", "sL_AssetLoss": "752998", "sL_BldgLoss": "545200", "sL_StrLoss": "248470", "sL_NStrLoss": "296730", "sL_ContLoss": "207798", "geom_point": "0101000020E61000009C23543EFEC45EC090B24D43B79C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07666079199997, 49.223363769000052 ], [ -123.077403295999915, 49.223369690000048 ], [ -123.078076394999982, 49.223389283000138 ], [ -123.078750181999936, 49.223408893000098 ], [ -123.079420770999917, 49.223417810000029 ], [ -123.080118894999899, 49.223427088000101 ], [ -123.080065390999948, 49.224904252000087 ], [ -123.080049910999961, 49.225331309000104 ], [ -123.078683019999971, 49.225305110000114 ], [ -123.077324287999915, 49.225279999000101 ], [ -123.075924495999971, 49.225273610000102 ], [ -123.075938924999946, 49.224853669000133 ], [ -123.075990210999962, 49.22335838500004 ], [ -123.07666079199997, 49.223363769000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213789886", "BldgCostT": "145882079", "sL_LossRatio": "0.807055679454968", "sL_AssetLoss": "1062690", "sL_BldgLoss": "857650", "sL_StrLoss": "464850", "sL_NStrLoss": "392800", "sL_ContLoss": "205040", "geom_point": "0101000020E61000006080F1CA3DC55EC0610CF670939C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080135813000012, 49.22297075200008 ], [ -123.080162085999945, 49.222260344000063 ], [ -123.080177817, 49.221836 ], [ -123.08088821599992, 49.221846330000076 ], [ -123.081613501, 49.221856895000023 ], [ -123.082247405999951, 49.221866030000101 ], [ -123.082961598999972, 49.221876300000105 ], [ -123.082933864999987, 49.222260309000021 ], [ -123.082908400999912, 49.222613497000069 ], [ -123.085335886999985, 49.222645809000021 ], [ -123.0853261889999, 49.223048732000066 ], [ -123.085315381, 49.223496505000121 ], [ -123.082882377999937, 49.223464094000107 ], [ -123.082208613999924, 49.223454854000103 ], [ -123.081534303999945, 49.223445594000104 ], [ -123.081460598999939, 49.224922325000087 ], [ -123.081439070999977, 49.225352702000031 ], [ -123.080049910999961, 49.225331309000104 ], [ -123.080065390999948, 49.224904252000087 ], [ -123.080118894999899, 49.223427088000101 ], [ -123.080135813000012, 49.22297075200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138310229", "BldgCostT": "93524858", "sL_LossRatio": "0.767209382275865", "sL_AssetLoss": "971534", "sL_BldgLoss": "745370", "sL_StrLoss": "384870", "sL_NStrLoss": "360500", "sL_ContLoss": "226164", "geom_point": "0101000020E610000008EC9C2C56C55EC01CFC68FEB99C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.082882377999937, 49.223464094000107 ], [ -123.085315381, 49.223496505000121 ], [ -123.085302400999964, 49.223975330000023 ], [ -123.085289299999943, 49.224458804000079 ], [ -123.085267556999952, 49.224955859000012 ], [ -123.085248312000019, 49.225396297000025 ], [ -123.084560283999963, 49.22539118 ], [ -123.08386531599993, 49.225386008000072 ], [ -123.082822701999987, 49.22537580500012 ], [ -123.081439070999977, 49.225352702000031 ], [ -123.081460598999939, 49.224922325000087 ], [ -123.081534303999945, 49.223445594000104 ], [ -123.082208613999924, 49.223454854000103 ], [ -123.082882377999937, 49.223464094000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224640417", "BldgCostT": "153971667", "sL_LossRatio": "0.820384719375463", "sL_AssetLoss": "1579281", "sL_BldgLoss": "1295618", "sL_StrLoss": "648720", "sL_NStrLoss": "646898", "sL_ContLoss": "283663", "geom_point": "0101000020E610000023F20B4C7AC55EC062285059079D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087280099999958, 49.225413276000033 ], [ -123.088019581999959, 49.225419896000112 ], [ -123.087960899999956, 49.227341504000016 ], [ -123.087214042999989, 49.227331562000074 ], [ -123.086579693999965, 49.227323110000043 ], [ -123.085840574000017, 49.227313745000089 ], [ -123.085197088999905, 49.227305597000118 ], [ -123.085146386, 49.229096794000085 ], [ -123.084429955, 49.229088475000026 ], [ -123.083921679999932, 49.2290825480001 ], [ -123.083804799999911, 49.229081210000111 ], [ -123.08382698199992, 49.227854005000047 ], [ -123.0838351, 49.22728670700009 ], [ -123.083857823999921, 49.225856087000054 ], [ -123.08386531599993, 49.225386008000072 ], [ -123.084560283999963, 49.22539118 ], [ -123.085248312000019, 49.225396297000025 ], [ -123.085906367999897, 49.225401609000095 ], [ -123.086624390999972, 49.225407413000013 ], [ -123.087280099999958, 49.225413276000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219253166", "BldgCostT": "138191666", "sL_LossRatio": "0.692917326775595", "sL_AssetLoss": "2537460", "sL_BldgLoss": "1758250", "sL_StrLoss": "772810", "sL_NStrLoss": "985440", "sL_ContLoss": "779210", "geom_point": "0101000020E610000047A8C753A2C55EC0C7E90497BB9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090078623999901, 49.223560391000092 ], [ -123.09084239399999, 49.223571098000072 ], [ -123.090805001999939, 49.224517695000031 ], [ -123.090711417999941, 49.225443006000098 ], [ -123.09002728199999, 49.225438662000087 ], [ -123.089402297000021, 49.225434686000078 ], [ -123.088626720999955, 49.22542639600006 ], [ -123.088019581999959, 49.225419896000112 ], [ -123.087280099999958, 49.225413276000033 ], [ -123.086624390999972, 49.225407413000013 ], [ -123.085906367999897, 49.225401609000095 ], [ -123.085248312000019, 49.225396297000025 ], [ -123.085267556999952, 49.224955859000012 ], [ -123.085289299999943, 49.224458804000079 ], [ -123.085302400999964, 49.223975330000023 ], [ -123.085315381, 49.223496505000121 ], [ -123.088069410999978, 49.223532187000046 ], [ -123.090078623999901, 49.223560391000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "474934720", "BldgCostT": "306699987", "sL_LossRatio": "0.756926241659517", "sL_AssetLoss": "3811230", "sL_BldgLoss": "2884820", "sL_StrLoss": "1234990", "sL_NStrLoss": "1649830", "sL_ContLoss": "926410", "geom_point": "0101000020E6100000AFD7D392B7C55EC0FA7409E2179D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09002728199999, 49.225438662000087 ], [ -123.090711417999941, 49.225443006000098 ], [ -123.090723204999946, 49.226525195000065 ], [ -123.090700890999969, 49.227363193000059 ], [ -123.090675409999932, 49.22827329700015 ], [ -123.090633289999957, 49.229163891000042 ], [ -123.089924200999974, 49.229151904000069 ], [ -123.089292205999968, 49.229141207000026 ], [ -123.088536683999934, 49.229133133000111 ], [ -123.08790789599999, 49.229126407000088 ], [ -123.087960899999956, 49.227341504000016 ], [ -123.088019581999959, 49.225419896000112 ], [ -123.088626720999955, 49.22542639600006 ], [ -123.089402297000021, 49.225434686000078 ], [ -123.09002728199999, 49.225438662000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "382334487", "BldgCostT": "248920286", "sL_LossRatio": "0.746945019920319", "sL_AssetLoss": "3137500", "sL_BldgLoss": "2343540", "sL_StrLoss": "1067700", "sL_NStrLoss": "1275840", "sL_ContLoss": "793960", "geom_point": "0101000020E61000009566EA7DFCC55EC0FFC1D910109D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090723204999946, 49.226525195000065 ], [ -123.090711417999941, 49.225443006000098 ], [ -123.0914162279999, 49.225463020000056 ], [ -123.091985693000012, 49.225479192000108 ], [ -123.094080281999965, 49.22552480400001 ], [ -123.094174722, 49.225526520000074 ], [ -123.097514900999968, 49.225587606000026 ], [ -123.09749788699996, 49.226115745000172 ], [ -123.097481288999973, 49.226629891000059 ], [ -123.097458326999956, 49.227051006000096 ], [ -123.097434298999957, 49.227491595000089 ], [ -123.094136575999968, 49.22742707500003 ], [ -123.094020396999966, 49.22742480500014 ], [ -123.094011799999947, 49.227881233000069 ], [ -123.094003184999949, 49.228336005000124 ], [ -123.093995386999936, 49.228807812000099 ], [ -123.093988387999957, 49.229230094000052 ], [ -123.091353237999925, 49.229178106000077 ], [ -123.091257184999904, 49.22917622000007 ], [ -123.090633289999957, 49.229163891000042 ], [ -123.090675409999932, 49.22827329700015 ], [ -123.090700890999969, 49.227363193000059 ], [ -123.090723204999946, 49.226525195000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120523100", "BldgCostT": "73193562", "sL_LossRatio": "0.691243477345524", "sL_AssetLoss": "1329980", "sL_BldgLoss": "919340", "sL_StrLoss": "412010", "sL_NStrLoss": "507330", "sL_ContLoss": "410640", "geom_point": "0101000020E610000027794C0F10C65EC08923CD27C49C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095847401999947, 49.223642221000041 ], [ -123.097573011999927, 49.223669609000062 ], [ -123.097557204999973, 49.224172828000093 ], [ -123.09754258699995, 49.224638896000052 ], [ -123.097528375999929, 49.225126077 ], [ -123.097514900999968, 49.225587606000026 ], [ -123.094174722, 49.225526520000074 ], [ -123.094080281999965, 49.22552480400001 ], [ -123.091985693000012, 49.225479192000108 ], [ -123.0914162279999, 49.225463020000056 ], [ -123.090711417999941, 49.225443006000098 ], [ -123.090805001999939, 49.224517695000031 ], [ -123.091438941999982, 49.224526161000036 ], [ -123.091990008999957, 49.22453349200007 ], [ -123.092592615999962, 49.224546215000018 ], [ -123.094142197999957, 49.224578890000096 ], [ -123.094150123999924, 49.224112265000066 ], [ -123.094158594999982, 49.223615389 ], [ -123.094198981999938, 49.223616058000076 ], [ -123.095847401999947, 49.223642221000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261133219", "BldgCostT": "172960412", "sL_LossRatio": "0.768130805677077", "sL_AssetLoss": "1872090", "sL_BldgLoss": "1438010", "sL_StrLoss": "721300", "sL_NStrLoss": "716710", "sL_ContLoss": "434080", "geom_point": "0101000020E61000003767AEBAEBC55EC0D72E1AF0819C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09151753399999, 49.220864857000038 ], [ -123.094206889999924, 49.220912513000059 ], [ -123.094197602999913, 49.221395677000032 ], [ -123.09418980099997, 49.221801202000051 ], [ -123.094181620999933, 49.222277271000074 ], [ -123.094174199999912, 49.222707914000111 ], [ -123.094165837999981, 49.223194778000085 ], [ -123.094158594999982, 49.223615389 ], [ -123.094150123999924, 49.224112265000066 ], [ -123.094142197999957, 49.224578890000096 ], [ -123.092592615999962, 49.224546215000018 ], [ -123.091990008999957, 49.22453349200007 ], [ -123.091438941999982, 49.224526161000036 ], [ -123.090805001999939, 49.224517695000031 ], [ -123.09084239399999, 49.223571098000072 ], [ -123.090840996999972, 49.22271709600016 ], [ -123.090869826999949, 49.221994500000044 ], [ -123.090871890999964, 49.221742313000078 ], [ -123.090879267, 49.221362138000103 ], [ -123.090889105999906, 49.22085369399999 ], [ -123.09151753399999, 49.220864857000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241132749", "BldgCostT": "157794999", "sL_LossRatio": "0.757945365646258", "sL_AssetLoss": "3010560", "sL_BldgLoss": "2281840", "sL_StrLoss": "1020640", "sL_NStrLoss": "1261200", "sL_ContLoss": "728720", "geom_point": "0101000020E61000007FD3F4D941C65EC04CC76B77729C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09418980099997, 49.221801202000051 ], [ -123.094197602999913, 49.221395677000032 ], [ -123.094206889999924, 49.220912513000059 ], [ -123.094250263999967, 49.220913301000039 ], [ -123.09765489599998, 49.220975706000118 ], [ -123.09766741, 49.220547148000023 ], [ -123.097681309999928, 49.220071104000041 ], [ -123.099727108999971, 49.220102682000046 ], [ -123.099709896999954, 49.220589691 ], [ -123.099695007999983, 49.221012587000132 ], [ -123.099681812999947, 49.221471308000048 ], [ -123.099669311999889, 49.221906402000045 ], [ -123.101102586999929, 49.221933747000058 ], [ -123.101750404999976, 49.221946107000107 ], [ -123.101717715999982, 49.222843411000035 ], [ -123.101679314999942, 49.223744904000093 ], [ -123.100971704999949, 49.22373219100011 ], [ -123.099659709999955, 49.223708591000083 ], [ -123.097573011999927, 49.223669609000062 ], [ -123.095847401999947, 49.223642221000041 ], [ -123.094198981999938, 49.223616058000076 ], [ -123.094158594999982, 49.223615389 ], [ -123.094165837999981, 49.223194778000085 ], [ -123.094174199999912, 49.222707914000111 ], [ -123.094181620999933, 49.222277271000074 ], [ -123.09418980099997, 49.221801202000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73200000", "BldgCostT": "47325000", "sL_LossRatio": "0.723082581255306", "sL_AssetLoss": "1084883", "sL_BldgLoss": "784460", "sL_StrLoss": "364450", "sL_NStrLoss": "420010", "sL_ContLoss": "300423", "geom_point": "0101000020E6100000A311864327C65EC0EC8E8B8B1F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096921846999948, 49.218377763000028 ], [ -123.097731294999974, 49.218392416000071 ], [ -123.097726191999953, 49.21856786100011 ], [ -123.097718603999908, 49.218828819000052 ], [ -123.09770729499995, 49.219215987000027 ], [ -123.097694177000022, 49.219647235000082 ], [ -123.097681309999928, 49.220071104000041 ], [ -123.09766741, 49.220547148000023 ], [ -123.09765489599998, 49.220975706000118 ], [ -123.094250263999967, 49.220913301000039 ], [ -123.094206889999924, 49.220912513000059 ], [ -123.094214355999938, 49.220469058000084 ], [ -123.094222019999975, 49.220013901000108 ], [ -123.09426133099997, 49.220014567000085 ], [ -123.094275057999965, 49.220014804000073 ], [ -123.09483208099999, 49.220024094000124 ], [ -123.094841042999931, 49.219631400000054 ], [ -123.094850988999966, 49.219195794 ], [ -123.094860227999931, 49.218785772000089 ], [ -123.094870197999953, 49.218340596000147 ], [ -123.096921846999948, 49.218377763000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204577310", "BldgCostT": "138278189", "sL_LossRatio": "0.769523307396612", "sL_AssetLoss": "2776758", "sL_BldgLoss": "2136780", "sL_StrLoss": "938030", "sL_NStrLoss": "1198750", "sL_ContLoss": "639978", "geom_point": "0101000020E610000077C8B4D362C65EC0DD48C8F6109C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101191502999924, 49.218454754000099 ], [ -123.101887899999937, 49.218467309000026 ], [ -123.101856, 49.219308693000094 ], [ -123.101824200999943, 49.220148296000019 ], [ -123.101156210999946, 49.22013377000011 ], [ -123.099727108999971, 49.220102682000046 ], [ -123.097681309999928, 49.220071104000041 ], [ -123.097694177000022, 49.219647235000082 ], [ -123.09770729499995, 49.219215987000027 ], [ -123.097718603999908, 49.218828819000052 ], [ -123.097726191999953, 49.21856786100011 ], [ -123.097731294999974, 49.218392416000071 ], [ -123.09834964599996, 49.218403554000126 ], [ -123.101191502999924, 49.218454754000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105619999", "BldgCostT": "69799999", "sL_LossRatio": "0.703301849194963", "sL_AssetLoss": "2007360", "sL_BldgLoss": "1411780", "sL_StrLoss": "617460", "sL_NStrLoss": "794320", "sL_ContLoss": "595580", "geom_point": "0101000020E6100000F753EB1664C65EC00C77DB43CA9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101311416999977, 49.215809803000042 ], [ -123.101991471999924, 49.215818095000046 ], [ -123.101954709999973, 49.216737802000097 ], [ -123.101921009999927, 49.217607891000085 ], [ -123.101887899999937, 49.218467309000026 ], [ -123.101191502999924, 49.218454754000099 ], [ -123.09834964599996, 49.218403554000126 ], [ -123.097731294999974, 49.218392416000071 ], [ -123.097758409, 49.217519385000095 ], [ -123.097768715999962, 49.217244910000069 ], [ -123.097771643999948, 49.217138017000082 ], [ -123.097773074999978, 49.217085676000075 ], [ -123.097784777999919, 49.216657990000023 ], [ -123.097812982999969, 49.215767 ], [ -123.098454192999952, 49.215774840000066 ], [ -123.101311416999977, 49.215809803000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132452750", "BldgCostT": "92315000", "sL_LossRatio": "0.774697676706198", "sL_AssetLoss": "1626570", "sL_BldgLoss": "1260100", "sL_StrLoss": "615800", "sL_NStrLoss": "644300", "sL_ContLoss": "366470", "geom_point": "0101000020E61000000072A176A8C65EC0DF5F3DEEDB9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105637853999923, 49.216807705000058 ], [ -123.106180800999979, 49.216817999000057 ], [ -123.106121500999961, 49.217726191000132 ], [ -123.106118041999977, 49.218236545000153 ], [ -123.10611579099999, 49.218566507000098 ], [ -123.105460898999951, 49.21855346500012 ], [ -123.104050005999966, 49.218525381000035 ], [ -123.102550027999911, 49.218485098000038 ], [ -123.101887899999937, 49.218467309000026 ], [ -123.101921009999927, 49.217607891000085 ], [ -123.101954709999973, 49.216737802000097 ], [ -123.102589615999975, 49.216749868000079 ], [ -123.105637853999923, 49.216807705000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94866667", "BldgCostT": "62796667", "sL_LossRatio": "0.710131123068525", "sL_AssetLoss": "1795260", "sL_BldgLoss": "1274870", "sL_StrLoss": "564890", "sL_NStrLoss": "709980", "sL_ContLoss": "520390", "geom_point": "0101000020E61000003DBB3985AAC65EC0012F336C949B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105796212999934, 49.214201591000169 ], [ -123.106432401999939, 49.214212412000066 ], [ -123.10637860199995, 49.21507569200007 ], [ -123.106233086999936, 49.215934807000075 ], [ -123.106180800999979, 49.216817999000057 ], [ -123.105637853999923, 49.216807705000058 ], [ -123.102589615999975, 49.216749868000079 ], [ -123.101954709999973, 49.216737802000097 ], [ -123.101991471999924, 49.215818095000046 ], [ -123.102023226999933, 49.215001903000051 ], [ -123.102049699999924, 49.214357697000018 ], [ -123.10205649699995, 49.214138006000056 ], [ -123.102692980999947, 49.214148834000135 ], [ -123.105796212999934, 49.214201591000169 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132768083", "BldgCostT": "83723333", "sL_LossRatio": "0.685420986651739", "sL_AssetLoss": "2536660", "sL_BldgLoss": "1738680", "sL_StrLoss": "780650", "sL_NStrLoss": "958030", "sL_ContLoss": "797980", "geom_point": "0101000020E6100000D80DE387EDC65EC08458DC039D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.106180800999979, 49.216817999000057 ], [ -123.106233086999936, 49.215934807000075 ], [ -123.10637860199995, 49.21507569200007 ], [ -123.106432401999939, 49.214212412000066 ], [ -123.106504290999908, 49.213322501000057 ], [ -123.107072553999956, 49.213330871000032 ], [ -123.109922298999948, 49.213372811000056 ], [ -123.109902713999986, 49.213824702000061 ], [ -123.109884388999959, 49.21424641100004 ], [ -123.109863232999928, 49.214715241000086 ], [ -123.109844606999957, 49.215128191000119 ], [ -123.109844172999928, 49.215192638000097 ], [ -123.109841744999954, 49.215561481000051 ], [ -123.109838883999956, 49.215991887 ], [ -123.109818372999896, 49.216433491000096 ], [ -123.1097985319999, 49.216860983000089 ], [ -123.111028923999953, 49.216871444000091 ], [ -123.11099419199995, 49.217745873000126 ], [ -123.110992338999907, 49.217792771000099 ], [ -123.11098776299994, 49.217908069000025 ], [ -123.108075678999981, 49.21779505000007 ], [ -123.106121500999961, 49.217726191000132 ], [ -123.106180800999979, 49.216817999000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124887970", "BldgCostT": "78450413", "sL_LossRatio": "0.685711288314998", "sL_AssetLoss": "1830158", "sL_BldgLoss": "1254960", "sL_StrLoss": "543290", "sL_NStrLoss": "711670", "sL_ContLoss": "575198", "geom_point": "0101000020E61000006F96C3D51EC75EC0DEDA5FC9979B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109884388999959, 49.21424641100004 ], [ -123.112719695999928, 49.214289093000062 ], [ -123.112687142999945, 49.215225982000049 ], [ -123.112629415999947, 49.216889096000045 ], [ -123.111600702999951, 49.216879565000085 ], [ -123.111028923999953, 49.216871444000091 ], [ -123.1097985319999, 49.216860983000089 ], [ -123.109818372999896, 49.216433491000096 ], [ -123.109838883999956, 49.215991887 ], [ -123.109841744999954, 49.215561481000051 ], [ -123.109844172999928, 49.215192638000097 ], [ -123.109844606999957, 49.215128191000119 ], [ -123.109863232999928, 49.214715241000086 ], [ -123.109884388999959, 49.21424641100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80992418", "BldgCostT": "50256668", "sL_LossRatio": "0.706992914312313", "sL_AssetLoss": "1237424", "sL_BldgLoss": "874850", "sL_StrLoss": "375060", "sL_NStrLoss": "499790", "sL_ContLoss": "362574", "geom_point": "0101000020E61000009FAEDD2C54C75EC0BF363C399A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116120863000035, 49.213191169000019 ], [ -123.116872617999888, 49.213201299000083 ], [ -123.11684130899998, 49.214099320000066 ], [ -123.116841024999957, 49.214108401000054 ], [ -123.116809117999949, 49.214998498000064 ], [ -123.116778340999971, 49.215837666000105 ], [ -123.116775026999932, 49.21592762300002 ], [ -123.116738112999926, 49.216933296000086 ], [ -123.116737807999968, 49.216942297000031 ], [ -123.116710191999928, 49.217807307000065 ], [ -123.116188874999978, 49.217804767000104 ], [ -123.116171977999954, 49.217804682000079 ], [ -123.115952302999972, 49.217803611000107 ], [ -123.114583787999962, 49.217796965000076 ], [ -123.113339202999938, 49.217790899000072 ], [ -123.113338395999961, 49.217790890000039 ], [ -123.11098776299994, 49.217908069000025 ], [ -123.110992338999907, 49.217792771000099 ], [ -123.11099419199995, 49.217745873000126 ], [ -123.111028923999953, 49.216871444000091 ], [ -123.111600702999951, 49.216879565000085 ], [ -123.112629415999947, 49.216889096000045 ], [ -123.112687142999945, 49.215225982000049 ], [ -123.112719695999928, 49.214289093000062 ], [ -123.112724118999949, 49.214064003000047 ], [ -123.112730959999908, 49.213876760000062 ], [ -123.112739565999931, 49.213643002000026 ], [ -123.11274980599994, 49.213363881000127 ], [ -123.113747889, 49.213158202000052 ], [ -123.114188542999941, 49.21316462900009 ], [ -123.114639018000034, 49.213171200000083 ], [ -123.115406881999931, 49.213181556000045 ], [ -123.116120863000035, 49.213191169000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174562585", "BldgCostT": "119258335", "sL_LossRatio": "0.820476459828933", "sL_AssetLoss": "1513328", "sL_BldgLoss": "1241650", "sL_StrLoss": "586720", "sL_NStrLoss": "654930", "sL_ContLoss": "271678", "geom_point": "0101000020E610000076F5AE6A5EC75EC01BC34958239B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116528283999955, 49.210459006000107 ], [ -123.117053164999959, 49.210248733000064 ], [ -123.11698121299996, 49.210590028000055 ], [ -123.116973484999917, 49.210769946000049 ], [ -123.116944240999942, 49.211451944000032 ], [ -123.116907501999933, 49.21230858800002 ], [ -123.116872958000016, 49.213192286000023 ], [ -123.116872617999888, 49.213201299000083 ], [ -123.116120863000035, 49.213191169000019 ], [ -123.115406881999931, 49.213181556000045 ], [ -123.114639018000034, 49.213171200000083 ], [ -123.114188542999941, 49.21316462900009 ], [ -123.113747889, 49.213158202000052 ], [ -123.113577606999925, 49.212960809000066 ], [ -123.113281400999952, 49.212759207000083 ], [ -123.112840486999971, 49.212567294000138 ], [ -123.112776094999944, 49.212565514000076 ], [ -123.112803466999964, 49.211799109000012 ], [ -123.112815100999953, 49.211473895000083 ], [ -123.114016174999946, 49.211270386000066 ], [ -123.114096735999965, 49.21125675800004 ], [ -123.11424932599999, 49.211230887000092 ], [ -123.11450009899994, 49.211188388000018 ], [ -123.114716701999939, 49.211125792000068 ], [ -123.115059094999964, 49.21102679800002 ], [ -123.115651783999965, 49.210829187000101 ], [ -123.11618049499999, 49.210605885000128 ], [ -123.116237606999988, 49.210581753000085 ], [ -123.116528283999955, 49.210459006000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226580767", "BldgCostT": "152815229", "sL_LossRatio": "0.754786358142104", "sL_AssetLoss": "1949969", "sL_BldgLoss": "1471810", "sL_StrLoss": "681670", "sL_NStrLoss": "790140", "sL_ContLoss": "478159", "geom_point": "0101000020E6100000681450B098C75EC04B9806D11C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117111898999937, 49.214121987000112 ], [ -123.11714681499997, 49.213206809000042 ], [ -123.117041408999981, 49.213204682 ], [ -123.116872617999888, 49.213201299000083 ], [ -123.116872958000016, 49.213192286000023 ], [ -123.116907501999933, 49.21230858800002 ], [ -123.116944240999942, 49.211451944000032 ], [ -123.116973484999917, 49.210769946000049 ], [ -123.11698121299996, 49.210590028000055 ], [ -123.117053164999959, 49.210248733000064 ], [ -123.11722504799998, 49.210176784000041 ], [ -123.118299529999916, 49.209733498000105 ], [ -123.118961792999983, 49.209453902000043 ], [ -123.120380583999989, 49.208856796000092 ], [ -123.120362377999967, 49.209327396000077 ], [ -123.12031270599999, 49.209808187000078 ], [ -123.120269807999961, 49.210223 ], [ -123.120254944, 49.210667995000037 ], [ -123.120239299999966, 49.211136505000063 ], [ -123.120225207999937, 49.211495583000023 ], [ -123.120216092999939, 49.21179056900003 ], [ -123.120211022999953, 49.211954602000056 ], [ -123.120197886999918, 49.212378609000069 ], [ -123.12018410599994, 49.212809405000016 ], [ -123.120168691999979, 49.213292097000107 ], [ -123.120148254999975, 49.213727444000078 ], [ -123.120125972999958, 49.214202601000089 ], [ -123.117811183999919, 49.214140713000049 ], [ -123.117111898999937, 49.214121987000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102142645", "BldgCostT": "66401524", "sL_LossRatio": "0.751492050891771", "sL_AssetLoss": "1098488", "sL_BldgLoss": "825505", "sL_StrLoss": "392380", "sL_NStrLoss": "433125", "sL_ContLoss": "272983", "geom_point": "0101000020E6100000D39818E4D1C75EC0612FFB12FD9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120637037, 49.209330655000024 ], [ -123.124181090999969, 49.20937261200006 ], [ -123.124176233999947, 49.209573989 ], [ -123.124169523999967, 49.209852918000109 ], [ -123.124168019999956, 49.20991640700003 ], [ -123.124145980999955, 49.210272362000119 ], [ -123.124145382999927, 49.210281495000039 ], [ -123.124132501999924, 49.210645991000099 ], [ -123.124119752, 49.210995338000032 ], [ -123.12411288, 49.211183190000092 ], [ -123.124104791999912, 49.211381212000063 ], [ -123.124064795999985, 49.212359289000098 ], [ -123.123340147999969, 49.212346743000069 ], [ -123.121761898999949, 49.212319400000084 ], [ -123.120854736999988, 49.2123537370001 ], [ -123.120197886999918, 49.212378609000069 ], [ -123.120211022999953, 49.211954602000056 ], [ -123.120216092999939, 49.21179056900003 ], [ -123.120225207999937, 49.211495583000023 ], [ -123.120239299999966, 49.211136505000063 ], [ -123.120254944, 49.210667995000037 ], [ -123.120269807999961, 49.210223 ], [ -123.12031270599999, 49.209808187000078 ], [ -123.120362377999967, 49.209327396000077 ], [ -123.120637037, 49.209330655000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43479751", "BldgCostT": "25095001", "sL_LossRatio": "0.645167630126136", "sL_AssetLoss": "676728", "sL_BldgLoss": "436603", "sL_StrLoss": "201920", "sL_NStrLoss": "234683", "sL_ContLoss": "240125", "geom_point": "0101000020E6100000B0E0C0DCD5C75EC0FBB605F0BB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120946510999957, 49.208604334000036 ], [ -123.121699960999962, 49.208269553000093 ], [ -123.123857024999964, 49.208335247000086 ], [ -123.124122251999935, 49.208372946000104 ], [ -123.124218265999929, 49.208373718000118 ], [ -123.124203018999978, 49.208791271000081 ], [ -123.124197056999918, 49.208953318000027 ], [ -123.12418848799993, 49.209187201000049 ], [ -123.124181090999969, 49.20937261200006 ], [ -123.120637037, 49.209330655000024 ], [ -123.120362377999967, 49.209327396000077 ], [ -123.120380583999989, 49.208856796000092 ], [ -123.120946510999957, 49.208604334000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148168417", "BldgCostT": "101241667", "sL_LossRatio": "0.783042935244289", "sL_AssetLoss": "1502076", "sL_BldgLoss": "1176190", "sL_StrLoss": "542360", "sL_NStrLoss": "633830", "sL_ContLoss": "325886", "geom_point": "0101000020E6100000FEEF4E5F0BC85EC0017834A3D99A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124218265999929, 49.208373718000118 ], [ -123.12497937799999, 49.208379598000093 ], [ -123.125624754999961, 49.208397337000058 ], [ -123.126154701999951, 49.208411894000093 ], [ -123.126749692999937, 49.208421020000138 ], [ -123.126831998999975, 49.208422280000093 ], [ -123.127511914999971, 49.20843270400006 ], [ -123.127395801999967, 49.210686086000088 ], [ -123.126687799999956, 49.21067418300003 ], [ -123.126022318, 49.210662994000074 ], [ -123.126010195999982, 49.211019358000073 ], [ -123.125997214999927, 49.211400986000122 ], [ -123.124104791999912, 49.211381212000063 ], [ -123.12411288, 49.211183190000092 ], [ -123.124119752, 49.210995338000032 ], [ -123.124132501999924, 49.210645991000099 ], [ -123.124145382999927, 49.210281495000039 ], [ -123.124145980999955, 49.210272362000119 ], [ -123.124168019999956, 49.20991640700003 ], [ -123.124169523999967, 49.209852918000109 ], [ -123.124176233999947, 49.209573989 ], [ -123.124181090999969, 49.20937261200006 ], [ -123.12418848799993, 49.209187201000049 ], [ -123.124197056999918, 49.208953318000027 ], [ -123.124203018999978, 49.208791271000081 ], [ -123.124218265999929, 49.208373718000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186524417", "BldgCostT": "123001667", "sL_LossRatio": "0.743690714180296", "sL_AssetLoss": "1490660", "sL_BldgLoss": "1108590", "sL_StrLoss": "490550", "sL_NStrLoss": "618040", "sL_ContLoss": "382070", "geom_point": "0101000020E610000085B28DCBFAC75EC03E23BED1969A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124122251999935, 49.208372946000104 ], [ -123.123857024999964, 49.208335247000086 ], [ -123.121699960999962, 49.208269553000093 ], [ -123.122828186999982, 49.20779879500008 ], [ -123.124263418999973, 49.207201198000071 ], [ -123.124474912, 49.20711040900008 ], [ -123.125056305999934, 49.206871907000085 ], [ -123.126141397999945, 49.206710171000104 ], [ -123.12620581499999, 49.206768594000067 ], [ -123.126208150999929, 49.206770690000042 ], [ -123.12630181699997, 49.206855598000132 ], [ -123.126262314999977, 49.207670693000111 ], [ -123.126154701999951, 49.208411894000093 ], [ -123.125624754999961, 49.208397337000058 ], [ -123.12497937799999, 49.208379598000093 ], [ -123.124218265999929, 49.208373718000118 ], [ -123.124122251999935, 49.208372946000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238323386", "BldgCostT": "161672079", "sL_LossRatio": "0.788538545961499", "sL_AssetLoss": "1685650", "sL_BldgLoss": "1329200", "sL_StrLoss": "565700", "sL_NStrLoss": "763500", "sL_ContLoss": "356450", "geom_point": "0101000020E61000003C3D6B8E1EC85EC021DCF0FD859A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12620581499999, 49.206768594000067 ], [ -123.126141397999945, 49.206710171000104 ], [ -123.125056305999934, 49.206871907000085 ], [ -123.125457310999977, 49.206706693000058 ], [ -123.126095418999938, 49.206443801000148 ], [ -123.126293165, 49.206355698000024 ], [ -123.126328175999973, 49.206340094000026 ], [ -123.126985397999945, 49.206067048000101 ], [ -123.127605520999964, 49.205809397000095 ], [ -123.12756392199999, 49.206881108000104 ], [ -123.127511914999971, 49.20843270400006 ], [ -123.126831998999975, 49.208422280000093 ], [ -123.126749692999937, 49.208421020000138 ], [ -123.126154701999951, 49.208411894000093 ], [ -123.126262314999977, 49.207670693000111 ], [ -123.12630181699997, 49.206855598000132 ], [ -123.126208150999929, 49.206770690000042 ], [ -123.12620581499999, 49.206768594000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "518036663", "BldgCostT": "310789671", "sL_LossRatio": "0.632030938422398", "sL_AssetLoss": "5864811", "sL_BldgLoss": "3706742", "sL_StrLoss": "1252530", "sL_NStrLoss": "2454212", "sL_ContLoss": "2158069", "geom_point": "0101000020E610000048117C802CC85EC0C1A73979119A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12756392199999, 49.206881108000104 ], [ -123.127605520999964, 49.205809397000095 ], [ -123.126985397999945, 49.206067048000101 ], [ -123.126328175999973, 49.206340094000026 ], [ -123.126293165, 49.206355698000024 ], [ -123.126095418999938, 49.206443801000148 ], [ -123.125457310999977, 49.206706693000058 ], [ -123.125056305999934, 49.206871907000085 ], [ -123.124474912, 49.20711040900008 ], [ -123.12442389899995, 49.207055860000047 ], [ -123.124414389999941, 49.207045692000037 ], [ -123.123907387, 49.206522172000099 ], [ -123.123509654000017, 49.206111480000082 ], [ -123.122486415999973, 49.20505479900006 ], [ -123.121368519999947, 49.205315897000055 ], [ -123.121216398999977, 49.205347717000066 ], [ -123.119982587999985, 49.205605903000034 ], [ -123.119119399999988, 49.205741411000098 ], [ -123.117291849999958, 49.206071750000014 ], [ -123.117291154000014, 49.205998306000048 ], [ -123.117290400999977, 49.205913568000085 ], [ -123.117249405999956, 49.205859880000084 ], [ -123.117259262999937, 49.205714181000076 ], [ -123.117161621999983, 49.205012966000027 ], [ -123.117076431999976, 49.204401640000107 ], [ -123.120750004999977, 49.203199588000132 ], [ -123.122368909999977, 49.202758091000121 ], [ -123.122643490999934, 49.202758089000085 ], [ -123.122823519999969, 49.202627825 ], [ -123.12334209899997, 49.202252505000018 ], [ -123.124152390999924, 49.202036015000083 ], [ -123.124828536999942, 49.201793789000092 ], [ -123.125406859999956, 49.201793162000108 ], [ -123.125406335999955, 49.201586790000064 ], [ -123.126742446999955, 49.201108104000106 ], [ -123.12677229399992, 49.201097411000127 ], [ -123.126846320999974, 49.201078398000021 ], [ -123.1272144499999, 49.200983849000103 ], [ -123.127229610999962, 49.200979959000058 ], [ -123.127648411999985, 49.200872399000076 ], [ -123.128090621999945, 49.200688733000142 ], [ -123.128540003999944, 49.200502083000089 ], [ -123.13016088899991, 49.200240102000052 ], [ -123.130713067999977, 49.199966894000084 ], [ -123.130871912999964, 49.19988830500013 ], [ -123.134209088999967, 49.19995669900004 ], [ -123.134853993999926, 49.199865510000151 ], [ -123.134759502999898, 49.200378206000131 ], [ -123.134908990999946, 49.20044089400011 ], [ -123.135012452999916, 49.200338099000092 ], [ -123.135171194999927, 49.20018029800012 ], [ -123.135551906999936, 49.200140246000032 ], [ -123.135550898999952, 49.200142756000162 ], [ -123.135195704999958, 49.20102719600002 ], [ -123.135271912999897, 49.201037291000048 ], [ -123.135397088999952, 49.201054207000084 ], [ -123.135255502999911, 49.20150349200005 ], [ -123.134983683999977, 49.202151202000145 ], [ -123.13493159699999, 49.20215069500005 ], [ -123.134922695999933, 49.202405388000024 ], [ -123.134945752, 49.202482517000043 ], [ -123.134972690999916, 49.202572515000099 ], [ -123.135007907, 49.202690231000069 ], [ -123.13501371800001, 49.202709599000073 ], [ -123.135186384999926, 49.202957401000027 ], [ -123.135427504999882, 49.203163805000123 ], [ -123.134861906999902, 49.203013646000088 ], [ -123.134800745999911, 49.202939504000064 ], [ -123.13479700799995, 49.202998385000093 ], [ -123.134782097, 49.203239409000034 ], [ -123.134779736999974, 49.203310814000119 ], [ -123.13474710199992, 49.204296904000053 ], [ -123.134097455999935, 49.20428515000004 ], [ -123.133469826999914, 49.204273805000085 ], [ -123.133389703999967, 49.205683183000133 ], [ -123.132536516999977, 49.205669757000081 ], [ -123.131727000999931, 49.205656989000033 ], [ -123.131040366999969, 49.205646107000121 ], [ -123.130390486999957, 49.205635803000064 ], [ -123.130330674999968, 49.206493600000066 ], [ -123.130374590999963, 49.206915444000124 ], [ -123.130372330999961, 49.206996465000067 ], [ -123.130313875999917, 49.207054356000086 ], [ -123.130258400999963, 49.206997028000053 ], [ -123.130260824999965, 49.206913323000038 ], [ -123.129560160999944, 49.206905334000083 ], [ -123.128899298999926, 49.206897786000113 ], [ -123.128865059999953, 49.208110036000043 ], [ -123.128855398999946, 49.208451399000126 ], [ -123.128218543999935, 49.208442533000024 ], [ -123.127511914999971, 49.20843270400006 ], [ -123.12756392199999, 49.206881108000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "584863667", "BldgCostT": "404716667", "sL_LossRatio": "0.863020216859874", "sL_AssetLoss": "3362540", "sL_BldgLoss": "2901940", "sL_StrLoss": "1357090", "sL_NStrLoss": "1544850", "sL_ContLoss": "460600", "geom_point": "0101000020E610000036BA183D56C85EC0E14447B4959A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128865059999953, 49.208110036000043 ], [ -123.128899298999926, 49.206897786000113 ], [ -123.129560160999944, 49.206905334000083 ], [ -123.130260824999965, 49.206913323000038 ], [ -123.130258400999963, 49.206997028000053 ], [ -123.130313875999917, 49.207054356000086 ], [ -123.130372330999961, 49.206996465000067 ], [ -123.130374590999963, 49.206915444000124 ], [ -123.13098798, 49.20692295200007 ], [ -123.131689441, 49.206931526000091 ], [ -123.131623604999973, 49.208174138000047 ], [ -123.131606790999939, 49.208491303000109 ], [ -123.130978593999913, 49.208482976 ], [ -123.130951136999926, 49.208482603000057 ], [ -123.130257773, 49.208473450000064 ], [ -123.129522817999927, 49.208461876000044 ], [ -123.129481690999967, 49.208461223000036 ], [ -123.128855398999946, 49.208451399000126 ], [ -123.128865059999953, 49.208110036000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "331912167", "BldgCostT": "223886667", "sL_LossRatio": "0.822329694911938", "sL_AssetLoss": "2310251", "sL_BldgLoss": "1899788", "sL_StrLoss": "869780", "sL_NStrLoss": "1030008", "sL_ContLoss": "410463", "geom_point": "0101000020E6100000BF39B76470C85EC030C099F3679A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132536516999977, 49.205669757000081 ], [ -123.133389703999967, 49.205683183000133 ], [ -123.133331097999985, 49.206965296000057 ], [ -123.132444165999956, 49.206947047000078 ], [ -123.131689441, 49.206931526000091 ], [ -123.13098798, 49.20692295200007 ], [ -123.130374590999963, 49.206915444000124 ], [ -123.130330674999968, 49.206493600000066 ], [ -123.130390486999957, 49.205635803000064 ], [ -123.131040366999969, 49.205646107000121 ], [ -123.131727000999931, 49.205656989000033 ], [ -123.132536516999977, 49.205669757000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "597853500", "BldgCostT": "410055000", "sL_LossRatio": "0.826655126664807", "sL_AssetLoss": "3512420", "sL_BldgLoss": "2903560", "sL_StrLoss": "1317660", "sL_NStrLoss": "1585900", "sL_ContLoss": "608860", "geom_point": "0101000020E6100000C425225785C85EC022D2781A979A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13402208399998, 49.206971055000047 ], [ -123.134664088999926, 49.20697640500002 ], [ -123.134642065, 49.207476722000131 ], [ -123.13461059199993, 49.208190545000022 ], [ -123.134595395999952, 49.208535701000102 ], [ -123.134382905999956, 49.208531908000083 ], [ -123.133290283999955, 49.208515407000085 ], [ -123.133009282, 49.208511496000064 ], [ -123.132420159999967, 49.208503004000129 ], [ -123.131606790999939, 49.208491303000109 ], [ -123.131623604999973, 49.208174138000047 ], [ -123.131689441, 49.206931526000091 ], [ -123.132444165999956, 49.206947047000078 ], [ -123.133331097999985, 49.206965296000057 ], [ -123.13402208399998, 49.206971055000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "615462386", "BldgCostT": "419417079", "sL_LossRatio": "0.867112032448755", "sL_AssetLoss": "4225740", "sL_BldgLoss": "3664190", "sL_StrLoss": "1697280", "sL_NStrLoss": "1966910", "sL_ContLoss": "561550", "geom_point": "0101000020E6100000EB47BBB8AAC85EC0817AD03F839A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.135473785999977, 49.20571914800005 ], [ -123.136243513999929, 49.205727587000098 ], [ -123.136214457999941, 49.206565190000063 ], [ -123.136199270999953, 49.20700189800008 ], [ -123.136175102999943, 49.207501310000104 ], [ -123.13614126099999, 49.208198912000071 ], [ -123.136123599999948, 49.208563693000023 ], [ -123.135801520999962, 49.208557896000073 ], [ -123.134595395999952, 49.208535701000102 ], [ -123.13461059199993, 49.208190545000022 ], [ -123.134642065, 49.207476722000131 ], [ -123.134664088999926, 49.20697640500002 ], [ -123.134671929999911, 49.206549485000046 ], [ -123.13468728399998, 49.20571049100004 ], [ -123.13537788799999, 49.205718087000051 ], [ -123.135473785999977, 49.20571914800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "405765335", "BldgCostT": "273509586", "sL_LossRatio": "0.795086767457828", "sL_AssetLoss": "2971160", "sL_BldgLoss": "2362330", "sL_StrLoss": "1005760", "sL_NStrLoss": "1356570", "sL_ContLoss": "608830", "geom_point": "0101000020E61000000B6B74189DC85EC0CE48CED34A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.135526823999982, 49.204316798000086 ], [ -123.13558951, 49.204318398000055 ], [ -123.1359259809999, 49.204379592000066 ], [ -123.136357375999978, 49.204547792000099 ], [ -123.136282306999973, 49.204652991000103 ], [ -123.136243513999929, 49.205727587000098 ], [ -123.135473785999977, 49.20571914800005 ], [ -123.13537788799999, 49.205718087000051 ], [ -123.13468728399998, 49.20571049100004 ], [ -123.134671929999911, 49.206549485000046 ], [ -123.134664088999926, 49.20697640500002 ], [ -123.13402208399998, 49.206971055000047 ], [ -123.133331097999985, 49.206965296000057 ], [ -123.133389703999967, 49.205683183000133 ], [ -123.133469826999914, 49.204273805000085 ], [ -123.134097455999935, 49.20428515000004 ], [ -123.13474710199992, 49.204296904000053 ], [ -123.135526823999982, 49.204316798000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273228646", "BldgCostT": "181561525", "sL_LossRatio": "0.734766423729015", "sL_AssetLoss": "1847662", "sL_BldgLoss": "1357600", "sL_StrLoss": "617610", "sL_NStrLoss": "739990", "sL_ContLoss": "490062", "geom_point": "0101000020E610000009DE91900CC95EC0293F1D4D7D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140528400999955, 49.205282792000126 ], [ -123.14090902199996, 49.205162323000096 ], [ -123.14135190899998, 49.205307492000074 ], [ -123.141740168999959, 49.205434788000076 ], [ -123.142008158999943, 49.205583319000027 ], [ -123.142204491999934, 49.205738068000095 ], [ -123.142240750999974, 49.205797240000088 ], [ -123.142266831999976, 49.205839711000088 ], [ -123.142315447999948, 49.206164394000048 ], [ -123.142252718999956, 49.207095056000107 ], [ -123.142192577999978, 49.208005098000044 ], [ -123.142176934999924, 49.208231726000079 ], [ -123.142154695999963, 49.208553597000062 ], [ -123.142003334999941, 49.208551847000059 ], [ -123.141165605999944, 49.208542181000091 ], [ -123.140533991999988, 49.208534912000061 ], [ -123.14054502499999, 49.208222899000049 ], [ -123.140553263999976, 49.207990412000065 ], [ -123.140556413999917, 49.207900759000069 ], [ -123.140585792, 49.20706980300011 ], [ -123.140631482999979, 49.205791817000076 ], [ -123.140629207999979, 49.205495386000024 ], [ -123.140528400999955, 49.205282792000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161509725", "BldgCostT": "102874944", "sL_LossRatio": "0.762578577912944", "sL_AssetLoss": "1227126", "sL_BldgLoss": "935780", "sL_StrLoss": "513880", "sL_NStrLoss": "421900", "sL_ContLoss": "291346", "geom_point": "0101000020E610000039A2288E4BC95EC08168AD68F39A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145843071999948, 49.211893862000053 ], [ -123.145623483999955, 49.211455995000122 ], [ -123.143615215999915, 49.211423492000073 ], [ -123.143632425999968, 49.210964458000049 ], [ -123.143647592999983, 49.210561412000054 ], [ -123.142039301999944, 49.210541314000054 ], [ -123.14111818399999, 49.21052580600012 ], [ -123.140462921999969, 49.210514805000109 ], [ -123.140533991999988, 49.208534912000061 ], [ -123.141165605999944, 49.208542181000091 ], [ -123.142003334999941, 49.208551847000059 ], [ -123.142154695999963, 49.208553597000062 ], [ -123.142923132999968, 49.208562573000087 ], [ -123.14373290199994, 49.208572002000025 ], [ -123.144232099999968, 49.208577100000056 ], [ -123.144429770999977, 49.208578314000086 ], [ -123.144432686999977, 49.208578341000063 ], [ -123.14516201, 49.208582799000027 ], [ -123.146432373999957, 49.208608394000059 ], [ -123.146643142999963, 49.208611250000033 ], [ -123.146973101999976, 49.208615703000113 ], [ -123.147268684999943, 49.208619708000057 ], [ -123.147646400999989, 49.208680988000054 ], [ -123.147810632999935, 49.208756294000089 ], [ -123.148080191999981, 49.208879890000027 ], [ -123.148259300999925, 49.209046783000083 ], [ -123.148711984, 49.209472196000092 ], [ -123.148641115999908, 49.209733391000057 ], [ -123.148601305999961, 49.210536484000087 ], [ -123.148594925999987, 49.210665402000089 ], [ -123.148578841999949, 49.211021914000078 ], [ -123.148557305999987, 49.21150031000014 ], [ -123.148536213999947, 49.211956383000015 ], [ -123.14847861599992, 49.213274600000034 ], [ -123.147124270999925, 49.21326062900004 ], [ -123.146789644999956, 49.213257159000072 ], [ -123.146682472999913, 49.21325606300006 ], [ -123.14665194299999, 49.213255752000109 ], [ -123.146638187999926, 49.213255591000056 ], [ -123.143544225999932, 49.213202498000022 ], [ -123.14356357099993, 49.212736323000073 ], [ -123.143581298999962, 49.212309014000063 ], [ -123.14607209699993, 49.212350618000137 ], [ -123.145843071999948, 49.211893862000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "329422486", "BldgCostT": "210808316", "sL_LossRatio": "0.726673080962415", "sL_AssetLoss": "2951740", "sL_BldgLoss": "2144950", "sL_StrLoss": "971410", "sL_NStrLoss": "1173540", "sL_ContLoss": "806790", "geom_point": "0101000020E6100000443D8F7A1DC95EC0A27C5AA8299B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14043211699996, 49.211372403000105 ], [ -123.140448292999963, 49.210886414000065 ], [ -123.140462921999969, 49.210514805000109 ], [ -123.14111818399999, 49.21052580600012 ], [ -123.142039301999944, 49.210541314000054 ], [ -123.143647592999983, 49.210561412000054 ], [ -123.143632425999968, 49.210964458000049 ], [ -123.143615215999915, 49.211423492000073 ], [ -123.145623483999955, 49.211455995000122 ], [ -123.145843071999948, 49.211893862000053 ], [ -123.14607209699993, 49.212350618000137 ], [ -123.143581298999962, 49.212309014000063 ], [ -123.14356357099993, 49.212736323000073 ], [ -123.143544225999932, 49.213202498000022 ], [ -123.143512805999947, 49.213644210000062 ], [ -123.143483180999951, 49.214061111000071 ], [ -123.140976871999925, 49.214010556000119 ], [ -123.1407762799999, 49.214006500000025 ], [ -123.140789504999987, 49.213746504 ], [ -123.140360701999967, 49.213735102000044 ], [ -123.140362684, 49.213604148000059 ], [ -123.140369612999933, 49.213145288000135 ], [ -123.140400988999914, 49.212256191000073 ], [ -123.14043211699996, 49.211372403000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79715416", "BldgCostT": "52741666", "sL_LossRatio": "0.729798379218266", "sL_AssetLoss": "1074790", "sL_BldgLoss": "784380", "sL_StrLoss": "354800", "sL_NStrLoss": "429580", "sL_ContLoss": "290410", "geom_point": "0101000020E610000091CC03BB4EC95EC0C7EEC8797B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143544225999932, 49.213202498000022 ], [ -123.146638187999926, 49.213255591000056 ], [ -123.146835277999941, 49.213662597000052 ], [ -123.147052183999975, 49.214110604000062 ], [ -123.147290000999959, 49.214557663000058 ], [ -123.147540604999918, 49.215028791000123 ], [ -123.147764977999913, 49.215517004000098 ], [ -123.148007895999939, 49.21604558399999 ], [ -123.143434686999981, 49.215964104000115 ], [ -123.143461138999982, 49.215479711000086 ], [ -123.143488376, 49.214980108000127 ], [ -123.143485880999918, 49.214535246000025 ], [ -123.143483180999951, 49.214061111000071 ], [ -123.143512805999947, 49.213644210000062 ], [ -123.143544225999932, 49.213202498000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125563118", "BldgCostT": "79379307", "sL_LossRatio": "0.713166144200627", "sL_AssetLoss": "1491644", "sL_BldgLoss": "1063790", "sL_StrLoss": "521260", "sL_NStrLoss": "542530", "sL_ContLoss": "427854", "geom_point": "0101000020E6100000FFF71A6115C95EC05FDBA182BF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140355502, 49.213997998000089 ], [ -123.140360701999967, 49.213735102000044 ], [ -123.140789504999987, 49.213746504 ], [ -123.1407762799999, 49.214006500000025 ], [ -123.140976871999925, 49.214010556000119 ], [ -123.143483180999951, 49.214061111000071 ], [ -123.143485880999918, 49.214535246000025 ], [ -123.143488376, 49.214980108000127 ], [ -123.143461138999982, 49.215479711000086 ], [ -123.143434686999981, 49.215964104000115 ], [ -123.143436961999925, 49.216442297000086 ], [ -123.14343891199999, 49.216856000000121 ], [ -123.143728671999966, 49.217265879000109 ], [ -123.1438807899999, 49.217481115000055 ], [ -123.143876483999918, 49.217706198000023 ], [ -123.143852820999896, 49.218124515000078 ], [ -123.143828413999955, 49.21855618900009 ], [ -123.143817997999975, 49.218969685000047 ], [ -123.14380650499993, 49.219424890000056 ], [ -123.140841196999986, 49.219349893000135 ], [ -123.14012995, 49.219331908000072 ], [ -123.140155865999986, 49.21891156000008 ], [ -123.140180212999937, 49.218516203000078 ], [ -123.140182215999943, 49.218372203000044 ], [ -123.140216503999952, 49.217369600000033 ], [ -123.140243991999938, 49.21681088800009 ], [ -123.140271518999967, 49.215919893000027 ], [ -123.140298299, 49.215037796000075 ], [ -123.140304193999967, 49.214942510000064 ], [ -123.140355502, 49.213997998000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118466417", "BldgCostT": "77281667", "sL_LossRatio": "0.729571934963815", "sL_AssetLoss": "1573032", "sL_BldgLoss": "1147640", "sL_StrLoss": "541310", "sL_NStrLoss": "606330", "sL_ContLoss": "425392", "geom_point": "0101000020E6100000512567B457C95EC00D86C655DD9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143434686999981, 49.215964104000115 ], [ -123.148007895999939, 49.21604558399999 ], [ -123.148239567999951, 49.216472522000046 ], [ -123.148281599999933, 49.216550004000112 ], [ -123.14831030499991, 49.216909297000043 ], [ -123.148311455999931, 49.217182789000034 ], [ -123.148311987999961, 49.217317715000071 ], [ -123.148313797999919, 49.217746214000066 ], [ -123.148295045999959, 49.218180500000109 ], [ -123.148278004999923, 49.218574897000067 ], [ -123.148263661, 49.219026393000085 ], [ -123.148250207999936, 49.219452405000062 ], [ -123.147499795999948, 49.219444251000041 ], [ -123.146803182000014, 49.219436698000088 ], [ -123.145305702999948, 49.219417699000125 ], [ -123.14380650499993, 49.219424890000056 ], [ -123.143817997999975, 49.218969685000047 ], [ -123.143828413999955, 49.21855618900009 ], [ -123.143852820999896, 49.218124515000078 ], [ -123.143876483999918, 49.217706198000023 ], [ -123.1438807899999, 49.217481115000055 ], [ -123.143728671999966, 49.217265879000109 ], [ -123.14343891199999, 49.216856000000121 ], [ -123.143436961999925, 49.216442297000086 ], [ -123.143434686999981, 49.215964104000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110929083", "BldgCostT": "73323333", "sL_LossRatio": "0.71693994944903", "sL_AssetLoss": "2009457", "sL_BldgLoss": "1440660", "sL_StrLoss": "652270", "sL_NStrLoss": "788390", "sL_ContLoss": "568797", "geom_point": "0101000020E6100000E4A2EFA890C95EC0802C6595A99B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150024303999928, 49.213243387000098 ], [ -123.15037837600002, 49.213175294000088 ], [ -123.150506380999957, 49.213281404000078 ], [ -123.150928023999981, 49.213746843000095 ], [ -123.151245404999912, 49.21409719800009 ], [ -123.15126258899997, 49.214151694000101 ], [ -123.151255336999924, 49.214624334000064 ], [ -123.151247887999915, 49.215107895000081 ], [ -123.151234153999951, 49.215577239000041 ], [ -123.151233869999928, 49.215587343999985 ], [ -123.151219114999932, 49.216091702000092 ], [ -123.15119174599999, 49.216613468000041 ], [ -123.151162093, 49.217178392000122 ], [ -123.151079079999974, 49.219113919000151 ], [ -123.151063213999961, 49.219483587000099 ], [ -123.150510306999962, 49.219480698000062 ], [ -123.150287274999982, 49.219480181000087 ], [ -123.150224240999933, 49.219480046000037 ], [ -123.150099577999924, 49.21947974800004 ], [ -123.149950396999941, 49.219479419 ], [ -123.149703285999976, 49.219480117000053 ], [ -123.148969267999945, 49.219466103000059 ], [ -123.148250207999936, 49.219452405000062 ], [ -123.148263661, 49.219026393000085 ], [ -123.148278004999923, 49.218574897000067 ], [ -123.148295045999959, 49.218180500000109 ], [ -123.148313797999919, 49.217746214000066 ], [ -123.148311987999961, 49.217317715000071 ], [ -123.148311455999931, 49.217182789000034 ], [ -123.14831030499991, 49.216909297000043 ], [ -123.148281599999933, 49.216550004000112 ], [ -123.148239567999951, 49.216472522000046 ], [ -123.148007895999939, 49.21604558399999 ], [ -123.147764977999913, 49.215517004000098 ], [ -123.147540604999918, 49.215028791000123 ], [ -123.147290000999959, 49.214557663000058 ], [ -123.147052183999975, 49.214110604000062 ], [ -123.146835277999941, 49.213662597000052 ], [ -123.146638187999926, 49.213255591000056 ], [ -123.14665194299999, 49.213255752000109 ], [ -123.146682472999913, 49.21325606300006 ], [ -123.146789644999956, 49.213257159000072 ], [ -123.147124270999925, 49.21326062900004 ], [ -123.14847861599992, 49.213274600000034 ], [ -123.149197711999989, 49.213280630000028 ], [ -123.149623787999943, 49.213284198000082 ], [ -123.150024303999928, 49.213243387000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99255228", "BldgCostT": "66574857", "sL_LossRatio": "0.752682067345341", "sL_AssetLoss": "1021600", "sL_BldgLoss": "768940", "sL_StrLoss": "392120", "sL_NStrLoss": "376820", "sL_ContLoss": "252660", "geom_point": "0101000020E6100000CFB471827EC95EC00F270F8F6D9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.149703285999976, 49.219480117000053 ], [ -123.149950396999941, 49.219479419 ], [ -123.150245727999931, 49.219972766000041 ], [ -123.150344385999944, 49.220137549000079 ], [ -123.151099402999961, 49.221398705000098 ], [ -123.151086491999976, 49.221833409000055 ], [ -123.151006390999967, 49.224212091000091 ], [ -123.150247504999925, 49.224202525000074 ], [ -123.149571809999955, 49.224193982000109 ], [ -123.148805383999957, 49.224185097000102 ], [ -123.148057513999944, 49.224176403000072 ], [ -123.14737674599999, 49.224168719000026 ], [ -123.146691408999914, 49.224161003000098 ], [ -123.145934488999956, 49.224151735000099 ], [ -123.145107208999931, 49.224141594000116 ], [ -123.145206696999935, 49.221765304000058 ], [ -123.14600991899999, 49.221774127000117 ], [ -123.146779898999952, 49.221782589000092 ], [ -123.14679830099999, 49.219928099000128 ], [ -123.146803182000014, 49.219436698000088 ], [ -123.147499795999948, 49.219444251000041 ], [ -123.148250207999936, 49.219452405000062 ], [ -123.148969267999945, 49.219466103000059 ], [ -123.149703285999976, 49.219480117000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67682750", "BldgCostT": "41945000", "sL_LossRatio": "0.717455166343207", "sL_AssetLoss": "565758", "sL_BldgLoss": "405906", "sL_StrLoss": "197791", "sL_NStrLoss": "208115", "sL_ContLoss": "159852", "geom_point": "0101000020E61000004C8092E92DC95EC0F16CFBC33B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145305702999948, 49.219417699000125 ], [ -123.146803182000014, 49.219436698000088 ], [ -123.14679830099999, 49.219928099000128 ], [ -123.146779898999952, 49.221782589000092 ], [ -123.14600991899999, 49.221774127000117 ], [ -123.145206696999935, 49.221765304000058 ], [ -123.1444581169999, 49.221756149000086 ], [ -123.143758402999964, 49.22174760600015 ], [ -123.14275552399998, 49.221736121000092 ], [ -123.14183818399999, 49.221725595000073 ], [ -123.140970329999973, 49.221715407000069 ], [ -123.140015432999959, 49.221704243000026 ], [ -123.140059280999949, 49.220813635000098 ], [ -123.140104700999956, 49.219897833000061 ], [ -123.14012995, 49.219331908000072 ], [ -123.140841196999986, 49.219349893000135 ], [ -123.14380650499993, 49.219424890000056 ], [ -123.145305702999948, 49.219417699000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86529251", "BldgCostT": "58915001", "sL_LossRatio": "0.759094803099392", "sL_AssetLoss": "991033", "sL_BldgLoss": "752288", "sL_StrLoss": "368853", "sL_NStrLoss": "383435", "sL_ContLoss": "238745", "geom_point": "0101000020E6100000A56E1DD21EC95EC0A1572C13B89C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1444581169999, 49.221756149000086 ], [ -123.145206696999935, 49.221765304000058 ], [ -123.145107208999931, 49.224141594000116 ], [ -123.145077508999961, 49.224847899000068 ], [ -123.14500498799994, 49.226550740000093 ], [ -123.144996153999926, 49.226757439000082 ], [ -123.144984601999951, 49.227028887000088 ], [ -123.143582708999958, 49.227012490000099 ], [ -123.141634208999946, 49.227001391000101 ], [ -123.140832404999983, 49.226986109000087 ], [ -123.13981070499996, 49.226966597000121 ], [ -123.13990199399997, 49.224746870000075 ], [ -123.139929395999943, 49.224080896000068 ], [ -123.139947817999925, 49.223515699000089 ], [ -123.139989588999953, 49.222613390000049 ], [ -123.140015432999959, 49.221704243000026 ], [ -123.140970329999973, 49.221715407000069 ], [ -123.14183818399999, 49.221725595000073 ], [ -123.14275552399998, 49.221736121000092 ], [ -123.143758402999964, 49.22174760600015 ], [ -123.1444581169999, 49.221756149000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89856500", "BldgCostT": "61970000", "sL_LossRatio": "0.797431978659589", "sL_AssetLoss": "819853", "sL_BldgLoss": "653777", "sL_StrLoss": "364480", "sL_NStrLoss": "289297", "sL_ContLoss": "166076", "geom_point": "0101000020E610000011AE89FDCCC85EC0DB59CBCF539C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139424908999942, 49.219329185000028 ], [ -123.14012995, 49.219331908000072 ], [ -123.140104700999956, 49.219897833000061 ], [ -123.140059280999949, 49.220813635000098 ], [ -123.140015432999959, 49.221704243000026 ], [ -123.139989588999953, 49.222613390000049 ], [ -123.139947817999925, 49.223515699000089 ], [ -123.139299806999958, 49.223504438000134 ], [ -123.137585280999986, 49.223474598000017 ], [ -123.135206084999965, 49.223438496000064 ], [ -123.135220801999978, 49.223027805000051 ], [ -123.135238294999951, 49.222539403000098 ], [ -123.135246361999947, 49.22228116300009 ], [ -123.135252797999954, 49.222074364000065 ], [ -123.135266385999984, 49.221638490000011 ], [ -123.135294002999942, 49.220833907000106 ], [ -123.135297304999952, 49.220737609 ], [ -123.135144004, 49.220397604000041 ], [ -123.134883182999928, 49.22021949800007 ], [ -123.134267411999971, 49.219878802000046 ], [ -123.134248800999927, 49.219853800000074 ], [ -123.134044301999936, 49.21957920799999 ], [ -123.134040109999916, 49.219269304000115 ], [ -123.13700840599995, 49.219312073000033 ], [ -123.137746603999972, 49.219322695000088 ], [ -123.139424908999942, 49.219329185000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102696813", "BldgCostT": "66993192", "sL_LossRatio": "0.775855086472168", "sL_AssetLoss": "817315", "sL_BldgLoss": "634118", "sL_StrLoss": "348771", "sL_NStrLoss": "285347", "sL_ContLoss": "183197", "geom_point": "0101000020E6100000FF329C5BB6C85EC0B44B55B9D49C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139299806999958, 49.223504438000134 ], [ -123.139947817999925, 49.223515699000089 ], [ -123.139929395999943, 49.224080896000068 ], [ -123.13990199399997, 49.224746870000075 ], [ -123.13981070499996, 49.226966597000121 ], [ -123.138637360999937, 49.226923811000042 ], [ -123.137452200999931, 49.226880607000034 ], [ -123.135096520999966, 49.226795498000129 ], [ -123.131917683999987, 49.226679401000062 ], [ -123.13193341299997, 49.226197722000038 ], [ -123.131948506999947, 49.225735311000108 ], [ -123.131962718999958, 49.225325213000126 ], [ -123.131978955999969, 49.224857503000102 ], [ -123.132010015999953, 49.223961488000079 ], [ -123.132681317999968, 49.223970671000139 ], [ -123.133406185999945, 49.223980606000026 ], [ -123.134109882999923, 49.223990784000094 ], [ -123.135188996999958, 49.224006381 ], [ -123.135206084999965, 49.223438496000064 ], [ -123.137585280999986, 49.223474598000017 ], [ -123.139299806999958, 49.223504438000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73070417", "BldgCostT": "49921667", "sL_LossRatio": "0.765851665109895", "sL_AssetLoss": "839344", "sL_BldgLoss": "642813", "sL_StrLoss": "322828", "sL_NStrLoss": "319985", "sL_ContLoss": "196531", "geom_point": "0101000020E61000006A5B419176C85EC0D984AC55589C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130691159999969, 49.222222517000084 ], [ -123.130711001999913, 49.221572292000054 ], [ -123.129186486999984, 49.221545439000082 ], [ -123.12850912, 49.221533502000021 ], [ -123.128528615999969, 49.220507102000127 ], [ -123.128556881999884, 49.219207102000034 ], [ -123.129331787999931, 49.219215910000102 ], [ -123.130444240999964, 49.219228546000068 ], [ -123.134040109999916, 49.219269304000115 ], [ -123.134044301999936, 49.21957920799999 ], [ -123.134248800999927, 49.219853800000074 ], [ -123.134267411999971, 49.219878802000046 ], [ -123.134883182999928, 49.22021949800007 ], [ -123.135144004, 49.220397604000041 ], [ -123.135297304999952, 49.220737609 ], [ -123.135294002999942, 49.220833907000106 ], [ -123.135266385999984, 49.221638490000011 ], [ -123.135252797999954, 49.222074364000065 ], [ -123.135246361999947, 49.22228116300009 ], [ -123.135238294999951, 49.222539403000098 ], [ -123.135220801999978, 49.223027805000051 ], [ -123.135206084999965, 49.223438496000064 ], [ -123.135188996999958, 49.224006381 ], [ -123.134109882999923, 49.223990784000094 ], [ -123.133406185999945, 49.223980606000026 ], [ -123.132681317999968, 49.223970671000139 ], [ -123.132010015999953, 49.223961488000079 ], [ -123.131321792, 49.223951323000101 ], [ -123.130636014999979, 49.223941199000059 ], [ -123.130653828999968, 49.223400878000064 ], [ -123.130672205999986, 49.222844084000073 ], [ -123.130691159999969, 49.222222517000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113054744", "BldgCostT": "72164076", "sL_LossRatio": "0.699472285758054", "sL_AssetLoss": "1514456", "sL_BldgLoss": "1059320", "sL_StrLoss": "465090", "sL_NStrLoss": "594230", "sL_ContLoss": "455136", "geom_point": "0101000020E61000007564BBCE48C85EC053783B88BE9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128441698999936, 49.223909802000087 ], [ -123.128482198999905, 49.222811897000042 ], [ -123.12850912, 49.221533502000021 ], [ -123.129186486999984, 49.221545439000082 ], [ -123.130711001999913, 49.221572292000054 ], [ -123.130691159999969, 49.222222517000084 ], [ -123.130672205999986, 49.222844084000073 ], [ -123.130653828999968, 49.223400878000064 ], [ -123.130636014999979, 49.223941199000059 ], [ -123.131321792, 49.223951323000101 ], [ -123.132010015999953, 49.223961488000079 ], [ -123.131978955999969, 49.224857503000102 ], [ -123.131962718999958, 49.225325213000126 ], [ -123.131948506999947, 49.225735311000108 ], [ -123.13193341299997, 49.226197722000038 ], [ -123.131917683999987, 49.226679401000062 ], [ -123.129079139999973, 49.226572807000139 ], [ -123.129051783999898, 49.226571754000069 ], [ -123.128296705, 49.226543402000033 ], [ -123.126648889999984, 49.226486003000076 ], [ -123.126746608999952, 49.226348998000041 ], [ -123.126759579999955, 49.225978726000015 ], [ -123.126832802999928, 49.223892112000016 ], [ -123.127626603999929, 49.223900844000077 ], [ -123.128441698999936, 49.223909802000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226783918", "BldgCostT": "154841668", "sL_LossRatio": "0.812416677912473", "sL_AssetLoss": "2141539", "sL_BldgLoss": "1739822", "sL_StrLoss": "784832", "sL_NStrLoss": "954990", "sL_ContLoss": "401717", "geom_point": "0101000020E6100000AF71CB81FDC75EC0651360587E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123657292999937, 49.223858800000045 ], [ -123.123684998999948, 49.223255986000041 ], [ -123.122997422999944, 49.223247407000031 ], [ -123.122859289999937, 49.223245697000031 ], [ -123.122338018999955, 49.223330901000033 ], [ -123.121632952999917, 49.22344302500008 ], [ -123.120955915, 49.223550712000154 ], [ -123.120886652999957, 49.223098262000143 ], [ -123.120884593999975, 49.223084897 ], [ -123.120737017999915, 49.222653106000081 ], [ -123.120641599999928, 49.222310002000043 ], [ -123.12063531299998, 49.222241108000112 ], [ -123.12063281799999, 49.222213693000143 ], [ -123.12059098, 49.221754697000094 ], [ -123.121127104999943, 49.221674410000098 ], [ -123.122515306999986, 49.221466496000033 ], [ -123.123046679999931, 49.221463219000029 ], [ -123.123750978999965, 49.221458897000076 ], [ -123.124544793, 49.221464513000043 ], [ -123.125356204999932, 49.221470193000123 ], [ -123.126070065999954, 49.221486330000126 ], [ -123.126906293999951, 49.221505200000074 ], [ -123.127703665, 49.221519284000117 ], [ -123.12850912, 49.221533502000021 ], [ -123.128482198999905, 49.222811897000042 ], [ -123.128441698999936, 49.223909802000087 ], [ -123.127626603999929, 49.223900844000077 ], [ -123.126832802999928, 49.223892112000016 ], [ -123.126005541999987, 49.22388323300008 ], [ -123.125248492999958, 49.223875108000087 ], [ -123.124481058999933, 49.223867233000064 ], [ -123.123657292999937, 49.223858800000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90114582", "BldgCostT": "59938332", "sL_LossRatio": "0.745268654763462", "sL_AssetLoss": "1176938", "sL_BldgLoss": "877135", "sL_StrLoss": "409199", "sL_NStrLoss": "467936", "sL_ContLoss": "299803", "geom_point": "0101000020E6100000EFAE3FCBEBC75EC01AE86F7CCC9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120921993999957, 49.224473100000068 ], [ -123.120955915, 49.223550712000154 ], [ -123.121632952999917, 49.22344302500008 ], [ -123.122338018999955, 49.223330901000033 ], [ -123.122859289999937, 49.223245697000031 ], [ -123.122997422999944, 49.223247407000031 ], [ -123.123684998999948, 49.223255986000041 ], [ -123.123657292999937, 49.223858800000045 ], [ -123.124481058999933, 49.223867233000064 ], [ -123.125248492999958, 49.223875108000087 ], [ -123.126005541999987, 49.22388323300008 ], [ -123.126832802999928, 49.223892112000016 ], [ -123.126759579999955, 49.225978726000015 ], [ -123.126746608999952, 49.226348998000041 ], [ -123.126648889999984, 49.226486003000076 ], [ -123.125156311999959, 49.226428200000022 ], [ -123.123581311999928, 49.226369987000091 ], [ -123.122473762999931, 49.22632084 ], [ -123.121801676999922, 49.22629099800006 ], [ -123.120904689999975, 49.226258001000112 ], [ -123.120901668999963, 49.225868097000017 ], [ -123.120897803999966, 49.225373183000073 ], [ -123.120909882999953, 49.224923774000032 ], [ -123.120921993999957, 49.224473100000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76052583", "BldgCostT": "51978333", "sL_LossRatio": "0.735147501065176", "sL_AssetLoss": "1696903", "sL_BldgLoss": "1247474", "sL_StrLoss": "525304", "sL_NStrLoss": "722170", "sL_ContLoss": "449429", "geom_point": "0101000020E6100000D1C08F6A98C75EC0C066B1FBAB9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116499600999958, 49.22349029100009 ], [ -123.116563685999949, 49.221714595000016 ], [ -123.116807682999962, 49.221719307000079 ], [ -123.116882335999946, 49.221721751000082 ], [ -123.11703817099999, 49.221726887000031 ], [ -123.117599779000031, 49.22174538399999 ], [ -123.118262404999925, 49.221767200000095 ], [ -123.118849422, 49.221773899000048 ], [ -123.120114528999977, 49.22177980000005 ], [ -123.12059098, 49.221754697000094 ], [ -123.12063281799999, 49.222213693000143 ], [ -123.12063531299998, 49.222241108000112 ], [ -123.120641599999928, 49.222310002000043 ], [ -123.120737017999915, 49.222653106000081 ], [ -123.120884593999975, 49.223084897 ], [ -123.120886652999957, 49.223098262000143 ], [ -123.120955915, 49.223550712000154 ], [ -123.120921993999957, 49.224473100000068 ], [ -123.120909882999953, 49.224923774000032 ], [ -123.120897803999966, 49.225373183000073 ], [ -123.120901668999963, 49.225868097000017 ], [ -123.120904689999975, 49.226258001000112 ], [ -123.120621085999943, 49.226245183000046 ], [ -123.119438965999947, 49.226191813000064 ], [ -123.118119114999971, 49.226132193000119 ], [ -123.117356796999914, 49.226106211000037 ], [ -123.116649302999974, 49.226082095000059 ], [ -123.116538831999975, 49.226078058000027 ], [ -123.11637949, 49.226072190000103 ], [ -123.116380619999944, 49.226054006 ], [ -123.11643450199989, 49.225186390000097 ], [ -123.116444120999958, 49.224590301000013 ], [ -123.116486215999942, 49.223848716000141 ], [ -123.116487396999943, 49.223827598000099 ], [ -123.116499600999958, 49.22349029100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "365734479", "BldgCostT": "253689858", "sL_LossRatio": "0.847086915694304", "sL_AssetLoss": "2322607", "sL_BldgLoss": "1967450", "sL_StrLoss": "1055810", "sL_NStrLoss": "911640", "sL_ContLoss": "355157", "geom_point": "0101000020E610000023A199CC9DC75EC02F831885309D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116357022999964, 49.226547474000022 ], [ -123.11637949, 49.226072190000103 ], [ -123.116538831999975, 49.226078058000027 ], [ -123.116649302999974, 49.226082095000059 ], [ -123.117356796999914, 49.226106211000037 ], [ -123.118119114999971, 49.226132193000119 ], [ -123.119438965999947, 49.226191813000064 ], [ -123.120621085999943, 49.226245183000046 ], [ -123.120904689999975, 49.226258001000112 ], [ -123.121801676999922, 49.22629099800006 ], [ -123.121758287, 49.22725819100004 ], [ -123.121719438999961, 49.228422167000083 ], [ -123.121702617000011, 49.228925655000097 ], [ -123.121697510999937, 49.229078804000032 ], [ -123.121665293999939, 49.229996798000073 ], [ -123.12072617699998, 49.229965092000022 ], [ -123.120641284999977, 49.229962239000024 ], [ -123.11936388499997, 49.229919096000046 ], [ -123.117972105999925, 49.229871107000086 ], [ -123.117122514, 49.229841562000033 ], [ -123.116510495999989, 49.229820302000043 ], [ -123.116367068999963, 49.229815182000038 ], [ -123.116205098999913, 49.229809385000102 ], [ -123.116205559999969, 49.229800359000109 ], [ -123.116253584999981, 49.228806296000165 ], [ -123.116335507999963, 49.227002508000155 ], [ -123.116357022999964, 49.226547474000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101716531", "BldgCostT": "66503603", "sL_LossRatio": "0.735129136809911", "sL_AssetLoss": "1477890", "sL_BldgLoss": "1086440", "sL_StrLoss": "503710", "sL_NStrLoss": "582730", "sL_ContLoss": "391450", "geom_point": "0101000020E61000009F5BF0BB4CC75EC001F6B09B429D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11296586099999, 49.226470484000068 ], [ -123.112951211999984, 49.225952492000069 ], [ -123.114585303999945, 49.226008909000051 ], [ -123.11637949, 49.226072190000103 ], [ -123.116357022999964, 49.226547474000022 ], [ -123.116335507999963, 49.227002508000155 ], [ -123.116253584999981, 49.228806296000165 ], [ -123.116205559999969, 49.229800359000109 ], [ -123.116205098999913, 49.229809385000102 ], [ -123.116161103999929, 49.23073878400006 ], [ -123.115379761999961, 49.230711462000038 ], [ -123.112977604999941, 49.23062740100012 ], [ -123.110867601, 49.230560990000072 ], [ -123.110864014999933, 49.230114943000039 ], [ -123.110860098999979, 49.229622209000063 ], [ -123.110835572999974, 49.22910686199999 ], [ -123.110814294, 49.228659814000068 ], [ -123.113013886999966, 49.228696200000094 ], [ -123.112997964999948, 49.22822390800011 ], [ -123.112983005, 49.22778020900008 ], [ -123.112980335999964, 49.227351451000082 ], [ -123.112977393999955, 49.226877499000089 ], [ -123.11296586099999, 49.226470484000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116623644", "BldgCostT": "77336523", "sL_LossRatio": "0.752808988764045", "sL_AssetLoss": "1570850", "sL_BldgLoss": "1182550", "sL_StrLoss": "578760", "sL_NStrLoss": "603790", "sL_ContLoss": "388300", "geom_point": "0101000020E6100000134F97410CC75EC09C34A1A41B9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.108370004999983, 49.226365951000048 ], [ -123.108393093999922, 49.225810583000047 ], [ -123.110734715999939, 49.225901285000127 ], [ -123.111719790000024, 49.225924064000054 ], [ -123.112951211999984, 49.225952492000069 ], [ -123.11296586099999, 49.226470484000068 ], [ -123.112977393999955, 49.226877499000089 ], [ -123.112980335999964, 49.227351451000082 ], [ -123.112983005, 49.22778020900008 ], [ -123.112997964999948, 49.22822390800011 ], [ -123.113013886999966, 49.228696200000094 ], [ -123.110814294, 49.228659814000068 ], [ -123.108325702999977, 49.228612001000059 ], [ -123.106487141999963, 49.228572043000099 ], [ -123.105849904999943, 49.228558187000075 ], [ -123.105838538999961, 49.228114217000076 ], [ -123.10582709699996, 49.227667591000056 ], [ -123.10651237899998, 49.227676070000037 ], [ -123.108314025, 49.22769829700006 ], [ -123.108333045999984, 49.227247028000086 ], [ -123.108351694999925, 49.226805716000115 ], [ -123.108370004999983, 49.226365951000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112817667", "BldgCostT": "74501667", "sL_LossRatio": "0.722244660239638", "sL_AssetLoss": "1708410", "sL_BldgLoss": "1233890", "sL_StrLoss": "572620", "sL_NStrLoss": "661270", "sL_ContLoss": "474520", "geom_point": "0101000020E61000000A199F34DAC65EC00F7FB000649D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103643093999921, 49.230331206000066 ], [ -123.103658790999987, 49.229887792000099 ], [ -123.103675407999958, 49.229417697000059 ], [ -123.103692009999932, 49.228952389000064 ], [ -123.103706684999935, 49.228541206000038 ], [ -123.105849904999943, 49.228558187000075 ], [ -123.106487141999963, 49.228572043000099 ], [ -123.108325702999977, 49.228612001000059 ], [ -123.110814294, 49.228659814000068 ], [ -123.110835572999974, 49.22910686199999 ], [ -123.110860098999979, 49.229622209000063 ], [ -123.110864014999933, 49.230114943000039 ], [ -123.110867601, 49.230560990000072 ], [ -123.108223097999939, 49.230458607000095 ], [ -123.106438378999954, 49.230393519000067 ], [ -123.105702797999953, 49.23036668600006 ], [ -123.105675490999928, 49.230980301000073 ], [ -123.103621308999934, 49.230943982000063 ], [ -123.103643093999921, 49.230331206000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89989749", "BldgCostT": "60174999", "sL_LossRatio": "0.739833736932254", "sL_AssetLoss": "1354480", "sL_BldgLoss": "1002090", "sL_StrLoss": "467710", "sL_NStrLoss": "534380", "sL_ContLoss": "352390", "geom_point": "0101000020E610000071D602D6C5C65EC04F6FDAE70C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103771021999975, 49.226696307000068 ], [ -123.103804985999901, 49.225689212000091 ], [ -123.104435160999941, 49.225706151000097 ], [ -123.105341202999952, 49.225730521000052 ], [ -123.105898915999916, 49.225745512000067 ], [ -123.106550609999957, 49.225762509000035 ], [ -123.108393093999922, 49.225810583000047 ], [ -123.108370004999983, 49.226365951000048 ], [ -123.108351694999925, 49.226805716000115 ], [ -123.108333045999984, 49.227247028000086 ], [ -123.108314025, 49.22769829700006 ], [ -123.10651237899998, 49.227676070000037 ], [ -123.10582709699996, 49.227667591000056 ], [ -123.105838538999961, 49.228114217000076 ], [ -123.105849904999943, 49.228558187000075 ], [ -123.103706684999935, 49.228541206000038 ], [ -123.103724442, 49.228043943000074 ], [ -123.103739718, 49.227616106000021 ], [ -123.103771021999975, 49.226696307000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103892476", "BldgCostT": "64120310", "sL_LossRatio": "0.64854498177935", "sL_AssetLoss": "2088290", "sL_BldgLoss": "1354350", "sL_StrLoss": "579570", "sL_NStrLoss": "774780", "sL_ContLoss": "733940", "geom_point": "0101000020E61000007817A3A684C65EC0161C8F000B9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103103177999984, 49.225676193000055 ], [ -123.103804985999901, 49.225689212000091 ], [ -123.103771021999975, 49.226696307000068 ], [ -123.103739718, 49.227616106000021 ], [ -123.103724442, 49.228043943000074 ], [ -123.103706684999935, 49.228541206000038 ], [ -123.102175828999947, 49.228499415000044 ], [ -123.101523585, 49.228481604000088 ], [ -123.101519694999951, 49.227577092000082 ], [ -123.10086793, 49.227557278000091 ], [ -123.10012722799992, 49.227534753000029 ], [ -123.099474107, 49.227514907000057 ], [ -123.099531096999925, 49.226646303000066 ], [ -123.099546887, 49.225624295000081 ], [ -123.10021797499995, 49.22563226700008 ], [ -123.100918703999952, 49.225640555000027 ], [ -123.101289673999972, 49.225644960000054 ], [ -123.101639995999975, 49.225649101000045 ], [ -123.10230684, 49.225661460000047 ], [ -123.103103177999984, 49.225676193000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163677469", "BldgCostT": "107650412", "sL_LossRatio": "0.722419286959658", "sL_AssetLoss": "3160270", "sL_BldgLoss": "2283040", "sL_StrLoss": "1048720", "sL_NStrLoss": "1234320", "sL_ContLoss": "877230", "geom_point": "0101000020E6100000395C3F58A1C65EC0E37CC223BB9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101639995999975, 49.225649101000045 ], [ -123.101642219999945, 49.224713212 ], [ -123.101679314999942, 49.223744904000093 ], [ -123.101717715999982, 49.222843411000035 ], [ -123.102410950999982, 49.222857124000022 ], [ -123.10323501299996, 49.222873438000093 ], [ -123.103890620999934, 49.222886413000012 ], [ -123.103875067999979, 49.223374583000094 ], [ -123.103862004999939, 49.223785604000113 ], [ -123.10595779499999, 49.223809402000029 ], [ -123.105935218999946, 49.224325472 ], [ -123.105927738999981, 49.224496226000042 ], [ -123.105915597999953, 49.224773907000049 ], [ -123.105906771999983, 49.225288775000159 ], [ -123.105898915999916, 49.225745512000067 ], [ -123.105341202999952, 49.225730521000052 ], [ -123.104435160999941, 49.225706151000097 ], [ -123.103804985999901, 49.225689212000091 ], [ -123.103103177999984, 49.225676193000055 ], [ -123.10230684, 49.225661460000047 ], [ -123.101639995999975, 49.225649101000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152226553", "BldgCostT": "98778746", "sL_LossRatio": "0.70732188821649", "sL_AssetLoss": "2634020", "sL_BldgLoss": "1863100", "sL_StrLoss": "764060", "sL_NStrLoss": "1099040", "sL_ContLoss": "770920", "geom_point": "0101000020E6100000225D5DC25FC65EC0365320D4C19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100971704999949, 49.22373219100011 ], [ -123.101679314999942, 49.223744904000093 ], [ -123.101642219999945, 49.224713212 ], [ -123.101639995999975, 49.225649101000045 ], [ -123.101289673999972, 49.225644960000054 ], [ -123.100918703999952, 49.225640555000027 ], [ -123.10021797499995, 49.22563226700008 ], [ -123.099546887, 49.225624295000081 ], [ -123.098898988, 49.225612601000115 ], [ -123.098212454999981, 49.225600202000109 ], [ -123.097514900999968, 49.225587606000026 ], [ -123.097528375999929, 49.225126077 ], [ -123.09754258699995, 49.224638896000052 ], [ -123.097557204999973, 49.224172828000093 ], [ -123.097573011999927, 49.223669609000062 ], [ -123.099659709999955, 49.223708591000083 ], [ -123.100971704999949, 49.22373219100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73962250", "BldgCostT": "49120000", "sL_LossRatio": "0.733966644561367", "sL_AssetLoss": "891189", "sL_BldgLoss": "654103", "sL_StrLoss": "316980", "sL_NStrLoss": "337123", "sL_ContLoss": "237086", "geom_point": "0101000020E6100000FD37E4765AC65EC04190E63C219D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099477637999982, 49.228875067000075 ], [ -123.099468983999913, 49.228430899000109 ], [ -123.097410094999958, 49.228405212000062 ], [ -123.097434298999957, 49.227491595000089 ], [ -123.097458326999956, 49.227051006000096 ], [ -123.097481288999973, 49.226629891000059 ], [ -123.09749788699996, 49.226115745000172 ], [ -123.097514900999968, 49.225587606000026 ], [ -123.098212454999981, 49.225600202000109 ], [ -123.098898988, 49.225612601000115 ], [ -123.099546887, 49.225624295000081 ], [ -123.099531096999925, 49.226646303000066 ], [ -123.099474107, 49.227514907000057 ], [ -123.10012722799992, 49.227534753000029 ], [ -123.10086793, 49.227557278000091 ], [ -123.101519694999951, 49.227577092000082 ], [ -123.101523585, 49.228481604000088 ], [ -123.101518367999972, 49.228918246000056 ], [ -123.101512792999984, 49.229380296000087 ], [ -123.101101257, 49.229371456000116 ], [ -123.10081405299999, 49.229365258000037 ], [ -123.099486621999944, 49.229336706000034 ], [ -123.099477637999982, 49.228875067000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107682978", "BldgCostT": "69694857", "sL_LossRatio": "0.718241153725686", "sL_AssetLoss": "1462254", "sL_BldgLoss": "1050251", "sL_StrLoss": "488900", "sL_NStrLoss": "561351", "sL_ContLoss": "412003", "geom_point": "0101000020E6100000A909CB6D35C65EC0CF910145519D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09735686099999, 49.22976715300009 ], [ -123.097375798999963, 49.229305105000101 ], [ -123.094100377999951, 49.229232578000044 ], [ -123.093988387999957, 49.229230094000052 ], [ -123.093995386999936, 49.228807812000099 ], [ -123.094003184999949, 49.228336005000124 ], [ -123.094011799999947, 49.227881233000069 ], [ -123.094020396999966, 49.22742480500014 ], [ -123.094136575999968, 49.22742707500003 ], [ -123.097434298999957, 49.227491595000089 ], [ -123.097410094999958, 49.228405212000062 ], [ -123.099468983999913, 49.228430899000109 ], [ -123.099477637999982, 49.228875067000075 ], [ -123.099486621999944, 49.229336706000034 ], [ -123.099478897999973, 49.229801716000068 ], [ -123.0994717199999, 49.2302344040001 ], [ -123.09946578499995, 49.230710277000114 ], [ -123.099460509000025, 49.231137606000104 ], [ -123.099349935999911, 49.231135621000099 ], [ -123.098661064999973, 49.231123254000039 ], [ -123.097976668999948, 49.231110802000039 ], [ -123.097314509999947, 49.23109869500005 ], [ -123.097326590999927, 49.230657533000119 ], [ -123.097339191999978, 49.230197703000037 ], [ -123.09735686099999, 49.22976715300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "332848364", "BldgCostT": "226866936", "sL_LossRatio": "0.817937809759159", "sL_AssetLoss": "1883318", "sL_BldgLoss": "1540437", "sL_StrLoss": "749770", "sL_NStrLoss": "790667", "sL_ContLoss": "342881", "geom_point": "0101000020E6100000F70480321FC65EC0BF64CA24769D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094100377999951, 49.229232578000044 ], [ -123.097375798999963, 49.229305105000101 ], [ -123.09735686099999, 49.22976715300009 ], [ -123.097339191999978, 49.230197703000037 ], [ -123.097326590999927, 49.230657533000119 ], [ -123.097314509999947, 49.23109869500005 ], [ -123.095655094999955, 49.231071286000031 ], [ -123.094626504999951, 49.231054297000057 ], [ -123.09407402, 49.231045348000094 ], [ -123.093954491999966, 49.231043402000118 ], [ -123.093963731999978, 49.230580007000107 ], [ -123.093972502, 49.230141185000051 ], [ -123.09398039599999, 49.22968934400005 ], [ -123.093988387999957, 49.229230094000052 ], [ -123.094100377999951, 49.229232578000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284104040", "BldgCostT": "181339388", "sL_LossRatio": "0.704615735851868", "sL_AssetLoss": "2724441", "sL_BldgLoss": "1919684", "sL_StrLoss": "842180", "sL_NStrLoss": "1077504", "sL_ContLoss": "804757", "geom_point": "0101000020E61000003F4F34F602C65EC00734C081A09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090552396999982, 49.232820802000056 ], [ -123.090601002, 49.230994397000138 ], [ -123.090586018999957, 49.230094107000063 ], [ -123.090633289999957, 49.229163891000042 ], [ -123.091257184999904, 49.22917622000007 ], [ -123.091353237999925, 49.229178106000077 ], [ -123.093988387999957, 49.229230094000052 ], [ -123.09398039599999, 49.22968934400005 ], [ -123.093972502, 49.230141185000051 ], [ -123.093963731999978, 49.230580007000107 ], [ -123.093954491999966, 49.231043402000118 ], [ -123.09407402, 49.231045348000094 ], [ -123.094626504999951, 49.231054297000057 ], [ -123.095655094999955, 49.231071286000031 ], [ -123.097314509999947, 49.23109869500005 ], [ -123.097976668999948, 49.231110802000039 ], [ -123.098661064999973, 49.231123254000039 ], [ -123.098605113999923, 49.232962973000035 ], [ -123.098602234999987, 49.233052971000063 ], [ -123.098448688999966, 49.233049731000058 ], [ -123.098321122999948, 49.233003979000046 ], [ -123.097205883999919, 49.232989258000075 ], [ -123.095633208999956, 49.232957636000101 ], [ -123.094559513999968, 49.23293601200011 ], [ -123.09446647399993, 49.232933741000068 ], [ -123.094439077999965, 49.232933071000026 ], [ -123.094150498999923, 49.232926070000111 ], [ -123.094040755999956, 49.232923408000069 ], [ -123.093861921000013, 49.232919072000065 ], [ -123.093199711999972, 49.232902980000041 ], [ -123.093041709999952, 49.232949197000039 ], [ -123.092100615999939, 49.232937425000095 ], [ -123.092073178999939, 49.232937087000074 ], [ -123.09201825599996, 49.232936401000131 ], [ -123.0905491, 49.232917997000101 ], [ -123.090549450999944, 49.232908283000071 ], [ -123.090552396999982, 49.232820802000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95934666", "BldgCostT": "63981666", "sL_LossRatio": "0.75523621077971", "sL_AssetLoss": "1096690", "sL_BldgLoss": "828260", "sL_StrLoss": "389450", "sL_NStrLoss": "438810", "sL_ContLoss": "268430", "geom_point": "0101000020E610000044C8BC6579C65EC02B17AE377F9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101518367999972, 49.228918246000056 ], [ -123.101523585, 49.228481604000088 ], [ -123.102175828999947, 49.228499415000044 ], [ -123.103706684999935, 49.228541206000038 ], [ -123.103692009999932, 49.228952389000064 ], [ -123.103675407999958, 49.229417697000059 ], [ -123.103658790999987, 49.229887792000099 ], [ -123.103643093999921, 49.230331206000066 ], [ -123.103621308999934, 49.230943982000063 ], [ -123.10214995699998, 49.230917973000047 ], [ -123.101451899999972, 49.230905608000121 ], [ -123.101435108, 49.231175290000095 ], [ -123.100778482999928, 49.231162026000042 ], [ -123.100074897999988, 49.231147794000051 ], [ -123.100001159999948, 49.232987903000065 ], [ -123.100002077999989, 49.233082494000072 ], [ -123.099548048999978, 49.233076617000044 ], [ -123.098602234999987, 49.233052971000063 ], [ -123.098605113999923, 49.232962973000035 ], [ -123.098661064999973, 49.231123254000039 ], [ -123.099349935999911, 49.231135621000099 ], [ -123.099460509000025, 49.231137606000104 ], [ -123.09946578499995, 49.230710277000114 ], [ -123.0994717199999, 49.2302344040001 ], [ -123.099478897999973, 49.229801716000068 ], [ -123.099486621999944, 49.229336706000034 ], [ -123.10081405299999, 49.229365258000037 ], [ -123.101101257, 49.229371456000116 ], [ -123.101512792999984, 49.229380296000087 ], [ -123.101518367999972, 49.228918246000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94094310", "BldgCostT": "60438189", "sL_LossRatio": "0.70242691989139", "sL_AssetLoss": "1214626", "sL_BldgLoss": "853186", "sL_StrLoss": "392535", "sL_NStrLoss": "460651", "sL_ContLoss": "361440", "geom_point": "0101000020E61000000A33D9E495C65EC00A78A943B49D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103621308999934, 49.230943982000063 ], [ -123.105675490999928, 49.230980301000073 ], [ -123.105663520999968, 49.231283500000082 ], [ -123.105653597999947, 49.231706589000119 ], [ -123.105640502999933, 49.232196400000078 ], [ -123.105640196, 49.232207093000056 ], [ -123.105623903999941, 49.232623695000029 ], [ -123.10561136699998, 49.23315486500011 ], [ -123.104401944999964, 49.233131397000086 ], [ -123.104165615999946, 49.23317821200002 ], [ -123.103713273999972, 49.23316695200004 ], [ -123.102183135999894, 49.233132141000063 ], [ -123.101519743, 49.233117012000022 ], [ -123.100002077999989, 49.233082494000072 ], [ -123.100001159999948, 49.232987903000065 ], [ -123.100074897999988, 49.231147794000051 ], [ -123.100778482999928, 49.231162026000042 ], [ -123.101435108, 49.231175290000095 ], [ -123.101451899999972, 49.230905608000121 ], [ -123.10214995699998, 49.230917973000047 ], [ -123.103621308999934, 49.230943982000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233474833", "BldgCostT": "157288333", "sL_LossRatio": "0.727166452975338", "sL_AssetLoss": "1591080", "sL_BldgLoss": "1156980", "sL_StrLoss": "556270", "sL_NStrLoss": "600710", "sL_ContLoss": "434100", "geom_point": "0101000020E6100000E3DBCC3295C65EC09FAE939FF99D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101623, 49.235421301000024 ], [ -123.101582397999948, 49.234532887000036 ], [ -123.100866793999927, 49.234518242000043 ], [ -123.099473477999965, 49.234489697000058 ], [ -123.099497573999912, 49.234028423000098 ], [ -123.0995223199999, 49.233554208000072 ], [ -123.099548048999978, 49.233076617000044 ], [ -123.100002077999989, 49.233082494000072 ], [ -123.101519743, 49.233117012000022 ], [ -123.102183135999894, 49.233132141000063 ], [ -123.103713273999972, 49.23316695200004 ], [ -123.104165615999946, 49.23317821200002 ], [ -123.104401944999964, 49.233131397000086 ], [ -123.10561136699998, 49.23315486500011 ], [ -123.105568586999951, 49.23368700700005 ], [ -123.105582072999979, 49.234177365000079 ], [ -123.10559380299999, 49.234603694000022 ], [ -123.105568497999982, 49.235066730000064 ], [ -123.10554519, 49.235492413000081 ], [ -123.103625205999961, 49.23545891000002 ], [ -123.102230811999945, 49.235432723000024 ], [ -123.101623, 49.235421301000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106160916", "BldgCostT": "68436666", "sL_LossRatio": "0.726256731484194", "sL_AssetLoss": "1331430", "sL_BldgLoss": "966960", "sL_StrLoss": "435200", "sL_NStrLoss": "531760", "sL_ContLoss": "364470", "geom_point": "0101000020E61000008D45782057C65EC08EA052A1119E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097155891999989, 49.234447208000091 ], [ -123.097165815999972, 49.233995104000094 ], [ -123.097175903, 49.233535188000047 ], [ -123.097205883999919, 49.232989258000075 ], [ -123.098321122999948, 49.233003979000046 ], [ -123.098448688999966, 49.233049731000058 ], [ -123.098602234999987, 49.233052971000063 ], [ -123.099548048999978, 49.233076617000044 ], [ -123.0995223199999, 49.233554208000072 ], [ -123.099497573999912, 49.234028423000098 ], [ -123.099473477999965, 49.234489697000058 ], [ -123.100866793999927, 49.234518242000043 ], [ -123.101582397999948, 49.234532887000036 ], [ -123.101623, 49.235421301000024 ], [ -123.101665906000022, 49.236340402000096 ], [ -123.100925016999938, 49.236324278000048 ], [ -123.0993828899999, 49.236290694000111 ], [ -123.097077704999961, 49.23624671400011 ], [ -123.097096971999946, 49.235812213000052 ], [ -123.097117806999975, 49.235342495000062 ], [ -123.097136109999937, 49.234912649000073 ], [ -123.097155891999989, 49.234447208000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "367204458", "BldgCostT": "255259715", "sL_LossRatio": "0.906434661726801", "sL_AssetLoss": "932279", "sL_BldgLoss": "845050", "sL_StrLoss": "498070", "sL_NStrLoss": "346980", "sL_ContLoss": "87229", "geom_point": "0101000020E6100000F5FE79F961C65EC04CF07EC3619E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100925016999938, 49.236324278000048 ], [ -123.101665906000022, 49.236340402000096 ], [ -123.101641133999976, 49.237006394000026 ], [ -123.101631712999918, 49.237260902000109 ], [ -123.101603576999977, 49.237899935000044 ], [ -123.101592380999975, 49.238154396000091 ], [ -123.100886080999913, 49.238137696000123 ], [ -123.100218594999944, 49.238121895000077 ], [ -123.099293094, 49.238102388000065 ], [ -123.09699920099996, 49.238050596000058 ], [ -123.097037507999943, 49.23717519899999 ], [ -123.099336419999929, 49.237232591000101 ], [ -123.099348004, 49.236997129000031 ], [ -123.099360442999938, 49.236745650000046 ], [ -123.0993828899999, 49.236290694000111 ], [ -123.100925016999938, 49.236324278000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175508499", "BldgCostT": "118119999", "sL_LossRatio": "0.739609096534534", "sL_AssetLoss": "1556241", "sL_BldgLoss": "1151010", "sL_StrLoss": "557480", "sL_NStrLoss": "593530", "sL_ContLoss": "405231", "geom_point": "0101000020E6100000738D19F259C65EC04F9232D2A09E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100886080999913, 49.238137696000123 ], [ -123.101592380999975, 49.238154396000091 ], [ -123.101579638999965, 49.238552341000066 ], [ -123.101563383999988, 49.239058911000036 ], [ -123.101467711999959, 49.240503809000096 ], [ -123.100798216, 49.240494271000109 ], [ -123.10011219699993, 49.240484506000051 ], [ -123.099410791999929, 49.240471055000029 ], [ -123.098823101000022, 49.240459805000093 ], [ -123.096896079999979, 49.240424094000055 ], [ -123.0969131, 49.240021895000105 ], [ -123.09693049699996, 49.239609798000039 ], [ -123.096962988999962, 49.238849596000072 ], [ -123.096977559999971, 49.238528006000116 ], [ -123.09699920099996, 49.238050596000058 ], [ -123.099293094, 49.238102388000065 ], [ -123.100218594999944, 49.238121895000077 ], [ -123.100886080999913, 49.238137696000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183039208", "BldgCostT": "120421685", "sL_LossRatio": "0.768223445088858", "sL_AssetLoss": "687274", "sL_BldgLoss": "527980", "sL_StrLoss": "253270", "sL_NStrLoss": "274710", "sL_ContLoss": "159294", "geom_point": "0101000020E61000003DC7D2EA98C65EC011F7F5CF959E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103912554999951, 49.237303847000064 ], [ -123.10401109299994, 49.237305904000095 ], [ -123.104000809999917, 49.237624496000088 ], [ -123.104543908, 49.23772200100003 ], [ -123.104707699999949, 49.237848003000096 ], [ -123.104730900999954, 49.238533200000056 ], [ -123.104689889999975, 49.239015034000033 ], [ -123.104693864999916, 49.239101795000117 ], [ -123.10469760300002, 49.239183740000087 ], [ -123.104735364999939, 49.240015010000086 ], [ -123.104456601, 49.240186201000064 ], [ -123.104447246999939, 49.240554947000092 ], [ -123.10409039699995, 49.240546410000078 ], [ -123.103418477, 49.240531905000104 ], [ -123.10273901399998, 49.240528991000097 ], [ -123.102117667999948, 49.240516685000024 ], [ -123.101467711999959, 49.240503809000096 ], [ -123.101563383999988, 49.239058911000036 ], [ -123.101579638999965, 49.238552341000066 ], [ -123.101592380999975, 49.238154396000091 ], [ -123.101603576999977, 49.237899935000044 ], [ -123.101631712999918, 49.237260902000109 ], [ -123.102274736999973, 49.237273040000055 ], [ -123.10354481899995, 49.237296999000051 ], [ -123.103732560999973, 49.237300421000079 ], [ -123.10385338399999, 49.237302609000061 ], [ -123.103912554999951, 49.237303847000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172337956", "BldgCostT": "115457039", "sL_LossRatio": "0.787543629366666", "sL_AssetLoss": "1340840", "sL_BldgLoss": "1055970", "sL_StrLoss": "515330", "sL_NStrLoss": "540640", "sL_ContLoss": "284870", "geom_point": "0101000020E61000009DE515FCB4C65EC054C6F97A429E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103625205999961, 49.23545891000002 ], [ -123.10554519, 49.235492413000081 ], [ -123.106178712999935, 49.235518223000014 ], [ -123.108006189999983, 49.23559270800007 ], [ -123.10798382199999, 49.236082373000094 ], [ -123.107964597999967, 49.236503106000072 ], [ -123.10794485299999, 49.236954936000124 ], [ -123.107937019999895, 49.237134251000022 ], [ -123.107925903999913, 49.237388492000107 ], [ -123.106397470999923, 49.237353735000099 ], [ -123.105495008, 49.237333194000072 ], [ -123.10401109299994, 49.237305904000095 ], [ -123.103912554999951, 49.237303847000064 ], [ -123.10385338399999, 49.237302609000061 ], [ -123.103732560999973, 49.237300421000079 ], [ -123.10354481899995, 49.237296999000051 ], [ -123.102274736999973, 49.237273040000055 ], [ -123.101631712999918, 49.237260902000109 ], [ -123.101641133999976, 49.237006394000026 ], [ -123.101665906000022, 49.236340402000096 ], [ -123.101623, 49.235421301000024 ], [ -123.102230811999945, 49.235432723000024 ], [ -123.103625205999961, 49.23545891000002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104982666", "BldgCostT": "70401666", "sL_LossRatio": "0.711343909009279", "sL_AssetLoss": "2004600", "sL_BldgLoss": "1425960", "sL_StrLoss": "661220", "sL_NStrLoss": "764740", "sL_ContLoss": "578640", "geom_point": "0101000020E6100000EA3AD88BF6C65EC05FE85B30029E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105568586999951, 49.23368700700005 ], [ -123.10561136699998, 49.23315486500011 ], [ -123.108135693999969, 49.233249608000051 ], [ -123.110765905999955, 49.233341696000103 ], [ -123.112074502999945, 49.233382194000058 ], [ -123.112049557999981, 49.233892516000054 ], [ -123.11196372399999, 49.235648304000094 ], [ -123.111579186999933, 49.235716405000126 ], [ -123.111269274, 49.235708992000113 ], [ -123.110651086999951, 49.23569420200009 ], [ -123.109979623999919, 49.235668324000088 ], [ -123.10934849399996, 49.235644003000054 ], [ -123.108006189999983, 49.23559270800007 ], [ -123.106178712999935, 49.235518223000014 ], [ -123.10554519, 49.235492413000081 ], [ -123.105568497999982, 49.235066730000064 ], [ -123.10559380299999, 49.234603694000022 ], [ -123.105582072999979, 49.234177365000079 ], [ -123.105568586999951, 49.23368700700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249124794", "BldgCostT": "159790949", "sL_LossRatio": "0.733066783961569", "sL_AssetLoss": "4046780", "sL_BldgLoss": "2966560", "sL_StrLoss": "1252320", "sL_NStrLoss": "1714240", "sL_ContLoss": "1080220", "geom_point": "0101000020E61000002ADEB0E918C75EC0F76382D0B09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.112656408999968, 49.233451814000084 ], [ -123.112481567999936, 49.233393094000093 ], [ -123.112074502999945, 49.233382194000058 ], [ -123.110765905999955, 49.233341696000103 ], [ -123.108135693999969, 49.233249608000051 ], [ -123.10561136699998, 49.23315486500011 ], [ -123.105623903999941, 49.232623695000029 ], [ -123.105640196, 49.232207093000056 ], [ -123.105640502999933, 49.232196400000078 ], [ -123.105653597999947, 49.231706589000119 ], [ -123.105663520999968, 49.231283500000082 ], [ -123.105675490999928, 49.230980301000073 ], [ -123.105702797999953, 49.23036668600006 ], [ -123.106438378999954, 49.230393519000067 ], [ -123.108223097999939, 49.230458607000095 ], [ -123.110867601, 49.230560990000072 ], [ -123.112977604999941, 49.23062740100012 ], [ -123.115379761999961, 49.230711462000038 ], [ -123.116161103999929, 49.23073878400006 ], [ -123.116116816999934, 49.231627606000096 ], [ -123.116070119, 49.232534305000058 ], [ -123.116025512999968, 49.233473492000023 ], [ -123.11601788899999, 49.233595788000052 ], [ -123.115315935999945, 49.233566440000075 ], [ -123.113529607999965, 49.233491727000128 ], [ -123.11345038099995, 49.233488397000045 ], [ -123.112656408999968, 49.233451814000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178864189", "BldgCostT": "115020825", "sL_LossRatio": "0.701444856253101", "sL_AssetLoss": "3478962", "sL_BldgLoss": "2440300", "sL_StrLoss": "1060290", "sL_NStrLoss": "1380010", "sL_ContLoss": "1038662", "geom_point": "0101000020E6100000E203029D49C75EC043BD0A9D159E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.111918295999928, 49.2370630980001 ], [ -123.111926935999975, 49.236794082000102 ], [ -123.11196372399999, 49.235648304000094 ], [ -123.112049557999981, 49.233892516000054 ], [ -123.112074502999945, 49.233382194000058 ], [ -123.112481567999936, 49.233393094000093 ], [ -123.112656408999968, 49.233451814000084 ], [ -123.11345038099995, 49.233488397000045 ], [ -123.113529607999965, 49.233491727000128 ], [ -123.115315935999945, 49.233566440000075 ], [ -123.11601788899999, 49.233595788000052 ], [ -123.11604341099995, 49.234467595000098 ], [ -123.116003205999974, 49.235376314000085 ], [ -123.116002793999897, 49.235385294000089 ], [ -123.115959886, 49.236296597000049 ], [ -123.115227066, 49.23627127900015 ], [ -123.11331030799991, 49.236205007000095 ], [ -123.113287115999967, 49.236634121000115 ], [ -123.113279679999934, 49.236771866000012 ], [ -123.11326509899996, 49.237041505000143 ], [ -123.112700795999956, 49.236998512000071 ], [ -123.112570906999963, 49.237009223000051 ], [ -123.111918295999928, 49.2370630980001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99447167", "BldgCostT": "64636667", "sL_LossRatio": "0.726080666394095", "sL_AssetLoss": "1335426", "sL_BldgLoss": "969627", "sL_StrLoss": "462817", "sL_NStrLoss": "506810", "sL_ContLoss": "365799", "geom_point": "0101000020E6100000F49339AF94C75EC04229E7AC4B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118279585999943, 49.240310295000043 ], [ -123.116848308999977, 49.239015493000032 ], [ -123.116647309999934, 49.239110994000036 ], [ -123.116214707999958, 49.238714807000107 ], [ -123.116011605999972, 49.238448104000078 ], [ -123.115892103999926, 49.238051297 ], [ -123.115918004999926, 49.237259305000094 ], [ -123.115918418999982, 49.237249946000084 ], [ -123.115926543999933, 49.237062963000014 ], [ -123.115959886, 49.236296597000049 ], [ -123.116002793999897, 49.235385294000089 ], [ -123.116003205999974, 49.235376314000085 ], [ -123.11604341099995, 49.234467595000098 ], [ -123.11601788899999, 49.233595788000052 ], [ -123.116361689999948, 49.233608600000075 ], [ -123.117864499999939, 49.233660503000074 ], [ -123.119391400999945, 49.233722898000096 ], [ -123.120880806999978, 49.233771697000037 ], [ -123.120875866999938, 49.234206748000076 ], [ -123.120860496999924, 49.235559198000033 ], [ -123.120776274999955, 49.237081748000037 ], [ -123.120758622999944, 49.237401306000088 ], [ -123.120728015999973, 49.238570006000074 ], [ -123.120707529999919, 49.239352494000094 ], [ -123.120695401999981, 49.239815388000096 ], [ -123.119514490999947, 49.239815411000023 ], [ -123.118912004999956, 49.240114380000065 ], [ -123.11834150199995, 49.240397499000053 ], [ -123.118279585999943, 49.240310295000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262298636", "BldgCostT": "174422079", "sL_LossRatio": "0.758684353050334", "sL_AssetLoss": "3810992", "sL_BldgLoss": "2891340", "sL_StrLoss": "1259420", "sL_NStrLoss": "1631920", "sL_ContLoss": "919652", "geom_point": "0101000020E61000002AA43650A4C75EC0E42FDBEBB09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12237830499997, 49.233819796000056 ], [ -123.121237784999934, 49.233783171000056 ], [ -123.120880806999978, 49.233771697000037 ], [ -123.119391400999945, 49.233722898000096 ], [ -123.117864499999939, 49.233660503000074 ], [ -123.116361689999948, 49.233608600000075 ], [ -123.11601788899999, 49.233595788000052 ], [ -123.116025512999968, 49.233473492000023 ], [ -123.116070119, 49.232534305000058 ], [ -123.116116816999934, 49.231627606000096 ], [ -123.116161103999929, 49.23073878400006 ], [ -123.116205098999913, 49.229809385000102 ], [ -123.116367068999963, 49.229815182000038 ], [ -123.116510495999989, 49.229820302000043 ], [ -123.117122514, 49.229841562000033 ], [ -123.117972105999925, 49.229871107000086 ], [ -123.11936388499997, 49.229919096000046 ], [ -123.120641284999977, 49.229962239000024 ], [ -123.12072617699998, 49.229965092000022 ], [ -123.121665293999939, 49.229996798000073 ], [ -123.121648476999894, 49.23049920700003 ], [ -123.121645907999905, 49.230575409000068 ], [ -123.121813918999948, 49.231011408000064 ], [ -123.12242961699999, 49.231775504000083 ], [ -123.122527779999984, 49.232073602000057 ], [ -123.122557715999946, 49.23269860100006 ], [ -123.122603813999959, 49.232773699000163 ], [ -123.122694703999969, 49.232813909000107 ], [ -123.123901393999944, 49.232880398000141 ], [ -123.123875384999963, 49.233766001000056 ], [ -123.123875188999989, 49.233814804000154 ], [ -123.123874988999944, 49.233860605000032 ], [ -123.12237830499997, 49.233819796000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90215251", "BldgCostT": "59595001", "sL_LossRatio": "0.719776202303873", "sL_AssetLoss": "1453813", "sL_BldgLoss": "1046420", "sL_StrLoss": "485720", "sL_NStrLoss": "560700", "sL_ContLoss": "407393", "geom_point": "0101000020E61000001485BFF4F0C75EC01D2323B16E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118166974999951, 49.240477546000129 ], [ -123.117152017999942, 49.239541502000066 ], [ -123.116647309999934, 49.239110994000036 ], [ -123.116848308999977, 49.239015493000032 ], [ -123.118279585999943, 49.240310295000043 ], [ -123.11834150199995, 49.240397499000053 ], [ -123.118912004999956, 49.240114380000065 ], [ -123.119514490999947, 49.239815411000023 ], [ -123.120695401999981, 49.239815388000096 ], [ -123.120707529999919, 49.239352494000094 ], [ -123.120728015999973, 49.238570006000074 ], [ -123.120758622999944, 49.237401306000088 ], [ -123.120776274999955, 49.237081748000037 ], [ -123.120860496999924, 49.235559198000033 ], [ -123.120875866999938, 49.234206748000076 ], [ -123.120880806999978, 49.233771697000037 ], [ -123.121237784999934, 49.233783171000056 ], [ -123.12237830499997, 49.233819796000056 ], [ -123.123874988999944, 49.233860605000032 ], [ -123.123925497999949, 49.233862355000063 ], [ -123.128052774999972, 49.234005970000027 ], [ -123.128073888999936, 49.234006736000026 ], [ -123.128058316999983, 49.234459803000085 ], [ -123.127979705999962, 49.236749793000143 ], [ -123.127951491999937, 49.237648901000142 ], [ -123.127921647999955, 49.238537411000046 ], [ -123.127889415999931, 49.239497052000075 ], [ -123.12785584199996, 49.240495432000053 ], [ -123.127838609999955, 49.241008328000106 ], [ -123.127824183999977, 49.24143769800002 ], [ -123.127110439999967, 49.241409220000023 ], [ -123.124975105999951, 49.241323998000041 ], [ -123.123629393999963, 49.241281801000042 ], [ -123.12063482799999, 49.241168593000033 ], [ -123.119291852999979, 49.24111773900006 ], [ -123.118536087999985, 49.241089111000079 ], [ -123.118337486999934, 49.241081115000021 ], [ -123.118255088999959, 49.240638398000115 ], [ -123.118177998999982, 49.240487712000082 ], [ -123.118166974999951, 49.240477546000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110136137", "BldgCostT": "70117080", "sL_LossRatio": "0.728950513985178", "sL_AssetLoss": "1150325", "sL_BldgLoss": "838530", "sL_StrLoss": "443620", "sL_NStrLoss": "394910", "sL_ContLoss": "311795", "geom_point": "0101000020E6100000D6FC63E70EC85EC08E2A92C8A19D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123385832999972, 49.230516436000059 ], [ -123.123409782999957, 49.229137993000037 ], [ -123.124100298999934, 49.229161381000011 ], [ -123.126105231999986, 49.229229233000126 ], [ -123.126804406999938, 49.229252892000019 ], [ -123.127492425999932, 49.22927859100011 ], [ -123.128234279, 49.229306294000082 ], [ -123.128216500999926, 49.230214701000101 ], [ -123.12815120599997, 49.232091092000068 ], [ -123.128112201999897, 49.233010594000113 ], [ -123.128078482999939, 49.233887966000083 ], [ -123.128075871999926, 49.233955875000078 ], [ -123.128073888999936, 49.234006736000026 ], [ -123.128052774999972, 49.234005970000027 ], [ -123.123925497999949, 49.233862355000063 ], [ -123.123874988999944, 49.233860605000032 ], [ -123.123875188999989, 49.233814804000154 ], [ -123.123875384999963, 49.233766001000056 ], [ -123.123901393999944, 49.232880398000141 ], [ -123.12391944899997, 49.232459959000025 ], [ -123.12392921499999, 49.23223258100009 ], [ -123.123832410999938, 49.231734490000086 ], [ -123.123383012999938, 49.230679405000053 ], [ -123.123385832999972, 49.230516436000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145356510", "BldgCostT": "88000430", "sL_LossRatio": "0.707343191635283", "sL_AssetLoss": "1662220", "sL_BldgLoss": "1175760", "sL_StrLoss": "470940", "sL_NStrLoss": "704820", "sL_ContLoss": "486460", "geom_point": "0101000020E61000004CE7A2A5DBC75EC04EBC87748D9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121665293999939, 49.229996798000073 ], [ -123.121697510999937, 49.229078804000032 ], [ -123.12239909099999, 49.229103051000088 ], [ -123.123409782999957, 49.229137993000037 ], [ -123.123385832999972, 49.230516436000059 ], [ -123.123383012999938, 49.230679405000053 ], [ -123.123832410999938, 49.231734490000086 ], [ -123.12392921499999, 49.23223258100009 ], [ -123.12391944899997, 49.232459959000025 ], [ -123.123901393999944, 49.232880398000141 ], [ -123.122694703999969, 49.232813909000107 ], [ -123.122603813999959, 49.232773699000163 ], [ -123.122557715999946, 49.23269860100006 ], [ -123.122527779999984, 49.232073602000057 ], [ -123.12242961699999, 49.231775504000083 ], [ -123.121813918999948, 49.231011408000064 ], [ -123.121645907999905, 49.230575409000068 ], [ -123.121648476999894, 49.23049920700003 ], [ -123.121665293999939, 49.229996798000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112964750", "BldgCostT": "72440000", "sL_LossRatio": "0.708073078336226", "sL_AssetLoss": "1578580", "sL_BldgLoss": "1117750", "sL_StrLoss": "491920", "sL_NStrLoss": "625830", "sL_ContLoss": "460830", "geom_point": "0101000020E61000001CBB650300C85EC0B0F46FD1289D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121758287, 49.22725819100004 ], [ -123.121801676999922, 49.22629099800006 ], [ -123.122473762999931, 49.22632084 ], [ -123.123581311999928, 49.226369987000091 ], [ -123.125156311999959, 49.226428200000022 ], [ -123.126648889999984, 49.226486003000076 ], [ -123.128296705, 49.226543402000033 ], [ -123.128281000999934, 49.227254325000061 ], [ -123.128276192999948, 49.227473408000023 ], [ -123.128257106, 49.228404287000124 ], [ -123.128234279, 49.229306294000082 ], [ -123.127492425999932, 49.22927859100011 ], [ -123.126804406999938, 49.229252892000019 ], [ -123.126105231999986, 49.229229233000126 ], [ -123.124100298999934, 49.229161381000011 ], [ -123.123409782999957, 49.229137993000037 ], [ -123.12239909099999, 49.229103051000088 ], [ -123.121697510999937, 49.229078804000032 ], [ -123.121702617000011, 49.228925655000097 ], [ -123.121719438999961, 49.228422167000083 ], [ -123.121758287, 49.22725819100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169341617", "BldgCostT": "114233880", "sL_LossRatio": "0.781954782024736", "sL_AssetLoss": "1429520", "sL_BldgLoss": "1117820", "sL_StrLoss": "533410", "sL_NStrLoss": "584410", "sL_ContLoss": "311700", "geom_point": "0101000020E61000003C9698E36CC85EC0BFBB5B7A309D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134999811999933, 49.229518690000127 ], [ -123.132002299999897, 49.229421013000064 ], [ -123.130408789999976, 49.229393914000056 ], [ -123.129017631999929, 49.2293378480001 ], [ -123.128234279, 49.229306294000082 ], [ -123.128257106, 49.228404287000124 ], [ -123.128276192999948, 49.227473408000023 ], [ -123.128281000999934, 49.227254325000061 ], [ -123.128296705, 49.226543402000033 ], [ -123.129051783999898, 49.226571754000069 ], [ -123.129079139999973, 49.226572807000139 ], [ -123.131917683999987, 49.226679401000062 ], [ -123.135096520999966, 49.226795498000129 ], [ -123.135078709999959, 49.227282706000054 ], [ -123.135062789999921, 49.227718792000104 ], [ -123.135046194999916, 49.228200352000037 ], [ -123.135031479, 49.228626800000079 ], [ -123.135013718999957, 49.229126768000057 ], [ -123.134999811999933, 49.229518690000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184441407", "BldgCostT": "119798897", "sL_LossRatio": "0.768340479103077", "sL_AssetLoss": "1683980", "sL_BldgLoss": "1293870", "sL_StrLoss": "580360", "sL_NStrLoss": "713510", "sL_ContLoss": "390110", "geom_point": "0101000020E6100000C8EEB02662C85EC0235A5E5EA59D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12815120599997, 49.232091092000068 ], [ -123.128216500999926, 49.230214701000101 ], [ -123.128234279, 49.229306294000082 ], [ -123.129017631999929, 49.2293378480001 ], [ -123.130408789999976, 49.229393914000056 ], [ -123.132002299999897, 49.229421013000064 ], [ -123.134999811999933, 49.229518690000127 ], [ -123.134982791999931, 49.22998126900012 ], [ -123.134965385999948, 49.230454601000098 ], [ -123.134196166999914, 49.230427232000068 ], [ -123.133462803999947, 49.23040110900007 ], [ -123.13340559399991, 49.2322597020001 ], [ -123.133356400999944, 49.234124800000075 ], [ -123.132557694999932, 49.234096297000065 ], [ -123.13185213, 49.234073081000126 ], [ -123.130678156999949, 49.234031024000039 ], [ -123.130525990999914, 49.233982840000131 ], [ -123.130382242999957, 49.2339763310001 ], [ -123.128874807000031, 49.233918504000023 ], [ -123.128078482999939, 49.233887966000083 ], [ -123.128112201999897, 49.233010594000113 ], [ -123.12815120599997, 49.232091092000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91633917", "BldgCostT": "61721667", "sL_LossRatio": "0.769819679042539", "sL_AssetLoss": "953522", "sL_BldgLoss": "734040", "sL_StrLoss": "377256", "sL_NStrLoss": "356784", "sL_ContLoss": "219482", "geom_point": "0101000020E61000004AADC5E1ABC85EC067E634D1889D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13340559399991, 49.2322597020001 ], [ -123.133462803999947, 49.23040110900007 ], [ -123.134196166999914, 49.230427232000068 ], [ -123.134965385999948, 49.230454601000098 ], [ -123.134982791999931, 49.22998126900012 ], [ -123.134999811999933, 49.229518690000127 ], [ -123.135013718999957, 49.229126768000057 ], [ -123.135031479, 49.228626800000079 ], [ -123.135046194999916, 49.228200352000037 ], [ -123.135062789999921, 49.227718792000104 ], [ -123.135078709999959, 49.227282706000054 ], [ -123.135096520999966, 49.226795498000129 ], [ -123.137452200999931, 49.226880607000034 ], [ -123.137440751999975, 49.227351708000107 ], [ -123.137429782999902, 49.227801498000119 ], [ -123.137414088999932, 49.228305154000068 ], [ -123.137401810999947, 49.228699693000117 ], [ -123.137387341999982, 49.229204903000024 ], [ -123.137375706999975, 49.229613305000079 ], [ -123.137361445999915, 49.230059672000031 ], [ -123.137346095999973, 49.230539409000095 ], [ -123.136547493999927, 49.230510111000051 ], [ -123.136472202000022, 49.232354707000127 ], [ -123.136390907999939, 49.234228807000093 ], [ -123.135633542999955, 49.234202575000076 ], [ -123.134825001999957, 49.234174593000063 ], [ -123.134069035999971, 49.234148967000074 ], [ -123.133356400999944, 49.234124800000075 ], [ -123.13340559399991, 49.2322597020001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164432561", "BldgCostT": "111208190", "sL_LossRatio": "0.736269882982072", "sL_AssetLoss": "1480286", "sL_BldgLoss": "1089890", "sL_StrLoss": "479440", "sL_NStrLoss": "610450", "sL_ContLoss": "390396", "geom_point": "0101000020E6100000B2C01558D9C85EC07E81F6768D9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136472202000022, 49.232354707000127 ], [ -123.136547493999927, 49.230510111000051 ], [ -123.137346095999973, 49.230539409000095 ], [ -123.137361445999915, 49.230059672000031 ], [ -123.137375706999975, 49.229613305000079 ], [ -123.137387341999982, 49.229204903000024 ], [ -123.137401810999947, 49.228699693000117 ], [ -123.137414088999932, 49.228305154000068 ], [ -123.137429782999902, 49.227801498000119 ], [ -123.137440751999975, 49.227351708000107 ], [ -123.137452200999931, 49.226880607000034 ], [ -123.138637360999937, 49.226923811000042 ], [ -123.13981070499996, 49.226966597000121 ], [ -123.13979105599999, 49.227464999000034 ], [ -123.139773992999949, 49.227897011000017 ], [ -123.139736309999961, 49.228775208000087 ], [ -123.139701909999985, 49.229691196000026 ], [ -123.139663122999949, 49.230631503000062 ], [ -123.139592696999927, 49.232466308000028 ], [ -123.139623915999934, 49.234343501000062 ], [ -123.13875244499998, 49.23431072600011 ], [ -123.137993887999926, 49.234282188000122 ], [ -123.137203315999926, 49.234256703000021 ], [ -123.136390907999939, 49.234228807000093 ], [ -123.136472202000022, 49.232354707000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121515500", "BldgCostT": "83540000", "sL_LossRatio": "0.765188877229801", "sL_AssetLoss": "1524800", "sL_BldgLoss": "1166760", "sL_StrLoss": "580660", "sL_NStrLoss": "586100", "sL_ContLoss": "358040", "geom_point": "0101000020E6100000C6438C9520C95EC0B3A10F54959D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139663122999949, 49.230631503000062 ], [ -123.139701909999985, 49.229691196000026 ], [ -123.139736309999961, 49.228775208000087 ], [ -123.139773992999949, 49.227897011000017 ], [ -123.13979105599999, 49.227464999000034 ], [ -123.13981070499996, 49.226966597000121 ], [ -123.140832404999983, 49.226986109000087 ], [ -123.141634208999946, 49.227001391000101 ], [ -123.143582708999958, 49.227012490000099 ], [ -123.143564848999958, 49.227524515 ], [ -123.143519978999919, 49.228812403000127 ], [ -123.144231376999969, 49.228828501000102 ], [ -123.144911392999944, 49.228843904000016 ], [ -123.14484800699995, 49.230701398000136 ], [ -123.145719549999981, 49.230714145000022 ], [ -123.14644307699993, 49.230724700000081 ], [ -123.14637110699999, 49.232565697000034 ], [ -123.146299916999936, 49.23443930500013 ], [ -123.145526683999933, 49.234426766000077 ], [ -123.144722595999937, 49.234413694000054 ], [ -123.144015490999962, 49.234402800000076 ], [ -123.143334593999938, 49.234392305000021 ], [ -123.142353146999966, 49.234375583000023 ], [ -123.141428204999897, 49.234359806000128 ], [ -123.140565918, 49.234352002000044 ], [ -123.139623915999934, 49.234343501000062 ], [ -123.139592696999927, 49.232466308000028 ], [ -123.139663122999949, 49.230631503000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103379584", "BldgCostT": "68613334", "sL_LossRatio": "0.73308667920324", "sL_AssetLoss": "1357096", "sL_BldgLoss": "994869", "sL_StrLoss": "482649", "sL_NStrLoss": "512220", "sL_ContLoss": "362227", "geom_point": "0101000020E61000004DE2F75F7CC95EC0E090DB694A9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14484800699995, 49.230701398000136 ], [ -123.144911392999944, 49.228843904000016 ], [ -123.144231376999969, 49.228828501000102 ], [ -123.143519978999919, 49.228812403000127 ], [ -123.143564848999958, 49.227524515 ], [ -123.143582708999958, 49.227012490000099 ], [ -123.144984601999951, 49.227028887000088 ], [ -123.145859935999951, 49.227041239000137 ], [ -123.146586493999919, 49.227051494000115 ], [ -123.147288558999946, 49.227060769000069 ], [ -123.147944317999986, 49.227069396000083 ], [ -123.14867604799997, 49.227080242000035 ], [ -123.149489929999959, 49.227092303000063 ], [ -123.150159519999988, 49.227103181000146 ], [ -123.150910616999937, 49.22711541200006 ], [ -123.151533072999911, 49.227121582000045 ], [ -123.152329107999932, 49.227129497000114 ], [ -123.152293085999972, 49.228074302000032 ], [ -123.152275912999968, 49.228530088000063 ], [ -123.152260097999942, 49.228948994000078 ], [ -123.152240631999959, 49.229411508000112 ], [ -123.152224110999924, 49.229803797000088 ], [ -123.15218550099992, 49.23081340100002 ], [ -123.149360200999979, 49.230770282000059 ], [ -123.148590258999974, 49.230758006000016 ], [ -123.147807713999953, 49.230745506000048 ], [ -123.147134491999935, 49.230735253000084 ], [ -123.14644307699993, 49.230724700000081 ], [ -123.145719549999981, 49.230714145000022 ], [ -123.14484800699995, 49.230701398000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236566959", "BldgCostT": "154736440", "sL_LossRatio": "0.720270717625776", "sL_AssetLoss": "2174339.4", "sL_BldgLoss": "1566113", "sL_StrLoss": "732560", "sL_NStrLoss": "833553", "sL_ContLoss": "608226.4", "geom_point": "0101000020E6100000DD77EA368DC95EC01FCB58C0C69D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.149360200999979, 49.230770282000059 ], [ -123.15218550099992, 49.23081340100002 ], [ -123.152165935999946, 49.231300631000117 ], [ -123.152146390000013, 49.231787011000101 ], [ -123.15212878199992, 49.232254420000054 ], [ -123.152113703999987, 49.232655393000059 ], [ -123.152094910999921, 49.233109160000069 ], [ -123.152076805999968, 49.233547107000099 ], [ -123.152073968999929, 49.23406219500005 ], [ -123.152071410999952, 49.234531504000053 ], [ -123.150603790999924, 49.234507986000096 ], [ -123.149229577999947, 49.234485195000154 ], [ -123.148507047999914, 49.234473618000088 ], [ -123.147668790999944, 49.234460188000057 ], [ -123.147023652999977, 49.234450359000057 ], [ -123.146299916999936, 49.23443930500013 ], [ -123.14637110699999, 49.232565697000034 ], [ -123.14644307699993, 49.230724700000081 ], [ -123.147134491999935, 49.230735253000084 ], [ -123.147807713999953, 49.230745506000048 ], [ -123.148590258999974, 49.230758006000016 ], [ -123.149360200999979, 49.230770282000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236013574", "BldgCostT": "128669579", "sL_LossRatio": "0.628688694150555", "sL_AssetLoss": "3335530", "sL_BldgLoss": "2097010", "sL_StrLoss": "943330", "sL_NStrLoss": "1153680", "sL_ContLoss": "1238520", "geom_point": "0101000020E61000007B4C4831E1C95EC0FDF6CF4FC89D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152146390000013, 49.231787011000101 ], [ -123.152165935999946, 49.231300631000117 ], [ -123.15218550099992, 49.23081340100002 ], [ -123.154414880999951, 49.230846473000085 ], [ -123.155138384999944, 49.230857205000049 ], [ -123.155098187999926, 49.231849602000125 ], [ -123.155368089999953, 49.231839635000078 ], [ -123.155675893999955, 49.231830690000017 ], [ -123.156357940999953, 49.231843044000072 ], [ -123.158617388999957, 49.231883897000067 ], [ -123.15856378299999, 49.232758884000063 ], [ -123.156317214999888, 49.232720495000144 ], [ -123.15564548299993, 49.232709007000025 ], [ -123.155642328999946, 49.232743313000071 ], [ -123.155564610999932, 49.233580589000049 ], [ -123.155552437999972, 49.234110725000065 ], [ -123.15554161199999, 49.234583387000058 ], [ -123.15526796599994, 49.234581125000084 ], [ -123.154989995999969, 49.234578805000119 ], [ -123.152071410999952, 49.234531504000053 ], [ -123.152073968999929, 49.23406219500005 ], [ -123.152076805999968, 49.233547107000099 ], [ -123.152094910999921, 49.233109160000069 ], [ -123.152113703999987, 49.232655393000059 ], [ -123.15212878199992, 49.232254420000054 ], [ -123.152146390000013, 49.231787011000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228254153", "BldgCostT": "151639983", "sL_LossRatio": "0.729124556672932", "sL_AssetLoss": "1919576", "sL_BldgLoss": "1399610", "sL_StrLoss": "602200", "sL_NStrLoss": "797410", "sL_ContLoss": "519966", "geom_point": "0101000020E6100000A2D3E38CDBC95EC09D1758AE549D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155098187999926, 49.231849602000125 ], [ -123.155138384999944, 49.230857205000049 ], [ -123.154414880999951, 49.230846473000085 ], [ -123.15218550099992, 49.23081340100002 ], [ -123.152224110999924, 49.229803797000088 ], [ -123.152240631999959, 49.229411508000112 ], [ -123.152260097999942, 49.228948994000078 ], [ -123.152275912999968, 49.228530088000063 ], [ -123.152293085999972, 49.228074302000032 ], [ -123.152329107999932, 49.227129497000114 ], [ -123.153112614999955, 49.227137282000065 ], [ -123.154514380999899, 49.227151196000129 ], [ -123.154742409999983, 49.227153728000047 ], [ -123.154802543999921, 49.227154387000105 ], [ -123.155104307999963, 49.227157704000071 ], [ -123.155642487999927, 49.228118613000049 ], [ -123.155747397999932, 49.228469112000056 ], [ -123.155817116999955, 49.229011400000083 ], [ -123.155761106999947, 49.229880899000115 ], [ -123.155707706, 49.230864104000041 ], [ -123.155675893999955, 49.231830690000017 ], [ -123.155368089999953, 49.231839635000078 ], [ -123.155098187999926, 49.231849602000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311070707", "BldgCostT": "202431684", "sL_LossRatio": "0.728770912409402", "sL_AssetLoss": "2897263", "sL_BldgLoss": "2111441", "sL_StrLoss": "897530", "sL_NStrLoss": "1213911", "sL_ContLoss": "785822", "geom_point": "0101000020E61000001ECA264C1ACA5EC076A9AD85979D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15856378299999, 49.232758884000063 ], [ -123.158617388999957, 49.231883897000067 ], [ -123.156357940999953, 49.231843044000072 ], [ -123.155675893999955, 49.231830690000017 ], [ -123.155707706, 49.230864104000041 ], [ -123.155761106999947, 49.229880899000115 ], [ -123.156417166999944, 49.229891742000127 ], [ -123.158679311999933, 49.229929102000057 ], [ -123.158663248999957, 49.23045530200006 ], [ -123.158649307999923, 49.230912784000076 ], [ -123.160071488999947, 49.230935895000052 ], [ -123.160053523999977, 49.231380763000097 ], [ -123.159996721999988, 49.232787608000116 ], [ -123.15856378299999, 49.232758884000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103371867", "BldgCostT": "64668880", "sL_LossRatio": "0.696964751518029", "sL_AssetLoss": "1482844", "sL_BldgLoss": "1033490", "sL_StrLoss": "449530", "sL_NStrLoss": "583960", "sL_ContLoss": "449354", "geom_point": "0101000020E6100000DFD9E41118CA5EC0CBA9DF7D3C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160072214999957, 49.227221107000084 ], [ -123.160213599999963, 49.227222095000052 ], [ -123.160188776999945, 49.227683777000074 ], [ -123.160138975999985, 49.228609737000113 ], [ -123.16011371399999, 49.229079599000059 ], [ -123.159407877999953, 49.229070209000064 ], [ -123.158732516999976, 49.22906120600009 ], [ -123.158706545, 49.229484548000052 ], [ -123.158679311999933, 49.229929102000057 ], [ -123.156417166999944, 49.229891742000127 ], [ -123.155761106999947, 49.229880899000115 ], [ -123.155817116999955, 49.229011400000083 ], [ -123.155747397999932, 49.228469112000056 ], [ -123.155642487999927, 49.228118613000049 ], [ -123.155104307999963, 49.227157704000071 ], [ -123.155806302999949, 49.227172107000065 ], [ -123.156331319999978, 49.227182893000133 ], [ -123.157648383999927, 49.227193293000013 ], [ -123.158810486999968, 49.227203191000044 ], [ -123.160072214999957, 49.227221107000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158698579", "BldgCostT": "100570389", "sL_LossRatio": "0.704387408070708", "sL_AssetLoss": "3067711", "sL_BldgLoss": "2160857", "sL_StrLoss": "883317", "sL_NStrLoss": "1277540", "sL_ContLoss": "906854", "geom_point": "0101000020E61000003CD8D5C35BCA5EC0213BF39B579D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.163779300999963, 49.227273704 ], [ -123.164447207999928, 49.227283995000086 ], [ -123.164381306999985, 49.229149596000127 ], [ -123.164352791999974, 49.230564086000101 ], [ -123.164344108999956, 49.230995093000068 ], [ -123.162894703999939, 49.230967801000091 ], [ -123.161491287999979, 49.230953403000051 ], [ -123.160071488999947, 49.230935895000052 ], [ -123.158649307999923, 49.230912784000076 ], [ -123.158663248999957, 49.23045530200006 ], [ -123.158679311999933, 49.229929102000057 ], [ -123.158706545, 49.229484548000052 ], [ -123.158732516999976, 49.22906120600009 ], [ -123.159407877999953, 49.229070209000064 ], [ -123.16011371399999, 49.229079599000059 ], [ -123.160138975999985, 49.228609737000113 ], [ -123.160188776999945, 49.227683777000074 ], [ -123.160213599999963, 49.227222095000052 ], [ -123.161294404999978, 49.227236198000121 ], [ -123.161965000999942, 49.227245711000144 ], [ -123.162437843999939, 49.227252199000048 ], [ -123.163034802999917, 49.227260392000041 ], [ -123.163779300999963, 49.227273704 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204810029", "BldgCostT": "136250580", "sL_LossRatio": "0.734828558535424", "sL_AssetLoss": "4010990", "sL_BldgLoss": "2947390", "sL_StrLoss": "1258660", "sL_NStrLoss": "1688730", "sL_ContLoss": "1063600", "geom_point": "0101000020E6100000434F466C62CA5EC0CD084E01D99C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.159044104999964, 49.222891996000037 ], [ -123.159025721999924, 49.222295198000019 ], [ -123.159199309999948, 49.222105204000094 ], [ -123.159679089999926, 49.222315995000088 ], [ -123.159946202999933, 49.22239151500002 ], [ -123.160379604999946, 49.222441595000127 ], [ -123.160833207999985, 49.222409404000096 ], [ -123.161332878999943, 49.222452290000028 ], [ -123.161595799999958, 49.22252948200007 ], [ -123.162459593999984, 49.222880990000085 ], [ -123.162762581999957, 49.223066409000111 ], [ -123.163983995999956, 49.224215498000078 ], [ -123.165607902999938, 49.225044596000018 ], [ -123.166002305999939, 49.225217089000076 ], [ -123.166162892999949, 49.225255959000016 ], [ -123.166440602999955, 49.225323201000059 ], [ -123.167575910999972, 49.225500804000056 ], [ -123.168090808999935, 49.225632297000139 ], [ -123.168416219, 49.225788604000066 ], [ -123.168244246999947, 49.226054408000074 ], [ -123.167852388999961, 49.226660109000157 ], [ -123.167430799999977, 49.227315599000079 ], [ -123.165721110999925, 49.22730462600007 ], [ -123.165297208000013, 49.227301890000028 ], [ -123.164447207999928, 49.227283995000086 ], [ -123.163779300999963, 49.227273704 ], [ -123.163034802999917, 49.227260392000041 ], [ -123.162437843999939, 49.227252199000048 ], [ -123.161965000999942, 49.227245711000144 ], [ -123.161294404999978, 49.227236198000121 ], [ -123.160213599999963, 49.227222095000052 ], [ -123.160072214999957, 49.227221107000084 ], [ -123.158810486999968, 49.227203191000044 ], [ -123.157648383999927, 49.227193293000013 ], [ -123.157673063999965, 49.226759384000076 ], [ -123.157747159999957, 49.225455223000068 ], [ -123.157772407999971, 49.225011287 ], [ -123.158978602, 49.225017006 ], [ -123.158979829999979, 49.224977630000055 ], [ -123.159025015999987, 49.223511257000034 ], [ -123.159039148999923, 49.223052288000147 ], [ -123.159044104999964, 49.222891996000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90687750", "BldgCostT": "60630000", "sL_LossRatio": "0.731011946651032", "sL_AssetLoss": "1303043", "sL_BldgLoss": "952540", "sL_StrLoss": "430850", "sL_NStrLoss": "521690", "sL_ContLoss": "350503", "geom_point": "0101000020E61000004F51894692CA5EC032AA8039829D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.165721110999925, 49.22730462600007 ], [ -123.167430799999977, 49.227315599000079 ], [ -123.167446913999967, 49.229302181000044 ], [ -123.167425589999979, 49.231001413000051 ], [ -123.167418511000022, 49.231904714000052 ], [ -123.167407505999932, 49.232760993000049 ], [ -123.167413417999967, 49.232888106000047 ], [ -123.166481794999967, 49.232882009000015 ], [ -123.165811993999952, 49.232877585 ], [ -123.16497107099994, 49.23286618500007 ], [ -123.16425099099996, 49.23285638100009 ], [ -123.163487844999921, 49.232847191000047 ], [ -123.162800997999966, 49.232838899000029 ], [ -123.162045712999969, 49.23282542000009 ], [ -123.161406304999943, 49.232814005000101 ], [ -123.161470638999901, 49.231405374000047 ], [ -123.161491287999979, 49.230953403000051 ], [ -123.162894703999939, 49.230967801000091 ], [ -123.164344108999956, 49.230995093000068 ], [ -123.164352791999974, 49.230564086000101 ], [ -123.164381306999985, 49.229149596000127 ], [ -123.164447207999928, 49.227283995000086 ], [ -123.165297208000013, 49.227301890000028 ], [ -123.165721110999925, 49.22730462600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413226622", "BldgCostT": "277210395", "sL_LossRatio": "0.792812819193724", "sL_AssetLoss": "2942962", "sL_BldgLoss": "2333218", "sL_StrLoss": "1027740", "sL_NStrLoss": "1305478", "sL_ContLoss": "609744", "geom_point": "0101000020E610000047CD890349CA5EC023332073CC9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160071488999947, 49.230935895000052 ], [ -123.161491287999979, 49.230953403000051 ], [ -123.161470638999901, 49.231405374000047 ], [ -123.161406304999943, 49.232814005000101 ], [ -123.161359544999954, 49.234194154000114 ], [ -123.161343196999908, 49.234676917000108 ], [ -123.159937380999978, 49.234653403000081 ], [ -123.15995305899996, 49.234160439000064 ], [ -123.159996721999988, 49.232787608000116 ], [ -123.160053523999977, 49.231380763000097 ], [ -123.160071488999947, 49.230935895000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85851334", "BldgCostT": "52113334", "sL_LossRatio": "0.666782463642018", "sL_AssetLoss": "1249313", "sL_BldgLoss": "833020", "sL_StrLoss": "354930", "sL_NStrLoss": "478090", "sL_ContLoss": "416293", "geom_point": "0101000020E61000001DA2D84485CA5EC0E43B1998EC9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166481794999967, 49.232882009000015 ], [ -123.167413417999967, 49.232888106000047 ], [ -123.167394976999987, 49.233752395000117 ], [ -123.167394660999918, 49.234301677000069 ], [ -123.167394378999958, 49.234729694000123 ], [ -123.165832092999906, 49.234729188000131 ], [ -123.164156103, 49.234702196000065 ], [ -123.163411378000021, 49.234693616000087 ], [ -123.162749916999971, 49.234686 ], [ -123.161343196999908, 49.234676917000108 ], [ -123.161359544999954, 49.234194154000114 ], [ -123.161406304999943, 49.232814005000101 ], [ -123.162045712999969, 49.23282542000009 ], [ -123.162800997999966, 49.232838899000029 ], [ -123.163487844999921, 49.232847191000047 ], [ -123.16425099099996, 49.23285638100009 ], [ -123.16497107099994, 49.23286618500007 ], [ -123.165811993999952, 49.232877585 ], [ -123.166481794999967, 49.232882009000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110558000", "BldgCostT": "66890000", "sL_LossRatio": "0.666422186081614", "sL_AssetLoss": "1505232", "sL_BldgLoss": "1003120", "sL_StrLoss": "453030", "sL_NStrLoss": "550090", "sL_ContLoss": "502112", "geom_point": "0101000020E61000003F0C6B327CCA5EC0E1154682429E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162624984, 49.23790681600007 ], [ -123.1626738, 49.236537700000085 ], [ -123.161970292999925, 49.236527846000037 ], [ -123.161281396000021, 49.236518201000116 ], [ -123.161324697999987, 49.235228470000024 ], [ -123.161343196999908, 49.234676917000108 ], [ -123.162749916999971, 49.234686 ], [ -123.163411378000021, 49.234693616000087 ], [ -123.164156103, 49.234702196000065 ], [ -123.165832092999906, 49.234729188000131 ], [ -123.16579488399999, 49.236574691000044 ], [ -123.16578008299993, 49.237091944000035 ], [ -123.165766909999917, 49.23755039200006 ], [ -123.165749802999969, 49.238027493000139 ], [ -123.165733688000032, 49.238477289000095 ], [ -123.164053598999942, 49.238447596000128 ], [ -123.16260669499999, 49.238420294000036 ], [ -123.16262275699999, 49.23796974000004 ], [ -123.162624984, 49.23790681600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263187654", "BldgCostT": "161077051", "sL_LossRatio": "0.747722929734586", "sL_AssetLoss": "2052418", "sL_BldgLoss": "1534640", "sL_StrLoss": "695290", "sL_NStrLoss": "839350", "sL_ContLoss": "517778", "geom_point": "0101000020E61000004925553E38CA5EC09F260A5F259E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157741292999944, 49.235586296000108 ], [ -123.157738822999988, 49.234618905000062 ], [ -123.158501491999957, 49.234628990000012 ], [ -123.159937380999978, 49.234653403000081 ], [ -123.161343196999908, 49.234676917000108 ], [ -123.161324697999987, 49.235228470000024 ], [ -123.161281396000021, 49.236518201000116 ], [ -123.160972364999921, 49.236513782000145 ], [ -123.160558436999963, 49.236507871000079 ], [ -123.159861708000037, 49.236497899000042 ], [ -123.159117238999954, 49.23648653100004 ], [ -123.158473520999934, 49.236476705000022 ], [ -123.158509770999942, 49.235592191000102 ], [ -123.157741292999944, 49.235586296000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168425002", "BldgCostT": "114470002", "sL_LossRatio": "0.785078150889208", "sL_AssetLoss": "1448480", "sL_BldgLoss": "1137170", "sL_StrLoss": "478180", "sL_NStrLoss": "658990", "sL_ContLoss": "311310", "geom_point": "0101000020E61000008C8485AC51CA5EC06F75D6FA649E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161970292999925, 49.236527846000037 ], [ -123.1626738, 49.236537700000085 ], [ -123.162624984, 49.23790681600007 ], [ -123.16262275699999, 49.23796974000004 ], [ -123.16260669499999, 49.238420294000036 ], [ -123.161218811999916, 49.238395508000089 ], [ -123.159792408999962, 49.238369692000042 ], [ -123.159808368999947, 49.237937974000054 ], [ -123.159861708000037, 49.236497899000042 ], [ -123.160558436999963, 49.236507871000079 ], [ -123.160972364999921, 49.236513782000145 ], [ -123.161281396000021, 49.236518201000116 ], [ -123.161970292999925, 49.236527846000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "543072689", "BldgCostT": "369775825", "sL_LossRatio": "0.813063703361211", "sL_AssetLoss": "3200930", "sL_BldgLoss": "2602560", "sL_StrLoss": "1159000", "sL_NStrLoss": "1443560", "sL_ContLoss": "598370", "geom_point": "0101000020E6100000818D6F181ACA5EC02115E7246B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.159117238999954, 49.23648653100004 ], [ -123.159861708000037, 49.236497899000042 ], [ -123.159808368999947, 49.237937974000054 ], [ -123.159792408999962, 49.238369692000042 ], [ -123.158396307999951, 49.238343695000069 ], [ -123.156086988999959, 49.238302593000064 ], [ -123.155447586999969, 49.238291194000112 ], [ -123.155135844999947, 49.238286506000115 ], [ -123.15517163199999, 49.237497805000061 ], [ -123.155179726999961, 49.23731905400011 ], [ -123.15547979899992, 49.237316512000071 ], [ -123.15615201199995, 49.237326866000089 ], [ -123.158435808999954, 49.237361997000079 ], [ -123.158452572999963, 49.236967667000044 ], [ -123.158473520999934, 49.236476705000022 ], [ -123.159117238999954, 49.23648653100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "678727855", "BldgCostT": "450455521", "sL_LossRatio": "0.796555923102737", "sL_AssetLoss": "5214750", "sL_BldgLoss": "4153840", "sL_StrLoss": "1880550", "sL_NStrLoss": "2273290", "sL_ContLoss": "1060910", "geom_point": "0101000020E6100000ADE2110508CA5EC0D79500E3369E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155206047999968, 49.236430812000094 ], [ -123.15526796599994, 49.234581125000084 ], [ -123.15554161199999, 49.234583387000058 ], [ -123.157738822999988, 49.234618905000062 ], [ -123.157741292999944, 49.235586296000108 ], [ -123.158509770999942, 49.235592191000102 ], [ -123.158473520999934, 49.236476705000022 ], [ -123.158452572999963, 49.236967667000044 ], [ -123.158435808999954, 49.237361997000079 ], [ -123.15615201199995, 49.237326866000089 ], [ -123.15547979899992, 49.237316512000071 ], [ -123.155179726999961, 49.23731905400011 ], [ -123.155200785999966, 49.236855022000043 ], [ -123.155207491999974, 49.236599770000097 ], [ -123.155206055999955, 49.236430983000098 ], [ -123.155206047999968, 49.236430812000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "595750579", "BldgCostT": "397054760", "sL_LossRatio": "0.771428434308531", "sL_AssetLoss": "4167360", "sL_BldgLoss": "3214820", "sL_StrLoss": "1355760", "sL_NStrLoss": "1859060", "sL_ContLoss": "952540", "geom_point": "0101000020E6100000424559E818CA5EC0C6264C5AE99D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15856378299999, 49.232758884000063 ], [ -123.159996721999988, 49.232787608000116 ], [ -123.15995305899996, 49.234160439000064 ], [ -123.159937380999978, 49.234653403000081 ], [ -123.158501491999957, 49.234628990000012 ], [ -123.157738822999988, 49.234618905000062 ], [ -123.15554161199999, 49.234583387000058 ], [ -123.155552437999972, 49.234110725000065 ], [ -123.155564610999932, 49.233580589000049 ], [ -123.155642328999946, 49.232743313000071 ], [ -123.15564548299993, 49.232709007000025 ], [ -123.156317214999888, 49.232720495000144 ], [ -123.15856378299999, 49.232758884000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175609523", "BldgCostT": "109114159", "sL_LossRatio": "0.679787918874371", "sL_AssetLoss": "2827220", "sL_BldgLoss": "1921910", "sL_StrLoss": "745040", "sL_NStrLoss": "1176870", "sL_ContLoss": "905310", "geom_point": "0101000020E6100000C842220AB9C95EC0293332E96B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147867010999974, 49.240812784000042 ], [ -123.147493318999921, 49.240777900000076 ], [ -123.14691200499999, 49.24078690000006 ], [ -123.146984178999944, 49.239969996000092 ], [ -123.148740203, 49.239993902000059 ], [ -123.148755831, 49.239535446000069 ], [ -123.148770994999936, 49.239089491000037 ], [ -123.148789819999962, 49.238653514000134 ], [ -123.148798821999932, 49.238445397000078 ], [ -123.148809888999963, 49.238188891000043 ], [ -123.14908699199999, 49.238192591000079 ], [ -123.149103876999931, 49.237762634000084 ], [ -123.14915971, 49.236338010000061 ], [ -123.149211829999928, 49.234955854000134 ], [ -123.149229577999947, 49.234485195000154 ], [ -123.150603790999924, 49.234507986000096 ], [ -123.152071410999952, 49.234531504000053 ], [ -123.154989995999969, 49.234578805000119 ], [ -123.15526796599994, 49.234581125000084 ], [ -123.155206047999968, 49.236430812000094 ], [ -123.155206055999955, 49.236430983000098 ], [ -123.155207491999974, 49.236599770000097 ], [ -123.155200785999966, 49.236855022000043 ], [ -123.155179726999961, 49.23731905400011 ], [ -123.15517163199999, 49.237497805000061 ], [ -123.155135844999947, 49.238286506000115 ], [ -123.155111494999986, 49.238286152000114 ], [ -123.155063957999957, 49.238285444000063 ], [ -123.15508862199998, 49.238956872000095 ], [ -123.155082133999912, 49.239144338000081 ], [ -123.155056255999966, 49.239505362000074 ], [ -123.155059546999965, 49.239596656000117 ], [ -123.154876884999936, 49.239908306000075 ], [ -123.154561159999929, 49.240233323000083 ], [ -123.154127591999938, 49.240513331000152 ], [ -123.153475303999983, 49.240762419000092 ], [ -123.152727574999957, 49.240835641000068 ], [ -123.152001964999982, 49.240753599000101 ], [ -123.151165854999945, 49.240623296000095 ], [ -123.150490740999885, 49.24050597100009 ], [ -123.150161252999951, 49.240460434000106 ], [ -123.149893484999922, 49.240417196000124 ], [ -123.14960390399996, 49.240395817000064 ], [ -123.149533380999983, 49.240391848000087 ], [ -123.149438729999957, 49.240392639000078 ], [ -123.149371989999935, 49.240390409000121 ], [ -123.148998349999928, 49.240421645000076 ], [ -123.14861175899992, 49.240497708000085 ], [ -123.14849306499994, 49.240542083000044 ], [ -123.147969014999958, 49.240718604000108 ], [ -123.147867010999974, 49.240812784000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90114052", "BldgCostT": "57073745", "sL_LossRatio": "0.693997962884754", "sL_AssetLoss": "1610120", "sL_BldgLoss": "1117420", "sL_StrLoss": "459890", "sL_NStrLoss": "657530", "sL_ContLoss": "492700", "geom_point": "0101000020E6100000B4C037B0C9C95EC05F472423CA9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147969014999958, 49.240718604000108 ], [ -123.14849306499994, 49.240542083000044 ], [ -123.14861175899992, 49.240497708000085 ], [ -123.148998349999928, 49.240421645000076 ], [ -123.149371989999935, 49.240390409000121 ], [ -123.149438729999957, 49.240392639000078 ], [ -123.149533380999983, 49.240391848000087 ], [ -123.14960390399996, 49.240395817000064 ], [ -123.149893484999922, 49.240417196000124 ], [ -123.150161252999951, 49.240460434000106 ], [ -123.150490740999885, 49.24050597100009 ], [ -123.151165854999945, 49.240623296000095 ], [ -123.152001964999982, 49.240753599000101 ], [ -123.152727574999957, 49.240835641000068 ], [ -123.153475303999983, 49.240762419000092 ], [ -123.154127591999938, 49.240513331000152 ], [ -123.154561159999929, 49.240233323000083 ], [ -123.154876884999936, 49.239908306000075 ], [ -123.155059546999965, 49.239596656000117 ], [ -123.155056255999966, 49.239505362000074 ], [ -123.155082133999912, 49.239144338000081 ], [ -123.15508862199998, 49.238956872000095 ], [ -123.155063957999957, 49.238285444000063 ], [ -123.155111494999986, 49.238286152000114 ], [ -123.155135844999947, 49.238286506000115 ], [ -123.155447586999969, 49.238291194000112 ], [ -123.156086988999959, 49.238302593000064 ], [ -123.158396307999951, 49.238343695000069 ], [ -123.158387416999929, 49.238556896000091 ], [ -123.158347058999951, 49.238669812000104 ], [ -123.158285650999943, 49.238841604000051 ], [ -123.1581256, 49.239289513000116 ], [ -123.157917134999948, 49.239799451000067 ], [ -123.157718590999963, 49.240284990000127 ], [ -123.156617003999898, 49.240269383000047 ], [ -123.15602432299994, 49.240262795000014 ], [ -123.15529289499996, 49.240254295000078 ], [ -123.155278225999965, 49.240405307000053 ], [ -123.154801676999966, 49.240812132000066 ], [ -123.154569905999949, 49.241009991000112 ], [ -123.154452282999969, 49.241110393000106 ], [ -123.153720360999927, 49.241652777000176 ], [ -123.153546110999926, 49.241781879000044 ], [ -123.153482990999947, 49.242116203000116 ], [ -123.152252489999967, 49.242097212000033 ], [ -123.15158041399999, 49.242084860000027 ], [ -123.150476089999955, 49.24206828900008 ], [ -123.149436177999974, 49.242052509000096 ], [ -123.148747604999954, 49.242041316000083 ], [ -123.147220911999909, 49.242016496000105 ], [ -123.147030138, 49.242014271000059 ], [ -123.146899360999953, 49.242012734000134 ], [ -123.14689190499999, 49.241831102000084 ], [ -123.146931692999914, 49.241810409000031 ], [ -123.147025921999941, 49.241572811000026 ], [ -123.147191936999917, 49.241316713000032 ], [ -123.147548402, 49.240995743000141 ], [ -123.147867010999974, 49.240812784000042 ], [ -123.147969014999958, 49.240718604000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "768664978", "BldgCostT": "536069857", "sL_LossRatio": "0.904794459095901", "sL_AssetLoss": "2374053", "sL_BldgLoss": "2148030", "sL_StrLoss": "1269190", "sL_NStrLoss": "878840", "sL_ContLoss": "226023", "geom_point": "0101000020E61000000FD274F2B9C95EC0947C2E4B229F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15237289399991, 49.244767490000136 ], [ -123.151835306999914, 49.244405310000026 ], [ -123.151578252999954, 49.244232108000084 ], [ -123.151011993999973, 49.243850610000116 ], [ -123.150503245999985, 49.243270113000101 ], [ -123.149436177999974, 49.242052509000096 ], [ -123.150476089999955, 49.24206828900008 ], [ -123.15158041399999, 49.242084860000027 ], [ -123.152252489999967, 49.242097212000033 ], [ -123.153482990999947, 49.242116203000116 ], [ -123.153462057999931, 49.242569369000087 ], [ -123.153440995000011, 49.243025701000057 ], [ -123.153329326999952, 49.245181852000059 ], [ -123.152831715999952, 49.245011086000041 ], [ -123.15237289399991, 49.244767490000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160895955", "BldgCostT": "103531053", "sL_LossRatio": "0.663784169719572", "sL_AssetLoss": "2885230", "sL_BldgLoss": "1915170", "sL_StrLoss": "770780", "sL_NStrLoss": "1144390", "sL_ContLoss": "970060", "geom_point": "0101000020E61000003A0A41F5ACC95EC03585C5B05C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150248175999977, 49.247584929000027 ], [ -123.149166708999971, 49.246046141000065 ], [ -123.148618938999945, 49.245506651000014 ], [ -123.147878494999986, 49.244613818000097 ], [ -123.14766284199996, 49.244316928000053 ], [ -123.147343878999919, 49.243786055000044 ], [ -123.146973267999968, 49.242895034000114 ], [ -123.146894114999952, 49.242543975000082 ], [ -123.146887622999913, 49.242325017000049 ], [ -123.146899360999953, 49.242012734000134 ], [ -123.147030138, 49.242014271000059 ], [ -123.147220911999909, 49.242016496000105 ], [ -123.148747604999954, 49.242041316000083 ], [ -123.149436177999974, 49.242052509000096 ], [ -123.150503245999985, 49.243270113000101 ], [ -123.151011993999973, 49.243850610000116 ], [ -123.151578252999954, 49.244232108000084 ], [ -123.151835306999914, 49.244405310000026 ], [ -123.15237289399991, 49.244767490000136 ], [ -123.152831715999952, 49.245011086000041 ], [ -123.153329326999952, 49.245181852000059 ], [ -123.153440995000011, 49.243025701000057 ], [ -123.15469700599999, 49.243055285000054 ], [ -123.15497501099999, 49.243043697000083 ], [ -123.154949548999952, 49.243496650000061 ], [ -123.15489598799999, 49.244450188000087 ], [ -123.154884381999977, 49.24465678100006 ], [ -123.154823878999963, 49.245732896000135 ], [ -123.154756412999987, 49.246946208000118 ], [ -123.154716791999974, 49.247659491000086 ], [ -123.153290064999936, 49.247635363000022 ], [ -123.153193958999964, 49.247634620000056 ], [ -123.151829758, 49.247598603000014 ], [ -123.150248175999977, 49.247584929000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311431668", "BldgCostT": "213976668", "sL_LossRatio": "0.826834214239139", "sL_AssetLoss": "4074783", "sL_BldgLoss": "3369170", "sL_StrLoss": "1574610", "sL_NStrLoss": "1794560", "sL_ContLoss": "705613", "geom_point": "0101000020E61000006FAB174BEAC95EC07B7ABEC9E39F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15312222599999, 49.251647326000068 ], [ -123.153125826999926, 49.251432131000065 ], [ -123.153765704999969, 49.25150127200007 ], [ -123.154460284, 49.25143942600004 ], [ -123.154602372999932, 49.251407149000073 ], [ -123.154450960999952, 49.251142844000071 ], [ -123.154337565999953, 49.251021023000121 ], [ -123.154309075999947, 49.25092654500007 ], [ -123.15432766899994, 49.250578424000032 ], [ -123.154403272999943, 49.250466015000022 ], [ -123.154281395999959, 49.249877296000179 ], [ -123.15433189, 49.249725500000075 ], [ -123.153775515999925, 49.249728899000097 ], [ -123.153199260999926, 49.24971998400013 ], [ -123.153107235999954, 49.24972025800006 ], [ -123.153075967999911, 49.250453538000087 ], [ -123.153037794999946, 49.251411806000085 ], [ -123.153034163999976, 49.251627888000023 ], [ -123.152610681999988, 49.251538740000143 ], [ -123.152535179000012, 49.251522834000085 ], [ -123.15211029299995, 49.251351324000069 ], [ -123.15138432199997, 49.250985305000029 ], [ -123.151500656999957, 49.250767742000036 ], [ -123.151664241999967, 49.250561467000047 ], [ -123.151712016999937, 49.250501301000021 ], [ -123.15179830999989, 49.250281992000062 ], [ -123.151792180999905, 49.250090897000078 ], [ -123.15144002699995, 49.249618631000011 ], [ -123.151548227999953, 49.249193262000112 ], [ -123.150946054999963, 49.2484426010001 ], [ -123.150248175999977, 49.247584929000027 ], [ -123.151829758, 49.247598603000014 ], [ -123.153193958999964, 49.247634620000056 ], [ -123.153290064999936, 49.247635363000022 ], [ -123.154716791999974, 49.247659491000086 ], [ -123.154756412999987, 49.246946208000118 ], [ -123.156208196999941, 49.246964698000092 ], [ -123.1571386789999, 49.246772202000081 ], [ -123.15793989, 49.247884105000033 ], [ -123.158044714999917, 49.248032792000068 ], [ -123.158369941999979, 49.248483603000118 ], [ -123.158629574999964, 49.248843498000078 ], [ -123.158925734999954, 49.249255351000059 ], [ -123.159236985999939, 49.249688196000065 ], [ -123.159245308, 49.249699777000025 ], [ -123.159289868999963, 49.249761720000087 ], [ -123.159344619999899, 49.24983779700009 ], [ -123.158001671999941, 49.250365365000114 ], [ -123.157092036999984, 49.250722693000114 ], [ -123.15702132200002, 49.250750475000061 ], [ -123.156164583999981, 49.251087015000031 ], [ -123.156070262999918, 49.251124070000088 ], [ -123.155773089, 49.251240800000076 ], [ -123.154948605999934, 49.251538788000119 ], [ -123.154741899999948, 49.251583813000124 ], [ -123.154398789999973, 49.251658475000092 ], [ -123.153788324999951, 49.251691924000049 ], [ -123.15312222599999, 49.251647326000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105769834", "BldgCostT": "68823334", "sL_LossRatio": "0.713068690267387", "sL_AssetLoss": "1676220", "sL_BldgLoss": "1195260", "sL_StrLoss": "555940", "sL_NStrLoss": "639320", "sL_ContLoss": "480960", "geom_point": "0101000020E610000074414CDB62CA5EC01F8F956FE89F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.159769527999941, 49.247361271000024 ], [ -123.160443303999983, 49.247098783000091 ], [ -123.160978810999893, 49.246887488 ], [ -123.161680297999979, 49.246610682000103 ], [ -123.162154218999987, 49.246720502000095 ], [ -123.16254819699999, 49.246856885000092 ], [ -123.162587216999938, 49.246882610000043 ], [ -123.162746190999911, 49.246987408000024 ], [ -123.162942298999951, 49.247262693000053 ], [ -123.16406830399994, 49.247083407000041 ], [ -123.164461505, 49.247076599000131 ], [ -123.165382392999959, 49.247062086000085 ], [ -123.165371141, 49.247500209000087 ], [ -123.16537071, 49.247518188000065 ], [ -123.165358479999938, 49.24799370700002 ], [ -123.165357141999891, 49.248066857000076 ], [ -123.165355515999934, 49.24815489900007 ], [ -123.165337618999942, 49.248660563000094 ], [ -123.165321506999973, 49.24911588700008 ], [ -123.165303380999916, 49.249577899 ], [ -123.165284390999886, 49.250061603000084 ], [ -123.165268063999974, 49.250522547000109 ], [ -123.165252191999954, 49.250970494000043 ], [ -123.165258339999951, 49.251440709000093 ], [ -123.165263781999968, 49.251859006000132 ], [ -123.160732902999968, 49.25179301 ], [ -123.159948188999934, 49.250678803000056 ], [ -123.15963207599998, 49.250238352000089 ], [ -123.159344619999899, 49.24983779700009 ], [ -123.159289868999963, 49.249761720000087 ], [ -123.159245308, 49.249699777000025 ], [ -123.159236985999939, 49.249688196000065 ], [ -123.158925734999954, 49.249255351000059 ], [ -123.158629574999964, 49.248843498000078 ], [ -123.158369941999979, 49.248483603000118 ], [ -123.158044714999917, 49.248032792000068 ], [ -123.158621118, 49.24780845300009 ], [ -123.159191311999948, 49.24758649200006 ], [ -123.159769527999941, 49.247361271000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84712583", "BldgCostT": "56948333", "sL_LossRatio": "0.747113183409642", "sL_AssetLoss": "1188160", "sL_BldgLoss": "887690", "sL_StrLoss": "434480", "sL_NStrLoss": "453210", "sL_ContLoss": "300470", "geom_point": "0101000020E6100000305A4FC61BCA5EC07799AB3047A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158001671999941, 49.250365365000114 ], [ -123.159344619999899, 49.24983779700009 ], [ -123.15963207599998, 49.250238352000089 ], [ -123.159948188999934, 49.250678803000056 ], [ -123.160732902999968, 49.25179301 ], [ -123.161079487, 49.252265259000104 ], [ -123.161403517999972, 49.252706792000019 ], [ -123.160460882999928, 49.252692792000083 ], [ -123.158083991999916, 49.252661797000037 ], [ -123.158067265999961, 49.253133243000015 ], [ -123.158051801999946, 49.253568886000103 ], [ -123.158034732999951, 49.254050694000064 ], [ -123.158019802999931, 49.254472292000138 ], [ -123.15565259899995, 49.25443789300008 ], [ -123.155669478999954, 49.25401739800003 ], [ -123.155689009999975, 49.253530885000082 ], [ -123.155704892999921, 49.253100735000032 ], [ -123.155722279999935, 49.252629301000056 ], [ -123.155738171999957, 49.252183540000026 ], [ -123.155754619999982, 49.251721306000057 ], [ -123.155773089, 49.251240800000076 ], [ -123.156070262999918, 49.251124070000088 ], [ -123.156164583999981, 49.251087015000031 ], [ -123.15702132200002, 49.250750475000061 ], [ -123.157092036999984, 49.250722693000114 ], [ -123.158001671999941, 49.250365365000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90531584", "BldgCostT": "61228334", "sL_LossRatio": "0.772832617363741", "sL_AssetLoss": "1037288", "sL_BldgLoss": "801650", "sL_StrLoss": "419940", "sL_NStrLoss": "381710", "sL_ContLoss": "235638", "geom_point": "0101000020E61000004FFB41B85DCA5EC032B3E08F6CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160732902999968, 49.25179301 ], [ -123.165263781999968, 49.251859006000132 ], [ -123.165245466999949, 49.252340548000056 ], [ -123.165229482999933, 49.252758807000085 ], [ -123.165212603999976, 49.253230948000109 ], [ -123.165196610999914, 49.253679409000028 ], [ -123.165162500999926, 49.254574715000032 ], [ -123.164479793999959, 49.254566051000062 ], [ -123.162710014999931, 49.254543592000068 ], [ -123.1603912, 49.254505107000078 ], [ -123.158019802999931, 49.254472292000138 ], [ -123.158034732999951, 49.254050694000064 ], [ -123.158051801999946, 49.253568886000103 ], [ -123.158067265999961, 49.253133243000015 ], [ -123.158083991999916, 49.252661797000037 ], [ -123.160460882999928, 49.252692792000083 ], [ -123.161403517999972, 49.252706792000019 ], [ -123.161079487, 49.252265259000104 ], [ -123.160732902999968, 49.25179301 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89564500", "BldgCostT": "56665000", "sL_LossRatio": "0.694794354226742", "sL_AssetLoss": "1317800", "sL_BldgLoss": "915600", "sL_StrLoss": "443900", "sL_NStrLoss": "471700", "sL_ContLoss": "402200", "geom_point": "0101000020E61000000DE974496ACA5EC05B251E71C4A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.163995010999955, 49.257496585000048 ], [ -123.163483211999903, 49.257465107000044 ], [ -123.162661932999953, 49.257466196000045 ], [ -123.162661972999956, 49.257416494000026 ], [ -123.160300527999979, 49.257376712000074 ], [ -123.160286809999917, 49.25737650800005 ], [ -123.160305334999947, 49.256854203000081 ], [ -123.16032472299996, 49.256308400000066 ], [ -123.160341137, 49.255882652000068 ], [ -123.16035969799999, 49.255401387000092 ], [ -123.160374365999942, 49.254983634000034 ], [ -123.1603912, 49.254505107000078 ], [ -123.162710014999931, 49.254543592000068 ], [ -123.164479793999959, 49.254566051000062 ], [ -123.165162500999926, 49.254574715000032 ], [ -123.165128790999944, 49.255486192000021 ], [ -123.165093691999957, 49.256396904000141 ], [ -123.165061417999979, 49.256964670000073 ], [ -123.165056997999955, 49.257042607000116 ], [ -123.16500410699993, 49.257234011000016 ], [ -123.164925021999977, 49.257516507000034 ], [ -123.164926592999905, 49.257649004000029 ], [ -123.164444802999952, 49.257552499000099 ], [ -123.163995010999955, 49.257496585000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126377955", "BldgCostT": "81649713", "sL_LossRatio": "0.706723442605504", "sL_AssetLoss": "1766476", "sL_BldgLoss": "1248410", "sL_StrLoss": "624950", "sL_NStrLoss": "623460", "sL_ContLoss": "518066", "geom_point": "0101000020E61000008265F0200BCA5EC08F2DB23AC5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158019802999931, 49.254472292000138 ], [ -123.1603912, 49.254505107000078 ], [ -123.160374365999942, 49.254983634000034 ], [ -123.16035969799999, 49.255401387000092 ], [ -123.160341137, 49.255882652000068 ], [ -123.16032472299996, 49.256308400000066 ], [ -123.160305334999947, 49.256854203000081 ], [ -123.160286809999917, 49.25737650800005 ], [ -123.157913469999968, 49.257326925000065 ], [ -123.156030405999942, 49.257305004000081 ], [ -123.155949213999975, 49.257329805000069 ], [ -123.155543784999935, 49.257334502000091 ], [ -123.15357590099994, 49.257303333000024 ], [ -123.15289260599999, 49.257292504000098 ], [ -123.152935898999914, 49.256353253 ], [ -123.15294240899999, 49.256212012000091 ], [ -123.152983607999914, 49.255295203000109 ], [ -123.153667980999955, 49.255305320000069 ], [ -123.155618302999969, 49.255334095000066 ], [ -123.155634616, 49.254907788000033 ], [ -123.15565259899995, 49.25443789300008 ], [ -123.158019802999931, 49.254472292000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121611114", "BldgCostT": "74266936", "sL_LossRatio": "0.662209225282621", "sL_AssetLoss": "1554554", "sL_BldgLoss": "1029440", "sL_StrLoss": "449360", "sL_NStrLoss": "580080", "sL_ContLoss": "525114", "geom_point": "0101000020E61000005F5FCA44FAC95EC001BB582013A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157913469999968, 49.257326925000065 ], [ -123.160286809999917, 49.25737650800005 ], [ -123.16028404599993, 49.257423868000089 ], [ -123.16025051199999, 49.258329387000089 ], [ -123.15787151899994, 49.258306393000083 ], [ -123.157844901999937, 49.258773614000091 ], [ -123.157816894999911, 49.259265218000088 ], [ -123.155470194999936, 49.259205990000055 ], [ -123.155470310999974, 49.259648948000084 ], [ -123.15547038899993, 49.260099591000049 ], [ -123.153096976999933, 49.260049602000031 ], [ -123.15310653399996, 49.259580971000041 ], [ -123.153115405999969, 49.259145695000079 ], [ -123.153095886999935, 49.258680204000015 ], [ -123.15307640499995, 49.258215195000126 ], [ -123.15289260599999, 49.257292504000098 ], [ -123.15357590099994, 49.257303333000024 ], [ -123.155543784999935, 49.257334502000091 ], [ -123.155949213999975, 49.257329805000069 ], [ -123.156030405999942, 49.257305004000081 ], [ -123.157913469999968, 49.257326925000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147767750", "BldgCostT": "98225000", "sL_LossRatio": "0.82274011299435", "sL_AssetLoss": "1076160", "sL_BldgLoss": "885400", "sL_StrLoss": "435870", "sL_NStrLoss": "449530", "sL_ContLoss": "190760", "geom_point": "0101000020E6100000C852CAEF1DCA5EC0BF2EFD2A44A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15787151899994, 49.258306393000083 ], [ -123.16025051199999, 49.258329387000089 ], [ -123.160232273999924, 49.258823847000066 ], [ -123.160215207999912, 49.259287786000073 ], [ -123.160198182999977, 49.259731959000128 ], [ -123.160180786999959, 49.260185806000017 ], [ -123.160163983999965, 49.260640871000078 ], [ -123.160145214999886, 49.261149496000023 ], [ -123.157729606000018, 49.26111480600013 ], [ -123.155419780999964, 49.261035899000113 ], [ -123.155445602999961, 49.260558576000101 ], [ -123.15547038899993, 49.260099591000049 ], [ -123.155470310999974, 49.259648948000084 ], [ -123.155470194999936, 49.259205990000055 ], [ -123.157816894999911, 49.259265218000088 ], [ -123.157844901999937, 49.258773614000091 ], [ -123.15787151899994, 49.258306393000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102292334", "BldgCostT": "65953334", "sL_LossRatio": "0.699089738137938", "sL_AssetLoss": "1622610", "sL_BldgLoss": "1134350", "sL_StrLoss": "503030", "sL_NStrLoss": "631320", "sL_ContLoss": "488260", "geom_point": "0101000020E6100000A0C5EFF963CA5EC0C4A333B42AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16028404599993, 49.257423868000089 ], [ -123.160286809999917, 49.25737650800005 ], [ -123.160300527999979, 49.257376712000074 ], [ -123.162661972999956, 49.257416494000026 ], [ -123.162661932999953, 49.257466196000045 ], [ -123.163483211999903, 49.257465107000044 ], [ -123.163995010999955, 49.257496585000048 ], [ -123.164444802999952, 49.257552499000099 ], [ -123.164926592999905, 49.257649004000029 ], [ -123.164910703999951, 49.257954231000021 ], [ -123.164900007999975, 49.258160854000089 ], [ -123.164887691999979, 49.258397399000053 ], [ -123.164874296999969, 49.258616787000051 ], [ -123.164861329999908, 49.258898201000086 ], [ -123.164853410999953, 49.25906924800006 ], [ -123.164840496999915, 49.259349098000015 ], [ -123.1648326279999, 49.259524502000069 ], [ -123.164827281, 49.259807008000081 ], [ -123.164824411, 49.259959884000061 ], [ -123.164818589000021, 49.26026989600004 ], [ -123.162562290999986, 49.260215106000075 ], [ -123.162543252999924, 49.260692558000052 ], [ -123.162523602999968, 49.261185105000038 ], [ -123.161228681999916, 49.26116572100009 ], [ -123.160145214999886, 49.261149496000023 ], [ -123.160163983999965, 49.260640871000078 ], [ -123.160180786999959, 49.260185806000017 ], [ -123.160198182999977, 49.259731959000128 ], [ -123.160215207999912, 49.259287786000073 ], [ -123.160232273999924, 49.258823847000066 ], [ -123.16025051199999, 49.258329387000089 ], [ -123.16028404599993, 49.257423868000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "353809154", "BldgCostT": "226069396", "sL_LossRatio": "0.759758733879901", "sL_AssetLoss": "3149717", "sL_BldgLoss": "2393025", "sL_StrLoss": "1008790", "sL_NStrLoss": "1384235", "sL_ContLoss": "756692", "geom_point": "0101000020E61000008235F72555CA5EC089B187B495A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162562290999986, 49.260215106000075 ], [ -123.164818589000021, 49.26026989600004 ], [ -123.164816113999962, 49.260422986000073 ], [ -123.164797963999931, 49.260796874000064 ], [ -123.164778984999927, 49.261187600000078 ], [ -123.1647069799999, 49.26225310800006 ], [ -123.164700768, 49.26269421100006 ], [ -123.164695407999943, 49.263072396000062 ], [ -123.164667725999934, 49.263547819000074 ], [ -123.164638986999975, 49.264041 ], [ -123.1624101, 49.26398328700003 ], [ -123.16001281599992, 49.263940096000091 ], [ -123.157641385999966, 49.263900209000113 ], [ -123.157656016999951, 49.263414252000096 ], [ -123.157670484999926, 49.262931797000057 ], [ -123.157670827999979, 49.26292269000006 ], [ -123.157687402999983, 49.262476404000033 ], [ -123.157701198, 49.262029227000049 ], [ -123.157715185999933, 49.261575592 ], [ -123.157729606000018, 49.26111480600013 ], [ -123.160145214999886, 49.261149496000023 ], [ -123.161228681999916, 49.26116572100009 ], [ -123.162523602999968, 49.261185105000038 ], [ -123.162543252999924, 49.260692558000052 ], [ -123.162562290999986, 49.260215106000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232078280", "BldgCostT": "155323602", "sL_LossRatio": "0.752169101069862", "sL_AssetLoss": "2927480", "sL_BldgLoss": "2201960", "sL_StrLoss": "1013180", "sL_NStrLoss": "1188780", "sL_ContLoss": "725520", "geom_point": "0101000020E6100000E9F541D8A1CA5EC029FC214F75A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1647069799999, 49.26225310800006 ], [ -123.164778984999927, 49.261187600000078 ], [ -123.164797963999931, 49.260796874000064 ], [ -123.164816113999962, 49.260422986000073 ], [ -123.164818589000021, 49.26026989600004 ], [ -123.164824411, 49.259959884000061 ], [ -123.164827281, 49.259807008000081 ], [ -123.1648326279999, 49.259524502000069 ], [ -123.166414902999975, 49.259549003000068 ], [ -123.16831819899997, 49.25958 ], [ -123.168305132999976, 49.260034780000069 ], [ -123.168292500999939, 49.260473709000053 ], [ -123.16827862599996, 49.26092565400009 ], [ -123.168264702999963, 49.261378196000102 ], [ -123.167209982999964, 49.261374894000085 ], [ -123.167176221999938, 49.261383532000053 ], [ -123.166833180999944, 49.261471297000114 ], [ -123.166372791999976, 49.261361906000083 ], [ -123.16635425199999, 49.261793594000039 ], [ -123.166333709999961, 49.262271505000101 ], [ -123.166312046999948, 49.262711847000105 ], [ -123.166288202999979, 49.263197103000046 ], [ -123.166290790999966, 49.263379989000086 ], [ -123.166488801999947, 49.263894206000103 ], [ -123.166486094999982, 49.264049889000042 ], [ -123.164638986999975, 49.264041 ], [ -123.164667725999934, 49.263547819000074 ], [ -123.164695407999943, 49.263072396000062 ], [ -123.164700768, 49.26269421100006 ], [ -123.1647069799999, 49.26225310800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203669175", "BldgCostT": "129292451", "sL_LossRatio": "0.644351675828503", "sL_AssetLoss": "4037764", "sL_BldgLoss": "2601740", "sL_StrLoss": "1111610", "sL_NStrLoss": "1490130", "sL_ContLoss": "1436024", "geom_point": "0101000020E61000003E303663C7CA5EC0BFEFC61F98A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16635425199999, 49.261793594000039 ], [ -123.166372791999976, 49.261361906000083 ], [ -123.166833180999944, 49.261471297000114 ], [ -123.167176221999938, 49.261383532000053 ], [ -123.167209982999964, 49.261374894000085 ], [ -123.168264702999963, 49.261378196000102 ], [ -123.16827862599996, 49.26092565400009 ], [ -123.168292500999939, 49.260473709000053 ], [ -123.170308301999924, 49.260507693000143 ], [ -123.170279272, 49.260960702000084 ], [ -123.170251302999972, 49.261396999000063 ], [ -123.170227491999938, 49.261869010000034 ], [ -123.170205395, 49.262307302000082 ], [ -123.170179357000023, 49.262767784000076 ], [ -123.170152489999936, 49.263242708000107 ], [ -123.170109511999911, 49.263703355000068 ], [ -123.170073098999964, 49.264093596000109 ], [ -123.168160218999986, 49.264080306000082 ], [ -123.166486094999982, 49.264049889000042 ], [ -123.166488801999947, 49.263894206000103 ], [ -123.166290790999966, 49.263379989000086 ], [ -123.166288202999979, 49.263197103000046 ], [ -123.166312046999948, 49.262711847000105 ], [ -123.166333709999961, 49.262271505000101 ], [ -123.16635425199999, 49.261793594000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111502875", "BldgCostT": "69406382", "sL_LossRatio": "0.659524125899604", "sL_AssetLoss": "2332970", "sL_BldgLoss": "1538650", "sL_StrLoss": "634280", "sL_NStrLoss": "904370", "sL_ContLoss": "794320", "geom_point": "0101000020E61000000BD211C8BECA5EC02BBEA96122A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168305132999976, 49.260034780000069 ], [ -123.16831819899997, 49.25958 ], [ -123.166414902999975, 49.259549003000068 ], [ -123.1648326279999, 49.259524502000069 ], [ -123.164840496999915, 49.259349098000015 ], [ -123.164853410999953, 49.25906924800006 ], [ -123.164861329999908, 49.258898201000086 ], [ -123.164874296999969, 49.258616787000051 ], [ -123.164887691999979, 49.258397399000053 ], [ -123.164900007999975, 49.258160854000089 ], [ -123.164910703999951, 49.257954231000021 ], [ -123.164926592999905, 49.257649004000029 ], [ -123.16549119699999, 49.257691710000103 ], [ -123.16649499499999, 49.257719895000101 ], [ -123.167510680999939, 49.257734389000078 ], [ -123.168368298999937, 49.257746594000054 ], [ -123.170462104999956, 49.257783501000119 ], [ -123.170436745999908, 49.258244467000026 ], [ -123.170412001999949, 49.25869459700013 ], [ -123.17038656699998, 49.259144154000118 ], [ -123.170359476, 49.25962271100007 ], [ -123.170333624999955, 49.260070401000114 ], [ -123.170308301999924, 49.260507693000143 ], [ -123.168292500999939, 49.260473709000053 ], [ -123.168305132999976, 49.260034780000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109247450", "BldgCostT": "70932213", "sL_LossRatio": "0.700580735496278", "sL_AssetLoss": "2352534", "sL_BldgLoss": "1648140", "sL_StrLoss": "665250", "sL_NStrLoss": "982890", "sL_ContLoss": "704394", "geom_point": "0101000020E610000089855B1D04CB5EC04A23C92035A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.173000926999947, 49.257820699000071 ], [ -123.174222508999918, 49.257835198000052 ], [ -123.174188612999927, 49.258300168000076 ], [ -123.174155673999934, 49.258751294000021 ], [ -123.174155398, 49.259208492000027 ], [ -123.174155087999964, 49.259663690000089 ], [ -123.174137424999984, 49.260126118000073 ], [ -123.174120389999928, 49.260570700000116 ], [ -123.172182807999917, 49.260538786000048 ], [ -123.172168135999982, 49.260992483000059 ], [ -123.172153396999946, 49.261448712000082 ], [ -123.170251302999972, 49.261396999000063 ], [ -123.170279272, 49.260960702000084 ], [ -123.170308301999924, 49.260507693000143 ], [ -123.170333624999955, 49.260070401000114 ], [ -123.170359476, 49.25962271100007 ], [ -123.17038656699998, 49.259144154000118 ], [ -123.170412001999949, 49.25869459700013 ], [ -123.170436745999908, 49.258244467000026 ], [ -123.170462104999956, 49.257783501000119 ], [ -123.1722762099999, 49.257812081000125 ], [ -123.173000926999947, 49.257820699000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119276394", "BldgCostT": "76751523", "sL_LossRatio": "0.704863382417785", "sL_AssetLoss": "2063790", "sL_BldgLoss": "1454690", "sL_StrLoss": "649740", "sL_NStrLoss": "804950", "sL_ContLoss": "609100", "geom_point": "0101000020E6100000D5BE88CF40CB5EC0CFD566CE40A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176162781999963, 49.2578687090001 ], [ -123.178090786999931, 49.257897706000087 ], [ -123.17806700599999, 49.258384822000046 ], [ -123.178046190999979, 49.25881069800004 ], [ -123.178025380999941, 49.259265692000035 ], [ -123.178004495999957, 49.259722992000029 ], [ -123.177984248999948, 49.260165507000082 ], [ -123.177962908000026, 49.26063248 ], [ -123.176037489999914, 49.260602003000052 ], [ -123.17601915799996, 49.261049441000068 ], [ -123.176000600999885, 49.261502593000067 ], [ -123.175985041999965, 49.261949556000069 ], [ -123.17596950799998, 49.262397093000097 ], [ -123.174696790999974, 49.262377346000029 ], [ -123.17402479399999, 49.262366900000053 ], [ -123.174040139999988, 49.261924280000123 ], [ -123.174055714999966, 49.261476006000144 ], [ -123.174088567999917, 49.261016009000095 ], [ -123.174120389999928, 49.260570700000116 ], [ -123.174137424999984, 49.260126118000073 ], [ -123.174155087999964, 49.259663690000089 ], [ -123.174155398, 49.259208492000027 ], [ -123.174155673999934, 49.258751294000021 ], [ -123.174188612999927, 49.258300168000076 ], [ -123.174222508999918, 49.257835198000052 ], [ -123.174277500999949, 49.257836149000099 ], [ -123.174866797999954, 49.257846354000016 ], [ -123.176149008999943, 49.257868495000018 ], [ -123.176162781999963, 49.2578687090001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203763705", "BldgCostT": "130309713", "sL_LossRatio": "0.681178875021394", "sL_AssetLoss": "2979790", "sL_BldgLoss": "2029770", "sL_StrLoss": "828320", "sL_NStrLoss": "1201450", "sL_ContLoss": "950020", "geom_point": "0101000020E6100000622D0D1506CB5EC05FFD54EC9AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170227491999938, 49.261869010000034 ], [ -123.170251302999972, 49.261396999000063 ], [ -123.172153396999946, 49.261448712000082 ], [ -123.172168135999982, 49.260992483000059 ], [ -123.172182807999917, 49.260538786000048 ], [ -123.174120389999928, 49.260570700000116 ], [ -123.174088567999917, 49.261016009000095 ], [ -123.174055714999966, 49.261476006000144 ], [ -123.174040139999988, 49.261924280000123 ], [ -123.17402479399999, 49.262366900000053 ], [ -123.174023847999948, 49.26281567300007 ], [ -123.174023851999948, 49.262816984000054 ], [ -123.174022793999953, 49.263301807000097 ], [ -123.174007413999973, 49.263751737000035 ], [ -123.173993013999976, 49.264173805000034 ], [ -123.172058006999933, 49.264141101000121 ], [ -123.171241482999946, 49.264126892000064 ], [ -123.170073098999964, 49.264093596000109 ], [ -123.170109511999911, 49.263703355000068 ], [ -123.170152489999936, 49.263242708000107 ], [ -123.170179357000023, 49.262767784000076 ], [ -123.170205395, 49.262307302000082 ], [ -123.170227491999938, 49.261869010000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186405131", "BldgCostT": "120694490", "sL_LossRatio": "0.674486145323347", "sL_AssetLoss": "3029699", "sL_BldgLoss": "2043490", "sL_StrLoss": "897010", "sL_NStrLoss": "1146480", "sL_ContLoss": "986209", "geom_point": "0101000020E6100000D9CC5A0A48CB5EC06A798250A0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176037489999914, 49.260602003000052 ], [ -123.177962908000026, 49.26063248 ], [ -123.177941891, 49.261064703000088 ], [ -123.17791930599995, 49.26152940000005 ], [ -123.17789970099993, 49.261990660000016 ], [ -123.177881209999981, 49.26242640300007 ], [ -123.177860678999963, 49.262872172000066 ], [ -123.17783821799992, 49.263360204000044 ], [ -123.177817567999938, 49.263816930000075 ], [ -123.1777986799999, 49.264235598000056 ], [ -123.175900679000023, 49.264203899000108 ], [ -123.174628984, 49.264183831 ], [ -123.173993013999976, 49.264173805000034 ], [ -123.174007413999973, 49.263751737000035 ], [ -123.174022793999953, 49.263301807000097 ], [ -123.174023851999948, 49.262816984000054 ], [ -123.174023847999948, 49.26281567300007 ], [ -123.17402479399999, 49.262366900000053 ], [ -123.174696790999974, 49.262377346000029 ], [ -123.17596950799998, 49.262397093000097 ], [ -123.175985041999965, 49.261949556000069 ], [ -123.176000600999885, 49.261502593000067 ], [ -123.17601915799996, 49.261049441000068 ], [ -123.176037489999914, 49.260602003000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210093458", "BldgCostT": "131034715", "sL_LossRatio": "0.673358254352698", "sL_AssetLoss": "4421970", "sL_BldgLoss": "2977570", "sL_StrLoss": "1252590", "sL_NStrLoss": "1724980", "sL_ContLoss": "1444400", "geom_point": "0101000020E61000005C1B6CE24BCB5EC03946EBA8EAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.179137064999921, 49.264258102000014 ], [ -123.1798270099999, 49.26426969300006 ], [ -123.179820105999966, 49.264722713000076 ], [ -123.179813692999915, 49.265143899000073 ], [ -123.177793488999924, 49.265110904000061 ], [ -123.177791307999939, 49.265517584000058 ], [ -123.177789103999928, 49.265928590000058 ], [ -123.175866597999971, 49.265891894000113 ], [ -123.174565512999891, 49.265874768000067 ], [ -123.173931102999973, 49.265866402000029 ], [ -123.173945864999936, 49.265451033 ], [ -123.173960011999966, 49.265053795000092 ], [ -123.173975798999962, 49.264632492000061 ], [ -123.173993013999976, 49.264173805000034 ], [ -123.174628984, 49.264183831 ], [ -123.175900679000023, 49.264203899000108 ], [ -123.1777986799999, 49.264235598000056 ], [ -123.179137064999921, 49.264258102000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364500487", "BldgCostT": "224570384", "sL_LossRatio": "0.751542320755362", "sL_AssetLoss": "3801090", "sL_BldgLoss": "2856680", "sL_StrLoss": "1404590", "sL_NStrLoss": "1452090", "sL_ContLoss": "944410", "geom_point": "0101000020E61000000556492283CB5EC0230C6F7BA7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.180706473999962, 49.261592387000078 ], [ -123.18195820899993, 49.261615095000124 ], [ -123.181937430999938, 49.262046580000117 ], [ -123.181916211999962, 49.262487704000172 ], [ -123.18190045599999, 49.262946755000023 ], [ -123.181884183999969, 49.263420900000021 ], [ -123.181870103, 49.263874109000106 ], [ -123.181856679999925, 49.264303802000057 ], [ -123.1798270099999, 49.26426969300006 ], [ -123.179137064999921, 49.264258102000014 ], [ -123.1777986799999, 49.264235598000056 ], [ -123.177817567999938, 49.263816930000075 ], [ -123.17783821799992, 49.263360204000044 ], [ -123.177860678999963, 49.262872172000066 ], [ -123.177881209999981, 49.26242640300007 ], [ -123.17789970099993, 49.261990660000016 ], [ -123.17791930599995, 49.26152940000005 ], [ -123.179208525999982, 49.261560784000011 ], [ -123.179924696999961, 49.261578210000039 ], [ -123.180706473999962, 49.261592387000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99197833", "BldgCostT": "60163333", "sL_LossRatio": "0.665960055836235", "sL_AssetLoss": "2098279", "sL_BldgLoss": "1397370", "sL_StrLoss": "550110", "sL_NStrLoss": "847260", "sL_ContLoss": "700909", "geom_point": "0101000020E61000004134462D85CB5EC0FF4B6B3603A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1798270099999, 49.26426969300006 ], [ -123.181856679999925, 49.264303802000057 ], [ -123.181842004999908, 49.264755853000054 ], [ -123.181828302999946, 49.265177590000057 ], [ -123.181813893999973, 49.265583614 ], [ -123.181799301999916, 49.265994693000074 ], [ -123.181786259, 49.26640216600002 ], [ -123.18177169199997, 49.266855988000067 ], [ -123.179787182999931, 49.266822995000012 ], [ -123.17774569099997, 49.266800303000146 ], [ -123.177768363999974, 49.266345168000065 ], [ -123.177789103999928, 49.265928590000058 ], [ -123.177791307999939, 49.265517584000058 ], [ -123.177793488999924, 49.265110904000061 ], [ -123.179813692999915, 49.265143899000073 ], [ -123.179820105999966, 49.264722713000076 ], [ -123.1798270099999, 49.26426969300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "505683973", "BldgCostT": "331854587", "sL_LossRatio": "0.759991745619412", "sL_AssetLoss": "6590440", "sL_BldgLoss": "5008680", "sL_StrLoss": "2258980", "sL_NStrLoss": "2749700", "sL_ContLoss": "1581760", "geom_point": "0101000020E6100000C04CEBA1C3CB5EC02A1F408EFFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.183784890999974, 49.264336106000052 ], [ -123.185879119, 49.264369999000046 ], [ -123.185852097999913, 49.264839415000026 ], [ -123.185828701999952, 49.26524688600005 ], [ -123.185811632999972, 49.265666698000118 ], [ -123.185795280999983, 49.266068400000101 ], [ -123.185778010999954, 49.266502876000139 ], [ -123.185761085999957, 49.266927601000141 ], [ -123.18369882099995, 49.266884599000029 ], [ -123.18177169199997, 49.266855988000067 ], [ -123.181786259, 49.26640216600002 ], [ -123.181799301999916, 49.265994693000074 ], [ -123.181813893999973, 49.265583614 ], [ -123.181828302999946, 49.265177590000057 ], [ -123.181842004999908, 49.264755853000054 ], [ -123.181856679999925, 49.264303802000057 ], [ -123.183784890999974, 49.264336106000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343747593", "BldgCostT": "222823735", "sL_LossRatio": "0.708614746574021", "sL_AssetLoss": "6247485", "sL_BldgLoss": "4427060", "sL_StrLoss": "1938340", "sL_NStrLoss": "2488720", "sL_ContLoss": "1820425", "geom_point": "0101000020E6100000DA2B6ED4B1CB5EC0E11F32BC44A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18369882099995, 49.266884599000029 ], [ -123.185761085999957, 49.266927601000141 ], [ -123.185746160999955, 49.267294601000053 ], [ -123.185727516999947, 49.267752702000024 ], [ -123.185686595999925, 49.268607295000074 ], [ -123.183636792999962, 49.268585307000116 ], [ -123.181736819999969, 49.268561901000027 ], [ -123.179710499999928, 49.268535994000075 ], [ -123.179751091999947, 49.267664200000112 ], [ -123.17976961799999, 49.267233245000085 ], [ -123.179787182999931, 49.266822995000012 ], [ -123.18177169199997, 49.266855988000067 ], [ -123.18369882099995, 49.266884599000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "507972980", "BldgCostT": "351859859", "sL_LossRatio": "0.868485840373862", "sL_AssetLoss": "6349073", "sL_BldgLoss": "5514080", "sL_StrLoss": "2591850", "sL_NStrLoss": "2922230", "sL_ContLoss": "834993", "geom_point": "0101000020E61000009D80B26BF3CB5EC0CF4810F01CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185828701999952, 49.26524688600005 ], [ -123.187733123, 49.265263198000078 ], [ -123.187713825999964, 49.265809408000074 ], [ -123.187701582000017, 49.266077499000083 ], [ -123.187671405999964, 49.266961192000075 ], [ -123.187655901000014, 49.26735259400003 ], [ -123.18763771, 49.267766505000047 ], [ -123.185727516999947, 49.267752702000024 ], [ -123.185746160999955, 49.267294601000053 ], [ -123.185761085999957, 49.266927601000141 ], [ -123.185778010999954, 49.266502876000139 ], [ -123.185795280999983, 49.266068400000101 ], [ -123.185811632999972, 49.265666698000118 ], [ -123.185828701999952, 49.26524688600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "346508052", "BldgCostT": "238083745", "sL_LossRatio": "0.821523841280427", "sL_AssetLoss": "4678440", "sL_BldgLoss": "3843450", "sL_StrLoss": "1827370", "sL_NStrLoss": "2016080", "sL_ContLoss": "834990", "geom_point": "0101000020E6100000CAEE2CEEFDCB5EC02C9742F797A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185669411999967, 49.26952561000008 ], [ -123.185677152999972, 49.269111927000104 ], [ -123.185686595999925, 49.268607295000074 ], [ -123.185727516999947, 49.267752702000024 ], [ -123.18763771, 49.267766505000047 ], [ -123.187640696999964, 49.268374501000032 ], [ -123.187629078000015, 49.268633620000116 ], [ -123.187606121999963, 49.269135505000051 ], [ -123.18758679199999, 49.269557495000086 ], [ -123.190615105999939, 49.269576883000134 ], [ -123.190590616999913, 49.270094206000039 ], [ -123.189714344, 49.270093324000058 ], [ -123.189509402999931, 49.270093103000079 ], [ -123.189506926999911, 49.270184621000077 ], [ -123.189499497999975, 49.270461186000041 ], [ -123.189489126999916, 49.270941300000104 ], [ -123.189479689000024, 49.271376696000054 ], [ -123.18947559499999, 49.271603586000019 ], [ -123.187865075999937, 49.272174097000061 ], [ -123.187497574999966, 49.272275296000032 ], [ -123.187276, 49.272303701000112 ], [ -123.185574004999964, 49.272274694000068 ], [ -123.185593542, 49.271810872000103 ], [ -123.18561440499991, 49.271315592000079 ], [ -123.185627585999924, 49.27090641800006 ], [ -123.185643888999934, 49.270398614000058 ], [ -123.18565548399998, 49.270002578000103 ], [ -123.185669411999967, 49.26952561000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "513160412", "BldgCostT": "346595768", "sL_LossRatio": "0.788933894560075", "sL_AssetLoss": "5368953", "sL_BldgLoss": "4235749", "sL_StrLoss": "1917040", "sL_NStrLoss": "2318709", "sL_ContLoss": "1133204", "geom_point": "0101000020E6100000AAA4D278B7CB5EC0667362307BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181661145999954, 49.269910761000077 ], [ -123.181678007999949, 49.269461907000036 ], [ -123.17966697199995, 49.269431904000065 ], [ -123.179688152, 49.268996075000054 ], [ -123.179710499999928, 49.268535994000075 ], [ -123.181736819999969, 49.268561901000027 ], [ -123.183636792999962, 49.268585307000116 ], [ -123.185686595999925, 49.268607295000074 ], [ -123.185677152999972, 49.269111927000104 ], [ -123.185669411999967, 49.26952561000008 ], [ -123.18565548399998, 49.270002578000103 ], [ -123.185643888999934, 49.270398614000058 ], [ -123.183566408999923, 49.270378606000122 ], [ -123.181644721999987, 49.270348287000047 ], [ -123.181661145999954, 49.269910761000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117533917", "BldgCostT": "80376667", "sL_LossRatio": "0.775983899942655", "sL_AssetLoss": "1471796", "sL_BldgLoss": "1142090", "sL_StrLoss": "487150", "sL_NStrLoss": "654940", "sL_ContLoss": "329706", "geom_point": "0101000020E61000001EBB973DC1CB5EC0524864E5B8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.183566408999923, 49.270378606000122 ], [ -123.185643888999934, 49.270398614000058 ], [ -123.185627585999924, 49.27090641800006 ], [ -123.18561440499991, 49.271315592000079 ], [ -123.185593542, 49.271810872000103 ], [ -123.185574004999964, 49.272274694000068 ], [ -123.184513391999957, 49.272250582000034 ], [ -123.183505893999964, 49.272165794000088 ], [ -123.181598593000018, 49.271966505000144 ], [ -123.181607152999987, 49.271727760000054 ], [ -123.181624103000033, 49.27125289800005 ], [ -123.181633457999965, 49.270842162000037 ], [ -123.181644721999987, 49.270348287000047 ], [ -123.183566408999923, 49.270378606000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142787386", "BldgCostT": "94117079", "sL_LossRatio": "0.741758480576766", "sL_AssetLoss": "1426436", "sL_BldgLoss": "1058071", "sL_StrLoss": "430640", "sL_NStrLoss": "627431", "sL_ContLoss": "368365", "geom_point": "0101000020E6100000ABF11D2584CB5EC0927FA0BBA8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17966697199995, 49.269431904000065 ], [ -123.181678007999949, 49.269461907000036 ], [ -123.181661145999954, 49.269910761000077 ], [ -123.181644721999987, 49.270348287000047 ], [ -123.181633457999965, 49.270842162000037 ], [ -123.181624103000033, 49.27125289800005 ], [ -123.181607152999987, 49.271727760000054 ], [ -123.181598593000018, 49.271966505000144 ], [ -123.179586974999893, 49.271765302000034 ], [ -123.17761272499996, 49.271537206000076 ], [ -123.177618896999945, 49.271187018000035 ], [ -123.177621332999962, 49.271104452000024 ], [ -123.177631929999961, 49.270744596000036 ], [ -123.177644691999916, 49.270310385000123 ], [ -123.179649599999919, 49.270327683000033 ], [ -123.179658356999951, 49.269877566000076 ], [ -123.17966697199995, 49.269431904000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "437711136", "BldgCostT": "294012079", "sL_LossRatio": "0.771600360201384", "sL_AssetLoss": "2089942", "sL_BldgLoss": "1612600", "sL_StrLoss": "815420", "sL_NStrLoss": "797180", "sL_ContLoss": "477342", "geom_point": "0101000020E6100000FF7D424D5FCB5EC0A152D3CB7BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.177690199999944, 49.268502097000081 ], [ -123.179710499999928, 49.268535994000075 ], [ -123.179688152, 49.268996075000054 ], [ -123.17966697199995, 49.269431904000065 ], [ -123.179658356999951, 49.269877566000076 ], [ -123.179649599999919, 49.270327683000033 ], [ -123.177644691999916, 49.270310385000123 ], [ -123.175696013999982, 49.270272906000102 ], [ -123.175703148999929, 49.269811234000095 ], [ -123.175710012999957, 49.26936719400004 ], [ -123.175730378999944, 49.268920636000111 ], [ -123.175751295999959, 49.268463 ], [ -123.177690199999944, 49.268502097000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153268053", "BldgCostT": "100283746", "sL_LossRatio": "0.71883378307989", "sL_AssetLoss": "1722081", "sL_BldgLoss": "1237890", "sL_StrLoss": "557570", "sL_NStrLoss": "680320", "sL_ContLoss": "484191", "geom_point": "0101000020E61000003DBA19875DCB5EC0BCAE14D939A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175834697999917, 49.266754795000104 ], [ -123.175850723999943, 49.266321232000102 ], [ -123.175866597999971, 49.265891894000113 ], [ -123.177789103999928, 49.265928590000058 ], [ -123.177768363999974, 49.266345168000065 ], [ -123.17774569099997, 49.266800303000146 ], [ -123.179787182999931, 49.266822995000012 ], [ -123.17976961799999, 49.267233245000085 ], [ -123.179751091999947, 49.267664200000112 ], [ -123.179710499999928, 49.268535994000075 ], [ -123.177690199999944, 49.268502097000081 ], [ -123.175751295999959, 49.268463 ], [ -123.175774181999941, 49.268066101000066 ], [ -123.175801114999985, 49.267599701000101 ], [ -123.175818679999921, 49.267157950000126 ], [ -123.175834697999917, 49.266754795000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "378400561", "BldgCostT": "255858190", "sL_LossRatio": "0.812371567105315", "sL_AssetLoss": "2723212", "sL_BldgLoss": "2212260", "sL_StrLoss": "1014140", "sL_NStrLoss": "1198120", "sL_ContLoss": "510952", "geom_point": "0101000020E6100000A8F0BAC01DCB5EC0635B7AF238A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.174565512999891, 49.265874768000067 ], [ -123.175866597999971, 49.265891894000113 ], [ -123.175850723999943, 49.266321232000102 ], [ -123.175834697999917, 49.266754795000104 ], [ -123.175818679999921, 49.267157950000126 ], [ -123.175801114999985, 49.267599701000101 ], [ -123.175774181999941, 49.268066101000066 ], [ -123.175751295999959, 49.268463 ], [ -123.17446872499994, 49.268453325000031 ], [ -123.17381501299991, 49.268448392000025 ], [ -123.171072887999941, 49.268422497000074 ], [ -123.171092776999899, 49.26799293300013 ], [ -123.171116000999973, 49.267491411000059 ], [ -123.17112987599991, 49.267102678000079 ], [ -123.171145098999958, 49.266677 ], [ -123.173899505999913, 49.266723083000102 ], [ -123.173931102999973, 49.265866402000029 ], [ -123.174565512999891, 49.265874768000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "598488042", "BldgCostT": "403965019", "sL_LossRatio": "0.817009150028582", "sL_AssetLoss": "1542946", "sL_BldgLoss": "1260601", "sL_StrLoss": "569070", "sL_NStrLoss": "691531", "sL_ContLoss": "282345", "geom_point": "0101000020E61000009D77C52115CB5EC05F2E245883A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17446872499994, 49.268453325000031 ], [ -123.175751295999959, 49.268463 ], [ -123.175730378999944, 49.268920636000111 ], [ -123.175710012999957, 49.26936719400004 ], [ -123.175703148999929, 49.269811234000095 ], [ -123.175696013999982, 49.270272906000102 ], [ -123.174401085999975, 49.270255729000034 ], [ -123.173743907999935, 49.270246981000113 ], [ -123.173738139999926, 49.270677965000118 ], [ -123.173733075999962, 49.27105582700009 ], [ -123.173732314999938, 49.27111410600007 ], [ -123.170986500999902, 49.27107820600002 ], [ -123.171007400999912, 49.270646388000053 ], [ -123.171028607999986, 49.270208305000082 ], [ -123.171039932999975, 49.269755277000101 ], [ -123.171051514999974, 49.269292005000089 ], [ -123.171062694999975, 49.268837716000078 ], [ -123.171072887999941, 49.268422497000074 ], [ -123.17381501299991, 49.268448392000025 ], [ -123.17446872499994, 49.268453325000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233260789", "BldgCostT": "151634458", "sL_LossRatio": "0.705240693205086", "sL_AssetLoss": "1848515", "sL_BldgLoss": "1303648", "sL_StrLoss": "550630", "sL_NStrLoss": "753018", "sL_ContLoss": "544867", "geom_point": "0101000020E6100000EB4FD147CFCA5EC018CC0B8F81A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168208106999899, 49.270460674000049 ], [ -123.16822012599999, 49.270143711000046 ], [ -123.166301187, 49.270113095000077 ], [ -123.166329617000017, 49.269220397 ], [ -123.16633798099997, 49.2688 ], [ -123.166346910999948, 49.268353406000138 ], [ -123.168279587999947, 49.268380807000064 ], [ -123.171072887999941, 49.268422497000074 ], [ -123.171062694999975, 49.268837716000078 ], [ -123.171051514999974, 49.269292005000089 ], [ -123.171039932999975, 49.269755277000101 ], [ -123.171028607999986, 49.270208305000082 ], [ -123.171007400999912, 49.270646388000053 ], [ -123.170986500999902, 49.27107820600002 ], [ -123.169909106999981, 49.271061763000077 ], [ -123.169177313999981, 49.271050591000048 ], [ -123.168817926, 49.271044427000064 ], [ -123.168186407999954, 49.271033610000089 ], [ -123.168208106999899, 49.270460674000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137451333", "BldgCostT": "79098333", "sL_LossRatio": "0.656405746115509", "sL_AssetLoss": "1807830", "sL_BldgLoss": "1186670", "sL_StrLoss": "511310", "sL_NStrLoss": "675360", "sL_ContLoss": "621160", "geom_point": "0101000020E6100000C78D2B26DDCA5EC08708624D23A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168404822999918, 49.264979394000115 ], [ -123.171207176999985, 49.265026694000014 ], [ -123.17119264199998, 49.265438239000076 ], [ -123.17117882099997, 49.265830303000044 ], [ -123.171145098999958, 49.266677 ], [ -123.17112987599991, 49.267102678000079 ], [ -123.171116000999973, 49.267491411000059 ], [ -123.171092776999899, 49.26799293300013 ], [ -123.171072887999941, 49.268422497000074 ], [ -123.168279587999947, 49.268380807000064 ], [ -123.168301151999927, 49.267941825 ], [ -123.168324598999931, 49.267464104000084 ], [ -123.168341204999962, 49.267060652000133 ], [ -123.168358696999931, 49.266636406000131 ], [ -123.168393088999935, 49.265801400000051 ], [ -123.168399134999973, 49.2653783700001 ], [ -123.168404822999918, 49.264979394000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "292979603", "BldgCostT": "182698209", "sL_LossRatio": "0.673705119070752", "sL_AssetLoss": "2593752", "sL_BldgLoss": "1747424", "sL_StrLoss": "717960", "sL_NStrLoss": "1029464", "sL_ContLoss": "846328", "geom_point": "0101000020E6100000ED7BCCEEA6CA5EC0475E32C83CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166409604999942, 49.26660770400013 ], [ -123.168358696999931, 49.266636406000131 ], [ -123.168341204999962, 49.267060652000133 ], [ -123.168324598999931, 49.267464104000084 ], [ -123.168301151999927, 49.267941825 ], [ -123.168279587999947, 49.268380807000064 ], [ -123.166346910999948, 49.268353406000138 ], [ -123.164539220000023, 49.268325808000057 ], [ -123.164545948999944, 49.267875908000093 ], [ -123.164552574999973, 49.267431706000053 ], [ -123.16456732799999, 49.266994050000115 ], [ -123.164581194999982, 49.266582206000102 ], [ -123.166409604999942, 49.26660770400013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "600826686", "BldgCostT": "408304134", "sL_LossRatio": "0.847402238820648", "sL_AssetLoss": "2643892", "sL_BldgLoss": "2240440", "sL_StrLoss": "1053580", "sL_NStrLoss": "1186860", "sL_ContLoss": "403452", "geom_point": "0101000020E610000042F022C0A7CA5EC0818E98D1F6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166486094999982, 49.264049889000042 ], [ -123.168160218999986, 49.264080306000082 ], [ -123.168290542999927, 49.264559481000028 ], [ -123.168404822999918, 49.264979394000115 ], [ -123.168399134999973, 49.2653783700001 ], [ -123.168393088999935, 49.265801400000051 ], [ -123.168358696999931, 49.266636406000131 ], [ -123.166409604999942, 49.26660770400013 ], [ -123.164581194999982, 49.266582206000102 ], [ -123.164617513999957, 49.265763504000098 ], [ -123.164640299999945, 49.264917399000083 ], [ -123.16463968699999, 49.264493597000033 ], [ -123.164638986999975, 49.264041 ], [ -123.166486094999982, 49.264049889000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213297885", "BldgCostT": "130117078", "sL_LossRatio": "0.651493359693629", "sL_AssetLoss": "3842142", "sL_BldgLoss": "2503130", "sL_StrLoss": "1088030", "sL_NStrLoss": "1415100", "sL_ContLoss": "1339012", "geom_point": "0101000020E6100000424DA1B1FECA5EC0E1AF5E7FF1A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17119264199998, 49.265438239000076 ], [ -123.171207176999985, 49.265026694000014 ], [ -123.168404822999918, 49.264979394000115 ], [ -123.168290542999927, 49.264559481000028 ], [ -123.168160218999986, 49.264080306000082 ], [ -123.170073098999964, 49.264093596000109 ], [ -123.171241482999946, 49.264126892000064 ], [ -123.172058006999933, 49.264141101000121 ], [ -123.173993013999976, 49.264173805000034 ], [ -123.173975798999962, 49.264632492000061 ], [ -123.173960011999966, 49.265053795000092 ], [ -123.173945864999936, 49.265451033 ], [ -123.173931102999973, 49.265866402000029 ], [ -123.173899505999913, 49.266723083000102 ], [ -123.171145098999958, 49.266677 ], [ -123.17117882099997, 49.265830303000044 ], [ -123.17119264199998, 49.265438239000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "755265614", "BldgCostT": "519816936", "sL_LossRatio": "0.859409498622995", "sL_AssetLoss": "1955694", "sL_BldgLoss": "1680742", "sL_StrLoss": "826911", "sL_NStrLoss": "853831", "sL_ContLoss": "274952", "geom_point": "0101000020E6100000664130606CCA5EC0580AC22EEDA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162356270999922, 49.265716699000109 ], [ -123.162378885999956, 49.26489760100003 ], [ -123.159985121999938, 49.264841893000053 ], [ -123.159998366000011, 49.264410127000083 ], [ -123.16001281599992, 49.263940096000091 ], [ -123.1624101, 49.26398328700003 ], [ -123.164638986999975, 49.264041 ], [ -123.16463968699999, 49.264493597000033 ], [ -123.164640299999945, 49.264917399000083 ], [ -123.164617513999957, 49.265763504000098 ], [ -123.164581194999982, 49.266582206000102 ], [ -123.16232871299999, 49.266549089000087 ], [ -123.162356270999922, 49.265716699000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "535924365", "BldgCostT": "368256937", "sL_LossRatio": "0.84206777793762", "sL_AssetLoss": "3253212", "sL_BldgLoss": "2739425", "sL_StrLoss": "1212983", "sL_NStrLoss": "1526442", "sL_ContLoss": "513787", "geom_point": "0101000020E610000064D9F6EA61CA5EC0032789C23AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16232871299999, 49.266549089000087 ], [ -123.164581194999982, 49.266582206000102 ], [ -123.16456732799999, 49.266994050000115 ], [ -123.164552574999973, 49.267431706000053 ], [ -123.164545948999944, 49.267875908000093 ], [ -123.164539220000023, 49.268325808000057 ], [ -123.162256905, 49.268285613000124 ], [ -123.159845112999932, 49.268250102000046 ], [ -123.159874218999931, 49.26782931200011 ], [ -123.15990521599997, 49.267381599000032 ], [ -123.159919786999964, 49.26651369000011 ], [ -123.16232871299999, 49.266549089000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219843469", "BldgCostT": "144430412", "sL_LossRatio": "0.784297800338409", "sL_AssetLoss": "1743450", "sL_BldgLoss": "1367384", "sL_StrLoss": "607210", "sL_NStrLoss": "760174", "sL_ContLoss": "376066", "geom_point": "0101000020E610000041D1340F3DCA5EC0556B50EA01A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.159985121999938, 49.264841893000053 ], [ -123.162378885999956, 49.26489760100003 ], [ -123.162356270999922, 49.265716699000109 ], [ -123.16232871299999, 49.266549089000087 ], [ -123.159919786999964, 49.26651369000011 ], [ -123.157571884999939, 49.266491495000047 ], [ -123.157618009999936, 49.265649595000042 ], [ -123.157634897, 49.264814187000106 ], [ -123.159985121999938, 49.264841893000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "594470190", "BldgCostT": "409270826", "sL_LossRatio": "0.832726144155502", "sL_AssetLoss": "4140390", "sL_BldgLoss": "3447811", "sL_StrLoss": "1513940", "sL_NStrLoss": "1933871", "sL_ContLoss": "692579", "geom_point": "0101000020E6100000B847E2C41BCA5EC029A5BAC233A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15752367099999, 49.267786718000039 ], [ -123.157547611999931, 49.267337491000035 ], [ -123.155184724, 49.26728969600007 ], [ -123.155202318999926, 49.266443492000029 ], [ -123.157571884999939, 49.266491495000047 ], [ -123.159919786999964, 49.26651369000011 ], [ -123.15990521599997, 49.267381599000032 ], [ -123.159874218999931, 49.26782931200011 ], [ -123.159845112999932, 49.268250102000046 ], [ -123.157502392999959, 49.268186605000054 ], [ -123.15752367099999, 49.267786718000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "515481418", "BldgCostT": "356216668", "sL_LossRatio": "0.847987633057228", "sL_AssetLoss": "3286180", "sL_BldgLoss": "2786640", "sL_StrLoss": "1237760", "sL_NStrLoss": "1548880", "sL_ContLoss": "499540", "geom_point": "0101000020E61000009FECD1E102CA5EC000DEC85D00A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155264895999963, 49.264794994000042 ], [ -123.157634897, 49.264814187000106 ], [ -123.157618009999936, 49.265649595000042 ], [ -123.157571884999939, 49.266491495000047 ], [ -123.155202318999926, 49.266443492000029 ], [ -123.15523501199999, 49.265618398000107 ], [ -123.155264895999963, 49.264794994000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260230592", "BldgCostT": "176439118", "sL_LossRatio": "0.784797268090257", "sL_AssetLoss": "2313400", "sL_BldgLoss": "1815550", "sL_StrLoss": "772230", "sL_NStrLoss": "1043320", "sL_ContLoss": "497850", "geom_point": "0101000020E61000008B00FABFDBC95EC0BF23D70B0DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152883499999916, 49.26476100700004 ], [ -123.155264895999963, 49.264794994000042 ], [ -123.15523501199999, 49.265618398000107 ], [ -123.155202318999926, 49.266443492000029 ], [ -123.155184724, 49.26728969600007 ], [ -123.152814597999978, 49.267248789000092 ], [ -123.152837196999883, 49.266409892000098 ], [ -123.15287430799999, 49.265582186000117 ], [ -123.152883499999916, 49.26476100700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "721531697", "BldgCostT": "488275269", "sL_LossRatio": "0.787810476456894", "sL_AssetLoss": "3481826", "sL_BldgLoss": "2743019", "sL_StrLoss": "1300540", "sL_NStrLoss": "1442479", "sL_ContLoss": "738807", "geom_point": "0101000020E6100000C133BAE602CA5EC0879414F5D5A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157641385999966, 49.263900209000113 ], [ -123.16001281599992, 49.263940096000091 ], [ -123.159998366000011, 49.264410127000083 ], [ -123.159985121999938, 49.264841893000053 ], [ -123.157634897, 49.264814187000106 ], [ -123.155264895999963, 49.264794994000042 ], [ -123.152883499999916, 49.26476100700004 ], [ -123.152938396999929, 49.263821193000034 ], [ -123.15529878699999, 49.263861008000092 ], [ -123.157641385999966, 49.263900209000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "631993447", "BldgCostT": "431130269", "sL_LossRatio": "0.81173233813126", "sL_AssetLoss": "3874590", "sL_BldgLoss": "3145130", "sL_StrLoss": "1410730", "sL_NStrLoss": "1734400", "sL_ContLoss": "729460", "geom_point": "0101000020E6100000425256FCB4C95EC09766EA7DFCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152346992999966, 49.263811594000089 ], [ -123.152938396999929, 49.263821193000034 ], [ -123.152883499999916, 49.26476100700004 ], [ -123.15287430799999, 49.265582186000117 ], [ -123.152837196999883, 49.266409892000098 ], [ -123.152814597999978, 49.267248789000092 ], [ -123.150419185999965, 49.267216195000032 ], [ -123.150436407, 49.266492487000043 ], [ -123.150439207999909, 49.266375506000024 ], [ -123.150457436999915, 49.265971928000084 ], [ -123.150458859999929, 49.26594044600008 ], [ -123.150477399999914, 49.265529788000016 ], [ -123.150486943, 49.26511598400009 ], [ -123.150496392999941, 49.264706092000033 ], [ -123.15054359599992, 49.263782302000081 ], [ -123.152346992999966, 49.263811594000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "428248705", "BldgCostT": "273447743", "sL_LossRatio": "0.676733143781157", "sL_AssetLoss": "3984479", "sL_BldgLoss": "2696429", "sL_StrLoss": "1140600", "sL_NStrLoss": "1555829", "sL_ContLoss": "1288050", "geom_point": "0101000020E61000006B530860DAC95EC02AED811444A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155184724, 49.26728969600007 ], [ -123.157547611999931, 49.267337491000035 ], [ -123.15752367099999, 49.267786718000039 ], [ -123.157502392999959, 49.268186605000054 ], [ -123.15514141200002, 49.268152303000065 ], [ -123.152773602, 49.268116897000063 ], [ -123.15038941100002, 49.268081896000098 ], [ -123.150403512999929, 49.267671422000042 ], [ -123.150419185999965, 49.267216195000032 ], [ -123.152814597999978, 49.267248789000092 ], [ -123.155184724, 49.26728969600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "605842631", "BldgCostT": "414832165", "sL_LossRatio": "0.838323702779076", "sL_AssetLoss": "3495299", "sL_BldgLoss": "2930192", "sL_StrLoss": "1350270", "sL_NStrLoss": "1579922", "sL_ContLoss": "565107", "geom_point": "0101000020E61000000336E7E0D9C95EC013B0FC7D6FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152773602, 49.268116897000063 ], [ -123.15514141200002, 49.268152303000065 ], [ -123.155123418999921, 49.268618575000048 ], [ -123.15510649499997, 49.269057512000074 ], [ -123.155091603999949, 49.26946778800005 ], [ -123.155090093999945, 49.269508960000088 ], [ -123.155074486999979, 49.26993851000006 ], [ -123.152702620999932, 49.269901103000073 ], [ -123.152720785999961, 49.269458148000091 ], [ -123.15273858799992, 49.269023901 ], [ -123.15275587099994, 49.268576443000022 ], [ -123.152773602, 49.268116897000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "409282291", "BldgCostT": "276349005", "sL_LossRatio": "0.788743436668345", "sL_AssetLoss": "2780600", "sL_BldgLoss": "2193180", "sL_StrLoss": "1001300", "sL_NStrLoss": "1191880", "sL_ContLoss": "587420", "geom_point": "0101000020E6100000611E2203B3C95EC0A9D12F3A6EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15038941100002, 49.268081896000098 ], [ -123.152773602, 49.268116897000063 ], [ -123.15275587099994, 49.268576443000022 ], [ -123.15273858799992, 49.269023901 ], [ -123.152720785999961, 49.269458148000091 ], [ -123.152702620999932, 49.269901103000073 ], [ -123.150352694999967, 49.269864292000058 ], [ -123.150353461999913, 49.269415631000086 ], [ -123.150353603999974, 49.269352038000065 ], [ -123.150354190999963, 49.268989800000035 ], [ -123.150372517999969, 49.268517012000068 ], [ -123.15038941100002, 49.268081896000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325755146", "BldgCostT": "221231525", "sL_LossRatio": "0.822889187488048", "sL_AssetLoss": "2368839", "sL_BldgLoss": "1949292", "sL_StrLoss": "891020", "sL_NStrLoss": "1058272", "sL_ContLoss": "419547", "geom_point": "0101000020E610000027C1C9D3C5C95EC044DDBD929AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152702620999932, 49.269901103000073 ], [ -123.155074486999979, 49.26993851000006 ], [ -123.155059356999956, 49.270372180000045 ], [ -123.155043683000017, 49.270821303000083 ], [ -123.152669103999983, 49.270782991000083 ], [ -123.150321988999963, 49.27074439000009 ], [ -123.15033757099998, 49.270298031000046 ], [ -123.150352694999967, 49.269864292000058 ], [ -123.152702620999932, 49.269901103000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "529152851", "BldgCostT": "364618563", "sL_LossRatio": "0.856440587296857", "sL_AssetLoss": "3157313", "sL_BldgLoss": "2704051", "sL_StrLoss": "1219110", "sL_NStrLoss": "1484941", "sL_ContLoss": "453262", "geom_point": "0101000020E61000008015D84AC5C95EC06117A839B7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152669103999983, 49.270782991000083 ], [ -123.155043683000017, 49.270821303000083 ], [ -123.155027465, 49.271253433000076 ], [ -123.155026329999927, 49.271283357000051 ], [ -123.1550111, 49.271688705000024 ], [ -123.152636508999933, 49.27164950499999 ], [ -123.150292009999959, 49.271612798000071 ], [ -123.150307259999948, 49.271170551000068 ], [ -123.150321988999963, 49.27074439000009 ], [ -123.152669103999983, 49.270782991000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "512893841", "BldgCostT": "354366792", "sL_LossRatio": "0.855029450151759", "sL_AssetLoss": "3271630", "sL_BldgLoss": "2797340", "sL_StrLoss": "1273160", "sL_NStrLoss": "1524180", "sL_ContLoss": "474290", "geom_point": "0101000020E610000096CD13D78AC95EC0FF3F14EDA6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14790799099994, 49.269825903000026 ], [ -123.150352694999967, 49.269864292000058 ], [ -123.15033757099998, 49.270298031000046 ], [ -123.150321988999963, 49.27074439000009 ], [ -123.150307259999948, 49.271170551000068 ], [ -123.150292009999959, 49.271612798000071 ], [ -123.147841893999967, 49.271572388000045 ], [ -123.147859363999942, 49.271128031000046 ], [ -123.147875990999964, 49.270704101000028 ], [ -123.14789233499999, 49.270255590000019 ], [ -123.14790799099994, 49.269825903000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "291749716", "BldgCostT": "193120500", "sL_LossRatio": "0.737770205715999", "sL_AssetLoss": "2448181", "sL_BldgLoss": "1806195", "sL_StrLoss": "766480", "sL_NStrLoss": "1039715", "sL_ContLoss": "641986", "geom_point": "0101000020E6100000694AE2B479C95EC0FF49F8B5E0A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147787819999976, 49.272980994000129 ], [ -123.147806895999906, 49.272475798000116 ], [ -123.146792626999954, 49.272458902000032 ], [ -123.146346692999913, 49.272537192000073 ], [ -123.145810187999956, 49.27268060200003 ], [ -123.145516187999974, 49.272770635000022 ], [ -123.144191297999939, 49.273176401000072 ], [ -123.145064787999928, 49.272848294000028 ], [ -123.145319517999937, 49.272662303000097 ], [ -123.145393094000028, 49.272537207000049 ], [ -123.145516303999983, 49.272299109000066 ], [ -123.145464300999933, 49.271648284000079 ], [ -123.145483497999962, 49.270666093000095 ], [ -123.146403179999979, 49.270681395000089 ], [ -123.147875990999964, 49.270704101000028 ], [ -123.147859363999942, 49.271128031000046 ], [ -123.147841893999967, 49.271572388000045 ], [ -123.150292009999959, 49.271612798000071 ], [ -123.150257512999957, 49.272062199000054 ], [ -123.150222871999972, 49.272513490000101 ], [ -123.150128781999967, 49.27449259400003 ], [ -123.149507084999954, 49.274482107000097 ], [ -123.148901595999973, 49.274471915000042 ], [ -123.148325309999976, 49.274461987000038 ], [ -123.147733519999917, 49.27445179900009 ], [ -123.147767474999938, 49.273519603000054 ], [ -123.147787819999976, 49.272980994000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "675319198", "BldgCostT": "453454285", "sL_LossRatio": "0.780614129068184", "sL_AssetLoss": "4819964", "sL_BldgLoss": "3762532", "sL_StrLoss": "1579020", "sL_NStrLoss": "2183512", "sL_ContLoss": "1057432", "geom_point": "0101000020E6100000D67A979C64C95EC039AF97646CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145644799999928, 49.267152218000021 ], [ -123.148005286999947, 49.267193903000091 ], [ -123.147991191999978, 49.267629195000055 ], [ -123.147977708000013, 49.268045193000091 ], [ -123.14796139699996, 49.268501742000119 ], [ -123.147945220999986, 49.268954102000087 ], [ -123.147930987, 49.269287275000082 ], [ -123.147927256999935, 49.269374268000064 ], [ -123.14790799099994, 49.269825903000026 ], [ -123.14789233499999, 49.270255590000019 ], [ -123.147875990999964, 49.270704101000028 ], [ -123.146403179999979, 49.270681395000089 ], [ -123.145483497999962, 49.270666093000095 ], [ -123.14552417799996, 49.270204421000145 ], [ -123.14556130699999, 49.269782796000094 ], [ -123.145578469999975, 49.269331996000105 ], [ -123.145594904999967, 49.268900997000081 ], [ -123.145617797999989, 49.268450551000072 ], [ -123.14564039599999, 49.268005898000048 ], [ -123.145642529, 49.267595667000158 ], [ -123.145644799999928, 49.267152218000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "539288249", "BldgCostT": "357254014", "sL_LossRatio": "0.761174825317238", "sL_AssetLoss": "4321119", "sL_BldgLoss": "3289127", "sL_StrLoss": "1480500", "sL_NStrLoss": "1808627", "sL_ContLoss": "1031992", "geom_point": "0101000020E610000006BBADFC8BC95EC05E5869185FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.148005286999947, 49.267193903000091 ], [ -123.150419185999965, 49.267216195000032 ], [ -123.150403512999929, 49.267671422000042 ], [ -123.15038941100002, 49.268081896000098 ], [ -123.150372517999969, 49.268517012000068 ], [ -123.150354190999963, 49.268989800000035 ], [ -123.150353603999974, 49.269352038000065 ], [ -123.150353461999913, 49.269415631000086 ], [ -123.150352694999967, 49.269864292000058 ], [ -123.14790799099994, 49.269825903000026 ], [ -123.147927256999935, 49.269374268000064 ], [ -123.147930987, 49.269287275000082 ], [ -123.147945220999986, 49.268954102000087 ], [ -123.14796139699996, 49.268501742000119 ], [ -123.147977708000013, 49.268045193000091 ], [ -123.147991191999978, 49.267629195000055 ], [ -123.148005286999947, 49.267193903000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1035046239", "BldgCostT": "646954573", "sL_LossRatio": "0.66950831509241", "sL_AssetLoss": "7654172.3", "sL_BldgLoss": "5124532", "sL_StrLoss": "2212150", "sL_NStrLoss": "2912382", "sL_ContLoss": "2529640.3", "geom_point": "0101000020E6100000FEE2E6AF2BC95EC0CED504EE4CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140774903999954, 49.270043389000136 ], [ -123.140791112999935, 49.269712287000061 ], [ -123.140417877999951, 49.269705478000027 ], [ -123.13946217299997, 49.269688019000043 ], [ -123.138410962999941, 49.269157915000093 ], [ -123.138224895999883, 49.268833029000128 ], [ -123.13819175499999, 49.268775155000093 ], [ -123.138317880999963, 49.268490258000092 ], [ -123.138337032999942, 49.26838439199999 ], [ -123.13837205599998, 49.268190874000013 ], [ -123.138445448999903, 49.268092836000079 ], [ -123.138452139999941, 49.267939877000074 ], [ -123.138457117999977, 49.267858959000066 ], [ -123.138466473999955, 49.267622422000024 ], [ -123.138481785999915, 49.267235399000114 ], [ -123.138451898999989, 49.266874311000073 ], [ -123.138455402999966, 49.266772585000098 ], [ -123.138468494999984, 49.26618298500005 ], [ -123.14047770799999, 49.266215491000075 ], [ -123.140934792999971, 49.26622315400008 ], [ -123.14231948099993, 49.266246697000078 ], [ -123.143309013999939, 49.266263504000072 ], [ -123.145662703999918, 49.266304195000039 ], [ -123.148044097999957, 49.266340110000066 ], [ -123.148060529999981, 49.26589297200011 ], [ -123.148060897999983, 49.265883129000045 ], [ -123.148074917999949, 49.265503297000087 ], [ -123.150477399999914, 49.265529788000016 ], [ -123.150458859999929, 49.26594044600008 ], [ -123.150457436999915, 49.265971928000084 ], [ -123.150439207999909, 49.266375506000024 ], [ -123.150436407, 49.266492487000043 ], [ -123.150419185999965, 49.267216195000032 ], [ -123.148005286999947, 49.267193903000091 ], [ -123.145644799999928, 49.267152218000021 ], [ -123.145642529, 49.267595667000158 ], [ -123.14564039599999, 49.268005898000048 ], [ -123.145617797999989, 49.268450551000072 ], [ -123.145594904999967, 49.268900997000081 ], [ -123.145578469999975, 49.269331996000105 ], [ -123.14556130699999, 49.269782796000094 ], [ -123.14552417799996, 49.270204421000145 ], [ -123.145483497999962, 49.270666093000095 ], [ -123.143129498999983, 49.270628100000081 ], [ -123.141849722999936, 49.270594298000113 ], [ -123.141079417999933, 49.270564006000022 ], [ -123.140929315, 49.27043480400004 ], [ -123.14081288099996, 49.270250597 ], [ -123.140790436, 49.270128119000162 ], [ -123.140774903999954, 49.270043389000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "659333882", "BldgCostT": "440716810", "sL_LossRatio": "0.745343202430958", "sL_AssetLoss": "1162011", "sL_BldgLoss": "866097", "sL_StrLoss": "415371", "sL_NStrLoss": "450726", "sL_ContLoss": "295914", "geom_point": "0101000020E610000038975CDE3FC95EC020B038BD07A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145708105999972, 49.265454209000026 ], [ -123.148074917999949, 49.265503297000087 ], [ -123.148060897999983, 49.265883129000045 ], [ -123.148060529999981, 49.26589297200011 ], [ -123.148044097999957, 49.266340110000066 ], [ -123.145662703999918, 49.266304195000039 ], [ -123.143309013999939, 49.266263504000072 ], [ -123.14231948099993, 49.266246697000078 ], [ -123.140934792999971, 49.26622315400008 ], [ -123.140935128999971, 49.26615019200009 ], [ -123.140993067999915, 49.266013021000035 ], [ -123.141007214999917, 49.265381993000076 ], [ -123.141169187999964, 49.265384474000044 ], [ -123.14332271399995, 49.265417207000041 ], [ -123.144516727999957, 49.265435719000024 ], [ -123.145708105999972, 49.265454209000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1205400810", "BldgCostT": "791803244", "sL_LossRatio": "0.699758586603218", "sL_AssetLoss": "3159311", "sL_BldgLoss": "2210755", "sL_StrLoss": "896016", "sL_NStrLoss": "1314739", "sL_ContLoss": "948556", "geom_point": "0101000020E6100000463AF48A25C95EC001AB0BF4E0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145756781999964, 49.263701793000088 ], [ -123.148141914999911, 49.263742291000014 ], [ -123.148095606999973, 49.264674212000102 ], [ -123.14808560099999, 49.265074193000032 ], [ -123.148074917999949, 49.265503297000087 ], [ -123.145708105999972, 49.265454209000026 ], [ -123.144516727999957, 49.265435719000024 ], [ -123.14332271399995, 49.265417207000041 ], [ -123.141169187999964, 49.265384474000044 ], [ -123.141007214999917, 49.265381993000076 ], [ -123.140993067999915, 49.266013021000035 ], [ -123.140935128999971, 49.26615019200009 ], [ -123.140934792999971, 49.26622315400008 ], [ -123.14047770799999, 49.266215491000075 ], [ -123.138468494999984, 49.26618298500005 ], [ -123.138499706999966, 49.265342606000033 ], [ -123.138529488999964, 49.264502993000058 ], [ -123.138562510999961, 49.263589608000075 ], [ -123.14102690699994, 49.263614401000048 ], [ -123.143414293999953, 49.263662304000064 ], [ -123.145756781999964, 49.263701793000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "623175161", "BldgCostT": "424519427", "sL_LossRatio": "0.817266075599949", "sL_AssetLoss": "2207647", "sL_BldgLoss": "1804235", "sL_StrLoss": "794378", "sL_NStrLoss": "1009857", "sL_ContLoss": "403412", "geom_point": "0101000020E610000082CBE84F34C95EC01F60A41FA6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143452820999954, 49.261764595000081 ], [ -123.14582819599994, 49.261827407000048 ], [ -123.145811894999923, 49.262297325000112 ], [ -123.145796195999964, 49.262749791000019 ], [ -123.145778056, 49.263188002000042 ], [ -123.145756781999964, 49.263701793000088 ], [ -123.143414293999953, 49.263662304000064 ], [ -123.14102690699994, 49.263614401000048 ], [ -123.14104781399999, 49.263121881000075 ], [ -123.141066683999924, 49.26267780300001 ], [ -123.143465697999929, 49.262715192 ], [ -123.143459329, 49.262246023000046 ], [ -123.143452820999954, 49.261764595000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "470157281", "BldgCostT": "318693603", "sL_LossRatio": "0.820410865839233", "sL_AssetLoss": "2899730", "sL_BldgLoss": "2378970", "sL_StrLoss": "1019020", "sL_NStrLoss": "1359950", "sL_ContLoss": "520760", "geom_point": "0101000020E6100000934DA0251BC95EC06217141F82A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141139987999949, 49.260842191000073 ], [ -123.143475491999979, 49.260882493000054 ], [ -123.143464279999989, 49.261319285000077 ], [ -123.143452820999954, 49.261764595000081 ], [ -123.143459329, 49.262246023000046 ], [ -123.143465697999929, 49.262715192 ], [ -123.141066683999924, 49.26267780300001 ], [ -123.141085133999937, 49.2622132770001 ], [ -123.14110398499993, 49.261738400000112 ], [ -123.141121240999951, 49.261309619000052 ], [ -123.141121433999928, 49.261304681000077 ], [ -123.141139987999949, 49.260842191000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "478586532", "BldgCostT": "323325840", "sL_LossRatio": "0.791489187138061", "sL_AssetLoss": "2925220", "sL_BldgLoss": "2315280", "sL_StrLoss": "1025070", "sL_NStrLoss": "1290210", "sL_ContLoss": "609940", "geom_point": "0101000020E6100000A3C9186142C95EC0D1A7D1BB63A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143522693999913, 49.259892900000096 ], [ -123.145903112999974, 49.259940600000093 ], [ -123.145886204999925, 49.260399206000038 ], [ -123.145866214999913, 49.260941189000121 ], [ -123.145848180999963, 49.261361770000093 ], [ -123.14582819599994, 49.261827407000048 ], [ -123.143452820999954, 49.261764595000081 ], [ -123.143464279999989, 49.261319285000077 ], [ -123.143475491999979, 49.260882493000054 ], [ -123.14349856599992, 49.260398601000105 ], [ -123.143522693999913, 49.259892900000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176751168", "BldgCostT": "117496668", "sL_LossRatio": "0.764530391826252", "sL_AssetLoss": "1064579", "sL_BldgLoss": "813903", "sL_StrLoss": "375530", "sL_NStrLoss": "438373", "sL_ContLoss": "250676", "geom_point": "0101000020E6100000805689471CC95EC0DF4855EA44A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14338377699994, 49.258984425000108 ], [ -123.143564800999968, 49.258987011000045 ], [ -123.143543757999907, 49.259439615000076 ], [ -123.143522693999913, 49.259892900000096 ], [ -123.14349856599992, 49.260398601000105 ], [ -123.143475491999979, 49.260882493000054 ], [ -123.141139987999949, 49.260842191000073 ], [ -123.141146877999958, 49.260684261000094 ], [ -123.141161508999957, 49.26034846900005 ], [ -123.141183081999912, 49.259853504000048 ], [ -123.141201079999973, 49.259389140000117 ], [ -123.141217872999945, 49.258953700000077 ], [ -123.14136421099991, 49.258955788 ], [ -123.142036869999984, 49.258965329000041 ], [ -123.142311816999978, 49.258969240000056 ], [ -123.14338377699994, 49.258984425000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124612303", "BldgCostT": "80238746", "sL_LossRatio": "0.713612564647921", "sL_AssetLoss": "1313654", "sL_BldgLoss": "937440", "sL_StrLoss": "375300", "sL_NStrLoss": "562140", "sL_ContLoss": "376214", "geom_point": "0101000020E61000004F46A68D34C95EC00FDE2E6611A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143543757999907, 49.259439615000076 ], [ -123.143564800999968, 49.258987011000045 ], [ -123.14338377699994, 49.258984425000108 ], [ -123.142311816999978, 49.258969240000056 ], [ -123.142036869999984, 49.258965329000041 ], [ -123.14136421099991, 49.258955788 ], [ -123.141217872999945, 49.258953700000077 ], [ -123.141235052999917, 49.25851622800009 ], [ -123.141254008999923, 49.258033210000065 ], [ -123.141274397999908, 49.257553745000067 ], [ -123.141293677999911, 49.257099291000038 ], [ -123.143598777999941, 49.257140488000047 ], [ -123.145979481999987, 49.257179192000052 ], [ -123.145975944999975, 49.257646234000021 ], [ -123.145972506999925, 49.258096787000071 ], [ -123.145955525999966, 49.258554482000065 ], [ -123.145937106999924, 49.259051598000035 ], [ -123.145921349, 49.259463355000022 ], [ -123.145903112999974, 49.259940600000093 ], [ -123.143522693999913, 49.259892900000096 ], [ -123.143543757999907, 49.259439615000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "465690730", "BldgCostT": "304748873", "sL_LossRatio": "0.740642581356867", "sL_AssetLoss": "3626000", "sL_BldgLoss": "2685570", "sL_StrLoss": "1260510", "sL_NStrLoss": "1425060", "sL_ContLoss": "940430", "geom_point": "0101000020E6100000FF433499F5C85EC01FC39DEA14A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138793889999974, 49.257053703000096 ], [ -123.141293677999911, 49.257099291000038 ], [ -123.141274397999908, 49.257553745000067 ], [ -123.141254008999923, 49.258033210000065 ], [ -123.141235052999917, 49.25851622800009 ], [ -123.141217872999945, 49.258953700000077 ], [ -123.141201079999973, 49.259389140000117 ], [ -123.141183081999912, 49.259853504000048 ], [ -123.13944315099999, 49.259826560000135 ], [ -123.138729313999974, 49.259815500000116 ], [ -123.138726787999957, 49.258921008000073 ], [ -123.138734351999986, 49.258455848000025 ], [ -123.138741489000012, 49.258014293000024 ], [ -123.138793889999974, 49.257053703000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242090772", "BldgCostT": "162534158", "sL_LossRatio": "0.771575932040753", "sL_AssetLoss": "1417320", "sL_BldgLoss": "1093570", "sL_StrLoss": "459810", "sL_NStrLoss": "633760", "sL_ContLoss": "323750", "geom_point": "0101000020E61000004D89EACECFC85EC0C2E2FDD90BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138529191999964, 49.257069210000019 ], [ -123.138793889999974, 49.257053703000096 ], [ -123.138741489000012, 49.258014293000024 ], [ -123.138734351999986, 49.258455848000025 ], [ -123.138726787999957, 49.258921008000073 ], [ -123.138024072999883, 49.258907012000165 ], [ -123.13627789, 49.258872213000046 ], [ -123.136292371999929, 49.258422608000018 ], [ -123.136307799999912, 49.257942511000124 ], [ -123.137031886999978, 49.257783390000021 ], [ -123.137619410999974, 49.257545001000011 ], [ -123.137868998999977, 49.257392324000087 ], [ -123.138247499000016, 49.257160799000083 ], [ -123.138529191999964, 49.257069210000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192417313", "BldgCostT": "125894148", "sL_LossRatio": "0.743239850167306", "sL_AssetLoss": "1951510", "sL_BldgLoss": "1450440", "sL_StrLoss": "601710", "sL_NStrLoss": "848730", "sL_ContLoss": "501070", "geom_point": "0101000020E6100000C11CEB7FCCC85EC03F6D226D42A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138024072999883, 49.258907012000165 ], [ -123.138726787999957, 49.258921008000073 ], [ -123.138729313999974, 49.259815500000116 ], [ -123.138697377999932, 49.260800897000102 ], [ -123.137946450999905, 49.260786957000043 ], [ -123.137713330999986, 49.260782635000062 ], [ -123.13743837399997, 49.260777513000058 ], [ -123.13620980799999, 49.260754705000046 ], [ -123.136228069999959, 49.26024913600007 ], [ -123.136244906999977, 49.259784704000054 ], [ -123.136260317, 49.259358459000048 ], [ -123.136261794999925, 49.259317336000024 ], [ -123.13627789, 49.258872213000046 ], [ -123.138024072999883, 49.258907012000165 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "515093291", "BldgCostT": "355975374", "sL_LossRatio": "0.869677538446917", "sL_AssetLoss": "3282903", "sL_BldgLoss": "2855067", "sL_StrLoss": "1286600", "sL_NStrLoss": "1568467", "sL_ContLoss": "427836", "geom_point": "0101000020E61000005DFFB640A5C85EC0CBB80CAC21A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133914352999952, 49.258268474000047 ], [ -123.133918985999941, 49.25785479700005 ], [ -123.134268831999961, 49.257892717000097 ], [ -123.134403411000036, 49.257907306000043 ], [ -123.13562064599995, 49.257929790000063 ], [ -123.136070261999976, 49.257938105000036 ], [ -123.136307799999912, 49.257942511000124 ], [ -123.136292371999929, 49.258422608000018 ], [ -123.13627789, 49.258872213000046 ], [ -123.136261794999925, 49.259317336000024 ], [ -123.136260317, 49.259358459000048 ], [ -123.136244906999977, 49.259784704000054 ], [ -123.133870810999952, 49.259747800000056 ], [ -123.133887992, 49.259325378000028 ], [ -123.133890145999942, 49.259272496000115 ], [ -123.133907995999962, 49.258834496000141 ], [ -123.133912892999902, 49.258398587000073 ], [ -123.133914352999952, 49.258268474000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "403150280", "BldgCostT": "272548602", "sL_LossRatio": "0.81704805357332", "sL_AssetLoss": "2549030", "sL_BldgLoss": "2082680", "sL_StrLoss": "941270", "sL_NStrLoss": "1141410", "sL_ContLoss": "466350", "geom_point": "0101000020E6100000CD0A6E3991C85EC06E7E36514FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133870810999952, 49.259747800000056 ], [ -123.136244906999977, 49.259784704000054 ], [ -123.136228069999959, 49.26024913600007 ], [ -123.13620980799999, 49.260754705000046 ], [ -123.134888916999984, 49.260734629000126 ], [ -123.134711818999932, 49.260731932000077 ], [ -123.133828690999934, 49.260718492000137 ], [ -123.131481980999979, 49.260681397000049 ], [ -123.131503316999925, 49.260155491000035 ], [ -123.131521421999977, 49.259709708000031 ], [ -123.133870810999952, 49.259747800000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "421613184", "BldgCostT": "283181896", "sL_LossRatio": "0.80102891013812", "sL_AssetLoss": "2682450", "sL_BldgLoss": "2148720", "sL_StrLoss": "973060", "sL_NStrLoss": "1175660", "sL_ContLoss": "533730", "geom_point": "0101000020E61000003F8984C67EC85EC0BC76378920A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133379109999964, 49.257885686000108 ], [ -123.13361129499998, 49.257788103000017 ], [ -123.133918985999941, 49.25785479700005 ], [ -123.133914352999952, 49.258268474000047 ], [ -123.133912892999902, 49.258398587000073 ], [ -123.133907995999962, 49.258834496000141 ], [ -123.133890145999942, 49.259272496000115 ], [ -123.133887992, 49.259325378000028 ], [ -123.133870810999952, 49.259747800000056 ], [ -123.131521421999977, 49.259709708000031 ], [ -123.131536567, 49.259274036000065 ], [ -123.131553222, 49.258796298000057 ], [ -123.131568496999975, 49.258374845000056 ], [ -123.131586289, 49.257882915000096 ], [ -123.133053515999976, 49.257904431000064 ], [ -123.1333251, 49.257908407000095 ], [ -123.133379109999964, 49.257885686000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "531060886", "BldgCostT": "362902079", "sL_LossRatio": "0.844247279369917", "sL_AssetLoss": "2312332", "sL_BldgLoss": "1952180", "sL_StrLoss": "889630", "sL_NStrLoss": "1062550", "sL_ContLoss": "360152", "geom_point": "0101000020E6100000EC27314257C85EC0CFACDF2B3EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12989801599997, 49.258769616000045 ], [ -123.131553222, 49.258796298000057 ], [ -123.131536567, 49.259274036000065 ], [ -123.131521421999977, 49.259709708000031 ], [ -123.131503316999925, 49.260155491000035 ], [ -123.131481980999979, 49.260681397000049 ], [ -123.129100391999884, 49.260608190000013 ], [ -123.129112385999974, 49.260131364000088 ], [ -123.129123896999943, 49.259672910000042 ], [ -123.12913768099996, 49.259241048000071 ], [ -123.129137873000019, 49.259235234000066 ], [ -123.129153120999931, 49.258757593000084 ], [ -123.12989801599997, 49.258769616000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253594533", "BldgCostT": "172525546", "sL_LossRatio": "0.73909024554781", "sL_AssetLoss": "1085084", "sL_BldgLoss": "801975", "sL_StrLoss": "351383", "sL_NStrLoss": "450592", "sL_ContLoss": "283109", "geom_point": "0101000020E610000002314C7D4BC85EC0218C3C9C02A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1278213249999, 49.257036434000057 ], [ -123.130304796999937, 49.257059810000101 ], [ -123.130831473999976, 49.257061851000046 ], [ -123.131775715999979, 49.257106818000118 ], [ -123.131789479999952, 49.257106808000088 ], [ -123.131803187999978, 49.257106788000044 ], [ -123.132103893999926, 49.257237365000066 ], [ -123.132698125999966, 49.257495402000082 ], [ -123.13361129499998, 49.257788103000017 ], [ -123.133379109999964, 49.257885686000108 ], [ -123.1333251, 49.257908407000095 ], [ -123.133053515999976, 49.257904431000064 ], [ -123.131586289, 49.257882915000096 ], [ -123.131568496999975, 49.258374845000056 ], [ -123.131553222, 49.258796298000057 ], [ -123.12989801599997, 49.258769616000045 ], [ -123.129153120999931, 49.258757593000084 ], [ -123.126765411999898, 49.25871839300008 ], [ -123.126778747999936, 49.25827167900006 ], [ -123.126779585999913, 49.258244696000098 ], [ -123.126782085999963, 49.258160400000037 ], [ -123.127037103999953, 49.257814083000078 ], [ -123.127183112999973, 49.257607200000116 ], [ -123.127210694999931, 49.257116992000071 ], [ -123.127637516999968, 49.257034709000031 ], [ -123.1278213249999, 49.257036434000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385708769", "BldgCostT": "264047905", "sL_LossRatio": "0.783642365500773", "sL_AssetLoss": "1708560", "sL_BldgLoss": "1338900", "sL_StrLoss": "556550", "sL_NStrLoss": "782350", "sL_ContLoss": "369660", "geom_point": "0101000020E61000001C1559E72FC85EC0919F5C6C3DA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126765411999898, 49.25871839300008 ], [ -123.129153120999931, 49.258757593000084 ], [ -123.129137873000019, 49.259235234000066 ], [ -123.12913768099996, 49.259241048000071 ], [ -123.129123896999943, 49.259672910000042 ], [ -123.129112385999974, 49.260131364000088 ], [ -123.129100391999884, 49.260608190000013 ], [ -123.128581094999944, 49.260608787000081 ], [ -123.128468205999923, 49.260657992000141 ], [ -123.126721240999956, 49.26062933800003 ], [ -123.126707504999956, 49.260629105000142 ], [ -123.1267085599999, 49.260593178000072 ], [ -123.126710008, 49.26054454299999 ], [ -123.126722050999931, 49.260125231000096 ], [ -123.126722552999979, 49.260107261000066 ], [ -123.126736089999895, 49.259635506000052 ], [ -123.126750061999957, 49.25919796000008 ], [ -123.126750379999919, 49.259189301000049 ], [ -123.126750652999988, 49.259179989000089 ], [ -123.126765411999898, 49.25871839300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "514761167", "BldgCostT": "354915682", "sL_LossRatio": "0.847783888870261", "sL_AssetLoss": "3012191", "sL_BldgLoss": "2553687", "sL_StrLoss": "1141320", "sL_NStrLoss": "1412367", "sL_ContLoss": "458504", "geom_point": "0101000020E61000007654C95B09C85EC08C1CF9EE1CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124361004999983, 49.257774293000097 ], [ -123.127037103999953, 49.257814083000078 ], [ -123.126782085999963, 49.258160400000037 ], [ -123.126779585999913, 49.258244696000098 ], [ -123.126778747999936, 49.25827167900006 ], [ -123.126765411999898, 49.25871839300008 ], [ -123.126750652999988, 49.259179989000089 ], [ -123.126750379999919, 49.259189301000049 ], [ -123.126750061999957, 49.25919796000008 ], [ -123.126736089999895, 49.259635506000052 ], [ -123.124333100999948, 49.25959849400008 ], [ -123.124344844999925, 49.259147181000081 ], [ -123.124357001999954, 49.25868041100005 ], [ -123.124359005999963, 49.258229451000055 ], [ -123.124361004999983, 49.257774293000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290223829", "BldgCostT": "199183064", "sL_LossRatio": "0.902774165194227", "sL_AssetLoss": "1114930", "sL_BldgLoss": "1006530", "sL_StrLoss": "470230", "sL_NStrLoss": "536300", "sL_ContLoss": "108400", "geom_point": "0101000020E610000062524B8C08C85EC0CF0017644BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12430726799991, 49.260569697000058 ], [ -123.124319945999943, 49.260091514000059 ], [ -123.124333100999948, 49.25959849400008 ], [ -123.126736089999895, 49.259635506000052 ], [ -123.126722552999979, 49.260107261000066 ], [ -123.126722050999931, 49.260125231000096 ], [ -123.126710008, 49.26054454299999 ], [ -123.1267085599999, 49.260593178000072 ], [ -123.126707504999956, 49.260629105000142 ], [ -123.125442289, 49.260608037000097 ], [ -123.124549741999914, 49.260602276000043 ], [ -123.124434787000013, 49.26057309599999 ], [ -123.12430726799991, 49.260569697000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "436045599", "BldgCostT": "267650724", "sL_LossRatio": "0.653022882713463", "sL_AssetLoss": "1533298.49", "sL_BldgLoss": "1001279", "sL_StrLoss": "405491", "sL_NStrLoss": "595788", "sL_ContLoss": "532019.49", "geom_point": "0101000020E61000006A0D4182E0C75EC07FF7AF287CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119936512999956, 49.260498191000046 ], [ -123.119965569, 49.259969344000112 ], [ -123.119989878999959, 49.259526803000035 ], [ -123.121988279999982, 49.259553094000083 ], [ -123.124333100999948, 49.25959849400008 ], [ -123.124319945999943, 49.260091514000059 ], [ -123.12430726799991, 49.260569697000058 ], [ -123.124434787000013, 49.26057309599999 ], [ -123.124549741999914, 49.260602276000043 ], [ -123.125442289, 49.260608037000097 ], [ -123.126707504999956, 49.260629105000142 ], [ -123.126693339999974, 49.261078737000034 ], [ -123.126679191999955, 49.261529096000089 ], [ -123.126664357999942, 49.261996438000082 ], [ -123.126650317999989, 49.262439904000132 ], [ -123.12663536599996, 49.262904926000026 ], [ -123.126619296999976, 49.263406509000106 ], [ -123.124176294999955, 49.263368409000108 ], [ -123.121819418999976, 49.263317295000064 ], [ -123.1198948099999, 49.263294698000053 ], [ -123.119909121999939, 49.262804056000071 ], [ -123.119910417999975, 49.262759094000039 ], [ -123.11992280799997, 49.262334401000089 ], [ -123.119930400999962, 49.261393300000108 ], [ -123.119936512999956, 49.260498191000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254488335", "BldgCostT": "171943335", "sL_LossRatio": "0.793809316914919", "sL_AssetLoss": "1489141", "sL_BldgLoss": "1182094", "sL_StrLoss": "571910", "sL_NStrLoss": "610184", "sL_ContLoss": "307047", "geom_point": "0101000020E61000009EFAB448E2C75EC021DB22FE1BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122051912999922, 49.257731698000057 ], [ -123.124361004999983, 49.257774293000097 ], [ -123.124359005999963, 49.258229451000055 ], [ -123.124357001999954, 49.25868041100005 ], [ -123.124344844999925, 49.259147181000081 ], [ -123.124333100999948, 49.25959849400008 ], [ -123.121988279999982, 49.259553094000083 ], [ -123.122003458000037, 49.259122900000079 ], [ -123.122020687999935, 49.258632489000078 ], [ -123.122036445999925, 49.25817826500009 ], [ -123.122051912999922, 49.257731698000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223001206", "BldgCostT": "154022039", "sL_LossRatio": "0.822835259800022", "sL_AssetLoss": "1282140", "sL_BldgLoss": "1054990", "sL_StrLoss": "460430", "sL_NStrLoss": "594560", "sL_ContLoss": "227150", "geom_point": "0101000020E6100000D17AB616BFC75EC09F296CED1AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120102584999984, 49.257711204000039 ], [ -123.122051912999922, 49.257731698000057 ], [ -123.122036445999925, 49.25817826500009 ], [ -123.122020687999935, 49.258632489000078 ], [ -123.122003458000037, 49.259122900000079 ], [ -123.121988279999982, 49.259553094000083 ], [ -123.119989878999959, 49.259526803000035 ], [ -123.120029225999971, 49.259080363000095 ], [ -123.120050514999932, 49.258838409000106 ], [ -123.120061895, 49.258609899000049 ], [ -123.12008133399999, 49.258180643000067 ], [ -123.120102584999984, 49.257711204000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "375212729", "BldgCostT": "248666198", "sL_LossRatio": "0.746692403804518", "sL_AssetLoss": "2219361", "sL_BldgLoss": "1657180", "sL_StrLoss": "685240", "sL_NStrLoss": "971940", "sL_ContLoss": "562181", "geom_point": "0101000020E6100000FB766C80E9C75EC05D03A5B2F2A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124384090999953, 49.257069716000025 ], [ -123.127210694999931, 49.257116992000071 ], [ -123.127183112999973, 49.257607200000116 ], [ -123.127037103999953, 49.257814083000078 ], [ -123.124361004999983, 49.257774293000097 ], [ -123.122051912999922, 49.257731698000057 ], [ -123.120102584999984, 49.257711204000039 ], [ -123.120113142999941, 49.257415958000109 ], [ -123.120128579999943, 49.256982302000068 ], [ -123.120745906999943, 49.256997009000067 ], [ -123.122030990999988, 49.257027588000021 ], [ -123.123713631999962, 49.257057690000089 ], [ -123.124384090999953, 49.257069716000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "461021478", "BldgCostT": "317944857", "sL_LossRatio": "0.826470409869441", "sL_AssetLoss": "3116529", "sL_BldgLoss": "2575719", "sL_StrLoss": "1136350", "sL_NStrLoss": "1439369", "sL_ContLoss": "540810", "geom_point": "0101000020E6100000294C7C41CDC75EC0E1C7904ACEA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120144612999965, 49.25610540100012 ], [ -123.120155878999952, 49.255643428000099 ], [ -123.120166812999969, 49.255194406000086 ], [ -123.120836512000011, 49.255206655 ], [ -123.12209719399999, 49.255229690000128 ], [ -123.122079794999948, 49.255685768000042 ], [ -123.12206209799993, 49.256150206000022 ], [ -123.12375167099999, 49.256180489000037 ], [ -123.124427392999976, 49.256192592000026 ], [ -123.124404105999986, 49.256664277000098 ], [ -123.124384090999953, 49.257069716000025 ], [ -123.123713631999962, 49.257057690000089 ], [ -123.122030990999988, 49.257027588000021 ], [ -123.120745906999943, 49.256997009000067 ], [ -123.120128579999943, 49.256982302000068 ], [ -123.120144612999965, 49.25610540100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104057167", "BldgCostT": "61686667", "sL_LossRatio": "0.693165906492326", "sL_AssetLoss": "1043401", "sL_BldgLoss": "723250", "sL_StrLoss": "341090", "sL_NStrLoss": "382160", "sL_ContLoss": "320151", "geom_point": "0101000020E6100000DF1F9C0D01C85EC0D722DC43C6A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124404105999986, 49.256664277000098 ], [ -123.124427392999976, 49.256192592000026 ], [ -123.12375167099999, 49.256180489000037 ], [ -123.12206209799993, 49.256150206000022 ], [ -123.122079794999948, 49.255685768000042 ], [ -123.12209719399999, 49.255229690000128 ], [ -123.123776962999926, 49.255260508000084 ], [ -123.124484412999934, 49.255273506000059 ], [ -123.126553451999911, 49.255311403000093 ], [ -123.127290122999938, 49.255324907000059 ], [ -123.127257309999905, 49.256076102000115 ], [ -123.127251499999915, 49.256236287000036 ], [ -123.127230574999928, 49.256687497000044 ], [ -123.127210694999931, 49.257116992000071 ], [ -123.124384090999953, 49.257069716000025 ], [ -123.124404105999986, 49.256664277000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210017343", "BldgCostT": "141431793", "sL_LossRatio": "0.790056358797637", "sL_AssetLoss": "1896066", "sL_BldgLoss": "1497999", "sL_StrLoss": "687160", "sL_NStrLoss": "810839", "sL_ContLoss": "398067", "geom_point": "0101000020E6100000E137226B0FC85EC07FB0104681A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124589997999948, 49.252571400000086 ], [ -123.127409598999932, 49.252618596000062 ], [ -123.127387809999931, 49.253098543000107 ], [ -123.127368208999954, 49.253530005000066 ], [ -123.127348361999935, 49.25398911800005 ], [ -123.127330090999976, 49.254412619000043 ], [ -123.127290122999938, 49.255324907000059 ], [ -123.126553451999911, 49.255311403000093 ], [ -123.124484412999934, 49.255273506000059 ], [ -123.124502196999956, 49.254820492000107 ], [ -123.124520109999978, 49.254364693000099 ], [ -123.124528929999911, 49.253938593000058 ], [ -123.124538705999939, 49.253466307000089 ], [ -123.124563155999979, 49.253039485000052 ], [ -123.124589997999948, 49.252571400000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "339434979", "BldgCostT": "229329858", "sL_LossRatio": "0.788118215148734", "sL_AssetLoss": "2651403", "sL_BldgLoss": "2089619", "sL_StrLoss": "913890", "sL_NStrLoss": "1175729", "sL_ContLoss": "561784", "geom_point": "0101000020E6100000DE5EA9993BC85EC04C37CB5DB2A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127210694999931, 49.257116992000071 ], [ -123.127230574999928, 49.256687497000044 ], [ -123.127251499999915, 49.256236287000036 ], [ -123.127257309999905, 49.256076102000115 ], [ -123.127290122999938, 49.255324907000059 ], [ -123.127330090999976, 49.254412619000043 ], [ -123.127348361999935, 49.25398911800005 ], [ -123.127368208999954, 49.253530005000066 ], [ -123.127387809999931, 49.253098543000107 ], [ -123.127409598999932, 49.252618596000062 ], [ -123.127612606999946, 49.252622191000086 ], [ -123.127872806, 49.252679597000096 ], [ -123.128042384999958, 49.252778704000072 ], [ -123.128550899999951, 49.253472142000192 ], [ -123.128697215999949, 49.253671601000043 ], [ -123.129245993, 49.254636497000057 ], [ -123.12927108699995, 49.254785798000064 ], [ -123.129628804999967, 49.255109703000102 ], [ -123.130259993999985, 49.256008311000045 ], [ -123.130841700999923, 49.256529990000011 ], [ -123.131253378999958, 49.256824696000045 ], [ -123.131803187999978, 49.257106788000044 ], [ -123.131789479999952, 49.257106808000088 ], [ -123.131775715999979, 49.257106818000118 ], [ -123.130831473999976, 49.257061851000046 ], [ -123.130304796999937, 49.257059810000101 ], [ -123.1278213249999, 49.257036434000057 ], [ -123.127637516999968, 49.257034709000031 ], [ -123.127210694999931, 49.257116992000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98409832", "BldgCostT": "63713332", "sL_LossRatio": "0.743060068348101", "sL_AssetLoss": "1046408", "sL_BldgLoss": "777544", "sL_StrLoss": "381220", "sL_NStrLoss": "396324", "sL_ContLoss": "268864", "geom_point": "0101000020E61000003472FD5894C85EC0647648F794A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127872806, 49.252679597000096 ], [ -123.127612606999946, 49.252622191000086 ], [ -123.127409598999932, 49.252618596000062 ], [ -123.127429025999959, 49.252172320000057 ], [ -123.127448696999963, 49.251719805000057 ], [ -123.127843113999958, 49.251739307000015 ], [ -123.12927991399999, 49.251980194000105 ], [ -123.129774802999961, 49.251972707000078 ], [ -123.129960298999919, 49.25197129 ], [ -123.13205280699998, 49.251891786000073 ], [ -123.133698504999941, 49.251818497000066 ], [ -123.134438616999944, 49.251844400000095 ], [ -123.136099197999954, 49.252042586000066 ], [ -123.136725275999936, 49.252068189000113 ], [ -123.137245034, 49.252058598000104 ], [ -123.1382199599999, 49.251974890000035 ], [ -123.138492602000014, 49.251951485000056 ], [ -123.139024800999962, 49.25190578400008 ], [ -123.138938386999911, 49.253151 ], [ -123.138912506999958, 49.254506003000095 ], [ -123.138910306999904, 49.254608608000083 ], [ -123.138907839999916, 49.254660611000119 ], [ -123.138819806999933, 49.256521206000052 ], [ -123.138812330999954, 49.256674669000056 ], [ -123.138793889999974, 49.257053703000096 ], [ -123.138529191999964, 49.257069210000019 ], [ -123.138247499000016, 49.257160799000083 ], [ -123.137868998999977, 49.257392324000087 ], [ -123.137619410999974, 49.257545001000011 ], [ -123.137031886999978, 49.257783390000021 ], [ -123.136307799999912, 49.257942511000124 ], [ -123.136070261999976, 49.257938105000036 ], [ -123.13562064599995, 49.257929790000063 ], [ -123.134403411000036, 49.257907306000043 ], [ -123.134268831999961, 49.257892717000097 ], [ -123.133918985999941, 49.25785479700005 ], [ -123.13361129499998, 49.257788103000017 ], [ -123.132698125999966, 49.257495402000082 ], [ -123.132103893999926, 49.257237365000066 ], [ -123.131803187999978, 49.257106788000044 ], [ -123.131253378999958, 49.256824696000045 ], [ -123.130841700999923, 49.256529990000011 ], [ -123.130259993999985, 49.256008311000045 ], [ -123.129628804999967, 49.255109703000102 ], [ -123.12927108699995, 49.254785798000064 ], [ -123.129245993, 49.254636497000057 ], [ -123.128697215999949, 49.253671601000043 ], [ -123.128550899999951, 49.253472142000192 ], [ -123.128042384999958, 49.252778704000072 ], [ -123.127872806, 49.252679597000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "391983417", "BldgCostT": "265451667", "sL_LossRatio": "0.77210968880362", "sL_AssetLoss": "3279569", "sL_BldgLoss": "2532187", "sL_StrLoss": "1162393", "sL_NStrLoss": "1369794", "sL_ContLoss": "747382", "geom_point": "0101000020E610000065C5707500C85EC05DBB717B17A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124606926999959, 49.252140071000014 ], [ -123.124625413999979, 49.251668906000127 ], [ -123.123957705999928, 49.251656327000056 ], [ -123.122215098999959, 49.251623516000116 ], [ -123.122234519999935, 49.251179511000025 ], [ -123.122254692999945, 49.250719316000108 ], [ -123.122290591999942, 49.2501177 ], [ -123.122306562999967, 49.249640926000076 ], [ -123.122321191999973, 49.249204200000072 ], [ -123.122320009999981, 49.249045689000134 ], [ -123.124709976999938, 49.249106699000073 ], [ -123.12470350400001, 49.249198887000063 ], [ -123.124698586999969, 49.249268510000036 ], [ -123.124712326999912, 49.2492688580001 ], [ -123.127513717999946, 49.249339007000103 ], [ -123.127503243999968, 49.250013089000042 ], [ -123.127490691, 49.250820205000075 ], [ -123.127466651999924, 49.251335707000059 ], [ -123.127448696999963, 49.251719805000057 ], [ -123.127429025999959, 49.252172320000057 ], [ -123.127409598999932, 49.252618596000062 ], [ -123.124589997999948, 49.252571400000086 ], [ -123.124606926999959, 49.252140071000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "308073815", "BldgCostT": "197526091", "sL_LossRatio": "0.746956526595834", "sL_AssetLoss": "2685665", "sL_BldgLoss": "2006075", "sL_StrLoss": "888440", "sL_NStrLoss": "1117635", "sL_ContLoss": "679590", "geom_point": "0101000020E6100000AB7FD7674EC85EC0476CEB65E39F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130653162999977, 49.246361558000082 ], [ -123.132112119999974, 49.246376308000023 ], [ -123.132099614999944, 49.246841869000065 ], [ -123.132085694999944, 49.247359203000023 ], [ -123.132063642999981, 49.247768201000085 ], [ -123.132039085999907, 49.24822360700005 ], [ -123.132021599, 49.248694738000083 ], [ -123.132003798, 49.249173010000121 ], [ -123.131995312999933, 49.249377186000032 ], [ -123.131973871999975, 49.250062343000145 ], [ -123.131953108999966, 49.250727195000103 ], [ -123.13193640899999, 49.251174398000082 ], [ -123.131976140999924, 49.251419228000067 ], [ -123.13205280699998, 49.251891786000073 ], [ -123.129960298999919, 49.25197129 ], [ -123.129774802999961, 49.251972707000078 ], [ -123.12927991399999, 49.251980194000105 ], [ -123.127843113999958, 49.251739307000015 ], [ -123.127448696999963, 49.251719805000057 ], [ -123.127466651999924, 49.251335707000059 ], [ -123.127490691, 49.250820205000075 ], [ -123.127503243999968, 49.250013089000042 ], [ -123.127513717999946, 49.249339007000103 ], [ -123.12750979299993, 49.249136299000064 ], [ -123.12753897499999, 49.248654233000053 ], [ -123.127569488999939, 49.248149710000106 ], [ -123.127600503999929, 49.247226404000109 ], [ -123.127662894999943, 49.246306602000097 ], [ -123.128372228000018, 49.246321512000065 ], [ -123.129252029999947, 49.246340027000066 ], [ -123.129925889, 49.246354205000081 ], [ -123.130653162999977, 49.246361558000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97386333", "BldgCostT": "64953333", "sL_LossRatio": "0.76916305325723", "sL_AssetLoss": "1084848", "sL_BldgLoss": "834425", "sL_StrLoss": "403117", "sL_NStrLoss": "431308", "sL_ContLoss": "250423", "geom_point": "0101000020E61000005C713F1AADC85EC0F483FC64F39F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134438616999944, 49.251844400000095 ], [ -123.133698504999941, 49.251818497000066 ], [ -123.13205280699998, 49.251891786000073 ], [ -123.131976140999924, 49.251419228000067 ], [ -123.13193640899999, 49.251174398000082 ], [ -123.131953108999966, 49.250727195000103 ], [ -123.131973871999975, 49.250062343000145 ], [ -123.131995312999933, 49.249377186000032 ], [ -123.132003798, 49.249173010000121 ], [ -123.132021599, 49.248694738000083 ], [ -123.132039085999907, 49.24822360700005 ], [ -123.132063642999981, 49.247768201000085 ], [ -123.132085694999944, 49.247359203000023 ], [ -123.134493278999969, 49.247443901000082 ], [ -123.134514668999913, 49.246991957000077 ], [ -123.134514431999946, 49.246901996000076 ], [ -123.134500293999949, 49.246758104000087 ], [ -123.134486172999942, 49.246614176000023 ], [ -123.134720023999975, 49.24672185900004 ], [ -123.135325494999947, 49.247044984000119 ], [ -123.135834447, 49.247260271000087 ], [ -123.136592205999975, 49.247354296000033 ], [ -123.136777579999901, 49.247368594000072 ], [ -123.138420192999931, 49.247401662000065 ], [ -123.139168305999959, 49.247416703000049 ], [ -123.13914888, 49.248332190000085 ], [ -123.139126478999955, 49.248776954000043 ], [ -123.139099577999986, 49.249310893000079 ], [ -123.139093996999947, 49.249513511000067 ], [ -123.139074960999963, 49.250180277000098 ], [ -123.139056089999883, 49.250841095000105 ], [ -123.139035597999978, 49.251538391000032 ], [ -123.139024800999962, 49.25190578400008 ], [ -123.138492602000014, 49.251951485000056 ], [ -123.1382199599999, 49.251974890000035 ], [ -123.137245034, 49.252058598000104 ], [ -123.136725275999936, 49.252068189000113 ], [ -123.136099197999954, 49.252042586000066 ], [ -123.134438616999944, 49.251844400000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114312333", "BldgCostT": "75678333", "sL_LossRatio": "0.741338446046276", "sL_AssetLoss": "1757710", "sL_BldgLoss": "1303058", "sL_StrLoss": "601928", "sL_NStrLoss": "701130", "sL_ContLoss": "454652", "geom_point": "0101000020E6100000F0460F11B1C85EC01FC938884E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132099614999944, 49.246841869000065 ], [ -123.132112119999974, 49.246376308000023 ], [ -123.132113526999959, 49.245897282000058 ], [ -123.132115101999943, 49.245371996000095 ], [ -123.132092491999984, 49.245203892000127 ], [ -123.132358656999941, 49.244758364000106 ], [ -123.132674607999931, 49.244229405000056 ], [ -123.132969465999977, 49.243709965000058 ], [ -123.133042800999974, 49.243580800000096 ], [ -123.133110202999958, 49.243179885000067 ], [ -123.13307230599996, 49.242992494000134 ], [ -123.132773013999966, 49.242414293000095 ], [ -123.132501095999942, 49.242137109000105 ], [ -123.132306675999985, 49.241938901000026 ], [ -123.13231048599999, 49.241610303000158 ], [ -123.134598192999945, 49.241697203000044 ], [ -123.136861519999925, 49.241780699000088 ], [ -123.138346260999953, 49.24184520900014 ], [ -123.138553260999956, 49.241854219000111 ], [ -123.139312796999988, 49.241887213000048 ], [ -123.139257311999984, 49.242186606000104 ], [ -123.139234596999984, 49.242821890000101 ], [ -123.139206395999963, 49.24368049400006 ], [ -123.139172704999979, 49.245273887000067 ], [ -123.139161996999974, 49.245446593000047 ], [ -123.13917369499994, 49.246482806000124 ], [ -123.139171151999903, 49.246923521000042 ], [ -123.139168305999959, 49.247416703000049 ], [ -123.138420192999931, 49.247401662000065 ], [ -123.136777579999901, 49.247368594000072 ], [ -123.136592205999975, 49.247354296000033 ], [ -123.135834447, 49.247260271000087 ], [ -123.135325494999947, 49.247044984000119 ], [ -123.134720023999975, 49.24672185900004 ], [ -123.134486172999942, 49.246614176000023 ], [ -123.134500293999949, 49.246758104000087 ], [ -123.134514431999946, 49.246901996000076 ], [ -123.134514668999913, 49.246991957000077 ], [ -123.134493278999969, 49.247443901000082 ], [ -123.132085694999944, 49.247359203000023 ], [ -123.132099614999944, 49.246841869000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108954312", "BldgCostT": "69133191", "sL_LossRatio": "0.721759047021546", "sL_AssetLoss": "1136479", "sL_BldgLoss": "820264", "sL_StrLoss": "400237", "sL_NStrLoss": "420027", "sL_ContLoss": "316215", "geom_point": "0101000020E61000003EC547171DC95EC005EB7BE4C19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.144734075999978, 49.245524820000099 ], [ -123.145480286999884, 49.245534693000117 ], [ -123.145475079999954, 49.245798507000075 ], [ -123.146172887999953, 49.247514009000071 ], [ -123.146123717999899, 49.248912391000054 ], [ -123.146104896999987, 49.249447002000068 ], [ -123.146108796999982, 49.24960648900008 ], [ -123.144631300999947, 49.249580001000012 ], [ -123.144632569999928, 49.249633728000092 ], [ -123.144621651999969, 49.249750276000029 ], [ -123.144608444999932, 49.249930198000058 ], [ -123.144581406999961, 49.250083145000119 ], [ -123.144540578999965, 49.250227129000073 ], [ -123.144526920999965, 49.250254116000114 ], [ -123.144458778999976, 49.250443093000072 ], [ -123.144253936999988, 49.250884143000057 ], [ -123.144198981999978, 49.250884188000029 ], [ -123.143305785999928, 49.250876302000023 ], [ -123.142330151999957, 49.250868520000083 ], [ -123.14143911299999, 49.250860096000082 ], [ -123.139732800000019, 49.250846502000122 ], [ -123.139056089999883, 49.250841095000105 ], [ -123.139074960999963, 49.250180277000098 ], [ -123.139093996999947, 49.249513511000067 ], [ -123.139099577999986, 49.249310893000079 ], [ -123.139126478999955, 49.248776954000043 ], [ -123.13914888, 49.248332190000085 ], [ -123.139168305999959, 49.247416703000049 ], [ -123.139171151999903, 49.246923521000042 ], [ -123.13917369499994, 49.246482806000124 ], [ -123.139161996999974, 49.245446593000047 ], [ -123.139939244999951, 49.245457849000083 ], [ -123.140502569999953, 49.245465986000113 ], [ -123.141631585999932, 49.245482299000059 ], [ -123.14397789399996, 49.245514791000083 ], [ -123.144734075999978, 49.245524820000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90591834", "BldgCostT": "60773334", "sL_LossRatio": "0.720981941648388", "sL_AssetLoss": "1630769", "sL_BldgLoss": "1175755", "sL_StrLoss": "517945", "sL_NStrLoss": "657810", "sL_ContLoss": "455014", "geom_point": "0101000020E610000044A2862514C95EC0A11F70D1079F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139312796999988, 49.241887213000048 ], [ -123.139321615999947, 49.241382230000056 ], [ -123.139330199999961, 49.240891393000034 ], [ -123.139345145999926, 49.240464655000025 ], [ -123.139362607999942, 49.239965396000038 ], [ -123.139377138, 49.239492837000043 ], [ -123.139392787999967, 49.238985318000069 ], [ -123.139417880999943, 49.238547733000111 ], [ -123.139429083, 49.238352601000059 ], [ -123.139448498999954, 49.238013908000049 ], [ -123.14049436199997, 49.238041671000133 ], [ -123.142029683, 49.238082392000138 ], [ -123.142266473999925, 49.238275268000045 ], [ -123.142320114999961, 49.238365521000112 ], [ -123.142432113999988, 49.238553915000097 ], [ -123.142528723999931, 49.238706720000089 ], [ -123.142545202999926, 49.239075104000037 ], [ -123.142544077999929, 49.239264405000021 ], [ -123.142531050999978, 49.239507291000074 ], [ -123.142518041999963, 49.239768169000079 ], [ -123.142482887999947, 49.240021092000042 ], [ -123.142478471999965, 49.240334906000058 ], [ -123.142465107999953, 49.240460882000043 ], [ -123.142452012999968, 49.240685766000141 ], [ -123.142439096999965, 49.240909888000104 ], [ -123.142438934999944, 49.240919658000031 ], [ -123.142425976999959, 49.241189534000064 ], [ -123.142399140999885, 49.241414453000104 ], [ -123.142386114999923, 49.241666326000029 ], [ -123.142356602999939, 49.241916512000046 ], [ -123.143210884999974, 49.241940465000013 ], [ -123.14412211199999, 49.241965996000012 ], [ -123.144805440999903, 49.241977456000029 ], [ -123.145513016999985, 49.241989304000093 ], [ -123.145519310999973, 49.243561284000108 ], [ -123.145480286999884, 49.245534693000117 ], [ -123.144734075999978, 49.245524820000099 ], [ -123.14397789399996, 49.245514791000083 ], [ -123.141631585999932, 49.245482299000059 ], [ -123.140502569999953, 49.245465986000113 ], [ -123.139939244999951, 49.245457849000083 ], [ -123.139161996999974, 49.245446593000047 ], [ -123.139172704999979, 49.245273887000067 ], [ -123.139206395999963, 49.24368049400006 ], [ -123.139234596999984, 49.242821890000101 ], [ -123.139257311999984, 49.242186606000104 ], [ -123.139312796999988, 49.241887213000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101130894", "BldgCostT": "68861523", "sL_LossRatio": "0.749206119802644", "sL_AssetLoss": "1494558", "sL_BldgLoss": "1119732", "sL_StrLoss": "500992", "sL_NStrLoss": "618740", "sL_ContLoss": "374826", "geom_point": "0101000020E6100000EAA87A6479C95EC0C0174FD2B69F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.149696496999979, 49.251246015000049 ], [ -123.148913963999988, 49.251131251000075 ], [ -123.148658578999971, 49.251133993000039 ], [ -123.147916328999912, 49.25114500800003 ], [ -123.14718930199993, 49.251241987000114 ], [ -123.146188014999936, 49.251445194000063 ], [ -123.145616448999945, 49.251538173000029 ], [ -123.145620219999941, 49.251529383000054 ], [ -123.145787756999965, 49.251141868000047 ], [ -123.146004806999954, 49.250280069000084 ], [ -123.146129383999906, 49.249785387000081 ], [ -123.146083732999926, 49.249678785000121 ], [ -123.146108796999982, 49.24960648900008 ], [ -123.146104896999987, 49.249447002000068 ], [ -123.146123717999899, 49.248912391000054 ], [ -123.146172887999953, 49.247514009000071 ], [ -123.145475079999954, 49.245798507000075 ], [ -123.145480286999884, 49.245534693000117 ], [ -123.145519310999973, 49.243561284000108 ], [ -123.145513016999985, 49.241989304000093 ], [ -123.146192425, 49.242001078000037 ], [ -123.146792793999936, 49.242011487000106 ], [ -123.146899360999953, 49.242012734000134 ], [ -123.146887622999913, 49.242325017000049 ], [ -123.146894114999952, 49.242543975000082 ], [ -123.146973267999968, 49.242895034000114 ], [ -123.147343878999919, 49.243786055000044 ], [ -123.14766284199996, 49.244316928000053 ], [ -123.147878494999986, 49.244613818000097 ], [ -123.148618938999945, 49.245506651000014 ], [ -123.149166708999971, 49.246046141000065 ], [ -123.150248175999977, 49.247584929000027 ], [ -123.150946054999963, 49.2484426010001 ], [ -123.151548227999953, 49.249193262000112 ], [ -123.15144002699995, 49.249618631000011 ], [ -123.151792180999905, 49.250090897000078 ], [ -123.15179830999989, 49.250281992000062 ], [ -123.151712016999937, 49.250501301000021 ], [ -123.151664241999967, 49.250561467000047 ], [ -123.151500656999957, 49.250767742000036 ], [ -123.15138432199997, 49.250985305000029 ], [ -123.151154962999954, 49.251380762000018 ], [ -123.150854408999962, 49.251899089000041 ], [ -123.150789576999955, 49.251831798000076 ], [ -123.150301864999932, 49.251497095000104 ], [ -123.149696496999979, 49.251246015000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104657584", "BldgCostT": "71178334", "sL_LossRatio": "0.751517524965733", "sL_AssetLoss": "1378890", "sL_BldgLoss": "1036260", "sL_StrLoss": "498930", "sL_NStrLoss": "537330", "sL_ContLoss": "342630", "geom_point": "0101000020E6100000AE1A429D4BC95EC0979ED943B59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.142452012999968, 49.240685766000141 ], [ -123.142465107999953, 49.240460882000043 ], [ -123.142478471999965, 49.240334906000058 ], [ -123.142482887999947, 49.240021092000042 ], [ -123.142518041999963, 49.239768169000079 ], [ -123.142531050999978, 49.239507291000074 ], [ -123.142544077999929, 49.239264405000021 ], [ -123.142545202999926, 49.239075104000037 ], [ -123.142528723999931, 49.238706720000089 ], [ -123.142432113999988, 49.238553915000097 ], [ -123.142320114999961, 49.238365521000112 ], [ -123.142266473999925, 49.238275268000045 ], [ -123.142029683, 49.238082392000138 ], [ -123.143351586999955, 49.23810409700004 ], [ -123.144265387999909, 49.238119098000105 ], [ -123.146395495999968, 49.23813220400006 ], [ -123.146993389, 49.238144392000031 ], [ -123.148809888999963, 49.238188891000043 ], [ -123.148798821999932, 49.238445397000078 ], [ -123.148789819999962, 49.238653514000134 ], [ -123.148770994999936, 49.239089491000037 ], [ -123.148755831, 49.239535446000069 ], [ -123.148740203, 49.239993902000059 ], [ -123.146984178999944, 49.239969996000092 ], [ -123.14691200499999, 49.24078690000006 ], [ -123.147493318999921, 49.240777900000076 ], [ -123.147867010999974, 49.240812784000042 ], [ -123.147548402, 49.240995743000141 ], [ -123.147191936999917, 49.241316713000032 ], [ -123.147025921999941, 49.241572811000026 ], [ -123.146931692999914, 49.241810409000031 ], [ -123.14689190499999, 49.241831102000084 ], [ -123.146899360999953, 49.242012734000134 ], [ -123.146792793999936, 49.242011487000106 ], [ -123.146192425, 49.242001078000037 ], [ -123.145513016999985, 49.241989304000093 ], [ -123.144805440999903, 49.241977456000029 ], [ -123.14412211199999, 49.241965996000012 ], [ -123.143210884999974, 49.241940465000013 ], [ -123.142356602999939, 49.241916512000046 ], [ -123.142386114999923, 49.241666326000029 ], [ -123.142399140999885, 49.241414453000104 ], [ -123.142425976999959, 49.241189534000064 ], [ -123.142438934999944, 49.240919658000031 ], [ -123.142439096999965, 49.240909888000104 ], [ -123.142452012999968, 49.240685766000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82750500", "BldgCostT": "56070000", "sL_LossRatio": "0.748522867632615", "sL_AssetLoss": "1114829", "sL_BldgLoss": "834475", "sL_StrLoss": "396194", "sL_NStrLoss": "438281", "sL_ContLoss": "280354", "geom_point": "0101000020E6100000991E5E213DC95EC099C3E6CA3D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.148507047999914, 49.234473618000088 ], [ -123.149229577999947, 49.234485195000154 ], [ -123.149211829999928, 49.234955854000134 ], [ -123.14915971, 49.236338010000061 ], [ -123.149103876999931, 49.237762634000084 ], [ -123.14908699199999, 49.238192591000079 ], [ -123.148809888999963, 49.238188891000043 ], [ -123.146993389, 49.238144392000031 ], [ -123.146395495999968, 49.23813220400006 ], [ -123.144265387999909, 49.238119098000105 ], [ -123.143351586999955, 49.23810409700004 ], [ -123.142029683, 49.238082392000138 ], [ -123.14049436199997, 49.238041671000133 ], [ -123.139448498999954, 49.238013908000049 ], [ -123.139510397, 49.237121099000063 ], [ -123.13955668499996, 49.236258500000119 ], [ -123.139588397999987, 49.23536490500009 ], [ -123.139623915999934, 49.234343501000062 ], [ -123.140565918, 49.234352002000044 ], [ -123.141428204999897, 49.234359806000128 ], [ -123.142353146999966, 49.234375583000023 ], [ -123.143334593999938, 49.234392305000021 ], [ -123.144015490999962, 49.234402800000076 ], [ -123.144722595999937, 49.234413694000054 ], [ -123.145526683999933, 49.234426766000077 ], [ -123.146299916999936, 49.23443930500013 ], [ -123.147023652999977, 49.234450359000057 ], [ -123.147668790999944, 49.234460188000057 ], [ -123.148507047999914, 49.234473618000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94055334", "BldgCostT": "62918334", "sL_LossRatio": "0.759208287411246", "sL_AssetLoss": "1054322", "sL_BldgLoss": "800450", "sL_StrLoss": "392870", "sL_NStrLoss": "407580", "sL_ContLoss": "253872", "geom_point": "0101000020E6100000643602D0ACC85EC09171109D339E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130333590999925, 49.235473205000098 ], [ -123.130349387999971, 49.234974403000066 ], [ -123.132512893999959, 49.235043686000097 ], [ -123.132532184999931, 49.234635702000034 ], [ -123.132557694999932, 49.234096297000065 ], [ -123.133356400999944, 49.234124800000075 ], [ -123.134069035999971, 49.234148967000074 ], [ -123.134825001999957, 49.234174593000063 ], [ -123.135633542999955, 49.234202575000076 ], [ -123.136390907999939, 49.234228807000093 ], [ -123.137203315999926, 49.234256703000021 ], [ -123.137993887999926, 49.234282188000122 ], [ -123.13875244499998, 49.23431072600011 ], [ -123.139623915999934, 49.234343501000062 ], [ -123.139588397999987, 49.23536490500009 ], [ -123.13955668499996, 49.236258500000119 ], [ -123.139510397, 49.237121099000063 ], [ -123.139448498999954, 49.238013908000049 ], [ -123.138489106999913, 49.238000906000146 ], [ -123.137870615999987, 49.237992505000108 ], [ -123.137088900999956, 49.237981915000034 ], [ -123.136992252999931, 49.237977359000098 ], [ -123.134693101999986, 49.237869687000142 ], [ -123.134710032999962, 49.237437319000016 ], [ -123.134728909, 49.236956287000048 ], [ -123.132454692999929, 49.236876097000035 ], [ -123.130289977999951, 49.236800496000036 ], [ -123.130304594999927, 49.23636388000002 ], [ -123.13032061299999, 49.235884307000113 ], [ -123.130333590999925, 49.235473205000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90934916", "BldgCostT": "56081666", "sL_LossRatio": "0.667687338164125", "sL_AssetLoss": "2069226", "sL_BldgLoss": "1381596", "sL_StrLoss": "609816", "sL_NStrLoss": "771780", "sL_ContLoss": "687630", "geom_point": "0101000020E61000009F8855EE8BC85EC0A161086BA99E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127921647999955, 49.238537411000046 ], [ -123.127951491999937, 49.237648901000142 ], [ -123.128721487999911, 49.237674227000056 ], [ -123.130253511999982, 49.237724593000102 ], [ -123.130270285999956, 49.237299441000097 ], [ -123.130289977999951, 49.236800496000036 ], [ -123.132454692999929, 49.236876097000035 ], [ -123.134728909, 49.236956287000048 ], [ -123.134710032999962, 49.237437319000016 ], [ -123.134693101999986, 49.237869687000142 ], [ -123.136992252999931, 49.237977359000098 ], [ -123.137088900999956, 49.237981915000034 ], [ -123.137870615999987, 49.237992505000108 ], [ -123.138489106999913, 49.238000906000146 ], [ -123.139448498999954, 49.238013908000049 ], [ -123.139429083, 49.238352601000059 ], [ -123.139417880999943, 49.238547733000111 ], [ -123.139392787999967, 49.238985318000069 ], [ -123.139377138, 49.239492837000043 ], [ -123.139362607999942, 49.239965396000038 ], [ -123.139345145999926, 49.240464655000025 ], [ -123.139330199999961, 49.240891393000034 ], [ -123.139321615999947, 49.241382230000056 ], [ -123.139312796999988, 49.241887213000048 ], [ -123.138553260999956, 49.241854219000111 ], [ -123.138346260999953, 49.24184520900014 ], [ -123.136861519999925, 49.241780699000088 ], [ -123.134598192999945, 49.241697203000044 ], [ -123.13231048599999, 49.241610303000158 ], [ -123.130806802, 49.241553076000081 ], [ -123.130111778999961, 49.241526603000075 ], [ -123.129432907999927, 49.241500211000087 ], [ -123.128526091999959, 49.241464981000099 ], [ -123.127824183999977, 49.24143769800002 ], [ -123.127838609999955, 49.241008328000106 ], [ -123.12785584199996, 49.240495432000053 ], [ -123.127889415999931, 49.239497052000075 ], [ -123.127921647999955, 49.238537411000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259140450", "BldgCostT": "175042213", "sL_LossRatio": "0.788223415147384", "sL_AssetLoss": "3535660", "sL_BldgLoss": "2786890", "sL_StrLoss": "1315570", "sL_NStrLoss": "1471320", "sL_ContLoss": "748770", "geom_point": "0101000020E6100000BEB077774BC85EC0BE13FDEB269E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127979705999962, 49.236749793000143 ], [ -123.128058316999983, 49.234459803000085 ], [ -123.128073888999936, 49.234006736000026 ], [ -123.128075871999926, 49.233955875000078 ], [ -123.128078482999939, 49.233887966000083 ], [ -123.128874807000031, 49.233918504000023 ], [ -123.130382242999957, 49.2339763310001 ], [ -123.130525990999914, 49.233982840000131 ], [ -123.130678156999949, 49.234031024000039 ], [ -123.13185213, 49.234073081000126 ], [ -123.132557694999932, 49.234096297000065 ], [ -123.132532184999931, 49.234635702000034 ], [ -123.132512893999959, 49.235043686000097 ], [ -123.130349387999971, 49.234974403000066 ], [ -123.130333590999925, 49.235473205000098 ], [ -123.13032061299999, 49.235884307000113 ], [ -123.130304594999927, 49.23636388000002 ], [ -123.130289977999951, 49.236800496000036 ], [ -123.130270285999956, 49.237299441000097 ], [ -123.130253511999982, 49.237724593000102 ], [ -123.128721487999911, 49.237674227000056 ], [ -123.127951491999937, 49.237648901000142 ], [ -123.127979705999962, 49.236749793000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102090417", "BldgCostT": "69671667", "sL_LossRatio": "0.734419401066717", "sL_AssetLoss": "2084339", "sL_BldgLoss": "1530779", "sL_StrLoss": "666748", "sL_NStrLoss": "864031", "sL_ContLoss": "553560", "geom_point": "0101000020E6100000231FBB0B54C85EC001DEC0EC379F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12779328499991, 49.242380896000036 ], [ -123.127824183999977, 49.24143769800002 ], [ -123.128526091999959, 49.241464981000099 ], [ -123.129432907999927, 49.241500211000087 ], [ -123.130111778999961, 49.241526603000075 ], [ -123.130806802, 49.241553076000081 ], [ -123.13231048599999, 49.241610303000158 ], [ -123.132306675999985, 49.241938901000026 ], [ -123.132501095999942, 49.242137109000105 ], [ -123.132773013999966, 49.242414293000095 ], [ -123.13307230599996, 49.242992494000134 ], [ -123.133110202999958, 49.243179885000067 ], [ -123.133042800999974, 49.243580800000096 ], [ -123.132969465999977, 49.243709965000058 ], [ -123.132674607999931, 49.244229405000056 ], [ -123.132358656999941, 49.244758364000106 ], [ -123.132092491999984, 49.245203892000127 ], [ -123.132115101999943, 49.245371996000095 ], [ -123.132113526999959, 49.245897282000058 ], [ -123.132112119999974, 49.246376308000023 ], [ -123.130653162999977, 49.246361558000082 ], [ -123.129925889, 49.246354205000081 ], [ -123.129252029999947, 49.246340027000066 ], [ -123.128372228000018, 49.246321512000065 ], [ -123.127662894999943, 49.246306602000097 ], [ -123.12765011, 49.2454046020001 ], [ -123.127659527999967, 49.244498701000047 ], [ -123.127668811999925, 49.244161225000042 ], [ -123.127673794999936, 49.243981240000089 ], [ -123.127684916999925, 49.243577903000087 ], [ -123.12779328499991, 49.242380896000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184000889", "BldgCostT": "104745600", "sL_LossRatio": "0.633117602799814", "sL_AssetLoss": "3203070", "sL_BldgLoss": "2027920", "sL_StrLoss": "777830", "sL_NStrLoss": "1250090", "sL_ContLoss": "1175150", "geom_point": "0101000020E610000015CB1DCBF5C75EC0B809ACF35A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12470350400001, 49.249198887000063 ], [ -123.124709976999938, 49.249106699000073 ], [ -123.122320009999981, 49.249045689000134 ], [ -123.122348596000023, 49.248525764000128 ], [ -123.122373787999919, 49.248067082000077 ], [ -123.12239064399995, 49.247590469000038 ], [ -123.122406494999922, 49.247142002000032 ], [ -123.122423619999964, 49.246672586000095 ], [ -123.122439883999959, 49.246226804000045 ], [ -123.12043659599999, 49.246199486000137 ], [ -123.120449815999947, 49.245729521000065 ], [ -123.120462798999966, 49.245268801000066 ], [ -123.120478287000012, 49.244811694000127 ], [ -123.120494199999939, 49.24434180900009 ], [ -123.120518189999984, 49.243839844000071 ], [ -123.120545005999972, 49.243278500000031 ], [ -123.120563362999974, 49.242724847000012 ], [ -123.120579817999968, 49.24223089 ], [ -123.12058912099999, 49.242050978000037 ], [ -123.120605427999962, 49.241735651000063 ], [ -123.12063482799999, 49.241168593000033 ], [ -123.123629393999963, 49.241281801000042 ], [ -123.124975105999951, 49.241323998000041 ], [ -123.127110439999967, 49.241409220000023 ], [ -123.127824183999977, 49.24143769800002 ], [ -123.12779328499991, 49.242380896000036 ], [ -123.127684916999925, 49.243577903000087 ], [ -123.127673794999936, 49.243981240000089 ], [ -123.127668811999925, 49.244161225000042 ], [ -123.127659527999967, 49.244498701000047 ], [ -123.12765011, 49.2454046020001 ], [ -123.127662894999943, 49.246306602000097 ], [ -123.127600503999929, 49.247226404000109 ], [ -123.127569488999939, 49.248149710000106 ], [ -123.12753897499999, 49.248654233000053 ], [ -123.12750979299993, 49.249136299000064 ], [ -123.127513717999946, 49.249339007000103 ], [ -123.124712326999912, 49.2492688580001 ], [ -123.124698586999969, 49.249268510000036 ], [ -123.12470350400001, 49.249198887000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157601720", "BldgCostT": "105955413", "sL_LossRatio": "0.81732750879569", "sL_AssetLoss": "1086896", "sL_BldgLoss": "888350", "sL_StrLoss": "458100", "sL_NStrLoss": "430250", "sL_ContLoss": "198546", "geom_point": "0101000020E61000009E13D62192C75EC0C10F31D2499F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118335928999954, 49.241099539000125 ], [ -123.118337486999934, 49.241081115000021 ], [ -123.118536087999985, 49.241089111000079 ], [ -123.119291852999979, 49.24111773900006 ], [ -123.12063482799999, 49.241168593000033 ], [ -123.120605427999962, 49.241735651000063 ], [ -123.12058912099999, 49.242050978000037 ], [ -123.120579817999968, 49.24223089 ], [ -123.120563362999974, 49.242724847000012 ], [ -123.120545005999972, 49.243278500000031 ], [ -123.120518189999984, 49.243839844000071 ], [ -123.120494199999939, 49.24434180900009 ], [ -123.120478287000012, 49.244811694000127 ], [ -123.120462798999966, 49.245268801000066 ], [ -123.120449815999947, 49.245729521000065 ], [ -123.12043659599999, 49.246199486000137 ], [ -123.118536902999949, 49.246162285000032 ], [ -123.118518010999978, 49.246640383000106 ], [ -123.118500803999922, 49.247076505000088 ], [ -123.116570051999958, 49.247046605000065 ], [ -123.115699189999972, 49.247033094000102 ], [ -123.115484884999958, 49.247029184000063 ], [ -123.115272599999969, 49.247025295000114 ], [ -123.115306795999985, 49.246099286000103 ], [ -123.115307486999882, 49.24609026600006 ], [ -123.115378911999983, 49.245159998000098 ], [ -123.115381842999938, 49.245151156000077 ], [ -123.115437989999961, 49.24498318900001 ], [ -123.115683380999926, 49.244614107000089 ], [ -123.11615269899994, 49.244198807000025 ], [ -123.117201886999936, 49.243600805 ], [ -123.117764985999955, 49.243224086000055 ], [ -123.118150372999978, 49.24265609600014 ], [ -123.11824263599999, 49.242160789000138 ], [ -123.118247217999965, 49.24213620200004 ], [ -123.118335928999954, 49.241099539000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106505719", "BldgCostT": "67270412", "sL_LossRatio": "0.723311838016639", "sL_AssetLoss": "1316876", "sL_BldgLoss": "952512", "sL_StrLoss": "433046", "sL_NStrLoss": "519466", "sL_ContLoss": "364364", "geom_point": "0101000020E6100000124D45CF92C75EC07CE3E64CC19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11619428299997, 49.250602496000027 ], [ -123.116209284999968, 49.250028298000132 ], [ -123.11607150899998, 49.250039225000137 ], [ -123.11536052699995, 49.250095650000105 ], [ -123.115383731999913, 49.249236038000014 ], [ -123.115289532999952, 49.249138930000122 ], [ -123.115295119999928, 49.249049014000086 ], [ -123.115298933999966, 49.248921223000124 ], [ -123.115236490999948, 49.247959325000096 ], [ -123.115272599999969, 49.247025295000114 ], [ -123.115484884999958, 49.247029184000063 ], [ -123.115699189999972, 49.247033094000102 ], [ -123.116570051999958, 49.247046605000065 ], [ -123.118500803999922, 49.247076505000088 ], [ -123.118518010999978, 49.246640383000106 ], [ -123.118536902999949, 49.246162285000032 ], [ -123.12043659599999, 49.246199486000137 ], [ -123.122439883999959, 49.246226804000045 ], [ -123.122423619999964, 49.246672586000095 ], [ -123.122406494999922, 49.247142002000032 ], [ -123.12239064399995, 49.247590469000038 ], [ -123.122373787999919, 49.248067082000077 ], [ -123.12041478499999, 49.248032790000124 ], [ -123.11846419799997, 49.247997903000076 ], [ -123.118441325999981, 49.248475442000029 ], [ -123.118417935999943, 49.248963140000079 ], [ -123.118411757999965, 49.249107104000053 ], [ -123.118391842999955, 49.249572730000096 ], [ -123.118372201999961, 49.250031991000085 ], [ -123.118354810999918, 49.250644106000067 ], [ -123.116840837999973, 49.25061494700001 ], [ -123.11619428299997, 49.250602496000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99383334", "BldgCostT": "65708334", "sL_LossRatio": "0.738983347453741", "sL_AssetLoss": "1188587", "sL_BldgLoss": "878346", "sL_StrLoss": "413990", "sL_NStrLoss": "464356", "sL_ContLoss": "310241", "geom_point": "0101000020E6100000CF03D4ABB3C75EC0FF25B1BDF99F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12041478499999, 49.248032790000124 ], [ -123.122373787999919, 49.248067082000077 ], [ -123.122348596000023, 49.248525764000128 ], [ -123.122320009999981, 49.249045689000134 ], [ -123.122321191999973, 49.249204200000072 ], [ -123.122306562999967, 49.249640926000076 ], [ -123.122290591999942, 49.2501177 ], [ -123.122254692999945, 49.250719316000108 ], [ -123.122234519999935, 49.251179511000025 ], [ -123.122215098999959, 49.251623516000116 ], [ -123.120284921999925, 49.251587404000105 ], [ -123.118321788999978, 49.251551106000136 ], [ -123.118338126999944, 49.251102245000041 ], [ -123.118354810999918, 49.250644106000067 ], [ -123.118372201999961, 49.250031991000085 ], [ -123.118391842999955, 49.249572730000096 ], [ -123.118411757999965, 49.249107104000053 ], [ -123.118417935999943, 49.248963140000079 ], [ -123.118441325999981, 49.248475442000029 ], [ -123.11846419799997, 49.247997903000076 ], [ -123.12041478499999, 49.248032790000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284349200", "BldgCostT": "193647213", "sL_LossRatio": "0.785221610717755", "sL_AssetLoss": "2579794", "sL_BldgLoss": "2025710", "sL_StrLoss": "914440", "sL_NStrLoss": "1111270", "sL_ContLoss": "554084", "geom_point": "0101000020E61000007E6A47D478C75EC03F71A5434CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115325288999941, 49.251214289000124 ], [ -123.11536052699995, 49.250095650000105 ], [ -123.11607150899998, 49.250039225000137 ], [ -123.116209284999968, 49.250028298000132 ], [ -123.11619428299997, 49.250602496000027 ], [ -123.116840837999973, 49.25061494700001 ], [ -123.118354810999918, 49.250644106000067 ], [ -123.118338126999944, 49.251102245000041 ], [ -123.118321788999978, 49.251551106000136 ], [ -123.118305127999989, 49.251993139000149 ], [ -123.118287802999959, 49.252452786000084 ], [ -123.118272193999957, 49.252919330000047 ], [ -123.118257408, 49.253361700000049 ], [ -123.118240262999933, 49.253818516000145 ], [ -123.11822380299995, 49.254257098000025 ], [ -123.11620960499999, 49.254223083000049 ], [ -123.116000595999978, 49.25420400700007 ], [ -123.11532450699994, 49.254033709000097 ], [ -123.115210796000014, 49.253984697000135 ], [ -123.115245484999932, 49.253006494000012 ], [ -123.115273396999925, 49.252092993000069 ], [ -123.115325288999941, 49.251214289000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171980257", "BldgCostT": "111048458", "sL_LossRatio": "0.727155371534561", "sL_AssetLoss": "1863797", "sL_BldgLoss": "1355270", "sL_StrLoss": "592750", "sL_NStrLoss": "762520", "sL_ContLoss": "508527", "geom_point": "0101000020E610000061EFAC7A4CC75EC08104B5AD20A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114706250999944, 49.249038695000053 ], [ -123.115295119999928, 49.249049014000086 ], [ -123.115289532999952, 49.249138930000122 ], [ -123.115383731999913, 49.249236038000014 ], [ -123.11536052699995, 49.250095650000105 ], [ -123.115325288999941, 49.251214289000124 ], [ -123.115273396999925, 49.252092993000069 ], [ -123.115245484999932, 49.253006494000012 ], [ -123.114509472999927, 49.252975770000091 ], [ -123.112670094999956, 49.252898910000035 ], [ -123.11269039599992, 49.25244833100006 ], [ -123.112710008999926, 49.252013598000168 ], [ -123.112732549999976, 49.251549142000059 ], [ -123.112753694, 49.251113991000118 ], [ -123.11277786199993, 49.250577718000073 ], [ -123.112800806999928, 49.250069494000101 ], [ -123.112827151999937, 49.249534794000034 ], [ -123.112853224999924, 49.249006198000117 ], [ -123.114706250999944, 49.249038695000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159079644", "BldgCostT": "108056523", "sL_LossRatio": "0.783794738264266", "sL_AssetLoss": "1628360", "sL_BldgLoss": "1276300", "sL_StrLoss": "594190", "sL_NStrLoss": "682110", "sL_ContLoss": "352060", "geom_point": "0101000020E6100000EC74E63F20C75EC042F431401EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.112150712999963, 49.24899384600004 ], [ -123.112853224999924, 49.249006198000117 ], [ -123.112827151999937, 49.249534794000034 ], [ -123.112800806999928, 49.250069494000101 ], [ -123.11277786199993, 49.250577718000073 ], [ -123.112753694, 49.251113991000118 ], [ -123.112732549999976, 49.251549142000059 ], [ -123.112710008999926, 49.252013598000168 ], [ -123.11269039599992, 49.25244833100006 ], [ -123.112670094999956, 49.252898910000035 ], [ -123.109881090999977, 49.252846697000066 ], [ -123.10987606599997, 49.25237915900005 ], [ -123.10987159599992, 49.251961910000034 ], [ -123.109891534999988, 49.251497123000028 ], [ -123.109911089999983, 49.251041513000061 ], [ -123.109935857999943, 49.250535257000088 ], [ -123.109961301999945, 49.250014184000115 ], [ -123.10998575699989, 49.249490542000053 ], [ -123.11001069299995, 49.248956204000066 ], [ -123.112150712999963, 49.24899384600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245870811", "BldgCostT": "163133190", "sL_LossRatio": "0.763649726175706", "sL_AssetLoss": "2277738", "sL_BldgLoss": "1739394", "sL_StrLoss": "765890", "sL_NStrLoss": "973504", "sL_ContLoss": "538344", "geom_point": "0101000020E61000005E41DB8333C75EC03F727BB47EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10979350599996, 49.254760305000097 ], [ -123.109813441999933, 49.254322491000025 ], [ -123.109834905, 49.253851598000054 ], [ -123.109856673999914, 49.253378030000128 ], [ -123.109881090999977, 49.252846697000066 ], [ -123.112670094999956, 49.252898910000035 ], [ -123.114509472999927, 49.252975770000091 ], [ -123.115245484999932, 49.253006494000012 ], [ -123.115210796000014, 49.253984697000135 ], [ -123.115160501999966, 49.254903913000071 ], [ -123.114458406999987, 49.254879730000027 ], [ -123.112581006999946, 49.254815104000016 ], [ -123.10979350599996, 49.254760305000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93329342", "BldgCostT": "55269118", "sL_LossRatio": "0.649569495613322", "sL_AssetLoss": "1506721", "sL_BldgLoss": "978720", "sL_StrLoss": "416740", "sL_NStrLoss": "561980", "sL_ContLoss": "528001", "geom_point": "0101000020E61000003AD441C139C75EC0361B5366B9A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114383100999987, 49.256896163000121 ], [ -123.113540487999913, 49.256834200000078 ], [ -123.113172812999949, 49.256827891000043 ], [ -123.11248679099999, 49.256814998000081 ], [ -123.112510143999941, 49.256307525000068 ], [ -123.112533621999958, 49.255798407000086 ], [ -123.109744386999949, 49.255746202000097 ], [ -123.109767781999921, 49.255276524000053 ], [ -123.10979350599996, 49.254760305000097 ], [ -123.112581006999946, 49.254815104000016 ], [ -123.114458406999987, 49.254879730000027 ], [ -123.115160501999966, 49.254903913000071 ], [ -123.115114190999989, 49.255869218000029 ], [ -123.115053399999979, 49.256913296000064 ], [ -123.114541398999947, 49.256907808000093 ], [ -123.114383100999987, 49.256896163000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "442190303", "BldgCostT": "297268746", "sL_LossRatio": "0.757478151791458", "sL_AssetLoss": "2264831", "sL_BldgLoss": "1715560", "sL_StrLoss": "782360", "sL_NStrLoss": "933200", "sL_ContLoss": "549271", "geom_point": "0101000020E610000039F8E2280CC75EC0C9E81E44F8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109609713999959, 49.258592583000038 ], [ -123.109492586999949, 49.258531809000075 ], [ -123.107028798999977, 49.258500896000065 ], [ -123.107048028999927, 49.258048871000028 ], [ -123.107067303999941, 49.257596683000102 ], [ -123.105133512999927, 49.257570893000057 ], [ -123.105152599999897, 49.257079410000102 ], [ -123.105169707999934, 49.256639598000099 ], [ -123.107107501999963, 49.256688002000033 ], [ -123.109699501999984, 49.256753805000052 ], [ -123.111183300000022, 49.256791793000097 ], [ -123.11248679099999, 49.256814998000081 ], [ -123.113172812999949, 49.256827891000043 ], [ -123.113540487999913, 49.256834200000078 ], [ -123.114383100999987, 49.256896163000121 ], [ -123.114541398999947, 49.256907808000093 ], [ -123.115053399999979, 49.256913296000064 ], [ -123.115046129999939, 49.257339290000061 ], [ -123.115037817999905, 49.257827188000071 ], [ -123.113096109999944, 49.257795107000049 ], [ -123.113086217, 49.258259023000058 ], [ -123.113076795999959, 49.258701601000077 ], [ -123.111111697999945, 49.258669695000037 ], [ -123.109800418999967, 49.258661601000014 ], [ -123.109609713999959, 49.258592583000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108494835", "BldgCostT": "73348335", "sL_LossRatio": "0.787737729305017", "sL_AssetLoss": "973376", "sL_BldgLoss": "766765", "sL_StrLoss": "344530", "sL_NStrLoss": "422235", "sL_ContLoss": "206611", "geom_point": "0101000020E6100000AE3EF430F6C65EC08E66C825CCA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109744386999949, 49.255746202000097 ], [ -123.112533621999958, 49.255798407000086 ], [ -123.112510143999941, 49.256307525000068 ], [ -123.11248679099999, 49.256814998000081 ], [ -123.111183300000022, 49.256791793000097 ], [ -123.109699501999984, 49.256753805000052 ], [ -123.107107501999963, 49.256688002000033 ], [ -123.105169707999934, 49.256639598000099 ], [ -123.104947380999931, 49.256635393000074 ], [ -123.104987394999952, 49.255708715000019 ], [ -123.105130889999913, 49.255675715000059 ], [ -123.107151404999939, 49.255697389 ], [ -123.109744386999949, 49.255746202000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104115307", "BldgCostT": "66663641", "sL_LossRatio": "0.711125436057621", "sL_AssetLoss": "1386858", "sL_BldgLoss": "986230", "sL_StrLoss": "435560", "sL_NStrLoss": "550670", "sL_ContLoss": "400628", "geom_point": "0101000020E61000001DA8B5FED0C65EC0C2ADE542A3A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.107232603999975, 49.253799908000126 ], [ -123.109834905, 49.253851598000054 ], [ -123.109813441999933, 49.254322491000025 ], [ -123.10979350599996, 49.254760305000097 ], [ -123.109767781999921, 49.255276524000053 ], [ -123.109744386999949, 49.255746202000097 ], [ -123.107151404999939, 49.255697389 ], [ -123.105130889999913, 49.255675715000059 ], [ -123.104987394999952, 49.255708715000019 ], [ -123.104947380999931, 49.256635393000074 ], [ -123.103243193999944, 49.256606805000146 ], [ -123.103269911999988, 49.256145469000082 ], [ -123.103295205000038, 49.255708398000117 ], [ -123.10335829899995, 49.25463178399999 ], [ -123.104000684999917, 49.254637402000142 ], [ -123.104740766999967, 49.254655330000048 ], [ -123.105029320999961, 49.254662299000074 ], [ -123.104803489999981, 49.254235685000076 ], [ -123.104783598999958, 49.254198088000052 ], [ -123.104816779999922, 49.253775606000076 ], [ -123.107232603999975, 49.253799908000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116570053", "BldgCostT": "75213746", "sL_LossRatio": "0.731746113951303", "sL_AssetLoss": "1351630", "sL_BldgLoss": "989050", "sL_StrLoss": "469500", "sL_NStrLoss": "519550", "sL_ContLoss": "362580", "geom_point": "0101000020E61000009EB6A1BDD5C65EC02CBF4EE25AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104816163999971, 49.253292399000038 ], [ -123.104815486999954, 49.252761302000081 ], [ -123.104216037999905, 49.252753789000103 ], [ -123.102855802999954, 49.252736706000114 ], [ -123.102868469999947, 49.252278022000048 ], [ -123.10288090499995, 49.251828488000029 ], [ -123.104269633999976, 49.251858184000113 ], [ -123.104856010999981, 49.251870705000037 ], [ -123.107302079999954, 49.25191470900009 ], [ -123.10987159599992, 49.251961910000034 ], [ -123.10987606599997, 49.25237915900005 ], [ -123.109881090999977, 49.252846697000066 ], [ -123.109856673999914, 49.253378030000128 ], [ -123.109834905, 49.253851598000054 ], [ -123.107232603999975, 49.253799908000126 ], [ -123.104816779999922, 49.253775606000076 ], [ -123.104816163999971, 49.253292399000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "485116842", "BldgCostT": "323736793", "sL_LossRatio": "0.73268800893033", "sL_AssetLoss": "3244673", "sL_BldgLoss": "2377333", "sL_StrLoss": "1052680", "sL_NStrLoss": "1324653", "sL_ContLoss": "867340", "geom_point": "0101000020E6100000FF63C68091C65EC05BC9650E8FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10123597499998, 49.255294501000023 ], [ -123.101006690999938, 49.254786715000115 ], [ -123.100752592, 49.254787008000051 ], [ -123.100764894999884, 49.254480212000061 ], [ -123.100844011999982, 49.25437970200003 ], [ -123.100865995999968, 49.253873116000065 ], [ -123.100874680999979, 49.253711205000101 ], [ -123.10092439099995, 49.252982911000103 ], [ -123.100937396999925, 49.252708500000068 ], [ -123.10150863899996, 49.252716895000034 ], [ -123.102855802999954, 49.252736706000114 ], [ -123.104216037999905, 49.252753789000103 ], [ -123.104815486999954, 49.252761302000081 ], [ -123.104816163999971, 49.253292399000038 ], [ -123.104816779999922, 49.253775606000076 ], [ -123.104783598999958, 49.254198088000052 ], [ -123.104803489999981, 49.254235685000076 ], [ -123.105029320999961, 49.254662299000074 ], [ -123.104740766999967, 49.254655330000048 ], [ -123.104000684999917, 49.254637402000142 ], [ -123.10335829899995, 49.25463178399999 ], [ -123.103295205000038, 49.255708398000117 ], [ -123.103269911999988, 49.256145469000082 ], [ -123.103243193999944, 49.256606805000146 ], [ -123.102039830999928, 49.256590191000015 ], [ -123.101238098999914, 49.256579113000079 ], [ -123.101268005999984, 49.255683590000054 ], [ -123.10123597499998, 49.255294501000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "331763955", "BldgCostT": "214144713", "sL_LossRatio": "0.713966938597084", "sL_AssetLoss": "3653263", "sL_BldgLoss": "2608309", "sL_StrLoss": "1149860", "sL_NStrLoss": "1458449", "sL_ContLoss": "1044954", "geom_point": "0101000020E61000003AD26ACC94C65EC0460E96B912A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103194509, 49.24880579100008 ], [ -123.104194808999949, 49.24882100000012 ], [ -123.104271908999976, 49.248860903000036 ], [ -123.104991684999945, 49.248881089000086 ], [ -123.104980284999939, 49.249388617000101 ], [ -123.104976221999948, 49.24956979300007 ], [ -123.104968288999913, 49.249916301000091 ], [ -123.10493757299993, 49.250442172000071 ], [ -123.104922853999966, 49.250694005000113 ], [ -123.104906723999974, 49.25097039200007 ], [ -123.104881282999898, 49.251421861000068 ], [ -123.104856010999981, 49.251870705000037 ], [ -123.104269633999976, 49.251858184000113 ], [ -123.10288090499995, 49.251828488000029 ], [ -123.102868469999947, 49.252278022000048 ], [ -123.102855802999954, 49.252736706000114 ], [ -123.10150863899996, 49.252716895000034 ], [ -123.100937396999925, 49.252708500000068 ], [ -123.1009370099999, 49.252540231000104 ], [ -123.100935978999956, 49.25207080600012 ], [ -123.100938993999975, 49.25180330600012 ], [ -123.10097230400001, 49.25116019200015 ], [ -123.100981807999986, 49.250964986000099 ], [ -123.101012606999944, 49.250251511000059 ], [ -123.101042277999937, 49.249511898000051 ], [ -123.101050510999954, 49.249359801000075 ], [ -123.101070692999954, 49.248771298000023 ], [ -123.101680729999941, 49.248781227000038 ], [ -123.103194509, 49.24880579100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79704667", "BldgCostT": "46221667", "sL_LossRatio": "0.63988774130122", "sL_AssetLoss": "1063971", "sL_BldgLoss": "680822", "sL_StrLoss": "252300", "sL_NStrLoss": "428522", "sL_ContLoss": "383149", "geom_point": "0101000020E6100000C1119CE163C65EC07F834078FE9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100471404999936, 49.248763290000056 ], [ -123.101070692999954, 49.248771298000023 ], [ -123.101050510999954, 49.249359801000075 ], [ -123.101042277999937, 49.249511898000051 ], [ -123.101012606999944, 49.250251511000059 ], [ -123.100981807999986, 49.250964986000099 ], [ -123.10097230400001, 49.25116019200015 ], [ -123.10035153299999, 49.251156629000057 ], [ -123.098628709999957, 49.251146695000081 ], [ -123.09864473, 49.250698168000142 ], [ -123.09866150799995, 49.250227889000051 ], [ -123.098677476999967, 49.249789501000087 ], [ -123.098694305999942, 49.249328884000072 ], [ -123.098713320999948, 49.248739403000073 ], [ -123.09907417499997, 49.248744600000116 ], [ -123.100471404999936, 49.248763290000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249801684", "BldgCostT": "163154571", "sL_LossRatio": "0.721448372026632", "sL_AssetLoss": "2816293", "sL_BldgLoss": "2031810", "sL_StrLoss": "855920", "sL_NStrLoss": "1175890", "sL_ContLoss": "784483", "geom_point": "0101000020E61000006E4EC2D884C65EC06A8B197EC39F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09907417499997, 49.248744600000116 ], [ -123.099096374999959, 49.248212907000067 ], [ -123.099123996999978, 49.247552498000111 ], [ -123.10048930399999, 49.247571092000072 ], [ -123.101134511999973, 49.247574099000047 ], [ -123.101150600999972, 49.247228599000046 ], [ -123.10177224499995, 49.247241862000116 ], [ -123.103261317999937, 49.247273599000081 ], [ -123.103243938, 49.247636092000121 ], [ -123.103224907999973, 49.248033807000105 ], [ -123.104412204999974, 49.248063322000114 ], [ -123.105034888999953, 49.248078800000052 ], [ -123.10502173499999, 49.248327255000092 ], [ -123.104996301999932, 49.248807297000099 ], [ -123.104993140999966, 49.248858008000049 ], [ -123.104991684999945, 49.248881089000086 ], [ -123.104271908999976, 49.248860903000036 ], [ -123.104194808999949, 49.24882100000012 ], [ -123.103194509, 49.24880579100008 ], [ -123.101680729999941, 49.248781227000038 ], [ -123.101070692999954, 49.248771298000023 ], [ -123.100471404999936, 49.248763290000056 ], [ -123.09907417499997, 49.248744600000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120913561", "BldgCostT": "72362205", "sL_LossRatio": "0.650557839914973", "sL_AssetLoss": "2036068", "sL_BldgLoss": "1324580", "sL_StrLoss": "606510", "sL_NStrLoss": "718070", "sL_ContLoss": "711488", "geom_point": "0101000020E6100000D6764CDD55C65EC07D37F5059D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097342540999989, 49.246066292000108 ], [ -123.097368592999914, 49.245646897000036 ], [ -123.098005227999948, 49.24566498800008 ], [ -123.098585884000016, 49.245681501000078 ], [ -123.099200588999949, 49.245689912000053 ], [ -123.099885305999948, 49.245699294000076 ], [ -123.100582308999961, 49.24570909500008 ], [ -123.101260911999958, 49.245727287000093 ], [ -123.10124850499993, 49.245970191000012 ], [ -123.101150600999972, 49.247228599000046 ], [ -123.101134511999973, 49.247574099000047 ], [ -123.10048930399999, 49.247571092000072 ], [ -123.099123996999978, 49.247552498000111 ], [ -123.099096374999959, 49.248212907000067 ], [ -123.09907417499997, 49.248744600000116 ], [ -123.098713320999948, 49.248739403000073 ], [ -123.097177716999951, 49.24872060100008 ], [ -123.097203501999928, 49.248305291000079 ], [ -123.097250412999983, 49.247549847000066 ], [ -123.097342540999989, 49.246066292000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299973386", "BldgCostT": "203252079", "sL_LossRatio": "0.753431469845672", "sL_AssetLoss": "2302439", "sL_BldgLoss": "1734730", "sL_StrLoss": "755600", "sL_NStrLoss": "979130", "sL_ContLoss": "567709", "geom_point": "0101000020E61000000A77F52AB2C65EC00AD42845A79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10502173499999, 49.248327255000092 ], [ -123.105034888999953, 49.248078800000052 ], [ -123.104412204999974, 49.248063322000114 ], [ -123.103224907999973, 49.248033807000105 ], [ -123.103243938, 49.247636092000121 ], [ -123.103261317999937, 49.247273599000081 ], [ -123.10177224499995, 49.247241862000116 ], [ -123.101150600999972, 49.247228599000046 ], [ -123.10124850499993, 49.245970191000012 ], [ -123.101882014999973, 49.245981423000032 ], [ -123.102535182999986, 49.245992998000062 ], [ -123.10320230499994, 49.246010036000037 ], [ -123.10391310699994, 49.246028192000104 ], [ -123.104451776999966, 49.24604190600008 ], [ -123.10514440599998, 49.246059507000076 ], [ -123.105122890999951, 49.246447393000054 ], [ -123.105100806999971, 49.246845599000054 ], [ -123.107392945999933, 49.246898862000087 ], [ -123.10761848099996, 49.246904107000034 ], [ -123.107574508999974, 49.247040616000049 ], [ -123.107523189999981, 49.247199703000057 ], [ -123.107499614999981, 49.24779898800012 ], [ -123.107475606999941, 49.248360777000023 ], [ -123.107454812999933, 49.248848101000092 ], [ -123.105010036999971, 49.248807533000104 ], [ -123.104996301999932, 49.248807297000099 ], [ -123.10502173499999, 49.248327255000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "377122200", "BldgCostT": "256792213", "sL_LossRatio": "0.749606286227851", "sL_AssetLoss": "2425620", "sL_BldgLoss": "1818260", "sL_StrLoss": "839190", "sL_NStrLoss": "979070", "sL_ContLoss": "607360", "geom_point": "0101000020E610000021DE539C97C65EC01ED24D07579F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10124850499993, 49.245970191000012 ], [ -123.101260911999958, 49.245727287000093 ], [ -123.100582308999961, 49.24570909500008 ], [ -123.099885305999948, 49.245699294000076 ], [ -123.09994011799995, 49.244447799000113 ], [ -123.100612568999964, 49.244453036000046 ], [ -123.101309895999947, 49.244458512000051 ], [ -123.101916769999917, 49.244479205000104 ], [ -123.10255280299998, 49.244500912000127 ], [ -123.102606110999929, 49.243317805000103 ], [ -123.103331220999948, 49.243329657000103 ], [ -123.103975097999978, 49.243340204000063 ], [ -123.104566892999927, 49.243354432000118 ], [ -123.10525579499992, 49.243371017000072 ], [ -123.105208408999985, 49.244527205000104 ], [ -123.10514440599998, 49.246059507000076 ], [ -123.104451776999966, 49.24604190600008 ], [ -123.10391310699994, 49.246028192000104 ], [ -123.10320230499994, 49.246010036000037 ], [ -123.102535182999986, 49.245992998000062 ], [ -123.101882014999973, 49.245981423000032 ], [ -123.10124850499993, 49.245970191000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259132956", "BldgCostT": "167064714", "sL_LossRatio": "0.714012998754", "sL_AssetLoss": "2012039", "sL_BldgLoss": "1436622", "sL_StrLoss": "712300", "sL_NStrLoss": "724322", "sL_ContLoss": "575417", "geom_point": "0101000020E61000009B5A9D3977C65EC0FDE8FD14019F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09994011799995, 49.244447799000113 ], [ -123.099993599999962, 49.243262910000041 ], [ -123.100624726999939, 49.243272429000115 ], [ -123.101365479999927, 49.243283602000069 ], [ -123.101409906999919, 49.242285785000036 ], [ -123.100017674999933, 49.242259224000051 ], [ -123.098749190999911, 49.242235014000073 ], [ -123.098767620999951, 49.241792569000026 ], [ -123.098792314999983, 49.241199102000103 ], [ -123.098823101000022, 49.240459805000093 ], [ -123.099410791999929, 49.240471055000029 ], [ -123.10011219699993, 49.240484506000051 ], [ -123.100798216, 49.240494271000109 ], [ -123.101467711999959, 49.240503809000096 ], [ -123.102117667999948, 49.240516685000024 ], [ -123.10273901399998, 49.240528991000097 ], [ -123.102663631999945, 49.242022300000066 ], [ -123.102606110999929, 49.243317805000103 ], [ -123.10255280299998, 49.244500912000127 ], [ -123.101916769999917, 49.244479205000104 ], [ -123.101309895999947, 49.244458512000051 ], [ -123.100612568999964, 49.244453036000046 ], [ -123.09994011799995, 49.244447799000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114051956", "BldgCostT": "72239714", "sL_LossRatio": "0.695371681671247", "sL_AssetLoss": "1594402", "sL_BldgLoss": "1108702", "sL_StrLoss": "508260", "sL_NStrLoss": "600442", "sL_ContLoss": "485700", "geom_point": "0101000020E6100000393DFE5E4CC65EC09F091BD8099F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096849597999935, 49.24219830100008 ], [ -123.096860465999939, 49.241784638000105 ], [ -123.096875987999908, 49.241190979000052 ], [ -123.096896079999979, 49.240424094000055 ], [ -123.098823101000022, 49.240459805000093 ], [ -123.098792314999983, 49.241199102000103 ], [ -123.098767620999951, 49.241792569000026 ], [ -123.098749190999911, 49.242235014000073 ], [ -123.100017674999933, 49.242259224000051 ], [ -123.101409906999919, 49.242285785000036 ], [ -123.101365479999927, 49.243283602000069 ], [ -123.100624726999939, 49.243272429000115 ], [ -123.099993599999962, 49.243262910000041 ], [ -123.09931962499999, 49.243251909000065 ], [ -123.098717793999953, 49.243242096000053 ], [ -123.098664510999939, 49.244423404000045 ], [ -123.09805774299997, 49.244411053000135 ], [ -123.097430206999931, 49.244398299000053 ], [ -123.096993991999938, 49.244390213000045 ], [ -123.096890213999956, 49.24435950300014 ], [ -123.096904844000036, 49.243917722000106 ], [ -123.096917986999927, 49.243520696000154 ], [ -123.096910504999968, 49.242717909000064 ], [ -123.096849586999923, 49.24259378900009 ], [ -123.096849597999935, 49.24219830100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68824416", "BldgCostT": "45576666", "sL_LossRatio": "0.728103440921297", "sL_AssetLoss": "961167", "sL_BldgLoss": "699829", "sL_StrLoss": "312519", "sL_NStrLoss": "387310", "sL_ContLoss": "261338", "geom_point": "0101000020E610000011C7789C3BC65EC0DBCA09E2559F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094144506999982, 49.245619604000062 ], [ -123.094181504999966, 49.244744080000018 ], [ -123.094161200999935, 49.244585915000044 ], [ -123.094172207999989, 49.244278200000061 ], [ -123.09677370499999, 49.244311293000081 ], [ -123.096890213999956, 49.24435950300014 ], [ -123.096993991999938, 49.244390213000045 ], [ -123.097430206999931, 49.244398299000053 ], [ -123.09805774299997, 49.244411053000135 ], [ -123.098664510999939, 49.244423404000045 ], [ -123.098717793999953, 49.243242096000053 ], [ -123.09931962499999, 49.243251909000065 ], [ -123.099993599999962, 49.243262910000041 ], [ -123.09994011799995, 49.244447799000113 ], [ -123.099885305999948, 49.245699294000076 ], [ -123.099200588999949, 49.245689912000053 ], [ -123.098585884000016, 49.245681501000078 ], [ -123.098005227999948, 49.24566498800008 ], [ -123.097368592999914, 49.245646897000036 ], [ -123.096871893999918, 49.245640793000078 ], [ -123.094144506999982, 49.245619604000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131445833", "BldgCostT": "78893333", "sL_LossRatio": "0.686178368933424", "sL_AssetLoss": "1682580", "sL_BldgLoss": "1154550", "sL_StrLoss": "519790", "sL_NStrLoss": "634760", "sL_ContLoss": "528030", "geom_point": "0101000020E6100000E3F4503600C65EC0829BEF54FE9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096890213999956, 49.24435950300014 ], [ -123.09677370499999, 49.244311293000081 ], [ -123.094172207999989, 49.244278200000061 ], [ -123.094175160999924, 49.244099592000026 ], [ -123.094178637999946, 49.243892719000016 ], [ -123.09418468199999, 49.243529999000067 ], [ -123.0941031, 49.243582698000054 ], [ -123.093851747999906, 49.243579323000091 ], [ -123.093838050999949, 49.243579130000036 ], [ -123.090870830999989, 49.24353929100009 ], [ -123.090305271999952, 49.243531690000076 ], [ -123.09031999499993, 49.242595304000062 ], [ -123.090333715999975, 49.241720094000065 ], [ -123.09036078099993, 49.240850596000016 ], [ -123.090377308999962, 49.240302514000042 ], [ -123.093159053999969, 49.240354433000057 ], [ -123.093406152999975, 49.240359058000081 ], [ -123.093914437, 49.240368539000066 ], [ -123.096896079999979, 49.240424094000055 ], [ -123.096875987999908, 49.241190979000052 ], [ -123.096860465999939, 49.241784638000105 ], [ -123.096849597999935, 49.24219830100008 ], [ -123.096849586999923, 49.24259378900009 ], [ -123.096910504999968, 49.242717909000064 ], [ -123.096917986999927, 49.243520696000154 ], [ -123.096904844000036, 49.243917722000106 ], [ -123.096890213999956, 49.24435950300014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132305166", "BldgCostT": "82986666", "sL_LossRatio": "0.711159103929561", "sL_AssetLoss": "1637282", "sL_BldgLoss": "1164368", "sL_StrLoss": "538068", "sL_NStrLoss": "626300", "sL_ContLoss": "472914", "geom_point": "0101000020E61000005DA7904C03C65EC084F82C744A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090462807999941, 49.236550309000052 ], [ -123.090494694999975, 49.235690888000079 ], [ -123.090529181999926, 49.234768601000084 ], [ -123.090539398, 49.23382078500002 ], [ -123.0905491, 49.232917997000101 ], [ -123.09201825599996, 49.232936401000131 ], [ -123.092073178999939, 49.232937087000074 ], [ -123.092100615999939, 49.232937425000095 ], [ -123.093041709999952, 49.232949197000039 ], [ -123.093199711999972, 49.232902980000041 ], [ -123.093861921000013, 49.232919072000065 ], [ -123.094040755999956, 49.232923408000069 ], [ -123.094150498999923, 49.232926070000111 ], [ -123.094439077999965, 49.232933071000026 ], [ -123.09446647399993, 49.232933741000068 ], [ -123.094559513999968, 49.23293601200011 ], [ -123.095633208999956, 49.232957636000101 ], [ -123.097205883999919, 49.232989258000075 ], [ -123.097175903, 49.233535188000047 ], [ -123.097165815999972, 49.233995104000094 ], [ -123.097155891999989, 49.234447208000091 ], [ -123.097136109999937, 49.234912649000073 ], [ -123.097117806999975, 49.235342495000062 ], [ -123.097096971999946, 49.235812213000052 ], [ -123.097077704999961, 49.23624671400011 ], [ -123.0993828899999, 49.236290694000111 ], [ -123.099360442999938, 49.236745650000046 ], [ -123.099348004, 49.236997129000031 ], [ -123.099336419999929, 49.237232591000101 ], [ -123.097037507999943, 49.23717519899999 ], [ -123.09699920099996, 49.238050596000058 ], [ -123.096977559999971, 49.238528006000116 ], [ -123.096962988999962, 49.238849596000072 ], [ -123.09693049699996, 49.239609798000039 ], [ -123.0969131, 49.240021895000105 ], [ -123.096896079999979, 49.240424094000055 ], [ -123.093914437, 49.240368539000066 ], [ -123.093406152999975, 49.240359058000081 ], [ -123.093159053999969, 49.240354433000057 ], [ -123.090377308999962, 49.240302514000042 ], [ -123.09039141199996, 49.238795312000065 ], [ -123.090395887999961, 49.23831860200012 ], [ -123.09044478499996, 49.237035403000029 ], [ -123.09044758099995, 49.236960715000073 ], [ -123.090462807999941, 49.236550309000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136984584", "BldgCostT": "92813334", "sL_LossRatio": "0.799201146392106", "sL_AssetLoss": "1237273", "sL_BldgLoss": "988830", "sL_StrLoss": "468160", "sL_NStrLoss": "520670", "sL_ContLoss": "248443", "geom_point": "0101000020E6100000D3340FFDE6C55EC06F6237224E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0941031, 49.243582698000054 ], [ -123.09418468199999, 49.243529999000067 ], [ -123.094178637999946, 49.243892719000016 ], [ -123.094175160999924, 49.244099592000026 ], [ -123.094172207999989, 49.244278200000061 ], [ -123.094161200999935, 49.244585915000044 ], [ -123.094181504999966, 49.244744080000018 ], [ -123.094144506999982, 49.245619604000062 ], [ -123.093828620999972, 49.245613412000054 ], [ -123.09345758299996, 49.245606113000079 ], [ -123.090861912999969, 49.245555178000103 ], [ -123.090210815999953, 49.245542396000062 ], [ -123.090270627999985, 49.244741407000078 ], [ -123.090274688999969, 49.244566702000036 ], [ -123.090305271999952, 49.243531690000076 ], [ -123.090870830999989, 49.24353929100009 ], [ -123.093838050999949, 49.243579130000036 ], [ -123.093851747999906, 49.243579323000091 ], [ -123.0941031, 49.243582698000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "319073008", "BldgCostT": "215213459", "sL_LossRatio": "0.760798043233478", "sL_AssetLoss": "2227348", "sL_BldgLoss": "1694562", "sL_StrLoss": "818040", "sL_NStrLoss": "876522", "sL_ContLoss": "532786", "geom_point": "0101000020E610000022F30B86E5C55EC0FE29E9BCA19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093828620999972, 49.245613412000054 ], [ -123.094144506999982, 49.245619604000062 ], [ -123.094128612999924, 49.246141744000056 ], [ -123.094113305999954, 49.246644696000061 ], [ -123.094093909999984, 49.247167131000012 ], [ -123.094087297999963, 49.247344806000086 ], [ -123.09407709099996, 49.247682306000073 ], [ -123.094070659999971, 49.248084648000074 ], [ -123.094060998999936, 49.248686314000089 ], [ -123.093765366999932, 49.248683029000077 ], [ -123.092139586999934, 49.248665091000049 ], [ -123.090797047999956, 49.248663067000038 ], [ -123.09015528499999, 49.248662104000047 ], [ -123.090166194999981, 49.247611105000026 ], [ -123.090194197999935, 49.246618303000105 ], [ -123.090210815999953, 49.245542396000062 ], [ -123.090861912999969, 49.245555178000103 ], [ -123.09345758299996, 49.245606113000079 ], [ -123.093828620999972, 49.245613412000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100009499", "BldgCostT": "64139999", "sL_LossRatio": "0.723693161926689", "sL_AssetLoss": "1308234", "sL_BldgLoss": "946760", "sL_StrLoss": "444320", "sL_NStrLoss": "502440", "sL_ContLoss": "361474", "geom_point": "0101000020E6100000B5003CBB1FC65EC0115EEDEEA29F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096871893999918, 49.245640793000078 ], [ -123.097368592999914, 49.245646897000036 ], [ -123.097342540999989, 49.246066292000108 ], [ -123.097250412999983, 49.247549847000066 ], [ -123.097203501999928, 49.248305291000079 ], [ -123.097177716999951, 49.24872060100008 ], [ -123.096771390999919, 49.248717810000166 ], [ -123.0954554139999, 49.248701308000129 ], [ -123.094060998999936, 49.248686314000089 ], [ -123.094070659999971, 49.248084648000074 ], [ -123.09407709099996, 49.247682306000073 ], [ -123.094087297999963, 49.247344806000086 ], [ -123.094093909999984, 49.247167131000012 ], [ -123.094113305999954, 49.246644696000061 ], [ -123.094128612999924, 49.246141744000056 ], [ -123.094144506999982, 49.245619604000062 ], [ -123.096871893999918, 49.245640793000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214890478", "BldgCostT": "146459857", "sL_LossRatio": "0.775325167633003", "sL_AssetLoss": "1609170", "sL_BldgLoss": "1247630", "sL_StrLoss": "606890", "sL_NStrLoss": "640740", "sL_ContLoss": "361540", "geom_point": "0101000020E61000007688A85704C65EC08C771DFDF19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097177716999951, 49.24872060100008 ], [ -123.098713320999948, 49.248739403000073 ], [ -123.098694305999942, 49.249328884000072 ], [ -123.098677476999967, 49.249789501000087 ], [ -123.09866150799995, 49.250227889000051 ], [ -123.096710186999971, 49.250200606000121 ], [ -123.094550984999927, 49.250172792000093 ], [ -123.09401639799998, 49.25016588600009 ], [ -123.092870482999928, 49.250151311000074 ], [ -123.092088313999966, 49.25014099500001 ], [ -123.09207024599999, 49.250613276000081 ], [ -123.092053896, 49.251040808000013 ], [ -123.090829170999925, 49.251020655000104 ], [ -123.090078201, 49.251008293000048 ], [ -123.09011779199993, 49.250092399000096 ], [ -123.090140287999986, 49.249185900000036 ], [ -123.09015528499999, 49.248662104000047 ], [ -123.090797047999956, 49.248663067000038 ], [ -123.092139586999934, 49.248665091000049 ], [ -123.093765366999932, 49.248683029000077 ], [ -123.094060998999936, 49.248686314000089 ], [ -123.0954554139999, 49.248701308000129 ], [ -123.096771390999919, 49.248717810000166 ], [ -123.097177716999951, 49.24872060100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98699311", "BldgCostT": "61668190", "sL_LossRatio": "0.681134949621011", "sL_AssetLoss": "1634610", "sL_BldgLoss": "1113390", "sL_StrLoss": "479930", "sL_NStrLoss": "633460", "sL_ContLoss": "521220", "geom_point": "0101000020E61000003252F71A25C65EC02F081F2926A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.092053896, 49.251040808000013 ], [ -123.09207024599999, 49.250613276000081 ], [ -123.092088313999966, 49.25014099500001 ], [ -123.092870482999928, 49.250151311000074 ], [ -123.09401639799998, 49.25016588600009 ], [ -123.094550984999927, 49.250172792000093 ], [ -123.096710186999971, 49.250200606000121 ], [ -123.09866150799995, 49.250227889000051 ], [ -123.09864473, 49.250698168000142 ], [ -123.098628709999957, 49.251146695000081 ], [ -123.10035153299999, 49.251156629000057 ], [ -123.10097230400001, 49.25116019200015 ], [ -123.100938993999975, 49.25180330600012 ], [ -123.100935978999956, 49.25207080600012 ], [ -123.100298979999977, 49.25206151600004 ], [ -123.098596392000033, 49.25203669899999 ], [ -123.096645008999943, 49.252010312000046 ], [ -123.093962197999986, 49.25197319500009 ], [ -123.093717309999974, 49.251968091 ], [ -123.092024099999932, 49.251932707000073 ], [ -123.092038710999987, 49.251495023000153 ], [ -123.092053896, 49.251040808000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181345417", "BldgCostT": "118281667", "sL_LossRatio": "0.716522925296808", "sL_AssetLoss": "2709496", "sL_BldgLoss": "1941416", "sL_StrLoss": "828336", "sL_NStrLoss": "1113080", "sL_ContLoss": "768080", "geom_point": "0101000020E61000001D1E0C8644C65EC0BFD0C88C5CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096592884999964, 49.253389777000031 ], [ -123.096611504999913, 49.252919206000044 ], [ -123.093919316999958, 49.252878205000044 ], [ -123.093941000999948, 49.25242057 ], [ -123.093962197999986, 49.25197319500009 ], [ -123.096645008999943, 49.252010312000046 ], [ -123.098596392000033, 49.25203669899999 ], [ -123.100298979999977, 49.25206151600004 ], [ -123.100935978999956, 49.25207080600012 ], [ -123.1009370099999, 49.252540231000104 ], [ -123.100937396999925, 49.252708500000068 ], [ -123.10092439099995, 49.252982911000103 ], [ -123.100874680999979, 49.253711205000101 ], [ -123.100865995999968, 49.253873116000065 ], [ -123.098532698000028, 49.253846392000085 ], [ -123.096576010999911, 49.253816290000017 ], [ -123.096592884999964, 49.253389777000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189827114", "BldgCostT": "128181936", "sL_LossRatio": "0.762331791913528", "sL_AssetLoss": "1922470", "sL_BldgLoss": "1465560", "sL_StrLoss": "658140", "sL_NStrLoss": "807420", "sL_ContLoss": "456910", "geom_point": "0101000020E6100000E336D9ED50C65EC06BA3D7F28CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098532698000028, 49.253846392000085 ], [ -123.100865995999968, 49.253873116000065 ], [ -123.100844011999982, 49.25437970200003 ], [ -123.100764894999884, 49.254480212000061 ], [ -123.100752592, 49.254787008000051 ], [ -123.099286693999929, 49.254769364000076 ], [ -123.098501710999969, 49.254759910000089 ], [ -123.096543586999985, 49.254728806000088 ], [ -123.096559831999954, 49.254271633 ], [ -123.096576010999911, 49.253816290000017 ], [ -123.098532698000028, 49.253846392000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72245500", "BldgCostT": "45520000", "sL_LossRatio": "0.648901370915131", "sL_AssetLoss": "2161330", "sL_BldgLoss": "1402490", "sL_StrLoss": "579190", "sL_NStrLoss": "823300", "sL_ContLoss": "758840", "geom_point": "0101000020E6100000E2A2C5DF17C65EC0750780438BA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093919316999958, 49.252878205000044 ], [ -123.096611504999913, 49.252919206000044 ], [ -123.096592884999964, 49.253389777000031 ], [ -123.096576010999911, 49.253816290000017 ], [ -123.096559831999954, 49.254271633 ], [ -123.096543586999985, 49.254728806000088 ], [ -123.096527419999944, 49.255179859000123 ], [ -123.096512302999969, 49.255601706000121 ], [ -123.093806802999922, 49.255595508000056 ], [ -123.093821993999967, 49.255127515000069 ], [ -123.093836304999925, 49.254685609000084 ], [ -123.093879596999926, 49.253775201000046 ], [ -123.093898579999944, 49.253346766000021 ], [ -123.093919316999958, 49.252878205000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "278574613", "BldgCostT": "178206935", "sL_LossRatio": "0.697914901539923", "sL_AssetLoss": "4780110", "sL_BldgLoss": "3336110", "sL_StrLoss": "1483310", "sL_NStrLoss": "1852800", "sL_ContLoss": "1444000", "geom_point": "0101000020E6100000C963833B46C65EC06932C25FBCA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100752592, 49.254787008000051 ], [ -123.101006690999938, 49.254786715000115 ], [ -123.10123597499998, 49.255294501000023 ], [ -123.101268005999984, 49.255683590000054 ], [ -123.101238098999914, 49.256579113000079 ], [ -123.100658900999974, 49.256572491000014 ], [ -123.098439485999933, 49.256545307000088 ], [ -123.09777511499999, 49.256535352000057 ], [ -123.097500167999939, 49.256531234000072 ], [ -123.096477095999916, 49.256515900000089 ], [ -123.093787709999972, 49.256470481000058 ], [ -123.09379695799997, 49.256045448000037 ], [ -123.093806802999922, 49.255595508000056 ], [ -123.096512302999969, 49.255601706000121 ], [ -123.096527419999944, 49.255179859000123 ], [ -123.096543586999985, 49.254728806000088 ], [ -123.098501710999969, 49.254759910000089 ], [ -123.099286693999929, 49.254769364000076 ], [ -123.100752592, 49.254787008000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "411265280", "BldgCostT": "277918602", "sL_LossRatio": "0.792319545216546", "sL_AssetLoss": "3342250", "sL_BldgLoss": "2648130", "sL_StrLoss": "1170070", "sL_NStrLoss": "1478060", "sL_ContLoss": "694120", "geom_point": "0101000020E610000021522EE858C65EC02387369DF0A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098388370999942, 49.257948813000056 ], [ -123.09840498600002, 49.257470298000044 ], [ -123.096442385999964, 49.257442814000051 ], [ -123.096460092999934, 49.256969698000056 ], [ -123.096477095999916, 49.256515900000089 ], [ -123.097500167999939, 49.256531234000072 ], [ -123.09777511499999, 49.256535352000057 ], [ -123.098439485999933, 49.256545307000088 ], [ -123.100658900999974, 49.256572491000014 ], [ -123.101238098999914, 49.256579113000079 ], [ -123.10119800799994, 49.257507598000082 ], [ -123.101131371999912, 49.258397493000153 ], [ -123.100552184999941, 49.258390100000085 ], [ -123.098374118999928, 49.258359491000071 ], [ -123.098388370999942, 49.257948813000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109410886", "BldgCostT": "69907079", "sL_LossRatio": "0.703677532335863", "sL_AssetLoss": "1301960", "sL_BldgLoss": "916160", "sL_StrLoss": "360860", "sL_NStrLoss": "555300", "sL_ContLoss": "385800", "geom_point": "0101000020E6100000A266F61662C65EC0A1E1838D21A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100552184999941, 49.258390100000085 ], [ -123.101131371999912, 49.258397493000153 ], [ -123.101108804999953, 49.259308505 ], [ -123.10049791899999, 49.259302900000137 ], [ -123.09834010499999, 49.259277287000117 ], [ -123.098356971999962, 49.25882154300006 ], [ -123.098374118999928, 49.258359491000071 ], [ -123.100552184999941, 49.258390100000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "430472356", "BldgCostT": "298617492", "sL_LossRatio": "0.865855872209112", "sL_AssetLoss": "2754500", "sL_BldgLoss": "2385000", "sL_StrLoss": "1121780", "sL_NStrLoss": "1263220", "sL_ContLoss": "369500", "geom_point": "0101000020E6100000ADCC109E3BC65EC031C036C92CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096410183999978, 49.25833091200014 ], [ -123.098374118999928, 49.258359491000071 ], [ -123.098356971999962, 49.25882154300006 ], [ -123.09834010499999, 49.259277287000117 ], [ -123.098323053999977, 49.259738694000049 ], [ -123.098317302999988, 49.259894124000034 ], [ -123.098310644999955, 49.260074077000098 ], [ -123.098306394999895, 49.260188914000054 ], [ -123.096571601999983, 49.259878298000103 ], [ -123.096316198999915, 49.259613805000086 ], [ -123.096342802, 49.259255091000078 ], [ -123.096375626999958, 49.25880505700011 ], [ -123.096410183999978, 49.25833091200014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "635776335", "BldgCostT": "432703335", "sL_LossRatio": "0.84669222981779", "sL_AssetLoss": "3767402", "sL_BldgLoss": "3189830", "sL_StrLoss": "1454890", "sL_NStrLoss": "1734940", "sL_ContLoss": "577572", "geom_point": "0101000020E61000004212E60B14C65EC018DD8A2F20A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091811077999964, 49.257412599000119 ], [ -123.09116628799994, 49.257290710000127 ], [ -123.090965686999965, 49.257204312000106 ], [ -123.09181641099994, 49.257240704000061 ], [ -123.092586211999915, 49.257274991000045 ], [ -123.093768508999958, 49.25732569300007 ], [ -123.096442385999964, 49.257442814000051 ], [ -123.09840498600002, 49.257470298000044 ], [ -123.098388370999942, 49.257948813000056 ], [ -123.098374118999928, 49.258359491000071 ], [ -123.096410183999978, 49.25833091200014 ], [ -123.096375626999958, 49.25880505700011 ], [ -123.096342802, 49.259255091000078 ], [ -123.096316198999915, 49.259613805000086 ], [ -123.096220058999961, 49.25981938000006 ], [ -123.096227804999955, 49.259995105 ], [ -123.096168400999943, 49.260680787000084 ], [ -123.094973797999899, 49.260671186000067 ], [ -123.093567807999975, 49.260658813000127 ], [ -123.093033809999937, 49.260654098000046 ], [ -123.093042772, 49.260193296000075 ], [ -123.093051106999951, 49.259765490000113 ], [ -123.093059914999941, 49.259295498000029 ], [ -123.093069911000015, 49.258829203000069 ], [ -123.093090904999926, 49.257769596000038 ], [ -123.092844409999941, 49.257668581000111 ], [ -123.092578012999937, 49.257559396000069 ], [ -123.092164236999906, 49.25748020000006 ], [ -123.091811077999964, 49.257412599000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1045924496", "BldgCostT": "684327825", "sL_LossRatio": "0.758605772201965", "sL_AssetLoss": "7605070", "sL_BldgLoss": "5769250", "sL_StrLoss": "2578980", "sL_NStrLoss": "3190270", "sL_ContLoss": "1835820", "geom_point": "0101000020E61000007CEE8E104EC65EC0AE9C38B16EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100888014999953, 49.262908296000077 ], [ -123.10028459099999, 49.262891164000031 ], [ -123.099653629999949, 49.262875121000043 ], [ -123.099402767999919, 49.262866560000177 ], [ -123.098984640999959, 49.262852610000039 ], [ -123.097017503999922, 49.262785314000013 ], [ -123.096703497999926, 49.262775105000109 ], [ -123.096000408999899, 49.262638997000096 ], [ -123.096053124999941, 49.262026221000035 ], [ -123.096061019999965, 49.261934489000069 ], [ -123.096097183999987, 49.261531895000068 ], [ -123.094967005999976, 49.261525810000066 ], [ -123.094970244999942, 49.26111791500005 ], [ -123.094973797999899, 49.260671186000067 ], [ -123.096168400999943, 49.260680787000084 ], [ -123.096227804999955, 49.259995105 ], [ -123.096220058999961, 49.25981938000006 ], [ -123.096316198999915, 49.259613805000086 ], [ -123.096571601999983, 49.259878298000103 ], [ -123.098306394999895, 49.260188914000054 ], [ -123.098310644999955, 49.260074077000098 ], [ -123.098317302999988, 49.259894124000034 ], [ -123.098323053999977, 49.259738694000049 ], [ -123.09834010499999, 49.259277287000117 ], [ -123.10049791899999, 49.259302900000137 ], [ -123.101108804999953, 49.259308505 ], [ -123.101085833999974, 49.260005963000012 ], [ -123.10100843799998, 49.26010117400007 ], [ -123.101003355999936, 49.260182099000097 ], [ -123.101002816999937, 49.260191093000117 ], [ -123.100965777999932, 49.261113358000038 ], [ -123.100962684999971, 49.261206972000132 ], [ -123.10104381, 49.261293828000085 ], [ -123.100996289999969, 49.262010438000104 ], [ -123.100977906999944, 49.262392801000061 ], [ -123.1009027899999, 49.262451110000093 ], [ -123.100888014999953, 49.262908296000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275809697", "BldgCostT": "185905269", "sL_LossRatio": "0.748622118586697", "sL_AssetLoss": "2339824", "sL_BldgLoss": "1751644", "sL_StrLoss": "761510", "sL_NStrLoss": "990134", "sL_ContLoss": "588180", "geom_point": "0101000020E61000003F3C3A64F9C55EC0E8164F777DA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095593904999973, 49.262549697000047 ], [ -123.09495288599993, 49.262519007000051 ], [ -123.093529953999933, 49.262509536000046 ], [ -123.09300020299996, 49.262506011000028 ], [ -123.091043607999922, 49.262490202000016 ], [ -123.091050782999943, 49.261975413000059 ], [ -123.091057398999908, 49.261502491000023 ], [ -123.091065036999964, 49.26108487500003 ], [ -123.091073283999947, 49.260635499000088 ], [ -123.093033809999937, 49.260654098000046 ], [ -123.093567807999975, 49.260658813000127 ], [ -123.094973797999899, 49.260671186000067 ], [ -123.094970244999942, 49.26111791500005 ], [ -123.094967005999976, 49.261525810000066 ], [ -123.096097183999987, 49.261531895000068 ], [ -123.096061019999965, 49.261934489000069 ], [ -123.096053124999941, 49.262026221000035 ], [ -123.096000408999899, 49.262638997000096 ], [ -123.095593904999973, 49.262549697000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "559501698", "BldgCostT": "369556700", "sL_LossRatio": "0.733130216555112", "sL_AssetLoss": "4691554", "sL_BldgLoss": "3439520", "sL_StrLoss": "1467020", "sL_NStrLoss": "1972500", "sL_ContLoss": "1252034", "geom_point": "0101000020E61000003FCE0BE249C65EC0B8AC2CB8BCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096981010999954, 49.26407532200011 ], [ -123.09699241, 49.263625892000022 ], [ -123.096207493999927, 49.263611087000072 ], [ -123.096102330999955, 49.263589153000055 ], [ -123.096024389999982, 49.263572887000066 ], [ -123.095931493999956, 49.263477608000109 ], [ -123.094904315999969, 49.263470694000077 ], [ -123.094926146999953, 49.263043226000086 ], [ -123.09495288599993, 49.262519007000051 ], [ -123.095593904999973, 49.262549697000047 ], [ -123.096000408999899, 49.262638997000096 ], [ -123.096703497999926, 49.262775105000109 ], [ -123.097017503999922, 49.262785314000013 ], [ -123.098984640999959, 49.262852610000039 ], [ -123.099402767999919, 49.262866560000177 ], [ -123.099653629999949, 49.262875121000043 ], [ -123.10028459099999, 49.262891164000031 ], [ -123.100888014999953, 49.262908296000077 ], [ -123.100860574999956, 49.263740072000061 ], [ -123.100842057999955, 49.264302298000153 ], [ -123.100833039999941, 49.264490316000135 ], [ -123.100826476999956, 49.264595497000052 ], [ -123.100008791999983, 49.26458116000007 ], [ -123.098898396999957, 49.264561695000033 ], [ -123.096969009999967, 49.264548612000091 ], [ -123.096981010999954, 49.26407532200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203275614", "BldgCostT": "131896936", "sL_LossRatio": "0.686560280781871", "sL_AssetLoss": "1769345", "sL_BldgLoss": "1214762", "sL_StrLoss": "478780", "sL_NStrLoss": "735982", "sL_ContLoss": "554583", "geom_point": "0101000020E6100000B700E828EEC55EC0B52E9722B3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093529953999933, 49.262509536000046 ], [ -123.09495288599993, 49.262519007000051 ], [ -123.094926146999953, 49.263043226000086 ], [ -123.094904315999969, 49.263470694000077 ], [ -123.093518471, 49.263459371000081 ], [ -123.092984716999965, 49.263454997000046 ], [ -123.092974265999928, 49.263899093000113 ], [ -123.09296328799995, 49.264366 ], [ -123.09099869, 49.264344591000061 ], [ -123.091012329999913, 49.26388200800006 ], [ -123.091025398999932, 49.263438200000031 ], [ -123.091033807999978, 49.263000689000101 ], [ -123.091043607999922, 49.262490202000016 ], [ -123.09300020299996, 49.262506011000028 ], [ -123.093529953999933, 49.262509536000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290670470", "BldgCostT": "192010413", "sL_LossRatio": "0.757328231822159", "sL_AssetLoss": "2360085", "sL_BldgLoss": "1787359", "sL_StrLoss": "782200", "sL_NStrLoss": "1005159", "sL_ContLoss": "572726", "geom_point": "0101000020E61000007F628D480EC65EC064305750E2A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.092929199999958, 49.266160190000072 ], [ -123.092956569999913, 49.265689235000124 ], [ -123.092981715999912, 49.265257289000061 ], [ -123.09297258399999, 49.264816164000088 ], [ -123.092971804999962, 49.26477768200003 ], [ -123.09296328799995, 49.264366 ], [ -123.092974265999928, 49.263899093000113 ], [ -123.092984716999965, 49.263454997000046 ], [ -123.093518471, 49.263459371000081 ], [ -123.094904315999969, 49.263470694000077 ], [ -123.095931493999956, 49.263477608000109 ], [ -123.096024389999982, 49.263572887000066 ], [ -123.096102330999955, 49.263589153000055 ], [ -123.096207493999927, 49.263611087000072 ], [ -123.09699241, 49.263625892000022 ], [ -123.096981010999954, 49.26407532200011 ], [ -123.096969009999967, 49.264548612000091 ], [ -123.096826321999941, 49.264524002000051 ], [ -123.095794585999954, 49.264500805000075 ], [ -123.095777077999969, 49.264939829000063 ], [ -123.095763179999949, 49.265288094000077 ], [ -123.095758386999989, 49.265408605000133 ], [ -123.095716474999975, 49.265730598000076 ], [ -123.095652503999986, 49.266221894000047 ], [ -123.094865090999917, 49.266180786000056 ], [ -123.093468215999962, 49.266165945000061 ], [ -123.092929199999958, 49.266160190000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "369529500", "BldgCostT": "254010000", "sL_LossRatio": "0.862993998197542", "sL_AssetLoss": "2086040", "sL_BldgLoss": "1800240", "sL_StrLoss": "844420", "sL_NStrLoss": "955820", "sL_ContLoss": "285800", "geom_point": "0101000020E6100000F1DE6A00E3C55EC07DA68FA702A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091007725999987, 49.265252799000116 ], [ -123.092981715999912, 49.265257289000061 ], [ -123.092956569999913, 49.265689235000124 ], [ -123.092929199999958, 49.266160190000072 ], [ -123.091005709999962, 49.266161607000143 ], [ -123.091006764999975, 49.265672485000046 ], [ -123.091007725999987, 49.265252799000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "338080333", "BldgCostT": "226798333", "sL_LossRatio": "0.822426278615989", "sL_AssetLoss": "2910960", "sL_BldgLoss": "2394050", "sL_StrLoss": "1090330", "sL_NStrLoss": "1303720", "sL_ContLoss": "516910", "geom_point": "0101000020E6100000FC98F66AD3C55EC0DFA3E5DDE4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09099869, 49.264344591000061 ], [ -123.09296328799995, 49.264366 ], [ -123.092971804999962, 49.26477768200003 ], [ -123.09297258399999, 49.264816164000088 ], [ -123.092981715999912, 49.265257289000061 ], [ -123.091007725999987, 49.265252799000116 ], [ -123.08908901199996, 49.26522260400003 ], [ -123.089084791999966, 49.264792461000184 ], [ -123.08908447099999, 49.264761518000036 ], [ -123.089080277999969, 49.264332501000048 ], [ -123.09099869, 49.264344591000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "464586811", "BldgCostT": "316502205", "sL_LossRatio": "0.843544078721384", "sL_AssetLoss": "2474550", "sL_BldgLoss": "2087392", "sL_StrLoss": "989210", "sL_NStrLoss": "1098182", "sL_ContLoss": "387158", "geom_point": "0101000020E61000007E6F779CC3C55EC041EB3C85B7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089134600999941, 49.262481997000123 ], [ -123.091043607999922, 49.262490202000016 ], [ -123.091033807999978, 49.263000689000101 ], [ -123.091025398999932, 49.263438200000031 ], [ -123.091012329999913, 49.26388200800006 ], [ -123.09099869, 49.264344591000061 ], [ -123.089080277999969, 49.264332501000048 ], [ -123.089100586, 49.263417839000056 ], [ -123.089116008999923, 49.262993802000025 ], [ -123.089134600999941, 49.262481997000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198174911", "BldgCostT": "130126752", "sL_LossRatio": "0.730309953976555", "sL_AssetLoss": "1253057", "sL_BldgLoss": "915120", "sL_StrLoss": "426030", "sL_NStrLoss": "489090", "sL_ContLoss": "337937", "geom_point": "0101000020E61000002C3F05FAA3C55EC0ECB14E11B7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08718729499995, 49.262470006000058 ], [ -123.089134600999941, 49.262481997000123 ], [ -123.089116008999923, 49.262993802000025 ], [ -123.089100586, 49.263417839000056 ], [ -123.089080277999969, 49.264332501000048 ], [ -123.087144204999987, 49.264316200000117 ], [ -123.087149525999962, 49.263946003000086 ], [ -123.087150795999946, 49.263858519000031 ], [ -123.08715728599999, 49.263407697000019 ], [ -123.087172238999926, 49.262940997000022 ], [ -123.08718729499995, 49.262470006000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "314184934", "BldgCostT": "214716896", "sL_LossRatio": "0.825700991472175", "sL_AssetLoss": "1889110", "sL_BldgLoss": "1559840", "sL_StrLoss": "739470", "sL_NStrLoss": "820370", "sL_ContLoss": "329270", "geom_point": "0101000020E61000003567C8A193C55EC031C713BDE3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087144204999987, 49.264316200000117 ], [ -123.089080277999969, 49.264332501000048 ], [ -123.08908447099999, 49.264761518000036 ], [ -123.089084791999966, 49.264792461000184 ], [ -123.08908901199996, 49.26522260400003 ], [ -123.087132373999964, 49.265204093000072 ], [ -123.085183217999941, 49.265200100000058 ], [ -123.085194272999914, 49.264750310000068 ], [ -123.085205407999979, 49.264299911000066 ], [ -123.087144204999987, 49.264316200000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "256816887", "BldgCostT": "172637080", "sL_LossRatio": "0.807735988444533", "sL_AssetLoss": "1813860", "sL_BldgLoss": "1465120", "sL_StrLoss": "639820", "sL_NStrLoss": "825300", "sL_ContLoss": "348740", "geom_point": "0101000020E61000001D25E82F74C55EC0A510C0B4C5A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085223988999985, 49.263391598000084 ], [ -123.08715728599999, 49.263407697000019 ], [ -123.087150795999946, 49.263858519000031 ], [ -123.087149525999962, 49.263946003000086 ], [ -123.087144204999987, 49.264316200000117 ], [ -123.085205407999979, 49.264299911000066 ], [ -123.083269302999952, 49.264283603000109 ], [ -123.083281902999957, 49.263834537000065 ], [ -123.083294790999986, 49.263375514000103 ], [ -123.085223988999985, 49.263391598000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90966478", "BldgCostT": "60614857", "sL_LossRatio": "0.731922678341053", "sL_AssetLoss": "945660", "sL_BldgLoss": "692150", "sL_StrLoss": "271170", "sL_NStrLoss": "420980", "sL_ContLoss": "253510", "geom_point": "0101000020E610000086FD439F74C55EC0175DE68DF6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.086553908999917, 49.266212611000071 ], [ -123.084966335999951, 49.265908316000036 ], [ -123.084710383999891, 49.265859242000033 ], [ -123.084511497000022, 49.265821117000065 ], [ -123.081592184999948, 49.265261500000094 ], [ -123.08130638599998, 49.265240294000087 ], [ -123.081324795999933, 49.264269787000075 ], [ -123.083269302999952, 49.264283603000109 ], [ -123.085205407999979, 49.264299911000066 ], [ -123.085194272999914, 49.264750310000068 ], [ -123.085183217999941, 49.265200100000058 ], [ -123.087132373999964, 49.265204093000072 ], [ -123.08908901199996, 49.26522260400003 ], [ -123.08908492899999, 49.265683063000026 ], [ -123.089080904999946, 49.266139390000049 ], [ -123.089053093999937, 49.266691693000048 ], [ -123.086553908999917, 49.266212611000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "386538706", "BldgCostT": "264574714", "sL_LossRatio": "0.832694967616088", "sL_AssetLoss": "8017870", "sL_BldgLoss": "6676440", "sL_StrLoss": "3068240", "sL_NStrLoss": "3608200", "sL_ContLoss": "1341430", "geom_point": "0101000020E610000041D4D8B944C55EC0046E28A5B5A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081390054999957, 49.262425001000054 ], [ -123.083321898999912, 49.26244120100008 ], [ -123.083307839, 49.262926175000075 ], [ -123.083294790999986, 49.263375514000103 ], [ -123.083281902999957, 49.263834537000065 ], [ -123.083269302999952, 49.264283603000109 ], [ -123.081324795999933, 49.264269787000075 ], [ -123.081327956999957, 49.263817702000019 ], [ -123.081331108999919, 49.263362004000122 ], [ -123.081359593999949, 49.262909725000128 ], [ -123.081390054999957, 49.262425001000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "374976917", "BldgCostT": "257791667", "sL_LossRatio": "0.835743092859414", "sL_AssetLoss": "2390280", "sL_BldgLoss": "1997660", "sL_StrLoss": "905980", "sL_NStrLoss": "1091680", "sL_ContLoss": "392620", "geom_point": "0101000020E6100000FEF3B89874C55EC07D9F2E7BA7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085264900999974, 49.2624559120001 ], [ -123.08718729499995, 49.262470006000058 ], [ -123.087172238999926, 49.262940997000022 ], [ -123.08715728599999, 49.263407697000019 ], [ -123.085223988999985, 49.263391598000084 ], [ -123.083294790999986, 49.263375514000103 ], [ -123.083307839, 49.262926175000075 ], [ -123.083321898999912, 49.26244120100008 ], [ -123.085264900999974, 49.2624559120001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "332434499", "BldgCostT": "226229999", "sL_LossRatio": "0.831266034862262", "sL_AssetLoss": "2716347", "sL_BldgLoss": "2258007", "sL_StrLoss": "1014010", "sL_NStrLoss": "1243997", "sL_ContLoss": "458340", "geom_point": "0101000020E61000004CE3FF0A70C55EC031B49D637EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083330423999911, 49.261455106 ], [ -123.083335268999946, 49.261037037000108 ], [ -123.083340700999926, 49.260568994000039 ], [ -123.085280697999934, 49.260586298000092 ], [ -123.085276817999969, 49.261053429000057 ], [ -123.085273407999964, 49.261467997000047 ], [ -123.087191787, 49.261479194000046 ], [ -123.087189604999978, 49.26196049400005 ], [ -123.08718729499995, 49.262470006000058 ], [ -123.085264900999974, 49.2624559120001 ], [ -123.083321898999912, 49.26244120100008 ], [ -123.083326232000019, 49.261936510000083 ], [ -123.083330423999911, 49.261455106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198702499", "BldgCostT": "133384999", "sL_LossRatio": "0.717744795545625", "sL_AssetLoss": "1691820", "sL_BldgLoss": "1214295", "sL_StrLoss": "517940", "sL_NStrLoss": "696355", "sL_ContLoss": "477525", "geom_point": "0101000020E610000059BEDB7A95C55EC0A2F302686BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087189604999978, 49.26196049400005 ], [ -123.087191787, 49.261479194000046 ], [ -123.085273407999964, 49.261467997000047 ], [ -123.085276817999969, 49.261053429000057 ], [ -123.085280697999934, 49.260586298000092 ], [ -123.085300844999892, 49.260145524000102 ], [ -123.085320800999924, 49.259708286 ], [ -123.087196314999957, 49.259722900000085 ], [ -123.08719545299999, 49.260170407000082 ], [ -123.087194584999935, 49.260602900000123 ], [ -123.089171713999974, 49.26062020300003 ], [ -123.089161763999968, 49.26107772000006 ], [ -123.089152805999973, 49.261490685000098 ], [ -123.089144026, 49.261968295000074 ], [ -123.089134600999941, 49.262481997000123 ], [ -123.08718729499995, 49.262470006000058 ], [ -123.087189604999978, 49.26196049400005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192532387", "BldgCostT": "130227080", "sL_LossRatio": "0.784397854081495", "sL_AssetLoss": "1720289", "sL_BldgLoss": "1349391", "sL_StrLoss": "578540", "sL_NStrLoss": "770851", "sL_ContLoss": "370898", "geom_point": "0101000020E61000002B9EF66B9DC55EC0FFAD85D52FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08719545299999, 49.260170407000082 ], [ -123.087196314999957, 49.259722900000085 ], [ -123.085320800999924, 49.259708286 ], [ -123.085345424999929, 49.259237809000112 ], [ -123.08536870599994, 49.258792587000059 ], [ -123.087242891999963, 49.258805406000114 ], [ -123.087247944999973, 49.258353489000051 ], [ -123.087252700999898, 49.257927398000028 ], [ -123.088504817999976, 49.257935284000098 ], [ -123.089209404999949, 49.257939697000083 ], [ -123.08920264599999, 49.258369968000075 ], [ -123.089195681999954, 49.258813900000028 ], [ -123.089190986999967, 49.259260392000044 ], [ -123.08918598799994, 49.259735100000107 ], [ -123.089178842999942, 49.26017804700011 ], [ -123.089171713999974, 49.26062020300003 ], [ -123.087194584999935, 49.260602900000123 ], [ -123.08719545299999, 49.260170407000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203932417", "BldgCostT": "136431667", "sL_LossRatio": "0.75467493763115", "sL_AssetLoss": "2109226", "sL_BldgLoss": "1591780", "sL_StrLoss": "685960", "sL_NStrLoss": "905820", "sL_ContLoss": "517446", "geom_point": "0101000020E6100000E35A9B63CCC55EC0141668B964A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09108768599999, 49.259748587000026 ], [ -123.093051106999951, 49.259765490000113 ], [ -123.093042772, 49.260193296000075 ], [ -123.093033809999937, 49.260654098000046 ], [ -123.091073283999947, 49.260635499000088 ], [ -123.091065036999964, 49.26108487500003 ], [ -123.091057398999908, 49.261502491000023 ], [ -123.091050782999943, 49.261975413000059 ], [ -123.091043607999922, 49.262490202000016 ], [ -123.089134600999941, 49.262481997000123 ], [ -123.089144026, 49.261968295000074 ], [ -123.089152805999973, 49.261490685000098 ], [ -123.089161763999968, 49.26107772000006 ], [ -123.089171713999974, 49.26062020300003 ], [ -123.089178842999942, 49.26017804700011 ], [ -123.08918598799994, 49.259735100000107 ], [ -123.09108768599999, 49.259748587000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82481613", "BldgCostT": "48056935", "sL_LossRatio": "0.64239986666193", "sL_AssetLoss": "1463948", "sL_BldgLoss": "940440", "sL_StrLoss": "400160", "sL_NStrLoss": "540280", "sL_ContLoss": "523508", "geom_point": "0101000020E6100000DE840F80D3C55EC029E97A0516A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089713001999925, 49.256830892000075 ], [ -123.08978638, 49.256690596000027 ], [ -123.090965686999965, 49.257204312000106 ], [ -123.09116628799994, 49.257290710000127 ], [ -123.091811077999964, 49.257412599000119 ], [ -123.092164236999906, 49.25748020000006 ], [ -123.092578012999937, 49.257559396000069 ], [ -123.092844409999941, 49.257668581000111 ], [ -123.093090904999926, 49.257769596000038 ], [ -123.093069911000015, 49.258829203000069 ], [ -123.093059914999941, 49.259295498000029 ], [ -123.093051106999951, 49.259765490000113 ], [ -123.09108768599999, 49.259748587000026 ], [ -123.08918598799994, 49.259735100000107 ], [ -123.089190986999967, 49.259260392000044 ], [ -123.089195681999954, 49.258813900000028 ], [ -123.08920264599999, 49.258369968000075 ], [ -123.089209404999949, 49.257939697000083 ], [ -123.089222690999932, 49.257531112000038 ], [ -123.089277102999972, 49.257364094000103 ], [ -123.089440695999912, 49.257164011000057 ], [ -123.089713001999925, 49.256830892000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205952865", "BldgCostT": "134436937", "sL_LossRatio": "0.762294658316607", "sL_AssetLoss": "3250436", "sL_BldgLoss": "2477790", "sL_StrLoss": "1102290", "sL_NStrLoss": "1375500", "sL_ContLoss": "772646", "geom_point": "0101000020E61000007807454EFAC55EC05F8C1E4BE1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093787709999972, 49.256470481000058 ], [ -123.096477095999916, 49.256515900000089 ], [ -123.096460092999934, 49.256969698000056 ], [ -123.096442385999964, 49.257442814000051 ], [ -123.093768508999958, 49.25732569300007 ], [ -123.092586211999915, 49.257274991000045 ], [ -123.09181641099994, 49.257240704000061 ], [ -123.090965686999965, 49.257204312000106 ], [ -123.08978638, 49.256690596000027 ], [ -123.089834617999927, 49.25640359100008 ], [ -123.090634444999964, 49.256417295000091 ], [ -123.09184467599999, 49.256438 ], [ -123.093630445999949, 49.25646786100004 ], [ -123.093787709999972, 49.256470481000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243238154", "BldgCostT": "159491953", "sL_LossRatio": "0.725416335329782", "sL_AssetLoss": "4351060", "sL_BldgLoss": "3156330", "sL_StrLoss": "1665830", "sL_NStrLoss": "1490500", "sL_ContLoss": "1194730", "geom_point": "0101000020E61000009F15D54BE1C55EC0E0B784F0A6A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093678034999954, 49.253772108000121 ], [ -123.093879596999926, 49.253775201000046 ], [ -123.093836304999925, 49.254685609000084 ], [ -123.093821993999967, 49.255127515000069 ], [ -123.093806802999922, 49.255595508000056 ], [ -123.09379695799997, 49.256045448000037 ], [ -123.093787709999972, 49.256470481000058 ], [ -123.093630445999949, 49.25646786100004 ], [ -123.09184467599999, 49.256438 ], [ -123.090634444999964, 49.256417295000091 ], [ -123.089834617999927, 49.25640359100008 ], [ -123.089913908999975, 49.255532898000091 ], [ -123.08995259799994, 49.254632294 ], [ -123.089961414999919, 49.253725496000037 ], [ -123.090695990999947, 49.253732997000057 ], [ -123.09195172199999, 49.253745802000019 ], [ -123.093678034999954, 49.253772108000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70808335", "BldgCostT": "44108335", "sL_LossRatio": "0.63877428299397", "sL_AssetLoss": "2394680", "sL_BldgLoss": "1529660", "sL_StrLoss": "601330", "sL_NStrLoss": "928330", "sL_ContLoss": "865020", "geom_point": "0101000020E6100000FEC6A6AEDFC55EC014F4203554A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090059487999895, 49.25189679500005 ], [ -123.090078201, 49.251008293000048 ], [ -123.090829170999925, 49.251020655000104 ], [ -123.092053896, 49.251040808000013 ], [ -123.092038710999987, 49.251495023000153 ], [ -123.092024099999932, 49.251932707000073 ], [ -123.093717309999974, 49.251968091 ], [ -123.093962197999986, 49.25197319500009 ], [ -123.093941000999948, 49.25242057 ], [ -123.093919316999958, 49.252878205000044 ], [ -123.093898579999944, 49.253346766000021 ], [ -123.093879596999926, 49.253775201000046 ], [ -123.093678034999954, 49.253772108000121 ], [ -123.09195172199999, 49.253745802000019 ], [ -123.090695990999947, 49.253732997000057 ], [ -123.089961414999919, 49.253725496000037 ], [ -123.089992174999963, 49.252794897000044 ], [ -123.090059487999895, 49.25189679500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209697917", "BldgCostT": "143776667", "sL_LossRatio": "0.793976712687374", "sL_AssetLoss": "1757180", "sL_BldgLoss": "1395160", "sL_StrLoss": "656200", "sL_NStrLoss": "738960", "sL_ContLoss": "362020", "geom_point": "0101000020E61000000AC7C22996C55EC0E360781D58A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085678203000015, 49.253209545000082 ], [ -123.085707690999982, 49.252739590000019 ], [ -123.083742812999944, 49.25270899500002 ], [ -123.083770002, 49.252275921000077 ], [ -123.08379817899997, 49.251827691000088 ], [ -123.085736585999911, 49.251841405000057 ], [ -123.087667319, 49.251869195000047 ], [ -123.08925084399999, 49.251887457000052 ], [ -123.090059487999895, 49.25189679500005 ], [ -123.089992174999963, 49.252794897000044 ], [ -123.089961414999919, 49.253725496000037 ], [ -123.089239223999954, 49.253713626000057 ], [ -123.087566998999961, 49.253686105000078 ], [ -123.085650378999958, 49.253652296000077 ], [ -123.085678203000015, 49.253209545000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155002948", "BldgCostT": "102230270", "sL_LossRatio": "0.719075215558449", "sL_AssetLoss": "1757296", "sL_BldgLoss": "1263628", "sL_StrLoss": "550021", "sL_NStrLoss": "713607", "sL_ContLoss": "493668", "geom_point": "0101000020E61000003FA5D63DAAC55EC00D84F9650FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08951938199999, 49.248649435000068 ], [ -123.09015528499999, 49.248662104000047 ], [ -123.090140287999986, 49.249185900000036 ], [ -123.09011779199993, 49.250092399000096 ], [ -123.090078201, 49.251008293000048 ], [ -123.090059487999895, 49.25189679500005 ], [ -123.08925084399999, 49.251887457000052 ], [ -123.087667319, 49.251869195000047 ], [ -123.085736585999911, 49.251841405000057 ], [ -123.085752348999975, 49.251392670000072 ], [ -123.08576780899989, 49.250952291000033 ], [ -123.087703899999966, 49.250980204000015 ], [ -123.087721739999964, 49.250518111000105 ], [ -123.087739006999982, 49.250071410000018 ], [ -123.087757782999958, 49.249600971000113 ], [ -123.087775105999953, 49.249167109000034 ], [ -123.087735701999975, 49.248613900000102 ], [ -123.089354268999955, 49.248646156000099 ], [ -123.08951938199999, 49.248649435000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103699136", "BldgCostT": "66812079", "sL_LossRatio": "0.726923557332001", "sL_AssetLoss": "1280960", "sL_BldgLoss": "931160", "sL_StrLoss": "424250", "sL_NStrLoss": "506910", "sL_ContLoss": "349800", "geom_point": "0101000020E610000035B3B7107BC55EC0039F490F01A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085847298999937, 49.248592609000127 ], [ -123.087735701999975, 49.248613900000102 ], [ -123.087775105999953, 49.249167109000034 ], [ -123.087757782999958, 49.249600971000113 ], [ -123.087739006999982, 49.250071410000018 ], [ -123.087721739999964, 49.250518111000105 ], [ -123.087703899999966, 49.250980204000015 ], [ -123.08576780899989, 49.250952291000033 ], [ -123.085752348999975, 49.251392670000072 ], [ -123.085736585999911, 49.251841405000057 ], [ -123.08379817899997, 49.251827691000088 ], [ -123.083804156999975, 49.251357720000065 ], [ -123.083809702999957, 49.250922801000058 ], [ -123.083826744999911, 49.250440360000034 ], [ -123.083841385999975, 49.25002558500006 ], [ -123.08385896399993, 49.249558702000108 ], [ -123.083876214999933, 49.249099602000072 ], [ -123.083892509999927, 49.248578500000093 ], [ -123.085847298999937, 49.248592609000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "534296005", "BldgCostT": "348973190", "sL_LossRatio": "0.752186969000386", "sL_AssetLoss": "2485289", "sL_BldgLoss": "1869402", "sL_StrLoss": "861142", "sL_NStrLoss": "1008260", "sL_ContLoss": "615887", "geom_point": "0101000020E61000003B7F8E87A5C55EC0FDD32DD8999F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08774818199997, 49.248061839000101 ], [ -123.087759699999978, 49.247552512000084 ], [ -123.085808312999959, 49.247529512000057 ], [ -123.085825743, 49.247020252000034 ], [ -123.085841296999931, 49.246565707000038 ], [ -123.085868054999978, 49.246004378000052 ], [ -123.085893306999964, 49.245475298000102 ], [ -123.086605697999943, 49.245481095000137 ], [ -123.087136645999948, 49.245483491000066 ], [ -123.087806995000022, 49.245486496000112 ], [ -123.088441073999945, 49.245501255000065 ], [ -123.089581010999964, 49.245527756000087 ], [ -123.090210815999953, 49.245542396000062 ], [ -123.090194197999935, 49.246618303000105 ], [ -123.090166194999981, 49.247611105000026 ], [ -123.09015528499999, 49.248662104000047 ], [ -123.08951938199999, 49.248649435000068 ], [ -123.089354268999955, 49.248646156000099 ], [ -123.087735701999975, 49.248613900000102 ], [ -123.08774818199997, 49.248061839000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "412186020", "BldgCostT": "259381188", "sL_LossRatio": "0.690802560431158", "sL_AssetLoss": "6025079", "sL_BldgLoss": "4162140", "sL_StrLoss": "1895520", "sL_NStrLoss": "2266620", "sL_ContLoss": "1862939", "geom_point": "0101000020E61000002D99CDCA93C55EC07B1111C49AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08372942499993, 49.253621105000036 ], [ -123.083735827999973, 49.253183898000039 ], [ -123.083742812999944, 49.25270899500002 ], [ -123.085707690999982, 49.252739590000019 ], [ -123.085678203000015, 49.253209545000082 ], [ -123.085650378999958, 49.253652296000077 ], [ -123.087566998999961, 49.253686105000078 ], [ -123.089239223999954, 49.253713626000057 ], [ -123.089961414999919, 49.253725496000037 ], [ -123.08995259799994, 49.254632294 ], [ -123.089913908999975, 49.255532898000091 ], [ -123.089834617999927, 49.25640359100008 ], [ -123.089186187999957, 49.256404096000054 ], [ -123.087466588, 49.25638109700003 ], [ -123.085551998999961, 49.256355600000113 ], [ -123.085570685999983, 49.25589930400016 ], [ -123.085590489999916, 49.255415298000059 ], [ -123.085636625999953, 49.254746406000024 ], [ -123.085209708999983, 49.254545687000068 ], [ -123.083718079999954, 49.25384509100013 ], [ -123.08372942499993, 49.253621105000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236766662", "BldgCostT": "147564428", "sL_LossRatio": "0.708420860635855", "sL_AssetLoss": "2417817", "sL_BldgLoss": "1712832", "sL_StrLoss": "785967", "sL_NStrLoss": "926865", "sL_ContLoss": "704985", "geom_point": "0101000020E6100000C0F8F58548C55EC0971BB0719EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081803810999972, 49.252681792000011 ], [ -123.083742812999944, 49.25270899500002 ], [ -123.083735827999973, 49.253183898000039 ], [ -123.08372942499993, 49.253621105000036 ], [ -123.083718079999954, 49.25384509100013 ], [ -123.085209708999983, 49.254545687000068 ], [ -123.085636625999953, 49.254746406000024 ], [ -123.085590489999916, 49.255415298000059 ], [ -123.085570685999983, 49.25589930400016 ], [ -123.085551998999961, 49.256355600000113 ], [ -123.0836003899999, 49.256329894000068 ], [ -123.081706610999959, 49.256302088000041 ], [ -123.079794787999987, 49.256275601 ], [ -123.079805205999946, 49.255813357000065 ], [ -123.079815511999925, 49.255357305000118 ], [ -123.079826178999966, 49.254922761000039 ], [ -123.079837506999951, 49.25446168700006 ], [ -123.07985375199992, 49.254005602000049 ], [ -123.07986970099995, 49.253557288000103 ], [ -123.081781096999975, 49.253588312000012 ], [ -123.081797995999921, 49.252948305000125 ], [ -123.081803810999972, 49.252681792000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123485032", "BldgCostT": "83820545", "sL_LossRatio": "0.807927333851726", "sL_AssetLoss": "1081549", "sL_BldgLoss": "873813", "sL_StrLoss": "413620", "sL_NStrLoss": "460193", "sL_ContLoss": "207736", "geom_point": "0101000020E6100000B45D043A51C55EC0C0879ED6E5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081482331999922, 49.257386677000042 ], [ -123.081491104999927, 49.256844789000048 ], [ -123.079781218000022, 49.256776005000077 ], [ -123.079794787999987, 49.256275601 ], [ -123.081706610999959, 49.256302088000041 ], [ -123.0836003899999, 49.256329894000068 ], [ -123.085551998999961, 49.256355600000113 ], [ -123.085517887999956, 49.257007692000059 ], [ -123.085319300999984, 49.256998696000068 ], [ -123.0853120579999, 49.25745510100009 ], [ -123.085305420999958, 49.257875693000095 ], [ -123.084877304999978, 49.25787169700007 ], [ -123.083369714999904, 49.257857602000051 ], [ -123.08147490199994, 49.257845087000071 ], [ -123.081482331999922, 49.257386677000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69540728", "BldgCostT": "44424857", "sL_LossRatio": "0.683412250575852", "sL_AssetLoss": "1084047", "sL_BldgLoss": "740851", "sL_StrLoss": "325350", "sL_NStrLoss": "415501", "sL_ContLoss": "343196", "geom_point": "0101000020E61000005FCDA6C806C55EC0771B69E3E7A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077839098, 49.256248701000047 ], [ -123.079794787999987, 49.256275601 ], [ -123.079781218000022, 49.256776005000077 ], [ -123.081491104999927, 49.256844789000048 ], [ -123.081482331999922, 49.257386677000042 ], [ -123.08147490199994, 49.257845087000071 ], [ -123.077602485999961, 49.257824113000027 ], [ -123.077071175999933, 49.257820484000078 ], [ -123.07692032199995, 49.257816412000118 ], [ -123.07625791599996, 49.257429128000105 ], [ -123.076098540999951, 49.257298702000071 ], [ -123.075903740999962, 49.25701135600012 ], [ -123.075852194000035, 49.256935324000061 ], [ -123.07580633, 49.256595404000016 ], [ -123.075807917999953, 49.256504466000074 ], [ -123.075870303000031, 49.256430493000103 ], [ -123.075880736999935, 49.256220891000062 ], [ -123.077839098, 49.256248701000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57237500", "BldgCostT": "38000000", "sL_LossRatio": "0.779246895759222", "sL_AssetLoss": "563906", "sL_BldgLoss": "439422", "sL_StrLoss": "217550", "sL_NStrLoss": "221872", "sL_ContLoss": "124484", "geom_point": "0101000020E61000000CF09BCAFBC45EC04FFE1F0EAFA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077898494999943, 49.254433505000058 ], [ -123.079837506999951, 49.25446168700006 ], [ -123.079826178999966, 49.254922761000039 ], [ -123.079815511999925, 49.255357305000118 ], [ -123.079805205999946, 49.255813357000065 ], [ -123.079794787999987, 49.256275601 ], [ -123.077839098, 49.256248701000047 ], [ -123.075880736999935, 49.256220891000062 ], [ -123.07590187199996, 49.255780018000074 ], [ -123.075923998999954, 49.25531678600003 ], [ -123.075940005999925, 49.254871381000058 ], [ -123.075956703999921, 49.254405209000055 ], [ -123.077898494999943, 49.254433505000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67964894", "BldgCostT": "42571523", "sL_LossRatio": "0.715416261658927", "sL_AssetLoss": "849778", "sL_BldgLoss": "607945", "sL_StrLoss": "288990", "sL_NStrLoss": "318955", "sL_ContLoss": "241833", "geom_point": "0101000020E6100000D2FA117515C55EC024107EFB1DA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077483208, 49.258736891000105 ], [ -123.077478476999957, 49.258484595000034 ], [ -123.077381819999971, 49.258231501000097 ], [ -123.077144491, 49.257963892000063 ], [ -123.076930040999969, 49.257822810000043 ], [ -123.07692032199995, 49.257816412000118 ], [ -123.077071175999933, 49.257820484000078 ], [ -123.077602485999961, 49.257824113000027 ], [ -123.08147490199994, 49.257845087000071 ], [ -123.081467338999985, 49.258259136000085 ], [ -123.081458103999978, 49.258766083000033 ], [ -123.081450353999941, 49.25921259299999 ], [ -123.081442397999965, 49.259671889000067 ], [ -123.078187143999983, 49.259636071000017 ], [ -123.077571203999923, 49.259629319000105 ], [ -123.077482000999936, 49.259628585000037 ], [ -123.077482639000024, 49.259160814000083 ], [ -123.077483074999975, 49.258810235000034 ], [ -123.077483208, 49.258736891000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267556789", "BldgCostT": "182498047", "sL_LossRatio": "0.798382276229612", "sL_AssetLoss": "1708079", "sL_BldgLoss": "1363700", "sL_StrLoss": "632740", "sL_NStrLoss": "730960", "sL_ContLoss": "344379", "geom_point": "0101000020E6100000AEF53DD1D2C45EC0D4262DE00EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074073188999989, 49.256535386000024 ], [ -123.07427699599998, 49.256537710000103 ], [ -123.075045720999967, 49.256567575000098 ], [ -123.075147324999961, 49.256571289000085 ], [ -123.07580633, 49.256595404000016 ], [ -123.075852194000035, 49.256935324000061 ], [ -123.075903740999962, 49.25701135600012 ], [ -123.076098540999951, 49.257298702000071 ], [ -123.07625791599996, 49.257429128000105 ], [ -123.07692032199995, 49.257816412000118 ], [ -123.076930040999969, 49.257822810000043 ], [ -123.077144491, 49.257963892000063 ], [ -123.077381819999971, 49.258231501000097 ], [ -123.077478476999957, 49.258484595000034 ], [ -123.077483208, 49.258736891000105 ], [ -123.077483074999975, 49.258810235000034 ], [ -123.077482639000024, 49.259160814000083 ], [ -123.077482000999936, 49.259628585000037 ], [ -123.076391157, 49.259631059000057 ], [ -123.075487094999986, 49.259633082000093 ], [ -123.073693406999908, 49.259606108000099 ], [ -123.073696844999986, 49.259154546000062 ], [ -123.073700184999936, 49.258714593000022 ], [ -123.073707615, 49.258237029000057 ], [ -123.073714507999952, 49.257790791000012 ], [ -123.073724196999962, 49.257463082000129 ], [ -123.07370514099992, 49.25653118900005 ], [ -123.074073188999989, 49.256535386000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "352676395", "BldgCostT": "240671524", "sL_LossRatio": "0.802268734793805", "sL_AssetLoss": "2365812", "sL_BldgLoss": "1898017", "sL_StrLoss": "867964", "sL_NStrLoss": "1030053", "sL_ContLoss": "467795", "geom_point": "0101000020E6100000427E603BD6C45EC05D38629068A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076391157, 49.259631059000057 ], [ -123.077482000999936, 49.259628585000037 ], [ -123.077481457999966, 49.260060345000056 ], [ -123.077480883999939, 49.260518590000089 ], [ -123.07748089099999, 49.260527656000086 ], [ -123.077480405999935, 49.260977883000031 ], [ -123.07748037099999, 49.260989352000145 ], [ -123.07747996199997, 49.261341442000059 ], [ -123.077479930999942, 49.261405800000091 ], [ -123.077480984999937, 49.262392172000069 ], [ -123.075584764999959, 49.262376811000102 ], [ -123.074831143, 49.262370059000091 ], [ -123.073646098000012, 49.26235940600003 ], [ -123.073654081999962, 49.261853097000085 ], [ -123.073661210999958, 49.26140140800004 ], [ -123.073668251999976, 49.260935697000058 ], [ -123.073675108000018, 49.260483898000139 ], [ -123.073684240999938, 49.260045417000043 ], [ -123.073693406999908, 49.259606108000099 ], [ -123.075487094999986, 49.259633082000093 ], [ -123.076391157, 49.259631059000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62229500", "BldgCostT": "39275000", "sL_LossRatio": "0.66237559843783", "sL_AssetLoss": "1564490", "sL_BldgLoss": "1036280", "sL_StrLoss": "374370", "sL_NStrLoss": "661910", "sL_ContLoss": "528210", "geom_point": "0101000020E6100000518A5FA915C55EC03C6C644F69A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078187143999983, 49.259636071000017 ], [ -123.081442397999965, 49.259671889000067 ], [ -123.081433895999936, 49.260112131000049 ], [ -123.081425398999968, 49.260553307000087 ], [ -123.081416328999964, 49.261011624000076 ], [ -123.081407785999914, 49.261443690000121 ], [ -123.081399198999961, 49.261920062000087 ], [ -123.081390054999957, 49.262425001000054 ], [ -123.080307481999981, 49.262415911000083 ], [ -123.077623806999938, 49.262393314000093 ], [ -123.077480984999937, 49.262392172000069 ], [ -123.077479930999942, 49.261405800000091 ], [ -123.07747996199997, 49.261341442000059 ], [ -123.07748037099999, 49.260989352000145 ], [ -123.077480405999935, 49.260977883000031 ], [ -123.07748089099999, 49.260527656000086 ], [ -123.077480883999939, 49.260518590000089 ], [ -123.077481457999966, 49.260060345000056 ], [ -123.077482000999936, 49.259628585000037 ], [ -123.077571203999923, 49.259629319000105 ], [ -123.078187143999983, 49.259636071000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135270969", "BldgCostT": "88320412", "sL_LossRatio": "0.769396309079972", "sL_AssetLoss": "1243484", "sL_BldgLoss": "956732", "sL_StrLoss": "419620", "sL_NStrLoss": "537112", "sL_ContLoss": "286752", "geom_point": "0101000020E61000005466F7A245C55EC0BEC9886E6AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081442397999965, 49.259671889000067 ], [ -123.083350513999974, 49.259692902000076 ], [ -123.083345535999953, 49.260137490000027 ], [ -123.083340700999926, 49.260568994000039 ], [ -123.083335268999946, 49.261037037000108 ], [ -123.083330423999911, 49.261455106 ], [ -123.083326232000019, 49.261936510000083 ], [ -123.083321898999912, 49.26244120100008 ], [ -123.081390054999957, 49.262425001000054 ], [ -123.081399198999961, 49.261920062000087 ], [ -123.081407785999914, 49.261443690000121 ], [ -123.081416328999964, 49.261011624000076 ], [ -123.081425398999968, 49.260553307000087 ], [ -123.081433895999936, 49.260112131000049 ], [ -123.081442397999965, 49.259671889000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94259583", "BldgCostT": "60168333", "sL_LossRatio": "0.7165787793785", "sL_AssetLoss": "1406726", "sL_BldgLoss": "1008030", "sL_StrLoss": "455290", "sL_NStrLoss": "552740", "sL_ContLoss": "398696", "geom_point": "0101000020E6100000AA3DCB7759C55EC043E5F42F28A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083345535999953, 49.260137490000027 ], [ -123.083350513999974, 49.259692902000076 ], [ -123.081442397999965, 49.259671889000067 ], [ -123.081450353999941, 49.25921259299999 ], [ -123.081458103999978, 49.258766083000033 ], [ -123.081467338999985, 49.258259136000085 ], [ -123.08147490199994, 49.257845087000071 ], [ -123.083369714999904, 49.257857602000051 ], [ -123.084877304999978, 49.25787169700007 ], [ -123.085305420999958, 49.257875693000095 ], [ -123.085373693999941, 49.257947797000028 ], [ -123.085371391999928, 49.258336929000038 ], [ -123.08536870599994, 49.258792587000059 ], [ -123.085345424999929, 49.259237809000112 ], [ -123.085320800999924, 49.259708286 ], [ -123.085300844999892, 49.260145524000102 ], [ -123.085280697999934, 49.260586298000092 ], [ -123.083340700999926, 49.260568994000039 ], [ -123.083345535999953, 49.260137490000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407454851", "BldgCostT": "277578207", "sL_LossRatio": "0.83257138078079", "sL_AssetLoss": "3909911", "sL_BldgLoss": "3255280", "sL_StrLoss": "1562880", "sL_NStrLoss": "1692400", "sL_ContLoss": "654631", "geom_point": "0101000020E61000007E116DC794C55EC0D7B5A440F2A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0853120579999, 49.25745510100009 ], [ -123.085319300999984, 49.256998696000068 ], [ -123.085517887999956, 49.257007692000059 ], [ -123.085551998999961, 49.256355600000113 ], [ -123.087466588, 49.25638109700003 ], [ -123.089186187999957, 49.256404096000054 ], [ -123.089834617999927, 49.25640359100008 ], [ -123.08978638, 49.256690596000027 ], [ -123.089713001999925, 49.256830892000075 ], [ -123.089440695999912, 49.257164011000057 ], [ -123.089277102999972, 49.257364094000103 ], [ -123.089222690999932, 49.257531112000038 ], [ -123.089209404999949, 49.257939697000083 ], [ -123.088504817999976, 49.257935284000098 ], [ -123.087252700999898, 49.257927398000028 ], [ -123.087247944999973, 49.258353489000051 ], [ -123.087242891999963, 49.258805406000114 ], [ -123.08536870599994, 49.258792587000059 ], [ -123.085371391999928, 49.258336929000038 ], [ -123.085373693999941, 49.257947797000028 ], [ -123.085305420999958, 49.257875693000095 ], [ -123.0853120579999, 49.25745510100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204364747", "BldgCostT": "132029467", "sL_LossRatio": "0.724711796801323", "sL_AssetLoss": "3298801", "sL_BldgLoss": "2390680", "sL_StrLoss": "1036340", "sL_NStrLoss": "1354340", "sL_ContLoss": "908121", "geom_point": "0101000020E6100000BD8FF53715C55EC01F15FF77C4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080307481999981, 49.262415911000083 ], [ -123.081390054999957, 49.262425001000054 ], [ -123.081359593999949, 49.262909725000128 ], [ -123.081331108999919, 49.263362004000122 ], [ -123.081327956999957, 49.263817702000019 ], [ -123.081324795999933, 49.264269787000075 ], [ -123.08130638599998, 49.265240294000087 ], [ -123.079401985999965, 49.265199599000056 ], [ -123.078015499999978, 49.265182316000079 ], [ -123.077429305999928, 49.265174987000073 ], [ -123.077461734999972, 49.264647807000117 ], [ -123.077474417999966, 49.26444172500004 ], [ -123.077487208999969, 49.264234410000036 ], [ -123.077527579999966, 49.26333201000007 ], [ -123.077539639999912, 49.262876478000067 ], [ -123.077547494999934, 49.262579513000041 ], [ -123.077480719000022, 49.262484020000052 ], [ -123.077480984999937, 49.262392172000069 ], [ -123.077623806999938, 49.262393314000093 ], [ -123.080307481999981, 49.262415911000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235030728", "BldgCostT": "162304857", "sL_LossRatio": "0.815797648509886", "sL_AssetLoss": "1744766", "sL_BldgLoss": "1423376", "sL_StrLoss": "612380", "sL_NStrLoss": "810996", "sL_ContLoss": "321390", "geom_point": "0101000020E610000017FD6F5FE6C45EC0C4CC2EADC0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075584764999959, 49.262376811000102 ], [ -123.077480984999937, 49.262392172000069 ], [ -123.077480719000022, 49.262484020000052 ], [ -123.077547494999934, 49.262579513000041 ], [ -123.077539639999912, 49.262876478000067 ], [ -123.077527579999966, 49.26333201000007 ], [ -123.077487208999969, 49.264234410000036 ], [ -123.077474417999966, 49.26444172500004 ], [ -123.077461734999972, 49.264647807000117 ], [ -123.077429305999928, 49.265174987000073 ], [ -123.077148883999925, 49.265134103000072 ], [ -123.076793130999988, 49.26511451100005 ], [ -123.076760112999978, 49.265112703000071 ], [ -123.076481116999972, 49.265048403000108 ], [ -123.075745180999945, 49.264800601000026 ], [ -123.075554675999953, 49.264706293000096 ], [ -123.075555773999895, 49.264603396000055 ], [ -123.075557843999889, 49.264404876000086 ], [ -123.07555989299999, 49.264210096000099 ], [ -123.07556667599998, 49.263776943000074 ], [ -123.075573903999953, 49.263312408000019 ], [ -123.075579279999985, 49.262850358000065 ], [ -123.075584764999959, 49.262376811000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203429696", "BldgCostT": "132020268", "sL_LossRatio": "0.717539657191526", "sL_AssetLoss": "1878600", "sL_BldgLoss": "1347970", "sL_StrLoss": "586650", "sL_NStrLoss": "761320", "sL_ContLoss": "530630", "geom_point": "0101000020E6100000800C3E49D1C45EC0C0E97ECA08A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074825663999889, 49.263303592000042 ], [ -123.075573903999953, 49.263312408000019 ], [ -123.07556667599998, 49.263776943000074 ], [ -123.07555989299999, 49.264210096000099 ], [ -123.075557843999889, 49.264404876000086 ], [ -123.075555773999895, 49.264603396000055 ], [ -123.075554675999953, 49.264706293000096 ], [ -123.075745180999945, 49.264800601000026 ], [ -123.076481116999972, 49.265048403000108 ], [ -123.076760112999978, 49.265112703000071 ], [ -123.076793130999988, 49.26511451100005 ], [ -123.077148883999925, 49.265134103000072 ], [ -123.077429305999928, 49.265174987000073 ], [ -123.077421717999954, 49.265673275000069 ], [ -123.077419316999951, 49.265830396000077 ], [ -123.07741895699999, 49.265853148000083 ], [ -123.077415110999965, 49.266105094000103 ], [ -123.077412190999937, 49.26629688900006 ], [ -123.077408299999945, 49.266925500000092 ], [ -123.077380308999977, 49.267849795000068 ], [ -123.076688052999941, 49.267846962000078 ], [ -123.075459990999917, 49.267841898 ], [ -123.073541696999897, 49.267825090000052 ], [ -123.073550170999951, 49.267376127000055 ], [ -123.07355930199995, 49.266892387000013 ], [ -123.073567750999956, 49.266449674000114 ], [ -123.073575996999963, 49.266019104000037 ], [ -123.073585731999955, 49.265567924000045 ], [ -123.073595298999948, 49.265125112000085 ], [ -123.07398241199995, 49.265130195 ], [ -123.073598901999915, 49.265001808000143 ], [ -123.073599384999966, 49.264974350000095 ], [ -123.073601141999973, 49.264875422000024 ], [ -123.073606998999978, 49.264542515000052 ], [ -123.073608303999976, 49.264467595000063 ], [ -123.07360996499996, 49.264374444000062 ], [ -123.07361328899999, 49.264185199000032 ], [ -123.073621900999967, 49.263760103000031 ], [ -123.07363141399999, 49.263289499000066 ], [ -123.074825663999889, 49.263303592000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "517233091", "BldgCostT": "284322301", "sL_LossRatio": "0.578823964033276", "sL_AssetLoss": "29505050", "sL_BldgLoss": "17078230", "sL_StrLoss": "6502530", "sL_NStrLoss": "10575700", "sL_ContLoss": "12426820", "geom_point": "0101000020E610000070B73AC6B6C55EC07B6F2CC561A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081759754999936, 49.269714058000076 ], [ -123.081660588999981, 49.269698699000081 ], [ -123.08141094299999, 49.269691956000095 ], [ -123.080718773999962, 49.269684329000071 ], [ -123.080265267999906, 49.269679323000076 ], [ -123.080058918999924, 49.269677032000061 ], [ -123.079839040999943, 49.269674603000112 ], [ -123.078818693999921, 49.269663296000068 ], [ -123.078450748999927, 49.269659711000095 ], [ -123.077365887999974, 49.269649108000074 ], [ -123.077385200999927, 49.268754287000057 ], [ -123.077382983999968, 49.268348437000057 ], [ -123.077380308999977, 49.267849795000068 ], [ -123.077408299999945, 49.266925500000092 ], [ -123.077412190999937, 49.26629688900006 ], [ -123.077415110999965, 49.266105094000103 ], [ -123.07741895699999, 49.265853148000083 ], [ -123.077419316999951, 49.265830396000077 ], [ -123.077421717999954, 49.265673275000069 ], [ -123.077429305999928, 49.265174987000073 ], [ -123.078015499999978, 49.265182316000079 ], [ -123.079401985999965, 49.265199599000056 ], [ -123.08130638599998, 49.265240294000087 ], [ -123.081592184999948, 49.265261500000094 ], [ -123.084511497000022, 49.265821117000065 ], [ -123.084710383999891, 49.265859242000033 ], [ -123.084966335999951, 49.265908316000036 ], [ -123.086553908999917, 49.266212611000071 ], [ -123.089053093999937, 49.266691693000048 ], [ -123.089080904999946, 49.266139390000049 ], [ -123.08908492899999, 49.265683063000026 ], [ -123.08908901199996, 49.26522260400003 ], [ -123.091007725999987, 49.265252799000116 ], [ -123.091006764999975, 49.265672485000046 ], [ -123.091005709999962, 49.266161607000143 ], [ -123.092929199999958, 49.266160190000072 ], [ -123.093468215999962, 49.266165945000061 ], [ -123.094865090999917, 49.266180786000056 ], [ -123.095652503999986, 49.266221894000047 ], [ -123.095815195999975, 49.266365894000089 ], [ -123.096130220999967, 49.266557202000108 ], [ -123.096304582999934, 49.266624010000022 ], [ -123.096206078999955, 49.26686009800008 ], [ -123.096692987999973, 49.266982197000061 ], [ -123.097171809999963, 49.267190498000097 ], [ -123.09820239199999, 49.267738006000044 ], [ -123.099071398999968, 49.268275616000089 ], [ -123.09919360799999, 49.268298703000042 ], [ -123.099688393999955, 49.268582285000086 ], [ -123.10023030799999, 49.268857978000071 ], [ -123.100633119999927, 49.269008478000032 ], [ -123.100630720999987, 49.269112 ], [ -123.100775580999979, 49.269146494000076 ], [ -123.100756151999988, 49.269631215000054 ], [ -123.100736232999964, 49.27012815200009 ], [ -123.100602011, 49.270121896000099 ], [ -123.100596076999977, 49.270342053000078 ], [ -123.10059159799999, 49.270507107000114 ], [ -123.100586193999973, 49.270704187000099 ], [ -123.100269833999931, 49.27136761000007 ], [ -123.100212325999934, 49.271488227000084 ], [ -123.100020028999978, 49.271891499000034 ], [ -123.099939090999939, 49.272745890000081 ], [ -123.099937831999981, 49.27277123600004 ], [ -123.099937298999961, 49.272782475000035 ], [ -123.099933714999977, 49.272855587000052 ], [ -123.099252758999953, 49.272745548000039 ], [ -123.098616896999957, 49.272642796000085 ], [ -123.098429668999955, 49.27261002500007 ], [ -123.0981063669999, 49.272553410000029 ], [ -123.097701696999977, 49.272482570000136 ], [ -123.095467677000016, 49.272091407000083 ], [ -123.094441516999936, 49.271911711000016 ], [ -123.093319113999954, 49.271734586000065 ], [ -123.090801393999953, 49.271308797000103 ], [ -123.089483480999931, 49.271085862000056 ], [ -123.087421088, 49.270737010000019 ], [ -123.084848645999926, 49.270282981000051 ], [ -123.083745634, 49.270091356000137 ], [ -123.082497271999941, 49.269874446000088 ], [ -123.082372235999969, 49.269808910000023 ], [ -123.081787395, 49.269718332000068 ], [ -123.081759754999936, 49.269714058000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "445718283", "BldgCostT": "250218094", "sL_LossRatio": "0.573322447020721", "sL_AssetLoss": "26504230", "sL_BldgLoss": "15195470", "sL_StrLoss": "5406570", "sL_NStrLoss": "9788900", "sL_ContLoss": "11308760", "geom_point": "0101000020E6100000D80B8133A3C55EC0B1EEEB3C01A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.084959200999933, 49.277400001000117 ], [ -123.084998324999944, 49.276493098000032 ], [ -123.087354608999959, 49.276543197000102 ], [ -123.087354954999938, 49.276534183000088 ], [ -123.087432907999968, 49.274640285000018 ], [ -123.086894543999946, 49.274459475000093 ], [ -123.086071091999926, 49.274182899000053 ], [ -123.085905772, 49.274114012000027 ], [ -123.085084223999928, 49.273771596000188 ], [ -123.08404081299993, 49.273428201000108 ], [ -123.083313890999975, 49.273231992000042 ], [ -123.082755686999917, 49.273150194000046 ], [ -123.08236911299997, 49.273113703000028 ], [ -123.08145652099995, 49.273094402000041 ], [ -123.081436002999936, 49.274097286000043 ], [ -123.08143471299995, 49.274226996000053 ], [ -123.081409702999935, 49.275804394000026 ], [ -123.081400291999927, 49.275910410000073 ], [ -123.080948275999944, 49.27590311300002 ], [ -123.080661224999972, 49.275898469000055 ], [ -123.079999985999933, 49.275887802000099 ], [ -123.07945321299999, 49.275886594000085 ], [ -123.078630200999939, 49.275884099000116 ], [ -123.077288101999926, 49.275855012000072 ], [ -123.077297605999888, 49.27494100400002 ], [ -123.077298580999951, 49.274452825000026 ], [ -123.077299396999976, 49.274040309000029 ], [ -123.077315507999941, 49.273130091000034 ], [ -123.077338490999978, 49.271501194000031 ], [ -123.077346275999957, 49.271016559000039 ], [ -123.077349334999894, 49.270823401000015 ], [ -123.077353489, 49.270564898000018 ], [ -123.077359816999945, 49.270099055000088 ], [ -123.077365887999974, 49.269649108000074 ], [ -123.078450748999927, 49.269659711000095 ], [ -123.078818693999921, 49.269663296000068 ], [ -123.079839040999943, 49.269674603000112 ], [ -123.080058918999924, 49.269677032000061 ], [ -123.080265267999906, 49.269679323000076 ], [ -123.080718773999962, 49.269684329000071 ], [ -123.08141094299999, 49.269691956000095 ], [ -123.081660588999981, 49.269698699000081 ], [ -123.081759754999936, 49.269714058000076 ], [ -123.081787395, 49.269718332000068 ], [ -123.082372235999969, 49.269808910000023 ], [ -123.082497271999941, 49.269874446000088 ], [ -123.083745634, 49.270091356000137 ], [ -123.084848645999926, 49.270282981000051 ], [ -123.087421088, 49.270737010000019 ], [ -123.089483480999931, 49.271085862000056 ], [ -123.090801393999953, 49.271308797000103 ], [ -123.093319113999954, 49.271734586000065 ], [ -123.094441516999936, 49.271911711000016 ], [ -123.095467677000016, 49.272091407000083 ], [ -123.097701696999977, 49.272482570000136 ], [ -123.0981063669999, 49.272553410000029 ], [ -123.098429668999955, 49.27261002500007 ], [ -123.098616896999957, 49.272642796000085 ], [ -123.099252758999953, 49.272745548000039 ], [ -123.099933714999977, 49.272855587000052 ], [ -123.099927344999969, 49.273014188000047 ], [ -123.099924466999965, 49.273086091000039 ], [ -123.099923017999984, 49.273122060000027 ], [ -123.099872918999978, 49.274372461000084 ], [ -123.099850502999928, 49.274932305000043 ], [ -123.099836225999979, 49.275311114000061 ], [ -123.099830590999943, 49.275460857000105 ], [ -123.099809734999937, 49.276014705000065 ], [ -123.099781688999897, 49.276758006000087 ], [ -123.099016529999957, 49.276732083000113 ], [ -123.096861631999957, 49.276674944000085 ], [ -123.096806653999977, 49.276673501000062 ], [ -123.096626644999972, 49.276668725 ], [ -123.096279566999925, 49.276659403000025 ], [ -123.096153352999949, 49.2767001120001 ], [ -123.095587438999956, 49.276695714000034 ], [ -123.093626601999958, 49.276672691000023 ], [ -123.093634000999913, 49.276445003000056 ], [ -123.09358189999989, 49.276244484000074 ], [ -123.093330087999931, 49.275878309000092 ], [ -123.093320938, 49.275870982000122 ], [ -123.09320180499995, 49.27577579600009 ], [ -123.091764207999987, 49.275757795000132 ], [ -123.090289195999958, 49.275722505000033 ], [ -123.090068693999967, 49.275841790000065 ], [ -123.08987331, 49.276064383000026 ], [ -123.089762095999959, 49.276282094000067 ], [ -123.089737198999956, 49.27659220800011 ], [ -123.089718015999907, 49.27702562900005 ], [ -123.089697917999942, 49.277481008000073 ], [ -123.087734300999955, 49.277456904000076 ], [ -123.087298584999985, 49.277436114000061 ], [ -123.084959200999933, 49.277400001000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60039833", "BldgCostT": "39023333", "sL_LossRatio": "0.700537484110197", "sL_AssetLoss": "947935", "sL_BldgLoss": "664064", "sL_StrLoss": "273570", "sL_NStrLoss": "390494", "sL_ContLoss": "283871", "geom_point": "0101000020E61000007F07509DD8C55EC091248C8F64A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091764207999987, 49.275757795000132 ], [ -123.09320180499995, 49.27577579600009 ], [ -123.093320938, 49.275870982000122 ], [ -123.093330087999931, 49.275878309000092 ], [ -123.09358189999989, 49.276244484000074 ], [ -123.093634000999913, 49.276445003000056 ], [ -123.093626601999958, 49.276672691000023 ], [ -123.093282607999953, 49.276665663000045 ], [ -123.091674978999933, 49.276632702 ], [ -123.091661475999956, 49.277060121000019 ], [ -123.091647115999976, 49.277514697000079 ], [ -123.089697917999942, 49.277481008000073 ], [ -123.089718015999907, 49.27702562900005 ], [ -123.089737198999956, 49.27659220800011 ], [ -123.089762095999959, 49.276282094000067 ], [ -123.08987331, 49.276064383000026 ], [ -123.090068693999967, 49.275841790000065 ], [ -123.090289195999958, 49.275722505000033 ], [ -123.091764207999987, 49.275757795000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28294416", "BldgCostT": "19041666", "sL_LossRatio": "0.70752195966844", "sL_AssetLoss": "808300", "sL_BldgLoss": "571890", "sL_StrLoss": "227120", "sL_NStrLoss": "344770", "sL_ContLoss": "236410", "geom_point": "0101000020E61000008BFD6D68EDC55EC05E7ED8B986A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093282607999953, 49.276665663000045 ], [ -123.093626601999958, 49.276672691000023 ], [ -123.093621720000016, 49.276787869000088 ], [ -123.093607920999958, 49.277111697000059 ], [ -123.093588897999965, 49.277558902000052 ], [ -123.093569527999961, 49.277994067000066 ], [ -123.0935486, 49.278464801000098 ], [ -123.093257867999938, 49.278459259000044 ], [ -123.091603591999899, 49.27842771600006 ], [ -123.091624634999988, 49.277986228000039 ], [ -123.091647115999976, 49.277514697000079 ], [ -123.091661475999956, 49.277060121000019 ], [ -123.091674978999933, 49.276632702 ], [ -123.093282607999953, 49.276665663000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139074624", "BldgCostT": "92651382", "sL_LossRatio": "0.696594290265134", "sL_AssetLoss": "1808140", "sL_BldgLoss": "1259540", "sL_StrLoss": "484970", "sL_NStrLoss": "774570", "sL_ContLoss": "548600", "geom_point": "0101000020E61000003EDB0662D7C55EC054C50923A8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089661338999917, 49.278391613000032 ], [ -123.089678620999948, 49.277960662000055 ], [ -123.089697917999942, 49.277481008000073 ], [ -123.091647115999976, 49.277514697000079 ], [ -123.091624634999988, 49.277986228000039 ], [ -123.091603591999899, 49.27842771600006 ], [ -123.093257867999938, 49.278459259000044 ], [ -123.0935486, 49.278464801000098 ], [ -123.09352909499998, 49.278920311 ], [ -123.093509998999949, 49.27936628900008 ], [ -123.093245684999914, 49.279361391000087 ], [ -123.091563526999948, 49.279330080000094 ], [ -123.089812953999967, 49.279304528000075 ], [ -123.089685085000028, 49.279261439000109 ], [ -123.089612121999963, 49.279175734000063 ], [ -123.089631351, 49.278869204000031 ], [ -123.089661338999917, 49.278391613000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94814061", "BldgCostT": "63788190", "sL_LossRatio": "0.807553196375804", "sL_AssetLoss": "849071", "sL_BldgLoss": "685670", "sL_StrLoss": "304480", "sL_NStrLoss": "381190", "sL_ContLoss": "163401", "geom_point": "0101000020E6100000AE38079519C65EC04E251322A6A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0935486, 49.278464801000098 ], [ -123.093569527999961, 49.277994067000066 ], [ -123.093588897999965, 49.277558902000052 ], [ -123.095534101999988, 49.27759230800006 ], [ -123.096963066999962, 49.2776172310001 ], [ -123.097016549, 49.278089683000168 ], [ -123.097066609999985, 49.278531603000104 ], [ -123.097128727999959, 49.278991384000108 ], [ -123.097188681999953, 49.27943559199999 ], [ -123.096065090999915, 49.279414448000068 ], [ -123.095460265000014, 49.279403059000032 ], [ -123.093509998999949, 49.27936628900008 ], [ -123.09352909499998, 49.278920311 ], [ -123.0935486, 49.278464801000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36431395", "BldgCostT": "23921524", "sL_LossRatio": "0.70859464546971", "sL_AssetLoss": "643866", "sL_BldgLoss": "456240", "sL_StrLoss": "210590", "sL_NStrLoss": "245650", "sL_ContLoss": "187626", "geom_point": "0101000020E6100000E1CCC01219C65EC085F9974979A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096279566999925, 49.276659403000025 ], [ -123.096626644999972, 49.276668725 ], [ -123.096879156999961, 49.276696227000095 ], [ -123.096886851, 49.276792804000173 ], [ -123.096921815999949, 49.277171091000127 ], [ -123.096963066999962, 49.2776172310001 ], [ -123.095534101999988, 49.27759230800006 ], [ -123.093588897999965, 49.277558902000052 ], [ -123.093607920999958, 49.277111697000059 ], [ -123.093621720000016, 49.276787869000088 ], [ -123.093626601999958, 49.276672691000023 ], [ -123.095587438999956, 49.276695714000034 ], [ -123.096153352999949, 49.2767001120001 ], [ -123.096279566999925, 49.276659403000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "920411674", "BldgCostT": "602162499", "sL_LossRatio": "0.727791809813381", "sL_AssetLoss": "9189290", "sL_BldgLoss": "6687890", "sL_StrLoss": "2865670", "sL_NStrLoss": "3822220", "sL_ContLoss": "2501400", "geom_point": "0101000020E6100000141CEC4D4CC65EC001C99640A5A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096861631999957, 49.276674944000085 ], [ -123.099016529999957, 49.276732083000113 ], [ -123.099781688999897, 49.276758006000087 ], [ -123.099768009999963, 49.277086448000077 ], [ -123.099762867999942, 49.277279062000034 ], [ -123.099733608999927, 49.277570990000086 ], [ -123.099722222999958, 49.277674099000073 ], [ -123.099721012999936, 49.277685110000085 ], [ -123.099719904999944, 49.278009300000043 ], [ -123.09978634, 49.278061298000111 ], [ -123.099811613999961, 49.278081097000097 ], [ -123.099771483999973, 49.278569102000056 ], [ -123.099737721999958, 49.279482509000054 ], [ -123.09969940399999, 49.280381297000076 ], [ -123.098913022999966, 49.280366359000077 ], [ -123.097304093999981, 49.280335791000034 ], [ -123.097247189999905, 49.279891827000029 ], [ -123.097188681999953, 49.27943559199999 ], [ -123.097128727999959, 49.278991384000108 ], [ -123.097066609999985, 49.278531603000104 ], [ -123.097016549, 49.278089683000168 ], [ -123.096963066999962, 49.2776172310001 ], [ -123.096921815999949, 49.277171091000127 ], [ -123.096886851, 49.276792804000173 ], [ -123.096879156999961, 49.276696227000095 ], [ -123.096626644999972, 49.276668725 ], [ -123.096806653999977, 49.276673501000062 ], [ -123.096861631999957, 49.276674944000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179249584", "BldgCostT": "119958334", "sL_LossRatio": "0.76170765486968", "sL_AssetLoss": "1278010", "sL_BldgLoss": "973470", "sL_StrLoss": "425680", "sL_NStrLoss": "547790", "sL_ContLoss": "304540", "geom_point": "0101000020E61000003F72F77B1AC65EC02E88273FD2A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093509998999949, 49.27936628900008 ], [ -123.095460265000014, 49.279403059000032 ], [ -123.096065090999915, 49.279414448000068 ], [ -123.097188681999953, 49.27943559199999 ], [ -123.097247189999905, 49.279891827000029 ], [ -123.097304093999981, 49.280335791000034 ], [ -123.096421962999941, 49.28031804900013 ], [ -123.096146956999974, 49.280312521000035 ], [ -123.096053318999907, 49.280310630000052 ], [ -123.095441508999983, 49.280298295000122 ], [ -123.093473802999981, 49.280271488000082 ], [ -123.093492225999924, 49.279810669000064 ], [ -123.093509998999949, 49.27936628900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155462467", "BldgCostT": "81748721", "sL_LossRatio": "0.597542377268184", "sL_AssetLoss": "2511370", "sL_BldgLoss": "1500650", "sL_StrLoss": "570190", "sL_NStrLoss": "930460", "sL_ContLoss": "1010720", "geom_point": "0101000020E6100000BE2ADC342EC65EC07D1BA38EF1A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098913022999966, 49.280366359000077 ], [ -123.09969940399999, 49.280381297000076 ], [ -123.099687082999964, 49.281347401000055 ], [ -123.098874049999921, 49.281334782000044 ], [ -123.097465604999982, 49.281312900000025 ], [ -123.095406516999986, 49.281274686000138 ], [ -123.093427006999931, 49.281237584000053 ], [ -123.093451670999954, 49.280728153000034 ], [ -123.093473802999981, 49.280271488000082 ], [ -123.095441508999983, 49.280298295000122 ], [ -123.096053318999907, 49.280310630000052 ], [ -123.096146956999974, 49.280312521000035 ], [ -123.096421962999941, 49.28031804900013 ], [ -123.097304093999981, 49.280335791000034 ], [ -123.098913022999966, 49.280366359000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "345517333", "BldgCostT": "229602348", "sL_LossRatio": "0.757531488135192", "sL_AssetLoss": "2279430", "sL_BldgLoss": "1726740", "sL_StrLoss": "759240", "sL_NStrLoss": "967500", "sL_ContLoss": "552690", "geom_point": "0101000020E6100000583E2E1E1CC65EC0F37A724510A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095406516999986, 49.281274686000138 ], [ -123.097465604999982, 49.281312900000025 ], [ -123.097532001999966, 49.281805021000118 ], [ -123.097592299999917, 49.28225220700002 ], [ -123.097447164999906, 49.282249167000032 ], [ -123.097350700999954, 49.282247155000078 ], [ -123.096854848999897, 49.28223683700007 ], [ -123.096570404999952, 49.282230904000066 ], [ -123.096295342999952, 49.282225159000077 ], [ -123.09599829699999, 49.282218966000059 ], [ -123.095365987999941, 49.28220580000005 ], [ -123.095340594999954, 49.282205438000069 ], [ -123.093594590999942, 49.282180674000124 ], [ -123.09338461499999, 49.282177705000059 ], [ -123.093403341999974, 49.281762474000097 ], [ -123.093427006999931, 49.281237584000053 ], [ -123.095406516999986, 49.281274686000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202739622", "BldgCostT": "131026380", "sL_LossRatio": "0.687478888418253", "sL_AssetLoss": "1865090", "sL_BldgLoss": "1282210", "sL_StrLoss": "508720", "sL_NStrLoss": "773490", "sL_ContLoss": "582880", "geom_point": "0101000020E6100000B68A176E2DC65EC010CA7F713EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097447164999906, 49.282249167000032 ], [ -123.097592299999917, 49.28225220700002 ], [ -123.097652216999933, 49.282696525000098 ], [ -123.097714275999934, 49.283157095000021 ], [ -123.09777539199996, 49.283614060000026 ], [ -123.097836003999959, 49.284067410000034 ], [ -123.096750296999943, 49.284045869000067 ], [ -123.096289420999952, 49.28403675300008 ], [ -123.095293806999962, 49.284016991000051 ], [ -123.095311994999975, 49.283560642000097 ], [ -123.095329917999891, 49.283111008000077 ], [ -123.095346778999897, 49.282687730000156 ], [ -123.095365987999941, 49.28220580000005 ], [ -123.09599829699999, 49.282218966000059 ], [ -123.096295342999952, 49.282225159000077 ], [ -123.096570404999952, 49.282230904000066 ], [ -123.096854848999897, 49.28223683700007 ], [ -123.097350700999954, 49.282247155000078 ], [ -123.097447164999906, 49.282249167000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "564309683", "BldgCostT": "350273339", "sL_LossRatio": "0.72915305900283", "sL_AssetLoss": "4684860", "sL_BldgLoss": "3415980", "sL_StrLoss": "1505950", "sL_NStrLoss": "1910030", "sL_ContLoss": "1268880", "geom_point": "0101000020E6100000C7875F9829C65EC06A1AF40862A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095237750999928, 49.285350396000126 ], [ -123.095250269999909, 49.284865233000069 ], [ -123.094921971999923, 49.284905045000144 ], [ -123.09381066899999, 49.284874216000084 ], [ -123.093272513, 49.284755307000069 ], [ -123.093305407999964, 49.283988694000065 ], [ -123.093326098999952, 49.28352561800007 ], [ -123.09334630699999, 49.283073792000089 ], [ -123.095329917999891, 49.283111008000077 ], [ -123.095311994999975, 49.283560642000097 ], [ -123.095293806999962, 49.284016991000051 ], [ -123.096289420999952, 49.28403675300008 ], [ -123.096750296999943, 49.284045869000067 ], [ -123.097836003999959, 49.284067410000034 ], [ -123.09777539199996, 49.283614060000026 ], [ -123.097714275999934, 49.283157095000021 ], [ -123.099560694999965, 49.283192286000094 ], [ -123.09952683799996, 49.283637041000098 ], [ -123.099491193999967, 49.284104704000072 ], [ -123.09944379699999, 49.28424840900005 ], [ -123.099179881999987, 49.284577305000013 ], [ -123.099166403999973, 49.284652336000121 ], [ -123.09914618, 49.284764604000081 ], [ -123.099176210999957, 49.284855503000031 ], [ -123.098819448999961, 49.284934187000054 ], [ -123.098495908999936, 49.284943503000086 ], [ -123.098018478999933, 49.284995533000078 ], [ -123.097996108, 49.285000617000094 ], [ -123.096537733999966, 49.285332222000108 ], [ -123.095911955999952, 49.285448695000071 ], [ -123.095229901, 49.285629405000051 ], [ -123.094760006999962, 49.285626666000084 ], [ -123.095237750999928, 49.285350396000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245021561", "BldgCostT": "164428190", "sL_LossRatio": "0.770558375634518", "sL_AssetLoss": "1871500", "sL_BldgLoss": "1442100", "sL_StrLoss": "612520", "sL_NStrLoss": "829580", "sL_ContLoss": "429400", "geom_point": "0101000020E6100000CE9CFD9A4FC65EC0C49E03EC1FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098874049999921, 49.281334782000044 ], [ -123.099687082999964, 49.281347401000055 ], [ -123.099630893, 49.282289018000036 ], [ -123.099560694999965, 49.283192286000094 ], [ -123.097714275999934, 49.283157095000021 ], [ -123.097652216999933, 49.282696525000098 ], [ -123.097592299999917, 49.28225220700002 ], [ -123.097532001999966, 49.281805021000118 ], [ -123.097465604999982, 49.281312900000025 ], [ -123.098874049999921, 49.281334782000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "367997083", "BldgCostT": "253108333", "sL_LossRatio": "0.871898980785072", "sL_AssetLoss": "891078", "sL_BldgLoss": "776930", "sL_StrLoss": "438780", "sL_NStrLoss": "338150", "sL_ContLoss": "114148", "geom_point": "0101000020E61000009AB57F2B7AC75EC07D6DCBBA5EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115575086999939, 49.276538093000056 ], [ -123.116272435999974, 49.276083993000114 ], [ -123.117084497999926, 49.275555190000041 ], [ -123.117146252999987, 49.275512743000078 ], [ -123.117180611999956, 49.275533061000068 ], [ -123.11803164199992, 49.27603626500008 ], [ -123.117936820999944, 49.276103093000053 ], [ -123.11790248299998, 49.276212972000032 ], [ -123.116625040999963, 49.277111096000048 ], [ -123.116587147999951, 49.277167734000031 ], [ -123.11600551399998, 49.276805878000033 ], [ -123.115575086999939, 49.276538093000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284825200", "BldgCostT": "185447213", "sL_LossRatio": "0.829972454277162", "sL_AssetLoss": "620423", "sL_BldgLoss": "514934", "sL_StrLoss": "307720", "sL_NStrLoss": "207214", "sL_ContLoss": "105489", "geom_point": "0101000020E6100000F5306AADDEC75EC0148C8C0657A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121673787999953, 49.276291102000059 ], [ -123.123273473999959, 49.275246598000116 ], [ -123.123710354999986, 49.275532606000063 ], [ -123.124257308999987, 49.275890707000073 ], [ -123.124132283999955, 49.27597319800001 ], [ -123.123850530999974, 49.276159049000093 ], [ -123.122664101999987, 49.276941683000089 ], [ -123.12218272699999, 49.276625481000082 ], [ -123.121673787999953, 49.276291102000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1009860625", "BldgCostT": "673835928", "sL_LossRatio": "0.757224078446045", "sL_AssetLoss": "3378424", "sL_BldgLoss": "2558224", "sL_StrLoss": "1176810", "sL_NStrLoss": "1381414", "sL_ContLoss": "820200", "geom_point": "0101000020E610000004B6CEE8DCC75EC0A311AFC298A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120093897999965, 49.277347788000021 ], [ -123.121673787999953, 49.276291102000059 ], [ -123.12218272699999, 49.276625481000082 ], [ -123.122664101999987, 49.276941683000089 ], [ -123.123127706999924, 49.277229660000124 ], [ -123.123614093, 49.277531799000066 ], [ -123.124109163999918, 49.277865961000018 ], [ -123.124606014999955, 49.278201307000124 ], [ -123.125140739999978, 49.278540047000078 ], [ -123.125624200999965, 49.278846305000037 ], [ -123.124039690999922, 49.27990929200012 ], [ -123.123533937999952, 49.279576760000069 ], [ -123.123040205999985, 49.279252096000086 ], [ -123.122495067999978, 49.278907308000107 ], [ -123.122011398999987, 49.278601407000011 ], [ -123.121562851999983, 49.278302840000059 ], [ -123.121081008999951, 49.277982095000034 ], [ -123.12069885699999, 49.277736559000033 ], [ -123.120593138999965, 49.277668625000061 ], [ -123.120093897999965, 49.277347788000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191517171", "BldgCostT": "125864862", "sL_LossRatio": "0.765028434288099", "sL_AssetLoss": "766680", "sL_BldgLoss": "586532", "sL_StrLoss": "242480", "sL_NStrLoss": "344052", "sL_ContLoss": "180148", "geom_point": "0101000020E6100000F1F9071505C85EC0DBC3EAD1CCA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124039690999922, 49.27990929200012 ], [ -123.125624200999965, 49.278846305000037 ], [ -123.126111440999978, 49.279154827000056 ], [ -123.126589489999944, 49.279457497000074 ], [ -123.124983413, 49.28053610500006 ], [ -123.124039690999922, 49.27990929200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146121553", "BldgCostT": "88758746", "sL_LossRatio": "0.711262222814009", "sL_AssetLoss": "1186613", "sL_BldgLoss": "843993", "sL_StrLoss": "318690", "sL_NStrLoss": "525303", "sL_ContLoss": "342620", "geom_point": "0101000020E610000013356EBD28C85EC09DB9F21F73A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126192121999978, 49.277154590000087 ], [ -123.127010609999942, 49.276603547 ], [ -123.127762286999925, 49.276097508000056 ], [ -123.128383515999985, 49.276494988000074 ], [ -123.128786482999914, 49.276755210000054 ], [ -123.128028863999987, 49.277253451000092 ], [ -123.127193609999949, 49.277802701000027 ], [ -123.126766985999978, 49.277526635000065 ], [ -123.126192121999978, 49.277154590000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "915644518", "BldgCostT": "612512017", "sL_LossRatio": "0.806205998852296", "sL_AssetLoss": "2786433", "sL_BldgLoss": "2246439", "sL_StrLoss": "1183130", "sL_NStrLoss": "1063309", "sL_ContLoss": "539994", "geom_point": "0101000020E610000066861AA632C85EC0C92B84933CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125829302999961, 49.27482739200007 ], [ -123.12740949499999, 49.273806604000107 ], [ -123.127892107999941, 49.274138826000055 ], [ -123.128322791999949, 49.274435304000107 ], [ -123.128558103999964, 49.274585605000027 ], [ -123.129085590999978, 49.274920285000128 ], [ -123.129291687999981, 49.275054597000114 ], [ -123.129409496999969, 49.275127098000056 ], [ -123.129631486999955, 49.275270806000066 ], [ -123.13017539799999, 49.275585208000052 ], [ -123.130281497999945, 49.275651893000067 ], [ -123.130380405999972, 49.275714038000068 ], [ -123.130370565999939, 49.275720429000053 ], [ -123.129603092999957, 49.276217596000052 ], [ -123.128786482999914, 49.276755210000054 ], [ -123.128383515999985, 49.276494988000074 ], [ -123.127762286999925, 49.276097508000056 ], [ -123.127271927999956, 49.275771370000058 ], [ -123.127169680999884, 49.275703393000121 ], [ -123.126773001999965, 49.275452405000081 ], [ -123.126313532999973, 49.275148090000044 ], [ -123.125829302999961, 49.27482739200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108224593", "BldgCostT": "66938763", "sL_LossRatio": "0.625901775804661", "sL_AssetLoss": "720800", "sL_BldgLoss": "451150", "sL_StrLoss": "224090", "sL_NStrLoss": "227060", "sL_ContLoss": "269650", "geom_point": "0101000020E6100000CAA07F2712C85EC0F71D058011A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124853796, 49.274205092000081 ], [ -123.125114482999919, 49.274023809000042 ], [ -123.125366404999923, 49.27384860000015 ], [ -123.125581883999971, 49.273652490000089 ], [ -123.125797816000031, 49.273383588000051 ], [ -123.125854502999985, 49.273177896000092 ], [ -123.126161587999974, 49.273212198000124 ], [ -123.126597773999919, 49.273335491000083 ], [ -123.12681675599994, 49.273444052000066 ], [ -123.127033708999988, 49.273551602000047 ], [ -123.12740949499999, 49.273806604000107 ], [ -123.125829302999961, 49.27482739200007 ], [ -123.125355661999976, 49.274525243000063 ], [ -123.124853796, 49.274205092000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38732707", "BldgCostT": "18851684", "sL_LossRatio": "0.637454467538033", "sL_AssetLoss": "186680", "sL_BldgLoss": "119000", "sL_StrLoss": "38280", "sL_NStrLoss": "80720", "sL_ContLoss": "67680", "geom_point": "0101000020E6100000DDB1F934FEC75EC0CE2C32CF04A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124273102999922, 49.273819409000048 ], [ -123.123736991999962, 49.273489901000069 ], [ -123.124649498999986, 49.273244894000108 ], [ -123.125171992999952, 49.273171409 ], [ -123.125265584999966, 49.273168324999986 ], [ -123.125594680999939, 49.273157495000135 ], [ -123.125854502999985, 49.273177896000092 ], [ -123.125797816000031, 49.273383588000051 ], [ -123.125581883999971, 49.273652490000089 ], [ -123.125366404999923, 49.27384860000015 ], [ -123.125114482999919, 49.274023809000042 ], [ -123.124853796, 49.274205092000081 ], [ -123.124273102999922, 49.273819409000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "367657316", "BldgCostT": "224966940", "sL_LossRatio": "0.703418141250116", "sL_AssetLoss": "1613450", "sL_BldgLoss": "1134930", "sL_StrLoss": "531930", "sL_NStrLoss": "603000", "sL_ContLoss": "478520", "geom_point": "0101000020E6100000F75F945EE3C75EC0E04370F91BA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122763404999915, 49.273748966000085 ], [ -123.123736991999962, 49.273489901000069 ], [ -123.124273102999922, 49.273819409000048 ], [ -123.124853796, 49.274205092000081 ], [ -123.123982573999939, 49.274779309000145 ], [ -123.123273473999959, 49.275246598000116 ], [ -123.12295151099994, 49.275048373000054 ], [ -123.122664685999979, 49.274871794000092 ], [ -123.122136593999954, 49.274524504000055 ], [ -123.121742967999921, 49.2742835560001 ], [ -123.121567387999974, 49.274176093000037 ], [ -123.121539688000013, 49.274165607999983 ], [ -123.121400901999934, 49.274113107000105 ], [ -123.121429343999964, 49.274104985000051 ], [ -123.121444250999943, 49.274100758000017 ], [ -123.121487600999956, 49.274088407000143 ], [ -123.122763404999915, 49.273748966000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261201540", "BldgCostT": "173733047", "sL_LossRatio": "0.783336137330092", "sL_AssetLoss": "861865", "sL_BldgLoss": "675130", "sL_StrLoss": "351590", "sL_NStrLoss": "323540", "sL_ContLoss": "186735", "geom_point": "0101000020E6100000A20AB1C078C85EC06CBF394C49A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132580516999923, 49.274257140000081 ], [ -123.132744479999957, 49.274149296000111 ], [ -123.132828659999944, 49.274204607000101 ], [ -123.133164861999958, 49.274425597000167 ], [ -123.133671383999982, 49.274758508000097 ], [ -123.132758885000015, 49.275360198000065 ], [ -123.133776697999977, 49.276011496000123 ], [ -123.134146212999923, 49.276325695000047 ], [ -123.134216823999964, 49.276384302000061 ], [ -123.134204583999946, 49.276388414000046 ], [ -123.13321479199999, 49.27672161100007 ], [ -123.133042527999962, 49.276777317000075 ], [ -123.132653909999959, 49.276903063000049 ], [ -123.132468355999961, 49.276992710000151 ], [ -123.132418314999967, 49.276960707000036 ], [ -123.132402242999959, 49.276950438 ], [ -123.131785316999967, 49.276549417000055 ], [ -123.131378628999954, 49.276281900000065 ], [ -123.130864850999899, 49.275961959000036 ], [ -123.130611189999954, 49.27580396600009 ], [ -123.130475674999957, 49.275773314000105 ], [ -123.130380405999972, 49.275714038000068 ], [ -123.130476350999984, 49.275651756000109 ], [ -123.131081027999969, 49.27524917300007 ], [ -123.13181631099998, 49.274759614000082 ], [ -123.132580516999923, 49.274257140000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124773061", "BldgCostT": "77493190", "sL_LossRatio": "0.667903070702003", "sL_AssetLoss": "1674210", "sL_BldgLoss": "1118210", "sL_StrLoss": "440610", "sL_NStrLoss": "677600", "sL_ContLoss": "556000", "geom_point": "0101000020E6100000625E709B63C85EC0613B6BF979A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129722297999976, 49.277355685000039 ], [ -123.131378628999954, 49.276281900000065 ], [ -123.131785316999967, 49.276549417000055 ], [ -123.132402242999959, 49.276950438 ], [ -123.132418314999967, 49.276960707000036 ], [ -123.132468355999961, 49.276992710000151 ], [ -123.132340428999925, 49.277061354000068 ], [ -123.132228715999958, 49.277089926000045 ], [ -123.131816563999962, 49.277360898000104 ], [ -123.131347787999943, 49.27766908800011 ], [ -123.130786303999983, 49.278036991000086 ], [ -123.130254649999969, 49.277696580000075 ], [ -123.129722297999976, 49.277355685000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131822554", "BldgCostT": "82523747", "sL_LossRatio": "0.649243049453848", "sL_AssetLoss": "1049342", "sL_BldgLoss": "681278", "sL_StrLoss": "269930", "sL_NStrLoss": "411348", "sL_ContLoss": "368064", "geom_point": "0101000020E610000055AFBE2E81C85EC0C186AFC892A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133042527999962, 49.276777317000075 ], [ -123.13321479199999, 49.27672161100007 ], [ -123.132963603999912, 49.276983319000102 ], [ -123.132961487, 49.277151709000087 ], [ -123.133018147999934, 49.27721435900002 ], [ -123.133146718999953, 49.277356603000051 ], [ -123.133291731999961, 49.277455895000081 ], [ -123.133284943999953, 49.277520612000046 ], [ -123.134424012999929, 49.278256092000078 ], [ -123.13383153599996, 49.278647362000065 ], [ -123.133829927999926, 49.278648393000033 ], [ -123.13332520199999, 49.27898170000006 ], [ -123.13226971399996, 49.278281107000048 ], [ -123.131347787999943, 49.27766908800011 ], [ -123.131816563999962, 49.277360898000104 ], [ -123.132228715999958, 49.277089926000045 ], [ -123.132340428999925, 49.277061354000068 ], [ -123.132468355999961, 49.276992710000151 ], [ -123.132653909999959, 49.276903063000049 ], [ -123.133042527999962, 49.276777317000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "400788417", "BldgCostT": "270566667", "sL_LossRatio": "0.856107538942435", "sL_AssetLoss": "2300190", "sL_BldgLoss": "1969210", "sL_StrLoss": "899830", "sL_NStrLoss": "1069380", "sL_ContLoss": "330980", "geom_point": "0101000020E6100000224A7B836FC85EC0EC2D166DABA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130288108999963, 49.278359704000081 ], [ -123.130786303999983, 49.278036991000086 ], [ -123.131347787999943, 49.27766908800011 ], [ -123.13226971399996, 49.278281107000048 ], [ -123.13332520199999, 49.27898170000006 ], [ -123.132955095999989, 49.279232201000056 ], [ -123.132781071999929, 49.279335895000052 ], [ -123.1327545729999, 49.279351681000094 ], [ -123.132241704999927, 49.279657289000106 ], [ -123.130288108999963, 49.278359704000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "618689391", "BldgCostT": "410246610", "sL_LossRatio": "0.755477282517801", "sL_AssetLoss": "3946300", "sL_BldgLoss": "2981340", "sL_StrLoss": "1323180", "sL_NStrLoss": "1658160", "sL_ContLoss": "964960", "geom_point": "0101000020E6100000C56183C76FC85EC0A1DA96B7D9A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130027540999933, 49.278529001000038 ], [ -123.130288108999963, 49.278359704000081 ], [ -123.132241704999927, 49.279657289000106 ], [ -123.13295183299995, 49.280110572000083 ], [ -123.134457605999955, 49.281071700000041 ], [ -123.134252994999912, 49.28120139600005 ], [ -123.133919331999962, 49.28142550800009 ], [ -123.133352576, 49.281806206000063 ], [ -123.131214195999945, 49.280383897000064 ], [ -123.129182791999938, 49.279077892000089 ], [ -123.12970346499999, 49.278739587000118 ], [ -123.130027540999933, 49.278529001000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103417970", "BldgCostT": "66790413", "sL_LossRatio": "0.759659598720257", "sL_AssetLoss": "772030", "sL_BldgLoss": "586480", "sL_StrLoss": "278550", "sL_NStrLoss": "307930", "sL_ContLoss": "185550", "geom_point": "0101000020E6100000827A86B2A8C85EC078A135167FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134200787999973, 49.285092807000083 ], [ -123.134718035999967, 49.284750953000064 ], [ -123.13476177699999, 49.284722067000068 ], [ -123.135239690999981, 49.284406208000043 ], [ -123.136379607999956, 49.28515339800007 ], [ -123.135888413999922, 49.285497719000062 ], [ -123.135872071999984, 49.28550919000002 ], [ -123.135376910999952, 49.285856297000073 ], [ -123.134200787999973, 49.285092807000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98058386", "BldgCostT": "63662079", "sL_LossRatio": "0.715706827804497", "sL_AssetLoss": "973080", "sL_BldgLoss": "696440", "sL_StrLoss": "257500", "sL_NStrLoss": "438940", "sL_ContLoss": "276640", "geom_point": "0101000020E610000001617ED9C3C85EC05F6A5BFF74A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136379607999956, 49.28515339800007 ], [ -123.135239690999981, 49.284406208000043 ], [ -123.135623228999989, 49.284155990000052 ], [ -123.135756713999911, 49.28406888500011 ], [ -123.135818057999984, 49.284028873000096 ], [ -123.136303688999931, 49.28371199400015 ], [ -123.137481187999953, 49.284453003000053 ], [ -123.138670602999966, 49.285223100000046 ], [ -123.138110027999957, 49.285584803000063 ], [ -123.137571197999975, 49.285932491000068 ], [ -123.136379607999956, 49.28515339800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86339500", "BldgCostT": "57805000", "sL_LossRatio": "0.742102056801369", "sL_AssetLoss": "689420", "sL_BldgLoss": "511620", "sL_StrLoss": "221520", "sL_NStrLoss": "290100", "sL_ContLoss": "177800", "geom_point": "0101000020E6100000FD627CB9CBC85EC0D15FA6F550A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136303688999931, 49.28371199400015 ], [ -123.1368240689999, 49.283363594000093 ], [ -123.137393311999944, 49.282982494000116 ], [ -123.138562692999983, 49.283741298000059 ], [ -123.137978946999951, 49.284125445000072 ], [ -123.137481187999953, 49.284453003000053 ], [ -123.136303688999931, 49.28371199400015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83704561", "BldgCostT": "55878190", "sL_LossRatio": "0.635882085862747", "sL_AssetLoss": "594670", "sL_BldgLoss": "378140", "sL_StrLoss": "106760", "sL_NStrLoss": "271380", "sL_ContLoss": "216530", "geom_point": "0101000020E61000008E8F2649DDC85EC07E87ECCD39A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137393311999944, 49.282982494000116 ], [ -123.13785238399997, 49.282668660000049 ], [ -123.137918804999984, 49.282623249000025 ], [ -123.138300103999981, 49.282362590000105 ], [ -123.138433999, 49.28233009500007 ], [ -123.138571888999934, 49.282367092000072 ], [ -123.139629305999975, 49.28304990000008 ], [ -123.139059082999907, 49.283419548000097 ], [ -123.139037741999928, 49.283433355000135 ], [ -123.138562692999983, 49.283741298000059 ], [ -123.137393311999944, 49.282982494000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39653000", "BldgCostT": "21275000", "sL_LossRatio": "0.604816912880892", "sL_AssetLoss": "540180", "sL_BldgLoss": "326710", "sL_StrLoss": "122610", "sL_NStrLoss": "204100", "sL_ContLoss": "213470", "geom_point": "0101000020E6100000124C5E32C8C85EC0FD2299BC1EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13601081299997, 49.282112690000119 ], [ -123.136508178999975, 49.281776784000073 ], [ -123.136544508, 49.281748597000075 ], [ -123.137042886999936, 49.281379015000027 ], [ -123.138291538999965, 49.28219620900007 ], [ -123.138433999, 49.28233009500007 ], [ -123.138300103999981, 49.282362590000105 ], [ -123.137918804999984, 49.282623249000025 ], [ -123.13785238399997, 49.282668660000049 ], [ -123.137393311999944, 49.282982494000116 ], [ -123.13601081299997, 49.282112690000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "301779268", "BldgCostT": "204859874", "sL_LossRatio": "0.830028391447077", "sL_AssetLoss": "1352520", "sL_BldgLoss": "1122630", "sL_StrLoss": "548400", "sL_NStrLoss": "574230", "sL_ContLoss": "229890", "geom_point": "0101000020E61000009F082CCAB6C85EC085BA824C36A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134916298999954, 49.282810483000091 ], [ -123.13545833199997, 49.282464952000062 ], [ -123.13601081299997, 49.282112690000119 ], [ -123.137393311999944, 49.282982494000116 ], [ -123.1368240689999, 49.283363594000093 ], [ -123.136303688999931, 49.28371199400015 ], [ -123.134916298999954, 49.282810483000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168913561", "BldgCostT": "112683190", "sL_LossRatio": "0.767686290241701", "sL_AssetLoss": "1495650", "sL_BldgLoss": "1148190", "sL_StrLoss": "505700", "sL_NStrLoss": "642490", "sL_ContLoss": "347460", "geom_point": "0101000020E61000008536D79B9EC85EC0E1DEA1CD16A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133352576, 49.281806206000063 ], [ -123.133919331999962, 49.28142550800009 ], [ -123.134252994999912, 49.28120139600005 ], [ -123.134457605999955, 49.281071700000041 ], [ -123.13601081299997, 49.282112690000119 ], [ -123.13545833199997, 49.282464952000062 ], [ -123.134916298999954, 49.282810483000091 ], [ -123.133352576, 49.281806206000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17822697", "BldgCostT": "9575269", "sL_LossRatio": "0.580983453740387", "sL_AssetLoss": "429100", "sL_BldgLoss": "249300", "sL_StrLoss": "57580", "sL_NStrLoss": "191720", "sL_ContLoss": "179800", "geom_point": "0101000020E610000092215C3BB0C85EC09A3ED8B5FFA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134457605999955, 49.281071700000041 ], [ -123.134950923999924, 49.280742297000117 ], [ -123.134957180999962, 49.280738121000063 ], [ -123.135495392999971, 49.280378694000021 ], [ -123.137042886999936, 49.281379015000027 ], [ -123.136544508, 49.281748597000075 ], [ -123.136508178999975, 49.281776784000073 ], [ -123.13601081299997, 49.282112690000119 ], [ -123.134457605999955, 49.281071700000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21131917", "BldgCostT": "11361667", "sL_LossRatio": "0.631735219631473", "sL_AssetLoss": "229020", "sL_BldgLoss": "144680", "sL_StrLoss": "73640", "sL_NStrLoss": "71040", "sL_ContLoss": "84340", "geom_point": "0101000020E6100000ED6491A2E5C85EC099FC89A9F8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138363398999942, 49.280513286000087 ], [ -123.14020559899997, 49.279868416000113 ], [ -123.140488216999955, 49.280078402000086 ], [ -123.140709875999946, 49.28041019300008 ], [ -123.140778401999967, 49.280650377000043 ], [ -123.14079353299995, 49.280703428000066 ], [ -123.140850406999917, 49.280902773000044 ], [ -123.140851460999912, 49.2809064590001 ], [ -123.140612081999947, 49.281051303000019 ], [ -123.139058015999936, 49.281282892000021 ], [ -123.139518124999967, 49.281577007000081 ], [ -123.139126393, 49.28183313100002 ], [ -123.138936453999918, 49.281957322000011 ], [ -123.13855477599995, 49.28220688600004 ], [ -123.138433999, 49.28233009500007 ], [ -123.138291538999965, 49.28219620900007 ], [ -123.137042886999936, 49.281379015000027 ], [ -123.137525080000017, 49.281064140000055 ], [ -123.137631413999955, 49.280994710000058 ], [ -123.13811262399993, 49.280680494000059 ], [ -123.138363398999942, 49.280513286000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "312141886", "BldgCostT": "211672079", "sL_LossRatio": "0.818351197346017", "sL_AssetLoss": "1932190", "sL_BldgLoss": "1581210", "sL_StrLoss": "726600", "sL_NStrLoss": "854610", "sL_ContLoss": "350980", "geom_point": "0101000020E61000005E7ED048FEC85EC0EFE7770E23A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139629305999975, 49.28304990000008 ], [ -123.138571888999934, 49.282367092000072 ], [ -123.138433999, 49.28233009500007 ], [ -123.13855477599995, 49.28220688600004 ], [ -123.138936453999918, 49.281957322000011 ], [ -123.139126393, 49.28183313100002 ], [ -123.139518124999967, 49.281577007000081 ], [ -123.139058015999936, 49.281282892000021 ], [ -123.140612081999947, 49.281051303000019 ], [ -123.140851460999912, 49.2809064590001 ], [ -123.140876896999899, 49.280995600000018 ], [ -123.141621903999976, 49.281677798000068 ], [ -123.141744741999943, 49.281850618000043 ], [ -123.141770217999948, 49.281886475000135 ], [ -123.141850231999953, 49.281999030000122 ], [ -123.142022841999918, 49.282241849000044 ], [ -123.142110856999949, 49.282365660000046 ], [ -123.14211113199994, 49.282461129000097 ], [ -123.142178661999949, 49.282461046000115 ], [ -123.142487459, 49.282895446000076 ], [ -123.14178788599996, 49.283079993000058 ], [ -123.141277195999962, 49.283439275000084 ], [ -123.140782202999929, 49.283787511000128 ], [ -123.139629305999975, 49.28304990000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152577000", "BldgCostT": "103950000", "sL_LossRatio": "0.85506577429033", "sL_AssetLoss": "866600", "sL_BldgLoss": "741000", "sL_StrLoss": "356800", "sL_NStrLoss": "384200", "sL_ContLoss": "125600", "geom_point": "0101000020E6100000E69B44EF1AC95EC0102ACCD655A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14178788599996, 49.283079993000058 ], [ -123.142487459, 49.282895446000076 ], [ -123.142614434999984, 49.283074071000023 ], [ -123.142774494999983, 49.283299247000116 ], [ -123.142776253, 49.283301722000054 ], [ -123.14309800499997, 49.283754306000034 ], [ -123.143188168999956, 49.283808547000021 ], [ -123.143481747999971, 49.283985092000137 ], [ -123.143832412, 49.284195978000071 ], [ -123.143860364999938, 49.284212797000059 ], [ -123.143909113999939, 49.284242106000129 ], [ -123.143802405999935, 49.284279057000063 ], [ -123.14272408799998, 49.284569409000042 ], [ -123.142368416999958, 49.284810286 ], [ -123.140782202999929, 49.283787511000128 ], [ -123.141277195999962, 49.283439275000084 ], [ -123.14178788599996, 49.283079993000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165559246", "BldgCostT": "110782761", "sL_LossRatio": "0.809532209941785", "sL_AssetLoss": "1303790", "sL_BldgLoss": "1055460", "sL_StrLoss": "493150", "sL_NStrLoss": "562310", "sL_ContLoss": "248330", "geom_point": "0101000020E61000003A7AC2331DC95EC081B5DE2D98A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141822312999963, 49.287270101000118 ], [ -123.140346924999946, 49.286313484000082 ], [ -123.140236417, 49.286241802000106 ], [ -123.140728777999982, 49.285911450000064 ], [ -123.14130655299999, 49.285523805000089 ], [ -123.141328879999904, 49.285508805000063 ], [ -123.141763591999947, 49.285216728000115 ], [ -123.141939084999947, 49.285098792000021 ], [ -123.142368416999958, 49.284810286 ], [ -123.14272408799998, 49.284569409000042 ], [ -123.143802405999935, 49.284279057000063 ], [ -123.143909113999939, 49.284242106000129 ], [ -123.144007402999932, 49.284301201000083 ], [ -123.144007288999916, 49.284454993000075 ], [ -123.143814100999975, 49.284658727000057 ], [ -123.143734510999934, 49.284742689000083 ], [ -123.143682021999922, 49.28563400700002 ], [ -123.143671228999892, 49.285817180000087 ], [ -123.143662571999982, 49.285964298000117 ], [ -123.143623906999949, 49.286620856000042 ], [ -123.143618249999975, 49.286716775000045 ], [ -123.14361535099998, 49.286766138000104 ], [ -123.143604099999891, 49.286957156000049 ], [ -123.143603427999935, 49.286968470000048 ], [ -123.143602077999972, 49.286991495000031 ], [ -123.143601612999973, 49.287032708000069 ], [ -123.142346094999979, 49.286911985000096 ], [ -123.142260907999969, 49.286970217000054 ], [ -123.141822312999963, 49.287270101000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167323895", "BldgCostT": "113211524", "sL_LossRatio": "0.827341915972564", "sL_AssetLoss": "1196990", "sL_BldgLoss": "990320", "sL_StrLoss": "453910", "sL_NStrLoss": "536410", "sL_ContLoss": "206670", "geom_point": "0101000020E6100000F14783A1AFC85EC0726162FBE2A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134370494, 49.288018287000035 ], [ -123.134908576999962, 49.287664241000073 ], [ -123.135466476999937, 49.287297094000039 ], [ -123.137065703999951, 49.288332100000041 ], [ -123.136504115999941, 49.288707230000043 ], [ -123.135977595, 49.28905890000005 ], [ -123.134370494, 49.288018287000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231800828", "BldgCostT": "158653419", "sL_LossRatio": "0.790163320113668", "sL_AssetLoss": "1601150", "sL_BldgLoss": "1265170", "sL_StrLoss": "609760", "sL_NStrLoss": "655410", "sL_ContLoss": "335980", "geom_point": "0101000020E6100000C14493F68CC85EC00106ACC911A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132281393999918, 49.289416613000107 ], [ -123.132840647999927, 49.289065240000092 ], [ -123.133218080999924, 49.288828096000081 ], [ -123.133340206999918, 49.288787193000097 ], [ -123.133455412000018, 49.288813681000079 ], [ -123.134286409999987, 49.289378792000072 ], [ -123.134926589999935, 49.289762411000069 ], [ -123.134434676999945, 49.290093833000093 ], [ -123.133879587999957, 49.290467795000019 ], [ -123.132281393999918, 49.289416613000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45105626", "BldgCostT": "24954575", "sL_LossRatio": "0.573843169853145", "sL_AssetLoss": "793980", "sL_BldgLoss": "455620", "sL_StrLoss": "118970", "sL_NStrLoss": "336650", "sL_ContLoss": "338360", "geom_point": "0101000020E6100000C166BAB67BC85EC0442A106628A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131232901999923, 49.290144385000104 ], [ -123.132281393999918, 49.289416613000107 ], [ -123.133879587999957, 49.290467795000019 ], [ -123.132808421, 49.291162599000103 ], [ -123.131232901999923, 49.290144385000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253079811", "BldgCostT": "169388190", "sL_LossRatio": "0.756671964333629", "sL_AssetLoss": "1937960", "sL_BldgLoss": "1466400", "sL_StrLoss": "614380", "sL_NStrLoss": "852020", "sL_ContLoss": "471560", "geom_point": "0101000020E6100000EBC3A46C8FC85EC0EE42CE56B9A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132574154999986, 49.286158949000061 ], [ -123.133114711999937, 49.285787302000074 ], [ -123.134310090999961, 49.286548614000012 ], [ -123.135466476999937, 49.287297094000039 ], [ -123.134908576999962, 49.287664241000073 ], [ -123.134370494, 49.288018287000035 ], [ -123.133214810999903, 49.287279695000066 ], [ -123.132055289999983, 49.286515700000109 ], [ -123.132574154999986, 49.286158949000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254150394", "BldgCostT": "170936523", "sL_LossRatio": "0.783189424258658", "sL_AssetLoss": "1269320", "sL_BldgLoss": "994118", "sL_StrLoss": "471470", "sL_NStrLoss": "522648", "sL_ContLoss": "275202", "geom_point": "0101000020E6100000607FC811A1C85EC08FF15114A2A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133706311999944, 49.28542201300008 ], [ -123.134200787999973, 49.285092807000083 ], [ -123.135376910999952, 49.285856297000073 ], [ -123.136536885999959, 49.286612202000114 ], [ -123.135984591999943, 49.286965582000057 ], [ -123.135466476999937, 49.287297094000039 ], [ -123.134310090999961, 49.286548614000012 ], [ -123.133114711999937, 49.285787302000074 ], [ -123.133493963999939, 49.28555312800011 ], [ -123.133706311999944, 49.28542201300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "865385022", "BldgCostT": "547352403", "sL_LossRatio": "0.768595766295193", "sL_AssetLoss": "2827122", "sL_BldgLoss": "2172914", "sL_StrLoss": "1088500", "sL_NStrLoss": "1084414", "sL_ContLoss": "654208", "geom_point": "0101000020E6100000BC470C8ED4C75EC0499D3F54B7A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120455779999986, 49.284851016000033 ], [ -123.121097009999929, 49.284409105000059 ], [ -123.123132092, 49.28572350000011 ], [ -123.125330212, 49.287135804000094 ], [ -123.126873623, 49.288136110000053 ], [ -123.126329159999955, 49.288509763000057 ], [ -123.125799691999973, 49.288873085000056 ], [ -123.125570088999893, 49.289030017000037 ], [ -123.123384578999946, 49.288364803000078 ], [ -123.120435616999941, 49.287491702000061 ], [ -123.119488094999923, 49.287211609000053 ], [ -123.118814099999938, 49.28697831800006 ], [ -123.118427798999974, 49.286844596000037 ], [ -123.117889006999917, 49.286556393000062 ], [ -123.118309270999987, 49.286289227000076 ], [ -123.119391616999962, 49.285601195000034 ], [ -123.120017307999916, 49.285153188000017 ], [ -123.120455779999986, 49.284851016000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114371768", "BldgCostT": "71024874", "sL_LossRatio": "0.740822924320353", "sL_AssetLoss": "680500", "sL_BldgLoss": "504130", "sL_StrLoss": "220680", "sL_NStrLoss": "283450", "sL_ContLoss": "176370", "geom_point": "0101000020E610000050E871EF0CC95EC0C9413B6D2EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140196685999939, 49.290384011000071 ], [ -123.14075795299999, 49.290022590000028 ], [ -123.14077257199996, 49.290013153000054 ], [ -123.141267377999938, 49.289694497000056 ], [ -123.142627011999934, 49.290560891000048 ], [ -123.142077905999898, 49.290929210000066 ], [ -123.141568802999956, 49.291271491000082 ], [ -123.140196685999939, 49.290384011000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "367335000", "BldgCostT": "253125000", "sL_LossRatio": "0.875734563314774", "sL_AssetLoss": "2072660", "sL_BldgLoss": "1815100", "sL_StrLoss": "831770", "sL_NStrLoss": "983330", "sL_ContLoss": "257560", "geom_point": "0101000020E610000071B93D1823C95EC051C1E10511A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.142410167999969, 49.288932320000129 ], [ -123.142911596999937, 49.288597703000072 ], [ -123.144272488999903, 49.289487612000116 ], [ -123.143669371999948, 49.289862502000105 ], [ -123.143124130999979, 49.290227845000103 ], [ -123.142627011999934, 49.290560891000048 ], [ -123.141267377999938, 49.289694497000056 ], [ -123.141802272999954, 49.289337547000073 ], [ -123.142216413999904, 49.289061204000127 ], [ -123.142325187999944, 49.289034387000079 ], [ -123.142353528999976, 49.289000418000086 ], [ -123.142410167999969, 49.288932320000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250246561", "BldgCostT": "167718190", "sL_LossRatio": "0.795707891155392", "sL_AssetLoss": "2542340", "sL_BldgLoss": "2022960", "sL_StrLoss": "907370", "sL_NStrLoss": "1115590", "sL_ContLoss": "519380", "geom_point": "0101000020E6100000EDDB62E118C95EC0A1EEA8D6E7A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139697508, 49.288672995000134 ], [ -123.14027957699993, 49.288285583000047 ], [ -123.14077388699998, 49.287956597000083 ], [ -123.14136107899995, 49.287572193000059 ], [ -123.141822312999963, 49.287270101000118 ], [ -123.142260907999969, 49.286970217000054 ], [ -123.142346094999979, 49.286911985000096 ], [ -123.143601612999973, 49.287032708000069 ], [ -123.143601452999974, 49.287046825000054 ], [ -123.143361914999971, 49.287047123000015 ], [ -123.143362696999972, 49.28731697700006 ], [ -123.143598401999924, 49.287316684000089 ], [ -123.143591403999963, 49.287935790000041 ], [ -123.143773012999972, 49.288511103000069 ], [ -123.144626580999955, 49.289122093000067 ], [ -123.14483596, 49.289202287000116 ], [ -123.144272488999903, 49.289487612000116 ], [ -123.142911596999937, 49.288597703000072 ], [ -123.142410167999969, 49.288932320000129 ], [ -123.142353528999976, 49.289000418000086 ], [ -123.142325187999944, 49.289034387000079 ], [ -123.142216413999904, 49.289061204000127 ], [ -123.141802272999954, 49.289337547000073 ], [ -123.141267377999938, 49.289694497000056 ], [ -123.139697508, 49.288672995000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228621122", "BldgCostT": "156066380", "sL_LossRatio": "0.821462329719211", "sL_AssetLoss": "1438800", "sL_BldgLoss": "1181920", "sL_StrLoss": "550220", "sL_NStrLoss": "631700", "sL_ContLoss": "256880", "geom_point": "0101000020E6100000BF1AB9D1F4C85EC01043275B0FA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138616104999983, 49.289380187000042 ], [ -123.139117932999966, 49.289052026000043 ], [ -123.139189851999944, 49.28900498200003 ], [ -123.139697508, 49.288672995000134 ], [ -123.141267377999938, 49.289694497000056 ], [ -123.14077257199996, 49.290013153000054 ], [ -123.14075795299999, 49.290022590000028 ], [ -123.140196685999939, 49.290384011000071 ], [ -123.138616104999983, 49.289380187000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408833622", "BldgCostT": "274831380", "sL_LossRatio": "0.758376123938148", "sL_AssetLoss": "2738140", "sL_BldgLoss": "2076540", "sL_StrLoss": "881100", "sL_NStrLoss": "1195440", "sL_ContLoss": "661600", "geom_point": "0101000020E61000002B28FCE7E3C85EC09FB9E23DE2A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13903789599999, 49.287020708000121 ], [ -123.139176499999962, 49.286981199000138 ], [ -123.139321795999948, 49.287031798000051 ], [ -123.14077388699998, 49.287956597000083 ], [ -123.14027957699993, 49.288285583000047 ], [ -123.139697508, 49.288672995000134 ], [ -123.139189851999944, 49.28900498200003 ], [ -123.139117932999966, 49.289052026000043 ], [ -123.138616104999983, 49.289380187000042 ], [ -123.137065703999951, 49.288332100000041 ], [ -123.137547579999989, 49.288010849000088 ], [ -123.138120792999956, 49.287628688000076 ], [ -123.138638802999964, 49.28728528800012 ], [ -123.138679133999972, 49.287258557000023 ], [ -123.13903789599999, 49.287020708000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218336390", "BldgCostT": "137026254", "sL_LossRatio": "0.74714799187373", "sL_AssetLoss": "1599750", "sL_BldgLoss": "1195250", "sL_StrLoss": "530060", "sL_NStrLoss": "665190", "sL_ContLoss": "404500", "geom_point": "0101000020E61000007182DB7FC9C85EC0B5FD23BA04A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.135977595, 49.28905890000005 ], [ -123.136504115999941, 49.288707230000043 ], [ -123.137065703999951, 49.288332100000041 ], [ -123.138616104999983, 49.289380187000042 ], [ -123.138078611999973, 49.289728100000055 ], [ -123.13804206699993, 49.289751725000038 ], [ -123.137549393999947, 49.290070600000035 ], [ -123.135977595, 49.28905890000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41093000", "BldgCostT": "23390000", "sL_LossRatio": "0.662468254513007", "sL_AssetLoss": "582760", "sL_BldgLoss": "386060", "sL_StrLoss": "185310", "sL_NStrLoss": "200750", "sL_ContLoss": "196700", "geom_point": "0101000020E61000001609F1713BC95EC08F8FB33C51A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146601716999967, 49.278253996000032 ], [ -123.146230314999926, 49.278020406000039 ], [ -123.146061103999955, 49.278043534000062 ], [ -123.14596991800002, 49.278055998000056 ], [ -123.14579129599997, 49.278174206000124 ], [ -123.14540649, 49.278624296000032 ], [ -123.14500840699999, 49.278840795000129 ], [ -123.144444800999935, 49.278921897000011 ], [ -123.14401701, 49.27887268100006 ], [ -123.144028827999975, 49.278680778000123 ], [ -123.143750127999965, 49.278681126000045 ], [ -123.143749343999957, 49.278411271000046 ], [ -123.142402002000011, 49.278412940000074 ], [ -123.142135112999981, 49.278330889000166 ], [ -123.142099213999984, 49.278313245000049 ], [ -123.142098725999972, 49.278143457000034 ], [ -123.141754599999928, 49.278143879000034 ], [ -123.141686170999932, 49.278110249000051 ], [ -123.141685494999976, 49.277874110000013 ], [ -123.141273036999976, 49.277874614000083 ], [ -123.141272728, 49.277766250000084 ], [ -123.140969926999929, 49.277758230000138 ], [ -123.140894800999945, 49.277721307 ], [ -123.140454296999948, 49.277298312000084 ], [ -123.140066487999945, 49.276633212000043 ], [ -123.139846695999935, 49.276570601000053 ], [ -123.139462803999962, 49.276616104000091 ], [ -123.139433292999968, 49.276472294000044 ], [ -123.13995670299991, 49.276193208000045 ], [ -123.139996093999983, 49.276039286000135 ], [ -123.139292581999911, 49.275123595000089 ], [ -123.13882481, 49.274971206000046 ], [ -123.138784107999953, 49.274915569000022 ], [ -123.141900424999974, 49.273913284000038 ], [ -123.141966683999925, 49.273891990000081 ], [ -123.141984461999982, 49.273886256000047 ], [ -123.142545985999931, 49.273705636000066 ], [ -123.142563922999926, 49.27369987600008 ], [ -123.143892262999913, 49.273272599000094 ], [ -123.144191297999939, 49.273176401000072 ], [ -123.145516187999974, 49.272770635000022 ], [ -123.145810187999956, 49.27268060200003 ], [ -123.146346692999913, 49.272537192000073 ], [ -123.146792626999954, 49.272458902000032 ], [ -123.147806895999906, 49.272475798000116 ], [ -123.147787819999976, 49.272980994000129 ], [ -123.147767474999938, 49.273519603000054 ], [ -123.147733519999917, 49.27445179900009 ], [ -123.146255215999986, 49.274426300000066 ], [ -123.146235772999944, 49.274880858000095 ], [ -123.146217585999949, 49.275305305000067 ], [ -123.14620314599992, 49.275762545000063 ], [ -123.146195876999954, 49.275991897000061 ], [ -123.146188293999899, 49.276183607000036 ], [ -123.14616549099999, 49.27677731200005 ], [ -123.146165499999967, 49.276777484000085 ], [ -123.147494299999906, 49.276800010000031 ], [ -123.147642516999909, 49.276825492000064 ], [ -123.149974916999966, 49.277220393000086 ], [ -123.14980113199999, 49.277751095000042 ], [ -123.1497863, 49.277886447000093 ], [ -123.149784363999942, 49.277903961000042 ], [ -123.149784467999936, 49.277910126000108 ], [ -123.149309892999923, 49.277818189000101 ], [ -123.148787188999975, 49.278061704 ], [ -123.148471806999936, 49.278332299000041 ], [ -123.14817218499999, 49.27907010200007 ], [ -123.148008098999966, 49.2791782890001 ], [ -123.147403502999978, 49.279250900000051 ], [ -123.147394870999989, 49.27924689500005 ], [ -123.147210007999917, 49.2791611970001 ], [ -123.147759278999928, 49.278836499000107 ], [ -123.147785109, 49.278629987000024 ], [ -123.147661721999896, 49.278486100000073 ], [ -123.146601716999967, 49.278253996000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112385361", "BldgCostT": "67957388", "sL_LossRatio": "0.656346255672146", "sL_AssetLoss": "1756390", "sL_BldgLoss": "1152800", "sL_StrLoss": "478310", "sL_NStrLoss": "674490", "sL_ContLoss": "603590", "geom_point": "0101000020E61000005E5328247CC95EC0BF7D6F364AA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147642516999909, 49.276825492000064 ], [ -123.147494299999906, 49.276800010000031 ], [ -123.146165499999967, 49.276777484000085 ], [ -123.14616549099999, 49.27677731200005 ], [ -123.146188293999899, 49.276183607000036 ], [ -123.146195876999954, 49.275991897000061 ], [ -123.14620314599992, 49.275762545000063 ], [ -123.146217585999949, 49.275305305000067 ], [ -123.146235772999944, 49.274880858000095 ], [ -123.146255215999986, 49.274426300000066 ], [ -123.147733519999917, 49.27445179900009 ], [ -123.148325309999976, 49.274461987000038 ], [ -123.148901595999973, 49.274471915000042 ], [ -123.149507084999954, 49.274482107000097 ], [ -123.150128781999967, 49.27449259400003 ], [ -123.150115311999969, 49.274939092000061 ], [ -123.15010218499998, 49.275371905000078 ], [ -123.150086980999959, 49.275829632000075 ], [ -123.150073007999964, 49.276250196000021 ], [ -123.150048262999974, 49.276710977000121 ], [ -123.150026201999978, 49.277122591000094 ], [ -123.149974916999966, 49.277220393000086 ], [ -123.147642516999909, 49.276825492000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240006394", "BldgCostT": "157857947", "sL_LossRatio": "0.766372550503219", "sL_AssetLoss": "1916363", "sL_BldgLoss": "1468648", "sL_StrLoss": "681170", "sL_NStrLoss": "787478", "sL_ContLoss": "447715", "geom_point": "0101000020E6100000586E78CDADC95EC01784331119A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152015926999965, 49.272540480000075 ], [ -123.152601898999961, 49.27254928700011 ], [ -123.152585535999918, 49.272966025000095 ], [ -123.15254385599998, 49.274027677000028 ], [ -123.152541383999946, 49.274090603000026 ], [ -123.152540663999943, 49.274108565000084 ], [ -123.152523978999952, 49.274533297000104 ], [ -123.152518797999932, 49.274640293000068 ], [ -123.152187114999947, 49.274995319000098 ], [ -123.151808411999966, 49.275400697000109 ], [ -123.151434418999884, 49.27584658200005 ], [ -123.15112029799991, 49.276221117000048 ], [ -123.151081894999919, 49.276266906000075 ], [ -123.151023029999962, 49.2762659220001 ], [ -123.150073007999964, 49.276250196000021 ], [ -123.150086980999959, 49.275829632000075 ], [ -123.15010218499998, 49.275371905000078 ], [ -123.150115311999969, 49.274939092000061 ], [ -123.150128781999967, 49.27449259400003 ], [ -123.150222871999972, 49.272513490000101 ], [ -123.150819593999969, 49.272522478000063 ], [ -123.151417197999962, 49.272531503000046 ], [ -123.152015926999965, 49.272540480000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "391671260", "BldgCostT": "253695430", "sL_LossRatio": "0.761533616561814", "sL_AssetLoss": "4112110", "sL_BldgLoss": "3131510", "sL_StrLoss": "1376770", "sL_NStrLoss": "1754740", "sL_ContLoss": "980600", "geom_point": "0101000020E6100000B77B8715CDC95EC09FB11EAD20A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15254385599998, 49.274027677000028 ], [ -123.152585535999918, 49.272966025000095 ], [ -123.152601898999961, 49.27254928700011 ], [ -123.152015926999965, 49.272540480000075 ], [ -123.151417197999962, 49.272531503000046 ], [ -123.150819593999969, 49.272522478000063 ], [ -123.150222871999972, 49.272513490000101 ], [ -123.150257512999957, 49.272062199000054 ], [ -123.150292009999959, 49.271612798000071 ], [ -123.152636508999933, 49.27164950499999 ], [ -123.1550111, 49.271688705000024 ], [ -123.154996038999968, 49.272116200000085 ], [ -123.154979487999981, 49.272585006000078 ], [ -123.157361080999976, 49.272622501000029 ], [ -123.157321304, 49.273243189000041 ], [ -123.157311667999963, 49.27335583500011 ], [ -123.157286851999913, 49.273684173000042 ], [ -123.157281260000019, 49.273872423000114 ], [ -123.156157697999973, 49.273653785000143 ], [ -123.155619584999911, 49.273636704000118 ], [ -123.155345403999917, 49.273834694000087 ], [ -123.154895292999939, 49.274699196000071 ], [ -123.153073093999964, 49.276778507000131 ], [ -123.152622599999972, 49.277624501000055 ], [ -123.151977307999957, 49.277949204000038 ], [ -123.151289584999958, 49.278075991000087 ], [ -123.150464201999981, 49.27804180400004 ], [ -123.149807735999971, 49.277914634000091 ], [ -123.149784363999942, 49.277903961000042 ], [ -123.1497863, 49.277886447000093 ], [ -123.14980113199999, 49.277751095000042 ], [ -123.149974916999966, 49.277220393000086 ], [ -123.150026201999978, 49.277122591000094 ], [ -123.150048262999974, 49.276710977000121 ], [ -123.150073007999964, 49.276250196000021 ], [ -123.151023029999962, 49.2762659220001 ], [ -123.151081894999919, 49.276266906000075 ], [ -123.15112029799991, 49.276221117000048 ], [ -123.151434418999884, 49.27584658200005 ], [ -123.151808411999966, 49.275400697000109 ], [ -123.152187114999947, 49.274995319000098 ], [ -123.152518797999932, 49.274640293000068 ], [ -123.152523978999952, 49.274533297000104 ], [ -123.152540663999943, 49.274108565000084 ], [ -123.152541383999946, 49.274090603000026 ], [ -123.15254385599998, 49.274027677000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "296617811", "BldgCostT": "192552205", "sL_LossRatio": "0.761399470095122", "sL_AssetLoss": "2302300", "sL_BldgLoss": "1752970", "sL_StrLoss": "770990", "sL_NStrLoss": "981980", "sL_ContLoss": "549330", "geom_point": "0101000020E6100000039DEF2BFFC95EC0D61CA4D0C7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155043683000017, 49.270821303000083 ], [ -123.157415514, 49.270860289000069 ], [ -123.157404800999984, 49.271204481000062 ], [ -123.157401700999984, 49.271304305000065 ], [ -123.157388607999977, 49.271725193000094 ], [ -123.157374745999931, 49.272177046000067 ], [ -123.157361080999976, 49.272622501000029 ], [ -123.154979487999981, 49.272585006000078 ], [ -123.154996038999968, 49.272116200000085 ], [ -123.1550111, 49.271688705000024 ], [ -123.155026329999927, 49.271283357000051 ], [ -123.155027465, 49.271253433000076 ], [ -123.155043683000017, 49.270821303000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "684380622", "BldgCostT": "468046380", "sL_LossRatio": "0.841322749422315", "sL_AssetLoss": "4176150", "sL_BldgLoss": "3513490", "sL_StrLoss": "1583120", "sL_NStrLoss": "1930370", "sL_ContLoss": "662660", "geom_point": "0101000020E6100000619225CE25CA5EC01FAB7B01C9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157415514, 49.270860289000069 ], [ -123.159758489999902, 49.270898601000098 ], [ -123.159745495999985, 49.271273304000061 ], [ -123.159743268999989, 49.27133716700007 ], [ -123.159727803999914, 49.271782297000065 ], [ -123.15971168199998, 49.272209421000106 ], [ -123.159694808999944, 49.2726577890001 ], [ -123.157361080999976, 49.272622501000029 ], [ -123.157374745999931, 49.272177046000067 ], [ -123.157388607999977, 49.271725193000094 ], [ -123.157401700999984, 49.271304305000065 ], [ -123.157404800999984, 49.271204481000062 ], [ -123.157415514, 49.270860289000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "301423812", "BldgCostT": "206653191", "sL_LossRatio": "0.876750180596202", "sL_AssetLoss": "1622404", "sL_BldgLoss": "1422443", "sL_StrLoss": "669450", "sL_NStrLoss": "752993", "sL_ContLoss": "199961", "geom_point": "0101000020E61000000B83328D26CA5EC04266B2A89DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157444993999974, 49.269974789000067 ], [ -123.159792207999942, 49.270012296000068 ], [ -123.15977534699999, 49.270455989000027 ], [ -123.159758489999902, 49.270898601000098 ], [ -123.157415514, 49.270860289000069 ], [ -123.15743039199999, 49.27041359600004 ], [ -123.157444993999974, 49.269974789000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "328970106", "BldgCostT": "220967492", "sL_LossRatio": "0.80698553752446", "sL_AssetLoss": "1563287", "sL_BldgLoss": "1261550", "sL_StrLoss": "580470", "sL_NStrLoss": "681080", "sL_ContLoss": "301737", "geom_point": "0101000020E6100000E2443F434DCA5EC01148CB79ADA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161320577999987, 49.270035908000089 ], [ -123.162201203, 49.270049496000084 ], [ -123.16218523699996, 49.270506393000133 ], [ -123.162170180999951, 49.270936799000097 ], [ -123.162152664999923, 49.271396866000075 ], [ -123.162136075999967, 49.271832102000062 ], [ -123.159727803999914, 49.271782297000065 ], [ -123.159743268999989, 49.27133716700007 ], [ -123.159745495999985, 49.271273304000061 ], [ -123.159758489999902, 49.270898601000098 ], [ -123.15977534699999, 49.270455989000027 ], [ -123.159792207999942, 49.270012296000068 ], [ -123.161045591999937, 49.270031659000026 ], [ -123.161320577999987, 49.270035908000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "537838500", "BldgCostT": "366645000", "sL_LossRatio": "0.83836265291172", "sL_AssetLoss": "2989470", "sL_BldgLoss": "2506260", "sL_StrLoss": "1193150", "sL_NStrLoss": "1313110", "sL_ContLoss": "483210", "geom_point": "0101000020E610000034BACD6534CA5EC03B15DB6A77A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157474398999952, 49.269092907000065 ], [ -123.157502392999959, 49.268186605000054 ], [ -123.159845112999932, 49.268250102000046 ], [ -123.159834202999917, 49.268683419000041 ], [ -123.159823090999978, 49.269125910000049 ], [ -123.162234914999942, 49.26916139800008 ], [ -123.162217306999977, 49.269624997000079 ], [ -123.162201203, 49.270049496000084 ], [ -123.161320577999987, 49.270035908000089 ], [ -123.161045591999937, 49.270031659000026 ], [ -123.159792207999942, 49.270012296000068 ], [ -123.157444993999974, 49.269974789000067 ], [ -123.157459158999927, 49.269549880000056 ], [ -123.15746059099996, 49.269506984000124 ], [ -123.157474398999952, 49.269092907000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "448697675", "BldgCostT": "308205126", "sL_LossRatio": "0.833702891759823", "sL_AssetLoss": "2390240", "sL_BldgLoss": "1992750", "sL_StrLoss": "917400", "sL_NStrLoss": "1075350", "sL_ContLoss": "397490", "geom_point": "0101000020E6100000CCD05F8567CA5EC0E3A572456FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162217306999977, 49.269624997000079 ], [ -123.162234914999942, 49.26916139800008 ], [ -123.159823090999978, 49.269125910000049 ], [ -123.159834202999917, 49.268683419000041 ], [ -123.159845112999932, 49.268250102000046 ], [ -123.162256905, 49.268285613000124 ], [ -123.164539220000023, 49.268325808000057 ], [ -123.164527327999934, 49.2687758840001 ], [ -123.164516299, 49.269194409000121 ], [ -123.164497629999943, 49.26964879000014 ], [ -123.164479688999947, 49.270085117000072 ], [ -123.162201203, 49.270049496000084 ], [ -123.162217306999977, 49.269624997000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288141842", "BldgCostT": "180115906", "sL_LossRatio": "0.746524362176649", "sL_AssetLoss": "1711916", "sL_BldgLoss": "1277987", "sL_StrLoss": "558023", "sL_NStrLoss": "719964", "sL_ContLoss": "433929", "geom_point": "0101000020E6100000A517295269CA5EC0080D17FBC3A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162201203, 49.270049496000084 ], [ -123.164479688999947, 49.270085117000072 ], [ -123.16447050699999, 49.270530014000094 ], [ -123.164460788999975, 49.271000604000065 ], [ -123.16443607199993, 49.271438841000155 ], [ -123.164411306999966, 49.271878382000082 ], [ -123.16439068899993, 49.272293212000086 ], [ -123.164369594999968, 49.272717693000082 ], [ -123.162103886999958, 49.272694199000114 ], [ -123.160740151999931, 49.272673605000087 ], [ -123.160465137999978, 49.272669446000094 ], [ -123.159694808999944, 49.2726577890001 ], [ -123.15971168199998, 49.272209421000106 ], [ -123.159727803999914, 49.271782297000065 ], [ -123.162136075999967, 49.271832102000062 ], [ -123.162152664999923, 49.271396866000075 ], [ -123.162170180999951, 49.270936799000097 ], [ -123.16218523699996, 49.270506393000133 ], [ -123.162201203, 49.270049496000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407687439", "BldgCostT": "269465825", "sL_LossRatio": "0.77464714929923", "sL_AssetLoss": "3244290", "sL_BldgLoss": "2513180", "sL_StrLoss": "1132460", "sL_NStrLoss": "1380720", "sL_ContLoss": "731110", "geom_point": "0101000020E61000004084D9809FCA5EC0D8A5DA029DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166237805999913, 49.272230801000042 ], [ -123.16624329299998, 49.271915695000075 ], [ -123.164411306999966, 49.271878382000082 ], [ -123.16443607199993, 49.271438841000155 ], [ -123.164460788999975, 49.271000604000065 ], [ -123.16447050699999, 49.270530014000094 ], [ -123.164479688999947, 49.270085117000072 ], [ -123.164497629999943, 49.26964879000014 ], [ -123.164516299, 49.269194409000121 ], [ -123.164527327999934, 49.2687758840001 ], [ -123.164539220000023, 49.268325808000057 ], [ -123.166346910999948, 49.268353406000138 ], [ -123.16633798099997, 49.2688 ], [ -123.166329617000017, 49.269220397 ], [ -123.166301187, 49.270113095000077 ], [ -123.16822012599999, 49.270143711000046 ], [ -123.168208106999899, 49.270460674000049 ], [ -123.168186407999954, 49.271033610000089 ], [ -123.16816757499997, 49.271454598000076 ], [ -123.166237805999913, 49.272230801000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "465568966", "BldgCostT": "317463008", "sL_LossRatio": "0.803799459550501", "sL_AssetLoss": "1888058", "sL_BldgLoss": "1517620", "sL_StrLoss": "705600", "sL_NStrLoss": "812020", "sL_ContLoss": "370438", "geom_point": "0101000020E6100000BA3AC63625CB5EC09F210316CCA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16439068899993, 49.272293212000086 ], [ -123.164411306999966, 49.271878382000082 ], [ -123.16624329299998, 49.271915695000075 ], [ -123.166237805999913, 49.272230801000042 ], [ -123.16816757499997, 49.271454598000076 ], [ -123.168186407999954, 49.271033610000089 ], [ -123.168817926, 49.271044427000064 ], [ -123.169177313999981, 49.271050591000048 ], [ -123.169909106999981, 49.271061763000077 ], [ -123.170986500999902, 49.27107820600002 ], [ -123.173732314999938, 49.27111410600007 ], [ -123.173733075999962, 49.27105582700009 ], [ -123.173738139999926, 49.270677965000118 ], [ -123.173743907999935, 49.270246981000113 ], [ -123.174401085999975, 49.270255729000034 ], [ -123.175696013999982, 49.270272906000102 ], [ -123.177644691999916, 49.270310385000123 ], [ -123.177631929999961, 49.270744596000036 ], [ -123.177621332999962, 49.271104452000024 ], [ -123.177618896999945, 49.271187018000035 ], [ -123.17761272499996, 49.271537206000076 ], [ -123.179586974999893, 49.271765302000034 ], [ -123.181598593000018, 49.271966505000144 ], [ -123.183505893999964, 49.272165794000088 ], [ -123.184513391999957, 49.272250582000034 ], [ -123.185574004999964, 49.272274694000068 ], [ -123.185555600999976, 49.272873181000065 ], [ -123.185549789999968, 49.273059491000076 ], [ -123.18568808299996, 49.273276639000052 ], [ -123.185699987999939, 49.273297854000084 ], [ -123.184214205, 49.273235112000059 ], [ -123.18375869599997, 49.273145298000017 ], [ -123.18331970899996, 49.272857686000073 ], [ -123.18276780599993, 49.272661098000057 ], [ -123.181406, 49.272618402000077 ], [ -123.178573401999955, 49.27213699900004 ], [ -123.177431577999982, 49.272102793000066 ], [ -123.175149102999953, 49.271836489000066 ], [ -123.17263429299993, 49.271713992000144 ], [ -123.17102519399999, 49.271734 ], [ -123.169922426999918, 49.271904071000044 ], [ -123.169919907999926, 49.271899213000061 ], [ -123.168887305999988, 49.271900726000069 ], [ -123.168888180999929, 49.272157124000024 ], [ -123.168907850999943, 49.272178481000083 ], [ -123.166423601999952, 49.272874804000047 ], [ -123.164847117999955, 49.273795551000028 ], [ -123.164774363999953, 49.273795655000107 ], [ -123.164577536999971, 49.27388476200008 ], [ -123.164357699999954, 49.273971885000037 ], [ -123.164357781999954, 49.273996442000048 ], [ -123.164148749999953, 49.274035101000052 ], [ -123.164148669, 49.274028165000068 ], [ -123.164143064, 49.273917296000022 ], [ -123.164132085999981, 49.27356889800015 ], [ -123.164267799999934, 49.273484212000078 ], [ -123.164342512999951, 49.273372806000047 ], [ -123.164350900999949, 49.273360292000049 ], [ -123.164352605999966, 49.273301949000064 ], [ -123.164364961999979, 49.272877468000061 ], [ -123.164367041, 49.272805485000106 ], [ -123.164369594999968, 49.272717693000082 ], [ -123.16439068899993, 49.272293212000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "362078582", "BldgCostT": "252603332", "sL_LossRatio": "0.893486659848923", "sL_AssetLoss": "779339", "sL_BldgLoss": "696329", "sL_StrLoss": "313190", "sL_NStrLoss": "383139", "sL_ContLoss": "83010", "geom_point": "0101000020E6100000318EC2DC4BCA5EC07F8BD2CEFEA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.159580191999922, 49.273999895000024 ], [ -123.159154899999947, 49.273891595000094 ], [ -123.157533487999928, 49.273921502000135 ], [ -123.157281260000019, 49.273872423000114 ], [ -123.157286851999913, 49.273684173000042 ], [ -123.157311667999963, 49.27335583500011 ], [ -123.157321304, 49.273243189000041 ], [ -123.157361080999976, 49.272622501000029 ], [ -123.159694808999944, 49.2726577890001 ], [ -123.160465137999978, 49.272669446000094 ], [ -123.160740151999931, 49.272673605000087 ], [ -123.162103886999958, 49.272694199000114 ], [ -123.164369594999968, 49.272717693000082 ], [ -123.164367041, 49.272805485000106 ], [ -123.164364961999979, 49.272877468000061 ], [ -123.164352605999966, 49.273301949000064 ], [ -123.164350900999949, 49.273360292000049 ], [ -123.164342512999951, 49.273372806000047 ], [ -123.164267799999934, 49.273484212000078 ], [ -123.164132085999981, 49.27356889800015 ], [ -123.164143064, 49.273917296000022 ], [ -123.164148669, 49.274028165000068 ], [ -123.164148749999953, 49.274035101000052 ], [ -123.163692412999978, 49.274119499000093 ], [ -123.16163129, 49.274266190000041 ], [ -123.160695579, 49.274402894000055 ], [ -123.160242385999965, 49.274313192000086 ], [ -123.159580191999922, 49.273999895000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184285584", "BldgCostT": "123608334", "sL_LossRatio": "0.79959166781625", "sL_AssetLoss": "1812250", "sL_BldgLoss": "1449060", "sL_StrLoss": "684770", "sL_NStrLoss": "764290", "sL_ContLoss": "363190", "geom_point": "0101000020E6100000D19364E3A2CC5EC0857580B3D6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.197030941999955, 49.274349574000084 ], [ -123.197034852999948, 49.274284858000051 ], [ -123.196952067999987, 49.274284999000074 ], [ -123.196906512999959, 49.274247703000086 ], [ -123.196739192999956, 49.273762004000098 ], [ -123.196525053999935, 49.273515418000031 ], [ -123.196524897999964, 49.273476159000062 ], [ -123.196491011999939, 49.273476217000081 ], [ -123.196326084999967, 49.27328629700002 ], [ -123.195698199999953, 49.273007107000112 ], [ -123.195697925999951, 49.27293785100008 ], [ -123.195543035999918, 49.272938113000052 ], [ -123.195458197999983, 49.272900388000025 ], [ -123.19528522, 49.272864275000082 ], [ -123.19528444699999, 49.272668694000117 ], [ -123.19440037899993, 49.272670186000013 ], [ -123.194398077999935, 49.27270823200007 ], [ -123.193291778999978, 49.272671188000039 ], [ -123.192268188999918, 49.272636903000041 ], [ -123.190606423999981, 49.272821439000012 ], [ -123.189395480999963, 49.272955893000081 ], [ -123.188598503999984, 49.273163890000049 ], [ -123.188435412999979, 49.273623896000089 ], [ -123.188202316999963, 49.273642392000077 ], [ -123.187707776999929, 49.273598193000048 ], [ -123.186674105999927, 49.273338982999988 ], [ -123.185699987999939, 49.273297854000084 ], [ -123.18568808299996, 49.273276639000052 ], [ -123.185549789999968, 49.273059491000076 ], [ -123.185555600999976, 49.272873181000065 ], [ -123.185574004999964, 49.272274694000068 ], [ -123.187276, 49.272303701000112 ], [ -123.187497574999966, 49.272275296000032 ], [ -123.187865075999937, 49.272174097000061 ], [ -123.18947559499999, 49.271603586000019 ], [ -123.189479689000024, 49.271376696000054 ], [ -123.189489126999916, 49.270941300000104 ], [ -123.189499497999975, 49.270461186000041 ], [ -123.189506926999911, 49.270184621000077 ], [ -123.189509402999931, 49.270093103000079 ], [ -123.189714344, 49.270093324000058 ], [ -123.190590616999913, 49.270094206000039 ], [ -123.190615105999939, 49.269576883000134 ], [ -123.190632787999959, 49.26917559900005 ], [ -123.190642692999987, 49.268950635000117 ], [ -123.190651816999917, 49.268743867000097 ], [ -123.190652533999952, 49.268726250000022 ], [ -123.190658249999927, 49.26859180200011 ], [ -123.193449815999955, 49.268640096000127 ], [ -123.196274164999977, 49.268697113 ], [ -123.199176003000019, 49.268755583000058 ], [ -123.199686911999962, 49.268712991000086 ], [ -123.19992381699997, 49.268770493000055 ], [ -123.20000513899997, 49.268791607000047 ], [ -123.200205205999936, 49.268843512000082 ], [ -123.20021897599996, 49.268843987000018 ], [ -123.200893402999938, 49.268867680000014 ], [ -123.201536993, 49.268971493000059 ], [ -123.201678488999946, 49.268994293000056 ], [ -123.20178257699996, 49.268931199000093 ], [ -123.20190431099999, 49.268895706000073 ], [ -123.202072796999957, 49.268902690000161 ], [ -123.202661993999953, 49.268929691000054 ], [ -123.202720011999972, 49.268993402 ], [ -123.20275222699992, 49.269159199000029 ], [ -123.202763998999913, 49.269219714 ], [ -123.202744587999916, 49.269495704000072 ], [ -123.20384570899995, 49.269736798000046 ], [ -123.203951611000022, 49.269802602000048 ], [ -123.204005313, 49.269892201000054 ], [ -123.204000384999944, 49.270132604000018 ], [ -123.202720902999914, 49.270116592000093 ], [ -123.20271396699998, 49.270657635000063 ], [ -123.202709010999953, 49.271043083000087 ], [ -123.202721776999965, 49.271098609000077 ], [ -123.202759094999976, 49.271260513000072 ], [ -123.202361596999978, 49.271359188000112 ], [ -123.202528212999951, 49.271558103000146 ], [ -123.202684795999957, 49.271694488000016 ], [ -123.202847897999959, 49.271768953000041 ], [ -123.203429608999926, 49.272034494000067 ], [ -123.205091878999923, 49.272608003000066 ], [ -123.205724702999944, 49.272937809000076 ], [ -123.205692490999951, 49.273585507000035 ], [ -123.205665894999953, 49.274597205000056 ], [ -123.20568889499999, 49.274786008000092 ], [ -123.205737498999923, 49.274822410000105 ], [ -123.205485024999959, 49.275356788000074 ], [ -123.205481172999981, 49.275462083000086 ], [ -123.20543999599991, 49.275893883000109 ], [ -123.204750586999964, 49.275988096000091 ], [ -123.203212294999929, 49.276359812000109 ], [ -123.202085207999957, 49.276488010000058 ], [ -123.201300208999925, 49.276074892000047 ], [ -123.199662303999972, 49.275510997000026 ], [ -123.198801418999977, 49.27542854300011 ], [ -123.198190198999939, 49.275369993000055 ], [ -123.198271587999912, 49.275180501000115 ], [ -123.197706687999968, 49.274902800000163 ], [ -123.197030941999955, 49.274349574000084 ] ], [ [ -123.202284693999957, 49.270027859000045 ], [ -123.202283305999941, 49.269688237000032 ], [ -123.201870918999958, 49.26968895900005 ], [ -123.20187013599994, 49.269497210000061 ], [ -123.200972977999953, 49.26947394600009 ], [ -123.200937316999969, 49.270064907000105 ], [ -123.195450291999975, 49.26992246600004 ], [ -123.195450722999951, 49.269915335000114 ], [ -123.193784432999976, 49.269872023000048 ], [ -123.193823907999985, 49.26921952200005 ], [ -123.193721454999931, 49.269216857000067 ], [ -123.193684511999948, 49.269827486000068 ], [ -123.193623663999944, 49.269825903000026 ], [ -123.19362453199993, 49.270047706000121 ], [ -123.19455753499993, 49.270071962 ], [ -123.194498325999959, 49.271050885000086 ], [ -123.195690453999958, 49.271048872000051 ], [ -123.195689386999945, 49.270779018000049 ], [ -123.19651417899999, 49.270777617000107 ], [ -123.196513106999959, 49.270507764000094 ], [ -123.198575074999951, 49.270504238000036 ], [ -123.198578323, 49.271313801000119 ], [ -123.199815524999934, 49.27131166700007 ], [ -123.19982097499998, 49.272660938000037 ], [ -123.200233384999962, 49.272660225000067 ], [ -123.20023447899996, 49.272930078000044 ], [ -123.200434077999958, 49.272929732000051 ], [ -123.200446611999922, 49.272722081000062 ], [ -123.200583045999934, 49.272725620000088 ], [ -123.200707217999962, 49.270668182000108 ], [ -123.201875037999969, 49.270698465000073 ], [ -123.20187312199999, 49.270228667000019 ], [ -123.20224417699994, 49.270228018000104 ], [ -123.202285512999978, 49.27022794600002 ], [ -123.202284693999957, 49.270027859000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102140614", "BldgCostT": "65321936", "sL_LossRatio": "0.714310028325857", "sL_AssetLoss": "1398369", "sL_BldgLoss": "998869", "sL_StrLoss": "454289", "sL_NStrLoss": "544580", "sL_ContLoss": "399500", "geom_point": "0101000020E61000005F35E03D91CC5EC07F53FDEF2DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.187629078000015, 49.268633620000116 ], [ -123.187640696999964, 49.268374501000032 ], [ -123.18763771, 49.267766505000047 ], [ -123.187655901000014, 49.26735259400003 ], [ -123.187671405999964, 49.266961192000075 ], [ -123.187701582000017, 49.266077499000083 ], [ -123.187713825999964, 49.265809408000074 ], [ -123.187733123, 49.265263198000078 ], [ -123.191150893999946, 49.26531081400001 ], [ -123.191703081999904, 49.26531849000002 ], [ -123.193163221999896, 49.265338802000109 ], [ -123.193273004000034, 49.265317410000137 ], [ -123.193359700999949, 49.265270095000105 ], [ -123.193414199999907, 49.265095894000119 ], [ -123.194460797999923, 49.265281580000128 ], [ -123.194807148999928, 49.265321895000056 ], [ -123.194869988999955, 49.265329185000041 ], [ -123.195576122, 49.265352003000018 ], [ -123.196225179999928, 49.26536194100003 ], [ -123.196366591999933, 49.26536410900011 ], [ -123.199799289999987, 49.265416602000045 ], [ -123.20000442599995, 49.265420168000119 ], [ -123.201381602999973, 49.265444198000061 ], [ -123.202946003999926, 49.265472981000087 ], [ -123.206006218999974, 49.265527106000079 ], [ -123.209073385999943, 49.265580300000082 ], [ -123.209030759999948, 49.266022665000037 ], [ -123.2089891899999, 49.266453597000137 ], [ -123.205970386999965, 49.266396200000045 ], [ -123.205952212999989, 49.266811165000021 ], [ -123.205933708999936, 49.26723290100005 ], [ -123.204157487999936, 49.267206695000084 ], [ -123.203008763999946, 49.26719060800005 ], [ -123.20320169099989, 49.268272807000066 ], [ -123.202661993999953, 49.268929691000054 ], [ -123.202072796999957, 49.268902690000161 ], [ -123.20190431099999, 49.268895706000073 ], [ -123.20178257699996, 49.268931199000093 ], [ -123.201678488999946, 49.268994293000056 ], [ -123.201536993, 49.268971493000059 ], [ -123.200893402999938, 49.268867680000014 ], [ -123.20021897599996, 49.268843987000018 ], [ -123.200205205999936, 49.268843512000082 ], [ -123.20000513899997, 49.268791607000047 ], [ -123.19992381699997, 49.268770493000055 ], [ -123.199686911999962, 49.268712991000086 ], [ -123.199176003000019, 49.268755583000058 ], [ -123.196274164999977, 49.268697113 ], [ -123.193449815999955, 49.268640096000127 ], [ -123.190658249999927, 49.26859180200011 ], [ -123.190652533999952, 49.268726250000022 ], [ -123.190651816999917, 49.268743867000097 ], [ -123.190642692999987, 49.268950635000117 ], [ -123.190632787999959, 49.26917559900005 ], [ -123.190615105999939, 49.269576883000134 ], [ -123.18758679199999, 49.269557495000086 ], [ -123.187606121999963, 49.269135505000051 ], [ -123.187629078000015, 49.268633620000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157844418", "BldgCostT": "96571668", "sL_LossRatio": "0.699716466739368", "sL_AssetLoss": "1902775", "sL_BldgLoss": "1331403", "sL_StrLoss": "603985", "sL_NStrLoss": "727418", "sL_ContLoss": "571372", "geom_point": "0101000020E61000003FCE0BE289CC5EC03425ACCFCDA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190841004999925, 49.263578786000025 ], [ -123.190858683999963, 49.263124482000059 ], [ -123.190860214999958, 49.263085829000069 ], [ -123.190878181999949, 49.262624099000092 ], [ -123.193942000999982, 49.262660594000089 ], [ -123.197008710999967, 49.262741188000042 ], [ -123.196990410999931, 49.263174751000122 ], [ -123.196970506999932, 49.263647199000083 ], [ -123.200081580999978, 49.26369909400011 ], [ -123.200090371999963, 49.263706279000125 ], [ -123.200318500999941, 49.263892588000076 ], [ -123.200749653999978, 49.264144436000102 ], [ -123.200781599999942, 49.264163102000118 ], [ -123.201146510999976, 49.2644914850001 ], [ -123.201199890999959, 49.264585600000103 ], [ -123.201326880999957, 49.264825797000093 ], [ -123.201345115999914, 49.265031379000092 ], [ -123.201381602999973, 49.265444198000061 ], [ -123.20000442599995, 49.265420168000119 ], [ -123.199799289999987, 49.265416602000045 ], [ -123.196366591999933, 49.26536410900011 ], [ -123.196225179999928, 49.26536194100003 ], [ -123.195576122, 49.265352003000018 ], [ -123.194869988999955, 49.265329185000041 ], [ -123.194807148999928, 49.265321895000056 ], [ -123.194460797999923, 49.265281580000128 ], [ -123.193414199999907, 49.265095894000119 ], [ -123.19336538, 49.264811790000117 ], [ -123.193222711999979, 49.264673912000035 ], [ -123.192624016999901, 49.264419592000102 ], [ -123.19164946799998, 49.264066584 ], [ -123.191118393999901, 49.263874203000043 ], [ -123.190895473999888, 49.263698198000128 ], [ -123.190841004999925, 49.263578786000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97885834", "BldgCostT": "64593334", "sL_LossRatio": "0.715844933928143", "sL_AssetLoss": "1421407", "sL_BldgLoss": "1017507", "sL_StrLoss": "463890", "sL_NStrLoss": "553617", "sL_ContLoss": "403900", "geom_point": "0101000020E6100000340332C7B4CC5EC0FCF7DF6B84A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.199997239999959, 49.260062081000058 ], [ -123.200109994999963, 49.260063797000136 ], [ -123.200094082999968, 49.260524257000029 ], [ -123.200078687999948, 49.260969095000085 ], [ -123.200063506, 49.261405979000081 ], [ -123.200046909999926, 49.261883286000113 ], [ -123.200032348999969, 49.262324303000078 ], [ -123.20002849899997, 49.262441411000054 ], [ -123.200017095999939, 49.262787804000041 ], [ -123.200001449999945, 49.263223802000013 ], [ -123.199986901000017, 49.263628186000062 ], [ -123.200081580999978, 49.26369909400011 ], [ -123.196970506999932, 49.263647199000083 ], [ -123.196990410999931, 49.263174751000122 ], [ -123.197008710999967, 49.262741188000042 ], [ -123.19700427199993, 49.262293169000102 ], [ -123.196999808999976, 49.261842999000081 ], [ -123.197021056999944, 49.261375567000151 ], [ -123.197041691999971, 49.260921692000096 ], [ -123.197059851999938, 49.260457564000056 ], [ -123.197077101, 49.260017400000045 ], [ -123.199997239999959, 49.260062081000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94459250", "BldgCostT": "62705000", "sL_LossRatio": "0.737220258166706", "sL_AssetLoss": "1224790", "sL_BldgLoss": "902940", "sL_StrLoss": "419490", "sL_NStrLoss": "483450", "sL_ContLoss": "321850", "geom_point": "0101000020E6100000DCA447F883CC5EC0BE1CFA1756A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.196586553999936, 49.258188470000078 ], [ -123.197155594999941, 49.258196496000025 ], [ -123.197153421999943, 49.258245181000071 ], [ -123.197134512999966, 49.258668417000081 ], [ -123.197116494999975, 49.259070880000124 ], [ -123.197096230999989, 49.259558158000047 ], [ -123.197077101, 49.260017400000045 ], [ -123.197059851999938, 49.260457564000056 ], [ -123.197041691999971, 49.260921692000096 ], [ -123.197021056999944, 49.261375567000151 ], [ -123.196999808999976, 49.261842999000081 ], [ -123.19700427199993, 49.262293169000102 ], [ -123.197008710999967, 49.262741188000042 ], [ -123.193942000999982, 49.262660594000089 ], [ -123.193960614, 49.262244619000072 ], [ -123.193981116999979, 49.261787006000112 ], [ -123.194008881999963, 49.261327426000022 ], [ -123.194036196999917, 49.260876001000064 ], [ -123.194050957999949, 49.260409375000023 ], [ -123.194064792999924, 49.259971589000031 ], [ -123.194094806999956, 49.259022085000034 ], [ -123.194125286999949, 49.258153700000044 ], [ -123.196498944, 49.25818722900005 ], [ -123.196586553999936, 49.258188470000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119056083", "BldgCostT": "79218333", "sL_LossRatio": "0.77478557155429", "sL_AssetLoss": "1196553", "sL_BldgLoss": "927072", "sL_StrLoss": "471972", "sL_NStrLoss": "455100", "sL_ContLoss": "269481", "geom_point": "0101000020E61000007C88B112D4CC5EC0C17C47C734A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.200094082999968, 49.260524257000029 ], [ -123.200109994999963, 49.260063797000136 ], [ -123.199997239999959, 49.260062081000058 ], [ -123.197077101, 49.260017400000045 ], [ -123.197096230999989, 49.259558158000047 ], [ -123.197116494999975, 49.259070880000124 ], [ -123.197134512999966, 49.258668417000081 ], [ -123.197153421999943, 49.258245181000071 ], [ -123.197155594999941, 49.258196496000025 ], [ -123.200003880999958, 49.258226738000083 ], [ -123.200150708999914, 49.258228302000113 ], [ -123.200164445999974, 49.258228467 ], [ -123.203215492999988, 49.258267207000053 ], [ -123.203211914999983, 49.258370006000064 ], [ -123.203198709999981, 49.258747333000045 ], [ -123.203183189999962, 49.259190502000102 ], [ -123.203165937999941, 49.259647007000105 ], [ -123.203148404999979, 49.260110995000069 ], [ -123.20313242899999, 49.260537195000104 ], [ -123.203114480999929, 49.261014494000086 ], [ -123.200078687999948, 49.260969095000085 ], [ -123.200094082999968, 49.260524257000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122367333", "BldgCostT": "79233333", "sL_LossRatio": "0.744318002137766", "sL_AssetLoss": "1264872", "sL_BldgLoss": "941467", "sL_StrLoss": "470436", "sL_NStrLoss": "471031", "sL_ContLoss": "323405", "geom_point": "0101000020E610000021BBDAA39ACC5EC06519DAE7CEA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193566276999945, 49.257000670000089 ], [ -123.19356950199996, 49.256510788000085 ], [ -123.193572898999918, 49.256074194000121 ], [ -123.193576585999935, 49.255599499000077 ], [ -123.193579213999953, 49.255165834000138 ], [ -123.193581891999898, 49.254716886000097 ], [ -123.193584022, 49.254293379000096 ], [ -123.193586499, 49.253800084000069 ], [ -123.193589754999977, 49.253366695000089 ], [ -123.19359327899997, 49.252892299000059 ], [ -123.19520645299994, 49.252899890000023 ], [ -123.195206726999984, 49.252969311000122 ], [ -123.196443469999934, 49.252967215000062 ], [ -123.196444539999916, 49.253237070000054 ], [ -123.196610811999918, 49.253236787000112 ], [ -123.196480988999966, 49.25393430500008 ], [ -123.19649668299995, 49.254316409000062 ], [ -123.19644882399993, 49.254316489000061 ], [ -123.196449894999972, 49.254586344000053 ], [ -123.196507766999929, 49.254586246 ], [ -123.196533002999928, 49.255200692000045 ], [ -123.196538210999947, 49.255616090000061 ], [ -123.196541834999962, 49.256087204000075 ], [ -123.196545197999953, 49.25652330300008 ], [ -123.198021296999954, 49.256609274000034 ], [ -123.19851940599996, 49.256629397000076 ], [ -123.198519856999923, 49.256741660000046 ], [ -123.199756692999941, 49.25673952799999 ], [ -123.199756449999981, 49.256679361000074 ], [ -123.201010305999944, 49.256729988000082 ], [ -123.201405750999953, 49.25672264000017 ], [ -123.201405807999919, 49.256736665000098 ], [ -123.201818087999982, 49.25673594600007 ], [ -123.201818002, 49.25671497700003 ], [ -123.202923587999962, 49.256694421000105 ], [ -123.203022044999955, 49.256920171000104 ], [ -123.203207123999931, 49.257825953000122 ], [ -123.203236287999957, 49.257968731000048 ], [ -123.203226376999979, 49.258133297000015 ], [ -123.20322244399992, 49.258182165000058 ], [ -123.203215492999988, 49.258267207000053 ], [ -123.200164445999974, 49.258228467 ], [ -123.200150708999914, 49.258228302000113 ], [ -123.200003880999958, 49.258226738000083 ], [ -123.197155594999941, 49.258196496000025 ], [ -123.196586553999936, 49.258188470000078 ], [ -123.196498944, 49.25818722900005 ], [ -123.194125286999949, 49.258153700000044 ], [ -123.193576432999961, 49.258146562000029 ], [ -123.193560505, 49.257975999000045 ], [ -123.193560894999976, 49.25790033300003 ], [ -123.19356310199997, 49.257479798000084 ], [ -123.193566276999945, 49.257000670000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101256456", "BldgCostT": "67269714", "sL_LossRatio": "0.747475704554333", "sL_AssetLoss": "1287587", "sL_BldgLoss": "962440", "sL_StrLoss": "448810", "sL_NStrLoss": "513630", "sL_ContLoss": "325147", "geom_point": "0101000020E61000000FB53BDE43CC5EC0E5A13A4647A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190978558999959, 49.260359933000124 ], [ -123.190996414999987, 49.259923314000048 ], [ -123.187943001999969, 49.259875293000093 ], [ -123.187956981999946, 49.25947649800009 ], [ -123.187958317, 49.259438527000107 ], [ -123.187975103999989, 49.258960099000021 ], [ -123.187990345999935, 49.258530101000105 ], [ -123.188007902999985, 49.258033192000063 ], [ -123.190788512999987, 49.258106433000137 ], [ -123.19107570299991, 49.25811399100008 ], [ -123.193576432999961, 49.258146562000029 ], [ -123.194125286999949, 49.258153700000044 ], [ -123.194094806999956, 49.259022085000034 ], [ -123.194064792999924, 49.259971589000031 ], [ -123.194050957999949, 49.260409375000023 ], [ -123.194036196999917, 49.260876001000064 ], [ -123.194008881999963, 49.261327426000022 ], [ -123.193981116999979, 49.261787006000112 ], [ -123.193960614, 49.262244619000072 ], [ -123.193942000999982, 49.262660594000089 ], [ -123.190878181999949, 49.262624099000092 ], [ -123.190884299999979, 49.262177181000048 ], [ -123.190890196999973, 49.26174440800002 ], [ -123.190924243999959, 49.261294193000033 ], [ -123.190959401999947, 49.260829288000131 ], [ -123.190978558999959, 49.260359933000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122557667", "BldgCostT": "78661667", "sL_LossRatio": "0.723679219093603", "sL_AssetLoss": "1376042", "sL_BldgLoss": "995813", "sL_StrLoss": "465280", "sL_NStrLoss": "530533", "sL_ContLoss": "380229", "geom_point": "0101000020E6100000CB9B370C2ECC5EC02394DF1EDBA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.188015122999929, 49.25648599700007 ], [ -123.18802002299995, 49.256047466000112 ], [ -123.188025429999968, 49.255569303000115 ], [ -123.18802834499999, 49.255147988000012 ], [ -123.188031512999927, 49.254698482 ], [ -123.19079101799997, 49.254693811000017 ], [ -123.190799113999958, 49.255142990000074 ], [ -123.190807085999936, 49.255585005000064 ], [ -123.190802526999988, 49.256070092000058 ], [ -123.190798496999932, 49.25649898800004 ], [ -123.19356950199996, 49.256510788000085 ], [ -123.193566276999945, 49.257000670000089 ], [ -123.19356310199997, 49.257479798000084 ], [ -123.193560894999976, 49.25790033300003 ], [ -123.193560505, 49.257975999000045 ], [ -123.193576432999961, 49.258146562000029 ], [ -123.19107570299991, 49.25811399100008 ], [ -123.190788512999987, 49.258106433000137 ], [ -123.188007902999985, 49.258033192000063 ], [ -123.188006178999942, 49.257880907000057 ], [ -123.188005095000037, 49.257399008000071 ], [ -123.18800995299992, 49.256955909000048 ], [ -123.188015122999929, 49.25648599700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189757030", "BldgCostT": "114835032", "sL_LossRatio": "0.697599886433191", "sL_AssetLoss": "1941412.3", "sL_BldgLoss": "1354329", "sL_StrLoss": "635609", "sL_NStrLoss": "718720", "sL_ContLoss": "587083.3", "geom_point": "0101000020E6100000B924ABE8F0CB5EC0A10AB931C1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185803699999923, 49.253765543000029 ], [ -123.188042104999923, 49.2537755050001 ], [ -123.188036768999922, 49.254239663000099 ], [ -123.188031512999927, 49.254698482 ], [ -123.18802834499999, 49.255147988000012 ], [ -123.188025429999968, 49.255569303000115 ], [ -123.18802002299995, 49.256047466000112 ], [ -123.188015122999929, 49.25648599700007 ], [ -123.18800995299992, 49.256955909000048 ], [ -123.188005095000037, 49.257399008000071 ], [ -123.188006178999942, 49.257880907000057 ], [ -123.188007902999985, 49.258033192000063 ], [ -123.186091200999925, 49.258021080000049 ], [ -123.185113902999916, 49.258009084 ], [ -123.185121399999957, 49.257839908000037 ], [ -123.185126024999988, 49.257356396000091 ], [ -123.185128605999978, 49.256476490000097 ], [ -123.185135602999978, 49.255567809000127 ], [ -123.185138352999928, 49.255134509000108 ], [ -123.18514120599994, 49.254683492000062 ], [ -123.185165507999969, 49.253762698000045 ], [ -123.185803699999923, 49.253765543000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100381645", "BldgCostT": "66926524", "sL_LossRatio": "0.737230458474966", "sL_AssetLoss": "1326790", "sL_BldgLoss": "978150", "sL_StrLoss": "446660", "sL_NStrLoss": "531490", "sL_ContLoss": "348640", "geom_point": "0101000020E61000006408CF9D03CC5EC0611A97BB60A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.188036768999922, 49.254239663000099 ], [ -123.188042104999923, 49.2537755050001 ], [ -123.185803699999923, 49.253765543000029 ], [ -123.185165507999969, 49.253762698000045 ], [ -123.185172306999945, 49.252857596000077 ], [ -123.185175499999986, 49.251944398000063 ], [ -123.185189825999984, 49.251053001000081 ], [ -123.18583457699998, 49.251055744000091 ], [ -123.188075803999965, 49.251065190000077 ], [ -123.188067147999973, 49.251523446000064 ], [ -123.18805900199996, 49.251955612000096 ], [ -123.188055001999899, 49.252449355000074 ], [ -123.188051618999935, 49.252869604000125 ], [ -123.190832187999945, 49.252879904000046 ], [ -123.190826750999975, 49.253389692000013 ], [ -123.190822516999972, 49.253787605000099 ], [ -123.19080660900002, 49.254244922000055 ], [ -123.19079101799997, 49.254693811000017 ], [ -123.188031512999927, 49.254698482 ], [ -123.188036768999922, 49.254239663000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108624144", "BldgCostT": "71321523", "sL_LossRatio": "0.722251014043609", "sL_AssetLoss": "1535930", "sL_BldgLoss": "1109327", "sL_StrLoss": "508790", "sL_NStrLoss": "600537", "sL_ContLoss": "426603", "geom_point": "0101000020E6100000E3E37F97BECB5EC0DE784EE57AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184518879999985, 49.251942253000067 ], [ -123.185175499999986, 49.251944398000063 ], [ -123.185172306999945, 49.252857596000077 ], [ -123.185165507999969, 49.253762698000045 ], [ -123.18514120599994, 49.254683492000062 ], [ -123.185138352999928, 49.255134509000108 ], [ -123.185135602999978, 49.255567809000127 ], [ -123.184464092999974, 49.255567370000094 ], [ -123.181842111999984, 49.255565608 ], [ -123.181846826, 49.255121768000066 ], [ -123.181851714999979, 49.25466149600004 ], [ -123.181857574999952, 49.254195224000043 ], [ -123.181863215999925, 49.253748493000074 ], [ -123.181864544999911, 49.253313636000087 ], [ -123.181865993999963, 49.252843399000014 ], [ -123.181863503, 49.252405245000084 ], [ -123.181860807999939, 49.251933489000066 ], [ -123.184518879999985, 49.251942253000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143075250", "BldgCostT": "93150000", "sL_LossRatio": "0.742314455235861", "sL_AssetLoss": "1646988", "sL_BldgLoss": "1222583", "sL_StrLoss": "573473", "sL_NStrLoss": "649110", "sL_ContLoss": "424405", "geom_point": "0101000020E6100000FCE8058689CB5EC08F0BFFD069A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.179217398999981, 49.255107764000051 ], [ -123.179206104999963, 49.25464370100012 ], [ -123.178549591999982, 49.254644585000079 ], [ -123.178558317999915, 49.253732407000022 ], [ -123.178564238, 49.253292012000081 ], [ -123.178570395999969, 49.252833791000036 ], [ -123.17858180399999, 49.25192429499999 ], [ -123.178590909999912, 49.25102929400002 ], [ -123.179196802999925, 49.251036883000054 ], [ -123.18011412, 49.251048403000055 ], [ -123.181858678999944, 49.251040803000038 ], [ -123.181859764999984, 49.25149666700004 ], [ -123.181860807999939, 49.251933489000066 ], [ -123.181863503, 49.252405245000084 ], [ -123.181865993999963, 49.252843399000014 ], [ -123.181864544999911, 49.253313636000087 ], [ -123.181863215999925, 49.253748493000074 ], [ -123.181857574999952, 49.254195224000043 ], [ -123.181851714999979, 49.25466149600004 ], [ -123.181846826, 49.255121768000066 ], [ -123.181842111999984, 49.255565608 ], [ -123.17922850399998, 49.25556311100005 ], [ -123.179217398999981, 49.255107764000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203833871", "BldgCostT": "134340518", "sL_LossRatio": "0.742707674748402", "sL_AssetLoss": "1867957", "sL_BldgLoss": "1387346", "sL_StrLoss": "606700", "sL_NStrLoss": "780646", "sL_ContLoss": "480611", "geom_point": "0101000020E6100000DF5B9909A9CB5EC03748F38D09A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181859764999984, 49.25149666700004 ], [ -123.181858678999944, 49.251040803000038 ], [ -123.18011412, 49.251048403000055 ], [ -123.179196802999925, 49.251036883000054 ], [ -123.178590909999912, 49.25102929400002 ], [ -123.178610239999927, 49.250603805 ], [ -123.178631812999924, 49.250129583000074 ], [ -123.178633821999938, 49.25004536400008 ], [ -123.178636293999915, 49.249942396000094 ], [ -123.178607654999908, 49.24947734400007 ], [ -123.178577600999944, 49.24898880300006 ], [ -123.181803392999953, 49.249011786000054 ], [ -123.18346480699995, 49.249016486000052 ], [ -123.185187997999918, 49.24902126200007 ], [ -123.18520179699999, 49.249021289000027 ], [ -123.185198993999947, 49.24948742600003 ], [ -123.185196016999939, 49.249976796000105 ], [ -123.185195180999983, 49.250147890000058 ], [ -123.185189825999984, 49.251053001000081 ], [ -123.185175499999986, 49.251944398000063 ], [ -123.184518879999985, 49.251942253000067 ], [ -123.181860807999939, 49.251933489000066 ], [ -123.181859764999984, 49.25149666700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187893894", "BldgCostT": "113896011", "sL_LossRatio": "0.675724548168196", "sL_AssetLoss": "2408363", "sL_BldgLoss": "1627390", "sL_StrLoss": "698460", "sL_NStrLoss": "928930", "sL_ContLoss": "780973", "geom_point": "0101000020E610000068F472F1DACB5EC0C727AFBECF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185198993999947, 49.24948742600003 ], [ -123.18520179699999, 49.249021289000027 ], [ -123.185187997999918, 49.24902126200007 ], [ -123.18346480699995, 49.249016486000052 ], [ -123.183471622999988, 49.248544017000071 ], [ -123.183478504000021, 49.24806749600004 ], [ -123.181840603999973, 49.248059893000075 ], [ -123.181877174999954, 49.247574706000108 ], [ -123.181911803999967, 49.247115004000115 ], [ -123.181924176999971, 49.24663945300005 ], [ -123.181936583999928, 49.246162696000098 ], [ -123.184511616999941, 49.246165649000062 ], [ -123.185198678999896, 49.24616643500012 ], [ -123.185255425999941, 49.246166497000083 ], [ -123.185258607999941, 49.24664281200009 ], [ -123.185261888999932, 49.247125018000119 ], [ -123.185246903999925, 49.247596627000121 ], [ -123.185231699999974, 49.248074501000048 ], [ -123.185920429999925, 49.248077277000071 ], [ -123.186742006999964, 49.248080608000059 ], [ -123.18810788899998, 49.248087399000056 ], [ -123.188098556999989, 49.248562494000026 ], [ -123.188089403999953, 49.249028186000082 ], [ -123.188083381999931, 49.249516682000092 ], [ -123.188077808999964, 49.249968193000015 ], [ -123.188076619999919, 49.250083851000113 ], [ -123.188075876999932, 49.250157301000051 ], [ -123.188075842999979, 49.250623296000043 ], [ -123.188075803999965, 49.251065190000077 ], [ -123.18583457699998, 49.251055744000091 ], [ -123.185189825999984, 49.251053001000081 ], [ -123.185195180999983, 49.250147890000058 ], [ -123.185196016999939, 49.249976796000105 ], [ -123.185198993999947, 49.24948742600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91412885", "BldgCostT": "60342078", "sL_LossRatio": "0.733023290986086", "sL_AssetLoss": "1057920", "sL_BldgLoss": "775480", "sL_StrLoss": "375260", "sL_NStrLoss": "400220", "sL_ContLoss": "282440", "geom_point": "0101000020E61000007C0891A98ECB5EC02D80E7E6B49F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178608178999951, 49.248033896000017 ], [ -123.178597721999907, 49.24760681700009 ], [ -123.178584509999951, 49.247068597000101 ], [ -123.178596102999947, 49.246153801000098 ], [ -123.17924950299999, 49.246155539000014 ], [ -123.181936583999928, 49.246162696000098 ], [ -123.181924176999971, 49.24663945300005 ], [ -123.181911803999967, 49.247115004000115 ], [ -123.181877174999954, 49.247574706000108 ], [ -123.181840603999973, 49.248059893000075 ], [ -123.183478504000021, 49.24806749600004 ], [ -123.183471622999988, 49.248544017000071 ], [ -123.18346480699995, 49.249016486000052 ], [ -123.181803392999953, 49.249011786000054 ], [ -123.178577600999944, 49.24898880300006 ], [ -123.178592489999971, 49.248524490000115 ], [ -123.178608178999951, 49.248033896000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96344417", "BldgCostT": "63376667", "sL_LossRatio": "0.724587960394183", "sL_AssetLoss": "1279610", "sL_BldgLoss": "927190", "sL_StrLoss": "408310", "sL_NStrLoss": "518880", "sL_ContLoss": "352420", "geom_point": "0101000020E610000036E5E9E089CB5EC07FD4D305449F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181296179999933, 49.24235452100006 ], [ -123.18197152, 49.242353501000082 ], [ -123.181930113999925, 49.243307202000075 ], [ -123.18195889499999, 49.244258288000083 ], [ -123.1819527, 49.24475970700005 ], [ -123.181947301999941, 49.24519469600007 ], [ -123.181941762999941, 49.245695012000041 ], [ -123.181936583999928, 49.246162696000098 ], [ -123.17924950299999, 49.246155539000014 ], [ -123.178596102999947, 49.246153801000098 ], [ -123.178609183, 49.245192997000061 ], [ -123.178629113999975, 49.244255906000063 ], [ -123.178667020999981, 49.243293100000123 ], [ -123.178656829999966, 49.24284807600003 ], [ -123.178645624999916, 49.24235850400008 ], [ -123.179331561999959, 49.242357489000085 ], [ -123.181296179999933, 49.24235452100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93637872", "BldgCostT": "62158705", "sL_LossRatio": "0.736087591918161", "sL_AssetLoss": "1293270", "sL_BldgLoss": "951960", "sL_StrLoss": "426200", "sL_NStrLoss": "525760", "sL_ContLoss": "341310", "geom_point": "0101000020E61000001C83A006C0CB5EC07A7B521E449F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184593306999957, 49.24237295500005 ], [ -123.185247717999971, 49.242377805000039 ], [ -123.18524542099999, 49.243233697000107 ], [ -123.185245199999969, 49.243323507000063 ], [ -123.185244, 49.24427201600006 ], [ -123.185243912999965, 49.244753913000139 ], [ -123.185243792999955, 49.245226688000052 ], [ -123.185255293999973, 49.246157467000117 ], [ -123.185255425999941, 49.246166497000083 ], [ -123.185198678999896, 49.24616643500012 ], [ -123.184511616999941, 49.246165649000062 ], [ -123.181936583999928, 49.246162696000098 ], [ -123.181941762999941, 49.245695012000041 ], [ -123.181947301999941, 49.24519469600007 ], [ -123.1819527, 49.24475970700005 ], [ -123.18195889499999, 49.244258288000083 ], [ -123.181930113999925, 49.243307202000075 ], [ -123.18197152, 49.242353501000082 ], [ -123.182629198999962, 49.242358390000021 ], [ -123.184593306999957, 49.24237295500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143746443", "BldgCostT": "89936288", "sL_LossRatio": "0.692645176138897", "sL_AssetLoss": "2085570", "sL_BldgLoss": "1444560", "sL_StrLoss": "610280", "sL_NStrLoss": "834280", "sL_ContLoss": "641010", "geom_point": "0101000020E61000005F88EEBC01CC5EC057BDDB402A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185247717999971, 49.242377805000039 ], [ -123.185246596, 49.241920383000092 ], [ -123.185245388999945, 49.241419394000083 ], [ -123.18524597599999, 49.240984892 ], [ -123.185246706999976, 49.240469190000113 ], [ -123.188177294999889, 49.240482489000065 ], [ -123.188170864999947, 49.240980422000106 ], [ -123.188165010999953, 49.241434294000022 ], [ -123.188157794999981, 49.241924742000066 ], [ -123.188150888999985, 49.242392292000083 ], [ -123.188467209999928, 49.242396327000122 ], [ -123.189826764999935, 49.242413655000099 ], [ -123.190922407999949, 49.242427585000051 ], [ -123.190918687, 49.242882995000095 ], [ -123.190914885999959, 49.243346082000123 ], [ -123.190911031999974, 49.243827544000062 ], [ -123.190907291999949, 49.24428810000007 ], [ -123.190903552999941, 49.244798967000101 ], [ -123.190900307999939, 49.24524359400003 ], [ -123.188109202999939, 49.245233907000099 ], [ -123.1881154269999, 49.24573869600011 ], [ -123.188120782999988, 49.246174602000075 ], [ -123.186761784999959, 49.246167107000083 ], [ -123.185858116999938, 49.246166738000078 ], [ -123.185255425999941, 49.246166497000083 ], [ -123.185255293999973, 49.246157467000117 ], [ -123.185243792999955, 49.245226688000052 ], [ -123.185243912999965, 49.244753913000139 ], [ -123.185244, 49.24427201600006 ], [ -123.185245199999969, 49.243323507000063 ], [ -123.18524542099999, 49.243233697000107 ], [ -123.185247717999971, 49.242377805000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287478167", "BldgCostT": "199306667", "sL_LossRatio": "0.81976656622367", "sL_AssetLoss": "1819274", "sL_BldgLoss": "1491380", "sL_StrLoss": "681170", "sL_NStrLoss": "810210", "sL_ContLoss": "327894", "geom_point": "0101000020E6100000AD6BACAB9FCB5EC00037CD33DD9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178656898999989, 49.240455485000098 ], [ -123.178660335999922, 49.239987764000027 ], [ -123.17866388399996, 49.239504512000067 ], [ -123.181981907999941, 49.239514713000098 ], [ -123.181973267999965, 49.240009600000072 ], [ -123.18196529, 49.240466293000054 ], [ -123.184613949999971, 49.240468649000022 ], [ -123.185246706999976, 49.240469190000113 ], [ -123.18524597599999, 49.240984892 ], [ -123.185245388999945, 49.241419394000083 ], [ -123.185246596, 49.241920383000092 ], [ -123.185247717999971, 49.242377805000039 ], [ -123.184593306999957, 49.24237295500005 ], [ -123.182629198999962, 49.242358390000021 ], [ -123.18197152, 49.242353501000082 ], [ -123.181296179999933, 49.24235452100006 ], [ -123.179331561999959, 49.242357489000085 ], [ -123.178645624999916, 49.24235850400008 ], [ -123.178645224, 49.241392903000119 ], [ -123.178650739999966, 49.240950568000066 ], [ -123.178656898999989, 49.240455485000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198673500", "BldgCostT": "132510000", "sL_LossRatio": "0.765981403993569", "sL_AssetLoss": "2033770", "sL_BldgLoss": "1557830", "sL_StrLoss": "770510", "sL_NStrLoss": "787320", "sL_ContLoss": "475940", "geom_point": "0101000020E610000074F24321D9CB5EC02FB14BB7999E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.186004247999932, 49.237583148000077 ], [ -123.188202673999925, 49.237592694000078 ], [ -123.188198051999947, 49.238092612000109 ], [ -123.188193505999948, 49.238584189000044 ], [ -123.188188693999919, 49.239091327000082 ], [ -123.188184607999943, 49.239524293000102 ], [ -123.188180925999944, 49.240008769000049 ], [ -123.188177294999889, 49.240482489000065 ], [ -123.185246706999976, 49.240469190000113 ], [ -123.184613949999971, 49.240468649000022 ], [ -123.18196529, 49.240466293000054 ], [ -123.181973267999965, 49.240009600000072 ], [ -123.181981907999941, 49.239514713000098 ], [ -123.181986501, 49.239056175000094 ], [ -123.181991088999936, 49.23859349700011 ], [ -123.181996509000015, 49.238156643000082 ], [ -123.182001977999931, 49.237713702000065 ], [ -123.185258093999948, 49.237745602000125 ], [ -123.185257112, 49.237579911000068 ], [ -123.186004247999932, 49.237583148000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116480582", "BldgCostT": "75468332", "sL_LossRatio": "0.71884887144318", "sL_AssetLoss": "1665357", "sL_BldgLoss": "1197140", "sL_StrLoss": "532880", "sL_NStrLoss": "664260", "sL_ContLoss": "468217", "geom_point": "0101000020E61000004D2865CE8ACB5EC07F09AA805A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178714714999913, 49.234760689 ], [ -123.182031412999976, 49.234763692000094 ], [ -123.182028488999904, 49.235694106000096 ], [ -123.182017479999899, 49.236439595000036 ], [ -123.182012705999981, 49.236858303000055 ], [ -123.182006924999925, 49.237320172000068 ], [ -123.182001977999931, 49.237713702000065 ], [ -123.181996509000015, 49.238156643000082 ], [ -123.181991088999936, 49.23859349700011 ], [ -123.181986501, 49.239056175000094 ], [ -123.181981907999941, 49.239514713000098 ], [ -123.17866388399996, 49.239504512000067 ], [ -123.178661537999986, 49.239034304000015 ], [ -123.178659190999923, 49.238564910000065 ], [ -123.17866803699998, 49.238089488000114 ], [ -123.178676208999903, 49.237652906000065 ], [ -123.17868113099999, 49.23731594500007 ], [ -123.17868545, 49.237019052000058 ], [ -123.178687908999947, 49.236851491000046 ], [ -123.178690095999968, 49.236633605000037 ], [ -123.17869449599999, 49.236404001000039 ], [ -123.178698020999917, 49.236195362000068 ], [ -123.178706682999945, 49.235682893000046 ], [ -123.178710334999892, 49.2352651160001 ], [ -123.178714714999913, 49.234760689 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168702175", "BldgCostT": "103220126", "sL_LossRatio": "0.67167920025868", "sL_AssetLoss": "2214316", "sL_BldgLoss": "1487310", "sL_StrLoss": "686640", "sL_NStrLoss": "800670", "sL_ContLoss": "727006", "geom_point": "0101000020E610000069651578DFCB5EC0A338F51E3A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18833208699999, 49.234777701000077 ], [ -123.189627806999951, 49.234781713000061 ], [ -123.189596862999949, 49.235787370000047 ], [ -123.189576795000022, 49.236440491000089 ], [ -123.188234115999975, 49.236439711000102 ], [ -123.18821752099997, 49.237048476000105 ], [ -123.188202673999925, 49.237592694000078 ], [ -123.186004247999932, 49.237583148000077 ], [ -123.185257112, 49.237579911000068 ], [ -123.185258093999948, 49.237745602000125 ], [ -123.182001977999931, 49.237713702000065 ], [ -123.182006924999925, 49.237320172000068 ], [ -123.182012705999981, 49.236858303000055 ], [ -123.182017479999899, 49.236439595000036 ], [ -123.182028488999904, 49.235694106000096 ], [ -123.182031412999976, 49.234763692000094 ], [ -123.185324589999979, 49.234768600000031 ], [ -123.185877587999983, 49.234773983000103 ], [ -123.18606280100002, 49.234775800000087 ], [ -123.186817395999924, 49.234783193000098 ], [ -123.18833208699999, 49.234777701000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238706172", "BldgCostT": "147297183", "sL_LossRatio": "0.672305343569019", "sL_AssetLoss": "2121597", "sL_BldgLoss": "1426361", "sL_StrLoss": "621460", "sL_NStrLoss": "804901", "sL_ContLoss": "695236", "geom_point": "0101000020E610000042A3F0B07BCB5EC09E0F5BBCD09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175802017999942, 49.232788401000036 ], [ -123.175806246999969, 49.23261689900005 ], [ -123.175812057999934, 49.232383074000076 ], [ -123.175823693999945, 49.231912500000142 ], [ -123.17583473399992, 49.231474172000084 ], [ -123.17584246199999, 49.231168422000025 ], [ -123.17584601599998, 49.23102770600012 ], [ -123.175853702999973, 49.230742309000092 ], [ -123.175825639999971, 49.230025595000015 ], [ -123.175813395999953, 49.22971259200007 ], [ -123.175814239999966, 49.229683265000105 ], [ -123.175831215999935, 49.22908080600012 ], [ -123.177750971999956, 49.229805582000026 ], [ -123.178464100999975, 49.230074795000071 ], [ -123.178705690999919, 49.230120685000045 ], [ -123.178740906000016, 49.232139310000051 ], [ -123.178697802, 49.232848013000108 ], [ -123.182040100999984, 49.232856997000098 ], [ -123.184407205999946, 49.232849453000043 ], [ -123.185358796999964, 49.232846409000103 ], [ -123.185335386999924, 49.233797900000077 ], [ -123.18533228699998, 49.23432559900003 ], [ -123.185324589999979, 49.234768600000031 ], [ -123.182031412999976, 49.234763692000094 ], [ -123.178714714999913, 49.234760689 ], [ -123.17769710200001, 49.23475579400008 ], [ -123.177222276999899, 49.234753488000109 ], [ -123.176728686999951, 49.234751118000069 ], [ -123.175754585999954, 49.234740900000091 ], [ -123.175764249999958, 49.234289892000078 ], [ -123.175775382999959, 49.233766797000115 ], [ -123.175802017999942, 49.232788401000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200735213", "BldgCostT": "134624488", "sL_LossRatio": "0.728809367813877", "sL_AssetLoss": "3113640", "sL_BldgLoss": "2269250", "sL_StrLoss": "949070", "sL_NStrLoss": "1320180", "sL_ContLoss": "844390", "geom_point": "0101000020E61000009EBBB077B7CB5EC0E52C1633809D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178740906000016, 49.232139310000051 ], [ -123.178705690999919, 49.230120685000045 ], [ -123.179180933999987, 49.230146249000072 ], [ -123.1792283, 49.230148811000021 ], [ -123.180333309999952, 49.230150700000067 ], [ -123.180674531999941, 49.230149541000117 ], [ -123.18123765199995, 49.230147639000016 ], [ -123.182012518999954, 49.230145000000114 ], [ -123.182058891999958, 49.229312204000081 ], [ -123.18210277299994, 49.228544098000086 ], [ -123.182131300999941, 49.228043382000095 ], [ -123.182164698999941, 49.227455812000045 ], [ -123.185489212999983, 49.227479499000033 ], [ -123.185469311999967, 49.228305903000042 ], [ -123.186979797999982, 49.228297598000033 ], [ -123.186910473999944, 49.230133933000033 ], [ -123.186870803999938, 49.231184312000032 ], [ -123.185361605999944, 49.23060360500007 ], [ -123.185359675999948, 49.232147653000041 ], [ -123.185358796999964, 49.232846409000103 ], [ -123.184407205999946, 49.232849453000043 ], [ -123.182040100999984, 49.232856997000098 ], [ -123.178697802, 49.232848013000108 ], [ -123.178740906000016, 49.232139310000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110754668", "BldgCostT": "74436668", "sL_LossRatio": "0.757178963108642", "sL_AssetLoss": "1476606", "sL_BldgLoss": "1118055", "sL_StrLoss": "511335", "sL_NStrLoss": "606720", "sL_ContLoss": "358551", "geom_point": "0101000020E610000054E0E0E213CC5EC07171B798DD9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185359675999948, 49.232147653000041 ], [ -123.185361605999944, 49.23060360500007 ], [ -123.186870803999938, 49.231184312000032 ], [ -123.188356214999928, 49.231749997000065 ], [ -123.189629590999942, 49.232212904000058 ], [ -123.190912086, 49.232683192000081 ], [ -123.192311392, 49.233198805000029 ], [ -123.193751665, 49.233695666000152 ], [ -123.193723701999957, 49.234772212000067 ], [ -123.192299407999926, 49.234782005000035 ], [ -123.190918580999949, 49.23477749500011 ], [ -123.189627806999951, 49.234781713000061 ], [ -123.18833208699999, 49.234777701000077 ], [ -123.186817395999924, 49.234783193000098 ], [ -123.18606280100002, 49.234775800000087 ], [ -123.185877587999983, 49.234773983000103 ], [ -123.185324589999979, 49.234768600000031 ], [ -123.18533228699998, 49.23432559900003 ], [ -123.185335386999924, 49.233797900000077 ], [ -123.185358796999964, 49.232846409000103 ], [ -123.185359675999948, 49.232147653000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120325750", "BldgCostT": "82015000", "sL_LossRatio": "0.752217582159655", "sL_AssetLoss": "1516742", "sL_BldgLoss": "1140920", "sL_StrLoss": "553650", "sL_NStrLoss": "587270", "sL_ContLoss": "375822", "geom_point": "0101000020E6100000C0DCBCAB3DCC5EC06EA7D690729D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.196194196999954, 49.234828417000067 ], [ -123.195748573999978, 49.234772602000099 ], [ -123.193723701999957, 49.234772212000067 ], [ -123.193751665, 49.233695666000152 ], [ -123.192311392, 49.233198805000029 ], [ -123.190912086, 49.232683192000081 ], [ -123.189629590999942, 49.232212904000058 ], [ -123.188356214999928, 49.231749997000065 ], [ -123.186870803999938, 49.231184312000032 ], [ -123.186910473999944, 49.230133933000033 ], [ -123.186979797999982, 49.228297598000033 ], [ -123.185469311999967, 49.228305903000042 ], [ -123.185489212999983, 49.227479499000033 ], [ -123.185468899999975, 49.226501691000074 ], [ -123.185493608999977, 49.225867293000064 ], [ -123.185577208999959, 49.225507408000077 ], [ -123.190402500999966, 49.225520600000067 ], [ -123.19102994499994, 49.225551225000096 ], [ -123.191097060999965, 49.225554513000112 ], [ -123.190943799999943, 49.226533686000096 ], [ -123.191118784999986, 49.227360449000052 ], [ -123.191436182999936, 49.228000195000099 ], [ -123.194842358999949, 49.229806977000059 ], [ -123.19647351399999, 49.230338085000085 ], [ -123.197049180999898, 49.230575968000053 ], [ -123.197043213999933, 49.230658841000057 ], [ -123.196998484999966, 49.231279865000083 ], [ -123.196995906999945, 49.231315762000079 ], [ -123.196990751999977, 49.231387553000097 ], [ -123.196977775999983, 49.231567471000055 ], [ -123.196948259999928, 49.231977384000039 ], [ -123.196913747999972, 49.232456784000135 ], [ -123.196897889999931, 49.232676792000113 ], [ -123.19703750099994, 49.232911905000023 ], [ -123.197063649999976, 49.232936362000018 ], [ -123.197080106, 49.234919824000038 ], [ -123.197081197000031, 49.235052310000128 ], [ -123.196902304999966, 49.235000755 ], [ -123.19683028899999, 49.234979984000113 ], [ -123.196194196999954, 49.234828417000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110778833", "BldgCostT": "74453333", "sL_LossRatio": "0.766973308944186", "sL_AssetLoss": "1274884", "sL_BldgLoss": "977802", "sL_StrLoss": "483307", "sL_NStrLoss": "494495", "sL_ContLoss": "297082", "geom_point": "0101000020E610000035557B014BCC5EC0F1944010419E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193723701999957, 49.234772212000067 ], [ -123.195748573999978, 49.234772602000099 ], [ -123.196194196999954, 49.234828417000067 ], [ -123.19683028899999, 49.234979984000113 ], [ -123.196902304999966, 49.235000755 ], [ -123.197081197000031, 49.235052310000128 ], [ -123.196924593999981, 49.235259916000075 ], [ -123.196906346999967, 49.235311766000081 ], [ -123.196833407999975, 49.235518685000045 ], [ -123.19683168899995, 49.235638500000093 ], [ -123.196835708999942, 49.236480795000048 ], [ -123.193711318999974, 49.236452698000051 ], [ -123.19370832599999, 49.237048981000072 ], [ -123.193705491999964, 49.237615385000083 ], [ -123.190947885999918, 49.237604810000015 ], [ -123.190946777999955, 49.238106309000095 ], [ -123.190945706999941, 49.23859469100011 ], [ -123.188193505999948, 49.238584189000044 ], [ -123.188198051999947, 49.238092612000109 ], [ -123.188202673999925, 49.237592694000078 ], [ -123.18821752099997, 49.237048476000105 ], [ -123.188234115999975, 49.236439711000102 ], [ -123.189576795000022, 49.236440491000089 ], [ -123.189596862999949, 49.235787370000047 ], [ -123.189627806999951, 49.234781713000061 ], [ -123.190918580999949, 49.23477749500011 ], [ -123.192299407999926, 49.234782005000035 ], [ -123.193723701999957, 49.234772212000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116703894", "BldgCostT": "76181523", "sL_LossRatio": "0.740336186312347", "sL_AssetLoss": "1263942", "sL_BldgLoss": "935742", "sL_StrLoss": "467504", "sL_NStrLoss": "468238", "sL_ContLoss": "328200", "geom_point": "0101000020E6100000630C316664CC5EC073B6BA7B849E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.196835708999942, 49.236480795000048 ], [ -123.198398023999957, 49.236489893000076 ], [ -123.198335921999984, 49.238391694000065 ], [ -123.197785487999951, 49.238392637000075 ], [ -123.197784635999966, 49.238525263000092 ], [ -123.197622573999951, 49.238524939000065 ], [ -123.197622925999951, 49.238613446000031 ], [ -123.196822120999983, 49.2386394910001 ], [ -123.196816371999887, 49.239112675000037 ], [ -123.196810672999931, 49.239578691000126 ], [ -123.193685203999976, 49.239564897 ], [ -123.190940980999983, 49.239533993000094 ], [ -123.190940746999928, 49.240022260000089 ], [ -123.190940504999972, 49.240495996000078 ], [ -123.188177294999889, 49.240482489000065 ], [ -123.188180925999944, 49.240008769000049 ], [ -123.188184607999943, 49.239524293000102 ], [ -123.188188693999919, 49.239091327000082 ], [ -123.188193505999948, 49.238584189000044 ], [ -123.190945706999941, 49.23859469100011 ], [ -123.190946777999955, 49.238106309000095 ], [ -123.190947885999918, 49.237604810000015 ], [ -123.193705491999964, 49.237615385000083 ], [ -123.19370832599999, 49.237048981000072 ], [ -123.193711318999974, 49.236452698000051 ], [ -123.196835708999942, 49.236480795000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104381917", "BldgCostT": "70041667", "sL_LossRatio": "0.749440300439917", "sL_AssetLoss": "1351618", "sL_BldgLoss": "1012957", "sL_StrLoss": "473787", "sL_NStrLoss": "539170", "sL_ContLoss": "338661", "geom_point": "0101000020E61000001179FD0F51CC5EC0E5A14A28D89E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193685203999976, 49.239564897 ], [ -123.196810672999931, 49.239578691000126 ], [ -123.196800398999969, 49.240544886000045 ], [ -123.196799777999971, 49.241028791000119 ], [ -123.196799184999946, 49.241474398 ], [ -123.193679091999954, 49.241459015000011 ], [ -123.19367583399999, 49.241969605000079 ], [ -123.193672891999981, 49.242424403000086 ], [ -123.190922407999949, 49.242427585000051 ], [ -123.189826764999935, 49.242413655000099 ], [ -123.188467209999928, 49.242396327000122 ], [ -123.188150888999985, 49.242392292000083 ], [ -123.188157794999981, 49.241924742000066 ], [ -123.188165010999953, 49.241434294000022 ], [ -123.188170864999947, 49.240980422000106 ], [ -123.188177294999889, 49.240482489000065 ], [ -123.190940504999972, 49.240495996000078 ], [ -123.190940746999928, 49.240022260000089 ], [ -123.190940980999983, 49.239533993000094 ], [ -123.193685203999976, 49.239564897 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171699978", "BldgCostT": "115819857", "sL_LossRatio": "0.768364547139602", "sL_AssetLoss": "1204168", "sL_BldgLoss": "925240", "sL_StrLoss": "453000", "sL_NStrLoss": "472240", "sL_ContLoss": "278928", "geom_point": "0101000020E6100000DC9486757ECC5EC02EB3EF27369F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193679091999954, 49.241459015000011 ], [ -123.196799184999946, 49.241474398 ], [ -123.196792300999917, 49.241964474000021 ], [ -123.196785910999921, 49.242421605000061 ], [ -123.196780054999962, 49.242891623000077 ], [ -123.196779630999941, 49.242926939000014 ], [ -123.196774201999972, 49.243365288000099 ], [ -123.196767737999934, 49.243880464000057 ], [ -123.196762281999924, 49.244313397000035 ], [ -123.196769699999948, 49.24482457199999 ], [ -123.196776084999968, 49.245265808000042 ], [ -123.196763570999963, 49.24577844300007 ], [ -123.196752780999986, 49.246219994000057 ], [ -123.193639321999953, 49.246205684000095 ], [ -123.193646183999988, 49.245720584000047 ], [ -123.193652777999944, 49.245254897000123 ], [ -123.193655504, 49.244794012000071 ], [ -123.193658395999975, 49.244299393000063 ], [ -123.193662607, 49.243858592000038 ], [ -123.193667413999918, 49.243355598000029 ], [ -123.19367006, 49.242906039000054 ], [ -123.193670102999974, 49.242896248000065 ], [ -123.193672891999981, 49.242424403000086 ], [ -123.19367583399999, 49.241969605000079 ], [ -123.193679091999954, 49.241459015000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84479416", "BldgCostT": "57316666", "sL_LossRatio": "0.751331891853194", "sL_AssetLoss": "1173331", "sL_BldgLoss": "881561", "sL_StrLoss": "408241", "sL_NStrLoss": "473320", "sL_ContLoss": "291770", "geom_point": "0101000020E61000008F1FB63645CC5EC0C0DB51D64E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190922407999949, 49.242427585000051 ], [ -123.193672891999981, 49.242424403000086 ], [ -123.193670102999974, 49.242896248000065 ], [ -123.19367006, 49.242906039000054 ], [ -123.193667413999918, 49.243355598000029 ], [ -123.193662607, 49.243858592000038 ], [ -123.193658395999975, 49.244299393000063 ], [ -123.193655504, 49.244794012000071 ], [ -123.193652777999944, 49.245254897000123 ], [ -123.193646183999988, 49.245720584000047 ], [ -123.193639321999953, 49.246205684000095 ], [ -123.192243091999927, 49.246199995000019 ], [ -123.19089401799999, 49.246186501000096 ], [ -123.188120782999988, 49.246174602000075 ], [ -123.1881154269999, 49.24573869600011 ], [ -123.188109202999939, 49.245233907000099 ], [ -123.190900307999939, 49.24524359400003 ], [ -123.190903552999941, 49.244798967000101 ], [ -123.190907291999949, 49.24428810000007 ], [ -123.190911031999974, 49.243827544000062 ], [ -123.190914885999959, 49.243346082000123 ], [ -123.190918687, 49.242882995000095 ], [ -123.190922407999949, 49.242427585000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "334252202", "BldgCostT": "221075761", "sL_LossRatio": "0.774559183818014", "sL_AssetLoss": "2484936", "sL_BldgLoss": "1924730", "sL_StrLoss": "872960", "sL_NStrLoss": "1051770", "sL_ContLoss": "560206", "geom_point": "0101000020E61000004213173639CC5EC00877EC6FA29F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193639321999953, 49.246205684000095 ], [ -123.196752780999986, 49.246219994000057 ], [ -123.196749379999943, 49.246722921000085 ], [ -123.196746327999975, 49.247170101000044 ], [ -123.196736332999976, 49.247667817000021 ], [ -123.196727200999987, 49.248122594000094 ], [ -123.193624302, 49.2481103020001 ], [ -123.192244612999943, 49.248104205000104 ], [ -123.19182863399999, 49.248102432000081 ], [ -123.191553974999962, 49.248101268000056 ], [ -123.191238201999909, 49.248099925000119 ], [ -123.190881318999985, 49.248098400000075 ], [ -123.18810788899998, 49.248087399000056 ], [ -123.186742006999964, 49.248080608000059 ], [ -123.185920429999925, 49.248077277000071 ], [ -123.185231699999974, 49.248074501000048 ], [ -123.185246903999925, 49.247596627000121 ], [ -123.185261888999932, 49.247125018000119 ], [ -123.185258607999941, 49.24664281200009 ], [ -123.185255425999941, 49.246166497000083 ], [ -123.185858116999938, 49.246166738000078 ], [ -123.186761784999959, 49.246167107000083 ], [ -123.188120782999988, 49.246174602000075 ], [ -123.19089401799999, 49.246186501000096 ], [ -123.192243091999927, 49.246199995000019 ], [ -123.193639321999953, 49.246205684000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95561835", "BldgCostT": "63223335", "sL_LossRatio": "0.745717737197892", "sL_AssetLoss": "1208590", "sL_BldgLoss": "901267", "sL_StrLoss": "425450", "sL_NStrLoss": "475817", "sL_ContLoss": "307323", "geom_point": "0101000020E61000006F8C423720CC5EC0F960C6D20FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18810788899998, 49.248087399000056 ], [ -123.190881318999985, 49.248098400000075 ], [ -123.19087750599999, 49.248586013000072 ], [ -123.190873992999968, 49.249034999000145 ], [ -123.190870770999965, 49.249512512000116 ], [ -123.190869208999942, 49.24974638 ], [ -123.190867672999943, 49.249971249000104 ], [ -123.190867586999957, 49.249980500000149 ], [ -123.190864915999981, 49.250088628000114 ], [ -123.190862823999964, 49.250173206000056 ], [ -123.190853938000018, 49.250628255000024 ], [ -123.190845209, 49.251076100000049 ], [ -123.19084090099993, 49.251527441000057 ], [ -123.190836692999966, 49.251965791000032 ], [ -123.190834287999976, 49.252453879000058 ], [ -123.190832187999945, 49.252879904000046 ], [ -123.188051618999935, 49.252869604000125 ], [ -123.188055001999899, 49.252449355000074 ], [ -123.18805900199996, 49.251955612000096 ], [ -123.188067147999973, 49.251523446000064 ], [ -123.188075803999965, 49.251065190000077 ], [ -123.188075842999979, 49.250623296000043 ], [ -123.188075876999932, 49.250157301000051 ], [ -123.188076619999919, 49.250083851000113 ], [ -123.188077808999964, 49.249968193000015 ], [ -123.188083381999931, 49.249516682000092 ], [ -123.188089403999953, 49.249028186000082 ], [ -123.188098556999989, 49.248562494000026 ], [ -123.18810788899998, 49.248087399000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122250644", "BldgCostT": "77851523", "sL_LossRatio": "0.713032859612025", "sL_AssetLoss": "1626343", "sL_BldgLoss": "1159636", "sL_StrLoss": "517236", "sL_NStrLoss": "642400", "sL_ContLoss": "466707", "geom_point": "0101000020E61000006479E43094CC5EC0BCFE1B83E79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.19359327899997, 49.252892299000059 ], [ -123.193605664, 49.252448729000065 ], [ -123.193617977999978, 49.252006704000053 ], [ -123.190836692999966, 49.251965791000032 ], [ -123.19084090099993, 49.251527441000057 ], [ -123.190845209, 49.251076100000049 ], [ -123.190853938000018, 49.250628255000024 ], [ -123.190862823999964, 49.250173206000056 ], [ -123.190864915999981, 49.250088628000114 ], [ -123.190867586999957, 49.249980500000149 ], [ -123.190867672999943, 49.249971249000104 ], [ -123.190869208999942, 49.24974638 ], [ -123.190870770999965, 49.249512512000116 ], [ -123.190873992999968, 49.249034999000145 ], [ -123.19087750599999, 49.248586013000072 ], [ -123.190881318999985, 49.248098400000075 ], [ -123.191238201999909, 49.248099925000119 ], [ -123.191553974999962, 49.248101268000056 ], [ -123.19182863399999, 49.248102432000081 ], [ -123.192244612999943, 49.248104205000104 ], [ -123.193624302, 49.2481103020001 ], [ -123.196727200999987, 49.248122594000094 ], [ -123.196736332999976, 49.247667817000021 ], [ -123.196746327999975, 49.247170101000044 ], [ -123.196749379999943, 49.246722921000085 ], [ -123.196752780999986, 49.246219994000057 ], [ -123.198343230999953, 49.246283248000083 ], [ -123.198913196999968, 49.246305911000078 ], [ -123.199047970999985, 49.246371993000068 ], [ -123.199778182, 49.246730062000083 ], [ -123.199894725999954, 49.246787228000109 ], [ -123.199989318999968, 49.246833605000056 ], [ -123.200200458999959, 49.246937146000086 ], [ -123.201215306, 49.247434800000065 ], [ -123.203173606999925, 49.2484124080001 ], [ -123.20460680399999, 49.24912777400008 ], [ -123.204318694, 49.24935087900009 ], [ -123.20401322399999, 49.249430273000051 ], [ -123.201054188999976, 49.249958574000097 ], [ -123.200555006999977, 49.250047706000025 ], [ -123.200011106999952, 49.250054020000093 ], [ -123.199116187999934, 49.250064388000062 ], [ -123.19883218299999, 49.250149790000108 ], [ -123.196761000999985, 49.250240767000101 ], [ -123.196775880999951, 49.251084808 ], [ -123.194374580999977, 49.251022385000105 ], [ -123.194380112000019, 49.252430991000033 ], [ -123.194792354999933, 49.252430297000096 ], [ -123.194793417999989, 49.252700152000116 ], [ -123.195205661999935, 49.252699456000101 ], [ -123.19520645299994, 49.252899890000023 ], [ -123.19359327899997, 49.252892299000059 ] ], [ [ -123.194373649999974, 49.250784867000107 ], [ -123.19443728399996, 49.249732326000121 ], [ -123.194369518999935, 49.249732440000109 ], [ -123.194373649999974, 49.250784867000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97000668", "BldgCostT": "64426668", "sL_LossRatio": "0.741772746856762", "sL_AssetLoss": "1276550", "sL_BldgLoss": "946910", "sL_StrLoss": "454080", "sL_NStrLoss": "492830", "sL_ContLoss": "329640", "geom_point": "0101000020E61000004265FCFB4CCC5EC000E3F8258BA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190836692999966, 49.251965791000032 ], [ -123.193617977999978, 49.252006704000053 ], [ -123.193605664, 49.252448729000065 ], [ -123.19359327899997, 49.252892299000059 ], [ -123.193589754999977, 49.253366695000089 ], [ -123.193586499, 49.253800084000069 ], [ -123.193584022, 49.254293379000096 ], [ -123.193581891999898, 49.254716886000097 ], [ -123.193579213999953, 49.255165834000138 ], [ -123.193576585999935, 49.255599499000077 ], [ -123.193572898999918, 49.256074194000121 ], [ -123.19356950199996, 49.256510788000085 ], [ -123.190798496999932, 49.25649898800004 ], [ -123.190802526999988, 49.256070092000058 ], [ -123.190807085999936, 49.255585005000064 ], [ -123.190799113999958, 49.255142990000074 ], [ -123.19079101799997, 49.254693811000017 ], [ -123.19080660900002, 49.254244922000055 ], [ -123.190822516999972, 49.253787605000099 ], [ -123.190826750999975, 49.253389692000013 ], [ -123.190832187999945, 49.252879904000046 ], [ -123.190834287999976, 49.252453879000058 ], [ -123.190836692999966, 49.251965791000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97726917", "BldgCostT": "63746667", "sL_LossRatio": "0.72824308227655", "sL_AssetLoss": "1334001", "sL_BldgLoss": "971477", "sL_StrLoss": "435070", "sL_NStrLoss": "536407", "sL_ContLoss": "362524", "geom_point": "0101000020E6100000C3834E8464CD5EC070ABE65A30A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.212321658999926, 49.258436329000091 ], [ -123.212335400999976, 49.258436606000053 ], [ -123.21233067799993, 49.258541626000103 ], [ -123.212315272999973, 49.258884262000109 ], [ -123.212294903999975, 49.259337988000055 ], [ -123.212277235999977, 49.25977456400004 ], [ -123.212257985999926, 49.26024949700011 ], [ -123.209245808999967, 49.260203106000112 ], [ -123.206210199999987, 49.260156102000082 ], [ -123.206225721999942, 49.259687145000015 ], [ -123.206240510999933, 49.259240892000072 ], [ -123.206255736999964, 49.258787451000103 ], [ -123.206267825999987, 49.258428049000038 ], [ -123.206271684999962, 49.258313094000108 ], [ -123.206285444999963, 49.258313395000073 ], [ -123.209310406999975, 49.258374599000021 ], [ -123.209324148999926, 49.258374878000033 ], [ -123.212321658999926, 49.258436329000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119181166", "BldgCostT": "80041666", "sL_LossRatio": "0.738983290269039", "sL_AssetLoss": "1529109", "sL_BldgLoss": "1129986", "sL_StrLoss": "533970", "sL_NStrLoss": "596016", "sL_ContLoss": "399123", "geom_point": "0101000020E6100000D6BC154F9ECD5EC034331BE059A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.212335400999976, 49.258436606000053 ], [ -123.215374555999915, 49.258512342000095 ], [ -123.215388317999924, 49.258512700000033 ], [ -123.215368723999987, 49.259388603000062 ], [ -123.215362014, 49.259849858000045 ], [ -123.215355621999933, 49.260293401000055 ], [ -123.215312384999919, 49.261196592000076 ], [ -123.21530645199995, 49.261423997000094 ], [ -123.215300809999988, 49.261639800000076 ], [ -123.215289015999986, 49.262090409000088 ], [ -123.215124300999932, 49.262088173000073 ], [ -123.212200795999962, 49.262048517000053 ], [ -123.209182498999937, 49.262007382000036 ], [ -123.209198730999915, 49.261553952000021 ], [ -123.209214711999948, 49.261107498000058 ], [ -123.209230296999948, 49.260653770000062 ], [ -123.209245808999967, 49.260203106000112 ], [ -123.212257985999926, 49.26024949700011 ], [ -123.212277235999977, 49.25977456400004 ], [ -123.212294903999975, 49.259337988000055 ], [ -123.212315272999973, 49.258884262000109 ], [ -123.21233067799993, 49.258541626000103 ], [ -123.212335400999976, 49.258436606000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284313213", "BldgCostT": "183305952", "sL_LossRatio": "0.691798351609163", "sL_AssetLoss": "3014455", "sL_BldgLoss": "2085395", "sL_StrLoss": "940155", "sL_NStrLoss": "1145240", "sL_ContLoss": "929060", "geom_point": "0101000020E610000045424BEC94CD5EC08087DCEBA8A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.215075614999975, 49.26399705300004 ], [ -123.214904100999917, 49.263925074000056 ], [ -123.213689428999928, 49.263905554000054 ], [ -123.212699756999911, 49.263889639000105 ], [ -123.212129121999965, 49.263880456000024 ], [ -123.2091206, 49.263836011000109 ], [ -123.209133844999897, 49.263315384000066 ], [ -123.209143815999965, 49.262925099000071 ], [ -123.209163711999963, 49.262452807000074 ], [ -123.209182498999937, 49.262007382000036 ], [ -123.212200795999962, 49.262048517000053 ], [ -123.215124300999932, 49.262088173000073 ], [ -123.215289015999986, 49.262090409000088 ], [ -123.215266786999933, 49.262986922000053 ], [ -123.215255106999976, 49.263448323 ], [ -123.21524483899999, 49.263855519000046 ], [ -123.215240331999965, 49.263999495000071 ], [ -123.215075614999975, 49.26399705300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254916314", "BldgCostT": "170570389", "sL_LossRatio": "0.755632368255926", "sL_AssetLoss": "2121177", "sL_BldgLoss": "1602830", "sL_StrLoss": "700690", "sL_NStrLoss": "902140", "sL_ContLoss": "518347", "geom_point": "0101000020E610000097F6698993CD5EC0F7D82B66E3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.20909930699996, 49.264269418000069 ], [ -123.2091206, 49.263836011000109 ], [ -123.212129121999965, 49.263880456000024 ], [ -123.212699756999911, 49.263889639000105 ], [ -123.213689428999928, 49.263905554000054 ], [ -123.214904100999917, 49.263925074000056 ], [ -123.215075614999975, 49.26399705300004 ], [ -123.215240331999965, 49.263999495000071 ], [ -123.215214777999961, 49.264402198000056 ], [ -123.215189060999961, 49.264807907000034 ], [ -123.215145045999961, 49.265255893000116 ], [ -123.215132504999957, 49.265383777000125 ], [ -123.215122110999971, 49.265498296000068 ], [ -123.215112200999911, 49.265607536000054 ], [ -123.215102746999904, 49.265673035000077 ], [ -123.212065785000021, 49.265620708000071 ], [ -123.209073385999943, 49.265580300000082 ], [ -123.209075535999958, 49.265141388000117 ], [ -123.209077600999962, 49.264711291000054 ], [ -123.20909930699996, 49.264269418000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "492488551", "BldgCostT": "314054435", "sL_LossRatio": "0.727029476974747", "sL_AssetLoss": "4188727", "sL_BldgLoss": "3045328", "sL_StrLoss": "1356363", "sL_NStrLoss": "1688965", "sL_ContLoss": "1143399", "geom_point": "0101000020E610000041EB032435CD5EC045758567D7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.206121920999934, 49.26285411300006 ], [ -123.209143815999965, 49.262925099000071 ], [ -123.209133844999897, 49.263315384000066 ], [ -123.2091206, 49.263836011000109 ], [ -123.20909930699996, 49.264269418000069 ], [ -123.209077600999962, 49.264711291000054 ], [ -123.209075535999958, 49.265141388000117 ], [ -123.209073385999943, 49.265580300000082 ], [ -123.206006218999974, 49.265527106000079 ], [ -123.202946003999926, 49.265472981000087 ], [ -123.202967908999952, 49.2650538870001 ], [ -123.20299078, 49.264615802000023 ], [ -123.203001033999982, 49.264190120000116 ], [ -123.203011803999971, 49.263743591000079 ], [ -123.20609020799999, 49.263790899000057 ], [ -123.206106695999935, 49.263303268000065 ], [ -123.206121920999934, 49.26285411300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129842581", "BldgCostT": "81888421", "sL_LossRatio": "0.697034322699338", "sL_AssetLoss": "1652405", "sL_BldgLoss": "1151783", "sL_StrLoss": "534320", "sL_NStrLoss": "617463", "sL_ContLoss": "500622", "geom_point": "0101000020E6100000C6250A042CCD5EC0DFA5920991A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.206181799999968, 49.261060601000061 ], [ -123.209214711999948, 49.261107498000058 ], [ -123.209198730999915, 49.261553952000021 ], [ -123.209182498999937, 49.262007382000036 ], [ -123.209163711999963, 49.262452807000074 ], [ -123.209143815999965, 49.262925099000071 ], [ -123.206121920999934, 49.26285411300006 ], [ -123.206106695999935, 49.263303268000065 ], [ -123.20609020799999, 49.263790899000057 ], [ -123.203011803999971, 49.263743591000079 ], [ -123.203029470999965, 49.263281332000076 ], [ -123.203047605, 49.262807788000082 ], [ -123.203063679999971, 49.262372678000091 ], [ -123.203080186999955, 49.261925100000077 ], [ -123.20309579799999, 49.261511285000097 ], [ -123.203098262999944, 49.261445566000127 ], [ -123.203114480999929, 49.261014494000086 ], [ -123.206181799999968, 49.261060601000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75330167", "BldgCostT": "50851667", "sL_LossRatio": "0.741688054990117", "sL_AssetLoss": "1016910", "sL_BldgLoss": "754230", "sL_StrLoss": "337730", "sL_NStrLoss": "416500", "sL_ContLoss": "262680", "geom_point": "0101000020E6100000941FFAE625CD5EC0115FB37D44A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.203148404999979, 49.260110995000069 ], [ -123.203165937999941, 49.259647007000105 ], [ -123.203183189999962, 49.259190502000102 ], [ -123.203198709999981, 49.258747333000045 ], [ -123.203211914999983, 49.258370006000064 ], [ -123.203215492999988, 49.258267207000053 ], [ -123.203229266, 49.258267417000049 ], [ -123.206271684999962, 49.258313094000108 ], [ -123.206267825999987, 49.258428049000038 ], [ -123.206255736999964, 49.258787451000103 ], [ -123.206240510999933, 49.259240892000072 ], [ -123.206225721999942, 49.259687145000015 ], [ -123.206210199999987, 49.260156102000082 ], [ -123.209245808999967, 49.260203106000112 ], [ -123.209230296999948, 49.260653770000062 ], [ -123.209214711999948, 49.261107498000058 ], [ -123.206181799999968, 49.261060601000061 ], [ -123.203114480999929, 49.261014494000086 ], [ -123.20313242899999, 49.260537195000104 ], [ -123.203148404999979, 49.260110995000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92317417", "BldgCostT": "59331667", "sL_LossRatio": "0.725833383611658", "sL_AssetLoss": "1226506", "sL_BldgLoss": "890239", "sL_StrLoss": "376730", "sL_NStrLoss": "513509", "sL_ContLoss": "336267", "geom_point": "0101000020E610000033C4E21EE8CC5EC01390174EA9A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.200078687999948, 49.260969095000085 ], [ -123.203114480999929, 49.261014494000086 ], [ -123.203098262999944, 49.261445566000127 ], [ -123.20309579799999, 49.261511285000097 ], [ -123.203080186999955, 49.261925100000077 ], [ -123.203063679999971, 49.262372678000091 ], [ -123.203047605, 49.262807788000082 ], [ -123.203029470999965, 49.263281332000076 ], [ -123.203011803999971, 49.263743591000079 ], [ -123.203001033999982, 49.264190120000116 ], [ -123.20299078, 49.264615802000023 ], [ -123.202967908999952, 49.2650538870001 ], [ -123.202946003999926, 49.265472981000087 ], [ -123.201381602999973, 49.265444198000061 ], [ -123.201345115999914, 49.265031379000092 ], [ -123.201326880999957, 49.264825797000093 ], [ -123.201199890999959, 49.264585600000103 ], [ -123.201146510999976, 49.2644914850001 ], [ -123.200781599999942, 49.264163102000118 ], [ -123.200749653999978, 49.264144436000102 ], [ -123.200318500999941, 49.263892588000076 ], [ -123.200090371999963, 49.263706279000125 ], [ -123.200081580999978, 49.26369909400011 ], [ -123.199986901000017, 49.263628186000062 ], [ -123.200001449999945, 49.263223802000013 ], [ -123.200017095999939, 49.262787804000041 ], [ -123.20002849899997, 49.262441411000054 ], [ -123.200032348999969, 49.262324303000078 ], [ -123.200046909999926, 49.261883286000113 ], [ -123.200063506, 49.261405979000081 ], [ -123.200078687999948, 49.260969095000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114889834", "BldgCostT": "73128334", "sL_LossRatio": "0.714572143305525", "sL_AssetLoss": "1494262", "sL_BldgLoss": "1067758", "sL_StrLoss": "501400", "sL_NStrLoss": "566358", "sL_ContLoss": "426504", "geom_point": "0101000020E6100000DDCC7C6278CD5EC00F438A854AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.209073385999943, 49.265580300000082 ], [ -123.212065785000021, 49.265620708000071 ], [ -123.212050647, 49.266080719000051 ], [ -123.212037488999911, 49.266480195000071 ], [ -123.212022190999946, 49.266907775000085 ], [ -123.212007324999959, 49.267324198000111 ], [ -123.211991735999931, 49.267753982000066 ], [ -123.211975898999924, 49.268190802000106 ], [ -123.211961333999938, 49.268608465000085 ], [ -123.211945481000015, 49.269061900000025 ], [ -123.211924201999977, 49.269642994000051 ], [ -123.211902595999902, 49.270232495000073 ], [ -123.20921678699996, 49.270206403000046 ], [ -123.209066955999944, 49.270218969000027 ], [ -123.208904697999969, 49.269570497000096 ], [ -123.208928397999969, 49.269017202000093 ], [ -123.208920898999963, 49.268559783000107 ], [ -123.208914300999965, 49.26815581300005 ], [ -123.20893348, 49.267722647 ], [ -123.208952498999977, 49.267292983000125 ], [ -123.208971875999922, 49.266850058000074 ], [ -123.2089891899999, 49.266453597000137 ], [ -123.209030759999948, 49.266022665000037 ], [ -123.209073385999943, 49.265580300000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146552333", "BldgCostT": "93097348", "sL_LossRatio": "0.692619349636775", "sL_AssetLoss": "1795858", "sL_BldgLoss": "1243846", "sL_StrLoss": "527330", "sL_NStrLoss": "716516", "sL_ContLoss": "552012", "geom_point": "0101000020E61000009F146A7632CD5EC08123B3405CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.204000384999944, 49.270132604000018 ], [ -123.204005313, 49.269892201000054 ], [ -123.203951611000022, 49.269802602000048 ], [ -123.20384570899995, 49.269736798000046 ], [ -123.202744587999916, 49.269495704000072 ], [ -123.202763998999913, 49.269219714 ], [ -123.20275222699992, 49.269159199000029 ], [ -123.202720011999972, 49.268993402 ], [ -123.202661993999953, 49.268929691000054 ], [ -123.20320169099989, 49.268272807000066 ], [ -123.203008763999946, 49.26719060800005 ], [ -123.204157487999936, 49.267206695000084 ], [ -123.205933708999936, 49.26723290100005 ], [ -123.205952212999989, 49.266811165000021 ], [ -123.205970386999965, 49.266396200000045 ], [ -123.2089891899999, 49.266453597000137 ], [ -123.208971875999922, 49.266850058000074 ], [ -123.208952498999977, 49.267292983000125 ], [ -123.20893348, 49.267722647 ], [ -123.208914300999965, 49.26815581300005 ], [ -123.208920898999963, 49.268559783000107 ], [ -123.208928397999969, 49.269017202000093 ], [ -123.208904697999969, 49.269570497000096 ], [ -123.209066955999944, 49.270218969000027 ], [ -123.207217280999927, 49.27016820000005 ], [ -123.205858393999961, 49.270148310000103 ], [ -123.205579506999953, 49.270148299000027 ], [ -123.205132896999913, 49.270148391000056 ], [ -123.204547032000036, 49.270140223000048 ], [ -123.204000384999944, 49.270132604000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139619083", "BldgCostT": "87973333", "sL_LossRatio": "0.731558816220246", "sL_AssetLoss": "1480816", "sL_BldgLoss": "1083304", "sL_StrLoss": "512199", "sL_NStrLoss": "571105", "sL_ContLoss": "397512", "geom_point": "0101000020E61000005DD74F9C6FCD5EC014D38E130DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.219994284999927, 49.27780264700008 ], [ -123.220045880999976, 49.276941885000106 ], [ -123.218810981999937, 49.276944231000051 ], [ -123.21880979, 49.276674376000116 ], [ -123.217424403999942, 49.276676992000048 ], [ -123.21737356499996, 49.2775243 ], [ -123.216581100999974, 49.277594591000053 ], [ -123.216373108999932, 49.277541890000059 ], [ -123.21617790699996, 49.276939386000073 ], [ -123.216041188999924, 49.276795607000118 ], [ -123.215559608000021, 49.276651807000029 ], [ -123.213744695999978, 49.276691596000063 ], [ -123.213442589, 49.276989299000093 ], [ -123.213604700999952, 49.276322794000109 ], [ -123.213534586999913, 49.276134799000012 ], [ -123.21335588699999, 49.276026499000118 ], [ -123.211885417, 49.275921097000058 ], [ -123.211668872999923, 49.27641782300001 ], [ -123.211655320999981, 49.276417849000012 ], [ -123.21169171299999, 49.275589298000071 ], [ -123.211530222999954, 49.275517646 ], [ -123.211126687999979, 49.275338601 ], [ -123.210142810999969, 49.275362720000025 ], [ -123.210142718999933, 49.275341185000038 ], [ -123.209197986999982, 49.27534290100008 ], [ -123.209195396999988, 49.275385938000049 ], [ -123.209147689999966, 49.275387107000057 ], [ -123.20543999599991, 49.275893883000109 ], [ -123.205481172999981, 49.275462083000086 ], [ -123.205485024999959, 49.275356788000074 ], [ -123.205737498999923, 49.274822410000105 ], [ -123.20568889499999, 49.274786008000092 ], [ -123.205665894999953, 49.274597205000056 ], [ -123.205692490999951, 49.273585507000035 ], [ -123.205724702999944, 49.272937809000076 ], [ -123.205091878999923, 49.272608003000066 ], [ -123.203429608999926, 49.272034494000067 ], [ -123.202847897999959, 49.271768953000041 ], [ -123.202684795999957, 49.271694488000016 ], [ -123.202528212999951, 49.271558103000146 ], [ -123.202361596999978, 49.271359188000112 ], [ -123.202759094999976, 49.271260513000072 ], [ -123.202721776999965, 49.271098609000077 ], [ -123.202709010999953, 49.271043083000087 ], [ -123.20271396699998, 49.270657635000063 ], [ -123.202720902999914, 49.270116592000093 ], [ -123.204000384999944, 49.270132604000018 ], [ -123.204547032000036, 49.270140223000048 ], [ -123.205132896999913, 49.270148391000056 ], [ -123.205579506999953, 49.270148299000027 ], [ -123.205858393999961, 49.270148310000103 ], [ -123.207217280999927, 49.27016820000005 ], [ -123.209066955999944, 49.270218969000027 ], [ -123.208858700999883, 49.270450202000063 ], [ -123.208831706999931, 49.271354698000053 ], [ -123.208812414999954, 49.2721324050001 ], [ -123.20880162399996, 49.272463706000067 ], [ -123.208799572999908, 49.272526660000025 ], [ -123.20878649899997, 49.272928789000098 ], [ -123.211802692999981, 49.272968912000039 ], [ -123.211791870999917, 49.27320545200007 ], [ -123.211783643999951, 49.273385470000086 ], [ -123.21176760799996, 49.273736283000062 ], [ -123.211752313999952, 49.274332184000123 ], [ -123.211733388999932, 49.274921597000123 ], [ -123.213629313999917, 49.275451482000058 ], [ -123.214351057999963, 49.27570364800011 ], [ -123.215247001999956, 49.276016591000037 ], [ -123.215551700999939, 49.276092 ], [ -123.216216188999979, 49.276203985000073 ], [ -123.216333773999906, 49.276223793000099 ], [ -123.21913068899994, 49.276397701000043 ], [ -123.22202237499999, 49.277053638000062 ], [ -123.223345391999942, 49.277353701000031 ], [ -123.22386569199999, 49.277386008000093 ], [ -123.223801868999914, 49.277816048 ], [ -123.223768290999899, 49.27809071300004 ], [ -123.223181188999916, 49.278085912000058 ], [ -123.222027280999939, 49.278249698000138 ], [ -123.22158638399992, 49.278080199000058 ], [ -123.220858395999983, 49.278009001000044 ], [ -123.219994284999927, 49.27780264700008 ] ], [ [ -123.220048154, 49.276903973000032 ], [ -123.220062057999925, 49.276671998000026 ], [ -123.220047122, 49.276672027000053 ], [ -123.220048154, 49.276903973000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "308126251", "BldgCostT": "212040001", "sL_LossRatio": "0.830733161511884", "sL_AssetLoss": "2392406", "sL_BldgLoss": "1987451", "sL_StrLoss": "911040", "sL_NStrLoss": "1076411", "sL_ContLoss": "404955", "geom_point": "0101000020E6100000A261297992CD5EC0C1EEA621CBA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.211791870999917, 49.27320545200007 ], [ -123.211802692999981, 49.272968912000039 ], [ -123.20878649899997, 49.272928789000098 ], [ -123.208799572999908, 49.272526660000025 ], [ -123.20880162399996, 49.272463706000067 ], [ -123.208812414999954, 49.2721324050001 ], [ -123.208831706999931, 49.271354698000053 ], [ -123.208858700999883, 49.270450202000063 ], [ -123.209066955999944, 49.270218969000027 ], [ -123.20921678699996, 49.270206403000046 ], [ -123.211902595999902, 49.270232495000073 ], [ -123.214976914999966, 49.270263295000071 ], [ -123.214972652999975, 49.270382900000094 ], [ -123.214955106999966, 49.27087804700006 ], [ -123.214935294000014, 49.271436693000055 ], [ -123.214930291999934, 49.271562191000093 ], [ -123.214912012999946, 49.272020845000021 ], [ -123.214908090999984, 49.272119722000127 ], [ -123.214889214999943, 49.272593796000073 ], [ -123.214866516999919, 49.273172142000107 ], [ -123.214842491999931, 49.273784203000048 ], [ -123.213979379999955, 49.27377439200005 ], [ -123.213163188999943, 49.273765105000109 ], [ -123.21176760799996, 49.273736283000062 ], [ -123.211783643999951, 49.273385470000086 ], [ -123.211791870999917, 49.27320545200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78974999", "BldgCostT": "53729999", "sL_LossRatio": "0.767986772395578", "sL_AssetLoss": "841271", "sL_BldgLoss": "646085", "sL_StrLoss": "331090", "sL_NStrLoss": "314995", "sL_ContLoss": "195186", "geom_point": "0101000020E610000021E1DEA9FECD5EC060CDBF65E7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.215247001999956, 49.276016591000037 ], [ -123.214351057999963, 49.27570364800011 ], [ -123.213629313999917, 49.275451482000058 ], [ -123.211733388999932, 49.274921597000123 ], [ -123.211752313999952, 49.274332184000123 ], [ -123.21176760799996, 49.273736283000062 ], [ -123.213163188999943, 49.273765105000109 ], [ -123.213979379999955, 49.27377439200005 ], [ -123.214842491999931, 49.273784203000048 ], [ -123.214866516999919, 49.273172142000107 ], [ -123.214889214999943, 49.272593796000073 ], [ -123.214908090999984, 49.272119722000127 ], [ -123.214912012999946, 49.272020845000021 ], [ -123.214930291999934, 49.271562191000093 ], [ -123.214935294000014, 49.271436693000055 ], [ -123.214955106999966, 49.27087804700006 ], [ -123.214972652999975, 49.270382900000094 ], [ -123.214976914999966, 49.270263295000071 ], [ -123.214987426999969, 49.269690930000095 ], [ -123.214998088999948, 49.26911010600007 ], [ -123.215036406999971, 49.268196801000123 ], [ -123.21503848899999, 49.267801905000113 ], [ -123.215040773999988, 49.26736829000005 ], [ -123.217018295999964, 49.267381495 ], [ -123.218666558999928, 49.26728894600005 ], [ -123.219568505999987, 49.267238310000053 ], [ -123.219537298999967, 49.268011190000088 ], [ -123.219540449999897, 49.268792018000035 ], [ -123.219540494999961, 49.268804788000132 ], [ -123.219598760999972, 49.268979194000039 ], [ -123.220243011999941, 49.268911193000037 ], [ -123.221523469999966, 49.268776045000138 ], [ -123.221557106999938, 49.268772511000087 ], [ -123.221486631999966, 49.270558358000088 ], [ -123.222164961999965, 49.271073410000056 ], [ -123.22229004099999, 49.271201614000105 ], [ -123.222322827999946, 49.271270553000086 ], [ -123.222357236, 49.271270486000056 ], [ -123.222498162999941, 49.271414933000088 ], [ -123.222498194999929, 49.271422139000038 ], [ -123.222509245999944, 49.271426293000076 ], [ -123.223912725999966, 49.272864757000036 ], [ -123.223958058999969, 49.274760859000075 ], [ -123.223960074999951, 49.27484498800009 ], [ -123.224115090999973, 49.27585464100013 ], [ -123.223923237999969, 49.275855013000076 ], [ -123.22380823499995, 49.275951262000085 ], [ -123.223755950999973, 49.275964526000045 ], [ -123.223756213999948, 49.276022196000092 ], [ -123.22414234199999, 49.276032126000104 ], [ -123.224220805999948, 49.276543157000077 ], [ -123.22386569199999, 49.277386008000093 ], [ -123.223345391999942, 49.277353701000031 ], [ -123.22202237499999, 49.277053638000062 ], [ -123.21913068899994, 49.276397701000043 ], [ -123.216333773999906, 49.276223793000099 ], [ -123.216216188999979, 49.276203985000073 ], [ -123.215551700999939, 49.276092 ], [ -123.215247001999956, 49.276016591000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91438083", "BldgCostT": "60618333", "sL_LossRatio": "0.739083462135614", "sL_AssetLoss": "1147754", "sL_BldgLoss": "848286", "sL_StrLoss": "392760", "sL_NStrLoss": "455526", "sL_ContLoss": "299468", "geom_point": "0101000020E6100000BCF4CC1EAACD5EC0ABB1CE424CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.212065785000021, 49.265620708000071 ], [ -123.215102746999904, 49.265673035000077 ], [ -123.215101244999943, 49.265744146000095 ], [ -123.215086877999966, 49.266128090000066 ], [ -123.215071622999972, 49.2665350850001 ], [ -123.215056713999957, 49.266937611000053 ], [ -123.215040773999988, 49.26736829000005 ], [ -123.21503848899999, 49.267801905000113 ], [ -123.215036406999971, 49.268196801000123 ], [ -123.214998088999948, 49.26911010600007 ], [ -123.214987426999969, 49.269690930000095 ], [ -123.214976914999966, 49.270263295000071 ], [ -123.211902595999902, 49.270232495000073 ], [ -123.211924201999977, 49.269642994000051 ], [ -123.211945481000015, 49.269061900000025 ], [ -123.211961333999938, 49.268608465000085 ], [ -123.211975898999924, 49.268190802000106 ], [ -123.211991735999931, 49.267753982000066 ], [ -123.212007324999959, 49.267324198000111 ], [ -123.212022190999946, 49.266907775000085 ], [ -123.212037488999911, 49.266480195000071 ], [ -123.212050647, 49.266080719000051 ], [ -123.212065785000021, 49.265620708000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.784613238473879", "sL_AssetLoss": "14337", "sL_BldgLoss": "11249", "sL_StrLoss": "5670", "sL_NStrLoss": "5579", "sL_ContLoss": "3088", "geom_point": "0101000020E6100000B2CC2A8563CE5EC004FA4C0F6DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.22414234199999, 49.276032126000104 ], [ -123.225594448999956, 49.276069457000069 ], [ -123.225509511999945, 49.277489267000128 ], [ -123.224660376, 49.277435926000059 ], [ -123.224140303999917, 49.277403252000028 ], [ -123.22386569199999, 49.277386008000093 ], [ -123.224220805999948, 49.276543157000077 ], [ -123.22414234199999, 49.276032126000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113389207", "BldgCostT": "75669714", "sL_LossRatio": "0.734484837265819", "sL_AssetLoss": "1474767", "sL_BldgLoss": "1083194", "sL_StrLoss": "510790", "sL_NStrLoss": "572404", "sL_ContLoss": "391573", "geom_point": "0101000020E61000002202A305C7CE5EC0CF575E2C6BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.244681836, 49.277779263000099 ], [ -123.244592544999989, 49.277702099000102 ], [ -123.244386641999981, 49.27770253500006 ], [ -123.244383974999977, 49.27716282900014 ], [ -123.243971526999971, 49.277163701000063 ], [ -123.24397019599995, 49.276893848000029 ], [ -123.24314530499997, 49.276895586000045 ], [ -123.243142651999975, 49.276355879000036 ], [ -123.24273021099998, 49.276356747000087 ], [ -123.242728885999952, 49.276086894000088 ], [ -123.242324901999936, 49.276087742000072 ], [ -123.242323627999951, 49.276109181000066 ], [ -123.238877815999956, 49.276021096000093 ], [ -123.238845512999916, 49.27656366400003 ], [ -123.23335760399999, 49.276423150000035 ], [ -123.233572170999949, 49.27282599000003 ], [ -123.236114543999989, 49.272891121000093 ], [ -123.236114074999946, 49.272793109000069 ], [ -123.23611371, 49.272716480000057 ], [ -123.23611183, 49.272322623000022 ], [ -123.238173866999944, 49.272318390000123 ], [ -123.238174262999934, 49.272400445000088 ], [ -123.240649044999898, 49.272463740000077 ], [ -123.240647205999906, 49.272085674000024 ], [ -123.2406360899999, 49.272043433000121 ], [ -123.240234593999915, 49.272044267000098 ], [ -123.240229352999947, 49.270964854000042 ], [ -123.239816956999931, 49.270965711000045 ], [ -123.239813031999958, 49.270156151000094 ], [ -123.239400643999943, 49.270157006000062 ], [ -123.239399337999942, 49.269887153000127 ], [ -123.238986950999973, 49.269888006000073 ], [ -123.238983040000022, 49.269078446000066 ], [ -123.238570659999965, 49.269079298000108 ], [ -123.238566755999926, 49.268269738000043 ], [ -123.238389656999971, 49.268270104000031 ], [ -123.238385228999903, 49.268344500000062 ], [ -123.235680135999942, 49.268275248000101 ], [ -123.235680139999943, 49.268275662000086 ], [ -123.235267764999918, 49.268276502000063 ], [ -123.23527033, 49.268816209000128 ], [ -123.233620816999959, 49.268819557000086 ], [ -123.233619543999936, 49.268549703000041 ], [ -123.233207165999914, 49.268550536000149 ], [ -123.233205893999951, 49.26828068200011 ], [ -123.232793520999934, 49.268281514000115 ], [ -123.232792251999967, 49.26801166000012 ], [ -123.231967506999965, 49.268013318000065 ], [ -123.231966242999988, 49.26774346600012 ], [ -123.231141502999947, 49.267745119000104 ], [ -123.231140241999981, 49.267475264000055 ], [ -123.230727874999943, 49.267476088000059 ], [ -123.230726616999945, 49.267206236000099 ], [ -123.229901885999979, 49.267207879000097 ], [ -123.229900632999957, 49.26693802500008 ], [ -123.229488268999972, 49.266938845000041 ], [ -123.229487018, 49.26666899100011 ], [ -123.227012852999962, 49.266673879000059 ], [ -123.227015328999954, 49.267213586000068 ], [ -123.226190598999935, 49.267215204000074 ], [ -123.226191831999969, 49.267485057000059 ], [ -123.2253670959999, 49.267486669000029 ], [ -123.225368325999938, 49.267756523000031 ], [ -123.224955954999956, 49.267757326000059 ], [ -123.22495718299993, 49.268027181000051 ], [ -123.225369555999961, 49.268026376000122 ], [ -123.225373242999964, 49.268835938000073 ], [ -123.225187831999975, 49.268836300000018 ], [ -123.224913292999958, 49.268836835000045 ], [ -123.224136107, 49.268838345000049 ], [ -123.224135397999959, 49.268681995000087 ], [ -123.22413515199996, 49.268627871000056 ], [ -123.224134883999966, 49.268568491000096 ], [ -123.222897753999973, 49.268570885000052 ], [ -123.22289792, 49.268607908000021 ], [ -123.222898200999936, 49.268670499000031 ], [ -123.222898967999939, 49.268840738000094 ], [ -123.221661832999985, 49.268843118000071 ], [ -123.221666229999968, 49.269825118000028 ], [ -123.221732336999963, 49.269969463000052 ], [ -123.221874829999962, 49.270191989000068 ], [ -123.222080267999957, 49.270191594000096 ], [ -123.222082692999948, 49.270731767 ], [ -123.222099836999959, 49.270831862000094 ], [ -123.222184736999964, 49.271074463000026 ], [ -123.222285734999929, 49.27119256200006 ], [ -123.22229004099999, 49.271201614000105 ], [ -123.222164961999965, 49.271073410000056 ], [ -123.221486631999966, 49.270558358000088 ], [ -123.221557106999938, 49.268772511000087 ], [ -123.221523469999966, 49.268776045000138 ], [ -123.220243011999941, 49.268911193000037 ], [ -123.219598760999972, 49.268979194000039 ], [ -123.219540494999961, 49.268804788000132 ], [ -123.219540449999897, 49.268792018000035 ], [ -123.219537298999967, 49.268011190000088 ], [ -123.219568505999987, 49.267238310000053 ], [ -123.218666558999928, 49.26728894600005 ], [ -123.217018295999964, 49.267381495 ], [ -123.215040773999988, 49.26736829000005 ], [ -123.215056713999957, 49.266937611000053 ], [ -123.215071622999972, 49.2665350850001 ], [ -123.215086877999966, 49.266128090000066 ], [ -123.215101244999943, 49.265744146000095 ], [ -123.215102746999904, 49.265673035000077 ], [ -123.215112200999911, 49.265607536000054 ], [ -123.215122110999971, 49.265498296000068 ], [ -123.215132504999957, 49.265383777000125 ], [ -123.215145045999961, 49.265255893000116 ], [ -123.215189060999961, 49.264807907000034 ], [ -123.215214777999961, 49.264402198000056 ], [ -123.215240331999965, 49.263999495000071 ], [ -123.215902008999976, 49.263983228 ], [ -123.229947743999972, 49.26363664900002 ], [ -123.230277680999976, 49.263628461000089 ], [ -123.230627145999932, 49.263619825000077 ], [ -123.230748985, 49.263616798000022 ], [ -123.231392213999982, 49.263703574000054 ], [ -123.23212241199991, 49.263851983000059 ], [ -123.233136878999971, 49.264231976000048 ], [ -123.234102951999972, 49.264894428000076 ], [ -123.235514627999976, 49.265755606000091 ], [ -123.236764446999985, 49.266337937000117 ], [ -123.236988966, 49.266258117000078 ], [ -123.237376447999935, 49.266121467000168 ], [ -123.237908088999944, 49.2659339920001 ], [ -123.238517988999916, 49.266669352000044 ], [ -123.238540024999921, 49.266695908000031 ], [ -123.23860460499999, 49.2667760490001 ], [ -123.238712697999972, 49.266910197000087 ], [ -123.238766190999939, 49.266974941000093 ], [ -123.239714784999961, 49.268122901000062 ], [ -123.240739795999929, 49.269414594000082 ], [ -123.242340810999934, 49.269175410000067 ], [ -123.243461395999987, 49.272351787000076 ], [ -123.241733288999924, 49.272346397000099 ], [ -123.242106683999964, 49.27341421000007 ], [ -123.242156692999913, 49.273543398000101 ], [ -123.24224471799999, 49.27378631199999 ], [ -123.242622566999898, 49.274859462000045 ], [ -123.242927097999925, 49.275445481000069 ], [ -123.243220801999925, 49.275775387000081 ], [ -123.243410204999989, 49.275986499000112 ], [ -123.243869882999917, 49.276344099000028 ], [ -123.244356181999976, 49.276600592000122 ], [ -123.24511300099999, 49.276928796000028 ], [ -123.2457264129999, 49.277081386000056 ], [ -123.246269805999958, 49.277163707000028 ], [ -123.246775917999969, 49.277201793000081 ], [ -123.247531504999969, 49.277204902000101 ], [ -123.248661682999966, 49.277100393000111 ], [ -123.247642694999925, 49.27748420900015 ], [ -123.246844297999985, 49.277786287000019 ], [ -123.2456360899999, 49.278321053000127 ], [ -123.244803981999951, 49.278689316000076 ], [ -123.244799665999921, 49.277817500000047 ], [ -123.244681836, 49.277779263000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.771253674841932", "sL_AssetLoss": "24831", "sL_BldgLoss": "19151", "sL_StrLoss": "9130", "sL_NStrLoss": "10021", "sL_ContLoss": "5680", "geom_point": "0101000020E6100000ED9D2C1058CE5EC083DAD21700A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.223912725999966, 49.272864757000036 ], [ -123.222509245999944, 49.271426293000076 ], [ -123.222561035999959, 49.27144576200007 ], [ -123.222716895999952, 49.271539650000136 ], [ -123.222911126999961, 49.271539276000091 ], [ -123.222911658, 49.271656972000066 ], [ -123.22316344799999, 49.271808645000043 ], [ -123.223324747999982, 49.271808333000109 ], [ -123.223325147999944, 49.271897201000044 ], [ -123.22386328, 49.272077146000079 ], [ -123.224150776999963, 49.272076589000044 ], [ -123.22415151199999, 49.272238799000085 ], [ -123.22428163699999, 49.272325763 ], [ -123.224299077999945, 49.272346158000055 ], [ -123.224564407999978, 49.272345642000104 ], [ -123.224566905999936, 49.272896279000179 ], [ -123.224740235999917, 49.273229563000058 ], [ -123.224764936, 49.273431263000084 ], [ -123.224713136999952, 49.273716462000017 ], [ -123.22474183599995, 49.273986563000086 ], [ -123.224689836999943, 49.274481062000049 ], [ -123.22457500299997, 49.274679483000078 ], [ -123.224576657999989, 49.27504417800003 ], [ -123.224363693999976, 49.275044591000054 ], [ -123.224352136, 49.27506456200004 ], [ -123.224264935999955, 49.275300962000074 ], [ -123.224166016999973, 49.275439993000084 ], [ -123.224167896999916, 49.2758545390001 ], [ -123.224115090999973, 49.27585464100013 ], [ -123.223960074999951, 49.27484498800009 ], [ -123.223958058999969, 49.274760859000075 ], [ -123.223912725999966, 49.272864757000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52718500", "BldgCostT": "29395000", "sL_LossRatio": "0.622527123975698", "sL_AssetLoss": "611636", "sL_BldgLoss": "380760", "sL_StrLoss": "130280", "sL_NStrLoss": "250480", "sL_ContLoss": "230876", "geom_point": "0101000020E61000008D21ADEF4BCF5EC034C4803EF4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.23789992199994, 49.265078991000024 ], [ -123.237444140999983, 49.26469049300006 ], [ -123.23705942, 49.264362542000057 ], [ -123.237408184999936, 49.26445579300011 ], [ -123.237830305999964, 49.264355796000117 ], [ -123.238273515999964, 49.264133901000086 ], [ -123.238620373999979, 49.264052698000086 ], [ -123.239002605999985, 49.263931897000077 ], [ -123.239135945999919, 49.264110151000111 ], [ -123.239151587999984, 49.264131041000056 ], [ -123.239489952999989, 49.264376787000053 ], [ -123.23982539499994, 49.264620378000096 ], [ -123.24020531499994, 49.264724324000099 ], [ -123.24067540499999, 49.264963025000057 ], [ -123.240805411999986, 49.264917406000087 ], [ -123.241180109, 49.265383594000049 ], [ -123.241156757999974, 49.265392044000109 ], [ -123.239367598999976, 49.266039800000101 ], [ -123.239211320999956, 49.266242890000086 ], [ -123.239070500999986, 49.266620686000081 ], [ -123.239011794999925, 49.266778210000012 ], [ -123.238949716999912, 49.266945097000139 ], [ -123.238726645, 49.266912240000117 ], [ -123.238712697999972, 49.266910197000087 ], [ -123.23860460499999, 49.2667760490001 ], [ -123.238540024999921, 49.266695908000031 ], [ -123.238517988999916, 49.266669352000044 ], [ -123.237908088999944, 49.2659339920001 ], [ -123.237626408000025, 49.265589906000088 ], [ -123.237771903999899, 49.265418117000131 ], [ -123.23789992199994, 49.265078991000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90252636", "BldgCostT": "62397079", "sL_LossRatio": "0.869047263656838", "sL_AssetLoss": "602958", "sL_BldgLoss": "523999", "sL_StrLoss": "254960", "sL_NStrLoss": "269039", "sL_ContLoss": "78959", "geom_point": "0101000020E61000006CFD25906FCF5EC021E527D53EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.238766190999939, 49.266974941000093 ], [ -123.238712697999972, 49.266910197000087 ], [ -123.238726645, 49.266912240000117 ], [ -123.238949716999912, 49.266945097000139 ], [ -123.239011794999925, 49.266778210000012 ], [ -123.239070500999986, 49.266620686000081 ], [ -123.239211320999956, 49.266242890000086 ], [ -123.239367598999976, 49.266039800000101 ], [ -123.241156757999974, 49.265392044000109 ], [ -123.241180109, 49.265383594000049 ], [ -123.241756501999987, 49.266063909000046 ], [ -123.242299030999945, 49.266730185000043 ], [ -123.242355685999968, 49.26679980100014 ], [ -123.242419033999923, 49.26688326700004 ], [ -123.242466490999959, 49.266945813000042 ], [ -123.242527031999984, 49.267018909000051 ], [ -123.243275317000027, 49.267922999000064 ], [ -123.243603785999966, 49.268336706000113 ], [ -123.2438081, 49.268666092000061 ], [ -123.243867303999977, 49.268827108000089 ], [ -123.242340810999934, 49.269175410000067 ], [ -123.240739795999929, 49.269414594000082 ], [ -123.239714784999961, 49.268122901000062 ], [ -123.238766190999939, 49.266974941000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "713359750", "BldgCostT": "482694015", "sL_LossRatio": "0.789961294177075", "sL_AssetLoss": "3119944", "sL_BldgLoss": "2464635", "sL_StrLoss": "1156920", "sL_NStrLoss": "1307715", "sL_ContLoss": "655309", "geom_point": "0101000020E610000042DE8B9284CF5EC0F74A8205EAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.242299030999945, 49.266730185000043 ], [ -123.241756501999987, 49.266063909000046 ], [ -123.241180109, 49.265383594000049 ], [ -123.240805411999986, 49.264917406000087 ], [ -123.24067540499999, 49.264963025000057 ], [ -123.24020531499994, 49.264724324000099 ], [ -123.23982539499994, 49.264620378000096 ], [ -123.239489952999989, 49.264376787000053 ], [ -123.239557910999963, 49.264111804000038 ], [ -123.239518521999955, 49.263979882000051 ], [ -123.239513195999905, 49.263961990000084 ], [ -123.241301587999956, 49.263321130000129 ], [ -123.241347692999938, 49.263304588000018 ], [ -123.242514238999917, 49.262901043000056 ], [ -123.242529062999964, 49.262918980000045 ], [ -123.242566190999923, 49.262963961000047 ], [ -123.24365568499995, 49.264284227000104 ], [ -123.24393831899998, 49.264626745000037 ], [ -123.244161203999965, 49.264896854000042 ], [ -123.245063918999946, 49.266004317000089 ], [ -123.24535192499998, 49.266359315000066 ], [ -123.245467549999915, 49.266494668000114 ], [ -123.244161160999965, 49.266694840000106 ], [ -123.244147679999926, 49.266696897000045 ], [ -123.244019452999979, 49.266543263000074 ], [ -123.242355685999968, 49.26679980100014 ], [ -123.242299030999945, 49.266730185000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "272209008", "BldgCostT": "166603459", "sL_LossRatio": "0.667476904159898", "sL_AssetLoss": "1473642", "sL_BldgLoss": "983622", "sL_StrLoss": "387742", "sL_NStrLoss": "595880", "sL_ContLoss": "490020", "geom_point": "0101000020E6100000C902379CC3CF5EC01F311FB5AEA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.245063918999946, 49.266004317000089 ], [ -123.244161203999965, 49.264896854000042 ], [ -123.24393831899998, 49.264626745000037 ], [ -123.24365568499995, 49.264284227000104 ], [ -123.242566190999923, 49.262963961000047 ], [ -123.242529062999964, 49.262918980000045 ], [ -123.242514238999917, 49.262901043000056 ], [ -123.241347692999938, 49.263304588000018 ], [ -123.241301587999956, 49.263321130000129 ], [ -123.239513195999905, 49.263961990000084 ], [ -123.239518521999955, 49.263979882000051 ], [ -123.239557910999963, 49.264111804000038 ], [ -123.239489952999989, 49.264376787000053 ], [ -123.239151587999984, 49.264131041000056 ], [ -123.239135945999919, 49.264110151000111 ], [ -123.239002605999985, 49.263931897000077 ], [ -123.238620373999979, 49.264052698000086 ], [ -123.238273515999964, 49.264133901000086 ], [ -123.237872291999963, 49.26372008600007 ], [ -123.237827859999982, 49.263681411000043 ], [ -123.237565409999917, 49.263452901000086 ], [ -123.23732442799999, 49.263000177000045 ], [ -123.237314608999952, 49.262981705000065 ], [ -123.237111200999962, 49.262982809000071 ], [ -123.237434643999961, 49.26286794900011 ], [ -123.23821078, 49.262580404000083 ], [ -123.238227329999958, 49.262575897000055 ], [ -123.238529935999964, 49.262493353000153 ], [ -123.238605736999929, 49.262472672000065 ], [ -123.238631143999967, 49.262465747000093 ], [ -123.238678586999967, 49.262452794000104 ], [ -123.239134010999962, 49.262417593000059 ], [ -123.239453309999988, 49.262475300000105 ], [ -123.241115897999947, 49.262930291000103 ], [ -123.242207015999938, 49.262546862000107 ], [ -123.241427054999946, 49.261670113000072 ], [ -123.241602257999915, 49.261611535000036 ], [ -123.244296739, 49.260671470000013 ], [ -123.244765288999986, 49.260507962000062 ], [ -123.245768096999967, 49.260159773000055 ], [ -123.245975782999892, 49.260085840000059 ], [ -123.246876663999927, 49.259764771000093 ], [ -123.247539791999927, 49.259538490000054 ], [ -123.24776689399999, 49.259461425000048 ], [ -123.248043359999954, 49.259800812000023 ], [ -123.248193565999955, 49.259908216000049 ], [ -123.248226666999969, 49.259999111000134 ], [ -123.248119366, 49.260071211000131 ], [ -123.247903566999966, 49.26014248799999 ], [ -123.248051283, 49.260181540000062 ], [ -123.248352401999938, 49.260202432000042 ], [ -123.248576846999967, 49.260151994000125 ], [ -123.248765947999971, 49.260089702000059 ], [ -123.249161633999947, 49.260563373000153 ], [ -123.249656785999946, 49.261150863000054 ], [ -123.250697802999952, 49.2623858810001 ], [ -123.251668301999956, 49.263592067000047 ], [ -123.252608054999939, 49.264760062000072 ], [ -123.252745500999964, 49.264922099000074 ], [ -123.251617264999979, 49.26531674000006 ], [ -123.25065250199998, 49.265654209000068 ], [ -123.250537000999898, 49.265516099000088 ], [ -123.250364573999946, 49.265574767000082 ], [ -123.250066109, 49.265650928000078 ], [ -123.249182146999928, 49.265794557000042 ], [ -123.248711441999916, 49.265871029000046 ], [ -123.248547226999932, 49.265897720000083 ], [ -123.247825227999911, 49.266003609000116 ], [ -123.247333353999963, 49.266073916000032 ], [ -123.246799501999973, 49.266226938000059 ], [ -123.246264953999969, 49.266368197000062 ], [ -123.24571699899991, 49.26645778900005 ], [ -123.245467549999915, 49.266494668000114 ], [ -123.24535192499998, 49.266359315000066 ], [ -123.245063918999946, 49.266004317000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150436061", "BldgCostT": "103093190", "sL_LossRatio": "0.770529470529471", "sL_AssetLoss": "500500", "sL_BldgLoss": "385650", "sL_StrLoss": "205440", "sL_NStrLoss": "180210", "sL_ContLoss": "114850", "geom_point": "0101000020E61000003F9BA8E715CF5EC0C73DD0E97DA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.234844543999927, 49.262201479000055 ], [ -123.234420554999986, 49.261687131000059 ], [ -123.234364276999898, 49.261617240000071 ], [ -123.234292948999951, 49.261525491000093 ], [ -123.234265177999958, 49.26148971600005 ], [ -123.234219921999966, 49.261431509000062 ], [ -123.23386289099993, 49.260972117000101 ], [ -123.233834184999935, 49.260808361000045 ], [ -123.233876903999928, 49.260668030000033 ], [ -123.233971589999911, 49.260530850000073 ], [ -123.234372216999986, 49.260147522000054 ], [ -123.234487932999969, 49.260079901000118 ], [ -123.234841826999912, 49.259873142000032 ], [ -123.235231498999966, 49.259719192000013 ], [ -123.235492801999939, 49.260028704000014 ], [ -123.236175795999898, 49.260837689000056 ], [ -123.236240561999978, 49.260849472000132 ], [ -123.236406787999954, 49.260879693000028 ], [ -123.236525596999982, 49.260962007000018 ], [ -123.236590720999956, 49.261114094000092 ], [ -123.236578903999927, 49.261311 ], [ -123.23730649, 49.262195195000025 ], [ -123.237622196999894, 49.26219878600007 ], [ -123.237883389, 49.262426100000013 ], [ -123.238039899999961, 49.262496787000011 ], [ -123.238105787999928, 49.262552350000085 ], [ -123.238109312999981, 49.262555286000058 ], [ -123.23821078, 49.262580404000083 ], [ -123.237434643999961, 49.26286794900011 ], [ -123.237111200999962, 49.262982809000071 ], [ -123.236645398999926, 49.263146490000082 ], [ -123.23629559699998, 49.263270268000035 ], [ -123.235943264999932, 49.263394933 ], [ -123.235852591999929, 49.26342700500004 ], [ -123.23538323299999, 49.262856408000111 ], [ -123.234844543999927, 49.262201479000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104879636", "BldgCostT": "69707079", "sL_LossRatio": "0.772384193044108", "sL_AssetLoss": "394687", "sL_BldgLoss": "304850", "sL_StrLoss": "154390", "sL_NStrLoss": "150460", "sL_ContLoss": "89837", "geom_point": "0101000020E6100000952EF5DA09CF5EC024C07651F0A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.233004898, 49.258130984000061 ], [ -123.232781199999962, 49.257920795000068 ], [ -123.232456825999961, 49.257551587000115 ], [ -123.232230672999989, 49.257294180000031 ], [ -123.232719346999929, 49.257114870000059 ], [ -123.23423741199997, 49.256463848000074 ], [ -123.235309869, 49.256115382000068 ], [ -123.235866299999898, 49.255934574000037 ], [ -123.236119110999979, 49.255887001000055 ], [ -123.236230234999965, 49.255934877000108 ], [ -123.23635703399999, 49.255950731000063 ], [ -123.236494557999919, 49.256039825000137 ], [ -123.237655935999953, 49.257410699000076 ], [ -123.237733073999948, 49.2574991440001 ], [ -123.23675687299999, 49.257862323000097 ], [ -123.23650440099999, 49.257955465000059 ], [ -123.235946509999948, 49.258161306000034 ], [ -123.235863821999956, 49.258051106000067 ], [ -123.23569728899993, 49.258009904000062 ], [ -123.235474998999976, 49.258052893000112 ], [ -123.235369260999903, 49.258214081000119 ], [ -123.234961522000035, 49.258256766000045 ], [ -123.234582701999983, 49.258344337000082 ], [ -123.233978328999939, 49.258735958000038 ], [ -123.233552532999965, 49.259081718000047 ], [ -123.233154665999933, 49.258843631000012 ], [ -123.23355922199994, 49.258509052000129 ], [ -123.233294377999954, 49.258342791000075 ], [ -123.233004898, 49.258130984000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5753561", "BldgCostT": "3028190", "sL_LossRatio": "0.616098600121728", "sL_AssetLoss": "65720", "sL_BldgLoss": "40490", "sL_StrLoss": "26560", "sL_NStrLoss": "13930", "sL_ContLoss": "25230", "geom_point": "0101000020E61000003309CD642ED05EC0A78F023C50A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.249161633999947, 49.260563373000153 ], [ -123.248765947999971, 49.260089702000059 ], [ -123.248576846999967, 49.260151994000125 ], [ -123.248352401999938, 49.260202432000042 ], [ -123.248051283, 49.260181540000062 ], [ -123.247903566999966, 49.26014248799999 ], [ -123.248119366, 49.260071211000131 ], [ -123.248226666999969, 49.259999111000134 ], [ -123.248193565999955, 49.259908216000049 ], [ -123.248043359999954, 49.259800812000023 ], [ -123.24776689399999, 49.259461425000048 ], [ -123.247934592999954, 49.259412566000094 ], [ -123.248005892999984, 49.259368434000059 ], [ -123.248129212999942, 49.259327456000079 ], [ -123.248812181999966, 49.259113390000088 ], [ -123.249317398999935, 49.258944362000094 ], [ -123.249672589999989, 49.258825507000047 ], [ -123.250499225999988, 49.258548274000105 ], [ -123.250583512999967, 49.258520007000122 ], [ -123.25005961, 49.257858093000067 ], [ -123.249785671, 49.257519839000047 ], [ -123.249131689, 49.25671220800011 ], [ -123.248415713999961, 49.255816708000033 ], [ -123.24831911199999, 49.255777307000109 ], [ -123.24805569599998, 49.255471591000052 ], [ -123.248178283999962, 49.255419800000034 ], [ -123.248197787999942, 49.255344612000044 ], [ -123.249749897999919, 49.25450870100007 ], [ -123.251681721999987, 49.256235000000117 ], [ -123.25190500099994, 49.256383888000045 ], [ -123.25196783199999, 49.256413014000024 ], [ -123.252092090999938, 49.256470592000078 ], [ -123.252490616999964, 49.256583397000014 ], [ -123.252528024999918, 49.256594961000104 ], [ -123.252528235999975, 49.256636236000062 ], [ -123.252660623999972, 49.256635947000063 ], [ -123.252713226999958, 49.2566521950001 ], [ -123.252941076999946, 49.25674587200006 ], [ -123.252941891999967, 49.256905188000054 ], [ -123.253301422999968, 49.256904400000039 ], [ -123.253354321999936, 49.256933770000117 ], [ -123.253355552, 49.257174138000096 ], [ -123.253735106999969, 49.25717330500008 ], [ -123.253983207999951, 49.257378896000063 ], [ -123.254133694999922, 49.257552097000016 ], [ -123.254182679999957, 49.257672163000066 ], [ -123.254184428999935, 49.258012817000044 ], [ -123.254322804999973, 49.258016339000086 ], [ -123.254573709999931, 49.258709769000035 ], [ -123.254629079999958, 49.258862759000117 ], [ -123.254766483999944, 49.259206511000045 ], [ -123.255079011999953, 49.259565700000046 ], [ -123.25526680899999, 49.259710996000088 ], [ -123.25578320299995, 49.259968195000056 ], [ -123.256052407999988, 49.26006059499999 ], [ -123.256672892999944, 49.260252912000091 ], [ -123.257093083, 49.260416696000071 ], [ -123.25720103899998, 49.260491432999984 ], [ -123.257371845999941, 49.260628255000078 ], [ -123.257552461999978, 49.260872441000039 ], [ -123.257669297999968, 49.261143899000025 ], [ -123.25771551299999, 49.261251265000055 ], [ -123.257785595999934, 49.261333115000085 ], [ -123.257843980999965, 49.261401330000048 ], [ -123.257986528999979, 49.261489701000123 ], [ -123.258116088999955, 49.261570032000058 ], [ -123.258446889999988, 49.261775129000036 ], [ -123.258563443999947, 49.261895166000038 ], [ -123.258631000999969, 49.262030174000053 ], [ -123.258637696999983, 49.262100149000055 ], [ -123.258650536999937, 49.262234215000021 ], [ -123.258634085999944, 49.262292045000088 ], [ -123.258592332999982, 49.262406699000096 ], [ -123.258494266999946, 49.262670685000103 ], [ -123.258183523999961, 49.262779063000032 ], [ -123.256631724, 49.26332019700007 ], [ -123.256574061999956, 49.263340319000079 ], [ -123.256430513999973, 49.263390358000017 ], [ -123.256327479999925, 49.263426335000091 ], [ -123.256116646999942, 49.2635037370001 ], [ -123.255982885999956, 49.263658077000052 ], [ -123.255920085999946, 49.263730526000053 ], [ -123.255863082999923, 49.263796291000141 ], [ -123.255096877999947, 49.26409289700014 ], [ -123.254156889999976, 49.264423888000103 ], [ -123.253737570999959, 49.264572272000095 ], [ -123.252990906999983, 49.264836484000092 ], [ -123.252745500999964, 49.264922099000074 ], [ -123.252608054999939, 49.264760062000072 ], [ -123.251668301999956, 49.263592067000047 ], [ -123.250697802999952, 49.2623858810001 ], [ -123.249656785999946, 49.261150863000054 ], [ -123.249161633999947, 49.260563373000153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100521812", "BldgCostT": "60768191", "sL_LossRatio": "0.723133133004405", "sL_AssetLoss": "699849", "sL_BldgLoss": "506084", "sL_StrLoss": "285490", "sL_NStrLoss": "220594", "sL_ContLoss": "193765", "geom_point": "0101000020E61000003758B3C607D05EC0B4E7DFEC5EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.248378297999977, 49.272914991000071 ], [ -123.247486997999971, 49.270430807000039 ], [ -123.246213018999981, 49.270621611000131 ], [ -123.24459118399993, 49.270863909000077 ], [ -123.245120801999946, 49.27235641300004 ], [ -123.243461395999987, 49.272351787000076 ], [ -123.242340810999934, 49.269175410000067 ], [ -123.243867303999977, 49.268827108000089 ], [ -123.2438081, 49.268666092000061 ], [ -123.243603785999966, 49.268336706000113 ], [ -123.243275317000027, 49.267922999000064 ], [ -123.242527031999984, 49.267018909000051 ], [ -123.242466490999959, 49.266945813000042 ], [ -123.242419033999923, 49.26688326700004 ], [ -123.242355685999968, 49.26679980100014 ], [ -123.244019452999979, 49.266543263000074 ], [ -123.244147679999926, 49.266696897000045 ], [ -123.244161160999965, 49.266694840000106 ], [ -123.245467549999915, 49.266494668000114 ], [ -123.24571699899991, 49.26645778900005 ], [ -123.246264953999969, 49.266368197000062 ], [ -123.246799501999973, 49.266226938000059 ], [ -123.247333353999963, 49.266073916000032 ], [ -123.247825227999911, 49.266003609000116 ], [ -123.248547226999932, 49.265897720000083 ], [ -123.248711441999916, 49.265871029000046 ], [ -123.249182146999928, 49.265794557000042 ], [ -123.250066109, 49.265650928000078 ], [ -123.250364573999946, 49.265574767000082 ], [ -123.250537000999898, 49.265516099000088 ], [ -123.25065250199998, 49.265654209000068 ], [ -123.251617264999979, 49.26531674000006 ], [ -123.252745500999964, 49.264922099000074 ], [ -123.252990906999983, 49.264836484000092 ], [ -123.253737570999959, 49.264572272000095 ], [ -123.254156889999976, 49.264423888000103 ], [ -123.255096877999947, 49.26409289700014 ], [ -123.255509463999942, 49.264595066000027 ], [ -123.256207916999955, 49.265445189000076 ], [ -123.256631667999926, 49.265959818000091 ], [ -123.25732298299998, 49.26679929800008 ], [ -123.258243301999968, 49.267916998000025 ], [ -123.258832900999948, 49.26863271400007 ], [ -123.258200980999931, 49.269026399000012 ], [ -123.257174006999961, 49.26953758300003 ], [ -123.254938259999989, 49.270650250000038 ], [ -123.254517327999935, 49.270868306000082 ], [ -123.254420021999962, 49.270980227000024 ], [ -123.254220192999966, 49.271106622000026 ], [ -123.254070350999939, 49.271200997000108 ], [ -123.253367781999927, 49.271696492 ], [ -123.252519625999952, 49.272121619000046 ], [ -123.25157696799999, 49.272504156000089 ], [ -123.251565138999979, 49.272508932000086 ], [ -123.251462816999918, 49.272381124000106 ], [ -123.251420955999919, 49.27233143900002 ], [ -123.251247172999925, 49.272125264000081 ], [ -123.251150711999969, 49.272130009000058 ], [ -123.251078977999967, 49.272088558000085 ], [ -123.251074404999912, 49.272026308000086 ], [ -123.250661109999953, 49.27158163800005 ], [ -123.250264108999914, 49.27169672400008 ], [ -123.250071460999919, 49.271678315000067 ], [ -123.249915483999956, 49.271597772000113 ], [ -123.248661872999961, 49.272053484000061 ], [ -123.248481171999956, 49.272119169000085 ], [ -123.24839895199996, 49.272149063000072 ], [ -123.248490996999948, 49.272380639000048 ], [ -123.248773152999902, 49.273090774000089 ], [ -123.248815114999971, 49.273193800000094 ], [ -123.248829504999946, 49.273229122000089 ], [ -123.248443384000012, 49.273298493000027 ], [ -123.248425976999968, 49.273145741000064 ], [ -123.248378297999977, 49.272914991000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88643084", "BldgCostT": "59668334", "sL_LossRatio": "0.752072249370403", "sL_AssetLoss": "959344", "sL_BldgLoss": "721496", "sL_StrLoss": "346128", "sL_NStrLoss": "375368", "sL_ContLoss": "237848", "geom_point": "0101000020E610000003227A08D9CF5EC09172395610A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.242106683999964, 49.27341421000007 ], [ -123.241733288999924, 49.272346397000099 ], [ -123.243461395999987, 49.272351787000076 ], [ -123.245120801999946, 49.27235641300004 ], [ -123.24459118399993, 49.270863909000077 ], [ -123.246213018999981, 49.270621611000131 ], [ -123.247486997999971, 49.270430807000039 ], [ -123.248378297999977, 49.272914991000071 ], [ -123.248425976999968, 49.273145741000064 ], [ -123.248443384000012, 49.273298493000027 ], [ -123.248829504999946, 49.273229122000089 ], [ -123.248815114999971, 49.273193800000094 ], [ -123.248773152999902, 49.273090774000089 ], [ -123.248490996999948, 49.272380639000048 ], [ -123.24839895199996, 49.272149063000072 ], [ -123.248481171999956, 49.272119169000085 ], [ -123.248661872999961, 49.272053484000061 ], [ -123.249915483999956, 49.271597772000113 ], [ -123.250071460999919, 49.271678315000067 ], [ -123.250264108999914, 49.27169672400008 ], [ -123.250661109999953, 49.27158163800005 ], [ -123.251074404999912, 49.272026308000086 ], [ -123.251078977999967, 49.272088558000085 ], [ -123.251150711999969, 49.272130009000058 ], [ -123.251247172999925, 49.272125264000081 ], [ -123.251420955999919, 49.27233143900002 ], [ -123.251462816999918, 49.272381124000106 ], [ -123.251565138999979, 49.272508932000086 ], [ -123.25157696799999, 49.272504156000089 ], [ -123.252519625999952, 49.272121619000046 ], [ -123.253367781999927, 49.271696492 ], [ -123.254070350999939, 49.271200997000108 ], [ -123.254228877999978, 49.272654193000093 ], [ -123.254223381999964, 49.27297917800005 ], [ -123.254120956999941, 49.273270178000111 ], [ -123.253668102999939, 49.273771989000061 ], [ -123.252706652999947, 49.2741765110001 ], [ -123.252659100999935, 49.274176615000044 ], [ -123.25265789099997, 49.274197027000085 ], [ -123.252305479999976, 49.274345296000035 ], [ -123.251990010999933, 49.274846079000127 ], [ -123.251790601, 49.275127486000031 ], [ -123.251649693999951, 49.275209510000067 ], [ -123.251458898999942, 49.275275801000141 ], [ -123.250834299999923, 49.275382311000044 ], [ -123.250530227999917, 49.275527702000048 ], [ -123.249784899999938, 49.276465208000069 ], [ -123.249419991999929, 49.276755806000047 ], [ -123.249072528999974, 49.276939697000074 ], [ -123.248661682999966, 49.277100393000111 ], [ -123.247531504999969, 49.277204902000101 ], [ -123.246775917999969, 49.277201793000081 ], [ -123.246269805999958, 49.277163707000028 ], [ -123.2457264129999, 49.277081386000056 ], [ -123.24511300099999, 49.276928796000028 ], [ -123.244356181999976, 49.276600592000122 ], [ -123.243869882999917, 49.276344099000028 ], [ -123.243410204999989, 49.275986499000112 ], [ -123.243220801999925, 49.275775387000081 ], [ -123.242927097999925, 49.275445481000069 ], [ -123.242622566999898, 49.274859462000045 ], [ -123.24224471799999, 49.27378631199999 ], [ -123.242156692999913, 49.273543398000101 ], [ -123.242106683999964, 49.27341421000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245346083", "BldgCostT": "166268333", "sL_LossRatio": "0.827299773556442", "sL_AssetLoss": "3208305", "sL_BldgLoss": "2654230", "sL_StrLoss": "1264470", "sL_NStrLoss": "1389760", "sL_ContLoss": "554075", "geom_point": "0101000020E6100000C27C790176CC5EC0BFDE9AC7239D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190943799999943, 49.226533686000096 ], [ -123.191097060999965, 49.225554513000112 ], [ -123.19124949699993, 49.225561930000111 ], [ -123.191869616999952, 49.225592204000066 ], [ -123.193013421, 49.225697026000034 ], [ -123.194340322999935, 49.225818606000082 ], [ -123.195137811999984, 49.225953790000055 ], [ -123.196438717999968, 49.226227766000065 ], [ -123.19647969199994, 49.226236389000071 ], [ -123.19659569699995, 49.226261272000073 ], [ -123.196842799999956, 49.226314283000058 ], [ -123.1974524, 49.226493203000125 ], [ -123.197941784999927, 49.226641015000048 ], [ -123.198044620999966, 49.226711207000037 ], [ -123.198489307000017, 49.227235306000125 ], [ -123.198417295999946, 49.227358614000146 ], [ -123.198390103999884, 49.228356 ], [ -123.197136612999984, 49.228336893000041 ], [ -123.19708809799999, 49.22997368000005 ], [ -123.197085015999917, 49.230078506000012 ], [ -123.197050358999903, 49.230559679000081 ], [ -123.197049180999898, 49.230575968000053 ], [ -123.19647351399999, 49.230338085000085 ], [ -123.194842358999949, 49.229806977000059 ], [ -123.191436182999936, 49.228000195000099 ], [ -123.191118784999986, 49.227360449000052 ], [ -123.190943799999943, 49.226533686000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.774524355687492", "sL_AssetLoss": "37055", "sL_BldgLoss": "28700", "sL_StrLoss": "13520", "sL_NStrLoss": "15180", "sL_ContLoss": "8355", "geom_point": "0101000020E6100000E29BBF6CAFCB5EC0B7FEA72CD49B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.180807005999938, 49.217361890000106 ], [ -123.179692005999982, 49.216750894000072 ], [ -123.17868881199999, 49.216437606000071 ], [ -123.178522678999954, 49.216357795000071 ], [ -123.178536894999951, 49.216241113000137 ], [ -123.179319802999913, 49.21620260900005 ], [ -123.181468884999902, 49.216517401000104 ], [ -123.181468913999936, 49.216525289000053 ], [ -123.181534447999937, 49.216527003000138 ], [ -123.181750788, 49.216558689000102 ], [ -123.182163279999926, 49.216668088000127 ], [ -123.182561487999976, 49.216773693000121 ], [ -123.182829973999972, 49.216916038000093 ], [ -123.183043033999951, 49.217028987000106 ], [ -123.183531472999945, 49.217287916000018 ], [ -123.183531766, 49.217367239000062 ], [ -123.183766553999959, 49.217366866000084 ], [ -123.18439381, 49.217534208000046 ], [ -123.184666293999939, 49.217606902000071 ], [ -123.1852018229999, 49.21783050200002 ], [ -123.18630290499999, 49.218431485000096 ], [ -123.18633051599997, 49.218566800000119 ], [ -123.185946480999988, 49.218693498000064 ], [ -123.184930193999918, 49.218586694000095 ], [ -123.181947985999955, 49.217754993000035 ], [ -123.180807005999938, 49.217361890000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116578917", "BldgCostT": "78926667", "sL_LossRatio": "0.734169545850406", "sL_AssetLoss": "2241376", "sL_BldgLoss": "1645550", "sL_StrLoss": "749090", "sL_NStrLoss": "896460", "sL_ContLoss": "595826", "geom_point": "0101000020E6100000F35D196D78CB5EC071DB1901709C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175927400999981, 49.225400996000097 ], [ -123.175990088999953, 49.223422716000059 ], [ -123.172982241999989, 49.223387153000012 ], [ -123.170831114999928, 49.22336322200006 ], [ -123.169759712999962, 49.223351236000049 ], [ -123.168807011999888, 49.223340590000142 ], [ -123.168374003999944, 49.223351785000041 ], [ -123.168306193999953, 49.222952274000143 ], [ -123.168298251999943, 49.222905729000104 ], [ -123.168350507999918, 49.221507776000088 ], [ -123.168354777999966, 49.221393926000118 ], [ -123.168252329999959, 49.220307068000132 ], [ -123.167987506999964, 49.216152656000119 ], [ -123.16804362499991, 49.215750131000107 ], [ -123.16807094499994, 49.215568156000103 ], [ -123.168180084999989, 49.215598697000097 ], [ -123.169107866999923, 49.215752529000042 ], [ -123.169107925999953, 49.215770106000058 ], [ -123.16921294899997, 49.215769952000052 ], [ -123.170929207999961, 49.216054491000072 ], [ -123.172152003999926, 49.216097187000052 ], [ -123.174484908999929, 49.216013193000059 ], [ -123.174856595999955, 49.216057299000042 ], [ -123.175652611999951, 49.216370688000048 ], [ -123.17604035699992, 49.216307851000067 ], [ -123.176601489999967, 49.216216893000087 ], [ -123.178690101999933, 49.216806497000043 ], [ -123.180698808999921, 49.217739293000086 ], [ -123.182060291999932, 49.218250616000034 ], [ -123.185218589999934, 49.218712094000097 ], [ -123.186826994999961, 49.219069504000096 ], [ -123.188477607999957, 49.219670589000039 ], [ -123.188713032999928, 49.219805412000078 ], [ -123.188896861999936, 49.219910678000097 ], [ -123.188897420999936, 49.220057174000075 ], [ -123.189151966999987, 49.220056757000101 ], [ -123.189312804999986, 49.220148856000115 ], [ -123.189710555999937, 49.220376612000031 ], [ -123.190059522999974, 49.220576400000063 ], [ -123.190135423999919, 49.220597632000072 ], [ -123.190136446999986, 49.22086471700004 ], [ -123.191152011999947, 49.22086304000004 ], [ -123.191298000999936, 49.22089819300006 ], [ -123.191343844999963, 49.220899179000078 ], [ -123.191097060999965, 49.225554513000112 ], [ -123.19102994499994, 49.225551225000096 ], [ -123.190402500999966, 49.225520600000067 ], [ -123.185577208999959, 49.225507408000077 ], [ -123.185493608999977, 49.225867293000064 ], [ -123.185468899999975, 49.226501691000074 ], [ -123.185489212999983, 49.227479499000033 ], [ -123.182164698999941, 49.227455812000045 ], [ -123.182131300999941, 49.228043382000095 ], [ -123.18210277299994, 49.228544098000086 ], [ -123.182058891999958, 49.229312204000081 ], [ -123.182012518999954, 49.230145000000114 ], [ -123.18123765199995, 49.230147639000016 ], [ -123.180674531999941, 49.230149541000117 ], [ -123.180333309999952, 49.230150700000067 ], [ -123.1792283, 49.230148811000021 ], [ -123.179180933999987, 49.230146249000072 ], [ -123.178705690999919, 49.230120685000045 ], [ -123.178464100999975, 49.230074795000071 ], [ -123.177750971999956, 49.229805582000026 ], [ -123.175831215999935, 49.22908080600012 ], [ -123.17584649399997, 49.228492105000079 ], [ -123.175873783999918, 49.227410997000085 ], [ -123.175927400999981, 49.225400996000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118392077", "BldgCostT": "77477409", "sL_LossRatio": "0.705781380872119", "sL_AssetLoss": "1934140", "sL_BldgLoss": "1365080", "sL_StrLoss": "572410", "sL_NStrLoss": "792670", "sL_ContLoss": "569060", "geom_point": "0101000020E61000009445611705CB5EC0C21CEB7F0C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.171591997999926, 49.231000901000051 ], [ -123.171611710999954, 49.229348503000104 ], [ -123.170311391999959, 49.229331513000062 ], [ -123.169683268999904, 49.229325222000064 ], [ -123.168929899999966, 49.229317711000128 ], [ -123.167446913999967, 49.229302181000044 ], [ -123.167430799999977, 49.227315599000079 ], [ -123.167852388999961, 49.226660109000157 ], [ -123.168244246999947, 49.226054408000074 ], [ -123.168416219, 49.225788604000066 ], [ -123.168669404999946, 49.225417785000069 ], [ -123.168781860999928, 49.225066709000025 ], [ -123.168784722999973, 49.225057798000101 ], [ -123.168800004, 49.224784402000026 ], [ -123.168720598999968, 49.224435491000037 ], [ -123.168700386999944, 49.224346691000044 ], [ -123.168374003999944, 49.223351785000041 ], [ -123.168807011999888, 49.223340590000142 ], [ -123.169759712999962, 49.223351236000049 ], [ -123.170831114999928, 49.22336322200006 ], [ -123.172982241999989, 49.223387153000012 ], [ -123.175990088999953, 49.223422716000059 ], [ -123.175927400999981, 49.225400996000097 ], [ -123.175873783999918, 49.227410997000085 ], [ -123.17584649399997, 49.228492105000079 ], [ -123.175831215999935, 49.22908080600012 ], [ -123.175814239999966, 49.229683265000105 ], [ -123.175813395999953, 49.22971259200007 ], [ -123.175825639999971, 49.230025595000015 ], [ -123.175853702999973, 49.230742309000092 ], [ -123.17584601599998, 49.23102770600012 ], [ -123.17312601199994, 49.231013205000131 ], [ -123.171591997999926, 49.231000901000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160493552", "BldgCostT": "102113745", "sL_LossRatio": "0.70425262063433", "sL_AssetLoss": "2231330", "sL_BldgLoss": "1571420", "sL_StrLoss": "697560", "sL_NStrLoss": "873860", "sL_ContLoss": "659910", "geom_point": "0101000020E6100000022E8EEBDBCA5EC0F4E0C52DAC9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.167425589999979, 49.231001413000051 ], [ -123.167446913999967, 49.229302181000044 ], [ -123.168929899999966, 49.229317711000128 ], [ -123.169683268999904, 49.229325222000064 ], [ -123.170311391999959, 49.229331513000062 ], [ -123.171611710999954, 49.229348503000104 ], [ -123.171591997999926, 49.231000901000051 ], [ -123.17312601199994, 49.231013205000131 ], [ -123.173103568999963, 49.23146022300007 ], [ -123.173081018999966, 49.231909993000031 ], [ -123.173075133999987, 49.23234154000005 ], [ -123.173069174999966, 49.232779796000095 ], [ -123.170294020999947, 49.232770098000053 ], [ -123.170286004999966, 49.23375620700002 ], [ -123.170269486999985, 49.234243588000012 ], [ -123.170253404999983, 49.234719206000086 ], [ -123.16884988, 49.234724367000112 ], [ -123.168575036999982, 49.234725364000084 ], [ -123.167394378999958, 49.234729694000123 ], [ -123.167394660999918, 49.234301677000069 ], [ -123.167394976999987, 49.233752395000117 ], [ -123.167413417999967, 49.232888106000047 ], [ -123.167407505999932, 49.232760993000049 ], [ -123.167418511000022, 49.231904714000052 ], [ -123.167425589999979, 49.231001413000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119812469", "BldgCostT": "76295412", "sL_LossRatio": "0.702535441891963", "sL_AssetLoss": "1512123", "sL_BldgLoss": "1062320", "sL_StrLoss": "503290", "sL_NStrLoss": "559030", "sL_ContLoss": "449803", "geom_point": "0101000020E6100000C20855281ACB5EC09FEB03E2D89D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17312601199994, 49.231013205000131 ], [ -123.17584601599998, 49.23102770600012 ], [ -123.17584246199999, 49.231168422000025 ], [ -123.17583473399992, 49.231474172000084 ], [ -123.175823693999945, 49.231912500000142 ], [ -123.175812057999934, 49.232383074000076 ], [ -123.175806246999969, 49.23261689900005 ], [ -123.175802017999942, 49.232788401000036 ], [ -123.175775382999959, 49.233766797000115 ], [ -123.175764249999958, 49.234289892000078 ], [ -123.175754585999954, 49.234740900000091 ], [ -123.173066908999971, 49.234734392000099 ], [ -123.170253404999983, 49.234719206000086 ], [ -123.170269486999985, 49.234243588000012 ], [ -123.170286004999966, 49.23375620700002 ], [ -123.170294020999947, 49.232770098000053 ], [ -123.173069174999966, 49.232779796000095 ], [ -123.173075133999987, 49.23234154000005 ], [ -123.173081018999966, 49.231909993000031 ], [ -123.173103568999963, 49.23146022300007 ], [ -123.17312601199994, 49.231013205000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196821258", "BldgCostT": "123577103", "sL_LossRatio": "0.742010077967802", "sL_AssetLoss": "2081372", "sL_BldgLoss": "1544399", "sL_StrLoss": "695440", "sL_NStrLoss": "848959", "sL_ContLoss": "536973", "geom_point": "0101000020E610000082339E8C1ACB5EC0DF352A68419E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17303551099999, 49.238072603000049 ], [ -123.173051500999975, 49.237579495000034 ], [ -123.170255512999915, 49.237568303000074 ], [ -123.170257554999964, 49.237095013000051 ], [ -123.170259698999971, 49.236597415000077 ], [ -123.170258360999952, 49.236195481000088 ], [ -123.170256339000019, 49.235601810000077 ], [ -123.170253404999983, 49.234719206000086 ], [ -123.173066908999971, 49.234734392000099 ], [ -123.175754585999954, 49.234740900000091 ], [ -123.176728686999951, 49.234751118000069 ], [ -123.176717390999926, 49.236630615000145 ], [ -123.175834897999934, 49.236625504000067 ], [ -123.175828107999948, 49.237122571000043 ], [ -123.175821788999912, 49.237585392000021 ], [ -123.175812679999922, 49.238076037000042 ], [ -123.175803617999989, 49.238561299000068 ], [ -123.173020105, 49.238546892000066 ], [ -123.17303551099999, 49.238072603000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91678750", "BldgCostT": "59335000", "sL_LossRatio": "0.736287915921804", "sL_AssetLoss": "1109824", "sL_BldgLoss": "817150", "sL_StrLoss": "379907", "sL_NStrLoss": "437243", "sL_ContLoss": "292674", "geom_point": "0101000020E6100000B41E8D5C5ACB5EC0FFDA1387609E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17769710200001, 49.23475579400008 ], [ -123.178714714999913, 49.234760689 ], [ -123.178710334999892, 49.2352651160001 ], [ -123.178706682999945, 49.235682893000046 ], [ -123.178698020999917, 49.236195362000068 ], [ -123.17869449599999, 49.236404001000039 ], [ -123.178690095999968, 49.236633605000037 ], [ -123.178687908999947, 49.236851491000046 ], [ -123.17868545, 49.237019052000058 ], [ -123.17868113099999, 49.23731594500007 ], [ -123.178676208999903, 49.237652906000065 ], [ -123.17866803699998, 49.238089488000114 ], [ -123.178659190999923, 49.238564910000065 ], [ -123.178661537999986, 49.239034304000015 ], [ -123.17866388399996, 49.239504512000067 ], [ -123.178002249000016, 49.23949688800009 ], [ -123.177146388999944, 49.239487055000083 ], [ -123.175778472999923, 49.23947129400009 ], [ -123.17579042499996, 49.239038529000084 ], [ -123.175794235999959, 49.238901280000071 ], [ -123.175803617999989, 49.238561299000068 ], [ -123.175812679999922, 49.238076037000042 ], [ -123.175821788999912, 49.237585392000021 ], [ -123.175828107999948, 49.237122571000043 ], [ -123.175834897999934, 49.236625504000067 ], [ -123.176717390999926, 49.236630615000145 ], [ -123.176728686999951, 49.234751118000069 ], [ -123.177222276999899, 49.234753488000109 ], [ -123.17769710200001, 49.23475579400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110889833", "BldgCostT": "72143333", "sL_LossRatio": "0.723769425046447", "sL_AssetLoss": "1293948", "sL_BldgLoss": "936520", "sL_StrLoss": "433250", "sL_NStrLoss": "503270", "sL_ContLoss": "357428", "geom_point": "0101000020E61000000AEFF64903CB5EC002CCD7C0B19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170254393999954, 49.238532108000065 ], [ -123.170254950999961, 49.238048514000134 ], [ -123.170255512999915, 49.237568303000074 ], [ -123.173051500999975, 49.237579495000034 ], [ -123.17303551099999, 49.238072603000049 ], [ -123.173020105, 49.238546892000066 ], [ -123.175803617999989, 49.238561299000068 ], [ -123.175794235999959, 49.238901280000071 ], [ -123.17579042499996, 49.239038529000084 ], [ -123.175778472999923, 49.23947129400009 ], [ -123.173002484999969, 49.239466098000072 ], [ -123.173002415999918, 49.239969405000075 ], [ -123.173002396999919, 49.240438003000108 ], [ -123.172999250999936, 49.240940874000032 ], [ -123.17299660799999, 49.241366599000045 ], [ -123.172999526999916, 49.241876389000062 ], [ -123.173002212999918, 49.242334091000068 ], [ -123.170218824999921, 49.242335899000132 ], [ -123.170231601999916, 49.241844856000036 ], [ -123.170244392999962, 49.24135290600006 ], [ -123.170246468999935, 49.240873121000085 ], [ -123.170248386999958, 49.240432489000057 ], [ -123.170245693999959, 49.23994650100007 ], [ -123.170243016999933, 49.239461296000052 ], [ -123.17025136599996, 49.238778520000096 ], [ -123.170254393999954, 49.238532108000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117448166", "BldgCostT": "74366666", "sL_LossRatio": "0.726517398375404", "sL_AssetLoss": "1373634", "sL_BldgLoss": "997969", "sL_StrLoss": "477950", "sL_NStrLoss": "520019", "sL_ContLoss": "375665", "geom_point": "0101000020E61000004F3359B340CB5EC0910C3145D69E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178002249000016, 49.23949688800009 ], [ -123.17866388399996, 49.239504512000067 ], [ -123.178660335999922, 49.239987764000027 ], [ -123.178656898999989, 49.240455485000098 ], [ -123.178650739999966, 49.240950568000066 ], [ -123.178645224, 49.241392903000119 ], [ -123.178645624999916, 49.24235850400008 ], [ -123.177957716999956, 49.242357813000098 ], [ -123.176975844999916, 49.242356840000113 ], [ -123.175748476999928, 49.242355597000085 ], [ -123.173002212999918, 49.242334091000068 ], [ -123.172999526999916, 49.241876389000062 ], [ -123.17299660799999, 49.241366599000045 ], [ -123.172999250999936, 49.240940874000032 ], [ -123.173002396999919, 49.240438003000108 ], [ -123.173002415999918, 49.239969405000075 ], [ -123.173002484999969, 49.239466098000072 ], [ -123.175778472999923, 49.23947129400009 ], [ -123.177146388999944, 49.239487055000083 ], [ -123.178002249000016, 49.23949688800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188721744", "BldgCostT": "125259076", "sL_LossRatio": "0.731779705626077", "sL_AssetLoss": "1785756", "sL_BldgLoss": "1306780", "sL_StrLoss": "590080", "sL_NStrLoss": "716700", "sL_ContLoss": "478976", "geom_point": "0101000020E610000042A38D8640CB5EC02D6E7938439F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.177957716999956, 49.242357813000098 ], [ -123.178645624999916, 49.24235850400008 ], [ -123.178656829999966, 49.24284807600003 ], [ -123.178667020999981, 49.243293100000123 ], [ -123.178629113999975, 49.244255906000063 ], [ -123.178609183, 49.245192997000061 ], [ -123.178596102999947, 49.246153801000098 ], [ -123.177890346999945, 49.246147071000095 ], [ -123.176751171999967, 49.246136224000111 ], [ -123.175731892999949, 49.246126514000039 ], [ -123.172972183999917, 49.246119094000065 ], [ -123.172979326999922, 49.245663975000099 ], [ -123.172986878999922, 49.245179097000069 ], [ -123.172990355999929, 49.244719228000093 ], [ -123.172993994999942, 49.244228111000055 ], [ -123.17299759699992, 49.243765513 ], [ -123.173001383999974, 49.24327169000005 ], [ -123.173001787999965, 49.242811939000049 ], [ -123.173002212999918, 49.242334091000068 ], [ -123.175748476999928, 49.242355597000085 ], [ -123.176975844999916, 49.242356840000113 ], [ -123.177957716999956, 49.242357813000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96845084", "BldgCostT": "65053334", "sL_LossRatio": "0.736273713521163", "sL_AssetLoss": "1399887", "sL_BldgLoss": "1030700", "sL_StrLoss": "495220", "sL_NStrLoss": "535480", "sL_ContLoss": "369187", "geom_point": "0101000020E610000081783440EFCA5EC08E5E36CF4B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170218824999921, 49.242335899000132 ], [ -123.173002212999918, 49.242334091000068 ], [ -123.173001787999965, 49.242811939000049 ], [ -123.173001383999974, 49.24327169000005 ], [ -123.17299759699992, 49.243765513 ], [ -123.172993994999942, 49.244228111000055 ], [ -123.172990355999929, 49.244719228000093 ], [ -123.172986878999922, 49.245179097000069 ], [ -123.172979326999922, 49.245663975000099 ], [ -123.172972183999917, 49.246119094000065 ], [ -123.170963906999958, 49.246123386000093 ], [ -123.170207486999942, 49.246124988000133 ], [ -123.167897309999972, 49.246109402000066 ], [ -123.16790879899996, 49.245644228000124 ], [ -123.167920610999886, 49.245165083000067 ], [ -123.167911027999963, 49.244690123000098 ], [ -123.167901222999959, 49.24420079800008 ], [ -123.17019800199995, 49.244208912000076 ], [ -123.17020314299999, 49.243742606000097 ], [ -123.170208574999961, 49.243246291000091 ], [ -123.170213429999976, 49.242816151000099 ], [ -123.170218824999921, 49.242335899000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104165167", "BldgCostT": "69741667", "sL_LossRatio": "0.75133462649077", "sL_AssetLoss": "1181604", "sL_BldgLoss": "887780", "sL_StrLoss": "430720", "sL_NStrLoss": "457060", "sL_ContLoss": "293824", "geom_point": "0101000020E6100000D41BF7DE06CB5EC0F5A633419E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.172972183999917, 49.246119094000065 ], [ -123.175731892999949, 49.246126514000039 ], [ -123.175732952999923, 49.246630791000065 ], [ -123.175733885999989, 49.247085888000115 ], [ -123.175731280999983, 49.247575463000061 ], [ -123.175728907999897, 49.248026089000085 ], [ -123.172937413999961, 49.24802050400011 ], [ -123.170760684999905, 49.248020195000066 ], [ -123.170585086999921, 49.248039902000116 ], [ -123.170476287999989, 49.248091103000029 ], [ -123.170202615999969, 49.247939793000121 ], [ -123.169456651999951, 49.247527912000116 ], [ -123.169130471999907, 49.247347793000131 ], [ -123.168780500999958, 49.247052194000119 ], [ -123.168346668999959, 49.246589087000054 ], [ -123.167897309999972, 49.246109402000066 ], [ -123.170207486999942, 49.246124988000133 ], [ -123.170963906999958, 49.246123386000093 ], [ -123.172972183999917, 49.246119094000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273189374", "BldgCostT": "178668351", "sL_LossRatio": "0.760373485383506", "sL_AssetLoss": "2881505", "sL_BldgLoss": "2191020", "sL_StrLoss": "1034250", "sL_NStrLoss": "1156770", "sL_ContLoss": "690485", "geom_point": "0101000020E6100000F67794EFBECA5EC0F6F144CECA9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.165284390999886, 49.250061603000084 ], [ -123.165303380999916, 49.249577899 ], [ -123.165321506999973, 49.24911588700008 ], [ -123.165337618999942, 49.248660563000094 ], [ -123.165355515999934, 49.24815489900007 ], [ -123.165357141999891, 49.248066857000076 ], [ -123.165358479999938, 49.24799370700002 ], [ -123.16537071, 49.247518188000065 ], [ -123.165371141, 49.247500209000087 ], [ -123.165382392999959, 49.247062086000085 ], [ -123.165406896, 49.246645426000043 ], [ -123.165416493999956, 49.246481997000053 ], [ -123.165157288, 49.245786604000074 ], [ -123.166045307999966, 49.246147206000082 ], [ -123.166185182999939, 49.246105003000089 ], [ -123.167897309999972, 49.246109402000066 ], [ -123.168346668999959, 49.246589087000054 ], [ -123.168780500999958, 49.247052194000119 ], [ -123.169130471999907, 49.247347793000131 ], [ -123.169456651999951, 49.247527912000116 ], [ -123.170202615999969, 49.247939793000121 ], [ -123.170476287999989, 49.248091103000029 ], [ -123.170889476999903, 49.248408192000106 ], [ -123.171355004999938, 49.249004294000024 ], [ -123.17167568, 49.249414871000091 ], [ -123.17206660899997, 49.249915401000095 ], [ -123.172109837000022, 49.249971335000019 ], [ -123.172219315999939, 49.250112997000052 ], [ -123.171696707, 49.250080398000087 ], [ -123.171340390999944, 49.249999904000092 ], [ -123.171030481999935, 49.249902595000052 ], [ -123.169873204999988, 49.249287705000043 ], [ -123.170490807999926, 49.249992984000045 ], [ -123.170156928999944, 49.250107602000071 ], [ -123.169629518999969, 49.250086599000085 ], [ -123.167831796999948, 49.250062814000053 ], [ -123.165284390999886, 49.250061603000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140704499", "BldgCostT": "86339999", "sL_LossRatio": "0.66305889548199", "sL_AssetLoss": "3073920", "sL_BldgLoss": "2038190", "sL_StrLoss": "868790", "sL_NStrLoss": "1169400", "sL_ContLoss": "1035730", "geom_point": "0101000020E61000005F11150DC6CA5EC0A323FC6221A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.167831796999948, 49.250062814000053 ], [ -123.169629518999969, 49.250086599000085 ], [ -123.170156928999944, 49.250107602000071 ], [ -123.170490807999926, 49.249992984000045 ], [ -123.17063805399999, 49.250160634000103 ], [ -123.170859322999917, 49.250412509000078 ], [ -123.171008007999944, 49.250582455000028 ], [ -123.171375483999952, 49.251002494 ], [ -123.171762911999949, 49.251445029000088 ], [ -123.171877512, 49.25157590700006 ], [ -123.17228318, 49.251904491000076 ], [ -123.171849087999973, 49.251900370000115 ], [ -123.170128200999912, 49.251884004 ], [ -123.167809290999955, 49.251895206000086 ], [ -123.165263781999968, 49.251859006000132 ], [ -123.165258339999951, 49.251440709000093 ], [ -123.165252191999954, 49.250970494000043 ], [ -123.165268063999974, 49.250522547000109 ], [ -123.165284390999886, 49.250061603000084 ], [ -123.167831796999948, 49.250062814000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126231323", "BldgCostT": "85054361", "sL_LossRatio": "0.748073601968162", "sL_AssetLoss": "1861635", "sL_BldgLoss": "1392640", "sL_StrLoss": "677600", "sL_NStrLoss": "715040", "sL_ContLoss": "468995", "geom_point": "0101000020E61000006F0DB622BBCA5EC07E1BCD576AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.167809290999955, 49.251895206000086 ], [ -123.170128200999912, 49.251884004 ], [ -123.170139322999944, 49.252351297000061 ], [ -123.170150180999954, 49.252806897000085 ], [ -123.170130839999942, 49.253259529000111 ], [ -123.170111586999923, 49.253710202000093 ], [ -123.17010789499993, 49.254177155000029 ], [ -123.170104415999944, 49.254617101000065 ], [ -123.167774096999949, 49.254609989000102 ], [ -123.165881511999913, 49.254584435000048 ], [ -123.165162500999926, 49.254574715000032 ], [ -123.165196610999914, 49.253679409000028 ], [ -123.165212603999976, 49.253230948000109 ], [ -123.165229482999933, 49.252758807000085 ], [ -123.165245466999949, 49.252340548000056 ], [ -123.165263781999968, 49.251859006000132 ], [ -123.167809290999955, 49.251895206000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133889667", "BldgCostT": "87446667", "sL_LossRatio": "0.692399180592686", "sL_AssetLoss": "2816670", "sL_BldgLoss": "1950260", "sL_StrLoss": "872050", "sL_NStrLoss": "1078210", "sL_ContLoss": "866410", "geom_point": "0101000020E610000076E26A4BBACA5EC0C1BC4BD2CAA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.167774096999949, 49.254609989000102 ], [ -123.170104415999944, 49.254617101000065 ], [ -123.170099691999951, 49.25505879800005 ], [ -123.170094815, 49.255517502000011 ], [ -123.17009061, 49.255976321000048 ], [ -123.17008631099999, 49.256445095000039 ], [ -123.170082196999928, 49.256962912000112 ], [ -123.170149004999942, 49.257106894000067 ], [ -123.170389823, 49.257617601000071 ], [ -123.170423283000019, 49.257694474000068 ], [ -123.170462104999956, 49.257783501000119 ], [ -123.168368298999937, 49.257746594000054 ], [ -123.167510680999939, 49.257734389000078 ], [ -123.16649499499999, 49.257719895000101 ], [ -123.16549119699999, 49.257691710000103 ], [ -123.164926592999905, 49.257649004000029 ], [ -123.164925021999977, 49.257516507000034 ], [ -123.16500410699993, 49.257234011000016 ], [ -123.165056997999955, 49.257042607000116 ], [ -123.165061417999979, 49.256964670000073 ], [ -123.165093691999957, 49.256396904000141 ], [ -123.165128790999944, 49.255486192000021 ], [ -123.165162500999926, 49.254574715000032 ], [ -123.165881511999913, 49.254584435000048 ], [ -123.167774096999949, 49.254609989000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99777084", "BldgCostT": "67868334", "sL_LossRatio": "0.741021008127754", "sL_AssetLoss": "1676970", "sL_BldgLoss": "1242670", "sL_StrLoss": "569870", "sL_NStrLoss": "672800", "sL_ContLoss": "434300", "geom_point": "0101000020E6100000835650E619CB5EC0CB79AD21C4A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1728858, 49.253712702000058 ], [ -123.174472113000022, 49.253713694000041 ], [ -123.17500496599996, 49.254164167000042 ], [ -123.175042852999937, 49.254196213000071 ], [ -123.175076905999944, 49.254224995000079 ], [ -123.175399612999954, 49.254632402000034 ], [ -123.17577683799999, 49.25510395 ], [ -123.17612971199999, 49.255545008000063 ], [ -123.176227892000014, 49.255669196000028 ], [ -123.178221, 49.257179587000103 ], [ -123.178156692999949, 49.257288712000097 ], [ -123.178133482999939, 49.257454084000095 ], [ -123.178093668, 49.257737397000064 ], [ -123.178092423999885, 49.257808567000083 ], [ -123.178090786999931, 49.257897706000087 ], [ -123.176162781999963, 49.2578687090001 ], [ -123.176149008999943, 49.257868495000018 ], [ -123.174866797999954, 49.257846354000016 ], [ -123.174277500999949, 49.257836149000099 ], [ -123.174222508999918, 49.257835198000052 ], [ -123.173000926999947, 49.257820699000071 ], [ -123.1722762099999, 49.257812081000125 ], [ -123.170462104999956, 49.257783501000119 ], [ -123.170423283000019, 49.257694474000068 ], [ -123.170389823, 49.257617601000071 ], [ -123.170149004999942, 49.257106894000067 ], [ -123.170082196999928, 49.256962912000112 ], [ -123.17008631099999, 49.256445095000039 ], [ -123.17009061, 49.255976321000048 ], [ -123.170094815, 49.255517502000011 ], [ -123.170099691999951, 49.25505879800005 ], [ -123.170104415999944, 49.254617101000065 ], [ -123.17010789499993, 49.254177155000029 ], [ -123.170111586999923, 49.253710202000093 ], [ -123.1728858, 49.253712702000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137744939", "BldgCostT": "89950825", "sL_LossRatio": "0.733109646924456", "sL_AssetLoss": "1618039", "sL_BldgLoss": "1186200", "sL_StrLoss": "582740", "sL_NStrLoss": "603460", "sL_ContLoss": "431839", "geom_point": "0101000020E61000005E5352ED34CB5EC01F9163A97DA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17500496599996, 49.254164167000042 ], [ -123.174472113000022, 49.253713694000041 ], [ -123.1728858, 49.253712702000058 ], [ -123.170111586999923, 49.253710202000093 ], [ -123.170130839999942, 49.253259529000111 ], [ -123.170150180999954, 49.252806897000085 ], [ -123.170139322999944, 49.252351297000061 ], [ -123.170128200999912, 49.251884004 ], [ -123.171849087999973, 49.251900370000115 ], [ -123.17228318, 49.251904491000076 ], [ -123.173188297999914, 49.252084001000057 ], [ -123.173643369999979, 49.252250691000071 ], [ -123.17521961199999, 49.252828094000073 ], [ -123.175536493999942, 49.252833139000117 ], [ -123.175658676999944, 49.252835099 ], [ -123.176352902999952, 49.252834816000082 ], [ -123.177088464999954, 49.252834490000083 ], [ -123.177899194999938, 49.252834119000092 ], [ -123.178076353999984, 49.252834020000087 ], [ -123.178570395999969, 49.252833791000036 ], [ -123.178564238, 49.253292012000081 ], [ -123.178558317999915, 49.253732407000022 ], [ -123.178549591999982, 49.254644585000079 ], [ -123.17853050199993, 49.256200511000038 ], [ -123.178549000999951, 49.25659638700008 ], [ -123.178443906999945, 49.256783211000062 ], [ -123.178221, 49.257179587000103 ], [ -123.176227892000014, 49.255669196000028 ], [ -123.17612971199999, 49.255545008000063 ], [ -123.17577683799999, 49.25510395 ], [ -123.175399612999954, 49.254632402000034 ], [ -123.175076905999944, 49.254224995000079 ], [ -123.175042852999937, 49.254196213000071 ], [ -123.17500496599996, 49.254164167000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129864001", "BldgCostT": "84495001", "sL_LossRatio": "0.735829728621954", "sL_AssetLoss": "1617559", "sL_BldgLoss": "1190248", "sL_StrLoss": "551940", "sL_NStrLoss": "638308", "sL_ContLoss": "427311", "geom_point": "0101000020E6100000C985B12236CB5EC0DE6A42FF29A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17063805399999, 49.250160634000103 ], [ -123.170490807999926, 49.249992984000045 ], [ -123.169873204999988, 49.249287705000043 ], [ -123.171030481999935, 49.249902595000052 ], [ -123.171340390999944, 49.249999904000092 ], [ -123.171696707, 49.250080398000087 ], [ -123.172219315999939, 49.250112997000052 ], [ -123.172233041999959, 49.250112994000062 ], [ -123.172886646, 49.250112447000092 ], [ -123.175677594999954, 49.250110017000111 ], [ -123.17651459599989, 49.250115562000083 ], [ -123.177944414999928, 49.250125050000115 ], [ -123.178121669999925, 49.250126226000049 ], [ -123.178631812999924, 49.250129583000074 ], [ -123.178610239999927, 49.250603805 ], [ -123.178590909999912, 49.25102929400002 ], [ -123.17858180399999, 49.25192429499999 ], [ -123.178570395999969, 49.252833791000036 ], [ -123.178076353999984, 49.252834020000087 ], [ -123.177899194999938, 49.252834119000092 ], [ -123.177088464999954, 49.252834490000083 ], [ -123.176352902999952, 49.252834816000082 ], [ -123.175658676999944, 49.252835099 ], [ -123.175536493999942, 49.252833139000117 ], [ -123.17521961199999, 49.252828094000073 ], [ -123.173643369999979, 49.252250691000071 ], [ -123.173188297999914, 49.252084001000057 ], [ -123.17228318, 49.251904491000076 ], [ -123.171877512, 49.25157590700006 ], [ -123.171762911999949, 49.251445029000088 ], [ -123.171375483999952, 49.251002494 ], [ -123.171008007999944, 49.250582455000028 ], [ -123.170859322999917, 49.250412509000078 ], [ -123.17063805399999, 49.250160634000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184664783", "BldgCostT": "124590546", "sL_LossRatio": "0.769402981113886", "sL_AssetLoss": "2072581", "sL_BldgLoss": "1594650", "sL_StrLoss": "720080", "sL_NStrLoss": "874570", "sL_ContLoss": "477931", "geom_point": "0101000020E6100000AA39D44A3CCB5EC05C2E9764CF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.177890346999945, 49.246147071000095 ], [ -123.178596102999947, 49.246153801000098 ], [ -123.178584509999951, 49.247068597000101 ], [ -123.178597721999907, 49.24760681700009 ], [ -123.178608178999951, 49.248033896000017 ], [ -123.178592489999971, 49.248524490000115 ], [ -123.178577600999944, 49.24898880300006 ], [ -123.178607654999908, 49.24947734400007 ], [ -123.178636293999915, 49.249942396000094 ], [ -123.178633821999938, 49.25004536400008 ], [ -123.178631812999924, 49.250129583000074 ], [ -123.178121669999925, 49.250126226000049 ], [ -123.177944414999928, 49.250125050000115 ], [ -123.17651459599989, 49.250115562000083 ], [ -123.175677594999954, 49.250110017000111 ], [ -123.172886646, 49.250112447000092 ], [ -123.172233041999959, 49.250112994000062 ], [ -123.172219315999939, 49.250112997000052 ], [ -123.172109837000022, 49.249971335000019 ], [ -123.17206660899997, 49.249915401000095 ], [ -123.17167568, 49.249414871000091 ], [ -123.171355004999938, 49.249004294000024 ], [ -123.170889476999903, 49.248408192000106 ], [ -123.170476287999989, 49.248091103000029 ], [ -123.170585086999921, 49.248039902000116 ], [ -123.170760684999905, 49.248020195000066 ], [ -123.172937413999961, 49.24802050400011 ], [ -123.175728907999897, 49.248026089000085 ], [ -123.175731280999983, 49.247575463000061 ], [ -123.175733885999989, 49.247085888000115 ], [ -123.175732952999923, 49.246630791000065 ], [ -123.175731892999949, 49.246126514000039 ], [ -123.176751171999967, 49.246136224000111 ], [ -123.177890346999945, 49.246147071000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195559531", "BldgCostT": "128828603", "sL_LossRatio": "0.7603112276085", "sL_AssetLoss": "1930420", "sL_BldgLoss": "1467720", "sL_StrLoss": "699480", "sL_NStrLoss": "768240", "sL_ContLoss": "462700", "geom_point": "0101000020E6100000E7375D60A0CB5EC0AB337C13DCA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17853050199993, 49.256200511000038 ], [ -123.178549591999982, 49.254644585000079 ], [ -123.179206104999963, 49.25464370100012 ], [ -123.179217398999981, 49.255107764000051 ], [ -123.17922850399998, 49.25556311100005 ], [ -123.181842111999984, 49.255565608 ], [ -123.184464092999974, 49.255567370000094 ], [ -123.185135602999978, 49.255567809000127 ], [ -123.185128605999978, 49.256476490000097 ], [ -123.185126024999988, 49.257356396000091 ], [ -123.185121399999957, 49.257839908000037 ], [ -123.185113902999916, 49.258009084 ], [ -123.184013509999915, 49.257989408000128 ], [ -123.182070104999951, 49.25796388800007 ], [ -123.181785832999978, 49.25795980500007 ], [ -123.180696618999903, 49.257944103000064 ], [ -123.179990985999922, 49.257933917000059 ], [ -123.178104595999955, 49.257897966000016 ], [ -123.178090786999931, 49.257897706000087 ], [ -123.178092423999885, 49.257808567000083 ], [ -123.178093668, 49.257737397000064 ], [ -123.178133482999939, 49.257454084000095 ], [ -123.178156692999949, 49.257288712000097 ], [ -123.178221, 49.257179587000103 ], [ -123.178443906999945, 49.256783211000062 ], [ -123.178549000999951, 49.25659638700008 ], [ -123.17853050199993, 49.256200511000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119740584", "BldgCostT": "78953334", "sL_LossRatio": "0.715728234585055", "sL_AssetLoss": "1901434", "sL_BldgLoss": "1360910", "sL_StrLoss": "618520", "sL_NStrLoss": "742390", "sL_ContLoss": "540524", "geom_point": "0101000020E6100000372A684185CB5EC03F6E64C33FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181785832999978, 49.25795980500007 ], [ -123.182070104999951, 49.25796388800007 ], [ -123.182053338999978, 49.258422676000066 ], [ -123.182036981999957, 49.258869995000168 ], [ -123.182021842, 49.259340556000012 ], [ -123.182007517000017, 49.259785296000118 ], [ -123.181992505999972, 49.26023083300003 ], [ -123.181976682999945, 49.260699591000012 ], [ -123.18196781899999, 49.261138974000033 ], [ -123.18195820899993, 49.261615095000124 ], [ -123.180706473999962, 49.261592387000078 ], [ -123.179924696999961, 49.261578210000039 ], [ -123.179208525999982, 49.261560784000011 ], [ -123.17791930599995, 49.26152940000005 ], [ -123.177941891, 49.261064703000088 ], [ -123.177962908000026, 49.26063248 ], [ -123.177984248999948, 49.260165507000082 ], [ -123.178004495999957, 49.259722992000029 ], [ -123.178025380999941, 49.259265692000035 ], [ -123.178046190999979, 49.25881069800004 ], [ -123.17806700599999, 49.258384822000046 ], [ -123.178090786999931, 49.257897706000087 ], [ -123.178104595999955, 49.257897966000016 ], [ -123.179990985999922, 49.257933917000059 ], [ -123.180696618999903, 49.257944103000064 ], [ -123.181785832999978, 49.25795980500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123954000", "BldgCostT": "77415000", "sL_LossRatio": "0.67544375796803", "sL_AssetLoss": "2243340", "sL_BldgLoss": "1515250", "sL_StrLoss": "650840", "sL_NStrLoss": "864410", "sL_ContLoss": "728090", "geom_point": "0101000020E6100000A3C123E0C6CB5EC0142E9A8441A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185113902999916, 49.258009084 ], [ -123.186091200999925, 49.258021080000049 ], [ -123.186073042999965, 49.258497589000115 ], [ -123.18605651899999, 49.258931705000045 ], [ -123.186038069999967, 49.259415205000096 ], [ -123.18602161099993, 49.259846791 ], [ -123.186003870000022, 49.260287640000087 ], [ -123.185986402999973, 49.260722295000043 ], [ -123.185990779999941, 49.260809883000029 ], [ -123.185944160999924, 49.261389307000101 ], [ -123.1859307799999, 49.261562887000103 ], [ -123.185915216999902, 49.261668800000059 ], [ -123.183925576999968, 49.261633196000062 ], [ -123.18195820899993, 49.261615095000124 ], [ -123.18196781899999, 49.261138974000033 ], [ -123.181976682999945, 49.260699591000012 ], [ -123.181992505999972, 49.26023083300003 ], [ -123.182007517000017, 49.259785296000118 ], [ -123.182021842, 49.259340556000012 ], [ -123.182036981999957, 49.258869995000168 ], [ -123.182053338999978, 49.258422676000066 ], [ -123.182070104999951, 49.25796388800007 ], [ -123.184013509999915, 49.257989408000128 ], [ -123.185113902999916, 49.258009084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213122895", "BldgCostT": "135106524", "sL_LossRatio": "0.704569667317589", "sL_AssetLoss": "4214530", "sL_BldgLoss": "2969430", "sL_StrLoss": "1308830", "sL_NStrLoss": "1660600", "sL_ContLoss": "1245100", "geom_point": "0101000020E6100000421D3D1BC5CB5EC0C966A3ADA9A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.183925576999968, 49.261633196000062 ], [ -123.185915216999902, 49.261668800000059 ], [ -123.18591812899993, 49.26211363600008 ], [ -123.185920986999975, 49.262547197000039 ], [ -123.185910115999931, 49.263003994000037 ], [ -123.18590736499999, 49.263118629000125 ], [ -123.185898693999945, 49.263481501000093 ], [ -123.185888588999944, 49.263939723000107 ], [ -123.185879119, 49.264369999000046 ], [ -123.183784890999974, 49.264336106000052 ], [ -123.181856679999925, 49.264303802000057 ], [ -123.181870103, 49.263874109000106 ], [ -123.181884183999969, 49.263420900000021 ], [ -123.18190045599999, 49.262946755000023 ], [ -123.181916211999962, 49.262487704000172 ], [ -123.181937430999938, 49.262046580000117 ], [ -123.18195820899993, 49.261615095000124 ], [ -123.183925576999968, 49.261633196000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137783751", "BldgCostT": "89330001", "sL_LossRatio": "0.71120281660515", "sL_AssetLoss": "1996730", "sL_BldgLoss": "1420080", "sL_StrLoss": "616540", "sL_NStrLoss": "803540", "sL_ContLoss": "576650", "geom_point": "0101000020E6100000FD25C19F0ACC5EC0B43E728C60A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18602161099993, 49.259846791 ], [ -123.186038069999967, 49.259415205000096 ], [ -123.18605651899999, 49.258931705000045 ], [ -123.186073042999965, 49.258497589000115 ], [ -123.186091200999925, 49.258021080000049 ], [ -123.188007902999985, 49.258033192000063 ], [ -123.187990345999935, 49.258530101000105 ], [ -123.187975103999989, 49.258960099000021 ], [ -123.187958317, 49.259438527000107 ], [ -123.187956981999946, 49.25947649800009 ], [ -123.187943001999969, 49.259875293000093 ], [ -123.190996414999987, 49.259923314000048 ], [ -123.190978558999959, 49.260359933000124 ], [ -123.190959401999947, 49.260829288000131 ], [ -123.190924243999959, 49.261294193000033 ], [ -123.190890196999973, 49.26174440800002 ], [ -123.190884299999979, 49.262177181000048 ], [ -123.190878181999949, 49.262624099000092 ], [ -123.187847893999987, 49.262577601000018 ], [ -123.185920986999975, 49.262547197000039 ], [ -123.18591812899993, 49.26211363600008 ], [ -123.185915216999902, 49.261668800000059 ], [ -123.1859307799999, 49.261562887000103 ], [ -123.185944160999924, 49.261389307000101 ], [ -123.185990779999941, 49.260809883000029 ], [ -123.185986402999973, 49.260722295000043 ], [ -123.186003870000022, 49.260287640000087 ], [ -123.18602161099993, 49.259846791 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289178074", "BldgCostT": "186622903", "sL_LossRatio": "0.728491052277747", "sL_AssetLoss": "2498960", "sL_BldgLoss": "1820470", "sL_StrLoss": "862250", "sL_NStrLoss": "958220", "sL_ContLoss": "678490", "geom_point": "0101000020E61000009E67372318CC5EC01E0B5410CDA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.187847893999987, 49.262577601000018 ], [ -123.190878181999949, 49.262624099000092 ], [ -123.190860214999958, 49.263085829000069 ], [ -123.190858683999963, 49.263124482000059 ], [ -123.190841004999925, 49.263578786000025 ], [ -123.190895473999888, 49.263698198000128 ], [ -123.191118393999901, 49.263874203000043 ], [ -123.19164946799998, 49.264066584 ], [ -123.192624016999901, 49.264419592000102 ], [ -123.193222711999979, 49.264673912000035 ], [ -123.19336538, 49.264811790000117 ], [ -123.193414199999907, 49.265095894000119 ], [ -123.193359700999949, 49.265270095000105 ], [ -123.193273004000034, 49.265317410000137 ], [ -123.193163221999896, 49.265338802000109 ], [ -123.191703081999904, 49.26531849000002 ], [ -123.191150893999946, 49.26531081400001 ], [ -123.187733123, 49.265263198000078 ], [ -123.185828701999952, 49.26524688600005 ], [ -123.185852097999913, 49.264839415000026 ], [ -123.185879119, 49.264369999000046 ], [ -123.185888588999944, 49.263939723000107 ], [ -123.185898693999945, 49.263481501000093 ], [ -123.18590736499999, 49.263118629000125 ], [ -123.185910115999931, 49.263003994000037 ], [ -123.185920986999975, 49.262547197000039 ], [ -123.187847893999987, 49.262577601000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124665978", "BldgCostT": "79459857", "sL_LossRatio": "0.721833949512771", "sL_AssetLoss": "1603970", "sL_BldgLoss": "1157800", "sL_StrLoss": "531090", "sL_NStrLoss": "626710", "sL_ContLoss": "446170", "geom_point": "0101000020E61000007DC39681B7CA5EC0DE3AE6D9389F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.167946290999964, 49.242290601000022 ], [ -123.170218824999921, 49.242335899000132 ], [ -123.170213429999976, 49.242816151000099 ], [ -123.170208574999961, 49.243246291000091 ], [ -123.17020314299999, 49.243742606000097 ], [ -123.17019800199995, 49.244208912000076 ], [ -123.167901222999959, 49.24420079800008 ], [ -123.167911027999963, 49.244690123000098 ], [ -123.167920610999886, 49.245165083000067 ], [ -123.16790879899996, 49.245644228000124 ], [ -123.167897309999972, 49.246109402000066 ], [ -123.166185182999939, 49.246105003000089 ], [ -123.166045307999966, 49.246147206000082 ], [ -123.165157288, 49.245786604000074 ], [ -123.165486014999914, 49.244781393000025 ], [ -123.165492682999982, 49.244676003000066 ], [ -123.165524512, 49.244174409000074 ], [ -123.165541527, 49.243722597000051 ], [ -123.165559984999945, 49.243233198000041 ], [ -123.165573521999988, 49.242804898000031 ], [ -123.165589591999932, 49.242298104000028 ], [ -123.167946290999964, 49.242290601000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104085534", "BldgCostT": "68160547", "sL_LossRatio": "0.722736017141849", "sL_AssetLoss": "1365547", "sL_BldgLoss": "986930", "sL_StrLoss": "439960", "sL_NStrLoss": "546970", "sL_ContLoss": "378617", "geom_point": "0101000020E610000022F6B6576ECA5EC0DC20EE450F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160172591999967, 49.242367312000091 ], [ -123.16013819599999, 49.242210488000069 ], [ -123.159651197999978, 49.242203994000093 ], [ -123.159668466999932, 49.241743164000084 ], [ -123.159685976999981, 49.241275393000109 ], [ -123.159703665, 49.240798312000081 ], [ -123.159721821999966, 49.240308901000049 ], [ -123.16254021099999, 49.24036240000013 ], [ -123.162508330999955, 49.24084855700012 ], [ -123.16247859799995, 49.241302015000045 ], [ -123.165627897999983, 49.241334400000071 ], [ -123.16560877799995, 49.241815364000047 ], [ -123.165589591999932, 49.242298104000028 ], [ -123.165573521999988, 49.242804898000031 ], [ -123.165559984999945, 49.243233198000041 ], [ -123.165541527, 49.243722597000051 ], [ -123.165524512, 49.244174409000074 ], [ -123.165492682999982, 49.244676003000066 ], [ -123.165486014999914, 49.244781393000025 ], [ -123.165157288, 49.245786604000074 ], [ -123.164035937, 49.245331222000026 ], [ -123.163583811999928, 49.245147596000031 ], [ -123.163377505999961, 49.2450178080001 ], [ -123.16307331099992, 49.244737805000049 ], [ -123.163022142999964, 49.244630072000064 ], [ -123.162866166999891, 49.244301676000092 ], [ -123.162799489999912, 49.244161283000039 ], [ -123.162635686999977, 49.244122808000029 ], [ -123.162215400999912, 49.243877507 ], [ -123.161625222999945, 49.243449438 ], [ -123.160279986999967, 49.242473690000047 ], [ -123.160172591999967, 49.242367312000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180029583", "BldgCostT": "120153333", "sL_LossRatio": "0.765783784754867", "sL_AssetLoss": "1669910", "sL_BldgLoss": "1278790", "sL_StrLoss": "615180", "sL_NStrLoss": "663610", "sL_ContLoss": "391120", "geom_point": "0101000020E610000036D9D4B3BFCA5EC093C469F3C59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168069291999956, 49.238519709000045 ], [ -123.170254393999954, 49.238532108000065 ], [ -123.17025136599996, 49.238778520000096 ], [ -123.170243016999933, 49.239461296000052 ], [ -123.170245693999959, 49.23994650100007 ], [ -123.170248386999958, 49.240432489000057 ], [ -123.170246468999935, 49.240873121000085 ], [ -123.170244392999962, 49.24135290600006 ], [ -123.170231601999916, 49.241844856000036 ], [ -123.170218824999921, 49.242335899000132 ], [ -123.167946290999964, 49.242290601000022 ], [ -123.165589591999932, 49.242298104000028 ], [ -123.16560877799995, 49.241815364000047 ], [ -123.165627897999983, 49.241334400000071 ], [ -123.165643524999908, 49.240906477000166 ], [ -123.165662715999957, 49.240381406000061 ], [ -123.165679251999933, 49.23992591600004 ], [ -123.165696896999961, 49.239440104000067 ], [ -123.165714783999988, 49.238972062000066 ], [ -123.16572377499989, 49.23873731 ], [ -123.165733688000032, 49.238477289000095 ], [ -123.168069291999956, 49.238519709000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100064417", "BldgCostT": "62641667", "sL_LossRatio": "0.750442086369583", "sL_AssetLoss": "791135", "sL_BldgLoss": "593701", "sL_StrLoss": "315037", "sL_NStrLoss": "278664", "sL_ContLoss": "197434", "geom_point": "0101000020E610000021A2B15962CA5EC0EBEDF053AC9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162508330999955, 49.24084855700012 ], [ -123.16254021099999, 49.24036240000013 ], [ -123.159721821999966, 49.240308901000049 ], [ -123.157718590999963, 49.240284990000127 ], [ -123.157917134999948, 49.239799451000067 ], [ -123.1581256, 49.239289513000116 ], [ -123.158285650999943, 49.238841604000051 ], [ -123.158347058999951, 49.238669812000104 ], [ -123.158387416999929, 49.238556896000091 ], [ -123.158396307999951, 49.238343695000069 ], [ -123.159792408999962, 49.238369692000042 ], [ -123.161218811999916, 49.238395508000089 ], [ -123.16260669499999, 49.238420294000036 ], [ -123.164053598999942, 49.238447596000128 ], [ -123.165733688000032, 49.238477289000095 ], [ -123.16572377499989, 49.23873731 ], [ -123.165714783999988, 49.238972062000066 ], [ -123.165696896999961, 49.239440104000067 ], [ -123.165679251999933, 49.23992591600004 ], [ -123.165662715999957, 49.240381406000061 ], [ -123.165643524999908, 49.240906477000166 ], [ -123.165627897999983, 49.241334400000071 ], [ -123.16247859799995, 49.241302015000045 ], [ -123.162508330999955, 49.24084855700012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96402874", "BldgCostT": "62271381", "sL_LossRatio": "0.712935338198213", "sL_AssetLoss": "1242511", "sL_BldgLoss": "885830", "sL_StrLoss": "415860", "sL_NStrLoss": "469970", "sL_ContLoss": "356681", "geom_point": "0101000020E6100000032BA1FDC0CA5EC05FFEBFC1499E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16884988, 49.234724367000112 ], [ -123.170253404999983, 49.234719206000086 ], [ -123.170256339000019, 49.235601810000077 ], [ -123.170258360999952, 49.236195481000088 ], [ -123.170259698999971, 49.236597415000077 ], [ -123.170257554999964, 49.237095013000051 ], [ -123.170255512999915, 49.237568303000074 ], [ -123.170254950999961, 49.238048514000134 ], [ -123.170254393999954, 49.238532108000065 ], [ -123.168069291999956, 49.238519709000045 ], [ -123.165733688000032, 49.238477289000095 ], [ -123.165749802999969, 49.238027493000139 ], [ -123.165766909999917, 49.23755039200006 ], [ -123.16578008299993, 49.237091944000035 ], [ -123.16579488399999, 49.236574691000044 ], [ -123.165832092999906, 49.234729188000131 ], [ -123.167394378999958, 49.234729694000123 ], [ -123.168575036999982, 49.234725364000084 ], [ -123.16884988, 49.234724367000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132971250", "BldgCostT": "86340000", "sL_LossRatio": "0.700318627274782", "sL_AssetLoss": "2503866", "sL_BldgLoss": "1753504", "sL_StrLoss": "759024", "sL_NStrLoss": "994480", "sL_ContLoss": "750362", "geom_point": "0101000020E61000001DF2F01A4BCA5EC041938AE7E89B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161332878999943, 49.222452290000028 ], [ -123.160833207999985, 49.222409404000096 ], [ -123.160379604999946, 49.222441595000127 ], [ -123.159946202999933, 49.22239151500002 ], [ -123.159679089999926, 49.222315995000088 ], [ -123.159199309999948, 49.222105204000094 ], [ -123.15892521799999, 49.221962792000085 ], [ -123.158806099999978, 49.221890309000038 ], [ -123.158668487999989, 49.221738991000052 ], [ -123.158557577999929, 49.221488304000083 ], [ -123.158542613999927, 49.219535102000073 ], [ -123.158037819999947, 49.219598302000094 ], [ -123.157374630999982, 49.219580462000096 ], [ -123.156462093999949, 49.219555917000065 ], [ -123.154515009999955, 49.219571101000057 ], [ -123.152949616999962, 49.219539707000095 ], [ -123.15245199099995, 49.219530206000044 ], [ -123.151798534999912, 49.219508270000063 ], [ -123.151757415999938, 49.219506890000019 ], [ -123.151063213999961, 49.219483587000099 ], [ -123.151079079999974, 49.219113919000151 ], [ -123.151162093, 49.217178392000122 ], [ -123.15119174599999, 49.216613468000041 ], [ -123.151219114999932, 49.216091702000092 ], [ -123.151233869999928, 49.215587343999985 ], [ -123.151234153999951, 49.215577239000041 ], [ -123.151247887999915, 49.215107895000081 ], [ -123.15391369299999, 49.215136037000057 ], [ -123.15405746499998, 49.21513755000008 ], [ -123.154422799999963, 49.215141394000106 ], [ -123.155458291999963, 49.214575550000042 ], [ -123.154866589999969, 49.213608481000051 ], [ -123.155224988, 49.210894603000057 ], [ -123.155399878999972, 49.210122330000054 ], [ -123.155467324999933, 49.210122239000043 ], [ -123.155496222999957, 49.210140144000036 ], [ -123.155497012999945, 49.210392058000103 ], [ -123.155901924, 49.21039151300009 ], [ -123.156479399999967, 49.210749302000046 ], [ -123.156730560999975, 49.210934654000056 ], [ -123.156766852, 49.210961439000137 ], [ -123.156837509999946, 49.211013584000106 ], [ -123.157042736, 49.211165037000107 ], [ -123.158268503999977, 49.212069594000056 ], [ -123.159932989999973, 49.212912709000094 ], [ -123.161005092999957, 49.213334209000045 ], [ -123.163905602999975, 49.214220087000093 ], [ -123.16426728, 49.214347817000018 ], [ -123.164950143999974, 49.214588993000092 ], [ -123.164984628999946, 49.214601171000069 ], [ -123.164984945999919, 49.214696634000077 ], [ -123.165253871999965, 49.214696251000106 ], [ -123.166393805, 49.215098787000166 ], [ -123.16663425199999, 49.215166084000096 ], [ -123.166634479999942, 49.215233983000147 ], [ -123.166875606999938, 49.21523363500004 ], [ -123.167229850999902, 49.215332782000118 ], [ -123.16807094499994, 49.215568156000103 ], [ -123.16804362499991, 49.215750131000107 ], [ -123.167987506999964, 49.216152656000119 ], [ -123.168252329999959, 49.220307068000132 ], [ -123.168354777999966, 49.221393926000118 ], [ -123.168350507999918, 49.221507776000088 ], [ -123.168298251999943, 49.222905729000104 ], [ -123.168306193999953, 49.222952274000143 ], [ -123.168374003999944, 49.223351785000041 ], [ -123.168700386999944, 49.224346691000044 ], [ -123.168720598999968, 49.224435491000037 ], [ -123.168800004, 49.224784402000026 ], [ -123.168784722999973, 49.225057798000101 ], [ -123.168781860999928, 49.225066709000025 ], [ -123.168669404999946, 49.225417785000069 ], [ -123.168416219, 49.225788604000066 ], [ -123.168090808999935, 49.225632297000139 ], [ -123.167575910999972, 49.225500804000056 ], [ -123.166440602999955, 49.225323201000059 ], [ -123.166162892999949, 49.225255959000016 ], [ -123.166002305999939, 49.225217089000076 ], [ -123.165607902999938, 49.225044596000018 ], [ -123.163983995999956, 49.224215498000078 ], [ -123.162762581999957, 49.223066409000111 ], [ -123.162459593999984, 49.222880990000085 ], [ -123.161595799999958, 49.22252948200007 ], [ -123.161332878999943, 49.222452290000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107171834", "BldgCostT": "73438334", "sL_LossRatio": "0.732725950028668", "sL_AssetLoss": "2296957", "sL_BldgLoss": "1683040", "sL_StrLoss": "731000", "sL_NStrLoss": "952040", "sL_ContLoss": "613917", "geom_point": "0101000020E61000006FDF484508CA5EC08190660B8C9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154515009999955, 49.219571101000057 ], [ -123.156462093999949, 49.219555917000065 ], [ -123.157374630999982, 49.219580462000096 ], [ -123.158037819999947, 49.219598302000094 ], [ -123.158542613999927, 49.219535102000073 ], [ -123.158557577999929, 49.221488304000083 ], [ -123.158668487999989, 49.221738991000052 ], [ -123.158806099999978, 49.221890309000038 ], [ -123.15892521799999, 49.221962792000085 ], [ -123.159199309999948, 49.222105204000094 ], [ -123.159025721999924, 49.222295198000019 ], [ -123.159044104999964, 49.222891996000037 ], [ -123.159039148999923, 49.223052288000147 ], [ -123.159025015999987, 49.223511257000034 ], [ -123.158979829999979, 49.224977630000055 ], [ -123.158978602, 49.225017006 ], [ -123.157772407999971, 49.225011287 ], [ -123.157747159999957, 49.225455223000068 ], [ -123.157673063999965, 49.226759384000076 ], [ -123.157648383999927, 49.227193293000013 ], [ -123.156331319999978, 49.227182893000133 ], [ -123.155806302999949, 49.227172107000065 ], [ -123.155104307999963, 49.227157704000071 ], [ -123.155212382999949, 49.224989689000033 ], [ -123.155242341999923, 49.224395512000072 ], [ -123.155260016999947, 49.22404447200006 ], [ -123.155320390999975, 49.222846012000069 ], [ -123.155153613999971, 49.222499300000045 ], [ -123.154977200999923, 49.222354101000079 ], [ -123.154610391999967, 49.222157992000071 ], [ -123.154444989999945, 49.221856394000064 ], [ -123.154443186999927, 49.221705891000084 ], [ -123.154497270999968, 49.220098231000101 ], [ -123.154515009999955, 49.219571101000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111613417", "BldgCostT": "75081667", "sL_LossRatio": "0.723996940865632", "sL_AssetLoss": "2398064", "sL_BldgLoss": "1736191", "sL_StrLoss": "744659", "sL_NStrLoss": "991532", "sL_ContLoss": "661873", "geom_point": "0101000020E6100000B6108176C9C95EC0E143055E989C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150510306999962, 49.219480698000062 ], [ -123.151063213999961, 49.219483587000099 ], [ -123.151757415999938, 49.219506890000019 ], [ -123.151798534999912, 49.219508270000063 ], [ -123.15245199099995, 49.219530206000044 ], [ -123.152949616999962, 49.219539707000095 ], [ -123.154515009999955, 49.219571101000057 ], [ -123.154497270999968, 49.220098231000101 ], [ -123.154443186999927, 49.221705891000084 ], [ -123.154444989999945, 49.221856394000064 ], [ -123.154610391999967, 49.222157992000071 ], [ -123.154977200999923, 49.222354101000079 ], [ -123.155153613999971, 49.222499300000045 ], [ -123.155320390999975, 49.222846012000069 ], [ -123.155260016999947, 49.22404447200006 ], [ -123.155242341999923, 49.224395512000072 ], [ -123.155212382999949, 49.224989689000033 ], [ -123.155104307999963, 49.227157704000071 ], [ -123.154802543999921, 49.227154387000105 ], [ -123.154742409999983, 49.227153728000047 ], [ -123.154514380999899, 49.227151196000129 ], [ -123.153112614999955, 49.227137282000065 ], [ -123.152329107999932, 49.227129497000114 ], [ -123.151533072999911, 49.227121582000045 ], [ -123.150910616999937, 49.22711541200006 ], [ -123.150956084999962, 49.225792495000086 ], [ -123.151006390999967, 49.224212091000091 ], [ -123.151086491999976, 49.221833409000055 ], [ -123.151099402999961, 49.221398705000098 ], [ -123.150344385999944, 49.220137549000079 ], [ -123.150245727999931, 49.219972766000041 ], [ -123.149950396999941, 49.219479419 ], [ -123.150099577999924, 49.21947974800004 ], [ -123.150224240999933, 49.219480046000037 ], [ -123.150287274999982, 49.219480181000087 ], [ -123.150510306999962, 49.219480698000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99167500", "BldgCostT": "67600000", "sL_LossRatio": "0.772111649810425", "sL_AssetLoss": "1078730", "sL_BldgLoss": "832900", "sL_StrLoss": "447780", "sL_NStrLoss": "385120", "sL_ContLoss": "245830", "geom_point": "0101000020E610000082786EEB78C95EC0FF014146E19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150247504999925, 49.224202525000074 ], [ -123.151006390999967, 49.224212091000091 ], [ -123.150956084999962, 49.225792495000086 ], [ -123.150910616999937, 49.22711541200006 ], [ -123.150159519999988, 49.227103181000146 ], [ -123.149489929999959, 49.227092303000063 ], [ -123.14867604799997, 49.227080242000035 ], [ -123.147944317999986, 49.227069396000083 ], [ -123.147288558999946, 49.227060769000069 ], [ -123.146586493999919, 49.227051494000115 ], [ -123.145859935999951, 49.227041239000137 ], [ -123.144984601999951, 49.227028887000088 ], [ -123.144996153999926, 49.226757439000082 ], [ -123.14500498799994, 49.226550740000093 ], [ -123.145077508999961, 49.224847899000068 ], [ -123.145107208999931, 49.224141594000116 ], [ -123.145934488999956, 49.224151735000099 ], [ -123.146691408999914, 49.224161003000098 ], [ -123.14737674599999, 49.224168719000026 ], [ -123.148057513999944, 49.224176403000072 ], [ -123.148805383999957, 49.224185097000102 ], [ -123.149571809999955, 49.224193982000109 ], [ -123.150247504999925, 49.224202525000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "972581986", "BldgCostT": "635309469", "sL_LossRatio": "0.738479747756969", "sL_AssetLoss": "16152359", "sL_BldgLoss": "11928190", "sL_StrLoss": "5019760", "sL_NStrLoss": "6908430", "sL_ContLoss": "4224169", "geom_point": "0101000020E6100000FF21DB9E85C95EC0BEDDD3EEBA9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150506380999957, 49.213281404000078 ], [ -123.15037837600002, 49.213175294000088 ], [ -123.150024303999928, 49.213243387000098 ], [ -123.149623787999943, 49.213284198000082 ], [ -123.149197711999989, 49.213280630000028 ], [ -123.14847861599992, 49.213274600000034 ], [ -123.148536213999947, 49.211956383000015 ], [ -123.148557305999987, 49.21150031000014 ], [ -123.148578841999949, 49.211021914000078 ], [ -123.148594925999987, 49.210665402000089 ], [ -123.148601305999961, 49.210536484000087 ], [ -123.148641115999908, 49.209733391000057 ], [ -123.148711984, 49.209472196000092 ], [ -123.148259300999925, 49.209046783000083 ], [ -123.148080191999981, 49.208879890000027 ], [ -123.147810632999935, 49.208756294000089 ], [ -123.147646400999989, 49.208680988000054 ], [ -123.147268684999943, 49.208619708000057 ], [ -123.146973101999976, 49.208615703000113 ], [ -123.146643142999963, 49.208611250000033 ], [ -123.146432373999957, 49.208608394000059 ], [ -123.14516201, 49.208582799000027 ], [ -123.144432686999977, 49.208578341000063 ], [ -123.144429770999977, 49.208578314000086 ], [ -123.144232099999968, 49.208577100000056 ], [ -123.14373290199994, 49.208572002000025 ], [ -123.142923132999968, 49.208562573000087 ], [ -123.142154695999963, 49.208553597000062 ], [ -123.142176934999924, 49.208231726000079 ], [ -123.142192577999978, 49.208005098000044 ], [ -123.142252718999956, 49.207095056000107 ], [ -123.142315447999948, 49.206164394000048 ], [ -123.142266831999976, 49.205839711000088 ], [ -123.142240750999974, 49.205797240000088 ], [ -123.142204491999934, 49.205738068000095 ], [ -123.142008158999943, 49.205583319000027 ], [ -123.141740168999959, 49.205434788000076 ], [ -123.14135190899998, 49.205307492000074 ], [ -123.14090902199996, 49.205162323000096 ], [ -123.140528400999955, 49.205282792000126 ], [ -123.140382401999929, 49.205135697000088 ], [ -123.140350884, 49.205117939000019 ], [ -123.140274701999985, 49.204975336000068 ], [ -123.140272469, 49.204971132000018 ], [ -123.140467208999965, 49.204546129000121 ], [ -123.140561142999928, 49.204341380000145 ], [ -123.140572671999934, 49.204316219000077 ], [ -123.140639820999965, 49.204066066000117 ], [ -123.140660552999975, 49.203986489000052 ], [ -123.140841059999957, 49.202645017000116 ], [ -123.140876280999947, 49.202383144000109 ], [ -123.140854034999961, 49.201946157000066 ], [ -123.142096499999937, 49.202779410000126 ], [ -123.143483894999974, 49.203407492000039 ], [ -123.143978703999963, 49.20383900900007 ], [ -123.146578013999914, 49.20480750800008 ], [ -123.147169399999939, 49.205157907000064 ], [ -123.148068107999947, 49.205444148000076 ], [ -123.148068300999924, 49.205507898000043 ], [ -123.148286386999956, 49.205513669000013 ], [ -123.148940191999941, 49.20572189800005 ], [ -123.149230218999946, 49.205901304000072 ], [ -123.149354704999965, 49.206305804000074 ], [ -123.149450800999929, 49.206351409000042 ], [ -123.14960109899998, 49.206233111000117 ], [ -123.149311693999934, 49.205659194000113 ], [ -123.149297886999975, 49.205542778000073 ], [ -123.149775006999974, 49.205542161000061 ], [ -123.150094095999989, 49.205793109000062 ], [ -123.150128482999946, 49.205806753000076 ], [ -123.150128495999937, 49.205811561000111 ], [ -123.150140557999961, 49.205811545000039 ], [ -123.150657614999915, 49.206016689000087 ], [ -123.150953447999925, 49.206217335000083 ], [ -123.150953850999926, 49.206350202000088 ], [ -123.151148973, 49.206349948000096 ], [ -123.151257378999944, 49.206423472000012 ], [ -123.151366162999977, 49.206497244000104 ], [ -123.151366535999927, 49.20661952100005 ], [ -123.151546124999982, 49.206619286000063 ], [ -123.151663508999945, 49.206698889000108 ], [ -123.15177898099999, 49.20680954200008 ], [ -123.151779224999984, 49.20688883800004 ], [ -123.151861621999942, 49.20688873100017 ], [ -123.152021997999967, 49.207042398000084 ], [ -123.15224209199999, 49.207253294000111 ], [ -123.152605150999989, 49.207601135000075 ], [ -123.152605445999967, 49.207697327000133 ], [ -123.152705406999971, 49.20769719400004 ], [ -123.152854655999974, 49.207840199000017 ], [ -123.152863902999925, 49.207849057000047 ], [ -123.153431346, 49.208392721000081 ], [ -123.153432531999911, 49.208775666000101 ], [ -123.153830498999952, 49.208775137000067 ], [ -123.153844454999927, 49.208788507000065 ], [ -123.153845248999957, 49.209044976000079 ], [ -123.154111780999926, 49.209044621000025 ], [ -123.154251417, 49.209178397000066 ], [ -123.154257565999899, 49.209183218000064 ], [ -123.154258811999952, 49.209584142000082 ], [ -123.154767910999936, 49.209583461000086 ], [ -123.155083360999981, 49.20983085000011 ], [ -123.155084274999965, 49.210122755000036 ], [ -123.155399878999972, 49.210122330000054 ], [ -123.155224988, 49.210894603000057 ], [ -123.154866589999969, 49.213608481000051 ], [ -123.155458291999963, 49.214575550000042 ], [ -123.154422799999963, 49.215141394000106 ], [ -123.15405746499998, 49.21513755000008 ], [ -123.15391369299999, 49.215136037000057 ], [ -123.151247887999915, 49.215107895000081 ], [ -123.151255336999924, 49.214624334000064 ], [ -123.15126258899997, 49.214151694000101 ], [ -123.151245404999912, 49.21409719800009 ], [ -123.150928023999981, 49.213746843000095 ], [ -123.150506380999957, 49.213281404000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83282999", "BldgCostT": "53654999", "sL_LossRatio": "0.681356992209071", "sL_AssetLoss": "1653333", "sL_BldgLoss": "1126510", "sL_StrLoss": "486510", "sL_NStrLoss": "640000", "sL_ContLoss": "526823", "geom_point": "0101000020E6100000E23234BFD6C75EC0018021B3CC974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12118180899995, 49.18663882900006 ], [ -123.121178600999883, 49.18663849600005 ], [ -123.121149660999905, 49.186638792000046 ], [ -123.120609107999925, 49.186644005000126 ], [ -123.11984438399999, 49.18681179600005 ], [ -123.119766417999969, 49.186454802000085 ], [ -123.119764308999947, 49.185957510000037 ], [ -123.119754460999971, 49.184655475000064 ], [ -123.124448214999958, 49.184667401000077 ], [ -123.12452056699999, 49.184667589000135 ], [ -123.124637422999967, 49.184667910000051 ], [ -123.124651690999926, 49.186143903000072 ], [ -123.12484238499998, 49.187006593000064 ], [ -123.12487330099999, 49.187771287000032 ], [ -123.124670488999939, 49.187767702000059 ], [ -123.124081812999961, 49.187744526000046 ], [ -123.12402750199999, 49.187742410000098 ], [ -123.123798477999969, 49.187696697000064 ], [ -123.123526199999944, 49.187598389000073 ], [ -123.122204396999933, 49.186861404000062 ], [ -123.121675984999953, 49.186689596000072 ], [ -123.12118180899995, 49.18663882900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249981917", "BldgCostT": "171181667", "sL_LossRatio": "0.769199744542226", "sL_AssetLoss": "3148857", "sL_BldgLoss": "2422100", "sL_StrLoss": "1182370", "sL_NStrLoss": "1239730", "sL_ContLoss": "726757", "geom_point": "0101000020E610000040BF10EEA5C75EC0FF3A4FC01F984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121149660999905, 49.186638792000046 ], [ -123.121178600999883, 49.18663849600005 ], [ -123.12118180899995, 49.18663882900006 ], [ -123.121675984999953, 49.186689596000072 ], [ -123.122204396999933, 49.186861404000062 ], [ -123.123526199999944, 49.187598389000073 ], [ -123.123798477999969, 49.187696697000064 ], [ -123.12402750199999, 49.187742410000098 ], [ -123.124081812999961, 49.187744526000046 ], [ -123.123909101, 49.187837514000108 ], [ -123.123907834999926, 49.188075961000017 ], [ -123.123906303999931, 49.188370693000088 ], [ -123.123902093999959, 49.189280416000024 ], [ -123.121376800999926, 49.18926250200014 ], [ -123.121373820999921, 49.190173205000107 ], [ -123.116837206999932, 49.190183862000055 ], [ -123.116823484999941, 49.190183893000047 ], [ -123.11509388199994, 49.18905749700005 ], [ -123.11508303, 49.189046928000032 ], [ -123.114950424, 49.1889176090001 ], [ -123.114858191999957, 49.188700800000042 ], [ -123.114868773999959, 49.188130205000064 ], [ -123.114872792999961, 49.187913816000076 ], [ -123.115923625999969, 49.187918802000084 ], [ -123.116302911, 49.187920610000063 ], [ -123.116606379999936, 49.187892703000038 ], [ -123.117206411999959, 49.187771805000139 ], [ -123.116866899999934, 49.187129968000143 ], [ -123.116822104999954, 49.187045286000043 ], [ -123.117216100999954, 49.186951395000051 ], [ -123.117833199999922, 49.186886783000062 ], [ -123.1179659, 49.186886515000076 ], [ -123.11867399499999, 49.186884981000055 ], [ -123.119445982999935, 49.186887595 ], [ -123.11984438399999, 49.18681179600005 ], [ -123.120609107999925, 49.186644005000126 ], [ -123.121149660999905, 49.186638792000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78495834", "BldgCostT": "52583334", "sL_LossRatio": "0.698932866373393", "sL_AssetLoss": "1638970", "sL_BldgLoss": "1145530", "sL_StrLoss": "516500", "sL_NStrLoss": "629030", "sL_ContLoss": "493440", "geom_point": "0101000020E61000000A97D91071C75EC06F1AF408E2974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11395809899993, 49.186835815000073 ], [ -123.113963825999946, 49.186080177000129 ], [ -123.113965211999954, 49.18589859500009 ], [ -123.115090392999917, 49.185888201000054 ], [ -123.115341105999917, 49.185938187000048 ], [ -123.115713386999971, 49.186015693000094 ], [ -123.116042608000029, 49.18619209900006 ], [ -123.116510998999985, 49.185827187000086 ], [ -123.116574096999969, 49.185693703000027 ], [ -123.116584284999973, 49.185130999000123 ], [ -123.117640610999928, 49.185127688000108 ], [ -123.118691185, 49.185126093000036 ], [ -123.11867399499999, 49.186884981000055 ], [ -123.1179659, 49.186886515000076 ], [ -123.117833199999922, 49.186886783000062 ], [ -123.117216100999954, 49.186951395000051 ], [ -123.116822104999954, 49.187045286000043 ], [ -123.116866899999934, 49.187129968000143 ], [ -123.117206411999959, 49.187771805000139 ], [ -123.116606379999936, 49.187892703000038 ], [ -123.116302911, 49.187920610000063 ], [ -123.115923625999969, 49.187918802000084 ], [ -123.114872792999961, 49.187913816000076 ], [ -123.114139896999959, 49.187910629000072 ], [ -123.113949994999984, 49.187909812000022 ], [ -123.113953270999929, 49.187474510000122 ], [ -123.11395809899993, 49.186835815000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "635383531", "BldgCostT": "428513603", "sL_LossRatio": "0.833699664892931", "sL_AssetLoss": "3475904", "sL_BldgLoss": "2897860", "sL_StrLoss": "1708300", "sL_NStrLoss": "1189560", "sL_ContLoss": "578044", "geom_point": "0101000020E6100000B9A74F389CC75EC039170B8580974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11867399499999, 49.186884981000055 ], [ -123.118691185, 49.185126093000036 ], [ -123.117640610999928, 49.185127688000108 ], [ -123.116584284999973, 49.185130999000123 ], [ -123.116574096999969, 49.185693703000027 ], [ -123.116510998999985, 49.185827187000086 ], [ -123.116042608000029, 49.18619209900006 ], [ -123.115713386999971, 49.186015693000094 ], [ -123.115341105999917, 49.185938187000048 ], [ -123.115090392999917, 49.185888201000054 ], [ -123.113965211999954, 49.18589859500009 ], [ -123.113974796999926, 49.184639493000091 ], [ -123.113985588999952, 49.181770597000067 ], [ -123.118315010999964, 49.181769247000119 ], [ -123.122586408999894, 49.181767679000124 ], [ -123.123795187, 49.181767208000075 ], [ -123.124466812999955, 49.181749996000065 ], [ -123.124523684999957, 49.181748936000133 ], [ -123.124539077999927, 49.181748667000086 ], [ -123.124665917999963, 49.181746299000089 ], [ -123.124648140999952, 49.183569409 ], [ -123.124647573999979, 49.183626790000119 ], [ -123.124637477999926, 49.184658882000065 ], [ -123.124637422999967, 49.184667910000051 ], [ -123.12452056699999, 49.184667589000135 ], [ -123.124448214999958, 49.184667401000077 ], [ -123.119754460999971, 49.184655475000064 ], [ -123.119764308999947, 49.185957510000037 ], [ -123.119766417999969, 49.186454802000085 ], [ -123.11984438399999, 49.18681179600005 ], [ -123.119445982999935, 49.186887595 ], [ -123.11867399499999, 49.186884981000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248261899", "BldgCostT": "153924320", "sL_LossRatio": "0.68130416501936", "sL_AssetLoss": "6374040", "sL_BldgLoss": "4342660", "sL_StrLoss": "1715570", "sL_NStrLoss": "2627090", "sL_ContLoss": "2031380", "geom_point": "0101000020E6100000F8973F74BBC65EC09D4B700B12974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.106331126999947, 49.183779091000083 ], [ -123.10560698099998, 49.183295327000017 ], [ -123.10296662199994, 49.181531216000117 ], [ -123.102726882, 49.181371011000067 ], [ -123.102470350999951, 49.181199871000032 ], [ -123.102449992999979, 49.181186308000051 ], [ -123.102298995999945, 49.18108560200006 ], [ -123.102067368999926, 49.180933370000055 ], [ -123.100362507999961, 49.179812897000048 ], [ -123.099858780999938, 49.179475948000061 ], [ -123.098398198999959, 49.178498819 ], [ -123.097277984999891, 49.17774935900006 ], [ -123.097184931999962, 49.177687115000026 ], [ -123.096341199999955, 49.177122585000056 ], [ -123.096656402999926, 49.177124802000023 ], [ -123.096555193, 49.177054514000069 ], [ -123.097078983999907, 49.177055093000085 ], [ -123.102452049999982, 49.177078413000068 ], [ -123.102936713999952, 49.177080492000108 ], [ -123.102934017999956, 49.177167789000109 ], [ -123.103637613999936, 49.177165086000102 ], [ -123.104402981999954, 49.177205499000081 ], [ -123.105340012999974, 49.177287404000019 ], [ -123.108360884999954, 49.17732979700007 ], [ -123.108368298999935, 49.178268700000068 ], [ -123.108022365999929, 49.17842770700004 ], [ -123.10752558499999, 49.178655993000106 ], [ -123.106548304999961, 49.179089204000071 ], [ -123.106670085999951, 49.179224899000161 ], [ -123.106673842999939, 49.179529357000092 ], [ -123.106675118999959, 49.179630398 ], [ -123.106611120999943, 49.179777300000062 ], [ -123.106447103000022, 49.179899885000118 ], [ -123.105783604999942, 49.180182994000035 ], [ -123.105361298999981, 49.180204096000104 ], [ -123.105206977999927, 49.180258495000025 ], [ -123.10510469499998, 49.180361093000045 ], [ -123.105104401999981, 49.180805218000017 ], [ -123.105153590999976, 49.180851120000042 ], [ -123.105236597999948, 49.180928607000077 ], [ -123.105511490999973, 49.180984703000128 ], [ -123.106027768999979, 49.180978527000057 ], [ -123.106046707999937, 49.180978301000074 ], [ -123.106046736999971, 49.180987328000128 ], [ -123.106047498999942, 49.181781005000055 ], [ -123.106036296999889, 49.18262118400002 ], [ -123.109005788999951, 49.182614505000068 ], [ -123.108988291999978, 49.183799495000088 ], [ -123.109398098999961, 49.183803297000082 ], [ -123.109750083999984, 49.183767692000067 ], [ -123.110039306999909, 49.183769195000067 ], [ -123.111111319999978, 49.183777207000162 ], [ -123.11123457799998, 49.183777982000031 ], [ -123.112208009999947, 49.183784106000061 ], [ -123.112606840999931, 49.183788128000046 ], [ -123.113286707999933, 49.183795 ], [ -123.113292072999982, 49.182933895000097 ], [ -123.113244510999976, 49.182706504000066 ], [ -123.113066890999946, 49.182430608000068 ], [ -123.112866210999968, 49.182130699000048 ], [ -123.112836506999926, 49.181769487000039 ], [ -123.113069211999942, 49.180783002000034 ], [ -123.11293740099994, 49.180210997000117 ], [ -123.112733112999962, 49.179967699000038 ], [ -123.113023018999968, 49.179826894000023 ], [ -123.11320458599999, 49.179773185000052 ], [ -123.113988521999985, 49.179780673000039 ], [ -123.113987761999951, 49.180296049000077 ], [ -123.113986654999934, 49.181024685000025 ], [ -123.113985588999952, 49.181770597000067 ], [ -123.113974796999926, 49.184639493000091 ], [ -123.112567664999958, 49.184629189000049 ], [ -123.109903387999964, 49.184609609000049 ], [ -123.108162781999937, 49.184583953000114 ], [ -123.107820730999947, 49.1845789220001 ], [ -123.107627501999985, 49.184577865000023 ], [ -123.107525955999989, 49.184577317000048 ], [ -123.107516188999938, 49.184570798000053 ], [ -123.107145248000023, 49.184323002000085 ], [ -123.106331126999947, 49.183779091000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67481250", "BldgCostT": "46275000", "sL_LossRatio": "0.782672776482568", "sL_AssetLoss": "746340", "sL_BldgLoss": "584140", "sL_StrLoss": "320980", "sL_NStrLoss": "263160", "sL_ContLoss": "162200", "geom_point": "0101000020E61000004D08670124C75EC09CC806B137974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109950807999923, 49.179833692000024 ], [ -123.109938487, 49.178642402000058 ], [ -123.110998900999974, 49.178679803000072 ], [ -123.111345511, 49.178729709000088 ], [ -123.111594797999913, 49.178821999000057 ], [ -123.111868706999985, 49.178982391000055 ], [ -123.112025204999895, 49.179177605000049 ], [ -123.112231585, 49.17954169000005 ], [ -123.11249181, 49.179762747000076 ], [ -123.112733112999962, 49.179967699000038 ], [ -123.11293740099994, 49.180210997000117 ], [ -123.113069211999942, 49.180783002000034 ], [ -123.112836506999926, 49.181769487000039 ], [ -123.112866210999968, 49.182130699000048 ], [ -123.113066890999946, 49.182430608000068 ], [ -123.113244510999976, 49.182706504000066 ], [ -123.113292072999982, 49.182933895000097 ], [ -123.113286707999933, 49.183795 ], [ -123.112606840999931, 49.183788128000046 ], [ -123.112208009999947, 49.183784106000061 ], [ -123.11123457799998, 49.183777982000031 ], [ -123.111111319999978, 49.183777207000162 ], [ -123.110039306999909, 49.183769195000067 ], [ -123.11006569099996, 49.182617697000069 ], [ -123.110470188999955, 49.182618601000129 ], [ -123.110934308999944, 49.182542790000134 ], [ -123.11091427599996, 49.181761200000054 ], [ -123.110917604999884, 49.181488298000033 ], [ -123.110831810999969, 49.18125808000012 ], [ -123.110532189999944, 49.180914997000073 ], [ -123.110170008999944, 49.180543094000036 ], [ -123.11004766299996, 49.180416486000055 ], [ -123.110015398999934, 49.180383104000022 ], [ -123.109955600999982, 49.180241910000099 ], [ -123.109950807999923, 49.179833692000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230123622", "BldgCostT": "157498705", "sL_LossRatio": "0.77512158698767", "sL_AssetLoss": "3716475", "sL_BldgLoss": "2880720", "sL_StrLoss": "1487630", "sL_NStrLoss": "1393090", "sL_ContLoss": "835755", "geom_point": "0101000020E61000008006829DEEC65EC0E58144EA28974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.108988291999978, 49.183799495000088 ], [ -123.109005788999951, 49.182614505000068 ], [ -123.106036296999889, 49.18262118400002 ], [ -123.106047498999942, 49.181781005000055 ], [ -123.106046736999971, 49.180987328000128 ], [ -123.106046707999937, 49.180978301000074 ], [ -123.106027768999979, 49.180978527000057 ], [ -123.105511490999973, 49.180984703000128 ], [ -123.105236597999948, 49.180928607000077 ], [ -123.105153590999976, 49.180851120000042 ], [ -123.105104401999981, 49.180805218000017 ], [ -123.10510469499998, 49.180361093000045 ], [ -123.105206977999927, 49.180258495000025 ], [ -123.105361298999981, 49.180204096000104 ], [ -123.105783604999942, 49.180182994000035 ], [ -123.106447103000022, 49.179899885000118 ], [ -123.106611120999943, 49.179777300000062 ], [ -123.106675118999959, 49.179630398 ], [ -123.106673842999939, 49.179529357000092 ], [ -123.106670085999951, 49.179224899000161 ], [ -123.106548304999961, 49.179089204000071 ], [ -123.10752558499999, 49.178655993000106 ], [ -123.108022365999929, 49.17842770700004 ], [ -123.108368298999935, 49.178268700000068 ], [ -123.108618897999975, 49.17837738500004 ], [ -123.108964798000031, 49.178527435000056 ], [ -123.109125388999956, 49.178597098000068 ], [ -123.109394408999918, 49.178636784000069 ], [ -123.109938487, 49.178642402000058 ], [ -123.109950807999923, 49.179833692000024 ], [ -123.109955600999982, 49.180241910000099 ], [ -123.110015398999934, 49.180383104000022 ], [ -123.11004766299996, 49.180416486000055 ], [ -123.110170008999944, 49.180543094000036 ], [ -123.110532189999944, 49.180914997000073 ], [ -123.110831810999969, 49.18125808000012 ], [ -123.110917604999884, 49.181488298000033 ], [ -123.11091427599996, 49.181761200000054 ], [ -123.110934308999944, 49.182542790000134 ], [ -123.110470188999955, 49.182618601000129 ], [ -123.11006569099996, 49.182617697000069 ], [ -123.110039306999909, 49.183769195000067 ], [ -123.109750083999984, 49.183767692000067 ], [ -123.109398098999961, 49.183803297000082 ], [ -123.108988291999978, 49.183799495000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258920471", "BldgCostT": "172647650", "sL_LossRatio": "0.767566772874637", "sL_AssetLoss": "3945090", "sL_BldgLoss": "3028120", "sL_StrLoss": "1433020", "sL_NStrLoss": "1595100", "sL_ContLoss": "916970", "geom_point": "0101000020E61000000541058F08C85EC03BDDBBFE0B964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124689969999935, 49.170185396000093 ], [ -123.125974690999968, 49.170182242000109 ], [ -123.125988492999952, 49.170182209000068 ], [ -123.125998801999941, 49.171945487000059 ], [ -123.126008902999942, 49.173734014000068 ], [ -123.126022607999943, 49.173734132000021 ], [ -123.126254935999967, 49.17373625500003 ], [ -123.128680995999957, 49.173758390000096 ], [ -123.128681732999922, 49.17381289300009 ], [ -123.128682985999944, 49.173903490000122 ], [ -123.128007522999937, 49.173941310000068 ], [ -123.126171276, 49.173945875000108 ], [ -123.126034059999967, 49.173946238000035 ], [ -123.126023414999921, 49.173946271000013 ], [ -123.124672398999948, 49.173949585000109 ], [ -123.124672660999977, 49.173799326000101 ], [ -123.124672811000025, 49.173721712000031 ], [ -123.124680819999952, 49.172070688000069 ], [ -123.124689969999935, 49.170185396000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "495620055", "BldgCostT": "276710444", "sL_LossRatio": "0.599014974687774", "sL_AssetLoss": "10195271", "sL_BldgLoss": "6107120", "sL_StrLoss": "2010520", "sL_NStrLoss": "4096600", "sL_ContLoss": "4088151", "geom_point": "0101000020E61000003FE2900D64C85EC02D92740F01974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131545861999911, 49.173882495000136 ], [ -123.136667994, 49.173910710000079 ], [ -123.136673065999972, 49.174321011000103 ], [ -123.136698430999957, 49.176377164 ], [ -123.13652241299998, 49.17734268300007 ], [ -123.136520547999936, 49.177417407000121 ], [ -123.136520800999904, 49.178370506000057 ], [ -123.136611025999954, 49.179398961000039 ], [ -123.136596759999975, 49.179741813000106 ], [ -123.136570003, 49.181533776000045 ], [ -123.136624953999956, 49.182511753000085 ], [ -123.13661039, 49.1828590880001 ], [ -123.136570291999988, 49.183802455000077 ], [ -123.136555422999891, 49.184152143000034 ], [ -123.136515510999956, 49.184368950000064 ], [ -123.13646882499998, 49.184622778000055 ], [ -123.135000321999911, 49.184684617000087 ], [ -123.133440875999966, 49.184685205000065 ], [ -123.132737654999929, 49.184685471000058 ], [ -123.132463107999953, 49.184685560000098 ], [ -123.130892881999941, 49.184684293000039 ], [ -123.129996073, 49.184682165000012 ], [ -123.1281436, 49.184677716000081 ], [ -123.12699861, 49.184674203000036 ], [ -123.126263360999928, 49.184672244000069 ], [ -123.124637422999967, 49.184667910000051 ], [ -123.124637477999926, 49.184658882000065 ], [ -123.124647573999979, 49.183626790000119 ], [ -123.124648140999952, 49.183569409 ], [ -123.124665917999963, 49.181746299000089 ], [ -123.124665884999928, 49.181737271000024 ], [ -123.124662889999968, 49.180851673000028 ], [ -123.124657817999932, 49.179328189000032 ], [ -123.124654097999922, 49.17883358500012 ], [ -123.124654893999931, 49.177335493000072 ], [ -123.12871910299999, 49.177359194000061 ], [ -123.12871632199996, 49.177320979000058 ], [ -123.12871319599995, 49.177277986000021 ], [ -123.128682985999944, 49.173903490000122 ], [ -123.128979481999963, 49.173876291000042 ], [ -123.131545861999911, 49.173882495000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "628591633", "BldgCostT": "432042550", "sL_LossRatio": "0.807653974651141", "sL_AssetLoss": "8719130", "sL_BldgLoss": "7042040", "sL_StrLoss": "3225430", "sL_NStrLoss": "3816610", "sL_ContLoss": "1677090", "geom_point": "0101000020E61000003FADAAB0BCC95EC0C4E94E2456954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147755209999971, 49.166127890000027 ], [ -123.148556107999966, 49.166145499000024 ], [ -123.149059876999956, 49.166133596000051 ], [ -123.149410507999988, 49.166071806000069 ], [ -123.149439057999984, 49.166062769000078 ], [ -123.14972088399999, 49.165973705000113 ], [ -123.150062783999928, 49.165829591000062 ], [ -123.15020883499993, 49.165737101000062 ], [ -123.150223996999941, 49.165727515000043 ], [ -123.150626387, 49.165469696000116 ], [ -123.151755828999967, 49.166221521000047 ], [ -123.151973803999965, 49.166366589000127 ], [ -123.152153095999921, 49.166438892 ], [ -123.152316286999962, 49.16646030000004 ], [ -123.152522608999988, 49.166448707000036 ], [ -123.152690015999951, 49.166401789000105 ], [ -123.152829595999933, 49.16631629200009 ], [ -123.152919678999965, 49.166188893000047 ], [ -123.152919686999951, 49.166075411000065 ], [ -123.152867594999961, 49.165965010000036 ], [ -123.152750487, 49.165861907000078 ], [ -123.152738446999976, 49.165853975000068 ], [ -123.151387889999924, 49.164965605000106 ], [ -123.152110582999967, 49.164469393000083 ], [ -123.15369168799999, 49.165490494000018 ], [ -123.15384259299999, 49.165555705000031 ], [ -123.154056113999943, 49.16558389600003 ], [ -123.154280908999979, 49.165562801000092 ], [ -123.154467091999919, 49.16547670300011 ], [ -123.15458139499998, 49.165356308000128 ], [ -123.154610404, 49.165218399000054 ], [ -123.154565379999937, 49.165101899000057 ], [ -123.15446879599989, 49.16500019000005 ], [ -123.152909008999927, 49.163967092000078 ], [ -123.153378012999923, 49.163739886000045 ], [ -123.153750795999954, 49.163629896000074 ], [ -123.154144811999984, 49.163597985000102 ], [ -123.15444221599995, 49.16359870700007 ], [ -123.155113177999908, 49.163609204000061 ], [ -123.155507597999971, 49.163661111000124 ], [ -123.155934486999939, 49.163786711000107 ], [ -123.156412723999921, 49.164035396000081 ], [ -123.156670902999963, 49.164297191000038 ], [ -123.156818501999936, 49.164573113000074 ], [ -123.15686969599993, 49.164856402000083 ], [ -123.156468017999899, 49.164880107000045 ], [ -123.156254508999908, 49.164942010000125 ], [ -123.156056881999973, 49.165034994000088 ], [ -123.155901488000012, 49.165177707000133 ], [ -123.155765121999934, 49.165390292000104 ], [ -123.155746888999914, 49.165732101000067 ], [ -123.155780042999936, 49.165957565000106 ], [ -123.155780813999925, 49.165962807000064 ], [ -123.155899383999937, 49.166153300000104 ], [ -123.156139689999961, 49.166325396000026 ], [ -123.156383987999973, 49.166411105000108 ], [ -123.156621585999943, 49.166448009000092 ], [ -123.156861599999942, 49.166446179000083 ], [ -123.156863001999966, 49.166617704 ], [ -123.156864203999959, 49.166763404000044 ], [ -123.156777095999985, 49.16693231600005 ], [ -123.156452248999969, 49.16715869500004 ], [ -123.156194298999964, 49.167338495000138 ], [ -123.154932666999926, 49.166527518000045 ], [ -123.154868681999972, 49.166486392000081 ], [ -123.154699806999957, 49.166399904000116 ], [ -123.154427307999981, 49.166350382000125 ], [ -123.154279796999958, 49.166364501000011 ], [ -123.15411901399996, 49.166416095000059 ], [ -123.153986615999912, 49.166496388000084 ], [ -123.153909915999961, 49.166629499000116 ], [ -123.153914599999936, 49.166798088000057 ], [ -123.154032710999928, 49.166930005000061 ], [ -123.154081198999933, 49.166961966000059 ], [ -123.155407098999902, 49.167835710000048 ], [ -123.155104177999974, 49.168026288000078 ], [ -123.15464718799997, 49.168313814000015 ], [ -123.153277272999944, 49.1674279920001 ], [ -123.1530871099999, 49.167304999000123 ], [ -123.152913404999964, 49.167230997000047 ], [ -123.152712900999958, 49.16721400600003 ], [ -123.152546695999987, 49.167242098000017 ], [ -123.152388912999982, 49.167311794000049 ], [ -123.152308102999939, 49.167373200000021 ], [ -123.152276699999973, 49.167397095000069 ], [ -123.152189879999938, 49.167538891000049 ], [ -123.152216088999964, 49.167670198000096 ], [ -123.152294406999914, 49.167779493000083 ], [ -123.152484788999942, 49.167904773000039 ], [ -123.153183226999943, 49.168364361000116 ], [ -123.153230088999933, 49.168395202000049 ], [ -123.15344139299999, 49.168571987000099 ], [ -123.153626104999944, 49.168801191000071 ], [ -123.153110218, 49.168943388000024 ], [ -123.152840095999963, 49.168988506000062 ], [ -123.152169479999955, 49.169036493000121 ], [ -123.151892188999909, 49.169020197000066 ], [ -123.15141051199997, 49.169018802000096 ], [ -123.151273331999931, 49.169018407000095 ], [ -123.151165708999883, 49.169018098000095 ], [ -123.14942105099999, 49.169019033000083 ], [ -123.147731290999971, 49.169019901000055 ], [ -123.147749639999944, 49.166800870000024 ], [ -123.147755209999971, 49.166127890000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70649061", "BldgCostT": "47048190", "sL_LossRatio": "0.688669092399938", "sL_AssetLoss": "1951300", "sL_BldgLoss": "1343800", "sL_StrLoss": "563400", "sL_NStrLoss": "780400", "sL_ContLoss": "607500", "geom_point": "0101000020E6100000A0B57093B0C95EC01718AA490D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.151755828999967, 49.166221521000047 ], [ -123.150626387, 49.165469696000116 ], [ -123.150223996999941, 49.165727515000043 ], [ -123.149428913999941, 49.165213700000024 ], [ -123.149309778999964, 49.165300698000046 ], [ -123.14908551299996, 49.16538030100007 ], [ -123.14872969399994, 49.165438399000067 ], [ -123.148451026999936, 49.165444605000097 ], [ -123.148456890999981, 49.16456638500005 ], [ -123.148703695999956, 49.164565715000023 ], [ -123.149038716999939, 49.164489898000042 ], [ -123.149543591999972, 49.164170004000063 ], [ -123.149681187999946, 49.164004192000064 ], [ -123.149716686999938, 49.16387279200007 ], [ -123.149713716999955, 49.163586194000118 ], [ -123.149709302999966, 49.163433265000094 ], [ -123.149693984999928, 49.16290101600007 ], [ -123.153123219999941, 49.162909799000033 ], [ -123.153124988999949, 49.163350407000088 ], [ -123.15318057099995, 49.163538294000084 ], [ -123.153257004999915, 49.163656501000112 ], [ -123.153378012999923, 49.163739886000045 ], [ -123.152909008999927, 49.163967092000078 ], [ -123.15446879599989, 49.16500019000005 ], [ -123.154565379999937, 49.165101899000057 ], [ -123.154610404, 49.165218399000054 ], [ -123.15458139499998, 49.165356308000128 ], [ -123.154467091999919, 49.16547670300011 ], [ -123.154280908999979, 49.165562801000092 ], [ -123.154056113999943, 49.16558389600003 ], [ -123.15384259299999, 49.165555705000031 ], [ -123.15369168799999, 49.165490494000018 ], [ -123.152110582999967, 49.164469393000083 ], [ -123.151387889999924, 49.164965605000106 ], [ -123.152738446999976, 49.165853975000068 ], [ -123.152750487, 49.165861907000078 ], [ -123.152867594999961, 49.165965010000036 ], [ -123.152919686999951, 49.166075411000065 ], [ -123.152919678999965, 49.166188893000047 ], [ -123.152829595999933, 49.16631629200009 ], [ -123.152690015999951, 49.166401789000105 ], [ -123.152522608999988, 49.166448707000036 ], [ -123.152316286999962, 49.16646030000004 ], [ -123.152153095999921, 49.166438892 ], [ -123.151973803999965, 49.166366589000127 ], [ -123.151755828999967, 49.166221521000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75089311", "BldgCostT": "49668190", "sL_LossRatio": "0.679404232562114", "sL_AssetLoss": "2176554", "sL_BldgLoss": "1478760", "sL_StrLoss": "597090", "sL_NStrLoss": "881670", "sL_ContLoss": "697794", "geom_point": "0101000020E6100000CEC5843DD2C95EC005184441FC944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147755209999971, 49.166127890000027 ], [ -123.147760353999956, 49.165019683000018 ], [ -123.147766614999966, 49.163670375000038 ], [ -123.147770711999968, 49.162791504000047 ], [ -123.147784459, 49.162791457000075 ], [ -123.149694185999948, 49.162785691000124 ], [ -123.151868190999949, 49.162782103000112 ], [ -123.153107776999889, 49.162780020000071 ], [ -123.15312150799997, 49.16278000700003 ], [ -123.158852998999947, 49.16279809500007 ], [ -123.15884749899999, 49.163023206000048 ], [ -123.158752110999913, 49.16312509400008 ], [ -123.158736317999939, 49.164617405000044 ], [ -123.158729404, 49.165261312000084 ], [ -123.158729306999973, 49.165270389000028 ], [ -123.156854097999911, 49.165291988000092 ], [ -123.15686969599993, 49.164856402000083 ], [ -123.156818501999936, 49.164573113000074 ], [ -123.156670902999963, 49.164297191000038 ], [ -123.156412723999921, 49.164035396000081 ], [ -123.155934486999939, 49.163786711000107 ], [ -123.155507597999971, 49.163661111000124 ], [ -123.155113177999908, 49.163609204000061 ], [ -123.15444221599995, 49.16359870700007 ], [ -123.154144811999984, 49.163597985000102 ], [ -123.153750795999954, 49.163629896000074 ], [ -123.153378012999923, 49.163739886000045 ], [ -123.153257004999915, 49.163656501000112 ], [ -123.15318057099995, 49.163538294000084 ], [ -123.153124988999949, 49.163350407000088 ], [ -123.153123219999941, 49.162909799000033 ], [ -123.149693984999928, 49.16290101600007 ], [ -123.149709302999966, 49.163433265000094 ], [ -123.149713716999955, 49.163586194000118 ], [ -123.149716686999938, 49.16387279200007 ], [ -123.149681187999946, 49.164004192000064 ], [ -123.149543591999972, 49.164170004000063 ], [ -123.149038716999939, 49.164489898000042 ], [ -123.148703695999956, 49.164565715000023 ], [ -123.148456890999981, 49.16456638500005 ], [ -123.148451026999936, 49.165444605000097 ], [ -123.14872969399994, 49.165438399000067 ], [ -123.14908551299996, 49.16538030100007 ], [ -123.149309778999964, 49.165300698000046 ], [ -123.149428913999941, 49.165213700000024 ], [ -123.150223996999941, 49.165727515000043 ], [ -123.15020883499993, 49.165737101000062 ], [ -123.150062783999928, 49.165829591000062 ], [ -123.14972088399999, 49.165973705000113 ], [ -123.149439057999984, 49.166062769000078 ], [ -123.149410507999988, 49.166071806000069 ], [ -123.149059876999956, 49.166133596000051 ], [ -123.148556107999966, 49.166145499000024 ], [ -123.147755209999971, 49.166127890000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113005584", "BldgCostT": "76493334", "sL_LossRatio": "0.745188142196094", "sL_AssetLoss": "1558130", "sL_BldgLoss": "1161100", "sL_StrLoss": "570160", "sL_NStrLoss": "590940", "sL_ContLoss": "397030", "geom_point": "0101000020E6100000D63D682CD0C95EC0FC141980BA944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147789816999961, 49.161093893 ], [ -123.148995802999977, 49.16109880700008 ], [ -123.152456875, 49.161098593000055 ], [ -123.15742890199999, 49.16109210500008 ], [ -123.158878978999965, 49.161093503000117 ], [ -123.158854100999989, 49.16269 ], [ -123.158853455999989, 49.162753049000088 ], [ -123.158853355999909, 49.162762068000028 ], [ -123.158852998999947, 49.16279809500007 ], [ -123.15312150799997, 49.16278000700003 ], [ -123.153107776999889, 49.162780020000071 ], [ -123.151868190999949, 49.162782103000112 ], [ -123.149694185999948, 49.162785691000124 ], [ -123.147784459, 49.162791457000075 ], [ -123.147770711999968, 49.162791504000047 ], [ -123.147770781999967, 49.162677102000089 ], [ -123.147789816999961, 49.161093893 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104236250", "BldgCostT": "68675000", "sL_LossRatio": "0.783372105956279", "sL_AssetLoss": "1069913", "sL_BldgLoss": "838140", "sL_StrLoss": "453680", "sL_NStrLoss": "384460", "sL_ContLoss": "231773", "geom_point": "0101000020E61000001A25E82FB4C95EC07FAFBE0D73944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147789816999961, 49.161093893 ], [ -123.147792295999977, 49.15998048800008 ], [ -123.147796116, 49.158868892000065 ], [ -123.147798002999963, 49.157765386000094 ], [ -123.151718546000012, 49.157771878000105 ], [ -123.152153386999927, 49.157772593000061 ], [ -123.152275286999938, 49.157795696000079 ], [ -123.152429589999926, 49.15789531300004 ], [ -123.15248859099998, 49.157960787000071 ], [ -123.152488240999958, 49.158195066000054 ], [ -123.152487205999961, 49.158857098000048 ], [ -123.152485209, 49.15929309900006 ], [ -123.152481812999937, 49.159974891000026 ], [ -123.152481703999968, 49.160200103000065 ], [ -123.158882808999962, 49.160201703000048 ], [ -123.158878978999965, 49.161093503000117 ], [ -123.15742890199999, 49.16109210500008 ], [ -123.152456875, 49.161098593000055 ], [ -123.148995802999977, 49.16109880700008 ], [ -123.147789816999961, 49.161093893 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145784283", "BldgCostT": "99700546", "sL_LossRatio": "0.788692765644336", "sL_AssetLoss": "2391920", "sL_BldgLoss": "1886490", "sL_StrLoss": "844160", "sL_NStrLoss": "1042330", "sL_ContLoss": "505430", "geom_point": "0101000020E6100000632B7986FAC95EC00354B44930944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157610997999939, 49.157507002000038 ], [ -123.157627010999988, 49.15657229600005 ], [ -123.157118903999944, 49.156572747000062 ], [ -123.156139911, 49.156573595000062 ], [ -123.154723408999985, 49.156583888000114 ], [ -123.15400833299995, 49.156507711000074 ], [ -123.153870367, 49.156493028000121 ], [ -123.153699405999959, 49.156474803000037 ], [ -123.153634926, 49.15647512300005 ], [ -123.153388037999932, 49.156476408000032 ], [ -123.153209782999909, 49.15647734100002 ], [ -123.152558716999962, 49.156480703000071 ], [ -123.151632564, 49.156482010000097 ], [ -123.151427910999985, 49.156482300000064 ], [ -123.15109637899999, 49.156613205000049 ], [ -123.150921092999923, 49.156453597000059 ], [ -123.15086352099992, 49.156298908000053 ], [ -123.150864524999974, 49.155588199000178 ], [ -123.154345431999943, 49.155592568000046 ], [ -123.15548376199996, 49.155593972000091 ], [ -123.155758123999973, 49.155594311000044 ], [ -123.156155808999969, 49.155594789000048 ], [ -123.15893080599993, 49.155579690000074 ], [ -123.158900992999989, 49.15718970300005 ], [ -123.158882808999962, 49.160201703000048 ], [ -123.152481703999968, 49.160200103000065 ], [ -123.152481812999937, 49.159974891000026 ], [ -123.152485209, 49.15929309900006 ], [ -123.153844914, 49.159293001000094 ], [ -123.156161390999941, 49.15929209200003 ], [ -123.157440210999965, 49.159292489000073 ], [ -123.15744582899994, 49.158800192000058 ], [ -123.157448079999938, 49.158601690000076 ], [ -123.157610997999939, 49.157507002000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113053000", "BldgCostT": "74020000", "sL_LossRatio": "0.72599682752215", "sL_AssetLoss": "1658010", "sL_BldgLoss": "1203710", "sL_StrLoss": "608560", "sL_NStrLoss": "595150", "sL_ContLoss": "454300", "geom_point": "0101000020E6100000457F9A20CBC95EC045A4222528944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152275286999938, 49.157795696000079 ], [ -123.152153386999927, 49.157772593000061 ], [ -123.151718546000012, 49.157771878000105 ], [ -123.147798002999963, 49.157765386000094 ], [ -123.147799075999941, 49.156968464000073 ], [ -123.147800902999961, 49.155594391000065 ], [ -123.149918373999981, 49.155594599000118 ], [ -123.150864524999974, 49.155588199000178 ], [ -123.15086352099992, 49.156298908000053 ], [ -123.150921092999923, 49.156453597000059 ], [ -123.15109637899999, 49.156613205000049 ], [ -123.151427910999985, 49.156482300000064 ], [ -123.151632564, 49.156482010000097 ], [ -123.152558716999962, 49.156480703000071 ], [ -123.153209782999909, 49.15647734100002 ], [ -123.153388037999932, 49.156476408000032 ], [ -123.153634926, 49.15647512300005 ], [ -123.153699405999959, 49.156474803000037 ], [ -123.153870367, 49.156493028000121 ], [ -123.15400833299995, 49.156507711000074 ], [ -123.154723408999985, 49.156583888000114 ], [ -123.156139911, 49.156573595000062 ], [ -123.157118903999944, 49.156572747000062 ], [ -123.157627010999988, 49.15657229600005 ], [ -123.157610997999939, 49.157507002000038 ], [ -123.157448079999938, 49.158601690000076 ], [ -123.15744582899994, 49.158800192000058 ], [ -123.157440210999965, 49.159292489000073 ], [ -123.156161390999941, 49.15929209200003 ], [ -123.153844914, 49.159293001000094 ], [ -123.152485209, 49.15929309900006 ], [ -123.152487205999961, 49.158857098000048 ], [ -123.152488240999958, 49.158195066000054 ], [ -123.15248859099998, 49.157960787000071 ], [ -123.152429589999926, 49.15789531300004 ], [ -123.152275286999938, 49.157795696000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80973085", "BldgCostT": "54743335", "sL_LossRatio": "0.71555343557016", "sL_AssetLoss": "1884709", "sL_BldgLoss": "1348610", "sL_StrLoss": "552900", "sL_NStrLoss": "795710", "sL_ContLoss": "536099", "geom_point": "0101000020E61000003F933F1087C95EC0EE7232ED72934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147831692999915, 49.14829810300013 ], [ -123.149958289, 49.148302207000043 ], [ -123.149918799999966, 49.151853290000112 ], [ -123.149918373999981, 49.155594599000118 ], [ -123.147800902999961, 49.155594391000065 ], [ -123.147802116, 49.151887401000074 ], [ -123.147808067999932, 49.151164194000017 ], [ -123.147831692999915, 49.14829810300013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117377084", "BldgCostT": "80158334", "sL_LossRatio": "0.708918960410635", "sL_AssetLoss": "3113614", "sL_BldgLoss": "2207300", "sL_StrLoss": "960680", "sL_NStrLoss": "1246620", "sL_ContLoss": "906314", "geom_point": "0101000020E61000003AF4ED8FFDC95EC026E7063B2C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.153255989999948, 49.148312900000043 ], [ -123.15896979499999, 49.148345016000057 ], [ -123.158963337999978, 49.14885556100004 ], [ -123.158935010999969, 49.151091700000102 ], [ -123.15846099099997, 49.151109799000061 ], [ -123.157950088999925, 49.151241393000056 ], [ -123.157696906999945, 49.151279791000043 ], [ -123.157521604999943, 49.151278710000028 ], [ -123.15499909499998, 49.151293199000101 ], [ -123.154675826999949, 49.151335110000055 ], [ -123.154128512999947, 49.151523306000051 ], [ -123.153891090999963, 49.151325997000114 ], [ -123.153472002999962, 49.150785185000089 ], [ -123.153226506999914, 49.150385087000096 ], [ -123.153229732999961, 49.150305271000043 ], [ -123.153231867999935, 49.15025226000008 ], [ -123.153247579999928, 49.149862193000075 ], [ -123.153269407999943, 49.149169103000091 ], [ -123.153255989999948, 49.148312900000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108586885", "BldgCostT": "72602078", "sL_LossRatio": "0.712932723709993", "sL_AssetLoss": "1806580", "sL_BldgLoss": "1287970", "sL_StrLoss": "616840", "sL_NStrLoss": "671130", "sL_ContLoss": "518610", "geom_point": "0101000020E6100000E1DD5706D1C95EC08EC56799E2924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14783887199998, 49.146728996000107 ], [ -123.149234785999965, 49.146736188000069 ], [ -123.151200413999945, 49.146747815000062 ], [ -123.152919735999902, 49.146756534000055 ], [ -123.153078160999911, 49.146757337000039 ], [ -123.154236113999943, 49.146763206000095 ], [ -123.154494605999943, 49.146771788000123 ], [ -123.155320500999949, 49.146777509000053 ], [ -123.15895451599999, 49.14680138800005 ], [ -123.15896979499999, 49.148345016000057 ], [ -123.153255989999948, 49.148312900000043 ], [ -123.149958289, 49.148302207000043 ], [ -123.147831692999915, 49.14829810300013 ], [ -123.14783887199998, 49.146728996000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117474167", "BldgCostT": "81016667", "sL_LossRatio": "0.728610322959348", "sL_AssetLoss": "2858657", "sL_BldgLoss": "2082847", "sL_StrLoss": "896197", "sL_NStrLoss": "1186650", "sL_ContLoss": "775810", "geom_point": "0101000020E610000077917493B9C95EC08F89189F97924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14783887199998, 49.146728996000107 ], [ -123.147848204999889, 49.145951804000042 ], [ -123.147858495999941, 49.143815980000056 ], [ -123.148103107999987, 49.143850390000061 ], [ -123.149316301999988, 49.143863701000043 ], [ -123.151048909999972, 49.143874392000043 ], [ -123.153940314999957, 49.143871701000073 ], [ -123.154077482999966, 49.143874517000057 ], [ -123.154138214999975, 49.143884109000062 ], [ -123.156117314999904, 49.143897707000058 ], [ -123.15610229399999, 49.144703604000021 ], [ -123.156509712999963, 49.14476390500004 ], [ -123.156861705999944, 49.1447669060001 ], [ -123.156858171999914, 49.145667723000052 ], [ -123.156857196999937, 49.14591540100011 ], [ -123.156537095999951, 49.145913903000057 ], [ -123.155531206999981, 49.145909209000095 ], [ -123.154933218999957, 49.145905418000019 ], [ -123.154501116999967, 49.145902689000053 ], [ -123.154499337999965, 49.146138513000061 ], [ -123.154494605999943, 49.146771788000123 ], [ -123.154236113999943, 49.146763206000095 ], [ -123.153078160999911, 49.146757337000039 ], [ -123.152919735999902, 49.146756534000055 ], [ -123.151200413999945, 49.146747815000062 ], [ -123.149234785999965, 49.146736188000069 ], [ -123.14783887199998, 49.146728996000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111779456", "BldgCostT": "75209714", "sL_LossRatio": "0.702166071915585", "sL_AssetLoss": "2603330", "sL_BldgLoss": "1827970", "sL_StrLoss": "809960", "sL_NStrLoss": "1018010", "sL_ContLoss": "775360", "geom_point": "0101000020E61000002F0D80E12ACA5EC0CFAC5BF399924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156858171999914, 49.145667723000052 ], [ -123.156861705999944, 49.1447669060001 ], [ -123.156509712999963, 49.14476390500004 ], [ -123.15610229399999, 49.144703604000021 ], [ -123.156117314999904, 49.143897707000058 ], [ -123.157353149999935, 49.143905380000078 ], [ -123.158971795999918, 49.14391540000004 ], [ -123.160767399999941, 49.143904207000126 ], [ -123.162408704999947, 49.143907893000048 ], [ -123.16238869599999, 49.144572213000124 ], [ -123.162436684999989, 49.144751910000132 ], [ -123.162487293999945, 49.144978399000074 ], [ -123.162492915999962, 49.145942507000029 ], [ -123.161384187999914, 49.14594390700006 ], [ -123.160253699999913, 49.145945594000025 ], [ -123.16023960699998, 49.146782086000059 ], [ -123.15895451599999, 49.14680138800005 ], [ -123.155320500999949, 49.146777509000053 ], [ -123.154494605999943, 49.146771788000123 ], [ -123.154499337999965, 49.146138513000061 ], [ -123.154501116999967, 49.145902689000053 ], [ -123.154933218999957, 49.145905418000019 ], [ -123.155531206999981, 49.145909209000095 ], [ -123.156537095999951, 49.145913903000057 ], [ -123.156857196999937, 49.14591540100011 ], [ -123.156858171999914, 49.145667723000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225790667", "BldgCostT": "153301667", "sL_LossRatio": "0.716696895791222", "sL_AssetLoss": "5269201", "sL_BldgLoss": "3776420", "sL_StrLoss": "1660010", "sL_NStrLoss": "2116410", "sL_ContLoss": "1492781", "geom_point": "0101000020E61000008CC557B7D1C95EC03D51542E3B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147858495999941, 49.143815980000056 ], [ -123.147874812999973, 49.142451226000119 ], [ -123.147882414999941, 49.14181760000006 ], [ -123.147870982, 49.140952392000059 ], [ -123.149037884999984, 49.140959901000095 ], [ -123.150893699999955, 49.140972215000055 ], [ -123.151612762999918, 49.140973833000039 ], [ -123.153230666999946, 49.140977520000071 ], [ -123.15477068499996, 49.140981003000043 ], [ -123.157438590999931, 49.140998414000187 ], [ -123.158965914999968, 49.141005389000092 ], [ -123.158968897999941, 49.142480280000044 ], [ -123.158971795999918, 49.14391540000004 ], [ -123.157353149999935, 49.143905380000078 ], [ -123.156117314999904, 49.143897707000058 ], [ -123.154138214999975, 49.143884109000062 ], [ -123.154077482999966, 49.143874517000057 ], [ -123.153940314999957, 49.143871701000073 ], [ -123.151048909999972, 49.143874392000043 ], [ -123.149316301999988, 49.143863701000043 ], [ -123.148103107999987, 49.143850390000061 ], [ -123.147858495999941, 49.143815980000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113042501", "BldgCostT": "74275001", "sL_LossRatio": "0.704592897459023", "sL_AssetLoss": "2361690", "sL_BldgLoss": "1664030", "sL_StrLoss": "764560", "sL_NStrLoss": "899470", "sL_ContLoss": "697660", "geom_point": "0101000020E6100000D0202ECE52CA5EC07D7D318431924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158971795999918, 49.14391540000004 ], [ -123.158968897999941, 49.142480280000044 ], [ -123.158965914999968, 49.141005389000092 ], [ -123.163699620000017, 49.141006002000047 ], [ -123.165126679999929, 49.141016496000077 ], [ -123.165120432999942, 49.141644225000093 ], [ -123.16511811399999, 49.141876699000107 ], [ -123.164777638999951, 49.141874412000142 ], [ -123.162914376999964, 49.141861791000046 ], [ -123.162905307999907, 49.142546994000035 ], [ -123.162900303999905, 49.142924744000098 ], [ -123.1628984099999, 49.143067705000135 ], [ -123.162351101999931, 49.143054989000042 ], [ -123.162284612999926, 49.143061862000074 ], [ -123.161592782999932, 49.14313321000008 ], [ -123.161573038999947, 49.143133416000097 ], [ -123.161229379999952, 49.14313719000004 ], [ -123.160950715999945, 49.143101894000097 ], [ -123.160778291999975, 49.143390090000054 ], [ -123.160767399999941, 49.143904207000126 ], [ -123.158971795999918, 49.14391540000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110554667", "BldgCostT": "73561667", "sL_LossRatio": "0.69783746772606", "sL_AssetLoss": "2804120", "sL_BldgLoss": "1956820", "sL_StrLoss": "854220", "sL_NStrLoss": "1102600", "sL_ContLoss": "847300", "geom_point": "0101000020E6100000C4DE518450CA5EC0A7A94CCEDC914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158935713999981, 49.138739806000054 ], [ -123.158930259999948, 49.138342362000103 ], [ -123.1589182109999, 49.13745639400009 ], [ -123.160068887999941, 49.137458010000039 ], [ -123.160074921999936, 49.13830230000007 ], [ -123.161524, 49.138309009000089 ], [ -123.161738904999964, 49.138335393000034 ], [ -123.162224103999947, 49.138444591000138 ], [ -123.162415596999921, 49.138449603000083 ], [ -123.163700413999948, 49.138453796000071 ], [ -123.163699620000017, 49.141006002000047 ], [ -123.158965914999968, 49.141005389000092 ], [ -123.158935713999981, 49.138739806000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102830249", "BldgCostT": "66134999", "sL_LossRatio": "0.698150255162051", "sL_AssetLoss": "2082990", "sL_BldgLoss": "1454240", "sL_StrLoss": "609980", "sL_NStrLoss": "844260", "sL_ContLoss": "628750", "geom_point": "0101000020E61000005CA2370507CA5EC06142DC07E6914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15477068499996, 49.140981003000043 ], [ -123.154765104, 49.140062890000095 ], [ -123.15413789899999, 49.14005799300007 ], [ -123.154156780999955, 49.139032401000094 ], [ -123.154254501999915, 49.138891691000069 ], [ -123.154274876, 49.138877617000034 ], [ -123.15437609599995, 49.138807591000067 ], [ -123.154402204999897, 49.138798471000015 ], [ -123.154534284999897, 49.138752299 ], [ -123.154748804999912, 49.13871738600006 ], [ -123.154910081999972, 49.138719156000086 ], [ -123.156603990999955, 49.138737590000083 ], [ -123.157684923999966, 49.138738311000047 ], [ -123.158935713999981, 49.138739806000054 ], [ -123.158965914999968, 49.141005389000092 ], [ -123.157438590999931, 49.140998414000187 ], [ -123.15477068499996, 49.140981003000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "315430501", "BldgCostT": "201630001", "sL_LossRatio": "0.686204076010434", "sL_AssetLoss": "7521178", "sL_BldgLoss": "5161063", "sL_StrLoss": "2226303", "sL_NStrLoss": "2934760", "sL_ContLoss": "2360115", "geom_point": "0101000020E610000085379D2AC0C95EC07AAC73888F914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147870982, 49.140952392000059 ], [ -123.147863381999954, 49.139781112000065 ], [ -123.14785968699999, 49.139572890000089 ], [ -123.147857066999961, 49.139139755000073 ], [ -123.147854998999946, 49.138800704000055 ], [ -123.147850542999919, 49.138258193000091 ], [ -123.14784720599998, 49.137854502000039 ], [ -123.1478389319999, 49.136486116000107 ], [ -123.147835716999936, 49.135955364000054 ], [ -123.147832468, 49.135415641000051 ], [ -123.14782730899995, 49.134559388000078 ], [ -123.147802335000023, 49.133513713000127 ], [ -123.15177069899994, 49.133518803000101 ], [ -123.154345399999926, 49.133520813000118 ], [ -123.155103512, 49.133521403000024 ], [ -123.155110885999974, 49.1340720970001 ], [ -123.155109426999971, 49.134881094000079 ], [ -123.15511479299991, 49.135037002000054 ], [ -123.155136597999928, 49.13566920800011 ], [ -123.155146676999934, 49.136355900000098 ], [ -123.156300953999974, 49.136356781000124 ], [ -123.156443991999978, 49.136356909000021 ], [ -123.156634205, 49.13631499100007 ], [ -123.156780485999946, 49.136230602000133 ], [ -123.157206702999957, 49.135760678000082 ], [ -123.157316723999884, 49.13563940300002 ], [ -123.15746558699999, 49.13555681800009 ], [ -123.157662591999966, 49.135516094000074 ], [ -123.157764704999977, 49.135514599000018 ], [ -123.158057505, 49.135510299000053 ], [ -123.158886703999954, 49.135504307000083 ], [ -123.158906683999987, 49.136741228000091 ], [ -123.1589182109999, 49.13745639400009 ], [ -123.158930259999948, 49.138342362000103 ], [ -123.158935713999981, 49.138739806000054 ], [ -123.157684923999966, 49.138738311000047 ], [ -123.156603990999955, 49.138737590000083 ], [ -123.154910081999972, 49.138719156000086 ], [ -123.154748804999912, 49.13871738600006 ], [ -123.154534284999897, 49.138752299 ], [ -123.154402204999897, 49.138798471000015 ], [ -123.15437609599995, 49.138807591000067 ], [ -123.154274876, 49.138877617000034 ], [ -123.154254501999915, 49.138891691000069 ], [ -123.154156780999955, 49.139032401000094 ], [ -123.15413789899999, 49.14005799300007 ], [ -123.154765104, 49.140062890000095 ], [ -123.15477068499996, 49.140981003000043 ], [ -123.153230666999946, 49.140977520000071 ], [ -123.151612762999918, 49.140973833000039 ], [ -123.150893699999955, 49.140972215000055 ], [ -123.149037884999984, 49.140959901000095 ], [ -123.147870982, 49.140952392000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53953291", "BldgCostT": "36000374", "sL_LossRatio": "0.706770499613912", "sL_AssetLoss": "1217340", "sL_BldgLoss": "860380", "sL_StrLoss": "354440", "sL_NStrLoss": "505940", "sL_ContLoss": "356960", "geom_point": "0101000020E61000003EF94F9209CA5EC0E3449AFC3F914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155103512, 49.133521403000024 ], [ -123.158859112999977, 49.13353330300005 ], [ -123.158886703999954, 49.135504307000083 ], [ -123.158057505, 49.135510299000053 ], [ -123.157764704999977, 49.135514599000018 ], [ -123.157662591999966, 49.135516094000074 ], [ -123.15746558699999, 49.13555681800009 ], [ -123.157316723999884, 49.13563940300002 ], [ -123.157206702999957, 49.135760678000082 ], [ -123.156780485999946, 49.136230602000133 ], [ -123.156634205, 49.13631499100007 ], [ -123.156443991999978, 49.136356909000021 ], [ -123.156300953999974, 49.136356781000124 ], [ -123.155146676999934, 49.136355900000098 ], [ -123.155136597999928, 49.13566920800011 ], [ -123.15511479299991, 49.135037002000054 ], [ -123.155109426999971, 49.134881094000079 ], [ -123.155110885999974, 49.1340720970001 ], [ -123.155103512, 49.133521403000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66985729", "BldgCostT": "45784858", "sL_LossRatio": "0.72117539692126", "sL_AssetLoss": "1490220", "sL_BldgLoss": "1074710", "sL_StrLoss": "461720", "sL_NStrLoss": "612990", "sL_ContLoss": "415510", "geom_point": "0101000020E6100000DF15551A4CCA5EC0E052A59849914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158886703999954, 49.135504307000083 ], [ -123.158859112999977, 49.13353330300005 ], [ -123.161323510999935, 49.133578494000048 ], [ -123.163734713999958, 49.133621395000063 ], [ -123.163721404999961, 49.135299389000089 ], [ -123.163718820999961, 49.135691067000039 ], [ -123.163718108999916, 49.135803804000098 ], [ -123.162395174999929, 49.135817595000091 ], [ -123.162397591999934, 49.134430302000084 ], [ -123.161361697999908, 49.134411996000047 ], [ -123.160143805999965, 49.134389705000039 ], [ -123.160144788999929, 49.134867198000052 ], [ -123.160168488999972, 49.135825506000089 ], [ -123.160174393999966, 49.13640310800006 ], [ -123.160320397999968, 49.136524994000112 ], [ -123.160504915999937, 49.136599187000044 ], [ -123.160648715999969, 49.136600295000044 ], [ -123.16064699599994, 49.137458801 ], [ -123.160068887999941, 49.137458010000039 ], [ -123.1589182109999, 49.13745639400009 ], [ -123.158906683999987, 49.136741228000091 ], [ -123.158886703999954, 49.135504307000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89455706", "BldgCostT": "60659714", "sL_LossRatio": "0.711440221984918", "sL_AssetLoss": "2425390", "sL_BldgLoss": "1725520", "sL_StrLoss": "718060", "sL_NStrLoss": "1007460", "sL_ContLoss": "699870", "geom_point": "0101000020E610000025E7F6585BCA5EC02DD227667B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161738904999964, 49.138335393000034 ], [ -123.161524, 49.138309009000089 ], [ -123.160074921999936, 49.13830230000007 ], [ -123.160068887999941, 49.137458010000039 ], [ -123.16064699599994, 49.137458801 ], [ -123.160648715999969, 49.136600295000044 ], [ -123.160504915999937, 49.136599187000044 ], [ -123.160320397999968, 49.136524994000112 ], [ -123.160174393999966, 49.13640310800006 ], [ -123.160168488999972, 49.135825506000089 ], [ -123.160144788999929, 49.134867198000052 ], [ -123.160143805999965, 49.134389705000039 ], [ -123.161361697999908, 49.134411996000047 ], [ -123.162397591999934, 49.134430302000084 ], [ -123.162395174999929, 49.135817595000091 ], [ -123.163718108999916, 49.135803804000098 ], [ -123.163706797999964, 49.137355088000071 ], [ -123.163706001999984, 49.13746380200012 ], [ -123.163700413999948, 49.138453796000071 ], [ -123.162415596999921, 49.138449603000083 ], [ -123.162224103999947, 49.138444591000138 ], [ -123.161738904999964, 49.138335393000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110739749", "BldgCostT": "73634999", "sL_LossRatio": "0.699585479509543", "sL_AssetLoss": "2525810", "sL_BldgLoss": "1767020", "sL_StrLoss": "786740", "sL_NStrLoss": "980280", "sL_ContLoss": "758790", "geom_point": "0101000020E6100000C19CA8BE96CA5EC071720160A3914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.163700413999948, 49.138453796000071 ], [ -123.163706001999984, 49.13746380200012 ], [ -123.163706797999964, 49.137355088000071 ], [ -123.163718108999916, 49.135803804000098 ], [ -123.163718820999961, 49.135691067000039 ], [ -123.163721404999961, 49.135299389000089 ], [ -123.165045198999977, 49.135316302000078 ], [ -123.166839891, 49.135306674000027 ], [ -123.167262505999958, 49.13530439400008 ], [ -123.167434955999965, 49.136718813000066 ], [ -123.16744037399998, 49.136763309000138 ], [ -123.16744521199999, 49.136802904000021 ], [ -123.167443250999895, 49.137259942000092 ], [ -123.167441102999959, 49.137771205000028 ], [ -123.168524812999948, 49.137794385000056 ], [ -123.168528096999978, 49.138481798000029 ], [ -123.164909183, 49.138469408000105 ], [ -123.165009899, 49.139110810000091 ], [ -123.164956606999951, 49.14014271000007 ], [ -123.166584104999956, 49.140145006000111 ], [ -123.166562393999982, 49.14101829800007 ], [ -123.165126679999929, 49.141016496000077 ], [ -123.163699620000017, 49.141006002000047 ], [ -123.163700413999948, 49.138453796000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60225121", "BldgCostT": "39501379", "sL_LossRatio": "0.679894840841728", "sL_AssetLoss": "1761140", "sL_BldgLoss": "1197390", "sL_StrLoss": "483680", "sL_NStrLoss": "713710", "sL_ContLoss": "563750", "geom_point": "0101000020E6100000312A5F86B5CA5EC06F6BEAC062914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.165045198999977, 49.135316302000078 ], [ -123.165068864999952, 49.134754468000089 ], [ -123.165075890999972, 49.134587392000071 ], [ -123.165562388, 49.13459096600009 ], [ -123.167454844999952, 49.134604848000087 ], [ -123.167733701999936, 49.13460690800008 ], [ -123.168021095999933, 49.134702820000079 ], [ -123.16826561799995, 49.134917289000043 ], [ -123.168518785999964, 49.136767198000037 ], [ -123.168524812999948, 49.137794385000056 ], [ -123.167441102999959, 49.137771205000028 ], [ -123.167443250999895, 49.137259942000092 ], [ -123.16744521199999, 49.136802904000021 ], [ -123.16744037399998, 49.136763309000138 ], [ -123.167434955999965, 49.136718813000066 ], [ -123.167262505999958, 49.13530439400008 ], [ -123.166839891, 49.135306674000027 ], [ -123.165045198999977, 49.135316302000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66388334", "BldgCostT": "43783334", "sL_LossRatio": "0.703300772075367", "sL_AssetLoss": "1517857", "sL_BldgLoss": "1067510", "sL_StrLoss": "472590", "sL_NStrLoss": "594920", "sL_ContLoss": "450347", "geom_point": "0101000020E61000006100D161B8CA5EC0DB6AF72748914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169818896999942, 49.141022885000105 ], [ -123.169821193999951, 49.136774406000058 ], [ -123.168518785999964, 49.136767198000037 ], [ -123.16826561799995, 49.134917289000043 ], [ -123.168021095999933, 49.134702820000079 ], [ -123.167733701999936, 49.13460690800008 ], [ -123.167454844999952, 49.134604848000087 ], [ -123.165562388, 49.13459096600009 ], [ -123.165075890999972, 49.134587392000071 ], [ -123.165068864999952, 49.134754468000089 ], [ -123.165045198999977, 49.135316302000078 ], [ -123.163721404999961, 49.135299389000089 ], [ -123.163734713999958, 49.133621395000063 ], [ -123.166359186999955, 49.133669801000053 ], [ -123.168054410999943, 49.133700714000064 ], [ -123.169803519999959, 49.13373259100009 ], [ -123.170005989999979, 49.13697961900003 ], [ -123.169977503999945, 49.141023093000037 ], [ -123.169818896999942, 49.141022885000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108103456", "BldgCostT": "73817039", "sL_LossRatio": "0.715888304453097", "sL_AssetLoss": "2635020", "sL_BldgLoss": "1886380", "sL_StrLoss": "785300", "sL_NStrLoss": "1101080", "sL_ContLoss": "748640", "geom_point": "0101000020E610000051ACB759BECA5EC08153E59CD4914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166562393999982, 49.14101829800007 ], [ -123.166584104999956, 49.140145006000111 ], [ -123.164956606999951, 49.14014271000007 ], [ -123.165009899, 49.139110810000091 ], [ -123.164909183, 49.138469408000105 ], [ -123.168528096999978, 49.138481798000029 ], [ -123.168524812999948, 49.137794385000056 ], [ -123.168518785999964, 49.136767198000037 ], [ -123.169821193999951, 49.136774406000058 ], [ -123.169818896999942, 49.141022885000105 ], [ -123.166562393999982, 49.14101829800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90635061", "BldgCostT": "61598190", "sL_LossRatio": "0.704484444026694", "sL_AssetLoss": "2127800", "sL_BldgLoss": "1499002", "sL_StrLoss": "657872", "sL_NStrLoss": "841130", "sL_ContLoss": "628798", "geom_point": "0101000020E6100000E560E402A3CA5EC05BF5B16942924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160778291999975, 49.143390090000054 ], [ -123.160950715999945, 49.143101894000097 ], [ -123.161229379999952, 49.14313719000004 ], [ -123.161573038999947, 49.143133416000097 ], [ -123.161592782999932, 49.14313321000008 ], [ -123.162284612999926, 49.143061862000074 ], [ -123.162351101999931, 49.143054989000042 ], [ -123.1628984099999, 49.143067705000135 ], [ -123.162900303999905, 49.142924744000098 ], [ -123.162905307999907, 49.142546994000035 ], [ -123.162914376999964, 49.141861791000046 ], [ -123.164777638999951, 49.141874412000142 ], [ -123.16511811399999, 49.141876699000107 ], [ -123.165120432999942, 49.141644225000093 ], [ -123.165126679999929, 49.141016496000077 ], [ -123.166562393999982, 49.14101829800007 ], [ -123.169818896999942, 49.141022885000105 ], [ -123.169810009999978, 49.143918086 ], [ -123.168815943999974, 49.14391787700005 ], [ -123.168083509, 49.143917714000111 ], [ -123.16757709599996, 49.143908899000088 ], [ -123.167499595999971, 49.143908886000091 ], [ -123.166814056999968, 49.143908757000077 ], [ -123.166032455999968, 49.143908635000066 ], [ -123.165168618999957, 49.143908465000059 ], [ -123.163084410999957, 49.143908039000024 ], [ -123.162408704999947, 49.143907893000048 ], [ -123.160767399999941, 49.143904207000126 ], [ -123.160778291999975, 49.143390090000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196785166", "BldgCostT": "134506666", "sL_LossRatio": "0.726425356856898", "sL_AssetLoss": "3621900", "sL_BldgLoss": "2631040", "sL_StrLoss": "1233890", "sL_NStrLoss": "1397150", "sL_ContLoss": "990860", "geom_point": "0101000020E61000003E6BA77B97CA5EC088E38E71A4924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161633215999927, 49.147567501000061 ], [ -123.161652817999979, 49.146797803000041 ], [ -123.16023960699998, 49.146782086000059 ], [ -123.160253699999913, 49.145945594000025 ], [ -123.161384187999914, 49.14594390700006 ], [ -123.162492915999962, 49.145942507000029 ], [ -123.162487293999945, 49.144978399000074 ], [ -123.162436684999989, 49.144751910000132 ], [ -123.16238869599999, 49.144572213000124 ], [ -123.162408704999947, 49.143907893000048 ], [ -123.163084410999957, 49.143908039000024 ], [ -123.165168618999957, 49.143908465000059 ], [ -123.166032455999968, 49.143908635000066 ], [ -123.166814056999968, 49.143908757000077 ], [ -123.167499595999971, 49.143908886000091 ], [ -123.16757709599996, 49.143908899000088 ], [ -123.168083509, 49.143917714000111 ], [ -123.168815943999974, 49.14391787700005 ], [ -123.169810009999978, 49.143918086 ], [ -123.169812081999979, 49.144610967000105 ], [ -123.169815812999957, 49.145848915000073 ], [ -123.169814097999961, 49.146800092000063 ], [ -123.166702187999974, 49.14680020400003 ], [ -123.16567439, 49.1468010950001 ], [ -123.165668400999948, 49.147192797000095 ], [ -123.16561990699995, 49.147583407000063 ], [ -123.161633215999927, 49.147567501000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84910790", "BldgCostT": "58295373", "sL_LossRatio": "0.715643524960839", "sL_AssetLoss": "1829626", "sL_BldgLoss": "1309360", "sL_StrLoss": "582600", "sL_NStrLoss": "726760", "sL_ContLoss": "520266", "geom_point": "0101000020E6100000FCA5E10890CA5EC0046FC46ADE924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15896979499999, 49.148345016000057 ], [ -123.15895451599999, 49.14680138800005 ], [ -123.16023960699998, 49.146782086000059 ], [ -123.161652817999979, 49.146797803000041 ], [ -123.161633215999927, 49.147567501000061 ], [ -123.16561990699995, 49.147583407000063 ], [ -123.165668400999948, 49.147192797000095 ], [ -123.16567439, 49.1468010950001 ], [ -123.166702187999974, 49.14680020400003 ], [ -123.169814097999961, 49.146800092000063 ], [ -123.169815812999957, 49.145848915000073 ], [ -123.169812081999979, 49.144610967000105 ], [ -123.169810009999978, 49.143918086 ], [ -123.169818896999942, 49.141022885000105 ], [ -123.169977503999945, 49.141023093000037 ], [ -123.17002673699993, 49.143885605000094 ], [ -123.170018945999985, 49.14405363200008 ], [ -123.16999490399995, 49.144571921000072 ], [ -123.169985248, 49.144772483000047 ], [ -123.170001646999964, 49.145847165000127 ], [ -123.170010205999986, 49.148392786000102 ], [ -123.169815808999914, 49.148393809 ], [ -123.166432501999935, 49.148370612000079 ], [ -123.16258731299996, 49.148392690000051 ], [ -123.15896979499999, 49.148345016000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48803893", "BldgCostT": "30826522", "sL_LossRatio": "0.666628653699493", "sL_AssetLoss": "1403030", "sL_BldgLoss": "935300", "sL_StrLoss": "385850", "sL_NStrLoss": "549450", "sL_ContLoss": "467730", "geom_point": "0101000020E610000063D06D1506CB5EC054CB63EED6924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170001646999964, 49.145847165000127 ], [ -123.170247696, 49.145844887000045 ], [ -123.172113211999957, 49.145838525000023 ], [ -123.172611900000021, 49.145836802000105 ], [ -123.172876888999966, 49.145872597000057 ], [ -123.173485991999954, 49.145996708000098 ], [ -123.174077809999957, 49.146067191000093 ], [ -123.174115011999987, 49.146468988000066 ], [ -123.174248900999942, 49.14681489600008 ], [ -123.174798981999956, 49.14741310000008 ], [ -123.174914523999988, 49.147745806000025 ], [ -123.174908589999987, 49.147865499000041 ], [ -123.174883287999975, 49.148372009000084 ], [ -123.172512015999956, 49.148381798000038 ], [ -123.17244067699994, 49.148382915000113 ], [ -123.171017998999957, 49.148387611000032 ], [ -123.170010205999986, 49.148392786000102 ], [ -123.170001646999964, 49.145847165000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "386375417", "BldgCostT": "255181667", "sL_LossRatio": "0.730335576702543", "sL_AssetLoss": "7106870", "sL_BldgLoss": "5190400", "sL_StrLoss": "2248630", "sL_NStrLoss": "2941770", "sL_ContLoss": "1916470", "geom_point": "0101000020E610000046241B5903CB5EC0166299445E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169938242999976, 49.155613075000119 ], [ -123.169975583999985, 49.151867662000072 ], [ -123.170010205999986, 49.148392786000102 ], [ -123.171017998999957, 49.148387611000032 ], [ -123.17244067699994, 49.148382915000113 ], [ -123.172512015999956, 49.148381798000038 ], [ -123.174883287999975, 49.148372009000084 ], [ -123.174779507999943, 49.151877656000046 ], [ -123.174793647999977, 49.151911652000159 ], [ -123.174979243999928, 49.152358103000104 ], [ -123.17467281899998, 49.152355395000043 ], [ -123.173713254999953, 49.152346879000056 ], [ -123.173422280999944, 49.152344302000095 ], [ -123.17341293599992, 49.152579070000058 ], [ -123.173393473999951, 49.153065995000077 ], [ -123.173251013999945, 49.153063190000111 ], [ -123.172908480999965, 49.153056401000121 ], [ -123.172695388999898, 49.153052215000045 ], [ -123.172335496999935, 49.152976101000021 ], [ -123.17206999699999, 49.152969110000086 ], [ -123.171767694999943, 49.153027798000032 ], [ -123.171537006999955, 49.15314880100005 ], [ -123.171369086999974, 49.153339900000113 ], [ -123.171303707, 49.153558901000117 ], [ -123.171329207999918, 49.153816295000098 ], [ -123.171443008000011, 49.154018396000041 ], [ -123.171605216000032, 49.154205895000139 ], [ -123.171729579, 49.154349651000089 ], [ -123.172139064999939, 49.154823042000046 ], [ -123.172206085000013, 49.154900510000111 ], [ -123.172261414, 49.155050607000121 ], [ -123.172262884999967, 49.155635294000092 ], [ -123.171691187999954, 49.155637390000088 ], [ -123.170290321999985, 49.15561950000005 ], [ -123.16998030799999, 49.155613831000096 ], [ -123.169938242999976, 49.155613075000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116797417", "BldgCostT": "75216667", "sL_LossRatio": "0.665770970889081", "sL_AssetLoss": "2894584", "sL_BldgLoss": "1927130", "sL_StrLoss": "821190", "sL_NStrLoss": "1105940", "sL_ContLoss": "967454", "geom_point": "0101000020E610000041F4B578C2CA5EC0F58CAF0388934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168357457999917, 49.149627115000065 ], [ -123.168352408999937, 49.149359798000084 ], [ -123.167860605999948, 49.149361106000121 ], [ -123.166424005999957, 49.149364900000073 ], [ -123.166432501999935, 49.148370612000079 ], [ -123.169815808999914, 49.148393809 ], [ -123.170010205999986, 49.148392786000102 ], [ -123.169975583999985, 49.151867662000072 ], [ -123.169938242999976, 49.155613075000119 ], [ -123.169835725000013, 49.155611208000032 ], [ -123.165056994999986, 49.155604296000071 ], [ -123.165042596999967, 49.154716601000075 ], [ -123.165024493999951, 49.154046801000099 ], [ -123.165007043999978, 49.153670857000044 ], [ -123.164994911999955, 49.153409096000146 ], [ -123.165040714999961, 49.153331889000114 ], [ -123.16516130299999, 49.153309905000071 ], [ -123.165433257999936, 49.153310883000067 ], [ -123.166586308999982, 49.153315009000103 ], [ -123.167974522999927, 49.153315500000062 ], [ -123.16798850899994, 49.152478009000077 ], [ -123.167988186999949, 49.152353462000058 ], [ -123.167987182000019, 49.151982492000073 ], [ -123.168106183999967, 49.151761298000039 ], [ -123.168252699999968, 49.151627407000028 ], [ -123.168328110999965, 49.151559996000074 ], [ -123.16838971, 49.151336412000035 ], [ -123.168388839999949, 49.151290954000054 ], [ -123.16837768799995, 49.150700893000128 ], [ -123.168357457999917, 49.149627115000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80680667", "BldgCostT": "53461667", "sL_LossRatio": "0.718848670946931", "sL_AssetLoss": "1612050", "sL_BldgLoss": "1158820", "sL_StrLoss": "504350", "sL_NStrLoss": "654470", "sL_ContLoss": "453230", "geom_point": "0101000020E61000007F572D7E8DCA5EC0414DE3CD50934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162274479999937, 49.151821957000095 ], [ -123.162270493999955, 49.151565303000105 ], [ -123.161944033999958, 49.151564583000024 ], [ -123.160369903999978, 49.1515610820001 ], [ -123.160357180999952, 49.150692298000081 ], [ -123.160764525, 49.150686895000028 ], [ -123.161119288999899, 49.150621494000099 ], [ -123.16144090099999, 49.150516386000035 ], [ -123.161746113, 49.150344304000107 ], [ -123.161989993999924, 49.15014259800008 ], [ -123.162191486999973, 49.149871390000023 ], [ -123.162268687999969, 49.149616699000042 ], [ -123.162272683999987, 49.149349192000088 ], [ -123.16285999199999, 49.149350090000041 ], [ -123.163652610999932, 49.149351300000056 ], [ -123.165022523999951, 49.149358600000049 ], [ -123.166424005999957, 49.149364900000073 ], [ -123.167860605999948, 49.149361106000121 ], [ -123.168352408999937, 49.149359798000084 ], [ -123.168357457999917, 49.149627115000065 ], [ -123.16837768799995, 49.150700893000128 ], [ -123.168388839999949, 49.151290954000054 ], [ -123.16838971, 49.151336412000035 ], [ -123.168328110999965, 49.151559996000074 ], [ -123.168252699999968, 49.151627407000028 ], [ -123.168106183999967, 49.151761298000039 ], [ -123.167987182000019, 49.151982492000073 ], [ -123.167988186999949, 49.152353462000058 ], [ -123.16798850899994, 49.152478009000077 ], [ -123.162284381999882, 49.152459299000036 ], [ -123.162274479999937, 49.151821957000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127680749", "BldgCostT": "85139999", "sL_LossRatio": "0.739277846874074", "sL_AssetLoss": "2030982", "sL_BldgLoss": "1501460", "sL_StrLoss": "686600", "sL_NStrLoss": "814860", "sL_ContLoss": "529522", "geom_point": "0101000020E610000080E552A662CA5EC065E8A751AB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158930386999941, 49.153481712 ], [ -123.158930013999949, 49.151553703000019 ], [ -123.160369903999978, 49.1515610820001 ], [ -123.161944033999958, 49.151564583000024 ], [ -123.162270493999955, 49.151565303000105 ], [ -123.162274479999937, 49.151821957000095 ], [ -123.162284381999882, 49.152459299000036 ], [ -123.16798850899994, 49.152478009000077 ], [ -123.167974522999927, 49.153315500000062 ], [ -123.166586308999982, 49.153315009000103 ], [ -123.165433257999936, 49.153310883000067 ], [ -123.16516130299999, 49.153309905000071 ], [ -123.165040714999961, 49.153331889000114 ], [ -123.164994911999955, 49.153409096000146 ], [ -123.165007043999978, 49.153670857000044 ], [ -123.165024493999951, 49.154046801000099 ], [ -123.165042596999967, 49.154716601000075 ], [ -123.165056994999986, 49.155604296000071 ], [ -123.161445415999978, 49.15558570000006 ], [ -123.15893080599993, 49.155579690000074 ], [ -123.158930386999941, 49.153481712 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55854083", "BldgCostT": "38048333", "sL_LossRatio": "0.734425346627514", "sL_AssetLoss": "1091806", "sL_BldgLoss": "801850", "sL_StrLoss": "359230", "sL_NStrLoss": "442620", "sL_ContLoss": "289956", "geom_point": "0101000020E6100000112C58F458CA5EC0821F07EB20934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16258731299996, 49.148392690000051 ], [ -123.166432501999935, 49.148370612000079 ], [ -123.166424005999957, 49.149364900000073 ], [ -123.165022523999951, 49.149358600000049 ], [ -123.163652610999932, 49.149351300000056 ], [ -123.16285999199999, 49.149350090000041 ], [ -123.162272683999987, 49.149349192000088 ], [ -123.162268687999969, 49.149616699000042 ], [ -123.162191486999973, 49.149871390000023 ], [ -123.161989993999924, 49.15014259800008 ], [ -123.161746113, 49.150344304000107 ], [ -123.16144090099999, 49.150516386000035 ], [ -123.161119288999899, 49.150621494000099 ], [ -123.160764525, 49.150686895000028 ], [ -123.160357180999952, 49.150692298000081 ], [ -123.160369903999978, 49.1515610820001 ], [ -123.158930013999949, 49.151553703000019 ], [ -123.158935010999969, 49.151091700000102 ], [ -123.158963337999978, 49.14885556100004 ], [ -123.15896979499999, 49.148345016000057 ], [ -123.16258731299996, 49.148392690000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108228084", "BldgCostT": "74168334", "sL_LossRatio": "0.775461314152976", "sL_AssetLoss": "1375852", "sL_BldgLoss": "1066920", "sL_StrLoss": "548980", "sL_NStrLoss": "517940", "sL_ContLoss": "308932", "geom_point": "0101000020E61000000C442EBC7BCA5EC0CD1FBA3D14944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160283011999923, 49.15875309100003 ], [ -123.160313922999933, 49.15719280200004 ], [ -123.158900992999989, 49.15718970300005 ], [ -123.15893080599993, 49.155579690000074 ], [ -123.161445415999978, 49.15558570000006 ], [ -123.165056994999986, 49.155604296000071 ], [ -123.169835725000013, 49.155611208000032 ], [ -123.169834301999984, 49.157053386000044 ], [ -123.168368214999958, 49.15704730100007 ], [ -123.16836856899999, 49.156823636000119 ], [ -123.168368778999977, 49.156676997000034 ], [ -123.168283199999976, 49.156676812000086 ], [ -123.167940267999967, 49.156676086000104 ], [ -123.167022992999961, 49.156674097000064 ], [ -123.167019502999935, 49.157902709000069 ], [ -123.165652578999939, 49.157908199000097 ], [ -123.164333003999928, 49.157903209000082 ], [ -123.164322421999955, 49.158116344000042 ], [ -123.164303515999919, 49.158498803000064 ], [ -123.164235793999978, 49.158778112000114 ], [ -123.160283011999923, 49.15875309100003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84561145", "BldgCostT": "55466524", "sL_LossRatio": "0.689730453513419", "sL_AssetLoss": "1855116", "sL_BldgLoss": "1279530", "sL_StrLoss": "555670", "sL_NStrLoss": "723860", "sL_ContLoss": "575586", "geom_point": "0101000020E61000007DACCF8B49CA5EC00A5D2E8782944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158882808999962, 49.160201703000048 ], [ -123.158900992999989, 49.15718970300005 ], [ -123.160313922999933, 49.15719280200004 ], [ -123.160283011999923, 49.15875309100003 ], [ -123.164235793999978, 49.158778112000114 ], [ -123.16418325099994, 49.158911559 ], [ -123.164157912999897, 49.158975999000077 ], [ -123.163975691999909, 49.15922159300009 ], [ -123.16309181299998, 49.160163184000083 ], [ -123.163090477999944, 49.160319898000061 ], [ -123.163176196999984, 49.160577086000046 ], [ -123.162432504999941, 49.160769211000051 ], [ -123.162085671999961, 49.161039293000023 ], [ -123.161925293999914, 49.161646794000035 ], [ -123.161940101999946, 49.161762484000072 ], [ -123.161939514999972, 49.161942211000145 ], [ -123.161937094999956, 49.162687595000136 ], [ -123.161936487999981, 49.162810104000073 ], [ -123.158880397999923, 49.16279820799999 ], [ -123.15886669799994, 49.162798152000086 ], [ -123.158852998999947, 49.16279809500007 ], [ -123.158853355999909, 49.162762068000028 ], [ -123.158853455999989, 49.162753049000088 ], [ -123.158854100999989, 49.16269 ], [ -123.158878978999965, 49.161093503000117 ], [ -123.158882808999962, 49.160201703000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255887365", "BldgCostT": "166636937", "sL_LossRatio": "0.708491675167039", "sL_AssetLoss": "3675329", "sL_BldgLoss": "2603940", "sL_StrLoss": "1256700", "sL_NStrLoss": "1347240", "sL_ContLoss": "1071389", "geom_point": "0101000020E6100000BECEB0C5ACCA5EC049DFC6C180944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161937094999956, 49.162687595000136 ], [ -123.161939514999972, 49.161942211000145 ], [ -123.161940101999946, 49.161762484000072 ], [ -123.161925293999914, 49.161646794000035 ], [ -123.162085671999961, 49.161039293000023 ], [ -123.162432504999941, 49.160769211000051 ], [ -123.163176196999984, 49.160577086000046 ], [ -123.163090477999944, 49.160319898000061 ], [ -123.16309181299998, 49.160163184000083 ], [ -123.163975691999909, 49.15922159300009 ], [ -123.164157912999897, 49.158975999000077 ], [ -123.16418325099994, 49.158911559 ], [ -123.164235793999978, 49.158778112000114 ], [ -123.164303515999919, 49.158498803000064 ], [ -123.164322421999955, 49.158116344000042 ], [ -123.164333003999928, 49.157903209000082 ], [ -123.165652578999939, 49.157908199000097 ], [ -123.167019502999935, 49.157902709000069 ], [ -123.167022992999961, 49.156674097000064 ], [ -123.167940267999967, 49.156676086000104 ], [ -123.168283199999976, 49.156676812000086 ], [ -123.168368778999977, 49.156676997000034 ], [ -123.16836856899999, 49.156823636000119 ], [ -123.168368214999958, 49.15704730100007 ], [ -123.169834301999984, 49.157053386000044 ], [ -123.169835725000013, 49.155611208000032 ], [ -123.169938242999976, 49.155613075000119 ], [ -123.16998030799999, 49.155613831000096 ], [ -123.170290321999985, 49.15561950000005 ], [ -123.17029520799997, 49.161958100000106 ], [ -123.170298002999957, 49.162879690000061 ], [ -123.170076880999929, 49.162847239000044 ], [ -123.169884774999957, 49.162819053000078 ], [ -123.169849686999953, 49.162813888000088 ], [ -123.169679912999925, 49.16273864699999 ], [ -123.169395876999914, 49.162612808000119 ], [ -123.169089110999892, 49.162406493000042 ], [ -123.169010041999982, 49.162438989000073 ], [ -123.168854299999964, 49.162502991000025 ], [ -123.168769987999966, 49.162581901000102 ], [ -123.168469591999923, 49.16267488600004 ], [ -123.167998394999955, 49.162759810000125 ], [ -123.166383590999985, 49.16278301400007 ], [ -123.166365712999962, 49.162783290000085 ], [ -123.164568400999926, 49.162809108000047 ], [ -123.161936487999981, 49.162810104000073 ], [ -123.161937094999956, 49.162687595000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229121190", "BldgCostT": "147880826", "sL_LossRatio": "0.71087019036238", "sL_AssetLoss": "4134693", "sL_BldgLoss": "2939230", "sL_StrLoss": "1290800", "sL_NStrLoss": "1648430", "sL_ContLoss": "1195463", "geom_point": "0101000020E6100000A6DED8BB58CA5EC04A94CED1F4944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158852998999947, 49.16279809500007 ], [ -123.15886669799994, 49.162798152000086 ], [ -123.158880397999923, 49.16279820799999 ], [ -123.161936487999981, 49.162810104000073 ], [ -123.164568400999926, 49.162809108000047 ], [ -123.164559325999946, 49.164635809000117 ], [ -123.164559295999979, 49.164644803000023 ], [ -123.162415898999967, 49.164635198000056 ], [ -123.161760790999921, 49.164632415000085 ], [ -123.160009394, 49.164623986000052 ], [ -123.158907592999967, 49.164619307000066 ], [ -123.158736317999939, 49.164617405000044 ], [ -123.158752110999913, 49.16312509400008 ], [ -123.15884749899999, 49.163023206000048 ], [ -123.158852998999947, 49.16279809500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139361372", "BldgCostT": "94551380", "sL_LossRatio": "0.733609183595104", "sL_AssetLoss": "2460997", "sL_BldgLoss": "1805410", "sL_StrLoss": "843720", "sL_NStrLoss": "961690", "sL_ContLoss": "655587", "geom_point": "0101000020E6100000C162816D4CCA5EC02944FACC5D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162415898999967, 49.164635198000056 ], [ -123.164559295999979, 49.164644803000023 ], [ -123.164558163999985, 49.164978877000088 ], [ -123.16455601, 49.165597809000069 ], [ -123.164553961999971, 49.165797393000098 ], [ -123.164550994999942, 49.166085094000017 ], [ -123.16440097899999, 49.166367899000065 ], [ -123.164356795999936, 49.166504300000099 ], [ -123.161684896999972, 49.166505903000065 ], [ -123.161677483999981, 49.167793896000084 ], [ -123.161669594999978, 49.170102596000063 ], [ -123.158911093999961, 49.170103705000074 ], [ -123.158911501999938, 49.170141157000025 ], [ -123.15891211, 49.170198286000108 ], [ -123.158699516999945, 49.170199900000092 ], [ -123.158698971999968, 49.170141438000051 ], [ -123.158698591999936, 49.170102604000114 ], [ -123.158713778999953, 49.168391058000076 ], [ -123.1587304869999, 49.166507287000087 ], [ -123.158729306999973, 49.165270389000028 ], [ -123.158729404, 49.165261312000084 ], [ -123.158736317999939, 49.164617405000044 ], [ -123.158907592999967, 49.164619307000066 ], [ -123.160009394, 49.164623986000052 ], [ -123.161760790999921, 49.164632415000085 ], [ -123.162415898999967, 49.164635198000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "680478342", "BldgCostT": "468126793", "sL_LossRatio": "0.84514183187431", "sL_AssetLoss": "3502915", "sL_BldgLoss": "2960460", "sL_StrLoss": "1620260", "sL_NStrLoss": "1340200", "sL_ContLoss": "542455", "geom_point": "0101000020E6100000001C7BF65CCA5EC07D2EB6BD1B964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157932498999941, 49.173933510000026 ], [ -123.158394412999925, 49.17299350600004 ], [ -123.158591487999928, 49.17252758900004 ], [ -123.158633776999949, 49.172282225000053 ], [ -123.1586766, 49.172033434000113 ], [ -123.158719094999938, 49.171786801000067 ], [ -123.158699516999945, 49.170199900000092 ], [ -123.15891211, 49.170198286000108 ], [ -123.158911501999938, 49.170141157000025 ], [ -123.158911093999961, 49.170103705000074 ], [ -123.161669594999978, 49.170102596000063 ], [ -123.161685570999907, 49.170190054000088 ], [ -123.161845091999979, 49.171063702000026 ], [ -123.160506893999965, 49.171069199000044 ], [ -123.16038618, 49.171091202000042 ], [ -123.160300802000037, 49.171142993000096 ], [ -123.16026169, 49.171222218000054 ], [ -123.16039864699998, 49.172279670000108 ], [ -123.160415394999973, 49.172409004000059 ], [ -123.160521393999915, 49.172410460000044 ], [ -123.161620991999939, 49.172425505000035 ], [ -123.161821777999975, 49.172398871000041 ], [ -123.162125521999911, 49.172358599000056 ], [ -123.163225390999969, 49.172101978000079 ], [ -123.163284086999937, 49.172088290000026 ], [ -123.163625115999977, 49.172049495000081 ], [ -123.164456900999951, 49.172055198000052 ], [ -123.164439801, 49.173460992000123 ], [ -123.165536113999963, 49.173469108000035 ], [ -123.169978700999962, 49.173577814000105 ], [ -123.170449498999943, 49.173781138000052 ], [ -123.170454445999951, 49.173852148000066 ], [ -123.170442317999957, 49.174130702000063 ], [ -123.170041916999978, 49.17388509400007 ], [ -123.16972662299996, 49.173876506000077 ], [ -123.169067886999926, 49.173878 ], [ -123.168731092999948, 49.17394469700011 ], [ -123.168716274999952, 49.173947631000026 ], [ -123.168681733999961, 49.173954463 ], [ -123.168563810999956, 49.173977827000023 ], [ -123.168473176999925, 49.173995773000087 ], [ -123.168407172999977, 49.174008852000085 ], [ -123.168318675999942, 49.174026365000053 ], [ -123.167464008999971, 49.174195599000015 ], [ -123.166408589999989, 49.174223997000141 ], [ -123.165062608999946, 49.174135708000087 ], [ -123.164875717999948, 49.174006751000135 ], [ -123.164567199999937, 49.173793889000109 ], [ -123.163978791999924, 49.173786794000065 ], [ -123.163591371999971, 49.173858545000066 ], [ -123.163101781999941, 49.173949195 ], [ -123.161235205999972, 49.173979084000102 ], [ -123.158450801999948, 49.174208412000041 ], [ -123.157700702999975, 49.174366223000071 ], [ -123.157703945999941, 49.174360171000046 ], [ -123.15776141, 49.174252828000121 ], [ -123.157932498999941, 49.173933510000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163454084", "BldgCostT": "107218334", "sL_LossRatio": "0.794321735176634", "sL_AssetLoss": "1145843", "sL_BldgLoss": "910168", "sL_StrLoss": "528288", "sL_NStrLoss": "381880", "sL_ContLoss": "235675", "geom_point": "0101000020E610000080C444BDBFC95EC035BC078514964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145280947999979, 49.174274508000096 ], [ -123.145544898999944, 49.173838291000088 ], [ -123.145618321999962, 49.173759163000057 ], [ -123.145622626999966, 49.173666486000123 ], [ -123.146569567999933, 49.172535785000051 ], [ -123.146575869999964, 49.172527767000091 ], [ -123.147562666999974, 49.171276595000059 ], [ -123.147608609999963, 49.171019302000055 ], [ -123.14761268499997, 49.170417591000074 ], [ -123.147705603999938, 49.170333595000095 ], [ -123.147706186999983, 49.170211107000064 ], [ -123.147719938999956, 49.170211117000051 ], [ -123.151154179999963, 49.170212299000077 ], [ -123.151153788999949, 49.170178722000053 ], [ -123.151152994999961, 49.170119505000059 ], [ -123.151165708999883, 49.169018098000095 ], [ -123.151273331999931, 49.169018407000095 ], [ -123.15141051199997, 49.169018802000096 ], [ -123.151892188999909, 49.169020197000066 ], [ -123.152169479999955, 49.169036493000121 ], [ -123.152840095999963, 49.168988506000062 ], [ -123.153110218, 49.168943388000024 ], [ -123.153626104999944, 49.168801191000071 ], [ -123.15382688899993, 49.169104602000054 ], [ -123.153901299999973, 49.16941289800009 ], [ -123.153898292999941, 49.169551556000059 ], [ -123.153895770999924, 49.169662395000024 ], [ -123.154955384999965, 49.169661496000082 ], [ -123.155227125999915, 49.169665650000063 ], [ -123.155445683999986, 49.16966900400007 ], [ -123.155665894999956, 49.169633396000023 ], [ -123.155841590999927, 49.169563293000095 ], [ -123.15606180799989, 49.16942580500006 ], [ -123.156180788999947, 49.169351508000084 ], [ -123.156884905999902, 49.168890893000018 ], [ -123.157616105999935, 49.168412003000057 ], [ -123.157630280999939, 49.168402734000075 ], [ -123.157861692999973, 49.168251796000014 ], [ -123.158025684999956, 49.168102997000069 ], [ -123.158075904999961, 49.167954801000057 ], [ -123.158074906, 49.167884134000118 ], [ -123.158068693999923, 49.167443807000055 ], [ -123.158089721999929, 49.165978698000096 ], [ -123.15685768899999, 49.165972297000017 ], [ -123.156861599999942, 49.166446179000083 ], [ -123.156621585999943, 49.166448009000092 ], [ -123.156383987999973, 49.166411105000108 ], [ -123.156139689999961, 49.166325396000026 ], [ -123.155899383999937, 49.166153300000104 ], [ -123.155780813999925, 49.165962807000064 ], [ -123.155780042999936, 49.165957565000106 ], [ -123.155746888999914, 49.165732101000067 ], [ -123.155765121999934, 49.165390292000104 ], [ -123.155901488000012, 49.165177707000133 ], [ -123.156056881999973, 49.165034994000088 ], [ -123.156254508999908, 49.164942010000125 ], [ -123.156468017999899, 49.164880107000045 ], [ -123.15686969599993, 49.164856402000083 ], [ -123.156854097999911, 49.165291988000092 ], [ -123.158729306999973, 49.165270389000028 ], [ -123.1587304869999, 49.166507287000087 ], [ -123.158713778999953, 49.168391058000076 ], [ -123.158698591999936, 49.170102604000114 ], [ -123.158698971999968, 49.170141438000051 ], [ -123.158699516999945, 49.170199900000092 ], [ -123.158719094999938, 49.171786801000067 ], [ -123.1586766, 49.172033434000113 ], [ -123.158633776999949, 49.172282225000053 ], [ -123.158591487999928, 49.17252758900004 ], [ -123.158394412999925, 49.17299350600004 ], [ -123.157932498999941, 49.173933510000026 ], [ -123.15776141, 49.174252828000121 ], [ -123.157703945999941, 49.174360171000046 ], [ -123.157700702999975, 49.174366223000071 ], [ -123.156365544999986, 49.174647104000073 ], [ -123.156374241999941, 49.174504913000042 ], [ -123.156374569999983, 49.174499548000043 ], [ -123.155796155999965, 49.174500330000107 ], [ -123.155796579999944, 49.174635494000064 ], [ -123.155796992999953, 49.174766706000092 ], [ -123.155780328999967, 49.174770212000027 ], [ -123.155153731999974, 49.174771055000079 ], [ -123.154562206999941, 49.174771850000049 ], [ -123.154562609999985, 49.174900986000068 ], [ -123.154563034999967, 49.175037404000101 ], [ -123.154548000999938, 49.175041728000139 ], [ -123.154101769999926, 49.175042325000049 ], [ -123.153739844999976, 49.175042807000089 ], [ -123.153740187999972, 49.175153219000023 ], [ -123.15374059, 49.175283422000057 ], [ -123.153665701999984, 49.175312765000115 ], [ -123.15323481199999, 49.175313339000041 ], [ -123.152917475, 49.175313758000073 ], [ -123.152917841999951, 49.175433078000069 ], [ -123.152918306999979, 49.175583618000068 ], [ -123.15251792699999, 49.175584148000105 ], [ -123.152506700999965, 49.175584162000071 ], [ -123.15250671299999, 49.175588383000097 ], [ -123.152507261999958, 49.17576667100014 ], [ -123.152377015999974, 49.175817704000067 ], [ -123.152298564999924, 49.1758542970001 ], [ -123.15209592299999, 49.175854564000097 ], [ -123.152096210999943, 49.175948686000105 ], [ -123.15171838400002, 49.176124922000028 ], [ -123.151273527999962, 49.176125506000098 ], [ -123.151274158999954, 49.17633212700008 ], [ -123.151138220999925, 49.176395543000112 ], [ -123.150452512999919, 49.176396438000019 ], [ -123.150451126999926, 49.176396441000108 ], [ -123.15045112899999, 49.176396966000055 ], [ -123.150451945, 49.176666299 ], [ -123.150357583999948, 49.176666422000025 ], [ -123.150351699999973, 49.176762425000113 ], [ -123.149980204999977, 49.176935705000041 ], [ -123.149047615999933, 49.177233390000097 ], [ -123.148175329999987, 49.177639727000056 ], [ -123.147730738999954, 49.177846822000042 ], [ -123.14772363799996, 49.177840475000046 ], [ -123.147631120999975, 49.177757795000076 ], [ -123.147503798999963, 49.177644002000079 ], [ -123.147270890999948, 49.177435668000037 ], [ -123.147107331999976, 49.177289395000095 ], [ -123.145717413999989, 49.176053535000086 ], [ -123.145445235999915, 49.17572921600005 ], [ -123.145270325999931, 49.175407488000097 ], [ -123.145195064999939, 49.1751145160001 ], [ -123.145174763999947, 49.174663570000092 ], [ -123.145280947999979, 49.174274508000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66242251", "BldgCostT": "44685001", "sL_LossRatio": "0.733426696137817", "sL_AssetLoss": "1185340", "sL_BldgLoss": "869360", "sL_StrLoss": "410370", "sL_NStrLoss": "458990", "sL_ContLoss": "315980", "geom_point": "0101000020E61000000DFA7F93F5C95EC0FC82ED927E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.153183226999943, 49.168364361000116 ], [ -123.152484788999942, 49.167904773000039 ], [ -123.152294406999914, 49.167779493000083 ], [ -123.152216088999964, 49.167670198000096 ], [ -123.152189879999938, 49.167538891000049 ], [ -123.152276699999973, 49.167397095000069 ], [ -123.152308102999939, 49.167373200000021 ], [ -123.152388912999982, 49.167311794000049 ], [ -123.152546695999987, 49.167242098000017 ], [ -123.152712900999958, 49.16721400600003 ], [ -123.152913404999964, 49.167230997000047 ], [ -123.1530871099999, 49.167304999000123 ], [ -123.153277272999944, 49.1674279920001 ], [ -123.15464718799997, 49.168313814000015 ], [ -123.155104177999974, 49.168026288000078 ], [ -123.155407098999902, 49.167835710000048 ], [ -123.154081198999933, 49.166961966000059 ], [ -123.154032710999928, 49.166930005000061 ], [ -123.153914599999936, 49.166798088000057 ], [ -123.153909915999961, 49.166629499000116 ], [ -123.153986615999912, 49.166496388000084 ], [ -123.15411901399996, 49.166416095000059 ], [ -123.154279796999958, 49.166364501000011 ], [ -123.154427307999981, 49.166350382000125 ], [ -123.154699806999957, 49.166399904000116 ], [ -123.154868681999972, 49.166486392000081 ], [ -123.154932666999926, 49.166527518000045 ], [ -123.156194298999964, 49.167338495000138 ], [ -123.156452248999969, 49.16715869500004 ], [ -123.156777095999985, 49.16693231600005 ], [ -123.156864203999959, 49.166763404000044 ], [ -123.156863001999966, 49.166617704 ], [ -123.156861599999942, 49.166446179000083 ], [ -123.15685768899999, 49.165972297000017 ], [ -123.158089721999929, 49.165978698000096 ], [ -123.158068693999923, 49.167443807000055 ], [ -123.158074906, 49.167884134000118 ], [ -123.158075904999961, 49.167954801000057 ], [ -123.158025684999956, 49.168102997000069 ], [ -123.157861692999973, 49.168251796000014 ], [ -123.157630280999939, 49.168402734000075 ], [ -123.157616105999935, 49.168412003000057 ], [ -123.156884905999902, 49.168890893000018 ], [ -123.156180788999947, 49.169351508000084 ], [ -123.15606180799989, 49.16942580500006 ], [ -123.155841590999927, 49.169563293000095 ], [ -123.155665894999956, 49.169633396000023 ], [ -123.155445683999986, 49.16966900400007 ], [ -123.155227125999915, 49.169665650000063 ], [ -123.154955384999965, 49.169661496000082 ], [ -123.153895770999924, 49.169662395000024 ], [ -123.153898292999941, 49.169551556000059 ], [ -123.153901299999973, 49.16941289800009 ], [ -123.15382688899993, 49.169104602000054 ], [ -123.153626104999944, 49.168801191000071 ], [ -123.15344139299999, 49.168571987000099 ], [ -123.153230088999933, 49.168395202000049 ], [ -123.153183226999943, 49.168364361000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118796750", "BldgCostT": "78245000", "sL_LossRatio": "0.72246348203711", "sL_AssetLoss": "1952943", "sL_BldgLoss": "1410930", "sL_StrLoss": "665740", "sL_NStrLoss": "745190", "sL_ContLoss": "542013", "geom_point": "0101000020E61000005107E4D81BCB5EC0A6D6CA9DFC954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169978700999962, 49.173577814000105 ], [ -123.16999201499999, 49.172480994000104 ], [ -123.170022986999939, 49.170935003000054 ], [ -123.170025176999943, 49.17017839600004 ], [ -123.17003891199991, 49.170178437000082 ], [ -123.174953198, 49.170189805000078 ], [ -123.174966926999957, 49.170189674000021 ], [ -123.178186288999925, 49.170160088000038 ], [ -123.178173252, 49.171156617000129 ], [ -123.178172712, 49.171198493000112 ], [ -123.17813311, 49.171286602000066 ], [ -123.177956402999925, 49.171418897000152 ], [ -123.177868495999988, 49.171443597000064 ], [ -123.176548687999912, 49.171526100000037 ], [ -123.176404823999945, 49.171570997000124 ], [ -123.176293084999912, 49.1716482080001 ], [ -123.176233511999953, 49.171750310000043 ], [ -123.176219182999944, 49.172977704000083 ], [ -123.176216313999973, 49.173725409000021 ], [ -123.172948181999942, 49.173513498000041 ], [ -123.172129376999948, 49.173529053000067 ], [ -123.171394423, 49.173543008000102 ], [ -123.169978700999962, 49.173577814000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99186583", "BldgCostT": "66193333", "sL_LossRatio": "0.7090157337907", "sL_AssetLoss": "2311204", "sL_BldgLoss": "1638680", "sL_StrLoss": "718880", "sL_NStrLoss": "919800", "sL_ContLoss": "672524", "geom_point": "0101000020E61000004FCD693F67CB5EC03FA4A51385954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.179972710999934, 49.165911785000063 ], [ -123.18121721299994, 49.165914588000064 ], [ -123.181222847999948, 49.167202782000111 ], [ -123.18122627399994, 49.16798536500005 ], [ -123.18123574199997, 49.170131924000046 ], [ -123.181139813999891, 49.170131209000033 ], [ -123.181056153999961, 49.170154243000106 ], [ -123.180086288, 49.170164378000081 ], [ -123.180072525999961, 49.1701645220001 ], [ -123.178200078999964, 49.170160140000135 ], [ -123.178186288999925, 49.170160088000038 ], [ -123.174966926999957, 49.170189674000021 ], [ -123.174953198, 49.170189805000078 ], [ -123.174952479, 49.170153566000103 ], [ -123.1749515059999, 49.170105106000044 ], [ -123.174935718999933, 49.169304706000062 ], [ -123.174941593999904, 49.167672511000021 ], [ -123.174942199999961, 49.16648880400006 ], [ -123.17694999499993, 49.166497401000122 ], [ -123.176943423999916, 49.165906206000066 ], [ -123.179794602999962, 49.165909784000092 ], [ -123.179972710999934, 49.165911785000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97311249", "BldgCostT": "64404999", "sL_LossRatio": "0.707261223958916", "sL_AssetLoss": "2414166", "sL_BldgLoss": "1707446", "sL_StrLoss": "724576", "sL_NStrLoss": "982870", "sL_ContLoss": "706720", "geom_point": "0101000020E6100000543E801CFFCA5EC0312CB1F86E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169960650999926, 49.168524490000053 ], [ -123.169991214999982, 49.165632751000047 ], [ -123.169884774999957, 49.162819053000078 ], [ -123.170076880999929, 49.162847239000044 ], [ -123.170298002999957, 49.162879690000061 ], [ -123.172340188999939, 49.162884687000066 ], [ -123.172322463999976, 49.163358327000054 ], [ -123.172307318, 49.163763095000093 ], [ -123.172137396999958, 49.164078395000026 ], [ -123.171895408999958, 49.164562984000028 ], [ -123.171909387999904, 49.164670603000054 ], [ -123.171167883999942, 49.16469169800007 ], [ -123.171035707, 49.164724199000091 ], [ -123.170893977999924, 49.164844796000118 ], [ -123.170865000999953, 49.164939486000065 ], [ -123.170865690999946, 49.165068667000043 ], [ -123.170868689999935, 49.165621592000015 ], [ -123.170872740000021, 49.165986152000109 ], [ -123.170874000999959, 49.166098300000058 ], [ -123.171019002999984, 49.166283094000043 ], [ -123.171101690999976, 49.166342988000032 ], [ -123.171417205999944, 49.166470455000095 ], [ -123.172122722, 49.166755438000052 ], [ -123.172232304999923, 49.166799691000094 ], [ -123.172433397999924, 49.166919407000066 ], [ -123.17253029699999, 49.16703900200006 ], [ -123.172575986999931, 49.167166306000134 ], [ -123.172578192999936, 49.167287867000027 ], [ -123.172584805999975, 49.167652992000058 ], [ -123.173660499, 49.167661387000066 ], [ -123.174941593999904, 49.167672511000021 ], [ -123.174935718999933, 49.169304706000062 ], [ -123.1749515059999, 49.170105106000044 ], [ -123.174952479, 49.170153566000103 ], [ -123.174953198, 49.170189805000078 ], [ -123.17003891199991, 49.170178437000082 ], [ -123.170025176999943, 49.17017839600004 ], [ -123.169440164999926, 49.17017896400003 ], [ -123.169359042999957, 49.170179043000047 ], [ -123.169416824999942, 49.170085457000035 ], [ -123.169702893999968, 49.169622113000074 ], [ -123.169749946999957, 49.169563393000026 ], [ -123.169806841999915, 49.169434940000023 ], [ -123.169960650999926, 49.168524490000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114897333", "BldgCostT": "76533333", "sL_LossRatio": "0.710969957548217", "sL_AssetLoss": "2207210", "sL_BldgLoss": "1569260", "sL_StrLoss": "690750", "sL_NStrLoss": "878510", "sL_ContLoss": "637950", "geom_point": "0101000020E610000094C228AD24CB5EC0CC8BA77922954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.174543301999975, 49.162880392000098 ], [ -123.176683285999943, 49.162876197000053 ], [ -123.176737291999984, 49.163385711000139 ], [ -123.176945400999955, 49.164021710000014 ], [ -123.176944845999941, 49.164528684000089 ], [ -123.176944728999928, 49.164654681000037 ], [ -123.176943423999916, 49.165906206000066 ], [ -123.17694999499993, 49.166497401000122 ], [ -123.174942199999961, 49.16648880400006 ], [ -123.174941593999904, 49.167672511000021 ], [ -123.173660499, 49.167661387000066 ], [ -123.172584805999975, 49.167652992000058 ], [ -123.172578192999936, 49.167287867000027 ], [ -123.172575986999931, 49.167166306000134 ], [ -123.17253029699999, 49.16703900200006 ], [ -123.172433397999924, 49.166919407000066 ], [ -123.172232304999923, 49.166799691000094 ], [ -123.172122722, 49.166755438000052 ], [ -123.171417205999944, 49.166470455000095 ], [ -123.171101690999976, 49.166342988000032 ], [ -123.171019002999984, 49.166283094000043 ], [ -123.170874000999959, 49.166098300000058 ], [ -123.170872740000021, 49.165986152000109 ], [ -123.170868689999935, 49.165621592000015 ], [ -123.170865690999946, 49.165068667000043 ], [ -123.170865000999953, 49.164939486000065 ], [ -123.170893977999924, 49.164844796000118 ], [ -123.171035707, 49.164724199000091 ], [ -123.171167883999942, 49.16469169800007 ], [ -123.171909387999904, 49.164670603000054 ], [ -123.171895408999958, 49.164562984000028 ], [ -123.172137396999958, 49.164078395000026 ], [ -123.172307318, 49.163763095000093 ], [ -123.172322463999976, 49.163358327000054 ], [ -123.172340188999939, 49.162884687000066 ], [ -123.174543301999975, 49.162880392000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234815227", "BldgCostT": "155064856", "sL_LossRatio": "0.70804021250154", "sL_AssetLoss": "4764389", "sL_BldgLoss": "3373379", "sL_StrLoss": "1462739", "sL_NStrLoss": "1910640", "sL_ContLoss": "1391010", "geom_point": "0101000020E61000001E28537939CB5EC0EAACBB1E71944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.174077688999901, 49.161969992000067 ], [ -123.174076612999968, 49.159799907000085 ], [ -123.171618784999964, 49.159802900000038 ], [ -123.171716187999962, 49.159395494000073 ], [ -123.171715256999946, 49.159256396000117 ], [ -123.171691187999954, 49.155637390000088 ], [ -123.172262884999967, 49.155635294000092 ], [ -123.17321671099999, 49.1556467730001 ], [ -123.173335201999961, 49.155648211 ], [ -123.17424555799991, 49.155650410000099 ], [ -123.174811096000013, 49.155651805000112 ], [ -123.176291111999916, 49.155654597000115 ], [ -123.177717717999897, 49.155657807000068 ], [ -123.17770161, 49.155968093000048 ], [ -123.177623890999911, 49.156118293000134 ], [ -123.17764892799994, 49.156543298000017 ], [ -123.177279624999983, 49.15654461900003 ], [ -123.176894895, 49.156545997000087 ], [ -123.176584204999983, 49.15642530600006 ], [ -123.176148008999959, 49.156431890000086 ], [ -123.176071103999945, 49.156456897000105 ], [ -123.176034688999934, 49.156491992000056 ], [ -123.17604971099999, 49.157035588000078 ], [ -123.176094975999973, 49.157146701000052 ], [ -123.176485609999943, 49.157418087000096 ], [ -123.176534194999974, 49.157588792000077 ], [ -123.176539693, 49.15801678900003 ], [ -123.176554721999963, 49.158762185000107 ], [ -123.176555323999963, 49.158799310000042 ], [ -123.176563094999935, 49.159258101 ], [ -123.176567572999886, 49.159522 ], [ -123.176592805999945, 49.159765210000032 ], [ -123.17661508399999, 49.15998 ], [ -123.176862894999957, 49.160188304000023 ], [ -123.176145383999938, 49.160559494000033 ], [ -123.176007788999982, 49.160727104000109 ], [ -123.175971805999922, 49.160912590000073 ], [ -123.176003616999964, 49.161066592000068 ], [ -123.178190415999978, 49.161081599000035 ], [ -123.17865161, 49.161024310000087 ], [ -123.178889405999954, 49.160946708000132 ], [ -123.179077624999977, 49.160849001000031 ], [ -123.179401604999967, 49.160592603000083 ], [ -123.179600721000014, 49.16047259800014 ], [ -123.179786119999946, 49.160400003000085 ], [ -123.179968104999986, 49.160358802000104 ], [ -123.181178084999942, 49.160341893000066 ], [ -123.181184764999955, 49.160734899000047 ], [ -123.181197622999917, 49.161490109000056 ], [ -123.181199004999939, 49.161760302000062 ], [ -123.181203214999968, 49.162822609000109 ], [ -123.180444400999974, 49.162880215000072 ], [ -123.176683285999943, 49.162876197000053 ], [ -123.174543301999975, 49.162880392000098 ], [ -123.172340188999939, 49.162884687000066 ], [ -123.170298002999957, 49.162879690000061 ], [ -123.17029520799997, 49.161958100000106 ], [ -123.171642414999951, 49.161961886000029 ], [ -123.172855312999928, 49.16196589200009 ], [ -123.174077688999901, 49.161969992000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90780167", "BldgCostT": "59506667", "sL_LossRatio": "0.69665534078195", "sL_AssetLoss": "1939510", "sL_BldgLoss": "1351170", "sL_StrLoss": "588410", "sL_NStrLoss": "762760", "sL_ContLoss": "588340", "geom_point": "0101000020E6100000CF1749F5FCCA5EC074DBAE656C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17029520799997, 49.161958100000106 ], [ -123.170290321999985, 49.15561950000005 ], [ -123.171691187999954, 49.155637390000088 ], [ -123.171715256999946, 49.159256396000117 ], [ -123.171716187999962, 49.159395494000073 ], [ -123.171618784999964, 49.159802900000038 ], [ -123.174076612999968, 49.159799907000085 ], [ -123.174077688999901, 49.161969992000067 ], [ -123.172855312999928, 49.16196589200009 ], [ -123.171642414999951, 49.161961886000029 ], [ -123.17029520799997, 49.161958100000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90569084", "BldgCostT": "59308334", "sL_LossRatio": "0.696860369372989", "sL_AssetLoss": "2011192", "sL_BldgLoss": "1401520", "sL_StrLoss": "615140", "sL_NStrLoss": "786380", "sL_ContLoss": "609672", "geom_point": "0101000020E61000003D0874055FCB5EC00C1257A55F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176554721999963, 49.158762185000107 ], [ -123.176539693, 49.15801678900003 ], [ -123.176534194999974, 49.157588792000077 ], [ -123.176485609999943, 49.157418087000096 ], [ -123.176094975999973, 49.157146701000052 ], [ -123.17604971099999, 49.157035588000078 ], [ -123.176034688999934, 49.156491992000056 ], [ -123.176071103999945, 49.156456897000105 ], [ -123.176148008999959, 49.156431890000086 ], [ -123.176584204999983, 49.15642530600006 ], [ -123.176894895, 49.156545997000087 ], [ -123.177279624999983, 49.15654461900003 ], [ -123.17764892799994, 49.156543298000017 ], [ -123.17766298, 49.157327399000067 ], [ -123.177676904999927, 49.158113296000053 ], [ -123.178900192999947, 49.158125609000052 ], [ -123.178936201999988, 49.159109925000031 ], [ -123.17893730599998, 49.159139991000089 ], [ -123.178970000999982, 49.159278689000097 ], [ -123.179089498999986, 49.159409695000058 ], [ -123.179381301, 49.159615590000037 ], [ -123.179620299999982, 49.159765995000036 ], [ -123.179741581999977, 49.159890802000035 ], [ -123.17983139599994, 49.159992198000111 ], [ -123.179968104999986, 49.160358802000104 ], [ -123.179786119999946, 49.160400003000085 ], [ -123.179600721000014, 49.16047259800014 ], [ -123.179401604999967, 49.160592603000083 ], [ -123.179077624999977, 49.160849001000031 ], [ -123.178889405999954, 49.160946708000132 ], [ -123.17865161, 49.161024310000087 ], [ -123.178190415999978, 49.161081599000035 ], [ -123.176003616999964, 49.161066592000068 ], [ -123.175971805999922, 49.160912590000073 ], [ -123.176007788999982, 49.160727104000109 ], [ -123.176145383999938, 49.160559494000033 ], [ -123.176862894999957, 49.160188304000023 ], [ -123.17661508399999, 49.15998 ], [ -123.176592805999945, 49.159765210000032 ], [ -123.176567572999886, 49.159522 ], [ -123.176563094999935, 49.159258101 ], [ -123.176555323999963, 49.158799310000042 ], [ -123.176554721999963, 49.158762185000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64392249", "BldgCostT": "43464999", "sL_LossRatio": "0.734745353392605", "sL_AssetLoss": "1118020", "sL_BldgLoss": "821460", "sL_StrLoss": "374170", "sL_NStrLoss": "447290", "sL_ContLoss": "296560", "geom_point": "0101000020E6100000AB37173D7FCB5EC07F7534922D944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.177676904999927, 49.158113296000053 ], [ -123.17766298, 49.157327399000067 ], [ -123.17764892799994, 49.156543298000017 ], [ -123.177623890999911, 49.156118293000134 ], [ -123.17770161, 49.155968093000048 ], [ -123.177717717999897, 49.155657807000068 ], [ -123.179553431999949, 49.15566109400006 ], [ -123.180803564999962, 49.155663330000031 ], [ -123.181077915999978, 49.155663804000064 ], [ -123.181097305999984, 49.156587699000148 ], [ -123.181115083999899, 49.157537689000087 ], [ -123.181121713999943, 49.157766710000118 ], [ -123.181133104999901, 49.158484008000173 ], [ -123.18114591299999, 49.159177095000103 ], [ -123.181149419999969, 49.159304623000068 ], [ -123.181178084999942, 49.160341893000066 ], [ -123.179968104999986, 49.160358802000104 ], [ -123.17983139599994, 49.159992198000111 ], [ -123.179741581999977, 49.159890802000035 ], [ -123.179620299999982, 49.159765995000036 ], [ -123.179381301, 49.159615590000037 ], [ -123.179089498999986, 49.159409695000058 ], [ -123.178970000999982, 49.159278689000097 ], [ -123.17893730599998, 49.159139991000089 ], [ -123.178936201999988, 49.159109925000031 ], [ -123.178900192999947, 49.158125609000052 ], [ -123.177676904999927, 49.158113296000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66204833", "BldgCostT": "38618333", "sL_LossRatio": "0.688132612086417", "sL_AssetLoss": "602660", "sL_BldgLoss": "414710", "sL_StrLoss": "179990", "sL_NStrLoss": "234720", "sL_ContLoss": "187950", "geom_point": "0101000020E6100000D4E0E8F0F1CB5EC02AD468ACDC954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184112098999975, 49.171691687000113 ], [ -123.184330209999985, 49.171260491000076 ], [ -123.184345701999945, 49.170846591000029 ], [ -123.184351122999885, 49.17064400400011 ], [ -123.184248119999936, 49.170420595000031 ], [ -123.184099689999954, 49.170268097000069 ], [ -123.183903311999984, 49.170137745000055 ], [ -123.183865082999944, 49.170112392000071 ], [ -123.183148702999958, 49.169785608000097 ], [ -123.183718109999987, 49.169279805000066 ], [ -123.18413241199994, 49.169048311000061 ], [ -123.184660296999965, 49.168752209000047 ], [ -123.185225202999987, 49.168434589000078 ], [ -123.185922006999945, 49.167861863000027 ], [ -123.187367013999932, 49.168540094000136 ], [ -123.18882639099999, 49.169231297000096 ], [ -123.189172797999959, 49.169420510000059 ], [ -123.189310300999921, 49.169526786000098 ], [ -123.189440422999922, 49.169687007000064 ], [ -123.189533698999981, 49.169891203000077 ], [ -123.189573610999929, 49.170137306000065 ], [ -123.189557299999962, 49.170702605000088 ], [ -123.189460889999964, 49.170981994000073 ], [ -123.189359403999944, 49.171141483000127 ], [ -123.189191893999961, 49.171303806000033 ], [ -123.188955489999927, 49.171518313000071 ], [ -123.188504386999952, 49.171835304000034 ], [ -123.188250384999961, 49.172067406000046 ], [ -123.18809969099999, 49.172315706000056 ], [ -123.188070281999956, 49.172439306000065 ], [ -123.188070792999966, 49.173292408000087 ], [ -123.188069709, 49.174103103000071 ], [ -123.187916397, 49.174076598000049 ], [ -123.187120627999917, 49.174040501000057 ], [ -123.186467613, 49.174070207000071 ], [ -123.186025991999941, 49.174117307000117 ], [ -123.185810715999978, 49.172916186000052 ], [ -123.185764196999926, 49.172711413000094 ], [ -123.185688806999977, 49.172552708000175 ], [ -123.185447387999943, 49.17228249700004 ], [ -123.18523817499999, 49.172137401000022 ], [ -123.18487550499998, 49.171944994000022 ], [ -123.184403694999901, 49.171767810000077 ], [ -123.184112098999975, 49.171691687000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111715334", "BldgCostT": "76573334", "sL_LossRatio": "0.780071552852053", "sL_AssetLoss": "1237407", "sL_BldgLoss": "965266", "sL_StrLoss": "531620", "sL_NStrLoss": "433646", "sL_ContLoss": "272141", "geom_point": "0101000020E6100000496C2D8275CC5EC0F5569732F4954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.195155713999938, 49.175545693000032 ], [ -123.194784394999914, 49.175249494000127 ], [ -123.194427592999915, 49.175240909000109 ], [ -123.194016507999947, 49.175278 ], [ -123.194059704999987, 49.175511497000066 ], [ -123.193577596999958, 49.175485902000062 ], [ -123.190970298999972, 49.174977400000088 ], [ -123.189843891999956, 49.174943294000094 ], [ -123.189569736999957, 49.174917725000057 ], [ -123.18958171, 49.174719671000062 ], [ -123.188118922999962, 49.174722062000086 ], [ -123.188079260999942, 49.174275954000088 ], [ -123.188069709, 49.174103103000071 ], [ -123.188070792999966, 49.173292408000087 ], [ -123.188070281999956, 49.172439306000065 ], [ -123.18809969099999, 49.172315706000056 ], [ -123.188250384999961, 49.172067406000046 ], [ -123.188504386999952, 49.171835304000034 ], [ -123.188955489999927, 49.171518313000071 ], [ -123.189191893999961, 49.171303806000033 ], [ -123.189359403999944, 49.171141483000127 ], [ -123.189460889999964, 49.170981994000073 ], [ -123.189557299999962, 49.170702605000088 ], [ -123.189573610999929, 49.170137306000065 ], [ -123.191706502, 49.170143398000036 ], [ -123.196869063999941, 49.170150501000116 ], [ -123.196386509999968, 49.169444485000092 ], [ -123.195414936999967, 49.167653887000093 ], [ -123.195054935999948, 49.16530699000004 ], [ -123.19486828499997, 49.16304685700004 ], [ -123.195585341999944, 49.163033325000129 ], [ -123.195670202999949, 49.163033189000096 ], [ -123.196649451999946, 49.163025662000088 ], [ -123.196672407, 49.163256206000021 ], [ -123.197044399999982, 49.164001094000071 ], [ -123.197069396999922, 49.166403707000079 ], [ -123.19737438, 49.167392095000089 ], [ -123.197405293000017, 49.168067197000042 ], [ -123.198356695999976, 49.169495714000035 ], [ -123.198371996000034, 49.16985459500011 ], [ -123.19941649499998, 49.170482589000038 ], [ -123.199914505999971, 49.171201907000089 ], [ -123.200427321999925, 49.17279270300007 ], [ -123.200418096999911, 49.173557502000115 ], [ -123.19966613299998, 49.174291039000089 ], [ -123.199474997999971, 49.174477491000054 ], [ -123.198774889999967, 49.17465838800009 ], [ -123.197199395999959, 49.175361992000042 ], [ -123.195155713999938, 49.175545693000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240913386", "BldgCostT": "155577079", "sL_LossRatio": "0.69367070953433", "sL_AssetLoss": "5879490", "sL_BldgLoss": "4078430", "sL_StrLoss": "1697980", "sL_NStrLoss": "2380450", "sL_ContLoss": "1801060", "geom_point": "0101000020E61000002ACE9C1E29CC5EC0B84A445351944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.193409335999917, 49.16297233900012 ], [ -123.189386794999962, 49.162796 ], [ -123.188543886999952, 49.162794691000023 ], [ -123.188530790999963, 49.161764706000085 ], [ -123.188520210999954, 49.16091940700003 ], [ -123.188921811999961, 49.160919092 ], [ -123.188934099999955, 49.160194196000084 ], [ -123.188945593999932, 49.159460392000049 ], [ -123.188446533999951, 49.159441007000119 ], [ -123.186409026999954, 49.15944371700003 ], [ -123.186347794999975, 49.159443791000065 ], [ -123.186342213999964, 49.160919304000096 ], [ -123.185275587999968, 49.16092110800011 ], [ -123.185268817999955, 49.159793160000049 ], [ -123.185268403999928, 49.15972728900006 ], [ -123.185234891999968, 49.159602088000021 ], [ -123.185184257999964, 49.159534691000019 ], [ -123.185124495999901, 49.15945510400006 ], [ -123.184996166999937, 49.159356290000069 ], [ -123.184807017999958, 49.159266593000076 ], [ -123.18459568099999, 49.159201591000063 ], [ -123.184408556999983, 49.159198493000133 ], [ -123.184210899999982, 49.159195190000062 ], [ -123.183503387999963, 49.159188908000118 ], [ -123.183167102999946, 49.159185891000099 ], [ -123.182142012999961, 49.159182485000059 ], [ -123.18114591299999, 49.159177095000103 ], [ -123.181133104999901, 49.158484008000173 ], [ -123.181121713999943, 49.157766710000118 ], [ -123.181115083999899, 49.157537689000087 ], [ -123.181097305999984, 49.156587699000148 ], [ -123.181077915999978, 49.155663804000064 ], [ -123.18300928299999, 49.155658200000111 ], [ -123.183463533999912, 49.155656868000044 ], [ -123.185443782999968, 49.155651110000171 ], [ -123.187612004999949, 49.15565098800009 ], [ -123.189768105, 49.155647791000106 ], [ -123.191854305999968, 49.155643705000038 ], [ -123.192417698999947, 49.155641291000045 ], [ -123.193709438999988, 49.155654856000119 ], [ -123.196249906, 49.155660842 ], [ -123.19640943499995, 49.155661216000077 ], [ -123.196547208999959, 49.155780483000107 ], [ -123.196615100999963, 49.155951411000025 ], [ -123.19647010199999, 49.157418402000104 ], [ -123.19630671799996, 49.157822796000083 ], [ -123.196401004, 49.160530304000062 ], [ -123.196649451999946, 49.163025662000088 ], [ -123.195670202999949, 49.163033189000096 ], [ -123.195585341999944, 49.163033325000129 ], [ -123.19486828499997, 49.16304685700004 ], [ -123.193409335999917, 49.16297233900012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106152659", "BldgCostT": "66114855", "sL_LossRatio": "0.712915651190386", "sL_AssetLoss": "1656858", "sL_BldgLoss": "1181200", "sL_StrLoss": "549250", "sL_NStrLoss": "631950", "sL_ContLoss": "475658", "geom_point": "0101000020E61000008D1C3B0B6FCC5EC0B4B3F1589A934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.194318652999954, 49.14873034700004 ], [ -123.194248903999949, 49.148323693000108 ], [ -123.192551311999949, 49.148319906000083 ], [ -123.194826037999945, 49.148322199000056 ], [ -123.195098511999973, 49.148309742000016 ], [ -123.19528494399998, 49.148310514000052 ], [ -123.195689415999965, 49.150609204000062 ], [ -123.196118187, 49.155223704000065 ], [ -123.196214899999973, 49.155492810000084 ], [ -123.19640943499995, 49.155661216000077 ], [ -123.196249906, 49.155660842 ], [ -123.193709438999988, 49.155654856000119 ], [ -123.192417698999947, 49.155641291000045 ], [ -123.191854305999968, 49.155643705000038 ], [ -123.191848377, 49.154901294000055 ], [ -123.191854381, 49.154166296000042 ], [ -123.191797719999926, 49.153926103000039 ], [ -123.19179782399999, 49.153890621000059 ], [ -123.191799404999983, 49.15348920000006 ], [ -123.191882884999956, 49.153309403000044 ], [ -123.19201290899997, 49.153153393000125 ], [ -123.192174997999956, 49.15302673900004 ], [ -123.192241613999954, 49.152974702000023 ], [ -123.193229473999935, 49.152455404000108 ], [ -123.193958068999947, 49.152073705000042 ], [ -123.194014709999948, 49.152044052000058 ], [ -123.194102593999915, 49.151998006000078 ], [ -123.194454798999942, 49.151748699000073 ], [ -123.194634705999988, 49.151469605000038 ], [ -123.194707890999908, 49.151277788000129 ], [ -123.194715895999977, 49.15105549900003 ], [ -123.194713616999934, 49.151042385000018 ], [ -123.194552183999974, 49.150119806000127 ], [ -123.194498794999973, 49.149814807000105 ], [ -123.194380681999917, 49.14909190300002 ], [ -123.194318652999954, 49.14873034700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107233083", "BldgCostT": "69798333", "sL_LossRatio": "0.692281634951225", "sL_AssetLoss": "2184530", "sL_BldgLoss": "1512310", "sL_StrLoss": "694720", "sL_NStrLoss": "817590", "sL_ContLoss": "672220", "geom_point": "0101000020E6100000F26350962FCC5EC02E75DA649E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.191081890999925, 49.149824788000046 ], [ -123.192198718999947, 49.149825107000019 ], [ -123.192213465999956, 49.150983905000054 ], [ -123.192216797999947, 49.15124502500008 ], [ -123.192220201999973, 49.151512916000051 ], [ -123.19229428899996, 49.151669811000033 ], [ -123.192416403999943, 49.151772548000046 ], [ -123.192547297999951, 49.151882698000037 ], [ -123.193229473999935, 49.152455404000108 ], [ -123.192241613999954, 49.152974702000023 ], [ -123.192174997999956, 49.15302673900004 ], [ -123.19201290899997, 49.153153393000125 ], [ -123.191882884999956, 49.153309403000044 ], [ -123.191799404999983, 49.15348920000006 ], [ -123.19179782399999, 49.153890621000059 ], [ -123.191797719999926, 49.153926103000039 ], [ -123.191854381, 49.154166296000042 ], [ -123.191848377, 49.154901294000055 ], [ -123.191854305999968, 49.155643705000038 ], [ -123.189768105, 49.155647791000106 ], [ -123.187612004999949, 49.15565098800009 ], [ -123.187580901999937, 49.153401599000041 ], [ -123.188721175999916, 49.153399895000121 ], [ -123.188843401999975, 49.153399852000085 ], [ -123.189399582999954, 49.153399602000057 ], [ -123.18988309799991, 49.153291488000065 ], [ -123.189844005999987, 49.153143602000057 ], [ -123.189841360999978, 49.1528682410001 ], [ -123.189834308999949, 49.152125400000081 ], [ -123.189822510999974, 49.150551307000079 ], [ -123.191082798999943, 49.150559 ], [ -123.191081890999925, 49.149824788000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95002250", "BldgCostT": "65255000", "sL_LossRatio": "0.73365524717911", "sL_AssetLoss": "2010890", "sL_BldgLoss": "1475300", "sL_StrLoss": "647880", "sL_NStrLoss": "827420", "sL_ContLoss": "535590", "geom_point": "0101000020E6100000EE12C57932CC5EC0F27C407F25934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.192213465999956, 49.150983905000054 ], [ -123.192198718999947, 49.149825107000019 ], [ -123.191081890999925, 49.149824788000046 ], [ -123.188725075999926, 49.149821806000048 ], [ -123.184682717999976, 49.149817903000034 ], [ -123.184680288, 49.149065598000078 ], [ -123.184674, 49.148331310000117 ], [ -123.18535521099993, 49.148329301000039 ], [ -123.18891902899999, 49.148313397000024 ], [ -123.189884996999979, 49.14831431400011 ], [ -123.192551311999949, 49.148319906000083 ], [ -123.194248903999949, 49.148323693000108 ], [ -123.194318652999954, 49.14873034700004 ], [ -123.194380681999917, 49.14909190300002 ], [ -123.194498794999973, 49.149814807000105 ], [ -123.194552183999974, 49.150119806000127 ], [ -123.194713616999934, 49.151042385000018 ], [ -123.194715895999977, 49.15105549900003 ], [ -123.194707890999908, 49.151277788000129 ], [ -123.194634705999988, 49.151469605000038 ], [ -123.194454798999942, 49.151748699000073 ], [ -123.194102593999915, 49.151998006000078 ], [ -123.194014709999948, 49.152044052000058 ], [ -123.193958068999947, 49.152073705000042 ], [ -123.193229473999935, 49.152455404000108 ], [ -123.192547297999951, 49.151882698000037 ], [ -123.192416403999943, 49.151772548000046 ], [ -123.19229428899996, 49.151669811000033 ], [ -123.192220201999973, 49.151512916000051 ], [ -123.192216797999947, 49.15124502500008 ], [ -123.192213465999956, 49.150983905000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113384083", "BldgCostT": "75778333", "sL_LossRatio": "0.742821919562804", "sL_AssetLoss": "1873760", "sL_BldgLoss": "1391870", "sL_StrLoss": "641500", "sL_NStrLoss": "750370", "sL_ContLoss": "481890", "geom_point": "0101000020E6100000EF6389F7F1CB5EC0351B75BE69934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.188725075999926, 49.149821806000048 ], [ -123.191081890999925, 49.149824788000046 ], [ -123.191082798999943, 49.150559 ], [ -123.189822510999974, 49.150551307000079 ], [ -123.189834308999949, 49.152125400000081 ], [ -123.189841360999978, 49.1528682410001 ], [ -123.189844005999987, 49.153143602000057 ], [ -123.18988309799991, 49.153291488000065 ], [ -123.189399582999954, 49.153399602000057 ], [ -123.188843401999975, 49.153399852000085 ], [ -123.188721175999916, 49.153399895000121 ], [ -123.187580901999937, 49.153401599000041 ], [ -123.18632678899999, 49.153403092000111 ], [ -123.185068581999985, 49.153404404000106 ], [ -123.183718518999925, 49.153407799000071 ], [ -123.18242078899999, 49.153405393000114 ], [ -123.182436099999933, 49.152654495000029 ], [ -123.18245132499996, 49.151929706000068 ], [ -123.183579187999968, 49.151928593000029 ], [ -123.183589012999988, 49.150295605000018 ], [ -123.184685294999937, 49.150295397000036 ], [ -123.184682717999976, 49.149817903000034 ], [ -123.188725075999926, 49.149821806000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137081053", "BldgCostT": "91458746", "sL_LossRatio": "0.753897622792224", "sL_AssetLoss": "2374845", "sL_BldgLoss": "1790390", "sL_StrLoss": "826770", "sL_NStrLoss": "963620", "sL_ContLoss": "584455", "geom_point": "0101000020E610000051DE3B28B0CB5EC055C3F2A53F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184120577, 49.148331287000033 ], [ -123.184674, 49.148331310000117 ], [ -123.184680288, 49.149065598000078 ], [ -123.184682717999976, 49.149817903000034 ], [ -123.184685294999937, 49.150295397000036 ], [ -123.183589012999988, 49.150295605000018 ], [ -123.183579187999968, 49.151928593000029 ], [ -123.18245132499996, 49.151929706000068 ], [ -123.182436099999933, 49.152654495000029 ], [ -123.18242078899999, 49.153405393000114 ], [ -123.181153416999933, 49.153401100000139 ], [ -123.18118269699994, 49.152532492000027 ], [ -123.181205815999988, 49.151743912000043 ], [ -123.181215288, 49.151406405000081 ], [ -123.181245613999963, 49.150295501000095 ], [ -123.181262094999937, 49.149913380000044 ], [ -123.181330398999961, 49.148331093000102 ], [ -123.184120577, 49.148331287000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "639106887", "BldgCostT": "437162080", "sL_LossRatio": "0.789072333492673", "sL_AssetLoss": "10606290", "sL_BldgLoss": "8369130", "sL_StrLoss": "3786150", "sL_NStrLoss": "4582980", "sL_ContLoss": "2237160", "geom_point": "0101000020E6100000FF272CAF64CB5EC0E840B54542934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17506781599991, 49.152532588000021 ], [ -123.175079715, 49.152358991000057 ], [ -123.174979243999928, 49.152358103000104 ], [ -123.174793647999977, 49.151911652000159 ], [ -123.174779507999943, 49.151877656000046 ], [ -123.174883287999975, 49.148372009000084 ], [ -123.1776218, 49.148361893000121 ], [ -123.177936130999953, 49.148359234000054 ], [ -123.179982787999933, 49.148341799000065 ], [ -123.181330398999961, 49.148331093000102 ], [ -123.181262094999937, 49.149913380000044 ], [ -123.181245613999963, 49.150295501000095 ], [ -123.181215288, 49.151406405000081 ], [ -123.181205815999988, 49.151743912000043 ], [ -123.18118269699994, 49.152532492000027 ], [ -123.180518306999943, 49.15252858900007 ], [ -123.179544220999958, 49.152523808000154 ], [ -123.17785899799999, 49.152516606000056 ], [ -123.176399920000023, 49.152508903000097 ], [ -123.175030592999988, 49.153076581000114 ], [ -123.175042024999954, 49.152909595000061 ], [ -123.175065558, 49.152565672000087 ], [ -123.17506781599991, 49.152532588000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275127750", "BldgCostT": "191205000", "sL_LossRatio": "0.818235585526382", "sL_AssetLoss": "1978220", "sL_BldgLoss": "1618650", "sL_StrLoss": "859590", "sL_NStrLoss": "759060", "sL_ContLoss": "359570", "geom_point": "0101000020E6100000E115046670CB5EC046C4733AB9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.180518306999943, 49.15252858900007 ], [ -123.18118269699994, 49.152532492000027 ], [ -123.181153416999933, 49.153401100000139 ], [ -123.181106174999968, 49.154816671000034 ], [ -123.181077915999978, 49.155663804000064 ], [ -123.180803564999962, 49.155663330000031 ], [ -123.179553431999949, 49.15566109400006 ], [ -123.177717717999897, 49.155657807000068 ], [ -123.176291111999916, 49.155654597000115 ], [ -123.176320972999974, 49.154711289000048 ], [ -123.176371815999971, 49.153264904000032 ], [ -123.176399920000023, 49.152508903000097 ], [ -123.17785899799999, 49.152516606000056 ], [ -123.179544220999958, 49.152523808000154 ], [ -123.180518306999943, 49.15252858900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79095166", "BldgCostT": "52546666", "sL_LossRatio": "0.741856766809138", "sL_AssetLoss": "1067113", "sL_BldgLoss": "791645", "sL_StrLoss": "413785", "sL_NStrLoss": "377860", "sL_ContLoss": "275468", "geom_point": "0101000020E61000008B8A2771CCCB5EC0E12682BCC7934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18632678899999, 49.153403092000111 ], [ -123.187580901999937, 49.153401599000041 ], [ -123.187612004999949, 49.15565098800009 ], [ -123.185443782999968, 49.155651110000171 ], [ -123.183463533999912, 49.155656868000044 ], [ -123.18300928299999, 49.155658200000111 ], [ -123.181077915999978, 49.155663804000064 ], [ -123.181106174999968, 49.154816671000034 ], [ -123.181153416999933, 49.153401100000139 ], [ -123.18242078899999, 49.153405393000114 ], [ -123.183718518999925, 49.153407799000071 ], [ -123.185068581999985, 49.153404404000106 ], [ -123.18632678899999, 49.153403092000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262030970", "BldgCostT": "177145413", "sL_LossRatio": "0.802345403177677", "sL_AssetLoss": "3942691", "sL_BldgLoss": "3163400", "sL_StrLoss": "1468250", "sL_NStrLoss": "1695150", "sL_ContLoss": "779291", "geom_point": "0101000020E6100000976A4D9024CB5EC04469FCE3B9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.171537006999955, 49.15314880100005 ], [ -123.171767694999943, 49.153027798000032 ], [ -123.17206999699999, 49.152969110000086 ], [ -123.172335496999935, 49.152976101000021 ], [ -123.172695388999898, 49.153052215000045 ], [ -123.172908480999965, 49.153056401000121 ], [ -123.173251013999945, 49.153063190000111 ], [ -123.173393473999951, 49.153065995000077 ], [ -123.17341293599992, 49.152579070000058 ], [ -123.173422280999944, 49.152344302000095 ], [ -123.173713254999953, 49.152346879000056 ], [ -123.17467281899998, 49.152355395000043 ], [ -123.174979243999928, 49.152358103000104 ], [ -123.175079715, 49.152358991000057 ], [ -123.17506781599991, 49.152532588000021 ], [ -123.175065558, 49.152565672000087 ], [ -123.175042024999954, 49.152909595000061 ], [ -123.175030592999988, 49.153076581000114 ], [ -123.176399920000023, 49.152508903000097 ], [ -123.176371815999971, 49.153264904000032 ], [ -123.176320972999974, 49.154711289000048 ], [ -123.176291111999916, 49.155654597000115 ], [ -123.174811096000013, 49.155651805000112 ], [ -123.17424555799991, 49.155650410000099 ], [ -123.173335201999961, 49.155648211 ], [ -123.17321671099999, 49.1556467730001 ], [ -123.172262884999967, 49.155635294000092 ], [ -123.172261414, 49.155050607000121 ], [ -123.172206085000013, 49.154900510000111 ], [ -123.172139064999939, 49.154823042000046 ], [ -123.171729579, 49.154349651000089 ], [ -123.171605216000032, 49.154205895000139 ], [ -123.171443008000011, 49.154018396000041 ], [ -123.171329207999918, 49.153816295000098 ], [ -123.171303707, 49.153558901000117 ], [ -123.171369086999974, 49.153339900000113 ], [ -123.171537006999955, 49.15314880100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103664917", "BldgCostT": "69261667", "sL_LossRatio": "0.692000386767581", "sL_AssetLoss": "2254584", "sL_BldgLoss": "1560173", "sL_StrLoss": "677243", "sL_NStrLoss": "882930", "sL_ContLoss": "694411", "geom_point": "0101000020E6100000B1826B3045CB5EC045FEEC89A6924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.172876888999966, 49.145872597000057 ], [ -123.172611900000021, 49.145836802000105 ], [ -123.172113211999957, 49.145838525000023 ], [ -123.170247696, 49.145844887000045 ], [ -123.170001646999964, 49.145847165000127 ], [ -123.169985248, 49.144772483000047 ], [ -123.16999490399995, 49.144571921000072 ], [ -123.170018945999985, 49.14405363200008 ], [ -123.17002673699993, 49.143885605000094 ], [ -123.169977503999945, 49.141023093000037 ], [ -123.169999101999949, 49.141023138000065 ], [ -123.170287513999966, 49.141023506000039 ], [ -123.170287084999956, 49.141564692 ], [ -123.170286753999932, 49.141960479000097 ], [ -123.170286491999931, 49.142278397000034 ], [ -123.171454712999946, 49.142288397000073 ], [ -123.171461048999959, 49.14329 ], [ -123.171461787999974, 49.143410199000058 ], [ -123.172286009999979, 49.143421095000079 ], [ -123.173065091999945, 49.143339711000031 ], [ -123.17314169799999, 49.14365798500004 ], [ -123.173129575999909, 49.144218004000031 ], [ -123.178477791999981, 49.144234898000079 ], [ -123.181351719999924, 49.144248106000099 ], [ -123.181349428999965, 49.144714135000122 ], [ -123.18134372399993, 49.14589639700003 ], [ -123.181342591999936, 49.146099437000025 ], [ -123.181330398999961, 49.148331093000102 ], [ -123.179982787999933, 49.148341799000065 ], [ -123.177936130999953, 49.148359234000054 ], [ -123.1776218, 49.148361893000121 ], [ -123.174883287999975, 49.148372009000084 ], [ -123.174908589999987, 49.147865499000041 ], [ -123.174914523999988, 49.147745806000025 ], [ -123.174798981999956, 49.14741310000008 ], [ -123.174248900999942, 49.14681489600008 ], [ -123.174115011999987, 49.146468988000066 ], [ -123.174077809999957, 49.146067191000093 ], [ -123.173485991999954, 49.145996708000098 ], [ -123.172876888999966, 49.145872597000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128788643", "BldgCostT": "86306522", "sL_LossRatio": "0.700066783589961", "sL_AssetLoss": "3204380", "sL_BldgLoss": "2243280", "sL_StrLoss": "948310", "sL_NStrLoss": "1294970", "sL_ContLoss": "961100", "geom_point": "0101000020E6100000984173A537CB5EC0FD901A8738924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170286491999931, 49.142278397000034 ], [ -123.170286753999932, 49.141960479000097 ], [ -123.170287084999956, 49.141564692 ], [ -123.170287513999966, 49.141023506000039 ], [ -123.172072613999973, 49.141025407000043 ], [ -123.173193726999898, 49.141027123000079 ], [ -123.175236639000019, 49.141030232000098 ], [ -123.176077099999958, 49.141031486000081 ], [ -123.18136569, 49.141033208000074 ], [ -123.181361688, 49.142839398 ], [ -123.180614688999952, 49.142844113000059 ], [ -123.18061173299999, 49.142295523000072 ], [ -123.180611008, 49.142159383000013 ], [ -123.180583294999948, 49.142073985000103 ], [ -123.180521108999969, 49.142015594000078 ], [ -123.180404510999921, 49.141949487000026 ], [ -123.180273506999967, 49.141917209000091 ], [ -123.179983711999938, 49.141916219000059 ], [ -123.179407800999968, 49.141914281000084 ], [ -123.178291315999971, 49.141911202000067 ], [ -123.176816133999921, 49.141907611000093 ], [ -123.176400809999961, 49.141906586000047 ], [ -123.176398880999983, 49.142131303000056 ], [ -123.176390014999953, 49.143168661000047 ], [ -123.17638800899999, 49.143404490000073 ], [ -123.176466305999966, 49.143404710000027 ], [ -123.178479885999948, 49.143409799000011 ], [ -123.178477791999981, 49.144234898000079 ], [ -123.173129575999909, 49.144218004000031 ], [ -123.17314169799999, 49.14365798500004 ], [ -123.173065091999945, 49.143339711000031 ], [ -123.172286009999979, 49.143421095000079 ], [ -123.171461787999974, 49.143410199000058 ], [ -123.171461048999959, 49.14329 ], [ -123.171454712999946, 49.142288397000073 ], [ -123.170286491999931, 49.142278397000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67271000", "BldgCostT": "46130000", "sL_LossRatio": "0.714908780563499", "sL_AssetLoss": "1804440", "sL_BldgLoss": "1290010", "sL_StrLoss": "548850", "sL_NStrLoss": "741160", "sL_ContLoss": "514430", "geom_point": "0101000020E6100000BF7DC27E74CB5EC0DF19D07F4D924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178477791999981, 49.144234898000079 ], [ -123.178479885999948, 49.143409799000011 ], [ -123.176466305999966, 49.143404710000027 ], [ -123.17638800899999, 49.143404490000073 ], [ -123.176390014999953, 49.143168661000047 ], [ -123.176398880999983, 49.142131303000056 ], [ -123.176400809999961, 49.141906586000047 ], [ -123.176816133999921, 49.141907611000093 ], [ -123.178291315999971, 49.141911202000067 ], [ -123.179407800999968, 49.141914281000084 ], [ -123.179983711999938, 49.141916219000059 ], [ -123.180273506999967, 49.141917209000091 ], [ -123.180404510999921, 49.141949487000026 ], [ -123.180521108999969, 49.142015594000078 ], [ -123.180583294999948, 49.142073985000103 ], [ -123.180611008, 49.142159383000013 ], [ -123.18061173299999, 49.142295523000072 ], [ -123.180614688999952, 49.142844113000059 ], [ -123.181361688, 49.142839398 ], [ -123.181351719999924, 49.144248106000099 ], [ -123.178477791999981, 49.144234898000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95417749", "BldgCostT": "64099999", "sL_LossRatio": "0.744151271795424", "sL_AssetLoss": "1411076", "sL_BldgLoss": "1050054", "sL_StrLoss": "508159", "sL_NStrLoss": "541895", "sL_ContLoss": "361022", "geom_point": "0101000020E6100000FCA203B3BECB5EC0C10BAEFBBF924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181330398999961, 49.148331093000102 ], [ -123.181342591999936, 49.146099437000025 ], [ -123.18134372399993, 49.14589639700003 ], [ -123.181349428999965, 49.144714135000122 ], [ -123.181351719999924, 49.144248106000099 ], [ -123.181361688, 49.142839398 ], [ -123.18264930399998, 49.142846107000111 ], [ -123.18262960499996, 49.144799499000023 ], [ -123.183863011999932, 49.144796704000036 ], [ -123.183852888999951, 49.145868417 ], [ -123.183858421999929, 49.146683905000096 ], [ -123.183847401999969, 49.14749889200003 ], [ -123.185392771999929, 49.147503299000043 ], [ -123.18894471699997, 49.147503304000075 ], [ -123.18891902899999, 49.148313397000024 ], [ -123.18535521099993, 49.148329301000039 ], [ -123.184674, 49.148331310000117 ], [ -123.184120577, 49.148331287000033 ], [ -123.181330398999961, 49.148331093000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112112167", "BldgCostT": "73161667", "sL_LossRatio": "0.722453938990338", "sL_AssetLoss": "1711860", "sL_BldgLoss": "1236740", "sL_StrLoss": "592850", "sL_NStrLoss": "643890", "sL_ContLoss": "475120", "geom_point": "0101000020E61000000F8432C7D1CB5EC0D16F99B257924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.183852888999951, 49.145868417 ], [ -123.183863011999932, 49.144796704000036 ], [ -123.18262960499996, 49.144799499000023 ], [ -123.18264930399998, 49.142846107000111 ], [ -123.181361688, 49.142839398 ], [ -123.18136569, 49.141033208000074 ], [ -123.184286888999964, 49.14103040500008 ], [ -123.18530652599999, 49.1410287530001 ], [ -123.185443642999957, 49.141028537000075 ], [ -123.185584528999968, 49.141028306000102 ], [ -123.18559480199994, 49.141787984000125 ], [ -123.186182499999973, 49.141788099000109 ], [ -123.187303484000012, 49.141785010000056 ], [ -123.187303199999988, 49.144327189000087 ], [ -123.187310889999935, 49.145061601000123 ], [ -123.187299303999936, 49.145865809000078 ], [ -123.183852888999951, 49.145868417 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80562084", "BldgCostT": "55088334", "sL_LossRatio": "0.740640494182744", "sL_AssetLoss": "1434611", "sL_BldgLoss": "1062531", "sL_StrLoss": "481371", "sL_NStrLoss": "581160", "sL_ContLoss": "372080", "geom_point": "0101000020E61000006E0E4A771BCC5EC03E3C740F43924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.187303199999988, 49.144327189000087 ], [ -123.187303484000012, 49.141785010000056 ], [ -123.186182499999973, 49.141788099000109 ], [ -123.18559480199994, 49.141787984000125 ], [ -123.185584528999968, 49.141028306000102 ], [ -123.186979785999952, 49.141019805000028 ], [ -123.190134110999921, 49.141014781000038 ], [ -123.190123592999939, 49.141778510000059 ], [ -123.190701909, 49.141777292000071 ], [ -123.191839201, 49.141775498000122 ], [ -123.191837777000032, 49.143205093000063 ], [ -123.191838793, 49.144324907000076 ], [ -123.188413089999955, 49.14432740200008 ], [ -123.187303199999988, 49.144327189000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121144061", "BldgCostT": "83368190", "sL_LossRatio": "0.769584484810139", "sL_AssetLoss": "1972467", "sL_BldgLoss": "1517980", "sL_StrLoss": "683830", "sL_NStrLoss": "834150", "sL_ContLoss": "454487", "geom_point": "0101000020E6100000D3F10B8ED6CB5EC061F8256ED7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184278842999959, 49.140229758000039 ], [ -123.184278118999956, 49.140157205000065 ], [ -123.18366068899999, 49.140171692000074 ], [ -123.183167611999963, 49.14021559800009 ], [ -123.182701513999973, 49.14021870600007 ], [ -123.182658416999956, 49.140025693000013 ], [ -123.182679207999954, 49.139750515000067 ], [ -123.182808509, 49.139390273000039 ], [ -123.182827488999976, 49.139337302000079 ], [ -123.182794528999963, 49.13804626700005 ], [ -123.182788905000024, 49.137826387000089 ], [ -123.183039766999926, 49.137826652000108 ], [ -123.183643047999936, 49.137827259000105 ], [ -123.184076603999983, 49.137827714000053 ], [ -123.184406283999962, 49.137926393000086 ], [ -123.18474269799999, 49.138027105000042 ], [ -123.1850136, 49.138078302000103 ], [ -123.185387722999977, 49.138087508000048 ], [ -123.185601788999975, 49.138092785000055 ], [ -123.186962205, 49.138094210000119 ], [ -123.186968792999949, 49.138822048000087 ], [ -123.186969239999939, 49.138867017000067 ], [ -123.186981891999963, 49.140260401000091 ], [ -123.186979785999952, 49.141019805000028 ], [ -123.185584528999968, 49.141028306000102 ], [ -123.185443642999957, 49.141028537000075 ], [ -123.18530652599999, 49.1410287530001 ], [ -123.184286888999964, 49.14103040500008 ], [ -123.184278842999959, 49.140229758000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "389940000", "BldgCostT": "268485000", "sL_LossRatio": "0.823798888484911", "sL_AssetLoss": "5775900", "sL_BldgLoss": "4758180", "sL_StrLoss": "2187880", "sL_NStrLoss": "2570300", "sL_ContLoss": "1017720", "geom_point": "0101000020E6100000DE8F7F2C25CC5EC0EA398653A8914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.186962205, 49.138094210000119 ], [ -123.186941607999955, 49.137278282000054 ], [ -123.187407193999945, 49.137281797000099 ], [ -123.187420885999941, 49.137281906000105 ], [ -123.187689311000028, 49.137261887000108 ], [ -123.187724125999964, 49.137251236000104 ], [ -123.187927995999956, 49.137188804000083 ], [ -123.188089303999931, 49.137057900000066 ], [ -123.18815211, 49.136926197000065 ], [ -123.188145301999967, 49.136517001000094 ], [ -123.188141599999966, 49.136305216000096 ], [ -123.188185206999961, 49.136105510000093 ], [ -123.188295515999954, 49.135912892000121 ], [ -123.18842841499999, 49.135754210000123 ], [ -123.188598490999965, 49.135613593000123 ], [ -123.188911904999955, 49.135460494000014 ], [ -123.18924340399991, 49.135347610000053 ], [ -123.18963378299999, 49.135303695000133 ], [ -123.189965589999957, 49.135298893000083 ], [ -123.190445414999914, 49.135406005000014 ], [ -123.191360891999977, 49.135740703000074 ], [ -123.192200285999945, 49.136019311000084 ], [ -123.192217462999949, 49.136028462000063 ], [ -123.192436599999951, 49.136145294000059 ], [ -123.192702178999951, 49.136374800000119 ], [ -123.192819484999958, 49.136700297000083 ], [ -123.19282150399999, 49.136878466000027 ], [ -123.192823412999971, 49.137044596000088 ], [ -123.192818723999935, 49.13753090000003 ], [ -123.192781306999962, 49.137628993000078 ], [ -123.192669181999932, 49.137716195000095 ], [ -123.192351838999954, 49.137943122000131 ], [ -123.1919782799999, 49.138210260000044 ], [ -123.191864508999956, 49.138291592000101 ], [ -123.191779609999969, 49.138382186000079 ], [ -123.191736109999951, 49.138489100000065 ], [ -123.191738908999952, 49.138601795000049 ], [ -123.19174164199994, 49.138895230000067 ], [ -123.191746309999971, 49.139388480000036 ], [ -123.191755900999937, 49.140250911000059 ], [ -123.191069198999955, 49.140252289000081 ], [ -123.186981891999963, 49.140260401000091 ], [ -123.186969239999939, 49.138867017000067 ], [ -123.186968792999949, 49.138822048000087 ], [ -123.186962205, 49.138094210000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93123426", "BldgCostT": "60767068", "sL_LossRatio": "0.689175396923471", "sL_AssetLoss": "2184930", "sL_BldgLoss": "1505800", "sL_StrLoss": "632140", "sL_NStrLoss": "873660", "sL_ContLoss": "679130", "geom_point": "0101000020E6100000DEC78F0007CC5EC02F2ADA034A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185725897999987, 49.135430397000057 ], [ -123.185839200999936, 49.135188310000046 ], [ -123.185840696999946, 49.134528905000067 ], [ -123.185300214999984, 49.134540906000026 ], [ -123.184977512, 49.134644202000096 ], [ -123.184425784999945, 49.134651522000034 ], [ -123.184202895999988, 49.134654517000115 ], [ -123.184215484999925, 49.133767492000111 ], [ -123.185763294999944, 49.133769190000109 ], [ -123.187181080999892, 49.13377119400009 ], [ -123.188770102999939, 49.13377219400008 ], [ -123.190301382999948, 49.13377611200012 ], [ -123.191794379999962, 49.133778201000048 ], [ -123.191801726999955, 49.134225194000095 ], [ -123.191792149999955, 49.134307153000051 ], [ -123.191751557999979, 49.134656327000123 ], [ -123.191750496999958, 49.134665306000073 ], [ -123.191360891999977, 49.135740703000074 ], [ -123.190445414999914, 49.135406005000014 ], [ -123.189965589999957, 49.135298893000083 ], [ -123.18963378299999, 49.135303695000133 ], [ -123.18924340399991, 49.135347610000053 ], [ -123.188911904999955, 49.135460494000014 ], [ -123.188598490999965, 49.135613593000123 ], [ -123.18842841499999, 49.135754210000123 ], [ -123.188295515999954, 49.135912892000121 ], [ -123.188185206999961, 49.136105510000093 ], [ -123.188141599999966, 49.136305216000096 ], [ -123.188145301999967, 49.136517001000094 ], [ -123.18815211, 49.136926197000065 ], [ -123.188089303999931, 49.137057900000066 ], [ -123.187927995999956, 49.137188804000083 ], [ -123.187724125999964, 49.137251236000104 ], [ -123.187689311000028, 49.137261887000108 ], [ -123.187420885999941, 49.137281906000105 ], [ -123.187407193999945, 49.137281797000099 ], [ -123.186941607999955, 49.137278282000054 ], [ -123.185699495999984, 49.137270199000042 ], [ -123.185697800999947, 49.136392703000091 ], [ -123.18569765399991, 49.135855800000037 ], [ -123.185697585999932, 49.135648605000021 ], [ -123.185725897999987, 49.135430397000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147703416", "BldgCostT": "99921666", "sL_LossRatio": "0.72455347800933", "sL_AssetLoss": "2437170", "sL_BldgLoss": "1765860", "sL_StrLoss": "857680", "sL_NStrLoss": "908180", "sL_ContLoss": "671310", "geom_point": "0101000020E61000004141AD921DCC5EC0E171599EEA904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1902942899999, 49.12931032000003 ], [ -123.191819889999977, 49.129315893000104 ], [ -123.191819032999945, 49.129370567000123 ], [ -123.191805296999931, 49.130238907 ], [ -123.191810921999931, 49.131121901000036 ], [ -123.191807785999956, 49.132013699000026 ], [ -123.191798782999982, 49.132911592000049 ], [ -123.191794379999962, 49.133778201000048 ], [ -123.190301382999948, 49.13377611200012 ], [ -123.188770102999939, 49.13377219400008 ], [ -123.187181080999892, 49.13377119400009 ], [ -123.185763294999944, 49.133769190000109 ], [ -123.185767872999946, 49.132900903000085 ], [ -123.185764411999955, 49.132007997000073 ], [ -123.187158805999943, 49.132009406000137 ], [ -123.187157787000018, 49.131119309000098 ], [ -123.190285697999954, 49.131131601000043 ], [ -123.190291701999939, 49.130238107000018 ], [ -123.1902942899999, 49.12931032000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61983917", "BldgCostT": "40801667", "sL_LossRatio": "0.694672894343194", "sL_AssetLoss": "1637850", "sL_BldgLoss": "1137770", "sL_StrLoss": "482460", "sL_NStrLoss": "655310", "sL_ContLoss": "500080", "geom_point": "0101000020E6100000C067B9A65FCC5EC0CE2A4BF8CE904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.191807785999956, 49.132013699000026 ], [ -123.191810921999931, 49.131121901000036 ], [ -123.191805296999931, 49.130238907 ], [ -123.191819032999945, 49.129370567000123 ], [ -123.191819889999977, 49.129315893000104 ], [ -123.192441106999951, 49.12930509800006 ], [ -123.19337328099999, 49.129291500000065 ], [ -123.193483015000012, 49.129289904000046 ], [ -123.194518097, 49.129273690000055 ], [ -123.195742264999978, 49.129256443000031 ], [ -123.195743900999929, 49.129550911000095 ], [ -123.195416378999965, 49.130173196000058 ], [ -123.194599574999955, 49.131244296000034 ], [ -123.194302299999904, 49.132548794000115 ], [ -123.194251385999934, 49.133203650000077 ], [ -123.194237203999975, 49.133386297000044 ], [ -123.194252207999952, 49.133747057000072 ], [ -123.194252218999935, 49.133747151000151 ], [ -123.19425368, 49.133782243000091 ], [ -123.193803909999943, 49.133781083 ], [ -123.193388702, 49.133780497000025 ], [ -123.19238797599999, 49.13377904900009 ], [ -123.191794379999962, 49.133778201000048 ], [ -123.191798782999982, 49.132911592000049 ], [ -123.191807785999956, 49.132013699000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109874417", "BldgCostT": "75511667", "sL_LossRatio": "0.730495893872394", "sL_AssetLoss": "2659440", "sL_BldgLoss": "1942710", "sL_StrLoss": "822360", "sL_NStrLoss": "1120350", "sL_ContLoss": "716730", "geom_point": "0101000020E61000004106762557CC5EC07BF70998A7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.186979785999952, 49.141019805000028 ], [ -123.186981891999963, 49.140260401000091 ], [ -123.191069198999955, 49.140252289000081 ], [ -123.191755900999937, 49.140250911000059 ], [ -123.191746309999971, 49.139388480000036 ], [ -123.19174164199994, 49.138895230000067 ], [ -123.191738908999952, 49.138601795000049 ], [ -123.191736109999951, 49.138489100000065 ], [ -123.191779609999969, 49.138382186000079 ], [ -123.191864508999956, 49.138291592000101 ], [ -123.1919782799999, 49.138210260000044 ], [ -123.192351838999954, 49.137943122000131 ], [ -123.192669181999932, 49.137716195000095 ], [ -123.192781306999962, 49.137628993000078 ], [ -123.192818723999935, 49.13753090000003 ], [ -123.192823412999971, 49.137044596000088 ], [ -123.19282150399999, 49.136878466000027 ], [ -123.192819484999958, 49.136700297000083 ], [ -123.192702178999951, 49.136374800000119 ], [ -123.192436599999951, 49.136145294000059 ], [ -123.192217462999949, 49.136028462000063 ], [ -123.192200285999945, 49.136019311000084 ], [ -123.191360891999977, 49.135740703000074 ], [ -123.191750496999958, 49.134665306000073 ], [ -123.191751557999979, 49.134656327000123 ], [ -123.191792149999955, 49.134307153000051 ], [ -123.191801726999955, 49.134225194000095 ], [ -123.191794379999962, 49.133778201000048 ], [ -123.19238797599999, 49.13377904900009 ], [ -123.193388702, 49.133780497000025 ], [ -123.193803909999943, 49.133781083 ], [ -123.19425368, 49.133782243000091 ], [ -123.194266004999974, 49.134078400000135 ], [ -123.195178711999972, 49.135821691000068 ], [ -123.195148653, 49.137077798000071 ], [ -123.195143608999942, 49.137288594000047 ], [ -123.195021686999922, 49.137711605000028 ], [ -123.19479911800002, 49.140508699000101 ], [ -123.194695941999953, 49.141030187000069 ], [ -123.194432402999936, 49.1410134650001 ], [ -123.194039592999957, 49.141004097000071 ], [ -123.192800397999974, 49.141007582000043 ], [ -123.191764790999954, 49.141010500000064 ], [ -123.190134110999921, 49.141014781000038 ], [ -123.186979785999952, 49.141019805000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213232221", "BldgCostT": "144850414", "sL_LossRatio": "0.730072830759189", "sL_AssetLoss": "3070406", "sL_BldgLoss": "2241620", "sL_StrLoss": "1061710", "sL_NStrLoss": "1179910", "sL_ContLoss": "828786", "geom_point": "0101000020E6100000FE4E51FD1CCC5EC06304AFF174904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.19131828499998, 49.126432757000089 ], [ -123.191847006000017, 49.126438216000032 ], [ -123.191845069999928, 49.126551260000078 ], [ -123.191844588999928, 49.126581329000011 ], [ -123.191842747999928, 49.126689001000038 ], [ -123.191842288999936, 49.126716 ], [ -123.191830897999978, 49.12738649000007 ], [ -123.191820308999965, 49.1283554890001 ], [ -123.191819889999977, 49.129315893000104 ], [ -123.1902942899999, 49.12931032000003 ], [ -123.190291701999939, 49.130238107000018 ], [ -123.190285697999954, 49.131131601000043 ], [ -123.187157787000018, 49.131119309000098 ], [ -123.187161807999985, 49.130237388000069 ], [ -123.187160992999949, 49.12929959300002 ], [ -123.187159192999928, 49.128354504000093 ], [ -123.187164199999955, 49.12738800500005 ], [ -123.18719458599999, 49.126432000000108 ], [ -123.188788700999964, 49.126434899000039 ], [ -123.190304304, 49.126422308000059 ], [ -123.19131828499998, 49.126432757000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "340839083", "BldgCostT": "215363882", "sL_LossRatio": "0.696003664227376", "sL_AssetLoss": "6615310", "sL_BldgLoss": "4604280", "sL_StrLoss": "1882100", "sL_NStrLoss": "2722180", "sL_ContLoss": "2011030", "geom_point": "0101000020E6100000A88EB72AC3CB5EC0A27EFE1846904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181212495999958, 49.126420502000016 ], [ -123.181210122999985, 49.126156849000083 ], [ -123.181201290999951, 49.125180488000105 ], [ -123.182722980999955, 49.125180791000091 ], [ -123.18424582399993, 49.125184602000076 ], [ -123.18576591, 49.125187405000084 ], [ -123.185766088999955, 49.126429802000047 ], [ -123.18719458599999, 49.126432000000108 ], [ -123.187164199999955, 49.12738800500005 ], [ -123.187159192999928, 49.128354504000093 ], [ -123.185762691999955, 49.128344111000054 ], [ -123.184242906999955, 49.128333986000015 ], [ -123.184239089999892, 49.129302408000086 ], [ -123.182693747999906, 49.12929126800006 ], [ -123.181247411999962, 49.129280780000066 ], [ -123.181232992999966, 49.12834260300005 ], [ -123.181223180999922, 49.127373901000063 ], [ -123.181222867999935, 49.127308210000116 ], [ -123.18121889299999, 49.126540404000124 ], [ -123.181212495999958, 49.126420502000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110969083", "BldgCostT": "74353333", "sL_LossRatio": "0.714665207626176", "sL_AssetLoss": "2107321", "sL_BldgLoss": "1506029", "sL_StrLoss": "673899", "sL_NStrLoss": "832130", "sL_ContLoss": "601292", "geom_point": "0101000020E610000091A2A55DD2CB5EC0667084DAA9904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18421211499999, 49.132011604000105 ], [ -123.184251009999983, 49.131142306000058 ], [ -123.183449795999962, 49.131141204000109 ], [ -123.181267788999946, 49.131028519000047 ], [ -123.181257618999965, 49.1302441 ], [ -123.181247411999962, 49.129280780000066 ], [ -123.182693747999906, 49.12929126800006 ], [ -123.184239089999892, 49.129302408000086 ], [ -123.184242906999955, 49.128333986000015 ], [ -123.185762691999955, 49.128344111000054 ], [ -123.187159192999928, 49.128354504000093 ], [ -123.187160992999949, 49.12929959300002 ], [ -123.187161807999985, 49.130237388000069 ], [ -123.187157787000018, 49.131119309000098 ], [ -123.187158805999943, 49.132009406000137 ], [ -123.185764411999955, 49.132007997000073 ], [ -123.18421211499999, 49.132011604000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130416311", "BldgCostT": "89398190", "sL_LossRatio": "0.76657448069413", "sL_AssetLoss": "1316180", "sL_BldgLoss": "1008950", "sL_StrLoss": "486520", "sL_NStrLoss": "522430", "sL_ContLoss": "307230", "geom_point": "0101000020E6100000913B7493BBCB5EC016197849F7904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181280820999987, 49.132031191000074 ], [ -123.181274839999958, 49.131571974000067 ], [ -123.181267788999946, 49.131028519000047 ], [ -123.183449795999962, 49.131141204000109 ], [ -123.184251009999983, 49.131142306000058 ], [ -123.18421211499999, 49.132011604000105 ], [ -123.185764411999955, 49.132007997000073 ], [ -123.185767872999946, 49.132900903000085 ], [ -123.185763294999944, 49.133769190000109 ], [ -123.184215484999925, 49.133767492000111 ], [ -123.182805668999947, 49.133764593000137 ], [ -123.181304803, 49.133761492000104 ], [ -123.18130231799995, 49.133581551000134 ], [ -123.181294144999967, 49.132993218000117 ], [ -123.181280820999987, 49.132031191000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116062971", "BldgCostT": "75070414", "sL_LossRatio": "0.686899511200989", "sL_AssetLoss": "2991209", "sL_BldgLoss": "2054660", "sL_StrLoss": "888060", "sL_NStrLoss": "1166600", "sL_ContLoss": "936549", "geom_point": "0101000020E6100000F6AFB4A5B1CB5EC08B0584F751914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184315876999975, 49.137042092000101 ], [ -123.18410470399999, 49.137023106000079 ], [ -123.18377738099997, 49.137022075000068 ], [ -123.181333791999947, 49.137014503000046 ], [ -123.181316423999959, 49.136011297000081 ], [ -123.180531501999951, 49.13601058600004 ], [ -123.18052730799999, 49.135287991000027 ], [ -123.1805227629999, 49.135188785000054 ], [ -123.180508493999952, 49.13487581600009 ], [ -123.180420607999949, 49.134742793000044 ], [ -123.180266707999976, 49.134638806000041 ], [ -123.179728927999946, 49.134596710000018 ], [ -123.17967900099994, 49.134592785000116 ], [ -123.178315398000038, 49.134601199000059 ], [ -123.178302208999924, 49.133757591000112 ], [ -123.181304803, 49.133761492000104 ], [ -123.182805668999947, 49.133764593000137 ], [ -123.184215484999925, 49.133767492000111 ], [ -123.184202895999988, 49.134654517000115 ], [ -123.184425784999945, 49.134651522000034 ], [ -123.184977512, 49.134644202000096 ], [ -123.185300214999984, 49.134540906000026 ], [ -123.185840696999946, 49.134528905000067 ], [ -123.185839200999936, 49.135188310000046 ], [ -123.185725897999987, 49.135430397000057 ], [ -123.185697585999932, 49.135648605000021 ], [ -123.18569765399991, 49.135855800000037 ], [ -123.185697800999947, 49.136392703000091 ], [ -123.185699495999984, 49.137270199000042 ], [ -123.185400799999911, 49.137271406000131 ], [ -123.185074405999956, 49.13723128500007 ], [ -123.184315876999975, 49.137042092000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157007750", "BldgCostT": "100760000", "sL_LossRatio": "0.684396630843391", "sL_AssetLoss": "3610874", "sL_BldgLoss": "2471270", "sL_StrLoss": "1057920", "sL_NStrLoss": "1413350", "sL_ContLoss": "1139604", "geom_point": "0101000020E6100000072E35C637CB5EC09F2BAD33FC904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169996276999939, 49.131410591000083 ], [ -123.176722160999972, 49.131501338000156 ], [ -123.176734138999961, 49.131501585000059 ], [ -123.176848849999928, 49.131960438000114 ], [ -123.180228296999942, 49.132038793000085 ], [ -123.18089382, 49.13203398800006 ], [ -123.181280820999987, 49.132031191000074 ], [ -123.181294144999967, 49.132993218000117 ], [ -123.18130231799995, 49.133581551000134 ], [ -123.181304803, 49.133761492000104 ], [ -123.178302208999924, 49.133757591000112 ], [ -123.177472804999937, 49.133756162000061 ], [ -123.176924441999944, 49.133755201000021 ], [ -123.173631302999922, 49.133749388000076 ], [ -123.17257000599993, 49.133743995000017 ], [ -123.169987587999984, 49.133733369000083 ], [ -123.169803519999959, 49.13373259100009 ], [ -123.170022219999964, 49.133571217000082 ], [ -123.169996276999939, 49.131410591000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78540416", "BldgCostT": "53141666", "sL_LossRatio": "0.704066180879498", "sL_AssetLoss": "1967940", "sL_BldgLoss": "1385560", "sL_StrLoss": "574480", "sL_NStrLoss": "811080", "sL_ContLoss": "582380", "geom_point": "0101000020E61000005C0D265131CB5EC02A1D838042914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.173104401999936, 49.136447198000063 ], [ -123.173084612999958, 49.134810693000077 ], [ -123.17257038599999, 49.134818807000023 ], [ -123.17257000599993, 49.133743995000017 ], [ -123.173631302999922, 49.133749388000076 ], [ -123.176924441999944, 49.133755201000021 ], [ -123.177472804999937, 49.133756162000061 ], [ -123.178302208999924, 49.133757591000112 ], [ -123.178315398000038, 49.134601199000059 ], [ -123.177699106, 49.134598505000071 ], [ -123.176676007, 49.134595106000077 ], [ -123.175651602999963, 49.134590699000043 ], [ -123.175654974999944, 49.136141344000102 ], [ -123.175655683999977, 49.136462895000129 ], [ -123.17516568399995, 49.136459898000062 ], [ -123.173104401999936, 49.136447198000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106291666", "BldgCostT": "71566666", "sL_LossRatio": "0.705966250191016", "sL_AssetLoss": "2748460", "sL_BldgLoss": "1940320", "sL_StrLoss": "823470", "sL_NStrLoss": "1116850", "sL_ContLoss": "808140", "geom_point": "0101000020E61000001575C51029CB5EC0967ADCD868914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170993503999966, 49.137096190000094 ], [ -123.170991536999935, 49.136885983000099 ], [ -123.170974498999925, 49.135041895 ], [ -123.1709725199999, 49.134828194000114 ], [ -123.171225117999981, 49.134826941000071 ], [ -123.172038601999986, 49.134822891000113 ], [ -123.17257038599999, 49.134818807000023 ], [ -123.173084612999958, 49.134810693000077 ], [ -123.173104401999936, 49.136447198000063 ], [ -123.17516568399995, 49.136459898000062 ], [ -123.175655683999977, 49.136462895000129 ], [ -123.175654974999944, 49.136141344000102 ], [ -123.175651602999963, 49.134590699000043 ], [ -123.176676007, 49.134595106000077 ], [ -123.177699106, 49.134598505000071 ], [ -123.177712870999969, 49.136785807000095 ], [ -123.177714295999934, 49.13701330900011 ], [ -123.177061499999965, 49.136978991000035 ], [ -123.176834101999972, 49.136911799000146 ], [ -123.176586415999978, 49.136794491000032 ], [ -123.176434719999989, 49.136923907000025 ], [ -123.176208720999981, 49.137035893000053 ], [ -123.175874421999936, 49.137125404000066 ], [ -123.175647711999943, 49.137125402000059 ], [ -123.175222720999926, 49.137125428000019 ], [ -123.173237187, 49.137125503000021 ], [ -123.17267508599997, 49.137087308000012 ], [ -123.17206519099993, 49.137091092000091 ], [ -123.171507199999922, 49.137093764000049 ], [ -123.170993503999966, 49.137096190000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152691478", "BldgCostT": "102449857", "sL_LossRatio": "0.706908267959333", "sL_AssetLoss": "3946778", "sL_BldgLoss": "2790010", "sL_StrLoss": "1146810", "sL_NStrLoss": "1643200", "sL_ContLoss": "1156768", "geom_point": "0101000020E6100000DEAF65A632CB5EC08F954EDA8A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169803519999959, 49.13373259100009 ], [ -123.169987587999984, 49.133733369000083 ], [ -123.17257000599993, 49.133743995000017 ], [ -123.17257038599999, 49.134818807000023 ], [ -123.172038601999986, 49.134822891000113 ], [ -123.171225117999981, 49.134826941000071 ], [ -123.1709725199999, 49.134828194000114 ], [ -123.170974498999925, 49.135041895 ], [ -123.170991536999935, 49.136885983000099 ], [ -123.170993503999966, 49.137096190000094 ], [ -123.171507199999922, 49.137093764000049 ], [ -123.17206519099993, 49.137091092000091 ], [ -123.17267508599997, 49.137087308000012 ], [ -123.173237187, 49.137125503000021 ], [ -123.175222720999926, 49.137125428000019 ], [ -123.175647711999943, 49.137125402000059 ], [ -123.175874421999936, 49.137125404000066 ], [ -123.176208720999981, 49.137035893000053 ], [ -123.176434719999989, 49.136923907000025 ], [ -123.176586415999978, 49.136794491000032 ], [ -123.176834101999972, 49.136911799000146 ], [ -123.177061499999965, 49.136978991000035 ], [ -123.177714295999934, 49.13701330900011 ], [ -123.177712870999969, 49.136785807000095 ], [ -123.177699106, 49.134598505000071 ], [ -123.178315398000038, 49.134601199000059 ], [ -123.17967900099994, 49.134592785000116 ], [ -123.179728927999946, 49.134596710000018 ], [ -123.180266707999976, 49.134638806000041 ], [ -123.180420607999949, 49.134742793000044 ], [ -123.180508493999952, 49.13487581600009 ], [ -123.1805227629999, 49.135188785000054 ], [ -123.18052730799999, 49.135287991000027 ], [ -123.180531501999951, 49.13601058600004 ], [ -123.180549218999943, 49.136691207000062 ], [ -123.180537208999951, 49.137070189000084 ], [ -123.180528244999905, 49.137090056000062 ], [ -123.180473792999948, 49.137210900000035 ], [ -123.180350886999946, 49.137294990000079 ], [ -123.180202885999947, 49.137318199000106 ], [ -123.179536879999958, 49.137343993000137 ], [ -123.179282703999903, 49.137402200000039 ], [ -123.179117987999945, 49.137519492000088 ], [ -123.179037610999956, 49.137670516000085 ], [ -123.179037808999965, 49.13784528000005 ], [ -123.179038097999978, 49.138046206000077 ], [ -123.17902146199999, 49.138619030000044 ], [ -123.179015418999981, 49.138827492000054 ], [ -123.178877998999923, 49.139014894000105 ], [ -123.178700877999972, 49.139111202000073 ], [ -123.178524808999953, 49.139167791000055 ], [ -123.178287381999951, 49.13919760900005 ], [ -123.178232620999921, 49.139197511000077 ], [ -123.175992685999972, 49.139194197000059 ], [ -123.175983433999988, 49.138839568000073 ], [ -123.175968008999959, 49.138247588000098 ], [ -123.175907805999927, 49.138065912000101 ], [ -123.175786008999978, 49.137972585000099 ], [ -123.175448187999905, 49.137828593000116 ], [ -123.175224804999985, 49.137807702000011 ], [ -123.175179803, 49.13780349600011 ], [ -123.173855106999937, 49.13780208900004 ], [ -123.17295771799995, 49.137821860000038 ], [ -123.172046911999956, 49.137841906000062 ], [ -123.170951296999988, 49.137835699000107 ], [ -123.170950184999981, 49.138019399000029 ], [ -123.170937074999955, 49.140209088000098 ], [ -123.172051883999956, 49.140239308000055 ], [ -123.172072613999973, 49.141025407000043 ], [ -123.170287513999966, 49.141023506000039 ], [ -123.169999101999949, 49.141023138000065 ], [ -123.169977503999945, 49.141023093000037 ], [ -123.170005989999979, 49.13697961900003 ], [ -123.169803519999959, 49.13373259100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105041464", "BldgCostT": "70572822", "sL_LossRatio": "0.686836948442462", "sL_AssetLoss": "2959800", "sL_BldgLoss": "2032900", "sL_StrLoss": "866100", "sL_NStrLoss": "1166800", "sL_ContLoss": "926900", "geom_point": "0101000020E610000001FF00101CCB5EC0B0E16DCED6914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.173855106999937, 49.13780208900004 ], [ -123.175179803, 49.13780349600011 ], [ -123.175224804999985, 49.137807702000011 ], [ -123.175448187999905, 49.137828593000116 ], [ -123.175786008999978, 49.137972585000099 ], [ -123.175907805999927, 49.138065912000101 ], [ -123.175968008999959, 49.138247588000098 ], [ -123.175983433999988, 49.138839568000073 ], [ -123.175992685999972, 49.139194197000059 ], [ -123.17601368899993, 49.139865012000065 ], [ -123.17602599099996, 49.140338302000053 ], [ -123.17608749599999, 49.140612889000124 ], [ -123.176077099999958, 49.141031486000081 ], [ -123.175236639000019, 49.141030232000098 ], [ -123.173193726999898, 49.141027123000079 ], [ -123.172072613999973, 49.141025407000043 ], [ -123.172051883999956, 49.140239308000055 ], [ -123.170937074999955, 49.140209088000098 ], [ -123.170950184999981, 49.138019399000029 ], [ -123.170951296999988, 49.137835699000107 ], [ -123.172046911999956, 49.137841906000062 ], [ -123.17295771799995, 49.137821860000038 ], [ -123.173855106999937, 49.13780208900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178746895", "BldgCostT": "120071524", "sL_LossRatio": "0.695326159972257", "sL_AssetLoss": "4123590", "sL_BldgLoss": "2867240", "sL_StrLoss": "1281110", "sL_NStrLoss": "1586130", "sL_ContLoss": "1256350", "geom_point": "0101000020E6100000AEDC133D93CB5EC024AB43EACD914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17602599099996, 49.140338302000053 ], [ -123.17601368899993, 49.139865012000065 ], [ -123.175992685999972, 49.139194197000059 ], [ -123.178232620999921, 49.139197511000077 ], [ -123.178287381999951, 49.13919760900005 ], [ -123.178524808999953, 49.139167791000055 ], [ -123.178700877999972, 49.139111202000073 ], [ -123.178877998999923, 49.139014894000105 ], [ -123.179015418999981, 49.138827492000054 ], [ -123.17902146199999, 49.138619030000044 ], [ -123.179038097999978, 49.138046206000077 ], [ -123.179037808999965, 49.13784528000005 ], [ -123.179037610999956, 49.137670516000085 ], [ -123.179117987999945, 49.137519492000088 ], [ -123.179282703999903, 49.137402200000039 ], [ -123.179536879999958, 49.137343993000137 ], [ -123.180202885999947, 49.137318199000106 ], [ -123.180350886999946, 49.137294990000079 ], [ -123.180473792999948, 49.137210900000035 ], [ -123.180528244999905, 49.137090056000062 ], [ -123.180537208999951, 49.137070189000084 ], [ -123.180549218999943, 49.136691207000062 ], [ -123.180531501999951, 49.13601058600004 ], [ -123.181316423999959, 49.136011297000081 ], [ -123.181333791999947, 49.137014503000046 ], [ -123.18377738099997, 49.137022075000068 ], [ -123.18410470399999, 49.137023106000079 ], [ -123.184315876999975, 49.137042092000101 ], [ -123.185074405999956, 49.13723128500007 ], [ -123.185400799999911, 49.137271406000131 ], [ -123.185699495999984, 49.137270199000042 ], [ -123.186941607999955, 49.137278282000054 ], [ -123.186962205, 49.138094210000119 ], [ -123.185601788999975, 49.138092785000055 ], [ -123.185387722999977, 49.138087508000048 ], [ -123.1850136, 49.138078302000103 ], [ -123.18474269799999, 49.138027105000042 ], [ -123.184406283999962, 49.137926393000086 ], [ -123.184076603999983, 49.137827714000053 ], [ -123.183643047999936, 49.137827259000105 ], [ -123.183039766999926, 49.137826652000108 ], [ -123.182788905000024, 49.137826387000089 ], [ -123.182794528999963, 49.13804626700005 ], [ -123.182827488999976, 49.139337302000079 ], [ -123.182808509, 49.139390273000039 ], [ -123.182679207999954, 49.139750515000067 ], [ -123.182658416999956, 49.140025693000013 ], [ -123.182701513999973, 49.14021870600007 ], [ -123.183167611999963, 49.14021559800009 ], [ -123.18366068899999, 49.140171692000074 ], [ -123.184278118999956, 49.140157205000065 ], [ -123.184278842999959, 49.140229758000039 ], [ -123.184286888999964, 49.14103040500008 ], [ -123.18136569, 49.141033208000074 ], [ -123.176077099999958, 49.141031486000081 ], [ -123.17608749599999, 49.140612889000124 ], [ -123.17602599099996, 49.140338302000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164057395", "BldgCostT": "110201524", "sL_LossRatio": "0.712180749549285", "sL_AssetLoss": "3617027", "sL_BldgLoss": "2575977", "sL_StrLoss": "1148657", "sL_NStrLoss": "1427320", "sL_ContLoss": "1041050", "geom_point": "0101000020E61000009E8D116043CB5EC065C5FD68B4904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176848849999928, 49.131960438000114 ], [ -123.176734138999961, 49.131501585000059 ], [ -123.176722160999972, 49.131501338000156 ], [ -123.169996276999939, 49.131410591000083 ], [ -123.16999137000002, 49.130502830000097 ], [ -123.16998615599999, 49.129337452000065 ], [ -123.170725727, 49.129334299000021 ], [ -123.171614896000037, 49.129331582000091 ], [ -123.173890803999939, 49.129319295000066 ], [ -123.174635633999969, 49.129310964000162 ], [ -123.175345153999928, 49.129303037000021 ], [ -123.175839884999931, 49.129297515000076 ], [ -123.177292223999956, 49.129292203000098 ], [ -123.177377216999986, 49.129291895000073 ], [ -123.178334212999943, 49.129285314000107 ], [ -123.179715012999964, 49.129275802000073 ], [ -123.181247411999962, 49.129280780000066 ], [ -123.181257618999965, 49.1302441 ], [ -123.181267788999946, 49.131028519000047 ], [ -123.181274839999958, 49.131571974000067 ], [ -123.181280820999987, 49.132031191000074 ], [ -123.18089382, 49.13203398800006 ], [ -123.180228296999942, 49.132038793000085 ], [ -123.176848849999928, 49.131960438000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75021250", "BldgCostT": "51475000", "sL_LossRatio": "0.717549752633963", "sL_AssetLoss": "1699910", "sL_BldgLoss": "1219770", "sL_StrLoss": "551690", "sL_NStrLoss": "668080", "sL_ContLoss": "480140", "geom_point": "0101000020E6100000C98656A3AECA5EC06F0AD05BE18F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.164484490999925, 49.125071801000033 ], [ -123.164514828999984, 49.123357420000055 ], [ -123.164524237999942, 49.1228269040001 ], [ -123.164529403999907, 49.122535089000081 ], [ -123.16563739299994, 49.122581493000041 ], [ -123.165864787999908, 49.122602802000173 ], [ -123.166198491999978, 49.122677286000084 ], [ -123.166645792999958, 49.122867507000109 ], [ -123.166970381999988, 49.123114813000015 ], [ -123.167120592999979, 49.123234903000082 ], [ -123.167407989999901, 49.123395701000078 ], [ -123.16779089000002, 49.123517502000055 ], [ -123.168206084999952, 49.123582501000051 ], [ -123.168585405999949, 49.123583392000086 ], [ -123.168960780999939, 49.123536586000107 ], [ -123.16933657499996, 49.123436494000025 ], [ -123.169630555999944, 49.12335081100008 ], [ -123.16966384499996, 49.123469023000048 ], [ -123.169930884999957, 49.124192854000043 ], [ -123.169962793999957, 49.125126905000094 ], [ -123.16978861799997, 49.125125897000025 ], [ -123.16568216099995, 49.125084024000103 ], [ -123.164484490999925, 49.125071801000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241044477", "BldgCostT": "157979856", "sL_LossRatio": "0.750236920488613", "sL_AssetLoss": "3099141", "sL_BldgLoss": "2325090", "sL_StrLoss": "1050780", "sL_NStrLoss": "1274310", "sL_ContLoss": "774051", "geom_point": "0101000020E610000061FA35C4BECA5EC0010958E5A18F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166970381999988, 49.123114813000015 ], [ -123.166645792999958, 49.122867507000109 ], [ -123.166198491999978, 49.122677286000084 ], [ -123.165864787999908, 49.122602802000173 ], [ -123.16563739299994, 49.122581493000041 ], [ -123.164529403999907, 49.122535089000081 ], [ -123.164550088999988, 49.121926707000092 ], [ -123.164557252999927, 49.121504593000061 ], [ -123.164565903999986, 49.120991813000089 ], [ -123.164570093999941, 49.120744292000047 ], [ -123.166234523999918, 49.120775766000101 ], [ -123.1662677, 49.120776399000121 ], [ -123.16657919, 49.12081080800003 ], [ -123.166722480999951, 49.120845023000065 ], [ -123.166765480999942, 49.120855292000094 ], [ -123.167979948999985, 49.121268397000037 ], [ -123.168287036999942, 49.121372857000026 ], [ -123.168934791999959, 49.121593173000065 ], [ -123.169377890999897, 49.121743913000053 ], [ -123.169409175999988, 49.121720364000076 ], [ -123.169901782, 49.12134960800006 ], [ -123.170172406999953, 49.121290889000122 ], [ -123.170658700999937, 49.121312712000133 ], [ -123.171403699, 49.121537700000026 ], [ -123.171543486999965, 49.121604493000042 ], [ -123.171587794999979, 49.121663300000101 ], [ -123.171429447999955, 49.122262038000045 ], [ -123.171424286999923, 49.122281500000042 ], [ -123.171255895999963, 49.12257258600004 ], [ -123.171074206999933, 49.122790395000024 ], [ -123.170893302999957, 49.122949598000048 ], [ -123.170730654999929, 49.123012084000031 ], [ -123.170535710999928, 49.123086984000096 ], [ -123.169954228999956, 49.123256486000145 ], [ -123.169898271999941, 49.123272792000115 ], [ -123.169708864999976, 49.123327980000099 ], [ -123.169630555999944, 49.12335081100008 ], [ -123.16933657499996, 49.123436494000025 ], [ -123.168960780999939, 49.123536586000107 ], [ -123.168585405999949, 49.123583392000086 ], [ -123.168206084999952, 49.123582501000051 ], [ -123.16779089000002, 49.123517502000055 ], [ -123.167407989999901, 49.123395701000078 ], [ -123.167120592999979, 49.123234903000082 ], [ -123.166970381999988, 49.123114813000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169572395", "BldgCostT": "112881524", "sL_LossRatio": "0.702203409683441", "sL_AssetLoss": "4234528", "sL_BldgLoss": "2973500", "sL_StrLoss": "1231050", "sL_NStrLoss": "1742450", "sL_ContLoss": "1261028", "geom_point": "0101000020E6100000ADEDFD7875CA5EC0313FD4092A904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160856384999988, 49.127807695000108 ], [ -123.160505498999925, 49.127767802000037 ], [ -123.160020481999965, 49.127769396000147 ], [ -123.158890118000016, 49.127774699000057 ], [ -123.158882791999957, 49.126257293 ], [ -123.158878142, 49.124986949000061 ], [ -123.163859200999951, 49.125062347000117 ], [ -123.16421044599997, 49.125067654000063 ], [ -123.164484490999925, 49.125071801000033 ], [ -123.16568216099995, 49.125084024000103 ], [ -123.16978861799997, 49.125125897000025 ], [ -123.169962793999957, 49.125126905000094 ], [ -123.169970377999974, 49.126083780000116 ], [ -123.169828696999915, 49.126178312000022 ], [ -123.169828013999961, 49.126685492000036 ], [ -123.168533909999894, 49.126680285000056 ], [ -123.168543616999969, 49.126070601000023 ], [ -123.16580489299993, 49.126014704000077 ], [ -123.16580096200002, 49.126423036000084 ], [ -123.165790202, 49.127538686000072 ], [ -123.164793709999969, 49.127527700000059 ], [ -123.164643117999944, 49.127526404000086 ], [ -123.164076687999938, 49.127561092000086 ], [ -123.163795501999971, 49.127612207000041 ], [ -123.163489690999953, 49.127706891000045 ], [ -123.16295039799999, 49.128016104000011 ], [ -123.162648388999912, 49.1282964110001 ], [ -123.161668896999984, 49.128006590000041 ], [ -123.160856384999988, 49.127807695000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112652417", "BldgCostT": "75931667", "sL_LossRatio": "0.70568338290731", "sL_AssetLoss": "2879535", "sL_BldgLoss": "2032040", "sL_StrLoss": "878570", "sL_NStrLoss": "1153470", "sL_ContLoss": "847495", "geom_point": "0101000020E61000009FE00FFDE2C95EC0C2831C4AA3904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14780286899996, 49.128291434000062 ], [ -123.147803071999988, 49.126237993000039 ], [ -123.147803136999968, 49.125980496000125 ], [ -123.153098596999925, 49.126255802000095 ], [ -123.158882791999957, 49.126257293 ], [ -123.158890118000016, 49.127774699000057 ], [ -123.160020481999965, 49.127769396000147 ], [ -123.160505498999925, 49.127767802000037 ], [ -123.160856384999988, 49.127807695000108 ], [ -123.161668896999984, 49.128006590000041 ], [ -123.162648388999912, 49.1282964110001 ], [ -123.162476898999955, 49.128705405000105 ], [ -123.162471891999971, 49.128877304000092 ], [ -123.162466600999963, 49.12903209600011 ], [ -123.16193700399999, 49.129180290000136 ], [ -123.161503473, 49.129437296000077 ], [ -123.161358276999977, 49.129573199000042 ], [ -123.160921387999963, 49.13006611200008 ], [ -123.160843783999937, 49.130192006000058 ], [ -123.160780702999944, 49.130395703000055 ], [ -123.160788500999971, 49.130559888000107 ], [ -123.160851107999989, 49.13074629500003 ], [ -123.161052175999927, 49.131042593000089 ], [ -123.161738594999946, 49.131489506999976 ], [ -123.162681784999918, 49.132129695000103 ], [ -123.161932302999944, 49.132626083000069 ], [ -123.161740098999985, 49.132746292000071 ], [ -123.161539393999945, 49.132937384000087 ], [ -123.161409591, 49.133111412000034 ], [ -123.161323510999935, 49.133578494000048 ], [ -123.158859112999977, 49.13353330300005 ], [ -123.155103512, 49.133521403000024 ], [ -123.154345399999926, 49.133520813000118 ], [ -123.15177069899994, 49.133518803000101 ], [ -123.147802335000023, 49.133513713000127 ], [ -123.147802456999969, 49.132357362000029 ], [ -123.14780286899996, 49.128291434000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119375084", "BldgCostT": "77998334", "sL_LossRatio": "0.687821032711544", "sL_AssetLoss": "3403080", "sL_BldgLoss": "2340710", "sL_StrLoss": "933510", "sL_NStrLoss": "1407200", "sL_ContLoss": "1062370", "geom_point": "0101000020E6100000C3BF11D582CA5EC02021906CAA904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161409591, 49.133111412000034 ], [ -123.161539393999945, 49.132937384000087 ], [ -123.161740098999985, 49.132746292000071 ], [ -123.161932302999944, 49.132626083000069 ], [ -123.162681784999918, 49.132129695000103 ], [ -123.161738594999946, 49.131489506999976 ], [ -123.161052175999927, 49.131042593000089 ], [ -123.160851107999989, 49.13074629500003 ], [ -123.160788500999971, 49.130559888000107 ], [ -123.160780702999944, 49.130395703000055 ], [ -123.160843783999937, 49.130192006000058 ], [ -123.160921387999963, 49.13006611200008 ], [ -123.161358276999977, 49.129573199000042 ], [ -123.161503473, 49.129437296000077 ], [ -123.16193700399999, 49.129180290000136 ], [ -123.162466600999963, 49.12903209600011 ], [ -123.162471891999971, 49.128877304000092 ], [ -123.162476898999955, 49.128705405000105 ], [ -123.162648388999912, 49.1282964110001 ], [ -123.16295039799999, 49.128016104000011 ], [ -123.163489690999953, 49.127706891000045 ], [ -123.163795501999971, 49.127612207000041 ], [ -123.164076687999938, 49.127561092000086 ], [ -123.164643117999944, 49.127526404000086 ], [ -123.164793709999969, 49.127527700000059 ], [ -123.165790202, 49.127538686000072 ], [ -123.166478211999987, 49.127532490000128 ], [ -123.167122708999955, 49.127429608000106 ], [ -123.167356000999945, 49.12742219200009 ], [ -123.168326115999918, 49.127438785000045 ], [ -123.168401613999933, 49.12745879800012 ], [ -123.168431986999963, 49.127500111000096 ], [ -123.168488602999929, 49.127650308000057 ], [ -123.168487154999923, 49.127687594000129 ], [ -123.168465401999953, 49.128255993000074 ], [ -123.166990102999975, 49.128236015000113 ], [ -123.166983382999902, 49.128930881000031 ], [ -123.166969507999951, 49.130373298000109 ], [ -123.166952217999906, 49.130712117000066 ], [ -123.166933911999948, 49.131071504000097 ], [ -123.165100330999962, 49.131034829000036 ], [ -123.16499035799994, 49.131032625000081 ], [ -123.164803598999981, 49.131028910000062 ], [ -123.164727248999938, 49.131213077000041 ], [ -123.164525800999982, 49.131698997000115 ], [ -123.164376300999962, 49.131972616000027 ], [ -123.164152489999978, 49.132227898000103 ], [ -123.163599395999981, 49.132627696000043 ], [ -123.163507513999946, 49.132741498000108 ], [ -123.16347837899994, 49.133106494000103 ], [ -123.166381693999952, 49.133165009000074 ], [ -123.166359186999955, 49.133669801000053 ], [ -123.163734713999958, 49.133621395000063 ], [ -123.161323510999935, 49.133578494000048 ], [ -123.161409591, 49.133111412000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85759166", "BldgCostT": "58616666", "sL_LossRatio": "0.717241479949634", "sL_AssetLoss": "1918768", "sL_BldgLoss": "1376220", "sL_StrLoss": "637050", "sL_NStrLoss": "739170", "sL_ContLoss": "542548", "geom_point": "0101000020E6100000C40D6C53C4CA5EC0002D864068904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169822002999936, 49.13043310200009 ], [ -123.168393100999964, 49.130390116000086 ], [ -123.166969507999951, 49.130373298000109 ], [ -123.166983382999902, 49.128930881000031 ], [ -123.166990102999975, 49.128236015000113 ], [ -123.168465401999953, 49.128255993000074 ], [ -123.168487154999923, 49.127687594000129 ], [ -123.168488602999929, 49.127650308000057 ], [ -123.168431986999963, 49.127500111000096 ], [ -123.168401613999933, 49.12745879800012 ], [ -123.168326115999918, 49.127438785000045 ], [ -123.167356000999945, 49.12742219200009 ], [ -123.167122708999955, 49.127429608000106 ], [ -123.166478211999987, 49.127532490000128 ], [ -123.165790202, 49.127538686000072 ], [ -123.16580096200002, 49.126423036000084 ], [ -123.16580489299993, 49.126014704000077 ], [ -123.168543616999969, 49.126070601000023 ], [ -123.168533909999894, 49.126680285000056 ], [ -123.169828013999961, 49.126685492000036 ], [ -123.169828696999915, 49.126178312000022 ], [ -123.170029173999936, 49.126267537000047 ], [ -123.170032173999957, 49.126682397000103 ], [ -123.170031338999976, 49.126693833000012 ], [ -123.170006541999953, 49.128049737000048 ], [ -123.16998615599999, 49.129337452000065 ], [ -123.16999137000002, 49.130502830000097 ], [ -123.169822002999936, 49.13043310200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223055374", "BldgCostT": "142853351", "sL_LossRatio": "0.704640032678776", "sL_AssetLoss": "5091990", "sL_BldgLoss": "3588020", "sL_StrLoss": "1418580", "sL_NStrLoss": "2169440", "sL_ContLoss": "1503970", "geom_point": "0101000020E6100000C8B7A947FBC85EC07C4D7AA54D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138529431, 49.136988201000136 ], [ -123.138283911999963, 49.136858290000056 ], [ -123.13806609399991, 49.136946196000103 ], [ -123.137837498999914, 49.136987793000046 ], [ -123.136644909, 49.136999390000135 ], [ -123.136657077, 49.135354596000134 ], [ -123.136584800999984, 49.13352389500011 ], [ -123.142188098999952, 49.133517900000122 ], [ -123.143764955999984, 49.133517434000048 ], [ -123.143765982, 49.134035493000084 ], [ -123.143768300999952, 49.134221091000043 ], [ -123.143809798999911, 49.134348307000096 ], [ -123.14421991599994, 49.13485470800002 ], [ -123.144289508999933, 49.135015090000103 ], [ -123.144284725999938, 49.135249199000086 ], [ -123.144281122, 49.135699140000042 ], [ -123.144276509999941, 49.136276105000036 ], [ -123.144268713999978, 49.137117295000039 ], [ -123.142894776999981, 49.137100411000091 ], [ -123.142438369999979, 49.137094799000124 ], [ -123.142430804999961, 49.13670448300013 ], [ -123.142153579999956, 49.136199889000132 ], [ -123.142070480999962, 49.136124705000114 ], [ -123.141946603999941, 49.136067289000046 ], [ -123.141571496, 49.136041214000038 ], [ -123.140478415999922, 49.136038193000047 ], [ -123.140213784999929, 49.136108702000087 ], [ -123.140130822999978, 49.136187600000042 ], [ -123.139868816999979, 49.136616591000056 ], [ -123.139825314999968, 49.137079400000111 ], [ -123.138850504999951, 49.137068791000054 ], [ -123.138711818999965, 49.137051594000134 ], [ -123.138529431, 49.136988201000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95211636", "BldgCostT": "64377079", "sL_LossRatio": "0.726642129105323", "sL_AssetLoss": "1907280", "sL_BldgLoss": "1385910", "sL_StrLoss": "623130", "sL_NStrLoss": "762780", "sL_ContLoss": "521370", "geom_point": "0101000020E6100000E115F33958C95EC08F7FD91C6B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145658307999938, 49.133515430000102 ], [ -123.147802335000023, 49.133513713000127 ], [ -123.14782730899995, 49.134559388000078 ], [ -123.147832468, 49.135415641000051 ], [ -123.147835716999936, 49.135955364000054 ], [ -123.1478389319999, 49.136486116000107 ], [ -123.14784720599998, 49.137854502000039 ], [ -123.147850542999919, 49.138258193000091 ], [ -123.147854998999946, 49.138800704000055 ], [ -123.14701572499996, 49.138791893000139 ], [ -123.145630110999932, 49.138775895000059 ], [ -123.144592451999983, 49.138765606000113 ], [ -123.144379983999968, 49.138763498000095 ], [ -123.144411779, 49.138021991000059 ], [ -123.144364592999949, 49.137854110000056 ], [ -123.144258182999977, 49.137622394000068 ], [ -123.144260213999985, 49.137524929000151 ], [ -123.144268713999978, 49.137117295000039 ], [ -123.144276509999941, 49.136276105000036 ], [ -123.144281122, 49.135699140000042 ], [ -123.144284725999938, 49.135249199000086 ], [ -123.144289508999933, 49.135015090000103 ], [ -123.14421991599994, 49.13485470800002 ], [ -123.143809798999911, 49.134348307000096 ], [ -123.143768300999952, 49.134221091000043 ], [ -123.143765982, 49.134035493000084 ], [ -123.143764955999984, 49.133517434000048 ], [ -123.145658307999938, 49.133515430000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219151754", "BldgCostT": "138416916", "sL_LossRatio": "0.685075212466392", "sL_AssetLoss": "4320095", "sL_BldgLoss": "2959590", "sL_StrLoss": "1237830", "sL_NStrLoss": "1721760", "sL_ContLoss": "1360505", "geom_point": "0101000020E61000006AEB54B702C95EC01E9B4E99B8914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13666396499994, 49.138631706000091 ], [ -123.136661093999976, 49.138471909000039 ], [ -123.13665701499994, 49.137915906000103 ], [ -123.136644909, 49.136999390000135 ], [ -123.137837498999914, 49.136987793000046 ], [ -123.13806609399991, 49.136946196000103 ], [ -123.138283911999963, 49.136858290000056 ], [ -123.138529431, 49.136988201000136 ], [ -123.138711818999965, 49.137051594000134 ], [ -123.138850504999951, 49.137068791000054 ], [ -123.139825314999968, 49.137079400000111 ], [ -123.139868816999979, 49.136616591000056 ], [ -123.140130822999978, 49.136187600000042 ], [ -123.140213784999929, 49.136108702000087 ], [ -123.140478415999922, 49.136038193000047 ], [ -123.141571496, 49.136041214000038 ], [ -123.141946603999941, 49.136067289000046 ], [ -123.142070480999962, 49.136124705000114 ], [ -123.142153579999956, 49.136199889000132 ], [ -123.142430804999961, 49.13670448300013 ], [ -123.142438369999979, 49.137094799000124 ], [ -123.142894776999981, 49.137100411000091 ], [ -123.144268713999978, 49.137117295000039 ], [ -123.144260213999985, 49.137524929000151 ], [ -123.144258182999977, 49.137622394000068 ], [ -123.144364592999949, 49.137854110000056 ], [ -123.144411779, 49.138021991000059 ], [ -123.144379983999968, 49.138763498000095 ], [ -123.144592451999983, 49.138765606000113 ], [ -123.145630110999932, 49.138775895000059 ], [ -123.14701572499996, 49.138791893000139 ], [ -123.147854998999946, 49.138800704000055 ], [ -123.147857066999961, 49.139139755000073 ], [ -123.14785968699999, 49.139572890000089 ], [ -123.146390399999987, 49.139560001000149 ], [ -123.144832018999949, 49.139547490000076 ], [ -123.138974777, 49.139502793000098 ], [ -123.138960593999968, 49.140246506000096 ], [ -123.138969013999883, 49.140889088000073 ], [ -123.138450336999952, 49.140888294000028 ], [ -123.136704395999942, 49.140885608000083 ], [ -123.136666077, 49.138748644000039 ], [ -123.13666396499994, 49.138631706000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60784750", "BldgCostT": "41185000", "sL_LossRatio": "0.736860580144877", "sL_AssetLoss": "940110", "sL_BldgLoss": "692730", "sL_StrLoss": "335390", "sL_NStrLoss": "357340", "sL_ContLoss": "247380", "geom_point": "0101000020E61000006F6667B02DC95EC022AC7414F3914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146390399999987, 49.139560001000149 ], [ -123.14785968699999, 49.139572890000089 ], [ -123.147863381999954, 49.139781112000065 ], [ -123.147870982, 49.140952392000059 ], [ -123.146836899999968, 49.140946683000045 ], [ -123.144965904999978, 49.140936713000038 ], [ -123.144828998999941, 49.140934787000042 ], [ -123.143004611999928, 49.140925196000055 ], [ -123.13938273199993, 49.140891098000019 ], [ -123.138969013999883, 49.140889088000073 ], [ -123.138960593999968, 49.140246506000096 ], [ -123.138974777, 49.139502793000098 ], [ -123.144832018999949, 49.139547490000076 ], [ -123.146390399999987, 49.139560001000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83014062", "BldgCostT": "53923191", "sL_LossRatio": "0.754518635933338", "sL_AssetLoss": "908460", "sL_BldgLoss": "685450", "sL_StrLoss": "347970", "sL_NStrLoss": "337480", "sL_ContLoss": "223010", "geom_point": "0101000020E6100000E55C699D21C95EC0DA3E3FE749924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140764208999883, 49.142712503000048 ], [ -123.140767493999959, 49.141766592000032 ], [ -123.139380191999976, 49.141755905000096 ], [ -123.13938273199993, 49.140891098000019 ], [ -123.143004611999928, 49.140925196000055 ], [ -123.144828998999941, 49.140934787000042 ], [ -123.144965904999978, 49.140936713000038 ], [ -123.144960915999917, 49.141800497000077 ], [ -123.144947004999949, 49.144147801000031 ], [ -123.144939026999964, 49.145059331000077 ], [ -123.140757383999954, 49.145051906000063 ], [ -123.140761315999939, 49.144141188000077 ], [ -123.140764208999883, 49.142712503000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92519750", "BldgCostT": "58324015", "sL_LossRatio": "0.687563138002896", "sL_AssetLoss": "1415550", "sL_BldgLoss": "973280", "sL_StrLoss": "453200", "sL_NStrLoss": "520080", "sL_ContLoss": "442270", "geom_point": "0101000020E6100000030B0ECCDDC85EC0B172899F56924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136682211999954, 49.145965195000059 ], [ -123.136693679999951, 49.143619596000072 ], [ -123.136704395999942, 49.140885608000083 ], [ -123.138450336999952, 49.140888294000028 ], [ -123.138969013999883, 49.140889088000073 ], [ -123.13938273199993, 49.140891098000019 ], [ -123.139380191999976, 49.141755905000096 ], [ -123.140767493999959, 49.141766592000032 ], [ -123.140764208999883, 49.142712503000048 ], [ -123.140761315999939, 49.144141188000077 ], [ -123.140757383999954, 49.145051906000063 ], [ -123.13838878899999, 49.14506549500009 ], [ -123.138361724, 49.145071707000064 ], [ -123.138152480999935, 49.145119586000121 ], [ -123.138025108999955, 49.145252304000039 ], [ -123.138015693999947, 49.145962802000078 ], [ -123.13791979199999, 49.145962113000024 ], [ -123.137839605999943, 49.145928408000046 ], [ -123.136849387999945, 49.145920989000032 ], [ -123.136772587999985, 49.145965813000011 ], [ -123.136682211999954, 49.145965195000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53657916", "BldgCostT": "36741666", "sL_LossRatio": "0.787681440795802", "sL_AssetLoss": "620657", "sL_BldgLoss": "488880", "sL_StrLoss": "263320", "sL_NStrLoss": "225560", "sL_ContLoss": "131777", "geom_point": "0101000020E6100000857A3C250EC95EC0E1704982AE924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140757383999954, 49.145051906000063 ], [ -123.144939026999964, 49.145059331000077 ], [ -123.144932003999926, 49.145955482000048 ], [ -123.144926615999964, 49.146846396000058 ], [ -123.143005679999945, 49.146843492000038 ], [ -123.140750306999948, 49.146840007000023 ], [ -123.139207214999942, 49.146847717000099 ], [ -123.138410418999982, 49.146851698000027 ], [ -123.138216897999911, 49.146812289000088 ], [ -123.138098016999919, 49.146740709 ], [ -123.138009696999944, 49.146615793000052 ], [ -123.138015693999947, 49.145962802000078 ], [ -123.138025108999955, 49.145252304000039 ], [ -123.138152480999935, 49.145119586000121 ], [ -123.138361724, 49.145071707000064 ], [ -123.13838878899999, 49.14506549500009 ], [ -123.140757383999954, 49.145051906000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188131387", "BldgCostT": "125772080", "sL_LossRatio": "0.746718393423073", "sL_AssetLoss": "3981434", "sL_BldgLoss": "2973010", "sL_StrLoss": "1283620", "sL_NStrLoss": "1689390", "sL_ContLoss": "1008424", "geom_point": "0101000020E6100000E2DBCC3215C95EC0352B5FC0E0924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136682211999954, 49.145965195000059 ], [ -123.136772587999985, 49.145965813000011 ], [ -123.136849387999945, 49.145920989000032 ], [ -123.137839605999943, 49.145928408000046 ], [ -123.13791979199999, 49.145962113000024 ], [ -123.138015693999947, 49.145962802000078 ], [ -123.138009696999944, 49.146615793000052 ], [ -123.138098016999919, 49.146740709 ], [ -123.138216897999911, 49.146812289000088 ], [ -123.138410418999982, 49.146851698000027 ], [ -123.139207214999942, 49.146847717000099 ], [ -123.140750306999948, 49.146840007000023 ], [ -123.143005679999945, 49.146843492000038 ], [ -123.144926615999964, 49.146846396000058 ], [ -123.147638508999961, 49.146845309000071 ], [ -123.147638479, 49.146824585000019 ], [ -123.14783887199998, 49.146728996000107 ], [ -123.147831692999915, 49.14829810300013 ], [ -123.145494004999946, 49.148296479000123 ], [ -123.144808902999955, 49.148294588000105 ], [ -123.143066013999899, 49.14829150500001 ], [ -123.141506799999959, 49.148288012000116 ], [ -123.139845883999925, 49.14828890600009 ], [ -123.136673714, 49.148285596000044 ], [ -123.13667768899991, 49.147198327000048 ], [ -123.136682211999954, 49.145965195000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86414500", "BldgCostT": "56890000", "sL_LossRatio": "0.770599343890721", "sL_AssetLoss": "896497", "sL_BldgLoss": "690840", "sL_StrLoss": "372810", "sL_NStrLoss": "318030", "sL_ContLoss": "205657", "geom_point": "0101000020E610000001E7B5A75EC95EC0C1DE9B116B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146836899999968, 49.140946683000045 ], [ -123.147870982, 49.140952392000059 ], [ -123.147882414999941, 49.14181760000006 ], [ -123.147874812999973, 49.142451226000119 ], [ -123.147858495999941, 49.143815980000056 ], [ -123.147848204999889, 49.145951804000042 ], [ -123.14783887199998, 49.146728996000107 ], [ -123.147638479, 49.146824585000019 ], [ -123.147638508999961, 49.146845309000071 ], [ -123.144926615999964, 49.146846396000058 ], [ -123.144932003999926, 49.145955482000048 ], [ -123.144939026999964, 49.145059331000077 ], [ -123.144947004999949, 49.144147801000031 ], [ -123.144960915999917, 49.141800497000077 ], [ -123.144965904999978, 49.140936713000038 ], [ -123.146836899999968, 49.140946683000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115249833", "BldgCostT": "78483333", "sL_LossRatio": "0.723424027177152", "sL_AssetLoss": "2612783", "sL_BldgLoss": "1890150", "sL_StrLoss": "836250", "sL_NStrLoss": "1053900", "sL_ContLoss": "722633", "geom_point": "0101000020E61000004D874ECF3BC95EC0042448422E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.144245499999926, 49.15111020000009 ], [ -123.143925, 49.150996282000058 ], [ -123.143478675, 49.150988888000086 ], [ -123.141161900999961, 49.151001310000041 ], [ -123.141165482999952, 49.150184295000081 ], [ -123.139834192999928, 49.150193992000062 ], [ -123.139845883999925, 49.14828890600009 ], [ -123.141506799999959, 49.148288012000116 ], [ -123.143066013999899, 49.14829150500001 ], [ -123.144808902999955, 49.148294588000105 ], [ -123.145494004999946, 49.148296479000123 ], [ -123.147831692999915, 49.14829810300013 ], [ -123.147808067999932, 49.151164194000017 ], [ -123.147802116, 49.151887401000074 ], [ -123.145378579999914, 49.151917705000109 ], [ -123.144234485999945, 49.151914394000102 ], [ -123.144245499999926, 49.15111020000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113290334", "BldgCostT": "72973334", "sL_LossRatio": "0.692457272532691", "sL_AssetLoss": "2420106", "sL_BldgLoss": "1675820", "sL_StrLoss": "754830", "sL_NStrLoss": "920990", "sL_ContLoss": "744286", "geom_point": "0101000020E6100000BF0EA4A4EAC85EC0AA51272442934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136671883999981, 49.151587298000045 ], [ -123.13667140099993, 49.150659391000048 ], [ -123.136673714, 49.148285596000044 ], [ -123.139845883999925, 49.14828890600009 ], [ -123.139834192999928, 49.150193992000062 ], [ -123.141165482999952, 49.150184295000081 ], [ -123.141161900999961, 49.151001310000041 ], [ -123.143478675, 49.150988888000086 ], [ -123.143925, 49.150996282000058 ], [ -123.144245499999926, 49.15111020000009 ], [ -123.144234485999945, 49.151914394000102 ], [ -123.141990996999951, 49.151915212000034 ], [ -123.140690151999962, 49.151908810000087 ], [ -123.13666839499993, 49.151889008000076 ], [ -123.136671883999981, 49.151587298000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141227501", "BldgCostT": "91300001", "sL_LossRatio": "0.71064318056882", "sL_AssetLoss": "2250239", "sL_BldgLoss": "1599117", "sL_StrLoss": "758517", "sL_NStrLoss": "840600", "sL_ContLoss": "651122", "geom_point": "0101000020E6100000411F450024C95EC06B96A2C7B5934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138031501999947, 49.153656792000064 ], [ -123.138066988999952, 49.15319019400004 ], [ -123.138191402999908, 49.15283938400006 ], [ -123.138301795999936, 49.152782004000073 ], [ -123.140609900999962, 49.152756899000039 ], [ -123.140720415999908, 49.152788587000074 ], [ -123.140832000999978, 49.152868188000106 ], [ -123.141009399000012, 49.153103481000123 ], [ -123.141096109999978, 49.153296797000046 ], [ -123.141125084999913, 49.15360659600001 ], [ -123.14236678099995, 49.153606204000042 ], [ -123.142343883, 49.153309196000102 ], [ -123.142272610999925, 49.153064994000069 ], [ -123.142159794999955, 49.152826812000058 ], [ -123.141991086999965, 49.152471009000081 ], [ -123.141990996999951, 49.151915212000034 ], [ -123.144234485999945, 49.151914394000102 ], [ -123.145378579999914, 49.151917705000109 ], [ -123.147802116, 49.151887401000074 ], [ -123.147800902999961, 49.155594391000065 ], [ -123.143717290999959, 49.155605090000073 ], [ -123.140343886999943, 49.155611888000045 ], [ -123.136646688999946, 49.155579403000019 ], [ -123.136668299999926, 49.153648512000053 ], [ -123.138031501999947, 49.153656792000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138605351", "BldgCostT": "88843563", "sL_LossRatio": "0.689444122696695", "sL_AssetLoss": "2918090", "sL_BldgLoss": "2011860", "sL_StrLoss": "853570", "sL_NStrLoss": "1158290", "sL_ContLoss": "906230", "geom_point": "0101000020E6100000FF51927DA9C85EC0A214F042A5934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130960450999908, 49.152770225000054 ], [ -123.130960213999941, 49.152268588000091 ], [ -123.131533317999981, 49.152265784000072 ], [ -123.133795510999946, 49.1524070930001 ], [ -123.13444678599997, 49.152402012000017 ], [ -123.134453003999923, 49.151812106000143 ], [ -123.1345136959999, 49.151693895000051 ], [ -123.13463641599995, 49.151614202000069 ], [ -123.134854703999935, 49.151563312000107 ], [ -123.135500994, 49.15157239200007 ], [ -123.136671883999981, 49.151587298000045 ], [ -123.13666839499993, 49.151889008000076 ], [ -123.140690151999962, 49.151908810000087 ], [ -123.141990996999951, 49.151915212000034 ], [ -123.141991086999965, 49.152471009000081 ], [ -123.142159794999955, 49.152826812000058 ], [ -123.142272610999925, 49.153064994000069 ], [ -123.142343883, 49.153309196000102 ], [ -123.14236678099995, 49.153606204000042 ], [ -123.141125084999913, 49.15360659600001 ], [ -123.141096109999978, 49.153296797000046 ], [ -123.141009399000012, 49.153103481000123 ], [ -123.140832000999978, 49.152868188000106 ], [ -123.140720415999908, 49.152788587000074 ], [ -123.140609900999962, 49.152756899000039 ], [ -123.138301795999936, 49.152782004000073 ], [ -123.138191402999908, 49.15283938400006 ], [ -123.138066988999952, 49.15319019400004 ], [ -123.138031501999947, 49.153656792000064 ], [ -123.136668299999926, 49.153648512000053 ], [ -123.136646688999946, 49.155579403000019 ], [ -123.135147502999985, 49.155566296000082 ], [ -123.133392746999959, 49.155550945000051 ], [ -123.130951004999957, 49.155529500000057 ], [ -123.130961297999974, 49.154628894000048 ], [ -123.13096123599999, 49.154470326000123 ], [ -123.130960921999986, 49.153840651000046 ], [ -123.130960805999962, 49.153624776000051 ], [ -123.130960551999976, 49.153039404000047 ], [ -123.130960450999908, 49.152770225000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "544217523", "BldgCostT": "372539159", "sL_LossRatio": "0.82270293279809", "sL_AssetLoss": "3547295", "sL_BldgLoss": "2918370", "sL_StrLoss": "1525780", "sL_NStrLoss": "1392590", "sL_ContLoss": "628925", "geom_point": "0101000020E610000081E7310C90C85EC03350217007944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130951004999957, 49.155529500000057 ], [ -123.133392746999959, 49.155550945000051 ], [ -123.135147502999985, 49.155566296000082 ], [ -123.136646688999946, 49.155579403000019 ], [ -123.136617288999986, 49.157437112000082 ], [ -123.135071977999985, 49.157416762 ], [ -123.133411310999961, 49.157394877000073 ], [ -123.130927000999961, 49.157362099000068 ], [ -123.130941854999975, 49.156226883000123 ], [ -123.130951004999957, 49.155529500000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259709812", "BldgCostT": "172614175", "sL_LossRatio": "0.805376946591142", "sL_AssetLoss": "1622259", "sL_BldgLoss": "1306530", "sL_StrLoss": "685070", "sL_NStrLoss": "621460", "sL_ContLoss": "315729", "geom_point": "0101000020E61000009F5EF7908FC85EC0F19AE31E43944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130927000999961, 49.157362099000068 ], [ -123.133411310999961, 49.157394877000073 ], [ -123.135071977999985, 49.157416762 ], [ -123.136617288999986, 49.157437112000082 ], [ -123.136590118999919, 49.159215608000125 ], [ -123.132809401, 49.159195487000019 ], [ -123.130962508999957, 49.159185595000039 ], [ -123.130927000999961, 49.157362099000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144772781", "BldgCostT": "92988603", "sL_LossRatio": "0.685953034237088", "sL_AssetLoss": "2443695", "sL_BldgLoss": "1676260", "sL_StrLoss": "755550", "sL_NStrLoss": "920710", "sL_ContLoss": "767435", "geom_point": "0101000020E610000042DCD6F58FC85EC03512B1F37C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130962508999957, 49.159185595000039 ], [ -123.132809401, 49.159195487000019 ], [ -123.136590118999919, 49.159215608000125 ], [ -123.136588605000014, 49.159885099000071 ], [ -123.136588033999914, 49.160138933000098 ], [ -123.136580614999957, 49.160771134000115 ], [ -123.136523016999931, 49.160860588000034 ], [ -123.136520918999935, 49.160961430000036 ], [ -123.130980416999989, 49.160895003000078 ], [ -123.130962508999957, 49.159185595000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "453824031", "BldgCostT": "310813603", "sL_LossRatio": "0.835120506205107", "sL_AssetLoss": "3086812", "sL_BldgLoss": "2577860", "sL_StrLoss": "1368020", "sL_NStrLoss": "1209840", "sL_ContLoss": "508952", "geom_point": "0101000020E610000021D04F278FC85EC0BCCEF197B7944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130994412999897, 49.16266738000008 ], [ -123.130980416999989, 49.160895003000078 ], [ -123.136520918999935, 49.160961430000036 ], [ -123.136518465999956, 49.162671226000022 ], [ -123.136518687999981, 49.162778400000064 ], [ -123.133745632999975, 49.162779001000061 ], [ -123.133731900999948, 49.162779011000104 ], [ -123.1310246419999, 49.162778593000091 ], [ -123.131010908999954, 49.16277860400006 ], [ -123.131003191999923, 49.162726610000092 ], [ -123.130994412999897, 49.16266738000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "476864184", "BldgCostT": "323954571", "sL_LossRatio": "0.810405956650645", "sL_AssetLoss": "6819940", "sL_BldgLoss": "5526920", "sL_StrLoss": "2561900", "sL_NStrLoss": "2965020", "sL_ContLoss": "1293020", "geom_point": "0101000020E6100000A20C1CD092C85EC05FFFBFFBF4944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133745632999975, 49.162779001000061 ], [ -123.136518687999981, 49.162778400000064 ], [ -123.136519688999954, 49.163465737000159 ], [ -123.136519705999916, 49.163474800000067 ], [ -123.13648456, 49.164708089000044 ], [ -123.136484312999926, 49.164717099 ], [ -123.133718397999928, 49.164710102000065 ], [ -123.131529916999952, 49.164697801000081 ], [ -123.131538001999957, 49.163610705000067 ], [ -123.131508808999968, 49.163528812000045 ], [ -123.131244808999924, 49.163208313000048 ], [ -123.131079786999976, 49.162994895000061 ], [ -123.131010908999954, 49.16277860400006 ], [ -123.1310246419999, 49.162778593000091 ], [ -123.133731900999948, 49.162779011000104 ], [ -123.133745632999975, 49.162779001000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "556664646", "BldgCostT": "369606525", "sL_LossRatio": "0.798966317647413", "sL_AssetLoss": "4687707", "sL_BldgLoss": "3745320", "sL_StrLoss": "1825340", "sL_NStrLoss": "1919980", "sL_ContLoss": "942387", "geom_point": "0101000020E6100000D38B1C1A3DC85EC07FA71B8B1A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129841902999914, 49.162775687000163 ], [ -123.131010908999954, 49.16277860400006 ], [ -123.131079786999976, 49.162994895000061 ], [ -123.131244808999924, 49.163208313000048 ], [ -123.131508808999968, 49.163528812000045 ], [ -123.131538001999957, 49.163610705000067 ], [ -123.131529916999952, 49.164697801000081 ], [ -123.131533581000014, 49.165926689000095 ], [ -123.131494905999887, 49.16648689000003 ], [ -123.130133476999916, 49.166488394000098 ], [ -123.128109760999948, 49.166463018000087 ], [ -123.12770339599993, 49.166457913000073 ], [ -123.126765651999932, 49.166450608000105 ], [ -123.126133112999966, 49.166445689000064 ], [ -123.124763416999912, 49.166426255000033 ], [ -123.12476363299993, 49.166417257000049 ], [ -123.12477990099994, 49.165738411000063 ], [ -123.124792810999935, 49.165174810000053 ], [ -123.12558199899992, 49.165048208000059 ], [ -123.126058997999948, 49.16489419400007 ], [ -123.12621469799997, 49.164803970000051 ], [ -123.127145205999923, 49.164264698000117 ], [ -123.12745329800002, 49.164005306000028 ], [ -123.127537208999925, 49.163822888000027 ], [ -123.12757043799995, 49.16295636300007 ], [ -123.127577592999955, 49.162770010000017 ], [ -123.128196164, 49.162771550000059 ], [ -123.129458144999958, 49.1627747080001 ], [ -123.129841902999914, 49.162775687000163 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75705115", "BldgCostT": "47566937", "sL_LossRatio": "0.66109316383225", "sL_AssetLoss": "1489548", "sL_BldgLoss": "984730", "sL_StrLoss": "437560", "sL_NStrLoss": "547170", "sL_ContLoss": "504818", "geom_point": "0101000020E610000095D6423D3BC85EC072A024B07B954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130133476999916, 49.166488394000098 ], [ -123.131494905999887, 49.16648689000003 ], [ -123.13150952299992, 49.168294406000051 ], [ -123.13015348, 49.16829609800002 ], [ -123.13014909499999, 49.169077913000102 ], [ -123.125459871999936, 49.169057300000063 ], [ -123.125457608999966, 49.169057307000088 ], [ -123.125457959999892, 49.169043246000093 ], [ -123.125501305999961, 49.167418909000105 ], [ -123.126717004999975, 49.167423408000055 ], [ -123.12771891899996, 49.167427585000098 ], [ -123.12770339599993, 49.166457913000073 ], [ -123.128109760999948, 49.166463018000087 ], [ -123.130133476999916, 49.166488394000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "380036938", "BldgCostT": "249677528", "sL_LossRatio": "0.771543658548829", "sL_AssetLoss": "4621592", "sL_BldgLoss": "3565760", "sL_StrLoss": "1688200", "sL_NStrLoss": "1877560", "sL_ContLoss": "1055832", "geom_point": "0101000020E61000002D529B172BC85EC03F7672E19B954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124721156999925, 49.168616940000064 ], [ -123.124763416999912, 49.166426255000033 ], [ -123.126133112999966, 49.166445689000064 ], [ -123.126765651999932, 49.166450608000105 ], [ -123.12770339599993, 49.166457913000073 ], [ -123.12771891899996, 49.167427585000098 ], [ -123.126717004999975, 49.167423408000055 ], [ -123.125501305999961, 49.167418909000105 ], [ -123.125457959999892, 49.169043246000093 ], [ -123.125457608999966, 49.169057307000088 ], [ -123.125459871999936, 49.169057300000063 ], [ -123.13014909499999, 49.169077913000102 ], [ -123.13015348, 49.16829609800002 ], [ -123.13150952299992, 49.168294406000051 ], [ -123.131505508999908, 49.168826697000029 ], [ -123.131503010999893, 49.170133788000044 ], [ -123.13150528499996, 49.170165007000094 ], [ -123.131510416999973, 49.17023491000004 ], [ -123.130500535999914, 49.170225292000055 ], [ -123.127976332999964, 49.170201215000063 ], [ -123.12626292000003, 49.170184830000082 ], [ -123.125988492999952, 49.170182209000068 ], [ -123.125974690999968, 49.170182242000109 ], [ -123.124689969999935, 49.170185396000093 ], [ -123.124691632999927, 49.170091769000123 ], [ -123.124721156999925, 49.168616940000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "394572083", "BldgCostT": "268388333", "sL_LossRatio": "0.806854062379669", "sL_AssetLoss": "5583550", "sL_BldgLoss": "4505110", "sL_StrLoss": "2074870", "sL_NStrLoss": "2430240", "sL_ContLoss": "1078440", "geom_point": "0101000020E6100000837690CF12C85EC03CDFA18BFA944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125742491, 49.163074108000046 ], [ -123.125782980999972, 49.163057854000058 ], [ -123.126051708999967, 49.162949998000066 ], [ -123.126661417999955, 49.162799599000103 ], [ -123.12693719399999, 49.162773590000072 ], [ -123.127577592999955, 49.162770010000017 ], [ -123.12757043799995, 49.16295636300007 ], [ -123.127537208999925, 49.163822888000027 ], [ -123.12745329800002, 49.164005306000028 ], [ -123.127145205999923, 49.164264698000117 ], [ -123.12621469799997, 49.164803970000051 ], [ -123.126058997999948, 49.16489419400007 ], [ -123.12558199899992, 49.165048208000059 ], [ -123.124792810999935, 49.165174810000053 ], [ -123.124803422999946, 49.164117503000107 ], [ -123.124868592999974, 49.163904812000091 ], [ -123.125146266999977, 49.163515044000071 ], [ -123.12516451, 49.163489456000072 ], [ -123.125216913999964, 49.163415895000064 ], [ -123.125418724999989, 49.163254698000102 ], [ -123.125742491, 49.163074108000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "313979052", "BldgCostT": "205563745", "sL_LossRatio": "0.733937216001901", "sL_AssetLoss": "3367100", "sL_BldgLoss": "2471240", "sL_StrLoss": "1079080", "sL_NStrLoss": "1392160", "sL_ContLoss": "895860", "geom_point": "0101000020E61000001E2D735F33C85EC063B1FB2BB7944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125538664999951, 49.162815385000023 ], [ -123.125504024999884, 49.162762376000096 ], [ -123.125369783999972, 49.162800166000082 ], [ -123.125319855999976, 49.162814222000108 ], [ -123.125325724999925, 49.162767812000034 ], [ -123.125378774999945, 49.162349121000027 ], [ -123.125396634999944, 49.160840630000038 ], [ -123.130133559999976, 49.160886774000055 ], [ -123.130980416999989, 49.160895003000078 ], [ -123.130994412999897, 49.16266738000008 ], [ -123.131003191999923, 49.162726610000092 ], [ -123.131010908999954, 49.16277860400006 ], [ -123.129841902999914, 49.162775687000163 ], [ -123.129458144999958, 49.1627747080001 ], [ -123.128196164, 49.162771550000059 ], [ -123.127577592999955, 49.162770010000017 ], [ -123.12693719399999, 49.162773590000072 ], [ -123.126661417999955, 49.162799599000103 ], [ -123.126051708999967, 49.162949998000066 ], [ -123.125782980999972, 49.163057854000058 ], [ -123.125742491, 49.163074108000046 ], [ -123.125643029999978, 49.162975070000044 ], [ -123.125538664999951, 49.162815385000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263262364", "BldgCostT": "168432034", "sL_LossRatio": "0.769948737912997", "sL_AssetLoss": "3508831", "sL_BldgLoss": "2701620", "sL_StrLoss": "1283660", "sL_NStrLoss": "1417960", "sL_ContLoss": "807211", "geom_point": "0101000020E6100000F8B3363234C85EC05823C3437B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125413765999966, 49.159122237000091 ], [ -123.130962508999957, 49.159185595000039 ], [ -123.130980416999989, 49.160895003000078 ], [ -123.130133559999976, 49.160886774000055 ], [ -123.125396634999944, 49.160840630000038 ], [ -123.125413765999966, 49.159122237000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "858108925", "BldgCostT": "584942451", "sL_LossRatio": "0.814045067434991", "sL_AssetLoss": "7703345", "sL_BldgLoss": "6270870", "sL_StrLoss": "3085920", "sL_NStrLoss": "3184950", "sL_ContLoss": "1432475", "geom_point": "0101000020E61000005AAA550534C85EC0821F208841944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125364117999965, 49.157330847000082 ], [ -123.126547103999926, 49.157337516000027 ], [ -123.127768463999956, 49.157344400000085 ], [ -123.130927000999961, 49.157362099000068 ], [ -123.130962508999957, 49.159185595000039 ], [ -123.125413765999966, 49.159122237000091 ], [ -123.125364117999965, 49.157330847000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "636006925", "BldgCostT": "433475126", "sL_LossRatio": "0.794793720677228", "sL_AssetLoss": "4706240", "sL_BldgLoss": "3740490", "sL_StrLoss": "1778500", "sL_NStrLoss": "1961990", "sL_ContLoss": "965750", "geom_point": "0101000020E6100000FEC9BD6533C85EC0E2D6FF9405944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12533969899998, 49.155464485000032 ], [ -123.128711459999948, 49.155503599000042 ], [ -123.130951004999957, 49.155529500000057 ], [ -123.130941854999975, 49.156226883000123 ], [ -123.130927000999961, 49.157362099000068 ], [ -123.127768463999956, 49.157344400000085 ], [ -123.126547103999926, 49.157337516000027 ], [ -123.125364117999965, 49.157330847000082 ], [ -123.12533969899998, 49.155464485000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57079084", "BldgCostT": "37158334", "sL_LossRatio": "0.671971304475288", "sL_AssetLoss": "1275739", "sL_BldgLoss": "857260", "sL_StrLoss": "396820", "sL_NStrLoss": "460440", "sL_ContLoss": "418479", "geom_point": "0101000020E61000003EB1B93033C85EC0C2F9E5DDA2934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125284468999922, 49.153697269000091 ], [ -123.125250507999922, 49.151852187 ], [ -123.125242792999984, 49.151311508000049 ], [ -123.126944200999944, 49.151322697000055 ], [ -123.128383991999982, 49.151332301000132 ], [ -123.129677196999936, 49.151340696000076 ], [ -123.130952515999937, 49.151349381000045 ], [ -123.130960213999941, 49.152268588000091 ], [ -123.130960450999908, 49.152770225000054 ], [ -123.130960551999976, 49.153039404000047 ], [ -123.130960805999962, 49.153624776000051 ], [ -123.130960921999986, 49.153840651000046 ], [ -123.13096123599999, 49.154470326000123 ], [ -123.130961297999974, 49.154628894000048 ], [ -123.130951004999957, 49.155529500000057 ], [ -123.128711459999948, 49.155503599000042 ], [ -123.12533969899998, 49.155464485000032 ], [ -123.125284468999922, 49.153697269000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98842784", "BldgCostT": "63230547", "sL_LossRatio": "0.676372898853206", "sL_AssetLoss": "1782360", "sL_BldgLoss": "1205540", "sL_StrLoss": "533790", "sL_NStrLoss": "671750", "sL_ContLoss": "576820", "geom_point": "0101000020E610000089EB7B81D7C75EC014995696AA934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121577738999946, 49.151783820000034 ], [ -123.12256324099999, 49.151803858000065 ], [ -123.123730325999972, 49.151835065000064 ], [ -123.125250507999922, 49.151852187 ], [ -123.125284468999922, 49.153697269000091 ], [ -123.12533969899998, 49.155464485000032 ], [ -123.12255584899999, 49.155467560000062 ], [ -123.120828330999956, 49.155477236000067 ], [ -123.119801321999915, 49.15548399500009 ], [ -123.119806502999964, 49.154603959000099 ], [ -123.119801723999942, 49.154371401000077 ], [ -123.119791038999921, 49.153702656000121 ], [ -123.119788365999966, 49.151908920000032 ], [ -123.119721854999952, 49.151832352000021 ], [ -123.119830635999932, 49.151779416000139 ], [ -123.121577738999946, 49.151783820000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144022167", "BldgCostT": "95936667", "sL_LossRatio": "0.696009913090249", "sL_AssetLoss": "2937530", "sL_BldgLoss": "2044550", "sL_StrLoss": "924190", "sL_NStrLoss": "1120360", "sL_ContLoss": "892980", "geom_point": "0101000020E610000035CA3CEAD6C75EC01547ED9732934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119789156999971, 49.151740506000117 ], [ -123.11978163399999, 49.151010103000054 ], [ -123.119774924999959, 49.150362477000051 ], [ -123.119771490999952, 49.150035516000059 ], [ -123.119765285999947, 49.148851590000049 ], [ -123.119767791999948, 49.148102979000015 ], [ -123.12114653899998, 49.148122768000057 ], [ -123.122530726999969, 49.148142666000098 ], [ -123.125163706999913, 49.148201286000102 ], [ -123.125219392999895, 49.15002711000006 ], [ -123.125242792999984, 49.151311508000049 ], [ -123.125250507999922, 49.151852187 ], [ -123.123730325999972, 49.151835065000064 ], [ -123.12256324099999, 49.151803858000065 ], [ -123.121577738999946, 49.151783820000034 ], [ -123.119830635999932, 49.151779416000139 ], [ -123.119789156999971, 49.151740506000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146409083", "BldgCostT": "97373333", "sL_LossRatio": "0.696570072472251", "sL_AssetLoss": "4698350", "sL_BldgLoss": "3272730", "sL_StrLoss": "1321740", "sL_NStrLoss": "1950990", "sL_ContLoss": "1425620", "geom_point": "0101000020E6100000F3571A5B7CC75EC0859D6B9030934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114148293999961, 49.15176231000008 ], [ -123.114166682999937, 49.15007372600008 ], [ -123.114189083999946, 49.148013 ], [ -123.116285003999963, 49.148024987 ], [ -123.119767791999948, 49.148102979000015 ], [ -123.119765285999947, 49.148851590000049 ], [ -123.119771490999952, 49.150035516000059 ], [ -123.119774924999959, 49.150362477000051 ], [ -123.11978163399999, 49.151010103000054 ], [ -123.119789156999971, 49.151740506000117 ], [ -123.119830635999932, 49.151779416000139 ], [ -123.119721854999952, 49.151832352000021 ], [ -123.11960321, 49.151800353000091 ], [ -123.118910705999951, 49.151799138000101 ], [ -123.118630285000023, 49.151798643000149 ], [ -123.11719341899996, 49.151786288000025 ], [ -123.116922126999953, 49.151784336000119 ], [ -123.116271502999908, 49.15177962700006 ], [ -123.115337311999937, 49.151771696000054 ], [ -123.114148293999961, 49.15176231000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79706728", "BldgCostT": "51404857", "sL_LossRatio": "0.679898421661662", "sL_AssetLoss": "1972074", "sL_BldgLoss": "1340810", "sL_StrLoss": "561140", "sL_NStrLoss": "779670", "sL_ContLoss": "631264", "geom_point": "0101000020E6100000FFEE2D1777C75EC01F5B6CE6D2924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114172101999941, 49.146564800000107 ], [ -123.11415949299996, 49.145397797000037 ], [ -123.115258602999987, 49.145396607000059 ], [ -123.115265575999913, 49.14607879500003 ], [ -123.116743893999981, 49.146082418000077 ], [ -123.116974085999928, 49.14614980400011 ], [ -123.117438406999938, 49.146440599000137 ], [ -123.117774090999944, 49.14655139100006 ], [ -123.118147224999916, 49.146612800000064 ], [ -123.118762892999897, 49.146626500000082 ], [ -123.118996181999961, 49.146631750000054 ], [ -123.119812493999987, 49.146650113000113 ], [ -123.119767791999948, 49.148102979000015 ], [ -123.116285003999963, 49.148024987 ], [ -123.114189083999946, 49.148013 ], [ -123.114172101999941, 49.146564800000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139829250", "BldgCostT": "91650000", "sL_LossRatio": "0.711250597921969", "sL_AssetLoss": "2648757", "sL_BldgLoss": "1883930", "sL_StrLoss": "777510", "sL_NStrLoss": "1106420", "sL_ContLoss": "764827", "geom_point": "0101000020E6100000023E50B8A8C75EC06C1B99899A924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115265575999913, 49.14607879500003 ], [ -123.115258602999987, 49.145396607000059 ], [ -123.11525177599998, 49.144731598000085 ], [ -123.117162211999954, 49.144750307000038 ], [ -123.11717321299993, 49.143975886000092 ], [ -123.119772499999982, 49.143999503000025 ], [ -123.122318505999942, 49.144019894000067 ], [ -123.122309280999943, 49.144833200000079 ], [ -123.124011610999929, 49.144848893000109 ], [ -123.12401149799993, 49.144854093000035 ], [ -123.123997205999927, 49.145524204000068 ], [ -123.123983400999961, 49.146235605000044 ], [ -123.122408001999943, 49.146228594000085 ], [ -123.122266092999936, 49.146261710000012 ], [ -123.122236953999959, 49.146276167000053 ], [ -123.121745912999984, 49.146519906000044 ], [ -123.121401078999952, 49.14660674 ], [ -123.121225330999934, 49.146651005000152 ], [ -123.120911389999989, 49.146674105000095 ], [ -123.119812493999987, 49.146650113000113 ], [ -123.118996181999961, 49.146631750000054 ], [ -123.118762892999897, 49.146626500000082 ], [ -123.118147224999916, 49.146612800000064 ], [ -123.117774090999944, 49.14655139100006 ], [ -123.117438406999938, 49.146440599000137 ], [ -123.116974085999928, 49.14614980400011 ], [ -123.116743893999981, 49.146082418000077 ], [ -123.115265575999913, 49.14607879500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96454750", "BldgCostT": "62365000", "sL_LossRatio": "0.697788994145427", "sL_AssetLoss": "2155580", "sL_BldgLoss": "1504140", "sL_StrLoss": "649860", "sL_NStrLoss": "854280", "sL_ContLoss": "651440", "geom_point": "0101000020E6100000C3AFD48AE1C75EC05A33192BBD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12401149799993, 49.144854093000035 ], [ -123.124011610999929, 49.144848893000109 ], [ -123.122309280999943, 49.144833200000079 ], [ -123.122318505999942, 49.144019894000067 ], [ -123.123359310999902, 49.144029711 ], [ -123.123518793999949, 49.143997882000143 ], [ -123.12366667399999, 49.143932489000093 ], [ -123.123741323000019, 49.143835403000026 ], [ -123.123769610999943, 49.14333350600009 ], [ -123.123841915999918, 49.143264326000093 ], [ -123.123875913999925, 49.143231805000035 ], [ -123.124515790999965, 49.143520112 ], [ -123.124744396999972, 49.1435666940001 ], [ -123.125144290999955, 49.143575755000064 ], [ -123.125172713999959, 49.143576386000092 ], [ -123.12514328499999, 49.144743116000079 ], [ -123.125141478999936, 49.144815093000048 ], [ -123.125123617999947, 49.145524600000023 ], [ -123.125141184999933, 49.146699210000101 ], [ -123.125163706999913, 49.148201286000102 ], [ -123.122530726999969, 49.148142666000098 ], [ -123.12114653899998, 49.148122768000057 ], [ -123.119767791999948, 49.148102979000015 ], [ -123.119812493999987, 49.146650113000113 ], [ -123.120911389999989, 49.146674105000095 ], [ -123.121225330999934, 49.146651005000152 ], [ -123.121401078999952, 49.14660674 ], [ -123.121745912999984, 49.146519906000044 ], [ -123.122236953999959, 49.146276167000053 ], [ -123.122266092999936, 49.146261710000012 ], [ -123.122408001999943, 49.146228594000085 ], [ -123.123983400999961, 49.146235605000044 ], [ -123.123997205999927, 49.145524204000068 ], [ -123.12401149799993, 49.144854093000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99999395", "BldgCostT": "64161524", "sL_LossRatio": "0.69510613980468", "sL_AssetLoss": "1952896", "sL_BldgLoss": "1357470", "sL_StrLoss": "586370", "sL_NStrLoss": "771100", "sL_ContLoss": "595426", "geom_point": "0101000020E6100000C20D7C35D5C75EC004EF8A6438924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119770382999903, 49.143148101000115 ], [ -123.119769992, 49.142313906000076 ], [ -123.119764317999937, 49.140789398000081 ], [ -123.120439411999925, 49.140795694000055 ], [ -123.121873100999963, 49.140809798000085 ], [ -123.124533845, 49.140834672000082 ], [ -123.125243101999928, 49.14084130100008 ], [ -123.125195599999969, 49.142686748000123 ], [ -123.125172713999959, 49.143576386000092 ], [ -123.125144290999955, 49.143575755000064 ], [ -123.124744396999972, 49.1435666940001 ], [ -123.124515790999965, 49.143520112 ], [ -123.123875913999925, 49.143231805000035 ], [ -123.123841915999918, 49.143264326000093 ], [ -123.123769610999943, 49.14333350600009 ], [ -123.123741323000019, 49.143835403000026 ], [ -123.12366667399999, 49.143932489000093 ], [ -123.123518793999949, 49.143997882000143 ], [ -123.123359310999902, 49.144029711 ], [ -123.122318505999942, 49.144019894000067 ], [ -123.119772499999982, 49.143999503000025 ], [ -123.119770382999903, 49.143148101000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98187469", "BldgCostT": "63535412", "sL_LossRatio": "0.723493072444098", "sL_AssetLoss": "1656284", "sL_BldgLoss": "1198310", "sL_StrLoss": "530350", "sL_NStrLoss": "667960", "sL_ContLoss": "457974", "geom_point": "0101000020E610000063AC0D807EC75EC064A1D77E36924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115429588999987, 49.143654392000023 ], [ -123.115438899, 49.143107799000113 ], [ -123.114131093999973, 49.143095216000106 ], [ -123.114131257999986, 49.142965079000078 ], [ -123.114132805999986, 49.141632201000064 ], [ -123.114143284999955, 49.140733395000041 ], [ -123.118158620999935, 49.140770959000115 ], [ -123.118432830999922, 49.140773521000035 ], [ -123.11905248, 49.140779293 ], [ -123.119764317999937, 49.140789398000081 ], [ -123.119769992, 49.142313906000076 ], [ -123.119770382999903, 49.143148101000115 ], [ -123.119772499999982, 49.143999503000025 ], [ -123.11717321299993, 49.143975886000092 ], [ -123.115879602999925, 49.143955593000044 ], [ -123.115699091999957, 49.143927416000096 ], [ -123.115569399, 49.143875189000013 ], [ -123.115479406999953, 49.143779991000073 ], [ -123.115429588999987, 49.143654392000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79468167", "BldgCostT": "53126667", "sL_LossRatio": "0.704369293467612", "sL_AssetLoss": "1913925", "sL_BldgLoss": "1348110", "sL_StrLoss": "563000", "sL_NStrLoss": "785110", "sL_ContLoss": "565815", "geom_point": "0101000020E6100000E1CE96BD76C75EC08F63FBFBD2914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114146207999966, 49.139913593000088 ], [ -123.11418979299999, 49.13755439400007 ], [ -123.115019301999951, 49.137544197000068 ], [ -123.115253411999902, 49.137481106000109 ], [ -123.115413610999923, 49.137659311000043 ], [ -123.115512189999919, 49.137836700000022 ], [ -123.115560788999943, 49.138091196000062 ], [ -123.115787991999952, 49.138094606000074 ], [ -123.115995000999987, 49.138071289000024 ], [ -123.116255980999981, 49.137994506000084 ], [ -123.116682283999978, 49.137792400000073 ], [ -123.116881006999947, 49.137746392000089 ], [ -123.11914518499999, 49.137754804000096 ], [ -123.11912850499999, 49.138556083000012 ], [ -123.119095582999989, 49.140194002000101 ], [ -123.119057601999884, 49.140365087000063 ], [ -123.11905248, 49.140779293 ], [ -123.118432830999922, 49.140773521000035 ], [ -123.118158620999935, 49.140770959000115 ], [ -123.114143284999955, 49.140733395000041 ], [ -123.114146207999966, 49.139913593000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134515311", "BldgCostT": "89708190", "sL_LossRatio": "0.711465068473788", "sL_AssetLoss": "2476130", "sL_BldgLoss": "1761680", "sL_StrLoss": "772100", "sL_NStrLoss": "989580", "sL_ContLoss": "714450", "geom_point": "0101000020E61000003E7FE21917C75EC0D15B4DE8BF914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10795509799999, 49.138890584000066 ], [ -123.108072603999943, 49.13611900800008 ], [ -123.109319685999978, 49.136135390000057 ], [ -123.110520105999939, 49.136153208000117 ], [ -123.111752003999982, 49.136170982000102 ], [ -123.111698394999948, 49.13752088400004 ], [ -123.112913793999923, 49.137539990000107 ], [ -123.11418979299999, 49.13755439400007 ], [ -123.114146207999966, 49.139913593000088 ], [ -123.114143284999955, 49.140733395000041 ], [ -123.109147405999977, 49.140716390000065 ], [ -123.10913361199999, 49.140716364000106 ], [ -123.107907579999946, 49.140713710000078 ], [ -123.10793029899996, 49.140303512000052 ], [ -123.10790461199997, 49.140033407000089 ], [ -123.107798197999955, 49.139872904000065 ], [ -123.107414787999929, 49.139538306000105 ], [ -123.107533300999975, 49.139460393000057 ], [ -123.10780579499999, 49.139198312000069 ], [ -123.107942031000036, 49.138917499000108 ], [ -123.10795509799999, 49.138890584000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77138833", "BldgCostT": "52198333", "sL_LossRatio": "0.702482133597854", "sL_AssetLoss": "2217850", "sL_BldgLoss": "1558000", "sL_StrLoss": "672610", "sL_NStrLoss": "885390", "sL_ContLoss": "659850", "geom_point": "0101000020E61000008C46363E30C75EC0C23AE16754914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.111698394999948, 49.13752088400004 ], [ -123.111752003999982, 49.136170982000102 ], [ -123.110520105999939, 49.136153208000117 ], [ -123.109319685999978, 49.136135390000057 ], [ -123.10931279499998, 49.135453203000075 ], [ -123.109160985999949, 49.135094995000031 ], [ -123.109947598999966, 49.134827 ], [ -123.111333286999979, 49.13435340000008 ], [ -123.110990207999976, 49.13387748600011 ], [ -123.110959993999984, 49.133746916000057 ], [ -123.11097221199995, 49.133440011000097 ], [ -123.113012998, 49.133446209000148 ], [ -123.114284020999946, 49.133451499000081 ], [ -123.114267096, 49.134232091000044 ], [ -123.114192551999977, 49.137436758000078 ], [ -123.11418979299999, 49.13755439400007 ], [ -123.112913793999923, 49.137539990000107 ], [ -123.111698394999948, 49.13752088400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82327001", "BldgCostT": "53050001", "sL_LossRatio": "0.708654173301215", "sL_AssetLoss": "1836975", "sL_BldgLoss": "1301780", "sL_StrLoss": "513630", "sL_NStrLoss": "788150", "sL_ContLoss": "535195", "geom_point": "0101000020E6100000A3B1D6B3D4C65EC08F5109153D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.108983262999942, 49.133431314000049 ], [ -123.11097221199995, 49.133440011000097 ], [ -123.110959993999984, 49.133746916000057 ], [ -123.110990207999976, 49.13387748600011 ], [ -123.111333286999979, 49.13435340000008 ], [ -123.109947598999966, 49.134827 ], [ -123.109160985999949, 49.135094995000031 ], [ -123.10931279499998, 49.135453203000075 ], [ -123.109319685999978, 49.136135390000057 ], [ -123.108072603999943, 49.13611900800008 ], [ -123.106838004999958, 49.136100213000098 ], [ -123.105850763999982, 49.136086738000117 ], [ -123.105619691999976, 49.136083616000064 ], [ -123.104380993999925, 49.136065587000139 ], [ -123.103138086999962, 49.13604750500015 ], [ -123.103148215999951, 49.135788603000073 ], [ -123.10315453799997, 49.135626792000089 ], [ -123.103223844999945, 49.133854717000077 ], [ -123.103242169999959, 49.133385401000062 ], [ -123.106926396999981, 49.133422308000043 ], [ -123.108983262999942, 49.133431314000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227155792", "BldgCostT": "149565232", "sL_LossRatio": "0.677148501810998", "sL_AssetLoss": "4312540", "sL_BldgLoss": "2920230", "sL_StrLoss": "1184930", "sL_NStrLoss": "1735300", "sL_ContLoss": "1392310", "geom_point": "0101000020E6100000C1D0A8C8BAC65EC08A011B08B0914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102609089999945, 49.139890645000072 ], [ -123.102655907999988, 49.135757369000025 ], [ -123.102726717999985, 49.133385093000065 ], [ -123.102855509999983, 49.133385166000039 ], [ -123.103242169999959, 49.133385401000062 ], [ -123.103223844999945, 49.133854717000077 ], [ -123.10315453799997, 49.135626792000089 ], [ -123.103148215999951, 49.135788603000073 ], [ -123.103138086999962, 49.13604750500015 ], [ -123.104380993999925, 49.136065587000139 ], [ -123.105619691999976, 49.136083616000064 ], [ -123.105850763999982, 49.136086738000117 ], [ -123.106838004999958, 49.136100213000098 ], [ -123.108072603999943, 49.13611900800008 ], [ -123.10795509799999, 49.138890584000066 ], [ -123.107942031000036, 49.138917499000108 ], [ -123.10780579499999, 49.139198312000069 ], [ -123.107533300999975, 49.139460393000057 ], [ -123.107414787999929, 49.139538306000105 ], [ -123.107798197999955, 49.139872904000065 ], [ -123.10790461199997, 49.140033407000089 ], [ -123.10793029899996, 49.140303512000052 ], [ -123.107907579999946, 49.140713710000078 ], [ -123.102989602999955, 49.14069939700012 ], [ -123.102623937999965, 49.14069818500009 ], [ -123.102556568999887, 49.140697949000085 ], [ -123.102609089999945, 49.139890645000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146030919", "BldgCostT": "91926669", "sL_LossRatio": "0.672798074181337", "sL_AssetLoss": "3044108", "sL_BldgLoss": "2048070", "sL_StrLoss": "910740", "sL_NStrLoss": "1137330", "sL_ContLoss": "996038", "geom_point": "0101000020E61000007F7F20CC6FC65EC04BC6E704A3914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10245079299996, 49.135754197000082 ], [ -123.102498907999944, 49.134212209000069 ], [ -123.101242701999965, 49.13421079700003 ], [ -123.100123508999971, 49.134209505000022 ], [ -123.099567998999959, 49.134199013000099 ], [ -123.09961609500003, 49.13338318600006 ], [ -123.102726717999985, 49.133385093000065 ], [ -123.102655907999988, 49.135757369000025 ], [ -123.102609089999945, 49.139890645000072 ], [ -123.102556568999887, 49.140697949000085 ], [ -123.10230050499996, 49.140697108000026 ], [ -123.10001892299999, 49.140690419000066 ], [ -123.09791129199999, 49.140684186000058 ], [ -123.097969022000015, 49.139847893000066 ], [ -123.098045591999977, 49.139498591000127 ], [ -123.098218191999962, 49.139037513000062 ], [ -123.098465902999948, 49.138360386000031 ], [ -123.098491707999941, 49.138149683000066 ], [ -123.09853019599997, 49.137835108000104 ], [ -123.098500136000013, 49.13764645300008 ], [ -123.098483896999966, 49.137544593000037 ], [ -123.098126306999987, 49.136336811000028 ], [ -123.098494802999966, 49.136316104000102 ], [ -123.098900606999962, 49.13622430300012 ], [ -123.099214609999976, 49.13608679400005 ], [ -123.099591384999954, 49.13591140200004 ], [ -123.100038386, 49.135773018000052 ], [ -123.100368793999962, 49.135747710000054 ], [ -123.101194713999959, 49.135751908000067 ], [ -123.10245079299996, 49.135754197000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76634249", "BldgCostT": "47804999", "sL_LossRatio": "0.665317017911821", "sL_AssetLoss": "1783180", "sL_BldgLoss": "1186380", "sL_StrLoss": "489150", "sL_NStrLoss": "697230", "sL_ContLoss": "596800", "geom_point": "0101000020E6100000A286A19B5EC65EC09F5F39E74C914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101242701999965, 49.13421079700003 ], [ -123.102498907999944, 49.134212209000069 ], [ -123.10245079299996, 49.135754197000082 ], [ -123.101194713999959, 49.135751908000067 ], [ -123.100368793999962, 49.135747710000054 ], [ -123.100038386, 49.135773018000052 ], [ -123.099591384999954, 49.13591140200004 ], [ -123.099214609999976, 49.13608679400005 ], [ -123.098900606999962, 49.13622430300012 ], [ -123.098494802999966, 49.136316104000102 ], [ -123.098126306999987, 49.136336811000028 ], [ -123.098112582999988, 49.136337195000117 ], [ -123.097289100999959, 49.136360997000111 ], [ -123.096967921, 49.1364136 ], [ -123.096864916999905, 49.136199095000016 ], [ -123.096883685999941, 49.135523890000044 ], [ -123.096883384999956, 49.13447529400004 ], [ -123.097605103999939, 49.134479403000064 ], [ -123.098784517999917, 49.134240899000119 ], [ -123.09914737599992, 49.134199397000017 ], [ -123.099567998999959, 49.134199013000099 ], [ -123.100123508999971, 49.134209505000022 ], [ -123.101242701999965, 49.13421079700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64222999", "BldgCostT": "43819999", "sL_LossRatio": "0.723293495343051", "sL_AssetLoss": "1645498", "sL_BldgLoss": "1190178", "sL_StrLoss": "494488", "sL_NStrLoss": "695690", "sL_ContLoss": "455320", "geom_point": "0101000020E61000002FD880E722C65EC0A2AB74779D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094652280999966, 49.138501597000065 ], [ -123.094667491999957, 49.137754314000091 ], [ -123.093552390999918, 49.137751214000083 ], [ -123.09344000899992, 49.137774284000088 ], [ -123.093397293999942, 49.137537086000115 ], [ -123.093412295999926, 49.137296899000056 ], [ -123.093537509999976, 49.136893100000115 ], [ -123.093597801, 49.136565004000069 ], [ -123.093644808999898, 49.135329298 ], [ -123.095727007999955, 49.135332384000016 ], [ -123.095719624999958, 49.1360663990001 ], [ -123.095740507999949, 49.136258908000052 ], [ -123.09582678299995, 49.136522508000063 ], [ -123.095922988999945, 49.136692587000034 ], [ -123.096967921, 49.1364136 ], [ -123.097289100999959, 49.136360997000111 ], [ -123.098112582999988, 49.136337195000117 ], [ -123.098126306999987, 49.136336811000028 ], [ -123.098483896999966, 49.137544593000037 ], [ -123.098500136000013, 49.13764645300008 ], [ -123.09853019599997, 49.137835108000104 ], [ -123.098491707999941, 49.138149683000066 ], [ -123.098465902999948, 49.138360386000031 ], [ -123.098218191999962, 49.139037513000062 ], [ -123.096729712999917, 49.139023504000065 ], [ -123.096689209999951, 49.139849397000049 ], [ -123.094246499999912, 49.139844808000085 ], [ -123.094286109000024, 49.139319697000133 ], [ -123.094671381999959, 49.138898502000075 ], [ -123.094644182999929, 49.13885100100007 ], [ -123.094652280999966, 49.138501597000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98515750", "BldgCostT": "64840000", "sL_LossRatio": "0.722566260725461", "sL_AssetLoss": "1834420", "sL_BldgLoss": "1325490", "sL_StrLoss": "588960", "sL_NStrLoss": "736530", "sL_ContLoss": "508930", "geom_point": "0101000020E6100000236F993610C65EC0ADF0DBCE46914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091871987000033, 49.13798240800002 ], [ -123.092055796999944, 49.134781037000067 ], [ -123.092134802, 49.133404634 ], [ -123.095179737999956, 49.133412135000057 ], [ -123.096801441999958, 49.133417161000082 ], [ -123.099284278999932, 49.133430997000104 ], [ -123.09944469899996, 49.133384795000097 ], [ -123.09961609500003, 49.13338318600006 ], [ -123.099567998999959, 49.134199013000099 ], [ -123.09914737599992, 49.134199397000017 ], [ -123.098784517999917, 49.134240899000119 ], [ -123.097605103999939, 49.134479403000064 ], [ -123.096883384999956, 49.13447529400004 ], [ -123.096883685999941, 49.135523890000044 ], [ -123.096864916999905, 49.136199095000016 ], [ -123.096967921, 49.1364136 ], [ -123.095922988999945, 49.136692587000034 ], [ -123.09582678299995, 49.136522508000063 ], [ -123.095740507999949, 49.136258908000052 ], [ -123.095719624999958, 49.1360663990001 ], [ -123.095727007999955, 49.135332384000016 ], [ -123.093644808999898, 49.135329298 ], [ -123.093597801, 49.136565004000069 ], [ -123.093537509999976, 49.136893100000115 ], [ -123.093412295999926, 49.137296899000056 ], [ -123.093397293999942, 49.137537086000115 ], [ -123.09344000899992, 49.137774284000088 ], [ -123.092937184999982, 49.137949896000116 ], [ -123.092566700999924, 49.138002897000028 ], [ -123.091871987000033, 49.13798240800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103832322", "BldgCostT": "66804360", "sL_LossRatio": "0.684792562271684", "sL_AssetLoss": "2130543", "sL_BldgLoss": "1458980", "sL_StrLoss": "593890", "sL_NStrLoss": "865090", "sL_ContLoss": "671563", "geom_point": "0101000020E6100000B714CAA109C65EC0223968C8DB914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091727110999926, 49.140190203000088 ], [ -123.091871987000033, 49.13798240800002 ], [ -123.092566700999924, 49.138002897000028 ], [ -123.092937184999982, 49.137949896000116 ], [ -123.09344000899992, 49.137774284000088 ], [ -123.093552390999918, 49.137751214000083 ], [ -123.094667491999957, 49.137754314000091 ], [ -123.094652280999966, 49.138501597000065 ], [ -123.094644182999929, 49.13885100100007 ], [ -123.094671381999959, 49.138898502000075 ], [ -123.094286109000024, 49.139319697000133 ], [ -123.094246499999912, 49.139844808000085 ], [ -123.096689209999951, 49.139849397000049 ], [ -123.096729712999917, 49.139023504000065 ], [ -123.098218191999962, 49.139037513000062 ], [ -123.098045591999977, 49.139498591000127 ], [ -123.097969022000015, 49.139847893000066 ], [ -123.09791129199999, 49.140684186000058 ], [ -123.091732821999969, 49.140668804000079 ], [ -123.091727110999926, 49.140190203000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166312745", "BldgCostT": "107809077", "sL_LossRatio": "0.67938099018402", "sL_AssetLoss": "4109014", "sL_BldgLoss": "2791586", "sL_StrLoss": "1243796", "sL_NStrLoss": "1547790", "sL_ContLoss": "1317428", "geom_point": "0101000020E6100000AD8F7F4DF3C55EC064376DA5DB924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087253908999941, 49.155502783000095 ], [ -123.086733891999984, 49.155266548000071 ], [ -123.086543767999942, 49.155180145000017 ], [ -123.08656892899991, 49.147687196000135 ], [ -123.086580888999961, 49.144124914000095 ], [ -123.086592841999959, 49.140573085000042 ], [ -123.086593243999985, 49.140450444000074 ], [ -123.086577420999902, 49.137636366000024 ], [ -123.086569101999928, 49.136154156000032 ], [ -123.086575417999967, 49.134390321000112 ], [ -123.086592656999969, 49.133489845000085 ], [ -123.086592888999931, 49.133477202000073 ], [ -123.086880815999962, 49.133473305000059 ], [ -123.087013874999954, 49.133470621000129 ], [ -123.087181277999946, 49.133466150000082 ], [ -123.088360706999978, 49.133445817000066 ], [ -123.088598661999967, 49.133445073000111 ], [ -123.088778634999983, 49.133444526000041 ], [ -123.089168944999969, 49.133439864000117 ], [ -123.092134802, 49.133404634 ], [ -123.092055796999944, 49.134781037000067 ], [ -123.091871987000033, 49.13798240800002 ], [ -123.091727110999926, 49.140190203000088 ], [ -123.091732821999969, 49.140668804000079 ], [ -123.091735163999957, 49.140763496000019 ], [ -123.091784284999974, 49.142706266000125 ], [ -123.091824292999959, 49.144290206000107 ], [ -123.09183441199994, 49.147789613000064 ], [ -123.09502870299994, 49.147789416000087 ], [ -123.095052286999945, 49.14777648000009 ], [ -123.095059090999982, 49.147772782000096 ], [ -123.095488397999958, 49.147537889000084 ], [ -123.097092193999941, 49.147531604000164 ], [ -123.098014603999943, 49.14752941100005 ], [ -123.098036184999955, 49.146677797000073 ], [ -123.098101003999915, 49.146538987000085 ], [ -123.098245692999953, 49.146569912000061 ], [ -123.09857307799993, 49.146594002 ], [ -123.09900759599999, 49.146592199000061 ], [ -123.09996459599995, 49.146584697000037 ], [ -123.100203103999931, 49.146561398000067 ], [ -123.10061341, 49.146464310000063 ], [ -123.100804206999968, 49.146459613000076 ], [ -123.101553699, 49.146438311000054 ], [ -123.101736702, 49.146403610000085 ], [ -123.101789506999935, 49.146392404000089 ], [ -123.102145992999951, 49.146169601000082 ], [ -123.102272108999898, 49.145964712000072 ], [ -123.102286171999978, 49.145941791000055 ], [ -123.102277374999943, 49.144324399000077 ], [ -123.102274497999986, 49.141510790000041 ], [ -123.10230050499996, 49.140697108000026 ], [ -123.102556568999887, 49.140697949000085 ], [ -123.102570091999922, 49.143201191000031 ], [ -123.102576103999979, 49.144311708000046 ], [ -123.102573403999912, 49.144684231000113 ], [ -123.102571881999907, 49.144856079000135 ], [ -123.102542813999946, 49.148036337000065 ], [ -123.102558701999953, 49.148489066000089 ], [ -123.102633971999978, 49.155471983000069 ], [ -123.10246252499995, 49.15547163100009 ], [ -123.096967320999923, 49.155460699000059 ], [ -123.09173549599997, 49.155420306000075 ], [ -123.090105420999961, 49.155446599000086 ], [ -123.090009486999975, 49.15544814000004 ], [ -123.08981329099997, 49.155451313000086 ], [ -123.089441295999904, 49.155481811000094 ], [ -123.08925371799991, 49.155545182000026 ], [ -123.089132913999919, 49.155482397000092 ], [ -123.089029986999932, 49.155467123000065 ], [ -123.088940115999947, 49.155453800000053 ], [ -123.087552940999913, 49.155494112000042 ], [ -123.087253908999941, 49.155502783000095 ] ], [ [ -123.088658283999933, 49.147959636000088 ], [ -123.088658097999954, 49.147855154000112 ], [ -123.088246720999933, 49.147855468000074 ], [ -123.088245762999989, 49.147315746000118 ], [ -123.087834390999944, 49.14731606000008 ], [ -123.087833912999912, 49.147046199000108 ], [ -123.087011172999922, 49.147046822000092 ], [ -123.087011644999919, 49.147316683000049 ], [ -123.08678354499996, 49.147316854000067 ], [ -123.086600272999959, 49.147316993000068 ], [ -123.086602155999955, 49.148396437000073 ], [ -123.086776801999946, 49.148396307000013 ], [ -123.087424917999911, 49.1483958170001 ], [ -123.087428241999987, 49.150284846000098 ], [ -123.08783963799999, 49.150284534000043 ], [ -123.087841069999953, 49.151094116000095 ], [ -123.088252472999969, 49.151093803000073 ], [ -123.088253910999953, 49.151903386000079 ], [ -123.088315822999959, 49.151903338000089 ], [ -123.088403538999955, 49.150502200000084 ], [ -123.088498969999932, 49.150504782000034 ], [ -123.088658283999933, 49.147959636000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80545168", "BldgCostT": "54131668", "sL_LossRatio": "0.711846410220218", "sL_AssetLoss": "1898668", "sL_BldgLoss": "1351560", "sL_StrLoss": "572240", "sL_NStrLoss": "779320", "sL_ContLoss": "547108", "geom_point": "0101000020E61000009CDEDD4E0BC65EC09F7CD5253E924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091732821999969, 49.140668804000079 ], [ -123.09791129199999, 49.140684186000058 ], [ -123.097893002999911, 49.141131502000064 ], [ -123.09799370599994, 49.141494607000091 ], [ -123.096815493999941, 49.141491585000061 ], [ -123.095504391999967, 49.141488699000114 ], [ -123.094237082999925, 49.141486001000068 ], [ -123.092996388999893, 49.141475002000078 ], [ -123.092995710999929, 49.143416404000078 ], [ -123.094217906999958, 49.143417005000082 ], [ -123.09550318, 49.143416600000101 ], [ -123.098092881999932, 49.143418901000132 ], [ -123.09808960299992, 49.144306206000074 ], [ -123.091824292999959, 49.144290206000107 ], [ -123.091784284999974, 49.142706266000125 ], [ -123.091735163999957, 49.140763496000019 ], [ -123.091732821999969, 49.140668804000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46335416", "BldgCostT": "31691666", "sL_LossRatio": "0.743272811918063", "sL_AssetLoss": "859200", "sL_BldgLoss": "638620", "sL_StrLoss": "287310", "sL_NStrLoss": "351310", "sL_ContLoss": "220580", "geom_point": "0101000020E6100000F6C421B81DC65EC070EE4CF43B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096815493999941, 49.141491585000061 ], [ -123.09799370599994, 49.141494607000091 ], [ -123.098161791999928, 49.14202881799999 ], [ -123.098205004999969, 49.142500297000034 ], [ -123.098092881999932, 49.143418901000132 ], [ -123.09550318, 49.143416600000101 ], [ -123.094217906999958, 49.143417005000082 ], [ -123.092995710999929, 49.143416404000078 ], [ -123.092996388999893, 49.141475002000078 ], [ -123.094237082999925, 49.141486001000068 ], [ -123.095504391999967, 49.141488699000114 ], [ -123.096815493999941, 49.141491585000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77907833", "BldgCostT": "53048333", "sL_LossRatio": "0.744944199671717", "sL_AssetLoss": "1273290", "sL_BldgLoss": "948530", "sL_StrLoss": "435110", "sL_NStrLoss": "513420", "sL_ContLoss": "324760", "geom_point": "0101000020E610000071AF594F69C65EC0F9BBFB0C3D924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10001892299999, 49.140690419000066 ], [ -123.10230050499996, 49.140697108000026 ], [ -123.102274497999986, 49.141510790000041 ], [ -123.102277374999943, 49.144324399000077 ], [ -123.09808960299992, 49.144306206000074 ], [ -123.098092881999932, 49.143418901000132 ], [ -123.098205004999969, 49.142500297000034 ], [ -123.098161791999928, 49.14202881799999 ], [ -123.09799370599994, 49.141494607000091 ], [ -123.097893002999911, 49.141131502000064 ], [ -123.09791129199999, 49.140684186000058 ], [ -123.10001892299999, 49.140690419000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "487764033", "BldgCostT": "333475546", "sL_LossRatio": "0.77225530392054", "sL_AssetLoss": "11624420", "sL_BldgLoss": "8977020", "sL_StrLoss": "4084450", "sL_NStrLoss": "4892570", "sL_ContLoss": "2647400", "geom_point": "0101000020E6100000FF1B599E2CC65EC06441CCEBA9924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09183441199994, 49.147789613000064 ], [ -123.091824292999959, 49.144290206000107 ], [ -123.09808960299992, 49.144306206000074 ], [ -123.102277374999943, 49.144324399000077 ], [ -123.102286171999978, 49.145941791000055 ], [ -123.102272108999898, 49.145964712000072 ], [ -123.102145992999951, 49.146169601000082 ], [ -123.101789506999935, 49.146392404000089 ], [ -123.101736702, 49.146403610000085 ], [ -123.101553699, 49.146438311000054 ], [ -123.100804206999968, 49.146459613000076 ], [ -123.10061341, 49.146464310000063 ], [ -123.100203103999931, 49.146561398000067 ], [ -123.09996459599995, 49.146584697000037 ], [ -123.09900759599999, 49.146592199000061 ], [ -123.09857307799993, 49.146594002 ], [ -123.098245692999953, 49.146569912000061 ], [ -123.098101003999915, 49.146538987000085 ], [ -123.098036184999955, 49.146677797000073 ], [ -123.098014603999943, 49.14752941100005 ], [ -123.097092193999941, 49.147531604000164 ], [ -123.095488397999958, 49.147537889000084 ], [ -123.095059090999982, 49.147772782000096 ], [ -123.095052286999945, 49.14777648000009 ], [ -123.09502870299994, 49.147789416000087 ], [ -123.09183441199994, 49.147789613000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112458249", "BldgCostT": "76194999", "sL_LossRatio": "0.713869014683635", "sL_AssetLoss": "3126610", "sL_BldgLoss": "2231990", "sL_StrLoss": "913360", "sL_NStrLoss": "1318630", "sL_ContLoss": "894620", "geom_point": "0101000020E6100000E3D7495CCBC65EC0EB3D74C535924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104184190999916, 49.143916317000055 ], [ -123.104168198999915, 49.14322578900007 ], [ -123.102912192999966, 49.143218112000113 ], [ -123.102937414999985, 49.142416996000136 ], [ -123.102965106999932, 49.14153208500008 ], [ -123.102989602999955, 49.14069939700012 ], [ -123.107907579999946, 49.140713710000078 ], [ -123.10913361199999, 49.140716364000106 ], [ -123.109147405999977, 49.140716390000065 ], [ -123.109135180999942, 49.141618804000075 ], [ -123.109143558999961, 49.142439128000049 ], [ -123.109158913999948, 49.14394830700013 ], [ -123.10797411099999, 49.143940800000088 ], [ -123.104184190999916, 49.143916317000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115578584", "BldgCostT": "77293334", "sL_LossRatio": "0.672790041076258", "sL_AssetLoss": "6042420", "sL_BldgLoss": "4065280", "sL_StrLoss": "1604290", "sL_NStrLoss": "2460990", "sL_ContLoss": "1977140", "geom_point": "0101000020E6100000C464B31BE4C65EC0E1F1CC4F9A924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105850017999984, 49.146808006000107 ], [ -123.106215311999946, 49.146486302000064 ], [ -123.106491313999982, 49.146235104000041 ], [ -123.106569123999975, 49.146042603000026 ], [ -123.10662748699994, 49.14466219500008 ], [ -123.104109796999921, 49.144648589000099 ], [ -123.102970108999969, 49.144642208000135 ], [ -123.102912192999966, 49.143218112000113 ], [ -123.104168198999915, 49.14322578900007 ], [ -123.104184190999916, 49.143916317000055 ], [ -123.10797411099999, 49.143940800000088 ], [ -123.109158913999948, 49.14394830700013 ], [ -123.109170893999959, 49.144791803 ], [ -123.112322396999957, 49.14479448500007 ], [ -123.112917613999954, 49.144874398000063 ], [ -123.112921309999962, 49.145631302000055 ], [ -123.111842889999949, 49.145631091000034 ], [ -123.109147301999911, 49.145634404000042 ], [ -123.109147897999989, 49.145682383000107 ], [ -123.109160182999915, 49.1466843050001 ], [ -123.109169184, 49.147487315000035 ], [ -123.105835387999903, 49.147483294000089 ], [ -123.105850017999984, 49.146808006000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69749250", "BldgCostT": "45420000", "sL_LossRatio": "0.654104368526562", "sL_AssetLoss": "3831040", "sL_BldgLoss": "2505900", "sL_StrLoss": "1031700", "sL_NStrLoss": "1474200", "sL_ContLoss": "1325140", "geom_point": "0101000020E61000004951E3B5BDC65EC0BFB57EC0A4924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104109796999921, 49.144648589000099 ], [ -123.10662748699994, 49.14466219500008 ], [ -123.106569123999975, 49.146042603000026 ], [ -123.106491313999982, 49.146235104000041 ], [ -123.106215311999946, 49.146486302000064 ], [ -123.105850017999984, 49.146808006000107 ], [ -123.105379622999948, 49.146725995000054 ], [ -123.104181421999954, 49.146711805000038 ], [ -123.104166411999984, 49.146336596000047 ], [ -123.104125980999981, 49.145488594000014 ], [ -123.104119781999955, 49.145368599000058 ], [ -123.104109796999921, 49.144648589000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83050206", "BldgCostT": "55597039", "sL_LossRatio": "0.670379196142455", "sL_AssetLoss": "4284590", "sL_BldgLoss": "2872300", "sL_StrLoss": "1118070", "sL_NStrLoss": "1754230", "sL_ContLoss": "1412290", "geom_point": "0101000020E610000054226850DDC65EC0EC556474C0924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102542813999946, 49.148036337000065 ], [ -123.102571881999907, 49.144856079000135 ], [ -123.102573403999912, 49.144684231000113 ], [ -123.102576103999979, 49.144311708000046 ], [ -123.102570091999922, 49.143201191000031 ], [ -123.102556568999887, 49.140697949000085 ], [ -123.102623937999965, 49.14069818500009 ], [ -123.102989602999955, 49.14069939700012 ], [ -123.102965106999932, 49.14153208500008 ], [ -123.102937414999985, 49.142416996000136 ], [ -123.102912192999966, 49.143218112000113 ], [ -123.102970108999969, 49.144642208000135 ], [ -123.104109796999921, 49.144648589000099 ], [ -123.104119781999955, 49.145368599000058 ], [ -123.104125980999981, 49.145488594000014 ], [ -123.104166411999984, 49.146336596000047 ], [ -123.104181421999954, 49.146711805000038 ], [ -123.105379622999948, 49.146725995000054 ], [ -123.105850017999984, 49.146808006000107 ], [ -123.105835387999903, 49.147483294000089 ], [ -123.109169184, 49.147487315000035 ], [ -123.109160182999915, 49.1466843050001 ], [ -123.109147897999989, 49.145682383000107 ], [ -123.109147301999911, 49.145634404000042 ], [ -123.111842889999949, 49.145631091000034 ], [ -123.1118495, 49.146120487000054 ], [ -123.111583902999882, 49.146780101000068 ], [ -123.111597184999951, 49.147491194000111 ], [ -123.112364712999934, 49.14749108900002 ], [ -123.112571978999981, 49.147461496000027 ], [ -123.112780505, 49.147369801000096 ], [ -123.11292880299996, 49.147189105000045 ], [ -123.112928642999947, 49.147131146000078 ], [ -123.11292709099996, 49.14655391200008 ], [ -123.114172101999941, 49.146564800000107 ], [ -123.114189083999946, 49.148013 ], [ -123.11407472399992, 49.147868800000019 ], [ -123.112964009999928, 49.147849510000079 ], [ -123.113034064999965, 49.1479766080001 ], [ -123.105837410999982, 49.147824791000104 ], [ -123.103763819, 49.148056669000013 ], [ -123.103347282999934, 49.148055387000078 ], [ -123.102542813999946, 49.148036337000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113271917", "BldgCostT": "71281667", "sL_LossRatio": "0.68708253851661", "sL_AssetLoss": "1881461", "sL_BldgLoss": "1292719", "sL_StrLoss": "624740", "sL_NStrLoss": "667979", "sL_ContLoss": "588742", "geom_point": "0101000020E6100000DDBA61FC30C75EC01E275CFA5D924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.112917613999954, 49.144874398000063 ], [ -123.112322396999957, 49.14479448500007 ], [ -123.109170893999959, 49.144791803 ], [ -123.109158913999948, 49.14394830700013 ], [ -123.109143558999961, 49.142439128000049 ], [ -123.109135180999942, 49.141618804000075 ], [ -123.109147405999977, 49.140716390000065 ], [ -123.114143284999955, 49.140733395000041 ], [ -123.114132805999986, 49.141632201000064 ], [ -123.114131257999986, 49.142965079000078 ], [ -123.114131093999973, 49.143095216000106 ], [ -123.115438899, 49.143107799000113 ], [ -123.115429588999987, 49.143654392000023 ], [ -123.115479406999953, 49.143779991000073 ], [ -123.115569399, 49.143875189000013 ], [ -123.115699091999957, 49.143927416000096 ], [ -123.115879602999925, 49.143955593000044 ], [ -123.11717321299993, 49.143975886000092 ], [ -123.117162211999954, 49.144750307000038 ], [ -123.11525177599998, 49.144731598000085 ], [ -123.115258602999987, 49.145396607000059 ], [ -123.11415949299996, 49.145397797000037 ], [ -123.114172101999941, 49.146564800000107 ], [ -123.11292709099996, 49.14655391200008 ], [ -123.112928642999947, 49.147131146000078 ], [ -123.11292880299996, 49.147189105000045 ], [ -123.112780505, 49.147369801000096 ], [ -123.112571978999981, 49.147461496000027 ], [ -123.112364712999934, 49.14749108900002 ], [ -123.111597184999951, 49.147491194000111 ], [ -123.111583902999882, 49.146780101000068 ], [ -123.1118495, 49.146120487000054 ], [ -123.111842889999949, 49.145631091000034 ], [ -123.112921309999962, 49.145631302000055 ], [ -123.112917613999954, 49.144874398000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124637084", "BldgCostT": "84043334", "sL_LossRatio": "0.694774209717523", "sL_AssetLoss": "6064920", "sL_BldgLoss": "4213750", "sL_StrLoss": "1695130", "sL_NStrLoss": "2518620", "sL_ContLoss": "1851170", "geom_point": "0101000020E6100000F6BA877CFEC65EC095204C1F74934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102633971999978, 49.155471983000069 ], [ -123.102558701999953, 49.148489066000089 ], [ -123.102542813999946, 49.148036337000065 ], [ -123.103347282999934, 49.148055387000078 ], [ -123.103763819, 49.148056669000013 ], [ -123.105837410999982, 49.147824791000104 ], [ -123.113034064999965, 49.1479766080001 ], [ -123.112964009999928, 49.147849510000079 ], [ -123.11407472399992, 49.147868800000019 ], [ -123.114189083999946, 49.148013 ], [ -123.114166682999937, 49.15007372600008 ], [ -123.114148293999961, 49.15176231000008 ], [ -123.115337311999937, 49.151771696000054 ], [ -123.115337908999948, 49.152513104000043 ], [ -123.115344705999973, 49.15284581600006 ], [ -123.115426013999965, 49.153148793000099 ], [ -123.115524996999909, 49.153319998000065 ], [ -123.115743695999981, 49.1535509980001 ], [ -123.11648549, 49.153191597000074 ], [ -123.116639290999984, 49.153141701000081 ], [ -123.11682261599999, 49.153124998000145 ], [ -123.117555515000021, 49.153131097000028 ], [ -123.11753412899999, 49.154184584000099 ], [ -123.117445525999983, 49.154285800000075 ], [ -123.117443821, 49.154601095000118 ], [ -123.118565629999978, 49.154612188000073 ], [ -123.119806502999964, 49.154603959000099 ], [ -123.119801321999915, 49.15548399500009 ], [ -123.116928076999969, 49.155491754000145 ], [ -123.116379896999959, 49.155491509000086 ], [ -123.114104624999982, 49.155492682 ], [ -123.112926736999952, 49.155490739000122 ], [ -123.111472983999974, 49.155488321000043 ], [ -123.111130133999893, 49.155487749000081 ], [ -123.10837609899994, 49.155483103000087 ], [ -123.10269571399999, 49.155472103000093 ], [ -123.102633971999978, 49.155471983000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116816073", "BldgCostT": "79934361", "sL_LossRatio": "0.737370865510055", "sL_AssetLoss": "5008538", "sL_BldgLoss": "3693150", "sL_StrLoss": "1478340", "sL_NStrLoss": "2214810", "sL_ContLoss": "1315388", "geom_point": "0101000020E6100000E49E09A88BC75EC0DFA946D094934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115743695999981, 49.1535509980001 ], [ -123.115524996999909, 49.153319998000065 ], [ -123.115426013999965, 49.153148793000099 ], [ -123.115344705999973, 49.15284581600006 ], [ -123.115337908999948, 49.152513104000043 ], [ -123.115337311999937, 49.151771696000054 ], [ -123.116271502999908, 49.15177962700006 ], [ -123.116922126999953, 49.151784336000119 ], [ -123.11719341899996, 49.151786288000025 ], [ -123.118630285000023, 49.151798643000149 ], [ -123.118910705999951, 49.151799138000101 ], [ -123.11960321, 49.151800353000091 ], [ -123.119721854999952, 49.151832352000021 ], [ -123.119788365999966, 49.151908920000032 ], [ -123.119791038999921, 49.153702656000121 ], [ -123.119801723999942, 49.154371401000077 ], [ -123.119806502999964, 49.154603959000099 ], [ -123.118565629999978, 49.154612188000073 ], [ -123.117443821, 49.154601095000118 ], [ -123.117445525999983, 49.154285800000075 ], [ -123.11753412899999, 49.154184584000099 ], [ -123.117555515000021, 49.153131097000028 ], [ -123.11682261599999, 49.153124998000145 ], [ -123.116639290999984, 49.153141701000081 ], [ -123.11648549, 49.153191597000074 ], [ -123.115743695999981, 49.1535509980001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134067585", "BldgCostT": "82993335", "sL_LossRatio": "0.625861966999823", "sL_AssetLoss": "6763600", "sL_BldgLoss": "4233080", "sL_StrLoss": "1745510", "sL_NStrLoss": "2487570", "sL_ContLoss": "2530520", "geom_point": "0101000020E610000061094A5503C65EC09FCDAACFD5944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.086489199999932, 49.169371205000061 ], [ -123.086491592999963, 49.167114700000091 ], [ -123.086491800999937, 49.166922597000116 ], [ -123.086538861999941, 49.156410190000074 ], [ -123.086541727999972, 49.155778086000041 ], [ -123.086541776999937, 49.155769092000114 ], [ -123.086543767999942, 49.155180145000017 ], [ -123.086733891999984, 49.155266548000071 ], [ -123.087253908999941, 49.155502783000095 ], [ -123.087552940999913, 49.155494112000042 ], [ -123.088940115999947, 49.155453800000053 ], [ -123.089029986999932, 49.155467123000065 ], [ -123.089132913999919, 49.155482397000092 ], [ -123.08925371799991, 49.155545182000026 ], [ -123.089441295999904, 49.155481811000094 ], [ -123.08981329099997, 49.155451313000086 ], [ -123.090009486999975, 49.15544814000004 ], [ -123.090105420999961, 49.155446599000086 ], [ -123.09173549599997, 49.155420306000075 ], [ -123.096967320999923, 49.155460699000059 ], [ -123.10246252499995, 49.15547163100009 ], [ -123.102633971999978, 49.155471983000069 ], [ -123.102525768999911, 49.159447710000094 ], [ -123.101022987999897, 49.159449035000101 ], [ -123.101021889999984, 49.158909313000045 ], [ -123.099376017999958, 49.158910742000096 ], [ -123.099375476999953, 49.158640881000082 ], [ -123.09855254699994, 49.158641586000044 ], [ -123.098552152999929, 49.158443617000039 ], [ -123.096257249999951, 49.158381738000074 ], [ -123.096301036999961, 49.157680509000095 ], [ -123.095629572999954, 49.157662395000123 ], [ -123.095629416999969, 49.157664896000085 ], [ -123.095258921999957, 49.1576548990001 ], [ -123.095259783999921, 49.158104628000075 ], [ -123.095109297999954, 49.158104752000014 ], [ -123.095107870999925, 49.158127578000069 ], [ -123.095264054999959, 49.158131792000049 ], [ -123.095172269999935, 49.15960116600013 ], [ -123.095680730999931, 49.15961488500006 ], [ -123.095617202, 49.160632004000064 ], [ -123.096346153999917, 49.160651668000071 ], [ -123.096348248999959, 49.160618124000067 ], [ -123.096985519999961, 49.160635311000036 ], [ -123.096986523999988, 49.160619239000049 ], [ -123.097630088999949, 49.16063659200006 ], [ -123.097630597, 49.160628455000044 ], [ -123.098634913999888, 49.16065552700011 ], [ -123.098637457999956, 49.160614780000088 ], [ -123.099305301999934, 49.160632776000043 ], [ -123.099306330999923, 49.160616296000093 ], [ -123.100241818999919, 49.160641498000068 ], [ -123.100260607999985, 49.160340218000051 ], [ -123.102499834999932, 49.160400510000038 ], [ -123.102433921999989, 49.162821942000065 ], [ -123.102966234999911, 49.170072487000049 ], [ -123.10296649799993, 49.170159593000136 ], [ -123.102966527999968, 49.170177889000037 ], [ -123.095199087999944, 49.170164115000098 ], [ -123.093973112999961, 49.170256253000076 ], [ -123.092879327999981, 49.170339351000059 ], [ -123.091643159999975, 49.170352827000045 ], [ -123.090868505999936, 49.170353483000049 ], [ -123.090379656999986, 49.170353858000048 ], [ -123.090364449999981, 49.170353854000084 ], [ -123.087653217, 49.170355807000071 ], [ -123.087470923999916, 49.1703575760001 ], [ -123.087140090999966, 49.170360796000047 ], [ -123.08697711, 49.17036127700004 ], [ -123.086898783999942, 49.170361500000126 ], [ -123.086872355999944, 49.170315496000086 ], [ -123.086828326999935, 49.170238902000108 ], [ -123.08681145599995, 49.170205114000062 ], [ -123.086694287999975, 49.169970397000043 ], [ -123.086489199999932, 49.169371205000061 ] ], [ [ -123.102272964999969, 49.167004039000069 ], [ -123.102271296999987, 49.166194459000039 ], [ -123.101859770999965, 49.166194822000129 ], [ -123.101857580999962, 49.165127595000065 ], [ -123.10003983099989, 49.165078649000108 ], [ -123.100039412999962, 49.165085367000067 ], [ -123.09932879199999, 49.165066224000057 ], [ -123.099327483999929, 49.165087184000093 ], [ -123.098045984999985, 49.165052650000057 ], [ -123.098045730999914, 49.165056716000052 ], [ -123.097328717, 49.165037387000062 ], [ -123.097327901999961, 49.165050434000051 ], [ -123.096244171999956, 49.165021210000049 ], [ -123.096240558999938, 49.165079060000082 ], [ -123.095122925999974, 49.165048910000081 ], [ -123.094948587999937, 49.167839172000107 ], [ -123.095257950999951, 49.16784751800008 ], [ -123.095247418999946, 49.168016095000041 ], [ -123.095584335999945, 49.168025183000076 ], [ -123.095585863999943, 49.168000727000035 ], [ -123.096550532999927, 49.168026744000052 ], [ -123.096559831999954, 49.167877850000075 ], [ -123.097336288999927, 49.167898785000084 ], [ -123.097336130999949, 49.167817888000066 ], [ -123.097428971999989, 49.167817809000091 ], [ -123.097438507, 49.167665070000041 ], [ -123.099558549, 49.167722201000124 ], [ -123.099562221999975, 49.167663322000074 ], [ -123.101451343999955, 49.167714194000048 ], [ -123.10145044599993, 49.167274625000118 ], [ -123.101861983999967, 49.167274263000117 ], [ -123.101861430999946, 49.167004402000089 ], [ -123.102272964999969, 49.167004039000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167069749", "BldgCostT": "110119999", "sL_LossRatio": "0.7139740650523", "sL_AssetLoss": "2791600", "sL_BldgLoss": "1993130", "sL_StrLoss": "943090", "sL_NStrLoss": "1050040", "sL_ContLoss": "798470", "geom_point": "0101000020E610000047E5ED0867C75EC035D6D405FE984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.113868508999971, 49.196856251000099 ], [ -123.11387000799999, 49.196440394000057 ], [ -123.112816106999929, 49.196446386000012 ], [ -123.11280529299998, 49.196355093000072 ], [ -123.112485115999974, 49.195923201000042 ], [ -123.112236494999962, 49.195729986000131 ], [ -123.112052666999901, 49.195630802000061 ], [ -123.111888680999954, 49.195542301000032 ], [ -123.111501802999939, 49.195411292000124 ], [ -123.111134605999894, 49.195360913000073 ], [ -123.110604318999918, 49.195351207000051 ], [ -123.109455116999968, 49.19534649700006 ], [ -123.107819424999917, 49.195354806000054 ], [ -123.107822284999955, 49.194424608000112 ], [ -123.107823291999978, 49.19409840100009 ], [ -123.107826910999975, 49.192920898000054 ], [ -123.107831800999946, 49.192003991 ], [ -123.10921718899999, 49.192004317000091 ], [ -123.110870091999971, 49.192003606000043 ], [ -123.112310586999939, 49.191999785000085 ], [ -123.113894709999954, 49.192001798000071 ], [ -123.114986693999953, 49.191998056000074 ], [ -123.115000484999939, 49.191998002000062 ], [ -123.115140500999971, 49.191997307000037 ], [ -123.11557640599996, 49.191999657000018 ], [ -123.115686205999936, 49.192000256000014 ], [ -123.117121907999959, 49.192007987000046 ], [ -123.118298393999979, 49.192014202000053 ], [ -123.119299451999979, 49.193092678000035 ], [ -123.119727479999966, 49.193553802000068 ], [ -123.119734615999946, 49.193561506000052 ], [ -123.12072748699994, 49.194628494000057 ], [ -123.121982691999946, 49.195977321000072 ], [ -123.122797524999925, 49.196854860000045 ], [ -123.124064146999956, 49.198218902000072 ], [ -123.124071317999892, 49.198226593000115 ], [ -123.12376909299995, 49.198299614000121 ], [ -123.123375909999936, 49.19833411100003 ], [ -123.122162893999956, 49.198317991000067 ], [ -123.121841711999934, 49.198341808000109 ], [ -123.11943665699999, 49.198742968000033 ], [ -123.119048589, 49.198807698000046 ], [ -123.11733811, 49.199091603000035 ], [ -123.117263379999969, 49.199097686000094 ], [ -123.117113295999957, 49.199109897000064 ], [ -123.116402240999918, 49.19911568 ], [ -123.11581208199999, 49.199120475000022 ], [ -123.115193987999945, 49.199125495 ], [ -123.114603685999924, 49.199130274000076 ], [ -123.113860274999965, 49.199136301000046 ], [ -123.113864599999971, 49.19793581400004 ], [ -123.113868508999971, 49.196856251000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160174219", "BldgCostT": "109090412", "sL_LossRatio": "0.740593006249169", "sL_AssetLoss": "1917855", "sL_BldgLoss": "1420350", "sL_StrLoss": "739810", "sL_NStrLoss": "680540", "sL_ContLoss": "497505", "geom_point": "0101000020E6100000D539277218C75EC07F2A1B9438994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.107817192999974, 49.196645603000057 ], [ -123.107819424999917, 49.195354806000054 ], [ -123.109455116999968, 49.19534649700006 ], [ -123.110604318999918, 49.195351207000051 ], [ -123.111134605999894, 49.195360913000073 ], [ -123.111501802999939, 49.195411292000124 ], [ -123.111888680999954, 49.195542301000032 ], [ -123.112052666999901, 49.195630802000061 ], [ -123.112236494999962, 49.195729986000131 ], [ -123.112485115999974, 49.195923201000042 ], [ -123.11280529299998, 49.196355093000072 ], [ -123.112816106999929, 49.196446386000012 ], [ -123.11387000799999, 49.196440394000057 ], [ -123.113868508999971, 49.196856251000099 ], [ -123.113864599999971, 49.19793581400004 ], [ -123.113860274999965, 49.199136301000046 ], [ -123.107815289999962, 49.197777909000102 ], [ -123.107817192999974, 49.196645603000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "308994838", "BldgCostT": "170512016", "sL_LossRatio": "0.602396657454361", "sL_AssetLoss": "6218494", "sL_BldgLoss": "3746000", "sL_StrLoss": "1280530", "sL_NStrLoss": "2465470", "sL_ContLoss": "2472494", "geom_point": "0101000020E61000007CD7F1E398C65EC05570E4260F994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10870740799993, 49.199322220000035 ], [ -123.106868406, 49.198846470000042 ], [ -123.106867818999902, 49.198573494000115 ], [ -123.10645602299995, 49.198573874000033 ], [ -123.106456401999935, 49.198751100000038 ], [ -123.106001207999952, 49.19867676200009 ], [ -123.105922704999927, 49.198663924000108 ], [ -123.10584718399997, 49.198651586000068 ], [ -123.105833028999896, 49.198649288000091 ], [ -123.105831844999926, 49.198649090000053 ], [ -123.105749556999967, 49.198635654000036 ], [ -123.105220575999965, 49.198549255000039 ], [ -123.105220058999976, 49.198305148000102 ], [ -123.10491835099999, 49.19830542200004 ], [ -123.10490635499994, 49.198497930000052 ], [ -123.104237893999937, 49.19838874200012 ], [ -123.103590704999988, 49.198283010000083 ], [ -123.103523511999953, 49.198272037000123 ], [ -123.103188203999977, 49.198217270000065 ], [ -123.102798513999943, 49.198153598000019 ], [ -123.102632119999939, 49.198189199000048 ], [ -123.10218898499997, 49.198133088000098 ], [ -123.09995539, 49.197850193000107 ], [ -123.097923098999956, 49.197726311000039 ], [ -123.097575970999941, 49.197672841000013 ], [ -123.095585732999922, 49.197366284000061 ], [ -123.095133453999921, 49.197296617000106 ], [ -123.094995321999946, 49.19727533499999 ], [ -123.095011988999943, 49.197008766000074 ], [ -123.095014743999911, 49.196964698000038 ], [ -123.094605463, 49.196965034000065 ], [ -123.093687255999924, 49.196965781000102 ], [ -123.093687066999962, 49.196866232000062 ], [ -123.093686744999971, 49.196695923000064 ], [ -123.093543362999981, 49.196696040000084 ], [ -123.093541835999972, 49.196741562000092 ], [ -123.09276853599998, 49.196722461000071 ], [ -123.092770226999946, 49.196696663000075 ], [ -123.092538407999939, 49.196696849000034 ], [ -123.091771444999935, 49.196697460000031 ], [ -123.09143180399991, 49.196521703000109 ], [ -123.091486635999928, 49.194672458000056 ], [ -123.091495985999956, 49.19435599500013 ], [ -123.091481220999981, 49.1938691 ], [ -123.091480409999988, 49.191975493000015 ], [ -123.09577399299999, 49.191972393000114 ], [ -123.098978504999977, 49.191990312000044 ], [ -123.102332042999947, 49.192006768000113 ], [ -123.102705606999947, 49.192008608000052 ], [ -123.104804294999951, 49.192007411000105 ], [ -123.106251508999932, 49.192005699000077 ], [ -123.107831800999946, 49.192003991 ], [ -123.107826910999975, 49.192920898000054 ], [ -123.107823291999978, 49.19409840100009 ], [ -123.107822284999955, 49.194424608000112 ], [ -123.107819424999917, 49.195354806000054 ], [ -123.107817192999974, 49.196645603000057 ], [ -123.107815289999962, 49.197777909000102 ], [ -123.113860274999965, 49.199136301000046 ], [ -123.114603685999924, 49.199130274000076 ], [ -123.115193987999945, 49.199125495 ], [ -123.11581208199999, 49.199120475000022 ], [ -123.116402240999918, 49.19911568 ], [ -123.117113295999957, 49.199109897000064 ], [ -123.117263379999969, 49.199097686000094 ], [ -123.11733811, 49.199091603000035 ], [ -123.119048589, 49.198807698000046 ], [ -123.11943665699999, 49.198742968000033 ], [ -123.121841711999934, 49.198341808000109 ], [ -123.122162893999956, 49.198317991000067 ], [ -123.123375909999936, 49.19833411100003 ], [ -123.12376909299995, 49.198299614000121 ], [ -123.124071317999892, 49.198226593000115 ], [ -123.124281874999909, 49.198453666000034 ], [ -123.124205123999943, 49.198496235000057 ], [ -123.123415585999922, 49.198934091000112 ], [ -123.122475689999959, 49.199284785000053 ], [ -123.122304915999933, 49.199348496000084 ], [ -123.120989711999982, 49.199979391000042 ], [ -123.120913901999955, 49.200000115000172 ], [ -123.119863611999961, 49.200287100000082 ], [ -123.119143, 49.200332611000057 ], [ -123.11884841899996, 49.200351197000074 ], [ -123.117641106999926, 49.200549102000117 ], [ -123.116186600999981, 49.200596097000059 ], [ -123.115120918999963, 49.200587925000036 ], [ -123.114155394999955, 49.200580494000086 ], [ -123.112878180999928, 49.200401002000092 ], [ -123.110853697, 49.199877377000071 ], [ -123.110534732999952, 49.199794882000091 ], [ -123.110504955999886, 49.199787185000105 ], [ -123.110350121999929, 49.199747134000091 ], [ -123.10948154, 49.199522455000064 ], [ -123.108775921999921, 49.199339928000029 ], [ -123.108750936999982, 49.19933346500008 ], [ -123.10870740799993, 49.199322220000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "634289173", "BldgCostT": "368178762", "sL_LossRatio": "0.656533129578296", "sL_AssetLoss": "7488731", "sL_BldgLoss": "4916600", "sL_StrLoss": "1871430", "sL_NStrLoss": "3045170", "sL_ContLoss": "2572131", "geom_point": "0101000020E6100000828294D0C4C55EC0B1A2BAB1079A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07576510399997, 49.20349868600006 ], [ -123.077387936999941, 49.203193585000079 ], [ -123.078742499999947, 49.202938899000046 ], [ -123.080801686999948, 49.202749500000024 ], [ -123.081150139999977, 49.202642314000087 ], [ -123.081754863999961, 49.202641886000059 ], [ -123.081754557999943, 49.202456387000069 ], [ -123.081857204999892, 49.202424811000078 ], [ -123.082543830999938, 49.202286036000046 ], [ -123.083957104999939, 49.202000399000021 ], [ -123.084547197999925, 49.201811014000022 ], [ -123.085301994, 49.201154390000077 ], [ -123.087606085999965, 49.200388198000041 ], [ -123.087922928999959, 49.20024355500005 ], [ -123.088051452999977, 49.2001848680001 ], [ -123.088221302999941, 49.200107304000078 ], [ -123.088263059, 49.200088247000039 ], [ -123.088330997999932, 49.200057221000073 ], [ -123.088791172999947, 49.19984712400008 ], [ -123.089010268999971, 49.199747090000109 ], [ -123.089128299999985, 49.199693212000035 ], [ -123.09040470799999, 49.199378385000067 ], [ -123.091200290999936, 49.199412598000087 ], [ -123.091310791999916, 49.199493796000048 ], [ -123.091366195999967, 49.200079114000054 ], [ -123.091476423999964, 49.200187405000072 ], [ -123.0915583029999, 49.199827105000089 ], [ -123.091791296999972, 49.199854113000107 ], [ -123.091848203999973, 49.199979390000088 ], [ -123.093178992999981, 49.199771501000065 ], [ -123.093578866999948, 49.199756516000036 ], [ -123.094165699999962, 49.199734513000102 ], [ -123.095711521999974, 49.199748739000093 ], [ -123.099588423999947, 49.199784302000118 ], [ -123.101562076, 49.199981186000038 ], [ -123.102013292999942, 49.200026193000056 ], [ -123.102444417999891, 49.200069203000041 ], [ -123.103784896999954, 49.200306411000021 ], [ -123.10382613699997, 49.200313710000039 ], [ -123.103853741999941, 49.20031858400003 ], [ -123.104766402999957, 49.200480074000083 ], [ -123.104875089999922, 49.200499305000044 ], [ -123.106620008999968, 49.200893803000099 ], [ -123.106872953999968, 49.200956357000088 ], [ -123.106872954999957, 49.200957145000068 ], [ -123.106876520999933, 49.200957240000136 ], [ -123.109188592999942, 49.201528992000064 ], [ -123.110397707999937, 49.201941998000052 ], [ -123.112580379999926, 49.20249740000002 ], [ -123.115162609999942, 49.202819300000037 ], [ -123.115525505999955, 49.202838518000121 ], [ -123.115525609999949, 49.202882905000067 ], [ -123.115937441999975, 49.202882492000086 ], [ -123.115939098999974, 49.203591586000051 ], [ -123.116395668999928, 49.203603804000103 ], [ -123.113876010999917, 49.204205107000064 ], [ -123.113064403999886, 49.204252091000086 ], [ -123.111060403999957, 49.20418089900005 ], [ -123.10923481399999, 49.203831892000096 ], [ -123.107971804999963, 49.203681005000064 ], [ -123.099253712999925, 49.20357979300011 ], [ -123.097798091999962, 49.203762112000064 ], [ -123.095759276999928, 49.203751442000048 ], [ -123.095759197999911, 49.20371056000009 ], [ -123.095347357999984, 49.203710901000072 ], [ -123.095347433, 49.203749282000061 ], [ -123.094818487999959, 49.203746506000094 ], [ -123.093693701999911, 49.203819098000061 ], [ -123.093282994999967, 49.203927310000083 ], [ -123.092693115999907, 49.204314691000029 ], [ -123.091705306000023, 49.204639499000088 ], [ -123.089700411999985, 49.205053909000121 ], [ -123.08870050599991, 49.205361511000028 ], [ -123.086202408, 49.205857099000106 ], [ -123.08517191699994, 49.206164808000047 ], [ -123.083662391999979, 49.206345710000036 ], [ -123.077623494999941, 49.207554790000074 ], [ -123.077244768999932, 49.207603799000026 ], [ -123.075179791999972, 49.207870990000089 ], [ -123.074247288999956, 49.207862390000052 ], [ -123.073202891999983, 49.20773711100005 ], [ -123.070551687999924, 49.206804306000102 ], [ -123.068300794999971, 49.20577030200014 ], [ -123.068005887999959, 49.205420395000033 ], [ -123.06791452899995, 49.205092187000034 ], [ -123.067872588999961, 49.204907197000068 ], [ -123.067941819999973, 49.20476340400004 ], [ -123.06814770599999, 49.204700710000047 ], [ -123.070549301999961, 49.204347497000114 ], [ -123.07159239899994, 49.204257787000081 ], [ -123.073281503999937, 49.204239211000129 ], [ -123.073595381999951, 49.203968704000033 ], [ -123.073897683999988, 49.203851900000039 ], [ -123.074652009999966, 49.203779192000113 ], [ -123.07576510399997, 49.20349868600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223358754", "BldgCostT": "121410587", "sL_LossRatio": "0.585213012630651", "sL_AssetLoss": "5087703", "sL_BldgLoss": "2977390", "sL_StrLoss": "970330", "sL_NStrLoss": "2007060", "sL_ContLoss": "2110313", "geom_point": "0101000020E6100000BCCC010632C65EC07E3AA121AD9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095345315999964, 49.212105304000048 ], [ -123.095347911999937, 49.211119904000014 ], [ -123.095314302999938, 49.211118965000075 ], [ -123.094324618999963, 49.211091404000072 ], [ -123.094131255999926, 49.211088399000126 ], [ -123.093993938, 49.21108623100011 ], [ -123.093292308999963, 49.211075292000011 ], [ -123.093291189999917, 49.211456332000068 ], [ -123.093290096999951, 49.211835496000084 ], [ -123.091663265999927, 49.211822738000116 ], [ -123.09112290899999, 49.211818507000025 ], [ -123.091135285999911, 49.211072895000136 ], [ -123.091134973999914, 49.211026210000092 ], [ -123.091134603999961, 49.210974707000105 ], [ -123.091151391999958, 49.209848197000078 ], [ -123.091176201999943, 49.208185097000062 ], [ -123.091180752999946, 49.208049308000071 ], [ -123.091185600999935, 49.207903414000057 ], [ -123.091237948999947, 49.206177330000088 ], [ -123.091243495999933, 49.205993408000026 ], [ -123.091253740999946, 49.205859911000047 ], [ -123.091255865999955, 49.205656501000071 ], [ -123.093079893, 49.205384296000013 ], [ -123.096195608999963, 49.205184906000071 ], [ -123.10086251199999, 49.205009693000115 ], [ -123.101686590999961, 49.204937108000088 ], [ -123.10215148499999, 49.204737706000088 ], [ -123.102343723999965, 49.204817320000103 ], [ -123.102457973999961, 49.204924208000087 ], [ -123.102470286999946, 49.205173408000043 ], [ -123.10242691800002, 49.206969402000041 ], [ -123.102422094999952, 49.207121715000028 ], [ -123.102418518999926, 49.20723580500001 ], [ -123.102331584999959, 49.209332402000044 ], [ -123.102227396999936, 49.211047385000086 ], [ -123.102221487999913, 49.2111423220001 ], [ -123.102220902999932, 49.211151799000113 ], [ -123.101765754000013, 49.21103762400007 ], [ -123.101627671999935, 49.211002962000073 ], [ -123.101545286999979, 49.210982288 ], [ -123.101504983999931, 49.210975386000044 ], [ -123.101479271999935, 49.210970983000152 ], [ -123.100734778999978, 49.210843298000114 ], [ -123.100321116999908, 49.210831297000055 ], [ -123.100305668999951, 49.211253153000072 ], [ -123.100288083999942, 49.211733896000105 ], [ -123.097952404999916, 49.211669290000017 ], [ -123.097942470999925, 49.212154428000069 ], [ -123.097940389999977, 49.21225629900006 ], [ -123.097279596999968, 49.212247900000115 ], [ -123.095344812999912, 49.212223299000165 ], [ -123.095345315999964, 49.212105304000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70962250", "BldgCostT": "44365000", "sL_LossRatio": "0.721000399915432", "sL_AssetLoss": "785166", "sL_BldgLoss": "566105", "sL_StrLoss": "250070", "sL_NStrLoss": "316035", "sL_ContLoss": "219061", "geom_point": "0101000020E6100000BC82D0EE0EC65EC09C9FB0FE2E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093286321999983, 49.213145207000096 ], [ -123.09328740899997, 49.212601988000131 ], [ -123.091637693999971, 49.212624436000056 ], [ -123.091110409999928, 49.212631601000076 ], [ -123.09112290899999, 49.211818507000025 ], [ -123.091663265999927, 49.211822738000116 ], [ -123.093290096999951, 49.211835496000084 ], [ -123.093291189999917, 49.211456332000068 ], [ -123.093292308999963, 49.211075292000011 ], [ -123.093993938, 49.21108623100011 ], [ -123.094131255999926, 49.211088399000126 ], [ -123.094324618999963, 49.211091404000072 ], [ -123.095314302999938, 49.211118965000075 ], [ -123.095347911999937, 49.211119904000014 ], [ -123.095345315999964, 49.212105304000048 ], [ -123.095344812999912, 49.212223299000165 ], [ -123.097279596999968, 49.212247900000115 ], [ -123.097940389999977, 49.21225629900006 ], [ -123.097933483999967, 49.212565092000105 ], [ -123.097905246, 49.213054195000097 ], [ -123.097883406999955, 49.213432098000034 ], [ -123.095341104999989, 49.213269999 ], [ -123.094495032999973, 49.213221889000124 ], [ -123.094412066999951, 49.213217184000051 ], [ -123.094384805999965, 49.213215625000025 ], [ -123.094284008999978, 49.213209906000081 ], [ -123.093286321999983, 49.213145207000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110950418", "BldgCostT": "75066668", "sL_LossRatio": "0.808820824736259", "sL_AssetLoss": "995009", "sL_BldgLoss": "804784", "sL_StrLoss": "385130", "sL_NStrLoss": "419654", "sL_ContLoss": "190225", "geom_point": "0101000020E61000008CA2EFEAECC55EC01489BFDC5D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091637693999971, 49.212624436000056 ], [ -123.09328740899997, 49.212601988000131 ], [ -123.093286321999983, 49.213145207000096 ], [ -123.094284008999978, 49.213209906000081 ], [ -123.09426505099999, 49.213768457000086 ], [ -123.094249711999979, 49.21421970199999 ], [ -123.094234987, 49.214870595000036 ], [ -123.091862520999911, 49.214830124000109 ], [ -123.091711195999906, 49.214827548000137 ], [ -123.091047714999959, 49.2148161860001 ], [ -123.091068289999953, 49.214159094000067 ], [ -123.091073312999953, 49.21397010400004 ], [ -123.091102405999976, 49.213023208000017 ], [ -123.091110409999928, 49.212631601000076 ], [ -123.091637693999971, 49.212624436000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59757665", "BldgCostT": "37641665", "sL_LossRatio": "0.73426769446391", "sL_AssetLoss": "642150", "sL_BldgLoss": "471510", "sL_StrLoss": "218510", "sL_NStrLoss": "253000", "sL_ContLoss": "170640", "geom_point": "0101000020E61000007D0F5D71EDC55EC0B06B41109C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091862520999911, 49.214830124000109 ], [ -123.094234987, 49.214870595000036 ], [ -123.094223772999925, 49.215324334000108 ], [ -123.094214296999908, 49.215706909000048 ], [ -123.094203892999971, 49.216151939000042 ], [ -123.094193882999932, 49.216581089000087 ], [ -123.091797082999946, 49.216543418000107 ], [ -123.09167359199995, 49.216541471000035 ], [ -123.090995203999952, 49.216530801000097 ], [ -123.091023383999968, 49.215642498000065 ], [ -123.091047714999959, 49.2148161860001 ], [ -123.091711195999906, 49.214827548000137 ], [ -123.091862520999911, 49.214830124000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122722250", "BldgCostT": "82715000", "sL_LossRatio": "0.82038637044605", "sL_AssetLoss": "814348", "sL_BldgLoss": "668080", "sL_StrLoss": "331750", "sL_NStrLoss": "336330", "sL_ContLoss": "146268", "geom_point": "0101000020E610000071E460BAB9C55EC051BDD2859A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09039206099996, 49.214805519000038 ], [ -123.091047714999959, 49.2148161860001 ], [ -123.091023383999968, 49.215642498000065 ], [ -123.090995203999952, 49.216530801000097 ], [ -123.090354279999985, 49.216524587000087 ], [ -123.087872115999929, 49.216500502000066 ], [ -123.087892858999979, 49.216066425000108 ], [ -123.087907910999931, 49.215751596000132 ], [ -123.087916220999986, 49.215578398000112 ], [ -123.087919637999946, 49.215184672000078 ], [ -123.08792331899997, 49.214765199000048 ], [ -123.088509623999954, 49.214774771000059 ], [ -123.09039206099996, 49.214805519000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69270395", "BldgCostT": "45681524", "sL_LossRatio": "0.719595043264172", "sL_AssetLoss": "978870", "sL_BldgLoss": "704390", "sL_StrLoss": "337360", "sL_NStrLoss": "367030", "sL_ContLoss": "274480", "geom_point": "0101000020E61000003EC72EEE92C55EC0D1179D876E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087396765999969, 49.213870145000094 ], [ -123.088029099999972, 49.213887010000086 ], [ -123.088604743999966, 49.213902730000065 ], [ -123.090403796999951, 49.213951818000105 ], [ -123.091073312999953, 49.21397010400004 ], [ -123.091068289999953, 49.214159094000067 ], [ -123.091047714999959, 49.2148161860001 ], [ -123.09039206099996, 49.214805519000038 ], [ -123.088509623999954, 49.214774771000059 ], [ -123.08792331899997, 49.214765199000048 ], [ -123.087382932999972, 49.214756045000037 ], [ -123.086792537999926, 49.214746033000083 ], [ -123.086311542999965, 49.214737887000091 ], [ -123.085698290999957, 49.214727504000024 ], [ -123.085020641999932, 49.214712316000053 ], [ -123.083648704999945, 49.214681542000051 ], [ -123.083156197, 49.21467050299999 ], [ -123.083152059999961, 49.214270518000014 ], [ -123.0831475049999, 49.21382528800013 ], [ -123.085034921999963, 49.213824936000087 ], [ -123.08569587199996, 49.213824801000023 ], [ -123.086327041999965, 49.213841617000121 ], [ -123.087396765999969, 49.213870145000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198948500", "BldgCostT": "136520000", "sL_LossRatio": "0.770999051633776", "sL_AssetLoss": "1101895", "sL_BldgLoss": "849560", "sL_StrLoss": "436020", "sL_NStrLoss": "413540", "sL_ContLoss": "252335", "geom_point": "0101000020E61000008269E603A1C55EC034E40AB5479B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088604743999966, 49.213902730000065 ], [ -123.088029099999972, 49.213887010000086 ], [ -123.087396765999969, 49.213870145000094 ], [ -123.086327041999965, 49.213841617000121 ], [ -123.08569587199996, 49.213824801000023 ], [ -123.085702311999981, 49.212914305000041 ], [ -123.085717561999928, 49.212451057000102 ], [ -123.085732729999989, 49.211991802000128 ], [ -123.088186404999959, 49.211991391000026 ], [ -123.088169418999982, 49.21248613000008 ], [ -123.088153188999911, 49.212958887000084 ], [ -123.08861766899993, 49.212966881000106 ], [ -123.088851290999983, 49.212970904 ], [ -123.089526796999962, 49.212982492000037 ], [ -123.090417038999931, 49.213005493 ], [ -123.090746027999955, 49.213013986000107 ], [ -123.091102405999976, 49.213023208000017 ], [ -123.091073312999953, 49.21397010400004 ], [ -123.090403796999951, 49.213951818000105 ], [ -123.088604743999966, 49.213902730000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39155887", "BldgCostT": "22827080", "sL_LossRatio": "0.652822722396993", "sL_AssetLoss": "443756", "sL_BldgLoss": "289694", "sL_StrLoss": "132361", "sL_NStrLoss": "157333", "sL_ContLoss": "154062", "geom_point": "0101000020E6100000E07BA80268C55EC0D0ED67A9239B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083232308999953, 49.211163794000143 ], [ -123.084037695999982, 49.21116579400006 ], [ -123.08577870299996, 49.211149797000033 ], [ -123.08575675699997, 49.211551428000099 ], [ -123.085732729999989, 49.211991802000128 ], [ -123.085717561999928, 49.212451057000102 ], [ -123.085702311999981, 49.212914305000041 ], [ -123.085061124999967, 49.212902862000092 ], [ -123.083159508999969, 49.212868902000082 ], [ -123.083178391999979, 49.212426549000071 ], [ -123.083196437999931, 49.212003845000055 ], [ -123.083232308999953, 49.211163794000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67357667", "BldgCostT": "44566667", "sL_LossRatio": "0.747354497354497", "sL_AssetLoss": "756000", "sL_BldgLoss": "565000", "sL_StrLoss": "279970", "sL_NStrLoss": "285030", "sL_ContLoss": "191000", "geom_point": "0101000020E6100000AEC14EF346C55EC012D69D59589B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085061124999967, 49.212902862000092 ], [ -123.085702311999981, 49.212914305000041 ], [ -123.08569587199996, 49.213824801000023 ], [ -123.085034921999963, 49.213824936000087 ], [ -123.0831475049999, 49.21382528800013 ], [ -123.083152059999961, 49.214270518000014 ], [ -123.083156197, 49.21467050299999 ], [ -123.08016491399998, 49.214663394000077 ], [ -123.080164952999922, 49.214227791000027 ], [ -123.080165, 49.213787784000054 ], [ -123.080139986999953, 49.213640199000103 ], [ -123.079909094999962, 49.213318697000091 ], [ -123.079893001999949, 49.212875101000101 ], [ -123.083159508999969, 49.212868902000082 ], [ -123.085061124999967, 49.212902862000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161500019", "BldgCostT": "89391409", "sL_LossRatio": "0.643087333922486", "sL_AssetLoss": "3170658", "sL_BldgLoss": "2039010", "sL_StrLoss": "697390", "sL_NStrLoss": "1341620", "sL_ContLoss": "1131648", "geom_point": "0101000020E6100000FF35B45C91C55EC046F595EECB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088169418999982, 49.21248613000008 ], [ -123.088186404999959, 49.211991391000026 ], [ -123.085732729999989, 49.211991802000128 ], [ -123.08575675699997, 49.211551428000099 ], [ -123.08577870299996, 49.211149797000033 ], [ -123.084037695999982, 49.21116579400006 ], [ -123.083232308999953, 49.211163794000143 ], [ -123.082100497999988, 49.211159284000082 ], [ -123.082100377999922, 49.211150026000055 ], [ -123.082099313999933, 49.211068306000108 ], [ -123.082110717999939, 49.209533599000039 ], [ -123.080769316999977, 49.209522502000098 ], [ -123.080788772999966, 49.209118092000011 ], [ -123.080791502999915, 49.209060990000125 ], [ -123.080799331999941, 49.208911122000082 ], [ -123.080804914999931, 49.208804599000167 ], [ -123.080845808, 49.207934599000041 ], [ -123.080791256999959, 49.207732600000057 ], [ -123.081483008999939, 49.207633095000084 ], [ -123.082553497999925, 49.20771289300005 ], [ -123.082772788999947, 49.20766879300006 ], [ -123.083210901999905, 49.207398090000062 ], [ -123.083610207999953, 49.207298509000047 ], [ -123.085270884999957, 49.207082007000054 ], [ -123.087343404999928, 49.206549306000035 ], [ -123.087767808999942, 49.206630495000098 ], [ -123.088426998999978, 49.206522291000113 ], [ -123.09095169599999, 49.205701889000103 ], [ -123.091255865999955, 49.205656501000071 ], [ -123.091253740999946, 49.205859911000047 ], [ -123.091243495999933, 49.205993408000026 ], [ -123.091237948999947, 49.206177330000088 ], [ -123.091185600999935, 49.207903414000057 ], [ -123.091180752999946, 49.208049308000071 ], [ -123.091176201999943, 49.208185097000062 ], [ -123.091151391999958, 49.209848197000078 ], [ -123.091134603999961, 49.210974707000105 ], [ -123.091134973999914, 49.211026210000092 ], [ -123.091135285999911, 49.211072895000136 ], [ -123.09112290899999, 49.211818507000025 ], [ -123.091110409999928, 49.212631601000076 ], [ -123.091102405999976, 49.213023208000017 ], [ -123.090746027999955, 49.213013986000107 ], [ -123.090417038999931, 49.213005493 ], [ -123.089526796999962, 49.212982492000037 ], [ -123.088851290999983, 49.212970904 ], [ -123.08861766899993, 49.212966881000106 ], [ -123.088153188999911, 49.212958887000084 ], [ -123.088169418999982, 49.21248613000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "532638081", "BldgCostT": "348359788", "sL_LossRatio": "0.738165042174709", "sL_AssetLoss": "6271294", "sL_BldgLoss": "4629250", "sL_StrLoss": "1955960", "sL_NStrLoss": "2673290", "sL_ContLoss": "1642044", "geom_point": "0101000020E6100000D46ECCFCF4C45EC002BA8B6AF09A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07711731199997, 49.212214295000102 ], [ -123.076593006999957, 49.21199739100004 ], [ -123.076424990999939, 49.21199553500005 ], [ -123.076386696999975, 49.211995121000079 ], [ -123.074076604999931, 49.211969586000158 ], [ -123.074080956999978, 49.21157876100002 ], [ -123.074086006999892, 49.211123097000012 ], [ -123.07274187099992, 49.211101665000079 ], [ -123.072073483999972, 49.211091010000118 ], [ -123.071303617, 49.211070097000118 ], [ -123.071303085999944, 49.211013237000024 ], [ -123.071302612999943, 49.210956503000048 ], [ -123.071303756, 49.210878450000074 ], [ -123.07130749699995, 49.210626601000143 ], [ -123.071316113999899, 49.21004610600005 ], [ -123.071317199999967, 49.209466032000066 ], [ -123.071317943999944, 49.20904325300009 ], [ -123.071318078999965, 49.208969692000046 ], [ -123.071318497999982, 49.208872303000135 ], [ -123.071318682999973, 49.208818341000025 ], [ -123.071319182999957, 49.208690493000113 ], [ -123.071249750000021, 49.208133120000113 ], [ -123.071212281999976, 49.208022931000116 ], [ -123.071189218999962, 49.207974264000022 ], [ -123.071969481999957, 49.208269793000063 ], [ -123.073506083999945, 49.208556002000051 ], [ -123.075910888999928, 49.208833802000107 ], [ -123.077188447999987, 49.208547066000065 ], [ -123.078201906999965, 49.208319592000095 ], [ -123.079601689999961, 49.207903700000038 ], [ -123.080791256999959, 49.207732600000057 ], [ -123.080845808, 49.207934599000041 ], [ -123.080804914999931, 49.208804599000167 ], [ -123.080799331999941, 49.208911122000082 ], [ -123.080791502999915, 49.209060990000125 ], [ -123.080788772999966, 49.209118092000011 ], [ -123.080769316999977, 49.209522502000098 ], [ -123.082110717999939, 49.209533599000039 ], [ -123.082099313999933, 49.211068306000108 ], [ -123.082100377999922, 49.211150026000055 ], [ -123.082100497999988, 49.211159284000082 ], [ -123.083232308999953, 49.211163794000143 ], [ -123.083196437999931, 49.212003845000055 ], [ -123.083178391999979, 49.212426549000071 ], [ -123.083159508999969, 49.212868902000082 ], [ -123.079893001999949, 49.212875101000101 ], [ -123.079211596, 49.212876503000075 ], [ -123.077783668999942, 49.212879436000058 ], [ -123.077113726999983, 49.21288080500009 ], [ -123.077114501999958, 49.212732360000082 ], [ -123.07711731199997, 49.212214295000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105005001", "BldgCostT": "69320001", "sL_LossRatio": "0.73491352092517", "sL_AssetLoss": "1330264", "sL_BldgLoss": "977629", "sL_StrLoss": "486297", "sL_NStrLoss": "491332", "sL_ContLoss": "352635", "geom_point": "0101000020E61000001EADBD9171C45EC0110D940CE79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068575803999948, 49.211219309000072 ], [ -123.066846781999956, 49.21063089600009 ], [ -123.066092403999932, 49.210625602000043 ], [ -123.066110102999986, 49.209743305000046 ], [ -123.06611027699995, 49.20973429499999 ], [ -123.06612247599999, 49.209738508000022 ], [ -123.06678966299998, 49.209969570000098 ], [ -123.067792894999968, 49.210316991000155 ], [ -123.067788512999968, 49.210212394000045 ], [ -123.067794490999972, 49.209756255000073 ], [ -123.06780359299999, 49.20906059200005 ], [ -123.067810084, 49.208541724000085 ], [ -123.067817211999966, 49.207975500000032 ], [ -123.067829788999958, 49.207979085000076 ], [ -123.071318078999965, 49.208969692000046 ], [ -123.071317943999944, 49.20904325300009 ], [ -123.071317199999967, 49.209466032000066 ], [ -123.071316113999899, 49.21004610600005 ], [ -123.07130749699995, 49.210626601000143 ], [ -123.071303756, 49.210878450000074 ], [ -123.071302612999943, 49.210956503000048 ], [ -123.071303085999944, 49.211013237000024 ], [ -123.071303617, 49.211070097000118 ], [ -123.072073483999972, 49.211091010000118 ], [ -123.072046026999885, 49.211963099000094 ], [ -123.071326973999987, 49.211951160000062 ], [ -123.069137096999924, 49.211914688000071 ], [ -123.06901238399999, 49.211541991000068 ], [ -123.06889722399994, 49.21145688900004 ], [ -123.068575803999948, 49.211219309000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76432917", "BldgCostT": "50561667", "sL_LossRatio": "0.775203807746873", "sL_AssetLoss": "619579", "sL_BldgLoss": "480300", "sL_StrLoss": "266060", "sL_NStrLoss": "214240", "sL_ContLoss": "139279", "geom_point": "0101000020E61000001C935918FDC35EC021B647B1549B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059381948999942, 49.214231129000119 ], [ -123.059401591999972, 49.213351194000083 ], [ -123.059410403999919, 49.212930789000097 ], [ -123.059449901, 49.212371492000081 ], [ -123.060057541999981, 49.212376295000148 ], [ -123.062835098999955, 49.212398104000087 ], [ -123.063407500000011, 49.212438911000035 ], [ -123.064339403999938, 49.212740796000112 ], [ -123.064619599999929, 49.212867414000073 ], [ -123.064687303999918, 49.212947583000073 ], [ -123.064697622999958, 49.213239593000068 ], [ -123.064710392, 49.213602188000038 ], [ -123.065344864999958, 49.213604048000057 ], [ -123.066045488000029, 49.213606110000065 ], [ -123.066021805999981, 49.214502695000149 ], [ -123.065319220999939, 49.214498138000117 ], [ -123.062153295999963, 49.214477513000062 ], [ -123.060074112, 49.214461999000065 ], [ -123.059376911999934, 49.214456799000061 ], [ -123.059381948999942, 49.214231129000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109509750", "BldgCostT": "72900000", "sL_LossRatio": "0.737422126428297", "sL_AssetLoss": "1354760", "sL_BldgLoss": "999030", "sL_StrLoss": "480140", "sL_NStrLoss": "518890", "sL_ContLoss": "355730", "geom_point": "0101000020E61000002B8F13CBD2C35EC081A55756DC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055574902, 49.209486608000105 ], [ -123.055883281999954, 49.208929298000015 ], [ -123.056226888, 49.208487409000057 ], [ -123.056688910999981, 49.20797390200007 ], [ -123.05762962299994, 49.207810404000092 ], [ -123.057961794999954, 49.207809600000054 ], [ -123.058250690999941, 49.207840897000018 ], [ -123.05891358599996, 49.208004001000049 ], [ -123.059362699999937, 49.208114489000089 ], [ -123.05960641399993, 49.208231013000066 ], [ -123.059846489, 49.208447501000094 ], [ -123.060114273999929, 49.20848754900004 ], [ -123.060464992999968, 49.208540002000063 ], [ -123.061986502999929, 49.208978811000073 ], [ -123.062064638999914, 49.209014697000057 ], [ -123.064361911999924, 49.210070531000042 ], [ -123.064459665999934, 49.210115466000062 ], [ -123.064575564, 49.210168744000057 ], [ -123.064586801999937, 49.210173908000073 ], [ -123.064937610999962, 49.210333904000038 ], [ -123.06541811299995, 49.2105468970001 ], [ -123.065477343999973, 49.21055914100009 ], [ -123.065750008999913, 49.210615398000051 ], [ -123.066092403999932, 49.210625602000043 ], [ -123.066072213999973, 49.211423195000066 ], [ -123.066050379999979, 49.212224395000078 ], [ -123.065399181999936, 49.212012760000029 ], [ -123.064694978999938, 49.211783903000068 ], [ -123.064332496999924, 49.211265998000066 ], [ -123.064143476999945, 49.211129289000048 ], [ -123.063663095999971, 49.210783798000072 ], [ -123.063481283, 49.210719243000121 ], [ -123.06344151699993, 49.210705116000057 ], [ -123.06302289599995, 49.210556508000082 ], [ -123.062130111999977, 49.21024380400015 ], [ -123.061649251999967, 49.210074763000087 ], [ -123.060912445, 49.209815742000089 ], [ -123.060649512999959, 49.209723308000044 ], [ -123.060548794999974, 49.209701473000088 ], [ -123.06006071399996, 49.209595609000083 ], [ -123.059353814999952, 49.20955558800015 ], [ -123.057035592999981, 49.209758014000094 ], [ -123.05691878899998, 49.210019707000079 ], [ -123.056869303999974, 49.210290205000085 ], [ -123.056666906999951, 49.211396490000084 ], [ -123.056523992999985, 49.2120277040001 ], [ -123.056131813999968, 49.212066498000077 ], [ -123.055913691999976, 49.212127540000104 ], [ -123.05560370299996, 49.212214299000095 ], [ -123.055121211999975, 49.212421805000119 ], [ -123.055145306999961, 49.211825190000084 ], [ -123.05536593799998, 49.210206285000062 ], [ -123.05538650499993, 49.210055288000028 ], [ -123.055574902, 49.209486608000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307842281", "BldgCostT": "211188603", "sL_LossRatio": "0.821756232446276", "sL_AssetLoss": "1680199", "sL_BldgLoss": "1380714", "sL_StrLoss": "671080", "sL_NStrLoss": "709634", "sL_ContLoss": "299485", "geom_point": "0101000020E6100000FFDD5C78F5C35EC021DDF037B19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058250690999941, 49.207840897000018 ], [ -123.057961794999954, 49.207809600000054 ], [ -123.05762962299994, 49.207810404000092 ], [ -123.056688910999981, 49.20797390200007 ], [ -123.056844684999973, 49.207572786000071 ], [ -123.05681979299996, 49.207142387000026 ], [ -123.057730887000019, 49.207121301000086 ], [ -123.05795877599995, 49.207141993000036 ], [ -123.058685289999943, 49.207283394000051 ], [ -123.059545374999985, 49.20754650100006 ], [ -123.059544874999943, 49.207468098000042 ], [ -123.0595547, 49.2070747140001 ], [ -123.05956069299998, 49.206980311000031 ], [ -123.060165393999952, 49.207181512000048 ], [ -123.06070731, 49.207356583000042 ], [ -123.061227705999926, 49.207524782000029 ], [ -123.061405490999945, 49.207534199000044 ], [ -123.06148541099995, 49.207594001000075 ], [ -123.062305608999978, 49.207838898000077 ], [ -123.063348108999932, 49.208169095000052 ], [ -123.06439138499999, 49.208510092000033 ], [ -123.064379608999928, 49.209065597000041 ], [ -123.064374905999927, 49.209141102000046 ], [ -123.064387121999914, 49.209145280000016 ], [ -123.06611027699995, 49.20973429499999 ], [ -123.066110102999986, 49.209743305000046 ], [ -123.066092403999932, 49.210625602000043 ], [ -123.065750008999913, 49.210615398000051 ], [ -123.065477343999973, 49.21055914100009 ], [ -123.06541811299995, 49.2105468970001 ], [ -123.064937610999962, 49.210333904000038 ], [ -123.064586801999937, 49.210173908000073 ], [ -123.064575564, 49.210168744000057 ], [ -123.064459665999934, 49.210115466000062 ], [ -123.064361911999924, 49.210070531000042 ], [ -123.062064638999914, 49.209014697000057 ], [ -123.061986502999929, 49.208978811000073 ], [ -123.060464992999968, 49.208540002000063 ], [ -123.060114273999929, 49.20848754900004 ], [ -123.059846489, 49.208447501000094 ], [ -123.05960641399993, 49.208231013000066 ], [ -123.059362699999937, 49.208114489000089 ], [ -123.05891358599996, 49.208004001000049 ], [ -123.058250690999941, 49.207840897000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131681249", "BldgCostT": "88154999", "sL_LossRatio": "0.722640641497802", "sL_AssetLoss": "1067377", "sL_BldgLoss": "771330", "sL_StrLoss": "376890", "sL_NStrLoss": "394440", "sL_ContLoss": "296047", "geom_point": "0101000020E61000006A9999BA27C45EC0A4B41734A19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061431291999924, 49.206584495000051 ], [ -123.061520007999974, 49.206267092000061 ], [ -123.062123189999951, 49.20638349700009 ], [ -123.062200511999919, 49.20635408600004 ], [ -123.062278716999955, 49.206289678000083 ], [ -123.062385810999942, 49.206201494000084 ], [ -123.062482608, 49.206189809000101 ], [ -123.066163218999989, 49.207223302000095 ], [ -123.066160767999946, 49.207319413000121 ], [ -123.066156810999971, 49.207477205000082 ], [ -123.066169287999955, 49.207480942000075 ], [ -123.067817211999966, 49.207975500000032 ], [ -123.067810084, 49.208541724000085 ], [ -123.06780359299999, 49.20906059200005 ], [ -123.067794490999972, 49.209756255000073 ], [ -123.067788512999968, 49.210212394000045 ], [ -123.067792894999968, 49.210316991000155 ], [ -123.06678966299998, 49.209969570000098 ], [ -123.06612247599999, 49.209738508000022 ], [ -123.06611027699995, 49.20973429499999 ], [ -123.064387121999914, 49.209145280000016 ], [ -123.064374905999927, 49.209141102000046 ], [ -123.064379608999928, 49.209065597000041 ], [ -123.06439138499999, 49.208510092000033 ], [ -123.063348108999932, 49.208169095000052 ], [ -123.062305608999978, 49.207838898000077 ], [ -123.06148541099995, 49.207594001000075 ], [ -123.061405490999945, 49.207534199000044 ], [ -123.061396795999912, 49.207152010000136 ], [ -123.06141491899993, 49.206843507000052 ], [ -123.061431291999924, 49.206584495000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108314083", "BldgCostT": "70422348", "sL_LossRatio": "0.70799997370376", "sL_AssetLoss": "608452", "sL_BldgLoss": "430784", "sL_StrLoss": "196200", "sL_NStrLoss": "234584", "sL_ContLoss": "177668", "geom_point": "0101000020E61000009187CFE72DC45EC0129FD0257B9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066163218999989, 49.207223302000095 ], [ -123.062482608, 49.206189809000101 ], [ -123.062385810999942, 49.206201494000084 ], [ -123.062278716999955, 49.206289678000083 ], [ -123.062200511999919, 49.20635408600004 ], [ -123.062123189999951, 49.20638349700009 ], [ -123.061520007999974, 49.206267092000061 ], [ -123.060605025999948, 49.206089900000102 ], [ -123.059590643999968, 49.205964467000065 ], [ -123.059577092999945, 49.205962796000094 ], [ -123.058736199999913, 49.205872293000084 ], [ -123.057936698999953, 49.205821602000114 ], [ -123.056877620999941, 49.20581105200008 ], [ -123.056791706999945, 49.205810210000067 ], [ -123.056766628, 49.205695027000047 ], [ -123.056755980999981, 49.205676717000088 ], [ -123.056640113999904, 49.205442844000075 ], [ -123.056594215999937, 49.205329406000075 ], [ -123.056589877999912, 49.205306648000047 ], [ -123.057055205, 49.205308808 ], [ -123.059307205999986, 49.205434185000122 ], [ -123.060665601999986, 49.205684792000014 ], [ -123.060983060999931, 49.205722056000091 ], [ -123.062122119999941, 49.205855704000065 ], [ -123.062643086999955, 49.205737499000101 ], [ -123.063832732999956, 49.205878556000137 ], [ -123.064084290999958, 49.205908411000046 ], [ -123.064895892999985, 49.206132006000118 ], [ -123.066901193999925, 49.206509403000076 ], [ -123.06732730499999, 49.206797109000028 ], [ -123.069854198999963, 49.207577598000036 ], [ -123.070333609999977, 49.207650186000045 ], [ -123.071189218999962, 49.207974264000022 ], [ -123.071212281999976, 49.208022931000116 ], [ -123.071249750000021, 49.208133120000113 ], [ -123.071319182999957, 49.208690493000113 ], [ -123.071318682999973, 49.208818341000025 ], [ -123.071318497999982, 49.208872303000135 ], [ -123.071318078999965, 49.208969692000046 ], [ -123.067829788999958, 49.207979085000076 ], [ -123.067817211999966, 49.207975500000032 ], [ -123.066169287999955, 49.207480942000075 ], [ -123.066156810999971, 49.207477205000082 ], [ -123.066160767999946, 49.207319413000121 ], [ -123.066163218999989, 49.207223302000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72646916", "BldgCostT": "41366666", "sL_LossRatio": "0.627730319275191", "sL_AssetLoss": "1259697", "sL_BldgLoss": "790750", "sL_StrLoss": "344810", "sL_NStrLoss": "445940", "sL_ContLoss": "468947", "geom_point": "0101000020E610000011AAA3FCC7C35EC0E1509EFD719A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05795877599995, 49.207141993000036 ], [ -123.057730887000019, 49.207121301000086 ], [ -123.05681979299996, 49.207142387000026 ], [ -123.056819454, 49.20713236299999 ], [ -123.056817418999955, 49.207072103000066 ], [ -123.056819356999981, 49.206442553000088 ], [ -123.05682019799994, 49.206162316000068 ], [ -123.056792847999986, 49.205824441000068 ], [ -123.056791706999945, 49.205810210000067 ], [ -123.056877620999941, 49.20581105200008 ], [ -123.057936698999953, 49.205821602000114 ], [ -123.058736199999913, 49.205872293000084 ], [ -123.059577092999945, 49.205962796000094 ], [ -123.059590643999968, 49.205964467000065 ], [ -123.060605025999948, 49.206089900000102 ], [ -123.061520007999974, 49.206267092000061 ], [ -123.061431291999924, 49.206584495000051 ], [ -123.06141491899993, 49.206843507000052 ], [ -123.061396795999912, 49.207152010000136 ], [ -123.061405490999945, 49.207534199000044 ], [ -123.061227705999926, 49.207524782000029 ], [ -123.06070731, 49.207356583000042 ], [ -123.060165393999952, 49.207181512000048 ], [ -123.05956069299998, 49.206980311000031 ], [ -123.0595547, 49.2070747140001 ], [ -123.059544874999943, 49.207468098000042 ], [ -123.059545374999985, 49.20754650100006 ], [ -123.058685289999943, 49.207283394000051 ], [ -123.05795877599995, 49.207141993000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78235750", "BldgCostT": "53065000", "sL_LossRatio": "0.739882524596078", "sL_AssetLoss": "1119894", "sL_BldgLoss": "828590", "sL_StrLoss": "355830", "sL_NStrLoss": "472760", "sL_ContLoss": "291304", "geom_point": "0101000020E61000009B99FCC314C35EC0C0D09F0D2B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041377489999917, 49.218171104000113 ], [ -123.041389887999983, 49.218006076000059 ], [ -123.04140341399993, 49.217826316000078 ], [ -123.041408705000023, 49.21775606900011 ], [ -123.041449811999925, 49.217209203000074 ], [ -123.041476800999959, 49.216505501 ], [ -123.041486590999938, 49.216263371000068 ], [ -123.04151760699996, 49.215498579000091 ], [ -123.04155504000002, 49.214733645000067 ], [ -123.04159971099989, 49.21382160600006 ], [ -123.04163850299993, 49.213040812000074 ], [ -123.041664474999905, 49.212655680000125 ], [ -123.041703883999958, 49.212070918000023 ], [ -123.041787305999918, 49.210834190000057 ], [ -123.042168296999975, 49.208923099000081 ], [ -123.042239162999948, 49.20832935600005 ], [ -123.042259709999939, 49.208157200000109 ], [ -123.042273199999926, 49.208155631000103 ], [ -123.043772091000037, 49.207980690000078 ], [ -123.044882914999903, 49.207883203000144 ], [ -123.047703309999946, 49.207723601000062 ], [ -123.049874136999946, 49.207585274000039 ], [ -123.050591127999951, 49.207539575000084 ], [ -123.055753754999927, 49.207210403000076 ], [ -123.056237502999977, 49.207179554000035 ], [ -123.056806153999915, 49.207143282000096 ], [ -123.05681979299996, 49.207142387000026 ], [ -123.056844684999973, 49.207572786000071 ], [ -123.056688910999981, 49.20797390200007 ], [ -123.056226888, 49.208487409000057 ], [ -123.055883281999954, 49.208929298000015 ], [ -123.055574902, 49.209486608000105 ], [ -123.05538650499993, 49.210055288000028 ], [ -123.05536593799998, 49.210206285000062 ], [ -123.055145306999961, 49.211825190000084 ], [ -123.055121211999975, 49.212421805000119 ], [ -123.055117203999941, 49.212700905000077 ], [ -123.054950715999937, 49.212708097000117 ], [ -123.05479198099999, 49.212786606000058 ], [ -123.054050452999931, 49.213425430000015 ], [ -123.053441847999949, 49.213949707000019 ], [ -123.053089209999925, 49.214253489000086 ], [ -123.052747044999961, 49.214552440000077 ], [ -123.052635054999982, 49.21465032800009 ], [ -123.052460374999953, 49.214802925000122 ], [ -123.05226538, 49.214973292000195 ], [ -123.052139908999948, 49.215083850000084 ], [ -123.051724820999965, 49.21544959100008 ], [ -123.051407688999944, 49.215728994000131 ], [ -123.05088748799993, 49.216357093000084 ], [ -123.0506370089999, 49.217016904000069 ], [ -123.050566286999981, 49.218064391000077 ], [ -123.049423411999939, 49.218080003000061 ], [ -123.04897131499996, 49.218174785000073 ], [ -123.048874301999902, 49.218232483000051 ], [ -123.048423992, 49.217975094000025 ], [ -123.04713123, 49.217434402000023 ], [ -123.045094595999942, 49.216419197000043 ], [ -123.044739973999981, 49.216778728000072 ], [ -123.044443181999952, 49.217079598000062 ], [ -123.044185719, 49.217351801000127 ], [ -123.043932504999987, 49.21783447500006 ], [ -123.043876378, 49.217941495000019 ], [ -123.043806014999944, 49.218226895000093 ], [ -123.042704909999941, 49.218189502000016 ], [ -123.04226819199999, 49.218183428000025 ], [ -123.041377489999917, 49.218171104000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91600250", "BldgCostT": "62645000", "sL_LossRatio": "0.749928433828437", "sL_AssetLoss": "1316963", "sL_BldgLoss": "987628", "sL_StrLoss": "464480", "sL_NStrLoss": "523148", "sL_ContLoss": "329335", "geom_point": "0101000020E6100000C187B77306C35EC095888594FE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043806014999944, 49.218226895000093 ], [ -123.043876378, 49.217941495000019 ], [ -123.043932504999987, 49.21783447500006 ], [ -123.044185719, 49.217351801000127 ], [ -123.044443181999952, 49.217079598000062 ], [ -123.044739973999981, 49.216778728000072 ], [ -123.045094595999942, 49.216419197000043 ], [ -123.04713123, 49.217434402000023 ], [ -123.048423992, 49.217975094000025 ], [ -123.048874301999902, 49.218232483000051 ], [ -123.04897131499996, 49.218174785000073 ], [ -123.049423411999939, 49.218080003000061 ], [ -123.050566286999981, 49.218064391000077 ], [ -123.050564601, 49.218490382000027 ], [ -123.050562781999986, 49.218940787000037 ], [ -123.050579113999916, 49.219785012000074 ], [ -123.050586801999941, 49.220183686000048 ], [ -123.049025708999977, 49.220213107000085 ], [ -123.048024114999961, 49.22020820300002 ], [ -123.047516306999938, 49.220206013000087 ], [ -123.0459426099999, 49.220197092000049 ], [ -123.0451495, 49.220193398000106 ], [ -123.045157, 49.219760873000027 ], [ -123.045160771, 49.219540596000066 ], [ -123.045179015999949, 49.219401002000062 ], [ -123.045195714999949, 49.219273110000046 ], [ -123.045394976999901, 49.218988492000044 ], [ -123.045545567999909, 49.218875642000057 ], [ -123.045650089999981, 49.218797284000054 ], [ -123.045202914999948, 49.218596581000078 ], [ -123.044769409999944, 49.218402 ], [ -123.044411128999954, 49.218317400000075 ], [ -123.043806014999944, 49.218226895000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "323607061", "BldgCostT": "220563190", "sL_LossRatio": "0.81750737164337", "sL_AssetLoss": "2221350", "sL_BldgLoss": "1815970", "sL_StrLoss": "796940", "sL_NStrLoss": "1019030", "sL_ContLoss": "405380", "geom_point": "0101000020E61000003DAAE4ADC4C25EC0E4D2F0140F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041377489999917, 49.218171104000113 ], [ -123.04226819199999, 49.218183428000025 ], [ -123.042704909999941, 49.218189502000016 ], [ -123.043806014999944, 49.218226895000093 ], [ -123.044411128999954, 49.218317400000075 ], [ -123.044769409999944, 49.218402 ], [ -123.045202914999948, 49.218596581000078 ], [ -123.045650089999981, 49.218797284000054 ], [ -123.045545567999909, 49.218875642000057 ], [ -123.045394976999901, 49.218988492000044 ], [ -123.045195714999949, 49.219273110000046 ], [ -123.045179015999949, 49.219401002000062 ], [ -123.045160771, 49.219540596000066 ], [ -123.045157, 49.219760873000027 ], [ -123.0451495, 49.220193398000106 ], [ -123.044671645999969, 49.220190225000152 ], [ -123.044412709999946, 49.220188490000027 ], [ -123.04380678699998, 49.22018583500008 ], [ -123.042845704999976, 49.220181612000061 ], [ -123.041281096, 49.220159298000056 ], [ -123.04135609699992, 49.2191975060001 ], [ -123.041357806999926, 49.219127285000056 ], [ -123.04137475099995, 49.218304894000049 ], [ -123.041377489999917, 49.218171104000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95420917", "BldgCostT": "62916667", "sL_LossRatio": "0.719760892850973", "sL_AssetLoss": "1447050", "sL_BldgLoss": "1041530", "sL_StrLoss": "473060", "sL_NStrLoss": "568470", "sL_ContLoss": "405520", "geom_point": "0101000020E6100000D0FD6A48FBC25EC0D5B979155F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048024114999961, 49.22020820300002 ], [ -123.049025708999977, 49.220213107000085 ], [ -123.049000955999929, 49.220659198000099 ], [ -123.048884018999971, 49.222766701000047 ], [ -123.048122572999915, 49.22293733600003 ], [ -123.047300816999936, 49.223121496000033 ], [ -123.047061186999912, 49.223176201000093 ], [ -123.046542468, 49.22317655300003 ], [ -123.045780502999946, 49.223177083000024 ], [ -123.045031957, 49.223176328000065 ], [ -123.044243171999952, 49.223175495000106 ], [ -123.044324306999968, 49.221729191000058 ], [ -123.044385052999985, 49.220670725000069 ], [ -123.044412709999946, 49.220188490000027 ], [ -123.044671645999969, 49.220190225000152 ], [ -123.0451495, 49.220193398000106 ], [ -123.0459426099999, 49.220197092000049 ], [ -123.047516306999938, 49.220206013000087 ], [ -123.048024114999961, 49.22020820300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90184583", "BldgCostT": "60098333", "sL_LossRatio": "0.757585637723392", "sL_AssetLoss": "981460", "sL_BldgLoss": "743540", "sL_StrLoss": "356110", "sL_NStrLoss": "387430", "sL_ContLoss": "237920", "geom_point": "0101000020E610000062ACA90BBCC25EC0ACC39F1B799C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04380678699998, 49.22018583500008 ], [ -123.044412709999946, 49.220188490000027 ], [ -123.044385052999985, 49.220670725000069 ], [ -123.044324306999968, 49.221729191000058 ], [ -123.044243171999952, 49.223175495000106 ], [ -123.044181388999931, 49.224267497 ], [ -123.0441550099999, 49.224733291000106 ], [ -123.042794782999948, 49.224725312000082 ], [ -123.04260722, 49.224724208000062 ], [ -123.041049899999933, 49.224713010000094 ], [ -123.041071435999967, 49.224287771000064 ], [ -123.041074618999957, 49.224224874000122 ], [ -123.041092592999917, 49.223870095000031 ], [ -123.041118031999972, 49.223613516000071 ], [ -123.04113673099998, 49.223424806000068 ], [ -123.041161796999972, 49.223172087000123 ], [ -123.041173702999941, 49.222942705000058 ], [ -123.041181809999941, 49.222060997000071 ], [ -123.041199390999978, 49.221719997000037 ], [ -123.041227716, 49.221169492000122 ], [ -123.041254521999946, 49.22066186100006 ], [ -123.041281096, 49.220159298000056 ], [ -123.042845704999976, 49.220181612000061 ], [ -123.04380678699998, 49.22018583500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116572001", "BldgCostT": "76540001", "sL_LossRatio": "0.729485715876817", "sL_AssetLoss": "1436560", "sL_BldgLoss": "1047950", "sL_StrLoss": "500340", "sL_NStrLoss": "547610", "sL_ContLoss": "388610", "geom_point": "0101000020E61000002AFC5BFA7EC25EC0F28AA71E699C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038855407999932, 49.223823995000089 ], [ -123.038860906999957, 49.223694397000074 ], [ -123.037342723, 49.223661495000073 ], [ -123.036670413999914, 49.223646886000047 ], [ -123.0367312, 49.222844984000098 ], [ -123.036724487999919, 49.222370095000059 ], [ -123.036736277999964, 49.222034395000072 ], [ -123.036770429999962, 49.221262405000111 ], [ -123.036825286999942, 49.220145018000039 ], [ -123.037490060999914, 49.220146998000097 ], [ -123.037964312999989, 49.220148406000135 ], [ -123.038083695999944, 49.220148100000053 ], [ -123.038424191, 49.220152706000121 ], [ -123.039050490999955, 49.220161184000077 ], [ -123.039345716999932, 49.220160190000044 ], [ -123.039687111999939, 49.220160049000071 ], [ -123.040662104999939, 49.220159587000062 ], [ -123.041281096, 49.220159298000056 ], [ -123.041254521999946, 49.22066186100006 ], [ -123.041227716, 49.221169492000122 ], [ -123.041199390999978, 49.221719997000037 ], [ -123.041181809999941, 49.222060997000071 ], [ -123.041173702999941, 49.222942705000058 ], [ -123.041161796999972, 49.223172087000123 ], [ -123.04113673099998, 49.223424806000068 ], [ -123.041118031999972, 49.223613516000071 ], [ -123.041092592999917, 49.223870095000031 ], [ -123.038855407999932, 49.223823995000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81937917", "BldgCostT": "55301667", "sL_LossRatio": "0.760186875738374", "sL_AssetLoss": "931100", "sL_BldgLoss": "707810", "sL_StrLoss": "354140", "sL_NStrLoss": "353670", "sL_ContLoss": "223290", "geom_point": "0101000020E6100000139C8FA56EC25EC0DFFDD050CC9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036634405999919, 49.224683590000083 ], [ -123.036670413999914, 49.223646886000047 ], [ -123.037342723, 49.223661495000073 ], [ -123.038860906999957, 49.223694397000074 ], [ -123.038855407999932, 49.223823995000089 ], [ -123.041092592999917, 49.223870095000031 ], [ -123.041074618999957, 49.224224874000122 ], [ -123.041071435999967, 49.224287771000064 ], [ -123.041049899999933, 49.224713010000094 ], [ -123.04102840599991, 49.225133282000044 ], [ -123.041010887999974, 49.225475895000024 ], [ -123.039884088999912, 49.22546752100007 ], [ -123.038806008, 49.225459508000064 ], [ -123.038782941999941, 49.225853947000154 ], [ -123.038760913999951, 49.226231091000074 ], [ -123.03657219899999, 49.226196198000139 ], [ -123.036561998999929, 49.226421099000035 ], [ -123.035832790999947, 49.226418684000066 ], [ -123.035107201999921, 49.226416280000173 ], [ -123.035163766, 49.225179569000034 ], [ -123.035186889999963, 49.224673597000084 ], [ -123.035886571999953, 49.224678426000033 ], [ -123.036634405999919, 49.224683590000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230134250", "BldgCostT": "157025000", "sL_LossRatio": "0.814547061570275", "sL_AssetLoss": "1199280", "sL_BldgLoss": "976870", "sL_StrLoss": "533730", "sL_NStrLoss": "443140", "sL_ContLoss": "222410", "geom_point": "0101000020E6100000FCA78E343CC25EC0B461C1BB649C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.035186889999963, 49.224673597000084 ], [ -123.035279392999968, 49.222365494000094 ], [ -123.034525109999947, 49.222358741000107 ], [ -123.033726378999972, 49.222351598000095 ], [ -123.033000950999934, 49.222347108000065 ], [ -123.032336479999984, 49.222342998000094 ], [ -123.03234709499999, 49.221963194000061 ], [ -123.032372003999939, 49.221143204000057 ], [ -123.032390602999953, 49.220122106000119 ], [ -123.033095446999937, 49.220125356000025 ], [ -123.033843691999934, 49.22012879600004 ], [ -123.034592332999978, 49.220132937000052 ], [ -123.034702163999938, 49.220133524000083 ], [ -123.035277494999931, 49.220136696000097 ], [ -123.036075559999944, 49.220140983000128 ], [ -123.036825286999942, 49.220145018000039 ], [ -123.036770429999962, 49.221262405000111 ], [ -123.036736277999964, 49.222034395000072 ], [ -123.036724487999919, 49.222370095000059 ], [ -123.0367312, 49.222844984000098 ], [ -123.036670413999914, 49.223646886000047 ], [ -123.036634405999919, 49.224683590000083 ], [ -123.035886571999953, 49.224678426000033 ], [ -123.035186889999963, 49.224673597000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149583250", "BldgCostT": "101035000", "sL_LossRatio": "0.803051162790698", "sL_AssetLoss": "806250", "sL_BldgLoss": "647460", "sL_StrLoss": "356180", "sL_NStrLoss": "291280", "sL_ContLoss": "158790", "geom_point": "0101000020E61000005CFBD8B028C25EC065E4036DB89C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034525109999947, 49.222358741000107 ], [ -123.035279392999968, 49.222365494000094 ], [ -123.035186889999963, 49.224673597000084 ], [ -123.035163766, 49.225179569000034 ], [ -123.035107201999921, 49.226416280000173 ], [ -123.03439068699997, 49.22641370400008 ], [ -123.033675696, 49.226411084000063 ], [ -123.032921180999921, 49.226407784000067 ], [ -123.03219501599996, 49.226404599000098 ], [ -123.032217951999925, 49.225864695000091 ], [ -123.032244190999918, 49.22524749300009 ], [ -123.032248037999977, 49.225154090000053 ], [ -123.032269293999931, 49.224640100000101 ], [ -123.032282429999924, 49.224164442000088 ], [ -123.032295375999951, 49.223694998000063 ], [ -123.03232251499999, 49.222840800000029 ], [ -123.032336479999984, 49.222342998000094 ], [ -123.033000950999934, 49.222347108000065 ], [ -123.033726378999972, 49.222351598000095 ], [ -123.034525109999947, 49.222358741000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103225666", "BldgCostT": "67771666", "sL_LossRatio": "0.714170072987818", "sL_AssetLoss": "1494770", "sL_BldgLoss": "1067520", "sL_StrLoss": "496340", "sL_NStrLoss": "571180", "sL_ContLoss": "427250", "geom_point": "0101000020E61000000269D684FAC15EC09F9307B76F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.031691416999976, 49.219035402000024 ], [ -123.032401310999916, 49.219031497000039 ], [ -123.032390602999953, 49.220122106000119 ], [ -123.032372003999939, 49.221143204000057 ], [ -123.03234709499999, 49.221963194000061 ], [ -123.032336479999984, 49.222342998000094 ], [ -123.03232251499999, 49.222840800000029 ], [ -123.032295375999951, 49.223694998000063 ], [ -123.032282429999924, 49.224164442000088 ], [ -123.032269293999931, 49.224640100000101 ], [ -123.032206619999982, 49.224638973000054 ], [ -123.03189499299998, 49.224633396000051 ], [ -123.031335814999977, 49.224576574000061 ], [ -123.030847418999912, 49.224486572000089 ], [ -123.030416127999942, 49.224382770000062 ], [ -123.029878696999987, 49.224201286000095 ], [ -123.029384207999925, 49.223991279000096 ], [ -123.028959087999951, 49.22376969 ], [ -123.028346893999981, 49.223372365000024 ], [ -123.028160482999979, 49.223251387000062 ], [ -123.028674871999982, 49.22287221900006 ], [ -123.02880440499996, 49.222776734000021 ], [ -123.029104083999954, 49.222555814000081 ], [ -123.029577263, 49.221983055000059 ], [ -123.029603992999952, 49.221950697000068 ], [ -123.029666915999883, 49.221811164000087 ], [ -123.029831092999956, 49.221447110000092 ], [ -123.029866953999885, 49.221249862 ], [ -123.030049644999949, 49.220244893000022 ], [ -123.030074697999964, 49.220106992000105 ], [ -123.030639907999927, 49.220111803000094 ], [ -123.030658012999979, 49.219828498 ], [ -123.030729478999945, 49.219698100000137 ], [ -123.030845207999974, 49.219584091000037 ], [ -123.031156697, 49.219435086000068 ], [ -123.031421478999931, 49.219392792000114 ], [ -123.031685511999939, 49.219385697000057 ], [ -123.031691416999976, 49.219035402000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76492001", "BldgCostT": "48655001", "sL_LossRatio": "0.696098710247494", "sL_AssetLoss": "1098893", "sL_BldgLoss": "764938", "sL_StrLoss": "353000", "sL_NStrLoss": "411938", "sL_ContLoss": "333955", "geom_point": "0101000020E6100000625E81C7BBC15EC063358F89B59C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023484174999965, 49.224637596000036 ], [ -123.023494713999952, 49.223252399000039 ], [ -123.024160275999975, 49.22325450200006 ], [ -123.024624019999962, 49.223254558000072 ], [ -123.024651504999952, 49.223254546000106 ], [ -123.026290716999938, 49.223254693000037 ], [ -123.026489417999983, 49.222895411000117 ], [ -123.026569086999984, 49.222808402000091 ], [ -123.026867187999954, 49.222504004000058 ], [ -123.027007286999918, 49.22257527200005 ], [ -123.02733919399999, 49.222744098000049 ], [ -123.028160482999979, 49.223251387000062 ], [ -123.028346893999981, 49.223372365000024 ], [ -123.028959087999951, 49.22376969 ], [ -123.029384207999925, 49.223991279000096 ], [ -123.029878696999987, 49.224201286000095 ], [ -123.030416127999942, 49.224382770000062 ], [ -123.030847418999912, 49.224486572000089 ], [ -123.031335814999977, 49.224576574000061 ], [ -123.03189499299998, 49.224633396000051 ], [ -123.032206619999982, 49.224638973000054 ], [ -123.032269293999931, 49.224640100000101 ], [ -123.032248037999977, 49.225154090000053 ], [ -123.032244190999918, 49.22524749300009 ], [ -123.03068152699997, 49.22524040800009 ], [ -123.027893977999895, 49.225227693000114 ], [ -123.026013774, 49.22522079700007 ], [ -123.024144222999965, 49.225204491000063 ], [ -123.023479799999933, 49.225198686000041 ], [ -123.02348114599998, 49.225029498000026 ], [ -123.023484174999965, 49.224637596000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39311917", "BldgCostT": "27111667", "sL_LossRatio": "0.74823138403102", "sL_AssetLoss": "631850", "sL_BldgLoss": "472770", "sL_StrLoss": "215600", "sL_NStrLoss": "257170", "sL_ContLoss": "159080", "geom_point": "0101000020E6100000001F7A5A97C15EC049EB5EDD679C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02365289, 49.220978515000077 ], [ -123.023650748999955, 49.220149680000119 ], [ -123.023802692999965, 49.220139389000096 ], [ -123.02456756399998, 49.220142395000039 ], [ -123.024679741999989, 49.220142816000084 ], [ -123.024616903999956, 49.220349301000091 ], [ -123.024610299999964, 49.220559893000051 ], [ -123.025780993999916, 49.220561604000075 ], [ -123.025773497, 49.221214497000048 ], [ -123.025826619999961, 49.221328498000112 ], [ -123.026035507999907, 49.221410007000017 ], [ -123.025844102999912, 49.221698406000058 ], [ -123.026425006999915, 49.221843206000052 ], [ -123.026152187999926, 49.222245598000121 ], [ -123.026867187999954, 49.222504004000058 ], [ -123.026569086999984, 49.222808402000091 ], [ -123.026489417999983, 49.222895411000117 ], [ -123.026290716999938, 49.223254693000037 ], [ -123.024651504999952, 49.223254546000106 ], [ -123.024624019999962, 49.223254558000072 ], [ -123.024160275999975, 49.22325450200006 ], [ -123.023494713999952, 49.223252399000039 ], [ -123.023495437999941, 49.223243229000104 ], [ -123.023509813999965, 49.223059994000074 ], [ -123.023500812999913, 49.222729991000044 ], [ -123.023611099999982, 49.221951110000106 ], [ -123.023612194999899, 49.22192622299999 ], [ -123.02365289, 49.220978515000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30016750", "BldgCostT": "20020000", "sL_LossRatio": "0.714287003264015", "sL_AssetLoss": "443319", "sL_BldgLoss": "316657", "sL_StrLoss": "139140", "sL_NStrLoss": "177517", "sL_ContLoss": "126662", "geom_point": "0101000020E610000040C20F52A0C15EC041AE2F6D139C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025773497, 49.221214497000048 ], [ -123.025780993999916, 49.220561604000075 ], [ -123.024610299999964, 49.220559893000051 ], [ -123.024616903999956, 49.220349301000091 ], [ -123.024679741999989, 49.220142816000084 ], [ -123.02456756399998, 49.220142395000039 ], [ -123.023802692999965, 49.220139389000096 ], [ -123.023650748999955, 49.220149680000119 ], [ -123.023650607999954, 49.220086876000032 ], [ -123.023648558999938, 49.219307286000053 ], [ -123.023648418, 49.219253283000079 ], [ -123.023646266999933, 49.218418046000068 ], [ -123.023646096000022, 49.218355370000019 ], [ -123.02364602199999, 49.218328063000101 ], [ -123.023644737999945, 49.217837643000124 ], [ -123.023644528999938, 49.217747650000085 ], [ -123.023643811999975, 49.217473794000057 ], [ -123.023802595999939, 49.217464812000081 ], [ -123.02458161199999, 49.217472796000052 ], [ -123.025061615999931, 49.217478805000063 ], [ -123.025126027999974, 49.21786620200006 ], [ -123.025234607999963, 49.218098890000114 ], [ -123.025480905999984, 49.218367804000088 ], [ -123.025519905999928, 49.218352432000124 ], [ -123.025602316999951, 49.218320004000056 ], [ -123.025889319999948, 49.218206993000102 ], [ -123.02612299499998, 49.21822158800007 ], [ -123.026210200999969, 49.218252814000074 ], [ -123.026318809999978, 49.218357600000104 ], [ -123.026909706999945, 49.218200850000073 ], [ -123.026910437999959, 49.218202897000062 ], [ -123.026938385999969, 49.218284603000029 ], [ -123.026930082999911, 49.218521289000115 ], [ -123.026633186999931, 49.218870787000071 ], [ -123.027028412999968, 49.21891590300001 ], [ -123.02741659899999, 49.218919417000087 ], [ -123.027667503999979, 49.218902000000114 ], [ -123.02817781600001, 49.218798103000076 ], [ -123.027475985999942, 49.21943137600006 ], [ -123.027028213000023, 49.219776201000045 ], [ -123.026416621999914, 49.220002591000089 ], [ -123.026347186999971, 49.220058285000036 ], [ -123.026608601999925, 49.220370005000092 ], [ -123.026747010999927, 49.220673578000032 ], [ -123.026801206999949, 49.220792391000039 ], [ -123.026828982999973, 49.221000391000054 ], [ -123.02681763599999, 49.221049405000024 ], [ -123.026753216999921, 49.221327110000104 ], [ -123.026425006999915, 49.221843206000052 ], [ -123.025844102999912, 49.221698406000058 ], [ -123.026035507999907, 49.221410007000017 ], [ -123.025826619999961, 49.221328498000112 ], [ -123.025773497, 49.221214497000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169895250", "BldgCostT": "107550000", "sL_LossRatio": "0.708254833310423", "sL_AssetLoss": "2473460", "sL_BldgLoss": "1751840", "sL_StrLoss": "749060", "sL_NStrLoss": "1002780", "sL_ContLoss": "721620", "geom_point": "0101000020E61000002FC63C022AC15EC00CC2ECD0F69B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02345159099994, 49.214803910000057 ], [ -123.023636908999947, 49.21480360400016 ], [ -123.023636953, 49.214828852000082 ], [ -123.023639296999988, 49.215730824000055 ], [ -123.023641582999971, 49.216612015000031 ], [ -123.023641827999953, 49.216701996000076 ], [ -123.023643811999975, 49.217473794000057 ], [ -123.023644528999938, 49.217747650000085 ], [ -123.023644737999945, 49.217837643000124 ], [ -123.02364602199999, 49.218328063000101 ], [ -123.023646096000022, 49.218355370000019 ], [ -123.023646266999933, 49.218418046000068 ], [ -123.023648418, 49.219253283000079 ], [ -123.023648558999938, 49.219307286000053 ], [ -123.023650607999954, 49.220086876000032 ], [ -123.023650748999955, 49.220149680000119 ], [ -123.02365289, 49.220978515000077 ], [ -123.023612194999899, 49.22192622299999 ], [ -123.023611099999982, 49.221951110000106 ], [ -123.023483495999955, 49.221951966000063 ], [ -123.021478440999928, 49.22196570400007 ], [ -123.02119005499999, 49.221967690000035 ], [ -123.020631207999941, 49.221971491000033 ], [ -123.01867462899996, 49.221946243000019 ], [ -123.018066496999978, 49.221938392 ], [ -123.016163846999959, 49.22194382600005 ], [ -123.012606607999956, 49.221953911000064 ], [ -123.01251359799997, 49.220262306000095 ], [ -123.012427997999936, 49.218392407000053 ], [ -123.012404185999983, 49.216628800000123 ], [ -123.012372304999971, 49.215717992000087 ], [ -123.015073494999967, 49.215713591000124 ], [ -123.015073144999974, 49.215271045000108 ], [ -123.015072794999952, 49.21482800700003 ], [ -123.01765822599999, 49.214822472000037 ], [ -123.017971809999949, 49.214821791000112 ], [ -123.018567425999947, 49.21482002000009 ], [ -123.018688126999933, 49.214819680000048 ], [ -123.019209899999964, 49.214818112000096 ], [ -123.020143616, 49.214815328000029 ], [ -123.02085438499999, 49.214813216000032 ], [ -123.021571524999928, 49.214810622000037 ], [ -123.022848474999989, 49.214806057000011 ], [ -123.02345159099994, 49.214803910000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14084250", "BldgCostT": "9240000", "sL_LossRatio": "0.695489144699839", "sL_AssetLoss": "266690", "sL_BldgLoss": "185480", "sL_StrLoss": "80700", "sL_NStrLoss": "104780", "sL_ContLoss": "81210", "geom_point": "0101000020E610000012B3FBE1A9C15EC0C6BC3BF0399B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025482871999913, 49.213343880000146 ], [ -123.025442790999975, 49.213241795000108 ], [ -123.025209987999943, 49.21327769100008 ], [ -123.025103886999915, 49.212898308000021 ], [ -123.024493882999977, 49.212909291000102 ], [ -123.024544600999889, 49.212203592 ], [ -123.024673685999957, 49.211751295000049 ], [ -123.02533170699995, 49.211591999000092 ], [ -123.025628806999947, 49.211902005000077 ], [ -123.025844708999941, 49.211806009000028 ], [ -123.026058196999955, 49.211711090000037 ], [ -123.026301913999959, 49.211977302000079 ], [ -123.026338185999933, 49.212053997000062 ], [ -123.026400720999931, 49.212149405000076 ], [ -123.026468114999929, 49.212189092000109 ], [ -123.026575903999955, 49.21219928200005 ], [ -123.026860208999949, 49.212174700000027 ], [ -123.02719519299994, 49.212236205000053 ], [ -123.027272486999976, 49.212422091000064 ], [ -123.027257509999956, 49.212485600000022 ], [ -123.027314592999957, 49.212558407000095 ], [ -123.027390488, 49.212765906000129 ], [ -123.027471122999941, 49.212921195 ], [ -123.02748630399995, 49.213090988000026 ], [ -123.027455493999952, 49.213314495000127 ], [ -123.027419326999961, 49.213356561000069 ], [ -123.027347288999962, 49.213440298000052 ], [ -123.027207320999977, 49.213547297000119 ], [ -123.027004301999938, 49.21365339199999 ], [ -123.026607009999964, 49.213750485000027 ], [ -123.026286000999946, 49.213747089000094 ], [ -123.02601488699996, 49.213694503000063 ], [ -123.025680119999961, 49.213544799000069 ], [ -123.025501799000025, 49.213392107000054 ], [ -123.025482871999913, 49.213343880000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203388208", "BldgCostT": "126912041", "sL_LossRatio": "0.708682640819347", "sL_AssetLoss": "1917723", "sL_BldgLoss": "1359057", "sL_StrLoss": "599000", "sL_NStrLoss": "760057", "sL_ContLoss": "558666", "geom_point": "0101000020E61000005C66A6EEA9C15EC0F630DDB9EA9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023633506999928, 49.213589382000073 ], [ -123.023631424999948, 49.212851138000097 ], [ -123.023631322999947, 49.212813906000079 ], [ -123.02363029899999, 49.212444097000052 ], [ -123.023667127999929, 49.212035217000064 ], [ -123.02371032399995, 49.209247288000029 ], [ -123.02370285799995, 49.209225215000089 ], [ -123.02369990699998, 49.209216398000052 ], [ -123.023623139999984, 49.208726140000074 ], [ -123.023537305, 49.208177686000042 ], [ -123.023587120999949, 49.208174036000059 ], [ -123.023671002999919, 49.208167926000094 ], [ -123.024035124999926, 49.208138072000075 ], [ -123.025792596999963, 49.207994110000058 ], [ -123.026100209, 49.207969188000099 ], [ -123.027550689999927, 49.207860618000097 ], [ -123.028015390999954, 49.207825706000079 ], [ -123.028504678999965, 49.207856299000056 ], [ -123.028661615999937, 49.207871863000037 ], [ -123.028703159999907, 49.207875967000092 ], [ -123.028756901999884, 49.207881288000046 ], [ -123.029017939999946, 49.207907216000052 ], [ -123.029309187999957, 49.207936109000052 ], [ -123.02989055399999, 49.20799332400005 ], [ -123.0300345899999, 49.208007509 ], [ -123.030897703, 49.208093404000131 ], [ -123.030868887999986, 49.208394399 ], [ -123.030817596999967, 49.208552395000034 ], [ -123.030652392999954, 49.20886139000006 ], [ -123.030201312999978, 49.209113797000064 ], [ -123.029727501999972, 49.209183604000017 ], [ -123.029081508999951, 49.209179295000084 ], [ -123.02859919899997, 49.209317394000088 ], [ -123.028268995999966, 49.209501997000054 ], [ -123.028074012, 49.209655092000098 ], [ -123.027682175999956, 49.210051503000045 ], [ -123.027367885999951, 49.210395990000116 ], [ -123.027277921999925, 49.210558400000046 ], [ -123.027098376999902, 49.210854294000079 ], [ -123.026864084999971, 49.211234294000135 ], [ -123.026682989999969, 49.21138430600007 ], [ -123.026455271999978, 49.211511299000108 ], [ -123.026058196999955, 49.211711090000037 ], [ -123.025844708999941, 49.211806009000028 ], [ -123.025628806999947, 49.211902005000077 ], [ -123.02533170699995, 49.211591999000092 ], [ -123.024673685999957, 49.211751295000049 ], [ -123.024544600999889, 49.212203592 ], [ -123.024493882999977, 49.212909291000102 ], [ -123.025103886999915, 49.212898308000021 ], [ -123.025209987999943, 49.21327769100008 ], [ -123.025465695999983, 49.213891099000072 ], [ -123.025562407, 49.214374789000047 ], [ -123.025585598999953, 49.214547493000119 ], [ -123.025561314999905, 49.214819797000082 ], [ -123.025511991999963, 49.214819368000036 ], [ -123.023801487999989, 49.214804599000068 ], [ -123.023672613999977, 49.214803808000021 ], [ -123.023636908999947, 49.21480360400016 ], [ -123.023636881999963, 49.214794611000123 ], [ -123.023634293999962, 49.213868949000094 ], [ -123.023634189999925, 49.213832972000034 ], [ -123.023634103999939, 49.213803630000037 ], [ -123.023633506999928, 49.213589382000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130773583", "BldgCostT": "88033333", "sL_LossRatio": "0.759244328111727", "sL_AssetLoss": "1621021", "sL_BldgLoss": "1230751", "sL_StrLoss": "575081", "sL_NStrLoss": "655670", "sL_ContLoss": "390270", "geom_point": "0101000020E61000007F4F308C49C15EC02F8252F60E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017968173999947, 49.214335018000071 ], [ -123.01796437599991, 49.213825199000048 ], [ -123.016567013999989, 49.213829802000092 ], [ -123.016563584999957, 49.213347801000026 ], [ -123.016760676999965, 49.213207299000018 ], [ -123.016788576999943, 49.213092695000036 ], [ -123.016744893999885, 49.212982488000108 ], [ -123.016510174999922, 49.212834598 ], [ -123.016421298999902, 49.212722197000062 ], [ -123.016158085, 49.212120412000097 ], [ -123.016156691999953, 49.211991504000096 ], [ -123.016292482999972, 49.211736694000066 ], [ -123.016315682999917, 49.211588708000086 ], [ -123.016158674999971, 49.211042899000155 ], [ -123.015948055999942, 49.210924504000076 ], [ -123.016055796999936, 49.210881577000038 ], [ -123.016305404999954, 49.210786891000083 ], [ -123.016272391000015, 49.208466383000065 ], [ -123.016468306999926, 49.2084441720001 ], [ -123.017199448999946, 49.208361277000073 ], [ -123.017773837999982, 49.208296152000067 ], [ -123.017890686999976, 49.208282902000043 ], [ -123.018272760999963, 49.208241732000076 ], [ -123.019434203999964, 49.208116594000089 ], [ -123.020311602999982, 49.208129115000133 ], [ -123.020471221999983, 49.208131808000054 ], [ -123.022091251999939, 49.20815941000005 ], [ -123.023283319999948, 49.208179700000137 ], [ -123.023537305, 49.208177686000042 ], [ -123.023623139999984, 49.208726140000074 ], [ -123.02369990699998, 49.209216398000052 ], [ -123.02370285799995, 49.209225215000089 ], [ -123.02371032399995, 49.209247288000029 ], [ -123.023667127999929, 49.212035217000064 ], [ -123.02363029899999, 49.212444097000052 ], [ -123.023631322999947, 49.212813906000079 ], [ -123.023631424999948, 49.212851138000097 ], [ -123.023633506999928, 49.213589382000073 ], [ -123.023634103999939, 49.213803630000037 ], [ -123.023634189999925, 49.213832972000034 ], [ -123.023634293999962, 49.213868949000094 ], [ -123.023636881999963, 49.214794611000123 ], [ -123.023636908999947, 49.21480360400016 ], [ -123.02345159099994, 49.214803910000057 ], [ -123.022848474999989, 49.214806057000011 ], [ -123.021571524999928, 49.214810622000037 ], [ -123.02085438499999, 49.214813216000032 ], [ -123.020143616, 49.214815328000029 ], [ -123.019209899999964, 49.214818112000096 ], [ -123.018688126999933, 49.214819680000048 ], [ -123.018567425999947, 49.21482002000009 ], [ -123.017971809999949, 49.214821791000112 ], [ -123.017968173999947, 49.214335018000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135530000", "BldgCostT": "84185000", "sL_LossRatio": "0.706844162368134", "sL_AssetLoss": "1632340", "sL_BldgLoss": "1153810", "sL_StrLoss": "525090", "sL_NStrLoss": "628720", "sL_ContLoss": "478530", "geom_point": "0101000020E61000000E8C40E5EDC05EC0900D8BEE2C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.012388102999978, 49.213722203000053 ], [ -123.012391102999942, 49.213505088 ], [ -123.01239938499999, 49.212800005000069 ], [ -123.012407718999938, 49.212286705000032 ], [ -123.012416908, 49.211290599000044 ], [ -123.01239329400002, 49.210804392000092 ], [ -123.012385153999958, 49.20965847100004 ], [ -123.012382065999986, 49.209229372000017 ], [ -123.013126691999901, 49.209216685000051 ], [ -123.013380271999935, 49.209177783000058 ], [ -123.013812396999953, 49.209031198000062 ], [ -123.014424778999938, 49.208767994000041 ], [ -123.015138788999934, 49.208612989000066 ], [ -123.015585008999935, 49.208544302000163 ], [ -123.015640828999949, 49.208537976000045 ], [ -123.016272391000015, 49.208466383000065 ], [ -123.016305404999954, 49.210786891000083 ], [ -123.016055796999936, 49.210881577000038 ], [ -123.015948055999942, 49.210924504000076 ], [ -123.016158674999971, 49.211042899000155 ], [ -123.016315682999917, 49.211588708000086 ], [ -123.016292482999972, 49.211736694000066 ], [ -123.016156691999953, 49.211991504000096 ], [ -123.016158085, 49.212120412000097 ], [ -123.016421298999902, 49.212722197000062 ], [ -123.016510174999922, 49.212834598 ], [ -123.016744893999885, 49.212982488000108 ], [ -123.016788576999943, 49.213092695000036 ], [ -123.016760676999965, 49.213207299000018 ], [ -123.016563584999957, 49.213347801000026 ], [ -123.016567013999989, 49.213829802000092 ], [ -123.01796437599991, 49.213825199000048 ], [ -123.017968173999947, 49.214335018000071 ], [ -123.017971809999949, 49.214821791000112 ], [ -123.01765822599999, 49.214822472000037 ], [ -123.015072794999952, 49.21482800700003 ], [ -123.015073144999974, 49.215271045000108 ], [ -123.015073494999967, 49.215713591000124 ], [ -123.012372304999971, 49.215717992000087 ], [ -123.012359880999924, 49.214843893000122 ], [ -123.012371068000022, 49.21439881900006 ], [ -123.012388102999978, 49.213722203000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129306916", "BldgCostT": "80836666", "sL_LossRatio": "0.741157658456299", "sL_AssetLoss": "1195724", "sL_BldgLoss": "886220", "sL_StrLoss": "430630", "sL_NStrLoss": "455590", "sL_ContLoss": "309504", "geom_point": "0101000020E61000005E326D8383C05EC05EE4BFBC579B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011643442999954, 49.212255126000045 ], [ -123.012259673999907, 49.212261886000071 ], [ -123.012407718999938, 49.212286705000032 ], [ -123.01239938499999, 49.212800005000069 ], [ -123.012391102999942, 49.213505088 ], [ -123.012388102999978, 49.213722203000053 ], [ -123.012371068000022, 49.21439881900006 ], [ -123.012359880999924, 49.214843893000122 ], [ -123.008666196999911, 49.214829690000059 ], [ -123.004922820000033, 49.21484189800006 ], [ -123.002713205999925, 49.214841783000054 ], [ -123.002709217999978, 49.214354467000071 ], [ -123.002705310999943, 49.213879389000091 ], [ -123.002703280999981, 49.213548797000072 ], [ -123.003752708999926, 49.213557196000131 ], [ -123.004929605999976, 49.213565605000078 ], [ -123.004931183999986, 49.213372015000076 ], [ -123.004968100999918, 49.21220369600006 ], [ -123.005124605999981, 49.212181900000104 ], [ -123.006886587999986, 49.212204714000038 ], [ -123.00774411899999, 49.212213213000062 ], [ -123.008032397999969, 49.212216087000066 ], [ -123.008701015000014, 49.212222705000023 ], [ -123.011643442999954, 49.212255126000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138249417", "BldgCostT": "88451667", "sL_LossRatio": "0.703369061725735", "sL_AssetLoss": "2227920", "sL_BldgLoss": "1567050", "sL_StrLoss": "727570", "sL_NStrLoss": "839480", "sL_ContLoss": "660870", "geom_point": "0101000020E61000004F767D307AC05EC03190A142F99A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.003496581999926, 49.212207796000079 ], [ -123.003482990999942, 49.211037199000039 ], [ -123.002732402000021, 49.211030002000093 ], [ -123.001345335999957, 49.211016696000087 ], [ -123.001194133999917, 49.211015254000053 ], [ -123.000564505999989, 49.211009201000088 ], [ -123.000576905999949, 49.209924012000045 ], [ -123.00135925, 49.209928525000088 ], [ -123.002788215999928, 49.209936808000087 ], [ -123.003852313999985, 49.2100340060001 ], [ -123.00497480099996, 49.210035503000036 ], [ -123.004976828999943, 49.209152644000099 ], [ -123.008462185999946, 49.209198116000032 ], [ -123.011354275999921, 49.209221182000107 ], [ -123.012382065999986, 49.209229372000017 ], [ -123.012385153999958, 49.20965847100004 ], [ -123.01239329400002, 49.210804392000092 ], [ -123.012416908, 49.211290599000044 ], [ -123.012407718999938, 49.212286705000032 ], [ -123.012259673999907, 49.212261886000071 ], [ -123.011643442999954, 49.212255126000045 ], [ -123.008701015000014, 49.212222705000023 ], [ -123.008032397999969, 49.212216087000066 ], [ -123.00774411899999, 49.212213213000062 ], [ -123.006886587999986, 49.212204714000038 ], [ -123.005124605999981, 49.212181900000104 ], [ -123.004968100999918, 49.21220369600006 ], [ -123.004659697999955, 49.212218500000041 ], [ -123.003830643999919, 49.212210872000078 ], [ -123.003496581999926, 49.212207796000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146341833", "BldgCostT": "97713333", "sL_LossRatio": "0.738785504020961", "sL_AssetLoss": "2027376", "sL_BldgLoss": "1497796", "sL_StrLoss": "698266", "sL_NStrLoss": "799530", "sL_ContLoss": "529580", "geom_point": "0101000020E6100000814E081DF4BF5EC08DB11BCF4A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.993912312999939, 49.212119302000069 ], [ -122.996145010999911, 49.21214370200007 ], [ -122.996845398999952, 49.212178496000028 ], [ -122.99742171199992, 49.212157534000035 ], [ -122.998664115999958, 49.212173298000096 ], [ -122.998901221000011, 49.212177190000027 ], [ -122.999395384999971, 49.212181624000024 ], [ -122.999425190999943, 49.212181913000023 ], [ -122.999999901999971, 49.212183577000125 ], [ -123.000544783999928, 49.21218519100011 ], [ -123.000552474999935, 49.211728014000073 ], [ -123.000564505999989, 49.211009201000088 ], [ -123.001194133999917, 49.211015254000053 ], [ -123.001345335999957, 49.211016696000087 ], [ -123.002732402000021, 49.211030002000093 ], [ -123.003482990999942, 49.211037199000039 ], [ -123.003496581999926, 49.212207796000079 ], [ -123.003830643999919, 49.212210872000078 ], [ -123.004659697999955, 49.212218500000041 ], [ -123.004968100999918, 49.21220369600006 ], [ -123.004931183999986, 49.213372015000076 ], [ -123.004929605999976, 49.213565605000078 ], [ -123.003752708999926, 49.213557196000131 ], [ -123.002703280999981, 49.213548797000072 ], [ -123.002705310999943, 49.213879389000091 ], [ -123.002709217999978, 49.214354467000071 ], [ -123.002713205999925, 49.214841783000054 ], [ -123.00129310799997, 49.214835589000124 ], [ -123.000343279, 49.214833472000066 ], [ -123.0, 49.214832691000019 ], [ -122.999425512999977, 49.214831401000055 ], [ -122.997526204999957, 49.214829795000071 ], [ -122.99389860799999, 49.214833191000046 ], [ -122.993901597, 49.213896405000064 ], [ -122.99390722399994, 49.212961498000055 ], [ -122.993912312999939, 49.212119302000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132694750", "BldgCostT": "84970000", "sL_LossRatio": "0.712600636584909", "sL_AssetLoss": "1922760", "sL_BldgLoss": "1370160", "sL_StrLoss": "602430", "sL_NStrLoss": "767730", "sL_ContLoss": "552600", "geom_point": "0101000020E610000061388DA3E8BF5EC0A177C7B5E39A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.993912312999939, 49.212119302000069 ], [ -122.99395969899993, 49.211278982000117 ], [ -122.993977295999954, 49.21096708700005 ], [ -122.993979616000033, 49.210507705000069 ], [ -122.994374303999962, 49.209816009000043 ], [ -122.994553898000021, 49.209628196000011 ], [ -122.994757018999934, 49.209415889000091 ], [ -122.994833663999927, 49.209358615000035 ], [ -122.995074188999951, 49.20917881500003 ], [ -122.995376310999973, 49.209006096000053 ], [ -122.995719605999938, 49.208854488000114 ], [ -122.99704340699995, 49.208478684000049 ], [ -122.997711310999975, 49.208187503000019 ], [ -122.998030711999945, 49.207980105000019 ], [ -122.998323601999957, 49.207737909000038 ], [ -122.99876300199999, 49.207809039000104 ], [ -122.999176735999953, 49.207876047000127 ], [ -123.000013976999952, 49.208011629000062 ], [ -123.000607807999927, 49.208107801000089 ], [ -123.001725091999944, 49.208293792000035 ], [ -123.002247700999945, 49.208425392000045 ], [ -123.002828280999907, 49.208626249000091 ], [ -123.003227494, 49.208764387000059 ], [ -123.004704539000016, 49.209119860000079 ], [ -123.004976828999943, 49.209152644000099 ], [ -123.00497480099996, 49.210035503000036 ], [ -123.003852313999985, 49.2100340060001 ], [ -123.002788215999928, 49.209936808000087 ], [ -123.00135925, 49.209928525000088 ], [ -123.000576905999949, 49.209924012000045 ], [ -123.000564505999989, 49.211009201000088 ], [ -123.000552474999935, 49.211728014000073 ], [ -123.000544783999928, 49.21218519100011 ], [ -122.999999901999971, 49.212183577000125 ], [ -122.999425190999943, 49.212181913000023 ], [ -122.999395384999971, 49.212181624000024 ], [ -122.998901221000011, 49.212177190000027 ], [ -122.998664115999958, 49.212173298000096 ], [ -122.99742171199992, 49.212157534000035 ], [ -122.996845398999952, 49.212178496000028 ], [ -122.996145010999911, 49.21214370200007 ], [ -122.993912312999939, 49.212119302000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120567417", "BldgCostT": "76781667", "sL_LossRatio": "0.701004722845183", "sL_AssetLoss": "1945014", "sL_BldgLoss": "1363464", "sL_StrLoss": "616054", "sL_NStrLoss": "747410", "sL_ContLoss": "581550", "geom_point": "0101000020E6100000F3BBD0F97CBF5EC0FFDFBF16C79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.990329700999936, 49.21213188800008 ], [ -122.990344987999976, 49.211217908000059 ], [ -122.988458311999963, 49.211213903000051 ], [ -122.988457314999962, 49.21031841000017 ], [ -122.98845839099998, 49.209412995000093 ], [ -122.988423724999919, 49.208531003000111 ], [ -122.988424721999962, 49.207668002000041 ], [ -122.988482503999947, 49.206755188000031 ], [ -122.990403958999963, 49.206819027000087 ], [ -122.991207297999907, 49.206845695000048 ], [ -122.992068382999946, 49.206986293000114 ], [ -122.994056113999974, 49.207310812000095 ], [ -122.994760061999926, 49.207381547000104 ], [ -122.99602291099994, 49.207508431000051 ], [ -122.996053419999953, 49.207511504000088 ], [ -122.996614137999941, 49.20756742599999 ], [ -122.99720746199992, 49.207626589000064 ], [ -122.998323601999957, 49.207737909000038 ], [ -122.998030711999945, 49.207980105000019 ], [ -122.997711310999975, 49.208187503000019 ], [ -122.99704340699995, 49.208478684000049 ], [ -122.995719605999938, 49.208854488000114 ], [ -122.995376310999973, 49.209006096000053 ], [ -122.995074188999951, 49.20917881500003 ], [ -122.994833663999927, 49.209358615000035 ], [ -122.994757018999934, 49.209415889000091 ], [ -122.994553898000021, 49.209628196000011 ], [ -122.994374303999962, 49.209816009000043 ], [ -122.993979616000033, 49.210507705000069 ], [ -122.993977295999954, 49.21096708700005 ], [ -122.99395969899993, 49.211278982000117 ], [ -122.993912312999939, 49.212119302000069 ], [ -122.99248487899996, 49.212122710000067 ], [ -122.990603670999946, 49.21212760000008 ], [ -122.990329700999936, 49.21213188800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125038386", "BldgCostT": "77772079", "sL_LossRatio": "0.66948680490599", "sL_AssetLoss": "1902980", "sL_BldgLoss": "1274020", "sL_StrLoss": "554750", "sL_NStrLoss": "719270", "sL_ContLoss": "628960", "geom_point": "0101000020E6100000E0F557976CBF5EC0D1CAD65D4D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988464386999937, 49.212114006000121 ], [ -122.988458311999963, 49.211213903000051 ], [ -122.990344987999976, 49.211217908000059 ], [ -122.990329700999936, 49.21213188800008 ], [ -122.990603670999946, 49.21212760000008 ], [ -122.99248487899996, 49.212122710000067 ], [ -122.993912312999939, 49.212119302000069 ], [ -122.99390722399994, 49.212961498000055 ], [ -122.993901597, 49.213896405000064 ], [ -122.99389860799999, 49.214833191000046 ], [ -122.992085790999937, 49.214851992000057 ], [ -122.990267113999934, 49.214855291000049 ], [ -122.988473305999918, 49.214854690000074 ], [ -122.988482220999941, 49.213913608000048 ], [ -122.988474488999913, 49.213016989000081 ], [ -122.988464386999937, 49.212114006000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211518978", "BldgCostT": "140149857", "sL_LossRatio": "0.729033297908241", "sL_AssetLoss": "1985410", "sL_BldgLoss": "1447430", "sL_StrLoss": "625170", "sL_NStrLoss": "822260", "sL_ContLoss": "537980", "geom_point": "0101000020E6100000DDC0DB8B41BD5EC05F7D6DE4579B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953891809999931, 49.214096506000075 ], [ -122.954410476999968, 49.213792251000029 ], [ -122.954883786, 49.213514598000074 ], [ -122.955176998999931, 49.213362212000028 ], [ -122.95691559699999, 49.21245849200006 ], [ -122.95653185, 49.212141395000046 ], [ -122.95648209699999, 49.2121003130001 ], [ -122.955939940999883, 49.211503573000087 ], [ -122.955912517999977, 49.211473405000056 ], [ -122.955622407999982, 49.211216440000079 ], [ -122.955614083999976, 49.211209089000107 ], [ -122.955699497999959, 49.21116290500003 ], [ -122.956625595999967, 49.210664712000018 ], [ -122.957233227999936, 49.210367285000117 ], [ -122.957343235999971, 49.210313401000093 ], [ -122.957521607999951, 49.210226115000076 ], [ -122.95787918799999, 49.210078481000053 ], [ -122.957879372999983, 49.210078708 ], [ -122.957886092999928, 49.210088190000128 ], [ -122.958619605999985, 49.211126271000111 ], [ -122.959385141999988, 49.212051045000074 ], [ -122.959475067999918, 49.212177085000093 ], [ -122.960082701, 49.213028928000092 ], [ -122.960253931999915, 49.213208123000115 ], [ -122.960338522999933, 49.213296709000062 ], [ -122.960382822999946, 49.213350176000155 ], [ -122.96042241, 49.213397946000065 ], [ -122.960730067999975, 49.2137693110001 ], [ -122.960867142999959, 49.213949139000057 ], [ -122.960911805999913, 49.213997850000048 ], [ -122.961593707999924, 49.21464533300005 ], [ -122.961611385999973, 49.214662121000124 ], [ -122.961388196999977, 49.214682786000026 ], [ -122.960982480999974, 49.214798129000073 ], [ -122.960880600999985, 49.214827106000023 ], [ -122.960414765999943, 49.215041910000082 ], [ -122.96037249699999, 49.215061414000111 ], [ -122.960283302999954, 49.21510388100009 ], [ -122.960031556999965, 49.214901686000168 ], [ -122.960026391999961, 49.214897573000052 ], [ -122.95977970199999, 49.214699411 ], [ -122.959051058999975, 49.214114225000074 ], [ -122.958619782999932, 49.214349799000033 ], [ -122.958462295999979, 49.214435834000049 ], [ -122.957032691999927, 49.215216712000029 ], [ -122.953669868999924, 49.217019902000068 ], [ -122.953140651999931, 49.216599288000062 ], [ -122.952624993999933, 49.216189503000059 ], [ -122.954637579999954, 49.21511389800007 ], [ -122.954909212999951, 49.214907207000088 ], [ -122.953891809999931, 49.214096506000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330454977", "BldgCostT": "222689856", "sL_LossRatio": "0.791777658742798", "sL_AssetLoss": "2762960", "sL_BldgLoss": "2187650", "sL_StrLoss": "951140", "sL_NStrLoss": "1236510", "sL_ContLoss": "575310", "geom_point": "0101000020E61000005DB80FED21BD5EC044F5E7EC2E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953437779999931, 49.212335898000077 ], [ -122.954441849999938, 49.211805686000069 ], [ -122.955381105999933, 49.211309714000066 ], [ -122.955614083999976, 49.211209089000107 ], [ -122.955622407999982, 49.211216440000079 ], [ -122.955912517999977, 49.211473405000056 ], [ -122.955939940999883, 49.211503573000087 ], [ -122.95648209699999, 49.2121003130001 ], [ -122.95653185, 49.212141395000046 ], [ -122.95691559699999, 49.21245849200006 ], [ -122.955176998999931, 49.213362212000028 ], [ -122.954883786, 49.213514598000074 ], [ -122.954188473999935, 49.212947823000079 ], [ -122.953437779999931, 49.212335898000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "423515668", "BldgCostT": "281996668", "sL_LossRatio": "0.749099747789385", "sL_AssetLoss": "3214377", "sL_BldgLoss": "2407889", "sL_StrLoss": "1076649", "sL_NStrLoss": "1331240", "sL_ContLoss": "806488", "geom_point": "0101000020E6100000E4D45B24E9BC5EC0C7282205C79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.958444752999981, 49.202258936000064 ], [ -122.958510803999928, 49.202243836000036 ], [ -122.958564933999966, 49.202265683000107 ], [ -122.959332026999974, 49.202777702000077 ], [ -122.960062499999935, 49.203442444000096 ], [ -122.96028631199999, 49.203734690000033 ], [ -122.959458957999971, 49.204722892000071 ], [ -122.95940116599995, 49.204781678000117 ], [ -122.959306226999971, 49.204878250000036 ], [ -122.958172269999949, 49.205977735000033 ], [ -122.957213445999983, 49.206864528000025 ], [ -122.956398319999948, 49.207724701000053 ], [ -122.956400470999967, 49.208070784000085 ], [ -122.956400555999892, 49.208082606000104 ], [ -122.956437017999946, 49.208234522000055 ], [ -122.956546404, 49.208372619000066 ], [ -122.95715785199998, 49.209144440000067 ], [ -122.957201319999967, 49.209199303000034 ], [ -122.957781835999953, 49.209932112000104 ], [ -122.957521607999951, 49.210226115000076 ], [ -122.957343235999971, 49.210313401000093 ], [ -122.957233227999936, 49.210367285000117 ], [ -122.956625595999967, 49.210664712000018 ], [ -122.955699497999959, 49.21116290500003 ], [ -122.955614083999976, 49.211209089000107 ], [ -122.955381105999933, 49.211309714000066 ], [ -122.954441849999938, 49.211805686000069 ], [ -122.953437779999931, 49.212335898000077 ], [ -122.952518111999964, 49.212856373000129 ], [ -122.95177010299993, 49.213279704000051 ], [ -122.950078312999921, 49.214213805000107 ], [ -122.948124318999945, 49.215253094000097 ], [ -122.947610921999953, 49.214867184000092 ], [ -122.946849093999987, 49.214294484000078 ], [ -122.946409527999919, 49.213963699000026 ], [ -122.94544851199997, 49.213240409000022 ], [ -122.944905548999941, 49.21282785100005 ], [ -122.944380603999932, 49.212428993000046 ], [ -122.94336340699999, 49.211683084000143 ], [ -122.942912926999938, 49.211334442000066 ], [ -122.942474106999938, 49.210994786000072 ], [ -122.942485166999944, 49.210988808000117 ], [ -122.942684678999967, 49.21088089200002 ], [ -122.944386716999972, 49.209938221000122 ], [ -122.944553264999925, 49.209850049000096 ], [ -122.944564433999929, 49.209844150000087 ], [ -122.946007712000011, 49.2090778560001 ], [ -122.946294994999903, 49.208924707000058 ], [ -122.947807813999987, 49.208102696000012 ], [ -122.948196256999935, 49.207892113000064 ], [ -122.949838377999953, 49.20700074600007 ], [ -122.952096295999951, 49.205862838000051 ], [ -122.952202388, 49.20581449000008 ], [ -122.952190612999956, 49.205740289000076 ], [ -122.952188110999941, 49.205724446000033 ], [ -122.952179601999944, 49.205670976000143 ], [ -122.952362695999952, 49.205558699000136 ], [ -122.952545151999956, 49.205446789000085 ], [ -122.953743856999921, 49.204844535000106 ], [ -122.953829453999973, 49.204794704000065 ], [ -122.955814718999974, 49.203711199000118 ], [ -122.957169276999963, 49.202976574000033 ], [ -122.957496307, 49.202799209000112 ], [ -122.957430798999923, 49.20245770800009 ], [ -122.958444752999981, 49.202258936000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85982554", "BldgCostT": "50543747", "sL_LossRatio": "0.655621995108478", "sL_AssetLoss": "1075330", "sL_BldgLoss": "705010", "sL_StrLoss": "308210", "sL_NStrLoss": "396800", "sL_ContLoss": "370320", "geom_point": "0101000020E6100000C3AB3961FEBC5EC0DB88D4726F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952518111999964, 49.212856373000129 ], [ -122.953437779999931, 49.212335898000077 ], [ -122.954188473999935, 49.212947823000079 ], [ -122.954883786, 49.213514598000074 ], [ -122.954410476999968, 49.213792251000029 ], [ -122.953891809999931, 49.214096506000075 ], [ -122.954909212999951, 49.214907207000088 ], [ -122.954637579999954, 49.21511389800007 ], [ -122.952624993999933, 49.216189503000059 ], [ -122.95208163699999, 49.215781505000074 ], [ -122.951562785999954, 49.215391908000136 ], [ -122.951150310999978, 49.215065114000012 ], [ -122.950789208999979, 49.214778988000063 ], [ -122.952471493999951, 49.213822095000033 ], [ -122.95177010299993, 49.213279704000051 ], [ -122.952518111999964, 49.212856373000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69966834", "BldgCostT": "45683334", "sL_LossRatio": "0.70671473463014", "sL_AssetLoss": "1037420", "sL_BldgLoss": "733160", "sL_StrLoss": "321380", "sL_NStrLoss": "411780", "sL_ContLoss": "304260", "geom_point": "0101000020E61000008D7EE153C8BC5EC0FA4763DD8D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950078312999921, 49.214213805000107 ], [ -122.95177010299993, 49.213279704000051 ], [ -122.952471493999951, 49.213822095000033 ], [ -122.950789208999979, 49.214778988000063 ], [ -122.951150310999978, 49.215065114000012 ], [ -122.951562785999954, 49.215391908000136 ], [ -122.949033879999945, 49.21671594500004 ], [ -122.948506825, 49.216991910000083 ], [ -122.947890491999914, 49.216492399000067 ], [ -122.94778760399997, 49.216408403000059 ], [ -122.947069711, 49.215824204000086 ], [ -122.948124318999945, 49.215253094000097 ], [ -122.950078312999921, 49.214213805000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130492771", "BldgCostT": "83849157", "sL_LossRatio": "0.687945251159548", "sL_AssetLoss": "1319480", "sL_BldgLoss": "907730", "sL_StrLoss": "372230", "sL_NStrLoss": "535500", "sL_ContLoss": "411750", "geom_point": "0101000020E61000000129FBF8D5BC5EC0FF27E221CA9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947264215999951, 49.217834191000073 ], [ -122.947890491999914, 49.216492399000067 ], [ -122.948506825, 49.216991910000083 ], [ -122.949033879999945, 49.21671594500004 ], [ -122.951562785999954, 49.215391908000136 ], [ -122.95208163699999, 49.215781505000074 ], [ -122.952624993999933, 49.216189503000059 ], [ -122.953140651999931, 49.216599288000062 ], [ -122.953669868999924, 49.217019902000068 ], [ -122.951813643999941, 49.218052987000078 ], [ -122.951539666999963, 49.218316416000093 ], [ -122.951117735999944, 49.218295875000045 ], [ -122.949992242999954, 49.218241087000109 ], [ -122.949169103999949, 49.218192600000059 ], [ -122.948465016999961, 49.218088898000111 ], [ -122.947264215999951, 49.217834191000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239056657", "BldgCostT": "157256236", "sL_LossRatio": "0.747801507537688", "sL_AssetLoss": "1846720", "sL_BldgLoss": "1380980", "sL_StrLoss": "659600", "sL_NStrLoss": "721380", "sL_ContLoss": "465740", "geom_point": "0101000020E61000008BEABEAD85BC5EC073BB2B169A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.944753215, 49.215256685000092 ], [ -122.944031727999928, 49.214707401000062 ], [ -122.943595216999967, 49.214937390000031 ], [ -122.943072394999902, 49.214519900000042 ], [ -122.94419458699997, 49.213915641000071 ], [ -122.94544851199997, 49.213240409000022 ], [ -122.946409527999919, 49.213963699000026 ], [ -122.946849093999987, 49.214294484000078 ], [ -122.947610921999953, 49.214867184000092 ], [ -122.948124318999945, 49.215253094000097 ], [ -122.947069711, 49.215824204000086 ], [ -122.94778760399997, 49.216408403000059 ], [ -122.947890491999914, 49.216492399000067 ], [ -122.947264215999951, 49.217834191000073 ], [ -122.945859093999943, 49.217432203000044 ], [ -122.94464468699999, 49.217134691000084 ], [ -122.944176204999934, 49.217038496000114 ], [ -122.943316803999949, 49.216769995000085 ], [ -122.943016678000021, 49.216621169000085 ], [ -122.942840900999911, 49.216533988000023 ], [ -122.94294712099996, 49.216422603000105 ], [ -122.944845210999944, 49.215380900000049 ], [ -122.944753215, 49.215256685000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202298280", "BldgCostT": "132158602", "sL_LossRatio": "0.762561533489135", "sL_AssetLoss": "1608880", "sL_BldgLoss": "1226870", "sL_StrLoss": "515460", "sL_NStrLoss": "711410", "sL_ContLoss": "382010", "geom_point": "0101000020E61000009C45CDFC8FBC5EC0FCEE3588FF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.945417389999946, 49.219680913000104 ], [ -122.944680704999939, 49.219090703000099 ], [ -122.943905005999937, 49.21846871500005 ], [ -122.945859093999943, 49.217432203000044 ], [ -122.947264215999951, 49.217834191000073 ], [ -122.948465016999961, 49.218088898000111 ], [ -122.947835912999921, 49.21936829 ], [ -122.947622106999958, 49.219531712000027 ], [ -122.946183000999952, 49.220290901000091 ], [ -122.945417389999946, 49.219680913000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51774729", "BldgCostT": "32139858", "sL_LossRatio": "0.692360415458428", "sL_AssetLoss": "758680", "sL_BldgLoss": "525280", "sL_StrLoss": "231950", "sL_NStrLoss": "293330", "sL_ContLoss": "233400", "geom_point": "0101000020E61000009ECDAACF55BC5EC06F9F9FF3E49B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940095193999952, 49.21800290400008 ], [ -122.942706509999979, 49.216637392000081 ], [ -122.942840900999911, 49.216533988000023 ], [ -122.943016678000021, 49.216621169000085 ], [ -122.943316803999949, 49.216769995000085 ], [ -122.944176204999934, 49.217038496000114 ], [ -122.94464468699999, 49.217134691000084 ], [ -122.945859093999943, 49.217432203000044 ], [ -122.943905005999937, 49.21846871500005 ], [ -122.943130013999934, 49.218878197000052 ], [ -122.941976392999933, 49.219491511000086 ], [ -122.940095193999952, 49.21800290400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85295499", "BldgCostT": "55779999", "sL_LossRatio": "0.703819505843394", "sL_AssetLoss": "1244140", "sL_BldgLoss": "875650", "sL_StrLoss": "389880", "sL_NStrLoss": "485770", "sL_ContLoss": "368490", "geom_point": "0101000020E610000062CDA7124EBC5EC03528ED4F5A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.943130013999934, 49.218878197000052 ], [ -122.943905005999937, 49.21846871500005 ], [ -122.944680704999939, 49.219090703000099 ], [ -122.945417389999946, 49.219680913000104 ], [ -122.94350389099999, 49.220704094000084 ], [ -122.944263206999963, 49.221305805000107 ], [ -122.945049489999974, 49.221934413000042 ], [ -122.943404496999946, 49.222819284000096 ], [ -122.94322670899993, 49.22291339200013 ], [ -122.940994005999968, 49.224089646000046 ], [ -122.93997949499996, 49.223299591000114 ], [ -122.93947850099994, 49.222923190000053 ], [ -122.939289397, 49.222772816000052 ], [ -122.938603983999911, 49.222237104000044 ], [ -122.938689127, 49.222154004000068 ], [ -122.940627077999949, 49.221137806000137 ], [ -122.940908313999969, 49.221077399000073 ], [ -122.942749781999964, 49.220108 ], [ -122.941976392999933, 49.219491511000086 ], [ -122.943130013999934, 49.218878197000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160415084", "BldgCostT": "107293334", "sL_LossRatio": "0.759767018752933", "sL_AssetLoss": "1555490", "sL_BldgLoss": "1181810", "sL_StrLoss": "543130", "sL_NStrLoss": "638680", "sL_ContLoss": "373680", "geom_point": "0101000020E6100000E47B67301DBC5EC0319224A52C9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.939495801999939, 49.21832497200009 ], [ -122.940095193999952, 49.21800290400008 ], [ -122.941976392999933, 49.219491511000086 ], [ -122.942749781999964, 49.220108 ], [ -122.940908313999969, 49.221077399000073 ], [ -122.940627077999949, 49.221137806000137 ], [ -122.938689127, 49.222154004000068 ], [ -122.938603983999911, 49.222237104000044 ], [ -122.937843395999948, 49.221656107000065 ], [ -122.93698381099999, 49.221016398000138 ], [ -122.936129682999976, 49.2203749950001 ], [ -122.935711514999966, 49.22005680400013 ], [ -122.93676739599999, 49.219594008000072 ], [ -122.936962390999895, 49.219509502000051 ], [ -122.93772103699996, 49.219178782000036 ], [ -122.937841400999901, 49.219126280000097 ], [ -122.938176620999968, 49.218973708000128 ], [ -122.938906983999971, 49.218641289000082 ], [ -122.93933815799997, 49.218409645000079 ], [ -122.939495801999939, 49.21832497200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82915372", "BldgCostT": "52853705", "sL_LossRatio": "0.677720287881735", "sL_AssetLoss": "1285250", "sL_BldgLoss": "871040", "sL_StrLoss": "374310", "sL_NStrLoss": "496730", "sL_ContLoss": "414210", "geom_point": "0101000020E61000007688B983DCBB5EC0E68963345D9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.934944508999962, 49.222110601000054 ], [ -122.934104996999935, 49.221456990000014 ], [ -122.932091895999946, 49.222528587000042 ], [ -122.931293710999938, 49.221894179000046 ], [ -122.933303575999972, 49.22082969300002 ], [ -122.934679628999945, 49.220101696000043 ], [ -122.935321890999916, 49.219761901000076 ], [ -122.935711514999966, 49.22005680400013 ], [ -122.936129682999976, 49.2203749950001 ], [ -122.93698381099999, 49.221016398000138 ], [ -122.937843395999948, 49.221656107000065 ], [ -122.938603983999911, 49.222237104000044 ], [ -122.938528813999937, 49.222337697000086 ], [ -122.9365317099999, 49.223394500000055 ], [ -122.93574519, 49.222769404000083 ], [ -122.934944508999962, 49.222110601000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184349000", "BldgCostT": "118910000", "sL_LossRatio": "0.697475423455024", "sL_AssetLoss": "2166700", "sL_BldgLoss": "1511220", "sL_StrLoss": "655450", "sL_NStrLoss": "855770", "sL_ContLoss": "655480", "geom_point": "0101000020E610000027E8EE21FEBB5EC08BC6EB0BB29C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.933743, 49.22384131200004 ], [ -122.93574519, 49.222769404000083 ], [ -122.9365317099999, 49.223394500000055 ], [ -122.938528813999937, 49.222337697000086 ], [ -122.938603983999911, 49.222237104000044 ], [ -122.939289397, 49.222772816000052 ], [ -122.93947850099994, 49.222923190000053 ], [ -122.93997949499996, 49.223299591000114 ], [ -122.940994005999968, 49.224089646000046 ], [ -122.937081313999954, 49.226175810000029 ], [ -122.936838186000017, 49.22617791200004 ], [ -122.936620114999982, 49.226112271000055 ], [ -122.936401028999967, 49.225938749000065 ], [ -122.935843870999946, 49.22549743400009 ], [ -122.935346290999973, 49.22511210699999 ], [ -122.934521587999939, 49.224461702000021 ], [ -122.933743, 49.22384131200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201366500", "BldgCostT": "126889015", "sL_LossRatio": "0.689651582768328", "sL_AssetLoss": "2209420", "sL_BldgLoss": "1523730", "sL_StrLoss": "666670", "sL_NStrLoss": "857060", "sL_ContLoss": "685690", "geom_point": "0101000020E6100000885794D0A5BB5EC03FAB9A5A959C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.928423093999953, 49.223412403000026 ], [ -122.931293710999938, 49.221894179000046 ], [ -122.932091895999946, 49.222528587000042 ], [ -122.934104996999935, 49.221456990000014 ], [ -122.934944508999962, 49.222110601000054 ], [ -122.93574519, 49.222769404000083 ], [ -122.933743, 49.22384131200004 ], [ -122.933268428999938, 49.224088648000063 ], [ -122.93259545299999, 49.224439446000126 ], [ -122.931823691999966, 49.224841706000063 ], [ -122.93083972099997, 49.225335300000033 ], [ -122.930513702, 49.225075506000046 ], [ -122.930429125999964, 49.225008183000071 ], [ -122.930044206, 49.224701800000112 ], [ -122.929549482999988, 49.224335505000056 ], [ -122.929229010000014, 49.224054303000116 ], [ -122.929072920999914, 49.223929991000013 ], [ -122.928609581, 49.223560989000113 ], [ -122.928423093999953, 49.223412403000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85173583", "BldgCostT": "54223333", "sL_LossRatio": "0.690391459074733", "sL_AssetLoss": "1435910", "sL_BldgLoss": "991340", "sL_StrLoss": "419760", "sL_NStrLoss": "571580", "sL_ContLoss": "444570", "geom_point": "0101000020E610000062CD6D67C4BB5EC06D3F9D1BE89C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93194250599997, 49.226210582000078 ], [ -122.931655004999953, 49.225981900000122 ], [ -122.931475117, 49.225837099000039 ], [ -122.931243041999949, 49.225653828000091 ], [ -122.93083972099997, 49.225335300000033 ], [ -122.931823691999966, 49.224841706000063 ], [ -122.93259545299999, 49.224439446000126 ], [ -122.933268428999938, 49.224088648000063 ], [ -122.933743, 49.22384131200004 ], [ -122.934521587999939, 49.224461702000021 ], [ -122.935346290999973, 49.22511210699999 ], [ -122.935843870999946, 49.22549743400009 ], [ -122.936401028999967, 49.225938749000065 ], [ -122.936620114999982, 49.226112271000055 ], [ -122.936838186000017, 49.22617791200004 ], [ -122.937081313999954, 49.226175810000029 ], [ -122.936782527, 49.226334897000122 ], [ -122.933985829999955, 49.227835553000041 ], [ -122.93340268499999, 49.227372108000104 ], [ -122.932965882999952, 49.227023706000054 ], [ -122.93247020299998, 49.226630279000048 ], [ -122.932084445999962, 49.226323456000095 ], [ -122.93194250599997, 49.226210582000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155638333", "BldgCostT": "100498333", "sL_LossRatio": "0.71957436078262", "sL_AssetLoss": "1931307", "sL_BldgLoss": "1389719", "sL_StrLoss": "655409", "sL_NStrLoss": "734310", "sL_ContLoss": "541588", "geom_point": "0101000020E61000000B40F5728CBB5EC0C499D323159D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.930110581999926, 49.229158601000087 ], [ -122.929130489999949, 49.228387507000043 ], [ -122.928685561999941, 49.228035777000088 ], [ -122.928172901999943, 49.227630515000087 ], [ -122.927668277999942, 49.227232733000086 ], [ -122.927209987999944, 49.226871505000076 ], [ -122.926724484, 49.226488447000065 ], [ -122.926257505999956, 49.226119994000079 ], [ -122.929549482999988, 49.224335505000056 ], [ -122.930044206, 49.224701800000112 ], [ -122.930429125999964, 49.225008183000071 ], [ -122.930513702, 49.225075506000046 ], [ -122.93083972099997, 49.225335300000033 ], [ -122.931243041999949, 49.225653828000091 ], [ -122.931475117, 49.225837099000039 ], [ -122.931655004999953, 49.225981900000122 ], [ -122.93194250599997, 49.226210582000078 ], [ -122.932084445999962, 49.226323456000095 ], [ -122.93247020299998, 49.226630279000048 ], [ -122.932965882999952, 49.227023706000054 ], [ -122.93340268499999, 49.227372108000104 ], [ -122.933985829999955, 49.227835553000041 ], [ -122.934350921999965, 49.228127879000056 ], [ -122.934430421999963, 49.228212054000075 ], [ -122.934466392999937, 49.228250085000035 ], [ -122.934468687999953, 49.22827039500006 ], [ -122.934482008999979, 49.228388405000075 ], [ -122.934421192999963, 49.228539814000051 ], [ -122.934136783999946, 49.228848761 ], [ -122.934125412999919, 49.228861104000067 ], [ -122.93405840599992, 49.228981707000038 ], [ -122.934057210999981, 49.229132953000025 ], [ -122.933886462999951, 49.229008814000103 ], [ -122.93368026399996, 49.228858900000077 ], [ -122.931878829000013, 49.229659639000026 ], [ -122.931140297999917, 49.22998790300008 ], [ -122.930955214, 49.229838846000085 ], [ -122.930110581999926, 49.229158601000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166678038", "BldgCostT": "110093046", "sL_LossRatio": "0.729657147037002", "sL_AssetLoss": "1913940", "sL_BldgLoss": "1396520", "sL_StrLoss": "667840", "sL_NStrLoss": "728680", "sL_ContLoss": "517420", "geom_point": "0101000020E61000007822D2800BBC5EC03572BC86099D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.937081313999954, 49.226175810000029 ], [ -122.940994005999968, 49.224089646000046 ], [ -122.941668191999952, 49.224608805000088 ], [ -122.941817839999885, 49.224729821000075 ], [ -122.94182649899993, 49.224736822000111 ], [ -122.941999486999919, 49.224876678000051 ], [ -122.94217247200001, 49.225016534000112 ], [ -122.94291290299995, 49.225615192000134 ], [ -122.942361068999929, 49.225899357000046 ], [ -122.938989415999927, 49.227635386000024 ], [ -122.934827015999957, 49.229774789000039 ], [ -122.934681117999943, 49.229655745000031 ], [ -122.934216512, 49.229276682000027 ], [ -122.934057076999949, 49.229146597000117 ], [ -122.934057210999981, 49.229132953000025 ], [ -122.93405840599992, 49.228981707000038 ], [ -122.934125412999919, 49.228861104000067 ], [ -122.934136783999946, 49.228848761 ], [ -122.934421192999963, 49.228539814000051 ], [ -122.934482008999979, 49.228388405000075 ], [ -122.934468687999953, 49.22827039500006 ], [ -122.934466392999937, 49.228250085000035 ], [ -122.934430421999963, 49.228212054000075 ], [ -122.934350921999965, 49.228127879000056 ], [ -122.933985829999955, 49.227835553000041 ], [ -122.936782527, 49.226334897000122 ], [ -122.937081313999954, 49.226175810000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245383084", "BldgCostT": "155028334", "sL_LossRatio": "0.721687292183962", "sL_AssetLoss": "2413192", "sL_BldgLoss": "1741570", "sL_StrLoss": "766750", "sL_NStrLoss": "974820", "sL_ContLoss": "671622", "geom_point": "0101000020E61000005D0F3E1821BC5EC044CF909E609D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.942361068999929, 49.225899357000046 ], [ -122.94291290299995, 49.225615192000134 ], [ -122.943230097999944, 49.225885502000082 ], [ -122.944015182999962, 49.226533002000039 ], [ -122.944201023999966, 49.226693165000015 ], [ -122.943731795999923, 49.22693570800007 ], [ -122.943585236999965, 49.227011454000099 ], [ -122.943194784999918, 49.227213286000037 ], [ -122.940317327999935, 49.22869198500009 ], [ -122.940965905999946, 49.229208999000129 ], [ -122.9416217079999, 49.229731712000074 ], [ -122.942909285999946, 49.230756505000045 ], [ -122.942250998999938, 49.231120689000143 ], [ -122.94196929599994, 49.231270291000044 ], [ -122.941137510999951, 49.231704407000116 ], [ -122.940721566999983, 49.231926500000149 ], [ -122.93870799699999, 49.232589486000037 ], [ -122.938296709999946, 49.232580425000059 ], [ -122.938283014999925, 49.232580095000046 ], [ -122.938118877999955, 49.232545231000074 ], [ -122.937940379999958, 49.232507302000023 ], [ -122.937678216, 49.232382712000074 ], [ -122.937445817999944, 49.23220050300003 ], [ -122.937194360999939, 49.231798759000107 ], [ -122.937111696999949, 49.23166670500008 ], [ -122.936844803999946, 49.231383403000102 ], [ -122.936816155999963, 49.231359771000029 ], [ -122.936161213999981, 49.230819904000072 ], [ -122.934827015999957, 49.229774789000039 ], [ -122.938989415999927, 49.227635386000024 ], [ -122.942361068999929, 49.225899357000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191980751", "BldgCostT": "115825001", "sL_LossRatio": "0.694637121071398", "sL_AssetLoss": "2207210", "sL_BldgLoss": "1533210", "sL_StrLoss": "695110", "sL_NStrLoss": "838100", "sL_ContLoss": "674000", "geom_point": "0101000020E61000004098465960BC5EC09FCE15A5849D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.943731795999923, 49.22693570800007 ], [ -122.944201023999966, 49.226693165000015 ], [ -122.945116508999959, 49.227467692000054 ], [ -122.945462388999928, 49.227761305000051 ], [ -122.945734392999938, 49.227987889000168 ], [ -122.946401789999967, 49.228548304000121 ], [ -122.946692067999891, 49.228790979000081 ], [ -122.947228188999944, 49.229239211000028 ], [ -122.94826261299994, 49.230106301000077 ], [ -122.946479787999934, 49.231015303000063 ], [ -122.944562557, 49.23198492900007 ], [ -122.944326844, 49.232104144000047 ], [ -122.944232991999968, 49.232151608000059 ], [ -122.943997407999916, 49.232331406000085 ], [ -122.943856513999918, 49.232531007000098 ], [ -122.943780778999894, 49.232742405000074 ], [ -122.943787123999982, 49.23295970700007 ], [ -122.943813635999973, 49.233081114000107 ], [ -122.943906294999962, 49.2335053830001 ], [ -122.943428280999981, 49.23361339500007 ], [ -122.942990115999919, 49.233761404000084 ], [ -122.942631209999917, 49.233937703000038 ], [ -122.9422069, 49.234186882000095 ], [ -122.941795905, 49.234485996000053 ], [ -122.941414612999935, 49.23468868700008 ], [ -122.9410106, 49.234797101000062 ], [ -122.940714281999973, 49.23442534600008 ], [ -122.940654187999939, 49.234349991000038 ], [ -122.939879935999926, 49.233762210000066 ], [ -122.939644470999951, 49.233583424000074 ], [ -122.939124406999966, 49.233188590000097 ], [ -122.938902416999952, 49.232910301000032 ], [ -122.938877046999949, 49.232868465000116 ], [ -122.93870799699999, 49.232589486000037 ], [ -122.940721566999983, 49.231926500000149 ], [ -122.941137510999951, 49.231704407000116 ], [ -122.94196929599994, 49.231270291000044 ], [ -122.942250998999938, 49.231120689000143 ], [ -122.942909285999946, 49.230756505000045 ], [ -122.9416217079999, 49.229731712000074 ], [ -122.940965905999946, 49.229208999000129 ], [ -122.940317327999935, 49.22869198500009 ], [ -122.943194784999918, 49.227213286000037 ], [ -122.943585236999965, 49.227011454000099 ], [ -122.943731795999923, 49.22693570800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120933750", "BldgCostT": "78510000", "sL_LossRatio": "0.716841296703033", "sL_AssetLoss": "1666380", "sL_BldgLoss": "1194530", "sL_StrLoss": "558950", "sL_NStrLoss": "635580", "sL_ContLoss": "471850", "geom_point": "0101000020E61000009D692D9297BC5EC0E1C67773029D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94670075599997, 49.224140464000072 ], [ -122.94735262099999, 49.223796907000114 ], [ -122.948082504999931, 49.224387886000102 ], [ -122.947632706999968, 49.224626169000061 ], [ -122.946958877999947, 49.224983111000057 ], [ -122.949715025999964, 49.227217346000025 ], [ -122.950230393999945, 49.227635107000033 ], [ -122.948687392999986, 49.228447197000023 ], [ -122.947228188999944, 49.229239211000028 ], [ -122.946692067999891, 49.228790979000081 ], [ -122.946401789999967, 49.228548304000121 ], [ -122.945734392999938, 49.227987889000168 ], [ -122.945462388999928, 49.227761305000051 ], [ -122.945116508999959, 49.227467692000054 ], [ -122.944201023999966, 49.226693165000015 ], [ -122.944015182999962, 49.226533002000039 ], [ -122.943230097999944, 49.225885502000082 ], [ -122.944398507999921, 49.225256493000067 ], [ -122.9447948, 49.225055093000044 ], [ -122.945774198999942, 49.224628787000064 ], [ -122.946477210999902, 49.224258287000048 ], [ -122.9464866799999, 49.224253302000115 ], [ -122.94669128699995, 49.22414545100002 ], [ -122.94670075599997, 49.224140464000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215431017", "BldgCostT": "140790229", "sL_LossRatio": "0.732915594408856", "sL_AssetLoss": "2358730", "sL_BldgLoss": "1728750", "sL_StrLoss": "765650", "sL_NStrLoss": "963100", "sL_ContLoss": "629980", "geom_point": "0101000020E6100000BF73396F6DBC5EC041A91842A99C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94291290299995, 49.225615192000134 ], [ -122.94217247200001, 49.225016534000112 ], [ -122.941999486999919, 49.224876678000051 ], [ -122.94182649899993, 49.224736822000111 ], [ -122.941817839999885, 49.224729821000075 ], [ -122.941668191999952, 49.224608805000088 ], [ -122.940994005999968, 49.224089646000046 ], [ -122.94322670899993, 49.22291339200013 ], [ -122.943404496999946, 49.222819284000096 ], [ -122.945049489999974, 49.221934413000042 ], [ -122.945810701999932, 49.222550611000074 ], [ -122.945954209999982, 49.222666625000059 ], [ -122.946580983999979, 49.223173295000038 ], [ -122.94735262099999, 49.223796907000114 ], [ -122.94670075599997, 49.224140464000072 ], [ -122.94669128699995, 49.22414545100002 ], [ -122.9464866799999, 49.224253302000115 ], [ -122.946477210999902, 49.224258287000048 ], [ -122.945774198999942, 49.224628787000064 ], [ -122.9447948, 49.225055093000044 ], [ -122.944398507999921, 49.225256493000067 ], [ -122.943230097999944, 49.225885502000082 ], [ -122.94291290299995, 49.225615192000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124086250", "BldgCostT": "81010000", "sL_LossRatio": "0.709913592969661", "sL_AssetLoss": "1766060", "sL_BldgLoss": "1253750", "sL_StrLoss": "573530", "sL_NStrLoss": "680220", "sL_ContLoss": "512310", "geom_point": "0101000020E610000091BAF0C5CFBC5EC0B5587A029B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952661737999946, 49.225671471000112 ], [ -122.949866303999926, 49.223417593000065 ], [ -122.949058469999926, 49.223859231000098 ], [ -122.948338491999934, 49.224252791000104 ], [ -122.948082504999931, 49.224387886000102 ], [ -122.94735262099999, 49.223796907000114 ], [ -122.946580983999979, 49.223173295000038 ], [ -122.945954209999982, 49.222666625000059 ], [ -122.945810701999932, 49.222550611000074 ], [ -122.945049489999974, 49.221934413000042 ], [ -122.946958893999977, 49.220911988000125 ], [ -122.947721608, 49.221525407000087 ], [ -122.948517190999937, 49.222160611000085 ], [ -122.949286503999971, 49.222778699000102 ], [ -122.949997197999963, 49.223347489000098 ], [ -122.950357546999953, 49.223149655000071 ], [ -122.950844588999971, 49.222882303000048 ], [ -122.951354870000017, 49.222613843000047 ], [ -122.951868311999988, 49.222343694000067 ], [ -122.95469012399991, 49.224630004000097 ], [ -122.95517253, 49.225020808000032 ], [ -122.954610493999937, 49.225321993000115 ], [ -122.954150388999963, 49.225576606000068 ], [ -122.953250595999961, 49.226025005000089 ], [ -122.953056601999933, 49.225989797000032 ], [ -122.952661737999946, 49.225671471000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67036833", "BldgCostT": "44553333", "sL_LossRatio": "0.730770593445527", "sL_AssetLoss": "846750", "sL_BldgLoss": "618780", "sL_StrLoss": "286520", "sL_NStrLoss": "332260", "sL_ContLoss": "227970", "geom_point": "0101000020E61000007F807BBFCDBC5EC0D7E2951CDE9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.949058469999926, 49.223859231000098 ], [ -122.949866303999926, 49.223417593000065 ], [ -122.952661737999946, 49.225671471000112 ], [ -122.953056601999933, 49.225989797000032 ], [ -122.953250595999961, 49.226025005000089 ], [ -122.951650796999928, 49.226868900000078 ], [ -122.951633846999982, 49.226878036000059 ], [ -122.950230393999945, 49.227635107000033 ], [ -122.949715025999964, 49.227217346000025 ], [ -122.946958877999947, 49.224983111000057 ], [ -122.947632706999968, 49.224626169000061 ], [ -122.948082504999931, 49.224387886000102 ], [ -122.948338491999934, 49.224252791000104 ], [ -122.949058469999926, 49.223859231000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108124999", "BldgCostT": "71359999", "sL_LossRatio": "0.728495229967387", "sL_AssetLoss": "1476405", "sL_BldgLoss": "1075554", "sL_StrLoss": "504544", "sL_NStrLoss": "571010", "sL_ContLoss": "400851", "geom_point": "0101000020E61000004FBDC15902BD5EC0CE144A91429D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.951263781999941, 49.230922696000071 ], [ -122.949969798000012, 49.229887094000077 ], [ -122.949352036999969, 49.230215429000118 ], [ -122.948767694999944, 49.230526003000122 ], [ -122.94826261299994, 49.230106301000077 ], [ -122.947228188999944, 49.229239211000028 ], [ -122.948687392999986, 49.228447197000023 ], [ -122.950230393999945, 49.227635107000033 ], [ -122.951633846999982, 49.226878036000059 ], [ -122.951650796999928, 49.226868900000078 ], [ -122.953250595999961, 49.226025005000089 ], [ -122.954150388999963, 49.225576606000068 ], [ -122.954610493999937, 49.225321993000115 ], [ -122.955087497999955, 49.225709588000015 ], [ -122.956187519999972, 49.226603386000107 ], [ -122.95854408699995, 49.228498701000035 ], [ -122.957647331999951, 49.228986885000083 ], [ -122.957526093999888, 49.229052907000025 ], [ -122.956959583999932, 49.229275597000019 ], [ -122.95678979399996, 49.229311291000016 ], [ -122.957064018999944, 49.230133489000075 ], [ -122.956992612999926, 49.230280097000083 ], [ -122.956767706999983, 49.230528688000049 ], [ -122.956497692999918, 49.23066790400005 ], [ -122.95610278599996, 49.230764001000118 ], [ -122.955378672999956, 49.230892422000117 ], [ -122.954880413999916, 49.23098079500005 ], [ -122.954754096999949, 49.230667300000057 ], [ -122.954627208999966, 49.230508796000017 ], [ -122.954447404999939, 49.230361410000079 ], [ -122.954212909999953, 49.230272793000104 ], [ -122.953926705999947, 49.230262005000085 ], [ -122.953730689999972, 49.230298815000019 ], [ -122.952399898999943, 49.231016092000068 ], [ -122.952138403999953, 49.23108979600012 ], [ -122.951810698999964, 49.231103091000115 ], [ -122.951530076, 49.231048298000047 ], [ -122.951263781999941, 49.230922696000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175937669", "BldgCostT": "119262625", "sL_LossRatio": "0.755594612165392", "sL_AssetLoss": "2022705", "sL_BldgLoss": "1528345", "sL_StrLoss": "649775", "sL_NStrLoss": "878570", "sL_ContLoss": "494360", "geom_point": "0101000020E61000009EF88B555ABD5EC03E075C78DA9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.960786214000024, 49.222056710000089 ], [ -122.961034010999938, 49.22198351 ], [ -122.961005390999958, 49.222986310000088 ], [ -122.961005362999984, 49.223469136000091 ], [ -122.96100531799999, 49.223951995000085 ], [ -122.961004894999959, 49.224777196000147 ], [ -122.961008247999985, 49.225124294000068 ], [ -122.961011589999984, 49.225471104000036 ], [ -122.961011007999929, 49.225795400000045 ], [ -122.961015681999982, 49.226266717000044 ], [ -122.961022414999903, 49.226942500000085 ], [ -122.960946311999962, 49.227140409000071 ], [ -122.960337389999893, 49.227479811000109 ], [ -122.959746514999921, 49.227809193000084 ], [ -122.959140930999979, 49.228156448000064 ], [ -122.95854408699995, 49.228498701000035 ], [ -122.956187519999972, 49.226603386000107 ], [ -122.955087497999955, 49.225709588000015 ], [ -122.954610493999937, 49.225321993000115 ], [ -122.95517253, 49.225020808000032 ], [ -122.955850709999964, 49.224663289000091 ], [ -122.956177407, 49.22449689500008 ], [ -122.95714420899999, 49.223988207000041 ], [ -122.957560975999982, 49.223764802000112 ], [ -122.958138342999973, 49.223459702000099 ], [ -122.95903699299997, 49.222984798000049 ], [ -122.959856334999969, 49.222550064000075 ], [ -122.960786214000024, 49.222056710000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43085084", "BldgCostT": "28978334", "sL_LossRatio": "0.733507052802397", "sL_AssetLoss": "640880", "sL_BldgLoss": "470090", "sL_StrLoss": "218240", "sL_NStrLoss": "251850", "sL_ContLoss": "170790", "geom_point": "0101000020E6100000B24C9E3653BD5EC041DBE69D759C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.957546895999883, 49.221215800000081 ], [ -122.961001298999918, 49.221224993000099 ], [ -122.96101351599998, 49.221508158000077 ], [ -122.961034010999938, 49.22198351 ], [ -122.960786214000024, 49.222056710000089 ], [ -122.959856334999969, 49.222550064000075 ], [ -122.95903699299997, 49.222984798000049 ], [ -122.958138342999973, 49.223459702000099 ], [ -122.957560975999982, 49.223764802000112 ], [ -122.95714420899999, 49.223988207000041 ], [ -122.956593411999947, 49.223448304000073 ], [ -122.95600360899995, 49.222981197000131 ], [ -122.954901204999928, 49.222103300000136 ], [ -122.957553492999978, 49.22209889500008 ], [ -122.957546895999883, 49.221215800000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92063584", "BldgCostT": "60393334", "sL_LossRatio": "0.724982943371995", "sL_AssetLoss": "1245850", "sL_BldgLoss": "903220", "sL_StrLoss": "404950", "sL_NStrLoss": "498270", "sL_ContLoss": "342630", "geom_point": "0101000020E610000041B170ED9FBD5EC0554D8C3C7B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.964103051999956, 49.220212973000052 ], [ -122.964759715999932, 49.220215597000049 ], [ -122.964757974999912, 49.220627820000139 ], [ -122.964755891999971, 49.221112711000025 ], [ -122.964752846999929, 49.221545340000027 ], [ -122.964750095999975, 49.221936889000098 ], [ -122.964773796999964, 49.223946508000019 ], [ -122.964769820999948, 49.22482740700007 ], [ -122.963948064999954, 49.224820129000094 ], [ -122.961682569999951, 49.224800038000161 ], [ -122.961172512999923, 49.224795512000078 ], [ -122.961004894999959, 49.224777196000147 ], [ -122.96100531799999, 49.223951995000085 ], [ -122.961005362999984, 49.223469136000091 ], [ -122.961005390999958, 49.222986310000088 ], [ -122.961034010999938, 49.22198351 ], [ -122.96101351599998, 49.221508158000077 ], [ -122.961001298999918, 49.221224993000099 ], [ -122.960994104999926, 49.22108330800004 ], [ -122.960994849999921, 49.220644623000069 ], [ -122.960995575999902, 49.220200498000054 ], [ -122.964103051999956, 49.220212973000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89021083", "BldgCostT": "59218333", "sL_LossRatio": "0.724316749532888", "sL_AssetLoss": "1263080", "sL_BldgLoss": "914870", "sL_StrLoss": "404410", "sL_NStrLoss": "510460", "sL_ContLoss": "348210", "geom_point": "0101000020E6100000DF4CAF41DDBD5EC0F1876E0FA59C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.96706875699995, 49.221119910000034 ], [ -122.970764199999948, 49.221131281000083 ], [ -122.970769791999913, 49.221529087000086 ], [ -122.970773901999976, 49.221824303000076 ], [ -122.970826190999958, 49.221947398000083 ], [ -122.967769497999896, 49.221944393000065 ], [ -122.967771139999954, 49.224775548000054 ], [ -122.967772498999977, 49.227089293000098 ], [ -122.966263502999951, 49.227073898000057 ], [ -122.965485303999955, 49.22706999400004 ], [ -122.964757508999952, 49.227073889000039 ], [ -122.964762442999984, 49.225818159000056 ], [ -122.964762504999939, 49.225799294000041 ], [ -122.964766224999948, 49.225305405000078 ], [ -122.964769820999948, 49.22482740700007 ], [ -122.964773796999964, 49.223946508000019 ], [ -122.964750095999975, 49.221936889000098 ], [ -122.964752846999929, 49.221545340000027 ], [ -122.964755891999971, 49.221112711000025 ], [ -122.965461934999922, 49.221114903000107 ], [ -122.96706875699995, 49.221119910000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128515500", "BldgCostT": "87840000", "sL_LossRatio": "0.765120173364854", "sL_AssetLoss": "1421280", "sL_BldgLoss": "1087450", "sL_StrLoss": "491230", "sL_NStrLoss": "596220", "sL_ContLoss": "333830", "geom_point": "0101000020E61000001F10D72002BE5EC02F45E2B3AF9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.967769497999896, 49.221944393000065 ], [ -122.970826190999958, 49.221947398000083 ], [ -122.970857791999933, 49.222052801000082 ], [ -122.970845194999924, 49.223402909000072 ], [ -122.970088916999913, 49.223389707000095 ], [ -122.969327312999965, 49.223376403000074 ], [ -122.96932016, 49.224784952000036 ], [ -122.969318989999962, 49.225018834000089 ], [ -122.969314556999919, 49.225891338000061 ], [ -122.969311493, 49.226500210000026 ], [ -122.969311603999969, 49.227087590000082 ], [ -122.96854802199999, 49.227088461000122 ], [ -122.967772498999977, 49.227089293000098 ], [ -122.967771139999954, 49.224775548000054 ], [ -122.967769497999896, 49.221944393000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81273956", "BldgCostT": "54372039", "sL_LossRatio": "0.716696690278456", "sL_AssetLoss": "1310080", "sL_BldgLoss": "938930", "sL_StrLoss": "415430", "sL_NStrLoss": "523500", "sL_ContLoss": "371150", "geom_point": "0101000020E6100000F0AC17222BBE5EC0B0C21482A89C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970857791999933, 49.222052801000082 ], [ -122.970826190999958, 49.221947398000083 ], [ -122.971605192, 49.221958490000112 ], [ -122.971959691, 49.221995501 ], [ -122.972122885999951, 49.222018105000075 ], [ -122.973325713999955, 49.222033901000046 ], [ -122.973331897999969, 49.222482978000059 ], [ -122.973365983999969, 49.224953786000086 ], [ -122.971990575999968, 49.224952615000099 ], [ -122.971976824999942, 49.224952602000087 ], [ -122.971671011999931, 49.224948507000065 ], [ -122.971416402999949, 49.224999993000033 ], [ -122.97113218599999, 49.225105516000035 ], [ -122.970835395999956, 49.225279091000083 ], [ -122.969311493, 49.226500210000026 ], [ -122.969314556999919, 49.225891338000061 ], [ -122.969318989999962, 49.225018834000089 ], [ -122.96932016, 49.224784952000036 ], [ -122.969327312999965, 49.223376403000074 ], [ -122.970088916999913, 49.223389707000095 ], [ -122.970845194999924, 49.223402909000072 ], [ -122.970857791999933, 49.222052801000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101987417", "BldgCostT": "66976667", "sL_LossRatio": "0.714852573102985", "sL_AssetLoss": "1474290", "sL_BldgLoss": "1053900", "sL_StrLoss": "475920", "sL_NStrLoss": "577980", "sL_ContLoss": "420390", "geom_point": "0101000020E6100000CF48422A5EBE5EC0914ED14FC09C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.973325713999955, 49.222033901000046 ], [ -122.976318494999987, 49.22202779100008 ], [ -122.976313955999942, 49.222483937000028 ], [ -122.976303310999981, 49.223547104000019 ], [ -122.976305299999979, 49.22492819800005 ], [ -122.976308661999923, 49.22539828599999 ], [ -122.976311795999919, 49.225840896000193 ], [ -122.976316623999963, 49.226757295000048 ], [ -122.975635114999974, 49.226760696000028 ], [ -122.971979908999984, 49.226778798000026 ], [ -122.971968487999916, 49.226332826000089 ], [ -122.971956715999909, 49.225870986000118 ], [ -122.971967074999952, 49.225397416000121 ], [ -122.971976824999942, 49.224952602000087 ], [ -122.971990575999968, 49.224952615000099 ], [ -122.973365983999969, 49.224953786000086 ], [ -122.973331897999969, 49.222482978000059 ], [ -122.973325713999955, 49.222033901000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178129916", "BldgCostT": "109166666", "sL_LossRatio": "0.696964591217793", "sL_AssetLoss": "2314680", "sL_BldgLoss": "1613250", "sL_StrLoss": "740280", "sL_NStrLoss": "872970", "sL_ContLoss": "701430", "geom_point": "0101000020E610000004F7988294BE5EC08FE901DAF39C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.97199721199999, 49.228617905000121 ], [ -122.976265964999953, 49.228609351000095 ], [ -122.976340199999981, 49.228609195000026 ], [ -122.976348389999941, 49.228222928000093 ], [ -122.97634954099999, 49.228168959000094 ], [ -122.976350106999945, 49.228141964000052 ], [ -122.97635150399999, 49.228076201000071 ], [ -122.97636329799991, 49.227663889000056 ], [ -122.976340172999954, 49.227214903000061 ], [ -122.976316623999963, 49.226757295000048 ], [ -122.976311795999919, 49.225840896000193 ], [ -122.976308661999923, 49.22539828599999 ], [ -122.976305299999979, 49.22492819800005 ], [ -122.976303310999981, 49.223547104000019 ], [ -122.976313955999942, 49.222483937000028 ], [ -122.976318494999987, 49.22202779100008 ], [ -122.979048393999975, 49.222011497000111 ], [ -122.979228312999979, 49.221989489000087 ], [ -122.979217806999898, 49.222376857 ], [ -122.979201799999942, 49.222967099000115 ], [ -122.979217303999974, 49.224943996000086 ], [ -122.980017211999922, 49.224944722000046 ], [ -122.980775281999982, 49.224945350000048 ], [ -122.980801723999932, 49.226121706000058 ], [ -122.980799191999949, 49.226352796000107 ], [ -122.980777304999933, 49.228385510000088 ], [ -122.980769497999958, 49.229109007000019 ], [ -122.980328490999966, 49.228986693000067 ], [ -122.980133300999967, 49.228926309 ], [ -122.97988199699995, 49.228887614 ], [ -122.979655415999957, 49.228852737000082 ], [ -122.979103015999925, 49.228767710000078 ], [ -122.978601033999922, 49.228774860000087 ], [ -122.978569909999948, 49.228775311000042 ], [ -122.978094683999942, 49.228819592 ], [ -122.977611695999926, 49.228942106000041 ], [ -122.977145358999934, 49.229114678000037 ], [ -122.977137475999939, 49.229114677000098 ], [ -122.97713747499995, 49.229117596000016 ], [ -122.976593211999898, 49.229319001000157 ], [ -122.976336259999968, 49.229384374000105 ], [ -122.973428867999971, 49.229383741000078 ], [ -122.973428848999944, 49.229422210000095 ], [ -122.971985499, 49.229387797000072 ], [ -122.971999792999938, 49.229104505000087 ], [ -122.97199721199999, 49.228617905000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125842083", "BldgCostT": "84213333", "sL_LossRatio": "0.738862712697066", "sL_AssetLoss": "1791280", "sL_BldgLoss": "1323510", "sL_StrLoss": "581110", "sL_NStrLoss": "742400", "sL_ContLoss": "467770", "geom_point": "0101000020E61000007513DFFD2FBE5EC029A40416239D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.967772086999958, 49.22930371300005 ], [ -122.967772187999969, 49.228823417000051 ], [ -122.967772498999977, 49.227089293000098 ], [ -122.96854802199999, 49.227088461000122 ], [ -122.969311603999969, 49.227087590000082 ], [ -122.969311493, 49.226500210000026 ], [ -122.970835395999956, 49.225279091000083 ], [ -122.97113218599999, 49.225105516000035 ], [ -122.971416402999949, 49.224999993000033 ], [ -122.971671011999931, 49.224948507000065 ], [ -122.971976824999942, 49.224952602000087 ], [ -122.971967074999952, 49.225397416000121 ], [ -122.971956715999909, 49.225870986000118 ], [ -122.971968487999916, 49.226332826000089 ], [ -122.971979908999984, 49.226778798000026 ], [ -122.975635114999974, 49.226760696000028 ], [ -122.976316623999963, 49.226757295000048 ], [ -122.976340172999954, 49.227214903000061 ], [ -122.97636329799991, 49.227663889000056 ], [ -122.97635150399999, 49.228076201000071 ], [ -122.976350106999945, 49.228141964000052 ], [ -122.97634954099999, 49.228168959000094 ], [ -122.976348389999941, 49.228222928000093 ], [ -122.976340199999981, 49.228609195000026 ], [ -122.976265964999953, 49.228609351000095 ], [ -122.97199721199999, 49.228617905000121 ], [ -122.971999792999938, 49.229104505000087 ], [ -122.971985499, 49.229387797000072 ], [ -122.97131620399999, 49.229376203000093 ], [ -122.970223098999924, 49.229297809000087 ], [ -122.96972827099998, 49.229284826000026 ], [ -122.969343206999952, 49.22927474600003 ], [ -122.969288295999917, 49.229273289000034 ], [ -122.9677904979999, 49.229303327000075 ], [ -122.967772086999958, 49.22930371300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142393667", "BldgCostT": "93871667", "sL_LossRatio": "0.720224326836166", "sL_AssetLoss": "1881897", "sL_BldgLoss": "1355388", "sL_StrLoss": "605688", "sL_NStrLoss": "749700", "sL_ContLoss": "526509", "geom_point": "0101000020E61000009F3E126109BF5EC0E2EB9D972B9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987392496, 49.229801399000081 ], [ -122.986734972999912, 49.229673097000081 ], [ -122.985713504999921, 49.229653605000095 ], [ -122.98490078899999, 49.229652494000113 ], [ -122.984551104, 49.229604911000088 ], [ -122.984070697999968, 49.229602204000095 ], [ -122.983256702999967, 49.229599721000035 ], [ -122.982696786999895, 49.229598016000111 ], [ -122.982412692, 49.229553192000054 ], [ -122.982065202999976, 49.229492979000028 ], [ -122.980908294999892, 49.229150134000079 ], [ -122.980769497999958, 49.229109007000019 ], [ -122.980777304999933, 49.228385510000088 ], [ -122.980799191999949, 49.226352796000107 ], [ -122.980801723999932, 49.226121706000058 ], [ -122.982414319999975, 49.226128999000089 ], [ -122.984061905999965, 49.226145388000106 ], [ -122.98573831299997, 49.226163497000073 ], [ -122.98656796099999, 49.226171780000122 ], [ -122.98739421599997, 49.226179989000045 ], [ -122.988930601, 49.226195895000082 ], [ -122.988940411999934, 49.226384505000091 ], [ -122.988935510999951, 49.226924787000058 ], [ -122.988939716999965, 49.22791858500009 ], [ -122.98894900399992, 49.228029687000124 ], [ -122.98890751, 49.228140202000098 ], [ -122.988902917999923, 49.229121108000058 ], [ -122.988861209999968, 49.229912701000082 ], [ -122.988156712999981, 49.229893891000081 ], [ -122.987690522999969, 49.229822301000077 ], [ -122.987392496, 49.229801399000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166187416", "BldgCostT": "98776666", "sL_LossRatio": "0.691217592521331", "sL_AssetLoss": "1949010", "sL_BldgLoss": "1347190", "sL_StrLoss": "607750", "sL_NStrLoss": "739440", "sL_ContLoss": "601820", "geom_point": "0101000020E6100000245050CC72BF5EC0B1049D39B99D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.991507805999944, 49.229918090000133 ], [ -122.994200986999886, 49.229923910000082 ], [ -122.994205372999957, 49.230419908000094 ], [ -122.994209688999902, 49.230913192000081 ], [ -122.994210672999941, 49.231463371000046 ], [ -122.994211504, 49.231903307000032 ], [ -122.994213010999886, 49.232410482000049 ], [ -122.994212896999926, 49.233407802000094 ], [ -122.994215876999974, 49.233901092000082 ], [ -122.994219021999967, 49.234416903000081 ], [ -122.993035538999919, 49.234411708000088 ], [ -122.992304206999975, 49.234408493000075 ], [ -122.991497091, 49.234403383000085 ], [ -122.990506180999972, 49.234397103000099 ], [ -122.989587808999971, 49.234399372000063 ], [ -122.988979240999953, 49.234400865000033 ], [ -122.98896547, 49.23440089000006 ], [ -122.988164817999944, 49.234403812000053 ], [ -122.98818798299996, 49.234269537000081 ], [ -122.988200424999931, 49.234197467000044 ], [ -122.988231882999983, 49.234015233000093 ], [ -122.988288887999929, 49.233685191000113 ], [ -122.988351822999903, 49.233320805000048 ], [ -122.988354933999943, 49.233303406000076 ], [ -122.988386830999914, 49.233126584000068 ], [ -122.98842083699995, 49.232938188000077 ], [ -122.988684091999957, 49.231478811000038 ], [ -122.988585794999963, 49.231469799000145 ], [ -122.988704104999925, 49.231364134000017 ], [ -122.98883854599994, 49.230593686000098 ], [ -122.988839016, 49.230590870000078 ], [ -122.988865415999967, 49.230439794000063 ], [ -122.988923867, 49.230095295000055 ], [ -122.988952878999982, 49.229924344000018 ], [ -122.988954386999964, 49.229915311000056 ], [ -122.990816760999948, 49.229916281000065 ], [ -122.990862606999912, 49.229916316000057 ], [ -122.991507805999944, 49.229918090000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184558842", "BldgCostT": "122914118", "sL_LossRatio": "0.745204080928763", "sL_AssetLoss": "1449670", "sL_BldgLoss": "1080300", "sL_StrLoss": "441110", "sL_NStrLoss": "639190", "sL_ContLoss": "369370", "geom_point": "0101000020E61000005408375B71BF5EC06EFAFDAC439D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988954386999964, 49.229915311000056 ], [ -122.988928890999915, 49.229914590000114 ], [ -122.988861209999968, 49.229912701000082 ], [ -122.988902917999923, 49.229121108000058 ], [ -122.98890751, 49.228140202000098 ], [ -122.98894900399992, 49.228029687000124 ], [ -122.988939716999965, 49.22791858500009 ], [ -122.988935510999951, 49.226924787000058 ], [ -122.98958943299999, 49.226928499000046 ], [ -122.991560701999916, 49.226939584000064 ], [ -122.991553648999982, 49.227358803000037 ], [ -122.991552673999976, 49.227415425000132 ], [ -122.991544318999971, 49.227912910000036 ], [ -122.994193185999961, 49.227923798000084 ], [ -122.994195113000018, 49.22841397800007 ], [ -122.994197822999936, 49.229111777000092 ], [ -122.994200986999886, 49.229923910000082 ], [ -122.991507805999944, 49.229918090000133 ], [ -122.990862606999912, 49.229916316000057 ], [ -122.990816760999948, 49.229916281000065 ], [ -122.988954386999964, 49.229915311000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92546917", "BldgCostT": "60636667", "sL_LossRatio": "0.781751370744904", "sL_AssetLoss": "691230", "sL_BldgLoss": "540370", "sL_StrLoss": "253000", "sL_NStrLoss": "287370", "sL_ContLoss": "150860", "geom_point": "0101000020E610000081F996FFB1BF5EC0DE92A0E84F9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.994193185999961, 49.227923798000084 ], [ -122.994790211999941, 49.227926904000107 ], [ -122.99509020499994, 49.227957813000039 ], [ -122.995103736999951, 49.227960668000016 ], [ -122.99532039799999, 49.228006488000069 ], [ -122.995716242999933, 49.228178672000112 ], [ -122.996121598999935, 49.228354995000089 ], [ -122.996378305999912, 49.228439604000087 ], [ -122.996387570999985, 49.229066870000111 ], [ -122.996400504999926, 49.229941887000102 ], [ -122.995159725999983, 49.22993175199999 ], [ -122.995055024999942, 49.229930895000102 ], [ -122.994200986999886, 49.229923910000082 ], [ -122.994197822999936, 49.229111777000092 ], [ -122.994195113000018, 49.22841397800007 ], [ -122.994193185999961, 49.227923798000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122535135", "BldgCostT": "75397078", "sL_LossRatio": "0.674617489355959", "sL_AssetLoss": "1630020", "sL_BldgLoss": "1099640", "sL_StrLoss": "456600", "sL_NStrLoss": "643040", "sL_ContLoss": "530380", "geom_point": "0101000020E61000008123DCBFCDBF5EC0DCA21694B39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.997806102999959, 49.233788001000036 ], [ -122.997798994, 49.233410401000064 ], [ -122.994890105999957, 49.233408314000066 ], [ -122.994212896999926, 49.233407802000094 ], [ -122.994213010999886, 49.232410482000049 ], [ -122.994211504, 49.231903307000032 ], [ -122.994210672999941, 49.231463371000046 ], [ -122.994209688999902, 49.230913192000081 ], [ -122.994205372999957, 49.230419908000094 ], [ -122.994200986999886, 49.229923910000082 ], [ -122.995055024999942, 49.229930895000102 ], [ -122.995159725999983, 49.22993175199999 ], [ -122.996400504999926, 49.229941887000102 ], [ -122.997768286999985, 49.229978206000041 ], [ -122.997775105999963, 49.230913491000045 ], [ -122.997776701999967, 49.231482906000053 ], [ -122.997783279999979, 49.232166798000016 ], [ -122.99846177799999, 49.232163421000038 ], [ -122.9991291899999, 49.23216008900004 ], [ -122.999793937999982, 49.232158672000068 ], [ -123.000000019999973, 49.232158247 ], [ -123.000481782999898, 49.232157206000068 ], [ -123.000831876999897, 49.232157 ], [ -123.000834802999961, 49.233768694000126 ], [ -123.00048076899995, 49.23376817300008 ], [ -123.000000006, 49.233767460000152 ], [ -122.99980769699999, 49.233767158000049 ], [ -122.999155808999916, 49.233766207000059 ], [ -122.998475339999956, 49.233777202000105 ], [ -122.997806102999959, 49.233788001000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139834228", "BldgCostT": "92429857", "sL_LossRatio": "0.731631994892076", "sL_AssetLoss": "1534870", "sL_BldgLoss": "1122960", "sL_StrLoss": "462510", "sL_NStrLoss": "660450", "sL_ContLoss": "411910", "geom_point": "0101000020E610000016D7A5040CC05EC0E47981A3AE9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.000834802999961, 49.233768694000126 ], [ -123.000831876999897, 49.232157 ], [ -123.000481782999898, 49.232157206000068 ], [ -123.000000019999973, 49.232158247 ], [ -122.999793937999982, 49.232158672000068 ], [ -122.9991291899999, 49.23216008900004 ], [ -122.99846177799999, 49.232163421000038 ], [ -122.997783279999979, 49.232166798000016 ], [ -122.997776701999967, 49.231482906000053 ], [ -122.997775105999963, 49.230913491000045 ], [ -122.997768286999985, 49.229978206000041 ], [ -122.998441093999972, 49.230147380000055 ], [ -122.99912600499999, 49.230319611000027 ], [ -122.999800137999955, 49.230490561000074 ], [ -123.000414609999893, 49.230646398000054 ], [ -123.001161219999958, 49.230841993000055 ], [ -123.001988990999934, 49.231055097000144 ], [ -123.002109579999953, 49.231092533000137 ], [ -123.003391487999963, 49.231490393000051 ], [ -123.003299598999916, 49.231638294000113 ], [ -123.003277015999913, 49.232137594000079 ], [ -123.003276752999966, 49.232156304000107 ], [ -123.003266496999927, 49.232937295000056 ], [ -123.003332006999941, 49.233050791000075 ], [ -123.003328674999977, 49.233487410000073 ], [ -123.003326475999955, 49.233773995000043 ], [ -123.002637341999929, 49.233773385000056 ], [ -123.00198511799999, 49.233772803000065 ], [ -123.001840521999924, 49.233772146000042 ], [ -123.001173922999982, 49.233769201000015 ], [ -123.000834802999961, 49.233768694000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220491917", "BldgCostT": "145606667", "sL_LossRatio": "0.794138928895361", "sL_AssetLoss": "1875391", "sL_BldgLoss": "1489321", "sL_StrLoss": "696540", "sL_NStrLoss": "792781", "sL_ContLoss": "386070", "geom_point": "0101000020E6100000E348254452C05EC0D2FF8BCAFA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.003299598999916, 49.231638294000113 ], [ -123.003391487999963, 49.231490393000051 ], [ -123.003522195999949, 49.231528289000053 ], [ -123.005575467999932, 49.232051691000066 ], [ -123.005831592999954, 49.232116973000068 ], [ -123.006754515999958, 49.232352211000091 ], [ -123.007676223999937, 49.232579594000114 ], [ -123.00747008899999, 49.232965788000101 ], [ -123.007453506, 49.234182303000082 ], [ -123.00619751, 49.234176292000043 ], [ -123.00619599, 49.235264501000081 ], [ -123.006195707999922, 49.23601389500007 ], [ -123.006196437999961, 49.236383729000082 ], [ -123.006197510999982, 49.236944606000058 ], [ -123.00575130199995, 49.236943012000047 ], [ -123.004354642999914, 49.236938707000085 ], [ -123.004148602, 49.236938071000061 ], [ -123.003380501999985, 49.236935689000077 ], [ -123.003369109999937, 49.236240787000071 ], [ -123.00337028899996, 49.235370593000042 ], [ -123.003326475999955, 49.233773995000043 ], [ -123.003328674999977, 49.233487410000073 ], [ -123.003332006999941, 49.233050791000075 ], [ -123.003266496999927, 49.232937295000056 ], [ -123.003276752999966, 49.232156304000107 ], [ -123.003277015999913, 49.232137594000079 ], [ -123.003299598999916, 49.231638294000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149670000", "BldgCostT": "102420000", "sL_LossRatio": "0.813083852570572", "sL_AssetLoss": "1080110", "sL_BldgLoss": "878220", "sL_StrLoss": "416940", "sL_NStrLoss": "461280", "sL_ContLoss": "201890", "geom_point": "0101000020E61000007E7CDF4B63C05EC0F9A7D0508E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004774696999988, 49.230203693000135 ], [ -123.005870108999943, 49.229311704000075 ], [ -123.00718318, 49.229897599000019 ], [ -123.008565609999934, 49.230517004000092 ], [ -123.008424829999953, 49.230655813000126 ], [ -123.00786188299999, 49.231210992000058 ], [ -123.006754515999958, 49.232352211000091 ], [ -123.005831592999954, 49.232116973000068 ], [ -123.005575467999932, 49.232051691000066 ], [ -123.003522195999949, 49.231528289000053 ], [ -123.003391487999963, 49.231490393000051 ], [ -123.004774696999988, 49.230203693000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69344000", "BldgCostT": "48320000", "sL_LossRatio": "0.918970657461164", "sL_AssetLoss": "318650", "sL_BldgLoss": "292830", "sL_StrLoss": "141510", "sL_NStrLoss": "151320", "sL_ContLoss": "25820", "geom_point": "0101000020E6100000F3178235B1C05EC088D7B3EFA39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.009817124000023, 49.231847195000064 ], [ -123.01025480499996, 49.231430703000072 ], [ -123.010559676999947, 49.231140624000012 ], [ -123.010972596999949, 49.230747683000111 ], [ -123.011120086999938, 49.230610401000099 ], [ -123.01124936099994, 49.230724428000016 ], [ -123.011294119999917, 49.230763904000121 ], [ -123.01129759, 49.230832243000094 ], [ -123.011341397999942, 49.231692985000052 ], [ -123.011375203999961, 49.232340792000045 ], [ -123.010644750999987, 49.232109394000133 ], [ -123.009817124000023, 49.231847195000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "383626593", "BldgCostT": "262181794", "sL_LossRatio": "0.806737313093017", "sL_AssetLoss": "2020390", "sL_BldgLoss": "1629924", "sL_StrLoss": "720450", "sL_NStrLoss": "909474", "sL_ContLoss": "390466", "geom_point": "0101000020E6100000A285E4C7CCC05EC0B72BDB24929D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011079305999914, 49.232715384000095 ], [ -123.011375203999961, 49.232340792000045 ], [ -123.011341397999942, 49.231692985000052 ], [ -123.01129759, 49.230832243000094 ], [ -123.011294119999917, 49.230763904000121 ], [ -123.01124936099994, 49.230724428000016 ], [ -123.011120086999938, 49.230610401000099 ], [ -123.011260788999891, 49.23047877700003 ], [ -123.011363384999967, 49.230382774000049 ], [ -123.011746046, 49.230024774000064 ], [ -123.012130981999974, 49.229664608000043 ], [ -123.011238271999929, 49.229251323000057 ], [ -123.01032190799999, 49.228827092000124 ], [ -123.008565609999934, 49.230517004000092 ], [ -123.00718318, 49.229897599000019 ], [ -123.008029718999978, 49.229077004000068 ], [ -123.008061232999978, 49.229048757000072 ], [ -123.008148347999921, 49.228970631000074 ], [ -123.008965114999938, 49.22823820100011 ], [ -123.00756658899995, 49.227687409000097 ], [ -123.007590577999963, 49.227664294000057 ], [ -123.007639119999951, 49.227617607000035 ], [ -123.007646793000021, 49.22760997700005 ], [ -123.007695919999946, 49.227561278000088 ], [ -123.00771109599999, 49.227546249000078 ], [ -123.008944877999937, 49.228062317000138 ], [ -123.009476684999981, 49.228292283000094 ], [ -123.010424343999972, 49.228729308000077 ], [ -123.01136337299998, 49.229134702000103 ], [ -123.012258347999961, 49.229521029000125 ], [ -123.012646880999938, 49.229681595000038 ], [ -123.01798010099999, 49.23268718300006 ], [ -123.017035511999907, 49.232751587000038 ], [ -123.01586531099997, 49.232822790000085 ], [ -123.015571813999898, 49.232839893000083 ], [ -123.014922102999932, 49.232843507000069 ], [ -123.014015708000031, 49.232805793000139 ], [ -123.013427695999937, 49.232760939000094 ], [ -123.013273807999937, 49.232749208000037 ], [ -123.012605809999926, 49.23263340400014 ], [ -123.012485493999975, 49.232776416000021 ], [ -123.012407997999929, 49.232868497000055 ], [ -123.012183775999958, 49.232869569000059 ], [ -123.011077203999903, 49.232874799000058 ], [ -123.011079305999914, 49.232715384000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "735265228", "BldgCostT": "506834857", "sL_LossRatio": "0.871736505611528", "sL_AssetLoss": "4041680", "sL_BldgLoss": "3523280", "sL_StrLoss": "1658080", "sL_NStrLoss": "1865200", "sL_ContLoss": "518400", "geom_point": "0101000020E61000003F48682EA4C05EC03F746AFC7C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00786188299999, 49.231210992000058 ], [ -123.008424829999953, 49.230655813000126 ], [ -123.008565609999934, 49.230517004000092 ], [ -123.01032190799999, 49.228827092000124 ], [ -123.011238271999929, 49.229251323000057 ], [ -123.012130981999974, 49.229664608000043 ], [ -123.011746046, 49.230024774000064 ], [ -123.011363384999967, 49.230382774000049 ], [ -123.011260788999891, 49.23047877700003 ], [ -123.011120086999938, 49.230610401000099 ], [ -123.010972596999949, 49.230747683000111 ], [ -123.010559676999947, 49.231140624000012 ], [ -123.01025480499996, 49.231430703000072 ], [ -123.009817124000023, 49.231847195000064 ], [ -123.008765361999977, 49.231505 ], [ -123.00786188299999, 49.231210992000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155024478", "BldgCostT": "106699857", "sL_LossRatio": "0.810595843805554", "sL_AssetLoss": "652520", "sL_BldgLoss": "528930", "sL_StrLoss": "268020", "sL_NStrLoss": "260910", "sL_ContLoss": "123590", "geom_point": "0101000020E6100000B5AD35AD77C05EC0DBF42D94489D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.006295914999924, 49.228756006000047 ], [ -123.007451437999947, 49.227667809000124 ], [ -123.007459292999982, 49.227660405000037 ], [ -123.00756658899995, 49.227687409000097 ], [ -123.008965114999938, 49.22823820100011 ], [ -123.008148347999921, 49.228970631000074 ], [ -123.008061232999978, 49.229048757000072 ], [ -123.008029718999978, 49.229077004000068 ], [ -123.00718318, 49.229897599000019 ], [ -123.005870108999943, 49.229311704000075 ], [ -123.004774696999988, 49.230203693000135 ], [ -123.004782500999966, 49.230196279000076 ], [ -123.005691293999959, 49.229331419000069 ], [ -123.006295914999924, 49.228756006000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "367047063", "BldgCostT": "240407206", "sL_LossRatio": "0.721497799543951", "sL_AssetLoss": "2819870", "sL_BldgLoss": "2034530", "sL_StrLoss": "963960", "sL_NStrLoss": "1070570", "sL_ContLoss": "785340", "geom_point": "0101000020E61000002285EC9BFFBF5EC0E15917F1FC9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.997239894999979, 49.222619380000069 ], [ -122.997222596999976, 49.222589465000119 ], [ -122.997847952999948, 49.222897771000156 ], [ -122.997929578999944, 49.222939241000141 ], [ -122.998721886999974, 49.223341574000059 ], [ -123.000089924999926, 49.224046189000042 ], [ -123.000427295999913, 49.224210516000056 ], [ -123.001244946999975, 49.224555062000078 ], [ -123.001938546999924, 49.2248626270001 ], [ -123.00297534699996, 49.225347542000115 ], [ -123.003183984999978, 49.225445118000074 ], [ -123.003285397999932, 49.225492356000046 ], [ -123.003605361, 49.225641370000119 ], [ -123.003852742999982, 49.225756658000101 ], [ -123.005499513999922, 49.226523658000097 ], [ -123.005801299000026, 49.226664244000062 ], [ -123.005649081999977, 49.226821900000083 ], [ -123.004471903999928, 49.227939587000087 ], [ -123.003688704999959, 49.228694299000118 ], [ -123.003140808999945, 49.229058388000084 ], [ -123.00265219799995, 49.22950148500005 ], [ -123.00186669199995, 49.229235368000083 ], [ -123.000742775999967, 49.228854594000033 ], [ -123.000028021999938, 49.228612412000125 ], [ -122.999350106999927, 49.228382692 ], [ -122.997713690999987, 49.227850702000062 ], [ -122.996408698999971, 49.227438683000074 ], [ -122.995091579999979, 49.227002891000097 ], [ -122.994220492999915, 49.226717397000129 ], [ -122.994193202999966, 49.225613104000075 ], [ -122.994212900999969, 49.225181194000065 ], [ -122.996320545999978, 49.225194311000109 ], [ -122.996334318999928, 49.225194401000067 ], [ -122.996534191999928, 49.225160303000038 ], [ -122.996745388999969, 49.225078817000039 ], [ -122.996883817999958, 49.224953904000117 ], [ -122.998517916999916, 49.223480503000062 ], [ -122.997781706999888, 49.223189808000036 ], [ -122.997541607999921, 49.223060616000083 ], [ -122.997407299999949, 49.222909080000058 ], [ -122.997239894999979, 49.222619380000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "456216386", "BldgCostT": "311822079", "sL_LossRatio": "0.841759744520066", "sL_AssetLoss": "2530140", "sL_BldgLoss": "2129770", "sL_StrLoss": "957650", "sL_NStrLoss": "1172120", "sL_ContLoss": "400370", "geom_point": "0101000020E6100000E41C7E2F2CC05EC0313013C18F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00278589, 49.221944396000026 ], [ -123.003159314999934, 49.221943991000039 ], [ -123.004051320999949, 49.221945661000099 ], [ -123.004999787999907, 49.221947400000033 ], [ -123.004655879, 49.222275383000046 ], [ -123.003779640999966, 49.22311100800006 ], [ -123.002160706999959, 49.224654791000063 ], [ -123.00066209499991, 49.223968998 ], [ -123.00278589, 49.221944396000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "341960720", "BldgCostT": "228925413", "sL_LossRatio": "0.788603968914277", "sL_AssetLoss": "2257242", "sL_BldgLoss": "1780070", "sL_StrLoss": "827090", "sL_NStrLoss": "952980", "sL_ContLoss": "477172", "geom_point": "0101000020E61000006D63E4134FC05EC00F501A6A949C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.002160706999959, 49.224654791000063 ], [ -123.003779640999966, 49.22311100800006 ], [ -123.004655879, 49.222275383000046 ], [ -123.004999787999907, 49.221947400000033 ], [ -123.005122516999961, 49.221947629000084 ], [ -123.005553256999946, 49.221948394000044 ], [ -123.007672007999972, 49.221952203000114 ], [ -123.00768221, 49.223136191000087 ], [ -123.006280981999979, 49.222493694000015 ], [ -123.005907961999966, 49.222843469000075 ], [ -123.003380699999951, 49.225213003000107 ], [ -123.00276676499999, 49.224932095000042 ], [ -123.002160706999959, 49.224654791000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "379615645", "BldgCostT": "260111524", "sL_LossRatio": "0.843951562287854", "sL_AssetLoss": "1951785", "sL_BldgLoss": "1647212", "sL_StrLoss": "757710", "sL_NStrLoss": "889502", "sL_ContLoss": "304573", "geom_point": "0101000020E610000020270AFC7AC05EC026F59F14B19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00875218299997, 49.221954290000035 ], [ -123.008971810999981, 49.221953993000042 ], [ -123.008970811999987, 49.223738601000015 ], [ -123.008496676999954, 49.224190228000047 ], [ -123.007717613999915, 49.224932322000022 ], [ -123.006107174999954, 49.226466191000064 ], [ -123.005164309999927, 49.226037307000091 ], [ -123.006760399999933, 49.224524726000034 ], [ -123.00759892399999, 49.223730018000012 ], [ -123.008040093999966, 49.223311899000095 ], [ -123.00768221, 49.223136191000087 ], [ -123.007672007999972, 49.221952203000114 ], [ -123.007772957999961, 49.221952397000138 ], [ -123.008281098999959, 49.221953375000041 ], [ -123.00875218299997, 49.221954290000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219675583", "BldgCostT": "151107348", "sL_LossRatio": "0.845035816187142", "sL_AssetLoss": "1476567", "sL_BldgLoss": "1247752", "sL_StrLoss": "551710", "sL_NStrLoss": "696042", "sL_ContLoss": "228815", "geom_point": "0101000020E61000004F8C13FC82C05EC0570C36F9D69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.006107174999954, 49.226466191000064 ], [ -123.007717613999915, 49.224932322000022 ], [ -123.008496676999954, 49.224190228000047 ], [ -123.008970811999987, 49.223738601000015 ], [ -123.009876704999925, 49.224165486000103 ], [ -123.007018189999954, 49.226878804000144 ], [ -123.006107174999954, 49.226466191000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181885772", "BldgCostT": "119834158", "sL_LossRatio": "0.791688916577667", "sL_AssetLoss": "1348320", "sL_BldgLoss": "1067450", "sL_StrLoss": "442020", "sL_NStrLoss": "625430", "sL_ContLoss": "280870", "geom_point": "0101000020E6100000B496762892C05EC0A1970F10E59C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.007018189999954, 49.226878804000144 ], [ -123.009876704999925, 49.224165486000103 ], [ -123.010805691999934, 49.224597596000102 ], [ -123.009822071999935, 49.225546804000082 ], [ -123.009744568999977, 49.225620329000087 ], [ -123.009702078999936, 49.225704736000061 ], [ -123.007969736999897, 49.227290466000078 ], [ -123.0079617199999, 49.227297779 ], [ -123.007939294, 49.227288096000102 ], [ -123.007888273999953, 49.227266015000033 ], [ -123.007018189999954, 49.226878804000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100789478", "BldgCostT": "65379857", "sL_LossRatio": "0.737414041133788", "sL_AssetLoss": "632570", "sL_BldgLoss": "466466", "sL_StrLoss": "227080", "sL_NStrLoss": "239386", "sL_ContLoss": "166104", "geom_point": "0101000020E6100000992BFF319FC05EC0900D07B6089D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0079617199999, 49.227297779 ], [ -123.007969736999897, 49.227290466000078 ], [ -123.009702078999936, 49.225704736000061 ], [ -123.009744568999977, 49.225620329000087 ], [ -123.009822071999935, 49.225546804000082 ], [ -123.011428690999963, 49.22628501 ], [ -123.010706917999954, 49.226941265000114 ], [ -123.010644196999976, 49.226998295000023 ], [ -123.010768019999958, 49.227058511000088 ], [ -123.010583892999989, 49.227234836000044 ], [ -123.009688311000019, 49.22809249700007 ], [ -123.0079617199999, 49.227297779 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94208124", "BldgCostT": "61406381", "sL_LossRatio": "0.72640218878249", "sL_AssetLoss": "599420", "sL_BldgLoss": "435420", "sL_StrLoss": "183040", "sL_NStrLoss": "252380", "sL_ContLoss": "164000", "geom_point": "0101000020E61000001DAF1FE6BBC05EC0455A74FCE19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011428690999963, 49.22628501 ], [ -123.009822071999935, 49.225546804000082 ], [ -123.010805691999934, 49.224597596000102 ], [ -123.011440751999913, 49.224908506000133 ], [ -123.012024685999918, 49.225194401000067 ], [ -123.012624298999981, 49.225246218000116 ], [ -123.01262521299995, 49.225354928000037 ], [ -123.012627441999911, 49.225606795000061 ], [ -123.012638092999907, 49.22684010600009 ], [ -123.012524332999959, 49.226787889000065 ], [ -123.011428690999963, 49.22628501 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1615000", "BldgCostT": "850000", "sL_LossRatio": "0.574736842105263", "sL_AssetLoss": "47500", "sL_BldgLoss": "27300", "sL_StrLoss": "17000", "sL_NStrLoss": "10300", "sL_ContLoss": "20200", "geom_point": "0101000020E6100000B87B35172AC15EC0F7327A03069D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.01798010099999, 49.23268718300006 ], [ -123.012646880999938, 49.229681595000038 ], [ -123.012258347999961, 49.229521029000125 ], [ -123.01136337299998, 49.229134702000103 ], [ -123.010424343999972, 49.228729308000077 ], [ -123.009476684999981, 49.228292283000094 ], [ -123.008944877999937, 49.228062317000138 ], [ -123.00771109599999, 49.227546249000078 ], [ -123.007626148999933, 49.22750701800004 ], [ -123.005801299000026, 49.226664244000062 ], [ -123.006107174999954, 49.226466191000064 ], [ -123.007018189999954, 49.226878804000144 ], [ -123.007888273999953, 49.227266015000033 ], [ -123.007939294, 49.227288096000102 ], [ -123.0079617199999, 49.227297779 ], [ -123.009688311000019, 49.22809249700007 ], [ -123.010639285000011, 49.228524196000144 ], [ -123.011720841999988, 49.228996270000039 ], [ -123.012228383999982, 49.229217798000064 ], [ -123.012425690999962, 49.22924490900003 ], [ -123.012652197999941, 49.229245682000069 ], [ -123.012651444, 49.229116246000075 ], [ -123.0129859499999, 49.229116209000061 ], [ -123.012986012999932, 49.229359804000062 ], [ -123.013930151999929, 49.229385956000108 ], [ -123.01422218, 49.22938592100008 ], [ -123.014222183999905, 49.229394044000102 ], [ -123.017871104, 49.229495028 ], [ -123.01781266, 49.230404857000117 ], [ -123.019036519999972, 49.230438700000022 ], [ -123.019034851999947, 49.230464659000042 ], [ -123.019452426000015, 49.230464589000114 ], [ -123.019544302999975, 49.229033515000069 ], [ -123.018672037999963, 49.229009399000105 ], [ -123.018713005, 49.228371479000018 ], [ -123.017939252999923, 49.228350080000013 ], [ -123.018170117999929, 49.224755579 ], [ -123.016564401, 49.224711156000097 ], [ -123.016389761, 49.22742882600005 ], [ -123.013809560999903, 49.227357392000066 ], [ -123.013809599999917, 49.227496966000018 ], [ -123.013397560999948, 49.227497015000033 ], [ -123.013397853999948, 49.228576445000037 ], [ -123.012985807999925, 49.228576494000087 ], [ -123.012985878999956, 49.228846351000065 ], [ -123.012649865999933, 49.22884638900014 ], [ -123.012642431999936, 49.227576862000014 ], [ -123.012638092999907, 49.22684010600009 ], [ -123.012627441999911, 49.225606795000061 ], [ -123.01262521299995, 49.225354928000037 ], [ -123.012624298999981, 49.225246218000116 ], [ -123.012024685999918, 49.225194401000067 ], [ -123.011440751999913, 49.224908506000133 ], [ -123.010805691999934, 49.224597596000102 ], [ -123.011354589999911, 49.224088502000072 ], [ -123.012060377999958, 49.223401795000036 ], [ -123.01233450899997, 49.223130992000023 ], [ -123.012483985999964, 49.222899100000063 ], [ -123.012501188999934, 49.222852070000087 ], [ -123.012606607999956, 49.221953911000064 ], [ -123.016163846999959, 49.22194382600005 ], [ -123.018066496999978, 49.221938392 ], [ -123.01867462899996, 49.221946243000019 ], [ -123.020631207999941, 49.221971491000033 ], [ -123.02119005499999, 49.221967690000035 ], [ -123.021478440999928, 49.22196570400007 ], [ -123.023483495999955, 49.221951966000063 ], [ -123.023611099999982, 49.221951110000106 ], [ -123.023500812999913, 49.222729991000044 ], [ -123.023509813999965, 49.223059994000074 ], [ -123.023495437999941, 49.223243229000104 ], [ -123.023494713999952, 49.223252399000039 ], [ -123.023484174999965, 49.224637596000036 ], [ -123.02348114599998, 49.225029498000026 ], [ -123.023479799999933, 49.225198686000041 ], [ -123.023523693999906, 49.226376409000061 ], [ -123.023511001999935, 49.227944031000035 ], [ -123.023509793999963, 49.228093006000044 ], [ -123.023512087999976, 49.22923439400008 ], [ -123.023514983999959, 49.22944601300005 ], [ -123.023518192999973, 49.229679877000144 ], [ -123.023530689999959, 49.230593389000028 ], [ -123.023498386999961, 49.230751446000042 ], [ -123.023494790999962, 49.230769108000075 ], [ -123.023476691000013, 49.230857602000114 ], [ -123.023476510999913, 49.232285465000103 ], [ -123.02347648599999, 49.232294507000049 ], [ -123.023401872999941, 49.232299871000123 ], [ -123.01877438, 49.232632991000045 ], [ -123.018606640999948, 49.232644432000029 ], [ -123.01798010099999, 49.23268718300006 ] ], [ [ -123.022461207999953, 49.224871698000051 ], [ -123.02246068499997, 49.223717598000079 ], [ -123.021064687999939, 49.223717861000118 ], [ -123.020993258999965, 49.224831145000039 ], [ -123.022461207999953, 49.224871698000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222747500", "BldgCostT": "152840000", "sL_LossRatio": "0.921246685313669", "sL_AssetLoss": "550580", "sL_BldgLoss": "507220", "sL_StrLoss": "282800", "sL_NStrLoss": "224420", "sL_ContLoss": "43360", "geom_point": "0101000020E6100000B381E807BDC05EC02778B770289D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.010639285000011, 49.228524196000144 ], [ -123.009688311000019, 49.22809249700007 ], [ -123.010583892999989, 49.227234836000044 ], [ -123.010768019999958, 49.227058511000088 ], [ -123.010644196999976, 49.226998295000023 ], [ -123.010706917999954, 49.226941265000114 ], [ -123.011428690999963, 49.22628501 ], [ -123.012524332999959, 49.226787889000065 ], [ -123.012638092999907, 49.22684010600009 ], [ -123.012642431999936, 49.227576862000014 ], [ -123.012649865999933, 49.22884638900014 ], [ -123.012640282999939, 49.228846390000086 ], [ -123.012639302999958, 49.229116248000047 ], [ -123.012651444, 49.229116246000075 ], [ -123.012652197999941, 49.229245682000069 ], [ -123.012425690999962, 49.22924490900003 ], [ -123.012228383999982, 49.229217798000064 ], [ -123.011720841999988, 49.228996270000039 ], [ -123.010639285000011, 49.228524196000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "256059114", "BldgCostT": "171616936", "sL_LossRatio": "0.817114806201269", "sL_AssetLoss": "1653726", "sL_BldgLoss": "1351284", "sL_StrLoss": "642320", "sL_NStrLoss": "708964", "sL_ContLoss": "302442", "geom_point": "0101000020E6100000641FF14CA4C05EC00C92CA568F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.009876704999925, 49.224165486000103 ], [ -123.008970811999987, 49.223738601000015 ], [ -123.008971810999981, 49.221953993000042 ], [ -123.00999469, 49.221949115000101 ], [ -123.010867400999985, 49.221954397000083 ], [ -123.010895373999986, 49.223800100000084 ], [ -123.010925777999915, 49.22386130600006 ], [ -123.011122002999969, 49.223965241000073 ], [ -123.011354589999911, 49.224088502000072 ], [ -123.010805691999934, 49.224597596000102 ], [ -123.009876704999925, 49.224165486000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90434000", "BldgCostT": "59420000", "sL_LossRatio": "0.782651294947582", "sL_AssetLoss": "612380", "sL_BldgLoss": "479280", "sL_StrLoss": "206080", "sL_NStrLoss": "273200", "sL_ContLoss": "133100", "geom_point": "0101000020E610000010B3765FBEC05EC0A4691689859C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.010867400999985, 49.221954397000083 ], [ -123.012606607999956, 49.221953911000064 ], [ -123.012501188999934, 49.222852070000087 ], [ -123.012483985999964, 49.222899100000063 ], [ -123.01233450899997, 49.223130992000023 ], [ -123.012060377999958, 49.223401795000036 ], [ -123.011354589999911, 49.224088502000072 ], [ -123.011122002999969, 49.223965241000073 ], [ -123.010925777999915, 49.22386130600006 ], [ -123.010895373999986, 49.223800100000084 ], [ -123.010867400999985, 49.221954397000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142781666", "BldgCostT": "90776666", "sL_LossRatio": "0.724204279816855", "sL_AssetLoss": "1625163", "sL_BldgLoss": "1176950", "sL_StrLoss": "537490", "sL_NStrLoss": "639460", "sL_ContLoss": "448213", "geom_point": "0101000020E6100000FF60850085C05EC0747818C5389C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.005029209999989, 49.220257303000025 ], [ -123.00501679199999, 49.218824885000082 ], [ -123.005013279999957, 49.218419108000084 ], [ -123.005098382999947, 49.218397096000039 ], [ -123.006755225999939, 49.218394499000048 ], [ -123.007992009999953, 49.218393817000084 ], [ -123.008727592999932, 49.218393408000061 ], [ -123.008726525999961, 49.218806855000054 ], [ -123.00872510399995, 49.21934818700003 ], [ -123.008735004999906, 49.220261118000032 ], [ -123.009983432999945, 49.220257267000051 ], [ -123.010725595999986, 49.220254996000044 ], [ -123.011796582999963, 49.220259366000022 ], [ -123.01251359799997, 49.220262306000095 ], [ -123.012606607999956, 49.221953911000064 ], [ -123.010867400999985, 49.221954397000083 ], [ -123.00999469, 49.221949115000101 ], [ -123.008971810999981, 49.221953993000042 ], [ -123.00875218299997, 49.221954290000035 ], [ -123.008281098999959, 49.221953375000041 ], [ -123.007772957999961, 49.221952397000138 ], [ -123.007672007999972, 49.221952203000114 ], [ -123.005553256999946, 49.221948394000044 ], [ -123.005122516999961, 49.221947629000084 ], [ -123.004999787999907, 49.221947400000033 ], [ -123.005029209999989, 49.220257303000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102151999", "BldgCostT": "68239999", "sL_LossRatio": "0.77261760690126", "sL_AssetLoss": "1031232", "sL_BldgLoss": "796748", "sL_StrLoss": "405668", "sL_NStrLoss": "391080", "sL_ContLoss": "234484", "geom_point": "0101000020E6100000FC19381CADC05EC07118C4EED89B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.008666196999911, 49.214829690000059 ], [ -123.012359880999924, 49.214843893000122 ], [ -123.012372304999971, 49.215717992000087 ], [ -123.012404185999983, 49.216628800000123 ], [ -123.012427997999936, 49.218392407000053 ], [ -123.01251359799997, 49.220262306000095 ], [ -123.011796582999963, 49.220259366000022 ], [ -123.010725595999986, 49.220254996000044 ], [ -123.009983432999945, 49.220257267000051 ], [ -123.008735004999906, 49.220261118000032 ], [ -123.00872510399995, 49.21934818700003 ], [ -123.008726525999961, 49.218806855000054 ], [ -123.008727592999932, 49.218393408000061 ], [ -123.008706566999976, 49.217061562000055 ], [ -123.008699513999929, 49.216614300000067 ], [ -123.008695604, 49.215715197000115 ], [ -123.008693412999918, 49.215649302000031 ], [ -123.008685665999934, 49.215415724000138 ], [ -123.008666196999911, 49.214829690000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209097001", "BldgCostT": "139545001", "sL_LossRatio": "0.836220530168938", "sL_AssetLoss": "1145748", "sL_BldgLoss": "958098", "sL_StrLoss": "493030", "sL_NStrLoss": "465068", "sL_ContLoss": "187650", "geom_point": "0101000020E61000007E1143FE5BC05EC09653B78AB09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.005013279999957, 49.218419108000084 ], [ -123.004963787999898, 49.216633106000103 ], [ -123.00398243199993, 49.216636333000039 ], [ -123.003080292999968, 49.216639287000149 ], [ -123.00133320499999, 49.216638496000073 ], [ -123.001325535999953, 49.216171405000061 ], [ -123.00131931699994, 49.215791293000073 ], [ -123.001306265000011, 49.21531681600004 ], [ -123.00129310799997, 49.214835589000124 ], [ -123.002713205999925, 49.214841783000054 ], [ -123.004922820000033, 49.21484189800006 ], [ -123.008666196999911, 49.214829690000059 ], [ -123.008685665999934, 49.215415724000138 ], [ -123.008693412999918, 49.215649302000031 ], [ -123.008695604, 49.215715197000115 ], [ -123.008699513999929, 49.216614300000067 ], [ -123.008706566999976, 49.217061562000055 ], [ -123.008727592999932, 49.218393408000061 ], [ -123.007992009999953, 49.218393817000084 ], [ -123.006755225999939, 49.218394499000048 ], [ -123.005098382999947, 49.218397096000039 ], [ -123.005013279999957, 49.218419108000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127376750", "BldgCostT": "81065000", "sL_LossRatio": "0.750921161965034", "sL_AssetLoss": "1191430", "sL_BldgLoss": "894670", "sL_StrLoss": "434790", "sL_NStrLoss": "459880", "sL_ContLoss": "296760", "geom_point": "0101000020E6100000CFFCEE4634C05EC01493D495119C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00398243199993, 49.216636333000039 ], [ -123.004963787999898, 49.216633106000103 ], [ -123.005013279999957, 49.218419108000084 ], [ -123.00501679199999, 49.218824885000082 ], [ -123.005029209999989, 49.220257303000025 ], [ -123.004999787999907, 49.221947400000033 ], [ -123.004051320999949, 49.221945661000099 ], [ -123.003159314999934, 49.221943991000039 ], [ -123.00278589, 49.221944396000026 ], [ -123.002430722999975, 49.221943788000047 ], [ -123.001409326000015, 49.221942097000095 ], [ -123.001361198000012, 49.218457207000021 ], [ -123.001353846999976, 49.217979454000066 ], [ -123.001340017999922, 49.217079932000026 ], [ -123.00133320499999, 49.216638496000073 ], [ -123.003080292999968, 49.216639287000149 ], [ -123.00398243199993, 49.216636333000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171642644", "BldgCostT": "105706523", "sL_LossRatio": "0.689109215975929", "sL_AssetLoss": "2206820", "sL_BldgLoss": "1520740", "sL_StrLoss": "683670", "sL_NStrLoss": "837070", "sL_ContLoss": "686080", "geom_point": "0101000020E6100000FEA6C17ED9BF5EC00039A3DEBA9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.000343279, 49.214833472000066 ], [ -123.00129310799997, 49.214835589000124 ], [ -123.001306265000011, 49.21531681600004 ], [ -123.00131931699994, 49.215791293000073 ], [ -123.001325535999953, 49.216171405000061 ], [ -123.00133320499999, 49.216638496000073 ], [ -123.001340017999922, 49.217079932000026 ], [ -123.001353846999976, 49.217979454000066 ], [ -123.001361198000012, 49.218457207000021 ], [ -123.00049432900002, 49.218456470000085 ], [ -122.999999986999939, 49.218456069000069 ], [ -122.999458983999929, 49.218455605000074 ], [ -122.997575983999965, 49.21845358300007 ], [ -122.996690525999924, 49.218449420000098 ], [ -122.995860809999954, 49.218445494000115 ], [ -122.994031990999972, 49.218454796000131 ], [ -122.994014991999975, 49.218051111000065 ], [ -122.993989819999953, 49.217453700000164 ], [ -122.993953378999947, 49.216636494000099 ], [ -122.993946680999926, 49.216465092000099 ], [ -122.993946984999965, 49.216189407000066 ], [ -122.993947138999928, 49.216036500000058 ], [ -122.993947406999951, 49.215775102000109 ], [ -122.993948986999953, 49.215539113000077 ], [ -122.99389860799999, 49.214833191000046 ], [ -122.997526204999957, 49.214829795000071 ], [ -122.999425512999977, 49.214831401000055 ], [ -123.0, 49.214832691000019 ], [ -123.000343279, 49.214833472000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99274750", "BldgCostT": "65050000", "sL_LossRatio": "0.70939820635902", "sL_AssetLoss": "1439530", "sL_BldgLoss": "1021200", "sL_StrLoss": "472680", "sL_NStrLoss": "548520", "sL_ContLoss": "418330", "geom_point": "0101000020E61000009F6062A0E9BF5EC0D0B6BB832F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00049432900002, 49.218456470000085 ], [ -123.001361198000012, 49.218457207000021 ], [ -123.001409326000015, 49.221942097000095 ], [ -123.000439561999926, 49.221946677000048 ], [ -123.000000118999978, 49.221948753000106 ], [ -122.999525508999952, 49.221951005000037 ], [ -122.997638605999938, 49.221943504000102 ], [ -122.997103090999971, 49.221946603000085 ], [ -122.995911598, 49.221946691000063 ], [ -122.995904261999968, 49.221442729000096 ], [ -122.995868005999981, 49.218941838000035 ], [ -122.995860809999954, 49.218445494000115 ], [ -122.996690525999924, 49.218449420000098 ], [ -122.997575983999965, 49.21845358300007 ], [ -122.999458983999929, 49.218455605000074 ], [ -122.999999986999939, 49.218456069000069 ], [ -123.00049432900002, 49.218456470000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166755894", "BldgCostT": "104921523", "sL_LossRatio": "0.685039566619107", "sL_AssetLoss": "2483912", "sL_BldgLoss": "1701578", "sL_StrLoss": "762588", "sL_NStrLoss": "938990", "sL_ContLoss": "782334", "geom_point": "0101000020E61000002386CBC781BF5EC073EA14F5139C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988500785999975, 49.218495016000105 ], [ -122.988454004999966, 49.21752260400006 ], [ -122.993989819999953, 49.217453700000164 ], [ -122.994014991999975, 49.218051111000065 ], [ -122.994031990999972, 49.218454796000131 ], [ -122.995860809999954, 49.218445494000115 ], [ -122.995868005999981, 49.218941838000035 ], [ -122.995904261999968, 49.221442729000096 ], [ -122.995911598, 49.221946691000063 ], [ -122.995783894999946, 49.221947225000086 ], [ -122.995741298999988, 49.221947402000033 ], [ -122.99557178500001, 49.221947548000095 ], [ -122.99436671699999, 49.221336245000032 ], [ -122.994150828999949, 49.221275193000032 ], [ -122.992829889999939, 49.220990204000024 ], [ -122.992821743999968, 49.220988443000081 ], [ -122.992716486999953, 49.220967073000082 ], [ -122.990991335999965, 49.22069943600011 ], [ -122.989223928999962, 49.220459799000011 ], [ -122.988629874999958, 49.220368823000044 ], [ -122.988614166999952, 49.220136745000033 ], [ -122.98860926699993, 49.220064521000033 ], [ -122.988596531, 49.219876034000016 ], [ -122.988536027999913, 49.219003598 ], [ -122.988500785999975, 49.218495016000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208939293", "BldgCostT": "138379774", "sL_LossRatio": "0.745306251685762", "sL_AssetLoss": "1705460", "sL_BldgLoss": "1271090", "sL_StrLoss": "583390", "sL_NStrLoss": "687700", "sL_ContLoss": "434370", "geom_point": "0101000020E6100000D720476B73BF5EC0013D3F52659C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.991576508, 49.223391506 ], [ -122.991562794999979, 49.221929997000082 ], [ -122.990625093999981, 49.221932616000068 ], [ -122.990326103999919, 49.221928800000086 ], [ -122.989577213999951, 49.221922734000074 ], [ -122.988734623999932, 49.221915903000131 ], [ -122.988702529999941, 49.22144210500003 ], [ -122.988629874999958, 49.220368823000044 ], [ -122.989223928999962, 49.220459799000011 ], [ -122.990991335999965, 49.22069943600011 ], [ -122.992716486999953, 49.220967073000082 ], [ -122.992821743999968, 49.220988443000081 ], [ -122.992829889999939, 49.220990204000024 ], [ -122.994150828999949, 49.221275193000032 ], [ -122.994153304999898, 49.221334632 ], [ -122.994179196999966, 49.221948903000019 ], [ -122.992800908999968, 49.221930304000068 ], [ -122.992802943999976, 49.222288087000059 ], [ -122.992809930999897, 49.223519459000052 ], [ -122.99281340899995, 49.224131408000055 ], [ -122.991583508999895, 49.224130398000028 ], [ -122.991576508, 49.223391506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297458553", "BldgCostT": "205238746", "sL_LossRatio": "0.837816382568034", "sL_AssetLoss": "1839150", "sL_BldgLoss": "1540870", "sL_StrLoss": "667520", "sL_NStrLoss": "873350", "sL_ContLoss": "298280", "geom_point": "0101000020E61000008524C4A65FBF5EC0812A1CDE7F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.990625093999981, 49.221932616000068 ], [ -122.991562794999979, 49.221929997000082 ], [ -122.991576508, 49.223391506 ], [ -122.9903273299999, 49.223391794000058 ], [ -122.989590052999944, 49.223391952000114 ], [ -122.9889174959999, 49.223392109000024 ], [ -122.988879500999985, 49.222496485000057 ], [ -122.988734623999932, 49.221915903000131 ], [ -122.989577213999951, 49.221922734000074 ], [ -122.990326103999919, 49.221928800000086 ], [ -122.990625093999981, 49.221932616000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161798061", "BldgCostT": "109478190", "sL_LossRatio": "0.824986231434291", "sL_AssetLoss": "1143910", "sL_BldgLoss": "943710", "sL_StrLoss": "427170", "sL_NStrLoss": "516540", "sL_ContLoss": "200200", "geom_point": "0101000020E6100000BE1B2C186CBF5EC02FF53D34BD9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.990325674999909, 49.225450222000063 ], [ -122.990325838, 49.225236691000042 ], [ -122.990326677999931, 49.224212934000057 ], [ -122.9903273299999, 49.223391794000058 ], [ -122.991576508, 49.223391506 ], [ -122.991583508999895, 49.224130398000028 ], [ -122.991591887999988, 49.225166712000068 ], [ -122.991551892999894, 49.225847483000067 ], [ -122.990325674999909, 49.225450222000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81846000", "BldgCostT": "55710000", "sL_LossRatio": "0.791166537522478", "sL_AssetLoss": "683990", "sL_BldgLoss": "541150", "sL_StrLoss": "233730", "sL_NStrLoss": "307420", "sL_ContLoss": "142840", "geom_point": "0101000020E610000080553F8056BF5EC0AFB78B38B69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98893404399999, 49.225000560000133 ], [ -122.988925421999951, 49.224248671000097 ], [ -122.98891759299994, 49.223560509000087 ], [ -122.9889174959999, 49.223392109000024 ], [ -122.989590052999944, 49.223391952000114 ], [ -122.9903273299999, 49.223391794000058 ], [ -122.990326677999931, 49.224212934000057 ], [ -122.990325838, 49.225236691000042 ], [ -122.990325674999909, 49.225450222000063 ], [ -122.990161757999957, 49.225397248000036 ], [ -122.98893404399999, 49.225000560000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "300074767", "BldgCostT": "206680229", "sL_LossRatio": "0.813141606280193", "sL_AssetLoss": "2119680", "sL_BldgLoss": "1723600", "sL_StrLoss": "776000", "sL_NStrLoss": "947600", "sL_ContLoss": "396080", "geom_point": "0101000020E6100000BF8D073A5EBF5EC0A121EBC2F29C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988932890999962, 49.225391228000085 ], [ -122.98893404399999, 49.225000560000133 ], [ -122.990161757999957, 49.225397248000036 ], [ -122.990325674999909, 49.225450222000063 ], [ -122.991551892999894, 49.225847483000067 ], [ -122.991562236999982, 49.226281693000061 ], [ -122.991564773, 49.226389295000075 ], [ -122.991560701999916, 49.226939584000064 ], [ -122.98958943299999, 49.226928499000046 ], [ -122.988935510999951, 49.226924787000058 ], [ -122.988940411999934, 49.226384505000091 ], [ -122.988930601, 49.226195895000082 ], [ -122.988932890999962, 49.225391228000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143939022", "BldgCostT": "87474158", "sL_LossRatio": "0.663601798202898", "sL_AssetLoss": "1817370", "sL_BldgLoss": "1206010", "sL_StrLoss": "558350", "sL_NStrLoss": "647660", "sL_ContLoss": "611360", "geom_point": "0101000020E610000073EFD0668BBF5EC01F93BD8CFF9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.991591887999988, 49.225166712000068 ], [ -122.994212900999969, 49.225181194000065 ], [ -122.994193202999966, 49.225613104000075 ], [ -122.994220492999915, 49.226717397000129 ], [ -122.994217700999968, 49.226972202000056 ], [ -122.994193185999961, 49.227923798000084 ], [ -122.991544318999971, 49.227912910000036 ], [ -122.991552673999976, 49.227415425000132 ], [ -122.991553648999982, 49.227358803000037 ], [ -122.991560701999916, 49.226939584000064 ], [ -122.991564773, 49.226389295000075 ], [ -122.991562236999982, 49.226281693000061 ], [ -122.991551892999894, 49.225847483000067 ], [ -122.991591887999988, 49.225166712000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "529825360", "BldgCostT": "362679697", "sL_LossRatio": "0.813009081463672", "sL_AssetLoss": "2820030", "sL_BldgLoss": "2292710", "sL_StrLoss": "1054750", "sL_NStrLoss": "1237960", "sL_ContLoss": "527320", "geom_point": "0101000020E6100000B872616AACBF5EC08B1F00C49F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.994179196999966, 49.221948903000019 ], [ -122.994153304999898, 49.221334632 ], [ -122.994150828999949, 49.221275193000032 ], [ -122.99436671699999, 49.221336245000032 ], [ -122.99557178500001, 49.221947548000095 ], [ -122.995741298999988, 49.221947402000033 ], [ -122.996549831999957, 49.222335514000065 ], [ -122.997222596999976, 49.222589465000119 ], [ -122.997239894999979, 49.222619380000069 ], [ -122.997407299999949, 49.222909080000058 ], [ -122.997541607999921, 49.223060616000083 ], [ -122.997781706999888, 49.223189808000036 ], [ -122.998517916999916, 49.223480503000062 ], [ -122.996883817999958, 49.224953904000117 ], [ -122.996745388999969, 49.225078817000039 ], [ -122.996534191999928, 49.225160303000038 ], [ -122.996334318999928, 49.225194401000067 ], [ -122.996320545999978, 49.225194311000109 ], [ -122.994212900999969, 49.225181194000065 ], [ -122.991591887999988, 49.225166712000068 ], [ -122.991583508999895, 49.224130398000028 ], [ -122.99281340899995, 49.224131408000055 ], [ -122.992809930999897, 49.223519459000052 ], [ -122.992802943999976, 49.222288087000059 ], [ -122.992800908999968, 49.221930304000068 ], [ -122.994179196999966, 49.221948903000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229266417", "BldgCostT": "154421667", "sL_LossRatio": "0.765013005078173", "sL_AssetLoss": "2099180", "sL_BldgLoss": "1605900", "sL_StrLoss": "752660", "sL_NStrLoss": "853240", "sL_ContLoss": "493280", "geom_point": "0101000020E61000007E103C9D6FBF5EC0E2156790AB9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.992085790999937, 49.214851992000057 ], [ -122.99389860799999, 49.214833191000046 ], [ -122.993948986999953, 49.215539113000077 ], [ -122.993947406999951, 49.215775102000109 ], [ -122.993947138999928, 49.216036500000058 ], [ -122.993946984999965, 49.216189407000066 ], [ -122.993946680999926, 49.216465092000099 ], [ -122.993953378999947, 49.216636494000099 ], [ -122.993989819999953, 49.217453700000164 ], [ -122.988454004999966, 49.21752260400006 ], [ -122.988420396999928, 49.216496487 ], [ -122.988434826999963, 49.216045186000024 ], [ -122.988449720999981, 49.215579304000045 ], [ -122.988473305999918, 49.214854690000074 ], [ -122.990267113999934, 49.214855291000049 ], [ -122.992085790999937, 49.214851992000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "374174834", "BldgCostT": "250918334", "sL_LossRatio": "0.741702712938784", "sL_AssetLoss": "3511690", "sL_BldgLoss": "2604630", "sL_StrLoss": "1034300", "sL_NStrLoss": "1570330", "sL_ContLoss": "907060", "geom_point": "0101000020E610000064BCE79F64BD5EC0FDE2DE3E239C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959379011999928, 49.218433301000118 ], [ -122.960987492999962, 49.21843630800003 ], [ -122.960995195999928, 49.219325703000059 ], [ -122.960995412999964, 49.21974509300005 ], [ -122.960995575999902, 49.220200498000054 ], [ -122.960994849999921, 49.220644623000069 ], [ -122.960994104999926, 49.22108330800004 ], [ -122.961001298999918, 49.221224993000099 ], [ -122.957546895999883, 49.221215800000081 ], [ -122.957544818999978, 49.220702302000113 ], [ -122.95754290299999, 49.220208496000097 ], [ -122.957538199999959, 49.219337213000074 ], [ -122.957522159999925, 49.218429577000052 ], [ -122.959379011999928, 49.218433301000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "763759272", "BldgCostT": "522819158", "sL_LossRatio": "0.826291806707176", "sL_AssetLoss": "4198190", "sL_BldgLoss": "3468930", "sL_StrLoss": "1638000", "sL_NStrLoss": "1830930", "sL_ContLoss": "729260", "geom_point": "0101000020E6100000FE6950F232BD5EC0EB18266C229C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.955715414999986, 49.216992102000056 ], [ -122.957337787999975, 49.217011802000087 ], [ -122.957523292999937, 49.217071087000093 ], [ -122.957522159999925, 49.218429577000052 ], [ -122.957538199999959, 49.219337213000074 ], [ -122.95754290299999, 49.220208496000097 ], [ -122.957544818999978, 49.220702302000113 ], [ -122.957546895999883, 49.221215800000081 ], [ -122.957553492999978, 49.22209889500008 ], [ -122.954901204999928, 49.222103300000136 ], [ -122.953883302999941, 49.221298804000071 ], [ -122.954052985999965, 49.221222605000051 ], [ -122.95490779, 49.221208003000122 ], [ -122.954889622999985, 49.220690309000041 ], [ -122.954892386999958, 49.220185912000076 ], [ -122.954893901999981, 49.2197248780001 ], [ -122.954895304999951, 49.219304946000072 ], [ -122.954927578999985, 49.218394157000027 ], [ -122.95571856499997, 49.218409273000077 ], [ -122.95571817299999, 49.218229289000107 ], [ -122.955715414999986, 49.216992102000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "433238334", "BldgCostT": "299978334", "sL_LossRatio": "0.822016651248844", "sL_AssetLoss": "2810600", "sL_BldgLoss": "2310360", "sL_StrLoss": "994100", "sL_NStrLoss": "1316260", "sL_ContLoss": "500240", "geom_point": "0101000020E6100000AF7EF83B0CBD5EC09FD2A85D1F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953978707999937, 49.218384703000055 ], [ -122.954927578999985, 49.218394157000027 ], [ -122.954895304999951, 49.219304946000072 ], [ -122.954893901999981, 49.2197248780001 ], [ -122.954892386999958, 49.220185912000076 ], [ -122.954889622999985, 49.220690309000041 ], [ -122.95490779, 49.221208003000122 ], [ -122.954052985999965, 49.221222605000051 ], [ -122.953883302999941, 49.221298804000071 ], [ -122.953105201999946, 49.220661933000024 ], [ -122.952860699999931, 49.220461792000059 ], [ -122.952767691999938, 49.220351114000103 ], [ -122.952744799999948, 49.220178389000068 ], [ -122.952734124999935, 49.219723561000045 ], [ -122.952724169999954, 49.219300342000047 ], [ -122.952712309999953, 49.218372092000045 ], [ -122.953978707999937, 49.218384703000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408165186", "BldgCostT": "270744572", "sL_LossRatio": "0.770891751575557", "sL_AssetLoss": "2881520", "sL_BldgLoss": "2221340", "sL_StrLoss": "1011320", "sL_NStrLoss": "1210020", "sL_ContLoss": "660180", "geom_point": "0101000020E61000009FA4B74708BD5EC01D6B0B11689C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.951344596999917, 49.218507281000086 ], [ -122.951539666999963, 49.218316416000093 ], [ -122.952196476999944, 49.218347602000087 ], [ -122.952712309999953, 49.218372092000045 ], [ -122.952724169999954, 49.219300342000047 ], [ -122.952734124999935, 49.219723561000045 ], [ -122.952744799999948, 49.220178389000068 ], [ -122.952767691999938, 49.220351114000103 ], [ -122.952860699999931, 49.220461792000059 ], [ -122.953105201999946, 49.220661933000024 ], [ -122.953883302999941, 49.221298804000071 ], [ -122.954901204999928, 49.222103300000136 ], [ -122.95600360899995, 49.222981197000131 ], [ -122.956593411999947, 49.223448304000073 ], [ -122.95714420899999, 49.223988207000041 ], [ -122.956177407, 49.22449689500008 ], [ -122.955850709999964, 49.224663289000091 ], [ -122.95517253, 49.225020808000032 ], [ -122.95469012399991, 49.224630004000097 ], [ -122.951868311999988, 49.222343694000067 ], [ -122.952507912999948, 49.222004088000112 ], [ -122.952838191999945, 49.221828711000114 ], [ -122.953199920999978, 49.221651607000048 ], [ -122.9507156, 49.219661582000072 ], [ -122.950141819999928, 49.219203905000086 ], [ -122.950705192000015, 49.21890090100009 ], [ -122.951266111999956, 49.218555615000071 ], [ -122.951344596999917, 49.218507281000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155442641", "BldgCostT": "95329285", "sL_LossRatio": "0.675883161006936", "sL_AssetLoss": "1768930", "sL_BldgLoss": "1195590", "sL_StrLoss": "505710", "sL_NStrLoss": "689880", "sL_ContLoss": "573340", "geom_point": "0101000020E61000005E9AA6F8CDBC5EC011CBA0B9529C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.948896777999934, 49.21987220900013 ], [ -122.950141819999928, 49.219203905000086 ], [ -122.9507156, 49.219661582000072 ], [ -122.953199920999978, 49.221651607000048 ], [ -122.952838191999945, 49.221828711000114 ], [ -122.952507912999948, 49.222004088000112 ], [ -122.951868311999988, 49.222343694000067 ], [ -122.951354870000017, 49.222613843000047 ], [ -122.950844588999971, 49.222882303000048 ], [ -122.950357546999953, 49.223149655000071 ], [ -122.949997197999963, 49.223347489000098 ], [ -122.949286503999971, 49.222778699000102 ], [ -122.948517190999937, 49.222160611000085 ], [ -122.947721608, 49.221525407000087 ], [ -122.946958893999977, 49.220911988000125 ], [ -122.948896777999934, 49.21987220900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85288781", "BldgCostT": "50073603", "sL_LossRatio": "0.652082432862234", "sL_AssetLoss": "1226210", "sL_BldgLoss": "799590", "sL_StrLoss": "347470", "sL_NStrLoss": "452120", "sL_ContLoss": "426620", "geom_point": "0101000020E61000002AF14607A0BC5EC09CD27E94269C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94350389099999, 49.220704094000084 ], [ -122.945417389999946, 49.219680913000104 ], [ -122.946183000999952, 49.220290901000091 ], [ -122.947622106999958, 49.219531712000027 ], [ -122.947835912999921, 49.21936829 ], [ -122.948465016999961, 49.218088898000111 ], [ -122.949169103999949, 49.218192600000059 ], [ -122.949992242999954, 49.218241087000109 ], [ -122.951117735999944, 49.218295875000045 ], [ -122.951539666999963, 49.218316416000093 ], [ -122.951344596999917, 49.218507281000086 ], [ -122.951266111999956, 49.218555615000071 ], [ -122.950705192000015, 49.21890090100009 ], [ -122.950141819999928, 49.219203905000086 ], [ -122.948896777999934, 49.21987220900013 ], [ -122.946958893999977, 49.220911988000125 ], [ -122.945049489999974, 49.221934413000042 ], [ -122.944263206999963, 49.221305805000107 ], [ -122.94350389099999, 49.220704094000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113847916", "BldgCostT": "73621666", "sL_LossRatio": "0.732339872976053", "sL_AssetLoss": "1132070", "sL_BldgLoss": "829060", "sL_StrLoss": "364240", "sL_NStrLoss": "464820", "sL_ContLoss": "303010", "geom_point": "0101000020E610000094B72B0D1FBD5EC054B2C64DCB9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.951539666999963, 49.218316416000093 ], [ -122.951813643999941, 49.218052987000078 ], [ -122.953669868999924, 49.217019902000068 ], [ -122.957032691999927, 49.215216712000029 ], [ -122.957125390999948, 49.215289604000105 ], [ -122.957503611, 49.215989499000052 ], [ -122.957523292999937, 49.217071087000093 ], [ -122.957337787999975, 49.217011802000087 ], [ -122.955715414999986, 49.216992102000056 ], [ -122.95571817299999, 49.218229289000107 ], [ -122.95571856499997, 49.218409273000077 ], [ -122.954927578999985, 49.218394157000027 ], [ -122.953978707999937, 49.218384703000055 ], [ -122.952712309999953, 49.218372092000045 ], [ -122.952196476999944, 49.218347602000087 ], [ -122.951539666999963, 49.218316416000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "387294971", "BldgCostT": "265680414", "sL_LossRatio": "0.863385886301193", "sL_AssetLoss": "1355775", "sL_BldgLoss": "1170557", "sL_StrLoss": "606330", "sL_NStrLoss": "564227", "sL_ContLoss": "185218", "geom_point": "0101000020E6100000810D1D7553C15EC0F686F357E59D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.01990201299999, 49.234851400000103 ], [ -123.019890822999983, 49.234062803000036 ], [ -123.01886307599996, 49.234051840000085 ], [ -123.018192206999942, 49.234044703000045 ], [ -123.018002388999903, 49.234020662000034 ], [ -123.017949782999935, 49.234013704000098 ], [ -123.017034990999932, 49.233999191000109 ], [ -123.017035511999907, 49.232751587000038 ], [ -123.01798010099999, 49.23268718300006 ], [ -123.018606640999948, 49.232644432000029 ], [ -123.01877438, 49.232632991000045 ], [ -123.023401872999941, 49.232299871000123 ], [ -123.02347648599999, 49.232294507000049 ], [ -123.023456091999918, 49.234325295000076 ], [ -123.023453804999932, 49.234501314000077 ], [ -123.02345238, 49.234609252000105 ], [ -123.023450843999939, 49.234726291000065 ], [ -123.023450494999935, 49.234751823000124 ], [ -123.022784518999956, 49.234971493000081 ], [ -123.022619, 49.234918286000052 ], [ -123.02001441100002, 49.234896812000045 ], [ -123.01990201299999, 49.234851400000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59007999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "331739668", "BldgCostT": "224006668", "sL_LossRatio": "0.775513085348274", "sL_AssetLoss": "1884092", "sL_BldgLoss": "1461138", "sL_StrLoss": "713790", "sL_NStrLoss": "747348", "sL_ContLoss": "422954", "geom_point": "0101000020E6100000C91A4859F7C05EC017F39307F59D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.012485493999975, 49.232776416000021 ], [ -123.012605809999926, 49.23263340400014 ], [ -123.013273807999937, 49.232749208000037 ], [ -123.013427695999937, 49.232760939000094 ], [ -123.014015708000031, 49.232805793000139 ], [ -123.014922102999932, 49.232843507000069 ], [ -123.015571813999898, 49.232839893000083 ], [ -123.01586531099997, 49.232822790000085 ], [ -123.017035511999907, 49.232751587000038 ], [ -123.017034990999932, 49.233999191000109 ], [ -123.017029387999983, 49.234790893000095 ], [ -123.015858501999944, 49.234786382000102 ], [ -123.015853500999981, 49.235505109 ], [ -123.01472810599995, 49.235540587000067 ], [ -123.013499813999914, 49.235531803000065 ], [ -123.013498356999932, 49.234854184000078 ], [ -123.013496619999941, 49.23404540100011 ], [ -123.013493710999967, 49.232958879000108 ], [ -123.012885000999987, 49.232908221000059 ], [ -123.012407997999929, 49.232868497000055 ], [ -123.012485493999975, 49.232776416000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65380501", "BldgCostT": "44145001", "sL_LossRatio": "0.755250976717512", "sL_AssetLoss": "781188", "sL_BldgLoss": "589993", "sL_StrLoss": "285110", "sL_NStrLoss": "304883", "sL_ContLoss": "191195", "geom_point": "0101000020E6100000FD7A3A2E15C15EC0914F9F4F2A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017029387999983, 49.234790893000095 ], [ -123.017034990999932, 49.233999191000109 ], [ -123.017949782999935, 49.234013704000098 ], [ -123.018002388999903, 49.234020662000034 ], [ -123.018192206999942, 49.234044703000045 ], [ -123.01886307599996, 49.234051840000085 ], [ -123.019890822999983, 49.234062803000036 ], [ -123.01990201299999, 49.234851400000103 ], [ -123.019900598999939, 49.235515196000044 ], [ -123.019129407999969, 49.23551359000006 ], [ -123.018663592999985, 49.235512609000082 ], [ -123.018650579999985, 49.236956253000095 ], [ -123.017561767999965, 49.236954970000085 ], [ -123.015846676999956, 49.236957078000088 ], [ -123.01419047, 49.236946211000031 ], [ -123.013502497, 49.236941702000131 ], [ -123.013501694999931, 49.236580990000085 ], [ -123.013500887999911, 49.236218298000061 ], [ -123.013500295999961, 49.235843411000054 ], [ -123.013499813999914, 49.235531803000065 ], [ -123.01472810599995, 49.235540587000067 ], [ -123.015853500999981, 49.235505109 ], [ -123.015858501999944, 49.234786382000102 ], [ -123.017029387999983, 49.234790893000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57908332", "BldgCostT": "38048332", "sL_LossRatio": "0.741323152964335", "sL_AssetLoss": "745749", "sL_BldgLoss": "552841", "sL_StrLoss": "258070", "sL_NStrLoss": "294771", "sL_ContLoss": "192908", "geom_point": "0101000020E61000002A49AF1714C15EC06DF17C48709E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.015840494999949, 49.238761295000117 ], [ -123.015840093999884, 49.238382891000107 ], [ -123.014177280999931, 49.238377864000029 ], [ -123.013499412000016, 49.238375793000081 ], [ -123.013501398999935, 49.237918184000094 ], [ -123.013501907999981, 49.237471550000066 ], [ -123.013502497, 49.236941702000131 ], [ -123.01419047, 49.236946211000031 ], [ -123.015846676999956, 49.236957078000088 ], [ -123.017561767999965, 49.236954970000085 ], [ -123.018650579999985, 49.236956253000095 ], [ -123.019386384999976, 49.236968478000023 ], [ -123.019875391999975, 49.236976604000091 ], [ -123.019860717999904, 49.238060799000053 ], [ -123.019847204999962, 49.238420701000081 ], [ -123.019844496999966, 49.238783709000053 ], [ -123.019341678999922, 49.238780891000054 ], [ -123.015840494999949, 49.238761295000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40750000", "BldgCostT": "27160000", "sL_LossRatio": "0.781960721725228", "sL_AssetLoss": "363407", "sL_BldgLoss": "284170", "sL_StrLoss": "152290", "sL_NStrLoss": "131880", "sL_ContLoss": "79237", "geom_point": "0101000020E6100000A407605E5BC15EC0F5A61233359E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.019900598999939, 49.235515196000044 ], [ -123.01990201299999, 49.234851400000103 ], [ -123.02001441100002, 49.234896812000045 ], [ -123.022619, 49.234918286000052 ], [ -123.022784518999956, 49.234971493000081 ], [ -123.023450494999935, 49.234751823000124 ], [ -123.02344824, 49.234924218000089 ], [ -123.023431274999922, 49.236211794000042 ], [ -123.023426813999961, 49.236988197000059 ], [ -123.022872614999955, 49.236985013000037 ], [ -123.022312302999964, 49.236981805 ], [ -123.021185213999914, 49.236978481000051 ], [ -123.019875391999975, 49.236976604000091 ], [ -123.019386384999976, 49.236968478000023 ], [ -123.018650579999985, 49.236956253000095 ], [ -123.018663592999985, 49.235512609000082 ], [ -123.019129407999969, 49.23551359000006 ], [ -123.019900598999939, 49.235515196000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114466833", "BldgCostT": "74613333", "sL_LossRatio": "0.742795341862421", "sL_AssetLoss": "1175663", "sL_BldgLoss": "873277", "sL_StrLoss": "413267", "sL_NStrLoss": "460010", "sL_ContLoss": "302386", "geom_point": "0101000020E610000074510C1461C15EC031A492539E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022872614999955, 49.236985013000037 ], [ -123.023426813999961, 49.236988197000059 ], [ -123.023429489999941, 49.237760303000144 ], [ -123.023446797999924, 49.239566901000053 ], [ -123.02344874, 49.239579395000078 ], [ -123.023550784999969, 49.240236389000074 ], [ -123.023554542999989, 49.240380812000062 ], [ -123.023554872999938, 49.240393459000082 ], [ -123.02356977899997, 49.240967491000063 ], [ -123.021048390999937, 49.240950086000034 ], [ -123.02104228899999, 49.241608284000108 ], [ -123.021038193, 49.24204970600006 ], [ -123.01979211699998, 49.242059409000021 ], [ -123.019802119999952, 49.241304802000109 ], [ -123.019828589000014, 49.240208404000079 ], [ -123.019836407999946, 49.239872607000116 ], [ -123.019844496999966, 49.238783709000053 ], [ -123.019847204999962, 49.238420701000081 ], [ -123.019860717999904, 49.238060799000053 ], [ -123.019875391999975, 49.236976604000091 ], [ -123.021185213999914, 49.236978481000051 ], [ -123.022312302999964, 49.236981805 ], [ -123.022872614999955, 49.236985013000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273849720", "BldgCostT": "184655413", "sL_LossRatio": "0.817995753665551", "sL_AssetLoss": "1700290", "sL_BldgLoss": "1390830", "sL_StrLoss": "599620", "sL_NStrLoss": "791210", "sL_ContLoss": "309460", "geom_point": "0101000020E6100000C35C4A4495C15EC05C8B2EF3469E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.024330675999977, 49.237767618000085 ], [ -123.024317501999946, 49.237764991000056 ], [ -123.023562589999983, 49.237760402000049 ], [ -123.023429489999941, 49.237760303000144 ], [ -123.023426813999961, 49.236988197000059 ], [ -123.023431274999922, 49.236211794000042 ], [ -123.02344824, 49.234924218000089 ], [ -123.023450494999935, 49.234751823000124 ], [ -123.023450843999939, 49.234726291000065 ], [ -123.02345238, 49.234609252000105 ], [ -123.023453804999932, 49.234501314000077 ], [ -123.023456091999918, 49.234325295000076 ], [ -123.023611282, 49.234324990000076 ], [ -123.023618374999927, 49.234501872000045 ], [ -123.02362551, 49.234681043000144 ], [ -123.023625892999974, 49.234690641000086 ], [ -123.023633833999924, 49.23488905500006 ], [ -123.023634988999945, 49.234918402000062 ], [ -123.02694088599999, 49.236403211000066 ], [ -123.026640327999971, 49.236680791000026 ], [ -123.025186607999956, 49.238023211000034 ], [ -123.024699887999986, 49.237841300000063 ], [ -123.024662146999987, 49.237833756 ], [ -123.024330675999977, 49.237767618000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176446583", "BldgCostT": "119288333", "sL_LossRatio": "0.7800840427722", "sL_AssetLoss": "825770", "sL_BldgLoss": "644170", "sL_StrLoss": "302320", "sL_NStrLoss": "341850", "sL_ContLoss": "181600", "geom_point": "0101000020E6100000623AD7A499C15EC05105504A909E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026328898000017, 49.239696911000109 ], [ -123.025099182999952, 49.239236894000157 ], [ -123.025102077999946, 49.239600002000024 ], [ -123.02434402699997, 49.239584935999986 ], [ -123.024234220999986, 49.239582737000049 ], [ -123.023583917999986, 49.239569794000033 ], [ -123.023583800999972, 49.239560800000099 ], [ -123.023562589999983, 49.237760402000049 ], [ -123.024317501999946, 49.237764991000056 ], [ -123.024330675999977, 49.237767618000085 ], [ -123.024662146999987, 49.237833756 ], [ -123.024699887999986, 49.237841300000063 ], [ -123.025186607999956, 49.238023211000034 ], [ -123.025623147999966, 49.238204431000042 ], [ -123.026169725999949, 49.238431302000087 ], [ -123.02713529099999, 49.238833600000071 ], [ -123.026715496999927, 49.239283015000076 ], [ -123.026328898000017, 49.239696911000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63766333", "BldgCostT": "43033333", "sL_LossRatio": "0.772962431047426", "sL_AssetLoss": "735288", "sL_BldgLoss": "568350", "sL_StrLoss": "276340", "sL_NStrLoss": "292010", "sL_ContLoss": "166938", "geom_point": "0101000020E61000007178B59ABDC15EC0B6C3B2DB5F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023618374999927, 49.234501872000045 ], [ -123.023611282, 49.234324990000076 ], [ -123.02408940499997, 49.234600023999988 ], [ -123.024173750999964, 49.234648524000058 ], [ -123.024812323999953, 49.235015773000065 ], [ -123.026150536999964, 49.235626341000092 ], [ -123.026193018999919, 49.23564572 ], [ -123.026865185999938, 49.23595443600005 ], [ -123.02735067899999, 49.236177414000053 ], [ -123.028137709999953, 49.236538893000095 ], [ -123.029934517999919, 49.237362209000061 ], [ -123.029733239, 49.237550262000063 ], [ -123.029712918999934, 49.237569246000135 ], [ -123.029477005999951, 49.237818001000115 ], [ -123.028110591999962, 49.239213610000071 ], [ -123.027612516999937, 49.23901955300002 ], [ -123.02713529099999, 49.238833600000071 ], [ -123.026169725999949, 49.238431302000087 ], [ -123.025623147999966, 49.238204431000042 ], [ -123.025186607999956, 49.238023211000034 ], [ -123.026640327999971, 49.236680791000026 ], [ -123.02694088599999, 49.236403211000066 ], [ -123.023634988999945, 49.234918402000062 ], [ -123.023633833999924, 49.23488905500006 ], [ -123.023625892999974, 49.234690641000086 ], [ -123.02362551, 49.234681043000144 ], [ -123.023618374999927, 49.234501872000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150690552", "BldgCostT": "97278745", "sL_LossRatio": "0.746403095531378", "sL_AssetLoss": "1114639", "sL_BldgLoss": "831970", "sL_StrLoss": "355590", "sL_NStrLoss": "476380", "sL_ContLoss": "282669", "geom_point": "0101000020E6100000FFF4B8D2DFC15EC01F5B09BC979E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026328898000017, 49.239696911000109 ], [ -123.026715496999927, 49.239283015000076 ], [ -123.02713529099999, 49.238833600000071 ], [ -123.027612516999937, 49.23901955300002 ], [ -123.028110591999962, 49.239213610000071 ], [ -123.029477005999951, 49.237818001000115 ], [ -123.029712918999934, 49.237569246000135 ], [ -123.029733239, 49.237550262000063 ], [ -123.029934517999919, 49.237362209000061 ], [ -123.030673951999958, 49.237672113000073 ], [ -123.030905392999969, 49.237769116000067 ], [ -123.031370715999955, 49.238001903000047 ], [ -123.031848699999912, 49.238240990000129 ], [ -123.03174954899994, 49.238344656000095 ], [ -123.031707062999956, 49.23838910300006 ], [ -123.031660664999919, 49.238437596000082 ], [ -123.031651493999931, 49.238447211000043 ], [ -123.031591876999954, 49.238509530000023 ], [ -123.030127099999945, 49.240040194000038 ], [ -123.029619528999959, 49.239835058000033 ], [ -123.029117821999961, 49.23963230300005 ], [ -123.02868601599999, 49.240081061000083 ], [ -123.02829698699999, 49.240485299000071 ], [ -123.026328898000017, 49.239696911000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97440834", "BldgCostT": "62393334", "sL_LossRatio": "0.714582691199528", "sL_AssetLoss": "1193936", "sL_BldgLoss": "853166", "sL_StrLoss": "373290", "sL_NStrLoss": "479876", "sL_ContLoss": "340770", "geom_point": "0101000020E61000009ECB60CEE4C15EC0BF88111DDD9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025541718999989, 49.240517394000051 ], [ -123.025943558999955, 49.240098534000097 ], [ -123.026328898000017, 49.239696911000109 ], [ -123.02829698699999, 49.240485299000071 ], [ -123.02868601599999, 49.240081061000083 ], [ -123.029117821999961, 49.23963230300005 ], [ -123.029619528999959, 49.239835058000033 ], [ -123.030127099999945, 49.240040194000038 ], [ -123.030397040999972, 49.240150191000097 ], [ -123.030615042999955, 49.240238984000044 ], [ -123.032031398999891, 49.240815988000101 ], [ -123.033001293999988, 49.241217399000064 ], [ -123.032573346, 49.241659243000072 ], [ -123.032185419999948, 49.242059800000042 ], [ -123.031816497999941, 49.242453803000053 ], [ -123.031374694, 49.242925711000062 ], [ -123.030893053999989, 49.242727218000027 ], [ -123.030466626999939, 49.242551528000099 ], [ -123.029647013999949, 49.242213776000042 ], [ -123.028998687999916, 49.241946624000057 ], [ -123.028504797999972, 49.24174310900009 ], [ -123.027912296999915, 49.241498021000019 ], [ -123.025541718999989, 49.240517394000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165200781", "BldgCostT": "103948603", "sL_LossRatio": "0.692783255068393", "sL_AssetLoss": "840947", "sL_BldgLoss": "582594", "sL_StrLoss": "270710", "sL_NStrLoss": "311884", "sL_ContLoss": "258353", "geom_point": "0101000020E6100000829FDE1013C25EC041DA9CD6AF9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03174954899994, 49.238344656000095 ], [ -123.031848699999912, 49.238240990000129 ], [ -123.032337284999954, 49.23845915200004 ], [ -123.033007513, 49.238758396000051 ], [ -123.033723577999979, 49.239047404000068 ], [ -123.034662916999963, 49.239433607000123 ], [ -123.034198912999969, 49.239990092000113 ], [ -123.033811508999975, 49.240401089 ], [ -123.03339061099993, 49.240825179000097 ], [ -123.033001293999988, 49.241217399000064 ], [ -123.032031398999891, 49.240815988000101 ], [ -123.030615042999955, 49.240238984000044 ], [ -123.030397040999972, 49.240150191000097 ], [ -123.030127099999945, 49.240040194000038 ], [ -123.031591876999954, 49.238509530000023 ], [ -123.031651493999931, 49.238447211000043 ], [ -123.031660664999919, 49.238437596000082 ], [ -123.031707062999956, 49.23838910300006 ], [ -123.03174954899994, 49.238344656000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87786500", "BldgCostT": "57920000", "sL_LossRatio": "0.732576892063126", "sL_AssetLoss": "1041720", "sL_BldgLoss": "763140", "sL_StrLoss": "362850", "sL_NStrLoss": "400290", "sL_ContLoss": "278580", "geom_point": "0101000020E6100000A18B9F2928C25EC09BF4D6440F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03339061099993, 49.240825179000097 ], [ -123.033811508999975, 49.240401089 ], [ -123.036823505999948, 49.241637788000062 ], [ -123.036421876999967, 49.242057821000031 ], [ -123.036012788999983, 49.242485702000067 ], [ -123.034419194999927, 49.244171498000078 ], [ -123.034091189999955, 49.244512902000103 ], [ -123.033331963999942, 49.24450728700004 ], [ -123.0331121899999, 49.244505637000039 ], [ -123.031491392999939, 49.244493609000074 ], [ -123.031644118999964, 49.244123899000073 ], [ -123.030597402999916, 49.24376271000007 ], [ -123.030999787, 49.243329433000113 ], [ -123.031374694, 49.242925711000062 ], [ -123.031816497999941, 49.242453803000053 ], [ -123.032185419999948, 49.242059800000042 ], [ -123.032573346, 49.241659243000072 ], [ -123.033001293999988, 49.241217399000064 ], [ -123.03339061099993, 49.240825179000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67684833", "BldgCostT": "43788333", "sL_LossRatio": "0.732134284141872", "sL_AssetLoss": "854010", "sL_BldgLoss": "625250", "sL_StrLoss": "300270", "sL_NStrLoss": "324980", "sL_ContLoss": "228760", "geom_point": "0101000020E61000001EB0489F58C25EC061990A33E59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034198912999969, 49.239990092000113 ], [ -123.034662916999963, 49.239433607000123 ], [ -123.03668092, 49.240259203000058 ], [ -123.0377583099999, 49.240697787000116 ], [ -123.037673553, 49.240780930000085 ], [ -123.03719720399998, 49.241248112000072 ], [ -123.03769387599999, 49.241452168000116 ], [ -123.038238201999917, 49.241675805000057 ], [ -123.038789119999933, 49.2419006370001 ], [ -123.039288895999931, 49.242104598000068 ], [ -123.03892380299996, 49.242489096000064 ], [ -123.038497448, 49.242932208000063 ], [ -123.038108887999925, 49.243335999000031 ], [ -123.037483701999946, 49.243080615000032 ], [ -123.037056997999969, 49.242906292000043 ], [ -123.03654409799999, 49.242699704000103 ], [ -123.036012788999983, 49.242485702000067 ], [ -123.036421876999967, 49.242057821000031 ], [ -123.036823505999948, 49.241637788000062 ], [ -123.033811508999975, 49.240401089 ], [ -123.034198912999969, 49.239990092000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89064084", "BldgCostT": "60323334", "sL_LossRatio": "0.747766683261694", "sL_AssetLoss": "1140904", "sL_BldgLoss": "853130", "sL_StrLoss": "396590", "sL_NStrLoss": "456540", "sL_ContLoss": "287774", "geom_point": "0101000020E610000091280F666EC25EC0260CA926319F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034419194999927, 49.244171498000078 ], [ -123.036012788999983, 49.242485702000067 ], [ -123.03654409799999, 49.242699704000103 ], [ -123.037056997999969, 49.242906292000043 ], [ -123.037483701999946, 49.243080615000032 ], [ -123.038108887999925, 49.243335999000031 ], [ -123.038497448, 49.242932208000063 ], [ -123.03892380299996, 49.242489096000064 ], [ -123.040422107999959, 49.243111193000075 ], [ -123.04082178499999, 49.242721395000054 ], [ -123.041746191999891, 49.243127815000101 ], [ -123.041403138999939, 49.243489152000031 ], [ -123.0405758859999, 49.244360395000079 ], [ -123.040589, 49.244541791000081 ], [ -123.039130004999961, 49.244530583000099 ], [ -123.03698139699999, 49.244520202000047 ], [ -123.03665878, 49.244518601000038 ], [ -123.035527596999884, 49.244512692000065 ], [ -123.034513173000022, 49.244512829000058 ], [ -123.034091189999955, 49.244512902000103 ], [ -123.034419194999927, 49.244171498000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139652833", "BldgCostT": "96073333", "sL_LossRatio": "0.817841468908491", "sL_AssetLoss": "1101008", "sL_BldgLoss": "900450", "sL_StrLoss": "451810", "sL_NStrLoss": "448640", "sL_ContLoss": "200558", "geom_point": "0101000020E6100000CFB3168F60C25EC09F373E28629F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041163100999967, 49.244544426000026 ], [ -123.042163696999964, 49.244548992000055 ], [ -123.041942230999922, 49.244749205000112 ], [ -123.041790775, 49.24499255200007 ], [ -123.041689816999934, 49.245154806000123 ], [ -123.041625780999951, 49.245405299000033 ], [ -123.039126994999933, 49.245395295000087 ], [ -123.036651915999968, 49.245380502000053 ], [ -123.03664789599999, 49.245823244000071 ], [ -123.036644010999979, 49.246256700000053 ], [ -123.034542295999984, 49.246240437000026 ], [ -123.033905470999969, 49.246235496000111 ], [ -123.033782017999897, 49.246233900000121 ], [ -123.033781952999931, 49.246224859000037 ], [ -123.033776276999959, 49.245356397000101 ], [ -123.033776775999925, 49.245347393000046 ], [ -123.033789715999902, 49.245104505000036 ], [ -123.033890297999932, 49.244754189000098 ], [ -123.03394429, 49.244662008000027 ], [ -123.033998700999945, 49.244626511000099 ], [ -123.034091189999955, 49.244512902000103 ], [ -123.034513173000022, 49.244512829000058 ], [ -123.035527596999884, 49.244512692000065 ], [ -123.03665878, 49.244518601000038 ], [ -123.03698139699999, 49.244520202000047 ], [ -123.039130004999961, 49.244530583000099 ], [ -123.040589, 49.244541791000081 ], [ -123.041163100999967, 49.244544426000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161280749", "BldgCostT": "106094999", "sL_LossRatio": "0.729183268621035", "sL_AssetLoss": "1179580", "sL_BldgLoss": "860130", "sL_StrLoss": "431470", "sL_NStrLoss": "428660", "sL_ContLoss": "319450", "geom_point": "0101000020E61000009D1BC2E77DC25EC0FCF2C8409A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.039126994999933, 49.245395295000087 ], [ -123.041625780999951, 49.245405299000033 ], [ -123.041624781999985, 49.245848404000078 ], [ -123.041623877999911, 49.246232192000029 ], [ -123.041623407999964, 49.246657976000066 ], [ -123.04162289599995, 49.247066285000109 ], [ -123.041622030999989, 49.247467551000071 ], [ -123.041621110999955, 49.247890490000074 ], [ -123.040918549999915, 49.247885874000083 ], [ -123.039115814999931, 49.24787399300007 ], [ -123.039111497999926, 49.248759399000072 ], [ -123.03845964199995, 49.248761823000073 ], [ -123.037113108999961, 49.2487667770001 ], [ -123.036567288999976, 49.248768794000057 ], [ -123.036597533999924, 49.248316598000045 ], [ -123.036628182999962, 49.247857908000078 ], [ -123.036631670999938, 49.247469471000052 ], [ -123.036634915999926, 49.247108602000061 ], [ -123.036639522999977, 49.24667783600006 ], [ -123.036644010999979, 49.246256700000053 ], [ -123.03664789599999, 49.245823244000071 ], [ -123.036651915999968, 49.245380502000053 ], [ -123.039126994999933, 49.245395295000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202537917", "BldgCostT": "140936667", "sL_LossRatio": "0.825565757744389", "sL_AssetLoss": "862560", "sL_BldgLoss": "712100", "sL_StrLoss": "387180", "sL_NStrLoss": "324920", "sL_ContLoss": "150460", "geom_point": "0101000020E61000007C5567B540C25EC045A2A733BD9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034542295999984, 49.246240437000026 ], [ -123.036644010999979, 49.246256700000053 ], [ -123.036639522999977, 49.24667783600006 ], [ -123.036634915999926, 49.247108602000061 ], [ -123.036631670999938, 49.247469471000052 ], [ -123.036628182999962, 49.247857908000078 ], [ -123.036597533999924, 49.248316598000045 ], [ -123.036567288999976, 49.248768794000057 ], [ -123.036562801999935, 49.2491965480001 ], [ -123.036557798999951, 49.249671087000138 ], [ -123.034544155999981, 49.249661662000058 ], [ -123.03387209899995, 49.24965851400006 ], [ -123.033752703999966, 49.249657100000071 ], [ -123.033754597999973, 49.24876890600008 ], [ -123.033763822999916, 49.247872005000055 ], [ -123.033763950999969, 49.247862983000104 ], [ -123.033774883999953, 49.247096696000071 ], [ -123.03378914299995, 49.247096875000054 ], [ -123.033888804999933, 49.247098008000073 ], [ -123.033888965999935, 49.247088917000085 ], [ -123.033905470999969, 49.246235496000111 ], [ -123.034542295999984, 49.246240437000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122056444", "BldgCostT": "77165721", "sL_LossRatio": "0.683420406774719", "sL_AssetLoss": "2057650", "sL_BldgLoss": "1406240", "sL_StrLoss": "626430", "sL_NStrLoss": "779810", "sL_ContLoss": "651410", "geom_point": "0101000020E610000013B513A959C25EC03E1C34260AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0338704159999, 49.250616906000104 ], [ -123.033870492999981, 49.25060793200003 ], [ -123.033774741999935, 49.25060680100006 ], [ -123.033756597999954, 49.250606608000076 ], [ -123.033752703999966, 49.249657100000071 ], [ -123.03387209899995, 49.24965851400006 ], [ -123.034544155999981, 49.249661662000058 ], [ -123.036557798999951, 49.249671087000138 ], [ -123.036562801999935, 49.2491965480001 ], [ -123.036567288999976, 49.248768794000057 ], [ -123.037113108999961, 49.2487667770001 ], [ -123.03845964199995, 49.248761823000073 ], [ -123.039111497999926, 49.248759399000072 ], [ -123.039108509999949, 49.249667310000092 ], [ -123.039103212999962, 49.250610306000091 ], [ -123.039101130999981, 49.25107561600008 ], [ -123.039099303999947, 49.251490214000093 ], [ -123.036595692, 49.251486308000089 ], [ -123.03454552, 49.251482700000068 ], [ -123.033862686999953, 49.251481499000128 ], [ -123.0338704159999, 49.250616906000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106295166", "BldgCostT": "69711666", "sL_LossRatio": "0.717862390952549", "sL_AssetLoss": "1612830", "sL_BldgLoss": "1157790", "sL_StrLoss": "502440", "sL_NStrLoss": "655350", "sL_ContLoss": "455040", "geom_point": "0101000020E6100000D1379B5495C25EC061B9008F03A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040918549999915, 49.247885874000083 ], [ -123.041621110999955, 49.247890490000074 ], [ -123.041615700999898, 49.248751494000039 ], [ -123.041780402999962, 49.249183885000072 ], [ -123.041601287999967, 49.249407800000036 ], [ -123.041590483999954, 49.249663311000106 ], [ -123.041597988999982, 49.250148105000058 ], [ -123.04160522699999, 49.250617661000099 ], [ -123.041615269999966, 49.251065310000072 ], [ -123.041624874999968, 49.251493790000026 ], [ -123.041623022999929, 49.251632680000064 ], [ -123.041619388999905, 49.25190250400005 ], [ -123.04161349499995, 49.252340218000015 ], [ -123.039096194999956, 49.252335104000103 ], [ -123.039097738999914, 49.251912182000069 ], [ -123.039099303999947, 49.251490214000093 ], [ -123.039101130999981, 49.25107561600008 ], [ -123.039103212999962, 49.250610306000091 ], [ -123.039108509999949, 49.249667310000092 ], [ -123.039111497999926, 49.248759399000072 ], [ -123.039115814999931, 49.24787399300007 ], [ -123.040918549999915, 49.247885874000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138792395", "BldgCostT": "95331524", "sL_LossRatio": "0.785714776703167", "sL_AssetLoss": "1454790", "sL_BldgLoss": "1143050", "sL_StrLoss": "513210", "sL_NStrLoss": "629840", "sL_ContLoss": "311740", "geom_point": "0101000020E61000007122669B80C25EC0EABF9C135AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03909080399994, 49.253594260000121 ], [ -123.03909201099999, 49.253154695000099 ], [ -123.03657871199999, 49.253150609000052 ], [ -123.036582132000021, 49.252749625000042 ], [ -123.036585704999965, 49.252331016000028 ], [ -123.036590548999953, 49.251922164000078 ], [ -123.036595692, 49.251486308000089 ], [ -123.039099303999947, 49.251490214000093 ], [ -123.039097738999914, 49.251912182000069 ], [ -123.039096194999956, 49.252335104000103 ], [ -123.04161349499995, 49.252340218000015 ], [ -123.041609373999975, 49.252747930000098 ], [ -123.041605205999986, 49.25315968500005 ], [ -123.041603314999961, 49.253413514000044 ], [ -123.041601886999956, 49.25360235800008 ], [ -123.041598801999982, 49.254014405000078 ], [ -123.039089684999951, 49.254007711000057 ], [ -123.03909080399994, 49.253594260000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97218500", "BldgCostT": "60530000", "sL_LossRatio": "0.713550731192194", "sL_AssetLoss": "917611", "sL_BldgLoss": "654762", "sL_StrLoss": "314602", "sL_NStrLoss": "340160", "sL_ContLoss": "262849", "geom_point": "0101000020E61000003D4AA0B9B5C25EC02C7B1A4965A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041601287999967, 49.249407800000036 ], [ -123.041780402999962, 49.249183885000072 ], [ -123.04232231099995, 49.24962480500006 ], [ -123.042797284999963, 49.249822825000074 ], [ -123.043458093999902, 49.250098283000057 ], [ -123.043822508999966, 49.250328944000017 ], [ -123.044069958999941, 49.250584343000078 ], [ -123.044156362999985, 49.25067226700002 ], [ -123.044218589999957, 49.250837915000034 ], [ -123.044297373999925, 49.251261652000018 ], [ -123.044295921999947, 49.251500321000066 ], [ -123.044284598999965, 49.252346806000055 ], [ -123.044275210999942, 49.25318419300006 ], [ -123.04427189099998, 49.253412382000114 ], [ -123.044263095999924, 49.254020699000108 ], [ -123.044263001999951, 49.25438918600004 ], [ -123.044246401999956, 49.255403895000015 ], [ -123.04354947, 49.255402971000109 ], [ -123.041585993999888, 49.255400293000044 ], [ -123.0415838, 49.255585794000062 ], [ -123.039081401999965, 49.255580304000063 ], [ -123.039083294999926, 49.255186429000076 ], [ -123.039085290999964, 49.254765094000113 ], [ -123.039087510999934, 49.254385883000104 ], [ -123.039089684999951, 49.254007711000057 ], [ -123.041598801999982, 49.254014405000078 ], [ -123.041601886999956, 49.25360235800008 ], [ -123.041603314999961, 49.253413514000044 ], [ -123.041605205999986, 49.25315968500005 ], [ -123.041609373999975, 49.252747930000098 ], [ -123.04161349499995, 49.252340218000015 ], [ -123.041619388999905, 49.25190250400005 ], [ -123.041623022999929, 49.251632680000064 ], [ -123.041624874999968, 49.251493790000026 ], [ -123.041615269999966, 49.251065310000072 ], [ -123.04160522699999, 49.250617661000099 ], [ -123.041597988999982, 49.250148105000058 ], [ -123.041590483999954, 49.249663311000106 ], [ -123.041601287999967, 49.249407800000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97295621", "BldgCostT": "63706379", "sL_LossRatio": "0.714164506972726", "sL_AssetLoss": "1296480", "sL_BldgLoss": "925900", "sL_StrLoss": "402960", "sL_NStrLoss": "522940", "sL_ContLoss": "370580", "geom_point": "0101000020E61000000353286658C25EC00C1FB699AFA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036569593999928, 49.254002510000063 ], [ -123.039089684999951, 49.254007711000057 ], [ -123.039087510999934, 49.254385883000104 ], [ -123.039085290999964, 49.254765094000113 ], [ -123.039083294999926, 49.255186429000076 ], [ -123.039081401999965, 49.255580304000063 ], [ -123.039080179999956, 49.255995979000119 ], [ -123.039079128999944, 49.256369303000035 ], [ -123.036550301999952, 49.256389894000066 ], [ -123.034493710999982, 49.256406134000123 ], [ -123.033849786999923, 49.256411195000048 ], [ -123.03373309599999, 49.256409792000071 ], [ -123.033734842999948, 49.255979613000065 ], [ -123.033736553999972, 49.255563873000042 ], [ -123.033739883999942, 49.254744406000036 ], [ -123.033739889999964, 49.254735399000076 ], [ -123.03385669799999, 49.254734983000041 ], [ -123.03452000899992, 49.254738881000044 ], [ -123.036562992999933, 49.254750796000067 ], [ -123.036566202999907, 49.25438681300006 ], [ -123.036569593999928, 49.254002510000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84910332", "BldgCostT": "57823332", "sL_LossRatio": "0.743474515667663", "sL_AssetLoss": "1230560", "sL_BldgLoss": "914890", "sL_StrLoss": "428680", "sL_NStrLoss": "486210", "sL_ContLoss": "315670", "geom_point": "0101000020E6100000CAC27C1E48C25EC023FBD63D68A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033746719999954, 49.253145698000012 ], [ -123.03374858, 49.252777300000091 ], [ -123.03375100099997, 49.252305389000099 ], [ -123.033752251999957, 49.251922749000066 ], [ -123.033753724999926, 49.251479674000052 ], [ -123.033756556999961, 49.250615627000073 ], [ -123.033756597999954, 49.250606608000076 ], [ -123.033774741999935, 49.25060680100006 ], [ -123.033870492999981, 49.25060793200003 ], [ -123.0338704159999, 49.250616906000104 ], [ -123.033862686999953, 49.251481499000128 ], [ -123.03454552, 49.251482700000068 ], [ -123.036595692, 49.251486308000089 ], [ -123.036590548999953, 49.251922164000078 ], [ -123.036585704999965, 49.252331016000028 ], [ -123.036582132000021, 49.252749625000042 ], [ -123.03657871199999, 49.253150609000052 ], [ -123.03909201099999, 49.253154695000099 ], [ -123.03909080399994, 49.253594260000121 ], [ -123.039089684999951, 49.254007711000057 ], [ -123.036569593999928, 49.254002510000063 ], [ -123.036566202999907, 49.25438681300006 ], [ -123.036562992999933, 49.254750796000067 ], [ -123.03452000899992, 49.254738881000044 ], [ -123.03385669799999, 49.254734983000041 ], [ -123.033739889999964, 49.254735399000076 ], [ -123.033746088999948, 49.253994207000048 ], [ -123.033746719999954, 49.253145698000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102952553", "BldgCostT": "68188746", "sL_LossRatio": "0.723211811768047", "sL_AssetLoss": "1436398", "sL_BldgLoss": "1038820", "sL_StrLoss": "491610", "sL_NStrLoss": "547210", "sL_ContLoss": "397578", "geom_point": "0101000020E61000000EF6DCF809C25EC03C23C6425FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03239181399999, 49.25616208700005 ], [ -123.032431698999943, 49.254743593000086 ], [ -123.031633604999968, 49.254734916000146 ], [ -123.030972585999962, 49.254727691000085 ], [ -123.030683594999957, 49.254736891000078 ], [ -123.030530594999973, 49.254765997000085 ], [ -123.030345672999943, 49.254714996000104 ], [ -123.029301676999935, 49.254029595000056 ], [ -123.030194501999986, 49.25342810700004 ], [ -123.030986385999967, 49.25290220700002 ], [ -123.031037597999969, 49.252810799000081 ], [ -123.031039369999917, 49.252768767000084 ], [ -123.031058197999954, 49.252316901000071 ], [ -123.030417505999964, 49.252305503000052 ], [ -123.030200477, 49.252261694000047 ], [ -123.028648011999906, 49.25123979500011 ], [ -123.028551319999963, 49.251097496000021 ], [ -123.02852251799996, 49.250625608000064 ], [ -123.029942023999936, 49.250615950000054 ], [ -123.031068587999982, 49.250608295000049 ], [ -123.03306087699994, 49.250607048000084 ], [ -123.033742802999924, 49.250606614000034 ], [ -123.033756597999954, 49.250606608000076 ], [ -123.033756556999961, 49.250615627000073 ], [ -123.033753724999926, 49.251479674000052 ], [ -123.033752251999957, 49.251922749000066 ], [ -123.03375100099997, 49.252305389000099 ], [ -123.03374858, 49.252777300000091 ], [ -123.033746719999954, 49.253145698000012 ], [ -123.033746088999948, 49.253994207000048 ], [ -123.033739889999964, 49.254735399000076 ], [ -123.033739883999942, 49.254744406000036 ], [ -123.033736553999972, 49.255563873000042 ], [ -123.033734842999948, 49.255979613000065 ], [ -123.03373309599999, 49.256409792000071 ], [ -123.032689704999925, 49.256400891000112 ], [ -123.032530883, 49.256349697000104 ], [ -123.032462128999981, 49.256291716000078 ], [ -123.032443608999984, 49.256276089000018 ], [ -123.032437535999946, 49.256262734000117 ], [ -123.03239181399999, 49.25616208700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139374144", "BldgCostT": "91136523", "sL_LossRatio": "0.73434094761482", "sL_AssetLoss": "1486680", "sL_BldgLoss": "1091730", "sL_StrLoss": "539210", "sL_NStrLoss": "552520", "sL_ContLoss": "394950", "geom_point": "0101000020E61000004C0E1B3CFEC15EC0AF6E5056E79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03308653500001, 49.247874855000077 ], [ -123.033763822999916, 49.247872005000055 ], [ -123.033754597999973, 49.24876890600008 ], [ -123.033752703999966, 49.249657100000071 ], [ -123.033756597999954, 49.250606608000076 ], [ -123.033742802999924, 49.250606614000034 ], [ -123.03306087699994, 49.250607048000084 ], [ -123.031068587999982, 49.250608295000049 ], [ -123.029942023999936, 49.250615950000054 ], [ -123.02852251799996, 49.250625608000064 ], [ -123.028525326999898, 49.250107162000113 ], [ -123.028527601999897, 49.249687085000069 ], [ -123.028528904999973, 49.249198598000127 ], [ -123.02852999199996, 49.248792694000059 ], [ -123.028532101999957, 49.248326076000076 ], [ -123.028534113999939, 49.24789108600001 ], [ -123.031064408999939, 49.247883302000055 ], [ -123.03308653500001, 49.247874855000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116539394", "BldgCostT": "77281523", "sL_LossRatio": "0.719308294133418", "sL_AssetLoss": "1641160", "sL_BldgLoss": "1180500", "sL_StrLoss": "548820", "sL_NStrLoss": "631680", "sL_ContLoss": "460660", "geom_point": "0101000020E610000080603365CCC15EC0001B10212EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026516193999967, 49.252205315000076 ], [ -123.02630699599996, 49.252041902000038 ], [ -123.026243192999914, 49.251933030000032 ], [ -123.026230198999912, 49.251910901000038 ], [ -123.026240316999974, 49.251516710000061 ], [ -123.02624597099998, 49.251115393000092 ], [ -123.026252711, 49.25063868400008 ], [ -123.026256650999969, 49.250197722000081 ], [ -123.026257454999907, 49.250107769000103 ], [ -123.026261179999906, 49.249691303000091 ], [ -123.026262313, 49.249217167000076 ], [ -123.026263287999925, 49.248800496000065 ], [ -123.02852999199996, 49.248792694000059 ], [ -123.028528904999973, 49.249198598000127 ], [ -123.028527601999897, 49.249687085000069 ], [ -123.028525326999898, 49.250107162000113 ], [ -123.02852251799996, 49.250625608000064 ], [ -123.028551319999963, 49.251097496000021 ], [ -123.028648011999906, 49.25123979500011 ], [ -123.030200477, 49.252261694000047 ], [ -123.030417505999964, 49.252305503000052 ], [ -123.031058197999954, 49.252316901000071 ], [ -123.031039369999917, 49.252768767000084 ], [ -123.031037597999969, 49.252810799000081 ], [ -123.030986385999967, 49.25290220700002 ], [ -123.030194501999986, 49.25342810700004 ], [ -123.029301676999935, 49.254029595000056 ], [ -123.028797694999938, 49.253699534000063 ], [ -123.026516193999967, 49.252205315000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161710000", "BldgCostT": "109870000", "sL_LossRatio": "0.811580626376687", "sL_AssetLoss": "1342898", "sL_BldgLoss": "1089870", "sL_StrLoss": "534260", "sL_NStrLoss": "555610", "sL_ContLoss": "253028", "geom_point": "0101000020E61000007455B9B3A3C15EC09C8A1A6DD19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02787869799999, 49.247047187000106 ], [ -123.028538408999964, 49.247052486000037 ], [ -123.028536396999954, 49.247444518000108 ], [ -123.028534113999939, 49.24789108600001 ], [ -123.028532101999957, 49.248326076000076 ], [ -123.02852999199996, 49.248792694000059 ], [ -123.026263287999925, 49.248800496000065 ], [ -123.026262313, 49.249217167000076 ], [ -123.026261179999906, 49.249691303000091 ], [ -123.026257454999907, 49.250107769000103 ], [ -123.026256650999969, 49.250197722000081 ], [ -123.026252711, 49.25063868400008 ], [ -123.02537338799999, 49.250642397000078 ], [ -123.02455560599999, 49.250647702000045 ], [ -123.023786398999917, 49.250652686000073 ], [ -123.023663566999943, 49.250655081000048 ], [ -123.023518207, 49.250657908000072 ], [ -123.023526586999978, 49.249735699000077 ], [ -123.023532265999975, 49.248841335000051 ], [ -123.023532291000024, 49.248832292000053 ], [ -123.023539194999969, 49.247911887000086 ], [ -123.02354373699994, 49.247056305000065 ], [ -123.023543798999981, 49.247047307000088 ], [ -123.023660415000023, 49.247047079000076 ], [ -123.023674136999958, 49.247047040000098 ], [ -123.023848700999935, 49.247046691000087 ], [ -123.024471238999979, 49.247043487000049 ], [ -123.026270808999953, 49.247034203000105 ], [ -123.02787869799999, 49.247047187000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143747417", "BldgCostT": "91411667", "sL_LossRatio": "0.704851019237994", "sL_AssetLoss": "2023080", "sL_BldgLoss": "1425970", "sL_StrLoss": "633750", "sL_NStrLoss": "792220", "sL_ContLoss": "597110", "geom_point": "0101000020E610000020A3D157AFC15EC07B415D077BA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.024638108999952, 49.255040583000017 ], [ -123.024634181999943, 49.254202702000022 ], [ -123.023805806, 49.254205086000105 ], [ -123.023506614999917, 49.254201302000084 ], [ -123.023508800999963, 49.253310503000087 ], [ -123.023508905999947, 49.253283247000105 ], [ -123.02350959099999, 49.253136132000058 ], [ -123.023512912999976, 49.252410701000045 ], [ -123.023515007999976, 49.251500996000075 ], [ -123.02351814599993, 49.250666963000057 ], [ -123.023518207, 49.250657908000072 ], [ -123.023663566999943, 49.250655081000048 ], [ -123.023786398999917, 49.250652686000073 ], [ -123.02455560599999, 49.250647702000045 ], [ -123.02537338799999, 49.250642397000078 ], [ -123.026252711, 49.25063868400008 ], [ -123.02624597099998, 49.251115393000092 ], [ -123.026240316999974, 49.251516710000061 ], [ -123.026230198999912, 49.251910901000038 ], [ -123.026243192999914, 49.251933030000032 ], [ -123.02630699599996, 49.252041902000038 ], [ -123.026516193999967, 49.252205315000076 ], [ -123.028797694999938, 49.253699534000063 ], [ -123.029301676999935, 49.254029595000056 ], [ -123.030345672999943, 49.254714996000104 ], [ -123.030530594999973, 49.254765997000085 ], [ -123.030445285999946, 49.254875400000017 ], [ -123.02977823, 49.255314166000112 ], [ -123.029372700999915, 49.25558090099999 ], [ -123.028904418999957, 49.255884344000073 ], [ -123.028433989999925, 49.256189204000059 ], [ -123.027848107999901, 49.256586757000029 ], [ -123.027392885999944, 49.256895594000106 ], [ -123.02685411, 49.256547321 ], [ -123.02670429299998, 49.256450486000091 ], [ -123.026336110999978, 49.256195409000043 ], [ -123.026142191999952, 49.256069029000088 ], [ -123.025679422999957, 49.255767404000018 ], [ -123.025257702999966, 49.255489108000084 ], [ -123.024733901999937, 49.255153095000018 ], [ -123.024638108999952, 49.255040583000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178282485", "BldgCostT": "116503315", "sL_LossRatio": "0.729449041583743", "sL_AssetLoss": "1909400", "sL_BldgLoss": "1392810", "sL_StrLoss": "635420", "sL_NStrLoss": "757390", "sL_ContLoss": "516590", "geom_point": "0101000020E6100000FEBFC87061C15EC0A0B52E775EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022823226999932, 49.250652245000047 ], [ -123.023518207, 49.250657908000072 ], [ -123.02351814599993, 49.250666963000057 ], [ -123.023515007999976, 49.251500996000075 ], [ -123.023512912999976, 49.252410701000045 ], [ -123.02350959099999, 49.253136132000058 ], [ -123.023508905999947, 49.253283247000105 ], [ -123.023508800999963, 49.253310503000087 ], [ -123.023506614999917, 49.254201302000084 ], [ -123.023504501000019, 49.254725496000148 ], [ -123.022423512999978, 49.254726299000012 ], [ -123.021385708999901, 49.254710418000037 ], [ -123.021704081999971, 49.255490213000023 ], [ -123.019777415999954, 49.255482 ], [ -123.019784606999977, 49.254685907000045 ], [ -123.019785881999951, 49.254174292000123 ], [ -123.019789730999946, 49.25374302500007 ], [ -123.01979360199999, 49.25330609800006 ], [ -123.019797190999967, 49.252870522000059 ], [ -123.019801109999946, 49.252398289000098 ], [ -123.019803354999965, 49.251962048000031 ], [ -123.019805686999931, 49.251513014000082 ], [ -123.019810017999973, 49.251080592000079 ], [ -123.019814496999942, 49.250627691000069 ], [ -123.022823226999932, 49.250652245000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "387822311", "BldgCostT": "265813190", "sL_LossRatio": "0.790724992554846", "sL_AssetLoss": "2417680", "sL_BldgLoss": "1911720", "sL_StrLoss": "776820", "sL_NStrLoss": "1134900", "sL_ContLoss": "505960", "geom_point": "0101000020E61000005D454D2E65C15EC0FC442ACEC9A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022423512999978, 49.254726299000012 ], [ -123.023504501000019, 49.254725496000148 ], [ -123.02350169, 49.255304693000035 ], [ -123.023501073999967, 49.255523389000111 ], [ -123.02349848599999, 49.256426109000074 ], [ -123.023495605999955, 49.25732771000002 ], [ -123.022785924999951, 49.25731627000004 ], [ -123.021693781999886, 49.257298699000046 ], [ -123.019762291999939, 49.257278707000097 ], [ -123.019765681999942, 49.2568372490001 ], [ -123.019769194999967, 49.256380799000119 ], [ -123.019773242999975, 49.25593774500004 ], [ -123.019777415999954, 49.255482 ], [ -123.021704081999971, 49.255490213000023 ], [ -123.021385708999901, 49.254710418000037 ], [ -123.022423512999978, 49.254726299000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146330500", "BldgCostT": "85720000", "sL_LossRatio": "0.622308052434457", "sL_AssetLoss": "3332160", "sL_BldgLoss": "2073630", "sL_StrLoss": "887850", "sL_NStrLoss": "1185780", "sL_ContLoss": "1258530", "geom_point": "0101000020E610000088F33F1219C15EC09F05E3D8E1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.019916524999971, 49.258770166000076 ], [ -123.019172289999943, 49.258380278000082 ], [ -123.01880239799999, 49.258428617000028 ], [ -123.018355594999974, 49.258434289000064 ], [ -123.018097034999982, 49.258413502000089 ], [ -123.01801394899995, 49.258406824000119 ], [ -123.016608868999981, 49.258105897000029 ], [ -123.016275421999978, 49.25803447600007 ], [ -123.01602952199994, 49.258013262000048 ], [ -123.015894760999956, 49.258036558000086 ], [ -123.015622209999933, 49.258109177000051 ], [ -123.015340851999937, 49.258148238000018 ], [ -123.013953954999977, 49.258139601000103 ], [ -123.013355382999976, 49.258113106000039 ], [ -123.012044284, 49.258100203000069 ], [ -123.012041663999966, 49.25804001200008 ], [ -123.01202925699998, 49.25775751400009 ], [ -123.012019870999964, 49.257682781000028 ], [ -123.011999314, 49.257519805000058 ], [ -123.011993746999934, 49.257414221000097 ], [ -123.011982006999972, 49.257190500000078 ], [ -123.011990832, 49.256749274000143 ], [ -123.011992582999937, 49.256662904000052 ], [ -123.011716188999984, 49.256326509000132 ], [ -123.010973907999983, 49.25533145200005 ], [ -123.010710987999914, 49.254978996000084 ], [ -123.010720885999973, 49.254715737000033 ], [ -123.010722491, 49.254672108000101 ], [ -123.012200003999965, 49.254680581000095 ], [ -123.012225058999903, 49.254672424000034 ], [ -123.012350117999915, 49.254631593000042 ], [ -123.013209921999959, 49.254645532000076 ], [ -123.013484799999944, 49.254649992000132 ], [ -123.013917110999927, 49.254656991000033 ], [ -123.015098000999956, 49.254663505000067 ], [ -123.016724422999985, 49.254671300000048 ], [ -123.017510571999964, 49.254675058000025 ], [ -123.019784606999977, 49.254685907000045 ], [ -123.019777415999954, 49.255482 ], [ -123.019773242999975, 49.25593774500004 ], [ -123.019769194999967, 49.256380799000119 ], [ -123.019765681999942, 49.2568372490001 ], [ -123.019762291999939, 49.257278707000097 ], [ -123.021693781999886, 49.257298699000046 ], [ -123.022785924999951, 49.25731627000004 ], [ -123.023495605999955, 49.25732771000002 ], [ -123.023482696999949, 49.258212792000045 ], [ -123.023477092999912, 49.259113514000099 ], [ -123.023520989999938, 49.259823300000065 ], [ -123.023524306999931, 49.259876786000028 ], [ -123.022688916999968, 49.260265498000095 ], [ -123.022562063999942, 49.260464629000055 ], [ -123.022348901999962, 49.260317088000122 ], [ -123.021279658999958, 49.259577098000079 ], [ -123.019916524999971, 49.258770166000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196608341", "BldgCostT": "128526792", "sL_LossRatio": "0.766910571925079", "sL_AssetLoss": "2595270", "sL_BldgLoss": "1990340", "sL_StrLoss": "876440", "sL_NStrLoss": "1113900", "sL_ContLoss": "604930", "geom_point": "0101000020E6100000BEF37AE61BC15EC0D12624257FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.015153006, 49.253594009000047 ], [ -123.015159100999966, 49.252923085000127 ], [ -123.015666295999893, 49.252939783000073 ], [ -123.016473210999933, 49.252887308000084 ], [ -123.016885908999882, 49.252876187000027 ], [ -123.017153703999924, 49.252942202000064 ], [ -123.017591218999939, 49.25316600700009 ], [ -123.017948390999948, 49.253293006000042 ], [ -123.018000585, 49.253293357000139 ], [ -123.018056486999953, 49.253293781000117 ], [ -123.018771293999919, 49.253298840000035 ], [ -123.01979360199999, 49.25330609800006 ], [ -123.019789730999946, 49.25374302500007 ], [ -123.019785881999951, 49.254174292000123 ], [ -123.019784606999977, 49.254685907000045 ], [ -123.017510571999964, 49.254675058000025 ], [ -123.016724422999985, 49.254671300000048 ], [ -123.015098000999956, 49.254663505000067 ], [ -123.015123535999962, 49.254166961000124 ], [ -123.015153006, 49.253594009000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57879499", "BldgCostT": "38659999", "sL_LossRatio": "0.705789392278569", "sL_AssetLoss": "1487030", "sL_BldgLoss": "1049530", "sL_StrLoss": "381900", "sL_NStrLoss": "667630", "sL_ContLoss": "437500", "geom_point": "0101000020E6100000F12155D212C15EC0AF092FE237A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017153703999924, 49.252942202000064 ], [ -123.016885908999882, 49.252876187000027 ], [ -123.016473210999933, 49.252887308000084 ], [ -123.015666295999893, 49.252939783000073 ], [ -123.015159100999966, 49.252923085000127 ], [ -123.015162197, 49.252661898000056 ], [ -123.015163795999982, 49.252530414000056 ], [ -123.01510185599993, 49.252347461000092 ], [ -123.015011413999929, 49.252080304000032 ], [ -123.014694685999942, 49.251815694000079 ], [ -123.014346022999959, 49.251814958000104 ], [ -123.013142805999976, 49.251812405000059 ], [ -123.013147685999982, 49.251378329000033 ], [ -123.013152996999949, 49.250907389000098 ], [ -123.012414000999954, 49.250908500000065 ], [ -123.012382941999959, 49.250314638000077 ], [ -123.015416707999947, 49.250520496000057 ], [ -123.016287902000016, 49.250855405000053 ], [ -123.016555383999986, 49.250860097 ], [ -123.017426518999969, 49.250598603000107 ], [ -123.017940194999937, 49.250604860000095 ], [ -123.019814496999942, 49.250627691000069 ], [ -123.019810017999973, 49.251080592000079 ], [ -123.019805686999931, 49.251513014000082 ], [ -123.019803354999965, 49.251962048000031 ], [ -123.019801109999946, 49.252398289000098 ], [ -123.019797190999967, 49.252870522000059 ], [ -123.01979360199999, 49.25330609800006 ], [ -123.018771293999919, 49.253298840000035 ], [ -123.018056486999953, 49.253293781000117 ], [ -123.018000585, 49.253293357000139 ], [ -123.017948390999948, 49.253293006000042 ], [ -123.017591218999939, 49.25316600700009 ], [ -123.017153703999924, 49.252942202000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119591833", "BldgCostT": "80818333", "sL_LossRatio": "0.789958874473973", "sL_AssetLoss": "1003513", "sL_BldgLoss": "792734", "sL_StrLoss": "355694", "sL_NStrLoss": "437040", "sL_ContLoss": "210779", "geom_point": "0101000020E61000002BA9F2C1DBC05EC0B42771EB28A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.010722500999947, 49.254586494000087 ], [ -123.010797833, 49.251082110000056 ], [ -123.01079998099999, 49.250983046000144 ], [ -123.01080232000001, 49.250874708000033 ], [ -123.010781708999929, 49.250662395000049 ], [ -123.01067361299998, 49.250420694000056 ], [ -123.010331588999946, 49.249994216000125 ], [ -123.010046091, 49.249565590000046 ], [ -123.010114608999984, 49.249205282000084 ], [ -123.010833986999899, 49.249317202000078 ], [ -123.01125740199997, 49.249310892000103 ], [ -123.012384712999918, 49.249191287000052 ], [ -123.012761278999974, 49.248762536000079 ], [ -123.012788098999962, 49.248682195000086 ], [ -123.012537985999984, 49.247809592000067 ], [ -123.014619607999975, 49.247818623000057 ], [ -123.015123421999974, 49.247820806000078 ], [ -123.01528599199996, 49.24785499300009 ], [ -123.015273956, 49.248337813000084 ], [ -123.015264282999965, 49.248725513000103 ], [ -123.015263620999946, 49.248885810000054 ], [ -123.016127116999925, 49.248806105000028 ], [ -123.01679064299995, 49.248813951000024 ], [ -123.017437799999954, 49.248821588000084 ], [ -123.017439291999935, 49.249254792000087 ], [ -123.017440801999982, 49.249693702000066 ], [ -123.01743365099999, 49.250145485000068 ], [ -123.017426518999969, 49.250598603000107 ], [ -123.016555383999986, 49.250860097 ], [ -123.016287902000016, 49.250855405000053 ], [ -123.015416707999947, 49.250520496000057 ], [ -123.012382941999959, 49.250314638000077 ], [ -123.012414000999954, 49.250908500000065 ], [ -123.013152996999949, 49.250907389000098 ], [ -123.013147685999982, 49.251378329000033 ], [ -123.013142805999976, 49.251812405000059 ], [ -123.014346022999959, 49.251814958000104 ], [ -123.014694685999942, 49.251815694000079 ], [ -123.015011413999929, 49.252080304000032 ], [ -123.01510185599993, 49.252347461000092 ], [ -123.015163795999982, 49.252530414000056 ], [ -123.015162197, 49.252661898000056 ], [ -123.015159100999966, 49.252923085000127 ], [ -123.015153006, 49.253594009000047 ], [ -123.015123535999962, 49.254166961000124 ], [ -123.015098000999956, 49.254663505000067 ], [ -123.013917110999927, 49.254656991000033 ], [ -123.013484799999944, 49.254649992000132 ], [ -123.013209921999959, 49.254645532000076 ], [ -123.012350117999915, 49.254631593000042 ], [ -123.012225058999903, 49.254672424000034 ], [ -123.012200003999965, 49.254680581000095 ], [ -123.010722491, 49.254672108000101 ], [ -123.010722501999965, 49.25466173100007 ], [ -123.010722500999947, 49.254586494000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "303613206", "BldgCostT": "204727039", "sL_LossRatio": "0.79353545022135", "sL_AssetLoss": "1596337", "sL_BldgLoss": "1266750", "sL_StrLoss": "605420", "sL_NStrLoss": "661330", "sL_ContLoss": "329587", "geom_point": "0101000020E6100000D52D85515AC15EC00DCBEA46ED9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022863843, 49.247909502000063 ], [ -123.023539194999969, 49.247911887000086 ], [ -123.023532291000024, 49.248832292000053 ], [ -123.023532265999975, 49.248841335000051 ], [ -123.023526586999978, 49.249735699000077 ], [ -123.023518207, 49.250657908000072 ], [ -123.022823226999932, 49.250652245000047 ], [ -123.019814496999942, 49.250627691000069 ], [ -123.017940194999937, 49.250604860000095 ], [ -123.017426518999969, 49.250598603000107 ], [ -123.01743365099999, 49.250145485000068 ], [ -123.017440801999982, 49.249693702000066 ], [ -123.017923683999953, 49.249696977000035 ], [ -123.019818494999924, 49.249709897000066 ], [ -123.019809320999968, 49.249263191000111 ], [ -123.019800210999989, 49.248819406000031 ], [ -123.01981582399992, 49.248364110000075 ], [ -123.019831788999966, 49.247898696000028 ], [ -123.022863843, 49.247909502000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237238584", "BldgCostT": "162458334", "sL_LossRatio": "0.798572796608934", "sL_AssetLoss": "2057170", "sL_BldgLoss": "1642800", "sL_StrLoss": "740030", "sL_NStrLoss": "902770", "sL_ContLoss": "414370", "geom_point": "0101000020E61000007D57A8FB21C15EC0C5E93587B59F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017439291999935, 49.249254792000087 ], [ -123.017437799999954, 49.248821588000084 ], [ -123.01679064299995, 49.248813951000024 ], [ -123.016127116999925, 49.248806105000028 ], [ -123.015263620999946, 49.248885810000054 ], [ -123.015264282999965, 49.248725513000103 ], [ -123.015273956, 49.248337813000084 ], [ -123.01528599199996, 49.24785499300009 ], [ -123.015282643999939, 49.247446983000032 ], [ -123.015279004, 49.24700259100014 ], [ -123.01528267099999, 49.246538634000082 ], [ -123.015286107999927, 49.246102002000065 ], [ -123.017858436999958, 49.246107888000068 ], [ -123.019795514999899, 49.24611229500006 ], [ -123.019801595999979, 49.246555965000034 ], [ -123.019807615, 49.246993599000064 ], [ -123.019819951999963, 49.247455283000136 ], [ -123.019831788999966, 49.247898696000028 ], [ -123.01981582399992, 49.248364110000075 ], [ -123.019800210999989, 49.248819406000031 ], [ -123.019809320999968, 49.249263191000111 ], [ -123.019818494999924, 49.249709897000066 ], [ -123.017923683999953, 49.249696977000035 ], [ -123.017440801999982, 49.249693702000066 ], [ -123.017439291999935, 49.249254792000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180208832", "BldgCostT": "118998332", "sL_LossRatio": "0.775871938504314", "sL_AssetLoss": "1467420", "sL_BldgLoss": "1138530", "sL_StrLoss": "547830", "sL_NStrLoss": "590700", "sL_ContLoss": "328890", "geom_point": "0101000020E6100000D792E92B63C15EC0CC2B42776A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022985197999958, 49.242982505000043 ], [ -123.023559883999923, 49.242985004000047 ], [ -123.02355799399993, 49.244428097000117 ], [ -123.023556463999924, 49.244828043000034 ], [ -123.023556388999978, 49.244844185000069 ], [ -123.023556213999953, 49.244898188000022 ], [ -123.023554438999938, 49.245356151000109 ], [ -123.023551316999928, 49.246180897000059 ], [ -123.023543798999981, 49.247047307000088 ], [ -123.02354373699994, 49.247056305000065 ], [ -123.023539194999969, 49.247911887000086 ], [ -123.022863843, 49.247909502000063 ], [ -123.019831788999966, 49.247898696000028 ], [ -123.019819951999963, 49.247455283000136 ], [ -123.019807615, 49.246993599000064 ], [ -123.019801595999979, 49.246555965000034 ], [ -123.019795514999899, 49.24611229500006 ], [ -123.019801322999939, 49.245278567000064 ], [ -123.01980170399996, 49.245225193000081 ], [ -123.019801510999912, 49.244843200000105 ], [ -123.0198020939999, 49.244406298000065 ], [ -123.019799801999937, 49.244014402000111 ], [ -123.01979960099996, 49.242968596000082 ], [ -123.022985197999958, 49.242982505000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105680833", "BldgCostT": "70993333", "sL_LossRatio": "0.740985068310966", "sL_AssetLoss": "1323360", "sL_BldgLoss": "980590", "sL_StrLoss": "466870", "sL_NStrLoss": "513720", "sL_ContLoss": "342770", "geom_point": "0101000020E6100000B5DEC2FC0DC15EC0CF5CD010489F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.01529430299999, 49.245369227000047 ], [ -123.015297115999928, 49.245119511000027 ], [ -123.012542077999981, 49.245100900000082 ], [ -123.012546222999902, 49.244758705000031 ], [ -123.012548124999981, 49.24402639900007 ], [ -123.012550113999978, 49.243561497000087 ], [ -123.012552797999916, 49.242950108000116 ], [ -123.013493295999979, 49.242952702000089 ], [ -123.015817790999961, 49.242958517000069 ], [ -123.017100397999926, 49.242959698000078 ], [ -123.019238419999922, 49.242966752000036 ], [ -123.01979960099996, 49.242968596000082 ], [ -123.019799801999937, 49.244014402000111 ], [ -123.0198020939999, 49.244406298000065 ], [ -123.019801510999912, 49.244843200000105 ], [ -123.01980170399996, 49.245225193000081 ], [ -123.019801322999939, 49.245278567000064 ], [ -123.019795514999899, 49.24611229500006 ], [ -123.017858436999958, 49.246107888000068 ], [ -123.015286107999927, 49.246102002000065 ], [ -123.015291487999946, 49.245621129000028 ], [ -123.01529430299999, 49.245369227000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54748500", "BldgCostT": "36285000", "sL_LossRatio": "0.729288604172677", "sL_AssetLoss": "838886", "sL_BldgLoss": "611790", "sL_StrLoss": "280740", "sL_NStrLoss": "331050", "sL_ContLoss": "227096", "geom_point": "0101000020E61000005C6E82D244C15EC0ECE4F327FD9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.015824098999957, 49.242093006000047 ], [ -123.015827899999977, 49.241284991000065 ], [ -123.017119399999984, 49.241296394000088 ], [ -123.01860450199996, 49.241307783000067 ], [ -123.019279388999962, 49.241306098000024 ], [ -123.019802119999952, 49.241304802000109 ], [ -123.01979211699998, 49.242059409000021 ], [ -123.021038193, 49.24204970600006 ], [ -123.02104228899999, 49.241608284000108 ], [ -123.021048390999937, 49.240950086000034 ], [ -123.02356977899997, 49.240967491000063 ], [ -123.023570529999944, 49.241490805000112 ], [ -123.023570599999985, 49.241530297000075 ], [ -123.02357128899996, 49.242048504000081 ], [ -123.023571314999955, 49.242057501000048 ], [ -123.023565135999917, 49.242561265000077 ], [ -123.023565006999945, 49.242570343000047 ], [ -123.023559883999923, 49.242985004000047 ], [ -123.022985197999958, 49.242982505000043 ], [ -123.01979960099996, 49.242968596000082 ], [ -123.019238419999922, 49.242966752000036 ], [ -123.017100397999926, 49.242959698000078 ], [ -123.015817790999961, 49.242958517000069 ], [ -123.015824098999957, 49.242093006000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "278330060", "BldgCostT": "182783189", "sL_LossRatio": "0.775985437839946", "sL_AssetLoss": "2307350", "sL_BldgLoss": "1790470", "sL_StrLoss": "840580", "sL_NStrLoss": "949890", "sL_ContLoss": "516880", "geom_point": "0101000020E61000004973B87709C15EC07F15A610C49E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.013497619999924, 49.238767601000049 ], [ -123.013499412000016, 49.238375793000081 ], [ -123.014177280999931, 49.238377864000029 ], [ -123.015840093999884, 49.238382891000107 ], [ -123.015840494999949, 49.238761295000117 ], [ -123.019341678999922, 49.238780891000054 ], [ -123.019844496999966, 49.238783709000053 ], [ -123.019836407999946, 49.239872607000116 ], [ -123.019828589000014, 49.240208404000079 ], [ -123.019802119999952, 49.241304802000109 ], [ -123.019279388999962, 49.241306098000024 ], [ -123.01860450199996, 49.241307783000067 ], [ -123.017119399999984, 49.241296394000088 ], [ -123.015827899999977, 49.241284991000065 ], [ -123.015824098999957, 49.242093006000047 ], [ -123.015817790999961, 49.242958517000069 ], [ -123.013493295999979, 49.242952702000089 ], [ -123.013496015000015, 49.241267306000104 ], [ -123.01349751799999, 49.240844797000079 ], [ -123.013498890999955, 49.240453892000062 ], [ -123.013498130999949, 49.240026199000141 ], [ -123.013497815, 49.239831404000071 ], [ -123.013498491999897, 49.239607209000027 ], [ -123.013498051999974, 49.239171656000046 ], [ -123.013497619999924, 49.238767601000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170414334", "BldgCostT": "107003334", "sL_LossRatio": "0.739689954595562", "sL_AssetLoss": "1680012", "sL_BldgLoss": "1242688", "sL_StrLoss": "615290", "sL_NStrLoss": "627398", "sL_ContLoss": "437324", "geom_point": "0101000020E6100000C1F80E23A9C05EC0D4FC63E78E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.012871799999971, 49.236938178000081 ], [ -123.013502497, 49.236941702000131 ], [ -123.013501907999981, 49.237471550000066 ], [ -123.013501398999935, 49.237918184000094 ], [ -123.013499412000016, 49.238375793000081 ], [ -123.013497619999924, 49.238767601000049 ], [ -123.013498051999974, 49.239171656000046 ], [ -123.013498491999897, 49.239607209000027 ], [ -123.013497815, 49.239831404000071 ], [ -123.013498130999949, 49.240026199000141 ], [ -123.013498890999955, 49.240453892000062 ], [ -123.01349751799999, 49.240844797000079 ], [ -123.013496015000015, 49.241267306000104 ], [ -123.012489289000015, 49.24120610300011 ], [ -123.011021678999924, 49.24096640100008 ], [ -123.01032661, 49.240778599000052 ], [ -123.008969611999973, 49.2403131 ], [ -123.008154871999963, 49.239914892000058 ], [ -123.00790676599992, 49.239723053000056 ], [ -123.007635157999971, 49.239513046000027 ], [ -123.007599017999965, 49.23948509700007 ], [ -123.007194651999953, 49.239133826000085 ], [ -123.006808397999961, 49.238798293000038 ], [ -123.006540899999919, 49.238434091000059 ], [ -123.006259295999925, 49.238050686000115 ], [ -123.006056104999971, 49.237658485000047 ], [ -123.005841695999948, 49.237244616000069 ], [ -123.00575130199995, 49.236943012000047 ], [ -123.006197510999982, 49.236944606000058 ], [ -123.006319843999904, 49.236942599000024 ], [ -123.006608170999982, 49.236937887000089 ], [ -123.007445605999948, 49.236924180000116 ], [ -123.008723041999986, 49.236935369000065 ], [ -123.00881792499996, 49.236936206000102 ], [ -123.011065783999953, 49.236932803000109 ], [ -123.01170411499993, 49.236933906000019 ], [ -123.012280899999922, 49.23693489300004 ], [ -123.012871799999971, 49.236938178000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144494250", "BldgCostT": "93525000", "sL_LossRatio": "0.74835194666633", "sL_AssetLoss": "1583990", "sL_BldgLoss": "1185382", "sL_StrLoss": "567222", "sL_NStrLoss": "618160", "sL_ContLoss": "398608", "geom_point": "0101000020E6100000641DD98574C05EC02FA3797CD29E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004354642999914, 49.236938707000085 ], [ -123.00575130199995, 49.236943012000047 ], [ -123.005841695999948, 49.237244616000069 ], [ -123.006056104999971, 49.237658485000047 ], [ -123.006259295999925, 49.238050686000115 ], [ -123.006540899999919, 49.238434091000059 ], [ -123.006808397999961, 49.238798293000038 ], [ -123.007194651999953, 49.239133826000085 ], [ -123.007599017999965, 49.23948509700007 ], [ -123.007635157999971, 49.239513046000027 ], [ -123.00790676599992, 49.239723053000056 ], [ -123.008154871999963, 49.239914892000058 ], [ -123.008969611999973, 49.2403131 ], [ -123.01032661, 49.240778599000052 ], [ -123.011021678999924, 49.24096640100008 ], [ -123.012489289000015, 49.24120610300011 ], [ -123.013496015000015, 49.241267306000104 ], [ -123.013493295999979, 49.242952702000089 ], [ -123.012552797999916, 49.242950108000116 ], [ -123.011133805999947, 49.242956711000012 ], [ -123.010753333999958, 49.242955665000046 ], [ -123.010455312999909, 49.242954870000077 ], [ -123.009764902999919, 49.242952986000063 ], [ -123.009400980999956, 49.242952803000058 ], [ -123.009095105999947, 49.242951977000104 ], [ -123.008696693, 49.242950917000073 ], [ -123.008394557999935, 49.242950093000061 ], [ -123.008037514999955, 49.242950099000069 ], [ -123.007680471999933, 49.242950161000053 ], [ -123.007231415999968, 49.24295024300006 ], [ -123.007011744999943, 49.242949579000047 ], [ -123.006877115999899, 49.242950337000089 ], [ -123.00671700099997, 49.243005351000129 ], [ -123.004979121999895, 49.242994938000074 ], [ -123.003403550999977, 49.243001623000062 ], [ -123.003404406999948, 49.242925073000023 ], [ -123.00342055499999, 49.242589502000094 ], [ -123.003348308999961, 49.242474908000126 ], [ -123.003364301999952, 49.242122521000091 ], [ -123.003372851000037, 49.241934787000083 ], [ -123.003380948000014, 49.241756940000101 ], [ -123.003381894999961, 49.24143019800011 ], [ -123.003383108999969, 49.241042701000069 ], [ -123.003396792000018, 49.240234997000101 ], [ -123.0033808109999, 49.239376895000049 ], [ -123.003370203999964, 49.238626299000067 ], [ -123.003379567999929, 49.237085859000032 ], [ -123.003380501999985, 49.236935689000077 ], [ -123.004148602, 49.236938071000061 ], [ -123.004354642999914, 49.236938707000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96536811", "BldgCostT": "62273190", "sL_LossRatio": "0.729412792056121", "sL_AssetLoss": "1271117", "sL_BldgLoss": "927169", "sL_StrLoss": "410009", "sL_NStrLoss": "517160", "sL_ContLoss": "343948", "geom_point": "0101000020E61000006B88F05010C05EC0D9F71BCCAA9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.000905314999969, 49.241910584000053 ], [ -123.000920888999929, 49.241553719000159 ], [ -122.999070366999931, 49.241680989000031 ], [ -122.998634336999928, 49.241673287000062 ], [ -122.998409550999938, 49.241679052000052 ], [ -122.99833483299993, 49.241685008000026 ], [ -122.998177457999958, 49.241697825000088 ], [ -122.998177585999926, 49.241685020000055 ], [ -122.998178182999936, 49.241623075000092 ], [ -122.997972499999946, 49.241618242000058 ], [ -122.997955311999988, 49.241260505000071 ], [ -122.998563796999989, 49.241260514000025 ], [ -122.998563804999947, 49.240990657000047 ], [ -122.998151654999944, 49.240990652000065 ], [ -122.998151684999982, 49.24018108000012 ], [ -122.998563828999949, 49.240181086000078 ], [ -122.998563835999974, 49.239911228000089 ], [ -122.99789048599996, 49.239911218000032 ], [ -122.997865410999964, 49.239389292000105 ], [ -122.997870936999945, 49.239100564000083 ], [ -122.997879923999932, 49.2386339010001 ], [ -122.999895603999903, 49.238635989000052 ], [ -122.999884380000012, 49.237788902000084 ], [ -122.999873907, 49.237017394000041 ], [ -122.999999024999951, 49.237001370000037 ], [ -123.0001050899999, 49.236987796000051 ], [ -123.000562936999955, 49.236994913000039 ], [ -123.001205181999978, 49.23700489000003 ], [ -123.001882082999956, 49.237009766000057 ], [ -123.002472012999931, 49.237014004000031 ], [ -123.003379567999929, 49.237085859000032 ], [ -123.003370203999964, 49.238626299000067 ], [ -123.0033808109999, 49.239376895000049 ], [ -123.003396792000018, 49.240234997000101 ], [ -123.003383108999969, 49.241042701000069 ], [ -123.003381894999961, 49.24143019800011 ], [ -123.003380948000014, 49.241756940000101 ], [ -123.003372851000037, 49.241934787000083 ], [ -123.000905314999969, 49.241910584000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103490500", "BldgCostT": "67540000", "sL_LossRatio": "0.726329563510608", "sL_AssetLoss": "1390870", "sL_BldgLoss": "1010230", "sL_StrLoss": "454320", "sL_NStrLoss": "555910", "sL_ContLoss": "380640", "geom_point": "0101000020E6100000DFCA96D509C05EC001D3B36A219E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.997866710999986, 49.237034603000119 ], [ -122.997861705999981, 49.236626605000012 ], [ -122.997856895999988, 49.236230715000019 ], [ -122.997843110999938, 49.235844193000105 ], [ -122.997827612999941, 49.235409295000053 ], [ -122.997813980999965, 49.235046699000058 ], [ -122.997861390999958, 49.234908410000074 ], [ -122.997804307999957, 49.234411395000166 ], [ -122.997805751999977, 49.233910195000092 ], [ -122.997806102999959, 49.233788001000036 ], [ -122.998475339999956, 49.233777202000105 ], [ -122.999155808999916, 49.233766207000059 ], [ -122.99980769699999, 49.233767158000049 ], [ -123.000000006, 49.233767460000152 ], [ -123.00048076899995, 49.23376817300008 ], [ -123.000834802999961, 49.233768694000126 ], [ -123.001173922999982, 49.233769201000015 ], [ -123.001840521999924, 49.233772146000042 ], [ -123.00198511799999, 49.233772803000065 ], [ -123.002637341999929, 49.233773385000056 ], [ -123.003326475999955, 49.233773995000043 ], [ -123.00337028899996, 49.235370593000042 ], [ -123.003369109999937, 49.236240787000071 ], [ -123.003380501999985, 49.236935689000077 ], [ -123.003379567999929, 49.237085859000032 ], [ -123.002472012999931, 49.237014004000031 ], [ -123.001882082999956, 49.237009766000057 ], [ -123.001205181999978, 49.23700489000003 ], [ -123.000562936999955, 49.236994913000039 ], [ -123.0001050899999, 49.236987796000051 ], [ -122.999999024999951, 49.237001370000037 ], [ -122.999873907, 49.237017394000041 ], [ -122.997866710999986, 49.237034603000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133910917", "BldgCostT": "86961667", "sL_LossRatio": "0.732264611730866", "sL_AssetLoss": "1754994", "sL_BldgLoss": "1285120", "sL_StrLoss": "566340", "sL_NStrLoss": "718780", "sL_ContLoss": "469874", "geom_point": "0101000020E610000071AD93869CBF5EC0D59DB491679E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988999070999952, 49.241861800000073 ], [ -122.98900032099999, 49.241402730000068 ], [ -122.989001601000012, 49.240934997000075 ], [ -122.989003587999946, 49.240206400000062 ], [ -122.989004359999981, 49.239918534000076 ], [ -122.989004600999948, 49.239829596000071 ], [ -122.989151138999972, 49.239486597000045 ], [ -122.989131678999982, 49.238596338000022 ], [ -122.989002017999908, 49.237964804000093 ], [ -122.988996921999941, 49.237660314000024 ], [ -122.98899249499999, 49.237394889000058 ], [ -122.988973894999944, 49.236282090000017 ], [ -122.988933301999964, 49.235954904000053 ], [ -122.988945274999978, 49.235376305000059 ], [ -122.988954233999948, 49.234944505000115 ], [ -122.98895871099991, 49.234728766000032 ], [ -122.98896547, 49.23440089000006 ], [ -122.988979240999953, 49.234400865000033 ], [ -122.989587808999971, 49.234399372000063 ], [ -122.990506180999972, 49.234397103000099 ], [ -122.991497091, 49.234403383000085 ], [ -122.992304206999975, 49.234408493000075 ], [ -122.993035538999919, 49.234411708000088 ], [ -122.994219021999967, 49.234416903000081 ], [ -122.994215876999974, 49.233901092000082 ], [ -122.994212896999926, 49.233407802000094 ], [ -122.994890105999957, 49.233408314000066 ], [ -122.997798994, 49.233410401000064 ], [ -122.997806102999959, 49.233788001000036 ], [ -122.997805751999977, 49.233910195000092 ], [ -122.997804307999957, 49.234411395000166 ], [ -122.997861390999958, 49.234908410000074 ], [ -122.997813980999965, 49.235046699000058 ], [ -122.997827612999941, 49.235409295000053 ], [ -122.997843110999938, 49.235844193000105 ], [ -122.997856895999988, 49.236230715000019 ], [ -122.997861705999981, 49.236626605000012 ], [ -122.997866710999986, 49.237034603000119 ], [ -122.999873907, 49.237017394000041 ], [ -122.999884380000012, 49.237788902000084 ], [ -122.999895603999903, 49.238635989000052 ], [ -122.997879923999932, 49.2386339010001 ], [ -122.997870936999945, 49.239100564000083 ], [ -122.997865410999964, 49.239389292000105 ], [ -122.99789048599996, 49.239911218000032 ], [ -122.997327413999926, 49.239911206000052 ], [ -122.99732742799992, 49.239641349000131 ], [ -122.99691528999989, 49.239641340000048 ], [ -122.996915304999931, 49.239392513000048 ], [ -122.996875436, 49.239390762000056 ], [ -122.996800548999914, 49.239101622000128 ], [ -122.996091052999972, 49.239101600000033 ], [ -122.996091137999883, 49.23802217100009 ], [ -122.995679013999933, 49.238022155000046 ], [ -122.995679060999976, 49.237482441000054 ], [ -122.995266938999933, 49.237482425000096 ], [ -122.995267016999961, 49.236672853000066 ], [ -122.994854900999911, 49.236672835000043 ], [ -122.994854930999949, 49.2364029780001 ], [ -122.994442817999953, 49.236402960000085 ], [ -122.994442847999935, 49.236133101000043 ], [ -122.992382299999974, 49.236132984000065 ], [ -122.992382340999924, 49.235863128000048 ], [ -122.991970233999965, 49.235863099000063 ], [ -122.991970321999958, 49.235323384000054 ], [ -122.991558217999909, 49.235323354000073 ], [ -122.991558263999963, 49.235053497000074 ], [ -122.989909860999902, 49.235053364000073 ], [ -122.98990969599997, 49.235862938000054 ], [ -122.989085479999957, 49.23586286200009 ], [ -122.989085361999926, 49.236402577000071 ], [ -122.989497472, 49.236402615000053 ], [ -122.989497359999973, 49.236942330000012 ], [ -122.989909475999937, 49.236942366000022 ], [ -122.989909355999941, 49.237527084000078 ], [ -122.991380981999939, 49.237568151000055 ], [ -122.991321463999896, 49.238486361000071 ], [ -122.992521098999987, 49.238519822000129 ], [ -122.992395979999984, 49.240450702000068 ], [ -122.992793782, 49.240450727000038 ], [ -122.992793741999932, 49.240720584000037 ], [ -122.993618036999962, 49.240720633000102 ], [ -122.993618003999984, 49.240990490000115 ], [ -122.994442302999957, 49.240990533000051 ], [ -122.994442271999901, 49.241260389000097 ], [ -122.994854424999957, 49.241260408000059 ], [ -122.994854410999892, 49.241399555000108 ], [ -122.994854396999983, 49.241530266000062 ], [ -122.995067943999913, 49.241530275000109 ], [ -122.995266552999936, 49.241530284000099 ], [ -122.995266559999976, 49.24144370700003 ], [ -122.995266577999985, 49.241260426000103 ], [ -122.995678730999899, 49.241260443000101 ], [ -122.995678752999979, 49.240990585000127 ], [ -122.997327354999925, 49.24099063500006 ], [ -122.997327340999959, 49.241260492000031 ], [ -122.997955311999988, 49.241260505000071 ], [ -122.997972499999946, 49.241618242000058 ], [ -122.998178182999936, 49.241623075000092 ], [ -122.998177585999926, 49.241685020000055 ], [ -122.998177457999958, 49.241697825000088 ], [ -122.997971982999942, 49.241690299 ], [ -122.995068678999957, 49.241606794000063 ], [ -122.994913681999918, 49.241609074000024 ], [ -122.990507004999969, 49.241691213000117 ], [ -122.990215134, 49.241724224000095 ], [ -122.988999070999952, 49.241861800000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73080499", "BldgCostT": "42799999", "sL_LossRatio": "0.665280737015536", "sL_AssetLoss": "1159270", "sL_BldgLoss": "771240", "sL_StrLoss": "332530", "sL_NStrLoss": "438710", "sL_ContLoss": "388030", "geom_point": "0101000020E61000000CAAAA2389BF5EC0ACD0CCD5879F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.99415767899994, 49.251180592000019 ], [ -122.993813795999984, 49.251125092000059 ], [ -122.99348058899993, 49.25111580600003 ], [ -122.992674595999986, 49.251112213000049 ], [ -122.992262609999926, 49.251111508000044 ], [ -122.9901751299999, 49.251121201000018 ], [ -122.989079198999903, 49.251126293000056 ], [ -122.989051545, 49.251061875000069 ], [ -122.988914590999968, 49.250742501000083 ], [ -122.988844112999928, 49.250679056000109 ], [ -122.988677108999966, 49.250528674000087 ], [ -122.988342374999931, 49.250289605000013 ], [ -122.987911739999959, 49.250110942000092 ], [ -122.987674449999986, 49.250074558000065 ], [ -122.987681846999976, 49.250012634000065 ], [ -122.989067655999975, 49.250013481000124 ], [ -122.989046307999956, 49.248458089000046 ], [ -122.989046560999952, 49.248212144000028 ], [ -122.989047101999944, 49.247684292000045 ], [ -122.989047092999954, 49.247672409000103 ], [ -122.989047621999987, 49.246956391000076 ], [ -122.989045607999941, 49.244913290000056 ], [ -122.989047198999955, 49.243872894000056 ], [ -122.988999070999952, 49.241861800000073 ], [ -122.990215134, 49.241724224000095 ], [ -122.990507004999969, 49.241691213000117 ], [ -122.994913681999918, 49.241609074000024 ], [ -122.995068678999957, 49.241606794000063 ], [ -122.997971982999942, 49.241690299 ], [ -122.997971425999978, 49.243064785000087 ], [ -122.997341978999955, 49.242915893000067 ], [ -122.997049015999934, 49.242880691000046 ], [ -122.99663510299996, 49.242868294000047 ], [ -122.996102399999927, 49.242930912000126 ], [ -122.995699281999961, 49.243005296000099 ], [ -122.99507618899996, 49.243021291000055 ], [ -122.995090197999971, 49.243546796000047 ], [ -122.995175213999943, 49.24371858500011 ], [ -122.995643600999955, 49.244120782000039 ], [ -122.995850207999965, 49.244322890000078 ], [ -122.996483116, 49.244941409000077 ], [ -122.996662881999939, 49.245558992000028 ], [ -122.996663084999938, 49.245683298000074 ], [ -122.996668907999961, 49.246229296000067 ], [ -122.996652894999897, 49.246986506000027 ], [ -122.996232210999906, 49.247650403000115 ], [ -122.996184077999928, 49.247757097000104 ], [ -122.996189301999948, 49.248653598000054 ], [ -122.996267683999974, 49.249543093000113 ], [ -122.996295495999959, 49.250237508000055 ], [ -122.996140813999958, 49.250505296000021 ], [ -122.99597420799995, 49.250703294000054 ], [ -122.994746384999985, 49.251401500000064 ], [ -122.9944672499999, 49.251271595000105 ], [ -122.99444770300002, 49.251262503000071 ], [ -122.99415767899994, 49.251180592000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64385334", "BldgCostT": "37883334", "sL_LossRatio": "0.668648399622666", "sL_AssetLoss": "911660", "sL_BldgLoss": "609580", "sL_StrLoss": "256540", "sL_NStrLoss": "353040", "sL_ContLoss": "302080", "geom_point": "0101000020E6100000A4BD6F1903C05EC08416235C929F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.996189301999948, 49.248653598000054 ], [ -122.996184077999928, 49.247757097000104 ], [ -122.996232210999906, 49.247650403000115 ], [ -122.996652894999897, 49.246986506000027 ], [ -122.996668907999961, 49.246229296000067 ], [ -122.996663084999938, 49.245683298000074 ], [ -122.996662881999939, 49.245558992000028 ], [ -122.996483116, 49.244941409000077 ], [ -122.995850207999965, 49.244322890000078 ], [ -122.995643600999955, 49.244120782000039 ], [ -122.995175213999943, 49.24371858500011 ], [ -122.995090197999971, 49.243546796000047 ], [ -122.99507618899996, 49.243021291000055 ], [ -122.995699281999961, 49.243005296000099 ], [ -122.996102399999927, 49.242930912000126 ], [ -122.99663510299996, 49.242868294000047 ], [ -122.997049015999934, 49.242880691000046 ], [ -122.997341978999955, 49.242915893000067 ], [ -122.997971425999978, 49.243064785000087 ], [ -122.997971982999942, 49.241690299 ], [ -122.998177457999958, 49.241697825000088 ], [ -122.99833483299993, 49.241685008000026 ], [ -122.998409550999938, 49.241679052000052 ], [ -122.998634336999928, 49.241673287000062 ], [ -122.999070366999931, 49.241680989000031 ], [ -123.000920888999929, 49.241553719000159 ], [ -123.000905314999969, 49.241910584000053 ], [ -123.003372851000037, 49.241934787000083 ], [ -123.003364301999952, 49.242122521000091 ], [ -123.003348308999961, 49.242474908000126 ], [ -123.00342055499999, 49.242589502000094 ], [ -123.003404406999948, 49.242925073000023 ], [ -123.003403550999977, 49.243001623000062 ], [ -123.00342104399995, 49.244641492000078 ], [ -123.003438547999963, 49.246287895000087 ], [ -123.003483763999967, 49.246502653000036 ], [ -123.003676874999925, 49.246999879000057 ], [ -123.004247457999952, 49.247736590000066 ], [ -123.004253697999928, 49.247744641000054 ], [ -123.00407970699996, 49.247780387000049 ], [ -123.004205816999985, 49.24797570300008 ], [ -123.004258711999967, 49.248326710000107 ], [ -123.004248919999924, 49.249116507000053 ], [ -123.004238889999954, 49.250164573000056 ], [ -123.004223496999956, 49.25177946000013 ], [ -123.004223412999949, 49.251788492000088 ], [ -123.003749407999976, 49.25179061300004 ], [ -123.002802301999949, 49.251780486000101 ], [ -123.000414412999959, 49.251790702000079 ], [ -123.000027, 49.251791685000107 ], [ -122.999708302999949, 49.25179358700008 ], [ -122.999713696999905, 49.250519092000033 ], [ -122.999677883999937, 49.248737207 ], [ -122.999633710999959, 49.248699001 ], [ -122.999592400999958, 49.248678095000088 ], [ -122.998420612999951, 49.248661693000024 ], [ -122.998128305999899, 49.248657106000074 ], [ -122.997973113999961, 49.248658197000026 ], [ -122.997970746999897, 49.249262596000065 ], [ -122.997970724999931, 49.249268750000034 ], [ -122.997969581999925, 49.249560797000093 ], [ -122.997721521999935, 49.250125907000083 ], [ -122.997220003999971, 49.25065958700003 ], [ -122.995261018999969, 49.251734034000052 ], [ -122.99525049099999, 49.251739802000074 ], [ -122.99513852499993, 49.251664659000035 ], [ -122.994746384999985, 49.251401500000064 ], [ -122.99597420799995, 49.250703294000054 ], [ -122.996140813999958, 49.250505296000021 ], [ -122.996295495999959, 49.250237508000055 ], [ -122.996267683999974, 49.249543093000113 ], [ -122.996189301999948, 49.248653598000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145058707", "BldgCostT": "86942537", "sL_LossRatio": "0.640117115184452", "sL_AssetLoss": "2517180", "sL_BldgLoss": "1611290", "sL_StrLoss": "580190", "sL_NStrLoss": "1031100", "sL_ContLoss": "905890", "geom_point": "0101000020E61000009ED18715CBBF5EC0C3B1BB6157A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.99457039, 49.254606198000033 ], [ -122.993530405999962, 49.254439398000059 ], [ -122.993458161999968, 49.25443020200003 ], [ -122.993376399999988, 49.254419811000055 ], [ -122.993349048999931, 49.254417926000109 ], [ -122.992979888999926, 49.254392492000136 ], [ -122.991099500999965, 49.254369785000073 ], [ -122.990642310999988, 49.254324598000039 ], [ -122.990398009, 49.254279087000057 ], [ -122.98998768899996, 49.254145104000024 ], [ -122.989976453999972, 49.254139609000063 ], [ -122.989864860999944, 49.254085103000136 ], [ -122.989798759999971, 49.254052817000115 ], [ -122.98976270899999, 49.25403520000004 ], [ -122.989365702999933, 49.253739485000068 ], [ -122.989202507999934, 49.253566501000115 ], [ -122.989062103999927, 49.253232009000087 ], [ -122.989041088999969, 49.253089091000078 ], [ -122.98902809799992, 49.252739207000133 ], [ -122.989059797999971, 49.251933796000067 ], [ -122.989079198999903, 49.251126293000056 ], [ -122.9901751299999, 49.251121201000018 ], [ -122.992262609999926, 49.251111508000044 ], [ -122.992674595999986, 49.251112213000049 ], [ -122.99348058899993, 49.25111580600003 ], [ -122.993813795999984, 49.251125092000059 ], [ -122.99415767899994, 49.251180592000019 ], [ -122.99444770300002, 49.251262503000071 ], [ -122.9944672499999, 49.251271595000105 ], [ -122.994746384999985, 49.251401500000064 ], [ -122.99513852499993, 49.251664659000035 ], [ -122.99525049099999, 49.251739802000074 ], [ -122.995261018999969, 49.251734034000052 ], [ -122.997220003999971, 49.25065958700003 ], [ -122.997721521999935, 49.250125907000083 ], [ -122.997969581999925, 49.249560797000093 ], [ -122.997970724999931, 49.249268750000034 ], [ -122.997970746999897, 49.249262596000065 ], [ -122.997973113999961, 49.248658197000026 ], [ -122.998128305999899, 49.248657106000074 ], [ -122.998420612999951, 49.248661693000024 ], [ -122.999592400999958, 49.248678095000088 ], [ -122.999633710999959, 49.248699001 ], [ -122.999677883999937, 49.248737207 ], [ -122.999713696999905, 49.250519092000033 ], [ -122.999708302999949, 49.25179358700008 ], [ -123.000027, 49.251791685000107 ], [ -123.000414412999959, 49.251790702000079 ], [ -123.002802301999949, 49.251780486000101 ], [ -123.003749407999976, 49.25179061300004 ], [ -123.004223412999949, 49.251788492000088 ], [ -123.004222867999928, 49.251846666000048 ], [ -123.004205994999936, 49.25361030100008 ], [ -123.004188293999974, 49.254077198000111 ], [ -123.004168907999883, 49.254589381000066 ], [ -123.004173623, 49.254685902000055 ], [ -123.003356831999923, 49.254688906000069 ], [ -123.001192205, 49.254696804000062 ], [ -123.000000002999954, 49.254699632000062 ], [ -122.99804207499993, 49.254704263000072 ], [ -122.998028314999914, 49.254704312000065 ], [ -122.996644198999917, 49.254674687000026 ], [ -122.996550918999958, 49.254631601000071 ], [ -122.996453201999927, 49.254633388000023 ], [ -122.995028586999979, 49.254637003000056 ], [ -122.99457039, 49.254606198000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192333145", "BldgCostT": "128606524", "sL_LossRatio": "0.72636592763467", "sL_AssetLoss": "2340900", "sL_BldgLoss": "1700350", "sL_StrLoss": "760190", "sL_NStrLoss": "940160", "sL_ContLoss": "640550", "geom_point": "0101000020E6100000BC70A45C6FBF5EC0D1C619DCB9A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988975285999985, 49.257109395000107 ], [ -122.988987503999951, 49.256622906000104 ], [ -122.988999609999951, 49.256141702000107 ], [ -122.989003587999946, 49.255651270000051 ], [ -122.989007498, 49.255173507000109 ], [ -122.989001453999933, 49.254760598000104 ], [ -122.98899558799998, 49.25436158400003 ], [ -122.988995410999934, 49.25356069700004 ], [ -122.989202507999934, 49.253566501000115 ], [ -122.989365702999933, 49.253739485000068 ], [ -122.98976270899999, 49.25403520000004 ], [ -122.989798759999971, 49.254052817000115 ], [ -122.989864860999944, 49.254085103000136 ], [ -122.989976453999972, 49.254139609000063 ], [ -122.98998768899996, 49.254145104000024 ], [ -122.990398009, 49.254279087000057 ], [ -122.990642310999988, 49.254324598000039 ], [ -122.991099500999965, 49.254369785000073 ], [ -122.992979888999926, 49.254392492000136 ], [ -122.993349048999931, 49.254417926000109 ], [ -122.993376399999988, 49.254419811000055 ], [ -122.99341404499998, 49.254776645000042 ], [ -122.993423200000024, 49.25486339400004 ], [ -122.99349088799994, 49.254942701000111 ], [ -122.99354229299999, 49.255167594000028 ], [ -122.993542199999965, 49.255192973000064 ], [ -122.993539609999971, 49.25588362400002 ], [ -122.993538598999976, 49.256144970000037 ], [ -122.993537956999972, 49.256316014000063 ], [ -122.993536600000013, 49.256675405000173 ], [ -122.993526659999958, 49.256788740000047 ], [ -122.99349431099999, 49.257158788000041 ], [ -122.993458215999965, 49.257184889000023 ], [ -122.993424293999979, 49.257200095000073 ], [ -122.992751801999987, 49.257126411000044 ], [ -122.991153988999926, 49.257087291000104 ], [ -122.988975285999985, 49.257109395000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80570334", "BldgCostT": "52943334", "sL_LossRatio": "0.718029805506441", "sL_AssetLoss": "989750", "sL_BldgLoss": "710670", "sL_StrLoss": "335630", "sL_NStrLoss": "375040", "sL_ContLoss": "279080", "geom_point": "0101000020E6100000AF7CA6C912BF5EC0FFF96CD38EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.981948516999978, 49.253566505000073 ], [ -122.984648514999989, 49.253553705000058 ], [ -122.988734043999941, 49.253560288000031 ], [ -122.988995410999934, 49.25356069700004 ], [ -122.98899558799998, 49.25436158400003 ], [ -122.989001453999933, 49.254760598000104 ], [ -122.989007498, 49.255173507000109 ], [ -122.982112995999955, 49.255156505000038 ], [ -122.981948516999978, 49.253566505000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66709000", "BldgCostT": "43885000", "sL_LossRatio": "0.701712354056072", "sL_AssetLoss": "1218790", "sL_BldgLoss": "855240", "sL_StrLoss": "355340", "sL_NStrLoss": "499900", "sL_ContLoss": "363550", "geom_point": "0101000020E610000081C8337914BF5EC06E4DA901B9A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.982112995999955, 49.255156505000038 ], [ -122.989007498, 49.255173507000109 ], [ -122.989003587999946, 49.255651270000051 ], [ -122.988999609999951, 49.256141702000107 ], [ -122.982379602999941, 49.256125191000137 ], [ -122.982271237999925, 49.255731411000077 ], [ -122.982248362999897, 49.25564828500012 ], [ -122.982112995999955, 49.255156505000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288399010", "BldgCostT": "162803504", "sL_LossRatio": "0.577672292828723", "sL_AssetLoss": "14908920", "sL_BldgLoss": "8612470", "sL_StrLoss": "2982970", "sL_NStrLoss": "5629500", "sL_ContLoss": "6296450", "geom_point": "0101000020E61000002D990FE7A5BF5EC0FE6449A919A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.985597678999909, 49.261841850000103 ], [ -122.98555029799995, 49.261790886000021 ], [ -122.984936546999919, 49.261130589000054 ], [ -122.984608898999952, 49.26077809500002 ], [ -122.984018554999963, 49.260159555000023 ], [ -122.983913590999947, 49.260049559000095 ], [ -122.983851090999963, 49.259984053000046 ], [ -122.983275099999958, 49.25938050300006 ], [ -122.98302369299995, 49.258366409000082 ], [ -122.982980581999968, 49.258198213000071 ], [ -122.982925241000018, 49.257982366000086 ], [ -122.98282651199996, 49.257596992000053 ], [ -122.982802109999966, 49.257507288000085 ], [ -122.982761107, 49.257356509000054 ], [ -122.982675492999974, 49.257080126000069 ], [ -122.982623793999934, 49.256913352000055 ], [ -122.982611200999912, 49.256872643000108 ], [ -122.982379602999941, 49.256125191000137 ], [ -122.988999609999951, 49.256141702000107 ], [ -122.988987503999951, 49.256622906000104 ], [ -122.988975285999985, 49.257109395000107 ], [ -122.991153988999926, 49.257087291000104 ], [ -122.992751801999987, 49.257126411000044 ], [ -122.993424293999979, 49.257200095000073 ], [ -122.993458215999965, 49.257184889000023 ], [ -122.99349431099999, 49.257158788000041 ], [ -122.993526659999958, 49.256788740000047 ], [ -122.993536600000013, 49.256675405000173 ], [ -122.993537956999972, 49.256316014000063 ], [ -122.993538598999976, 49.256144970000037 ], [ -122.993539609999971, 49.25588362400002 ], [ -122.993542199999965, 49.255192973000064 ], [ -122.99354229299999, 49.255167594000028 ], [ -122.99349088799994, 49.254942701000111 ], [ -122.993423200000024, 49.25486339400004 ], [ -122.99341404499998, 49.254776645000042 ], [ -122.993376399999988, 49.254419811000055 ], [ -122.993458161999968, 49.25443020200003 ], [ -122.993530405999962, 49.254439398000059 ], [ -122.99457039, 49.254606198000033 ], [ -122.995028586999979, 49.254637003000056 ], [ -122.996453201999927, 49.254633388000023 ], [ -122.996550918999958, 49.254631601000071 ], [ -122.996644198999917, 49.254674687000026 ], [ -122.998028314999914, 49.254704312000065 ], [ -122.99804207499993, 49.254704263000072 ], [ -123.000000002999954, 49.254699632000062 ], [ -123.001192205, 49.254696804000062 ], [ -123.003356831999923, 49.254688906000069 ], [ -123.004173623, 49.254685902000055 ], [ -123.004173301999941, 49.256180317000087 ], [ -123.004174725999945, 49.256380259000096 ], [ -123.004176307999941, 49.2566020000001 ], [ -123.00417119799999, 49.256787409000054 ], [ -123.004170512999949, 49.257435997000144 ], [ -123.00416927, 49.257518804000064 ], [ -123.004164809999963, 49.257694401000073 ], [ -123.004164086999964, 49.257917792000093 ], [ -123.004149152999943, 49.258718966000032 ], [ -123.00414619699994, 49.258876613000048 ], [ -123.00413111200001, 49.259386111000055 ], [ -123.004112098999911, 49.259501776000072 ], [ -123.00410399099998, 49.259550992000065 ], [ -123.004025054999957, 49.259727908000116 ], [ -123.003821292999973, 49.2601845780001 ], [ -123.003343977999975, 49.261151386000023 ], [ -123.003258594999934, 49.261452581000071 ], [ -123.003249770999972, 49.26170551800007 ], [ -123.003245745999934, 49.261821551 ], [ -123.003232981999986, 49.262172689000082 ], [ -123.003228151999949, 49.262306602000073 ], [ -123.00289077399998, 49.262171466000019 ], [ -123.001199401999941, 49.262174416000043 ], [ -122.999903469999964, 49.262062372000074 ], [ -122.997692216999951, 49.262026670000125 ], [ -122.992036803999937, 49.261843829000057 ], [ -122.992029571999979, 49.261843639000134 ], [ -122.990722357999971, 49.261836399000032 ], [ -122.990366760999947, 49.261816813000067 ], [ -122.986796605, 49.261854438000036 ], [ -122.986454637999913, 49.261834574000069 ], [ -122.985597678999909, 49.261841850000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236242689", "BldgCostT": "160370825", "sL_LossRatio": "0.804776085213607", "sL_AssetLoss": "2095440", "sL_BldgLoss": "1686360", "sL_StrLoss": "720230", "sL_NStrLoss": "966130", "sL_ContLoss": "409080", "geom_point": "0101000020E61000005424C37D66BF5EC0F5AEC5971EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988911609999931, 49.267192207000029 ], [ -122.988937296999893, 49.266838906000032 ], [ -122.988693278999946, 49.266279000000118 ], [ -122.988701404999958, 49.265519791000081 ], [ -122.988813985999982, 49.265414889000063 ], [ -122.98902440099999, 49.265348703000079 ], [ -122.99193339299994, 49.265406396000081 ], [ -122.992217801999942, 49.265495638000083 ], [ -122.992215666999968, 49.266074528000068 ], [ -122.992207313999984, 49.266886780000057 ], [ -122.992201953999981, 49.26740913500003 ], [ -122.992195813999928, 49.267857875000125 ], [ -122.992193879999974, 49.267998897000055 ], [ -122.991505174999958, 49.268006051000086 ], [ -122.990874005999956, 49.268012612000099 ], [ -122.99063748199994, 49.268015 ], [ -122.990373307999931, 49.268021107000088 ], [ -122.990142678999931, 49.26801738900005 ], [ -122.990123908999976, 49.267184502000099 ], [ -122.98916841099998, 49.267190565000043 ], [ -122.988911609999931, 49.267192207000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15371000", "BldgCostT": "8630000", "sL_LossRatio": "0.642044058635656", "sL_AssetLoss": "244220", "sL_BldgLoss": "156800", "sL_StrLoss": "56290", "sL_NStrLoss": "100510", "sL_ContLoss": "87420", "geom_point": "0101000020E610000004579A104ABF5EC05C2C983A40A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987386681999936, 49.267188298000121 ], [ -122.988911609999931, 49.267192207000029 ], [ -122.98916841099998, 49.267190565000043 ], [ -122.990123908999976, 49.267184502000099 ], [ -122.990142678999931, 49.26801738900005 ], [ -122.987927403999919, 49.268002396000092 ], [ -122.987386681999936, 49.267188298000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128979500", "BldgCostT": "84065000", "sL_LossRatio": "0.724949528361069", "sL_AssetLoss": "1753460", "sL_BldgLoss": "1271170", "sL_StrLoss": "567540", "sL_NStrLoss": "703630", "sL_ContLoss": "482290", "geom_point": "0101000020E61000005C3143805FBF5EC045CC913AA6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.992168392999929, 49.274601002000047 ], [ -122.992014609999913, 49.274577782000058 ], [ -122.991558001999977, 49.274583102000044 ], [ -122.991433802999964, 49.274527401000036 ], [ -122.990803196999977, 49.274144117000098 ], [ -122.990741197999967, 49.274041511000043 ], [ -122.990758398999958, 49.272652994000047 ], [ -122.990074565000015, 49.2726518280001 ], [ -122.98931299299997, 49.272650501000093 ], [ -122.988672330999975, 49.272649521000076 ], [ -122.988342462999981, 49.272649017000063 ], [ -122.98787709199999, 49.272648289000067 ], [ -122.987894399999973, 49.271473194000095 ], [ -122.987912293999983, 49.269593348000107 ], [ -122.987927403999919, 49.268002396000092 ], [ -122.990142678999931, 49.26801738900005 ], [ -122.990373307999931, 49.268021107000088 ], [ -122.99063748199994, 49.268015 ], [ -122.990874005999956, 49.268012612000099 ], [ -122.991505174999958, 49.268006051000086 ], [ -122.992193879999974, 49.267998897000055 ], [ -122.992189592999949, 49.268298804000032 ], [ -122.992184622999972, 49.268739358000062 ], [ -122.992179500999953, 49.26919569800004 ], [ -122.992179478999958, 49.269216189000055 ], [ -122.992178840999955, 49.269647949000039 ], [ -122.992178197999962, 49.270106402000103 ], [ -122.992174409999961, 49.27056542700015 ], [ -122.992173223999899, 49.270709336000017 ], [ -122.992167366999979, 49.271419950000094 ], [ -122.992159578000013, 49.27235541400011 ], [ -122.992155703999956, 49.272826097000063 ], [ -122.992155008999987, 49.273264031000032 ], [ -122.992154306999964, 49.273717003000087 ], [ -122.992161162999977, 49.274145780000055 ], [ -122.992168392999929, 49.274601002000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94400749", "BldgCostT": "63424999", "sL_LossRatio": "0.741770419391715", "sL_AssetLoss": "1285910", "sL_BldgLoss": "953850", "sL_StrLoss": "431530", "sL_NStrLoss": "522320", "sL_ContLoss": "332060", "geom_point": "0101000020E61000006C696614A8BF5EC0F5A1A8BF20A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.992154306999964, 49.273717003000087 ], [ -122.992155008999987, 49.273264031000032 ], [ -122.992155703999956, 49.272826097000063 ], [ -122.995835792999941, 49.272824092000057 ], [ -122.99602129099999, 49.273256300000114 ], [ -122.996208286999916, 49.27369209500003 ], [ -122.996439804999937, 49.273639906000035 ], [ -122.997988204999942, 49.273049809000064 ], [ -122.998388599999956, 49.273400680000073 ], [ -122.998808815999979, 49.273768888000085 ], [ -122.997741147999974, 49.274195235000072 ], [ -122.997313481999953, 49.274365995000139 ], [ -122.997569292999913, 49.274639697000104 ], [ -122.997551207999919, 49.275088697000044 ], [ -122.994775702999945, 49.275548315000044 ], [ -122.99477633, 49.275980732000036 ], [ -122.994776985999934, 49.276440209000086 ], [ -122.992138095999948, 49.276445003000056 ], [ -122.992143477999946, 49.275980490000066 ], [ -122.992148593999914, 49.275541797000074 ], [ -122.992155641999958, 49.275206919000013 ], [ -122.992158465999978, 49.275072021000085 ], [ -122.992168392999929, 49.274601002000047 ], [ -122.992161162999977, 49.274145780000055 ], [ -122.992154306999964, 49.273717003000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "353409038", "BldgCostT": "239053046", "sL_LossRatio": "0.776919881598708", "sL_AssetLoss": "3442530", "sL_BldgLoss": "2674570", "sL_StrLoss": "1166570", "sL_NStrLoss": "1508000", "sL_ContLoss": "767960", "geom_point": "0101000020E610000076168B1980C05EC04C117DCA73A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.003077038999919, 49.269536694000138 ], [ -123.003067671999986, 49.26804382100007 ], [ -123.003207749999945, 49.268045015000027 ], [ -123.004614566999962, 49.268054027000105 ], [ -123.005989011999972, 49.268062796000059 ], [ -123.007592201999898, 49.268065798000137 ], [ -123.00802841399998, 49.268045780000072 ], [ -123.009488490999928, 49.267978713000069 ], [ -123.010329287999951, 49.267979499000077 ], [ -123.012295719999926, 49.268701508000035 ], [ -123.013087155999926, 49.269353927000076 ], [ -123.013176391999977, 49.269427510000114 ], [ -123.012947671999939, 49.269862747000097 ], [ -123.012824125999884, 49.270097904000053 ], [ -123.012809189, 49.270222711000045 ], [ -123.008766298999944, 49.270207091000053 ], [ -123.008083184999919, 49.270197480000036 ], [ -123.007379805999932, 49.270187589000102 ], [ -123.00669449899999, 49.270179870000092 ], [ -123.006014891999939, 49.270172199000122 ], [ -123.005333061999977, 49.270164365000063 ], [ -123.004623985999928, 49.270156206000095 ], [ -123.003918408999951, 49.270163113000045 ], [ -123.003235363999977, 49.270169850000073 ], [ -123.003174137999906, 49.270168816000066 ], [ -123.00308023099997, 49.270167346000029 ], [ -123.003078196999937, 49.269765148000083 ], [ -123.003077038999919, 49.269536694000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1032197769", "BldgCostT": "639598267", "sL_LossRatio": "0.633812852931757", "sL_AssetLoss": "28194190", "sL_BldgLoss": "17869840", "sL_StrLoss": "7694470", "sL_NStrLoss": "10175370", "sL_ContLoss": "10324350", "geom_point": "0101000020E610000001965CC5E2C05EC0111282B81FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011887291999969, 49.27237773700007 ], [ -123.012083279999956, 49.272041989000137 ], [ -123.009389945999899, 49.272015601000085 ], [ -123.008759983999965, 49.272009394000108 ], [ -123.008056103999976, 49.272004945000035 ], [ -123.007369985999901, 49.272000592000055 ], [ -123.007379805999932, 49.270187589000102 ], [ -123.008083184999919, 49.270197480000036 ], [ -123.008766298999944, 49.270207091000053 ], [ -123.012809189, 49.270222711000045 ], [ -123.012824125999884, 49.270097904000053 ], [ -123.012947671999939, 49.269862747000097 ], [ -123.013176391999977, 49.269427510000114 ], [ -123.013087155999926, 49.269353927000076 ], [ -123.012295719999926, 49.268701508000035 ], [ -123.010329287999951, 49.267979499000077 ], [ -123.009488490999928, 49.267978713000069 ], [ -123.00802841399998, 49.268045780000072 ], [ -123.007592201999898, 49.268065798000137 ], [ -123.005989011999972, 49.268062796000059 ], [ -123.004614566999962, 49.268054027000105 ], [ -123.003207749999945, 49.268045015000027 ], [ -123.003067671999986, 49.26804382100007 ], [ -123.003082092999989, 49.26748151400011 ], [ -123.003091087999934, 49.267129294000078 ], [ -123.003107492999945, 49.266449596000022 ], [ -123.003110387999953, 49.26636230700008 ], [ -123.003125203999957, 49.264432303000021 ], [ -123.003125656999899, 49.264423288000081 ], [ -123.003169801999931, 49.263510723000117 ], [ -123.003182395999971, 49.263250380000059 ], [ -123.003223694999974, 49.262397932000049 ], [ -123.003228151999949, 49.262306602000073 ], [ -123.003232981999986, 49.262172689000082 ], [ -123.003358555999938, 49.262175670000055 ], [ -123.004223587999945, 49.262196193000136 ], [ -123.008777755999972, 49.262304185000097 ], [ -123.012420473999981, 49.262280314000108 ], [ -123.014172529999911, 49.262268796000036 ], [ -123.014379232999943, 49.262267445000106 ], [ -123.017979683999911, 49.262327436000135 ], [ -123.023508569999962, 49.262452992000057 ], [ -123.023496, 49.263058984000104 ], [ -123.023483493999947, 49.263660845000032 ], [ -123.023480092999975, 49.265555104000065 ], [ -123.023479901999934, 49.265644292000125 ], [ -123.023458005999942, 49.266627313000086 ], [ -123.02345162599994, 49.268452074000024 ], [ -123.023451600999962, 49.268461116000026 ], [ -123.023459188999979, 49.269391892 ], [ -123.023461396999949, 49.269528797000085 ], [ -123.023467580999963, 49.270288407000066 ], [ -123.018706215999941, 49.270293888000033 ], [ -123.018696591999941, 49.271191703000113 ], [ -123.016343618999912, 49.271178903000084 ], [ -123.015362892999917, 49.271172513000089 ], [ -123.014276403999972, 49.271165903000032 ], [ -123.01427010499998, 49.272074591000049 ], [ -123.014259876999944, 49.272991965000088 ], [ -123.014249982999957, 49.273880988000023 ], [ -123.013542539999932, 49.273871369000091 ], [ -123.011497197999986, 49.273843497000044 ], [ -123.011513616999963, 49.273389576000035 ], [ -123.011523504999943, 49.273116393000109 ], [ -123.011558108999935, 49.272941688000088 ], [ -123.011829909999932, 49.272476081 ], [ -123.011887291999969, 49.27237773700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201928527", "BldgCostT": "125762652", "sL_LossRatio": "0.637261513032809", "sL_AssetLoss": "3944660", "sL_BldgLoss": "2513780", "sL_StrLoss": "1019810", "sL_NStrLoss": "1493970", "sL_ContLoss": "1430880", "geom_point": "0101000020E6100000D87515D6B6C15EC081CB3A4E17A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023479901999934, 49.265644292000125 ], [ -123.023480092999975, 49.265555104000065 ], [ -123.023483493999947, 49.263660845000032 ], [ -123.023496, 49.263058984000104 ], [ -123.023508569999962, 49.262452992000057 ], [ -123.02351162099994, 49.262305716000128 ], [ -123.023527509999937, 49.26154070000004 ], [ -123.023698891, 49.261545387000076 ], [ -123.023759307999939, 49.262316390000073 ], [ -123.023759125999916, 49.262325460000085 ], [ -123.023756440999989, 49.26246651600006 ], [ -123.023776858999938, 49.262467639000064 ], [ -123.025211539999972, 49.262978854000018 ], [ -123.025438968999964, 49.263058554000104 ], [ -123.02562340099999, 49.262993930000093 ], [ -123.025711025999939, 49.262963583000044 ], [ -123.027254476999985, 49.262428959 ], [ -123.028269922999982, 49.261958302000082 ], [ -123.028501416999958, 49.261785906000043 ], [ -123.028483191999925, 49.263485212000035 ], [ -123.028471685999989, 49.265701689000061 ], [ -123.029919880999955, 49.265657803000067 ], [ -123.031003374999969, 49.265644396 ], [ -123.031001389999972, 49.266015585000048 ], [ -123.031000514999903, 49.266180913 ], [ -123.031000418999952, 49.26619560700005 ], [ -123.030998095999962, 49.266628790000077 ], [ -123.030994576999944, 49.26710739400005 ], [ -123.030991300999915, 49.267550997000036 ], [ -123.030991202999971, 49.268015933000129 ], [ -123.030991115999925, 49.268455306000092 ], [ -123.030990768999956, 49.268942453000058 ], [ -123.030990633999934, 49.269149347000059 ], [ -123.030990505999966, 49.269366907000133 ], [ -123.030976721999977, 49.269366938000047 ], [ -123.029320652999928, 49.269370983000059 ], [ -123.029210708999955, 49.269371229000036 ], [ -123.02852370699999, 49.26937288600007 ], [ -123.027735014999934, 49.26937370900005 ], [ -123.027812859000022, 49.269530770000138 ], [ -123.027487214999937, 49.269530799000052 ], [ -123.027088686999903, 49.26953151500004 ], [ -123.026731503999883, 49.269530712000019 ], [ -123.02367170699992, 49.269528309000037 ], [ -123.023461396999949, 49.269528797000085 ], [ -123.023459188999979, 49.269391892 ], [ -123.023451600999962, 49.268461116000026 ], [ -123.02345162599994, 49.268452074000024 ], [ -123.023458005999942, 49.266627313000086 ], [ -123.023479901999934, 49.265644292000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181121751", "BldgCostT": "122165001", "sL_LossRatio": "0.808134082571216", "sL_AssetLoss": "1332910", "sL_BldgLoss": "1077170", "sL_StrLoss": "507840", "sL_NStrLoss": "569330", "sL_ContLoss": "255740", "geom_point": "0101000020E61000007E4FF6E0FFC15EC065E1BA7BE3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.029616392999941, 49.26471260800011 ], [ -123.029602720999932, 49.264024896000073 ], [ -123.029662088999899, 49.263740997000063 ], [ -123.02975458799996, 49.263561589000041 ], [ -123.030033893999956, 49.263341403000034 ], [ -123.030614169999978, 49.263117794000088 ], [ -123.031018513999982, 49.263090997000099 ], [ -123.031008910999944, 49.264699611 ], [ -123.033003403999956, 49.264706692000068 ], [ -123.033669991999957, 49.264702513 ], [ -123.03365990399999, 49.265647101000084 ], [ -123.033659796999956, 49.265656204 ], [ -123.033016007999962, 49.265653350000072 ], [ -123.032543865999969, 49.265651263000045 ], [ -123.032268831999943, 49.265650033000028 ], [ -123.032074080999905, 49.265649167000092 ], [ -123.031846063, 49.265648136000031 ], [ -123.031003374999969, 49.265644396 ], [ -123.029919880999955, 49.265657803000067 ], [ -123.029616392999941, 49.26471260800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63544189", "BldgCostT": "39885825", "sL_LossRatio": "0.680245756909661", "sL_AssetLoss": "1110040", "sL_BldgLoss": "755100", "sL_StrLoss": "302650", "sL_NStrLoss": "452450", "sL_ContLoss": "354940", "geom_point": "0101000020E6100000CB7098A2FBC15EC01C6BE291B6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028483191999925, 49.263485212000035 ], [ -123.028501416999958, 49.261785906000043 ], [ -123.030430224999947, 49.261923053000082 ], [ -123.03043074199995, 49.261922813000105 ], [ -123.030432392999927, 49.261923637000066 ], [ -123.031539983999934, 49.262009147000079 ], [ -123.031871013999961, 49.261941687000039 ], [ -123.033055981999922, 49.261895190000146 ], [ -123.033328086999987, 49.26188449300011 ], [ -123.03364592899996, 49.261898603000077 ], [ -123.033647139999971, 49.261979379000088 ], [ -123.033660154999936, 49.26282974 ], [ -123.033661308999953, 49.262903395000116 ], [ -123.03367868899997, 49.263813702000071 ], [ -123.033670082999947, 49.264693444000095 ], [ -123.033669991999957, 49.264702513 ], [ -123.033003403999956, 49.264706692000068 ], [ -123.031008910999944, 49.264699611 ], [ -123.031018513999982, 49.263090997000099 ], [ -123.030614169999978, 49.263117794000088 ], [ -123.030033893999956, 49.263341403000034 ], [ -123.02975458799996, 49.263561589000041 ], [ -123.029662088999899, 49.263740997000063 ], [ -123.029602720999932, 49.264024896000073 ], [ -123.029616392999941, 49.26471260800011 ], [ -123.029919880999955, 49.265657803000067 ], [ -123.028471685999989, 49.265701689000061 ], [ -123.028483191999925, 49.263485212000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88651583", "BldgCostT": "58988333", "sL_LossRatio": "0.730482506664911", "sL_AssetLoss": "1215320", "sL_BldgLoss": "887770", "sL_StrLoss": "402530", "sL_NStrLoss": "485240", "sL_ContLoss": "327550", "geom_point": "0101000020E610000044F44ADD3EC25EC037D47B6CC3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.035143764999972, 49.26189817800006 ], [ -123.036518593999986, 49.261897393000069 ], [ -123.036520050999954, 49.262491296000078 ], [ -123.03652108699994, 49.262911693000035 ], [ -123.036507795999981, 49.263830194000064 ], [ -123.036501913, 49.264290462000062 ], [ -123.036496498999966, 49.264717105000067 ], [ -123.036491402999914, 49.265199048000092 ], [ -123.036486400999962, 49.265670784000086 ], [ -123.034789158999985, 49.265665972000129 ], [ -123.03450051599998, 49.265665156000082 ], [ -123.034033113999939, 49.265663810000042 ], [ -123.033817419999963, 49.26566320500006 ], [ -123.033659796999956, 49.265656204 ], [ -123.03365990399999, 49.265647101000084 ], [ -123.033669991999957, 49.264702513 ], [ -123.033670082999947, 49.264693444000095 ], [ -123.03367868899997, 49.263813702000071 ], [ -123.033661308999953, 49.262903395000116 ], [ -123.033660154999936, 49.26282974 ], [ -123.033647139999971, 49.261979379000088 ], [ -123.03364592899996, 49.261898603000077 ], [ -123.033660553999951, 49.261898626000125 ], [ -123.033821703999976, 49.2618988830001 ], [ -123.03400302299994, 49.26189880400009 ], [ -123.035143764999972, 49.26189817800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165609333", "BldgCostT": "113268333", "sL_LossRatio": "0.751213843119507", "sL_AssetLoss": "1789770", "sL_BldgLoss": "1344500", "sL_StrLoss": "598320", "sL_NStrLoss": "746180", "sL_ContLoss": "445270", "geom_point": "0101000020E61000005F61F2ED7AC25EC094728C9EBAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03652108699994, 49.262911693000035 ], [ -123.036520050999954, 49.262491296000078 ], [ -123.036518593999986, 49.261897393000069 ], [ -123.037891193999911, 49.26189538600012 ], [ -123.039083412999958, 49.261899299000078 ], [ -123.039071521, 49.262509010000073 ], [ -123.03906351099999, 49.262920303000108 ], [ -123.04155238199999, 49.262927290000071 ], [ -123.04154832799999, 49.263397926000046 ], [ -123.041544399999964, 49.263851294000084 ], [ -123.041538509999938, 49.264324378000012 ], [ -123.041533414999961, 49.26473370300004 ], [ -123.039033402999934, 49.264726401000061 ], [ -123.036496498999966, 49.264717105000067 ], [ -123.036501913, 49.264290462000062 ], [ -123.036507795999981, 49.263830194000064 ], [ -123.03652108699994, 49.262911693000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126694417", "BldgCostT": "80271667", "sL_LossRatio": "0.722744983698677", "sL_AssetLoss": "1509080", "sL_BldgLoss": "1090680", "sL_StrLoss": "509710", "sL_NStrLoss": "580970", "sL_ContLoss": "418400", "geom_point": "0101000020E610000024452BF782C25EC0C4266C1E0BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038994375999962, 49.267114199000083 ], [ -123.039002503999882, 49.266652289000127 ], [ -123.036472002999943, 49.26664771300004 ], [ -123.03647850499999, 49.26620666500002 ], [ -123.036486400999962, 49.265670784000086 ], [ -123.036491402999914, 49.265199048000092 ], [ -123.036496498999966, 49.264717105000067 ], [ -123.039033402999934, 49.264726401000061 ], [ -123.041533414999961, 49.26473370300004 ], [ -123.041528403999976, 49.265215024000092 ], [ -123.041523501999976, 49.265685610000034 ], [ -123.041518218999926, 49.266213635000092 ], [ -123.041513803999933, 49.266656303000097 ], [ -123.04150669399999, 49.267140080000026 ], [ -123.041500207999945, 49.267581082000099 ], [ -123.038986312999924, 49.267573407000022 ], [ -123.038994375999962, 49.267114199000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89304334", "BldgCostT": "60093334", "sL_LossRatio": "0.726100799875747", "sL_AssetLoss": "1416470", "sL_BldgLoss": "1028500", "sL_StrLoss": "457800", "sL_NStrLoss": "570700", "sL_ContLoss": "387970", "geom_point": "0101000020E610000053460A02B7C25EC041FBCBCDBBA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04154832799999, 49.263397926000046 ], [ -123.04155238199999, 49.262927290000071 ], [ -123.03906351099999, 49.262920303000108 ], [ -123.039071521, 49.262509010000073 ], [ -123.039083412999958, 49.261899299000078 ], [ -123.040130084999973, 49.261901002000066 ], [ -123.0415779, 49.261924503000046 ], [ -123.043555203999986, 49.261941636000081 ], [ -123.04431438599994, 49.261948201000052 ], [ -123.044329908999927, 49.262934 ], [ -123.044319890999986, 49.263867012000091 ], [ -123.044314492999931, 49.264749592000079 ], [ -123.044308981999933, 49.265698790000052 ], [ -123.043517568999974, 49.26569506100001 ], [ -123.041523501999976, 49.265685610000034 ], [ -123.041528403999976, 49.265215024000092 ], [ -123.041533414999961, 49.26473370300004 ], [ -123.041538509999938, 49.264324378000012 ], [ -123.041544399999964, 49.263851294000084 ], [ -123.04154832799999, 49.263397926000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149188251", "BldgCostT": "94115001", "sL_LossRatio": "0.67158117370755", "sL_AssetLoss": "3082710", "sL_BldgLoss": "2070290", "sL_StrLoss": "870410", "sL_NStrLoss": "1199880", "sL_ContLoss": "1012420", "geom_point": "0101000020E610000003D6BB89ABC25EC0E1DA50314EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043517568999974, 49.26569506100001 ], [ -123.044308981999933, 49.265698790000052 ], [ -123.044270590999972, 49.266666991000115 ], [ -123.04426369499997, 49.267595487000051 ], [ -123.044254383999927, 49.267878888000077 ], [ -123.044248492999955, 49.268058870000075 ], [ -123.044234595999924, 49.268482884000079 ], [ -123.044221782999941, 49.269374305000092 ], [ -123.044217191999948, 49.269575987000074 ], [ -123.041466097999916, 49.269558200000056 ], [ -123.038940720999932, 49.269557405000079 ], [ -123.03643579099996, 49.269537309000093 ], [ -123.034406964999931, 49.269536606000074 ], [ -123.033811502999981, 49.269536398000113 ], [ -123.033808888999943, 49.269361498000066 ], [ -123.036439001999923, 49.269358099000087 ], [ -123.038945987999952, 49.269367504000087 ], [ -123.038957308999969, 49.268948896000083 ], [ -123.038970208999928, 49.268471909000056 ], [ -123.038977939999938, 49.268040593000087 ], [ -123.038986312999924, 49.267573407000022 ], [ -123.041500207999945, 49.267581082000099 ], [ -123.04150669399999, 49.267140080000026 ], [ -123.041513803999933, 49.266656303000097 ], [ -123.041518218999926, 49.266213635000092 ], [ -123.041523501999976, 49.265685610000034 ], [ -123.043517568999974, 49.26569506100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96708561", "BldgCostT": "62393190", "sL_LossRatio": "0.671688102823629", "sL_AssetLoss": "2288190", "sL_BldgLoss": "1536950", "sL_StrLoss": "662650", "sL_NStrLoss": "874300", "sL_ContLoss": "751240", "geom_point": "0101000020E6100000DCC597FDF8C25EC03AE6C80C4CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04426369499997, 49.267595487000051 ], [ -123.044270590999972, 49.266666991000115 ], [ -123.044308981999933, 49.265698790000052 ], [ -123.045043033999917, 49.265699137000126 ], [ -123.046983909999966, 49.265699983000047 ], [ -123.04698039299997, 49.266220478000029 ], [ -123.046977382999941, 49.266665504000038 ], [ -123.046972169999904, 49.267155956000039 ], [ -123.04696747, 49.267597493000096 ], [ -123.049480992999946, 49.267589703000063 ], [ -123.049473649, 49.268054619000019 ], [ -123.049466898999967, 49.268480179000079 ], [ -123.04945974499995, 49.268954124000068 ], [ -123.049458895999933, 49.269008087000046 ], [ -123.049453198999956, 49.269386816000043 ], [ -123.049441187999946, 49.269575707000065 ], [ -123.046936210999988, 49.269577410000132 ], [ -123.044922867999944, 49.269576357000076 ], [ -123.044217191999948, 49.269575987000074 ], [ -123.044221782999941, 49.269374305000092 ], [ -123.044234595999924, 49.268482884000079 ], [ -123.044248492999955, 49.268058870000075 ], [ -123.044254383999927, 49.267878888000077 ], [ -123.04426369499997, 49.267595487000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "283061780", "BldgCostT": "194683602", "sL_LossRatio": "0.830281933183071", "sL_AssetLoss": "2347010", "sL_BldgLoss": "1948680", "sL_StrLoss": "911070", "sL_NStrLoss": "1037610", "sL_ContLoss": "398330", "geom_point": "0101000020E6100000F11EB1270BC35EC02B8330D809A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04698039299997, 49.266220478000029 ], [ -123.046983909999966, 49.265699983000047 ], [ -123.045043033999917, 49.265699137000126 ], [ -123.044308981999933, 49.265698790000052 ], [ -123.044314492999931, 49.264749592000079 ], [ -123.045042191999954, 49.264750199000055 ], [ -123.046996204999942, 49.264751806000078 ], [ -123.049502897, 49.264760098000068 ], [ -123.049498952999954, 49.265229944000119 ], [ -123.049494897999963, 49.265707409000058 ], [ -123.049491429999975, 49.266237429000114 ], [ -123.049488595999932, 49.266670189000095 ], [ -123.049484679999949, 49.267145974000051 ], [ -123.049480992999946, 49.267589703000063 ], [ -123.04696747, 49.267597493000096 ], [ -123.046972169999904, 49.267155956000039 ], [ -123.046977382999941, 49.266665504000038 ], [ -123.04698039299997, 49.266220478000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87820136", "BldgCostT": "57332079", "sL_LossRatio": "0.724497515027778", "sL_AssetLoss": "1229390", "sL_BldgLoss": "890690", "sL_StrLoss": "400680", "sL_NStrLoss": "490010", "sL_ContLoss": "338700", "geom_point": "0101000020E61000002F8100BE00C35EC0E6A772B9C5A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04701239399999, 49.262942605000084 ], [ -123.04957379799994, 49.262954109000155 ], [ -123.049539287999949, 49.263440049000152 ], [ -123.049508991999957, 49.263865782000018 ], [ -123.049505707999984, 49.264348396000031 ], [ -123.049502897, 49.264760098000068 ], [ -123.046996204999942, 49.264751806000078 ], [ -123.045042191999954, 49.264750199000055 ], [ -123.044314492999931, 49.264749592000079 ], [ -123.044319890999986, 49.263867012000091 ], [ -123.044329908999927, 49.262934 ], [ -123.04502684500001, 49.262936245000034 ], [ -123.04701239399999, 49.262942605000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132683886", "BldgCostT": "88977079", "sL_LossRatio": "0.751066561099538", "sL_AssetLoss": "1300910", "sL_BldgLoss": "977070", "sL_StrLoss": "447480", "sL_NStrLoss": "529590", "sL_ContLoss": "323840", "geom_point": "0101000020E610000022A1988216C35EC06CD37DA598A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.050523583999947, 49.262006763000016 ], [ -123.052209988999905, 49.262006492000104 ], [ -123.052208503999964, 49.262530375000026 ], [ -123.052207305999971, 49.26295679600009 ], [ -123.04957379799994, 49.262954109000155 ], [ -123.04701239399999, 49.262942605000084 ], [ -123.04502684500001, 49.262936245000034 ], [ -123.044329908999927, 49.262934 ], [ -123.04431438599994, 49.261948201000052 ], [ -123.047040698999922, 49.262002109000029 ], [ -123.049586019999964, 49.262006907000028 ], [ -123.050523583999947, 49.262006763000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94272583", "BldgCostT": "60388333", "sL_LossRatio": "0.754863343809001", "sL_AssetLoss": "828905", "sL_BldgLoss": "625710", "sL_StrLoss": "331220", "sL_NStrLoss": "294490", "sL_ContLoss": "203195", "geom_point": "0101000020E6100000D1F85CD860C35EC07FDCC015B7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052182224999953, 49.264338775000098 ], [ -123.052190596999978, 49.263867898000058 ], [ -123.049508991999957, 49.263865782000018 ], [ -123.049539287999949, 49.263440049000152 ], [ -123.04957379799994, 49.262954109000155 ], [ -123.052207305999971, 49.26295679600009 ], [ -123.052208503999964, 49.262530375000026 ], [ -123.052209988999905, 49.262006492000104 ], [ -123.053006711999899, 49.26200669800015 ], [ -123.054705398999957, 49.262017894000117 ], [ -123.054710054999958, 49.262529003000033 ], [ -123.054714007999948, 49.262963896000045 ], [ -123.054713392999929, 49.263428629000053 ], [ -123.054712798999944, 49.263871 ], [ -123.054712889999976, 49.26434610000004 ], [ -123.054713012999983, 49.264776300000122 ], [ -123.052174607999973, 49.264768199000073 ], [ -123.052182224999953, 49.264338775000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122344835", "BldgCostT": "78019291", "sL_LossRatio": "0.716129290556771", "sL_AssetLoss": "1498640", "sL_BldgLoss": "1073220", "sL_StrLoss": "517200", "sL_NStrLoss": "556020", "sL_ContLoss": "425420", "geom_point": "0101000020E6100000DFC8769D51C35EC0C4E58931FAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049502897, 49.264760098000068 ], [ -123.049505707999984, 49.264348396000031 ], [ -123.049508991999957, 49.263865782000018 ], [ -123.052190596999978, 49.263867898000058 ], [ -123.052182224999953, 49.264338775000098 ], [ -123.052174607999973, 49.264768199000073 ], [ -123.054713012999983, 49.264776300000122 ], [ -123.054710495999942, 49.265245638000053 ], [ -123.05470801, 49.26572009700002 ], [ -123.054708533999985, 49.266235103000035 ], [ -123.054708988999934, 49.266678599000045 ], [ -123.052139992999969, 49.266674206000076 ], [ -123.049488595999932, 49.266670189000095 ], [ -123.049491429999975, 49.266237429000114 ], [ -123.049494897999963, 49.265707409000058 ], [ -123.049498952999954, 49.265229944000119 ], [ -123.049502897, 49.264760098000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "301784113", "BldgCostT": "195022033", "sL_LossRatio": "0.752143035481455", "sL_AssetLoss": "1009316", "sL_BldgLoss": "759150", "sL_StrLoss": "356560", "sL_NStrLoss": "402590", "sL_ContLoss": "250166", "geom_point": "0101000020E610000040B3567A8EC35EC012ABABA77BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055860143999936, 49.262026651000042 ], [ -123.055846616999986, 49.262024703000101 ], [ -123.055513033999929, 49.26202272000009 ], [ -123.054980449999945, 49.262019544000069 ], [ -123.054705398999957, 49.262017894000117 ], [ -123.053006711999899, 49.26200669800015 ], [ -123.053000194999967, 49.2610290840001 ], [ -123.054741887999953, 49.261009997000031 ], [ -123.055992874999916, 49.261013480000045 ], [ -123.056579718999913, 49.261015093000061 ], [ -123.056589094999964, 49.261256804000077 ], [ -123.05739544599993, 49.261269724000037 ], [ -123.058187884999981, 49.261282398000105 ], [ -123.058157197999961, 49.262242707000084 ], [ -123.057396743999945, 49.262225089000026 ], [ -123.057350258999975, 49.26222401600014 ], [ -123.05707350099999, 49.262217606000092 ], [ -123.0565913, 49.262131505000099 ], [ -123.055860143999936, 49.262026651000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163426749", "BldgCostT": "109554999", "sL_LossRatio": "0.778357446350777", "sL_AssetLoss": "1487440", "sL_BldgLoss": "1157760", "sL_StrLoss": "533870", "sL_NStrLoss": "623890", "sL_ContLoss": "329680", "geom_point": "0101000020E610000042B4DAEC9DC35EC0342AA2EC4EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056589094999964, 49.261256804000077 ], [ -123.056579718999913, 49.261015093000061 ], [ -123.055992874999916, 49.261013480000045 ], [ -123.054741887999953, 49.261009997000031 ], [ -123.053000194999967, 49.2610290840001 ], [ -123.052999410999959, 49.260577908000059 ], [ -123.052998609999932, 49.260079690000055 ], [ -123.052998685999981, 49.260065204000036 ], [ -123.05300089, 49.259633419000068 ], [ -123.053003388999954, 49.25914028900015 ], [ -123.054749998999938, 49.259151899000074 ], [ -123.056629300999973, 49.259150988000066 ], [ -123.056626912999917, 49.259447297000065 ], [ -123.057366547999919, 49.259457807000118 ], [ -123.058212146999978, 49.25946979200004 ], [ -123.058221525999969, 49.259105240000096 ], [ -123.059163354999924, 49.259482209000062 ], [ -123.060151010999974, 49.259873010000106 ], [ -123.060127000999913, 49.26038220200013 ], [ -123.060118070999962, 49.260871170000044 ], [ -123.060110417999923, 49.261293400000099 ], [ -123.058187884999981, 49.261282398000105 ], [ -123.05739544599993, 49.261269724000037 ], [ -123.056589094999964, 49.261256804000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74055917", "BldgCostT": "45241667", "sL_LossRatio": "0.674386191473613", "sL_AssetLoss": "1015952", "sL_BldgLoss": "685144", "sL_StrLoss": "300670", "sL_NStrLoss": "384474", "sL_ContLoss": "330808", "geom_point": "0101000020E6100000C0300D816BC35EC0775C9E1823A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049586019999964, 49.262006907000028 ], [ -123.049549662999979, 49.258754961000058 ], [ -123.04956895399998, 49.258391114000034 ], [ -123.049570369999941, 49.258364560000096 ], [ -123.049573407999944, 49.257884549000011 ], [ -123.051815545999929, 49.257613047000099 ], [ -123.052116416999979, 49.257576611000076 ], [ -123.052951888999985, 49.257506699000025 ], [ -123.052954798999977, 49.25721870100012 ], [ -123.052956294999944, 49.257069427000076 ], [ -123.052960124999956, 49.256684913000093 ], [ -123.053747986999937, 49.256607806000069 ], [ -123.055007602, 49.25660800900004 ], [ -123.055003283999909, 49.256169406000041 ], [ -123.055001726999976, 49.2560088070001 ], [ -123.055826532999916, 49.256230154000015 ], [ -123.056619696999974, 49.256442993000114 ], [ -123.056616680000033, 49.256750102000083 ], [ -123.057499444999962, 49.256764099000129 ], [ -123.058277193999928, 49.256776395000031 ], [ -123.058275899999984, 49.256851416000096 ], [ -123.05825120400003, 49.258268313000045 ], [ -123.05824465799995, 49.258742647000112 ], [ -123.058221525999969, 49.259105240000096 ], [ -123.058212146999978, 49.25946979200004 ], [ -123.057366547999919, 49.259457807000118 ], [ -123.056626912999917, 49.259447297000065 ], [ -123.056629300999973, 49.259150988000066 ], [ -123.054749998999938, 49.259151899000074 ], [ -123.053003388999954, 49.25914028900015 ], [ -123.05300089, 49.259633419000068 ], [ -123.052998685999981, 49.260065204000036 ], [ -123.052998609999932, 49.260079690000055 ], [ -123.052999410999959, 49.260577908000059 ], [ -123.053000194999967, 49.2610290840001 ], [ -123.053006711999899, 49.26200669800015 ], [ -123.052209988999905, 49.262006492000104 ], [ -123.050523583999947, 49.262006763000016 ], [ -123.049586019999964, 49.262006907000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101272750", "BldgCostT": "62530000", "sL_LossRatio": "0.689886272497462", "sL_AssetLoss": "1903937", "sL_BldgLoss": "1313500", "sL_StrLoss": "558300", "sL_NStrLoss": "755200", "sL_ContLoss": "590437", "geom_point": "0101000020E6100000227B3152F7C35EC08CF30DD817A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05825120400003, 49.258268313000045 ], [ -123.058275899999984, 49.256851416000096 ], [ -123.058277193999928, 49.256776395000031 ], [ -123.058988007, 49.256787705000107 ], [ -123.060768863999911, 49.256720540000074 ], [ -123.060757217999978, 49.256732798000066 ], [ -123.060812316999915, 49.256903700000059 ], [ -123.061141889999945, 49.257155714000092 ], [ -123.061376186999922, 49.257226995000032 ], [ -123.061924897999944, 49.257209904000014 ], [ -123.062420203999963, 49.257343709000054 ], [ -123.062874391999955, 49.257362301000143 ], [ -123.063066808999949, 49.257235490000085 ], [ -123.063314096999974, 49.257199902000096 ], [ -123.063475694999923, 49.25676042900011 ], [ -123.06535749699998, 49.256831393000077 ], [ -123.066008120999953, 49.256816699000062 ], [ -123.065989314999925, 49.257722384000026 ], [ -123.06596500799999, 49.258649496000075 ], [ -123.065949813999907, 49.259540892000039 ], [ -123.06526752399999, 49.259535826000047 ], [ -123.064037191999915, 49.259526715000092 ], [ -123.062070200999955, 49.25952360100009 ], [ -123.062069302999959, 49.259618864000103 ], [ -123.062066046000012, 49.259961668000052 ], [ -123.062063529999989, 49.260231566000122 ], [ -123.062060356999936, 49.260564430000017 ], [ -123.062059586999951, 49.260645597000035 ], [ -123.062055851999972, 49.260888344000136 ], [ -123.062049388, 49.261305619000083 ], [ -123.060110417999923, 49.261293400000099 ], [ -123.060118070999962, 49.260871170000044 ], [ -123.060127000999913, 49.26038220200013 ], [ -123.060151010999974, 49.259873010000106 ], [ -123.059163354999924, 49.259482209000062 ], [ -123.058221525999969, 49.259105240000096 ], [ -123.05824465799995, 49.258742647000112 ], [ -123.05825120400003, 49.258268313000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "352286146", "BldgCostT": "237466525", "sL_LossRatio": "0.83048790277986", "sL_AssetLoss": "1781277", "sL_BldgLoss": "1479329", "sL_StrLoss": "758410", "sL_NStrLoss": "720919", "sL_ContLoss": "301948", "geom_point": "0101000020E6100000BAD92F0A08C45EC0017016A36CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06526752399999, 49.259535826000047 ], [ -123.065949813999907, 49.259540892000039 ], [ -123.065941926999955, 49.259995789000079 ], [ -123.065934211999931, 49.260440305000074 ], [ -123.06593140299999, 49.26087719 ], [ -123.065930569999921, 49.261008934000131 ], [ -123.065928178999954, 49.261382350000069 ], [ -123.065926971999929, 49.261470671000041 ], [ -123.065923049999967, 49.261761420000035 ], [ -123.065921359999919, 49.261886000000118 ], [ -123.065918425999925, 49.262100546000056 ], [ -123.065917523999957, 49.262167244000125 ], [ -123.065915819999987, 49.262294483000069 ], [ -123.063968993999964, 49.262274898000079 ], [ -123.062030111999917, 49.262260806000029 ], [ -123.058275419999987, 49.262243261000044 ], [ -123.058157197999961, 49.262242707000084 ], [ -123.058187884999981, 49.261282398000105 ], [ -123.060110417999923, 49.261293400000099 ], [ -123.062049388, 49.261305619000083 ], [ -123.062055851999972, 49.260888344000136 ], [ -123.062059586999951, 49.260645597000035 ], [ -123.062060356999936, 49.260564430000017 ], [ -123.062063529999989, 49.260231566000122 ], [ -123.062066046000012, 49.259961668000052 ], [ -123.062069302999959, 49.259618864000103 ], [ -123.062070200999955, 49.25952360100009 ], [ -123.064037191999915, 49.259526715000092 ], [ -123.06526752399999, 49.259535826000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96589919", "BldgCostT": "61782625", "sL_LossRatio": "0.733789543015439", "sL_AssetLoss": "1032420", "sL_BldgLoss": "757579", "sL_StrLoss": "355830", "sL_NStrLoss": "401749", "sL_ContLoss": "274841", "geom_point": "0101000020E61000005DC146C41AC45EC0FC136C8EB9A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063922312999949, 49.264566273000078 ], [ -123.063919496999986, 49.264142609000018 ], [ -123.062000675999954, 49.264135411000026 ], [ -123.062013819999919, 49.263686295000078 ], [ -123.062027723, 49.263211086000119 ], [ -123.06202887299996, 49.262750333000071 ], [ -123.062030111999917, 49.262260806000029 ], [ -123.063968993999964, 49.262274898000079 ], [ -123.065915819999987, 49.262294483000069 ], [ -123.065901340999972, 49.262757081000061 ], [ -123.065886146999972, 49.263241299000107 ], [ -123.065876141999937, 49.263719594000122 ], [ -123.065867109999914, 49.264150494000042 ], [ -123.065859577999902, 49.264583233000039 ], [ -123.065851485999985, 49.265048208000074 ], [ -123.063925409999982, 49.265025494000035 ], [ -123.063922312999949, 49.264566273000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125814415", "BldgCostT": "82046665", "sL_LossRatio": "0.725979162082575", "sL_AssetLoss": "1708808", "sL_BldgLoss": "1240559", "sL_StrLoss": "547810", "sL_NStrLoss": "692749", "sL_ContLoss": "468249", "geom_point": "0101000020E610000038C8C969F4C35EC0FFEA2FC318A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.062000675999954, 49.264135411000026 ], [ -123.063919496999986, 49.264142609000018 ], [ -123.063922312999949, 49.264566273000078 ], [ -123.063925409999982, 49.265025494000035 ], [ -123.063913451999909, 49.265492746000128 ], [ -123.063902113999973, 49.265937392000083 ], [ -123.063891349999906, 49.266392188000097 ], [ -123.063880797999929, 49.266838397000157 ], [ -123.063869305999958, 49.267291758000091 ], [ -123.063857804999927, 49.267744014000101 ], [ -123.061933872999987, 49.267727697000041 ], [ -123.059994705999941, 49.267714509 ], [ -123.05804749, 49.267698294000049 ], [ -123.05805598299996, 49.267339523000061 ], [ -123.058057896999941, 49.26725859700008 ], [ -123.058069511999975, 49.266766708000091 ], [ -123.059987106999969, 49.266750927000061 ], [ -123.060000902999903, 49.266750800000047 ], [ -123.06001296299992, 49.266358041 ], [ -123.060026706999977, 49.265909304000054 ], [ -123.06193821399999, 49.265924402000046 ], [ -123.061957220999929, 49.265475479000024 ], [ -123.061976997999949, 49.265008506000193 ], [ -123.061989226999955, 49.26455848500008 ], [ -123.062000675999954, 49.264135411000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78720123", "BldgCostT": "52818706", "sL_LossRatio": "0.745187434655259", "sL_AssetLoss": "1002376", "sL_BldgLoss": "746958", "sL_StrLoss": "349410", "sL_NStrLoss": "397548", "sL_ContLoss": "255418", "geom_point": "0101000020E610000095F25298D4C35EC06C9AB9B8F4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058122602999944, 49.264153190000094 ], [ -123.062000675999954, 49.264135411000026 ], [ -123.061989226999955, 49.26455848500008 ], [ -123.061976997999949, 49.265008506000193 ], [ -123.061957220999929, 49.265475479000024 ], [ -123.06193821399999, 49.265924402000046 ], [ -123.060026706999977, 49.265909304000054 ], [ -123.06001296299992, 49.266358041 ], [ -123.060000902999903, 49.266750800000047 ], [ -123.059987106999969, 49.266750927000061 ], [ -123.058069511999975, 49.266766708000091 ], [ -123.058077808999911, 49.266332181000088 ], [ -123.058086080999942, 49.265897899000059 ], [ -123.058095812999952, 49.265468791000082 ], [ -123.05810670799994, 49.264988582000051 ], [ -123.058115011, 49.264551229000091 ], [ -123.058122602999944, 49.264153190000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179506583", "BldgCostT": "119378333", "sL_LossRatio": "0.79167176950169", "sL_AssetLoss": "1486102", "sL_BldgLoss": "1176505", "sL_StrLoss": "574940", "sL_NStrLoss": "601565", "sL_ContLoss": "309597", "geom_point": "0101000020E61000001D5FEE7255C35EC09C596C0F52A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052139992999969, 49.266674206000076 ], [ -123.054708988999934, 49.266678599000045 ], [ -123.054705955999964, 49.267152552000049 ], [ -123.054703295999929, 49.267569296000033 ], [ -123.054703741999901, 49.268034136000011 ], [ -123.054704195999989, 49.2684845140001 ], [ -123.054698542999972, 49.268969676000026 ], [ -123.054693377999953, 49.269412894000119 ], [ -123.054669838, 49.269610398000054 ], [ -123.054132115999906, 49.269602242000126 ], [ -123.052065891999973, 49.26957080600009 ], [ -123.049441187999946, 49.269575707000065 ], [ -123.049453198999956, 49.269386816000043 ], [ -123.049458895999933, 49.269008087000046 ], [ -123.04945974499995, 49.268954124000068 ], [ -123.049466898999967, 49.268480179000079 ], [ -123.049473649, 49.268054619000019 ], [ -123.049480992999946, 49.267589703000063 ], [ -123.049484679999949, 49.267145974000051 ], [ -123.049488595999932, 49.266670189000095 ], [ -123.052139992999969, 49.266674206000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87044477", "BldgCostT": "55549856", "sL_LossRatio": "0.716308708992211", "sL_AssetLoss": "1143990", "sL_BldgLoss": "819450", "sL_StrLoss": "351120", "sL_NStrLoss": "468330", "sL_ContLoss": "324540", "geom_point": "0101000020E610000002BF99DACAC35EC0F105904E9BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059945488999972, 49.269510202000149 ], [ -123.061901899999924, 49.269534597000074 ], [ -123.061892531999888, 49.269991789000088 ], [ -123.061883531999953, 49.270433110000063 ], [ -123.061876000999959, 49.270801326000011 ], [ -123.061867300999921, 49.271229803000068 ], [ -123.059924091999974, 49.271212896000101 ], [ -123.057971187999968, 49.2711975 ], [ -123.056592997999985, 49.271197790000031 ], [ -123.056595605, 49.270785861000022 ], [ -123.056597961999941, 49.270405243000042 ], [ -123.056600916999969, 49.269985382000065 ], [ -123.056603946999985, 49.269553280000096 ], [ -123.057689235999959, 49.269555858000047 ], [ -123.057873087999965, 49.26949512700002 ], [ -123.058015898999912, 49.269496310000051 ], [ -123.059945488999972, 49.269510202000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80415917", "BldgCostT": "52096667", "sL_LossRatio": "0.725711478299822", "sL_AssetLoss": "1107272", "sL_BldgLoss": "803560", "sL_StrLoss": "360930", "sL_NStrLoss": "442630", "sL_ContLoss": "303712", "geom_point": "0101000020E61000004FA6C829D3C35EC0E18D0E40D1A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061867300999921, 49.271229803000068 ], [ -123.063779004999944, 49.271245787000062 ], [ -123.063769881999946, 49.271681534000066 ], [ -123.063761304999971, 49.272090210000052 ], [ -123.061849196999958, 49.272057999000069 ], [ -123.061840532999952, 49.272528184000073 ], [ -123.06183228299993, 49.272975398000014 ], [ -123.060433206000013, 49.272956170000064 ], [ -123.059896508999913, 49.272948809000127 ], [ -123.059801580999945, 49.272946756000096 ], [ -123.057954793999912, 49.272906707000097 ], [ -123.056585901999981, 49.272934192000072 ], [ -123.056587248999975, 49.272503840000063 ], [ -123.056587893999975, 49.272295701000132 ], [ -123.05658981, 49.272049802000055 ], [ -123.056591062999956, 49.2716223420001 ], [ -123.056591789999942, 49.271367995000084 ], [ -123.056592997999985, 49.271197790000031 ], [ -123.057971187999968, 49.2711975 ], [ -123.059924091999974, 49.271212896000101 ], [ -123.061867300999921, 49.271229803000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161665478", "BldgCostT": "105924857", "sL_LossRatio": "0.733885486122964", "sL_AssetLoss": "1786945", "sL_BldgLoss": "1311413", "sL_StrLoss": "581250", "sL_NStrLoss": "730163", "sL_ContLoss": "475532", "geom_point": "0101000020E610000020FF16AE18C45EC0F48325E4A4A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063769881999946, 49.271681534000066 ], [ -123.063779004999944, 49.271245787000062 ], [ -123.061867300999921, 49.271229803000068 ], [ -123.061876000999959, 49.270801326000011 ], [ -123.061883531999953, 49.270433110000063 ], [ -123.061892531999888, 49.269991789000088 ], [ -123.061901899999924, 49.269534597000074 ], [ -123.063806990999964, 49.269566594000082 ], [ -123.065769407999937, 49.269560591000129 ], [ -123.06575309599998, 49.270470807000024 ], [ -123.065746699999963, 49.270834966000081 ], [ -123.065738905999979, 49.271281100000138 ], [ -123.065724731999964, 49.271689669000089 ], [ -123.065710591999917, 49.272097293000179 ], [ -123.065146816999942, 49.272095259000061 ], [ -123.063761304999971, 49.272090210000052 ], [ -123.063769881999946, 49.271681534000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84085166", "BldgCostT": "54656666", "sL_LossRatio": "0.715414557392175", "sL_AssetLoss": "1213885", "sL_BldgLoss": "868431", "sL_StrLoss": "365280", "sL_NStrLoss": "503151", "sL_ContLoss": "345454", "geom_point": "0101000020E6100000CEFE82D5FFC35EC0F08996B865A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059971693999969, 49.268619989000122 ], [ -123.059982991999945, 49.268175076000077 ], [ -123.059994705999941, 49.267714509 ], [ -123.061933872999987, 49.267727697000041 ], [ -123.063857804999927, 49.267744014000101 ], [ -123.063847525999932, 49.268200334000078 ], [ -123.063837279, 49.268653203000063 ], [ -123.065784591999972, 49.268669199000058 ], [ -123.065777116999982, 49.269108134000085 ], [ -123.065769407999937, 49.269560591000129 ], [ -123.063806990999964, 49.269566594000082 ], [ -123.061901899999924, 49.269534597000074 ], [ -123.059945488999972, 49.269510202000149 ], [ -123.059957542999953, 49.269101378000087 ], [ -123.059971693999969, 49.268619989000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79201501", "BldgCostT": "49785001", "sL_LossRatio": "0.740360122101121", "sL_AssetLoss": "708593", "sL_BldgLoss": "524614", "sL_StrLoss": "258200", "sL_NStrLoss": "266414", "sL_ContLoss": "183979", "geom_point": "0101000020E6100000ECE3997E26C45EC03C9A443928A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063925409999982, 49.265025494000035 ], [ -123.065851485999985, 49.265048208000074 ], [ -123.065843044999923, 49.265527825000056 ], [ -123.065835619999945, 49.265951199000028 ], [ -123.065827638999934, 49.266409433000071 ], [ -123.065820013999897, 49.266850690000126 ], [ -123.065817908999961, 49.266967284000039 ], [ -123.065811457999928, 49.267327055000159 ], [ -123.065803699999961, 49.267759090000027 ], [ -123.065793888999949, 49.268226712000086 ], [ -123.065784591999972, 49.268669199000058 ], [ -123.063837279, 49.268653203000063 ], [ -123.063847525999932, 49.268200334000078 ], [ -123.063857804999927, 49.267744014000101 ], [ -123.063869305999958, 49.267291758000091 ], [ -123.063880797999929, 49.266838397000157 ], [ -123.063891349999906, 49.266392188000097 ], [ -123.063902113999973, 49.265937392000083 ], [ -123.063913451999909, 49.265492746000128 ], [ -123.063925409999982, 49.265025494000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166099750", "BldgCostT": "103869015", "sL_LossRatio": "0.689258893330359", "sL_AssetLoss": "1788447", "sL_BldgLoss": "1232703", "sL_StrLoss": "510093", "sL_NStrLoss": "722610", "sL_ContLoss": "555744", "geom_point": "0101000020E6100000C21E46AD55C45EC0D6E8A3C663A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068990188999933, 49.267786397000073 ], [ -123.069678889999963, 49.267792305000057 ], [ -123.069673713999975, 49.268700986000084 ], [ -123.069675513, 49.269586502000074 ], [ -123.068966282999966, 49.269573384000047 ], [ -123.067696485999974, 49.269549902000115 ], [ -123.067012829999911, 49.269553695000091 ], [ -123.066394282, 49.269557119000055 ], [ -123.065769407999937, 49.269560591000129 ], [ -123.065777116999982, 49.269108134000085 ], [ -123.065784591999972, 49.268669199000058 ], [ -123.065793888999949, 49.268226712000086 ], [ -123.065803699999961, 49.267759090000027 ], [ -123.066391944999921, 49.267764152000026 ], [ -123.068990188999933, 49.267786397000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252496907", "BldgCostT": "160318897", "sL_LossRatio": "0.696662873771195", "sL_AssetLoss": "2680450", "sL_BldgLoss": "1867370", "sL_StrLoss": "756450", "sL_NStrLoss": "1110920", "sL_ContLoss": "813080", "geom_point": "0101000020E61000008222F52203C35EC058202F7B44A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04756450099994, 49.257505307000095 ], [ -123.04803105299996, 49.257477587000018 ], [ -123.048862530999926, 49.257503024000123 ], [ -123.049558308999934, 49.257409388000013 ], [ -123.049573407999944, 49.257884549000011 ], [ -123.049570369999941, 49.258364560000096 ], [ -123.04956895399998, 49.258391114000034 ], [ -123.049549662999979, 49.258754961000058 ], [ -123.049586019999964, 49.262006907000028 ], [ -123.047040698999922, 49.262002109000029 ], [ -123.04431438599994, 49.261948201000052 ], [ -123.044320107999965, 49.261211494000094 ], [ -123.044322204999958, 49.260898059000027 ], [ -123.044339340999926, 49.260410954000079 ], [ -123.044381470999951, 49.259213414000044 ], [ -123.044332860999958, 49.25888880400008 ], [ -123.044280280999956, 49.258537747000048 ], [ -123.044187330999947, 49.258379378000058 ], [ -123.044193599999929, 49.258194898000106 ], [ -123.044374906999948, 49.258195351000097 ], [ -123.045077474999943, 49.258194056000058 ], [ -123.046994795999964, 49.258190531000047 ], [ -123.047007258999926, 49.257702109000078 ], [ -123.047012301999942, 49.257505489 ], [ -123.04756450099994, 49.257505307000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129830970", "BldgCostT": "87515413", "sL_LossRatio": "0.750336359096384", "sL_AssetLoss": "1702050", "sL_BldgLoss": "1277110", "sL_StrLoss": "558830", "sL_NStrLoss": "718280", "sL_ContLoss": "424940", "geom_point": "0101000020E6100000739DD20317C35EC0816962CBBCA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.047012301999942, 49.257505489 ], [ -123.047018597999923, 49.257234483000019 ], [ -123.04702299799996, 49.256811605000081 ], [ -123.047027985999947, 49.256330401000085 ], [ -123.047031125999965, 49.255885113000069 ], [ -123.047034285, 49.255433406000101 ], [ -123.0470387299999, 49.254940618000049 ], [ -123.047043148999975, 49.254445886000056 ], [ -123.047046928999976, 49.254027602000065 ], [ -123.047629912, 49.254029243000083 ], [ -123.047932236999912, 49.254030080000042 ], [ -123.048256676999969, 49.254031003000087 ], [ -123.048605244999948, 49.254030549000092 ], [ -123.048976253999911, 49.254030039000021 ], [ -123.049543902, 49.254029299000074 ], [ -123.049538598999959, 49.254479489000076 ], [ -123.049529216999986, 49.255448496000049 ], [ -123.049526095999965, 49.255910926000134 ], [ -123.049523193999946, 49.256341013000082 ], [ -123.049539211999942, 49.256828501000101 ], [ -123.049558308999934, 49.257409388000013 ], [ -123.048862530999926, 49.257503024000123 ], [ -123.04803105299996, 49.257477587000018 ], [ -123.04756450099994, 49.257505307000095 ], [ -123.047012301999942, 49.257505489 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89196666", "BldgCostT": "58251666", "sL_LossRatio": "0.705306781040118", "sL_AssetLoss": "1450220", "sL_BldgLoss": "1022850", "sL_StrLoss": "482100", "sL_NStrLoss": "540750", "sL_ContLoss": "427370", "geom_point": "0101000020E61000002E9ECDECEBC25EC0321EF85AC8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04441233799993, 49.256306470000069 ], [ -123.044424899999953, 49.255404305000056 ], [ -123.044246401999956, 49.255403895000015 ], [ -123.044263001999951, 49.25438918600004 ], [ -123.044263095999924, 49.254020699000108 ], [ -123.04444158799997, 49.254021109000064 ], [ -123.045073618999979, 49.254022683000088 ], [ -123.047046928999976, 49.254027602000065 ], [ -123.047043148999975, 49.254445886000056 ], [ -123.0470387299999, 49.254940618000049 ], [ -123.047034285, 49.255433406000101 ], [ -123.047031125999965, 49.255885113000069 ], [ -123.047027985999947, 49.256330401000085 ], [ -123.04702299799996, 49.256811605000081 ], [ -123.047018597999923, 49.257234483000019 ], [ -123.047012301999942, 49.257505489 ], [ -123.047007258999926, 49.257702109000078 ], [ -123.046994795999964, 49.258190531000047 ], [ -123.045077474999943, 49.258194056000058 ], [ -123.044374906999948, 49.258195351000097 ], [ -123.044193599999929, 49.258194898000106 ], [ -123.04421031899993, 49.25770313600006 ], [ -123.044226750999954, 49.257222054000124 ], [ -123.044236384999948, 49.256315197000056 ], [ -123.044292473999974, 49.256315281000099 ], [ -123.044412210999951, 49.256315492000056 ], [ -123.04441233799993, 49.256306470000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149725288", "BldgCostT": "101193046", "sL_LossRatio": "0.793145765644332", "sL_AssetLoss": "994130", "sL_BldgLoss": "788490", "sL_StrLoss": "375730", "sL_NStrLoss": "412760", "sL_ContLoss": "205640", "geom_point": "0101000020E61000003F4B0CD9ABC25EC02B77020EDFA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.044246401999956, 49.255403895000015 ], [ -123.044424899999953, 49.255404305000056 ], [ -123.04441233799993, 49.256306470000069 ], [ -123.044412210999951, 49.256315492000056 ], [ -123.044292473999974, 49.256315281000099 ], [ -123.044236384999948, 49.256315197000056 ], [ -123.044226750999954, 49.257222054000124 ], [ -123.04421031899993, 49.25770313600006 ], [ -123.044193599999929, 49.258194898000106 ], [ -123.041596107999965, 49.258149820000064 ], [ -123.040995802999959, 49.258141494000036 ], [ -123.039073491, 49.258114903000063 ], [ -123.039073359, 49.257660029000121 ], [ -123.039073183999946, 49.257214994000073 ], [ -123.039076068999933, 49.256805673000045 ], [ -123.039079128999944, 49.256369303000035 ], [ -123.039080179999956, 49.255995979000119 ], [ -123.039081401999965, 49.255580304000063 ], [ -123.0415838, 49.255585794000062 ], [ -123.041585993999888, 49.255400293000044 ], [ -123.04354947, 49.255402971000109 ], [ -123.044246401999956, 49.255403895000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "433267916", "BldgCostT": "286580133", "sL_LossRatio": "0.725196077792699", "sL_AssetLoss": "3223593", "sL_BldgLoss": "2337737", "sL_StrLoss": "935917", "sL_NStrLoss": "1401820", "sL_ContLoss": "885856", "geom_point": "0101000020E610000096EBB80A77C25EC081ED8A8D37A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033722079999947, 49.258128192000108 ], [ -123.033723597999966, 49.257751659000064 ], [ -123.03372559499995, 49.257236490000025 ], [ -123.033727947999949, 49.256978084000089 ], [ -123.03373309599999, 49.256409792000071 ], [ -123.033849786999923, 49.256411195000048 ], [ -123.034493710999982, 49.256406134000123 ], [ -123.036550301999952, 49.256389894000066 ], [ -123.039079128999944, 49.256369303000035 ], [ -123.039076068999933, 49.256805673000045 ], [ -123.039073183999946, 49.257214994000073 ], [ -123.039073359, 49.257660029000121 ], [ -123.039073491, 49.258114903000063 ], [ -123.040995802999959, 49.258141494000036 ], [ -123.041596107999965, 49.258149820000064 ], [ -123.044193599999929, 49.258194898000106 ], [ -123.044187330999947, 49.258379378000058 ], [ -123.044280280999956, 49.258537747000048 ], [ -123.044332860999958, 49.25888880400008 ], [ -123.044381470999951, 49.259213414000044 ], [ -123.044339340999926, 49.260410954000079 ], [ -123.044322204999958, 49.260898059000027 ], [ -123.044320107999965, 49.261211494000094 ], [ -123.04431438599994, 49.261948201000052 ], [ -123.043555203999986, 49.261941636000081 ], [ -123.0415779, 49.261924503000046 ], [ -123.040130084999973, 49.261901002000066 ], [ -123.039083412999958, 49.261899299000078 ], [ -123.037891193999911, 49.26189538600012 ], [ -123.036518593999986, 49.261897393000069 ], [ -123.035143764999972, 49.26189817800006 ], [ -123.03400302299994, 49.26189880400009 ], [ -123.033821703999976, 49.2618988830001 ], [ -123.033660553999951, 49.261898626000125 ], [ -123.03364592899996, 49.261898603000077 ], [ -123.033677180999945, 49.260351340000106 ], [ -123.03368255099997, 49.26008526100005 ], [ -123.033696615999972, 49.259388788000102 ], [ -123.033722079999947, 49.258128192000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268985083", "BldgCostT": "157858333", "sL_LossRatio": "0.667441288072385", "sL_AssetLoss": "3238141", "sL_BldgLoss": "2161269", "sL_StrLoss": "993109", "sL_NStrLoss": "1168160", "sL_ContLoss": "1076872", "geom_point": "0101000020E6100000372E2479D1C15EC0FE6E04F321A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023759307999939, 49.262316390000073 ], [ -123.023698891, 49.261545387000076 ], [ -123.023527509999937, 49.26154070000004 ], [ -123.02353830499996, 49.261265406000057 ], [ -123.023546107999962, 49.261099802000047 ], [ -123.023543793999949, 49.260793498000105 ], [ -123.023530811999976, 49.26009679 ], [ -123.023524306999931, 49.259876786000028 ], [ -123.023520989999938, 49.259823300000065 ], [ -123.023477092999912, 49.259113514000099 ], [ -123.023482696999949, 49.258212792000045 ], [ -123.023495605999955, 49.25732771000002 ], [ -123.02349848599999, 49.256426109000074 ], [ -123.023501073999967, 49.255523389000111 ], [ -123.02350169, 49.255304693000035 ], [ -123.023504501000019, 49.254725496000148 ], [ -123.023506614999917, 49.254201302000084 ], [ -123.023805806, 49.254205086000105 ], [ -123.024634181999943, 49.254202702000022 ], [ -123.024638108999952, 49.255040583000017 ], [ -123.024733901999937, 49.255153095000018 ], [ -123.025257702999966, 49.255489108000084 ], [ -123.025679422999957, 49.255767404000018 ], [ -123.026142191999952, 49.256069029000088 ], [ -123.026336110999978, 49.256195409000043 ], [ -123.02670429299998, 49.256450486000091 ], [ -123.02685411, 49.256547321 ], [ -123.027392885999944, 49.256895594000106 ], [ -123.027848107999901, 49.256586757000029 ], [ -123.028433989999925, 49.256189204000059 ], [ -123.028904418999957, 49.255884344000073 ], [ -123.029372700999915, 49.25558090099999 ], [ -123.02977823, 49.255314166000112 ], [ -123.030445285999946, 49.254875400000017 ], [ -123.030530594999973, 49.254765997000085 ], [ -123.030683594999957, 49.254736891000078 ], [ -123.030972585999962, 49.254727691000085 ], [ -123.031633604999968, 49.254734916000146 ], [ -123.032431698999943, 49.254743593000086 ], [ -123.03239181399999, 49.25616208700005 ], [ -123.032437535999946, 49.256262734000117 ], [ -123.032443608999984, 49.256276089000018 ], [ -123.032462128999981, 49.256291716000078 ], [ -123.032530883, 49.256349697000104 ], [ -123.032689704999925, 49.256400891000112 ], [ -123.03373309599999, 49.256409792000071 ], [ -123.033727947999949, 49.256978084000089 ], [ -123.03372559499995, 49.257236490000025 ], [ -123.033723597999966, 49.257751659000064 ], [ -123.033722079999947, 49.258128192000108 ], [ -123.033696615999972, 49.259388788000102 ], [ -123.03368255099997, 49.26008526100005 ], [ -123.033677180999945, 49.260351340000106 ], [ -123.03364592899996, 49.261898603000077 ], [ -123.033328086999987, 49.26188449300011 ], [ -123.033055981999922, 49.261895190000146 ], [ -123.031871013999961, 49.261941687000039 ], [ -123.031539983999934, 49.262009147000079 ], [ -123.030432392999927, 49.261923637000066 ], [ -123.03043074199995, 49.261922813000105 ], [ -123.030430224999947, 49.261923053000082 ], [ -123.028501416999958, 49.261785906000043 ], [ -123.028269922999982, 49.261958302000082 ], [ -123.027254476999985, 49.262428959 ], [ -123.025711025999939, 49.262963583000044 ], [ -123.02562340099999, 49.262993930000093 ], [ -123.025438968999964, 49.263058554000104 ], [ -123.025211539999972, 49.262978854000018 ], [ -123.023776858999938, 49.262467639000064 ], [ -123.023756440999989, 49.26246651600006 ], [ -123.023759125999916, 49.262325460000085 ], [ -123.023759307999939, 49.262316390000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522710093", "BldgCostT": "310231676", "sL_LossRatio": "0.642501824234699", "sL_AssetLoss": "6521913", "sL_BldgLoss": "4190341", "sL_StrLoss": "1548761", "sL_NStrLoss": "2641580", "sL_ContLoss": "2331572", "geom_point": "0101000020E6100000BE9D6448A1C05EC0901EE10F9AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.003821292999973, 49.2601845780001 ], [ -123.004025054999957, 49.259727908000116 ], [ -123.00410399099998, 49.259550992000065 ], [ -123.004112098999911, 49.259501776000072 ], [ -123.00413111200001, 49.259386111000055 ], [ -123.00414619699994, 49.258876613000048 ], [ -123.004149152999943, 49.258718966000032 ], [ -123.004164086999964, 49.257917792000093 ], [ -123.004164809999963, 49.257694401000073 ], [ -123.00416927, 49.257518804000064 ], [ -123.004170512999949, 49.257435997000144 ], [ -123.00417119799999, 49.256787409000054 ], [ -123.004176307999941, 49.2566020000001 ], [ -123.004174725999945, 49.256380259000096 ], [ -123.004173301999941, 49.256180317000087 ], [ -123.004173623, 49.254685902000055 ], [ -123.004168907999883, 49.254589381000066 ], [ -123.004188293999974, 49.254077198000111 ], [ -123.004205994999936, 49.25361030100008 ], [ -123.004222867999928, 49.251846666000048 ], [ -123.004223412999949, 49.251788492000088 ], [ -123.004223496999956, 49.25177946000013 ], [ -123.004238889999954, 49.250164573000056 ], [ -123.004248919999924, 49.249116507000053 ], [ -123.004258711999967, 49.248326710000107 ], [ -123.004205816999985, 49.24797570300008 ], [ -123.00407970699996, 49.247780387000049 ], [ -123.004253697999928, 49.247744641000054 ], [ -123.004247457999952, 49.247736590000066 ], [ -123.003676874999925, 49.246999879000057 ], [ -123.003483763999967, 49.246502653000036 ], [ -123.003438547999963, 49.246287895000087 ], [ -123.00342104399995, 49.244641492000078 ], [ -123.003403550999977, 49.243001623000062 ], [ -123.004979121999895, 49.242994938000074 ], [ -123.00671700099997, 49.243005351000129 ], [ -123.006877115999899, 49.242950337000089 ], [ -123.007011744999943, 49.242949579000047 ], [ -123.007231415999968, 49.24295024300006 ], [ -123.007680471999933, 49.242950161000053 ], [ -123.008037514999955, 49.242950099000069 ], [ -123.008394557999935, 49.242950093000061 ], [ -123.008696693, 49.242950917000073 ], [ -123.009095105999947, 49.242951977000104 ], [ -123.009400980999956, 49.242952803000058 ], [ -123.009764902999919, 49.242952986000063 ], [ -123.009749684999932, 49.244745208000026 ], [ -123.009736809999978, 49.246629283000118 ], [ -123.01041476599994, 49.246631541000092 ], [ -123.01082703699997, 49.246632900000044 ], [ -123.011100207999931, 49.246633807000144 ], [ -123.012503289999984, 49.246533697000118 ], [ -123.01250328499999, 49.246538886000046 ], [ -123.012501822999951, 49.246985192000054 ], [ -123.012531538999966, 49.247662475000062 ], [ -123.012537985999984, 49.247809592000067 ], [ -123.012788098999962, 49.248682195000086 ], [ -123.012761278999974, 49.248762536000079 ], [ -123.012384712999918, 49.249191287000052 ], [ -123.01125740199997, 49.249310892000103 ], [ -123.010833986999899, 49.249317202000078 ], [ -123.010114608999984, 49.249205282000084 ], [ -123.010046091, 49.249565590000046 ], [ -123.010331588999946, 49.249994216000125 ], [ -123.01067361299998, 49.250420694000056 ], [ -123.010781708999929, 49.250662395000049 ], [ -123.01080232000001, 49.250874708000033 ], [ -123.01079998099999, 49.250983046000144 ], [ -123.010797833, 49.251082110000056 ], [ -123.010722500999947, 49.254586494000087 ], [ -123.010722501999965, 49.25466173100007 ], [ -123.010722491, 49.254672108000101 ], [ -123.010720885999973, 49.254715737000033 ], [ -123.010710987999914, 49.254978996000084 ], [ -123.010973907999983, 49.25533145200005 ], [ -123.011716188999984, 49.256326509000132 ], [ -123.011992582999937, 49.256662904000052 ], [ -123.011990832, 49.256749274000143 ], [ -123.011982006999972, 49.257190500000078 ], [ -123.011993746999934, 49.257414221000097 ], [ -123.011999314, 49.257519805000058 ], [ -123.012019870999964, 49.257682781000028 ], [ -123.01202925699998, 49.25775751400009 ], [ -123.012041663999966, 49.25804001200008 ], [ -123.012044284, 49.258100203000069 ], [ -123.013355382999976, 49.258113106000039 ], [ -123.013953954999977, 49.258139601000103 ], [ -123.015340851999937, 49.258148238000018 ], [ -123.015622209999933, 49.258109177000051 ], [ -123.015894760999956, 49.258036558000086 ], [ -123.01602952199994, 49.258013262000048 ], [ -123.016275421999978, 49.25803447600007 ], [ -123.016608868999981, 49.258105897000029 ], [ -123.01801394899995, 49.258406824000119 ], [ -123.018097034999982, 49.258413502000089 ], [ -123.018355594999974, 49.258434289000064 ], [ -123.01880239799999, 49.258428617000028 ], [ -123.019172289999943, 49.258380278000082 ], [ -123.019916524999971, 49.258770166000076 ], [ -123.021279658999958, 49.259577098000079 ], [ -123.022348901999962, 49.260317088000122 ], [ -123.022562063999942, 49.260464629000055 ], [ -123.022688916999968, 49.260265498000095 ], [ -123.023524306999931, 49.259876786000028 ], [ -123.023530811999976, 49.26009679 ], [ -123.023543793999949, 49.260793498000105 ], [ -123.023546107999962, 49.261099802000047 ], [ -123.02353830499996, 49.261265406000057 ], [ -123.023527509999937, 49.26154070000004 ], [ -123.02351162099994, 49.262305716000128 ], [ -123.023508569999962, 49.262452992000057 ], [ -123.017979683999911, 49.262327436000135 ], [ -123.014379232999943, 49.262267445000106 ], [ -123.014172529999911, 49.262268796000036 ], [ -123.012420473999981, 49.262280314000108 ], [ -123.008777755999972, 49.262304185000097 ], [ -123.004223587999945, 49.262196193000136 ], [ -123.003358555999938, 49.262175670000055 ], [ -123.003232981999986, 49.262172689000082 ], [ -123.003245745999934, 49.261821551 ], [ -123.003249770999972, 49.26170551800007 ], [ -123.003258594999934, 49.261452581000071 ], [ -123.003343977999975, 49.261151386000023 ], [ -123.003821292999973, 49.2601845780001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101427833", "BldgCostT": "68063333", "sL_LossRatio": "0.780741697839928", "sL_AssetLoss": "959690", "sL_BldgLoss": "749270", "sL_StrLoss": "392090", "sL_NStrLoss": "357180", "sL_ContLoss": "210420", "geom_point": "0101000020E6100000BF9B5DADC9C05EC027A1704D6C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.012537985999984, 49.247809592000067 ], [ -123.012531538999966, 49.247662475000062 ], [ -123.012501822999951, 49.246985192000054 ], [ -123.01250328499999, 49.246538886000046 ], [ -123.012503289999984, 49.246533697000118 ], [ -123.011100207999931, 49.246633807000144 ], [ -123.01082703699997, 49.246632900000044 ], [ -123.01041476599994, 49.246631541000092 ], [ -123.009736809999978, 49.246629283000118 ], [ -123.009749684999932, 49.244745208000026 ], [ -123.009764902999919, 49.242952986000063 ], [ -123.010455312999909, 49.242954870000077 ], [ -123.010753333999958, 49.242955665000046 ], [ -123.011133805999947, 49.242956711000012 ], [ -123.012552797999916, 49.242950108000116 ], [ -123.012550113999978, 49.243561497000087 ], [ -123.012548124999981, 49.24402639900007 ], [ -123.012546222999902, 49.244758705000031 ], [ -123.012542077999981, 49.245100900000082 ], [ -123.015297115999928, 49.245119511000027 ], [ -123.01529430299999, 49.245369227000047 ], [ -123.015291487999946, 49.245621129000028 ], [ -123.015286107999927, 49.246102002000065 ], [ -123.01528267099999, 49.246538634000082 ], [ -123.015279004, 49.24700259100014 ], [ -123.015282643999939, 49.247446983000032 ], [ -123.01528599199996, 49.24785499300009 ], [ -123.015123421999974, 49.247820806000078 ], [ -123.014619607999975, 49.247818623000057 ], [ -123.012537985999984, 49.247809592000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107629978", "BldgCostT": "68804857", "sL_LossRatio": "0.683783783783784", "sL_AssetLoss": "1750100", "sL_BldgLoss": "1196690", "sL_StrLoss": "503930", "sL_NStrLoss": "692760", "sL_ContLoss": "553410", "geom_point": "0101000020E61000005F61C1FD00C35EC0B4B810F54CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.047071826999968, 49.250678259000111 ], [ -123.049615187999947, 49.250682100000077 ], [ -123.049611538999969, 49.251134533000055 ], [ -123.049608192000022, 49.251548504000048 ], [ -123.04960368199994, 49.2523753030001 ], [ -123.049603335999947, 49.252411742000056 ], [ -123.049595003999968, 49.253225393000022 ], [ -123.049543902, 49.254029299000074 ], [ -123.048976253999911, 49.254030039000021 ], [ -123.048605244999948, 49.254030549000092 ], [ -123.048256676999969, 49.254031003000087 ], [ -123.047932236999912, 49.254030080000042 ], [ -123.047629912, 49.254029243000083 ], [ -123.047046928999976, 49.254027602000065 ], [ -123.045073618999979, 49.254022683000088 ], [ -123.04444158799997, 49.254021109000064 ], [ -123.044263095999924, 49.254020699000108 ], [ -123.04427189099998, 49.253412382000114 ], [ -123.044275210999942, 49.25318419300006 ], [ -123.044284598999965, 49.252346806000055 ], [ -123.044295921999947, 49.251500321000066 ], [ -123.044297373999925, 49.251261652000018 ], [ -123.044218589999957, 49.250837915000034 ], [ -123.044156362999985, 49.25067226700002 ], [ -123.044279952999929, 49.250672961000134 ], [ -123.045062711999904, 49.250674448000019 ], [ -123.047071826999968, 49.250678259000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76978500", "BldgCostT": "51360000", "sL_LossRatio": "0.713986150776574", "sL_AssetLoss": "1278050", "sL_BldgLoss": "912510", "sL_StrLoss": "383090", "sL_NStrLoss": "529420", "sL_ContLoss": "365540", "geom_point": "0101000020E61000001FF8E671F7C25EC0075F6FCDE39F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048901814999951, 49.247924388000072 ], [ -123.049639208999949, 49.247928088000045 ], [ -123.049639879, 49.248802793000046 ], [ -123.04891616499999, 49.248803929000132 ], [ -123.047087903999937, 49.248806813000073 ], [ -123.047085201999934, 49.249255522000055 ], [ -123.047082606999979, 49.249689504000074 ], [ -123.047077945999931, 49.250137122000076 ], [ -123.047073220999962, 49.250591816000103 ], [ -123.047071826999968, 49.250678259000111 ], [ -123.045062711999904, 49.250674448000019 ], [ -123.044279952999929, 49.250672961000134 ], [ -123.044156362999985, 49.25067226700002 ], [ -123.044069958999941, 49.250584343000078 ], [ -123.043822508999966, 49.250328944000017 ], [ -123.043918952999931, 49.250259521 ], [ -123.0440864, 49.25014168800007 ], [ -123.044250631999915, 49.250026084000105 ], [ -123.044314395999919, 49.249981191000103 ], [ -123.04439947499999, 49.249831298000117 ], [ -123.044405905999952, 49.249686408000031 ], [ -123.044411544999889, 49.249247495000084 ], [ -123.04441730399995, 49.248795891000071 ], [ -123.045123591999982, 49.247906297000092 ], [ -123.045840286, 49.247909705000033 ], [ -123.046442325999948, 49.247912389000078 ], [ -123.047096602999957, 49.247915300000095 ], [ -123.048901814999951, 49.247924388000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96431250", "BldgCostT": "65505000", "sL_LossRatio": "0.743553426977777", "sL_AssetLoss": "1369720", "sL_BldgLoss": "1018460", "sL_StrLoss": "474270", "sL_NStrLoss": "544190", "sL_ContLoss": "351260", "geom_point": "0101000020E6100000F18E7CF3D5C25EC0F5854ED7AC9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04162289599995, 49.247066285000109 ], [ -123.041623407999964, 49.246657976000066 ], [ -123.041623877999911, 49.246232192000029 ], [ -123.041624781999985, 49.245848404000078 ], [ -123.041625780999951, 49.245405299000033 ], [ -123.044057798, 49.245428684000039 ], [ -123.044987773999949, 49.245452624000052 ], [ -123.045031380999944, 49.246254488000012 ], [ -123.045296309999969, 49.246251795000042 ], [ -123.045863312, 49.246253802000112 ], [ -123.046468047999966, 49.246257691000018 ], [ -123.047108412999975, 49.246261809 ], [ -123.047105602999949, 49.246691810000115 ], [ -123.047102888999959, 49.247103795000086 ], [ -123.048914504, 49.24710909100002 ], [ -123.049644487999927, 49.247111205000074 ], [ -123.049641299999948, 49.247528204000098 ], [ -123.049639208999949, 49.247928088000045 ], [ -123.048901814999951, 49.247924388000072 ], [ -123.047096602999957, 49.247915300000095 ], [ -123.046442325999948, 49.247912389000078 ], [ -123.045840286, 49.247909705000033 ], [ -123.045123591999982, 49.247906297000092 ], [ -123.04441730399995, 49.248795891000071 ], [ -123.044411544999889, 49.249247495000084 ], [ -123.044405905999952, 49.249686408000031 ], [ -123.04439947499999, 49.249831298000117 ], [ -123.044314395999919, 49.249981191000103 ], [ -123.044250631999915, 49.250026084000105 ], [ -123.0440864, 49.25014168800007 ], [ -123.043918952999931, 49.250259521 ], [ -123.043822508999966, 49.250328944000017 ], [ -123.043458093999902, 49.250098283000057 ], [ -123.042797284999963, 49.249822825000074 ], [ -123.04232231099995, 49.24962480500006 ], [ -123.041780402999962, 49.249183885000072 ], [ -123.041615700999898, 49.248751494000039 ], [ -123.041621110999955, 49.247890490000074 ], [ -123.041622030999989, 49.247467551000071 ], [ -123.04162289599995, 49.247066285000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85787500", "BldgCostT": "55750000", "sL_LossRatio": "0.740503211879238", "sL_AssetLoss": "954270", "sL_BldgLoss": "706640", "sL_StrLoss": "363310", "sL_NStrLoss": "343330", "sL_ContLoss": "247630", "geom_point": "0101000020E6100000941C0B65FCC25EC0012D55506E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.047105602999949, 49.246691810000115 ], [ -123.047108412999975, 49.246261809 ], [ -123.046468047999966, 49.246257691000018 ], [ -123.045863312, 49.246253802000112 ], [ -123.045296309999969, 49.246251795000042 ], [ -123.045031380999944, 49.246254488000012 ], [ -123.044987773999949, 49.245452624000052 ], [ -123.044057798, 49.245428684000039 ], [ -123.041625780999951, 49.245405299000033 ], [ -123.041689816999934, 49.245154806000123 ], [ -123.041790775, 49.24499255200007 ], [ -123.041942230999922, 49.244749205000112 ], [ -123.042163696999964, 49.244548992000055 ], [ -123.044199833999983, 49.244575235000099 ], [ -123.044523801999972, 49.244579398000056 ], [ -123.044832193999923, 49.244583727000055 ], [ -123.045044593999961, 49.244586733000041 ], [ -123.045601248, 49.244594535000068 ], [ -123.045875305999971, 49.244598410000037 ], [ -123.046171893999912, 49.244599397000087 ], [ -123.046480520999978, 49.244601280000055 ], [ -123.046617924999936, 49.244602122000053 ], [ -123.047002705999944, 49.244604473000059 ], [ -123.047121674999985, 49.24460519800008 ], [ -123.048898440999935, 49.244616045000058 ], [ -123.04964759799999, 49.244620597000036 ], [ -123.049658992999937, 49.245456889000138 ], [ -123.049658217999976, 49.245548510000077 ], [ -123.04965693099993, 49.245701431000043 ], [ -123.049655597999944, 49.245856701000037 ], [ -123.04965230599997, 49.24627548200008 ], [ -123.049644487999927, 49.247111205000074 ], [ -123.048914504, 49.24710909100002 ], [ -123.047102888999959, 49.247103795000086 ], [ -123.047105602999949, 49.246691810000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135937500", "BldgCostT": "91770000", "sL_LossRatio": "0.80388160255006", "sL_AssetLoss": "944919", "sL_BldgLoss": "759603", "sL_StrLoss": "372080", "sL_NStrLoss": "387523", "sL_ContLoss": "185316", "geom_point": "0101000020E61000007CA53C25ADC25EC0BBDCDC6F1F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041746191999891, 49.243127815000101 ], [ -123.04082178499999, 49.242721395000054 ], [ -123.040422107999959, 49.243111193000075 ], [ -123.03892380299996, 49.242489096000064 ], [ -123.039288895999931, 49.242104598000068 ], [ -123.038789119999933, 49.2419006370001 ], [ -123.038238201999917, 49.241675805000057 ], [ -123.03769387599999, 49.241452168000116 ], [ -123.03719720399998, 49.241248112000072 ], [ -123.037673553, 49.240780930000085 ], [ -123.0377583099999, 49.240697787000116 ], [ -123.038240492999989, 49.240895096000074 ], [ -123.038777988, 49.241114994000057 ], [ -123.039725593999918, 49.241501299000106 ], [ -123.04066508899993, 49.241883790000031 ], [ -123.041094546999972, 49.24205917700003 ], [ -123.04159930899999, 49.242265294000106 ], [ -123.042042433999924, 49.242446077000061 ], [ -123.042538887999939, 49.242648596000095 ], [ -123.043064294999937, 49.242863414000098 ], [ -123.043582806999922, 49.243075391000055 ], [ -123.043512617999909, 49.243147129000107 ], [ -123.043469408999925, 49.243191283000044 ], [ -123.043467773, 49.243192992000026 ], [ -123.04501824099999, 49.243823847000037 ], [ -123.047121674999985, 49.24460519800008 ], [ -123.047002705999944, 49.244604473000059 ], [ -123.046617924999936, 49.244602122000053 ], [ -123.046480520999978, 49.244601280000055 ], [ -123.046171893999912, 49.244599397000087 ], [ -123.045875305999971, 49.244598410000037 ], [ -123.045601248, 49.244594535000068 ], [ -123.045044593999961, 49.244586733000041 ], [ -123.044832193999923, 49.244583727000055 ], [ -123.044523801999972, 49.244579398000056 ], [ -123.044199833999983, 49.244575235000099 ], [ -123.042163696999964, 49.244548992000055 ], [ -123.041163100999967, 49.244544426000026 ], [ -123.040589, 49.244541791000081 ], [ -123.0405758859999, 49.244360395000079 ], [ -123.041403138999939, 49.243489152000031 ], [ -123.041746191999891, 49.243127815000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102207884", "BldgCostT": "69132551", "sL_LossRatio": "0.761687115723827", "sL_AssetLoss": "1386698", "sL_BldgLoss": "1056230", "sL_StrLoss": "475230", "sL_NStrLoss": "581000", "sL_ContLoss": "330468", "geom_point": "0101000020E610000082F115D5C9C25EC011E8FADBF19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04066508899993, 49.241883790000031 ], [ -123.042475188999973, 49.240005712000048 ], [ -123.042945499999988, 49.240195405000087 ], [ -123.043421693999932, 49.240387501000043 ], [ -123.043840029999956, 49.240556936000118 ], [ -123.044352094999979, 49.240764303000049 ], [ -123.044784272999919, 49.240938637000099 ], [ -123.04538960499994, 49.241182812000034 ], [ -123.045929975999954, 49.241400632000136 ], [ -123.046478087999944, 49.24162160400008 ], [ -123.046105954999931, 49.242005378000108 ], [ -123.045550724999927, 49.24257792500002 ], [ -123.04464687799998, 49.243509891000038 ], [ -123.04416520599996, 49.243313201000056 ], [ -123.043582806999922, 49.243075391000055 ], [ -123.043064294999937, 49.242863414000098 ], [ -123.042538887999939, 49.242648596000095 ], [ -123.042042433999924, 49.242446077000061 ], [ -123.04159930899999, 49.242265294000106 ], [ -123.041094546999972, 49.24205917700003 ], [ -123.04066508899993, 49.241883790000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132965166", "BldgCostT": "92196666", "sL_LossRatio": "0.817509997566442", "sL_AssetLoss": "1376585", "sL_BldgLoss": "1125372", "sL_StrLoss": "519160", "sL_NStrLoss": "606212", "sL_ContLoss": "251213", "geom_point": "0101000020E6100000E4FD983991C25EC071F075E7C39E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038070223999938, 49.240372264000037 ], [ -123.039553002999938, 49.238824801000071 ], [ -123.040043804999968, 49.239023573000082 ], [ -123.040583729999966, 49.239242199000103 ], [ -123.041527401999986, 49.239623902000119 ], [ -123.042475188999973, 49.240005712000048 ], [ -123.04066508899993, 49.241883790000031 ], [ -123.039725593999918, 49.241501299000106 ], [ -123.038777988, 49.241114994000057 ], [ -123.038240492999989, 49.240895096000074 ], [ -123.0377583099999, 49.240697787000116 ], [ -123.038070223999938, 49.240372264000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "360650000", "BldgCostT": "250130000", "sL_LossRatio": "0.821095696935387", "sL_AssetLoss": "1713430", "sL_BldgLoss": "1406890", "sL_StrLoss": "717260", "sL_NStrLoss": "689630", "sL_ContLoss": "306540", "geom_point": "0101000020E610000023778EB7CBC25EC0B531F289A79E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040930654999983, 49.238882216000093 ], [ -123.041977603999939, 49.237795901000013 ], [ -123.04243541999989, 49.237980507000081 ], [ -123.042920092999978, 49.238174907000051 ], [ -123.043513186999959, 49.238412712000098 ], [ -123.043871888999959, 49.238557712000073 ], [ -123.044003141999966, 49.238610570000048 ], [ -123.044392543999905, 49.2387674000001 ], [ -123.044553393999976, 49.238832214000091 ], [ -123.045233967999977, 49.239105613000063 ], [ -123.045503991, 49.239214094000097 ], [ -123.045748892999967, 49.239313600000116 ], [ -123.046284304000011, 49.239527488000064 ], [ -123.046779981999961, 49.239725496000091 ], [ -123.046128197999948, 49.240409412000098 ], [ -123.04538960499994, 49.241182812000034 ], [ -123.044784272999919, 49.240938637000099 ], [ -123.044352094999979, 49.240764303000049 ], [ -123.043840029999956, 49.240556936000118 ], [ -123.043421693999932, 49.240387501000043 ], [ -123.042945499999988, 49.240195405000087 ], [ -123.042475188999973, 49.240005712000048 ], [ -123.041527401999986, 49.239623902000119 ], [ -123.040583729999966, 49.239242199000103 ], [ -123.040930654999983, 49.238882216000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119746000", "BldgCostT": "77050000", "sL_LossRatio": "0.729137158493144", "sL_AssetLoss": "1295545", "sL_BldgLoss": "944630", "sL_StrLoss": "466530", "sL_NStrLoss": "478100", "sL_ContLoss": "350915", "geom_point": "0101000020E61000001DE18A170DC35EC0CDCF36CC0A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04501824099999, 49.243823847000037 ], [ -123.043467773, 49.243192992000026 ], [ -123.043469408999925, 49.243191283000044 ], [ -123.043512617999909, 49.243147129000107 ], [ -123.043582806999922, 49.243075391000055 ], [ -123.04416520599996, 49.243313201000056 ], [ -123.04464687799998, 49.243509891000038 ], [ -123.045550724999927, 49.24257792500002 ], [ -123.046105954999931, 49.242005378000108 ], [ -123.046478087999944, 49.24162160400008 ], [ -123.045929975999954, 49.241400632000136 ], [ -123.04538960499994, 49.241182812000034 ], [ -123.046128197999948, 49.240409412000098 ], [ -123.046779981999961, 49.239725496000091 ], [ -123.047347104999957, 49.23995380500007 ], [ -123.050278504999952, 49.241133789000067 ], [ -123.049952850999944, 49.241452382000055 ], [ -123.049588813999918, 49.241808488000061 ], [ -123.048911214000015, 49.24248810100007 ], [ -123.049318760999981, 49.242652469000063 ], [ -123.050295897999973, 49.243046502000034 ], [ -123.05085929699996, 49.243273695000084 ], [ -123.049979910000019, 49.244164703000067 ], [ -123.049875904999979, 49.244270097000076 ], [ -123.04964759799999, 49.244620597000036 ], [ -123.048898440999935, 49.244616045000058 ], [ -123.047121674999985, 49.24460519800008 ], [ -123.04501824099999, 49.243823847000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224502434", "BldgCostT": "150841896", "sL_LossRatio": "0.827053892032034", "sL_AssetLoss": "1500797", "sL_BldgLoss": "1241240", "sL_StrLoss": "598620", "sL_NStrLoss": "642620", "sL_ContLoss": "259557", "geom_point": "0101000020E6100000E3C8F3AEF4C25EC061DC3FDC769E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.045229115, 49.236677789000069 ], [ -123.045570703999942, 49.236332403000084 ], [ -123.0458986, 49.236422402000102 ], [ -123.046693599999941, 49.236702804000068 ], [ -123.047628989999978, 49.237064401000055 ], [ -123.048809399000021, 49.237566900000118 ], [ -123.048075091, 49.238361995000112 ], [ -123.047874599999929, 49.238572803000075 ], [ -123.047431991999986, 49.239038114000095 ], [ -123.047111507999929, 49.239375986000077 ], [ -123.046779981999961, 49.239725496000091 ], [ -123.046284304000011, 49.239527488000064 ], [ -123.045748892999967, 49.239313600000116 ], [ -123.045503991, 49.239214094000097 ], [ -123.045233967999977, 49.239105613000063 ], [ -123.044553393999976, 49.238832214000091 ], [ -123.044392543999905, 49.2387674000001 ], [ -123.044003141999966, 49.238610570000048 ], [ -123.043871888999959, 49.238557712000073 ], [ -123.043513186999959, 49.238412712000098 ], [ -123.045229115, 49.236677789000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232011624", "BldgCostT": "153328351", "sL_LossRatio": "0.745558608253041", "sL_AssetLoss": "1412958", "sL_BldgLoss": "1053443", "sL_StrLoss": "530150", "sL_NStrLoss": "523293", "sL_ContLoss": "359515", "geom_point": "0101000020E6100000E7313619BAC25EC09D6AE2F4609E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.039937435999931, 49.238425523000039 ], [ -123.04096761699999, 49.237355603 ], [ -123.04121229699993, 49.237102101000062 ], [ -123.04233479599999, 49.235939187000056 ], [ -123.044311399999941, 49.236119507000105 ], [ -123.044434337, 49.236136387000101 ], [ -123.044846340999939, 49.236192949000056 ], [ -123.045295478999904, 49.236254602000031 ], [ -123.045570703999942, 49.236332403000084 ], [ -123.045229115, 49.236677789000069 ], [ -123.043513186999959, 49.238412712000098 ], [ -123.042920092999978, 49.238174907000051 ], [ -123.04243541999989, 49.237980507000081 ], [ -123.041977603999939, 49.237795901000013 ], [ -123.040930654999983, 49.238882216000093 ], [ -123.040583729999966, 49.239242199000103 ], [ -123.040043804999968, 49.239023573000082 ], [ -123.039553002999938, 49.238824801000071 ], [ -123.039937435999931, 49.238425523000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150358768", "BldgCostT": "99840230", "sL_LossRatio": "0.711326427044353", "sL_AssetLoss": "1296596", "sL_BldgLoss": "922303", "sL_StrLoss": "430100", "sL_NStrLoss": "492203", "sL_ContLoss": "374293", "geom_point": "0101000020E610000082723F338AC25EC0576EFD4F599E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.039195138, 49.235971428000035 ], [ -123.039546003999988, 49.235641112000032 ], [ -123.040751588999967, 49.235789498000052 ], [ -123.042321165999937, 49.23593791600009 ], [ -123.04233479599999, 49.235939187000056 ], [ -123.04121229699993, 49.237102101000062 ], [ -123.04096761699999, 49.237355603 ], [ -123.039937435999931, 49.238425523000039 ], [ -123.039553002999938, 49.238824801000071 ], [ -123.038964484999966, 49.238585467000071 ], [ -123.038486289999952, 49.238391004000079 ], [ -123.038352497999981, 49.238335997000057 ], [ -123.03801050899996, 49.238199339000104 ], [ -123.037180925999948, 49.237867799000085 ], [ -123.037540471999961, 49.237529309000067 ], [ -123.038192657999957, 49.236915270000026 ], [ -123.038197192999945, 49.236911004000085 ], [ -123.039195138, 49.235971428000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198058387", "BldgCostT": "134142080", "sL_LossRatio": "0.776367921685314", "sL_AssetLoss": "1260964", "sL_BldgLoss": "978972", "sL_StrLoss": "475540", "sL_NStrLoss": "503432", "sL_ContLoss": "281992", "geom_point": "0101000020E61000003819136A5FC25EC0B2ADD9A93D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036491228999964, 49.235029623000109 ], [ -123.036889597999945, 49.234623219000078 ], [ -123.03780359299999, 49.235038293000102 ], [ -123.038735788999986, 49.235384614000161 ], [ -123.039034818999951, 49.235497302000077 ], [ -123.039546003999988, 49.235641112000032 ], [ -123.039195138, 49.235971428000035 ], [ -123.038197192999945, 49.236911004000085 ], [ -123.038192657999957, 49.236915270000026 ], [ -123.037540471999961, 49.237529309000067 ], [ -123.037180925999948, 49.237867799000085 ], [ -123.036469993999944, 49.237582505 ], [ -123.035639913999958, 49.237250697000079 ], [ -123.034696904, 49.23686000300011 ], [ -123.035028280999981, 49.236521952000025 ], [ -123.036491228999964, 49.235029623000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160647230", "BldgCostT": "104539859", "sL_LossRatio": "0.738753639342463", "sL_AssetLoss": "1056853", "sL_BldgLoss": "780754", "sL_StrLoss": "389310", "sL_NStrLoss": "391444", "sL_ContLoss": "276099", "geom_point": "0101000020E6100000084DEA1560C25EC06172D5029C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03613792799996, 49.237919987000019 ], [ -123.036469993999944, 49.237582505 ], [ -123.037180925999948, 49.237867799000085 ], [ -123.03801050899996, 49.238199339000104 ], [ -123.038352497999981, 49.238335997000057 ], [ -123.038486289999952, 49.238391004000079 ], [ -123.038964484999966, 49.238585467000071 ], [ -123.039553002999938, 49.238824801000071 ], [ -123.038070223999938, 49.240372264000037 ], [ -123.0377583099999, 49.240697787000116 ], [ -123.03668092, 49.240259203000058 ], [ -123.034662916999963, 49.239433607000123 ], [ -123.03510369299994, 49.239003407000034 ], [ -123.03547753099997, 49.238606491000034 ], [ -123.03581658799996, 49.238246492000066 ], [ -123.03613792799996, 49.237919987000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116338249", "BldgCostT": "79264999", "sL_LossRatio": "0.776428057586712", "sL_AssetLoss": "1098170", "sL_BldgLoss": "852650", "sL_StrLoss": "372450", "sL_NStrLoss": "480200", "sL_ContLoss": "245520", "geom_point": "0101000020E61000004F10E97513C25EC06F9AA1651B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033589602999882, 49.236417895000038 ], [ -123.03045599299999, 49.235177712000052 ], [ -123.030440029999951, 49.234742339000086 ], [ -123.030436005999903, 49.234632103000116 ], [ -123.030482884999955, 49.234477596000033 ], [ -123.030596701999968, 49.234331186000063 ], [ -123.030955205999959, 49.233963606000025 ], [ -123.031661199999931, 49.23424916900013 ], [ -123.034112820999951, 49.235240703000066 ], [ -123.03459032399999, 49.235433804000074 ], [ -123.03492081199991, 49.235102212000093 ], [ -123.035219584999965, 49.234802504000172 ], [ -123.035469783999957, 49.234535499000096 ], [ -123.035853199999934, 49.23412630900004 ], [ -123.035930205999961, 49.23416620600004 ], [ -123.035531838999944, 49.234568407000047 ], [ -123.035277130999987, 49.234825563000101 ], [ -123.034657565999964, 49.235451117000082 ], [ -123.034296093999941, 49.235816028 ], [ -123.033670115999911, 49.236448002000046 ], [ -123.033589602999882, 49.236417895000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207753116", "BldgCostT": "129225952", "sL_LossRatio": "0.658602408179943", "sL_AssetLoss": "1982410", "sL_BldgLoss": "1305620", "sL_StrLoss": "612970", "sL_NStrLoss": "692650", "sL_ContLoss": "676790", "geom_point": "0101000020E6100000278F23AD23C25EC0268A364BF29D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.032100273999944, 49.23280528100004 ], [ -123.032496508999941, 49.232403407000113 ], [ -123.033232015999914, 49.23277498900007 ], [ -123.034070287999981, 49.23319169100008 ], [ -123.034899525999947, 49.233620932000122 ], [ -123.03491029, 49.233626498000078 ], [ -123.035853199999934, 49.23412630900004 ], [ -123.035469783999957, 49.234535499000096 ], [ -123.035219584999965, 49.234802504000172 ], [ -123.03492081199991, 49.235102212000093 ], [ -123.03459032399999, 49.235433804000074 ], [ -123.034112820999951, 49.235240703000066 ], [ -123.031661199999931, 49.23424916900013 ], [ -123.030955205999959, 49.233963606000025 ], [ -123.031612702999908, 49.23329980900008 ], [ -123.032100273999944, 49.23280528100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166027790", "BldgCostT": "104690373", "sL_LossRatio": "0.689496076756376", "sL_AssetLoss": "1920987", "sL_BldgLoss": "1324513", "sL_StrLoss": "547280", "sL_NStrLoss": "777233", "sL_ContLoss": "596474", "geom_point": "0101000020E610000081871697F2C15EC0DF6D07B8DA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.029267191999963, 49.232041589000069 ], [ -123.030602097999989, 49.23197111300005 ], [ -123.031251409999982, 49.232015990000015 ], [ -123.031745804999957, 49.232119694000083 ], [ -123.031771173999942, 49.232127240000032 ], [ -123.032116306999939, 49.232229893000095 ], [ -123.032496508999941, 49.232403407000113 ], [ -123.032100273999944, 49.23280528100004 ], [ -123.031612702999908, 49.23329980900008 ], [ -123.030955205999959, 49.233963606000025 ], [ -123.030596701999968, 49.234331186000063 ], [ -123.030482884999955, 49.234477596000033 ], [ -123.030436005999903, 49.234632103000116 ], [ -123.030440029999951, 49.234742339000086 ], [ -123.03045599299999, 49.235177712000052 ], [ -123.029948788999945, 49.23499339800005 ], [ -123.029266591999928, 49.234818789000045 ], [ -123.029255708999969, 49.234023086000079 ], [ -123.029264047999987, 49.232584223000053 ], [ -123.02926499699997, 49.232422331000073 ], [ -123.029267191999963, 49.232041589000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79056917", "BldgCostT": "53806667", "sL_LossRatio": "0.855356280494913", "sL_AssetLoss": "180153", "sL_BldgLoss": "154095", "sL_StrLoss": "85970", "sL_NStrLoss": "68125", "sL_ContLoss": "26058", "geom_point": "0101000020E6100000F1AB62BFE1C15EC039C426CF489E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028137709999953, 49.236538893000095 ], [ -123.028202006, 49.236479314000043 ], [ -123.028801952999927, 49.235923287000041 ], [ -123.02887781499993, 49.235852995000066 ], [ -123.029760198999952, 49.236224208000053 ], [ -123.030641705999983, 49.236631308000035 ], [ -123.030308725999973, 49.236975456000067 ], [ -123.03007413099999, 49.237217897000065 ], [ -123.029934517999919, 49.237362209000061 ], [ -123.028137709999953, 49.236538893000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224636750", "BldgCostT": "151235000", "sL_LossRatio": "0.781975826664934", "sL_AssetLoss": "1346525", "sL_BldgLoss": "1052950", "sL_StrLoss": "535350", "sL_NStrLoss": "517600", "sL_ContLoss": "293575", "geom_point": "0101000020E6100000F78403C69FC15EC07E0F3C63849D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.027126869999961, 49.229228245000037 ], [ -123.027747497999911, 49.229230489000031 ], [ -123.027764221999959, 49.229670269000017 ], [ -123.027807396999933, 49.230805002000118 ], [ -123.027113811999982, 49.23079745700003 ], [ -123.026456004999901, 49.230790291000034 ], [ -123.026474320999952, 49.231757047000052 ], [ -123.026482, 49.232163005000146 ], [ -123.025931392999951, 49.232185593000075 ], [ -123.025077592999978, 49.232226014000027 ], [ -123.024843501999896, 49.232237616000099 ], [ -123.023614202999966, 49.23228832500007 ], [ -123.023600382999973, 49.232288896000078 ], [ -123.02347648599999, 49.232294507000049 ], [ -123.023476510999913, 49.232285465000103 ], [ -123.023476691000013, 49.230857602000114 ], [ -123.023494790999962, 49.230769108000075 ], [ -123.023498386999961, 49.230751446000042 ], [ -123.023530689999959, 49.230593389000028 ], [ -123.023518192999973, 49.229679877000144 ], [ -123.023514983999959, 49.22944601300005 ], [ -123.023512087999976, 49.22923439400008 ], [ -123.024118771999966, 49.229235002000131 ], [ -123.024283622999974, 49.229235163000055 ], [ -123.025035782999936, 49.229235904000106 ], [ -123.026427206999983, 49.229225710000058 ], [ -123.027126869999961, 49.229228245000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79490334", "BldgCostT": "48983334", "sL_LossRatio": "0.658632903594843", "sL_AssetLoss": "1272712", "sL_BldgLoss": "838250", "sL_StrLoss": "392220", "sL_NStrLoss": "446030", "sL_ContLoss": "434462", "geom_point": "0101000020E6100000A93FBABFD7C15EC03F7CA1998A9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.029860012999976, 49.229232422000059 ], [ -123.030504095999945, 49.229231703000124 ], [ -123.030547901999938, 49.229341010000049 ], [ -123.030559034999939, 49.229732252000105 ], [ -123.030590202, 49.230826793000062 ], [ -123.030592940999952, 49.231090413000125 ], [ -123.030602097999989, 49.23197111300005 ], [ -123.029267191999963, 49.232041589000069 ], [ -123.02814329499995, 49.232098007000111 ], [ -123.026482, 49.232163005000146 ], [ -123.026474320999952, 49.231757047000052 ], [ -123.026456004999901, 49.230790291000034 ], [ -123.027113811999982, 49.23079745700003 ], [ -123.027807396999933, 49.230805002000118 ], [ -123.027764221999959, 49.229670269000017 ], [ -123.027747497999911, 49.229230489000031 ], [ -123.029150400999981, 49.229233207000078 ], [ -123.029860012999976, 49.229232422000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162703457", "BldgCostT": "107179715", "sL_LossRatio": "0.753137402756185", "sL_AssetLoss": "1611285", "sL_BldgLoss": "1213519", "sL_StrLoss": "542519", "sL_NStrLoss": "671000", "sL_ContLoss": "397766", "geom_point": "0101000020E610000082E3F05118C25EC06745C4628E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03423931599994, 49.229257999000019 ], [ -123.034557579999955, 49.229261293000029 ], [ -123.034556572, 49.229659323000057 ], [ -123.034556304999938, 49.229758267000051 ], [ -123.034555494999935, 49.230067490000096 ], [ -123.03455591, 49.230254906000035 ], [ -123.034555901999937, 49.230396891000062 ], [ -123.034555877999964, 49.230666759000023 ], [ -123.034555899999958, 49.230856587000119 ], [ -123.03455468699994, 49.231090792000074 ], [ -123.03456821599994, 49.231565901000117 ], [ -123.034527712999946, 49.231878295000101 ], [ -123.035107422999928, 49.232109496000085 ], [ -123.034070287999981, 49.23319169100008 ], [ -123.033232015999914, 49.23277498900007 ], [ -123.032496508999941, 49.232403407000113 ], [ -123.032116306999939, 49.232229893000095 ], [ -123.031771173999942, 49.232127240000032 ], [ -123.031745804999957, 49.232119694000083 ], [ -123.031251409999982, 49.232015990000015 ], [ -123.030602097999989, 49.23197111300005 ], [ -123.030592940999952, 49.231090413000125 ], [ -123.030590202, 49.230826793000062 ], [ -123.030559034999939, 49.229732252000105 ], [ -123.030547901999938, 49.229341010000049 ], [ -123.030504095999945, 49.229231703000124 ], [ -123.032147187999911, 49.229235519000071 ], [ -123.03423931599994, 49.229257999000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236924728", "BldgCostT": "156629857", "sL_LossRatio": "0.716594066079822", "sL_AssetLoss": "2207512", "sL_BldgLoss": "1581890", "sL_StrLoss": "696410", "sL_NStrLoss": "885480", "sL_ContLoss": "625622", "geom_point": "0101000020E61000001BE460FC55C25EC0B9FEC83ABD9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03455468699994, 49.231090792000074 ], [ -123.036715435999952, 49.231093655000066 ], [ -123.037135480999964, 49.231094201000118 ], [ -123.037434387999951, 49.231141991000051 ], [ -123.038171331999933, 49.231145540000092 ], [ -123.038783607999918, 49.231148514000026 ], [ -123.038787992999971, 49.232907906000015 ], [ -123.038790908999914, 49.232970101000049 ], [ -123.038777034999967, 49.232970606000109 ], [ -123.038277681999887, 49.232988498000076 ], [ -123.037440197999942, 49.233138385000096 ], [ -123.036814195999924, 49.233396008000078 ], [ -123.036511398999949, 49.233601104000101 ], [ -123.035930205999961, 49.23416620600004 ], [ -123.035853199999934, 49.23412630900004 ], [ -123.03491029, 49.233626498000078 ], [ -123.034899525999947, 49.233620932000122 ], [ -123.034070287999981, 49.23319169100008 ], [ -123.035107422999928, 49.232109496000085 ], [ -123.034527712999946, 49.231878295000101 ], [ -123.03456821599994, 49.231565901000117 ], [ -123.03455468699994, 49.231090792000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87592082", "BldgCostT": "57258332", "sL_LossRatio": "0.732415116219416", "sL_AssetLoss": "1033089", "sL_BldgLoss": "756650", "sL_StrLoss": "370940", "sL_NStrLoss": "385710", "sL_ContLoss": "276439", "geom_point": "0101000020E61000009488422E65C25EC0CF4A7BFF769D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03455468699994, 49.231090792000074 ], [ -123.034555899999958, 49.230856587000119 ], [ -123.034555877999964, 49.230666759000023 ], [ -123.034555901999937, 49.230396891000062 ], [ -123.03455591, 49.230254906000035 ], [ -123.034555494999935, 49.230067490000096 ], [ -123.034556304999938, 49.229758267000051 ], [ -123.034556572, 49.229659323000057 ], [ -123.034557579999955, 49.229261293000029 ], [ -123.036435376999961, 49.229264295000092 ], [ -123.036755156999959, 49.229264689000082 ], [ -123.03739630099993, 49.229265504000097 ], [ -123.038610987999931, 49.229269087000013 ], [ -123.038819394999948, 49.229273911000071 ], [ -123.040287699999936, 49.229283607000106 ], [ -123.040273995999954, 49.229738259000072 ], [ -123.040232385999929, 49.231119794000087 ], [ -123.040041586999962, 49.231163202000054 ], [ -123.039517433999947, 49.231157075000041 ], [ -123.038783607999918, 49.231148514000026 ], [ -123.038171331999933, 49.231145540000092 ], [ -123.037434387999951, 49.231141991000051 ], [ -123.037135480999964, 49.231094201000118 ], [ -123.036715435999952, 49.231093655000066 ], [ -123.03455468699994, 49.231090792000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155247584", "BldgCostT": "105388334", "sL_LossRatio": "0.756404081967607", "sL_AssetLoss": "1206379", "sL_BldgLoss": "912510", "sL_StrLoss": "443190", "sL_NStrLoss": "469320", "sL_ContLoss": "293869", "geom_point": "0101000020E61000005D8507AC60C25EC0354A4500439D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036501784, 49.227686995000077 ], [ -123.040916114999959, 49.22771630000004 ], [ -123.04088922599999, 49.228083960000035 ], [ -123.040862612999959, 49.228448085000089 ], [ -123.040839941999977, 49.2288574660001 ], [ -123.040816620999962, 49.229278292000124 ], [ -123.040287699999936, 49.229283607000106 ], [ -123.038819394999948, 49.229273911000071 ], [ -123.038610987999931, 49.229269087000013 ], [ -123.03739630099993, 49.229265504000097 ], [ -123.036755156999959, 49.229264689000082 ], [ -123.036435376999961, 49.229264295000092 ], [ -123.034557579999955, 49.229261293000029 ], [ -123.03423931599994, 49.229257999000019 ], [ -123.032147187999911, 49.229235519000071 ], [ -123.032093698999986, 49.229147602000104 ], [ -123.032069797999938, 49.228941496000125 ], [ -123.032075896999942, 49.228832881000073 ], [ -123.03209947, 49.228412698000128 ], [ -123.033567983999944, 49.22841879900006 ], [ -123.034276289, 49.228421203000117 ], [ -123.035002195999965, 49.228424999000033 ], [ -123.036468106999948, 49.22843009900005 ], [ -123.03648498799997, 49.228057644000103 ], [ -123.036489075999924, 49.227967767000074 ], [ -123.036501784, 49.227686995000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115620394", "BldgCostT": "76911523", "sL_LossRatio": "0.735433824191388", "sL_AssetLoss": "1488414", "sL_BldgLoss": "1094630", "sL_StrLoss": "531270", "sL_NStrLoss": "563360", "sL_ContLoss": "393784", "geom_point": "0101000020E6100000166C1B2D64C25EC09FB4AA040F9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.039884088999912, 49.22546752100007 ], [ -123.041010887999974, 49.225475895000024 ], [ -123.040928307999934, 49.226341088000062 ], [ -123.040991692999953, 49.226982395000107 ], [ -123.041097106999985, 49.227246499000053 ], [ -123.040992914999947, 49.227331083000067 ], [ -123.040916114999959, 49.22771630000004 ], [ -123.036501784, 49.227686995000077 ], [ -123.036489075999924, 49.227967767000074 ], [ -123.03648498799997, 49.228057644000103 ], [ -123.036468106999948, 49.22843009900005 ], [ -123.035002195999965, 49.228424999000033 ], [ -123.034276289, 49.228421203000117 ], [ -123.033567983999944, 49.22841879900006 ], [ -123.033592174999924, 49.227968089000058 ], [ -123.033675696, 49.226411084000063 ], [ -123.03439068699997, 49.22641370400008 ], [ -123.035107201999921, 49.226416280000173 ], [ -123.035832790999947, 49.226418684000066 ], [ -123.036561998999929, 49.226421099000035 ], [ -123.03657219899999, 49.226196198000139 ], [ -123.038760913999951, 49.226231091000074 ], [ -123.038782941999941, 49.225853947000154 ], [ -123.038806008, 49.225459508000064 ], [ -123.039884088999912, 49.22546752100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116874249", "BldgCostT": "76164999", "sL_LossRatio": "0.7250287566817", "sL_AssetLoss": "1359684", "sL_BldgLoss": "985810", "sL_StrLoss": "506120", "sL_NStrLoss": "479690", "sL_ContLoss": "373874", "geom_point": "0101000020E610000081EA1F44F2C15EC044F012DE169D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.027877320999906, 49.226389308000094 ], [ -123.027885232999964, 49.225838150000115 ], [ -123.027893977999895, 49.225227693000114 ], [ -123.03068152699997, 49.22524040800009 ], [ -123.032244190999918, 49.22524749300009 ], [ -123.032217951999925, 49.225864695000091 ], [ -123.03219501599996, 49.226404599000098 ], [ -123.032921180999921, 49.226407784000067 ], [ -123.033675696, 49.226411084000063 ], [ -123.033592174999924, 49.227968089000058 ], [ -123.033567983999944, 49.22841879900006 ], [ -123.03209947, 49.228412698000128 ], [ -123.032075896999942, 49.228832881000073 ], [ -123.032069797999938, 49.228941496000125 ], [ -123.032093698999986, 49.229147602000104 ], [ -123.032147187999911, 49.229235519000071 ], [ -123.030504095999945, 49.229231703000124 ], [ -123.029860012999976, 49.229232422000059 ], [ -123.029150400999981, 49.229233207000078 ], [ -123.027747497999911, 49.229230489000031 ], [ -123.027759825, 49.228815241000063 ], [ -123.027764856999966, 49.228644205000094 ], [ -123.02778058199999, 49.228113512000135 ], [ -123.02781218799997, 49.227299096000131 ], [ -123.027838227999922, 49.226935505000036 ], [ -123.027877320999906, 49.226389308000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143460969", "BldgCostT": "93000412", "sL_LossRatio": "0.733687234408716", "sL_AssetLoss": "1510780", "sL_BldgLoss": "1108440", "sL_StrLoss": "548220", "sL_NStrLoss": "560220", "sL_ContLoss": "402340", "geom_point": "0101000020E6100000A0D1CA7BA4C15EC094EB6D33159D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026013774, 49.22522079700007 ], [ -123.027893977999895, 49.225227693000114 ], [ -123.027885232999964, 49.225838150000115 ], [ -123.027877320999906, 49.226389308000094 ], [ -123.027838227999922, 49.226935505000036 ], [ -123.02781218799997, 49.227299096000131 ], [ -123.02778058199999, 49.228113512000135 ], [ -123.027764856999966, 49.228644205000094 ], [ -123.027759825, 49.228815241000063 ], [ -123.027747497999911, 49.229230489000031 ], [ -123.027126869999961, 49.229228245000037 ], [ -123.026427206999983, 49.229225710000058 ], [ -123.025035782999936, 49.229235904000106 ], [ -123.024283622999974, 49.229235163000055 ], [ -123.024118771999966, 49.229235002000131 ], [ -123.023512087999976, 49.22923439400008 ], [ -123.023509793999963, 49.228093006000044 ], [ -123.023511001999935, 49.227944031000035 ], [ -123.023523693999906, 49.226376409000061 ], [ -123.023479799999933, 49.225198686000041 ], [ -123.024144222999965, 49.225204491000063 ], [ -123.026013774, 49.22522079700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136100917", "BldgCostT": "83931667", "sL_LossRatio": "0.642688785862218", "sL_AssetLoss": "4756050", "sL_BldgLoss": "3056660", "sL_StrLoss": "1196110", "sL_NStrLoss": "1860550", "sL_ContLoss": "1699390", "geom_point": "0101000020E6100000547EF733E1C25EC0BC9A0A2BF49C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0441550099999, 49.224733291000106 ], [ -123.044181388999931, 49.224267497 ], [ -123.044243171999952, 49.223175495000106 ], [ -123.045031957, 49.223176328000065 ], [ -123.045780502999946, 49.223177083000024 ], [ -123.046542468, 49.22317655300003 ], [ -123.047061186999912, 49.223176201000093 ], [ -123.047300816999936, 49.223121496000033 ], [ -123.048122572999915, 49.22293733600003 ], [ -123.048884018999971, 49.222766701000047 ], [ -123.0488013, 49.224319770000108 ], [ -123.048777612999956, 49.22476450300006 ], [ -123.050338998999933, 49.224775700000052 ], [ -123.050321762999985, 49.225088807000077 ], [ -123.050319275999982, 49.225133919000015 ], [ -123.050311859999965, 49.225268658000111 ], [ -123.050306038999949, 49.225373899000083 ], [ -123.050304649999973, 49.225399334000087 ], [ -123.050276301999986, 49.225914400000107 ], [ -123.049594232999979, 49.225910184000035 ], [ -123.047723990999913, 49.225898611000105 ], [ -123.04769862199997, 49.226371005000026 ], [ -123.047679111999969, 49.226735089000094 ], [ -123.047659540999945, 49.227145244000042 ], [ -123.047642187999941, 49.227508807000071 ], [ -123.04761777099999, 49.227981831000108 ], [ -123.04759468099999, 49.228428194000074 ], [ -123.045490995999941, 49.228415587000065 ], [ -123.045471279, 49.228872564000056 ], [ -123.045453491999965, 49.229285705000066 ], [ -123.044556593, 49.229292422000086 ], [ -123.04332059099994, 49.229301697000047 ], [ -123.043104907999961, 49.22930330100008 ], [ -123.04235894699994, 49.229290159000136 ], [ -123.04173631, 49.229279208000051 ], [ -123.040816620999962, 49.229278292000124 ], [ -123.040839941999977, 49.2288574660001 ], [ -123.040862612999959, 49.228448085000089 ], [ -123.04088922599999, 49.228083960000035 ], [ -123.040916114999959, 49.22771630000004 ], [ -123.040992914999947, 49.227331083000067 ], [ -123.041097106999985, 49.227246499000053 ], [ -123.040991692999953, 49.226982395000107 ], [ -123.040928307999934, 49.226341088000062 ], [ -123.041010887999974, 49.225475895000024 ], [ -123.04102840599991, 49.225133282000044 ], [ -123.041049899999933, 49.224713010000094 ], [ -123.04260722, 49.224724208000062 ], [ -123.042794782999948, 49.224725312000082 ], [ -123.0441550099999, 49.224733291000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214683229", "BldgCostT": "146929858", "sL_LossRatio": "0.795269782603523", "sL_AssetLoss": "3782490", "sL_BldgLoss": "3008100", "sL_StrLoss": "1353060", "sL_NStrLoss": "1655040", "sL_ContLoss": "774390", "geom_point": "0101000020E61000007FF81AFEAAC25EC06AFA3FC9959D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04235894699994, 49.229290159000136 ], [ -123.043104907999961, 49.22930330100008 ], [ -123.043129412999917, 49.229763411000093 ], [ -123.043151803999976, 49.230182905000063 ], [ -123.043148553999913, 49.230655049000084 ], [ -123.043145491999923, 49.231100603000115 ], [ -123.043122611999976, 49.231563839000088 ], [ -123.043102807999901, 49.231965090000074 ], [ -123.043094774999986, 49.232480962000039 ], [ -123.043088197999964, 49.232906093000096 ], [ -123.043092506999955, 49.232989108000012 ], [ -123.042375926999966, 49.23298867200009 ], [ -123.04173065099998, 49.232988293000062 ], [ -123.041716894999965, 49.23298829 ], [ -123.04097494399997, 49.232981173000034 ], [ -123.040265340999952, 49.232974321 ], [ -123.040251494999964, 49.232974204000072 ], [ -123.040251178999966, 49.232958576000094 ], [ -123.040250204999907, 49.23290750700005 ], [ -123.040232385999929, 49.231119794000087 ], [ -123.040273995999954, 49.229738259000072 ], [ -123.040287699999936, 49.229283607000106 ], [ -123.040816620999962, 49.229278292000124 ], [ -123.04173631, 49.229279208000051 ], [ -123.04235894699994, 49.229290159000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75148645", "BldgCostT": "49316524", "sL_LossRatio": "0.695854320030996", "sL_AssetLoss": "2658430", "sL_BldgLoss": "1849880", "sL_StrLoss": "741880", "sL_NStrLoss": "1108000", "sL_ContLoss": "808550", "geom_point": "0101000020E610000024A77EF7F1C25EC0FFD8C114A79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.045936764999951, 49.232479982000058 ], [ -123.045939980999961, 49.231996092000067 ], [ -123.045328874999939, 49.231989426 ], [ -123.043102807999901, 49.231965090000074 ], [ -123.043122611999976, 49.231563839000088 ], [ -123.043145491999923, 49.231100603000115 ], [ -123.043148553999913, 49.230655049000084 ], [ -123.043151803999976, 49.230182905000063 ], [ -123.043129412999917, 49.229763411000093 ], [ -123.043104907999961, 49.22930330100008 ], [ -123.04332059099994, 49.229301697000047 ], [ -123.044556593, 49.229292422000086 ], [ -123.045453491999965, 49.229285705000066 ], [ -123.045961185999943, 49.22928970400006 ], [ -123.045959182000018, 49.229520564000111 ], [ -123.045957026999957, 49.229772432000082 ], [ -123.045953190999981, 49.230214596000032 ], [ -123.045950706999974, 49.230671909000115 ], [ -123.045948300999925, 49.231110805000078 ], [ -123.048807395999944, 49.231163889000072 ], [ -123.048802838999947, 49.231570293000125 ], [ -123.048797696999912, 49.232028403000058 ], [ -123.048791890999965, 49.232343871000097 ], [ -123.048790201999935, 49.232433822000104 ], [ -123.048784211999958, 49.232759499000032 ], [ -123.04878191399996, 49.234047609000058 ], [ -123.048558211999946, 49.234047881000102 ], [ -123.048063681999963, 49.234048544000075 ], [ -123.047401995999962, 49.23404938500002 ], [ -123.046648831999988, 49.234050098000118 ], [ -123.045905419999954, 49.234050811000031 ], [ -123.045921137999969, 49.233442818000128 ], [ -123.045933610999924, 49.232959801000099 ], [ -123.045936764999951, 49.232479982000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87360061", "BldgCostT": "56478190", "sL_LossRatio": "0.680335874384229", "sL_AssetLoss": "1729337", "sL_BldgLoss": "1176530", "sL_StrLoss": "512170", "sL_NStrLoss": "664360", "sL_ContLoss": "552807", "geom_point": "0101000020E6100000E218C1ADD8C25EC04072A57DF79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.045328874999939, 49.231989426 ], [ -123.045939980999961, 49.231996092000067 ], [ -123.045936764999951, 49.232479982000058 ], [ -123.045933610999924, 49.232959801000099 ], [ -123.045921137999969, 49.233442818000128 ], [ -123.045905419999954, 49.234050811000031 ], [ -123.045901577, 49.235385369000021 ], [ -123.045899769999977, 49.236024034000053 ], [ -123.0458986, 49.236422402000102 ], [ -123.045570703999942, 49.236332403000084 ], [ -123.045295478999904, 49.236254602000031 ], [ -123.044846340999939, 49.236192949000056 ], [ -123.044434337, 49.236136387000101 ], [ -123.044311399999941, 49.236119507000105 ], [ -123.04233479599999, 49.235939187000056 ], [ -123.042873991999983, 49.235363107000047 ], [ -123.043034436999989, 49.235115826000047 ], [ -123.043039995999948, 49.235107298000045 ], [ -123.043090124999949, 49.234815905000104 ], [ -123.04309193, 49.233434441000043 ], [ -123.043092506999955, 49.232989108000012 ], [ -123.043088197999964, 49.232906093000096 ], [ -123.043094774999986, 49.232480962000039 ], [ -123.043102807999901, 49.231965090000074 ], [ -123.045328874999939, 49.231989426 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151260227", "BldgCostT": "98914856", "sL_LossRatio": "0.708017847260193", "sL_AssetLoss": "1803302", "sL_BldgLoss": "1276770", "sL_StrLoss": "542300", "sL_NStrLoss": "734470", "sL_ContLoss": "526532", "geom_point": "0101000020E6100000C82CCFA409C35EC068EE7429269E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048558211999946, 49.234047881000102 ], [ -123.04878191399996, 49.234047609000058 ], [ -123.04884990799998, 49.235829386000013 ], [ -123.048850726999959, 49.237066231000057 ], [ -123.048850880999964, 49.237324796000067 ], [ -123.048809399000021, 49.237566900000118 ], [ -123.047628989999978, 49.237064401000055 ], [ -123.046693599999941, 49.236702804000068 ], [ -123.0458986, 49.236422402000102 ], [ -123.045899769999977, 49.236024034000053 ], [ -123.045901577, 49.235385369000021 ], [ -123.045905419999954, 49.234050811000031 ], [ -123.046648831999988, 49.234050098000118 ], [ -123.047401995999962, 49.23404938500002 ], [ -123.048063681999963, 49.234048544000075 ], [ -123.048558211999946, 49.234047881000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "326183563", "BldgCostT": "224998192", "sL_LossRatio": "0.778613205205691", "sL_AssetLoss": "2111228", "sL_BldgLoss": "1643830", "sL_StrLoss": "848340", "sL_NStrLoss": "795490", "sL_ContLoss": "467398", "geom_point": "0101000020E6100000380B5111A9C25EC098B55562019E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.042375926999966, 49.23298867200009 ], [ -123.043092506999955, 49.232989108000012 ], [ -123.04309193, 49.233434441000043 ], [ -123.043090124999949, 49.234815905000104 ], [ -123.043039995999948, 49.235107298000045 ], [ -123.043034436999989, 49.235115826000047 ], [ -123.042873991999983, 49.235363107000047 ], [ -123.04233479599999, 49.235939187000056 ], [ -123.042321165999937, 49.23593791600009 ], [ -123.040751588999967, 49.235789498000052 ], [ -123.039546003999988, 49.235641112000032 ], [ -123.03999528099996, 49.235118304000103 ], [ -123.040177310999979, 49.234740503000118 ], [ -123.040239220999965, 49.234308901000112 ], [ -123.040244937999958, 49.23368744000004 ], [ -123.040251494999964, 49.232974204000072 ], [ -123.040265340999952, 49.232974321 ], [ -123.04097494399997, 49.232981173000034 ], [ -123.041716894999965, 49.23298829 ], [ -123.04173065099998, 49.232988293000062 ], [ -123.042375926999966, 49.23298867200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118117833", "BldgCostT": "79938333", "sL_LossRatio": "0.750700597709357", "sL_AssetLoss": "1243581", "sL_BldgLoss": "933557", "sL_StrLoss": "393370", "sL_NStrLoss": "540187", "sL_ContLoss": "310024", "geom_point": "0101000020E6100000BD4CB81D7BC25EC06024EE90E69D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040041586999962, 49.231163202000054 ], [ -123.040232385999929, 49.231119794000087 ], [ -123.040250204999907, 49.23290750700005 ], [ -123.040251178999966, 49.232958576000094 ], [ -123.040251494999964, 49.232974204000072 ], [ -123.040244937999958, 49.23368744000004 ], [ -123.040239220999965, 49.234308901000112 ], [ -123.040177310999979, 49.234740503000118 ], [ -123.03999528099996, 49.235118304000103 ], [ -123.039546003999988, 49.235641112000032 ], [ -123.039034818999951, 49.235497302000077 ], [ -123.038735788999986, 49.235384614000161 ], [ -123.03780359299999, 49.235038293000102 ], [ -123.036889597999945, 49.234623219000078 ], [ -123.035930205999961, 49.23416620600004 ], [ -123.036511398999949, 49.233601104000101 ], [ -123.036814195999924, 49.233396008000078 ], [ -123.037440197999942, 49.233138385000096 ], [ -123.038277681999887, 49.232988498000076 ], [ -123.038777034999967, 49.232970606000109 ], [ -123.038790908999914, 49.232970101000049 ], [ -123.038787992999971, 49.232907906000015 ], [ -123.038783607999918, 49.231148514000026 ], [ -123.039517433999947, 49.231157075000041 ], [ -123.040041586999962, 49.231163202000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89842667", "BldgCostT": "60751667", "sL_LossRatio": "0.737581184427962", "sL_AssetLoss": "1301050", "sL_BldgLoss": "959630", "sL_StrLoss": "434850", "sL_NStrLoss": "524780", "sL_ContLoss": "341420", "geom_point": "0101000020E6100000D1B0634C4FC25EC0D6CCEF6E44A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03364542, 49.266634003000036 ], [ -123.033655245999952, 49.26596618600005 ], [ -123.033656522999962, 49.265879177000087 ], [ -123.033659796999956, 49.265656204 ], [ -123.033817419999963, 49.26566320500006 ], [ -123.034033113999939, 49.265663810000042 ], [ -123.03450051599998, 49.265665156000082 ], [ -123.034789158999985, 49.265665972000129 ], [ -123.036486400999962, 49.265670784000086 ], [ -123.03647850499999, 49.26620666500002 ], [ -123.036472002999943, 49.26664771300004 ], [ -123.039002503999882, 49.266652289000127 ], [ -123.038994375999962, 49.267114199000083 ], [ -123.038986312999924, 49.267573407000022 ], [ -123.038977939999938, 49.268040593000087 ], [ -123.038970208999928, 49.268471909000056 ], [ -123.038957308999969, 49.268948896000083 ], [ -123.038945987999952, 49.269367504000087 ], [ -123.036439001999923, 49.269358099000087 ], [ -123.033808888999943, 49.269361498000066 ], [ -123.033811502999981, 49.269536398000113 ], [ -123.03358341699996, 49.269536408000072 ], [ -123.03358501199989, 49.269361702000062 ], [ -123.033590417000013, 49.268950687 ], [ -123.033596674999984, 49.268476623 ], [ -123.033596803999956, 49.268467601000168 ], [ -123.033601679999919, 49.268024245000021 ], [ -123.033606791999915, 49.267558888000039 ], [ -123.03364542, 49.266634003000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "461564500", "BldgCostT": "311260000", "sL_LossRatio": "0.782926280863166", "sL_AssetLoss": "3291140", "sL_BldgLoss": "2576720", "sL_StrLoss": "1161460", "sL_NStrLoss": "1415260", "sL_ContLoss": "714420", "geom_point": "0101000020E610000040BF31FC0EC25EC03778572443A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033016007999962, 49.265653350000072 ], [ -123.033659796999956, 49.265656204 ], [ -123.033656522999962, 49.265879177000087 ], [ -123.033655245999952, 49.26596618600005 ], [ -123.03364542, 49.266634003000036 ], [ -123.033606791999915, 49.267558888000039 ], [ -123.033601679999919, 49.268024245000021 ], [ -123.033596803999956, 49.268467601000168 ], [ -123.033596674999984, 49.268476623 ], [ -123.033590417000013, 49.268950687 ], [ -123.03358501199989, 49.269361702000062 ], [ -123.03358341699996, 49.269536408000072 ], [ -123.03245812899999, 49.269535193000095 ], [ -123.031302722999939, 49.269533138000078 ], [ -123.030903556999945, 49.269532868000056 ], [ -123.027812859000022, 49.269530770000138 ], [ -123.027735014999934, 49.26937370900005 ], [ -123.02852370699999, 49.26937288600007 ], [ -123.029210708999955, 49.269371229000036 ], [ -123.029320652999928, 49.269370983000059 ], [ -123.030976721999977, 49.269366938000047 ], [ -123.030990505999966, 49.269366907000133 ], [ -123.030990633999934, 49.269149347000059 ], [ -123.030990768999956, 49.268942453000058 ], [ -123.030991115999925, 49.268455306000092 ], [ -123.030991202999971, 49.268015933000129 ], [ -123.030991300999915, 49.267550997000036 ], [ -123.030994576999944, 49.26710739400005 ], [ -123.030998095999962, 49.266628790000077 ], [ -123.031000418999952, 49.26619560700005 ], [ -123.031000514999903, 49.266180913 ], [ -123.031001389999972, 49.266015585000048 ], [ -123.031003374999969, 49.265644396 ], [ -123.031846063, 49.265648136000031 ], [ -123.032074080999905, 49.265649167000092 ], [ -123.032268831999943, 49.265650033000028 ], [ -123.032543865999969, 49.265651263000045 ], [ -123.033016007999962, 49.265653350000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "473519202", "BldgCostT": "306321613", "sL_LossRatio": "0.707181701900174", "sL_AssetLoss": "7145660", "sL_BldgLoss": "5053280", "sL_StrLoss": "1999830", "sL_NStrLoss": "3053450", "sL_ContLoss": "2092380", "geom_point": "0101000020E6100000559FD57691BE5EC02B2040C8AAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.978336222999985, 49.264319345000054 ], [ -122.977269854999989, 49.263943352000055 ], [ -122.977026699999968, 49.264026798000039 ], [ -122.977006398999904, 49.264060292000082 ], [ -122.976744987999936, 49.264491901000063 ], [ -122.973528985999934, 49.263580193000074 ], [ -122.973334350999949, 49.264019229000091 ], [ -122.973145611999939, 49.264444994000023 ], [ -122.972959516999964, 49.264411895000087 ], [ -122.972466052999962, 49.264412229000065 ], [ -122.970141516999988, 49.264413802000036 ], [ -122.970151411999893, 49.26314985599999 ], [ -122.970155643999973, 49.262619814000089 ], [ -122.96960423799996, 49.26239533400009 ], [ -122.968521740999947, 49.261868568000125 ], [ -122.968236238999964, 49.261780392000091 ], [ -122.967764879999933, 49.261782454000084 ], [ -122.966466275999935, 49.26178738800013 ], [ -122.966151628999938, 49.261766828000113 ], [ -122.96465737799997, 49.261569867000077 ], [ -122.96480438399999, 49.26071834099999 ], [ -122.964803363999977, 49.260703781000089 ], [ -122.964686952999941, 49.260592378000048 ], [ -122.964644368999942, 49.260508284000117 ], [ -122.964610789999981, 49.260183074000103 ], [ -122.964623338999971, 49.259856251000059 ], [ -122.964630285999974, 49.259674691000136 ], [ -122.964631469999958, 49.259600205 ], [ -122.964631601999926, 49.259590896000141 ], [ -122.964631294999933, 49.259407201000059 ], [ -122.964632748999975, 49.259154442000039 ], [ -122.964636297999959, 49.258532594000052 ], [ -122.964610904999958, 49.258354722000021 ], [ -122.964600524, 49.258282107000078 ], [ -122.96462879399999, 49.258010049000127 ], [ -122.964738719999971, 49.258126735000062 ], [ -122.965523053999959, 49.25887213500004 ], [ -122.966498321999893, 49.259652218000042 ], [ -122.966939697999948, 49.259904029000012 ], [ -122.967181779999947, 49.260082476000093 ], [ -122.967216095999973, 49.260103064000113 ], [ -122.967433383999932, 49.260233488000104 ], [ -122.967683407, 49.260383537000081 ], [ -122.967732968999925, 49.260406563000075 ], [ -122.967993477999983, 49.260527734000092 ], [ -122.968065807999935, 49.260563107000095 ], [ -122.968144087999946, 49.260521108000056 ], [ -122.968852000999988, 49.260809494000021 ], [ -122.968921481999971, 49.26086161900006 ], [ -122.970175718999897, 49.261254802000096 ], [ -122.970582879999981, 49.261348465000019 ], [ -122.970670476999913, 49.26136861500008 ], [ -122.97146108599999, 49.261453791000108 ], [ -122.973183111999944, 49.261578432000135 ], [ -122.973507880999989, 49.261621431000044 ], [ -122.978334558999947, 49.261673576000106 ], [ -122.98073731099997, 49.261688261000096 ], [ -122.982097654999905, 49.261731192000049 ], [ -122.985597678999909, 49.261841850000103 ], [ -122.985735012999911, 49.261989600000106 ], [ -122.986170239999979, 49.262437756000111 ], [ -122.986879998999939, 49.262720587000054 ], [ -122.988358579999954, 49.263266335000068 ], [ -122.987436912999954, 49.264193655000042 ], [ -122.986960507999967, 49.265013590000059 ], [ -122.986905982999971, 49.265112097000021 ], [ -122.98660119499999, 49.266060202000041 ], [ -122.986630524999953, 49.266117371000057 ], [ -122.986684211999929, 49.266221991000158 ], [ -122.986149498999922, 49.266393501000039 ], [ -122.98588360199993, 49.266410107000063 ], [ -122.985491489999959, 49.26643459100012 ], [ -122.98503659899994, 49.266393891000114 ], [ -122.981433306999961, 49.265834711000132 ], [ -122.981170399999925, 49.265757997000058 ], [ -122.981200394999945, 49.26505971200006 ], [ -122.981205115999956, 49.26495004100007 ], [ -122.980499575999971, 49.264855526000126 ], [ -122.979075985999927, 49.264521100000131 ], [ -122.978336222999985, 49.264319345000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133546417", "BldgCostT": "91101667", "sL_LossRatio": "0.754390545128557", "sL_AssetLoss": "1677696", "sL_BldgLoss": "1265638", "sL_StrLoss": "600728", "sL_NStrLoss": "664910", "sL_ContLoss": "412058", "geom_point": "0101000020E6100000EDBB6C853ABE5EC02658FBBF13A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970141516999988, 49.264413802000036 ], [ -122.972466052999962, 49.264412229000065 ], [ -122.972959516999964, 49.264411895000087 ], [ -122.973145611999939, 49.264444994000023 ], [ -122.973334350999949, 49.264019229000091 ], [ -122.973528985999934, 49.263580193000074 ], [ -122.976744987999936, 49.264491901000063 ], [ -122.976676608999966, 49.264697095000038 ], [ -122.976671858999936, 49.264932475000094 ], [ -122.976664284999913, 49.265307511000081 ], [ -122.976600121999923, 49.265576898000027 ], [ -122.976472297999933, 49.265752631000105 ], [ -122.976311800999952, 49.265973304000035 ], [ -122.976056319999941, 49.266203900000086 ], [ -122.975820209999966, 49.2664747950001 ], [ -122.975728278999952, 49.266662758000102 ], [ -122.975720301, 49.26667911300013 ], [ -122.975651519999985, 49.266933911000116 ], [ -122.975651918999972, 49.267096096000024 ], [ -122.97565038, 49.267558811000114 ], [ -122.975649006999944, 49.267983308000119 ], [ -122.97274569299999, 49.267982991000054 ], [ -122.971431279999948, 49.267983293000107 ], [ -122.970104788999961, 49.267983617000056 ], [ -122.966225903999913, 49.267983688000115 ], [ -122.96622741399996, 49.26753843700002 ], [ -122.966228890999957, 49.267097305000092 ], [ -122.968207594999924, 49.267096189000029 ], [ -122.96841621199998, 49.267057896000033 ], [ -122.968460808999907, 49.267005110000042 ], [ -122.968489706999947, 49.26584839200008 ], [ -122.969251864999961, 49.265850918000133 ], [ -122.970127104999932, 49.26585379100009 ], [ -122.97012773799996, 49.265758489000078 ], [ -122.970130798999961, 49.265313502000048 ], [ -122.970132402, 49.264931596000032 ], [ -122.970133681999926, 49.26485893600006 ], [ -122.970141516999988, 49.264413802000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133990333", "BldgCostT": "89308333", "sL_LossRatio": "0.744274140202292", "sL_AssetLoss": "1768730", "sL_BldgLoss": "1316420", "sL_StrLoss": "584580", "sL_NStrLoss": "731840", "sL_ContLoss": "452310", "geom_point": "0101000020E61000005A48E967E4BD5EC0AF080629DBA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.964636693999921, 49.262998908000064 ], [ -122.96465737799997, 49.261569867000077 ], [ -122.966151628999938, 49.261766828000113 ], [ -122.966466275999935, 49.26178738800013 ], [ -122.967764879999933, 49.261782454000084 ], [ -122.968236238999964, 49.261780392000091 ], [ -122.968521740999947, 49.261868568000125 ], [ -122.96960423799996, 49.26239533400009 ], [ -122.970155643999973, 49.262619814000089 ], [ -122.970151411999893, 49.26314985599999 ], [ -122.970141516999988, 49.264413802000036 ], [ -122.970133681999926, 49.26485893600006 ], [ -122.970132402, 49.264931596000032 ], [ -122.970130798999961, 49.265313502000048 ], [ -122.97012773799996, 49.265758489000078 ], [ -122.970127104999932, 49.26585379100009 ], [ -122.969251864999961, 49.265850918000133 ], [ -122.968489706999947, 49.26584839200008 ], [ -122.968460808999907, 49.267005110000042 ], [ -122.96841621199998, 49.267057896000033 ], [ -122.968207594999924, 49.267096189000029 ], [ -122.966228890999957, 49.267097305000092 ], [ -122.96622741399996, 49.26753843700002 ], [ -122.966225903999913, 49.267983688000115 ], [ -122.964585391999947, 49.267982601000035 ], [ -122.964617190999917, 49.265858397000081 ], [ -122.964621185999974, 49.264369497000125 ], [ -122.96462461099992, 49.263919193000085 ], [ -122.964636693999921, 49.262998908000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121612250", "BldgCostT": "78185000", "sL_LossRatio": "0.724596093107367", "sL_AssetLoss": "1592570", "sL_BldgLoss": "1153970", "sL_StrLoss": "542160", "sL_NStrLoss": "611810", "sL_ContLoss": "438600", "geom_point": "0101000020E6100000B314B104E9BD5EC07F74036888A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.966225903999913, 49.267983688000115 ], [ -122.970104788999961, 49.267983617000056 ], [ -122.970103848999926, 49.268457001000087 ], [ -122.970103000999927, 49.268895190000102 ], [ -122.970099508999979, 49.269788688000055 ], [ -122.970099392999941, 49.270247047000026 ], [ -122.970099305999966, 49.270696686000065 ], [ -122.970097628999966, 49.271146559000023 ], [ -122.970096009999978, 49.271588403000095 ], [ -122.965357959999892, 49.271600754000055 ], [ -122.964608214999885, 49.271602697000112 ], [ -122.964605118999913, 49.270704507000033 ], [ -122.964596982999936, 49.269779093000089 ], [ -122.964592683999911, 49.268899798000056 ], [ -122.964585391999947, 49.267982601000035 ], [ -122.966225903999913, 49.267983688000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144715500", "BldgCostT": "94680000", "sL_LossRatio": "0.729420770016922", "sL_AssetLoss": "1909984", "sL_BldgLoss": "1393182", "sL_StrLoss": "633602", "sL_NStrLoss": "759580", "sL_ContLoss": "516802", "geom_point": "0101000020E61000006F4D67E566BD5EC09CB1E40197A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959120894999941, 49.2643560940001 ], [ -122.959132413999939, 49.263593394000118 ], [ -122.958436531999936, 49.26358614400003 ], [ -122.957762192999922, 49.26357910899999 ], [ -122.95707899699994, 49.263477869000063 ], [ -122.956327970999922, 49.263366592000054 ], [ -122.954843704999917, 49.263353488000121 ], [ -122.95410682799999, 49.263356049000038 ], [ -122.953421411999926, 49.263358406000101 ], [ -122.953439524999965, 49.261052826000096 ], [ -122.95345333099999, 49.261052564000082 ], [ -122.954117644999926, 49.261040441000105 ], [ -122.955951669999962, 49.261334523000116 ], [ -122.956773448999968, 49.261477493 ], [ -122.957245877999966, 49.261626865000025 ], [ -122.957320662999962, 49.261512754000044 ], [ -122.957312711999975, 49.260817084000053 ], [ -122.957314766999943, 49.260555916000079 ], [ -122.957423225999932, 49.260326566000096 ], [ -122.957462125999939, 49.260291850000037 ], [ -122.957634774999946, 49.260137935000095 ], [ -122.957808256999954, 49.260048243000078 ], [ -122.957966149999947, 49.260049990000041 ], [ -122.958838640999957, 49.260257451 ], [ -122.959175660999946, 49.26027146400002 ], [ -122.960367973999922, 49.260295195000033 ], [ -122.961130340999915, 49.2602958680001 ], [ -122.961210942999969, 49.260344065000027 ], [ -122.961232646999989, 49.260475361000069 ], [ -122.961231430999959, 49.260871690000066 ], [ -122.961228351999964, 49.261652605000059 ], [ -122.962490440999915, 49.261450319000041 ], [ -122.96281610299998, 49.261428927000082 ], [ -122.963726, 49.261484192000061 ], [ -122.96465737799997, 49.261569867000077 ], [ -122.964636693999921, 49.262998908000064 ], [ -122.96462461099992, 49.263919193000085 ], [ -122.964621185999974, 49.264369497000125 ], [ -122.963106747999944, 49.264369603000013 ], [ -122.962105470999987, 49.264369657000039 ], [ -122.960466398, 49.264369708000068 ], [ -122.959810482999941, 49.264363086000102 ], [ -122.959120894999941, 49.2643560940001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66624751", "BldgCostT": "43155001", "sL_LossRatio": "0.717314381069181", "sL_AssetLoss": "994780", "sL_BldgLoss": "713570", "sL_StrLoss": "342630", "sL_NStrLoss": "370940", "sL_ContLoss": "281210", "geom_point": "0101000020E6100000551302C175BD5EC09FC431DC4AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.955951669999962, 49.261334523000116 ], [ -122.955942388999929, 49.259758715000089 ], [ -122.955970098999927, 49.258771294000042 ], [ -122.956021572999958, 49.258772920000027 ], [ -122.958230706999984, 49.25884309000002 ], [ -122.959756206999955, 49.258938405000052 ], [ -122.961499680999964, 49.259125295000075 ], [ -122.962778101999902, 49.259323486000021 ], [ -122.964211808999949, 49.259595354000062 ], [ -122.964630285999974, 49.259674691000136 ], [ -122.964623338999971, 49.259856251000059 ], [ -122.964610789999981, 49.260183074000103 ], [ -122.964644368999942, 49.260508284000117 ], [ -122.964686952999941, 49.260592378000048 ], [ -122.964803363999977, 49.260703781000089 ], [ -122.96480438399999, 49.26071834099999 ], [ -122.96465737799997, 49.261569867000077 ], [ -122.963726, 49.261484192000061 ], [ -122.96281610299998, 49.261428927000082 ], [ -122.962490440999915, 49.261450319000041 ], [ -122.961228351999964, 49.261652605000059 ], [ -122.961231430999959, 49.260871690000066 ], [ -122.961232646999989, 49.260475361000069 ], [ -122.961210942999969, 49.260344065000027 ], [ -122.961130340999915, 49.2602958680001 ], [ -122.960367973999922, 49.260295195000033 ], [ -122.959175660999946, 49.26027146400002 ], [ -122.958838640999957, 49.260257451 ], [ -122.957966149999947, 49.260049990000041 ], [ -122.957808256999954, 49.260048243000078 ], [ -122.957634774999946, 49.260137935000095 ], [ -122.957462125999939, 49.260291850000037 ], [ -122.957423225999932, 49.260326566000096 ], [ -122.957314766999943, 49.260555916000079 ], [ -122.957312711999975, 49.260817084000053 ], [ -122.957320662999962, 49.261512754000044 ], [ -122.957245877999966, 49.261626865000025 ], [ -122.956773448999968, 49.261477493 ], [ -122.955951669999962, 49.261334523000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82845386", "BldgCostT": "55847079", "sL_LossRatio": "0.738012588525895", "sL_AssetLoss": "1218570", "sL_BldgLoss": "899320", "sL_StrLoss": "412210", "sL_NStrLoss": "487110", "sL_ContLoss": "319250", "geom_point": "0101000020E6100000CA909D96E3BC5EC0DEFC755D2EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.948616202999929, 49.261216485000041 ], [ -122.948651042000037, 49.26077742000011 ], [ -122.948664213999933, 49.260611602000075 ], [ -122.948911595999974, 49.260379895000085 ], [ -122.949074098999972, 49.26031239600006 ], [ -122.949861093999971, 49.260210309000101 ], [ -122.950069905999939, 49.260128004000123 ], [ -122.950263790999912, 49.25997851500005 ], [ -122.950343053, 49.259863439000078 ], [ -122.950389794999921, 49.259795593000035 ], [ -122.950421861999956, 49.259601498000109 ], [ -122.950423982999936, 49.259588499000081 ], [ -122.950349723999963, 49.259402601000083 ], [ -122.950237096999956, 49.25923460000012 ], [ -122.950040393999956, 49.259092102000089 ], [ -122.949626603999931, 49.258909204000126 ], [ -122.949076648999934, 49.258746400000049 ], [ -122.949004009999911, 49.258724902999987 ], [ -122.948876679999941, 49.258721973000036 ], [ -122.948667881999953, 49.258717190000084 ], [ -122.94842169899999, 49.258712835000061 ], [ -122.947387712999941, 49.258694489000064 ], [ -122.947375585999964, 49.257897007000096 ], [ -122.947175186999928, 49.257643608000066 ], [ -122.946738504999942, 49.257516786000089 ], [ -122.94549708299995, 49.257155600000075 ], [ -122.945601101999955, 49.256993591000047 ], [ -122.945637815999987, 49.256291109000124 ], [ -122.945650262999948, 49.256142849000121 ], [ -122.948675578999911, 49.257138293000033 ], [ -122.952213923999921, 49.25827429800006 ], [ -122.952394616999968, 49.258311631000026 ], [ -122.953758996999966, 49.258593589000043 ], [ -122.954484717999918, 49.258672591000106 ], [ -122.955952935999946, 49.258770162000054 ], [ -122.955970098999927, 49.258771294000042 ], [ -122.955942388999929, 49.259758715000089 ], [ -122.955951669999962, 49.261334523000116 ], [ -122.954117644999926, 49.261040441000105 ], [ -122.95345333099999, 49.261052564000082 ], [ -122.953439524999965, 49.261052826000096 ], [ -122.948616202999929, 49.261216485000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81786583", "BldgCostT": "55723333", "sL_LossRatio": "0.75003038785959", "sL_AssetLoss": "1085960", "sL_BldgLoss": "814503", "sL_StrLoss": "372343", "sL_NStrLoss": "442160", "sL_ContLoss": "271457", "geom_point": "0101000020E610000001DE5551F4BC5EC04DFC30C6B0A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.948697669999945, 49.256485848000032 ], [ -122.948750589999975, 49.254890990000071 ], [ -122.947440296999929, 49.254888193000035 ], [ -122.947454510999989, 49.254505685000034 ], [ -122.947463519999957, 49.254142026000096 ], [ -122.947494294999956, 49.252898885000079 ], [ -122.947484204999938, 49.251924802000055 ], [ -122.948757406999945, 49.25192559400007 ], [ -122.948742501999973, 49.252884591000026 ], [ -122.95020530499994, 49.252885412000047 ], [ -122.950697597999948, 49.252919190000107 ], [ -122.950967798999926, 49.252988095000127 ], [ -122.951543795999939, 49.253315088000093 ], [ -122.952300688999969, 49.252623995000114 ], [ -122.952845409999952, 49.25290600700005 ], [ -122.953139105999981, 49.252972002000028 ], [ -122.953167600999961, 49.252974490000042 ], [ -122.953412315999955, 49.252995906000116 ], [ -122.953821604999973, 49.25297409900012 ], [ -122.956044381999931, 49.252558853000075 ], [ -122.956028089999961, 49.253439320000098 ], [ -122.956021892999942, 49.253773104000039 ], [ -122.956016491999932, 49.254170193000022 ], [ -122.956016290999969, 49.254186048000093 ], [ -122.956010701999929, 49.254608865000058 ], [ -122.956005120999947, 49.255034708000025 ], [ -122.955999005999942, 49.256215509000128 ], [ -122.955997944000018, 49.256560820000061 ], [ -122.955997033999935, 49.256866670000093 ], [ -122.955995671999986, 49.257313592000038 ], [ -122.955974566999913, 49.258260610000022 ], [ -122.955966711999949, 49.258613502000138 ], [ -122.955953024999985, 49.258612703000033 ], [ -122.954446299999958, 49.258524694000066 ], [ -122.953585784999945, 49.258406685000054 ], [ -122.952717607999915, 49.258239903000089 ], [ -122.952394001999949, 49.258160304000029 ], [ -122.951902403999952, 49.25803939000015 ], [ -122.948692964999964, 49.257003687000115 ], [ -122.948680616000019, 49.256999713 ], [ -122.948697669999945, 49.256485848000032 ] ], [ [ -122.952388862999968, 49.255677121000062 ], [ -122.952390020999971, 49.254473700000069 ], [ -122.951977757999941, 49.254473529000016 ], [ -122.951978280999967, 49.253933815000039 ], [ -122.951153765999919, 49.253933470000078 ], [ -122.951154031, 49.253663613000121 ], [ -122.950741775999916, 49.25366344 ], [ -122.950742044999984, 49.253393583000019 ], [ -122.949093030999961, 49.253392867000095 ], [ -122.949092477999955, 49.253932581000065 ], [ -122.949504733999945, 49.253932762000069 ], [ -122.949503038, 49.255595560000124 ], [ -122.952388862999968, 49.255677121000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115479833", "BldgCostT": "76463333", "sL_LossRatio": "0.740562671645126", "sL_AssetLoss": "1387310", "sL_BldgLoss": "1027390", "sL_StrLoss": "476730", "sL_NStrLoss": "550660", "sL_ContLoss": "359920", "geom_point": "0101000020E6100000957DF4D983BC5EC0B7F7460079A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.941997916999966, 49.254873181000072 ], [ -122.941989972999977, 49.254034217000033 ], [ -122.942053406999918, 49.252460999000071 ], [ -122.942053963999925, 49.252417034000111 ], [ -122.942059332, 49.251996620000106 ], [ -122.942073230999981, 49.250910300000022 ], [ -122.946561188999965, 49.25092210800004 ], [ -122.948742190999965, 49.250946009000053 ], [ -122.948757406999945, 49.25192559400007 ], [ -122.947484204999938, 49.251924802000055 ], [ -122.947494294999956, 49.252898885000079 ], [ -122.947463519999957, 49.254142026000096 ], [ -122.947454510999989, 49.254505685000034 ], [ -122.947440296999929, 49.254888193000035 ], [ -122.948750589999975, 49.254890990000071 ], [ -122.948697669999945, 49.256485848000032 ], [ -122.948680616000019, 49.256999713 ], [ -122.948692964999964, 49.257003687000115 ], [ -122.951902403999952, 49.25803939000015 ], [ -122.952394001999949, 49.258160304000029 ], [ -122.952717607999915, 49.258239903000089 ], [ -122.953585784999945, 49.258406685000054 ], [ -122.954446299999958, 49.258524694000066 ], [ -122.955953024999985, 49.258612703000033 ], [ -122.955966711999949, 49.258613502000138 ], [ -122.955968801999987, 49.258710931000039 ], [ -122.955970098999927, 49.258771294000042 ], [ -122.955952935999946, 49.258770162000054 ], [ -122.954484717999918, 49.258672591000106 ], [ -122.953758996999966, 49.258593589000043 ], [ -122.952394616999968, 49.258311631000026 ], [ -122.952213923999921, 49.25827429800006 ], [ -122.948675578999911, 49.257138293000033 ], [ -122.945650262999948, 49.256142849000121 ], [ -122.943189537999956, 49.255340470000121 ], [ -122.942954203999975, 49.255263749000044 ], [ -122.942925516999978, 49.255254393000016 ], [ -122.942173978999946, 49.255009288000046 ], [ -122.941998778999945, 49.254963658000129 ], [ -122.941997916999966, 49.254873181000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151358583", "BldgCostT": "94893333", "sL_LossRatio": "0.716663411912401", "sL_AssetLoss": "1792250", "sL_BldgLoss": "1284440", "sL_StrLoss": "578740", "sL_NStrLoss": "705700", "sL_ContLoss": "507810", "geom_point": "0101000020E6100000117B15D7C0BC5EC0EF3BD05419A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950697597999948, 49.252919190000107 ], [ -122.95020530499994, 49.252885412000047 ], [ -122.948742501999973, 49.252884591000026 ], [ -122.948757406999945, 49.25192559400007 ], [ -122.948742190999965, 49.250946009000053 ], [ -122.946561188999965, 49.25092210800004 ], [ -122.942073230999981, 49.250910300000022 ], [ -122.942078614999929, 49.249579003000058 ], [ -122.942085696999968, 49.2491990010001 ], [ -122.94207529699996, 49.248649216000082 ], [ -122.942147378999906, 49.248472 ], [ -122.942606525999963, 49.248478163000051 ], [ -122.945037835999955, 49.248510899000067 ], [ -122.945476501999934, 49.248516807000094 ], [ -122.945642422999967, 49.248521503000035 ], [ -122.94603171299994, 49.248532509000015 ], [ -122.946656028999939, 49.24868890500008 ], [ -122.946873092999937, 49.248770711000141 ], [ -122.946995789999974, 49.248833492000102 ], [ -122.94877720099997, 49.249745284000014 ], [ -122.949386202999946, 49.249925497000106 ], [ -122.949727003999968, 49.249964903000112 ], [ -122.950244529999964, 49.249965599000106 ], [ -122.951206337999963, 49.249966907000065 ], [ -122.953858328999928, 49.249970459000103 ], [ -122.954046314999957, 49.249970694000112 ], [ -122.954390614999937, 49.250019205000093 ], [ -122.95475129, 49.25013119000004 ], [ -122.955047410999967, 49.250308897000117 ], [ -122.956070483999966, 49.251148501000067 ], [ -122.956044381999931, 49.252558853000075 ], [ -122.953821604999973, 49.25297409900012 ], [ -122.953412315999955, 49.252995906000116 ], [ -122.953167600999961, 49.252974490000042 ], [ -122.953139105999981, 49.252972002000028 ], [ -122.952845409999952, 49.25290600700005 ], [ -122.952300688999969, 49.252623995000114 ], [ -122.951543795999939, 49.253315088000093 ], [ -122.950967798999926, 49.252988095000127 ], [ -122.950697597999948, 49.252919190000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9531334", "BldgCostT": "5628334", "sL_LossRatio": "0.59524373329725", "sL_AssetLoss": "591220", "sL_BldgLoss": "351920", "sL_StrLoss": "129320", "sL_NStrLoss": "222600", "sL_ContLoss": "239300", "geom_point": "0101000020E6100000D16E3EBF79BB5EC095E06822479F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.927667299999911, 49.245555593000063 ], [ -122.927667694999954, 49.245285737000138 ], [ -122.926431138999959, 49.24528495600007 ], [ -122.92643204700002, 49.244672438000052 ], [ -122.927036593999901, 49.244425707000104 ], [ -122.928043846999941, 49.243936687000065 ], [ -122.929318363, 49.243937473000095 ], [ -122.929318747999957, 49.243667616000039 ], [ -122.929730919999912, 49.243667868000117 ], [ -122.929731685999968, 49.243128155000086 ], [ -122.93055602099993, 49.243128653000078 ], [ -122.930556400999976, 49.242858795000117 ], [ -122.93179289599999, 49.242859532000047 ], [ -122.931791780999987, 49.243669103000101 ], [ -122.93137960899999, 49.243668859000081 ], [ -122.931378486999932, 49.244478429000019 ], [ -122.930554130999965, 49.244477937000113 ], [ -122.930553371999949, 49.245017650000129 ], [ -122.930141189999958, 49.245017402000045 ], [ -122.930140808999937, 49.24528725800009 ], [ -122.929316436999954, 49.245286758000113 ], [ -122.929316050999915, 49.245556614000051 ], [ -122.927667299999911, 49.245555593000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "540372425", "BldgCostT": "308659775", "sL_LossRatio": "0.625097651762327", "sL_AssetLoss": "6963520", "sL_BldgLoss": "4352880", "sL_StrLoss": "1602910", "sL_NStrLoss": "2749970", "sL_ContLoss": "2610640", "geom_point": "0101000020E610000004AF6F5050BC5EC0419889BFF99F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.955997944000018, 49.256560820000061 ], [ -122.955999005999942, 49.256215509000128 ], [ -122.956005120999947, 49.255034708000025 ], [ -122.956010701999929, 49.254608865000058 ], [ -122.956016290999969, 49.254186048000093 ], [ -122.956016491999932, 49.254170193000022 ], [ -122.956021892999942, 49.253773104000039 ], [ -122.956028089999961, 49.253439320000098 ], [ -122.956044381999931, 49.252558853000075 ], [ -122.956070483999966, 49.251148501000067 ], [ -122.955047410999967, 49.250308897000117 ], [ -122.95475129, 49.25013119000004 ], [ -122.954390614999937, 49.250019205000093 ], [ -122.954046314999957, 49.249970694000112 ], [ -122.953858328999928, 49.249970459000103 ], [ -122.951206337999963, 49.249966907000065 ], [ -122.950244529999964, 49.249965599000106 ], [ -122.949727003999968, 49.249964903000112 ], [ -122.949386202999946, 49.249925497000106 ], [ -122.94877720099997, 49.249745284000014 ], [ -122.946995789999974, 49.248833492000102 ], [ -122.946873092999937, 49.248770711000141 ], [ -122.946656028999939, 49.24868890500008 ], [ -122.94603171299994, 49.248532509000015 ], [ -122.945642422999967, 49.248521503000035 ], [ -122.945476501999934, 49.248516807000094 ], [ -122.945037835999955, 49.248510899000067 ], [ -122.942606525999963, 49.248478163000051 ], [ -122.942147378999906, 49.248472 ], [ -122.94207529699996, 49.248649216000082 ], [ -122.942085696999968, 49.2491990010001 ], [ -122.942078614999929, 49.249579003000058 ], [ -122.942073230999981, 49.250910300000022 ], [ -122.942059332, 49.251996620000106 ], [ -122.942053963999925, 49.252417034000111 ], [ -122.942053406999918, 49.252460999000071 ], [ -122.941989972999977, 49.254034217000033 ], [ -122.941997916999966, 49.254873181000072 ], [ -122.941998778999945, 49.254963658000129 ], [ -122.941103039999945, 49.254730306000035 ], [ -122.939975577000013, 49.254496524000096 ], [ -122.939131905999943, 49.254375311000096 ], [ -122.938656126999916, 49.254336890000019 ], [ -122.938629032, 49.254334697000047 ], [ -122.938100298999984, 49.254291982000069 ], [ -122.937997571999972, 49.254287269000045 ], [ -122.937460058999989, 49.254282725000103 ], [ -122.937404942999962, 49.254282240000073 ], [ -122.935165920999935, 49.254263270000081 ], [ -122.935173905999946, 49.25415583300002 ], [ -122.935221610999989, 49.253514800000126 ], [ -122.935243466999978, 49.25256639400007 ], [ -122.935282027999932, 49.250894999000117 ], [ -122.935295816999925, 49.249854911000043 ], [ -122.935307205999948, 49.249537293000053 ], [ -122.935352106999972, 49.24844040600005 ], [ -122.93530698899994, 49.248229196000082 ], [ -122.934018832000021, 49.248225609000066 ], [ -122.933029516999937, 49.248222851000072 ], [ -122.931284476999949, 49.248217939000099 ], [ -122.926379253999983, 49.248204003000048 ], [ -122.92599250799999, 49.248202899000106 ], [ -122.925407012000022, 49.248229388000063 ], [ -122.92483299599995, 49.248351811000099 ], [ -122.923706274999958, 49.248657458000089 ], [ -122.919024294999957, 49.249927399000065 ], [ -122.919011491999925, 49.250802695000054 ], [ -122.918967402999911, 49.252151127000076 ], [ -122.91895149799997, 49.252636907000138 ], [ -122.919014000999979, 49.252688291000034 ], [ -122.919025212999941, 49.253222792000045 ], [ -122.919024720999943, 49.253293571000057 ], [ -122.919024386, 49.253338993000085 ], [ -122.918878685999957, 49.253319501000078 ], [ -122.913574550999954, 49.252608087000034 ], [ -122.913627085999934, 49.252464921000069 ], [ -122.914250296999967, 49.250766594 ], [ -122.914251349999972, 49.250546582 ], [ -122.914254404999937, 49.24990792300008 ], [ -122.914256131999963, 49.249557035000066 ], [ -122.914256396999988, 49.249498307000074 ], [ -122.914321905999927, 49.249381289000034 ], [ -122.914365877999899, 49.249310045000087 ], [ -122.914370432999974, 49.249302610000044 ], [ -122.914518982999979, 49.24937669200007 ], [ -122.914766603999936, 49.249405187000065 ], [ -122.915798195999969, 49.248965094000084 ], [ -122.916994862999957, 49.247921064000138 ], [ -122.917035513, 49.247885591000042 ], [ -122.917583396999959, 49.247565784000059 ], [ -122.917863466999961, 49.247396936 ], [ -122.918858393999969, 49.247086725000052 ], [ -122.91886242899993, 49.247086049000067 ], [ -122.919215245999936, 49.247029903000048 ], [ -122.919206004, 49.247169128000124 ], [ -122.91983311199999, 49.247169565000064 ], [ -122.919832236999937, 49.247709278000066 ], [ -122.921481058999916, 49.247710410000103 ], [ -122.92148063199997, 49.247980267000138 ], [ -122.923953881000031, 49.247981921000111 ], [ -122.923954293999941, 49.247712065000066 ], [ -122.924366500999909, 49.247712335000166 ], [ -122.924366912999972, 49.247442478000053 ], [ -122.926427929999974, 49.247443809000096 ], [ -122.926428731999962, 49.246904096000023 ], [ -122.926840930999973, 49.246904358000094 ], [ -122.926841329999945, 49.246634502000113 ], [ -122.929314510999944, 49.246636041000073 ], [ -122.929314896999955, 49.246366185000063 ], [ -122.930963675999962, 49.246367181000068 ], [ -122.930964052000022, 49.246097325000044 ], [ -122.931788436999952, 49.246097814000059 ], [ -122.931788806999961, 49.245827957000088 ], [ -122.932200773999952, 49.245828201000052 ], [ -122.932218572999957, 49.245558972000019 ], [ -122.932260282999891, 49.245560159000085 ], [ -122.93246183299999, 49.242511069000038 ], [ -122.933183034999942, 49.242531579000087 ], [ -122.933205422999919, 49.242192787000107 ], [ -122.938688329999962, 49.242348559000078 ], [ -122.938529762999977, 49.24475231400006 ], [ -122.941270463999942, 49.24475373900006 ], [ -122.941271422999975, 49.243944167000102 ], [ -122.942920120999958, 49.243944994000088 ], [ -122.942919810999967, 49.244214851000095 ], [ -122.943331987999954, 49.24421505400008 ], [ -122.943332604999981, 49.243675340000046 ], [ -122.944569121999962, 49.243675940000109 ], [ -122.944568517999983, 49.244215653000019 ], [ -122.944980694999984, 49.244215851000043 ], [ -122.944980394999945, 49.244485708000077 ], [ -122.94498377799998, 49.244485710000085 ], [ -122.945804752999976, 49.244486097000021 ], [ -122.945805342999932, 49.243946384000033 ], [ -122.946686170999968, 49.243946794000031 ], [ -122.94745384099997, 49.244136256000061 ], [ -122.947453755999902, 49.244217002000035 ], [ -122.94778162199998, 49.244217152000076 ], [ -122.948690054999929, 49.244441341000069 ], [ -122.94868916899999, 49.245296985000046 ], [ -122.949513539999913, 49.245297350000016 ], [ -122.949512990999935, 49.245837063000117 ], [ -122.950337371999964, 49.245837419000118 ], [ -122.950338183999975, 49.245027850000021 ], [ -122.951068076999945, 49.245028160000089 ], [ -122.951574609999938, 49.245153148000057 ], [ -122.951574468999965, 49.245298230000074 ], [ -122.951986655, 49.245298403000064 ], [ -122.951986132999934, 49.245838117000098 ], [ -122.952398322999954, 49.245838287 ], [ -122.952397025999943, 49.247187571000026 ], [ -122.953221428999939, 49.247187908000036 ], [ -122.953221172999989, 49.247457764000096 ], [ -122.953633377999935, 49.247457931000042 ], [ -122.953633239999974, 49.247604718000069 ], [ -122.9544631699999, 49.247628155000029 ], [ -122.954462903999968, 49.247632207 ], [ -122.956678151999981, 49.247694733000102 ], [ -122.956710747999978, 49.247739550000055 ], [ -122.956726342999914, 49.247751799000092 ], [ -122.956550855999964, 49.250427489000025 ], [ -122.956928427999912, 49.250427631000036 ], [ -122.956927722999978, 49.251237201000031 ], [ -122.957752192999976, 49.251237505000084 ], [ -122.957752424999967, 49.250967648000021 ], [ -122.959813588999964, 49.250968384000039 ], [ -122.959813001999962, 49.251691252000057 ], [ -122.961052978999973, 49.251726191000074 ], [ -122.96092583899997, 49.25366733100001 ], [ -122.961321543999972, 49.253667465000085 ], [ -122.961465913999973, 49.251462976000091 ], [ -122.961744500999913, 49.251507297000025 ], [ -122.962402687999941, 49.252380396 ], [ -122.963473685999972, 49.25315370599999 ], [ -122.963698766, 49.253509126000061 ], [ -122.963804705999948, 49.253676391000063 ], [ -122.963704, 49.254085942000074 ], [ -122.96228464499994, 49.254045984000072 ], [ -122.962284110999974, 49.254747209000122 ], [ -122.962267898999954, 49.254747205000072 ], [ -122.96273140299999, 49.254760255000079 ], [ -122.96269595699998, 49.255301709000101 ], [ -122.96269535899998, 49.256096626000087 ], [ -122.963107634, 49.256096757000101 ], [ -122.963107232999931, 49.256636470000046 ], [ -122.964344073999968, 49.256636859000018 ], [ -122.964344150999978, 49.256528153000076 ], [ -122.96474439499994, 49.256556285000052 ], [ -122.96462879399999, 49.258010049000127 ], [ -122.964600524, 49.258282107000078 ], [ -122.964610904999958, 49.258354722000021 ], [ -122.964636297999959, 49.258532594000052 ], [ -122.964632748999975, 49.259154442000039 ], [ -122.964631294999933, 49.259407201000059 ], [ -122.964631601999926, 49.259590896000141 ], [ -122.964631469999958, 49.259600205 ], [ -122.964630285999974, 49.259674691000136 ], [ -122.964211808999949, 49.259595354000062 ], [ -122.962778101999902, 49.259323486000021 ], [ -122.961499680999964, 49.259125295000075 ], [ -122.959756206999955, 49.258938405000052 ], [ -122.958230706999984, 49.25884309000002 ], [ -122.956021572999958, 49.258772920000027 ], [ -122.955970098999927, 49.258771294000042 ], [ -122.955968801999987, 49.258710931000039 ], [ -122.955966711999949, 49.258613502000138 ], [ -122.955974566999913, 49.258260610000022 ], [ -122.955995671999986, 49.257313592000038 ], [ -122.955997033999935, 49.256866670000093 ], [ -122.955997944000018, 49.256560820000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3163978", "BldgCostT": "1769857", "sL_LossRatio": "0.513387748874819", "sL_AssetLoss": "131090", "sL_BldgLoss": "67300", "sL_StrLoss": "23500", "sL_NStrLoss": "43800", "sL_ContLoss": "63790", "geom_point": "0101000020E6100000523530A825BB5EC063409BC1849F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924191372999928, 49.245823222000048 ], [ -122.924781575999972, 49.245823608000087 ], [ -122.924780345999977, 49.246633178000117 ], [ -122.923543755999958, 49.24663236599999 ], [ -122.923544899999939, 49.245891431000068 ], [ -122.92369278399994, 49.245885871000141 ], [ -122.924162270999958, 49.245837152 ], [ -122.924191372999928, 49.245823222000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174462667", "BldgCostT": "113961667", "sL_LossRatio": "0.713995689349893", "sL_AssetLoss": "2485008", "sL_BldgLoss": "1774285", "sL_StrLoss": "792565", "sL_NStrLoss": "981720", "sL_ContLoss": "710723", "geom_point": "0101000020E61000001EC36BB053BB5EC0546BB45E04A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.920597360999935, 49.252458120000014 ], [ -122.920586105000027, 49.250816105000119 ], [ -122.919011491999925, 49.250802695000054 ], [ -122.919024294999957, 49.249927399000065 ], [ -122.923706274999958, 49.248657458000089 ], [ -122.92483299599995, 49.248351811000099 ], [ -122.925407012000022, 49.248229388000063 ], [ -122.92599250799999, 49.248202899000106 ], [ -122.926379253999983, 49.248204003000048 ], [ -122.931284476999949, 49.248217939000099 ], [ -122.933029516999937, 49.248222851000072 ], [ -122.934018832000021, 49.248225609000066 ], [ -122.93530698899994, 49.248229196000082 ], [ -122.935352106999972, 49.24844040600005 ], [ -122.935307205999948, 49.249537293000053 ], [ -122.935295816999925, 49.249854911000043 ], [ -122.935282027999932, 49.250894999000117 ], [ -122.931802973999979, 49.250876448999989 ], [ -122.93138349, 49.250874192000019 ], [ -122.926192306999951, 49.250846297000045 ], [ -122.92618060299999, 49.251998212000046 ], [ -122.926169298999952, 49.252479802000067 ], [ -122.924666376999966, 49.252482006000086 ], [ -122.923992085999927, 49.252479008000144 ], [ -122.923780502999989, 49.25252249800009 ], [ -122.923646991999945, 49.252608813000052 ], [ -122.923196905999959, 49.253244585000083 ], [ -122.921852993999963, 49.253044086000095 ], [ -122.921482177, 49.252983922000112 ], [ -122.920599990999946, 49.252840794000114 ], [ -122.920597360999935, 49.252458120000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156189500", "BldgCostT": "103040000", "sL_LossRatio": "0.72467775475813", "sL_AssetLoss": "2327963", "sL_BldgLoss": "1687023", "sL_StrLoss": "756643", "sL_NStrLoss": "930380", "sL_ContLoss": "640940", "geom_point": "0101000020E6100000EF3923296DBB5EC03B37F96F56A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.919025212999941, 49.253222792000045 ], [ -122.919014000999979, 49.252688291000034 ], [ -122.91895149799997, 49.252636907000138 ], [ -122.918967402999911, 49.252151127000076 ], [ -122.919011491999925, 49.250802695000054 ], [ -122.920586105000027, 49.250816105000119 ], [ -122.920597360999935, 49.252458120000014 ], [ -122.920599990999946, 49.252840794000114 ], [ -122.921482177, 49.252983922000112 ], [ -122.921852993999963, 49.253044086000095 ], [ -122.923196905999959, 49.253244585000083 ], [ -122.923646991999945, 49.252608813000052 ], [ -122.923780502999989, 49.25252249800009 ], [ -122.923992085999927, 49.252479008000144 ], [ -122.924666376999966, 49.252482006000086 ], [ -122.926169298999952, 49.252479802000067 ], [ -122.92618060299999, 49.251998212000046 ], [ -122.926192306999951, 49.250846297000045 ], [ -122.93138349, 49.250874192000019 ], [ -122.931802973999979, 49.250876448999989 ], [ -122.935282027999932, 49.250894999000117 ], [ -122.935243466999978, 49.25256639400007 ], [ -122.935221610999989, 49.253514800000126 ], [ -122.935173905999946, 49.25415583300002 ], [ -122.935165920999935, 49.254263270000081 ], [ -122.934153497999972, 49.254254649000146 ], [ -122.931081845999955, 49.25425536300002 ], [ -122.928243947999988, 49.25425590600009 ], [ -122.927134791999947, 49.254247512000099 ], [ -122.92712090500001, 49.254247391000099 ], [ -122.92572869899999, 49.25421580700008 ], [ -122.924794793999965, 49.254150407000061 ], [ -122.919024386, 49.253338993000085 ], [ -122.919024720999943, 49.253293571000057 ], [ -122.919025212999941, 49.253222792000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171935720", "BldgCostT": "117805413", "sL_LossRatio": "0.821120888082179", "sL_AssetLoss": "2280870", "sL_BldgLoss": "1872870", "sL_StrLoss": "845890", "sL_NStrLoss": "1026980", "sL_ContLoss": "408000", "geom_point": "0101000020E61000009F5C32120ABA5EC0F5ED5ECD05A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906350328999963, 49.259099405000015 ], [ -122.906363292999956, 49.258636787000114 ], [ -122.90621221499994, 49.258635997000098 ], [ -122.905854291999958, 49.25870771200011 ], [ -122.905815902999962, 49.258721863000034 ], [ -122.905598010999967, 49.25880219200009 ], [ -122.905316606999946, 49.25894368800008 ], [ -122.904707215999949, 49.259223493000071 ], [ -122.904567908999937, 49.259250986000033 ], [ -122.904338817999985, 49.259226402000081 ], [ -122.90418347399999, 49.259144495000058 ], [ -122.904524636999952, 49.258854318000047 ], [ -122.904581099999987, 49.258806288000081 ], [ -122.904744720999986, 49.258599305000054 ], [ -122.904959606999981, 49.258177611000107 ], [ -122.905021719, 49.257448624000055 ], [ -122.905139123999959, 49.25607116000004 ], [ -122.905143097999883, 49.256024393000054 ], [ -122.90521428699999, 49.255842706000138 ], [ -122.905516501999941, 49.255884700000145 ], [ -122.905561472999949, 49.255884156000029 ], [ -122.905643896999962, 49.255883120000071 ], [ -122.90582578499999, 49.255880887000025 ], [ -122.906090907999967, 49.25583989700003 ], [ -122.906289786999963, 49.256195104000078 ], [ -122.906525590999976, 49.256614489000107 ], [ -122.906583991999952, 49.256727804000086 ], [ -122.906704684999909, 49.256977214000074 ], [ -122.906862819999972, 49.25711960600011 ], [ -122.907038008999962, 49.257192196000041 ], [ -122.90746218699995, 49.256989992000037 ], [ -122.907697891999931, 49.256978696000104 ], [ -122.907841251999955, 49.257008367000068 ], [ -122.90798109, 49.257037311000076 ], [ -122.908133200999941, 49.257124498000096 ], [ -122.90822792099999, 49.257250611000181 ], [ -122.90832981299998, 49.257472492000034 ], [ -122.908535000999962, 49.257507203000088 ], [ -122.90875608599994, 49.257426103000093 ], [ -122.908977304999937, 49.257198187000022 ], [ -122.909009011999942, 49.257279289000074 ], [ -122.909215118999953, 49.257443794000039 ], [ -122.909266121999977, 49.257647896000023 ], [ -122.909235808999981, 49.258061497000043 ], [ -122.909216762999947, 49.258158342000094 ], [ -122.909202608999934, 49.258188386000064 ], [ -122.909264017999959, 49.258503706000084 ], [ -122.909459703999957, 49.258824599000064 ], [ -122.909460407999973, 49.258916505000037 ], [ -122.909383602999952, 49.258997201000028 ], [ -122.909206591999975, 49.259055212000121 ], [ -122.909042004999904, 49.259072105000044 ], [ -122.90835700699995, 49.259022691000055 ], [ -122.908298687999903, 49.259196711000079 ], [ -122.908175987000035, 49.259368904000119 ], [ -122.908107034999901, 49.259429342000054 ], [ -122.90802281899991, 49.259503207000058 ], [ -122.90773449799994, 49.259665194000021 ], [ -122.907282911999943, 49.259741386000037 ], [ -122.906895898999935, 49.259673589000073 ], [ -122.906659503999947, 49.259550607000051 ], [ -122.906485308999947, 49.259382608000116 ], [ -122.90639550099999, 49.259244888000062 ], [ -122.906350328999963, 49.259099405000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205802250", "BldgCostT": "134610000", "sL_LossRatio": "0.783812825949911", "sL_AssetLoss": "2791840", "sL_BldgLoss": "2188280", "sL_StrLoss": "970580", "sL_NStrLoss": "1217700", "sL_ContLoss": "603560", "geom_point": "0101000020E61000005F2D5EC921BA5EC08E4B76E8CBA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.90832981299998, 49.257472492000034 ], [ -122.90822792099999, 49.257250611000181 ], [ -122.908133200999941, 49.257124498000096 ], [ -122.90798109, 49.257037311000076 ], [ -122.907841251999955, 49.257008367000068 ], [ -122.907697891999931, 49.256978696000104 ], [ -122.90746218699995, 49.256989992000037 ], [ -122.907038008999962, 49.257192196000041 ], [ -122.906862819999972, 49.25711960600011 ], [ -122.906704684999909, 49.256977214000074 ], [ -122.906583991999952, 49.256727804000086 ], [ -122.906525590999976, 49.256614489000107 ], [ -122.906289786999963, 49.256195104000078 ], [ -122.906090907999967, 49.25583989700003 ], [ -122.906687388999927, 49.255650698000103 ], [ -122.907200299999957, 49.255457284000059 ], [ -122.90760660799998, 49.255339192000051 ], [ -122.908147695999901, 49.255258900000108 ], [ -122.908598593999955, 49.255192010000052 ], [ -122.909255593999973, 49.255145006000085 ], [ -122.909468325999981, 49.255162647000134 ], [ -122.909770594999941, 49.255187694000078 ], [ -122.909832936999948, 49.255397551000073 ], [ -122.910070181, 49.25619630000007 ], [ -122.910194286999968, 49.256457513000051 ], [ -122.910418593999978, 49.256761207000089 ], [ -122.909836484999985, 49.256921094000091 ], [ -122.909598211999977, 49.256952096000127 ], [ -122.90937541299995, 49.256996092000065 ], [ -122.909150288999967, 49.257076210000037 ], [ -122.909141140999964, 49.257082650000072 ], [ -122.908977304999937, 49.257198187000022 ], [ -122.90875608599994, 49.257426103000093 ], [ -122.908535000999962, 49.257507203000088 ], [ -122.90832981299998, 49.257472492000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85674644", "BldgCostT": "49366523", "sL_LossRatio": "0.658700882117081", "sL_AssetLoss": "997600", "sL_BldgLoss": "657120", "sL_StrLoss": "279920", "sL_NStrLoss": "377200", "sL_ContLoss": "340480", "geom_point": "0101000020E61000001EAA4AD723BA5EC0EB3E29287FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.909468325999981, 49.255162647000134 ], [ -122.909255593999973, 49.255145006000085 ], [ -122.908598593999955, 49.255192010000052 ], [ -122.908147695999901, 49.255258900000108 ], [ -122.90760660799998, 49.255339192000051 ], [ -122.907200299999957, 49.255457284000059 ], [ -122.906687388999927, 49.255650698000103 ], [ -122.906090907999967, 49.25583989700003 ], [ -122.90582578499999, 49.255880887000025 ], [ -122.905643896999962, 49.255883120000071 ], [ -122.905561472999949, 49.255884156000029 ], [ -122.905516501999941, 49.255884700000145 ], [ -122.90521428699999, 49.255842706000138 ], [ -122.905077128999949, 49.2557859 ], [ -122.904933601999971, 49.255726503000055 ], [ -122.904828365999933, 49.255668910000047 ], [ -122.904372156999969, 49.255419182000018 ], [ -122.903787220999959, 49.255099003000019 ], [ -122.904110498999955, 49.254876931000069 ], [ -122.904518581999952, 49.254596600000106 ], [ -122.904672213999973, 49.25443529700005 ], [ -122.904787014999968, 49.254217004000061 ], [ -122.904797712999979, 49.253995605000036 ], [ -122.904601910999958, 49.253491790000076 ], [ -122.904324498999955, 49.253017206000074 ], [ -122.904289404999972, 49.252616195000087 ], [ -122.904280279999966, 49.251868306000127 ], [ -122.90428215799993, 49.251510202000091 ], [ -122.904283197999959, 49.251309805000062 ], [ -122.904302075999937, 49.251129267000096 ], [ -122.906919877999954, 49.251512020000106 ], [ -122.909721489999953, 49.25192156400005 ], [ -122.911316023999959, 49.252154641000104 ], [ -122.912489914, 49.252307148000064 ], [ -122.912475582999932, 49.252460790000093 ], [ -122.912140536999971, 49.257103241000081 ], [ -122.912089592999948, 49.257278052000046 ], [ -122.912033627999918, 49.257469924000105 ], [ -122.911987407999987, 49.257628566000115 ], [ -122.91144887899999, 49.257422184000099 ], [ -122.911199884999945, 49.257287027000103 ], [ -122.91088810499997, 49.257117787000077 ], [ -122.910658131999966, 49.256943119000049 ], [ -122.910418593999978, 49.256761207000089 ], [ -122.910194286999968, 49.256457513000051 ], [ -122.910070181, 49.25619630000007 ], [ -122.909832936999948, 49.255397551000073 ], [ -122.909770594999941, 49.255187694000078 ], [ -122.909468325999981, 49.255162647000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102954303", "BldgCostT": "67238746", "sL_LossRatio": "0.723601910487252", "sL_AssetLoss": "1028010", "sL_BldgLoss": "743870", "sL_StrLoss": "322710", "sL_NStrLoss": "421160", "sL_ContLoss": "284140", "geom_point": "0101000020E6100000115B072809B95EC0B559CC3AA99F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.889726798999959, 49.247216408000028 ], [ -122.889767009999957, 49.246617497000052 ], [ -122.890004402, 49.246312686000088 ], [ -122.889992292999935, 49.245468190000118 ], [ -122.890875264000016, 49.245489261000053 ], [ -122.891171815999911, 49.245496322000065 ], [ -122.891791400999935, 49.245511087000089 ], [ -122.89259318699996, 49.245945897000041 ], [ -122.89268878799993, 49.248045911000077 ], [ -122.892755817999927, 49.249014464000034 ], [ -122.889942466999941, 49.249019867000079 ], [ -122.889756026999947, 49.249075736000108 ], [ -122.889639525999968, 49.249072384000065 ], [ -122.889639584999898, 49.249019123000096 ], [ -122.889640785999958, 49.248192296000106 ], [ -122.889631686999948, 49.24754969900011 ], [ -122.889726798999959, 49.247216408000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201013061", "BldgCostT": "134788190", "sL_LossRatio": "0.804817793512141", "sL_AssetLoss": "1299350", "sL_BldgLoss": "1045740", "sL_StrLoss": "486300", "sL_NStrLoss": "559440", "sL_ContLoss": "253610", "geom_point": "0101000020E61000002B5A3D50FCB85EC09CE271512DA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89191595799997, 49.249628318000077 ], [ -122.891916017, 49.249597500000014 ], [ -122.891186024999925, 49.249592037000077 ], [ -122.889936314999915, 49.249582677000042 ], [ -122.889737203, 49.249521066000071 ], [ -122.889637, 49.249417274000038 ], [ -122.889639525999968, 49.249072384000065 ], [ -122.889756026999947, 49.249075736000108 ], [ -122.889942466999941, 49.249019867000079 ], [ -122.892755817999927, 49.249014464000034 ], [ -122.892758988999972, 49.249110939000055 ], [ -122.892765315999924, 49.249385899000089 ], [ -122.892793697999934, 49.2508083170001 ], [ -122.892878010999979, 49.250862086000055 ], [ -122.892908672999909, 49.251796356000085 ], [ -122.892915491999943, 49.252004601000053 ], [ -122.891899108999937, 49.25200319600004 ], [ -122.89189087799997, 49.252842594000043 ], [ -122.889988804, 49.252836392000063 ], [ -122.887158321999934, 49.25278720000005 ], [ -122.887160855999966, 49.252628549000079 ], [ -122.887171199999969, 49.251981299000079 ], [ -122.887163280999957, 49.251688303000023 ], [ -122.887310320999958, 49.2512996990001 ], [ -122.889983493999964, 49.251318305000083 ], [ -122.891278593999971, 49.251320505000088 ], [ -122.89139862, 49.251169892000036 ], [ -122.891547611999968, 49.251057106000083 ], [ -122.891747985000023, 49.251054966000076 ], [ -122.891914598999975, 49.251053196000015 ], [ -122.89191595799997, 49.249628318000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83581250", "BldgCostT": "56435000", "sL_LossRatio": "0.749417825770313", "sL_AssetLoss": "1112210", "sL_BldgLoss": "833510", "sL_StrLoss": "385840", "sL_NStrLoss": "447670", "sL_ContLoss": "278700", "geom_point": "0101000020E610000000160167CCB85EC078842E3C8AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.889988804, 49.252836392000063 ], [ -122.89189087799997, 49.252842594000043 ], [ -122.891868802999952, 49.253582498000064 ], [ -122.892019293999979, 49.253796713000028 ], [ -122.892047291999972, 49.253892106000059 ], [ -122.892057695999966, 49.254453699000074 ], [ -122.8919607979999, 49.255019313000105 ], [ -122.891927308, 49.255519184000086 ], [ -122.885122609999939, 49.255487808000076 ], [ -122.882912102999953, 49.255633009000078 ], [ -122.882874991999969, 49.254753609000069 ], [ -122.882824118999949, 49.254653002000104 ], [ -122.88273339899996, 49.254551296000081 ], [ -122.882749178999987, 49.253722904000064 ], [ -122.882729118, 49.253080905000047 ], [ -122.885841504999959, 49.25312759800002 ], [ -122.886839706999965, 49.252786108000109 ], [ -122.887158321999934, 49.25278720000005 ], [ -122.889988804, 49.252836392000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "516593061", "BldgCostT": "355328190", "sL_LossRatio": "0.870169344333478", "sL_AssetLoss": "2763600", "sL_BldgLoss": "2404800", "sL_StrLoss": "1079570", "sL_NStrLoss": "1325230", "sL_ContLoss": "358800", "geom_point": "0101000020E610000061461DC21DB95EC0FFB7587291A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891927308, 49.255519184000086 ], [ -122.8919607979999, 49.255019313000105 ], [ -122.892057695999966, 49.254453699000074 ], [ -122.892047291999972, 49.253892106000059 ], [ -122.892019293999979, 49.253796713000028 ], [ -122.891868802999952, 49.253582498000064 ], [ -122.89189087799997, 49.252842594000043 ], [ -122.891899108999937, 49.25200319600004 ], [ -122.892915491999943, 49.252004601000053 ], [ -122.89291473499999, 49.252798383000048 ], [ -122.89291409799992, 49.2533990660001 ], [ -122.89292629299996, 49.253838795000064 ], [ -122.892953750999965, 49.254828103000101 ], [ -122.892964993999925, 49.255232913000036 ], [ -122.892966067999936, 49.255271111000084 ], [ -122.892991217999906, 49.256177793000063 ], [ -122.892993481999952, 49.256259158000063 ], [ -122.892996471999965, 49.256366383000064 ], [ -122.893008701999975, 49.256807095000084 ], [ -122.891882617999912, 49.256800808000023 ], [ -122.891900388999943, 49.25629026700004 ], [ -122.891907532999966, 49.256086399000054 ], [ -122.891927308, 49.255519184000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "326936605", "BldgCostT": "219876506", "sL_LossRatio": "0.791653106910052", "sL_AssetLoss": "2028060", "sL_BldgLoss": "1605520", "sL_StrLoss": "682560", "sL_NStrLoss": "922960", "sL_ContLoss": "422540", "geom_point": "0101000020E610000082E012FC06B95EC0CFAB9564F8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891882617999912, 49.256800808000023 ], [ -122.893008701999975, 49.256807095000084 ], [ -122.893008434999985, 49.25704138400004 ], [ -122.893008351999981, 49.257104438000027 ], [ -122.893007742999956, 49.257689140000139 ], [ -122.89300638399996, 49.258892508000017 ], [ -122.891885085999917, 49.25887644700002 ], [ -122.890870861999986, 49.258352768000101 ], [ -122.889401500999938, 49.257592065000061 ], [ -122.88930823799997, 49.257545531000112 ], [ -122.889285592999926, 49.257534326000112 ], [ -122.886926614999965, 49.256751604000101 ], [ -122.889326829999931, 49.256775577000091 ], [ -122.889508992999964, 49.256777387000092 ], [ -122.890630598999934, 49.256788109000063 ], [ -122.891882617999912, 49.256800808000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "478602387", "BldgCostT": "317252080", "sL_LossRatio": "0.756925291146063", "sL_AssetLoss": "3487940", "sL_BldgLoss": "2640110", "sL_StrLoss": "1131710", "sL_NStrLoss": "1508400", "sL_ContLoss": "847830", "geom_point": "0101000020E61000007A6F877ED4B85EC07611C6EC38A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.882871012999942, 49.260190184000095 ], [ -122.882882710999979, 49.258667204000069 ], [ -122.883008406999934, 49.258759101000088 ], [ -122.884099871, 49.2587699010001 ], [ -122.886999256999943, 49.258809373000069 ], [ -122.887827714999943, 49.258820647000057 ], [ -122.888981212999965, 49.258836317000089 ], [ -122.89071432599998, 49.258859819000072 ], [ -122.891885085999917, 49.25887644700002 ], [ -122.89300638399996, 49.258892508000017 ], [ -122.893006399999933, 49.258901963 ], [ -122.893006005999951, 49.259062794000094 ], [ -122.893047696999929, 49.260347696000032 ], [ -122.892306300999905, 49.260340807000048 ], [ -122.891594789999914, 49.260338297000068 ], [ -122.890952231999975, 49.260328170000101 ], [ -122.889762403999953, 49.260309404000026 ], [ -122.888898763999933, 49.260295766000091 ], [ -122.888885027999905, 49.260295557000056 ], [ -122.888045569999946, 49.260282279000066 ], [ -122.887230100999943, 49.260269398000105 ], [ -122.886136687999937, 49.260252106000081 ], [ -122.884743505999964, 49.260212791000122 ], [ -122.88333822099996, 49.260189303000061 ], [ -122.882871012999942, 49.260190184000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107317083", "BldgCostT": "71988333", "sL_LossRatio": "0.727733238566206", "sL_AssetLoss": "1660210", "sL_BldgLoss": "1208190", "sL_StrLoss": "554180", "sL_NStrLoss": "654010", "sL_ContLoss": "452020", "geom_point": "0101000020E6100000610D38C750B95EC0B19C080B3CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.895796687999962, 49.26302249 ], [ -122.893803800999962, 49.262946893000098 ], [ -122.893140504999963, 49.262942802000047 ], [ -122.893126719999913, 49.262942698000096 ], [ -122.893126727999942, 49.262933380000078 ], [ -122.893127002, 49.262835500000101 ], [ -122.893108582999943, 49.262258152000065 ], [ -122.893104581000017, 49.262132061000052 ], [ -122.893058142999948, 49.2606747130001 ], [ -122.893057037999981, 49.260640921000125 ], [ -122.893047696999929, 49.260347696000032 ], [ -122.893006005999951, 49.259062794000094 ], [ -122.893006399999933, 49.258901963 ], [ -122.89300638399996, 49.258892508000017 ], [ -122.893007742999956, 49.257689140000139 ], [ -122.893008351999981, 49.257104438000027 ], [ -122.893399908, 49.257016584000048 ], [ -122.893604056999934, 49.257018786000131 ], [ -122.895452206999934, 49.257038704000088 ], [ -122.896063948999952, 49.257047114000088 ], [ -122.897685205999892, 49.257069376000061 ], [ -122.897726405999947, 49.25706994100009 ], [ -122.898386715999905, 49.257078993000093 ], [ -122.898393179999957, 49.257460185000056 ], [ -122.898400606999957, 49.257898190000056 ], [ -122.899254900999935, 49.257901204000085 ], [ -122.899656291000014, 49.258061409000092 ], [ -122.899125888999905, 49.258494699000011 ], [ -122.89879039600001, 49.258889600000018 ], [ -122.89845269099996, 49.259789787000109 ], [ -122.898311590999938, 49.259989306000108 ], [ -122.898125001999958, 49.260170414000072 ], [ -122.897709385999917, 49.260469204000074 ], [ -122.89723728199999, 49.26064670200001 ], [ -122.897207411999958, 49.261256587000041 ], [ -122.897115895999946, 49.261495386000014 ], [ -122.896943479999962, 49.261711104000071 ], [ -122.895851406999924, 49.26246890100002 ], [ -122.895841108999903, 49.26282709300002 ], [ -122.895817706999964, 49.262930068000102 ], [ -122.895796687999962, 49.26302249 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "498406705", "BldgCostT": "340109713", "sL_LossRatio": "0.815032045975924", "sL_AssetLoss": "5496790", "sL_BldgLoss": "4480060", "sL_StrLoss": "2085830", "sL_NStrLoss": "2394230", "sL_ContLoss": "1016730", "geom_point": "0101000020E610000057BB3EF70EB95EC082DBD251ABA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890558470999906, 49.265447895000058 ], [ -122.890452996999926, 49.263066491000139 ], [ -122.889916288999942, 49.26309266100008 ], [ -122.889267475999944, 49.263124300000086 ], [ -122.888752764999978, 49.263150715000087 ], [ -122.88797560099998, 49.26319060400008 ], [ -122.891594789999914, 49.260338297000068 ], [ -122.892306300999905, 49.260340807000048 ], [ -122.893047696999929, 49.260347696000032 ], [ -122.893057037999981, 49.260640921000125 ], [ -122.893058142999948, 49.2606747130001 ], [ -122.893104581000017, 49.262132061000052 ], [ -122.893108582999943, 49.262258152000065 ], [ -122.893127002, 49.262835500000101 ], [ -122.893126727999942, 49.262933380000078 ], [ -122.893126719999913, 49.262942698000096 ], [ -122.893251896999928, 49.265710088000077 ], [ -122.891910022999951, 49.26574350300006 ], [ -122.89117539499999, 49.265776405000111 ], [ -122.890558470999906, 49.265447895000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "760429282", "BldgCostT": "504133604", "sL_LossRatio": "0.757400007758855", "sL_AssetLoss": "5155400", "sL_BldgLoss": "3904700", "sL_StrLoss": "1673800", "sL_NStrLoss": "2230900", "sL_ContLoss": "1250700", "geom_point": "0101000020E61000003B898AA3B8B85EC06CB9022392A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890952231999975, 49.260328170000101 ], [ -122.891594789999914, 49.260338297000068 ], [ -122.88797560099998, 49.26319060400008 ], [ -122.886387598999974, 49.264441035000111 ], [ -122.88485229299999, 49.265649892000127 ], [ -122.883675781999941, 49.265492502000036 ], [ -122.883605287999913, 49.264475200000099 ], [ -122.883587279999986, 49.26423239000011 ], [ -122.883516383999947, 49.263446594000108 ], [ -122.883497816999977, 49.26276230600017 ], [ -122.88345830499992, 49.26212330700011 ], [ -122.88333822099996, 49.260189303000061 ], [ -122.884743505999964, 49.260212791000122 ], [ -122.886136687999937, 49.260252106000081 ], [ -122.887230100999943, 49.260269398000105 ], [ -122.888045569999946, 49.260282279000066 ], [ -122.888885027999905, 49.260295557000056 ], [ -122.888898763999933, 49.260295766000091 ], [ -122.889762403999953, 49.260309404000026 ], [ -122.890952231999975, 49.260328170000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74853000", "BldgCostT": "48465000", "sL_LossRatio": "0.740810988081669", "sL_AssetLoss": "901049", "sL_BldgLoss": "667507", "sL_StrLoss": "297327", "sL_NStrLoss": "370180", "sL_ContLoss": "233542", "geom_point": "0101000020E610000081B4F790CDB85EC0010827BBFCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.886361189999931, 49.267142111000062 ], [ -122.886330123999983, 49.266459196000028 ], [ -122.884482813999966, 49.266503057000172 ], [ -122.883742701999921, 49.266520598000078 ], [ -122.88485229299999, 49.265649892000127 ], [ -122.886387598999974, 49.264441035000111 ], [ -122.88797560099998, 49.26319060400008 ], [ -122.888752764999978, 49.263150715000087 ], [ -122.889267475999944, 49.263124300000086 ], [ -122.889291068999952, 49.263284397000049 ], [ -122.889195913999984, 49.263475299000049 ], [ -122.888679217999979, 49.263927097000042 ], [ -122.889075082999923, 49.264252001000024 ], [ -122.889196312999957, 49.264514006000084 ], [ -122.889200785999947, 49.265573601000064 ], [ -122.889075109999908, 49.265747385000083 ], [ -122.889831998999966, 49.266138603000044 ], [ -122.890053486999989, 49.266360305000035 ], [ -122.890238994999933, 49.266361083000021 ], [ -122.890346302999959, 49.26639940200004 ], [ -122.890412196999989, 49.266461590000091 ], [ -122.890444201, 49.266947204000154 ], [ -122.890407801999942, 49.267020014000124 ], [ -122.890302193999901, 49.267057492000021 ], [ -122.886983242999946, 49.267128768000056 ], [ -122.886361189999931, 49.267142111000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240037916", "BldgCostT": "161921666", "sL_LossRatio": "0.749171419342482", "sL_AssetLoss": "2981303", "sL_BldgLoss": "2233507", "sL_StrLoss": "989157", "sL_NStrLoss": "1244350", "sL_ContLoss": "747796", "geom_point": "0101000020E610000043F949B5CFB85EC05225259845A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880533612, 49.269084506000119 ], [ -122.881563511999957, 49.26827730600013 ], [ -122.883742701999921, 49.266520598000078 ], [ -122.884482813999966, 49.266503057000172 ], [ -122.886330123999983, 49.266459196000028 ], [ -122.886361189999931, 49.267142111000062 ], [ -122.886983242999946, 49.267128768000056 ], [ -122.890302193999901, 49.267057492000021 ], [ -122.890407801999942, 49.267020014000124 ], [ -122.890444201, 49.266947204000154 ], [ -122.890412196999989, 49.266461590000091 ], [ -122.890346302999959, 49.26639940200004 ], [ -122.890238994999933, 49.266361083000021 ], [ -122.890053486999989, 49.266360305000035 ], [ -122.889831998999966, 49.266138603000044 ], [ -122.889075109999908, 49.265747385000083 ], [ -122.889200785999947, 49.265573601000064 ], [ -122.889196312999957, 49.264514006000084 ], [ -122.889075082999923, 49.264252001000024 ], [ -122.888679217999979, 49.263927097000042 ], [ -122.889195913999984, 49.263475299000049 ], [ -122.889291068999952, 49.263284397000049 ], [ -122.889267475999944, 49.263124300000086 ], [ -122.889916288999942, 49.26309266100008 ], [ -122.890452996999926, 49.263066491000139 ], [ -122.890558470999906, 49.265447895000058 ], [ -122.89117539499999, 49.265776405000111 ], [ -122.891910022999951, 49.26574350300006 ], [ -122.893251896999928, 49.265710088000077 ], [ -122.89326302299996, 49.266072511000104 ], [ -122.893267415999915, 49.266216370000045 ], [ -122.893311012999945, 49.267637795000056 ], [ -122.892935715999926, 49.267640585000052 ], [ -122.892815906999928, 49.267685790000016 ], [ -122.892021019999959, 49.268678990000076 ], [ -122.892038814000031, 49.269706491000093 ], [ -122.890993799999976, 49.269716004000038 ], [ -122.890757671999935, 49.269718383000075 ], [ -122.890551528999964, 49.269720485 ], [ -122.890193997999987, 49.269724077 ], [ -122.890044989999964, 49.26972558700011 ], [ -122.88194797499996, 49.269834300000106 ], [ -122.881555802999912, 49.269781504000044 ], [ -122.880533612, 49.269084506000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182080085", "BldgCostT": "120768335", "sL_LossRatio": "0.748004527394272", "sL_AssetLoss": "1696340", "sL_BldgLoss": "1268870", "sL_StrLoss": "565760", "sL_NStrLoss": "703110", "sL_ContLoss": "427470", "geom_point": "0101000020E6100000B59C4A278EB85EC064E4DAED86A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880464127999943, 49.271065951000026 ], [ -122.878236586999947, 49.270852202000079 ], [ -122.876801597999972, 49.270837694000136 ], [ -122.8768408, 49.26990729400012 ], [ -122.876892115999937, 49.269248496000095 ], [ -122.876921309999943, 49.268202491000089 ], [ -122.880248989999984, 49.268228497000102 ], [ -122.880164818999987, 49.268643195000038 ], [ -122.880217583999979, 49.268838401000011 ], [ -122.880533612, 49.269084506000119 ], [ -122.881555802999912, 49.269781504000044 ], [ -122.88194797499996, 49.269834300000106 ], [ -122.890044989999964, 49.26972558700011 ], [ -122.890193997999987, 49.269724077 ], [ -122.890551528999964, 49.269720485 ], [ -122.890757671999935, 49.269718383000075 ], [ -122.890993799999976, 49.269716004000038 ], [ -122.892038814000031, 49.269706491000093 ], [ -122.892021019999959, 49.268678990000076 ], [ -122.892815906999928, 49.267685790000016 ], [ -122.892935715999926, 49.267640585000052 ], [ -122.893311012999945, 49.267637795000056 ], [ -122.893394092999927, 49.269679789000108 ], [ -122.893424315999951, 49.270293379000037 ], [ -122.883482272999984, 49.270633409000069 ], [ -122.883278220999927, 49.270570901000049 ], [ -122.88229622099999, 49.270563304000113 ], [ -122.880618699999957, 49.27057689700014 ], [ -122.880492481999966, 49.270614699000134 ], [ -122.88044809499992, 49.270723398000065 ], [ -122.880464127999943, 49.271065951000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153041144", "BldgCostT": "102976523", "sL_LossRatio": "0.763936898621543", "sL_AssetLoss": "1657650", "sL_BldgLoss": "1266340", "sL_StrLoss": "553650", "sL_NStrLoss": "712690", "sL_ContLoss": "391310", "geom_point": "0101000020E6100000C2E2AA9161B85EC03ED45BA821A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880164818999987, 49.268643195000038 ], [ -122.880248989999984, 49.268228497000102 ], [ -122.876921309999943, 49.268202491000089 ], [ -122.875705164999985, 49.268202999000025 ], [ -122.875691380999967, 49.268203008000086 ], [ -122.875680701999897, 49.267608111000058 ], [ -122.875746281999952, 49.267490205000065 ], [ -122.876002786999976, 49.267394888000069 ], [ -122.876354713999916, 49.267372707000085 ], [ -122.880253483999965, 49.267426908000068 ], [ -122.880187182, 49.266634896000035 ], [ -122.880132690999957, 49.265852297000045 ], [ -122.880110300999959, 49.265428182000029 ], [ -122.88007958599999, 49.264761600000071 ], [ -122.880666484999907, 49.264779494000067 ], [ -122.881361901999966, 49.264531102000099 ], [ -122.881423897000019, 49.264529554000084 ], [ -122.883605287999913, 49.264475200000099 ], [ -122.883675781999941, 49.265492502000036 ], [ -122.88485229299999, 49.265649892000127 ], [ -122.883742701999921, 49.266520598000078 ], [ -122.881563511999957, 49.26827730600013 ], [ -122.880533612, 49.269084506000119 ], [ -122.880217583999979, 49.268838401000011 ], [ -122.880164818999987, 49.268643195000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262187666", "BldgCostT": "175046666", "sL_LossRatio": "0.758314039044443", "sL_AssetLoss": "4001184", "sL_BldgLoss": "3034154", "sL_StrLoss": "1398614", "sL_NStrLoss": "1635540", "sL_ContLoss": "967030", "geom_point": "0101000020E61000009DD0F27663B85EC0FFC7F075A5A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.878605518999905, 49.264778393000057 ], [ -122.878594515999964, 49.264574496000094 ], [ -122.878581938999943, 49.264415097000089 ], [ -122.878581210999954, 49.264405686000011 ], [ -122.877059990999939, 49.264408491000076 ], [ -122.87705250899991, 49.263947896000097 ], [ -122.877049540999934, 49.263807813000092 ], [ -122.877045294999974, 49.263605385000062 ], [ -122.880043879999945, 49.263617394000043 ], [ -122.879954377999979, 49.262027499000055 ], [ -122.87991437899997, 49.261192090000108 ], [ -122.879834917999986, 49.260127708000013 ], [ -122.881483587999981, 49.260167193000058 ], [ -122.881954219999969, 49.260176308000055 ], [ -122.882871012999942, 49.260190184000095 ], [ -122.88333822099996, 49.260189303000061 ], [ -122.88345830499992, 49.26212330700011 ], [ -122.883497816999977, 49.26276230600017 ], [ -122.883516383999947, 49.263446594000108 ], [ -122.883587279999986, 49.26423239000011 ], [ -122.883605287999913, 49.264475200000099 ], [ -122.881423897000019, 49.264529554000084 ], [ -122.881361901999966, 49.264531102000099 ], [ -122.880666484999907, 49.264779494000067 ], [ -122.88007958599999, 49.264761600000071 ], [ -122.880110300999959, 49.265428182000029 ], [ -122.880132690999957, 49.265852297000045 ], [ -122.87870100799995, 49.265851400000052 ], [ -122.878636626999935, 49.265072099000101 ], [ -122.878617718999948, 49.264884188000082 ], [ -122.878605518999905, 49.264778393000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94735728", "BldgCostT": "62329857", "sL_LossRatio": "0.701215287031608", "sL_AssetLoss": "1876100", "sL_BldgLoss": "1315550", "sL_StrLoss": "523650", "sL_NStrLoss": "791900", "sL_ContLoss": "560550", "geom_point": "0101000020E61000002C0B57EE22B85EC02107FC4C83A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.877256257999989, 49.259987603000106 ], [ -122.878503591999973, 49.260005393000057 ], [ -122.879834917999986, 49.260127708000013 ], [ -122.87991437899997, 49.261192090000108 ], [ -122.879954377999979, 49.262027499000055 ], [ -122.880043879999945, 49.263617394000043 ], [ -122.877045294999974, 49.263605385000062 ], [ -122.87636704899991, 49.263602058000082 ], [ -122.875207480999933, 49.263596305000085 ], [ -122.87499278599995, 49.263594919000077 ], [ -122.874539096999968, 49.263592016000089 ], [ -122.874287391999971, 49.263590402000048 ], [ -122.874311959999915, 49.263094451 ], [ -122.874333301999954, 49.262663801000059 ], [ -122.874337954999959, 49.262221884000084 ], [ -122.87434272199999, 49.261770501000065 ], [ -122.874371918999927, 49.260867693000058 ], [ -122.874382057999924, 49.260404608000023 ], [ -122.87439178399994, 49.25996111000007 ], [ -122.877093889999983, 49.259985300000103 ], [ -122.877256257999989, 49.259987603000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95147667", "BldgCostT": "63671667", "sL_LossRatio": "0.737135668663773", "sL_AssetLoss": "1399859", "sL_BldgLoss": "1031886", "sL_StrLoss": "460756", "sL_NStrLoss": "571130", "sL_ContLoss": "367973", "geom_point": "0101000020E610000020643822C8B75EC036C0DC5981A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870224099999987, 49.259930396000087 ], [ -122.87439178399994, 49.25996111000007 ], [ -122.874382057999924, 49.260404608000023 ], [ -122.874371918999927, 49.260867693000058 ], [ -122.87434272199999, 49.261770501000065 ], [ -122.874337954999959, 49.262221884000084 ], [ -122.874333301999954, 49.262663801000059 ], [ -122.874311959999915, 49.263094451 ], [ -122.874287391999971, 49.263590402000048 ], [ -122.870109199999959, 49.263568411000065 ], [ -122.868767202999919, 49.263562799000098 ], [ -122.86878959499991, 49.263079618000091 ], [ -122.868812180999953, 49.26259119000013 ], [ -122.86882729199999, 49.262126312000127 ], [ -122.868841517999954, 49.261688404000054 ], [ -122.868894988999955, 49.25991980100013 ], [ -122.869545875999947, 49.259924997000077 ], [ -122.870224099999987, 49.259930396000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194596250", "BldgCostT": "128345000", "sL_LossRatio": "0.7089979301108", "sL_AssetLoss": "3777980", "sL_BldgLoss": "2678580", "sL_StrLoss": "1143520", "sL_NStrLoss": "1535060", "sL_ContLoss": "1099400", "geom_point": "0101000020E6100000C22DABF2F5B75EC00E17A00A0BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868894988999955, 49.25991980100013 ], [ -122.868902697999928, 49.258991199000029 ], [ -122.868914497999981, 49.258104111000073 ], [ -122.868959607999969, 49.2562757970001 ], [ -122.870252187999967, 49.256297104000097 ], [ -122.878539113999977, 49.256353403000013 ], [ -122.879834584999983, 49.256353003000072 ], [ -122.879831900999974, 49.256637589000029 ], [ -122.879813317999918, 49.258241502000011 ], [ -122.879834917999986, 49.260127708000013 ], [ -122.878503591999973, 49.260005393000057 ], [ -122.877256257999989, 49.259987603000106 ], [ -122.877093889999983, 49.259985300000103 ], [ -122.87439178399994, 49.25996111000007 ], [ -122.870224099999987, 49.259930396000087 ], [ -122.869545875999947, 49.259924997000077 ], [ -122.868894988999955, 49.25991980100013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162295834", "BldgCostT": "109743334", "sL_LossRatio": "0.781296065231269", "sL_AssetLoss": "1378480", "sL_BldgLoss": "1077001", "sL_StrLoss": "503801", "sL_NStrLoss": "573200", "sL_ContLoss": "301479", "geom_point": "0101000020E61000003F2752D478B75EC0D4E132B877A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868720305999958, 49.258131786000128 ], [ -122.868914497999981, 49.258104111000073 ], [ -122.868902697999928, 49.258991199000029 ], [ -122.868894988999955, 49.25991980100013 ], [ -122.868841517999954, 49.261688404000054 ], [ -122.86882729199999, 49.262126312000127 ], [ -122.868812180999953, 49.26259119000013 ], [ -122.86878959499991, 49.263079618000091 ], [ -122.868767202999919, 49.263562799000098 ], [ -122.867529467999987, 49.263558894000013 ], [ -122.865947008999953, 49.263553907000109 ], [ -122.865921010999955, 49.26434591000006 ], [ -122.864548611999979, 49.264321292000012 ], [ -122.863171101999967, 49.264312805000046 ], [ -122.863190595999981, 49.263535883000031 ], [ -122.863204735999958, 49.263045782000056 ], [ -122.863219187, 49.262543987000072 ], [ -122.86598038399994, 49.26255130600002 ], [ -122.865991453999925, 49.262122476000059 ], [ -122.866003192999983, 49.26166460200006 ], [ -122.866042802999971, 49.259899105000045 ], [ -122.866097010999908, 49.258121396000021 ], [ -122.867436479999952, 49.258119800000031 ], [ -122.86819034399997, 49.25812684400006 ], [ -122.868720305999958, 49.258131786000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152575833", "BldgCostT": "102543333", "sL_LossRatio": "0.754646807312556", "sL_AssetLoss": "1811405", "sL_BldgLoss": "1366971", "sL_StrLoss": "643911", "sL_NStrLoss": "723060", "sL_ContLoss": "444434", "geom_point": "0101000020E61000007BBE97A966B75EC04F31C524F5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867624917999976, 49.253906405000045 ], [ -122.869001206999954, 49.253928405000067 ], [ -122.868981071999954, 49.255064949 ], [ -122.868959607999969, 49.2562757970001 ], [ -122.868914497999981, 49.258104111000073 ], [ -122.868720305999958, 49.258131786000128 ], [ -122.86819034399997, 49.25812684400006 ], [ -122.867436479999952, 49.258119800000031 ], [ -122.866097010999908, 49.258121396000021 ], [ -122.866042802999971, 49.259899105000045 ], [ -122.866003192999983, 49.26166460200006 ], [ -122.865991453999925, 49.262122476000059 ], [ -122.86598038399994, 49.26255130600002 ], [ -122.863219187, 49.262543987000072 ], [ -122.863226108999953, 49.26169020200004 ], [ -122.863249713999963, 49.26122909500004 ], [ -122.863273189999987, 49.260770800000117 ], [ -122.863280407000019, 49.260293521000037 ], [ -122.86328780799991, 49.259802794000024 ], [ -122.863294924999963, 49.25938498100011 ], [ -122.86330259899999, 49.25893391700005 ], [ -122.8633305099999, 49.257992387000073 ], [ -122.863338398999986, 49.257540987000063 ], [ -122.863346809999939, 49.257061293000042 ], [ -122.863349225999968, 49.256623345000044 ], [ -122.863351496999925, 49.256219211000051 ], [ -122.863354901999941, 49.255051705000064 ], [ -122.863340489999956, 49.253882788000048 ], [ -122.86545296499996, 49.253901052000039 ], [ -122.865633309999936, 49.253902601000064 ], [ -122.867624917999976, 49.253906405000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129178333", "BldgCostT": "81283333", "sL_LossRatio": "0.714557121966552", "sL_AssetLoss": "1428531", "sL_BldgLoss": "1020767", "sL_StrLoss": "474817", "sL_NStrLoss": "545950", "sL_ContLoss": "407764", "geom_point": "0101000020E6100000F30DE08809B75EC0736D983656A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857631107999964, 49.262588590000078 ], [ -122.857680703999932, 49.261896408000062 ], [ -122.857496112999982, 49.261640492 ], [ -122.856866997999958, 49.260745703000097 ], [ -122.85636491299999, 49.260044611000097 ], [ -122.856275299999965, 49.259825696000071 ], [ -122.856596805999956, 49.258853101000042 ], [ -122.856551679999939, 49.258440976000131 ], [ -122.856509220999925, 49.258053567000061 ], [ -122.856403295999939, 49.257086306000062 ], [ -122.857441592999962, 49.256412045000054 ], [ -122.85764078099993, 49.256282695000074 ], [ -122.857836, 49.256155914000075 ], [ -122.857837497999967, 49.25661672500005 ], [ -122.857838794999935, 49.257027199000035 ], [ -122.857830394999937, 49.257962990000067 ], [ -122.857869297999969, 49.257963206000028 ], [ -122.8633305099999, 49.257992387000073 ], [ -122.86330259899999, 49.25893391700005 ], [ -122.863294924999963, 49.25938498100011 ], [ -122.86328780799991, 49.259802794000024 ], [ -122.863280407000019, 49.260293521000037 ], [ -122.863273189999987, 49.260770800000117 ], [ -122.863249713999963, 49.26122909500004 ], [ -122.863226108999953, 49.26169020200004 ], [ -122.863219187, 49.262543987000072 ], [ -122.863204735999958, 49.263045782000056 ], [ -122.863190595999981, 49.263535883000031 ], [ -122.86038080699997, 49.263515510000033 ], [ -122.858981399999891, 49.263506302000025 ], [ -122.857566805999951, 49.263496606000096 ], [ -122.857599260999919, 49.2630383300001 ], [ -122.857631107999964, 49.262588590000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124233918", "BldgCostT": "81496668", "sL_LossRatio": "0.737157789805079", "sL_AssetLoss": "1420472", "sL_BldgLoss": "1047112", "sL_StrLoss": "488252", "sL_NStrLoss": "558860", "sL_ContLoss": "373360", "geom_point": "0101000020E61000005C26A2E313B75EC0A18578E2C1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857862998999948, 49.25382969900005 ], [ -122.863340489999956, 49.253882788000048 ], [ -122.863354901999941, 49.255051705000064 ], [ -122.863351496999925, 49.256219211000051 ], [ -122.863349225999968, 49.256623345000044 ], [ -122.863346809999939, 49.257061293000042 ], [ -122.863338398999986, 49.257540987000063 ], [ -122.8633305099999, 49.257992387000073 ], [ -122.857869297999969, 49.257963206000028 ], [ -122.857830394999937, 49.257962990000067 ], [ -122.857838794999935, 49.257027199000035 ], [ -122.857837497999967, 49.25661672500005 ], [ -122.857836, 49.256155914000075 ], [ -122.857820800999974, 49.255061790000084 ], [ -122.857862998999948, 49.25382969900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62565917", "BldgCostT": "40411667", "sL_LossRatio": "0.72430113907726", "sL_AssetLoss": "768429", "sL_BldgLoss": "556574", "sL_StrLoss": "270984", "sL_NStrLoss": "285590", "sL_ContLoss": "211855", "geom_point": "0101000020E61000006F0B5C3FB9B65EC0A65F43ECA3A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.855435180999933, 49.253847732000033 ], [ -122.857862998999948, 49.25382969900005 ], [ -122.857820800999974, 49.255061790000084 ], [ -122.857836, 49.256155914000075 ], [ -122.857641225999913, 49.256155597000038 ], [ -122.857365832999974, 49.256155155000108 ], [ -122.855584284999949, 49.256152351000075 ], [ -122.855260680999933, 49.25615183200005 ], [ -122.854985656999986, 49.256151401000089 ], [ -122.854864909999961, 49.256151191000143 ], [ -122.852211008, 49.256146892000061 ], [ -122.852236209999944, 49.255593851000135 ], [ -122.852258989999925, 49.255094294000095 ], [ -122.852278005999949, 49.254541245000077 ], [ -122.852301201999964, 49.253865806000086 ], [ -122.854413311999977, 49.253855304000069 ], [ -122.855435180999933, 49.253847732000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230874749", "BldgCostT": "154754999", "sL_LossRatio": "0.743339894262239", "sL_AssetLoss": "1747720", "sL_BldgLoss": "1299150", "sL_StrLoss": "550710", "sL_NStrLoss": "748440", "sL_ContLoss": "448570", "geom_point": "0101000020E610000010C99063EBB65EC0A65515964FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857937993999954, 49.251423792000026 ], [ -122.857959901999948, 49.250492910000091 ], [ -122.862166311999928, 49.250527089000116 ], [ -122.862165799999957, 49.251447816000038 ], [ -122.863346490999902, 49.251456900000051 ], [ -122.863345423999931, 49.251891840000035 ], [ -122.863340489999956, 49.253882788000048 ], [ -122.857862998999948, 49.25382969900005 ], [ -122.855435180999933, 49.253847732000033 ], [ -122.854413311999977, 49.253855304000069 ], [ -122.852301201999964, 49.253865806000086 ], [ -122.852342401, 49.252650800000048 ], [ -122.85237300199995, 49.251430014000142 ], [ -122.855224304, 49.251414982000092 ], [ -122.855793017999972, 49.251406408000015 ], [ -122.856048581999943, 49.251413810000074 ], [ -122.856730303999925, 49.251407592000106 ], [ -122.857937993999954, 49.251423792000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "427878719", "BldgCostT": "289760412", "sL_LossRatio": "0.827971947131132", "sL_AssetLoss": "2595100", "sL_BldgLoss": "2148670", "sL_StrLoss": "968930", "sL_NStrLoss": "1179740", "sL_ContLoss": "446430", "geom_point": "0101000020E610000061F4607BBBB65EC07CD8559206A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852462798999966, 49.248992102000081 ], [ -122.855380757999939, 49.24897950100015 ], [ -122.855792978999915, 49.248977699000136 ], [ -122.857895122999977, 49.248968570000088 ], [ -122.85797657199997, 49.248968198000028 ], [ -122.857982886999963, 49.249625100000117 ], [ -122.857959901999948, 49.250492910000091 ], [ -122.857937993999954, 49.251423792000026 ], [ -122.856730303999925, 49.251407592000106 ], [ -122.856048581999943, 49.251413810000074 ], [ -122.855793017999972, 49.251406408000015 ], [ -122.855224304, 49.251414982000092 ], [ -122.85237300199995, 49.251430014000142 ], [ -122.852393373, 49.250871293000046 ], [ -122.852419103999949, 49.250163787000076 ], [ -122.852462798999966, 49.248992102000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392254772", "BldgCostT": "266294158", "sL_LossRatio": "0.795898185966074", "sL_AssetLoss": "2174160", "sL_BldgLoss": "1730410", "sL_StrLoss": "750590", "sL_NStrLoss": "979820", "sL_ContLoss": "443750", "geom_point": "0101000020E610000004AFA7670BB75EC0852999B5F79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85797657199997, 49.248968198000028 ], [ -122.862166710999972, 49.248997402000086 ], [ -122.86216353599994, 49.249673860000037 ], [ -122.862166311999928, 49.250527089000116 ], [ -122.857959901999948, 49.250492910000091 ], [ -122.857982886999963, 49.249625100000117 ], [ -122.85797657199997, 49.248968198000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212016583", "BldgCostT": "131098333", "sL_LossRatio": "0.695712430223762", "sL_AssetLoss": "2596156", "sL_BldgLoss": "1806178", "sL_StrLoss": "830728", "sL_NStrLoss": "975450", "sL_ContLoss": "789978", "geom_point": "0101000020E61000003D704195DEB65EC092FFB0429D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.860963488999957, 49.244956108000089 ], [ -122.86222170799999, 49.24495390400007 ], [ -122.86220601699992, 49.245329207000076 ], [ -122.862199211999936, 49.246241594000026 ], [ -122.862195082999946, 49.246673304000055 ], [ -122.862190803999979, 49.24711790100018 ], [ -122.862182847999989, 49.247563833000051 ], [ -122.862174594999914, 49.248027301000079 ], [ -122.862166710999972, 49.248997402000086 ], [ -122.85797657199997, 49.248968198000028 ], [ -122.857895122999977, 49.248968570000088 ], [ -122.855792978999915, 49.248977699000136 ], [ -122.855380757999939, 49.24897950100015 ], [ -122.852462798999966, 49.248992102000081 ], [ -122.852441313999975, 49.248216700000029 ], [ -122.852444188, 49.24801139200013 ], [ -122.852427494999972, 49.247245098000057 ], [ -122.852430422999959, 49.246706140000121 ], [ -122.852433099999985, 49.246211095000078 ], [ -122.852433688999895, 49.245635411000137 ], [ -122.852429197999967, 49.245054217000096 ], [ -122.853441325999967, 49.245041210000089 ], [ -122.854196980999944, 49.24503153700006 ], [ -122.854425109999951, 49.245028597000065 ], [ -122.854746352999925, 49.245024935000117 ], [ -122.857286897000023, 49.244995806000105 ], [ -122.860963488999957, 49.244956108000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71661137", "BldgCostT": "41767080", "sL_LossRatio": "0.660381948668045", "sL_AssetLoss": "904310", "sL_BldgLoss": "597190", "sL_StrLoss": "275350", "sL_NStrLoss": "321840", "sL_ContLoss": "307120", "geom_point": "0101000020E61000008BC192C4B5B65EC07336BAD6209F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852512818999955, 49.241775485000055 ], [ -122.852496700999936, 49.241466015000057 ], [ -122.85242648099991, 49.241286500000065 ], [ -122.852531833999961, 49.241286857000098 ], [ -122.852701390999954, 49.241287410000055 ], [ -122.85482928499999, 49.241294396000043 ], [ -122.856566217999898, 49.241299984000072 ], [ -122.856565202999917, 49.241679310000038 ], [ -122.857318898999907, 49.24168319300005 ], [ -122.857312725999947, 49.242809201 ], [ -122.857306519999923, 49.243222257000085 ], [ -122.857304611999965, 49.243348257000065 ], [ -122.857299398999942, 49.243696190000037 ], [ -122.857292, 49.243906798000111 ], [ -122.857283992999925, 49.244491302000036 ], [ -122.857286897000023, 49.244995806000105 ], [ -122.854746352999925, 49.245024935000117 ], [ -122.854425109999951, 49.245028597000065 ], [ -122.854196980999944, 49.24503153700006 ], [ -122.853441325999967, 49.245041210000089 ], [ -122.852429197999967, 49.245054217000096 ], [ -122.852455206999963, 49.242965907000098 ], [ -122.852460557999947, 49.242952527000035 ], [ -122.852519562999959, 49.242136540000033 ], [ -122.852540495999932, 49.241847596000078 ], [ -122.852512818999955, 49.241775485000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289150083", "BldgCostT": "197958333", "sL_LossRatio": "0.804259428966531", "sL_AssetLoss": "1822310", "sL_BldgLoss": "1465610", "sL_StrLoss": "693720", "sL_NStrLoss": "771890", "sL_ContLoss": "356700", "geom_point": "0101000020E610000080F298FD51B75EC02D09BBEE4E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.862224576999921, 49.243530602000142 ], [ -122.862244988999976, 49.242760904000072 ], [ -122.862318586999933, 49.242790109000033 ], [ -122.864397488999955, 49.242811380000049 ], [ -122.865092307999973, 49.242818496000076 ], [ -122.865087908999968, 49.242618400000019 ], [ -122.867049811999905, 49.242648399000089 ], [ -122.86760359099999, 49.242685206000061 ], [ -122.867613208999913, 49.24355930200003 ], [ -122.867615724999936, 49.243980863000047 ], [ -122.867618600999947, 49.244455910000084 ], [ -122.865125914999908, 49.244435711000044 ], [ -122.86512709599999, 49.244868615000087 ], [ -122.865128399999904, 49.245334012000093 ], [ -122.865131902999963, 49.246237695000083 ], [ -122.865132487999944, 49.246685678000098 ], [ -122.865133104000023, 49.247134087000092 ], [ -122.862190803999979, 49.24711790100018 ], [ -122.862195082999946, 49.246673304000055 ], [ -122.862199211999936, 49.246241594000026 ], [ -122.86220601699992, 49.245329207000076 ], [ -122.86222170799999, 49.24495390400007 ], [ -122.862223872999948, 49.244847570000033 ], [ -122.86223251399997, 49.244429895000138 ], [ -122.862228342999941, 49.243956630000099 ], [ -122.862224576999921, 49.243530602000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113185833", "BldgCostT": "74223333", "sL_LossRatio": "0.726296759526954", "sL_AssetLoss": "1516723", "sL_BldgLoss": "1101591", "sL_StrLoss": "504961", "sL_NStrLoss": "596630", "sL_ContLoss": "415132", "geom_point": "0101000020E6100000DCFFAD22ABB75EC0F48756BC4B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867594380999904, 49.24623890000003 ], [ -122.867586284999931, 49.245342294000039 ], [ -122.865128399999904, 49.245334012000093 ], [ -122.86512709599999, 49.244868615000087 ], [ -122.865125914999908, 49.244435711000044 ], [ -122.867618600999947, 49.244455910000084 ], [ -122.867615724999936, 49.243980863000047 ], [ -122.867613208999913, 49.24355930200003 ], [ -122.86760359099999, 49.242685206000061 ], [ -122.87217404799992, 49.242666932000049 ], [ -122.872707001999942, 49.242664808000036 ], [ -122.872922205999942, 49.242630507000129 ], [ -122.872876400999971, 49.243615704000042 ], [ -122.872875869999959, 49.244013893000066 ], [ -122.872875597999965, 49.244198511000029 ], [ -122.87286778099994, 49.24449739300011 ], [ -122.872863008999985, 49.244681506000084 ], [ -122.872861418999918, 49.244742567000031 ], [ -122.87285720700001, 49.244904426000119 ], [ -122.872845388999949, 49.245358895000088 ], [ -122.872822711999945, 49.245635693000139 ], [ -122.87276612, 49.245804235000058 ], [ -122.872763549999959, 49.245811822000128 ], [ -122.872745416999962, 49.245865905000102 ], [ -122.872605818999943, 49.246061889000046 ], [ -122.87258581, 49.246079893000086 ], [ -122.872370407999981, 49.246273896000062 ], [ -122.868097896999956, 49.246242609000021 ], [ -122.867594380999904, 49.24623890000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120986842", "BldgCostT": "73681793", "sL_LossRatio": "0.646741430951985", "sL_AssetLoss": "1866310", "sL_BldgLoss": "1207020", "sL_StrLoss": "528990", "sL_NStrLoss": "678030", "sL_ContLoss": "659290", "geom_point": "0101000020E6100000DF0C06F079B75EC043190ED7AC9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.865131902999963, 49.246237695000083 ], [ -122.865128399999904, 49.245334012000093 ], [ -122.867586284999931, 49.245342294000039 ], [ -122.867594380999904, 49.24623890000003 ], [ -122.868097896999956, 49.246242609000021 ], [ -122.872370407999981, 49.246273896000062 ], [ -122.871837631999981, 49.246718360000031 ], [ -122.871300718999947, 49.247166291000049 ], [ -122.870776960999976, 49.247602374000095 ], [ -122.870347187999954, 49.247960229000057 ], [ -122.870137984999971, 49.248134404000098 ], [ -122.869689407999914, 49.2485118170001 ], [ -122.869401115999935, 49.248754412000075 ], [ -122.869182597999938, 49.249001315000065 ], [ -122.867637596999941, 49.248996909000013 ], [ -122.86560839399999, 49.248983007000049 ], [ -122.865150085999957, 49.248984921 ], [ -122.862166710999972, 49.248997402000086 ], [ -122.862174594999914, 49.248027301000079 ], [ -122.862182847999989, 49.247563833000051 ], [ -122.862190803999979, 49.24711790100018 ], [ -122.865133104000023, 49.247134087000092 ], [ -122.865132487999944, 49.246685678000098 ], [ -122.865131902999963, 49.246237695000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253402351", "BldgCostT": "170384902", "sL_LossRatio": "0.775343798726802", "sL_AssetLoss": "1705940", "sL_BldgLoss": "1322690", "sL_StrLoss": "599850", "sL_NStrLoss": "722840", "sL_ContLoss": "383250", "geom_point": "0101000020E6100000FFEF46EE82B75EC075E23811F99F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867637596999941, 49.248996909000013 ], [ -122.869182597999938, 49.249001315000065 ], [ -122.869118102999934, 49.24934620000014 ], [ -122.869106499999987, 49.249721597000118 ], [ -122.869092213999949, 49.250605798000045 ], [ -122.865617900999979, 49.250571610000073 ], [ -122.865613478999961, 49.24972192500006 ], [ -122.86560839399999, 49.248983007000049 ], [ -122.867637596999941, 49.248996909000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "489676706", "BldgCostT": "331197039", "sL_LossRatio": "0.807057156239866", "sL_AssetLoss": "3330520", "sL_BldgLoss": "2687920", "sL_StrLoss": "1128920", "sL_NStrLoss": "1559000", "sL_ContLoss": "642600", "geom_point": "0101000020E61000006C2C280C4AB75EC0A200D56807A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.865150085999957, 49.248984921 ], [ -122.86560839399999, 49.248983007000049 ], [ -122.865613478999961, 49.24972192500006 ], [ -122.865617900999979, 49.250571610000073 ], [ -122.865608898999966, 49.251476712000105 ], [ -122.86466214499994, 49.251468421000041 ], [ -122.863346490999902, 49.251456900000051 ], [ -122.862165799999957, 49.251447816000038 ], [ -122.862166311999928, 49.250527089000116 ], [ -122.86216353599994, 49.249673860000037 ], [ -122.862166710999972, 49.248997402000086 ], [ -122.865150085999957, 49.248984921 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171052638", "BldgCostT": "104318037", "sL_LossRatio": "0.687482497899748", "sL_AssetLoss": "1535530", "sL_BldgLoss": "1055650", "sL_StrLoss": "417850", "sL_NStrLoss": "637800", "sL_ContLoss": "479880", "geom_point": "0101000020E610000003FA1B1F73B75EC034C2A2224EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.865617900999979, 49.250571610000073 ], [ -122.869092213999949, 49.250605798000045 ], [ -122.869085586999958, 49.250845298000065 ], [ -122.869076615, 49.251251072000052 ], [ -122.869070775999958, 49.251513291 ], [ -122.869023186, 49.253093885000091 ], [ -122.869001206999954, 49.253928405000067 ], [ -122.867624917999976, 49.253906405000045 ], [ -122.865633309999936, 49.253902601000064 ], [ -122.86545296499996, 49.253901052000039 ], [ -122.863340489999956, 49.253882788000048 ], [ -122.863345423999931, 49.251891840000035 ], [ -122.863346490999902, 49.251456900000051 ], [ -122.86466214499994, 49.251468421000041 ], [ -122.865608898999966, 49.251476712000105 ], [ -122.865617900999979, 49.250571610000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64948333", "BldgCostT": "43108333", "sL_LossRatio": "0.730412295885383", "sL_AssetLoss": "959020", "sL_BldgLoss": "700480", "sL_StrLoss": "315980", "sL_NStrLoss": "384500", "sL_ContLoss": "258540", "geom_point": "0101000020E610000071D623E42EB85EC041C4B40C44A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.869023186, 49.253093885000091 ], [ -122.869070775999958, 49.251513291 ], [ -122.869076615, 49.251251072000052 ], [ -122.869085586999958, 49.250845298000065 ], [ -122.869092213999949, 49.250605798000045 ], [ -122.869106499999987, 49.249721597000118 ], [ -122.869118102999934, 49.24934620000014 ], [ -122.869182597999938, 49.249001315000065 ], [ -122.87066180799998, 49.249002684000025 ], [ -122.872028822999937, 49.248997301 ], [ -122.87283119199995, 49.249001329000059 ], [ -122.873042479999953, 49.249002394000058 ], [ -122.877150378999929, 49.249023206000039 ], [ -122.88542531899995, 49.249055303000056 ], [ -122.886090568999933, 49.249058020000085 ], [ -122.886956202999912, 49.249061534000084 ], [ -122.887272228999947, 49.249062817000016 ], [ -122.887526743999956, 49.249063858000042 ], [ -122.887547043999959, 49.24906394000007 ], [ -122.887560768999947, 49.249063978000052 ], [ -122.88780171499991, 49.249064957 ], [ -122.888598792999986, 49.249068190000038 ], [ -122.889639525999968, 49.249072384000065 ], [ -122.889637, 49.249417274000038 ], [ -122.889737203, 49.249521066000071 ], [ -122.889936314999915, 49.249582677000042 ], [ -122.891186024999925, 49.249592037000077 ], [ -122.891916017, 49.249597500000014 ], [ -122.89191595799997, 49.249628318000077 ], [ -122.891914598999975, 49.251053196000015 ], [ -122.891747985000023, 49.251054966000076 ], [ -122.891547611999968, 49.251057106000083 ], [ -122.89139862, 49.251169892000036 ], [ -122.891278593999971, 49.251320505000088 ], [ -122.889983493999964, 49.251318305000083 ], [ -122.887310320999958, 49.2512996990001 ], [ -122.887163280999957, 49.251688303000023 ], [ -122.887171199999969, 49.251981299000079 ], [ -122.887160855999966, 49.252628549000079 ], [ -122.887158321999934, 49.25278720000005 ], [ -122.886839706999965, 49.252786108000109 ], [ -122.885841504999959, 49.25312759800002 ], [ -122.882729118, 49.253080905000047 ], [ -122.882719881999975, 49.252768901000159 ], [ -122.88208322, 49.25276957600007 ], [ -122.87983230199994, 49.252771894000041 ], [ -122.879838399999954, 49.253701792000051 ], [ -122.879855624999934, 49.254651903000109 ], [ -122.879854253999966, 49.255319378000095 ], [ -122.879853709999978, 49.255598591000108 ], [ -122.879834584999983, 49.256353003000072 ], [ -122.878539113999977, 49.256353403000013 ], [ -122.870252187999967, 49.256297104000097 ], [ -122.868959607999969, 49.2562757970001 ], [ -122.868981071999954, 49.255064949 ], [ -122.869001206999954, 49.253928405000067 ], [ -122.869023186, 49.253093885000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85175417", "BldgCostT": "55771667", "sL_LossRatio": "0.735912949018487", "sL_AssetLoss": "973039", "sL_BldgLoss": "716072", "sL_StrLoss": "342392", "sL_NStrLoss": "373680", "sL_ContLoss": "256967", "geom_point": "0101000020E61000008C72927BF4B75EC01F2B0850999F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876582012999933, 49.244224797000086 ], [ -122.877654874999962, 49.244241498000072 ], [ -122.877660606999882, 49.24465784700007 ], [ -122.877662339999986, 49.244783768000019 ], [ -122.877670490999904, 49.245377114000043 ], [ -122.87705011599995, 49.245371706000036 ], [ -122.877075255999941, 49.246287788000082 ], [ -122.877127397999956, 49.248186639000053 ], [ -122.877150378999929, 49.249023206000039 ], [ -122.873042479999953, 49.249002394000058 ], [ -122.87283119199995, 49.249001329000059 ], [ -122.872028822999937, 49.248997301 ], [ -122.87066180799998, 49.249002684000025 ], [ -122.869182597999938, 49.249001315000065 ], [ -122.869401115999935, 49.248754412000075 ], [ -122.869689407999914, 49.2485118170001 ], [ -122.870137984999971, 49.248134404000098 ], [ -122.870347187999954, 49.247960229000057 ], [ -122.870776960999976, 49.247602374000095 ], [ -122.871300718999947, 49.247166291000049 ], [ -122.871837631999981, 49.246718360000031 ], [ -122.872370407999981, 49.246273896000062 ], [ -122.87258581, 49.246079893000086 ], [ -122.872605818999943, 49.246061889000046 ], [ -122.872745416999962, 49.245865905000102 ], [ -122.872763549999959, 49.245811822000128 ], [ -122.87276612, 49.245804235000058 ], [ -122.872822711999945, 49.245635693000139 ], [ -122.872845388999949, 49.245358895000088 ], [ -122.87285720700001, 49.244904426000119 ], [ -122.872861418999918, 49.244742567000031 ], [ -122.872863008999985, 49.244681506000084 ], [ -122.87286778099994, 49.24449739300011 ], [ -122.872875597999965, 49.244198511000029 ], [ -122.876582012999933, 49.244224797000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128755334", "BldgCostT": "86323334", "sL_LossRatio": "0.748577734776562", "sL_AssetLoss": "1653700", "sL_BldgLoss": "1237923", "sL_StrLoss": "589213", "sL_NStrLoss": "648710", "sL_ContLoss": "415777", "geom_point": "0101000020E6100000D10DE23D66B85EC0CF4A39E3A49F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885158494, 49.245438605000068 ], [ -122.885361621999905, 49.245440898000012 ], [ -122.885376498999975, 49.246302593000017 ], [ -122.885392795999948, 49.247226410000096 ], [ -122.885410294999971, 49.248132288000129 ], [ -122.88542531899995, 49.249055303000056 ], [ -122.877150378999929, 49.249023206000039 ], [ -122.877127397999956, 49.248186639000053 ], [ -122.877075255999941, 49.246287788000082 ], [ -122.87705011599995, 49.245371706000036 ], [ -122.877670490999904, 49.245377114000043 ], [ -122.879832803999989, 49.245390103000027 ], [ -122.881885196999932, 49.245403515000106 ], [ -122.883319376999935, 49.245418796000109 ], [ -122.885158494, 49.245438605000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141109333", "BldgCostT": "86113333", "sL_LossRatio": "0.688775784127393", "sL_AssetLoss": "1862580", "sL_BldgLoss": "1282900", "sL_StrLoss": "576590", "sL_NStrLoss": "706310", "sL_ContLoss": "579680", "geom_point": "0101000020E61000009FBF2A9371B85EC0320E9A023E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.877665584999974, 49.243918402000091 ], [ -122.877707621999946, 49.24258089500011 ], [ -122.879586612999958, 49.242576707000133 ], [ -122.88096745199999, 49.242584575000102 ], [ -122.883348078999916, 49.242598096000059 ], [ -122.885172893999965, 49.242624662000068 ], [ -122.885170555999963, 49.24302826400006 ], [ -122.885164607999968, 49.244037888000065 ], [ -122.887023683999956, 49.244064593000068 ], [ -122.887002206999952, 49.245449508000085 ], [ -122.885361621999905, 49.245440898000012 ], [ -122.885158494, 49.245438605000068 ], [ -122.883319376999935, 49.245418796000109 ], [ -122.881885196999932, 49.245403515000106 ], [ -122.879832803999989, 49.245390103000027 ], [ -122.877670490999904, 49.245377114000043 ], [ -122.877662339999986, 49.244783768000019 ], [ -122.877660606999882, 49.24465784700007 ], [ -122.877654874999962, 49.244241498000072 ], [ -122.877665584999974, 49.243918402000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "399728000", "BldgCostT": "273440000", "sL_LossRatio": "0.852226981121671", "sL_AssetLoss": "2720050", "sL_BldgLoss": "2318100", "sL_StrLoss": "1065020", "sL_NStrLoss": "1253080", "sL_ContLoss": "401950", "geom_point": "0101000020E61000009165B1E2CEB85EC0F6D01D48879F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885376498999975, 49.246302593000017 ], [ -122.885361621999905, 49.245440898000012 ], [ -122.887002206999952, 49.245449508000085 ], [ -122.889671399999926, 49.245466201000049 ], [ -122.889992292999935, 49.245468190000118 ], [ -122.890004402, 49.246312686000088 ], [ -122.889767009999957, 49.246617497000052 ], [ -122.889726798999959, 49.247216408000028 ], [ -122.88809729499998, 49.24718379900002 ], [ -122.885392795999948, 49.247226410000096 ], [ -122.885376498999975, 49.246302593000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "386921333", "BldgCostT": "265973333", "sL_LossRatio": "0.873321303964246", "sL_AssetLoss": "2754370", "sL_BldgLoss": "2405450", "sL_StrLoss": "1144240", "sL_NStrLoss": "1261210", "sL_ContLoss": "348920", "geom_point": "0101000020E6100000ABB6C45FCDB85EC0F0BC1AC1C29F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885410294999971, 49.248132288000129 ], [ -122.885392795999948, 49.247226410000096 ], [ -122.88809729499998, 49.24718379900002 ], [ -122.889726798999959, 49.247216408000028 ], [ -122.889631686999948, 49.24754969900011 ], [ -122.889640785999958, 49.248192296000106 ], [ -122.889639584999898, 49.249019123000096 ], [ -122.889639525999968, 49.249072384000065 ], [ -122.888598792999986, 49.249068190000038 ], [ -122.88780171499991, 49.249064957 ], [ -122.887560768999947, 49.249063978000052 ], [ -122.887547043999959, 49.24906394000007 ], [ -122.887526743999956, 49.249063858000042 ], [ -122.887272228999947, 49.249062817000016 ], [ -122.886956202999912, 49.249061534000084 ], [ -122.886090568999933, 49.249058020000085 ], [ -122.88542531899995, 49.249055303000056 ], [ -122.885410294999971, 49.248132288000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "466753698", "BldgCostT": "319465270", "sL_LossRatio": "0.838619728128268", "sL_AssetLoss": "4504330", "sL_BldgLoss": "3777420", "sL_StrLoss": "1745720", "sL_NStrLoss": "2031700", "sL_ContLoss": "726910", "geom_point": "0101000020E61000001D2EA33FD1B85EC02132D5613F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885164607999968, 49.244037888000065 ], [ -122.885170555999963, 49.24302826400006 ], [ -122.885172893999965, 49.242624662000068 ], [ -122.885231748999928, 49.242464187000031 ], [ -122.885358846999935, 49.242350746000085 ], [ -122.885402467999967, 49.24221235600006 ], [ -122.88538638599999, 49.242063264000087 ], [ -122.88523322099999, 49.241828203000054 ], [ -122.885674389999934, 49.242068878000055 ], [ -122.886176393999975, 49.242344634000034 ], [ -122.886287928999934, 49.242406089000049 ], [ -122.886520829999981, 49.242534375000098 ], [ -122.886604982999941, 49.24258074300014 ], [ -122.88971362199996, 49.244293123000034 ], [ -122.890931235, 49.244963759000058 ], [ -122.891047919999949, 49.245086853000089 ], [ -122.89155199899993, 49.245374493000071 ], [ -122.891791400999935, 49.245511087000089 ], [ -122.891171815999911, 49.245496322000065 ], [ -122.890875264000016, 49.245489261000053 ], [ -122.889992292999935, 49.245468190000118 ], [ -122.889671399999926, 49.245466201000049 ], [ -122.887002206999952, 49.245449508000085 ], [ -122.887023683999956, 49.244064593000068 ], [ -122.885164607999968, 49.244037888000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237013084", "BldgCostT": "142248334", "sL_LossRatio": "0.647550737092616", "sL_AssetLoss": "3933020", "sL_BldgLoss": "2546830", "sL_StrLoss": "1109230", "sL_NStrLoss": "1437600", "sL_ContLoss": "1386190", "geom_point": "0101000020E61000007979C600C1B85EC0BCD47B09999E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.88520789499999, 49.240712204000012 ], [ -122.885219308000018, 49.239785511000072 ], [ -122.883929395999971, 49.239770698 ], [ -122.882162303999976, 49.239766486000043 ], [ -122.8814238, 49.238738817000055 ], [ -122.881126029999947, 49.238333557000026 ], [ -122.881083322, 49.238275447000014 ], [ -122.880819923999965, 49.237916903000048 ], [ -122.880527768999968, 49.237491011000046 ], [ -122.880225880999916, 49.237051008000073 ], [ -122.879952154999941, 49.236703622000107 ], [ -122.879608397999917, 49.236267393000055 ], [ -122.87830490599994, 49.236661207000111 ], [ -122.877440033, 49.235410471000129 ], [ -122.877272480999935, 49.235168198000061 ], [ -122.877014604999886, 49.235070767000103 ], [ -122.877110272999943, 49.235039558000082 ], [ -122.877471660999959, 49.234921763000067 ], [ -122.877526025999941, 49.234903002000067 ], [ -122.877870125999905, 49.234784163000093 ], [ -122.877931396999912, 49.23476300500004 ], [ -122.877943592999941, 49.234758800000073 ], [ -122.87813093699998, 49.234693981000113 ], [ -122.878296893999945, 49.234636619000092 ], [ -122.878420610999981, 49.234593397000047 ], [ -122.87869488699998, 49.234496793000112 ], [ -122.879288994999968, 49.234298700000082 ], [ -122.880128210999914, 49.234009491000108 ], [ -122.880140594999915, 49.234005190000111 ], [ -122.880351417000014, 49.233931661000064 ], [ -122.880656405999929, 49.234218817000134 ], [ -122.880931798999953, 49.234478095000064 ], [ -122.881507013999908, 49.234767200000086 ], [ -122.883113856999927, 49.235027688000109 ], [ -122.885187984999945, 49.235363898000088 ], [ -122.88581830599999, 49.235724200000092 ], [ -122.886314080999966, 49.235905101000085 ], [ -122.886886062999963, 49.2359639740001 ], [ -122.88789160799999, 49.236067441000031 ], [ -122.88798839599994, 49.236077395000095 ], [ -122.889183198999945, 49.235926494000104 ], [ -122.889939810999977, 49.235953495000025 ], [ -122.890296829999926, 49.236133392000049 ], [ -122.890886912000013, 49.236430698000071 ], [ -122.890891571999987, 49.236437054000106 ], [ -122.891447492999987, 49.23719691200003 ], [ -122.891542041999912, 49.237284751000047 ], [ -122.892270692999944, 49.237961702000092 ], [ -122.892506752999964, 49.238033420000129 ], [ -122.892505970999935, 49.238052262000046 ], [ -122.892502052999987, 49.238147558000037 ], [ -122.892501569999979, 49.238160127000086 ], [ -122.8924986869999, 49.23822970800007 ], [ -122.892523960999981, 49.238671794000084 ], [ -122.892527560999909, 49.238734670000106 ], [ -122.89254108799993, 49.238971488000089 ], [ -122.892543079999925, 49.239076984000121 ], [ -122.892573362999954, 49.240687601000083 ], [ -122.892576414999922, 49.240849494000102 ], [ -122.892580943999945, 49.241092436000081 ], [ -122.892595692999933, 49.241875152000041 ], [ -122.89260128699999, 49.242174111000054 ], [ -122.892601914999958, 49.242288845000068 ], [ -122.892602301999929, 49.242365094000107 ], [ -122.892599269999948, 49.242614564000071 ], [ -122.892604566999964, 49.24280155600006 ], [ -122.892650352999979, 49.244416012000066 ], [ -122.892578383999975, 49.244526534000045 ], [ -122.892581163999949, 49.244649137000067 ], [ -122.89257652099991, 49.245785034000015 ], [ -122.89259318699996, 49.245945897000041 ], [ -122.891791400999935, 49.245511087000089 ], [ -122.89155199899993, 49.245374493000071 ], [ -122.891047919999949, 49.245086853000089 ], [ -122.890931235, 49.244963759000058 ], [ -122.88971362199996, 49.244293123000034 ], [ -122.886604982999941, 49.24258074300014 ], [ -122.886520829999981, 49.242534375000098 ], [ -122.886287928999934, 49.242406089000049 ], [ -122.886176393999975, 49.242344634000034 ], [ -122.885674389999934, 49.242068878000055 ], [ -122.88523322099999, 49.241828203000054 ], [ -122.885221208999894, 49.24176222600007 ], [ -122.88522821199993, 49.24163707600006 ], [ -122.885228093999913, 49.24161179500009 ], [ -122.885226412999927, 49.241213607000105 ], [ -122.88520789499999, 49.240712204000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64079667", "BldgCostT": "42386667", "sL_LossRatio": "0.685845603881181", "sL_AssetLoss": "1409880", "sL_BldgLoss": "966960", "sL_StrLoss": "380800", "sL_NStrLoss": "586160", "sL_ContLoss": "442920", "geom_point": "0101000020E610000064C7574C76B85EC07F986B6ED89E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87964402599998, 49.240261182000083 ], [ -122.879663588999961, 49.239735695000036 ], [ -122.878963915999961, 49.23972619400007 ], [ -122.878722619999948, 49.239396789000075 ], [ -122.87981161499999, 49.239181553000058 ], [ -122.880084077999967, 49.239092332000048 ], [ -122.880271328999953, 49.239052841000024 ], [ -122.880615302999942, 49.238980292000086 ], [ -122.8814238, 49.238738817000055 ], [ -122.882162303999976, 49.239766486000043 ], [ -122.883929395999971, 49.239770698 ], [ -122.885219308000018, 49.239785511000072 ], [ -122.88520789499999, 49.240712204000012 ], [ -122.885226412999927, 49.241213607000105 ], [ -122.885228093999913, 49.24161179500009 ], [ -122.88522821199993, 49.24163707600006 ], [ -122.885221208999894, 49.24176222600007 ], [ -122.88523322099999, 49.241828203000054 ], [ -122.88538638599999, 49.242063264000087 ], [ -122.885402467999967, 49.24221235600006 ], [ -122.885358846999935, 49.242350746000085 ], [ -122.885231748999928, 49.242464187000031 ], [ -122.885172893999965, 49.242624662000068 ], [ -122.883348078999916, 49.242598096000059 ], [ -122.88096745199999, 49.242584575000102 ], [ -122.879586612999958, 49.242576707000133 ], [ -122.879607397999919, 49.241695289000056 ], [ -122.879617752999962, 49.241187462000035 ], [ -122.879627707999958, 49.240699508000041 ], [ -122.87964402599998, 49.240261182000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325367311", "BldgCostT": "218838190", "sL_LossRatio": "0.749875732095978", "sL_AssetLoss": "2673659", "sL_BldgLoss": "2004912", "sL_StrLoss": "891842", "sL_NStrLoss": "1113070", "sL_ContLoss": "668747", "geom_point": "0101000020E6100000E1E2EAF816B85EC080483B45799E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87310831799999, 49.236851203000079 ], [ -122.87312899299998, 49.236340994000074 ], [ -122.873141300999976, 49.236336983000058 ], [ -122.875872878999957, 49.235442934000027 ], [ -122.875885201999907, 49.2354388870001 ], [ -122.877014604999886, 49.235070767000103 ], [ -122.877272480999935, 49.235168198000061 ], [ -122.877440033, 49.235410471000129 ], [ -122.87830490599994, 49.236661207000111 ], [ -122.879608397999917, 49.236267393000055 ], [ -122.879952154999941, 49.236703622000107 ], [ -122.880225880999916, 49.237051008000073 ], [ -122.880527768999968, 49.237491011000046 ], [ -122.880819923999965, 49.237916903000048 ], [ -122.881083322, 49.238275447000014 ], [ -122.881126029999947, 49.238333557000026 ], [ -122.8814238, 49.238738817000055 ], [ -122.880615302999942, 49.238980292000086 ], [ -122.880271328999953, 49.239052841000024 ], [ -122.880084077999967, 49.239092332000048 ], [ -122.87981161499999, 49.239181553000058 ], [ -122.878722619999948, 49.239396789000075 ], [ -122.878963915999961, 49.23972619400007 ], [ -122.878470350999976, 49.239722053000108 ], [ -122.878328339999911, 49.239720861000066 ], [ -122.878195467999944, 49.239719755000067 ], [ -122.878053457999926, 49.239718561000089 ], [ -122.877463309999925, 49.239713605000063 ], [ -122.876857082, 49.239708492000055 ], [ -122.876167620999965, 49.239710154000129 ], [ -122.876155955999963, 49.240284371000051 ], [ -122.87614390399996, 49.240878804000076 ], [ -122.875475957999981, 49.240877029000067 ], [ -122.872958388999933, 49.240870286000096 ], [ -122.872960567999939, 49.2407361160001 ], [ -122.87300318799997, 49.239736462000138 ], [ -122.873032579999986, 49.238892250000099 ], [ -122.873037885999963, 49.238712203000034 ], [ -122.873065904999933, 49.237949089000082 ], [ -122.873070295, 49.237823087000066 ], [ -122.873105001999988, 49.236961901000036 ], [ -122.87310831799999, 49.236851203000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99818751", "BldgCostT": "65135001", "sL_LossRatio": "0.72706828934263", "sL_AssetLoss": "1285120", "sL_BldgLoss": "934370", "sL_StrLoss": "430310", "sL_NStrLoss": "504060", "sL_ContLoss": "350750", "geom_point": "0101000020E6100000F5C4E70C14B85EC020189340FB9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.878963915999961, 49.23972619400007 ], [ -122.879663588999961, 49.239735695000036 ], [ -122.87964402599998, 49.240261182000083 ], [ -122.879627707999958, 49.240699508000041 ], [ -122.879617752999962, 49.241187462000035 ], [ -122.879607397999919, 49.241695289000056 ], [ -122.879586612999958, 49.242576707000133 ], [ -122.877707621999946, 49.24258089500011 ], [ -122.877665584999974, 49.243918402000091 ], [ -122.877654874999962, 49.244241498000072 ], [ -122.876582012999933, 49.244224797000086 ], [ -122.872875597999965, 49.244198511000029 ], [ -122.872875869999959, 49.244013893000066 ], [ -122.872876400999971, 49.243615704000042 ], [ -122.872922205999942, 49.242630507000129 ], [ -122.872939604999956, 49.241699500000088 ], [ -122.872958388999933, 49.240870286000096 ], [ -122.875475957999981, 49.240877029000067 ], [ -122.87614390399996, 49.240878804000076 ], [ -122.876155955999963, 49.240284371000051 ], [ -122.876167620999965, 49.239710154000129 ], [ -122.876857082, 49.239708492000055 ], [ -122.877463309999925, 49.239713605000063 ], [ -122.878053457999926, 49.239718561000089 ], [ -122.878195467999944, 49.239719755000067 ], [ -122.878328339999911, 49.239720861000066 ], [ -122.878470350999976, 49.239722053000108 ], [ -122.878963915999961, 49.23972619400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107129917", "BldgCostT": "69576667", "sL_LossRatio": "0.723900297532233", "sL_AssetLoss": "1371280", "sL_BldgLoss": "992670", "sL_StrLoss": "455470", "sL_NStrLoss": "537200", "sL_ContLoss": "378610", "geom_point": "0101000020E6100000D5DAE2B7B4B75EC0B1CC5304D59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872252593999946, 49.23888680700005 ], [ -122.873032579999986, 49.238892250000099 ], [ -122.87300318799997, 49.239736462000138 ], [ -122.872960567999939, 49.2407361160001 ], [ -122.872958388999933, 49.240870286000096 ], [ -122.872939604999956, 49.241699500000088 ], [ -122.872922205999942, 49.242630507000129 ], [ -122.872707001999942, 49.242664808000036 ], [ -122.87217404799992, 49.242666932000049 ], [ -122.86760359099999, 49.242685206000061 ], [ -122.867590401999934, 49.241719891000045 ], [ -122.867556372999985, 49.24079999600005 ], [ -122.867548309000014, 49.240411504000086 ], [ -122.867540075999955, 49.240065300000012 ], [ -122.86753050399993, 49.239739789000119 ], [ -122.86921632499994, 49.239748200000086 ], [ -122.869220904000017, 49.238865394000115 ], [ -122.869930885999906, 49.238870421000037 ], [ -122.869958333999946, 49.238870615000103 ], [ -122.872252593999946, 49.23888680700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "525480339", "BldgCostT": "311187548", "sL_LossRatio": "0.676549093647902", "sL_AssetLoss": "7860080", "sL_BldgLoss": "5317730", "sL_StrLoss": "2129910", "sL_NStrLoss": "3187820", "sL_ContLoss": "2542350", "geom_point": "0101000020E6100000414961418EB75EC0C2E2ABDB289E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861637868999978, 49.237560442000081 ], [ -122.86164327199999, 49.236793789000039 ], [ -122.861649707999987, 49.235683211000037 ], [ -122.86166109, 49.234539319000064 ], [ -122.861657146999946, 49.234429667 ], [ -122.861655392999936, 49.234380601000112 ], [ -122.86162658799999, 49.233323905000084 ], [ -122.86160291399996, 49.232416002000065 ], [ -122.861731971999944, 49.232430899000086 ], [ -122.864478625999936, 49.232747772000053 ], [ -122.87351377499995, 49.233789643000136 ], [ -122.873527304999968, 49.233791203000045 ], [ -122.875189177999943, 49.233988099000022 ], [ -122.87679508799998, 49.23426249700011 ], [ -122.877625804000019, 49.23440640700008 ], [ -122.878248217999939, 49.234543300000063 ], [ -122.878389755999962, 49.234584437000116 ], [ -122.878420610999981, 49.234593397000047 ], [ -122.878296893999945, 49.234636619000092 ], [ -122.87813093699998, 49.234693981000113 ], [ -122.877943592999941, 49.234758800000073 ], [ -122.877931396999912, 49.23476300500004 ], [ -122.877870125999905, 49.234784163000093 ], [ -122.877526025999941, 49.234903002000067 ], [ -122.877471660999959, 49.234921763000067 ], [ -122.877110272999943, 49.235039558000082 ], [ -122.877014604999886, 49.235070767000103 ], [ -122.875885201999907, 49.2354388870001 ], [ -122.875872878999957, 49.235442934000027 ], [ -122.873141300999976, 49.236336983000058 ], [ -122.87312899299998, 49.236340994000074 ], [ -122.87310831799999, 49.236851203000079 ], [ -122.873105001999988, 49.236961901000036 ], [ -122.873070295, 49.237823087000066 ], [ -122.873065904999933, 49.237949089000082 ], [ -122.873037885999963, 49.238712203000034 ], [ -122.873032579999986, 49.238892250000099 ], [ -122.872252593999946, 49.23888680700005 ], [ -122.869958333999946, 49.238870615000103 ], [ -122.869930885999906, 49.238870421000037 ], [ -122.869220904000017, 49.238865394000115 ], [ -122.869229589999961, 49.237921503000059 ], [ -122.869235504999949, 49.237326183000043 ], [ -122.868674574999957, 49.237437001000046 ], [ -122.868389209999947, 49.237494400000102 ], [ -122.867509601999984, 49.237668902000046 ], [ -122.86618919599999, 49.237938459000091 ], [ -122.865045017999947, 49.238172009000031 ], [ -122.864849914, 49.238213203000043 ], [ -122.864734691999956, 49.238237941000087 ], [ -122.862617230999959, 49.238692530000073 ], [ -122.862244216999912, 49.238772608000048 ], [ -122.86219450699997, 49.238491799000059 ], [ -122.861768298999962, 49.237991194000116 ], [ -122.861637220999924, 49.23765579900008 ], [ -122.861637868999978, 49.237560442000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.527093596059113", "sL_AssetLoss": "40600", "sL_BldgLoss": "21400", "sL_StrLoss": "7500", "sL_NStrLoss": "13900", "sL_ContLoss": "19200", "geom_point": "0101000020E6100000ECD63A8A56B65EC05BF081A1379C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.848190885999955, 49.220782511 ], [ -122.848192112999939, 49.220381735000089 ], [ -122.847780136999972, 49.220381194000041 ], [ -122.847781081999983, 49.220073291000084 ], [ -122.850252447999978, 49.220236602000107 ], [ -122.850250853999938, 49.220764027 ], [ -122.849516415000011, 49.220661793000112 ], [ -122.848830186999948, 49.220849801000092 ], [ -122.848375889999943, 49.220839790000063 ], [ -122.848190885999955, 49.220782511 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.501822600243013", "sL_AssetLoss": "82300", "sL_BldgLoss": "41300", "sL_StrLoss": "14800", "sL_NStrLoss": "26500", "sL_ContLoss": "41000", "geom_point": "0101000020E6100000132563ADC8B75EC027E5A4E6619C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870264396999957, 49.221945000000126 ], [ -122.870373292999943, 49.221702896000053 ], [ -122.870663199999967, 49.221460800000067 ], [ -122.871260424999903, 49.221348605000095 ], [ -122.871260059999955, 49.221489180000056 ], [ -122.872908008999943, 49.221491005000097 ], [ -122.87290673199999, 49.221988711000066 ], [ -122.872845104999953, 49.221984903000099 ], [ -122.870855012999982, 49.222017703000063 ], [ -122.870264396999957, 49.221945000000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "671317758", "BldgCostT": "376124338", "sL_LossRatio": "0.588025108761008", "sL_AssetLoss": "32780590", "sL_BldgLoss": "19275810", "sL_StrLoss": "7073610", "sL_NStrLoss": "12202200", "sL_ContLoss": "13504780", "geom_point": "0101000020E61000003F8DCDF1FEB55EC06B92C437399D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.816814021999946, 49.237413090000132 ], [ -122.816676680999947, 49.226850902000109 ], [ -122.816860353999985, 49.22687066300012 ], [ -122.817281559999969, 49.22700435900002 ], [ -122.81741343399996, 49.226998812000041 ], [ -122.817007820999962, 49.225919403000034 ], [ -122.817050903999956, 49.22585034100009 ], [ -122.817188599999938, 49.225629695000052 ], [ -122.8171725399999, 49.225013043000068 ], [ -122.816780575999957, 49.224036288000015 ], [ -122.816797844999925, 49.223643946000017 ], [ -122.816818889, 49.223515800000023 ], [ -122.817606282999975, 49.223305932000102 ], [ -122.817694906999989, 49.223306072000049 ], [ -122.817694994999954, 49.223282287000131 ], [ -122.818581798999944, 49.223045914000068 ], [ -122.818618641999976, 49.22303766800011 ], [ -122.819755894, 49.223039448000094 ], [ -122.81975682699999, 49.222782935000026 ], [ -122.819816035999963, 49.222769684000042 ], [ -122.821404860999962, 49.222772151000157 ], [ -122.821405833999961, 49.222502294000037 ], [ -122.82181783, 49.222502930000061 ], [ -122.82181843299999, 49.222335032000089 ], [ -122.822422212, 49.222234003000096 ], [ -122.823466767999946, 49.222235604000097 ], [ -122.823467342999962, 49.222073918000035 ], [ -122.82410608099994, 49.22209170200005 ], [ -122.825200595999917, 49.221968383000096 ], [ -122.826351659999972, 49.221970118000073 ], [ -122.826352560999922, 49.221712787000108 ], [ -122.82639971899998, 49.221700332000069 ], [ -122.827003849999954, 49.221701239000048 ], [ -122.827472298999979, 49.221718590000101 ], [ -122.82759002899995, 49.221702115000014 ], [ -122.828420335999937, 49.221703352000098 ], [ -122.82851591, 49.221863788000043 ], [ -122.828789608999955, 49.221944998000083 ], [ -122.828823707999973, 49.221942688000084 ], [ -122.828823600999954, 49.221973808000072 ], [ -122.829647580999932, 49.221975025000098 ], [ -122.829647882999964, 49.221886844000053 ], [ -122.829819798999949, 49.221875195000045 ], [ -122.830149888999969, 49.221578992000047 ], [ -122.830906711999944, 49.221499187000092 ], [ -122.830920388999942, 49.221588993000097 ], [ -122.830685698999943, 49.221697213000013 ], [ -122.830972801999962, 49.221895200000141 ], [ -122.831756117999944, 49.221932204000097 ], [ -122.832251680999946, 49.221878094000033 ], [ -122.833767545999947, 49.221962792000085 ], [ -122.833767483999949, 49.221981028000037 ], [ -122.834102596999969, 49.22198151000002 ], [ -122.834571297999986, 49.222007692 ], [ -122.835807412999941, 49.221902290000095 ], [ -122.835834410999965, 49.222108802000079 ], [ -122.836040398999927, 49.221929407000118 ], [ -122.836617187999963, 49.221912306000043 ], [ -122.837062921999959, 49.222133428000127 ], [ -122.837062518999943, 49.222255580000102 ], [ -122.837368506999894, 49.222256012000052 ], [ -122.837474416999953, 49.222285640000159 ], [ -122.837472743999953, 49.222795875000088 ], [ -122.838296735999947, 49.222797032000052 ], [ -122.838297616999952, 49.222527175000025 ], [ -122.838440082999966, 49.22252737400008 ], [ -122.840967510999945, 49.222880697000079 ], [ -122.841193269999934, 49.222801050000037 ], [ -122.841592837999954, 49.222801598000075 ], [ -122.842828210999954, 49.222959880000104 ], [ -122.842827851999942, 49.223073143000114 ], [ -122.843239851999968, 49.223073704000051 ], [ -122.843240044999916, 49.223012642000072 ], [ -122.845278793999981, 49.223273814000102 ], [ -122.84658299100002, 49.223337890000089 ], [ -122.84965771499995, 49.223746598000041 ], [ -122.850577489999978, 49.223963113000067 ], [ -122.854160775999929, 49.224454495000074 ], [ -122.856331110999974, 49.224457305000037 ], [ -122.858362318999966, 49.224819099000051 ], [ -122.858478710999975, 49.224891833000036 ], [ -122.858478452999975, 49.224982384000064 ], [ -122.858623896999973, 49.224982562000051 ], [ -122.858665388999938, 49.225008492000079 ], [ -122.85987230399995, 49.225037006000072 ], [ -122.861287297999979, 49.2247421880001 ], [ -122.865351697999984, 49.225061203000045 ], [ -122.86529650199999, 49.225259187000056 ], [ -122.866574699999916, 49.225467109000107 ], [ -122.868620698, 49.225659413000081 ], [ -122.870101899999966, 49.225696392000046 ], [ -122.870035194999943, 49.225471398000131 ], [ -122.870226703999919, 49.225400194000088 ], [ -122.87153121599998, 49.225482807000098 ], [ -122.875582691, 49.225297588000096 ], [ -122.876726844999922, 49.225103909000012 ], [ -122.876734232999979, 49.225150107000047 ], [ -122.87649635699999, 49.225262284000053 ], [ -122.876409683999952, 49.226278265000133 ], [ -122.87641378099994, 49.228564018000021 ], [ -122.876475463999952, 49.228667599000033 ], [ -122.876841469999945, 49.228880030000084 ], [ -122.877174176999972, 49.229041392000063 ], [ -122.877324313, 49.229114200000041 ], [ -122.877347646999965, 49.229125510000081 ], [ -122.877236304999883, 49.229373695000042 ], [ -122.877015501999935, 49.229571705000055 ], [ -122.876204515999959, 49.230003200000048 ], [ -122.875434508999973, 49.230272403000072 ], [ -122.875158711, 49.230478905000062 ], [ -122.875034714999941, 49.230595708000116 ], [ -122.875040359999929, 49.230697649000085 ], [ -122.875061089999974, 49.231072815000118 ], [ -122.875320889999941, 49.23131488700011 ], [ -122.87617159499996, 49.23169370100004 ], [ -122.876580468, 49.232249590000038 ], [ -122.876729188999917, 49.232451827000027 ], [ -122.876761383999977, 49.232495597000145 ], [ -122.877131684999952, 49.232739090000102 ], [ -122.87720368, 49.232767904000042 ], [ -122.87888689, 49.233441191000097 ], [ -122.880013578999964, 49.23361359200009 ], [ -122.880276667999951, 49.233861308000094 ], [ -122.880351417000014, 49.233931661000064 ], [ -122.880140594999915, 49.234005190000111 ], [ -122.880128210999914, 49.234009491000108 ], [ -122.879288994999968, 49.234298700000082 ], [ -122.87869488699998, 49.234496793000112 ], [ -122.878420610999981, 49.234593397000047 ], [ -122.878389755999962, 49.234584437000116 ], [ -122.878248217999939, 49.234543300000063 ], [ -122.877625804000019, 49.23440640700008 ], [ -122.87679508799998, 49.23426249700011 ], [ -122.875189177999943, 49.233988099000022 ], [ -122.873527304999968, 49.233791203000045 ], [ -122.87351377499995, 49.233789643000136 ], [ -122.864478625999936, 49.232747772000053 ], [ -122.861731971999944, 49.232430899000086 ], [ -122.86160291399996, 49.232416002000065 ], [ -122.861471728999931, 49.232401113000087 ], [ -122.859028708999958, 49.232123643000143 ], [ -122.853740764999941, 49.231522862000098 ], [ -122.852565496999915, 49.231683193000059 ], [ -122.852791714999952, 49.232053703000084 ], [ -122.852841511999927, 49.232270495000044 ], [ -122.852810290999969, 49.232427285000036 ], [ -122.852734545999937, 49.232556774000038 ], [ -122.852729515999926, 49.23256538600009 ], [ -122.852702040999986, 49.232623483000033 ], [ -122.852668627999918, 49.232694290000047 ], [ -122.849344041999956, 49.232011603000103 ], [ -122.849129852999965, 49.231967732000086 ], [ -122.84876494300002, 49.231892980000055 ], [ -122.847985691999938, 49.231733326000082 ], [ -122.846009948999949, 49.231328502000039 ], [ -122.843710576999982, 49.230856714000048 ], [ -122.842294625999926, 49.230591872000034 ], [ -122.842202929999956, 49.230574732000086 ], [ -122.841780972999956, 49.23052090900007 ], [ -122.839107225999911, 49.230180585000014 ], [ -122.836952218999969, 49.229906166000042 ], [ -122.836740849999956, 49.229879250000117 ], [ -122.836476286999968, 49.229845552000015 ], [ -122.835575490999958, 49.229847052000167 ], [ -122.834907707999932, 49.229934670000013 ], [ -122.834589028999915, 49.230017195000038 ], [ -122.834203701999968, 49.230150927000118 ], [ -122.834198636999986, 49.230153236000099 ], [ -122.833742815999955, 49.230204980000046 ], [ -122.833205876999941, 49.230427051000021 ], [ -122.832797858000035, 49.230623017000084 ], [ -122.829983273999957, 49.231974714000039 ], [ -122.829638473999964, 49.23214030900008 ], [ -122.829553161999925, 49.232182011000113 ], [ -122.829529060999917, 49.232193854000123 ], [ -122.828792852999953, 49.232558471000075 ], [ -122.826824492999947, 49.233533272000066 ], [ -122.826168632999895, 49.23388784400003 ], [ -122.825964976999927, 49.233993825000098 ], [ -122.825253200999967, 49.234364153000072 ], [ -122.82489857799996, 49.234548688000054 ], [ -122.823712274999963, 49.235150750000116 ], [ -122.823531986999939, 49.235242226000075 ], [ -122.820588030999957, 49.236736179000054 ], [ -122.820668432999966, 49.236805227000112 ], [ -122.820736955999934, 49.236867596000131 ], [ -122.820636558999936, 49.236913463000093 ], [ -122.82055549399999, 49.23695053700007 ], [ -122.820294475999916, 49.237078640000085 ], [ -122.820072329999974, 49.23718766100005 ], [ -122.819681162999942, 49.237375339000032 ], [ -122.819191414999949, 49.237610315000026 ], [ -122.819125419999978, 49.237641961000058 ], [ -122.819000309999979, 49.237702002000056 ], [ -122.818989309999949, 49.237707412000084 ], [ -122.818716474999974, 49.237841405000097 ], [ -122.816766275999939, 49.238799176000093 ], [ -122.816774653999971, 49.23855598800003 ], [ -122.816777964999957, 49.23846049900002 ], [ -122.816814021999946, 49.237413090000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "515607790", "BldgCostT": "342437412", "sL_LossRatio": "0.72778860808341", "sL_AssetLoss": "21016130", "sL_BldgLoss": "15295300", "sL_StrLoss": "6182300", "sL_NStrLoss": "9113000", "sL_ContLoss": "5720830", "geom_point": "0101000020E6100000DCC1B2463BB65EC059CE6252119E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.847248012999927, 49.237722606000069 ], [ -122.84669198899995, 49.237498203000065 ], [ -122.846518336999964, 49.237949553000085 ], [ -122.846333409999986, 49.238430100000045 ], [ -122.845950795999926, 49.238301807000063 ], [ -122.844139856999917, 49.237861565000124 ], [ -122.844000056999946, 49.237827552000034 ], [ -122.84398773199996, 49.237823358000135 ], [ -122.843583251, 49.237685418000055 ], [ -122.843441447999965, 49.237637057000036 ], [ -122.842980026999896, 49.237479693000061 ], [ -122.842942729999962, 49.237427421000056 ], [ -122.84275438399996, 49.237163093000028 ], [ -122.842672720999971, 49.236728309000085 ], [ -122.842953231999928, 49.235855416000028 ], [ -122.843006622999951, 49.235110100000021 ], [ -122.842884214, 49.23489120200005 ], [ -122.842330802999982, 49.234003807000079 ], [ -122.841686717999963, 49.232915503000108 ], [ -122.840626803999982, 49.231480791000038 ], [ -122.840759691999892, 49.231444197000087 ], [ -122.84129754, 49.231437211000099 ], [ -122.842250817999926, 49.231424803000024 ], [ -122.842245055999967, 49.231388337000105 ], [ -122.842167224999983, 49.230898003000092 ], [ -122.842020093999963, 49.23067927700005 ], [ -122.841780972999956, 49.23052090900007 ], [ -122.842202929999956, 49.230574732000086 ], [ -122.842294625999926, 49.230591872000034 ], [ -122.843710576999982, 49.230856714000048 ], [ -122.846009948999949, 49.231328502000039 ], [ -122.847985691999938, 49.231733326000082 ], [ -122.84876494300002, 49.231892980000055 ], [ -122.849129852999965, 49.231967732000086 ], [ -122.849344041999956, 49.232011603000103 ], [ -122.852668627999918, 49.232694290000047 ], [ -122.852600013999975, 49.232850229000093 ], [ -122.852538709999934, 49.232989607000093 ], [ -122.852525612999926, 49.233672350000035 ], [ -122.852515503999925, 49.234202513000078 ], [ -122.852516187999981, 49.234886474000056 ], [ -122.852516751999957, 49.235453179000075 ], [ -122.852517496999951, 49.236199015000047 ], [ -122.852515772999965, 49.236298287000075 ], [ -122.852491678999925, 49.237666118000107 ], [ -122.852471454999886, 49.238817367000053 ], [ -122.852461142999985, 49.239402112000086 ], [ -122.85245502, 49.239752205000109 ], [ -122.85213228399995, 49.239712104000056 ], [ -122.851652301999962, 49.239568766000041 ], [ -122.849631414999976, 49.238965210000046 ], [ -122.849187914999973, 49.238720698000044 ], [ -122.848185198999943, 49.23815808800002 ], [ -122.848161759999925, 49.238147187000024 ], [ -122.847248012999927, 49.237722606000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163585803", "BldgCostT": "111188746", "sL_LossRatio": "0.750380921285337", "sL_AssetLoss": "2940240", "sL_BldgLoss": "2206300", "sL_StrLoss": "901910", "sL_NStrLoss": "1304390", "sL_ContLoss": "733940", "geom_point": "0101000020E610000023D52DF1B6B55EC0E4F7EC6FBF9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.839576595999958, 49.234906894000112 ], [ -122.839563803999951, 49.233945300000101 ], [ -122.838096990999944, 49.233949995000067 ], [ -122.83680361099999, 49.233948104000071 ], [ -122.836792445999905, 49.233426057000045 ], [ -122.836781299999956, 49.232905081000069 ], [ -122.83534679199991, 49.232899915000054 ], [ -122.836415511999988, 49.231724882000087 ], [ -122.836873994999962, 49.231202302000099 ], [ -122.83694760399996, 49.230787379000084 ], [ -122.836740849999956, 49.229879250000117 ], [ -122.836952218999969, 49.229906166000042 ], [ -122.839107225999911, 49.230180585000014 ], [ -122.841780972999956, 49.23052090900007 ], [ -122.842020093999963, 49.23067927700005 ], [ -122.842167224999983, 49.230898003000092 ], [ -122.842245055999967, 49.231388337000105 ], [ -122.842250817999926, 49.231424803000024 ], [ -122.84129754, 49.231437211000099 ], [ -122.840759691999892, 49.231444197000087 ], [ -122.840626803999982, 49.231480791000038 ], [ -122.841686717999963, 49.232915503000108 ], [ -122.842330802999982, 49.234003807000079 ], [ -122.842884214, 49.23489120200005 ], [ -122.841850106999942, 49.234896121000098 ], [ -122.839576595999958, 49.234906894000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110357168", "BldgCostT": "69831668", "sL_LossRatio": "0.684713373040356", "sL_AssetLoss": "2311262", "sL_BldgLoss": "1582552", "sL_StrLoss": "641802", "sL_NStrLoss": "940750", "sL_ContLoss": "728710", "geom_point": "0101000020E6100000D125FB6BA2B55EC0B2E664351F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841265481000022, 49.237026747000087 ], [ -122.839588916999929, 49.236601026000095 ], [ -122.839589980999932, 49.236686693000138 ], [ -122.838945433999967, 49.236680769000031 ], [ -122.837517165999969, 49.236667577000055 ], [ -122.836859002999944, 49.236661500000039 ], [ -122.83410462099998, 49.236637506000079 ], [ -122.834096168999949, 49.23627381700009 ], [ -122.834087914999927, 49.23591619900003 ], [ -122.834075753999983, 49.235410188000039 ], [ -122.834061815999945, 49.23482888500012 ], [ -122.834060454999985, 49.234339643000069 ], [ -122.834059674999978, 49.234054093000069 ], [ -122.834130242999919, 49.233925502000091 ], [ -122.83534679199991, 49.232899915000054 ], [ -122.836781299999956, 49.232905081000069 ], [ -122.836792445999905, 49.233426057000045 ], [ -122.83680361099999, 49.233948104000071 ], [ -122.838096990999944, 49.233949995000067 ], [ -122.839563803999951, 49.233945300000101 ], [ -122.839576595999958, 49.234906894000112 ], [ -122.841850106999942, 49.234896121000098 ], [ -122.842884214, 49.23489120200005 ], [ -122.843006622999951, 49.235110100000021 ], [ -122.842953231999928, 49.235855416000028 ], [ -122.842672720999971, 49.236728309000085 ], [ -122.84275438399996, 49.237163093000028 ], [ -122.842942729999962, 49.237427421000056 ], [ -122.842980026999896, 49.237479693000061 ], [ -122.842918945999884, 49.237463892000044 ], [ -122.842048452999961, 49.23723849800006 ], [ -122.84183838199999, 49.237184067000101 ], [ -122.841377348999941, 49.23705793500006 ], [ -122.841265481000022, 49.237026747000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125202917", "BldgCostT": "81241667", "sL_LossRatio": "0.738465055436315", "sL_AssetLoss": "1574780", "sL_BldgLoss": "1162920", "sL_StrLoss": "530200", "sL_NStrLoss": "632720", "sL_ContLoss": "411860", "geom_point": "0101000020E6100000E4DB92878BB55EC0AA452323909E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.838945433999967, 49.236680769000031 ], [ -122.839589980999932, 49.236686693000138 ], [ -122.839610022, 49.237642205 ], [ -122.839637282999917, 49.239056595000108 ], [ -122.83965222799999, 49.239762755000086 ], [ -122.83965779, 49.240026592000049 ], [ -122.836926404999971, 49.240005015000108 ], [ -122.836929408999978, 49.24040656799999 ], [ -122.836937480999978, 49.241494593000048 ], [ -122.836251036999954, 49.24149380800003 ], [ -122.835561518999953, 49.241493007000059 ], [ -122.834876965999982, 49.241486581000039 ], [ -122.834209601999945, 49.24148030300011 ], [ -122.834176497999948, 49.240213492000109 ], [ -122.834165092999953, 49.239213210000131 ], [ -122.834141096999971, 49.238063966000105 ], [ -122.834131301999975, 49.23759501100011 ], [ -122.834117533999972, 49.23710124700014 ], [ -122.83410462099998, 49.236637506000079 ], [ -122.836859002999944, 49.236661500000039 ], [ -122.837517165999969, 49.236667577000055 ], [ -122.838945433999967, 49.236680769000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65627000", "BldgCostT": "44315000", "sL_LossRatio": "0.749256881088106", "sL_AssetLoss": "777130", "sL_BldgLoss": "582270", "sL_StrLoss": "275240", "sL_NStrLoss": "307030", "sL_ContLoss": "194860", "geom_point": "0101000020E610000011D3F0F340B55EC0913C9D4CD89E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833456048999949, 49.239212105000085 ], [ -122.834165092999953, 49.239213210000131 ], [ -122.834176497999948, 49.240213492000109 ], [ -122.834209601999945, 49.24148030300011 ], [ -122.834213039999966, 49.242156852000072 ], [ -122.834213697999957, 49.242285892000055 ], [ -122.830243591999988, 49.242280110000124 ], [ -122.829296635999924, 49.242280027000035 ], [ -122.82892242199992, 49.24228000300009 ], [ -122.828535207999963, 49.242177591000043 ], [ -122.82921099899994, 49.241674904000028 ], [ -122.831694969999916, 49.23942709500011 ], [ -122.831966105999953, 49.239299082000052 ], [ -122.832202458999944, 49.239239015000088 ], [ -122.83229029599994, 49.239216690000028 ], [ -122.832870212999964, 49.239211206000071 ], [ -122.833456048999949, 49.239212105000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71041667", "BldgCostT": "48466667", "sL_LossRatio": "0.750691881918819", "sL_AssetLoss": "910560", "sL_BldgLoss": "683550", "sL_StrLoss": "336980", "sL_NStrLoss": "346570", "sL_ContLoss": "227010", "geom_point": "0101000020E61000000948FB1F20B55EC067D19E3FAB9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83146177699993, 49.237412099000046 ], [ -122.831810721999958, 49.237390802000043 ], [ -122.831881116999966, 49.237399396000072 ], [ -122.832151196999945, 49.237432402000124 ], [ -122.832274251999976, 49.237482999000079 ], [ -122.832505101999956, 49.237577898000048 ], [ -122.832737383999969, 49.237756791000102 ], [ -122.832851898999976, 49.238030416000093 ], [ -122.83287030799994, 49.238465192000092 ], [ -122.832870212999964, 49.239211206000071 ], [ -122.83229029599994, 49.239216690000028 ], [ -122.832202458999944, 49.239239015000088 ], [ -122.831966105999953, 49.239299082000052 ], [ -122.831694969999916, 49.23942709500011 ], [ -122.82921099899994, 49.241674904000028 ], [ -122.828535207999963, 49.242177591000043 ], [ -122.827869274999927, 49.24177329500003 ], [ -122.827738114999988, 49.241663093000085 ], [ -122.827613591999949, 49.241496393000077 ], [ -122.827572791999927, 49.241228499000037 ], [ -122.827435582999925, 49.240564102000086 ], [ -122.827461299999953, 49.2403485990001 ], [ -122.827523806999977, 49.240197300000027 ], [ -122.827690489999938, 49.240049991000028 ], [ -122.82899639599999, 49.239146905000027 ], [ -122.830469312999981, 49.237829796000057 ], [ -122.830944993999964, 49.237599590000059 ], [ -122.83146177699993, 49.237412099000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178404167", "BldgCostT": "117466667", "sL_LossRatio": "0.740689985310475", "sL_AssetLoss": "2130770", "sL_BldgLoss": "1578240", "sL_StrLoss": "733440", "sL_NStrLoss": "844800", "sL_ContLoss": "552530", "geom_point": "0101000020E61000009B021DD6E9B45EC04A3990DCB79E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821621508999982, 49.243542608000041 ], [ -122.822564701999951, 49.242705492000077 ], [ -122.821166906999949, 49.242720998000117 ], [ -122.820897105999904, 49.242689600000034 ], [ -122.820691123999964, 49.242588993000084 ], [ -122.820520596, 49.242430810000087 ], [ -122.82228629, 49.241655800000053 ], [ -122.823248004, 49.241210200000118 ], [ -122.823376576999976, 49.241076196000066 ], [ -122.823399006, 49.240949788000087 ], [ -122.823334191999933, 49.240853313000066 ], [ -122.823169006999976, 49.240759206000085 ], [ -122.822243309, 49.240578807000077 ], [ -122.821198725999949, 49.240476041000122 ], [ -122.820974698999919, 49.240453985000059 ], [ -122.820720191999953, 49.240360011000121 ], [ -122.820482908999949, 49.240174686000081 ], [ -122.820773307999971, 49.240046301000085 ], [ -122.822242405999972, 49.239389492000065 ], [ -122.823095410999926, 49.239065096000012 ], [ -122.82332135800003, 49.239027512000071 ], [ -122.823834357999914, 49.238942193000035 ], [ -122.824144552999925, 49.238890602000048 ], [ -122.824374810999956, 49.238852306000091 ], [ -122.824433869999936, 49.238828788000113 ], [ -122.824606294999967, 49.238760112000108 ], [ -122.824888008999935, 49.23857333100009 ], [ -122.825463699999929, 49.238191586000077 ], [ -122.82579330599999, 49.238030099000078 ], [ -122.826220508999953, 49.238008501000053 ], [ -122.826248420999946, 49.237998946000168 ], [ -122.827889603999893, 49.237437697000054 ], [ -122.829746130999979, 49.23679604200008 ], [ -122.829813585999915, 49.236772693000077 ], [ -122.83028948499999, 49.236607579000108 ], [ -122.832310181999958, 49.235906391000078 ], [ -122.832354685999988, 49.235906647000022 ], [ -122.833370886999916, 49.235912236000097 ], [ -122.834087914999927, 49.23591619900003 ], [ -122.834096168999949, 49.23627381700009 ], [ -122.83410462099998, 49.236637506000079 ], [ -122.834117533999972, 49.23710124700014 ], [ -122.834131301999975, 49.23759501100011 ], [ -122.834141096999971, 49.238063966000105 ], [ -122.834165092999953, 49.239213210000131 ], [ -122.833456048999949, 49.239212105000085 ], [ -122.832870212999964, 49.239211206000071 ], [ -122.83287030799994, 49.238465192000092 ], [ -122.832851898999976, 49.238030416000093 ], [ -122.832737383999969, 49.237756791000102 ], [ -122.832505101999956, 49.237577898000048 ], [ -122.832274251999976, 49.237482999000079 ], [ -122.832151196999945, 49.237432402000124 ], [ -122.831881116999966, 49.237399396000072 ], [ -122.831810721999958, 49.237390802000043 ], [ -122.83146177699993, 49.237412099000046 ], [ -122.830944993999964, 49.237599590000059 ], [ -122.830469312999981, 49.237829796000057 ], [ -122.82899639599999, 49.239146905000027 ], [ -122.827690489999938, 49.240049991000028 ], [ -122.827523806999977, 49.240197300000027 ], [ -122.827461299999953, 49.2403485990001 ], [ -122.827435582999925, 49.240564102000086 ], [ -122.827572791999927, 49.241228499000037 ], [ -122.827613591999949, 49.241496393000077 ], [ -122.827738114999988, 49.241663093000085 ], [ -122.827869274999927, 49.24177329500003 ], [ -122.828535207999963, 49.242177591000043 ], [ -122.827905583999893, 49.242613446000107 ], [ -122.827798586999961, 49.242687499000063 ], [ -122.827410778999976, 49.242830576000053 ], [ -122.827101153999976, 49.242944814000033 ], [ -122.82657628, 49.243138491000096 ], [ -122.824879213999949, 49.243764596000027 ], [ -122.823955120999969, 49.244223003000087 ], [ -122.823345594, 49.243836605000112 ], [ -122.82288670199992, 49.243678911000046 ], [ -122.822530684999933, 49.243602703000121 ], [ -122.822187590999974, 49.243559196000056 ], [ -122.821621508999982, 49.243542608000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196119083", "BldgCostT": "130568333", "sL_LossRatio": "0.759567343230943", "sL_AssetLoss": "2245660", "sL_BldgLoss": "1705730", "sL_StrLoss": "808950", "sL_NStrLoss": "896780", "sL_ContLoss": "539930", "geom_point": "0101000020E6100000F100C3B00BB55EC0B605F82C579F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.824417214999926, 49.245397898000064 ], [ -122.824408499999961, 49.244962515000047 ], [ -122.824309706999912, 49.244661387000065 ], [ -122.823955120999969, 49.244223003000087 ], [ -122.824879213999949, 49.243764596000027 ], [ -122.82657628, 49.243138491000096 ], [ -122.827101153999976, 49.242944814000033 ], [ -122.827410778999976, 49.242830576000053 ], [ -122.827798586999961, 49.242687499000063 ], [ -122.827905583999893, 49.242613446000107 ], [ -122.828535207999963, 49.242177591000043 ], [ -122.82892242199992, 49.24228000300009 ], [ -122.829296635999924, 49.242280027000035 ], [ -122.830243591999988, 49.242280110000124 ], [ -122.834213697999957, 49.242285892000055 ], [ -122.834217971999976, 49.242564395000109 ], [ -122.834220875999961, 49.242804382000017 ], [ -122.834227273999971, 49.243333995000093 ], [ -122.834233694999938, 49.243642303000044 ], [ -122.834236812999947, 49.243838749000076 ], [ -122.834244822999935, 49.244345403000089 ], [ -122.83278878599999, 49.244347699000116 ], [ -122.831472720999955, 49.244352758000076 ], [ -122.831458984999983, 49.244352806000045 ], [ -122.831462282999979, 49.245149291000033 ], [ -122.831463789999958, 49.245931303000148 ], [ -122.831469506999952, 49.246652183000045 ], [ -122.831511088999918, 49.246707514000079 ], [ -122.83158279499996, 49.246803294000117 ], [ -122.831609414999946, 49.247480710000097 ], [ -122.82915519299999, 49.247489003000055 ], [ -122.824406181999947, 49.247504893000105 ], [ -122.82441959, 49.246756945000094 ], [ -122.824420287999985, 49.24671789300006 ], [ -122.824417549999922, 49.245551540000079 ], [ -122.824417214999926, 49.245397898000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116713083", "BldgCostT": "77073333", "sL_LossRatio": "0.74049766020718", "sL_AssetLoss": "1395209", "sL_BldgLoss": "1033149", "sL_StrLoss": "484689", "sL_NStrLoss": "548460", "sL_ContLoss": "362060", "geom_point": "0101000020E61000005F826CBC28B55EC07124E18CAB9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83278878599999, 49.244347699000116 ], [ -122.834244822999935, 49.244345403000089 ], [ -122.834259092999972, 49.246978396000031 ], [ -122.834260281999931, 49.247197190000101 ], [ -122.834265410999933, 49.24814774200005 ], [ -122.83427029399995, 49.249045284000054 ], [ -122.829877733999979, 49.249056768000067 ], [ -122.824410308999973, 49.249070808000063 ], [ -122.824436477999939, 49.248267000000105 ], [ -122.824406181999947, 49.247504893000105 ], [ -122.82915519299999, 49.247489003000055 ], [ -122.831609414999946, 49.247480710000097 ], [ -122.83158279499996, 49.246803294000117 ], [ -122.831511088999918, 49.246707514000079 ], [ -122.831469506999952, 49.246652183000045 ], [ -122.831463789999958, 49.245931303000148 ], [ -122.831462282999979, 49.245149291000033 ], [ -122.831458984999983, 49.244352806000045 ], [ -122.831472720999955, 49.244352758000076 ], [ -122.83278878599999, 49.244347699000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134236334", "BldgCostT": "87898334", "sL_LossRatio": "0.737082461923836", "sL_AssetLoss": "1692660", "sL_BldgLoss": "1247630", "sL_StrLoss": "559650", "sL_NStrLoss": "687980", "sL_ContLoss": "445030", "geom_point": "0101000020E6100000662FB2CF29B55EC053AD644BFF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836794397999967, 49.249033797000038 ], [ -122.837007419999964, 49.249032797 ], [ -122.836939902999987, 49.250828089000073 ], [ -122.835691223999959, 49.250829394000093 ], [ -122.8354877, 49.25087199200005 ], [ -122.835314978, 49.250907497000114 ], [ -122.834056407999981, 49.250912002000106 ], [ -122.832785698999956, 49.250913510000011 ], [ -122.830654740999933, 49.250914296000111 ], [ -122.828700385999952, 49.250915005000131 ], [ -122.824403404999956, 49.250917496000085 ], [ -122.824401817999956, 49.249977801000043 ], [ -122.824405585999955, 49.249822911000081 ], [ -122.824407355999952, 49.249545473000126 ], [ -122.824410308999973, 49.249070808000063 ], [ -122.829877733999979, 49.249056768000067 ], [ -122.83427029399995, 49.249045284000054 ], [ -122.835534593999981, 49.249036501000049 ], [ -122.836794397999967, 49.249033797000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108994917", "BldgCostT": "73961667", "sL_LossRatio": "0.768388421299586", "sL_AssetLoss": "1197751", "sL_BldgLoss": "920338", "sL_StrLoss": "439168", "sL_NStrLoss": "481170", "sL_ContLoss": "277413", "geom_point": "0101000020E6100000FE14099EA9B55EC0C1A4B6DC32A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.835421391999958, 49.253757509000067 ], [ -122.835447835999943, 49.252607091000073 ], [ -122.8354877, 49.25087199200005 ], [ -122.835691223999959, 49.250829394000093 ], [ -122.836939902999987, 49.250828089000073 ], [ -122.837007419999964, 49.249032797 ], [ -122.837979705999956, 49.24903519300004 ], [ -122.839168390999973, 49.249026790000045 ], [ -122.839991092999966, 49.249022325000084 ], [ -122.840211064, 49.249021119000112 ], [ -122.840939530999961, 49.24901712900003 ], [ -122.841112700999957, 49.249016198000021 ], [ -122.841011783999988, 49.25164840200005 ], [ -122.840990996999935, 49.252519809000034 ], [ -122.840942318999964, 49.253799500000099 ], [ -122.840865394999938, 49.253759413000068 ], [ -122.840264298999941, 49.25375917900007 ], [ -122.839587826999932, 49.253758906000023 ], [ -122.839096240999979, 49.253757489000058 ], [ -122.83825968799998, 49.253755104000092 ], [ -122.836760779999949, 49.253758003000051 ], [ -122.835421391999958, 49.253757509000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102997917", "BldgCostT": "68666667", "sL_LossRatio": "0.742750941331703", "sL_AssetLoss": "1242920", "sL_BldgLoss": "923180", "sL_StrLoss": "415870", "sL_NStrLoss": "507310", "sL_ContLoss": "319740", "geom_point": "0101000020E61000003548DAF0A8B55EC0E3B0A846B7A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.837926373999963, 49.25687239100003 ], [ -122.837517788999961, 49.256819901000021 ], [ -122.835914584999927, 49.256818794000139 ], [ -122.835821306999918, 49.256554793000127 ], [ -122.835438398999969, 49.256227397000096 ], [ -122.835397586999974, 49.256019908000077 ], [ -122.83539855399999, 49.255930304000096 ], [ -122.835415379, 49.254329159000058 ], [ -122.835421391999958, 49.253757509000067 ], [ -122.836760779999949, 49.253758003000051 ], [ -122.83825968799998, 49.253755104000092 ], [ -122.839096240999979, 49.253757489000058 ], [ -122.839587826999932, 49.253758906000023 ], [ -122.840264298999941, 49.25375917900007 ], [ -122.840865394999938, 49.253759413000068 ], [ -122.840942318999964, 49.253799500000099 ], [ -122.84095011, 49.254289807000134 ], [ -122.840911093999978, 49.254802215000076 ], [ -122.840887498, 49.256056490000013 ], [ -122.84087559799994, 49.25693719700007 ], [ -122.840873076999912, 49.257479502000159 ], [ -122.840849401999947, 49.258391386000021 ], [ -122.84048310299994, 49.258404997000127 ], [ -122.840112824999963, 49.258495900000106 ], [ -122.839345294999987, 49.257822984000065 ], [ -122.838574804999922, 49.257133785000072 ], [ -122.83824570899999, 49.256963694000092 ], [ -122.837926373999963, 49.25687239100003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124315333", "BldgCostT": "83053333", "sL_LossRatio": "0.75530559370266", "sL_AssetLoss": "1412660", "sL_BldgLoss": "1066990", "sL_StrLoss": "511920", "sL_NStrLoss": "555070", "sL_ContLoss": "345670", "geom_point": "0101000020E6100000C126003900B65EC004DC140B53A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843978203999939, 49.248993813 ], [ -122.846625404999898, 49.248988308000079 ], [ -122.846618578999937, 49.249496063000073 ], [ -122.846611899, 49.249995096000092 ], [ -122.84659292500001, 49.25046728800001 ], [ -122.846572111999976, 49.250984899000066 ], [ -122.84656739499998, 49.25141900400007 ], [ -122.846523097999977, 49.252950483000106 ], [ -122.846496189999982, 49.253880890000097 ], [ -122.846485442999963, 49.254138099000151 ], [ -122.846404411999941, 49.256080902000129 ], [ -122.844264784999964, 49.25607148400006 ], [ -122.840887498, 49.256056490000013 ], [ -122.840911093999978, 49.254802215000076 ], [ -122.84095011, 49.254289807000134 ], [ -122.840942318999964, 49.253799500000099 ], [ -122.840990996999935, 49.252519809000034 ], [ -122.841011783999988, 49.25164840200005 ], [ -122.841112700999957, 49.249016198000021 ], [ -122.841997746999937, 49.249009281000077 ], [ -122.843978203999939, 49.248993813 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149793250", "BldgCostT": "97915000", "sL_LossRatio": "0.746580347101912", "sL_AssetLoss": "1645050", "sL_BldgLoss": "1228162", "sL_StrLoss": "572352", "sL_NStrLoss": "655810", "sL_ContLoss": "416888", "geom_point": "0101000020E61000005BEFDC20FFB55EC0A03BDA9B0CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.842116597999961, 49.260806794000082 ], [ -122.842110611999928, 49.259219286000146 ], [ -122.84085577899999, 49.259205999000102 ], [ -122.840849401999947, 49.258391386000021 ], [ -122.840873076999912, 49.257479502000159 ], [ -122.84087559799994, 49.25693719700007 ], [ -122.840887498, 49.256056490000013 ], [ -122.844264784999964, 49.25607148400006 ], [ -122.846404411999941, 49.256080902000129 ], [ -122.846408398999955, 49.257133301000117 ], [ -122.846405484999963, 49.257943108000056 ], [ -122.846412215, 49.258795608000085 ], [ -122.846413723999945, 49.259743303000057 ], [ -122.845163808999956, 49.25973831400011 ], [ -122.845156915999979, 49.260809301000087 ], [ -122.842116597999961, 49.260806794000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "292410168", "BldgCostT": "192916668", "sL_LossRatio": "0.764544829586772", "sL_AssetLoss": "2516530", "sL_BldgLoss": "1924000", "sL_StrLoss": "916680", "sL_NStrLoss": "1007320", "sL_ContLoss": "592530", "geom_point": "0101000020E61000000F3455E65CB65EC01BED448B64A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850053613999975, 49.248992085000076 ], [ -122.852462798999966, 49.248992102000081 ], [ -122.852419103999949, 49.250163787000076 ], [ -122.852393373, 49.250871293000046 ], [ -122.85237300199995, 49.251430014000142 ], [ -122.852342401, 49.252650800000048 ], [ -122.852301201999964, 49.253865806000086 ], [ -122.852278005999949, 49.254541245000077 ], [ -122.852258989999925, 49.255094294000095 ], [ -122.852236209999944, 49.255593851000135 ], [ -122.852211008, 49.256146892000061 ], [ -122.852176, 49.257168398000061 ], [ -122.846408398999955, 49.257133301000117 ], [ -122.846404411999941, 49.256080902000129 ], [ -122.846485442999963, 49.254138099000151 ], [ -122.846496189999982, 49.253880890000097 ], [ -122.846523097999977, 49.252950483000106 ], [ -122.84656739499998, 49.25141900400007 ], [ -122.846572111999976, 49.250984899000066 ], [ -122.84659292500001, 49.25046728800001 ], [ -122.846611899, 49.249995096000092 ], [ -122.846618578999937, 49.249496063000073 ], [ -122.846625404999898, 49.248988308000079 ], [ -122.8472034, 49.248993491000093 ], [ -122.850053613999975, 49.248992085000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153764166", "BldgCostT": "98676666", "sL_LossRatio": "0.743950728299285", "sL_AssetLoss": "1659208", "sL_BldgLoss": "1234369", "sL_StrLoss": "581959", "sL_NStrLoss": "652410", "sL_ContLoss": "424839", "geom_point": "0101000020E6100000019654545AB65EC01EA800D632A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.846408398999955, 49.257133301000117 ], [ -122.852176, 49.257168398000061 ], [ -122.852168190999933, 49.257607795000048 ], [ -122.852153694999984, 49.258002892000064 ], [ -122.852139300999966, 49.258823209000113 ], [ -122.852088877999932, 49.259768496000113 ], [ -122.852091386, 49.260703700000079 ], [ -122.852067506999902, 49.261601200000023 ], [ -122.848512986999964, 49.261591537000044 ], [ -122.846418888999892, 49.261585812000071 ], [ -122.846416494999943, 49.260671301000038 ], [ -122.846413723999945, 49.259743303000057 ], [ -122.846412215, 49.258795608000085 ], [ -122.846405484999963, 49.257943108000056 ], [ -122.846408398999955, 49.257133301000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128059166", "BldgCostT": "83366666", "sL_LossRatio": "0.743623017653315", "sL_AssetLoss": "1431006", "sL_BldgLoss": "1064129", "sL_StrLoss": "515219", "sL_NStrLoss": "548910", "sL_ContLoss": "366877", "geom_point": "0101000020E6100000C5843521AFB65EC041F6F6BE23A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857641225999913, 49.256155597000038 ], [ -122.857836, 49.256155914000075 ], [ -122.85764078099993, 49.256282695000074 ], [ -122.857441592999962, 49.256412045000054 ], [ -122.856403295999939, 49.257086306000062 ], [ -122.856509220999925, 49.258053567000061 ], [ -122.856551679999939, 49.258440976000131 ], [ -122.856596805999956, 49.258853101000042 ], [ -122.856275299999965, 49.259825696000071 ], [ -122.85636491299999, 49.260044611000097 ], [ -122.856866997999958, 49.260745703000097 ], [ -122.857496112999982, 49.261640492 ], [ -122.852067506999902, 49.261601200000023 ], [ -122.852091386, 49.260703700000079 ], [ -122.852088877999932, 49.259768496000113 ], [ -122.852139300999966, 49.258823209000113 ], [ -122.852153694999984, 49.258002892000064 ], [ -122.852168190999933, 49.257607795000048 ], [ -122.852176, 49.257168398000061 ], [ -122.852211008, 49.256146892000061 ], [ -122.854864909999961, 49.256151191000143 ], [ -122.854985656999986, 49.256151401000089 ], [ -122.855260680999933, 49.25615183200005 ], [ -122.855584284999949, 49.256152351000075 ], [ -122.857365832999974, 49.256155155000108 ], [ -122.857641225999913, 49.256155597000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116477916", "BldgCostT": "75756666", "sL_LossRatio": "0.735662568900384", "sL_AssetLoss": "1333084", "sL_BldgLoss": "980700", "sL_StrLoss": "450560", "sL_NStrLoss": "530140", "sL_ContLoss": "352384", "geom_point": "0101000020E6100000DE3B72BDD0B65EC070FE70A1BCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856122613999943, 49.264309496000052 ], [ -122.856138504999961, 49.263486492000027 ], [ -122.854485990999947, 49.263474588000072 ], [ -122.853455258999929, 49.263467154000132 ], [ -122.85272859799997, 49.263461910000061 ], [ -122.852048917999937, 49.263455594000035 ], [ -122.852066604999962, 49.262546207000049 ], [ -122.852067506999902, 49.261601200000023 ], [ -122.857496112999982, 49.261640492 ], [ -122.857680703999932, 49.261896408000062 ], [ -122.857631107999964, 49.262588590000078 ], [ -122.857599260999919, 49.2630383300001 ], [ -122.857566805999951, 49.263496606000096 ], [ -122.858981399999891, 49.263506302000025 ], [ -122.86038080699997, 49.263515510000033 ], [ -122.8603221, 49.265824503000026 ], [ -122.857540381999968, 49.265793098000117 ], [ -122.856096099999917, 49.265775314000031 ], [ -122.856122613999943, 49.264309496000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98624834", "BldgCostT": "66313334", "sL_LossRatio": "0.750665884626", "sL_AssetLoss": "1159360", "sL_BldgLoss": "870292", "sL_StrLoss": "405982", "sL_NStrLoss": "464310", "sL_ContLoss": "289068", "geom_point": "0101000020E61000001CDCB508B5B65EC031712F592AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.853050835999909, 49.27058386200008 ], [ -122.853052809999951, 49.270581439000082 ], [ -122.852574509999926, 49.270580828000114 ], [ -122.852579333999984, 49.268961698000062 ], [ -122.852991715999963, 49.26896222400012 ], [ -122.852993318999935, 49.268422514000065 ], [ -122.852611646999947, 49.268422028000032 ], [ -122.852580870999972, 49.268445642000074 ], [ -122.852580137999936, 49.268691844000067 ], [ -122.852505565999977, 49.268691750000087 ], [ -122.852647382999947, 49.267635096000092 ], [ -122.852665206, 49.266582490000104 ], [ -122.852672197999979, 49.266257499000119 ], [ -122.85272859799997, 49.263461910000061 ], [ -122.853455258999929, 49.263467154000132 ], [ -122.854485990999947, 49.263474588000072 ], [ -122.856138504999961, 49.263486492000027 ], [ -122.856122613999943, 49.264309496000052 ], [ -122.856096099999917, 49.265775314000031 ], [ -122.857540381999968, 49.265793098000117 ], [ -122.8575270799999, 49.26625218600001 ], [ -122.857515895999981, 49.266620292000049 ], [ -122.857491719, 49.267484401000047 ], [ -122.857490296999984, 49.267606894000046 ], [ -122.85747229499998, 49.268177510000029 ], [ -122.857464684999968, 49.268491702000112 ], [ -122.857454090999966, 49.268851806 ], [ -122.857439512999932, 49.269370189000036 ], [ -122.857418487999951, 49.270045290000013 ], [ -122.857244006999949, 49.270329386000078 ], [ -122.857077593999975, 49.270492990000051 ], [ -122.856940543999912, 49.270560322000037 ], [ -122.85692486899994, 49.269776730000025 ], [ -122.856700807999971, 49.269776452000052 ], [ -122.856701500999975, 49.269537509000031 ], [ -122.85663103399996, 49.269516662000065 ], [ -122.856613404999962, 49.269506488000076 ], [ -122.856289202999918, 49.269506085000025 ], [ -122.85628998599999, 49.269236229000107 ], [ -122.85587760199995, 49.269235716000061 ], [ -122.855879174999956, 49.268696006000035 ], [ -122.855620984999973, 49.268695683000104 ], [ -122.855627434, 49.268750862000097 ], [ -122.855466104999962, 49.268932167000045 ], [ -122.855466006999947, 49.26896534600008 ], [ -122.85543661199992, 49.268965309000052 ], [ -122.85540853599997, 49.268996862000073 ], [ -122.855053191999957, 49.269112427000017 ], [ -122.855052834999967, 49.269234684000089 ], [ -122.854553213999964, 49.269234057000055 ], [ -122.854506534999956, 49.269243362000054 ], [ -122.854299834999921, 49.269336562000085 ], [ -122.854227577999978, 49.269399698000072 ], [ -122.854225681999964, 49.270043211000029 ], [ -122.85403587499998, 49.270042972000148 ], [ -122.854031235999926, 49.270064862000027 ], [ -122.853921234999945, 49.270356962000108 ], [ -122.85381192299999, 49.270505699000125 ], [ -122.853811695999966, 49.270582400000109 ], [ -122.853755603999957, 49.270582329000078 ], [ -122.853549759999936, 49.270862409000131 ], [ -122.85306107299999, 49.270881623000086 ], [ -122.853050835999909, 49.27058386200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93632666", "BldgCostT": "62156666", "sL_LossRatio": "0.748603871142164", "sL_AssetLoss": "1183630", "sL_BldgLoss": "886070", "sL_StrLoss": "401610", "sL_NStrLoss": "484460", "sL_ContLoss": "297560", "geom_point": "0101000020E610000028D714C86CB65EC0B311C282FFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850165584999971, 49.267616808000064 ], [ -122.850163300999938, 49.267347304000062 ], [ -122.849413087999949, 49.266920900000073 ], [ -122.848969778999944, 49.266651196000048 ], [ -122.848806617999941, 49.266585205000133 ], [ -122.848588820999964, 49.266554506000034 ], [ -122.847974906, 49.266550086000045 ], [ -122.847664800999922, 49.266503188000129 ], [ -122.847158809999954, 49.266406501000056 ], [ -122.846388894999961, 49.266413710000108 ], [ -122.846424902999928, 49.265742685000113 ], [ -122.847781792999911, 49.265751703000042 ], [ -122.84778928599998, 49.264267295000117 ], [ -122.849035479999941, 49.264267594000025 ], [ -122.849602912999927, 49.264268902000097 ], [ -122.849669288999934, 49.263433012000057 ], [ -122.852048917999937, 49.263455594000035 ], [ -122.85272859799997, 49.263461910000061 ], [ -122.852672197999979, 49.266257499000119 ], [ -122.852665206, 49.266582490000104 ], [ -122.852647382999947, 49.267635096000092 ], [ -122.852006106999951, 49.267567802000052 ], [ -122.851932400999928, 49.267803411000095 ], [ -122.851755484999913, 49.267980304000069 ], [ -122.851566007999963, 49.268080092000034 ], [ -122.85129360799999, 49.268145181000108 ], [ -122.850998995999973, 49.268153714000036 ], [ -122.850715502999932, 49.26811840400007 ], [ -122.850410073999939, 49.267962591000106 ], [ -122.850228696, 49.26775999700007 ], [ -122.850165584999971, 49.267616808000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89255417", "BldgCostT": "57691667", "sL_LossRatio": "0.735064638223524", "sL_AssetLoss": "1032516", "sL_BldgLoss": "758966", "sL_StrLoss": "339296", "sL_NStrLoss": "419670", "sL_ContLoss": "273550", "geom_point": "0101000020E61000001B6DF2E71DB65EC0A10169BDE7A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843744679999958, 49.265248091000039 ], [ -122.843542289999945, 49.265033199000122 ], [ -122.842349714999912, 49.265052303000111 ], [ -122.842372196999946, 49.264156601000103 ], [ -122.84237859699999, 49.26337571500008 ], [ -122.843507301999949, 49.26338620700006 ], [ -122.846425614999973, 49.263408499000072 ], [ -122.848053929999949, 49.263420808000028 ], [ -122.849669288999934, 49.263433012000057 ], [ -122.849602912999927, 49.264268902000097 ], [ -122.849035479999941, 49.264267594000025 ], [ -122.84778928599998, 49.264267295000117 ], [ -122.847781792999911, 49.265751703000042 ], [ -122.846424902999928, 49.265742685000113 ], [ -122.846388894999961, 49.266413710000108 ], [ -122.846380997999972, 49.267661198000056 ], [ -122.84472309099999, 49.26726768900005 ], [ -122.844385174999942, 49.267082999000117 ], [ -122.844259713999961, 49.266868504000051 ], [ -122.844270221999977, 49.266149 ], [ -122.843928607999928, 49.266080509000105 ], [ -122.843725997999954, 49.266068285000131 ], [ -122.843841492, 49.265704087000053 ], [ -122.843839391999964, 49.26547251000008 ], [ -122.843744679999958, 49.265248091000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122328644", "BldgCostT": "79801523", "sL_LossRatio": "0.73636694984159", "sL_AssetLoss": "1426680", "sL_BldgLoss": "1050560", "sL_StrLoss": "478610", "sL_NStrLoss": "571950", "sL_ContLoss": "376120", "geom_point": "0101000020E6100000AFE639221FB65EC0EF032DB089A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.840834695999931, 49.261633290000077 ], [ -122.84085577899999, 49.259205999000102 ], [ -122.842110611999928, 49.259219286000146 ], [ -122.842116597999961, 49.260806794000082 ], [ -122.845156915999979, 49.260809301000087 ], [ -122.845163808999956, 49.25973831400011 ], [ -122.846413723999945, 49.259743303000057 ], [ -122.846416494999943, 49.260671301000038 ], [ -122.846418888999892, 49.261585812000071 ], [ -122.848512986999964, 49.261591537000044 ], [ -122.852067506999902, 49.261601200000023 ], [ -122.852066604999962, 49.262546207000049 ], [ -122.852048917999937, 49.263455594000035 ], [ -122.849669288999934, 49.263433012000057 ], [ -122.848053929999949, 49.263420808000028 ], [ -122.846425614999973, 49.263408499000072 ], [ -122.843507301999949, 49.26338620700006 ], [ -122.84237859699999, 49.26337571500008 ], [ -122.840831504, 49.263375496000087 ], [ -122.840827274999953, 49.262488893000103 ], [ -122.840834695999931, 49.261633290000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100304083", "BldgCostT": "66523333", "sL_LossRatio": "0.74376390236716", "sL_AssetLoss": "1167517", "sL_BldgLoss": "868357", "sL_StrLoss": "395047", "sL_NStrLoss": "473310", "sL_ContLoss": "299160", "geom_point": "0101000020E61000005BCED6A8A4B55EC012D8730436A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.835882203999986, 49.261605199000073 ], [ -122.835914891999934, 49.257661195000047 ], [ -122.835914584999927, 49.256818794000139 ], [ -122.837517788999961, 49.256819901000021 ], [ -122.837926373999963, 49.25687239100003 ], [ -122.83824570899999, 49.256963694000092 ], [ -122.838574804999922, 49.257133785000072 ], [ -122.839345294999987, 49.257822984000065 ], [ -122.840112824999963, 49.258495900000106 ], [ -122.84048310299994, 49.258404997000127 ], [ -122.840849401999947, 49.258391386000021 ], [ -122.84085577899999, 49.259205999000102 ], [ -122.840834695999931, 49.261633290000077 ], [ -122.838388109999968, 49.26162738900009 ], [ -122.837046477999934, 49.261615996000089 ], [ -122.835882203999986, 49.261605199000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108598917", "BldgCostT": "73421667", "sL_LossRatio": "0.766548356378918", "sL_AssetLoss": "1270670", "sL_BldgLoss": "974030", "sL_StrLoss": "450940", "sL_NStrLoss": "523090", "sL_ContLoss": "296640", "geom_point": "0101000020E6100000A787996401B55EC0B9510183E6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832083477999944, 49.263278380000081 ], [ -122.83441649299999, 49.26331090300004 ], [ -122.834399585999932, 49.263801404000034 ], [ -122.834316202, 49.263976392000039 ], [ -122.834160703999885, 49.264140279000145 ], [ -122.833909905999988, 49.264291501000045 ], [ -122.833561596999957, 49.264362410000039 ], [ -122.831359391999982, 49.26437700500005 ], [ -122.830874973999954, 49.264427604000062 ], [ -122.830619704999918, 49.264483208000115 ], [ -122.830209312999969, 49.264618904000024 ], [ -122.829839073999921, 49.264788202000069 ], [ -122.829159000999965, 49.265350194000114 ], [ -122.828625490999968, 49.265877706000083 ], [ -122.828475717999979, 49.266138201000061 ], [ -122.828397715, 49.266434996000051 ], [ -122.828402112999981, 49.266611688000083 ], [ -122.828417507, 49.267010387000035 ], [ -122.828509215999972, 49.267416699000073 ], [ -122.827519691999953, 49.267760512000059 ], [ -122.827114118999944, 49.26782430500009 ], [ -122.82664509199999, 49.267789787000019 ], [ -122.826291514999951, 49.267695587000041 ], [ -122.825456722999945, 49.267285511000104 ], [ -122.825685909999962, 49.266907505000063 ], [ -122.825731709999914, 49.266699904000049 ], [ -122.825679206999951, 49.266503681000067 ], [ -122.824753224999981, 49.264975609000018 ], [ -122.824672490999959, 49.264749800000089 ], [ -122.824683114999942, 49.264033 ], [ -122.82470609399995, 49.263194903000084 ], [ -122.830209201999978, 49.263252196000074 ], [ -122.832083477999944, 49.263278380000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85118167", "BldgCostT": "57966667", "sL_LossRatio": "0.76618049966261", "sL_AssetLoss": "984024", "sL_BldgLoss": "753940", "sL_StrLoss": "355680", "sL_NStrLoss": "398260", "sL_ContLoss": "230084", "geom_point": "0101000020E610000087C3B923EFB45EC019F4AD2888A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.8248849899999, 49.268128987000118 ], [ -122.825456722999945, 49.267285511000104 ], [ -122.826291514999951, 49.267695587000041 ], [ -122.82664509199999, 49.267789787000019 ], [ -122.827114118999944, 49.26782430500009 ], [ -122.827519691999953, 49.267760512000059 ], [ -122.828509215999972, 49.267416699000073 ], [ -122.828729804999966, 49.267747503000081 ], [ -122.829546590999911, 49.268423693000074 ], [ -122.82864120399995, 49.268942981000109 ], [ -122.828360600999972, 49.269087910000103 ], [ -122.828826993999911, 49.269502496000044 ], [ -122.828979593, 49.269822286000114 ], [ -122.829474616999931, 49.270541410000142 ], [ -122.829480184999937, 49.270640594000071 ], [ -122.829496302999928, 49.271310498000069 ], [ -122.829432499999953, 49.271540084000073 ], [ -122.828025225999951, 49.271922204000106 ], [ -122.827475, 49.271989786000042 ], [ -122.825459996999896, 49.272015191000044 ], [ -122.825266401999926, 49.271972593000051 ], [ -122.825190813999953, 49.27193158300004 ], [ -122.825137481999931, 49.271848097000067 ], [ -122.825130621999961, 49.271767696000033 ], [ -122.82536659199999, 49.271110699000069 ], [ -122.82543250099998, 49.27091079800006 ], [ -122.825411106999951, 49.270720993000026 ], [ -122.825262303999978, 49.270386011000021 ], [ -122.825245692999886, 49.270226091000026 ], [ -122.825124307999985, 49.270093695000071 ], [ -122.825030811999923, 49.269892694000063 ], [ -122.825106573999975, 49.26968859700002 ], [ -122.825349225999929, 49.269377796000036 ], [ -122.825096493999951, 49.269234293000061 ], [ -122.824877818999951, 49.269036897000063 ], [ -122.824733905999935, 49.268769589000023 ], [ -122.82471870099999, 49.268489892000076 ], [ -122.8248849899999, 49.268128987000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100968250", "BldgCostT": "66685000", "sL_LossRatio": "0.746334500117691", "sL_AssetLoss": "1317010", "sL_BldgLoss": "982930", "sL_StrLoss": "444650", "sL_NStrLoss": "538280", "sL_ContLoss": "334080", "geom_point": "0101000020E61000006210F50E39B55EC09AA333D5B8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82536679199994, 49.272774605000045 ], [ -122.826076002, 49.272752284000013 ], [ -122.827045304999913, 49.272787090000051 ], [ -122.828404800999962, 49.27276221000011 ], [ -122.828714497999954, 49.272715394000045 ], [ -122.828916790999983, 49.272610509000117 ], [ -122.829087681999951, 49.272482192000084 ], [ -122.829237783999972, 49.272277596000038 ], [ -122.829432499999953, 49.271540084000073 ], [ -122.829496302999928, 49.271310498000069 ], [ -122.829480184999937, 49.270640594000071 ], [ -122.829474616999931, 49.270541410000142 ], [ -122.828979593, 49.269822286000114 ], [ -122.828826993999911, 49.269502496000044 ], [ -122.828360600999972, 49.269087910000103 ], [ -122.82864120399995, 49.268942981000109 ], [ -122.829546590999911, 49.268423693000074 ], [ -122.830326494999966, 49.269015101000079 ], [ -122.830549875999949, 49.269125201000044 ], [ -122.830851904, 49.269230499000116 ], [ -122.833015806999953, 49.269639113000046 ], [ -122.83343402, 49.269793693000054 ], [ -122.83382371099999, 49.269982595000087 ], [ -122.834173303999947, 49.270297385000028 ], [ -122.834248715999976, 49.270442824000085 ], [ -122.834327505999937, 49.270594688000038 ], [ -122.834802908999976, 49.271380707000084 ], [ -122.834867607999954, 49.271460022000056 ], [ -122.834936078999988, 49.271543996000098 ], [ -122.834927440999977, 49.27180628400005 ], [ -122.834913049999926, 49.272244225000101 ], [ -122.834899230999923, 49.273090015000029 ], [ -122.834900029999943, 49.273139322000105 ], [ -122.832122101999971, 49.27316681800005 ], [ -122.831517145999968, 49.273170682000035 ], [ -122.829453232999967, 49.272990525000054 ], [ -122.829187880999939, 49.272978369000043 ], [ -122.82471869299999, 49.272845709000094 ], [ -122.82536679199994, 49.272774605000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133622418", "BldgCostT": "85291668", "sL_LossRatio": "0.702809669137238", "sL_AssetLoss": "2064300", "sL_BldgLoss": "1450810", "sL_StrLoss": "634940", "sL_NStrLoss": "815870", "sL_ContLoss": "613490", "geom_point": "0101000020E61000007EC5A6D71EB55EC02F153C0124A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.828890776999941, 49.276507895000094 ], [ -122.828609279999924, 49.276302294000104 ], [ -122.828998473999903, 49.276038096000015 ], [ -122.829233685999966, 49.27591439600009 ], [ -122.829333688999981, 49.275799312000103 ], [ -122.829341308999958, 49.275587781000084 ], [ -122.829344268999932, 49.27551040400003 ], [ -122.829348318999976, 49.275404688000094 ], [ -122.829358925999927, 49.275125985000059 ], [ -122.82937092, 49.274811944000085 ], [ -122.829376106, 49.274676186000093 ], [ -122.824003186999974, 49.274684914000034 ], [ -122.82393666199998, 49.273749671000104 ], [ -122.823737847999936, 49.273345583000037 ], [ -122.823913179999977, 49.273126189000074 ], [ -122.824242485999946, 49.272942686000057 ], [ -122.82471869299999, 49.272845709000094 ], [ -122.829187880999939, 49.272978369000043 ], [ -122.829453232999967, 49.272990525000054 ], [ -122.831517145999968, 49.273170682000035 ], [ -122.832122101999971, 49.27316681800005 ], [ -122.834900029999943, 49.273139322000105 ], [ -122.834888555999925, 49.273851584000056 ], [ -122.832722475999944, 49.273833096000047 ], [ -122.832719176999916, 49.274786999000113 ], [ -122.833808074999979, 49.274788424000072 ], [ -122.834872619999928, 49.274789803000047 ], [ -122.834861588999928, 49.275515593000122 ], [ -122.834852402999914, 49.27601258100006 ], [ -122.834844048999969, 49.27667814200008 ], [ -122.833378638999989, 49.276662175000126 ], [ -122.83298767099997, 49.276631780000052 ], [ -122.832738285999966, 49.276660507000038 ], [ -122.83229049, 49.276625668000079 ], [ -122.830673936999972, 49.276499902000133 ], [ -122.829831838999979, 49.276453553000053 ], [ -122.829369263999979, 49.276504827000068 ], [ -122.829033657999929, 49.276629219000036 ], [ -122.828890776999941, 49.276507895000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48999812", "BldgCostT": "30963191", "sL_LossRatio": "0.690232514815979", "sL_AssetLoss": "858870", "sL_BldgLoss": "592820", "sL_StrLoss": "251290", "sL_NStrLoss": "341530", "sL_ContLoss": "266050", "geom_point": "0101000020E61000007F03CDC68EB55EC0266DC38B32A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834861588999928, 49.275515593000122 ], [ -122.834872619999928, 49.274789803000047 ], [ -122.833808074999979, 49.274788424000072 ], [ -122.832719176999916, 49.274786999000113 ], [ -122.832722475999944, 49.273833096000047 ], [ -122.834888555999925, 49.273851584000056 ], [ -122.834900029999943, 49.273139322000105 ], [ -122.834951701, 49.273127332000037 ], [ -122.835715074999911, 49.273118186000055 ], [ -122.835844330999947, 49.27262017100005 ], [ -122.836105335999918, 49.272620465000038 ], [ -122.836125340999928, 49.272717518000022 ], [ -122.836896381, 49.272718608000147 ], [ -122.836895491999911, 49.272988463000033 ], [ -122.837307906999953, 49.27298904400007 ], [ -122.837304355999905, 49.274068462000052 ], [ -122.837716780999983, 49.274069042000079 ], [ -122.837715010999929, 49.274608752000042 ], [ -122.838127438999919, 49.274609330000047 ], [ -122.838128320999942, 49.27433947500009 ], [ -122.839365600999955, 49.274341202000059 ], [ -122.839366476999928, 49.274071348000099 ], [ -122.840216388999963, 49.274072526000054 ], [ -122.840143515999927, 49.27460470400014 ], [ -122.840150043, 49.275086956000109 ], [ -122.84015052599996, 49.275123717000056 ], [ -122.840156497999899, 49.275562688000015 ], [ -122.840151989999981, 49.276032789000126 ], [ -122.840150632999979, 49.276617416000121 ], [ -122.838262640999972, 49.27664592100006 ], [ -122.837043982999916, 49.276664306000107 ], [ -122.834844048999969, 49.27667814200008 ], [ -122.834852402999914, 49.27601258100006 ], [ -122.834861588999928, 49.275515593000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183812667", "BldgCostT": "124301667", "sL_LossRatio": "0.751973061138588", "sL_AssetLoss": "2280720", "sL_BldgLoss": "1715040", "sL_StrLoss": "796370", "sL_NStrLoss": "918670", "sL_ContLoss": "565680", "geom_point": "0101000020E6100000E01089C6C3B55EC081DED9262EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834913049999926, 49.272244225000101 ], [ -122.834927440999977, 49.27180628400005 ], [ -122.834936078999988, 49.271543996000098 ], [ -122.834867607999954, 49.271460022000056 ], [ -122.834802908999976, 49.271380707000084 ], [ -122.834327505999937, 49.270594688000038 ], [ -122.834248715999976, 49.270442824000085 ], [ -122.834173303999947, 49.270297385000028 ], [ -122.83382371099999, 49.269982595000087 ], [ -122.83343402, 49.269793693000054 ], [ -122.833015806999953, 49.269639113000046 ], [ -122.830851904, 49.269230499000116 ], [ -122.830549875999949, 49.269125201000044 ], [ -122.830326494999966, 49.269015101000079 ], [ -122.829546590999911, 49.268423693000074 ], [ -122.828729804999966, 49.267747503000081 ], [ -122.828509215999972, 49.267416699000073 ], [ -122.828417507, 49.267010387000035 ], [ -122.828402112999981, 49.266611688000083 ], [ -122.828397715, 49.266434996000051 ], [ -122.828475717999979, 49.266138201000061 ], [ -122.828625490999968, 49.265877706000083 ], [ -122.829159000999965, 49.265350194000114 ], [ -122.829839073999921, 49.264788202000069 ], [ -122.830209312999969, 49.264618904000024 ], [ -122.830619704999918, 49.264483208000115 ], [ -122.830874973999954, 49.264427604000062 ], [ -122.831359391999982, 49.26437700500005 ], [ -122.833561596999957, 49.264362410000039 ], [ -122.833909905999988, 49.264291501000045 ], [ -122.834160703999885, 49.264140279000145 ], [ -122.834316202, 49.263976392000039 ], [ -122.834399585999932, 49.263801404000034 ], [ -122.83441649299999, 49.26331090300004 ], [ -122.83505186, 49.263317038000011 ], [ -122.836984199999975, 49.263335699000024 ], [ -122.837297291999946, 49.263338605000044 ], [ -122.83812391599993, 49.26334750200008 ], [ -122.840831504, 49.263375496000087 ], [ -122.84237859699999, 49.26337571500008 ], [ -122.842372196999946, 49.264156601000103 ], [ -122.842349714999912, 49.265052303000111 ], [ -122.843542289999945, 49.265033199000122 ], [ -122.843744679999958, 49.265248091000039 ], [ -122.843839391999964, 49.26547251000008 ], [ -122.843841492, 49.265704087000053 ], [ -122.843725997999954, 49.266068285000131 ], [ -122.843928607999928, 49.266080509000105 ], [ -122.844270221999977, 49.266149 ], [ -122.844259713999961, 49.266868504000051 ], [ -122.844385174999942, 49.267082999000117 ], [ -122.84472309099999, 49.26726768900005 ], [ -122.846380997999972, 49.267661198000056 ], [ -122.846388894999961, 49.266413710000108 ], [ -122.847158809999954, 49.266406501000056 ], [ -122.847664800999922, 49.266503188000129 ], [ -122.847974906, 49.266550086000045 ], [ -122.848588820999964, 49.266554506000034 ], [ -122.848806617999941, 49.266585205000133 ], [ -122.848969778999944, 49.266651196000048 ], [ -122.849413087999949, 49.266920900000073 ], [ -122.850163300999938, 49.267347304000062 ], [ -122.850165584999971, 49.267616808000064 ], [ -122.850228696, 49.26775999700007 ], [ -122.850410073999939, 49.267962591000106 ], [ -122.850715502999932, 49.26811840400007 ], [ -122.850998995999973, 49.268153714000036 ], [ -122.85129360799999, 49.268145181000108 ], [ -122.851566007999963, 49.268080092000034 ], [ -122.851755484999913, 49.267980304000069 ], [ -122.851932400999928, 49.267803411000095 ], [ -122.852006106999951, 49.267567802000052 ], [ -122.852647382999947, 49.267635096000092 ], [ -122.852505565999977, 49.268691750000087 ], [ -122.851905630999909, 49.268690982000066 ], [ -122.85142043499999, 49.268857162000067 ], [ -122.851342330999955, 49.268912625000034 ], [ -122.851342190000011, 49.268960113000034 ], [ -122.851275577999957, 49.268960029000034 ], [ -122.85092906499996, 49.269206093000122 ], [ -122.850928993999972, 49.269229438000082 ], [ -122.850896248999945, 49.26922939500006 ], [ -122.850534234999955, 49.269486463000078 ], [ -122.850515875999946, 49.269471953000057 ], [ -122.85051579600001, 49.269498760000097 ], [ -122.849278636999955, 49.269497153000074 ], [ -122.849281923999939, 49.268417733000049 ], [ -122.849694300999957, 49.268418270000026 ], [ -122.849695942, 49.267878560000028 ], [ -122.849283568999965, 49.26787802300008 ], [ -122.84928439, 49.267608168000052 ], [ -122.8492337429999, 49.267608101000107 ], [ -122.849104835999952, 49.267658363000045 ], [ -122.848957535999944, 49.267961962000058 ], [ -122.848870755999911, 49.268021270000162 ], [ -122.848870369999958, 49.26814734 ], [ -122.848686641999933, 49.268147099000103 ], [ -122.848641334999968, 49.268178062000082 ], [ -122.848203433999956, 49.268202862000081 ], [ -122.848124507999955, 49.268146362000017 ], [ -122.847633246999933, 49.26814571400007 ], [ -122.847634908999936, 49.26760600500009 ], [ -122.847222537999954, 49.267605460000027 ], [ -122.847219824999925, 49.268484309000037 ], [ -122.847237135999947, 49.268677762 ], [ -122.847218792999968, 49.268818671000076 ], [ -122.847218372, 49.268954735000129 ], [ -122.847201082999973, 49.268954713000028 ], [ -122.847157634999959, 49.269288462000091 ], [ -122.847043935, 49.269363061000021 ], [ -122.846521234999969, 49.269354262 ], [ -122.846353134999958, 49.269246662000079 ], [ -122.846316335999958, 49.269089062000027 ], [ -122.846346133999944, 49.268953578000094 ], [ -122.845568845999964, 49.268952542000079 ], [ -122.845570742999925, 49.268345068000031 ], [ -122.845141335999969, 49.268147061999983 ], [ -122.845133813999951, 49.268142392000108 ], [ -122.844746622999963, 49.26814187300004 ], [ -122.844747373999979, 49.267902444000065 ], [ -122.84469826599998, 49.267871951000117 ], [ -122.844335096999956, 49.267871463000063 ], [ -122.844335802999936, 49.267646887000069 ], [ -122.844294535999921, 49.26762126100008 ], [ -122.844275185999905, 49.267601526000114 ], [ -122.843923574999948, 49.26760105200001 ], [ -122.843924425999916, 49.267331197000033 ], [ -122.84351205900002, 49.267330638000054 ], [ -122.843512910999948, 49.267060784000137 ], [ -122.84310054599996, 49.267060224000019 ], [ -122.84309969, 49.267330079000033 ], [ -122.842839899999902, 49.267329726000042 ], [ -122.842686460999985, 49.267600599000012 ], [ -122.842683032999943, 49.268678793000042 ], [ -122.843095412999901, 49.268679353000046 ], [ -122.84309370099993, 49.269219063000094 ], [ -122.84350608499993, 49.26921962200008 ], [ -122.843503390999942, 49.27007100700007 ], [ -122.84365853499996, 49.270320462000015 ], [ -122.843638134999964, 49.270525462000073 ], [ -122.84294193599996, 49.271633062000028 ], [ -122.842725334999969, 49.271818663000069 ], [ -122.842515134999957, 49.271843363000102 ], [ -122.842184935, 49.271636362000031 ], [ -122.841923534999978, 49.27139836100006 ], [ -122.841910834999965, 49.27125326200008 ], [ -122.842090834999965, 49.271058963000058 ], [ -122.842386735999952, 49.270580762000122 ], [ -122.842397925999975, 49.27029754000008 ], [ -122.842265491999925, 49.270297360000058 ], [ -122.842266643999949, 49.269935907000111 ], [ -122.842166585999905, 49.269757512000112 ], [ -122.841854824999928, 49.269757086000062 ], [ -122.841855612999936, 49.269510350000083 ], [ -122.841819946999962, 49.269487182000084 ], [ -122.841488403999932, 49.269486728000075 ], [ -122.840010233999948, 49.270145862000049 ], [ -122.839791084999945, 49.270309509000086 ], [ -122.839787639999912, 49.271373374000078 ], [ -122.839682137999944, 49.271373227000055 ], [ -122.839665135999923, 49.271553362000041 ], [ -122.839500735999977, 49.271663262000089 ], [ -122.839321334999966, 49.271688463000082 ], [ -122.839152434999932, 49.271600962000051 ], [ -122.83879327599999, 49.271371991000095 ], [ -122.83855043599999, 49.271371652000056 ], [ -122.838551102999958, 49.271167460000086 ], [ -122.838381734999956, 49.270863062000039 ], [ -122.838353535999943, 49.270335062000044 ], [ -122.83842143599999, 49.270175162000015 ], [ -122.838554580000022, 49.270101700000126 ], [ -122.838554838, 49.27002237900011 ], [ -122.838697980999967, 49.270022579000063 ], [ -122.838704534999962, 49.270018962000023 ], [ -122.83989283499993, 49.269535762000032 ], [ -122.840586834999939, 49.269104662000046 ], [ -122.840619838999942, 49.269078835000151 ], [ -122.840622874999937, 49.268136257 ], [ -122.84103525099998, 49.26813682500012 ], [ -122.841040452999948, 49.266517696000058 ], [ -122.841452811999943, 49.266518263000137 ], [ -122.841454157, 49.266098631000084 ], [ -122.841379359, 49.265978450000013 ], [ -122.841042185999953, 49.265977987000085 ], [ -122.841043052999964, 49.2657081320001 ], [ -122.840630696999952, 49.265707564000117 ], [ -122.840631075999937, 49.265589860000034 ], [ -122.836303735999977, 49.265463070000131 ], [ -122.836347414999977, 49.264822684000094 ], [ -122.834860807999974, 49.264779087000086 ], [ -122.834859537999932, 49.265159747000034 ], [ -122.834625750999933, 49.265159412000095 ], [ -122.834526834999977, 49.265365463000109 ], [ -122.834354234999978, 49.265527662000089 ], [ -122.83416983499994, 49.265524462000059 ], [ -122.83388383599997, 49.265443063000127 ], [ -122.83323581099998, 49.265157416000136 ], [ -122.831520187999942, 49.265154926000058 ], [ -122.831414934999913, 49.265175462000109 ], [ -122.831148014999926, 49.265264741000038 ], [ -122.831147469999948, 49.265424238000072 ], [ -122.830673228999913, 49.265423544000072 ], [ -122.830361034999967, 49.265527962000043 ], [ -122.830322313999901, 49.265555015000075 ], [ -122.830321841999933, 49.265692884000018 ], [ -122.830125392999932, 49.2656925960001 ], [ -122.829908965999962, 49.265843801000116 ], [ -122.829908560999939, 49.265962133000095 ], [ -122.829746496, 49.265961895000018 ], [ -122.829495023999968, 49.266303654000097 ], [ -122.829494342999979, 49.266501234000081 ], [ -122.829358327999913, 49.2665010340001 ], [ -122.829108433999977, 49.267004462000045 ], [ -122.829105320999972, 49.2670403730001 ], [ -122.829492483999957, 49.267040945000076 ], [ -122.829490246999981, 49.26768978800002 ], [ -122.829751836, 49.267840862000092 ], [ -122.829826065999967, 49.26785100400005 ], [ -122.829902064999914, 49.267851117000092 ], [ -122.829902029999971, 49.267861383000131 ], [ -122.829953834999941, 49.267868462000116 ], [ -122.83023728799995, 49.26812146500005 ], [ -122.83031351399994, 49.268121577 ], [ -122.83031327899999, 49.268189294000067 ], [ -122.830540123999953, 49.268391765000032 ], [ -122.83072496199999, 49.268392037000062 ], [ -122.830724484999919, 49.268531922000065 ], [ -122.831002253999941, 49.26866229900002 ], [ -122.832373554999961, 49.268664297000022 ], [ -122.832372640999921, 49.26893415100011 ], [ -122.832785021999939, 49.268934748000021 ], [ -122.832784110999967, 49.269204603000013 ], [ -122.833608877999922, 49.269205794000086 ], [ -122.833607969999946, 49.269475648000089 ], [ -122.834020354999936, 49.269476242000096 ], [ -122.834019743999988, 49.269658870000086 ], [ -122.83409623599999, 49.269690862000068 ], [ -122.834162266999925, 49.26974630200003 ], [ -122.834431838999947, 49.269746688000062 ], [ -122.834431083999931, 49.269971998000109 ], [ -122.834484230999962, 49.270016619000067 ], [ -122.834843325999941, 49.27001713200012 ], [ -122.834842424, 49.270286987000063 ], [ -122.835254817999967, 49.270287577000033 ], [ -122.835252121999972, 49.271097141000034 ], [ -122.835664521, 49.271097727000061 ], [ -122.835662727999946, 49.271637437000038 ], [ -122.836075132999952, 49.271638023000072 ], [ -122.836072405999971, 49.272460696000117 ], [ -122.836105335999918, 49.272620465000038 ], [ -122.835844330999947, 49.27262017100005 ], [ -122.835715074999911, 49.273118186000055 ], [ -122.834951701, 49.273127332000037 ], [ -122.834900029999943, 49.273139322000105 ], [ -122.834899230999923, 49.273090015000029 ], [ -122.834913049999926, 49.272244225000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212435593", "BldgCostT": "139096355", "sL_LossRatio": "0.758712887989204", "sL_AssetLoss": "2371200", "sL_BldgLoss": "1799060", "sL_StrLoss": "826690", "sL_NStrLoss": "972370", "sL_ContLoss": "572140", "geom_point": "0101000020E6100000D571DB4200B65EC07FC2557541A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84598626699993, 49.274133341000073 ], [ -122.847925889999914, 49.274124992000047 ], [ -122.847905177999976, 49.274632547000095 ], [ -122.847890761999906, 49.275107771000123 ], [ -122.847868059999925, 49.275603473000039 ], [ -122.845414695, 49.275604787000127 ], [ -122.845391182999947, 49.276091506000128 ], [ -122.845378402999984, 49.27664330200006 ], [ -122.841392707999916, 49.276623092000094 ], [ -122.840150632999979, 49.276617416000121 ], [ -122.840151989999981, 49.276032789000126 ], [ -122.840156497999899, 49.275562688000015 ], [ -122.84015052599996, 49.275123717000056 ], [ -122.840150043, 49.275086956000109 ], [ -122.840143515999927, 49.27460470400014 ], [ -122.843456903999964, 49.274626788000027 ], [ -122.845437505999911, 49.274644195000079 ], [ -122.845692000999975, 49.274134592000074 ], [ -122.845876253999961, 49.274133807000077 ], [ -122.84598626699993, 49.274133341000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17286333", "BldgCostT": "10953333", "sL_LossRatio": "0.664191988950276", "sL_AssetLoss": "231680", "sL_BldgLoss": "153880", "sL_StrLoss": "57580", "sL_NStrLoss": "96300", "sL_ContLoss": "77800", "geom_point": "0101000020E61000001652028B11B75EC012CAA93AB7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.862962994, 49.270739153000072 ], [ -122.863153564999934, 49.2707403960001 ], [ -122.863083171999932, 49.271781126000093 ], [ -122.857597043999931, 49.271621519000078 ], [ -122.857657033999942, 49.270736161000045 ], [ -122.860251761999933, 49.270721453000128 ], [ -122.862962994, 49.270739153000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245278833", "BldgCostT": "166293333", "sL_LossRatio": "0.763326163420636", "sL_AssetLoss": "2997712", "sL_BldgLoss": "2288232", "sL_StrLoss": "993262", "sL_NStrLoss": "1294970", "sL_ContLoss": "709480", "geom_point": "0101000020E610000021E6719CC4B65EC0041D53FB1DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858619218999962, 49.276136801000135 ], [ -122.858447246999944, 49.27563447000005 ], [ -122.857901116, 49.275636863000074 ], [ -122.856618694999895, 49.275642512000069 ], [ -122.856655452000027, 49.275126388000089 ], [ -122.855986087999966, 49.275161917000062 ], [ -122.855716694999941, 49.275157773000089 ], [ -122.85468042799999, 49.27514189800015 ], [ -122.854667889999988, 49.274677590000053 ], [ -122.854049497999981, 49.274665025000068 ], [ -122.853442387999948, 49.274652709000037 ], [ -122.852478881999943, 49.274633597000104 ], [ -122.852494186999976, 49.274143991000116 ], [ -122.850208557999977, 49.274126810000105 ], [ -122.847925889999914, 49.274124992000047 ], [ -122.84598626699993, 49.274133341000073 ], [ -122.845876253999961, 49.274133807000077 ], [ -122.845692000999975, 49.274134592000074 ], [ -122.845437505999911, 49.274644195000079 ], [ -122.843456903999964, 49.274626788000027 ], [ -122.840143515999927, 49.27460470400014 ], [ -122.840216388999963, 49.274072526000054 ], [ -122.840603748999953, 49.274073061000074 ], [ -122.840604618999976, 49.273803206000132 ], [ -122.841017040999958, 49.273803775000061 ], [ -122.841017906999966, 49.273533921000087 ], [ -122.843080006, 49.273536739000093 ], [ -122.843079150999969, 49.27380659300011 ], [ -122.843903993999959, 49.273807710000042 ], [ -122.843904846, 49.273537857000115 ], [ -122.847037011999987, 49.27354204500007 ], [ -122.84705705199994, 49.273247283000011 ], [ -122.847881421999929, 49.273271364000038 ], [ -122.847852734999947, 49.273190063000101 ], [ -122.847940734999924, 49.273143162000096 ], [ -122.848371234999931, 49.273150462000039 ], [ -122.848480234999954, 49.273196661000028 ], [ -122.848731234999946, 49.273229062000063 ], [ -122.84881363099997, 49.273274527000041 ], [ -122.849267126999948, 49.273275120000022 ], [ -122.849267948999952, 49.273005265000073 ], [ -122.850917609999968, 49.273007405000072 ], [ -122.850916547999958, 49.273359968000086 ], [ -122.852543335999982, 49.273407424000013 ], [ -122.852533713999961, 49.273549192000061 ], [ -122.854627764999975, 49.27355184400006 ], [ -122.854628556999955, 49.27328198900009 ], [ -122.85504097399999, 49.27328250700009 ], [ -122.855042572999963, 49.272736845000068 ], [ -122.854992934999956, 49.272682362000097 ], [ -122.855043028999944, 49.272581453000072 ], [ -122.855043347, 49.272472944000107 ], [ -122.855096861999968, 49.272473011000081 ], [ -122.855173335999936, 49.272318962 ], [ -122.855703634999983, 49.271977562000103 ], [ -122.855797234999955, 49.271789862000062 ], [ -122.855724535999954, 49.2716033620001 ], [ -122.855688635999968, 49.271107462000025 ], [ -122.855767336, 49.270983962000102 ], [ -122.856008736, 49.270790762000047 ], [ -122.856212334999967, 49.270778063000137 ], [ -122.856321235999985, 49.27082416200011 ], [ -122.856549729999955, 49.270799322000087 ], [ -122.856673534999942, 49.270785862000039 ], [ -122.856727252999946, 49.270741416000071 ], [ -122.857385234999953, 49.270737699000058 ], [ -122.857189134999942, 49.270975662000112 ], [ -122.856861934999941, 49.271473562000025 ], [ -122.856781134999949, 49.271806362000106 ], [ -122.856570735999966, 49.272149163000066 ], [ -122.856280521999949, 49.272494759000097 ], [ -122.85627963599994, 49.272799585000037 ], [ -122.856545035999929, 49.27296206200004 ], [ -122.856554373999984, 49.273014541000059 ], [ -122.856691428999966, 49.273014710000076 ], [ -122.856689884999952, 49.273547367000063 ], [ -122.85668908299999, 49.273824275000059 ], [ -122.85702455699996, 49.273824690000026 ], [ -122.857101504999932, 49.273824786000034 ], [ -122.857099432000012, 49.274542436000061 ], [ -122.857924223999959, 49.274566451000105 ], [ -122.857924799999964, 49.274365513000077 ], [ -122.858337227999954, 49.27436601800013 ], [ -122.858338000999979, 49.274096164000035 ], [ -122.862462247999943, 49.27410114700006 ], [ -122.862460885999937, 49.274590720000027 ], [ -122.862460746999929, 49.274640857000051 ], [ -122.86369803499997, 49.274642322000027 ], [ -122.863698219999918, 49.274575203000026 ], [ -122.863698778999961, 49.274372467000077 ], [ -122.865457089999921, 49.274374529000063 ], [ -122.865760914999925, 49.274374882000124 ], [ -122.865761052999972, 49.274323135000074 ], [ -122.865761646999928, 49.274105026000029 ], [ -122.866174071999978, 49.274105506000076 ], [ -122.866175530999939, 49.273565795000074 ], [ -122.86665267599993, 49.273566347000056 ], [ -122.86686728799998, 49.27413609000007 ], [ -122.866708398999947, 49.274412487000085 ], [ -122.866742421999945, 49.275068389000111 ], [ -122.866747205999928, 49.275546900000073 ], [ -122.866754342, 49.275841544000066 ], [ -122.866761355999927, 49.276129943000079 ], [ -122.866129602999962, 49.276042505000099 ], [ -122.864203980999932, 49.27608481000005 ], [ -122.861731005, 49.276112886000121 ], [ -122.858619218999962, 49.276136801000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137220750", "BldgCostT": "88830000", "sL_LossRatio": "0.730355356163057", "sL_AssetLoss": "1549150", "sL_BldgLoss": "1131430", "sL_StrLoss": "514710", "sL_NStrLoss": "616720", "sL_ContLoss": "417720", "geom_point": "0101000020E6100000044D1ABC12B75EC0F550CBA440A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857077593999975, 49.270492990000051 ], [ -122.857244006999949, 49.270329386000078 ], [ -122.857418487999951, 49.270045290000013 ], [ -122.857439512999932, 49.269370189000036 ], [ -122.857454090999966, 49.268851806 ], [ -122.857464684999968, 49.268491702000112 ], [ -122.85747229499998, 49.268177510000029 ], [ -122.857490296999984, 49.267606894000046 ], [ -122.857491719, 49.267484401000047 ], [ -122.857515895999981, 49.266620292000049 ], [ -122.8575270799999, 49.26625218600001 ], [ -122.857540381999968, 49.265793098000117 ], [ -122.8603221, 49.265824503000026 ], [ -122.86038080699997, 49.263515510000033 ], [ -122.863190595999981, 49.263535883000031 ], [ -122.863171101999967, 49.264312805000046 ], [ -122.863123217999927, 49.265387097000087 ], [ -122.86303351399998, 49.268056370000068 ], [ -122.862978195999943, 49.269703390000082 ], [ -122.862962994, 49.270739153000072 ], [ -122.860251761999933, 49.270721453000128 ], [ -122.857657033999942, 49.270736161000045 ], [ -122.857681269999915, 49.270378461000107 ], [ -122.857385234999953, 49.270737699000058 ], [ -122.856727252999946, 49.270741416000071 ], [ -122.856940636, 49.270564862000107 ], [ -122.856940543999912, 49.270560322000037 ], [ -122.857077593999975, 49.270492990000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200013667", "BldgCostT": "129396667", "sL_LossRatio": "0.73955292389608", "sL_AssetLoss": "2178600", "sL_BldgLoss": "1611190", "sL_StrLoss": "752780", "sL_NStrLoss": "858410", "sL_ContLoss": "567410", "geom_point": "0101000020E6100000E2D8DDB06BB75EC09F6BCADB32A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.862962994, 49.270739153000072 ], [ -122.862978195999943, 49.269703390000082 ], [ -122.86303351399998, 49.268056370000068 ], [ -122.863123217999927, 49.265387097000087 ], [ -122.863171101999967, 49.264312805000046 ], [ -122.864548611999979, 49.264321292000012 ], [ -122.865921010999955, 49.26434591000006 ], [ -122.865947008999953, 49.263553907000109 ], [ -122.867529467999987, 49.263558894000013 ], [ -122.868767202999919, 49.263562799000098 ], [ -122.868746790999978, 49.263983850000059 ], [ -122.868718206999972, 49.264573 ], [ -122.868685526999954, 49.265057045000034 ], [ -122.868665676999953, 49.26535079700006 ], [ -122.868659210999908, 49.265508204000056 ], [ -122.868559004999895, 49.268152987000065 ], [ -122.868507994999959, 49.269376696000037 ], [ -122.868479087999901, 49.270110100000075 ], [ -122.868478277999927, 49.270528902000144 ], [ -122.868555374999914, 49.270775470000089 ], [ -122.867007902999944, 49.270765450000077 ], [ -122.867008248999966, 49.270636693000071 ], [ -122.866925806999973, 49.270598248000034 ], [ -122.86659595699993, 49.270597867000106 ], [ -122.866596473999934, 49.270405688000011 ], [ -122.866418534999951, 49.270373362000079 ], [ -122.866389591999933, 49.270327773000076 ], [ -122.866184289, 49.270327535000021 ], [ -122.866185019999989, 49.270057681 ], [ -122.865016943999976, 49.270056322000059 ], [ -122.865009335999957, 49.270059862000075 ], [ -122.864947503999971, 49.270181780000087 ], [ -122.864947108999928, 49.270326096000083 ], [ -122.864831727, 49.270325961000111 ], [ -122.864700135999954, 49.270413062000046 ], [ -122.864575534999929, 49.270451262000073 ], [ -122.864219035999966, 49.270441262000126 ], [ -122.86394671699999, 49.270324923 ], [ -122.86318172799993, 49.270324020000054 ], [ -122.863153564999934, 49.2707403960001 ], [ -122.862962994, 49.270739153000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149566750", "BldgCostT": "100015000", "sL_LossRatio": "0.775689494886892", "sL_AssetLoss": "1290800", "sL_BldgLoss": "1001260", "sL_StrLoss": "441430", "sL_NStrLoss": "559830", "sL_ContLoss": "289540", "geom_point": "0101000020E61000007F9B5135B2B75EC0BAD06C8922A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868559004999895, 49.268152987000065 ], [ -122.868659210999908, 49.265508204000056 ], [ -122.868665676999953, 49.26535079700006 ], [ -122.868685526999954, 49.265057045000034 ], [ -122.868718206999972, 49.264573 ], [ -122.873960792999938, 49.264623300000089 ], [ -122.873971295999965, 49.265547911000084 ], [ -122.871400355999953, 49.265539072000081 ], [ -122.870096109999949, 49.26553459100009 ], [ -122.87006880199999, 49.266305890000041 ], [ -122.871534008999959, 49.266319508000024 ], [ -122.871522769999956, 49.26715673200011 ], [ -122.871518758999926, 49.267453877000044 ], [ -122.871515899999935, 49.267667610000075 ], [ -122.870011697999956, 49.267659996000063 ], [ -122.869982974999971, 49.268197950000044 ], [ -122.869959307999963, 49.268640400000038 ], [ -122.869890201999937, 49.269114998000099 ], [ -122.86990049799995, 49.27012250300006 ], [ -122.868479087999901, 49.270110100000075 ], [ -122.868507994999959, 49.269376696000037 ], [ -122.868559004999895, 49.268152987000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144192584", "BldgCostT": "93658334", "sL_LossRatio": "0.728032849560334", "sL_AssetLoss": "2014030", "sL_BldgLoss": "1466280", "sL_StrLoss": "650490", "sL_NStrLoss": "815790", "sL_ContLoss": "547750", "geom_point": "0101000020E6100000FBEFA8CEF6B75EC021BE1B2427A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868479087999901, 49.270110100000075 ], [ -122.86990049799995, 49.27012250300006 ], [ -122.869890201999937, 49.269114998000099 ], [ -122.869959307999963, 49.268640400000038 ], [ -122.869982974999971, 49.268197950000044 ], [ -122.870011697999956, 49.267659996000063 ], [ -122.871515899999935, 49.267667610000075 ], [ -122.871518758999926, 49.267453877000044 ], [ -122.871522769999956, 49.26715673200011 ], [ -122.871534008999959, 49.266319508000024 ], [ -122.87006880199999, 49.266305890000041 ], [ -122.870096109999949, 49.26553459100009 ], [ -122.871400355999953, 49.265539072000081 ], [ -122.873971295999965, 49.265547911000084 ], [ -122.873960792999938, 49.264623300000089 ], [ -122.868718206999972, 49.264573 ], [ -122.868746790999978, 49.263983850000059 ], [ -122.868767202999919, 49.263562799000098 ], [ -122.870109199999959, 49.263568411000065 ], [ -122.874287391999971, 49.263590402000048 ], [ -122.874539096999968, 49.263592016000089 ], [ -122.87499278599995, 49.263594919000077 ], [ -122.875207480999933, 49.263596305000085 ], [ -122.87636704899991, 49.263602058000082 ], [ -122.877045294999974, 49.263605385000062 ], [ -122.877049540999934, 49.263807813000092 ], [ -122.87705250899991, 49.263947896000097 ], [ -122.877059990999939, 49.264408491000076 ], [ -122.878581210999954, 49.264405686000011 ], [ -122.878581938999943, 49.264415097000089 ], [ -122.878594515999964, 49.264574496000094 ], [ -122.878605518999905, 49.264778393000057 ], [ -122.878617718999948, 49.264884188000082 ], [ -122.878636626999935, 49.265072099000101 ], [ -122.87870100799995, 49.265851400000052 ], [ -122.880132690999957, 49.265852297000045 ], [ -122.880187182, 49.266634896000035 ], [ -122.880253483999965, 49.267426908000068 ], [ -122.876354713999916, 49.267372707000085 ], [ -122.876002786999976, 49.267394888000069 ], [ -122.875746281999952, 49.267490205000065 ], [ -122.875680701999897, 49.267608111000058 ], [ -122.875691380999967, 49.268203008000086 ], [ -122.875705164999985, 49.268202999000025 ], [ -122.876921309999943, 49.268202491000089 ], [ -122.876892115999937, 49.269248496000095 ], [ -122.8768408, 49.26990729400012 ], [ -122.876801597999972, 49.270837694000136 ], [ -122.874445799999961, 49.270822609000028 ], [ -122.873606147999936, 49.270815908000088 ], [ -122.873608062999907, 49.270066039000071 ], [ -122.873195670999948, 49.270065587000019 ], [ -122.873196865999915, 49.269599806000066 ], [ -122.873067634999984, 49.269497763000068 ], [ -122.873070435999963, 49.269268262 ], [ -122.873180635, 49.26912516200008 ], [ -122.873198119999927, 49.269110209000068 ], [ -122.87320051199994, 49.268176601000071 ], [ -122.870726258999937, 49.268173858000061 ], [ -122.870720617999908, 49.27033270000004 ], [ -122.870447534999983, 49.270332394000029 ], [ -122.870439834999928, 49.270452562000074 ], [ -122.87031771, 49.27078960500009 ], [ -122.868569162999975, 49.270775578000091 ], [ -122.868555374999914, 49.270775470000089 ], [ -122.868478277999927, 49.270528902000144 ], [ -122.868479087999901, 49.270110100000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170700136", "BldgCostT": "117847079", "sL_LossRatio": "0.836679700381589", "sL_AssetLoss": "1061350", "sL_BldgLoss": "888010", "sL_StrLoss": "424540", "sL_NStrLoss": "463470", "sL_ContLoss": "173340", "geom_point": "0101000020E610000011134847C1B75EC03EDD16B8FEA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.866747205999928, 49.275546900000073 ], [ -122.866742421999945, 49.275068389000111 ], [ -122.866708398999947, 49.274412487000085 ], [ -122.86686728799998, 49.27413609000007 ], [ -122.86665267599993, 49.273566347000056 ], [ -122.86700037199995, 49.273566748000043 ], [ -122.867001097999946, 49.273296892000118 ], [ -122.867825933999896, 49.273297839000122 ], [ -122.867826654999959, 49.273027985000049 ], [ -122.871072683999969, 49.273031651000096 ], [ -122.871126122999925, 49.272977941000086 ], [ -122.871128793999929, 49.271952291000112 ], [ -122.872778421999897, 49.271954120000046 ], [ -122.87277911699999, 49.271684265000054 ], [ -122.873191521999928, 49.271684718000117 ], [ -122.873192903999936, 49.271145008000097 ], [ -122.873605305999945, 49.271145459000081 ], [ -122.873606147999936, 49.270815908000088 ], [ -122.874445799999961, 49.270822609000028 ], [ -122.876801597999972, 49.270837694000136 ], [ -122.878236586999947, 49.270852202000079 ], [ -122.876224186999977, 49.272493009000108 ], [ -122.875648600999938, 49.272469088000101 ], [ -122.874560019999976, 49.272492495000073 ], [ -122.874506588999978, 49.272572099000108 ], [ -122.873974513999912, 49.272922393000044 ], [ -122.873803503999966, 49.272972401000096 ], [ -122.873584906999966, 49.272993103000083 ], [ -122.872903406999953, 49.272970713000085 ], [ -122.872758291999958, 49.272910093000071 ], [ -122.872676201999965, 49.272875813000084 ], [ -122.872558895999973, 49.272475990000068 ], [ -122.871858198, 49.272473705000046 ], [ -122.871757723999963, 49.27301691700012 ], [ -122.8717392, 49.273117098000043 ], [ -122.871020164999976, 49.273702930000056 ], [ -122.87086369499994, 49.273830407000055 ], [ -122.870572239999959, 49.273978567000036 ], [ -122.870176408999924, 49.274179807000088 ], [ -122.869982099999916, 49.274512893000079 ], [ -122.869847714999963, 49.274875695000027 ], [ -122.869452689999903, 49.275260082000081 ], [ -122.869200500999938, 49.275505483000074 ], [ -122.869529800999942, 49.275512417000094 ], [ -122.869419800999978, 49.275777604000048 ], [ -122.869396246999969, 49.275875541000111 ], [ -122.86936060799998, 49.276023685000055 ], [ -122.869304932999952, 49.276208380000078 ], [ -122.86930140699998, 49.276220170000045 ], [ -122.869298704999935, 49.276229083000032 ], [ -122.869119494999921, 49.276440089000076 ], [ -122.868896396999972, 49.276547997000101 ], [ -122.868527613999973, 49.276616603000036 ], [ -122.868513799999945, 49.276616794000134 ], [ -122.866773704999943, 49.276639538000026 ], [ -122.866761355999927, 49.276129943000079 ], [ -122.866754342, 49.275841544000066 ], [ -122.866747205999928, 49.275546900000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.769110764430577", "sL_AssetLoss": "6410", "sL_BldgLoss": "4930", "sL_StrLoss": "2580", "sL_NStrLoss": "2350", "sL_ContLoss": "1480", "geom_point": "0101000020E6100000456F86559BB75EC037D738B4ABA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867937134999963, 49.270881962000082 ], [ -122.867863497999949, 49.270869180000048 ], [ -122.867007626999907, 49.270868198000109 ], [ -122.867007902999944, 49.270765450000077 ], [ -122.868555374999914, 49.270775470000089 ], [ -122.868569162999975, 49.270775578000091 ], [ -122.87031771, 49.27078960500009 ], [ -122.870306947999921, 49.270819304000035 ], [ -122.870306810999978, 49.270871948000028 ], [ -122.870248913999902, 49.270871883000083 ], [ -122.870232335999972, 49.270884063000047 ], [ -122.869932634999884, 49.270995762000041 ], [ -122.869360036000018, 49.271002362000083 ], [ -122.868592135999961, 49.270969362000088 ], [ -122.868139834999965, 49.270889363000016 ], [ -122.867937134999963, 49.270881962000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84685250", "BldgCostT": "55280000", "sL_LossRatio": "0.729531284313445", "sL_AssetLoss": "1047330", "sL_BldgLoss": "764060", "sL_StrLoss": "338810", "sL_NStrLoss": "425250", "sL_ContLoss": "283270", "geom_point": "0101000020E610000020834F52E4B75EC082FF42C943A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872957156999988, 49.275175120000043 ], [ -122.87237418899997, 49.274948896000112 ], [ -122.871626, 49.27585419800009 ], [ -122.871588603999967, 49.275926315000127 ], [ -122.871393715999929, 49.27630239500008 ], [ -122.87135852099999, 49.276683398000038 ], [ -122.871302096999926, 49.277294293000061 ], [ -122.871351301999965, 49.27764439300006 ], [ -122.871967173999963, 49.277570821000083 ], [ -122.872002755000011, 49.278118402000061 ], [ -122.869393848999948, 49.278207808000076 ], [ -122.869372004, 49.277687899000043 ], [ -122.869354489999949, 49.277152198000095 ], [ -122.86933791099996, 49.27662479100011 ], [ -122.869298704999935, 49.276229083000032 ], [ -122.86930140699998, 49.276220170000045 ], [ -122.869304932999952, 49.276208380000078 ], [ -122.86936060799998, 49.276023685000055 ], [ -122.869396246999969, 49.275875541000111 ], [ -122.869419800999978, 49.275777604000048 ], [ -122.869529800999942, 49.275512417000094 ], [ -122.869200500999938, 49.275505483000074 ], [ -122.869452689999903, 49.275260082000081 ], [ -122.869847714999963, 49.274875695000027 ], [ -122.869982099999916, 49.274512893000079 ], [ -122.870176408999924, 49.274179807000088 ], [ -122.870572239999959, 49.273978567000036 ], [ -122.87086369499994, 49.273830407000055 ], [ -122.871020164999976, 49.273702930000056 ], [ -122.8717392, 49.273117098000043 ], [ -122.871757723999963, 49.27301691700012 ], [ -122.871858198, 49.272473705000046 ], [ -122.872558895999973, 49.272475990000068 ], [ -122.872676201999965, 49.272875813000084 ], [ -122.872758291999958, 49.272910093000071 ], [ -122.872903406999953, 49.272970713000085 ], [ -122.873584906999966, 49.272993103000083 ], [ -122.873803503999966, 49.272972401000096 ], [ -122.873974513999912, 49.272922393000044 ], [ -122.874506588999978, 49.272572099000108 ], [ -122.874560019999976, 49.272492495000073 ], [ -122.875648600999938, 49.272469088000101 ], [ -122.876224186999977, 49.272493009000108 ], [ -122.875435806999988, 49.273567410000105 ], [ -122.875924806999976, 49.273714 ], [ -122.87586739299995, 49.273954707000023 ], [ -122.876168499999935, 49.276114612000057 ], [ -122.876303288999935, 49.276460793000133 ], [ -122.87649199199997, 49.27671940000009 ], [ -122.877227996, 49.277382084000081 ], [ -122.878807186999907, 49.27877010000006 ], [ -122.875495118999964, 49.278766106000035 ], [ -122.875494085999946, 49.277863507000134 ], [ -122.875458212, 49.277029089000138 ], [ -122.875431079999942, 49.276334536000057 ], [ -122.875422906999958, 49.276125489000066 ], [ -122.875204213999936, 49.276047106000071 ], [ -122.872957156999988, 49.275175120000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62477719", "BldgCostT": "37255412", "sL_LossRatio": "0.67296511627907", "sL_AssetLoss": "915040", "sL_BldgLoss": "615790", "sL_StrLoss": "238600", "sL_NStrLoss": "377190", "sL_ContLoss": "299250", "geom_point": "0101000020E6100000B26B4110DCB75EC08F2971808DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.871371583999988, 49.280674748000081 ], [ -122.870068064999913, 49.280087111000036 ], [ -122.87012074499998, 49.279760997000025 ], [ -122.870176702999956, 49.279529861000135 ], [ -122.870847911999988, 49.279269832000054 ], [ -122.872775068999914, 49.278548163000075 ], [ -122.87165536199997, 49.278734891000035 ], [ -122.870217754999985, 49.27898167200005 ], [ -122.868844005999946, 49.279217487000089 ], [ -122.86919689699999, 49.279018698000108 ], [ -122.869346583999942, 49.278878097000081 ], [ -122.869414688999939, 49.27870440100007 ], [ -122.86939388499998, 49.278209280000048 ], [ -122.869393848999948, 49.278207808000076 ], [ -122.872002755000011, 49.278118402000061 ], [ -122.871967173999963, 49.277570821000083 ], [ -122.871351301999965, 49.27764439300006 ], [ -122.871302096999926, 49.277294293000061 ], [ -122.87135852099999, 49.276683398000038 ], [ -122.871393715999929, 49.27630239500008 ], [ -122.871588603999967, 49.275926315000127 ], [ -122.871626, 49.27585419800009 ], [ -122.87237418899997, 49.274948896000112 ], [ -122.872957156999988, 49.275175120000043 ], [ -122.875204213999936, 49.276047106000071 ], [ -122.875422906999958, 49.276125489000066 ], [ -122.875431079999942, 49.276334536000057 ], [ -122.875458212, 49.277029089000138 ], [ -122.875494085999946, 49.277863507000134 ], [ -122.875495118999964, 49.278766106000035 ], [ -122.873355102999952, 49.278746490000103 ], [ -122.872389120999955, 49.279374309000026 ], [ -122.87170088699996, 49.279654401000101 ], [ -122.871593284999975, 49.27976210500006 ], [ -122.871533113999959, 49.279879204000068 ], [ -122.871588014999986, 49.280042992000062 ], [ -122.871627093999962, 49.280136905000091 ], [ -122.871707393999941, 49.280208605000091 ], [ -122.87195577499989, 49.280337397000025 ], [ -122.872072306999925, 49.280362386000071 ], [ -122.874039720999917, 49.28041578800002 ], [ -122.874700169999983, 49.280499394000067 ], [ -122.875174997999963, 49.280559503000092 ], [ -122.872685764999957, 49.280644435000035 ], [ -122.871371583999988, 49.280674748000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17995166", "BldgCostT": "11201666", "sL_LossRatio": "0.677990294033685", "sL_AssetLoss": "280240", "sL_BldgLoss": "190000", "sL_StrLoss": "84740", "sL_NStrLoss": "105260", "sL_ContLoss": "90240", "geom_point": "0101000020E61000007B02D5FDEBB75EC0099B6CC9CBA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.874700169999983, 49.280499394000067 ], [ -122.874039720999917, 49.28041578800002 ], [ -122.872072306999925, 49.280362386000071 ], [ -122.87195577499989, 49.280337397000025 ], [ -122.871707393999941, 49.280208605000091 ], [ -122.871627093999962, 49.280136905000091 ], [ -122.871588014999986, 49.280042992000062 ], [ -122.871533113999959, 49.279879204000068 ], [ -122.871593284999975, 49.27976210500006 ], [ -122.87170088699996, 49.279654401000101 ], [ -122.872389120999955, 49.279374309000026 ], [ -122.873355102999952, 49.278746490000103 ], [ -122.875495118999964, 49.278766106000035 ], [ -122.875453498999917, 49.279730603000139 ], [ -122.875421320999976, 49.279837650000026 ], [ -122.875260406000024, 49.280372807000077 ], [ -122.875174997999963, 49.280559503000092 ], [ -122.874700169999983, 49.280499394000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80724415", "BldgCostT": "51941665", "sL_LossRatio": "0.711544259967125", "sL_AssetLoss": "1028130", "sL_BldgLoss": "731560", "sL_StrLoss": "332980", "sL_NStrLoss": "398580", "sL_ContLoss": "296570", "geom_point": "0101000020E6100000B3075A8121B85EC0AFFF106EF4A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879508206999972, 49.27876958300007 ], [ -122.880895996, 49.278775488000051 ], [ -122.880934358999966, 49.279580235000047 ], [ -122.880943302, 49.279767806000031 ], [ -122.880891653999953, 49.280009846000063 ], [ -122.880861012999929, 49.280153686000119 ], [ -122.879929691999962, 49.281656402000074 ], [ -122.879519089999974, 49.282344489000039 ], [ -122.879325393999963, 49.282343391000055 ], [ -122.877965901999943, 49.282529310000129 ], [ -122.877163997999915, 49.282699798000074 ], [ -122.87661011599999, 49.282719799000134 ], [ -122.87330088799996, 49.28272939500004 ], [ -122.872923686999954, 49.282799496000102 ], [ -122.872673487, 49.282901291000101 ], [ -122.872255495999923, 49.283250393000039 ], [ -122.871342494999965, 49.282806013000048 ], [ -122.871506291999978, 49.282477394000125 ], [ -122.87171789199995, 49.282233085000037 ], [ -122.871942717999971, 49.282059405000091 ], [ -122.872192590999987, 49.281920699000054 ], [ -122.872462401999911, 49.281813296000074 ], [ -122.872960798999927, 49.281698891000048 ], [ -122.873226298999953, 49.281675009000011 ], [ -122.874196147999953, 49.281655303000086 ], [ -122.874275790999903, 49.281653704000114 ], [ -122.87448708099997, 49.281649406000085 ], [ -122.874584885, 49.28140179400004 ], [ -122.874644486999955, 49.281327647000076 ], [ -122.874919492999965, 49.280985415000046 ], [ -122.87507682799999, 49.280723148000021 ], [ -122.875174997999963, 49.280559503000092 ], [ -122.875260406000024, 49.280372807000077 ], [ -122.875421320999976, 49.279837650000026 ], [ -122.875453498999917, 49.279730603000139 ], [ -122.875495118999964, 49.278766106000035 ], [ -122.878807186999907, 49.27877010000006 ], [ -122.879508206999972, 49.27876958300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84525334", "BldgCostT": "58293334", "sL_LossRatio": "0.777419077352791", "sL_AssetLoss": "988135", "sL_BldgLoss": "768195", "sL_StrLoss": "360015", "sL_NStrLoss": "408180", "sL_ContLoss": "219940", "geom_point": "0101000020E6100000609A5C6BF3B75EC044B9D9C46EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.871266906999963, 49.284129792000094 ], [ -122.871286776999952, 49.283132604000151 ], [ -122.87128818399999, 49.283061091000086 ], [ -122.871342494999965, 49.282806013000048 ], [ -122.872255495999923, 49.283250393000039 ], [ -122.872673487, 49.282901291000101 ], [ -122.872923686999954, 49.282799496000102 ], [ -122.87330088799996, 49.28272939500004 ], [ -122.87661011599999, 49.282719799000134 ], [ -122.877163997999915, 49.282699798000074 ], [ -122.876828896999925, 49.283552193000077 ], [ -122.876578410999954, 49.284455693000019 ], [ -122.876425311999952, 49.284993591000053 ], [ -122.876303301999954, 49.285539598000092 ], [ -122.876292702999976, 49.286308603000087 ], [ -122.876293370999932, 49.286537874000075 ], [ -122.87629480799994, 49.287032013000072 ], [ -122.874714088999937, 49.287029485000097 ], [ -122.874509311999958, 49.287070406000062 ], [ -122.874247219999944, 49.287226798000148 ], [ -122.873868906999917, 49.286985194000081 ], [ -122.873724196999959, 49.286847712000082 ], [ -122.873451492999962, 49.28630560600007 ], [ -122.871655087999912, 49.285303200000087 ], [ -122.871415221999925, 49.28488629600016 ], [ -122.871121596999956, 49.284653489000078 ], [ -122.871266906999963, 49.284129792000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210340281", "BldgCostT": "135763603", "sL_LossRatio": "0.723713469303014", "sL_AssetLoss": "1830310", "sL_BldgLoss": "1324620", "sL_StrLoss": "604580", "sL_NStrLoss": "720040", "sL_ContLoss": "505690", "geom_point": "0101000020E610000023CEFEFEDCB75EC0A1EF55C8E8A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.874689978999953, 49.291078003000102 ], [ -122.873833894999933, 49.290868596000109 ], [ -122.872925002999978, 49.290544988000072 ], [ -122.87217939, 49.290225192000065 ], [ -122.87049048399993, 49.289442108000031 ], [ -122.869620291999965, 49.288933100000051 ], [ -122.86897400399999, 49.288466704000037 ], [ -122.868381009999965, 49.2878836800001 ], [ -122.867753899999968, 49.287093508000105 ], [ -122.867505500999926, 49.286660203000075 ], [ -122.867388202999962, 49.286300989000061 ], [ -122.867697904999929, 49.286254094000064 ], [ -122.86787582099997, 49.286225007000034 ], [ -122.868068793, 49.286298193000043 ], [ -122.869306110999958, 49.287213298000061 ], [ -122.86938919699999, 49.287163501000109 ], [ -122.869456590999931, 49.287081597000075 ], [ -122.869429691, 49.286930390000109 ], [ -122.869362638999959, 49.286769559000035 ], [ -122.869263948999958, 49.286532781000055 ], [ -122.869718861999957, 49.286068005000132 ], [ -122.869826393999986, 49.286057936000077 ], [ -122.870657502999933, 49.285825685000098 ], [ -122.870863293999989, 49.28573874900006 ], [ -122.870861285999965, 49.285719796000109 ], [ -122.871132714999959, 49.284855605000082 ], [ -122.871131234999922, 49.28482896000002 ], [ -122.871121596999956, 49.284653489000078 ], [ -122.871415221999925, 49.28488629600016 ], [ -122.871655087999912, 49.285303200000087 ], [ -122.873451492999962, 49.28630560600007 ], [ -122.873724196999959, 49.286847712000082 ], [ -122.873868906999917, 49.286985194000081 ], [ -122.874247219999944, 49.287226798000148 ], [ -122.874509311999958, 49.287070406000062 ], [ -122.874714088999937, 49.287029485000097 ], [ -122.87629480799994, 49.287032013000072 ], [ -122.876300315999956, 49.287767199000022 ], [ -122.876306922999959, 49.288036795 ], [ -122.876263273999925, 49.288173293000114 ], [ -122.876196310999916, 49.288249790000116 ], [ -122.87665875499998, 49.288424840000076 ], [ -122.876645620999952, 49.288702419000032 ], [ -122.877442418999962, 49.291097163000067 ], [ -122.877512603999975, 49.291095790000021 ], [ -122.87755019599993, 49.291272496000012 ], [ -122.877536352000021, 49.291272495000023 ], [ -122.876524408999927, 49.291272318000075 ], [ -122.87632941, 49.291272292000087 ], [ -122.875625094999975, 49.291217701000058 ], [ -122.874689978999953, 49.291078003000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.773684210526316", "sL_AssetLoss": "7600", "sL_BldgLoss": "5880", "sL_StrLoss": "2740", "sL_NStrLoss": "3140", "sL_ContLoss": "1720", "geom_point": "0101000020E6100000CC232477BDB85EC0E414FCBA7CA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885946212999954, 49.284651075000092 ], [ -122.887183753, 49.284652289000078 ], [ -122.887181904999949, 49.285461854000076 ], [ -122.885944344999984, 49.285460639000043 ], [ -122.885946212999954, 49.284651075000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8530917", "BldgCostT": "5411667", "sL_LossRatio": "0.710668103448276", "sL_AssetLoss": "92800", "sL_BldgLoss": "65950", "sL_StrLoss": "29250", "sL_NStrLoss": "36700", "sL_ContLoss": "26850", "geom_point": "0101000020E6100000C1AE60FA22B95EC0B55E99D8F8A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893047641999928, 49.286505237000029 ], [ -122.894452054999988, 49.286545645000082 ], [ -122.894638525999966, 49.28722537500007 ], [ -122.89433169499992, 49.28961983500011 ], [ -122.894311459999969, 49.289777728000089 ], [ -122.89400411299999, 49.289879795000019 ], [ -122.893732175999929, 49.289970093000079 ], [ -122.892997480999952, 49.290163308000096 ], [ -122.892285217999969, 49.290288696000118 ], [ -122.891675500999952, 49.290361288000106 ], [ -122.89087201699999, 49.290390392000063 ], [ -122.89005339699996, 49.290359615000042 ], [ -122.88966384099993, 49.29031193700007 ], [ -122.88973432, 49.28926146500006 ], [ -122.892856893, 49.289351376000091 ], [ -122.893047641999928, 49.286505237000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117209584", "BldgCostT": "79158334", "sL_LossRatio": "0.73942204241879", "sL_AssetLoss": "1589390", "sL_BldgLoss": "1175230", "sL_StrLoss": "519240", "sL_NStrLoss": "655990", "sL_ContLoss": "414160", "geom_point": "0101000020E61000009B36985DA2B85EC0D1B989F7EFA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87755019599993, 49.291272496000012 ], [ -122.877512603999975, 49.291095790000021 ], [ -122.877442418999962, 49.291097163000067 ], [ -122.876645620999952, 49.288702419000032 ], [ -122.87665875499998, 49.288424840000076 ], [ -122.876196310999916, 49.288249790000116 ], [ -122.876263273999925, 49.288173293000114 ], [ -122.876306922999959, 49.288036795 ], [ -122.876300315999956, 49.287767199000022 ], [ -122.87629480799994, 49.287032013000072 ], [ -122.876293370999932, 49.286537874000075 ], [ -122.876292702999976, 49.286308603000087 ], [ -122.876303301999954, 49.285539598000092 ], [ -122.876425311999952, 49.284993591000053 ], [ -122.876578410999954, 49.284455693000019 ], [ -122.876828896999925, 49.283552193000077 ], [ -122.877163997999915, 49.282699798000074 ], [ -122.877965901999943, 49.282529310000129 ], [ -122.879325393999963, 49.282343391000055 ], [ -122.879519089999974, 49.282344489000039 ], [ -122.879929691999962, 49.281656402000074 ], [ -122.880861012999929, 49.280153686000119 ], [ -122.880891653999953, 49.280009846000063 ], [ -122.880943302, 49.279767806000031 ], [ -122.880934358999966, 49.279580235000047 ], [ -122.880895996, 49.278775488000051 ], [ -122.880875719999935, 49.278365344000079 ], [ -122.880785878999959, 49.276547878000031 ], [ -122.880778407999983, 49.276396595000023 ], [ -122.880740027999963, 49.275738228000058 ], [ -122.880698004999886, 49.275016796000038 ], [ -122.880670787999975, 49.27456290000007 ], [ -122.881351090999928, 49.274562809000038 ], [ -122.881537997999956, 49.274583507000067 ], [ -122.881760183999972, 49.274609693000102 ], [ -122.882915007999927, 49.274605187000105 ], [ -122.88293830399999, 49.275423894000092 ], [ -122.885504818999948, 49.275434003000044 ], [ -122.885493918999913, 49.274614790000157 ], [ -122.888014278999961, 49.27463530200005 ], [ -122.88830632199992, 49.274605002000051 ], [ -122.888495778, 49.274526699000027 ], [ -122.888752492999942, 49.274345807000074 ], [ -122.889226994999902, 49.274586494000076 ], [ -122.889441602999952, 49.274665598000048 ], [ -122.889657295999911, 49.274687209000056 ], [ -122.891051303, 49.274700313000096 ], [ -122.892885004999982, 49.274714390000099 ], [ -122.892872056999963, 49.274456375000092 ], [ -122.89276261099999, 49.272275904000033 ], [ -122.892707704, 49.272089605000126 ], [ -122.892584199999973, 49.271963512000113 ], [ -122.892080477999912, 49.271646295000089 ], [ -122.892575213999976, 49.271278590000101 ], [ -122.892659576999947, 49.271146798000117 ], [ -122.892577807999913, 49.271054397000043 ], [ -122.892421122999977, 49.270973305000034 ], [ -122.892086814999985, 49.2708960860001 ], [ -122.889652089999942, 49.270912492000093 ], [ -122.889064167999962, 49.270916607000039 ], [ -122.88741517599999, 49.270928094000013 ], [ -122.886157214999955, 49.270936903000099 ], [ -122.88485809899997, 49.270945307000027 ], [ -122.884221496999956, 49.270949489000067 ], [ -122.883997805999982, 49.270904304000076 ], [ -122.883784604999931, 49.270806197000063 ], [ -122.883538, 49.270650516000089 ], [ -122.883482272999984, 49.270633409000069 ], [ -122.893424315999951, 49.270293379000037 ], [ -122.893430216999974, 49.270413195000053 ], [ -122.893451017999951, 49.270873926000057 ], [ -122.893614464999942, 49.274489603000134 ], [ -122.893644708999901, 49.27515836700006 ], [ -122.893674322999971, 49.275813844000027 ], [ -122.893676583999962, 49.275864094000021 ], [ -122.893677698999966, 49.276069099000033 ], [ -122.893681654999966, 49.276167643000086 ], [ -122.893687355999987, 49.276309219000119 ], [ -122.893714166999928, 49.276832676000069 ], [ -122.892975872999941, 49.276831995000101 ], [ -122.89297704099999, 49.276292284000064 ], [ -122.892564598999925, 49.276291901000036 ], [ -122.892562768999952, 49.2771339190001 ], [ -122.89291167099999, 49.277143963000071 ], [ -122.892670675999966, 49.28074038200009 ], [ -122.892180704999959, 49.280726276000053 ], [ -122.892161970999894, 49.281005794000066 ], [ -122.891729417999898, 49.280993339000126 ], [ -122.89172907699999, 49.281148520000087 ], [ -122.892141561999921, 49.281148906000048 ], [ -122.892137442999939, 49.283037888000131 ], [ -122.88842494499994, 49.283034364000052 ], [ -122.888423117999935, 49.283843927000134 ], [ -122.886773091999942, 49.283842323000059 ], [ -122.886772474999958, 49.284112177000097 ], [ -122.886159767, 49.284111576000036 ], [ -122.886140817999902, 49.28439373100008 ], [ -122.882475576999923, 49.284287944000035 ], [ -122.882346765999955, 49.286203517000018 ], [ -122.879842446999987, 49.286131166000096 ], [ -122.879759427999915, 49.28736467600001 ], [ -122.879417955999926, 49.287354807000078 ], [ -122.879364260999921, 49.288152508000032 ], [ -122.880162526999968, 49.288153339000132 ], [ -122.88016077099995, 49.288878183000065 ], [ -122.882030001999965, 49.28893218300005 ], [ -122.881989864000019, 49.289528957000051 ], [ -122.885137028999964, 49.289619801000065 ], [ -122.885115919999961, 49.289933970000021 ], [ -122.886391703999948, 49.289970770000068 ], [ -122.886391136999976, 49.28997920900008 ], [ -122.885451801999963, 49.289974700000045 ], [ -122.883158397999964, 49.290101296000039 ], [ -122.882160182999939, 49.290267109000055 ], [ -122.88167518599991, 49.290385507000103 ], [ -122.879965098999961, 49.290873910000116 ], [ -122.87868568099999, 49.291152203000102 ], [ -122.87755019599993, 49.291272496000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94396136", "BldgCostT": "61712079", "sL_LossRatio": "0.708336451141118", "sL_AssetLoss": "1470050", "sL_BldgLoss": "1041290", "sL_StrLoss": "455010", "sL_NStrLoss": "586280", "sL_ContLoss": "428760", "geom_point": "0101000020E6100000CE69E42D36B85EC09BDB41154CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876168499999935, 49.276114612000057 ], [ -122.87586739299995, 49.273954707000023 ], [ -122.875924806999976, 49.273714 ], [ -122.875435806999988, 49.273567410000105 ], [ -122.876224186999977, 49.272493009000108 ], [ -122.876476302999919, 49.272503899000107 ], [ -122.877047681999926, 49.272590695000098 ], [ -122.878668703999921, 49.272598803000115 ], [ -122.878998488999969, 49.272600291000082 ], [ -122.877838097999955, 49.274281893000122 ], [ -122.87916769899999, 49.274679802000044 ], [ -122.879440691999932, 49.274768795000092 ], [ -122.880304187999968, 49.275007310000049 ], [ -122.880698004999886, 49.275016796000038 ], [ -122.880740027999963, 49.275738228000058 ], [ -122.880778407999983, 49.276396595000023 ], [ -122.880785878999959, 49.276547878000031 ], [ -122.880875719999935, 49.278365344000079 ], [ -122.880895996, 49.278775488000051 ], [ -122.879508206999972, 49.27876958300007 ], [ -122.878807186999907, 49.27877010000006 ], [ -122.877227996, 49.277382084000081 ], [ -122.87649199199997, 49.27671940000009 ], [ -122.876303288999935, 49.276460793000133 ], [ -122.876168499999935, 49.276114612000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136620666", "BldgCostT": "85641666", "sL_LossRatio": "0.727809807912726", "sL_AssetLoss": "1389837", "sL_BldgLoss": "1011537", "sL_StrLoss": "478127", "sL_NStrLoss": "533410", "sL_ContLoss": "378300", "geom_point": "0101000020E610000043CE46D75AB85EC0CC48BDA7F2A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87916769899999, 49.274679802000044 ], [ -122.877838097999955, 49.274281893000122 ], [ -122.878998488999969, 49.272600291000082 ], [ -122.878668703999921, 49.272598803000115 ], [ -122.877047681999926, 49.272590695000098 ], [ -122.876476302999919, 49.272503899000107 ], [ -122.876224186999977, 49.272493009000108 ], [ -122.878236586999947, 49.270852202000079 ], [ -122.880464127999943, 49.271065951000026 ], [ -122.880505592999938, 49.271952906000088 ], [ -122.8813559, 49.271937795000014 ], [ -122.882191693999928, 49.271912399000037 ], [ -122.88242629599992, 49.271958809000061 ], [ -122.883625991999935, 49.272675418000048 ], [ -122.88405679499999, 49.272951800000087 ], [ -122.884146814999966, 49.273145408000047 ], [ -122.88423119199993, 49.274610808000048 ], [ -122.882915007999927, 49.274605187000105 ], [ -122.881760183999972, 49.274609693000102 ], [ -122.881537997999956, 49.274583507000067 ], [ -122.881351090999928, 49.274562809000038 ], [ -122.880670787999975, 49.27456290000007 ], [ -122.880698004999886, 49.275016796000038 ], [ -122.880304187999968, 49.275007310000049 ], [ -122.879440691999932, 49.274768795000092 ], [ -122.87916769899999, 49.274679802000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79878083", "BldgCostT": "55088333", "sL_LossRatio": "0.778469306937237", "sL_AssetLoss": "907811", "sL_BldgLoss": "706703", "sL_StrLoss": "331603", "sL_NStrLoss": "375100", "sL_ContLoss": "201108", "geom_point": "0101000020E6100000916EF89B98B85EC04D071D3ADEA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.88242629599992, 49.271958809000061 ], [ -122.882191693999928, 49.271912399000037 ], [ -122.8813559, 49.271937795000014 ], [ -122.880505592999938, 49.271952906000088 ], [ -122.880464127999943, 49.271065951000026 ], [ -122.88044809499992, 49.270723398000065 ], [ -122.880492481999966, 49.270614699000134 ], [ -122.880618699999957, 49.27057689700014 ], [ -122.88229622099999, 49.270563304000113 ], [ -122.883278220999927, 49.270570901000049 ], [ -122.883482272999984, 49.270633409000069 ], [ -122.883538, 49.270650516000089 ], [ -122.883784604999931, 49.270806197000063 ], [ -122.883997805999982, 49.270904304000076 ], [ -122.884221496999956, 49.270949489000067 ], [ -122.88485809899997, 49.270945307000027 ], [ -122.886157214999955, 49.270936903000099 ], [ -122.88741517599999, 49.270928094000013 ], [ -122.887409885999915, 49.272235097000085 ], [ -122.887181921999968, 49.27266460200007 ], [ -122.8868969899999, 49.272916706000046 ], [ -122.886642008999971, 49.273070587000099 ], [ -122.88622421499997, 49.273214396000078 ], [ -122.885593280999942, 49.273339397000058 ], [ -122.88549007599994, 49.273402200000142 ], [ -122.885493918999913, 49.274614790000157 ], [ -122.885504818999948, 49.275434003000044 ], [ -122.88293830399999, 49.275423894000092 ], [ -122.882915007999927, 49.274605187000105 ], [ -122.88423119199993, 49.274610808000048 ], [ -122.884146814999966, 49.273145408000047 ], [ -122.88405679499999, 49.272951800000087 ], [ -122.883625991999935, 49.272675418000048 ], [ -122.88242629599992, 49.271958809000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95771333", "BldgCostT": "64103333", "sL_LossRatio": "0.7567715663032", "sL_AssetLoss": "1162508", "sL_BldgLoss": "879753", "sL_StrLoss": "402953", "sL_NStrLoss": "476800", "sL_ContLoss": "282755", "geom_point": "0101000020E61000004150666AEFB85EC0CEC75AE8EFA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885493918999913, 49.274614790000157 ], [ -122.88549007599994, 49.273402200000142 ], [ -122.885593280999942, 49.273339397000058 ], [ -122.88622421499997, 49.273214396000078 ], [ -122.886642008999971, 49.273070587000099 ], [ -122.8868969899999, 49.272916706000046 ], [ -122.887181921999968, 49.27266460200007 ], [ -122.887409885999915, 49.272235097000085 ], [ -122.88741517599999, 49.270928094000013 ], [ -122.889064167999962, 49.270916607000039 ], [ -122.889652089999942, 49.270912492000093 ], [ -122.892086814999985, 49.2708960860001 ], [ -122.892421122999977, 49.270973305000034 ], [ -122.892577807999913, 49.271054397000043 ], [ -122.892659576999947, 49.271146798000117 ], [ -122.892575213999976, 49.271278590000101 ], [ -122.892080477999912, 49.271646295000089 ], [ -122.892584199999973, 49.271963512000113 ], [ -122.892707704, 49.272089605000126 ], [ -122.89276261099999, 49.272275904000033 ], [ -122.892872056999963, 49.274456375000092 ], [ -122.892885004999982, 49.274714390000099 ], [ -122.891051303, 49.274700313000096 ], [ -122.889657295999911, 49.274687209000056 ], [ -122.889441602999952, 49.274665598000048 ], [ -122.889226994999902, 49.274586494000076 ], [ -122.888752492999942, 49.274345807000074 ], [ -122.888495778, 49.274526699000027 ], [ -122.88830632199992, 49.274605002000051 ], [ -122.888014278999961, 49.27463530200005 ], [ -122.885493918999913, 49.274614790000157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31839666", "BldgCostT": "21486666", "sL_LossRatio": "0.765129726620448", "sL_AssetLoss": "330310", "sL_BldgLoss": "252730", "sL_StrLoss": "119500", "sL_NStrLoss": "133230", "sL_ContLoss": "77580", "geom_point": "0101000020E610000069290FC1E7B65EC086517BD741A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.864403335999896, 49.305427136000056 ], [ -122.864370249999965, 49.305679 ], [ -122.860447958999913, 49.305588047000079 ], [ -122.859292536999959, 49.306867851 ], [ -122.858546613999948, 49.307694008000105 ], [ -122.858370205999904, 49.307783184000087 ], [ -122.857919103, 49.307796899000074 ], [ -122.856852420999957, 49.307812197000047 ], [ -122.85288983599996, 49.30810570900011 ], [ -122.852893849999944, 49.308046623000102 ], [ -122.853238655999988, 49.308056670000013 ], [ -122.85326735699999, 49.307634031000077 ], [ -122.855402903999931, 49.307696228000033 ], [ -122.855489036, 49.306426982000097 ], [ -122.85688213, 49.306467532000106 ], [ -122.856919306999913, 49.305919415000105 ], [ -122.857888993999936, 49.305947630000077 ], [ -122.857923892999963, 49.305432938000067 ], [ -122.858975613000013, 49.305463530000061 ], [ -122.858975948999927, 49.305458564000091 ], [ -122.859492358999915, 49.305473581000101 ], [ -122.859493326999925, 49.305459276000121 ], [ -122.861337088999974, 49.305512873000126 ], [ -122.861341352999915, 49.305449921000061 ], [ -122.862230172999915, 49.305475746000084 ], [ -122.862237722999936, 49.305364241000071 ], [ -122.864403335999896, 49.305427136000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.791730474732006", "sL_AssetLoss": "13060", "sL_BldgLoss": "10340", "sL_StrLoss": "4950", "sL_NStrLoss": "5390", "sL_ContLoss": "2720", "geom_point": "0101000020E61000008D7E349C72B65EC0F2C8E56032A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84995688399998, 49.298446997 ], [ -122.850346985000016, 49.298324494000063 ], [ -122.851667070999923, 49.298140641000053 ], [ -122.851666369999975, 49.298374757000069 ], [ -122.850841114999966, 49.298373695000109 ], [ -122.850840299999973, 49.298643548000101 ], [ -122.849987928999937, 49.298642446000052 ], [ -122.84995688399998, 49.298446997 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.786192602040816", "sL_AssetLoss": "62720", "sL_BldgLoss": "49310", "sL_StrLoss": "24390", "sL_NStrLoss": "24920", "sL_ContLoss": "13410", "geom_point": "0101000020E6100000AC0252EE80B65EC011EA5C303CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851249111999948, 49.305196817000144 ], [ -122.85206561899993, 49.305220619000103 ], [ -122.851864461999952, 49.308181634000036 ], [ -122.851454629000017, 49.30821197900007 ], [ -122.851152636999984, 49.305813630000067 ], [ -122.851249111999948, 49.305196817000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198026561", "BldgCostT": "129223190", "sL_LossRatio": "0.740353733384191", "sL_AssetLoss": "2052789", "sL_BldgLoss": "1519790", "sL_StrLoss": "713660", "sL_NStrLoss": "806130", "sL_ContLoss": "532999", "geom_point": "0101000020E6100000CD1DD4B0E5B65EC080AD3BAB3FA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850442522999941, 49.293734515000018 ], [ -122.851214113999973, 49.292186788000095 ], [ -122.850976488999962, 49.292851003000067 ], [ -122.851004489999937, 49.293046402000058 ], [ -122.85115060899993, 49.293284901000078 ], [ -122.851520496999939, 49.293202008000094 ], [ -122.851990692999934, 49.293202202000018 ], [ -122.852227000999932, 49.293163985000028 ], [ -122.852397586, 49.293081598000121 ], [ -122.852308490999917, 49.29293670300013 ], [ -122.852235211, 49.292700295000067 ], [ -122.852259597999975, 49.29238129900007 ], [ -122.852686877999986, 49.292485592000084 ], [ -122.85295070299999, 49.292590580000102 ], [ -122.854286417999944, 49.29337 ], [ -122.855314573999976, 49.294021489000073 ], [ -122.855734210999969, 49.294237108000111 ], [ -122.855803499999951, 49.294272708000037 ], [ -122.855306512999945, 49.294749190000118 ], [ -122.855318004999916, 49.294821611000053 ], [ -122.855572617999954, 49.294939804000101 ], [ -122.856828391999898, 49.295257402000118 ], [ -122.857418987999907, 49.295286295000018 ], [ -122.857926688999953, 49.295444298000099 ], [ -122.858092501999948, 49.295532895000093 ], [ -122.859578557999924, 49.296610084000108 ], [ -122.862584094999974, 49.298788502000043 ], [ -122.863143784999977, 49.29911189600012 ], [ -122.863931530999949, 49.299514247000126 ], [ -122.863980071999919, 49.299539049000039 ], [ -122.864058295999911, 49.29957900300009 ], [ -122.863869993999941, 49.299963614000063 ], [ -122.863607694999985, 49.299877601000041 ], [ -122.863487071999913, 49.299825036000129 ], [ -122.86149738899999, 49.298957810000019 ], [ -122.861255494999966, 49.298914700000083 ], [ -122.860949125999966, 49.298931103000079 ], [ -122.860684492999923, 49.299021588000102 ], [ -122.860537980999979, 49.299114596000081 ], [ -122.860433885999967, 49.299289891000072 ], [ -122.860430304999966, 49.299485308000072 ], [ -122.860527298999941, 49.299944981000067 ], [ -122.860529185999923, 49.299953904000049 ], [ -122.861215411999979, 49.29991350700012 ], [ -122.861497200999949, 49.299975685000106 ], [ -122.861557099999942, 49.300014947000129 ], [ -122.861651201999962, 49.300076587000085 ], [ -122.861839792999945, 49.300398308000105 ], [ -122.862035322999958, 49.300731335000073 ], [ -122.862287408999975, 49.301160788000054 ], [ -122.862302850999953, 49.301176220000052 ], [ -122.86251791199993, 49.301390909000084 ], [ -122.862694379999937, 49.301526612000025 ], [ -122.862979802999945, 49.301677185000059 ], [ -122.863393805999934, 49.301819000000187 ], [ -122.86395289099994, 49.302030696000038 ], [ -122.864374996999942, 49.302011407000087 ], [ -122.864650588999908, 49.301880702000098 ], [ -122.864705723000014, 49.301795547000033 ], [ -122.864763268000019, 49.301706614000068 ], [ -122.864746391999986, 49.302438623000114 ], [ -122.86455834399996, 49.302438403000025 ], [ -122.864473835999917, 49.302499663000049 ], [ -122.864446518999927, 49.302509688000093 ], [ -122.864445973999949, 49.302708126 ], [ -122.863907560999976, 49.302707493000064 ], [ -122.863655334999947, 49.302800062000046 ], [ -122.863296935999969, 49.302830363000027 ], [ -122.863162935999966, 49.302791862000049 ], [ -122.86281293499999, 49.302451762000018 ], [ -122.862801887999979, 49.302436331000067 ], [ -122.862796068999927, 49.302436324000055 ], [ -122.862796091999911, 49.302428234000018 ], [ -122.862672834999955, 49.302256062000026 ], [ -122.862477234999986, 49.302216563000108 ], [ -122.862050735999958, 49.302257762000053 ], [ -122.861971157999932, 49.302288468000022 ], [ -122.861970746999972, 49.30243534100007 ], [ -122.861706339999913, 49.302435026000062 ], [ -122.86158393499997, 49.302539862000096 ], [ -122.861747834999903, 49.30291716199999 ], [ -122.861556013999973, 49.303174148000075 ], [ -122.861555061999965, 49.303514262000085 ], [ -122.861242150999928, 49.303513887000065 ], [ -122.861142217999955, 49.303575032000026 ], [ -122.861141633999964, 49.303783620000047 ], [ -122.86073101199996, 49.30378312600002 ], [ -122.860325236, 49.303859862000095 ], [ -122.859903377999956, 49.303865925000132 ], [ -122.859902849999912, 49.304051980000096 ], [ -122.859490174999934, 49.304051478000055 ], [ -122.859488642999949, 49.304591185000049 ], [ -122.858663282999956, 49.304590179000115 ], [ -122.858662510999963, 49.304860031000096 ], [ -122.857011785999973, 49.304858001000063 ], [ -122.857014127999918, 49.304048442000095 ], [ -122.857426802999953, 49.304048951000034 ], [ -122.857429139999951, 49.303239391000062 ], [ -122.857016470999952, 49.303238881000041 ], [ -122.857019591999958, 49.302159468000134 ], [ -122.856606934999931, 49.302158956000078 ], [ -122.856608934999969, 49.301469269000044 ], [ -122.856248834999974, 49.301181762000056 ], [ -122.856409834999923, 49.301003262000044 ], [ -122.856610734999947, 49.300848890000061 ], [ -122.856611633999989, 49.30053983500008 ], [ -122.857012286999975, 49.300540332000047 ], [ -122.85707653499999, 49.30049096200009 ], [ -122.857387335999974, 49.300415663000067 ], [ -122.857589534999988, 49.300443162000143 ], [ -122.857647192999977, 49.300541116000083 ], [ -122.857849567999949, 49.300541364000068 ], [ -122.857848583999925, 49.300883254000084 ], [ -122.85796511199996, 49.301081216000078 ], [ -122.858673314999933, 49.301082084000058 ], [ -122.858674857999986, 49.300542377000028 ], [ -122.85908750399993, 49.300542881000069 ], [ -122.85909365899991, 49.298384052000046 ], [ -122.858681030999975, 49.298383548000096 ], [ -122.858684674999935, 49.297108933000096 ], [ -122.85859600199997, 49.297034171000121 ], [ -122.858272272999969, 49.29703377500006 ], [ -122.858273052999905, 49.29676188600007 ], [ -122.858053755999919, 49.296576990000105 ], [ -122.858012201999927, 49.297189977000059 ], [ -122.852523086999952, 49.297030119000077 ], [ -122.852663727999953, 49.294958957000034 ], [ -122.852552035999935, 49.294978261000075 ], [ -122.852050434999938, 49.294893362000053 ], [ -122.85202157099999, 49.29486710200009 ], [ -122.851676895999987, 49.294866660000089 ], [ -122.851677705999975, 49.294596806000058 ], [ -122.85126511, 49.294596276000078 ], [ -122.851266732999974, 49.294056569000077 ], [ -122.850854143999982, 49.29405603700004 ], [ -122.850854956999981, 49.293786183000101 ], [ -122.850442368999893, 49.293785649000021 ], [ -122.850442522999941, 49.293734515000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5212750", "BldgCostT": "3595000", "sL_LossRatio": "0.769219483568075", "sL_AssetLoss": "68160", "sL_BldgLoss": "52430", "sL_StrLoss": "25100", "sL_NStrLoss": "27330", "sL_ContLoss": "15730", "geom_point": "0101000020E6100000F3DF83D76EB65EC0780392D1FDA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850304374999965, 49.297037395000068 ], [ -122.849887783999989, 49.296631603000023 ], [ -122.84952521299999, 49.296403 ], [ -122.8491652109999, 49.296238499000012 ], [ -122.849339253, 49.295943055000066 ], [ -122.850023228999945, 49.295943945000047 ], [ -122.850022410999927, 49.296213798000117 ], [ -122.850435018999974, 49.296214333000101 ], [ -122.850434203999967, 49.296484187000068 ], [ -122.85084681599993, 49.296484720000095 ], [ -122.850846000999965, 49.296754574 ], [ -122.851258612999942, 49.296755105000059 ], [ -122.851256989999982, 49.297294812000111 ], [ -122.851669607999952, 49.297295343000059 ], [ -122.851667357999972, 49.298045100000074 ], [ -122.851622991999989, 49.297907399000081 ], [ -122.851408098999912, 49.297751595000094 ], [ -122.850571387999977, 49.297295698000042 ], [ -122.850304374999965, 49.297037395000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111185417", "BldgCostT": "73501667", "sL_LossRatio": "0.745608322615307", "sL_AssetLoss": "1228460", "sL_BldgLoss": "915950", "sL_StrLoss": "427670", "sL_NStrLoss": "488280", "sL_ContLoss": "312510", "geom_point": "0101000020E61000002F633BC6F2B55EC0BFFF247822A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850442522999941, 49.293734515000018 ], [ -122.850444000999985, 49.293245942000048 ], [ -122.850031416999968, 49.293245407000015 ], [ -122.850032234999958, 49.292975554000051 ], [ -122.84976557499999, 49.292975207000033 ], [ -122.84961935699999, 49.293072396000113 ], [ -122.84961883299998, 49.293244871000063 ], [ -122.84929570099996, 49.293244451000071 ], [ -122.849264435999913, 49.293251663000035 ], [ -122.84919021099995, 49.293244313000102 ], [ -122.846318158999964, 49.293240528000076 ], [ -122.846318998999919, 49.292970675000028 ], [ -122.845906415999977, 49.292970126000057 ], [ -122.845908938999912, 49.292160565000096 ], [ -122.845083789999947, 49.292159461000075 ], [ -122.84508632499994, 49.291349900000064 ], [ -122.844954412, 49.291349723000046 ], [ -122.844575335999977, 49.291476962000047 ], [ -122.844028236, 49.291455662000054 ], [ -122.84385546599998, 49.291348244000083 ], [ -122.843848620999964, 49.291348233000058 ], [ -122.843848632999965, 49.29134399400008 ], [ -122.84378183599992, 49.291302462000026 ], [ -122.843725933999977, 49.291160562000073 ], [ -122.84361402, 49.291078061000078 ], [ -122.843436906999941, 49.291077822000055 ], [ -122.843436051999902, 49.291347676000086 ], [ -122.841814371999959, 49.291345468000067 ], [ -122.841785859999931, 49.291320082000013 ], [ -122.84178664199996, 49.291075574000089 ], [ -122.841510832999958, 49.291075196000087 ], [ -122.841380357999981, 49.290959020000095 ], [ -122.841190953999913, 49.290808594000119 ], [ -122.839633808999977, 49.289721519000068 ], [ -122.838124500999982, 49.28938120300009 ], [ -122.835259451999946, 49.288451941000076 ], [ -122.835254323999962, 49.287924879000094 ], [ -122.835254129999967, 49.287915897000055 ], [ -122.835238815999972, 49.287104592000048 ], [ -122.835237112999934, 49.286928894000056 ], [ -122.835101589999951, 49.286697889000024 ], [ -122.834891206999913, 49.286297201000096 ], [ -122.834711006999939, 49.285875701000094 ], [ -122.835272721999928, 49.286003898000111 ], [ -122.83533509099999, 49.286035727000069 ], [ -122.835436867999945, 49.286087665000139 ], [ -122.835697808999939, 49.286220789000076 ], [ -122.835855139999964, 49.286301299000087 ], [ -122.837072598999981, 49.286924205000062 ], [ -122.838064289999963, 49.287340605000054 ], [ -122.839238296999923, 49.287622709000054 ], [ -122.840684411999973, 49.288027187000075 ], [ -122.841488017999907, 49.28833990300005 ], [ -122.842174399999934, 49.288677009000018 ], [ -122.842795910999897, 49.289018599000102 ], [ -122.842958702999951, 49.289150386000095 ], [ -122.843001908999966, 49.289284103000085 ], [ -122.843005075999926, 49.289385620000054 ], [ -122.843011811999972, 49.28960079700002 ], [ -122.843012675999915, 49.289629396000088 ], [ -122.842948800999963, 49.289699597000087 ], [ -122.84280211199993, 49.289734111000094 ], [ -122.842438711999975, 49.289740605000055 ], [ -122.84326361399999, 49.290528609000027 ], [ -122.84340520899994, 49.290629092000103 ], [ -122.84354795199998, 49.290688842000051 ], [ -122.843828881999968, 49.290806397000139 ], [ -122.84408319, 49.290869905000108 ], [ -122.844376399999959, 49.290943102000035 ], [ -122.844987680999949, 49.291011389000083 ], [ -122.845178700999909, 49.291020247000077 ], [ -122.845644905999904, 49.291041840000034 ], [ -122.845779864999983, 49.291048059000104 ], [ -122.845809006999957, 49.29080121000009 ], [ -122.846008100999967, 49.290805203000083 ], [ -122.846218886999907, 49.290697902000055 ], [ -122.846405100999988, 49.290385291000106 ], [ -122.84666547199997, 49.290297798000033 ], [ -122.84671691799997, 49.290280501000069 ], [ -122.846834197999954, 49.290241095000049 ], [ -122.847227988999933, 49.290252607000056 ], [ -122.847622993999934, 49.290367712000076 ], [ -122.849413487999939, 49.291028 ], [ -122.850810390999953, 49.291413166000034 ], [ -122.85047145399993, 49.292034478000055 ], [ -122.851214113999973, 49.292186788000095 ], [ -122.850442522999941, 49.293734515000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30069667", "BldgCostT": "17691667", "sL_LossRatio": "0.665551839464883", "sL_AssetLoss": "385710", "sL_BldgLoss": "256710", "sL_StrLoss": "95080", "sL_NStrLoss": "161630", "sL_ContLoss": "129000", "geom_point": "0101000020E6100000723D7E2D77B45EC057209B608FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.818436893999916, 49.28454329000003 ], [ -122.819055704999968, 49.284739898000069 ], [ -122.819712011999954, 49.28483129300011 ], [ -122.820082417000023, 49.284843104000082 ], [ -122.82042707799998, 49.284827104000023 ], [ -122.821151188999977, 49.284692599000095 ], [ -122.821175318999948, 49.284685149000055 ], [ -122.821409346999957, 49.284612759000069 ], [ -122.821145971999925, 49.287084685000139 ], [ -122.820226597999948, 49.286667992000041 ], [ -122.820085505999913, 49.286600787000069 ], [ -122.819703498999914, 49.286418408000017 ], [ -122.818404377999954, 49.286117891000067 ], [ -122.818008208999984, 49.285922489000015 ], [ -122.817891026999988, 49.285727104000081 ], [ -122.817806007999977, 49.285583205000059 ], [ -122.817777007999936, 49.285444503000058 ], [ -122.817807692999935, 49.285258 ], [ -122.818022200999977, 49.285016610000113 ], [ -122.818436893999916, 49.28454329000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78056644", "BldgCostT": "46986523", "sL_LossRatio": "0.674404306039458", "sL_AssetLoss": "927070", "sL_BldgLoss": "625220", "sL_StrLoss": "256850", "sL_NStrLoss": "368370", "sL_ContLoss": "301850", "geom_point": "0101000020E6100000F84DCC4086B45EC044380C6AE8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.818436893999916, 49.28454329000003 ], [ -122.818482656999947, 49.284495824000039 ], [ -122.81852558599999, 49.284451290000135 ], [ -122.818923688999988, 49.283999099000027 ], [ -122.81907107699999, 49.283830862000038 ], [ -122.819335295999934, 49.283529196000103 ], [ -122.819518892999938, 49.283138294 ], [ -122.819539600999988, 49.28273620900012 ], [ -122.819513407999949, 49.282536309000086 ], [ -122.819326987999943, 49.282128113000049 ], [ -122.819258711999922, 49.282020697000043 ], [ -122.818694904999987, 49.281423888000063 ], [ -122.818579391999947, 49.281304310000102 ], [ -122.818474714999951, 49.281087701000033 ], [ -122.818332996, 49.280788103000056 ], [ -122.818333626999959, 49.28013850700011 ], [ -122.818337050999943, 49.280038689000058 ], [ -122.818344771999961, 49.27981390300009 ], [ -122.818377888999962, 49.278852512000114 ], [ -122.818366392, 49.277957600000093 ], [ -122.820815905999922, 49.277955002000077 ], [ -122.822218794999984, 49.277900786000053 ], [ -122.823688411, 49.277800112000087 ], [ -122.82396570499999, 49.277781100000055 ], [ -122.823843346, 49.278603565000054 ], [ -122.823828015999936, 49.279183905000053 ], [ -122.823793334999948, 49.280497545000038 ], [ -122.823775446999917, 49.28049791900002 ], [ -122.821865680999949, 49.280485831000071 ], [ -122.821166474999984, 49.280570313000105 ], [ -122.820943209999925, 49.281932941 ], [ -122.821010362999957, 49.282482686000073 ], [ -122.821075181, 49.283371922000072 ], [ -122.821388145999961, 49.284534030000053 ], [ -122.821409346999957, 49.284612759000069 ], [ -122.821175318999948, 49.284685149000055 ], [ -122.821151188999977, 49.284692599000095 ], [ -122.82042707799998, 49.284827104000023 ], [ -122.820082417000023, 49.284843104000082 ], [ -122.819712011999954, 49.28483129300011 ], [ -122.819055704999968, 49.284739898000069 ], [ -122.818436893999916, 49.28454329000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48159166", "BldgCostT": "32716666", "sL_LossRatio": "0.738434212700336", "sL_AssetLoss": "726280", "sL_BldgLoss": "536310", "sL_StrLoss": "236640", "sL_NStrLoss": "299670", "sL_ContLoss": "189970", "geom_point": "0101000020E6100000E7538D7F5BB45EC00B097B8719A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817716792999988, 49.280814905000042 ], [ -122.818332996, 49.280788103000056 ], [ -122.818474714999951, 49.281087701000033 ], [ -122.818579391999947, 49.281304310000102 ], [ -122.818694904999987, 49.281423888000063 ], [ -122.819258711999922, 49.282020697000043 ], [ -122.819326987999943, 49.282128113000049 ], [ -122.819513407999949, 49.282536309000086 ], [ -122.819539600999988, 49.28273620900012 ], [ -122.819518892999938, 49.283138294 ], [ -122.819335295999934, 49.283529196000103 ], [ -122.818377291000033, 49.283146988000119 ], [ -122.817838189999947, 49.282950906000096 ], [ -122.817629303999936, 49.282850112000048 ], [ -122.817051894999963, 49.28233039100008 ], [ -122.816670626999922, 49.281838108000024 ], [ -122.81663511, 49.28145418400014 ], [ -122.816640578, 49.280812900000093 ], [ -122.817716792999988, 49.280814905000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247700181", "BldgCostT": "152849013", "sL_LossRatio": "0.678086522284257", "sL_AssetLoss": "4665850", "sL_BldgLoss": "3163850", "sL_StrLoss": "1179340", "sL_NStrLoss": "1984510", "sL_ContLoss": "1502000", "geom_point": "0101000020E6100000A498207628B45EC0FD21A1F3BBA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.814332141999955, 49.283413879000058 ], [ -122.814009717999937, 49.283394699000041 ], [ -122.81325761, 49.283456298000061 ], [ -122.812832893999953, 49.283516705000082 ], [ -122.81277430399993, 49.283369105000133 ], [ -122.81273988699999, 49.283068891000106 ], [ -122.812793397999954, 49.282950698000029 ], [ -122.812864104999932, 49.282781605000118 ], [ -122.812918221999922, 49.28273550100004 ], [ -122.812994417999946, 49.282666600000042 ], [ -122.813071783999959, 49.282600405000025 ], [ -122.813487787999946, 49.282388313000112 ], [ -122.81364580199994, 49.282248882000097 ], [ -122.813740694, 49.282127308000092 ], [ -122.813831175999965, 49.281951603000032 ], [ -122.813855494, 49.281437091000058 ], [ -122.813871313999982, 49.280667310000119 ], [ -122.813881686999963, 49.28001620000007 ], [ -122.813824405999966, 49.279909987000124 ], [ -122.813713491999977, 49.27986350300008 ], [ -122.813581333999949, 49.279862192000067 ], [ -122.812662706999916, 49.279853215000053 ], [ -122.812458669999941, 49.279868718000031 ], [ -122.812389113999984, 49.279873993000059 ], [ -122.811858990999937, 49.279987087000016 ], [ -122.81133281299995, 49.280144607000096 ], [ -122.811195302999977, 49.279744091000083 ], [ -122.811109314999953, 49.279655987000105 ], [ -122.811002991999985, 49.279602413000077 ], [ -122.810663208, 49.279507693 ], [ -122.810342689999914, 49.279471184000052 ], [ -122.80987288299994, 49.27948609700011 ], [ -122.809703079999949, 49.279517096000085 ], [ -122.809585204, 49.279592910000055 ], [ -122.809553071999986, 49.279700093000088 ], [ -122.809580380999975, 49.280442294000082 ], [ -122.809662983999942, 49.280599705000064 ], [ -122.809100289999947, 49.280727193000118 ], [ -122.808318387999975, 49.280723898000055 ], [ -122.808302004999959, 49.279114392000089 ], [ -122.808298909999934, 49.278810804000067 ], [ -122.80831490599995, 49.278133375000081 ], [ -122.808320497999915, 49.2778979140001 ], [ -122.808322240999971, 49.277845497000015 ], [ -122.80832440099999, 49.277780891000141 ], [ -122.808353005999919, 49.277106083 ], [ -122.808358480999956, 49.276586402000113 ], [ -122.808716579999924, 49.276579883000096 ], [ -122.812762714, 49.276453836 ], [ -122.814749169, 49.276425063000048 ], [ -122.815703588999924, 49.27645247700017 ], [ -122.815731461999974, 49.27645461200003 ], [ -122.816354328999964, 49.276466284000072 ], [ -122.817364438999959, 49.276481764000039 ], [ -122.823768344999934, 49.276705857000138 ], [ -122.823916950999958, 49.276706111000131 ], [ -122.823952909999974, 49.277505913000013 ], [ -122.823960845, 49.277674689000023 ], [ -122.82396570499999, 49.277781100000055 ], [ -122.823688411, 49.277800112000087 ], [ -122.822218794999984, 49.277900786000053 ], [ -122.820815905999922, 49.277955002000077 ], [ -122.818366392, 49.277957600000093 ], [ -122.818377888999962, 49.278852512000114 ], [ -122.818344771999961, 49.27981390300009 ], [ -122.818337050999943, 49.280038689000058 ], [ -122.818333626999959, 49.28013850700011 ], [ -122.818332996, 49.280788103000056 ], [ -122.817716792999988, 49.280814905000042 ], [ -122.816640578, 49.280812900000093 ], [ -122.81663511, 49.28145418400014 ], [ -122.816670626999922, 49.281838108000024 ], [ -122.817051894999963, 49.28233039100008 ], [ -122.817629303999936, 49.282850112000048 ], [ -122.817838189999947, 49.282950906000096 ], [ -122.818377291000033, 49.283146988000119 ], [ -122.819335295999934, 49.283529196000103 ], [ -122.81907107699999, 49.283830862000038 ], [ -122.818923688999988, 49.283999099000027 ], [ -122.81852558599999, 49.284451290000135 ], [ -122.818482656999947, 49.284495824000039 ], [ -122.818436893999916, 49.28454329000003 ], [ -122.818424814999986, 49.284538916000017 ], [ -122.815975704999957, 49.283649996000079 ], [ -122.815706338999917, 49.283596837000061 ], [ -122.815544075999952, 49.283564803000054 ], [ -122.815044394999944, 49.283466177000093 ], [ -122.814972090999987, 49.283451892000116 ], [ -122.814332141999955, 49.283413879000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56709144", "BldgCostT": "34751523", "sL_LossRatio": "0.659613561426618", "sL_AssetLoss": "1191910", "sL_BldgLoss": "786200", "sL_StrLoss": "344460", "sL_NStrLoss": "441740", "sL_ContLoss": "405710", "geom_point": "0101000020E6100000E0B18628F2B35EC014A143A61DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808645603999963, 49.282700208000065 ], [ -122.80954209099994, 49.282456489000069 ], [ -122.809782385999952, 49.282300499000065 ], [ -122.809948107999929, 49.281990107000048 ], [ -122.810441988999926, 49.281963295 ], [ -122.81077671299991, 49.281893912000108 ], [ -122.81103871199997, 49.28174128700001 ], [ -122.81117449499996, 49.281605599000045 ], [ -122.811257586999915, 49.281397311000013 ], [ -122.811279308999929, 49.281042097000046 ], [ -122.811401000999922, 49.280610482000142 ], [ -122.81133281299995, 49.280144607000096 ], [ -122.811858990999937, 49.279987087000016 ], [ -122.812389113999984, 49.279873993000059 ], [ -122.812458669999941, 49.279868718000031 ], [ -122.812662706999916, 49.279853215000053 ], [ -122.813581333999949, 49.279862192000067 ], [ -122.813713491999977, 49.27986350300008 ], [ -122.813824405999966, 49.279909987000124 ], [ -122.813881686999963, 49.28001620000007 ], [ -122.813871313999982, 49.280667310000119 ], [ -122.813855494, 49.281437091000058 ], [ -122.813831175999965, 49.281951603000032 ], [ -122.813740694, 49.282127308000092 ], [ -122.81364580199994, 49.282248882000097 ], [ -122.813487787999946, 49.282388313000112 ], [ -122.813071783999959, 49.282600405000025 ], [ -122.812994417999946, 49.282666600000042 ], [ -122.812918221999922, 49.28273550100004 ], [ -122.812864104999932, 49.282781605000118 ], [ -122.812793397999954, 49.282950698000029 ], [ -122.81273988699999, 49.283068891000106 ], [ -122.81277430399993, 49.283369105000133 ], [ -122.812832893999953, 49.283516705000082 ], [ -122.812135418999929, 49.283663692000047 ], [ -122.811866567999985, 49.283757416000107 ], [ -122.810543910999939, 49.284218486000093 ], [ -122.809709602999973, 49.284456869000081 ], [ -122.809661230999893, 49.284374483000093 ], [ -122.809623497999937, 49.284310206000015 ], [ -122.809249454999957, 49.283694385000125 ], [ -122.808879881999985, 49.283085895000134 ], [ -122.808645603999963, 49.282700208000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32505584", "BldgCostT": "21418334", "sL_LossRatio": "0.692674348651025", "sL_AssetLoss": "648270", "sL_BldgLoss": "449040", "sL_StrLoss": "191590", "sL_NStrLoss": "257450", "sL_ContLoss": "199230", "geom_point": "0101000020E6100000E2C98703D5B35EC0214CDDD7F9A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80987288299994, 49.27948609700011 ], [ -122.810342689999914, 49.279471184000052 ], [ -122.810663208, 49.279507693 ], [ -122.811002991999985, 49.279602413000077 ], [ -122.811109314999953, 49.279655987000105 ], [ -122.811195302999977, 49.279744091000083 ], [ -122.81133281299995, 49.280144607000096 ], [ -122.811401000999922, 49.280610482000142 ], [ -122.811279308999929, 49.281042097000046 ], [ -122.811257586999915, 49.281397311000013 ], [ -122.81117449499996, 49.281605599000045 ], [ -122.81103871199997, 49.28174128700001 ], [ -122.81077671299991, 49.281893912000108 ], [ -122.810441988999926, 49.281963295 ], [ -122.809948107999929, 49.281990107000048 ], [ -122.809782385999952, 49.282300499000065 ], [ -122.80954209099994, 49.282456489000069 ], [ -122.808645603999963, 49.282700208000065 ], [ -122.808343717999918, 49.282193087000074 ], [ -122.808296391999974, 49.282021490000041 ], [ -122.808313691, 49.281271510000053 ], [ -122.808318387999975, 49.280723898000055 ], [ -122.809100289999947, 49.280727193000118 ], [ -122.809662983999942, 49.280599705000064 ], [ -122.809580380999975, 49.280442294000082 ], [ -122.809553071999986, 49.279700093000088 ], [ -122.809585204, 49.279592910000055 ], [ -122.809703079999949, 49.279517096000085 ], [ -122.80987288299994, 49.27948609700011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135427250", "BldgCostT": "86825000", "sL_LossRatio": "0.698085182678026", "sL_AssetLoss": "2236558", "sL_BldgLoss": "1561308", "sL_StrLoss": "685998", "sL_NStrLoss": "875310", "sL_ContLoss": "675250", "geom_point": "0101000020E61000001E6361678EB35EC0C1EB9F4C48A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807335910999939, 49.281257889000088 ], [ -122.808313691, 49.281271510000053 ], [ -122.808296391999974, 49.282021490000041 ], [ -122.808343717999918, 49.282193087000074 ], [ -122.808645603999963, 49.282700208000065 ], [ -122.808879881999985, 49.283085895000134 ], [ -122.809249454999957, 49.283694385000125 ], [ -122.809623497999937, 49.284310206000015 ], [ -122.809661230999893, 49.284374483000093 ], [ -122.809709602999973, 49.284456869000081 ], [ -122.809696382999917, 49.284459551000104 ], [ -122.809047507999963, 49.284590362000102 ], [ -122.808333630999954, 49.284686981000085 ], [ -122.808291341999933, 49.284692709000034 ], [ -122.807879405999969, 49.284748463000021 ], [ -122.805987832999946, 49.285004456000088 ], [ -122.804237630999964, 49.285128272000058 ], [ -122.801693568999951, 49.285240361000056 ], [ -122.801555717000014, 49.285246205000121 ], [ -122.801556181999928, 49.285098491000078 ], [ -122.801696919999955, 49.285092696000035 ], [ -122.801697660999963, 49.285048714 ], [ -122.801713731999925, 49.284104309 ], [ -122.801720996999904, 49.283677843000078 ], [ -122.801737490999983, 49.282710197000021 ], [ -122.803585858999938, 49.282717187000074 ], [ -122.80396374499999, 49.282719365000098 ], [ -122.80398474199994, 49.282115482000087 ], [ -122.805376822999946, 49.282120665000051 ], [ -122.805432621999913, 49.281252101000113 ], [ -122.806021731, 49.281253897000063 ], [ -122.807335910999939, 49.281257889000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67454751", "BldgCostT": "45785001", "sL_LossRatio": "0.749803811960483", "sL_AssetLoss": "930230", "sL_BldgLoss": "697490", "sL_StrLoss": "323290", "sL_NStrLoss": "374200", "sL_ContLoss": "232740", "geom_point": "0101000020E61000000EB93A7CA9B35EC03C5DBB59A8A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808913, 49.287403494000102 ], [ -122.809465103999983, 49.287210807000051 ], [ -122.809866305999918, 49.286974892000025 ], [ -122.809303880999948, 49.286516893000112 ], [ -122.808788389999961, 49.286317012000048 ], [ -122.808417007999978, 49.286220394000026 ], [ -122.808106759999944, 49.286173645000069 ], [ -122.807963886999985, 49.286152111000042 ], [ -122.80731691499993, 49.28618611600011 ], [ -122.806719311, 49.286359417 ], [ -122.805878976999921, 49.286656909000079 ], [ -122.805866796999965, 49.286661211000094 ], [ -122.80576715299999, 49.286679997000078 ], [ -122.805404401999965, 49.286748423000127 ], [ -122.804914023999913, 49.286782531000028 ], [ -122.802708518999978, 49.286709143000095 ], [ -122.802689706999942, 49.287540092000043 ], [ -122.801619125999977, 49.287514677000033 ], [ -122.801681982, 49.285647232000038 ], [ -122.801693568999951, 49.285240361000056 ], [ -122.804237630999964, 49.285128272000058 ], [ -122.805987832999946, 49.285004456000088 ], [ -122.807879405999969, 49.284748463000021 ], [ -122.808291341999933, 49.284692709000034 ], [ -122.808333630999954, 49.284686981000085 ], [ -122.809047507999963, 49.284590362000102 ], [ -122.809696382999917, 49.284459551000104 ], [ -122.809709602999973, 49.284456869000081 ], [ -122.809977928999984, 49.28491253599999 ], [ -122.81009892899999, 49.2850521330001 ], [ -122.810288055999933, 49.28516041700005 ], [ -122.811393677999916, 49.285514695000074 ], [ -122.811888272999909, 49.285674137000093 ], [ -122.811873493999926, 49.286333493000022 ], [ -122.811762796999972, 49.286765090000067 ], [ -122.81123601299997, 49.287430198000038 ], [ -122.811070904999909, 49.287550163000034 ], [ -122.810271687999958, 49.288130903000109 ], [ -122.809966689999925, 49.288471295000086 ], [ -122.80992620699999, 49.288625096000061 ], [ -122.810159004999917, 49.288831603000077 ], [ -122.810170918999987, 49.288985405000062 ], [ -122.810025945999925, 49.289246574000103 ], [ -122.810026357999945, 49.289138741000023 ], [ -122.809613810999934, 49.289138062000099 ], [ -122.809615887999925, 49.288598355000012 ], [ -122.809203344999929, 49.288597675000112 ], [ -122.809199178999947, 49.289677088000133 ], [ -122.808786625999957, 49.28967640600014 ], [ -122.808785312999987, 49.290015545000067 ], [ -122.80780641299998, 49.289996805000072 ], [ -122.808160007999902, 49.289255087000114 ], [ -122.808709433999923, 49.288168122000052 ], [ -122.808912780999904, 49.287765699000097 ], [ -122.808913, 49.287403494000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112467416", "BldgCostT": "75881666", "sL_LossRatio": "0.751171219651166", "sL_AssetLoss": "1263640", "sL_BldgLoss": "949210", "sL_StrLoss": "465660", "sL_NStrLoss": "483550", "sL_ContLoss": "314430", "geom_point": "0101000020E6100000A4F95BE992B35EC061FD5536E2A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802689706999942, 49.287540092000043 ], [ -122.802708518999978, 49.286709143000095 ], [ -122.804914023999913, 49.286782531000028 ], [ -122.805404401999965, 49.286748423000127 ], [ -122.80576715299999, 49.286679997000078 ], [ -122.805866796999965, 49.286661211000094 ], [ -122.805878976999921, 49.286656909000079 ], [ -122.806719311, 49.286359417 ], [ -122.80731691499993, 49.28618611600011 ], [ -122.807963886999985, 49.286152111000042 ], [ -122.808106759999944, 49.286173645000069 ], [ -122.808417007999978, 49.286220394000026 ], [ -122.808788389999961, 49.286317012000048 ], [ -122.809303880999948, 49.286516893000112 ], [ -122.809866305999918, 49.286974892000025 ], [ -122.809465103999983, 49.287210807000051 ], [ -122.808913, 49.287403494000102 ], [ -122.808912780999904, 49.287765699000097 ], [ -122.808709433999923, 49.288168122000052 ], [ -122.808160007999902, 49.289255087000114 ], [ -122.80780641299998, 49.289996805000072 ], [ -122.805308502999978, 49.289975188000106 ], [ -122.802993984999944, 49.289964412000089 ], [ -122.802632492, 49.289963608000079 ], [ -122.802650891, 49.289138903000087 ], [ -122.802669382999937, 49.288338694000089 ], [ -122.802669593999951, 49.288329602000054 ], [ -122.802689706999942, 49.287540092000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152873657", "BldgCostT": "101277695", "sL_LossRatio": "0.76319653812835", "sL_AssetLoss": "1461406", "sL_BldgLoss": "1115340", "sL_StrLoss": "550230", "sL_NStrLoss": "565110", "sL_ContLoss": "346066", "geom_point": "0101000020E6100000804AF0E16DB35EC0F1C2214447A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802211784999884, 49.293412307000025 ], [ -122.802214583999941, 49.293131291000108 ], [ -122.800689086999967, 49.293122090000033 ], [ -122.800675805999958, 49.291462284000033 ], [ -122.800744472999909, 49.291226980000026 ], [ -122.800756875999951, 49.291184493000117 ], [ -122.801313801999939, 49.290485694000047 ], [ -122.801478685999911, 49.290187906000021 ], [ -122.801517401999945, 49.289971133000037 ], [ -122.801518986999923, 49.289962090000046 ], [ -122.801586045999969, 49.288322889000021 ], [ -122.801618752999985, 49.287523679000124 ], [ -122.801619125999977, 49.287514677000033 ], [ -122.802689706999942, 49.287540092000043 ], [ -122.802669593999951, 49.288329602000054 ], [ -122.802669382999937, 49.288338694000089 ], [ -122.802650891, 49.289138903000087 ], [ -122.802632492, 49.289963608000079 ], [ -122.802993984999944, 49.289964412000089 ], [ -122.805308502999978, 49.289975188000106 ], [ -122.80780641299998, 49.289996805000072 ], [ -122.807740597999967, 49.290613813000057 ], [ -122.807459723999969, 49.291597398000057 ], [ -122.805356916000036, 49.291566688000096 ], [ -122.805367818999954, 49.291967896000052 ], [ -122.805378488999921, 49.292370903000133 ], [ -122.805357502999925, 49.292988890000046 ], [ -122.805351817999977, 49.293156601000092 ], [ -122.805132805999946, 49.293183413000051 ], [ -122.804760583999951, 49.293296698000091 ], [ -122.804027202000015, 49.29360380500006 ], [ -122.803126596999945, 49.293903304000054 ], [ -122.80292748699999, 49.293919909000124 ], [ -122.802685494999977, 49.29387939700009 ], [ -122.80249817899994, 49.293804499000068 ], [ -122.802354598999955, 49.293693907000034 ], [ -122.802211784999884, 49.293412307000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58455333", "BldgCostT": "38163333", "sL_LossRatio": "0.735652736623412", "sL_AssetLoss": "587220", "sL_BldgLoss": "431990", "sL_StrLoss": "208840", "sL_NStrLoss": "223150", "sL_ContLoss": "155230", "geom_point": "0101000020E6100000EE5066E636B35EC0C99B0D43F5A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799159919999951, 49.288248105000022 ], [ -122.799199084999898, 49.287361905000068 ], [ -122.800002526999918, 49.287386988000023 ], [ -122.800310308999926, 49.287396593000082 ], [ -122.800890405999922, 49.287416492000034 ], [ -122.801219393999972, 49.287489309000108 ], [ -122.801450314999926, 49.287511500000043 ], [ -122.801512826999939, 49.287512688000064 ], [ -122.801619125999977, 49.287514677000033 ], [ -122.801618752999985, 49.287523679000124 ], [ -122.801586045999969, 49.288322889000021 ], [ -122.801518986999923, 49.289962090000046 ], [ -122.801363694999935, 49.289962004000145 ], [ -122.800580395999944, 49.289956802000127 ], [ -122.800005367999958, 49.289954716000089 ], [ -122.798676711999946, 49.289949892000038 ], [ -122.798699896999921, 49.289036198000062 ], [ -122.798743281999947, 49.288845600000045 ], [ -122.799023908999928, 49.288505296000054 ], [ -122.799159919999951, 49.288248105000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98257417", "BldgCostT": "66531667", "sL_LossRatio": "0.754894461209976", "sL_AssetLoss": "1189610", "sL_BldgLoss": "898030", "sL_StrLoss": "419940", "sL_NStrLoss": "478090", "sL_ContLoss": "291580", "geom_point": "0101000020E610000065E456B522B35EC0255F434F4EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.797700686999974, 49.292594803000064 ], [ -122.797695305999966, 49.292315407000096 ], [ -122.797465608, 49.292315552000055 ], [ -122.796688797999977, 49.292316089000082 ], [ -122.796683602, 49.291417628000019 ], [ -122.796683033999955, 49.291318741 ], [ -122.796681704999969, 49.291086179000033 ], [ -122.79674379, 49.290724114000099 ], [ -122.796740297, 49.290535706000057 ], [ -122.797684391999923, 49.290542100000046 ], [ -122.79768430199999, 49.2899466040001 ], [ -122.798025171999939, 49.289947721000054 ], [ -122.798676711999946, 49.289949892000038 ], [ -122.800005367999958, 49.289954716000089 ], [ -122.800580395999944, 49.289956802000127 ], [ -122.801363694999935, 49.289962004000145 ], [ -122.801518986999923, 49.289962090000046 ], [ -122.801517401999945, 49.289971133000037 ], [ -122.801478685999911, 49.290187906000021 ], [ -122.801313801999939, 49.290485694000047 ], [ -122.800756875999951, 49.291184493000117 ], [ -122.800744472999909, 49.291226980000026 ], [ -122.800675805999958, 49.291462284000033 ], [ -122.800689086999967, 49.293122090000033 ], [ -122.800556780999969, 49.293123823000059 ], [ -122.800519894999951, 49.293124301000049 ], [ -122.800006378999981, 49.29311637800005 ], [ -122.799291578999913, 49.293105351000115 ], [ -122.799125792999959, 49.293102804000107 ], [ -122.798451996999987, 49.293103484000071 ], [ -122.797989816999973, 49.293186197000075 ], [ -122.797757204999982, 49.29287121000003 ], [ -122.797706909999988, 49.292625176000023 ], [ -122.797704457999956, 49.292613224000043 ], [ -122.797700686999974, 49.292594803000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83898833", "BldgCostT": "55763333", "sL_LossRatio": "0.723910474911384", "sL_AssetLoss": "1176430", "sL_BldgLoss": "851630", "sL_StrLoss": "370240", "sL_NStrLoss": "481390", "sL_ContLoss": "324800", "geom_point": "0101000020E610000051EF6FF1ECB25EC0D942670461A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793610000999934, 49.29244099600006 ], [ -122.793758938999957, 49.29204740100004 ], [ -122.793863179999903, 49.291772035000115 ], [ -122.793921226999899, 49.291618705000076 ], [ -122.794052600999919, 49.291270308000101 ], [ -122.794196792999941, 49.29111340400005 ], [ -122.794357742999935, 49.290932378000107 ], [ -122.794578407999936, 49.290684192000121 ], [ -122.79508839599994, 49.290208294000152 ], [ -122.795398544999969, 49.290076132000131 ], [ -122.795548805999928, 49.290012106000034 ], [ -122.79601840499997, 49.289940387000023 ], [ -122.79768430199999, 49.2899466040001 ], [ -122.797684391999923, 49.290542100000046 ], [ -122.796740297, 49.290535706000057 ], [ -122.79674379, 49.290724114000099 ], [ -122.796681704999969, 49.291086179000033 ], [ -122.796683033999955, 49.291318741 ], [ -122.796683602, 49.291417628000019 ], [ -122.796688797999977, 49.292316089000082 ], [ -122.797465608, 49.292315552000055 ], [ -122.797695305999966, 49.292315407000096 ], [ -122.797700686999974, 49.292594803000064 ], [ -122.797704457999956, 49.292613224000043 ], [ -122.797706909999988, 49.292625176000023 ], [ -122.797757204999982, 49.29287121000003 ], [ -122.797989816999973, 49.293186197000075 ], [ -122.796898302, 49.293761004000082 ], [ -122.79645810599996, 49.293864207000041 ], [ -122.795936086, 49.293856814000023 ], [ -122.795267587999945, 49.293781104000089 ], [ -122.7949534099999, 49.293711394000049 ], [ -122.794629788999956, 49.293600001000065 ], [ -122.79388081099999, 49.293097593000041 ], [ -122.79365791, 49.292797986000032 ], [ -122.793651895999972, 49.292789883000125 ], [ -122.793610000999934, 49.29244099600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210456470", "BldgCostT": "138850413", "sL_LossRatio": "0.725282292557742", "sL_AssetLoss": "2338000", "sL_BldgLoss": "1695710", "sL_StrLoss": "756200", "sL_NStrLoss": "939510", "sL_ContLoss": "642290", "geom_point": "0101000020E610000017A3F84212B35EC00B3EA44ADAA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.798268356999984, 49.286209801000084 ], [ -122.79836419399993, 49.286088630000087 ], [ -122.798472971999942, 49.285951114000056 ], [ -122.798796338, 49.285542325000016 ], [ -122.798827289999963, 49.285503200000065 ], [ -122.798787148999935, 49.285323276 ], [ -122.799996896000025, 49.285289607000017 ], [ -122.801555717000014, 49.285246205000121 ], [ -122.801693568999951, 49.285240361000056 ], [ -122.801681982, 49.285647232000038 ], [ -122.801619125999977, 49.287514677000033 ], [ -122.801512826999939, 49.287512688000064 ], [ -122.801450314999926, 49.287511500000043 ], [ -122.801219393999972, 49.287489309000108 ], [ -122.800890405999922, 49.287416492000034 ], [ -122.800310308999926, 49.287396593000082 ], [ -122.800002526999918, 49.287386988000023 ], [ -122.799199084999898, 49.287361905000068 ], [ -122.799159919999951, 49.288248105000022 ], [ -122.799023908999928, 49.288505296000054 ], [ -122.798743281999947, 49.288845600000045 ], [ -122.798699896999921, 49.289036198000062 ], [ -122.798676711999946, 49.289949892000038 ], [ -122.798025171999939, 49.289947721000054 ], [ -122.79768430199999, 49.2899466040001 ], [ -122.79601840499997, 49.289940387000023 ], [ -122.795548805999928, 49.290012106000034 ], [ -122.795398544999969, 49.290076132000131 ], [ -122.79508839599994, 49.290208294000152 ], [ -122.794578407999936, 49.290684192000121 ], [ -122.794357742999935, 49.290932378000107 ], [ -122.794196792999941, 49.29111340400005 ], [ -122.793638612999956, 49.290582318000084 ], [ -122.793842208999948, 49.290351205000093 ], [ -122.793988649999946, 49.290020581000107 ], [ -122.794110955999912, 49.289744352000106 ], [ -122.794439509999975, 49.289002493000076 ], [ -122.795030579999931, 49.288532186000033 ], [ -122.795048002999962, 49.288518307000047 ], [ -122.795229462999913, 49.288421734000039 ], [ -122.795750059999975, 49.288144745000132 ], [ -122.795884748999924, 49.288073069000099 ], [ -122.796429529999941, 49.287783200000064 ], [ -122.796480096999971, 49.287756290000054 ], [ -122.796595049999937, 49.287662229000034 ], [ -122.797882487999971, 49.286608839000088 ], [ -122.798015083999985, 49.286500354000061 ], [ -122.798081494999948, 49.28644599900008 ], [ -122.798268356999984, 49.286209801000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "304099500", "BldgCostT": "208965000", "sL_LossRatio": "0.843701131860344", "sL_AssetLoss": "2525930", "sL_BldgLoss": "2131130", "sL_StrLoss": "1019430", "sL_NStrLoss": "1111700", "sL_ContLoss": "394800", "geom_point": "0101000020E61000004260F6FCFAB25EC05E7D65738FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.794583684999949, 49.285975401000044 ], [ -122.794595045999927, 49.285055950000093 ], [ -122.798070311999965, 49.285294199000063 ], [ -122.798577910999981, 49.285329105000123 ], [ -122.798787148999935, 49.285323276 ], [ -122.798827289999963, 49.285503200000065 ], [ -122.798796338, 49.285542325000016 ], [ -122.798472971999942, 49.285951114000056 ], [ -122.79836419399993, 49.286088630000087 ], [ -122.798268356999984, 49.286209801000084 ], [ -122.797605451999942, 49.286086021000088 ], [ -122.796977016999932, 49.28595639900005 ], [ -122.796459601, 49.286222094 ], [ -122.79632682, 49.286254190000122 ], [ -122.796171395999963, 49.286235207000054 ], [ -122.795820594999952, 49.286040092000114 ], [ -122.795655502999949, 49.285982009000072 ], [ -122.794583684999949, 49.285975401000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "377604303", "BldgCostT": "259268746", "sL_LossRatio": "0.837867670247882", "sL_AssetLoss": "3805040", "sL_BldgLoss": "3188120", "sL_StrLoss": "1431700", "sL_NStrLoss": "1756420", "sL_ContLoss": "616920", "geom_point": "0101000020E61000000FD07D3933B35EC01141A4F85BA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.798070311999965, 49.285294199000063 ], [ -122.798073180999936, 49.285178996000042 ], [ -122.798073379999963, 49.285169997000054 ], [ -122.798077606999925, 49.284292609000012 ], [ -122.798103586999972, 49.28411498600007 ], [ -122.798221212999948, 49.28390499900005 ], [ -122.798652915999966, 49.283426801000047 ], [ -122.798737116999945, 49.283261797000087 ], [ -122.79875578099994, 49.283154806000042 ], [ -122.798832589999947, 49.282715094000025 ], [ -122.79999332499996, 49.28271298200012 ], [ -122.801609673999963, 49.282710014000095 ], [ -122.801657208999956, 49.282710068000085 ], [ -122.801737490999983, 49.282710197000021 ], [ -122.801720996999904, 49.283677843000078 ], [ -122.801713731999925, 49.284104309 ], [ -122.801697660999963, 49.285048714 ], [ -122.801696919999955, 49.285092696000035 ], [ -122.801556181999928, 49.285098491000078 ], [ -122.801555717000014, 49.285246205000121 ], [ -122.799996896000025, 49.285289607000017 ], [ -122.798787148999935, 49.285323276 ], [ -122.798577910999981, 49.285329105000123 ], [ -122.798070311999965, 49.285294199000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "645450355", "BldgCostT": "447832491", "sL_LossRatio": "0.859810755471072", "sL_AssetLoss": "4976630", "sL_BldgLoss": "4278960", "sL_StrLoss": "2033280", "sL_NStrLoss": "2245680", "sL_ContLoss": "697670", "geom_point": "0101000020E610000074E251AE99B25EC0E1790C0354A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787922281999954, 49.284698092000056 ], [ -122.787933535999969, 49.283921674000034 ], [ -122.787945200999928, 49.283117801000067 ], [ -122.790403908999949, 49.283145797000053 ], [ -122.790406500999921, 49.282671191000084 ], [ -122.793127940999966, 49.282675468000029 ], [ -122.793261267999966, 49.282675822000087 ], [ -122.793227979, 49.283455004000096 ], [ -122.793095850999961, 49.283775411000093 ], [ -122.792849370999988, 49.284218522000117 ], [ -122.792520344, 49.284801526000159 ], [ -122.792460654999942, 49.284909664000082 ], [ -122.792330704999969, 49.284900400000048 ], [ -122.791305166999948, 49.284821274000144 ], [ -122.790382003999952, 49.284752386000015 ], [ -122.790070889, 49.284733640000077 ], [ -122.78949632699999, 49.28469900900005 ], [ -122.789142720999905, 49.284743527000018 ], [ -122.787981940999956, 49.285028739000026 ], [ -122.787961519999953, 49.284926339000073 ], [ -122.787936654999925, 49.284781667000075 ], [ -122.787922281999954, 49.284698092000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "446264750", "BldgCostT": "281815690", "sL_LossRatio": "0.680675176525773", "sL_AssetLoss": "5606830", "sL_BldgLoss": "3816430", "sL_StrLoss": "1597330", "sL_NStrLoss": "2219100", "sL_ContLoss": "1790400", "geom_point": "0101000020E610000008013408BBB25EC0E30E49CA69A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787945200999928, 49.283117801000067 ], [ -122.787951389999975, 49.282651298000118 ], [ -122.786184810999941, 49.282635607000017 ], [ -122.786571593999938, 49.281857173000105 ], [ -122.786711892999904, 49.281574749000114 ], [ -122.787253788999976, 49.280505620000056 ], [ -122.787482577, 49.280054230000076 ], [ -122.787611550999941, 49.279799745000105 ], [ -122.787675684999968, 49.279673002000045 ], [ -122.788094065999985, 49.278846017000021 ], [ -122.788176900999957, 49.278682322000051 ], [ -122.78821685299999, 49.278601550000118 ], [ -122.788361079999959, 49.278633364000079 ], [ -122.79048253699996, 49.278069421000062 ], [ -122.790487484999943, 49.277365082000124 ], [ -122.790488514999979, 49.277217802000038 ], [ -122.790488783999976, 49.277158194000066 ], [ -122.79049253099997, 49.276375591000033 ], [ -122.790493794999961, 49.276108010000094 ], [ -122.790563107999986, 49.276040700000046 ], [ -122.790560568999979, 49.275572301000061 ], [ -122.790558905999916, 49.275266696000081 ], [ -122.790637913999916, 49.273668189000077 ], [ -122.790632503000012, 49.273448208000076 ], [ -122.790629304999968, 49.272561583 ], [ -122.790632192999951, 49.271864400000055 ], [ -122.790639287999937, 49.271067301000123 ], [ -122.790563601999935, 49.270929886000054 ], [ -122.79057878499999, 49.270591758000059 ], [ -122.79060423699994, 49.270025494000087 ], [ -122.790609513000021, 49.269908685000104 ], [ -122.790597807999987, 49.269557519000095 ], [ -122.790596982999929, 49.269533603000099 ], [ -122.790604234999961, 49.269272450000138 ], [ -122.793309679999965, 49.270452310000081 ], [ -122.794737060999978, 49.271194302000055 ], [ -122.795161842999903, 49.271416604000088 ], [ -122.796044072999962, 49.27190657300013 ], [ -122.796953000999977, 49.272450634000045 ], [ -122.797333381999948, 49.272632296000076 ], [ -122.798025558999882, 49.273022369000103 ], [ -122.798552158999911, 49.273312253000036 ], [ -122.798551915999937, 49.273224952000071 ], [ -122.79855188499999, 49.273215944000114 ], [ -122.798551596999971, 49.273107685000042 ], [ -122.798658017999912, 49.273060401000038 ], [ -122.798771196999937, 49.27311238900004 ], [ -122.798762986999989, 49.273340878000042 ], [ -122.798759920999942, 49.273425949000092 ], [ -122.798741407999898, 49.273942183000067 ], [ -122.798665510999953, 49.274367200000015 ], [ -122.798662993, 49.27438130600013 ], [ -122.798505599999899, 49.274809902000086 ], [ -122.798408598999956, 49.274980002000071 ], [ -122.798248116999929, 49.275255489000131 ], [ -122.797999617999935, 49.275589491000048 ], [ -122.797444008999918, 49.276210884000072 ], [ -122.797313520000017, 49.276369205000073 ], [ -122.796090601999978, 49.277696791000047 ], [ -122.795442312999953, 49.278366762000076 ], [ -122.794325874999956, 49.27960476100003 ], [ -122.793486563999963, 49.28057082600003 ], [ -122.793406850999972, 49.280729728000075 ], [ -122.793314939999973, 49.281004521000106 ], [ -122.793261267999966, 49.282675822000087 ], [ -122.793127940999966, 49.282675468000029 ], [ -122.790406500999921, 49.282671191000084 ], [ -122.790403908999949, 49.283145797000053 ], [ -122.787945200999928, 49.283117801000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "338262707", "BldgCostT": "225006684", "sL_LossRatio": "0.798776493662206", "sL_AssetLoss": "2610530", "sL_BldgLoss": "2085230", "sL_StrLoss": "1005230", "sL_NStrLoss": "1080000", "sL_ContLoss": "525300", "geom_point": "0101000020E61000004246CD7857B25EC02177093560A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.784864182999968, 49.285780966000125 ], [ -122.784773578999946, 49.285739534000115 ], [ -122.784688341999967, 49.285739703000068 ], [ -122.785695105999977, 49.283651397000078 ], [ -122.786184810999941, 49.282635607000017 ], [ -122.787951389999975, 49.282651298000118 ], [ -122.787945200999928, 49.283117801000067 ], [ -122.787933535999969, 49.283921674000034 ], [ -122.787922281999954, 49.284698092000056 ], [ -122.787936654999925, 49.284781667000075 ], [ -122.787961519999953, 49.284926339000073 ], [ -122.787981940999956, 49.285028739000026 ], [ -122.786177930999955, 49.285470535000051 ], [ -122.785504111999927, 49.285711733000021 ], [ -122.78522678899995, 49.285765644000101 ], [ -122.784864182999968, 49.285780966000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158506395", "BldgCostT": "99691524", "sL_LossRatio": "0.726793502983597", "sL_AssetLoss": "2242260", "sL_BldgLoss": "1629660", "sL_StrLoss": "692270", "sL_NStrLoss": "937390", "sL_ContLoss": "612600", "geom_point": "0101000020E6100000DEDF03E835B25EC0045F563043A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.783172479999948, 49.285297197000062 ], [ -122.783179484999906, 49.284602005000089 ], [ -122.783185695999961, 49.283917503000019 ], [ -122.783190129, 49.283441326000094 ], [ -122.783200593999965, 49.282316986000119 ], [ -122.783278486999947, 49.281848203000024 ], [ -122.783371517999939, 49.281696005000114 ], [ -122.783549174999905, 49.281551699000083 ], [ -122.783702095999956, 49.281467107000054 ], [ -122.783947887999958, 49.281392416000038 ], [ -122.784141049999931, 49.281368057000108 ], [ -122.784201700999944, 49.281360414000055 ], [ -122.785846009999929, 49.28137510500008 ], [ -122.786711892999904, 49.281574749000114 ], [ -122.786571593999938, 49.281857173000105 ], [ -122.786184810999941, 49.282635607000017 ], [ -122.785695105999977, 49.283651397000078 ], [ -122.784688341999967, 49.285739703000068 ], [ -122.784374110999948, 49.28573894400003 ], [ -122.783176406999971, 49.285736106000115 ], [ -122.783172479999948, 49.285297197000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52465917", "BldgCostT": "35711667", "sL_LossRatio": "0.738073673106226", "sL_AssetLoss": "938470", "sL_BldgLoss": "692660", "sL_StrLoss": "290310", "sL_NStrLoss": "402350", "sL_ContLoss": "245810", "geom_point": "0101000020E610000070B7A0CE07B25EC02174545E40A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781667306999964, 49.284601885 ], [ -122.780973914999905, 49.283006506000099 ], [ -122.779157109999943, 49.28298020700003 ], [ -122.779170289999939, 49.282295009000073 ], [ -122.78056334899999, 49.282293057000061 ], [ -122.781879985999936, 49.282291202000096 ], [ -122.782453965999977, 49.282302417000047 ], [ -122.783200593999965, 49.282316986000119 ], [ -122.783190129, 49.283441326000094 ], [ -122.783185695999961, 49.283917503000019 ], [ -122.783179484999906, 49.284602005000089 ], [ -122.781667306999964, 49.284601885 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95631333", "BldgCostT": "64953333", "sL_LossRatio": "0.733859298559912", "sL_AssetLoss": "1741560", "sL_BldgLoss": "1278060", "sL_StrLoss": "560560", "sL_NStrLoss": "717500", "sL_ContLoss": "463500", "geom_point": "0101000020E610000037FB660FF2B15EC0CAAADFB767A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77847049399999, 49.284711112000068 ], [ -122.778470621999986, 49.283126490000086 ], [ -122.778470703999929, 49.282302982000083 ], [ -122.778470695999971, 49.282293998000128 ], [ -122.779170289999939, 49.282295009000073 ], [ -122.779157109999943, 49.28298020700003 ], [ -122.780973914999905, 49.283006506000099 ], [ -122.781667306999964, 49.284601885 ], [ -122.783179484999906, 49.284602005000089 ], [ -122.783172479999948, 49.285297197000062 ], [ -122.783176406999971, 49.285736106000115 ], [ -122.780305710999983, 49.285759501000022 ], [ -122.779720696, 49.285671793000049 ], [ -122.779270487999923, 49.285503405000092 ], [ -122.778954987999938, 49.285315607000072 ], [ -122.778640905999964, 49.285028801000124 ], [ -122.778631438999923, 49.285011131000047 ], [ -122.778630972999963, 49.285010332000056 ], [ -122.77847049399999, 49.284711112000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71574500", "BldgCostT": "48890000", "sL_LossRatio": "0.742082823320655", "sL_AssetLoss": "1217290", "sL_BldgLoss": "903330", "sL_StrLoss": "390210", "sL_NStrLoss": "513120", "sL_ContLoss": "313960", "geom_point": "0101000020E61000001E13D684BCB15EC0B64F2A8EC1A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.776004594999947, 49.288482494000093 ], [ -122.775528080999891, 49.287842093000116 ], [ -122.774233185999918, 49.287918805000039 ], [ -122.773895800999952, 49.287868097000043 ], [ -122.774744986999934, 49.286886289000051 ], [ -122.776033195999943, 49.286884206000124 ], [ -122.776042312999962, 49.286220608000129 ], [ -122.777231698, 49.286216407000033 ], [ -122.778480190999957, 49.286213203000081 ], [ -122.778481501, 49.285739314000047 ], [ -122.779567204999964, 49.286140189000086 ], [ -122.779526706999903, 49.287059706000072 ], [ -122.77972960299995, 49.287403612000055 ], [ -122.778481997999933, 49.287750081000077 ], [ -122.776938319999886, 49.288203191000072 ], [ -122.776004594999947, 49.288482494000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94092584", "BldgCostT": "62953334", "sL_LossRatio": "0.714994803046051", "sL_AssetLoss": "1885720", "sL_BldgLoss": "1348280", "sL_StrLoss": "532480", "sL_NStrLoss": "815800", "sL_ContLoss": "537440", "geom_point": "0101000020E6100000F2E8C21FB0B15EC0C76CC9AA08A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777409097999922, 49.290586511000065 ], [ -122.777407289999942, 49.289959508 ], [ -122.775095709999974, 49.289946301000029 ], [ -122.77420489299999, 49.289944904000059 ], [ -122.773939583999919, 49.290003694000085 ], [ -122.773467906999969, 49.289631001000082 ], [ -122.77334751399998, 49.289484208000054 ], [ -122.773283212999942, 49.289261494000066 ], [ -122.773209410999968, 49.288939507000073 ], [ -122.772944194999965, 49.28850358200004 ], [ -122.773329919999981, 49.288512496000131 ], [ -122.774169484999959, 49.288636711000066 ], [ -122.775836379999973, 49.288528804000116 ], [ -122.776004594999947, 49.288482494000093 ], [ -122.776938319999886, 49.288203191000072 ], [ -122.778481997999933, 49.287750081000077 ], [ -122.778455805999926, 49.288641209000104 ], [ -122.778455806999915, 49.289314183000023 ], [ -122.778450784999976, 49.291265394000106 ], [ -122.77738819399994, 49.291242711000045 ], [ -122.777409097999922, 49.290586511000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94037918", "BldgCostT": "62676668", "sL_LossRatio": "0.710520586122058", "sL_AssetLoss": "1837160", "sL_BldgLoss": "1305340", "sL_StrLoss": "544350", "sL_NStrLoss": "760990", "sL_ContLoss": "531820", "geom_point": "0101000020E6100000B1651AC9F5B15EC09B8F4A35DCA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778455805999926, 49.288641209000104 ], [ -122.778481997999933, 49.287750081000077 ], [ -122.77972960299995, 49.287403612000055 ], [ -122.779526706999903, 49.287059706000072 ], [ -122.779567204999964, 49.286140189000086 ], [ -122.779943286999966, 49.286208189000078 ], [ -122.780261391999943, 49.286239302000112 ], [ -122.780662494999916, 49.286244901000046 ], [ -122.781815507999951, 49.28622979900009 ], [ -122.781835888999964, 49.28688620300003 ], [ -122.78184300199996, 49.287161207000104 ], [ -122.781761783999968, 49.287459699000053 ], [ -122.783567507999976, 49.287886487000051 ], [ -122.783193095999977, 49.288566311000082 ], [ -122.782122211999962, 49.288347901000051 ], [ -122.78149899899995, 49.28960139500002 ], [ -122.780466596999986, 49.289381414000047 ], [ -122.778455806999915, 49.289314183000023 ], [ -122.778455805999926, 49.288641209000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68860417", "BldgCostT": "47016667", "sL_LossRatio": "0.739344220092163", "sL_AssetLoss": "1165330", "sL_BldgLoss": "861580", "sL_StrLoss": "373090", "sL_NStrLoss": "488490", "sL_ContLoss": "303750", "geom_point": "0101000020E610000019A48570F1B15EC0BF7C78B72EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778450784999976, 49.291265394000106 ], [ -122.778455806999915, 49.289314183000023 ], [ -122.780466596999986, 49.289381414000047 ], [ -122.78149899899995, 49.28960139500002 ], [ -122.782122211999962, 49.288347901000051 ], [ -122.783193095999977, 49.288566311000082 ], [ -122.78183382899999, 49.291372566000106 ], [ -122.781398519999982, 49.291276124000035 ], [ -122.781143302999936, 49.291219576000046 ], [ -122.780796620999979, 49.291241667000051 ], [ -122.780729452999964, 49.291273690000047 ], [ -122.780604723999915, 49.291333166000115 ], [ -122.780019206999938, 49.292101290000062 ], [ -122.779723516999979, 49.292341188000101 ], [ -122.778884999999889, 49.292753309 ], [ -122.778723702999969, 49.292832601000072 ], [ -122.77871268299999, 49.292838007000036 ], [ -122.778475550999971, 49.292573745000013 ], [ -122.778467687999978, 49.292565001000064 ], [ -122.778439084999945, 49.291651492000092 ], [ -122.778450784999976, 49.291265394000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "331795832", "BldgCostT": "216513332", "sL_LossRatio": "0.703687069773826", "sL_AssetLoss": "5303751", "sL_BldgLoss": "3732181", "sL_StrLoss": "1686771", "sL_NStrLoss": "2045410", "sL_ContLoss": "1571570", "geom_point": "0101000020E6100000EA2209EB94B15EC0FB97B414D6A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771402506999948, 49.303828499000083 ], [ -122.771218690999916, 49.303762600000056 ], [ -122.770194873999969, 49.303765425000066 ], [ -122.76950959199992, 49.303582096000156 ], [ -122.769248505999968, 49.303284507000079 ], [ -122.769611214999912, 49.302358700000063 ], [ -122.769613996999951, 49.301864502000036 ], [ -122.769410097, 49.301008593000084 ], [ -122.768931597999966, 49.300314995000058 ], [ -122.768675082999934, 49.299406298000108 ], [ -122.768939496999906, 49.298651494000126 ], [ -122.769827583999941, 49.297033598000063 ], [ -122.769967513, 49.296593493000039 ], [ -122.77021530899998, 49.296387003000085 ], [ -122.770615293, 49.296280213000102 ], [ -122.771593104999965, 49.296300099000049 ], [ -122.773653383, 49.296510902000115 ], [ -122.774274301999981, 49.296377109000012 ], [ -122.774742090999936, 49.296144899000126 ], [ -122.774855303999971, 49.295307486000134 ], [ -122.774878055999949, 49.294956155000072 ], [ -122.77490068099999, 49.294606801000086 ], [ -122.774805696999948, 49.294309104000028 ], [ -122.774544602999981, 49.294102590000108 ], [ -122.773722183999936, 49.293740803000063 ], [ -122.772333305999936, 49.2919812620001 ], [ -122.773296081999916, 49.292010040000072 ], [ -122.77330282299999, 49.290539874000018 ], [ -122.773099280999986, 49.290421409000054 ], [ -122.77289080499996, 49.290421 ], [ -122.772892438, 49.29006549200006 ], [ -122.772848911999944, 49.289881207000057 ], [ -122.772480729, 49.289880482000093 ], [ -122.772481971999937, 49.289610630000077 ], [ -122.772344721999943, 49.289610359000044 ], [ -122.772073357999957, 49.288755687000091 ], [ -122.772080614999965, 49.287181142000058 ], [ -122.772493146999949, 49.287181955000051 ], [ -122.772495630999956, 49.286642249000082 ], [ -122.772908156999932, 49.286643061000056 ], [ -122.77290939699999, 49.286373208000057 ], [ -122.773321922999912, 49.286374018000046 ], [ -122.77332248, 49.286252372000021 ], [ -122.774191705999968, 49.286144592000085 ], [ -122.774450791999953, 49.286213595000092 ], [ -122.776042312999962, 49.286220608000129 ], [ -122.776033195999943, 49.286884206000124 ], [ -122.774744986999934, 49.286886289000051 ], [ -122.773895800999952, 49.287868097000043 ], [ -122.774233185999918, 49.287918805000039 ], [ -122.775528080999891, 49.287842093000116 ], [ -122.776004594999947, 49.288482494000093 ], [ -122.775836379999973, 49.288528804000116 ], [ -122.774169484999959, 49.288636711000066 ], [ -122.773329919999981, 49.288512496000131 ], [ -122.772944194999965, 49.28850358200004 ], [ -122.773209410999968, 49.288939507000073 ], [ -122.773283212999942, 49.289261494000066 ], [ -122.77334751399998, 49.289484208000054 ], [ -122.773467906999969, 49.289631001000082 ], [ -122.773939583999919, 49.290003694000085 ], [ -122.774171202999952, 49.290251994000094 ], [ -122.774346915999956, 49.290571703000097 ], [ -122.774258097999905, 49.291215892000089 ], [ -122.774218503999933, 49.291784906000068 ], [ -122.774265208999964, 49.291963790000054 ], [ -122.77435108499995, 49.292092497000077 ], [ -122.774601147999959, 49.292481085000055 ], [ -122.774689662999918, 49.292618565000026 ], [ -122.77468981, 49.292618804000043 ], [ -122.775113028999925, 49.292563901000094 ], [ -122.776149794999938, 49.292581407000078 ], [ -122.777380108, 49.29258569800006 ], [ -122.77738819399994, 49.291242711000045 ], [ -122.778450784999976, 49.291265394000106 ], [ -122.778439084999945, 49.291651492000092 ], [ -122.778467687999978, 49.292565001000064 ], [ -122.778475550999971, 49.292573745000013 ], [ -122.77871268299999, 49.292838007000036 ], [ -122.778723702999969, 49.292832601000072 ], [ -122.778884999999889, 49.292753309 ], [ -122.779723516999979, 49.292341188000101 ], [ -122.780019206999938, 49.292101290000062 ], [ -122.780604723999915, 49.291333166000115 ], [ -122.780729452999964, 49.291273690000047 ], [ -122.780796620999979, 49.291241667000051 ], [ -122.781143302999936, 49.291219576000046 ], [ -122.781398519999982, 49.291276124000035 ], [ -122.78183382899999, 49.291372566000106 ], [ -122.7816532399999, 49.291773229000071 ], [ -122.781425902999985, 49.292277511000052 ], [ -122.781190734999967, 49.292793022000041 ], [ -122.781157851999978, 49.292870413000045 ], [ -122.780997500999931, 49.293160209000035 ], [ -122.780839635999953, 49.293490361000124 ], [ -122.780705602999973, 49.293770625000079 ], [ -122.780423234999958, 49.294361081000034 ], [ -122.780381329999983, 49.294449935000095 ], [ -122.77938700199995, 49.29640708500007 ], [ -122.779242932999964, 49.296690695000066 ], [ -122.778907921999973, 49.297350053000095 ], [ -122.778765513999971, 49.297612493 ], [ -122.778231692999967, 49.298596207000038 ], [ -122.778057865999955, 49.298916562000038 ], [ -122.7777257599999, 49.298826485000049 ], [ -122.777369070999953, 49.298775295000098 ], [ -122.777022895999934, 49.298771318000128 ], [ -122.77660446299997, 49.298836250000136 ], [ -122.776203346000017, 49.298929726 ], [ -122.775972323999923, 49.299028231000079 ], [ -122.775708752999961, 49.299179834000022 ], [ -122.775185318999959, 49.299588418000063 ], [ -122.774729600999976, 49.299792834000058 ], [ -122.774138211999968, 49.299893203000067 ], [ -122.772597096999988, 49.299866997000045 ], [ -122.77259095399998, 49.300008035000097 ], [ -122.77258100799996, 49.300235900000125 ], [ -122.770354346999966, 49.300240870000017 ], [ -122.77034059099995, 49.300240910000113 ], [ -122.770340515000015, 49.300439097000037 ], [ -122.770725687, 49.301166790000146 ], [ -122.770762102999925, 49.301275995000026 ], [ -122.77073313799994, 49.301856173000076 ], [ -122.770727392999945, 49.301971388000055 ], [ -122.770704982999973, 49.302648194000028 ], [ -122.77134691399999, 49.302652888000054 ], [ -122.772481501999934, 49.302672398000013 ], [ -122.772463185999953, 49.303112405000064 ], [ -122.772434599999912, 49.303838593000101 ], [ -122.772284891999959, 49.30383712400004 ], [ -122.771402506999948, 49.303828499000083 ] ], [ [ -122.776168661999975, 49.295422629000051 ], [ -122.776169907999957, 49.295147447000069 ], [ -122.77529928899996, 49.295121449000106 ], [ -122.775293816999977, 49.295200102000059 ], [ -122.77607101299995, 49.295223311000051 ], [ -122.776057379999955, 49.295419306000028 ], [ -122.776168661999975, 49.295422629000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79618833", "BldgCostT": "54228333", "sL_LossRatio": "0.739289181239948", "sL_AssetLoss": "1380380", "sL_BldgLoss": "1020500", "sL_StrLoss": "431000", "sL_NStrLoss": "589500", "sL_ContLoss": "359880", "geom_point": "0101000020E61000009E317150A7B15EC08F74275447A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.775095709999974, 49.289946301000029 ], [ -122.777407289999942, 49.289959508 ], [ -122.777409097999922, 49.290586511000065 ], [ -122.77738819399994, 49.291242711000045 ], [ -122.777380108, 49.29258569800006 ], [ -122.776149794999938, 49.292581407000078 ], [ -122.775113028999925, 49.292563901000094 ], [ -122.77468981, 49.292618804000043 ], [ -122.774689662999918, 49.292618565000026 ], [ -122.774601147999959, 49.292481085000055 ], [ -122.77435108499995, 49.292092497000077 ], [ -122.774265208999964, 49.291963790000054 ], [ -122.774218503999933, 49.291784906000068 ], [ -122.774258097999905, 49.291215892000089 ], [ -122.774346915999956, 49.290571703000097 ], [ -122.774171202999952, 49.290251994000094 ], [ -122.773939583999919, 49.290003694000085 ], [ -122.77420489299999, 49.289944904000059 ], [ -122.775095709999974, 49.289946301000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117785333", "BldgCostT": "79493333", "sL_LossRatio": "0.739904459395243", "sL_AssetLoss": "1999150", "sL_BldgLoss": "1479180", "sL_StrLoss": "650770", "sL_NStrLoss": "828410", "sL_ContLoss": "519970", "geom_point": "0101000020E610000075E361CA55B15EC02FAF1A5349A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.768798209999915, 49.289996696000102 ], [ -122.768216714999951, 49.289659512000057 ], [ -122.767719414999959, 49.289653600000101 ], [ -122.767115809999936, 49.289634697000075 ], [ -122.767122728999965, 49.289338502000064 ], [ -122.76712253599996, 49.289278829000047 ], [ -122.767122091999951, 49.289110501000053 ], [ -122.767124209999906, 49.288969033000093 ], [ -122.767131610999954, 49.288474321000109 ], [ -122.76713820599997, 49.288032588000078 ], [ -122.767203686999949, 49.287842710000071 ], [ -122.767257800999914, 49.28777359 ], [ -122.767239877999927, 49.286514990000072 ], [ -122.76723091400001, 49.28576680100015 ], [ -122.767228031999949, 49.285523961000166 ], [ -122.767213698999939, 49.28432770800007 ], [ -122.767207193999965, 49.282805004000124 ], [ -122.767224870999954, 49.281080553000066 ], [ -122.767233634999954, 49.280227548 ], [ -122.767239273999948, 49.279677301000042 ], [ -122.767252713999966, 49.278367596000074 ], [ -122.767398835000023, 49.278370194000082 ], [ -122.768017428999954, 49.278381213000067 ], [ -122.768813495999936, 49.278395393000032 ], [ -122.769612473, 49.278397917000049 ], [ -122.77043102499999, 49.278400506 ], [ -122.773157914999942, 49.278480289000044 ], [ -122.774052327999925, 49.278420977000096 ], [ -122.775148120999972, 49.278456986000059 ], [ -122.775150035999943, 49.278513662000115 ], [ -122.775007809999977, 49.278511718000104 ], [ -122.775007628999958, 49.278551502000113 ], [ -122.776245007999975, 49.27855390500013 ], [ -122.77622913799999, 49.282061997000078 ], [ -122.776253815999937, 49.282062045000011 ], [ -122.77603657099999, 49.282331479000071 ], [ -122.775815423999958, 49.282331051000064 ], [ -122.775814199999957, 49.282600904000034 ], [ -122.775401707999919, 49.282600103000071 ], [ -122.775399339000032, 49.283121776000087 ], [ -122.775384819999928, 49.283139781000067 ], [ -122.77498675799994, 49.283139006000127 ], [ -122.774985529999967, 49.283408859000062 ], [ -122.774573029999942, 49.283408055000073 ], [ -122.774570569999923, 49.283947762000075 ], [ -122.774158065, 49.28394695700004 ], [ -122.774155969999953, 49.284405630000023 ], [ -122.773870416999941, 49.284755960000034 ], [ -122.773741855999944, 49.284755708000027 ], [ -122.773741128999944, 49.284914574000027 ], [ -122.773650805000017, 49.285025386000093 ], [ -122.773328106999941, 49.285024753000108 ], [ -122.773326870999981, 49.285294606000029 ], [ -122.772914353999951, 49.285293796000069 ], [ -122.772913113999891, 49.285563649000061 ], [ -122.772500596999947, 49.285562838000054 ], [ -122.772499354999951, 49.285832690000063 ], [ -122.771261793999926, 49.285830247000035 ], [ -122.771263041999973, 49.285560395000061 ], [ -122.770438003999985, 49.285558758000022 ], [ -122.770434246999955, 49.286368317000047 ], [ -122.770846771999942, 49.286369135 ], [ -122.770845519999938, 49.286638989000039 ], [ -122.771258048999968, 49.286639806000053 ], [ -122.771256157999986, 49.287048578000054 ], [ -122.771110979999918, 49.287159602000031 ], [ -122.770958681999943, 49.287420195000074 ], [ -122.770957473999886, 49.287448776000133 ], [ -122.770841769999933, 49.287448547000047 ], [ -122.77083801699996, 49.288258105000111 ], [ -122.770425476999947, 49.288257286000047 ], [ -122.770420464999944, 49.28933669700011 ], [ -122.770833013999919, 49.289337516000096 ], [ -122.770831763999965, 49.289607369000088 ], [ -122.771911148999948, 49.289609505 ], [ -122.771965826, 49.289689393000096 ], [ -122.772068785999949, 49.289747317000064 ], [ -122.772061831999949, 49.291255771000117 ], [ -122.772026741, 49.291266143000016 ], [ -122.771968908999924, 49.291282194000111 ], [ -122.771043815999974, 49.291508990000047 ], [ -122.770565601000015, 49.291624409000086 ], [ -122.769040799999956, 49.290913903000053 ], [ -122.768281786999978, 49.290559703000056 ], [ -122.768798209999915, 49.289996696000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88953417", "BldgCostT": "60611667", "sL_LossRatio": "0.749318020948488", "sL_AssetLoss": "1257370", "sL_BldgLoss": "942170", "sL_StrLoss": "424420", "sL_NStrLoss": "517750", "sL_ContLoss": "315200", "geom_point": "0101000020E6100000DC0A489835B15EC027C286A757A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767943802999966, 49.293041400000028 ], [ -122.767941610999941, 49.292717894000127 ], [ -122.767116798999936, 49.292715808000018 ], [ -122.767117524, 49.291287004 ], [ -122.767115382999961, 49.291080607000033 ], [ -122.767078993999917, 49.29099030400004 ], [ -122.766860539, 49.290796144000105 ], [ -122.767345241, 49.290571678000084 ], [ -122.767329029999985, 49.290560903000028 ], [ -122.767221002000014, 49.290433307000058 ], [ -122.767127204999937, 49.29022061100008 ], [ -122.767115809999936, 49.289634697000075 ], [ -122.767719414999959, 49.289653600000101 ], [ -122.768216714999951, 49.289659512000057 ], [ -122.768798209999915, 49.289996696000102 ], [ -122.768281786999978, 49.290559703000056 ], [ -122.769040799999956, 49.290913903000053 ], [ -122.770565601000015, 49.291624409000086 ], [ -122.771043815999974, 49.291508990000047 ], [ -122.77132180299999, 49.292256 ], [ -122.771623794999954, 49.292677607000037 ], [ -122.771725780999986, 49.293028400000104 ], [ -122.771204203999957, 49.29301639200002 ], [ -122.7710252099999, 49.293058790000067 ], [ -122.770424783999957, 49.293052607000043 ], [ -122.769551995999961, 49.293049017000058 ], [ -122.768747893999958, 49.293044792000124 ], [ -122.767943802999966, 49.293041400000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137161167", "BldgCostT": "89786667", "sL_LossRatio": "0.720679798137664", "sL_AssetLoss": "1983530", "sL_BldgLoss": "1429490", "sL_StrLoss": "612210", "sL_NStrLoss": "817280", "sL_ContLoss": "554040", "geom_point": "0101000020E61000006F857EE009B15EC06F7C50C460A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76311526799995, 49.292939108000077 ], [ -122.76311694899999, 49.292794215000093 ], [ -122.76312928399993, 49.291722603000032 ], [ -122.76313343299995, 49.291362838000033 ], [ -122.763135915999953, 49.291146940000075 ], [ -122.763139677999959, 49.290823109000051 ], [ -122.763145355999953, 49.290333252000096 ], [ -122.76314660499996, 49.290226495000105 ], [ -122.763159399999964, 49.289334116000092 ], [ -122.76712253599996, 49.289278829000047 ], [ -122.767122728999965, 49.289338502000064 ], [ -122.767115809999936, 49.289634697000075 ], [ -122.767127204999937, 49.29022061100008 ], [ -122.767221002000014, 49.290433307000058 ], [ -122.767329029999985, 49.290560903000028 ], [ -122.767345241, 49.290571678000084 ], [ -122.766860539, 49.290796144000105 ], [ -122.767078993999917, 49.29099030400004 ], [ -122.767115382999961, 49.291080607000033 ], [ -122.767117524, 49.291287004 ], [ -122.767116798999936, 49.292715808000018 ], [ -122.767941610999941, 49.292717894000127 ], [ -122.767943802999966, 49.293041400000028 ], [ -122.768747893999958, 49.293044792000124 ], [ -122.769551995999961, 49.293049017000058 ], [ -122.770424783999957, 49.293052607000043 ], [ -122.7710252099999, 49.293058790000067 ], [ -122.770976487999974, 49.294449256000085 ], [ -122.770975463999932, 49.294482243000118 ], [ -122.770967875999972, 49.294730984000083 ], [ -122.770965530999931, 49.294803868000038 ], [ -122.769623182999965, 49.294651121000065 ], [ -122.763113936999972, 49.292997617000061 ], [ -122.76311526799995, 49.292939108000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195688500", "BldgCostT": "129120000", "sL_LossRatio": "0.762039142068276", "sL_AssetLoss": "1640690", "sL_BldgLoss": "1250270", "sL_StrLoss": "658770", "sL_NStrLoss": "591500", "sL_ContLoss": "390420", "geom_point": "0101000020E6100000F41A061C97B05EC0D19FFD4811A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.75598937699999, 49.289239324000071 ], [ -122.756000275999924, 49.288454386000076 ], [ -122.756016561, 49.287534136000033 ], [ -122.756028744, 49.286672334000059 ], [ -122.756041460999967, 49.285751141000098 ], [ -122.756041595999989, 49.285742107000026 ], [ -122.757446608999885, 49.285662707000071 ], [ -122.758503701000038, 49.285672478000095 ], [ -122.75965631399994, 49.285683102000128 ], [ -122.760183551999901, 49.285751726000036 ], [ -122.761626193999959, 49.285840043000086 ], [ -122.761614912999974, 49.286646403000077 ], [ -122.761589868999977, 49.288175242000086 ], [ -122.761586323999936, 49.288393304000188 ], [ -122.761583174999942, 49.288570980000017 ], [ -122.761570021999916, 49.289316194000072 ], [ -122.763159399999964, 49.289334116000092 ], [ -122.76314660499996, 49.290226495000105 ], [ -122.763145355999953, 49.290333252000096 ], [ -122.763139677999959, 49.290823109000051 ], [ -122.763135915999953, 49.291146940000075 ], [ -122.76313343299995, 49.291362838000033 ], [ -122.76312928399993, 49.291722603000032 ], [ -122.76311694899999, 49.292794215000093 ], [ -122.76311526799995, 49.292939108000077 ], [ -122.763113936999972, 49.292997617000061 ], [ -122.763067759999942, 49.292998030000071 ], [ -122.762475080999934, 49.29300337500009 ], [ -122.761153771999929, 49.293015246000031 ], [ -122.759878024999978, 49.293026695000101 ], [ -122.757767815999955, 49.29300918900006 ], [ -122.75763541399999, 49.293008104000137 ], [ -122.755941038999964, 49.292994040000046 ], [ -122.755943313999964, 49.292941868000092 ], [ -122.755973746, 49.290494020000111 ], [ -122.755978446999904, 49.290115912000019 ], [ -122.755988714999972, 49.289291288000065 ], [ -122.75598937699999, 49.289239324000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102910750", "BldgCostT": "67795000", "sL_LossRatio": "0.748901556166051", "sL_AssetLoss": "1117490", "sL_BldgLoss": "836890", "sL_StrLoss": "390950", "sL_NStrLoss": "445940", "sL_ContLoss": "280600", "geom_point": "0101000020E6100000923C11A3EBB05EC05F1F8C8E9AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76165050799996, 49.283439302000069 ], [ -122.761659994999931, 49.282674691000054 ], [ -122.762794992999929, 49.282542085000088 ], [ -122.763043404999948, 49.282490083000077 ], [ -122.763837823999964, 49.282176997000121 ], [ -122.76421760299999, 49.28211178400003 ], [ -122.764412976999921, 49.2827978 ], [ -122.766014399999946, 49.282799010000076 ], [ -122.767207193999965, 49.282805004000124 ], [ -122.767213698999939, 49.28432770800007 ], [ -122.767228031999949, 49.285523961000166 ], [ -122.76723091400001, 49.28576680100015 ], [ -122.767239877999927, 49.286514990000072 ], [ -122.767257800999914, 49.28777359 ], [ -122.767203686999949, 49.287842710000071 ], [ -122.76713820599997, 49.288032588000078 ], [ -122.767131610999954, 49.288474321000109 ], [ -122.767124209999906, 49.288969033000093 ], [ -122.767122091999951, 49.289110501000053 ], [ -122.76712253599996, 49.289278829000047 ], [ -122.763159399999964, 49.289334116000092 ], [ -122.761570021999916, 49.289316194000072 ], [ -122.761583174999942, 49.288570980000017 ], [ -122.761586323999936, 49.288393304000188 ], [ -122.761589868999977, 49.288175242000086 ], [ -122.761614912999974, 49.286646403000077 ], [ -122.761626193999959, 49.285840043000086 ], [ -122.761627701999956, 49.285734100000113 ], [ -122.761631899999884, 49.285280190000051 ], [ -122.761640692999961, 49.284308402000129 ], [ -122.761648197999989, 49.283641811000081 ], [ -122.76165050799996, 49.283439302000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118131167", "BldgCostT": "78316667", "sL_LossRatio": "0.754912820195041", "sL_AssetLoss": "1291010", "sL_BldgLoss": "974600", "sL_StrLoss": "463400", "sL_NStrLoss": "511200", "sL_ContLoss": "316410", "geom_point": "0101000020E6100000DF2FC97591B05EC08B0D066C41A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756041595999989, 49.285742107000026 ], [ -122.756044926999948, 49.285528319000058 ], [ -122.756063930999986, 49.284304003000052 ], [ -122.756071315999975, 49.283961907000041 ], [ -122.756114506999964, 49.282106402000075 ], [ -122.756098193999932, 49.281219383000106 ], [ -122.756108098999931, 49.280763882000038 ], [ -122.756828215999946, 49.280767438000055 ], [ -122.757509693999978, 49.280770810000043 ], [ -122.758867808999952, 49.280771096000073 ], [ -122.759248142999979, 49.280773149000026 ], [ -122.759646787999927, 49.280775302000087 ], [ -122.759798005999983, 49.280776123000045 ], [ -122.760259683999948, 49.280778608000048 ], [ -122.761678313999951, 49.280777995000093 ], [ -122.761673245999944, 49.281303097000055 ], [ -122.761659994999931, 49.282674691000054 ], [ -122.76165050799996, 49.283439302000069 ], [ -122.761648197999989, 49.283641811000081 ], [ -122.761640692999961, 49.284308402000129 ], [ -122.761631899999884, 49.285280190000051 ], [ -122.761627701999956, 49.285734100000113 ], [ -122.761626193999959, 49.285840043000086 ], [ -122.760183551999901, 49.285751726000036 ], [ -122.75965631399994, 49.285683102000128 ], [ -122.758503701000038, 49.285672478000095 ], [ -122.757446608999885, 49.285662707000071 ], [ -122.756041595999989, 49.285742107000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96550974", "BldgCostT": "62885308", "sL_LossRatio": "0.741648128539649", "sL_AssetLoss": "1029410", "sL_BldgLoss": "763460", "sL_StrLoss": "362620", "sL_NStrLoss": "400840", "sL_ContLoss": "265950", "geom_point": "0101000020E6100000D175345051B05EC07E7F20CC2FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.753172208999942, 49.284666589000032 ], [ -122.753173410999949, 49.283962208000062 ], [ -122.752850147999979, 49.283960165000053 ], [ -122.752613566999969, 49.283986384000059 ], [ -122.752693243999957, 49.283922819000061 ], [ -122.753318289999982, 49.283424199000052 ], [ -122.754292787999972, 49.28264079500007 ], [ -122.754802816, 49.2822283080001 ], [ -122.754612787, 49.28205590000006 ], [ -122.754643054999946, 49.280469895000088 ], [ -122.754654328999933, 49.279876118000097 ], [ -122.754665486999912, 49.279291512000093 ], [ -122.754678182999982, 49.278625943000073 ], [ -122.754681188999967, 49.278467787000068 ], [ -122.75613878800003, 49.278459296000072 ], [ -122.756133197999958, 49.278880910000048 ], [ -122.756108098999931, 49.280763882000038 ], [ -122.756098193999932, 49.281219383000106 ], [ -122.756114506999964, 49.282106402000075 ], [ -122.756071315999975, 49.283961907000041 ], [ -122.756063930999986, 49.284304003000052 ], [ -122.756044926999948, 49.285528319000058 ], [ -122.756041595999989, 49.285742107000026 ], [ -122.754603511999946, 49.285736532000058 ], [ -122.753187044999891, 49.285731061000043 ], [ -122.753190699999919, 49.285226714000061 ], [ -122.753185408999968, 49.285027625000083 ], [ -122.75315978499998, 49.284824712000088 ], [ -122.753172208999942, 49.284666589000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93143834", "BldgCostT": "63028334", "sL_LossRatio": "0.745241876528271", "sL_AssetLoss": "1190070", "sL_BldgLoss": "886890", "sL_StrLoss": "419250", "sL_NStrLoss": "467640", "sL_ContLoss": "303180", "geom_point": "0101000020E61000006000025232B05EC0DACA227FF6A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.753206474999971, 49.283353201000054 ], [ -122.753227413999966, 49.282151083000073 ], [ -122.752087986999967, 49.282148397000135 ], [ -122.752050281999971, 49.282148328000027 ], [ -122.750874382999939, 49.282146092000062 ], [ -122.750873196000015, 49.281418099000128 ], [ -122.750876186999932, 49.280708294000085 ], [ -122.750878297999975, 49.280227297000117 ], [ -122.750928612999957, 49.279999105000066 ], [ -122.753588811999947, 49.28003310000004 ], [ -122.753589635999958, 49.279972794000052 ], [ -122.753609895999958, 49.278475184000143 ], [ -122.754025179999985, 49.27847239400014 ], [ -122.754681188999967, 49.278467787000068 ], [ -122.754678182999982, 49.278625943000073 ], [ -122.754665486999912, 49.279291512000093 ], [ -122.754654328999933, 49.279876118000097 ], [ -122.754643054999946, 49.280469895000088 ], [ -122.754612787, 49.28205590000006 ], [ -122.754802816, 49.2822283080001 ], [ -122.754292787999972, 49.28264079500007 ], [ -122.753318289999982, 49.283424199000052 ], [ -122.753206474999971, 49.283353201000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142981500", "BldgCostT": "89085000", "sL_LossRatio": "0.731240359993411", "sL_AssetLoss": "1335580", "sL_BldgLoss": "976630", "sL_StrLoss": "471110", "sL_NStrLoss": "505520", "sL_ContLoss": "358950", "geom_point": "0101000020E610000070014FF78DB05EC01F59F965B0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.75613878800003, 49.278459296000072 ], [ -122.756150731, 49.277603622000036 ], [ -122.756161806999984, 49.276812110000044 ], [ -122.756165193999948, 49.276568211000082 ], [ -122.75684873699997, 49.276575444000088 ], [ -122.757552386999961, 49.276582913000063 ], [ -122.758948002999915, 49.276575203000078 ], [ -122.759598577999981, 49.276569317000096 ], [ -122.760330200999974, 49.276562683000087 ], [ -122.760302501999945, 49.27843479800007 ], [ -122.760978976999965, 49.278418659000124 ], [ -122.761723393999929, 49.278400891000054 ], [ -122.761704502999976, 49.279419303000111 ], [ -122.76168660499999, 49.280305201000054 ], [ -122.761678313999951, 49.280777995000093 ], [ -122.760259683999948, 49.280778608000048 ], [ -122.759798005999983, 49.280776123000045 ], [ -122.759646787999927, 49.280775302000087 ], [ -122.759248142999979, 49.280773149000026 ], [ -122.758867808999952, 49.280771096000073 ], [ -122.757509693999978, 49.280770810000043 ], [ -122.756828215999946, 49.280767438000055 ], [ -122.756108098999931, 49.280763882000038 ], [ -122.756133197999958, 49.278880910000048 ], [ -122.75613878800003, 49.278459296000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190645037", "BldgCostT": "120200052", "sL_LossRatio": "0.72587049011627", "sL_AssetLoss": "2604280", "sL_BldgLoss": "1890370", "sL_StrLoss": "809600", "sL_NStrLoss": "1080770", "sL_ContLoss": "713910", "geom_point": "0101000020E610000049A9646392B05EC0ABE8C53F22A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.761021150999923, 49.272381615000029 ], [ -122.761676722999965, 49.272377805000062 ], [ -122.761682977999939, 49.272973719000056 ], [ -122.761689498999928, 49.273592605000054 ], [ -122.76171520399997, 49.27418767800004 ], [ -122.76174149900001, 49.27479598400005 ], [ -122.761721021999904, 49.275213944000043 ], [ -122.76169960199999, 49.275651508000045 ], [ -122.76170358899999, 49.276085854000044 ], [ -122.76170789499993, 49.27655629600013 ], [ -122.760987132999944, 49.276559655000064 ], [ -122.760330200999974, 49.276562683000087 ], [ -122.759598577999981, 49.276569317000096 ], [ -122.758948002999915, 49.276575203000078 ], [ -122.757552386999961, 49.276582913000063 ], [ -122.75684873699997, 49.276575444000088 ], [ -122.756165193999948, 49.276568211000082 ], [ -122.75616980199996, 49.274833203000092 ], [ -122.756165104999951, 49.27362220800007 ], [ -122.756155690999947, 49.273106186000035 ], [ -122.756152201999925, 49.272917181000061 ], [ -122.756149436999962, 49.272764278000082 ], [ -122.756142916999977, 49.272407107000056 ], [ -122.756896805999972, 49.272403400000066 ], [ -122.757613974999984, 49.27239989300007 ], [ -122.75828509899999, 49.272395882000119 ], [ -122.758988881999969, 49.272391695000032 ], [ -122.76037058899999, 49.272385404000111 ], [ -122.761021150999923, 49.272381615000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142433666", "BldgCostT": "98726666", "sL_LossRatio": "0.797142809210563", "sL_AssetLoss": "1609413", "sL_BldgLoss": "1282932", "sL_StrLoss": "570732", "sL_NStrLoss": "712200", "sL_ContLoss": "326481", "geom_point": "0101000020E6100000522DD08BE6B05EC041919B9F6AA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.766536210999917, 49.274777902000061 ], [ -122.767214383999914, 49.274776293000095 ], [ -122.76722418599995, 49.275305405000033 ], [ -122.76723151000003, 49.276502904000061 ], [ -122.767229414999974, 49.276768598000054 ], [ -122.767252713999966, 49.278367596000074 ], [ -122.765336867999935, 49.27837916500004 ], [ -122.762367206999983, 49.278397040000115 ], [ -122.761723393999929, 49.278400891000054 ], [ -122.760978976999965, 49.278418659000124 ], [ -122.760302501999945, 49.27843479800007 ], [ -122.760330200999974, 49.276562683000087 ], [ -122.760987132999944, 49.276559655000064 ], [ -122.76170789499993, 49.27655629600013 ], [ -122.76170358899999, 49.276085854000044 ], [ -122.76169960199999, 49.275651508000045 ], [ -122.761721021999904, 49.275213944000043 ], [ -122.76174149900001, 49.27479598400005 ], [ -122.764458103999928, 49.274784698000062 ], [ -122.765106358999958, 49.274782273000028 ], [ -122.765821892999895, 49.274779603000098 ], [ -122.766481254999974, 49.274778043000076 ], [ -122.766536210999917, 49.274777902000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114255166", "BldgCostT": "78796666", "sL_LossRatio": "0.772219375361866", "sL_AssetLoss": "1352367", "sL_BldgLoss": "1044324", "sL_StrLoss": "488004", "sL_NStrLoss": "556320", "sL_ContLoss": "308043", "geom_point": "0101000020E610000076E4EDADEDB05EC0EFFAD4CAE7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.763043404999948, 49.282490083000077 ], [ -122.762794992999929, 49.282542085000088 ], [ -122.761659994999931, 49.282674691000054 ], [ -122.761673245999944, 49.281303097000055 ], [ -122.761678313999951, 49.280777995000093 ], [ -122.76168660499999, 49.280305201000054 ], [ -122.761704502999976, 49.279419303000111 ], [ -122.761723393999929, 49.278400891000054 ], [ -122.762367206999983, 49.278397040000115 ], [ -122.765336867999935, 49.27837916500004 ], [ -122.767252713999966, 49.278367596000074 ], [ -122.767239273999948, 49.279677301000042 ], [ -122.767233634999954, 49.280227548 ], [ -122.767224870999954, 49.281080553000066 ], [ -122.767207193999965, 49.282805004000124 ], [ -122.766014399999946, 49.282799010000076 ], [ -122.764412976999921, 49.2827978 ], [ -122.76421760299999, 49.28211178400003 ], [ -122.763837823999964, 49.282176997000121 ], [ -122.763043404999948, 49.282490083000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110372166", "BldgCostT": "70071666", "sL_LossRatio": "0.712053342172342", "sL_AssetLoss": "1713616", "sL_BldgLoss": "1220186", "sL_StrLoss": "525766", "sL_NStrLoss": "694420", "sL_ContLoss": "493430", "geom_point": "0101000020E61000002FBBF5D449B15EC077DDD75874A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76723151000003, 49.276502904000061 ], [ -122.76722418599995, 49.275305405000033 ], [ -122.767977391000031, 49.275303290000082 ], [ -122.768820203999923, 49.275300892000075 ], [ -122.769585924999944, 49.275298686000042 ], [ -122.770410804999955, 49.275296304000051 ], [ -122.770409111999982, 49.276010708000101 ], [ -122.773832790999961, 49.276050887000103 ], [ -122.773684508999949, 49.276392705000063 ], [ -122.773578833999963, 49.276636361000079 ], [ -122.773495598999915, 49.276828196000025 ], [ -122.773301203999964, 49.277354809000052 ], [ -122.773178795999925, 49.277686290000076 ], [ -122.773157914999942, 49.278480289000044 ], [ -122.77043102499999, 49.278400506 ], [ -122.769612473, 49.278397917000049 ], [ -122.768813495999936, 49.278395393000032 ], [ -122.768017428999954, 49.278381213000067 ], [ -122.767398835000023, 49.278370194000082 ], [ -122.767252713999966, 49.278367596000074 ], [ -122.767229414999974, 49.276768598000054 ], [ -122.76723151000003, 49.276502904000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177682366", "BldgCostT": "117248879", "sL_LossRatio": "0.733324716889581", "sL_AssetLoss": "2738949", "sL_BldgLoss": "2008539", "sL_StrLoss": "876519", "sL_NStrLoss": "1132020", "sL_ContLoss": "730410", "geom_point": "0101000020E61000002B99E7B13BB15EC09267878DECA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767197508999971, 49.272396395000051 ], [ -122.767175720999916, 49.271171400000121 ], [ -122.76717031, 49.270663929000108 ], [ -122.767169429999953, 49.270582977000068 ], [ -122.767163908000015, 49.270059289000038 ], [ -122.770215985, 49.270100295000141 ], [ -122.771351390999911, 49.270116201000079 ], [ -122.77095447499994, 49.270616927000084 ], [ -122.770519785999952, 49.271165311000082 ], [ -122.77038709499999, 49.271334298000092 ], [ -122.770389509999944, 49.271767844000045 ], [ -122.770393192999947, 49.272430910000018 ], [ -122.77105620599994, 49.272433336000176 ], [ -122.771732808999914, 49.272435802000068 ], [ -122.771765887999962, 49.273895403000012 ], [ -122.771780093999936, 49.275310200000064 ], [ -122.771083682999929, 49.275303133000072 ], [ -122.770410804999955, 49.275296304000051 ], [ -122.769585924999944, 49.275298686000042 ], [ -122.768820203999923, 49.275300892000075 ], [ -122.767977391000031, 49.275303290000082 ], [ -122.76722418599995, 49.275305405000033 ], [ -122.767214383999914, 49.274776293000095 ], [ -122.767212390999958, 49.273859087000112 ], [ -122.767212785999931, 49.273557310000108 ], [ -122.767211098, 49.273147311000095 ], [ -122.767197508999971, 49.272396395000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150268229", "BldgCostT": "101774858", "sL_LossRatio": "0.768664126304188", "sL_AssetLoss": "1923610", "sL_BldgLoss": "1478610", "sL_StrLoss": "666730", "sL_NStrLoss": "811880", "sL_ContLoss": "445000", "geom_point": "0101000020E6100000024545FF78B15EC0640832C8FEA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771765887999962, 49.273895403000012 ], [ -122.771732808999914, 49.272435802000068 ], [ -122.77105620599994, 49.272433336000176 ], [ -122.770393192999947, 49.272430910000018 ], [ -122.770389509999944, 49.271767844000045 ], [ -122.77038709499999, 49.271334298000092 ], [ -122.770519785999952, 49.271165311000082 ], [ -122.774196300999961, 49.271210686000067 ], [ -122.775291395999901, 49.271224202000106 ], [ -122.775250773999986, 49.272245593000072 ], [ -122.775241919999985, 49.272468703000037 ], [ -122.775216792, 49.272731233000059 ], [ -122.775166502999951, 49.273257410000056 ], [ -122.77511768799998, 49.273761408000041 ], [ -122.775065189999978, 49.273922908000117 ], [ -122.77453890699995, 49.27487109200009 ], [ -122.773832790999961, 49.276050887000103 ], [ -122.770409111999982, 49.276010708000101 ], [ -122.770410804999955, 49.275296304000051 ], [ -122.771083682999929, 49.275303133000072 ], [ -122.771780093999936, 49.275310200000064 ], [ -122.771765887999962, 49.273895403000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154413250", "BldgCostT": "102940000", "sL_LossRatio": "0.745522236855435", "sL_AssetLoss": "1974200", "sL_BldgLoss": "1471810", "sL_StrLoss": "646750", "sL_NStrLoss": "825060", "sL_ContLoss": "502390", "geom_point": "0101000020E610000074A34C9367B15EC0BEC8CA5091A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77095447499994, 49.270616927000084 ], [ -122.771351390999911, 49.270116201000079 ], [ -122.770215985, 49.270100295000141 ], [ -122.767163908000015, 49.270059289000038 ], [ -122.767164352999927, 49.269611566000087 ], [ -122.76716480499999, 49.269159393000095 ], [ -122.77023049899999, 49.269201604000095 ], [ -122.772052308999918, 49.269228193000103 ], [ -122.775292313999955, 49.269273701000053 ], [ -122.775282123999915, 49.269708418000072 ], [ -122.77527180499996, 49.270149084000082 ], [ -122.77527138799999, 49.27016679500008 ], [ -122.775281273999937, 49.270689213000068 ], [ -122.775291395999901, 49.271224202000106 ], [ -122.774196300999961, 49.271210686000067 ], [ -122.770519785999952, 49.271165311000082 ], [ -122.77095447499994, 49.270616927000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117162562", "BldgCostT": "71813191", "sL_LossRatio": "0.664560991378247", "sL_AssetLoss": "2026270", "sL_BldgLoss": "1346580", "sL_StrLoss": "596640", "sL_NStrLoss": "749940", "sL_ContLoss": "679690", "geom_point": "0101000020E61000007FF54C8AAAB15EC0E1966E96BBA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.773157914999942, 49.278480289000044 ], [ -122.773178795999925, 49.277686290000076 ], [ -122.773301203999964, 49.277354809000052 ], [ -122.773495598999915, 49.276828196000025 ], [ -122.773578833999963, 49.276636361000079 ], [ -122.773684508999949, 49.276392705000063 ], [ -122.773832790999961, 49.276050887000103 ], [ -122.77453890699995, 49.27487109200009 ], [ -122.775065189999978, 49.273922908000117 ], [ -122.77511768799998, 49.273761408000041 ], [ -122.775166502999951, 49.273257410000056 ], [ -122.775216792, 49.272731233000059 ], [ -122.775241919999985, 49.272468703000037 ], [ -122.775250773999986, 49.272245593000072 ], [ -122.775291395999901, 49.271224202000106 ], [ -122.775281273999937, 49.270689213000068 ], [ -122.77527138799999, 49.27016679500008 ], [ -122.77527180499996, 49.270149084000082 ], [ -122.775282123999915, 49.269708418000072 ], [ -122.775292313999955, 49.269273701000053 ], [ -122.772052308999918, 49.269228193000103 ], [ -122.772401031999919, 49.268796810000012 ], [ -122.772493244999964, 49.268682753000036 ], [ -122.772590599999901, 49.268562296000034 ], [ -122.772898810999905, 49.268320105000036 ], [ -122.773826085999971, 49.267435211000105 ], [ -122.773945547999958, 49.267312692000083 ], [ -122.774493456999963, 49.266750674 ], [ -122.774505101999978, 49.266755578000115 ], [ -122.775339902999974, 49.26710660800007 ], [ -122.77611971099999, 49.267435461000026 ], [ -122.776291804999957, 49.267508046000053 ], [ -122.776485593999951, 49.267586801000071 ], [ -122.779482776999927, 49.26894517500012 ], [ -122.779774350999929, 49.269077320000058 ], [ -122.779821591999919, 49.269098729000078 ], [ -122.779578506999883, 49.269356991000052 ], [ -122.778115838999923, 49.272461136000118 ], [ -122.778109196999964, 49.272460140000071 ], [ -122.778107445000018, 49.272478948000085 ], [ -122.778053791999923, 49.272592807000095 ], [ -122.777761816999941, 49.27295170700004 ], [ -122.777293204999978, 49.273185193000074 ], [ -122.776784191999965, 49.273579690000133 ], [ -122.776355008999957, 49.274101002000116 ], [ -122.776378721999933, 49.274236471000037 ], [ -122.776264538999939, 49.274236249000069 ], [ -122.77626331799992, 49.274506102000046 ], [ -122.776425975999928, 49.274506418000094 ], [ -122.776614992999896, 49.275586207000067 ], [ -122.775846001999966, 49.27558471800009 ], [ -122.775843554999966, 49.276124425000098 ], [ -122.774606235999897, 49.276122017000077 ], [ -122.774605005999945, 49.27639187100003 ], [ -122.774192564999979, 49.276391066000016 ], [ -122.774186828999987, 49.277647642 ], [ -122.77472987199998, 49.277741394 ], [ -122.775011309999982, 49.277741942000041 ], [ -122.775010196999958, 49.277986864000084 ], [ -122.775141734999977, 49.278267862000057 ], [ -122.775148120999972, 49.278456986000059 ], [ -122.774052327999925, 49.278420977000096 ], [ -122.773157914999942, 49.278480289000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33089667", "BldgCostT": "21611667", "sL_LossRatio": "0.679217334875716", "sL_AssetLoss": "708860", "sL_BldgLoss": "481470", "sL_StrLoss": "199500", "sL_NStrLoss": "281970", "sL_ContLoss": "227390", "geom_point": "0101000020E61000003C10B313F5B15EC01CF6FF9AC1A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779453599999925, 49.269940912000031 ], [ -122.780071436999918, 49.269211949000116 ], [ -122.780422395999935, 49.269371006000021 ], [ -122.782322505999986, 49.270150208000132 ], [ -122.78230599699998, 49.271002013000086 ], [ -122.782303769999942, 49.27110743300009 ], [ -122.782301797999963, 49.271201886000014 ], [ -122.782283402999951, 49.272002196000088 ], [ -122.782261510999959, 49.272614193000017 ], [ -122.782253812999954, 49.273320295000104 ], [ -122.780412073999983, 49.273321196000055 ], [ -122.779062289999899, 49.273323300000072 ], [ -122.779078798999976, 49.272948098000022 ], [ -122.779286496999958, 49.272569606000083 ], [ -122.77827621899992, 49.272485445000022 ], [ -122.778251878999953, 49.272481737000085 ], [ -122.778994113999943, 49.271101599000126 ], [ -122.779453599999925, 49.269940912000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168755720", "BldgCostT": "109990413", "sL_LossRatio": "0.705844585863807", "sL_AssetLoss": "2476480", "sL_BldgLoss": "1748010", "sL_StrLoss": "758350", "sL_NStrLoss": "989660", "sL_ContLoss": "728470", "geom_point": "0101000020E6100000D78130E03AB15EC0F54B81F54DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767174697, 49.268247901000088 ], [ -122.767170865999958, 49.267803693000126 ], [ -122.767166995000011, 49.267353103000104 ], [ -122.767154883999979, 49.266462596000068 ], [ -122.770213887999901, 49.266480296000033 ], [ -122.770219297999958, 49.267389512000037 ], [ -122.770232968999977, 49.267845103000106 ], [ -122.770246225999969, 49.268285802000079 ], [ -122.772898810999905, 49.268320105000036 ], [ -122.772590599999901, 49.268562296000034 ], [ -122.772493244999964, 49.268682753000036 ], [ -122.772401031999919, 49.268796810000012 ], [ -122.772052308999918, 49.269228193000103 ], [ -122.77023049899999, 49.269201604000095 ], [ -122.76716480499999, 49.269159393000095 ], [ -122.767169736999989, 49.268702968000092 ], [ -122.767174697, 49.268247901000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "603213583", "BldgCostT": "404712348", "sL_LossRatio": "0.777535699784894", "sL_AssetLoss": "5787850", "sL_BldgLoss": "4500260", "sL_StrLoss": "2011520", "sL_NStrLoss": "2488740", "sL_ContLoss": "1287590", "geom_point": "0101000020E6100000A84744A54FB15EC04ABEB06715A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.770219297999958, 49.267389512000037 ], [ -122.770213887999901, 49.266480296000033 ], [ -122.767154883999979, 49.266462596000068 ], [ -122.767155228999982, 49.265986502000018 ], [ -122.767155512000016, 49.265546404000091 ], [ -122.767146411999974, 49.265085701000011 ], [ -122.767148171999906, 49.265005875000107 ], [ -122.767160019999949, 49.264466658000117 ], [ -122.767166690999915, 49.264163799000116 ], [ -122.767325216999936, 49.263763097000044 ], [ -122.77019420499991, 49.264927396000118 ], [ -122.774041984999926, 49.266563304000066 ], [ -122.774493456999963, 49.266750674 ], [ -122.773945547999958, 49.267312692000083 ], [ -122.773826085999971, 49.267435211000105 ], [ -122.772898810999905, 49.268320105000036 ], [ -122.770246225999969, 49.268285802000079 ], [ -122.770232968999977, 49.267845103000106 ], [ -122.770219297999958, 49.267389512000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120906751", "BldgCostT": "77205001", "sL_LossRatio": "0.69225107485151", "sL_AssetLoss": "2141226", "sL_BldgLoss": "1482266", "sL_StrLoss": "654396", "sL_NStrLoss": "827870", "sL_ContLoss": "658960", "geom_point": "0101000020E6100000D5BDDBDDFFB05EC074FD8A4E79A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77019420499991, 49.264927396000118 ], [ -122.767325216999936, 49.263763097000044 ], [ -122.767166690999915, 49.264163799000116 ], [ -122.767160019999949, 49.264466658000117 ], [ -122.767148171999906, 49.265005875000107 ], [ -122.767146411999974, 49.265085701000011 ], [ -122.767155512000016, 49.265546404000091 ], [ -122.767155228999982, 49.265986502000018 ], [ -122.767154883999979, 49.266462596000068 ], [ -122.766506766999925, 49.266465265000122 ], [ -122.76596451199994, 49.266467502000097 ], [ -122.764992590999952, 49.266472610000079 ], [ -122.764980184999985, 49.265607292000013 ], [ -122.765235390999976, 49.265612199 ], [ -122.765234585999949, 49.26520950500003 ], [ -122.765272190999923, 49.265084492000092 ], [ -122.765346505, 49.264885783000125 ], [ -122.765411997999962, 49.264302213000107 ], [ -122.765427997999979, 49.263776489000051 ], [ -122.765395406999971, 49.26369169600008 ], [ -122.76520568899997, 49.26365360800007 ], [ -122.764747139999912, 49.263654900000127 ], [ -122.7614744, 49.263664187000117 ], [ -122.761466700999947, 49.262817457000082 ], [ -122.761465692999977, 49.262706313000045 ], [ -122.756751822999945, 49.262723713000049 ], [ -122.756072523999961, 49.262726199000035 ], [ -122.756071506999916, 49.261758592000078 ], [ -122.756072051, 49.260980242000066 ], [ -122.75607209099995, 49.260865805 ], [ -122.756072133999965, 49.260827292000037 ], [ -122.756072472999918, 49.260386523000051 ], [ -122.756072503999974, 49.260348713000063 ], [ -122.756068280999969, 49.260114288000075 ], [ -122.756073994999966, 49.259797313000021 ], [ -122.756205916999974, 49.259442700000101 ], [ -122.756223574999964, 49.259426800000085 ], [ -122.756380424999975, 49.259285789000117 ], [ -122.756419102999956, 49.259029422 ], [ -122.756456584999938, 49.258781378000087 ], [ -122.756449439, 49.258764859000038 ], [ -122.756325598, 49.258478565000054 ], [ -122.756286502999956, 49.258439120000041 ], [ -122.75622695, 49.258379262000069 ], [ -122.755781074999959, 49.257931003000117 ], [ -122.755709617999969, 49.257456510000047 ], [ -122.755641903999916, 49.257118002000091 ], [ -122.7555825099999, 49.256821050000077 ], [ -122.755544013999923, 49.256613591000068 ], [ -122.755519622999941, 49.256481805000121 ], [ -122.755507847999965, 49.256337839000082 ], [ -122.755492329999967, 49.256148411000069 ], [ -122.755445601999895, 49.255730367000083 ], [ -122.755427420000018, 49.255567825000121 ], [ -122.755403764999983, 49.255450063000083 ], [ -122.755346630999952, 49.255165826000074 ], [ -122.755340026999974, 49.255051854000065 ], [ -122.755331359999971, 49.254902600000072 ], [ -122.755320550999926, 49.254838178000064 ], [ -122.755278367999949, 49.254271175000056 ], [ -122.75573663199999, 49.254454980000034 ], [ -122.756158205999895, 49.254631950000046 ], [ -122.75877338399998, 49.255738139000051 ], [ -122.759264296999959, 49.255929212000126 ], [ -122.759443187999921, 49.256007647000025 ], [ -122.760885827999914, 49.256639994000047 ], [ -122.761087217999943, 49.256730342000054 ], [ -122.761435306999886, 49.256851044000079 ], [ -122.761713973999932, 49.256989277000066 ], [ -122.763092723999975, 49.257553371000064 ], [ -122.765753406999963, 49.25872596900011 ], [ -122.766101448999976, 49.25883763700007 ], [ -122.767221918999923, 49.259337634000083 ], [ -122.768817068999951, 49.260027433000083 ], [ -122.76975562299999, 49.260408306000087 ], [ -122.770390589999934, 49.260629373000064 ], [ -122.7706390499999, 49.260762512000092 ], [ -122.77193654199999, 49.261285009000055 ], [ -122.774379719999928, 49.262339565000019 ], [ -122.775373588999969, 49.262738032000044 ], [ -122.7764227159999, 49.263189958000112 ], [ -122.777005270999965, 49.263472202000074 ], [ -122.777245036999915, 49.263595111 ], [ -122.777990120999945, 49.263870087000086 ], [ -122.778414184999946, 49.264024707000054 ], [ -122.779001682999962, 49.264310446000067 ], [ -122.779199614999925, 49.264396106000085 ], [ -122.77946468499999, 49.264517973000075 ], [ -122.779436638999954, 49.26454698100008 ], [ -122.779340708999968, 49.264646050000117 ], [ -122.77869068699999, 49.265317502000059 ], [ -122.778060082999914, 49.265750895000075 ], [ -122.77771994499993, 49.26607858000007 ], [ -122.776417706999936, 49.26737759600006 ], [ -122.77660180799991, 49.267456907000053 ], [ -122.776485593999951, 49.267586801000071 ], [ -122.776291804999957, 49.267508046000053 ], [ -122.77611971099999, 49.267435461000026 ], [ -122.775339902999974, 49.26710660800007 ], [ -122.774505101999978, 49.266755578000115 ], [ -122.774493456999963, 49.266750674 ], [ -122.774041984999926, 49.266563304000066 ], [ -122.77019420499991, 49.264927396000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118185928", "BldgCostT": "76312070", "sL_LossRatio": "0.695860068469281", "sL_AssetLoss": "1951240", "sL_BldgLoss": "1357790", "sL_StrLoss": "605350", "sL_NStrLoss": "752440", "sL_ContLoss": "593450", "geom_point": "0101000020E6100000B4D59396DDB05EC0B2BC40832CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.764422857999975, 49.268706110000018 ], [ -122.76441399699999, 49.268305702000077 ], [ -122.761594103, 49.268306692000039 ], [ -122.76159534699994, 49.267837140000069 ], [ -122.761596509999933, 49.26738599400003 ], [ -122.758916408999951, 49.267392989000072 ], [ -122.7589159, 49.266514497000045 ], [ -122.760091828999947, 49.266500305000122 ], [ -122.76010840899994, 49.265122395000077 ], [ -122.762744886999968, 49.265107795000084 ], [ -122.765272190999923, 49.265084492000092 ], [ -122.765234585999949, 49.26520950500003 ], [ -122.765235390999976, 49.265612199 ], [ -122.764980184999985, 49.265607292000013 ], [ -122.764992590999952, 49.266472610000079 ], [ -122.76596451199994, 49.266467502000097 ], [ -122.766506766999925, 49.266465265000122 ], [ -122.767154883999979, 49.266462596000068 ], [ -122.767166995000011, 49.267353103000104 ], [ -122.767170865999958, 49.267803693000126 ], [ -122.767174697, 49.268247901000088 ], [ -122.767169736999989, 49.268702968000092 ], [ -122.76716480499999, 49.269159393000095 ], [ -122.764433206999954, 49.269173910000092 ], [ -122.764424049999931, 49.268760079000081 ], [ -122.764422857999975, 49.268706110000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121827500", "BldgCostT": "81575000", "sL_LossRatio": "0.735261425919741", "sL_AssetLoss": "1826330", "sL_BldgLoss": "1342830", "sL_StrLoss": "576230", "sL_NStrLoss": "766600", "sL_ContLoss": "483500", "geom_point": "0101000020E6100000DE016409A7B05EC09752B89ACCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756096115999981, 49.263704507000099 ], [ -122.756072523999961, 49.262726199000035 ], [ -122.756751822999945, 49.262723713000049 ], [ -122.761465692999977, 49.262706313000045 ], [ -122.761466700999947, 49.262817457000082 ], [ -122.7614744, 49.263664187000117 ], [ -122.764747139999912, 49.263654900000127 ], [ -122.76520568899997, 49.26365360800007 ], [ -122.765395406999971, 49.26369169600008 ], [ -122.765427997999979, 49.263776489000051 ], [ -122.765411997999962, 49.264302213000107 ], [ -122.765346505, 49.264885783000125 ], [ -122.765272190999923, 49.265084492000092 ], [ -122.762744886999968, 49.265107795000084 ], [ -122.76010840899994, 49.265122395000077 ], [ -122.758793492999985, 49.265119797000082 ], [ -122.757447192999962, 49.265115399000059 ], [ -122.75675378499993, 49.265118680000107 ], [ -122.75610009799999, 49.265121785000154 ], [ -122.756097644999954, 49.264252165000116 ], [ -122.756097183999913, 49.264092538000078 ], [ -122.756096115999981, 49.263704507000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145338833", "BldgCostT": "98843333", "sL_LossRatio": "0.781953543443415", "sL_AssetLoss": "1790490", "sL_BldgLoss": "1400080", "sL_StrLoss": "621180", "sL_NStrLoss": "778900", "sL_ContLoss": "390410", "geom_point": "0101000020E61000004B42A6A587B05EC0F8EADB3027A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.75611997599999, 49.267430548000114 ], [ -122.75611575299996, 49.266823182000088 ], [ -122.756113291999952, 49.266566365000052 ], [ -122.756104020999942, 49.265595779000101 ], [ -122.75610009799999, 49.265121785000154 ], [ -122.75675378499993, 49.265118680000107 ], [ -122.757447192999962, 49.265115399000059 ], [ -122.758793492999985, 49.265119797000082 ], [ -122.76010840899994, 49.265122395000077 ], [ -122.760091828999947, 49.266500305000122 ], [ -122.7589159, 49.266514497000045 ], [ -122.758916408999951, 49.267392989000072 ], [ -122.761596509999933, 49.26738599400003 ], [ -122.76159534699994, 49.267837140000069 ], [ -122.761594103, 49.268306692000039 ], [ -122.758909502000037, 49.26831710900008 ], [ -122.756793353999953, 49.268339260000054 ], [ -122.756128791999956, 49.268346193000113 ], [ -122.756121143999977, 49.2675527110001 ], [ -122.75611997599999, 49.267430548000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214777917", "BldgCostT": "146696667", "sL_LossRatio": "0.787129173647425", "sL_AssetLoss": "2363640", "sL_BldgLoss": "1860490", "sL_StrLoss": "870310", "sL_NStrLoss": "990180", "sL_ContLoss": "503150", "geom_point": "0101000020E61000004CA03647A9B05EC044B3706176A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756126199999969, 49.270150600000086 ], [ -122.75613690599999, 49.26925088800003 ], [ -122.756128791999956, 49.268346193000113 ], [ -122.756793353999953, 49.268339260000054 ], [ -122.758909502000037, 49.26831710900008 ], [ -122.761594103, 49.268306692000039 ], [ -122.76441399699999, 49.268305702000077 ], [ -122.764422857999975, 49.268706110000018 ], [ -122.764424049999931, 49.268760079000081 ], [ -122.764433206999954, 49.269173910000092 ], [ -122.764429414999981, 49.269615040000119 ], [ -122.764427002000033, 49.269892583000129 ], [ -122.76442270699998, 49.270209597000047 ], [ -122.761625008999914, 49.270225703000072 ], [ -122.761623175999944, 49.270149448000055 ], [ -122.76162218099995, 49.27010849600002 ], [ -122.758935787, 49.270123390000037 ], [ -122.756770648999947, 49.270144373000051 ], [ -122.756126199999969, 49.270150600000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "592691158", "BldgCostT": "397523898", "sL_LossRatio": "0.805139940790788", "sL_AssetLoss": "5505900", "sL_BldgLoss": "4433020", "sL_StrLoss": "2034550", "sL_NStrLoss": "2398470", "sL_ContLoss": "1072880", "geom_point": "0101000020E610000002F9B8BA8CB05EC00121823FB6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.758935787, 49.270123390000037 ], [ -122.76162218099995, 49.27010849600002 ], [ -122.761623175999944, 49.270149448000055 ], [ -122.761625008999914, 49.270225703000072 ], [ -122.761641468000022, 49.270671318000069 ], [ -122.76165967899999, 49.271164602000084 ], [ -122.760367386999974, 49.2711717950001 ], [ -122.76037058899999, 49.272385404000111 ], [ -122.758988881999969, 49.272391695000032 ], [ -122.75828509899999, 49.272395882000119 ], [ -122.757613974999984, 49.27239989300007 ], [ -122.756896805999972, 49.272403400000066 ], [ -122.756142916999977, 49.272407107000056 ], [ -122.756127564999971, 49.271379105000108 ], [ -122.756124772999968, 49.271193002000125 ], [ -122.756125538000035, 49.270659248000115 ], [ -122.756126199999969, 49.270150600000086 ], [ -122.756770648999947, 49.270144373000051 ], [ -122.758935787, 49.270123390000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112292918", "BldgCostT": "75891668", "sL_LossRatio": "0.721646531850259", "sL_AssetLoss": "2129810", "sL_BldgLoss": "1536970", "sL_StrLoss": "660460", "sL_NStrLoss": "876510", "sL_ContLoss": "592840", "geom_point": "0101000020E6100000615539C4EAB05EC0D5E4311CB2A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76037058899999, 49.272385404000111 ], [ -122.760367386999974, 49.2711717950001 ], [ -122.76165967899999, 49.271164602000084 ], [ -122.761641468000022, 49.270671318000069 ], [ -122.761625008999914, 49.270225703000072 ], [ -122.76442270699998, 49.270209597000047 ], [ -122.764427002000033, 49.269892583000129 ], [ -122.764429414999981, 49.269615040000119 ], [ -122.764433206999954, 49.269173910000092 ], [ -122.76716480499999, 49.269159393000095 ], [ -122.767164352999927, 49.269611566000087 ], [ -122.767163908000015, 49.270059289000038 ], [ -122.767169429999953, 49.270582977000068 ], [ -122.76717031, 49.270663929000108 ], [ -122.767175720999916, 49.271171400000121 ], [ -122.767197508999971, 49.272396395000051 ], [ -122.767031489999908, 49.272352695000031 ], [ -122.766506149999913, 49.272357932000027 ], [ -122.763173807, 49.272391090000056 ], [ -122.761676722999965, 49.272377805000062 ], [ -122.761021150999923, 49.272381615000029 ], [ -122.76037058899999, 49.272385404000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137633501", "BldgCostT": "94735001", "sL_LossRatio": "0.79000826667315", "sL_AssetLoss": "1645160", "sL_BldgLoss": "1299690", "sL_StrLoss": "582510", "sL_NStrLoss": "717180", "sL_ContLoss": "345470", "geom_point": "0101000020E6100000710357DCECB05EC04B651F9E04A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.766506149999913, 49.272357932000027 ], [ -122.767031489999908, 49.272352695000031 ], [ -122.767197508999971, 49.272396395000051 ], [ -122.767211098, 49.273147311000095 ], [ -122.767212785999931, 49.273557310000108 ], [ -122.767212390999958, 49.273859087000112 ], [ -122.767214383999914, 49.274776293000095 ], [ -122.766536210999917, 49.274777902000061 ], [ -122.766481254999974, 49.274778043000076 ], [ -122.765821892999895, 49.274779603000098 ], [ -122.765106358999958, 49.274782273000028 ], [ -122.764458103999928, 49.274784698000062 ], [ -122.76174149900001, 49.27479598400005 ], [ -122.76171520399997, 49.27418767800004 ], [ -122.761689498999928, 49.273592605000054 ], [ -122.761682977999939, 49.272973719000056 ], [ -122.761676722999965, 49.272377805000062 ], [ -122.763173807, 49.272391090000056 ], [ -122.766506149999913, 49.272357932000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96996361", "BldgCostT": "57967956", "sL_LossRatio": "0.64378894974654", "sL_AssetLoss": "1960860", "sL_BldgLoss": "1262380", "sL_StrLoss": "444210", "sL_NStrLoss": "818170", "sL_ContLoss": "698480", "geom_point": "0101000020E6100000F9CD3FF235B05EC0DD5980F8F1A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.754534699999965, 49.271193795000102 ], [ -122.756124772999968, 49.271193002000125 ], [ -122.756127564999971, 49.271379105000108 ], [ -122.756142916999977, 49.272407107000056 ], [ -122.756149436999962, 49.272764278000082 ], [ -122.756152201999925, 49.272917181000061 ], [ -122.756155690999947, 49.273106186000035 ], [ -122.756165104999951, 49.27362220800007 ], [ -122.75616980199996, 49.274833203000092 ], [ -122.754971098999988, 49.2748159920001 ], [ -122.75490489799995, 49.274814804000115 ], [ -122.754590884999956, 49.274809103000081 ], [ -122.754506686999946, 49.274809128000129 ], [ -122.753338119999952, 49.274809696000084 ], [ -122.75277439599995, 49.274809956000077 ], [ -122.750460610999966, 49.274811001000131 ], [ -122.750404409999959, 49.27247498900006 ], [ -122.750398903999965, 49.272122486000079 ], [ -122.750395471, 49.271672208000048 ], [ -122.750391988999979, 49.271220493000094 ], [ -122.751770630999943, 49.27121790000011 ], [ -122.753161607999971, 49.271215593000058 ], [ -122.754534699999965, 49.271193795000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "341049617", "BldgCostT": "230618880", "sL_LossRatio": "0.777268518303096", "sL_AssetLoss": "4298180", "sL_BldgLoss": "3340840", "sL_StrLoss": "1493810", "sL_NStrLoss": "1847030", "sL_ContLoss": "957340", "geom_point": "0101000020E6100000371FC65A32B05EC04CFFC48E67A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.754808990999948, 49.265603700000078 ], [ -122.756104020999942, 49.265595779000101 ], [ -122.756113291999952, 49.266566365000052 ], [ -122.75611575299996, 49.266823182000088 ], [ -122.75611997599999, 49.267430548000114 ], [ -122.756121143999977, 49.2675527110001 ], [ -122.756128791999956, 49.268346193000113 ], [ -122.75613690599999, 49.26925088800003 ], [ -122.756126199999969, 49.270150600000086 ], [ -122.756125538000035, 49.270659248000115 ], [ -122.756124772999968, 49.271193002000125 ], [ -122.754534699999965, 49.271193795000102 ], [ -122.753161607999971, 49.271215593000058 ], [ -122.751770630999943, 49.27121790000011 ], [ -122.750391988999979, 49.271220493000094 ], [ -122.749152299999977, 49.271221905000047 ], [ -122.749165185999914, 49.270761374000124 ], [ -122.749216301999979, 49.268935485000078 ], [ -122.750666396999947, 49.268932286000052 ], [ -122.75066920099998, 49.267381887000091 ], [ -122.750671697999962, 49.266644666000047 ], [ -122.750673098999968, 49.266227007000076 ], [ -122.754819791, 49.266176101000049 ], [ -122.754808990999948, 49.265603700000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131561167", "BldgCostT": "88371667", "sL_LossRatio": "0.730203864139572", "sL_AssetLoss": "2176940", "sL_BldgLoss": "1589610", "sL_StrLoss": "671010", "sL_NStrLoss": "918600", "sL_ContLoss": "587330", "geom_point": "0101000020E6100000227B7BDFD1AF5EC0B1FBC88C3BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.747602087999894, 49.265788883000013 ], [ -122.752175291999933, 49.264907791000049 ], [ -122.752227646000023, 49.265434684000041 ], [ -122.750674290999925, 49.265622513000032 ], [ -122.750673098999968, 49.266227007000076 ], [ -122.750671697999962, 49.266644666000047 ], [ -122.75066920099998, 49.267381887000091 ], [ -122.750666396999947, 49.268932286000052 ], [ -122.749216301999979, 49.268935485000078 ], [ -122.74763978099999, 49.268939309000096 ], [ -122.746879237999963, 49.268937151000088 ], [ -122.744471416999929, 49.268930304000058 ], [ -122.742451016999965, 49.268934107000049 ], [ -122.74195401299994, 49.268927293000012 ], [ -122.741900422999905, 49.268915932 ], [ -122.741572095999985, 49.268846294000085 ], [ -122.74162942699995, 49.268677260000068 ], [ -122.74236515799997, 49.267812001000067 ], [ -122.742628858, 49.267669361000117 ], [ -122.744350255999947, 49.266757320000124 ], [ -122.746839489999957, 49.266086217000037 ], [ -122.747602087999894, 49.265788883000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290467750", "BldgCostT": "193540000", "sL_LossRatio": "0.713534362613685", "sL_AssetLoss": "4599330", "sL_BldgLoss": "3281780", "sL_StrLoss": "1509910", "sL_NStrLoss": "1771870", "sL_ContLoss": "1317550", "geom_point": "0101000020E61000002936E675C4AF5EC074FA626B0DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.742210326999938, 49.265871048000051 ], [ -122.742258213999932, 49.2644066840001 ], [ -122.74227053099996, 49.264029368000074 ], [ -122.744993380999944, 49.264088803000078 ], [ -122.745181966999951, 49.264092921000049 ], [ -122.746409007999958, 49.264034414000079 ], [ -122.747010030999988, 49.263948048000074 ], [ -122.747787250999934, 49.263838140000111 ], [ -122.750394172999918, 49.26340313300004 ], [ -122.751889704999925, 49.263081490000076 ], [ -122.752569998999888, 49.262935512000105 ], [ -122.753023841999891, 49.26283814300011 ], [ -122.753579422999934, 49.262753054000051 ], [ -122.754260193999968, 49.262744697000123 ], [ -122.756072523999961, 49.262726199000035 ], [ -122.756096115999981, 49.263704507000099 ], [ -122.756097183999913, 49.264092538000078 ], [ -122.756097644999954, 49.264252165000116 ], [ -122.75610009799999, 49.265121785000154 ], [ -122.756104020999942, 49.265595779000101 ], [ -122.754808990999948, 49.265603700000078 ], [ -122.754819791, 49.266176101000049 ], [ -122.750673098999968, 49.266227007000076 ], [ -122.750674290999925, 49.265622513000032 ], [ -122.752227646000023, 49.265434684000041 ], [ -122.752175291999933, 49.264907791000049 ], [ -122.747602087999894, 49.265788883000013 ], [ -122.746839489999957, 49.266086217000037 ], [ -122.744350255999947, 49.266757320000124 ], [ -122.742628858, 49.267669361000117 ], [ -122.74236515799997, 49.267812001000067 ], [ -122.74162942699995, 49.268677260000068 ], [ -122.741572095999985, 49.268846294000085 ], [ -122.740208212999917, 49.27020431000004 ], [ -122.739761662999953, 49.271239508000079 ], [ -122.738743608999954, 49.271257272000057 ], [ -122.738441349, 49.271262534000101 ], [ -122.73774013900001, 49.271274762000068 ], [ -122.737587558999962, 49.271277411000014 ], [ -122.737571298999967, 49.270473290000098 ], [ -122.737582798999966, 49.269821363000034 ], [ -122.737584712999947, 49.269696175000043 ], [ -122.737598295999987, 49.268917289000065 ], [ -122.737599710999973, 49.268799311000109 ], [ -122.737603023999938, 49.268615608000061 ], [ -122.737616673999952, 49.268499804000079 ], [ -122.737404003999956, 49.268123974000069 ], [ -122.737121396999925, 49.267921726000054 ], [ -122.736952886999973, 49.267777035000059 ], [ -122.736864681999947, 49.267623931000124 ], [ -122.73678811399995, 49.267248610000124 ], [ -122.739681909999959, 49.267174802000042 ], [ -122.740374201999927, 49.267158696000131 ], [ -122.740855497999974, 49.267094903000078 ], [ -122.741366680999988, 49.266959004000135 ], [ -122.74169507699996, 49.266783305000047 ], [ -122.741962194999957, 49.26656069000007 ], [ -122.742143309, 49.266270682000069 ], [ -122.74220468599998, 49.266042797000118 ], [ -122.742210326999938, 49.265871048000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110913583", "BldgCostT": "71863333", "sL_LossRatio": "0.711109148808177", "sL_AssetLoss": "1811930", "sL_BldgLoss": "1288480", "sL_StrLoss": "562310", "sL_NStrLoss": "726170", "sL_ContLoss": "523450", "geom_point": "0101000020E6100000ABF1DABEAAAF5EC08500C73B93A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.740208212999917, 49.27020431000004 ], [ -122.741572095999985, 49.268846294000085 ], [ -122.741900422999905, 49.268915932 ], [ -122.74195401299994, 49.268927293000012 ], [ -122.742451016999965, 49.268934107000049 ], [ -122.744471416999929, 49.268930304000058 ], [ -122.746879237999963, 49.268937151000088 ], [ -122.74763978099999, 49.268939309000096 ], [ -122.749216301999979, 49.268935485000078 ], [ -122.749165185999914, 49.270761374000124 ], [ -122.749152299999977, 49.271221905000047 ], [ -122.747599072999961, 49.271224691000057 ], [ -122.746111792999983, 49.271228501000046 ], [ -122.744833592999939, 49.271229604000041 ], [ -122.74267559899998, 49.271233798 ], [ -122.741822522999911, 49.271235266000083 ], [ -122.741404185999954, 49.271236001000055 ], [ -122.739761662999953, 49.271239508000079 ], [ -122.740208212999917, 49.27020431000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133466917", "BldgCostT": "88821667", "sL_LossRatio": "0.708163677321945", "sL_AssetLoss": "2441951", "sL_BldgLoss": "1729301", "sL_StrLoss": "720221", "sL_NStrLoss": "1009080", "sL_ContLoss": "712650", "geom_point": "0101000020E610000066B0EB0F7BAF5EC0AD94F9A218A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.742485898999959, 49.276360701000094 ], [ -122.742489189999972, 49.275687810000065 ], [ -122.74153146099998, 49.275685531000107 ], [ -122.741517604999942, 49.275685486000043 ], [ -122.740943707999989, 49.275677205000065 ], [ -122.740297907999974, 49.27557659100006 ], [ -122.738983389999973, 49.275446790000096 ], [ -122.739157718999977, 49.273907003000076 ], [ -122.739323887999916, 49.272129901000021 ], [ -122.739356698999984, 49.271857888000113 ], [ -122.739480934999932, 49.271668208000087 ], [ -122.739761662999953, 49.271239508000079 ], [ -122.741404185999954, 49.271236001000055 ], [ -122.741822522999911, 49.271235266000083 ], [ -122.74267559899998, 49.271233798 ], [ -122.74267859299999, 49.271682368 ], [ -122.742691521999959, 49.273629906000075 ], [ -122.743604801999965, 49.273658287000067 ], [ -122.743987911, 49.273859087000112 ], [ -122.74427680899997, 49.274110202000067 ], [ -122.744287709999981, 49.275188009000047 ], [ -122.745241493999941, 49.275188798000087 ], [ -122.745241695999979, 49.276361002000101 ], [ -122.745237719999921, 49.277103205000053 ], [ -122.744379692999971, 49.277089004000111 ], [ -122.742482216999946, 49.277058791000094 ], [ -122.742485898999959, 49.276360701000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63914334", "BldgCostT": "43343334", "sL_LossRatio": "0.733098295672506", "sL_AssetLoss": "1094860", "sL_BldgLoss": "802640", "sL_StrLoss": "353290", "sL_NStrLoss": "449350", "sL_ContLoss": "292220", "geom_point": "0101000020E61000008F802B5539AF5EC08B9A1A2E13A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.737749878999949, 49.276002295000048 ], [ -122.7377404099999, 49.275336191000086 ], [ -122.737074708999941, 49.275343985000049 ], [ -122.737082591999936, 49.274645209000063 ], [ -122.737079809999898, 49.273942409000071 ], [ -122.736070908999963, 49.273964085000031 ], [ -122.736096689999897, 49.273011687000093 ], [ -122.736174589999919, 49.272744707000051 ], [ -122.736155600999965, 49.27213601200004 ], [ -122.739323887999916, 49.272129901000021 ], [ -122.739157718999977, 49.273907003000076 ], [ -122.738983389999973, 49.275446790000096 ], [ -122.738848424999944, 49.276643600000064 ], [ -122.737793512999957, 49.27664666700008 ], [ -122.737161600999968, 49.276648495000117 ], [ -122.737147289999911, 49.276011103000059 ], [ -122.737749878999949, 49.276002295000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153022583", "BldgCostT": "105323333", "sL_LossRatio": "0.781873762545401", "sL_AssetLoss": "2004619", "sL_BldgLoss": "1567359", "sL_StrLoss": "681219", "sL_NStrLoss": "886140", "sL_ContLoss": "437260", "geom_point": "0101000020E6100000A43D04D91BAF5EC0613701C010A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.733755711999976, 49.275378797000073 ], [ -122.734628904999923, 49.275372814000043 ], [ -122.734782096999979, 49.27534411500006 ], [ -122.73492491799999, 49.275268202000042 ], [ -122.734951013999975, 49.273140104000042 ], [ -122.734912194999964, 49.2730668 ], [ -122.734735701999909, 49.272977709000052 ], [ -122.733769584999948, 49.272975506000087 ], [ -122.733770223999954, 49.272579733000079 ], [ -122.733770694999976, 49.272296216000065 ], [ -122.734764733999924, 49.27228892100009 ], [ -122.735041301999928, 49.272286901000037 ], [ -122.735039313999962, 49.271788701000069 ], [ -122.735112728000018, 49.271565603000035 ], [ -122.735116400999985, 49.271279293000134 ], [ -122.735295225999934, 49.271276574000041 ], [ -122.736735971999948, 49.271277099000045 ], [ -122.737587558999962, 49.271277411000014 ], [ -122.73774013900001, 49.271274762000068 ], [ -122.738441349, 49.271262534000101 ], [ -122.738743608999954, 49.271257272000057 ], [ -122.739761662999953, 49.271239508000079 ], [ -122.739480934999932, 49.271668208000087 ], [ -122.739356698999984, 49.271857888000113 ], [ -122.739323887999916, 49.272129901000021 ], [ -122.736155600999965, 49.27213601200004 ], [ -122.736174589999919, 49.272744707000051 ], [ -122.736096689999897, 49.273011687000093 ], [ -122.736070908999963, 49.273964085000031 ], [ -122.737079809999898, 49.273942409000071 ], [ -122.737082591999936, 49.274645209000063 ], [ -122.737074708999941, 49.275343985000049 ], [ -122.7377404099999, 49.275336191000086 ], [ -122.737749878999949, 49.276002295000048 ], [ -122.737147289999911, 49.276011103000059 ], [ -122.737161600999968, 49.276648495000117 ], [ -122.736487386999968, 49.276650435000064 ], [ -122.73582671099993, 49.276652294 ], [ -122.735153779999962, 49.276654654000033 ], [ -122.734517818999976, 49.276656903000067 ], [ -122.733936395999962, 49.276651552000054 ], [ -122.733932, 49.276651556000019 ], [ -122.733928303999974, 49.276625966999987 ], [ -122.733755711999976, 49.275378797000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91268750", "BldgCostT": "57845000", "sL_LossRatio": "0.709068255850609", "sL_AssetLoss": "1332340", "sL_BldgLoss": "944720", "sL_StrLoss": "420010", "sL_NStrLoss": "524710", "sL_ContLoss": "387620", "geom_point": "0101000020E6100000FB27C0C919AF5EC00F5AD5B39CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.737793512999957, 49.27664666700008 ], [ -122.738848424999944, 49.276643600000064 ], [ -122.73861872099999, 49.27848270700013 ], [ -122.737797312999973, 49.27849868800007 ], [ -122.737221598999952, 49.278509898000038 ], [ -122.737281008999958, 49.278642306000059 ], [ -122.73724551, 49.27965568500008 ], [ -122.735832012999978, 49.279661600000061 ], [ -122.735833381999967, 49.28036434100013 ], [ -122.735175092999953, 49.280365758000116 ], [ -122.734554783999926, 49.280367093000045 ], [ -122.73444213499999, 49.280366388000068 ], [ -122.733950426999968, 49.280360537000014 ], [ -122.73376061099998, 49.278527706000027 ], [ -122.733932, 49.276651556000019 ], [ -122.733936395999962, 49.276651552000054 ], [ -122.734517818999976, 49.276656903000067 ], [ -122.735153779999962, 49.276654654000033 ], [ -122.73582671099993, 49.276652294 ], [ -122.736487386999968, 49.276650435000064 ], [ -122.737161600999968, 49.276648495000117 ], [ -122.737793512999957, 49.27664666700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102300780", "BldgCostT": "68093602", "sL_LossRatio": "0.72109038902259", "sL_AssetLoss": "1741030", "sL_BldgLoss": "1255440", "sL_StrLoss": "531670", "sL_NStrLoss": "723770", "sL_ContLoss": "485590", "geom_point": "0101000020E6100000B7EBCEA873AF5EC0A72490B781A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.743373296999948, 49.279871394000047 ], [ -122.743344704000023, 49.278477714000068 ], [ -122.742097302, 49.278468800000063 ], [ -122.741317267999989, 49.27847157900009 ], [ -122.740495496999955, 49.27847450900007 ], [ -122.739736473999969, 49.278482935000127 ], [ -122.738903905999919, 49.278492194000179 ], [ -122.73861872099999, 49.27848270700013 ], [ -122.738848424999944, 49.276643600000064 ], [ -122.738983389999973, 49.275446790000096 ], [ -122.740297907999974, 49.27557659100006 ], [ -122.740943707999989, 49.275677205000065 ], [ -122.741517604999942, 49.275685486000043 ], [ -122.74153146099998, 49.275685531000107 ], [ -122.742489189999972, 49.275687810000065 ], [ -122.742485898999959, 49.276360701000094 ], [ -122.742482216999946, 49.277058791000094 ], [ -122.744379692999971, 49.277089004000111 ], [ -122.744371905999913, 49.278471692000075 ], [ -122.744374004999955, 49.27987089200014 ], [ -122.743922014999967, 49.279871127000028 ], [ -122.743743274999957, 49.279871204000074 ], [ -122.743373296999948, 49.279871394000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101945917", "BldgCostT": "68361667", "sL_LossRatio": "0.739510204081633", "sL_AssetLoss": "1592500", "sL_BldgLoss": "1177670", "sL_StrLoss": "516090", "sL_NStrLoss": "661580", "sL_ContLoss": "414830", "geom_point": "0101000020E61000000E2431391CAF5EC097D01BF614A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.737797312999973, 49.27849868800007 ], [ -122.73861872099999, 49.27848270700013 ], [ -122.738521326999901, 49.279373791000118 ], [ -122.738476116999919, 49.279787499000115 ], [ -122.738459505999955, 49.280354484000014 ], [ -122.738488091999912, 49.282157194000085 ], [ -122.738486419999973, 49.28216614400008 ], [ -122.738426315999945, 49.282487793000094 ], [ -122.738297797999934, 49.282673099000164 ], [ -122.738146596000021, 49.282809098000058 ], [ -122.737820503999941, 49.282999683000078 ], [ -122.737723569999986, 49.283056303000123 ], [ -122.737171779, 49.283378753000122 ], [ -122.736574734, 49.28372309100007 ], [ -122.734774551, 49.284761252000074 ], [ -122.733940779999926, 49.285239651000033 ], [ -122.733869922999958, 49.285367225000108 ], [ -122.733875595, 49.285428623000051 ], [ -122.733883153999926, 49.2855108870001 ], [ -122.733986244999969, 49.285667162000045 ], [ -122.733521726999967, 49.285491993000022 ], [ -122.733525831999913, 49.285355552000063 ], [ -122.733553958999906, 49.28442584900008 ], [ -122.733555653999986, 49.284370225000089 ], [ -122.733567324999981, 49.28398403500011 ], [ -122.734016323, 49.282157228000038 ], [ -122.733950426999968, 49.280360537000014 ], [ -122.73444213499999, 49.280366388000068 ], [ -122.734554783999926, 49.280367093000045 ], [ -122.735175092999953, 49.280365758000116 ], [ -122.735833381999967, 49.28036434100013 ], [ -122.735832012999978, 49.279661600000061 ], [ -122.73724551, 49.27965568500008 ], [ -122.737281008999958, 49.278642306000059 ], [ -122.737221598999952, 49.278509898000038 ], [ -122.737797312999973, 49.27849868800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133017667", "BldgCostT": "88086667", "sL_LossRatio": "0.768750543336521", "sL_AssetLoss": "1104288", "sL_BldgLoss": "848922", "sL_StrLoss": "427612", "sL_NStrLoss": "421310", "sL_ContLoss": "255366", "geom_point": "0101000020E6100000F1C4F7EE64AF5EC07FEAED0971A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734774551, 49.284761252000074 ], [ -122.736574734, 49.28372309100007 ], [ -122.737171779, 49.283378753000122 ], [ -122.737723569999986, 49.283056303000123 ], [ -122.738096006, 49.283294098000077 ], [ -122.738878088999982, 49.283842889000049 ], [ -122.739136902000013, 49.283915600000071 ], [ -122.739638270999947, 49.283931482000064 ], [ -122.740389305999955, 49.283955301000034 ], [ -122.741297085999946, 49.283947503000064 ], [ -122.74291327899995, 49.283934999000095 ], [ -122.743571237999987, 49.28392991100003 ], [ -122.743624385000018, 49.283929509000068 ], [ -122.744038810999911, 49.283931585000111 ], [ -122.744786507999891, 49.283922183000087 ], [ -122.744800524999931, 49.283233406000058 ], [ -122.746143791999941, 49.283248706000059 ], [ -122.747358283999986, 49.283240887000062 ], [ -122.747574203999989, 49.283239490000014 ], [ -122.747546191999916, 49.283971092000058 ], [ -122.747365314999939, 49.283967776000068 ], [ -122.745637790999979, 49.283936112000092 ], [ -122.745632615999909, 49.2857333010001 ], [ -122.744950664999948, 49.285733877000062 ], [ -122.744904008999953, 49.285733898000061 ], [ -122.743837040999949, 49.285736753000023 ], [ -122.743630769999967, 49.285737279000017 ], [ -122.738042684999925, 49.285751999000098 ], [ -122.737327614999984, 49.285755604000016 ], [ -122.73659237699998, 49.285751392000066 ], [ -122.735254733999966, 49.285751468000036 ], [ -122.734512144999911, 49.285751461000068 ], [ -122.734457081999949, 49.285751472000058 ], [ -122.734152167999952, 49.285751464000057 ], [ -122.733986244999969, 49.285667162000045 ], [ -122.733883153999926, 49.2855108870001 ], [ -122.733875595, 49.285428623000051 ], [ -122.733869922999958, 49.285367225000108 ], [ -122.733940779999926, 49.285239651000033 ], [ -122.734774551, 49.284761252000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65366750", "BldgCostT": "44345000", "sL_LossRatio": "0.773702411555882", "sL_AssetLoss": "653520", "sL_BldgLoss": "505630", "sL_StrLoss": "249150", "sL_NStrLoss": "256480", "sL_ContLoss": "147890", "geom_point": "0101000020E610000077E4BCBDF3AF5EC0C83CB85C79A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.745632615999909, 49.2857333010001 ], [ -122.745637790999979, 49.283936112000092 ], [ -122.747365314999939, 49.283967776000068 ], [ -122.747546191999916, 49.283971092000058 ], [ -122.747764394999962, 49.283983652000089 ], [ -122.747940501999949, 49.283993788000096 ], [ -122.748030676999932, 49.284027828000099 ], [ -122.748105444999922, 49.284056049000057 ], [ -122.748311512999948, 49.284133803000017 ], [ -122.748860707999938, 49.284339592000038 ], [ -122.749133507999929, 49.284370291000137 ], [ -122.750356715999956, 49.284373805 ], [ -122.750908911999957, 49.284399449 ], [ -122.75136326899991, 49.284420569000062 ], [ -122.751676295, 49.284435109000086 ], [ -122.751930693999924, 49.284531099000013 ], [ -122.75230367099999, 49.284233562000068 ], [ -122.752613566999969, 49.283986384000059 ], [ -122.752850147999979, 49.283960165000053 ], [ -122.753173410999949, 49.283962208000062 ], [ -122.753172208999942, 49.284666589000032 ], [ -122.75315978499998, 49.284824712000088 ], [ -122.753185408999968, 49.285027625000083 ], [ -122.753190699999919, 49.285226714000061 ], [ -122.753187044999891, 49.285731061000043 ], [ -122.753115573999963, 49.285731684 ], [ -122.75040422, 49.285755395000102 ], [ -122.75027902, 49.285754819000033 ], [ -122.749831882999985, 49.285752745000075 ], [ -122.747948122999986, 49.285744053000059 ], [ -122.747728097999982, 49.285743024000034 ], [ -122.747553945999982, 49.285742212000081 ], [ -122.746851343999978, 49.285738969000128 ], [ -122.745632615999909, 49.2857333010001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.85264773599386", "sL_AssetLoss": "13030", "sL_BldgLoss": "11110", "sL_StrLoss": "6570", "sL_NStrLoss": "4540", "sL_ContLoss": "1920", "geom_point": "0101000020E610000041242AF10CAB5EC0E33E726B52A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.674007990999939, 49.319291189000054 ], [ -122.67465590599997, 49.319239906000114 ], [ -122.675540002999981, 49.318665912000057 ], [ -122.676035412999937, 49.31852481300006 ], [ -122.676579770000018, 49.318526338000055 ], [ -122.67657800399995, 49.318796187000011 ], [ -122.676990795999941, 49.318797342000067 ], [ -122.676989029999916, 49.319067190000098 ], [ -122.677401824999905, 49.319068344000137 ], [ -122.67740006299999, 49.319338192000018 ], [ -122.678225657999974, 49.319340494000109 ], [ -122.678215109999954, 49.320959589000047 ], [ -122.676563865999981, 49.320954980000053 ], [ -122.676562098999923, 49.321224829000052 ], [ -122.676149286999987, 49.321223673000091 ], [ -122.676147518000036, 49.321493523000058 ], [ -122.675734702999961, 49.321492365000054 ], [ -122.675732930999956, 49.321762214000024 ], [ -122.675350027999968, 49.321761138000085 ], [ -122.675232870999963, 49.32339333300007 ], [ -122.674007691999947, 49.323355622000079 ], [ -122.67399362899999, 49.323551463000058 ], [ -122.673112519999947, 49.323524334000112 ], [ -122.673052237999954, 49.324363583000057 ], [ -122.67303255899995, 49.324362977000064 ], [ -122.672951946999945, 49.325485206000096 ], [ -122.672700732999914, 49.325683355000109 ], [ -122.672314191999973, 49.325862144000112 ], [ -122.672037817000017, 49.32603228500011 ], [ -122.671844158999988, 49.32618465000008 ], [ -122.671512406999966, 49.3263995820001 ], [ -122.671457121999936, 49.326435420000031 ], [ -122.671334880999922, 49.326562267000043 ], [ -122.670883394999962, 49.327057772000074 ], [ -122.670545031999964, 49.32748348300008 ], [ -122.668892876999934, 49.327432561000109 ], [ -122.669085607999975, 49.32724678500005 ], [ -122.66903209899999, 49.326752608000092 ], [ -122.668526599999907, 49.326409391000084 ], [ -122.66841739799996, 49.326219889000114 ], [ -122.668449590999955, 49.325509309000076 ], [ -122.668161902999913, 49.325265708000103 ], [ -122.668330820999955, 49.32478010100003 ], [ -122.668335606999946, 49.324131990000119 ], [ -122.670027391999966, 49.32221218900014 ], [ -122.670549888999986, 49.322052713000041 ], [ -122.67049631699993, 49.321827697000117 ], [ -122.670829184999917, 49.321550004000052 ], [ -122.67245730499998, 49.320860608000011 ], [ -122.67343007299999, 49.319734206000092 ], [ -122.673682153999891, 49.319741968000109 ], [ -122.673684007999924, 49.319461481000076 ], [ -122.674007990999939, 49.319291189000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.852502865876958", "sL_AssetLoss": "2617", "sL_BldgLoss": "2231", "sL_StrLoss": "1520", "sL_NStrLoss": "711", "sL_ContLoss": "386", "geom_point": "0101000020E61000000C49FB59CBAC5EC0393EBDC66CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.698785138999966, 49.306729017000066 ], [ -122.698821396999961, 49.306220083000014 ], [ -122.701998179999975, 49.306317141000058 ], [ -122.704311057999959, 49.306387746000077 ], [ -122.704302615999893, 49.306506436000092 ], [ -122.706120602999988, 49.306561899 ], [ -122.706118653999951, 49.306589316000114 ], [ -122.700527804000032, 49.307137559000097 ], [ -122.699527809999921, 49.308102592000061 ], [ -122.699318913999917, 49.308446704000076 ], [ -122.699182800999921, 49.309141711000066 ], [ -122.699202594999946, 49.30982881500006 ], [ -122.699386106999981, 49.310091087000053 ], [ -122.699730482999954, 49.310238608000098 ], [ -122.69981367299998, 49.310292373000046 ], [ -122.699990803999967, 49.310406902000068 ], [ -122.70001420899996, 49.310449977000111 ], [ -122.700102703999917, 49.310612993000085 ], [ -122.700074507999915, 49.310777906000105 ], [ -122.699987522999962, 49.310926300000119 ], [ -122.697928709999928, 49.310863377000075 ], [ -122.698184964999925, 49.307267570000057 ], [ -122.698236994999917, 49.307269161000079 ], [ -122.698276591999957, 49.306713471000144 ], [ -122.698785138999966, 49.306729017000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "0.70125071063104", "sL_AssetLoss": "14072", "sL_BldgLoss": "9868", "sL_StrLoss": "4730", "sL_NStrLoss": "5138", "sL_ContLoss": "4204", "geom_point": "0101000020E61000007340F958CDA95EC03177D267ACAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65042730499999, 49.351182052000063 ], [ -122.650456961999978, 49.350772223000071 ], [ -122.650030262999906, 49.350759002000125 ], [ -122.650290455999979, 49.347163523000035 ], [ -122.65578479299991, 49.347333641000027 ], [ -122.655773168999957, 49.347494540000106 ], [ -122.657440143999978, 49.347546098000052 ], [ -122.657364021999982, 49.348600294000079 ], [ -122.65686773099992, 49.348917617000041 ], [ -122.655947172999973, 49.349213172000105 ], [ -122.655290963999917, 49.349521465000073 ], [ -122.65481094099999, 49.350055710000085 ], [ -122.654591593999953, 49.350678834000107 ], [ -122.654431155999973, 49.35112248500014 ], [ -122.65042730499999, 49.351182052000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40921333", "BldgCostT": "27253333", "sL_LossRatio": "0.713485248185867", "sL_AssetLoss": "638735", "sL_BldgLoss": "455728", "sL_StrLoss": "196968", "sL_NStrLoss": "258760", "sL_ContLoss": "183007", "geom_point": "0101000020E6100000E617A920D4AD5EC01AE9F3EE1BA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.70886407899998, 49.303355788000047 ], [ -122.709057327999957, 49.300634649000116 ], [ -122.707521378999957, 49.30058782800004 ], [ -122.703605363999912, 49.300468356000138 ], [ -122.703622740999904, 49.300224051000086 ], [ -122.703209864999934, 49.300211446000084 ], [ -122.703465651999963, 49.296615568000028 ], [ -122.7042132, 49.296638389000123 ], [ -122.704266761000014, 49.29588518500001 ], [ -122.704372693999971, 49.29588841900015 ], [ -122.704375655999982, 49.295393283000124 ], [ -122.703328405999926, 49.295390599000051 ], [ -122.703233103999978, 49.296730430000167 ], [ -122.703043099999945, 49.296724628000014 ], [ -122.703010318999929, 49.297185435000067 ], [ -122.697521751999943, 49.297017703000058 ], [ -122.697773302999963, 49.293487218000038 ], [ -122.696547891999955, 49.293484007000046 ], [ -122.696549546999904, 49.293214155000065 ], [ -122.694899229, 49.293209810000036 ], [ -122.694900893999915, 49.292939959000144 ], [ -122.694488316000033, 49.292938869000039 ], [ -122.694493319999964, 49.292129316000064 ], [ -122.694905890999934, 49.292130406000034 ], [ -122.694910884999928, 49.291320854000041 ], [ -122.69532345099999, 49.291321942000096 ], [ -122.695326776999934, 49.290782239000059 ], [ -122.695739335999974, 49.290783327000092 ], [ -122.695744316999978, 49.289973774000053 ], [ -122.695331765, 49.289972686000056 ], [ -122.695338415999984, 49.288893283000071 ], [ -122.696163503999983, 49.28889545500008 ], [ -122.6961651619999, 49.288625604000053 ], [ -122.696577702999932, 49.288626688000086 ], [ -122.696581014999978, 49.28808698600006 ], [ -122.695755940999931, 49.288084816000044 ], [ -122.695760738999923, 49.287305163000056 ], [ -122.6958632899999, 49.28727553300012 ], [ -122.696173452999972, 49.287276349000123 ], [ -122.696174010999925, 49.287185754000134 ], [ -122.696788818999948, 49.287008109000055 ], [ -122.697000167999974, 49.287008663000094 ], [ -122.697000545999941, 49.286946931000045 ], [ -122.697714337999926, 49.286740678000101 ], [ -122.697826871999965, 49.286740973000128 ], [ -122.697827071999924, 49.28670810300008 ], [ -122.698639843999942, 49.286473240000078 ], [ -122.698653567999941, 49.286473276000031 ], [ -122.698653591999971, 49.28646926700003 ], [ -122.698798108999981, 49.286427505000105 ], [ -122.70103039599995, 49.285704014000075 ], [ -122.701100852, 49.285670066000094 ], [ -122.701133602999988, 49.28567015100009 ], [ -122.701133698999939, 49.285654238000042 ], [ -122.701657897999965, 49.285401649000093 ], [ -122.702785290999941, 49.285404554000088 ], [ -122.702780425999933, 49.286214109000127 ], [ -122.702367903999914, 49.286213048000057 ], [ -122.702364656, 49.286752750000019 ], [ -122.701539602999944, 49.286750622000028 ], [ -122.70153471699993, 49.287560175000124 ], [ -122.701122184999974, 49.28755911000016 ], [ -122.701115659999942, 49.28863851400012 ], [ -122.70194074399997, 49.288640645000058 ], [ -122.70194399599994, 49.288100943000053 ], [ -122.703181607999952, 49.288104129000061 ], [ -122.703183227999943, 49.287834277000023 ], [ -122.703595762999896, 49.28783533600005 ], [ -122.703600615999918, 49.287025783000047 ], [ -122.704013144999976, 49.287026840000088 ], [ -122.704019604999985, 49.285947434000015 ], [ -122.704844644, 49.285949544000076 ], [ -122.704846252999943, 49.285679693000077 ], [ -122.706083806000024, 49.285682847000089 ], [ -122.706090220999968, 49.284603440000041 ], [ -122.706502729999926, 49.284604489000053 ], [ -122.706504331999909, 49.284334637000086 ], [ -122.708566860999952, 49.284339858000095 ], [ -122.708558908999962, 49.285689116000114 ], [ -122.708146390999957, 49.285688075000046 ], [ -122.708136834999934, 49.287307184000035 ], [ -122.707724304999942, 49.287306141000059 ], [ -122.707719519999969, 49.288115695000016 ], [ -122.706894444999989, 49.288113606000046 ], [ -122.706892844999942, 49.288383457000158 ], [ -122.706480304999928, 49.288382410000096 ], [ -122.706472295999916, 49.289731667000105 ], [ -122.706059743999944, 49.289730619000061 ], [ -122.706058138999964, 49.290000469000042 ], [ -122.705233032999971, 49.289998368000106 ], [ -122.705229814999925, 49.290538070000096 ], [ -122.704817256999959, 49.290537017000098 ], [ -122.704812424999929, 49.291346571000084 ], [ -122.703162167999963, 49.291342344000043 ], [ -122.703155685999931, 49.292421748000024 ], [ -122.703568259999898, 49.292422807000079 ], [ -122.70356664, 49.292692658000128 ], [ -122.704391791999981, 49.292694771000107 ], [ -122.704386951999979, 49.293504325000093 ], [ -122.703974367999962, 49.29350326900002 ], [ -122.703969521999937, 49.294312823000055 ], [ -122.704382110999987, 49.294313878 ], [ -122.704380496999974, 49.294583729000081 ], [ -122.70479308699997, 49.294584785000048 ], [ -122.704791476999958, 49.294854636000096 ], [ -122.706029256999983, 49.294857791000048 ], [ -122.706026153999957, 49.295379598000096 ], [ -122.711039837, 49.295532439000063 ], [ -122.71085879499995, 49.298083546000043 ], [ -122.71104580199993, 49.298089243000156 ], [ -122.711166651999974, 49.296386254000026 ], [ -122.711933230999961, 49.296409601000114 ], [ -122.711969847999967, 49.29589347200006 ], [ -122.713466788999938, 49.29593904700004 ], [ -122.713514226999905, 49.295270052000028 ], [ -122.711817292999953, 49.295218387000013 ], [ -122.71182145899999, 49.295159671000071 ], [ -122.71068835600002, 49.295125157000079 ], [ -122.710783082999953, 49.293790366000032 ], [ -122.710574109999953, 49.293789842000145 ], [ -122.710577268999913, 49.29325014000009 ], [ -122.710164688999967, 49.293249106000175 ], [ -122.710166272, 49.292979255000027 ], [ -122.70851595799995, 49.29297510300011 ], [ -122.70852073099999, 49.292165550000085 ], [ -122.710583587999949, 49.29217073500007 ], [ -122.710586748999972, 49.291631032000083 ], [ -122.710936249999961, 49.291631907000067 ], [ -122.710943535999945, 49.291529234000038 ], [ -122.710999905999984, 49.29153095100007 ], [ -122.711005623999981, 49.29055265900007 ], [ -122.712243298999965, 49.290555748000038 ], [ -122.712241728, 49.290825599000108 ], [ -122.712654287999925, 49.290826626000054 ], [ -122.712651151999978, 49.291366328000016 ], [ -122.713476281999988, 49.291368377000019 ], [ -122.713479407999969, 49.290828675000043 ], [ -122.715129650999984, 49.290832754000121 ], [ -122.715124985999921, 49.291642309000096 ], [ -122.714615972999923, 49.291641052000102 ], [ -122.71603479799991, 49.2916842200001 ], [ -122.71606624399999, 49.291240358000096 ], [ -122.716364958999932, 49.291249443000027 ], [ -122.716368880999951, 49.290565947000104 ], [ -122.715956320999936, 49.290564934000038 ], [ -122.715967173999914, 49.288675973000039 ], [ -122.716379715999935, 49.288676987000017 ], [ -122.716384359999964, 49.287867432000056 ], [ -122.716796895999934, 49.28786844399999 ], [ -122.716798440999952, 49.287598592000087 ], [ -122.718036042, 49.287601618000103 ], [ -122.718034502999956, 49.287871471000145 ], [ -122.71927211099991, 49.287874484000056 ], [ -122.719285899999946, 49.285445818000056 ], [ -122.718873382999945, 49.285444814000073 ], [ -122.718876451999932, 49.284905111000086 ], [ -122.71763891799999, 49.284902094000067 ], [ -122.717632755999915, 49.285981501000045 ], [ -122.717220233999967, 49.285980492000085 ], [ -122.717215605, 49.286790047000068 ], [ -122.716803077999955, 49.286789037000084 ], [ -122.716799986999902, 49.287328740000071 ], [ -122.713912268999962, 49.287321627000047 ], [ -122.713920074999947, 49.285972369000078 ], [ -122.714332594999988, 49.285973389000112 ], [ -122.714340389999933, 49.284624131000072 ], [ -122.714752897999986, 49.284625150000061 ], [ -122.714756011999953, 49.284085446000105 ], [ -122.715581018999984, 49.284087480000025 ], [ -122.715582571999946, 49.283817628000065 ], [ -122.71682007699998, 49.283820667000107 ], [ -122.716824713999955, 49.2830111110001 ], [ -122.716412217999931, 49.283010100000084 ], [ -122.716413764999956, 49.282740248000025 ], [ -122.716001272999975, 49.282739235000058 ], [ -122.71600282199995, 49.282469383000091 ], [ -122.714352858999973, 49.282465316000142 ], [ -122.714348182999942, 49.283274873000053 ], [ -122.713110691999958, 49.283271806000073 ], [ -122.713109125999935, 49.283541658000054 ], [ -122.713521624999942, 49.283542681000029 ], [ -122.713515371999975, 49.284622088000035 ], [ -122.71186533799991, 49.284617985000075 ], [ -122.711874771999959, 49.282998876000107 ], [ -122.712699760999953, 49.283000929000096 ], [ -122.712702896999971, 49.282461226000066 ], [ -122.713115387999892, 49.282462251 ], [ -122.713118518999948, 49.281922546000025 ], [ -122.712706031999957, 49.28192152200009 ], [ -122.712707713, 49.281632120000047 ], [ -122.711285916999941, 49.28158880900002 ], [ -122.711300847999951, 49.281378309000132 ], [ -122.710646761999953, 49.281376673000075 ], [ -122.710648339, 49.28110682000009 ], [ -122.71023586099993, 49.281105787000044 ], [ -122.710237440999961, 49.280835936000088 ], [ -122.709824963999935, 49.280834900000045 ], [ -122.709832880999954, 49.279485641000043 ], [ -122.710245345999951, 49.279486676000047 ], [ -122.710246705999964, 49.279254716000025 ], [ -122.712390198999969, 49.279723809000117 ], [ -122.713386793000026, 49.280012894000087 ], [ -122.713550859999899, 49.28007900900009 ], [ -122.713609391999981, 49.280102581000072 ], [ -122.714188918999952, 49.27867876800012 ], [ -122.714289821999913, 49.278531306000104 ], [ -122.721064928999951, 49.278518042000073 ], [ -122.727623228999931, 49.278504809000033 ], [ -122.729181098999916, 49.278501589000051 ], [ -122.733315101999906, 49.27852516600008 ], [ -122.73343572899995, 49.278525851000026 ], [ -122.73376061099998, 49.278527706000027 ], [ -122.733950426999968, 49.280360537000014 ], [ -122.734016323, 49.282157228000038 ], [ -122.733567324999981, 49.28398403500011 ], [ -122.733555653999986, 49.284370225000089 ], [ -122.733553958999906, 49.28442584900008 ], [ -122.733525831999913, 49.285355552000063 ], [ -122.733521726999967, 49.285491993000022 ], [ -122.733986244999969, 49.285667162000045 ], [ -122.734152167999952, 49.285751464000057 ], [ -122.734457081999949, 49.285751472000058 ], [ -122.734512144999911, 49.285751461000068 ], [ -122.735254733999966, 49.285751468000036 ], [ -122.73659237699998, 49.285751392000066 ], [ -122.737327614999984, 49.285755604000016 ], [ -122.738042684999925, 49.285751999000098 ], [ -122.738045735999975, 49.286397200000039 ], [ -122.738049529999941, 49.2871977940001 ], [ -122.738050971999954, 49.287503619000084 ], [ -122.738051486999964, 49.287619806000087 ], [ -122.737965195999919, 49.287727182000076 ], [ -122.737546704999929, 49.288247786000028 ], [ -122.737516504999974, 49.288443306000019 ], [ -122.73630649499998, 49.288445507000127 ], [ -122.735921789, 49.288480701000047 ], [ -122.734129899999942, 49.288897690000063 ], [ -122.733745484999986, 49.288927510000065 ], [ -122.733758994999917, 49.288171097000081 ], [ -122.728843101999942, 49.291007891000056 ], [ -122.725743015999981, 49.293046409000098 ], [ -122.725482700999976, 49.293266509000055 ], [ -122.72493899600002, 49.293528408000093 ], [ -122.723015299999958, 49.29417090400004 ], [ -122.719899597999941, 49.29580159700005 ], [ -122.71985541899997, 49.298272296000064 ], [ -122.719868401, 49.299316326000103 ], [ -122.719876931999963, 49.299999985000092 ], [ -122.719967774999958, 49.301855848000052 ], [ -122.717258287999968, 49.301773515000072 ], [ -122.717278450999984, 49.301488873000075 ], [ -122.716328978999982, 49.301460006000084 ], [ -122.716290729999955, 49.301999800000061 ], [ -122.715417112999958, 49.301973230000065 ], [ -122.715355639, 49.302840519000029 ], [ -122.714803794999938, 49.302823733000039 ], [ -122.714783930999943, 49.303103932000042 ], [ -122.714384008999929, 49.30309176600008 ], [ -122.714353436999957, 49.303522942000114 ], [ -122.70886407899998, 49.303355788000047 ] ], [ [ -122.709536272999955, 49.299533568000108 ], [ -122.709541907999935, 49.299454209000075 ], [ -122.709513718999972, 49.299454138000151 ], [ -122.70950773, 49.299538503000107 ], [ -122.709499921999964, 49.299648471000083 ], [ -122.709165193999979, 49.299638270000123 ], [ -122.709156476999922, 49.2997610420001 ], [ -122.709519335999957, 49.299772100000034 ], [ -122.709536272999955, 49.299533568000108 ] ], [ [ -122.728040053999919, 49.286583657000079 ], [ -122.728121982999966, 49.285422834000059 ], [ -122.728912749999949, 49.285446799000034 ], [ -122.728964788999974, 49.284709252000027 ], [ -122.729690537999957, 49.284731241000024 ], [ -122.729714522000023, 49.284391259000117 ], [ -122.727954671999953, 49.284387129000038 ], [ -122.727956154999958, 49.284117277000149 ], [ -122.727543649999959, 49.284116304000086 ], [ -122.727546622999938, 49.283576601000085 ], [ -122.727134123999974, 49.283575627000033 ], [ -122.727138591999932, 49.282766071000069 ], [ -122.72796357799993, 49.282768016000027 ], [ -122.72796513599998, 49.282484807000053 ], [ -122.727140280999933, 49.282459800000041 ], [ -122.72714008, 49.282496218000084 ], [ -122.726315097999972, 49.282494267000089 ], [ -122.72631360299999, 49.282764121000113 ], [ -122.725901110999956, 49.2827631420001 ], [ -122.72589961499996, 49.283032994000081 ], [ -122.72548711799999, 49.283032015000082 ], [ -122.725484122999944, 49.283571720000062 ], [ -122.724246621999981, 49.283568773000155 ], [ -122.72424812699991, 49.283298921000025 ], [ -122.723423130999947, 49.283296949000068 ], [ -122.723418603999932, 49.284106505000075 ], [ -122.723006098999988, 49.2841055170001 ], [ -122.723001563999958, 49.2849150730001 ], [ -122.724239097999956, 49.284918033000082 ], [ -122.724233079000015, 49.285997440000138 ], [ -122.722995517999948, 49.285994480000028 ], [ -122.722989469999973, 49.287073888000073 ], [ -122.723592321999917, 49.287075331000032 ], [ -122.723629201999955, 49.286553527000109 ], [ -122.724523961999978, 49.286580680000093 ], [ -122.724531269999957, 49.286477249 ], [ -122.728040053999919, 49.286583657000079 ] ], [ [ -122.730027276999976, 49.282547298000061 ], [ -122.730026046999967, 49.282772852000072 ], [ -122.730438540999941, 49.282773817000063 ], [ -122.730437067999929, 49.283043669000094 ], [ -122.730849564999971, 49.283044630000084 ], [ -122.73084662799999, 49.283584334000089 ], [ -122.731259127999962, 49.283585294000098 ], [ -122.731257661999976, 49.283855147000075 ], [ -122.732082665999926, 49.283857063000013 ], [ -122.732084128999986, 49.283587210000107 ], [ -122.732909129999882, 49.283589120000094 ], [ -122.732914959999945, 49.282509711000053 ], [ -122.732502467999907, 49.282508757000116 ], [ -122.732503928999947, 49.282238904000039 ], [ -122.732091439999962, 49.28223794900002 ], [ -122.732099326999986, 49.280781766000089 ], [ -122.731678727999977, 49.280769031000112 ], [ -122.731620800999949, 49.281590786000066 ], [ -122.730204305999962, 49.281547884000112 ], [ -122.730133595, 49.282550518000043 ], [ -122.730027276999976, 49.282547298000061 ] ], [ [ -122.723847684999924, 49.281139119000095 ], [ -122.723848119999928, 49.281060747000069 ], [ -122.721586379999962, 49.280992074000082 ], [ -122.721576367999944, 49.281133668000038 ], [ -122.72219776399993, 49.281135165000073 ], [ -122.722193217999916, 49.281944721000038 ], [ -122.722605702999928, 49.281945711000041 ], [ -122.722607217999979, 49.281675860000135 ], [ -122.723019701999974, 49.281676848000053 ], [ -122.723022723999961, 49.281137144000063 ], [ -122.723847684999924, 49.281139119000095 ] ], [ [ -122.701088920999936, 49.293061229000045 ], [ -122.7010895559999, 49.292956133000118 ], [ -122.700676978999979, 49.292955065000037 ], [ -122.700676412999911, 49.293048623000061 ], [ -122.701088920999936, 49.293061229000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.897760467380721", "sL_AssetLoss": "2054", "sL_BldgLoss": "1844", "sL_StrLoss": "1260", "sL_NStrLoss": "584", "sL_ContLoss": "210", "geom_point": "0101000020E610000014E42D78CDAD5EC090C7E3D414A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.713855976999938, 49.304643243000058 ], [ -122.718551211999966, 49.304786011000012 ], [ -122.718398467999947, 49.305019455000021 ], [ -122.71754278099999, 49.305512947000125 ], [ -122.717040347999927, 49.305652395000024 ], [ -122.716152341999958, 49.305780649000084 ], [ -122.715349977999935, 49.306209972000033 ], [ -122.713749304999965, 49.306147401000025 ], [ -122.713855976999938, 49.304643243000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.8", "sL_AssetLoss": "10500", "sL_BldgLoss": "8400", "sL_StrLoss": "4400", "sL_NStrLoss": "4000", "sL_ContLoss": "2100", "geom_point": "0101000020E610000022595DDAB2AB5EC0BC70CE25A8A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.681188792999976, 49.307850673000097 ], [ -122.685043668999981, 49.307969063000051 ], [ -122.68478639099996, 49.311564835000077 ], [ -122.679966905999976, 49.311416800000046 ], [ -122.679978297999952, 49.311356913000047 ], [ -122.679703497999952, 49.311284197000063 ], [ -122.68015839399996, 49.310889690000074 ], [ -122.680008901999926, 49.310717386000064 ], [ -122.680066984999925, 49.31036710300004 ], [ -122.680522010999937, 49.309972606000024 ], [ -122.681033304, 49.309794488000044 ], [ -122.681327606999943, 49.308868808000057 ], [ -122.681347113999891, 49.308176593000027 ], [ -122.681188792999976, 49.307850673000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3339833", "BldgCostT": "2303333", "sL_LossRatio": "0.746100232326585", "sL_AssetLoss": "60260", "sL_BldgLoss": "44960", "sL_StrLoss": "19330", "sL_NStrLoss": "25630", "sL_ContLoss": "15300", "geom_point": "0101000020E6100000C5332E3D16AC5EC04832ED938AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.684983570999961, 49.295342047000119 ], [ -122.684988728999926, 49.294532496000045 ], [ -122.684576138999944, 49.294531370000094 ], [ -122.68458130399999, 49.293721819000098 ], [ -122.685406472, 49.293724067000078 ], [ -122.685409907999912, 49.293184367000102 ], [ -122.687060222999946, 49.293188847000103 ], [ -122.68706193099996, 49.29291899600009 ], [ -122.688712237999965, 49.292923454000089 ], [ -122.688719035999938, 49.291844051000062 ], [ -122.688306467999936, 49.291842939000098 ], [ -122.688307949999981, 49.291607495000072 ], [ -122.685026431999944, 49.291506784000106 ], [ -122.685060918999937, 49.291024573000094 ], [ -122.685011082999921, 49.291024437000019 ], [ -122.685018720999963, 49.289825662000098 ], [ -122.68658190099994, 49.289552189000105 ], [ -122.687599705999915, 49.289438286000113 ], [ -122.689073916, 49.289063706000029 ], [ -122.690733686999963, 49.288602291000046 ], [ -122.690733049999949, 49.28861119400009 ], [ -122.690802126999927, 49.288611379000088 ], [ -122.690795376999944, 49.289690782000086 ], [ -122.690656004999965, 49.289690410000077 ], [ -122.690521163999932, 49.291579037000076 ], [ -122.692846391, 49.291585240000103 ], [ -122.692841361999953, 49.292394792000067 ], [ -122.693253934, 49.292395889000019 ], [ -122.693247236999966, 49.293475292000025 ], [ -122.690359165999908, 49.293467589000024 ], [ -122.690362545999974, 49.292927888000094 ], [ -122.689949968999926, 49.292926781000055 ], [ -122.689946040999985, 49.29355291800006 ], [ -122.69195992500002, 49.293614642000129 ], [ -122.691703261999933, 49.297210508000013 ], [ -122.686214733999932, 49.297042202000029 ], [ -122.68633602899996, 49.295345727000068 ], [ -122.684983570999961, 49.295342047000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2723584", "BldgCostT": "1878334", "sL_LossRatio": "0.788993923024983", "sL_AssetLoss": "29620", "sL_BldgLoss": "23370", "sL_StrLoss": "12040", "sL_NStrLoss": "11330", "sL_ContLoss": "6250", "geom_point": "0101000020E6100000DF58ABD146AC5EC098FA795391A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.687691971999982, 49.321492279000026 ], [ -122.687702547999933, 49.321344392000093 ], [ -122.686295432999927, 49.321301242000082 ], [ -122.686552647999989, 49.317705518000018 ], [ -122.690040789999912, 49.31781245300003 ], [ -122.690276876999988, 49.314508099000136 ], [ -122.695591740999959, 49.314670819000092 ], [ -122.695718547999945, 49.312892926000067 ], [ -122.698617572999979, 49.312981572000098 ], [ -122.698502990999927, 49.313122698000065 ], [ -122.698219993999928, 49.314294207000032 ], [ -122.698083708999889, 49.314585608000058 ], [ -122.696590907999976, 49.31603539500005 ], [ -122.696200594999937, 49.316280286000065 ], [ -122.695640821999973, 49.316494166000041 ], [ -122.695637826, 49.316494074000033 ], [ -122.695637735000034, 49.316495345000085 ], [ -122.695501997999941, 49.31654720700007 ], [ -122.694893687, 49.316724114000053 ], [ -122.693244082999939, 49.316911526000069 ], [ -122.692944981, 49.316945500000045 ], [ -122.692533280999939, 49.317066194000077 ], [ -122.690979988999942, 49.318197721000089 ], [ -122.690862437999968, 49.318283322000035 ], [ -122.690711386999936, 49.318393360000137 ], [ -122.690643797999897, 49.31844260900008 ], [ -122.69056501399993, 49.318609311000088 ], [ -122.689765294999972, 49.320301310000069 ], [ -122.68880208499999, 49.321246507000083 ], [ -122.688729788999964, 49.321487596000104 ], [ -122.688724767999958, 49.321523939000045 ], [ -122.687691971999982, 49.321492279000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6517750", "BldgCostT": "4495000", "sL_LossRatio": "0.887963135356544", "sL_AssetLoss": "21484", "sL_BldgLoss": "19077", "sL_StrLoss": "14300", "sL_NStrLoss": "4777", "sL_ContLoss": "2407", "geom_point": "0101000020E6100000A7583508F3AD5EC0CA5E424723A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.718551211999966, 49.304786011000012 ], [ -122.719345505999968, 49.304810142000086 ], [ -122.719233374999959, 49.306393899000078 ], [ -122.715349977999935, 49.306209972000033 ], [ -122.716152341999958, 49.305780649000084 ], [ -122.717040347999927, 49.305652395000024 ], [ -122.71754278099999, 49.305512947000125 ], [ -122.718398467999947, 49.305019455000021 ], [ -122.718551211999966, 49.304786011000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "973072250", "BldgCostT": "627020000", "sL_LossRatio": "0.847620343228715", "sL_AssetLoss": "2631598", "sL_BldgLoss": "2230596", "sL_StrLoss": "1558755", "sL_NStrLoss": "671841", "sL_ContLoss": "401002", "geom_point": "0101000020E610000085C1D39680AF5EC05F368D2FD2A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.745993347, 49.306162775000111 ], [ -122.745993708999947, 49.30609258600002 ], [ -122.741236315999913, 49.305949141000056 ], [ -122.741489185999967, 49.302353206000092 ], [ -122.742546905999944, 49.302385116000096 ], [ -122.742762104999912, 49.299323428000086 ], [ -122.743217225999928, 49.299337155000032 ], [ -122.743263122, 49.298684038000076 ], [ -122.743284409999916, 49.298684680000065 ], [ -122.743461957999983, 49.296157911000101 ], [ -122.743489638999947, 49.295763931000074 ], [ -122.743490154999932, 49.295756580000074 ], [ -122.743158577999935, 49.295755843000059 ], [ -122.743161381999968, 49.295216139000054 ], [ -122.742748784999947, 49.29521522200011 ], [ -122.742750015999903, 49.294978409000073 ], [ -122.742758613999939, 49.293326258000015 ], [ -122.743171196999967, 49.293327176000034 ], [ -122.743172597999973, 49.293057325000056 ], [ -122.743585177999975, 49.293058240000079 ], [ -122.743586576999945, 49.292788389000123 ], [ -122.743999155, 49.292789303000063 ], [ -122.744003349, 49.291979747000049 ], [ -122.744415919999966, 49.291980660000071 ], [ -122.744417313999961, 49.29171080800009 ], [ -122.745655019999958, 49.291713539000071 ], [ -122.74565640899999, 49.291443687000019 ], [ -122.74689410799999, 49.291446404000091 ], [ -122.746895490999918, 49.291176553000128 ], [ -122.74772061799996, 49.291178357 ], [ -122.747721988999942, 49.290909797 ], [ -122.744200563000021, 49.290803659000098 ], [ -122.744203189999951, 49.290766266000105 ], [ -122.74339788899999, 49.290741978000028 ], [ -122.743371514999964, 49.291117374000031 ], [ -122.737883520999972, 49.290951691000075 ], [ -122.73791491, 49.29050565299999 ], [ -122.735571865999972, 49.290434831000049 ], [ -122.73557425599995, 49.29040089900009 ], [ -122.73472473899993, 49.29037520900004 ], [ -122.734750480999963, 49.290009769000115 ], [ -122.732874752999948, 49.289953021000066 ], [ -122.73286593099999, 49.29158569600007 ], [ -122.733072379999911, 49.291591943000071 ], [ -122.732818916, 49.295187918000124 ], [ -122.731468536999941, 49.295147047000079 ], [ -122.731447751999937, 49.295441792000084 ], [ -122.733676497999909, 49.295509238000136 ], [ -122.733423061999972, 49.299105193000059 ], [ -122.72810743399999, 49.298944257000123 ], [ -122.728065668999946, 49.299535821000077 ], [ -122.727767211999904, 49.299526777000032 ], [ -122.727729185999962, 49.30006532700007 ], [ -122.726519593999939, 49.300028665000035 ], [ -122.726437295000011, 49.301193755000021 ], [ -122.72280806400002, 49.301083675000051 ], [ -122.722747488999971, 49.301940243000068 ], [ -122.719967774999958, 49.301855848000052 ], [ -122.719876931999963, 49.299999985000092 ], [ -122.719868401, 49.299316326000103 ], [ -122.71985541899997, 49.298272296000064 ], [ -122.719899597999941, 49.29580159700005 ], [ -122.723015299999958, 49.29417090400004 ], [ -122.72493899600002, 49.293528408000093 ], [ -122.725482700999976, 49.293266509000055 ], [ -122.725743015999981, 49.293046409000098 ], [ -122.728843101999942, 49.291007891000056 ], [ -122.733758994999917, 49.288171097000081 ], [ -122.733745484999986, 49.288927510000065 ], [ -122.734129899999942, 49.288897690000063 ], [ -122.735921789, 49.288480701000047 ], [ -122.73630649499998, 49.288445507000127 ], [ -122.737516504999974, 49.288443306000019 ], [ -122.737546704999929, 49.288247786000028 ], [ -122.737965195999919, 49.287727182000076 ], [ -122.738051486999964, 49.287619806000087 ], [ -122.738050971999954, 49.287503619000084 ], [ -122.738049529999941, 49.2871977940001 ], [ -122.738045735999975, 49.286397200000039 ], [ -122.738042684999925, 49.285751999000098 ], [ -122.743630769999967, 49.285737279000017 ], [ -122.743837040999949, 49.285736753000023 ], [ -122.744904008999953, 49.285733898000061 ], [ -122.744950664999948, 49.285733877000062 ], [ -122.745632615999909, 49.2857333010001 ], [ -122.746851343999978, 49.285738969000128 ], [ -122.747553945999982, 49.285742212000081 ], [ -122.747728097999982, 49.285743024000034 ], [ -122.747948122999986, 49.285744053000059 ], [ -122.749831882999985, 49.285752745000075 ], [ -122.75027902, 49.285754819000033 ], [ -122.75040422, 49.285755395000102 ], [ -122.753115573999963, 49.285731684 ], [ -122.753187044999891, 49.285731061000043 ], [ -122.754603511999946, 49.285736532000058 ], [ -122.756041595999989, 49.285742107000026 ], [ -122.756041460999967, 49.285751141000098 ], [ -122.756028744, 49.286672334000059 ], [ -122.756016561, 49.287534136000033 ], [ -122.756000275999924, 49.288454386000076 ], [ -122.75598937699999, 49.289239324000071 ], [ -122.755988714999972, 49.289291288000065 ], [ -122.755978446999904, 49.290115912000019 ], [ -122.755973746, 49.290494020000111 ], [ -122.755943313999964, 49.292941868000092 ], [ -122.755941038999964, 49.292994040000046 ], [ -122.755933658999965, 49.293641470000054 ], [ -122.755930352999926, 49.293929298000094 ], [ -122.755921703999931, 49.294684918000037 ], [ -122.755919821999925, 49.294849267000103 ], [ -122.755895558999967, 49.296590860000094 ], [ -122.755884282999915, 49.297537357000074 ], [ -122.755873513999916, 49.298489994000057 ], [ -122.755863242999979, 49.299402646000019 ], [ -122.755854155999884, 49.300207608000058 ], [ -122.75581677299999, 49.301448803000071 ], [ -122.755790316999978, 49.302355243000079 ], [ -122.755745987999944, 49.303874548000081 ], [ -122.755714360999946, 49.304856476000111 ], [ -122.755336790999976, 49.304846866000084 ], [ -122.754141966999953, 49.304684860000052 ], [ -122.753872932999982, 49.304636249000083 ], [ -122.75366936099995, 49.304599478000085 ], [ -122.751801558999915, 49.304072173000073 ], [ -122.75101588299998, 49.303960283000059 ], [ -122.750143497999886, 49.303947491000066 ], [ -122.749545787999978, 49.303997973000037 ], [ -122.749044681999962, 49.303965796000043 ], [ -122.74859491, 49.303829796000031 ], [ -122.747957001999964, 49.303591582000074 ], [ -122.747528394999918, 49.303545407000058 ], [ -122.747048885999945, 49.303558001000106 ], [ -122.745627093999985, 49.303730506000086 ], [ -122.744691886999931, 49.303769817000095 ], [ -122.744623711, 49.303860598000078 ], [ -122.744649633, 49.303890303000045 ], [ -122.744765409999914, 49.303958015000021 ], [ -122.745103560999979, 49.304079495000124 ], [ -122.745295766999973, 49.30415186900013 ], [ -122.745583809999971, 49.304314422000097 ], [ -122.745816711999936, 49.304503821000061 ], [ -122.745994525999919, 49.304693119000063 ], [ -122.746076486999925, 49.304810244000095 ], [ -122.746213039999958, 49.30500842800005 ], [ -122.746308674999938, 49.305134562000021 ], [ -122.746377011999982, 49.30521567600011 ], [ -122.746499999, 49.305377858000078 ], [ -122.746582028999981, 49.305476988000059 ], [ -122.746691288999969, 49.305630150000056 ], [ -122.746732313999985, 49.305684190000058 ], [ -122.746841198999931, 49.305909310000089 ], [ -122.746881968999958, 49.306008339000094 ], [ -122.746950019999986, 49.306152426000025 ], [ -122.747086580999962, 49.306341623000051 ], [ -122.747264511999958, 49.306521899000074 ], [ -122.747401317000012, 49.3066661410001 ], [ -122.747483077999945, 49.30681922400008 ], [ -122.747633389999976, 49.307017462000033 ], [ -122.747669918999947, 49.307099681000032 ], [ -122.74718612, 49.307098623000101 ], [ -122.747030751999958, 49.309311758000078 ], [ -122.746961517000017, 49.309273785000101 ], [ -122.746769300999958, 49.309201379000065 ], [ -122.746549580999911, 49.309119963000107 ], [ -122.746316119999946, 49.30904747700005 ], [ -122.746027747999932, 49.30893891200008 ], [ -122.745766746999976, 49.30886635700007 ], [ -122.745670573999973, 49.308839161000051 ], [ -122.745450842999958, 49.308766706000071 ], [ -122.745121295, 49.308640064000095 ], [ -122.744832809999977, 49.308558465000075 ], [ -122.744599406999981, 49.30847699900005 ], [ -122.744324648999964, 49.30839543400004 ], [ -122.744049980999961, 49.308304879000048 ], [ -122.743761465999967, 49.308232274000041 ], [ -122.743486712999967, 49.308159691000064 ], [ -122.743143382999961, 49.30804201800008 ], [ -122.74289920199999, 49.307983344000093 ], [ -122.742070626000014, 49.307600190000066 ], [ -122.741661344999955, 49.3074291 ], [ -122.741759365999897, 49.306035122000011 ], [ -122.745993347, 49.306162775000111 ] ], [ [ -122.74948054099994, 49.303325656000055 ], [ -122.749481004999922, 49.303319040000098 ], [ -122.748484139, 49.30328903 ], [ -122.748483962999956, 49.303323491000043 ], [ -122.74948054099994, 49.303325656000055 ] ], [ [ -122.753678830999945, 49.292540487000089 ], [ -122.753700973999941, 49.292224323000013 ], [ -122.753530720999905, 49.292219204000055 ], [ -122.753546038999957, 49.292000493000096 ], [ -122.75349248699996, 49.2920003790001 ], [ -122.753493831999947, 49.291730526000038 ], [ -122.753081261999967, 49.291729646000064 ], [ -122.753082608999961, 49.291459793000058 ], [ -122.752257475999954, 49.291458027000047 ], [ -122.752258828999942, 49.29118817500008 ], [ -122.751846262999933, 49.291187290000103 ], [ -122.751847617999914, 49.290917438000086 ], [ -122.749692504999956, 49.290912789000103 ], [ -122.749688561999932, 49.290969021000087 ], [ -122.749372004999941, 49.290959491000145 ], [ -122.749368139999916, 49.291721652000014 ], [ -122.749780710999971, 49.291722546000109 ], [ -122.749779343999975, 49.291992398000048 ], [ -122.750604486, 49.291994181000106 ], [ -122.750601763999924, 49.292533886000044 ], [ -122.753678830999945, 49.292540487000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17049584", "BldgCostT": "11758334", "sL_LossRatio": "0.870303844216888", "sL_AssetLoss": "59570", "sL_BldgLoss": "51844", "sL_StrLoss": "36120", "sL_NStrLoss": "15724", "sL_ContLoss": "7726", "geom_point": "0101000020E6100000DACA01714DAC5EC0F964E67EDEA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.695501997999941, 49.31654720700007 ], [ -122.695637735000034, 49.316495345000085 ], [ -122.695511005999933, 49.318271957000057 ], [ -122.693429840999926, 49.31820827500011 ], [ -122.693183401999974, 49.321660503000054 ], [ -122.688724767999958, 49.321523939000045 ], [ -122.688729788999964, 49.321487596000104 ], [ -122.68880208499999, 49.321246507000083 ], [ -122.689765294999972, 49.320301310000069 ], [ -122.69056501399993, 49.318609311000088 ], [ -122.690643797999897, 49.31844260900008 ], [ -122.690711386999936, 49.318393360000137 ], [ -122.690862437999968, 49.318283322000035 ], [ -122.690979988999942, 49.318197721000089 ], [ -122.692533280999939, 49.317066194000077 ], [ -122.692944981, 49.316945500000045 ], [ -122.693244082999939, 49.316911526000069 ], [ -122.694893687, 49.316724114000053 ], [ -122.695501997999941, 49.31654720700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.85981697171381", "sL_AssetLoss": "9616", "sL_BldgLoss": "8268", "sL_StrLoss": "5750", "sL_NStrLoss": "2518", "sL_ContLoss": "1348", "geom_point": "0101000020E6100000ACAEBFFC00AB5EC00B7AB128D3A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.672700732999914, 49.325683355000109 ], [ -122.672951946999945, 49.325485206000096 ], [ -122.672878250999972, 49.326511081000085 ], [ -122.672532054999948, 49.326500420000073 ], [ -122.672457192999943, 49.327542389 ], [ -122.670545031999964, 49.32748348300008 ], [ -122.670883394999962, 49.327057772000074 ], [ -122.671334880999922, 49.326562267000043 ], [ -122.671457121999936, 49.326435420000031 ], [ -122.671512406999966, 49.3263995820001 ], [ -122.671844158999988, 49.32618465000008 ], [ -122.672037817000017, 49.32603228500011 ], [ -122.672314191999973, 49.325862144000112 ], [ -122.672700732999914, 49.325683355000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947916", "BldgCostT": "4791666", "sL_LossRatio": "0.899658965368173", "sL_AssetLoss": "20819", "sL_BldgLoss": "18730", "sL_StrLoss": "13710", "sL_NStrLoss": "5020", "sL_ContLoss": "2089", "geom_point": "0101000020E6100000D5E6417299AF5EC0F92E00E88BA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.741506499, 49.309631039000053 ], [ -122.741661344999955, 49.3074291 ], [ -122.742070626000014, 49.307600190000066 ], [ -122.74289920199999, 49.307983344000093 ], [ -122.743143382999961, 49.30804201800008 ], [ -122.743486712999967, 49.308159691000064 ], [ -122.743761465999967, 49.308232274000041 ], [ -122.744049980999961, 49.308304879000048 ], [ -122.744324648999964, 49.30839543400004 ], [ -122.744599406999981, 49.30847699900005 ], [ -122.744832809999977, 49.308558465000075 ], [ -122.745121295, 49.308640064000095 ], [ -122.745450842999958, 49.308766706000071 ], [ -122.745670573999973, 49.308839161000051 ], [ -122.745766746999976, 49.30886635700007 ], [ -122.746027747999932, 49.30893891200008 ], [ -122.746316119999946, 49.30904747700005 ], [ -122.746549580999911, 49.309119963000107 ], [ -122.746769300999958, 49.309201379000065 ], [ -122.746961517000017, 49.309273785000101 ], [ -122.747030751999958, 49.309311758000078 ], [ -122.746996715999927, 49.309796533000068 ], [ -122.741506499, 49.309631039000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12656084", "BldgCostT": "8728334", "sL_LossRatio": "0.874448155847796", "sL_AssetLoss": "42811", "sL_BldgLoss": "37436", "sL_StrLoss": "26840", "sL_NStrLoss": "10596", "sL_ContLoss": "5375", "geom_point": "0101000020E61000000F80D9B9C0AC5EC04DD32D5C52A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.698617572999979, 49.312981572000098 ], [ -122.70120898799999, 49.31306074600009 ], [ -122.700952935999922, 49.316656529000113 ], [ -122.695640821999973, 49.316494166000041 ], [ -122.696200594999937, 49.316280286000065 ], [ -122.696590907999976, 49.31603539500005 ], [ -122.698083708999889, 49.314585608000058 ], [ -122.698219993999928, 49.314294207000032 ], [ -122.698502990999927, 49.313122698000065 ], [ -122.698617572999979, 49.312981572000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16904583", "BldgCostT": "11658333", "sL_LossRatio": "0.893047330976015", "sL_AssetLoss": "46946", "sL_BldgLoss": "41925", "sL_StrLoss": "31280", "sL_NStrLoss": "10645", "sL_ContLoss": "5021", "geom_point": "0101000020E6100000B541BB7D75AB5EC003E608B61DAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.67643730199994, 49.346566015000121 ], [ -122.67669542099999, 49.342970451000056 ], [ -122.682189355999981, 49.34313922900003 ], [ -122.6820347459999, 49.3452965500001 ], [ -122.68185078499999, 49.345273008000049 ], [ -122.681382299999939, 49.345361286000127 ], [ -122.680624780999963, 49.345378397000033 ], [ -122.680002506, 49.345771485000114 ], [ -122.679794486, 49.345923908000067 ], [ -122.679695295999963, 49.346194489000133 ], [ -122.679815406, 49.346669825000042 ], [ -122.67643730199994, 49.346566015000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21689667", "BldgCostT": "14486667", "sL_LossRatio": "0.882738478121034", "sL_AssetLoss": "57521", "sL_BldgLoss": "50776", "sL_StrLoss": "36852", "sL_NStrLoss": "13924", "sL_ContLoss": "6745", "geom_point": "0101000020E6100000D7FFF7AF05B05EC09E9BDB2942A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.747727950999916, 49.31263858600007 ], [ -122.753218547999921, 49.312803763000126 ], [ -122.752966530999942, 49.316399671000042 ], [ -122.747475509999973, 49.316234481000073 ], [ -122.747727950999916, 49.31263858600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88539334", "BldgCostT": "58113334", "sL_LossRatio": "0.897559148207431", "sL_AssetLoss": "205543", "sL_BldgLoss": "184487", "sL_StrLoss": "135721", "sL_NStrLoss": "48766", "sL_ContLoss": "21056", "geom_point": "0101000020E61000008FAA89B2B5AD5EC0916745719AAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.713197928999975, 49.33740811600012 ], [ -122.713312794999965, 49.335789869000067 ], [ -122.710090919999942, 49.335691837000049 ], [ -122.710179612000019, 49.334443464000039 ], [ -122.708962658999909, 49.334406411000039 ], [ -122.70921818799998, 49.330810704000058 ], [ -122.709976673999947, 49.330833799000082 ], [ -122.71008163499999, 49.329356321000049 ], [ -122.710798977999957, 49.329378159000044 ], [ -122.710852444999944, 49.328625337000076 ], [ -122.711671138999947, 49.328650255000071 ], [ -122.711701832999921, 49.328217957000028 ], [ -122.717194145999926, 49.328384961000097 ], [ -122.717063606999901, 49.330226506000017 ], [ -122.717792538999973, 49.330248650000037 ], [ -122.717783147999953, 49.330381156000037 ], [ -122.71846392399999, 49.330401832000078 ], [ -122.718211986999961, 49.333957037000097 ], [ -122.718946127999956, 49.333979328000076 ], [ -122.718691335999921, 49.337575041000029 ], [ -122.713197928999975, 49.33740811600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22969000", "BldgCostT": "13870000", "sL_LossRatio": "0.674233156630873", "sL_AssetLoss": "220710", "sL_BldgLoss": "148810", "sL_StrLoss": "70100", "sL_NStrLoss": "78710", "sL_ContLoss": "71900", "geom_point": "0101000020E6100000AE3E2EDC3FB15EC0EF5675DA43AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.770514767999927, 49.327813380000052 ], [ -122.772903543000027, 49.32788474900007 ], [ -122.772919903999963, 49.328106725000055 ], [ -122.772912240999972, 49.328119551000043 ], [ -122.77278102299999, 49.328306365000081 ], [ -122.772111942999956, 49.32894793800007 ], [ -122.770782827999966, 49.33022240500005 ], [ -122.770664803999949, 49.330335892000093 ], [ -122.770624464999969, 49.330379776000093 ], [ -122.770532004999922, 49.330480396000041 ], [ -122.770499681, 49.330515579000085 ], [ -122.769869053999955, 49.331201734000068 ], [ -122.769765587000023, 49.331314295000027 ], [ -122.76955853199999, 49.331963867000056 ], [ -122.769556286999943, 49.33197089400003 ], [ -122.769348705999931, 49.332141786000079 ], [ -122.768328002999951, 49.332453685000083 ], [ -122.767569298999959, 49.332929391000086 ], [ -122.767245242999962, 49.332962847000054 ], [ -122.767456372999973, 49.329938213000112 ], [ -122.767666792999975, 49.329944506000103 ], [ -122.76769448599994, 49.329547717000061 ], [ -122.767729436999943, 49.329548762000066 ], [ -122.767749400999961, 49.329262717000091 ], [ -122.77040816099999, 49.329342213000075 ], [ -122.770514767999927, 49.327813380000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19718750", "BldgCostT": "12125000", "sL_LossRatio": "0.862525379732196", "sL_AssetLoss": "38909", "sL_BldgLoss": "33560", "sL_StrLoss": "23580", "sL_NStrLoss": "9980", "sL_ContLoss": "5349", "geom_point": "0101000020E610000061696480D9AD5EC0E7B54C6555A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.713600951999979, 49.308239101000076 ], [ -122.713749304999965, 49.306147401000025 ], [ -122.715349977999935, 49.306209972000033 ], [ -122.719233374999959, 49.306393899000078 ], [ -122.719090905, 49.308406013000088 ], [ -122.713600951999979, 49.308239101000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.86760906653668", "sL_AssetLoss": "20515", "sL_BldgLoss": "17799", "sL_StrLoss": "12570", "sL_NStrLoss": "5229", "sL_ContLoss": "2716", "geom_point": "0101000020E61000007715106200AA5EC01844FF5FD0AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65686773099992, 49.348917617000041 ], [ -122.657364021999982, 49.348600294000079 ], [ -122.657355869999918, 49.34871319800007 ], [ -122.657653308999954, 49.348722395000024 ], [ -122.657484577999966, 49.351059150000069 ], [ -122.65450522799992, 49.351120992000084 ], [ -122.654431155999973, 49.35112248500014 ], [ -122.654591593999953, 49.350678834000107 ], [ -122.65481094099999, 49.350055710000085 ], [ -122.655290963999917, 49.349521465000073 ], [ -122.655947172999973, 49.349213172000105 ], [ -122.65686773099992, 49.348917617000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "0.776896699528504", "sL_AssetLoss": "46660", "sL_BldgLoss": "36250", "sL_StrLoss": "19200", "sL_NStrLoss": "17050", "sL_ContLoss": "10410", "geom_point": "0101000020E6100000E5160C1124B15EC010FDC15D49A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.766772981999978, 49.316916692000113 ], [ -122.76702393, 49.313320756000032 ], [ -122.76948317199998, 49.313394332000037 ], [ -122.769483369999989, 49.313351896000029 ], [ -122.769937847999969, 49.313352802000104 ], [ -122.76991639799995, 49.313379302000094 ], [ -122.769760165999955, 49.313546120000105 ], [ -122.769040461999964, 49.314260562000129 ], [ -122.768423145999947, 49.314805498000055 ], [ -122.768286479999944, 49.314958699000066 ], [ -122.767887000999949, 49.314886103000028 ], [ -122.767625782999943, 49.315074097000036 ], [ -122.767541584999947, 49.315433007000124 ], [ -122.767539046999929, 49.315461979000055 ], [ -122.767565088999973, 49.315828702000061 ], [ -122.767688326999945, 49.316132440000068 ], [ -122.767707453999918, 49.316178542000031 ], [ -122.767738378, 49.316281829000054 ], [ -122.768075449999955, 49.316753520000084 ], [ -122.768195424999945, 49.316959256000047 ], [ -122.766772981999978, 49.316916692000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.801599644523439", "sL_AssetLoss": "22505", "sL_BldgLoss": "18040", "sL_StrLoss": "10290", "sL_NStrLoss": "7750", "sL_ContLoss": "4465", "geom_point": "0101000020E6100000E9F7F52A4FB15EC0F2D3972956AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.770089180999946, 49.336755595000106 ], [ -122.770108578999924, 49.336756175000062 ], [ -122.770313831999914, 49.336905394000055 ], [ -122.770892217999943, 49.337325905000114 ], [ -122.77131720199999, 49.33795539300008 ], [ -122.771164308, 49.33812629000014 ], [ -122.77093778699999, 49.339322708000068 ], [ -122.77061399499999, 49.339800946000032 ], [ -122.77028690499999, 49.340283984000081 ], [ -122.770279748999926, 49.340364603000104 ], [ -122.769838343999965, 49.340351413000064 ], [ -122.770089180999946, 49.336755595000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28323501", "BldgCostT": "18590001", "sL_LossRatio": "0.861943643544206", "sL_AssetLoss": "82546", "sL_BldgLoss": "71150", "sL_StrLoss": "48973", "sL_NStrLoss": "22177", "sL_ContLoss": "11396", "geom_point": "0101000020E6100000E7A9F51BF9AC5EC068DC489786A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.700527804000032, 49.307137559000097 ], [ -122.706118653999951, 49.306589316000114 ], [ -122.705864966999954, 49.310157729000046 ], [ -122.703538254999927, 49.310086741000063 ], [ -122.70351048899991, 49.310476985000037 ], [ -122.703458454999932, 49.310475396000093 ], [ -122.70341891699999, 49.31103108500011 ], [ -122.699987522999962, 49.310926300000119 ], [ -122.700074507999915, 49.310777906000105 ], [ -122.700102703999917, 49.310612993000085 ], [ -122.70001420899996, 49.310449977000111 ], [ -122.699990803999967, 49.310406902000068 ], [ -122.69981367299998, 49.310292373000046 ], [ -122.699730482999954, 49.310238608000098 ], [ -122.699386106999981, 49.310091087000053 ], [ -122.699202594999946, 49.30982881500006 ], [ -122.699182800999921, 49.309141711000066 ], [ -122.699318913999917, 49.308446704000076 ], [ -122.699527809999921, 49.308102592000061 ], [ -122.700527804000032, 49.307137559000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "308441833", "BldgCostT": "203968333", "sL_LossRatio": "0.753406925025915", "sL_AssetLoss": "2714618", "sL_BldgLoss": "2045212", "sL_StrLoss": "1066212", "sL_NStrLoss": "979000", "sL_ContLoss": "669406", "geom_point": "0101000020E6100000F1DAD747C8B05EC0F18A75E4A7A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771553361000016, 49.312006736000036 ], [ -122.771556939999954, 49.311232840000081 ], [ -122.771000889999939, 49.311216218 ], [ -122.771052772999937, 49.310471751000094 ], [ -122.770084303999937, 49.310442796000061 ], [ -122.770140050999927, 49.309643103000084 ], [ -122.769748341999929, 49.309631388000128 ], [ -122.769999021000018, 49.306035406000042 ], [ -122.770763557999913, 49.306058268000108 ], [ -122.770824760999943, 49.305180017000076 ], [ -122.769064939999964, 49.305127384000031 ], [ -122.768832425999946, 49.308461908000034 ], [ -122.768122143999918, 49.308440657000077 ], [ -122.768098813999956, 49.308775125000054 ], [ -122.76743031399999, 49.308755119000104 ], [ -122.767410101999971, 49.309044840000084 ], [ -122.766636681999984, 49.309021690000066 ], [ -122.766632371999933, 49.309083459000149 ], [ -122.765710706999982, 49.309055864000058 ], [ -122.765662470999985, 49.30974688100013 ], [ -122.765382029999969, 49.309738483000061 ], [ -122.765284631999975, 49.311133587000072 ], [ -122.75979419199993, 49.31096902200008 ], [ -122.7598519899999, 49.310142525000074 ], [ -122.75737395799996, 49.310068159000053 ], [ -122.75742059399991, 49.309401777000126 ], [ -122.755986850999975, 49.309358725000074 ], [ -122.755989023999973, 49.30932768400001 ], [ -122.753914978999902, 49.309265370000027 ], [ -122.753994638999984, 49.308128290000035 ], [ -122.752246191, 49.308075728000041 ], [ -122.752389540999943, 49.306030471000064 ], [ -122.751359047999969, 49.306028258000026 ], [ -122.751361763999952, 49.305488555000068 ], [ -122.749711026999933, 49.30548499200011 ], [ -122.749716493999927, 49.304405585000026 ], [ -122.748065793999942, 49.304401999000056 ], [ -122.748067170999917, 49.304132147000125 ], [ -122.746865462999949, 49.304129521000057 ], [ -122.746789694999919, 49.305208774000036 ], [ -122.747236304999916, 49.305209752000053 ], [ -122.747234923999883, 49.305479603000059 ], [ -122.74764760799998, 49.305480505000091 ], [ -122.747644852999926, 49.306020207000074 ], [ -122.74805754, 49.306021108000031 ], [ -122.748052037, 49.307100514000126 ], [ -122.747669918999947, 49.307099681000032 ], [ -122.747633389999976, 49.307017462000033 ], [ -122.747483077999945, 49.30681922400008 ], [ -122.747401317000012, 49.3066661410001 ], [ -122.747264511999958, 49.306521899000074 ], [ -122.747086580999962, 49.306341623000051 ], [ -122.746950019999986, 49.306152426000025 ], [ -122.746881968999958, 49.306008339000094 ], [ -122.746841198999931, 49.305909310000089 ], [ -122.746732313999985, 49.305684190000058 ], [ -122.746691288999969, 49.305630150000056 ], [ -122.746582028999981, 49.305476988000059 ], [ -122.746499999, 49.305377858000078 ], [ -122.746377011999982, 49.30521567600011 ], [ -122.746308674999938, 49.305134562000021 ], [ -122.746213039999958, 49.30500842800005 ], [ -122.746076486999925, 49.304810244000095 ], [ -122.745994525999919, 49.304693119000063 ], [ -122.745816711999936, 49.304503821000061 ], [ -122.745583809999971, 49.304314422000097 ], [ -122.745295766999973, 49.30415186900013 ], [ -122.745103560999979, 49.304079495000124 ], [ -122.744765409999914, 49.303958015000021 ], [ -122.744649633, 49.303890303000045 ], [ -122.744623711, 49.303860598000078 ], [ -122.744691886999931, 49.303769817000095 ], [ -122.745627093999985, 49.303730506000086 ], [ -122.747048885999945, 49.303558001000106 ], [ -122.747528394999918, 49.303545407000058 ], [ -122.747957001999964, 49.303591582000074 ], [ -122.74859491, 49.303829796000031 ], [ -122.749044681999962, 49.303965796000043 ], [ -122.749545787999978, 49.303997973000037 ], [ -122.750143497999886, 49.303947491000066 ], [ -122.75101588299998, 49.303960283000059 ], [ -122.751801558999915, 49.304072173000073 ], [ -122.75366936099995, 49.304599478000085 ], [ -122.753872932999982, 49.304636249000083 ], [ -122.754141966999953, 49.304684860000052 ], [ -122.755336790999976, 49.304846866000084 ], [ -122.755714360999946, 49.304856476000111 ], [ -122.755745987999944, 49.303874548000081 ], [ -122.755790316999978, 49.302355243000079 ], [ -122.75581677299999, 49.301448803000071 ], [ -122.755854155999884, 49.300207608000058 ], [ -122.755863242999979, 49.299402646000019 ], [ -122.755873513999916, 49.298489994000057 ], [ -122.755884282999915, 49.297537357000074 ], [ -122.755895558999967, 49.296590860000094 ], [ -122.755919821999925, 49.294849267000103 ], [ -122.755921703999931, 49.294684918000037 ], [ -122.755930352999926, 49.293929298000094 ], [ -122.755933658999965, 49.293641470000054 ], [ -122.755941038999964, 49.292994040000046 ], [ -122.75763541399999, 49.293008104000137 ], [ -122.757767815999955, 49.29300918900006 ], [ -122.759878024999978, 49.293026695000101 ], [ -122.761153771999929, 49.293015246000031 ], [ -122.762475080999934, 49.29300337500009 ], [ -122.763067759999942, 49.292998030000071 ], [ -122.763113936999972, 49.292997617000061 ], [ -122.769623182999965, 49.294651121000065 ], [ -122.770965530999931, 49.294803868000038 ], [ -122.770967875999972, 49.294730984000083 ], [ -122.770975463999932, 49.294482243000118 ], [ -122.770976487999974, 49.294449256000085 ], [ -122.7710252099999, 49.293058790000067 ], [ -122.771204203999957, 49.29301639200002 ], [ -122.771725780999986, 49.293028400000104 ], [ -122.771623794999954, 49.292677607000037 ], [ -122.77132180299999, 49.292256 ], [ -122.771043815999974, 49.291508990000047 ], [ -122.771968908999924, 49.291282194000111 ], [ -122.772026741, 49.291266143000016 ], [ -122.772061831999949, 49.291255771000117 ], [ -122.772058524999949, 49.291973047000049 ], [ -122.772166509999977, 49.29197627500011 ], [ -122.77248912, 49.292541699000012 ], [ -122.773434088999977, 49.293649693000091 ], [ -122.773789215999955, 49.293965897000106 ], [ -122.774544716999955, 49.29437180200005 ], [ -122.774680587999939, 49.294678002000069 ], [ -122.774686417999973, 49.295039137000082 ], [ -122.774691483999987, 49.29535299500008 ], [ -122.774551678999927, 49.295622200000054 ], [ -122.77450820199999, 49.296126391 ], [ -122.773818915000021, 49.296394098000071 ], [ -122.771730302999941, 49.296137794000082 ], [ -122.770906206999925, 49.296127791000025 ], [ -122.770243513999986, 49.296243207000067 ], [ -122.769789005999925, 49.296493807000026 ], [ -122.768455601, 49.299154302000019 ], [ -122.768520076999934, 49.300350593000061 ], [ -122.769024300999916, 49.301413100000104 ], [ -122.769186010999974, 49.302042602000022 ], [ -122.76890469199999, 49.303365592000077 ], [ -122.76908080799997, 49.3037616 ], [ -122.770002098999981, 49.304005088000103 ], [ -122.77163848899994, 49.30427001000006 ], [ -122.772173183999911, 49.304559092000119 ], [ -122.772650790999975, 49.305360999000058 ], [ -122.77248289799999, 49.30589929000007 ], [ -122.772023817, 49.307193900000108 ], [ -122.771885992999927, 49.307399377000138 ], [ -122.771746792999949, 49.30760689800011 ], [ -122.77138116299993, 49.308090080000071 ], [ -122.771376464999918, 49.308096269000039 ], [ -122.77119110599989, 49.308433195000106 ], [ -122.771395857999977, 49.309088997000089 ], [ -122.771406368999976, 49.30913208200009 ], [ -122.771443533999971, 49.309195777000092 ], [ -122.77170022199999, 49.309635684000057 ], [ -122.771818688999957, 49.309838701000096 ], [ -122.771542301999915, 49.310072300000108 ], [ -122.771651686999945, 49.310341400000041 ], [ -122.771951906999902, 49.310620611000068 ], [ -122.771930981999915, 49.311056146000041 ], [ -122.77184386499999, 49.311379166000044 ], [ -122.771835649999929, 49.311443957000051 ], [ -122.771737996999946, 49.311947261000036 ], [ -122.771667932999932, 49.312006962000069 ], [ -122.771553361000016, 49.312006736000036 ] ], [ [ -122.767293729999949, 49.303851987000058 ], [ -122.76744349499999, 49.301705027 ], [ -122.76613040099997, 49.301665713000013 ], [ -122.766161550999982, 49.30121932600013 ], [ -122.766161230999984, 49.301219316000093 ], [ -122.766412141999965, 49.297623296000033 ], [ -122.766559582999946, 49.297627712000086 ], [ -122.766575147999959, 49.297404599000167 ], [ -122.766650184999946, 49.29740684700009 ], [ -122.766677465999976, 49.297015800000032 ], [ -122.76706412099999, 49.29702737800006 ], [ -122.767073986999932, 49.296885942000138 ], [ -122.766456546999919, 49.296884696000028 ], [ -122.766239542999983, 49.299994896000115 ], [ -122.76593739799992, 49.299985847000144 ], [ -122.765878473999962, 49.300830201000053 ], [ -122.763885639999955, 49.300770499000052 ], [ -122.763703330999974, 49.303381146000063 ], [ -122.763210725999912, 49.303366383000089 ], [ -122.763209460999946, 49.303384491000067 ], [ -122.764856037999962, 49.303433830000102 ], [ -122.764849323999982, 49.30352999800008 ], [ -122.766525084999969, 49.303580186000019 ], [ -122.766507761999918, 49.303828457000122 ], [ -122.767293729999949, 49.303851987000058 ] ], [ [ -122.767593562999949, 49.296361339000065 ], [ -122.767663819999939, 49.295353920000132 ], [ -122.76874195299996, 49.295386190000094 ], [ -122.768742496999948, 49.295270163000112 ], [ -122.7670921, 49.295266849000051 ], [ -122.767085229999978, 49.296724753000092 ], [ -122.767111585999928, 49.296346909000064 ], [ -122.767593562999949, 49.296361339000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59435833", "BldgCostT": "39463333", "sL_LossRatio": "0.703529758904312", "sL_AssetLoss": "813370", "sL_BldgLoss": "572230", "sL_StrLoss": "288900", "sL_NStrLoss": "283330", "sL_ContLoss": "241140", "geom_point": "0101000020E6100000EBD1966B38B25EC035E7A6EE46A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78344201299997, 49.301325592000076 ], [ -122.783448500999924, 49.300834917000103 ], [ -122.783273417999936, 49.300444997000071 ], [ -122.783202512999964, 49.300119499000111 ], [ -122.783217241999949, 49.300010824000033 ], [ -122.783258908999954, 49.299703096000073 ], [ -122.783287813999962, 49.299585101000105 ], [ -122.783225507999973, 49.299332788000051 ], [ -122.783029694999968, 49.299083696000046 ], [ -122.782929919999944, 49.298797004000029 ], [ -122.783012920999965, 49.298493088000093 ], [ -122.783283022999939, 49.298107506000036 ], [ -122.783360697999953, 49.297899910000112 ], [ -122.783456998999952, 49.297465357000071 ], [ -122.783514780999937, 49.297204508000043 ], [ -122.78395276899991, 49.297212454000089 ], [ -122.784672609999973, 49.297225511000114 ], [ -122.78520170899999, 49.297307908000043 ], [ -122.785589891999948, 49.297421285000034 ], [ -122.786085509, 49.297650399000112 ], [ -122.786330995999947, 49.297799212000022 ], [ -122.786569806999935, 49.298004495000079 ], [ -122.787346198999984, 49.298666302000107 ], [ -122.78645288199999, 49.299115394000069 ], [ -122.78571781, 49.299681798000044 ], [ -122.785424644, 49.300005082000098 ], [ -122.785391706999945, 49.300041393000107 ], [ -122.785174716999975, 49.300333990000048 ], [ -122.784924211999979, 49.30083379300001 ], [ -122.784788393999932, 49.301382891000124 ], [ -122.784177391999933, 49.301329499000062 ], [ -122.78344201299997, 49.301325592000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "708923066", "BldgCostT": "475021425", "sL_LossRatio": "0.742681525375384", "sL_AssetLoss": "6065130", "sL_BldgLoss": "4504460", "sL_StrLoss": "2018450", "sL_NStrLoss": "2486010", "sL_ContLoss": "1560670", "geom_point": "0101000020E6100000A803311A43B25EC089944EA0DFA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78520170899999, 49.297307908000043 ], [ -122.784672609999973, 49.297225511000114 ], [ -122.78395276899991, 49.297212454000089 ], [ -122.783514780999937, 49.297204508000043 ], [ -122.782988099999926, 49.297205914000095 ], [ -122.782541400999946, 49.29726200200006 ], [ -122.78211411199996, 49.297415895000078 ], [ -122.781834003999961, 49.297588685000022 ], [ -122.78079989099993, 49.298638888 ], [ -122.780590907999951, 49.298855192000097 ], [ -122.780298717, 49.299023886000022 ], [ -122.779903693999955, 49.299148202000019 ], [ -122.779539519999986, 49.299204001000113 ], [ -122.779159401999948, 49.299192704000049 ], [ -122.778850814999913, 49.299121292000081 ], [ -122.7782508129999, 49.298966402000119 ], [ -122.778057865999955, 49.298916562000038 ], [ -122.778231692999967, 49.298596207000038 ], [ -122.778765513999971, 49.297612493 ], [ -122.778907921999973, 49.297350053000095 ], [ -122.779242932999964, 49.296690695000066 ], [ -122.77938700199995, 49.29640708500007 ], [ -122.780381329999983, 49.294449935000095 ], [ -122.780423234999958, 49.294361081000034 ], [ -122.780705602999973, 49.293770625000079 ], [ -122.780839635999953, 49.293490361000124 ], [ -122.780997500999931, 49.293160209000035 ], [ -122.781460965999941, 49.292960533000098 ], [ -122.781823962999979, 49.29288126200008 ], [ -122.781857687999917, 49.292881448000074 ], [ -122.783992037999894, 49.292893899000056 ], [ -122.78539455899994, 49.292902052000017 ], [ -122.785911029999966, 49.292929131000079 ], [ -122.78593367099991, 49.292879039000049 ], [ -122.785951640999954, 49.292839348000093 ], [ -122.786201125999952, 49.292877537000074 ], [ -122.786762483999937, 49.292963477000072 ], [ -122.787509366999942, 49.293137953000063 ], [ -122.788169169999975, 49.293410128000126 ], [ -122.789495740999939, 49.293957330000076 ], [ -122.789634759999927, 49.29401467000006 ], [ -122.789955520999968, 49.294148534000101 ], [ -122.789860392999969, 49.29423127500008 ], [ -122.789994049999947, 49.294286600000056 ], [ -122.791676255999931, 49.294952812000083 ], [ -122.791829713999974, 49.294980782000053 ], [ -122.792233411999945, 49.295147735000121 ], [ -122.793027614999914, 49.29546877100006 ], [ -122.791903816999962, 49.296285331000057 ], [ -122.790689097000026, 49.297326072000061 ], [ -122.789144713999946, 49.299459105000018 ], [ -122.788986005999931, 49.299777395000078 ], [ -122.788943074, 49.299868217000089 ], [ -122.788667120999918, 49.299745204000075 ], [ -122.788381086999934, 49.299547510000139 ], [ -122.787742305, 49.299002384000026 ], [ -122.787346198999984, 49.298666302000107 ], [ -122.786569806999935, 49.298004495000079 ], [ -122.786330995999947, 49.297799212000022 ], [ -122.786085509, 49.297650399000112 ], [ -122.785589891999948, 49.297421285000034 ], [ -122.78520170899999, 49.297307908000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203361249", "BldgCostT": "132384999", "sL_LossRatio": "0.705617056170562", "sL_AssetLoss": "2731680", "sL_BldgLoss": "1927520", "sL_StrLoss": "916380", "sL_NStrLoss": "1011140", "sL_ContLoss": "804160", "geom_point": "0101000020E6100000C4AB62E0AFB25EC09B15820377A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.791903816999962, 49.296285331000057 ], [ -122.793027614999914, 49.29546877100006 ], [ -122.793384181999954, 49.295612886000079 ], [ -122.794781069999956, 49.296177508000071 ], [ -122.79554460099996, 49.297551782 ], [ -122.795000978999923, 49.298931124000035 ], [ -122.795515683999909, 49.299187188000047 ], [ -122.796071343999941, 49.299440527000044 ], [ -122.797377567999916, 49.300113933000041 ], [ -122.797901673999959, 49.300457136000034 ], [ -122.798585501999952, 49.300769473000031 ], [ -122.798429804999955, 49.30079089 ], [ -122.796845307999945, 49.300865115000093 ], [ -122.796581097999976, 49.300877495000087 ], [ -122.794851226999967, 49.300958533000056 ], [ -122.79441035, 49.300979200000036 ], [ -122.793566584999951, 49.301018713000104 ], [ -122.792917971999927, 49.301111988000031 ], [ -122.79208500699994, 49.301264700000011 ], [ -122.791491283999932, 49.301418296000115 ], [ -122.79077690099993, 49.30164750700002 ], [ -122.790323510999926, 49.301839399000073 ], [ -122.79005989499997, 49.302011697000076 ], [ -122.789849981999936, 49.302222596000043 ], [ -122.789720891999949, 49.302438610000124 ], [ -122.789662288999963, 49.302689988000125 ], [ -122.789686022999916, 49.302942904000069 ], [ -122.789811989999947, 49.303208811000061 ], [ -122.790007123999928, 49.303429899000086 ], [ -122.790131, 49.303527307000117 ], [ -122.790428689999928, 49.30369561500008 ], [ -122.791100116999985, 49.303990301000049 ], [ -122.792062389999955, 49.304433287000094 ], [ -122.792268680999925, 49.304591698000131 ], [ -122.792427698999944, 49.304817998000019 ], [ -122.792500409999974, 49.305058882000054 ], [ -122.79250108399999, 49.305247193000078 ], [ -122.79243250699993, 49.305444280000096 ], [ -122.792323587999959, 49.305625693000145 ], [ -122.792096305999934, 49.305830585000074 ], [ -122.791751204999983, 49.305987086000101 ], [ -122.791302693999938, 49.306108892000054 ], [ -122.789260782, 49.306321092000076 ], [ -122.788845588999934, 49.306382670000062 ], [ -122.788573220999979, 49.306214270000105 ], [ -122.788497456999934, 49.305968363000126 ], [ -122.788652326999909, 49.304077103000047 ], [ -122.78819429399999, 49.303875791000095 ], [ -122.788151609999915, 49.303851268000088 ], [ -122.7883970399999, 49.303629966000038 ], [ -122.788397033999942, 49.303629794000045 ], [ -122.788404384999936, 49.303124511000128 ], [ -122.788347481999935, 49.301464005000042 ], [ -122.788894009, 49.299965433000075 ], [ -122.788943074, 49.299868217000089 ], [ -122.788986005999931, 49.299777395000078 ], [ -122.789144713999946, 49.299459105000018 ], [ -122.790689097000026, 49.297326072000061 ], [ -122.791903816999962, 49.296285331000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94413250", "BldgCostT": "62695000", "sL_LossRatio": "0.720919622312148", "sL_AssetLoss": "1512360", "sL_BldgLoss": "1090290", "sL_StrLoss": "487310", "sL_NStrLoss": "602980", "sL_ContLoss": "422070", "geom_point": "0101000020E61000002DB5A4C4EAB25EC01F710A23A4A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.794781069999956, 49.296177508000071 ], [ -122.793384181999954, 49.295612886000079 ], [ -122.793027614999914, 49.29546877100006 ], [ -122.792233411999945, 49.295147735000121 ], [ -122.791829713999974, 49.294980782000053 ], [ -122.791676255999931, 49.294952812000083 ], [ -122.789994049999947, 49.294286600000056 ], [ -122.790091906999976, 49.294203934000031 ], [ -122.790423846999914, 49.29373904200002 ], [ -122.790556207999956, 49.293356487000118 ], [ -122.790516228999962, 49.292940911000059 ], [ -122.79039365599999, 49.292679349000082 ], [ -122.790193882000025, 49.292254750000012 ], [ -122.790038652999954, 49.292292495000062 ], [ -122.790034517, 49.292283743000084 ], [ -122.78984230399999, 49.29187218400007 ], [ -122.789731337999967, 49.29152138000007 ], [ -122.789728414, 49.291512093000051 ], [ -122.789721900999979, 49.290970486000049 ], [ -122.789887002999976, 49.290968192000037 ], [ -122.791123815999981, 49.290977 ], [ -122.791490331999924, 49.291000402000066 ], [ -122.791600100999958, 49.291007400000062 ], [ -122.792086009999963, 49.291078603000116 ], [ -122.79248062299996, 49.29117860000013 ], [ -122.792836473999955, 49.291287314000016 ], [ -122.792979093999932, 49.291330894000041 ], [ -122.793014877999966, 49.291341825000138 ], [ -122.793209819999959, 49.291401383000036 ], [ -122.793921226999899, 49.291618705000076 ], [ -122.793863179999903, 49.291772035000115 ], [ -122.793758938999957, 49.29204740100004 ], [ -122.793610000999934, 49.29244099600006 ], [ -122.793651895999972, 49.292789883000125 ], [ -122.79365791, 49.292797986000032 ], [ -122.79388081099999, 49.293097593000041 ], [ -122.794629788999956, 49.293600001000065 ], [ -122.7949534099999, 49.293711394000049 ], [ -122.795267587999945, 49.293781104000089 ], [ -122.795936086, 49.293856814000023 ], [ -122.79645810599996, 49.293864207000041 ], [ -122.796898302, 49.293761004000082 ], [ -122.797989816999973, 49.293186197000075 ], [ -122.798451996999987, 49.293103484000071 ], [ -122.799125792999959, 49.293102804000107 ], [ -122.799291578999913, 49.293105351000115 ], [ -122.800006378999981, 49.29311637800005 ], [ -122.800519894999951, 49.293124301000049 ], [ -122.800556780999969, 49.293123823000059 ], [ -122.800689086999967, 49.293122090000033 ], [ -122.800689838999972, 49.293131109000086 ], [ -122.800722395999927, 49.293536600000046 ], [ -122.80082880099998, 49.293846908000134 ], [ -122.801631291999911, 49.294811199000044 ], [ -122.80193768299992, 49.295451802000038 ], [ -122.80192574599999, 49.295456569000081 ], [ -122.801782134999939, 49.295513880000115 ], [ -122.80106492099999, 49.295798396000059 ], [ -122.800134674999981, 49.296167385000075 ], [ -122.799985320999966, 49.296226619000052 ], [ -122.799552701999971, 49.296398225000118 ], [ -122.799018834999956, 49.296542752000107 ], [ -122.798292574999948, 49.296666254000037 ], [ -122.79758793799999, 49.296714752000106 ], [ -122.797476634999938, 49.296711107000064 ], [ -122.796947239999938, 49.296693922000031 ], [ -122.79672022699998, 49.296669186 ], [ -122.796322181, 49.29662584700008 ], [ -122.795705913999953, 49.296490438000028 ], [ -122.795180142999953, 49.296338811000069 ], [ -122.794781069999956, 49.296177508000071 ] ], [ [ -122.79762117300001, 49.296133910000073 ], [ -122.797623381999969, 49.295594205000093 ], [ -122.797210778999926, 49.295593482000058 ], [ -122.7972118859999, 49.295323629000052 ], [ -122.796799284999949, 49.295322904000066 ], [ -122.796800394999963, 49.295053051000068 ], [ -122.796387796999937, 49.295052325000036 ], [ -122.796388908999973, 49.294782472000094 ], [ -122.794738524999943, 49.294779552000072 ], [ -122.794740765999919, 49.294239847000043 ], [ -122.79432817299994, 49.294239112000092 ], [ -122.794329297, 49.293969260000061 ], [ -122.793916709, 49.293968525000039 ], [ -122.793917831999963, 49.293698672000104 ], [ -122.793505245999967, 49.293697936000122 ], [ -122.793505947999989, 49.293530122000142 ], [ -122.79144326299999, 49.293468846000103 ], [ -122.791442312999962, 49.293694231000039 ], [ -122.792680072999971, 49.293696458000042 ], [ -122.79267781, 49.294236163000043 ], [ -122.7930904, 49.29423690300009 ], [ -122.793088141999974, 49.294776609000095 ], [ -122.793500737999949, 49.294777347000043 ], [ -122.793499608999923, 49.295047200000106 ], [ -122.793912207999981, 49.29504793600011 ], [ -122.793911082999927, 49.295317789000087 ], [ -122.794323683999949, 49.295318525000063 ], [ -122.794322560999888, 49.295588378000069 ], [ -122.795147764999982, 49.295589843000066 ], [ -122.795146647, 49.295859696000029 ], [ -122.795971856999941, 49.295861156000107 ], [ -122.795970744, 49.296131008 ], [ -122.79762117300001, 49.296133910000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "377386000", "BldgCostT": "261160000", "sL_LossRatio": "0.845165184762215", "sL_AssetLoss": "3064750", "sL_BldgLoss": "2590220", "sL_StrLoss": "1249710", "sL_NStrLoss": "1340510", "sL_ContLoss": "474530", "geom_point": "0101000020E61000007E1F8AD97DB25EC089684B88FFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.786201125999952, 49.292877537000074 ], [ -122.785951640999954, 49.292839348000093 ], [ -122.78593367099991, 49.292879039000049 ], [ -122.785911029999966, 49.292929131000079 ], [ -122.78539455899994, 49.292902052000017 ], [ -122.783992037999894, 49.292893899000056 ], [ -122.781857687999917, 49.292881448000074 ], [ -122.781823962999979, 49.29288126200008 ], [ -122.781460965999941, 49.292960533000098 ], [ -122.780997500999931, 49.293160209000035 ], [ -122.781157851999978, 49.292870413000045 ], [ -122.781190734999967, 49.292793022000041 ], [ -122.781425902999985, 49.292277511000052 ], [ -122.7816532399999, 49.291773229000071 ], [ -122.78183382899999, 49.291372566000106 ], [ -122.783193095999977, 49.288566311000082 ], [ -122.783567507999976, 49.287886487000051 ], [ -122.783765949999975, 49.287506375000078 ], [ -122.784688341999967, 49.285739703000068 ], [ -122.784773578999946, 49.285739534000115 ], [ -122.784864182999968, 49.285780966000125 ], [ -122.78522678899995, 49.285765644000101 ], [ -122.785504111999927, 49.285711733000021 ], [ -122.786177930999955, 49.285470535000051 ], [ -122.787981940999956, 49.285028739000026 ], [ -122.789142720999905, 49.284743527000018 ], [ -122.78949632699999, 49.28469900900005 ], [ -122.790070889, 49.284733640000077 ], [ -122.790382003999952, 49.284752386000015 ], [ -122.791305166999948, 49.284821274000144 ], [ -122.792330704999969, 49.284900400000048 ], [ -122.792460654999942, 49.284909664000082 ], [ -122.793155739999946, 49.284956454000024 ], [ -122.794595045999927, 49.285055950000093 ], [ -122.794583684999949, 49.285975401000044 ], [ -122.795655502999949, 49.285982009000072 ], [ -122.795820594999952, 49.286040092000114 ], [ -122.796171395999963, 49.286235207000054 ], [ -122.79632682, 49.286254190000122 ], [ -122.796459601, 49.286222094 ], [ -122.796977016999932, 49.28595639900005 ], [ -122.797605451999942, 49.286086021000088 ], [ -122.798268356999984, 49.286209801000084 ], [ -122.798081494999948, 49.28644599900008 ], [ -122.798015083999985, 49.286500354000061 ], [ -122.797882487999971, 49.286608839000088 ], [ -122.796595049999937, 49.287662229000034 ], [ -122.796480096999971, 49.287756290000054 ], [ -122.796429529999941, 49.287783200000064 ], [ -122.795884748999924, 49.288073069000099 ], [ -122.795750059999975, 49.288144745000132 ], [ -122.795229462999913, 49.288421734000039 ], [ -122.795048002999962, 49.288518307000047 ], [ -122.795030579999931, 49.288532186000033 ], [ -122.794439509999975, 49.289002493000076 ], [ -122.794110955999912, 49.289744352000106 ], [ -122.793988649999946, 49.290020581000107 ], [ -122.793842208999948, 49.290351205000093 ], [ -122.793638612999956, 49.290582318000084 ], [ -122.794196792999941, 49.29111340400005 ], [ -122.794052600999919, 49.291270308000101 ], [ -122.793921226999899, 49.291618705000076 ], [ -122.793209819999959, 49.291401383000036 ], [ -122.793014877999966, 49.291341825000138 ], [ -122.792979093999932, 49.291330894000041 ], [ -122.792836473999955, 49.291287314000016 ], [ -122.79248062299996, 49.29117860000013 ], [ -122.792086009999963, 49.291078603000116 ], [ -122.791600100999958, 49.291007400000062 ], [ -122.791490331999924, 49.291000402000066 ], [ -122.791123815999981, 49.290977 ], [ -122.789887002999976, 49.290968192000037 ], [ -122.789721900999979, 49.290970486000049 ], [ -122.789728414, 49.291512093000051 ], [ -122.789731337999967, 49.29152138000007 ], [ -122.78984230399999, 49.29187218400007 ], [ -122.790034517, 49.292283743000084 ], [ -122.790038652999954, 49.292292495000062 ], [ -122.790193882000025, 49.292254750000012 ], [ -122.79039365599999, 49.292679349000082 ], [ -122.790516228999962, 49.292940911000059 ], [ -122.790556207999956, 49.293356487000118 ], [ -122.790423846999914, 49.29373904200002 ], [ -122.790091906999976, 49.294203934000031 ], [ -122.789994049999947, 49.294286600000056 ], [ -122.789860392999969, 49.29423127500008 ], [ -122.789955520999968, 49.294148534000101 ], [ -122.789634759999927, 49.29401467000006 ], [ -122.789495740999939, 49.293957330000076 ], [ -122.788169169999975, 49.293410128000126 ], [ -122.787509366999942, 49.293137953000063 ], [ -122.786762483999937, 49.292963477000072 ], [ -122.786201125999952, 49.292877537000074 ] ], [ [ -122.789898691999923, 49.286278016000075 ], [ -122.789765696999936, 49.285432010000079 ], [ -122.789614901999954, 49.28533369200008 ], [ -122.789366989999934, 49.285350805000107 ], [ -122.788856790999901, 49.285755294000055 ], [ -122.788663891999974, 49.285790910000031 ], [ -122.788294992999951, 49.285385006000091 ], [ -122.788170779999959, 49.285357900000079 ], [ -122.787329912999922, 49.285923398000115 ], [ -122.787300481, 49.286444596000152 ], [ -122.78742301799997, 49.286732306000069 ], [ -122.788168287999923, 49.287464494000098 ], [ -122.788168212999963, 49.287481608000093 ], [ -122.78818574, 49.287481640000046 ], [ -122.788340612999932, 49.287633790000065 ], [ -122.788579446999918, 49.287786848000152 ], [ -122.788578440999956, 49.288022069000064 ], [ -122.788947547999911, 49.288022744000024 ], [ -122.789340700999901, 49.288274692000144 ], [ -122.789645094999955, 49.287878808000059 ], [ -122.789687407999907, 49.287754238000041 ], [ -122.789817206999928, 49.287754475000035 ], [ -122.789818853, 49.287367244000102 ], [ -122.789868116999969, 49.28722219900007 ], [ -122.789898691999923, 49.286278016000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88442667", "BldgCostT": "58046667", "sL_LossRatio": "0.767304574279615", "sL_AssetLoss": "798705", "sL_BldgLoss": "612850", "sL_StrLoss": "303820", "sL_NStrLoss": "309030", "sL_ContLoss": "185855", "geom_point": "0101000020E6100000624DC00A8BB35EC0D12B54ED89A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801631291999911, 49.294811199000044 ], [ -122.80082880099998, 49.293846908000134 ], [ -122.800722395999927, 49.293536600000046 ], [ -122.800689838999972, 49.293131109000086 ], [ -122.800689086999967, 49.293122090000033 ], [ -122.802214583999941, 49.293131291000108 ], [ -122.802211784999884, 49.293412307000025 ], [ -122.802354598999955, 49.293693907000034 ], [ -122.80249817899994, 49.293804499000068 ], [ -122.802685494999977, 49.29387939700009 ], [ -122.80292748699999, 49.293919909000124 ], [ -122.803126596999945, 49.293903304000054 ], [ -122.804027202000015, 49.29360380500006 ], [ -122.804760583999951, 49.293296698000091 ], [ -122.805132805999946, 49.293183413000051 ], [ -122.805351817999977, 49.293156601000092 ], [ -122.805357502999925, 49.292988890000046 ], [ -122.805378488999921, 49.292370903000133 ], [ -122.805367818999954, 49.291967896000052 ], [ -122.805356916000036, 49.291566688000096 ], [ -122.807459723999969, 49.291597398000057 ], [ -122.807740597999967, 49.290613813000057 ], [ -122.80780641299998, 49.289996805000072 ], [ -122.808785312999987, 49.290015545000067 ], [ -122.808782449999953, 49.290755820000129 ], [ -122.80836988799993, 49.290755137000119 ], [ -122.808365703, 49.291834550000061 ], [ -122.807953132999955, 49.291833864000033 ], [ -122.807945793, 49.293722837000075 ], [ -122.80904498299999, 49.293724659000084 ], [ -122.809381602000016, 49.294092600000049 ], [ -122.809386130999954, 49.294127138000086 ], [ -122.808851706999931, 49.294124889000045 ], [ -122.808787686999949, 49.294129665000106 ], [ -122.807180817999949, 49.294249391000101 ], [ -122.806076413999946, 49.294393290000095 ], [ -122.805125338999986, 49.294561944000058 ], [ -122.805092313999978, 49.294567808000075 ], [ -122.803571890999976, 49.294922695000011 ], [ -122.802716182999973, 49.295168602000054 ], [ -122.802428651999918, 49.295273210000055 ], [ -122.80193768299992, 49.295451802000038 ], [ -122.801631291999911, 49.294811199000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "755101666", "BldgCostT": "520981666", "sL_LossRatio": "0.833818607230049", "sL_AssetLoss": "3444790", "sL_BldgLoss": "2872330", "sL_StrLoss": "1388550", "sL_NStrLoss": "1483780", "sL_ContLoss": "572460", "geom_point": "0101000020E6100000E605021160B35EC0E9C8FDB30BA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.796071343999941, 49.299440527000044 ], [ -122.795515683999909, 49.299187188000047 ], [ -122.795000978999923, 49.298931124000035 ], [ -122.79554460099996, 49.297551782 ], [ -122.794781069999956, 49.296177508000071 ], [ -122.795180142999953, 49.296338811000069 ], [ -122.795705913999953, 49.296490438000028 ], [ -122.796322181, 49.29662584700008 ], [ -122.79672022699998, 49.296669186 ], [ -122.796947239999938, 49.296693922000031 ], [ -122.797476634999938, 49.296711107000064 ], [ -122.79758793799999, 49.296714752000106 ], [ -122.798292574999948, 49.296666254000037 ], [ -122.799018834999956, 49.296542752000107 ], [ -122.799552701999971, 49.296398225000118 ], [ -122.799985320999966, 49.296226619000052 ], [ -122.800134674999981, 49.296167385000075 ], [ -122.80106492099999, 49.295798396000059 ], [ -122.801782134999939, 49.295513880000115 ], [ -122.80192574599999, 49.295456569000081 ], [ -122.80193768299992, 49.295451802000038 ], [ -122.802428651999918, 49.295273210000055 ], [ -122.802716182999973, 49.295168602000054 ], [ -122.803571890999976, 49.294922695000011 ], [ -122.805092313999978, 49.294567808000075 ], [ -122.805125338999986, 49.294561944000058 ], [ -122.806076413999946, 49.294393290000095 ], [ -122.807180817999949, 49.294249391000101 ], [ -122.808787686999949, 49.294129665000106 ], [ -122.808851706999931, 49.294124889000045 ], [ -122.809386130999954, 49.294127138000086 ], [ -122.809461802999962, 49.294704998000078 ], [ -122.809703906999943, 49.29521900400011 ], [ -122.810076297999927, 49.296009590000025 ], [ -122.810842787999917, 49.296784405000039 ], [ -122.81083813399998, 49.296849065000089 ], [ -122.81079127799994, 49.297499839000039 ], [ -122.810771742999933, 49.297500050000046 ], [ -122.809406201999934, 49.297515030000078 ], [ -122.808807423999951, 49.297564904000126 ], [ -122.807830028999902, 49.297699956 ], [ -122.806885458999929, 49.297917968000021 ], [ -122.805435965999934, 49.298359752000103 ], [ -122.803959643, 49.298807932000102 ], [ -122.80348374099998, 49.298952393000022 ], [ -122.80245288699993, 49.299244403000017 ], [ -122.80160729399995, 49.299482408000088 ], [ -122.801399899999964, 49.299498810000031 ], [ -122.80067130899999, 49.299456507000031 ], [ -122.800502400999946, 49.299750589000027 ], [ -122.800371709999965, 49.299851196000063 ], [ -122.800301706999946, 49.299969806 ], [ -122.800266433999923, 49.300004811000079 ], [ -122.800065492, 49.300204301000115 ], [ -122.80000438699993, 49.300247248000048 ], [ -122.799792313999944, 49.300396210000024 ], [ -122.799463289999977, 49.300561195000029 ], [ -122.798968493999951, 49.300716809000043 ], [ -122.798585501999952, 49.300769473000031 ], [ -122.797901673999959, 49.300457136000034 ], [ -122.797377567999916, 49.300113933000041 ], [ -122.796071343999941, 49.299440527000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3040000", "BldgCostT": "1600000", "sL_LossRatio": "0.546254399195576", "sL_AssetLoss": "79560", "sL_BldgLoss": "43460", "sL_StrLoss": "5660", "sL_NStrLoss": "37800", "sL_ContLoss": "36100", "geom_point": "0101000020E6100000ABAD9EB46CB35EC0307FA6DAFEA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802977129999974, 49.304508660000039 ], [ -122.803777071999946, 49.304510021000155 ], [ -122.803775368999979, 49.304938902000117 ], [ -122.802977129999974, 49.304508660000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187763333", "BldgCostT": "116873333", "sL_LossRatio": "0.700199148103877", "sL_AssetLoss": "1826279", "sL_BldgLoss": "1278759", "sL_StrLoss": "621379", "sL_NStrLoss": "657380", "sL_ContLoss": "547520", "geom_point": "0101000020E6100000432B94D877B35EC0D41F487B8FA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804187173999935, 49.305160855000096 ], [ -122.80418761, 49.305050425000026 ], [ -122.804600291999975, 49.305051124000038 ], [ -122.804604560999962, 49.303971713000081 ], [ -122.80254119599999, 49.303968207000018 ], [ -122.802542274999908, 49.303698354000105 ], [ -122.802129604999934, 49.303697648000082 ], [ -122.802133926999943, 49.302618238000086 ], [ -122.80254658799997, 49.30261894300002 ], [ -122.802548744999967, 49.30207923800004 ], [ -122.802136086999923, 49.302078533000021 ], [ -122.80213500799999, 49.302348385000094 ], [ -122.801722346999952, 49.302347678000032 ], [ -122.801721266, 49.302617530000127 ], [ -122.801308602999967, 49.302616821000044 ], [ -122.80130751899999, 49.302886674000057 ], [ -122.800069526999934, 49.302884539000082 ], [ -122.800071710999973, 49.302344834000081 ], [ -122.79965905200001, 49.302344119000097 ], [ -122.799657956999908, 49.302613971000092 ], [ -122.799461552999958, 49.302613631000092 ], [ -122.79939849, 49.302579635 ], [ -122.798500933999918, 49.301235652000031 ], [ -122.798585501999952, 49.300769473000031 ], [ -122.798968493999951, 49.300716809000043 ], [ -122.799463289999977, 49.300561195000029 ], [ -122.799792313999944, 49.300396210000024 ], [ -122.80000438699993, 49.300247248000048 ], [ -122.800065492, 49.300204301000115 ], [ -122.800266433999923, 49.300004811000079 ], [ -122.800301706999946, 49.299969806 ], [ -122.800371709999965, 49.299851196000063 ], [ -122.800502400999946, 49.299750589000027 ], [ -122.80067130899999, 49.299456507000031 ], [ -122.801399899999964, 49.299498810000031 ], [ -122.80160729399995, 49.299482408000088 ], [ -122.80245288699993, 49.299244403000017 ], [ -122.80348374099998, 49.298952393000022 ], [ -122.803959643, 49.298807932000102 ], [ -122.805435965999934, 49.298359752000103 ], [ -122.806885458999929, 49.297917968000021 ], [ -122.807830028999902, 49.297699956 ], [ -122.808807423999951, 49.297564904000126 ], [ -122.809406201999934, 49.297515030000078 ], [ -122.809301599999969, 49.297935321000054 ], [ -122.809088094999964, 49.298301103000057 ], [ -122.808785306999965, 49.298684006000023 ], [ -122.808032317999974, 49.299733801000059 ], [ -122.807833849999938, 49.300000519000108 ], [ -122.80696848599996, 49.301163496000129 ], [ -122.80654958299999, 49.301754701000107 ], [ -122.806380292999933, 49.302275791000071 ], [ -122.80635959199995, 49.302756205000051 ], [ -122.806484690999966, 49.303135605000058 ], [ -122.806957776, 49.303973864000042 ], [ -122.80701892899998, 49.30426394800007 ], [ -122.807012799999924, 49.304472758000067 ], [ -122.80694571399998, 49.304687897000051 ], [ -122.806783366999952, 49.304947935000015 ], [ -122.806534420999952, 49.30520812200006 ], [ -122.806501640999954, 49.305228883000026 ], [ -122.806218026, 49.305408681000088 ], [ -122.806111833999964, 49.305450463000092 ], [ -122.805885839999945, 49.305539372000091 ], [ -122.805411314999958, 49.30566879800007 ], [ -122.805224256999949, 49.305719802000098 ], [ -122.804187173999935, 49.305160855000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216610395", "BldgCostT": "144511524", "sL_LossRatio": "0.731222138110859", "sL_AssetLoss": "2377800", "sL_BldgLoss": "1738700", "sL_StrLoss": "848960", "sL_NStrLoss": "889740", "sL_ContLoss": "639100", "geom_point": "0101000020E6100000E4FC1C38CAB35EC00F79BAA9B7A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807824704, 49.30689356300006 ], [ -122.805224256999949, 49.305719802000098 ], [ -122.805411314999958, 49.30566879800007 ], [ -122.805885839999945, 49.305539372000091 ], [ -122.806111833999964, 49.305450463000092 ], [ -122.806218026, 49.305408681000088 ], [ -122.806501640999954, 49.305228883000026 ], [ -122.806534420999952, 49.30520812200006 ], [ -122.806783366999952, 49.304947935000015 ], [ -122.80694571399998, 49.304687897000051 ], [ -122.807012799999924, 49.304472758000067 ], [ -122.80701892899998, 49.30426394800007 ], [ -122.806957776, 49.303973864000042 ], [ -122.806484690999966, 49.303135605000058 ], [ -122.80635959199995, 49.302756205000051 ], [ -122.806380292999933, 49.302275791000071 ], [ -122.80654958299999, 49.301754701000107 ], [ -122.80696848599996, 49.301163496000129 ], [ -122.807833849999938, 49.300000519000108 ], [ -122.808032317999974, 49.299733801000059 ], [ -122.808785306999965, 49.298684006000023 ], [ -122.809088094999964, 49.298301103000057 ], [ -122.809301599999969, 49.297935321000054 ], [ -122.809406201999934, 49.297515030000078 ], [ -122.810771742999933, 49.297500050000046 ], [ -122.81079127799994, 49.297499839000039 ], [ -122.81077090499997, 49.297782709000117 ], [ -122.811014704999948, 49.298638684000096 ], [ -122.811451574, 49.299307427000016 ], [ -122.811767397999944, 49.299790893000129 ], [ -122.811808683, 49.300406072000065 ], [ -122.81180911099996, 49.300412266000116 ], [ -122.811853984, 49.301080672000104 ], [ -122.811881328999959, 49.301488275000047 ], [ -122.811923825999912, 49.302120903000038 ], [ -122.811919642, 49.302224651000088 ], [ -122.811878390999951, 49.303244597000074 ], [ -122.81203636, 49.303759953000032 ], [ -122.812082715, 49.303911109000033 ], [ -122.811919380999896, 49.30417363100004 ], [ -122.811680378999952, 49.304557701000071 ], [ -122.81031489599998, 49.305284104000087 ], [ -122.810110596999962, 49.305457874000126 ], [ -122.809998502999946, 49.305553202000119 ], [ -122.809845108999966, 49.305823801000066 ], [ -122.809860060999981, 49.305975806000063 ], [ -122.809861438999931, 49.305989558000057 ], [ -122.80988068100001, 49.306185323000086 ], [ -122.809938220999953, 49.306303282000052 ], [ -122.809979003999928, 49.306359096000044 ], [ -122.810003475999935, 49.30639023300008 ], [ -122.809918584999977, 49.306381939000083 ], [ -122.809900469999931, 49.306386168000131 ], [ -122.809547028999972, 49.306472564000117 ], [ -122.809547274999929, 49.30640865400008 ], [ -122.808721887999923, 49.306407291000028 ], [ -122.80872085499999, 49.306674516000058 ], [ -122.808710178999917, 49.306677125000135 ], [ -122.807895453999919, 49.306675775000052 ], [ -122.807894672999964, 49.306876461000073 ], [ -122.807824704, 49.30689356300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93740666", "BldgCostT": "57071666", "sL_LossRatio": "0.69866943106287", "sL_AssetLoss": "819950", "sL_BldgLoss": "572874", "sL_StrLoss": "285764", "sL_NStrLoss": "287110", "sL_ContLoss": "247076", "geom_point": "0101000020E61000002E9BB5EB10B45EC0C1256CE4DFA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81079127799994, 49.297499839000039 ], [ -122.81083813399998, 49.296849065000089 ], [ -122.810842787999917, 49.296784405000039 ], [ -122.810076297999927, 49.296009590000025 ], [ -122.809703906999943, 49.29521900400011 ], [ -122.809461802999962, 49.294704998000078 ], [ -122.809386130999954, 49.294127138000086 ], [ -122.810450282999952, 49.294131594000127 ], [ -122.8114146899999, 49.294203306000036 ], [ -122.811809613999941, 49.29425307200006 ], [ -122.81320720799998, 49.294429205000071 ], [ -122.814381707999985, 49.29465140100011 ], [ -122.814724696999974, 49.294716304000104 ], [ -122.815402262999925, 49.294881518000068 ], [ -122.815697109999988, 49.294953445000026 ], [ -122.815767474999959, 49.294970590000041 ], [ -122.815897102999926, 49.29500220700006 ], [ -122.81736700499999, 49.295492573000061 ], [ -122.819443086999982, 49.296185109000149 ], [ -122.819175788999956, 49.296352902000116 ], [ -122.818854338, 49.29643191800011 ], [ -122.818743690999938, 49.296459089000045 ], [ -122.818338707, 49.296449803000073 ], [ -122.817812186999987, 49.29638750700007 ], [ -122.817682140999963, 49.296412804000084 ], [ -122.817394076000014, 49.296468799000124 ], [ -122.816940692999978, 49.296624791000099 ], [ -122.816497699999914, 49.296868491000055 ], [ -122.81612791699996, 49.297147699000057 ], [ -122.815876788999972, 49.297539396000133 ], [ -122.815421012999977, 49.29750120000007 ], [ -122.815363460999933, 49.297496378000154 ], [ -122.815311004999941, 49.29749197600011 ], [ -122.81477463600001, 49.297447036000086 ], [ -122.814714715999912, 49.297441984000095 ], [ -122.813741794999927, 49.297453005000143 ], [ -122.811965707999903, 49.29748699600006 ], [ -122.81079127799994, 49.297499839000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90273250", "BldgCostT": "59815000", "sL_LossRatio": "0.735244778246807", "sL_AssetLoss": "912050", "sL_BldgLoss": "670580", "sL_StrLoss": "326740", "sL_NStrLoss": "343840", "sL_ContLoss": "241470", "geom_point": "0101000020E6100000351EF0E97FB45EC0194339D12EA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822744230999945, 49.30108290800009 ], [ -122.822202384999954, 49.301066943000102 ], [ -122.822122480999951, 49.301064590000117 ], [ -122.821833407000028, 49.301009289000021 ], [ -122.821628001999926, 49.300942293000034 ], [ -122.821596606999918, 49.300932030000091 ], [ -122.821396293999953, 49.300866705000018 ], [ -122.820941895999937, 49.300634394000063 ], [ -122.820201787999949, 49.299997286000043 ], [ -122.81940128199993, 49.299339500000038 ], [ -122.81864238799993, 49.298735204000067 ], [ -122.817978496999899, 49.298270703000128 ], [ -122.817392792999925, 49.297989406000013 ], [ -122.816668899999954, 49.297738402000043 ], [ -122.815876788999972, 49.297539396000133 ], [ -122.81612791699996, 49.297147699000057 ], [ -122.816497699999914, 49.296868491000055 ], [ -122.816940692999978, 49.296624791000099 ], [ -122.817394076000014, 49.296468799000124 ], [ -122.817682140999963, 49.296412804000084 ], [ -122.817812186999987, 49.29638750700007 ], [ -122.818338707, 49.296449803000073 ], [ -122.818743690999938, 49.296459089000045 ], [ -122.818854338, 49.29643191800011 ], [ -122.819175788999956, 49.296352902000116 ], [ -122.819443086999982, 49.296185109000149 ], [ -122.820632340999907, 49.296592772000103 ], [ -122.820999206999915, 49.2967185380001 ], [ -122.821208306999978, 49.296790184000038 ], [ -122.821849613000012, 49.296963093000059 ], [ -122.822456814999924, 49.297052096000101 ], [ -122.822750893999924, 49.297054500000129 ], [ -122.823161631999952, 49.299278168000079 ], [ -122.823100671999896, 49.299520732000126 ], [ -122.823017494999988, 49.299829878000047 ], [ -122.82290455699993, 49.300218548000053 ], [ -122.822853803999976, 49.300342466000089 ], [ -122.822844467999943, 49.300371128000087 ], [ -122.822796289999957, 49.300519674000093 ], [ -122.822744230999945, 49.30108290800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200472138", "BldgCostT": "132770599", "sL_LossRatio": "0.750578398562343", "sL_AssetLoss": "1858580", "sL_BldgLoss": "1395010", "sL_StrLoss": "579350", "sL_NStrLoss": "815660", "sL_ContLoss": "463570", "geom_point": "0101000020E6100000C50724FE34B45EC05141E2AAF4A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.813295694999965, 49.289742794000084 ], [ -122.812959414999938, 49.289674301000055 ], [ -122.812591701999949, 49.289684211000072 ], [ -122.81182871499999, 49.289823803000061 ], [ -122.811267766999933, 49.289812460000107 ], [ -122.811249287999942, 49.289812104000085 ], [ -122.811545506999977, 49.288943389000053 ], [ -122.811679702999953, 49.288491500000113 ], [ -122.812040294999932, 49.288205793000081 ], [ -122.81234200199998, 49.288117408000105 ], [ -122.813244895999958, 49.287941412000144 ], [ -122.813533290999956, 49.287826499000047 ], [ -122.813713308999965, 49.28766688900005 ], [ -122.813812192999976, 49.287528398000077 ], [ -122.813775912999986, 49.287256200000094 ], [ -122.813662920999903, 49.286999691000076 ], [ -122.813345011999971, 49.286825405000087 ], [ -122.812639912999941, 49.286582996000043 ], [ -122.812996754999958, 49.286031401000066 ], [ -122.814184079999976, 49.286408689000034 ], [ -122.814510562999928, 49.286512446000032 ], [ -122.814969546999961, 49.286658280000069 ], [ -122.815255144999966, 49.286749037000078 ], [ -122.815610962999983, 49.286862107000118 ], [ -122.815915166999915, 49.286958763000023 ], [ -122.81669179699999, 49.287205529000047 ], [ -122.817322095999941, 49.28740580800013 ], [ -122.818462393999951, 49.287815990000112 ], [ -122.819240017999974, 49.288204713 ], [ -122.820000909999948, 49.288696408000057 ], [ -122.820219102999971, 49.288921784000074 ], [ -122.820281198999965, 49.289119100000086 ], [ -122.820268297, 49.2893078930001 ], [ -122.820196619999976, 49.289490402000055 ], [ -122.820019202999944, 49.289691495000085 ], [ -122.819740800999952, 49.289882406000068 ], [ -122.819163599999953, 49.290079799000097 ], [ -122.818711498999932, 49.29019708800007 ], [ -122.818053693999914, 49.290326403000059 ], [ -122.817357096999928, 49.290400383000069 ], [ -122.816473592999941, 49.290413106000109 ], [ -122.815529588999979, 49.290407444000046 ], [ -122.814884940999946, 49.29040357800006 ], [ -122.813791011999982, 49.290396995000087 ], [ -122.813761990000017, 49.290118702000065 ], [ -122.813547086999904, 49.289885404000124 ], [ -122.813295694999965, 49.289742794000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143847894", "BldgCostT": "95351523", "sL_LossRatio": "0.753944166810502", "sL_AssetLoss": "1488971", "sL_BldgLoss": "1122601", "sL_StrLoss": "545531", "sL_NStrLoss": "577070", "sL_ContLoss": "366370", "geom_point": "0101000020E61000000E708C8D4EB45EC0BF0224DCDCA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.818764308999931, 49.291992311000044 ], [ -122.818954330999972, 49.291486206000094 ], [ -122.819019395999959, 49.29101970600005 ], [ -122.818974902999969, 49.290766106000071 ], [ -122.818711498999932, 49.29019708800007 ], [ -122.819163599999953, 49.290079799000097 ], [ -122.819740800999952, 49.289882406000068 ], [ -122.820019202999944, 49.289691495000085 ], [ -122.820196619999976, 49.289490402000055 ], [ -122.820268297, 49.2893078930001 ], [ -122.820281198999965, 49.289119100000086 ], [ -122.820219102999971, 49.288921784000074 ], [ -122.820000909999948, 49.288696408000057 ], [ -122.819240017999974, 49.288204713 ], [ -122.818462393999951, 49.287815990000112 ], [ -122.817322095999941, 49.28740580800013 ], [ -122.81669179699999, 49.287205529000047 ], [ -122.815915166999915, 49.286958763000023 ], [ -122.815610962999983, 49.286862107000118 ], [ -122.815255144999966, 49.286749037000078 ], [ -122.814969546999961, 49.286658280000069 ], [ -122.814510562999928, 49.286512446000032 ], [ -122.814184079999976, 49.286408689000034 ], [ -122.812996754999958, 49.286031401000066 ], [ -122.811888272999909, 49.285674137000093 ], [ -122.811393677999916, 49.285514695000074 ], [ -122.810288055999933, 49.28516041700005 ], [ -122.81009892899999, 49.2850521330001 ], [ -122.809977928999984, 49.28491253599999 ], [ -122.809709602999973, 49.284456869000081 ], [ -122.810543910999939, 49.284218486000093 ], [ -122.811866567999985, 49.283757416000107 ], [ -122.812135418999929, 49.283663692000047 ], [ -122.812832893999953, 49.283516705000082 ], [ -122.81325761, 49.283456298000061 ], [ -122.814009717999937, 49.283394699000041 ], [ -122.814332141999955, 49.283413879000058 ], [ -122.814972090999987, 49.283451892000116 ], [ -122.815044394999944, 49.283466177000093 ], [ -122.815544075999952, 49.283564803000054 ], [ -122.815706338999917, 49.283596837000061 ], [ -122.815975704999957, 49.283649996000079 ], [ -122.818424814999986, 49.284538916000017 ], [ -122.818436893999916, 49.28454329000003 ], [ -122.818022200999977, 49.285016610000113 ], [ -122.817807692999935, 49.285258 ], [ -122.817777007999936, 49.285444503000058 ], [ -122.817806007999977, 49.285583205000059 ], [ -122.817891026999988, 49.285727104000081 ], [ -122.818008208999984, 49.285922489000015 ], [ -122.818404377999954, 49.286117891000067 ], [ -122.819703498999914, 49.286418408000017 ], [ -122.820085505999913, 49.286600787000069 ], [ -122.820226597999948, 49.286667992000041 ], [ -122.821145971999925, 49.287084685000139 ], [ -122.821350464999952, 49.288660117000113 ], [ -122.821344880999945, 49.288706888000064 ], [ -122.82139409199999, 49.289181158000062 ], [ -122.821339705999961, 49.290186717000068 ], [ -122.82109827799998, 49.294651790000081 ], [ -122.821167059999965, 49.294958768000065 ], [ -122.821470563999952, 49.294944523000026 ], [ -122.820852509999938, 49.29546360400014 ], [ -122.820534615999975, 49.295307397000052 ], [ -122.820241191999941, 49.295253700000082 ], [ -122.819168784999988, 49.295253593000076 ], [ -122.818801688999912, 49.295193290000064 ], [ -122.818657751999964, 49.295121498000078 ], [ -122.818490593999968, 49.295038102000014 ], [ -122.818299693999947, 49.294854185000098 ], [ -122.818289007999908, 49.294798846000035 ], [ -122.818233817, 49.294512601000108 ], [ -122.818334590999925, 49.294346185000094 ], [ -122.818508683999966, 49.294213495000101 ], [ -122.818985690000019, 49.293840075000091 ], [ -122.819005617999949, 49.293824508000128 ], [ -122.819133298999972, 49.293667110000044 ], [ -122.819176492999958, 49.293438593000111 ], [ -122.818794510999965, 49.29285350800005 ], [ -122.81868312499995, 49.292414198000053 ], [ -122.818764308999931, 49.291992311000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194034706", "BldgCostT": "128372039", "sL_LossRatio": "0.757016148599466", "sL_AssetLoss": "1483720", "sL_BldgLoss": "1123200", "sL_StrLoss": "497330", "sL_NStrLoss": "625870", "sL_ContLoss": "360520", "geom_point": "0101000020E6100000D378E926F1B35EC08F55E7A439A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.8114146899999, 49.294203306000036 ], [ -122.810450282999952, 49.294131594000127 ], [ -122.809386130999954, 49.294127138000086 ], [ -122.809381602000016, 49.294092600000049 ], [ -122.80904498299999, 49.293724659000084 ], [ -122.809596142999951, 49.29372556800012 ], [ -122.809597181999919, 49.29345571500005 ], [ -122.810009767999972, 49.293456393000014 ], [ -122.810010804999976, 49.293186541000097 ], [ -122.809598222999966, 49.293185862000051 ], [ -122.80960341799998, 49.291836595000056 ], [ -122.810015989999968, 49.29183727500007 ], [ -122.810020578999982, 49.290642820000116 ], [ -122.809876435999968, 49.290544963000052 ], [ -122.809889635999966, 49.290371962000037 ], [ -122.81002197199993, 49.290280654000078 ], [ -122.810025945999925, 49.289246574000103 ], [ -122.810170918999987, 49.288985405000062 ], [ -122.810159004999917, 49.288831603000077 ], [ -122.80992620699999, 49.288625096000061 ], [ -122.809966689999925, 49.288471295000086 ], [ -122.810271687999958, 49.288130903000109 ], [ -122.811070904999909, 49.287550163000034 ], [ -122.81123601299997, 49.287430198000038 ], [ -122.811762796999972, 49.286765090000067 ], [ -122.811873493999926, 49.286333493000022 ], [ -122.811888272999909, 49.285674137000093 ], [ -122.812996754999958, 49.286031401000066 ], [ -122.812639912999941, 49.286582996000043 ], [ -122.813345011999971, 49.286825405000087 ], [ -122.813662920999903, 49.286999691000076 ], [ -122.813775912999986, 49.287256200000094 ], [ -122.813812192999976, 49.287528398000077 ], [ -122.813713308999965, 49.28766688900005 ], [ -122.813533290999956, 49.287826499000047 ], [ -122.813244895999958, 49.287941412000144 ], [ -122.81234200199998, 49.288117408000105 ], [ -122.812040294999932, 49.288205793000081 ], [ -122.811679702999953, 49.288491500000113 ], [ -122.811545506999977, 49.288943389000053 ], [ -122.811249287999942, 49.289812104000085 ], [ -122.811267766999933, 49.289812460000107 ], [ -122.81182871499999, 49.289823803000061 ], [ -122.812591701999949, 49.289684211000072 ], [ -122.812959414999938, 49.289674301000055 ], [ -122.813295694999965, 49.289742794000084 ], [ -122.813547086999904, 49.289885404000124 ], [ -122.813761990000017, 49.290118702000065 ], [ -122.813791011999982, 49.290396995000087 ], [ -122.813126186999966, 49.290408102000157 ], [ -122.812512386999941, 49.290536812000092 ], [ -122.81201028699995, 49.29074089700002 ], [ -122.81152201499998, 49.291084096000098 ], [ -122.811240891999987, 49.291393800000044 ], [ -122.812329530999961, 49.291797100000046 ], [ -122.812754519999928, 49.291954696000118 ], [ -122.813083899999924, 49.292022995000103 ], [ -122.813433205999928, 49.292041396000101 ], [ -122.813544486999959, 49.29208340200006 ], [ -122.813578293999967, 49.292171794000062 ], [ -122.8135491, 49.292696096000071 ], [ -122.813479998999966, 49.292860709000095 ], [ -122.813306994999962, 49.293017799000111 ], [ -122.813526513999989, 49.293185498000071 ], [ -122.813548242999929, 49.293219296000053 ], [ -122.813659391999963, 49.293392105000116 ], [ -122.813694992999928, 49.29353370300003 ], [ -122.813663909999931, 49.293786911000062 ], [ -122.813591518999957, 49.293888709000072 ], [ -122.81320720799998, 49.294429205000071 ], [ -122.811809613999941, 49.29425307200006 ], [ -122.8114146899999, 49.294203306000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257003489", "BldgCostT": "166483153", "sL_LossRatio": "0.701743214447682", "sL_AssetLoss": "3219340", "sL_BldgLoss": "2259150", "sL_StrLoss": "945680", "sL_NStrLoss": "1313470", "sL_ContLoss": "960190", "geom_point": "0101000020E6100000CA2C1932A4C25EC0C1642E9978AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.037818500999961, 49.347150701000075 ], [ -123.037854489, 49.346223106000103 ], [ -123.037890075999954, 49.345299999000069 ], [ -123.037923717999945, 49.344388504000037 ], [ -123.04346337299999, 49.344533796000036 ], [ -123.043514411, 49.343518403000054 ], [ -123.045361824999986, 49.343520272000049 ], [ -123.045939007999934, 49.343520825000084 ], [ -123.045882569999904, 49.343657658000112 ], [ -123.045793858999971, 49.343816444000062 ], [ -123.045632306999948, 49.343966746000056 ], [ -123.045728050999955, 49.344063870000063 ], [ -123.04600448399998, 49.34419847300012 ], [ -123.046172703999957, 49.344402908000056 ], [ -123.046493757999926, 49.344696169000024 ], [ -123.046887773999956, 49.345007669000054 ], [ -123.047157557999952, 49.345377853000059 ], [ -123.047278529999957, 49.345745983000015 ], [ -123.047373663999977, 49.346134057000029 ], [ -123.047373316999952, 49.34613592700002 ], [ -123.047343798999947, 49.346308338000043 ], [ -123.047298652, 49.346572038000033 ], [ -123.047120775999986, 49.346956487000057 ], [ -123.047063017999946, 49.347435105000038 ], [ -123.046296483999953, 49.34726099500007 ], [ -123.045877191999978, 49.347210014 ], [ -123.045764587999912, 49.34720973600011 ], [ -123.04497860499994, 49.347207898000136 ], [ -123.044017074999928, 49.347198705000103 ], [ -123.043899368999973, 49.347213760000074 ], [ -123.04363409699999, 49.347247691000078 ], [ -123.04319361899995, 49.347357306000028 ], [ -123.041747792999956, 49.347862597000102 ], [ -123.041329348999938, 49.347974228000076 ], [ -123.041436913999945, 49.348612849000048 ], [ -123.041444053999925, 49.348655235000059 ], [ -123.040691661999986, 49.348655503000032 ], [ -123.040691839999923, 49.348870141000113 ], [ -123.040799536999955, 49.348931562000061 ], [ -123.040990536, 49.349111662000055 ], [ -123.04111923499994, 49.349310862000081 ], [ -123.04069240299998, 49.349552763000148 ], [ -123.040693442999924, 49.350814318000047 ], [ -123.040280375999927, 49.350814463000113 ], [ -123.040280595999931, 49.351084314000069 ], [ -123.039867526999956, 49.351084458000138 ], [ -123.039867963999882, 49.351624162000043 ], [ -123.039041815999965, 49.351624443000013 ], [ -123.039042670999947, 49.352703851000086 ], [ -123.038629588, 49.352703989000062 ], [ -123.038629799999981, 49.352973841000093 ], [ -123.038309720999948, 49.352973948000084 ], [ -123.038312035999965, 49.353252362000049 ], [ -123.038258734999943, 49.35336836199999 ], [ -123.038237335999966, 49.354330663000063 ], [ -123.038217792999916, 49.354366235000015 ], [ -123.038217969999948, 49.354593089000034 ], [ -123.038093140999962, 49.354593131000087 ], [ -123.037954236999923, 49.354845963000074 ], [ -123.037805129999953, 49.354932502000075 ], [ -123.03780528499999, 49.355132929000135 ], [ -123.037459595999948, 49.355133042000112 ], [ -123.037392210999926, 49.355172151000076 ], [ -123.037392385999951, 49.355402915000099 ], [ -123.03710458099999, 49.355403007000035 ], [ -123.037064833999963, 49.3550135220001 ], [ -123.037140340999912, 49.354607361000049 ], [ -123.037551861999958, 49.35239336000005 ], [ -123.037653099999915, 49.35184399600012 ], [ -123.03773663199999, 49.350795061000049 ], [ -123.037737399999955, 49.350785290000019 ], [ -123.037751209999954, 49.349815703000075 ], [ -123.03777470599999, 49.348932807000089 ], [ -123.037784299999942, 49.348072893000023 ], [ -123.037818500999961, 49.347150701000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191619001", "BldgCostT": "127845001", "sL_LossRatio": "0.74583041637841", "sL_AssetLoss": "2181213", "sL_BldgLoss": "1626815", "sL_StrLoss": "768235", "sL_NStrLoss": "858580", "sL_ContLoss": "554398", "geom_point": "0101000020E6100000A289C10D42C45EC050A2CAD5B4AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077580663999953, 49.357756494000057 ], [ -123.077672956999933, 49.356294591000058 ], [ -123.074398169999981, 49.356206045000135 ], [ -123.074552386999983, 49.353765811000088 ], [ -123.073743212999915, 49.35376633000007 ], [ -123.073742967999976, 49.353603128000017 ], [ -123.073708133999929, 49.353596762 ], [ -123.073596346999935, 49.353496571000107 ], [ -123.073329719999961, 49.353496740000075 ], [ -123.073329501999936, 49.353350412000019 ], [ -123.073243135999988, 49.353312162000101 ], [ -123.073118505999929, 49.353227023000038 ], [ -123.072916232999944, 49.353227150000102 ], [ -123.07291599199999, 49.353064789000086 ], [ -123.07281915599998, 49.352957360000111 ], [ -123.072502748999966, 49.352957558000121 ], [ -123.07250036799999, 49.351338448000043 ], [ -123.072087298999989, 49.35133870700006 ], [ -123.072082960999964, 49.348370337000127 ], [ -123.070731321, 49.348371171000096 ], [ -123.070654934999965, 49.348405163000081 ], [ -123.070430917999914, 49.34847025400007 ], [ -123.070431932999966, 49.349180910000058 ], [ -123.069727501999964, 49.349181337000083 ], [ -123.069710734999902, 49.34944625 ], [ -123.070905929999981, 49.349478636000072 ], [ -123.070678376999965, 49.353075050000065 ], [ -123.065181930000023, 49.352926009000079 ], [ -123.065285647999985, 49.351289915000052 ], [ -123.06226312699998, 49.351207836000071 ], [ -123.062491323999907, 49.347611429000018 ], [ -123.062660079999944, 49.347616015000057 ], [ -123.062748793999916, 49.346217632000027 ], [ -123.064645369999951, 49.346269142000061 ], [ -123.064645300999985, 49.346215917000073 ], [ -123.062580159999968, 49.346217054000064 ], [ -123.06258050299999, 49.346486907000056 ], [ -123.06092838, 49.346487789000022 ], [ -123.06092771499999, 49.345948084000028 ], [ -123.060372457999975, 49.345948377000084 ], [ -123.060302636999921, 49.345953863000084 ], [ -123.060287922, 49.345948420000042 ], [ -123.056384428999934, 49.345950390000056 ], [ -123.056384736999973, 49.346220242000086 ], [ -123.055145650999975, 49.346220840000072 ], [ -123.055145349000014, 49.345950988000013 ], [ -123.054319297999911, 49.345951379000056 ], [ -123.05431959500001, 49.346221231000058 ], [ -123.053906566999956, 49.346221424000092 ], [ -123.053906861999934, 49.346491276000108 ], [ -123.053493830999983, 49.346491469000128 ], [ -123.053494122999922, 49.346761321000031 ], [ -123.053081091999928, 49.346761511000089 ], [ -123.053081380999942, 49.347031363000056 ], [ -123.05266834699998, 49.347031552000082 ], [ -123.052668633999986, 49.347301404000099 ], [ -123.05225559599991, 49.347301591000068 ], [ -123.052255881999912, 49.347571443000014 ], [ -123.051842842999974, 49.347571629000115 ], [ -123.051843126, 49.347841483000082 ], [ -123.051430083999932, 49.3478416660001 ], [ -123.05143064799999, 49.348381371000087 ], [ -123.051017600999927, 49.348381553000138 ], [ -123.051017879999975, 49.348651406000066 ], [ -123.049365684999941, 49.348652123000136 ], [ -123.049365145, 49.348112418000042 ], [ -123.046886880999963, 49.348113451000089 ], [ -123.046887136999942, 49.34838330200008 ], [ -123.046061042999909, 49.34838363500009 ], [ -123.046061295999948, 49.348653487000064 ], [ -123.044409100999971, 49.348654133000096 ], [ -123.044408857999969, 49.348384281000044 ], [ -123.042756671999939, 49.348384904000078 ], [ -123.042756438999959, 49.348115052000054 ], [ -123.042343392999925, 49.348115204000074 ], [ -123.04234362599999, 49.348385056000055 ], [ -123.04151753399999, 49.348385356000136 ], [ -123.0415177599999, 49.348655208000139 ], [ -123.041444053999925, 49.348655235000059 ], [ -123.041436913999945, 49.348612849000048 ], [ -123.041329348999938, 49.347974228000076 ], [ -123.041747792999956, 49.347862597000102 ], [ -123.04319361899995, 49.347357306000028 ], [ -123.04363409699999, 49.347247691000078 ], [ -123.043899368999973, 49.347213760000074 ], [ -123.044017074999928, 49.347198705000103 ], [ -123.04497860499994, 49.347207898000136 ], [ -123.045764587999912, 49.34720973600011 ], [ -123.045877191999978, 49.347210014 ], [ -123.046296483999953, 49.34726099500007 ], [ -123.047063017999946, 49.347435105000038 ], [ -123.047442904999954, 49.347521105000062 ], [ -123.047941294999987, 49.347583399000037 ], [ -123.048233713999963, 49.347594109000099 ], [ -123.04873490599995, 49.347547390000059 ], [ -123.0506936, 49.347178389000113 ], [ -123.050945421999941, 49.347156504000054 ], [ -123.05126270399991, 49.347189501000024 ], [ -123.051465887999896, 49.347240008 ], [ -123.052050888999958, 49.346806493000038 ], [ -123.05234589299998, 49.346625499 ], [ -123.053941492999954, 49.345667398000018 ], [ -123.054104516999956, 49.345570097000049 ], [ -123.054378854999953, 49.34548946400006 ], [ -123.054427084999972, 49.345475296000096 ], [ -123.054842185999917, 49.345440714000162 ], [ -123.056405046999942, 49.345439329000151 ], [ -123.057120002999966, 49.345438688000065 ], [ -123.057891474999977, 49.345445973000068 ], [ -123.058482719999986, 49.345451558000072 ], [ -123.058772598999909, 49.345454284000013 ], [ -123.059102738999968, 49.345457397000132 ], [ -123.059293185999962, 49.345459200000086 ], [ -123.05934317, 49.345456082000084 ], [ -123.05959981699999, 49.34544003900006 ], [ -123.060257683999964, 49.345398898000077 ], [ -123.060598996999929, 49.345377610000043 ], [ -123.063016788999974, 49.344577800000074 ], [ -123.06387619899999, 49.344286793000038 ], [ -123.066295402999984, 49.343463504000056 ], [ -123.067029717999972, 49.343255590000176 ], [ -123.068523285999945, 49.343248297000052 ], [ -123.068513486999976, 49.344185688000024 ], [ -123.065988284999932, 49.344162195000067 ], [ -123.065988384999983, 49.34502860300011 ], [ -123.065987402999951, 49.345609512000046 ], [ -123.065985107999964, 49.345949909000083 ], [ -123.065985362, 49.34673569300007 ], [ -123.065985720999919, 49.347808898000025 ], [ -123.067684126999936, 49.347818833000112 ], [ -123.068482805999963, 49.347823498000068 ], [ -123.068496808999924, 49.346776405000071 ], [ -123.069255989999988, 49.346783495000039 ], [ -123.069699172999947, 49.34680449300005 ], [ -123.070411101000019, 49.34679849200009 ], [ -123.070486384, 49.345086594000115 ], [ -123.070018472999976, 49.345086600000052 ], [ -123.070036395999963, 49.343259592000095 ], [ -123.0718796, 49.343274383000093 ], [ -123.071871086999977, 49.344192015000026 ], [ -123.071850978999962, 49.345205592000084 ], [ -123.073019604999985, 49.345225510000098 ], [ -123.07349892299996, 49.345262806000051 ], [ -123.073471590999944, 49.345978092000095 ], [ -123.07345658899996, 49.346345025000097 ], [ -123.073437418999916, 49.346813154000053 ], [ -123.073425289999989, 49.347109789000072 ], [ -123.073421190999966, 49.34720970900009 ], [ -123.0734099, 49.347505235000057 ], [ -123.073384242999978, 49.348175903000026 ], [ -123.073327979999988, 49.349646536000094 ], [ -123.073322009999956, 49.349802696000012 ], [ -123.073340744999925, 49.349996112000071 ], [ -123.07334450899998, 49.350034783000098 ], [ -123.073836104999941, 49.350531708000098 ], [ -123.073874899999936, 49.350963283000077 ], [ -123.074233193999973, 49.351348487000024 ], [ -123.075115286, 49.351765107000034 ], [ -123.07562201599994, 49.352220099000135 ], [ -123.076153018999904, 49.352421805000063 ], [ -123.07618879099999, 49.352573201000077 ], [ -123.076212391999945, 49.353006097000076 ], [ -123.077270616999925, 49.353315691000113 ], [ -123.077663982999965, 49.353844204 ], [ -123.077667484999949, 49.35385602000008 ], [ -123.077851230999983, 49.35448295300003 ], [ -123.077999384999913, 49.354988411000136 ], [ -123.07800939899991, 49.355022598000076 ], [ -123.079203408999931, 49.35575019200008 ], [ -123.080016546999929, 49.356273082000072 ], [ -123.079937318999924, 49.356414604000065 ], [ -123.079524423999956, 49.356783504000106 ], [ -123.079474090999923, 49.356808712000053 ], [ -123.077859494999984, 49.357616923000108 ], [ -123.077777657999931, 49.357657879000016 ], [ -123.077580663999953, 49.357756494000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39366334", "BldgCostT": "25203334", "sL_LossRatio": "0.840848863981928", "sL_AssetLoss": "138114", "sL_BldgLoss": "116133", "sL_StrLoss": "69678", "sL_NStrLoss": "46455", "sL_ContLoss": "21981", "geom_point": "0101000020E610000011033CED19C55EC001A91CAC62AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07728670799996, 49.373518676000089 ], [ -123.077341331999932, 49.372653860000078 ], [ -123.077316160999914, 49.372653179000054 ], [ -123.077318705999971, 49.372612888000056 ], [ -123.075388695999933, 49.372560728000039 ], [ -123.075535020999965, 49.370245485000034 ], [ -123.075325936999917, 49.370239833000056 ], [ -123.075553212999964, 49.36664350000008 ], [ -123.081051320999961, 49.366792012000126 ], [ -123.081028659999959, 49.367151307000043 ], [ -123.08125473699999, 49.367157408000075 ], [ -123.081241984999949, 49.367359605000061 ], [ -123.081808628999937, 49.3673748940001 ], [ -123.081782331999989, 49.367791940000096 ], [ -123.081899152999952, 49.36779509200008 ], [ -123.08188951799994, 49.367947887000071 ], [ -123.082867527999923, 49.367974267000079 ], [ -123.082836791999938, 49.368461865000057 ], [ -123.083103649999913, 49.368469062000059 ], [ -123.083102781999983, 49.368482810000081 ], [ -123.084575897999969, 49.368522524000042 ], [ -123.084349312999905, 49.372118864000093 ], [ -123.084255902000024, 49.372116347000095 ], [ -123.084218042, 49.372717166000044 ], [ -123.083256806999927, 49.372691254000081 ], [ -123.083243113999941, 49.372908489000046 ], [ -123.082834158999958, 49.372897462000083 ], [ -123.082785638999951, 49.373667097000023 ], [ -123.07728670799996, 49.373518676000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.717803660565724", "sL_AssetLoss": "30050", "sL_BldgLoss": "21570", "sL_StrLoss": "7500", "sL_NStrLoss": "14070", "sL_ContLoss": "8480", "geom_point": "0101000020E6100000D80FB1C182C75EC06335C8EAF7AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117138773999955, 49.362579058000044 ], [ -123.11713570299996, 49.361286353000047 ], [ -123.116722548999988, 49.361286771000053 ], [ -123.116719355999948, 49.359937516000116 ], [ -123.11713249899995, 49.359937098000103 ], [ -123.11712673000001, 49.357508439000107 ], [ -123.117938818999974, 49.357507613000095 ], [ -123.117869157000015, 49.359245313000045 ], [ -123.118143246999949, 49.35944956900012 ], [ -123.118144359999945, 49.359450493000168 ], [ -123.117843623999988, 49.359473529000056 ], [ -123.117755402999975, 49.359480291000033 ], [ -123.11720218, 49.359503632000056 ], [ -123.117138773999955, 49.362579058000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67271584", "BldgCostT": "44448334", "sL_LossRatio": "0.869679626618234", "sL_AssetLoss": "236755", "sL_BldgLoss": "205901", "sL_StrLoss": "129640", "sL_NStrLoss": "76261", "sL_ContLoss": "30854", "geom_point": "0101000020E6100000801CFFCB16C55EC06E8896E1E4B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074273248999987, 49.388809258000094 ], [ -123.074326028999948, 49.387974798000116 ], [ -123.073469472999989, 49.387951638000111 ], [ -123.073696978999934, 49.384355405000029 ], [ -123.073734530999957, 49.384356420000074 ], [ -123.07380023499995, 49.383317704000092 ], [ -123.074954103999971, 49.383348902000115 ], [ -123.075152455999913, 49.380211629000023 ], [ -123.075606566999909, 49.380223904000026 ], [ -123.075758267999973, 49.377823837000065 ], [ -123.076697519999968, 49.377849219000076 ], [ -123.076705635999971, 49.377720760000031 ], [ -123.07781901499996, 49.377750836000111 ], [ -123.077890549999964, 49.37661818500009 ], [ -123.08021762499996, 49.376681013000045 ], [ -123.080263391999949, 49.375955741000034 ], [ -123.085762623000022, 49.376104011000081 ], [ -123.085622429999972, 49.37832971900005 ], [ -123.086241942999962, 49.378346404000098 ], [ -123.086015438999951, 49.381942696000095 ], [ -123.085167346, 49.381919853000035 ], [ -123.085148420999971, 49.382220217000018 ], [ -123.08424472800003, 49.382195869000014 ], [ -123.084172744999989, 49.38333793700005 ], [ -123.081788612999958, 49.383273666 ], [ -123.081678838999892, 49.385013793000056 ], [ -123.079206825, 49.384947099000065 ], [ -123.079182050000028, 49.38533948600012 ], [ -123.080001008999915, 49.385361588000094 ], [ -123.079773985999935, 49.388957829000105 ], [ -123.074273248999987, 49.388809258000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10428000", "BldgCostT": "6720000", "sL_LossRatio": "0.781825760733639", "sL_AssetLoss": "59975", "sL_BldgLoss": "46890", "sL_StrLoss": "24620", "sL_NStrLoss": "22270", "sL_ContLoss": "13085", "geom_point": "0101000020E610000013DA8BCB25C55EC0743F2B59E3AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078001684999919, 49.35975433000003 ], [ -123.078010399999968, 49.359616276000082 ], [ -123.0774641739999, 49.359601516000104 ], [ -123.077580663999953, 49.357756494000057 ], [ -123.077777657999931, 49.357657879000016 ], [ -123.077859494999984, 49.357616923000108 ], [ -123.079474090999923, 49.356808712000053 ], [ -123.079524423999956, 49.356783504000106 ], [ -123.079937318999924, 49.356414604000065 ], [ -123.080016546999929, 49.356273082000072 ], [ -123.080502611, 49.356771709000043 ], [ -123.081169262999964, 49.357098336000099 ], [ -123.083375785999962, 49.358179366000044 ], [ -123.0835989939999, 49.35831544100003 ], [ -123.083498982999984, 49.359902719000061 ], [ -123.078001684999919, 49.35975433000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67436000", "BldgCostT": "44090000", "sL_LossRatio": "0.742790413029088", "sL_AssetLoss": "800670", "sL_BldgLoss": "594730", "sL_StrLoss": "273380", "sL_NStrLoss": "321350", "sL_ContLoss": "205940", "geom_point": "0101000020E6100000A239A1C673C65EC0D7C95335C5AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096600181999989, 49.374240084000142 ], [ -123.096624583999954, 49.373851193000121 ], [ -123.096187991999955, 49.373839475000068 ], [ -123.096284345999919, 49.372304026000037 ], [ -123.096140983999931, 49.372300178000032 ], [ -123.096156005999944, 49.37206079700006 ], [ -123.095994994999955, 49.372056475000107 ], [ -123.096093881999977, 49.370480705000091 ], [ -123.096082726999967, 49.37048071400006 ], [ -123.096082199999955, 49.3702108640001 ], [ -123.095668970999938, 49.370211206000064 ], [ -123.0956674, 49.369401655000061 ], [ -123.095254176999973, 49.369401995000075 ], [ -123.09525313599994, 49.368862294000095 ], [ -123.094839916999916, 49.36886263400006 ], [ -123.094838361, 49.368053081000028 ], [ -123.094425149999935, 49.36805342000013 ], [ -123.094422049999977, 49.366434314000045 ], [ -123.094008852999949, 49.366434651000084 ], [ -123.094007462999954, 49.365706006000089 ], [ -123.093819835999938, 49.365692463000059 ], [ -123.09356155099999, 49.365625460000039 ], [ -123.09318092700002, 49.365625768000044 ], [ -123.093180457999935, 49.365376752000074 ], [ -123.093148802999963, 49.365355942000022 ], [ -123.092767229999978, 49.365356249000087 ], [ -123.092766514999965, 49.364976586000083 ], [ -123.092627934999911, 49.364825463000024 ], [ -123.092621564999945, 49.364816663000099 ], [ -123.092353029999984, 49.36481687800002 ], [ -123.092352332999923, 49.364444836000047 ], [ -123.092280235, 49.364345262000022 ], [ -123.09226768299996, 49.364277243000032 ], [ -123.091938840999887, 49.364277505000068 ], [ -123.091938336999974, 49.364007654000034 ], [ -123.091525159999946, 49.364007982000039 ], [ -123.091522155999883, 49.362388876000075 ], [ -123.091108992, 49.36238920200001 ], [ -123.09110849299995, 49.362119350000107 ], [ -123.090695331999967, 49.362119675000038 ], [ -123.090694834999951, 49.361849824000011 ], [ -123.08986851799996, 49.361850469000018 ], [ -123.089869009999958, 49.362120321000077 ], [ -123.088801490999955, 49.362121146000035 ], [ -123.088802388, 49.362119990000053 ], [ -123.08969620100001, 49.361570185000097 ], [ -123.090035015999931, 49.361126593000066 ], [ -123.089942589, 49.360473397000078 ], [ -123.090375761999923, 49.360680516000066 ], [ -123.090990388999927, 49.360974391000035 ], [ -123.092202324999946, 49.361625798000063 ], [ -123.092559373, 49.361908210000088 ], [ -123.093133503999979, 49.362362311000034 ], [ -123.093563880999952, 49.362765997000089 ], [ -123.09358328399999, 49.362784192000092 ], [ -123.093818979999952, 49.362912102000095 ], [ -123.094079990999944, 49.362921812000124 ], [ -123.094282482999986, 49.36287590400007 ], [ -123.094479090999954, 49.362747890000051 ], [ -123.09476786799999, 49.362489997000068 ], [ -123.09519079899998, 49.362222101000043 ], [ -123.095647123999967, 49.362519904000067 ], [ -123.096374118999961, 49.362848307000085 ], [ -123.09671209899993, 49.362923985000094 ], [ -123.097125888, 49.362912598000101 ], [ -123.097502907999967, 49.362784002000062 ], [ -123.097765093999939, 49.36266408600008 ], [ -123.098502312999969, 49.362324484000034 ], [ -123.099824402999957, 49.361724100000046 ], [ -123.099842639999949, 49.361711896000024 ], [ -123.100311504000018, 49.361398605000026 ], [ -123.100894103999934, 49.361789807 ], [ -123.101151291999955, 49.362607197000038 ], [ -123.100193568999913, 49.362240318000019 ], [ -123.100302364999919, 49.362639327000075 ], [ -123.100168188999959, 49.362806321000058 ], [ -123.100157667999923, 49.362830241000083 ], [ -123.100000055999928, 49.363046787000066 ], [ -123.099567767999986, 49.363444062000021 ], [ -123.099398499999921, 49.363714738000105 ], [ -123.099396337999949, 49.363732121000069 ], [ -123.099261997999974, 49.363821890000096 ], [ -123.099136804999915, 49.363997793000109 ], [ -123.098475017999988, 49.364516805000051 ], [ -123.098256701999972, 49.364595609000034 ], [ -123.097798289999915, 49.364615693000125 ], [ -123.09755341099995, 49.364657797000071 ], [ -123.09731590599992, 49.36477749000008 ], [ -123.097151064999935, 49.365057694000029 ], [ -123.096742811999931, 49.365069211000048 ], [ -123.096509398999942, 49.365125102000093 ], [ -123.096344278999965, 49.365212310000068 ], [ -123.096264382, 49.365254504000099 ], [ -123.095982783999972, 49.365573895000139 ], [ -123.095875296999949, 49.365904196000017 ], [ -123.095848691999919, 49.366285398000088 ], [ -123.095976810999943, 49.366701290000037 ], [ -123.096145708999984, 49.366971493000115 ], [ -123.09633276699995, 49.367118902000065 ], [ -123.096628499999937, 49.367351911000092 ], [ -123.096912421999946, 49.36751074400005 ], [ -123.096953117999973, 49.367533496000064 ], [ -123.097760798999985, 49.367892888000078 ], [ -123.09879758299995, 49.368222396000078 ], [ -123.098986188999973, 49.368288689000103 ], [ -123.100083990999948, 49.368545102000063 ], [ -123.100321872, 49.368155188000102 ], [ -123.100335699999931, 49.368140324000116 ], [ -123.100675695999939, 49.367773706000101 ], [ -123.100880113999949, 49.367553302000061 ], [ -123.101117340999934, 49.367238820000125 ], [ -123.10125346599996, 49.367058367000013 ], [ -123.101994202999919, 49.36607640400009 ], [ -123.10220238699992, 49.365719109000111 ], [ -123.102574613999948, 49.365119295000078 ], [ -123.103069990999956, 49.364418410000063 ], [ -123.103358526999969, 49.363769606000048 ], [ -123.10352797099992, 49.362862346000043 ], [ -123.10377144399996, 49.36155881400002 ], [ -123.103849098, 49.361143013000103 ], [ -123.104034597999927, 49.36070940500008 ], [ -123.104445991999967, 49.360250304000054 ], [ -123.104455709999939, 49.360243846000103 ], [ -123.105042914999956, 49.3598539340001 ], [ -123.106311683999976, 49.359011395000046 ], [ -123.106572805999974, 49.358798690000128 ], [ -123.106878595999916, 49.358377306000087 ], [ -123.10686781699998, 49.358187095000069 ], [ -123.106866804999967, 49.35816889400008 ], [ -123.10680701499993, 49.357980898000058 ], [ -123.106457009999986, 49.357083502000066 ], [ -123.106134821999945, 49.35618149900003 ], [ -123.10695969199999, 49.356293830000034 ], [ -123.1082683489999, 49.356164595000074 ], [ -123.108501554999947, 49.356148373000075 ], [ -123.108600422999942, 49.356140435000093 ], [ -123.108562255999928, 49.356751461000052 ], [ -123.110551630999908, 49.356804634000092 ], [ -123.110648500999943, 49.357360285000041 ], [ -123.110922801999948, 49.357512684000078 ], [ -123.111047009999965, 49.357324692000134 ], [ -123.111070745999896, 49.356818503000078 ], [ -123.11268633, 49.356861650000042 ], [ -123.112635464999983, 49.357677113000122 ], [ -123.112745477999951, 49.357680050000091 ], [ -123.112521134999938, 49.36127650800006 ], [ -123.112356449999965, 49.361272111000083 ], [ -123.112267786999951, 49.361181403000053 ], [ -123.111717194999983, 49.360949289000096 ], [ -123.111673385999921, 49.360687198000072 ], [ -123.111771382999933, 49.360499202000014 ], [ -123.110751877999974, 49.360311198 ], [ -123.109730391999989, 49.359987893000074 ], [ -123.109608276999936, 49.360087595000095 ], [ -123.109014906999974, 49.360258503000061 ], [ -123.108078092999932, 49.360286999000067 ], [ -123.107624795999953, 49.360376691000084 ], [ -123.10690919399994, 49.360701495000072 ], [ -123.10648219, 49.36102620900003 ], [ -123.106414898999986, 49.361214199000059 ], [ -123.106521280999985, 49.361664693000044 ], [ -123.104741763, 49.361617070000101 ], [ -123.104744524999916, 49.362917354000089 ], [ -123.10442059699993, 49.362917647000117 ], [ -123.104363935999942, 49.363341963000018 ], [ -123.104332417999956, 49.363419517000104 ], [ -123.104333641, 49.363997131000076 ], [ -123.104097590999984, 49.363997343000058 ], [ -123.103947336000019, 49.364367063000088 ], [ -123.103921327999956, 49.364407031000091 ], [ -123.103922169999947, 49.364807057000114 ], [ -123.103660865999942, 49.364807291000055 ], [ -123.103509475999914, 49.36503993500002 ], [ -123.103510119999953, 49.365347129000028 ], [ -123.103309451999934, 49.365347309000128 ], [ -123.1030976119999, 49.365672834000108 ], [ -123.103098625, 49.366157050000069 ], [ -123.102685429999951, 49.366157418000029 ], [ -123.102686553999916, 49.366697120000055 ], [ -123.10186015499994, 49.366697852000087 ], [ -123.101861828, 49.367507404000087 ], [ -123.101448620999946, 49.367507767000056 ], [ -123.101449731999963, 49.368047469000025 ], [ -123.101036520999969, 49.36804783000008 ], [ -123.10103763099994, 49.36858931000004 ], [ -123.101719063999965, 49.36860757100002 ], [ -123.101704071999947, 49.368846954000063 ], [ -123.101865072999885, 49.368851267000082 ], [ -123.101786696999923, 49.370102735000039 ], [ -123.102433231, 49.370120055000086 ], [ -123.10241400699999, 49.370427068000019 ], [ -123.102644841999975, 49.370433251000094 ], [ -123.10241965199999, 49.374029619000048 ], [ -123.102122173999973, 49.374021651000106 ], [ -123.10209926099999, 49.374387526000092 ], [ -123.096600181999989, 49.374240084000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71664228", "BldgCostT": "48514857", "sL_LossRatio": "0.760105751178206", "sL_AssetLoss": "782970", "sL_BldgLoss": "595140", "sL_StrLoss": "277950", "sL_NStrLoss": "317190", "sL_ContLoss": "187830", "geom_point": "0101000020E610000022F6012F50C65EC0D8AD12EAF1AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095848691999919, 49.366285398000088 ], [ -123.095875296999949, 49.365904196000017 ], [ -123.095982783999972, 49.365573895000139 ], [ -123.096264382, 49.365254504000099 ], [ -123.096344278999965, 49.365212310000068 ], [ -123.096509398999942, 49.365125102000093 ], [ -123.096742811999931, 49.365069211000048 ], [ -123.097151064999935, 49.365057694000029 ], [ -123.097487390999902, 49.36516029700006 ], [ -123.097680317999931, 49.365269099000081 ], [ -123.097777286999985, 49.365361407000123 ], [ -123.098138895999952, 49.365705596000026 ], [ -123.09882881499999, 49.365936015000059 ], [ -123.098877911999949, 49.365952389000093 ], [ -123.099321688999908, 49.366056091000061 ], [ -123.099543683999968, 49.36607200700012 ], [ -123.099871131999947, 49.366042520000036 ], [ -123.100021399999918, 49.366028989000078 ], [ -123.100345802999982, 49.365971886000096 ], [ -123.100545626, 49.365902510000076 ], [ -123.101012407, 49.365879904000067 ], [ -123.101026074999965, 49.365881433000034 ], [ -123.101395293999957, 49.365922596000097 ], [ -123.101994202999919, 49.36607640400009 ], [ -123.10125346599996, 49.367058367000013 ], [ -123.101117340999934, 49.367238820000125 ], [ -123.100880113999949, 49.367553302000061 ], [ -123.100675695999939, 49.367773706000101 ], [ -123.100335699999931, 49.368140324000116 ], [ -123.100321872, 49.368155188000102 ], [ -123.100083990999948, 49.368545102000063 ], [ -123.098986188999973, 49.368288689000103 ], [ -123.09879758299995, 49.368222396000078 ], [ -123.097760798999985, 49.367892888000078 ], [ -123.096953117999973, 49.367533496000064 ], [ -123.096912421999946, 49.36751074400005 ], [ -123.096628499999937, 49.367351911000092 ], [ -123.09633276699995, 49.367118902000065 ], [ -123.096145708999984, 49.366971493000115 ], [ -123.095976810999943, 49.366701290000037 ], [ -123.095848691999919, 49.366285398000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90433000", "BldgCostT": "59950000", "sL_LossRatio": "0.744105042088548", "sL_AssetLoss": "1171340", "sL_BldgLoss": "871600", "sL_StrLoss": "391850", "sL_NStrLoss": "479750", "sL_ContLoss": "299740", "geom_point": "0101000020E610000085EDC43881C65EC01F98691C66AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097151064999935, 49.365057694000029 ], [ -123.09731590599992, 49.36477749000008 ], [ -123.09755341099995, 49.364657797000071 ], [ -123.097798289999915, 49.364615693000125 ], [ -123.098256701999972, 49.364595609000034 ], [ -123.098475017999988, 49.364516805000051 ], [ -123.099136804999915, 49.363997793000109 ], [ -123.099261997999974, 49.363821890000096 ], [ -123.099396337999949, 49.363732121000069 ], [ -123.099398499999921, 49.363714738000105 ], [ -123.099567767999986, 49.363444062000021 ], [ -123.100000055999928, 49.363046787000066 ], [ -123.100157667999923, 49.362830241000083 ], [ -123.100168188999959, 49.362806321000058 ], [ -123.100302364999919, 49.362639327000075 ], [ -123.100193568999913, 49.362240318000019 ], [ -123.101151291999955, 49.362607197000038 ], [ -123.100894103999934, 49.361789807 ], [ -123.100311504000018, 49.361398605000026 ], [ -123.100881600999955, 49.360824913 ], [ -123.100899897999966, 49.360598385000124 ], [ -123.100872921999922, 49.360458999000066 ], [ -123.100802507999973, 49.360330115000089 ], [ -123.10052530499992, 49.360073190000023 ], [ -123.10006799199995, 49.359747488000025 ], [ -123.099966612999978, 49.359674608000084 ], [ -123.099864203, 49.359375480000089 ], [ -123.099885704999977, 49.359032897000084 ], [ -123.102251106999958, 49.35902503799999 ], [ -123.105955721999976, 49.359012610000043 ], [ -123.106311683999976, 49.359011395000046 ], [ -123.105042914999956, 49.3598539340001 ], [ -123.104455709999939, 49.360243846000103 ], [ -123.104445991999967, 49.360250304000054 ], [ -123.104034597999927, 49.36070940500008 ], [ -123.103849098, 49.361143013000103 ], [ -123.10377144399996, 49.36155881400002 ], [ -123.10352797099992, 49.362862346000043 ], [ -123.103358526999969, 49.363769606000048 ], [ -123.103069990999956, 49.364418410000063 ], [ -123.102574613999948, 49.365119295000078 ], [ -123.10220238699992, 49.365719109000111 ], [ -123.101994202999919, 49.36607640400009 ], [ -123.101395293999957, 49.365922596000097 ], [ -123.101026074999965, 49.365881433000034 ], [ -123.101012407, 49.365879904000067 ], [ -123.100545626, 49.365902510000076 ], [ -123.100345802999982, 49.365971886000096 ], [ -123.100021399999918, 49.366028989000078 ], [ -123.099871131999947, 49.366042520000036 ], [ -123.099543683999968, 49.36607200700012 ], [ -123.099321688999908, 49.366056091000061 ], [ -123.098877911999949, 49.365952389000093 ], [ -123.09882881499999, 49.365936015000059 ], [ -123.098138895999952, 49.365705596000026 ], [ -123.097777286999985, 49.365361407000123 ], [ -123.097680317999931, 49.365269099000081 ], [ -123.097487390999902, 49.36516029700006 ], [ -123.097151064999935, 49.365057694000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86827500", "BldgCostT": "55755000", "sL_LossRatio": "0.720701797200481", "sL_AssetLoss": "1147340", "sL_BldgLoss": "826890", "sL_StrLoss": "362150", "sL_NStrLoss": "464740", "sL_ContLoss": "320450", "geom_point": "0101000020E610000065021B6329C65EC0F14FDB4C26AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098188685999958, 49.359038660000067 ], [ -123.099885704999977, 49.359032897000084 ], [ -123.099864203, 49.359375480000089 ], [ -123.099966612999978, 49.359674608000084 ], [ -123.10006799199995, 49.359747488000025 ], [ -123.10052530499992, 49.360073190000023 ], [ -123.100802507999973, 49.360330115000089 ], [ -123.100872921999922, 49.360458999000066 ], [ -123.100899897999966, 49.360598385000124 ], [ -123.100881600999955, 49.360824913 ], [ -123.100311504000018, 49.361398605000026 ], [ -123.099842639999949, 49.361711896000024 ], [ -123.099824402999957, 49.361724100000046 ], [ -123.098502312999969, 49.362324484000034 ], [ -123.097765093999939, 49.36266408600008 ], [ -123.097502907999967, 49.362784002000062 ], [ -123.097125888, 49.362912598000101 ], [ -123.09671209899993, 49.362923985000094 ], [ -123.096374118999961, 49.362848307000085 ], [ -123.095647123999967, 49.362519904000067 ], [ -123.09519079899998, 49.362222101000043 ], [ -123.094194409999929, 49.361427097000096 ], [ -123.093745984999927, 49.361158393000046 ], [ -123.092064897999947, 49.360481001000061 ], [ -123.091179063, 49.360036590000028 ], [ -123.09116964899999, 49.360031855000031 ], [ -123.090917184999981, 49.359905195000124 ], [ -123.090715384999939, 49.359764696000113 ], [ -123.090588099999962, 49.359620785000068 ], [ -123.090568669999953, 49.359053796000076 ], [ -123.095782498999966, 49.359045319000117 ], [ -123.096934902999976, 49.359042897000087 ], [ -123.098188685999958, 49.359038660000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.897381129271917", "sL_AssetLoss": "10768", "sL_BldgLoss": "9663", "sL_StrLoss": "6590", "sL_NStrLoss": "3073", "sL_ContLoss": "1105", "geom_point": "0101000020E610000003FD8D8F79C95EC07652FC6BBBB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147422590999938, 49.403618249000012 ], [ -123.148663114999962, 49.403616661000065 ], [ -123.148666373999944, 49.404696055000066 ], [ -123.147425821999931, 49.404697644000073 ], [ -123.147422590999938, 49.403618249000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161679584", "BldgCostT": "106168334", "sL_LossRatio": "0.836251035779215", "sL_AssetLoss": "646856", "sL_BldgLoss": "540934", "sL_StrLoss": "330314", "sL_NStrLoss": "210620", "sL_ContLoss": "105922", "geom_point": "0101000020E61000002EA9A0C338C85EC01F0C9F215AAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129518036999983, 49.366544462000036 ], [ -123.129327696999965, 49.366400535000054 ], [ -123.127890994999973, 49.366402132000047 ], [ -123.127890295999975, 49.366132282000166 ], [ -123.12747710099994, 49.366132738000054 ], [ -123.127476402999903, 49.365862888000066 ], [ -123.126650017999935, 49.365863796000092 ], [ -123.126649324999946, 49.365593945000043 ], [ -123.125822945999985, 49.365594847000061 ], [ -123.125822257999928, 49.365324997000101 ], [ -123.125409068999929, 49.365325446000028 ], [ -123.125408383999954, 49.365055595000051 ], [ -123.124582012999952, 49.365056489000033 ], [ -123.124581330999945, 49.364786638000083 ], [ -123.119118180999976, 49.364792399000045 ], [ -123.119054435999956, 49.364798562000132 ], [ -123.119036001000026, 49.364792483000052 ], [ -123.117970402999958, 49.36479357300005 ], [ -123.11796921199999, 49.364296033000095 ], [ -123.117930734999931, 49.364279262000068 ], [ -123.117788877999914, 49.363984205000051 ], [ -123.117555289, 49.363984442000103 ], [ -123.117554001999963, 49.363444740000048 ], [ -123.11714083199999, 49.363445160000076 ], [ -123.117138773999955, 49.362579058000044 ], [ -123.11720218, 49.359503632000056 ], [ -123.117755402999975, 49.359480291000033 ], [ -123.117843623999988, 49.359473529000056 ], [ -123.118144359999945, 49.359450493000168 ], [ -123.118143246999949, 49.35944956900012 ], [ -123.117869157000015, 49.359245313000045 ], [ -123.118305688999939, 49.359129095000107 ], [ -123.11826600199997, 49.359584964000106 ], [ -123.118261417000028, 49.35963765500005 ], [ -123.118257507999957, 49.359682611000089 ], [ -123.118181049999961, 49.359914913000061 ], [ -123.11800060299997, 49.360462927000071 ], [ -123.117997684999978, 49.360471797000073 ], [ -123.118000009999975, 49.361651595000133 ], [ -123.11799788299993, 49.362790793000016 ], [ -123.118216492999963, 49.362707508000035 ], [ -123.118566606999963, 49.362500707000038 ], [ -123.119978074999906, 49.361942093000067 ], [ -123.120302081999967, 49.36171379900005 ], [ -123.120467576999914, 49.361554301000133 ], [ -123.120639601999983, 49.361267990000094 ], [ -123.120830810999976, 49.36084889500011 ], [ -123.120898195999942, 49.360826947000092 ], [ -123.121027523999956, 49.360784806 ], [ -123.122262805, 49.36080150700009 ], [ -123.122620969999943, 49.360575995000048 ], [ -123.122721193999965, 49.360512891000106 ], [ -123.12359199499997, 49.359902902000151 ], [ -123.12349363099996, 49.360961587000098 ], [ -123.123413291, 49.361826386000175 ], [ -123.123276482999955, 49.362364898000109 ], [ -123.123101799999958, 49.362851087000102 ], [ -123.122865279999957, 49.363576996000042 ], [ -123.123000496999964, 49.363948909000058 ], [ -123.123232522999913, 49.36413610200006 ], [ -123.123429111999954, 49.364230493000036 ], [ -123.123730828999939, 49.364248395000118 ], [ -123.123940494999914, 49.364197311000027 ], [ -123.124113014999963, 49.364102808000091 ], [ -123.124486990999955, 49.363822686000042 ], [ -123.124872222999969, 49.363605096000143 ], [ -123.125417007999985, 49.36350070400001 ], [ -123.12568042099997, 49.363471705000066 ], [ -123.126021542999965, 49.363413233000095 ], [ -123.126035223999949, 49.363410902000069 ], [ -123.126208205999887, 49.363329888000081 ], [ -123.126715018, 49.36275079600005 ], [ -123.12709472, 49.362466407000042 ], [ -123.127355906999981, 49.362317494000138 ], [ -123.127506291999936, 49.362267514000067 ], [ -123.127743189999975, 49.362265694000044 ], [ -123.128324381999946, 49.36232969200011 ], [ -123.128571992999952, 49.362288612000029 ], [ -123.128759608999943, 49.362148493000042 ], [ -123.130116510999954, 49.361246986 ], [ -123.1302572099999, 49.361242698000027 ], [ -123.130472301999959, 49.361281699000081 ], [ -123.130613192999959, 49.361406990000084 ], [ -123.130632307999988, 49.361697503000094 ], [ -123.130586309999984, 49.362041192000063 ], [ -123.130707505999965, 49.362038996000116 ], [ -123.130824194999917, 49.361999799000039 ], [ -123.130994187999946, 49.361900704000021 ], [ -123.13165550199993, 49.361182504000055 ], [ -123.131974389999968, 49.360922613000128 ], [ -123.13223169199992, 49.360814110000092 ], [ -123.133316118999971, 49.360531303000059 ], [ -123.1336484, 49.360278012000023 ], [ -123.133740016999937, 49.360132695000054 ], [ -123.133716802999942, 49.359730388000095 ], [ -123.13374607899999, 49.359619331000104 ], [ -123.133749079999944, 49.359607893000046 ], [ -123.134120305999929, 49.359326913000125 ], [ -123.13427798799999, 49.359359806000072 ], [ -123.134447409999936, 49.359336389000084 ], [ -123.135269804999965, 49.359060094000085 ], [ -123.135830613999943, 49.358784989000071 ], [ -123.136776286, 49.358613798000121 ], [ -123.137197694999912, 49.358537490000103 ], [ -123.137818327999966, 49.358318804000042 ], [ -123.138314286999943, 49.358066302000026 ], [ -123.139162407999891, 49.357774392000088 ], [ -123.140100191999949, 49.357524499000085 ], [ -123.14048638899996, 49.357444700000087 ], [ -123.140735495999976, 49.357423392000072 ], [ -123.14203201399998, 49.357403591000029 ], [ -123.142434904999945, 49.357322410000044 ], [ -123.143531602999957, 49.356971292000033 ], [ -123.148659701999961, 49.355778285000085 ], [ -123.149395826, 49.355697916000047 ], [ -123.149849105999962, 49.355648438000074 ], [ -123.150128704999972, 49.355617889000015 ], [ -123.151353550999886, 49.355406886000075 ], [ -123.151694012999926, 49.355641302000087 ], [ -123.151753107, 49.355724137000045 ], [ -123.151842183999946, 49.355848940000023 ], [ -123.150997753999917, 49.355850046000072 ], [ -123.150998578999932, 49.356119896000031 ], [ -123.149346138999945, 49.35612204400006 ], [ -123.149346954999928, 49.356391894000083 ], [ -123.14779964399996, 49.356393882000063 ], [ -123.147694617999932, 49.356430969000051 ], [ -123.147695314999936, 49.356663868000112 ], [ -123.147032651999965, 49.356664713000065 ], [ -123.146869258, 49.356722407000049 ], [ -123.146869888999959, 49.356934771000056 ], [ -123.145630538999953, 49.356936340000047 ], [ -123.145631335999923, 49.357206190000028 ], [ -123.14444434, 49.357207680000045 ], [ -123.14439202899996, 49.357225451000026 ], [ -123.144392767999975, 49.357477597000063 ], [ -123.14356652499994, 49.357478625000034 ], [ -123.143567311999959, 49.357748476000026 ], [ -123.14256858099999, 49.357749712000036 ], [ -123.142328164999938, 49.357828006000062 ], [ -123.142328717999987, 49.358019859000095 ], [ -123.141089340999912, 49.358021378000082 ], [ -123.141090111999958, 49.358291230000056 ], [ -123.139850726999939, 49.358292736000045 ], [ -123.13985149299999, 49.358562586000069 ], [ -123.138714218999951, 49.358563957000023 ], [ -123.138612235999958, 49.358612381000093 ], [ -123.138612858999934, 49.358833930000038 ], [ -123.13801382399997, 49.358834647000045 ], [ -123.137786776000027, 49.358900874 ], [ -123.137787347999904, 49.35910476800008 ], [ -123.13708489699998, 49.359105604000085 ], [ -123.13696117799999, 49.359141690000129 ], [ -123.136961825999961, 49.359375601000075 ], [ -123.136135551999956, 49.359376577000013 ], [ -123.136137040999984, 49.359916279000061 ], [ -123.134897614999943, 49.359917732000092 ], [ -123.134898353999958, 49.360187583000034 ], [ -123.134777532999962, 49.36018772400012 ], [ -123.134756935999974, 49.36022166300009 ], [ -123.134485948999966, 49.360459613000103 ], [ -123.134486680999942, 49.360727766000068 ], [ -123.134208419999979, 49.360728089000098 ], [ -123.134073934999918, 49.360876336000061 ], [ -123.134075, 49.361267947000108 ], [ -123.133788260999921, 49.361268280000033 ], [ -123.133688035999938, 49.361419062000074 ], [ -123.133662329999979, 49.361447312000088 ], [ -123.133664039999985, 49.362077978000116 ], [ -123.133250880999952, 49.362078455000102 ], [ -123.133252337999949, 49.362618156000089 ], [ -123.132426009, 49.362619106000103 ], [ -123.13242673399999, 49.362888957000095 ], [ -123.13160039899999, 49.362889900000056 ], [ -123.131601839999959, 49.363429602000053 ], [ -123.13118866799995, 49.363430071000018 ], [ -123.13119010399997, 49.363969772000075 ], [ -123.130776927999989, 49.363970241000025 ], [ -123.130778359999965, 49.364509943000044 ], [ -123.130365179999941, 49.364510409000076 ], [ -123.130366605999882, 49.365050111000073 ], [ -123.12995342100001, 49.36505057600003 ], [ -123.129954652999956, 49.365518 ], [ -123.130057235999956, 49.365710163000109 ], [ -123.129955551999942, 49.365858960000082 ], [ -123.129956976999964, 49.366399829000045 ], [ -123.129808208999975, 49.366399995000073 ], [ -123.129786234999983, 49.366451462000086 ], [ -123.129635435999958, 49.366537962000066 ], [ -123.129518036999983, 49.366544462000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112017584", "BldgCostT": "76198334", "sL_LossRatio": "0.881689271644866", "sL_AssetLoss": "431026", "sL_BldgLoss": "380031", "sL_StrLoss": "255161", "sL_NStrLoss": "124870", "sL_ContLoss": "50995", "geom_point": "0101000020E6100000C7D7E07524C85EC000F5D16F00AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123276482999955, 49.362364898000109 ], [ -123.123413291, 49.361826386000175 ], [ -123.12349363099996, 49.360961587000098 ], [ -123.12359199499997, 49.359902902000151 ], [ -123.123605937999983, 49.359778661000043 ], [ -123.123612965999939, 49.359716038000101 ], [ -123.123621047999961, 49.359643799000075 ], [ -123.123629130999916, 49.359571560000056 ], [ -123.123715503999918, 49.358801206000081 ], [ -123.124343090999972, 49.358448607000049 ], [ -123.12504269499999, 49.357934882000094 ], [ -123.125324691999978, 49.35767140600008 ], [ -123.125815416999927, 49.357861796000073 ], [ -123.125972891999965, 49.357919105000079 ], [ -123.126297995999948, 49.357892712000073 ], [ -123.126563584999957, 49.357760113000026 ], [ -123.126942279999952, 49.35727029800006 ], [ -123.127285084999968, 49.356671500000118 ], [ -123.127540713, 49.356390094000083 ], [ -123.127979517999961, 49.356038799000039 ], [ -123.128722693999947, 49.355575003000077 ], [ -123.129905302999944, 49.35515060500007 ], [ -123.131979117999919, 49.354404998000042 ], [ -123.132329498999951, 49.354236911000051 ], [ -123.132607002999947, 49.354045197000083 ], [ -123.133032585999928, 49.354730196000048 ], [ -123.132303076999932, 49.355440300000083 ], [ -123.130361407999985, 49.357341299000055 ], [ -123.130265304999938, 49.357580999000085 ], [ -123.130412197999988, 49.358409892000132 ], [ -123.130397296999931, 49.35920379900007 ], [ -123.130188495999931, 49.359463911000034 ], [ -123.129956787999987, 49.359639006000101 ], [ -123.12923530099999, 49.360184302000093 ], [ -123.128751987999976, 49.360673214000016 ], [ -123.128544585999961, 49.361065710000069 ], [ -123.128527990999928, 49.36144349300006 ], [ -123.128759608999943, 49.362148493000042 ], [ -123.128571992999952, 49.362288612000029 ], [ -123.128324381999946, 49.36232969200011 ], [ -123.127743189999975, 49.362265694000044 ], [ -123.127506291999936, 49.362267514000067 ], [ -123.127355906999981, 49.362317494000138 ], [ -123.12709472, 49.362466407000042 ], [ -123.126715018, 49.36275079600005 ], [ -123.126208205999887, 49.363329888000081 ], [ -123.126035223999949, 49.363410902000069 ], [ -123.126021542999965, 49.363413233000095 ], [ -123.12568042099997, 49.363471705000066 ], [ -123.125417007999985, 49.36350070400001 ], [ -123.124872222999969, 49.363605096000143 ], [ -123.124486990999955, 49.363822686000042 ], [ -123.124113014999963, 49.364102808000091 ], [ -123.123940494999914, 49.364197311000027 ], [ -123.123730828999939, 49.364248395000118 ], [ -123.123429111999954, 49.364230493000036 ], [ -123.123232522999913, 49.36413610200006 ], [ -123.123000496999964, 49.363948909000058 ], [ -123.122865279999957, 49.363576996000042 ], [ -123.123101799999958, 49.362851087000102 ], [ -123.123276482999955, 49.362364898000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72698834", "BldgCostT": "49873334", "sL_LossRatio": "0.869347789458462", "sL_AssetLoss": "293190.6", "sL_BldgLoss": "254884.6", "sL_StrLoss": "167196.6", "sL_NStrLoss": "87688", "sL_ContLoss": "38306", "geom_point": "0101000020E61000001ABC541193C85EC007F1E447BAAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128527990999928, 49.36144349300006 ], [ -123.128544585999961, 49.361065710000069 ], [ -123.128751987999976, 49.360673214000016 ], [ -123.12923530099999, 49.360184302000093 ], [ -123.129956787999987, 49.359639006000101 ], [ -123.130188495999931, 49.359463911000034 ], [ -123.130397296999931, 49.35920379900007 ], [ -123.130412197999988, 49.358409892000132 ], [ -123.130265304999938, 49.357580999000085 ], [ -123.130361407999985, 49.357341299000055 ], [ -123.132303076999932, 49.355440300000083 ], [ -123.133032585999928, 49.354730196000048 ], [ -123.133301322999912, 49.354791299000041 ], [ -123.13362588699999, 49.354707197000025 ], [ -123.134296302999957, 49.354239654000075 ], [ -123.134381104999946, 49.354180493000108 ], [ -123.135095207999953, 49.353873412000048 ], [ -123.137913269999956, 49.353195524000121 ], [ -123.138241800999964, 49.353116490000119 ], [ -123.138468505999967, 49.353190005000037 ], [ -123.138039797999951, 49.353488505000072 ], [ -123.13792568099997, 49.353664702000117 ], [ -123.137919412999977, 49.353988702000038 ], [ -123.137998902999982, 49.354150193000038 ], [ -123.13811511099999, 49.354229884000091 ], [ -123.13828578099999, 49.354296506000104 ], [ -123.138600893999964, 49.354343591000031 ], [ -123.138918106999981, 49.354333999000119 ], [ -123.140170304999913, 49.353982494000078 ], [ -123.14020741299997, 49.354228499000037 ], [ -123.140138593999893, 49.354562601000069 ], [ -123.140006793999973, 49.354734714000116 ], [ -123.139741699999931, 49.354927602000039 ], [ -123.139017016999972, 49.355338896000085 ], [ -123.138695884999933, 49.355633995000041 ], [ -123.138570890999972, 49.355808101000093 ], [ -123.1384910099999, 49.35600949700008 ], [ -123.138483000999926, 49.35651719500008 ], [ -123.138022323999934, 49.356667103000063 ], [ -123.137833684000015, 49.356778290000115 ], [ -123.1373107899999, 49.35722020200005 ], [ -123.137037410999966, 49.35741200399999 ], [ -123.136790405999974, 49.357510803000082 ], [ -123.13580572099994, 49.357741402000066 ], [ -123.135673808999954, 49.35791438900003 ], [ -123.134876411999983, 49.358698510000103 ], [ -123.134120305999929, 49.359326913000125 ], [ -123.133749079999944, 49.359607893000046 ], [ -123.13374607899999, 49.359619331000104 ], [ -123.133716802999942, 49.359730388000095 ], [ -123.133740016999937, 49.360132695000054 ], [ -123.1336484, 49.360278012000023 ], [ -123.133316118999971, 49.360531303000059 ], [ -123.13223169199992, 49.360814110000092 ], [ -123.131974389999968, 49.360922613000128 ], [ -123.13165550199993, 49.361182504000055 ], [ -123.130994187999946, 49.361900704000021 ], [ -123.130824194999917, 49.361999799000039 ], [ -123.130707505999965, 49.362038996000116 ], [ -123.130586309999984, 49.362041192000063 ], [ -123.130632307999988, 49.361697503000094 ], [ -123.130613192999959, 49.361406990000084 ], [ -123.130472301999959, 49.361281699000081 ], [ -123.1302572099999, 49.361242698000027 ], [ -123.130116510999954, 49.361246986 ], [ -123.128759608999943, 49.362148493000042 ], [ -123.128527990999928, 49.36144349300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137254047", "BldgCostT": "84722822", "sL_LossRatio": "0.783961047901568", "sL_AssetLoss": "479358", "sL_BldgLoss": "375798", "sL_StrLoss": "212938", "sL_NStrLoss": "162860", "sL_ContLoss": "103560", "geom_point": "0101000020E610000062B984C727C95EC0DF56385164AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14020741299997, 49.354228499000037 ], [ -123.140170304999913, 49.353982494000078 ], [ -123.138918106999981, 49.354333999000119 ], [ -123.138600893999964, 49.354343591000031 ], [ -123.13828578099999, 49.354296506000104 ], [ -123.13811511099999, 49.354229884000091 ], [ -123.137998902999982, 49.354150193000038 ], [ -123.137919412999977, 49.353988702000038 ], [ -123.13792568099997, 49.353664702000117 ], [ -123.138039797999951, 49.353488505000072 ], [ -123.138468505999967, 49.353190005000037 ], [ -123.138650590999987, 49.353094003000059 ], [ -123.139217116999973, 49.352590201000069 ], [ -123.139437323999957, 49.352213326000061 ], [ -123.139495437999955, 49.351650110000023 ], [ -123.141966822999933, 49.351326423000067 ], [ -123.142765517999962, 49.351297116000055 ], [ -123.143759107999955, 49.351388211000071 ], [ -123.144331994999988, 49.351515907000056 ], [ -123.144649720999922, 49.35162202000005 ], [ -123.144861991999932, 49.351692896000024 ], [ -123.145237996999967, 49.351890999000034 ], [ -123.145470909999972, 49.351728807000079 ], [ -123.145678468999918, 49.35164351100007 ], [ -123.145722301999982, 49.351625489000099 ], [ -123.146421414999921, 49.351493607000108 ], [ -123.14658908899996, 49.351407994000034 ], [ -123.146739089999954, 49.351250705000027 ], [ -123.146764100999988, 49.351180203000126 ], [ -123.147216734999986, 49.350947563000098 ], [ -123.14730992199992, 49.351165369000078 ], [ -123.147446923999937, 49.351485745000055 ], [ -123.147495506999945, 49.351599308000061 ], [ -123.147523779, 49.351958200000105 ], [ -123.147570302999895, 49.352034167000063 ], [ -123.147597627999943, 49.352078711000033 ], [ -123.148118923999931, 49.352929603000064 ], [ -123.148168578999943, 49.353168456000027 ], [ -123.14827000399994, 49.353656426000065 ], [ -123.148296390999946, 49.353783391000121 ], [ -123.148311333, 49.353855381000066 ], [ -123.148313104999971, 49.353863808000057 ], [ -123.148567396999965, 49.35402620700004 ], [ -123.148967154000019, 49.35428148600009 ], [ -123.149058009999962, 49.354339490000093 ], [ -123.149119448999954, 49.354355898000058 ], [ -123.149830801999926, 49.354545996000184 ], [ -123.150781807999977, 49.355013197000027 ], [ -123.15106591599999, 49.355208820000094 ], [ -123.151353550999886, 49.355406886000075 ], [ -123.150128704999972, 49.355617889000015 ], [ -123.149849105999962, 49.355648438000074 ], [ -123.149395826, 49.355697916000047 ], [ -123.148659701999961, 49.355778285000085 ], [ -123.143531602999957, 49.356971292000033 ], [ -123.142434904999945, 49.357322410000044 ], [ -123.14203201399998, 49.357403591000029 ], [ -123.140735495999976, 49.357423392000072 ], [ -123.14048638899996, 49.357444700000087 ], [ -123.140100191999949, 49.357524499000085 ], [ -123.139162407999891, 49.357774392000088 ], [ -123.138314286999943, 49.358066302000026 ], [ -123.137818327999966, 49.358318804000042 ], [ -123.137197694999912, 49.358537490000103 ], [ -123.136776286, 49.358613798000121 ], [ -123.135830613999943, 49.358784989000071 ], [ -123.135269804999965, 49.359060094000085 ], [ -123.134447409999936, 49.359336389000084 ], [ -123.13427798799999, 49.359359806000072 ], [ -123.134120305999929, 49.359326913000125 ], [ -123.134876411999983, 49.358698510000103 ], [ -123.135673808999954, 49.35791438900003 ], [ -123.13580572099994, 49.357741402000066 ], [ -123.136790405999974, 49.357510803000082 ], [ -123.137037410999966, 49.35741200399999 ], [ -123.1373107899999, 49.35722020200005 ], [ -123.137833684000015, 49.356778290000115 ], [ -123.138022323999934, 49.356667103000063 ], [ -123.138483000999926, 49.35651719500008 ], [ -123.1384910099999, 49.35600949700008 ], [ -123.138570890999972, 49.355808101000093 ], [ -123.138695884999933, 49.355633995000041 ], [ -123.139017016999972, 49.355338896000085 ], [ -123.139741699999931, 49.354927602000039 ], [ -123.140006793999973, 49.354734714000116 ], [ -123.140138593999893, 49.354562601000069 ], [ -123.14020741299997, 49.354228499000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82200584", "BldgCostT": "56218334", "sL_LossRatio": "0.852772978503322", "sL_AssetLoss": "354799", "sL_BldgLoss": "302563", "sL_StrLoss": "192019", "sL_NStrLoss": "110544", "sL_ContLoss": "52236", "geom_point": "0101000020E61000005E6B3170E7C85EC014F6E5B3D9AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133066387999975, 49.353361221000085 ], [ -123.133461466999975, 49.35258277800002 ], [ -123.133485837999913, 49.352300607000124 ], [ -123.133407185999943, 49.352058962000093 ], [ -123.133254470999987, 49.351813548000081 ], [ -123.133219539999942, 49.351644211000057 ], [ -123.133698430999985, 49.350467211000144 ], [ -123.13422282399992, 49.349511110000066 ], [ -123.134428903999975, 49.349227502000055 ], [ -123.135089220999944, 49.348520890000074 ], [ -123.135498094999917, 49.348207508000073 ], [ -123.136226685999958, 49.347776499000098 ], [ -123.136469818999956, 49.347628092000079 ], [ -123.136872117999971, 49.34744419500003 ], [ -123.138499798999987, 49.346827089000072 ], [ -123.139182600999973, 49.347201804000051 ], [ -123.140394691999958, 49.347697695000143 ], [ -123.140989581, 49.34784164700006 ], [ -123.142329823999958, 49.348165899000065 ], [ -123.143390190000019, 49.34819841000008 ], [ -123.144265089999948, 49.348182791000113 ], [ -123.145538508999934, 49.348020990000052 ], [ -123.146072606999894, 49.348667293000084 ], [ -123.146302392999985, 49.349180392000051 ], [ -123.146728878999937, 49.350478601000056 ], [ -123.146764100999988, 49.351180203000126 ], [ -123.146739089999954, 49.351250705000027 ], [ -123.14658908899996, 49.351407994000034 ], [ -123.146421414999921, 49.351493607000108 ], [ -123.145722301999982, 49.351625489000099 ], [ -123.145678468999918, 49.35164351100007 ], [ -123.145470909999972, 49.351728807000079 ], [ -123.145237996999967, 49.351890999000034 ], [ -123.144861991999932, 49.351692896000024 ], [ -123.144649720999922, 49.35162202000005 ], [ -123.144331994999988, 49.351515907000056 ], [ -123.143759107999955, 49.351388211000071 ], [ -123.142765517999962, 49.351297116000055 ], [ -123.141966822999933, 49.351326423000067 ], [ -123.139495437999955, 49.351650110000023 ], [ -123.139437323999957, 49.352213326000061 ], [ -123.139217116999973, 49.352590201000069 ], [ -123.138650590999987, 49.353094003000059 ], [ -123.138468505999967, 49.353190005000037 ], [ -123.138241800999964, 49.353116490000119 ], [ -123.137913269999956, 49.353195524000121 ], [ -123.135095207999953, 49.353873412000048 ], [ -123.134381104999946, 49.354180493000108 ], [ -123.134296302999957, 49.354239654000075 ], [ -123.13362588699999, 49.354707197000025 ], [ -123.133301322999912, 49.354791299000041 ], [ -123.133032585999928, 49.354730196000048 ], [ -123.132607002999947, 49.354045197000083 ], [ -123.132775361999919, 49.353794546000088 ], [ -123.133066387999975, 49.353361221000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74472000", "BldgCostT": "51360000", "sL_LossRatio": "0.811984237810127", "sL_AssetLoss": "522770", "sL_BldgLoss": "424481", "sL_StrLoss": "235861", "sL_NStrLoss": "188620", "sL_ContLoss": "98289", "geom_point": "0101000020E6100000501A28F8BFC85EC09DB457BC64AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129895511999933, 49.34920268800002 ], [ -123.13116168799999, 49.34660380400004 ], [ -123.131594679999964, 49.345946193000039 ], [ -123.132218118999958, 49.345434904000093 ], [ -123.13294697799995, 49.344998601000057 ], [ -123.133997885999946, 49.34469589900003 ], [ -123.136026484999974, 49.344114689000051 ], [ -123.137444312999961, 49.343708307000092 ], [ -123.13831049, 49.343432209000106 ], [ -123.13898329099996, 49.343011387000082 ], [ -123.139223387999962, 49.342643979000087 ], [ -123.139584595999949, 49.34285529000006 ], [ -123.139936587999983, 49.343128479000072 ], [ -123.140388730999945, 49.34352586200005 ], [ -123.141117790999942, 49.34416659300004 ], [ -123.141136901999957, 49.344178903000063 ], [ -123.14161417899993, 49.344485905000099 ], [ -123.142054195999961, 49.344715513000054 ], [ -123.143922500999963, 49.34548270100003 ], [ -123.144481096, 49.345818994000048 ], [ -123.144692393999918, 49.346163195000031 ], [ -123.144893911999986, 49.346801588000091 ], [ -123.145289996999978, 49.347654086000084 ], [ -123.145538508999934, 49.348020990000052 ], [ -123.144265089999948, 49.348182791000113 ], [ -123.143390190000019, 49.34819841000008 ], [ -123.142329823999958, 49.348165899000065 ], [ -123.140989581, 49.34784164700006 ], [ -123.140394691999958, 49.347697695000143 ], [ -123.139182600999973, 49.347201804000051 ], [ -123.138499798999987, 49.346827089000072 ], [ -123.136872117999971, 49.34744419500003 ], [ -123.136469818999956, 49.347628092000079 ], [ -123.136226685999958, 49.347776499000098 ], [ -123.135498094999917, 49.348207508000073 ], [ -123.134621215999971, 49.348232902000049 ], [ -123.133756515999906, 49.348372993000055 ], [ -123.13323601699993, 49.34855459199999 ], [ -123.13281040899993, 49.348805385000034 ], [ -123.132483438999898, 49.349040787000064 ], [ -123.132194114999919, 49.34937897600004 ], [ -123.131746205999903, 49.350210055000034 ], [ -123.131359498, 49.351186858000048 ], [ -123.131079904999979, 49.351589273000123 ], [ -123.130720114999974, 49.351997557000068 ], [ -123.130426809999932, 49.352178040000119 ], [ -123.130150347999944, 49.352330136000084 ], [ -123.129754330999958, 49.352467754000038 ], [ -123.12855651199996, 49.352884011000114 ], [ -123.129210507999986, 49.350772297000049 ], [ -123.129636406999964, 49.349796401000056 ], [ -123.129895511999933, 49.34920268800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79240750", "BldgCostT": "54385000", "sL_LossRatio": "0.730159512225165", "sL_AssetLoss": "1623700", "sL_BldgLoss": "1185560", "sL_StrLoss": "511260", "sL_NStrLoss": "674300", "sL_ContLoss": "438140", "geom_point": "0101000020E61000000EAB15F977C85EC04602DBFBB3AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128496100999939, 49.340987909000077 ], [ -123.128193224999976, 49.340812404000097 ], [ -123.127291503999928, 49.341063084000012 ], [ -123.126537275999979, 49.341176299000033 ], [ -123.125810391999906, 49.341136306000124 ], [ -123.125519785999984, 49.341051095000033 ], [ -123.125187410999928, 49.340820694000143 ], [ -123.125142494999977, 49.340745692000041 ], [ -123.125192093999942, 49.340412889000106 ], [ -123.125272297, 49.340367275000041 ], [ -123.125618605999989, 49.34017021100005 ], [ -123.126023866999944, 49.34005487400001 ], [ -123.126318993999973, 49.339970909000087 ], [ -123.126719110999943, 49.339908603000019 ], [ -123.126649507999929, 49.339700497000088 ], [ -123.126660997999963, 49.339515292000087 ], [ -123.126804292999964, 49.33913451300004 ], [ -123.127281707999913, 49.338758094000035 ], [ -123.127799303999936, 49.338510699000039 ], [ -123.128907595999976, 49.338124015000112 ], [ -123.129261190999927, 49.338013601000057 ], [ -123.12940774499999, 49.337668988000132 ], [ -123.12969174600002, 49.337540608000104 ], [ -123.130350026999963, 49.337650767000135 ], [ -123.131127943999957, 49.337709266000033 ], [ -123.133722741999932, 49.337747122000103 ], [ -123.134307515999964, 49.33775564200004 ], [ -123.134386604999989, 49.337756798 ], [ -123.134674746999963, 49.337760997000089 ], [ -123.134664928999939, 49.338030920000065 ], [ -123.134664298999894, 49.33826328400005 ], [ -123.134651510999973, 49.340471269000084 ], [ -123.134621238999955, 49.341005444000061 ], [ -123.134909657999941, 49.341013987000032 ], [ -123.135843010999963, 49.341059819000087 ], [ -123.136265103999932, 49.34108053000007 ], [ -123.136776068999893, 49.341162498000116 ], [ -123.137062151999942, 49.341228285000078 ], [ -123.137298428999884, 49.341282612000043 ], [ -123.13773658799991, 49.341384272000084 ], [ -123.138273630999933, 49.341601141000105 ], [ -123.13864984199995, 49.341793020000033 ], [ -123.139008531999977, 49.342045682000105 ], [ -123.139201099999966, 49.342269635000079 ], [ -123.139251140999932, 49.342461901000135 ], [ -123.139223387999962, 49.342643979000087 ], [ -123.13898329099996, 49.343011387000082 ], [ -123.13831049, 49.343432209000106 ], [ -123.137444312999961, 49.343708307000092 ], [ -123.136026484999974, 49.344114689000051 ], [ -123.133997885999946, 49.34469589900003 ], [ -123.13294697799995, 49.344998601000057 ], [ -123.132218118999958, 49.345434904000093 ], [ -123.131594679999964, 49.345946193000039 ], [ -123.13116168799999, 49.34660380400004 ], [ -123.130530894999978, 49.346414713000058 ], [ -123.13037398499992, 49.346367704000038 ], [ -123.130153222999979, 49.346256776000104 ], [ -123.130142259999943, 49.34625124600008 ], [ -123.130071120999958, 49.346215495000095 ], [ -123.129917734999978, 49.346008728000072 ], [ -123.129893307999964, 49.345975809000088 ], [ -123.129892516999988, 49.345654193000023 ], [ -123.130513899, 49.344733190000063 ], [ -123.13071308499994, 49.344331734000036 ], [ -123.130733992999978, 49.344289611000072 ], [ -123.130794098999942, 49.343919207000084 ], [ -123.130771899999928, 49.343612403000108 ], [ -123.130453599999953, 49.342996098000093 ], [ -123.129353235999943, 49.341792523000038 ], [ -123.129145581999964, 49.34156538700006 ], [ -123.128496100999939, 49.340987909000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123317811", "BldgCostT": "82268190", "sL_LossRatio": "0.811381264544289", "sL_AssetLoss": "601181", "sL_BldgLoss": "487787", "sL_StrLoss": "284537", "sL_NStrLoss": "203250", "sL_ContLoss": "113394", "geom_point": "0101000020E61000003B93E30C0DC85EC0EBC82EA405AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118305688999939, 49.359129095000107 ], [ -123.118643500999966, 49.359010207000104 ], [ -123.118882288999913, 49.358977804000034 ], [ -123.119888801999934, 49.359129798000048 ], [ -123.120172380999961, 49.359151790000077 ], [ -123.120600075999974, 49.359135195000086 ], [ -123.121034735999913, 49.359040303000072 ], [ -123.121099803, 49.359026106000051 ], [ -123.121593688999965, 49.358875320000081 ], [ -123.121706189999955, 49.358792694000066 ], [ -123.121981499999904, 49.358505606000058 ], [ -123.121799078999956, 49.358405192000056 ], [ -123.121648495999978, 49.358281482000038 ], [ -123.121275214999955, 49.357688807000052 ], [ -123.12085543499991, 49.356553416000104 ], [ -123.120719009999988, 49.356184398000082 ], [ -123.12069401699999, 49.356084159000062 ], [ -123.120283892999964, 49.35443820000004 ], [ -123.120193982999965, 49.353560397000059 ], [ -123.120252397999963, 49.35273161100011 ], [ -123.120353689999916, 49.352032698000102 ], [ -123.12047167899999, 49.351193066000114 ], [ -123.120501077999975, 49.350983775000024 ], [ -123.120538896999946, 49.350714705000065 ], [ -123.120594965999913, 49.35044850600007 ], [ -123.120746331999953, 49.349730162000078 ], [ -123.120779101, 49.349574603000086 ], [ -123.120966502999948, 49.349040105000064 ], [ -123.12136359499999, 49.348297701000043 ], [ -123.121828191999967, 49.347532885000092 ], [ -123.121910847999942, 49.347332252000058 ], [ -123.121949701999966, 49.347237995000071 ], [ -123.122247780999942, 49.34687130100005 ], [ -123.123042199999958, 49.346224208000059 ], [ -123.123796094999932, 49.345705557000031 ], [ -123.12538406199999, 49.344613105000093 ], [ -123.125956449999933, 49.34421668600001 ], [ -123.126820685999974, 49.343347496000042 ], [ -123.126866373999945, 49.343301552000092 ], [ -123.12707309299995, 49.343093288000077 ], [ -123.12805829399997, 49.342100303000045 ], [ -123.128324271999986, 49.341938006000049 ], [ -123.129145581999964, 49.34156538700006 ], [ -123.129353235999943, 49.341792523000038 ], [ -123.130453599999953, 49.342996098000093 ], [ -123.130771899999928, 49.343612403000108 ], [ -123.130794098999942, 49.343919207000084 ], [ -123.130733992999978, 49.344289611000072 ], [ -123.13071308499994, 49.344331734000036 ], [ -123.130513899, 49.344733190000063 ], [ -123.129892516999988, 49.345654193000023 ], [ -123.129893307999964, 49.345975809000088 ], [ -123.129917734999978, 49.346008728000072 ], [ -123.130071120999958, 49.346215495000095 ], [ -123.130142259999943, 49.34625124600008 ], [ -123.130153222999979, 49.346256776000104 ], [ -123.13037398499992, 49.346367704000038 ], [ -123.130530894999978, 49.346414713000058 ], [ -123.13116168799999, 49.34660380400004 ], [ -123.129895511999933, 49.34920268800002 ], [ -123.129636406999964, 49.349796401000056 ], [ -123.129210507999986, 49.350772297000049 ], [ -123.12855651199996, 49.352884011000114 ], [ -123.129754330999958, 49.352467754000038 ], [ -123.130150347999944, 49.352330136000084 ], [ -123.130426809999932, 49.352178040000119 ], [ -123.130720114999974, 49.351997557000068 ], [ -123.131079904999979, 49.351589273000123 ], [ -123.131359498, 49.351186858000048 ], [ -123.131746205999903, 49.350210055000034 ], [ -123.132194114999919, 49.34937897600004 ], [ -123.132483438999898, 49.349040787000064 ], [ -123.13281040899993, 49.348805385000034 ], [ -123.13323601699993, 49.34855459199999 ], [ -123.133756515999906, 49.348372993000055 ], [ -123.134621215999971, 49.348232902000049 ], [ -123.135498094999917, 49.348207508000073 ], [ -123.135089220999944, 49.348520890000074 ], [ -123.134428903999975, 49.349227502000055 ], [ -123.13422282399992, 49.349511110000066 ], [ -123.133698430999985, 49.350467211000144 ], [ -123.133219539999942, 49.351644211000057 ], [ -123.133254470999987, 49.351813548000081 ], [ -123.133407185999943, 49.352058962000093 ], [ -123.133485837999913, 49.352300607000124 ], [ -123.133461466999975, 49.35258277800002 ], [ -123.133066387999975, 49.353361221000085 ], [ -123.132775361999919, 49.353794546000088 ], [ -123.132607002999947, 49.354045197000083 ], [ -123.132329498999951, 49.354236911000051 ], [ -123.131979117999919, 49.354404998000042 ], [ -123.129905302999944, 49.35515060500007 ], [ -123.128722693999947, 49.355575003000077 ], [ -123.127979517999961, 49.356038799000039 ], [ -123.127540713, 49.356390094000083 ], [ -123.127285084999968, 49.356671500000118 ], [ -123.126942279999952, 49.35727029800006 ], [ -123.126563584999957, 49.357760113000026 ], [ -123.126297995999948, 49.357892712000073 ], [ -123.125972891999965, 49.357919105000079 ], [ -123.125815416999927, 49.357861796000073 ], [ -123.125324691999978, 49.35767140600008 ], [ -123.12504269499999, 49.357934882000094 ], [ -123.124343090999972, 49.358448607000049 ], [ -123.123715503999918, 49.358801206000081 ], [ -123.123629130999916, 49.359571560000056 ], [ -123.123621047999961, 49.359643799000075 ], [ -123.123612965999939, 49.359716038000101 ], [ -123.123605937999983, 49.359778661000043 ], [ -123.12359199499997, 49.359902902000151 ], [ -123.122721193999965, 49.360512891000106 ], [ -123.122620969999943, 49.360575995000048 ], [ -123.122262805, 49.36080150700009 ], [ -123.121027523999956, 49.360784806 ], [ -123.120898195999942, 49.360826947000092 ], [ -123.120830810999976, 49.36084889500011 ], [ -123.120639601999983, 49.361267990000094 ], [ -123.120467576999914, 49.361554301000133 ], [ -123.120302081999967, 49.36171379900005 ], [ -123.119978074999906, 49.361942093000067 ], [ -123.118566606999963, 49.362500707000038 ], [ -123.118216492999963, 49.362707508000035 ], [ -123.11799788299993, 49.362790793000016 ], [ -123.118000009999975, 49.361651595000133 ], [ -123.117997684999978, 49.360471797000073 ], [ -123.11800060299997, 49.360462927000071 ], [ -123.118181049999961, 49.359914913000061 ], [ -123.118257507999957, 49.359682611000089 ], [ -123.118261417000028, 49.35963765500005 ], [ -123.11826600199997, 49.359584964000106 ], [ -123.118305688999939, 49.359129095000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121577728", "BldgCostT": "80279857", "sL_LossRatio": "0.708646525939227", "sL_AssetLoss": "2282142", "sL_BldgLoss": "1617232", "sL_StrLoss": "686472", "sL_NStrLoss": "930760", "sL_ContLoss": "664910", "geom_point": "0101000020E610000074DE422E23C95EC0926AC09CB0AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134674746999963, 49.337760997000089 ], [ -123.134679825999953, 49.337612539000133 ], [ -123.134967456999931, 49.337633663000069 ], [ -123.134962678999898, 49.337777638000055 ], [ -123.135254573999987, 49.337797532000138 ], [ -123.136577011999961, 49.337887780000067 ], [ -123.137918192999962, 49.337979300000079 ], [ -123.138841411, 49.338068719000042 ], [ -123.138950438, 49.338079267000097 ], [ -123.139097946999968, 49.338093565000115 ], [ -123.139809000999975, 49.338162415000042 ], [ -123.139890775999973, 49.338170330000089 ], [ -123.140682514999966, 49.338247006000053 ], [ -123.143133083999942, 49.338435541000116 ], [ -123.144440491999944, 49.338536119000089 ], [ -123.144622564999949, 49.338550131000105 ], [ -123.14544408299993, 49.338613286000111 ], [ -123.146467105999974, 49.338804190000097 ], [ -123.147189206999911, 49.339055686000044 ], [ -123.148006085999981, 49.339464504000048 ], [ -123.149507185999937, 49.340404712000108 ], [ -123.150495757, 49.341101020000082 ], [ -123.150641493999927, 49.341203705000069 ], [ -123.150775001999989, 49.34127028500005 ], [ -123.151050588999951, 49.341755805000034 ], [ -123.150193304999945, 49.34175570700009 ], [ -123.148610596999958, 49.341759001000099 ], [ -123.148616072, 49.342630891000105 ], [ -123.148617098999949, 49.34350819400008 ], [ -123.14860220099996, 49.343683193000082 ], [ -123.148577280999959, 49.343975394000068 ], [ -123.148314616999954, 49.344108100000035 ], [ -123.147979102999926, 49.344372090000036 ], [ -123.147247500999981, 49.345122008 ], [ -123.146985108999957, 49.345328005000063 ], [ -123.146732671, 49.34552625599999 ], [ -123.146593890999966, 49.34563520500005 ], [ -123.14620429799993, 49.345860006000031 ], [ -123.146094585999975, 49.345905261000055 ], [ -123.145773584999958, 49.346037708000019 ], [ -123.145353201999924, 49.346115785000066 ], [ -123.145278200999911, 49.346121168000082 ], [ -123.14526209899999, 49.346122338000093 ], [ -123.144692393999918, 49.346163195000031 ], [ -123.144481096, 49.345818994000048 ], [ -123.143922500999963, 49.34548270100003 ], [ -123.142054195999961, 49.344715513000054 ], [ -123.14161417899993, 49.344485905000099 ], [ -123.141136901999957, 49.344178903000063 ], [ -123.141117790999942, 49.34416659300004 ], [ -123.140388730999945, 49.34352586200005 ], [ -123.139936587999983, 49.343128479000072 ], [ -123.139584595999949, 49.34285529000006 ], [ -123.139223387999962, 49.342643979000087 ], [ -123.139251140999932, 49.342461901000135 ], [ -123.139201099999966, 49.342269635000079 ], [ -123.139008531999977, 49.342045682000105 ], [ -123.13864984199995, 49.341793020000033 ], [ -123.138273630999933, 49.341601141000105 ], [ -123.13773658799991, 49.341384272000084 ], [ -123.137298428999884, 49.341282612000043 ], [ -123.137062151999942, 49.341228285000078 ], [ -123.136776068999893, 49.341162498000116 ], [ -123.136265103999932, 49.34108053000007 ], [ -123.135843010999963, 49.341059819000087 ], [ -123.134909657999941, 49.341013987000032 ], [ -123.134621238999955, 49.341005444000061 ], [ -123.134651510999973, 49.340471269000084 ], [ -123.134664298999894, 49.33826328400005 ], [ -123.134664928999939, 49.338030920000065 ], [ -123.134674746999963, 49.337760997000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79737894", "BldgCostT": "53426523", "sL_LossRatio": "0.769383009835264", "sL_AssetLoss": "679087", "sL_BldgLoss": "522478", "sL_StrLoss": "261388", "sL_NStrLoss": "261090", "sL_ContLoss": "156609", "geom_point": "0101000020E610000021DED7D4BBC95EC0A1F88C9F21AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146586499999898, 49.34669319800004 ], [ -123.146593689999946, 49.346464607000044 ], [ -123.14668808, 49.346339210000075 ], [ -123.146802469999898, 49.346274603000097 ], [ -123.146890585000023, 49.346224796000037 ], [ -123.14695187099997, 49.346198707000028 ], [ -123.147217108999968, 49.346085682000115 ], [ -123.147373589000026, 49.346046587000039 ], [ -123.147247500999981, 49.345122008 ], [ -123.147979102999926, 49.344372090000036 ], [ -123.148314616999954, 49.344108100000035 ], [ -123.148577280999959, 49.343975394000068 ], [ -123.14860220099996, 49.343683193000082 ], [ -123.148617098999949, 49.34350819400008 ], [ -123.148616072, 49.342630891000105 ], [ -123.148610596999958, 49.341759001000099 ], [ -123.150193304999945, 49.34175570700009 ], [ -123.151050588999951, 49.341755805000034 ], [ -123.150775001999989, 49.34127028500005 ], [ -123.151282335999937, 49.341523918000085 ], [ -123.151750805999882, 49.341758089000102 ], [ -123.15259329, 49.342179186000067 ], [ -123.153853892999933, 49.342647389000071 ], [ -123.154157253999955, 49.342722005000134 ], [ -123.154260420999918, 49.342747375000101 ], [ -123.155108107999979, 49.342955852000088 ], [ -123.15548200799995, 49.343047793000032 ], [ -123.15571528599996, 49.343239981000067 ], [ -123.156484216999928, 49.343479673000097 ], [ -123.156858293999903, 49.343596269000052 ], [ -123.156896305999936, 49.344106298000035 ], [ -123.1568861799999, 49.344500012000111 ], [ -123.156881464999955, 49.344683191000037 ], [ -123.156878970999955, 49.344813090000088 ], [ -123.156877768999919, 49.344876053000085 ], [ -123.156867494999929, 49.345405092000043 ], [ -123.15858568799996, 49.345422303000085 ], [ -123.159194487, 49.345428401000049 ], [ -123.159284801999959, 49.345482088000068 ], [ -123.159272324999961, 49.345529504000126 ], [ -123.158652612999944, 49.345985201000097 ], [ -123.15841809299998, 49.346105986000126 ], [ -123.158255704999959, 49.346150410000057 ], [ -123.156357795999966, 49.346376115000076 ], [ -123.155963225999983, 49.346505296000011 ], [ -123.155571311999964, 49.346679598000073 ], [ -123.155044912999969, 49.346958386000033 ], [ -123.154559708999926, 49.347127606000093 ], [ -123.153837687999939, 49.347119401000036 ], [ -123.153757083999963, 49.347020900000139 ], [ -123.153501990999956, 49.346916009000047 ], [ -123.153280491999965, 49.346893098000052 ], [ -123.152599804999937, 49.346884191000107 ], [ -123.15245797299994, 49.346868817000036 ], [ -123.152226585999969, 49.34684370300004 ], [ -123.15144758299999, 49.346710592000143 ], [ -123.151340099999956, 49.346824909000077 ], [ -123.151229981999947, 49.346891295000063 ], [ -123.150617213999951, 49.347120989000061 ], [ -123.149989790999911, 49.347298111000022 ], [ -123.147951611999957, 49.347275895000038 ], [ -123.147286513999958, 49.347192594000013 ], [ -123.14726398, 49.347184342000048 ], [ -123.146855804999916, 49.347034407000109 ], [ -123.146586499999898, 49.34669319800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105677583", "BldgCostT": "69723333", "sL_LossRatio": "0.742201307488244", "sL_AssetLoss": "1400395", "sL_BldgLoss": "1039375", "sL_StrLoss": "464735", "sL_NStrLoss": "574640", "sL_ContLoss": "361020", "geom_point": "0101000020E61000007E883695BFC95EC01040E6DA82AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140785084999919, 49.338066931000093 ], [ -123.14303750299996, 49.338034583000145 ], [ -123.143298208999965, 49.338112613000135 ], [ -123.145866907999959, 49.338117389000033 ], [ -123.148500512999959, 49.338134977000038 ], [ -123.149133950999897, 49.338139186000028 ], [ -123.150239724999935, 49.338146534000046 ], [ -123.150254505999925, 49.338146641000058 ], [ -123.15129469399993, 49.33815356300002 ], [ -123.151423470999944, 49.338154410000065 ], [ -123.151437246999947, 49.338154491000125 ], [ -123.154133804999972, 49.338159810000072 ], [ -123.156937623999937, 49.338166017000084 ], [ -123.156915606999945, 49.339085903000111 ], [ -123.156911817999955, 49.3399765 ], [ -123.156906693999957, 49.340889601000057 ], [ -123.156886206999985, 49.341805807000107 ], [ -123.15687569, 49.342021719000059 ], [ -123.156780097999928, 49.342233505000124 ], [ -123.15671803399999, 49.342303624000081 ], [ -123.156575993000033, 49.342464114000087 ], [ -123.156372311999974, 49.342645191000045 ], [ -123.156177504999945, 49.34274640700005 ], [ -123.156034302999913, 49.342812249000076 ], [ -123.155696107999958, 49.342967810000118 ], [ -123.155633119999976, 49.342991324000096 ], [ -123.15548200799995, 49.343047793000032 ], [ -123.155108107999979, 49.342955852000088 ], [ -123.154260420999918, 49.342747375000101 ], [ -123.154157253999955, 49.342722005000134 ], [ -123.153853892999933, 49.342647389000071 ], [ -123.15259329, 49.342179186000067 ], [ -123.151750805999882, 49.341758089000102 ], [ -123.151282335999937, 49.341523918000085 ], [ -123.150775001999989, 49.34127028500005 ], [ -123.150641493999927, 49.341203705000069 ], [ -123.150495757, 49.341101020000082 ], [ -123.149507185999937, 49.340404712000108 ], [ -123.148006085999981, 49.339464504000048 ], [ -123.147189206999911, 49.339055686000044 ], [ -123.146467105999974, 49.338804190000097 ], [ -123.14544408299993, 49.338613286000111 ], [ -123.144622564999949, 49.338550131000105 ], [ -123.144440491999944, 49.338536119000089 ], [ -123.143133083999942, 49.338435541000116 ], [ -123.140682514999966, 49.338247006000053 ], [ -123.139890775999973, 49.338170330000089 ], [ -123.139809000999975, 49.338162415000042 ], [ -123.140673125, 49.338077867000024 ], [ -123.140785084999919, 49.338066931000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78360417", "BldgCostT": "54041667", "sL_LossRatio": "0.77222121045229", "sL_AssetLoss": "911494", "sL_BldgLoss": "703875", "sL_StrLoss": "336195", "sL_NStrLoss": "367680", "sL_ContLoss": "207619", "geom_point": "0101000020E610000027DB44564CCA5EC0503328C386AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.163959631999987, 49.338202766000094 ], [ -123.164556706999932, 49.338204904000044 ], [ -123.164551282999952, 49.339416998000075 ], [ -123.164585395999978, 49.340096116000019 ], [ -123.165401791999926, 49.340920813000061 ], [ -123.165490587999955, 49.340997906000069 ], [ -123.165467119999974, 49.341831196000037 ], [ -123.16452029299991, 49.341832497000034 ], [ -123.16302178799999, 49.341831895000084 ], [ -123.160639810999953, 49.341811425000117 ], [ -123.160621677999941, 49.341811266000022 ], [ -123.159705910999918, 49.341803394000067 ], [ -123.156886206999985, 49.341805807000107 ], [ -123.156906693999957, 49.340889601000057 ], [ -123.156911817999955, 49.3399765 ], [ -123.156915606999945, 49.339085903000111 ], [ -123.156937623999937, 49.338166017000084 ], [ -123.159802097999972, 49.338181079000023 ], [ -123.160022469999959, 49.33818223400008 ], [ -123.160358697999968, 49.338183992000069 ], [ -123.161756760999964, 49.338191284000082 ], [ -123.162445127999916, 49.338194906000069 ], [ -123.162882419999917, 49.338197186000031 ], [ -123.163945839999883, 49.338202724000034 ], [ -123.163959631999987, 49.338202766000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120117917", "BldgCostT": "79891667", "sL_LossRatio": "0.796498192265989", "sL_AssetLoss": "821747", "sL_BldgLoss": "654520", "sL_StrLoss": "351080", "sL_NStrLoss": "303440", "sL_ContLoss": "167227", "geom_point": "0101000020E6100000F26789DF5ECA5EC02FFEF8431AAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15893823, 49.34702660400005 ], [ -123.158800993999961, 49.347019408000094 ], [ -123.158311502999979, 49.347101983000123 ], [ -123.157957079, 49.347091795000061 ], [ -123.156340907999891, 49.34680789100009 ], [ -123.155741490999958, 49.346663300000024 ], [ -123.155571311999964, 49.346679598000073 ], [ -123.155963225999983, 49.346505296000011 ], [ -123.156357795999966, 49.346376115000076 ], [ -123.158255704999959, 49.346150410000057 ], [ -123.15841809299998, 49.346105986000126 ], [ -123.158652612999944, 49.345985201000097 ], [ -123.159272324999961, 49.345529504000126 ], [ -123.159284801999959, 49.345482088000068 ], [ -123.159194487, 49.345428401000049 ], [ -123.15858568799996, 49.345422303000085 ], [ -123.156867494999929, 49.345405092000043 ], [ -123.156877768999919, 49.344876053000085 ], [ -123.156878970999955, 49.344813090000088 ], [ -123.156881464999955, 49.344683191000037 ], [ -123.1568861799999, 49.344500012000111 ], [ -123.156896305999936, 49.344106298000035 ], [ -123.156858293999903, 49.343596269000052 ], [ -123.156484216999928, 49.343479673000097 ], [ -123.15571528599996, 49.343239981000067 ], [ -123.15548200799995, 49.343047793000032 ], [ -123.155633119999976, 49.342991324000096 ], [ -123.155696107999958, 49.342967810000118 ], [ -123.156034302999913, 49.342812249000076 ], [ -123.156177504999945, 49.34274640700005 ], [ -123.156372311999974, 49.342645191000045 ], [ -123.156575993000033, 49.342464114000087 ], [ -123.15671803399999, 49.342303624000081 ], [ -123.156780097999928, 49.342233505000124 ], [ -123.15687569, 49.342021719000059 ], [ -123.156886206999985, 49.341805807000107 ], [ -123.159705910999918, 49.341803394000067 ], [ -123.160621677999941, 49.341811266000022 ], [ -123.160639810999953, 49.341811425000117 ], [ -123.16302178799999, 49.341831895000084 ], [ -123.16452029299991, 49.341832497000034 ], [ -123.165467119999974, 49.341831196000037 ], [ -123.166228754999963, 49.341836586000049 ], [ -123.166518018999938, 49.341838643000116 ], [ -123.166565907999924, 49.34183897400009 ], [ -123.166958449999967, 49.341841745000096 ], [ -123.167956737999958, 49.341848752000104 ], [ -123.167848632999934, 49.342424100000109 ], [ -123.167846475999937, 49.342469163000025 ], [ -123.167836622999943, 49.342676398000087 ], [ -123.16781986099997, 49.343029451000078 ], [ -123.167819269999981, 49.343758929000096 ], [ -123.167819977999898, 49.343819244000024 ], [ -123.167820716999984, 49.34388226400003 ], [ -123.167820813999953, 49.343891365000076 ], [ -123.167826980999934, 49.344195000000113 ], [ -123.167826531999978, 49.344204090000098 ], [ -123.167819551999941, 49.344338606000051 ], [ -123.167811395999962, 49.344495426000037 ], [ -123.167801902999955, 49.344533077000037 ], [ -123.16778289299999, 49.344608558000033 ], [ -123.16778050399995, 49.344618006000061 ], [ -123.167715087999966, 49.3446739010001 ], [ -123.16760598799999, 49.344703505000041 ], [ -123.167166216999973, 49.344648706000079 ], [ -123.166596897999938, 49.344620311000121 ], [ -123.165890594999979, 49.344691902000129 ], [ -123.165772475999972, 49.344720314000021 ], [ -123.164901800999985, 49.344929787000112 ], [ -123.164264798999923, 49.345016698000094 ], [ -123.164120107999963, 49.344996712000054 ], [ -123.163959294000023, 49.345218489000075 ], [ -123.16394349299999, 49.345431511000065 ], [ -123.166728513999914, 49.345437012000048 ], [ -123.166882706999942, 49.345459097000102 ], [ -123.1670376899999, 49.34551268900011 ], [ -123.167171580999977, 49.3456412950001 ], [ -123.16722071599996, 49.345782193000083 ], [ -123.167208715999934, 49.345910706000055 ], [ -123.167152784999985, 49.346037998000106 ], [ -123.167029390999943, 49.346165392000039 ], [ -123.16689310199996, 49.346256382000064 ], [ -123.166702810999979, 49.346329686000082 ], [ -123.16643141199998, 49.346379385000049 ], [ -123.165710196999896, 49.346447810000079 ], [ -123.163467986999947, 49.346431311000046 ], [ -123.163203492999955, 49.346481091 ], [ -123.163036408999929, 49.346580290000048 ], [ -123.163006893999977, 49.346657900000061 ], [ -123.163026103000021, 49.346793485000056 ], [ -123.163240804999958, 49.346951294000078 ], [ -123.163715614999944, 49.347107002000044 ], [ -123.165508978, 49.347487206000096 ], [ -123.165692986999943, 49.347583903000029 ], [ -123.166213807999981, 49.347776816000078 ], [ -123.166970805999966, 49.347955106000057 ], [ -123.16704479, 49.348139898000049 ], [ -123.167026796999977, 49.348209711 ], [ -123.166957277, 49.348287999000036 ], [ -123.166741891999962, 49.348366994000052 ], [ -123.165156703999955, 49.348520893000092 ], [ -123.164618096999959, 49.348326612000079 ], [ -123.163217581999973, 49.34793600600009 ], [ -123.16270598399997, 49.347817195000104 ], [ -123.162587420999941, 49.347801188000098 ], [ -123.162474016, 49.347785913000045 ], [ -123.160409307999913, 49.347723592000051 ], [ -123.160156726000011, 49.347672235000083 ], [ -123.160143376999926, 49.347669525000065 ], [ -123.160012411999944, 49.347642913000051 ], [ -123.159046402999962, 49.347058219000083 ], [ -123.15893823, 49.34702660400005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86134084", "BldgCostT": "59193334", "sL_LossRatio": "0.848450808956626", "sL_AssetLoss": "366329.9", "sL_BldgLoss": "310812.9", "sL_StrLoss": "194993.9", "sL_NStrLoss": "115819", "sL_ContLoss": "55517", "geom_point": "0101000020E610000070FFFC84D4C95EC06D6CC03195AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146302392999985, 49.349180392000051 ], [ -123.146072606999894, 49.348667293000084 ], [ -123.145538508999934, 49.348020990000052 ], [ -123.145289996999978, 49.347654086000084 ], [ -123.144893911999986, 49.346801588000091 ], [ -123.144692393999918, 49.346163195000031 ], [ -123.14526209899999, 49.346122338000093 ], [ -123.145278200999911, 49.346121168000082 ], [ -123.145353201999924, 49.346115785000066 ], [ -123.145773584999958, 49.346037708000019 ], [ -123.146094585999975, 49.345905261000055 ], [ -123.14620429799993, 49.345860006000031 ], [ -123.146593890999966, 49.34563520500005 ], [ -123.146732671, 49.34552625599999 ], [ -123.146985108999957, 49.345328005000063 ], [ -123.147247500999981, 49.345122008 ], [ -123.147373589000026, 49.346046587000039 ], [ -123.147217108999968, 49.346085682000115 ], [ -123.14695187099997, 49.346198707000028 ], [ -123.146890585000023, 49.346224796000037 ], [ -123.146802469999898, 49.346274603000097 ], [ -123.14668808, 49.346339210000075 ], [ -123.146593689999946, 49.346464607000044 ], [ -123.146586499999898, 49.34669319800004 ], [ -123.146855804999916, 49.347034407000109 ], [ -123.14726398, 49.347184342000048 ], [ -123.147286513999958, 49.347192594000013 ], [ -123.147951611999957, 49.347275895000038 ], [ -123.149989790999911, 49.347298111000022 ], [ -123.150617213999951, 49.347120989000061 ], [ -123.151229981999947, 49.346891295000063 ], [ -123.151340099999956, 49.346824909000077 ], [ -123.15144758299999, 49.346710592000143 ], [ -123.152226585999969, 49.34684370300004 ], [ -123.15245797299994, 49.346868817000036 ], [ -123.152599804999937, 49.346884191000107 ], [ -123.153280491999965, 49.346893098000052 ], [ -123.153501990999956, 49.346916009000047 ], [ -123.153757083999963, 49.347020900000139 ], [ -123.153837687999939, 49.347119401000036 ], [ -123.154559708999926, 49.347127606000093 ], [ -123.155044912999969, 49.346958386000033 ], [ -123.155571311999964, 49.346679598000073 ], [ -123.155741490999958, 49.346663300000024 ], [ -123.156340907999891, 49.34680789100009 ], [ -123.157957079, 49.347091795000061 ], [ -123.158311502999979, 49.347101983000123 ], [ -123.158800993999961, 49.347019408000094 ], [ -123.15893823, 49.34702660400005 ], [ -123.159046402999962, 49.347058219000083 ], [ -123.160012411999944, 49.347642913000051 ], [ -123.160143376999926, 49.347669525000065 ], [ -123.160156726000011, 49.347672235000083 ], [ -123.160409307999913, 49.347723592000051 ], [ -123.162474016, 49.347785913000045 ], [ -123.162587420999941, 49.347801188000098 ], [ -123.16270598399997, 49.347817195000104 ], [ -123.163217581999973, 49.34793600600009 ], [ -123.164618096999959, 49.348326612000079 ], [ -123.165156703999955, 49.348520893000092 ], [ -123.163337207999973, 49.348701913000092 ], [ -123.163191195999914, 49.348770994000098 ], [ -123.163039013999963, 49.348896697000029 ], [ -123.16293525399999, 49.349124116000041 ], [ -123.162776709999918, 49.349471587000075 ], [ -123.161856189999952, 49.349683479000078 ], [ -123.160714803999923, 49.349946192000068 ], [ -123.160404713999966, 49.349960349000114 ], [ -123.160377849, 49.349961583000045 ], [ -123.16032698599993, 49.349963895000045 ], [ -123.160090078999986, 49.349921695000063 ], [ -123.159763458999976, 49.349820020000081 ], [ -123.158825990999958, 49.349528197000083 ], [ -123.158498881999918, 49.34947639500011 ], [ -123.157470807, 49.349431297000073 ], [ -123.156259985999924, 49.349498496000123 ], [ -123.155432417999975, 49.349544400000077 ], [ -123.154587712999927, 49.349538305000124 ], [ -123.153915296999969, 49.349484588000124 ], [ -123.151972703999917, 49.348979584000098 ], [ -123.151693289, 49.348980293000075 ], [ -123.151470594999935, 49.349021296000018 ], [ -123.150542308999945, 49.3493453070001 ], [ -123.15028492, 49.349323301000055 ], [ -123.150131814999938, 49.349239989000061 ], [ -123.149644305999956, 49.34966839500008 ], [ -123.149380792999978, 49.349835303000113 ], [ -123.148554482999955, 49.350259998000077 ], [ -123.147232452999916, 49.350939493000027 ], [ -123.147216734999986, 49.350947563000098 ], [ -123.146764100999988, 49.351180203000126 ], [ -123.146728878999937, 49.350478601000056 ], [ -123.146302392999985, 49.349180392000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "304985416", "BldgCostT": "208981666", "sL_LossRatio": "0.795873025404355", "sL_AssetLoss": "2331490", "sL_BldgLoss": "1855570", "sL_StrLoss": "810180", "sL_NStrLoss": "1045390", "sL_ContLoss": "475920", "geom_point": "0101000020E6100000767A5A5561C45EC0E1293F0430AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065985362, 49.34673569300007 ], [ -123.065985107999964, 49.345949909000083 ], [ -123.065987402999951, 49.345609512000046 ], [ -123.065988384999983, 49.34502860300011 ], [ -123.065988284999932, 49.344162195000067 ], [ -123.068513486999976, 49.344185688000024 ], [ -123.068523285999945, 49.343248297000052 ], [ -123.068638721999889, 49.343078501000051 ], [ -123.068958709999961, 49.342784596000122 ], [ -123.068772696999986, 49.342352605000016 ], [ -123.07190099499995, 49.342391513000059 ], [ -123.0718796, 49.343274383000093 ], [ -123.070036395999963, 49.343259592000095 ], [ -123.070018472999976, 49.345086600000052 ], [ -123.070486384, 49.345086594000115 ], [ -123.070411101000019, 49.34679849200009 ], [ -123.069699172999947, 49.34680449300005 ], [ -123.069255989999988, 49.346783495000039 ], [ -123.068496808999924, 49.346776405000071 ], [ -123.068482805999963, 49.347823498000068 ], [ -123.067684126999936, 49.347818833000112 ], [ -123.065985720999919, 49.347808898000025 ], [ -123.065985362, 49.34673569300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232528720", "BldgCostT": "158625413", "sL_LossRatio": "0.784637872016513", "sL_AssetLoss": "2141370", "sL_BldgLoss": "1680200", "sL_StrLoss": "713520", "sL_NStrLoss": "966680", "sL_ContLoss": "461170", "geom_point": "0101000020E61000009F9BBA1B59C45EC08BAD98F8C0AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070054789999972, 49.340141564000092 ], [ -123.071919286999957, 49.340143917000056 ], [ -123.071918323999981, 49.341464306000027 ], [ -123.07190099499995, 49.342391513000059 ], [ -123.068772696999986, 49.342352605000016 ], [ -123.068958709999961, 49.342784596000122 ], [ -123.068638721999889, 49.343078501000051 ], [ -123.068523285999945, 49.343248297000052 ], [ -123.067029717999972, 49.343255590000176 ], [ -123.066295402999984, 49.343463504000056 ], [ -123.06387619899999, 49.344286793000038 ], [ -123.063549105999968, 49.343736610000043 ], [ -123.063601391999924, 49.343497496000076 ], [ -123.063830201999906, 49.343254300000119 ], [ -123.06477490799989, 49.342852095000104 ], [ -123.064784903999936, 49.341935490000019 ], [ -123.064784603999939, 49.341027587000028 ], [ -123.066791786999929, 49.341037098000072 ], [ -123.066759695999934, 49.340131908000025 ], [ -123.06857289699991, 49.340139713000099 ], [ -123.069944676999981, 49.340141442000053 ], [ -123.06995843299994, 49.340141453000086 ], [ -123.070054789999972, 49.340141564000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122323943", "BldgCostT": "76366288", "sL_LossRatio": "0.705404935092054", "sL_AssetLoss": "1436650", "sL_BldgLoss": "1013420", "sL_StrLoss": "469860", "sL_NStrLoss": "543560", "sL_ContLoss": "423230", "geom_point": "0101000020E6100000A2DC53C556C45EC0CC9FB12768AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.064814706999982, 49.338317482000022 ], [ -123.064839286999927, 49.337430100000034 ], [ -123.06676288599999, 49.337429991000093 ], [ -123.06860610599999, 49.337441306000066 ], [ -123.068595167999945, 49.338329995000073 ], [ -123.071950804999943, 49.338339902000065 ], [ -123.071929787000016, 49.33928048900006 ], [ -123.071919286999957, 49.340143917000056 ], [ -123.070054789999972, 49.340141564000092 ], [ -123.06995843299994, 49.340141453000086 ], [ -123.069944676999981, 49.340141442000053 ], [ -123.06857289699991, 49.340139713000099 ], [ -123.066759695999934, 49.340131908000025 ], [ -123.066791786999929, 49.341037098000072 ], [ -123.064784603999939, 49.341027587000028 ], [ -123.06476481599999, 49.340125495000052 ], [ -123.064791508, 49.339226491000055 ], [ -123.064814706999982, 49.338317482000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83745145", "BldgCostT": "52931524", "sL_LossRatio": "0.676396492758926", "sL_AssetLoss": "1421060", "sL_BldgLoss": "961200", "sL_StrLoss": "417750", "sL_NStrLoss": "543450", "sL_ContLoss": "459860", "geom_point": "0101000020E610000023DB8EE366C45EC09F08E23C1CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068595167999945, 49.338329995000073 ], [ -123.06860610599999, 49.337441306000066 ], [ -123.06676288599999, 49.337429991000093 ], [ -123.064839286999927, 49.337430100000034 ], [ -123.064863908999882, 49.33652109500008 ], [ -123.064856901999988, 49.336348806000039 ], [ -123.06488788599998, 49.335642702 ], [ -123.065330911999965, 49.335643904000094 ], [ -123.066071084999962, 49.335645101000097 ], [ -123.066759288999918, 49.335640311000105 ], [ -123.068859785999933, 49.335649609000022 ], [ -123.070411598999939, 49.335654699000045 ], [ -123.0720103029999, 49.335657511000058 ], [ -123.07200068399996, 49.336134592000079 ], [ -123.071991194999953, 49.33652518800006 ], [ -123.071972478999925, 49.337451494000042 ], [ -123.071950804999943, 49.338339902000065 ], [ -123.068595167999945, 49.338329995000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "346230568", "BldgCostT": "235423896", "sL_LossRatio": "0.79944339649833", "sL_AssetLoss": "3122510", "sL_BldgLoss": "2496270", "sL_StrLoss": "1094080", "sL_NStrLoss": "1402190", "sL_ContLoss": "626240", "geom_point": "0101000020E6100000243AFD6603C45EC09B1EFBF681AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.064436800999943, 49.335639385000015 ], [ -123.06488788599998, 49.335642702 ], [ -123.064856901999988, 49.336348806000039 ], [ -123.064863908999882, 49.33652109500008 ], [ -123.064839286999927, 49.337430100000034 ], [ -123.064814706999982, 49.338317482000022 ], [ -123.064791508, 49.339226491000055 ], [ -123.06476481599999, 49.340125495000052 ], [ -123.064784603999939, 49.341027587000028 ], [ -123.064784903999936, 49.341935490000019 ], [ -123.06477490799989, 49.342852095000104 ], [ -123.063830201999906, 49.343254300000119 ], [ -123.063601391999924, 49.343497496000076 ], [ -123.063549105999968, 49.343736610000043 ], [ -123.06387619899999, 49.344286793000038 ], [ -123.063016788999974, 49.344577800000074 ], [ -123.060598996999929, 49.345377610000043 ], [ -123.060257683999964, 49.345398898000077 ], [ -123.060116598999954, 49.344846613000108 ], [ -123.060131095, 49.344725408000023 ], [ -123.060213399999967, 49.344622189000063 ], [ -123.060350417, 49.344524204000066 ], [ -123.060585212999911, 49.34442430200005 ], [ -123.061888807999964, 49.343985093000057 ], [ -123.062059816999948, 49.343826691000082 ], [ -123.062172402999934, 49.343571297000061 ], [ -123.062185909000021, 49.343141093000071 ], [ -123.062030176999968, 49.342840592000073 ], [ -123.061916106999945, 49.34275190500005 ], [ -123.061359910999954, 49.342560297000084 ], [ -123.060968596999956, 49.342438016000081 ], [ -123.06075929799999, 49.342309796000102 ], [ -123.060638680999944, 49.342149791000068 ], [ -123.06056969, 49.34184979800002 ], [ -123.060620591999935, 49.341025309000074 ], [ -123.060655292999954, 49.340110214000084 ], [ -123.060687409999929, 49.339215008000089 ], [ -123.060735001999944, 49.338312916000113 ], [ -123.060776411999939, 49.33737819700012 ], [ -123.060815793999922, 49.336498396000081 ], [ -123.060855289999921, 49.335615904000093 ], [ -123.063088904999972, 49.335630694000052 ], [ -123.063526311, 49.335633602 ], [ -123.064436800999943, 49.335639385000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108768167", "BldgCostT": "71626667", "sL_LossRatio": "0.716597102039431", "sL_AssetLoss": "1473450", "sL_BldgLoss": "1055870", "sL_StrLoss": "473780", "sL_NStrLoss": "582090", "sL_ContLoss": "417580", "geom_point": "0101000020E61000002F4377A415C45EC0248C4DC8DAAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05917549399993, 49.334701998000085 ], [ -123.060605395999971, 49.333894303000086 ], [ -123.061138789000026, 49.333836691000052 ], [ -123.061446691999976, 49.333863095000041 ], [ -123.061453488999931, 49.333387717000043 ], [ -123.062752686999929, 49.333606587000112 ], [ -123.062919613, 49.333634708000062 ], [ -123.063847001999932, 49.334047207000083 ], [ -123.065779306999914, 49.334060094000051 ], [ -123.068884080999936, 49.334092100000099 ], [ -123.068872800999941, 49.335009507000095 ], [ -123.068859785999933, 49.335649609000022 ], [ -123.066759288999918, 49.335640311000105 ], [ -123.066071084999962, 49.335645101000097 ], [ -123.065330911999965, 49.335643904000094 ], [ -123.06488788599998, 49.335642702 ], [ -123.064436800999943, 49.335639385000015 ], [ -123.063526311, 49.335633602 ], [ -123.063088904999972, 49.335630694000052 ], [ -123.060855289999921, 49.335615904000093 ], [ -123.058914720999951, 49.335601899000075 ], [ -123.05795649599996, 49.335587497000027 ], [ -123.05917549399993, 49.334701998000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104213501", "BldgCostT": "67930001", "sL_LossRatio": "0.739123177923668", "sL_AssetLoss": "1258180", "sL_BldgLoss": "929950", "sL_StrLoss": "426230", "sL_NStrLoss": "503720", "sL_ContLoss": "328230", "geom_point": "0101000020E6100000EF2931B6ADC35EC0F7E550AF29AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058914720999951, 49.335601899000075 ], [ -123.060855289999921, 49.335615904000093 ], [ -123.060815793999922, 49.336498396000081 ], [ -123.060776411999939, 49.33737819700012 ], [ -123.060735001999944, 49.338312916000113 ], [ -123.057902593000023, 49.338277290000079 ], [ -123.05786899499999, 49.339174301000106 ], [ -123.056222712999912, 49.339160978000088 ], [ -123.054499409999949, 49.339147407000056 ], [ -123.054592390999986, 49.337360309000132 ], [ -123.054682612999926, 49.335574006000051 ], [ -123.054862386999986, 49.335575208000122 ], [ -123.056395010999935, 49.335585496000085 ], [ -123.057082689999987, 49.335589793000054 ], [ -123.05795649599996, 49.335587497000027 ], [ -123.058914720999951, 49.335601899000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92425083", "BldgCostT": "60588333", "sL_LossRatio": "0.747960735517766", "sL_AssetLoss": "940290", "sL_BldgLoss": "703300", "sL_StrLoss": "336450", "sL_NStrLoss": "366850", "sL_ContLoss": "236990", "geom_point": "0101000020E6100000C1DF27F582C35EC0376CA52174AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052484922999923, 49.341699380000101 ], [ -123.052499350999966, 49.341472720000056 ], [ -123.052250466999979, 49.34146593300008 ], [ -123.051676501999964, 49.340894421000137 ], [ -123.051523421999889, 49.340742038000052 ], [ -123.051488870999947, 49.340473847000098 ], [ -123.051429171, 49.340010378000024 ], [ -123.051146893999913, 49.337400127000102 ], [ -123.051105375999924, 49.335856499000059 ], [ -123.051084721999942, 49.335560141000038 ], [ -123.05108384099999, 49.335551030000069 ], [ -123.051134646999969, 49.335551504000058 ], [ -123.051409676, 49.335554127000073 ], [ -123.051836470999959, 49.335558194000043 ], [ -123.052194491999899, 49.335561579000085 ], [ -123.05302900199996, 49.335569505000095 ], [ -123.054682612999926, 49.335574006000051 ], [ -123.054592390999986, 49.337360309000132 ], [ -123.054499409999949, 49.339147407000056 ], [ -123.056222712999912, 49.339160978000088 ], [ -123.05786899499999, 49.339174301000106 ], [ -123.057902593000023, 49.338277290000079 ], [ -123.060735001999944, 49.338312916000113 ], [ -123.060687409999929, 49.339215008000089 ], [ -123.060655292999954, 49.340110214000084 ], [ -123.057872395999979, 49.340095790000113 ], [ -123.057833353999939, 49.34102896800001 ], [ -123.057787724999969, 49.34211882000006 ], [ -123.05777940199998, 49.342317883000064 ], [ -123.057760156, 49.342420884000028 ], [ -123.057740070999955, 49.342528318000028 ], [ -123.057701691999952, 49.342733579000033 ], [ -123.057685612999947, 49.342819699000103 ], [ -123.056897692999911, 49.342818108000074 ], [ -123.056254506999935, 49.34281679200005 ], [ -123.054874509999976, 49.342823275000057 ], [ -123.054420116999964, 49.342825409000085 ], [ -123.054186195999989, 49.34282651900007 ], [ -123.054075976999968, 49.342827025000098 ], [ -123.053619629999957, 49.342829167000076 ], [ -123.052484922999923, 49.341699380000101 ] ], [ [ -123.054537790999959, 49.340817498000021 ], [ -123.054606030999977, 49.339744639000095 ], [ -123.053428162999936, 49.339745190000023 ], [ -123.05336196899999, 49.34078545400007 ], [ -123.054537790999959, 49.340817498000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134542833", "BldgCostT": "84978333", "sL_LossRatio": "0.796021507316457", "sL_AssetLoss": "554230", "sL_BldgLoss": "441179", "sL_StrLoss": "247289", "sL_NStrLoss": "193890", "sL_ContLoss": "113051", "geom_point": "0101000020E61000009E555D8F1BC35EC03C8994A88FAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.048337679999932, 49.34352319000007 ], [ -123.048458695999898, 49.341862993000092 ], [ -123.048462789999988, 49.341776601000099 ], [ -123.048499197999959, 49.3410111090001 ], [ -123.047707087999967, 49.341003891000106 ], [ -123.046523310999973, 49.341008505000062 ], [ -123.045940288999944, 49.340935798000046 ], [ -123.045117998, 49.340926896000049 ], [ -123.045092390999969, 49.341824089000063 ], [ -123.043774880999948, 49.341832195000094 ], [ -123.043581596999957, 49.341776485 ], [ -123.043631671999947, 49.340711026000079 ], [ -123.04363966499993, 49.340540822000037 ], [ -123.043665997999966, 49.339980204000028 ], [ -123.043804803999961, 49.340005603000108 ], [ -123.044298688999945, 49.340004869000062 ], [ -123.045025487999965, 49.340003800000055 ], [ -123.045095202999974, 49.337618098000064 ], [ -123.046442979999966, 49.337628789000107 ], [ -123.047732404999948, 49.337649580000075 ], [ -123.04768930099999, 49.338692286000082 ], [ -123.047755782999957, 49.338793195000093 ], [ -123.047892901999901, 49.338843785000051 ], [ -123.048328990999934, 49.338932196000052 ], [ -123.048917193999941, 49.338987007000092 ], [ -123.050423424999963, 49.338996605000055 ], [ -123.050617406999933, 49.338953297000074 ], [ -123.050705708999928, 49.338863807000095 ], [ -123.050713012999921, 49.338706400000106 ], [ -123.050417111999977, 49.337993997000105 ], [ -123.0503806, 49.337486789000081 ], [ -123.050449206999957, 49.335544985000077 ], [ -123.05108384099999, 49.335551030000069 ], [ -123.051084721999942, 49.335560141000038 ], [ -123.051105375999924, 49.335856499000059 ], [ -123.051146893999913, 49.337400127000102 ], [ -123.051429171, 49.340010378000024 ], [ -123.051488870999947, 49.340473847000098 ], [ -123.051523421999889, 49.340742038000052 ], [ -123.051676501999964, 49.340894421000137 ], [ -123.052250466999979, 49.34146593300008 ], [ -123.051934826999954, 49.341457326000047 ], [ -123.052103274999965, 49.341634762000062 ], [ -123.052249595999967, 49.341634696000128 ], [ -123.052249759999967, 49.341790322000037 ], [ -123.052438935999973, 49.342156863000049 ], [ -123.052442137999904, 49.342174313000029 ], [ -123.05245469299993, 49.342174308000089 ], [ -123.052484922999923, 49.341699380000101 ], [ -123.053619629999957, 49.342829167000076 ], [ -123.053580324, 49.34282934500002 ], [ -123.0523078, 49.342835310000105 ], [ -123.051677578999943, 49.342961825000053 ], [ -123.051213615, 49.343054991000074 ], [ -123.050370521999952, 49.343261591000079 ], [ -123.049170978999953, 49.343512589000056 ], [ -123.049092588999898, 49.343513594000015 ], [ -123.048337679999932, 49.34352319000007 ] ], [ [ -123.049544496999943, 49.34013299500004 ], [ -123.049199494999939, 49.340051889000094 ], [ -123.049061114, 49.340114493000073 ], [ -123.049241101999911, 49.340366601000078 ], [ -123.049515409999927, 49.340410809000126 ], [ -123.049667897999939, 49.340331008000184 ], [ -123.049544496999943, 49.34013299500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112906332", "BldgCostT": "73183332", "sL_LossRatio": "0.801450195720691", "sL_AssetLoss": "681839", "sL_BldgLoss": "546460", "sL_StrLoss": "310430", "sL_NStrLoss": "236030", "sL_ContLoss": "135379", "geom_point": "0101000020E6100000EBE33EC5F3C25EC094C61E903AAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043698000999939, 49.339134417000025 ], [ -123.043730304999926, 49.33821840500007 ], [ -123.042239793999954, 49.33817949900007 ], [ -123.042344488999916, 49.336368312000047 ], [ -123.043797985000012, 49.336403598000103 ], [ -123.04610695799991, 49.336420591000049 ], [ -123.049205888999964, 49.336443306000056 ], [ -123.049183893999938, 49.337436090000026 ], [ -123.049216805999919, 49.337675686000068 ], [ -123.0503806, 49.337486789000081 ], [ -123.050417111999977, 49.337993997000105 ], [ -123.050713012999921, 49.338706400000106 ], [ -123.050705708999928, 49.338863807000095 ], [ -123.050617406999933, 49.338953297000074 ], [ -123.050423424999963, 49.338996605000055 ], [ -123.048917193999941, 49.338987007000092 ], [ -123.048328990999934, 49.338932196000052 ], [ -123.047892901999901, 49.338843785000051 ], [ -123.047755782999957, 49.338793195000093 ], [ -123.04768930099999, 49.338692286000082 ], [ -123.047732404999948, 49.337649580000075 ], [ -123.046442979999966, 49.337628789000107 ], [ -123.045095202999974, 49.337618098000064 ], [ -123.045025487999965, 49.340003800000055 ], [ -123.044298688999945, 49.340004869000062 ], [ -123.043804803999961, 49.340005603000108 ], [ -123.043665997999966, 49.339980204000028 ], [ -123.043698000999939, 49.339134417000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257538146", "BldgCostT": "171041525", "sL_LossRatio": "0.75245491543143", "sL_AssetLoss": "1339150", "sL_BldgLoss": "1007650", "sL_StrLoss": "488170", "sL_NStrLoss": "519480", "sL_ContLoss": "331500", "geom_point": "0101000020E6100000F75F2879D8C25EC097836E6914AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040779621999917, 49.338140404000121 ], [ -123.040870281999972, 49.3363325 ], [ -123.039862222999986, 49.336310335000064 ], [ -123.039688609, 49.336306490000041 ], [ -123.041608249999925, 49.335281503000097 ], [ -123.04161890200001, 49.335275805000101 ], [ -123.043576748999968, 49.334229994000069 ], [ -123.043869710999985, 49.334505083000082 ], [ -123.043831300999926, 49.33549479300013 ], [ -123.045959383999943, 49.335502598000076 ], [ -123.049163285999938, 49.335536093000037 ], [ -123.050449206999957, 49.335544985000077 ], [ -123.0503806, 49.337486789000081 ], [ -123.049216805999919, 49.337675686000068 ], [ -123.049183893999938, 49.337436090000026 ], [ -123.049205888999964, 49.336443306000056 ], [ -123.04610695799991, 49.336420591000049 ], [ -123.043797985000012, 49.336403598000103 ], [ -123.042344488999916, 49.336368312000047 ], [ -123.042239793999954, 49.33817949900007 ], [ -123.043730304999926, 49.33821840500007 ], [ -123.043698000999939, 49.339134417000025 ], [ -123.040762476999959, 49.339053205000027 ], [ -123.040779621999917, 49.338140404000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152538137", "BldgCostT": "88417080", "sL_LossRatio": "0.644427649656848", "sL_AssetLoss": "2289070", "sL_BldgLoss": "1475140", "sL_StrLoss": "550490", "sL_NStrLoss": "924650", "sL_ContLoss": "813930", "geom_point": "0101000020E6100000852E3DD495C25EC04399607A73AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043581596999957, 49.341776485 ], [ -123.04335249399999, 49.341700898000106 ], [ -123.0416009099999, 49.341674444000041 ], [ -123.040117494999933, 49.341652 ], [ -123.039894139999944, 49.34164857600004 ], [ -123.038018192, 49.341619696000087 ], [ -123.038056306, 49.340704846000115 ], [ -123.038056679999926, 49.340695793000094 ], [ -123.038059099999941, 49.340631538000146 ], [ -123.038100379999918, 49.339534591000103 ], [ -123.038105107999982, 49.339408511000016 ], [ -123.038155094, 49.338080192000035 ], [ -123.038183278999981, 49.33760881700001 ], [ -123.038214013999948, 49.337095591000057 ], [ -123.038214653999972, 49.337033472000016 ], [ -123.038215091999959, 49.336992911000031 ], [ -123.038220598999885, 49.336734604000107 ], [ -123.038171775999928, 49.336572003000121 ], [ -123.037947917999986, 49.336249313000032 ], [ -123.037946290999969, 49.336246994000057 ], [ -123.03950039599998, 49.336302194000041 ], [ -123.039688609, 49.336306490000041 ], [ -123.039862222999986, 49.336310335000064 ], [ -123.040870281999972, 49.3363325 ], [ -123.040779621999917, 49.338140404000121 ], [ -123.040762476999959, 49.339053205000027 ], [ -123.043698000999939, 49.339134417000025 ], [ -123.043665997999966, 49.339980204000028 ], [ -123.04363966499993, 49.340540822000037 ], [ -123.043631671999947, 49.340711026000079 ], [ -123.043581596999957, 49.341776485 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260170982", "BldgCostT": "172604335", "sL_LossRatio": "0.739644823240698", "sL_AssetLoss": "2412320", "sL_BldgLoss": "1784260", "sL_StrLoss": "766570", "sL_NStrLoss": "1017690", "sL_ContLoss": "628060", "geom_point": "0101000020E6100000C9C993BD48C25EC0CC3C2DFD53AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.035198776999948, 49.340840791000048 ], [ -123.035262890999931, 49.338614291000056 ], [ -123.034119945999976, 49.339227506000022 ], [ -123.033807883999984, 49.339394901000048 ], [ -123.03257959699998, 49.340052 ], [ -123.032603694999949, 49.339246597000027 ], [ -123.032682391999927, 49.337438297000134 ], [ -123.032699406999924, 49.33704520800007 ], [ -123.032696286999979, 49.336083214000034 ], [ -123.033132042999981, 49.33609680700004 ], [ -123.037946290999969, 49.336246994000057 ], [ -123.037947917999986, 49.336249313000032 ], [ -123.038171775999928, 49.336572003000121 ], [ -123.038220598999885, 49.336734604000107 ], [ -123.038215091999959, 49.336992911000031 ], [ -123.038214653999972, 49.337033472000016 ], [ -123.038214013999948, 49.337095591000057 ], [ -123.038183278999981, 49.33760881700001 ], [ -123.038155094, 49.338080192000035 ], [ -123.038105107999982, 49.339408511000016 ], [ -123.038100379999918, 49.339534591000103 ], [ -123.038059099999941, 49.340631538000146 ], [ -123.038056679999926, 49.340695793000094 ], [ -123.038056306, 49.340704846000115 ], [ -123.038018192, 49.341619696000087 ], [ -123.036686773999918, 49.341598970000099 ], [ -123.036650293999983, 49.341598391000112 ], [ -123.035140390999914, 49.341581403000056 ], [ -123.035198776999948, 49.340840791000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102492478", "BldgCostT": "66119857", "sL_LossRatio": "0.717762281478615", "sL_AssetLoss": "1343690", "sL_BldgLoss": "964450", "sL_StrLoss": "451590", "sL_NStrLoss": "512860", "sL_ContLoss": "379240", "geom_point": "0101000020E6100000C4F28D6C97C25EC0DF9E9407F1AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03798609299993, 49.342508690000017 ], [ -123.038018192, 49.341619696000087 ], [ -123.039894139999944, 49.34164857600004 ], [ -123.040117494999933, 49.341652 ], [ -123.040113150999929, 49.341773461000102 ], [ -123.04008571699994, 49.342537399000015 ], [ -123.043552308999921, 49.342602498000105 ], [ -123.043537175, 49.342968268000071 ], [ -123.043514411, 49.343518403000054 ], [ -123.04346337299999, 49.344533796000036 ], [ -123.037923717999945, 49.344388504000037 ], [ -123.037957801999937, 49.343424816000066 ], [ -123.03798609299993, 49.342508690000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88190584", "BldgCostT": "55458334", "sL_LossRatio": "0.794194513067221", "sL_AssetLoss": "461460", "sL_BldgLoss": "366489", "sL_StrLoss": "202109", "sL_NStrLoss": "164380", "sL_ContLoss": "94971", "geom_point": "0101000020E61000005B82D60DE5C25EC0F5E04966D0AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043537175, 49.342968268000071 ], [ -123.043552308999921, 49.342602498000105 ], [ -123.04008571699994, 49.342537399000015 ], [ -123.040113150999929, 49.341773461000102 ], [ -123.040117494999933, 49.341652 ], [ -123.0416009099999, 49.341674444000041 ], [ -123.04335249399999, 49.341700898000106 ], [ -123.043581596999957, 49.341776485 ], [ -123.043774880999948, 49.341832195000094 ], [ -123.045092390999969, 49.341824089000063 ], [ -123.045117998, 49.340926896000049 ], [ -123.045940288999944, 49.340935798000046 ], [ -123.046523310999973, 49.341008505000062 ], [ -123.047707087999967, 49.341003891000106 ], [ -123.048499197999959, 49.3410111090001 ], [ -123.048462789999988, 49.341776601000099 ], [ -123.048458695999898, 49.341862993000092 ], [ -123.048337679999932, 49.34352319000007 ], [ -123.045939007999934, 49.343520825000084 ], [ -123.045361824999986, 49.343520272000049 ], [ -123.043514411, 49.343518403000054 ], [ -123.043537175, 49.342968268000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117286666", "BldgCostT": "76576666", "sL_LossRatio": "0.823451433362832", "sL_AssetLoss": "419799.5", "sL_BldgLoss": "345684.5", "sL_StrLoss": "216298.5", "sL_NStrLoss": "129386", "sL_ContLoss": "74115", "geom_point": "0101000020E61000009378695846C35EC0758EF96723AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.047063017999946, 49.347435105000038 ], [ -123.047120775999986, 49.346956487000057 ], [ -123.047298652, 49.346572038000033 ], [ -123.047343798999947, 49.346308338000043 ], [ -123.047373316999952, 49.34613592700002 ], [ -123.047373663999977, 49.346134057000029 ], [ -123.047278529999957, 49.345745983000015 ], [ -123.047157557999952, 49.345377853000059 ], [ -123.046887773999956, 49.345007669000054 ], [ -123.046493757999926, 49.344696169000024 ], [ -123.046172703999957, 49.344402908000056 ], [ -123.04600448399998, 49.34419847300012 ], [ -123.045728050999955, 49.344063870000063 ], [ -123.045632306999948, 49.343966746000056 ], [ -123.045793858999971, 49.343816444000062 ], [ -123.045882569999904, 49.343657658000112 ], [ -123.045939007999934, 49.343520825000084 ], [ -123.048337679999932, 49.34352319000007 ], [ -123.049092588999898, 49.343513594000015 ], [ -123.049170978999953, 49.343512589000056 ], [ -123.050370521999952, 49.343261591000079 ], [ -123.051213615, 49.343054991000074 ], [ -123.051677578999943, 49.342961825000053 ], [ -123.0523078, 49.342835310000105 ], [ -123.053580324, 49.34282934500002 ], [ -123.053619629999957, 49.342829167000076 ], [ -123.054075976999968, 49.342827025000098 ], [ -123.054186195999989, 49.34282651900007 ], [ -123.054420116999964, 49.342825409000085 ], [ -123.054874509999976, 49.342823275000057 ], [ -123.056254506999935, 49.34281679200005 ], [ -123.056897692999911, 49.342818108000074 ], [ -123.057685612999947, 49.342819699000103 ], [ -123.057508069999955, 49.343663297000049 ], [ -123.057398203999981, 49.343876494000021 ], [ -123.057073223999936, 49.344165076000102 ], [ -123.05695340199999, 49.344271489000036 ], [ -123.056739147, 49.34435616800009 ], [ -123.056552500999942, 49.344429902000122 ], [ -123.056370301999948, 49.344478874000089 ], [ -123.056285002999942, 49.344501802000117 ], [ -123.055891887999962, 49.344537997000053 ], [ -123.055002883999919, 49.344557903000052 ], [ -123.054409386999978, 49.344563292000096 ], [ -123.054363660999982, 49.344578774000112 ], [ -123.054002991999965, 49.344700891000116 ], [ -123.053734697999957, 49.344959300000035 ], [ -123.053648515999939, 49.345167697000065 ], [ -123.053687289999957, 49.345374501000045 ], [ -123.053708091999951, 49.34548540100009 ], [ -123.053941492999954, 49.345667398000018 ], [ -123.05234589299998, 49.346625499 ], [ -123.052050888999958, 49.346806493000038 ], [ -123.051465887999896, 49.347240008 ], [ -123.05126270399991, 49.347189501000024 ], [ -123.050945421999941, 49.347156504000054 ], [ -123.0506936, 49.347178389000113 ], [ -123.04873490599995, 49.347547390000059 ], [ -123.048233713999963, 49.347594109000099 ], [ -123.047941294999987, 49.347583399000037 ], [ -123.047442904999954, 49.347521105000062 ], [ -123.047063017999946, 49.347435105000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124647576", "BldgCostT": "78107445", "sL_LossRatio": "0.732220080274057", "sL_AssetLoss": "714303", "sL_BldgLoss": "523027", "sL_StrLoss": "259690", "sL_NStrLoss": "263337", "sL_ContLoss": "191276", "geom_point": "0101000020E61000008A4946CEC2C35EC0932C5891EEAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.053734697999957, 49.344959300000035 ], [ -123.054002991999965, 49.344700891000116 ], [ -123.054363660999982, 49.344578774000112 ], [ -123.054409386999978, 49.344563292000096 ], [ -123.055002883999919, 49.344557903000052 ], [ -123.055891887999962, 49.344537997000053 ], [ -123.056285002999942, 49.344501802000117 ], [ -123.056370301999948, 49.344478874000089 ], [ -123.056552500999942, 49.344429902000122 ], [ -123.056739147, 49.34435616800009 ], [ -123.05695340199999, 49.344271489000036 ], [ -123.057073223999936, 49.344165076000102 ], [ -123.057398203999981, 49.343876494000021 ], [ -123.057508069999955, 49.343663297000049 ], [ -123.057685612999947, 49.342819699000103 ], [ -123.057701691999952, 49.342733579000033 ], [ -123.057740070999955, 49.342528318000028 ], [ -123.057760156, 49.342420884000028 ], [ -123.05777940199998, 49.342317883000064 ], [ -123.057787724999969, 49.34211882000006 ], [ -123.057833353999939, 49.34102896800001 ], [ -123.057872395999979, 49.340095790000113 ], [ -123.060655292999954, 49.340110214000084 ], [ -123.060620591999935, 49.341025309000074 ], [ -123.06056969, 49.34184979800002 ], [ -123.060638680999944, 49.342149791000068 ], [ -123.06075929799999, 49.342309796000102 ], [ -123.060968596999956, 49.342438016000081 ], [ -123.061359910999954, 49.342560297000084 ], [ -123.061916106999945, 49.34275190500005 ], [ -123.062030176999968, 49.342840592000073 ], [ -123.062185909000021, 49.343141093000071 ], [ -123.062172402999934, 49.343571297000061 ], [ -123.062059816999948, 49.343826691000082 ], [ -123.061888807999964, 49.343985093000057 ], [ -123.060585212999911, 49.34442430200005 ], [ -123.060350417, 49.344524204000066 ], [ -123.060213399999967, 49.344622189000063 ], [ -123.060131095, 49.344725408000023 ], [ -123.060116598999954, 49.344846613000108 ], [ -123.060257683999964, 49.345398898000077 ], [ -123.05959981699999, 49.34544003900006 ], [ -123.05934317, 49.345456082000084 ], [ -123.059293185999962, 49.345459200000086 ], [ -123.059102738999968, 49.345457397000132 ], [ -123.058772598999909, 49.345454284000013 ], [ -123.058482719999986, 49.345451558000072 ], [ -123.057891474999977, 49.345445973000068 ], [ -123.057120002999966, 49.345438688000065 ], [ -123.056405046999942, 49.345439329000151 ], [ -123.054842185999917, 49.345440714000162 ], [ -123.054427084999972, 49.345475296000096 ], [ -123.054378854999953, 49.34548946400006 ], [ -123.054104516999956, 49.345570097000049 ], [ -123.053941492999954, 49.345667398000018 ], [ -123.053708091999951, 49.34548540100009 ], [ -123.053687289999957, 49.345374501000045 ], [ -123.053648515999939, 49.345167697000065 ], [ -123.053734697999957, 49.344959300000035 ] ], [ [ -123.059227109999966, 49.344545199000045 ], [ -123.059032486999968, 49.344418501000035 ], [ -123.058827109999939, 49.344518196000088 ], [ -123.05882799199999, 49.344770302000086 ], [ -123.058951187999924, 49.344922704000048 ], [ -123.059062080000018, 49.34495829400003 ], [ -123.059226309999957, 49.344904096000022 ], [ -123.059281802999976, 49.344787399000026 ], [ -123.059227109999966, 49.344545199000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.768113577023499", "sL_AssetLoss": "12256", "sL_BldgLoss": "9414", "sL_StrLoss": "3514", "sL_NStrLoss": "5900", "sL_ContLoss": "2842", "geom_point": "0101000020E6100000EB046EBCBFA75EC098608264CBA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.619554819999948, 49.277767684000018 ], [ -122.625040823999953, 49.27793938100011 ], [ -122.624779061999973, 49.281535172000069 ], [ -122.62260452799994, 49.281467149000079 ], [ -122.622600572999929, 49.281521424000125 ], [ -122.617114153999935, 49.28134960400007 ], [ -122.617376508999953, 49.277753830000066 ], [ -122.619550862, 49.277821960000026 ], [ -122.619554819999948, 49.277767684000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.844557699308336", "sL_AssetLoss": "10988", "sL_BldgLoss": "9280", "sL_StrLoss": "5310", "sL_NStrLoss": "3970", "sL_ContLoss": "1708", "geom_point": "0101000020E6100000988A4B5DCBA95EC0345F4E9EECA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.650502720999896, 49.301588301000038 ], [ -122.655991656, 49.301758419000123 ], [ -122.65573216099996, 49.305354156000085 ], [ -122.655662663999976, 49.305352004000063 ], [ -122.655572323999976, 49.306603657000053 ], [ -122.650082814999934, 49.306433517000137 ], [ -122.650342756, 49.302837800000077 ], [ -122.650412246999977, 49.302839956000064 ], [ -122.650502720999896, 49.301588301000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.923954372623574", "sL_AssetLoss": "5260", "sL_BldgLoss": "4860", "sL_StrLoss": "3440", "sL_NStrLoss": "1420", "sL_ContLoss": "400", "geom_point": "0101000020E6100000E27560AD58A75EC05A3A51D8E6A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.611891656999958, 49.291079440000019 ], [ -122.612048229999942, 49.288937357000059 ], [ -122.611933192999942, 49.288933747000087 ], [ -122.612195990999936, 49.285338027000087 ], [ -122.617682864999935, 49.285510096000031 ], [ -122.617526563999917, 49.287652198000103 ], [ -122.617641597999963, 49.287655802000067 ], [ -122.617379208999978, 49.291251523000035 ], [ -122.611891656999958, 49.291079440000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.771410579345088", "sL_AssetLoss": "15880", "sL_BldgLoss": "12250", "sL_StrLoss": "5620", "sL_NStrLoss": "6630", "sL_ContLoss": "3630", "geom_point": "0101000020E61000006D93279C1FA95EC0D13E980CAEA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.640885404999963, 49.265620177000052 ], [ -122.640988965999924, 49.264190298000067 ], [ -122.640512779999966, 49.264175472000034 ], [ -122.640773224999975, 49.260579548000052 ], [ -122.644435278999964, 49.260693516000075 ], [ -122.644344618999966, 49.264023891000079 ], [ -122.644348425999979, 49.264108343000018 ], [ -122.644352139999967, 49.264189194000053 ], [ -122.64442229799999, 49.265730235000113 ], [ -122.640885404999963, 49.265620177000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.77238179844043", "sL_AssetLoss": "10131", "sL_BldgLoss": "7825", "sL_StrLoss": "3155", "sL_NStrLoss": "4670", "sL_ContLoss": "2306", "geom_point": "0101000020E6100000ADD6913C3AA85EC082621A3C02A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.626372702999944, 49.271362531000129 ], [ -122.631857975999935, 49.271533883000039 ], [ -122.631596777999945, 49.275129726000067 ], [ -122.630776054999927, 49.275104105000061 ], [ -122.630736471999981, 49.275648845000028 ], [ -122.625250716999929, 49.275477436000052 ], [ -122.625512407999977, 49.271881612000037 ], [ -122.626333071999952, 49.271907272000071 ], [ -122.626372702999944, 49.271362531000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.756210283073368", "sL_AssetLoss": "17310", "sL_BldgLoss": "13090", "sL_StrLoss": "6220", "sL_NStrLoss": "6870", "sL_ContLoss": "4220", "geom_point": "0101000020E6100000A573F2E036A95EC0D5903C00F7A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64449399599999, 49.294814586000051 ], [ -122.646848768999945, 49.294887745000075 ], [ -122.646588602999884, 49.298483496000088 ], [ -122.644440396, 49.298416758 ], [ -122.641100087999973, 49.298312900000077 ], [ -122.641360678999945, 49.294717159000079 ], [ -122.64449399599999, 49.294814586000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.75760582010582", "sL_AssetLoss": "30240", "sL_BldgLoss": "22910", "sL_StrLoss": "11110", "sL_NStrLoss": "11800", "sL_ContLoss": "7330", "geom_point": "0101000020E610000058AC233F49A95EC0D02986B3F4A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644393245999979, 49.302004154 ], [ -122.649882207999923, 49.302174582000042 ], [ -122.64962223699996, 49.305770303000052 ], [ -122.647695836999958, 49.305710521000016 ], [ -122.647651086999986, 49.306329048000102 ], [ -122.645785206, 49.306271112000061 ], [ -122.645758828999945, 49.306635493000094 ], [ -122.64433245399999, 49.306591182000062 ], [ -122.640269351999976, 49.306464856000019 ], [ -122.640530053999981, 49.302869162000093 ], [ -122.642395791999959, 49.302927189000066 ], [ -122.642422193999977, 49.302562807000093 ], [ -122.64434845599996, 49.302622683000088 ], [ -122.64438532399997, 49.30211355800003 ], [ -122.644393245999979, 49.302004154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.860228865016348", "sL_AssetLoss": "8564", "sL_BldgLoss": "7367", "sL_StrLoss": "4580", "sL_NStrLoss": "2787", "sL_ContLoss": "1197", "geom_point": "0101000020E610000079701C1DFCA95EC0B82C572619A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.655734642999974, 49.288741155000068 ], [ -122.655741871999936, 49.28770268100007 ], [ -122.656154404999967, 49.287703909000115 ], [ -122.656158158999958, 49.287164209000046 ], [ -122.656570685999924, 49.287165435000119 ], [ -122.656572559999972, 49.286895585000131 ], [ -122.65698508399997, 49.286896811000126 ], [ -122.656986956999944, 49.286626960000021 ], [ -122.658637049999925, 49.286631847000059 ], [ -122.658635186999945, 49.28690169700014 ], [ -122.659047712999936, 49.286902915000077 ], [ -122.659043991000019, 49.287442615000103 ], [ -122.659456520999981, 49.287443832000108 ], [ -122.659449087000013, 49.288523233000063 ], [ -122.658624007999919, 49.288520798000093 ], [ -122.658622145999956, 49.288790648000074 ], [ -122.657384520999983, 49.288786985000073 ], [ -122.65738448499998, 49.288792254000036 ], [ -122.658384767999962, 49.288823222000119 ], [ -122.65818528899996, 49.291590169000074 ], [ -122.657387947999894, 49.292396200000098 ], [ -122.652637689999935, 49.292249021000018 ], [ -122.652897351999982, 49.288653221000068 ], [ -122.655734642999974, 49.288741155000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.752212389380531", "sL_AssetLoss": "7910", "sL_BldgLoss": "5950", "sL_StrLoss": "2960", "sL_NStrLoss": "2990", "sL_ContLoss": "1960", "geom_point": "0101000020E6100000DE3C72F7FBA75EC0CA5CAEB817A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.626405855999977, 49.249750890000058 ], [ -122.627189789999974, 49.249734178000054 ], [ -122.62704347799999, 49.251746701000037 ], [ -122.622303514999928, 49.251598368000067 ], [ -122.622267274999928, 49.250107463000099 ], [ -122.62226068599999, 49.249839117000079 ], [ -122.626405855999977, 49.249750890000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.771683075480544", "sL_AssetLoss": "10665", "sL_BldgLoss": "8230", "sL_StrLoss": "3310", "sL_NStrLoss": "4920", "sL_ContLoss": "2435", "geom_point": "0101000020E6100000DE8B92041FA95EC092C7BA5563A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.640970062999969, 49.271191065000039 ], [ -122.641073862999932, 49.26975800600006 ], [ -122.640191923999964, 49.269730549000023 ], [ -122.640452425999911, 49.266134657000102 ], [ -122.644446369999955, 49.266258942000043 ], [ -122.644525803999983, 49.268003530000051 ], [ -122.644593841999921, 49.269497030000089 ], [ -122.644609789999947, 49.269847784000063 ], [ -122.644635519999966, 49.270411993000025 ], [ -122.644597887999936, 49.270685593000046 ], [ -122.644508762999948, 49.270959702000049 ], [ -122.644461614999926, 49.27110470500002 ], [ -122.64439885099992, 49.271297744 ], [ -122.640970062999969, 49.271191065000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.730131004366812", "sL_AssetLoss": "22900", "sL_BldgLoss": "16720", "sL_StrLoss": "7070", "sL_NStrLoss": "9650", "sL_ContLoss": "6180", "geom_point": "0101000020E6100000E6DF577A27A95EC051C8844E3EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64207144699999, 49.273462516000052 ], [ -122.644098306999936, 49.273525567000085 ], [ -122.644123818999958, 49.274964927000021 ], [ -122.644162204999958, 49.27713150800011 ], [ -122.641811030999946, 49.277058373000045 ], [ -122.64207144699999, 49.273462516000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.765765765765766", "sL_AssetLoss": "23310", "sL_BldgLoss": "17850", "sL_StrLoss": "8490", "sL_NStrLoss": "9360", "sL_ContLoss": "5460", "geom_point": "0101000020E6100000A957E3CFE4A85EC008BEB38787A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.637945530999943, 49.290930766000059 ], [ -122.643433159, 49.291101526000034 ], [ -122.643277047999945, 49.293257198000077 ], [ -122.643172749999962, 49.29469729 ], [ -122.64004856499993, 49.2946001090001 ], [ -122.639985763999974, 49.295466364000049 ], [ -122.634497631999949, 49.295295430000053 ], [ -122.634641536999979, 49.293313598000118 ], [ -122.634758717999901, 49.291699690000023 ], [ -122.637882696999938, 49.291797025000079 ], [ -122.637945530999943, 49.290930766000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.88562241616904", "sL_AssetLoss": "2177", "sL_BldgLoss": "1928", "sL_StrLoss": "1280", "sL_NStrLoss": "648", "sL_ContLoss": "249", "geom_point": "0101000020E61000001F008AF40FA55EC01A741969EFAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.576469331999945, 49.352377360000048 ], [ -122.576523469999927, 49.351645426000069 ], [ -122.579154927999951, 49.349807177000088 ], [ -122.57917251399999, 49.349794892000048 ], [ -122.582160570999946, 49.349889408000138 ], [ -122.582142968999904, 49.350127786 ], [ -122.581622918999983, 49.350189394000097 ], [ -122.581187493999906, 49.35107809400013 ], [ -122.580994098999923, 49.351257495000041 ], [ -122.580568294999978, 49.351283200000097 ], [ -122.579935973999966, 49.351136495000063 ], [ -122.57963149699999, 49.351145012000089 ], [ -122.579437396999936, 49.351268910000087 ], [ -122.57942150400001, 49.351583686000012 ], [ -122.579790815999928, 49.35198100700012 ], [ -122.579787608999965, 49.35222460600005 ], [ -122.57978335899999, 49.35225782 ], [ -122.579229185999978, 49.352237312000064 ], [ -122.576469331999945, 49.352377360000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32859500", "BldgCostT": "20660000", "sL_LossRatio": "0.682265364027636", "sL_AssetLoss": "469099", "sL_BldgLoss": "320050", "sL_StrLoss": "153030", "sL_NStrLoss": "167020", "sL_ContLoss": "149049", "geom_point": "0101000020E6100000DA4B32F60EAB5EC097A10127A1A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.667721631999896, 49.285309048000087 ], [ -122.66772707299998, 49.28449949600013 ], [ -122.66731456699992, 49.284498309000107 ], [ -122.667320012999966, 49.283688757000029 ], [ -122.667732511999986, 49.283689944000109 ], [ -122.667734324999941, 49.283420094000107 ], [ -122.668559318999925, 49.2834224630001 ], [ -122.668575609999976, 49.280991556000039 ], [ -122.668562219999899, 49.281177914000097 ], [ -122.66307567299998, 49.281008428000099 ], [ -122.663103397999919, 49.280623198000065 ], [ -122.663088409999887, 49.28062273400004 ], [ -122.663075574999965, 49.28080104700004 ], [ -122.662523802999942, 49.280783987000099 ], [ -122.662330495999981, 49.283469158000109 ], [ -122.658120785999969, 49.283338904000111 ], [ -122.65811712, 49.28338976100013 ], [ -122.65263035, 49.283219745000103 ], [ -122.652659353, 49.282818048000102 ], [ -122.652617372999927, 49.28281674600008 ], [ -122.652876985, 49.279220895 ], [ -122.653766168999951, 49.279248467000052 ], [ -122.653810269999937, 49.278637420000081 ], [ -122.654556285999902, 49.278635198000053 ], [ -122.65484257699994, 49.278563713000025 ], [ -122.654889335999954, 49.278552046000108 ], [ -122.654906312999984, 49.278547803000031 ], [ -122.656977766999958, 49.277454592000034 ], [ -122.657052612999934, 49.277415100000049 ], [ -122.660744726999937, 49.275392298000043 ], [ -122.66095849499996, 49.275191707000147 ], [ -122.661003737999977, 49.274949410000062 ], [ -122.661032377999931, 49.274795694000055 ], [ -122.660953463999959, 49.274550092000013 ], [ -122.660532717, 49.273240499000025 ], [ -122.660526120999975, 49.272988902000037 ], [ -122.660605523999948, 49.272802205000083 ], [ -122.660790705999929, 49.272616011000075 ], [ -122.662463209999942, 49.271530706000114 ], [ -122.662731994999987, 49.271462413000059 ], [ -122.6661312, 49.271445048000089 ], [ -122.666785194999974, 49.271441693000078 ], [ -122.667725858999944, 49.27143808200011 ], [ -122.670310480999916, 49.271428121000028 ], [ -122.670420448999963, 49.271427694000074 ], [ -122.672650591999968, 49.271419043000044 ], [ -122.672733119999933, 49.27141873000005 ], [ -122.67586558899994, 49.271406487000029 ], [ -122.680277338999957, 49.271380778000058 ], [ -122.682243218999986, 49.27136924399999 ], [ -122.689301708999892, 49.27132759300013 ], [ -122.689309705999932, 49.273159487000058 ], [ -122.689336504999972, 49.278501283000018 ], [ -122.689348698999964, 49.280737806000104 ], [ -122.689487718999942, 49.281144315000041 ], [ -122.689492305999977, 49.281162820000084 ], [ -122.689651841999989, 49.281445757000014 ], [ -122.688982777999954, 49.281804497000103 ], [ -122.688845480999959, 49.281859735000111 ], [ -122.688369399999928, 49.281858451000097 ], [ -122.688368181999977, 49.282051759000076 ], [ -122.688179183999949, 49.282127794000111 ], [ -122.687542723999968, 49.282126075000122 ], [ -122.687540957999929, 49.282405964000134 ], [ -122.687000098999974, 49.282664318000108 ], [ -122.686714332999941, 49.282663544000066 ], [ -122.686713459999936, 49.282801235000122 ], [ -122.686438337999931, 49.282932651000138 ], [ -122.686300128999946, 49.282932276000039 ], [ -122.686299706999975, 49.282998869000039 ], [ -122.685876568999959, 49.283200982000075 ], [ -122.68547342699999, 49.283199884000091 ], [ -122.685472438999938, 49.283355312000062 ], [ -122.685125144999944, 49.283468792000029 ], [ -122.685059212999974, 49.28346861199999 ], [ -122.685059073999966, 49.283490380000103 ], [ -122.684306093999979, 49.283736413000049 ], [ -122.683819993999947, 49.283735084000035 ], [ -122.683818968999958, 49.283895574000098 ], [ -122.683487031999945, 49.284004028000069 ], [ -122.682168259999941, 49.284000408000068 ], [ -122.682165211999958, 49.284474626000076 ], [ -122.681999627999986, 49.284539655000117 ], [ -122.680514763999952, 49.284535559000048 ], [ -122.680513020999953, 49.284805411000058 ], [ -122.679688003999928, 49.284803126000078 ], [ -122.67968625499999, 49.285072978000109 ], [ -122.678861233999953, 49.285070688000054 ], [ -122.678859480999932, 49.285340538000106 ], [ -122.677209427999969, 49.285335941000028 ], [ -122.677205903999948, 49.285875642000043 ], [ -122.675143315999946, 49.285869862 ], [ -122.675141543999985, 49.286139713000104 ], [ -122.673078945999976, 49.286133896000116 ], [ -122.67307716099999, 49.28640374600009 ], [ -122.670602029999955, 49.286396718000077 ], [ -122.670600232, 49.28666656800003 ], [ -122.669775185999981, 49.286664213000044 ], [ -122.66977338399991, 49.286934063000047 ], [ -122.667298226999932, 49.286926964000031 ], [ -122.667296411, 49.287196814000062 ], [ -122.66688388199999, 49.28719562600007 ], [ -122.66688206299996, 49.287465476000058 ], [ -122.665231942999966, 49.287460708000033 ], [ -122.665246557999978, 49.285301904000036 ], [ -122.667721631999896, 49.285309048000087 ] ], [ [ -122.67804499599994, 49.283719137000027 ], [ -122.67804708099996, 49.283399005000057 ], [ -122.67557255199992, 49.283322821000098 ], [ -122.675571767999912, 49.283442364000074 ], [ -122.675984265999944, 49.283443522000027 ], [ -122.67598249699995, 49.283713373000055 ], [ -122.67804499599994, 49.283719137000027 ] ], [ [ -122.67392177899994, 49.28343772000008 ], [ -122.67392356, 49.283167869000124 ], [ -122.67407068599999, 49.283168284000105 ], [ -122.674109398000027, 49.282628682000045 ], [ -122.672277156999883, 49.282623500000028 ], [ -122.672282521999961, 49.281813947000089 ], [ -122.673107487999957, 49.281816284000094 ], [ -122.673109271, 49.281546433000088 ], [ -122.674186816999907, 49.281549476000038 ], [ -122.674283585999973, 49.280200469000064 ], [ -122.673943129999955, 49.280199510000088 ], [ -122.67394452799999, 49.279987446000035 ], [ -122.672763291999942, 49.279951038000107 ], [ -122.672719652999959, 49.280559115000109 ], [ -122.672290924, 49.280545898000092 ], [ -122.672286096999954, 49.281274246000116 ], [ -122.671873617999978, 49.281273075000094 ], [ -122.671871827999922, 49.281542925000089 ], [ -122.671459345999921, 49.281541754000038 ], [ -122.6714557599999, 49.282081455000075 ], [ -122.67104327599999, 49.282080282000052 ], [ -122.671036095999952, 49.283159684000083 ], [ -122.673098568999947, 49.283165538000056 ], [ -122.673096785999945, 49.283435389000054 ], [ -122.67392177899994, 49.28343772000008 ] ], [ [ -122.669402351999977, 49.280726320000021 ], [ -122.66940415199997, 49.280456855000089 ], [ -122.668615779999968, 49.280432524000055 ], [ -122.668594835999954, 49.280724006000057 ], [ -122.669402351999977, 49.280726320000021 ] ], [ [ -122.663879726999966, 49.277043309000064 ], [ -122.66394360799994, 49.276155453000058 ], [ -122.665311588999955, 49.276197731000046 ], [ -122.665352890999955, 49.275623430000081 ], [ -122.663660640000018, 49.275571127000092 ], [ -122.663555429999988, 49.277033284000026 ], [ -122.663879726999966, 49.277043309000064 ] ], [ [ -122.684235716999979, 49.275961001000034 ], [ -122.684171025999916, 49.276865633000043 ], [ -122.684555316999962, 49.276877439000039 ], [ -122.684556932999939, 49.276854854000042 ], [ -122.685257216999915, 49.276876364000081 ], [ -122.685258403999967, 49.276859771000034 ], [ -122.68579218499994, 49.276876164000058 ], [ -122.685888652999964, 49.275526482000068 ], [ -122.685913206999913, 49.275527237000077 ], [ -122.685936745999925, 49.275197890000108 ], [ -122.685937333, 49.275105467000067 ], [ -122.685943351, 49.275105483000061 ], [ -122.686038545999978, 49.273773481000077 ], [ -122.686044636999952, 49.273773668000096 ], [ -122.686061737000017, 49.273534398000052 ], [ -122.686028396999987, 49.273533374000053 ], [ -122.68601970499995, 49.27365501200007 ], [ -122.684298636999984, 49.273602146000066 ], [ -122.684283340999926, 49.273816054000072 ], [ -122.680997075999969, 49.273715033000059 ], [ -122.680995156999955, 49.274012503000051 ], [ -122.680582737999941, 49.274011364000089 ], [ -122.680577511999942, 49.274820918000025 ], [ -122.679441322999935, 49.274817772000127 ], [ -122.679397593999965, 49.275428416000082 ], [ -122.68301083599999, 49.275539532000032 ], [ -122.682983437999951, 49.275922519000062 ], [ -122.684235716999979, 49.275961001000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.766195524146054", "sL_AssetLoss": "16980", "sL_BldgLoss": "13010", "sL_StrLoss": "5940", "sL_NStrLoss": "7070", "sL_ContLoss": "3970", "geom_point": "0101000020E61000005C3B932E24A95EC0C147714C9EAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644137404999981, 49.334350701000041 ], [ -122.64379440899999, 49.334259596000052 ], [ -122.642209782999984, 49.334426194000066 ], [ -122.642044202999969, 49.334353603000089 ], [ -122.642156511999971, 49.334174100000091 ], [ -122.642087716999981, 49.334047407000121 ], [ -122.641758409, 49.33394770400011 ], [ -122.641672679999942, 49.334451901000094 ], [ -122.641590905, 49.334487510000059 ], [ -122.640679796999976, 49.334592886000067 ], [ -122.640740093, 49.334413001000023 ], [ -122.640764289999964, 49.334340792000056 ], [ -122.640366014999984, 49.334303793000039 ], [ -122.640310513999935, 49.334437603000055 ], [ -122.640419707999925, 49.334626991000079 ], [ -122.639928915999974, 49.334800857000118 ], [ -122.640182162999949, 49.331310635000072 ], [ -122.645674582, 49.331481270000069 ], [ -122.64544522199995, 49.33464748299999 ], [ -122.645001286999957, 49.334849199000068 ], [ -122.644656766999987, 49.335053309000031 ], [ -122.64418854399996, 49.335038771000029 ], [ -122.644339815999942, 49.334882007000076 ], [ -122.644382598000036, 49.334675495000113 ], [ -122.64428798199998, 49.334441897000097 ], [ -122.644137404999981, 49.334350701000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.766399599399099", "sL_AssetLoss": "39940", "sL_BldgLoss": "30610", "sL_StrLoss": "14370", "sL_NStrLoss": "16240", "sL_ContLoss": "9330", "geom_point": "0101000020E6100000233EA001AFA75EC03F58424ECAA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.617811013000022, 49.306618958000108 ], [ -122.617835658999979, 49.306281314000046 ], [ -122.616479187999943, 49.306238823000093 ], [ -122.61653929799995, 49.305415640000106 ], [ -122.616098124999922, 49.305401816000014 ], [ -122.616360694999969, 49.301806175000081 ], [ -122.617682341999952, 49.301847581000054 ], [ -122.617893092999978, 49.298960004000072 ], [ -122.622011656999973, 49.299088930000082 ], [ -122.623381598999956, 49.299131780000025 ], [ -122.62311958899997, 49.302727452000099 ], [ -122.622006461999888, 49.302692637000057 ], [ -122.621797911, 49.302686112000067 ], [ -122.621789519999979, 49.302801220000056 ], [ -122.622006293999988, 49.302808001000074 ], [ -122.622230668999947, 49.30281502000004 ], [ -122.622206056999971, 49.303152666000123 ], [ -122.623562443, 49.303195086000066 ], [ -122.62330042399995, 49.306790736000018 ], [ -122.622006745999911, 49.306750279000013 ], [ -122.617811013000022, 49.306618958000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10922084", "BldgCostT": "6058334", "sL_LossRatio": "0.625219724303821", "sL_AssetLoss": "108090", "sL_BldgLoss": "67580", "sL_StrLoss": "32950", "sL_NStrLoss": "34630", "sL_ContLoss": "40510", "geom_point": "0101000020E61000003826725E2FA75EC0DDBF473721A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.609953527999934, 49.271030740000143 ], [ -122.609991010999977, 49.270518026000083 ], [ -122.605883005999914, 49.270388887000088 ], [ -122.612279174999955, 49.270168307000091 ], [ -122.611462586999949, 49.265783975000019 ], [ -122.611708814999986, 49.26428164599999 ], [ -122.609073451999947, 49.264248261000013 ], [ -122.609042776999928, 49.264244596000019 ], [ -122.607766872999946, 49.264214398000071 ], [ -122.607115391999955, 49.264141716000076 ], [ -122.606056935999945, 49.264176957000124 ], [ -122.606200536999964, 49.262214516000029 ], [ -122.611684653999959, 49.262386896000095 ], [ -122.611663224, 49.262680235000126 ], [ -122.613354913999956, 49.262733352000083 ], [ -122.613120031, 49.265949918000089 ], [ -122.616497203999955, 49.266055878000081 ], [ -122.616234846999959, 49.269651712000069 ], [ -122.615836550999987, 49.269639221000041 ], [ -122.615737001999946, 49.271003320000048 ], [ -122.615453917999929, 49.270994442000095 ], [ -122.61543870099996, 49.271202927000061 ], [ -122.609953527999934, 49.271030740000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.768300060496068", "sL_AssetLoss": "16530", "sL_BldgLoss": "12700", "sL_StrLoss": "5750", "sL_NStrLoss": "6950", "sL_ContLoss": "3830", "geom_point": "0101000020E6100000CDC90F8524A95EC03109D5D536A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.642849504999944, 49.255477655000121 ], [ -122.643070291999933, 49.252426593000102 ], [ -122.641314140999924, 49.25237192300002 ], [ -122.641409137999943, 49.251059711000089 ], [ -122.6395235599999, 49.251000979 ], [ -122.639634578999932, 49.249468206000053 ], [ -122.64358935099996, 49.249383369 ], [ -122.644743181999971, 49.249360736000064 ], [ -122.644740383999959, 49.249465758000042 ], [ -122.644738229999987, 49.249546705000107 ], [ -122.64473367799998, 49.249717693000072 ], [ -122.644719767999945, 49.250239630000053 ], [ -122.644713693999975, 49.250468806000114 ], [ -122.644693000999922, 49.251228880000049 ], [ -122.644628617999928, 49.253594239000073 ], [ -122.64457588, 49.255531371000089 ], [ -122.642849504999944, 49.255477655000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.754981152396338", "sL_AssetLoss": "37140", "sL_BldgLoss": "28040", "sL_StrLoss": "12650", "sL_NStrLoss": "15390", "sL_ContLoss": "9100", "geom_point": "0101000020E61000004319D3E19BA85EC035A0F7293BA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631403955999957, 49.301136434000092 ], [ -122.631453971999946, 49.300448356000075 ], [ -122.631151788999944, 49.300438928000069 ], [ -122.631213453999948, 49.299590670000057 ], [ -122.630519420999974, 49.299569015000067 ], [ -122.630780838999925, 49.295973307000054 ], [ -122.63626903799998, 49.296144430000091 ], [ -122.63620747100002, 49.296992696000117 ], [ -122.636901467999962, 49.297014315000062 ], [ -122.636899885999924, 49.297036124000037 ], [ -122.638763804999911, 49.297094165000061 ], [ -122.638502998999968, 49.300689886000072 ], [ -122.638423405000012, 49.300687408000087 ], [ -122.638406706999945, 49.300917587000072 ], [ -122.636924415999971, 49.300871431000047 ], [ -122.636892768999985, 49.30130752300002 ], [ -122.631403955999957, 49.301136434000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.772698412698413", "sL_AssetLoss": "15750", "sL_BldgLoss": "12170", "sL_StrLoss": "5620", "sL_NStrLoss": "6550", "sL_ContLoss": "3580", "geom_point": "0101000020E610000013EE19B24FA85EC0D710C1DD7EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.627374260999929, 49.290914011000048 ], [ -122.632861849999955, 49.291085307000081 ], [ -122.632699044999924, 49.293326322000048 ], [ -122.63260062099998, 49.294681045000047 ], [ -122.632374788999954, 49.294674002000129 ], [ -122.632354425999964, 49.29495425000006 ], [ -122.626866380999942, 49.294782929000093 ], [ -122.626967349999958, 49.293395574000094 ], [ -122.627128055999947, 49.291187205000014 ], [ -122.627353869999965, 49.291194260000083 ], [ -122.627374260999929, 49.290914011000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.763591722202736", "sL_AssetLoss": "57020", "sL_BldgLoss": "43540", "sL_StrLoss": "20310", "sL_NStrLoss": "23230", "sL_ContLoss": "13480", "geom_point": "0101000020E6100000426237431CA95EC0DEE8633E20A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.641958749999944, 49.284703575000044 ], [ -122.641974073999904, 49.284492019000055 ], [ -122.640608327999985, 49.28444952200006 ], [ -122.64086745899999, 49.28087331600009 ], [ -122.639279904999967, 49.280823896000051 ], [ -122.639324725999927, 49.280205556000105 ], [ -122.635914224999979, 49.280099308000054 ], [ -122.636175115999933, 49.276503482000102 ], [ -122.641661031999931, 49.276674335000052 ], [ -122.641616244999966, 49.277292678 ], [ -122.644166464999955, 49.277372007000032 ], [ -122.644189386999969, 49.278665600000075 ], [ -122.644935039999908, 49.278663445000127 ], [ -122.644767762999933, 49.280974982000082 ], [ -122.646355327999956, 49.281024322000164 ], [ -122.646098453999954, 49.284575174000089 ], [ -122.647464209999939, 49.284617602000047 ], [ -122.647204147999929, 49.28821341000004 ], [ -122.646276782999976, 49.288184603000076 ], [ -122.646258223999894, 49.288441133000077 ], [ -122.640770898999961, 49.288270516000082 ], [ -122.641031458999947, 49.284674723000073 ], [ -122.641958749999944, 49.284703575000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.893120105050884", "sL_AssetLoss": "2132.3", "sL_BldgLoss": "1904.4", "sL_StrLoss": "1241.4", "sL_NStrLoss": "663", "sL_ContLoss": "227.9", "geom_point": "0101000020E610000076C7207F42A85EC02D454D4F33A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.626447041999967, 49.265307215000071 ], [ -122.631931598999955, 49.265478565000116 ], [ -122.631670439999965, 49.269074440000104 ], [ -122.626185459999988, 49.268903078000136 ], [ -122.626447041999967, 49.265307215000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.7599486521181", "sL_AssetLoss": "15580", "sL_BldgLoss": "11840", "sL_StrLoss": "5620", "sL_NStrLoss": "6220", "sL_ContLoss": "3740", "geom_point": "0101000020E6100000C4FEBAEC7AA85EC0B011D26490A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.62989040099994, 49.275960529000024 ], [ -122.635376229999949, 49.276131701000097 ], [ -122.635115279000019, 49.27972752700002 ], [ -122.629629025999961, 49.279556342 ], [ -122.62989040099994, 49.275960529000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.764302059496567", "sL_AssetLoss": "17480", "sL_BldgLoss": "13360", "sL_StrLoss": "6000", "sL_NStrLoss": "7360", "sL_ContLoss": "4120", "geom_point": "0101000020E6100000738B547354A95EC03F3FA5AD3EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644098306999936, 49.273525567000085 ], [ -122.647557025999973, 49.273633070000095 ], [ -122.647297032999944, 49.277228939000054 ], [ -122.644162204999958, 49.27713150800011 ], [ -122.644123818999958, 49.274964927000021 ], [ -122.644098306999936, 49.273525567000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.751372118551043", "sL_AssetLoss": "54660", "sL_BldgLoss": "41070", "sL_StrLoss": "18790", "sL_NStrLoss": "22280", "sL_ContLoss": "13590", "geom_point": "0101000020E61000001DA7E848EEA95EC0776D6746DCA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.649665947999949, 49.256523292000068 ], [ -122.649790185, 49.254803050000106 ], [ -122.655273586999982, 49.254973217000064 ], [ -122.655249872999917, 49.255302113000042 ], [ -122.655694787999948, 49.255315908000092 ], [ -122.659977243999933, 49.255448593000068 ], [ -122.659878101999965, 49.256825527000096 ], [ -122.659718314999949, 49.25904459000008 ], [ -122.656786474999976, 49.258953771000073 ], [ -122.656230731999983, 49.258936546000037 ], [ -122.655582092999964, 49.258466 ], [ -122.65377179799998, 49.257805206000057 ], [ -122.651123295, 49.257382208000131 ], [ -122.649610203999927, 49.257295098000071 ], [ -122.649665947999949, 49.256523292000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6592667", "BldgCostT": "4546667", "sL_LossRatio": "0.7515563354308", "sL_AssetLoss": "89473", "sL_BldgLoss": "67244", "sL_StrLoss": "31304", "sL_NStrLoss": "35940", "sL_ContLoss": "22229", "geom_point": "0101000020E6100000D1DF1136F8A95EC00584BD26F79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.652470260999962, 49.253823916000023 ], [ -122.652546640999958, 49.252765387000089 ], [ -122.65228972099996, 49.252757414000037 ], [ -122.652466711999921, 49.250304542000045 ], [ -122.652134067999924, 49.250294216000086 ], [ -122.65216354799999, 49.249885675000016 ], [ -122.652023089999915, 49.249881314000049 ], [ -122.652282562999957, 49.246285286000088 ], [ -122.652332412999954, 49.246286833000084 ], [ -122.652378295999966, 49.245650887000068 ], [ -122.653546166999888, 49.245687132000029 ], [ -122.653559654999981, 49.245500114000045 ], [ -122.655888018999946, 49.245572339000041 ], [ -122.659041971999898, 49.245670092000097 ], [ -122.658929387999976, 49.247233640000061 ], [ -122.659733133999936, 49.247236010000059 ], [ -122.659727570999905, 49.248045566000037 ], [ -122.658871103999928, 49.248043040000049 ], [ -122.658844368999951, 49.24841431500009 ], [ -122.659363329999962, 49.248430391000163 ], [ -122.659301178999954, 49.249293589000047 ], [ -122.65941748399996, 49.249297192000043 ], [ -122.659351812999958, 49.250209265000073 ], [ -122.659414139999953, 49.250211195000112 ], [ -122.659155196999933, 49.253807219000088 ], [ -122.657969655999977, 49.25377049300009 ], [ -122.657953558999964, 49.253993947000048 ], [ -122.655741582999937, 49.253925390000049 ], [ -122.652470260999962, 49.253823916000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164081666", "BldgCostT": "112661666", "sL_LossRatio": "0.747284556776313", "sL_AssetLoss": "1919392", "sL_BldgLoss": "1434332", "sL_StrLoss": "656742", "sL_NStrLoss": "777590", "sL_ContLoss": "485060", "geom_point": "0101000020E610000003C24EB12AAB5EC08163E83B6C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668676027999965, 49.266000660000039 ], [ -122.668676821999938, 49.265882144000059 ], [ -122.668431415, 49.265881440000037 ], [ -122.66623559599999, 49.264120105000082 ], [ -122.666183897999943, 49.263768414000118 ], [ -122.665744194999903, 49.263570395000066 ], [ -122.66467800099997, 49.262648895000041 ], [ -122.664268201999988, 49.262459499000101 ], [ -122.663307593999932, 49.262294310000094 ], [ -122.662125600999914, 49.262281497000032 ], [ -122.660199902999977, 49.262411113000098 ], [ -122.659608286999983, 49.262328500000073 ], [ -122.658774395999984, 49.261948211000053 ], [ -122.657696109, 49.260803199000101 ], [ -122.65723696, 49.260181780000067 ], [ -122.658087321999915, 49.260184299000066 ], [ -122.658819485, 49.260186463000053 ], [ -122.658817625999987, 49.260456316000045 ], [ -122.659229930999942, 49.260457532000039 ], [ -122.659228072999923, 49.260727384000042 ], [ -122.659640379999985, 49.26072859800005 ], [ -122.659636667999933, 49.261268302000104 ], [ -122.660461290999962, 49.261270728000099 ], [ -122.660463141999941, 49.261000876000033 ], [ -122.661287761999986, 49.261003297000052 ], [ -122.66129330399994, 49.260193743000094 ], [ -122.66253021199995, 49.260197362000071 ], [ -122.66252653199993, 49.260737065000036 ], [ -122.663351144999936, 49.26073947000004 ], [ -122.66335298199995, 49.260469619000048 ], [ -122.663473894, 49.260469971000092 ], [ -122.663730200999979, 49.256906493000081 ], [ -122.664380365999961, 49.256926599000053 ], [ -122.664387212999884, 49.256831381000062 ], [ -122.664004329999941, 49.256819541000098 ], [ -122.663375679999916, 49.256800098000099 ], [ -122.663634313999978, 49.253204079000099 ], [ -122.664501523999931, 49.253230900000077 ], [ -122.664501657999963, 49.253229049000105 ], [ -122.663533707999974, 49.253199112000082 ], [ -122.66367143399998, 49.251284004000063 ], [ -122.662419987999954, 49.251245288000121 ], [ -122.662678664999973, 49.247649241 ], [ -122.663061165, 49.247661076000064 ], [ -122.66327780899995, 49.244648548000065 ], [ -122.663279044999953, 49.244648586000039 ], [ -122.663287973999928, 49.244524416000097 ], [ -122.660019622999926, 49.244423241000021 ], [ -122.660072115999952, 49.243693944000121 ], [ -122.659535750999922, 49.243677331000065 ], [ -122.65953858200001, 49.243638014000062 ], [ -122.658925393999965, 49.243619018000118 ], [ -122.658850370999957, 49.244660952000068 ], [ -122.655879418, 49.24456886600013 ], [ -122.653368173000032, 49.244490964000086 ], [ -122.653377714000015, 49.244358676000104 ], [ -122.652342243999939, 49.244326537000056 ], [ -122.652490814999936, 49.242267131000055 ], [ -122.655021079999969, 49.242267709000018 ], [ -122.655859695999979, 49.242267915000077 ], [ -122.656180712999941, 49.238725060000043 ], [ -122.6562352709999, 49.238122889000053 ], [ -122.656309011, 49.237309010000047 ], [ -122.656513078999922, 49.235028653000086 ], [ -122.656543679999942, 49.234686959000051 ], [ -122.656605652999957, 49.233994591000069 ], [ -122.656696188999931, 49.232982587000066 ], [ -122.656706463999953, 49.232743879000033 ], [ -122.656722972999887, 49.232382374000061 ], [ -122.656734236999938, 49.23209992400006 ], [ -122.659013189999925, 49.232065130000066 ], [ -122.659010913999978, 49.232395810000114 ], [ -122.659007225999986, 49.232931401000066 ], [ -122.660243454999929, 49.23293504300009 ], [ -122.660241602999946, 49.233204896000103 ], [ -122.661065760999961, 49.233207316000069 ], [ -122.661060220999943, 49.234016875000115 ], [ -122.65899979699999, 49.234010811000076 ], [ -122.658997938999974, 49.234280664000089 ], [ -122.658593204999988, 49.234279469000057 ], [ -122.65857928599999, 49.234472789000115 ], [ -122.658561366999919, 49.234472233000048 ], [ -122.658512721999898, 49.235147888000121 ], [ -122.658452319999967, 49.235146016000101 ], [ -122.658196607999969, 49.238697386000048 ], [ -122.657319192999935, 49.238670189000089 ], [ -122.657315988999983, 49.239133133000067 ], [ -122.656903862999968, 49.239131909 ], [ -122.656901993999938, 49.239401762000064 ], [ -122.65648986299999, 49.239400536000097 ], [ -122.656484303999974, 49.240202033000052 ], [ -122.657376224999922, 49.240229685000067 ], [ -122.657395110999943, 49.239967491000066 ], [ -122.65981280199999, 49.240042409000047 ], [ -122.659833723999924, 49.239751750000089 ], [ -122.663080998999959, 49.239852289000098 ], [ -122.663082102999951, 49.239689809000076 ], [ -122.663494236999924, 49.239691010000058 ], [ -122.663497901999932, 49.23915130400006 ], [ -122.664322157999948, 49.23915370200006 ], [ -122.664323986999975, 49.238883849000054 ], [ -122.666384615999931, 49.238889818000104 ], [ -122.666393703999944, 49.237540555000081 ], [ -122.666805817999929, 49.237541744000033 ], [ -122.66681126499999, 49.236732186000069 ], [ -122.668047586999961, 49.236735745000011 ], [ -122.66804397, 49.237275451000095 ], [ -122.66886819399997, 49.237277817000049 ], [ -122.668862782999952, 49.238087375000141 ], [ -122.668450663999977, 49.238086193000093 ], [ -122.668445245999962, 49.238895751000072 ], [ -122.66885737, 49.238896933000092 ], [ -122.668855566000019, 49.239166786000062 ], [ -122.670916207999966, 49.239172674000059 ], [ -122.670910678999945, 49.240004730000031 ], [ -122.67369608599995, 49.240090688000151 ], [ -122.673645241999949, 49.240800031000035 ], [ -122.67502661199994, 49.240842633000085 ], [ -122.675035721999947, 49.239454193000036 ], [ -122.674623589999925, 49.239453034000078 ], [ -122.674625363999951, 49.239183180000055 ], [ -122.673801106, 49.239180856000068 ], [ -122.673802883999926, 49.238911003000069 ], [ -122.672566505999939, 49.238907505000022 ], [ -122.672573639999882, 49.237828094000115 ], [ -122.672161523999989, 49.237826925000057 ], [ -122.672168667999969, 49.236747514000115 ], [ -122.673404992, 49.236751015000024 ], [ -122.673403212999986, 49.237020868000101 ], [ -122.673815322999985, 49.237022033000059 ], [ -122.67381354599999, 49.237291886000044 ], [ -122.674637770999951, 49.237294209000027 ], [ -122.674635998999946, 49.237564063000058 ], [ -122.675460228999924, 49.237566381000072 ], [ -122.675463764999932, 49.23702667500006 ], [ -122.676700096999951, 49.237030142000044 ], [ -122.676693051999962, 49.238109554000118 ], [ -122.677105170999937, 49.238110707000054 ], [ -122.677099894, 49.238920266000079 ], [ -122.677605663999927, 49.238921678000089 ], [ -122.677620361999956, 49.238716378000042 ], [ -122.683101965999953, 49.2388851360001 ], [ -122.683010159999981, 49.240169586000064 ], [ -122.684532394999934, 49.240216400000122 ], [ -122.684485377999948, 49.240874492000088 ], [ -122.686262964999941, 49.240929131 ], [ -122.686305490999985, 49.240333573000086 ], [ -122.685923730999946, 49.24032184000005 ], [ -122.685983529999945, 49.239484470000072 ], [ -122.685338997999963, 49.23948271600004 ], [ -122.685342427999927, 49.238943010000078 ], [ -122.684930298999987, 49.238941887000088 ], [ -122.68493201699998, 49.238672033000107 ], [ -122.684519893999934, 49.238670909000056 ], [ -122.684526766999937, 49.237591495000125 ], [ -122.685763113999954, 49.237594865000098 ], [ -122.685761402999944, 49.237864719000136 ], [ -122.686099128, 49.237865637 ], [ -122.686174818999945, 49.236805612000062 ], [ -122.685984150999957, 49.236799752000131 ], [ -122.686062202999949, 49.235706673000038 ], [ -122.685362996999956, 49.23570477100003 ], [ -122.685368139999952, 49.234895211000079 ], [ -122.686119996999949, 49.234897257000064 ], [ -122.686174775, 49.234130054000047 ], [ -122.686149021999967, 49.234129263000099 ], [ -122.686183953999915, 49.233639994000015 ], [ -122.68542112599998, 49.23361654500011 ], [ -122.68546281499998, 49.233032776000059 ], [ -122.681541226999968, 49.232912143000121 ], [ -122.681632605999951, 49.231634024000122 ], [ -122.680921384999962, 49.231612131000126 ], [ -122.680976933999958, 49.230835295000098 ], [ -122.679625012999935, 49.230831554000048 ], [ -122.679623267999915, 49.231101408 ], [ -122.67797502399992, 49.23109682400014 ], [ -122.6779732699999, 49.231366678000022 ], [ -122.677149141999962, 49.231364377000091 ], [ -122.677147383999937, 49.231634230000061 ], [ -122.676735318999988, 49.231633079000098 ], [ -122.676733557999938, 49.23190293200004 ], [ -122.675497352999983, 49.231899465000076 ], [ -122.675504423999953, 49.230820053000038 ], [ -122.675092364999912, 49.230818895000041 ], [ -122.67509413399992, 49.230549041000124 ], [ -122.673445907999934, 49.230544393000052 ], [ -122.673444127999957, 49.230814247000104 ], [ -122.673032069999948, 49.230813081000072 ], [ -122.67303029, 49.231082935000103 ], [ -122.672618228999966, 49.231081767000099 ], [ -122.672616443999985, 49.231351620000027 ], [ -122.672204379999968, 49.231350453000069 ], [ -122.672197239999917, 49.232429865000029 ], [ -122.673021384999956, 49.232432201000073 ], [ -122.673016041999986, 49.233241760000062 ], [ -122.672191881999964, 49.233239425000043 ], [ -122.672190095999909, 49.233509277000095 ], [ -122.670953852999958, 49.233505763000039 ], [ -122.670952060999937, 49.233775616000052 ], [ -122.669303727999974, 49.23377090900005 ], [ -122.669312734999963, 49.232421644000063 ], [ -122.668488590999942, 49.232419282000059 ], [ -122.668499423999947, 49.230800163000048 ], [ -122.667675307999943, 49.230797795000051 ], [ -122.667677118999976, 49.230527942000073 ], [ -122.667265061999956, 49.230526755000078 ], [ -122.667266873999921, 49.230256903000047 ], [ -122.666854819999983, 49.230255715000048 ], [ -122.666856633999927, 49.229985862000035 ], [ -122.666444582999929, 49.229984673000111 ], [ -122.666446399999955, 49.229714820000019 ], [ -122.665912052999914, 49.229713276000076 ], [ -122.665823281999963, 49.230949123000059 ], [ -122.665099441999971, 49.230926734000107 ], [ -122.665097652, 49.230951640000029 ], [ -122.664803123999917, 49.230942530000036 ], [ -122.664486668999984, 49.230932739000146 ], [ -122.664629963999928, 49.229157328000035 ], [ -122.664657872999939, 49.228886560000028 ], [ -122.664773998999934, 49.227759871000096 ], [ -122.665088553999979, 49.22628107200007 ], [ -122.665205063999935, 49.225380255000069 ], [ -122.665277345999925, 49.224941878000031 ], [ -122.665421270999971, 49.224200820000107 ], [ -122.665551262999912, 49.223416128000046 ], [ -122.665726191999909, 49.222332464000061 ], [ -122.66570444599999, 49.222305385000062 ], [ -122.664162888999968, 49.221247118000122 ], [ -122.664512043999977, 49.221249285000077 ], [ -122.665568329999957, 49.221654619000063 ], [ -122.666821700999961, 49.222172723000028 ], [ -122.669093966, 49.222975529000081 ], [ -122.669254356999943, 49.223036332000028 ], [ -122.670105293999924, 49.223358916000016 ], [ -122.672999400999913, 49.224574747000048 ], [ -122.676205270999958, 49.225822460000074 ], [ -122.676114246999944, 49.225904358000058 ], [ -122.681558968999951, 49.22800313600009 ], [ -122.681593086999968, 49.228016277 ], [ -122.682653793999989, 49.228425082000065 ], [ -122.685887647999948, 49.229720381000064 ], [ -122.68690847100001, 49.230129208000108 ], [ -122.689515556999979, 49.231173287000061 ], [ -122.689516284999954, 49.231390455000046 ], [ -122.689520609999974, 49.232661896000081 ], [ -122.689521015999929, 49.232764073000041 ], [ -122.68952301299997, 49.23327686100005 ], [ -122.689544530999967, 49.23873716100006 ], [ -122.689545212999974, 49.238917127000029 ], [ -122.689545419999916, 49.238962098000087 ], [ -122.689545792999979, 49.239061034000095 ], [ -122.689546590999953, 49.239267200000036 ], [ -122.689541640999948, 49.239610011000146 ], [ -122.68950288399995, 49.242285994000106 ], [ -122.689525388999982, 49.244127400000131 ], [ -122.689596904999974, 49.249825784000116 ], [ -122.689630026999922, 49.252545157000078 ], [ -122.689669609999925, 49.25579529100002 ], [ -122.68966059899995, 49.257250087000031 ], [ -122.689638791000021, 49.257708698000016 ], [ -122.689522833999959, 49.260146033000048 ], [ -122.689470618999948, 49.26124347700005 ], [ -122.689369286999977, 49.263372296000128 ], [ -122.689335387999932, 49.263873968000105 ], [ -122.68932953299999, 49.263960150000052 ], [ -122.689319207999986, 49.264113146000035 ], [ -122.689304845, 49.264325776000135 ], [ -122.6867838, 49.26416860300003 ], [ -122.686057103999971, 49.263942102000058 ], [ -122.685735209, 49.263752224000065 ], [ -122.68577071199995, 49.263255368000067 ], [ -122.685878348999964, 49.261748960000013 ], [ -122.685364386999964, 49.261733170000134 ], [ -122.685411670999883, 49.261071500000085 ], [ -122.683964832999919, 49.261067551000075 ], [ -122.68395966199995, 49.261877108000142 ], [ -122.682722708999961, 49.261873718000047 ], [ -122.682731358999959, 49.260524457000123 ], [ -122.68231905199994, 49.260523324000076 ], [ -122.682327712999978, 49.259174064000021 ], [ -122.68438918899993, 49.259179713000044 ], [ -122.684392631999941, 49.258640009000018 ], [ -122.682743467999956, 49.258635493000071 ], [ -122.68275038599991, 49.257556083000082 ], [ -122.685636358999943, 49.257563971000117 ], [ -122.685632931999962, 49.258103676000047 ], [ -122.687451570999912, 49.258108611000061 ], [ -122.687462533999934, 49.257955091000042 ], [ -122.686108350999945, 49.257913500000036 ], [ -122.68618442699993, 49.25684856500002 ], [ -122.686123816999981, 49.256846704000026 ], [ -122.686303432999964, 49.254332252000033 ], [ -122.685735358999978, 49.254314799000078 ], [ -122.685956241999946, 49.251222766000126 ], [ -122.685918657999963, 49.251221612000123 ], [ -122.685979037999971, 49.250376311000089 ], [ -122.68572190299993, 49.250368410000149 ], [ -122.685805446999922, 49.24919885900006 ], [ -122.684452838999974, 49.249195172000043 ], [ -122.684458, 49.248385615000117 ], [ -122.68487020399999, 49.248386740000115 ], [ -122.684871922999918, 49.248116887000037 ], [ -122.685284124999981, 49.248118010000098 ], [ -122.685287554999888, 49.247578305000097 ], [ -122.684875357999914, 49.247577181000032 ], [ -122.684880508999981, 49.246767623000075 ], [ -122.686003617999972, 49.246770681000079 ], [ -122.686034490999987, 49.246338403000081 ], [ -122.686038904999947, 49.246338539000057 ], [ -122.686046578999949, 49.246231083000055 ], [ -122.684883943999978, 49.246227918000045 ], [ -122.684889094999932, 49.245418359000013 ], [ -122.686125636999989, 49.245421725000085 ], [ -122.68612321499999, 49.245803899000073 ], [ -122.686144132999985, 49.245511004000022 ], [ -122.686167585999954, 49.245511725 ], [ -122.686237526999903, 49.244532380000088 ], [ -122.685259855999945, 49.244502335000035 ], [ -122.685245141999971, 49.244708313000089 ], [ -122.683245278999948, 49.244646826000093 ], [ -122.68324209799998, 49.245143998000131 ], [ -122.682829919999961, 49.245142867000119 ], [ -122.682828191999974, 49.245412719000093 ], [ -122.682416009999955, 49.245411586000117 ], [ -122.682412549999967, 49.245951293000033 ], [ -122.68204781899999, 49.245950290000046 ], [ -122.68197064499995, 49.247029507000043 ], [ -122.684054402999919, 49.247035225000069 ], [ -122.684044070999974, 49.248654341000105 ], [ -122.68201175199998, 49.248648766000017 ], [ -122.681853451, 49.250862277000117 ], [ -122.681743915999945, 49.250858908000033 ], [ -122.68170980099994, 49.251335899000011 ], [ -122.68186588099995, 49.251340701000103 ], [ -122.681608671000021, 49.2549367720001 ], [ -122.680280532, 49.254895906000058 ], [ -122.680246633999943, 49.255369610000059 ], [ -122.681897730999978, 49.25542041000007 ], [ -122.68164050199999, 49.259016460000076 ], [ -122.681517500999945, 49.259012676000054 ], [ -122.681298160999958, 49.262078459000101 ], [ -122.67972209, 49.262029966000078 ], [ -122.679714551999936, 49.262135274000045 ], [ -122.681071698999958, 49.26213902900011 ], [ -122.681071590999977, 49.262156050000044 ], [ -122.681069810999972, 49.262432116000042 ], [ -122.680428410999937, 49.262882493000042 ], [ -122.680359187999983, 49.262946630000052 ], [ -122.680241828999968, 49.262946305000042 ], [ -122.680241119999906, 49.263056025000026 ], [ -122.680068802, 49.263215684000045 ], [ -122.67941542799997, 49.263213873000048 ], [ -122.679411470000019, 49.263824704000022 ], [ -122.679197614999921, 49.26402283700007 ], [ -122.678997848, 49.26402228300001 ], [ -122.678996916999949, 49.264165757000072 ], [ -122.678753426999933, 49.264291460000074 ], [ -122.677646024999959, 49.26428837600006 ], [ -122.677346745999955, 49.264287541000122 ], [ -122.677355543999965, 49.262938281000089 ], [ -122.677834584999943, 49.262939619000115 ], [ -122.67900485, 49.262942875000057 ], [ -122.679007338999952, 49.262559110000097 ], [ -122.677841759999936, 49.262523225000088 ], [ -122.674198333000021, 49.262410971000065 ], [ -122.674367712999981, 49.260048617000088 ], [ -122.674184777999969, 49.260042977000055 ], [ -122.674252559999928, 49.259097611000108 ], [ -122.671295336999933, 49.2590064030001 ], [ -122.671305667999889, 49.258862432000058 ], [ -122.669090533999935, 49.258794058000028 ], [ -122.669077203999962, 49.258979704000161 ], [ -122.670273282999972, 49.259016629 ], [ -122.670015132999964, 49.262612631000131 ], [ -122.669958660999939, 49.262610888000054 ], [ -122.669878545999921, 49.26372673 ], [ -122.670340605999939, 49.263728049000065 ], [ -122.670335212999973, 49.264537603000086 ], [ -122.669922871999987, 49.264536427000053 ], [ -122.669914067999954, 49.265856652000139 ], [ -122.66991207199996, 49.266155537000067 ], [ -122.669022903999945, 49.266152992000059 ], [ -122.668676027999965, 49.266000660000039 ] ], [ [ -122.664618694999916, 49.261220571000131 ], [ -122.664667669, 49.260539478000034 ], [ -122.664589464999949, 49.260537059000065 ], [ -122.664584839999975, 49.261219524000133 ], [ -122.664618694999916, 49.261220571000131 ] ], [ [ -122.674183608, 49.255491505000052 ], [ -122.674278518999955, 49.254167595000069 ], [ -122.673126306999933, 49.254132065000121 ], [ -122.673384168999945, 49.250536008000068 ], [ -122.674319279999963, 49.250564846000017 ], [ -122.674331336999899, 49.250396631000093 ], [ -122.67621310199992, 49.250454637000054 ], [ -122.676223665999885, 49.250307176000021 ], [ -122.676288192999962, 49.250309165000061 ], [ -122.676311579999947, 49.249982678000045 ], [ -122.67642111299989, 49.249986053 ], [ -122.67644895799999, 49.249597344000072 ], [ -122.673991821999962, 49.24952160000008 ], [ -122.674249592999956, 49.245925517000032 ], [ -122.676229432999932, 49.245986552000033 ], [ -122.676229775999929, 49.24593413000008 ], [ -122.675405406000024, 49.245931818000088 ], [ -122.675407174999975, 49.245661966000043 ], [ -122.674582809999976, 49.245659646000036 ], [ -122.674589902999941, 49.244580236000033 ], [ -122.67582642299999, 49.2445837120001 ], [ -122.675822889999964, 49.245123418000041 ], [ -122.676235067999954, 49.245124573000062 ], [ -122.676239255999988, 49.244484072000063 ], [ -122.672380025999971, 49.244365060000156 ], [ -122.672368309999968, 49.244528426000102 ], [ -122.670349342999927, 49.244466109000108 ], [ -122.670171557999964, 49.246943571000067 ], [ -122.669872715999958, 49.246934344000103 ], [ -122.669736331999957, 49.248834524000081 ], [ -122.67042864899993, 49.248855899 ], [ -122.670170566999943, 49.252451957000041 ], [ -122.670120816999912, 49.252450421000042 ], [ -122.670111832999979, 49.252575588000077 ], [ -122.670701869999945, 49.252593801000017 ], [ -122.670512393999928, 49.255233961000023 ], [ -122.672994553999942, 49.255310547000086 ], [ -122.672984228999937, 49.255454520000086 ], [ -122.674183608, 49.255491505000052 ] ], [ [ -122.68726091299996, 49.24228752100008 ], [ -122.687268122999924, 49.242186532000041 ], [ -122.686970469999906, 49.242185726000052 ], [ -122.686969824999935, 49.242287717000096 ], [ -122.686968762999953, 49.242455579000129 ], [ -122.686809836999913, 49.242455149000115 ], [ -122.686671656999948, 49.24439040099999 ], [ -122.687109823999961, 49.244403863000059 ], [ -122.68726091299996, 49.24228752100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.748175182481752", "sL_AssetLoss": "43840", "sL_BldgLoss": "32800", "sL_StrLoss": "15640", "sL_NStrLoss": "17160", "sL_ContLoss": "11040", "geom_point": "0101000020E61000009C7495CD60A95EC0C1A075227B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644758008999986, 49.247441558000084 ], [ -122.644763668999971, 49.245435636000131 ], [ -122.644767850000036, 49.243951385000038 ], [ -122.644769665999917, 49.24330374000003 ], [ -122.644770540999943, 49.242997897000123 ], [ -122.64477260299995, 49.24226499600006 ], [ -122.648340624999918, 49.242266052000083 ], [ -122.648174457, 49.244566512000063 ], [ -122.64817980499997, 49.244566679000087 ], [ -122.648088172, 49.245835188000086 ], [ -122.648264879999957, 49.245840680000093 ], [ -122.648229542, 49.246329899000095 ], [ -122.648341507999987, 49.246333379000092 ], [ -122.648083909999983, 49.249899216000095 ], [ -122.648081729999944, 49.24992939800007 ], [ -122.646988542999949, 49.249895419000033 ], [ -122.646940631999925, 49.25055835100008 ], [ -122.646692893999955, 49.250218402000023 ], [ -122.646587387999929, 49.249839597000118 ], [ -122.646326497999937, 49.249551908000093 ], [ -122.645958219999955, 49.249325398000025 ], [ -122.645135617000037, 49.249178802000081 ], [ -122.644752517999962, 49.24901031800006 ], [ -122.644752839999981, 49.248998005000018 ], [ -122.64475369099992, 49.248965293000047 ], [ -122.644754420999973, 49.248709896000079 ], [ -122.644754760999916, 49.248592968000082 ], [ -122.644755858999986, 49.248197189000045 ], [ -122.644756484999959, 49.247983283000096 ], [ -122.644758008999986, 49.247441558000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.730627306273063", "sL_AssetLoss": "10840", "sL_BldgLoss": "7920", "sL_StrLoss": "3640", "sL_NStrLoss": "4280", "sL_ContLoss": "2920", "geom_point": "0101000020E61000006E60590628AB5EC0BC36E17F27A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.671963103999971, 49.26778051700007 ], [ -122.67196667499995, 49.267242085000071 ], [ -122.671970259999924, 49.266701111000017 ], [ -122.674217453999944, 49.26670747 ], [ -122.674444404999946, 49.266708110000067 ], [ -122.674445374999905, 49.266560941000101 ], [ -122.674449731999943, 49.265898554000088 ], [ -122.674927162999964, 49.265899898000015 ], [ -122.674946253999977, 49.26563358900011 ], [ -122.675664410999957, 49.265655719000051 ], [ -122.675682036999959, 49.265409806000079 ], [ -122.676051047999977, 49.265421175000043 ], [ -122.676684267999946, 49.265440681 ], [ -122.67657660699993, 49.265507305000078 ], [ -122.67618818699999, 49.265955888000079 ], [ -122.676073299, 49.266792 ], [ -122.675327582999941, 49.267447094000076 ], [ -122.674800012999924, 49.267673347 ], [ -122.674811099999943, 49.267518712000033 ], [ -122.674439079999928, 49.267517664000081 ], [ -122.67443730299999, 49.267787515000052 ], [ -122.671963103999971, 49.26778051700007 ] ], [ [ -122.67485551499999, 49.266899232000071 ], [ -122.674869132999902, 49.266709305000042 ], [ -122.674856763999969, 49.266709270000085 ], [ -122.67485551499999, 49.266899232000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.746060606060606", "sL_AssetLoss": "16500", "sL_BldgLoss": "12310", "sL_StrLoss": "6010", "sL_NStrLoss": "6300", "sL_ContLoss": "4190", "geom_point": "0101000020E6100000F808EBB54FA95EC06F362DE36CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644525803999983, 49.268003530000051 ], [ -122.644446369999955, 49.266258942000043 ], [ -122.645937131999986, 49.266305295000016 ], [ -122.645833488999969, 49.267738366000117 ], [ -122.646715393999912, 49.26776577800009 ], [ -122.646455368999924, 49.271361676000026 ], [ -122.64439885099992, 49.271297744 ], [ -122.644461614999926, 49.27110470500002 ], [ -122.644508762999948, 49.270959702000049 ], [ -122.644597887999936, 49.270685593000046 ], [ -122.644635519999966, 49.270411993000025 ], [ -122.644609789999947, 49.269847784000063 ], [ -122.644593841999921, 49.269497030000089 ], [ -122.644525803999983, 49.268003530000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17845834", "BldgCostT": "10833334", "sL_LossRatio": "0.684318030945208", "sL_AssetLoss": "195830", "sL_BldgLoss": "134010", "sL_StrLoss": "65620", "sL_NStrLoss": "68390", "sL_ContLoss": "61820", "geom_point": "0101000020E6100000C81441D632AA5EC02B49433209A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.658733885999979, 49.272599617000026 ], [ -122.658735746999966, 49.272329767000024 ], [ -122.657086130999957, 49.272324882000156 ], [ -122.657095483999939, 49.270975628000038 ], [ -122.657507876999986, 49.270976851000079 ], [ -122.65751161299994, 49.270437150000113 ], [ -122.657099224999953, 49.270435927000023 ], [ -122.657106703999943, 49.269356523000077 ], [ -122.65751908499999, 49.269357746000026 ], [ -122.657520951999985, 49.269087895000041 ], [ -122.656696198999967, 49.26908544700008 ], [ -122.656701815999938, 49.268275895000031 ], [ -122.657526556999969, 49.26827834200008 ], [ -122.657534026999926, 49.267198938000071 ], [ -122.65712166599999, 49.267197714000076 ], [ -122.657127275, 49.266388161000101 ], [ -122.657539630999935, 49.266389384000043 ], [ -122.657543364999981, 49.265849682000081 ], [ -122.657131014999962, 49.26584845900009 ], [ -122.657132884999982, 49.265578607000116 ], [ -122.65630819, 49.265576157000069 ], [ -122.656306314999952, 49.265846009000072 ], [ -122.655893966999912, 49.265844781000169 ], [ -122.65588833599999, 49.266654335000041 ], [ -122.654651266999977, 49.266650644000038 ], [ -122.654653150999962, 49.266380793000025 ], [ -122.654240795999939, 49.26637955900005 ], [ -122.654242682999936, 49.266109709000027 ], [ -122.653830328999916, 49.266108473000038 ], [ -122.653832217999962, 49.26583862300005 ], [ -122.653419867999943, 49.265837386000022 ], [ -122.65342175799999, 49.265567536000042 ], [ -122.653009409999925, 49.265566297000056 ], [ -122.653016979999961, 49.264486894000065 ], [ -122.652604641999972, 49.264485654000048 ], [ -122.652614113999974, 49.263136399000054 ], [ -122.65343876799993, 49.263138875000053 ], [ -122.653442545999951, 49.262599173000076 ], [ -122.653854868999986, 49.26260040799999 ], [ -122.653860530999935, 49.261790855000065 ], [ -122.653448214999955, 49.261789619000091 ], [ -122.65345010499999, 49.261519768000028 ], [ -122.653037791999978, 49.26151853100005 ], [ -122.653039683999921, 49.261248679000047 ], [ -122.652627372999987, 49.261247440000027 ], [ -122.652633054999939, 49.260437887000101 ], [ -122.655106881999984, 49.260445297000039 ], [ -122.65511440399996, 49.259365892000055 ], [ -122.655948163999966, 49.259368378000062 ], [ -122.656347658999948, 49.259892763000011 ], [ -122.656347543999971, 49.25990928100002 ], [ -122.65636027, 49.259909318000076 ], [ -122.657457883999911, 49.261349996000078 ], [ -122.65859220199999, 49.262262994000011 ], [ -122.659469489999935, 49.262624691000028 ], [ -122.660018686999933, 49.26274290900006 ], [ -122.661957085999973, 49.26270449600004 ], [ -122.662561193, 49.262795610000062 ], [ -122.663027794, 49.26295090400005 ], [ -122.663767016999969, 49.263419406000082 ], [ -122.665091881999928, 49.264655593000057 ], [ -122.666616841999954, 49.265613069000047 ], [ -122.666615067999928, 49.26587621400008 ], [ -122.666801230999965, 49.265876750000082 ], [ -122.666813588999943, 49.265911810000027 ], [ -122.66702671799996, 49.265981673000098 ], [ -122.667025602999956, 49.266147254000082 ], [ -122.667384514999952, 49.266148288000039 ], [ -122.667848325999927, 49.266444934000091 ], [ -122.667845478999965, 49.266869101000097 ], [ -122.667385998999976, 49.266695106000078 ], [ -122.667420778999926, 49.266957962000099 ], [ -122.666195436999914, 49.26695442800014 ], [ -122.666197255999975, 49.266684577000071 ], [ -122.665372542999947, 49.266682192000125 ], [ -122.665376192999986, 49.266142489000032 ], [ -122.66496384, 49.266141294000086 ], [ -122.664956530000012, 49.267220700000088 ], [ -122.665368892999965, 49.267221894000052 ], [ -122.665364911999944, 49.267810518000068 ], [ -122.666120842999973, 49.267833877000029 ], [ -122.664719905999945, 49.26870318900005 ], [ -122.662742787999932, 49.270271296000075 ], [ -122.661751216999988, 49.270826706000079 ], [ -122.660468814999902, 49.271164299000048 ], [ -122.659959403999949, 49.271369401000129 ], [ -122.659380192999919, 49.271755301000084 ], [ -122.659101908999943, 49.272285094000054 ], [ -122.659162772999977, 49.272600884000049 ], [ -122.658733885999979, 49.272599617000026 ] ], [ [ -122.662880764999954, 49.269263405000089 ], [ -122.662881852999973, 49.269103660000077 ], [ -122.662057098999952, 49.269101251000095 ], [ -122.662049725999964, 49.270180656000058 ], [ -122.662308867999954, 49.270181414000042 ], [ -122.662376060999918, 49.269247795000119 ], [ -122.662880764999954, 49.269263405000089 ] ], [ [ -122.65959397599994, 49.267474881000091 ], [ -122.659601400999961, 49.266395477000096 ], [ -122.660838466, 49.266399114000151 ], [ -122.660842163999959, 49.26585941200009 ], [ -122.661254514999925, 49.265860622000048 ], [ -122.661260057999982, 49.265051068000012 ], [ -122.660847713999942, 49.26504985800004 ], [ -122.660855110999989, 49.26397045200013 ], [ -122.659618107999933, 49.263966815000082 ], [ -122.659616252999982, 49.264236667 ], [ -122.658379243999946, 49.26423301500013 ], [ -122.658382967999955, 49.263693313000026 ], [ -122.657970636999934, 49.263692093000074 ], [ -122.657972501999922, 49.263422242000026 ], [ -122.657147841999944, 49.263419798000058 ], [ -122.657140364000028, 49.264499202000046 ], [ -122.658377378999958, 49.264502867 ], [ -122.658371790999951, 49.265312421000075 ], [ -122.658784136999927, 49.26531363900007 ], [ -122.658776691999918, 49.266393044000075 ], [ -122.658364338999974, 49.266391826000081 ], [ -122.658358748999916, 49.267201379000092 ], [ -122.658771109999975, 49.267202598000054 ], [ -122.658769248999945, 49.267472449000095 ], [ -122.65959397599994, 49.267474881000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.75974930362117", "sL_AssetLoss": "14360", "sL_BldgLoss": "10910", "sL_StrLoss": "5510", "sL_NStrLoss": "5400", "sL_ContLoss": "3450", "geom_point": "0101000020E6100000CE05E401DBA95EC04C258FE981A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.653376388999945, 49.27204395800009 ], [ -122.653380171999956, 49.271504256000057 ], [ -122.652967774, 49.271503018000018 ], [ -122.652971558999965, 49.27096331600012 ], [ -122.652559166999978, 49.270962077000071 ], [ -122.652581906999927, 49.267723867000093 ], [ -122.65299427299999, 49.26772510500011 ], [ -122.65299616499999, 49.267455256000098 ], [ -122.654645617999961, 49.267460197000077 ], [ -122.654643732999915, 49.267730047000143 ], [ -122.65546846399999, 49.267732510000037 ], [ -122.655447793999926, 49.270700870000034 ], [ -122.655035402999985, 49.270699640000082 ], [ -122.655029757999941, 49.271509193000064 ], [ -122.65461736099995, 49.271507960000058 ], [ -122.654613593999954, 49.272047662000041 ], [ -122.653376388999945, 49.27204395800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.747648261758691", "sL_AssetLoss": "24450", "sL_BldgLoss": "18280", "sL_StrLoss": "8950", "sL_NStrLoss": "9330", "sL_ContLoss": "6170", "geom_point": "0101000020E610000077474AA357A95EC09841C6ED61A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644628617999928, 49.253594239000073 ], [ -122.644693000999922, 49.251228880000049 ], [ -122.644713693999975, 49.250468806000114 ], [ -122.644719767999945, 49.250239630000053 ], [ -122.64473367799998, 49.249717693000072 ], [ -122.644738229999987, 49.249546705000107 ], [ -122.644740383999959, 49.249465758000042 ], [ -122.644743181999971, 49.249360736000064 ], [ -122.645406979999947, 49.249628792000038 ], [ -122.645748621999971, 49.2498638020001 ], [ -122.646893569000014, 49.251209522000082 ], [ -122.646836609999966, 49.25199760600006 ], [ -122.6474763199999, 49.252017491000082 ], [ -122.647559393999984, 49.252145389000091 ], [ -122.647715509999955, 49.253468497000064 ], [ -122.647435868999963, 49.255620297000107 ], [ -122.64457588, 49.255531371000089 ], [ -122.644628617999928, 49.253594239000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.743690851735016", "sL_AssetLoss": "12680", "sL_BldgLoss": "9430", "sL_StrLoss": "3930", "sL_NStrLoss": "5500", "sL_ContLoss": "3250", "geom_point": "0101000020E6100000287ECED5BDA95EC05DFF09890FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.653467109999937, 49.259091106000078 ], [ -122.653471100000019, 49.258521343000091 ], [ -122.649530469999931, 49.258399026000035 ], [ -122.649590466999911, 49.257568365000083 ], [ -122.650970285999975, 49.257661289000076 ], [ -122.652040714999941, 49.257889192000064 ], [ -122.653536498999969, 49.25806438700009 ], [ -122.654509710999918, 49.258373401000043 ], [ -122.655125797999915, 49.258681102000025 ], [ -122.655406714, 49.258911002000026 ], [ -122.654705423999957, 49.258889257000078 ], [ -122.654703989999959, 49.259094809 ], [ -122.653467109999937, 49.259091106000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.758241758241758", "sL_AssetLoss": "10010", "sL_BldgLoss": "7590", "sL_StrLoss": "3350", "sL_NStrLoss": "4240", "sL_ContLoss": "2420", "geom_point": "0101000020E6100000110CB5E0A4AA5EC0C70446A8E39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.665589514999937, 49.234569792000066 ], [ -122.665591337999942, 49.234299939000046 ], [ -122.66517924899992, 49.234298744000128 ], [ -122.665181071999982, 49.23402889200009 ], [ -122.66476898699996, 49.234027697000087 ], [ -122.664778117999944, 49.232678432000043 ], [ -122.668074709999956, 49.232687952000042 ], [ -122.668069285999977, 49.233497511000088 ], [ -122.667657204999927, 49.233496325000061 ], [ -122.667655393999951, 49.233766179000078 ], [ -122.667243312, 49.233764992000012 ], [ -122.667237873999952, 49.23457455100008 ], [ -122.665589514999937, 49.234569792000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.744994110718492", "sL_AssetLoss": "16980", "sL_BldgLoss": "12650", "sL_StrLoss": "6170", "sL_NStrLoss": "6480", "sL_ContLoss": "4330", "geom_point": "0101000020E61000004393405A4EA95EC0CE03D4ABB3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644344618999966, 49.264023891000079 ], [ -122.644435278999964, 49.260693516000075 ], [ -122.646257275999929, 49.26075017199999 ], [ -122.646153886999969, 49.262180064000106 ], [ -122.646630052999939, 49.262194866000044 ], [ -122.646370052999956, 49.265790794000054 ], [ -122.64442229799999, 49.265730235000113 ], [ -122.644352139999967, 49.264189194000053 ], [ -122.644348425999979, 49.264108343000018 ], [ -122.644344618999966, 49.264023891000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19792583", "BldgCostT": "13178333", "sL_LossRatio": "0.718599079742936", "sL_AssetLoss": "262970", "sL_BldgLoss": "188970", "sL_StrLoss": "87650", "sL_NStrLoss": "101320", "sL_ContLoss": "74000", "geom_point": "0101000020E6100000DEE2AF0346AB5EC055FC00207EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.655820759999969, 49.276368965000103 ], [ -122.655835747999944, 49.274214569 ], [ -122.656569688999951, 49.274525404000038 ], [ -122.658286878999945, 49.274783194000094 ], [ -122.658904606999954, 49.274730498000025 ], [ -122.659132094999975, 49.274661360000088 ], [ -122.659130810999969, 49.274847712000053 ], [ -122.660351227999968, 49.274885487000113 ], [ -122.660360031999943, 49.274763260000022 ], [ -122.659956264999934, 49.27476207200003 ], [ -122.659960280999911, 49.274177919000081 ], [ -122.660049904999966, 49.27408669400009 ], [ -122.66006710399995, 49.273672302000072 ], [ -122.659703504999925, 49.27287233400012 ], [ -122.659969249999946, 49.272873116000056 ], [ -122.659971102999961, 49.27260326500005 ], [ -122.659580689999942, 49.272602116000016 ], [ -122.659580319000014, 49.272601301000115 ], [ -122.6596094, 49.272151298000018 ], [ -122.659874189999968, 49.271863592000145 ], [ -122.660453887999935, 49.271533104000085 ], [ -122.662601612999964, 49.270828196000117 ], [ -122.663320794999919, 49.270362390000066 ], [ -122.664427413999988, 49.2694309950001 ], [ -122.665338588999944, 49.268848493000114 ], [ -122.667145580999957, 49.267910001000097 ], [ -122.66737078200002, 49.267767388000038 ], [ -122.66742707399996, 49.267767550000094 ], [ -122.667427314999927, 49.267731587000121 ], [ -122.667794982999979, 49.267498752000016 ], [ -122.667841251999974, 49.267498885000066 ], [ -122.667841450999944, 49.267469325000086 ], [ -122.66821917599999, 49.267230114000022 ], [ -122.66909444699999, 49.26723262400003 ], [ -122.669238792999934, 49.267276213000123 ], [ -122.66949134399999, 49.267408253000092 ], [ -122.669490707999969, 49.267503615000109 ], [ -122.669674750999917, 49.26750414100011 ], [ -122.670313223, 49.267837942000064 ], [ -122.670311838999936, 49.268045674000042 ], [ -122.670712755999929, 49.268046817000055 ], [ -122.67113511699992, 49.268267624000067 ], [ -122.671129401999934, 49.269127430000019 ], [ -122.670717024999988, 49.269126256000078 ], [ -122.670715969999904, 49.269284922000054 ], [ -122.672365179999971, 49.269335794 ], [ -122.672368323999976, 49.268861093000069 ], [ -122.673605449999968, 49.268864595000132 ], [ -122.673606591999956, 49.268691492000102 ], [ -122.673667989999927, 49.268693302000081 ], [ -122.674288395999938, 49.268631992000017 ], [ -122.674375545999951, 49.268596911000067 ], [ -122.674733719999907, 49.26859792000004 ], [ -122.674744439999984, 49.268448414000055 ], [ -122.675597280999966, 49.268105099000138 ], [ -122.676548795999935, 49.267558202000082 ], [ -122.676881407999986, 49.267073884000098 ], [ -122.677051175999964, 49.266489995000015 ], [ -122.677826506999935, 49.265591295000057 ], [ -122.67801388399999, 49.265481627000092 ], [ -122.678163640999969, 49.265486237000061 ], [ -122.678164243999959, 49.265393624000112 ], [ -122.678205693999956, 49.265369362000129 ], [ -122.678576748999916, 49.265370395000062 ], [ -122.678578170999984, 49.265151354000047 ], [ -122.67866457299999, 49.265100783000037 ], [ -122.67940319, 49.265102835000064 ], [ -122.679406015999959, 49.264666810000023 ], [ -122.679582314999905, 49.264563618000096 ], [ -122.679819026999951, 49.264564274000072 ], [ -122.679819930999884, 49.264424535000039 ], [ -122.680500030999951, 49.264026447000084 ], [ -122.681471862, 49.264029130000033 ], [ -122.681477002999941, 49.263230327000038 ], [ -122.681490143999966, 49.263219610000078 ], [ -122.682714058999949, 49.263222977000019 ], [ -122.682712329999944, 49.263492829000015 ], [ -122.683722732999954, 49.263495599000109 ], [ -122.684358947999954, 49.263921741000061 ], [ -122.684353047999949, 49.264846607000038 ], [ -122.682703676999949, 49.264842089000112 ], [ -122.682707137999941, 49.264302386000118 ], [ -122.681470124, 49.264298981000088 ], [ -122.681463023, 49.26540223000007 ], [ -122.684348938, 49.265490954 ], [ -122.684349605999913, 49.265386311000043 ], [ -122.684761952999949, 49.265387436000012 ], [ -122.68476694499999, 49.264603644000069 ], [ -122.685325284999934, 49.26431670000003 ], [ -122.685627482999934, 49.264345204000108 ], [ -122.687110487000012, 49.264781006000092 ], [ -122.689272244999955, 49.264807843000064 ], [ -122.6892693, 49.264851294000159 ], [ -122.689269770999928, 49.264939540000086 ], [ -122.689270197999946, 49.26502050700001 ], [ -122.68928409699997, 49.267684512000102 ], [ -122.689291107999935, 49.269473096000048 ], [ -122.689291174999966, 49.26948228600007 ], [ -122.689301708999892, 49.27132759300013 ], [ -122.682243218999986, 49.27136924399999 ], [ -122.680277338999957, 49.271380778000058 ], [ -122.67586558899994, 49.271406487000029 ], [ -122.672733119999933, 49.27141873000005 ], [ -122.672650591999968, 49.271419043000044 ], [ -122.670420448999963, 49.271427694000074 ], [ -122.670310480999916, 49.271428121000028 ], [ -122.667725858999944, 49.27143808200011 ], [ -122.666785194999974, 49.271441693000078 ], [ -122.6661312, 49.271445048000089 ], [ -122.662731994999987, 49.271462413000059 ], [ -122.662463209999942, 49.271530706000114 ], [ -122.660790705999929, 49.272616011000075 ], [ -122.660605523999948, 49.272802205000083 ], [ -122.660526120999975, 49.272988902000037 ], [ -122.660532717, 49.273240499000025 ], [ -122.660953463999959, 49.274550092000013 ], [ -122.661032377999931, 49.274795694000055 ], [ -122.661003737999977, 49.274949410000062 ], [ -122.66095849499996, 49.275191707000147 ], [ -122.660744726999937, 49.275392298000043 ], [ -122.657052612999934, 49.277415100000049 ], [ -122.656977766999958, 49.277454592000034 ], [ -122.654906312999984, 49.278547803000031 ], [ -122.654889335999954, 49.278552046000108 ], [ -122.65484257699994, 49.278563713000025 ], [ -122.654556285999902, 49.278635198000053 ], [ -122.653810269999937, 49.278637420000081 ], [ -122.653961691999967, 49.276539212000102 ], [ -122.655406813999946, 49.276584008000057 ], [ -122.655408320999967, 49.27636773600004 ], [ -122.655820759999969, 49.276368965000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161040751", "BldgCostT": "110535001", "sL_LossRatio": "0.745854377185323", "sL_AssetLoss": "2599730", "sL_BldgLoss": "1939020", "sL_StrLoss": "856450", "sL_NStrLoss": "1082570", "sL_ContLoss": "660710", "geom_point": "0101000020E6100000AFCB11AE17A95EC007B309302C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.641341175999955, 49.247453492000048 ], [ -122.641358048999962, 49.247220401000085 ], [ -122.641204956, 49.247215634000021 ], [ -122.641312017999908, 49.245736623000063 ], [ -122.640920536999914, 49.245724430000081 ], [ -122.640985259999923, 49.244830369000049 ], [ -122.638767716999965, 49.244761276000091 ], [ -122.638768721999924, 49.244747387000103 ], [ -122.637920688999927, 49.244720952000108 ], [ -122.637929600999939, 49.244597940000055 ], [ -122.637133967999958, 49.244573132000014 ], [ -122.637244932, 49.2430419780001 ], [ -122.636319973999946, 49.243013131000026 ], [ -122.636317805999951, 49.243007602000034 ], [ -122.635989320999926, 49.242754105000131 ], [ -122.634897447999961, 49.242227070000055 ], [ -122.63508234699999, 49.23967722900008 ], [ -122.634468573999953, 49.239658074000033 ], [ -122.634612603999955, 49.237672011000036 ], [ -122.634247251999952, 49.237660607000144 ], [ -122.63424088699999, 49.238522663000047 ], [ -122.633004523999972, 49.238518742000068 ], [ -122.633011167999911, 49.237622015000078 ], [ -122.632592131999914, 49.237608929000075 ], [ -122.632617671999952, 49.237256929000146 ], [ -122.631938597000016, 49.237235718000086 ], [ -122.631932166999917, 49.237324325000046 ], [ -122.631777046999957, 49.23731947900005 ], [ -122.631774177999944, 49.23770525300003 ], [ -122.631362064999948, 49.237703938000031 ], [ -122.631354030999887, 49.238783346000062 ], [ -122.631766152999944, 49.238784660000107 ], [ -122.631760134999979, 49.239594215000068 ], [ -122.631348004999921, 49.239592900000076 ], [ -122.631345996999954, 49.239862751000047 ], [ -122.630933863999971, 49.239861436000169 ], [ -122.630929843, 49.240401139 ], [ -122.630517705999949, 49.240399822000057 ], [ -122.630515692999893, 49.240669673000085 ], [ -122.629279274999973, 49.240665712000066 ], [ -122.629279089999983, 49.240690624000045 ], [ -122.628944517999969, 49.240582203000073 ], [ -122.62886774399999, 49.240583389000037 ], [ -122.628873202999927, 49.239854835000095 ], [ -122.629285335999938, 49.239856157000091 ], [ -122.629289374999956, 49.239316454000161 ], [ -122.629701501999989, 49.239317776000057 ], [ -122.629709571999939, 49.238238370000012 ], [ -122.630121690999957, 49.238239690000107 ], [ -122.630128245999984, 49.237361952000107 ], [ -122.625341388000024, 49.237212237000044 ], [ -122.625342587999938, 49.237195740000054 ], [ -122.624221741000014, 49.237160654000043 ], [ -122.624158589999951, 49.238028811000063 ], [ -122.622467330999939, 49.23797584700003 ], [ -122.622510900999984, 49.235136495000091 ], [ -122.62274938900002, 49.235105196000077 ], [ -122.623654985999963, 49.235103770000038 ], [ -122.624259490999989, 49.235102800000028 ], [ -122.624424307999973, 49.235102525000052 ], [ -122.625083662999927, 49.235101478000104 ], [ -122.629767983999926, 49.235093848000062 ], [ -122.631728099999918, 49.235090603000103 ], [ -122.631747830999956, 49.232504702000092 ], [ -122.631750996999955, 49.232088092000069 ], [ -122.631756626999945, 49.231668252000141 ], [ -122.631760097999958, 49.231407394 ], [ -122.631773252999963, 49.230426926000078 ], [ -122.631790467999934, 49.229140673000082 ], [ -122.631796727, 49.228675398000064 ], [ -122.632444106999941, 49.228685706000121 ], [ -122.632977067999917, 49.228736536000099 ], [ -122.633019620999903, 49.228740601000126 ], [ -122.634200771999986, 49.228736995000062 ], [ -122.634190296999975, 49.227083213000071 ], [ -122.63418812, 49.226317199000036 ], [ -122.634846284, 49.226315547000091 ], [ -122.639049490999966, 49.226304906000117 ], [ -122.639450794999959, 49.226303899000044 ], [ -122.64060152, 49.226298695000025 ], [ -122.641545389999976, 49.226294407000033 ], [ -122.643595698999917, 49.226290702000043 ], [ -122.644258001999901, 49.226284307000086 ], [ -122.644868498999969, 49.226291502000031 ], [ -122.644874682999983, 49.227212599000062 ], [ -122.644950421999951, 49.227305103000027 ], [ -122.645085276999964, 49.227490397000039 ], [ -122.645380793999905, 49.227714015000089 ], [ -122.645502905999962, 49.227886299000062 ], [ -122.645480086999939, 49.230178792000061 ], [ -122.645630673, 49.230212449000099 ], [ -122.646767883999928, 49.230466705000019 ], [ -122.647420583999946, 49.230613103000103 ], [ -122.648000802999945, 49.23061933500005 ], [ -122.64860517999989, 49.230625816000106 ], [ -122.649945396999925, 49.230640193000106 ], [ -122.650033612, 49.230640675000068 ], [ -122.651077509999979, 49.230646455000112 ], [ -122.653825916999935, 49.230661598000054 ], [ -122.653867799999929, 49.230651826000049 ], [ -122.654074486999974, 49.230603612000053 ], [ -122.654389684999913, 49.23042141400002 ], [ -122.654701093999961, 49.230330199000029 ], [ -122.654714850999966, 49.230330371 ], [ -122.654939784999968, 49.230332957000094 ], [ -122.655035886999926, 49.230334088000042 ], [ -122.656793506999975, 49.23035449000006 ], [ -122.656791416999909, 49.230669802000094 ], [ -122.656747224999961, 49.231798404000102 ], [ -122.656734236999938, 49.23209992400006 ], [ -122.656722972999887, 49.232382374000061 ], [ -122.656706463999953, 49.232743879000033 ], [ -122.656696188999931, 49.232982587000066 ], [ -122.656605652999957, 49.233994591000069 ], [ -122.656543679999942, 49.234686959000051 ], [ -122.656513078999922, 49.235028653000086 ], [ -122.656309011, 49.237309010000047 ], [ -122.6562352709999, 49.238122889000053 ], [ -122.656180712999941, 49.238725060000043 ], [ -122.655859695999979, 49.242267915000077 ], [ -122.655021079999969, 49.242267709000018 ], [ -122.652490814999936, 49.242267131000055 ], [ -122.652601662999942, 49.240730478000096 ], [ -122.653602965999951, 49.240761556000088 ], [ -122.653649653999963, 49.24011410100006 ], [ -122.655248136999916, 49.240163696000096 ], [ -122.655249717999965, 49.239936558000124 ], [ -122.654013316999979, 49.23993286200006 ], [ -122.654015201999982, 49.239663010000086 ], [ -122.652778805999901, 49.239659300000028 ], [ -122.65278069799993, 49.239389447000057 ], [ -122.652368568999989, 49.239388208000079 ], [ -122.652370462999968, 49.239118356000105 ], [ -122.650309828999951, 49.239112136000116 ], [ -122.650311732999938, 49.238842285000068 ], [ -122.64866323499993, 49.238837283000038 ], [ -122.648665148999953, 49.238567431000078 ], [ -122.648253027999942, 49.238566177000067 ], [ -122.648256858999915, 49.238026473000026 ], [ -122.647020506999979, 49.238022701000041 ], [ -122.64701858399998, 49.2382925530001 ], [ -122.64413374499999, 49.238283703 ], [ -122.644135683999977, 49.238013851000098 ], [ -122.643308983999987, 49.238011302000096 ], [ -122.64311089099999, 49.240749880000074 ], [ -122.64808368199999, 49.240904572000069 ], [ -122.648040423999959, 49.241503447000063 ], [ -122.648394909, 49.241514464000041 ], [ -122.648340624999918, 49.242266052000083 ], [ -122.64477260299995, 49.24226499600006 ], [ -122.644770540999943, 49.242997897000123 ], [ -122.644769665999917, 49.24330374000003 ], [ -122.644767850000036, 49.243951385000038 ], [ -122.644763668999971, 49.245435636000131 ], [ -122.644758008999986, 49.247441558000084 ], [ -122.644756484999959, 49.247983283000096 ], [ -122.644755858999986, 49.248197189000045 ], [ -122.644754760999916, 49.248592968000082 ], [ -122.644754420999973, 49.248709896000079 ], [ -122.64475369099992, 49.248965293000047 ], [ -122.644752839999981, 49.248998005000018 ], [ -122.644752517999962, 49.24901031800006 ], [ -122.642353997, 49.247955414000103 ], [ -122.639911013999921, 49.247706093000076 ], [ -122.63976579899996, 49.247656399000057 ], [ -122.639784006999989, 49.247404987000017 ], [ -122.641341175999955, 49.247453492000048 ] ], [ [ -122.638379981999933, 49.236086371000049 ], [ -122.638381801999984, 49.235837118000092 ], [ -122.638214217999973, 49.235836594000034 ], [ -122.638196537999974, 49.236080652000041 ], [ -122.638379981999933, 49.236086371000049 ] ], [ [ -122.644996663999962, 49.232889195000055 ], [ -122.644999669999947, 49.232469835000089 ], [ -122.644001794999895, 49.232438777000034 ], [ -122.643945520999978, 49.233217045000082 ], [ -122.638464728999935, 49.233046297000072 ], [ -122.638497417999957, 49.232594953000032 ], [ -122.638245350999952, 49.232587093000085 ], [ -122.63827584299996, 49.232166093000039 ], [ -122.636514215999952, 49.232111148000087 ], [ -122.636537946999951, 49.231783660000083 ], [ -122.636159707999951, 49.231771858000037 ], [ -122.636123550999969, 49.23227073800004 ], [ -122.633677663999919, 49.232194394000082 ], [ -122.633670925000018, 49.23228730000011 ], [ -122.633966370999943, 49.232296525000045 ], [ -122.63387191399994, 49.233598957000019 ], [ -122.63590378399995, 49.233662377000016 ], [ -122.635897062999931, 49.233755106000039 ], [ -122.636869755999925, 49.233785451000088 ], [ -122.636844248999978, 49.234137455000052 ], [ -122.638333925999945, 49.234183914000027 ], [ -122.638275405999948, 49.23499184100006 ], [ -122.638272844999932, 49.235027202000062 ], [ -122.638799803999945, 49.23502885100006 ], [ -122.638800175999933, 49.234977873000041 ], [ -122.638801771999979, 49.234758999000029 ], [ -122.640450132999931, 49.234764142000095 ], [ -122.640449043999965, 49.23491419200009 ], [ -122.640448173999943, 49.23503399300008 ], [ -122.64086026799994, 49.23503527600004 ], [ -122.640856353999965, 49.235574980000074 ], [ -122.641268450999931, 49.235576260000052 ], [ -122.641266496999961, 49.235846112000068 ], [ -122.643739092999937, 49.235853764000062 ], [ -122.643742974999952, 49.235314059000089 ], [ -122.6441550699999, 49.23531532900008 ], [ -122.64415894699999, 49.234775625000026 ], [ -122.644571037999981, 49.234776894000049 ], [ -122.64457472, 49.234263609000088 ], [ -122.644584589999923, 49.232887927 ], [ -122.644996663999962, 49.232889195000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.75751503006012", "sL_AssetLoss": "9980", "sL_BldgLoss": "7560", "sL_StrLoss": "3300", "sL_NStrLoss": "4260", "sL_ContLoss": "2420", "geom_point": "0101000020E610000015F82FB5CAA85EC076E05AF5D29D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63675715, 49.232593722000104 ], [ -122.637993366999964, 49.232597602000098 ], [ -122.637987452999951, 49.233407159000073 ], [ -122.636751215999979, 49.233403279000115 ], [ -122.63675715, 49.232593722000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.764232317423807", "sL_AssetLoss": "17390", "sL_BldgLoss": "13290", "sL_StrLoss": "5990", "sL_NStrLoss": "7300", "sL_ContLoss": "4100", "geom_point": "0101000020E6100000EBEECF7FEEA75EC062F9F36DC19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.624819282999937, 49.240928301000096 ], [ -122.623337017999972, 49.240734601000085 ], [ -122.622636112999913, 49.240724594000049 ], [ -122.622424035999956, 49.240794834000091 ], [ -122.622424165999945, 49.240786370000102 ], [ -122.622427743999936, 49.240552499000067 ], [ -122.622434964999968, 49.240084734000035 ], [ -122.622455378999973, 49.238754606000079 ], [ -122.622699447999977, 49.238755404000081 ], [ -122.622697391999935, 49.239025255000037 ], [ -122.623109516999961, 49.239026601000035 ], [ -122.62310130299997, 49.240106005000079 ], [ -122.623513437000028, 49.24010734900007 ], [ -122.623512244, 49.24026428900001 ], [ -122.626325649999941, 49.240352349000069 ], [ -122.626287155999947, 49.240881853000111 ], [ -122.626249401999985, 49.240888388000087 ], [ -122.624819282999937, 49.240928301000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124011750", "BldgCostT": "84765000", "sL_LossRatio": "0.737233220442612", "sL_AssetLoss": "1877627", "sL_BldgLoss": "1384249", "sL_StrLoss": "626919", "sL_NStrLoss": "757330", "sL_ContLoss": "493378", "geom_point": "0101000020E61000001B526E709CA95EC0CAC96183479D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.645480086999939, 49.230178792000061 ], [ -122.645502905999962, 49.227886299000062 ], [ -122.645380793999905, 49.227714015000089 ], [ -122.645085276999964, 49.227490397000039 ], [ -122.644950421999951, 49.227305103000027 ], [ -122.644874682999983, 49.227212599000062 ], [ -122.644868498999969, 49.226291502000031 ], [ -122.645587006999946, 49.226291082000053 ], [ -122.646136439999935, 49.22629076200009 ], [ -122.648416273999899, 49.22628939400002 ], [ -122.650381599999918, 49.226288195000109 ], [ -122.65042670599999, 49.226539189000107 ], [ -122.650612388999903, 49.226858506000063 ], [ -122.650616099, 49.22760649500006 ], [ -122.650675488999923, 49.22769579600002 ], [ -122.651670876999958, 49.227983498000093 ], [ -122.651866704999975, 49.227991399000118 ], [ -122.653033046999937, 49.227966657000124 ], [ -122.653488099999947, 49.227956995000056 ], [ -122.654251804999959, 49.22799150600008 ], [ -122.654798700999891, 49.228061711000095 ], [ -122.65492852399997, 49.228065901000036 ], [ -122.655505582999936, 49.228084492000036 ], [ -122.655477191999935, 49.228573806000036 ], [ -122.656816993999939, 49.228598203000033 ], [ -122.65678561199995, 49.229797395000098 ], [ -122.656788335999977, 49.229991127000112 ], [ -122.656793506999975, 49.23035449000006 ], [ -122.655035886999926, 49.230334088000042 ], [ -122.654939784999968, 49.230332957000094 ], [ -122.654714850999966, 49.230330371 ], [ -122.654701093999961, 49.230330199000029 ], [ -122.654389684999913, 49.23042141400002 ], [ -122.654074486999974, 49.230603612000053 ], [ -122.653867799999929, 49.230651826000049 ], [ -122.653825916999935, 49.230661598000054 ], [ -122.651077509999979, 49.230646455000112 ], [ -122.650033612, 49.230640675000068 ], [ -122.649945396999925, 49.230640193000106 ], [ -122.64860517999989, 49.230625816000106 ], [ -122.648000802999945, 49.23061933500005 ], [ -122.647420583999946, 49.230613103000103 ], [ -122.646767883999928, 49.230466705000019 ], [ -122.645630673, 49.230212449000099 ], [ -122.645480086999939, 49.230178792000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131913916", "BldgCostT": "87556666", "sL_LossRatio": "0.72551567828329", "sL_AssetLoss": "1923680", "sL_BldgLoss": "1395660", "sL_StrLoss": "648670", "sL_NStrLoss": "746990", "sL_ContLoss": "528020", "geom_point": "0101000020E6100000FF690665D8A95EC07F159E9FFB9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.654251804999959, 49.22799150600008 ], [ -122.653488099999947, 49.227956995000056 ], [ -122.653033046999937, 49.227966657000124 ], [ -122.651866704999975, 49.227991399000118 ], [ -122.651670876999958, 49.227983498000093 ], [ -122.650675488999923, 49.22769579600002 ], [ -122.650616099, 49.22760649500006 ], [ -122.650612388999903, 49.226858506000063 ], [ -122.65042670599999, 49.226539189000107 ], [ -122.650381599999918, 49.226288195000109 ], [ -122.650403275999949, 49.225056200000068 ], [ -122.651029010999963, 49.22504229900008 ], [ -122.651420701999882, 49.22497971000012 ], [ -122.652170409999968, 49.224731798000036 ], [ -122.654801084999946, 49.224694329000016 ], [ -122.65678710899999, 49.224666003000145 ], [ -122.656813695999944, 49.225459802000053 ], [ -122.656818892999922, 49.226322208000042 ], [ -122.656833493999969, 49.226596590000057 ], [ -122.656827310999958, 49.227130839000047 ], [ -122.656825612999953, 49.227278509000037 ], [ -122.656823982, 49.227502615000041 ], [ -122.656818592999954, 49.228251396000083 ], [ -122.656816993999939, 49.228598203000033 ], [ -122.655477191999935, 49.228573806000036 ], [ -122.655505582999936, 49.228084492000036 ], [ -122.65492852399997, 49.228065901000036 ], [ -122.654798700999891, 49.228061711000095 ], [ -122.654251804999959, 49.22799150600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112884645", "BldgCostT": "75496524", "sL_LossRatio": "0.727002235253527", "sL_AssetLoss": "1556423", "sL_BldgLoss": "1131523", "sL_StrLoss": "518723", "sL_NStrLoss": "612800", "sL_ContLoss": "424900", "geom_point": "0101000020E61000001CF23AA8E5A95EC0CCAEE6C6959C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.656813695999944, 49.225459802000053 ], [ -122.65678710899999, 49.224666003000145 ], [ -122.654801084999946, 49.224694329000016 ], [ -122.652170409999968, 49.224731798000036 ], [ -122.651420701999882, 49.22497971000012 ], [ -122.651029010999963, 49.22504229900008 ], [ -122.650403275999949, 49.225056200000068 ], [ -122.65042300099999, 49.224053264000112 ], [ -122.65044920299999, 49.222722204000121 ], [ -122.650492281999931, 49.220530296000028 ], [ -122.65089019700001, 49.220532712000121 ], [ -122.651282925999979, 49.220571105000083 ], [ -122.651547948000015, 49.220633660000075 ], [ -122.651727004999927, 49.220675909000086 ], [ -122.652615904999934, 49.221200005000043 ], [ -122.653015512999957, 49.221332207000067 ], [ -122.653356322999926, 49.221385131000012 ], [ -122.65348669499997, 49.221405392000023 ], [ -122.655193832999927, 49.221419866000097 ], [ -122.656683623999982, 49.221432504000099 ], [ -122.656648502999971, 49.22172969700005 ], [ -122.656726612999961, 49.223409900000021 ], [ -122.656865679, 49.223441198000074 ], [ -122.658423598999917, 49.223448089000051 ], [ -122.659904634000014, 49.223415814000084 ], [ -122.65995959299994, 49.223414606000055 ], [ -122.660421292999956, 49.223352319000085 ], [ -122.660455194999926, 49.224560793000073 ], [ -122.66041769499995, 49.224737994000087 ], [ -122.660085493999972, 49.225253002000038 ], [ -122.660028687, 49.225469302000093 ], [ -122.65812039399999, 49.225466991000083 ], [ -122.656813695999944, 49.225459802000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86152000", "BldgCostT": "57190000", "sL_LossRatio": "0.698865710560626", "sL_AssetLoss": "1534000", "sL_BldgLoss": "1072060", "sL_StrLoss": "462260", "sL_NStrLoss": "609800", "sL_ContLoss": "461940", "geom_point": "0101000020E610000011B534B742AA5EC070FC58DA8C9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.660455194999926, 49.224560793000073 ], [ -122.660421292999956, 49.223352319000085 ], [ -122.65995959299994, 49.223414606000055 ], [ -122.659904634000014, 49.223415814000084 ], [ -122.658423598999917, 49.223448089000051 ], [ -122.656865679, 49.223441198000074 ], [ -122.656726612999961, 49.223409900000021 ], [ -122.656648502999971, 49.22172969700005 ], [ -122.656683623999982, 49.221432504000099 ], [ -122.65983529799999, 49.221435125000021 ], [ -122.660923010999952, 49.221435997000093 ], [ -122.661249848999944, 49.221434185000135 ], [ -122.662087652999929, 49.221429591000046 ], [ -122.662774419999963, 49.221425801000073 ], [ -122.662789396999983, 49.221961496000048 ], [ -122.662791203999959, 49.222223701000104 ], [ -122.662858890999928, 49.22244659700003 ], [ -122.662882201999977, 49.222791487000109 ], [ -122.662898807000019, 49.223514704000081 ], [ -122.66290741, 49.224235799000049 ], [ -122.662913078999964, 49.224825197000072 ], [ -122.66297929699995, 49.225049794000078 ], [ -122.663195881999968, 49.225303389000018 ], [ -122.66277868, 49.225453606000031 ], [ -122.662636178999961, 49.225455452000077 ], [ -122.662238471999956, 49.225460637000047 ], [ -122.661672318999962, 49.22546800100011 ], [ -122.661304750999989, 49.225468290000016 ], [ -122.660028687, 49.225469302000093 ], [ -122.660085493999972, 49.225253002000038 ], [ -122.66041769499995, 49.224737994000087 ], [ -122.660455194999926, 49.224560793000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239097083", "BldgCostT": "157598333", "sL_LossRatio": "0.705623824927977", "sL_AssetLoss": "3565207", "sL_BldgLoss": "2515695", "sL_StrLoss": "1154055", "sL_NStrLoss": "1361640", "sL_ContLoss": "1049512", "geom_point": "0101000020E61000007326BFA851AA5EC0345FDB91209D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.663612314999952, 49.221420204000012 ], [ -122.664162888999968, 49.221247118000122 ], [ -122.66570444599999, 49.222305385000062 ], [ -122.665726191999909, 49.222332464000061 ], [ -122.665551262999912, 49.223416128000046 ], [ -122.665421270999971, 49.224200820000107 ], [ -122.665277345999925, 49.224941878000031 ], [ -122.665205063999935, 49.225380255000069 ], [ -122.665088553999979, 49.22628107200007 ], [ -122.664773998999934, 49.227759871000096 ], [ -122.664657872999939, 49.228886560000028 ], [ -122.664629963999928, 49.229157328000035 ], [ -122.664486668999984, 49.230932739000146 ], [ -122.661906001999938, 49.230852865000053 ], [ -122.661904649999911, 49.231050908000078 ], [ -122.661492589999938, 49.231049702000064 ], [ -122.661490745999956, 49.23131955500002 ], [ -122.66066662099999, 49.231317137000069 ], [ -122.660664772999937, 49.231586990000075 ], [ -122.659428577999947, 49.231583352 ], [ -122.659426723999914, 49.231853205000093 ], [ -122.659014656999929, 49.231851990000109 ], [ -122.659013189999925, 49.232065130000066 ], [ -122.656734236999938, 49.23209992400006 ], [ -122.656747224999961, 49.231798404000102 ], [ -122.656791416999909, 49.230669802000094 ], [ -122.656793506999975, 49.23035449000006 ], [ -122.656788335999977, 49.229991127000112 ], [ -122.65678561199995, 49.229797395000098 ], [ -122.656816993999939, 49.228598203000033 ], [ -122.656818592999954, 49.228251396000083 ], [ -122.656823982, 49.227502615000041 ], [ -122.656825612999953, 49.227278509000037 ], [ -122.656827310999958, 49.227130839000047 ], [ -122.656833493999969, 49.226596590000057 ], [ -122.656818892999922, 49.226322208000042 ], [ -122.656813695999944, 49.225459802000053 ], [ -122.65812039399999, 49.225466991000083 ], [ -122.660028687, 49.225469302000093 ], [ -122.661304750999989, 49.225468290000016 ], [ -122.661672318999962, 49.22546800100011 ], [ -122.662238471999956, 49.225460637000047 ], [ -122.662636178999961, 49.225455452000077 ], [ -122.66277868, 49.225453606000031 ], [ -122.663195881999968, 49.225303389000018 ], [ -122.66297929699995, 49.225049794000078 ], [ -122.662913078999964, 49.224825197000072 ], [ -122.66290741, 49.224235799000049 ], [ -122.662898807000019, 49.223514704000081 ], [ -122.662882201999977, 49.222791487000109 ], [ -122.662858890999928, 49.22244659700003 ], [ -122.662791203999959, 49.222223701000104 ], [ -122.662789396999983, 49.221961496000048 ], [ -122.662774419999963, 49.221425801000073 ], [ -122.663612314999952, 49.221420204000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127184956", "BldgCostT": "77106683", "sL_LossRatio": "0.678825875014862", "sL_AssetLoss": "2186820", "sL_BldgLoss": "1484470", "sL_StrLoss": "593420", "sL_NStrLoss": "891050", "sL_ContLoss": "702350", "geom_point": "0101000020E61000004C91AE5F51AA5EC0312F2C24059C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657074895999955, 49.220530533000023 ], [ -122.657635095999964, 49.219239202000097 ], [ -122.657668830999953, 49.219162336000082 ], [ -122.658167202999948, 49.218027173000017 ], [ -122.658262308999952, 49.217810585000109 ], [ -122.658456307999984, 49.217366111000096 ], [ -122.658594205999989, 49.216824294000084 ], [ -122.658592721999966, 49.216176409000113 ], [ -122.659770492999925, 49.216176903000068 ], [ -122.659771815999989, 49.216827494000022 ], [ -122.662269952999978, 49.216831733000078 ], [ -122.662911007999966, 49.216832799000017 ], [ -122.662913913999944, 49.21627608100011 ], [ -122.662859313999917, 49.216080583000128 ], [ -122.662662391999945, 49.215860098000071 ], [ -122.662100685999988, 49.215519199000084 ], [ -122.662545798999986, 49.215095093000052 ], [ -122.664706984999938, 49.216024289000067 ], [ -122.66479590299997, 49.216104601000033 ], [ -122.664844400999982, 49.216194392000062 ], [ -122.664838965999948, 49.217187155000062 ], [ -122.664825294999929, 49.217851452000033 ], [ -122.664891746, 49.217981718000082 ], [ -122.665164153999953, 49.218145115000013 ], [ -122.664909633999969, 49.218401248000113 ], [ -122.664842899999968, 49.21871908800005 ], [ -122.662678282999963, 49.218732305000103 ], [ -122.662672102000016, 49.219411502000078 ], [ -122.66485560299995, 49.219402482000078 ], [ -122.66485900399999, 49.219965701 ], [ -122.664222182999964, 49.22113796700004 ], [ -122.664162888999968, 49.221247118000122 ], [ -122.663612314999952, 49.221420204000012 ], [ -122.662774419999963, 49.221425801000073 ], [ -122.662087652999929, 49.221429591000046 ], [ -122.661249848999944, 49.221434185000135 ], [ -122.660923010999952, 49.221435997000093 ], [ -122.65983529799999, 49.221435125000021 ], [ -122.656683623999982, 49.221432504000099 ], [ -122.657074895999955, 49.220530533000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200408070", "BldgCostT": "116837620", "sL_LossRatio": "0.667103992711945", "sL_AssetLoss": "3117430", "sL_BldgLoss": "2079650", "sL_StrLoss": "807130", "sL_NStrLoss": "1272520", "sL_ContLoss": "1037780", "geom_point": "0101000020E6100000FFA68F44D8A95EC03F431758F09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651282925999979, 49.220571105000083 ], [ -122.65089019700001, 49.220532712000121 ], [ -122.650492281999931, 49.220530296000028 ], [ -122.65044839799998, 49.220530097000065 ], [ -122.64891122, 49.220522596000137 ], [ -122.647839501999925, 49.220516292000084 ], [ -122.647883518999947, 49.219404032000121 ], [ -122.647889593999963, 49.219251008000072 ], [ -122.647879984999989, 49.218681205000081 ], [ -122.647897186999955, 49.218251913000053 ], [ -122.647898682999966, 49.218164197000085 ], [ -122.647920896999906, 49.216840696000119 ], [ -122.648604185999915, 49.216863712000077 ], [ -122.649111886999933, 49.216924584000068 ], [ -122.650768803999966, 49.217306803000049 ], [ -122.651055294999935, 49.217330992000015 ], [ -122.652667871999967, 49.217337959000055 ], [ -122.653299521999926, 49.217340675000059 ], [ -122.653999812000023, 49.217343712000101 ], [ -122.654257091999952, 49.217344807000153 ], [ -122.65429457799992, 49.216499904000038 ], [ -122.655296393999919, 49.216506299000024 ], [ -122.656303404999946, 49.216512695000134 ], [ -122.656228813999974, 49.215757104000055 ], [ -122.65539188299999, 49.215749998000085 ], [ -122.654399096999938, 49.215754387000089 ], [ -122.654274919000017, 49.215706406000059 ], [ -122.654233508999937, 49.21561408900007 ], [ -122.654194312, 49.215262299000052 ], [ -122.65403380399998, 49.214860906000105 ], [ -122.65498979299997, 49.21445349800014 ], [ -122.655692308999932, 49.214191509000038 ], [ -122.655980895999974, 49.214185993000051 ], [ -122.657299608999978, 49.2141737970001 ], [ -122.658548893999964, 49.214171991000072 ], [ -122.658557509999952, 49.214487844000132 ], [ -122.658575992999928, 49.215168505000122 ], [ -122.65858215899999, 49.215540253000022 ], [ -122.658592721999966, 49.216176409000113 ], [ -122.658594205999989, 49.216824294000084 ], [ -122.658456307999984, 49.217366111000096 ], [ -122.658262308999952, 49.217810585000109 ], [ -122.658167202999948, 49.218027173000017 ], [ -122.657668830999953, 49.219162336000082 ], [ -122.657635095999964, 49.219239202000097 ], [ -122.657074895999955, 49.220530533000023 ], [ -122.656683623999982, 49.221432504000099 ], [ -122.655193832999927, 49.221419866000097 ], [ -122.65348669499997, 49.221405392000023 ], [ -122.653356322999926, 49.221385131000012 ], [ -122.653015512999957, 49.221332207000067 ], [ -122.652615904999934, 49.221200005000043 ], [ -122.651727004999927, 49.220675909000086 ], [ -122.651547948000015, 49.220633660000075 ], [ -122.651282925999979, 49.220571105000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78744000", "BldgCostT": "53625000", "sL_LossRatio": "0.74728437797954", "sL_AssetLoss": "1164190", "sL_BldgLoss": "869981", "sL_StrLoss": "374291", "sL_NStrLoss": "495690", "sL_ContLoss": "294209", "geom_point": "0101000020E610000052927DA942AA5EC04936CB23879B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.659771815999989, 49.216827494000022 ], [ -122.659770492999925, 49.216176903000068 ], [ -122.658592721999966, 49.216176409000113 ], [ -122.65858215899999, 49.215540253000022 ], [ -122.658575992999928, 49.215168505000122 ], [ -122.658557509999952, 49.214487844000132 ], [ -122.658548893999964, 49.214171991000072 ], [ -122.658532419999986, 49.213390304000015 ], [ -122.658598124999955, 49.212001002000143 ], [ -122.660871185999923, 49.214081805000106 ], [ -122.66095178199997, 49.2141428750001 ], [ -122.661495981999963, 49.214555308000044 ], [ -122.66194389899999, 49.214816910000138 ], [ -122.662545798999986, 49.215095093000052 ], [ -122.662100685999988, 49.215519199000084 ], [ -122.662662391999945, 49.215860098000071 ], [ -122.662859313999917, 49.216080583000128 ], [ -122.662913913999944, 49.21627608100011 ], [ -122.662911007999966, 49.216832799000017 ], [ -122.662269952999978, 49.216831733000078 ], [ -122.659771815999989, 49.216827494000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145716833", "BldgCostT": "93713333", "sL_LossRatio": "0.720682490127566", "sL_AssetLoss": "1934680", "sL_BldgLoss": "1394290", "sL_StrLoss": "622440", "sL_NStrLoss": "771850", "sL_ContLoss": "540390", "geom_point": "0101000020E6100000E548D345EFA95EC082379CE0389B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.652777299999954, 49.211877199000043 ], [ -122.652766987999925, 49.211107317000057 ], [ -122.652705982999976, 49.210715295000135 ], [ -122.652691979999972, 49.210338196000095 ], [ -122.653852093999944, 49.210334591000098 ], [ -122.654196507999956, 49.210336304000052 ], [ -122.655067090999935, 49.210331791000023 ], [ -122.655320210999975, 49.210266589000057 ], [ -122.655459106999956, 49.210377292000096 ], [ -122.65553109499993, 49.210806611000059 ], [ -122.655516194999947, 49.211646342000037 ], [ -122.65551308199997, 49.21181970200012 ], [ -122.65595980799992, 49.211810427000081 ], [ -122.656225080999931, 49.211804888000074 ], [ -122.656478190999934, 49.211760489000092 ], [ -122.656751623, 49.211642799000039 ], [ -122.656924992999961, 49.211521203000061 ], [ -122.657260399, 49.211095387000015 ], [ -122.657547410999925, 49.210960203000141 ], [ -122.658598124999955, 49.212001002000143 ], [ -122.658532419999986, 49.213390304000015 ], [ -122.658548893999964, 49.214171991000072 ], [ -122.657299608999978, 49.2141737970001 ], [ -122.655980895999974, 49.214185993000051 ], [ -122.655692308999932, 49.214191509000038 ], [ -122.65498979299997, 49.21445349800014 ], [ -122.65403380399998, 49.214860906000105 ], [ -122.65249620799996, 49.214862682000103 ], [ -122.652527380999942, 49.214068891000124 ], [ -122.652538207999925, 49.213347496000075 ], [ -122.652566802999928, 49.212931205000061 ], [ -122.652724811999917, 49.212606288000089 ], [ -122.652777299999954, 49.211877199000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93658061", "BldgCostT": "58078190", "sL_LossRatio": "0.693693142258166", "sL_AssetLoss": "1306990", "sL_BldgLoss": "906650", "sL_StrLoss": "406710", "sL_NStrLoss": "499940", "sL_ContLoss": "400340", "geom_point": "0101000020E6100000FD25E2ADB3A95EC05F6B3170A79B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.647920896999906, 49.216840696000119 ], [ -122.64794369399999, 49.214850916000017 ], [ -122.649059497999986, 49.214854100000103 ], [ -122.650146509999928, 49.214857309000109 ], [ -122.651292379999973, 49.214861298000116 ], [ -122.65249620799996, 49.214862682000103 ], [ -122.65403380399998, 49.214860906000105 ], [ -122.654194312, 49.215262299000052 ], [ -122.654233508999937, 49.21561408900007 ], [ -122.654274919000017, 49.215706406000059 ], [ -122.654399096999938, 49.215754387000089 ], [ -122.65539188299999, 49.215749998000085 ], [ -122.656228813999974, 49.215757104000055 ], [ -122.656303404999946, 49.216512695000134 ], [ -122.655296393999919, 49.216506299000024 ], [ -122.65429457799992, 49.216499904000038 ], [ -122.654257091999952, 49.217344807000153 ], [ -122.653999812000023, 49.217343712000101 ], [ -122.653299521999926, 49.217340675000059 ], [ -122.652667871999967, 49.217337959000055 ], [ -122.651055294999935, 49.217330992000015 ], [ -122.650768803999966, 49.217306803000049 ], [ -122.649111886999933, 49.216924584000068 ], [ -122.648604185999915, 49.216863712000077 ], [ -122.647920896999906, 49.216840696000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160465417", "BldgCostT": "100821667", "sL_LossRatio": "0.696134679006659", "sL_AssetLoss": "2149110", "sL_BldgLoss": "1496070", "sL_StrLoss": "699300", "sL_NStrLoss": "796770", "sL_ContLoss": "653040", "geom_point": "0101000020E6100000FCB1930B9FA95EC00F51E0F8359B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651126684999952, 49.210345394000079 ], [ -122.652691979999972, 49.210338196000095 ], [ -122.652705982999976, 49.210715295000135 ], [ -122.652766987999925, 49.211107317000057 ], [ -122.652777299999954, 49.211877199000043 ], [ -122.652724811999917, 49.212606288000089 ], [ -122.652566802999928, 49.212931205000061 ], [ -122.652538207999925, 49.213347496000075 ], [ -122.652527380999942, 49.214068891000124 ], [ -122.65249620799996, 49.214862682000103 ], [ -122.651292379999973, 49.214861298000116 ], [ -122.650146509999928, 49.214857309000109 ], [ -122.649059497999986, 49.214854100000103 ], [ -122.64794369399999, 49.214850916000017 ], [ -122.647961683999966, 49.214316294000085 ], [ -122.647982285999944, 49.213719165000086 ], [ -122.647995493999971, 49.213335086000058 ], [ -122.648077212999951, 49.210339799000103 ], [ -122.649607300999961, 49.210344193000068 ], [ -122.651126684999952, 49.210345394000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127519417", "BldgCostT": "86811667", "sL_LossRatio": "0.777466988408339", "sL_AssetLoss": "1562330", "sL_BldgLoss": "1214660", "sL_StrLoss": "516360", "sL_NStrLoss": "698300", "sL_ContLoss": "347670", "geom_point": "0101000020E61000005F74C30053A95EC0A9FBB6169C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.646566168999954, 49.218047036000044 ], [ -122.64655529699999, 49.216835997000025 ], [ -122.645786296999944, 49.21683910900002 ], [ -122.645785409999917, 49.215995688000113 ], [ -122.644539188999914, 49.215992102000023 ], [ -122.642208498999977, 49.215988918 ], [ -122.642226316999952, 49.21452790300004 ], [ -122.645834097999938, 49.214352798000071 ], [ -122.647961683999966, 49.214316294000085 ], [ -122.64794369399999, 49.214850916000017 ], [ -122.647920896999906, 49.216840696000119 ], [ -122.647898682999966, 49.218164197000085 ], [ -122.647897186999955, 49.218251913000053 ], [ -122.646566993999969, 49.218136597000047 ], [ -122.646566168999954, 49.218047036000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62395750", "BldgCostT": "42535000", "sL_LossRatio": "0.738725019817264", "sL_AssetLoss": "958760", "sL_BldgLoss": "708260", "sL_StrLoss": "300750", "sL_NStrLoss": "407510", "sL_ContLoss": "250500", "geom_point": "0101000020E61000004A30519436A95EC0E008398C559B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.641005596999946, 49.212425484000136 ], [ -122.641027718999979, 49.212120705000061 ], [ -122.647444615999987, 49.213265708000051 ], [ -122.647995493999971, 49.213335086000058 ], [ -122.647982285999944, 49.213719165000086 ], [ -122.647961683999966, 49.214316294000085 ], [ -122.645834097999938, 49.214352798000071 ], [ -122.642226316999952, 49.21452790300004 ], [ -122.641643218999931, 49.214561104000076 ], [ -122.640954708999942, 49.214553095000028 ], [ -122.641005596999946, 49.212425484000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190491540", "BldgCostT": "125864388", "sL_LossRatio": "0.722600157048117", "sL_AssetLoss": "2572460", "sL_BldgLoss": "1858860", "sL_StrLoss": "766410", "sL_NStrLoss": "1092450", "sL_ContLoss": "713600", "geom_point": "0101000020E61000001DDC62C00AA95EC041C2E6D2AE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.639378810999958, 49.216969755000065 ], [ -122.639685, 49.216353509000015 ], [ -122.638737217999974, 49.216359087000036 ], [ -122.636696504, 49.216371116000111 ], [ -122.635915702999938, 49.216367495000114 ], [ -122.635929708999953, 49.215112687000129 ], [ -122.636284412999927, 49.215105796000053 ], [ -122.636496084999962, 49.215062801000066 ], [ -122.637359211, 49.214670801000096 ], [ -122.637563005999965, 49.21460411000011 ], [ -122.638196522999976, 49.214534236000127 ], [ -122.638243884999909, 49.214529 ], [ -122.63892948099999, 49.214544012000069 ], [ -122.639697997999946, 49.2145608000001 ], [ -122.640954708999942, 49.214553095000028 ], [ -122.641643218999931, 49.214561104000076 ], [ -122.642226316999952, 49.21452790300004 ], [ -122.642208498999977, 49.215988918 ], [ -122.644539188999914, 49.215992102000023 ], [ -122.645785409999917, 49.215995688000113 ], [ -122.645786296999944, 49.21683910900002 ], [ -122.64655529699999, 49.216835997000025 ], [ -122.646566168999954, 49.218047036000044 ], [ -122.646566993999969, 49.218136597000047 ], [ -122.643177515999952, 49.217832896000075 ], [ -122.642506834999935, 49.217776219000029 ], [ -122.640488220999927, 49.217605636000016 ], [ -122.639462003999981, 49.217518891000104 ], [ -122.639378810999958, 49.216969755000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180230572", "BldgCostT": "109203593", "sL_LossRatio": "0.662293156134686", "sL_AssetLoss": "2775040", "sL_BldgLoss": "1837890", "sL_StrLoss": "715120", "sL_NStrLoss": "1122770", "sL_ContLoss": "937150", "geom_point": "0101000020E61000008286D58AFCA85EC01DD68506FF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.641926591999933, 49.21998079300004 ], [ -122.641940916999928, 49.219746106000088 ], [ -122.641257304999911, 49.219743704000081 ], [ -122.640541107000018, 49.219586196000066 ], [ -122.639656077999945, 49.219579394000093 ], [ -122.639409990999965, 49.21962119500008 ], [ -122.639425886999959, 49.21896579700006 ], [ -122.638884396999984, 49.21897409600011 ], [ -122.638365987999933, 49.218833607000093 ], [ -122.633126805999936, 49.218857500000041 ], [ -122.633120390999963, 49.219645702000022 ], [ -122.631857285999899, 49.219646797000131 ], [ -122.631877200999966, 49.218387689000018 ], [ -122.631897884999901, 49.217099801000131 ], [ -122.634635195, 49.217157392000018 ], [ -122.636152406999969, 49.217249788000096 ], [ -122.636613252999936, 49.21728726000007 ], [ -122.639462003999981, 49.217518891000104 ], [ -122.640488220999927, 49.217605636000016 ], [ -122.642506834999935, 49.217776219000029 ], [ -122.643177515999952, 49.217832896000075 ], [ -122.646566993999969, 49.218136597000047 ], [ -122.647897186999955, 49.218251913000053 ], [ -122.647879984999989, 49.218681205000081 ], [ -122.647889593999963, 49.219251008000072 ], [ -122.647883518999947, 49.219404032000121 ], [ -122.647839501999925, 49.220516292000084 ], [ -122.646905439999969, 49.220513244000159 ], [ -122.646708379, 49.220512594000077 ], [ -122.645834332999968, 49.220517515000061 ], [ -122.6451888199999, 49.22052113200003 ], [ -122.644859075999975, 49.220522964000118 ], [ -122.644818593999958, 49.220523189000104 ], [ -122.644117497999929, 49.220524672000117 ], [ -122.641888298, 49.220529299000134 ], [ -122.641926591999933, 49.21998079300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103067584", "BldgCostT": "64458334", "sL_LossRatio": "0.693068395513065", "sL_AssetLoss": "1520860", "sL_BldgLoss": "1054060", "sL_StrLoss": "450010", "sL_NStrLoss": "604050", "sL_ContLoss": "466800", "geom_point": "0101000020E61000002593B665BEA85EC067E18841229C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.633120390999963, 49.219645702000022 ], [ -122.633126805999936, 49.218857500000041 ], [ -122.638365987999933, 49.218833607000093 ], [ -122.638884396999984, 49.21897409600011 ], [ -122.639425886999959, 49.21896579700006 ], [ -122.639409990999965, 49.21962119500008 ], [ -122.639656077999945, 49.219579394000093 ], [ -122.640541107000018, 49.219586196000066 ], [ -122.641257304999911, 49.219743704000081 ], [ -122.641940916999928, 49.219746106000088 ], [ -122.641926591999933, 49.21998079300004 ], [ -122.641888298, 49.220529299000134 ], [ -122.641406297999978, 49.220531418000093 ], [ -122.63941689699999, 49.220531494000085 ], [ -122.631841990999988, 49.220558202000092 ], [ -122.631857285999899, 49.219646797000131 ], [ -122.633120390999963, 49.219645702000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267266750", "BldgCostT": "181130000", "sL_LossRatio": "0.761446886599714", "sL_AssetLoss": "2996033", "sL_BldgLoss": "2281320", "sL_StrLoss": "1036260", "sL_NStrLoss": "1245060", "sL_ContLoss": "714713", "geom_point": "0101000020E610000078DE20D632A95EC0B75E88ACA09C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.639462998999974, 49.225470801000043 ], [ -122.639491504999953, 49.22342720200006 ], [ -122.639519419999942, 49.222663006000076 ], [ -122.639532412000037, 49.221905865000025 ], [ -122.63954078099998, 49.22141841100008 ], [ -122.639414311999971, 49.220985586000126 ], [ -122.63941689699999, 49.220531494000085 ], [ -122.641406297999978, 49.220531418000093 ], [ -122.641888298, 49.220529299000134 ], [ -122.644117497999929, 49.220524672000117 ], [ -122.644818593999958, 49.220523189000104 ], [ -122.644859075999975, 49.220522964000118 ], [ -122.6451888199999, 49.22052113200003 ], [ -122.645834332999968, 49.220517515000061 ], [ -122.646708379, 49.220512594000077 ], [ -122.646725080999985, 49.222206916000054 ], [ -122.646725182999916, 49.222219808000034 ], [ -122.646770394, 49.222734801000037 ], [ -122.646963482999979, 49.223349907000099 ], [ -122.646956191999905, 49.224192192000096 ], [ -122.647192591999968, 49.224328554000095 ], [ -122.647935290999925, 49.224682097000041 ], [ -122.648806220999916, 49.225096704000059 ], [ -122.649015254999981, 49.225091406000075 ], [ -122.650403275999949, 49.225056200000068 ], [ -122.650381599999918, 49.226288195000109 ], [ -122.648416273999899, 49.22628939400002 ], [ -122.646136439999935, 49.22629076200009 ], [ -122.645587006999946, 49.226291082000053 ], [ -122.644868498999969, 49.226291502000031 ], [ -122.644258001999901, 49.226284307000086 ], [ -122.643595698999917, 49.226290702000043 ], [ -122.641545389999976, 49.226294407000033 ], [ -122.64060152, 49.226298695000025 ], [ -122.639450794999959, 49.226303899000044 ], [ -122.639462998999974, 49.225470801000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68793085", "BldgCostT": "44498335", "sL_LossRatio": "0.706918070557594", "sL_AssetLoss": "978293", "sL_BldgLoss": "691573", "sL_StrLoss": "318333", "sL_NStrLoss": "373240", "sL_ContLoss": "286720", "geom_point": "0101000020E61000009EC23A2384A95EC03E7771D17F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65044839799998, 49.220530097000065 ], [ -122.650492281999931, 49.220530296000028 ], [ -122.65044920299999, 49.222722204000121 ], [ -122.65042300099999, 49.224053264000112 ], [ -122.650403275999949, 49.225056200000068 ], [ -122.649015254999981, 49.225091406000075 ], [ -122.648806220999916, 49.225096704000059 ], [ -122.647935290999925, 49.224682097000041 ], [ -122.647192591999968, 49.224328554000095 ], [ -122.646956191999905, 49.224192192000096 ], [ -122.646963482999979, 49.223349907000099 ], [ -122.646770394, 49.222734801000037 ], [ -122.646725182999916, 49.222219808000034 ], [ -122.646725080999985, 49.222206916000054 ], [ -122.646708379, 49.220512594000077 ], [ -122.646905439999969, 49.220513244000159 ], [ -122.647839501999925, 49.220516292000084 ], [ -122.64891122, 49.220522596000137 ], [ -122.65044839799998, 49.220530097000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95465501", "BldgCostT": "63340001", "sL_LossRatio": "0.728585619316879", "sL_AssetLoss": "1570440", "sL_BldgLoss": "1144200", "sL_StrLoss": "511130", "sL_NStrLoss": "633070", "sL_ContLoss": "426240", "geom_point": "0101000020E6100000F1C0F0DFB6A85EC067C38AE8919C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.638303191999967, 49.225484209000065 ], [ -122.638313012999916, 49.224249105000098 ], [ -122.635868494999912, 49.224256695000129 ], [ -122.633091020000023, 49.224253807000146 ], [ -122.631828096999953, 49.2242493870001 ], [ -122.631822919999948, 49.223905105000021 ], [ -122.631822295999939, 49.223440988000078 ], [ -122.63324850399998, 49.223426101000058 ], [ -122.633266798999955, 49.222871589000071 ], [ -122.633288303999933, 49.221646788000037 ], [ -122.634414470999943, 49.221641496000103 ], [ -122.63509948799998, 49.221605192000048 ], [ -122.638333600999928, 49.221594406000079 ], [ -122.638329095999921, 49.222661992000049 ], [ -122.639519419999942, 49.222663006000076 ], [ -122.639491504999953, 49.22342720200006 ], [ -122.639462998999974, 49.225470801000043 ], [ -122.638303191999967, 49.225484209000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118404000", "BldgCostT": "79920000", "sL_LossRatio": "0.754275966862734", "sL_AssetLoss": "1438622", "sL_BldgLoss": "1085118", "sL_StrLoss": "508448", "sL_NStrLoss": "576670", "sL_ContLoss": "353504", "geom_point": "0101000020E6100000928CB5229EA85EC0C2DF4803EC9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.632977067999917, 49.228736536000099 ], [ -122.632444106999941, 49.228685706000121 ], [ -122.631796727, 49.228675398000064 ], [ -122.631797942999967, 49.228412008000134 ], [ -122.63180057299995, 49.227846502000048 ], [ -122.631801024999902, 49.226783861000058 ], [ -122.631801209999963, 49.226323789000055 ], [ -122.631810113999975, 49.225558102000058 ], [ -122.631824398, 49.224773692000028 ], [ -122.631828096999953, 49.2242493870001 ], [ -122.633091020000023, 49.224253807000146 ], [ -122.635868494999912, 49.224256695000129 ], [ -122.638313012999916, 49.224249105000098 ], [ -122.638303191999967, 49.225484209000065 ], [ -122.639462998999974, 49.225470801000043 ], [ -122.639450794999959, 49.226303899000044 ], [ -122.639049490999966, 49.226304906000117 ], [ -122.634846284, 49.226315547000091 ], [ -122.63418812, 49.226317199000036 ], [ -122.634190296999975, 49.227083213000071 ], [ -122.634200771999986, 49.228736995000062 ], [ -122.633019620999903, 49.228740601000126 ], [ -122.632977067999917, 49.228736536000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87640584", "BldgCostT": "57968334", "sL_LossRatio": "0.737101155552528", "sL_AssetLoss": "1174330", "sL_BldgLoss": "865600", "sL_StrLoss": "399170", "sL_NStrLoss": "466430", "sL_ContLoss": "308730", "geom_point": "0101000020E6100000A1FF2FE88EA85EC0E18ED4CE729C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631824118999958, 49.222999497000096 ], [ -122.631841990999988, 49.220558202000092 ], [ -122.63941689699999, 49.220531494000085 ], [ -122.639414311999971, 49.220985586000126 ], [ -122.63954078099998, 49.22141841100008 ], [ -122.639532412000037, 49.221905865000025 ], [ -122.639519419999942, 49.222663006000076 ], [ -122.638329095999921, 49.222661992000049 ], [ -122.638333600999928, 49.221594406000079 ], [ -122.63509948799998, 49.221605192000048 ], [ -122.634414470999943, 49.221641496000103 ], [ -122.633288303999933, 49.221646788000037 ], [ -122.633266798999955, 49.222871589000071 ], [ -122.63324850399998, 49.223426101000058 ], [ -122.631822295999939, 49.223440988000078 ], [ -122.631822919999948, 49.223905105000021 ], [ -122.631828096999953, 49.2242493870001 ], [ -122.631824398, 49.224773692000028 ], [ -122.628688781999955, 49.224748694000027 ], [ -122.628687390999971, 49.223947597000084 ], [ -122.628685699999963, 49.222995115000096 ], [ -122.631824118999958, 49.222999497000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98978166", "BldgCostT": "65841666", "sL_LossRatio": "0.735496618181573", "sL_AssetLoss": "1482930", "sL_BldgLoss": "1090690", "sL_StrLoss": "486550", "sL_NStrLoss": "604140", "sL_ContLoss": "392240", "geom_point": "0101000020E61000008FBFCCFB28A85EC041150EEFFF9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.622636612999955, 49.22642629200007 ], [ -122.622664684, 49.225510806000074 ], [ -122.627394902999967, 49.225567903000069 ], [ -122.627402385, 49.225851902000088 ], [ -122.627407864, 49.226058695000084 ], [ -122.627417617999967, 49.226428199000033 ], [ -122.627855077999968, 49.226423053000111 ], [ -122.628294394999912, 49.226417846000061 ], [ -122.628672292999951, 49.226413405000059 ], [ -122.628688781999955, 49.224748694000027 ], [ -122.631824398, 49.224773692000028 ], [ -122.631810113999975, 49.225558102000058 ], [ -122.631801209999963, 49.226323789000055 ], [ -122.631801024999902, 49.226783861000058 ], [ -122.63180057299995, 49.227846502000048 ], [ -122.629600585999981, 49.22784899700013 ], [ -122.62862290599999, 49.227848986000119 ], [ -122.627970403999953, 49.227834902000055 ], [ -122.62605930499997, 49.227838552000065 ], [ -122.623339534999957, 49.227843715000112 ], [ -122.622597905999925, 49.22784508700007 ], [ -122.622636612999955, 49.22642629200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88077250", "BldgCostT": "59005000", "sL_LossRatio": "0.751771344930635", "sL_AssetLoss": "1114972", "sL_BldgLoss": "838204", "sL_StrLoss": "385034", "sL_NStrLoss": "453170", "sL_ContLoss": "276768", "geom_point": "0101000020E6100000FE2B96E80DA85EC0192C6A6AB89C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.627402385, 49.225851902000088 ], [ -122.627394902999967, 49.225567903000069 ], [ -122.622664684, 49.225510806000074 ], [ -122.622666594999885, 49.22514590000003 ], [ -122.622681475999954, 49.224757570000065 ], [ -122.622684985999967, 49.224666214000088 ], [ -122.62268825299999, 49.224514712000037 ], [ -122.622705015999912, 49.223730586 ], [ -122.622705889999949, 49.22296380600006 ], [ -122.628685699999963, 49.222995115000096 ], [ -122.628687390999971, 49.223947597000084 ], [ -122.628688781999955, 49.224748694000027 ], [ -122.628672292999951, 49.226413405000059 ], [ -122.628294394999912, 49.226417846000061 ], [ -122.627855077999968, 49.226423053000111 ], [ -122.627417617999967, 49.226428199000033 ], [ -122.627407864, 49.226058695000084 ], [ -122.627402385, 49.225851902000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172094999", "BldgCostT": "114494999", "sL_LossRatio": "0.769626448770262", "sL_AssetLoss": "1965460", "sL_BldgLoss": "1512670", "sL_StrLoss": "705930", "sL_NStrLoss": "806740", "sL_ContLoss": "452790", "geom_point": "0101000020E61000000425BB8825A85EC0428D7C3D639C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.622749808, 49.220566505000086 ], [ -122.624218516999946, 49.220568437000082 ], [ -122.624280498999951, 49.220568490000041 ], [ -122.62813370399995, 49.220577394000017 ], [ -122.628850721999939, 49.220574586000097 ], [ -122.62956880599998, 49.220571783000032 ], [ -122.63062637799996, 49.220565294000096 ], [ -122.631841990999988, 49.220558202000092 ], [ -122.631824118999958, 49.222999497000096 ], [ -122.628685699999963, 49.222995115000096 ], [ -122.622705889999949, 49.22296380600006 ], [ -122.622714783999982, 49.221935099000106 ], [ -122.622749808, 49.220566505000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364543534", "BldgCostT": "241571503", "sL_LossRatio": "0.770056221154728", "sL_AssetLoss": "4032290", "sL_BldgLoss": "3105090", "sL_StrLoss": "1347120", "sL_NStrLoss": "1757970", "sL_ContLoss": "927200", "geom_point": "0101000020E6100000C245511426A85EC0A31DAB52029C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.628982458999971, 49.217079752000103 ], [ -122.631897884999901, 49.217099801000131 ], [ -122.631877200999966, 49.218387689000018 ], [ -122.631857285999899, 49.219646797000131 ], [ -122.631841990999988, 49.220558202000092 ], [ -122.63062637799996, 49.220565294000096 ], [ -122.62956880599998, 49.220571783000032 ], [ -122.628850721999939, 49.220574586000097 ], [ -122.62813370399995, 49.220577394000017 ], [ -122.624280498999951, 49.220568490000041 ], [ -122.624218516999946, 49.220568437000082 ], [ -122.622749808, 49.220566505000086 ], [ -122.622764442999966, 49.220152329000044 ], [ -122.622801908999946, 49.219094899000048 ], [ -122.622840408999963, 49.21777330200004 ], [ -122.622845900999934, 49.217037302000101 ], [ -122.625985498999952, 49.217059057000078 ], [ -122.626455929999921, 49.217062318000025 ], [ -122.628982458999971, 49.217079752000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130614501", "BldgCostT": "80795001", "sL_LossRatio": "0.697383476114419", "sL_AssetLoss": "1721750", "sL_BldgLoss": "1200720", "sL_StrLoss": "534660", "sL_NStrLoss": "666060", "sL_ContLoss": "521030", "geom_point": "0101000020E6100000EB6CC0CE2AA85EC06B53F9C7909B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631314298999911, 49.213165488000122 ], [ -122.631944899999965, 49.213045480000034 ], [ -122.631921704999968, 49.214690200000071 ], [ -122.631923262999948, 49.214766396000108 ], [ -122.631930095999934, 49.21510399800006 ], [ -122.631903211999941, 49.215985395000061 ], [ -122.631900243999979, 49.216605801000121 ], [ -122.631899376999954, 49.216785792000046 ], [ -122.631898208999928, 49.217029434000032 ], [ -122.631897884999901, 49.217099801000131 ], [ -122.628982458999971, 49.217079752000103 ], [ -122.626455929999921, 49.217062318000025 ], [ -122.625985498999952, 49.217059057000078 ], [ -122.622845900999934, 49.217037302000101 ], [ -122.622847153999956, 49.216954305000066 ], [ -122.622858491999963, 49.216203315000079 ], [ -122.622865806999982, 49.215386305000024 ], [ -122.622911207999948, 49.214007200000033 ], [ -122.626259410999921, 49.213830365000042 ], [ -122.626359002999934, 49.213825084000028 ], [ -122.627806199999924, 49.21374419000005 ], [ -122.62804293799999, 49.213716054000052 ], [ -122.628405808999972, 49.213672892000019 ], [ -122.629099209999964, 49.213538704000051 ], [ -122.630109102999981, 49.213373785000023 ], [ -122.631314298999911, 49.213165488000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89274250", "BldgCostT": "59095000", "sL_LossRatio": "0.731510757161536", "sL_AssetLoss": "1261950", "sL_BldgLoss": "923130", "sL_StrLoss": "420350", "sL_NStrLoss": "502780", "sL_ContLoss": "338820", "geom_point": "0101000020E6100000BCF4F59D9BA85EC082754E79959B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.636152406999969, 49.217249788000096 ], [ -122.634635195, 49.217157392000018 ], [ -122.631897884999901, 49.217099801000131 ], [ -122.631898208999928, 49.217029434000032 ], [ -122.631899376999954, 49.216785792000046 ], [ -122.631900243999979, 49.216605801000121 ], [ -122.631903211999941, 49.215985395000061 ], [ -122.631930095999934, 49.21510399800006 ], [ -122.631923262999948, 49.214766396000108 ], [ -122.631921704999968, 49.214690200000071 ], [ -122.631944899999965, 49.213045480000034 ], [ -122.632044867999952, 49.213025686000037 ], [ -122.632784683999901, 49.212879007 ], [ -122.633562410999943, 49.212735709000086 ], [ -122.633712734999904, 49.21270700600013 ], [ -122.634548004999928, 49.212546567000103 ], [ -122.634876233999947, 49.21426798500007 ], [ -122.634819822999972, 49.21510330600011 ], [ -122.635929708999953, 49.215112687000129 ], [ -122.635915702999938, 49.216367495000114 ], [ -122.636696504, 49.216371116000111 ], [ -122.638737217999974, 49.216359087000036 ], [ -122.639685, 49.216353509000015 ], [ -122.639378810999958, 49.216969755000065 ], [ -122.639462003999981, 49.217518891000104 ], [ -122.636613252999936, 49.21728726000007 ], [ -122.636152406999969, 49.217249788000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99211834", "BldgCostT": "65793334", "sL_LossRatio": "0.729453148289225", "sL_AssetLoss": "1509550", "sL_BldgLoss": "1101146", "sL_StrLoss": "479606", "sL_NStrLoss": "621540", "sL_ContLoss": "408404", "geom_point": "0101000020E6100000EF848F6FCCA85EC060455FA4449B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.634500001999967, 49.212413512000069 ], [ -122.634484342999968, 49.21147411100003 ], [ -122.63453324599999, 49.211329660000047 ], [ -122.634875094999984, 49.211063703000015 ], [ -122.635038488999953, 49.21070296900016 ], [ -122.635231865999984, 49.210591857000111 ], [ -122.635714222, 49.210526725000051 ], [ -122.635816624999961, 49.2105722760001 ], [ -122.635857910999945, 49.210760967000077 ], [ -122.635829369999982, 49.211400755000099 ], [ -122.637530086999959, 49.211172673000128 ], [ -122.638631284999917, 49.211187186000117 ], [ -122.638631436999987, 49.211196166000029 ], [ -122.63864236799995, 49.21192557900013 ], [ -122.639138996999989, 49.211891479000023 ], [ -122.639679389999955, 49.211915591000064 ], [ -122.641027718999979, 49.212120705000061 ], [ -122.641005596999946, 49.212425484000136 ], [ -122.640954708999942, 49.214553095000028 ], [ -122.639697997999946, 49.2145608000001 ], [ -122.63892948099999, 49.214544012000069 ], [ -122.638243884999909, 49.214529 ], [ -122.638196522999976, 49.214534236000127 ], [ -122.637563005999965, 49.21460411000011 ], [ -122.637359211, 49.214670801000096 ], [ -122.636496084999962, 49.215062801000066 ], [ -122.636284412999927, 49.215105796000053 ], [ -122.635929708999953, 49.215112687000129 ], [ -122.634819822999972, 49.21510330600011 ], [ -122.634876233999947, 49.21426798500007 ], [ -122.634548004999928, 49.212546567000103 ], [ -122.634500001999967, 49.212413512000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216800084", "BldgCostT": "142888334", "sL_LossRatio": "0.729877264839573", "sL_AssetLoss": "2846780", "sL_BldgLoss": "2077800", "sL_StrLoss": "970130", "sL_NStrLoss": "1107670", "sL_ContLoss": "768980", "geom_point": "0101000020E61000005E37DF67E0A85EC0ECBC7430EE9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631152866, 49.210447536000075 ], [ -122.631153416999965, 49.210373499000049 ], [ -122.631270619999938, 49.210347701000053 ], [ -122.632384904999952, 49.210035802000029 ], [ -122.632833540999968, 49.209913171000132 ], [ -122.63321629699999, 49.209914387000055 ], [ -122.633217082, 49.209808331000012 ], [ -122.633809437999957, 49.209646409000115 ], [ -122.634042055999927, 49.209647147000091 ], [ -122.634042532, 49.209582692 ], [ -122.638272294999979, 49.208426335000105 ], [ -122.640089696999979, 49.207929413000038 ], [ -122.642140076999951, 49.207180193000092 ], [ -122.642629447999951, 49.206975440000107 ], [ -122.642711013999971, 49.2069756920001 ], [ -122.64271126199999, 49.206941209000021 ], [ -122.64326968200001, 49.206707560000062 ], [ -122.643536671999954, 49.206708383 ], [ -122.64353748399999, 49.206595507 ], [ -122.643909907999927, 49.206439676000088 ], [ -122.644362320999946, 49.206441070000089 ], [ -122.64436356399996, 49.206267978000113 ], [ -122.64505921099996, 49.206117806000059 ], [ -122.647892709999923, 49.205165002000072 ], [ -122.648380226, 49.20496311900007 ], [ -122.648323248999972, 49.205717726000081 ], [ -122.648323293999937, 49.205748616000108 ], [ -122.648316081999923, 49.206212211000086 ], [ -122.648166998999969, 49.206338206000055 ], [ -122.648104021999984, 49.206506608000105 ], [ -122.648122590999918, 49.207428015000062 ], [ -122.648123818, 49.207830904000105 ], [ -122.648093584999955, 49.208629205000051 ], [ -122.648085394999939, 49.209503891000082 ], [ -122.648077212999951, 49.210339799000103 ], [ -122.647995493999971, 49.213335086000058 ], [ -122.647444615999987, 49.213265708000051 ], [ -122.641027718999979, 49.212120705000061 ], [ -122.639679389999955, 49.211915591000064 ], [ -122.639138996999989, 49.211891479000023 ], [ -122.63864236799995, 49.21192557900013 ], [ -122.638631436999987, 49.211196166000029 ], [ -122.638631284999917, 49.211187186000117 ], [ -122.637530086999959, 49.211172673000128 ], [ -122.635829369999982, 49.211400755000099 ], [ -122.635857910999945, 49.210760967000077 ], [ -122.635816624999961, 49.2105722760001 ], [ -122.635714222, 49.210526725000051 ], [ -122.635231865999984, 49.210591857000111 ], [ -122.635038488999953, 49.21070296900016 ], [ -122.634875094999984, 49.211063703000015 ], [ -122.63453324599999, 49.211329660000047 ], [ -122.634484342999968, 49.21147411100003 ], [ -122.634500001999967, 49.212413512000069 ], [ -122.634548004999928, 49.212546567000103 ], [ -122.633712734999904, 49.21270700600013 ], [ -122.633562410999943, 49.212735709000086 ], [ -122.632784683999901, 49.212879007 ], [ -122.632044867999952, 49.213025686000037 ], [ -122.631944899999965, 49.213045480000034 ], [ -122.631314298999911, 49.213165488000122 ], [ -122.630109102999981, 49.213373785000023 ], [ -122.629099209999964, 49.213538704000051 ], [ -122.628405808999972, 49.213672892000019 ], [ -122.62804293799999, 49.213716054000052 ], [ -122.627806199999924, 49.21374419000005 ], [ -122.626359002999934, 49.213825084000028 ], [ -122.626259410999921, 49.213830365000042 ], [ -122.622911207999948, 49.214007200000033 ], [ -122.622785976, 49.212499838000035 ], [ -122.622782345999966, 49.212456044000085 ], [ -122.622756361999933, 49.21230943400014 ], [ -122.623312653999946, 49.212311248000098 ], [ -122.623313706999951, 49.212172531000114 ], [ -122.624093485999936, 49.212043933000075 ], [ -122.624550406999987, 49.212045419000042 ], [ -122.6245509889999, 49.211968481000049 ], [ -122.624792790999933, 49.211928602000107 ], [ -122.625488918999977, 49.211778606000017 ], [ -122.625788143999912, 49.211779577000101 ], [ -122.625788638999936, 49.211714024000067 ], [ -122.626524796999931, 49.211555396000037 ], [ -122.627406730999908, 49.211245090000084 ], [ -122.627439794999972, 49.211245197000103 ], [ -122.62743988299998, 49.211233425000074 ], [ -122.627763380999937, 49.211119600000082 ], [ -122.628404786999923, 49.210978447000102 ], [ -122.629089389999933, 49.210980646000067 ], [ -122.629090534999975, 49.210827527000042 ], [ -122.62961332899999, 49.210712468000068 ], [ -122.629915188, 49.210713435000123 ], [ -122.629915692999973, 49.210645920000076 ], [ -122.630821852999972, 49.210446477000112 ], [ -122.631152866, 49.210447536000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70974416", "BldgCostT": "43975681", "sL_LossRatio": "0.635704697986577", "sL_AssetLoss": "1452750", "sL_BldgLoss": "923520", "sL_StrLoss": "322280", "sL_NStrLoss": "601240", "sL_ContLoss": "529230", "geom_point": "0101000020E61000001C3A4DD197A95EC0C383A082C79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.648085394999939, 49.209503891000082 ], [ -122.648093584999955, 49.208629205000051 ], [ -122.648123818, 49.207830904000105 ], [ -122.649640080999959, 49.207835699000036 ], [ -122.651163412999935, 49.20783800800006 ], [ -122.651176000999939, 49.208240653000104 ], [ -122.651189581999986, 49.208674098000117 ], [ -122.650606420999935, 49.208671298000098 ], [ -122.65058527399998, 49.209274430000072 ], [ -122.650581529999911, 49.209382322000046 ], [ -122.650576620999928, 49.209522800000094 ], [ -122.651130524999985, 49.209531003000102 ], [ -122.652684905999962, 49.209541409000053 ], [ -122.652688281999929, 49.20991935000005 ], [ -122.652691979999972, 49.210338196000095 ], [ -122.651126684999952, 49.210345394000079 ], [ -122.649607300999961, 49.210344193000068 ], [ -122.648077212999951, 49.210339799000103 ], [ -122.648085394999939, 49.209503891000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90526145", "BldgCostT": "58435279", "sL_LossRatio": "0.713959428110396", "sL_AssetLoss": "1451399", "sL_BldgLoss": "1036240", "sL_StrLoss": "435500", "sL_NStrLoss": "600740", "sL_ContLoss": "415159", "geom_point": "0101000020E6100000B3C66668B8A95EC0840DC305A89A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.652688281999929, 49.20991935000005 ], [ -122.652684905999962, 49.209541409000053 ], [ -122.651130524999985, 49.209531003000102 ], [ -122.650576620999928, 49.209522800000094 ], [ -122.650581529999911, 49.209382322000046 ], [ -122.65058527399998, 49.209274430000072 ], [ -122.650606420999935, 49.208671298000098 ], [ -122.651189581999986, 49.208674098000117 ], [ -122.651176000999939, 49.208240653000104 ], [ -122.651163412999935, 49.20783800800006 ], [ -122.649640080999959, 49.207835699000036 ], [ -122.648123818, 49.207830904000105 ], [ -122.648122590999918, 49.207428015000062 ], [ -122.648104021999984, 49.206506608000105 ], [ -122.648166998999969, 49.206338206000055 ], [ -122.648316081999923, 49.206212211000086 ], [ -122.648533790999963, 49.206143303000069 ], [ -122.648758404999981, 49.206131298000095 ], [ -122.64965810399994, 49.206178208 ], [ -122.650392217999979, 49.206274997000037 ], [ -122.65121637599999, 49.206456491000047 ], [ -122.651157709999922, 49.206603286000124 ], [ -122.651141600999892, 49.207017296000096 ], [ -122.652136804999898, 49.207014884000031 ], [ -122.652416712999951, 49.206920881 ], [ -122.652692937999959, 49.207089108000019 ], [ -122.652995284999975, 49.207273202000103 ], [ -122.653594907999903, 49.207827883000071 ], [ -122.654046131, 49.208241473000072 ], [ -122.654449787999937, 49.208611409000078 ], [ -122.655922399999923, 49.209985310000064 ], [ -122.655320210999975, 49.210266589000057 ], [ -122.655067090999935, 49.210331791000023 ], [ -122.654196507999956, 49.210336304000052 ], [ -122.653852093999944, 49.210334591000098 ], [ -122.652691979999972, 49.210338196000095 ], [ -122.652688281999929, 49.20991935000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132607833", "BldgCostT": "85833333", "sL_LossRatio": "0.706922176495164", "sL_AssetLoss": "1811959", "sL_BldgLoss": "1280914", "sL_StrLoss": "569114", "sL_NStrLoss": "711800", "sL_ContLoss": "531045", "geom_point": "0101000020E6100000C360838D04AA5EC09D0F9DD8229A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.652692937999959, 49.207089108000019 ], [ -122.652416712999951, 49.206920881 ], [ -122.652136804999898, 49.207014884000031 ], [ -122.651141600999892, 49.207017296000096 ], [ -122.651157709999922, 49.206603286000124 ], [ -122.65121637599999, 49.206456491000047 ], [ -122.650392217999979, 49.206274997000037 ], [ -122.64965810399994, 49.206178208 ], [ -122.648758404999981, 49.206131298000095 ], [ -122.648533790999963, 49.206143303000069 ], [ -122.648316081999923, 49.206212211000086 ], [ -122.648323293999937, 49.205748616000108 ], [ -122.648323248999972, 49.205717726000081 ], [ -122.648380226, 49.20496311900007 ], [ -122.650633698999982, 49.20402989500009 ], [ -122.650482090999944, 49.203994307000059 ], [ -122.650401016999979, 49.203867501000083 ], [ -122.650579810999929, 49.203814803000064 ], [ -122.650744305999964, 49.203985697000064 ], [ -122.651501192999888, 49.203628314000056 ], [ -122.652121123999947, 49.203431701000042 ], [ -122.651901377999977, 49.203198193000112 ], [ -122.65141991199998, 49.203411796000076 ], [ -122.651352709999955, 49.203313497000103 ], [ -122.652564921999925, 49.202795103000035 ], [ -122.652645401999976, 49.202930391000052 ], [ -122.652012902999957, 49.203152600000095 ], [ -122.652121797999911, 49.203287890000126 ], [ -122.652699089999942, 49.203055708000143 ], [ -122.652944897999987, 49.203165385000027 ], [ -122.653577996999957, 49.202987405000094 ], [ -122.654181904999959, 49.202934705000047 ], [ -122.654747384999951, 49.202621290000117 ], [ -122.65536637699995, 49.202632693000112 ], [ -122.655614692999961, 49.202336487000139 ], [ -122.658090697999938, 49.201668488000088 ], [ -122.661721980999943, 49.200546301000017 ], [ -122.664155302999959, 49.200049194000023 ], [ -122.665788494, 49.19994669900003 ], [ -122.666469130999985, 49.199806825000138 ], [ -122.666654708999914, 49.19976868800012 ], [ -122.668187029999942, 49.199731102000108 ], [ -122.668915415999919, 49.199713233000054 ], [ -122.668921688999987, 49.199713366000026 ], [ -122.669113091999989, 49.199802806000051 ], [ -122.668918003999963, 49.200180289000023 ], [ -122.668956904, 49.200567606000043 ], [ -122.669257012999964, 49.200711493000021 ], [ -122.66951218699991, 49.200705194000101 ], [ -122.669462945999953, 49.201256122000068 ], [ -122.66886678599991, 49.201146045000087 ], [ -122.666958933000032, 49.20079297900002 ], [ -122.666730012999949, 49.200750744000068 ], [ -122.666543113999964, 49.200717004000111 ], [ -122.666000076999921, 49.200672298000015 ], [ -122.665457614, 49.200697897000033 ], [ -122.661447782999971, 49.201250388000105 ], [ -122.662211684999974, 49.201983206000101 ], [ -122.660955888000018, 49.202556992000062 ], [ -122.659695811999924, 49.203132490000037 ], [ -122.659575303999958, 49.20318755100007 ], [ -122.658469189999963, 49.203692860000032 ], [ -122.657252190999941, 49.2042487840001 ], [ -122.657545679999913, 49.204534854000016 ], [ -122.657992247999957, 49.204970128000085 ], [ -122.65869488499996, 49.205656904000108 ], [ -122.659424918999946, 49.206346299000096 ], [ -122.65820690599999, 49.206907797000035 ], [ -122.656953388999952, 49.207485190000099 ], [ -122.655708115999943, 49.208062884000093 ], [ -122.655274107999958, 49.208252102000067 ], [ -122.654944384, 49.208395807000038 ], [ -122.654901849999945, 49.208414350000098 ], [ -122.654602034999982, 49.20854505000009 ], [ -122.654449787999937, 49.208611409000078 ], [ -122.654046131, 49.208241473000072 ], [ -122.653594907999903, 49.207827883000071 ], [ -122.652995284999975, 49.207273202000103 ], [ -122.652692937999959, 49.207089108000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "446590555", "BldgCostT": "268003500", "sL_LossRatio": "0.647331402286851", "sL_AssetLoss": "7432930", "sL_BldgLoss": "4811569", "sL_StrLoss": "1933979", "sL_NStrLoss": "2877590", "sL_ContLoss": "2621361", "geom_point": "0101000020E6100000D07CA55E7DAA5EC0E8C8E282DC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.66485900399999, 49.219965701 ], [ -122.66485560299995, 49.219402482000078 ], [ -122.662672102000016, 49.219411502000078 ], [ -122.662678282999963, 49.218732305000103 ], [ -122.664842899999968, 49.21871908800005 ], [ -122.664909633999969, 49.218401248000113 ], [ -122.665164153999953, 49.218145115000013 ], [ -122.664891746, 49.217981718000082 ], [ -122.664825294999929, 49.217851452000033 ], [ -122.664838965999948, 49.217187155000062 ], [ -122.664844400999982, 49.216194392000062 ], [ -122.66479590299997, 49.216104601000033 ], [ -122.664706984999938, 49.216024289000067 ], [ -122.662545798999986, 49.215095093000052 ], [ -122.66194389899999, 49.214816910000138 ], [ -122.661495981999963, 49.214555308000044 ], [ -122.66095178199997, 49.2141428750001 ], [ -122.660871185999923, 49.214081805000106 ], [ -122.658598124999955, 49.212001002000143 ], [ -122.657547410999925, 49.210960203000141 ], [ -122.657260399, 49.211095387000015 ], [ -122.656924992999961, 49.211521203000061 ], [ -122.656751623, 49.211642799000039 ], [ -122.656478190999934, 49.211760489000092 ], [ -122.656225080999931, 49.211804888000074 ], [ -122.65595980799992, 49.211810427000081 ], [ -122.65551308199997, 49.21181970200012 ], [ -122.655516194999947, 49.211646342000037 ], [ -122.65553109499993, 49.210806611000059 ], [ -122.655459106999956, 49.210377292000096 ], [ -122.655320210999975, 49.210266589000057 ], [ -122.655922399999923, 49.209985310000064 ], [ -122.654449787999937, 49.208611409000078 ], [ -122.654602034999982, 49.20854505000009 ], [ -122.654901849999945, 49.208414350000098 ], [ -122.654944384, 49.208395807000038 ], [ -122.655274107999958, 49.208252102000067 ], [ -122.655708115999943, 49.208062884000093 ], [ -122.656953388999952, 49.207485190000099 ], [ -122.65820690599999, 49.206907797000035 ], [ -122.659424918999946, 49.206346299000096 ], [ -122.65869488499996, 49.205656904000108 ], [ -122.657992247999957, 49.204970128000085 ], [ -122.657545679999913, 49.204534854000016 ], [ -122.657252190999941, 49.2042487840001 ], [ -122.658469189999963, 49.203692860000032 ], [ -122.659575303999958, 49.20318755100007 ], [ -122.659695811999924, 49.203132490000037 ], [ -122.660955888000018, 49.202556992000062 ], [ -122.662211684999974, 49.201983206000101 ], [ -122.661447782999971, 49.201250388000105 ], [ -122.665457614, 49.200697897000033 ], [ -122.666000076999921, 49.200672298000015 ], [ -122.666543113999964, 49.200717004000111 ], [ -122.666730012999949, 49.200750744000068 ], [ -122.666958933000032, 49.20079297900002 ], [ -122.66886678599991, 49.201146045000087 ], [ -122.669462945999953, 49.201256122000068 ], [ -122.669232084000015, 49.203839510000094 ], [ -122.668202599999987, 49.2038076790001 ], [ -122.668112219999955, 49.205067541000055 ], [ -122.667914474999989, 49.205061427000018 ], [ -122.667407690999966, 49.205045752000061 ], [ -122.667388904999939, 49.205307559000047 ], [ -122.666198993999913, 49.205270748 ], [ -122.666196127999953, 49.205696654000043 ], [ -122.665784277999975, 49.205695462000023 ], [ -122.665778820999932, 49.206505024000123 ], [ -122.665366966, 49.206503832000131 ], [ -122.665365707999968, 49.206690155000061 ], [ -122.66825419599995, 49.20677951000004 ], [ -122.668381391999972, 49.206783442000081 ], [ -122.669573983999953, 49.206820311000058 ], [ -122.669387395999976, 49.209422102000119 ], [ -122.669204044999944, 49.209572368000089 ], [ -122.668975351999947, 49.210562120000041 ], [ -122.668222876999934, 49.210559961000072 ], [ -122.668221070999948, 49.210829815000125 ], [ -122.668184734999954, 49.210829711000052 ], [ -122.668107301999953, 49.211908925000067 ], [ -122.66821384699989, 49.211909231000092 ], [ -122.668212040999904, 49.212179086000091 ], [ -122.668715610999953, 49.212180530000111 ], [ -122.668710268, 49.212261576000046 ], [ -122.668708043999956, 49.212295752000053 ], [ -122.66871527, 49.212311157000102 ], [ -122.66874909799995, 49.212383111000037 ], [ -122.66879504399995, 49.212498708000069 ], [ -122.668965150999938, 49.212926939000042 ], [ -122.66905359699993, 49.213149531000091 ], [ -122.669215434999941, 49.21644486000018 ], [ -122.669219802999976, 49.216533970000064 ], [ -122.669237014999936, 49.216884338000128 ], [ -122.669240462999937, 49.216954301000101 ], [ -122.669121116000014, 49.217201498000165 ], [ -122.669132539999922, 49.217780212000044 ], [ -122.669125623999918, 49.217920769000045 ], [ -122.669113644000021, 49.21801315800009 ], [ -122.66910416599994, 49.21820288600005 ], [ -122.66909416699994, 49.218402786000084 ], [ -122.669086248999932, 49.218561759000046 ], [ -122.669067975999951, 49.218928311000091 ], [ -122.669041709999959, 49.219453687000048 ], [ -122.669001172999955, 49.220265882 ], [ -122.668975052999926, 49.220789235000034 ], [ -122.668950743999957, 49.221277015000105 ], [ -122.666846372999927, 49.221263885000113 ], [ -122.664512043999977, 49.221249285000077 ], [ -122.664162888999968, 49.221247118000122 ], [ -122.664222182999964, 49.22113796700004 ], [ -122.66485900399999, 49.219965701 ] ], [ [ -122.664029514999982, 49.207579388000063 ], [ -122.664068275999966, 49.207039782000088 ], [ -122.663715879999984, 49.207038756000117 ], [ -122.663712218999962, 49.207578464000079 ], [ -122.664029514999982, 49.207579388000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.759124087591241", "sL_AssetLoss": "9590", "sL_BldgLoss": "7280", "sL_StrLoss": "3210", "sL_NStrLoss": "4070", "sL_ContLoss": "2310", "geom_point": "0101000020E6100000DB4B7DCDF0AA5EC072BB5D505B9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.671547043999979, 49.206185092000105 ], [ -122.671548389999884, 49.205981856000044 ], [ -122.669900980999913, 49.205977160000067 ], [ -122.669901536999987, 49.205893433000028 ], [ -122.671718542999926, 49.205787861000019 ], [ -122.671752848999972, 49.205785857000144 ], [ -122.671717900999965, 49.205853711000074 ], [ -122.671635313, 49.20601387400005 ], [ -122.671547043999979, 49.206185092000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289722084", "BldgCostT": "198863334", "sL_LossRatio": "0.708820101104995", "sL_AssetLoss": "9815341", "sL_BldgLoss": "6957311", "sL_StrLoss": "2810201", "sL_NStrLoss": "4147110", "sL_ContLoss": "2858030", "geom_point": "0101000020E6100000BBD1AEDF1FAB5EC0F62A8DF3129B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669035848999968, 49.212181448000045 ], [ -122.669037650999911, 49.211911595000103 ], [ -122.669449551999961, 49.211912774000027 ], [ -122.669460347, 49.210293650000025 ], [ -122.669872233999982, 49.210294828000087 ], [ -122.669874031999925, 49.210024974000092 ], [ -122.673581004999974, 49.210035509000072 ], [ -122.673582782, 49.209765655000126 ], [ -122.673994665999928, 49.209766818000098 ], [ -122.673996439999954, 49.209496964000031 ], [ -122.675643966999971, 49.209501601000049 ], [ -122.675642201999921, 49.209771456000055 ], [ -122.676465970999985, 49.209773766000083 ], [ -122.67646420899996, 49.210043620000135 ], [ -122.677287980999921, 49.210045925000031 ], [ -122.677291495999896, 49.209506216000129 ], [ -122.677703376999901, 49.209507366000082 ], [ -122.677710392999984, 49.208427950000072 ], [ -122.677298519999937, 49.208426799000058 ], [ -122.677298857999972, 49.208375094000068 ], [ -122.677300275999954, 49.20815694500007 ], [ -122.674417181999928, 49.208148854000079 ], [ -122.674415570999955, 49.208394290000051 ], [ -122.674415409999966, 49.208418709000036 ], [ -122.674003537999937, 49.208417547000067 ], [ -122.674001763999911, 49.208687401000127 ], [ -122.672354263999949, 49.208682739000082 ], [ -122.672356033999989, 49.208414984000115 ], [ -122.672356047, 49.208412886000119 ], [ -122.671944174999979, 49.208411716000072 ], [ -122.67194596, 49.208141862000048 ], [ -122.671534088999977, 49.20814069100004 ], [ -122.671539452999951, 49.207331128000121 ], [ -122.672363179999934, 49.207333468000094 ], [ -122.672364962999936, 49.20706361400007 ], [ -122.672776824999943, 49.207064781000035 ], [ -122.672780385999928, 49.206525072000012 ], [ -122.671544814999891, 49.20652156500006 ], [ -122.671547043999979, 49.206185092000105 ], [ -122.671635313, 49.20601387400005 ], [ -122.671717900999965, 49.205853711000074 ], [ -122.671752848999972, 49.205785857000144 ], [ -122.678321163999939, 49.205583138000065 ], [ -122.67832961, 49.205977476000058 ], [ -122.678333494999961, 49.20614214800004 ], [ -122.678351870999933, 49.206913463000078 ], [ -122.678337885999937, 49.208167831000054 ], [ -122.678335652, 49.208368172000064 ], [ -122.678310319999937, 49.210353332000061 ], [ -122.678304759999918, 49.210718977000063 ], [ -122.678308397999942, 49.211045831000092 ], [ -122.678309202999927, 49.211117780000031 ], [ -122.678312679, 49.211432895000044 ], [ -122.678283681999957, 49.211901485000098 ], [ -122.678241795999909, 49.21257769400011 ], [ -122.678246007999945, 49.213076092000094 ], [ -122.678247679999956, 49.21332154800011 ], [ -122.678251998999912, 49.21395120800004 ], [ -122.677096304999978, 49.21394980000008 ], [ -122.67591968699999, 49.213952307000035 ], [ -122.675301802999925, 49.213954888000025 ], [ -122.67526506699997, 49.21395514600006 ], [ -122.675039504999958, 49.213956690000082 ], [ -122.674772986, 49.213901605000082 ], [ -122.674549305999918, 49.213805488000069 ], [ -122.673366190999943, 49.213094102000099 ], [ -122.672331711000012, 49.212474689000061 ], [ -122.67200159199993, 49.212292394000038 ], [ -122.671656393999925, 49.212225785000037 ], [ -122.670749413999886, 49.212201405000066 ], [ -122.670763219999955, 49.212966888000096 ], [ -122.670768001999946, 49.213473397000016 ], [ -122.670976919999987, 49.213718591000081 ], [ -122.672322992999952, 49.21460721800004 ], [ -122.672689290999969, 49.214668100000054 ], [ -122.673858794999944, 49.214707604000047 ], [ -122.673932696999913, 49.21471011000007 ], [ -122.674158609999935, 49.214717891000085 ], [ -122.674459998999907, 49.214821800000067 ], [ -122.67502769099994, 49.215271899000072 ], [ -122.675102221999936, 49.215476896000027 ], [ -122.675090613999956, 49.216214509000061 ], [ -122.675070891999965, 49.217218614000096 ], [ -122.674172709999965, 49.217221149000075 ], [ -122.673911832, 49.217221868000138 ], [ -122.67359588399998, 49.217222771000138 ], [ -122.67318397599999, 49.217223915000012 ], [ -122.672368673999969, 49.217226196000119 ], [ -122.671532407999933, 49.217230088000051 ], [ -122.669427404000018, 49.217236188000044 ], [ -122.669121116000014, 49.217201498000165 ], [ -122.669240462999937, 49.216954301000101 ], [ -122.669237014999936, 49.216884338000128 ], [ -122.669219802999976, 49.216533970000064 ], [ -122.669215434999941, 49.21644486000018 ], [ -122.66905359699993, 49.213149531000091 ], [ -122.668965150999938, 49.212926939000042 ], [ -122.66879504399995, 49.212498708000069 ], [ -122.66874909799995, 49.212383111000037 ], [ -122.66871527, 49.212311157000102 ], [ -122.668708043999956, 49.212295752000053 ], [ -122.668710268, 49.212261576000046 ], [ -122.668715610999953, 49.212180530000111 ], [ -122.669035848999968, 49.212181448000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.753172588832487", "sL_AssetLoss": "15760", "sL_BldgLoss": "11870", "sL_StrLoss": "5850", "sL_NStrLoss": "6020", "sL_ContLoss": "3890", "geom_point": "0101000020E610000090BF517ED4AA5EC0B018F9E5E19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669204044999944, 49.209572368000089 ], [ -122.669387395999976, 49.209422102000119 ], [ -122.669316068999962, 49.210416597000062 ], [ -122.66904768499991, 49.210408301000093 ], [ -122.669046657999942, 49.210562324000051 ], [ -122.668975351999947, 49.210562120000041 ], [ -122.669204044999944, 49.209572368000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91488636", "BldgCostT": "60807079", "sL_LossRatio": "0.716598734135269", "sL_AssetLoss": "1508850", "sL_BldgLoss": "1081240", "sL_StrLoss": "475660", "sL_NStrLoss": "605580", "sL_ContLoss": "427610", "geom_point": "0101000020E6100000BB3B4AA934AB5EC011E00DCC7E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.672322992999952, 49.21460721800004 ], [ -122.670976919999987, 49.213718591000081 ], [ -122.670768001999946, 49.213473397000016 ], [ -122.670763219999955, 49.212966888000096 ], [ -122.670749413999886, 49.212201405000066 ], [ -122.671656393999925, 49.212225785000037 ], [ -122.67200159199993, 49.212292394000038 ], [ -122.672331711000012, 49.212474689000061 ], [ -122.673366190999943, 49.213094102000099 ], [ -122.674549305999918, 49.213805488000069 ], [ -122.674772986, 49.213901605000082 ], [ -122.675039504999958, 49.213956690000082 ], [ -122.67526506699997, 49.21395514600006 ], [ -122.675301802999925, 49.213954888000025 ], [ -122.67591968699999, 49.213952307000035 ], [ -122.677096304999978, 49.21394980000008 ], [ -122.678251998999912, 49.21395120800004 ], [ -122.678256689999913, 49.21442259800007 ], [ -122.678253420999937, 49.215563303000089 ], [ -122.678254192999972, 49.216319300000045 ], [ -122.678260705999932, 49.217207002000031 ], [ -122.67648471699999, 49.217220703000137 ], [ -122.676319979, 49.217220192000077 ], [ -122.675070891999965, 49.217218614000096 ], [ -122.675090613999956, 49.216214509000061 ], [ -122.675102221999936, 49.215476896000027 ], [ -122.67502769099994, 49.215271899000072 ], [ -122.674459998999907, 49.214821800000067 ], [ -122.674158609999935, 49.214717891000085 ], [ -122.673932696999913, 49.21471011000007 ], [ -122.673858794999944, 49.214707604000047 ], [ -122.672689290999969, 49.214668100000054 ], [ -122.672322992999952, 49.21460721800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284242435", "BldgCostT": "187396541", "sL_LossRatio": "0.796422479922519", "sL_AssetLoss": "2333460", "sL_BldgLoss": "1858420", "sL_StrLoss": "899900", "sL_NStrLoss": "958520", "sL_ContLoss": "475040", "geom_point": "0101000020E610000056571DBD0AAC5EC04AD702313F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.689043100999953, 49.222396266000054 ], [ -122.688476023999939, 49.222281527000128 ], [ -122.686850972999963, 49.222293772000071 ], [ -122.686741399999931, 49.222290408000028 ], [ -122.68674417699998, 49.221674189000112 ], [ -122.68675849, 49.220874161000076 ], [ -122.686759910999953, 49.220795391000102 ], [ -122.686775663, 49.219915077000046 ], [ -122.686781836999927, 49.219568709000079 ], [ -122.686699639999944, 49.219220182000086 ], [ -122.686753690999922, 49.219136253000094 ], [ -122.686753957999926, 49.21903623200005 ], [ -122.688170929999956, 49.219032935000079 ], [ -122.68944479699995, 49.219034480000062 ], [ -122.689545021999933, 49.219034611000055 ], [ -122.68953133499997, 49.220516396000022 ], [ -122.68952852399994, 49.220854612000075 ], [ -122.689526794999978, 49.221061372000065 ], [ -122.689540417999936, 49.221679009000034 ], [ -122.689542836999962, 49.22241523300012 ], [ -122.689043100999953, 49.222396266000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75161394", "BldgCostT": "45056523", "sL_LossRatio": "0.641822740972466", "sL_AssetLoss": "1224310", "sL_BldgLoss": "785790", "sL_StrLoss": "363940", "sL_NStrLoss": "421850", "sL_ContLoss": "438520", "geom_point": "0101000020E6100000B858DD2C56AC5EC0C11482A83D9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.689540417999936, 49.221679009000034 ], [ -122.689526794999978, 49.221061372000065 ], [ -122.68952852399994, 49.220854612000075 ], [ -122.68953133499997, 49.220516396000022 ], [ -122.689545021999933, 49.219034611000055 ], [ -122.689630158999961, 49.219034512000043 ], [ -122.690721699999983, 49.219031997000037 ], [ -122.692129123999976, 49.219028359000092 ], [ -122.693344183999969, 49.219026888000016 ], [ -122.69358716, 49.219027121000053 ], [ -122.693714859999929, 49.21902654900002 ], [ -122.694170551999918, 49.219027890000078 ], [ -122.697313340999983, 49.219041364000105 ], [ -122.697399782999966, 49.219099886000059 ], [ -122.697398111999945, 49.220030602000108 ], [ -122.69582538899999, 49.220041863000077 ], [ -122.694815930999965, 49.220047847000103 ], [ -122.694701885999962, 49.220048854000055 ], [ -122.69473161199997, 49.221617589000083 ], [ -122.69580451099992, 49.221627890000043 ], [ -122.695812291999985, 49.222045552000054 ], [ -122.695819575999906, 49.222438425000142 ], [ -122.695425508999975, 49.222436920000085 ], [ -122.694043877999917, 49.222431611000033 ], [ -122.69377035299999, 49.222430545000066 ], [ -122.693232392999931, 49.222427573000104 ], [ -122.691706986, 49.222424945000043 ], [ -122.690806748999975, 49.222423396000046 ], [ -122.689632073999974, 49.222415261000052 ], [ -122.689542836999962, 49.22241523300012 ], [ -122.689540417999936, 49.221679009000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59179833", "BldgCostT": "40053333", "sL_LossRatio": "0.730144721138513", "sL_AssetLoss": "997090", "sL_BldgLoss": "728020", "sL_StrLoss": "318910", "sL_NStrLoss": "409110", "sL_ContLoss": "269070", "geom_point": "0101000020E6100000F134EC39A1AC5EC0F7C39D454E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.695812291999985, 49.222045552000054 ], [ -122.69580451099992, 49.221627890000043 ], [ -122.69473161199997, 49.221617589000083 ], [ -122.694701885999962, 49.220048854000055 ], [ -122.694815930999965, 49.220047847000103 ], [ -122.69582538899999, 49.220041863000077 ], [ -122.697398111999945, 49.220030602000108 ], [ -122.699801141999941, 49.220023105000053 ], [ -122.69980600099997, 49.220862112000077 ], [ -122.699803204999967, 49.221673893000059 ], [ -122.69924168599999, 49.221674696000015 ], [ -122.699238101999953, 49.222439493000081 ], [ -122.697761812999957, 49.222444804000141 ], [ -122.696565407000023, 49.222434283000069 ], [ -122.696009001999954, 49.222438791000094 ], [ -122.695819575999906, 49.222438425000142 ], [ -122.695812291999985, 49.222045552000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "388051434", "BldgCostT": "254386540", "sL_LossRatio": "0.794175951515536", "sL_AssetLoss": "3788430", "sL_BldgLoss": "3008680", "sL_StrLoss": "1353170", "sL_NStrLoss": "1655510", "sL_ContLoss": "779750", "geom_point": "0101000020E61000001AB66E9C77AC5EC0A37B9DD4979C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.691706986, 49.222424945000043 ], [ -122.693232392999931, 49.222427573000104 ], [ -122.69377035299999, 49.222430545000066 ], [ -122.694043877999917, 49.222431611000033 ], [ -122.695425508999975, 49.222436920000085 ], [ -122.695819575999906, 49.222438425000142 ], [ -122.696009001999954, 49.222438791000094 ], [ -122.696565407000023, 49.222434283000069 ], [ -122.697761812999957, 49.222444804000141 ], [ -122.697750897999924, 49.222829198000099 ], [ -122.697748072999971, 49.223640891000038 ], [ -122.697744901999926, 49.223975102000026 ], [ -122.697732100999957, 49.224188519000108 ], [ -122.697722508999945, 49.224348316000047 ], [ -122.697445789999932, 49.22434876600007 ], [ -122.697432059999969, 49.224348794000043 ], [ -122.695056114999943, 49.224352763000098 ], [ -122.694987473999973, 49.224352870000111 ], [ -122.694903505999889, 49.224353002000079 ], [ -122.694850119999984, 49.224352933000048 ], [ -122.694752410999968, 49.224352806000091 ], [ -122.69252910099999, 49.224355130000106 ], [ -122.692023012999954, 49.224355681000127 ], [ -122.691987503999954, 49.224106192000129 ], [ -122.6917602499999, 49.222744209000062 ], [ -122.691706986, 49.222424945000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90385811", "BldgCostT": "59353190", "sL_LossRatio": "0.700694391241059", "sL_AssetLoss": "1435790", "sL_BldgLoss": "1006050", "sL_StrLoss": "437880", "sL_NStrLoss": "568170", "sL_ContLoss": "429740", "geom_point": "0101000020E61000005D3A8B83B0AC5EC03C51BFC9BE9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.699238101999953, 49.222439493000081 ], [ -122.70074588199995, 49.222473105000056 ], [ -122.70070383699999, 49.223471609000065 ], [ -122.700680958999982, 49.223517921000067 ], [ -122.700585090999965, 49.223711611000056 ], [ -122.700646689999971, 49.223829708 ], [ -122.700640098999969, 49.224348509000073 ], [ -122.700623791999945, 49.225215706000014 ], [ -122.700607888999983, 49.226095493000123 ], [ -122.699538202999946, 49.226096999000085 ], [ -122.697487901999978, 49.226102703000088 ], [ -122.696233583999984, 49.226111999000125 ], [ -122.694881891999927, 49.226121907000064 ], [ -122.694903505999889, 49.224353002000079 ], [ -122.694987473999973, 49.224352870000111 ], [ -122.695056114999943, 49.224352763000098 ], [ -122.697432059999969, 49.224348794000043 ], [ -122.697445789999932, 49.22434876600007 ], [ -122.697722508999945, 49.224348316000047 ], [ -122.697732100999957, 49.224188519000108 ], [ -122.697744901999926, 49.223975102000026 ], [ -122.697748072999971, 49.223640891000038 ], [ -122.697750897999924, 49.222829198000099 ], [ -122.697761812999957, 49.222444804000141 ], [ -122.699238101999953, 49.222439493000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148744833", "BldgCostT": "98748333", "sL_LossRatio": "0.717111521062139", "sL_AssetLoss": "2394866", "sL_BldgLoss": "1717386", "sL_StrLoss": "769606", "sL_NStrLoss": "947780", "sL_ContLoss": "677480", "geom_point": "0101000020E61000002D8CA9CB94AC5EC0E03244A1279D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.699538202999946, 49.226096999000085 ], [ -122.700607888999983, 49.226095493000123 ], [ -122.700545988999934, 49.229670605000074 ], [ -122.700547405999941, 49.230771695000051 ], [ -122.700585242999949, 49.231207588000167 ], [ -122.697996944999915, 49.229945375000113 ], [ -122.694412520999933, 49.228533208000066 ], [ -122.691029515999929, 49.227227558000095 ], [ -122.689567414999914, 49.226684515000116 ], [ -122.68949563299999, 49.226657860000046 ], [ -122.689496532999939, 49.226582812000068 ], [ -122.689499143999925, 49.226359644000077 ], [ -122.689501300999922, 49.226176703000128 ], [ -122.689574905999905, 49.226170299000074 ], [ -122.689799587999985, 49.22615071200002 ], [ -122.691482319999963, 49.226140169000075 ], [ -122.692600789999972, 49.226134308000056 ], [ -122.692985294999957, 49.226132276000065 ], [ -122.694263786999926, 49.226125496000101 ], [ -122.694798368999955, 49.226122378000078 ], [ -122.694881891999927, 49.226121907000064 ], [ -122.696233583999984, 49.226111999000125 ], [ -122.697487901999978, 49.226102703000088 ], [ -122.699538202999946, 49.226096999000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234590489", "BldgCostT": "149230260", "sL_LossRatio": "0.699649628506821", "sL_AssetLoss": "2817010", "sL_BldgLoss": "1970920", "sL_StrLoss": "800230", "sL_NStrLoss": "1170690", "sL_ContLoss": "846090", "geom_point": "0101000020E610000079443A1345AC5EC0783A1C9FC19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.689518360999955, 49.224587749000065 ], [ -122.68952526, 49.223975381000045 ], [ -122.68952841, 49.223697136000119 ], [ -122.689536927999953, 49.222941622000057 ], [ -122.689538229000021, 49.222824680000038 ], [ -122.689542836999962, 49.22241523300012 ], [ -122.689632073999974, 49.222415261000052 ], [ -122.690806748999975, 49.222423396000046 ], [ -122.691706986, 49.222424945000043 ], [ -122.6917602499999, 49.222744209000062 ], [ -122.691987503999954, 49.224106192000129 ], [ -122.692023012999954, 49.224355681000127 ], [ -122.69252910099999, 49.224355130000106 ], [ -122.694752410999968, 49.224352806000091 ], [ -122.694850119999984, 49.224352933000048 ], [ -122.694903505999889, 49.224353002000079 ], [ -122.694881891999927, 49.226121907000064 ], [ -122.694798368999955, 49.226122378000078 ], [ -122.694263786999926, 49.226125496000101 ], [ -122.692985294999957, 49.226132276000065 ], [ -122.692600789999972, 49.226134308000056 ], [ -122.691482319999963, 49.226140169000075 ], [ -122.689799587999985, 49.22615071200002 ], [ -122.689574905999905, 49.226170299000074 ], [ -122.689501300999922, 49.226176703000128 ], [ -122.689502019999935, 49.226116769000107 ], [ -122.689507335999934, 49.225666856000061 ], [ -122.689518360999955, 49.224587749000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211973897", "BldgCostT": "140726384", "sL_LossRatio": "0.723893695060331", "sL_AssetLoss": "2729130", "sL_BldgLoss": "1975600", "sL_StrLoss": "835250", "sL_NStrLoss": "1140350", "sL_ContLoss": "753530", "geom_point": "0101000020E6100000EA974F56CCAB5EC076540CC2229D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.681558968999951, 49.22800313600009 ], [ -122.676114246999944, 49.225904358000058 ], [ -122.676205270999958, 49.225822460000074 ], [ -122.676981491999925, 49.225049004000013 ], [ -122.677205681999979, 49.22494689400002 ], [ -122.677467902999965, 49.224871193000084 ], [ -122.67779210499998, 49.224849613000067 ], [ -122.678249286999971, 49.224925907000042 ], [ -122.679228723999969, 49.225303910000036 ], [ -122.679758487999919, 49.225518391000094 ], [ -122.680191814999958, 49.225602902000041 ], [ -122.680679201999965, 49.225602588000115 ], [ -122.682001390999943, 49.22560371200013 ], [ -122.681986962999972, 49.226294304000149 ], [ -122.681973014999969, 49.226960705000074 ], [ -122.682046182999983, 49.227147598000045 ], [ -122.682190899999938, 49.227312501000036 ], [ -122.682512199999906, 49.227447599000072 ], [ -122.68286151199996, 49.227497085000017 ], [ -122.682880868999945, 49.227496718000104 ], [ -122.683184690999951, 49.227490811000081 ], [ -122.683192050999963, 49.226561180000047 ], [ -122.683995579999973, 49.226561708000126 ], [ -122.686017477999911, 49.226562981000079 ], [ -122.686782389999948, 49.226563463000041 ], [ -122.68679993899994, 49.225606205000112 ], [ -122.687225405999968, 49.225608465000079 ], [ -122.688141656999932, 49.225987131000075 ], [ -122.68839173799995, 49.226157896000103 ], [ -122.688525606999974, 49.226340397000079 ], [ -122.688539890999948, 49.22744910200008 ], [ -122.689486374999944, 49.227443048000076 ], [ -122.689481401999956, 49.22805197100012 ], [ -122.689463803999985, 49.229646243000047 ], [ -122.689478649999955, 49.230824344000069 ], [ -122.689532643999939, 49.230895374000049 ], [ -122.689521184999975, 49.231017567000045 ], [ -122.689515556999979, 49.231173287000061 ], [ -122.68690847100001, 49.230129208000108 ], [ -122.685887647999948, 49.229720381000064 ], [ -122.682653793999989, 49.228425082000065 ], [ -122.681593086999968, 49.228016277 ], [ -122.681558968999951, 49.22800313600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61448061", "BldgCostT": "41438190", "sL_LossRatio": "0.726215912095717", "sL_AssetLoss": "1036218", "sL_BldgLoss": "752518", "sL_StrLoss": "339688", "sL_NStrLoss": "412830", "sL_ContLoss": "283700", "geom_point": "0101000020E61000009528392F67AB5EC09F2A847A9F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.677467902999965, 49.224871193000084 ], [ -122.677315286999942, 49.22460520000007 ], [ -122.677181407999981, 49.224519896000075 ], [ -122.676178912999958, 49.22411958800005 ], [ -122.676056, 49.224072605000053 ], [ -122.675831917999972, 49.223903504000127 ], [ -122.675682307999949, 49.223691597000069 ], [ -122.675597109999941, 49.223232199000073 ], [ -122.675500111999966, 49.222478594000094 ], [ -122.675511590999974, 49.222222093000042 ], [ -122.675704313999915, 49.22198480300009 ], [ -122.675999308999934, 49.221795704000051 ], [ -122.676328815999909, 49.221738300000048 ], [ -122.676561211, 49.221713900000061 ], [ -122.676958083999935, 49.221769396000106 ], [ -122.680717520999934, 49.223339504000116 ], [ -122.680679201999965, 49.225602588000115 ], [ -122.680191814999958, 49.225602902000041 ], [ -122.679758487999919, 49.225518391000094 ], [ -122.679228723999969, 49.225303910000036 ], [ -122.678249286999971, 49.224925907000042 ], [ -122.67779210499998, 49.224849613000067 ], [ -122.677467902999965, 49.224871193000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "457913251", "BldgCostT": "292545001", "sL_LossRatio": "0.697087604418714", "sL_AssetLoss": "5013948", "sL_BldgLoss": "3495161", "sL_StrLoss": "1638581", "sL_NStrLoss": "1856580", "sL_ContLoss": "1518787", "geom_point": "0101000020E6100000C6D35F33E9AC5EC0D62897A5A19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.697867580999954, 49.264511660000025 ], [ -122.697951479999972, 49.263333196000083 ], [ -122.697797947999959, 49.263328496000085 ], [ -122.697826756999987, 49.262923829000037 ], [ -122.697704768999969, 49.262920095000069 ], [ -122.69779560099991, 49.26164426900008 ], [ -122.694269282999969, 49.261634991000108 ], [ -122.694274284999921, 49.260825434000019 ], [ -122.697853224999932, 49.260834849000055 ], [ -122.69796077700002, 49.259324028000044 ], [ -122.698623423999919, 49.25934430800006 ], [ -122.698631169999899, 49.259235474000086 ], [ -122.694743294999938, 49.259116427000123 ], [ -122.6949098199999, 49.256779261000091 ], [ -122.692748223999956, 49.256773533000079 ], [ -122.692699737999973, 49.257453614000049 ], [ -122.692993548999979, 49.257462621000059 ], [ -122.69287094699996, 49.259182331000055 ], [ -122.69365643099998, 49.259206408000118 ], [ -122.693406531999941, 49.262712132000026 ], [ -122.693437965999962, 49.262712215000093 ], [ -122.69343462099998, 49.263251919000098 ], [ -122.693846950999941, 49.263253013000039 ], [ -122.693845281, 49.263522866000073 ], [ -122.694257613999937, 49.263523958000107 ], [ -122.694253179999976, 49.26424160600007 ], [ -122.689335387999932, 49.263873968000105 ], [ -122.689369286999977, 49.263372296000128 ], [ -122.689470618999948, 49.26124347700005 ], [ -122.689522833999959, 49.260146033000048 ], [ -122.689638791000021, 49.257708698000016 ], [ -122.68966059899995, 49.257250087000031 ], [ -122.689669609999925, 49.25579529100002 ], [ -122.689630026999922, 49.252545157000078 ], [ -122.689596904999974, 49.249825784000116 ], [ -122.689525388999982, 49.244127400000131 ], [ -122.68950288399995, 49.242285994000106 ], [ -122.689541640999948, 49.239610011000146 ], [ -122.689546590999953, 49.239267200000036 ], [ -122.689545792999979, 49.239061034000095 ], [ -122.689545419999916, 49.238962098000087 ], [ -122.689545212999974, 49.238917127000029 ], [ -122.689544530999967, 49.23873716100006 ], [ -122.68952301299997, 49.23327686100005 ], [ -122.689521015999929, 49.232764073000041 ], [ -122.689520609999974, 49.232661896000081 ], [ -122.689516284999954, 49.231390455000046 ], [ -122.689515556999979, 49.231173287000061 ], [ -122.689521184999975, 49.231017567000045 ], [ -122.689532643999939, 49.230895374000049 ], [ -122.689478649999955, 49.230824344000069 ], [ -122.689463803999985, 49.229646243000047 ], [ -122.689481401999956, 49.22805197100012 ], [ -122.689486374999944, 49.227443048000076 ], [ -122.689493069999969, 49.226877002000052 ], [ -122.68949563299999, 49.226657860000046 ], [ -122.689567414999914, 49.226684515000116 ], [ -122.691029515999929, 49.227227558000095 ], [ -122.694412520999933, 49.228533208000066 ], [ -122.697996944999915, 49.229945375000113 ], [ -122.700585242999949, 49.231207588000167 ], [ -122.701092782999964, 49.23141329500006 ], [ -122.701549415999978, 49.231612527000088 ], [ -122.70523068199995, 49.233149781000051 ], [ -122.705532044999927, 49.233275594000048 ], [ -122.708778944999921, 49.234687574000048 ], [ -122.712641924999971, 49.236367200000132 ], [ -122.712934963999913, 49.236494891000063 ], [ -122.713152184999942, 49.236589479000138 ], [ -122.710894400999976, 49.23669411100007 ], [ -122.709606509999958, 49.236910599000112 ], [ -122.709102868999963, 49.237179652000073 ], [ -122.708282699999984, 49.237861905000059 ], [ -122.707809453999943, 49.238122581000063 ], [ -122.70764843699996, 49.238211260000107 ], [ -122.717804203999933, 49.242185207 ], [ -122.718602357999927, 49.242551882000072 ], [ -122.719433898999938, 49.243068212000026 ], [ -122.71993792499994, 49.243413166000018 ], [ -122.722640670999922, 49.244898133000092 ], [ -122.723653731999946, 49.245549923000041 ], [ -122.72431935, 49.24591068100009 ], [ -122.724776812999934, 49.246104445000086 ], [ -122.725361354999947, 49.246352023000092 ], [ -122.72578778799999, 49.246532659000046 ], [ -122.7261662, 49.246696993000072 ], [ -122.725162835999967, 49.247525605000106 ], [ -122.724447453999986, 49.247859820000023 ], [ -122.72246433399999, 49.248372682000124 ], [ -122.722086422999936, 49.248675555000091 ], [ -122.720990839999928, 49.249743371000122 ], [ -122.719792302999963, 49.250904148000124 ], [ -122.718240131999934, 49.251777011000087 ], [ -122.718246649, 49.250631816000151 ], [ -122.719071098999947, 49.250633823000072 ], [ -122.719072630999932, 49.250363970000095 ], [ -122.719484852999983, 49.250364972000042 ], [ -122.719486382999975, 49.250095118000011 ], [ -122.719898602999962, 49.250096119000055 ], [ -122.719904709999952, 49.249016704000056 ], [ -122.720316923000027, 49.249017703000113 ], [ -122.720318446999926, 49.248747849000047 ], [ -122.72073065699999, 49.248748847000108 ], [ -122.720733701, 49.248209140000093 ], [ -122.721145905999933, 49.248210135000107 ], [ -122.721147425999987, 49.247940281000119 ], [ -122.72279624, 49.247944250000103 ], [ -122.722797749, 49.247674396000036 ], [ -122.723622150999958, 49.247676372000079 ], [ -122.723623657999951, 49.247406517000073 ], [ -122.724035857, 49.247407502000073 ], [ -122.724038863999979, 49.246867795000121 ], [ -122.723626668999913, 49.24686681100016 ], [ -122.723629070999934, 49.24643651600006 ], [ -122.720510936999943, 49.246341744000055 ], [ -122.720517210999915, 49.246252966000021 ], [ -122.720213731999962, 49.2462437370001 ], [ -122.720240575999981, 49.245863966000044 ], [ -122.719554186, 49.245843090000029 ], [ -122.719547901999974, 49.245931979000055 ], [ -122.719373727999979, 49.245926681000107 ], [ -122.719332924999932, 49.24650378300008 ], [ -122.718220299999956, 49.246469933000057 ], [ -122.718176111, 49.24709471000007 ], [ -122.714717746999909, 49.246989418000076 ], [ -122.714656112999933, 49.247859892000101 ], [ -122.713729802999964, 49.247831672000103 ], [ -122.713693159999963, 49.248349028000113 ], [ -122.713985612, 49.248357939000066 ], [ -122.713877818999919, 49.249879918000019 ], [ -122.714055802999937, 49.24988534000002 ], [ -122.713943685999965, 49.251468347000127 ], [ -122.714061799999953, 49.25147194500007 ], [ -122.713985900999958, 49.252543581000054 ], [ -122.715152629, 49.252579119000067 ], [ -122.71505848399994, 49.253908752000029 ], [ -122.715175709999954, 49.25391232100008 ], [ -122.715161338999934, 49.254115302000102 ], [ -122.714382418999932, 49.254553247000075 ], [ -122.713259027999982, 49.256536031000088 ], [ -122.712573851999935, 49.2577043020001 ], [ -122.71236461699999, 49.258344353000055 ], [ -122.711453497999955, 49.258694209000126 ], [ -122.710490097999937, 49.260596502000062 ], [ -122.710288088999931, 49.260925499000038 ], [ -122.710029585999962, 49.261179798000086 ], [ -122.70981269899994, 49.261357251000092 ], [ -122.709800662999953, 49.26136712800011 ], [ -122.707896883999979, 49.262924694000077 ], [ -122.70751465799999, 49.263337555000071 ], [ -122.707406093999964, 49.263454832000072 ], [ -122.707897890999959, 49.263975289000065 ], [ -122.70758159899998, 49.264114307000064 ], [ -122.706213419999969, 49.264076122000063 ], [ -122.703736147999948, 49.264401836000076 ], [ -122.703736408999958, 49.264358220000069 ], [ -122.703755190999985, 49.264358269000041 ], [ -122.703771669999952, 49.264126383000082 ], [ -122.704364475999938, 49.264144493000074 ], [ -122.704419286999936, 49.26337309700007 ], [ -122.705117703999989, 49.26339442700008 ], [ -122.705123160999932, 49.263317614000179 ], [ -122.70539193799999, 49.263325822000084 ], [ -122.705392191999977, 49.263283028000089 ], [ -122.705804521999966, 49.263284079000123 ], [ -122.70580773099999, 49.262744374000064 ], [ -122.706632381999952, 49.262746471000106 ], [ -122.706640381999989, 49.261397207000087 ], [ -122.70745820399999, 49.261399281000102 ], [ -122.707485545999972, 49.261014098000032 ], [ -122.705173067999951, 49.260943500000067 ], [ -122.705175448999952, 49.260909994 ], [ -122.704010732999947, 49.26087441600005 ], [ -122.703994325999957, 49.261105313000058 ], [ -122.703453635999907, 49.261088793000063 ], [ -122.703367327999928, 49.262303162000066 ], [ -122.703520859999955, 49.262307853000017 ], [ -122.703370562999979, 49.264422508000045 ], [ -122.703539617, 49.264427673000064 ], [ -122.701077205999951, 49.264751368000056 ], [ -122.697867580999954, 49.264511660000025 ] ], [ [ -122.708492313999926, 49.257315310000109 ], [ -122.708496483999951, 49.257256540000128 ], [ -122.708419615999944, 49.25725419500003 ], [ -122.708440387999957, 49.25696143400004 ], [ -122.708376831999914, 49.2569594940001 ], [ -122.708418136999981, 49.256377368000109 ], [ -122.708340366999934, 49.256374995000051 ], [ -122.708404947999952, 49.255464824000079 ], [ -122.707500095999961, 49.255462536000032 ], [ -122.707496906999921, 49.256002242000129 ], [ -122.706260098999948, 49.255999105000122 ], [ -122.706261698999938, 49.255729252000116 ], [ -122.70543716499995, 49.255727152000041 ], [ -122.70543877099999, 49.255457300000089 ], [ -122.704614239999927, 49.255455195000103 ], [ -122.704615849999982, 49.255185342000068 ], [ -122.704082489999976, 49.255183976000126 ], [ -122.704053081, 49.255597900000055 ], [ -122.704632604999944, 49.255615606000077 ], [ -122.704567329999975, 49.256534502000115 ], [ -122.705020072999943, 49.256535659000058 ], [ -122.705021679999959, 49.256265806000023 ], [ -122.706258497, 49.256268957000024 ], [ -122.706256894999953, 49.25653881000008 ], [ -122.70666916899998, 49.256539858000082 ], [ -122.70666490399999, 49.257259536000049 ], [ -122.708492313999926, 49.257315310000109 ] ], [ [ -122.70545322199996, 49.253028623 ], [ -122.705456431999963, 49.252488917000029 ], [ -122.7046319519999, 49.252486812000022 ], [ -122.704630341999973, 49.25275666400006 ], [ -122.704218097999927, 49.252755610000072 ], [ -122.704214873999931, 49.253295316000099 ], [ -122.705039367999973, 49.253297424000124 ], [ -122.705040976999925, 49.253027571000111 ], [ -122.70545322199996, 49.253028623 ] ], [ [ -122.707105393999939, 49.252493108000095 ], [ -122.707102201999973, 49.253032815000061 ], [ -122.708337405999927, 49.253035940000061 ], [ -122.708425636999948, 49.251792336000072 ], [ -122.708247647999912, 49.251786905000053 ], [ -122.70835452899999, 49.250280439000086 ], [ -122.707894526999937, 49.250266400000044 ], [ -122.708081007000018, 49.247638147000032 ], [ -122.707546326999946, 49.247636795000069 ], [ -122.707544733999953, 49.247906648000082 ], [ -122.707132532999978, 49.247905605000014 ], [ -122.707130934999924, 49.248175458000105 ], [ -122.706718730999967, 49.248174411000022 ], [ -122.706715534999915, 49.248714118000102 ], [ -122.705478906999929, 49.248710972000069 ], [ -122.705480513999973, 49.24844111900007 ], [ -122.705068305999959, 49.248440068000043 ], [ -122.705069911999956, 49.248170215000066 ], [ -122.703684548999902, 49.248166669000078 ], [ -122.703601746999951, 49.249332156000087 ], [ -122.703471372999914, 49.249328171000073 ], [ -122.703417050999946, 49.250092715000079 ], [ -122.704087584999968, 49.250113207 ], [ -122.703998787999964, 49.251363177000044 ], [ -122.704052263999955, 49.251364811000023 ], [ -122.704049345999948, 49.251405893000076 ], [ -122.705462853999947, 49.251409504000058 ], [ -122.705459642999955, 49.251949210000134 ], [ -122.706696350999948, 49.251952357000071 ], [ -122.706693153999964, 49.252492063000119 ], [ -122.707105393999939, 49.252493108000095 ] ], [ [ -122.69476647099999, 49.247873595000101 ], [ -122.696415277999975, 49.247877938000045 ], [ -122.696418585999965, 49.247338233000036 ], [ -122.69600639, 49.247337149000025 ], [ -122.696011360999961, 49.246527590000056 ], [ -122.696423549999963, 49.246528674000089 ], [ -122.696424123999989, 49.24643513400008 ], [ -122.696198808999966, 49.246428233000067 ], [ -122.696197584999965, 49.246445443000042 ], [ -122.695562045999964, 49.246425972000068 ], [ -122.695553763999897, 49.246542259000073 ], [ -122.69354823899999, 49.24648079100016 ], [ -122.693540483999925, 49.246589607000068 ], [ -122.692987036999952, 49.246572638000032 ], [ -122.692982061999913, 49.246642446000045 ], [ -122.692993380999923, 49.246642792000046 ], [ -122.692867545999931, 49.248408278000035 ], [ -122.693938732, 49.248411120000107 ], [ -122.693940400999963, 49.248141267000108 ], [ -122.694764808999949, 49.248143448000036 ], [ -122.69476647099999, 49.247873595000101 ] ], [ [ -122.703810139999959, 49.246398793 ], [ -122.703742052999957, 49.247357245000089 ], [ -122.704250337999923, 49.247358547000061 ], [ -122.704251952, 49.247088694000155 ], [ -122.70548853699999, 49.247091854000061 ], [ -122.705490142999963, 49.24682200000013 ], [ -122.705902335999937, 49.246823049000042 ], [ -122.705904474999926, 49.246462782000016 ], [ -122.703810139999959, 49.246398793 ] ], [ [ -122.707966076999952, 49.246357688000067 ], [ -122.707964894999961, 49.246558424000092 ], [ -122.708325431999981, 49.246559334000054 ], [ -122.70833773799994, 49.246385865000036 ], [ -122.708257581999987, 49.24638341900004 ], [ -122.708258772999955, 49.246366622000075 ], [ -122.707966076999952, 49.246357688000067 ] ], [ [ -122.709129110999982, 49.242754194000028 ], [ -122.709175217999942, 49.2421040340001 ], [ -122.709172579999986, 49.242103954000108 ], [ -122.709302083999944, 49.240277696000099 ], [ -122.708028652999928, 49.240238828000024 ], [ -122.708039942999946, 49.240079670000028 ], [ -122.706766895999976, 49.240040799000035 ], [ -122.706766671999972, 49.240078808000092 ], [ -122.707178809999945, 49.240079852000129 ], [ -122.707174022999965, 49.240889414000044 ], [ -122.708410454999978, 49.240892542000061 ], [ -122.70840886699996, 49.241162395000103 ], [ -122.708821012, 49.241163435000033 ], [ -122.708816251999934, 49.241972996000115 ], [ -122.707167639999938, 49.241968829000015 ], [ -122.707166044999923, 49.242238683000096 ], [ -122.70592958, 49.242235541000056 ], [ -122.705939192999949, 49.240616420000045 ], [ -122.704336063999932, 49.240612328000047 ], [ -122.704265539999966, 49.241605361000019 ], [ -122.703048451999948, 49.241568158000042 ], [ -122.703047729999938, 49.241688454000041 ], [ -122.702223429, 49.241686333000075 ], [ -122.702221861999988, 49.241947040000106 ], [ -122.70272163199995, 49.241962322000028 ], [ -122.702700419999971, 49.242260850000015 ], [ -122.702954442999967, 49.242268617000015 ], [ -122.70295381199999, 49.242277480000034 ], [ -122.703549821999971, 49.242295700000113 ], [ -122.703517450999939, 49.24275139000013 ], [ -122.704734008999964, 49.242788571000069 ], [ -122.704731565999921, 49.242822975000102 ], [ -122.705484924999936, 49.242845992000099 ], [ -122.70549931, 49.242643364000159 ], [ -122.709129110999982, 49.242754194000028 ] ], [ [ -122.700573529999957, 49.24189661900008 ], [ -122.700575973999946, 49.24149253700007 ], [ -122.69878353699994, 49.241437679000043 ], [ -122.698881645999975, 49.240058525000045 ], [ -122.697287523999961, 49.240054358000116 ], [ -122.69729576899999, 49.238705090000067 ], [ -122.698944270999945, 49.238709399000093 ], [ -122.698941155999989, 49.239221901000086 ], [ -122.699039343, 49.237841493000083 ], [ -122.699361610999972, 49.237851359000075 ], [ -122.699362536999985, 49.237698917000067 ], [ -122.696783399999944, 49.237619937000041 ], [ -122.696830772999988, 49.236954336000096 ], [ -122.696670836999957, 49.236949436000096 ], [ -122.696714039999961, 49.236342437000133 ], [ -122.693393257999944, 49.236240650000106 ], [ -122.69346833699997, 49.235186846000012 ], [ -122.692886222999945, 49.235185301000087 ], [ -122.692828546999948, 49.235994720000093 ], [ -122.693191230999972, 49.235995685000056 ], [ -122.693187887999912, 49.236535392000036 ], [ -122.695660532, 49.236541932000129 ], [ -122.6956539, 49.237621346000033 ], [ -122.695241784999908, 49.237620259000089 ], [ -122.695240122999977, 49.237890113000091 ], [ -122.694828005999938, 49.237889025000094 ], [ -122.694821352999895, 49.238968439000097 ], [ -122.693584970999936, 49.238965166000042 ], [ -122.693583300999975, 49.239235020000109 ], [ -122.693171172999911, 49.239233925000043 ], [ -122.693169499999954, 49.239503779000067 ], [ -122.692833060999973, 49.239502884000089 ], [ -122.692767506999957, 49.240422744000057 ], [ -122.692751663999942, 49.24042225700007 ], [ -122.69275067299999, 49.240582096000068 ], [ -122.69272962699992, 49.240582041000103 ], [ -122.692652171999953, 49.24166884300012 ], [ -122.691706194999938, 49.241639826000068 ], [ -122.691699241999956, 49.241737373000085 ], [ -122.692791787, 49.241770885000065 ], [ -122.692779422999976, 49.241944356000047 ], [ -122.695347660999971, 49.242023090000039 ], [ -122.695348356999958, 49.24201331600004 ], [ -122.697219941999919, 49.242070653000098 ], [ -122.697239591999931, 49.241794561000077 ], [ -122.700573529999957, 49.24189661900008 ] ], [ [ -122.702674459999955, 49.235210907000095 ], [ -122.702672839999963, 49.235480761000083 ], [ -122.703084938999922, 49.235481821000079 ], [ -122.703083320999951, 49.235751674000063 ], [ -122.704319624999968, 49.235754845000088 ], [ -122.704318012999977, 49.236024699000076 ], [ -122.70514222099996, 49.236026805000066 ], [ -122.705139006999957, 49.236566514000053 ], [ -122.705780480999948, 49.236568149000028 ], [ -122.70582127099999, 49.235993452000123 ], [ -122.707202715999983, 49.236035649000073 ], [ -122.707204331999918, 49.235762193000063 ], [ -122.705968029999966, 49.235759052000049 ], [ -122.705971232999985, 49.235219345000075 ], [ -122.705559136999923, 49.235218295000095 ], [ -122.705560740999957, 49.234948441000064 ], [ -122.70514864499998, 49.234947390000059 ], [ -122.705153463999977, 49.234137829000062 ], [ -122.70474137699992, 49.234136776000128 ], [ -122.704742983999935, 49.233866923000107 ], [ -122.703918814999966, 49.233864813000046 ], [ -122.703917199999964, 49.234134667000063 ], [ -122.702680937999943, 49.234131492000081 ], [ -122.70268255799999, 49.233861637000132 ], [ -122.702383675999982, 49.233860868000058 ], [ -122.70236053299999, 49.234186616000017 ], [ -122.702520458999956, 49.234191507000062 ], [ -122.702448075999982, 49.23521032400005 ], [ -122.702674459999955, 49.235210907000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.725394440270473", "sL_AssetLoss": "26620", "sL_BldgLoss": "19310", "sL_StrLoss": "8710", "sL_NStrLoss": "10600", "sL_ContLoss": "7310", "geom_point": "0101000020E61000006759200F37AD5EC08BDAE48D9FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.696632586999982, 49.26500283200005 ], [ -122.696665336, 49.264543012000097 ], [ -122.697862739999962, 49.264579667000113 ], [ -122.697867580999954, 49.264511660000025 ], [ -122.701077205999951, 49.264751368000056 ], [ -122.703539617, 49.264427673000064 ], [ -122.703735957999953, 49.264433672000031 ], [ -122.703736147999948, 49.264401836000076 ], [ -122.706213419999969, 49.264076122000063 ], [ -122.70758159899998, 49.264114307000064 ], [ -122.707897890999959, 49.263975289000065 ], [ -122.707406093999964, 49.263454832000072 ], [ -122.70751465799999, 49.263337555000071 ], [ -122.707896883999979, 49.262924694000077 ], [ -122.709800662999953, 49.26136712800011 ], [ -122.70981269899994, 49.261357251000092 ], [ -122.710029585999962, 49.261179798000086 ], [ -122.710288088999931, 49.260925499000038 ], [ -122.710490097999937, 49.260596502000062 ], [ -122.711453497999955, 49.258694209000126 ], [ -122.71236461699999, 49.258344353000055 ], [ -122.712573851999935, 49.2577043020001 ], [ -122.713259027999982, 49.256536031000088 ], [ -122.714382418999932, 49.254553247000075 ], [ -122.715161338999934, 49.254115302000102 ], [ -122.715137380999977, 49.254453655000113 ], [ -122.715070696999959, 49.25449959900007 ], [ -122.71414471599995, 49.255459503000083 ], [ -122.713230291999949, 49.256735607000074 ], [ -122.713035486999914, 49.257121606000084 ], [ -122.713158302999915, 49.257490406000073 ], [ -122.712825213999977, 49.257813699000103 ], [ -122.71164840899999, 49.25952848200005 ], [ -122.710534876999944, 49.261828597000068 ], [ -122.710353269, 49.262056800000046 ], [ -122.709935157999936, 49.26204405 ], [ -122.709930991999926, 49.262754799000035 ], [ -122.709518663999972, 49.26275376300007 ], [ -122.709517080999944, 49.263023616000055 ], [ -122.709104751999959, 49.263022578000111 ], [ -122.709102304999988, 49.263439059000113 ], [ -122.709599150999935, 49.263454212000049 ], [ -122.70946478899999, 49.263634491000104 ], [ -122.708777711999957, 49.263856686000075 ], [ -122.70815649599993, 49.264115900000057 ], [ -122.70821311099999, 49.264161402000063 ], [ -122.708060411999952, 49.264278201000096 ], [ -122.707811976999963, 49.26425119200016 ], [ -122.706462478999939, 49.26470549700008 ], [ -122.701938285, 49.265233895000023 ], [ -122.699848787999912, 49.265246710000106 ], [ -122.698488513999976, 49.265179699000079 ], [ -122.696632586999982, 49.26500283200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103504167", "BldgCostT": "66731667", "sL_LossRatio": "0.649652277737355", "sL_AssetLoss": "4631570", "sL_BldgLoss": "3008910", "sL_StrLoss": "1181610", "sL_NStrLoss": "1827300", "sL_ContLoss": "1622660", "geom_point": "0101000020E610000023A7D13F5CAE5EC0310BED9CE69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.723653731999946, 49.245549923000041 ], [ -122.722640670999922, 49.244898133000092 ], [ -122.71993792499994, 49.243413166000018 ], [ -122.719433898999938, 49.243068212000026 ], [ -122.718602357999927, 49.242551882000072 ], [ -122.717804203999933, 49.242185207 ], [ -122.70764843699996, 49.238211260000107 ], [ -122.707809453999943, 49.238122581000063 ], [ -122.708282699999984, 49.237861905000059 ], [ -122.709102868999963, 49.237179652000073 ], [ -122.709606509999958, 49.236910599000112 ], [ -122.710894400999976, 49.23669411100007 ], [ -122.713152184999942, 49.236589479000138 ], [ -122.712934963999913, 49.236494891000063 ], [ -122.712641924999971, 49.236367200000132 ], [ -122.708778944999921, 49.234687574000048 ], [ -122.705532044999927, 49.233275594000048 ], [ -122.70523068199995, 49.233149781000051 ], [ -122.701549415999978, 49.231612527000088 ], [ -122.701092782999964, 49.23141329500006 ], [ -122.700585242999949, 49.231207588000167 ], [ -122.700547405999941, 49.230771695000051 ], [ -122.700545988999934, 49.229670605000074 ], [ -122.700607888999983, 49.226095493000123 ], [ -122.700623791999945, 49.225215706000014 ], [ -122.700640098999969, 49.224348509000073 ], [ -122.700646689999971, 49.223829708 ], [ -122.700585090999965, 49.223711611000056 ], [ -122.700680958999982, 49.223517921000067 ], [ -122.70070383699999, 49.223471609000065 ], [ -122.70074588199995, 49.222473105000056 ], [ -122.700737217999915, 49.219696709000068 ], [ -122.700723704999973, 49.215385781000066 ], [ -122.700723141999944, 49.215180986000078 ], [ -122.700715284999916, 49.212342053000071 ], [ -122.700708384999942, 49.209863794000071 ], [ -122.700710266, 49.208350056000064 ], [ -122.700710113999918, 49.208294196000097 ], [ -122.700728100999939, 49.208160594000113 ], [ -122.700555493999943, 49.20759088200009 ], [ -122.70054787199993, 49.207564074000089 ], [ -122.700606952000015, 49.207455551000066 ], [ -122.700675923999981, 49.207328765000057 ], [ -122.700679083999887, 49.207322821000048 ], [ -122.700860495999933, 49.206966750000099 ], [ -122.700962380999954, 49.206798699000039 ], [ -122.701274091999963, 49.206862612000045 ], [ -122.702685208999981, 49.207324102000037 ], [ -122.703663142999957, 49.207710403000135 ], [ -122.703661665999959, 49.20795772500005 ], [ -122.703416289999922, 49.207957095000062 ], [ -122.703397137999971, 49.208226905000039 ], [ -122.703660052999965, 49.20822758000002 ], [ -122.703658439999955, 49.208497435000062 ], [ -122.704858743999949, 49.208500508000071 ], [ -122.704882597, 49.208164327000034 ], [ -122.706369306999989, 49.208655701000026 ], [ -122.712538114999958, 49.21051568900009 ], [ -122.712707915999943, 49.210551455000093 ], [ -122.712707177, 49.210679168000112 ], [ -122.713119068999958, 49.210680192000083 ], [ -122.713115945999959, 49.211219903000071 ], [ -122.713939740999933, 49.211221946000087 ], [ -122.713941298999941, 49.210952091000124 ], [ -122.714618023999918, 49.210953765000056 ], [ -122.715128202999892, 49.211061213000029 ], [ -122.715587812999956, 49.211142164000151 ], [ -122.715587331000023, 49.211226016000111 ], [ -122.716070665999965, 49.211227204000124 ], [ -122.719640694999953, 49.211855890000074 ], [ -122.722494220999934, 49.212240500000121 ], [ -122.724596406999964, 49.212371498000095 ], [ -122.72617289899992, 49.212653501000077 ], [ -122.732465120999905, 49.214314101000056 ], [ -122.737147354999948, 49.215746040000063 ], [ -122.737134892999975, 49.21592338500006 ], [ -122.737156453999987, 49.215924038 ], [ -122.737123428999979, 49.216394017000063 ], [ -122.740132077999931, 49.216485061000114 ], [ -122.740121341999952, 49.216637992000059 ], [ -122.741104416999946, 49.216667722000068 ], [ -122.74450586899998, 49.217378211000067 ], [ -122.74450380899998, 49.217407592000093 ], [ -122.744641267999953, 49.217411744000096 ], [ -122.744580726000024, 49.21827525700013 ], [ -122.744666421999909, 49.218277845000088 ], [ -122.744660408999948, 49.218363605000015 ], [ -122.744546861999964, 49.219983085000102 ], [ -122.748333425999959, 49.220097385000045 ], [ -122.74833854799999, 49.220024237000118 ], [ -122.751323054999915, 49.220114232000121 ], [ -122.751762156999959, 49.220127465000139 ], [ -122.751812341999965, 49.219410119000074 ], [ -122.753422789999973, 49.219458640000077 ], [ -122.754461707999923, 49.220354190000116 ], [ -122.755716713999902, 49.221751306000073 ], [ -122.756648317999947, 49.222248402000112 ], [ -122.757044691999965, 49.222554604000045 ], [ -122.757081159, 49.222592866000127 ], [ -122.757040737999901, 49.223171536000024 ], [ -122.754939726999979, 49.22310830600005 ], [ -122.753717748999961, 49.223071513000043 ], [ -122.753615376999974, 49.224535515000078 ], [ -122.748135212999941, 49.224370336000028 ], [ -122.748182388999965, 49.223696827 ], [ -122.74773480099999, 49.223683323000103 ], [ -122.747726497999949, 49.223801859000062 ], [ -122.745261386, 49.223727456000084 ], [ -122.745208533999971, 49.224481319000077 ], [ -122.744870490999986, 49.224471112000053 ], [ -122.743815174, 49.224439239000056 ], [ -122.743783799999946, 49.224886552000044 ], [ -122.73830362799994, 49.22472087400007 ], [ -122.738367444999966, 49.223812545000051 ], [ -122.737998073999933, 49.22380136700005 ], [ -122.738019522999963, 49.223496084000068 ], [ -122.737992590999937, 49.223495269000125 ], [ -122.738167344999965, 49.221008007000108 ], [ -122.737968174999978, 49.221001980000032 ], [ -122.737963149999956, 49.221073505000071 ], [ -122.737454809999988, 49.221058119000112 ], [ -122.737451830999987, 49.221100517000067 ], [ -122.731972128999971, 49.220934515000124 ], [ -122.731973284999981, 49.220918083000072 ], [ -122.731340605999918, 49.220898898 ], [ -122.731378948, 49.220354292000117 ], [ -122.731190196999961, 49.220348569000059 ], [ -122.73117946399995, 49.222327562000032 ], [ -122.730767472999958, 49.222326603000084 ], [ -122.730764540999957, 49.222866313000083 ], [ -122.726128247999966, 49.222855415000048 ], [ -122.726053625999924, 49.223913585000084 ], [ -122.724849929999948, 49.223877019000035 ], [ -122.724827030999947, 49.224201614000073 ], [ -122.725401131999917, 49.22420298 ], [ -122.725386177999894, 49.226901528000077 ], [ -122.724974149999966, 49.226900547000106 ], [ -122.72497265199999, 49.227170402000063 ], [ -122.724560621999927, 49.227169420000031 ], [ -122.724556120999949, 49.22797898400006 ], [ -122.722495936999948, 49.227974054000114 ], [ -122.722503491999959, 49.226624781000083 ], [ -122.722091465999938, 49.226623790000041 ], [ -122.722094492999929, 49.226084080000085 ], [ -122.721682470999909, 49.226083088000038 ], [ -122.721683986999892, 49.225813234000022 ], [ -122.721271967999925, 49.225812241000035 ], [ -122.721275004999939, 49.225272531000023 ], [ -122.720490461999972, 49.225270635000058 ], [ -122.720344967999949, 49.227330088000038 ], [ -122.72042797499999, 49.227332613000044 ], [ -122.720173883999934, 49.230928907000056 ], [ -122.719442693999937, 49.230906661000098 ], [ -122.71935112099996, 49.232202323000124 ], [ -122.713870173999936, 49.232035406000072 ], [ -122.713879976999934, 49.231896932 ], [ -122.711383883999986, 49.23182082300012 ], [ -122.711352451999971, 49.232264478000083 ], [ -122.712169934999949, 49.232266518000117 ], [ -122.712168365999929, 49.232536372000013 ], [ -122.712580439999911, 49.232537398000012 ], [ -122.712577308999926, 49.233077106000067 ], [ -122.712989388999972, 49.233078130000123 ], [ -122.712976881999936, 49.235236963000048 ], [ -122.713801074999964, 49.235239007000096 ], [ -122.713799516999984, 49.235508862000074 ], [ -122.714211617000018, 49.235509882000045 ], [ -122.714210058999981, 49.235779736000062 ], [ -122.714622160999909, 49.235780755000093 ], [ -122.714619052, 49.236320463000048 ], [ -122.71503115799996, 49.236321481000061 ], [ -122.715029603999966, 49.236591335000057 ], [ -122.715853822999961, 49.236593365000019 ], [ -122.715850725999957, 49.237133074000013 ], [ -122.716262838999953, 49.237134085000029 ], [ -122.71626129399999, 49.237403940000029 ], [ -122.716673408999924, 49.237404952000048 ], [ -122.716671864999952, 49.237674805000069 ], [ -122.717083982999938, 49.237675816000049 ], [ -122.717082440999974, 49.23794566900002 ], [ -122.717906680999945, 49.237947685000023 ], [ -122.717905144, 49.238217538000114 ], [ -122.718729388999918, 49.238219548000046 ], [ -122.718727855999987, 49.238489402 ], [ -122.719139980999941, 49.238490406000061 ], [ -122.719138449999946, 49.23876025900006 ], [ -122.721199083999934, 49.238765251000125 ], [ -122.721194526999966, 49.239574813000083 ], [ -122.721606660999967, 49.239575807000058 ], [ -122.721605144999927, 49.239845660000057 ], [ -122.722429415999954, 49.23984764500009 ], [ -122.722427903999957, 49.240117498000181 ], [ -122.722840041, 49.240118487000082 ], [ -122.722838531000022, 49.240388342000116 ], [ -122.723250670999974, 49.240389330000042 ], [ -122.723249163999981, 49.240659184000073 ], [ -122.724073447999956, 49.240661156000023 ], [ -122.724071944999935, 49.240931010000082 ], [ -122.724896234, 49.240932975000057 ], [ -122.724894735999939, 49.241202829000088 ], [ -122.725306883999977, 49.241203811000048 ], [ -122.725305386999977, 49.241473664000111 ], [ -122.726129685000018, 49.24147562100007 ], [ -122.726128193999955, 49.241745475000094 ], [ -122.727819584999978, 49.24174947300012 ], [ -122.727822706999987, 49.241705175000043 ], [ -122.726680852999905, 49.241670521000088 ], [ -122.726934499999928, 49.238074270000055 ], [ -122.728465495999927, 49.238120731000038 ], [ -122.728491754999979, 49.237748207000131 ], [ -122.732822944999938, 49.237879527000104 ], [ -122.732849591000033, 49.237501012000067 ], [ -122.733774793999913, 49.237529041000066 ], [ -122.733810679999948, 49.237019133000075 ], [ -122.734562224999962, 49.237041896000036 ], [ -122.73460248, 49.236469751000094 ], [ -122.73484916799994, 49.236477222000126 ], [ -122.735030705999947, 49.23389665300008 ], [ -122.740511949000023, 49.234062496000043 ], [ -122.740508686999988, 49.234108940000084 ], [ -122.74130228300001, 49.234132929000097 ], [ -122.741384601999968, 49.232960406000089 ], [ -122.741422508, 49.232961551000102 ], [ -122.741472181999882, 49.232253980000038 ], [ -122.74120257, 49.232245831000093 ], [ -122.741334880999915, 49.230361189000092 ], [ -122.739906341999941, 49.230318001000022 ], [ -122.740158902999937, 49.226721657000056 ], [ -122.742777734999947, 49.22680081700009 ], [ -122.74289198, 49.225172520000058 ], [ -122.744871154999927, 49.225232302000023 ], [ -122.748372219999965, 49.225337966000097 ], [ -122.748224838999988, 49.227442044000043 ], [ -122.751765330999945, 49.227548781000031 ], [ -122.751730730999952, 49.228043259000117 ], [ -122.753721692999974, 49.228103229000084 ], [ -122.753717954999956, 49.228156687000094 ], [ -122.753953023999955, 49.228163765000019 ], [ -122.753958266999987, 49.228088796000122 ], [ -122.759438889999899, 49.228253678000087 ], [ -122.759187813999958, 49.231850059000116 ], [ -122.756009223999968, 49.231754467000044 ], [ -122.756003985999939, 49.231829436000069 ], [ -122.750522950999979, 49.231664380000062 ], [ -122.750523648999916, 49.231654420000076 ], [ -122.748117200999971, 49.231581864000084 ], [ -122.748042149, 49.232653142000089 ], [ -122.748262475, 49.232659787000109 ], [ -122.748240330999948, 49.232975873000029 ], [ -122.74936075699999, 49.233009659000075 ], [ -122.749133267999952, 49.236257732000098 ], [ -122.749108873999944, 49.23660599 ], [ -122.748198510999941, 49.236578539000107 ], [ -122.74803513699996, 49.236573612000079 ], [ -122.748030757999942, 49.23663611000007 ], [ -122.748004159999965, 49.237015706000058 ], [ -122.746489005999933, 49.237571391000145 ], [ -122.745263715999982, 49.238091295000117 ], [ -122.74154306899996, 49.239292707000068 ], [ -122.741202152999946, 49.239282405000026 ], [ -122.741193503999938, 49.239405574000067 ], [ -122.740664760999948, 49.239576289000098 ], [ -122.739879127999956, 49.239552540000027 ], [ -122.739858389999966, 49.239847755000021 ], [ -122.736609011999974, 49.240976702000076 ], [ -122.735685681999939, 49.241200303000049 ], [ -122.735038386999946, 49.241557802000031 ], [ -122.735038895999963, 49.241647514000078 ], [ -122.73503782399996, 49.241728702000103 ], [ -122.73506429299999, 49.241863988000077 ], [ -122.73437778099999, 49.242177349000052 ], [ -122.733956928999973, 49.242164604000052 ], [ -122.733956181999957, 49.242303482000132 ], [ -122.732561243999967, 49.242300261000054 ], [ -122.732502281, 49.243137671000085 ], [ -122.731358378000024, 49.243753900000037 ], [ -122.731453, 49.243979000000145 ], [ -122.731192803999974, 49.244202610000116 ], [ -122.730683179999957, 49.244102899000097 ], [ -122.73025809399995, 49.244174092000044 ], [ -122.729744221, 49.244945998000084 ], [ -122.729878099999951, 49.245548398000054 ], [ -122.729631809999916, 49.245566991000068 ], [ -122.729331108999972, 49.245475789000118 ], [ -122.729095385000022, 49.245574107000074 ], [ -122.729642906999928, 49.245962904000088 ], [ -122.729272503999979, 49.245988495000056 ], [ -122.728940697999988, 49.246249195000082 ], [ -122.728596709999977, 49.246293310000048 ], [ -122.728416997999915, 49.246445690000051 ], [ -122.728484191999939, 49.247012504000033 ], [ -122.728359198999925, 49.247119309000034 ], [ -122.728308076999951, 49.247147772000062 ], [ -122.727747130999944, 49.24714645100007 ], [ -122.727746852999957, 49.247196955000057 ], [ -122.727745990999935, 49.247353571000083 ], [ -122.727745400999979, 49.247461032000061 ], [ -122.727297504999953, 49.247710386000051 ], [ -122.726748297999976, 49.247852792000103 ], [ -122.726598882999951, 49.24795331100006 ], [ -122.726506068999967, 49.247953091000092 ], [ -122.726505720999967, 49.248015985000094 ], [ -122.725799431999931, 49.248491131000065 ], [ -122.725678672999933, 49.248490844000059 ], [ -122.725678218000013, 49.248572674000052 ], [ -122.72558810000001, 49.248633298000101 ], [ -122.725042250999948, 49.248759188000058 ], [ -122.724852755999933, 49.24875873700006 ], [ -122.72485251099999, 49.248802948000069 ], [ -122.724007207999975, 49.248997893000123 ], [ -122.722876417999942, 49.249534799000074 ], [ -122.721170319999956, 49.250115899000079 ], [ -122.719665187999965, 49.251209709000136 ], [ -122.718749775999967, 49.251982329000043 ], [ -122.718238968999927, 49.251981083000068 ], [ -122.718240131999934, 49.251777011000087 ], [ -122.719792302999963, 49.250904148000124 ], [ -122.720990839999928, 49.249743371000122 ], [ -122.722086422999936, 49.248675555000091 ], [ -122.72246433399999, 49.248372682000124 ], [ -122.724447453999986, 49.247859820000023 ], [ -122.725162835999967, 49.247525605000106 ], [ -122.7261662, 49.246696993000072 ], [ -122.72578778799999, 49.246532659000046 ], [ -122.725361354999947, 49.246352023000092 ], [ -122.724776812999934, 49.246104445000086 ], [ -122.72431935, 49.24591068100009 ], [ -122.723653731999946, 49.245549923000041 ] ], [ [ -122.712314576, 49.227139572000048 ], [ -122.712321583999952, 49.227040622000047 ], [ -122.71220031199999, 49.227036924000117 ], [ -122.712199716999947, 49.22713928600011 ], [ -122.712314576, 49.227139572000048 ] ], [ [ -122.705208058999958, 49.224962788000077 ], [ -122.705977067999982, 49.224964749000023 ], [ -122.705208186000021, 49.224941250000036 ], [ -122.705208058999958, 49.224962788000077 ] ], [ [ -122.707002294999967, 49.224967353000068 ], [ -122.707011917999978, 49.22483168800008 ], [ -122.70690176799998, 49.224828324000057 ], [ -122.706891925999969, 49.224967074000048 ], [ -122.707002294999967, 49.224967353000068 ] ], [ [ -122.70852589799992, 49.221273842000038 ], [ -122.708529545999951, 49.220653481000127 ], [ -122.708117570999931, 49.220652441000077 ], [ -122.708119158000031, 49.220382586000014 ], [ -122.70770718499999, 49.220381544000112 ], [ -122.707708776999965, 49.220111690000046 ], [ -122.707296804999942, 49.220110646000123 ], [ -122.707298398999981, 49.219840791000081 ], [ -122.705650523999978, 49.219836604000093 ], [ -122.705648921, 49.220106458000046 ], [ -122.705236950999932, 49.220105408000109 ], [ -122.70523534499992, 49.220375263000015 ], [ -122.704823371999922, 49.220374211 ], [ -122.704821763999973, 49.220644066000062 ], [ -122.703173861999957, 49.220639843000065 ], [ -122.703185175, 49.218750861000046 ], [ -122.704009093999971, 49.218752976000076 ], [ -122.704010705999963, 49.218483121000055 ], [ -122.704834620999947, 49.218485229000095 ], [ -122.70483622899998, 49.218215374000067 ], [ -122.705248184999959, 49.218216426 ], [ -122.70525460199994, 49.217137008000073 ], [ -122.705235267999967, 49.217136958000054 ], [ -122.705235101999975, 49.217139308000057 ], [ -122.705151210999972, 49.217136744000122 ], [ -122.704842655999954, 49.217135956000035 ], [ -122.704842706999969, 49.217127312000081 ], [ -122.703911878999975, 49.217098849000081 ], [ -122.703858787999948, 49.21784674000007 ], [ -122.702439227999946, 49.217803316000122 ], [ -122.702318916999957, 49.219497272000112 ], [ -122.701532960999941, 49.21947322200009 ], [ -122.701523863999981, 49.220983773000086 ], [ -122.704755268000028, 49.221082613000121 ], [ -122.704749884999956, 49.221158468000098 ], [ -122.70852589799992, 49.221273842000038 ] ], [ [ -122.710205849000019, 49.215800240000057 ], [ -122.710193225999959, 49.217959080000078 ], [ -122.7118410409999, 49.217963202000156 ], [ -122.711842702999974, 49.217677503000068 ], [ -122.711802883999965, 49.217676288000042 ], [ -122.712011852999964, 49.214725323000032 ], [ -122.711447937999978, 49.214723915000093 ], [ -122.711449508999948, 49.214454060000051 ], [ -122.709801812999928, 49.214449933000033 ], [ -122.70979391399996, 49.215799207000074 ], [ -122.710205849000019, 49.215800240000057 ] ], [ [ -122.707327080999917, 49.214983406000044 ], [ -122.707333452999976, 49.213903987000087 ], [ -122.706921533999903, 49.213902943000065 ], [ -122.706923128999961, 49.213633087000112 ], [ -122.705484140999943, 49.213629428000075 ], [ -122.70536928199999, 49.215248288000041 ], [ -122.706089694999932, 49.215250123000011 ], [ -122.70609129499995, 49.214980269000073 ], [ -122.707327080999917, 49.214983406000044 ] ], [ [ -122.718435364999948, 49.217439747000078 ], [ -122.718432298999986, 49.217979456000087 ], [ -122.71802034599996, 49.217978453000036 ], [ -122.718017274999937, 49.218518162000073 ], [ -122.718429235000016, 49.21851916700011 ], [ -122.718426167999965, 49.219058877000116 ], [ -122.718838129999966, 49.219059880000025 ], [ -122.718833537999899, 49.219869444000025 ], [ -122.71759762899994, 49.219866430000074 ], [ -122.717599167999978, 49.219596575000054 ], [ -122.717187199999969, 49.219595567000063 ], [ -122.717185661000016, 49.219865422000069 ], [ -122.716773690999972, 49.219864412000106 ], [ -122.716770605999969, 49.22040412200009 ], [ -122.717182580999946, 49.220405131000057 ], [ -122.71718104099989, 49.220674987000088 ], [ -122.71882894599996, 49.220679009000072 ], [ -122.718827100999988, 49.221004073000096 ], [ -122.719054260999911, 49.221010987000035 ], [ -122.719062986, 49.220887530000041 ], [ -122.72037068899999, 49.220927328000073 ], [ -122.720481520999911, 49.219358284000066 ], [ -122.720360797999916, 49.219354611000028 ], [ -122.720495061999955, 49.21745374000011 ], [ -122.720499676999964, 49.216635184000033 ], [ -122.720087735000021, 49.216634186000064 ], [ -122.720086209999977, 49.216904041000134 ], [ -122.719262320999988, 49.216902042000065 ], [ -122.719260792999989, 49.217171897000092 ], [ -122.718848845, 49.217170895000088 ], [ -122.71884731499992, 49.217440750000051 ], [ -122.718435364999948, 49.217439747000078 ] ], [ [ -122.72614823, 49.219101644000112 ], [ -122.726063037999921, 49.220309822000026 ], [ -122.726307223999925, 49.220317239000067 ], [ -122.726280453999934, 49.220696907000011 ], [ -122.727480453999988, 49.22069974300009 ], [ -122.727484904999969, 49.219890179000089 ], [ -122.727896874999956, 49.219891150000095 ], [ -122.727899836999953, 49.21935143900005 ], [ -122.727487871000022, 49.219350468000101 ], [ -122.727489016000021, 49.219142361000074 ], [ -122.72614823, 49.219101644000112 ] ], [ [ -122.704864161999978, 49.213523832000121 ], [ -122.70486515, 49.213357988000077 ], [ -122.703629403999912, 49.213354824000085 ], [ -122.703628619999975, 49.21348604600005 ], [ -122.704864161999978, 49.213523832000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38928750", "BldgCostT": "22425000", "sL_LossRatio": "0.677638104024911", "sL_AssetLoss": "433550", "sL_BldgLoss": "293790", "sL_StrLoss": "136870", "sL_NStrLoss": "156920", "sL_ContLoss": "139760", "geom_point": "0101000020E6100000CF6D3E858EAC5EC0417A690EB9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.689309705999932, 49.273159487000058 ], [ -122.689301708999892, 49.27132759300013 ], [ -122.689291174999966, 49.26948228600007 ], [ -122.689291107999935, 49.269473096000048 ], [ -122.68928409699997, 49.267684512000102 ], [ -122.689270197999946, 49.26502050700001 ], [ -122.689269770999928, 49.264939540000086 ], [ -122.6892693, 49.264851294000159 ], [ -122.689272244999955, 49.264807843000064 ], [ -122.689858091999966, 49.264815109000089 ], [ -122.691361750999988, 49.265045842000063 ], [ -122.691357825999916, 49.265675101000085 ], [ -122.691137006999966, 49.265674511000071 ], [ -122.691021847999963, 49.267288609000076 ], [ -122.690110825999952, 49.267260667000123 ], [ -122.690110619999956, 49.267293761000126 ], [ -122.691601330999916, 49.267339479000022 ], [ -122.691606686999961, 49.267264397000062 ], [ -122.692997128999963, 49.267307021000057 ], [ -122.693002202999963, 49.266489051000065 ], [ -122.692589847999955, 49.266487954000119 ], [ -122.692591522999976, 49.266218103000057 ], [ -122.692179169000013, 49.266217004000083 ], [ -122.692184204999961, 49.265407448000126 ], [ -122.694658290999939, 49.265414013000054 ], [ -122.694646295999974, 49.267357553000089 ], [ -122.695723388999966, 49.267390543 ], [ -122.695725514999964, 49.26736069800009 ], [ -122.696463033999962, 49.267383281000072 ], [ -122.696545283999981, 49.26622855500009 ], [ -122.695890358999932, 49.266226832000015 ], [ -122.695894852999984, 49.265495315000081 ], [ -122.698828801999966, 49.265765089000055 ], [ -122.701523105999968, 49.265782205000065 ], [ -122.703970322999965, 49.265535804000159 ], [ -122.707202195000022, 49.265075815000046 ], [ -122.708509783999887, 49.265007397000048 ], [ -122.708382894999929, 49.26567251500007 ], [ -122.70760439899999, 49.267038287000041 ], [ -122.706713934999925, 49.267820087000111 ], [ -122.706602322999927, 49.267816680000124 ], [ -122.706601719, 49.267918607000034 ], [ -122.705295910999965, 49.269064996000118 ], [ -122.703540477999937, 49.270806793000062 ], [ -122.702964924999918, 49.271437138000074 ], [ -122.702869227999912, 49.271434214000081 ], [ -122.702868575999943, 49.271542656000101 ], [ -122.702532142999985, 49.271911107000044 ], [ -122.701629151999967, 49.271908778000032 ], [ -122.701632241999945, 49.27139641200003 ], [ -122.701570482999927, 49.271394525000055 ], [ -122.70154023, 49.271819842000099 ], [ -122.70141367299999, 49.271815973000052 ], [ -122.701387920999949, 49.272178012000118 ], [ -122.702039928999923, 49.272179695000027 ], [ -122.702038288999944, 49.272451944000089 ], [ -122.700948620999952, 49.273645227000081 ], [ -122.700793862999959, 49.273640495000031 ], [ -122.700792924999988, 49.273795609000061 ], [ -122.700380505999973, 49.273794541000022 ], [ -122.700379160999958, 49.274016737000068 ], [ -122.700279903999956, 49.27406413700011 ], [ -122.700146704999966, 49.274063791000039 ], [ -122.700141993999921, 49.274129993000024 ], [ -122.699946188999903, 49.274223496000054 ], [ -122.698247298999917, 49.275523790000101 ], [ -122.696721336999957, 49.276483556000116 ], [ -122.696652198999971, 49.276483375000062 ], [ -122.696651930999977, 49.276527207000086 ], [ -122.695541290999969, 49.277225711000071 ], [ -122.695476825999918, 49.277289850000059 ], [ -122.695409894999955, 49.277289674000052 ], [ -122.695409479999938, 49.277356856000068 ], [ -122.69414418199996, 49.278615696 ], [ -122.691051808999973, 49.28069508500004 ], [ -122.689651841999989, 49.281445757000014 ], [ -122.689492305999977, 49.281162820000084 ], [ -122.689487718999942, 49.281144315000041 ], [ -122.689348698999964, 49.280737806000104 ], [ -122.689336504999972, 49.278501283000018 ], [ -122.689309705999932, 49.273159487000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211851749", "BldgCostT": "142499999", "sL_LossRatio": "0.770153883142216", "sL_AssetLoss": "2603729", "sL_BldgLoss": "2005272", "sL_StrLoss": "910512", "sL_NStrLoss": "1094760", "sL_ContLoss": "598457", "geom_point": "0101000020E610000040CFB06282AC5EC0CF3A46261E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69980600099997, 49.220862112000077 ], [ -122.699801141999941, 49.220023105000053 ], [ -122.697398111999945, 49.220030602000108 ], [ -122.697399782999966, 49.219099886000059 ], [ -122.697313340999983, 49.219041364000105 ], [ -122.694170551999918, 49.219027890000078 ], [ -122.694161527999981, 49.218151829000092 ], [ -122.694994969, 49.21814944800014 ], [ -122.694992912999965, 49.217272696000123 ], [ -122.694947300999928, 49.217141508000047 ], [ -122.694881394, 49.216909688000023 ], [ -122.694887511999951, 49.216342269000123 ], [ -122.69175487199999, 49.216342577000084 ], [ -122.691758777999937, 49.217135616000107 ], [ -122.691447130999947, 49.217135965000068 ], [ -122.690767507999936, 49.217137606000101 ], [ -122.690156529999982, 49.217138669000057 ], [ -122.689593472999945, 49.217142118000098 ], [ -122.689596350000031, 49.215727539000063 ], [ -122.689597418999981, 49.2152058530001 ], [ -122.689597657999926, 49.215079924000108 ], [ -122.689598051999951, 49.214900039000042 ], [ -122.68959921099993, 49.214327414000081 ], [ -122.689697645, 49.213466352000104 ], [ -122.68970182599999, 49.2132452110001 ], [ -122.689708990999975, 49.212864793000051 ], [ -122.68971377099993, 49.208099278000077 ], [ -122.68971643299993, 49.204210413000041 ], [ -122.68964639099994, 49.203411763000098 ], [ -122.689648841999897, 49.203403335000054 ], [ -122.689661251999908, 49.203361747000045 ], [ -122.69185821799995, 49.204183694000044 ], [ -122.69297430899995, 49.204496665000107 ], [ -122.692973102999972, 49.204691496000045 ], [ -122.693675781999957, 49.204693362000029 ], [ -122.694207719999923, 49.204842517000081 ], [ -122.69420363799999, 49.205504339000129 ], [ -122.696262884999925, 49.205509773000053 ], [ -122.696257926999976, 49.206319338000085 ], [ -122.697493494999918, 49.206322581000094 ], [ -122.697490202999973, 49.206862290000061 ], [ -122.697902062999972, 49.206863368000029 ], [ -122.69790041899995, 49.207133223000071 ], [ -122.697984895999952, 49.207133445000039 ], [ -122.698068356999954, 49.205959553000049 ], [ -122.700559102999975, 49.206716004000107 ], [ -122.700962380999954, 49.206798699000039 ], [ -122.700860495999933, 49.206966750000099 ], [ -122.700679083999887, 49.207322821000048 ], [ -122.700675923999981, 49.207328765000057 ], [ -122.700606952000015, 49.207455551000066 ], [ -122.70054787199993, 49.207564074000089 ], [ -122.700555493999943, 49.20759088200009 ], [ -122.700728100999939, 49.208160594000113 ], [ -122.700710113999918, 49.208294196000097 ], [ -122.700710266, 49.208350056000064 ], [ -122.700708384999942, 49.209863794000071 ], [ -122.700715284999916, 49.212342053000071 ], [ -122.700723141999944, 49.215180986000078 ], [ -122.700723704999973, 49.215385781000066 ], [ -122.700737217999915, 49.219696709000068 ], [ -122.70074588199995, 49.222473105000056 ], [ -122.699238101999953, 49.222439493000081 ], [ -122.69924168599999, 49.221674696000015 ], [ -122.699803204999967, 49.221673893000059 ], [ -122.69980600099997, 49.220862112000077 ] ], [ [ -122.697018978999964, 49.216575982000052 ], [ -122.697019830999949, 49.216436398999988 ], [ -122.69700990299999, 49.216575958000078 ], [ -122.697018978999964, 49.216575982000052 ] ], [ [ -122.700186742999961, 49.212266505000123 ], [ -122.700225087999968, 49.211726885000104 ], [ -122.699931972999977, 49.211726124000052 ], [ -122.699940138000017, 49.210376850000067 ], [ -122.69952824799995, 49.210375780000071 ], [ -122.699529883999958, 49.210105924000075 ], [ -122.697058556999977, 49.210099470000017 ], [ -122.697060205999932, 49.209829615000032 ], [ -122.69335324, 49.209819833000068 ], [ -122.693354906999957, 49.209549978000062 ], [ -122.692984039999942, 49.20954899200008 ], [ -122.69293132, 49.210289326000066 ], [ -122.690879352999929, 49.210226332000062 ], [ -122.690878563999931, 49.210352955000047 ], [ -122.690466674000035, 49.210351852000045 ], [ -122.69045656499999, 49.211970980000075 ], [ -122.690868468999938, 49.21197208300007 ], [ -122.690861737999953, 49.213051501000095 ], [ -122.690449826999966, 49.213050398000092 ], [ -122.690444770999989, 49.213859961000018 ], [ -122.690032851999916, 49.213858858000044 ], [ -122.690027790999935, 49.214668420000116 ], [ -122.69085164099999, 49.214670629000125 ], [ -122.690849957999916, 49.214940483000085 ], [ -122.692640332999957, 49.214945261000032 ], [ -122.692725834999962, 49.214889362000065 ], [ -122.693733712, 49.214906151000029 ], [ -122.693735118999925, 49.214678309000156 ], [ -122.69620667399991, 49.214684836000082 ], [ -122.696201711999962, 49.215494400000075 ], [ -122.695789778999966, 49.215493316000057 ], [ -122.695788588999932, 49.215687251000084 ], [ -122.696436741999946, 49.215707120000026 ], [ -122.696417548999975, 49.215976885000046 ], [ -122.69702252799999, 49.215995428000092 ], [ -122.697030523999956, 49.214687 ], [ -122.698592042999962, 49.214691085000048 ], [ -122.698635294999931, 49.2140827160001 ], [ -122.69991747, 49.21412198600013 ], [ -122.69992870599998, 49.212265833000039 ], [ -122.700186742999961, 49.212266505000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121561601", "BldgCostT": "73588563", "sL_LossRatio": "0.642536964275832", "sL_AssetLoss": "1987730", "sL_BldgLoss": "1277190", "sL_StrLoss": "594510", "sL_NStrLoss": "682680", "sL_ContLoss": "710540", "geom_point": "0101000020E61000001AE1C3784FAC5EC08384311AE09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69175487199999, 49.216342577000084 ], [ -122.694887511999951, 49.216342269000123 ], [ -122.694881394, 49.216909688000023 ], [ -122.694947300999928, 49.217141508000047 ], [ -122.694992912999965, 49.217272696000123 ], [ -122.694994969, 49.21814944800014 ], [ -122.694161527999981, 49.218151829000092 ], [ -122.694170551999918, 49.219027890000078 ], [ -122.693714859999929, 49.21902654900002 ], [ -122.69358716, 49.219027121000053 ], [ -122.693344183999969, 49.219026888000016 ], [ -122.692129123999976, 49.219028359000092 ], [ -122.690721699999983, 49.219031997000037 ], [ -122.689630158999961, 49.219034512000043 ], [ -122.689545021999933, 49.219034611000055 ], [ -122.68954828499993, 49.218147112000018 ], [ -122.68955088, 49.217450752000076 ], [ -122.689591782999926, 49.217358307000026 ], [ -122.689593472999945, 49.217142118000098 ], [ -122.690156529999982, 49.217138669000057 ], [ -122.690767507999936, 49.217137606000101 ], [ -122.691447130999947, 49.217135965000068 ], [ -122.691758777999937, 49.217135616000107 ], [ -122.69175487199999, 49.216342577000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "379693145", "BldgCostT": "248691524", "sL_LossRatio": "0.665147627189643", "sL_AssetLoss": "15182840", "sL_BldgLoss": "10098830", "sL_StrLoss": "4233620", "sL_NStrLoss": "5865210", "sL_ContLoss": "5084010", "geom_point": "0101000020E6100000BB2307B2BFAB5EC04238DA2FA79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.687149003999963, 49.216250685000084 ], [ -122.687172004999951, 49.21471599500007 ], [ -122.68666192399999, 49.214709306000096 ], [ -122.686663804999981, 49.213720009000085 ], [ -122.686624114999944, 49.213680989000068 ], [ -122.686576893, 49.213629892000036 ], [ -122.685850597999902, 49.213516598000098 ], [ -122.685704126999937, 49.213512105000042 ], [ -122.685616923999959, 49.213559900000071 ], [ -122.685579401999973, 49.213623601000066 ], [ -122.685556696999924, 49.214749193000038 ], [ -122.684996707999957, 49.214767985000066 ], [ -122.683826289999914, 49.214760889000061 ], [ -122.683825405999983, 49.214389598000025 ], [ -122.680158688999967, 49.214411897000033 ], [ -122.678256689999913, 49.21442259800007 ], [ -122.678251998999912, 49.21395120800004 ], [ -122.678247679999956, 49.21332154800011 ], [ -122.678246007999945, 49.213076092000094 ], [ -122.678241795999909, 49.21257769400011 ], [ -122.678283681999957, 49.211901485000098 ], [ -122.678312679, 49.211432895000044 ], [ -122.678309202999927, 49.211117780000031 ], [ -122.678308397999942, 49.211045831000092 ], [ -122.678304759999918, 49.210718977000063 ], [ -122.678310319999937, 49.210353332000061 ], [ -122.678335652, 49.208368172000064 ], [ -122.678337885999937, 49.208167831000054 ], [ -122.678351870999933, 49.206913463000078 ], [ -122.678333494999961, 49.20614214800004 ], [ -122.67832961, 49.205977476000058 ], [ -122.678321163999939, 49.205583138000065 ], [ -122.678315081999926, 49.205297634000026 ], [ -122.678291311999914, 49.204631904000124 ], [ -122.678254439999961, 49.203228703000065 ], [ -122.678241745000022, 49.202792196000104 ], [ -122.67824011499999, 49.202028049000042 ], [ -122.678259722999968, 49.200314796000065 ], [ -122.678069668999939, 49.200288090000079 ], [ -122.678114077999979, 49.200210777000088 ], [ -122.679129994999983, 49.200371112000042 ], [ -122.681877076999953, 49.200964800000044 ], [ -122.681875866999988, 49.201153291000075 ], [ -122.682287681, 49.201154424000016 ], [ -122.682285952999962, 49.201424279000143 ], [ -122.683933212999975, 49.20142879900002 ], [ -122.683931492999989, 49.201698653000079 ], [ -122.684755127999949, 49.201700904000099 ], [ -122.684753411999935, 49.201970759000062 ], [ -122.685577050999953, 49.201973005000028 ], [ -122.685575340999918, 49.202242860000055 ], [ -122.685987162999979, 49.202243980000098 ], [ -122.685983745, 49.202783690000047 ], [ -122.686589847, 49.202785336000098 ], [ -122.686629646999961, 49.202227413000109 ], [ -122.689661251999908, 49.203361747000045 ], [ -122.689648841999897, 49.203403335000054 ], [ -122.68964639099994, 49.203411763000098 ], [ -122.68971643299993, 49.204210413000041 ], [ -122.68971377099993, 49.208099278000077 ], [ -122.689708990999975, 49.212864793000051 ], [ -122.68970182599999, 49.2132452110001 ], [ -122.689697645, 49.213466352000104 ], [ -122.68959921099993, 49.214327414000081 ], [ -122.689598051999951, 49.214900039000042 ], [ -122.689597657999926, 49.215079924000108 ], [ -122.689597418999981, 49.2152058530001 ], [ -122.689596350000031, 49.215727539000063 ], [ -122.689593472999945, 49.217142118000098 ], [ -122.68715787, 49.217165477000094 ], [ -122.687149003999963, 49.216250685000084 ] ], [ [ -122.689220857999914, 49.211967662000056 ], [ -122.689232088999972, 49.210175733000057 ], [ -122.687453052999928, 49.210121060000041 ], [ -122.68759368099991, 49.208149472000073 ], [ -122.687615514999933, 49.207843357000051 ], [ -122.68612184599999, 49.207797431000088 ], [ -122.686378446999939, 49.204201091000073 ], [ -122.68648860499998, 49.204204479000076 ], [ -122.686512854999961, 49.203864565000089 ], [ -122.684329567999939, 49.203858618000027 ], [ -122.68432785099999, 49.204128473000033 ], [ -122.684739687999937, 49.204129598000051 ], [ -122.68472596299999, 49.206288436000115 ], [ -122.684314107999938, 49.206287311000104 ], [ -122.68431239099999, 49.206557166000024 ], [ -122.684724248999885, 49.206558291000142 ], [ -122.684720816999956, 49.207098 ], [ -122.68513268, 49.207099123000056 ], [ -122.685130964999985, 49.207368978000019 ], [ -122.685954693999946, 49.207371221000074 ], [ -122.685949565999977, 49.208180785000081 ], [ -122.684713953999932, 49.208177418 ], [ -122.684713697999968, 49.208217591000086 ], [ -122.684712236999985, 49.208447273000033 ], [ -122.684300363999967, 49.208446149000046 ], [ -122.68429177299997, 49.209795421000067 ], [ -122.683468003999963, 49.2097931670001 ], [ -122.683464557999955, 49.210332876000045 ], [ -122.683876446999975, 49.210334004000046 ], [ -122.683867830999958, 49.21168524600008 ], [ -122.686859453999929, 49.211777265000038 ], [ -122.686827075999972, 49.212231055000046 ], [ -122.688807260999951, 49.212236407000063 ], [ -122.688808953999967, 49.211966553000117 ], [ -122.689220857999914, 49.211967662000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50148250", "BldgCostT": "34585000", "sL_LossRatio": "0.753191234582685", "sL_AssetLoss": "835100", "sL_BldgLoss": "628990", "sL_StrLoss": "268170", "sL_NStrLoss": "360820", "sL_ContLoss": "206110", "geom_point": "0101000020E6100000A8224F71E0AB5EC08C7F029C9C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.685556696999924, 49.214749193000038 ], [ -122.685579401999973, 49.213623601000066 ], [ -122.685616923999959, 49.213559900000071 ], [ -122.685704126999937, 49.213512105000042 ], [ -122.685850597999902, 49.213516598000098 ], [ -122.686576893, 49.213629892000036 ], [ -122.686624114999944, 49.213680989000068 ], [ -122.686663804999981, 49.213720009000085 ], [ -122.68666192399999, 49.214709306000096 ], [ -122.687172004999951, 49.21471599500007 ], [ -122.687149003999963, 49.216250685000084 ], [ -122.68715787, 49.217165477000094 ], [ -122.683793182999949, 49.217185406000084 ], [ -122.683828493999954, 49.215249314000069 ], [ -122.683826289999914, 49.214760889000061 ], [ -122.684996707999957, 49.214767985000066 ], [ -122.685556696999924, 49.214749193000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41796333", "BldgCostT": "28353333", "sL_LossRatio": "0.741137605496646", "sL_AssetLoss": "591488", "sL_BldgLoss": "438374", "sL_StrLoss": "196434", "sL_NStrLoss": "241940", "sL_ContLoss": "153114", "geom_point": "0101000020E6100000F9D666E71DAB5EC029A5F323F6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669901536999987, 49.205893433000028 ], [ -122.669902776999933, 49.20570730499999 ], [ -122.669490926999956, 49.205706129000113 ], [ -122.669492724999941, 49.205436273000053 ], [ -122.6690894799999, 49.205435119000057 ], [ -122.669210039999911, 49.204086167000092 ], [ -122.669501718999967, 49.204087003000062 ], [ -122.669503311999989, 49.203847894000049 ], [ -122.669232084000015, 49.203839510000094 ], [ -122.669462945999953, 49.201256122000068 ], [ -122.66951218699991, 49.200705194000101 ], [ -122.669544490999968, 49.200704398000077 ], [ -122.669545651999954, 49.200702255000081 ], [ -122.6696429199999, 49.200523498000074 ], [ -122.669553793999924, 49.200122587000102 ], [ -122.669551817999945, 49.200113678000086 ], [ -122.669469556999914, 49.199743602000098 ], [ -122.669469119999974, 49.199741643000046 ], [ -122.669492447999957, 49.19973754200003 ], [ -122.670485710999955, 49.199563597000058 ], [ -122.672050694999911, 49.199676093000065 ], [ -122.672623614999964, 49.199806418000065 ], [ -122.672695681999983, 49.199822796000063 ], [ -122.673076103999946, 49.199864324000032 ], [ -122.6743006949999, 49.199998011000055 ], [ -122.676316692999976, 49.200020687000141 ], [ -122.677442695999986, 49.200104813000031 ], [ -122.678114077999979, 49.200210777000088 ], [ -122.678069668999939, 49.200288090000079 ], [ -122.678259722999968, 49.200314796000065 ], [ -122.67824011499999, 49.202028049000042 ], [ -122.678241745000022, 49.202792196000104 ], [ -122.678254439999961, 49.203228703000065 ], [ -122.678291311999914, 49.204631904000124 ], [ -122.678315081999926, 49.205297634000026 ], [ -122.678321163999939, 49.205583138000065 ], [ -122.671752848999972, 49.205785857000144 ], [ -122.671718542999926, 49.205787861000019 ], [ -122.669901536999987, 49.205893433000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233575583", "BldgCostT": "156428333", "sL_LossRatio": "0.725628008519239", "sL_AssetLoss": "3223762", "sL_BldgLoss": "2339252", "sL_StrLoss": "1071862", "sL_NStrLoss": "1267390", "sL_ContLoss": "884510", "geom_point": "0101000020E6100000EC542BD992AF5EC0F4B91CA74F974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734380806, 49.191455910000109 ], [ -122.734396544999925, 49.190344672000052 ], [ -122.734399043999957, 49.190169096000055 ], [ -122.73439909299999, 49.190166898000136 ], [ -122.734264895999956, 49.189994101000075 ], [ -122.734091888999941, 49.189738453000061 ], [ -122.733997906999946, 49.189525802000041 ], [ -122.733938565999935, 49.18928559799999 ], [ -122.733936349999937, 49.18905907400007 ], [ -122.733964989999933, 49.188754773000063 ], [ -122.734137307999944, 49.187885659000067 ], [ -122.734137589999989, 49.187876696000103 ], [ -122.734162631999979, 49.187113394000043 ], [ -122.734295946999907, 49.185514775000037 ], [ -122.734371057999908, 49.184788754000131 ], [ -122.734440943999957, 49.184045445000031 ], [ -122.734575717999959, 49.183016291000094 ], [ -122.734711735999952, 49.182163072000073 ], [ -122.73474397499993, 49.181946267000129 ], [ -122.734755559999954, 49.181859921000054 ], [ -122.734767542, 49.181724522000117 ], [ -122.734783265999951, 49.181474623000035 ], [ -122.734783902999965, 49.181359511000089 ], [ -122.7347823059999, 49.181224157000059 ], [ -122.734769121999975, 49.181010848000071 ], [ -122.734742446999988, 49.180782758000134 ], [ -122.734683113999921, 49.180355561000084 ], [ -122.734629367999958, 49.180015836000081 ], [ -122.734592881999916, 49.179740771000048 ], [ -122.734561622999976, 49.179468345000096 ], [ -122.734546545999933, 49.179322511000088 ], [ -122.734541827999948, 49.179251393000065 ], [ -122.734538654999952, 49.179201542000072 ], [ -122.73451428199995, 49.178928305000056 ], [ -122.734504148999932, 49.178638987000127 ], [ -122.734507757999907, 49.178563450000141 ], [ -122.734581324999965, 49.177026999000077 ], [ -122.734608201999961, 49.176449330000018 ], [ -122.734617221999954, 49.176319900000124 ], [ -122.734616699999918, 49.175899959000056 ], [ -122.734622407999936, 49.175720116000036 ], [ -122.734631033999946, 49.175450210000086 ], [ -122.734647652999939, 49.174928521000034 ], [ -122.734672617999948, 49.174145890000077 ], [ -122.734720202999981, 49.172653232000059 ], [ -122.734727529999986, 49.172422665000099 ], [ -122.734744850999974, 49.171879755000141 ], [ -122.734770061999882, 49.171088297000011 ], [ -122.734804678999964, 49.170001795000111 ], [ -122.737143308, 49.170034 ], [ -122.741300390999967, 49.170104010000045 ], [ -122.741402626999971, 49.170132300000056 ], [ -122.74146048099999, 49.170187190000036 ], [ -122.741502281999914, 49.170745401000033 ], [ -122.741496931999933, 49.171544361 ], [ -122.741488428999943, 49.172803677000104 ], [ -122.741484734999972, 49.173352398000105 ], [ -122.741478059999963, 49.17434185600009 ], [ -122.741468859999927, 49.17570914000008 ], [ -122.741460292999989, 49.176977710000116 ], [ -122.742093311999952, 49.176982245000033 ], [ -122.745409955999946, 49.177006043000127 ], [ -122.745877212999943, 49.177009409000085 ], [ -122.749996654999933, 49.177000109000083 ], [ -122.750833668999974, 49.176998198000071 ], [ -122.752370503999884, 49.17699467100006 ], [ -122.75337198699998, 49.176992375000054 ], [ -122.754112796999934, 49.176990670000087 ], [ -122.756590619999898, 49.176984909000062 ], [ -122.756573950999936, 49.178170868000088 ], [ -122.756508473999958, 49.182839246000128 ], [ -122.756486689999932, 49.184388398000117 ], [ -122.756474122999961, 49.186042307000072 ], [ -122.756607090999964, 49.186339190000098 ], [ -122.756862792999939, 49.18656669100006 ], [ -122.756826505999982, 49.186780326000118 ], [ -122.756799107999925, 49.186941494000031 ], [ -122.756802899999983, 49.187257835000032 ], [ -122.756439698999927, 49.187361307000067 ], [ -122.756276498, 49.187282503000048 ], [ -122.7540465299999, 49.186782129000058 ], [ -122.750162488999948, 49.185910455000041 ], [ -122.750047304999939, 49.185884601000069 ], [ -122.750041082999971, 49.18665736600007 ], [ -122.750030690999949, 49.187946590000081 ], [ -122.746619928999934, 49.187923250000097 ], [ -122.745476889999964, 49.1879153880001 ], [ -122.745442282999988, 49.189683088000052 ], [ -122.745131863999944, 49.191536927000122 ], [ -122.743097575999954, 49.191524286000075 ], [ -122.741016353999925, 49.191507453000078 ], [ -122.740373038999934, 49.191502236000076 ], [ -122.739541935999938, 49.191473630000111 ], [ -122.738469756999933, 49.191460777000053 ], [ -122.738057695999885, 49.19144829800009 ], [ -122.736875516999959, 49.191450286000112 ], [ -122.734758936, 49.191453797000122 ], [ -122.734380806, 49.191455910000109 ] ], [ [ -122.744288363999956, 49.183141334000027 ], [ -122.744388261999973, 49.181715431000079 ], [ -122.749863385999944, 49.181880812000045 ], [ -122.749858001999883, 49.181957795000045 ], [ -122.752117112999912, 49.182025952000032 ], [ -122.752061257000022, 49.182825107000092 ], [ -122.753079736999979, 49.182855819000096 ], [ -122.753168174000038, 49.181590079000088 ], [ -122.751478975999987, 49.181539137000065 ], [ -122.751637456999944, 49.179271913000022 ], [ -122.750159519, 49.179227320000095 ], [ -122.750149099999973, 49.179376328000032 ], [ -122.747978621999934, 49.179310802000053 ], [ -122.747977606999925, 49.179325281000089 ], [ -122.745408544999961, 49.179247666000045 ], [ -122.745404727999983, 49.179991862000108 ], [ -122.744169809999974, 49.179989133000063 ], [ -122.744173823999944, 49.179210341000065 ], [ -122.74250279099999, 49.179159804000037 ], [ -122.742513373999941, 49.179008807000123 ], [ -122.742036882999955, 49.178994392000071 ], [ -122.742038402999981, 49.178972741000052 ], [ -122.737581801, 49.178837814000119 ], [ -122.737577792999929, 49.178894902000081 ], [ -122.737589290999921, 49.178894927000051 ], [ -122.737587863999948, 49.179164784000108 ], [ -122.738411127999953, 49.179166652000028 ], [ -122.738402595999986, 49.180785795000126 ], [ -122.73831735, 49.180785602000114 ], [ -122.73757930299999, 49.180783928000032 ], [ -122.737576449999892, 49.181323641000105 ], [ -122.737988100999971, 49.181324575000119 ], [ -122.737985249999966, 49.181864291000068 ], [ -122.738396905999977, 49.181865224000056 ], [ -122.738396732999931, 49.181897899000091 ], [ -122.739485416999955, 49.181930867000048 ], [ -122.743488132999985, 49.182051981000065 ], [ -122.743429217, 49.182892678000051 ], [ -122.744053964999978, 49.182911568000115 ], [ -122.744038394999961, 49.183133776000084 ], [ -122.744288363999956, 49.183141334000027 ] ], [ [ -122.737732436999963, 49.174577483000107 ], [ -122.738248234999958, 49.174578653000019 ], [ -122.737906303999978, 49.174568294000053 ], [ -122.738004465999936, 49.173169643000065 ], [ -122.737831617, 49.173164406000097 ], [ -122.737732436999963, 49.174577483000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77296916", "BldgCostT": "50471666", "sL_LossRatio": "0.71216524526047", "sL_AssetLoss": "1472720", "sL_BldgLoss": "1048820", "sL_StrLoss": "422620", "sL_NStrLoss": "626200", "sL_ContLoss": "423900", "geom_point": "0101000020E6100000FBA0FC17A7AF5EC028C1557DB2954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.741402626999971, 49.170132300000056 ], [ -122.741300390999967, 49.170104010000045 ], [ -122.737143308, 49.170034 ], [ -122.734804678999964, 49.170001795000111 ], [ -122.733679001999974, 49.170000052000013 ], [ -122.732455911999978, 49.169998092000085 ], [ -122.729220518999981, 49.17001538500012 ], [ -122.727779560999977, 49.170023035000092 ], [ -122.726435269999939, 49.170030173000079 ], [ -122.723926895, 49.170043454000094 ], [ -122.723959860999969, 49.167649706000098 ], [ -122.725729002999984, 49.167703528000061 ], [ -122.725731304999968, 49.167670838000042 ], [ -122.725790806999925, 49.167672648000064 ], [ -122.725841540999923, 49.166952339000019 ], [ -122.72658272399994, 49.166974879000129 ], [ -122.72658421099996, 49.166953757000023 ], [ -122.731226158, 49.167094805000069 ], [ -122.731254736999986, 49.166688370000031 ], [ -122.73240207399999, 49.166723202000085 ], [ -122.732518129999931, 49.165072068000036 ], [ -122.732149077999921, 49.165060865000065 ], [ -122.732222670999946, 49.164013899000054 ], [ -122.728741921999983, 49.163908178000149 ], [ -122.7288307849999, 49.16264527300013 ], [ -122.734816189999933, 49.162576318000077 ], [ -122.740798677999962, 49.162671636000042 ], [ -122.740691563999931, 49.164199502000031 ], [ -122.738219760999982, 49.164124632000046 ], [ -122.738025073999935, 49.166899285000056 ], [ -122.740228523999932, 49.166966029000122 ], [ -122.740139367999987, 49.168237409000064 ], [ -122.743241230999914, 49.168331289000051 ], [ -122.743289194999988, 49.167646664000074 ], [ -122.74670406199999, 49.167749914000062 ], [ -122.74670445199996, 49.167744348000099 ], [ -122.749582516999979, 49.167831282000066 ], [ -122.749586468999922, 49.167047691000064 ], [ -122.748763404, 49.167045903000044 ], [ -122.748766133999979, 49.166506187999985 ], [ -122.748354607999971, 49.166505292000103 ], [ -122.748362811, 49.164886144000064 ], [ -122.747951297999975, 49.164885246000019 ], [ -122.747951607999937, 49.164824086000081 ], [ -122.747517658999968, 49.164810975000066 ], [ -122.747531407999958, 49.164614468000103 ], [ -122.746306619, 49.164611783000105 ], [ -122.746307996999974, 49.164341925000038 ], [ -122.745896487999985, 49.164341020000066 ], [ -122.745899249999937, 49.163801304000117 ], [ -122.745487743999945, 49.16380039800007 ], [ -122.745490510999929, 49.163260682000072 ], [ -122.745079009999969, 49.163259774000018 ], [ -122.745080394999945, 49.162989916000079 ], [ -122.74466889699994, 49.162989006000032 ], [ -122.744670032999949, 49.162767992000106 ], [ -122.745825080999978, 49.162886260000079 ], [ -122.748713683999966, 49.162930292000048 ], [ -122.750251899999981, 49.162795635000037 ], [ -122.756632801999956, 49.162838509000061 ], [ -122.75664118899995, 49.164012072000027 ], [ -122.75667183199999, 49.168294119000024 ], [ -122.756684023999966, 49.169997125000059 ], [ -122.756685037999915, 49.170138107000128 ], [ -122.756689179999967, 49.170717350000096 ], [ -122.756687434999904, 49.170848793000083 ], [ -122.756684899000035, 49.171037686000084 ], [ -122.756678910999952, 49.171487477000049 ], [ -122.756662197999944, 49.172746710000084 ], [ -122.756658811999955, 49.172998602000057 ], [ -122.756633949999966, 49.17486963200011 ], [ -122.756631986999935, 49.175015511000076 ], [ -122.756617505999941, 49.175706179000038 ], [ -122.756590619999898, 49.176984909000062 ], [ -122.754112796999934, 49.176990670000087 ], [ -122.75337198699998, 49.176992375000054 ], [ -122.752370503999884, 49.17699467100006 ], [ -122.750833668999974, 49.176998198000071 ], [ -122.749996654999933, 49.177000109000083 ], [ -122.745877212999943, 49.177009409000085 ], [ -122.745409955999946, 49.177006043000127 ], [ -122.742093311999952, 49.176982245000033 ], [ -122.741460292999989, 49.176977710000116 ], [ -122.741468859999927, 49.17570914000008 ], [ -122.741478059999963, 49.17434185600009 ], [ -122.741484734999972, 49.173352398000105 ], [ -122.741488428999943, 49.172803677000104 ], [ -122.741496931999933, 49.171544361 ], [ -122.741502281999914, 49.170745401000033 ], [ -122.74146048099999, 49.170187190000036 ], [ -122.741402626999971, 49.170132300000056 ] ], [ [ -122.753050334999941, 49.166397362000048 ], [ -122.753116438999911, 49.165450914000139 ], [ -122.751139556999973, 49.1653912700001 ], [ -122.75117239799998, 49.16492133700006 ], [ -122.749597431, 49.164873793000027 ], [ -122.749595993999975, 49.165158684000083 ], [ -122.750007509999932, 49.165159576000065 ], [ -122.750004792999974, 49.165699292000049 ], [ -122.750416313999921, 49.165700183000141 ], [ -122.750413602999942, 49.166239899000061 ], [ -122.750825127999946, 49.166240787000042 ], [ -122.75082377299999, 49.166510645000116 ], [ -122.751235299999934, 49.166511534000037 ], [ -122.751232597999916, 49.167051249000075 ], [ -122.75164413, 49.167052135000098 ], [ -122.751642779999926, 49.167321993000023 ], [ -122.752054313999963, 49.16732287800005 ], [ -122.752052965999923, 49.167592735000021 ], [ -122.752944597999942, 49.167594647000058 ], [ -122.753028273000027, 49.166396697000081 ], [ -122.753050334999941, 49.166397362000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.719250292854354", "sL_AssetLoss": "25610", "sL_BldgLoss": "18420", "sL_StrLoss": "7120", "sL_NStrLoss": "11300", "sL_ContLoss": "7190", "geom_point": "0101000020E61000008D363B1061AE5EC024B4066BF3944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.724028012999938, 49.162700364000024 ], [ -122.725535340999912, 49.162683097000077 ], [ -122.725437240999966, 49.164075871000108 ], [ -122.724946334999984, 49.164060937000038 ], [ -122.72488586499999, 49.164919283000103 ], [ -122.723997831999924, 49.164892261000055 ], [ -122.724028012999938, 49.162700364000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145871166", "BldgCostT": "93501666", "sL_LossRatio": "0.684844924596363", "sL_AssetLoss": "2723675", "sL_BldgLoss": "1865295", "sL_StrLoss": "822125", "sL_NStrLoss": "1043170", "sL_ContLoss": "858380", "geom_point": "0101000020E61000000B31F20DE0B05EC015BDF0D63B964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756633949999966, 49.17486963200011 ], [ -122.756658811999955, 49.172998602000057 ], [ -122.756662197999944, 49.172746710000084 ], [ -122.756678910999952, 49.171487477000049 ], [ -122.756684899000035, 49.171037686000084 ], [ -122.756687434999904, 49.170848793000083 ], [ -122.756689179999967, 49.170717350000096 ], [ -122.756685037999915, 49.170138107000128 ], [ -122.756684023999966, 49.169997125000059 ], [ -122.76027196599992, 49.170042074000051 ], [ -122.760270677999927, 49.170308695000081 ], [ -122.759841692999899, 49.170307804000082 ], [ -122.759763241999934, 49.171433218000061 ], [ -122.75885639399992, 49.171405923000066 ], [ -122.758714321999918, 49.173443316000032 ], [ -122.758841735999937, 49.173447151000076 ], [ -122.758816165, 49.173813857000042 ], [ -122.75943056, 49.173815139000077 ], [ -122.759429252999951, 49.174084996000019 ], [ -122.760252434999984, 49.174086708000068 ], [ -122.760251130999976, 49.174356566000043 ], [ -122.761074316999924, 49.174358272000113 ], [ -122.761075615999985, 49.174088414000074 ], [ -122.762721980999942, 49.174091809000103 ], [ -122.76272069099997, 49.174361667000049 ], [ -122.763543877999922, 49.17436335500004 ], [ -122.763543051999974, 49.174536556000078 ], [ -122.765453367999953, 49.174593960000017 ], [ -122.765544249999948, 49.173287991000066 ], [ -122.764372187999953, 49.173285604000114 ], [ -122.76437346799996, 49.173015747000122 ], [ -122.763961884999929, 49.17301490600007 ], [ -122.763962642999957, 49.172855643000034 ], [ -122.763965954999946, 49.17215911600011 ], [ -122.763968299999988, 49.171665616000091 ], [ -122.765614584, 49.171668970000049 ], [ -122.765615538999938, 49.171466921000061 ], [ -122.76393405799999, 49.171416394000104 ], [ -122.763972081999924, 49.170870231000073 ], [ -122.763974714999918, 49.170316326000048 ], [ -122.764010637999931, 49.170316399000022 ], [ -122.764026469999962, 49.170088980000109 ], [ -122.767748329999947, 49.170135350000088 ], [ -122.768798800999946, 49.170131719000068 ], [ -122.769127912999963, 49.170130564000054 ], [ -122.769992220999939, 49.17012753700002 ], [ -122.770568519999955, 49.170125501000079 ], [ -122.77062466699999, 49.170125246000033 ], [ -122.770606712999978, 49.173502794000044 ], [ -122.770584001999921, 49.175072605000025 ], [ -122.770503837999925, 49.175073496000074 ], [ -122.769941506999928, 49.175079743000012 ], [ -122.769639704, 49.17508309100009 ], [ -122.768778411999975, 49.174886008000051 ], [ -122.768734943999931, 49.174885328000073 ], [ -122.76773178499991, 49.174869892000032 ], [ -122.767726289999942, 49.175279412000123 ], [ -122.767721441999953, 49.175639139000111 ], [ -122.767717680999937, 49.175918950000096 ], [ -122.767703798999932, 49.176948690000053 ], [ -122.766516079999974, 49.176956094000033 ], [ -122.764443841999949, 49.176968969000015 ], [ -122.764375236999911, 49.176969401000051 ], [ -122.763552097999963, 49.176974504000093 ], [ -122.763003517999906, 49.176977889000142 ], [ -122.761947327999934, 49.17698442500005 ], [ -122.761082534999957, 49.176989764000076 ], [ -122.760245329999933, 49.176994941000032 ], [ -122.760121516999973, 49.17699569600007 ], [ -122.759957721999939, 49.176995200000135 ], [ -122.758517021999978, 49.176990811000024 ], [ -122.757652610999926, 49.176988170000129 ], [ -122.757529129999952, 49.176987791000116 ], [ -122.756590619999898, 49.176984909000062 ], [ -122.756617505999941, 49.175706179000038 ], [ -122.756631986999935, 49.175015511000076 ], [ -122.756633949999966, 49.17486963200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125183250", "BldgCostT": "81765000", "sL_LossRatio": "0.70544819726984", "sL_AssetLoss": "2062150", "sL_BldgLoss": "1454740", "sL_StrLoss": "638340", "sL_NStrLoss": "816400", "sL_ContLoss": "607410", "geom_point": "0101000020E610000041D42B026FB15EC0F56B466172964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767726289999942, 49.175279412000123 ], [ -122.76773178499991, 49.174869892000032 ], [ -122.768734943999931, 49.174885328000073 ], [ -122.768778411999975, 49.174886008000051 ], [ -122.769639704, 49.17508309100009 ], [ -122.769941506999928, 49.175079743000012 ], [ -122.770503837999925, 49.175073496000074 ], [ -122.770584001999921, 49.175072605000025 ], [ -122.770606712999978, 49.173502794000044 ], [ -122.772019887999946, 49.173493787000083 ], [ -122.772033625999953, 49.173493944000107 ], [ -122.773913705999931, 49.173514508000068 ], [ -122.77406850600002, 49.173516490000075 ], [ -122.776114386999964, 49.173223601000103 ], [ -122.77611029399992, 49.175082399000047 ], [ -122.776104028999924, 49.175376702000108 ], [ -122.776098669999982, 49.175628536000083 ], [ -122.776094810999936, 49.175808415000056 ], [ -122.776087783999984, 49.176138599000041 ], [ -122.776073141999973, 49.176509916000072 ], [ -122.776057093999952, 49.176916200000107 ], [ -122.774954486999917, 49.17692118700009 ], [ -122.774462997999976, 49.176923389000081 ], [ -122.773856946999956, 49.176928099000072 ], [ -122.773029026999922, 49.176934503000034 ], [ -122.772841585999956, 49.176936053000126 ], [ -122.771968156999932, 49.176943262000052 ], [ -122.767703798999932, 49.176948690000053 ], [ -122.767717680999937, 49.175918950000096 ], [ -122.767721441999953, 49.175639139000111 ], [ -122.767726289999942, 49.175279412000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225861583", "BldgCostT": "146743333", "sL_LossRatio": "0.729186823132861", "sL_AssetLoss": "2563280", "sL_BldgLoss": "1869110", "sL_StrLoss": "855760", "sL_NStrLoss": "1013350", "sL_ContLoss": "694170", "geom_point": "0101000020E6100000A3CC9BFDA0B15EC0AEF8AF4119964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77611029399992, 49.175082399000047 ], [ -122.776114386999964, 49.173223601000103 ], [ -122.77406850600002, 49.173516490000075 ], [ -122.773913705999931, 49.173514508000068 ], [ -122.772033625999953, 49.173493944000107 ], [ -122.772019887999946, 49.173493787000083 ], [ -122.770606712999978, 49.173502794000044 ], [ -122.77062466699999, 49.170125246000033 ], [ -122.770912014999951, 49.170120784000083 ], [ -122.771419297, 49.170112873000065 ], [ -122.772067469999982, 49.170102742000076 ], [ -122.772996193999987, 49.170099129000043 ], [ -122.773211461999921, 49.170098310000036 ], [ -122.773585639999965, 49.170094848000097 ], [ -122.775725723999926, 49.170075170000061 ], [ -122.776466576999937, 49.170068325000045 ], [ -122.777577730999894, 49.170058087000051 ], [ -122.777629923999953, 49.170057598000021 ], [ -122.777894386999989, 49.170058832000066 ], [ -122.778877403999971, 49.170063393000099 ], [ -122.778885573, 49.170929211000065 ], [ -122.77890419, 49.172901613000107 ], [ -122.77890139, 49.173205362000033 ], [ -122.77889123099996, 49.174302719000153 ], [ -122.778886284999956, 49.174842398000123 ], [ -122.778881379999945, 49.175373108000066 ], [ -122.778879056999955, 49.175625001000114 ], [ -122.778876829999973, 49.175867876000041 ], [ -122.778875441999958, 49.176017511000055 ], [ -122.77887307099995, 49.176272647000125 ], [ -122.778867274999982, 49.176897582000095 ], [ -122.77804137399994, 49.176903067000126 ], [ -122.77639511699995, 49.176913958000036 ], [ -122.776057093999952, 49.176916200000107 ], [ -122.776073141999973, 49.176509916000072 ], [ -122.776087783999984, 49.176138599000041 ], [ -122.776094810999936, 49.175808415000056 ], [ -122.776098669999982, 49.175628536000083 ], [ -122.776104028999924, 49.175376702000108 ], [ -122.77611029399992, 49.175082399000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132034136", "BldgCostT": "86462079", "sL_LossRatio": "0.698102704964255", "sL_AssetLoss": "2748650", "sL_BldgLoss": "1918840", "sL_StrLoss": "798240", "sL_NStrLoss": "1120600", "sL_ContLoss": "829810", "geom_point": "0101000020E610000012AB698B29B25EC0EFF0F87276964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778881379999945, 49.175373108000066 ], [ -122.778886284999956, 49.174842398000123 ], [ -122.77889123099996, 49.174302719000153 ], [ -122.77890139, 49.173205362000033 ], [ -122.77890419, 49.172901613000107 ], [ -122.780373488999899, 49.172873503000055 ], [ -122.781630694999976, 49.172938115000058 ], [ -122.781616197999966, 49.175028984000029 ], [ -122.783499593, 49.175004188000095 ], [ -122.784780180999945, 49.174988402000054 ], [ -122.786086309999931, 49.174981397000039 ], [ -122.786680266999952, 49.174984919000103 ], [ -122.787100789999968, 49.174987404000042 ], [ -122.787451720000021, 49.17493028600007 ], [ -122.788170807999933, 49.174685890000013 ], [ -122.788796907999966, 49.174475681000061 ], [ -122.788914905999931, 49.174435992000099 ], [ -122.789580812999986, 49.174385602000072 ], [ -122.790026075999904, 49.174391597000131 ], [ -122.790029103999942, 49.175560033000089 ], [ -122.790029210999933, 49.175600442000068 ], [ -122.790030899999962, 49.17626680400015 ], [ -122.79001318899995, 49.176901508000142 ], [ -122.78923788199991, 49.176900028 ], [ -122.78727050399999, 49.176896283000161 ], [ -122.785725272999926, 49.176899842000125 ], [ -122.784466793999954, 49.176902700000042 ], [ -122.78206311699995, 49.176894020000042 ], [ -122.780283268999966, 49.176888563000055 ], [ -122.780072578999977, 49.176889894000105 ], [ -122.778867274999982, 49.176897582000095 ], [ -122.77887307099995, 49.176272647000125 ], [ -122.778875441999958, 49.176017511000055 ], [ -122.778876829999973, 49.175867876000041 ], [ -122.778879056999955, 49.175625001000114 ], [ -122.778881379999945, 49.175373108000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103225061", "BldgCostT": "69778190", "sL_LossRatio": "0.726928081316405", "sL_AssetLoss": "1905249", "sL_BldgLoss": "1384979", "sL_StrLoss": "595949", "sL_NStrLoss": "789030", "sL_ContLoss": "520270", "geom_point": "0101000020E61000000623B4ED4DB25EC0AA4F62A53C964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781616197999966, 49.175028984000029 ], [ -122.781630694999976, 49.172938115000058 ], [ -122.784490502999958, 49.172932607000078 ], [ -122.785045387999958, 49.172939195000019 ], [ -122.785444102999918, 49.17302410500006 ], [ -122.785879217999963, 49.173237104000066 ], [ -122.786335102999928, 49.172970506000119 ], [ -122.78667100199999, 49.172733698000037 ], [ -122.787344401999974, 49.172216690000027 ], [ -122.787889389, 49.172069911000087 ], [ -122.788527315999943, 49.172066398000077 ], [ -122.789231011999917, 49.172079233000034 ], [ -122.790079091999985, 49.172094690000101 ], [ -122.790059819999954, 49.17271247800003 ], [ -122.790035005999954, 49.173507988000026 ], [ -122.790026075999904, 49.174391597000131 ], [ -122.789580812999986, 49.174385602000072 ], [ -122.788914905999931, 49.174435992000099 ], [ -122.788796907999966, 49.174475681000061 ], [ -122.788170807999933, 49.174685890000013 ], [ -122.787451720000021, 49.17493028600007 ], [ -122.787100789999968, 49.174987404000042 ], [ -122.786680266999952, 49.174984919000103 ], [ -122.786086309999931, 49.174981397000039 ], [ -122.784780180999945, 49.174988402000054 ], [ -122.783499593, 49.175004188000095 ], [ -122.781616197999966, 49.175028984000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "558952333", "BldgCostT": "378838333", "sL_LossRatio": "0.753816887322269", "sL_AssetLoss": "7149150", "sL_BldgLoss": "5389150", "sL_StrLoss": "2500620", "sL_NStrLoss": "2888530", "sL_ContLoss": "1760000", "geom_point": "0101000020E61000004754C10B0FB25EC054603BF7A2954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.785444102999918, 49.17302410500006 ], [ -122.785045387999958, 49.172939195000019 ], [ -122.784490502999958, 49.172932607000078 ], [ -122.781630694999976, 49.172938115000058 ], [ -122.780373488999899, 49.172873503000055 ], [ -122.77890419, 49.172901613000107 ], [ -122.778885573, 49.170929211000065 ], [ -122.778877403999971, 49.170063393000099 ], [ -122.778885193999926, 49.168268812000044 ], [ -122.778891672, 49.167159700000077 ], [ -122.77889271199993, 49.166979753000106 ], [ -122.778895780999932, 49.16645344400014 ], [ -122.778886903999961, 49.165936799000058 ], [ -122.778871817999971, 49.165057898000036 ], [ -122.778869929999971, 49.164614542000052 ], [ -122.778868417999917, 49.164255807000096 ], [ -122.77886648899999, 49.163748504000097 ], [ -122.780301810999958, 49.163752697000049 ], [ -122.780306916999905, 49.164653290000047 ], [ -122.780306975999935, 49.16466740000007 ], [ -122.784518700999982, 49.16469329100007 ], [ -122.784543261999914, 49.165587875000099 ], [ -122.784568077999964, 49.166458125000119 ], [ -122.784564396999897, 49.166588320000116 ], [ -122.784559331999944, 49.166768247000064 ], [ -122.784539753000018, 49.167461958000047 ], [ -122.784500066999968, 49.168744665000084 ], [ -122.784486463999983, 49.169184082000065 ], [ -122.78447325599997, 49.169600161000112 ], [ -122.784457409999973, 49.170099583000052 ], [ -122.784469509, 49.171093784000114 ], [ -122.78820623199999, 49.171121302000152 ], [ -122.788437481999964, 49.171122997000097 ], [ -122.788452311999933, 49.171365009000077 ], [ -122.788528706999926, 49.171608689000031 ], [ -122.788527315999943, 49.172066398000077 ], [ -122.787889389, 49.172069911000087 ], [ -122.787344401999974, 49.172216690000027 ], [ -122.78667100199999, 49.172733698000037 ], [ -122.786335102999928, 49.172970506000119 ], [ -122.785879217999963, 49.173237104000066 ], [ -122.785444102999918, 49.17302410500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131431978", "BldgCostT": "85334857", "sL_LossRatio": "0.703453560317517", "sL_AssetLoss": "2493977", "sL_BldgLoss": "1754397", "sL_StrLoss": "762437", "sL_NStrLoss": "991960", "sL_ContLoss": "739580", "geom_point": "0101000020E6100000DC616D0865B25EC0A1806928A0954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788452311999933, 49.171365009000077 ], [ -122.788437481999964, 49.171122997000097 ], [ -122.78820623199999, 49.171121302000152 ], [ -122.784469509, 49.171093784000114 ], [ -122.784457409999973, 49.170099583000052 ], [ -122.78447325599997, 49.169600161000112 ], [ -122.784486463999983, 49.169184082000065 ], [ -122.784500066999968, 49.168744665000084 ], [ -122.784539753000018, 49.167461958000047 ], [ -122.784559331999944, 49.166768247000064 ], [ -122.784564396999897, 49.166588320000116 ], [ -122.784568077999964, 49.166458125000119 ], [ -122.784741593, 49.166458860000041 ], [ -122.785907455999961, 49.166464052000038 ], [ -122.786565806999974, 49.166466969000119 ], [ -122.787224612999964, 49.166469896000116 ], [ -122.788584685999965, 49.166471697000127 ], [ -122.788870314999954, 49.166474599000075 ], [ -122.790139909999965, 49.166487408000087 ], [ -122.790109489999963, 49.168357999000094 ], [ -122.790110159000022, 49.168593376000068 ], [ -122.790111793999955, 49.169178005000092 ], [ -122.790109703999974, 49.16927747300015 ], [ -122.790101453999924, 49.169664202000085 ], [ -122.790092182999928, 49.170098304000149 ], [ -122.790088245999968, 49.1706984160001 ], [ -122.790079091999985, 49.172094690000101 ], [ -122.789231011999917, 49.172079233000034 ], [ -122.788527315999943, 49.172066398000077 ], [ -122.788528706999926, 49.171608689000031 ], [ -122.788452311999933, 49.171365009000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83219811", "BldgCostT": "56453190", "sL_LossRatio": "0.735747576950072", "sL_AssetLoss": "1268030", "sL_BldgLoss": "932950", "sL_StrLoss": "429690", "sL_NStrLoss": "503260", "sL_ContLoss": "335080", "geom_point": "0101000020E61000001E201CDC6BB25EC0915E71C41C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788649297999925, 49.162797299000069 ], [ -122.790171001999937, 49.162800358000013 ], [ -122.790161411999946, 49.164528300000022 ], [ -122.790155688999917, 49.165126403000087 ], [ -122.790149701999894, 49.16579031100008 ], [ -122.790139909999965, 49.166487408000087 ], [ -122.788870314999954, 49.166474599000075 ], [ -122.788584685999965, 49.166471697000127 ], [ -122.787224612999964, 49.166469896000116 ], [ -122.786565806999974, 49.166466969000119 ], [ -122.785907455999961, 49.166464052000038 ], [ -122.784741593, 49.166458860000041 ], [ -122.784568077999964, 49.166458125000119 ], [ -122.784543261999914, 49.165587875000099 ], [ -122.784518700999982, 49.16469329100007 ], [ -122.784667037999924, 49.164692833000046 ], [ -122.785879204, 49.164688914000131 ], [ -122.785893471999955, 49.164689289000094 ], [ -122.786150184999954, 49.164696111000069 ], [ -122.786505489999968, 49.164653502000121 ], [ -122.786561147999976, 49.164629970000121 ], [ -122.787050715999968, 49.164422905000066 ], [ -122.787197198999962, 49.164287594000029 ], [ -122.787321816999963, 49.164071499000087 ], [ -122.787388297999925, 49.163784195000105 ], [ -122.787433318999888, 49.162795297000059 ], [ -122.788649297999925, 49.162797299000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104165334", "BldgCostT": "68843334", "sL_LossRatio": "0.726444461913372", "sL_AssetLoss": "1272100", "sL_BldgLoss": "924110", "sL_StrLoss": "425620", "sL_NStrLoss": "498490", "sL_ContLoss": "347990", "geom_point": "0101000020E61000001EF19671B4B25EC02E3300AF2A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790161411999946, 49.164528300000022 ], [ -122.790171001999937, 49.162800358000013 ], [ -122.790285207999929, 49.16280299400006 ], [ -122.791183980999918, 49.162823370000119 ], [ -122.79156481199999, 49.162888747000061 ], [ -122.791663729999954, 49.162925061000102 ], [ -122.791809618999977, 49.162896972000027 ], [ -122.792399483999958, 49.163051503000041 ], [ -122.79277889799998, 49.163116873 ], [ -122.793208023999938, 49.163097205000021 ], [ -122.793418981999977, 49.16304042400008 ], [ -122.793492912999966, 49.163065976000098 ], [ -122.79363589399999, 49.163115363000074 ], [ -122.795122960999905, 49.163680467000063 ], [ -122.794961511999986, 49.164370838000075 ], [ -122.794941914, 49.164454453000133 ], [ -122.794874099999959, 49.164744395000092 ], [ -122.79481875499998, 49.166166969000102 ], [ -122.794810083999934, 49.166389074000072 ], [ -122.794808304999933, 49.166434616000053 ], [ -122.794905072999967, 49.166781699000062 ], [ -122.793531805999947, 49.16681110500015 ], [ -122.793137688999948, 49.166919205000056 ], [ -122.792955708999941, 49.167012896000074 ], [ -122.792844803999969, 49.167069884000021 ], [ -122.792594396999931, 49.167281410000044 ], [ -122.792415297999966, 49.167592410000054 ], [ -122.792393913999916, 49.168259405000057 ], [ -122.790109489999963, 49.168357999000094 ], [ -122.790139909999965, 49.166487408000087 ], [ -122.790149701999894, 49.16579031100008 ], [ -122.790155688999917, 49.165126403000087 ], [ -122.790161411999946, 49.164528300000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87493083", "BldgCostT": "58923333", "sL_LossRatio": "0.724814303556169", "sL_AssetLoss": "1521300", "sL_BldgLoss": "1102660", "sL_StrLoss": "475830", "sL_NStrLoss": "626830", "sL_ContLoss": "418640", "geom_point": "0101000020E610000091F249DDC4B25EC011FAFCA498954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793531805999947, 49.16681110500015 ], [ -122.794905072999967, 49.166781699000062 ], [ -122.794914963999958, 49.166836106000062 ], [ -122.79512522899995, 49.167036555000081 ], [ -122.795438695999934, 49.16733548600012 ], [ -122.795688807999937, 49.167586183000054 ], [ -122.79578702, 49.167812591000036 ], [ -122.795755081999943, 49.168275706000067 ], [ -122.795740159999966, 49.169007972000053 ], [ -122.795736692999938, 49.169178001000077 ], [ -122.795725727999923, 49.169348244000027 ], [ -122.795703807999942, 49.169689511000122 ], [ -122.79567818799994, 49.170087195000079 ], [ -122.790092182999928, 49.170098304000149 ], [ -122.790101453999924, 49.169664202000085 ], [ -122.790109703999974, 49.16927747300015 ], [ -122.790111793999955, 49.169178005000092 ], [ -122.790110159000022, 49.168593376000068 ], [ -122.790109489999963, 49.168357999000094 ], [ -122.792393913999916, 49.168259405000057 ], [ -122.792415297999966, 49.167592410000054 ], [ -122.792594396999931, 49.167281410000044 ], [ -122.792844803999969, 49.167069884000021 ], [ -122.792955708999941, 49.167012896000074 ], [ -122.793137688999948, 49.166919205000056 ], [ -122.793531805999947, 49.16681110500015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89315728", "BldgCostT": "52814857", "sL_LossRatio": "0.655698636172471", "sL_AssetLoss": "1497990", "sL_BldgLoss": "982230", "sL_StrLoss": "448080", "sL_NStrLoss": "534150", "sL_ContLoss": "515760", "geom_point": "0101000020E6100000A111E0B212B35EC0937C36BC6A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.794961511999986, 49.164370838000075 ], [ -122.795122960999905, 49.163680467000063 ], [ -122.797944795999953, 49.164793429000056 ], [ -122.799595857999989, 49.165436116000109 ], [ -122.799990579999957, 49.165589767000043 ], [ -122.801303248999929, 49.166100674000091 ], [ -122.801235418999937, 49.168277353000107 ], [ -122.801235118999969, 49.168286386000055 ], [ -122.801213579999981, 49.169197607000108 ], [ -122.801191201999956, 49.170074517000081 ], [ -122.801190990999942, 49.170083549000033 ], [ -122.80084546199997, 49.170082769000025 ], [ -122.799994897999966, 49.170080726000023 ], [ -122.799113815999959, 49.170078612000047 ], [ -122.79567818799994, 49.170087195000079 ], [ -122.795703807999942, 49.169689511000122 ], [ -122.795725727999923, 49.169348244000027 ], [ -122.795736692999938, 49.169178001000077 ], [ -122.795740159999966, 49.169007972000053 ], [ -122.795755081999943, 49.168275706000067 ], [ -122.79578702, 49.167812591000036 ], [ -122.795688807999937, 49.167586183000054 ], [ -122.795438695999934, 49.16733548600012 ], [ -122.79512522899995, 49.167036555000081 ], [ -122.794914963999958, 49.166836106000062 ], [ -122.794905072999967, 49.166781699000062 ], [ -122.794808304999933, 49.166434616000053 ], [ -122.794810083999934, 49.166389074000072 ], [ -122.79481875499998, 49.166166969000102 ], [ -122.794874099999959, 49.164744395000092 ], [ -122.794941914, 49.164454453000133 ], [ -122.794961511999986, 49.164370838000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135060584", "BldgCostT": "85543334", "sL_LossRatio": "0.688470911027275", "sL_AssetLoss": "2769950", "sL_BldgLoss": "1907030", "sL_StrLoss": "827730", "sL_NStrLoss": "1079300", "sL_ContLoss": "862920", "geom_point": "0101000020E61000008F80D09B06B35EC0C57D2FAE06964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80084546199997, 49.170082769000025 ], [ -122.801190990999942, 49.170083549000033 ], [ -122.801167947999929, 49.170681937000069 ], [ -122.801148173999962, 49.171195327000042 ], [ -122.801124745999971, 49.171803359000045 ], [ -122.801122377999917, 49.171865161 ], [ -122.8011222209999, 49.171869256000065 ], [ -122.801077183999951, 49.173038575000106 ], [ -122.801060356999969, 49.173476591000046 ], [ -122.799994804999983, 49.173481496000065 ], [ -122.799643314999955, 49.173483089000122 ], [ -122.798073927999909, 49.17349270100005 ], [ -122.798007885999951, 49.173493085000075 ], [ -122.797813741, 49.173492012000089 ], [ -122.797003011999905, 49.173487510000086 ], [ -122.79578426099999, 49.173489548000049 ], [ -122.795770002999959, 49.173489576000044 ], [ -122.795254838999952, 49.173602195000065 ], [ -122.794528391999947, 49.173895041000101 ], [ -122.79414917299998, 49.173925211000117 ], [ -122.793188186999927, 49.173938898000046 ], [ -122.792696477999982, 49.173890919000058 ], [ -122.792398396999957, 49.173798316000017 ], [ -122.791954285999964, 49.173615608000048 ], [ -122.791518005999976, 49.173539606000098 ], [ -122.791629493999906, 49.173156290000122 ], [ -122.791775209999983, 49.17285340300009 ], [ -122.7918623899999, 49.172761403000038 ], [ -122.792109911999916, 49.172652600000013 ], [ -122.792843491999946, 49.17261399700007 ], [ -122.792997181999979, 49.172573590000098 ], [ -122.794192204999931, 49.172108185000077 ], [ -122.794583198999973, 49.171946801000097 ], [ -122.795241808999947, 49.171781702000047 ], [ -122.79544490399995, 49.171681391000071 ], [ -122.795503293999971, 49.17162911 ], [ -122.795557810999981, 49.171574886000052 ], [ -122.795635992999976, 49.171395215000139 ], [ -122.79562266, 49.171004549000024 ], [ -122.795610990999961, 49.170663695000137 ], [ -122.79567818799994, 49.170087195000079 ], [ -122.799113815999959, 49.170078612000047 ], [ -122.799994897999966, 49.170080726000023 ], [ -122.80084546199997, 49.170082769000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76627684", "BldgCostT": "51906896", "sL_LossRatio": "0.718588646337426", "sL_AssetLoss": "1419630", "sL_BldgLoss": "1020130", "sL_StrLoss": "439630", "sL_NStrLoss": "580500", "sL_ContLoss": "399500", "geom_point": "0101000020E61000000A41F5ACB7B25EC0C02A72E3F1954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790092182999928, 49.170098304000149 ], [ -122.79567818799994, 49.170087195000079 ], [ -122.795610990999961, 49.170663695000137 ], [ -122.79562266, 49.171004549000024 ], [ -122.795635992999976, 49.171395215000139 ], [ -122.795557810999981, 49.171574886000052 ], [ -122.795503293999971, 49.17162911 ], [ -122.79544490399995, 49.171681391000071 ], [ -122.795241808999947, 49.171781702000047 ], [ -122.794583198999973, 49.171946801000097 ], [ -122.794192204999931, 49.172108185000077 ], [ -122.792997181999979, 49.172573590000098 ], [ -122.792843491999946, 49.17261399700007 ], [ -122.792109911999916, 49.172652600000013 ], [ -122.7918623899999, 49.172761403000038 ], [ -122.791775209999983, 49.17285340300009 ], [ -122.791629493999906, 49.173156290000122 ], [ -122.791518005999976, 49.173539606000098 ], [ -122.790035005999954, 49.173507988000026 ], [ -122.790059819999954, 49.17271247800003 ], [ -122.790079091999985, 49.172094690000101 ], [ -122.790088245999968, 49.1706984160001 ], [ -122.790092182999928, 49.170098304000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287575206", "BldgCostT": "192172039", "sL_LossRatio": "0.732840016099992", "sL_AssetLoss": "5065841", "sL_BldgLoss": "3712451", "sL_StrLoss": "1610611", "sL_NStrLoss": "2101840", "sL_ContLoss": "1353390", "geom_point": "0101000020E6100000ABA7FBA5EAB25EC0F572C02A6E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790026075999904, 49.174391597000131 ], [ -122.790035005999954, 49.173507988000026 ], [ -122.791518005999976, 49.173539606000098 ], [ -122.791954285999964, 49.173615608000048 ], [ -122.792398396999957, 49.173798316000017 ], [ -122.792696477999982, 49.173890919000058 ], [ -122.793188186999927, 49.173938898000046 ], [ -122.79414917299998, 49.173925211000117 ], [ -122.794528391999947, 49.173895041000101 ], [ -122.795254838999952, 49.173602195000065 ], [ -122.795770002999959, 49.173489576000044 ], [ -122.79578426099999, 49.173489548000049 ], [ -122.797003011999905, 49.173487510000086 ], [ -122.797813741, 49.173492012000089 ], [ -122.798007885999951, 49.173493085000075 ], [ -122.798073927999909, 49.17349270100005 ], [ -122.799643314999955, 49.173483089000122 ], [ -122.799994804999983, 49.173481496000065 ], [ -122.801060356999969, 49.173476591000046 ], [ -122.801002470999904, 49.175109888000065 ], [ -122.800986946999927, 49.175548152000069 ], [ -122.80094142399993, 49.176833886000153 ], [ -122.800941104999964, 49.176842895000085 ], [ -122.79999524699997, 49.176850629000064 ], [ -122.799728015999932, 49.176852786000012 ], [ -122.79806068799999, 49.176866292000071 ], [ -122.796908307999985, 49.176872611000071 ], [ -122.79551088, 49.176889600000088 ], [ -122.792826015999964, 49.1769024990001 ], [ -122.79001318899995, 49.176901508000142 ], [ -122.790030899999962, 49.17626680400015 ], [ -122.790029210999933, 49.175600442000068 ], [ -122.790029103999942, 49.175560033000089 ], [ -122.790026075999904, 49.174391597000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129957500", "BldgCostT": "87320000", "sL_LossRatio": "0.721962053497461", "sL_AssetLoss": "2625433", "sL_BldgLoss": "1895463", "sL_StrLoss": "774703", "sL_NStrLoss": "1120760", "sL_ContLoss": "729970", "geom_point": "0101000020E610000075C529C6BBB25EC026495B85E2964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792826015999964, 49.1769024990001 ], [ -122.79551088, 49.176889600000088 ], [ -122.795486090999972, 49.177806990000065 ], [ -122.795435598999987, 49.180667193000048 ], [ -122.792422095999939, 49.180669391000059 ], [ -122.791344881, 49.180675094000044 ], [ -122.78989633499998, 49.180677887000108 ], [ -122.789914703999941, 49.179991218000033 ], [ -122.789945800999931, 49.178829492000112 ], [ -122.789971804999951, 49.178195111000051 ], [ -122.79001318899995, 49.176901508000142 ], [ -122.792826015999964, 49.1769024990001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75685833", "BldgCostT": "51933333", "sL_LossRatio": "0.734395034290486", "sL_AssetLoss": "1520830", "sL_BldgLoss": "1116890", "sL_StrLoss": "481170", "sL_NStrLoss": "635720", "sL_ContLoss": "403940", "geom_point": "0101000020E6100000E935248B07B35EC01934BAA4E6964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.796908307999985, 49.176872611000071 ], [ -122.79806068799999, 49.176866292000071 ], [ -122.798038592999887, 49.177187309000018 ], [ -122.7980992009999, 49.177482891000125 ], [ -122.798267983999921, 49.177719493000083 ], [ -122.799196303999935, 49.178001999000116 ], [ -122.799337077999922, 49.178097473000093 ], [ -122.799378391999937, 49.178125494000028 ], [ -122.799480301999949, 49.178259186000055 ], [ -122.799480919999894, 49.178588999000134 ], [ -122.799485919999967, 49.179412701000096 ], [ -122.799487170999953, 49.179755179000018 ], [ -122.799490509999941, 49.180640906000093 ], [ -122.799115612999984, 49.180643581000012 ], [ -122.798122300999935, 49.180650700000093 ], [ -122.796780375999944, 49.180657589000106 ], [ -122.795435598999987, 49.180667193000048 ], [ -122.795486090999972, 49.177806990000065 ], [ -122.79551088, 49.176889600000088 ], [ -122.796908307999985, 49.176872611000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75311250", "BldgCostT": "51675000", "sL_LossRatio": "0.732789505942715", "sL_AssetLoss": "1582610", "sL_BldgLoss": "1159720", "sL_StrLoss": "492820", "sL_NStrLoss": "666900", "sL_ContLoss": "422890", "geom_point": "0101000020E6100000E377ECCA5BB35EC0E8D610C1DD964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.803562407999934, 49.176845840000126 ], [ -122.804085701999938, 49.176846191000074 ], [ -122.804062411999922, 49.177343812000061 ], [ -122.804061110999953, 49.178659188000047 ], [ -122.803993506999959, 49.179781712000072 ], [ -122.803979010999939, 49.180452492000036 ], [ -122.801092111999964, 49.180447896000054 ], [ -122.800890902999953, 49.180456099000025 ], [ -122.800900092999939, 49.179793806000127 ], [ -122.800941104999964, 49.176842895000085 ], [ -122.801037917999906, 49.176843536000021 ], [ -122.801137117999986, 49.176844221000103 ], [ -122.80256079499999, 49.176845184000044 ], [ -122.803562407999934, 49.176845840000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184375491", "BldgCostT": "123444570", "sL_LossRatio": "0.759569498216964", "sL_AssetLoss": "2487330", "sL_BldgLoss": "1889300", "sL_StrLoss": "811800", "sL_NStrLoss": "1077500", "sL_ContLoss": "598030", "geom_point": "0101000020E6100000608563AF5AB35EC06C8D834356974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800861987999909, 49.182534999000026 ], [ -122.800862131999935, 49.182525992000087 ], [ -122.800875339999891, 49.181574840000046 ], [ -122.800887699999947, 49.180684356000079 ], [ -122.800890902999953, 49.180456099000025 ], [ -122.801092111999964, 49.180447896000054 ], [ -122.803979010999939, 49.180452492000036 ], [ -122.803965419999926, 49.181188304000038 ], [ -122.803966609999961, 49.182362749000042 ], [ -122.803966883000015, 49.182662396000076 ], [ -122.80394788299995, 49.183198351000058 ], [ -122.803912899999943, 49.184185290000137 ], [ -122.801488262999939, 49.18419304800004 ], [ -122.80117273399999, 49.184194076000026 ], [ -122.801035815999938, 49.184194504000061 ], [ -122.80091207199996, 49.184194815000069 ], [ -122.800839602999972, 49.184195008000088 ], [ -122.800839729999922, 49.184185977000034 ], [ -122.800861987999909, 49.182534999000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257632772", "BldgCostT": "172064158", "sL_LossRatio": "0.802414041717425", "sL_AssetLoss": "3217840", "sL_BldgLoss": "2582040", "sL_StrLoss": "1172140", "sL_NStrLoss": "1409900", "sL_ContLoss": "635800", "geom_point": "0101000020E6100000DB24D44614B35EC0A90029FB78974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795411615999981, 49.183342510000074 ], [ -122.795411848999976, 49.182923541000029 ], [ -122.795412101999958, 49.18253969400012 ], [ -122.799999460999942, 49.182535763000061 ], [ -122.800136698999921, 49.182535632000089 ], [ -122.800861987999909, 49.182534999000026 ], [ -122.800839729999922, 49.184185977000034 ], [ -122.800839602999972, 49.184195008000088 ], [ -122.800335189999942, 49.184198416000051 ], [ -122.800005893, 49.184200633000046 ], [ -122.798170405999954, 49.184212992000027 ], [ -122.795409530999976, 49.184267785000117 ], [ -122.795411615999981, 49.183342510000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "930591052", "BldgCostT": "605682760", "sL_LossRatio": "0.70771934439026", "sL_AssetLoss": "11314536", "sL_BldgLoss": "8007516", "sL_StrLoss": "3516206", "sL_NStrLoss": "4491310", "sL_ContLoss": "3307020", "geom_point": "0101000020E6100000729BD28F00B35EC0C4F68499F4974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795304056999925, 49.191525073000079 ], [ -122.79531532699994, 49.190506355000124 ], [ -122.79533096199998, 49.188788588000143 ], [ -122.79534501199997, 49.187291511000126 ], [ -122.7945253729999, 49.187301355000045 ], [ -122.793546563999953, 49.187311868000094 ], [ -122.792786112, 49.187318959000017 ], [ -122.792574147, 49.187249583000046 ], [ -122.792584079999969, 49.184323352000014 ], [ -122.792501187999903, 49.184324476000064 ], [ -122.789865549999959, 49.184360376000065 ], [ -122.789870641999968, 49.183876439000095 ], [ -122.789876106999955, 49.183353348000054 ], [ -122.795411615999981, 49.183342510000074 ], [ -122.795409530999976, 49.184267785000117 ], [ -122.798170405999954, 49.184212992000027 ], [ -122.800005893, 49.184200633000046 ], [ -122.800335189999942, 49.184198416000051 ], [ -122.800839602999972, 49.184195008000088 ], [ -122.800860004999919, 49.18615081400003 ], [ -122.800859928999955, 49.18615979700008 ], [ -122.800835087999985, 49.188743194999986 ], [ -122.800811389, 49.191439203000094 ], [ -122.800809787999967, 49.191561696000072 ], [ -122.80000432199995, 49.191563243000097 ], [ -122.799129003999951, 49.19156487700004 ], [ -122.799079100999961, 49.191540525000029 ], [ -122.79898960599995, 49.191496795000084 ], [ -122.798357094999972, 49.191501624000068 ], [ -122.798241540999967, 49.191502489000143 ], [ -122.795304056999925, 49.191525073000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "519214390", "BldgCostT": "317541627", "sL_LossRatio": "0.655630751634388", "sL_AssetLoss": "8952890", "sL_BldgLoss": "5869790", "sL_StrLoss": "2176860", "sL_NStrLoss": "3692930", "sL_ContLoss": "3083100", "geom_point": "0101000020E61000002DD8F3F36EB35EC02A5582280C984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.803912899999943, 49.184185290000137 ], [ -122.806530405999951, 49.18422060400006 ], [ -122.806480744999945, 49.185578541000041 ], [ -122.806479079999974, 49.185623497000108 ], [ -122.806478068999979, 49.185650457000087 ], [ -122.806460126999966, 49.186141276000093 ], [ -122.806458113999938, 49.186630500000078 ], [ -122.806450422999902, 49.187530332000094 ], [ -122.806438979999925, 49.188864391000024 ], [ -122.806448869999912, 49.191218358000128 ], [ -122.80644980199996, 49.19144159500005 ], [ -122.806445438999958, 49.191544201000049 ], [ -122.804162997999953, 49.19155 ], [ -122.803476717999942, 49.19155174200008 ], [ -122.802050660999925, 49.19155534100004 ], [ -122.800988413999931, 49.191557993000082 ], [ -122.800809787999967, 49.191561696000072 ], [ -122.800811389, 49.191439203000094 ], [ -122.800835087999985, 49.188743194999986 ], [ -122.800859928999955, 49.18615979700008 ], [ -122.800860004999919, 49.18615081400003 ], [ -122.800839602999972, 49.184195008000088 ], [ -122.80091207199996, 49.184194815000069 ], [ -122.801035815999938, 49.184194504000061 ], [ -122.80117273399999, 49.184194076000026 ], [ -122.801488262999939, 49.18419304800004 ], [ -122.803912899999943, 49.184185290000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233109917", "BldgCostT": "161941667", "sL_LossRatio": "0.840770549059592", "sL_AssetLoss": "2765820", "sL_BldgLoss": "2325420", "sL_StrLoss": "1041300", "sL_NStrLoss": "1284120", "sL_ContLoss": "440400", "geom_point": "0101000020E61000009F3F9E44E1B35EC02F3101851B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809253299999966, 49.188873949000026 ], [ -122.809258132, 49.186845897000055 ], [ -122.812025131999974, 49.18690351900004 ], [ -122.811993620999928, 49.188163104000068 ], [ -122.811992894999932, 49.188591878000118 ], [ -122.811992831999987, 49.1886368340001 ], [ -122.811990909999977, 49.189821803000051 ], [ -122.81060211499998, 49.189809490000108 ], [ -122.80924230699999, 49.189792607000086 ], [ -122.809253299999966, 49.188873949000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275386183", "BldgCostT": "185716895", "sL_LossRatio": "0.74448963183444", "sL_AssetLoss": "3631790", "sL_BldgLoss": "2703830", "sL_StrLoss": "1182430", "sL_NStrLoss": "1521400", "sL_ContLoss": "927960", "geom_point": "0101000020E6100000F66E8F52C7B35EC0D693F9475F984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806448869999912, 49.191218358000128 ], [ -122.806438979999925, 49.188864391000024 ], [ -122.807774924999975, 49.18886799600007 ], [ -122.809253299999966, 49.188873949000026 ], [ -122.80924230699999, 49.189792607000086 ], [ -122.81060211499998, 49.189809490000108 ], [ -122.811990909999977, 49.189821803000051 ], [ -122.812052297, 49.190165994000012 ], [ -122.812271387999928, 49.190613006000063 ], [ -122.812288118999973, 49.190646934000043 ], [ -122.812449632999929, 49.190975088000144 ], [ -122.812446739999984, 49.191456158000094 ], [ -122.812447585999948, 49.19149800800011 ], [ -122.812448252999928, 49.191533696000072 ], [ -122.80923436099999, 49.191539385000119 ], [ -122.807734659999966, 49.191541984000018 ], [ -122.806445438999958, 49.191544201000049 ], [ -122.80644980199996, 49.19144159500005 ], [ -122.806448869999912, 49.191218358000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175763061", "BldgCostT": "116828190", "sL_LossRatio": "0.766444536555814", "sL_AssetLoss": "2509040", "sL_BldgLoss": "1923040", "sL_StrLoss": "833640", "sL_NStrLoss": "1089400", "sL_ContLoss": "586000", "geom_point": "0101000020E6100000D0B7E43CCCB35EC06F38E27F61994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806247511999985, 49.197816549000073 ], [ -122.807483101999978, 49.197806320000019 ], [ -122.809326998999936, 49.197836681000076 ], [ -122.811596093, 49.197874012000042 ], [ -122.81248658399997, 49.197834593000096 ], [ -122.812538584999956, 49.1987353970001 ], [ -122.808648275999971, 49.198740906000133 ], [ -122.80625, 49.19873833700008 ], [ -122.806247511999985, 49.197816549000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106041477", "BldgCostT": "70829856", "sL_LossRatio": "0.71082773094298", "sL_AssetLoss": "2249040", "sL_BldgLoss": "1598680", "sL_StrLoss": "664920", "sL_NStrLoss": "933760", "sL_ContLoss": "650360", "geom_point": "0101000020E6100000F1255CE180B35EC075AF496D98994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801987412999921, 49.201022087000077 ], [ -122.801494898000016, 49.200541589000117 ], [ -122.800833384999947, 49.200523804000085 ], [ -122.80083620799999, 49.199997246000123 ], [ -122.800842789999948, 49.198752708 ], [ -122.801539385999945, 49.198742886000041 ], [ -122.803555494999955, 49.198714430000024 ], [ -122.803641886999955, 49.1987132 ], [ -122.803766287999935, 49.198662272000021 ], [ -122.80389612, 49.198609053000041 ], [ -122.804488865999957, 49.19874826900012 ], [ -122.804503839999981, 49.198746860000028 ], [ -122.804772003999958, 49.198721527000053 ], [ -122.80625, 49.19873833700008 ], [ -122.808648275999971, 49.198740906000133 ], [ -122.808623997999987, 49.199893497000105 ], [ -122.808622964999969, 49.200001379000042 ], [ -122.808619782999969, 49.200333899000078 ], [ -122.808604206999931, 49.200560484000022 ], [ -122.808534818999959, 49.20069179500009 ], [ -122.808256499999985, 49.200888092000071 ], [ -122.807971887999969, 49.201076098000065 ], [ -122.807721395999963, 49.201147111000097 ], [ -122.805826294999989, 49.201148488000058 ], [ -122.805258712999958, 49.201141602000099 ], [ -122.804509501999931, 49.201459981000056 ], [ -122.804338499999957, 49.201533308000059 ], [ -122.803622401999917, 49.201529213000107 ], [ -122.802805988999964, 49.201528403000076 ], [ -122.802434208999955, 49.201388485000024 ], [ -122.802227617999961, 49.201299495000114 ], [ -122.801987412999921, 49.201022087000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240047000", "BldgCostT": "162620000", "sL_LossRatio": "0.805724524149442", "sL_AssetLoss": "2444570", "sL_BldgLoss": "1969650", "sL_StrLoss": "880250", "sL_NStrLoss": "1089400", "sL_ContLoss": "474920", "geom_point": "0101000020E61000000A15B93355B35EC0BDE8E92B61994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801339156999987, 49.19738681300008 ], [ -122.80388498399999, 49.198603780000077 ], [ -122.80389612, 49.198609053000041 ], [ -122.803766287999935, 49.198662272000021 ], [ -122.803641886999955, 49.1987132 ], [ -122.803555494999955, 49.198714430000024 ], [ -122.801539385999945, 49.198742886000041 ], [ -122.800842789999948, 49.198752708 ], [ -122.801339156999987, 49.19738681300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93870583", "BldgCostT": "59248333", "sL_LossRatio": "0.68012818681371", "sL_AssetLoss": "2100060", "sL_BldgLoss": "1428310", "sL_StrLoss": "550390", "sL_NStrLoss": "877920", "sL_ContLoss": "671750", "geom_point": "0101000020E6100000412B6A0F3FB35EC07FE053CED1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802901114999941, 49.20612258700006 ], [ -122.801726377999969, 49.20499220500011 ], [ -122.80168318799997, 49.204951386000069 ], [ -122.800074590999941, 49.203431160000058 ], [ -122.799996328999967, 49.203357210000036 ], [ -122.799973264999934, 49.203335389000081 ], [ -122.798966615000026, 49.202383977000139 ], [ -122.797581728999944, 49.201074990000031 ], [ -122.797723223999952, 49.200913430000064 ], [ -122.797758860999934, 49.200860836000089 ], [ -122.797884392999947, 49.2006756930001 ], [ -122.798340556999904, 49.200002978000036 ], [ -122.798492969999984, 49.199778217000095 ], [ -122.798505290999955, 49.199759989000086 ], [ -122.798870760999947, 49.199255432000058 ], [ -122.799133340999916, 49.198891472000064 ], [ -122.799139303999965, 49.198883183000142 ], [ -122.799139633999985, 49.19886989300003 ], [ -122.799141720999927, 49.198788701000112 ], [ -122.799401698999986, 49.198412002000047 ], [ -122.799996762999953, 49.197549894000062 ], [ -122.80036110399999, 49.197021982000052 ], [ -122.800590989999975, 49.197070294000071 ], [ -122.800863406999952, 49.197159388000074 ], [ -122.801150694999961, 49.197296724000132 ], [ -122.801327325999964, 49.197381170000035 ], [ -122.801339156999987, 49.19738681300008 ], [ -122.800842789999948, 49.198752708 ], [ -122.80083620799999, 49.199997246000123 ], [ -122.800833384999947, 49.200523804000085 ], [ -122.801494898000016, 49.200541589000117 ], [ -122.801987412999921, 49.201022087000077 ], [ -122.802227617999961, 49.201299495000114 ], [ -122.802434208999955, 49.201388485000024 ], [ -122.802107412999973, 49.201809493000056 ], [ -122.802106979999934, 49.203111400000097 ], [ -122.803762717999973, 49.203120004000048 ], [ -122.803767093999951, 49.203713915000051 ], [ -122.803719893000036, 49.203862018000045 ], [ -122.80361470699999, 49.203935513000069 ], [ -122.802588288999956, 49.20393479100008 ], [ -122.802590305999928, 49.204403412 ], [ -122.804377906999918, 49.206045700000104 ], [ -122.804452461999986, 49.206046831000052 ], [ -122.803156782999977, 49.20611009500012 ], [ -122.802901114999941, 49.20612258700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241738250", "BldgCostT": "159170000", "sL_LossRatio": "0.715978272527112", "sL_AssetLoss": "3170180", "sL_BldgLoss": "2269780", "sL_StrLoss": "979740", "sL_NStrLoss": "1290040", "sL_ContLoss": "900400", "geom_point": "0101000020E61000008251A456B3B25EC0E8F3EE1B21984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789791819999905, 49.18929939 ], [ -122.789790819999922, 49.187964097000091 ], [ -122.789800955999951, 49.187474799000015 ], [ -122.789812022999953, 49.18694054500007 ], [ -122.789827798999909, 49.186179769000077 ], [ -122.789844197999983, 49.185388187000065 ], [ -122.789865549999959, 49.184360376000065 ], [ -122.792501187999903, 49.184324476000064 ], [ -122.792584079999969, 49.184323352000014 ], [ -122.792574147, 49.187249583000046 ], [ -122.792786112, 49.187318959000017 ], [ -122.793546563999953, 49.187311868000094 ], [ -122.7945253729999, 49.187301355000045 ], [ -122.79534501199997, 49.187291511000126 ], [ -122.79533096199998, 49.188788588000143 ], [ -122.79531532699994, 49.190506355000124 ], [ -122.795304056999925, 49.191525073000079 ], [ -122.793946595999969, 49.191514414000075 ], [ -122.793249603, 49.191515287000065 ], [ -122.793120352999964, 49.191559188000085 ], [ -122.791191497999975, 49.191578346000071 ], [ -122.789688607999906, 49.191587614000042 ], [ -122.789689220999932, 49.191519153000129 ], [ -122.789791819999905, 49.18929939 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63165636", "BldgCostT": "41097079", "sL_LossRatio": "0.682833243803238", "sL_AssetLoss": "1172790", "sL_BldgLoss": "800820", "sL_StrLoss": "336880", "sL_NStrLoss": "463940", "sL_ContLoss": "371970", "geom_point": "0101000020E61000001C67574A64B25EC0D26A406B1B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788528600999953, 49.187092991000092 ], [ -122.789812022999953, 49.18694054500007 ], [ -122.789800955999951, 49.187474799000015 ], [ -122.789790819999922, 49.187964097000091 ], [ -122.789791819999905, 49.18929939 ], [ -122.78827689299996, 49.189285790000056 ], [ -122.784770983999962, 49.189296497000036 ], [ -122.784494403999986, 49.189269284000055 ], [ -122.784312477999919, 49.189181898000108 ], [ -122.784200823999981, 49.189071399000078 ], [ -122.784181794999938, 49.18839499100006 ], [ -122.784183598999917, 49.187972486000042 ], [ -122.784593298999965, 49.187971797000081 ], [ -122.78564060099994, 49.187969992 ], [ -122.786391057999978, 49.187975583000124 ], [ -122.787009011999928, 49.187980189000044 ], [ -122.786920298999931, 49.187081095000082 ], [ -122.788528600999953, 49.187092991000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102526833", "BldgCostT": "68973333", "sL_LossRatio": "0.710257300084279", "sL_AssetLoss": "2017100", "sL_BldgLoss": "1432660", "sL_StrLoss": "627020", "sL_NStrLoss": "805640", "sL_ContLoss": "584440", "geom_point": "0101000020E61000006F026FF55AB25EC0719C1DA1CD974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788418892, 49.184352387000068 ], [ -122.789865549999959, 49.184360376000065 ], [ -122.789844197999983, 49.185388187000065 ], [ -122.789827798999909, 49.186179769000077 ], [ -122.789812022999953, 49.18694054500007 ], [ -122.788528600999953, 49.187092991000092 ], [ -122.786920298999931, 49.187081095000082 ], [ -122.787009011999928, 49.187980189000044 ], [ -122.786391057999978, 49.187975583000124 ], [ -122.78564060099994, 49.187969992 ], [ -122.784593298999965, 49.187971797000081 ], [ -122.784183598999917, 49.187972486000042 ], [ -122.784182517999966, 49.187056115000075 ], [ -122.784183274, 49.186672210000054 ], [ -122.784184441999955, 49.186105502000032 ], [ -122.784185205999947, 49.1857289820001 ], [ -122.784205099999923, 49.184350999000031 ], [ -122.78589902600001, 49.184351478000067 ], [ -122.787040399999938, 49.184351789000054 ], [ -122.788418892, 49.184352387000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215220470", "BldgCostT": "137890413", "sL_LossRatio": "0.677174375476689", "sL_AssetLoss": "3368289", "sL_BldgLoss": "2280919", "sL_StrLoss": "982659", "sL_NStrLoss": "1298260", "sL_ContLoss": "1087370", "geom_point": "0101000020E61000001FF9B47121B25EC056049BE746984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778518695999978, 49.189345807000031 ], [ -122.778535816999948, 49.188730155000073 ], [ -122.778555023999971, 49.188037722000068 ], [ -122.778564042999946, 49.187713979000065 ], [ -122.778582804999957, 49.187037403 ], [ -122.77942371799999, 49.187040275000051 ], [ -122.780249083999962, 49.187043113000108 ], [ -122.781451922999935, 49.18704662800009 ], [ -122.784182517999966, 49.187056115000075 ], [ -122.784183598999917, 49.187972486000042 ], [ -122.784181794999938, 49.18839499100006 ], [ -122.784200823999981, 49.189071399000078 ], [ -122.784312477999919, 49.189181898000108 ], [ -122.784494403999986, 49.189269284000055 ], [ -122.784770983999962, 49.189296497000036 ], [ -122.78827689299996, 49.189285790000056 ], [ -122.789791819999905, 49.18929939 ], [ -122.789689220999932, 49.191519153000129 ], [ -122.789688607999906, 49.191587614000042 ], [ -122.786941134999921, 49.191600308000012 ], [ -122.78412667399999, 49.1916091370001 ], [ -122.782263613999987, 49.191600881000092 ], [ -122.781720290999942, 49.191598473000106 ], [ -122.781610480999973, 49.191597969000036 ], [ -122.781257451999949, 49.191596398000058 ], [ -122.780946795999967, 49.191565500000095 ], [ -122.780855396999954, 49.191542426000105 ], [ -122.778213739999941, 49.190875594000026 ], [ -122.778253917999976, 49.190804462000038 ], [ -122.778263796999923, 49.190786997000053 ], [ -122.778359412999961, 49.190602842000096 ], [ -122.778423679999918, 49.190479087000028 ], [ -122.778499892999946, 49.190146848000076 ], [ -122.778502292999946, 49.190136394000071 ], [ -122.778518695999978, 49.189345807000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76465249", "BldgCostT": "50344999", "sL_LossRatio": "0.705280132756094", "sL_AssetLoss": "1494470", "sL_BldgLoss": "1054020", "sL_StrLoss": "431680", "sL_NStrLoss": "622340", "sL_ContLoss": "440450", "geom_point": "0101000020E6100000F593F79202B25EC0536DDC07C5974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781398041000017, 49.184347962000047 ], [ -122.784205099999923, 49.184350999000031 ], [ -122.784185205999947, 49.1857289820001 ], [ -122.784184441999955, 49.186105502000032 ], [ -122.784183274, 49.186672210000054 ], [ -122.784182517999966, 49.187056115000075 ], [ -122.781451922999935, 49.18704662800009 ], [ -122.780249083999962, 49.187043113000108 ], [ -122.77942371799999, 49.187040275000051 ], [ -122.778582804999957, 49.187037403 ], [ -122.778648493999924, 49.184367001000155 ], [ -122.779979204999947, 49.184346407000106 ], [ -122.781398041000017, 49.184347962000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148003811", "BldgCostT": "100393190", "sL_LossRatio": "0.753197920135242", "sL_AssetLoss": "1952050", "sL_BldgLoss": "1470280", "sL_StrLoss": "669050", "sL_NStrLoss": "801230", "sL_ContLoss": "481770", "geom_point": "0101000020E61000007D4BF7421AB25EC05E2020E37A974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778679278999945, 49.182518892000118 ], [ -122.780120775999961, 49.182520592000124 ], [ -122.781533503999952, 49.182522291000069 ], [ -122.781584505999945, 49.182522393000077 ], [ -122.783613991999957, 49.182525885000082 ], [ -122.784178014999938, 49.182526597000077 ], [ -122.785083669999921, 49.182527696000108 ], [ -122.78592069299998, 49.182528715000103 ], [ -122.787074491999959, 49.182530085000046 ], [ -122.787046410999977, 49.183431209000062 ], [ -122.787035789999919, 49.183863315000089 ], [ -122.787040399999938, 49.184351789000054 ], [ -122.78589902600001, 49.184351478000067 ], [ -122.784205099999923, 49.184350999000031 ], [ -122.781398041000017, 49.184347962000047 ], [ -122.779979204999947, 49.184346407000106 ], [ -122.778648493999924, 49.184367001000155 ], [ -122.778652693999945, 49.18389219900012 ], [ -122.77866315499999, 49.183567612000083 ], [ -122.778681319999976, 49.183003802000023 ], [ -122.77867973599993, 49.182622825000109 ], [ -122.778679278999945, 49.182518892000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118847167", "BldgCostT": "80436667", "sL_LossRatio": "0.71924015116088", "sL_AssetLoss": "2373630", "sL_BldgLoss": "1707210", "sL_StrLoss": "738330", "sL_NStrLoss": "968880", "sL_ContLoss": "666420", "geom_point": "0101000020E61000007154030753B25EC03F75EE6E4C974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787046410999977, 49.183431209000062 ], [ -122.787074491999959, 49.182530085000046 ], [ -122.78592069299998, 49.182528715000103 ], [ -122.785083669999921, 49.182527696000108 ], [ -122.784178014999938, 49.182526597000077 ], [ -122.783613991999957, 49.182525885000082 ], [ -122.781584505999945, 49.182522393000077 ], [ -122.781533503999952, 49.182522291000069 ], [ -122.781432155999951, 49.181565930000076 ], [ -122.781432031999984, 49.181564839000039 ], [ -122.781329229999969, 49.180594565000035 ], [ -122.781675177999944, 49.180591258000078 ], [ -122.782431709999969, 49.180584001000106 ], [ -122.78386789699999, 49.180601594000031 ], [ -122.787127518999924, 49.180611491000079 ], [ -122.78989633499998, 49.180677887000108 ], [ -122.789890053999954, 49.181510613000107 ], [ -122.78988312599995, 49.182428156000121 ], [ -122.789878008999949, 49.18310282200013 ], [ -122.789876106999955, 49.183353348000054 ], [ -122.789870641999968, 49.183876439000095 ], [ -122.789865549999959, 49.184360376000065 ], [ -122.788418892, 49.184352387000068 ], [ -122.787040399999938, 49.184351789000054 ], [ -122.787035789999919, 49.183863315000089 ], [ -122.787046410999977, 49.183431209000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202601333", "BldgCostT": "128363333", "sL_LossRatio": "0.691194681782618", "sL_AssetLoss": "3859940", "sL_BldgLoss": "2667970", "sL_StrLoss": "1136660", "sL_NStrLoss": "1531310", "sL_ContLoss": "1191970", "geom_point": "0101000020E610000063578C802BB25EC010E82BCCEB964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78923788199991, 49.176900028 ], [ -122.79001318899995, 49.176901508000142 ], [ -122.789971804999951, 49.178195111000051 ], [ -122.789945800999931, 49.178829492000112 ], [ -122.789914703999941, 49.179991218000033 ], [ -122.78989633499998, 49.180677887000108 ], [ -122.787127518999924, 49.180611491000079 ], [ -122.78386789699999, 49.180601594000031 ], [ -122.782431709999969, 49.180584001000106 ], [ -122.781675177999944, 49.180591258000078 ], [ -122.781329229999969, 49.180594565000035 ], [ -122.781432031999984, 49.181564839000039 ], [ -122.781432155999951, 49.181565930000076 ], [ -122.781533503999952, 49.182522291000069 ], [ -122.780120775999961, 49.182520592000124 ], [ -122.778679278999945, 49.182518892000118 ], [ -122.778687998999928, 49.182214712000061 ], [ -122.778719966, 49.181076018000105 ], [ -122.778732781999977, 49.180619403000065 ], [ -122.778798857999973, 49.17879145700001 ], [ -122.778811207999979, 49.178449794000116 ], [ -122.778831350999937, 49.177892198000123 ], [ -122.778867274999982, 49.176897582000095 ], [ -122.780072578999977, 49.176889894000105 ], [ -122.780283268999966, 49.176888563000055 ], [ -122.78206311699995, 49.176894020000042 ], [ -122.784466793999954, 49.176902700000042 ], [ -122.785725272999926, 49.176899842000125 ], [ -122.78727050399999, 49.176896283000161 ], [ -122.78923788199991, 49.176900028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.725625539257981", "sL_AssetLoss": "11590", "sL_BldgLoss": "8410", "sL_StrLoss": "3990", "sL_NStrLoss": "4420", "sL_ContLoss": "3180", "geom_point": "0101000020E610000028F9E83FB1B05EC0041644CDA5974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.760202897999974, 49.184341301000075 ], [ -122.761437925999971, 49.184343859000094 ], [ -122.76143403499999, 49.185153430000064 ], [ -122.760198985999978, 49.185150873000069 ], [ -122.760202897999974, 49.184341301000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141702333", "BldgCostT": "86463333", "sL_LossRatio": "0.669064330099692", "sL_AssetLoss": "2236900", "sL_BldgLoss": "1496630", "sL_StrLoss": "700530", "sL_NStrLoss": "796100", "sL_ContLoss": "740270", "geom_point": "0101000020E6100000C1B7C90B1DB15EC0EFC6ED5D24974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.761046103999945, 49.187639606000033 ], [ -122.758685234999959, 49.187057682000074 ], [ -122.757182293999918, 49.186687205000112 ], [ -122.756862792999939, 49.18656669100006 ], [ -122.756607090999964, 49.186339190000098 ], [ -122.756474122999961, 49.186042307000072 ], [ -122.756486689999932, 49.184388398000117 ], [ -122.756508473999958, 49.182839246000128 ], [ -122.756573950999936, 49.178170868000088 ], [ -122.756590619999898, 49.176984909000062 ], [ -122.757529129999952, 49.176987791000116 ], [ -122.757652610999926, 49.176988170000129 ], [ -122.758517021999978, 49.176990811000024 ], [ -122.759957721999939, 49.176995200000135 ], [ -122.760121516999973, 49.17699569600007 ], [ -122.760245329999933, 49.176994941000032 ], [ -122.761082534999957, 49.176989764000076 ], [ -122.761947327999934, 49.17698442500005 ], [ -122.763003517999906, 49.176977889000142 ], [ -122.763552097999963, 49.176974504000093 ], [ -122.764375236999911, 49.176969401000051 ], [ -122.764443841999949, 49.176968969000015 ], [ -122.766516079999974, 49.176956094000033 ], [ -122.767703798999932, 49.176948690000053 ], [ -122.771968156999932, 49.176943262000052 ], [ -122.772841585999956, 49.176936053000126 ], [ -122.773029026999922, 49.176934503000034 ], [ -122.773856946999956, 49.176928099000072 ], [ -122.774462997999976, 49.176923389000081 ], [ -122.774954486999917, 49.17692118700009 ], [ -122.776057093999952, 49.176916200000107 ], [ -122.77639511699995, 49.176913958000036 ], [ -122.77804137399994, 49.176903067000126 ], [ -122.778867274999982, 49.176897582000095 ], [ -122.778831350999937, 49.177892198000123 ], [ -122.778811207999979, 49.178449794000116 ], [ -122.778798857999973, 49.17879145700001 ], [ -122.778732781999977, 49.180619403000065 ], [ -122.778719966, 49.181076018000105 ], [ -122.778687998999928, 49.182214712000061 ], [ -122.778679278999945, 49.182518892000118 ], [ -122.77867973599993, 49.182622825000109 ], [ -122.778681319999976, 49.183003802000023 ], [ -122.77866315499999, 49.183567612000083 ], [ -122.778652693999945, 49.18389219900012 ], [ -122.778648493999924, 49.184367001000155 ], [ -122.775339663999929, 49.183998692000053 ], [ -122.773256415999981, 49.183964334000073 ], [ -122.77287828599998, 49.183990806000082 ], [ -122.772957542999947, 49.182849527000073 ], [ -122.774568148999919, 49.182897777000029 ], [ -122.774604402999927, 49.182375466000032 ], [ -122.77471284899994, 49.182378714000052 ], [ -122.77474782599991, 49.181874768000114 ], [ -122.77514023399999, 49.181886519000081 ], [ -122.775140317999941, 49.181885304000083 ], [ -122.774027099999941, 49.181851962000017 ], [ -122.774022707999961, 49.181915242000116 ], [ -122.768547491999954, 49.181751089000045 ], [ -122.768611141999955, 49.180835742000042 ], [ -122.768499446999925, 49.180832391000095 ], [ -122.768527946999896, 49.180422523000068 ], [ -122.768510272999919, 49.180421993000088 ], [ -122.768570093999983, 49.179561672000034 ], [ -122.76856422799996, 49.179561496000119 ], [ -122.768580651999955, 49.179325302000031 ], [ -122.7685004399999, 49.179322895000084 ], [ -122.768522605999962, 49.17900411600003 ], [ -122.766318083999963, 49.178937938000097 ], [ -122.766344276999945, 49.178561489000089 ], [ -122.764602631999949, 49.178509175000023 ], [ -122.764526893, 49.179597080000093 ], [ -122.761461184999959, 49.179504925000103 ], [ -122.761459976999959, 49.179756279000095 ], [ -122.761871613999915, 49.179757129000073 ], [ -122.761870319999971, 49.180026987000069 ], [ -122.762281959999953, 49.180027834000065 ], [ -122.762278081999966, 49.180837408000059 ], [ -122.762689729, 49.180838255000026 ], [ -122.762688438999973, 49.181108111000071 ], [ -122.763100086999913, 49.181108957000092 ], [ -122.763096223999952, 49.181918530000161 ], [ -122.761861255999975, 49.181915990000071 ], [ -122.761862549999989, 49.181646132000019 ], [ -122.761039243999932, 49.181644432000105 ], [ -122.761041842999958, 49.181104716000121 ], [ -122.760630192999926, 49.181103865000068 ], [ -122.760631494999984, 49.180834007000101 ], [ -122.759808202, 49.180832297000045 ], [ -122.75980689499994, 49.181102155000119 ], [ -122.759723940999947, 49.181101982000058 ], [ -122.759572298999956, 49.183276689000081 ], [ -122.758973116, 49.183258658000035 ], [ -122.758973112999954, 49.183259300000081 ], [ -122.75881044399999, 49.183258960000039 ], [ -122.758734547999964, 49.184347062000064 ], [ -122.75966487899997, 49.184375057000096 ], [ -122.759629679999946, 49.184879829000117 ], [ -122.759788609999987, 49.184880160000013 ], [ -122.759784690999936, 49.18568973200005 ], [ -122.76019637899999, 49.185690588000057 ], [ -122.760192465999978, 49.186500160000072 ], [ -122.759516781999949, 49.186498755000059 ], [ -122.759497962999944, 49.186768576000034 ], [ -122.760602856999981, 49.186770871000142 ], [ -122.760601556999987, 49.187040729000067 ], [ -122.762660047999972, 49.187044977000063 ], [ -122.762658758, 49.187314834000126 ], [ -122.763706412999937, 49.187316983000102 ], [ -122.763832861999944, 49.185501413000097 ], [ -122.765186417999985, 49.185542077000065 ], [ -122.765191208999966, 49.185473247000068 ], [ -122.767531642, 49.185543516000102 ], [ -122.767491483999919, 49.187434094000011 ], [ -122.767484297999928, 49.187735714000027 ], [ -122.76320069399999, 49.187726901000111 ], [ -122.761608696999971, 49.187708472000111 ], [ -122.761594181999953, 49.187708292000082 ], [ -122.761046103999945, 49.187639606000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132490916", "BldgCostT": "89276666", "sL_LossRatio": "0.713948285422906", "sL_AssetLoss": "2140557", "sL_BldgLoss": "1528247", "sL_StrLoss": "618367", "sL_NStrLoss": "909880", "sL_ContLoss": "612310", "geom_point": "0101000020E6100000DE72799C37B15EC0C148ED4D25984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77364585499997, 49.191657011000082 ], [ -122.773179288999955, 49.191560154000129 ], [ -122.772154827999941, 49.191534843000106 ], [ -122.768268040999942, 49.191519979000084 ], [ -122.767470884999938, 49.191516927000109 ], [ -122.766628979999965, 49.191523016000069 ], [ -122.765995285999949, 49.191527605000061 ], [ -122.76539129499993, 49.191532 ], [ -122.763991343, 49.191543275000065 ], [ -122.763617799999963, 49.191546296000112 ], [ -122.763154086999947, 49.191553072000019 ], [ -122.761701986999967, 49.191574305000103 ], [ -122.75875911899999, 49.191613800000034 ], [ -122.756468190999939, 49.191610596000046 ], [ -122.75646822399996, 49.19138464600011 ], [ -122.756468296, 49.190646513000054 ], [ -122.75646843499996, 49.190602015000088 ], [ -122.756470194999949, 49.189970687000084 ], [ -122.756470682999975, 49.189693473000055 ], [ -122.756472377999913, 49.188757976000097 ], [ -122.756472480999903, 49.188699391000029 ], [ -122.756475117999955, 49.188578243000016 ], [ -122.756479616, 49.188371391000025 ], [ -122.756498487999977, 49.187501787000016 ], [ -122.756439698999927, 49.187361307000067 ], [ -122.756802899999983, 49.187257835000032 ], [ -122.756799107999925, 49.186941494000031 ], [ -122.756826505999982, 49.186780326000118 ], [ -122.756862792999939, 49.18656669100006 ], [ -122.757182293999918, 49.186687205000112 ], [ -122.758685234999959, 49.187057682000074 ], [ -122.761046103999945, 49.187639606000033 ], [ -122.761594181999953, 49.187708292000082 ], [ -122.761608696999971, 49.187708472000111 ], [ -122.76320069399999, 49.187726901000111 ], [ -122.767484297999928, 49.187735714000027 ], [ -122.767491483999919, 49.187434094000011 ], [ -122.767531642, 49.185543516000102 ], [ -122.767693547999968, 49.185548376000057 ], [ -122.767694003999978, 49.185541808000025 ], [ -122.768019160999955, 49.185551566000086 ], [ -122.768019696999914, 49.185436706000061 ], [ -122.767608013999947, 49.185435878000142 ], [ -122.767611495999986, 49.184691891000092 ], [ -122.768847453999982, 49.184496843000012 ], [ -122.768846838999963, 49.184628785000058 ], [ -122.769258517999958, 49.184629608000144 ], [ -122.769254059, 49.185588616000096 ], [ -122.772022221999975, 49.18567161800005 ], [ -122.772042937999956, 49.185373413000029 ], [ -122.772780729999937, 49.185395523000047 ], [ -122.77287828599998, 49.183990806000082 ], [ -122.773256415999981, 49.183964334000073 ], [ -122.775339663999929, 49.183998692000053 ], [ -122.778648493999924, 49.184367001000155 ], [ -122.778582804999957, 49.187037403 ], [ -122.778564042999946, 49.187713979000065 ], [ -122.778555023999971, 49.188037722000068 ], [ -122.778535816999948, 49.188730155000073 ], [ -122.778518695999978, 49.189345807000031 ], [ -122.778502292999946, 49.190136394000071 ], [ -122.778499892999946, 49.190146848000076 ], [ -122.778423679999918, 49.190479087000028 ], [ -122.778359412999961, 49.190602842000096 ], [ -122.778263796999923, 49.190786997000053 ], [ -122.778253917999976, 49.190804462000038 ], [ -122.778213739999941, 49.190875594000026 ], [ -122.777665617999943, 49.191767169000144 ], [ -122.77758277, 49.191901893000072 ], [ -122.777353798999954, 49.192295999000109 ], [ -122.773713454999921, 49.191683593000064 ], [ -122.77364585499997, 49.191657011000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132361477", "BldgCostT": "90399856", "sL_LossRatio": "0.737723310253334", "sL_AssetLoss": "2442230", "sL_BldgLoss": "1801690", "sL_StrLoss": "768900", "sL_NStrLoss": "1032790", "sL_ContLoss": "640540", "geom_point": "0101000020E6100000991D4E0541B15EC0FF358BDDDF984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.768283787999948, 49.197245695000021 ], [ -122.768036893999977, 49.197205007000079 ], [ -122.767500811, 49.197199697000059 ], [ -122.767533500999946, 49.19580320900004 ], [ -122.767220407000011, 49.195117108000055 ], [ -122.767147113999926, 49.194907698000073 ], [ -122.767138016999965, 49.194752364000102 ], [ -122.767133252999926, 49.194671182000079 ], [ -122.767108901999947, 49.194254202000138 ], [ -122.767119596999962, 49.193766190000076 ], [ -122.76718489299995, 49.193359995000066 ], [ -122.767346295, 49.193129583000086 ], [ -122.767427611999892, 49.192946508000027 ], [ -122.767452101999979, 49.192891282000154 ], [ -122.76746625699991, 49.191857351000053 ], [ -122.767470884999938, 49.191516927000109 ], [ -122.768268040999942, 49.191519979000084 ], [ -122.772154827999941, 49.191534843000106 ], [ -122.772166236999908, 49.191840511000088 ], [ -122.77216731099999, 49.191868602000064 ], [ -122.772328290999951, 49.192059901 ], [ -122.77268460099998, 49.192302186000049 ], [ -122.772943599999962, 49.192524394000088 ], [ -122.773021989999947, 49.192738495000079 ], [ -122.773021114999935, 49.192750952000054 ], [ -122.773002302999956, 49.193021697000056 ], [ -122.772902295000037, 49.193216895000042 ], [ -122.772716806999981, 49.193379895000092 ], [ -122.772641452999949, 49.193418567000066 ], [ -122.772157593999964, 49.193666814000053 ], [ -122.771189713999931, 49.194169396000106 ], [ -122.770617909999899, 49.1944612960001 ], [ -122.770443704999934, 49.194598402000061 ], [ -122.770337876999974, 49.194778190000122 ], [ -122.770335005999954, 49.195175385000084 ], [ -122.770347290999979, 49.19612280500008 ], [ -122.770348529999978, 49.1964021060001 ], [ -122.770432, 49.196582993000057 ], [ -122.770611718999973, 49.196760489000042 ], [ -122.770714818000016, 49.1968168020001 ], [ -122.771323986, 49.197093595000133 ], [ -122.772295502999924, 49.197567805000062 ], [ -122.771994272999947, 49.197794 ], [ -122.771835709999934, 49.197865799000063 ], [ -122.771635795999941, 49.197918384000047 ], [ -122.769706992999943, 49.197932602000037 ], [ -122.769328316999975, 49.197853696000045 ], [ -122.769154951999951, 49.197755990000061 ], [ -122.768988904999929, 49.197662406000049 ], [ -122.76895129899998, 49.197640183000061 ], [ -122.768283787999948, 49.197245695000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111890916", "BldgCostT": "76956666", "sL_LossRatio": "0.73965452110306", "sL_AssetLoss": "2329520", "sL_BldgLoss": "1723040", "sL_StrLoss": "711130", "sL_NStrLoss": "1011910", "sL_ContLoss": "606480", "geom_point": "0101000020E61000005171351596B15EC0A32A9E6107994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.772154827999941, 49.191534843000106 ], [ -122.773179288999955, 49.191560154000129 ], [ -122.77364585499997, 49.191657011000082 ], [ -122.773713454999921, 49.191683593000064 ], [ -122.777353798999954, 49.192295999000109 ], [ -122.777278783999989, 49.19245877 ], [ -122.777122788999961, 49.1927972840001 ], [ -122.777003941999922, 49.193284774000084 ], [ -122.777045580999982, 49.193613980000073 ], [ -122.777235728999955, 49.193879795000079 ], [ -122.777255684999943, 49.193907690000046 ], [ -122.777502299999981, 49.194151198000107 ], [ -122.778343002999961, 49.194689876000055 ], [ -122.778613677999914, 49.195139465000096 ], [ -122.778627020999963, 49.19620344300008 ], [ -122.77863840699996, 49.197110710000089 ], [ -122.778648168999908, 49.197890461000064 ], [ -122.778648867999934, 49.197944445000154 ], [ -122.778655500999946, 49.19847245400004 ], [ -122.7786594899999, 49.198792696000048 ], [ -122.77793038599998, 49.198797205000147 ], [ -122.774512524, 49.198818189000072 ], [ -122.773088894999916, 49.198826890000063 ], [ -122.773074360999942, 49.198362813000074 ], [ -122.773064609999963, 49.198050399000074 ], [ -122.772907818999968, 49.197897908000044 ], [ -122.772690204999932, 49.197751698000019 ], [ -122.772295502999924, 49.197567805000062 ], [ -122.771323986, 49.197093595000133 ], [ -122.770714818000016, 49.1968168020001 ], [ -122.770611718999973, 49.196760489000042 ], [ -122.770432, 49.196582993000057 ], [ -122.770348529999978, 49.1964021060001 ], [ -122.770347290999979, 49.19612280500008 ], [ -122.770335005999954, 49.195175385000084 ], [ -122.770337876999974, 49.194778190000122 ], [ -122.770443704999934, 49.194598402000061 ], [ -122.770617909999899, 49.1944612960001 ], [ -122.771189713999931, 49.194169396000106 ], [ -122.772157593999964, 49.193666814000053 ], [ -122.772641452999949, 49.193418567000066 ], [ -122.772716806999981, 49.193379895000092 ], [ -122.772902295000037, 49.193216895000042 ], [ -122.773002302999956, 49.193021697000056 ], [ -122.773021114999935, 49.192750952000054 ], [ -122.773021989999947, 49.192738495000079 ], [ -122.772943599999962, 49.192524394000088 ], [ -122.77268460099998, 49.192302186000049 ], [ -122.772328290999951, 49.192059901 ], [ -122.77216731099999, 49.191868602000064 ], [ -122.772166236999908, 49.191840511000088 ], [ -122.772154827999941, 49.191534843000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143203334", "BldgCostT": "98233334", "sL_LossRatio": "0.726820614686126", "sL_AssetLoss": "2537783", "sL_BldgLoss": "1844513", "sL_StrLoss": "832253", "sL_NStrLoss": "1012260", "sL_ContLoss": "693270", "geom_point": "0101000020E6100000EFBDD79454B15EC09ABA5DF5A1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767517245999926, 49.199602146000117 ], [ -122.767514195, 49.198841802000047 ], [ -122.767500811, 49.197199697000059 ], [ -122.768036893999977, 49.197205007000079 ], [ -122.768283787999948, 49.197245695000021 ], [ -122.76895129899998, 49.197640183000061 ], [ -122.768988904999929, 49.197662406000049 ], [ -122.769154951999951, 49.197755990000061 ], [ -122.769328316999975, 49.197853696000045 ], [ -122.769706992999943, 49.197932602000037 ], [ -122.771635795999941, 49.197918384000047 ], [ -122.771835709999934, 49.197865799000063 ], [ -122.771994272999947, 49.197794 ], [ -122.772295502999924, 49.197567805000062 ], [ -122.772690204999932, 49.197751698000019 ], [ -122.772907818999968, 49.197897908000044 ], [ -122.773064609999963, 49.198050399000074 ], [ -122.773074360999942, 49.198362813000074 ], [ -122.773088894999916, 49.198826890000063 ], [ -122.773076872999965, 49.199469088000029 ], [ -122.773072196999976, 49.199718403000126 ], [ -122.773513991999934, 49.199719895000058 ], [ -122.773858, 49.199764386000055 ], [ -122.774215081999969, 49.199858898000095 ], [ -122.774504117, 49.199984695000126 ], [ -122.774519369999965, 49.200001253000053 ], [ -122.774747906, 49.200248796000089 ], [ -122.774899384999969, 49.200537200000056 ], [ -122.774909288999979, 49.200967213000112 ], [ -122.774909816999966, 49.20175113200002 ], [ -122.77491057899995, 49.202431405000077 ], [ -122.773961505999949, 49.202445145000112 ], [ -122.771793425999945, 49.202476545000039 ], [ -122.77170729, 49.202477800000096 ], [ -122.770419854999915, 49.202488397000138 ], [ -122.769702601999953, 49.202494305000073 ], [ -122.767485180999955, 49.202510696000097 ], [ -122.767489298, 49.201564811000082 ], [ -122.767521495999958, 49.200648491000052 ], [ -122.767518900999903, 49.200006930000015 ], [ -122.767517245999926, 49.199602146000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154774309", "BldgCostT": "105794612", "sL_LossRatio": "0.74624016747995", "sL_AssetLoss": "1948890", "sL_BldgLoss": "1454340", "sL_StrLoss": "628120", "sL_NStrLoss": "826220", "sL_ContLoss": "494550", "geom_point": "0101000020E610000016012570B1B15EC0DF780CC9A8994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.773858, 49.199764386000055 ], [ -122.773513991999934, 49.199719895000058 ], [ -122.773072196999976, 49.199718403000126 ], [ -122.773076872999965, 49.199469088000029 ], [ -122.773088894999916, 49.198826890000063 ], [ -122.774512524, 49.198818189000072 ], [ -122.77793038599998, 49.198797205000147 ], [ -122.7786594899999, 49.198792696000048 ], [ -122.778675835999962, 49.199605555000112 ], [ -122.778677993999963, 49.199713093000106 ], [ -122.778675612999962, 49.200001984 ], [ -122.778670588999958, 49.20061120400009 ], [ -122.77867155499996, 49.200730638000046 ], [ -122.77867999599998, 49.201801047000075 ], [ -122.77868491000001, 49.202422706000092 ], [ -122.775863942999962, 49.202436522000049 ], [ -122.77491057899995, 49.202431405000077 ], [ -122.774909816999966, 49.20175113200002 ], [ -122.774909288999979, 49.200967213000112 ], [ -122.774899384999969, 49.200537200000056 ], [ -122.774747906, 49.200248796000089 ], [ -122.774519369999965, 49.200001253000053 ], [ -122.774504117, 49.199984695000126 ], [ -122.774215081999969, 49.199858898000095 ], [ -122.773858, 49.199764386000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91591083", "BldgCostT": "58593333", "sL_LossRatio": "0.703169371196755", "sL_AssetLoss": "1577600", "sL_BldgLoss": "1109320", "sL_StrLoss": "483830", "sL_NStrLoss": "625490", "sL_ContLoss": "468280", "geom_point": "0101000020E61000003B2195DE0EB35EC07F177CBB219A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795283604999938, 49.206082887000079 ], [ -122.795288123999924, 49.205303762000078 ], [ -122.79528890899999, 49.205170325000033 ], [ -122.795289120999925, 49.204970926000037 ], [ -122.795289817999929, 49.204262168000099 ], [ -122.795299863999901, 49.20365748400009 ], [ -122.795304992, 49.203346280000147 ], [ -122.793738029999957, 49.203357475000054 ], [ -122.792568715999934, 49.203365777000016 ], [ -122.792559408999978, 49.202506842000098 ], [ -122.793774347999914, 49.202491802000075 ], [ -122.795317220999934, 49.20247268300006 ], [ -122.796543529999937, 49.202459603000143 ], [ -122.797058332999967, 49.202456880000028 ], [ -122.797024336999954, 49.202034201000025 ], [ -122.797172502999942, 49.201676413000079 ], [ -122.797438133999918, 49.201286049000018 ], [ -122.797581728999944, 49.201074990000031 ], [ -122.798966615000026, 49.202383977000139 ], [ -122.799973264999934, 49.203335389000081 ], [ -122.799996328999967, 49.203357210000036 ], [ -122.800074590999941, 49.203431160000058 ], [ -122.80168318799997, 49.204951386000069 ], [ -122.801726377999969, 49.20499220500011 ], [ -122.802901114999941, 49.20612258700006 ], [ -122.80081929699999, 49.206028398000079 ], [ -122.800001609999953, 49.206033356000063 ], [ -122.799067972, 49.206039003000093 ], [ -122.798395208999963, 49.206043069000039 ], [ -122.798323291, 49.206043493000088 ], [ -122.797312268999974, 49.20606356800009 ], [ -122.796942200999979, 49.206070909000083 ], [ -122.795283604999938, 49.206082887000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253995750", "BldgCostT": "167535000", "sL_LossRatio": "0.709267162437283", "sL_AssetLoss": "4578327", "sL_BldgLoss": "3247257", "sL_StrLoss": "1499987", "sL_NStrLoss": "1747270", "sL_ContLoss": "1331070", "geom_point": "0101000020E610000051AE3ABC71B25EC040EC7520259A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789819812999923, 49.207061813000081 ], [ -122.78981187299999, 49.206124534000054 ], [ -122.788962308999885, 49.206115687000121 ], [ -122.788742217999982, 49.206113377000072 ], [ -122.788070114999954, 49.206107023000101 ], [ -122.787232799999927, 49.206099096000052 ], [ -122.785887648999903, 49.206086341000095 ], [ -122.785642720999959, 49.206084044000114 ], [ -122.785643966999942, 49.205106370000088 ], [ -122.78564497899994, 49.204285692000084 ], [ -122.785629928999967, 49.204266039000089 ], [ -122.785622393999972, 49.204256202000074 ], [ -122.784943102999975, 49.204255785000086 ], [ -122.784328499999901, 49.204253587000082 ], [ -122.781577808999913, 49.204242703000034 ], [ -122.77868338899998, 49.204224701000065 ], [ -122.778683907999977, 49.203627006000019 ], [ -122.77868423299999, 49.203222222000072 ], [ -122.77868491000001, 49.202422706000092 ], [ -122.779904611999939, 49.202420354000061 ], [ -122.780242632999958, 49.202419713000026 ], [ -122.781570390999931, 49.202427795000055 ], [ -122.782759668999944, 49.202435938000114 ], [ -122.783527679999963, 49.202441206000046 ], [ -122.784270101999965, 49.202440876 ], [ -122.785121681999968, 49.202429353000099 ], [ -122.785381887999932, 49.202377648000059 ], [ -122.785628247999924, 49.202287695000066 ], [ -122.785995881999966, 49.20207159700005 ], [ -122.786071741999947, 49.202026110000055 ], [ -122.786251261999951, 49.202148576000127 ], [ -122.786443972999948, 49.202239023000089 ], [ -122.786964665999932, 49.202408645000034 ], [ -122.786963146999966, 49.20247076000004 ], [ -122.787257612999923, 49.202498464000122 ], [ -122.788140563999917, 49.202500393000065 ], [ -122.789801376999918, 49.202504006000062 ], [ -122.791172487999958, 49.202520531000083 ], [ -122.792559408999978, 49.202506842000098 ], [ -122.792568715999934, 49.203365777000016 ], [ -122.793738029999957, 49.203357475000054 ], [ -122.795304992, 49.203346280000147 ], [ -122.795299863999901, 49.20365748400009 ], [ -122.795289817999929, 49.204262168000099 ], [ -122.795289120999925, 49.204970926000037 ], [ -122.79528890899999, 49.205170325000033 ], [ -122.795288123999924, 49.205303762000078 ], [ -122.795283604999938, 49.206082887000079 ], [ -122.794950100999969, 49.206087182000033 ], [ -122.793975519999918, 49.206099691000112 ], [ -122.793337199999925, 49.206107905000032 ], [ -122.793341011999985, 49.206622518000067 ], [ -122.793344088999973, 49.207042405000088 ], [ -122.789819812999923, 49.207061813000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236747666", "BldgCostT": "159326666", "sL_LossRatio": "0.738160576345312", "sL_AssetLoss": "3228620", "sL_BldgLoss": "2383240", "sL_StrLoss": "1139370", "sL_NStrLoss": "1243870", "sL_ContLoss": "845380", "geom_point": "0101000020E6100000AB907E3DD7B25EC08B272FF0E49A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809374907999953, 49.216345116000092 ], [ -122.809398174999956, 49.216006504000049 ], [ -122.807388651999986, 49.216003171000089 ], [ -122.80701150799996, 49.215938239000067 ], [ -122.807012307999969, 49.21573268500007 ], [ -122.80556907699993, 49.215730263000047 ], [ -122.804952959999952, 49.215642744000064 ], [ -122.804953681999962, 49.215459368000033 ], [ -122.80375137899992, 49.215457331000025 ], [ -122.803306264999918, 49.215374279000045 ], [ -122.803307009999912, 49.215186717000066 ], [ -122.802291788, 49.21518498300005 ], [ -122.801248117999975, 49.214990229000115 ], [ -122.801248424999955, 49.214913335000112 ], [ -122.800841781999964, 49.214912634000036 ], [ -122.80042008599996, 49.214829786000024 ], [ -122.799601679999967, 49.214668991000067 ], [ -122.799601794999916, 49.214640631000101 ], [ -122.79945605099995, 49.214640378000034 ], [ -122.799266802, 49.214603194000084 ], [ -122.798366639999983, 49.214483284000067 ], [ -122.798367105999901, 49.214368624000016 ], [ -122.7974945, 49.214367097000078 ], [ -122.795896413, 49.214154182000101 ], [ -122.795897769999925, 49.213824569000067 ], [ -122.795073927999965, 49.21382311200005 ], [ -122.795073010999886, 49.214044468000047 ], [ -122.794339201999961, 49.213946686000092 ], [ -122.793837857999975, 49.213894034000113 ], [ -122.793838161999986, 49.213820913000042 ], [ -122.793129585, 49.213819645000065 ], [ -122.792602624999972, 49.21376429600015 ], [ -122.792603526999983, 49.21354884300009 ], [ -122.789626054999971, 49.213543459000071 ], [ -122.789308262999967, 49.213521607000082 ], [ -122.789309319999973, 49.213273023000049 ], [ -122.788485485, 49.213271517000088 ], [ -122.788486635999931, 49.213001661000064 ], [ -122.784779405999984, 49.212994812000076 ], [ -122.784780577, 49.212724956000073 ], [ -122.784526942999946, 49.212724483000102 ], [ -122.783132926999897, 49.212721874000096 ], [ -122.783134108999889, 49.212452018000114 ], [ -122.780250739999957, 49.212446568000139 ], [ -122.780251935999985, 49.212176712000044 ], [ -122.778785264999954, 49.212173914000104 ], [ -122.778845829999952, 49.211321931000072 ], [ -122.778853515999927, 49.21121377500009 ], [ -122.778861986999956, 49.211094625000094 ], [ -122.780256719999969, 49.211097285000044 ], [ -122.780255523999955, 49.2113671420001 ], [ -122.783138830999945, 49.211372591000078 ], [ -122.783137648999983, 49.211642448000099 ], [ -122.784636948999918, 49.211645254000068 ], [ -122.7856090699999, 49.211647061000043 ], [ -122.785607902999928, 49.211916918000028 ], [ -122.793022204999914, 49.211930441000042 ], [ -122.793024458999966, 49.211390728000083 ], [ -122.793436358999912, 49.211391466000038 ], [ -122.793437483999966, 49.211121608000113 ], [ -122.793849382999895, 49.211122345 ], [ -122.79385050499998, 49.210852488000064 ], [ -122.794262402999919, 49.210853222 ], [ -122.794263521999966, 49.210583365000097 ], [ -122.794675416999937, 49.210584098000091 ], [ -122.794675556999934, 49.210550143000027 ], [ -122.794499377999941, 49.210544903000091 ], [ -122.794523540999975, 49.210194838000113 ], [ -122.794212889999969, 49.210185597000041 ], [ -122.794243647999934, 49.209740000000131 ], [ -122.793856704999925, 49.209728488000039 ], [ -122.793872580999903, 49.209498525000129 ], [ -122.792620174999939, 49.209461256000047 ], [ -122.792644404999962, 49.209110395000039 ], [ -122.791761209999976, 49.209084103000045 ], [ -122.791760751999973, 49.20909073500011 ], [ -122.789597767999965, 49.209026317000031 ], [ -122.789589267999943, 49.209149286000034 ], [ -122.784796718999985, 49.209006399 ], [ -122.784795805000016, 49.209216819000069 ], [ -122.786031454999929, 49.209219114000099 ], [ -122.786025629999969, 49.210568399000103 ], [ -122.785613738, 49.210567635000125 ], [ -122.785612569999955, 49.210837492000053 ], [ -122.784719440999964, 49.210835831000047 ], [ -122.781905500999954, 49.210830552000061 ], [ -122.781906689, 49.210560695000062 ], [ -122.781494792999965, 49.210559917000047 ], [ -122.781495983999932, 49.210290060000013 ], [ -122.781084091999944, 49.210289280000033 ], [ -122.781085283999985, 49.210019423000141 ], [ -122.779849614999975, 49.210017075000088 ], [ -122.779850812999911, 49.209747218000096 ], [ -122.77902703700002, 49.209745646000059 ], [ -122.779028241, 49.209475789000066 ], [ -122.778977081999969, 49.209475691000137 ], [ -122.779166558999975, 49.206810201000067 ], [ -122.778997998999955, 49.206713644000075 ], [ -122.778854900999988, 49.2065607030001 ], [ -122.77872727399992, 49.206323520000041 ], [ -122.77868781399999, 49.206061056000038 ], [ -122.77868338899998, 49.204224701000065 ], [ -122.781577808999913, 49.204242703000034 ], [ -122.784328499999901, 49.204253587000082 ], [ -122.784943102999975, 49.204255785000086 ], [ -122.785622393999972, 49.204256202000074 ], [ -122.785629928999967, 49.204266039000089 ], [ -122.78564497899994, 49.204285692000084 ], [ -122.785643966999942, 49.205106370000088 ], [ -122.785642720999959, 49.206084044000114 ], [ -122.785887648999903, 49.206086341000095 ], [ -122.787232799999927, 49.206099096000052 ], [ -122.788070114999954, 49.206107023000101 ], [ -122.788742217999982, 49.206113377000072 ], [ -122.788962308999885, 49.206115687000121 ], [ -122.78981187299999, 49.206124534000054 ], [ -122.789819812999923, 49.207061813000081 ], [ -122.793344088999973, 49.207042405000088 ], [ -122.793341011999985, 49.206622518000067 ], [ -122.793337199999925, 49.206107905000032 ], [ -122.793975519999918, 49.206099691000112 ], [ -122.794950100999969, 49.206087182000033 ], [ -122.795283604999938, 49.206082887000079 ], [ -122.796942200999979, 49.206070909000083 ], [ -122.797312268999974, 49.20606356800009 ], [ -122.798323291, 49.206043493000088 ], [ -122.798395208999963, 49.206043069000039 ], [ -122.799067972, 49.206039003000093 ], [ -122.800001609999953, 49.206033356000063 ], [ -122.80081929699999, 49.206028398000079 ], [ -122.802901114999941, 49.20612258700006 ], [ -122.805875477999905, 49.208984310000119 ], [ -122.804567277999936, 49.208982105000132 ], [ -122.804566213999948, 49.209251962000096 ], [ -122.803330561999971, 49.209249864000064 ], [ -122.80333229199999, 49.208813973000062 ], [ -122.803163530999896, 49.208709862000028 ], [ -122.8025089449999, 49.208708745000038 ], [ -122.802510018999911, 49.208438888000053 ], [ -122.802098142999952, 49.208438183000077 ], [ -122.80209921899997, 49.208168325000024 ], [ -122.801708136999935, 49.208167655000103 ], [ -122.801559476999898, 49.210326271000056 ], [ -122.801678708999958, 49.210326476000091 ], [ -122.801679789000019, 49.21005661800006 ], [ -122.803739241999949, 49.210060137000021 ], [ -122.803737105999986, 49.210599850000037 ], [ -122.804972789999951, 49.210601943000015 ], [ -122.804970667999967, 49.211141657000155 ], [ -122.805794466999927, 49.211143045000036 ], [ -122.805795523999933, 49.21087318800015 ], [ -122.80703121599997, 49.210875259000012 ], [ -122.807034236999968, 49.210099074000127 ], [ -122.80716825199994, 49.210227997000068 ], [ -122.807311829999918, 49.210366112000045 ], [ -122.808216589999958, 49.211236472000046 ], [ -122.80837608799996, 49.211389899000125 ], [ -122.808953870999943, 49.212049395000037 ], [ -122.80938089199995, 49.212703601000086 ], [ -122.809532619, 49.21293598700008 ], [ -122.809636599, 49.213141897000114 ], [ -122.809905890999971, 49.21367510800011 ], [ -122.810077431999929, 49.214153827000104 ], [ -122.810107207, 49.214236906000089 ], [ -122.810290173999974, 49.21474764600012 ], [ -122.810332030999987, 49.21486449800009 ], [ -122.810793244999928, 49.216151696000111 ], [ -122.810844968999973, 49.216296107000112 ], [ -122.810960702999935, 49.216619012000102 ], [ -122.810961045999989, 49.216619970000096 ], [ -122.81028449899992, 49.216501693000083 ], [ -122.809374907999953, 49.216345116000092 ] ], [ [ -122.80744101699996, 49.211415662000029 ], [ -122.807442065999979, 49.211145804000083 ], [ -122.807030165999905, 49.211145117000108 ], [ -122.807029114999949, 49.211414973000103 ], [ -122.80744101699996, 49.211415662000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.762811127379209", "sL_AssetLoss": "6830", "sL_BldgLoss": "5210", "sL_StrLoss": "2700", "sL_NStrLoss": "2510", "sL_ContLoss": "1620", "geom_point": "0101000020E61000000CDA58479DB35EC0373C5A28DB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806210584999945, 49.210064309000082 ], [ -122.806213534999969, 49.209309540000049 ], [ -122.806227828999937, 49.209323291000054 ], [ -122.806999470999983, 49.210065629000077 ], [ -122.806210584999945, 49.210064309000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105702000", "BldgCostT": "68325000", "sL_LossRatio": "0.729435480768491", "sL_AssetLoss": "1299690", "sL_BldgLoss": "948040", "sL_StrLoss": "422640", "sL_NStrLoss": "525400", "sL_ContLoss": "351650", "geom_point": "0101000020E6100000C3D2B81EA2B35EC001ADAF647D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807034236999968, 49.210099074000127 ], [ -122.807034366999972, 49.210065688000043 ], [ -122.806999470999983, 49.210065629000077 ], [ -122.806227828999937, 49.209323291000054 ], [ -122.806213534999969, 49.209309540000049 ], [ -122.806214804999954, 49.208984881000056 ], [ -122.805875477999905, 49.208984310000119 ], [ -122.802901114999941, 49.20612258700006 ], [ -122.803156782999977, 49.20611009500012 ], [ -122.804452461999986, 49.206046831000052 ], [ -122.804377906999918, 49.206045700000104 ], [ -122.802590305999928, 49.204403412 ], [ -122.802588288999956, 49.20393479100008 ], [ -122.80361470699999, 49.203935513000069 ], [ -122.804286204999954, 49.204606813000041 ], [ -122.80490539, 49.205180197000047 ], [ -122.806314197999939, 49.205188599000067 ], [ -122.808215886999974, 49.20521439700012 ], [ -122.80913552600002, 49.205810101000097 ], [ -122.809549910999962, 49.205890897000067 ], [ -122.809764605999973, 49.20594229200006 ], [ -122.810731196999981, 49.206454711000085 ], [ -122.811085294999941, 49.206853507000147 ], [ -122.810517503999904, 49.206968304000043 ], [ -122.81029710699994, 49.207101397000031 ], [ -122.80995029799999, 49.20773441000005 ], [ -122.809747087999952, 49.208054612000055 ], [ -122.809417893999964, 49.208452090000101 ], [ -122.809173704999949, 49.208670992000052 ], [ -122.808523593999936, 49.209044501000093 ], [ -122.807804316999949, 49.209326006000047 ], [ -122.807681419999966, 49.209416899000153 ], [ -122.80767969599999, 49.210020519000111 ], [ -122.807728200999975, 49.210113888000073 ], [ -122.807779395999916, 49.210127097000111 ], [ -122.807314330999972, 49.210203881000048 ], [ -122.80716825199994, 49.210227997000068 ], [ -122.807034236999968, 49.210099074000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106224667", "BldgCostT": "69366667", "sL_LossRatio": "0.717831832284547", "sL_AssetLoss": "1976729", "sL_BldgLoss": "1418959", "sL_StrLoss": "601779", "sL_NStrLoss": "817180", "sL_ContLoss": "557770", "geom_point": "0101000020E6100000B8BBDE688DB35EC08E21A57E039A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.803767093999951, 49.203713915000051 ], [ -122.803762717999973, 49.203120004000048 ], [ -122.802106979999934, 49.203111400000097 ], [ -122.802107412999973, 49.201809493000056 ], [ -122.802434208999955, 49.201388485000024 ], [ -122.802805988999964, 49.201528403000076 ], [ -122.803622401999917, 49.201529213000107 ], [ -122.804338499999957, 49.201533308000059 ], [ -122.804509501999931, 49.201459981000056 ], [ -122.805258712999958, 49.201141602000099 ], [ -122.805826294999989, 49.201148488000058 ], [ -122.805841302999951, 49.201987797000051 ], [ -122.807457001999921, 49.201978899000082 ], [ -122.807645178999934, 49.201996204000054 ], [ -122.807724899999954, 49.202034599000079 ], [ -122.808150385999937, 49.202871605000034 ], [ -122.808198889999986, 49.203125402000062 ], [ -122.808244293, 49.203802406000129 ], [ -122.808439688999897, 49.204013706000062 ], [ -122.808367208999968, 49.204210598000024 ], [ -122.808340895999933, 49.204512599000083 ], [ -122.808215886999974, 49.20521439700012 ], [ -122.806314197999939, 49.205188599000067 ], [ -122.80490539, 49.205180197000047 ], [ -122.804286204999954, 49.204606813000041 ], [ -122.80361470699999, 49.203935513000069 ], [ -122.803719893000036, 49.203862018000045 ], [ -122.803767093999951, 49.203713915000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219529400", "BldgCostT": "140147972", "sL_LossRatio": "0.715961873427521", "sL_AssetLoss": "4133600", "sL_BldgLoss": "2959500", "sL_StrLoss": "1193700", "sL_NStrLoss": "1765800", "sL_ContLoss": "1174100", "geom_point": "0101000020E61000004410C6D3DBB35EC0B157CCC6D2994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809118384999977, 49.203961693000082 ], [ -122.808802111999938, 49.203931598000068 ], [ -122.808439688999897, 49.204013706000062 ], [ -122.808244293, 49.203802406000129 ], [ -122.808198889999986, 49.203125402000062 ], [ -122.808150385999937, 49.202871605000034 ], [ -122.807724899999954, 49.202034599000079 ], [ -122.807645178999934, 49.201996204000054 ], [ -122.807457001999921, 49.201978899000082 ], [ -122.805841302999951, 49.201987797000051 ], [ -122.805826294999989, 49.201148488000058 ], [ -122.807721395999963, 49.201147111000097 ], [ -122.807971887999969, 49.201076098000065 ], [ -122.808256499999985, 49.200888092000071 ], [ -122.808534818999959, 49.20069179500009 ], [ -122.808604206999931, 49.200560484000022 ], [ -122.808619782999969, 49.200333899000078 ], [ -122.808622964999969, 49.200001379000042 ], [ -122.808623997999987, 49.199893497000105 ], [ -122.808648275999971, 49.198740906000133 ], [ -122.812538584999956, 49.1987353970001 ], [ -122.81254506, 49.199540152000068 ], [ -122.812545800999956, 49.199631195000073 ], [ -122.812561081999931, 49.199888393 ], [ -122.812560019999978, 49.199944983000101 ], [ -122.812559026999949, 49.199998961000063 ], [ -122.812549299999887, 49.200519587000024 ], [ -122.812561220999939, 49.200970089000116 ], [ -122.812574091999949, 49.201457405000042 ], [ -122.812577822999927, 49.2018788990001 ], [ -122.812582689999914, 49.202432514000108 ], [ -122.812643001999945, 49.204993088000066 ], [ -122.812677105999924, 49.205216690000029 ], [ -122.812251293000017, 49.205501404000053 ], [ -122.811877392999961, 49.205270495000036 ], [ -122.811182779999982, 49.204880876000061 ], [ -122.810296993999941, 49.204384014 ], [ -122.809246396999924, 49.203996997000019 ], [ -122.809118384999977, 49.203961693000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195163568", "BldgCostT": "118036216", "sL_LossRatio": "0.656874947572701", "sL_AssetLoss": "4410870", "sL_BldgLoss": "2897390", "sL_StrLoss": "1084540", "sL_NStrLoss": "1812850", "sL_ContLoss": "1513480", "geom_point": "0101000020E610000067FDEBE425B45EC0BD8F5862D0994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812538584999956, 49.1987353970001 ], [ -122.817446917, 49.19877229800003 ], [ -122.817367791999942, 49.198885300000015 ], [ -122.817358906999985, 49.199656290000085 ], [ -122.817358716999976, 49.199997541000137 ], [ -122.817358658999964, 49.200078510000125 ], [ -122.817358393999939, 49.200564492000062 ], [ -122.817353031999957, 49.201014139000065 ], [ -122.817347408999936, 49.201485896000115 ], [ -122.817349660000033, 49.201931393000095 ], [ -122.817352306999965, 49.202456392000066 ], [ -122.816852303999951, 49.202444292000045 ], [ -122.816850703999961, 49.203268696000066 ], [ -122.816859000999955, 49.204408699000126 ], [ -122.814374281999974, 49.204420795000054 ], [ -122.814374216999923, 49.205222698000043 ], [ -122.812677105999924, 49.205216690000029 ], [ -122.812643001999945, 49.204993088000066 ], [ -122.812582689999914, 49.202432514000108 ], [ -122.812577822999927, 49.2018788990001 ], [ -122.812574091999949, 49.201457405000042 ], [ -122.812561220999939, 49.200970089000116 ], [ -122.812549299999887, 49.200519587000024 ], [ -122.812559026999949, 49.199998961000063 ], [ -122.812560019999978, 49.199944983000101 ], [ -122.812561081999931, 49.199888393 ], [ -122.812545800999956, 49.199631195000073 ], [ -122.81254506, 49.199540152000068 ], [ -122.812538584999956, 49.1987353970001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107173917", "BldgCostT": "70871667", "sL_LossRatio": "0.708448846146493", "sL_AssetLoss": "2092120", "sL_BldgLoss": "1482160", "sL_StrLoss": "602200", "sL_NStrLoss": "879960", "sL_ContLoss": "609960", "geom_point": "0101000020E610000035F11F1C7DB45EC0FB0CE2E2AC994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821493580999984, 49.198787299000067 ], [ -122.823043604999967, 49.198795197000038 ], [ -122.823021787999963, 49.1999973980001 ], [ -122.823009746999972, 49.200663149 ], [ -122.822999630999959, 49.201220958000143 ], [ -122.822997614999935, 49.201332802000103 ], [ -122.82282900200002, 49.201691803000081 ], [ -122.82229408399995, 49.202429306000099 ], [ -122.822160091999976, 49.202443301000045 ], [ -122.821663907999891, 49.202451512000074 ], [ -122.821434708999945, 49.202455291000078 ], [ -122.820073692999969, 49.202452096000044 ], [ -122.818685211999963, 49.202448892000028 ], [ -122.81808441599999, 49.202446492000085 ], [ -122.817352306999965, 49.202456392000066 ], [ -122.817349660000033, 49.201931393000095 ], [ -122.817347408999936, 49.201485896000115 ], [ -122.817353031999957, 49.201014139000065 ], [ -122.817358393999939, 49.200564492000062 ], [ -122.817358658999964, 49.200078510000125 ], [ -122.817358716999976, 49.199997541000137 ], [ -122.817358906999985, 49.199656290000085 ], [ -122.817367791999942, 49.198885300000015 ], [ -122.817446917, 49.19877229800003 ], [ -122.821493580999984, 49.198787299000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184950000", "BldgCostT": "115110000", "sL_LossRatio": "0.681244315289084", "sL_AssetLoss": "3496220", "sL_BldgLoss": "2381780", "sL_StrLoss": "1031690", "sL_NStrLoss": "1350090", "sL_ContLoss": "1114440", "geom_point": "0101000020E6100000DE9D21C179B45EC04185979E389A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.814726701999973, 49.206686411000163 ], [ -122.814253201999946, 49.206227312000095 ], [ -122.813711586999901, 49.205820299000024 ], [ -122.812677105999924, 49.205216690000029 ], [ -122.814374216999923, 49.205222698000043 ], [ -122.814374281999974, 49.204420795000054 ], [ -122.816859000999955, 49.204408699000126 ], [ -122.816850703999961, 49.203268696000066 ], [ -122.816852303999951, 49.202444292000045 ], [ -122.817352306999965, 49.202456392000066 ], [ -122.81808441599999, 49.202446492000085 ], [ -122.818685211999963, 49.202448892000028 ], [ -122.820073692999969, 49.202452096000044 ], [ -122.821434708999945, 49.202455291000078 ], [ -122.821663907999891, 49.202451512000074 ], [ -122.822160091999976, 49.202443301000045 ], [ -122.82404689699996, 49.202442203000118 ], [ -122.825109501, 49.202455503000074 ], [ -122.825141111999969, 49.203459186000018 ], [ -122.825130299999913, 49.204660783000051 ], [ -122.825109797999914, 49.205724286000091 ], [ -122.825106182999889, 49.206759394000052 ], [ -122.823309426, 49.206749614000096 ], [ -122.823269396999962, 49.206749413000182 ], [ -122.822577095000014, 49.206678504000102 ], [ -122.821886589999934, 49.206681610000054 ], [ -122.819674966999969, 49.206735540000118 ], [ -122.817975770999965, 49.206808049000088 ], [ -122.817485450000021, 49.207056747000124 ], [ -122.81557790399998, 49.207981999000062 ], [ -122.815472116999942, 49.207723898000047 ], [ -122.815155557999944, 49.207226951000088 ], [ -122.815053324, 49.207066399000034 ], [ -122.814726701999973, 49.206686411000163 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108904251", "BldgCostT": "72425001", "sL_LossRatio": "0.713522771774447", "sL_AssetLoss": "2323710", "sL_BldgLoss": "1658020", "sL_StrLoss": "707780", "sL_NStrLoss": "950240", "sL_ContLoss": "665690", "geom_point": "0101000020E610000015B66E9CF7B45EC022C09FD0A1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833303380999936, 49.19884181 ], [ -122.834162374999977, 49.19884590300012 ], [ -122.834151418999937, 49.199995928000121 ], [ -122.834144497999972, 49.200719399000015 ], [ -122.833297291999884, 49.200713734000075 ], [ -122.832514814999925, 49.200708504 ], [ -122.832226571999982, 49.200706583000098 ], [ -122.831246403999941, 49.200700010000112 ], [ -122.829848286999919, 49.200719208000073 ], [ -122.828510890999937, 49.200711391000027 ], [ -122.827101998, 49.20070769900007 ], [ -122.82711627899999, 49.202466908000112 ], [ -122.826382488999968, 49.202461490000054 ], [ -122.825109501, 49.202455503000074 ], [ -122.82404689699996, 49.202442203000118 ], [ -122.822160091999976, 49.202443301000045 ], [ -122.82229408399995, 49.202429306000099 ], [ -122.82282900200002, 49.201691803000081 ], [ -122.822997614999935, 49.201332802000103 ], [ -122.822999630999959, 49.201220958000143 ], [ -122.823009746999972, 49.200663149 ], [ -122.823021787999963, 49.1999973980001 ], [ -122.823043604999967, 49.198795197000038 ], [ -122.824586902999968, 49.19880237900005 ], [ -122.825692299999943, 49.198807491000082 ], [ -122.827069473999984, 49.198812902000014 ], [ -122.828496075999908, 49.198818869000057 ], [ -122.829944584999936, 49.198825504000062 ], [ -122.831273717000016, 49.198832103 ], [ -122.832012926999951, 49.198835641000095 ], [ -122.832314965999927, 49.198837077000114 ], [ -122.832562118999988, 49.198838267000092 ], [ -122.832580480999951, 49.198838356000081 ], [ -122.833303380999936, 49.19884181 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100940416", "BldgCostT": "67171666", "sL_LossRatio": "0.713423421349479", "sL_AssetLoss": "2171950", "sL_BldgLoss": "1549520", "sL_StrLoss": "640050", "sL_NStrLoss": "909470", "sL_ContLoss": "622430", "geom_point": "0101000020E6100000B55FC29115B55EC05617437BED994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833297291999884, 49.200713734000075 ], [ -122.834144497999972, 49.200719399000015 ], [ -122.83417831099996, 49.202215995000067 ], [ -122.834288197999939, 49.202516493000125 ], [ -122.832992002999944, 49.202509090000035 ], [ -122.832985496999953, 49.202854790000103 ], [ -122.83297370899993, 49.203481592000124 ], [ -122.831970100999939, 49.20347763700002 ], [ -122.831626919999948, 49.203476260000095 ], [ -122.831132593999953, 49.203474300000025 ], [ -122.829324481999947, 49.203467108000034 ], [ -122.829322913999945, 49.204094101000045 ], [ -122.828968414000016, 49.204562104000011 ], [ -122.828602681999939, 49.205195505000091 ], [ -122.827701395999938, 49.204930186000055 ], [ -122.826644210999959, 49.204737801000071 ], [ -122.825979314, 49.204686688000017 ], [ -122.825130299999913, 49.204660783000051 ], [ -122.825141111999969, 49.203459186000018 ], [ -122.825109501, 49.202455503000074 ], [ -122.826382488999968, 49.202461490000054 ], [ -122.82711627899999, 49.202466908000112 ], [ -122.827101998, 49.20070769900007 ], [ -122.828510890999937, 49.200711391000027 ], [ -122.829848286999919, 49.200719208000073 ], [ -122.831246403999941, 49.200700010000112 ], [ -122.832226571999982, 49.200706583000098 ], [ -122.832514814999925, 49.200708504 ], [ -122.833297291999884, 49.200713734000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119936751", "BldgCostT": "76325001", "sL_LossRatio": "0.68441387491773", "sL_AssetLoss": "2461420", "sL_BldgLoss": "1684630", "sL_StrLoss": "716030", "sL_NStrLoss": "968600", "sL_ContLoss": "776790", "geom_point": "0101000020E6100000C249BB4D4FB55EC02FDED9684A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832992002999944, 49.202509090000035 ], [ -122.834288197999939, 49.202516493000125 ], [ -122.835007794999939, 49.203091783000048 ], [ -122.836169903000012, 49.204001698000077 ], [ -122.83730579899999, 49.204913499000071 ], [ -122.835358216999964, 49.205944701000064 ], [ -122.834257705999974, 49.206547517000111 ], [ -122.834239199999928, 49.206960515000027 ], [ -122.834246694999962, 49.207655410000015 ], [ -122.834232893999911, 49.208583008000097 ], [ -122.834229189999974, 49.209542394000074 ], [ -122.832569305999968, 49.209612488000118 ], [ -122.832599416000022, 49.208568293000113 ], [ -122.8325669099999, 49.207635707000073 ], [ -122.831305211999933, 49.206617490000042 ], [ -122.830613619999923, 49.20615390200004 ], [ -122.829761379, 49.205676415000049 ], [ -122.829622306999966, 49.205598510000065 ], [ -122.829468392999928, 49.205537679000074 ], [ -122.829161988999957, 49.2054165690001 ], [ -122.828602681999939, 49.205195505000091 ], [ -122.828968414000016, 49.204562104000011 ], [ -122.829322913999945, 49.204094101000045 ], [ -122.829324481999947, 49.203467108000034 ], [ -122.831132593999953, 49.203474300000025 ], [ -122.831626919999948, 49.203476260000095 ], [ -122.831970100999939, 49.20347763700002 ], [ -122.83297370899993, 49.203481592000124 ], [ -122.832985496999953, 49.202854790000103 ], [ -122.832992002999944, 49.202509090000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144978333", "BldgCostT": "88488333", "sL_LossRatio": "0.678414546101036", "sL_AssetLoss": "2677391", "sL_BldgLoss": "1816381", "sL_StrLoss": "765301", "sL_NStrLoss": "1051080", "sL_ContLoss": "861010", "geom_point": "0101000020E6100000AFBD70630AB55EC00518E987899A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.825109797999914, 49.205724286000091 ], [ -122.825130299999913, 49.204660783000051 ], [ -122.825979314, 49.204686688000017 ], [ -122.826644210999959, 49.204737801000071 ], [ -122.827701395999938, 49.204930186000055 ], [ -122.828602681999939, 49.205195505000091 ], [ -122.829161988999957, 49.2054165690001 ], [ -122.829468392999928, 49.205537679000074 ], [ -122.829622306999966, 49.205598510000065 ], [ -122.829761379, 49.205676415000049 ], [ -122.830613619999923, 49.20615390200004 ], [ -122.831305211999933, 49.206617490000042 ], [ -122.8325669099999, 49.207635707000073 ], [ -122.832599416000022, 49.208568293000113 ], [ -122.832569305999968, 49.209612488000118 ], [ -122.830360609999929, 49.209719706000094 ], [ -122.829321769999979, 49.209799045000068 ], [ -122.828053347999969, 49.209823871000047 ], [ -122.827992207999927, 49.209111186000023 ], [ -122.827903314999915, 49.208805903000062 ], [ -122.827705403999957, 49.208548692000136 ], [ -122.827398310999939, 49.208323405 ], [ -122.827028608999981, 49.208130099000122 ], [ -122.82698749399998, 49.208108602000046 ], [ -122.826858292999958, 49.20805929700002 ], [ -122.826603612999975, 49.207962101000113 ], [ -122.826543545999954, 49.207945286000054 ], [ -122.826205003999945, 49.207850404000055 ], [ -122.82571011899995, 49.207762808000048 ], [ -122.825074289999975, 49.207727891000069 ], [ -122.825106182999889, 49.206759394000052 ], [ -122.825109797999914, 49.205724286000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134507167", "BldgCostT": "85926667", "sL_LossRatio": "0.69544873700425", "sL_AssetLoss": "2590270", "sL_BldgLoss": "1801400", "sL_StrLoss": "772710", "sL_NStrLoss": "1028690", "sL_ContLoss": "788870", "geom_point": "0101000020E6100000A4F0FB9228B55EC0E6227486189B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832569305999968, 49.209612488000118 ], [ -122.834229189999974, 49.209542394000074 ], [ -122.834190189999973, 49.210498111000071 ], [ -122.834186518, 49.21145749100009 ], [ -122.834182477999931, 49.212422299000075 ], [ -122.834171729999966, 49.213345505000078 ], [ -122.83362035899998, 49.213400278000016 ], [ -122.832973237999909, 49.213464600000073 ], [ -122.832520413999958, 49.213509598000059 ], [ -122.829162502999949, 49.213739703000016 ], [ -122.828487960999936, 49.213640844000068 ], [ -122.827355108999939, 49.213474794000057 ], [ -122.827307565999917, 49.213307601000032 ], [ -122.827224715999961, 49.213213564000036 ], [ -122.827135613999957, 49.213112387000066 ], [ -122.826517122999945, 49.212172439000049 ], [ -122.826412021999957, 49.212012753000046 ], [ -122.825800219, 49.211082858000054 ], [ -122.826820261999956, 49.211018001000049 ], [ -122.828095352999966, 49.210936928000102 ], [ -122.828053347999969, 49.209823871000047 ], [ -122.829321769999979, 49.209799045000068 ], [ -122.830360609999929, 49.209719706000094 ], [ -122.832569305999968, 49.209612488000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182272478", "BldgCostT": "118719857", "sL_LossRatio": "0.72552528344923", "sL_AssetLoss": "2386759", "sL_BldgLoss": "1731654", "sL_StrLoss": "798894", "sL_NStrLoss": "932760", "sL_ContLoss": "655105", "geom_point": "0101000020E61000009E86FB0A8AB45EC0B2EAEF7CF19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817126088999913, 49.214267803 ], [ -122.816909186999936, 49.213828089000081 ], [ -122.81669111099994, 49.213632976000099 ], [ -122.8166738199999, 49.213617502000098 ], [ -122.816436824999982, 49.213508210000036 ], [ -122.816387804999977, 49.213485610000056 ], [ -122.816197673999966, 49.213365400000079 ], [ -122.815652599999908, 49.213020776000086 ], [ -122.81510519899993, 49.212674691000046 ], [ -122.814488103999949, 49.211965405000058 ], [ -122.814446903999965, 49.211904261 ], [ -122.814073303000015, 49.211349490000032 ], [ -122.813860007999949, 49.210718807000084 ], [ -122.813844161999924, 49.210146984000104 ], [ -122.813838272999959, 49.209934306000065 ], [ -122.813866664999949, 49.209822432000045 ], [ -122.813951816999946, 49.209486783000031 ], [ -122.813979404999927, 49.209378095 ], [ -122.814256676999975, 49.208876302000064 ], [ -122.814614507999963, 49.208522908000091 ], [ -122.814681854999918, 49.208475455000027 ], [ -122.814946105999965, 49.208289398000034 ], [ -122.81557790399998, 49.207981999000062 ], [ -122.817485450000021, 49.207056747000124 ], [ -122.817975770999965, 49.206808049000088 ], [ -122.819674966999969, 49.206735540000118 ], [ -122.821886589999934, 49.206681610000054 ], [ -122.822577095000014, 49.206678504000102 ], [ -122.823269396999962, 49.206749413000182 ], [ -122.823309426, 49.206749614000096 ], [ -122.825106182999889, 49.206759394000052 ], [ -122.825074289999975, 49.207727891000069 ], [ -122.82571011899995, 49.207762808000048 ], [ -122.826205003999945, 49.207850404000055 ], [ -122.826543545999954, 49.207945286000054 ], [ -122.826603612999975, 49.207962101000113 ], [ -122.826858292999958, 49.20805929700002 ], [ -122.82698749399998, 49.208108602000046 ], [ -122.827028608999981, 49.208130099000122 ], [ -122.827398310999939, 49.208323405 ], [ -122.827705403999957, 49.208548692000136 ], [ -122.827903314999915, 49.208805903000062 ], [ -122.827992207999927, 49.209111186000023 ], [ -122.828053347999969, 49.209823871000047 ], [ -122.828095352999966, 49.210936928000102 ], [ -122.826820261999956, 49.211018001000049 ], [ -122.825800219, 49.211082858000054 ], [ -122.826412021999957, 49.212012753000046 ], [ -122.826517122999945, 49.212172439000049 ], [ -122.827135613999957, 49.213112387000066 ], [ -122.827224715999961, 49.213213564000036 ], [ -122.827307565999917, 49.213307601000032 ], [ -122.827355108999939, 49.213474794000057 ], [ -122.827077129999921, 49.213430811000137 ], [ -122.826798900999918, 49.213386738000047 ], [ -122.826411390999937, 49.213325399000126 ], [ -122.825559792999982, 49.213912238000042 ], [ -122.823357628999958, 49.214328234000135 ], [ -122.822627408999921, 49.214267982000045 ], [ -122.822272384999934, 49.214199903000065 ], [ -122.821798304999987, 49.214188594000071 ], [ -122.821103596999961, 49.214210502000093 ], [ -122.820998429999946, 49.214243407000041 ], [ -122.820976223999935, 49.214244007000097 ], [ -122.819318003999967, 49.214290190000014 ], [ -122.819095479999973, 49.214293022000085 ], [ -122.818248176999987, 49.214303717000099 ], [ -122.817222994999923, 49.21431671200002 ], [ -122.817126088999913, 49.214267803 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143293250", "BldgCostT": "90065000", "sL_LossRatio": "0.719939732424185", "sL_AssetLoss": "1570994", "sL_BldgLoss": "1131021", "sL_StrLoss": "520411", "sL_NStrLoss": "610610", "sL_ContLoss": "439973", "geom_point": "0101000020E6100000C43C5532FEB35EC035AD561E0B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.816480889999951, 49.217366637000104 ], [ -122.816481887999956, 49.217097409000118 ], [ -122.81481403799999, 49.217094747000061 ], [ -122.814811437999964, 49.217132653000085 ], [ -122.814428583999955, 49.21712133800002 ], [ -122.811946209, 49.216792190000035 ], [ -122.810961045999989, 49.216619970000096 ], [ -122.810960702999935, 49.216619012000102 ], [ -122.810844968999973, 49.216296107000112 ], [ -122.810793244999928, 49.216151696000111 ], [ -122.810332030999987, 49.21486449800009 ], [ -122.810290173999974, 49.21474764600012 ], [ -122.810107207, 49.214236906000089 ], [ -122.810077431999929, 49.214153827000104 ], [ -122.809905890999971, 49.21367510800011 ], [ -122.809636599, 49.213141897000114 ], [ -122.809532619, 49.21293598700008 ], [ -122.80938089199995, 49.212703601000086 ], [ -122.808953870999943, 49.212049395000037 ], [ -122.80837608799996, 49.211389899000125 ], [ -122.808216589999958, 49.211236472000046 ], [ -122.807311829999918, 49.210366112000045 ], [ -122.80716825199994, 49.210227997000068 ], [ -122.807314330999972, 49.210203881000048 ], [ -122.807779395999916, 49.210127097000111 ], [ -122.807728200999975, 49.210113888000073 ], [ -122.80767969599999, 49.210020519000111 ], [ -122.807681419999966, 49.209416899000153 ], [ -122.807804316999949, 49.209326006000047 ], [ -122.808523593999936, 49.209044501000093 ], [ -122.809173704999949, 49.208670992000052 ], [ -122.809417893999964, 49.208452090000101 ], [ -122.809747087999952, 49.208054612000055 ], [ -122.80995029799999, 49.20773441000005 ], [ -122.81029710699994, 49.207101397000031 ], [ -122.810517503999904, 49.206968304000043 ], [ -122.811085294999941, 49.206853507000147 ], [ -122.810731196999981, 49.206454711000085 ], [ -122.809764605999973, 49.20594229200006 ], [ -122.809549910999962, 49.205890897000067 ], [ -122.80913552600002, 49.205810101000097 ], [ -122.808215886999974, 49.20521439700012 ], [ -122.808340895999933, 49.204512599000083 ], [ -122.808367208999968, 49.204210598000024 ], [ -122.808439688999897, 49.204013706000062 ], [ -122.808802111999938, 49.203931598000068 ], [ -122.809118384999977, 49.203961693000082 ], [ -122.809246396999924, 49.203996997000019 ], [ -122.810296993999941, 49.204384014 ], [ -122.811182779999982, 49.204880876000061 ], [ -122.811877392999961, 49.205270495000036 ], [ -122.812251293000017, 49.205501404000053 ], [ -122.812677105999924, 49.205216690000029 ], [ -122.813711586999901, 49.205820299000024 ], [ -122.814253201999946, 49.206227312000095 ], [ -122.814726701999973, 49.206686411000163 ], [ -122.815053324, 49.207066399000034 ], [ -122.815155557999944, 49.207226951000088 ], [ -122.815472116999942, 49.207723898000047 ], [ -122.81557790399998, 49.207981999000062 ], [ -122.814946105999965, 49.208289398000034 ], [ -122.814681854999918, 49.208475455000027 ], [ -122.814614507999963, 49.208522908000091 ], [ -122.814256676999975, 49.208876302000064 ], [ -122.813979404999927, 49.209378095 ], [ -122.813951816999946, 49.209486783000031 ], [ -122.813866664999949, 49.209822432000045 ], [ -122.813838272999959, 49.209934306000065 ], [ -122.813844161999924, 49.210146984000104 ], [ -122.813860007999949, 49.210718807000084 ], [ -122.814073303000015, 49.211349490000032 ], [ -122.814446903999965, 49.211904261 ], [ -122.814488103999949, 49.211965405000058 ], [ -122.81510519899993, 49.212674691000046 ], [ -122.815652599999908, 49.213020776000086 ], [ -122.816197673999966, 49.213365400000079 ], [ -122.816387804999977, 49.213485610000056 ], [ -122.816436824999982, 49.213508210000036 ], [ -122.8166738199999, 49.213617502000098 ], [ -122.81669111099994, 49.213632976000099 ], [ -122.816909186999936, 49.213828089000081 ], [ -122.817126088999913, 49.214267803 ], [ -122.817109298999966, 49.214574827000071 ], [ -122.817104324999988, 49.214665880000091 ], [ -122.817080818999983, 49.215095398000074 ], [ -122.817187295999986, 49.21586688400005 ], [ -122.81719146399999, 49.216011432000109 ], [ -122.817194894999915, 49.216127352000079 ], [ -122.817193375999949, 49.216155715000056 ], [ -122.817182837999979, 49.216356993000097 ], [ -122.817177627999939, 49.216456389000072 ], [ -122.817159967999913, 49.216582761000019 ], [ -122.817146846999989, 49.216676318000104 ], [ -122.817140114999987, 49.216719722000086 ], [ -122.817137209999885, 49.216738009000032 ], [ -122.817132377999911, 49.216822148000105 ], [ -122.817125461000032, 49.216940869000091 ], [ -122.817119256999945, 49.217047998000105 ], [ -122.817117866000018, 49.217072449000092 ], [ -122.817204154999942, 49.217299163000128 ], [ -122.817198661999925, 49.217368404000055 ], [ -122.81648697899999, 49.217367275000079 ], [ -122.816480889999951, 49.217366637000104 ] ], [ [ -122.809909325999982, 49.212229325000123 ], [ -122.810189932999947, 49.212229787000119 ], [ -122.809947444999921, 49.212222609000058 ], [ -122.810095255999983, 49.210070762000072 ], [ -122.809917603999978, 49.210070469000108 ], [ -122.809916567999935, 49.210340325000061 ], [ -122.808680887999969, 49.210338286000137 ], [ -122.808677764999942, 49.211147857000121 ], [ -122.80950156499992, 49.211149219000028 ], [ -122.809500527999916, 49.211419076000055 ], [ -122.809912429999926, 49.211419754000062 ], [ -122.809909325999982, 49.212229325000123 ] ], [ [ -122.81230276299999, 49.206894989000062 ], [ -122.812306805999967, 49.206836070000143 ], [ -122.811989335999925, 49.206835553000047 ], [ -122.811989144999984, 49.206885711000012 ], [ -122.81230276299999, 49.206894989000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10546417", "BldgCostT": "5856667", "sL_LossRatio": "0.579304192685103", "sL_AssetLoss": "336300", "sL_BldgLoss": "194820", "sL_StrLoss": "71590", "sL_NStrLoss": "123230", "sL_ContLoss": "141480", "geom_point": "0101000020E61000005DE3D81F8DB85EC0A1DF5229D19B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.882801564999937, 49.219020556000025 ], [ -122.882802079999962, 49.218802885000102 ], [ -122.881566186, 49.218801625000019 ], [ -122.881568119999912, 49.217992051000095 ], [ -122.88239203699996, 49.217992893000044 ], [ -122.882392676999956, 49.217723035000091 ], [ -122.881156809999979, 49.217721771000079 ], [ -122.881157456999972, 49.217451913000019 ], [ -122.880333548999957, 49.217451062000038 ], [ -122.880333664999981, 49.217403205000082 ], [ -122.88163259399991, 49.216659803 ], [ -122.881689900999945, 49.216642884000045 ], [ -122.882807183999887, 49.216644023000129 ], [ -122.882807967999909, 49.216312793000014 ], [ -122.883511694999982, 49.216105019000111 ], [ -122.885280114999929, 49.216106789000101 ], [ -122.885278865999922, 49.216646505 ], [ -122.885690813999986, 49.216646912000023 ], [ -122.885691889, 49.216180527000105 ], [ -122.886014990999954, 49.216205490000057 ], [ -122.886797294999951, 49.215990389000098 ], [ -122.88724635599999, 49.215819027000066 ], [ -122.885504042, 49.21766104600006 ], [ -122.882801564999937, 49.219020556000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.750700280112045", "sL_AssetLoss": "10710", "sL_BldgLoss": "8040", "sL_StrLoss": "3430", "sL_NStrLoss": "4610", "sL_ContLoss": "2670", "geom_point": "0101000020E61000006312CBB956B65EC0B70918D9259C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.848204442999958, 49.219572177000074 ], [ -122.848702031999892, 49.219572829000072 ], [ -122.849299679999945, 49.219672001000056 ], [ -122.850253913999936, 49.219751281000065 ], [ -122.850252447999978, 49.220236602000107 ], [ -122.847781081999983, 49.220073291000084 ], [ -122.84778185299993, 49.219822358000073 ], [ -122.848204442999958, 49.219572177000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193019176", "BldgCostT": "113942433", "sL_LossRatio": "0.608787855146941", "sL_AssetLoss": "11920770", "sL_BldgLoss": "7257220", "sL_StrLoss": "2438220", "sL_NStrLoss": "4819000", "sL_ContLoss": "4663550", "geom_point": "0101000020E610000079B61DA67FB65EC0B75BBA38609B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822658549, 49.217828298000036 ], [ -122.822659197999883, 49.217646775000048 ], [ -122.820599428999955, 49.21764359400003 ], [ -122.820600405, 49.217373738000049 ], [ -122.819364550000017, 49.217371812000124 ], [ -122.819363567, 49.217641668000041 ], [ -122.819099137999984, 49.217641254000107 ], [ -122.81812807299994, 49.217539411000125 ], [ -122.818128695, 49.217369872000042 ], [ -122.817198661999925, 49.217368404000055 ], [ -122.817204154999942, 49.217299163000128 ], [ -122.817117866000018, 49.217072449000092 ], [ -122.817119256999945, 49.217047998000105 ], [ -122.817125461000032, 49.216940869000091 ], [ -122.817132377999911, 49.216822148000105 ], [ -122.817137209999885, 49.216738009000032 ], [ -122.817140114999987, 49.216719722000086 ], [ -122.817146846999989, 49.216676318000104 ], [ -122.817159967999913, 49.216582761000019 ], [ -122.817177627999939, 49.216456389000072 ], [ -122.817182837999979, 49.216356993000097 ], [ -122.817193375999949, 49.216155715000056 ], [ -122.817194894999915, 49.216127352000079 ], [ -122.81719146399999, 49.216011432000109 ], [ -122.817187295999986, 49.21586688400005 ], [ -122.817080818999983, 49.215095398000074 ], [ -122.817104324999988, 49.214665880000091 ], [ -122.817109298999966, 49.214574827000071 ], [ -122.817126088999913, 49.214267803 ], [ -122.817222994999923, 49.21431671200002 ], [ -122.818248176999987, 49.214303717000099 ], [ -122.819095479999973, 49.214293022000085 ], [ -122.819318003999967, 49.214290190000014 ], [ -122.820976223999935, 49.214244007000097 ], [ -122.820998429999946, 49.214243407000041 ], [ -122.821103596999961, 49.214210502000093 ], [ -122.821798304999987, 49.214188594000071 ], [ -122.822272384999934, 49.214199903000065 ], [ -122.822627408999921, 49.214267982000045 ], [ -122.823357628999958, 49.214328234000135 ], [ -122.825559792999982, 49.213912238000042 ], [ -122.826411390999937, 49.213325399000126 ], [ -122.826798900999918, 49.213386738000047 ], [ -122.827077129999921, 49.213430811000137 ], [ -122.827355108999939, 49.213474794000057 ], [ -122.828487960999936, 49.213640844000068 ], [ -122.829162502999949, 49.213739703000016 ], [ -122.832520413999958, 49.213509598000059 ], [ -122.832973237999909, 49.213464600000073 ], [ -122.83362035899998, 49.213400278000016 ], [ -122.834171729999966, 49.213345505000078 ], [ -122.834182477999931, 49.212422299000075 ], [ -122.834186518, 49.21145749100009 ], [ -122.835542514999972, 49.211457706000068 ], [ -122.836896509999988, 49.211466800000075 ], [ -122.83970190399998, 49.211485997000068 ], [ -122.841718537999981, 49.211499247000127 ], [ -122.842130405999939, 49.211501977000069 ], [ -122.842601714999915, 49.211505061 ], [ -122.843788186999987, 49.211512826000067 ], [ -122.845197704999975, 49.211522035000066 ], [ -122.845280890999959, 49.211535011000123 ], [ -122.845369870999932, 49.211566196000085 ], [ -122.845441157000025, 49.21160675200008 ], [ -122.8453609099999, 49.211718823000105 ], [ -122.845322219999929, 49.211835939000132 ], [ -122.845314606999921, 49.211972766000045 ], [ -122.845325174999957, 49.212483577000135 ], [ -122.845300159999951, 49.212578989000058 ], [ -122.845244523999938, 49.212664539000137 ], [ -122.845161265999963, 49.212733227000101 ], [ -122.84523741299995, 49.213047506000059 ], [ -122.847658737999922, 49.213181639000027 ], [ -122.848747483999944, 49.213210846000038 ], [ -122.850187920999957, 49.213226731000091 ], [ -122.852870635000031, 49.2132505430001 ], [ -122.854440871999927, 49.213256119000114 ], [ -122.8550289399999, 49.213244173000071 ], [ -122.85627577299999, 49.213213278000119 ], [ -122.856273791999982, 49.213311937000043 ], [ -122.856270708999915, 49.213466844000081 ], [ -122.856270700999929, 49.213467110000046 ], [ -122.857667384999971, 49.213469851000077 ], [ -122.859841032999952, 49.213474145000092 ], [ -122.859898547999975, 49.213481939000069 ], [ -122.85995198699996, 49.213505667000049 ], [ -122.859952164999982, 49.213505779000123 ], [ -122.859990611999962, 49.21353733200003 ], [ -122.860019543999954, 49.213582053000088 ], [ -122.860018908999947, 49.214321951000052 ], [ -122.86004415799999, 49.214377988000102 ], [ -122.860085221999938, 49.214415413000076 ], [ -122.860140814999966, 49.214437958000133 ], [ -122.861830502999965, 49.214444914000062 ], [ -122.861833418999979, 49.214319475000138 ], [ -122.861900272999904, 49.214281427000103 ], [ -122.861916115000014, 49.213645152 ], [ -122.861924937999973, 49.213291944000105 ], [ -122.861925744999922, 49.213259830000077 ], [ -122.861926412999964, 49.213151933000098 ], [ -122.861929266999965, 49.212699534000073 ], [ -122.864595093999966, 49.212713160000085 ], [ -122.867398908, 49.212716309000122 ], [ -122.869078716999951, 49.212718311000074 ], [ -122.870839172999965, 49.212723501000063 ], [ -122.870852084999967, 49.212573396000089 ], [ -122.870829901999954, 49.211944811000102 ], [ -122.870815992999923, 49.211642600000054 ], [ -122.874448418, 49.211648898000114 ], [ -122.8744401, 49.212587404000033 ], [ -122.874423398, 49.21275448700009 ], [ -122.874397241999958, 49.21285204 ], [ -122.874367547999967, 49.212962785000101 ], [ -122.874301910999961, 49.213207454000063 ], [ -122.874400852999912, 49.213173495000092 ], [ -122.875097033999964, 49.212934508000039 ], [ -122.877887811, 49.211976384000067 ], [ -122.878567582999921, 49.211743001000073 ], [ -122.8810759, 49.210606588000125 ], [ -122.881211188999927, 49.210493403000051 ], [ -122.881748492999975, 49.209828699000063 ], [ -122.883831016, 49.207391358000045 ], [ -122.884291638999983, 49.20679767900004 ], [ -122.884382506999941, 49.20668050900013 ], [ -122.884524223999946, 49.206408095000086 ], [ -122.884575152999957, 49.206190281000048 ], [ -122.884127432999946, 49.206180474000057 ], [ -122.883933898999928, 49.206177503000106 ], [ -122.883713334999953, 49.206173680000063 ], [ -122.883822225999921, 49.205983076000038 ], [ -122.883840200999941, 49.205857507000118 ], [ -122.88385423699998, 49.205856356 ], [ -122.884010287999956, 49.205843859000012 ], [ -122.884202215999935, 49.205828442000104 ], [ -122.88457406799999, 49.205799070000097 ], [ -122.885214694999945, 49.205748469000056 ], [ -122.885262598999958, 49.205744598000152 ], [ -122.886245052999982, 49.205662097000129 ], [ -122.886836210999903, 49.205612437000035 ], [ -122.88744989099996, 49.205560911000127 ], [ -122.887796677999944, 49.205583863000108 ], [ -122.888053797999945, 49.205600903000047 ], [ -122.888889290999913, 49.205767390000055 ], [ -122.889542449999979, 49.205995213000037 ], [ -122.891559124999944, 49.20669860000006 ], [ -122.891564532, 49.206700487000091 ], [ -122.891279985999944, 49.207026405000107 ], [ -122.890853102, 49.207430912000113 ], [ -122.890030504999984, 49.207852490000057 ], [ -122.887614689999964, 49.209632478000074 ], [ -122.887354543999948, 49.209632224000053 ], [ -122.88735411, 49.209823758000041 ], [ -122.887231106999948, 49.209901964000061 ], [ -122.886672921999917, 49.209901417000026 ], [ -122.886648034999965, 49.210272674000095 ], [ -122.886384385999975, 49.210440295000119 ], [ -122.884762511999909, 49.211193708000046 ], [ -122.88507889, 49.211454295000067 ], [ -122.884955782999981, 49.211581095000021 ], [ -122.884899195999949, 49.211535507000093 ], [ -122.88476311, 49.211616701 ], [ -122.884419607999959, 49.211346096000057 ], [ -122.884336505999954, 49.211373109000121 ], [ -122.881450012999963, 49.212845699000113 ], [ -122.87991099099996, 49.213186115000035 ], [ -122.879595680999955, 49.213328601000093 ], [ -122.879279517999962, 49.213518001000061 ], [ -122.8775621, 49.214118992000031 ], [ -122.87584519699999, 49.214522010000074 ], [ -122.876035205999955, 49.214782684000035 ], [ -122.876847310999949, 49.214667299000091 ], [ -122.876818205999925, 49.214801211000101 ], [ -122.875966010999974, 49.214918005000072 ], [ -122.875639083999928, 49.214539093000027 ], [ -122.875101618999921, 49.214601796000046 ], [ -122.872903887999939, 49.215021904000096 ], [ -122.871763711999947, 49.215120198000079 ], [ -122.871831915999934, 49.215353797000063 ], [ -122.870624488999937, 49.215523299000068 ], [ -122.87058208299996, 49.215604406000068 ], [ -122.869743804, 49.215765395000069 ], [ -122.869002984999966, 49.215790999000049 ], [ -122.868631992999951, 49.21606020399999 ], [ -122.86850708, 49.215970501000065 ], [ -122.868660593999948, 49.215791015000036 ], [ -122.867438606999912, 49.215762494000074 ], [ -122.865117082999973, 49.216030303000132 ], [ -122.864781121999954, 49.216055614000048 ], [ -122.86427118099995, 49.2160407800001 ], [ -122.864271063, 49.216084014000074 ], [ -122.86344718, 49.216083042000044 ], [ -122.863446978999946, 49.216156114000093 ], [ -122.862299985999982, 49.216242503000068 ], [ -122.861999221999923, 49.216340803000051 ], [ -122.861930985999962, 49.216205493000125 ], [ -122.861900602999981, 49.21635106300009 ], [ -122.86097477099996, 49.21634995200003 ], [ -122.860974408999965, 49.216479003000103 ], [ -122.859924705999987, 49.216554409000054 ], [ -122.859738341999929, 49.216559473000089 ], [ -122.859738939999957, 49.216348458000041 ], [ -122.859374178999971, 49.216348014000111 ], [ -122.859374034999973, 49.21635166300009 ], [ -122.859326992000021, 49.216349147000109 ], [ -122.859326362999965, 49.216570666000095 ], [ -122.857665282999946, 49.216615781000051 ], [ -122.855618713999945, 49.216613240000129 ], [ -122.8556195, 49.216343382000098 ], [ -122.854795610999943, 49.216342350000033 ], [ -122.854794820999956, 49.216612207000047 ], [ -122.854570016999958, 49.216611925000095 ], [ -122.853993297999963, 49.216555791000118 ], [ -122.849996579999953, 49.216514493000034 ], [ -122.84604229899999, 49.216600002000078 ], [ -122.843514989999903, 49.216713898000108 ], [ -122.842305094999986, 49.216864912000069 ], [ -122.841372093999937, 49.216773694000054 ], [ -122.840905294999942, 49.216853508000085 ], [ -122.83977931, 49.216779406000022 ], [ -122.834986085999944, 49.217295007000125 ], [ -122.832787884999945, 49.217650995000056 ], [ -122.83184060499994, 49.217425987000119 ], [ -122.828818808999941, 49.217618295000072 ], [ -122.82881810399999, 49.217978601000034 ], [ -122.828460310999944, 49.217960099000081 ], [ -122.828473796999972, 49.217834812000063 ], [ -122.828707582, 49.217826197000129 ], [ -122.828708421, 49.217628202000057 ], [ -122.824691280999943, 49.217919737000038 ], [ -122.824432354999885, 49.217919344000066 ], [ -122.822658549, 49.217828298000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2083167", "BldgCostT": "1436667", "sL_LossRatio": "0.678540772532189", "sL_AssetLoss": "93200", "sL_BldgLoss": "63240", "sL_StrLoss": "24040", "sL_NStrLoss": "39200", "sL_ContLoss": "29960", "geom_point": "0101000020E610000068EC2A2835B85EC025DFF0AB079C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.878271130999977, 49.21852834100013 ], [ -122.878271792999968, 49.218258483000071 ], [ -122.87744787299999, 49.218257612000066 ], [ -122.877448540999964, 49.217987755000074 ], [ -122.877272692999938, 49.217987567000087 ], [ -122.87731850899999, 49.217968602000091 ], [ -122.878157518999942, 49.217753601000091 ], [ -122.879508800999972, 49.21779645200013 ], [ -122.879508330999968, 49.217989921000047 ], [ -122.879920286999948, 49.217990350000079 ], [ -122.879917019999979, 49.219339638000143 ], [ -122.879505050999938, 49.219339210000044 ], [ -122.87950439399998, 49.219609067000121 ], [ -122.878680451999941, 49.219608204000096 ], [ -122.8786797899999, 49.219878062000113 ], [ -122.87744387099994, 49.219876758000083 ], [ -122.877443350999968, 49.220086592000087 ], [ -122.876712997999959, 49.220145838000107 ], [ -122.876207273999952, 49.220145297000094 ], [ -122.87620997099998, 49.219065868000051 ], [ -122.877857837999969, 49.219067621000072 ], [ -122.877859168, 49.218527906000084 ], [ -122.878271130999977, 49.21852834100013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111294333", "BldgCostT": "72363333", "sL_LossRatio": "0.701230629518809", "sL_AssetLoss": "2147275", "sL_BldgLoss": "1505735", "sL_StrLoss": "644945", "sL_NStrLoss": "860790", "sL_ContLoss": "641540", "geom_point": "0101000020E6100000C036C92CCEB55EC07BB936F1E19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834186518, 49.21145749100009 ], [ -122.834190189999973, 49.210498111000071 ], [ -122.834229189999974, 49.209542394000074 ], [ -122.835542213999958, 49.209549403000075 ], [ -122.836944204999924, 49.209557305000068 ], [ -122.837770368999941, 49.20956398600002 ], [ -122.839742392999966, 49.209579887000046 ], [ -122.84110238099997, 49.209581906000054 ], [ -122.841128188999932, 49.207668106000078 ], [ -122.842541781999969, 49.207687007000111 ], [ -122.843889098999952, 49.20769228500005 ], [ -122.84529120399999, 49.207700005000078 ], [ -122.84529519299997, 49.208044288000082 ], [ -122.845269185999939, 49.209598592000098 ], [ -122.845441157000025, 49.21160675200008 ], [ -122.845369870999932, 49.211566196000085 ], [ -122.845280890999959, 49.211535011000123 ], [ -122.845197704999975, 49.211522035000066 ], [ -122.843788186999987, 49.211512826000067 ], [ -122.842601714999915, 49.211505061 ], [ -122.842130405999939, 49.211501977000069 ], [ -122.841718537999981, 49.211499247000127 ], [ -122.83970190399998, 49.211485997000068 ], [ -122.836896509999988, 49.211466800000075 ], [ -122.835542514999972, 49.211457706000068 ], [ -122.834186518, 49.21145749100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115542166", "BldgCostT": "76186666", "sL_LossRatio": "0.69355830831916", "sL_AssetLoss": "2490588", "sL_BldgLoss": "1727368", "sL_StrLoss": "741088", "sL_NStrLoss": "986280", "sL_ContLoss": "763220", "geom_point": "0101000020E610000064A51839AEB55EC0E5F91DD48F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834257705999974, 49.206547517000111 ], [ -122.835358216999964, 49.205944701000064 ], [ -122.83730579899999, 49.204913499000071 ], [ -122.838565401999972, 49.205903589000052 ], [ -122.838799308999967, 49.206015907000051 ], [ -122.839073897999967, 49.206093399000068 ], [ -122.839374700999912, 49.206130085000034 ], [ -122.839779784999934, 49.206126695000101 ], [ -122.845317198999979, 49.206164598000015 ], [ -122.845296180999938, 49.206938807000014 ], [ -122.84529120399999, 49.207700005000078 ], [ -122.843889098999952, 49.20769228500005 ], [ -122.842541781999969, 49.207687007000111 ], [ -122.841128188999932, 49.207668106000078 ], [ -122.84110238099997, 49.209581906000054 ], [ -122.839742392999966, 49.209579887000046 ], [ -122.837770368999941, 49.20956398600002 ], [ -122.836944204999924, 49.209557305000068 ], [ -122.835542213999958, 49.209549403000075 ], [ -122.834229189999974, 49.209542394000074 ], [ -122.834232893999911, 49.208583008000097 ], [ -122.834246694999962, 49.207655410000015 ], [ -122.834239199999928, 49.206960515000027 ], [ -122.834257705999974, 49.206547517000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119861418", "BldgCostT": "79801668", "sL_LossRatio": "0.713745382192111", "sL_AssetLoss": "2577251", "sL_BldgLoss": "1839501", "sL_StrLoss": "748211", "sL_NStrLoss": "1091290", "sL_ContLoss": "737750", "geom_point": "0101000020E610000054ECD401B5B55EC07FBF66F3179A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83730579899999, 49.204913499000071 ], [ -122.836169903000012, 49.204001698000077 ], [ -122.835007794999939, 49.203091783000048 ], [ -122.834288197999939, 49.202516493000125 ], [ -122.83417831099996, 49.202215995000067 ], [ -122.834144497999972, 49.200719399000015 ], [ -122.83566880099994, 49.200741599000011 ], [ -122.836934489999919, 49.200750893000084 ], [ -122.837221298999978, 49.200753008000071 ], [ -122.837391311999951, 49.200836397000032 ], [ -122.837239784999937, 49.200945405000056 ], [ -122.83909830099995, 49.20242801100013 ], [ -122.838709193999975, 49.202640915000075 ], [ -122.840585502999957, 49.204106901000046 ], [ -122.840392284999922, 49.204222901000051 ], [ -122.845295485999941, 49.204261103000071 ], [ -122.845303300999959, 49.205258694000101 ], [ -122.845317198999979, 49.206164598000015 ], [ -122.839779784999934, 49.206126695000101 ], [ -122.839374700999912, 49.206130085000034 ], [ -122.839073897999967, 49.206093399000068 ], [ -122.838799308999967, 49.206015907000051 ], [ -122.838565401999972, 49.205903589000052 ], [ -122.83730579899999, 49.204913499000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81503666", "BldgCostT": "52061666", "sL_LossRatio": "0.673684574090155", "sL_AssetLoss": "2026720", "sL_BldgLoss": "1365370", "sL_StrLoss": "526350", "sL_NStrLoss": "839020", "sL_ContLoss": "661350", "geom_point": "0101000020E6100000A0E91D55EAB55EC03E0DDE78F3994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83909830099995, 49.20242801100013 ], [ -122.840165501999977, 49.201848487000106 ], [ -122.841204908999984, 49.201294205000046 ], [ -122.841734012999922, 49.201040299000091 ], [ -122.842288475999936, 49.200715098000074 ], [ -122.842628694999945, 49.200535016000067 ], [ -122.844435716, 49.202030386000033 ], [ -122.845298316999958, 49.20149247800002 ], [ -122.845271, 49.202541410000066 ], [ -122.845279600999902, 49.203647095000051 ], [ -122.845295485999941, 49.204261103000071 ], [ -122.840392284999922, 49.204222901000051 ], [ -122.840585502999957, 49.204106901000046 ], [ -122.838709193999975, 49.202640915000075 ], [ -122.83909830099995, 49.20242801100013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169624921", "BldgCostT": "101381173", "sL_LossRatio": "0.645897345074425", "sL_AssetLoss": "3641910", "sL_BldgLoss": "2352300", "sL_StrLoss": "977100", "sL_NStrLoss": "1375200", "sL_ContLoss": "1289610", "geom_point": "0101000020E61000005FCA752ACBB55EC01DB20D1E9E994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.837391311999951, 49.200836397000032 ], [ -122.837221298999978, 49.200753008000071 ], [ -122.836934489999919, 49.200750893000084 ], [ -122.83566880099994, 49.200741599000011 ], [ -122.834144497999972, 49.200719399000015 ], [ -122.834151418999937, 49.199995928000121 ], [ -122.834162374999977, 49.19884590300012 ], [ -122.835632794999952, 49.198852098000081 ], [ -122.836938704999966, 49.198858006000066 ], [ -122.839620692999958, 49.198863812000049 ], [ -122.84241777799997, 49.198868034000078 ], [ -122.842667919999926, 49.198868392000115 ], [ -122.845070885999959, 49.198872889000071 ], [ -122.84582190499999, 49.198874289000081 ], [ -122.845861631, 49.198924159000086 ], [ -122.846296016999972, 49.199469287000028 ], [ -122.846663486999915, 49.19983689600015 ], [ -122.846893155999965, 49.20001120200002 ], [ -122.847188082999978, 49.200235101000018 ], [ -122.84672312399999, 49.200516104000066 ], [ -122.846202547999965, 49.200869701000094 ], [ -122.845790915999913, 49.201149297000036 ], [ -122.845298316999958, 49.20149247800002 ], [ -122.844435716, 49.202030386000033 ], [ -122.842628694999945, 49.200535016000067 ], [ -122.842288475999936, 49.200715098000074 ], [ -122.841734012999922, 49.201040299000091 ], [ -122.841204908999984, 49.201294205000046 ], [ -122.840165501999977, 49.201848487000106 ], [ -122.83909830099995, 49.20242801100013 ], [ -122.837239784999937, 49.200945405000056 ], [ -122.837391311999951, 49.200836397000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321359042", "BldgCostT": "218163049", "sL_LossRatio": "0.759943063779825", "sL_AssetLoss": "3730490", "sL_BldgLoss": "2834960", "sL_StrLoss": "1247760", "sL_NStrLoss": "1587200", "sL_ContLoss": "895530", "geom_point": "0101000020E610000077E3271F4CB65EC0819BCE46159A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84672312399999, 49.200516104000066 ], [ -122.847188082999978, 49.200235101000018 ], [ -122.847321724999944, 49.200323656000087 ], [ -122.849132766999944, 49.201523800000132 ], [ -122.8492051489999, 49.201571764000079 ], [ -122.849282398999947, 49.201622954000051 ], [ -122.850589080999953, 49.202488803000094 ], [ -122.8508674939999, 49.202673543000081 ], [ -122.850965920999954, 49.202739496000092 ], [ -122.853109125999978, 49.204180575000066 ], [ -122.852148835999955, 49.204823735000041 ], [ -122.851800972999953, 49.205056843000101 ], [ -122.85178367499995, 49.205352752000067 ], [ -122.851731995999927, 49.206216205000075 ], [ -122.848210811999976, 49.206194302000078 ], [ -122.846819107, 49.206176079000052 ], [ -122.846060234999953, 49.206170297000043 ], [ -122.845317198999979, 49.206164598000015 ], [ -122.845303300999959, 49.205258694000101 ], [ -122.845295485999941, 49.204261103000071 ], [ -122.845279600999902, 49.203647095000051 ], [ -122.845271, 49.202541410000066 ], [ -122.845298316999958, 49.20149247800002 ], [ -122.845790915999913, 49.201149297000036 ], [ -122.846202547999965, 49.200869701000094 ], [ -122.84672312399999, 49.200516104000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41737417", "BldgCostT": "22206667", "sL_LossRatio": "0.588563481410806", "sL_AssetLoss": "618370", "sL_BldgLoss": "363950", "sL_StrLoss": "161620", "sL_NStrLoss": "202330", "sL_ContLoss": "254420", "geom_point": "0101000020E61000002E54FEB57CB65EC04F04922CB7994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850589080999953, 49.202488803000094 ], [ -122.849282398999947, 49.201622954000051 ], [ -122.8492051489999, 49.201571764000079 ], [ -122.849132766999944, 49.201523800000132 ], [ -122.849267745999967, 49.201435697000107 ], [ -122.849358010999936, 49.201375826000053 ], [ -122.850103968999974, 49.200880808000136 ], [ -122.850506958999944, 49.200622398000093 ], [ -122.851187022999937, 49.200186285000029 ], [ -122.851012736999962, 49.200045156000101 ], [ -122.850826765999912, 49.199691942000101 ], [ -122.850821941999925, 49.199155716000107 ], [ -122.850894217999937, 49.199040695000065 ], [ -122.850895544999943, 49.198920016000066 ], [ -122.852313467999949, 49.19892620300007 ], [ -122.852345969999973, 49.199876333000091 ], [ -122.85280962799996, 49.200081192000098 ], [ -122.852805614999951, 49.200821921000106 ], [ -122.852700165999948, 49.20106210400008 ], [ -122.852714485999968, 49.201082621000083 ], [ -122.852767710999942, 49.201158675000087 ], [ -122.852990231999939, 49.201337266000067 ], [ -122.853018097999936, 49.20141193900016 ], [ -122.852995300999964, 49.201505887000053 ], [ -122.852947896999964, 49.201539247000056 ], [ -122.852601911999926, 49.20178271200006 ], [ -122.852494852999882, 49.201803903000076 ], [ -122.85234597299997, 49.20177341800008 ], [ -122.852175102999936, 49.202006282000127 ], [ -122.851887443999942, 49.202201508000023 ], [ -122.851112890999971, 49.202656392000037 ], [ -122.850965920999954, 49.202739496000092 ], [ -122.8508674939999, 49.202673543000081 ], [ -122.850589080999953, 49.202488803000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236271334", "BldgCostT": "157218334", "sL_LossRatio": "0.73587126682281", "sL_AssetLoss": "3296120", "sL_BldgLoss": "2425520", "sL_StrLoss": "1033890", "sL_NStrLoss": "1391630", "sL_ContLoss": "870600", "geom_point": "0101000020E6100000590FB124ADB65EC03F003D68D1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852175102999936, 49.202006282000127 ], [ -122.85234597299997, 49.20177341800008 ], [ -122.852494852999882, 49.201803903000076 ], [ -122.852601911999926, 49.20178271200006 ], [ -122.852947896999964, 49.201539247000056 ], [ -122.852995300999964, 49.201505887000053 ], [ -122.853018097999936, 49.20141193900016 ], [ -122.852990231999939, 49.201337266000067 ], [ -122.852767710999942, 49.201158675000087 ], [ -122.852714485999968, 49.201082621000083 ], [ -122.852700165999948, 49.20106210400008 ], [ -122.852805614999951, 49.200821921000106 ], [ -122.85280962799996, 49.200081192000098 ], [ -122.852345969999973, 49.199876333000091 ], [ -122.852313467999949, 49.19892620300007 ], [ -122.852328352999947, 49.198926273000055 ], [ -122.852815894999978, 49.198928365000064 ], [ -122.85326138299996, 49.198930827000041 ], [ -122.853398637999973, 49.198931563000016 ], [ -122.853841788999887, 49.198933990000072 ], [ -122.854959884999957, 49.198936893000102 ], [ -122.855142298999951, 49.198937690000044 ], [ -122.856471406999972, 49.19894500200008 ], [ -122.856466891999986, 49.199998823000108 ], [ -122.856463098999924, 49.200892690000082 ], [ -122.856455107999949, 49.202187101000078 ], [ -122.856431983999983, 49.202790990000025 ], [ -122.856415916999936, 49.203373402000132 ], [ -122.856270184999914, 49.203662003 ], [ -122.855993830999964, 49.203933217000049 ], [ -122.855890375999977, 49.203981555000055 ], [ -122.855674070999939, 49.204034707000048 ], [ -122.854684678999973, 49.20466354200002 ], [ -122.854418637999942, 49.204843179000079 ], [ -122.85427193299995, 49.204942491000054 ], [ -122.853710650000011, 49.2045747270001 ], [ -122.853669682999922, 49.204547893000097 ], [ -122.853572574999987, 49.204484246000057 ], [ -122.853109125999978, 49.204180575000066 ], [ -122.850965920999954, 49.202739496000092 ], [ -122.851112890999971, 49.202656392000037 ], [ -122.851887443999942, 49.202201508000023 ], [ -122.852175102999936, 49.202006282000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "301593864", "BldgCostT": "206461936", "sL_LossRatio": "0.789966691475904", "sL_AssetLoss": "3533630", "sL_BldgLoss": "2791450", "sL_StrLoss": "1300890", "sL_NStrLoss": "1490560", "sL_ContLoss": "742180", "geom_point": "0101000020E610000052C819B3FAB65EC051C3AF3FA6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856463098999924, 49.200892690000082 ], [ -122.856466891999986, 49.199998823000108 ], [ -122.856471406999972, 49.19894500200008 ], [ -122.85647849499999, 49.19792709700009 ], [ -122.857808596999959, 49.197936043000034 ], [ -122.86237981499994, 49.197966691000097 ], [ -122.862399470999932, 49.198954730000096 ], [ -122.86206608399999, 49.198954930000056 ], [ -122.860648133, 49.198963183000025 ], [ -122.860642664999929, 49.200004219000043 ], [ -122.860638322999975, 49.200834208000117 ], [ -122.860705746999969, 49.200851473000043 ], [ -122.86073447699999, 49.200893755000052 ], [ -122.862041993999966, 49.200895794000076 ], [ -122.861971790999959, 49.202727216000021 ], [ -122.861906182999959, 49.202743335000044 ], [ -122.861875873999935, 49.202785692000127 ], [ -122.860579147999957, 49.202785759000101 ], [ -122.859223215999933, 49.202788589000079 ], [ -122.857809698999944, 49.202790588000013 ], [ -122.857121464999949, 49.202790793000077 ], [ -122.856431983999983, 49.202790990000025 ], [ -122.856455107999949, 49.202187101000078 ], [ -122.856463098999924, 49.200892690000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168083250", "BldgCostT": "105450000", "sL_LossRatio": "0.707312840482555", "sL_AssetLoss": "1941913", "sL_BldgLoss": "1373540", "sL_StrLoss": "645370", "sL_NStrLoss": "728170", "sL_ContLoss": "568373", "geom_point": "0101000020E6100000EC9FE91D15B75EC04C2067923F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85871999299998, 49.20714630300003 ], [ -122.85775008899999, 49.206918008000059 ], [ -122.85715088299996, 49.206706795000017 ], [ -122.856838755999917, 49.206572103000063 ], [ -122.856584310999949, 49.206462284000082 ], [ -122.856476479999955, 49.206391593000042 ], [ -122.856466606999973, 49.206385041000033 ], [ -122.856209273999966, 49.206214365000037 ], [ -122.856199386999947, 49.20620784600009 ], [ -122.854436178999919, 49.20505001500004 ], [ -122.85427193299995, 49.204942491000054 ], [ -122.854418637999942, 49.204843179000079 ], [ -122.854684678999973, 49.20466354200002 ], [ -122.855674070999939, 49.204034707000048 ], [ -122.855890375999977, 49.203981555000055 ], [ -122.855993830999964, 49.203933217000049 ], [ -122.856270184999914, 49.203662003 ], [ -122.856415916999936, 49.203373402000132 ], [ -122.856431983999983, 49.202790990000025 ], [ -122.857121464999949, 49.202790793000077 ], [ -122.857809698999944, 49.202790588000013 ], [ -122.859223215999933, 49.202788589000079 ], [ -122.860579147999957, 49.202785759000101 ], [ -122.861875873999935, 49.202785692000127 ], [ -122.861906182999959, 49.202743335000044 ], [ -122.861971790999959, 49.202727216000021 ], [ -122.862036294999953, 49.202747126000091 ], [ -122.862058045999945, 49.202790988000132 ], [ -122.863369137999953, 49.202781430000101 ], [ -122.863340285999968, 49.204711310000114 ], [ -122.86470293099994, 49.204712252000043 ], [ -122.866239594999925, 49.204715509000067 ], [ -122.867515984999955, 49.204712992000033 ], [ -122.867481534999939, 49.205374391000099 ], [ -122.867436387999987, 49.206239595000071 ], [ -122.867422149, 49.206331518000113 ], [ -122.867420663, 49.206340937000064 ], [ -122.867419303999924, 49.20634990700011 ], [ -122.866729016, 49.206410905000077 ], [ -122.866292249999958, 49.206463966000079 ], [ -122.866216626000025, 49.206473146000093 ], [ -122.865713183999929, 49.206534315000056 ], [ -122.865514190999974, 49.206558490000084 ], [ -122.864114309999962, 49.206780965000078 ], [ -122.863669185999981, 49.206851696000058 ], [ -122.861822101999948, 49.207197899000079 ], [ -122.861806163999987, 49.207199825000039 ], [ -122.861052808999943, 49.207290790000059 ], [ -122.86100016899999, 49.207291746000045 ], [ -122.861000497999925, 49.207174789000113 ], [ -122.85963836599997, 49.207173142000094 ], [ -122.85963243799992, 49.207260816000066 ], [ -122.859395608999961, 49.207241596000067 ], [ -122.85900097199999, 49.207185950000039 ], [ -122.85871999299998, 49.20714630300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113524333", "BldgCostT": "72253333", "sL_LossRatio": "0.698242985148027", "sL_AssetLoss": "1643014", "sL_BldgLoss": "1147223", "sL_StrLoss": "476873", "sL_NStrLoss": "670350", "sL_ContLoss": "495791", "geom_point": "0101000020E61000001216367F63B75EC0E52BAB5DD1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.863340285999968, 49.204711310000114 ], [ -122.863369137999953, 49.202781430000101 ], [ -122.862058045999945, 49.202790988000132 ], [ -122.862036294999953, 49.202747126000091 ], [ -122.861971790999959, 49.202727216000021 ], [ -122.862041993999966, 49.200895794000076 ], [ -122.863382682999926, 49.200894299000034 ], [ -122.864761686999927, 49.200893881000127 ], [ -122.86479455499996, 49.200000331000041 ], [ -122.864832257999936, 49.19897419100004 ], [ -122.86463109899999, 49.198965607000112 ], [ -122.864624711999937, 49.197983389000136 ], [ -122.86675317699995, 49.198020777000117 ], [ -122.867283286999907, 49.198030093000114 ], [ -122.867380218999955, 49.198038385000132 ], [ -122.867407454, 49.198040709000104 ], [ -122.867431608999979, 49.198042794000045 ], [ -122.867635293999967, 49.198060155000071 ], [ -122.867618232999945, 49.198734737000059 ], [ -122.867615256999983, 49.198851670000096 ], [ -122.867611788999952, 49.19898940500012 ], [ -122.867602345999927, 49.199362905000058 ], [ -122.867565937999956, 49.200004402 ], [ -122.86752954799999, 49.200645544000068 ], [ -122.867472137999968, 49.20072406000012 ], [ -122.867821521999986, 49.201515757000017 ], [ -122.867605512999916, 49.201515509000089 ], [ -122.867604793999959, 49.201785368000017 ], [ -122.866781148999962, 49.20178442100007 ], [ -122.86678089899999, 49.201877346000039 ], [ -122.866789733999909, 49.20190276200006 ], [ -122.86678068399999, 49.201956558000084 ], [ -122.866779697999974, 49.20232413700009 ], [ -122.868015180999976, 49.202325556000133 ], [ -122.868015898999943, 49.202055698000038 ], [ -122.868059830999982, 49.20205574700006 ], [ -122.868350601999921, 49.20271459 ], [ -122.867987517999907, 49.202949993000061 ], [ -122.867845209, 49.203127893000016 ], [ -122.867756385999954, 49.203325306000096 ], [ -122.867753052999916, 49.203430928000081 ], [ -122.867746695999969, 49.203631302000126 ], [ -122.867719998, 49.203864782000061 ], [ -122.86752749499999, 49.204339406000017 ], [ -122.867515984999955, 49.204712992000033 ], [ -122.866239594999925, 49.204715509000067 ], [ -122.86470293099994, 49.204712252000043 ], [ -122.863340285999968, 49.204711310000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117769539", "BldgCostT": "77305372", "sL_LossRatio": "0.692637550836169", "sL_AssetLoss": "2259710", "sL_BldgLoss": "1565160", "sL_StrLoss": "674440", "sL_NStrLoss": "890720", "sL_ContLoss": "694550", "geom_point": "0101000020E610000002F15FC54EB75EC02DAC8EFB5A994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86237981499994, 49.197966691000097 ], [ -122.862379084999958, 49.197021607000124 ], [ -122.862365696000026, 49.196184190000096 ], [ -122.864654804999986, 49.196176012000109 ], [ -122.864671797, 49.195314294000134 ], [ -122.866355102999975, 49.195315495000095 ], [ -122.866423194999953, 49.195342706000105 ], [ -122.866488676999936, 49.195368991000137 ], [ -122.867706968999983, 49.195369269000018 ], [ -122.867646329999943, 49.197646470000088 ], [ -122.867635293999967, 49.198060155000071 ], [ -122.867431608999979, 49.198042794000045 ], [ -122.867407454, 49.198040709000104 ], [ -122.867380218999955, 49.198038385000132 ], [ -122.867283286999907, 49.198030093000114 ], [ -122.86675317699995, 49.198020777000117 ], [ -122.864624711999937, 49.197983389000136 ], [ -122.86463109899999, 49.198965607000112 ], [ -122.864832257999936, 49.19897419100004 ], [ -122.86479455499996, 49.200000331000041 ], [ -122.864761686999927, 49.200893881000127 ], [ -122.863382682999926, 49.200894299000034 ], [ -122.862041993999966, 49.200895794000076 ], [ -122.86073447699999, 49.200893755000052 ], [ -122.860705746999969, 49.200851473000043 ], [ -122.860638322999975, 49.200834208000117 ], [ -122.860642664999929, 49.200004219000043 ], [ -122.860648133, 49.198963183000025 ], [ -122.86206608399999, 49.198954930000056 ], [ -122.862399470999932, 49.198954730000096 ], [ -122.86237981499994, 49.197966691000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143545083", "BldgCostT": "98523333", "sL_LossRatio": "0.765616931286322", "sL_AssetLoss": "2439980", "sL_BldgLoss": "1868090", "sL_StrLoss": "805990", "sL_NStrLoss": "1062100", "sL_ContLoss": "571890", "geom_point": "0101000020E610000061190BD808B75EC0D2C9A53328994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.863772768, 49.195307378000052 ], [ -122.864671797, 49.195314294000134 ], [ -122.864654804999986, 49.196176012000109 ], [ -122.862365696000026, 49.196184190000096 ], [ -122.862379084999958, 49.197021607000124 ], [ -122.86237981499994, 49.197966691000097 ], [ -122.857808596999959, 49.197936043000034 ], [ -122.85647849499999, 49.19792709700009 ], [ -122.856482894999942, 49.197010103000082 ], [ -122.856462393999934, 49.196239087000038 ], [ -122.85645929699993, 49.195372300000038 ], [ -122.857997718999968, 49.195365822000063 ], [ -122.862357124999974, 49.195296507000108 ], [ -122.86316875299994, 49.195302745000042 ], [ -122.863772768, 49.195307378000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160432250", "BldgCostT": "103955000", "sL_LossRatio": "0.712214732250506", "sL_AssetLoss": "2778530", "sL_BldgLoss": "1978910", "sL_StrLoss": "885530", "sL_NStrLoss": "1093380", "sL_ContLoss": "799620", "geom_point": "0101000020E61000003EA730212CB75EC0A1CD9AEDC4984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85645929699993, 49.195372300000038 ], [ -122.856441812999918, 49.194475307000104 ], [ -122.856443953999943, 49.193267166000034 ], [ -122.856428293999926, 49.19224228500007 ], [ -122.856469425999961, 49.191694805000104 ], [ -122.858040025999941, 49.191697384000115 ], [ -122.859334664999949, 49.191703600000089 ], [ -122.859512751999944, 49.191666454 ], [ -122.863393908999953, 49.191684928000029 ], [ -122.865042703999933, 49.191687905000066 ], [ -122.866063211999943, 49.191710400000026 ], [ -122.867772400999968, 49.191713184000108 ], [ -122.867693477999964, 49.193575050000035 ], [ -122.867702088999948, 49.194587088000027 ], [ -122.867706968999983, 49.195369269000018 ], [ -122.866488676999936, 49.195368991000137 ], [ -122.866423194999953, 49.195342706000105 ], [ -122.866355102999975, 49.195315495000095 ], [ -122.864671797, 49.195314294000134 ], [ -122.863772768, 49.195307378000052 ], [ -122.86316875299994, 49.195302745000042 ], [ -122.862357124999974, 49.195296507000108 ], [ -122.857997718999968, 49.195365822000063 ], [ -122.85645929699993, 49.195372300000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "566830895", "BldgCostT": "395016524", "sL_LossRatio": "0.864341273868526", "sL_AssetLoss": "5754440", "sL_BldgLoss": "4973800", "sL_StrLoss": "2373240", "sL_NStrLoss": "2600560", "sL_ContLoss": "780640", "geom_point": "0101000020E61000008D1389B6A1B65EC052D6048BA2984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850847838999954, 49.193146978000051 ], [ -122.850773843999946, 49.192113185000011 ], [ -122.850517071999903, 49.191671397000064 ], [ -122.850595173999977, 49.191672794000098 ], [ -122.852048256000018, 49.191689124000064 ], [ -122.854262679999977, 49.191706076000067 ], [ -122.856469425999961, 49.191694805000104 ], [ -122.856428293999926, 49.19224228500007 ], [ -122.856443953999943, 49.193267166000034 ], [ -122.854404611999939, 49.19325124200008 ], [ -122.854184898999961, 49.193249524000038 ], [ -122.854143719999939, 49.19324921700008 ], [ -122.851934395999976, 49.193231917000055 ], [ -122.851809346999914, 49.193230932000098 ], [ -122.850947701999971, 49.193150799000065 ], [ -122.850847838999954, 49.193146978000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "490914910", "BldgCostT": "281320971", "sL_LossRatio": "0.60350763430569", "sL_AssetLoss": "9623010", "sL_BldgLoss": "5807560", "sL_StrLoss": "2154800", "sL_NStrLoss": "3652760", "sL_ContLoss": "3815450", "geom_point": "0101000020E61000009075AD5A65B65EC0855CCC0939994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845192000999958, 49.197501710000132 ], [ -122.845208303999939, 49.195269169000071 ], [ -122.84520882299995, 49.195197188000115 ], [ -122.845214307999953, 49.194446205000062 ], [ -122.845215078, 49.193138953000044 ], [ -122.845215110999959, 49.193087796000107 ], [ -122.84542988699999, 49.19308935700009 ], [ -122.846912794999966, 49.193111196000103 ], [ -122.848243252999907, 49.193136561000088 ], [ -122.848212306999955, 49.194482599000011 ], [ -122.849523009999928, 49.194474991000099 ], [ -122.850885134999942, 49.194478809000053 ], [ -122.851764848999963, 49.194456699000057 ], [ -122.852194808999982, 49.19444589100015 ], [ -122.853787609999955, 49.194467196000055 ], [ -122.853820805999973, 49.196245790000035 ], [ -122.855130403999937, 49.196256111000068 ], [ -122.856354691, 49.196269296000025 ], [ -122.856462393999934, 49.196239087000038 ], [ -122.856482894999942, 49.197010103000082 ], [ -122.85647849499999, 49.19792709700009 ], [ -122.856471406999972, 49.19894500200008 ], [ -122.855142298999951, 49.198937690000044 ], [ -122.854959884999957, 49.198936893000102 ], [ -122.853841788999887, 49.198933990000072 ], [ -122.853398637999973, 49.198931563000016 ], [ -122.85326138299996, 49.198930827000041 ], [ -122.852815894999978, 49.198928365000064 ], [ -122.852328352999947, 49.198926273000055 ], [ -122.852313467999949, 49.19892620300007 ], [ -122.850895544999943, 49.198920016000066 ], [ -122.850894217999937, 49.199040695000065 ], [ -122.850821941999925, 49.199155716000107 ], [ -122.850826765999912, 49.199691942000101 ], [ -122.851012736999962, 49.200045156000101 ], [ -122.851187022999937, 49.200186285000029 ], [ -122.850506958999944, 49.200622398000093 ], [ -122.850103968999974, 49.200880808000136 ], [ -122.849358010999936, 49.201375826000053 ], [ -122.849267745999967, 49.201435697000107 ], [ -122.849132766999944, 49.201523800000132 ], [ -122.847321724999944, 49.200323656000087 ], [ -122.847188082999978, 49.200235101000018 ], [ -122.846893155999965, 49.20001120200002 ], [ -122.846663486999915, 49.19983689600015 ], [ -122.846296016999972, 49.199469287000028 ], [ -122.845861631, 49.198924159000086 ], [ -122.84582190499999, 49.198874289000081 ], [ -122.845648906999884, 49.198592600000012 ], [ -122.845367707999984, 49.197985294000084 ], [ -122.845192000999958, 49.197501710000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "484420809", "BldgCostT": "295804484", "sL_LossRatio": "0.671486499392144", "sL_AssetLoss": "7748540", "sL_BldgLoss": "5203040", "sL_StrLoss": "2123640", "sL_NStrLoss": "3079400", "sL_ContLoss": "2545500", "geom_point": "0101000020E61000002D245EE0EAB55EC0C1C70656FE984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.839711171999937, 49.191544119000099 ], [ -122.84190488199999, 49.191563418000023 ], [ -122.842311970999987, 49.19156904700003 ], [ -122.842433626999963, 49.191595131000028 ], [ -122.843248599000034, 49.191607854000011 ], [ -122.843385842999936, 49.191609996000089 ], [ -122.844237349999972, 49.191623266000093 ], [ -122.845260866999922, 49.19163922900006 ], [ -122.845215313999958, 49.192754211000072 ], [ -122.845215110999959, 49.193087796000107 ], [ -122.845215078, 49.193138953000044 ], [ -122.845214307999953, 49.194446205000062 ], [ -122.84520882299995, 49.195197188000115 ], [ -122.845208303999939, 49.195269169000071 ], [ -122.845192000999958, 49.197501710000132 ], [ -122.845367707999984, 49.197985294000084 ], [ -122.845648906999884, 49.198592600000012 ], [ -122.84582190499999, 49.198874289000081 ], [ -122.845070885999959, 49.198872889000071 ], [ -122.842667919999926, 49.198868392000115 ], [ -122.84241777799997, 49.198868034000078 ], [ -122.839620692999958, 49.198863812000049 ], [ -122.839634373999971, 49.198024656000065 ], [ -122.839643968999951, 49.197432802000115 ], [ -122.83968319899999, 49.194375989000079 ], [ -122.839682691999883, 49.193475004 ], [ -122.839711171999937, 49.191544119000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "654075970", "BldgCostT": "446835413", "sL_LossRatio": "0.807647726958725", "sL_AssetLoss": "6876030", "sL_BldgLoss": "5553410", "sL_StrLoss": "2543860", "sL_NStrLoss": "3009550", "sL_ContLoss": "1322620", "geom_point": "0101000020E6100000C247A4D0A6B55EC04AA80ABAFB984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836965818999957, 49.191507697000148 ], [ -122.838436166999927, 49.191531936000104 ], [ -122.839046301999986, 49.19153722800008 ], [ -122.839271184999944, 49.191539569000049 ], [ -122.839711171999937, 49.191544119000099 ], [ -122.839682691999883, 49.193475004 ], [ -122.83968319899999, 49.194375989000079 ], [ -122.839643968999951, 49.197432802000115 ], [ -122.839634373999971, 49.198024656000065 ], [ -122.839620692999958, 49.198863812000049 ], [ -122.836938704999966, 49.198858006000066 ], [ -122.836939174999927, 49.195444197000057 ], [ -122.836949790999967, 49.193874067000074 ], [ -122.836965818999957, 49.191507697000148 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321611719", "BldgCostT": "222130412", "sL_LossRatio": "0.810367448786574", "sL_AssetLoss": "3727050", "sL_BldgLoss": "3020280", "sL_StrLoss": "1384580", "sL_NStrLoss": "1635700", "sL_ContLoss": "706770", "geom_point": "0101000020E6100000BFCD34C465B55EC0C3BD85B7FF984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836470997, 49.191505142000032 ], [ -122.836965818999957, 49.191507697000148 ], [ -122.836949790999967, 49.193874067000074 ], [ -122.836939174999927, 49.195444197000057 ], [ -122.836938704999966, 49.198858006000066 ], [ -122.835632794999952, 49.198852098000081 ], [ -122.834162374999977, 49.19884590300012 ], [ -122.833303380999936, 49.19884181 ], [ -122.832580480999951, 49.198838356000081 ], [ -122.832562118999988, 49.198838267000092 ], [ -122.832314965999927, 49.198837077000114 ], [ -122.832012926999951, 49.198835641000095 ], [ -122.831273717000016, 49.198832103 ], [ -122.831355282999965, 49.198762386000112 ], [ -122.831378985, 49.195176291000067 ], [ -122.831970599000016, 49.195176988000064 ], [ -122.83221740099999, 49.195177276000045 ], [ -122.832108189999985, 49.19373729799999 ], [ -122.832126965999947, 49.192590045000038 ], [ -122.832144993999947, 49.191487709000057 ], [ -122.833300510999919, 49.19149089900003 ], [ -122.833863256999933, 49.191492447000044 ], [ -122.83417499899997, 49.191493316000063 ], [ -122.836470997, 49.191505142000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82663084", "BldgCostT": "54858334", "sL_LossRatio": "0.707713798506195", "sL_AssetLoss": "1589230", "sL_BldgLoss": "1124720", "sL_StrLoss": "474120", "sL_NStrLoss": "650600", "sL_ContLoss": "464510", "geom_point": "0101000020E610000071B3C38812B55EC007B9E6E937994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.827235547999933, 49.195175986000059 ], [ -122.828506535999963, 49.195168366000111 ], [ -122.829972409, 49.195240406000018 ], [ -122.831378985, 49.195176291000067 ], [ -122.831355282999965, 49.198762386000112 ], [ -122.831273717000016, 49.198832103 ], [ -122.829944584999936, 49.198825504000062 ], [ -122.828496075999908, 49.198818869000057 ], [ -122.827069473999984, 49.198812902000014 ], [ -122.827106760999968, 49.197996455000045 ], [ -122.827235547999933, 49.195175986000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142428668", "BldgCostT": "93861668", "sL_LossRatio": "0.747924541555266", "sL_AssetLoss": "2277810", "sL_BldgLoss": "1703630", "sL_StrLoss": "755340", "sL_NStrLoss": "948290", "sL_ContLoss": "574180", "geom_point": "0101000020E610000037AB1CFFEAB45EC061C2263AE4984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823054886999941, 49.196081716000059 ], [ -122.823057794999968, 49.195400818000117 ], [ -122.82305879799992, 49.195161895000048 ], [ -122.823063998999899, 49.193981793000034 ], [ -122.823066455999978, 49.193781665000081 ], [ -122.823079574, 49.192709994000154 ], [ -122.823099900999978, 49.191510492000091 ], [ -122.823775349999949, 49.19150657800008 ], [ -122.824427080999939, 49.191502801000105 ], [ -122.825395089999958, 49.19150212200006 ], [ -122.825655905999923, 49.191501949000099 ], [ -122.825862116999986, 49.191501807000094 ], [ -122.825957869999925, 49.191501726000062 ], [ -122.827083095999967, 49.191500895000026 ], [ -122.827220556999976, 49.191500802000078 ], [ -122.828167612999948, 49.191500093000101 ], [ -122.828547099, 49.191499792000137 ], [ -122.829361630999955, 49.191496870000059 ], [ -122.83135601399999, 49.191489702000119 ], [ -122.832144993999947, 49.191487709000057 ], [ -122.832126965999947, 49.192590045000038 ], [ -122.832108189999985, 49.19373729799999 ], [ -122.83221740099999, 49.195177276000045 ], [ -122.831970599000016, 49.195176988000064 ], [ -122.831378985, 49.195176291000067 ], [ -122.829972409, 49.195240406000018 ], [ -122.828506535999963, 49.195168366000111 ], [ -122.827235547999933, 49.195175986000059 ], [ -122.827106760999968, 49.197996455000045 ], [ -122.827069473999984, 49.198812902000014 ], [ -122.825692299999943, 49.198807491000082 ], [ -122.824586902999968, 49.19880237900005 ], [ -122.823043604999967, 49.198795197000038 ], [ -122.823047086999935, 49.197955478000054 ], [ -122.823050991999963, 49.197019975000096 ], [ -122.823054886999941, 49.196081716000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205850312", "BldgCostT": "137913191", "sL_LossRatio": "0.753298161349898", "sL_AssetLoss": "3172980", "sL_BldgLoss": "2390200", "sL_StrLoss": "1064370", "sL_NStrLoss": "1325830", "sL_ContLoss": "782780", "geom_point": "0101000020E610000083B673CC7FB45EC0C4B8872936994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817570400999912, 49.195127012000128 ], [ -122.82305879799992, 49.195161895000048 ], [ -122.823057794999968, 49.195400818000117 ], [ -122.823054886999941, 49.196081716000059 ], [ -122.823050991999963, 49.197019975000096 ], [ -122.823047086999935, 49.197955478000054 ], [ -122.823043604999967, 49.198795197000038 ], [ -122.821493580999984, 49.198787299000067 ], [ -122.817446917, 49.19877229800003 ], [ -122.817543690999955, 49.19866169600008 ], [ -122.81753849099999, 49.197856003000069 ], [ -122.81755610099999, 49.196937490000039 ], [ -122.817564285999936, 49.196057502000052 ], [ -122.817570400999912, 49.195127012000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131612303", "BldgCostT": "83503746", "sL_LossRatio": "0.671902250050033", "sL_AssetLoss": "2798160", "sL_BldgLoss": "1880090", "sL_StrLoss": "740190", "sL_NStrLoss": "1139900", "sL_ContLoss": "918070", "geom_point": "0101000020E6100000821F51783BB45EC08271054E15994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81886693199999, 49.193955674000073 ], [ -122.823063998999899, 49.193981793000034 ], [ -122.82305879799992, 49.195161895000048 ], [ -122.817570400999912, 49.195127012000128 ], [ -122.817564285999936, 49.196057502000052 ], [ -122.81755610099999, 49.196937490000039 ], [ -122.81753849099999, 49.197856003000069 ], [ -122.817543690999955, 49.19866169600008 ], [ -122.817446917, 49.19877229800003 ], [ -122.812538584999956, 49.1987353970001 ], [ -122.81248658399997, 49.197834593000096 ], [ -122.81248148, 49.196909189000053 ], [ -122.812479912999919, 49.196032384000048 ], [ -122.812479520999915, 49.195878865000083 ], [ -122.812478126000016, 49.195298990000062 ], [ -122.812475392999957, 49.195097100000048 ], [ -122.812464589999934, 49.193915495000091 ], [ -122.814021934999985, 49.193925301000057 ], [ -122.815724067999938, 49.193935986000064 ], [ -122.816039706999959, 49.193937982000065 ], [ -122.81886693199999, 49.193955674000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133957386", "BldgCostT": "87357079", "sL_LossRatio": "0.732103820731904", "sL_AssetLoss": "1550750", "sL_BldgLoss": "1135310", "sL_StrLoss": "517240", "sL_NStrLoss": "618070", "sL_ContLoss": "415440", "geom_point": "0101000020E6100000D1A50BF356B45EC0D1025183AB984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812461502999938, 49.193060402000036 ], [ -122.812449872999949, 49.191713864000043 ], [ -122.812448252999928, 49.191533696000072 ], [ -122.812462028999931, 49.191533719000041 ], [ -122.81295103299999, 49.191534195000088 ], [ -122.813070375999956, 49.191534325000084 ], [ -122.814648731999981, 49.191535844000079 ], [ -122.81486830899992, 49.191536066000047 ], [ -122.81593883099994, 49.191537082000082 ], [ -122.81707815799993, 49.191538167000012 ], [ -122.81720085699996, 49.191509353000107 ], [ -122.817512201999961, 49.191510442000038 ], [ -122.81886221299996, 49.191509831000083 ], [ -122.818954088999959, 49.191509793000044 ], [ -122.821126788, 49.191510201000028 ], [ -122.822224725999931, 49.191510367000042 ], [ -122.823099900999978, 49.191510492000091 ], [ -122.823079574, 49.192709994000154 ], [ -122.823066455999978, 49.193781665000081 ], [ -122.823063998999899, 49.193981793000034 ], [ -122.81886693199999, 49.193955674000073 ], [ -122.816039706999959, 49.193937982000065 ], [ -122.815724067999938, 49.193935986000064 ], [ -122.814021934999985, 49.193925301000057 ], [ -122.812464589999934, 49.193915495000091 ], [ -122.812461502999938, 49.193060402000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88456250", "BldgCostT": "57035000", "sL_LossRatio": "0.683964207612749", "sL_AssetLoss": "1893140", "sL_BldgLoss": "1294840", "sL_StrLoss": "557890", "sL_NStrLoss": "736950", "sL_ContLoss": "598300", "geom_point": "0101000020E610000084F45F1026B45EC00FF327222A984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812271387999928, 49.190613006000063 ], [ -122.812052297, 49.190165994000012 ], [ -122.811990909999977, 49.189821803000051 ], [ -122.811992831999987, 49.1886368340001 ], [ -122.811992894999932, 49.188591878000118 ], [ -122.811993620999928, 49.188163104000068 ], [ -122.812025131999974, 49.18690351900004 ], [ -122.81206585299999, 49.186110043000028 ], [ -122.81349238899999, 49.186110807000027 ], [ -122.817607199999969, 49.186117096000061 ], [ -122.817598662999913, 49.186612700000062 ], [ -122.817593406999933, 49.186919510000095 ], [ -122.817583400999965, 49.187666195000091 ], [ -122.817566687999943, 49.188572093000097 ], [ -122.817550502999936, 49.189549186000093 ], [ -122.817512201999961, 49.191510442000038 ], [ -122.81720085699996, 49.191509353000107 ], [ -122.81707815799993, 49.191538167000012 ], [ -122.81593883099994, 49.191537082000082 ], [ -122.81486830899992, 49.191536066000047 ], [ -122.814648731999981, 49.191535844000079 ], [ -122.813070375999956, 49.191534325000084 ], [ -122.81295103299999, 49.191534195000088 ], [ -122.812462028999931, 49.191533719000041 ], [ -122.812448252999928, 49.191533696000072 ], [ -122.812447585999948, 49.19149800800011 ], [ -122.812446739999984, 49.191456158000094 ], [ -122.812449632999929, 49.190975088000144 ], [ -122.812288118999973, 49.190646934000043 ], [ -122.812271387999928, 49.190613006000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132993250", "BldgCostT": "79315000", "sL_LossRatio": "0.649870669309922", "sL_AssetLoss": "2648250", "sL_BldgLoss": "1721020", "sL_StrLoss": "728500", "sL_NStrLoss": "992520", "sL_ContLoss": "927230", "geom_point": "0101000020E61000004C996935C3B45EC014718D1181974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817598662999913, 49.186612700000062 ], [ -122.817607199999969, 49.186117096000061 ], [ -122.81349238899999, 49.186110807000027 ], [ -122.81206585299999, 49.186110043000028 ], [ -122.812076330999986, 49.184381983000016 ], [ -122.812077401999915, 49.184202019000061 ], [ -122.81209025699998, 49.183662862000091 ], [ -122.812105693999953, 49.18301523100007 ], [ -122.812115542999976, 49.182600634000039 ], [ -122.812121112999947, 49.182367578 ], [ -122.812140356999947, 49.181558061000068 ], [ -122.812155342999944, 49.180929303 ], [ -122.812499139999957, 49.180929861000095 ], [ -122.812498118999912, 49.181199720000109 ], [ -122.812909769999948, 49.181200388000029 ], [ -122.812906718999969, 49.182009963000056 ], [ -122.812495060999979, 49.182009296000103 ], [ -122.812493021999927, 49.182549012000017 ], [ -122.812904683999989, 49.182549680000051 ], [ -122.812902990999973, 49.182999094000067 ], [ -122.814282281, 49.183039903000058 ], [ -122.814219811, 49.183951139000058 ], [ -122.814343733999948, 49.183954804000059 ], [ -122.814328281, 49.184180217000041 ], [ -122.81423641, 49.185520292000078 ], [ -122.81508874, 49.185521661000038 ], [ -122.815144220999954, 49.184712167000015 ], [ -122.814954946999947, 49.184711864000121 ], [ -122.81495695299995, 49.184174118000037 ], [ -122.814957966999941, 49.183902288000098 ], [ -122.816604660999971, 49.183904915000035 ], [ -122.816603726999915, 49.184158129000075 ], [ -122.816603103999938, 49.18432641900008 ], [ -122.82064923099999, 49.184445938000088 ], [ -122.820631687999949, 49.184702350000045 ], [ -122.820712545999982, 49.18470473700004 ], [ -122.820656051999947, 49.185530437000061 ], [ -122.822362299999966, 49.185533074000048 ], [ -122.822367422999946, 49.184101962000049 ], [ -122.822369062999911, 49.183644065000074 ], [ -122.8234122369999, 49.183645665000022 ], [ -122.823494722999939, 49.18243895200002 ], [ -122.82690132899999, 49.182539376000065 ], [ -122.826902889999943, 49.182091583000037 ], [ -122.826704319999976, 49.182085733000058 ], [ -122.826708021999977, 49.182031496000079 ], [ -122.826491439999955, 49.182031171000048 ], [ -122.826493327999941, 49.181491453 ], [ -122.826081673999965, 49.181490834000044 ], [ -122.826082619999951, 49.181220975000059 ], [ -122.824847663999947, 49.181219109000011 ], [ -122.824850521999977, 49.180409534000013 ], [ -122.825262166999948, 49.18041015600005 ], [ -122.825262402999925, 49.180342879000165 ], [ -122.825201970999942, 49.180341098000063 ], [ -122.825213627999986, 49.180170452000084 ], [ -122.824705964999907, 49.180155485000093 ], [ -122.824921712, 49.176997571000079 ], [ -122.825033309999938, 49.176998475000026 ], [ -122.82698049699999, 49.177014192000115 ], [ -122.827394502999937, 49.176976800000048 ], [ -122.827854408999968, 49.17686870800005 ], [ -122.827865012999922, 49.176862993000015 ], [ -122.82847082699999, 49.176538189000055 ], [ -122.829063490999971, 49.176764974000058 ], [ -122.833177656, 49.178339018000074 ], [ -122.834535106999979, 49.178858293000097 ], [ -122.834358885, 49.180840773000085 ], [ -122.834318568999947, 49.18178016100007 ], [ -122.83428879899999, 49.182473030000047 ], [ -122.834266039999989, 49.183003799000076 ], [ -122.834211581999909, 49.184271103000036 ], [ -122.833461487999955, 49.184243726000076 ], [ -122.83140938699999, 49.184168809000042 ], [ -122.830194399000021, 49.184083504000057 ], [ -122.827459302999969, 49.184064284000065 ], [ -122.82596403099997, 49.18407479600009 ], [ -122.824385620999919, 49.184085851000141 ], [ -122.823432154999978, 49.184092501000116 ], [ -122.823377272999949, 49.184092893000056 ], [ -122.823089812999925, 49.184094900000062 ], [ -122.823090395999927, 49.184266192000052 ], [ -122.82310935000001, 49.186063842000088 ], [ -122.823109790999979, 49.186109296000055 ], [ -122.823112583999901, 49.187753693000047 ], [ -122.823120402999933, 49.189003598000028 ], [ -122.823119990999913, 49.189050251000033 ], [ -122.823114396999927, 49.189693612000028 ], [ -122.823101692999927, 49.190782492000046 ], [ -122.823099900999978, 49.191510492000091 ], [ -122.822224725999931, 49.191510367000042 ], [ -122.821126788, 49.191510201000028 ], [ -122.818954088999959, 49.191509793000044 ], [ -122.81886221299996, 49.191509831000083 ], [ -122.817512201999961, 49.191510442000038 ], [ -122.817550502999936, 49.189549186000093 ], [ -122.817566687999943, 49.188572093000097 ], [ -122.817583400999965, 49.187666195000091 ], [ -122.817593406999933, 49.186919510000095 ], [ -122.817598662999913, 49.186612700000062 ] ], [ [ -122.82936655599994, 49.18392447400003 ], [ -122.829367484000031, 49.183654617000045 ], [ -122.831837515999965, 49.183658239000081 ], [ -122.831836956999922, 49.183823073000063 ], [ -122.831870767999973, 49.183823511000107 ], [ -122.831895342999928, 49.183463040000028 ], [ -122.831869025999964, 49.183462266000127 ], [ -122.831886782999987, 49.183201788000105 ], [ -122.831818039999987, 49.183199766000023 ], [ -122.83186489699996, 49.182512472000028 ], [ -122.828960039999984, 49.182426980000066 ], [ -122.828959444999953, 49.182599996000093 ], [ -122.828970211999959, 49.182600313000151 ], [ -122.828958870999912, 49.182766500000078 ], [ -122.828958601999886, 49.182844432000117 ], [ -122.828953552999963, 49.18284442500007 ], [ -122.828937611999933, 49.183078052000077 ], [ -122.828994039999913, 49.183079712000051 ], [ -122.828936438999961, 49.183923839000116 ], [ -122.82936655599994, 49.18392447400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7543084", "BldgCostT": "4938334", "sL_LossRatio": "0.668765976746104", "sL_AssetLoss": "194032", "sL_BldgLoss": "129762", "sL_StrLoss": "57782", "sL_NStrLoss": "71980", "sL_ContLoss": "64270", "geom_point": "0101000020E610000011E613057CB45EC06744CC992B974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.819900009999955, 49.183370381000081 ], [ -122.819900989999908, 49.183100523000128 ], [ -122.818665988999896, 49.183098590000064 ], [ -122.81866894599996, 49.182289014000141 ], [ -122.819903928, 49.182290946000094 ], [ -122.81990784499996, 49.181211512000075 ], [ -122.819084541999942, 49.181210226000147 ], [ -122.819085524999977, 49.180940366000058 ], [ -122.818673875999934, 49.180939721000087 ], [ -122.818677819999905, 49.179860287000039 ], [ -122.817854539999956, 49.17985899100016 ], [ -122.817857510999914, 49.179049415000051 ], [ -122.818680776999912, 49.179050711000038 ], [ -122.818683734999979, 49.178241134000082 ], [ -122.819918614999935, 49.178243066000078 ], [ -122.819912739999921, 49.179862219000086 ], [ -122.820324380999978, 49.179862860000036 ], [ -122.820323404999925, 49.180132719000042 ], [ -122.820735045999982, 49.180133358000042 ], [ -122.820734072999954, 49.180403217000077 ], [ -122.821969005999946, 49.180405128000054 ], [ -122.82196029399995, 49.182833855000069 ], [ -122.82113696499999, 49.182832584000018 ], [ -122.821135018999925, 49.183372300000023 ], [ -122.819900009999955, 49.183370381000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89751667", "BldgCostT": "57321667", "sL_LossRatio": "0.686470065490795", "sL_AssetLoss": "2070520", "sL_BldgLoss": "1421350", "sL_StrLoss": "591790", "sL_NStrLoss": "829560", "sL_ContLoss": "649170", "geom_point": "0101000020E61000001CFFC21BE7B45EC074E61E12BE974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.825890296999916, 49.18785630100006 ], [ -122.824531970999885, 49.18775949900003 ], [ -122.823112583999901, 49.187753693000047 ], [ -122.823109790999979, 49.186109296000055 ], [ -122.82310935000001, 49.186063842000088 ], [ -122.823090395999927, 49.184266192000052 ], [ -122.823089812999925, 49.184094900000062 ], [ -122.823377272999949, 49.184092893000056 ], [ -122.823432154999978, 49.184092501000116 ], [ -122.824385620999919, 49.184085851000141 ], [ -122.82596403099997, 49.18407479600009 ], [ -122.827459302999969, 49.184064284000065 ], [ -122.830194399000021, 49.184083504000057 ], [ -122.83140938699999, 49.184168809000042 ], [ -122.831408068999963, 49.184259062000081 ], [ -122.831405596999943, 49.184429823000109 ], [ -122.831395214999958, 49.185141493000089 ], [ -122.831394186999958, 49.185398292000102 ], [ -122.83138592099999, 49.186022403000031 ], [ -122.828655394999956, 49.186033989000137 ], [ -122.825917700999952, 49.186049703000023 ], [ -122.825920792999938, 49.186968801000106 ], [ -122.825890296999916, 49.18785630100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131641167", "BldgCostT": "80081667", "sL_LossRatio": "0.676616215847693", "sL_AssetLoss": "2346840", "sL_BldgLoss": "1587910", "sL_StrLoss": "660030", "sL_NStrLoss": "927880", "sL_ContLoss": "758930", "geom_point": "0101000020E61000008A2A4F6208B55EC0EBD521B30A984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.825890296999916, 49.18785630100006 ], [ -122.825920792999938, 49.186968801000106 ], [ -122.825917700999952, 49.186049703000023 ], [ -122.828655394999956, 49.186033989000137 ], [ -122.83138592099999, 49.186022403000031 ], [ -122.831381599999972, 49.187352198000028 ], [ -122.831372301000016, 49.188233986000071 ], [ -122.831371324999935, 49.18881970600011 ], [ -122.831369988999981, 49.189595296000022 ], [ -122.829971732999979, 49.189604956000053 ], [ -122.828640696999969, 49.189614141 ], [ -122.828618102999926, 49.189614300000073 ], [ -122.827165721999961, 49.189630100000059 ], [ -122.825876801999982, 49.18962100100002 ], [ -122.825890296999916, 49.18785630100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "428694115", "BldgCostT": "293536937", "sL_LossRatio": "0.789581398142646", "sL_AssetLoss": "4661470", "sL_BldgLoss": "3680610", "sL_StrLoss": "1685280", "sL_NStrLoss": "1995330", "sL_ContLoss": "980860", "geom_point": "0101000020E6100000781CB260E6B45EC00A5B7A3455984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823114396999927, 49.189693612000028 ], [ -122.823119990999913, 49.189050251000033 ], [ -122.823120402999933, 49.189003598000028 ], [ -122.823112583999901, 49.187753693000047 ], [ -122.824531970999885, 49.18775949900003 ], [ -122.825890296999916, 49.18785630100006 ], [ -122.825876801999982, 49.18962100100002 ], [ -122.827165721999961, 49.189630100000059 ], [ -122.828618102999926, 49.189614300000073 ], [ -122.828640696999969, 49.189614141 ], [ -122.829971732999979, 49.189604956000053 ], [ -122.831369988999981, 49.189595296000022 ], [ -122.831370423999914, 49.190357913000057 ], [ -122.831370507999964, 49.190492711000061 ], [ -122.831369697, 49.190546719000061 ], [ -122.83135601399999, 49.191489702000119 ], [ -122.829361630999955, 49.191496870000059 ], [ -122.828547099, 49.191499792000137 ], [ -122.828167612999948, 49.191500093000101 ], [ -122.827220556999976, 49.191500802000078 ], [ -122.827083095999967, 49.191500895000026 ], [ -122.825957869999925, 49.191501726000062 ], [ -122.825862116999986, 49.191501807000094 ], [ -122.825655905999923, 49.191501949000099 ], [ -122.825395089999958, 49.19150212200006 ], [ -122.824427080999939, 49.191502801000105 ], [ -122.823775349999949, 49.19150657800008 ], [ -122.823099900999978, 49.191510492000091 ], [ -122.823101692999927, 49.190782492000046 ], [ -122.823114396999927, 49.189693612000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70772166", "BldgCostT": "48336666", "sL_LossRatio": "0.767685307208394", "sL_AssetLoss": "804340", "sL_BldgLoss": "617480", "sL_StrLoss": "297110", "sL_NStrLoss": "320370", "sL_ContLoss": "186860", "geom_point": "0101000020E61000001E46B5464CB55EC05FA37AA50B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.831408068999963, 49.184259062000081 ], [ -122.83140938699999, 49.184168809000042 ], [ -122.833461487999955, 49.184243726000076 ], [ -122.834211581999909, 49.184271103000036 ], [ -122.834205587999961, 49.185104312000121 ], [ -122.83420768799999, 49.185395404000083 ], [ -122.834198868000016, 49.186035428000089 ], [ -122.834186497999937, 49.186934880000074 ], [ -122.834181016999977, 49.187330883000037 ], [ -122.834180897999985, 49.187339913000095 ], [ -122.834182128999956, 49.187411336000018 ], [ -122.834187790999962, 49.187741018000054 ], [ -122.834185009999914, 49.188245490000028 ], [ -122.834176617999958, 49.188911989000118 ], [ -122.834175605999945, 49.189592188000027 ], [ -122.834175688999935, 49.189624274000096 ], [ -122.834178608999935, 49.190494200000103 ], [ -122.834178084999962, 49.190640820000048 ], [ -122.83417499899997, 49.191493316000063 ], [ -122.833863256999933, 49.191492447000044 ], [ -122.833300510999919, 49.19149089900003 ], [ -122.832144993999947, 49.191487709000057 ], [ -122.83135601399999, 49.191489702000119 ], [ -122.831369697, 49.190546719000061 ], [ -122.831370507999964, 49.190492711000061 ], [ -122.831370423999914, 49.190357913000057 ], [ -122.831369988999981, 49.189595296000022 ], [ -122.831371324999935, 49.18881970600011 ], [ -122.831372301000016, 49.188233986000071 ], [ -122.831381599999972, 49.187352198000028 ], [ -122.83138592099999, 49.186022403000031 ], [ -122.831394186999958, 49.185398292000102 ], [ -122.831395214999958, 49.185141493000089 ], [ -122.831405596999943, 49.184429823000109 ], [ -122.831408068999963, 49.184259062000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105589702", "BldgCostT": "57950165", "sL_LossRatio": "0.590568674762338", "sL_AssetLoss": "3033720", "sL_BldgLoss": "1791620", "sL_StrLoss": "725220", "sL_NStrLoss": "1066400", "sL_ContLoss": "1242100", "geom_point": "0101000020E6100000A1735D7CFAB55EC0A066ED5BD2974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841196876999973, 49.187791841000049 ], [ -122.841204124999962, 49.187367448000032 ], [ -122.841204839999989, 49.187325425000026 ], [ -122.841211607999966, 49.186929999000043 ], [ -122.841226463999988, 49.186503928000029 ], [ -122.841240492999987, 49.18610100800003 ], [ -122.841738596999932, 49.186098507000075 ], [ -122.841739990999898, 49.184301111000089 ], [ -122.843225567999966, 49.184280661000052 ], [ -122.844000280999921, 49.18427690200005 ], [ -122.845359240999983, 49.184270204000022 ], [ -122.845319939999968, 49.18777119600005 ], [ -122.845319823999944, 49.187780226000065 ], [ -122.84531873, 49.187856768000131 ], [ -122.843759065999947, 49.187836303000061 ], [ -122.843582918, 49.187804120000123 ], [ -122.843223813999955, 49.187799891000047 ], [ -122.841196876999973, 49.187791841000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "511449251", "BldgCostT": "354505001", "sL_LossRatio": "0.851777615513735", "sL_AssetLoss": "3437470", "sL_BldgLoss": "2927960", "sL_StrLoss": "1366290", "sL_NStrLoss": "1561670", "sL_ContLoss": "509510", "geom_point": "0101000020E6100000E45852ACE2B55EC0EC8BC6D26E974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.839810745999912, 49.180906667000023 ], [ -122.839834053999965, 49.18076191300004 ], [ -122.840284318999963, 49.180966339000086 ], [ -122.84087921299999, 49.181236427000073 ], [ -122.842024091999917, 49.182017788000039 ], [ -122.842269252999927, 49.182102256000093 ], [ -122.845382473999948, 49.183174724000047 ], [ -122.845359240999983, 49.184270204000022 ], [ -122.844000280999921, 49.18427690200005 ], [ -122.843225567999966, 49.184280661000052 ], [ -122.841739990999898, 49.184301111000089 ], [ -122.840886179999984, 49.184294344000108 ], [ -122.840831322999975, 49.184293894000064 ], [ -122.840172695999925, 49.184288667 ], [ -122.839733505999973, 49.184285177000092 ], [ -122.83950950799999, 49.184283390000076 ], [ -122.839573881999982, 49.183336503000071 ], [ -122.839708387999977, 49.181540314000117 ], [ -122.839810745999912, 49.180906667000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132932750", "BldgCostT": "86990000", "sL_LossRatio": "0.737854069021733", "sL_AssetLoss": "1668460", "sL_BldgLoss": "1231080", "sL_StrLoss": "558000", "sL_NStrLoss": "673080", "sL_ContLoss": "437380", "geom_point": "0101000020E6100000CC4C51AAD4B55EC01DBAFA2D11974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83652719, 49.179621070000039 ], [ -122.834535106999979, 49.178858293000097 ], [ -122.83457912099999, 49.177608102000072 ], [ -122.835489593999981, 49.177731317000088 ], [ -122.836119701999962, 49.177957767000059 ], [ -122.836367939999917, 49.17804698400009 ], [ -122.836745320999952, 49.178182602000106 ], [ -122.837265260999942, 49.178381837000096 ], [ -122.838171507999931, 49.178729094000083 ], [ -122.838510656999986, 49.178827626000107 ], [ -122.838561490999965, 49.178842387000067 ], [ -122.838588289999961, 49.17884760200004 ], [ -122.840721796999929, 49.179263490000082 ], [ -122.841797194000023, 49.179261692000139 ], [ -122.842007004999971, 49.17926330100002 ], [ -122.843078125999938, 49.179243396000089 ], [ -122.843270595999968, 49.179236389000017 ], [ -122.844093401999942, 49.179238009000102 ], [ -122.844469813999922, 49.179234310000055 ], [ -122.845454801999921, 49.179224703000045 ], [ -122.845438636, 49.180534299000087 ], [ -122.845416581999984, 49.181571409000121 ], [ -122.845385956999934, 49.183010284000034 ], [ -122.845382473999948, 49.183174724000047 ], [ -122.842269252999927, 49.182102256000093 ], [ -122.842024091999917, 49.182017788000039 ], [ -122.84087921299999, 49.181236427000073 ], [ -122.840284318999963, 49.180966339000086 ], [ -122.839834053999965, 49.18076191300004 ], [ -122.839441529999988, 49.180684843000051 ], [ -122.839364398999976, 49.180669667000082 ], [ -122.839281838999938, 49.180613265000012 ], [ -122.838681772999962, 49.180437125000047 ], [ -122.838582604999957, 49.180408013 ], [ -122.838439350000016, 49.180353158000095 ], [ -122.837766351999917, 49.180095485000038 ], [ -122.83720180899995, 49.179879347000067 ], [ -122.837031275999919, 49.17981406300008 ], [ -122.83652719, 49.179621070000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "642746905", "BldgCostT": "428524984", "sL_LossRatio": "0.769998599955406", "sL_AssetLoss": "7714040", "sL_BldgLoss": "5939800", "sL_StrLoss": "2651950", "sL_NStrLoss": "3287850", "sL_ContLoss": "1774240", "geom_point": "0101000020E6100000817A3C258EB55EC0A46F566D4C974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834535106999979, 49.178858293000097 ], [ -122.83652719, 49.179621070000039 ], [ -122.837031275999919, 49.17981406300008 ], [ -122.83720180899995, 49.179879347000067 ], [ -122.837766351999917, 49.180095485000038 ], [ -122.838439350000016, 49.180353158000095 ], [ -122.838582604999957, 49.180408013 ], [ -122.838681772999962, 49.180437125000047 ], [ -122.839281838999938, 49.180613265000012 ], [ -122.839364398999976, 49.180669667000082 ], [ -122.839441529999988, 49.180684843000051 ], [ -122.839834053999965, 49.18076191300004 ], [ -122.839810745999912, 49.180906667000023 ], [ -122.839708387999977, 49.181540314000117 ], [ -122.839573881999982, 49.183336503000071 ], [ -122.83950950799999, 49.184283390000076 ], [ -122.83821830899997, 49.184290604000097 ], [ -122.836700425999979, 49.18428323600007 ], [ -122.836661981999924, 49.184283053000073 ], [ -122.83639845499999, 49.184281768000055 ], [ -122.835959295999942, 49.184279619000051 ], [ -122.835945573999965, 49.184279551000053 ], [ -122.835506522999935, 49.184277419000111 ], [ -122.834211581999909, 49.184271103000036 ], [ -122.834266039999989, 49.183003799000076 ], [ -122.83428879899999, 49.182473030000047 ], [ -122.834318568999947, 49.18178016100007 ], [ -122.834358885, 49.180840773000085 ], [ -122.834535106999979, 49.178858293000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112576622", "BldgCostT": "65586380", "sL_LossRatio": "0.627601698914582", "sL_AssetLoss": "2648750", "sL_BldgLoss": "1662360", "sL_StrLoss": "685910", "sL_NStrLoss": "976450", "sL_ContLoss": "986390", "geom_point": "0101000020E610000088F55F4AD1B55EC001FAC8D6C8964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.844184021999965, 49.17705569900005 ], [ -122.845589409999889, 49.177059911000093 ], [ -122.845454801999921, 49.179224703000045 ], [ -122.844469813999922, 49.179234310000055 ], [ -122.844093401999942, 49.179238009000102 ], [ -122.843270595999968, 49.179236389000017 ], [ -122.843078125999938, 49.179243396000089 ], [ -122.842007004999971, 49.17926330100002 ], [ -122.841797194000023, 49.179261692000139 ], [ -122.840721796999929, 49.179263490000082 ], [ -122.838588289999961, 49.17884760200004 ], [ -122.838561490999965, 49.178842387000067 ], [ -122.838510656999986, 49.178827626000107 ], [ -122.838171507999931, 49.178729094000083 ], [ -122.837265260999942, 49.178381837000096 ], [ -122.836745320999952, 49.178182602000106 ], [ -122.836367939999917, 49.17804698400009 ], [ -122.836119701999962, 49.177957767000059 ], [ -122.835489593999981, 49.177731317000088 ], [ -122.83457912099999, 49.177608102000072 ], [ -122.834588486999934, 49.176986697000046 ], [ -122.837684477999986, 49.177018198000084 ], [ -122.839943516999952, 49.177034060000047 ], [ -122.840689608000019, 49.177037191000096 ], [ -122.840838783999928, 49.177037796000072 ], [ -122.842119868999958, 49.177036598 ], [ -122.843035619999938, 49.177046612000019 ], [ -122.843391600999922, 49.177050499000131 ], [ -122.844184021999965, 49.17705569900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174147616", "BldgCostT": "119993879", "sL_LossRatio": "0.791488307361407", "sL_AssetLoss": "1896920", "sL_BldgLoss": "1501390", "sL_StrLoss": "684410", "sL_NStrLoss": "816980", "sL_ContLoss": "395530", "geom_point": "0101000020E61000004E3E0B7CA4B55EC04C07EBFF9C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83753387199999, 49.169623484000091 ], [ -122.837535792000011, 49.169225502000117 ], [ -122.837202846999958, 49.169227845000052 ], [ -122.837065681999945, 49.169228835000119 ], [ -122.836475676999939, 49.169233003000095 ], [ -122.836054186999888, 49.169236002000048 ], [ -122.836019239, 49.168136577000105 ], [ -122.835995710999953, 49.167395304000138 ], [ -122.837407905999981, 49.167397097000041 ], [ -122.837382909999945, 49.167864899000065 ], [ -122.837525208999978, 49.168172785000074 ], [ -122.838042953999903, 49.168179729000038 ], [ -122.838878716999901, 49.16819089800002 ], [ -122.840296013999961, 49.16817750800007 ], [ -122.840289401999939, 49.168700782000059 ], [ -122.840286, 49.16897010200011 ], [ -122.840273497999959, 49.169496908000049 ], [ -122.840187107999981, 49.169679006000116 ], [ -122.840144807999977, 49.170079585000089 ], [ -122.840080876999963, 49.170079964000131 ], [ -122.838887183999987, 49.170086475000097 ], [ -122.837531608999967, 49.170093899000094 ], [ -122.83753387199999, 49.169623484000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97024916", "BldgCostT": "61766666", "sL_LossRatio": "0.659665585019532", "sL_AssetLoss": "2419150", "sL_BldgLoss": "1595830", "sL_StrLoss": "655050", "sL_NStrLoss": "940780", "sL_ContLoss": "823320", "geom_point": "0101000020E6100000C208650AABB55EC03C94E34678954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834616704999945, 49.169201845 ], [ -122.834617464999923, 49.169090146000087 ], [ -122.834620388999952, 49.168201823000082 ], [ -122.834630614999952, 49.167397325000124 ], [ -122.834642398999904, 49.166468002000038 ], [ -122.840179219999968, 49.166467596000089 ], [ -122.84154609199993, 49.166468009000049 ], [ -122.843434180999935, 49.166467503000057 ], [ -122.843444676999965, 49.166878701000073 ], [ -122.843655995999953, 49.167341699000112 ], [ -122.843660040999907, 49.167350388000038 ], [ -122.843922897999931, 49.167914496000037 ], [ -122.843960703999983, 49.168164280000084 ], [ -122.843873359999975, 49.168164503000135 ], [ -122.843640147999949, 49.168165110000096 ], [ -122.843055602999954, 49.16816661399999 ], [ -122.842021355999961, 49.168170467000053 ], [ -122.841556513999961, 49.168172200000065 ], [ -122.840296013999961, 49.16817750800007 ], [ -122.838878716999901, 49.16819089800002 ], [ -122.838042953999903, 49.168179729000038 ], [ -122.837525208999978, 49.168172785000074 ], [ -122.837382909999945, 49.167864899000065 ], [ -122.837407905999981, 49.167397097000041 ], [ -122.835995710999953, 49.167395304000138 ], [ -122.836019239, 49.168136577000105 ], [ -122.836054186999888, 49.169236002000048 ], [ -122.836475676999939, 49.169233003000095 ], [ -122.837065681999945, 49.169228835000119 ], [ -122.837202846999958, 49.169227845000052 ], [ -122.837535792000011, 49.169225502000117 ], [ -122.83753387199999, 49.169623484000091 ], [ -122.837531608999967, 49.170093899000094 ], [ -122.834656414999955, 49.1700886960001 ], [ -122.834653936999956, 49.169664296000114 ], [ -122.834616704999945, 49.169201845 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102294584", "BldgCostT": "70363334", "sL_LossRatio": "0.784931800668886", "sL_AssetLoss": "1258810", "sL_BldgLoss": "988080", "sL_StrLoss": "439860", "sL_NStrLoss": "548220", "sL_ContLoss": "270730", "geom_point": "0101000020E61000009B82DA14B4B55EC0D17A095F29954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836157425999943, 49.164656400000084 ], [ -122.837514588999937, 49.164660192000085 ], [ -122.838930601999962, 49.164664883000064 ], [ -122.840248306, 49.164682888000115 ], [ -122.840766798999979, 49.164821489000069 ], [ -122.840998814999963, 49.164938203000112 ], [ -122.841328281999935, 49.165193895000044 ], [ -122.841448503999956, 49.165342507000041 ], [ -122.841539405999967, 49.165558690000054 ], [ -122.84154609199993, 49.166468009000049 ], [ -122.840179219999968, 49.166467596000089 ], [ -122.840198898999972, 49.16557249100002 ], [ -122.836165800999964, 49.165581088000089 ], [ -122.836157425999943, 49.164656400000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80421749", "BldgCostT": "53549999", "sL_LossRatio": "0.700483804354239", "sL_AssetLoss": "1694900", "sL_BldgLoss": "1187250", "sL_StrLoss": "475710", "sL_NStrLoss": "711540", "sL_ContLoss": "507650", "geom_point": "0101000020E6100000DB20EE458FB55EC0D929982914954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834647323999917, 49.165553481000089 ], [ -122.83465220899997, 49.164652707000073 ], [ -122.834637260999941, 49.163736599000067 ], [ -122.834627798999932, 49.163158991000095 ], [ -122.834576952999953, 49.163060179000084 ], [ -122.83457821599994, 49.162840369000087 ], [ -122.834700154999965, 49.162841259000047 ], [ -122.834713884999985, 49.162841292000039 ], [ -122.835440593999934, 49.162843570000092 ], [ -122.83614080199996, 49.162845763000078 ], [ -122.837532510999935, 49.162844290000116 ], [ -122.838933892999961, 49.162842199000096 ], [ -122.838930601999962, 49.164664883000064 ], [ -122.837514588999937, 49.164660192000085 ], [ -122.836157425999943, 49.164656400000084 ], [ -122.836165800999964, 49.165581088000089 ], [ -122.840198898999972, 49.16557249100002 ], [ -122.840179219999968, 49.166467596000089 ], [ -122.834642398999904, 49.166468002000038 ], [ -122.834647323999917, 49.165553481000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52590583", "BldgCostT": "35563333", "sL_LossRatio": "0.708482876087353", "sL_AssetLoss": "1315120", "sL_BldgLoss": "931740", "sL_StrLoss": "376260", "sL_NStrLoss": "555480", "sL_ContLoss": "383380", "geom_point": "0101000020E61000005FFD54ECDAB55EC0DB127F3503954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.840766798999979, 49.164821489000069 ], [ -122.840248306, 49.164682888000115 ], [ -122.838930601999962, 49.164664883000064 ], [ -122.838933892999961, 49.162842199000096 ], [ -122.840977616, 49.162828309000091 ], [ -122.841677213999972, 49.162823607000057 ], [ -122.841679594999945, 49.163655292000044 ], [ -122.843410110999955, 49.163652008000071 ], [ -122.843867905999971, 49.163675387000097 ], [ -122.844156793999971, 49.163720798000057 ], [ -122.84434390699991, 49.163832592000048 ], [ -122.844381406999972, 49.163987792000086 ], [ -122.84416499699995, 49.164549085000075 ], [ -122.843465796999936, 49.165457514000067 ], [ -122.843250885999936, 49.165532289000097 ], [ -122.843027211999953, 49.165555506000025 ], [ -122.841539405999967, 49.165558690000054 ], [ -122.841448503999956, 49.165342507000041 ], [ -122.841328281999935, 49.165193895000044 ], [ -122.840998814999963, 49.164938203000112 ], [ -122.840766798999979, 49.164821489000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277538500", "BldgCostT": "190135000", "sL_LossRatio": "0.778838988625724", "sL_AssetLoss": "3663530", "sL_BldgLoss": "2853300", "sL_StrLoss": "1308450", "sL_NStrLoss": "1544850", "sL_ContLoss": "810230", "geom_point": "0101000020E6100000C91096CAFEB55EC0818D0CEE5E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.840296013999961, 49.16817750800007 ], [ -122.841556513999961, 49.168172200000065 ], [ -122.842021355999961, 49.168170467000053 ], [ -122.843055602999954, 49.16816661399999 ], [ -122.843640147999949, 49.168165110000096 ], [ -122.843873359999975, 49.168164503000135 ], [ -122.843960703999983, 49.168164280000084 ], [ -122.843922897999931, 49.167914496000037 ], [ -122.843660040999907, 49.167350388000038 ], [ -122.843655995999953, 49.167341699000112 ], [ -122.843444676999965, 49.166878701000073 ], [ -122.843434180999935, 49.166467503000057 ], [ -122.84154609199993, 49.166468009000049 ], [ -122.841539405999967, 49.165558690000054 ], [ -122.843027211999953, 49.165555506000025 ], [ -122.843250885999936, 49.165532289000097 ], [ -122.843465796999936, 49.165457514000067 ], [ -122.84416499699995, 49.164549085000075 ], [ -122.844381406999972, 49.163987792000086 ], [ -122.84434390699991, 49.163832592000048 ], [ -122.844156793999971, 49.163720798000057 ], [ -122.843867905999971, 49.163675387000097 ], [ -122.843410110999955, 49.163652008000071 ], [ -122.841679594999945, 49.163655292000044 ], [ -122.841677213999972, 49.162823607000057 ], [ -122.84395870799996, 49.162809579000069 ], [ -122.84472690199999, 49.162804828000056 ], [ -122.84568910199998, 49.162798898000077 ], [ -122.845700182999948, 49.164333067000058 ], [ -122.845708453999976, 49.165478829000108 ], [ -122.845708926999976, 49.165541760000046 ], [ -122.845718995999945, 49.16693396300014 ], [ -122.845728750999967, 49.168285467000025 ], [ -122.845729151999933, 49.168339463000038 ], [ -122.845741438999951, 49.17004098200006 ], [ -122.845741496999963, 49.17005000900015 ], [ -122.844397218999973, 49.170057506000028 ], [ -122.843546692999965, 49.170061387000018 ], [ -122.842632628999951, 49.170065854000057 ], [ -122.842241590999933, 49.170067760000101 ], [ -122.841967179999969, 49.170069108000064 ], [ -122.841413695999975, 49.170071795000105 ], [ -122.84030051399999, 49.170078641000032 ], [ -122.840144807999977, 49.170079585000089 ], [ -122.840187107999981, 49.169679006000116 ], [ -122.840273497999959, 49.169496908000049 ], [ -122.840286, 49.16897010200011 ], [ -122.840289401999939, 49.168700782000059 ], [ -122.840296013999961, 49.16817750800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316324123", "BldgCostT": "212203706", "sL_LossRatio": "0.74425845789295", "sL_AssetLoss": "4152630", "sL_BldgLoss": "3090630", "sL_StrLoss": "1385020", "sL_NStrLoss": "1705610", "sL_ContLoss": "1062000", "geom_point": "0101000020E6100000C944227E4FB65EC0B42889782D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845920776999989, 49.164984338000082 ], [ -122.845916835999944, 49.164275453000087 ], [ -122.845700182999948, 49.164333067000058 ], [ -122.84568910199998, 49.162798898000077 ], [ -122.845783135999966, 49.162798179000113 ], [ -122.845908584999933, 49.162797196000014 ], [ -122.847543618999907, 49.162786496000123 ], [ -122.84759472599994, 49.162756352000088 ], [ -122.847622082, 49.162740188000058 ], [ -122.848553918000036, 49.162724703000038 ], [ -122.849310379999935, 49.162712092000135 ], [ -122.850587508999965, 49.162701705000067 ], [ -122.851240810999983, 49.162693990000037 ], [ -122.851348304999988, 49.164566608000023 ], [ -122.851341305999966, 49.165479094000034 ], [ -122.851347700999924, 49.166337097000039 ], [ -122.851353753999945, 49.167411282000089 ], [ -122.851355467999952, 49.16771710600009 ], [ -122.851357981999939, 49.168168195000156 ], [ -122.849094102999942, 49.168190286000033 ], [ -122.847468001999957, 49.16820761100012 ], [ -122.845938685999954, 49.168215005000057 ], [ -122.845933854999913, 49.167341161000117 ], [ -122.845924063999917, 49.165578053000061 ], [ -122.845920776999989, 49.164984338000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189843332", "BldgCostT": "123993332", "sL_LossRatio": "0.715671783210157", "sL_AssetLoss": "3166200", "sL_BldgLoss": "2265960", "sL_StrLoss": "960560", "sL_NStrLoss": "1305400", "sL_ContLoss": "900240", "geom_point": "0101000020E610000081BF884B88B65EC06166553A8E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845728750999967, 49.168285467000025 ], [ -122.845718995999945, 49.16693396300014 ], [ -122.845708926999976, 49.165541760000046 ], [ -122.845708453999976, 49.165478829000108 ], [ -122.845700182999948, 49.164333067000058 ], [ -122.845916835999944, 49.164275453000087 ], [ -122.845920776999989, 49.164984338000082 ], [ -122.845924063999917, 49.165578053000061 ], [ -122.845933854999913, 49.167341161000117 ], [ -122.845938685999954, 49.168215005000057 ], [ -122.847468001999957, 49.16820761100012 ], [ -122.849094102999942, 49.168190286000033 ], [ -122.851357981999939, 49.168168195000156 ], [ -122.851355467999952, 49.16771710600009 ], [ -122.851353753999945, 49.167411282000089 ], [ -122.851347700999924, 49.166337097000039 ], [ -122.852641079999941, 49.166329804000014 ], [ -122.854079290999934, 49.16631148400004 ], [ -122.855581093999888, 49.166285100000046 ], [ -122.856909109999918, 49.166273396000072 ], [ -122.856904422999946, 49.167589166000013 ], [ -122.856903299999956, 49.167913009000166 ], [ -122.856902967999972, 49.168013028000082 ], [ -122.856902102999953, 49.168254826000059 ], [ -122.856900518999936, 49.168695607000075 ], [ -122.856896190999947, 49.169913103000084 ], [ -122.855695309999973, 49.169928488000103 ], [ -122.85491307699999, 49.169937199000103 ], [ -122.854693499999939, 49.16993978300011 ], [ -122.853673720999907, 49.169954198000013 ], [ -122.852665600999956, 49.169978807000078 ], [ -122.851519074999914, 49.170000189000078 ], [ -122.85138973499997, 49.170001826000011 ], [ -122.849451577999943, 49.170026163000074 ], [ -122.848738697999963, 49.170035113000075 ], [ -122.84812051599999, 49.170038866000091 ], [ -122.846679749999922, 49.170047614000097 ], [ -122.845960761999933, 49.170051946000044 ], [ -122.845843041999956, 49.170050935000056 ], [ -122.845741496999963, 49.17005000900015 ], [ -122.845741438999951, 49.17004098200006 ], [ -122.845729151999933, 49.168339463000038 ], [ -122.845728750999967, 49.168285467000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86923978", "BldgCostT": "54434857", "sL_LossRatio": "0.66605474766652", "sL_AssetLoss": "1895131", "sL_BldgLoss": "1262261", "sL_StrLoss": "540411", "sL_NStrLoss": "721850", "sL_ContLoss": "632870", "geom_point": "0101000020E6100000FE4003FBB9B65EC0246B9A982A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851347700999924, 49.166337097000039 ], [ -122.851341305999966, 49.165479094000034 ], [ -122.851348304999988, 49.164566608000023 ], [ -122.85269608, 49.164545608000076 ], [ -122.854771591999949, 49.164530594000055 ], [ -122.85691230599997, 49.164503003000121 ], [ -122.856911923999974, 49.164673298000103 ], [ -122.858819189999906, 49.163918087000049 ], [ -122.858856490000022, 49.164339918000032 ], [ -122.858952213999927, 49.164583851000039 ], [ -122.858999191999914, 49.16470359500007 ], [ -122.858960899999957, 49.164925904 ], [ -122.858854807999961, 49.165075997000031 ], [ -122.85852789799999, 49.16551071100011 ], [ -122.858356408999953, 49.165694902000041 ], [ -122.858257890999951, 49.166340692000048 ], [ -122.857942295999948, 49.166303600000056 ], [ -122.857706508, 49.16629670200011 ], [ -122.856909109999918, 49.166273396000072 ], [ -122.855581093999888, 49.166285100000046 ], [ -122.854079290999934, 49.16631148400004 ], [ -122.852641079999941, 49.166329804000014 ], [ -122.851347700999924, 49.166337097000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122223219", "BldgCostT": "80850412", "sL_LossRatio": "0.717864763446398", "sL_AssetLoss": "1902740", "sL_BldgLoss": "1365910", "sL_StrLoss": "566350", "sL_NStrLoss": "799560", "sL_ContLoss": "536830", "geom_point": "0101000020E6100000ED8397A6A9B65EC00F5C71B3F0944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851240810999983, 49.162693990000037 ], [ -122.851297706999929, 49.162693309000069 ], [ -122.852781585999963, 49.162675798000116 ], [ -122.854260827999923, 49.162661040000124 ], [ -122.855330661999943, 49.162650374000052 ], [ -122.855728343999957, 49.162646403000053 ], [ -122.85651045399996, 49.162638584000021 ], [ -122.856917968999966, 49.162634480000101 ], [ -122.856916900999934, 49.162992537000015 ], [ -122.856916464999955, 49.16313646300005 ], [ -122.856916346999981, 49.163181452000039 ], [ -122.85691230599997, 49.164503003000121 ], [ -122.854771591999949, 49.164530594000055 ], [ -122.85269608, 49.164545608000076 ], [ -122.851348304999988, 49.164566608000023 ], [ -122.851240810999983, 49.162693990000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106152145", "BldgCostT": "70586524", "sL_LossRatio": "0.705348115060195", "sL_AssetLoss": "2225270", "sL_BldgLoss": "1569590", "sL_StrLoss": "676730", "sL_NStrLoss": "892860", "sL_ContLoss": "655680", "geom_point": "0101000020E6100000CFABF88E73B65EC07AE220BE9F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.849310379999935, 49.162712092000135 ], [ -122.849286492999937, 49.162154613000041 ], [ -122.847607406999956, 49.162168493000081 ], [ -122.847402716999952, 49.162135506 ], [ -122.847283909999987, 49.162067102000073 ], [ -122.847269016999974, 49.161720814000077 ], [ -122.84724928899999, 49.161263309000077 ], [ -122.847242219999913, 49.161064901 ], [ -122.847308990999963, 49.16084791300009 ], [ -122.847519096000013, 49.160580092000039 ], [ -122.847842607999937, 49.16039860300004 ], [ -122.848689780999962, 49.160055807000091 ], [ -122.85000368499999, 49.159522093000092 ], [ -122.850461409999966, 49.159442703000103 ], [ -122.851078984999958, 49.159433710000037 ], [ -122.851748493999963, 49.159426189000058 ], [ -122.852141606999908, 49.159491796000033 ], [ -122.852962803000011, 49.159754594000084 ], [ -122.853176109999978, 49.159884296 ], [ -122.853390974999911, 49.160112191000074 ], [ -122.854068400999921, 49.160778890000103 ], [ -122.854157086999948, 49.16098790500007 ], [ -122.854162385999985, 49.161213296000042 ], [ -122.85418630099997, 49.161720370000083 ], [ -122.854203500999958, 49.162085804000093 ], [ -122.852792692999927, 49.162105797000038 ], [ -122.852781585999963, 49.162675798000116 ], [ -122.851297706999929, 49.162693309000069 ], [ -122.851240810999983, 49.162693990000037 ], [ -122.850587508999965, 49.162701705000067 ], [ -122.849310379999935, 49.162712092000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129954501", "BldgCostT": "89360001", "sL_LossRatio": "0.764236833448393", "sL_AssetLoss": "2158310", "sL_BldgLoss": "1649460", "sL_StrLoss": "736370", "sL_NStrLoss": "913090", "sL_ContLoss": "508850", "geom_point": "0101000020E6100000F064FD87B0B65EC09B8B4326AE934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851376089999988, 49.15316310600015 ], [ -122.852775588999975, 49.153142797000029 ], [ -122.853515605999988, 49.15304460800008 ], [ -122.853589362999941, 49.153046643000089 ], [ -122.855335288999953, 49.153095006000093 ], [ -122.855357201999951, 49.152690216000117 ], [ -122.855312311999981, 49.152545905000089 ], [ -122.855192810999981, 49.152161894000166 ], [ -122.855178001999917, 49.151468608000087 ], [ -122.85519542099992, 49.150805894000023 ], [ -122.856787627999893, 49.150793003000082 ], [ -122.856803010999926, 49.152472106000026 ], [ -122.856804156999914, 49.152611782000051 ], [ -122.856827223999915, 49.155419092000081 ], [ -122.854033711999975, 49.155435709000116 ], [ -122.852743282999981, 49.155444004000096 ], [ -122.851383511000023, 49.155441989000103 ], [ -122.851365774999948, 49.154590898000066 ], [ -122.851373708, 49.153495585000037 ], [ -122.851376089999988, 49.15316310600015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247846666", "BldgCostT": "165961666", "sL_LossRatio": "0.745672131611333", "sL_AssetLoss": "3534650", "sL_BldgLoss": "2635690", "sL_StrLoss": "1012590", "sL_NStrLoss": "1623100", "sL_ContLoss": "898960", "geom_point": "0101000020E6100000371367A04DB65EC0B3DC6F408D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84558486499995, 49.150048928000075 ], [ -122.845685572999955, 49.150049371000108 ], [ -122.845802707999908, 49.150049895000095 ], [ -122.84661134, 49.150051070000103 ], [ -122.848132602999954, 49.150053301000064 ], [ -122.848345922999954, 49.15005376900006 ], [ -122.848393189, 49.150053869000025 ], [ -122.849962141999953, 49.150057304000057 ], [ -122.851343600999911, 49.150059888000094 ], [ -122.851352581999947, 49.151282889000107 ], [ -122.851358661999924, 49.151767911000078 ], [ -122.851362023999968, 49.152033641000031 ], [ -122.851362051999942, 49.15203784800007 ], [ -122.851369038999977, 49.152598625000138 ], [ -122.851369236, 49.152613421000126 ], [ -122.851376089999988, 49.15316310600015 ], [ -122.851373708, 49.153495585000037 ], [ -122.851365774999948, 49.154590898000066 ], [ -122.851383511000023, 49.155441989000103 ], [ -122.849340377999951, 49.155451598000113 ], [ -122.847222798999937, 49.155447289000037 ], [ -122.845842211999965, 49.155430291000066 ], [ -122.845751311999962, 49.15542800600015 ], [ -122.845638251999944, 49.155425187000034 ], [ -122.845620762999957, 49.153659249000043 ], [ -122.845620727999986, 49.153658767000138 ], [ -122.845619535999973, 49.153538376000085 ], [ -122.845615415999973, 49.153119684000053 ], [ -122.845615131999978, 49.153092090000037 ], [ -122.84560413299999, 49.151985671000055 ], [ -122.845603856999958, 49.151958801000035 ], [ -122.845602001999936, 49.151769702000159 ], [ -122.845594659999932, 49.151032133000108 ], [ -122.84558486499995, 49.150048928000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115447310", "BldgCostT": "78758189", "sL_LossRatio": "0.784009600757031", "sL_AssetLoss": "1276566", "sL_BldgLoss": "1000840", "sL_StrLoss": "467920", "sL_NStrLoss": "532920", "sL_ContLoss": "275726", "geom_point": "0101000020E6100000BE7B5FE0A2B65EC0DC5C98F94C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852709415999954, 49.150070099000025 ], [ -122.852668206, 49.148658153 ], [ -122.852653702999987, 49.148160088000061 ], [ -122.853977903999962, 49.148156389000071 ], [ -122.85433051499993, 49.148157626000078 ], [ -122.855372615999968, 49.148161183000063 ], [ -122.855558238999947, 49.148161832000042 ], [ -122.855509492999914, 49.148613004000026 ], [ -122.855509802999933, 49.148787061000156 ], [ -122.855512009999927, 49.150076304000052 ], [ -122.856783596999961, 49.150081911 ], [ -122.856787627999893, 49.150793003000082 ], [ -122.85519542099992, 49.150805894000023 ], [ -122.855178001999917, 49.151468608000087 ], [ -122.855192810999981, 49.152161894000166 ], [ -122.855312311999981, 49.152545905000089 ], [ -122.855357201999951, 49.152690216000117 ], [ -122.855335288999953, 49.153095006000093 ], [ -122.853589362999941, 49.153046643000089 ], [ -122.853515605999988, 49.15304460800008 ], [ -122.852775588999975, 49.153142797000029 ], [ -122.851376089999988, 49.15316310600015 ], [ -122.851369236, 49.152613421000126 ], [ -122.851369038999977, 49.152598625000138 ], [ -122.851362051999942, 49.15203784800007 ], [ -122.851362023999968, 49.152033641000031 ], [ -122.851358661999924, 49.151767911000078 ], [ -122.851352581999947, 49.151282889000107 ], [ -122.851343600999911, 49.150059888000094 ], [ -122.852709415999954, 49.150070099000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145906418", "BldgCostT": "95946668", "sL_LossRatio": "0.694307348815347", "sL_AssetLoss": "2723160", "sL_BldgLoss": "1890710", "sL_StrLoss": "844650", "sL_NStrLoss": "1046060", "sL_ContLoss": "832450", "geom_point": "0101000020E61000008974373658B65EC0607206F315934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851280501999966, 49.148156799000027 ], [ -122.852653702999987, 49.148160088000061 ], [ -122.852668206, 49.148658153 ], [ -122.852709415999954, 49.150070099000025 ], [ -122.851343600999911, 49.150059888000094 ], [ -122.849962141999953, 49.150057304000057 ], [ -122.848393189, 49.150053869000025 ], [ -122.848345922999954, 49.15005376900006 ], [ -122.848132602999954, 49.150053301000064 ], [ -122.84661134, 49.150051070000103 ], [ -122.845802707999908, 49.150049895000095 ], [ -122.845685572999955, 49.150049371000108 ], [ -122.84558486499995, 49.150048928000075 ], [ -122.845565110999971, 49.148167839000024 ], [ -122.84556503499995, 49.148158847000069 ], [ -122.845664004999975, 49.148159283000091 ], [ -122.845786976999989, 49.148159902000039 ], [ -122.84995128599995, 49.148153100000044 ], [ -122.851280501999966, 49.148156799000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57154833", "BldgCostT": "36318333", "sL_LossRatio": "0.692846863449533", "sL_AssetLoss": "869283", "sL_BldgLoss": "602280", "sL_StrLoss": "271390", "sL_NStrLoss": "330890", "sL_ContLoss": "267003", "geom_point": "0101000020E61000006FF628D896B65EC0A57EF7F1C4924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851247472999916, 49.145405894000049 ], [ -122.855533078999926, 49.145405097000136 ], [ -122.855510703999954, 49.146304512000057 ], [ -122.853971895999933, 49.146300106000098 ], [ -122.853993914999961, 49.147191006000085 ], [ -122.853977903999962, 49.148156389000071 ], [ -122.852653702999987, 49.148160088000061 ], [ -122.851280501999966, 49.148156799000027 ], [ -122.851276412999979, 49.147714117000142 ], [ -122.851276312999985, 49.147701963000038 ], [ -122.851263200999966, 49.146286711000108 ], [ -122.851247472999916, 49.145405894000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145607251", "BldgCostT": "97500001", "sL_LossRatio": "0.708570495775108", "sL_AssetLoss": "2327870", "sL_BldgLoss": "1649460", "sL_StrLoss": "740560", "sL_NStrLoss": "908900", "sL_ContLoss": "678410", "geom_point": "0101000020E6100000DE39AD3E4BB65EC094D91822C4924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845562751, 49.146331537 ], [ -122.845562052999981, 49.145777312000035 ], [ -122.845560440999961, 49.14448784100005 ], [ -122.845556383999977, 49.142697355000102 ], [ -122.845554314999973, 49.141784765000082 ], [ -122.845552212999948, 49.140870765000095 ], [ -122.845739771999945, 49.14087360100006 ], [ -122.84575239899999, 49.142708512000077 ], [ -122.845765078999932, 49.144427941000032 ], [ -122.845765588999882, 49.144494810000019 ], [ -122.8457679099999, 49.144897476000025 ], [ -122.845772444999952, 49.145684987000017 ], [ -122.845775778999922, 49.146262906000118 ], [ -122.846446194999913, 49.146280807000025 ], [ -122.846459102, 49.145383705000022 ], [ -122.851247472999916, 49.145405894000049 ], [ -122.851263200999966, 49.146286711000108 ], [ -122.851276312999985, 49.147701963000038 ], [ -122.851276412999979, 49.147714117000142 ], [ -122.851280501999966, 49.148156799000027 ], [ -122.84995128599995, 49.148153100000044 ], [ -122.845786976999989, 49.148159902000039 ], [ -122.845664004999975, 49.148159283000091 ], [ -122.84556503499995, 49.148158847000069 ], [ -122.845564401999937, 49.147667804000015 ], [ -122.845562751, 49.146331537 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145912834", "BldgCostT": "97743334", "sL_LossRatio": "0.69338172352207", "sL_AssetLoss": "2933377", "sL_BldgLoss": "2033950", "sL_StrLoss": "639020", "sL_NStrLoss": "1394930", "sL_ContLoss": "899427", "geom_point": "0101000020E61000003FFF0B3EECB55EC0A49BD54C88924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.838169986999986, 49.146312705000106 ], [ -122.840109499999926, 49.146310198000087 ], [ -122.840098391999931, 49.14540520000007 ], [ -122.840089384999956, 49.144528299000058 ], [ -122.840089685999914, 49.143616404000106 ], [ -122.840119503999958, 49.142714387000048 ], [ -122.840127707999955, 49.1418469010001 ], [ -122.841045392999945, 49.140804303000074 ], [ -122.84157510299994, 49.140874810000078 ], [ -122.841628029999953, 49.140874746000115 ], [ -122.845110587999983, 49.140871243000035 ], [ -122.845288753999938, 49.140871061000048 ], [ -122.845552212999948, 49.140870765000095 ], [ -122.845554314999973, 49.141784765000082 ], [ -122.845556383999977, 49.142697355000102 ], [ -122.845560440999961, 49.14448784100005 ], [ -122.845562052999981, 49.145777312000035 ], [ -122.845562751, 49.146331537 ], [ -122.845564401999937, 49.147667804000015 ], [ -122.84556503499995, 49.148158847000069 ], [ -122.845006216999977, 49.148163100000048 ], [ -122.844499113000012, 49.148166981000017 ], [ -122.844170232999929, 49.148169506000102 ], [ -122.843322874999927, 49.148175990000048 ], [ -122.843078306999942, 49.148145412000133 ], [ -122.842761808999981, 49.148123504000068 ], [ -122.842217197, 49.148148198000079 ], [ -122.841144983999968, 49.14819678700006 ], [ -122.840096577999958, 49.148195211000136 ], [ -122.838199904999982, 49.148192288000047 ], [ -122.83818318199999, 49.147227702000123 ], [ -122.838169986999986, 49.146312705000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219615061", "BldgCostT": "141663190", "sL_LossRatio": "0.725930864759674", "sL_AssetLoss": "1844790", "sL_BldgLoss": "1339190", "sL_StrLoss": "533440", "sL_NStrLoss": "805750", "sL_ContLoss": "505600", "geom_point": "0101000020E61000006132F205EFB55EC0F11FF37DC8914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841045392999945, 49.140804303000074 ], [ -122.840729309, 49.140696809000112 ], [ -122.840360493999952, 49.140477884000099 ], [ -122.840327778999963, 49.140438173000099 ], [ -122.840133882999979, 49.140202690000102 ], [ -122.840047708999933, 49.139938805000064 ], [ -122.840049747999913, 49.13987975100013 ], [ -122.840057802999979, 49.1395471800001 ], [ -122.840054412999962, 49.139335336000059 ], [ -122.840053203999915, 49.138949646000043 ], [ -122.839979838999923, 49.138738434000068 ], [ -122.839753262999977, 49.138483102000123 ], [ -122.839003433999963, 49.137982604000122 ], [ -122.83880753199999, 49.137780430000063 ], [ -122.838681951999931, 49.137510926000076 ], [ -122.838681316999924, 49.137218056000037 ], [ -122.840046235999978, 49.137207756000038 ], [ -122.840131540999934, 49.137207118000092 ], [ -122.840833262, 49.137201797000067 ], [ -122.841447806999938, 49.137197150000105 ], [ -122.842828511, 49.137186706000122 ], [ -122.843559397999982, 49.137192842000019 ], [ -122.844752127999982, 49.137202891000129 ], [ -122.845286737, 49.137207381000032 ], [ -122.845503141999956, 49.137209233000064 ], [ -122.845715393999939, 49.137210988000042 ], [ -122.845739771999945, 49.14087360100006 ], [ -122.845552212999948, 49.140870765000095 ], [ -122.845288753999938, 49.140871061000048 ], [ -122.845110587999983, 49.140871243000035 ], [ -122.841628029999953, 49.140874746000115 ], [ -122.84157510299994, 49.140874810000078 ], [ -122.841045392999945, 49.140804303000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96383583", "BldgCostT": "61878333", "sL_LossRatio": "0.698494805493556", "sL_AssetLoss": "1608430", "sL_BldgLoss": "1123480", "sL_StrLoss": "490560", "sL_NStrLoss": "632920", "sL_ContLoss": "484950", "geom_point": "0101000020E61000000F8674573AB55EC0D4E0C7E248924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.829601587999932, 49.142770811000055 ], [ -122.829601062999942, 49.141877232000077 ], [ -122.828902003999971, 49.140930997000169 ], [ -122.831909105999912, 49.14092499700012 ], [ -122.83330158299999, 49.140901105000054 ], [ -122.833310212999919, 49.142748500000017 ], [ -122.834534602999952, 49.142738602000065 ], [ -122.834537708999932, 49.14363969900004 ], [ -122.834546181999968, 49.144561795000087 ], [ -122.833214585999954, 49.144554112000044 ], [ -122.829624308999925, 49.14458808300008 ], [ -122.829619589999979, 49.143652593000091 ], [ -122.829373808999918, 49.143598509000071 ], [ -122.82906188599999, 49.143449691000114 ], [ -122.828994096999935, 49.143339504000025 ], [ -122.828974914999918, 49.142775783000054 ], [ -122.829601587999932, 49.142770811000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89436000", "BldgCostT": "60735000", "sL_LossRatio": "0.742153308832739", "sL_AssetLoss": "1397245", "sL_BldgLoss": "1036970", "sL_StrLoss": "480150", "sL_NStrLoss": "556820", "sL_ContLoss": "360275", "geom_point": "0101000020E61000000F305EB93FB55EC0DB5EE2FABD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833214585999954, 49.144554112000044 ], [ -122.834546181999968, 49.144561795000087 ], [ -122.834549324999955, 49.145422399000068 ], [ -122.834554016000013, 49.146320803000037 ], [ -122.834561304999966, 49.147260887000087 ], [ -122.834564057999955, 49.147823338000102 ], [ -122.834565908999934, 49.148199900000122 ], [ -122.834145538999948, 49.14819582900008 ], [ -122.832511299999965, 49.148179990000095 ], [ -122.831784726, 49.148190616000065 ], [ -122.829493497999977, 49.148220546000033 ], [ -122.82854322899999, 49.147357051000057 ], [ -122.829193045999915, 49.147291224000078 ], [ -122.829476123999939, 49.147283970000068 ], [ -122.829674997999945, 49.147282802000028 ], [ -122.829677197999928, 49.146346702000066 ], [ -122.8296498099999, 49.145541199000029 ], [ -122.829624308999925, 49.14458808300008 ], [ -122.833214585999954, 49.144554112000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42874667", "BldgCostT": "28336667", "sL_LossRatio": "0.685260744311835", "sL_AssetLoss": "850450", "sL_BldgLoss": "582780", "sL_StrLoss": "250650", "sL_NStrLoss": "332130", "sL_ContLoss": "267670", "geom_point": "0101000020E6100000DC97BF8482B55EC07BABC7E0D5924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834554016000013, 49.146320803000037 ], [ -122.834549324999955, 49.145422399000068 ], [ -122.835128040999933, 49.145422744000051 ], [ -122.835621673999952, 49.145423027000092 ], [ -122.835813643999984, 49.145423135 ], [ -122.836269309000016, 49.145423395000051 ], [ -122.836226124999925, 49.145575298000054 ], [ -122.836226088, 49.146320506000073 ], [ -122.838169986999986, 49.146312705000106 ], [ -122.83818318199999, 49.147227702000123 ], [ -122.838199904999982, 49.148192288000047 ], [ -122.836481113999952, 49.148213880000107 ], [ -122.835271107000011, 49.148209794000067 ], [ -122.835273802999907, 49.148355157000026 ], [ -122.835279317999948, 49.148653402000051 ], [ -122.835291503999954, 49.149239401000052 ], [ -122.834573397, 49.149256992000069 ], [ -122.834565908999934, 49.148199900000122 ], [ -122.834564057999955, 49.147823338000102 ], [ -122.834561304999966, 49.147260887000087 ], [ -122.834554016000013, 49.146320803000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307882539", "BldgCostT": "207730372", "sL_LossRatio": "0.72637069430738", "sL_AssetLoss": "4651110", "sL_BldgLoss": "3378430", "sL_StrLoss": "1469170", "sL_NStrLoss": "1909260", "sL_ContLoss": "1272680", "geom_point": "0101000020E610000040A332CD0DB55EC07CE716DBA0944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823423911999953, 49.16002309800011 ], [ -122.824544286, 49.160039102000063 ], [ -122.82488840399999, 49.160053432000076 ], [ -122.825361798999964, 49.16007309499999 ], [ -122.826183093999987, 49.160072090000028 ], [ -122.826119100999961, 49.159804387000065 ], [ -122.826251387999889, 49.159231610000063 ], [ -122.826242212, 49.158824096000089 ], [ -122.82752360899994, 49.158629404000081 ], [ -122.82756189499996, 49.159254 ], [ -122.827604510999933, 49.159393094000059 ], [ -122.827744988999896, 49.159544205000053 ], [ -122.827936691999923, 49.159607501000089 ], [ -122.828157373999929, 49.159628395000055 ], [ -122.828982897999936, 49.159625692000105 ], [ -122.829713475999981, 49.159626504000094 ], [ -122.83019909699999, 49.159542602000045 ], [ -122.830489308999944, 49.159407802000075 ], [ -122.830586178999908, 49.159333193000037 ], [ -122.831250728999919, 49.15875719900005 ], [ -122.831892596999978, 49.158330105000104 ], [ -122.832249488999963, 49.158463993000048 ], [ -122.832580677999957, 49.158531412000066 ], [ -122.833301997999939, 49.158529211000037 ], [ -122.833212203999963, 49.159022211000064 ], [ -122.832914992999974, 49.15938009900006 ], [ -122.83220958699999, 49.15961259700007 ], [ -122.83184040299993, 49.159799890000031 ], [ -122.83148270299999, 49.160079497000041 ], [ -122.83147040299994, 49.160097175000061 ], [ -122.831338310999968, 49.160287004000089 ], [ -122.83199117599996, 49.160444096000063 ], [ -122.832257696999974, 49.160455499000122 ], [ -122.8333340499999, 49.160453877000066 ], [ -122.834561306999973, 49.160450348000033 ], [ -122.834570787999951, 49.161851819000084 ], [ -122.834571594999957, 49.16197067800006 ], [ -122.834578718000017, 49.162732253000065 ], [ -122.83457821599994, 49.162840369000087 ], [ -122.834060243999886, 49.162835952000059 ], [ -122.833500707999988, 49.162838400000062 ], [ -122.832903119999955, 49.162846722000033 ], [ -122.830965986999928, 49.162873703000066 ], [ -122.830022426999946, 49.162878571000114 ], [ -122.829761671999975, 49.16287993100012 ], [ -122.829062193999945, 49.162883545000113 ], [ -122.828584078999981, 49.162886004000072 ], [ -122.82807457899996, 49.162888649000159 ], [ -122.827711295999976, 49.162890511000036 ], [ -122.825399711999978, 49.162902554000034 ], [ -122.825084275999956, 49.162904177000087 ], [ -122.82342528799991, 49.162912802000037 ], [ -122.823427694999964, 49.162856533000067 ], [ -122.823429909999959, 49.162804809000129 ], [ -122.823429418000018, 49.162568353000019 ], [ -122.82342925799999, 49.162505383000095 ], [ -122.823427344999971, 49.161623873000025 ], [ -122.823427273999982, 49.161587892000057 ], [ -122.823427199999955, 49.161551911000039 ], [ -122.823424924999955, 49.160499401000067 ], [ -122.823423911999953, 49.16002309800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63731250", "BldgCostT": "41535000", "sL_LossRatio": "0.697104590982843", "sL_AssetLoss": "1448949", "sL_BldgLoss": "1010069", "sL_StrLoss": "430989", "sL_NStrLoss": "579080", "sL_ContLoss": "438880", "geom_point": "0101000020E610000041E8E2670AB55EC02684373936944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82756189499996, 49.159254 ], [ -122.82752360899994, 49.158629404000081 ], [ -122.826242212, 49.158824096000089 ], [ -122.826000713999974, 49.158325910000094 ], [ -122.825710400999967, 49.157818989000063 ], [ -122.825583487999921, 49.157528806000109 ], [ -122.825608875999976, 49.157257394000084 ], [ -122.825696888999971, 49.157012206000026 ], [ -122.825895589999931, 49.156752304000058 ], [ -122.826366403999927, 49.156582285000106 ], [ -122.82686269299991, 49.156501492000103 ], [ -122.828940382999974, 49.156488785000121 ], [ -122.83038308499998, 49.156480807 ], [ -122.830648396999919, 49.156510308000115 ], [ -122.831047596999923, 49.156647305000064 ], [ -122.831362014999939, 49.156902502000079 ], [ -122.831487611999961, 49.157131487000036 ], [ -122.831519677999935, 49.157303594000055 ], [ -122.831522891999981, 49.157960594000045 ], [ -122.831892596999978, 49.158330105000104 ], [ -122.831250728999919, 49.15875719900005 ], [ -122.830586178999908, 49.159333193000037 ], [ -122.830489308999944, 49.159407802000075 ], [ -122.83019909699999, 49.159542602000045 ], [ -122.829713475999981, 49.159626504000094 ], [ -122.828982897999936, 49.159625692000105 ], [ -122.828157373999929, 49.159628395000055 ], [ -122.827936691999923, 49.159607501000089 ], [ -122.827744988999896, 49.159544205000053 ], [ -122.827604510999933, 49.159393094000059 ], [ -122.82756189499996, 49.159254 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120774667", "BldgCostT": "78606667", "sL_LossRatio": "0.693347133810077", "sL_AssetLoss": "2444360", "sL_BldgLoss": "1694790", "sL_StrLoss": "752020", "sL_NStrLoss": "942770", "sL_ContLoss": "749570", "geom_point": "0101000020E6100000FC153AC8CEB45EC0997E2EBFF8934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823423911999953, 49.16002309800011 ], [ -122.823406877999986, 49.157933566000061 ], [ -122.823406151999961, 49.15784357100015 ], [ -122.823405797999925, 49.15780059300004 ], [ -122.823377204999971, 49.156703165000067 ], [ -122.823366379999968, 49.156289344000044 ], [ -122.823364300999941, 49.156208225000057 ], [ -122.823347093999971, 49.155549004000086 ], [ -122.823374007999988, 49.154031498000066 ], [ -122.823387902999954, 49.153084909000093 ], [ -122.823391103999981, 49.152376792000098 ], [ -122.824545428999912, 49.152361104000114 ], [ -122.825231010999971, 49.152351785000107 ], [ -122.826207101999984, 49.152348998000093 ], [ -122.82654981, 49.15240869400008 ], [ -122.826785774999962, 49.152505793000039 ], [ -122.827043203999921, 49.152651196000079 ], [ -122.827208385999981, 49.152882193000018 ], [ -122.826963411999913, 49.152956994000064 ], [ -122.826632192999966, 49.153150001000071 ], [ -122.82641831, 49.153372484000073 ], [ -122.826304490999945, 49.153633205000084 ], [ -122.826302385999924, 49.153694400000063 ], [ -122.82629009599998, 49.154045402000044 ], [ -122.826271406, 49.154638859000066 ], [ -122.826243094999938, 49.155537112000076 ], [ -122.828958808999957, 49.155516199000026 ], [ -122.828940382999974, 49.156488785000121 ], [ -122.82686269299991, 49.156501492000103 ], [ -122.826366403999927, 49.156582285000106 ], [ -122.825895589999931, 49.156752304000058 ], [ -122.825696888999971, 49.157012206000026 ], [ -122.825608875999976, 49.157257394000084 ], [ -122.825583487999921, 49.157528806000109 ], [ -122.825710400999967, 49.157818989000063 ], [ -122.826000713999974, 49.158325910000094 ], [ -122.826242212, 49.158824096000089 ], [ -122.826251387999889, 49.159231610000063 ], [ -122.826119100999961, 49.159804387000065 ], [ -122.826183093999987, 49.160072090000028 ], [ -122.825361798999964, 49.16007309499999 ], [ -122.82488840399999, 49.160053432000076 ], [ -122.824544286, 49.160039102000063 ], [ -122.823423911999953, 49.16002309800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62407999", "BldgCostT": "42094999", "sL_LossRatio": "0.71983177480764", "sL_AssetLoss": "1255460", "sL_BldgLoss": "903720", "sL_StrLoss": "378800", "sL_NStrLoss": "524920", "sL_ContLoss": "351740", "geom_point": "0101000020E6100000F9BED1F185B45EC0840F46685B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.819156886999977, 49.160232290000096 ], [ -122.818181894999952, 49.160194487000091 ], [ -122.818029, 49.160225112000084 ], [ -122.818043394999947, 49.15937489600001 ], [ -122.818060228999926, 49.158719008000041 ], [ -122.818082898999961, 49.157835300000052 ], [ -122.819385695999969, 49.157828789000035 ], [ -122.820682017999943, 49.15783820300009 ], [ -122.821970494999945, 49.157839301000131 ], [ -122.823252289999928, 49.157839297000066 ], [ -122.823366714999963, 49.157810464000043 ], [ -122.823405797999925, 49.15780059300004 ], [ -122.823406151999961, 49.15784357100015 ], [ -122.823406877999986, 49.157933566000061 ], [ -122.823423911999953, 49.16002309800011 ], [ -122.822006419, 49.16000290100007 ], [ -122.821827989000013, 49.160004791000119 ], [ -122.821667206999962, 49.159950503000111 ], [ -122.82098559399995, 49.160655703000018 ], [ -122.820442978999935, 49.160470298000092 ], [ -122.819842602999969, 49.160329102000084 ], [ -122.819156886999977, 49.160232290000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149912249", "BldgCostT": "97259999", "sL_LossRatio": "0.702771002412068", "sL_AssetLoss": "2955970", "sL_BldgLoss": "2077370", "sL_StrLoss": "870990", "sL_NStrLoss": "1206380", "sL_ContLoss": "878600", "geom_point": "0101000020E6100000A3B4693244B45EC0EF3CD08E44944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812421090999976, 49.161855004000124 ], [ -122.81361549899998, 49.161910087000109 ], [ -122.815319089999889, 49.161919093000051 ], [ -122.81532981399999, 49.161512588000107 ], [ -122.815330188999937, 49.161497713000045 ], [ -122.815323458999941, 49.16148981200012 ], [ -122.814527988999899, 49.160559401000093 ], [ -122.814210197999955, 49.160495099000102 ], [ -122.813720010999987, 49.160486006000021 ], [ -122.812442893, 49.160476991000067 ], [ -122.81244155399996, 49.16032902600007 ], [ -122.812440352999886, 49.160194099000122 ], [ -122.812431310999941, 49.159186409000064 ], [ -122.812436594999937, 49.157869189000081 ], [ -122.812423897999935, 49.15651450400005 ], [ -122.812426709999926, 49.155513502000105 ], [ -122.813768134999947, 49.15551326900006 ], [ -122.814814688999888, 49.155513104000079 ], [ -122.817569799999902, 49.155517986000085 ], [ -122.818142823999935, 49.155521096 ], [ -122.8218047299999, 49.155540755000054 ], [ -122.823025335999944, 49.155547279000096 ], [ -122.823347093999971, 49.155549004000086 ], [ -122.823364300999941, 49.156208225000057 ], [ -122.823366379999968, 49.156289344000044 ], [ -122.823377204999971, 49.156703165000067 ], [ -122.823405797999925, 49.15780059300004 ], [ -122.823366714999963, 49.157810464000043 ], [ -122.823252289999928, 49.157839297000066 ], [ -122.821970494999945, 49.157839301000131 ], [ -122.820682017999943, 49.15783820300009 ], [ -122.819385695999969, 49.157828789000035 ], [ -122.818082898999961, 49.157835300000052 ], [ -122.818060228999926, 49.158719008000041 ], [ -122.818043394999947, 49.15937489600001 ], [ -122.816931482999976, 49.159596108000109 ], [ -122.816346417, 49.159590607000098 ], [ -122.816425604999949, 49.160376790000058 ], [ -122.816555892999972, 49.16063660100005 ], [ -122.816795101999944, 49.160927490000141 ], [ -122.817015102999946, 49.161037609000097 ], [ -122.817986092999902, 49.161052797000181 ], [ -122.817963396999971, 49.161525294000057 ], [ -122.817944079, 49.161926501000025 ], [ -122.817901481999968, 49.162790202000039 ], [ -122.817899426999986, 49.162920799000119 ], [ -122.816099746999924, 49.162902553000066 ], [ -122.815866585999984, 49.16290020700005 ], [ -122.815743164999958, 49.162898934000054 ], [ -122.81238468699999, 49.162864801000083 ], [ -122.812386321999909, 49.162820700000047 ], [ -122.812387802, 49.162780199000046 ], [ -122.812421090999976, 49.161855004000124 ] ], [ [ -122.817111788, 49.157999097000058 ], [ -122.817112780999977, 49.157729238000044 ], [ -122.81628986699999, 49.157727932000036 ], [ -122.816290337999988, 49.15760054800009 ], [ -122.815634721999913, 49.157581153000095 ], [ -122.815631925, 49.157622003000014 ], [ -122.815558477999971, 49.157619830000016 ], [ -122.815525551999897, 49.158100586000096 ], [ -122.815836888999911, 49.158109796000133 ], [ -122.815807650999901, 49.158536746000038 ], [ -122.816286873999957, 49.158537510000031 ], [ -122.816288868999948, 49.157997791000113 ], [ -122.817111788, 49.157999097000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95620000", "BldgCostT": "63850000", "sL_LossRatio": "0.701863460126053", "sL_AssetLoss": "2341880", "sL_BldgLoss": "1643680", "sL_StrLoss": "629880", "sL_NStrLoss": "1013800", "sL_ContLoss": "698200", "geom_point": "0101000020E61000003A33D1527FB45EC0FFF4C043A8944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817963396999971, 49.161525294000057 ], [ -122.817986092999902, 49.161052797000181 ], [ -122.817015102999946, 49.161037609000097 ], [ -122.816795101999944, 49.160927490000141 ], [ -122.816555892999972, 49.16063660100005 ], [ -122.816425604999949, 49.160376790000058 ], [ -122.816346417, 49.159590607000098 ], [ -122.816931482999976, 49.159596108000109 ], [ -122.818043394999947, 49.15937489600001 ], [ -122.818029, 49.160225112000084 ], [ -122.818181894999952, 49.160194487000091 ], [ -122.819156886999977, 49.160232290000096 ], [ -122.819842602999969, 49.160329102000084 ], [ -122.820442978999935, 49.160470298000092 ], [ -122.82098559399995, 49.160655703000018 ], [ -122.821667206999962, 49.159950503000111 ], [ -122.821827989000013, 49.160004791000119 ], [ -122.822006419, 49.16000290100007 ], [ -122.823423911999953, 49.16002309800011 ], [ -122.823424924999955, 49.160499401000067 ], [ -122.823427199999955, 49.161551911000039 ], [ -122.823427273999982, 49.161587892000057 ], [ -122.823427344999971, 49.161623873000025 ], [ -122.82342925799999, 49.162505383000095 ], [ -122.823429418000018, 49.162568353000019 ], [ -122.823429909999959, 49.162804809000129 ], [ -122.823427694999964, 49.162856533000067 ], [ -122.82342528799991, 49.162912802000037 ], [ -122.820690273999958, 49.162908593000047 ], [ -122.8202147399999, 49.162910696000047 ], [ -122.817899426999986, 49.162920799000119 ], [ -122.817901481999968, 49.162790202000039 ], [ -122.817944079, 49.161926501000025 ], [ -122.817963396999971, 49.161525294000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111576561", "BldgCostT": "73913190", "sL_LossRatio": "0.700738533574545", "sL_AssetLoss": "2349250", "sL_BldgLoss": "1646210", "sL_StrLoss": "683900", "sL_NStrLoss": "962310", "sL_ContLoss": "703040", "geom_point": "0101000020E610000094DA41DB60B45EC0810100D700954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.816580899999934, 49.165056907000057 ], [ -122.81656988, 49.164636706000152 ], [ -122.813602009999954, 49.164629106000071 ], [ -122.812373286999957, 49.164630596000059 ], [ -122.81238468699999, 49.162864801000083 ], [ -122.815743164999958, 49.162898934000054 ], [ -122.815866585999984, 49.16290020700005 ], [ -122.816099746999924, 49.162902553000066 ], [ -122.817899426999986, 49.162920799000119 ], [ -122.8202147399999, 49.162910696000047 ], [ -122.820690273999958, 49.162908593000047 ], [ -122.82342528799991, 49.162912802000037 ], [ -122.823409352999974, 49.165122998000065 ], [ -122.823406231999968, 49.16555950200015 ], [ -122.817897978999952, 49.165545503000054 ], [ -122.817347816999956, 49.165530108000056 ], [ -122.816962014999916, 49.16541779100006 ], [ -122.816813409999924, 49.165325996000043 ], [ -122.81664041399992, 49.165208197000027 ], [ -122.816580899999934, 49.165056907000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58275583", "BldgCostT": "38773333", "sL_LossRatio": "0.707689792613813", "sL_AssetLoss": "1284560", "sL_BldgLoss": "909070", "sL_StrLoss": "376270", "sL_NStrLoss": "532800", "sL_ContLoss": "375490", "geom_point": "0101000020E6100000B1EF69D2D6B45EC0377062A307954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823406231999968, 49.16555950200015 ], [ -122.823409352999974, 49.165122998000065 ], [ -122.82342528799991, 49.162912802000037 ], [ -122.825084275999956, 49.162904177000087 ], [ -122.825399711999978, 49.162902554000034 ], [ -122.827711295999976, 49.162890511000036 ], [ -122.827718274999953, 49.163429217000058 ], [ -122.827736147999985, 49.164805667000074 ], [ -122.82773648099996, 49.164833007000063 ], [ -122.827874304999909, 49.165083911000103 ], [ -122.82823649499997, 49.165442393000049 ], [ -122.827358422999936, 49.16567150900002 ], [ -122.826554799999968, 49.165674002000074 ], [ -122.825440486999966, 49.165687104000128 ], [ -122.825307056999975, 49.165680764000044 ], [ -122.825100377999945, 49.165670931000122 ], [ -122.824640996999975, 49.165649087000098 ], [ -122.824115772999932, 49.165649798000111 ], [ -122.82365029, 49.165599994000097 ], [ -122.823406231999968, 49.16555950200015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91373166", "BldgCostT": "61836666", "sL_LossRatio": "0.715551619182923", "sL_AssetLoss": "2224270", "sL_BldgLoss": "1591580", "sL_StrLoss": "631850", "sL_NStrLoss": "959730", "sL_ContLoss": "632690", "geom_point": "0101000020E6100000C16D122887B45EC03A2E5F6E62954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.818988707999964, 49.168642095000102 ], [ -122.818980086999929, 49.167865210000109 ], [ -122.817900298999987, 49.167874691000094 ], [ -122.817888587999974, 49.166483199000091 ], [ -122.817897978999952, 49.165545503000054 ], [ -122.823406231999968, 49.16555950200015 ], [ -122.823405814999902, 49.166004579000102 ], [ -122.823404999, 49.166921806000097 ], [ -122.823402629999975, 49.16818146300006 ], [ -122.823401705999942, 49.168675990000096 ], [ -122.822131816999942, 49.168658399000051 ], [ -122.820056778999913, 49.168662907000105 ], [ -122.819902810999906, 49.168708790000032 ], [ -122.819359390999963, 49.169035986000054 ], [ -122.819069097999886, 49.168789608000083 ], [ -122.818988707999964, 49.168642095000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133331168", "BldgCostT": "78577624", "sL_LossRatio": "0.63491270225211", "sL_AssetLoss": "2501210", "sL_BldgLoss": "1588050", "sL_StrLoss": "653430", "sL_NStrLoss": "934620", "sL_ContLoss": "913160", "geom_point": "0101000020E6100000017D2AC0DAB45EC0E14040A567954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823401705999942, 49.168675990000096 ], [ -122.823402629999975, 49.16818146300006 ], [ -122.823404999, 49.166921806000097 ], [ -122.823405814999902, 49.166004579000102 ], [ -122.823406231999968, 49.16555950200015 ], [ -122.82365029, 49.165599994000097 ], [ -122.824115772999932, 49.165649798000111 ], [ -122.824640996999975, 49.165649087000098 ], [ -122.825100377999945, 49.165670931000122 ], [ -122.825307056999975, 49.165680764000044 ], [ -122.825440486999966, 49.165687104000128 ], [ -122.826554799999968, 49.165674002000074 ], [ -122.827358422999936, 49.16567150900002 ], [ -122.82823649499997, 49.165442393000049 ], [ -122.828347481999984, 49.165683503000075 ], [ -122.828360314999898, 49.165948904000103 ], [ -122.828366375999934, 49.166075009000103 ], [ -122.828388377999943, 49.166531696000071 ], [ -122.828368511999898, 49.167445686000121 ], [ -122.828368312999942, 49.167629489000028 ], [ -122.82820588599999, 49.16786080900004 ], [ -122.827500408999953, 49.168694095000035 ], [ -122.827315388999963, 49.168893200000085 ], [ -122.826946588999959, 49.169073390000072 ], [ -122.826536295999986, 49.169157711000082 ], [ -122.8263519, 49.169154135000099 ], [ -122.825999516999957, 49.169147304000084 ], [ -122.824937410999979, 49.168777205000055 ], [ -122.824923815999981, 49.168775640000064 ], [ -122.824835875999895, 49.168765493000095 ], [ -122.824107509999934, 49.168681512000042 ], [ -122.823401705999942, 49.168675990000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132744333", "BldgCostT": "89808333", "sL_LossRatio": "0.758805281440644", "sL_AssetLoss": "2314520", "sL_BldgLoss": "1756270", "sL_StrLoss": "770260", "sL_NStrLoss": "986010", "sL_ContLoss": "558250", "geom_point": "0101000020E61000006285F0A24EB55EC0F56220B611954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834060243999886, 49.162835952000059 ], [ -122.83457821599994, 49.162840369000087 ], [ -122.834576952999953, 49.163060179000084 ], [ -122.834627798999932, 49.163158991000095 ], [ -122.834637260999941, 49.163736599000067 ], [ -122.83465220899997, 49.164652707000073 ], [ -122.834647323999917, 49.165553481000089 ], [ -122.834642398999904, 49.166468002000038 ], [ -122.833782141999947, 49.166480697000068 ], [ -122.833467152999958, 49.166485354000017 ], [ -122.832888406000038, 49.16649389600007 ], [ -122.831791211, 49.166497691000089 ], [ -122.831612996000018, 49.166125464000125 ], [ -122.831533089999951, 49.165958494000122 ], [ -122.831312288000035, 49.165597793000067 ], [ -122.831310570999946, 49.165584952000081 ], [ -122.831255116999927, 49.165170001000064 ], [ -122.831248812999917, 49.164882927000043 ], [ -122.83124508899999, 49.164712030000103 ], [ -122.831241086999967, 49.164529799 ], [ -122.830995893999969, 49.164043307000064 ], [ -122.830984006999984, 49.163829929000016 ], [ -122.830977423999968, 49.163711101000047 ], [ -122.830965986999928, 49.162873703000066 ], [ -122.832903119999955, 49.162846722000033 ], [ -122.833500707999988, 49.162838400000062 ], [ -122.834060243999886, 49.162835952000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65380000", "BldgCostT": "42880000", "sL_LossRatio": "0.713907288822031", "sL_AssetLoss": "1306919", "sL_BldgLoss": "933019", "sL_StrLoss": "395329", "sL_NStrLoss": "537690", "sL_ContLoss": "373900", "geom_point": "0101000020E61000004A13ADE43CB45EC0994D15C6F5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812275703999916, 49.176655075000085 ], [ -122.812253392999963, 49.175998010000058 ], [ -122.812255557999947, 49.175675021000096 ], [ -122.8122568799999, 49.175477121000021 ], [ -122.812257295999984, 49.175414129000046 ], [ -122.812257857999924, 49.175333172000101 ], [ -122.812258415999935, 49.175252216000047 ], [ -122.81227054499999, 49.173448644000061 ], [ -122.81072010099993, 49.173439709000043 ], [ -122.810785786999958, 49.170103309000098 ], [ -122.811022510000029, 49.170105637000127 ], [ -122.812003510999929, 49.170254491000094 ], [ -122.812071348999964, 49.170219826000043 ], [ -122.812318219999909, 49.170093697 ], [ -122.81369607299996, 49.170096698000094 ], [ -122.815101380999948, 49.170100393000084 ], [ -122.816454799999946, 49.1701017090001 ], [ -122.817901507, 49.170102085000032 ], [ -122.817901288, 49.169403808000112 ], [ -122.818582090999925, 49.169394200000028 ], [ -122.81890281299998, 49.169316297000144 ], [ -122.819359390999963, 49.169035986000054 ], [ -122.819902810999906, 49.168708790000032 ], [ -122.820056778999913, 49.168662907000105 ], [ -122.822131816999942, 49.168658399000051 ], [ -122.823401705999942, 49.168675990000096 ], [ -122.823396394999946, 49.170118397000046 ], [ -122.823393915999972, 49.171520248000036 ], [ -122.822295809, 49.171487844000069 ], [ -122.822387189999972, 49.170151075000042 ], [ -122.822005778999937, 49.170150488000047 ], [ -122.822005908999969, 49.170114296000115 ], [ -122.8220059289999, 49.170108622000093 ], [ -122.821182826999973, 49.170102821000086 ], [ -122.821182793, 49.170111859 ], [ -122.821182658999973, 49.170149215000023 ], [ -122.81994798, 49.170147297000035 ], [ -122.81994812, 49.170108193000026 ], [ -122.819948172999901, 49.170094110000029 ], [ -122.819536620999912, 49.170091202 ], [ -122.819536563999961, 49.170106968000042 ], [ -122.819536419999977, 49.170146654000128 ], [ -122.819124858999928, 49.170146012000032 ], [ -122.819123876999953, 49.170415870000042 ], [ -122.817066067999974, 49.170412629000076 ], [ -122.817065072999952, 49.170682488000104 ], [ -122.815830379999952, 49.170680526000098 ], [ -122.815831381999928, 49.170410666000151 ], [ -122.815419819999946, 49.170410009000136 ], [ -122.815418815999948, 49.170679868000086 ], [ -122.814595687999955, 49.170678550000048 ], [ -122.814594679999914, 49.17094840900009 ], [ -122.81387540799993, 49.170947252000133 ], [ -122.812948415999955, 49.170945754000044 ], [ -122.812947397999906, 49.171215613000129 ], [ -122.812535830999948, 49.171214947000038 ], [ -122.812534811999981, 49.171484805000077 ], [ -122.812299210999953, 49.171484423000038 ], [ -122.812268826999968, 49.171484373000041 ], [ -122.81227841099999, 49.172833692000054 ], [ -122.812279496999935, 49.172833693000094 ], [ -122.81252971699999, 49.172834099000042 ], [ -122.812528696999948, 49.173103959000059 ], [ -122.812940280999968, 49.173104626000089 ], [ -122.812937231999911, 49.173914203000038 ], [ -122.812525638999929, 49.173913535000054 ], [ -122.812524620999937, 49.174183394000089 ], [ -122.812274030999959, 49.174182987000044 ], [ -122.812270955, 49.174452843000047 ], [ -122.81252360199997, 49.174453253000053 ], [ -122.81252258399995, 49.174723112000059 ], [ -122.81416897299998, 49.174725773000013 ], [ -122.814167961999914, 49.17499563100008 ], [ -122.815814363999962, 49.174998268000117 ], [ -122.815811358999966, 49.175807845000101 ], [ -122.814988144999987, 49.175806530000067 ], [ -122.814987139999971, 49.176076389000045 ], [ -122.81375231399997, 49.176074404000126 ], [ -122.813754337, 49.175534686000091 ], [ -122.812519526999949, 49.175532689000072 ], [ -122.812518505999918, 49.17580254700006 ], [ -122.81293011299999, 49.175803215000059 ], [ -122.81292807899996, 49.176342932000054 ], [ -122.8133396899999, 49.176343598000102 ], [ -122.813337584999942, 49.176903236000072 ], [ -122.812283780999948, 49.176894592000032 ], [ -122.812275703999916, 49.176655075000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.745775165319618", "sL_AssetLoss": "108880", "sL_BldgLoss": "81200", "sL_StrLoss": "34100", "sL_NStrLoss": "47100", "sL_ContLoss": "27680", "geom_point": "0101000020E61000001AE9FB5FE4B45EC08B9335C993964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.826921981999973, 49.176616747000068 ], [ -122.826923801999911, 49.176094894000059 ], [ -122.826512192999971, 49.176094277000161 ], [ -122.826513136999921, 49.175824417000094 ], [ -122.824866707999888, 49.175821932000076 ], [ -122.82486905699993, 49.175156258000072 ], [ -122.824871149, 49.175157060000075 ], [ -122.825587954999918, 49.175432083000061 ], [ -122.825927213999975, 49.175562247000059 ], [ -122.82847082699999, 49.176538189000055 ], [ -122.827865012999922, 49.176862993000015 ], [ -122.827854408999968, 49.17686870800005 ], [ -122.827394502999937, 49.176976800000048 ], [ -122.82698049699999, 49.177014192000115 ], [ -122.825033309999938, 49.176998475000026 ], [ -122.824921712, 49.176997571000079 ], [ -122.824951694999953, 49.176558670000055 ], [ -122.826921981999973, 49.176616747000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80514832", "BldgCostT": "53108332", "sL_LossRatio": "0.709470265104021", "sL_AssetLoss": "1690808", "sL_BldgLoss": "1199578", "sL_StrLoss": "509358", "sL_NStrLoss": "690220", "sL_ContLoss": "491230", "geom_point": "0101000020E61000005B9EB42E3DB45EC0F8B8A1EF8F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81369607299996, 49.170096698000094 ], [ -122.813745086999916, 49.16744190300011 ], [ -122.81512310299999, 49.167442994000091 ], [ -122.81526080899999, 49.166473893000081 ], [ -122.81646030099995, 49.166477902000032 ], [ -122.817888587999974, 49.166483199000091 ], [ -122.817900298999987, 49.167874691000094 ], [ -122.818980086999929, 49.167865210000109 ], [ -122.818988707999964, 49.168642095000102 ], [ -122.819069097999886, 49.168789608000083 ], [ -122.819359390999963, 49.169035986000054 ], [ -122.81890281299998, 49.169316297000144 ], [ -122.818582090999925, 49.169394200000028 ], [ -122.817901288, 49.169403808000112 ], [ -122.817901507, 49.170102085000032 ], [ -122.816454799999946, 49.1701017090001 ], [ -122.815101380999948, 49.170100393000084 ], [ -122.81369607299996, 49.170096698000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127259666", "BldgCostT": "80710681", "sL_LossRatio": "0.674289439072462", "sL_AssetLoss": "2592670", "sL_BldgLoss": "1748210", "sL_StrLoss": "725630", "sL_NStrLoss": "1022580", "sL_ContLoss": "844460", "geom_point": "0101000020E61000002BF5B04009B45EC002A2A2E266954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808956502999976, 49.169088617000035 ], [ -122.806827851999984, 49.168273991000042 ], [ -122.806828117999927, 49.168210038000097 ], [ -122.809042969999936, 49.169064129000077 ], [ -122.80986868699992, 49.168161401000113 ], [ -122.809932767999939, 49.168026402000088 ], [ -122.809964278999971, 49.166468497000103 ], [ -122.812356800999979, 49.166471803000057 ], [ -122.812373286999957, 49.164630596000059 ], [ -122.813602009999954, 49.164629106000071 ], [ -122.81656988, 49.164636706000152 ], [ -122.816580899999934, 49.165056907000057 ], [ -122.81664041399992, 49.165208197000027 ], [ -122.816813409999924, 49.165325996000043 ], [ -122.816962014999916, 49.16541779100006 ], [ -122.817347816999956, 49.165530108000056 ], [ -122.817897978999952, 49.165545503000054 ], [ -122.817888587999974, 49.166483199000091 ], [ -122.81646030099995, 49.166477902000032 ], [ -122.81526080899999, 49.166473893000081 ], [ -122.81512310299999, 49.167442994000091 ], [ -122.813745086999916, 49.16744190300011 ], [ -122.81369607299996, 49.170096698000094 ], [ -122.812318219999909, 49.170093697 ], [ -122.812071348999964, 49.170219826000043 ], [ -122.812003510999929, 49.170254491000094 ], [ -122.811652854999977, 49.17012032600006 ], [ -122.809075021999945, 49.169133946 ], [ -122.808956502999976, 49.169088617000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129722866", "BldgCostT": "83738879", "sL_LossRatio": "0.683705056253197", "sL_AssetLoss": "2678070", "sL_BldgLoss": "1831010", "sL_StrLoss": "784760", "sL_NStrLoss": "1046250", "sL_ContLoss": "847060", "geom_point": "0101000020E6100000220E1B5DCCB35EC0A2F52A112C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812370975999954, 49.162864846000048 ], [ -122.81238468699999, 49.162864801000083 ], [ -122.812373286999957, 49.164630596000059 ], [ -122.812356800999979, 49.166471803000057 ], [ -122.809964278999971, 49.166468497000103 ], [ -122.809932767999939, 49.168026402000088 ], [ -122.80986868699992, 49.168161401000113 ], [ -122.809042969999936, 49.169064129000077 ], [ -122.806828117999927, 49.168210038000097 ], [ -122.80687041, 49.167294953000116 ], [ -122.806894105999959, 49.166451400000021 ], [ -122.806901200999945, 49.166202947000095 ], [ -122.806906116999954, 49.166032083000083 ], [ -122.806959926, 49.164152344000115 ], [ -122.806971599999912, 49.163745099000081 ], [ -122.806962295999966, 49.162883513000082 ], [ -122.812370975999954, 49.162864846000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139794084", "BldgCostT": "88148334", "sL_LossRatio": "0.696859849991895", "sL_AssetLoss": "2714520", "sL_BldgLoss": "1891640", "sL_StrLoss": "795060", "sL_NStrLoss": "1096580", "sL_ContLoss": "822880", "geom_point": "0101000020E610000001400DC6A5B35EC021C2E01603964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806732912999976, 49.170094908000095 ], [ -122.810785786999958, 49.170103309000098 ], [ -122.81072010099993, 49.173439709000043 ], [ -122.807944423999956, 49.173420502000077 ], [ -122.80729080799999, 49.173412794000036 ], [ -122.806690111999941, 49.17347339300008 ], [ -122.804783020999977, 49.173472508000025 ], [ -122.803913095999974, 49.173472099000065 ], [ -122.802569917999932, 49.173461991000096 ], [ -122.802601783999933, 49.172638504000112 ], [ -122.802633790999948, 49.171875313000044 ], [ -122.802670015999965, 49.171009608000062 ], [ -122.803952008999957, 49.171011587000088 ], [ -122.80523177000002, 49.171013861000127 ], [ -122.806411589999939, 49.171015930000038 ], [ -122.806562482999965, 49.171016218000062 ], [ -122.806728584999945, 49.171016496000043 ], [ -122.806732912999976, 49.170094908000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180004499", "BldgCostT": "124109999", "sL_LossRatio": "0.771190949660479", "sL_AssetLoss": "3007180", "sL_BldgLoss": "2319110", "sL_StrLoss": "1015940", "sL_NStrLoss": "1303170", "sL_ContLoss": "688070", "geom_point": "0101000020E61000008165B675C1B35EC01F2DCE1866964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806649067999928, 49.175521767000127 ], [ -122.806659004999972, 49.175062793000087 ], [ -122.803872210999941, 49.17506479400005 ], [ -122.803913095999974, 49.173472099000065 ], [ -122.804783020999977, 49.173472508000025 ], [ -122.806690111999941, 49.17347339300008 ], [ -122.80729080799999, 49.173412794000036 ], [ -122.807944423999956, 49.173420502000077 ], [ -122.81072010099993, 49.173439709000043 ], [ -122.81227054499999, 49.173448644000061 ], [ -122.812258415999935, 49.175252216000047 ], [ -122.812257857999924, 49.175333172000101 ], [ -122.812257295999984, 49.175414129000046 ], [ -122.8122568799999, 49.175477121000021 ], [ -122.812255557999947, 49.175675021000096 ], [ -122.812253392999963, 49.175998010000058 ], [ -122.812275703999916, 49.176655075000085 ], [ -122.812283780999948, 49.176894592000032 ], [ -122.810587193999964, 49.17688105900011 ], [ -122.810312651999979, 49.176878859000105 ], [ -122.806619993999931, 49.176849293000018 ], [ -122.806639381999915, 49.175967801000098 ], [ -122.806649067999928, 49.175521767000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96571977", "BldgCostT": "62174856", "sL_LossRatio": "0.69019617236341", "sL_AssetLoss": "2087450", "sL_BldgLoss": "1440750", "sL_StrLoss": "550950", "sL_NStrLoss": "889800", "sL_ContLoss": "646700", "geom_point": "0101000020E61000006C5ABD1E67B35EC04F40979967964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801002470999904, 49.175109888000065 ], [ -122.801060356999969, 49.173476591000046 ], [ -122.801077183999951, 49.173038575000106 ], [ -122.8011222209999, 49.171869256000065 ], [ -122.801122377999917, 49.171865161 ], [ -122.801124745999971, 49.171803359000045 ], [ -122.801297628, 49.171822119000076 ], [ -122.80169610199999, 49.171870006000098 ], [ -122.802633790999948, 49.171875313000044 ], [ -122.802601783999933, 49.172638504000112 ], [ -122.802569917999932, 49.173461991000096 ], [ -122.803913095999974, 49.173472099000065 ], [ -122.803872210999941, 49.17506479400005 ], [ -122.806659004999972, 49.175062793000087 ], [ -122.806649067999928, 49.175521767000127 ], [ -122.806639381999915, 49.175967801000098 ], [ -122.806619993999931, 49.176849293000018 ], [ -122.804085701999938, 49.176846191000074 ], [ -122.803562407999934, 49.176845840000126 ], [ -122.80256079499999, 49.176845184000044 ], [ -122.801137117999986, 49.176844221000103 ], [ -122.801037917999906, 49.176843536000021 ], [ -122.800941104999964, 49.176842895000085 ], [ -122.80094142399993, 49.176833886000153 ], [ -122.800986946999927, 49.175548152000069 ], [ -122.801002470999904, 49.175109888000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249538433", "BldgCostT": "166889570", "sL_LossRatio": "0.731249498788037", "sL_AssetLoss": "3865630", "sL_BldgLoss": "2826740", "sL_StrLoss": "1213140", "sL_NStrLoss": "1613600", "sL_ContLoss": "1038890", "geom_point": "0101000020E610000062E85409C1B35EC0C3C13AC8CA964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804061110999953, 49.178659188000047 ], [ -122.804062411999922, 49.177343812000061 ], [ -122.804085701999938, 49.176846191000074 ], [ -122.806619993999931, 49.176849293000018 ], [ -122.810312651999979, 49.176878859000105 ], [ -122.810587193999964, 49.17688105900011 ], [ -122.812283780999948, 49.176894592000032 ], [ -122.812275667, 49.177141643000013 ], [ -122.812257603999939, 49.17769114500004 ], [ -122.812099748999913, 49.177690890000065 ], [ -122.812097706999964, 49.178230606000078 ], [ -122.812239863999963, 49.178230838000083 ], [ -122.812225113999943, 49.178679541000086 ], [ -122.812220580999963, 49.178817599000105 ], [ -122.812195510999928, 49.179580067000167 ], [ -122.812092598999968, 49.17957989900011 ], [ -122.812089244000035, 49.180465955000102 ], [ -122.811766743999911, 49.180468321000014 ], [ -122.811053524999949, 49.180473559000077 ], [ -122.810531977000025, 49.180477393000096 ], [ -122.8105111899999, 49.178681998000066 ], [ -122.809422103, 49.178683897000028 ], [ -122.808892590999974, 49.178681504000089 ], [ -122.807233807000017, 49.178674005000047 ], [ -122.805723083999979, 49.178666740000011 ], [ -122.805129215999969, 49.178663896000039 ], [ -122.804061110999953, 49.178659188000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79725227", "BldgCostT": "52624856", "sL_LossRatio": "0.717131771884407", "sL_AssetLoss": "1471710", "sL_BldgLoss": "1055410", "sL_StrLoss": "445670", "sL_NStrLoss": "609740", "sL_ContLoss": "416300", "geom_point": "0101000020E6100000C4A443D0A6B35EC0D10D66760A974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809422103, 49.178683897000028 ], [ -122.8105111899999, 49.178681998000066 ], [ -122.810531977000025, 49.180477393000096 ], [ -122.808913177999969, 49.180475694000037 ], [ -122.808732693999929, 49.180475507000033 ], [ -122.808734890999972, 49.18120180600004 ], [ -122.808268793999972, 49.181597014000019 ], [ -122.807997592999982, 49.18175120500009 ], [ -122.807745482999962, 49.181807692000163 ], [ -122.806868694999977, 49.18181320500004 ], [ -122.806502587999915, 49.181791510000089 ], [ -122.806058399999969, 49.181568415000108 ], [ -122.80553030899992, 49.181309494000082 ], [ -122.805149014999984, 49.181229691000034 ], [ -122.803965419999926, 49.181188304000038 ], [ -122.803979010999939, 49.180452492000036 ], [ -122.803993506999959, 49.179781712000072 ], [ -122.804061110999953, 49.178659188000047 ], [ -122.805129215999969, 49.178663896000039 ], [ -122.805723083999979, 49.178666740000011 ], [ -122.807233807000017, 49.178674005000047 ], [ -122.808892590999974, 49.178681504000089 ], [ -122.809422103, 49.178683897000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116245802", "BldgCostT": "75548745", "sL_LossRatio": "0.692896279185201", "sL_AssetLoss": "2619050", "sL_BldgLoss": "1814730", "sL_StrLoss": "731210", "sL_NStrLoss": "1083520", "sL_ContLoss": "804320", "geom_point": "0101000020E610000069E0C3FCC7B35EC08CBFBBCF50974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.803966883000015, 49.182662396000076 ], [ -122.803966609999961, 49.182362749000042 ], [ -122.803965419999926, 49.181188304000038 ], [ -122.805149014999984, 49.181229691000034 ], [ -122.80553030899992, 49.181309494000082 ], [ -122.806058399999969, 49.181568415000108 ], [ -122.806502587999915, 49.181791510000089 ], [ -122.806868694999977, 49.18181320500004 ], [ -122.807745482999962, 49.181807692000163 ], [ -122.807997592999982, 49.18175120500009 ], [ -122.808268793999972, 49.181597014000019 ], [ -122.808734890999972, 49.18120180600004 ], [ -122.808732693999929, 49.180475507000033 ], [ -122.808913177999969, 49.180475694000037 ], [ -122.810531977000025, 49.180477393000096 ], [ -122.811053524999949, 49.180473559000077 ], [ -122.811766743999911, 49.180468321000014 ], [ -122.812089244000035, 49.180465955000102 ], [ -122.812087490999943, 49.180929193000068 ], [ -122.812155342999944, 49.180929303 ], [ -122.812140356999947, 49.181558061000068 ], [ -122.812121112999947, 49.182367578 ], [ -122.812115542999976, 49.182600634000039 ], [ -122.812105693999953, 49.18301523100007 ], [ -122.81209025699998, 49.183662862000091 ], [ -122.812077401999915, 49.184202019000061 ], [ -122.810875159999966, 49.18420315500002 ], [ -122.810724196999928, 49.184203289000102 ], [ -122.810454605999965, 49.18420354400012 ], [ -122.810134119999972, 49.184204835000045 ], [ -122.809731539, 49.184206434000046 ], [ -122.809744925999951, 49.183312116000124 ], [ -122.809752174999957, 49.182706861000078 ], [ -122.809545208999978, 49.182684475000066 ], [ -122.809036754999966, 49.182697363000045 ], [ -122.807875684999942, 49.182807075 ], [ -122.806610281999937, 49.182778592000012 ], [ -122.806019276999962, 49.18269528900008 ], [ -122.803966883000015, 49.182662396000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26080499", "BldgCostT": "17489999", "sL_LossRatio": "0.711428108866543", "sL_AssetLoss": "555910", "sL_BldgLoss": "395490", "sL_StrLoss": "147990", "sL_NStrLoss": "247500", "sL_ContLoss": "160420", "geom_point": "0101000020E6100000E6E74CFBA2B35EC0A94402DB7B974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.803966883000015, 49.182662396000076 ], [ -122.806019276999962, 49.18269528900008 ], [ -122.806610281999937, 49.182778592000012 ], [ -122.807875684999942, 49.182807075 ], [ -122.809036754999966, 49.182697363000045 ], [ -122.809545208999978, 49.182684475000066 ], [ -122.809752174999957, 49.182706861000078 ], [ -122.809744925999951, 49.183312116000124 ], [ -122.809731539, 49.184206434000046 ], [ -122.809358380999967, 49.184207109000099 ], [ -122.808213187999968, 49.184213154000119 ], [ -122.806530405999951, 49.18422060400006 ], [ -122.803912899999943, 49.184185290000137 ], [ -122.80394788299995, 49.183198351000058 ], [ -122.803966883000015, 49.182662396000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147802270", "BldgCostT": "85605832", "sL_LossRatio": "0.652471062717096", "sL_AssetLoss": "2841490", "sL_BldgLoss": "1853990", "sL_StrLoss": "690190", "sL_NStrLoss": "1163800", "sL_ContLoss": "987500", "geom_point": "0101000020E6100000C1C4BC1A22B35EC0D5CA3AD2CF944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799997610999952, 49.159186643000076 ], [ -122.80136759, 49.159187042000084 ], [ -122.801419411999959, 49.162231183000046 ], [ -122.801429077999941, 49.162797569000055 ], [ -122.801424479999952, 49.162863806000118 ], [ -122.801422860999963, 49.162887483000091 ], [ -122.801305172999932, 49.166033154000111 ], [ -122.801303248999929, 49.166100674000091 ], [ -122.799990579999957, 49.165589767000043 ], [ -122.799595857999989, 49.165436116000109 ], [ -122.797944795999953, 49.164793429000056 ], [ -122.795122960999905, 49.163680467000063 ], [ -122.79363589399999, 49.163115363000074 ], [ -122.793757492999958, 49.163082054000093 ], [ -122.794257694999956, 49.162906810000045 ], [ -122.79481849799997, 49.162859402000045 ], [ -122.794832781999943, 49.162858202000088 ], [ -122.794955558, 49.162860073000019 ], [ -122.796143501999964, 49.162878300000074 ], [ -122.796143855999944, 49.162811299000047 ], [ -122.796144119999951, 49.162770151000061 ], [ -122.79614729099994, 49.161987189000065 ], [ -122.796144999, 49.161165388000072 ], [ -122.798246395999982, 49.161170297000133 ], [ -122.798475190999937, 49.161132906000013 ], [ -122.798598408999936, 49.161036596000031 ], [ -122.79863658899994, 49.16088000600012 ], [ -122.798632894999983, 49.159182303000087 ], [ -122.799867807999973, 49.159186606000077 ], [ -122.799997610999952, 49.159186643000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104504167", "BldgCostT": "69126667", "sL_LossRatio": "0.710809471725982", "sL_AssetLoss": "2139420", "sL_BldgLoss": "1520720", "sL_StrLoss": "653020", "sL_NStrLoss": "867700", "sL_ContLoss": "618700", "geom_point": "0101000020E6100000EF984F9077B35EC0267623E29C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80136759, 49.159187042000084 ], [ -122.801552602, 49.159188025000013 ], [ -122.802285902999984, 49.159190890000033 ], [ -122.802896512999936, 49.15918290600009 ], [ -122.805415299999979, 49.159196131000066 ], [ -122.806953098999941, 49.159204205000101 ], [ -122.806939127999954, 49.160066989000079 ], [ -122.806952871999925, 49.160962997000048 ], [ -122.806954846999972, 49.16142654300004 ], [ -122.806956904999979, 49.161903001000034 ], [ -122.806960863999933, 49.162784294000033 ], [ -122.806962295999966, 49.162883513000082 ], [ -122.804274479999947, 49.162890187000073 ], [ -122.804260731999975, 49.162890184000076 ], [ -122.801555787, 49.162888737000038 ], [ -122.801422860999963, 49.162887483000091 ], [ -122.801424479999952, 49.162863806000118 ], [ -122.801429077999941, 49.162797569000055 ], [ -122.801419411999959, 49.162231183000046 ], [ -122.80136759, 49.159187042000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119081834", "BldgCostT": "77473334", "sL_LossRatio": "0.704782711336782", "sL_AssetLoss": "2499210", "sL_BldgLoss": "1761400", "sL_StrLoss": "735580", "sL_NStrLoss": "1025820", "sL_ContLoss": "737810", "geom_point": "0101000020E6100000C194CCDA7BB35EC075D95CF332944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806939127999954, 49.160066989000079 ], [ -122.806953098999941, 49.159204205000101 ], [ -122.805415299999979, 49.159196131000066 ], [ -122.802896512999936, 49.15918290600009 ], [ -122.802285902999984, 49.159190890000033 ], [ -122.801552602, 49.159188025000013 ], [ -122.80136759, 49.159187042000084 ], [ -122.801324295999933, 49.155531965000137 ], [ -122.801520314999948, 49.155532380000039 ], [ -122.804182866999966, 49.155526762000079 ], [ -122.804162184999925, 49.156526302000081 ], [ -122.804902684999917, 49.156541986000079 ], [ -122.805289081999987, 49.156644504000013 ], [ -122.805440842999971, 49.156744974 ], [ -122.806293943999918, 49.157309869000059 ], [ -122.806344694999936, 49.15734350499999 ], [ -122.806541677999974, 49.157409707000042 ], [ -122.806775997999964, 49.157450891000053 ], [ -122.806918961999983, 49.157453446000083 ], [ -122.808305409999946, 49.157478202000057 ], [ -122.808296198999955, 49.158270914000092 ], [ -122.808251209000019, 49.159186805000076 ], [ -122.808230590999983, 49.16006650100006 ], [ -122.806939127999954, 49.160066989000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155240583", "BldgCostT": "105588333", "sL_LossRatio": "0.768498266665514", "sL_AssetLoss": "2313460", "sL_BldgLoss": "1777890", "sL_StrLoss": "764980", "sL_NStrLoss": "1012910", "sL_ContLoss": "535570", "geom_point": "0101000020E610000066544B001FB35EC0996EC8F525944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799957848999938, 49.155527384000024 ], [ -122.801324295999933, 49.155531965000137 ], [ -122.80136759, 49.159187042000084 ], [ -122.799997610999952, 49.159186643000076 ], [ -122.799867807999973, 49.159186606000077 ], [ -122.798632894999983, 49.159182303000087 ], [ -122.797372124999981, 49.159174503000031 ], [ -122.796124784999961, 49.159170812000092 ], [ -122.795776213999943, 49.159155894000094 ], [ -122.795902716999976, 49.158274797000097 ], [ -122.796320481999956, 49.157126695 ], [ -122.796450219999883, 49.156696184000111 ], [ -122.796545368999944, 49.15551416800011 ], [ -122.799957848999938, 49.155527384000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238572877", "BldgCostT": "158311650", "sL_LossRatio": "0.701716786552131", "sL_AssetLoss": "3994090", "sL_BldgLoss": "2802720", "sL_StrLoss": "1202320", "sL_NStrLoss": "1600400", "sL_ContLoss": "1191370", "geom_point": "0101000020E6100000BE3D95F4ECB25EC0CC56EA9BAC934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800492627999915, 49.151906439000065 ], [ -122.801235438, 49.151901636000098 ], [ -122.801271098999919, 49.152917304000013 ], [ -122.801304139999942, 49.154540478000044 ], [ -122.801324295999933, 49.155531965000137 ], [ -122.799957848999938, 49.155527384000024 ], [ -122.796545368999944, 49.15551416800011 ], [ -122.79510901499998, 49.155509245000189 ], [ -122.794375641999935, 49.155507363 ], [ -122.792195105999951, 49.155501729000072 ], [ -122.790141932999987, 49.155496383000106 ], [ -122.79015029599995, 49.154124308000057 ], [ -122.790130700999924, 49.153039770000113 ], [ -122.790109600999941, 49.151873100000074 ], [ -122.790578226999941, 49.151876752000071 ], [ -122.791112977999944, 49.151880944 ], [ -122.791620338999977, 49.151884917000096 ], [ -122.791746801999977, 49.151885908000068 ], [ -122.79192218699994, 49.15188622400008 ], [ -122.792717591999946, 49.15188761800006 ], [ -122.793386014999925, 49.151888806000095 ], [ -122.79574559000001, 49.151901415000069 ], [ -122.796061218999967, 49.151900723000033 ], [ -122.796767029999941, 49.151899159000038 ], [ -122.798423057999983, 49.151895500000059 ], [ -122.799176513999896, 49.151904031000051 ], [ -122.799791407999962, 49.151910974000067 ], [ -122.799999516999947, 49.15190963700006 ], [ -122.800492627999915, 49.151906439000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93094500", "BldgCostT": "62940000", "sL_LossRatio": "0.716326799105381", "sL_AssetLoss": "1900250", "sL_BldgLoss": "1361200", "sL_StrLoss": "587000", "sL_NStrLoss": "774200", "sL_ContLoss": "539050", "geom_point": "0101000020E61000000119C769C4B25EC03FB9642414944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79510901499998, 49.155509245000189 ], [ -122.796545368999944, 49.15551416800011 ], [ -122.796450219999883, 49.156696184000111 ], [ -122.796320481999956, 49.157126695 ], [ -122.795902716999976, 49.158274797000097 ], [ -122.790181480999962, 49.15827919900007 ], [ -122.790173802999902, 49.157861168000082 ], [ -122.79014978899994, 49.15655359900007 ], [ -122.790141932999987, 49.155496383000106 ], [ -122.792195105999951, 49.155501729000072 ], [ -122.794375641999935, 49.155507363 ], [ -122.79510901499998, 49.155509245000189 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99824334", "BldgCostT": "64403334", "sL_LossRatio": "0.721138179385257", "sL_AssetLoss": "1270450", "sL_BldgLoss": "916170", "sL_StrLoss": "430150", "sL_NStrLoss": "486020", "sL_ContLoss": "354280", "geom_point": "0101000020E61000003EB78E79B6B25EC062DFEBF786944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792399483999958, 49.163051503000041 ], [ -122.791809618999977, 49.162896972000027 ], [ -122.791663729999954, 49.162925061000102 ], [ -122.79156481199999, 49.162888747000061 ], [ -122.791183980999918, 49.162823370000119 ], [ -122.790285207999929, 49.16280299400006 ], [ -122.790171001999937, 49.162800358000013 ], [ -122.790174431999958, 49.162636809000098 ], [ -122.790181593999932, 49.162297599000077 ], [ -122.790192134999984, 49.161799015000049 ], [ -122.790193006999971, 49.161746783000133 ], [ -122.790168516, 49.160847495000098 ], [ -122.790154993999977, 49.160350799000064 ], [ -122.790157749999963, 49.160210457000069 ], [ -122.790167409999981, 49.159715845000065 ], [ -122.790178807999936, 49.15913238800006 ], [ -122.790181480999962, 49.15827919900007 ], [ -122.795902716999976, 49.158274797000097 ], [ -122.795776213999943, 49.159155894000094 ], [ -122.794876409999972, 49.159142605000092 ], [ -122.794867103999962, 49.160371417000079 ], [ -122.79360270799998, 49.160376996000089 ], [ -122.793596312999981, 49.162000497000065 ], [ -122.793696511999897, 49.162376503000068 ], [ -122.793699150999927, 49.162728610000052 ], [ -122.79369920699996, 49.16273428900007 ], [ -122.794198902999966, 49.162805095000103 ], [ -122.793543300999914, 49.163007134000082 ], [ -122.793418981999977, 49.16304042400008 ], [ -122.793208023999938, 49.163097205000021 ], [ -122.79277889799998, 49.163116873 ], [ -122.792399483999958, 49.163051503000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70302334", "BldgCostT": "46068334", "sL_LossRatio": "0.69712058887205", "sL_AssetLoss": "1339510", "sL_BldgLoss": "933800", "sL_StrLoss": "400220", "sL_NStrLoss": "533580", "sL_ContLoss": "405710", "geom_point": "0101000020E6100000F12DDE55F0B25EC06026065896944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.794876409999972, 49.159142605000092 ], [ -122.795776213999943, 49.159155894000094 ], [ -122.796124784999961, 49.159170812000092 ], [ -122.797372124999981, 49.159174503000031 ], [ -122.798632894999983, 49.159182303000087 ], [ -122.79863658899994, 49.16088000600012 ], [ -122.798598408999936, 49.161036596000031 ], [ -122.798475190999937, 49.161132906000013 ], [ -122.798246395999982, 49.161170297000133 ], [ -122.796144999, 49.161165388000072 ], [ -122.79614729099994, 49.161987189000065 ], [ -122.796144119999951, 49.162770151000061 ], [ -122.796143855999944, 49.162811299000047 ], [ -122.796143501999964, 49.162878300000074 ], [ -122.794955558, 49.162860073000019 ], [ -122.794832781999943, 49.162858202000088 ], [ -122.79481849799997, 49.162859402000045 ], [ -122.794257694999956, 49.162906810000045 ], [ -122.793757492999958, 49.163082054000093 ], [ -122.79363589399999, 49.163115363000074 ], [ -122.793492912999966, 49.163065976000098 ], [ -122.793418981999977, 49.16304042400008 ], [ -122.793543300999914, 49.163007134000082 ], [ -122.794198902999966, 49.162805095000103 ], [ -122.79369920699996, 49.16273428900007 ], [ -122.793699150999927, 49.162728610000052 ], [ -122.793696511999897, 49.162376503000068 ], [ -122.793596312999981, 49.162000497000065 ], [ -122.79360270799998, 49.160376996000089 ], [ -122.794867103999962, 49.160371417000079 ], [ -122.794876409999972, 49.159142605000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152511082", "BldgCostT": "98318332", "sL_LossRatio": "0.687629657211031", "sL_AssetLoss": "2631940", "sL_BldgLoss": "1809800", "sL_StrLoss": "639180", "sL_NStrLoss": "1170620", "sL_ContLoss": "822140", "geom_point": "0101000020E61000003D9B4CE45BB25EC0156171D548944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.785185778999917, 49.159865500000087 ], [ -122.784917854999918, 49.159761743000061 ], [ -122.784211549999938, 49.159488187000086 ], [ -122.7837636309999, 49.159314688000059 ], [ -122.783373729999965, 49.159163675000059 ], [ -122.78217087299997, 49.15869773400005 ], [ -122.782208607, 49.158647503000061 ], [ -122.782839304999953, 49.15784844900007 ], [ -122.783113243999978, 49.157501368000162 ], [ -122.784323308999916, 49.156159791000107 ], [ -122.784432013999933, 49.155935961000125 ], [ -122.784423708999938, 49.15542210900005 ], [ -122.785861686999951, 49.155442528000101 ], [ -122.785858051999938, 49.156129939000053 ], [ -122.78594039299999, 49.156287390000017 ], [ -122.786121092999949, 49.156390084000115 ], [ -122.786429599999934, 49.156509624000094 ], [ -122.78677128299995, 49.156642003000087 ], [ -122.787294996999933, 49.156859515000079 ], [ -122.787677178999957, 49.15698349600008 ], [ -122.788343515999912, 49.156810092000107 ], [ -122.788838697999935, 49.156681202000073 ], [ -122.789559389999951, 49.156567506000073 ], [ -122.79014978899994, 49.15655359900007 ], [ -122.790173802999902, 49.157861168000082 ], [ -122.790181480999962, 49.15827919900007 ], [ -122.790178807999936, 49.15913238800006 ], [ -122.790167409999981, 49.159715845000065 ], [ -122.790157749999963, 49.160210457000069 ], [ -122.790154993999977, 49.160350799000064 ], [ -122.790168516, 49.160847495000098 ], [ -122.790193006999971, 49.161746783000133 ], [ -122.790192134999984, 49.161799015000049 ], [ -122.788325433999958, 49.161078132000085 ], [ -122.787141272999918, 49.160620790000095 ], [ -122.785891874999919, 49.160138225000019 ], [ -122.785185778999917, 49.159865500000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149608750", "BldgCostT": "102145000", "sL_LossRatio": "0.795205479452055", "sL_AssetLoss": "1270200", "sL_BldgLoss": "1010070", "sL_StrLoss": "487960", "sL_NStrLoss": "522110", "sL_ContLoss": "260130", "geom_point": "0101000020E6100000F1B058DC22B25EC0B1902518F3944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.780306916999905, 49.164653290000047 ], [ -122.780301810999958, 49.163752697000049 ], [ -122.77886648899999, 49.163748504000097 ], [ -122.778863093999945, 49.162749995000091 ], [ -122.77986070299994, 49.162754549000105 ], [ -122.782026515000013, 49.162764386000056 ], [ -122.782508147999948, 49.162766463000068 ], [ -122.785190017000019, 49.162777890000037 ], [ -122.787433318999888, 49.162795297000059 ], [ -122.787388297999925, 49.163784195000105 ], [ -122.787321816999963, 49.164071499000087 ], [ -122.787197198999962, 49.164287594000029 ], [ -122.787050715999968, 49.164422905000066 ], [ -122.786561147999976, 49.164629970000121 ], [ -122.786505489999968, 49.164653502000121 ], [ -122.786150184999954, 49.164696111000069 ], [ -122.785893471999955, 49.164689289000094 ], [ -122.785879204, 49.164688914000131 ], [ -122.784667037999924, 49.164692833000046 ], [ -122.784518700999982, 49.16469329100007 ], [ -122.780306975999935, 49.16466740000007 ], [ -122.780306916999905, 49.164653290000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133353000", "BldgCostT": "87075000", "sL_LossRatio": "0.699858933857861", "sL_AssetLoss": "2516550", "sL_BldgLoss": "1761230", "sL_StrLoss": "791930", "sL_NStrLoss": "969300", "sL_ContLoss": "755320", "geom_point": "0101000020E6100000B1A79154AEB15EC0F128192929954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.774926552999915, 49.167422642000062 ], [ -122.774810884999965, 49.166474405000073 ], [ -122.773206395999921, 49.166477693000047 ], [ -122.773224123999952, 49.164487871000127 ], [ -122.773234691, 49.163303191000054 ], [ -122.773205901999944, 49.162770710000053 ], [ -122.774250406999968, 49.162765184000136 ], [ -122.776017603999946, 49.16275579500013 ], [ -122.777684091999959, 49.162747214000042 ], [ -122.778863093999945, 49.162749995000091 ], [ -122.77886648899999, 49.163748504000097 ], [ -122.778868417999917, 49.164255807000096 ], [ -122.778869929999971, 49.164614542000052 ], [ -122.778871817999971, 49.165057898000036 ], [ -122.778886903999961, 49.165936799000058 ], [ -122.778895780999932, 49.16645344400014 ], [ -122.77889271199993, 49.166979753000106 ], [ -122.778891672, 49.167159700000077 ], [ -122.778885193999926, 49.168268812000044 ], [ -122.777929515, 49.168272763000083 ], [ -122.777510802, 49.168274490000115 ], [ -122.776232496999938, 49.168278616000059 ], [ -122.774948694999949, 49.168282508000047 ], [ -122.774957718999957, 49.167678097000085 ], [ -122.774926552999915, 49.167422642000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214418470", "BldgCostT": "138285413", "sL_LossRatio": "0.71419805365629", "sL_AssetLoss": "2468937", "sL_BldgLoss": "1763310", "sL_StrLoss": "842230", "sL_NStrLoss": "921080", "sL_ContLoss": "705627", "geom_point": "0101000020E6100000BF4128AD07B15EC084BBDD3F54954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756684023999966, 49.169997125000059 ], [ -122.75667183199999, 49.168294119000024 ], [ -122.75664118899995, 49.164012072000027 ], [ -122.756632801999956, 49.162838509000061 ], [ -122.75792704, 49.162831510000046 ], [ -122.76018388599995, 49.162819303000063 ], [ -122.760890359999919, 49.162819753000079 ], [ -122.763194717999966, 49.162821290000061 ], [ -122.764127432999956, 49.162821875000091 ], [ -122.764209742999967, 49.162821922000084 ], [ -122.764808411999923, 49.162822286000058 ], [ -122.767712061999987, 49.162807726000104 ], [ -122.770615927000023, 49.162788177000074 ], [ -122.771095940999899, 49.16278494100002 ], [ -122.773205901999944, 49.162770710000053 ], [ -122.773234691, 49.163303191000054 ], [ -122.773224123999952, 49.164487871000127 ], [ -122.773206395999921, 49.166477693000047 ], [ -122.774810884999965, 49.166474405000073 ], [ -122.774926552999915, 49.167422642000062 ], [ -122.774957718999957, 49.167678097000085 ], [ -122.774948694999949, 49.168282508000047 ], [ -122.776232496999938, 49.168278616000059 ], [ -122.777510802, 49.168274490000115 ], [ -122.777929515, 49.168272763000083 ], [ -122.778885193999926, 49.168268812000044 ], [ -122.778877403999971, 49.170063393000099 ], [ -122.777894386999989, 49.170058832000066 ], [ -122.777629923999953, 49.170057598000021 ], [ -122.777577730999894, 49.170058087000051 ], [ -122.776466576999937, 49.170068325000045 ], [ -122.775725723999926, 49.170075170000061 ], [ -122.773585639999965, 49.170094848000097 ], [ -122.773211461999921, 49.170098310000036 ], [ -122.772996193999987, 49.170099129000043 ], [ -122.772067469999982, 49.170102742000076 ], [ -122.771419297, 49.170112873000065 ], [ -122.770912014999951, 49.170120784000083 ], [ -122.77062466699999, 49.170125246000033 ], [ -122.770568519999955, 49.170125501000079 ], [ -122.769992220999939, 49.17012753700002 ], [ -122.769127912999963, 49.170130564000054 ], [ -122.768798800999946, 49.170131719000068 ], [ -122.767748329999947, 49.170135350000088 ], [ -122.764026469999962, 49.170088980000109 ], [ -122.764104555999936, 49.168967287 ], [ -122.763569579999938, 49.168966192000049 ], [ -122.763564439999982, 49.170045625000029 ], [ -122.762329767, 49.170043091000132 ], [ -122.762334934999942, 49.168963658000038 ], [ -122.761100289999973, 49.168961111000073 ], [ -122.76109639399999, 49.169770685000032 ], [ -122.760993185999965, 49.169770472000032 ], [ -122.760976510999967, 49.170009794000116 ], [ -122.760683724999978, 49.170000984000097 ], [ -122.760683537999938, 49.170039691000106 ], [ -122.760271981999921, 49.170038837000035 ], [ -122.76027196599992, 49.170042074000051 ], [ -122.756684023999966, 49.169997125000059 ] ], [ [ -122.760959347, 49.166405013000059 ], [ -122.761013024999926, 49.165634593000043 ], [ -122.760585108999976, 49.165621716000039 ], [ -122.760531423999936, 49.166392137000045 ], [ -122.760959347, 49.166405013000059 ] ], [ [ -122.765893589999934, 49.165164456000056 ], [ -122.765910384, 49.16492304700008 ], [ -122.76569867399995, 49.164922617000066 ], [ -122.765682289999944, 49.165158108000071 ], [ -122.765893589999934, 49.165164456000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125402416", "BldgCostT": "76936666", "sL_LossRatio": "0.670018919103736", "sL_AssetLoss": "2193550", "sL_BldgLoss": "1469720", "sL_StrLoss": "643920", "sL_NStrLoss": "825800", "sL_ContLoss": "723830", "geom_point": "0101000020E61000000B454F0450B15EC0C4CB05F463944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767802471999943, 49.157366149000097 ], [ -122.768713101999978, 49.157380866000018 ], [ -122.769039340999896, 49.157381659000052 ], [ -122.769987844999889, 49.157384002000128 ], [ -122.770477969999945, 49.157381462000053 ], [ -122.773292983999966, 49.15736689300013 ], [ -122.773254197999947, 49.159072401000074 ], [ -122.773222612999973, 49.160455490000111 ], [ -122.773221242999966, 49.160501898000057 ], [ -122.773199975999901, 49.161235998000087 ], [ -122.772085210999975, 49.161236788000025 ], [ -122.770369491999986, 49.16122501500012 ], [ -122.769050911999969, 49.161199899000067 ], [ -122.767728483, 49.161250257000042 ], [ -122.767743690999936, 49.160538902000084 ], [ -122.767752541999968, 49.159583087000037 ], [ -122.767802471999943, 49.157366149000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204049250", "BldgCostT": "123425000", "sL_LossRatio": "0.641069421866306", "sL_AssetLoss": "3666280", "sL_BldgLoss": "2350340", "sL_StrLoss": "1036430", "sL_NStrLoss": "1313910", "sL_ContLoss": "1315940", "geom_point": "0101000020E6100000165E8253DFB05EC0EAA539E4AC934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767802471999943, 49.157366149000097 ], [ -122.767790530999903, 49.15546722400012 ], [ -122.765618781999947, 49.155450595000062 ], [ -122.765012968999969, 49.155453123000044 ], [ -122.764590355999971, 49.155454853000059 ], [ -122.764258726999955, 49.155456470000054 ], [ -122.761652861999977, 49.155468978000115 ], [ -122.760994697999962, 49.155471965000068 ], [ -122.759451914999943, 49.155479589000031 ], [ -122.759392918999964, 49.155480510000061 ], [ -122.757939686999975, 49.155481814000041 ], [ -122.756657760999985, 49.155483727000075 ], [ -122.756629366999931, 49.154907971000057 ], [ -122.75661534999989, 49.15455538600002 ], [ -122.756605974999957, 49.154319759000067 ], [ -122.756591859999901, 49.153794902000122 ], [ -122.756586693999935, 49.153260406000108 ], [ -122.756600787999943, 49.152226010000106 ], [ -122.756601475999929, 49.152174381000094 ], [ -122.756603014999897, 49.152062407000088 ], [ -122.756600319999976, 49.151939718000058 ], [ -122.756579986999938, 49.151013602000106 ], [ -122.756575794999932, 49.150821703000119 ], [ -122.756574360999934, 49.150761655000053 ], [ -122.756562442999964, 49.150266242000022 ], [ -122.756526882999964, 49.149852468000056 ], [ -122.75622579399996, 49.149295537000029 ], [ -122.756139473999951, 49.149059554000061 ], [ -122.756118117, 49.148834534000095 ], [ -122.756295809999983, 49.148933401000114 ], [ -122.756588774999926, 49.149022934000058 ], [ -122.760991758999964, 49.150368024000052 ], [ -122.76162218199994, 49.150634888000091 ], [ -122.762045606999976, 49.150814344000025 ], [ -122.762556316999962, 49.151019821000034 ], [ -122.763552905999958, 49.151412948 ], [ -122.763996525999971, 49.151583664000036 ], [ -122.764795063999941, 49.151890904000076 ], [ -122.765618354000011, 49.15220768000011 ], [ -122.766330133999986, 49.152481533000113 ], [ -122.767066644999929, 49.152764900000079 ], [ -122.767762335000015, 49.153032550000027 ], [ -122.768627757999951, 49.15337559600006 ], [ -122.769847677999962, 49.153859139000048 ], [ -122.769993353999951, 49.153916881000079 ], [ -122.770499949999987, 49.15411766500003 ], [ -122.771975308999984, 49.154702435000104 ], [ -122.773441682999959, 49.155283568000044 ], [ -122.77331446599996, 49.155477090000083 ], [ -122.773303473999974, 49.15644504400008 ], [ -122.773293554999938, 49.157317624000093 ], [ -122.773292983999966, 49.15736689300013 ], [ -122.770477969999945, 49.157381462000053 ], [ -122.769987844999889, 49.157384002000128 ], [ -122.769039340999896, 49.157381659000052 ], [ -122.768713101999978, 49.157380866000018 ], [ -122.767802471999943, 49.157366149000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "723703583", "BldgCostT": "496148333", "sL_LossRatio": "0.806649676120685", "sL_AssetLoss": "7019590", "sL_BldgLoss": "5662350", "sL_StrLoss": "2629300", "sL_NStrLoss": "3033050", "sL_ContLoss": "1357240", "geom_point": "0101000020E6100000A2BADB508CB15EC0161A4EBAA9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.774692527999932, 49.155768881000022 ], [ -122.773441682999959, 49.155283568000044 ], [ -122.771975308999984, 49.154702435000104 ], [ -122.770499949999987, 49.15411766500003 ], [ -122.769993353999951, 49.153916881000079 ], [ -122.769847677999962, 49.153859139000048 ], [ -122.768627757999951, 49.15337559600006 ], [ -122.767762335000015, 49.153032550000027 ], [ -122.767762613999977, 49.152929838 ], [ -122.767763912999925, 49.152555002000021 ], [ -122.76776642599998, 49.151829722000116 ], [ -122.769239566999943, 49.15182569100007 ], [ -122.769343879999937, 49.151825402000043 ], [ -122.769788091999928, 49.151824211000118 ], [ -122.769951877999958, 49.151823756000056 ], [ -122.77007605099999, 49.151823420000042 ], [ -122.770247935999947, 49.15182295000011 ], [ -122.771529770999948, 49.151819453000066 ], [ -122.77194807399999, 49.151818274000092 ], [ -122.771948189999947, 49.152212051000056 ], [ -122.771944171999962, 49.153000380000059 ], [ -122.77194130399999, 49.153653572000039 ], [ -122.771941873999978, 49.153725674000036 ], [ -122.771942994999961, 49.15386627700012 ], [ -122.77229627899996, 49.153970593000061 ], [ -122.772954421999941, 49.153968691000031 ], [ -122.773638595999955, 49.15396669299999 ], [ -122.774341949999894, 49.153965225000057 ], [ -122.77558537499999, 49.153662747000055 ], [ -122.775616762, 49.153669141000101 ], [ -122.776004476, 49.153672646000096 ], [ -122.776009781999974, 49.151816600000096 ], [ -122.776721181999974, 49.151817169000083 ], [ -122.77682812099998, 49.151816777000043 ], [ -122.777757313999984, 49.151819383000053 ], [ -122.778154836999988, 49.151819561000096 ], [ -122.778305541999941, 49.151820457000071 ], [ -122.778890781999905, 49.151821757000079 ], [ -122.778896602999964, 49.153617768000089 ], [ -122.77886459299998, 49.155425270000073 ], [ -122.778862856999979, 49.155490092000086 ], [ -122.778598443999911, 49.1554875960001 ], [ -122.778495224999944, 49.15545387600018 ], [ -122.77721588699994, 49.155456299000072 ], [ -122.775976605999972, 49.155458639000081 ], [ -122.775401310999939, 49.155452231000055 ], [ -122.775080096999957, 49.155517401000097 ], [ -122.774780392, 49.15568771300012 ], [ -122.774692527999932, 49.155768881000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36941834", "BldgCostT": "21793334", "sL_LossRatio": "0.637673416630763", "sL_AssetLoss": "580250", "sL_BldgLoss": "370010", "sL_StrLoss": "175940", "sL_NStrLoss": "194070", "sL_ContLoss": "210240", "geom_point": "0101000020E61000007E5568FF87B15EC0B01964BB90934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77194130399999, 49.153653572000039 ], [ -122.771944171999962, 49.153000380000059 ], [ -122.771948189999947, 49.152212051000056 ], [ -122.77194807399999, 49.151818274000092 ], [ -122.773143518999916, 49.151816281000038 ], [ -122.774673272999905, 49.151817091000069 ], [ -122.775096185999971, 49.151816944000053 ], [ -122.776009781999974, 49.151816600000096 ], [ -122.776004476, 49.153672646000096 ], [ -122.775616762, 49.153669141000101 ], [ -122.77558537499999, 49.153662747000055 ], [ -122.774341949999894, 49.153965225000057 ], [ -122.773638595999955, 49.15396669299999 ], [ -122.772954421999941, 49.153968691000031 ], [ -122.77229627899996, 49.153970593000061 ], [ -122.771942994999961, 49.15386627700012 ], [ -122.771941873999978, 49.153725674000036 ], [ -122.77194130399999, 49.153653572000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148458500", "BldgCostT": "97505000", "sL_LossRatio": "0.679126096823787", "sL_AssetLoss": "2868510", "sL_BldgLoss": "1948080", "sL_StrLoss": "855910", "sL_NStrLoss": "1092170", "sL_ContLoss": "920430", "geom_point": "0101000020E6100000FD497BA47DB15EC0EA566C1F34934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767688165999957, 49.148223033000143 ], [ -122.769814752999963, 49.148232805000106 ], [ -122.771220374999956, 49.148232555000043 ], [ -122.772005113999953, 49.14823185900007 ], [ -122.772022922999895, 49.148232404000076 ], [ -122.773149449999949, 49.14823465700011 ], [ -122.775115708999962, 49.148243986000125 ], [ -122.775924400999912, 49.148243012000101 ], [ -122.778843020999929, 49.14825656400005 ], [ -122.778857962999936, 49.148727550000103 ], [ -122.778876813999943, 49.149320944000053 ], [ -122.778884824999949, 49.149572489000029 ], [ -122.778890781999905, 49.151821757000079 ], [ -122.778305541999941, 49.151820457000071 ], [ -122.778154836999988, 49.151819561000096 ], [ -122.777757313999984, 49.151819383000053 ], [ -122.77682812099998, 49.151816777000043 ], [ -122.776721181999974, 49.151817169000083 ], [ -122.776009781999974, 49.151816600000096 ], [ -122.775096185999971, 49.151816944000053 ], [ -122.774673272999905, 49.151817091000069 ], [ -122.773143518999916, 49.151816281000038 ], [ -122.77194807399999, 49.151818274000092 ], [ -122.771529770999948, 49.151819453000066 ], [ -122.770247935999947, 49.15182295000011 ], [ -122.77007605099999, 49.151823420000042 ], [ -122.769951877999958, 49.151823756000056 ], [ -122.769788091999928, 49.151824211000118 ], [ -122.769343879999937, 49.151825402000043 ], [ -122.769239566999943, 49.15182569100007 ], [ -122.76776642599998, 49.151829722000116 ], [ -122.767748189999978, 49.150909162000026 ], [ -122.767688165999957, 49.148223033000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122697333", "BldgCostT": "79158333", "sL_LossRatio": "0.672618022230425", "sL_AssetLoss": "2438100", "sL_BldgLoss": "1639910", "sL_StrLoss": "708660", "sL_NStrLoss": "931250", "sL_ContLoss": "798190", "geom_point": "0101000020E6100000A793E0CB0CB25EC01423324938934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778890781999905, 49.151821757000079 ], [ -122.778884824999949, 49.149572489000029 ], [ -122.778876813999943, 49.149320944000053 ], [ -122.778857962999936, 49.148727550000103 ], [ -122.778843020999929, 49.14825656400005 ], [ -122.781725356999928, 49.148239168000039 ], [ -122.78444681399999, 49.148248433000106 ], [ -122.784446791999969, 49.14888322200003 ], [ -122.784446807999984, 49.149126065000132 ], [ -122.784446814999981, 49.14918109800012 ], [ -122.784446600999928, 49.15096699500009 ], [ -122.78565249799999, 49.150972411000048 ], [ -122.786303471999972, 49.150973788000023 ], [ -122.786436272999978, 49.150955756000059 ], [ -122.78719619499999, 49.15184208700002 ], [ -122.7844461, 49.151807709000053 ], [ -122.783721694999954, 49.151807663000049 ], [ -122.782814898999916, 49.151807613000059 ], [ -122.781788035999924, 49.151807882000071 ], [ -122.781651071999988, 49.151807927000057 ], [ -122.780690920999945, 49.151812598000049 ], [ -122.780485499999969, 49.151813601000086 ], [ -122.778890781999905, 49.151821757000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167919001", "BldgCostT": "111840001", "sL_LossRatio": "0.719569487999936", "sL_AssetLoss": "2509570", "sL_BldgLoss": "1805810", "sL_StrLoss": "783650", "sL_NStrLoss": "1022160", "sL_ContLoss": "703760", "geom_point": "0101000020E6100000F57BC5C765B25EC07EE672A42F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78719619499999, 49.15184208700002 ], [ -122.786436272999978, 49.150955756000059 ], [ -122.786303471999972, 49.150973788000023 ], [ -122.78565249799999, 49.150972411000048 ], [ -122.784446600999928, 49.15096699500009 ], [ -122.784446814999981, 49.14918109800012 ], [ -122.784446807999984, 49.149126065000132 ], [ -122.784446791999969, 49.14888322200003 ], [ -122.78444681399999, 49.148248433000106 ], [ -122.788605165, 49.148239652000051 ], [ -122.79008379299998, 49.148236499000042 ], [ -122.790097107999927, 49.150068810000093 ], [ -122.790109600999941, 49.151873100000074 ], [ -122.787479380999969, 49.151845109000128 ], [ -122.78719619499999, 49.15184208700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97352639", "BldgCostT": "53081940", "sL_LossRatio": "0.577948497637158", "sL_AssetLoss": "2374260", "sL_BldgLoss": "1372200", "sL_StrLoss": "469410", "sL_NStrLoss": "902790", "sL_ContLoss": "1002060", "geom_point": "0101000020E610000077814F9CF1B15EC081A4684809944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77721588699994, 49.155456299000072 ], [ -122.778495224999944, 49.15545387600018 ], [ -122.778598443999911, 49.1554875960001 ], [ -122.778862856999979, 49.155490092000086 ], [ -122.77886459299998, 49.155425270000073 ], [ -122.781636497999955, 49.155425290000025 ], [ -122.783080711999929, 49.155415301000119 ], [ -122.783972239999954, 49.155408629000107 ], [ -122.784092926999932, 49.155427540000119 ], [ -122.784423708999938, 49.15542210900005 ], [ -122.784432013999933, 49.155935961000125 ], [ -122.784323308999916, 49.156159791000107 ], [ -122.783113243999978, 49.157501368000162 ], [ -122.782839304999953, 49.15784844900007 ], [ -122.782208607, 49.158647503000061 ], [ -122.78217087299997, 49.15869773400005 ], [ -122.779889414999928, 49.157789711000135 ], [ -122.77881307399997, 49.157303995000099 ], [ -122.778167665999931, 49.157114105000076 ], [ -122.776740034999975, 49.156561494000137 ], [ -122.776167038999986, 49.156339680000066 ], [ -122.774692527999932, 49.155768881000022 ], [ -122.774780392, 49.15568771300012 ], [ -122.775080096999957, 49.155517401000097 ], [ -122.775401310999939, 49.155452231000055 ], [ -122.775976605999972, 49.155458639000081 ], [ -122.77721588699994, 49.155456299000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208998667", "BldgCostT": "138246667", "sL_LossRatio": "0.707267843753856", "sL_AssetLoss": "3160910", "sL_BldgLoss": "2235610", "sL_StrLoss": "1033410", "sL_NStrLoss": "1202200", "sL_ContLoss": "925300", "geom_point": "0101000020E61000000AF305CAB9B25EC04D6968C904934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79008379299998, 49.148236499000042 ], [ -122.790061749, 49.147075934000078 ], [ -122.790061022, 49.147037400000031 ], [ -122.790043880999946, 49.146077789000081 ], [ -122.790033396999945, 49.145491190000044 ], [ -122.792835176999944, 49.145545897000133 ], [ -122.793676546999933, 49.145539852000077 ], [ -122.794978397999941, 49.14553049200002 ], [ -122.794988293999907, 49.14608684700007 ], [ -122.794997508000037, 49.146606108000043 ], [ -122.794975101999952, 49.147467707000033 ], [ -122.793435307999943, 49.14746066400005 ], [ -122.792830792999922, 49.147457899000081 ], [ -122.792824415999974, 49.148246211000078 ], [ -122.795187963000018, 49.148269131000113 ], [ -122.795571694, 49.148272845000129 ], [ -122.79641306399995, 49.148280956000072 ], [ -122.796436491999927, 49.149134993000082 ], [ -122.79644330399999, 49.150130899000082 ], [ -122.795226518999982, 49.150124402000117 ], [ -122.794486781, 49.150117695000048 ], [ -122.79425552099994, 49.150153101000079 ], [ -122.794042146999914, 49.150212631000045 ], [ -122.793989885999963, 49.150227204000039 ], [ -122.793705819999957, 49.150371894000045 ], [ -122.793485218999948, 49.150589685000128 ], [ -122.793397613999943, 49.150826813000052 ], [ -122.793386014999925, 49.151888806000095 ], [ -122.792717591999946, 49.15188761800006 ], [ -122.79192218699994, 49.15188622400008 ], [ -122.791746801999977, 49.151885908000068 ], [ -122.791620338999977, 49.151884917000096 ], [ -122.791112977999944, 49.151880944 ], [ -122.790578226999941, 49.151876752000071 ], [ -122.790109600999941, 49.151873100000074 ], [ -122.790097107999927, 49.150068810000093 ], [ -122.79008379299998, 49.148236499000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138637501", "BldgCostT": "91545001", "sL_LossRatio": "0.683248835650575", "sL_AssetLoss": "2909350", "sL_BldgLoss": "1987810", "sL_StrLoss": "853380", "sL_NStrLoss": "1134430", "sL_ContLoss": "921540", "geom_point": "0101000020E6100000F380DCF20FB35EC075B9149931934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79641306399995, 49.148280956000072 ], [ -122.796408098, 49.148015005000055 ], [ -122.796420754999957, 49.14787119600004 ], [ -122.796297688, 49.147608022000099 ], [ -122.796284495999984, 49.147003925000035 ], [ -122.796217433999942, 49.146882964000035 ], [ -122.796253752999945, 49.14665427900011 ], [ -122.79618663, 49.146632749000048 ], [ -122.796123656999939, 49.146612571000084 ], [ -122.796067449999953, 49.146533409000071 ], [ -122.796096755999969, 49.146445963000112 ], [ -122.796182736999953, 49.146411583000045 ], [ -122.796223131999938, 49.146413915000096 ], [ -122.796345212999938, 49.146420923000051 ], [ -122.796779788999984, 49.146180669000081 ], [ -122.797388151999954, 49.146661008000109 ], [ -122.797754212, 49.147057578000044 ], [ -122.797891889999931, 49.14720763800004 ], [ -122.798299549999953, 49.147656805000111 ], [ -122.798313125999954, 49.148296051000067 ], [ -122.799715796999976, 49.148289085000073 ], [ -122.801168105999935, 49.148077773000097 ], [ -122.801169202000011, 49.148139356000051 ], [ -122.801170618999905, 49.148220309000131 ], [ -122.801189130999944, 49.149272937000077 ], [ -122.801190757999962, 49.149363006000023 ], [ -122.80120386399993, 49.150108478000043 ], [ -122.801217765999951, 49.150880895000064 ], [ -122.801227475999923, 49.151419326000095 ], [ -122.801235438, 49.151901636000098 ], [ -122.800492627999915, 49.151906439000065 ], [ -122.799999516999947, 49.15190963700006 ], [ -122.799791407999962, 49.151910974000067 ], [ -122.799176513999896, 49.151904031000051 ], [ -122.798423057999983, 49.151895500000059 ], [ -122.796767029999941, 49.151899159000038 ], [ -122.796061218999967, 49.151900723000033 ], [ -122.79574559000001, 49.151901415000069 ], [ -122.793386014999925, 49.151888806000095 ], [ -122.793397613999943, 49.150826813000052 ], [ -122.793485218999948, 49.150589685000128 ], [ -122.793705819999957, 49.150371894000045 ], [ -122.793989885999963, 49.150227204000039 ], [ -122.794042146999914, 49.150212631000045 ], [ -122.79425552099994, 49.150153101000079 ], [ -122.794486781, 49.150117695000048 ], [ -122.795226518999982, 49.150124402000117 ], [ -122.79644330399999, 49.150130899000082 ], [ -122.796436491999927, 49.149134993000082 ], [ -122.79641306399995, 49.148280956000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93471084", "BldgCostT": "57863334", "sL_LossRatio": "0.66199343665938", "sL_AssetLoss": "1825290", "sL_BldgLoss": "1208330", "sL_StrLoss": "523130", "sL_NStrLoss": "685200", "sL_ContLoss": "616960", "geom_point": "0101000020E6100000D488CBB75FB35EC05FEC49A28F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801235438, 49.151901636000098 ], [ -122.801227475999923, 49.151419326000095 ], [ -122.801217765999951, 49.150880895000064 ], [ -122.80120386399993, 49.150108478000043 ], [ -122.80131359399995, 49.150107235000107 ], [ -122.803168397999954, 49.15010376500009 ], [ -122.803497306999944, 49.150144177000108 ], [ -122.804162485999939, 49.150298195000069 ], [ -122.804154442999959, 49.150897259000011 ], [ -122.804154179999983, 49.150917007000018 ], [ -122.804153677, 49.151723402000101 ], [ -122.804219188, 49.153403097000073 ], [ -122.804205188999987, 49.154164108000074 ], [ -122.804199089999884, 49.154692892000114 ], [ -122.804187536999905, 49.155287396000091 ], [ -122.804182866999966, 49.155526762000079 ], [ -122.801520314999948, 49.155532380000039 ], [ -122.801324295999933, 49.155531965000137 ], [ -122.801304139999942, 49.154540478000044 ], [ -122.801271098999919, 49.152917304000013 ], [ -122.801235438, 49.151901636000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274700750", "BldgCostT": "188105000", "sL_LossRatio": "0.783005849524344", "sL_AssetLoss": "3275480", "sL_BldgLoss": "2564720", "sL_StrLoss": "1174230", "sL_NStrLoss": "1390490", "sL_ContLoss": "710760", "geom_point": "0101000020E6100000A1CC2F1896B35EC08583CEB579934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804162485999939, 49.150298195000069 ], [ -122.804210014999953, 49.15016539700008 ], [ -122.804493914999966, 49.149863787000093 ], [ -122.804904978999943, 49.149666101000015 ], [ -122.805141987999946, 49.14960729900006 ], [ -122.805392400999978, 49.14958106800001 ], [ -122.806147105999926, 49.149502009000074 ], [ -122.806774913999959, 49.149423517000116 ], [ -122.807405217999957, 49.1493447080001 ], [ -122.807841482999933, 49.149358593000073 ], [ -122.808243691, 49.149450707000057 ], [ -122.808623792999953, 49.149644007000056 ], [ -122.808854506, 49.1499363860001 ], [ -122.808935699999935, 49.150211891 ], [ -122.808928796999908, 49.150591909000063 ], [ -122.808968121999953, 49.150984009000119 ], [ -122.80900610799992, 49.151362792000036 ], [ -122.808422103999973, 49.151484280000069 ], [ -122.806900513999949, 49.151485099000084 ], [ -122.806907273999983, 49.151999486000101 ], [ -122.80691217, 49.152372993000071 ], [ -122.806922211999961, 49.153240744000087 ], [ -122.806941317999957, 49.154896017000034 ], [ -122.806948689999928, 49.155535005000083 ], [ -122.806215299999963, 49.155534788000104 ], [ -122.806019529999958, 49.155534034000027 ], [ -122.805429862999944, 49.155531709000059 ], [ -122.805320097999981, 49.155531280000062 ], [ -122.804182866999966, 49.155526762000079 ], [ -122.804187536999905, 49.155287396000091 ], [ -122.804199089999884, 49.154692892000114 ], [ -122.804205188999987, 49.154164108000074 ], [ -122.804219188, 49.153403097000073 ], [ -122.804153677, 49.151723402000101 ], [ -122.804154179999983, 49.150917007000018 ], [ -122.804154442999959, 49.150897259000011 ], [ -122.804162485999939, 49.150298195000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179809833", "BldgCostT": "113973333", "sL_LossRatio": "0.69771870079461", "sL_AssetLoss": "2730900", "sL_BldgLoss": "1905400", "sL_StrLoss": "867600", "sL_NStrLoss": "1037800", "sL_ContLoss": "825500", "geom_point": "0101000020E6100000AC550D25C7B35EC0DBA4EC3E91934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809611979999914, 49.149384905000012 ], [ -122.810329098999901, 49.149380991000072 ], [ -122.810597895999976, 49.149439413000081 ], [ -122.810807998999934, 49.149573595000092 ], [ -122.810942600999937, 49.149728882000062 ], [ -122.811007158999928, 49.150043721000053 ], [ -122.811031984999943, 49.150165007000041 ], [ -122.811051448999976, 49.15050380800006 ], [ -122.81108189899993, 49.151035088000135 ], [ -122.811156893999936, 49.151401298000067 ], [ -122.81112508399994, 49.151605801000116 ], [ -122.810923800999902, 49.151781890000038 ], [ -122.810639772999977, 49.151886097000023 ], [ -122.809886401999933, 49.151878206000028 ], [ -122.80955088099995, 49.151969681000011 ], [ -122.809442205999943, 49.151999297000053 ], [ -122.809519200999887, 49.152114698000055 ], [ -122.809974683999911, 49.152797495000065 ], [ -122.810179292999962, 49.153104203000062 ], [ -122.810839865999981, 49.154065400000057 ], [ -122.81094250299999, 49.154308092000072 ], [ -122.810965397999979, 49.154533983000121 ], [ -122.810962271999955, 49.154605760000067 ], [ -122.810942296999926, 49.155063955000095 ], [ -122.810922488999921, 49.155519389000112 ], [ -122.806948689999928, 49.155535005000083 ], [ -122.806941317999957, 49.154896017000034 ], [ -122.806922211999961, 49.153240744000087 ], [ -122.80691217, 49.152372993000071 ], [ -122.806907273999983, 49.151999486000101 ], [ -122.806900513999949, 49.151485099000084 ], [ -122.808422103999973, 49.151484280000069 ], [ -122.80900610799992, 49.151362792000036 ], [ -122.808968121999953, 49.150984009000119 ], [ -122.808928796999908, 49.150591909000063 ], [ -122.808935699999935, 49.150211891 ], [ -122.808854506, 49.1499363860001 ], [ -122.808623792999953, 49.149644007000056 ], [ -122.80925289399994, 49.149423812000052 ], [ -122.809611979999914, 49.149384905000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167197228", "BldgCostT": "109514857", "sL_LossRatio": "0.727678109953095", "sL_AssetLoss": "1750983", "sL_BldgLoss": "1274152", "sL_StrLoss": "635260", "sL_NStrLoss": "638892", "sL_ContLoss": "476831", "geom_point": "0101000020E6100000C18544F3E3B45EC08E9325E782924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82343381299998, 49.148239498000059 ], [ -122.823411898999979, 49.14611228600004 ], [ -122.823413743999978, 49.145944859000053 ], [ -122.823416639999905, 49.145684032000084 ], [ -122.823417946999967, 49.145567047000029 ], [ -122.823423313999925, 49.145082798000011 ], [ -122.823415505999947, 49.144393209000015 ], [ -122.823410956999936, 49.144073636000073 ], [ -122.823404459999949, 49.143614912000075 ], [ -122.8234024059999, 49.143471117000104 ], [ -122.823398996999941, 49.14323039700006 ], [ -122.823400435999986, 49.1427875030001 ], [ -122.823401874999931, 49.14234560000007 ], [ -122.823400552999942, 49.141607613000104 ], [ -122.82340046299997, 49.141553640000033 ], [ -122.823400396999887, 49.141504864000069 ], [ -122.823397696999947, 49.14100199100011 ], [ -122.823606431, 49.140988967000126 ], [ -122.826854253999926, 49.14078642 ], [ -122.826910951999977, 49.140855173000041 ], [ -122.827012983, 49.140978916000037 ], [ -122.827787877999981, 49.141533391000102 ], [ -122.828902003999971, 49.140930997000169 ], [ -122.829601062999942, 49.141877232000077 ], [ -122.829601587999932, 49.142770811000055 ], [ -122.828974914999918, 49.142775783000054 ], [ -122.828994096999935, 49.143339504000025 ], [ -122.82906188599999, 49.143449691000114 ], [ -122.829373808999918, 49.143598509000071 ], [ -122.829619589999979, 49.143652593000091 ], [ -122.829624308999925, 49.14458808300008 ], [ -122.8296498099999, 49.145541199000029 ], [ -122.829677197999928, 49.146346702000066 ], [ -122.829674997999945, 49.147282802000028 ], [ -122.829476123999939, 49.147283970000068 ], [ -122.829193045999915, 49.147291224000078 ], [ -122.82854322899999, 49.147357051000057 ], [ -122.829493497999977, 49.148220546000033 ], [ -122.825136407999977, 49.148235861000039 ], [ -122.825134997999939, 49.148235595000081 ], [ -122.824870402999977, 49.148236794000127 ], [ -122.82343381299998, 49.148239498000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78399917", "BldgCostT": "52861667", "sL_LossRatio": "0.717717964001093", "sL_AssetLoss": "1548547", "sL_BldgLoss": "1111420", "sL_StrLoss": "493160", "sL_NStrLoss": "618260", "sL_ContLoss": "437127", "geom_point": "0101000020E61000007C49B5B231B55EC02F283E04F6914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833310212999919, 49.142748500000017 ], [ -122.83330158299999, 49.140901105000054 ], [ -122.831909105999912, 49.14092499700012 ], [ -122.828902003999971, 49.140930997000169 ], [ -122.827787877999981, 49.141533391000102 ], [ -122.827012983, 49.140978916000037 ], [ -122.826910951999977, 49.140855173000041 ], [ -122.826854253999926, 49.14078642 ], [ -122.826837097999913, 49.140765591000061 ], [ -122.826774998999923, 49.14057089600005 ], [ -122.826799204999986, 49.140416701000021 ], [ -122.826889192999957, 49.14020299200007 ], [ -122.82786530099996, 49.139131586000104 ], [ -122.828935095999967, 49.139118112000048 ], [ -122.83113368699999, 49.139090091000043 ], [ -122.834495599, 49.139063814000025 ], [ -122.834514139999925, 49.140348017000115 ], [ -122.834522195999966, 49.140907303000105 ], [ -122.834534602999952, 49.142738602000065 ], [ -122.833310212999919, 49.142748500000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180154955", "BldgCostT": "118299713", "sL_LossRatio": "0.698402481745663", "sL_AssetLoss": "2843160", "sL_BldgLoss": "1985670", "sL_StrLoss": "948660", "sL_NStrLoss": "1037010", "sL_ContLoss": "857490", "geom_point": "0101000020E6100000CB54251DE7B45EC075276DE499914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823354928999919, 49.136463819000063 ], [ -122.823345107999927, 49.13464878900006 ], [ -122.82500538699999, 49.13462661800002 ], [ -122.82597147, 49.134613699000141 ], [ -122.826127172999932, 49.134640798000106 ], [ -122.826287591999971, 49.134659018000086 ], [ -122.827032499999973, 49.134666617000057 ], [ -122.827248413999953, 49.134736002000146 ], [ -122.827404913999928, 49.134852395000102 ], [ -122.827600675999975, 49.135074390000106 ], [ -122.827772915999915, 49.135161501000056 ], [ -122.82786543099999, 49.135189050000115 ], [ -122.827967685999937, 49.135219499000122 ], [ -122.828244489, 49.13523941000004 ], [ -122.828360874999973, 49.135225283000125 ], [ -122.828495876999966, 49.135208908000038 ], [ -122.82879430399997, 49.135052806000033 ], [ -122.82900188, 49.134821987000059 ], [ -122.829237599999942, 49.134680185000043 ], [ -122.829428905999976, 49.134648006000141 ], [ -122.830261615, 49.134593271000057 ], [ -122.830275692999976, 49.135292010000093 ], [ -122.830273499999961, 49.136269603000095 ], [ -122.830279310999956, 49.137290692000072 ], [ -122.830266903, 49.137472408000065 ], [ -122.830322388999917, 49.137683010000046 ], [ -122.830506209999967, 49.137882200000078 ], [ -122.830875214999963, 49.138096707000045 ], [ -122.83112579499999, 49.138301388000123 ], [ -122.83113368699999, 49.139090091000043 ], [ -122.828935095999967, 49.139118112000048 ], [ -122.82786530099996, 49.139131586000104 ], [ -122.826889192999957, 49.14020299200007 ], [ -122.826799204999986, 49.140416701000021 ], [ -122.826774998999923, 49.14057089600005 ], [ -122.826837097999913, 49.140765591000061 ], [ -122.826854253999926, 49.14078642 ], [ -122.823606431, 49.140988967000126 ], [ -122.823397696999947, 49.14100199100011 ], [ -122.823389662999972, 49.140056513000104 ], [ -122.823363545999982, 49.138231093000108 ], [ -122.823359709999977, 49.137345182000075 ], [ -122.823354928999919, 49.136463819000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39384416", "BldgCostT": "27161666", "sL_LossRatio": "0.73647732409221", "sL_AssetLoss": "796440", "sL_BldgLoss": "586560", "sL_StrLoss": "251160", "sL_NStrLoss": "335400", "sL_ContLoss": "209880", "geom_point": "0101000020E6100000F24CB3693AB55EC0F44122AF7F914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.830275692999976, 49.135292010000093 ], [ -122.832465482999922, 49.135288903000109 ], [ -122.832751512999934, 49.135315400000088 ], [ -122.832952285999937, 49.135384393000059 ], [ -122.833067401000022, 49.135504892000064 ], [ -122.833155494999986, 49.137270000000107 ], [ -122.833126218999908, 49.137640399000091 ], [ -122.83294238099991, 49.137884596000092 ], [ -122.832624413999966, 49.138067100000065 ], [ -122.832250403, 49.13818678800007 ], [ -122.831821311999988, 49.13824891000008 ], [ -122.831405089999947, 49.138263692000073 ], [ -122.83112579499999, 49.138301388000123 ], [ -122.830875214999963, 49.138096707000045 ], [ -122.830506209999967, 49.137882200000078 ], [ -122.830322388999917, 49.137683010000046 ], [ -122.830266903, 49.137472408000065 ], [ -122.830279310999956, 49.137290692000072 ], [ -122.830273499999961, 49.136269603000095 ], [ -122.830275692999976, 49.135292010000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121561501", "BldgCostT": "79680001", "sL_LossRatio": "0.71180806315279", "sL_AssetLoss": "1901167", "sL_BldgLoss": "1353266", "sL_StrLoss": "632172", "sL_NStrLoss": "721094", "sL_ContLoss": "547901", "geom_point": "0101000020E6100000E0CC3B902DB55EC0FC71344756914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832751512999934, 49.135315400000088 ], [ -122.832465482999922, 49.135288903000109 ], [ -122.830275692999976, 49.135292010000093 ], [ -122.830261615, 49.134593271000057 ], [ -122.829428905999976, 49.134648006000141 ], [ -122.829237599999942, 49.134680185000043 ], [ -122.82900188, 49.134821987000059 ], [ -122.82879430399997, 49.135052806000033 ], [ -122.828495876999966, 49.135208908000038 ], [ -122.828360874999973, 49.135225283000125 ], [ -122.828244489, 49.13523941000004 ], [ -122.827967685999937, 49.135219499000122 ], [ -122.82786543099999, 49.135189050000115 ], [ -122.827772915999915, 49.135161501000056 ], [ -122.827600675999975, 49.135074390000106 ], [ -122.827404913999928, 49.134852395000102 ], [ -122.827248413999953, 49.134736002000146 ], [ -122.827032499999973, 49.134666617000057 ], [ -122.826287591999971, 49.134659018000086 ], [ -122.826127172999932, 49.134640798000106 ], [ -122.82597147, 49.134613699000141 ], [ -122.82500538699999, 49.13462661800002 ], [ -122.823345107999927, 49.13464878900006 ], [ -122.823343803999975, 49.134520383000094 ], [ -122.8233363, 49.133774474000042 ], [ -122.82603781899995, 49.13374543200004 ], [ -122.828930786999976, 49.133714270000091 ], [ -122.830250522, 49.133690095000084 ], [ -122.834461007999963, 49.133650960000054 ], [ -122.834495434999909, 49.137273369000127 ], [ -122.834495599, 49.139063814000025 ], [ -122.83113368699999, 49.139090091000043 ], [ -122.83112579499999, 49.138301388000123 ], [ -122.831405089999947, 49.138263692000073 ], [ -122.831821311999988, 49.13824891000008 ], [ -122.832250403, 49.13818678800007 ], [ -122.832624413999966, 49.138067100000065 ], [ -122.83294238099991, 49.137884596000092 ], [ -122.833126218999908, 49.137640399000091 ], [ -122.833155494999986, 49.137270000000107 ], [ -122.833067401000022, 49.135504892000064 ], [ -122.832952285999937, 49.135384393000059 ], [ -122.832751512999934, 49.135315400000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115510228", "BldgCostT": "79274857", "sL_LossRatio": "0.8091562487545", "sL_AssetLoss": "1505420", "sL_BldgLoss": "1218120", "sL_StrLoss": "565310", "sL_NStrLoss": "652810", "sL_ContLoss": "287300", "geom_point": "0101000020E61000003E70952710B55EC0318F155FE1904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.828878217999929, 49.131811389000113 ], [ -122.828875620999966, 49.13090580500009 ], [ -122.828872280999988, 49.130049690000057 ], [ -122.830334606999898, 49.130042286000062 ], [ -122.830339811999977, 49.131777011000047 ], [ -122.831611605999939, 49.131671207000096 ], [ -122.833060915999951, 49.131353508000061 ], [ -122.833069815999977, 49.132229599000027 ], [ -122.831641312999963, 49.132543405000078 ], [ -122.830570304999981, 49.132717286000101 ], [ -122.830340791999959, 49.132727696000075 ], [ -122.828901001999938, 49.132743817000026 ], [ -122.82612325799991, 49.132718673000042 ], [ -122.825314121999952, 49.132711339000117 ], [ -122.824820353999954, 49.132706857000095 ], [ -122.824802597999977, 49.132706714000037 ], [ -122.824803447999912, 49.132643632000054 ], [ -122.824803591999981, 49.132633810000101 ], [ -122.824814316999948, 49.131833003000068 ], [ -122.826043234999958, 49.131826472000022 ], [ -122.826207719999985, 49.131825624000044 ], [ -122.828878217999929, 49.131811389000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176664979", "BldgCostT": "117589858", "sL_LossRatio": "0.777486047068503", "sL_AssetLoss": "1302952", "sL_BldgLoss": "1013027", "sL_StrLoss": "505241", "sL_NStrLoss": "507786", "sL_ContLoss": "289925", "geom_point": "0101000020E61000009FC6A45C2DB55EC02378333884904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833069815999977, 49.132229599000027 ], [ -122.833060915999951, 49.131353508000061 ], [ -122.831611605999939, 49.131671207000096 ], [ -122.830339811999977, 49.131777011000047 ], [ -122.830334606999898, 49.130042286000062 ], [ -122.828872280999988, 49.130049690000057 ], [ -122.828875620999966, 49.13090580500009 ], [ -122.826133780999925, 49.130928492000045 ], [ -122.826130415999927, 49.130855301000061 ], [ -122.826088218999985, 49.129949505000091 ], [ -122.826069262999908, 49.129217108000077 ], [ -122.826067491999964, 49.129148802 ], [ -122.826052788000013, 49.128240008000034 ], [ -122.82735709399995, 49.128218991000082 ], [ -122.828805105999948, 49.128220312000103 ], [ -122.828853223999914, 49.126207791000084 ], [ -122.832551769999952, 49.126213134000039 ], [ -122.832740497999964, 49.126228072000046 ], [ -122.832933317999931, 49.126243303000059 ], [ -122.83332009199998, 49.126337584000055 ], [ -122.833706793999966, 49.126493137000111 ], [ -122.83411935599996, 49.126832379000064 ], [ -122.834282462999937, 49.127052553000034 ], [ -122.834390587999906, 49.127335978000069 ], [ -122.83438994199993, 49.127385555000103 ], [ -122.834389384999923, 49.127428210000083 ], [ -122.834382601999963, 49.127934137000082 ], [ -122.83437086399999, 49.128814049000056 ], [ -122.834476369999933, 49.129136136000085 ], [ -122.834411790999937, 49.129924503000034 ], [ -122.834442933999938, 49.132245671000177 ], [ -122.833069815999977, 49.132229599000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180094417", "BldgCostT": "123546667", "sL_LossRatio": "0.808553040280297", "sL_AssetLoss": "2012150", "sL_BldgLoss": "1626930", "sL_StrLoss": "738930", "sL_NStrLoss": "888000", "sL_ContLoss": "385220", "geom_point": "0101000020E61000009E89D960DBB45EC05373D25EF1904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823360812999979, 49.130907064000034 ], [ -122.824560712000022, 49.130991989000115 ], [ -122.824834998999933, 49.130987502000089 ], [ -122.826133780999925, 49.130928492000045 ], [ -122.828875620999966, 49.13090580500009 ], [ -122.828878217999929, 49.131811389000113 ], [ -122.826207719999985, 49.131825624000044 ], [ -122.826043234999958, 49.131826472000022 ], [ -122.824814316999948, 49.131833003000068 ], [ -122.824803591999981, 49.132633810000101 ], [ -122.824803447999912, 49.132643632000054 ], [ -122.824802597999977, 49.132706714000037 ], [ -122.824820353999954, 49.132706857000095 ], [ -122.825314121999952, 49.132711339000117 ], [ -122.82612325799991, 49.132718673000042 ], [ -122.828901001999938, 49.132743817000026 ], [ -122.828928691999977, 49.133643920000019 ], [ -122.828930786999976, 49.133714270000091 ], [ -122.82603781899995, 49.13374543200004 ], [ -122.8233363, 49.133774474000042 ], [ -122.823337413999965, 49.133697925000078 ], [ -122.823360812999979, 49.130907064000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88083001", "BldgCostT": "58860001", "sL_LossRatio": "0.766482270330266", "sL_AssetLoss": "789242", "sL_BldgLoss": "604940", "sL_StrLoss": "324200", "sL_NStrLoss": "280740", "sL_ContLoss": "184302", "geom_point": "0101000020E6100000FD2AF167D5B45EC052234FED67904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823360812999979, 49.130907064000034 ], [ -122.823343637999969, 49.129492764000126 ], [ -122.823312872999963, 49.127695987000074 ], [ -122.823320194999951, 49.127187100000121 ], [ -122.823309216, 49.126204601000055 ], [ -122.828853223999914, 49.126207791000084 ], [ -122.828805105999948, 49.128220312000103 ], [ -122.82735709399995, 49.128218991000082 ], [ -122.826052788000013, 49.128240008000034 ], [ -122.826067491999964, 49.129148802 ], [ -122.826069262999908, 49.129217108000077 ], [ -122.826088218999985, 49.129949505000091 ], [ -122.826130415999927, 49.130855301000061 ], [ -122.826133780999925, 49.130928492000045 ], [ -122.824834998999933, 49.130987502000089 ], [ -122.824560712000022, 49.130991989000115 ], [ -122.823360812999979, 49.130907064000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90132893", "BldgCostT": "58331522", "sL_LossRatio": "0.741323712175546", "sL_AssetLoss": "913265", "sL_BldgLoss": "677025", "sL_StrLoss": "360370", "sL_NStrLoss": "316655", "sL_ContLoss": "236240", "geom_point": "0101000020E61000005C5D5EEB18B55EC054D2063704904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823309216, 49.126204601000055 ], [ -122.823302111999951, 49.125185196000096 ], [ -122.823307410999945, 49.124004108000079 ], [ -122.825988701999947, 49.125123110000111 ], [ -122.827013115999989, 49.125408309000115 ], [ -122.827811794999931, 49.125549001000124 ], [ -122.828801599999977, 49.125659305000063 ], [ -122.828824212, 49.124785001000092 ], [ -122.828806095999965, 49.123843712000046 ], [ -122.829993878999971, 49.123841800000058 ], [ -122.830840685999931, 49.123839702000119 ], [ -122.831178404999946, 49.123789298000119 ], [ -122.831458015999985, 49.123701789000023 ], [ -122.831815218999935, 49.12359 ], [ -122.831974418999906, 49.123585703000053 ], [ -122.834375911999942, 49.123565388000031 ], [ -122.834374008999987, 49.125304401000101 ], [ -122.834314889999945, 49.125525523000043 ], [ -122.833841655999933, 49.126278507000094 ], [ -122.833706793999966, 49.126493137000111 ], [ -122.83332009199998, 49.126337584000055 ], [ -122.832933317999931, 49.126243303000059 ], [ -122.832740497999964, 49.126228072000046 ], [ -122.832551769999952, 49.126213134000039 ], [ -122.828853223999914, 49.126207791000084 ], [ -122.823309216, 49.126204601000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87023917", "BldgCostT": "56211667", "sL_LossRatio": "0.706810935538942", "sL_AssetLoss": "1282790", "sL_BldgLoss": "906690", "sL_StrLoss": "384630", "sL_NStrLoss": "522060", "sL_ContLoss": "376100", "geom_point": "0101000020E6100000FD5D9EEFE3B45EC07453C2FADC8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823307410999945, 49.124004108000079 ], [ -122.823318291999968, 49.122740157000095 ], [ -122.825425621999926, 49.122733894000085 ], [ -122.828816620999987, 49.122724913000141 ], [ -122.828806095999965, 49.123843712000046 ], [ -122.828824212, 49.124785001000092 ], [ -122.828801599999977, 49.125659305000063 ], [ -122.827811794999931, 49.125549001000124 ], [ -122.827013115999989, 49.125408309000115 ], [ -122.825988701999947, 49.125123110000111 ], [ -122.823307410999945, 49.124004108000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179583332", "BldgCostT": "117783332", "sL_LossRatio": "0.709127992521371", "sL_AssetLoss": "2430392", "sL_BldgLoss": "1723459", "sL_StrLoss": "866129", "sL_NStrLoss": "857330", "sL_ContLoss": "706933", "geom_point": "0101000020E61000007ECEDC6410B55EC0A9B50FFD838F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.828806095999965, 49.123843712000046 ], [ -122.828816620999987, 49.122724913000141 ], [ -122.825425621999926, 49.122733894000085 ], [ -122.823318291999968, 49.122740157000095 ], [ -122.823288951999984, 49.121083066000068 ], [ -122.823274476999984, 49.119167834000052 ], [ -122.828817858000022, 49.11914849700004 ], [ -122.834329996999941, 49.119145106000076 ], [ -122.834323902999969, 49.119838766000029 ], [ -122.83431934699999, 49.120072918000126 ], [ -122.834307597999896, 49.120682606000074 ], [ -122.834321183000014, 49.120885795000049 ], [ -122.834351798999961, 49.12144170700001 ], [ -122.834345924999951, 49.122222282000045 ], [ -122.834345098999947, 49.122330202000057 ], [ -122.834342381999974, 49.122688598000117 ], [ -122.834375911999942, 49.123565388000031 ], [ -122.831974418999906, 49.123585703000053 ], [ -122.831815218999935, 49.12359 ], [ -122.831458015999985, 49.123701789000023 ], [ -122.831178404999946, 49.123789298000119 ], [ -122.830840685999931, 49.123839702000119 ], [ -122.829993878999971, 49.123841800000058 ], [ -122.828806095999965, 49.123843712000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177062167", "BldgCostT": "110706667", "sL_LossRatio": "0.713484458985744", "sL_AssetLoss": "1668810", "sL_BldgLoss": "1190670", "sL_StrLoss": "612850", "sL_NStrLoss": "577820", "sL_ContLoss": "478140", "geom_point": "0101000020E610000002816CC499B55EC03808F7F3BB8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833841655999933, 49.126278507000094 ], [ -122.834314889999945, 49.125525523000043 ], [ -122.834374008999987, 49.125304401000101 ], [ -122.834375911999942, 49.123565388000031 ], [ -122.834342381999974, 49.122688598000117 ], [ -122.834345098999947, 49.122330202000057 ], [ -122.834345924999951, 49.122222282000045 ], [ -122.834351798999961, 49.12144170700001 ], [ -122.834321183000014, 49.120885795000049 ], [ -122.834307597999896, 49.120682606000074 ], [ -122.83431934699999, 49.120072918000126 ], [ -122.834323902999969, 49.119838766000029 ], [ -122.834329996999941, 49.119145106000076 ], [ -122.83433, 49.119044191000029 ], [ -122.83451600399998, 49.119043483000041 ], [ -122.83531081699999, 49.119040504000083 ], [ -122.839244395999984, 49.119025646000033 ], [ -122.839869315999948, 49.119023272000071 ], [ -122.839866498999967, 49.119125024000077 ], [ -122.839861156999987, 49.120111558000062 ], [ -122.839860523999945, 49.120215025000107 ], [ -122.839857359999954, 49.120727759000083 ], [ -122.839854766999977, 49.121153920000069 ], [ -122.839911203999932, 49.122137780000116 ], [ -122.839917293999989, 49.123197597000107 ], [ -122.839918306999934, 49.123534413000066 ], [ -122.839919324999968, 49.123875300000094 ], [ -122.839917114999949, 49.124129302000014 ], [ -122.840960295999977, 49.124138391000024 ], [ -122.841274210000037, 49.124096192000074 ], [ -122.841344984, 49.125130905000148 ], [ -122.842710026999924, 49.125143071000082 ], [ -122.842726054999972, 49.12617888000004 ], [ -122.842299459999964, 49.126206896000092 ], [ -122.841897699999947, 49.126272611000047 ], [ -122.841525266999923, 49.126411255000122 ], [ -122.841295974999952, 49.126286852000064 ], [ -122.841263657999974, 49.126269317000094 ], [ -122.840990820999977, 49.126211726000079 ], [ -122.839956505999908, 49.126211987000055 ], [ -122.839560486999929, 49.126208571000092 ], [ -122.837708316999965, 49.126229350000109 ], [ -122.83637989499999, 49.126226684000059 ], [ -122.834318382, 49.126222790000014 ], [ -122.834103268999925, 49.126263322000113 ], [ -122.83405010599995, 49.126284874000142 ], [ -122.833927163999988, 49.126334740000161 ], [ -122.833706793999966, 49.126493137000111 ], [ -122.833841655999933, 49.126278507000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133778501", "BldgCostT": "83185001", "sL_LossRatio": "0.709316364565188", "sL_AssetLoss": "1519026", "sL_BldgLoss": "1077470", "sL_StrLoss": "512530", "sL_NStrLoss": "564940", "sL_ContLoss": "441556", "geom_point": "0101000020E61000005BC34638F1B55EC042F022C0A78F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.842726054999972, 49.12617888000004 ], [ -122.842710026999924, 49.125143071000082 ], [ -122.841344984, 49.125130905000148 ], [ -122.841274210000037, 49.124096192000074 ], [ -122.840960295999977, 49.124138391000024 ], [ -122.839917114999949, 49.124129302000014 ], [ -122.839919324999968, 49.123875300000094 ], [ -122.839918306999934, 49.123534413000066 ], [ -122.839917293999989, 49.123197597000107 ], [ -122.839911203999932, 49.122137780000116 ], [ -122.839854766999977, 49.121153920000069 ], [ -122.839857359999954, 49.120727759000083 ], [ -122.839860523999945, 49.120215025000107 ], [ -122.839861156999987, 49.120111558000062 ], [ -122.839866498999967, 49.119125024000077 ], [ -122.844988983999954, 49.119110536000044 ], [ -122.845399945999972, 49.119109962000081 ], [ -122.845400611999963, 49.119402846000106 ], [ -122.845400910999942, 49.119574894000102 ], [ -122.845404950999978, 49.12186872100002 ], [ -122.845405510999967, 49.122192562000038 ], [ -122.845407155999951, 49.123123730000067 ], [ -122.845408455999973, 49.123874722000046 ], [ -122.845408960999947, 49.124161647000079 ], [ -122.845411953999957, 49.125863929000104 ], [ -122.845413235999985, 49.126188339000073 ], [ -122.845077736999926, 49.126186625000066 ], [ -122.842726054999972, 49.12617888000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50033916", "BldgCostT": "32406666", "sL_LossRatio": "0.704788704357036", "sL_AssetLoss": "924321", "sL_BldgLoss": "651451", "sL_StrLoss": "262092", "sL_NStrLoss": "389359", "sL_ContLoss": "272870", "geom_point": "0101000020E6100000FD63E64433B65EC0D453B320F78F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.846607937999963, 49.126247713000048 ], [ -122.846371204999926, 49.126202921000136 ], [ -122.84593752, 49.126194706000078 ], [ -122.84564332099994, 49.126189692000018 ], [ -122.845413235999985, 49.126188339000073 ], [ -122.845411953999957, 49.125863929000104 ], [ -122.845408960999947, 49.124161647000079 ], [ -122.845408455999973, 49.123874722000046 ], [ -122.845407155999951, 49.123123730000067 ], [ -122.84562013599998, 49.123149434000027 ], [ -122.846343492999935, 49.123236698 ], [ -122.847658415999931, 49.123239205000104 ], [ -122.848339014999922, 49.123241993000114 ], [ -122.848339300999953, 49.124269207000033 ], [ -122.84835322099994, 49.125317602000052 ], [ -122.848369098999939, 49.126257001000063 ], [ -122.847079835, 49.126258846000141 ], [ -122.846607937999963, 49.126247713000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37768499", "BldgCostT": "24839999", "sL_LossRatio": "0.720622846951324", "sL_AssetLoss": "613955", "sL_BldgLoss": "442430", "sL_StrLoss": "204460", "sL_NStrLoss": "237970", "sL_ContLoss": "171525", "geom_point": "0101000020E61000007BFFCCDE61B65EC0EEC0F706F88F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.848339014999922, 49.123241993000114 ], [ -122.851079790999933, 49.123225908000066 ], [ -122.851098306999944, 49.124268099000048 ], [ -122.85108189399989, 49.124774910000021 ], [ -122.851094719999963, 49.126305300000077 ], [ -122.849784807999953, 49.126289401000122 ], [ -122.848369098999939, 49.126257001000063 ], [ -122.84835322099994, 49.125317602000052 ], [ -122.848339300999953, 49.124269207000033 ], [ -122.848339014999922, 49.123241993000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210984334", "BldgCostT": "141408334", "sL_LossRatio": "0.726992827468973", "sL_AssetLoss": "3459030", "sL_BldgLoss": "2514690", "sL_StrLoss": "1164310", "sL_NStrLoss": "1350380", "sL_ContLoss": "944340", "geom_point": "0101000020E610000002E9AC60A5B65EC08F96B9AFB98F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851098306999944, 49.124268099000048 ], [ -122.851079790999933, 49.123225908000066 ], [ -122.851060252999929, 49.122784158000051 ], [ -122.851053097999952, 49.122622366000023 ], [ -122.851041914999939, 49.122369594000062 ], [ -122.852823499999928, 49.122357801000078 ], [ -122.85279941099995, 49.121519111000076 ], [ -122.852797908999918, 49.12081169100005 ], [ -122.852820903999898, 49.120634007000021 ], [ -122.852565713000018, 49.120193999000051 ], [ -122.852296599999974, 49.120142894000068 ], [ -122.851001016999973, 49.120139199000029 ], [ -122.85099172299999, 49.119081922000134 ], [ -122.853621069999946, 49.119075734000027 ], [ -122.853744432000028, 49.119075450000075 ], [ -122.854151194999986, 49.119074468000065 ], [ -122.856490729999976, 49.119068919000021 ], [ -122.856482928999966, 49.12011752800003 ], [ -122.856486907999951, 49.12030149000001 ], [ -122.856502511999949, 49.121146204000112 ], [ -122.856523383999985, 49.122195700000098 ], [ -122.855797703999968, 49.122189804000129 ], [ -122.854778686999936, 49.122168096000038 ], [ -122.854648428999937, 49.122210306000078 ], [ -122.854515482999929, 49.12225138400003 ], [ -122.854491015999912, 49.123222097000038 ], [ -122.854475521, 49.123816301000048 ], [ -122.854580386999956, 49.123886094000049 ], [ -122.856554904999939, 49.123898708000112 ], [ -122.856566797999946, 49.124554201000116 ], [ -122.856581795999929, 49.125285405000064 ], [ -122.856585805999927, 49.125672105000106 ], [ -122.856599213999942, 49.126405902000023 ], [ -122.855367231999978, 49.126383399000126 ], [ -122.855161798999987, 49.126379665000101 ], [ -122.85440811499997, 49.12636589900012 ], [ -122.854159971999977, 49.126361362000132 ], [ -122.853668141999947, 49.126352365000059 ], [ -122.853119543, 49.126342333000096 ], [ -122.852982253999983, 49.126339830000099 ], [ -122.851094719999963, 49.126305300000077 ], [ -122.85108189399989, 49.124774910000021 ], [ -122.851098306999944, 49.124268099000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43224501", "BldgCostT": "28865001", "sL_LossRatio": "0.707435500872965", "sL_AssetLoss": "852841", "sL_BldgLoss": "603330", "sL_StrLoss": "264730", "sL_NStrLoss": "338600", "sL_ContLoss": "249511", "geom_point": "0101000020E6100000D05845C975B65EC06187D62F7D8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851041914999939, 49.122369594000062 ], [ -122.851018388999947, 49.121157894000127 ], [ -122.848359969999933, 49.121172793 ], [ -122.848300002999963, 49.121147684000086 ], [ -122.84824000899998, 49.121124302000084 ], [ -122.848238989999984, 49.12090985800009 ], [ -122.848235319999944, 49.120141009000136 ], [ -122.851001016999973, 49.120139199000029 ], [ -122.852296599999974, 49.120142894000068 ], [ -122.852565713000018, 49.120193999000051 ], [ -122.852820903999898, 49.120634007000021 ], [ -122.852797908999918, 49.12081169100005 ], [ -122.85279941099995, 49.121519111000076 ], [ -122.852823499999928, 49.122357801000078 ], [ -122.851041914999939, 49.122369594000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89915500", "BldgCostT": "58330000", "sL_LossRatio": "0.670742553219454", "sL_AssetLoss": "2282530", "sL_BldgLoss": "1530990", "sL_StrLoss": "652840", "sL_NStrLoss": "878150", "sL_ContLoss": "751540", "geom_point": "0101000020E610000080A7A00D46B65EC03CAAE4AD848F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845407155999951, 49.123123730000067 ], [ -122.845405510999967, 49.122192562000038 ], [ -122.845404950999978, 49.12186872100002 ], [ -122.845400910999942, 49.119574894000102 ], [ -122.845400611999963, 49.119402846000106 ], [ -122.845399945999972, 49.119109962000081 ], [ -122.845494056999925, 49.119108252000046 ], [ -122.845589198999932, 49.119106504000058 ], [ -122.845989349999982, 49.119103841000012 ], [ -122.84714883099997, 49.119098772000079 ], [ -122.849611458999973, 49.119088001000101 ], [ -122.849645279999947, 49.119087846000049 ], [ -122.85099172299999, 49.119081922000134 ], [ -122.851001016999973, 49.120139199000029 ], [ -122.848235319999944, 49.120141009000136 ], [ -122.848238989999984, 49.12090985800009 ], [ -122.84824000899998, 49.121124302000084 ], [ -122.848300002999963, 49.121147684000086 ], [ -122.848359969999933, 49.121172793 ], [ -122.851018388999947, 49.121157894000127 ], [ -122.851041914999939, 49.122369594000062 ], [ -122.851053097999952, 49.122622366000023 ], [ -122.851060252999929, 49.122784158000051 ], [ -122.851079790999933, 49.123225908000066 ], [ -122.848339014999922, 49.123241993000114 ], [ -122.847658415999931, 49.123239205000104 ], [ -122.846343492999935, 49.123236698 ], [ -122.84562013599998, 49.123149434000027 ], [ -122.845407155999951, 49.123123730000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144892866", "BldgCostT": "93148879", "sL_LossRatio": "0.687960714779043", "sL_AssetLoss": "2656877", "sL_BldgLoss": "1827827", "sL_StrLoss": "758707", "sL_NStrLoss": "1069120", "sL_ContLoss": "829050", "geom_point": "0101000020E610000094CE23F346B65EC0FEF0B934FA8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845424437999952, 49.115434244000078 ], [ -122.845427199999975, 49.11456479900005 ], [ -122.848365423999908, 49.114578897000101 ], [ -122.848376789999946, 49.115402791000108 ], [ -122.850493467999954, 49.11540929800006 ], [ -122.851092196999957, 49.115411141000081 ], [ -122.851060687999947, 49.117252900000054 ], [ -122.851021281999977, 49.117977197000066 ], [ -122.851005393999955, 49.118575901000042 ], [ -122.850995429999927, 49.118966704000051 ], [ -122.85099172299999, 49.119081922000134 ], [ -122.849645279999947, 49.119087846000049 ], [ -122.849611458999973, 49.119088001000101 ], [ -122.84714883099997, 49.119098772000079 ], [ -122.845989349999982, 49.119103841000012 ], [ -122.845589198999932, 49.119106504000058 ], [ -122.845494056999925, 49.119108252000046 ], [ -122.845399945999972, 49.119109962000081 ], [ -122.845396459999961, 49.118979218000057 ], [ -122.845378550999968, 49.118617348000072 ], [ -122.845317389999977, 49.117559483000065 ], [ -122.845213728, 49.117209510000045 ], [ -122.845365692999948, 49.117169568000115 ], [ -122.845682273999913, 49.117086302000097 ], [ -122.845622114999941, 49.116741215000054 ], [ -122.845406310999948, 49.116651996000051 ], [ -122.845452886999965, 49.116570452000047 ], [ -122.84537653699999, 49.116282562000031 ], [ -122.845406524999987, 49.115751382000077 ], [ -122.845424437999952, 49.115434244000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85628726", "BldgCostT": "56510310", "sL_LossRatio": "0.694493356330266", "sL_AssetLoss": "1663990", "sL_BldgLoss": "1155630", "sL_StrLoss": "531570", "sL_NStrLoss": "624060", "sL_ContLoss": "508360", "geom_point": "0101000020E6100000FF65EF7359B65EC00F1E547F908E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845427199999975, 49.11456479900005 ], [ -122.845432065999915, 49.114123907000085 ], [ -122.845437933, 49.113593148000113 ], [ -122.845444494999924, 49.112999384000076 ], [ -122.845447209999989, 49.112754192000097 ], [ -122.845449539999962, 49.11261907199999 ], [ -122.845451324999914, 49.112397385000065 ], [ -122.845455191999989, 49.111929010000026 ], [ -122.845381542999945, 49.111904330000101 ], [ -122.845354970999949, 49.111852172000042 ], [ -122.845392474999983, 49.111803708000089 ], [ -122.84547171499996, 49.111786222000063 ], [ -122.84554536499995, 49.111810903000077 ], [ -122.845570529999932, 49.111863900000046 ], [ -122.846978885999974, 49.111877288000066 ], [ -122.848369905999931, 49.111882897000058 ], [ -122.849786001999973, 49.111882996000084 ], [ -122.849766713999927, 49.112695212000119 ], [ -122.849761886999943, 49.113150095000108 ], [ -122.849904191999926, 49.11337500200009 ], [ -122.849925343999971, 49.113386059000071 ], [ -122.8502349, 49.113547808000078 ], [ -122.850431503999971, 49.113596805000036 ], [ -122.851824884999985, 49.113589901000083 ], [ -122.853194887999948, 49.113583108000071 ], [ -122.853741218999971, 49.113605416000098 ], [ -122.853833371999954, 49.113660365 ], [ -122.853864322999968, 49.11380995400004 ], [ -122.853810136000021, 49.114713076000143 ], [ -122.853794112999978, 49.115294702000071 ], [ -122.853710161, 49.115321074000043 ], [ -122.853676124999964, 49.11537866400009 ], [ -122.851092196999957, 49.115411141000081 ], [ -122.850493467999954, 49.11540929800006 ], [ -122.848376789999946, 49.115402791000108 ], [ -122.848365423999908, 49.114578897000101 ], [ -122.845427199999975, 49.11456479900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85873161", "BldgCostT": "56486752", "sL_LossRatio": "0.727433626224636", "sL_AssetLoss": "845251", "sL_BldgLoss": "614864", "sL_StrLoss": "297914", "sL_NStrLoss": "316950", "sL_ContLoss": "230387", "geom_point": "0101000020E6100000E3216CDBA4B65EC0A4C2C8607F8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.853794112999978, 49.115294702000071 ], [ -122.853810136000021, 49.114713076000143 ], [ -122.853864322999968, 49.11380995400004 ], [ -122.853833371999954, 49.113660365 ], [ -122.853741218999971, 49.113605416000098 ], [ -122.853194887999948, 49.113583108000071 ], [ -122.851824884999985, 49.113589901000083 ], [ -122.850431503999971, 49.113596805000036 ], [ -122.8502349, 49.113547808000078 ], [ -122.849925343999971, 49.113386059000071 ], [ -122.849904191999926, 49.11337500200009 ], [ -122.849761886999943, 49.113150095000108 ], [ -122.849766713999927, 49.112695212000119 ], [ -122.849786001999973, 49.111882996000084 ], [ -122.853312742999918, 49.111901970000069 ], [ -122.853821901999979, 49.111904708000097 ], [ -122.854598227999944, 49.111907602000066 ], [ -122.855354784999946, 49.111906691000087 ], [ -122.856638996999962, 49.111905118000024 ], [ -122.856626383, 49.11262733600006 ], [ -122.856616972999959, 49.113164176000062 ], [ -122.856605934999948, 49.113643554000127 ], [ -122.85656579499999, 49.115382076000053 ], [ -122.853923079999944, 49.11537236600001 ], [ -122.853882967999965, 49.11531711800005 ], [ -122.853794112999978, 49.115294702000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184387166", "BldgCostT": "123386666", "sL_LossRatio": "0.787533193570929", "sL_AssetLoss": "1431000", "sL_BldgLoss": "1126960", "sL_StrLoss": "639540", "sL_NStrLoss": "487420", "sL_ContLoss": "304040", "geom_point": "0101000020E61000001EA03D8F78B65EC04F8A66D0168E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.855437624999979, 49.10825307800004 ], [ -122.856718504999932, 49.108253497000085 ], [ -122.856709051999985, 49.108839849000098 ], [ -122.856674527999957, 49.11035108600003 ], [ -122.856653950999913, 49.111250472000066 ], [ -122.856638996999962, 49.111905118000024 ], [ -122.855354784999946, 49.111906691000087 ], [ -122.854598227999944, 49.111907602000066 ], [ -122.853821901999979, 49.111904708000097 ], [ -122.853312742999918, 49.111901970000069 ], [ -122.849786001999973, 49.111882996000084 ], [ -122.848369905999931, 49.111882897000058 ], [ -122.846978885999974, 49.111877288000066 ], [ -122.845570529999932, 49.111863900000046 ], [ -122.84554536499995, 49.111810903000077 ], [ -122.84547171499996, 49.111786222000063 ], [ -122.845510382999976, 49.109962631000087 ], [ -122.845521093999935, 49.109643058000088 ], [ -122.845599034999964, 49.109624627000066 ], [ -122.845635316999946, 49.109574319000146 ], [ -122.845605921999919, 49.109522998000081 ], [ -122.845530833999959, 49.109499168000106 ], [ -122.845555282999925, 49.10824914700008 ], [ -122.84827155899994, 49.108250335000022 ], [ -122.848610515999951, 49.108250464000086 ], [ -122.851130878999953, 49.108251495000061 ], [ -122.851213081999973, 49.108251526000096 ], [ -122.852534698999975, 49.108252029000084 ], [ -122.852671716999936, 49.108252076000063 ], [ -122.853924648000017, 49.108252537000034 ], [ -122.855437624999979, 49.10825307800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "579169168", "BldgCostT": "359111668", "sL_LossRatio": "0.746921696337131", "sL_AssetLoss": "4142054", "sL_BldgLoss": "3093790", "sL_StrLoss": "1671120", "sL_NStrLoss": "1422670", "sL_ContLoss": "1048264", "geom_point": "0101000020E6100000683E9570F4B65EC0E3B0B101C78D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856709051999985, 49.108839849000098 ], [ -122.856718504999932, 49.108253497000085 ], [ -122.855437624999979, 49.10825307800004 ], [ -122.853924648000017, 49.108252537000034 ], [ -122.852671716999936, 49.108252076000063 ], [ -122.852534698999975, 49.108252029000084 ], [ -122.851213081999973, 49.108251526000096 ], [ -122.851130878999953, 49.108251495000061 ], [ -122.848610515999951, 49.108250464000086 ], [ -122.84827155899994, 49.108250335000022 ], [ -122.845555282999925, 49.10824914700008 ], [ -122.845557179999943, 49.108160888 ], [ -122.845612023999976, 49.105229407000074 ], [ -122.846731508999952, 49.105076615000023 ], [ -122.84876789, 49.104730802000041 ], [ -122.849273011999927, 49.104651902000072 ], [ -122.850105718999927, 49.104527712000099 ], [ -122.855287507999961, 49.104563094000099 ], [ -122.856805796999964, 49.1045670150001 ], [ -122.857896968999967, 49.104567317000082 ], [ -122.859610101999962, 49.104567805000023 ], [ -122.861322660999917, 49.104745284000053 ], [ -122.861547801999961, 49.104768611000033 ], [ -122.862054501999964, 49.104768089000075 ], [ -122.863000205999967, 49.104551492000098 ], [ -122.863425991999961, 49.104471083000057 ], [ -122.865024589999948, 49.104441110000032 ], [ -122.86626508199997, 49.104463794000068 ], [ -122.867858346999981, 49.104493081000051 ], [ -122.867844253999948, 49.107102062000116 ], [ -122.867840081999987, 49.107877946000038 ], [ -122.867792848999954, 49.10796937400012 ], [ -122.867792564999959, 49.108054966000076 ], [ -122.867788830999984, 49.108172010000033 ], [ -122.867795188999963, 49.109440929000044 ], [ -122.867795995999955, 49.109940137000081 ], [ -122.867796668, 49.110334846000093 ], [ -122.867793280999962, 49.111809801000071 ], [ -122.866416115999968, 49.111821961000018 ], [ -122.864867654999912, 49.111835376000073 ], [ -122.863069658000015, 49.111853229000069 ], [ -122.861082494999948, 49.111872688000069 ], [ -122.85984965199998, 49.111884549000074 ], [ -122.859084502, 49.111891917000065 ], [ -122.858109199999944, 49.111901809000102 ], [ -122.857873004999959, 49.111904238000129 ], [ -122.856638996999962, 49.111905118000024 ], [ -122.856653950999913, 49.111250472000066 ], [ -122.856674527999957, 49.11035108600003 ], [ -122.856709051999985, 49.108839849000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145545727", "BldgCostT": "97524856", "sL_LossRatio": "0.761620963483518", "sL_AssetLoss": "1374886", "sL_BldgLoss": "1047142", "sL_StrLoss": "554168", "sL_NStrLoss": "492974", "sL_ContLoss": "327744", "geom_point": "0101000020E61000004127E73835B75EC04F9D16D5858E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85656579499999, 49.115382076000053 ], [ -122.856605934999948, 49.113643554000127 ], [ -122.856616972999959, 49.113164176000062 ], [ -122.856626383, 49.11262733600006 ], [ -122.856638996999962, 49.111905118000024 ], [ -122.857873004999959, 49.111904238000129 ], [ -122.858109199999944, 49.111901809000102 ], [ -122.859084502, 49.111891917000065 ], [ -122.85984965199998, 49.111884549000074 ], [ -122.861082494999948, 49.111872688000069 ], [ -122.863069658000015, 49.111853229000069 ], [ -122.864867654999912, 49.111835376000073 ], [ -122.866416115999968, 49.111821961000018 ], [ -122.867793280999962, 49.111809801000071 ], [ -122.867778989999948, 49.113141192000093 ], [ -122.867783303999914, 49.113809942000074 ], [ -122.86779209499997, 49.115450156000037 ], [ -122.867129700999939, 49.115460618000043 ], [ -122.866348338999927, 49.115472962000048 ], [ -122.86581371299998, 49.115469652000051 ], [ -122.865051909, 49.115464885000044 ], [ -122.863719397999944, 49.115462097000048 ], [ -122.862370817999988, 49.115455196000021 ], [ -122.862433402999955, 49.114587506000063 ], [ -122.862406311999962, 49.114482206000062 ], [ -122.862098793999976, 49.114167693000084 ], [ -122.861876719999927, 49.114048600000075 ], [ -122.861574202999975, 49.113964995000131 ], [ -122.860506209000036, 49.113878806000102 ], [ -122.859976410999977, 49.113855290000068 ], [ -122.859224598999972, 49.113935990000108 ], [ -122.858180415999954, 49.11392439300009 ], [ -122.858084624999904, 49.114755109000079 ], [ -122.858102026999973, 49.114969304000063 ], [ -122.85810481499999, 49.115003502000029 ], [ -122.8581979199999, 49.115389220000061 ], [ -122.85656579499999, 49.115382076000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126971667", "BldgCostT": "83066667", "sL_LossRatio": "0.721266412459786", "sL_AssetLoss": "1644330", "sL_BldgLoss": "1186000", "sL_StrLoss": "580100", "sL_NStrLoss": "605900", "sL_ContLoss": "458330", "geom_point": "0101000020E6100000EF6069850EB75EC0DEAC8FC1E98E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.859224598999972, 49.113935990000108 ], [ -122.859976410999977, 49.113855290000068 ], [ -122.860506209000036, 49.113878806000102 ], [ -122.861574202999975, 49.113964995000131 ], [ -122.861876719999927, 49.114048600000075 ], [ -122.862098793999976, 49.114167693000084 ], [ -122.862406311999962, 49.114482206000062 ], [ -122.862433402999955, 49.114587506000063 ], [ -122.862370817999988, 49.115455196000021 ], [ -122.862340513999953, 49.11897300600004 ], [ -122.862235862999981, 49.119142982000028 ], [ -122.858626104999985, 49.119096474000116 ], [ -122.858327502999927, 49.118947754000047 ], [ -122.858232081999986, 49.118088092000036 ], [ -122.858117212, 49.117598997000087 ], [ -122.858145905999947, 49.117376415000102 ], [ -122.858158604, 49.116580209000034 ], [ -122.858170872999935, 49.115810097000129 ], [ -122.8581979199999, 49.115389220000061 ], [ -122.85810481499999, 49.115003502000029 ], [ -122.858102026999973, 49.114969304000063 ], [ -122.858084624999904, 49.114755109000079 ], [ -122.858180415999954, 49.11392439300009 ], [ -122.859224598999972, 49.113935990000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113710119", "BldgCostT": "73341832", "sL_LossRatio": "0.771768518259273", "sL_AssetLoss": "821473", "sL_BldgLoss": "633987", "sL_StrLoss": "347627", "sL_NStrLoss": "286360", "sL_ContLoss": "187486", "geom_point": "0101000020E6100000FEAEBE705DB75EC031413F19048F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867129700999939, 49.115460618000043 ], [ -122.86779209499997, 49.115450156000037 ], [ -122.867792966999929, 49.115912408000099 ], [ -122.867795574, 49.117291145000145 ], [ -122.867790805999945, 49.118277673000094 ], [ -122.867795344999976, 49.119024814000113 ], [ -122.867790147, 49.119183244000062 ], [ -122.865742093, 49.119161958000056 ], [ -122.863798414999962, 49.119141732000045 ], [ -122.863704382999984, 49.119140756000057 ], [ -122.862235862999981, 49.119142982000028 ], [ -122.862340513999953, 49.11897300600004 ], [ -122.862370817999988, 49.115455196000021 ], [ -122.863719397999944, 49.115462097000048 ], [ -122.865051909, 49.115464885000044 ], [ -122.86581371299998, 49.115469652000051 ], [ -122.866348338999927, 49.115472962000048 ], [ -122.867129700999939, 49.115460618000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94673417", "BldgCostT": "63136667", "sL_LossRatio": "0.71839259075087", "sL_AssetLoss": "1608800", "sL_BldgLoss": "1155750", "sL_StrLoss": "517260", "sL_NStrLoss": "638490", "sL_ContLoss": "453050", "geom_point": "0101000020E6100000DBFB1A6A10B75EC0D5CE72D1778F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.859384577999961, 49.122220702000014 ], [ -122.859361753999963, 49.12115746300006 ], [ -122.859339895999966, 49.120142410000078 ], [ -122.857806301999943, 49.12013548200008 ], [ -122.856482928999966, 49.12011752800003 ], [ -122.856490729999976, 49.119068919000021 ], [ -122.858314417999964, 49.119092450000018 ], [ -122.858626104999985, 49.119096474000116 ], [ -122.862235862999981, 49.119142982000028 ], [ -122.862200802999951, 49.120820687000055 ], [ -122.862216090999951, 49.121569910000055 ], [ -122.863518319999969, 49.121597106000088 ], [ -122.863487772, 49.122882894000092 ], [ -122.862225876999943, 49.122886597000019 ], [ -122.862220193, 49.122219698000059 ], [ -122.860912212999892, 49.122217603000074 ], [ -122.860871480999947, 49.122353303000125 ], [ -122.860867398000011, 49.123287601000087 ], [ -122.859393583999918, 49.123244596000127 ], [ -122.859384577999961, 49.122220702000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154887583", "BldgCostT": "91618333", "sL_LossRatio": "0.737840452633316", "sL_AssetLoss": "884778", "sL_BldgLoss": "652825", "sL_StrLoss": "349424", "sL_NStrLoss": "303401", "sL_ContLoss": "231953", "geom_point": "0101000020E610000038FFAF3AB2B65EC0A06073CC018F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.853676124999964, 49.11537866400009 ], [ -122.853710161, 49.115321074000043 ], [ -122.853794112999978, 49.115294702000071 ], [ -122.853882967999965, 49.11531711800005 ], [ -122.853923079999944, 49.11537236600001 ], [ -122.85656579499999, 49.115382076000053 ], [ -122.8581979199999, 49.115389220000061 ], [ -122.858170872999935, 49.115810097000129 ], [ -122.858158604, 49.116580209000034 ], [ -122.858145905999947, 49.117376415000102 ], [ -122.858117212, 49.117598997000087 ], [ -122.858232081999986, 49.118088092000036 ], [ -122.858327502999927, 49.118947754000047 ], [ -122.858626104999985, 49.119096474000116 ], [ -122.858314417999964, 49.119092450000018 ], [ -122.856490729999976, 49.119068919000021 ], [ -122.854151194999986, 49.119074468000065 ], [ -122.853744432000028, 49.119075450000075 ], [ -122.853621069999946, 49.119075734000027 ], [ -122.85099172299999, 49.119081922000134 ], [ -122.850995429999927, 49.118966704000051 ], [ -122.851005393999955, 49.118575901000042 ], [ -122.851021281999977, 49.117977197000066 ], [ -122.851060687999947, 49.117252900000054 ], [ -122.851092196999957, 49.115411141000081 ], [ -122.853676124999964, 49.11537866400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62528166", "BldgCostT": "40236666", "sL_LossRatio": "0.695051656761097", "sL_AssetLoss": "870554", "sL_BldgLoss": "605080", "sL_StrLoss": "282130", "sL_NStrLoss": "322950", "sL_ContLoss": "265474", "geom_point": "0101000020E6100000AC588850DDB65EC0C52F1FBD9F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857806301999943, 49.12013548200008 ], [ -122.859339895999966, 49.120142410000078 ], [ -122.859361753999963, 49.12115746300006 ], [ -122.859384577999961, 49.122220702000014 ], [ -122.859393583999918, 49.123244596000127 ], [ -122.856542601999976, 49.123188299000084 ], [ -122.856554904999939, 49.123898708000112 ], [ -122.854580386999956, 49.123886094000049 ], [ -122.854475521, 49.123816301000048 ], [ -122.854491015999912, 49.123222097000038 ], [ -122.854515482999929, 49.12225138400003 ], [ -122.854648428999937, 49.122210306000078 ], [ -122.854778686999936, 49.122168096000038 ], [ -122.855797703999968, 49.122189804000129 ], [ -122.856523383999985, 49.122195700000098 ], [ -122.856502511999949, 49.121146204000112 ], [ -122.856486907999951, 49.12030149000001 ], [ -122.856482928999966, 49.12011752800003 ], [ -122.857806301999943, 49.12013548200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208803000", "BldgCostT": "142500000", "sL_LossRatio": "0.770105925556667", "sL_AssetLoss": "3063189", "sL_BldgLoss": "2358980", "sL_StrLoss": "1130140", "sL_NStrLoss": "1228840", "sL_ContLoss": "704209", "geom_point": "0101000020E6100000F6EF55860CB75EC000E07DFAF48F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856554904999939, 49.123898708000112 ], [ -122.856542601999976, 49.123188299000084 ], [ -122.859393583999918, 49.123244596000127 ], [ -122.860867398000011, 49.123287601000087 ], [ -122.860871480999947, 49.122353303000125 ], [ -122.860912212999892, 49.122217603000074 ], [ -122.862220193, 49.122219698000059 ], [ -122.862225876999943, 49.122886597000019 ], [ -122.86222999599994, 49.123598605000062 ], [ -122.863525907999971, 49.123618393000065 ], [ -122.863764216999954, 49.123659601000078 ], [ -122.863920298999943, 49.123750526000087 ], [ -122.864158287999928, 49.123889092000056 ], [ -122.864302614999943, 49.123983407000061 ], [ -122.864351239999962, 49.124051583000032 ], [ -122.86439781699994, 49.124116892000082 ], [ -122.86445419099999, 49.124336605000089 ], [ -122.864406522999957, 49.125348903000059 ], [ -122.863320496000014, 49.125344193000103 ], [ -122.862224994, 49.125337501000054 ], [ -122.862209792999963, 49.126498601000037 ], [ -122.859441206999961, 49.126456500000117 ], [ -122.856599213999942, 49.126405902000023 ], [ -122.856585805999927, 49.125672105000106 ], [ -122.856581795999929, 49.125285405000064 ], [ -122.856566797999946, 49.124554201000116 ], [ -122.856554904999939, 49.123898708000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407808895", "BldgCostT": "276881524", "sL_LossRatio": "0.80919478732755", "sL_AssetLoss": "2616700", "sL_BldgLoss": "2117420", "sL_StrLoss": "1132330", "sL_NStrLoss": "985090", "sL_ContLoss": "499280", "geom_point": "0101000020E6100000DEA2BBDA00B75EC094631D5483904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85819791499992, 49.132026604000067 ], [ -122.858155691999954, 49.131231503000059 ], [ -122.856667486999967, 49.131215993000083 ], [ -122.856652528999959, 49.130042144000079 ], [ -122.856649618999981, 49.129817282000026 ], [ -122.856643132999963, 49.129305021000036 ], [ -122.856641140999983, 49.128971544000137 ], [ -122.856633871, 49.127758526000029 ], [ -122.856627028999981, 49.127109562000051 ], [ -122.856599213999942, 49.126405902000023 ], [ -122.859441206999961, 49.126456500000117 ], [ -122.862209792999963, 49.126498601000037 ], [ -122.862224702, 49.127536103000061 ], [ -122.862238978999954, 49.128481702000073 ], [ -122.86227633299994, 49.131199526000088 ], [ -122.861861529999942, 49.131194629000078 ], [ -122.861303751999969, 49.131278427000012 ], [ -122.860872421999886, 49.131396504000115 ], [ -122.859982793999947, 49.131788608000072 ], [ -122.859463118999898, 49.132017593000036 ], [ -122.859349319, 49.132018793000036 ], [ -122.85819791499992, 49.132026604000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94696417", "BldgCostT": "62736667", "sL_LossRatio": "0.730325395530908", "sL_AssetLoss": "1471440", "sL_BldgLoss": "1074630", "sL_StrLoss": "491780", "sL_NStrLoss": "582850", "sL_ContLoss": "396810", "geom_point": "0101000020E6100000BD6E9DC157B75EC0B19AD7A66B904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86227633299994, 49.131199526000088 ], [ -122.862238978999954, 49.128481702000073 ], [ -122.862224702, 49.127536103000061 ], [ -122.862209792999963, 49.126498601000037 ], [ -122.863622004999925, 49.126520791000083 ], [ -122.865020590999933, 49.126543598000097 ], [ -122.865711619999985, 49.126555600000088 ], [ -122.866523536999949, 49.126569969000066 ], [ -122.86681445499994, 49.126575131000052 ], [ -122.86775740899995, 49.126589059000047 ], [ -122.867771990999955, 49.129486399000065 ], [ -122.867215356999978, 49.12948076900004 ], [ -122.866683561999977, 49.12947542700001 ], [ -122.866226876999988, 49.129441397000058 ], [ -122.864997107999969, 49.129434389000039 ], [ -122.863552702999954, 49.129439991000069 ], [ -122.863568596999983, 49.131215603000051 ], [ -122.86227633299994, 49.131199526000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129604251", "BldgCostT": "85340001", "sL_LossRatio": "0.704443019999031", "sL_AssetLoss": "2187206", "sL_BldgLoss": "1540762", "sL_StrLoss": "708846", "sL_NStrLoss": "831916", "sL_ContLoss": "646444", "geom_point": "0101000020E6100000FFAED70D3EB75EC04BA94355E9904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856660015999964, 49.133658559000011 ], [ -122.856666155, 49.1316433040001 ], [ -122.856667486999967, 49.131215993000083 ], [ -122.858155691999954, 49.131231503000059 ], [ -122.85819791499992, 49.132026604000067 ], [ -122.859349319, 49.132018793000036 ], [ -122.859463118999898, 49.132017593000036 ], [ -122.859982793999947, 49.131788608000072 ], [ -122.860872421999886, 49.131396504000115 ], [ -122.861303751999969, 49.131278427000012 ], [ -122.861861529999942, 49.131194629000078 ], [ -122.86227633299994, 49.131199526000088 ], [ -122.863568596999983, 49.131215603000051 ], [ -122.863552702999954, 49.129439991000069 ], [ -122.864997107999969, 49.129434389000039 ], [ -122.866226876999988, 49.129441397000058 ], [ -122.866683561999977, 49.12947542700001 ], [ -122.867215356999978, 49.12948076900004 ], [ -122.867771990999955, 49.129486399000065 ], [ -122.867788104999974, 49.131933253000042 ], [ -122.86781175199998, 49.133820722000067 ], [ -122.86781223, 49.133936079000094 ], [ -122.865900262999929, 49.133916435000089 ], [ -122.864199375999959, 49.13389890100008 ], [ -122.862313481999962, 49.133879459000127 ], [ -122.859430486999898, 49.133810035000081 ], [ -122.858168331999963, 49.133779627000074 ], [ -122.857988176999982, 49.133775297000113 ], [ -122.85666113099991, 49.133743286000055 ], [ -122.856660015999964, 49.133658559000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151172197", "BldgCostT": "93240269", "sL_LossRatio": "0.687142898575945", "sL_AssetLoss": "1206765", "sL_BldgLoss": "829220", "sL_StrLoss": "390020", "sL_NStrLoss": "439200", "sL_ContLoss": "377545", "geom_point": "0101000020E61000002AECC440B2B75EC0D5EF04F3BE904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867788104999974, 49.131933253000042 ], [ -122.867771990999955, 49.129486399000065 ], [ -122.86775740899995, 49.126589059000047 ], [ -122.86783263299999, 49.126591255000058 ], [ -122.869429865999976, 49.12659354000003 ], [ -122.870631135999929, 49.126595221000109 ], [ -122.873144208999946, 49.126610529000054 ], [ -122.873372601999904, 49.126611913000033 ], [ -122.873387418999982, 49.127514291000075 ], [ -122.87305981599998, 49.127513298000025 ], [ -122.872176499999952, 49.127510609000083 ], [ -122.869723109999981, 49.127508590000033 ], [ -122.869391903999954, 49.127544011000033 ], [ -122.869365664999933, 49.127594012000046 ], [ -122.869195376999969, 49.127918504000085 ], [ -122.869202001999895, 49.12828909300007 ], [ -122.86920223599995, 49.128329885000021 ], [ -122.86920654799998, 49.129040515000035 ], [ -122.869211294999957, 49.129821108000037 ], [ -122.869210421999966, 49.130201406000076 ], [ -122.869252200999966, 49.130354004000033 ], [ -122.869372591999948, 49.130477308000096 ], [ -122.869508214999954, 49.130559590000047 ], [ -122.869707137, 49.130606413000045 ], [ -122.869757699999951, 49.130618294000094 ], [ -122.871190004999974, 49.130671603000096 ], [ -122.872133322999929, 49.130679344000058 ], [ -122.872311399999958, 49.130680815000062 ], [ -122.873421714999949, 49.130673503000018 ], [ -122.873418854999954, 49.131041910000121 ], [ -122.873419288999955, 49.132258333000053 ], [ -122.873417333999939, 49.13385764100007 ], [ -122.873416352999982, 49.133973860000083 ], [ -122.871296340999919, 49.133959082000082 ], [ -122.870026774999928, 49.133950401000035 ], [ -122.869474859999954, 49.133946640000055 ], [ -122.867899854999948, 49.133936817000098 ], [ -122.86781223, 49.133936079000094 ], [ -122.86781175199998, 49.133820722000067 ], [ -122.867788104999974, 49.131933253000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160673697", "BldgCostT": "109100269", "sL_LossRatio": "0.802357662402809", "sL_AssetLoss": "797400", "sL_BldgLoss": "639800", "sL_StrLoss": "362750", "sL_NStrLoss": "277050", "sL_ContLoss": "157600", "geom_point": "0101000020E6100000D1E33953CFB75EC06FBB5C0694904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.869211294999957, 49.129821108000037 ], [ -122.872048685999943, 49.129860397000073 ], [ -122.87209541199995, 49.128962763000125 ], [ -122.87212852499999, 49.128327391000035 ], [ -122.872176499999952, 49.127510609000083 ], [ -122.87305981599998, 49.127513298000025 ], [ -122.873387418999982, 49.127514291000075 ], [ -122.873417118999967, 49.129069510000072 ], [ -122.873431974999946, 49.129867295000039 ], [ -122.873421714999949, 49.130673503000018 ], [ -122.872311399999958, 49.130680815000062 ], [ -122.872133322999929, 49.130679344000058 ], [ -122.871190004999974, 49.130671603000096 ], [ -122.869757699999951, 49.130618294000094 ], [ -122.869707137, 49.130606413000045 ], [ -122.869508214999954, 49.130559590000047 ], [ -122.869372591999948, 49.130477308000096 ], [ -122.869252200999966, 49.130354004000033 ], [ -122.869210421999966, 49.130201406000076 ], [ -122.869211294999957, 49.129821108000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106214251", "BldgCostT": "69060001", "sL_LossRatio": "0.719094954239412", "sL_AssetLoss": "735786", "sL_BldgLoss": "529100", "sL_StrLoss": "286370", "sL_NStrLoss": "242730", "sL_ContLoss": "206686", "geom_point": "0101000020E61000001D745314B9B75EC03A16885C78904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872176499999952, 49.127510609000083 ], [ -122.87212852499999, 49.128327391000035 ], [ -122.87209541199995, 49.128962763000125 ], [ -122.872048685999943, 49.129860397000073 ], [ -122.869211294999957, 49.129821108000037 ], [ -122.86920654799998, 49.129040515000035 ], [ -122.86920223599995, 49.128329885000021 ], [ -122.869202001999895, 49.12828909300007 ], [ -122.869195376999969, 49.127918504000085 ], [ -122.869365664999933, 49.127594012000046 ], [ -122.869391903999954, 49.127544011000033 ], [ -122.869723109999981, 49.127508590000033 ], [ -122.872176499999952, 49.127510609000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "533564609", "BldgCostT": "354819346", "sL_LossRatio": "0.724907689499768", "sL_AssetLoss": "4273620", "sL_BldgLoss": "3097980", "sL_StrLoss": "1562490", "sL_NStrLoss": "1535490", "sL_ContLoss": "1175640", "geom_point": "0101000020E61000003CF5473914B85EC02250B3F6AD904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.873421714999949, 49.130673503000018 ], [ -122.873431974999946, 49.129867295000039 ], [ -122.873417118999967, 49.129069510000072 ], [ -122.873387418999982, 49.127514291000075 ], [ -122.873372601999904, 49.126611913000033 ], [ -122.874623827000022, 49.126625664000144 ], [ -122.875309407999936, 49.12663320900004 ], [ -122.875775546999989, 49.126638325000116 ], [ -122.876219987999932, 49.126643193000042 ], [ -122.876831099999904, 49.126649963000084 ], [ -122.877421896999948, 49.126656497000049 ], [ -122.877873047999969, 49.126656054000058 ], [ -122.879011199999965, 49.126654896000055 ], [ -122.879034800999989, 49.128344185000067 ], [ -122.879038108999978, 49.128538225000064 ], [ -122.879047790999948, 49.129110390000115 ], [ -122.879049389999963, 49.129222048000095 ], [ -122.879065391999958, 49.130340002000054 ], [ -122.87907411299993, 49.130966505000082 ], [ -122.879076798999947, 49.131129602000065 ], [ -122.879101508999938, 49.132661223000099 ], [ -122.879110956999952, 49.133888713 ], [ -122.879110219999916, 49.133960774000066 ], [ -122.876242696999952, 49.13395773600012 ], [ -122.87590980499999, 49.133959651000062 ], [ -122.875609164999929, 49.133961372000073 ], [ -122.875375204999955, 49.133962702000147 ], [ -122.874881742999918, 49.133965519000093 ], [ -122.873416352999982, 49.133973860000083 ], [ -122.873417333999939, 49.13385764100007 ], [ -122.873419288999955, 49.132258333000053 ], [ -122.873418854999954, 49.131041910000121 ], [ -122.873421714999949, 49.130673503000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178389667", "BldgCostT": "119121667", "sL_LossRatio": "0.826645859440885", "sL_AssetLoss": "1268790", "sL_BldgLoss": "1048840", "sL_StrLoss": "524090", "sL_NStrLoss": "524750", "sL_ContLoss": "219950", "geom_point": "0101000020E61000008C8508D559B85EC006848C367D904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879011199999965, 49.126654896000055 ], [ -122.880404308, 49.126656583000049 ], [ -122.881898319999948, 49.126665609000121 ], [ -122.881897491999936, 49.126796414000118 ], [ -122.88189179299998, 49.127681791000043 ], [ -122.881929006999925, 49.128190212000057 ], [ -122.88192970299994, 49.129978792000024 ], [ -122.881934600999983, 49.131008904000041 ], [ -122.881248151999969, 49.130999325000076 ], [ -122.880200400999954, 49.130984689000044 ], [ -122.879521226999913, 49.130973730000051 ], [ -122.87907411299993, 49.130966505000082 ], [ -122.879065391999958, 49.130340002000054 ], [ -122.879049389999963, 49.129222048000095 ], [ -122.879047790999948, 49.129110390000115 ], [ -122.879038108999978, 49.128538225000064 ], [ -122.879034800999989, 49.128344185000067 ], [ -122.879011199999965, 49.126654896000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92481863", "BldgCostT": "61816935", "sL_LossRatio": "0.675920472752878", "sL_AssetLoss": "850677", "sL_BldgLoss": "574990", "sL_StrLoss": "267100", "sL_NStrLoss": "307890", "sL_ContLoss": "275687", "geom_point": "0101000020E610000041B46F515AB85EC05FECFF14F5904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87907411299993, 49.130966505000082 ], [ -122.879521226999913, 49.130973730000051 ], [ -122.880200400999954, 49.130984689000044 ], [ -122.881248151999969, 49.130999325000076 ], [ -122.881934600999983, 49.131008904000041 ], [ -122.881918910999929, 49.13195988899999 ], [ -122.881919937999939, 49.13201393800005 ], [ -122.881940388999951, 49.133069720000066 ], [ -122.881940286, 49.133120176000048 ], [ -122.881938473999966, 49.133915744000049 ], [ -122.881937813999954, 49.133986906000082 ], [ -122.879110219999916, 49.133960774000066 ], [ -122.879110956999952, 49.133888713 ], [ -122.879101508999938, 49.132661223000099 ], [ -122.879076798999947, 49.131129602000065 ], [ -122.87907411299993, 49.130966505000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106976364", "BldgCostT": "72076936", "sL_LossRatio": "0.727537786293325", "sL_AssetLoss": "960335", "sL_BldgLoss": "698680", "sL_StrLoss": "333560", "sL_NStrLoss": "365120", "sL_ContLoss": "261655", "geom_point": "0101000020E61000000D2F1DAD89B85EC0F38DE02DAD904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.883205246999978, 49.126684594000089 ], [ -122.885543086999945, 49.126694647000107 ], [ -122.88555584, 49.127056343000092 ], [ -122.885329063999947, 49.127056170000039 ], [ -122.885268195999984, 49.12705611800002 ], [ -122.885267618999961, 49.127160013000058 ], [ -122.884575115999951, 49.128329832000105 ], [ -122.884568036999937, 49.128341809000084 ], [ -122.884566521999886, 49.128352549000077 ], [ -122.884780462999942, 49.129532497000056 ], [ -122.884785001999944, 49.129939008000079 ], [ -122.884830544999929, 49.130016146000109 ], [ -122.884882649999938, 49.130065366000082 ], [ -122.885160622999962, 49.130276649000095 ], [ -122.885145988999966, 49.130287068000058 ], [ -122.885051013999899, 49.130352451000121 ], [ -122.884988322999945, 49.130434903000079 ], [ -122.884940043999947, 49.130512314000043 ], [ -122.884906469999976, 49.130592721000063 ], [ -122.884887635000013, 49.130676061000045 ], [ -122.884796639999962, 49.130989057000079 ], [ -122.884798251999911, 49.131143719000121 ], [ -122.88480188100003, 49.131494687000099 ], [ -122.884807071999887, 49.131999434000072 ], [ -122.884822551999946, 49.133057697000062 ], [ -122.884833207999975, 49.133962649000075 ], [ -122.884832573, 49.134033836000064 ], [ -122.883265255999973, 49.134010964000019 ], [ -122.881937813999954, 49.133986906000082 ], [ -122.881938473999966, 49.133915744000049 ], [ -122.881940286, 49.133120176000048 ], [ -122.881940388999951, 49.133069720000066 ], [ -122.881919937999939, 49.13201393800005 ], [ -122.881918910999929, 49.13195988899999 ], [ -122.881934600999983, 49.131008904000041 ], [ -122.88192970299994, 49.129978792000024 ], [ -122.881929006999925, 49.128190212000057 ], [ -122.88189179299998, 49.127681791000043 ], [ -122.881897491999936, 49.126796414000118 ], [ -122.881898319999948, 49.126665609000121 ], [ -122.883205246999978, 49.126684594000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "551505970", "BldgCostT": "363795413", "sL_LossRatio": "0.769181346146433", "sL_AssetLoss": "4046692", "sL_BldgLoss": "3112640", "sL_StrLoss": "1609380", "sL_NStrLoss": "1503260", "sL_ContLoss": "934052", "geom_point": "0101000020E61000006FD29608CEB85EC0BFF9914BB1904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.888840711999975, 49.126711695000047 ], [ -122.890285480999964, 49.12671923000007 ], [ -122.890288588999965, 49.128594696000064 ], [ -122.890289104999965, 49.12891405400007 ], [ -122.890291486999942, 49.130360495000026 ], [ -122.890295017999961, 49.13252133800011 ], [ -122.890297622999967, 49.133999115000087 ], [ -122.890296957999922, 49.134063068000096 ], [ -122.890296885999931, 49.134072086000103 ], [ -122.887571451999975, 49.134054542000079 ], [ -122.884832573, 49.134033836000064 ], [ -122.884833207999975, 49.133962649000075 ], [ -122.884822551999946, 49.133057697000062 ], [ -122.884807071999887, 49.131999434000072 ], [ -122.88480188100003, 49.131494687000099 ], [ -122.884798251999911, 49.131143719000121 ], [ -122.884796639999962, 49.130989057000079 ], [ -122.884887635000013, 49.130676061000045 ], [ -122.884906469999976, 49.130592721000063 ], [ -122.884940043999947, 49.130512314000043 ], [ -122.884988322999945, 49.130434903000079 ], [ -122.885051013999899, 49.130352451000121 ], [ -122.885145988999966, 49.130287068000058 ], [ -122.885160622999962, 49.130276649000095 ], [ -122.884882649999938, 49.130065366000082 ], [ -122.884830544999929, 49.130016146000109 ], [ -122.884785001999944, 49.129939008000079 ], [ -122.884780462999942, 49.129532497000056 ], [ -122.884566521999886, 49.128352549000077 ], [ -122.884568036999937, 49.128341809000084 ], [ -122.884575115999951, 49.128329832000105 ], [ -122.885267618999961, 49.127160013000058 ], [ -122.885268195999984, 49.12705611800002 ], [ -122.885329063999947, 49.127056170000039 ], [ -122.88555584, 49.127056343000092 ], [ -122.885543086999945, 49.126694647000107 ], [ -122.886083983999953, 49.126697693000011 ], [ -122.886932988999916, 49.126702419000026 ], [ -122.887572513999885, 49.126706535000082 ], [ -122.888840711999975, 49.126711695000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "313559710", "BldgCostT": "195509523", "sL_LossRatio": "0.668747591746238", "sL_AssetLoss": "5847079", "sL_BldgLoss": "3910220", "sL_StrLoss": "1605060", "sL_NStrLoss": "2305160", "sL_ContLoss": "1936859", "geom_point": "0101000020E61000003F65777921B95EC085BBCD5DC3904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890297622999967, 49.133999115000087 ], [ -122.890295017999961, 49.13252133800011 ], [ -122.890291486999942, 49.130360495000026 ], [ -122.890289104999965, 49.12891405400007 ], [ -122.890288588999965, 49.128594696000064 ], [ -122.890285480999964, 49.12671923000007 ], [ -122.89045661899992, 49.12672060600007 ], [ -122.891664944999945, 49.126628352000075 ], [ -122.892999002999915, 49.126744489000018 ], [ -122.892570562999978, 49.126903296000066 ], [ -122.892246793999945, 49.127074162000035 ], [ -122.892141070999912, 49.127186508000143 ], [ -122.892040387999955, 49.127293461000136 ], [ -122.891944162999962, 49.127564597000095 ], [ -122.891973639999918, 49.127841172000061 ], [ -122.892025283999956, 49.127928200000035 ], [ -122.892109095999942, 49.128069442000012 ], [ -122.893025881999961, 49.128804140000071 ], [ -122.893427504999948, 49.129088778000018 ], [ -122.893554213999934, 49.129242871000024 ], [ -122.893615, 49.129418581000067 ], [ -122.893616984999966, 49.129635800000074 ], [ -122.89470428, 49.129623009000056 ], [ -122.895694581999919, 49.129604697000019 ], [ -122.896081809999941, 49.129613198000136 ], [ -122.896356820999969, 49.129658999000064 ], [ -122.896603691999971, 49.129758012000089 ], [ -122.896745513999988, 49.129871113000014 ], [ -122.896875914999939, 49.130030789000045 ], [ -122.89693528399998, 49.130167713000105 ], [ -122.897220719999964, 49.130218613000054 ], [ -122.897880029999939, 49.130336170000078 ], [ -122.897880301999976, 49.130336396000075 ], [ -122.89714739499999, 49.130335107000114 ], [ -122.897098278999977, 49.1303431320001 ], [ -122.89697432299999, 49.130363395000124 ], [ -122.896869506999963, 49.130435188000028 ], [ -122.896587912999962, 49.130754098000089 ], [ -122.896437819999974, 49.130704694000045 ], [ -122.896149323999978, 49.130655001000029 ], [ -122.895816703999941, 49.130649888000079 ], [ -122.895505405000023, 49.13069499300012 ], [ -122.895273278000019, 49.130785593000027 ], [ -122.89506619899997, 49.130911994000058 ], [ -122.894954658999922, 49.131043915000113 ], [ -122.894902606999963, 49.131105510000019 ], [ -122.894840586999962, 49.131315513000118 ], [ -122.894870805999943, 49.131889397000094 ], [ -122.894896190999958, 49.132495691000038 ], [ -122.894890998000037, 49.133229900000089 ], [ -122.896015204999941, 49.133220015000084 ], [ -122.896009917999919, 49.134017205000063 ], [ -122.893649237999981, 49.134036484000049 ], [ -122.892357832999934, 49.134035811000039 ], [ -122.891172112000021, 49.134035196000106 ], [ -122.891015777999897, 49.134078443000071 ], [ -122.890429648999955, 49.134074113000025 ], [ -122.890343839999929, 49.134072791000094 ], [ -122.890296885999931, 49.134072086000103 ], [ -122.890296957999922, 49.134063068000096 ], [ -122.890297622999967, 49.133999115000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64741667", "BldgCostT": "41491667", "sL_LossRatio": "0.690260690477481", "sL_AssetLoss": "1476080", "sL_BldgLoss": "1018880", "sL_StrLoss": "436810", "sL_NStrLoss": "582070", "sL_ContLoss": "457200", "geom_point": "0101000020E61000007925A86554B95EC032CC43856E904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896805714999942, 49.127077794000058 ], [ -122.897360697999929, 49.127074889000056 ], [ -122.89761290099996, 49.127134500000047 ], [ -122.89783021099997, 49.127266002000091 ], [ -122.897885706999929, 49.127461304000121 ], [ -122.897855292999978, 49.12787581 ], [ -122.898034203999885, 49.128418896000085 ], [ -122.898026995999928, 49.128896207000039 ], [ -122.895666313999982, 49.1289200000001 ], [ -122.895694581999919, 49.129604697000019 ], [ -122.89470428, 49.129623009000056 ], [ -122.893616984999966, 49.129635800000074 ], [ -122.893615, 49.129418581000067 ], [ -122.893554213999934, 49.129242871000024 ], [ -122.893427504999948, 49.129088778000018 ], [ -122.893025881999961, 49.128804140000071 ], [ -122.893960690999961, 49.128284200000088 ], [ -122.894729620999954, 49.127846910000073 ], [ -122.895554174000026, 49.127397602000094 ], [ -122.895900148999885, 49.127204411000044 ], [ -122.895946878999965, 49.127178304000054 ], [ -122.896319900000023, 49.127070115000016 ], [ -122.896805714999942, 49.127077794000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78985334", "BldgCostT": "53473334", "sL_LossRatio": "0.70740637183268", "sL_AssetLoss": "1895530", "sL_BldgLoss": "1340910", "sL_StrLoss": "580190", "sL_NStrLoss": "760720", "sL_ContLoss": "554620", "geom_point": "0101000020E61000009FA0F254ACB95EC0394CF22BEF904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.899559406999941, 49.133182510000033 ], [ -122.89955428899999, 49.132745299000099 ], [ -122.899496796999983, 49.132641911000022 ], [ -122.898888694999968, 49.132247709000069 ], [ -122.898045831999951, 49.13170054600009 ], [ -122.897827310999929, 49.131558690000119 ], [ -122.896587912999962, 49.130754098000089 ], [ -122.896869506999963, 49.130435188000028 ], [ -122.89697432299999, 49.130363395000124 ], [ -122.897098278999977, 49.1303431320001 ], [ -122.89714739499999, 49.130335107000114 ], [ -122.897880301999976, 49.130336396000075 ], [ -122.898045116999924, 49.130330303000079 ], [ -122.89858991199999, 49.130214499000076 ], [ -122.898857578999952, 49.130206896000075 ], [ -122.89909568299997, 49.130272294000072 ], [ -122.899542603999961, 49.130555497000039 ], [ -122.899965509999959, 49.130686610000076 ], [ -122.900943798999918, 49.130807602000083 ], [ -122.901877584999937, 49.130939896000037 ], [ -122.90203797799991, 49.131040998000074 ], [ -122.902037457999981, 49.13123192800002 ], [ -122.902035508, 49.131922999000039 ], [ -122.902037319999963, 49.132925002000086 ], [ -122.90397301299997, 49.132906908000045 ], [ -122.903975205999984, 49.131989688000033 ], [ -122.904666987, 49.131990593000118 ], [ -122.905390825999959, 49.131922301000039 ], [ -122.905437085999921, 49.13200920400002 ], [ -122.90544281199999, 49.133922298000066 ], [ -122.904381998999924, 49.133926908000078 ], [ -122.903986910999947, 49.133933502000048 ], [ -122.901480475999946, 49.133960495000046 ], [ -122.900947490999982, 49.133961293000034 ], [ -122.899545007999961, 49.133974108000089 ], [ -122.899559406999941, 49.133182510000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70245834", "BldgCostT": "45458334", "sL_LossRatio": "0.680388995170032", "sL_AssetLoss": "1616781", "sL_BldgLoss": "1100040", "sL_StrLoss": "419320", "sL_NStrLoss": "680720", "sL_ContLoss": "516741", "geom_point": "0101000020E6100000B50C1FAE68B95EC035B76366F6904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896009917999919, 49.134017205000063 ], [ -122.896015204999941, 49.133220015000084 ], [ -122.894890998000037, 49.133229900000089 ], [ -122.894896190999958, 49.132495691000038 ], [ -122.894870805999943, 49.131889397000094 ], [ -122.894840586999962, 49.131315513000118 ], [ -122.894902606999963, 49.131105510000019 ], [ -122.894954658999922, 49.131043915000113 ], [ -122.89506619899997, 49.130911994000058 ], [ -122.895273278000019, 49.130785593000027 ], [ -122.895505405000023, 49.13069499300012 ], [ -122.895816703999941, 49.130649888000079 ], [ -122.896149323999978, 49.130655001000029 ], [ -122.896437819999974, 49.130704694000045 ], [ -122.896587912999962, 49.130754098000089 ], [ -122.897827310999929, 49.131558690000119 ], [ -122.898045831999951, 49.13170054600009 ], [ -122.898888694999968, 49.132247709000069 ], [ -122.899496796999983, 49.132641911000022 ], [ -122.89955428899999, 49.132745299000099 ], [ -122.899559406999941, 49.133182510000033 ], [ -122.899545007999961, 49.133974108000089 ], [ -122.896009917999919, 49.134017205000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73451917", "BldgCostT": "47031667", "sL_LossRatio": "0.683616359722554", "sL_AssetLoss": "1463350", "sL_BldgLoss": "1000370", "sL_StrLoss": "440540", "sL_NStrLoss": "559830", "sL_ContLoss": "462980", "geom_point": "0101000020E6100000A21DE4B384B95EC0651337D94C914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900947490999982, 49.133961293000034 ], [ -122.901480475999946, 49.133960495000046 ], [ -122.901456895999956, 49.134829306000015 ], [ -122.901419886, 49.136311310000039 ], [ -122.900007907999964, 49.136321098000018 ], [ -122.896005670999941, 49.136359265000074 ], [ -122.895991988999953, 49.136359401000099 ], [ -122.895996211999929, 49.135618910000098 ], [ -122.895987303999959, 49.134890587 ], [ -122.896009917999919, 49.134017205000063 ], [ -122.899545007999961, 49.133974108000089 ], [ -122.900947490999982, 49.133961293000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81524560", "BldgCostT": "54868189", "sL_LossRatio": "0.734317498693808", "sL_AssetLoss": "1494803", "sL_BldgLoss": "1097660", "sL_StrLoss": "472380", "sL_NStrLoss": "625280", "sL_ContLoss": "397143", "geom_point": "0101000020E6100000DF8C6004C9B95EC0D690B0568A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901402791999956, 49.140126695000056 ], [ -122.901422102999931, 49.13819180800003 ], [ -122.901432086999947, 49.13752720100009 ], [ -122.901428610999957, 49.137177464000033 ], [ -122.901427246999901, 49.13704259400005 ], [ -122.90142499199996, 49.13681779400013 ], [ -122.901423540999957, 49.136673875000049 ], [ -122.901419886, 49.136311310000039 ], [ -122.901456895999956, 49.134829306000015 ], [ -122.901480475999946, 49.133960495000046 ], [ -122.903986910999947, 49.133933502000048 ], [ -122.904381998999924, 49.133926908000078 ], [ -122.904374504999936, 49.134801606000067 ], [ -122.904370218999929, 49.135627696 ], [ -122.904359385999896, 49.136658145000141 ], [ -122.904358060999982, 49.136784089000152 ], [ -122.904356602999954, 49.136923903000074 ], [ -122.904355306999918, 49.137035956000062 ], [ -122.90435344199993, 49.137197911000037 ], [ -122.904337406999929, 49.138591089000059 ], [ -122.904340202999919, 49.139393101000046 ], [ -122.904327604999978, 49.140139685000051 ], [ -122.90422241, 49.140114099000108 ], [ -122.902872106999936, 49.140121207000099 ], [ -122.901402791999956, 49.140126695000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80646417", "BldgCostT": "54176667", "sL_LossRatio": "0.72732452142206", "sL_AssetLoss": "1579680", "sL_BldgLoss": "1148940", "sL_StrLoss": "490840", "sL_NStrLoss": "658100", "sL_ContLoss": "430740", "geom_point": "0101000020E6100000040143A084B95EC0A5EA3FE7C5914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.897456711999922, 49.137490096000107 ], [ -122.89984931, 49.137487906000089 ], [ -122.900135306999971, 49.137514090000046 ], [ -122.901432086999947, 49.13752720100009 ], [ -122.901422102999931, 49.13819180800003 ], [ -122.901402791999956, 49.140126695000056 ], [ -122.898717994999942, 49.14015291000004 ], [ -122.89691538799994, 49.140161318000018 ], [ -122.895885301999925, 49.14015598500005 ], [ -122.895893789999917, 49.139043394000083 ], [ -122.895888004999946, 49.138739607000048 ], [ -122.895945601999983, 49.13853399000007 ], [ -122.896253391999963, 49.138172595000128 ], [ -122.896399602999963, 49.137891199000094 ], [ -122.896428391999947, 49.137561290000136 ], [ -122.897456711999922, 49.137490096000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408190717", "BldgCostT": "262712224", "sL_LossRatio": "0.7027975621812", "sL_AssetLoss": "5808307", "sL_BldgLoss": "4082064", "sL_StrLoss": "1812881", "sL_NStrLoss": "2269183", "sL_ContLoss": "1726243", "geom_point": "0101000020E6100000010EF49237B95EC0E8CD96838B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890302585, 49.140177692000115 ], [ -122.89029982699999, 49.137185347000077 ], [ -122.890299700999947, 49.137063589000071 ], [ -122.8902996, 49.136933471000077 ], [ -122.89029947, 49.136824983000032 ], [ -122.890296885999931, 49.134072086000103 ], [ -122.890343839999929, 49.134072791000094 ], [ -122.890429648999955, 49.134074113000025 ], [ -122.891015777999897, 49.134078443000071 ], [ -122.891172112000021, 49.134035196000106 ], [ -122.892357832999934, 49.134035811000039 ], [ -122.893649237999981, 49.134036484000049 ], [ -122.896009917999919, 49.134017205000063 ], [ -122.895987303999959, 49.134890587 ], [ -122.895996211999929, 49.135618910000098 ], [ -122.895991988999953, 49.136359401000099 ], [ -122.896005670999941, 49.136359265000074 ], [ -122.900007907999964, 49.136321098000018 ], [ -122.901419886, 49.136311310000039 ], [ -122.901423540999957, 49.136673875000049 ], [ -122.90142499199996, 49.13681779400013 ], [ -122.901427246999901, 49.13704259400005 ], [ -122.901428610999957, 49.137177464000033 ], [ -122.901432086999947, 49.13752720100009 ], [ -122.900135306999971, 49.137514090000046 ], [ -122.89984931, 49.137487906000089 ], [ -122.897456711999922, 49.137490096000107 ], [ -122.896428391999947, 49.137561290000136 ], [ -122.896399602999963, 49.137891199000094 ], [ -122.896253391999963, 49.138172595000128 ], [ -122.895945601999983, 49.13853399000007 ], [ -122.895888004999946, 49.138739607000048 ], [ -122.895893789999917, 49.139043394000083 ], [ -122.895885301999925, 49.14015598500005 ], [ -122.891427878999977, 49.140173194000099 ], [ -122.890447702999936, 49.140180111000049 ], [ -122.890357878999978, 49.140178611000039 ], [ -122.890302585, 49.140177692000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "520813872", "BldgCostT": "342691380", "sL_LossRatio": "0.796283515820597", "sL_AssetLoss": "3222508", "sL_BldgLoss": "2566030", "sL_StrLoss": "1323440", "sL_NStrLoss": "1242590", "sL_ContLoss": "656478", "geom_point": "0101000020E610000081B9E686CDB85EC03F525CD9AE914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887571451999975, 49.134054542000079 ], [ -122.890296885999931, 49.134072086000103 ], [ -122.89029947, 49.136824983000032 ], [ -122.8902996, 49.136933471000077 ], [ -122.890299700999947, 49.137063589000071 ], [ -122.89029982699999, 49.137185347000077 ], [ -122.890302585, 49.140177692000115 ], [ -122.890303280999959, 49.140792491000092 ], [ -122.890304904999965, 49.14229509700013 ], [ -122.88890829499995, 49.142277305000071 ], [ -122.8848008499999, 49.142184553000028 ], [ -122.884656920999959, 49.142181301000079 ], [ -122.884643400999934, 49.141371854000099 ], [ -122.884642921999955, 49.141344874000019 ], [ -122.884640515999976, 49.141198713000101 ], [ -122.884459296999935, 49.140179793000108 ], [ -122.88443882599995, 49.139402509000057 ], [ -122.885725009999973, 49.139430798 ], [ -122.885726402000017, 49.13873429400013 ], [ -122.885685340999885, 49.138555848000074 ], [ -122.885662676, 49.138457592000094 ], [ -122.885418186999942, 49.13817929000006 ], [ -122.885099574999984, 49.13795279600005 ], [ -122.885023228999941, 49.137898506000035 ], [ -122.884820762999965, 49.137729561000079 ], [ -122.884759404999926, 49.137619865000083 ], [ -122.88462253299997, 49.137375108000093 ], [ -122.884622452999963, 49.13733271500007 ], [ -122.884622181999958, 49.137143830000056 ], [ -122.884621824999925, 49.136909964000019 ], [ -122.884621649999957, 49.136784009000095 ], [ -122.884620254999987, 49.135839484000066 ], [ -122.884620148999915, 49.135758547000073 ], [ -122.88461958299996, 49.135372904000079 ], [ -122.884648071999976, 49.134947557000075 ], [ -122.884779666999975, 49.134557613000069 ], [ -122.884832573, 49.134033836000064 ], [ -122.887571451999975, 49.134054542000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14260834", "BldgCostT": "9363334", "sL_LossRatio": "0.677556457070427", "sL_AssetLoss": "279283", "sL_BldgLoss": "189230", "sL_StrLoss": "83500", "sL_NStrLoss": "105730", "sL_ContLoss": "90053", "geom_point": "0101000020E6100000D2697ADC79B85EC0BB7B5FE0E2914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880317222999963, 49.139315497000098 ], [ -122.881459902999964, 49.139318006000039 ], [ -122.88293699299993, 49.139359889000076 ], [ -122.88443882599995, 49.139402509000057 ], [ -122.884459296999935, 49.140179793000108 ], [ -122.883599782, 49.140163916000084 ], [ -122.88291140099993, 49.140151214000063 ], [ -122.882479747000033, 49.14012759200012 ], [ -122.882454001999989, 49.140126191000014 ], [ -122.881516304999977, 49.140132407000081 ], [ -122.880892309000032, 49.140079192000066 ], [ -122.880612100999926, 49.140007116000014 ], [ -122.88035698499999, 49.139744697000125 ], [ -122.880317222999963, 49.139315497000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91386749", "BldgCostT": "55874999", "sL_LossRatio": "0.677212024646724", "sL_AssetLoss": "1483686", "sL_BldgLoss": "1004770", "sL_StrLoss": "430680", "sL_NStrLoss": "574090", "sL_ContLoss": "478916", "geom_point": "0101000020E61000005FEFCC3E6EB85EC07F85EDA32A924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879021305999984, 49.141066489000075 ], [ -122.879033002999989, 49.139298997000061 ], [ -122.880317222999963, 49.139315497000098 ], [ -122.88035698499999, 49.139744697000125 ], [ -122.880612100999926, 49.140007116000014 ], [ -122.880892309000032, 49.140079192000066 ], [ -122.881516304999977, 49.140132407000081 ], [ -122.882454001999989, 49.140126191000014 ], [ -122.882479747000033, 49.14012759200012 ], [ -122.88291140099993, 49.140151214000063 ], [ -122.883599782, 49.140163916000084 ], [ -122.884459296999935, 49.140179793000108 ], [ -122.884640515999976, 49.141198713000101 ], [ -122.884642921999955, 49.141344874000019 ], [ -122.884643400999934, 49.141371854000099 ], [ -122.884656920999959, 49.142181301000079 ], [ -122.884658361000021, 49.142640062000083 ], [ -122.884659687999942, 49.143059902000132 ], [ -122.884659660999958, 49.143134807000116 ], [ -122.884659381999981, 49.143467625 ], [ -122.88465937199993, 49.143485610000027 ], [ -122.884658997999949, 49.143992491000049 ], [ -122.883354683999954, 49.143966404000054 ], [ -122.882095301999982, 49.143944305000055 ], [ -122.88032640599998, 49.143919203000053 ], [ -122.879069506999912, 49.143902604000047 ], [ -122.87905316299998, 49.142940169000063 ], [ -122.879047339999929, 49.142598374000031 ], [ -122.879042585999969, 49.142319462000032 ], [ -122.879037988999968, 49.142049747000058 ], [ -122.879021305999984, 49.141066489000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162780206", "BldgCostT": "109724714", "sL_LossRatio": "0.725054472261657", "sL_AssetLoss": "2023048", "sL_BldgLoss": "1466820", "sL_StrLoss": "719600", "sL_NStrLoss": "747220", "sL_ContLoss": "556228", "geom_point": "0101000020E61000000A9CF8AC63B85EC08FF5BB4D8B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879063305999949, 49.136294886000101 ], [ -122.879095579999898, 49.135649802000046 ], [ -122.879102997999951, 49.134823787000045 ], [ -122.881408402999924, 49.134874390000071 ], [ -122.881953094999915, 49.134883887000044 ], [ -122.882842909999937, 49.134956495000047 ], [ -122.883270015999969, 49.134962593000118 ], [ -122.883273493000033, 49.135667299000019 ], [ -122.883275512999916, 49.136455788000056 ], [ -122.883251034999915, 49.136774640000112 ], [ -122.883248951999946, 49.136802017000022 ], [ -122.883232172999939, 49.137020400000097 ], [ -122.88304788899994, 49.137215111000053 ], [ -122.882947989999977, 49.137355403000058 ], [ -122.882955099999961, 49.137556599000085 ], [ -122.88296290699999, 49.138462312000108 ], [ -122.88293699299993, 49.139359889000076 ], [ -122.881459902999964, 49.139318006000039 ], [ -122.880317222999963, 49.139315497000098 ], [ -122.879033002999989, 49.139298997000061 ], [ -122.879050224999972, 49.1376533030001 ], [ -122.879054292999939, 49.13722850000002 ], [ -122.879055520999913, 49.137102122000115 ], [ -122.879058028999978, 49.136841259000086 ], [ -122.879063305999949, 49.136294886000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124762584", "BldgCostT": "83858334", "sL_LossRatio": "0.822772365366612", "sL_AssetLoss": "1022239", "sL_BldgLoss": "841070", "sL_StrLoss": "432560", "sL_NStrLoss": "408510", "sL_ContLoss": "181169", "geom_point": "0101000020E61000004B051DC687B85EC0741A613874914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.883273493000033, 49.135667299000019 ], [ -122.883270015999969, 49.134962593000118 ], [ -122.882842909999937, 49.134956495000047 ], [ -122.881953094999915, 49.134883887000044 ], [ -122.881408402999924, 49.134874390000071 ], [ -122.879102997999951, 49.134823787000045 ], [ -122.879112379999967, 49.134377092000143 ], [ -122.879110219999916, 49.133960774000066 ], [ -122.881937813999954, 49.133986906000082 ], [ -122.883265255999973, 49.134010964000019 ], [ -122.884832573, 49.134033836000064 ], [ -122.884779666999975, 49.134557613000069 ], [ -122.884648071999976, 49.134947557000075 ], [ -122.88461958299996, 49.135372904000079 ], [ -122.884620148999915, 49.135758547000073 ], [ -122.884620254999987, 49.135839484000066 ], [ -122.884621649999957, 49.136784009000095 ], [ -122.884621824999925, 49.136909964000019 ], [ -122.884622181999958, 49.137143830000056 ], [ -122.884622452999963, 49.13733271500007 ], [ -122.88462253299997, 49.137375108000093 ], [ -122.884759404999926, 49.137619865000083 ], [ -122.884820762999965, 49.137729561000079 ], [ -122.885023228999941, 49.137898506000035 ], [ -122.885099574999984, 49.13795279600005 ], [ -122.885418186999942, 49.13817929000006 ], [ -122.885662676, 49.138457592000094 ], [ -122.885685340999885, 49.138555848000074 ], [ -122.885726402000017, 49.13873429400013 ], [ -122.885725009999973, 49.139430798 ], [ -122.88443882599995, 49.139402509000057 ], [ -122.88293699299993, 49.139359889000076 ], [ -122.88296290699999, 49.138462312000108 ], [ -122.882955099999961, 49.137556599000085 ], [ -122.882947989999977, 49.137355403000058 ], [ -122.88304788899994, 49.137215111000053 ], [ -122.883232172999939, 49.137020400000097 ], [ -122.883248951999946, 49.136802017000022 ], [ -122.883251034999915, 49.136774640000112 ], [ -122.883275512999916, 49.136455788000056 ], [ -122.883273493000033, 49.135667299000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49742636", "BldgCostT": "28367079", "sL_LossRatio": "0.614137607086139", "sL_AssetLoss": "715312", "sL_BldgLoss": "439300", "sL_StrLoss": "174890", "sL_NStrLoss": "264410", "sL_ContLoss": "276012", "geom_point": "0101000020E6100000ABC3FAD42BB85EC0B1B959724B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876242696999952, 49.13395773600012 ], [ -122.879110219999916, 49.133960774000066 ], [ -122.879112379999967, 49.134377092000143 ], [ -122.879102997999951, 49.134823787000045 ], [ -122.879095579999898, 49.135649802000046 ], [ -122.879063305999949, 49.136294886000101 ], [ -122.876464591999977, 49.136265508000108 ], [ -122.876341898999939, 49.136235050000082 ], [ -122.876304198999932, 49.136225706000047 ], [ -122.87627191699994, 49.136176101000096 ], [ -122.876240988999925, 49.136125589000066 ], [ -122.876244984999971, 49.13545445700003 ], [ -122.87624456199994, 49.135174139000036 ], [ -122.876242696999952, 49.13395773600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149387417", "BldgCostT": "104071667", "sL_LossRatio": "0.847064851124204", "sL_AssetLoss": "1014940", "sL_BldgLoss": "859720", "sL_StrLoss": "423360", "sL_NStrLoss": "436360", "sL_ContLoss": "155220", "geom_point": "0101000020E61000003A8B28371BB85EC007F6D2F3F2914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.873501211999965, 49.140806201000025 ], [ -122.873712173999962, 49.140676932000083 ], [ -122.873894197999903, 49.140565408000072 ], [ -122.874194687999989, 49.140264210000055 ], [ -122.874536249999963, 49.139921871000077 ], [ -122.874812503999962, 49.139645013000049 ], [ -122.874974524999985, 49.139545565000077 ], [ -122.875021203999935, 49.139516904000047 ], [ -122.875299292999955, 49.139395206000124 ], [ -122.875490694999939, 49.13934040600008 ], [ -122.876064699999958, 49.139260595000032 ], [ -122.876306536999934, 49.139261566000108 ], [ -122.877181194999977, 49.139265105000064 ], [ -122.878102362999954, 49.139281956000076 ], [ -122.879033002999989, 49.139298997000061 ], [ -122.879021305999984, 49.141066489000075 ], [ -122.876653101999963, 49.141069909000095 ], [ -122.876183896, 49.141057195000037 ], [ -122.874876537999938, 49.141049658000036 ], [ -122.874647489999958, 49.141048334000082 ], [ -122.874533789999944, 49.141047677000138 ], [ -122.874208412999977, 49.141045789000117 ], [ -122.874174387999915, 49.141045607000144 ], [ -122.874090299999978, 49.14103412500009 ], [ -122.8738553, 49.141002110000095 ], [ -122.873723746999985, 49.140929311000093 ], [ -122.873501211999965, 49.140806201000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119935832", "BldgCostT": "79803332", "sL_LossRatio": "0.698901895783694", "sL_AssetLoss": "2509780", "sL_BldgLoss": "1754090", "sL_StrLoss": "775830", "sL_NStrLoss": "978260", "sL_ContLoss": "755690", "geom_point": "0101000020E6100000ABAE4BA6EDB75EC0AC9D59F982924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870829995999927, 49.144620207000045 ], [ -122.872174593999901, 49.144638510000057 ], [ -122.872129199999989, 49.141053808000073 ], [ -122.872613802999922, 49.141021006000095 ], [ -122.87307530799994, 49.140944304000072 ], [ -122.87321589599999, 49.140898720000109 ], [ -122.873501211999965, 49.140806201000025 ], [ -122.873723746999985, 49.140929311000093 ], [ -122.8738553, 49.141002110000095 ], [ -122.874090299999978, 49.14103412500009 ], [ -122.874174387999915, 49.141045607000144 ], [ -122.874208412999977, 49.141045789000117 ], [ -122.874533789999944, 49.141047677000138 ], [ -122.874647489999958, 49.141048334000082 ], [ -122.874876537999938, 49.141049658000036 ], [ -122.876183896, 49.141057195000037 ], [ -122.876653101999963, 49.141069909000095 ], [ -122.876679408999962, 49.141840989000087 ], [ -122.87685627799999, 49.141961507000111 ], [ -122.877326291999964, 49.142126484000066 ], [ -122.877431095999967, 49.14217730900004 ], [ -122.877651601999929, 49.142383695000071 ], [ -122.877715983999948, 49.142588297000081 ], [ -122.877697277, 49.14270309700003 ], [ -122.877618681999934, 49.142853103000093 ], [ -122.877440487999976, 49.14298884600008 ], [ -122.87737029100002, 49.143042303000051 ], [ -122.877048776999914, 49.143177188000017 ], [ -122.87684150399997, 49.143305385000119 ], [ -122.876644002999953, 49.143491600000097 ], [ -122.876495485999925, 49.143723390000062 ], [ -122.876385289999945, 49.143995904000086 ], [ -122.876365097999937, 49.144337695000111 ], [ -122.876355997999923, 49.144678011000053 ], [ -122.876308923999915, 49.144808204000086 ], [ -122.87620520899992, 49.144923186000021 ], [ -122.875683805999984, 49.145238791000118 ], [ -122.875580010999897, 49.14537628900009 ], [ -122.875540018999956, 49.145542686000063 ], [ -122.875551915999964, 49.145835897000055 ], [ -122.875546274999934, 49.146632294000064 ], [ -122.87555371, 49.147440701000058 ], [ -122.875545416999955, 49.147856823000041 ], [ -122.875536407999917, 49.148309707000024 ], [ -122.874858022999931, 49.14829537400005 ], [ -122.874652087999962, 49.148291030000017 ], [ -122.874199603999955, 49.148281483000119 ], [ -122.873760837999924, 49.148272225000014 ], [ -122.873252707999924, 49.14826148600006 ], [ -122.8721313, 49.148237811000065 ], [ -122.870801110999963, 49.14820724000009 ], [ -122.870829995999927, 49.144620207000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211767833", "BldgCostT": "140738333", "sL_LossRatio": "0.707913599547222", "sL_AssetLoss": "2897670", "sL_BldgLoss": "2051300", "sL_StrLoss": "940330", "sL_NStrLoss": "1110970", "sL_ContLoss": "846370", "geom_point": "0101000020E610000009BB62252AB85EC073904A9095924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876653101999963, 49.141069909000095 ], [ -122.879021305999984, 49.141066489000075 ], [ -122.879037988999968, 49.142049747000058 ], [ -122.879042585999969, 49.142319462000032 ], [ -122.879047339999929, 49.142598374000031 ], [ -122.87905316299998, 49.142940169000063 ], [ -122.879069506999912, 49.143902604000047 ], [ -122.879065992999969, 49.144689086000106 ], [ -122.87910421399999, 49.148408689000078 ], [ -122.878134501999938, 49.148381807000099 ], [ -122.877531593999933, 49.148365066000025 ], [ -122.876969224999954, 49.148349470000092 ], [ -122.875536407999917, 49.148309707000024 ], [ -122.875545416999955, 49.147856823000041 ], [ -122.87555371, 49.147440701000058 ], [ -122.875546274999934, 49.146632294000064 ], [ -122.875551915999964, 49.145835897000055 ], [ -122.875540018999956, 49.145542686000063 ], [ -122.875580010999897, 49.14537628900009 ], [ -122.875683805999984, 49.145238791000118 ], [ -122.87620520899992, 49.144923186000021 ], [ -122.876308923999915, 49.144808204000086 ], [ -122.876355997999923, 49.144678011000053 ], [ -122.876365097999937, 49.144337695000111 ], [ -122.876385289999945, 49.143995904000086 ], [ -122.876495485999925, 49.143723390000062 ], [ -122.876644002999953, 49.143491600000097 ], [ -122.87684150399997, 49.143305385000119 ], [ -122.877048776999914, 49.143177188000017 ], [ -122.87737029100002, 49.143042303000051 ], [ -122.877440487999976, 49.14298884600008 ], [ -122.877618681999934, 49.142853103000093 ], [ -122.877697277, 49.14270309700003 ], [ -122.877715983999948, 49.142588297000081 ], [ -122.877651601999929, 49.142383695000071 ], [ -122.877431095999967, 49.14217730900004 ], [ -122.877326291999964, 49.142126484000066 ], [ -122.87685627799999, 49.141961507000111 ], [ -122.876679408999962, 49.141840989000087 ], [ -122.876653101999963, 49.141069909000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117404416", "BldgCostT": "80521666", "sL_LossRatio": "0.821610421970641", "sL_AssetLoss": "738440", "sL_BldgLoss": "606710", "sL_StrLoss": "307760", "sL_NStrLoss": "298950", "sL_ContLoss": "131730", "geom_point": "0101000020E6100000AB17B6455DB85EC0D2C643A532934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87910421399999, 49.148408689000078 ], [ -122.87990328399998, 49.148417935000033 ], [ -122.880497014999918, 49.148424788000028 ], [ -122.88185650599999, 49.14844800400008 ], [ -122.883211198999973, 49.148460213000135 ], [ -122.883195801999975, 49.148792185000097 ], [ -122.882741795999948, 49.149144004000043 ], [ -122.882700324999973, 49.149292306000063 ], [ -122.882713903999957, 49.149846884000098 ], [ -122.882686200999942, 49.150320882000081 ], [ -122.882066416999976, 49.15030560800011 ], [ -122.881290572999987, 49.150090925000036 ], [ -122.881256013999987, 49.152067998000057 ], [ -122.879101652999935, 49.152021754000039 ], [ -122.879102621999962, 49.151629750000048 ], [ -122.879103614999948, 49.151217197000072 ], [ -122.879102008999922, 49.150219698000079 ], [ -122.879102088999943, 49.150181496000123 ], [ -122.879102357999926, 49.150046571000097 ], [ -122.879103495999971, 49.149506849000069 ], [ -122.879104108999954, 49.149207907000047 ], [ -122.87910421399999, 49.148408689000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67574061", "BldgCostT": "44828190", "sL_LossRatio": "0.697035538008896", "sL_AssetLoss": "1328268", "sL_BldgLoss": "925850", "sL_StrLoss": "389090", "sL_NStrLoss": "536760", "sL_ContLoss": "402418", "geom_point": "0101000020E610000021639C5C9FB85EC06B5B49023F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.882686200999942, 49.150320882000081 ], [ -122.882713903999957, 49.149846884000098 ], [ -122.882700324999973, 49.149292306000063 ], [ -122.882741795999948, 49.149144004000043 ], [ -122.883195801999975, 49.148792185000097 ], [ -122.883211198999973, 49.148460213000135 ], [ -122.884142147999938, 49.148481446000098 ], [ -122.884683579999958, 49.148493812000069 ], [ -122.886677415999912, 49.148540704000091 ], [ -122.886705817999953, 49.14938580400009 ], [ -122.886653406, 49.150701490000067 ], [ -122.886701913999914, 49.150795708000025 ], [ -122.886703332999957, 49.151322676000049 ], [ -122.886704502999976, 49.151763484000085 ], [ -122.886705698999933, 49.15221310000004 ], [ -122.886174799999964, 49.152198693000066 ], [ -122.885504477999945, 49.152181432000113 ], [ -122.885050095999986, 49.152169699000112 ], [ -122.884503317999986, 49.152155336000135 ], [ -122.884187875999956, 49.152147057000015 ], [ -122.882683013999952, 49.152107508000043 ], [ -122.882684898999926, 49.150606487000054 ], [ -122.882686200999942, 49.150320882000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "839736425", "BldgCostT": "574515126", "sL_LossRatio": "0.814921540715024", "sL_AssetLoss": "3880484", "sL_BldgLoss": "3162290", "sL_StrLoss": "1641850", "sL_NStrLoss": "1520440", "sL_ContLoss": "718194", "geom_point": "0101000020E6100000F5AA4A32DDB85EC0E322635A40934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.888155582999971, 49.148570813000084 ], [ -122.89030949499994, 49.148600600000044 ], [ -122.890313201, 49.1514160810001 ], [ -122.890314280999974, 49.152250789000114 ], [ -122.890314295999985, 49.152259805 ], [ -122.888541513999925, 49.152226594000091 ], [ -122.886705698999933, 49.15221310000004 ], [ -122.886704502999976, 49.151763484000085 ], [ -122.886703332999957, 49.151322676000049 ], [ -122.886701913999914, 49.150795708000025 ], [ -122.886653406, 49.150701490000067 ], [ -122.886705817999953, 49.14938580400009 ], [ -122.886677415999912, 49.148540704000091 ], [ -122.888155582999971, 49.148570813000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141964594", "BldgCostT": "83923736", "sL_LossRatio": "0.625267398996704", "sL_AssetLoss": "3328827", "sL_BldgLoss": "2081407", "sL_StrLoss": "905047", "sL_NStrLoss": "1176360", "sL_ContLoss": "1247420", "geom_point": "0101000020E6100000E4666603BCB85EC01D786A05B8934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.882683013999952, 49.152107508000043 ], [ -122.884187875999956, 49.152147057000015 ], [ -122.884503317999986, 49.152155336000135 ], [ -122.885050095999986, 49.152169699000112 ], [ -122.885504477999945, 49.152181432000113 ], [ -122.886174799999964, 49.152198693000066 ], [ -122.886705698999933, 49.15221310000004 ], [ -122.888541513999925, 49.152226594000091 ], [ -122.890314295999985, 49.152259805 ], [ -122.890319084999945, 49.15598020200008 ], [ -122.888535590999979, 49.155941292000115 ], [ -122.886735802999908, 49.155899203000033 ], [ -122.886254100000016, 49.155886986000027 ], [ -122.885551573000015, 49.155870956000086 ], [ -122.884910092999974, 49.15585629400006 ], [ -122.882411097999949, 49.155795595000058 ], [ -122.882422403999911, 49.155319293000062 ], [ -122.882599009999979, 49.154934296000114 ], [ -122.882675290999927, 49.154634594000079 ], [ -122.882675514999931, 49.154565905000048 ], [ -122.882675763999899, 49.154484956000069 ], [ -122.882677500999975, 49.153918261000037 ], [ -122.882679263999961, 49.15333360400011 ], [ -122.882683013999952, 49.152107508000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137446053", "BldgCostT": "86243746", "sL_LossRatio": "0.654749428928801", "sL_AssetLoss": "4141340", "sL_BldgLoss": "2711540", "sL_StrLoss": "1155940", "sL_NStrLoss": "1555600", "sL_ContLoss": "1429800", "geom_point": "0101000020E6100000207DB4B42AB95EC014141F02BB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890319084999945, 49.15598020200008 ], [ -122.890314295999985, 49.152259805 ], [ -122.890399398999989, 49.152259931000103 ], [ -122.890447278999957, 49.152260003000031 ], [ -122.890618606999951, 49.152259398000091 ], [ -122.89326547099995, 49.152249934000132 ], [ -122.89502781, 49.152243597000101 ], [ -122.895956108999954, 49.152238899000068 ], [ -122.895961391999904, 49.152980607000046 ], [ -122.895968899999929, 49.153689911000065 ], [ -122.895990696999917, 49.154431085000056 ], [ -122.89598511199992, 49.155131010000041 ], [ -122.896740619999946, 49.155126689 ], [ -122.896745104999951, 49.155922408000066 ], [ -122.893960879999938, 49.155945697000057 ], [ -122.890465498999973, 49.155984488000122 ], [ -122.890377706999956, 49.155981920000052 ], [ -122.890319084999945, 49.15598020200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "301021937", "BldgCostT": "200751297", "sL_LossRatio": "0.747362231281921", "sL_AssetLoss": "5084790", "sL_BldgLoss": "3800180", "sL_StrLoss": "1600080", "sL_NStrLoss": "2200100", "sL_ContLoss": "1284610", "geom_point": "0101000020E61000004836A2A455B95EC0F6D114C722944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890261180999971, 49.158810209000173 ], [ -122.890287276999985, 49.157420000000108 ], [ -122.890300904999947, 49.156804223000073 ], [ -122.890319084999945, 49.15598020200008 ], [ -122.890377706999956, 49.155981920000052 ], [ -122.890465498999973, 49.155984488000122 ], [ -122.893960879999938, 49.155945697000057 ], [ -122.896745104999951, 49.155922408000066 ], [ -122.897197700999925, 49.155919211000047 ], [ -122.900127690999909, 49.155909117000064 ], [ -122.901523196999975, 49.155908695000072 ], [ -122.90162200099995, 49.156627789000048 ], [ -122.901929798999916, 49.157356586000084 ], [ -122.902143298999988, 49.158061896000042 ], [ -122.902143199999941, 49.159564792000054 ], [ -122.901044297999931, 49.159556613000134 ], [ -122.901043010999956, 49.15807531100009 ], [ -122.900031485999989, 49.158071412 ], [ -122.897298287999931, 49.158068315000065 ], [ -122.894496411999981, 49.158086597000086 ], [ -122.894212011999983, 49.158137897000103 ], [ -122.89390238499999, 49.158256901000044 ], [ -122.891749592999972, 49.159086799000093 ], [ -122.89168011799994, 49.159141498000075 ], [ -122.891664507999977, 49.159579883000056 ], [ -122.890445511999985, 49.159583396000123 ], [ -122.890382678999927, 49.159584159000133 ], [ -122.890246586000018, 49.159585793000048 ], [ -122.890261180999971, 49.158810209000173 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57033667", "BldgCostT": "37446667", "sL_LossRatio": "0.69387724795438", "sL_AssetLoss": "1346780", "sL_BldgLoss": "934500", "sL_StrLoss": "377020", "sL_NStrLoss": "557480", "sL_ContLoss": "412280", "geom_point": "0101000020E6100000256738D089B95EC01215811CDA934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896745104999951, 49.155922408000066 ], [ -122.896740619999946, 49.155126689 ], [ -122.89598511199992, 49.155131010000041 ], [ -122.895990696999917, 49.154431085000056 ], [ -122.900083398999953, 49.15441479000004 ], [ -122.900084625, 49.15410850500011 ], [ -122.90150268099994, 49.154118695000058 ], [ -122.901523196999975, 49.155908695000072 ], [ -122.900127690999909, 49.155909117000064 ], [ -122.897197700999925, 49.155919211000047 ], [ -122.896745104999951, 49.155922408000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80796583", "BldgCostT": "53248333", "sL_LossRatio": "0.703472355220318", "sL_AssetLoss": "2036370", "sL_BldgLoss": "1432530", "sL_StrLoss": "604100", "sL_NStrLoss": "828430", "sL_ContLoss": "603840", "geom_point": "0101000020E610000071E8E39083B95EC0A1927C1D9F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.898446420999946, 49.152242196000017 ], [ -122.901477217999954, 49.152217804000024 ], [ -122.901486262999953, 49.152892699000063 ], [ -122.90150268099994, 49.154118695000058 ], [ -122.900084625, 49.15410850500011 ], [ -122.900083398999953, 49.15441479000004 ], [ -122.895990696999917, 49.154431085000056 ], [ -122.895968899999929, 49.153689911000065 ], [ -122.895961391999904, 49.152980607000046 ], [ -122.895956108999954, 49.152238899000068 ], [ -122.898446420999946, 49.152242196000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "340378447", "BldgCostT": "221222300", "sL_LossRatio": "0.716266662624946", "sL_AssetLoss": "6597850", "sL_BldgLoss": "4725820", "sL_StrLoss": "1937980", "sL_NStrLoss": "2787840", "sL_ContLoss": "1872030", "geom_point": "0101000020E6100000593DA23A44B95EC08339C5D340934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89030949499994, 49.148600600000044 ], [ -122.890380215999926, 49.148601277000054 ], [ -122.890446501999975, 49.148601896000045 ], [ -122.890613258999949, 49.14860130600006 ], [ -122.892464415999981, 49.148594839000054 ], [ -122.893646186999959, 49.148590700000071 ], [ -122.894192294999954, 49.148592774000072 ], [ -122.895872818999962, 49.148599101000102 ], [ -122.898665889999933, 49.148600298000076 ], [ -122.898591213999978, 49.148692790000055 ], [ -122.89859938699999, 49.149639096000058 ], [ -122.89917449499994, 49.149646591000106 ], [ -122.899525784999952, 49.149578402000031 ], [ -122.900062582999951, 49.149585697000091 ], [ -122.900073917999961, 49.15040421000004 ], [ -122.9000627, 49.151230111000089 ], [ -122.898463577999962, 49.151223596000108 ], [ -122.898446420999946, 49.152242196000017 ], [ -122.895956108999954, 49.152238899000068 ], [ -122.89502781, 49.152243597000101 ], [ -122.89326547099995, 49.152249934000132 ], [ -122.890618606999951, 49.152259398000091 ], [ -122.890447278999957, 49.152260003000031 ], [ -122.890399398999989, 49.152259931000103 ], [ -122.890314295999985, 49.152259805 ], [ -122.890314280999974, 49.152250789000114 ], [ -122.890313201, 49.1514160810001 ], [ -122.89030949499994, 49.148600600000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164024500", "BldgCostT": "103180000", "sL_LossRatio": "0.682679231104298", "sL_AssetLoss": "3007430", "sL_BldgLoss": "2053110", "sL_StrLoss": "918530", "sL_NStrLoss": "1134580", "sL_ContLoss": "954320", "geom_point": "0101000020E6100000989F6D98D5B95EC04D590BBB41934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900073917999961, 49.15040421000004 ], [ -122.900062582999951, 49.149585697000091 ], [ -122.899525784999952, 49.149578402000031 ], [ -122.89917449499994, 49.149646591000106 ], [ -122.89859938699999, 49.149639096000058 ], [ -122.898591213999978, 49.148692790000055 ], [ -122.898665889999933, 49.148600298000076 ], [ -122.901433606999959, 49.148612514000114 ], [ -122.904167295999983, 49.148621800000065 ], [ -122.904984280999969, 49.148624953000123 ], [ -122.905587708999988, 49.148627290000022 ], [ -122.906992675999959, 49.148632694000106 ], [ -122.908081599999917, 49.148643308000054 ], [ -122.908095994999925, 49.149456413000031 ], [ -122.908078694999944, 49.150458697000097 ], [ -122.908085192999948, 49.151475310000059 ], [ -122.908622700999942, 49.151492505000071 ], [ -122.908618498999942, 49.15221590900007 ], [ -122.90696669, 49.152218002000048 ], [ -122.901477217999954, 49.152217804000024 ], [ -122.898446420999946, 49.152242196000017 ], [ -122.898463577999962, 49.151223596000108 ], [ -122.9000627, 49.151230111000089 ], [ -122.900073917999961, 49.15040421000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101961001", "BldgCostT": "66960001", "sL_LossRatio": "0.692207155693514", "sL_AssetLoss": "2203560", "sL_BldgLoss": "1525320", "sL_StrLoss": "650830", "sL_NStrLoss": "874490", "sL_ContLoss": "678240", "geom_point": "0101000020E61000001C12BDADB0B95EC0F2440005D1924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901434694999963, 49.145963483000052 ], [ -122.901397700999965, 49.144112703000133 ], [ -122.902711024999974, 49.144084694000057 ], [ -122.902673899999982, 49.144868396000035 ], [ -122.904215979999933, 49.144843401000038 ], [ -122.904199617999922, 49.147045005000045 ], [ -122.90419250799999, 49.147687199000124 ], [ -122.904183559999979, 49.148018934000063 ], [ -122.904167295999983, 49.148621800000065 ], [ -122.901433606999959, 49.148612514000114 ], [ -122.898665889999933, 49.148600298000076 ], [ -122.895872818999962, 49.148599101000102 ], [ -122.895882396999951, 49.147694686000115 ], [ -122.897266989999949, 49.147690493000034 ], [ -122.898670977999956, 49.147702198000083 ], [ -122.900211875999958, 49.147716797000072 ], [ -122.900205599999978, 49.147296784000076 ], [ -122.900061385999948, 49.146787089000092 ], [ -122.900040415999982, 49.145971098000132 ], [ -122.901434694999963, 49.145963483000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85839999", "BldgCostT": "54834999", "sL_LossRatio": "0.683006940604565", "sL_AssetLoss": "1873612", "sL_BldgLoss": "1279690", "sL_StrLoss": "550560", "sL_NStrLoss": "729130", "sL_ContLoss": "593922", "geom_point": "0101000020E610000001F1997098B95EC06C4B578F7F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89998749399993, 49.141974488000123 ], [ -122.901405371999914, 49.141980203000102 ], [ -122.901397700999965, 49.144112703000133 ], [ -122.901434694999963, 49.145963483000052 ], [ -122.900040415999982, 49.145971098000132 ], [ -122.900061385999948, 49.146787089000092 ], [ -122.900205599999978, 49.147296784000076 ], [ -122.900211875999958, 49.147716797000072 ], [ -122.898670977999956, 49.147702198000083 ], [ -122.898703990999977, 49.14326019600005 ], [ -122.898708492999944, 49.141960094000055 ], [ -122.89998749399993, 49.141974488000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113298833", "BldgCostT": "73418333", "sL_LossRatio": "0.689417694180037", "sL_AssetLoss": "2326166", "sL_BldgLoss": "1603700", "sL_StrLoss": "675890", "sL_NStrLoss": "927810", "sL_ContLoss": "722466", "geom_point": "0101000020E61000001D477A8B66B95EC093BB8DD57F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89691538799994, 49.140161318000018 ], [ -122.898717994999942, 49.14015291000004 ], [ -122.898708492999944, 49.141960094000055 ], [ -122.898703990999977, 49.14326019600005 ], [ -122.898670977999956, 49.147702198000083 ], [ -122.897266989999949, 49.147690493000034 ], [ -122.895882396999951, 49.147694686000115 ], [ -122.895872818999962, 49.148599101000102 ], [ -122.894192294999954, 49.148592774000072 ], [ -122.893646186999959, 49.148590700000071 ], [ -122.893642596999925, 49.14772111900006 ], [ -122.894485316999976, 49.147722906000077 ], [ -122.894499890999967, 49.147115093000103 ], [ -122.894513502, 49.146992997000012 ], [ -122.894446823999928, 49.146658601000091 ], [ -122.894465396999976, 49.145866189000039 ], [ -122.89589070000001, 49.145866798000093 ], [ -122.895866993999974, 49.144435284000075 ], [ -122.895885301999925, 49.14015598500005 ], [ -122.89691538799994, 49.140161318000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183000873", "BldgCostT": "123558706", "sL_LossRatio": "0.746980546993584", "sL_AssetLoss": "3221610", "sL_BldgLoss": "2406480", "sL_StrLoss": "1020020", "sL_NStrLoss": "1386460", "sL_ContLoss": "815130", "geom_point": "0101000020E61000009590AB0534B95EC07FB572484D924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891427878999977, 49.140173194000099 ], [ -122.895885301999925, 49.14015598500005 ], [ -122.895866993999974, 49.144435284000075 ], [ -122.89589070000001, 49.145866798000093 ], [ -122.894465396999976, 49.145866189000039 ], [ -122.893096593999957, 49.145860998000096 ], [ -122.8917662, 49.145855891000068 ], [ -122.891764788999936, 49.144954788000057 ], [ -122.891766283999914, 49.144172793000081 ], [ -122.891762687999986, 49.14320230000002 ], [ -122.891889297999938, 49.142167896000089 ], [ -122.891798481999928, 49.141804001000018 ], [ -122.891535286999954, 49.140964698000055 ], [ -122.891431812999926, 49.140565289000037 ], [ -122.891427878999977, 49.140173194000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218784624", "BldgCostT": "136702722", "sL_LossRatio": "0.636873005809248", "sL_AssetLoss": "3880020", "sL_BldgLoss": "2471080", "sL_StrLoss": "1041460", "sL_NStrLoss": "1429620", "sL_ContLoss": "1408940", "geom_point": "0101000020E6100000942ADF3312B95EC0D907940B9D924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890309479999985, 49.148591585000126 ], [ -122.890306778999957, 49.144857412000079 ], [ -122.890306233999979, 49.144130348000026 ], [ -122.890304904999965, 49.14229509700013 ], [ -122.890303280999959, 49.140792491000092 ], [ -122.890302585, 49.140177692000115 ], [ -122.890357878999978, 49.140178611000039 ], [ -122.890447702999936, 49.140180111000049 ], [ -122.891427878999977, 49.140173194000099 ], [ -122.891431812999926, 49.140565289000037 ], [ -122.891535286999954, 49.140964698000055 ], [ -122.891798481999928, 49.141804001000018 ], [ -122.891889297999938, 49.142167896000089 ], [ -122.891762687999986, 49.14320230000002 ], [ -122.891766283999914, 49.144172793000081 ], [ -122.891764788999936, 49.144954788000057 ], [ -122.8917662, 49.145855891000068 ], [ -122.893096593999957, 49.145860998000096 ], [ -122.894465396999976, 49.145866189000039 ], [ -122.894446823999928, 49.146658601000091 ], [ -122.894513502, 49.146992997000012 ], [ -122.894499890999967, 49.147115093000103 ], [ -122.894485316999976, 49.147722906000077 ], [ -122.893642596999925, 49.14772111900006 ], [ -122.893646186999959, 49.148590700000071 ], [ -122.892464415999981, 49.148594839000054 ], [ -122.890613258999949, 49.14860130600006 ], [ -122.890446501999975, 49.148601896000045 ], [ -122.890380215999926, 49.148601277000054 ], [ -122.89030949499994, 49.148600600000044 ], [ -122.890309479999985, 49.148591585000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105604583", "BldgCostT": "69353333", "sL_LossRatio": "0.725031047153264", "sL_AssetLoss": "859177", "sL_BldgLoss": "622930", "sL_StrLoss": "311370", "sL_NStrLoss": "311560", "sL_ContLoss": "236247", "geom_point": "0101000020E61000008B4BC075E6B85EC075BFA7C5A2924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887503006999964, 49.144908203000071 ], [ -122.887494182999916, 49.144466400000042 ], [ -122.88753056099992, 49.144297400000042 ], [ -122.887553888999904, 49.14418889500007 ], [ -122.887613785999989, 49.14409292200007 ], [ -122.887734997999928, 49.143898618000037 ], [ -122.888014600999924, 49.143652599000085 ], [ -122.888659588999957, 49.143229691000101 ], [ -122.888817611999912, 49.143018006000041 ], [ -122.888855437999922, 49.142895841000048 ], [ -122.888910305999943, 49.142718890000033 ], [ -122.88890829499995, 49.142277305000071 ], [ -122.890304904999965, 49.14229509700013 ], [ -122.890306233999979, 49.144130348000026 ], [ -122.890306778999957, 49.144857412000079 ], [ -122.890309479999985, 49.148591585000126 ], [ -122.89030949499994, 49.148600600000044 ], [ -122.888155582999971, 49.148570813000084 ], [ -122.888032187999983, 49.147793300000018 ], [ -122.887950404999955, 49.147480088000037 ], [ -122.887499301999981, 49.146437995000049 ], [ -122.887500573999944, 49.145908178000127 ], [ -122.887503006999964, 49.144908203000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149471311", "BldgCostT": "96078190", "sL_LossRatio": "0.739514968457417", "sL_AssetLoss": "2137428", "sL_BldgLoss": "1580660", "sL_StrLoss": "655020", "sL_NStrLoss": "925640", "sL_ContLoss": "556768", "geom_point": "0101000020E61000000654B593B7B85EC0B7738A23C9924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.884665906999956, 49.144747683000126 ], [ -122.88538330199998, 49.144777131000062 ], [ -122.885565199999974, 49.14478460100004 ], [ -122.886374, 49.144883700000037 ], [ -122.887503006999964, 49.144908203000071 ], [ -122.887500573999944, 49.145908178000127 ], [ -122.887499301999981, 49.146437995000049 ], [ -122.887950404999955, 49.147480088000037 ], [ -122.888032187999983, 49.147793300000018 ], [ -122.888155582999971, 49.148570813000084 ], [ -122.886677415999912, 49.148540704000091 ], [ -122.884683579999958, 49.148493812000069 ], [ -122.884672814999973, 49.146211070000085 ], [ -122.884665906999956, 49.144747683000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187703469", "BldgCostT": "125925412", "sL_LossRatio": "0.76535766548227", "sL_AssetLoss": "1730276", "sL_BldgLoss": "1324280", "sL_StrLoss": "581200", "sL_NStrLoss": "743080", "sL_ContLoss": "405996", "geom_point": "0101000020E6100000FC25EA1EBCB85EC0410DF85F5B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.884665906999956, 49.144747683000126 ], [ -122.884658997999949, 49.143992491000049 ], [ -122.88465937199993, 49.143485610000027 ], [ -122.884659381999981, 49.143467625 ], [ -122.884659660999958, 49.143134807000116 ], [ -122.884659687999942, 49.143059902000132 ], [ -122.884658361000021, 49.142640062000083 ], [ -122.884656920999959, 49.142181301000079 ], [ -122.8848008499999, 49.142184553000028 ], [ -122.88890829499995, 49.142277305000071 ], [ -122.888910305999943, 49.142718890000033 ], [ -122.888855437999922, 49.142895841000048 ], [ -122.888817611999912, 49.143018006000041 ], [ -122.888659588999957, 49.143229691000101 ], [ -122.888014600999924, 49.143652599000085 ], [ -122.887734997999928, 49.143898618000037 ], [ -122.887613785999989, 49.14409292200007 ], [ -122.887553888999904, 49.14418889500007 ], [ -122.88753056099992, 49.144297400000042 ], [ -122.887494182999916, 49.144466400000042 ], [ -122.887503006999964, 49.144908203000071 ], [ -122.886374, 49.144883700000037 ], [ -122.885565199999974, 49.14478460100004 ], [ -122.88538330199998, 49.144777131000062 ], [ -122.884665906999956, 49.144747683000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92420583", "BldgCostT": "61353333", "sL_LossRatio": "0.718339939758686", "sL_AssetLoss": "1723070", "sL_BldgLoss": "1237750", "sL_StrLoss": "537840", "sL_NStrLoss": "699910", "sL_ContLoss": "485320", "geom_point": "0101000020E6100000FE957418BCB95EC0C50005EE2B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.902673899999982, 49.144868396000035 ], [ -122.902711024999974, 49.144084694000057 ], [ -122.901397700999965, 49.144112703000133 ], [ -122.901405371999914, 49.141980203000102 ], [ -122.89998749399993, 49.141974488000123 ], [ -122.898708492999944, 49.141960094000055 ], [ -122.898717994999942, 49.14015291000004 ], [ -122.901402791999956, 49.140126695000056 ], [ -122.902872106999936, 49.140121207000099 ], [ -122.90422241, 49.140114099000108 ], [ -122.904327604999978, 49.140139685000051 ], [ -122.904281707999971, 49.142310708000103 ], [ -122.904273980999946, 49.143147592000034 ], [ -122.904215979999933, 49.144843401000038 ], [ -122.902673899999982, 49.144868396000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104556250", "BldgCostT": "70165000", "sL_LossRatio": "0.704745569751119", "sL_AssetLoss": "2408499", "sL_BldgLoss": "1697379", "sL_StrLoss": "725829", "sL_NStrLoss": "971550", "sL_ContLoss": "711120", "geom_point": "0101000020E610000034512A6502BA5EC025A4FB5A93924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905528300999919, 49.147117515000083 ], [ -122.905218084999959, 49.147042801000119 ], [ -122.904199617999922, 49.147045005000045 ], [ -122.904215979999933, 49.144843401000038 ], [ -122.904273980999946, 49.143147592000034 ], [ -122.905530706999954, 49.143126 ], [ -122.906740793999973, 49.143105909000077 ], [ -122.908208303999984, 49.143128187000123 ], [ -122.909574898999978, 49.143102588000026 ], [ -122.90957149499999, 49.143340409000047 ], [ -122.909234677999947, 49.143830788000074 ], [ -122.90874558199999, 49.144529402000053 ], [ -122.908235108999961, 49.145261704000049 ], [ -122.907579432999938, 49.146197909000108 ], [ -122.907560192999981, 49.146961394000137 ], [ -122.907575703999939, 49.147284504 ], [ -122.907746319999916, 49.147501101000103 ], [ -122.907751403999939, 49.147733695000078 ], [ -122.906498804999956, 49.14777429100009 ], [ -122.906008400999937, 49.147770994000069 ], [ -122.905821443999912, 49.147735401000062 ], [ -122.905534687999989, 49.147680804000082 ], [ -122.905347409999976, 49.147570907000038 ], [ -122.905315292999916, 49.147435707000049 ], [ -122.905528300999919, 49.147117515000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242490500", "BldgCostT": "155060000", "sL_LossRatio": "0.718481199961794", "sL_AssetLoss": "3214169", "sL_BldgLoss": "2309320", "sL_StrLoss": "1048240", "sL_NStrLoss": "1261080", "sL_ContLoss": "904849", "geom_point": "0101000020E6100000BFBF0F4134BA5EC0C46647AAEF914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.90957149499999, 49.143340409000047 ], [ -122.909574898999978, 49.143102588000026 ], [ -122.908208303999984, 49.143128187000123 ], [ -122.906740793999973, 49.143105909000077 ], [ -122.905530706999954, 49.143126 ], [ -122.904273980999946, 49.143147592000034 ], [ -122.904281707999971, 49.142310708000103 ], [ -122.904327604999978, 49.140139685000051 ], [ -122.904340202999919, 49.139393101000046 ], [ -122.908264661999937, 49.139359748000039 ], [ -122.908693419999963, 49.139356096000036 ], [ -122.90879491, 49.139312190000041 ], [ -122.908847292999951, 49.139245198000019 ], [ -122.908857693999934, 49.137790311000067 ], [ -122.908873529999951, 49.13734660500004 ], [ -122.908842493999956, 49.137152886000067 ], [ -122.908824385999949, 49.137135330000085 ], [ -122.908694629999928, 49.137009379000077 ], [ -122.908488475999945, 49.136809287000084 ], [ -122.908460239999954, 49.136751693000058 ], [ -122.908406517999964, 49.136642096000038 ], [ -122.908404912999941, 49.136589458000138 ], [ -122.908373389999966, 49.135551785000075 ], [ -122.908398009999985, 49.134769512000055 ], [ -122.908397893999961, 49.133905411000107 ], [ -122.909055801999926, 49.133898422000122 ], [ -122.909809582999941, 49.133890421000075 ], [ -122.910303200999934, 49.133885159000087 ], [ -122.910508743, 49.133882991000085 ], [ -122.910939879999958, 49.133878393000046 ], [ -122.912640024, 49.133860510000048 ], [ -122.912646796999979, 49.134687894000088 ], [ -122.912533391999929, 49.134745011000049 ], [ -122.911505485999967, 49.134748791000064 ], [ -122.911481912999974, 49.136817808000075 ], [ -122.912646479999964, 49.136818793000046 ], [ -122.912648006999945, 49.137276398000033 ], [ -122.912648899999937, 49.137546251000089 ], [ -122.91265, 49.137879067000078 ], [ -122.912651518999951, 49.138333593000056 ], [ -122.912630995999947, 49.138909590000054 ], [ -122.912627627999925, 49.139306886000064 ], [ -122.912627153999907, 49.139363250000017 ], [ -122.912600393999952, 49.142509181000058 ], [ -122.912598583999966, 49.144497702000102 ], [ -122.912589351999927, 49.14485947500004 ], [ -122.91257711499992, 49.145337690000119 ], [ -122.911479723999946, 49.145354001000094 ], [ -122.910324811999914, 49.14536769100004 ], [ -122.908792996999978, 49.145362399000078 ], [ -122.908467590999948, 49.145330590000057 ], [ -122.908235108999961, 49.145261704000049 ], [ -122.90874558199999, 49.144529402000053 ], [ -122.909234677999947, 49.143830788000074 ], [ -122.90957149499999, 49.143340409000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139704500", "BldgCostT": "91190000", "sL_LossRatio": "0.73997678461463", "sL_AssetLoss": "1834990", "sL_BldgLoss": "1357850", "sL_StrLoss": "634940", "sL_NStrLoss": "722910", "sL_ContLoss": "477140", "geom_point": "0101000020E6100000609C8DCF03BA5EC0AF9A522480914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905875657999928, 49.133919834000032 ], [ -122.908397893999961, 49.133905411000107 ], [ -122.908398009999985, 49.134769512000055 ], [ -122.908373389999966, 49.135551785000075 ], [ -122.908404912999941, 49.136589458000138 ], [ -122.908406517999964, 49.136642096000038 ], [ -122.908460239999954, 49.136751693000058 ], [ -122.908488475999945, 49.136809287000084 ], [ -122.908694629999928, 49.137009379000077 ], [ -122.908824385999949, 49.137135330000085 ], [ -122.908842493999956, 49.137152886000067 ], [ -122.908873529999951, 49.13734660500004 ], [ -122.908857693999934, 49.137790311000067 ], [ -122.908847292999951, 49.139245198000019 ], [ -122.90879491, 49.139312190000041 ], [ -122.908693419999963, 49.139356096000036 ], [ -122.908264661999937, 49.139359748000039 ], [ -122.904340202999919, 49.139393101000046 ], [ -122.904337406999929, 49.138591089000059 ], [ -122.90435344199993, 49.137197911000037 ], [ -122.904355306999918, 49.137035956000062 ], [ -122.904356602999954, 49.136923903000074 ], [ -122.904358060999982, 49.136784089000152 ], [ -122.904359385999896, 49.136658145000141 ], [ -122.904370218999929, 49.135627696 ], [ -122.904374504999936, 49.134801606000067 ], [ -122.904381998999924, 49.133926908000078 ], [ -122.90544281199999, 49.133922298000066 ], [ -122.905875657999928, 49.133919834000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112823561", "BldgCostT": "76978190", "sL_LossRatio": "0.742280625272467", "sL_AssetLoss": "1605700", "sL_BldgLoss": "1191880", "sL_StrLoss": "533420", "sL_NStrLoss": "658460", "sL_ContLoss": "413820", "geom_point": "0101000020E61000005F85EF5887BA5EC03936C84531924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912600393999952, 49.142509181000058 ], [ -122.912627153999907, 49.139363250000017 ], [ -122.912627627999925, 49.139306886000064 ], [ -122.912630995999947, 49.138909590000054 ], [ -122.912651518999951, 49.138333593000056 ], [ -122.913713075999979, 49.138337895000056 ], [ -122.913740087999955, 49.138756711000084 ], [ -122.91374600599994, 49.139453393000096 ], [ -122.913750196999928, 49.140153588000075 ], [ -122.914754896999909, 49.14014999699999 ], [ -122.915022396999944, 49.140207184000126 ], [ -122.915142512999978, 49.14029799300004 ], [ -122.915193503999944, 49.140396789000107 ], [ -122.915192883999936, 49.140880596000052 ], [ -122.915186506999973, 49.141556196000103 ], [ -122.916588496999964, 49.141573914000091 ], [ -122.917374292999909, 49.141564904000084 ], [ -122.917604201999936, 49.141611087000037 ], [ -122.917672515999953, 49.141780599000057 ], [ -122.917662291999989, 49.14265878599999 ], [ -122.917602698999971, 49.142812994000039 ], [ -122.917456892999908, 49.142945809000025 ], [ -122.917170003999956, 49.143035806000078 ], [ -122.916736294999936, 49.143066587000057 ], [ -122.916386576999912, 49.143194389000016 ], [ -122.916538001999925, 49.143473601000046 ], [ -122.916543794999953, 49.143757593000025 ], [ -122.916608487999923, 49.143918908000011 ], [ -122.916920591999926, 49.144317095000083 ], [ -122.916713912999967, 49.144396694000093 ], [ -122.916478688999959, 49.144430501000059 ], [ -122.916379530999961, 49.144429565000088 ], [ -122.916126758999951, 49.144427168000071 ], [ -122.914787190999959, 49.144414499000078 ], [ -122.913869602999952, 49.144406192000076 ], [ -122.913411394, 49.144496710000062 ], [ -122.912598583999966, 49.144497702000102 ], [ -122.912600393999952, 49.142509181000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89219250", "BldgCostT": "60795000", "sL_LossRatio": "0.738276454701694", "sL_AssetLoss": "1466280", "sL_BldgLoss": "1082520", "sL_StrLoss": "487580", "sL_NStrLoss": "594940", "sL_ContLoss": "383760", "geom_point": "0101000020E61000008EC803D3A1BA5EC06CD2C842CF914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.915022396999944, 49.140207184000126 ], [ -122.914754896999909, 49.14014999699999 ], [ -122.913750196999928, 49.140153588000075 ], [ -122.91374600599994, 49.139453393000096 ], [ -122.913740087999955, 49.138756711000084 ], [ -122.913713075999979, 49.138337895000056 ], [ -122.913725696999975, 49.137797591000037 ], [ -122.913801494999959, 49.137687192000101 ], [ -122.914155501999971, 49.137453209000086 ], [ -122.91486509899994, 49.137186109000019 ], [ -122.915549819999967, 49.136944404000111 ], [ -122.915750500999962, 49.137017702000051 ], [ -122.915988394999928, 49.137149806000075 ], [ -122.916158, 49.137319583000099 ], [ -122.916271699999967, 49.137526391000051 ], [ -122.916727518999934, 49.137410704000054 ], [ -122.916948393999945, 49.137384590000167 ], [ -122.917322392999935, 49.137385390000077 ], [ -122.917319701999986, 49.138357503000059 ], [ -122.917705216999934, 49.13837120200003 ], [ -122.917829612999967, 49.138417093000079 ], [ -122.918771125999953, 49.139820900000124 ], [ -122.919317398999965, 49.140614095000032 ], [ -122.918994807999951, 49.140726498000078 ], [ -122.918593007999959, 49.140793386000027 ], [ -122.916723616999931, 49.140879499000164 ], [ -122.916250884999897, 49.140879409000028 ], [ -122.915192883999936, 49.140880596000052 ], [ -122.915193503999944, 49.140396789000107 ], [ -122.915142512999978, 49.14029799300004 ], [ -122.915022396999944, 49.140207184000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126864167", "BldgCostT": "85546667", "sL_LossRatio": "0.746995376253327", "sL_AssetLoss": "1725008", "sL_BldgLoss": "1288573", "sL_StrLoss": "594645", "sL_NStrLoss": "693928", "sL_ContLoss": "436435", "geom_point": "0101000020E6100000A14F6011AEBA5EC08452C59E87914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91778531099996, 49.137431111000119 ], [ -122.917585094999964, 49.137391994000076 ], [ -122.917322392999935, 49.137385390000077 ], [ -122.916948393999945, 49.137384590000167 ], [ -122.916727518999934, 49.137410704000054 ], [ -122.916271699999967, 49.137526391000051 ], [ -122.916158, 49.137319583000099 ], [ -122.915988394999928, 49.137149806000075 ], [ -122.915750500999962, 49.137017702000051 ], [ -122.915549819999967, 49.136944404000111 ], [ -122.91486509899994, 49.137186109000019 ], [ -122.914155501999971, 49.137453209000086 ], [ -122.913801494999959, 49.137687192000101 ], [ -122.913725696999975, 49.137797591000037 ], [ -122.913713075999979, 49.138337895000056 ], [ -122.912651518999951, 49.138333593000056 ], [ -122.91265, 49.137879067000078 ], [ -122.912648899999937, 49.137546251000089 ], [ -122.912648006999945, 49.137276398000033 ], [ -122.912646479999964, 49.136818793000046 ], [ -122.911481912999974, 49.136817808000075 ], [ -122.911505485999967, 49.134748791000064 ], [ -122.912533391999929, 49.134745011000049 ], [ -122.912646796999979, 49.134687894000088 ], [ -122.912640024, 49.133860510000048 ], [ -122.914196489999981, 49.133839396000049 ], [ -122.916283281999981, 49.133878491000054 ], [ -122.917347588999959, 49.13390448800007 ], [ -122.918175807999944, 49.133914692000104 ], [ -122.918584017999962, 49.133920202000105 ], [ -122.9192971, 49.133929801000129 ], [ -122.919353677999936, 49.133930546000109 ], [ -122.919314362999955, 49.134120852000102 ], [ -122.919278815999931, 49.134292904000098 ], [ -122.919254245999966, 49.134411829000051 ], [ -122.919032137999963, 49.135486749000059 ], [ -122.919160434999938, 49.13622611200006 ], [ -122.919223436999957, 49.136454164000071 ], [ -122.919357200999926, 49.136938709000034 ], [ -122.919803111999897, 49.137971870000094 ], [ -122.921494222999982, 49.140455898000091 ], [ -122.922448809999977, 49.141532692000062 ], [ -122.923443697, 49.142422038000106 ], [ -122.92397137899998, 49.142841842000117 ], [ -122.923971279999975, 49.142841994000023 ], [ -122.923970929999953, 49.142842494000035 ], [ -122.9236419699999, 49.143313972000122 ], [ -122.923641923999952, 49.143314134000107 ], [ -122.923510742999909, 49.144374520000106 ], [ -122.923451802000017, 49.144300407000067 ], [ -122.922582805000019, 49.143369992000068 ], [ -122.922104904999955, 49.142909405000054 ], [ -122.92138712299996, 49.14207620800002 ], [ -122.920867192999935, 49.141173814000084 ], [ -122.91864278499996, 49.137931417000146 ], [ -122.918311577999987, 49.137656098 ], [ -122.91778531099996, 49.137431111000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210344167", "BldgCostT": "141576667", "sL_LossRatio": "0.733602594026581", "sL_AssetLoss": "2542765", "sL_BldgLoss": "1865379", "sL_StrLoss": "788080", "sL_NStrLoss": "1077299", "sL_ContLoss": "677386", "geom_point": "0101000020E61000003D869544D5BA5EC08426F50A30924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.917604201999936, 49.141611087000037 ], [ -122.917374292999909, 49.141564904000084 ], [ -122.916588496999964, 49.141573914000091 ], [ -122.915186506999973, 49.141556196000103 ], [ -122.915192883999936, 49.140880596000052 ], [ -122.916250884999897, 49.140879409000028 ], [ -122.916723616999931, 49.140879499000164 ], [ -122.918593007999959, 49.140793386000027 ], [ -122.918994807999951, 49.140726498000078 ], [ -122.919317398999965, 49.140614095000032 ], [ -122.918771125999953, 49.139820900000124 ], [ -122.917829612999967, 49.138417093000079 ], [ -122.917705216999934, 49.13837120200003 ], [ -122.917319701999986, 49.138357503000059 ], [ -122.917322392999935, 49.137385390000077 ], [ -122.917585094999964, 49.137391994000076 ], [ -122.91778531099996, 49.137431111000119 ], [ -122.918311577999987, 49.137656098 ], [ -122.91864278499996, 49.137931417000146 ], [ -122.920867192999935, 49.141173814000084 ], [ -122.92138712299996, 49.14207620800002 ], [ -122.922104904999955, 49.142909405000054 ], [ -122.922582805000019, 49.143369992000068 ], [ -122.923451802000017, 49.144300407000067 ], [ -122.923510742999909, 49.144374520000106 ], [ -122.923518816999902, 49.144425699000124 ], [ -122.923518572999953, 49.144425727000041 ], [ -122.922235504999946, 49.144414282000113 ], [ -122.921982208999935, 49.144410598000043 ], [ -122.920592710999983, 49.144388891000077 ], [ -122.918233209999983, 49.144382604000079 ], [ -122.918179592999934, 49.144389147000034 ], [ -122.917845020999948, 49.144430009000047 ], [ -122.917379585999925, 49.144441893000099 ], [ -122.917198878999926, 49.144418697000056 ], [ -122.916920591999926, 49.144317095000083 ], [ -122.916608487999923, 49.143918908000011 ], [ -122.916543794999953, 49.143757593000025 ], [ -122.916538001999925, 49.143473601000046 ], [ -122.916386576999912, 49.143194389000016 ], [ -122.916736294999936, 49.143066587000057 ], [ -122.917170003999956, 49.143035806000078 ], [ -122.917456892999908, 49.142945809000025 ], [ -122.917602698999971, 49.142812994000039 ], [ -122.917662291999989, 49.14265878599999 ], [ -122.917672515999953, 49.141780599000057 ], [ -122.917604201999936, 49.141611087000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101677833", "BldgCostT": "65523333", "sL_LossRatio": "0.694150205684067", "sL_AssetLoss": "1864510", "sL_BldgLoss": "1294250", "sL_StrLoss": "563300", "sL_NStrLoss": "730950", "sL_ContLoss": "570260", "geom_point": "0101000020E610000004267135B6BA5EC02F4E21FCB0924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912569580999957, 49.146544894000115 ], [ -122.912574846999973, 49.146235664000066 ], [ -122.912578995999937, 49.145990998000087 ], [ -122.912580289999966, 49.145909989000124 ], [ -122.91257711499992, 49.145337690000119 ], [ -122.912589351999927, 49.14485947500004 ], [ -122.912598583999966, 49.144497702000102 ], [ -122.913411394, 49.144496710000062 ], [ -122.913869602999952, 49.144406192000076 ], [ -122.914787190999959, 49.144414499000078 ], [ -122.916126758999951, 49.144427168000071 ], [ -122.916379530999961, 49.144429565000088 ], [ -122.916478688999959, 49.144430501000059 ], [ -122.916713912999967, 49.144396694000093 ], [ -122.916920591999926, 49.144317095000083 ], [ -122.917198878999926, 49.144418697000056 ], [ -122.917379585999925, 49.144441893000099 ], [ -122.917845020999948, 49.144430009000047 ], [ -122.918179592999934, 49.144389147000034 ], [ -122.918233209999983, 49.144382604000079 ], [ -122.920592710999983, 49.144388891000077 ], [ -122.921982208999935, 49.144410598000043 ], [ -122.922235504999946, 49.144414282000113 ], [ -122.922233818000024, 49.14564140200013 ], [ -122.922191908999977, 49.147040295000117 ], [ -122.922170012999942, 49.147724500000017 ], [ -122.920129388999911, 49.147702092000038 ], [ -122.920153801000012, 49.145180017000101 ], [ -122.918851302999911, 49.145168888000036 ], [ -122.917608272999928, 49.145168398000088 ], [ -122.917596087, 49.147689101000012 ], [ -122.918226601999891, 49.147689105000012 ], [ -122.918232514999914, 49.148427197000125 ], [ -122.917554510999963, 49.148462707000128 ], [ -122.916859706999944, 49.148488696000051 ], [ -122.915303883999925, 49.148546897000116 ], [ -122.91531441799998, 49.147685890000091 ], [ -122.915338601999949, 49.14699100400005 ], [ -122.914750406999971, 49.146985701000069 ], [ -122.914651000999967, 49.146984790000147 ], [ -122.914461493999937, 49.14694870300012 ], [ -122.914064792999966, 49.146628288000045 ], [ -122.913897493999968, 49.146567613000052 ], [ -122.913750802999942, 49.14654720000005 ], [ -122.912569580999957, 49.146544894000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87918560", "BldgCostT": "58778189", "sL_LossRatio": "0.723193716467987", "sL_AssetLoss": "1293540", "sL_BldgLoss": "935480", "sL_StrLoss": "412190", "sL_NStrLoss": "523290", "sL_ContLoss": "358060", "geom_point": "0101000020E61000001C48C452ECBA5EC07CCABD02C9924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.918232514999914, 49.148427197000125 ], [ -122.918226601999891, 49.147689105000012 ], [ -122.917596087, 49.147689101000012 ], [ -122.917608272999928, 49.145168398000088 ], [ -122.918851302999911, 49.145168888000036 ], [ -122.920153801000012, 49.145180017000101 ], [ -122.920129388999911, 49.147702092000038 ], [ -122.922170012999942, 49.147724500000017 ], [ -122.922191908999977, 49.147040295000117 ], [ -122.922233818000024, 49.14564140200013 ], [ -122.922235504999946, 49.144414282000113 ], [ -122.923518572999953, 49.144425727000041 ], [ -122.923518816999902, 49.144425699000124 ], [ -122.923518859999959, 49.144425917000035 ], [ -122.923654148999958, 49.144928040000089 ], [ -122.923654137999947, 49.144928190000044 ], [ -122.923626207999959, 49.148459908000113 ], [ -122.919231992999983, 49.148435606000135 ], [ -122.918707672999915, 49.14843269000005 ], [ -122.918232514999914, 49.148427197000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111168478", "BldgCostT": "74309857", "sL_LossRatio": "0.718140429846772", "sL_AssetLoss": "2196271", "sL_BldgLoss": "1577231", "sL_StrLoss": "677521", "sL_NStrLoss": "899710", "sL_ContLoss": "619040", "geom_point": "0101000020E6100000E1FB1CFEDEBA5EC06F6D65B24D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.913562192999947, 49.152239805000058 ], [ -122.91357789499996, 49.151425691000021 ], [ -122.915761086999964, 49.15146939699999 ], [ -122.915996610999983, 49.151494992 ], [ -122.91701922699994, 49.151500075000044 ], [ -122.917325604999974, 49.151501596000109 ], [ -122.917341100999977, 49.150027098000102 ], [ -122.91751439799998, 49.149686999000068 ], [ -122.917554510999963, 49.148462707000128 ], [ -122.918232514999914, 49.148427197000125 ], [ -122.918707672999915, 49.14843269000005 ], [ -122.919231992999983, 49.148435606000135 ], [ -122.923626207999959, 49.148459908000113 ], [ -122.924445996999935, 49.148455400000081 ], [ -122.9250348, 49.148360487000083 ], [ -122.92553951899994, 49.148956099 ], [ -122.925878793999985, 49.14915138900011 ], [ -122.926609791999965, 49.149455990000071 ], [ -122.926896626, 49.149635441000051 ], [ -122.926895624999929, 49.149635848000109 ], [ -122.924172028, 49.15087762300012 ], [ -122.92417135099997, 49.150877830000113 ], [ -122.92417095399999, 49.150877940000072 ], [ -122.924011391999926, 49.150924308000093 ], [ -122.923573421999905, 49.150913675000055 ], [ -122.923573418999979, 49.150914054000104 ], [ -122.923554179999982, 49.151557300000071 ], [ -122.923548119999964, 49.15181476900009 ], [ -122.923444707, 49.15223888500006 ], [ -122.923443920999929, 49.152238955 ], [ -122.92344369300001, 49.152238947000036 ], [ -122.921466980000019, 49.152237299000078 ], [ -122.921214144999936, 49.152237859000117 ], [ -122.920363976999909, 49.152239711000078 ], [ -122.919458818999942, 49.152241705000051 ], [ -122.919349064999963, 49.152241956000076 ], [ -122.919185877999979, 49.152242308000027 ], [ -122.918108817999979, 49.152237607000117 ], [ -122.918086392999953, 49.153424499000046 ], [ -122.916862515999952, 49.153422802000136 ], [ -122.91678277699998, 49.153549303000055 ], [ -122.91664330699993, 49.153668784000068 ], [ -122.916419289999922, 49.153739797000071 ], [ -122.916175219999943, 49.153761706000104 ], [ -122.913529791999949, 49.153761513000134 ], [ -122.913546312999983, 49.152996093000063 ], [ -122.913562192999947, 49.152239805000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85453082", "BldgCostT": "57198332", "sL_LossRatio": "0.722585112237944", "sL_AssetLoss": "1464478", "sL_BldgLoss": "1058210", "sL_StrLoss": "495370", "sL_NStrLoss": "562840", "sL_ContLoss": "406268", "geom_point": "0101000020E6100000454CFD7A8DBA5EC08540708D36934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912455299, 49.15223140300003 ], [ -122.91249170199994, 49.150464692000128 ], [ -122.912505145999944, 49.14983354000006 ], [ -122.912530488999948, 49.14864130800003 ], [ -122.915303883999925, 49.148546897000116 ], [ -122.916859706999944, 49.148488696000051 ], [ -122.917554510999963, 49.148462707000128 ], [ -122.91751439799998, 49.149686999000068 ], [ -122.917341100999977, 49.150027098000102 ], [ -122.917325604999974, 49.151501596000109 ], [ -122.91701922699994, 49.151500075000044 ], [ -122.915996610999983, 49.151494992 ], [ -122.915761086999964, 49.15146939699999 ], [ -122.91357789499996, 49.151425691000021 ], [ -122.913562192999947, 49.152239805000058 ], [ -122.912455299, 49.15223140300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98881645", "BldgCostT": "62186524", "sL_LossRatio": "0.677022462337246", "sL_AssetLoss": "1995340", "sL_BldgLoss": "1350890", "sL_StrLoss": "557080", "sL_NStrLoss": "793810", "sL_ContLoss": "644450", "geom_point": "0101000020E610000001B9CC0290BA5EC016A54AB5CB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912395282999952, 49.154270503000092 ], [ -122.912455299, 49.15223140300003 ], [ -122.913562192999947, 49.152239805000058 ], [ -122.913546312999983, 49.152996093000063 ], [ -122.913529791999949, 49.153761513000134 ], [ -122.916175219999943, 49.153761706000104 ], [ -122.916419289999922, 49.153739797000071 ], [ -122.91664330699993, 49.153668784000068 ], [ -122.91678277699998, 49.153549303000055 ], [ -122.916862515999952, 49.153422802000136 ], [ -122.918086392999953, 49.153424499000046 ], [ -122.918053288999928, 49.154544387000108 ], [ -122.91804069799997, 49.15529269700005 ], [ -122.918041102999922, 49.156051412000089 ], [ -122.916998478, 49.156064796000052 ], [ -122.914926880999957, 49.156056706000065 ], [ -122.913870682999942, 49.156052576000086 ], [ -122.912377409000015, 49.156046705000122 ], [ -122.91239043, 49.154754079000064 ], [ -122.912395282999952, 49.154270503000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124233417", "BldgCostT": "81581667", "sL_LossRatio": "0.697666233908433", "sL_AssetLoss": "2557240", "sL_BldgLoss": "1784100", "sL_StrLoss": "771450", "sL_NStrLoss": "1012650", "sL_ContLoss": "773140", "geom_point": "0101000020E6100000BE73396FEDBA5EC0A0F7293BBB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.918041102999922, 49.156051412000089 ], [ -122.91804069799997, 49.15529269700005 ], [ -122.918053288999928, 49.154544387000108 ], [ -122.918086392999953, 49.153424499000046 ], [ -122.918108817999979, 49.152237607000117 ], [ -122.919185877999979, 49.152242308000027 ], [ -122.919349064999963, 49.152241956000076 ], [ -122.919458818999942, 49.152241705000051 ], [ -122.920363976999909, 49.152239711000078 ], [ -122.921214144999936, 49.152237859000117 ], [ -122.921466980000019, 49.152237299000078 ], [ -122.92344369300001, 49.152238947000036 ], [ -122.923443920999929, 49.152238955 ], [ -122.923444707, 49.15223888500006 ], [ -122.923399980999974, 49.154054051000074 ], [ -122.923393721999929, 49.154411342000067 ], [ -122.923385192999945, 49.154898718000027 ], [ -122.923264635999971, 49.155021435000052 ], [ -122.923264675999974, 49.155021594000118 ], [ -122.923453838999976, 49.155601732000015 ], [ -122.923604657999931, 49.156063986000085 ], [ -122.923604832999985, 49.15606447800009 ], [ -122.923605387999928, 49.156066206000077 ], [ -122.923605448, 49.156066388000106 ], [ -122.92360455, 49.156066322000086 ], [ -122.923604324999957, 49.156066315000047 ], [ -122.923359949999934, 49.156047653000016 ], [ -122.920800288999956, 49.156053791000105 ], [ -122.919713323999972, 49.156054533000031 ], [ -122.918863291, 49.156055103000064 ], [ -122.918041102999922, 49.156051412000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103327833", "BldgCostT": "66633333", "sL_LossRatio": "0.706135069800765", "sL_AssetLoss": "1630283", "sL_BldgLoss": "1151200", "sL_StrLoss": "546000", "sL_NStrLoss": "605200", "sL_ContLoss": "479083", "geom_point": "0101000020E61000005D9E8BAF0BBB5EC052CBE6DC33944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92150639, 49.160276865000078 ], [ -122.921458412000021, 49.160010244000077 ], [ -122.920701514999934, 49.160299997000045 ], [ -122.920323406999955, 49.160253999000062 ], [ -122.920209879999945, 49.160208403000134 ], [ -122.92017139099994, 49.160168601000109 ], [ -122.920018678999938, 49.15930739200013 ], [ -122.919867594999971, 49.158442594000128 ], [ -122.919729325999967, 49.157591702000062 ], [ -122.919645394, 49.15703699800013 ], [ -122.919550100999984, 49.15696491200007 ], [ -122.919002394999936, 49.156955611000086 ], [ -122.918884093999921, 49.156880100000052 ], [ -122.918863291, 49.156055103000064 ], [ -122.919713323999972, 49.156054533000031 ], [ -122.920800288999956, 49.156053791000105 ], [ -122.923359949999934, 49.156047653000016 ], [ -122.923604324999957, 49.156066315000047 ], [ -122.92360455, 49.156066322000086 ], [ -122.923605448, 49.156066388000106 ], [ -122.924398390999968, 49.156066687000077 ], [ -122.92664, 49.155988207000128 ], [ -122.926544518999947, 49.156146759000073 ], [ -122.926383322, 49.156304336000112 ], [ -122.925300279999931, 49.15692843100004 ], [ -122.92595336299992, 49.157562439000095 ], [ -122.92663760899994, 49.158056817000094 ], [ -122.926168809999979, 49.158361384000024 ], [ -122.925486775999957, 49.158804509000099 ], [ -122.925319807999941, 49.158913008000056 ], [ -122.92443798799999, 49.159291414000023 ], [ -122.923656372999972, 49.159515938 ], [ -122.923470980999952, 49.15956919700011 ], [ -122.922812489999956, 49.159825190000092 ], [ -122.921537395999962, 49.160449092000107 ], [ -122.92150639, 49.160276865000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191254609", "BldgCostT": "127167954", "sL_LossRatio": "0.700918698763018", "sL_AssetLoss": "3413306", "sL_BldgLoss": "2392450", "sL_StrLoss": "1037220", "sL_NStrLoss": "1355230", "sL_ContLoss": "1020856", "geom_point": "0101000020E6100000FFB183294EBB5EC00EBE49364B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92443798799999, 49.159291414000023 ], [ -122.925319807999941, 49.158913008000056 ], [ -122.925486775999957, 49.158804509000099 ], [ -122.926168809999979, 49.158361384000024 ], [ -122.92663760899994, 49.158056817000094 ], [ -122.92595336299992, 49.157562439000095 ], [ -122.925300279999931, 49.15692843100004 ], [ -122.926383322, 49.156304336000112 ], [ -122.926544518999947, 49.156146759000073 ], [ -122.92664, 49.155988207000128 ], [ -122.926640230999979, 49.155988216000068 ], [ -122.92822551299993, 49.155953278000077 ], [ -122.92822575699995, 49.155953250000053 ], [ -122.929987177999962, 49.155850008000115 ], [ -122.929987421999954, 49.155849982000042 ], [ -122.931086443999973, 49.155826759000085 ], [ -122.931271142999975, 49.155873474000074 ], [ -122.931284913999917, 49.155873215000085 ], [ -122.932428122999937, 49.15585149 ], [ -122.932650431999917, 49.155951525000091 ], [ -122.931517253999971, 49.156817516000082 ], [ -122.931445996999955, 49.156796558000103 ], [ -122.931369496999949, 49.156813291000056 ], [ -122.931336142999925, 49.156861912000039 ], [ -122.931364396999982, 49.156911362000073 ], [ -122.930948731999976, 49.15722746300009 ], [ -122.928162100999913, 49.158947242000075 ], [ -122.928196063999934, 49.158993277000022 ], [ -122.928166807999929, 49.159041982000097 ], [ -122.928095350999968, 49.159065162000061 ], [ -122.928021174999941, 49.15904684700007 ], [ -122.927457887999978, 49.159379976000068 ], [ -122.926855623000023, 49.159736170000095 ], [ -122.926233499999967, 49.160126491 ], [ -122.9242881979999, 49.16134950200005 ], [ -122.923867993, 49.161612140000031 ], [ -122.923432822999942, 49.161884093000054 ], [ -122.923026895999953, 49.162137792000046 ], [ -122.922494300999958, 49.162458692000072 ], [ -122.921945394, 49.162051897 ], [ -122.921781503999966, 49.161876992000074 ], [ -122.921537395999962, 49.160449092000107 ], [ -122.922812489999956, 49.159825190000092 ], [ -122.923470980999952, 49.15956919700011 ], [ -122.923656372999972, 49.159515938 ], [ -122.92443798799999, 49.159291414000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105461583", "BldgCostT": "71523333", "sL_LossRatio": "0.728800101632472", "sL_AssetLoss": "1889160", "sL_BldgLoss": "1376820", "sL_StrLoss": "614950", "sL_NStrLoss": "761870", "sL_ContLoss": "512340", "geom_point": "0101000020E61000000F3F513C9BBB5EC08A63556B7E944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926855623000023, 49.159736170000095 ], [ -122.927457887999978, 49.159379976000068 ], [ -122.928021174999941, 49.15904684700007 ], [ -122.928095350999968, 49.159065162000061 ], [ -122.928166807999929, 49.159041982000097 ], [ -122.928196063999934, 49.158993277000022 ], [ -122.928162100999913, 49.158947242000075 ], [ -122.930948731999976, 49.15722746300009 ], [ -122.931364396999982, 49.156911362000073 ], [ -122.931336142999925, 49.156861912000039 ], [ -122.931369496999949, 49.156813291000056 ], [ -122.931445996999955, 49.156796558000103 ], [ -122.931517253999971, 49.156817516000082 ], [ -122.931544155999987, 49.156866942000079 ], [ -122.931510853999924, 49.156914642000032 ], [ -122.932666225999981, 49.157686386000123 ], [ -122.932458213999951, 49.157826381000064 ], [ -122.931979093999942, 49.158398412000054 ], [ -122.931784891999911, 49.158536998000038 ], [ -122.930677490999983, 49.158782 ], [ -122.930136395999938, 49.158943186000059 ], [ -122.929856816999944, 49.159127991000105 ], [ -122.929878126999938, 49.159143940000057 ], [ -122.92988951299999, 49.15915246100014 ], [ -122.930591016999969, 49.159677010000095 ], [ -122.930985504999938, 49.15947378900006 ], [ -122.932726393999985, 49.15926839100004 ], [ -122.933033927999972, 49.159323103000084 ], [ -122.933564397999987, 49.159595009000085 ], [ -122.933846813999949, 49.159636406000054 ], [ -122.934090179999913, 49.1596244 ], [ -122.93431410699999, 49.159555094000012 ], [ -122.934886876999911, 49.159142593000105 ], [ -122.935879592, 49.159784404000092 ], [ -122.936390256999942, 49.160233798000043 ], [ -122.936255105999962, 49.160326606000055 ], [ -122.935877519999977, 49.160482596000051 ], [ -122.935528853999983, 49.160567838000077 ], [ -122.935171010999966, 49.160655288000108 ], [ -122.934745204999956, 49.160835094000085 ], [ -122.934556128999972, 49.160955364000067 ], [ -122.934103798999942, 49.161243122000073 ], [ -122.932711799999979, 49.162128586000073 ], [ -122.932368523999983, 49.162349188000107 ], [ -122.932212727999968, 49.162449297000094 ], [ -122.931308792, 49.163030104000029 ], [ -122.930860197999934, 49.162722686000087 ], [ -122.93060690099999, 49.162613693000061 ], [ -122.930604795999926, 49.16233430200009 ], [ -122.930572411999933, 49.162244195000106 ], [ -122.926855623000023, 49.159736170000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126390417", "BldgCostT": "82271667", "sL_LossRatio": "0.73360215373018", "sL_AssetLoss": "1599829", "sL_BldgLoss": "1173638", "sL_StrLoss": "547822", "sL_NStrLoss": "625816", "sL_ContLoss": "426191", "geom_point": "0101000020E610000051E840FF52BB5EC05115A631D2944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926233499999967, 49.160126491 ], [ -122.926855623000023, 49.159736170000095 ], [ -122.930572411999933, 49.162244195000106 ], [ -122.930604795999926, 49.16233430200009 ], [ -122.93060690099999, 49.162613693000061 ], [ -122.930860197999934, 49.162722686000087 ], [ -122.931308792, 49.163030104000029 ], [ -122.9292574, 49.164260884000051 ], [ -122.928534306999921, 49.164788999000109 ], [ -122.928215607999931, 49.164942995000082 ], [ -122.928163349999949, 49.164957942000122 ], [ -122.927948160999946, 49.16501954800006 ], [ -122.927855096000016, 49.165046204000035 ], [ -122.927230482999946, 49.165160232000034 ], [ -122.926442316999939, 49.165304100000085 ], [ -122.925283590999967, 49.164478207000037 ], [ -122.923458337999961, 49.163156724000039 ], [ -122.923113336999947, 49.162906904000089 ], [ -122.923048281999939, 49.162859792000077 ], [ -122.922494300999958, 49.162458692000072 ], [ -122.923026895999953, 49.162137792000046 ], [ -122.923432822999942, 49.161884093000054 ], [ -122.923867993, 49.161612140000031 ], [ -122.9242881979999, 49.16134950200005 ], [ -122.926233499999967, 49.160126491 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106946583", "BldgCostT": "72018333", "sL_LossRatio": "0.721353519476112", "sL_AssetLoss": "2378067", "sL_BldgLoss": "1715427", "sL_StrLoss": "724727", "sL_NStrLoss": "990700", "sL_ContLoss": "662640", "geom_point": "0101000020E610000035F0F662E0BA5EC090ED84B0FD944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.920594003999966, 49.16088798099999 ], [ -122.921537395999962, 49.160449092000107 ], [ -122.921781503999966, 49.161876992000074 ], [ -122.921945394, 49.162051897 ], [ -122.922494300999958, 49.162458692000072 ], [ -122.923048281999939, 49.162859792000077 ], [ -122.923113336999947, 49.162906904000089 ], [ -122.923458337999961, 49.163156724000039 ], [ -122.925283590999967, 49.164478207000037 ], [ -122.926442316999939, 49.165304100000085 ], [ -122.925823555999926, 49.165417735000098 ], [ -122.925284926999936, 49.165516640000092 ], [ -122.925142231999928, 49.165542855000105 ], [ -122.925105324999919, 49.165549627000097 ], [ -122.924790708000018, 49.165607406000063 ], [ -122.924431136999956, 49.165658515000089 ], [ -122.924077878999981, 49.165708705000121 ], [ -122.923539338999916, 49.165734066000098 ], [ -122.92338749000001, 49.165741199000074 ], [ -122.922607273999972, 49.165777001000066 ], [ -122.921219933999936, 49.16584066700004 ], [ -122.920886687999939, 49.165855930000049 ], [ -122.920399220999968, 49.165878300000024 ], [ -122.919655962, 49.165957850000083 ], [ -122.919163318999921, 49.16601060000005 ], [ -122.918669893999947, 49.16611089000007 ], [ -122.918082405999925, 49.16628780000007 ], [ -122.917707404999987, 49.166463505000117 ], [ -122.917316894, 49.166768605000101 ], [ -122.916661182999945, 49.166443495000095 ], [ -122.915988072999966, 49.166090799000131 ], [ -122.915189105999971, 49.165631006000098 ], [ -122.915060093999969, 49.165446191000058 ], [ -122.914989838999986, 49.165261088000129 ], [ -122.914944596999931, 49.165141903000084 ], [ -122.914958100999968, 49.164772905000085 ], [ -122.915007987999985, 49.164578801000125 ], [ -122.91512479, 49.164367798000107 ], [ -122.915251480999956, 49.164253418000023 ], [ -122.915299879999964, 49.164209701000097 ], [ -122.915937506999938, 49.163649504000077 ], [ -122.916064216999956, 49.163496405000096 ], [ -122.916110482999898, 49.163357201000061 ], [ -122.916127098999965, 49.162651287000067 ], [ -122.916140778999974, 49.162651298000064 ], [ -122.917192299999925, 49.162651997000047 ], [ -122.917184586999966, 49.162313988000101 ], [ -122.91729936199999, 49.161919351000087 ], [ -122.917328108999982, 49.161820565 ], [ -122.917383386999944, 49.161630400000099 ], [ -122.919033691999957, 49.16136679100012 ], [ -122.919992486999931, 49.161110389000044 ], [ -122.920050495999973, 49.161088962000093 ], [ -122.920203857, 49.161032257000031 ], [ -122.920594003999966, 49.16088798099999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106885750", "BldgCostT": "68620000", "sL_LossRatio": "0.707496250178479", "sL_AssetLoss": "1414734", "sL_BldgLoss": "1000919", "sL_StrLoss": "428710", "sL_NStrLoss": "572209", "sL_ContLoss": "413815", "geom_point": "0101000020E6100000D443B0811FBA5EC0B1B5E7C799944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.908657783, 49.161789196000122 ], [ -122.907728608999932, 49.161744508000055 ], [ -122.902147694999897, 49.161720100000089 ], [ -122.902146090999921, 49.161636579000131 ], [ -122.902142042999984, 49.16142972800003 ], [ -122.902134989999965, 49.161066504000061 ], [ -122.903461817, 49.161071395000093 ], [ -122.903449915999886, 49.160323190000071 ], [ -122.905194106999929, 49.16033730700007 ], [ -122.908968398999932, 49.160355604000124 ], [ -122.908972291999973, 49.159636794000058 ], [ -122.910806187999967, 49.159651029000052 ], [ -122.911123496999906, 49.159653502000026 ], [ -122.912377191999951, 49.159662386000072 ], [ -122.912389864999952, 49.161500807000031 ], [ -122.912390774999935, 49.161635743000026 ], [ -122.912391482999979, 49.161734687000099 ], [ -122.912393304999938, 49.162000892000044 ], [ -122.911126118999931, 49.161987106000026 ], [ -122.908657783, 49.161789196000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76940167", "BldgCostT": "52326667", "sL_LossRatio": "0.759651026855731", "sL_AssetLoss": "931533", "sL_BldgLoss": "707640", "sL_StrLoss": "346430", "sL_NStrLoss": "361210", "sL_ContLoss": "223893", "geom_point": "0101000020E6100000DD0C816D0EBA5EC0CE1E7076CE944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.902150722, 49.161933476000087 ], [ -122.902147694999897, 49.161720100000089 ], [ -122.907728608999932, 49.161744508000055 ], [ -122.908657783, 49.161789196000122 ], [ -122.911126118999931, 49.161987106000026 ], [ -122.912393304999938, 49.162000892000044 ], [ -122.912391609999986, 49.162067320000034 ], [ -122.912383411999912, 49.162391207000056 ], [ -122.912359494999976, 49.163335193000059 ], [ -122.909214102999954, 49.163319795000085 ], [ -122.905578899999966, 49.163290106000012 ], [ -122.903492784999983, 49.163281492000117 ], [ -122.902140106999937, 49.163254289000058 ], [ -122.902159019999942, 49.162517801000085 ], [ -122.902154020999916, 49.16216742200006 ], [ -122.902150722, 49.161933476000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132770167", "BldgCostT": "86466667", "sL_LossRatio": "0.724603961511594", "sL_AssetLoss": "1775080", "sL_BldgLoss": "1286230", "sL_StrLoss": "597300", "sL_NStrLoss": "688930", "sL_ContLoss": "488850", "geom_point": "0101000020E6100000317D6D0526BA5EC0EBF83FF214954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911103614999888, 49.165937296000024 ], [ -122.911093199999982, 49.165102712000127 ], [ -122.90814581299999, 49.165098307000122 ], [ -122.903464490999937, 49.165044801000064 ], [ -122.903495997000022, 49.16415999900007 ], [ -122.903492784999983, 49.163281492000117 ], [ -122.905578899999966, 49.163290106000012 ], [ -122.909214102999954, 49.163319795000085 ], [ -122.912359494999976, 49.163335193000059 ], [ -122.912358402999985, 49.16415437400012 ], [ -122.912357304999929, 49.164981942000047 ], [ -122.912359505999945, 49.165090351000096 ], [ -122.912355948999945, 49.165978912000078 ], [ -122.912354690999933, 49.166917405000021 ], [ -122.911223881999959, 49.166912 ], [ -122.908950992, 49.166897535000061 ], [ -122.908115606999971, 49.166892196000099 ], [ -122.90811999099995, 49.165918303000083 ], [ -122.911103614999888, 49.165937296000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100951584", "BldgCostT": "65258334", "sL_LossRatio": "0.722779309558912", "sL_AssetLoss": "1395253", "sL_BldgLoss": "1008460", "sL_StrLoss": "464330", "sL_NStrLoss": "544130", "sL_ContLoss": "386793", "geom_point": "0101000020E61000007DD6B992F2B95EC0BEC2AB7A33954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.90209427799999, 49.165998294000119 ], [ -122.902140106999937, 49.163254289000058 ], [ -122.903492784999983, 49.163281492000117 ], [ -122.903495997000022, 49.16415999900007 ], [ -122.903464490999937, 49.165044801000064 ], [ -122.90814581299999, 49.165098307000122 ], [ -122.911093199999982, 49.165102712000127 ], [ -122.911103614999888, 49.165937296000024 ], [ -122.90811999099995, 49.165918303000083 ], [ -122.908115606999971, 49.166892196000099 ], [ -122.905442926999967, 49.166892101000073 ], [ -122.902589578999979, 49.166891948000057 ], [ -122.901870191999961, 49.166891906000075 ], [ -122.902016726999989, 49.166545596000027 ], [ -122.902088599999956, 49.166186386000099 ], [ -122.90209427799999, 49.165998294000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126807788", "BldgCostT": "82483046", "sL_LossRatio": "0.720327933012679", "sL_AssetLoss": "1456395", "sL_BldgLoss": "1049082", "sL_StrLoss": "495082", "sL_NStrLoss": "554000", "sL_ContLoss": "407313", "geom_point": "0101000020E61000006C44ACD509BA5EC0F1A829B09D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.907562092999939, 49.171090985000085 ], [ -122.907729389999986, 49.170636397000109 ], [ -122.905669088999929, 49.170619650000098 ], [ -122.904448543999976, 49.17060964900007 ], [ -122.904024163999907, 49.170601928000046 ], [ -122.903499391999958, 49.170592297000042 ], [ -122.902692638999952, 49.170586293000078 ], [ -122.902157516, 49.170582293000045 ], [ -122.901883323999982, 49.170580243000138 ], [ -122.901261393999974, 49.170575596000027 ], [ -122.901270260999922, 49.169311012000051 ], [ -122.901273631999942, 49.168833531000097 ], [ -122.901274575999963, 49.168697056000013 ], [ -122.901277486, 49.168276807999987 ], [ -122.90139804899998, 49.167824637000137 ], [ -122.901405500999957, 49.16779660800006 ], [ -122.901870191999961, 49.166891906000075 ], [ -122.902589578999979, 49.166891948000057 ], [ -122.905442926999967, 49.166892101000073 ], [ -122.908115606999971, 49.166892196000099 ], [ -122.908950992, 49.166897535000061 ], [ -122.911223881999959, 49.166912 ], [ -122.912354690999933, 49.166917405000021 ], [ -122.912344794999967, 49.167830707000121 ], [ -122.911989291999973, 49.168764789000122 ], [ -122.91186394099995, 49.169097772000093 ], [ -122.911564042999913, 49.169894263000053 ], [ -122.910913701999959, 49.171621517000062 ], [ -122.907562092999939, 49.171090985000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96265188", "BldgCostT": "59610824", "sL_LossRatio": "0.653771170951627", "sL_AssetLoss": "1969680", "sL_BldgLoss": "1287720", "sL_StrLoss": "495870", "sL_NStrLoss": "791850", "sL_ContLoss": "681960", "geom_point": "0101000020E610000082510FF276BA5EC09F03AA03C9954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.914999683999923, 49.172244994000074 ], [ -122.913955389999956, 49.172070899000026 ], [ -122.912473581999947, 49.171836601000059 ], [ -122.911691114999911, 49.17174650200009 ], [ -122.910913701999959, 49.171621517000062 ], [ -122.911564042999913, 49.169894263000053 ], [ -122.91186394099995, 49.169097772000093 ], [ -122.911989291999973, 49.168764789000122 ], [ -122.912344794999967, 49.167830707000121 ], [ -122.915564909999986, 49.168335702000036 ], [ -122.915294385, 49.168589200000071 ], [ -122.915134789999968, 49.168763 ], [ -122.915059906999915, 49.168962696000108 ], [ -122.915133914999942, 49.16927998200002 ], [ -122.915415391999957, 49.170486468000078 ], [ -122.915416246999925, 49.170490101000048 ], [ -122.915455631999961, 49.170658889000094 ], [ -122.915456905, 49.170664354000039 ], [ -122.915855186999963, 49.172371291000061 ], [ -122.914999683999923, 49.172244994000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116101583", "BldgCostT": "79598333", "sL_LossRatio": "0.750117843286559", "sL_AssetLoss": "1765056", "sL_BldgLoss": "1324000", "sL_StrLoss": "593620", "sL_NStrLoss": "730380", "sL_ContLoss": "441056", "geom_point": "0101000020E61000009FA72A0256BA5EC047D62B7645964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.908017920999953, 49.173721508 ], [ -122.907780705999954, 49.173678597000048 ], [ -122.906800569999987, 49.173672995000068 ], [ -122.90683461499998, 49.173162192000078 ], [ -122.907039395999959, 49.17255808800013 ], [ -122.907452620999962, 49.171417696000056 ], [ -122.907562092999939, 49.171090985000085 ], [ -122.910913701999959, 49.171621517000062 ], [ -122.911691114999911, 49.17174650200009 ], [ -122.912473581999947, 49.171836601000059 ], [ -122.913955389999956, 49.172070899000026 ], [ -122.914999683999923, 49.172244994000074 ], [ -122.915855186999963, 49.172371291000061 ], [ -122.9160384899999, 49.173184801000083 ], [ -122.91604053899998, 49.173268733000043 ], [ -122.916043308999988, 49.173381287000069 ], [ -122.915986713999985, 49.173594092 ], [ -122.915739168999949, 49.1741216940001 ], [ -122.915493630999947, 49.174491936000095 ], [ -122.91447122299999, 49.175545670000112 ], [ -122.913747111999925, 49.176380885000036 ], [ -122.912985023999937, 49.177122918000094 ], [ -122.912146697999901, 49.177120982000055 ], [ -122.910198408999946, 49.177116514000055 ], [ -122.909677671999972, 49.177115292000096 ], [ -122.90954209899999, 49.177114102000083 ], [ -122.908994810999943, 49.175939794000108 ], [ -122.909009884999989, 49.175670787000101 ], [ -122.90930099299996, 49.175108888000075 ], [ -122.909360881999945, 49.174868205000024 ], [ -122.909329710999984, 49.17461599300001 ], [ -122.909206911999931, 49.174399807000093 ], [ -122.909033688999955, 49.174220907000119 ], [ -122.908670093999945, 49.173976303000124 ], [ -122.908233690999907, 49.173774503000082 ], [ -122.908017920999953, 49.173721508 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89737500", "BldgCostT": "60150000", "sL_LossRatio": "0.749553359859728", "sL_AssetLoss": "1145777", "sL_BldgLoss": "858821", "sL_StrLoss": "403423", "sL_NStrLoss": "455398", "sL_ContLoss": "286956", "geom_point": "0101000020E6100000B3A272B8FBB95EC0BE98C1734A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906799493999983, 49.175667707000052 ], [ -122.906795206999945, 49.175403610000046 ], [ -122.902658002999914, 49.175400004000096 ], [ -122.90266077699999, 49.17459639500003 ], [ -122.902655691999897, 49.173686292000127 ], [ -122.904246489999949, 49.173684294000083 ], [ -122.904272009999957, 49.172890401000132 ], [ -122.905673803999932, 49.172884698000061 ], [ -122.90595001399997, 49.172154690000063 ], [ -122.906208608999975, 49.171400802000065 ], [ -122.907452620999962, 49.171417696000056 ], [ -122.907039395999959, 49.17255808800013 ], [ -122.90683461499998, 49.173162192000078 ], [ -122.906800569999987, 49.173672995000068 ], [ -122.907780705999954, 49.173678597000048 ], [ -122.908017920999953, 49.173721508 ], [ -122.908233690999907, 49.173774503000082 ], [ -122.908670093999945, 49.173976303000124 ], [ -122.909033688999955, 49.174220907000119 ], [ -122.909206911999931, 49.174399807000093 ], [ -122.909329710999984, 49.17461599300001 ], [ -122.909360881999945, 49.174868205000024 ], [ -122.90930099299996, 49.175108888000075 ], [ -122.909009884999989, 49.175670787000101 ], [ -122.907977203, 49.175671797000042 ], [ -122.906799493999983, 49.175667707000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85799750", "BldgCostT": "57965000", "sL_LossRatio": "0.747435450746122", "sL_AssetLoss": "1142306", "sL_BldgLoss": "853800", "sL_StrLoss": "393600", "sL_NStrLoss": "460200", "sL_ContLoss": "288506", "geom_point": "0101000020E61000002A59B16CE4B95EC0618C06F887964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901196802999948, 49.17589328 ], [ -122.901204908999944, 49.173685093000095 ], [ -122.902655691999897, 49.173686292000127 ], [ -122.90266077699999, 49.17459639500003 ], [ -122.902658002999914, 49.175400004000096 ], [ -122.906795206999945, 49.175403610000046 ], [ -122.906799493999983, 49.175667707000052 ], [ -122.907977203, 49.175671797000042 ], [ -122.909009884999989, 49.175670787000101 ], [ -122.908994810999943, 49.175939794000108 ], [ -122.90954209899999, 49.177114102000083 ], [ -122.908598109999957, 49.177121290000073 ], [ -122.906797415999961, 49.177120891000087 ], [ -122.90119230099998, 49.177123806000075 ], [ -122.901196802999948, 49.17589328 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141645490", "BldgCostT": "93531028", "sL_LossRatio": "0.755366700476964", "sL_AssetLoss": "1887985", "sL_BldgLoss": "1426121", "sL_StrLoss": "630161", "sL_NStrLoss": "795960", "sL_ContLoss": "461864", "geom_point": "0101000020E61000006054D65FC4B95EC0E1DAE44B03964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89980610299996, 49.173439389000073 ], [ -122.899677708999945, 49.173411391000101 ], [ -122.89842549399998, 49.173414112000039 ], [ -122.898429992999951, 49.172587090000043 ], [ -122.899942282999945, 49.172590112000059 ], [ -122.899943630999985, 49.171907252000011 ], [ -122.899944806999954, 49.171318894000159 ], [ -122.898641381999965, 49.171329999000129 ], [ -122.898489284999982, 49.171286910000099 ], [ -122.898500517999977, 49.170543900000034 ], [ -122.900524901999916, 49.170567157000065 ], [ -122.901261393999974, 49.170575596000027 ], [ -122.901883323999982, 49.170580243000138 ], [ -122.902157516, 49.170582293000045 ], [ -122.902692638999952, 49.170586293000078 ], [ -122.903499391999958, 49.170592297000042 ], [ -122.904024163999907, 49.170601928000046 ], [ -122.904448543999976, 49.17060964900007 ], [ -122.905669088999929, 49.170619650000098 ], [ -122.907729389999986, 49.170636397000109 ], [ -122.907562092999939, 49.171090985000085 ], [ -122.907452620999962, 49.171417696000056 ], [ -122.906208608999975, 49.171400802000065 ], [ -122.90595001399997, 49.172154690000063 ], [ -122.905673803999932, 49.172884698000061 ], [ -122.904272009999957, 49.172890401000132 ], [ -122.904246489999949, 49.173684294000083 ], [ -122.902655691999897, 49.173686292000127 ], [ -122.901204908999944, 49.173685093000095 ], [ -122.900352096999924, 49.173683114 ], [ -122.90024389699991, 49.173660983000026 ], [ -122.89980610299996, 49.173439389000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94664510", "BldgCostT": "61125402", "sL_LossRatio": "0.682036797410175", "sL_AssetLoss": "2156130", "sL_BldgLoss": "1470560", "sL_StrLoss": "591530", "sL_NStrLoss": "879030", "sL_ContLoss": "685570", "geom_point": "0101000020E6100000410AAF6E86B95EC08F7E66D673964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.897041299999955, 49.173833682000044 ], [ -122.897054225999952, 49.173415106000085 ], [ -122.89842549399998, 49.173414112000039 ], [ -122.899677708999945, 49.173411391000101 ], [ -122.89980610299996, 49.173439389000073 ], [ -122.90024389699991, 49.173660983000026 ], [ -122.900352096999924, 49.173683114 ], [ -122.901204908999944, 49.173685093000095 ], [ -122.901196802999948, 49.17589328 ], [ -122.90119230099998, 49.177123806000075 ], [ -122.89650799099995, 49.177138404000097 ], [ -122.895682792999978, 49.177132690000121 ], [ -122.895699187, 49.176209603000139 ], [ -122.896790478999918, 49.176193314000059 ], [ -122.896800776999925, 49.175156598000044 ], [ -122.896967006999901, 49.174207309000046 ], [ -122.897041299999955, 49.173833682000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99684666", "BldgCostT": "65121666", "sL_LossRatio": "0.716342855574765", "sL_AssetLoss": "1457640", "sL_BldgLoss": "1044170", "sL_StrLoss": "463960", "sL_NStrLoss": "580210", "sL_ContLoss": "413470", "geom_point": "0101000020E6100000C131E43B65B95EC0816B722124964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.895699187, 49.176209603000139 ], [ -122.895704597999924, 49.175513295000037 ], [ -122.894590086999969, 49.175506398000088 ], [ -122.894244203999946, 49.174176482000043 ], [ -122.894258997999955, 49.173380508000051 ], [ -122.895716907999912, 49.173378397000135 ], [ -122.895736907999961, 49.17051110000012 ], [ -122.897785717, 49.170529609000013 ], [ -122.898500517999977, 49.170543900000034 ], [ -122.898489284999982, 49.171286910000099 ], [ -122.898641381999965, 49.171329999000129 ], [ -122.899944806999954, 49.171318894000159 ], [ -122.899943630999985, 49.171907252000011 ], [ -122.899942282999945, 49.172590112000059 ], [ -122.898429992999951, 49.172587090000043 ], [ -122.89842549399998, 49.173414112000039 ], [ -122.897054225999952, 49.173415106000085 ], [ -122.897041299999955, 49.173833682000044 ], [ -122.896967006999901, 49.174207309000046 ], [ -122.896800776999925, 49.175156598000044 ], [ -122.896790478999918, 49.176193314000059 ], [ -122.895699187, 49.176209603000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "850362923", "BldgCostT": "544340090", "sL_LossRatio": "0.708907271606213", "sL_AssetLoss": "9585090", "sL_BldgLoss": "6794940", "sL_StrLoss": "2591350", "sL_NStrLoss": "4203590", "sL_ContLoss": "2790150", "geom_point": "0101000020E61000003D3FFED222B95EC0FFAA8EE23D964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890127716999956, 49.176100194000092 ], [ -122.890126959999947, 49.17504605000002 ], [ -122.890131273999899, 49.174510102000056 ], [ -122.890133940999988, 49.174019136000034 ], [ -122.890138550999936, 49.173823396000095 ], [ -122.890158897999981, 49.172969296000105 ], [ -122.890159092999937, 49.172960265000029 ], [ -122.890194301999912, 49.171381008000026 ], [ -122.890194513999973, 49.171371999000023 ], [ -122.890217710999949, 49.170450886000097 ], [ -122.890277100999953, 49.170451498000105 ], [ -122.89031359699996, 49.170451900000074 ], [ -122.890441787999976, 49.17045279500006 ], [ -122.890935461999916, 49.170456318000028 ], [ -122.891209963999955, 49.170458291000131 ], [ -122.892054188999978, 49.170464304000035 ], [ -122.892383197999962, 49.170466608000069 ], [ -122.895736907999961, 49.17051110000012 ], [ -122.895716907999912, 49.173378397000135 ], [ -122.894258997999955, 49.173380508000051 ], [ -122.894244203999946, 49.174176482000043 ], [ -122.894590086999969, 49.175506398000088 ], [ -122.895704597999924, 49.175513295000037 ], [ -122.895699187, 49.176209603000139 ], [ -122.895682792999978, 49.177132690000121 ], [ -122.894048929999926, 49.177135688000085 ], [ -122.893321734999915, 49.177137015000021 ], [ -122.890219801999962, 49.177142631000059 ], [ -122.890165869999976, 49.177142849000091 ], [ -122.89011005899999, 49.177143053000094 ], [ -122.89011025399995, 49.177134022000068 ], [ -122.890127716999956, 49.176100194000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99080333", "BldgCostT": "65648333", "sL_LossRatio": "0.722994404041777", "sL_AssetLoss": "1765560", "sL_BldgLoss": "1276490", "sL_StrLoss": "553180", "sL_NStrLoss": "723310", "sL_ContLoss": "489070", "geom_point": "0101000020E61000004167EB434BB95EC0BF66E2EBA5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.892420893999912, 49.168219697000048 ], [ -122.892441675999947, 49.167950003000037 ], [ -122.892480798999912, 49.16789891000009 ], [ -122.892571886999988, 49.167849295000096 ], [ -122.893761803999922, 49.167893496000026 ], [ -122.894674103999961, 49.168193693000084 ], [ -122.895502015999938, 49.167500397000062 ], [ -122.895763797999933, 49.167604414000074 ], [ -122.897989897999977, 49.167613596000095 ], [ -122.897967427999959, 49.168052600000081 ], [ -122.897828691999948, 49.168692793000091 ], [ -122.897800015999906, 49.169918712000026 ], [ -122.897785717, 49.170529609000013 ], [ -122.895736907999961, 49.17051110000012 ], [ -122.892383197999962, 49.170466608000069 ], [ -122.892396000999966, 49.170073502000029 ], [ -122.892405379999957, 49.169786093000084 ], [ -122.892420893999912, 49.168219697000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47806084", "BldgCostT": "30288334", "sL_LossRatio": "0.703033869491304", "sL_AssetLoss": "764700", "sL_BldgLoss": "537610", "sL_StrLoss": "233810", "sL_NStrLoss": "303800", "sL_ContLoss": "227090", "geom_point": "0101000020E61000006448A16E18B95EC0197F918689954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890224607000022, 49.169178898999988 ], [ -122.890217286999928, 49.168174325000081 ], [ -122.89021702399999, 49.168137138000077 ], [ -122.890207373999942, 49.166812397000058 ], [ -122.890312462999958, 49.166813059000127 ], [ -122.890365103999969, 49.16681340000013 ], [ -122.892191849999932, 49.166827324000018 ], [ -122.894243505999967, 49.166842904000099 ], [ -122.895665779999916, 49.166853696000025 ], [ -122.895665495999964, 49.167166408000064 ], [ -122.895606193999967, 49.167376408000109 ], [ -122.895502015999938, 49.167500397000062 ], [ -122.894674103999961, 49.168193693000084 ], [ -122.893761803999922, 49.167893496000026 ], [ -122.892571886999988, 49.167849295000096 ], [ -122.892480798999912, 49.16789891000009 ], [ -122.892441675999947, 49.167950003000037 ], [ -122.892420893999912, 49.168219697000048 ], [ -122.892405379999957, 49.169786093000084 ], [ -122.892396000999966, 49.170073502000029 ], [ -122.892383197999962, 49.170466608000069 ], [ -122.892054188999978, 49.170464304000035 ], [ -122.891209963999955, 49.170458291000131 ], [ -122.890935461999916, 49.170456318000028 ], [ -122.890441787999976, 49.17045279500006 ], [ -122.89031359699996, 49.170451900000074 ], [ -122.890277100999953, 49.170451498000105 ], [ -122.890217710999949, 49.170450886000097 ], [ -122.890217745999976, 49.170441823000054 ], [ -122.890221245999967, 49.169797473000045 ], [ -122.890221423999918, 49.169766535000129 ], [ -122.890224554999989, 49.169187996000055 ], [ -122.890224607000022, 49.169178898999988 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240736459", "BldgCostT": "149419716", "sL_LossRatio": "0.656244386380338", "sL_AssetLoss": "4898800", "sL_BldgLoss": "3214810", "sL_StrLoss": "1340250", "sL_NStrLoss": "1874560", "sL_ContLoss": "1683990", "geom_point": "0101000020E61000007E500E6E44B95EC03FA0E02029954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890267496999968, 49.163208400000059 ], [ -122.890388951999938, 49.1632088960001 ], [ -122.890414188999955, 49.163208992000058 ], [ -122.890966409999947, 49.163213302000045 ], [ -122.891776864999969, 49.163210004000071 ], [ -122.891926406, 49.16320939800007 ], [ -122.89272409099999, 49.163212688000044 ], [ -122.893049934999937, 49.163215371000049 ], [ -122.893187702999953, 49.16321650200009 ], [ -122.893873280999955, 49.163222122000121 ], [ -122.894602693999957, 49.163228112000077 ], [ -122.894609097999989, 49.163748195000046 ], [ -122.894610596999883, 49.163931099000081 ], [ -122.894612534999965, 49.164266313000077 ], [ -122.89461901599995, 49.16538560000005 ], [ -122.894632730999916, 49.165385659000016 ], [ -122.896003331, 49.165392203000067 ], [ -122.897381101999926, 49.165393991000059 ], [ -122.897382285999967, 49.164041697000073 ], [ -122.89850820599996, 49.164056999000067 ], [ -122.898496707, 49.165051385000069 ], [ -122.899622183999938, 49.165053101000055 ], [ -122.899626702, 49.164061310000108 ], [ -122.900951709999958, 49.164073305000045 ], [ -122.900924124999918, 49.164709171000055 ], [ -122.900920088999925, 49.164802018000067 ], [ -122.90090069699994, 49.165249386000063 ], [ -122.900852717999967, 49.16539399200007 ], [ -122.900734402999959, 49.165543811000092 ], [ -122.900585275999944, 49.16566110200003 ], [ -122.900358185999963, 49.165777093000045 ], [ -122.900191, 49.165920110000073 ], [ -122.900046000999978, 49.166099699000071 ], [ -122.90002469800001, 49.166871184000058 ], [ -122.899080992, 49.166878289000067 ], [ -122.897481644999985, 49.166866795000075 ], [ -122.895665779999916, 49.166853696000025 ], [ -122.894243505999967, 49.166842904000099 ], [ -122.892191849999932, 49.166827324000018 ], [ -122.890365103999969, 49.16681340000013 ], [ -122.890312462999958, 49.166813059000127 ], [ -122.890207373999942, 49.166812397000058 ], [ -122.890267496999968, 49.163208400000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88081334", "BldgCostT": "58303334", "sL_LossRatio": "0.722129173705208", "sL_AssetLoss": "1391150", "sL_BldgLoss": "1004590", "sL_StrLoss": "448040", "sL_NStrLoss": "556550", "sL_ContLoss": "386560", "geom_point": "0101000020E610000001C8D0B183B95EC0AA4C08880F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900924124999918, 49.164709171000055 ], [ -122.900951709999958, 49.164073305000045 ], [ -122.899626702, 49.164061310000108 ], [ -122.899622183999938, 49.165053101000055 ], [ -122.898496707, 49.165051385000069 ], [ -122.89850820599996, 49.164056999000067 ], [ -122.897382285999967, 49.164041697000073 ], [ -122.897381101999926, 49.165393991000059 ], [ -122.896003331, 49.165392203000067 ], [ -122.894632730999916, 49.165385659000016 ], [ -122.89461901599995, 49.16538560000005 ], [ -122.894612534999965, 49.164266313000077 ], [ -122.894610596999883, 49.163931099000081 ], [ -122.894609097999989, 49.163748195000046 ], [ -122.894602693999957, 49.163228112000077 ], [ -122.895125819999947, 49.163229892000096 ], [ -122.89543675199999, 49.163230976000122 ], [ -122.897367398999933, 49.163237607000099 ], [ -122.90088101500001, 49.163240595000033 ], [ -122.902140106999937, 49.163254289000058 ], [ -122.90209427799999, 49.165998294000119 ], [ -122.902088599999956, 49.166186386000099 ], [ -122.902016726999989, 49.166545596000027 ], [ -122.901870191999961, 49.166891906000075 ], [ -122.90002469800001, 49.166871184000058 ], [ -122.900046000999978, 49.166099699000071 ], [ -122.900191, 49.165920110000073 ], [ -122.900358185999963, 49.165777093000045 ], [ -122.900585275999944, 49.16566110200003 ], [ -122.900734402999959, 49.165543811000092 ], [ -122.900852717999967, 49.16539399200007 ], [ -122.90090069699994, 49.165249386000063 ], [ -122.900920088999925, 49.164802018000067 ], [ -122.900924124999918, 49.164709171000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54958084", "BldgCostT": "36198334", "sL_LossRatio": "0.706983433654717", "sL_AssetLoss": "938650", "sL_BldgLoss": "663610", "sL_StrLoss": "286750", "sL_NStrLoss": "376860", "sL_ContLoss": "275040", "geom_point": "0101000020E610000006CF21FC8DB95EC050C6D72292954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.897828691999948, 49.168692793000091 ], [ -122.897967427999959, 49.168052600000081 ], [ -122.897989897999977, 49.167613596000095 ], [ -122.895763797999933, 49.167604414000074 ], [ -122.895502015999938, 49.167500397000062 ], [ -122.895606193999967, 49.167376408000109 ], [ -122.895665495999964, 49.167166408000064 ], [ -122.895665779999916, 49.166853696000025 ], [ -122.897481644999985, 49.166866795000075 ], [ -122.899080992, 49.166878289000067 ], [ -122.90002469800001, 49.166871184000058 ], [ -122.901870191999961, 49.166891906000075 ], [ -122.901405500999957, 49.16779660800006 ], [ -122.90139804899998, 49.167824637000137 ], [ -122.901277486, 49.168276807999987 ], [ -122.901274575999963, 49.168697056000013 ], [ -122.901273631999942, 49.168833531000097 ], [ -122.901270260999922, 49.169311012000051 ], [ -122.901261393999974, 49.170575596000027 ], [ -122.900524901999916, 49.170567157000065 ], [ -122.898500517999977, 49.170543900000034 ], [ -122.897785717, 49.170529609000013 ], [ -122.897800015999906, 49.169918712000026 ], [ -122.897828691999948, 49.168692793000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74519750", "BldgCostT": "50240000", "sL_LossRatio": "0.729133565333313", "sL_AssetLoss": "1290230", "sL_BldgLoss": "940750", "sL_StrLoss": "396350", "sL_NStrLoss": "544400", "sL_ContLoss": "349480", "geom_point": "0101000020E61000008B23E6C464B95EC06FEDE98F55944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900031485999989, 49.158071412 ], [ -122.901043010999956, 49.15807531100009 ], [ -122.901044297999931, 49.159556613000134 ], [ -122.899816191999989, 49.159553695000064 ], [ -122.897969901999915, 49.159549097000117 ], [ -122.89585267199999, 49.159556308000099 ], [ -122.894082592999936, 49.159562304000183 ], [ -122.893118316999988, 49.159569612000077 ], [ -122.891664507999977, 49.159579883000056 ], [ -122.89168011799994, 49.159141498000075 ], [ -122.891749592999972, 49.159086799000093 ], [ -122.89390238499999, 49.158256901000044 ], [ -122.894212011999983, 49.158137897000103 ], [ -122.894496411999981, 49.158086597000086 ], [ -122.897298287999931, 49.158068315000065 ], [ -122.900031485999989, 49.158071412 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81913750", "BldgCostT": "55285000", "sL_LossRatio": "0.731947128253877", "sL_AssetLoss": "1348622", "sL_BldgLoss": "987120", "sL_StrLoss": "447680", "sL_NStrLoss": "539440", "sL_ContLoss": "361502", "geom_point": "0101000020E6100000D1253517ECB95EC0362A81DE65944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.902143199999941, 49.159564792000054 ], [ -122.902143298999988, 49.158061896000042 ], [ -122.903277413999916, 49.158076505000047 ], [ -122.907798285999888, 49.158119105000026 ], [ -122.907814589999958, 49.158801594000082 ], [ -122.90792849199994, 49.159295008000072 ], [ -122.907940804999924, 49.159624314000077 ], [ -122.908378465999945, 49.159629596000137 ], [ -122.908972291999973, 49.159636794000058 ], [ -122.908968398999932, 49.160355604000124 ], [ -122.905194106999929, 49.16033730700007 ], [ -122.903449915999886, 49.160323190000071 ], [ -122.903461817, 49.161071395000093 ], [ -122.902134989999965, 49.161066504000061 ], [ -122.902143199999941, 49.159564792000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141717250", "BldgCostT": "89560000", "sL_LossRatio": "0.702942746252261", "sL_AssetLoss": "1929830", "sL_BldgLoss": "1356560", "sL_StrLoss": "605540", "sL_NStrLoss": "751020", "sL_ContLoss": "573270", "geom_point": "0101000020E6100000D5E717E30BBA5EC0D5973A0217944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.907814589999958, 49.158801594000082 ], [ -122.907798285999888, 49.158119105000026 ], [ -122.903277413999916, 49.158076505000047 ], [ -122.902143298999988, 49.158061896000042 ], [ -122.901929798999916, 49.157356586000084 ], [ -122.90162200099995, 49.156627789000048 ], [ -122.901523196999975, 49.155908695000072 ], [ -122.90150268099994, 49.154118695000058 ], [ -122.904020714999973, 49.154159588000034 ], [ -122.903998604999941, 49.155005996000057 ], [ -122.905652991999943, 49.155027396000023 ], [ -122.905680626999924, 49.155027989000068 ], [ -122.90576629, 49.154706290000036 ], [ -122.905768686999963, 49.154174790000084 ], [ -122.906958518999929, 49.154195502000093 ], [ -122.906954393999939, 49.155967591000035 ], [ -122.908372275999952, 49.155988300000068 ], [ -122.908660164999958, 49.155992515000051 ], [ -122.910661615999942, 49.15602169800006 ], [ -122.910908631999945, 49.156025296000102 ], [ -122.912377409000015, 49.156046705000122 ], [ -122.912377750999894, 49.15665225900009 ], [ -122.912378202999918, 49.157425856000017 ], [ -122.91237840899997, 49.157725306000017 ], [ -122.912377405999933, 49.15932387400003 ], [ -122.912377191999951, 49.159662386000072 ], [ -122.911123496999906, 49.159653502000026 ], [ -122.910806187999967, 49.159651029000052 ], [ -122.908972291999973, 49.159636794000058 ], [ -122.908378465999945, 49.159629596000137 ], [ -122.907940804999924, 49.159624314000077 ], [ -122.90792849199994, 49.159295008000072 ], [ -122.907814589999958, 49.158801594000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178939251", "BldgCostT": "117305001", "sL_LossRatio": "0.700247922532278", "sL_AssetLoss": "3996813", "sL_BldgLoss": "2798760", "sL_StrLoss": "1208660", "sL_NStrLoss": "1590100", "sL_ContLoss": "1198053", "geom_point": "0101000020E6100000F1F49530A8BA5EC0F167AAED47944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.915303713999961, 49.160390500000027 ], [ -122.915289585, 49.15967379500011 ], [ -122.915275851999965, 49.159673717000089 ], [ -122.913346387999979, 49.159663215000101 ], [ -122.912377191999951, 49.159662386000072 ], [ -122.912377405999933, 49.15932387400003 ], [ -122.91237840899997, 49.157725306000017 ], [ -122.912378202999918, 49.157425856000017 ], [ -122.912377750999894, 49.15665225900009 ], [ -122.912377409000015, 49.156046705000122 ], [ -122.913870682999942, 49.156052576000086 ], [ -122.914926880999957, 49.156056706000065 ], [ -122.916998478, 49.156064796000052 ], [ -122.918041102999922, 49.156051412000089 ], [ -122.918863291, 49.156055103000064 ], [ -122.918884093999921, 49.156880100000052 ], [ -122.919002394999936, 49.156955611000086 ], [ -122.919550100999984, 49.15696491200007 ], [ -122.919645394, 49.15703699800013 ], [ -122.919729325999967, 49.157591702000062 ], [ -122.919867594999971, 49.158442594000128 ], [ -122.920018678999938, 49.15930739200013 ], [ -122.92017139099994, 49.160168601000109 ], [ -122.920209879999945, 49.160208403000134 ], [ -122.920323406999955, 49.160253999000062 ], [ -122.920701514999934, 49.160299997000045 ], [ -122.921458412000021, 49.160010244000077 ], [ -122.92150639, 49.160276865000078 ], [ -122.921537395999962, 49.160449092000107 ], [ -122.920594003999966, 49.16088798099999 ], [ -122.920203857, 49.161032257000031 ], [ -122.920050495999973, 49.161088962000093 ], [ -122.919992486999931, 49.161110389000044 ], [ -122.919033691999957, 49.16136679100012 ], [ -122.917383386999944, 49.161630400000099 ], [ -122.917419922999954, 49.161431887000028 ], [ -122.917423168999974, 49.161414137000044 ], [ -122.917428419, 49.161385705000058 ], [ -122.91743480699995, 49.160442581000062 ], [ -122.917184393999932, 49.16039389400003 ], [ -122.916355597999924, 49.160384601000132 ], [ -122.915348696999942, 49.160373815000099 ], [ -122.915303713999961, 49.160390500000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115822678", "BldgCostT": "70115616", "sL_LossRatio": "0.675202038380772", "sL_AssetLoss": "1725291", "sL_BldgLoss": "1164920", "sL_StrLoss": "465170", "sL_NStrLoss": "699750", "sL_ContLoss": "560371", "geom_point": "0101000020E6100000A75FD0DF17BA5EC0FDFDD5C2B0934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906954393999939, 49.155967591000035 ], [ -122.906958518999929, 49.154195502000093 ], [ -122.905768686999963, 49.154174790000084 ], [ -122.90576629, 49.154706290000036 ], [ -122.905680626999924, 49.155027989000068 ], [ -122.905652991999943, 49.155027396000023 ], [ -122.903998604999941, 49.155005996000057 ], [ -122.904020714999973, 49.154159588000034 ], [ -122.90150268099994, 49.154118695000058 ], [ -122.901486262999953, 49.152892699000063 ], [ -122.901477217999954, 49.152217804000024 ], [ -122.90696669, 49.152218002000048 ], [ -122.908618498999942, 49.15221590900007 ], [ -122.910822491999966, 49.152216088000088 ], [ -122.912455299, 49.15223140300003 ], [ -122.912395282999952, 49.154270503000092 ], [ -122.91239043, 49.154754079000064 ], [ -122.912377409000015, 49.156046705000122 ], [ -122.910908631999945, 49.156025296000102 ], [ -122.910661615999942, 49.15602169800006 ], [ -122.908660164999958, 49.155992515000051 ], [ -122.908372275999952, 49.155988300000068 ], [ -122.906954393999939, 49.155967591000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82944895", "BldgCostT": "54581524", "sL_LossRatio": "0.696417850710426", "sL_AssetLoss": "1649010", "sL_BldgLoss": "1148400", "sL_StrLoss": "510120", "sL_NStrLoss": "638280", "sL_ContLoss": "500610", "geom_point": "0101000020E6100000FF64B58E24BA5EC05A226129DC924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904183559999979, 49.148018934000063 ], [ -122.90419250799999, 49.147687199000124 ], [ -122.904199617999922, 49.147045005000045 ], [ -122.905218084999959, 49.147042801000119 ], [ -122.905528300999919, 49.147117515000083 ], [ -122.905315292999916, 49.147435707000049 ], [ -122.905347409999976, 49.147570907000038 ], [ -122.905534687999989, 49.147680804000082 ], [ -122.905821443999912, 49.147735401000062 ], [ -122.906008400999937, 49.147770994000069 ], [ -122.906498804999956, 49.14777429100009 ], [ -122.907751403999939, 49.147733695000078 ], [ -122.907746319999916, 49.147501101000103 ], [ -122.907575703999939, 49.147284504 ], [ -122.907560192999981, 49.146961394000137 ], [ -122.907579432999938, 49.146197909000108 ], [ -122.908235108999961, 49.145261704000049 ], [ -122.908467590999948, 49.145330590000057 ], [ -122.908792996999978, 49.145362399000078 ], [ -122.910324811999914, 49.14536769100004 ], [ -122.910307404999983, 49.146146590000122 ], [ -122.911429704999989, 49.146127387000043 ], [ -122.911390378999954, 49.14764810000004 ], [ -122.911390501999932, 49.148658103000081 ], [ -122.910325711999945, 49.148656410000108 ], [ -122.908821712999966, 49.148642001000049 ], [ -122.908081599999917, 49.148643308000054 ], [ -122.906992675999959, 49.148632694000106 ], [ -122.905587708999988, 49.148627290000022 ], [ -122.904984280999969, 49.148624953000123 ], [ -122.904167295999983, 49.148621800000065 ], [ -122.904183559999979, 49.148018934000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53309168", "BldgCostT": "36291668", "sL_LossRatio": "0.721362803618958", "sL_AssetLoss": "1099322", "sL_BldgLoss": "793010", "sL_StrLoss": "344200", "sL_NStrLoss": "448810", "sL_ContLoss": "306312", "geom_point": "0101000020E6100000816731676CBA5EC0015C3574D8924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911390378999954, 49.14764810000004 ], [ -122.911429704999989, 49.146127387000043 ], [ -122.910307404999983, 49.146146590000122 ], [ -122.910324811999914, 49.14536769100004 ], [ -122.911479723999946, 49.145354001000094 ], [ -122.91257711499992, 49.145337690000119 ], [ -122.912580289999966, 49.145909989000124 ], [ -122.912578995999937, 49.145990998000087 ], [ -122.912574846999973, 49.146235664000066 ], [ -122.912569580999957, 49.146544894000115 ], [ -122.913750802999942, 49.14654720000005 ], [ -122.913897493999968, 49.146567613000052 ], [ -122.914064792999966, 49.146628288000045 ], [ -122.914461493999937, 49.14694870300012 ], [ -122.914651000999967, 49.146984790000147 ], [ -122.914750406999971, 49.146985701000069 ], [ -122.915338601999949, 49.14699100400005 ], [ -122.91531441799998, 49.147685890000091 ], [ -122.915303883999925, 49.148546897000116 ], [ -122.912530488999948, 49.14864130800003 ], [ -122.911390501999932, 49.148658103000081 ], [ -122.911390378999954, 49.14764810000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "552582909", "BldgCostT": "322199799", "sL_LossRatio": "0.615137122963235", "sL_AssetLoss": "12649960", "sL_BldgLoss": "7781460", "sL_StrLoss": "2651470", "sL_NStrLoss": "5129990", "sL_ContLoss": "4868500", "geom_point": "0101000020E6100000904F884618B85EC013F6070C0A944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.875480114999959, 49.163006957000029 ], [ -122.873543793999914, 49.162905094000052 ], [ -122.871229613999958, 49.162761263000071 ], [ -122.87074727199996, 49.162733453000058 ], [ -122.870472688999953, 49.162717647000079 ], [ -122.870021046999966, 49.162691585000047 ], [ -122.869746429999935, 49.162675789000104 ], [ -122.868076197999926, 49.162579465000057 ], [ -122.867962348, 49.16258066200011 ], [ -122.867965433, 49.16070304100009 ], [ -122.867976770999917, 49.158947292000036 ], [ -122.867974078999936, 49.157419991000069 ], [ -122.86796272699992, 49.15534999300008 ], [ -122.867926328999914, 49.150252740000028 ], [ -122.867914183, 49.148133178000109 ], [ -122.868033483999938, 49.14813213700004 ], [ -122.869949572999971, 49.148184135000079 ], [ -122.870801110999963, 49.14820724000009 ], [ -122.8721313, 49.148237811000065 ], [ -122.873252707999924, 49.14826148600006 ], [ -122.873760837999924, 49.148272225000014 ], [ -122.874199603999955, 49.148281483000119 ], [ -122.874652087999962, 49.148291030000017 ], [ -122.874858022999931, 49.14829537400005 ], [ -122.875536407999917, 49.148309707000024 ], [ -122.876969224999954, 49.148349470000092 ], [ -122.877531593999933, 49.148365066000025 ], [ -122.878134501999938, 49.148381807000099 ], [ -122.87910421399999, 49.148408689000078 ], [ -122.879104108999954, 49.149207907000047 ], [ -122.879103495999971, 49.149506849000069 ], [ -122.879102357999926, 49.150046571000097 ], [ -122.879102088999943, 49.150181496000123 ], [ -122.879102008999922, 49.150219698000079 ], [ -122.879103614999948, 49.151217197000072 ], [ -122.879102621999962, 49.151629750000048 ], [ -122.879101652999935, 49.152021754000039 ], [ -122.881256013999987, 49.152067998000057 ], [ -122.881290572999987, 49.150090925000036 ], [ -122.882066416999976, 49.15030560800011 ], [ -122.882686200999942, 49.150320882000081 ], [ -122.882684898999926, 49.150606487000054 ], [ -122.882683013999952, 49.152107508000043 ], [ -122.882679263999961, 49.15333360400011 ], [ -122.882677500999975, 49.153918261000037 ], [ -122.882675763999899, 49.154484956000069 ], [ -122.882675514999931, 49.154565905000048 ], [ -122.882675290999927, 49.154634594000079 ], [ -122.882599009999979, 49.154934296000114 ], [ -122.882422403999911, 49.155319293000062 ], [ -122.882411097999949, 49.155795595000058 ], [ -122.884910092999974, 49.15585629400006 ], [ -122.884904507999963, 49.156635508000129 ], [ -122.883717008999952, 49.156620008000061 ], [ -122.88367000199996, 49.157771909000061 ], [ -122.883486184999967, 49.1578549090001 ], [ -122.883101397999937, 49.157930295000021 ], [ -122.882340992999943, 49.157965001000086 ], [ -122.882317103999952, 49.158730203000061 ], [ -122.882316525999968, 49.158762354000046 ], [ -122.882315623999929, 49.158816324000092 ], [ -122.882302790999958, 49.159556906000056 ], [ -122.882343686999931, 49.15958059600014 ], [ -122.882388618999983, 49.15960620100013 ], [ -122.882546400999971, 49.159625200000058 ], [ -122.8885416899999, 49.159599594000099 ], [ -122.890246586000018, 49.159585793000048 ], [ -122.890251043999967, 49.161949605000046 ], [ -122.890251108999962, 49.161978100000077 ], [ -122.890255121999971, 49.16206199600002 ], [ -122.890267496999968, 49.163208400000059 ], [ -122.88797486699994, 49.163204052000019 ], [ -122.88773150499992, 49.163203591000126 ], [ -122.885670504999894, 49.163208792000063 ], [ -122.885382511999936, 49.163168997000064 ], [ -122.88514079199993, 49.163052989000029 ], [ -122.884891898999982, 49.162859309000098 ], [ -122.884539310999983, 49.1630273990001 ], [ -122.884082388999929, 49.163196188000043 ], [ -122.883522921999955, 49.163259308000143 ], [ -122.883256310999968, 49.163227292000016 ], [ -122.88234341399999, 49.163245893000088 ], [ -122.879083079999958, 49.163225301000054 ], [ -122.877641125999958, 49.163124523000079 ], [ -122.877430580999913, 49.163109803000118 ], [ -122.877292889999978, 49.163102542000082 ], [ -122.87727860699999, 49.163101778000055 ], [ -122.87621879799994, 49.16304579500008 ], [ -122.875480114999959, 49.163006957000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104190167", "BldgCostT": "67291667", "sL_LossRatio": "0.682043961846926", "sL_AssetLoss": "2423920", "sL_BldgLoss": "1653220", "sL_StrLoss": "675970", "sL_NStrLoss": "977250", "sL_ContLoss": "770700", "geom_point": "0101000020E6100000D1AB96AEBFB85EC02556251536944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.888535590999979, 49.155941292000115 ], [ -122.890319084999945, 49.15598020200008 ], [ -122.890300904999947, 49.156804223000073 ], [ -122.890287276999985, 49.157420000000108 ], [ -122.890261180999971, 49.158810209000173 ], [ -122.890246586000018, 49.159585793000048 ], [ -122.8885416899999, 49.159599594000099 ], [ -122.882546400999971, 49.159625200000058 ], [ -122.882388618999983, 49.15960620100013 ], [ -122.882343686999931, 49.15958059600014 ], [ -122.882302790999958, 49.159556906000056 ], [ -122.882315623999929, 49.158816324000092 ], [ -122.882316525999968, 49.158762354000046 ], [ -122.882317103999952, 49.158730203000061 ], [ -122.882340992999943, 49.157965001000086 ], [ -122.883101397999937, 49.157930295000021 ], [ -122.883486184999967, 49.1578549090001 ], [ -122.88367000199996, 49.157771909000061 ], [ -122.883717008999952, 49.156620008000061 ], [ -122.884904507999963, 49.156635508000129 ], [ -122.884910092999974, 49.15585629400006 ], [ -122.885551573000015, 49.155870956000086 ], [ -122.886254100000016, 49.155886986000027 ], [ -122.886735802999908, 49.155899203000033 ], [ -122.888535590999979, 49.155941292000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216649303", "BldgCostT": "142728746", "sL_LossRatio": "0.709016779428909", "sL_AssetLoss": "3142896", "sL_BldgLoss": "2228366", "sL_StrLoss": "1012986", "sL_NStrLoss": "1215380", "sL_ContLoss": "914530", "geom_point": "0101000020E61000001F648A206BB85EC07F45F97A25954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880748100999966, 49.168652494000106 ], [ -122.88074531699999, 49.166854101000105 ], [ -122.880744071999956, 49.166854099000034 ], [ -122.87921950599997, 49.166851307000066 ], [ -122.879229077, 49.167173672000075 ], [ -122.879240515, 49.167559202000064 ], [ -122.878486236999962, 49.167529243000061 ], [ -122.876450341999956, 49.167448393000015 ], [ -122.876361858999957, 49.167444880000062 ], [ -122.87360650899997, 49.167335390000062 ], [ -122.873584991999977, 49.166430983000126 ], [ -122.873574614999939, 49.165525208000062 ], [ -122.873550088999949, 49.164646004000033 ], [ -122.87354133099997, 49.164154731000025 ], [ -122.873534306999957, 49.163759892000058 ], [ -122.873543793999914, 49.162905094000052 ], [ -122.875480114999959, 49.163006957000029 ], [ -122.87621879799994, 49.16304579500008 ], [ -122.87727860699999, 49.163101778000055 ], [ -122.877292889999978, 49.163102542000082 ], [ -122.877430580999913, 49.163109803000118 ], [ -122.877641125999958, 49.163124523000079 ], [ -122.879083079999958, 49.163225301000054 ], [ -122.88234341399999, 49.163245893000088 ], [ -122.883256310999968, 49.163227292000016 ], [ -122.883522921999955, 49.163259308000143 ], [ -122.884082388999929, 49.163196188000043 ], [ -122.884539310999983, 49.1630273990001 ], [ -122.884891898999982, 49.162859309000098 ], [ -122.88514079199993, 49.163052989000029 ], [ -122.885382511999936, 49.163168997000064 ], [ -122.885670504999894, 49.163208792000063 ], [ -122.88773150499992, 49.163203591000126 ], [ -122.88797486699994, 49.163204052000019 ], [ -122.890267496999968, 49.163208400000059 ], [ -122.890207373999942, 49.166812397000058 ], [ -122.889825338999984, 49.166909732000136 ], [ -122.889587101, 49.166821611000067 ], [ -122.887375286999912, 49.166824305000091 ], [ -122.885505662999904, 49.166832714000087 ], [ -122.883659375999912, 49.166840970000045 ], [ -122.882953561999955, 49.166844129000019 ], [ -122.882199196999977, 49.16684749300007 ], [ -122.882177491999983, 49.167967689000072 ], [ -122.882160202999955, 49.168655605000076 ], [ -122.880748100999966, 49.168652494000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199845144", "BldgCostT": "135281523", "sL_LossRatio": "0.720987077169666", "sL_AssetLoss": "2994700", "sL_BldgLoss": "2159140", "sL_StrLoss": "930160", "sL_NStrLoss": "1228980", "sL_ContLoss": "835560", "geom_point": "0101000020E6100000177DBA91A4B85EC0344ED76E96954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879259507999961, 49.168946078000062 ], [ -122.879245990999905, 49.168437805000082 ], [ -122.879240515, 49.167559202000064 ], [ -122.879229077, 49.167173672000075 ], [ -122.87921950599997, 49.166851307000066 ], [ -122.880744071999956, 49.166854099000034 ], [ -122.88074531699999, 49.166854101000105 ], [ -122.880748100999966, 49.168652494000106 ], [ -122.882160202999955, 49.168655605000076 ], [ -122.882177491999983, 49.167967689000072 ], [ -122.882199196999977, 49.16684749300007 ], [ -122.882953561999955, 49.166844129000019 ], [ -122.883659375999912, 49.166840970000045 ], [ -122.885505662999904, 49.166832714000087 ], [ -122.887375286999912, 49.166824305000091 ], [ -122.889587101, 49.166821611000067 ], [ -122.889825338999984, 49.166909732000136 ], [ -122.890207373999942, 49.166812397000058 ], [ -122.89021702399999, 49.168137138000077 ], [ -122.890217286999928, 49.168174325000081 ], [ -122.890224607000022, 49.169178898999988 ], [ -122.890224554999989, 49.169187996000055 ], [ -122.890221423999918, 49.169766535000129 ], [ -122.890221245999967, 49.169797473000045 ], [ -122.890217745999976, 49.170441823000054 ], [ -122.890217710999949, 49.170450886000097 ], [ -122.887461288999987, 49.170413606000039 ], [ -122.884688792999967, 49.170351490000016 ], [ -122.88278230599991, 49.170297184000049 ], [ -122.880393798999989, 49.17025410300009 ], [ -122.879254609, 49.17020849200005 ], [ -122.879264083999928, 49.169701535000065 ], [ -122.879270482999956, 49.169359297000042 ], [ -122.879259507999961, 49.168946078000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408571427", "BldgCostT": "271150127", "sL_LossRatio": "0.753823675520879", "sL_AssetLoss": "3422100", "sL_BldgLoss": "2579660", "sL_StrLoss": "1138330", "sL_NStrLoss": "1441330", "sL_ContLoss": "842440", "geom_point": "0101000020E610000057E8FF2CC8B85EC0E44BB8C201964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887461288999987, 49.170413606000039 ], [ -122.890217710999949, 49.170450886000097 ], [ -122.890194513999973, 49.171371999000023 ], [ -122.890194301999912, 49.171381008000026 ], [ -122.890159092999937, 49.172960265000029 ], [ -122.890158897999981, 49.172969296000105 ], [ -122.889216896999969, 49.172968215000076 ], [ -122.887440196999989, 49.172981755000052 ], [ -122.887432715999964, 49.173749180000137 ], [ -122.887382798999909, 49.173777453000085 ], [ -122.887340074999983, 49.173801450000092 ], [ -122.884641881999968, 49.173813517000085 ], [ -122.884655806999902, 49.172991284000048 ], [ -122.88466626599994, 49.172153790000038 ], [ -122.88467649899998, 49.171335117000055 ], [ -122.884688792999967, 49.170351490000016 ], [ -122.887461288999987, 49.170413606000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132720168", "BldgCostT": "83806668", "sL_LossRatio": "0.713075275977474", "sL_AssetLoss": "1741990", "sL_BldgLoss": "1242170", "sL_StrLoss": "549600", "sL_NStrLoss": "692570", "sL_ContLoss": "499820", "geom_point": "0101000020E610000000F487A87AB85EC0D5D1404538964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879286307999948, 49.176273097000035 ], [ -122.879278987999939, 49.175502598000037 ], [ -122.881879092999938, 49.17548330000011 ], [ -122.881879312999985, 49.175131904000025 ], [ -122.882308785999953, 49.17449559400012 ], [ -122.882127088999965, 49.174607484000049 ], [ -122.881952313999975, 49.174608920000018 ], [ -122.879286821999941, 49.174630605000068 ], [ -122.87927181100001, 49.173772405000108 ], [ -122.880467200999945, 49.173798103000109 ], [ -122.880528400999978, 49.172988999000076 ], [ -122.880434799999961, 49.172177212000129 ], [ -122.880419576999913, 49.171381997 ], [ -122.880393798999989, 49.17025410300009 ], [ -122.88278230599991, 49.170297184000049 ], [ -122.884688792999967, 49.170351490000016 ], [ -122.88467649899998, 49.171335117000055 ], [ -122.88466626599994, 49.172153790000038 ], [ -122.884655806999902, 49.172991284000048 ], [ -122.884641881999968, 49.173813517000085 ], [ -122.884628989999982, 49.1746186 ], [ -122.884620824999942, 49.175416688000048 ], [ -122.88460828699999, 49.176258699000122 ], [ -122.884602303999955, 49.17669550800013 ], [ -122.884596186999914, 49.177154861000098 ], [ -122.881872802999951, 49.177130109000075 ], [ -122.881874419000013, 49.177106703000042 ], [ -122.881882901999973, 49.176264491000026 ], [ -122.879286307999948, 49.176273097000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "309382227", "BldgCostT": "206294856", "sL_LossRatio": "0.768616163626009", "sL_AssetLoss": "2914940", "sL_BldgLoss": "2240470", "sL_StrLoss": "1036270", "sL_NStrLoss": "1204200", "sL_ContLoss": "674470", "geom_point": "0101000020E6100000C589D93FCDB85EC047FB519A6E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.889216896999969, 49.172968215000076 ], [ -122.890158897999981, 49.172969296000105 ], [ -122.890138550999936, 49.173823396000095 ], [ -122.890133940999988, 49.174019136000034 ], [ -122.890131273999899, 49.174510102000056 ], [ -122.890126959999947, 49.17504605000002 ], [ -122.890127716999956, 49.176100194000092 ], [ -122.89011025399995, 49.177134022000068 ], [ -122.89011005899999, 49.177143053000094 ], [ -122.889809314, 49.177143698000108 ], [ -122.887400366999913, 49.177148877000036 ], [ -122.887395543999929, 49.17714889600007 ], [ -122.884596186999914, 49.177154861000098 ], [ -122.884602303999955, 49.17669550800013 ], [ -122.88460828699999, 49.176258699000122 ], [ -122.884620824999942, 49.175416688000048 ], [ -122.884628989999982, 49.1746186 ], [ -122.884641881999968, 49.173813517000085 ], [ -122.887340074999983, 49.173801450000092 ], [ -122.887382798999909, 49.173777453000085 ], [ -122.887432715999964, 49.173749180000137 ], [ -122.887440196999989, 49.172981755000052 ], [ -122.889216896999969, 49.172968215000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79874228", "BldgCostT": "52314857", "sL_LossRatio": "0.682744755140765", "sL_AssetLoss": "1681170", "sL_BldgLoss": "1147810", "sL_StrLoss": "485620", "sL_NStrLoss": "662190", "sL_ContLoss": "533360", "geom_point": "0101000020E61000001F475AC784B85EC0CF7819CDE3964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887395543999929, 49.17714889600007 ], [ -122.887400366999913, 49.177148877000036 ], [ -122.887397347999979, 49.177205220000083 ], [ -122.887397328999967, 49.177214306000103 ], [ -122.88739311799999, 49.177985347000046 ], [ -122.88738213, 49.178866192000044 ], [ -122.881910906999906, 49.178852112000129 ], [ -122.881885208999961, 49.179746906000069 ], [ -122.881891199999927, 49.180720111 ], [ -122.881867181999908, 49.18256919300012 ], [ -122.880499012999948, 49.182580906000048 ], [ -122.880485904999915, 49.180712801000077 ], [ -122.880504708999979, 49.178858202000043 ], [ -122.880506059999945, 49.178158529000051 ], [ -122.880508097999922, 49.17713288100002 ], [ -122.881872802999951, 49.177130109000075 ], [ -122.884596186999914, 49.177154861000098 ], [ -122.887395543999929, 49.17714889600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65125834", "BldgCostT": "42003334", "sL_LossRatio": "0.672739380080662", "sL_AssetLoss": "1591820", "sL_BldgLoss": "1070880", "sL_StrLoss": "442580", "sL_NStrLoss": "628300", "sL_ContLoss": "520940", "geom_point": "0101000020E61000003DAD365AA9B85EC08F0A9C6C03974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.88738213, 49.178866192000044 ], [ -122.888794886999932, 49.178863773000103 ], [ -122.888777531999921, 49.180721082000055 ], [ -122.887356311999909, 49.180726887000027 ], [ -122.881891199999927, 49.180720111 ], [ -122.881885208999961, 49.179746906000069 ], [ -122.881910906999906, 49.178852112000129 ], [ -122.88738213, 49.178866192000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54158084", "BldgCostT": "33778334", "sL_LossRatio": "0.659002625615941", "sL_AssetLoss": "1112120", "sL_BldgLoss": "732890", "sL_StrLoss": "296300", "sL_NStrLoss": "436590", "sL_ContLoss": "379230", "geom_point": "0101000020E6100000D4DA03C69DB85EC04B34D46A40974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.881891199999927, 49.180720111 ], [ -122.887356311999909, 49.180726887000027 ], [ -122.887379096999908, 49.181614096000047 ], [ -122.88737661499999, 49.182593413000035 ], [ -122.886033115999979, 49.182584286000044 ], [ -122.884646606999951, 49.182582006000061 ], [ -122.881867181999908, 49.18256919300012 ], [ -122.881891199999927, 49.180720111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204411000", "BldgCostT": "138000000", "sL_LossRatio": "0.792159003686447", "sL_AssetLoss": "1850020", "sL_BldgLoss": "1465510", "sL_StrLoss": "637120", "sL_NStrLoss": "828390", "sL_ContLoss": "384510", "geom_point": "0101000020E6100000446D661DE3B85EC0BC99D18F06974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.888777531999921, 49.180721082000055 ], [ -122.888794886999932, 49.178863773000103 ], [ -122.88738213, 49.178866192000044 ], [ -122.88739311799999, 49.177985347000046 ], [ -122.887397328999967, 49.177214306000103 ], [ -122.887397347999979, 49.177205220000083 ], [ -122.887400366999913, 49.177148877000036 ], [ -122.889809314, 49.177143698000108 ], [ -122.89011005899999, 49.177143053000094 ], [ -122.890070701999932, 49.178141107000087 ], [ -122.890038050999976, 49.178875352000013 ], [ -122.890029996999928, 49.179057131000015 ], [ -122.890059685999944, 49.179945443000101 ], [ -122.890054452999962, 49.180740847000074 ], [ -122.890055328999907, 49.180850549000063 ], [ -122.890055556999982, 49.180879193000074 ], [ -122.890068979999938, 49.182614400000055 ], [ -122.888776233999963, 49.182584256000027 ], [ -122.88737661499999, 49.182593413000035 ], [ -122.887379096999908, 49.181614096000047 ], [ -122.887356311999909, 49.180726887000027 ], [ -122.888777531999921, 49.180721082000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76300144", "BldgCostT": "48051523", "sL_LossRatio": "0.699688801938146", "sL_AssetLoss": "986510", "sL_BldgLoss": "690250", "sL_StrLoss": "320930", "sL_NStrLoss": "369320", "sL_ContLoss": "296260", "geom_point": "0101000020E61000002FC303F325B95EC0D652A3043B974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890055328999907, 49.180850549000063 ], [ -122.890054452999962, 49.180740847000074 ], [ -122.890059685999944, 49.179945443000101 ], [ -122.89029531499996, 49.179949553 ], [ -122.89240774699999, 49.179965477000074 ], [ -122.892852377999958, 49.179974737000087 ], [ -122.893421682999971, 49.179959606000047 ], [ -122.893416201999969, 49.180862189000074 ], [ -122.894013661999963, 49.180862411000113 ], [ -122.8952169, 49.180862803000132 ], [ -122.895434972, 49.180924900000022 ], [ -122.896527872999968, 49.180890374000043 ], [ -122.89642931099999, 49.181759498000069 ], [ -122.896427253999946, 49.182690370000074 ], [ -122.896226312999914, 49.182691086000034 ], [ -122.893476792999962, 49.182683916000073 ], [ -122.892788512, 49.182683576000144 ], [ -122.892205407999953, 49.182683290000107 ], [ -122.89164579, 49.182683333000085 ], [ -122.891034172999966, 49.182659548000082 ], [ -122.890913122999947, 49.182654848000013 ], [ -122.890747040999912, 49.182648376000088 ], [ -122.890459872999898, 49.182637216 ], [ -122.890298290999965, 49.182630925000105 ], [ -122.890068979999938, 49.182614400000055 ], [ -122.890055556999982, 49.180879193000074 ], [ -122.890055328999907, 49.180850549000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95369333", "BldgCostT": "61883333", "sL_LossRatio": "0.711747604988853", "sL_AssetLoss": "1327760", "sL_BldgLoss": "945030", "sL_StrLoss": "437450", "sL_NStrLoss": "507580", "sL_ContLoss": "382730", "geom_point": "0101000020E6100000FFF31BC32FB95EC0DFE6A630E3964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893416201999969, 49.180862189000074 ], [ -122.893421682999971, 49.179959606000047 ], [ -122.892852377999958, 49.179974737000087 ], [ -122.89240774699999, 49.179965477000074 ], [ -122.89029531499996, 49.179949553 ], [ -122.890059685999944, 49.179945443000101 ], [ -122.890029996999928, 49.179057131000015 ], [ -122.890038050999976, 49.178875352000013 ], [ -122.890070701999932, 49.178141107000087 ], [ -122.89011005899999, 49.177143053000094 ], [ -122.890165869999976, 49.177142849000091 ], [ -122.890219801999962, 49.177142631000059 ], [ -122.893321734999915, 49.177137015000021 ], [ -122.894048929999926, 49.177135688000085 ], [ -122.895682792999978, 49.177132690000121 ], [ -122.89650799099995, 49.177138404000097 ], [ -122.89654098799997, 49.178143998000024 ], [ -122.89656120099994, 49.179053608000075 ], [ -122.896587804999953, 49.179948193 ], [ -122.896527872999968, 49.180890374000043 ], [ -122.895434972, 49.180924900000022 ], [ -122.8952169, 49.180862803000132 ], [ -122.894013661999963, 49.180862411000113 ], [ -122.893416201999969, 49.180862189000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128079834", "BldgCostT": "84473334", "sL_LossRatio": "0.708733929042718", "sL_AssetLoss": "2121840", "sL_BldgLoss": "1503820", "sL_StrLoss": "666400", "sL_NStrLoss": "837420", "sL_ContLoss": "618020", "geom_point": "0101000020E6100000BC27C43393B95EC05F0C486FF6964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896527872999968, 49.180890374000043 ], [ -122.896587804999953, 49.179948193 ], [ -122.89656120099994, 49.179053608000075 ], [ -122.89654098799997, 49.178143998000024 ], [ -122.89650799099995, 49.177138404000097 ], [ -122.90119230099998, 49.177123806000075 ], [ -122.901200598999964, 49.17817179300004 ], [ -122.901376210999942, 49.178212908000042 ], [ -122.90482478499996, 49.178221097000076 ], [ -122.904823502999989, 49.178652594000035 ], [ -122.90504149899999, 49.179106689000101 ], [ -122.903564893999942, 49.179016506000089 ], [ -122.902646018999945, 49.179017093000056 ], [ -122.902663102999952, 49.179851002000071 ], [ -122.902632801999985, 49.180656492000068 ], [ -122.901279051999964, 49.180581429000064 ], [ -122.901289982999941, 49.18086381300008 ], [ -122.901322195999953, 49.18155220000012 ], [ -122.901328909999975, 49.181760496000038 ], [ -122.898402725, 49.18175278399999 ], [ -122.897574284999934, 49.181750597000132 ], [ -122.89642931099999, 49.181759498000069 ], [ -122.896527872999968, 49.180890374000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154372084", "BldgCostT": "97893334", "sL_LossRatio": "0.711456030130188", "sL_AssetLoss": "1893649", "sL_BldgLoss": "1347248", "sL_StrLoss": "628368", "sL_NStrLoss": "718880", "sL_ContLoss": "546401", "geom_point": "0101000020E610000063E723DF5BB95EC09FABD65791974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891090130999942, 49.184722877000134 ], [ -122.891296411999974, 49.184687344000139 ], [ -122.891631675999932, 49.184629600000065 ], [ -122.89249161399999, 49.184290700000041 ], [ -122.892348285999972, 49.184176694000058 ], [ -122.892217603999939, 49.183916213000067 ], [ -122.892215512999954, 49.183810336000107 ], [ -122.892210721999959, 49.183568207000121 ], [ -122.892205407999953, 49.182683290000107 ], [ -122.892788512, 49.182683576000144 ], [ -122.893476792999962, 49.182683916000073 ], [ -122.896226312999914, 49.182691086000034 ], [ -122.896427253999946, 49.182690370000074 ], [ -122.89642931099999, 49.181759498000069 ], [ -122.897574284999934, 49.181750597000132 ], [ -122.898402725, 49.18175278399999 ], [ -122.901328909999975, 49.181760496000038 ], [ -122.901333217999962, 49.182251599000082 ], [ -122.901339912, 49.182665413000066 ], [ -122.901372368999958, 49.183473604000099 ], [ -122.901289855999948, 49.18448265700011 ], [ -122.900644136999972, 49.184713493000054 ], [ -122.900549574999957, 49.184747292000104 ], [ -122.900493884999932, 49.184760989000054 ], [ -122.899814703999937, 49.184927901000094 ], [ -122.898511755999934, 49.185130985000093 ], [ -122.89814019899994, 49.185232436000078 ], [ -122.897895579999911, 49.185299217000107 ], [ -122.89737730899995, 49.185440692000029 ], [ -122.89701666399999, 49.185594017 ], [ -122.896432228999984, 49.185842494 ], [ -122.895624582, 49.186185859000012 ], [ -122.895323226999949, 49.186313982000073 ], [ -122.894754117999966, 49.186455249000119 ], [ -122.894009889999978, 49.186549120000087 ], [ -122.893135094999977, 49.186667145000072 ], [ -122.893012852999945, 49.186710472000065 ], [ -122.892868058999937, 49.186927035000096 ], [ -122.891016106999984, 49.186914830000077 ], [ -122.890780005999915, 49.186913260000082 ], [ -122.890754131999984, 49.186918648000102 ], [ -122.890772532, 49.18689799000002 ], [ -122.890853020999927, 49.186807575000053 ], [ -122.891422311, 49.186168148000057 ], [ -122.891563399999896, 49.185863181000045 ], [ -122.891580312999963, 49.185610506000053 ], [ -122.891520677999949, 49.185333085000082 ], [ -122.891328500999975, 49.185007697000032 ], [ -122.891090130999942, 49.184722877000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288630477", "BldgCostT": "191354856", "sL_LossRatio": "0.761896198297618", "sL_AssetLoss": "3152877", "sL_BldgLoss": "2402165", "sL_StrLoss": "1130025", "sL_NStrLoss": "1272140", "sL_ContLoss": "750712", "geom_point": "0101000020E6100000216E46B4FAB95EC0F3A9F7AF07974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901289982999941, 49.18086381300008 ], [ -122.901279051999964, 49.180581429000064 ], [ -122.902632801999985, 49.180656492000068 ], [ -122.902663102999952, 49.179851002000071 ], [ -122.902646018999945, 49.179017093000056 ], [ -122.903564893999942, 49.179016506000089 ], [ -122.90504149899999, 49.179106689000101 ], [ -122.904823502999989, 49.178652594000035 ], [ -122.90482478499996, 49.178221097000076 ], [ -122.901376210999942, 49.178212908000042 ], [ -122.901200598999964, 49.17817179300004 ], [ -122.90119230099998, 49.177123806000075 ], [ -122.906797415999961, 49.177120891000087 ], [ -122.908598109999957, 49.177121290000073 ], [ -122.90954209899999, 49.177114102000083 ], [ -122.909677671999972, 49.177115292000096 ], [ -122.910198408999946, 49.177116514000055 ], [ -122.912146697999901, 49.177120982000055 ], [ -122.912985023999937, 49.177122918000094 ], [ -122.913296259999981, 49.177123643000051 ], [ -122.913503393, 49.177124104000036 ], [ -122.913272069999934, 49.177292387000087 ], [ -122.913034481999929, 49.177511488000071 ], [ -122.912658132999965, 49.177863619000064 ], [ -122.912516494999963, 49.177996168000057 ], [ -122.912369911999974, 49.177937370000031 ], [ -122.911310635999925, 49.178832330000063 ], [ -122.911088361999958, 49.178728475000085 ], [ -122.909468836999935, 49.180261805000065 ], [ -122.907403598999963, 49.182129709000051 ], [ -122.906366491999975, 49.182667509000083 ], [ -122.901289855999948, 49.18448265700011 ], [ -122.901372368999958, 49.183473604000099 ], [ -122.901339912, 49.182665413000066 ], [ -122.901333217999962, 49.182251599000082 ], [ -122.901328909999975, 49.181760496000038 ], [ -122.901322195999953, 49.18155220000012 ], [ -122.901289982999941, 49.18086381300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "411766352", "BldgCostT": "227501015", "sL_LossRatio": "0.560004416473446", "sL_AssetLoss": "22642500", "sL_BldgLoss": "12679900", "sL_StrLoss": "4288200", "sL_NStrLoss": "8391700", "sL_ContLoss": "9962600", "geom_point": "0101000020E61000003F0F20091CB95EC0EA19B82CF4984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.869119774999945, 49.209099672000043 ], [ -122.86913087799999, 49.2083798990001 ], [ -122.867444592999959, 49.208375990000093 ], [ -122.867447955000017, 49.208288075000077 ], [ -122.867471214999938, 49.2076758050001 ], [ -122.867481588999951, 49.207359004000104 ], [ -122.867337795999987, 49.20694847200005 ], [ -122.867419303999924, 49.20634990700011 ], [ -122.867420663, 49.206340937000064 ], [ -122.867422149, 49.206331518000113 ], [ -122.867436387999987, 49.206239595000071 ], [ -122.867481534999939, 49.205374391000099 ], [ -122.867515984999955, 49.204712992000033 ], [ -122.86752749499999, 49.204339406000017 ], [ -122.867719998, 49.203864782000061 ], [ -122.867746695999969, 49.203631302000126 ], [ -122.867753052999916, 49.203430928000081 ], [ -122.867756385999954, 49.203325306000096 ], [ -122.867845209, 49.203127893000016 ], [ -122.867987517999907, 49.202949993000061 ], [ -122.868350601999921, 49.20271459 ], [ -122.868059830999982, 49.20205574700006 ], [ -122.869663201999956, 49.202057568000029 ], [ -122.86966462, 49.201517852000045 ], [ -122.870076440999966, 49.201518315000094 ], [ -122.870077772999963, 49.201009825000021 ], [ -122.868430627999984, 49.200961963000111 ], [ -122.868430587999981, 49.200976734000101 ], [ -122.868018771999942, 49.200976265000108 ], [ -122.868017334999976, 49.201515981000057 ], [ -122.867821521999986, 49.201515757000017 ], [ -122.867472137999968, 49.20072406000012 ], [ -122.86752954799999, 49.200645544000068 ], [ -122.867565937999956, 49.200004402 ], [ -122.867602345999927, 49.199362905000058 ], [ -122.868214450999986, 49.199482514000124 ], [ -122.868560839999986, 49.199495120000044 ], [ -122.868581294999956, 49.199495871000067 ], [ -122.868967750999957, 49.199462056000073 ], [ -122.869294696999987, 49.199394959000102 ], [ -122.870111797, 49.199094683000098 ], [ -122.870513958999965, 49.198946892000073 ], [ -122.87110538499995, 49.198729508000035 ], [ -122.871729916999954, 49.19842059500013 ], [ -122.872004253999961, 49.19832322200002 ], [ -122.872090923999949, 49.19829247200007 ], [ -122.872306730999981, 49.198215899000076 ], [ -122.873917071999955, 49.197644384000064 ], [ -122.87426959, 49.197499848000056 ], [ -122.874389992999951, 49.197450477000125 ], [ -122.874309417999982, 49.197327879000106 ], [ -122.874259475999949, 49.19668669900009 ], [ -122.874240700999934, 49.196517052000047 ], [ -122.874575275999945, 49.196002309000065 ], [ -122.874990826999948, 49.195401721000138 ], [ -122.874991561999977, 49.195400651000028 ], [ -122.875065679999963, 49.195293418000041 ], [ -122.875092768999949, 49.195402646000097 ], [ -122.875106980999988, 49.195231896000031 ], [ -122.875321220999936, 49.194907573000123 ], [ -122.875559953999982, 49.194639106000096 ], [ -122.876202469999939, 49.194027879000096 ], [ -122.87717990599999, 49.192910604000055 ], [ -122.877738568999959, 49.192218727000103 ], [ -122.877955807999939, 49.191802496000065 ], [ -122.8783357399999, 49.191808422000065 ], [ -122.878907210999927, 49.191817359000076 ], [ -122.87923650499999, 49.191822488000106 ], [ -122.87954026700001, 49.191836667000132 ], [ -122.880968195, 49.191903217000032 ], [ -122.88109333099996, 49.191909049000081 ], [ -122.882197320999978, 49.191960506000044 ], [ -122.883583832999975, 49.192065048000089 ], [ -122.883981284999919, 49.192095013 ], [ -122.884401195999942, 49.192174733000051 ], [ -122.885306222999986, 49.192385596000094 ], [ -122.88604070400001, 49.192611652000082 ], [ -122.886863862999959, 49.192930912000072 ], [ -122.88811521099997, 49.193477929000039 ], [ -122.888715811999958, 49.193801365000077 ], [ -122.889022275999977, 49.193538099000072 ], [ -122.889146363999956, 49.193426363000071 ], [ -122.889607459999922, 49.192850458000059 ], [ -122.889988068999941, 49.192185713000065 ], [ -122.890159109999942, 49.192192454000057 ], [ -122.890221319999924, 49.191994953000069 ], [ -122.890294970999918, 49.191761226000082 ], [ -122.890350677999905, 49.191584440000035 ], [ -122.890374616999964, 49.19102201700008 ], [ -122.890533375999937, 49.190802267000045 ], [ -122.890718708999941, 49.19069769300016 ], [ -122.891139419999945, 49.190601727000029 ], [ -122.892650675999931, 49.190629111000085 ], [ -122.893230500999948, 49.190717913000036 ], [ -122.897170562999946, 49.187483935000095 ], [ -122.899064794999944, 49.185928957000087 ], [ -122.898656791999912, 49.18567124300003 ], [ -122.898544063999964, 49.185510331000017 ], [ -122.898511755999934, 49.185130985000093 ], [ -122.899814703999937, 49.184927901000094 ], [ -122.900493884999932, 49.184760989000054 ], [ -122.900549574999957, 49.184747292000104 ], [ -122.900644136999972, 49.184713493000054 ], [ -122.901289855999948, 49.18448265700011 ], [ -122.906366491999975, 49.182667509000083 ], [ -122.907403598999963, 49.182129709000051 ], [ -122.909468836999935, 49.180261805000065 ], [ -122.911088361999958, 49.178728475000085 ], [ -122.911310635999925, 49.178832330000063 ], [ -122.912369911999974, 49.177937370000031 ], [ -122.912516494999963, 49.177996168000057 ], [ -122.912658132999965, 49.177863619000064 ], [ -122.913034481999929, 49.177511488000071 ], [ -122.913272069999934, 49.177292387000087 ], [ -122.913503393, 49.177124104000036 ], [ -122.913552591000027, 49.177180737000107 ], [ -122.913681013000016, 49.177215031000074 ], [ -122.9140125979999, 49.17730358900004 ], [ -122.915329335999914, 49.17733710200006 ], [ -122.915408809999946, 49.177332720000031 ], [ -122.915718829999946, 49.177275594000086 ], [ -122.915659495999975, 49.177451300000072 ], [ -122.915412391999936, 49.177388612000087 ], [ -122.91531627900001, 49.177513993000048 ], [ -122.91517770599999, 49.177622197000119 ], [ -122.915204791999926, 49.177748992000076 ], [ -122.915671910999961, 49.177857196000069 ], [ -122.916262110999952, 49.177596600000072 ], [ -122.916487353999969, 49.177160324000084 ], [ -122.916962785999957, 49.177133103000067 ], [ -122.917131640999955, 49.177118967000112 ], [ -122.917345387999916, 49.177101109000034 ], [ -122.917368801999928, 49.177099156000033 ], [ -122.917450188, 49.177092362000089 ], [ -122.919694657999926, 49.177068280000107 ], [ -122.919710001999945, 49.177068327000015 ], [ -122.919417414999941, 49.177697708000053 ], [ -122.919349383999929, 49.177868598000025 ], [ -122.919500617999944, 49.177976798 ], [ -122.918425200999977, 49.179975733000099 ], [ -122.918295124999986, 49.179972010000043 ], [ -122.918294719999963, 49.180218250000053 ], [ -122.918166162999952, 49.180457191000094 ], [ -122.918135956999933, 49.180513331000071 ], [ -122.918016597999952, 49.180513247000121 ], [ -122.918014746999958, 49.180541152000089 ], [ -122.917470916999946, 49.18052558800008 ], [ -122.91747049199999, 49.180782718000088 ], [ -122.917990816999946, 49.180783088000055 ], [ -122.917265086999933, 49.182131871000088 ], [ -122.917056586999962, 49.182131721000097 ], [ -122.917056135999928, 49.182401581000157 ], [ -122.916232809999926, 49.182400986000097 ], [ -122.916232352999941, 49.182670846000086 ], [ -122.915820688999972, 49.182670546000047 ], [ -122.915819820999957, 49.183182443000099 ], [ -122.915758125000011, 49.183210221000081 ], [ -122.915408103999965, 49.18320996500011 ], [ -122.915407643999984, 49.18347982500012 ], [ -122.914995970999897, 49.18347952200007 ], [ -122.914995511, 49.183749383000091 ], [ -122.914757745999935, 49.18374920600008 ], [ -122.914583436, 49.183981521000071 ], [ -122.91458337099999, 49.184018938000072 ], [ -122.914995047999938, 49.184019242000069 ], [ -122.914994864999983, 49.184125202000089 ], [ -122.91490609499999, 49.184251905000075 ], [ -122.914994591999942, 49.184284697000059 ], [ -122.91499418299999, 49.184524614000146 ], [ -122.9149595799999, 49.184575197000093 ], [ -122.914994066999952, 49.184591607000065 ], [ -122.914993865999932, 49.184709102000035 ], [ -122.914722581999968, 49.18509848000005 ], [ -122.914581512999916, 49.18509837600002 ], [ -122.914581164, 49.185301459000051 ], [ -122.914346739999957, 49.185637923000051 ], [ -122.914168893999914, 49.18563778900009 ], [ -122.914168451999927, 49.185893813000071 ], [ -122.913970888999955, 49.186177362000116 ], [ -122.91375626599995, 49.186177202000053 ], [ -122.913755727999956, 49.186486163000062 ], [ -122.913407095999972, 49.18698652000009 ], [ -122.91334315899995, 49.186986472000065 ], [ -122.913342997999962, 49.187078512000134 ], [ -122.91307163099998, 49.18746796500006 ], [ -122.913031243999953, 49.187525957000076 ], [ -122.912930510999971, 49.187525881000042 ], [ -122.912930254999978, 49.187670906000072 ], [ -122.912655361999924, 49.188065393000016 ], [ -122.912517853999987, 49.1880652890001 ], [ -122.912517503999979, 49.188263219000113 ], [ -122.912455494999961, 49.188352203000086 ], [ -122.912085195999921, 49.188261011000073 ], [ -122.91166, 49.188927601000032 ], [ -122.911343097999946, 49.188963189000027 ], [ -122.911009594999882, 49.189413435000077 ], [ -122.910868589999922, 49.189413326000057 ], [ -122.910868246999954, 49.189604261000092 ], [ -122.910530814999959, 49.190059797000075 ], [ -122.910540940999908, 49.190140833000044 ], [ -122.910551165999919, 49.19022266000006 ], [ -122.910043678999926, 49.190222265000088 ], [ -122.91004320899998, 49.190482257000035 ], [ -122.909994591, 49.190491388000112 ], [ -122.909815983999977, 49.190589601000084 ], [ -122.909555105, 49.190977393000033 ], [ -122.909518747000021, 49.191031434000067 ], [ -122.909218742999968, 49.191031198000147 ], [ -122.909218249, 49.191301057000047 ], [ -122.908806512999959, 49.191300733000013 ], [ -122.908805141999963, 49.192046691000073 ], [ -122.908550358999946, 49.192379969000115 ], [ -122.908392781999964, 49.192379844000065 ], [ -122.908392399999983, 49.19258658800004 ], [ -122.908194389999949, 49.192845595000087 ], [ -122.907751868999981, 49.193188912000075 ], [ -122.907567782999934, 49.193188765000045 ], [ -122.907567515999915, 49.193331933000103 ], [ -122.907404380999978, 49.193458494000012 ], [ -122.907155524999951, 49.193458294000095 ], [ -122.907155020999966, 49.193728153000066 ], [ -122.90674326499996, 49.193727821000046 ], [ -122.906742755999915, 49.193997680000031 ], [ -122.90638771899998, 49.193997393000096 ], [ -122.906375462999947, 49.194181453000063 ], [ -122.906282386, 49.194194294000042 ], [ -122.906186983999973, 49.194617290000082 ], [ -122.905828804999942, 49.194894998000144 ], [ -122.904880816999949, 49.195568704 ], [ -122.904002508999952, 49.195523107000064 ], [ -122.904030096000028, 49.195766598000077 ], [ -122.904495893999979, 49.195964596000096 ], [ -122.904482391000016, 49.196037200000028 ], [ -122.903947318999968, 49.196054298000028 ], [ -122.903314983999948, 49.196323496000097 ], [ -122.902557711, 49.196836197000039 ], [ -122.90227750899993, 49.197087442000033 ], [ -122.901795550999964, 49.197073583000083 ], [ -122.901794666999933, 49.197520378000071 ], [ -122.9017872899999, 49.197526991000068 ], [ -122.900827698999976, 49.197149488000051 ], [ -122.900691582999968, 49.197185098000077 ], [ -122.900785904999978, 49.197320383000061 ], [ -122.90136371599999, 49.197626604000035 ], [ -122.901444321999961, 49.19777050400009 ], [ -122.899327520999975, 49.199270202000015 ], [ -122.898654585999964, 49.199935309000068 ], [ -122.898599092999945, 49.200205910000108 ], [ -122.898835258999938, 49.200467648000071 ], [ -122.898082510999984, 49.200466986000016 ], [ -122.898080750999924, 49.20132346 ], [ -122.897772193999955, 49.20149051000007 ], [ -122.89772346599996, 49.201546105000055 ], [ -122.897566437999942, 49.201545965000058 ], [ -122.89755347599997, 49.201740044000083 ], [ -122.897346480999914, 49.201976199000057 ], [ -122.896901319999927, 49.202284288000065 ], [ -122.896843293999936, 49.20228261700008 ], [ -122.896843206999961, 49.202324506000089 ], [ -122.896799347999931, 49.202354860000042 ], [ -122.896019487999936, 49.20235416100013 ], [ -122.896018351999942, 49.20289535700006 ], [ -122.895631048999945, 49.203163388000114 ], [ -122.89560595599994, 49.20316336500013 ], [ -122.895605918999962, 49.203180780000018 ], [ -122.895255599999942, 49.203423210000047 ], [ -122.893688588999936, 49.204770498000123 ], [ -122.893631798999962, 49.204959897000052 ], [ -122.891735022999967, 49.206505203000063 ], [ -122.891564532, 49.206700487000091 ], [ -122.891559124999944, 49.20669860000006 ], [ -122.889542449999979, 49.205995213000037 ], [ -122.888889290999913, 49.205767390000055 ], [ -122.888053797999945, 49.205600903000047 ], [ -122.887796677999944, 49.205583863000108 ], [ -122.88744989099996, 49.205560911000127 ], [ -122.886836210999903, 49.205612437000035 ], [ -122.886245052999982, 49.205662097000129 ], [ -122.885262598999958, 49.205744598000152 ], [ -122.885214694999945, 49.205748469000056 ], [ -122.88457406799999, 49.205799070000097 ], [ -122.884202215999935, 49.205828442000104 ], [ -122.884010287999956, 49.205843859000012 ], [ -122.88385423699998, 49.205856356 ], [ -122.883840200999941, 49.205857507000118 ], [ -122.883224364999961, 49.205894943000018 ], [ -122.881329702999963, 49.2060101080001 ], [ -122.878623082999979, 49.206129648000093 ], [ -122.877917906999969, 49.206160778000019 ], [ -122.877780891000015, 49.206166824000036 ], [ -122.877667167999959, 49.206171849000086 ], [ -122.877054490999981, 49.206198891000106 ], [ -122.876893693999975, 49.206206009 ], [ -122.876517598999925, 49.206247297000061 ], [ -122.875556058999919, 49.206302345000083 ], [ -122.874437155999956, 49.206292614000084 ], [ -122.873560608999981, 49.206284997000083 ], [ -122.870900695999921, 49.206293189000093 ], [ -122.870885291999954, 49.20674339300006 ], [ -122.870868099999967, 49.206957314000107 ], [ -122.870857195999946, 49.207120105000129 ], [ -122.870852481999989, 49.207678604000058 ], [ -122.870838986999956, 49.208041197000064 ], [ -122.870834875999932, 49.208367297000109 ], [ -122.870848611999918, 49.208958706 ], [ -122.870854821999913, 49.209089510000076 ], [ -122.870853215999915, 49.209827298000036 ], [ -122.869095361999925, 49.209822761000083 ], [ -122.869119774999945, 49.209099672000043 ] ], [ [ -122.872782085999987, 49.200172031000086 ], [ -122.872791890999963, 49.2000263830001 ], [ -122.872457742999956, 49.200016684000055 ], [ -122.872447811999933, 49.200164202000089 ], [ -122.871148278999939, 49.200126472000115 ], [ -122.871108981999967, 49.200709895000095 ], [ -122.872549447999944, 49.200711493000021 ], [ -122.872550833999938, 49.20017177600014 ], [ -122.872782085999987, 49.200172031000086 ] ], [ [ -122.874676606999941, 49.199634384000092 ], [ -122.874707020999963, 49.199182299000029 ], [ -122.874318570999961, 49.199171030000045 ], [ -122.874287422999956, 49.199633961000067 ], [ -122.874676606999941, 49.199634384000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119024333", "BldgCostT": "71993333", "sL_LossRatio": "0.623138220201093", "sL_AssetLoss": "3355660", "sL_BldgLoss": "2091040", "sL_StrLoss": "880800", "sL_NStrLoss": "1210240", "sL_ContLoss": "1264620", "geom_point": "0101000020E6100000E18B8222CEB85EC07F2590123B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.883583832999975, 49.192065048000089 ], [ -122.882197320999978, 49.191960506000044 ], [ -122.88109333099996, 49.191909049000081 ], [ -122.880968195, 49.191903217000032 ], [ -122.87954026700001, 49.191836667000132 ], [ -122.87923650499999, 49.191822488000106 ], [ -122.878907210999927, 49.191817359000076 ], [ -122.8783357399999, 49.191808422000065 ], [ -122.877955807999939, 49.191802496000065 ], [ -122.878096401999969, 49.191641396000108 ], [ -122.878460961999963, 49.191163600000046 ], [ -122.878968484999959, 49.190645314000093 ], [ -122.879516854999977, 49.18840119300004 ], [ -122.87971167699996, 49.188116390000033 ], [ -122.879825001999919, 49.187942847 ], [ -122.88000384799993, 49.187668919000011 ], [ -122.880489804000021, 49.187249713000092 ], [ -122.880884591999944, 49.187010809000078 ], [ -122.881612726999919, 49.186807436000066 ], [ -122.883157000999944, 49.186897793000114 ], [ -122.88403489199996, 49.186897991000073 ], [ -122.886004305999933, 49.186882005 ], [ -122.887088717999987, 49.186871894000078 ], [ -122.887088790999883, 49.187034055 ], [ -122.888606972999938, 49.187046796000168 ], [ -122.889320638999948, 49.18705276900004 ], [ -122.890077414999965, 49.187059117000032 ], [ -122.890754131999984, 49.186918648000102 ], [ -122.890780005999915, 49.186913260000082 ], [ -122.891016106999984, 49.186914830000077 ], [ -122.892868058999937, 49.186927035000096 ], [ -122.893012852999945, 49.186710472000065 ], [ -122.893135094999977, 49.186667145000072 ], [ -122.894009889999978, 49.186549120000087 ], [ -122.894754117999966, 49.186455249000119 ], [ -122.895323226999949, 49.186313982000073 ], [ -122.895624582, 49.186185859000012 ], [ -122.896432228999984, 49.185842494 ], [ -122.89701666399999, 49.185594017 ], [ -122.89737730899995, 49.185440692000029 ], [ -122.897895579999911, 49.185299217000107 ], [ -122.89814019899994, 49.185232436000078 ], [ -122.898511755999934, 49.185130985000093 ], [ -122.898544063999964, 49.185510331000017 ], [ -122.898656791999912, 49.18567124300003 ], [ -122.899064794999944, 49.185928957000087 ], [ -122.897170562999946, 49.187483935000095 ], [ -122.893230500999948, 49.190717913000036 ], [ -122.892650675999931, 49.190629111000085 ], [ -122.891139419999945, 49.190601727000029 ], [ -122.890718708999941, 49.19069769300016 ], [ -122.890533375999937, 49.190802267000045 ], [ -122.890374616999964, 49.19102201700008 ], [ -122.890350677999905, 49.191584440000035 ], [ -122.890294970999918, 49.191761226000082 ], [ -122.890221319999924, 49.191994953000069 ], [ -122.890159109999942, 49.192192454000057 ], [ -122.889988068999941, 49.192185713000065 ], [ -122.889607459999922, 49.192850458000059 ], [ -122.889146363999956, 49.193426363000071 ], [ -122.889022275999977, 49.193538099000072 ], [ -122.888715811999958, 49.193801365000077 ], [ -122.88811521099997, 49.193477929000039 ], [ -122.886863862999959, 49.192930912000072 ], [ -122.88604070400001, 49.192611652000082 ], [ -122.885306222999986, 49.192385596000094 ], [ -122.884401195999942, 49.192174733000051 ], [ -122.883981284999919, 49.192095013 ], [ -122.883583832999975, 49.192065048000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110360417", "BldgCostT": "70831667", "sL_LossRatio": "0.712501826977363", "sL_AssetLoss": "1395748", "sL_BldgLoss": "994473", "sL_StrLoss": "431573", "sL_NStrLoss": "562900", "sL_ContLoss": "401275", "geom_point": "0101000020E6100000725996F9D8B85EC001B3A5BBA9974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887088790999883, 49.187034055 ], [ -122.887088717999987, 49.186871894000078 ], [ -122.886004305999933, 49.186882005 ], [ -122.88403489199996, 49.186897991000073 ], [ -122.884036395999914, 49.186425009000068 ], [ -122.884008503999922, 49.185859288000131 ], [ -122.884003200999985, 49.185693394000104 ], [ -122.883986395999926, 49.184409912000021 ], [ -122.884513508999959, 49.184424309000093 ], [ -122.884620215999988, 49.184407494 ], [ -122.886000098999958, 49.184406890000048 ], [ -122.886033115999979, 49.182584286000044 ], [ -122.88737661499999, 49.182593413000035 ], [ -122.888776233999963, 49.182584256000027 ], [ -122.890068979999938, 49.182614400000055 ], [ -122.890298290999965, 49.182630925000105 ], [ -122.890459872999898, 49.182637216 ], [ -122.890747040999912, 49.182648376000088 ], [ -122.890913122999947, 49.182654848000013 ], [ -122.891034172999966, 49.182659548000082 ], [ -122.89164579, 49.182683333000085 ], [ -122.892205407999953, 49.182683290000107 ], [ -122.892210721999959, 49.183568207000121 ], [ -122.892215512999954, 49.183810336000107 ], [ -122.892217603999939, 49.183916213000067 ], [ -122.892348285999972, 49.184176694000058 ], [ -122.89249161399999, 49.184290700000041 ], [ -122.891631675999932, 49.184629600000065 ], [ -122.891296411999974, 49.184687344000139 ], [ -122.891090130999942, 49.184722877000134 ], [ -122.891328500999975, 49.185007697000032 ], [ -122.891520677999949, 49.185333085000082 ], [ -122.891580312999963, 49.185610506000053 ], [ -122.891563399999896, 49.185863181000045 ], [ -122.891422311, 49.186168148000057 ], [ -122.890853020999927, 49.186807575000053 ], [ -122.890772532, 49.18689799000002 ], [ -122.890754131999984, 49.186918648000102 ], [ -122.890077414999965, 49.187059117000032 ], [ -122.889320638999948, 49.18705276900004 ], [ -122.888606972999938, 49.187046796000168 ], [ -122.887088790999883, 49.187034055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135044417", "BldgCostT": "80431667", "sL_LossRatio": "0.678078213025275", "sL_AssetLoss": "1824760", "sL_BldgLoss": "1237330", "sL_StrLoss": "537430", "sL_NStrLoss": "699900", "sL_ContLoss": "587430", "geom_point": "0101000020E61000001FAC208281B85EC026FAB63F9B974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880884591999944, 49.187010809000078 ], [ -122.88087108799999, 49.186783892000115 ], [ -122.880887398999988, 49.186479796000079 ], [ -122.88089418599999, 49.185724987000064 ], [ -122.880875685999982, 49.184427113000048 ], [ -122.880496914999981, 49.184430507000073 ], [ -122.880499012, 49.183438600000066 ], [ -122.880499012999948, 49.182580906000048 ], [ -122.881867181999908, 49.18256919300012 ], [ -122.884646606999951, 49.182582006000061 ], [ -122.886033115999979, 49.182584286000044 ], [ -122.886000098999958, 49.184406890000048 ], [ -122.884620215999988, 49.184407494 ], [ -122.884513508999959, 49.184424309000093 ], [ -122.883986395999926, 49.184409912000021 ], [ -122.884003200999985, 49.185693394000104 ], [ -122.884008503999922, 49.185859288000131 ], [ -122.884036395999914, 49.186425009000068 ], [ -122.88403489199996, 49.186897991000073 ], [ -122.883157000999944, 49.186897793000114 ], [ -122.881612726999919, 49.186807436000066 ], [ -122.880884591999944, 49.187010809000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77100500", "BldgCostT": "51230000", "sL_LossRatio": "0.698359619789884", "sL_AssetLoss": "1898950", "sL_BldgLoss": "1326150", "sL_StrLoss": "563560", "sL_NStrLoss": "762590", "sL_ContLoss": "572800", "geom_point": "0101000020E61000006F4ACBAB27B85EC0673D840A71974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.873328586999932, 49.182842409000038 ], [ -122.873353480999981, 49.182308796000029 ], [ -122.875799811999954, 49.182440208000067 ], [ -122.877171381999986, 49.182500708000063 ], [ -122.87758929099999, 49.182508306000017 ], [ -122.878801897999949, 49.182567789000061 ], [ -122.878894894999945, 49.180712614000093 ], [ -122.880485904999915, 49.180712801000077 ], [ -122.880499012999948, 49.182580906000048 ], [ -122.880499012, 49.183438600000066 ], [ -122.880496914999981, 49.184430507000073 ], [ -122.879706193999965, 49.184441985000078 ], [ -122.878672185999918, 49.184457008000024 ], [ -122.87792339799995, 49.184517186000107 ], [ -122.877508006999932, 49.184514208000145 ], [ -122.877402477999908, 49.184513320000072 ], [ -122.876463395999977, 49.18450550900004 ], [ -122.875315895999904, 49.184496592000066 ], [ -122.874464623999984, 49.184497934000063 ], [ -122.873903015999971, 49.184498789000031 ], [ -122.873440480999975, 49.183095202000096 ], [ -122.873328586999932, 49.182842409000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141113561", "BldgCostT": "91813190", "sL_LossRatio": "0.714342620802978", "sL_AssetLoss": "2249303", "sL_BldgLoss": "1606773", "sL_StrLoss": "676203", "sL_NStrLoss": "930570", "sL_ContLoss": "642530", "geom_point": "0101000020E61000009311610D21B85EC0BE2A481AF9974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876739600999969, 49.191783501000046 ], [ -122.876804415999956, 49.189941094000083 ], [ -122.87541019199989, 49.18992769000009 ], [ -122.874070313999951, 49.189902305000039 ], [ -122.874107184999957, 49.188069897000041 ], [ -122.874102692999912, 49.18795270500005 ], [ -122.873149099999921, 49.187222207000097 ], [ -122.873081514, 49.187125691000112 ], [ -122.873907991999943, 49.186401799000102 ], [ -122.873574305999952, 49.185917280000041 ], [ -122.872281014999899, 49.184487798000063 ], [ -122.87329866499999, 49.184494709000035 ], [ -122.873903015999971, 49.184498789000031 ], [ -122.874464623999984, 49.184497934000063 ], [ -122.875315895999904, 49.184496592000066 ], [ -122.876463395999977, 49.18450550900004 ], [ -122.877402477999908, 49.184513320000072 ], [ -122.877508006999932, 49.184514208000145 ], [ -122.87792339799995, 49.184517186000107 ], [ -122.878672185999918, 49.184457008000024 ], [ -122.879706193999965, 49.184441985000078 ], [ -122.880496914999981, 49.184430507000073 ], [ -122.880875685999982, 49.184427113000048 ], [ -122.88089418599999, 49.185724987000064 ], [ -122.880887398999988, 49.186479796000079 ], [ -122.88087108799999, 49.186783892000115 ], [ -122.880884591999944, 49.187010809000078 ], [ -122.880489804000021, 49.187249713000092 ], [ -122.88000384799993, 49.187668919000011 ], [ -122.879825001999919, 49.187942847 ], [ -122.87971167699996, 49.188116390000033 ], [ -122.879516854999977, 49.18840119300004 ], [ -122.878968484999959, 49.190645314000093 ], [ -122.878460961999963, 49.191163600000046 ], [ -122.878096401999969, 49.191641396000108 ], [ -122.877955807999939, 49.191802496000065 ], [ -122.877823510999988, 49.191800428000057 ], [ -122.876739600999969, 49.191783501000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197824917", "BldgCostT": "120896667", "sL_LossRatio": "0.662888478494394", "sL_AssetLoss": "4064382", "sL_BldgLoss": "2694232", "sL_StrLoss": "1138352", "sL_NStrLoss": "1555880", "sL_ContLoss": "1370150", "geom_point": "0101000020E61000001E3FF1EFB5B75EC07476E8AAAF974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867740693, 49.182190810000094 ], [ -122.870984882999977, 49.182205805000152 ], [ -122.872379286999958, 49.182253515000106 ], [ -122.873353480999981, 49.182308796000029 ], [ -122.873328586999932, 49.182842409000038 ], [ -122.873440480999975, 49.183095202000096 ], [ -122.873903015999971, 49.184498789000031 ], [ -122.87329866499999, 49.184494709000035 ], [ -122.872281014999899, 49.184487798000063 ], [ -122.873574305999952, 49.185917280000041 ], [ -122.873907991999943, 49.186401799000102 ], [ -122.873081514, 49.187125691000112 ], [ -122.872819701999987, 49.187327098000054 ], [ -122.871643214999978, 49.187910994000099 ], [ -122.871645093999973, 49.188025513000035 ], [ -122.871371000999901, 49.188021992000138 ], [ -122.869944306000022, 49.188022897000046 ], [ -122.867704494999956, 49.188019087000072 ], [ -122.867686112999962, 49.184446106000038 ], [ -122.867718578999984, 49.183088393000112 ], [ -122.867740693, 49.182190810000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126705833", "BldgCostT": "80543333", "sL_LossRatio": "0.691926819177549", "sL_AssetLoss": "2557282", "sL_BldgLoss": "1769452", "sL_StrLoss": "765242", "sL_NStrLoss": "1004210", "sL_ContLoss": "787830", "geom_point": "0101000020E610000021D0F46DDCB75EC02ADA667451984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.869881291999903, 49.189833798000059 ], [ -122.869944306000022, 49.188022897000046 ], [ -122.871371000999901, 49.188021992000138 ], [ -122.871645093999973, 49.188025513000035 ], [ -122.871643214999978, 49.187910994000099 ], [ -122.872819701999987, 49.187327098000054 ], [ -122.873081514, 49.187125691000112 ], [ -122.873149099999921, 49.187222207000097 ], [ -122.874102692999912, 49.18795270500005 ], [ -122.874107184999957, 49.188069897000041 ], [ -122.874070313999951, 49.189902305000039 ], [ -122.87541019199989, 49.18992769000009 ], [ -122.876804415999956, 49.189941094000083 ], [ -122.876739600999969, 49.191783501000046 ], [ -122.876252994999973, 49.191776604000111 ], [ -122.875357899999983, 49.191765896000128 ], [ -122.875120689999946, 49.191764487000064 ], [ -122.873966517999975, 49.191750790000086 ], [ -122.872581897999936, 49.191735791000056 ], [ -122.871231696999985, 49.191721004000101 ], [ -122.870847783000031, 49.191716986000131 ], [ -122.869867779999964, 49.191703895000011 ], [ -122.869881291999903, 49.189833798000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259207934", "BldgCostT": "174661896", "sL_LossRatio": "0.788455278445513", "sL_AssetLoss": "3194880", "sL_BldgLoss": "2519020", "sL_StrLoss": "1088340", "sL_NStrLoss": "1430680", "sL_ContLoss": "675860", "geom_point": "0101000020E61000000A790CA89AB75EC09497D3D04C984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867704494999956, 49.188019087000072 ], [ -122.869944306000022, 49.188022897000046 ], [ -122.869881291999903, 49.189833798000059 ], [ -122.869867779999964, 49.191703895000011 ], [ -122.867772400999968, 49.191713184000108 ], [ -122.867733699, 49.18978400600006 ], [ -122.867704494999956, 49.188019087000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189934000", "BldgCostT": "119230000", "sL_LossRatio": "0.687420493433429", "sL_AssetLoss": "3348780", "sL_BldgLoss": "2302020", "sL_StrLoss": "1015920", "sL_NStrLoss": "1286100", "sL_ContLoss": "1046760", "geom_point": "0101000020E6100000A241A773C7B75EC0D13FE2D3F3984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867706968999983, 49.195369269000018 ], [ -122.867702088999948, 49.194587088000027 ], [ -122.867693477999964, 49.193575050000035 ], [ -122.867772400999968, 49.191713184000108 ], [ -122.869867779999964, 49.191703895000011 ], [ -122.870847783000031, 49.191716986000131 ], [ -122.871231696999985, 49.191721004000101 ], [ -122.872581897999936, 49.191735791000056 ], [ -122.873966517999975, 49.191750790000086 ], [ -122.875120689999946, 49.191764487000064 ], [ -122.875357899999983, 49.191765896000128 ], [ -122.876252994999973, 49.191776604000111 ], [ -122.876739600999969, 49.191783501000046 ], [ -122.877823510999988, 49.191800428000057 ], [ -122.877955807999939, 49.191802496000065 ], [ -122.877738568999959, 49.192218727000103 ], [ -122.87717990599999, 49.192910604000055 ], [ -122.876202469999939, 49.194027879000096 ], [ -122.875559953999982, 49.194639106000096 ], [ -122.875321220999936, 49.194907573000123 ], [ -122.875106980999988, 49.195231896000031 ], [ -122.875092768999949, 49.195402646000097 ], [ -122.875065679999963, 49.195293418000041 ], [ -122.874991561999977, 49.195400651000028 ], [ -122.874990826999948, 49.195401721000138 ], [ -122.874575275999945, 49.196002309000065 ], [ -122.874240700999934, 49.196517052000047 ], [ -122.874259475999949, 49.19668669900009 ], [ -122.874309417999982, 49.197327879000106 ], [ -122.874389992999951, 49.197450477000125 ], [ -122.87426959, 49.197499848000056 ], [ -122.873917071999955, 49.197644384000064 ], [ -122.872306730999981, 49.198215899000076 ], [ -122.872090923999949, 49.19829247200007 ], [ -122.872004253999961, 49.19832322200002 ], [ -122.871729916999954, 49.19842059500013 ], [ -122.87110538499995, 49.198729508000035 ], [ -122.870513958999965, 49.198946892000073 ], [ -122.870111797, 49.199094683000098 ], [ -122.869294696999987, 49.199394959000102 ], [ -122.868967750999957, 49.199462056000073 ], [ -122.868581294999956, 49.199495871000067 ], [ -122.868560839999986, 49.199495120000044 ], [ -122.868214450999986, 49.199482514000124 ], [ -122.867602345999927, 49.199362905000058 ], [ -122.867611788999952, 49.19898940500012 ], [ -122.867615256999983, 49.198851670000096 ], [ -122.867618232999945, 49.198734737000059 ], [ -122.867635293999967, 49.198060155000071 ], [ -122.867646329999943, 49.197646470000088 ], [ -122.867706968999983, 49.195369269000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102110917", "BldgCostT": "66411667", "sL_LossRatio": "0.684163191168561", "sL_AssetLoss": "2268260", "sL_BldgLoss": "1551860", "sL_StrLoss": "621770", "sL_NStrLoss": "930090", "sL_ContLoss": "716400", "geom_point": "0101000020E6100000B5F9B9805BB75EC072B8B1344B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867503209999953, 49.188075399000041 ], [ -122.867704494999956, 49.188019087000072 ], [ -122.867733699, 49.18978400600006 ], [ -122.867772400999968, 49.191713184000108 ], [ -122.866063211999943, 49.191710400000026 ], [ -122.865042703999933, 49.191687905000066 ], [ -122.863393908999953, 49.191684928000029 ], [ -122.862740706999944, 49.191057822000062 ], [ -122.86257858499999, 49.190716092000102 ], [ -122.862226786999955, 49.189871499000063 ], [ -122.86212281899999, 49.189726109000041 ], [ -122.861828091999925, 49.189478798000081 ], [ -122.861573011999937, 49.189336199000088 ], [ -122.861793193999972, 49.188065008000123 ], [ -122.86320127599997, 49.188075403000063 ], [ -122.86460749299998, 49.188073098000089 ], [ -122.866095311999942, 49.188082200000025 ], [ -122.867503209999953, 49.188075399000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96399000", "BldgCostT": "62910000", "sL_LossRatio": "0.700873546282166", "sL_AssetLoss": "1900300", "sL_BldgLoss": "1331870", "sL_StrLoss": "550780", "sL_NStrLoss": "781090", "sL_ContLoss": "568430", "geom_point": "0101000020E61000006FF3940F60B75EC0A706B36CDA974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86602969799999, 49.184438503000102 ], [ -122.867686112999962, 49.184446106000038 ], [ -122.867704494999956, 49.188019087000072 ], [ -122.867503209999953, 49.188075399000041 ], [ -122.866095311999942, 49.188082200000025 ], [ -122.86460749299998, 49.188073098000089 ], [ -122.86320127599997, 49.188075403000063 ], [ -122.861793193999972, 49.188065008000123 ], [ -122.86182159499999, 49.187685595000104 ], [ -122.861534378999963, 49.187225902000172 ], [ -122.863207105999905, 49.187237703000051 ], [ -122.863196494999968, 49.186419305000079 ], [ -122.863203791999979, 49.18562119400007 ], [ -122.863198111999964, 49.184425401000098 ], [ -122.864620004999921, 49.184432592000078 ], [ -122.86602969799999, 49.184438503000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127192667", "BldgCostT": "78076667", "sL_LossRatio": "0.665515350609705", "sL_AssetLoss": "2664487", "sL_BldgLoss": "1773257", "sL_StrLoss": "702947", "sL_NStrLoss": "1070310", "sL_ContLoss": "891230", "geom_point": "0101000020E610000004451C8007B75EC0A5C19736DA974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.862097101999922, 49.184418597000032 ], [ -122.863198111999964, 49.184425401000098 ], [ -122.863203791999979, 49.18562119400007 ], [ -122.863196494999968, 49.186419305000079 ], [ -122.863207105999905, 49.187237703000051 ], [ -122.861534378999963, 49.187225902000172 ], [ -122.86182159499999, 49.187685595000104 ], [ -122.861793193999972, 49.188065008000123 ], [ -122.861573011999937, 49.189336199000088 ], [ -122.85953404899999, 49.188545560000058 ], [ -122.857967993999949, 49.187938240000122 ], [ -122.857804710999957, 49.187874900000075 ], [ -122.856478185999919, 49.187692002000119 ], [ -122.856497723999922, 49.186822328000048 ], [ -122.85651159899993, 49.186205506000121 ], [ -122.856517554999954, 49.186051041000027 ], [ -122.856544405999983, 49.185354999000033 ], [ -122.856540899999928, 49.184393511000117 ], [ -122.860276601999914, 49.184423203000051 ], [ -122.862097101999922, 49.184418597000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85244510", "BldgCostT": "53595402", "sL_LossRatio": "0.657905031224225", "sL_AssetLoss": "2121750", "sL_BldgLoss": "1395910", "sL_StrLoss": "597290", "sL_NStrLoss": "798620", "sL_ContLoss": "725840", "geom_point": "0101000020E6100000649F850CFDB65EC08F699E0A55984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856521898999958, 49.189843889000066 ], [ -122.856478185999919, 49.187692002000119 ], [ -122.857804710999957, 49.187874900000075 ], [ -122.857967993999949, 49.187938240000122 ], [ -122.85953404899999, 49.188545560000058 ], [ -122.861573011999937, 49.189336199000088 ], [ -122.861828091999925, 49.189478798000081 ], [ -122.86212281899999, 49.189726109000041 ], [ -122.862226786999955, 49.189871499000063 ], [ -122.86257858499999, 49.190716092000102 ], [ -122.862740706999944, 49.191057822000062 ], [ -122.863393908999953, 49.191684928000029 ], [ -122.859512751999944, 49.191666454 ], [ -122.859334664999949, 49.191703600000089 ], [ -122.858040025999941, 49.191697384000115 ], [ -122.856469425999961, 49.191694805000104 ], [ -122.856473717999933, 49.19161115100011 ], [ -122.856502350999932, 49.19070109400009 ], [ -122.856521898999958, 49.189843889000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "610309196", "BldgCostT": "409565268", "sL_LossRatio": "0.783962901614124", "sL_AssetLoss": "5934490", "sL_BldgLoss": "4652420", "sL_StrLoss": "2187980", "sL_NStrLoss": "2464440", "sL_ContLoss": "1282070", "geom_point": "0101000020E6100000078D1656A0B65EC0D72216EF4F984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84993251899999, 49.188840534000065 ], [ -122.850108784, 49.188526750000044 ], [ -122.850868291999944, 49.188796717000123 ], [ -122.85118698499997, 49.188851086000099 ], [ -122.852088750999954, 49.188863926000124 ], [ -122.853655185999955, 49.188866443000066 ], [ -122.854290150999972, 49.188868794000051 ], [ -122.854358501999968, 49.187089487000023 ], [ -122.855185110999912, 49.187401084000022 ], [ -122.856478185999919, 49.187692002000119 ], [ -122.856521898999958, 49.189843889000066 ], [ -122.856502350999932, 49.19070109400009 ], [ -122.856473717999933, 49.19161115100011 ], [ -122.856469425999961, 49.191694805000104 ], [ -122.854262679999977, 49.191706076000067 ], [ -122.852048256000018, 49.191689124000064 ], [ -122.850595173999977, 49.191672794000098 ], [ -122.850523775999974, 49.191572478000104 ], [ -122.849886602999931, 49.190691622000102 ], [ -122.849900839999933, 49.189823393000061 ], [ -122.849901932999941, 49.189756855000041 ], [ -122.84993251899999, 49.188840534000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "439912417", "BldgCostT": "296181667", "sL_LossRatio": "0.80510159295691", "sL_AssetLoss": "5422620", "sL_BldgLoss": "4365760", "sL_StrLoss": "2016210", "sL_NStrLoss": "2349550", "sL_ContLoss": "1056860", "geom_point": "0101000020E61000004B2E63967FB65EC08438CE54A5974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.853246909999953, 49.186629169000042 ], [ -122.853101543999955, 49.186568973000085 ], [ -122.853025714999987, 49.186574880000101 ], [ -122.852696394999924, 49.186456716000073 ], [ -122.851836542999962, 49.186148187000128 ], [ -122.851760274999975, 49.186119827000077 ], [ -122.849606955999974, 49.185346881000072 ], [ -122.84756281199995, 49.184502323000117 ], [ -122.847159451999957, 49.184422919000035 ], [ -122.846929250999949, 49.184379254000177 ], [ -122.846085470999952, 49.18434193700012 ], [ -122.845883393999941, 49.184287374000085 ], [ -122.845548088999962, 49.184276647000061 ], [ -122.845359240999983, 49.184270204000022 ], [ -122.845382473999948, 49.183174724000047 ], [ -122.845576927, 49.183158333000051 ], [ -122.847179004999973, 49.18302341 ], [ -122.847196244999964, 49.182858321000076 ], [ -122.847237589999949, 49.182461989000032 ], [ -122.851341181999913, 49.182426107000047 ], [ -122.851345254999941, 49.182847238000093 ], [ -122.851351090999941, 49.183453605000032 ], [ -122.851418811999963, 49.183708712000097 ], [ -122.851577110999926, 49.183964692000046 ], [ -122.851703921, 49.18405669900006 ], [ -122.851832102999936, 49.184148810000075 ], [ -122.852078417999962, 49.184258698000036 ], [ -122.852463882999956, 49.184357391000056 ], [ -122.852523305999966, 49.184372600000053 ], [ -122.855290993999944, 49.184377797000145 ], [ -122.856540899999928, 49.184393511000117 ], [ -122.856544405999983, 49.185354999000033 ], [ -122.856517554999954, 49.186051041000027 ], [ -122.85651159899993, 49.186205506000121 ], [ -122.856497723999922, 49.186822328000048 ], [ -122.856478185999919, 49.187692002000119 ], [ -122.855185110999912, 49.187401084000022 ], [ -122.854358501999968, 49.187089487000023 ], [ -122.853246909999953, 49.186629169000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "544723064", "BldgCostT": "334845683", "sL_LossRatio": "0.677259457766972", "sL_AssetLoss": "8687040", "sL_BldgLoss": "5883380", "sL_StrLoss": "2372000", "sL_NStrLoss": "3511380", "sL_ContLoss": "2803660", "geom_point": "0101000020E610000051F9D11551B65EC0120555FE10984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845262533999971, 49.19155367200004 ], [ -122.84531873, 49.187856768000131 ], [ -122.845319823999944, 49.187780226000065 ], [ -122.845319939999968, 49.18777119600005 ], [ -122.845359240999983, 49.184270204000022 ], [ -122.845548088999962, 49.184276647000061 ], [ -122.845883393999941, 49.184287374000085 ], [ -122.846085470999952, 49.18434193700012 ], [ -122.846929250999949, 49.184379254000177 ], [ -122.847159451999957, 49.184422919000035 ], [ -122.84756281199995, 49.184502323000117 ], [ -122.849606955999974, 49.185346881000072 ], [ -122.851760274999975, 49.186119827000077 ], [ -122.851836542999962, 49.186148187000128 ], [ -122.852696394999924, 49.186456716000073 ], [ -122.853025714999987, 49.186574880000101 ], [ -122.853101543999955, 49.186568973000085 ], [ -122.853246909999953, 49.186629169000042 ], [ -122.854358501999968, 49.187089487000023 ], [ -122.854290150999972, 49.188868794000051 ], [ -122.853655185999955, 49.188866443000066 ], [ -122.852088750999954, 49.188863926000124 ], [ -122.85118698499997, 49.188851086000099 ], [ -122.850868291999944, 49.188796717000123 ], [ -122.850108784, 49.188526750000044 ], [ -122.84993251899999, 49.188840534000065 ], [ -122.849901932999941, 49.189756855000041 ], [ -122.849900839999933, 49.189823393000061 ], [ -122.849886602999931, 49.190691622000102 ], [ -122.850523775999974, 49.191572478000104 ], [ -122.850595173999977, 49.191672794000098 ], [ -122.850517071999903, 49.191671397000064 ], [ -122.848020932999987, 49.191661470000092 ], [ -122.847653244999933, 49.191661504000066 ], [ -122.845473357999978, 49.191640939000095 ], [ -122.845260866999922, 49.19163922900006 ], [ -122.845262533999971, 49.19155367200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "548094446", "BldgCostT": "350312247", "sL_LossRatio": "0.73486729494656", "sL_AssetLoss": "8038880", "sL_BldgLoss": "5907510", "sL_StrLoss": "2483070", "sL_NStrLoss": "3424440", "sL_ContLoss": "2131370", "geom_point": "0101000020E6100000549EE668BEB55EC094B256FE46984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83417499899997, 49.191493316000063 ], [ -122.834178084999962, 49.190640820000048 ], [ -122.834178608999935, 49.190494200000103 ], [ -122.834175688999935, 49.189624274000096 ], [ -122.834175605999945, 49.189592188000027 ], [ -122.834176617999958, 49.188911989000118 ], [ -122.834185009999914, 49.188245490000028 ], [ -122.834187790999962, 49.187741018000054 ], [ -122.834864072999935, 49.187745937000059 ], [ -122.83501504099992, 49.187747020000074 ], [ -122.835778285999965, 49.187752622000083 ], [ -122.83662160799993, 49.187757573000084 ], [ -122.837081187, 49.187759628000023 ], [ -122.837153593999972, 49.187761467000065 ], [ -122.837862484999945, 49.187766075000042 ], [ -122.838687885999931, 49.187772282000019 ], [ -122.83917977, 49.187775973000036 ], [ -122.839251346999944, 49.187777111000081 ], [ -122.841196876999973, 49.187791841000049 ], [ -122.843223813999955, 49.187799891000047 ], [ -122.843582918, 49.187804120000123 ], [ -122.843759065999947, 49.187836303000061 ], [ -122.84531873, 49.187856768000131 ], [ -122.845262533999971, 49.19155367200004 ], [ -122.845260866999922, 49.19163922900006 ], [ -122.844237349999972, 49.191623266000093 ], [ -122.843385842999936, 49.191609996000089 ], [ -122.843248599000034, 49.191607854000011 ], [ -122.842433626999963, 49.191595131000028 ], [ -122.842311970999987, 49.19156904700003 ], [ -122.84190488199999, 49.191563418000023 ], [ -122.839711171999937, 49.191544119000099 ], [ -122.839271184999944, 49.191539569000049 ], [ -122.839046301999986, 49.19153722800008 ], [ -122.838436166999927, 49.191531936000104 ], [ -122.836965818999957, 49.191507697000148 ], [ -122.836470997, 49.191505142000032 ], [ -122.83417499899997, 49.191493316000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62265124", "BldgCostT": "39783707", "sL_LossRatio": "0.696434818097015", "sL_AssetLoss": "1372160", "sL_BldgLoss": "955620", "sL_StrLoss": "392110", "sL_NStrLoss": "563510", "sL_ContLoss": "416540", "geom_point": "0101000020E61000004123126448B65EC00A40502C3F974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.847525550999933, 49.180538332000076 ], [ -122.851315113999988, 49.18054319900007 ], [ -122.851332498999966, 49.181096906000072 ], [ -122.85133551699991, 49.181497889000099 ], [ -122.851341181999913, 49.182426107000047 ], [ -122.847237589999949, 49.182461989000032 ], [ -122.847196244999964, 49.182858321000076 ], [ -122.847179004999973, 49.18302341 ], [ -122.845576927, 49.183158333000051 ], [ -122.845382473999948, 49.183174724000047 ], [ -122.845385956999934, 49.183010284000034 ], [ -122.845416581999984, 49.181571409000121 ], [ -122.845438636, 49.180534299000087 ], [ -122.8455499, 49.180535030000108 ], [ -122.845678555999896, 49.180535920000125 ], [ -122.846976696999945, 49.180537617000041 ], [ -122.847525550999933, 49.180538332000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "725997386", "BldgCostT": "502772079", "sL_LossRatio": "0.875656405816141", "sL_AssetLoss": "8373250", "sL_BldgLoss": "7332090", "sL_StrLoss": "3480620", "sL_NStrLoss": "3851470", "sL_ContLoss": "1041160", "geom_point": "0101000020E610000015E4FB3D4CB65EC02113BE31E3964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845454801999921, 49.179224703000045 ], [ -122.845589409999889, 49.177059911000093 ], [ -122.84573766699998, 49.177062282000094 ], [ -122.845856558999955, 49.177064173000133 ], [ -122.847940069999979, 49.177060299000047 ], [ -122.849912377999971, 49.177057643000033 ], [ -122.851310691999956, 49.177066089000029 ], [ -122.851309505999922, 49.178637345000062 ], [ -122.851309295999926, 49.178908617000062 ], [ -122.851313427999941, 49.180076528000065 ], [ -122.851315113999988, 49.18054319900007 ], [ -122.847525550999933, 49.180538332000076 ], [ -122.846976696999945, 49.180537617000041 ], [ -122.845678555999896, 49.180535920000125 ], [ -122.8455499, 49.180535030000108 ], [ -122.845438636, 49.180534299000087 ], [ -122.845454801999921, 49.179224703000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80541499", "BldgCostT": "51709999", "sL_LossRatio": "0.68212197631945", "sL_AssetLoss": "1768540", "sL_BldgLoss": "1206360", "sL_StrLoss": "502860", "sL_NStrLoss": "703500", "sL_ContLoss": "562180", "geom_point": "0101000020E6100000FCAD848BA8B65EC00C319754ED964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.855247325999954, 49.177083013000065 ], [ -122.856838399999916, 49.17709509400008 ], [ -122.85673640499999, 49.178967092000057 ], [ -122.856727351999908, 49.179354887000081 ], [ -122.856723119999927, 49.179534759000056 ], [ -122.856694406999978, 49.180765193000106 ], [ -122.856676001, 49.181218790000095 ], [ -122.854448689999941, 49.181197892000085 ], [ -122.853311718000015, 49.181177294000037 ], [ -122.852663884999984, 49.18118270500009 ], [ -122.852108081999916, 49.18112679900004 ], [ -122.851332498999966, 49.181096906000072 ], [ -122.851315113999988, 49.18054319900007 ], [ -122.851313427999941, 49.180076528000065 ], [ -122.851309295999926, 49.178908617000062 ], [ -122.851309505999922, 49.178637345000062 ], [ -122.851310691999956, 49.177066089000029 ], [ -122.852516548999944, 49.177062865000046 ], [ -122.852579514999931, 49.177062700000072 ], [ -122.855247325999954, 49.177083013000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151180667", "BldgCostT": "102316667", "sL_LossRatio": "0.762886139594288", "sL_AssetLoss": "2474170", "sL_BldgLoss": "1887510", "sL_StrLoss": "824310", "sL_NStrLoss": "1063200", "sL_ContLoss": "586660", "geom_point": "0101000020E6100000D15AF2F4A1B65EC0C62D07F66F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851417192999946, 49.175837514000094 ], [ -122.851425272999933, 49.175414299000103 ], [ -122.851449699999975, 49.173961684000105 ], [ -122.851458814999944, 49.173456333000075 ], [ -122.851471108999988, 49.172773901000042 ], [ -122.852815400999958, 49.172768193000095 ], [ -122.852795199999917, 49.173512698000089 ], [ -122.854154378999908, 49.173510101000062 ], [ -122.855462881000022, 49.173505886000029 ], [ -122.855462896999967, 49.174276291000112 ], [ -122.85546010299997, 49.175087095000045 ], [ -122.855459873999962, 49.175840396000062 ], [ -122.856042085999945, 49.175851011000077 ], [ -122.856846911999966, 49.175853800000091 ], [ -122.856838399999916, 49.17709509400008 ], [ -122.855247325999954, 49.177083013000065 ], [ -122.852579514999931, 49.177062700000072 ], [ -122.852516548999944, 49.177062865000046 ], [ -122.851310691999956, 49.177066089000029 ], [ -122.851417192999946, 49.175837514000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137625312", "BldgCostT": "84088191", "sL_LossRatio": "0.654102556381922", "sL_AssetLoss": "2490825", "sL_BldgLoss": "1629255", "sL_StrLoss": "683565", "sL_NStrLoss": "945690", "sL_ContLoss": "861570", "geom_point": "0101000020E6100000E87E89364FB65EC0380A7BA036964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85138973499997, 49.170001826000011 ], [ -122.851519074999914, 49.170000189000078 ], [ -122.851502008999987, 49.171062900000038 ], [ -122.851474844999942, 49.172565819000049 ], [ -122.851471108999988, 49.172773901000042 ], [ -122.851458814999944, 49.173456333000075 ], [ -122.851449699999975, 49.173961684000105 ], [ -122.851425272999933, 49.175414299000103 ], [ -122.851417192999946, 49.175837514000094 ], [ -122.851310691999956, 49.177066089000029 ], [ -122.849912377999971, 49.177057643000033 ], [ -122.847940069999979, 49.177060299000047 ], [ -122.845856558999955, 49.177064173000133 ], [ -122.84573766699998, 49.177062282000094 ], [ -122.845589409999889, 49.177059911000093 ], [ -122.845670194999983, 49.175724373000072 ], [ -122.845735160999979, 49.174649517000049 ], [ -122.84573957799995, 49.171451779000037 ], [ -122.845739893999948, 49.171217900000045 ], [ -122.845740260999904, 49.170948047000131 ], [ -122.845740721999945, 49.170633217000095 ], [ -122.845741153999967, 49.170300391000126 ], [ -122.845741496999963, 49.17005000900015 ], [ -122.845843041999956, 49.170050935000056 ], [ -122.845960761999933, 49.170051946000044 ], [ -122.846679749999922, 49.170047614000097 ], [ -122.84812051599999, 49.170038866000091 ], [ -122.848738697999963, 49.170035113000075 ], [ -122.849451577999943, 49.170026163000074 ], [ -122.85138973499997, 49.170001826000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67232894", "BldgCostT": "44251523", "sL_LossRatio": "0.693069746779209", "sL_AssetLoss": "1575700", "sL_BldgLoss": "1092070", "sL_StrLoss": "437690", "sL_NStrLoss": "654380", "sL_ContLoss": "483630", "geom_point": "0101000020E610000075CE1E81A2B65EC045A076CFEC954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852795199999917, 49.173512698000089 ], [ -122.852815400999958, 49.172768193000095 ], [ -122.851471108999988, 49.172773901000042 ], [ -122.851474844999942, 49.172565819000049 ], [ -122.851502008999987, 49.171062900000038 ], [ -122.851519074999914, 49.170000189000078 ], [ -122.852665600999956, 49.169978807000078 ], [ -122.853673720999907, 49.169954198000013 ], [ -122.854693499999939, 49.16993978300011 ], [ -122.85491307699999, 49.169937199000103 ], [ -122.855695309999973, 49.169928488000103 ], [ -122.856896190999947, 49.169913103000084 ], [ -122.856886405, 49.17117250400004 ], [ -122.855488781999966, 49.171196492000036 ], [ -122.854177694999947, 49.171219493000081 ], [ -122.854154378999908, 49.173510101000062 ], [ -122.852795199999917, 49.173512698000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42799833", "BldgCostT": "29253333", "sL_LossRatio": "0.718244108963289", "sL_AssetLoss": "897550", "sL_BldgLoss": "644660", "sL_StrLoss": "287290", "sL_NStrLoss": "357370", "sL_ContLoss": "252890", "geom_point": "0101000020E61000003EAB8A78C4B65EC0D99E93BD29964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.854154378999908, 49.173510101000062 ], [ -122.854177694999947, 49.171219493000081 ], [ -122.855488781999966, 49.171196492000036 ], [ -122.856886405, 49.17117250400004 ], [ -122.85687127599999, 49.1723486980001 ], [ -122.856846911999966, 49.175853800000091 ], [ -122.856042085999945, 49.175851011000077 ], [ -122.855459873999962, 49.175840396000062 ], [ -122.85546010299997, 49.175087095000045 ], [ -122.855462896999967, 49.174276291000112 ], [ -122.855462881000022, 49.173505886000029 ], [ -122.854154378999908, 49.173510101000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82612228", "BldgCostT": "53909857", "sL_LossRatio": "0.703333388696042", "sL_AssetLoss": "1806270", "sL_BldgLoss": "1270410", "sL_StrLoss": "501330", "sL_NStrLoss": "769080", "sL_ContLoss": "535860", "geom_point": "0101000020E6100000CFA44DD5FDB65EC0A1AB7CE8E5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.860585209999897, 49.169764899000072 ], [ -122.861987008999932, 49.169728663000043 ], [ -122.862210116999933, 49.170150103000047 ], [ -122.861002989999974, 49.170460901000091 ], [ -122.861480482, 49.171268596000083 ], [ -122.861878610999966, 49.171933496000058 ], [ -122.860724381999916, 49.172210707000055 ], [ -122.860307203999966, 49.172338107000058 ], [ -122.85981201499996, 49.172380508000089 ], [ -122.859239038999974, 49.172374753000049 ], [ -122.858307285999942, 49.172365393000078 ], [ -122.85687127599999, 49.1723486980001 ], [ -122.856886405, 49.17117250400004 ], [ -122.856896190999947, 49.169913103000084 ], [ -122.857531875999953, 49.169917179000095 ], [ -122.858161299999935, 49.169921184000046 ], [ -122.85946503299999, 49.169893366000117 ], [ -122.859908010999973, 49.169883906000081 ], [ -122.860585209999897, 49.169764899000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99121749", "BldgCostT": "60504999", "sL_LossRatio": "0.65565115965304", "sL_AssetLoss": "2297670", "sL_BldgLoss": "1506470", "sL_StrLoss": "572870", "sL_NStrLoss": "933600", "sL_ContLoss": "791200", "geom_point": "0101000020E6100000553528371DB75EC03C3EDED455964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858307285999942, 49.172365393000078 ], [ -122.859239038999974, 49.172374753000049 ], [ -122.85981201499996, 49.172380508000089 ], [ -122.860307203999966, 49.172338107000058 ], [ -122.860724381999916, 49.172210707000055 ], [ -122.861878610999966, 49.171933496000058 ], [ -122.863051505999934, 49.173897606000018 ], [ -122.86394620099999, 49.175412998000098 ], [ -122.86399860399996, 49.175591911000076 ], [ -122.864107790999952, 49.17596459400005 ], [ -122.864084119999944, 49.177128893 ], [ -122.862460780999953, 49.177122202000085 ], [ -122.861453397999966, 49.177112606000044 ], [ -122.861456203999936, 49.175528793000097 ], [ -122.859803885999966, 49.175525602000036 ], [ -122.859175660999952, 49.175523634000051 ], [ -122.85824489499997, 49.175520685000073 ], [ -122.858251306999989, 49.174715413000044 ], [ -122.858307285999942, 49.172365393000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88957084", "BldgCostT": "58128334", "sL_LossRatio": "0.686271385794818", "sL_AssetLoss": "2134010", "sL_BldgLoss": "1464510", "sL_StrLoss": "566510", "sL_NStrLoss": "898000", "sL_ContLoss": "669500", "geom_point": "0101000020E61000007B788D6553B75EC0D12A5D6EEE954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861987008999932, 49.169728663000043 ], [ -122.8680424, 49.169776589000037 ], [ -122.86804951, 49.170300660000095 ], [ -122.868049855999942, 49.170327657000058 ], [ -122.868056188000011, 49.170793401000026 ], [ -122.868056294, 49.171667314000032 ], [ -122.865437115999953, 49.171708197000029 ], [ -122.86541372, 49.172585109000053 ], [ -122.8654184869999, 49.173469200000071 ], [ -122.864576686999953, 49.173486997000083 ], [ -122.863051505999934, 49.173897606000018 ], [ -122.861878610999966, 49.171933496000058 ], [ -122.861480482, 49.171268596000083 ], [ -122.861002989999974, 49.170460901000091 ], [ -122.862210116999933, 49.170150103000047 ], [ -122.861987008999932, 49.169728663000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "386050446", "BldgCostT": "259770268", "sL_LossRatio": "0.763688972859032", "sL_AssetLoss": "4620690", "sL_BldgLoss": "3528770", "sL_StrLoss": "1589800", "sL_NStrLoss": "1938970", "sL_ContLoss": "1091920", "geom_point": "0101000020E6100000B7334B23A2B75EC089208CA737964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868056294, 49.171667314000032 ], [ -122.868056188000011, 49.170793401000026 ], [ -122.868049855999942, 49.170327657000058 ], [ -122.86804951, 49.170300660000095 ], [ -122.8680424, 49.169776589000037 ], [ -122.868853293999948, 49.169810093000109 ], [ -122.869566027999952, 49.169836946000032 ], [ -122.870850212999983, 49.169885307000087 ], [ -122.870847681, 49.170737604000053 ], [ -122.870841102000014, 49.171752794000056 ], [ -122.869846389999964, 49.171759903000066 ], [ -122.869610377999919, 49.171904403000013 ], [ -122.869488597999961, 49.172084702000099 ], [ -122.869481954999941, 49.173409172000063 ], [ -122.869476678999959, 49.174459406000032 ], [ -122.870827009999928, 49.174467110000151 ], [ -122.870821317999955, 49.175264303000091 ], [ -122.87082040699994, 49.175431519000092 ], [ -122.87081968299999, 49.175575420000051 ], [ -122.87081674699999, 49.176142143000014 ], [ -122.870816199999979, 49.176241089000037 ], [ -122.870813657999946, 49.176726844000058 ], [ -122.870811505999882, 49.17714260200006 ], [ -122.87043545899995, 49.177144305000112 ], [ -122.86799920199995, 49.177155408000068 ], [ -122.868016151999939, 49.175527257000049 ], [ -122.868016878999981, 49.175455311000071 ], [ -122.868017544999958, 49.175392349000035 ], [ -122.868038385999967, 49.173388505000105 ], [ -122.868056294, 49.171667314000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53590166", "BldgCostT": "35726666", "sL_LossRatio": "0.698645732442949", "sL_AssetLoss": "1177020", "sL_BldgLoss": "822320", "sL_StrLoss": "338170", "sL_NStrLoss": "484150", "sL_ContLoss": "354700", "geom_point": "0101000020E6100000713A2C81D2B75EC0FD1BF67371964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87293550899993, 49.173539094000049 ], [ -122.873650588999965, 49.173549908000091 ], [ -122.873650614999931, 49.17446710600008 ], [ -122.873625073999975, 49.175315097000066 ], [ -122.873610510999939, 49.176551800000041 ], [ -122.873545314999959, 49.177153505000021 ], [ -122.870811505999882, 49.17714260200006 ], [ -122.870813657999946, 49.176726844000058 ], [ -122.870816199999979, 49.176241089000037 ], [ -122.87081674699999, 49.176142143000014 ], [ -122.87081968299999, 49.175575420000051 ], [ -122.87082040699994, 49.175431519000092 ], [ -122.870821317999955, 49.175264303000091 ], [ -122.870827009999928, 49.174467110000151 ], [ -122.870833403999939, 49.173536586000061 ], [ -122.872288303999937, 49.17353829000006 ], [ -122.87293550899993, 49.173539094000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45523501", "BldgCostT": "30660001", "sL_LossRatio": "0.718425668761877", "sL_AssetLoss": "820920", "sL_BldgLoss": "589770", "sL_StrLoss": "266970", "sL_NStrLoss": "322800", "sL_ContLoss": "231150", "geom_point": "0101000020E6100000BB829643C5B75EC08D1D019A10964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870841102000014, 49.171752794000056 ], [ -122.870847681, 49.170737604000053 ], [ -122.870850212999983, 49.169885307000087 ], [ -122.871591505999959, 49.169914091000052 ], [ -122.872261587999958, 49.169939806000095 ], [ -122.872242495999942, 49.171752997000091 ], [ -122.873203812999989, 49.17173140200007 ], [ -122.873634889999963, 49.17174391599999 ], [ -122.873650588999965, 49.173549908000091 ], [ -122.87293550899993, 49.173539094000049 ], [ -122.872288303999937, 49.17353829000006 ], [ -122.870833403999939, 49.173536586000061 ], [ -122.870827009999928, 49.174467110000151 ], [ -122.869476678999959, 49.174459406000032 ], [ -122.869481954999941, 49.173409172000063 ], [ -122.869488597999961, 49.172084702000099 ], [ -122.869610377999919, 49.171904403000013 ], [ -122.869846389999964, 49.171759903000066 ], [ -122.870841102000014, 49.171752794000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74787177", "BldgCostT": "49327069", "sL_LossRatio": "0.7205009397272", "sL_AssetLoss": "1074780", "sL_BldgLoss": "774380", "sL_StrLoss": "349870", "sL_NStrLoss": "424510", "sL_ContLoss": "300400", "geom_point": "0101000020E610000063432F8AFBB75EC00B67BF0712964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.873650588999965, 49.173549908000091 ], [ -122.873634889999963, 49.17174391599999 ], [ -122.873203812999989, 49.17173140200007 ], [ -122.872242495999942, 49.171752997000091 ], [ -122.872261587999958, 49.169939806000095 ], [ -122.873639110999989, 49.170009603000047 ], [ -122.87486071, 49.170053107000044 ], [ -122.876431891999943, 49.170117694000048 ], [ -122.876422082999952, 49.171752702000063 ], [ -122.876419989999931, 49.17355910000007 ], [ -122.876415591999915, 49.175318589 ], [ -122.8752839199999, 49.175323609000046 ], [ -122.873625073999975, 49.175315097000066 ], [ -122.873650614999931, 49.17446710600008 ], [ -122.873650588999965, 49.173549908000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47331666", "BldgCostT": "30696666", "sL_LossRatio": "0.707491541807637", "sL_AssetLoss": "827600", "sL_BldgLoss": "585520", "sL_StrLoss": "256380", "sL_NStrLoss": "329140", "sL_ContLoss": "242080", "geom_point": "0101000020E610000044D5AF743EB85EC0CBD2F313F3954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879266702999971, 49.17254150499999 ], [ -122.879261110999934, 49.171746702000085 ], [ -122.87788999699994, 49.17174299600007 ], [ -122.877537511999932, 49.171744496000038 ], [ -122.876422082999952, 49.171752702000063 ], [ -122.876431891999943, 49.170117694000048 ], [ -122.877872198999981, 49.170171108000019 ], [ -122.879254609, 49.17020849200005 ], [ -122.880393798999989, 49.17025410300009 ], [ -122.880419576999913, 49.171381997 ], [ -122.880434799999961, 49.172177212000129 ], [ -122.880528400999978, 49.172988999000076 ], [ -122.880467200999945, 49.173798103000109 ], [ -122.87927181100001, 49.173772405000108 ], [ -122.879266702999971, 49.17254150499999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56955250", "BldgCostT": "36865000", "sL_LossRatio": "0.694945255281037", "sL_AssetLoss": "943470", "sL_BldgLoss": "655660", "sL_StrLoss": "295570", "sL_NStrLoss": "360090", "sL_ContLoss": "287810", "geom_point": "0101000020E61000007141642E3CB85EC0CE20251343964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87784192299992, 49.175367178000108 ], [ -122.877847303999914, 49.174420392000059 ], [ -122.877940398999911, 49.174055490000015 ], [ -122.877946513000026, 49.173556480000137 ], [ -122.876419989999931, 49.17355910000007 ], [ -122.876422082999952, 49.171752702000063 ], [ -122.877537511999932, 49.171744496000038 ], [ -122.87788999699994, 49.17174299600007 ], [ -122.879261110999934, 49.171746702000085 ], [ -122.879266702999971, 49.17254150499999 ], [ -122.87927181100001, 49.173772405000108 ], [ -122.879286821999941, 49.174630605000068 ], [ -122.881952313999975, 49.174608920000018 ], [ -122.882127088999965, 49.174607484000049 ], [ -122.882308785999953, 49.17449559400012 ], [ -122.881879312999985, 49.175131904000025 ], [ -122.881879092999938, 49.17548330000011 ], [ -122.879278987999939, 49.175502598000037 ], [ -122.879286307999948, 49.176273097000035 ], [ -122.877836803999926, 49.176271596000113 ], [ -122.87784192299992, 49.175367178000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91777833", "BldgCostT": "58458333", "sL_LossRatio": "0.684735527064703", "sL_AssetLoss": "2073180", "sL_BldgLoss": "1419580", "sL_StrLoss": "593280", "sL_NStrLoss": "826300", "sL_ContLoss": "653600", "geom_point": "0101000020E61000004374194821B85EC0061AD8CF87964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.873610510999939, 49.176551800000041 ], [ -122.873625073999975, 49.175315097000066 ], [ -122.8752839199999, 49.175323609000046 ], [ -122.876415591999915, 49.175318589 ], [ -122.876419989999931, 49.17355910000007 ], [ -122.877946513000026, 49.173556480000137 ], [ -122.877940398999911, 49.174055490000015 ], [ -122.877847303999914, 49.174420392000059 ], [ -122.87784192299992, 49.175367178000108 ], [ -122.877836803999926, 49.176271596000113 ], [ -122.879286307999948, 49.176273097000035 ], [ -122.881882901999973, 49.176264491000026 ], [ -122.881874419000013, 49.177106703000042 ], [ -122.881872802999951, 49.177130109000075 ], [ -122.880508097999922, 49.17713288100002 ], [ -122.879287291999972, 49.177136298000093 ], [ -122.876415106999929, 49.17716289100013 ], [ -122.873545314999959, 49.177153505000021 ], [ -122.873610510999939, 49.176551800000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109124833", "BldgCostT": "72898333", "sL_LossRatio": "0.716987316876371", "sL_AssetLoss": "1982950", "sL_BldgLoss": "1421750", "sL_StrLoss": "591650", "sL_NStrLoss": "830100", "sL_ContLoss": "561200", "geom_point": "0101000020E6100000DD09C42526B85EC0D99C414BF0964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87758929099999, 49.182508306000017 ], [ -122.877625671999951, 49.181740798000121 ], [ -122.877024603999928, 49.181726098000048 ], [ -122.876861799999929, 49.181679908000071 ], [ -122.876732096999945, 49.181588808000079 ], [ -122.876537115999923, 49.181326280000079 ], [ -122.876296279999934, 49.181134600000036 ], [ -122.875930612999966, 49.181004203000079 ], [ -122.87552635599998, 49.180928336000079 ], [ -122.875493111999958, 49.180922083000077 ], [ -122.874697902999941, 49.180816205000056 ], [ -122.874754519999939, 49.180178101000116 ], [ -122.874773811999916, 49.179892082000059 ], [ -122.87480141199994, 49.179379408000017 ], [ -122.874808318999953, 49.178970505000059 ], [ -122.873437419999945, 49.178962303000091 ], [ -122.873473398999963, 49.178080384000054 ], [ -122.873545314999959, 49.177153505000021 ], [ -122.876415106999929, 49.17716289100013 ], [ -122.879287291999972, 49.177136298000093 ], [ -122.880508097999922, 49.17713288100002 ], [ -122.880506059999945, 49.178158529000051 ], [ -122.880504708999979, 49.178858202000043 ], [ -122.880485904999915, 49.180712801000077 ], [ -122.878894894999945, 49.180712614000093 ], [ -122.878801897999949, 49.182567789000061 ], [ -122.87758929099999, 49.182508306000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121183970", "BldgCostT": "75565413", "sL_LossRatio": "0.644891839794388", "sL_AssetLoss": "3128230", "sL_BldgLoss": "2017370", "sL_StrLoss": "839970", "sL_NStrLoss": "1177400", "sL_ContLoss": "1110860", "geom_point": "0101000020E610000043BAFA0CC3B75EC0A4467DCCE6964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870605204999947, 49.180816210000096 ], [ -122.870639802999932, 49.179875690000088 ], [ -122.867859888999973, 49.179872402000072 ], [ -122.867876091999946, 49.17898179900012 ], [ -122.867908897999939, 49.17853491200006 ], [ -122.86793189499997, 49.178092307000092 ], [ -122.867940009999955, 49.177768206000025 ], [ -122.86799920199995, 49.177155408000068 ], [ -122.87043545899995, 49.177144305000112 ], [ -122.870811505999882, 49.17714260200006 ], [ -122.873545314999959, 49.177153505000021 ], [ -122.873473398999963, 49.178080384000054 ], [ -122.873437419999945, 49.178962303000091 ], [ -122.874808318999953, 49.178970505000059 ], [ -122.87480141199994, 49.179379408000017 ], [ -122.874773811999916, 49.179892082000059 ], [ -122.874754519999939, 49.180178101000116 ], [ -122.874697902999941, 49.180816205000056 ], [ -122.87335101599993, 49.180816687000096 ], [ -122.870605204999947, 49.180816210000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83681917", "BldgCostT": "54876667", "sL_LossRatio": "0.691958173773289", "sL_AssetLoss": "2015960", "sL_BldgLoss": "1394960", "sL_StrLoss": "561050", "sL_NStrLoss": "833910", "sL_ContLoss": "621000", "geom_point": "0101000020E61000007FFF839BCEB75EC067AE5FF237974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872379286999958, 49.182253515000106 ], [ -122.870984882999977, 49.182205805000152 ], [ -122.867740693, 49.182190810000094 ], [ -122.867776710999948, 49.180802485000065 ], [ -122.867859888999973, 49.179872402000072 ], [ -122.870639802999932, 49.179875690000088 ], [ -122.870605204999947, 49.180816210000096 ], [ -122.87335101599993, 49.180816687000096 ], [ -122.874697902999941, 49.180816205000056 ], [ -122.875493111999958, 49.180922083000077 ], [ -122.87552635599998, 49.180928336000079 ], [ -122.875930612999966, 49.181004203000079 ], [ -122.876296279999934, 49.181134600000036 ], [ -122.876537115999923, 49.181326280000079 ], [ -122.876732096999945, 49.181588808000079 ], [ -122.876861799999929, 49.181679908000071 ], [ -122.877024603999928, 49.181726098000048 ], [ -122.877625671999951, 49.181740798000121 ], [ -122.87758929099999, 49.182508306000017 ], [ -122.877171381999986, 49.182500708000063 ], [ -122.875799811999954, 49.182440208000067 ], [ -122.873353480999981, 49.182308796000029 ], [ -122.872379286999958, 49.182253515000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108161417", "BldgCostT": "71701667", "sL_LossRatio": "0.710111538069167", "sL_AssetLoss": "2352560", "sL_BldgLoss": "1670580", "sL_StrLoss": "692780", "sL_NStrLoss": "977800", "sL_ContLoss": "681980", "geom_point": "0101000020E61000006FE4807E5BB75EC0ABA6140960974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.866320494999954, 49.180797095000074 ], [ -122.867776710999948, 49.180802485000065 ], [ -122.867740693, 49.182190810000094 ], [ -122.867718578999984, 49.183088393000112 ], [ -122.867686112999962, 49.184446106000038 ], [ -122.86602969799999, 49.184438503000102 ], [ -122.864620004999921, 49.184432592000078 ], [ -122.863198111999964, 49.184425401000098 ], [ -122.862097101999922, 49.184418597000032 ], [ -122.862162401999939, 49.183066301000132 ], [ -122.862184998999908, 49.182608402000042 ], [ -122.862197307999935, 49.18232489600009 ], [ -122.862226224999958, 49.181755403000096 ], [ -122.862241109999943, 49.181574788000091 ], [ -122.862270688999914, 49.180790893000065 ], [ -122.863656204999955, 49.180788 ], [ -122.86488338599996, 49.180792204000056 ], [ -122.866320494999954, 49.180797095000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254294663", "BldgCostT": "171281753", "sL_LossRatio": "0.729245425166588", "sL_AssetLoss": "4446610", "sL_BldgLoss": "3242670", "sL_StrLoss": "1410470", "sL_NStrLoss": "1832200", "sL_ContLoss": "1203940", "geom_point": "0101000020E6100000FD5C54285EB75EC0A4D5A955E8964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.865990556999947, 49.177141816000095 ], [ -122.86799920199995, 49.177155408000068 ], [ -122.867940009999955, 49.177768206000025 ], [ -122.86793189499997, 49.178092307000092 ], [ -122.867908897999939, 49.17853491200006 ], [ -122.867876091999946, 49.17898179900012 ], [ -122.867859888999973, 49.179872402000072 ], [ -122.867776710999948, 49.180802485000065 ], [ -122.866320494999954, 49.180797095000074 ], [ -122.86488338599996, 49.180792204000056 ], [ -122.863656204999955, 49.180788 ], [ -122.862270688999914, 49.180790893000065 ], [ -122.86230518699989, 49.180072272000103 ], [ -122.862346554999959, 49.179209249000102 ], [ -122.862364902999929, 49.17882670300007 ], [ -122.86240410299996, 49.178043083000034 ], [ -122.862460780999953, 49.177122202000085 ], [ -122.864084119999944, 49.177128893 ], [ -122.865990556999947, 49.177141816000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220460750", "BldgCostT": "149120000", "sL_LossRatio": "0.761087076060993", "sL_AssetLoss": "3437110", "sL_BldgLoss": "2615940", "sL_StrLoss": "1169260", "sL_NStrLoss": "1446680", "sL_ContLoss": "821170", "geom_point": "0101000020E6100000B31BE0F602B75EC01F108D93E7964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85673640499999, 49.178967092000057 ], [ -122.856838399999916, 49.17709509400008 ], [ -122.858334379999974, 49.177100792000026 ], [ -122.859157538999938, 49.177103922000114 ], [ -122.859398802, 49.177104832000126 ], [ -122.861453397999966, 49.177112606000044 ], [ -122.862460780999953, 49.177122202000085 ], [ -122.86240410299996, 49.178043083000034 ], [ -122.862364902999929, 49.17882670300007 ], [ -122.862346554999959, 49.179209249000102 ], [ -122.86230518699989, 49.180072272000103 ], [ -122.862270688999914, 49.180790893000065 ], [ -122.860910505, 49.180786394000094 ], [ -122.859491091999971, 49.180783713000032 ], [ -122.858090819999973, 49.180782509000032 ], [ -122.856694406999978, 49.180765193000106 ], [ -122.856723119999927, 49.179534759000056 ], [ -122.856727351999908, 49.179354887000081 ], [ -122.85673640499999, 49.178967092000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53127417", "BldgCostT": "34541667", "sL_LossRatio": "0.684607024035709", "sL_AssetLoss": "1205290", "sL_BldgLoss": "825150", "sL_StrLoss": "325190", "sL_NStrLoss": "499960", "sL_ContLoss": "380140", "geom_point": "0101000020E6100000413BE975F2B65EC03E3F39C873964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856846911999966, 49.175853800000091 ], [ -122.85687127599999, 49.1723486980001 ], [ -122.858307285999942, 49.172365393000078 ], [ -122.858251306999989, 49.174715413000044 ], [ -122.85824489499997, 49.175520685000073 ], [ -122.859175660999952, 49.175523634000051 ], [ -122.859803885999966, 49.175525602000036 ], [ -122.861456203999936, 49.175528793000097 ], [ -122.861453397999966, 49.177112606000044 ], [ -122.859398802, 49.177104832000126 ], [ -122.859157538999938, 49.177103922000114 ], [ -122.858334379999974, 49.177100792000026 ], [ -122.856838399999916, 49.17709509400008 ], [ -122.856846911999966, 49.175853800000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96438167", "BldgCostT": "63886667", "sL_LossRatio": "0.701148391494518", "sL_AssetLoss": "2112520", "sL_BldgLoss": "1481190", "sL_StrLoss": "616450", "sL_NStrLoss": "864740", "sL_ContLoss": "631330", "geom_point": "0101000020E61000006F02256800B75EC0FA0DB8535F974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.860910505, 49.180786394000094 ], [ -122.862270688999914, 49.180790893000065 ], [ -122.862241109999943, 49.181574788000091 ], [ -122.862226224999958, 49.181755403000096 ], [ -122.862197307999935, 49.18232489600009 ], [ -122.862184998999908, 49.182608402000042 ], [ -122.862162401999939, 49.183066301000132 ], [ -122.862097101999922, 49.184418597000032 ], [ -122.860276601999914, 49.184423203000051 ], [ -122.856540899999928, 49.184393511000117 ], [ -122.856568903999985, 49.183410494000057 ], [ -122.85661049499997, 49.182593604000076 ], [ -122.85664916899999, 49.181721050000093 ], [ -122.856649716999968, 49.18170899100005 ], [ -122.856676001, 49.181218790000095 ], [ -122.856694406999978, 49.180765193000106 ], [ -122.858090819999973, 49.180782509000032 ], [ -122.859491091999971, 49.180783713000032 ], [ -122.860910505, 49.180786394000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100238084", "BldgCostT": "65008334", "sL_LossRatio": "0.694354951023629", "sL_AssetLoss": "2154100", "sL_BldgLoss": "1495710", "sL_StrLoss": "607800", "sL_NStrLoss": "887910", "sL_ContLoss": "658390", "geom_point": "0101000020E61000009117A1F1A7B65EC08466AE3E64974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85133551699991, 49.181497889000099 ], [ -122.851332498999966, 49.181096906000072 ], [ -122.852108081999916, 49.18112679900004 ], [ -122.852663884999984, 49.18118270500009 ], [ -122.853311718000015, 49.181177294000037 ], [ -122.854448689999941, 49.181197892000085 ], [ -122.856676001, 49.181218790000095 ], [ -122.856649716999968, 49.18170899100005 ], [ -122.85664916899999, 49.181721050000093 ], [ -122.85661049499997, 49.182593604000076 ], [ -122.856568903999985, 49.183410494000057 ], [ -122.856540899999928, 49.184393511000117 ], [ -122.855290993999944, 49.184377797000145 ], [ -122.852523305999966, 49.184372600000053 ], [ -122.852463882999956, 49.184357391000056 ], [ -122.852078417999962, 49.184258698000036 ], [ -122.851832102999936, 49.184148810000075 ], [ -122.851703921, 49.18405669900006 ], [ -122.851577110999926, 49.183964692000046 ], [ -122.851418811999963, 49.183708712000097 ], [ -122.851351090999941, 49.183453605000032 ], [ -122.851345254999941, 49.182847238000093 ], [ -122.851341181999913, 49.182426107000047 ], [ -122.85133551699991, 49.181497889000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196825833", "BldgCostT": "136263333", "sL_LossRatio": "0.787843009008167", "sL_AssetLoss": "2354530", "sL_BldgLoss": "1855000", "sL_StrLoss": "841450", "sL_NStrLoss": "1013550", "sL_ContLoss": "499530", "geom_point": "0101000020E61000000F65666E17B85EC062A61F9A9A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87360160299994, 49.168223584000074 ], [ -122.87360650899997, 49.167335390000062 ], [ -122.876361858999957, 49.167444880000062 ], [ -122.876450341999956, 49.167448393000015 ], [ -122.878486236999962, 49.167529243000061 ], [ -122.879240515, 49.167559202000064 ], [ -122.879245990999905, 49.168437805000082 ], [ -122.879259507999961, 49.168946078000062 ], [ -122.879270482999956, 49.169359297000042 ], [ -122.879264083999928, 49.169701535000065 ], [ -122.879254609, 49.17020849200005 ], [ -122.877872198999981, 49.170171108000019 ], [ -122.876431891999943, 49.170117694000048 ], [ -122.87486071, 49.170053107000044 ], [ -122.873639110999989, 49.170009603000047 ], [ -122.873609498999912, 49.169125692000122 ], [ -122.87360160299994, 49.168223584000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133797433", "BldgCostT": "91324570", "sL_LossRatio": "0.770153276834868", "sL_AssetLoss": "2188850", "sL_BldgLoss": "1685750", "sL_StrLoss": "738350", "sL_NStrLoss": "947400", "sL_ContLoss": "503100", "geom_point": "0101000020E6100000A42E1156C0B75EC01515D46484954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872090625999959, 49.166368704000078 ], [ -122.872092790999943, 49.165479501000085 ], [ -122.873574614999939, 49.165525208000062 ], [ -122.873584991999977, 49.166430983000126 ], [ -122.87360650899997, 49.167335390000062 ], [ -122.87360160299994, 49.168223584000074 ], [ -122.873609498999912, 49.169125692000122 ], [ -122.873639110999989, 49.170009603000047 ], [ -122.872261587999958, 49.169939806000095 ], [ -122.871591505999959, 49.169914091000052 ], [ -122.870850212999983, 49.169885307000087 ], [ -122.869566027999952, 49.169836946000032 ], [ -122.868853293999948, 49.169810093000109 ], [ -122.8680424, 49.169776589000037 ], [ -122.868044669999961, 49.168645874000084 ], [ -122.868047694999959, 49.167154908000057 ], [ -122.869030588999948, 49.16701499200007 ], [ -122.869992191, 49.166784297000049 ], [ -122.871060691999929, 49.166492803000047 ], [ -122.871657813999917, 49.166381305000044 ], [ -122.872090625999959, 49.166368704000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82994812", "BldgCostT": "53573191", "sL_LossRatio": "0.677221196134654", "sL_AssetLoss": "1959980", "sL_BldgLoss": "1327340", "sL_StrLoss": "524300", "sL_NStrLoss": "803040", "sL_ContLoss": "632640", "geom_point": "0101000020E61000007D043752B6B75EC01290385C12954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86805158099996, 49.166588237000099 ], [ -122.868030962999939, 49.165021705000086 ], [ -122.868009681999965, 49.163505573000101 ], [ -122.867999800999939, 49.16279798700009 ], [ -122.867957840999935, 49.162708472000105 ], [ -122.867962348, 49.16258066200011 ], [ -122.868076197999926, 49.162579465000057 ], [ -122.869746429999935, 49.162675789000104 ], [ -122.870021046999966, 49.162691585000047 ], [ -122.870472688999953, 49.162717647000079 ], [ -122.87074727199996, 49.162733453000058 ], [ -122.871229613999958, 49.162761263000071 ], [ -122.873543793999914, 49.162905094000052 ], [ -122.873534306999957, 49.163759892000058 ], [ -122.87354133099997, 49.164154731000025 ], [ -122.873550088999949, 49.164646004000033 ], [ -122.873574614999939, 49.165525208000062 ], [ -122.872092790999943, 49.165479501000085 ], [ -122.872090625999959, 49.166368704000078 ], [ -122.871657813999917, 49.166381305000044 ], [ -122.871060691999929, 49.166492803000047 ], [ -122.869992191, 49.166784297000049 ], [ -122.869030588999948, 49.16701499200007 ], [ -122.868047694999959, 49.167154908000057 ], [ -122.86805158099996, 49.166588237000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72900084", "BldgCostT": "48803334", "sL_LossRatio": "0.709410142485062", "sL_AssetLoss": "1631750", "sL_BldgLoss": "1157580", "sL_StrLoss": "483430", "sL_NStrLoss": "674150", "sL_ContLoss": "474170", "geom_point": "0101000020E6100000DFC2A9C556B75EC0873E927190954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867275670999916, 49.166606218000013 ], [ -122.86805158099996, 49.166588237000099 ], [ -122.868047694999959, 49.167154908000057 ], [ -122.868044669999961, 49.168645874000084 ], [ -122.8680424, 49.169776589000037 ], [ -122.861987008999932, 49.169728663000043 ], [ -122.860585209999897, 49.169764899000072 ], [ -122.860184404000023, 49.168978315000089 ], [ -122.860155403999897, 49.168860291000087 ], [ -122.8601835, 49.168647602000128 ], [ -122.860388707999988, 49.168389607000094 ], [ -122.860666800999951, 49.168190512000109 ], [ -122.861058003999915, 49.168042390000089 ], [ -122.863924583999946, 49.16735920100006 ], [ -122.865099221999913, 49.167060904000095 ], [ -122.866261212999959, 49.166765904000052 ], [ -122.866682482999977, 49.166660105000062 ], [ -122.867275670999916, 49.166606218000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131828083", "BldgCostT": "82108333", "sL_LossRatio": "0.669831503927941", "sL_AssetLoss": "2935380", "sL_BldgLoss": "1966210", "sL_StrLoss": "835330", "sL_NStrLoss": "1130880", "sL_ContLoss": "969170", "geom_point": "0101000020E6100000DC4A3B7733B75EC0B588A4ED4A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856909109999918, 49.166273396000072 ], [ -122.857706508, 49.16629670200011 ], [ -122.857942295999948, 49.166303600000056 ], [ -122.858257890999951, 49.166340692000048 ], [ -122.858705488999959, 49.166412388000012 ], [ -122.859181382999935, 49.166430699000095 ], [ -122.859493894999972, 49.166395719000029 ], [ -122.859800377999989, 49.166361405000039 ], [ -122.860126496999897, 49.166282594000094 ], [ -122.860758585999989, 49.166120793000097 ], [ -122.86139939399996, 49.165869200000053 ], [ -122.862025678999942, 49.165467607000032 ], [ -122.862237506999932, 49.165539610000096 ], [ -122.8626081099999, 49.165593589000117 ], [ -122.863088920999957, 49.165559895000051 ], [ -122.866433485999934, 49.164718393000022 ], [ -122.86643393199995, 49.164560138000091 ], [ -122.866436803999974, 49.163511213000113 ], [ -122.865150583999963, 49.163512507000128 ], [ -122.863828411999989, 49.163500095000082 ], [ -122.862457293999981, 49.16350159300012 ], [ -122.862418434999967, 49.162614741000041 ], [ -122.865325640999984, 49.162584104000068 ], [ -122.867962348, 49.16258066200011 ], [ -122.867957840999935, 49.162708472000105 ], [ -122.867999800999939, 49.16279798700009 ], [ -122.868009681999965, 49.163505573000101 ], [ -122.868030962999939, 49.165021705000086 ], [ -122.86805158099996, 49.166588237000099 ], [ -122.867275670999916, 49.166606218000013 ], [ -122.866682482999977, 49.166660105000062 ], [ -122.866261212999959, 49.166765904000052 ], [ -122.865099221999913, 49.167060904000095 ], [ -122.863924583999946, 49.16735920100006 ], [ -122.861058003999915, 49.168042390000089 ], [ -122.860666800999951, 49.168190512000109 ], [ -122.860388707999988, 49.168389607000094 ], [ -122.8601835, 49.168647602000128 ], [ -122.860155403999897, 49.168860291000087 ], [ -122.860184404000023, 49.168978315000089 ], [ -122.860585209999897, 49.169764899000072 ], [ -122.859908010999973, 49.169883906000081 ], [ -122.85946503299999, 49.169893366000117 ], [ -122.858161299999935, 49.169921184000046 ], [ -122.857531875999953, 49.169917179000095 ], [ -122.856896190999947, 49.169913103000084 ], [ -122.856900518999936, 49.168695607000075 ], [ -122.856902102999953, 49.168254826000059 ], [ -122.856902967999972, 49.168013028000082 ], [ -122.856903299999956, 49.167913009000166 ], [ -122.856904422999946, 49.167589166000013 ], [ -122.856909109999918, 49.166273396000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111115625", "BldgCostT": "73656382", "sL_LossRatio": "0.705709912333596", "sL_AssetLoss": "2155900", "sL_BldgLoss": "1521440", "sL_StrLoss": "634310", "sL_NStrLoss": "887130", "sL_ContLoss": "634460", "geom_point": "0101000020E6100000ABB1105F1EB75EC0075AFDE806954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85852789799999, 49.16551071100011 ], [ -122.858854807999961, 49.165075997000031 ], [ -122.858960899999957, 49.164925904 ], [ -122.858999191999914, 49.16470359500007 ], [ -122.858952213999927, 49.164583851000039 ], [ -122.858856490000022, 49.164339918000032 ], [ -122.858819189999906, 49.163918087000049 ], [ -122.856911923999974, 49.164673298000103 ], [ -122.85691230599997, 49.164503003000121 ], [ -122.856916346999981, 49.163181452000039 ], [ -122.856916464999955, 49.16313646300005 ], [ -122.856916900999934, 49.162992537000015 ], [ -122.856917968999966, 49.162634480000101 ], [ -122.859376855999955, 49.162625477000148 ], [ -122.859688100999989, 49.162624323000109 ], [ -122.85970605599999, 49.162624253000082 ], [ -122.859989791999951, 49.162623203000052 ], [ -122.860199752999975, 49.162622479000092 ], [ -122.862418434999967, 49.162614741000041 ], [ -122.862457293999981, 49.16350159300012 ], [ -122.863828411999989, 49.163500095000082 ], [ -122.865150583999963, 49.163512507000128 ], [ -122.866436803999974, 49.163511213000113 ], [ -122.86643393199995, 49.164560138000091 ], [ -122.866433485999934, 49.164718393000022 ], [ -122.863088920999957, 49.165559895000051 ], [ -122.8626081099999, 49.165593589000117 ], [ -122.862237506999932, 49.165539610000096 ], [ -122.862025678999942, 49.165467607000032 ], [ -122.86139939399996, 49.165869200000053 ], [ -122.860758585999989, 49.166120793000097 ], [ -122.860126496999897, 49.166282594000094 ], [ -122.859800377999989, 49.166361405000039 ], [ -122.859493894999972, 49.166395719000029 ], [ -122.859181382999935, 49.166430699000095 ], [ -122.858705488999959, 49.166412388000012 ], [ -122.858257890999951, 49.166340692000048 ], [ -122.858356408999953, 49.165694902000041 ], [ -122.85852789799999, 49.16551071100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "543515053", "BldgCostT": "314742516", "sL_LossRatio": "0.605296663695541", "sL_AssetLoss": "11993210", "sL_BldgLoss": "7259450", "sL_StrLoss": "2591970", "sL_NStrLoss": "4667480", "sL_ContLoss": "4733760", "geom_point": "0101000020E6100000415C41EC2FB75EC0EEFF9763E0934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856787627999893, 49.150793003000082 ], [ -122.856783596999961, 49.150081911 ], [ -122.855512009999927, 49.150076304000052 ], [ -122.855509802999933, 49.148787061000156 ], [ -122.855509492999914, 49.148613004000026 ], [ -122.855558238999947, 49.148161832000042 ], [ -122.856771886999951, 49.148166000000124 ], [ -122.858965234, 49.148173715000027 ], [ -122.862280319999954, 49.148185283000039 ], [ -122.864408859999969, 49.148165628000072 ], [ -122.865176667999918, 49.148158542000068 ], [ -122.865313788999956, 49.148157273000088 ], [ -122.865999429999974, 49.148150907000044 ], [ -122.867914183, 49.148133178000109 ], [ -122.867926328999914, 49.150252740000028 ], [ -122.86796272699992, 49.15534999300008 ], [ -122.867974078999936, 49.157419991000069 ], [ -122.867976770999917, 49.158947292000036 ], [ -122.867965433, 49.16070304100009 ], [ -122.867962348, 49.16258066200011 ], [ -122.865325640999984, 49.162584104000068 ], [ -122.862418434999967, 49.162614741000041 ], [ -122.860199752999975, 49.162622479000092 ], [ -122.859989791999951, 49.162623203000052 ], [ -122.85970605599999, 49.162624253000082 ], [ -122.859688100999989, 49.162624323000109 ], [ -122.859376855999955, 49.162625477000148 ], [ -122.856917968999966, 49.162634480000101 ], [ -122.856902241999961, 49.161822951000026 ], [ -122.856899100999954, 49.161660925000035 ], [ -122.856894584999978, 49.161427081000056 ], [ -122.856876096999926, 49.160475304000052 ], [ -122.856882524999918, 49.160105379000107 ], [ -122.856888913999967, 49.159736341000013 ], [ -122.85689171099996, 49.159574694000057 ], [ -122.856887493999963, 49.159304211000077 ], [ -122.856881357999924, 49.15890868700005 ], [ -122.856878425999966, 49.158719796000071 ], [ -122.856859186999884, 49.157478888000071 ], [ -122.856853573, 49.157118387000018 ], [ -122.856827223999915, 49.155419092000081 ], [ -122.856804156999914, 49.152611782000051 ], [ -122.856803010999926, 49.152472106000026 ], [ -122.856787627999893, 49.150793003000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "615018061", "BldgCostT": "389518198", "sL_LossRatio": "0.6904859802273", "sL_AssetLoss": "6673646", "sL_BldgLoss": "4608059", "sL_StrLoss": "1963290", "sL_NStrLoss": "2644769", "sL_ContLoss": "2065587", "geom_point": "0101000020E610000000608E8129B75EC0AED0FE0F49924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856719120999955, 49.140936298000021 ], [ -122.856698740999946, 49.138273162000061 ], [ -122.856691169999948, 49.137283525000022 ], [ -122.856686056999933, 49.136619274000019 ], [ -122.856684996999959, 49.136432715000112 ], [ -122.858047977999931, 49.136438299000062 ], [ -122.860963916999978, 49.136478396000044 ], [ -122.860972803999971, 49.137361717000097 ], [ -122.862335302999952, 49.137374401000045 ], [ -122.86373570899994, 49.137396284000012 ], [ -122.863720410999946, 49.138272593000018 ], [ -122.864564990999895, 49.13828640600007 ], [ -122.865108192999955, 49.138378800000091 ], [ -122.86593660599999, 49.138733594000094 ], [ -122.866159580000016, 49.138923002000126 ], [ -122.866305139999966, 49.139158910000035 ], [ -122.866484480999972, 49.139449690000056 ], [ -122.866486740999974, 49.139966801000121 ], [ -122.866491277999955, 49.14101678600008 ], [ -122.867867985999951, 49.141024435000091 ], [ -122.86796794199999, 49.141025545000076 ], [ -122.867969509999938, 49.142366341000084 ], [ -122.867969145999979, 49.142604154000026 ], [ -122.867968224999913, 49.143215828000102 ], [ -122.867967621999924, 49.143611641000106 ], [ -122.867967049999919, 49.14398943500008 ], [ -122.867965956999953, 49.144718852000047 ], [ -122.867863291, 49.144716761000062 ], [ -122.86790612799993, 49.146420968000037 ], [ -122.867914183, 49.148133178000109 ], [ -122.865999429999974, 49.148150907000044 ], [ -122.865313788999956, 49.148157273000088 ], [ -122.865176667999918, 49.148158542000068 ], [ -122.864408859999969, 49.148165628000072 ], [ -122.862280319999954, 49.148185283000039 ], [ -122.858965234, 49.148173715000027 ], [ -122.856771886999951, 49.148166000000124 ], [ -122.856751708999951, 49.145645203000051 ], [ -122.856747693999964, 49.145037477000059 ], [ -122.85674438800001, 49.144536706000061 ], [ -122.856719120999955, 49.140936298000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189538784", "BldgCostT": "115533108", "sL_LossRatio": "0.658299112766431", "sL_AssetLoss": "2198970", "sL_BldgLoss": "1447580", "sL_StrLoss": "587740", "sL_NStrLoss": "859840", "sL_ContLoss": "751390", "geom_point": "0101000020E6100000D792BF62AAB75EC081938EEE77924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870854086999913, 49.14104370200004 ], [ -122.872129199999989, 49.141053808000073 ], [ -122.872174593999901, 49.144638510000057 ], [ -122.870829995999927, 49.144620207000045 ], [ -122.870801110999963, 49.14820724000009 ], [ -122.869949572999971, 49.148184135000079 ], [ -122.868033483999938, 49.14813213700004 ], [ -122.867914183, 49.148133178000109 ], [ -122.86790612799993, 49.146420968000037 ], [ -122.867863291, 49.144716761000062 ], [ -122.867965956999953, 49.144718852000047 ], [ -122.867967049999919, 49.14398943500008 ], [ -122.867967621999924, 49.143611641000106 ], [ -122.867968224999913, 49.143215828000102 ], [ -122.867969145999979, 49.142604154000026 ], [ -122.867969509999938, 49.142366341000084 ], [ -122.86796794199999, 49.141025545000076 ], [ -122.869437799999957, 49.141034090000076 ], [ -122.87072809199995, 49.141042805000041 ], [ -122.870854086999913, 49.14104370200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100209083", "BldgCostT": "67373333", "sL_LossRatio": "0.704028516020633", "sL_AssetLoss": "2037872", "sL_BldgLoss": "1434720", "sL_StrLoss": "653720", "sL_NStrLoss": "781000", "sL_ContLoss": "603152", "geom_point": "0101000020E610000091E3EBBE65B75EC0443A8FCC9B914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.865108192999955, 49.138378800000091 ], [ -122.864564990999895, 49.13828640600007 ], [ -122.863720410999946, 49.138272593000018 ], [ -122.86373570899994, 49.137396284000012 ], [ -122.862335302999952, 49.137374401000045 ], [ -122.862330892000017, 49.13676959700004 ], [ -122.862322204999941, 49.135578216000084 ], [ -122.863359722999945, 49.135594895000089 ], [ -122.864299119999956, 49.135623196000097 ], [ -122.864587698999955, 49.135630714000072 ], [ -122.86494888499999, 49.13555840500004 ], [ -122.865262186999956, 49.135423298000056 ], [ -122.86569880899999, 49.135287399000084 ], [ -122.866251197999958, 49.13528450600009 ], [ -122.86717941199997, 49.135296302000015 ], [ -122.867198983999941, 49.136266396000053 ], [ -122.867119598999949, 49.13638750600014 ], [ -122.86695187399998, 49.136477197000026 ], [ -122.866389398999985, 49.136690584000064 ], [ -122.866264516999976, 49.136754494000073 ], [ -122.866195114999954, 49.136869687000114 ], [ -122.866187177999947, 49.137414569000093 ], [ -122.866385542, 49.137415989 ], [ -122.867829346999898, 49.137426330000046 ], [ -122.867945699999922, 49.137427931000069 ], [ -122.867960355999955, 49.139796905 ], [ -122.86796794199999, 49.141025545000076 ], [ -122.867867985999951, 49.141024435000091 ], [ -122.866491277999955, 49.14101678600008 ], [ -122.866486740999974, 49.139966801000121 ], [ -122.866484480999972, 49.139449690000056 ], [ -122.866305139999966, 49.139158910000035 ], [ -122.866159580000016, 49.138923002000126 ], [ -122.86593660599999, 49.138733594000094 ], [ -122.865108192999955, 49.138378800000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101102916", "BldgCostT": "68076666", "sL_LossRatio": "0.710320642250582", "sL_AssetLoss": "2070220", "sL_BldgLoss": "1470520", "sL_StrLoss": "609590", "sL_NStrLoss": "860930", "sL_ContLoss": "599700", "geom_point": "0101000020E6100000C31B1D8062B75EC031375B504A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867198983999941, 49.136266396000053 ], [ -122.86717941199997, 49.135296302000015 ], [ -122.866251197999958, 49.13528450600009 ], [ -122.86569880899999, 49.135287399000084 ], [ -122.865262186999956, 49.135423298000056 ], [ -122.86494888499999, 49.13555840500004 ], [ -122.864587698999955, 49.135630714000072 ], [ -122.864299119999956, 49.135623196000097 ], [ -122.863359722999945, 49.135594895000089 ], [ -122.862322204999941, 49.135578216000084 ], [ -122.862313481999962, 49.133879459000127 ], [ -122.864199375999959, 49.13389890100008 ], [ -122.865900262999929, 49.133916435000089 ], [ -122.86781223, 49.133936079000094 ], [ -122.867829346999898, 49.137426330000046 ], [ -122.866385542, 49.137415989 ], [ -122.866187177999947, 49.137414569000093 ], [ -122.866195114999954, 49.136869687000114 ], [ -122.866264516999976, 49.136754494000073 ], [ -122.866389398999985, 49.136690584000064 ], [ -122.86695187399998, 49.136477197000026 ], [ -122.867119598999949, 49.13638750600014 ], [ -122.867198983999941, 49.136266396000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90495918", "BldgCostT": "58576668", "sL_LossRatio": "0.694811195724591", "sL_AssetLoss": "1395890", "sL_BldgLoss": "969880", "sL_StrLoss": "448780", "sL_NStrLoss": "521100", "sL_ContLoss": "426010", "geom_point": "0101000020E61000006000446E04B75EC04FD1D37850914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.860972803999971, 49.137361717000097 ], [ -122.860963916999978, 49.136478396000044 ], [ -122.858047977999931, 49.136438299000062 ], [ -122.856684996999959, 49.136432715000112 ], [ -122.856675254999956, 49.135501669000114 ], [ -122.85666113099991, 49.133743286000055 ], [ -122.857988176999982, 49.133775297000113 ], [ -122.858168331999963, 49.133779627000074 ], [ -122.859430486999898, 49.133810035000081 ], [ -122.862313481999962, 49.133879459000127 ], [ -122.862322204999941, 49.135578216000084 ], [ -122.862330892000017, 49.13676959700004 ], [ -122.862335302999952, 49.137374401000045 ], [ -122.860972803999971, 49.137361717000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "578946752", "BldgCostT": "335287921", "sL_LossRatio": "0.609815227016307", "sL_AssetLoss": "9474870", "sL_BldgLoss": "5777920", "sL_StrLoss": "2006740", "sL_NStrLoss": "3771180", "sL_ContLoss": "3696950", "geom_point": "0101000020E61000000104DE8F7CB65EC0B78E9189E7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.855510703999954, 49.146304512000057 ], [ -122.855533078999926, 49.145405097000136 ], [ -122.851247472999916, 49.145405894000049 ], [ -122.846459102, 49.145383705000022 ], [ -122.846446194999913, 49.146280807000025 ], [ -122.845775778999922, 49.146262906000118 ], [ -122.845772444999952, 49.145684987000017 ], [ -122.8457679099999, 49.144897476000025 ], [ -122.845765588999882, 49.144494810000019 ], [ -122.845765078999932, 49.144427941000032 ], [ -122.84575239899999, 49.142708512000077 ], [ -122.845739771999945, 49.14087360100006 ], [ -122.845715393999939, 49.137210988000042 ], [ -122.845503141999956, 49.137209233000064 ], [ -122.845500322999911, 49.136482904000097 ], [ -122.845491494999948, 49.135097702000081 ], [ -122.845477258999921, 49.133589812000068 ], [ -122.845692555999918, 49.133587127000112 ], [ -122.848052095999932, 49.13361714200007 ], [ -122.848486742999981, 49.133622657000068 ], [ -122.848544754999935, 49.133623407000101 ], [ -122.851124697999978, 49.133656156 ], [ -122.853069147999975, 49.13368631700007 ], [ -122.853417350999948, 49.133691695000032 ], [ -122.854375554999962, 49.133706934000038 ], [ -122.854657525999968, 49.133711420000104 ], [ -122.855107691999962, 49.133718609000042 ], [ -122.855945757999962, 49.133731906000072 ], [ -122.85666113099991, 49.133743286000055 ], [ -122.856675254999956, 49.135501669000114 ], [ -122.856684996999959, 49.136432715000112 ], [ -122.856686056999933, 49.136619274000019 ], [ -122.856691169999948, 49.137283525000022 ], [ -122.856698740999946, 49.138273162000061 ], [ -122.856719120999955, 49.140936298000021 ], [ -122.85674438800001, 49.144536706000061 ], [ -122.856747693999964, 49.145037477000059 ], [ -122.856751708999951, 49.145645203000051 ], [ -122.856771886999951, 49.148166000000124 ], [ -122.855558238999947, 49.148161832000042 ], [ -122.855372615999968, 49.148161183000063 ], [ -122.85433051499993, 49.148157626000078 ], [ -122.853977903999962, 49.148156389000071 ], [ -122.853993914999961, 49.147191006000085 ], [ -122.853971895999933, 49.146300106000098 ], [ -122.855510703999954, 49.146304512000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175570219", "BldgCostT": "117610412", "sL_LossRatio": "0.760750732650219", "sL_AssetLoss": "1443390", "sL_BldgLoss": "1098060", "sL_StrLoss": "520260", "sL_NStrLoss": "577800", "sL_ContLoss": "345330", "geom_point": "0101000020E61000004D882DFBBDB65EC0EF6A0B32F6904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85342896, 49.133216286000106 ], [ -122.854260488999941, 49.133218108000079 ], [ -122.854196552999937, 49.131783362000128 ], [ -122.854169605999957, 49.131179001000064 ], [ -122.854723001999943, 49.131187205000089 ], [ -122.855148032999978, 49.131193492000122 ], [ -122.855257641999941, 49.131195122000044 ], [ -122.856667486999967, 49.131215993000083 ], [ -122.856666155, 49.1316433040001 ], [ -122.856660015999964, 49.133658559000011 ], [ -122.85666113099991, 49.133743286000055 ], [ -122.855945757999962, 49.133731906000072 ], [ -122.855107691999962, 49.133718609000042 ], [ -122.854657525999968, 49.133711420000104 ], [ -122.854375554999962, 49.133706934000038 ], [ -122.853417350999948, 49.133691695000032 ], [ -122.853419198000012, 49.133603439000055 ], [ -122.85342896, 49.133216286000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190146584", "BldgCostT": "124843334", "sL_LossRatio": "0.740794518105282", "sL_AssetLoss": "2355390", "sL_BldgLoss": "1744860", "sL_StrLoss": "766590", "sL_NStrLoss": "978270", "sL_ContLoss": "610530", "geom_point": "0101000020E61000007DDCD86890B65EC0B017F13AEE904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851100002999971, 49.131285472000108 ], [ -122.851104402999979, 49.130819009000113 ], [ -122.85206559699995, 49.130835419000071 ], [ -122.852140304999978, 49.130836705000064 ], [ -122.852583994999975, 49.130921801000035 ], [ -122.85327210899996, 49.131078886000054 ], [ -122.853718565999969, 49.131155483000022 ], [ -122.853769905999968, 49.131164280000093 ], [ -122.853854496999972, 49.1311787960001 ], [ -122.854169605999957, 49.131179001000064 ], [ -122.854196552999937, 49.131783362000128 ], [ -122.854260488999941, 49.133218108000079 ], [ -122.85342896, 49.133216286000106 ], [ -122.853419198000012, 49.133603439000055 ], [ -122.853417350999948, 49.133691695000032 ], [ -122.853069147999975, 49.13368631700007 ], [ -122.851124697999978, 49.133656156 ], [ -122.851121040999914, 49.133568652000079 ], [ -122.851105315999945, 49.132728397000065 ], [ -122.851103958999929, 49.132580813000082 ], [ -122.85109599899998, 49.131711684000045 ], [ -122.851100002999971, 49.131285472000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "555847872", "BldgCostT": "364172942", "sL_LossRatio": "0.780129408381117", "sL_AssetLoss": "7197370", "sL_BldgLoss": "5614880", "sL_StrLoss": "2499670", "sL_NStrLoss": "3115210", "sL_ContLoss": "1582490", "geom_point": "0101000020E610000038EA7B8948B65EC09EE570B5E7904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845452998999988, 49.131061149000132 ], [ -122.845445628, 49.130277460000059 ], [ -122.845681005999936, 49.130281665000069 ], [ -122.846460174999962, 49.130295361000073 ], [ -122.848363206999977, 49.130328700000099 ], [ -122.848337191, 49.13077220800011 ], [ -122.850419388999953, 49.13080740700012 ], [ -122.851104402999979, 49.130819009000113 ], [ -122.851100002999971, 49.131285472000108 ], [ -122.85109599899998, 49.131711684000045 ], [ -122.851103958999929, 49.132580813000082 ], [ -122.851105315999945, 49.132728397000065 ], [ -122.851121040999914, 49.133568652000079 ], [ -122.851124697999978, 49.133656156 ], [ -122.848544754999935, 49.133623407000101 ], [ -122.848486742999981, 49.133622657000068 ], [ -122.848052095999932, 49.13361714200007 ], [ -122.845692555999918, 49.133587127000112 ], [ -122.845477258999921, 49.133589812000068 ], [ -122.84547601899996, 49.133506881000088 ], [ -122.845456064999922, 49.131385963000099 ], [ -122.845452998999988, 49.131061149000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100334946", "BldgCostT": "59525742", "sL_LossRatio": "0.6431089640365", "sL_AssetLoss": "2328750", "sL_BldgLoss": "1497640", "sL_StrLoss": "559000", "sL_NStrLoss": "938640", "sL_ContLoss": "831110", "geom_point": "0101000020E61000008697A77345B65EC009AEEA9379904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.848337191, 49.13077220800011 ], [ -122.848363206999977, 49.130328700000099 ], [ -122.846460174999962, 49.130295361000073 ], [ -122.845681005999936, 49.130281665000069 ], [ -122.845445628, 49.130277460000059 ], [ -122.845434009999977, 49.128885205000159 ], [ -122.845414695999921, 49.126571352000042 ], [ -122.845411869999964, 49.126269410000148 ], [ -122.845413235999985, 49.126188339000073 ], [ -122.84564332099994, 49.126189692000018 ], [ -122.84593752, 49.126194706000078 ], [ -122.846371204999926, 49.126202921000136 ], [ -122.846607937999963, 49.126247713000048 ], [ -122.847079835, 49.126258846000141 ], [ -122.848369098999939, 49.126257001000063 ], [ -122.848390699999953, 49.127151487000049 ], [ -122.848394604999953, 49.12751245600009 ], [ -122.848397017999915, 49.127737416000066 ], [ -122.848400106999961, 49.128024004000089 ], [ -122.849813996999913, 49.128062699000068 ], [ -122.851095302999965, 49.128077683000107 ], [ -122.851096585999954, 49.128469913000075 ], [ -122.851101610999962, 49.129981162000107 ], [ -122.851104402999979, 49.130819009000113 ], [ -122.850419388999953, 49.13080740700012 ], [ -122.848337191, 49.13077220800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121273478", "BldgCostT": "79599857", "sL_LossRatio": "0.671107149073648", "sL_AssetLoss": "1229446", "sL_BldgLoss": "825090", "sL_StrLoss": "394730", "sL_NStrLoss": "430360", "sL_ContLoss": "404356", "geom_point": "0101000020E6100000BE7FD2D49BB65EC064D395F871904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852583994999975, 49.130921801000035 ], [ -122.852140304999978, 49.130836705000064 ], [ -122.85206559699995, 49.130835419000071 ], [ -122.851104402999979, 49.130819009000113 ], [ -122.851101610999962, 49.129981162000107 ], [ -122.851096585999954, 49.128469913000075 ], [ -122.851095302999965, 49.128077683000107 ], [ -122.849813996999913, 49.128062699000068 ], [ -122.848400106999961, 49.128024004000089 ], [ -122.848397017999915, 49.127737416000066 ], [ -122.848394604999953, 49.12751245600009 ], [ -122.848390699999953, 49.127151487000049 ], [ -122.848369098999939, 49.126257001000063 ], [ -122.849784807999953, 49.126289401000122 ], [ -122.851094719999963, 49.126305300000077 ], [ -122.852982253999983, 49.126339830000099 ], [ -122.853119543, 49.126342333000096 ], [ -122.853668141999947, 49.126352365000059 ], [ -122.854159971999977, 49.126361362000132 ], [ -122.85440811499997, 49.12636589900012 ], [ -122.855161798999987, 49.126379665000101 ], [ -122.855367231999978, 49.126383399000126 ], [ -122.856599213999942, 49.126405902000023 ], [ -122.856627028999981, 49.127109562000051 ], [ -122.856633871, 49.127758526000029 ], [ -122.856641140999983, 49.128971544000137 ], [ -122.856643132999963, 49.129305021000036 ], [ -122.856649618999981, 49.129817282000026 ], [ -122.856652528999959, 49.130042144000079 ], [ -122.856667486999967, 49.131215993000083 ], [ -122.855257641999941, 49.131195122000044 ], [ -122.855148032999978, 49.131193492000122 ], [ -122.854723001999943, 49.131187205000089 ], [ -122.854169605999957, 49.131179001000064 ], [ -122.853854496999972, 49.1311787960001 ], [ -122.853769905999968, 49.131164280000093 ], [ -122.853718565999969, 49.131155483000022 ], [ -122.85327210899996, 49.131078886000054 ], [ -122.852583994999975, 49.130921801000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271777500", "BldgCostT": "176940000", "sL_LossRatio": "0.745903295200742", "sL_AssetLoss": "1945405", "sL_BldgLoss": "1451084", "sL_StrLoss": "698977", "sL_NStrLoss": "752107", "sL_ContLoss": "494321", "geom_point": "0101000020E610000022F4A74BCEB55EC09F045F6692904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.838573034999968, 49.133266381000105 ], [ -122.838509712999979, 49.129963895000081 ], [ -122.836862581999952, 49.129958353000106 ], [ -122.836509059999969, 49.129957161000085 ], [ -122.83628695099999, 49.12995641100008 ], [ -122.836016735999934, 49.129955475000067 ], [ -122.835960098999948, 49.129943944000075 ], [ -122.835462691999965, 49.129842781000036 ], [ -122.834895526999986, 49.129560260000041 ], [ -122.834476369999933, 49.129136136000085 ], [ -122.83437086399999, 49.128814049000056 ], [ -122.834382601999963, 49.127934137000082 ], [ -122.834389384999923, 49.127428210000083 ], [ -122.83438994199993, 49.127385555000103 ], [ -122.834390587999906, 49.127335978000069 ], [ -122.834282462999937, 49.127052553000034 ], [ -122.83411935599996, 49.126832379000064 ], [ -122.833706793999966, 49.126493137000111 ], [ -122.833927163999988, 49.126334740000161 ], [ -122.83405010599995, 49.126284874000142 ], [ -122.834103268999925, 49.126263322000113 ], [ -122.834318382, 49.126222790000014 ], [ -122.83637989499999, 49.126226684000059 ], [ -122.837708316999965, 49.126229350000109 ], [ -122.839560486999929, 49.126208571000092 ], [ -122.839956505999908, 49.126211987000055 ], [ -122.840990820999977, 49.126211726000079 ], [ -122.841263657999974, 49.126269317000094 ], [ -122.841295974999952, 49.126286852000064 ], [ -122.841525266999923, 49.126411255000122 ], [ -122.841897699999947, 49.126272611000047 ], [ -122.842299459999964, 49.126206896000092 ], [ -122.842726054999972, 49.12617888000004 ], [ -122.845077736999926, 49.126186625000066 ], [ -122.845413235999985, 49.126188339000073 ], [ -122.845411869999964, 49.126269410000148 ], [ -122.845414695999921, 49.126571352000042 ], [ -122.845434009999977, 49.128885205000159 ], [ -122.845445628, 49.130277460000059 ], [ -122.845452998999988, 49.131061149000132 ], [ -122.845456064999922, 49.131385963000099 ], [ -122.84547601899996, 49.133506881000088 ], [ -122.845477258999921, 49.133589812000068 ], [ -122.843538503, 49.133589719000035 ], [ -122.842799014999969, 49.133583337000076 ], [ -122.841408650999966, 49.133596276000027 ], [ -122.838651626999976, 49.13362191500007 ], [ -122.838650900999951, 49.133531803000061 ], [ -122.83865112899997, 49.133366902000063 ], [ -122.838573034999968, 49.133266381000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53415834", "BldgCostT": "34793334", "sL_LossRatio": "0.681289919633174", "sL_AssetLoss": "1293693", "sL_BldgLoss": "881380", "sL_StrLoss": "343610", "sL_NStrLoss": "537770", "sL_ContLoss": "412313", "geom_point": "0101000020E6100000E9A8B5598AB55EC08B985D2056914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834461007999963, 49.133650960000054 ], [ -122.83498993299996, 49.133647314 ], [ -122.836524941999954, 49.133636687000063 ], [ -122.838651626999976, 49.13362191500007 ], [ -122.838656145999948, 49.134381142000052 ], [ -122.838657493999932, 49.13460424700002 ], [ -122.838657588999951, 49.134613319000032 ], [ -122.838664547999926, 49.135379581000109 ], [ -122.838681316999924, 49.137218056000037 ], [ -122.837923297999936, 49.137228086000093 ], [ -122.834495434999909, 49.137273369000127 ], [ -122.834461007999963, 49.133650960000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243685481", "BldgCostT": "142335773", "sL_LossRatio": "0.632862972931343", "sL_AssetLoss": "3317527", "sL_BldgLoss": "2099540", "sL_StrLoss": "825390", "sL_NStrLoss": "1274150", "sL_ContLoss": "1217987", "geom_point": "0101000020E610000011C799AAE4B55EC01A1CF4BE54914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843538503, 49.133589719000035 ], [ -122.845477258999921, 49.133589812000068 ], [ -122.845491494999948, 49.135097702000081 ], [ -122.845500322999911, 49.136482904000097 ], [ -122.845503141999956, 49.137209233000064 ], [ -122.845286737, 49.137207381000032 ], [ -122.844752127999982, 49.137202891000129 ], [ -122.843559397999982, 49.137192842000019 ], [ -122.842828511, 49.137186706000122 ], [ -122.841447806999938, 49.137197150000105 ], [ -122.840833262, 49.137201797000067 ], [ -122.840131540999934, 49.137207118000092 ], [ -122.840046235999978, 49.137207756000038 ], [ -122.838681316999924, 49.137218056000037 ], [ -122.838664547999926, 49.135379581000109 ], [ -122.838657588999951, 49.134613319000032 ], [ -122.838657493999932, 49.13460424700002 ], [ -122.838656145999948, 49.134381142000052 ], [ -122.838651626999976, 49.13362191500007 ], [ -122.841408650999966, 49.133596276000027 ], [ -122.842799014999969, 49.133583337000076 ], [ -122.843538503, 49.133589719000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215158500", "BldgCostT": "143775000", "sL_LossRatio": "0.738623731060138", "sL_AssetLoss": "2347826", "sL_BldgLoss": "1734160", "sL_StrLoss": "798620", "sL_NStrLoss": "935540", "sL_ContLoss": "613666", "geom_point": "0101000020E61000007E9B71F993B55EC01D29AD22D0914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834495599, 49.139063814000025 ], [ -122.834495434999909, 49.137273369000127 ], [ -122.837923297999936, 49.137228086000093 ], [ -122.838681316999924, 49.137218056000037 ], [ -122.838681951999931, 49.137510926000076 ], [ -122.83880753199999, 49.137780430000063 ], [ -122.839003433999963, 49.137982604000122 ], [ -122.839753262999977, 49.138483102000123 ], [ -122.839979838999923, 49.138738434000068 ], [ -122.840053203999915, 49.138949646000043 ], [ -122.840054412999962, 49.139335336000059 ], [ -122.840057802999979, 49.1395471800001 ], [ -122.840049747999913, 49.13987975100013 ], [ -122.840047708999933, 49.139938805000064 ], [ -122.840133882999979, 49.140202690000102 ], [ -122.840327778999963, 49.140438173000099 ], [ -122.840360493999952, 49.140477884000099 ], [ -122.840729309, 49.140696809000112 ], [ -122.841045392999945, 49.140804303000074 ], [ -122.834522195999966, 49.140907303000105 ], [ -122.834514139999925, 49.140348017000115 ], [ -122.834495599, 49.139063814000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120799941", "BldgCostT": "75014345", "sL_LossRatio": "0.676955039479282", "sL_AssetLoss": "1809810", "sL_BldgLoss": "1225160", "sL_StrLoss": "501750", "sL_NStrLoss": "723410", "sL_ContLoss": "584650", "geom_point": "0101000020E6100000638A108908BB5EC05E519D5080954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.913552591000027, 49.177180737000107 ], [ -122.913503393, 49.177124104000036 ], [ -122.913296259999981, 49.177123643000051 ], [ -122.912985023999937, 49.177122918000094 ], [ -122.913747111999925, 49.176380885000036 ], [ -122.91447122299999, 49.175545670000112 ], [ -122.915493630999947, 49.174491936000095 ], [ -122.915739168999949, 49.1741216940001 ], [ -122.915986713999985, 49.173594092 ], [ -122.916043308999988, 49.173381287000069 ], [ -122.91604053899998, 49.173268733000043 ], [ -122.9160384899999, 49.173184801000083 ], [ -122.915855186999963, 49.172371291000061 ], [ -122.915456905, 49.170664354000039 ], [ -122.915455631999961, 49.170658889000094 ], [ -122.915416246999925, 49.170490101000048 ], [ -122.915415391999957, 49.170486468000078 ], [ -122.915133914999942, 49.16927998200002 ], [ -122.915059906999915, 49.168962696000108 ], [ -122.915134789999968, 49.168763 ], [ -122.915294385, 49.168589200000071 ], [ -122.915564909999986, 49.168335702000036 ], [ -122.916407393999989, 49.167582314000072 ], [ -122.917316894, 49.166768605000101 ], [ -122.917707404999987, 49.166463505000117 ], [ -122.918082405999925, 49.16628780000007 ], [ -122.918669893999947, 49.16611089000007 ], [ -122.919163318999921, 49.16601060000005 ], [ -122.919655962, 49.165957850000083 ], [ -122.920399220999968, 49.165878300000024 ], [ -122.920886687999939, 49.165855930000049 ], [ -122.921219933999936, 49.16584066700004 ], [ -122.922607273999972, 49.165777001000066 ], [ -122.92338749000001, 49.165741199000074 ], [ -122.923539338999916, 49.165734066000098 ], [ -122.924077878999981, 49.165708705000121 ], [ -122.924431136999956, 49.165658515000089 ], [ -122.924790708000018, 49.165607406000063 ], [ -122.925105324999919, 49.165549627000097 ], [ -122.925142231999928, 49.165542855000105 ], [ -122.925284926999936, 49.165516640000092 ], [ -122.925823555999926, 49.165417735000098 ], [ -122.926442316999939, 49.165304100000085 ], [ -122.927230482999946, 49.165160232000034 ], [ -122.927855096000016, 49.165046204000035 ], [ -122.927948160999946, 49.16501954800006 ], [ -122.928163349999949, 49.164957942000122 ], [ -122.928215607999931, 49.164942995000082 ], [ -122.928534306999921, 49.164788999000109 ], [ -122.9292574, 49.164260884000051 ], [ -122.931308792, 49.163030104000029 ], [ -122.932212727999968, 49.162449297000094 ], [ -122.932368523999983, 49.162349188000107 ], [ -122.932711799999979, 49.162128586000073 ], [ -122.934103798999942, 49.161243122000073 ], [ -122.934556128999972, 49.160955364000067 ], [ -122.934745204999956, 49.160835094000085 ], [ -122.935171010999966, 49.160655288000108 ], [ -122.935528853999983, 49.160567838000077 ], [ -122.935877519999977, 49.160482596000051 ], [ -122.936255105999962, 49.160326606000055 ], [ -122.936390256999942, 49.160233798000043 ], [ -122.936603990999942, 49.160086993000057 ], [ -122.939010941999982, 49.158083358000113 ], [ -122.939558423999969, 49.157627602000026 ], [ -122.939706329999922, 49.15776323300004 ], [ -122.939787511999896, 49.157837667000102 ], [ -122.939884245999906, 49.157926363000065 ], [ -122.940006134999919, 49.158058807000046 ], [ -122.940064254999967, 49.158121982000047 ], [ -122.940410816999943, 49.158498587000068 ], [ -122.939732815999918, 49.15864030600008 ], [ -122.939385398999946, 49.158937596000023 ], [ -122.939314648999968, 49.158937559000087 ], [ -122.93931457399999, 49.158998201000067 ], [ -122.938526098999915, 49.159672887000077 ], [ -122.937925492999966, 49.160016264000035 ], [ -122.937798201999968, 49.160016197000026 ], [ -122.937667311999945, 49.160101778000104 ], [ -122.937667233999917, 49.160163914000115 ], [ -122.937453908999956, 49.160285871000056 ], [ -122.937385810999942, 49.160285835000053 ], [ -122.937255492999938, 49.160371041000083 ], [ -122.937255457999967, 49.160399327000043 ], [ -122.937220699999941, 49.160419196000092 ], [ -122.937016878999941, 49.160555494000079 ], [ -122.936843777999982, 49.160555400000085 ], [ -122.936843629999942, 49.160671349000026 ], [ -122.935821402, 49.161354906000078 ], [ -122.935848390999965, 49.161723798000054 ], [ -122.935546475999942, 49.161930295000055 ], [ -122.935121119999963, 49.161776504000102 ], [ -122.935038300999963, 49.16182198900006 ], [ -122.933548828999946, 49.162982299000063 ], [ -122.933548670999983, 49.162982299000063 ], [ -122.933548671999986, 49.162982422000091 ], [ -122.933202654999917, 49.163251960000125 ], [ -122.933136805999979, 49.163251922000086 ], [ -122.933136735999938, 49.163303308000089 ], [ -122.932856476999959, 49.163521621000072 ], [ -122.932724935999886, 49.163521544000098 ], [ -122.932724798, 49.163624192000029 ], [ -122.932510292999936, 49.163791279000051 ], [ -122.932313060999931, 49.163791164000017 ], [ -122.932312850999935, 49.163945074000026 ], [ -122.932164105999973, 49.164060937000038 ], [ -122.93190118199999, 49.164060783000124 ], [ -122.93190098099997, 49.16420856400002 ], [ -122.931675675999927, 49.164330510000077 ], [ -122.931077785999918, 49.164330154000012 ], [ -122.93107741199999, 49.164600016000058 ], [ -122.930665896, 49.164599770000052 ], [ -122.93066551899993, 49.164869629000108 ], [ -122.930254002999902, 49.164869382000063 ], [ -122.930253687999979, 49.165093379000055 ], [ -122.930147954999953, 49.165139178000103 ], [ -122.929842102999942, 49.165138994000088 ], [ -122.929841914999983, 49.165271743000098 ], [ -122.92952581900002, 49.165408661000072 ], [ -122.929018676999988, 49.165408351000089 ], [ -122.929018360999919, 49.165628465000076 ], [ -122.928903672999979, 49.165678141000022 ], [ -122.928606766999948, 49.165677958000117 ], [ -122.92860658099994, 49.165806823000032 ], [ -122.928545086, 49.165833458000037 ], [ -122.928281513999963, 49.165947617000079 ], [ -122.928194850999915, 49.165947563000074 ], [ -122.928194796999975, 49.165985175000088 ], [ -122.927659334999987, 49.166217090000039 ], [ -122.927371402999967, 49.166216909000084 ], [ -122.927371221, 49.166341873000114 ], [ -122.927037148999901, 49.166486559000091 ], [ -122.926959476999969, 49.16648651000002 ], [ -122.926959427999961, 49.166520220000059 ], [ -122.92645889, 49.166736997000037 ], [ -122.925840588999918, 49.166952 ], [ -122.925017972999953, 49.167378833000022 ], [ -122.924852480999931, 49.167464700000089 ], [ -122.924709239999956, 49.167564507000044 ], [ -122.924077108999981, 49.167564093000045 ], [ -122.92407821099999, 49.166843726000067 ], [ -122.923855334999971, 49.16678626200008 ], [ -122.923786590999924, 49.16675432100002 ], [ -122.921609146999984, 49.16675286300007 ], [ -122.921608018999962, 49.167467810000069 ], [ -122.921713035999929, 49.167604862000097 ], [ -122.92194423699999, 49.167821962000062 ], [ -122.92196261, 49.167832544000113 ], [ -122.922430527999936, 49.167832860000047 ], [ -122.92243010599995, 49.168102720000086 ], [ -122.9228416499999, 49.168102997000069 ], [ -122.922840495999964, 49.168845831000027 ], [ -122.92272169200001, 49.168912497000086 ], [ -122.92242884199996, 49.168912301000063 ], [ -122.922428582999942, 49.169078200000094 ], [ -122.922284944999987, 49.169182065000037 ], [ -122.92201686699994, 49.169181884000125 ], [ -122.922016561999911, 49.169376128000117 ], [ -122.921790193999954, 49.169539809000092 ], [ -122.920666199999943, 49.170530267000103 ], [ -122.9203161699999, 49.170530026000122 ], [ -122.92030641499997, 49.170677262 ], [ -122.920493315999963, 49.170682608000028 ], [ -122.918892189999951, 49.172093406000059 ], [ -122.918217511999984, 49.172685896000068 ], [ -122.916898090999936, 49.174132900000139 ], [ -122.916389110999944, 49.174997402000081 ], [ -122.916155609999976, 49.175814893000023 ], [ -122.915632591999923, 49.176552588000042 ], [ -122.91556268799998, 49.176840291000133 ], [ -122.915838406999953, 49.176921484000054 ], [ -122.915718829999946, 49.177275594000086 ], [ -122.915408809999946, 49.177332720000031 ], [ -122.915329335999914, 49.17733710200006 ], [ -122.9140125979999, 49.17730358900004 ], [ -122.913681013000016, 49.177215031000074 ], [ -122.913552591000027, 49.177180737000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30379500", "BldgCostT": "18855000", "sL_LossRatio": "0.663755042328156", "sL_AssetLoss": "419697", "sL_BldgLoss": "278576", "sL_StrLoss": "111160", "sL_NStrLoss": "167416", "sL_ContLoss": "141121", "geom_point": "0101000020E6100000C51B150FDABA5EC087ACD11F58964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.920084220999968, 49.172678805000103 ], [ -122.921346993, 49.171340314000112 ], [ -122.9213565579999, 49.171340321000031 ], [ -122.921813991999954, 49.171438316000042 ], [ -122.922200707999949, 49.170664904000063 ], [ -122.922708182999941, 49.170566703000055 ], [ -122.922728983999917, 49.170531666000045 ], [ -122.92283787599996, 49.170531738000108 ], [ -122.922837734, 49.170623982000066 ], [ -122.922749296999939, 49.170691991000069 ], [ -122.922309579999933, 49.171213298000026 ], [ -122.922239600999916, 49.171402688000072 ], [ -122.922473197999935, 49.171231797000083 ], [ -122.922747210999916, 49.171402686000128 ], [ -122.922460146999967, 49.171610928000099 ], [ -122.92201305299993, 49.171610626000167 ], [ -122.92201262899998, 49.171880486000127 ], [ -122.922287683999954, 49.171880673000054 ], [ -122.921907512999908, 49.173030606000047 ], [ -122.921662532, 49.173499412000041 ], [ -122.921598494999969, 49.173499368000122 ], [ -122.921598300999932, 49.17362232600005 ], [ -122.921239612999926, 49.174308705000101 ], [ -122.921185619999974, 49.174308668000023 ], [ -122.92118545799994, 49.174412337000057 ], [ -122.920675697999954, 49.175387761000067 ], [ -122.920661965999926, 49.175387751000123 ], [ -122.920659972999943, 49.175417849000027 ], [ -122.920587191999971, 49.175557111000039 ], [ -122.920174210999974, 49.176069809000111 ], [ -122.920095202999931, 49.176239691000035 ], [ -122.919710001999945, 49.177068327000015 ], [ -122.919694657999926, 49.177068280000107 ], [ -122.917450188, 49.177092362000089 ], [ -122.917368801999928, 49.177099156000033 ], [ -122.917345387999916, 49.177101109000034 ], [ -122.917131640999955, 49.177118967000112 ], [ -122.916962785999957, 49.177133103000067 ], [ -122.916487353999969, 49.177160324000084 ], [ -122.916619482999948, 49.176904401000058 ], [ -122.916690192999951, 49.176274888000059 ], [ -122.917075096999923, 49.175330687000098 ], [ -122.917901107999967, 49.174305203000117 ], [ -122.918312409999913, 49.173927788000029 ], [ -122.919011906999941, 49.173541802000095 ], [ -122.919247207999916, 49.173190091000045 ], [ -122.91961618500001, 49.173056196000132 ], [ -122.920084220999968, 49.172678805000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140422000", "BldgCostT": "89185000", "sL_LossRatio": "0.713700235373914", "sL_AssetLoss": "1981528", "sL_BldgLoss": "1414217", "sL_StrLoss": "654977", "sL_NStrLoss": "759240", "sL_ContLoss": "567311", "geom_point": "0101000020E610000082EAD5B6D7BB5EC07B5D1A1A2A944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.935879592, 49.159784404000092 ], [ -122.934886876999911, 49.159142593000105 ], [ -122.93431410699999, 49.159555094000012 ], [ -122.934090179999913, 49.1596244 ], [ -122.933846813999949, 49.159636406000054 ], [ -122.933564397999987, 49.159595009000085 ], [ -122.933033927999972, 49.159323103000084 ], [ -122.932726393999985, 49.15926839100004 ], [ -122.930985504999938, 49.15947378900006 ], [ -122.930591016999969, 49.159677010000095 ], [ -122.92988951299999, 49.15915246100014 ], [ -122.929878126999938, 49.159143940000057 ], [ -122.929856816999944, 49.159127991000105 ], [ -122.930136395999938, 49.158943186000059 ], [ -122.930677490999983, 49.158782 ], [ -122.931784891999911, 49.158536998000038 ], [ -122.931979093999942, 49.158398412000054 ], [ -122.932458213999951, 49.157826381000064 ], [ -122.932666225999981, 49.157686386000123 ], [ -122.931510853999924, 49.156914642000032 ], [ -122.931544155999987, 49.156866942000079 ], [ -122.931517253999971, 49.156817516000082 ], [ -122.932650431999917, 49.155951525000091 ], [ -122.934773114999956, 49.154359582000033 ], [ -122.936194384999936, 49.155319073000122 ], [ -122.93679639799997, 49.155711011000065 ], [ -122.937007431, 49.155850078000078 ], [ -122.937335816999948, 49.1560664900001 ], [ -122.937432199999961, 49.15613000700003 ], [ -122.938209187, 49.156674690000038 ], [ -122.93860407499993, 49.156953596000086 ], [ -122.939558423999969, 49.157627602000026 ], [ -122.939010941999982, 49.158083358000113 ], [ -122.936603990999942, 49.160086993000057 ], [ -122.936390256999942, 49.160233798000043 ], [ -122.935879592, 49.159784404000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144056895", "BldgCostT": "88621524", "sL_LossRatio": "0.684803963874322", "sL_AssetLoss": "1969790", "sL_BldgLoss": "1348920", "sL_StrLoss": "632990", "sL_NStrLoss": "715930", "sL_ContLoss": "620870", "geom_point": "0101000020E610000035F64E9A00BC5EC0D545862CBD934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.934902015, 49.150409672000059 ], [ -122.934901980999911, 49.150408809000091 ], [ -122.93490282399992, 49.150409302000092 ], [ -122.93681148499995, 49.151559539000047 ], [ -122.937996866999967, 49.152338014000058 ], [ -122.93860422099999, 49.152793362000118 ], [ -122.938756416000018, 49.152947837000042 ], [ -122.939720811999933, 49.154051272000082 ], [ -122.940224530999927, 49.154996604000054 ], [ -122.940357766, 49.1552466280001 ], [ -122.940459325999925, 49.155492179000099 ], [ -122.940457354000017, 49.1564081080001 ], [ -122.940247037999939, 49.157170850000043 ], [ -122.940237009999976, 49.157202787000131 ], [ -122.940083220999909, 49.157506350000098 ], [ -122.939983392999949, 49.15770342000009 ], [ -122.939912111999917, 49.157844190000091 ], [ -122.939894002999949, 49.157901651000032 ], [ -122.939884245999906, 49.157926363000065 ], [ -122.939787511999896, 49.157837667000102 ], [ -122.939706329999922, 49.15776323300004 ], [ -122.939558423999969, 49.157627602000026 ], [ -122.93860407499993, 49.156953596000086 ], [ -122.938209187, 49.156674690000038 ], [ -122.937432199999961, 49.15613000700003 ], [ -122.937335816999948, 49.1560664900001 ], [ -122.937007431, 49.155850078000078 ], [ -122.93679639799997, 49.155711011000065 ], [ -122.936194384999936, 49.155319073000122 ], [ -122.934773114999956, 49.154359582000033 ], [ -122.93487743299994, 49.152868155000128 ], [ -122.93494463599994, 49.151906283000109 ], [ -122.934944962999964, 49.151901484000128 ], [ -122.934945114999948, 49.151899481000086 ], [ -122.93499372299999, 49.151636005000093 ], [ -122.934983960999929, 49.151505356000065 ], [ -122.934925252999946, 49.15072014800004 ], [ -122.934902015, 49.150409672000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "388919137", "BldgCostT": "262977080", "sL_LossRatio": "0.782971332788061", "sL_AssetLoss": "3367122", "sL_BldgLoss": "2636360", "sL_StrLoss": "1453440", "sL_NStrLoss": "1182920", "sL_ContLoss": "730762", "geom_point": "0101000020E61000003ADE1D196BBB5EC0C8DF9C955D934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.923604657999931, 49.156063986000085 ], [ -122.923453838999976, 49.155601732000015 ], [ -122.923264675999974, 49.155021594000118 ], [ -122.923264635999971, 49.155021435000052 ], [ -122.923385192999945, 49.154898718000027 ], [ -122.923393721999929, 49.154411342000067 ], [ -122.923399980999974, 49.154054051000074 ], [ -122.923444707, 49.15223888500006 ], [ -122.923548119999964, 49.15181476900009 ], [ -122.923554179999982, 49.151557300000071 ], [ -122.923573418999979, 49.150914054000104 ], [ -122.923573421999905, 49.150913675000055 ], [ -122.924011391999926, 49.150924308000093 ], [ -122.92417095399999, 49.150877940000072 ], [ -122.92417135099997, 49.150877830000113 ], [ -122.924172028, 49.15087762300012 ], [ -122.926895624999929, 49.149635848000109 ], [ -122.926896626, 49.149635441000051 ], [ -122.926896803999952, 49.149635553000081 ], [ -122.92744629799995, 49.149976158000072 ], [ -122.927884170999945, 49.150247583000137 ], [ -122.927883362999921, 49.150247952000036 ], [ -122.925856943999946, 49.151202323000035 ], [ -122.925857172999955, 49.151202387000062 ], [ -122.926057063000016, 49.151327845000054 ], [ -122.926205155999938, 49.151367203000071 ], [ -122.926208310999982, 49.151367209000085 ], [ -122.929302225999933, 49.151375435000027 ], [ -122.929444789999962, 49.151341937 ], [ -122.929445414999947, 49.15134177700002 ], [ -122.929445639, 49.15134172700008 ], [ -122.929445758999947, 49.151341599 ], [ -122.929616633999984, 49.15117321200011 ], [ -122.929617040999943, 49.151172838000043 ], [ -122.929617193999974, 49.151172697000121 ], [ -122.929617600999933, 49.151172817000017 ], [ -122.930052270999965, 49.151288755000067 ], [ -122.93043267199999, 49.151339276000044 ], [ -122.930876814999976, 49.151346535000101 ], [ -122.930877673999987, 49.151346557000124 ], [ -122.932091993999961, 49.151351473000013 ], [ -122.932092222, 49.151351481000077 ], [ -122.932092888999989, 49.151351481000077 ], [ -122.932093153999958, 49.151351534000113 ], [ -122.933175302000024, 49.151360034000042 ], [ -122.93318789199999, 49.151360129000089 ], [ -122.933188120999958, 49.151360136000044 ], [ -122.933188786999978, 49.151360136000044 ], [ -122.933189011999929, 49.151360087000107 ], [ -122.93318895, 49.151359790000051 ], [ -122.933121916999951, 49.150921332000109 ], [ -122.932975237999983, 49.150547753000104 ], [ -122.932673319999978, 49.150140023000063 ], [ -122.932264912999983, 49.149806699000052 ], [ -122.930295965999903, 49.148551453000017 ], [ -122.930275021999975, 49.148538085000141 ], [ -122.929824404999948, 49.148408012000111 ], [ -122.929824178999965, 49.148408062000065 ], [ -122.928800887999927, 49.14838329 ], [ -122.928510503999959, 49.148339009000061 ], [ -122.92814088199998, 49.148228499000062 ], [ -122.927286703999968, 49.147777001000065 ], [ -122.926897994999976, 49.14762438500005 ], [ -122.926176516999959, 49.147613697000054 ], [ -122.924923918999966, 49.14759149100005 ], [ -122.924931514999969, 49.147933208000026 ], [ -122.9250348, 49.148360487000083 ], [ -122.924445996999935, 49.148455400000081 ], [ -122.923626207999959, 49.148459908000113 ], [ -122.923654137999947, 49.144928190000044 ], [ -122.923654148999958, 49.144928040000089 ], [ -122.923518859999959, 49.144425917000035 ], [ -122.923518816999902, 49.144425699000124 ], [ -122.923510742999909, 49.144374520000106 ], [ -122.923641923999952, 49.143314134000107 ], [ -122.9236419699999, 49.143313972000122 ], [ -122.923970929999953, 49.142842494000035 ], [ -122.923971279999975, 49.142841994000023 ], [ -122.92397137899998, 49.142841842000117 ], [ -122.923971557999934, 49.14284195400009 ], [ -122.923971793999925, 49.142842135000095 ], [ -122.924436342999968, 49.143222089000048 ], [ -122.925173519999987, 49.143759392000085 ], [ -122.925684245999975, 49.144136123000088 ], [ -122.931446833999985, 49.148038324000069 ], [ -122.933426507999968, 49.149378649000028 ], [ -122.934901115999978, 49.150408180000042 ], [ -122.934901980999911, 49.150408809000091 ], [ -122.934902015, 49.150409672000059 ], [ -122.934925252999946, 49.15072014800004 ], [ -122.934983960999929, 49.151505356000065 ], [ -122.93499372299999, 49.151636005000093 ], [ -122.934945114999948, 49.151899481000086 ], [ -122.934944962999964, 49.151901484000128 ], [ -122.93494463599994, 49.151906283000109 ], [ -122.93487743299994, 49.152868155000128 ], [ -122.934773114999956, 49.154359582000033 ], [ -122.932650431999917, 49.155951525000091 ], [ -122.932428122999937, 49.15585149 ], [ -122.931284913999917, 49.155873215000085 ], [ -122.931271142999975, 49.155873474000074 ], [ -122.931086443999973, 49.155826759000085 ], [ -122.929987421999954, 49.155849982000042 ], [ -122.929987177999962, 49.155850008000115 ], [ -122.92822575699995, 49.155953250000053 ], [ -122.92822551299993, 49.155953278000077 ], [ -122.926640230999979, 49.155988216000068 ], [ -122.92664, 49.155988207000128 ], [ -122.924398390999968, 49.156066687000077 ], [ -122.923605448, 49.156066388000106 ], [ -122.923605387999928, 49.156066206000077 ], [ -122.923604832999985, 49.15606447800009 ], [ -122.923604657999931, 49.156063986000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92445501", "BldgCostT": "63020001", "sL_LossRatio": "0.743147926341521", "sL_AssetLoss": "1427670", "sL_BldgLoss": "1060970", "sL_StrLoss": "478010", "sL_NStrLoss": "582960", "sL_ContLoss": "366700", "geom_point": "0101000020E6100000F9573DFD73BB5EC0A97EAD642A934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.925856943999946, 49.151202323000035 ], [ -122.927883362999921, 49.150247952000036 ], [ -122.927884170999945, 49.150247583000137 ], [ -122.92744629799995, 49.149976158000072 ], [ -122.926896803999952, 49.149635553000081 ], [ -122.926896626, 49.149635441000051 ], [ -122.926609791999965, 49.149455990000071 ], [ -122.925878793999985, 49.14915138900011 ], [ -122.92553951899994, 49.148956099 ], [ -122.9250348, 49.148360487000083 ], [ -122.924931514999969, 49.147933208000026 ], [ -122.924923918999966, 49.14759149100005 ], [ -122.926176516999959, 49.147613697000054 ], [ -122.926897994999976, 49.14762438500005 ], [ -122.927286703999968, 49.147777001000065 ], [ -122.92814088199998, 49.148228499000062 ], [ -122.928510503999959, 49.148339009000061 ], [ -122.928800887999927, 49.14838329 ], [ -122.929824178999965, 49.148408062000065 ], [ -122.929824404999948, 49.148408012000111 ], [ -122.930275021999975, 49.148538085000141 ], [ -122.930295965999903, 49.148551453000017 ], [ -122.932264912999983, 49.149806699000052 ], [ -122.932673319999978, 49.150140023000063 ], [ -122.932975237999983, 49.150547753000104 ], [ -122.933121916999951, 49.150921332000109 ], [ -122.93318895, 49.151359790000051 ], [ -122.933189011999929, 49.151360087000107 ], [ -122.933188786999978, 49.151360136000044 ], [ -122.933188120999958, 49.151360136000044 ], [ -122.93318789199999, 49.151360129000089 ], [ -122.933175302000024, 49.151360034000042 ], [ -122.932093153999958, 49.151351534000113 ], [ -122.932092888999989, 49.151351481000077 ], [ -122.932092222, 49.151351481000077 ], [ -122.932091993999961, 49.151351473000013 ], [ -122.930877673999987, 49.151346557000124 ], [ -122.930876814999976, 49.151346535000101 ], [ -122.93043267199999, 49.151339276000044 ], [ -122.930052270999965, 49.151288755000067 ], [ -122.929617600999933, 49.151172817000017 ], [ -122.929617193999974, 49.151172697000121 ], [ -122.929617040999943, 49.151172838000043 ], [ -122.929616633999984, 49.15117321200011 ], [ -122.929445758999947, 49.151341599 ], [ -122.929445639, 49.15134172700008 ], [ -122.929445414999947, 49.15134177700002 ], [ -122.929444789999962, 49.151341937 ], [ -122.929302225999933, 49.151375435000027 ], [ -122.926208310999982, 49.151367209000085 ], [ -122.926205155999938, 49.151367203000071 ], [ -122.926057063000016, 49.151327845000054 ], [ -122.925857172999955, 49.151202387000062 ], [ -122.925856943999946, 49.151202323000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114166416", "BldgCostT": "78471666", "sL_LossRatio": "0.755176067583015", "sL_AssetLoss": "1556249", "sL_BldgLoss": "1175242", "sL_StrLoss": "546462", "sL_NStrLoss": "628780", "sL_ContLoss": "381007", "geom_point": "0101000020E61000001E824F1839BA5EC0E960DC915A904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904900504999929, 49.12767688800006 ], [ -122.905402201999905, 49.127013710000114 ], [ -122.905601085999933, 49.126803205 ], [ -122.905897580999962, 49.126670296000015 ], [ -122.906252098999985, 49.126612911000123 ], [ -122.906941620999945, 49.126730899000059 ], [ -122.907490380999974, 49.126882790000096 ], [ -122.908059393999935, 49.127041505000122 ], [ -122.908689688999914, 49.127142492000097 ], [ -122.908851317999975, 49.126647106000043 ], [ -122.909156194999937, 49.125831408000074 ], [ -122.911348645, 49.126244653000064 ], [ -122.912060980999925, 49.126378900000063 ], [ -122.912931682, 49.126531793000083 ], [ -122.913777783999976, 49.126684900000022 ], [ -122.91420499, 49.126853101000073 ], [ -122.915006397999917, 49.127368908000058 ], [ -122.914145411000021, 49.127895698000117 ], [ -122.912960902999913, 49.128632085000092 ], [ -122.912048899999945, 49.12920330400005 ], [ -122.911741589999949, 49.129292712000051 ], [ -122.911175902999929, 49.129352999000027 ], [ -122.909975814999981, 49.129435714000074 ], [ -122.909184916999934, 49.129318300000108 ], [ -122.90796079099999, 49.129121907000069 ], [ -122.906997782999937, 49.128976986000083 ], [ -122.906188186999955, 49.128852913000046 ], [ -122.905538419999985, 49.128632303000046 ], [ -122.904438813999946, 49.12827540500011 ], [ -122.904900504999929, 49.12767688800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154773833", "BldgCostT": "104588333", "sL_LossRatio": "0.715334751964969", "sL_AssetLoss": "3251960", "sL_BldgLoss": "2326240", "sL_StrLoss": "997460", "sL_NStrLoss": "1328780", "sL_ContLoss": "925720", "geom_point": "0101000020E6100000E1730E3BDFB95EC061469989F98F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.899858144999953, 49.126505855000097 ], [ -122.899288621999958, 49.126205107000111 ], [ -122.898984823999982, 49.126087553000048 ], [ -122.898921386999987, 49.126063001000063 ], [ -122.898065257999974, 49.125910604000119 ], [ -122.897012496999949, 49.12572320700005 ], [ -122.89641557299997, 49.125676301000027 ], [ -122.895985787999976, 49.125671109000038 ], [ -122.894899390999939, 49.125673107000125 ], [ -122.894906216, 49.124851495000016 ], [ -122.894908083999937, 49.124145992000059 ], [ -122.895253699999927, 49.124099195000063 ], [ -122.895574285999956, 49.123975100000074 ], [ -122.89580461499996, 49.123808790000062 ], [ -122.895945791999907, 49.123581289000171 ], [ -122.895984512999945, 49.123411202000071 ], [ -122.895981493999969, 49.123098350000078 ], [ -122.895977794999951, 49.122710897000047 ], [ -122.895981200999969, 49.12238411400002 ], [ -122.895988812999974, 49.121662382000046 ], [ -122.897179617999925, 49.12167690400004 ], [ -122.897186305999981, 49.122849387000073 ], [ -122.897184699999954, 49.123654905000137 ], [ -122.897150706, 49.124472082000047 ], [ -122.898088993999963, 49.124431516000101 ], [ -122.899960888999928, 49.124277406000033 ], [ -122.901827216999948, 49.124228408000086 ], [ -122.902123912999983, 49.124154102000084 ], [ -122.90237538400001, 49.12397749400008 ], [ -122.902485182999925, 49.123768901000041 ], [ -122.902470205999975, 49.12358200700006 ], [ -122.901921715999961, 49.122397505000031 ], [ -122.901513098999899, 49.121560409000082 ], [ -122.901477301999961, 49.120246484000063 ], [ -122.901470385999971, 49.119464199000042 ], [ -122.903147411999953, 49.11941609600008 ], [ -122.903161389, 49.120399508000062 ], [ -122.903156913999936, 49.121290589000083 ], [ -122.903151481999913, 49.122196005000056 ], [ -122.903895698, 49.123732902000036 ], [ -122.903953224999938, 49.124001296000046 ], [ -122.903936782999921, 49.124329705000058 ], [ -122.905379594999943, 49.124366711000093 ], [ -122.906802289999959, 49.124416701000015 ], [ -122.90757341699999, 49.124437886000074 ], [ -122.90784901799999, 49.12441429700003 ], [ -122.908069595999933, 49.124351298000072 ], [ -122.90821529499999, 49.124260901000099 ], [ -122.908341114999942, 49.124140996000087 ], [ -122.908480604999951, 49.12387650100009 ], [ -122.908592803999937, 49.123733782000116 ], [ -122.908793488999976, 49.123598994000119 ], [ -122.909057312999934, 49.123505704000088 ], [ -122.909461391, 49.123464118000044 ], [ -122.910913785999981, 49.123334611000047 ], [ -122.911733796999926, 49.123265212000071 ], [ -122.912185209999961, 49.123226995000032 ], [ -122.913345007999936, 49.123131397000066 ], [ -122.913444939999977, 49.124017814000062 ], [ -122.913455416999966, 49.124110402000056 ], [ -122.913370993999962, 49.125072096000082 ], [ -122.913337285999958, 49.125266165000021 ], [ -122.91327569399999, 49.125620785000073 ], [ -122.912931682, 49.126531793000083 ], [ -122.912060980999925, 49.126378900000063 ], [ -122.911348645, 49.126244653000064 ], [ -122.909156194999937, 49.125831408000074 ], [ -122.908851317999975, 49.126647106000043 ], [ -122.908689688999914, 49.127142492000097 ], [ -122.908059393999935, 49.127041505000122 ], [ -122.907490380999974, 49.126882790000096 ], [ -122.906941620999945, 49.126730899000059 ], [ -122.906252098999985, 49.126612911000123 ], [ -122.905897580999962, 49.126670296000015 ], [ -122.905601085999933, 49.126803205 ], [ -122.905402201999905, 49.127013710000114 ], [ -122.904900504999929, 49.12767688800006 ], [ -122.904438813999946, 49.12827540500011 ], [ -122.903386281999957, 49.127916043000042 ], [ -122.901317687999935, 49.127209686000107 ], [ -122.900846179999988, 49.127027601000144 ], [ -122.900230058999909, 49.126702259000133 ], [ -122.899858144999953, 49.126505855000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94129834", "BldgCostT": "63708334", "sL_LossRatio": "0.73046374095714", "sL_AssetLoss": "1575276", "sL_BldgLoss": "1150682", "sL_StrLoss": "510602", "sL_NStrLoss": "640080", "sL_ContLoss": "424594", "geom_point": "0101000020E6100000817A336AFEB95EC0A170457B9F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906802289999959, 49.124416701000015 ], [ -122.905379594999943, 49.124366711000093 ], [ -122.903936782999921, 49.124329705000058 ], [ -122.903953224999938, 49.124001296000046 ], [ -122.903895698, 49.123732902000036 ], [ -122.903151481999913, 49.122196005000056 ], [ -122.903156913999936, 49.121290589000083 ], [ -122.903161389, 49.120399508000062 ], [ -122.903147411999953, 49.11941609600008 ], [ -122.906598716999923, 49.119380314000118 ], [ -122.906615601999988, 49.119786191000046 ], [ -122.906716116999959, 49.119921605000066 ], [ -122.907636909999951, 49.120514804000045 ], [ -122.908034494999953, 49.120653307000076 ], [ -122.908362281999942, 49.120708691000104 ], [ -122.908311408999921, 49.120959508000091 ], [ -122.908341610999969, 49.121122598000078 ], [ -122.909267000999932, 49.122471889000096 ], [ -122.909382395999955, 49.122529313000037 ], [ -122.909528008999985, 49.12254428600005 ], [ -122.91065439099999, 49.122455006000109 ], [ -122.910811588999934, 49.122809999000054 ], [ -122.910913785999981, 49.123334611000047 ], [ -122.909461391, 49.123464118000044 ], [ -122.909057312999934, 49.123505704000088 ], [ -122.908793488999976, 49.123598994000119 ], [ -122.908592803999937, 49.123733782000116 ], [ -122.908480604999951, 49.12387650100009 ], [ -122.908341114999942, 49.124140996000087 ], [ -122.90821529499999, 49.124260901000099 ], [ -122.908069595999933, 49.124351298000072 ], [ -122.90784901799999, 49.12441429700003 ], [ -122.90757341699999, 49.124437886000074 ], [ -122.906802289999959, 49.124416701000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95781583", "BldgCostT": "64318333", "sL_LossRatio": "0.747319703297388", "sL_AssetLoss": "1283440", "sL_BldgLoss": "959140", "sL_StrLoss": "448750", "sL_NStrLoss": "510390", "sL_ContLoss": "324300", "geom_point": "0101000020E61000002AB2943458BA5EC0D85DA815898F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.910811588999934, 49.122809999000054 ], [ -122.91065439099999, 49.122455006000109 ], [ -122.909528008999985, 49.12254428600005 ], [ -122.909382395999955, 49.122529313000037 ], [ -122.909267000999932, 49.122471889000096 ], [ -122.908341610999969, 49.121122598000078 ], [ -122.908311408999921, 49.120959508000091 ], [ -122.908362281999942, 49.120708691000104 ], [ -122.908034494999953, 49.120653307000076 ], [ -122.907636909999951, 49.120514804000045 ], [ -122.906716116999959, 49.119921605000066 ], [ -122.906615601999988, 49.119786191000046 ], [ -122.906598716999923, 49.119380314000118 ], [ -122.91035448699995, 49.119337806000047 ], [ -122.910387381999925, 49.120080307000109 ], [ -122.911463196999989, 49.12135101000009 ], [ -122.912176297999949, 49.121090406000079 ], [ -122.912625492999936, 49.120885209000122 ], [ -122.913340295999944, 49.120516499000082 ], [ -122.913995083999936, 49.120206410000044 ], [ -122.914282878, 49.120202901 ], [ -122.915598483999972, 49.12019289400007 ], [ -122.915630982999971, 49.122638413000082 ], [ -122.91552158599994, 49.122801009000071 ], [ -122.915359084999949, 49.12291709800013 ], [ -122.915160397999969, 49.122979911000101 ], [ -122.9146121, 49.123026300000014 ], [ -122.913345007999936, 49.123131397000066 ], [ -122.912185209999961, 49.123226995000032 ], [ -122.911733796999926, 49.123265212000071 ], [ -122.910913785999981, 49.123334611000047 ], [ -122.910811588999934, 49.122809999000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130442166", "BldgCostT": "89016666", "sL_LossRatio": "0.752531098081706", "sL_AssetLoss": "1812652", "sL_BldgLoss": "1364077", "sL_StrLoss": "618652", "sL_NStrLoss": "745425", "sL_ContLoss": "448575", "geom_point": "0101000020E6100000742FA481A7BA5EC05F04D726DF8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.915630982999971, 49.122638413000082 ], [ -122.915598483999972, 49.12019289400007 ], [ -122.916301313999952, 49.120274311000038 ], [ -122.916951920999935, 49.120275006000085 ], [ -122.916957398999983, 49.121142787000046 ], [ -122.916940301999958, 49.121751396000064 ], [ -122.917000795999968, 49.121830714000119 ], [ -122.91713830899999, 49.12186520300007 ], [ -122.919992490999988, 49.121828990000068 ], [ -122.9199921969999, 49.12232515500007 ], [ -122.919991978999946, 49.122664197000098 ], [ -122.919990802999934, 49.124234697000141 ], [ -122.91991971099999, 49.124481389000067 ], [ -122.91971098, 49.124634003000075 ], [ -122.91841218799999, 49.125319399000048 ], [ -122.917345699999913, 49.125868189000087 ], [ -122.916383887999984, 49.126365898000074 ], [ -122.915963998, 49.126603493000047 ], [ -122.915772705, 49.126762005000089 ], [ -122.91552738899999, 49.127053191000037 ], [ -122.915006397999917, 49.127368908000058 ], [ -122.91420499, 49.126853101000073 ], [ -122.913777783999976, 49.126684900000022 ], [ -122.912931682, 49.126531793000083 ], [ -122.91327569399999, 49.125620785000073 ], [ -122.913337285999958, 49.125266165000021 ], [ -122.913370993999962, 49.125072096000082 ], [ -122.913455416999966, 49.124110402000056 ], [ -122.913444939999977, 49.124017814000062 ], [ -122.913345007999936, 49.123131397000066 ], [ -122.9146121, 49.123026300000014 ], [ -122.915160397999969, 49.122979911000101 ], [ -122.915359084999949, 49.12291709800013 ], [ -122.91552158599994, 49.122801009000071 ], [ -122.915630982999971, 49.122638413000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105957167", "BldgCostT": "71866667", "sL_LossRatio": "0.716128943898135", "sL_AssetLoss": "2555530", "sL_BldgLoss": "1830089", "sL_StrLoss": "783849", "sL_NStrLoss": "1046240", "sL_ContLoss": "725441", "geom_point": "0101000020E6100000EF324FF0C5BA5EC096CB04CB2A8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.916957398999983, 49.121142787000046 ], [ -122.916951920999935, 49.120275006000085 ], [ -122.916301313999952, 49.120274311000038 ], [ -122.915598483999972, 49.12019289400007 ], [ -122.914282878, 49.120202901 ], [ -122.913995083999936, 49.120206410000044 ], [ -122.913340295999944, 49.120516499000082 ], [ -122.912625492999936, 49.120885209000122 ], [ -122.912176297999949, 49.121090406000079 ], [ -122.911463196999989, 49.12135101000009 ], [ -122.910387381999925, 49.120080307000109 ], [ -122.91035448699995, 49.119337806000047 ], [ -122.910334803999916, 49.118849696000019 ], [ -122.912577021999979, 49.11882056200006 ], [ -122.912577374999941, 49.118710977000063 ], [ -122.917573517999983, 49.118714650000143 ], [ -122.917575307000035, 49.117635199000077 ], [ -122.919630940999923, 49.117636648000044 ], [ -122.91963181199999, 49.117096923000105 ], [ -122.920454057999962, 49.11709749200007 ], [ -122.920454919999926, 49.116557767000074 ], [ -122.920043802999942, 49.116557483000122 ], [ -122.920044236999928, 49.116287620000058 ], [ -122.919633119999929, 49.116287334000063 ], [ -122.919633555999923, 49.116017472000117 ], [ -122.918811329000036, 49.116016897000101 ], [ -122.918812209999942, 49.115477171000094 ], [ -122.916345556999971, 49.115475410000045 ], [ -122.916346009999955, 49.11520554700013 ], [ -122.914701585, 49.115204344000063 ], [ -122.914702048, 49.114934481000098 ], [ -122.913468734, 49.114933563000058 ], [ -122.913469203999952, 49.114663701000019 ], [ -122.912590433, 49.114663039000071 ], [ -122.912592962999938, 49.113878834000054 ], [ -122.913562762999931, 49.114167759000068 ], [ -122.920311070999929, 49.115379412000017 ], [ -122.921493524999946, 49.115724124000081 ], [ -122.922740728999955, 49.116228381000077 ], [ -122.923974963999967, 49.11686739500005 ], [ -122.924703937999965, 49.117338775000114 ], [ -122.925328215, 49.117840465 ], [ -122.925805068999935, 49.118293820000055 ], [ -122.926104325000026, 49.118635758000082 ], [ -122.926343515999918, 49.11891289800004 ], [ -122.92671177599999, 49.1194550270001 ], [ -122.926635233999932, 49.119445540000143 ], [ -122.926547319999898, 49.119435914000078 ], [ -122.926475145999973, 49.119426561000076 ], [ -122.926092394999941, 49.119376981000059 ], [ -122.925490613999912, 49.119232464000056 ], [ -122.925449213999968, 49.119222510000085 ], [ -122.924648192999939, 49.119012211000083 ], [ -122.924172093999971, 49.119003088000042 ], [ -122.924103851999988, 49.119002755000025 ], [ -122.923912663999928, 49.119001775000072 ], [ -122.923814319999906, 49.119001285000124 ], [ -122.923706355999954, 49.119000742000011 ], [ -122.923377472999931, 49.118999078000051 ], [ -122.922793293999973, 49.118996112000104 ], [ -122.922071903999964, 49.118990805000053 ], [ -122.921826568999961, 49.119009483000049 ], [ -122.921702898999939, 49.119018896000057 ], [ -122.920742005999941, 49.119196896000112 ], [ -122.919974221999951, 49.119228990000089 ], [ -122.919969898999952, 49.120225406000053 ], [ -122.919992490999988, 49.121828990000068 ], [ -122.91713830899999, 49.12186520300007 ], [ -122.917000795999968, 49.121830714000119 ], [ -122.916940301999958, 49.121751396000064 ], [ -122.916957398999983, 49.121142787000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73563416", "BldgCostT": "50261666", "sL_LossRatio": "0.700311490382649", "sL_AssetLoss": "2934280", "sL_BldgLoss": "2054910", "sL_StrLoss": "829860", "sL_NStrLoss": "1225050", "sL_ContLoss": "879370", "geom_point": "0101000020E6100000AF953388CDB95EC0286CD47DDF8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905201196999911, 49.115659191000105 ], [ -122.905440369999923, 49.112061838000095 ], [ -122.90607423299997, 49.112080079000123 ], [ -122.906074460999889, 49.111959289000019 ], [ -122.905663380999911, 49.111958954000102 ], [ -122.905663891999936, 49.111689092000084 ], [ -122.904841737999931, 49.11168841700006 ], [ -122.904842768999956, 49.111148690000014 ], [ -122.904431697999925, 49.111148352000058 ], [ -122.904432216, 49.110878489000051 ], [ -122.904021142999966, 49.110878147000051 ], [ -122.90402218499996, 49.110338421000058 ], [ -122.903611118999933, 49.110338079000059 ], [ -122.903611641999973, 49.110068217000098 ], [ -122.903200577999954, 49.110067873000062 ], [ -122.903201627999934, 49.109528146000095 ], [ -122.902790567999972, 49.109527801000056 ], [ -122.902791094999941, 49.109257938000127 ], [ -122.902380037999933, 49.109257592000098 ], [ -122.902381097000017, 49.108717866000092 ], [ -122.90197004299992, 49.10871751700008 ], [ -122.901971106999966, 49.108177791000067 ], [ -122.901560058999948, 49.108177441000088 ], [ -122.901560592999942, 49.107907579 ], [ -122.900738500999964, 49.107906875000069 ], [ -122.900742268000016, 49.10601783300006 ], [ -122.900331237, 49.106017479000094 ], [ -122.900332858999917, 49.105207889000077 ], [ -122.899921834999958, 49.105207534000044 ], [ -122.89992292099997, 49.104667808000023 ], [ -122.899100881999942, 49.104667092000142 ], [ -122.899100334999929, 49.104936956000095 ], [ -122.898689313, 49.104936595000119 ], [ -122.898687665999915, 49.105746184000019 ], [ -122.898276636999952, 49.105745823000056 ], [ -122.898276084999935, 49.106015686000092 ], [ -122.897865054999926, 49.106015324000047 ], [ -122.897864500999972, 49.106285186000072 ], [ -122.896631402999944, 49.106284090000017 ], [ -122.896629720999954, 49.107093678000084 ], [ -122.895807641999923, 49.107092939000026 ], [ -122.895807076999958, 49.107362803000079 ], [ -122.89545844899996, 49.107362487000088 ], [ -122.895669390999927, 49.107189274000049 ], [ -122.897109709999938, 49.105672905000091 ], [ -122.896713700999925, 49.105511913000015 ], [ -122.896555908999986, 49.105394696000126 ], [ -122.896493686999975, 49.105258705000075 ], [ -122.896502707999971, 49.104816510000035 ], [ -122.896505581999961, 49.104645533000074 ], [ -122.896506392999967, 49.104596691000054 ], [ -122.896563994999923, 49.104450610000114 ], [ -122.8967426899999, 49.104255705000149 ], [ -122.896775304999935, 49.104157610000136 ], [ -122.896758127999988, 49.104024605000028 ], [ -122.896621333999988, 49.10375055600008 ], [ -122.896450094000016, 49.103407505000064 ], [ -122.896355094999947, 49.103128089000116 ], [ -122.896324193999973, 49.102831697000063 ], [ -122.896377194999943, 49.102425885000073 ], [ -122.896768603999988, 49.101587505000126 ], [ -122.896977153999956, 49.101452316000028 ], [ -122.897567089999882, 49.101069898000098 ], [ -122.89760732799999, 49.09821298100011 ], [ -122.897611889999922, 49.097890357000047 ], [ -122.898912872000011, 49.099996920000116 ], [ -122.898945367999914, 49.100049518000098 ], [ -122.900382702999977, 49.102376589000123 ], [ -122.900268276999938, 49.102490396000071 ], [ -122.900325197999933, 49.102582202000086 ], [ -122.901640207999918, 49.104686799000014 ], [ -122.903615940999913, 49.107848457000074 ], [ -122.903615823999971, 49.10790931300005 ], [ -122.903654597999918, 49.107909345000067 ], [ -122.904025772999944, 49.108477850000014 ], [ -122.904025307999959, 49.108719244000028 ], [ -122.904186112, 49.108719377000085 ], [ -122.90443574699998, 49.109039418000073 ], [ -122.904435325999899, 49.109259311000059 ], [ -122.904607380999934, 49.109259453000092 ], [ -122.904622868999951, 49.109279311000108 ], [ -122.905643840999943, 49.110298074000056 ], [ -122.906992217999957, 49.111356861000033 ], [ -122.908075895999971, 49.112030499000049 ], [ -122.908876317999926, 49.112474295000055 ], [ -122.910327952, 49.113135051 ], [ -122.911420698999919, 49.113529576000118 ], [ -122.912592962999938, 49.113878834000054 ], [ -122.912590433, 49.114663039000071 ], [ -122.911413691999954, 49.114662141000053 ], [ -122.911414652999937, 49.114122416000065 ], [ -122.910781576999966, 49.114121929000071 ], [ -122.91066911199999, 49.115816417000069 ], [ -122.905201196999911, 49.115659191000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79496334", "BldgCostT": "54353334", "sL_LossRatio": "0.729272128949951", "sL_AssetLoss": "1420334", "sL_BldgLoss": "1035810", "sL_StrLoss": "461010", "sL_NStrLoss": "574800", "sL_ContLoss": "384524", "geom_point": "0101000020E6100000DF1545387BB95EC0FA5D967EDB8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893165533999976, 49.119366975000069 ], [ -122.893267993999928, 49.118550903000035 ], [ -122.89560839699999, 49.118577003000084 ], [ -122.895640611999937, 49.116758705000095 ], [ -122.895380104999973, 49.116763805000097 ], [ -122.895025063999967, 49.11686264300009 ], [ -122.894975317999965, 49.116876506000089 ], [ -122.894533200999916, 49.116934905000051 ], [ -122.89342948299999, 49.11707509200005 ], [ -122.893250309999956, 49.116558101000052 ], [ -122.893126925999979, 49.116006700000071 ], [ -122.893216321999944, 49.115528100000091 ], [ -122.893390301999958, 49.115178992000054 ], [ -122.893697698, 49.114841901000055 ], [ -122.894075482999966, 49.114372491000047 ], [ -122.894195006999951, 49.114100305000093 ], [ -122.894211718999927, 49.113911500000022 ], [ -122.894093794999918, 49.113421485000053 ], [ -122.893981694999951, 49.113211993000043 ], [ -122.893769515999935, 49.113047191000085 ], [ -122.893556291999957, 49.112958200000044 ], [ -122.893271908999935, 49.112911188000076 ], [ -122.893036987999935, 49.112900804000084 ], [ -122.892125101999952, 49.11289700600004 ], [ -122.890523796999958, 49.112903010000089 ], [ -122.890417680999974, 49.112902172000084 ], [ -122.890310213999953, 49.112901308000055 ], [ -122.890337206999959, 49.111736085000139 ], [ -122.890385909999935, 49.109636207000072 ], [ -122.890387734999976, 49.109410699000101 ], [ -122.890396893999934, 49.10828309500004 ], [ -122.890482807999959, 49.108288290000097 ], [ -122.89048598899997, 49.108179357000012 ], [ -122.891908742999945, 49.10827006300007 ], [ -122.891827835999962, 49.108324462000034 ], [ -122.891694577999914, 49.108316072000079 ], [ -122.891694309999934, 49.10843847200006 ], [ -122.891283261999916, 49.10843808500011 ], [ -122.891280313999971, 49.109787399 ], [ -122.890869250999984, 49.10978701100003 ], [ -122.890868441999913, 49.110156093000079 ], [ -122.891804443999931, 49.110183154 ], [ -122.891781942999941, 49.11052013900008 ], [ -122.89183436399999, 49.110521654000102 ], [ -122.89179229599992, 49.111151689000067 ], [ -122.891877601999951, 49.111154155000101 ], [ -122.89184269199994, 49.111676973 ], [ -122.897031265999942, 49.111681714000056 ], [ -122.897030708, 49.111951578000046 ], [ -122.89744178799999, 49.111951944000111 ], [ -122.897439938999952, 49.112848752000041 ], [ -122.897520434999933, 49.113030062000149 ], [ -122.897603278999966, 49.11411099300004 ], [ -122.89784843399994, 49.114111210000019 ], [ -122.897846771999951, 49.114920798000085 ], [ -122.897024564, 49.114920067000078 ], [ -122.897023447, 49.115459793000099 ], [ -122.896893491999975, 49.115459677000089 ], [ -122.896893634999955, 49.115478562000085 ], [ -122.896201193999929, 49.115476338000079 ], [ -122.896200665999956, 49.115728920000016 ], [ -122.895789556999929, 49.115728549000103 ], [ -122.8957884269999, 49.116268274000106 ], [ -122.897432885999962, 49.116269747000111 ], [ -122.897432632999966, 49.11639257300002 ], [ -122.902320745999972, 49.11653349200013 ], [ -122.902296114999913, 49.116903565000058 ], [ -122.906177132999971, 49.117015291 ], [ -122.906064752999953, 49.11870586200007 ], [ -122.909350805999949, 49.118708486000095 ], [ -122.909351298999965, 49.118438624000134 ], [ -122.910995829999976, 49.118439903000088 ], [ -122.910995348999933, 49.118709766000123 ], [ -122.912577374999941, 49.118710977000063 ], [ -122.912577021999979, 49.11882056200006 ], [ -122.910334803999916, 49.118849696000019 ], [ -122.91035448699995, 49.119337806000047 ], [ -122.906598716999923, 49.119380314000118 ], [ -122.903147411999953, 49.11941609600008 ], [ -122.901470385999971, 49.119464199000042 ], [ -122.899284466, 49.119448602000077 ], [ -122.899142991999952, 49.119447598000058 ], [ -122.899077884999954, 49.119450141000129 ], [ -122.89906006199999, 49.119450850000099 ], [ -122.898598301000035, 49.119468934000032 ], [ -122.898507201999919, 49.119472499000082 ], [ -122.89809740699998, 49.119385365000042 ], [ -122.89802588299996, 49.119399103000021 ], [ -122.897997724999939, 49.119400356000078 ], [ -122.897562893999947, 49.119419997000129 ], [ -122.897186826999942, 49.11941707600004 ], [ -122.895981700999954, 49.119407681000048 ], [ -122.893165533999976, 49.119366975000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88224251", "BldgCostT": "59845001", "sL_LossRatio": "0.711549771538009", "sL_AssetLoss": "1989390", "sL_BldgLoss": "1415550", "sL_StrLoss": "606850", "sL_NStrLoss": "808700", "sL_ContLoss": "573840", "geom_point": "0101000020E6100000C636885A83B95EC0F24A274C778F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.897186305999981, 49.122849387000073 ], [ -122.897179617999925, 49.12167690400004 ], [ -122.895988812999974, 49.121662382000046 ], [ -122.89599341, 49.120915485000083 ], [ -122.895991452999922, 49.120666077000131 ], [ -122.895981700999954, 49.119407681000048 ], [ -122.897186826999942, 49.11941707600004 ], [ -122.897562893999947, 49.119419997000129 ], [ -122.897997724999939, 49.119400356000078 ], [ -122.89802588299996, 49.119399103000021 ], [ -122.89809740699998, 49.119385365000042 ], [ -122.898507201999919, 49.119472499000082 ], [ -122.898598301000035, 49.119468934000032 ], [ -122.89906006199999, 49.119450850000099 ], [ -122.899077884999954, 49.119450141000129 ], [ -122.899142991999952, 49.119447598000058 ], [ -122.899284466, 49.119448602000077 ], [ -122.901470385999971, 49.119464199000042 ], [ -122.901477301999961, 49.120246484000063 ], [ -122.901513098999899, 49.121560409000082 ], [ -122.900857192000032, 49.12167929900005 ], [ -122.900489700999941, 49.121706595000028 ], [ -122.899359779999912, 49.12168391299999 ], [ -122.899364309999982, 49.122458092000088 ], [ -122.899244884999959, 49.122586195000096 ], [ -122.898941291999904, 49.122721588000104 ], [ -122.89860758, 49.122796702000116 ], [ -122.898300381999917, 49.122801299000123 ], [ -122.897186305999981, 49.122849387000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51809167", "BldgCostT": "35466667", "sL_LossRatio": "0.711382113821138", "sL_AssetLoss": "1230000", "sL_BldgLoss": "875000", "sL_StrLoss": "387700", "sL_NStrLoss": "487300", "sL_ContLoss": "355000", "geom_point": "0101000020E61000008E2EA14898B95EC0DC587997C58F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900857192000032, 49.12167929900005 ], [ -122.901513098999899, 49.121560409000082 ], [ -122.901921715999961, 49.122397505000031 ], [ -122.902470205999975, 49.12358200700006 ], [ -122.902485182999925, 49.123768901000041 ], [ -122.90237538400001, 49.12397749400008 ], [ -122.902123912999983, 49.124154102000084 ], [ -122.901827216999948, 49.124228408000086 ], [ -122.899960888999928, 49.124277406000033 ], [ -122.898088993999963, 49.124431516000101 ], [ -122.897150706, 49.124472082000047 ], [ -122.897184699999954, 49.123654905000137 ], [ -122.897186305999981, 49.122849387000073 ], [ -122.898300381999917, 49.122801299000123 ], [ -122.89860758, 49.122796702000116 ], [ -122.898941291999904, 49.122721588000104 ], [ -122.899244884999959, 49.122586195000096 ], [ -122.899364309999982, 49.122458092000088 ], [ -122.899359779999912, 49.12168391299999 ], [ -122.900489700999941, 49.121706595000028 ], [ -122.900857192000032, 49.12167929900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211803834", "BldgCostT": "134467349", "sL_LossRatio": "0.667109649382614", "sL_AssetLoss": "4659324", "sL_BldgLoss": "3108280", "sL_StrLoss": "1285340", "sL_NStrLoss": "1822940", "sL_ContLoss": "1551044", "geom_point": "0101000020E61000001FB2790329B95EC03724074F958F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893165533999976, 49.119366975000069 ], [ -122.895981700999954, 49.119407681000048 ], [ -122.895991452999922, 49.120666077000131 ], [ -122.89599341, 49.120915485000083 ], [ -122.895988812999974, 49.121662382000046 ], [ -122.895981200999969, 49.12238411400002 ], [ -122.895977794999951, 49.122710897000047 ], [ -122.895981493999969, 49.123098350000078 ], [ -122.895984512999945, 49.123411202000071 ], [ -122.895945791999907, 49.123581289000171 ], [ -122.89580461499996, 49.123808790000062 ], [ -122.895574285999956, 49.123975100000074 ], [ -122.895253699999927, 49.124099195000063 ], [ -122.894908083999937, 49.124145992000059 ], [ -122.89269703699992, 49.124127213000101 ], [ -122.891736191999939, 49.12412265600004 ], [ -122.890459384999986, 49.124116602000058 ], [ -122.890434085999985, 49.12411706000011 ], [ -122.890286599999968, 49.124119704000087 ], [ -122.890280221999902, 49.123005829000114 ], [ -122.890342883999949, 49.119382710000139 ], [ -122.890389178999939, 49.119384046000043 ], [ -122.890486434999914, 49.11938684200004 ], [ -122.891595251999959, 49.119396382000062 ], [ -122.891794963, 49.119339087000107 ], [ -122.89213055, 49.11934591300011 ], [ -122.893165533999976, 49.119366975000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69922502", "BldgCostT": "46275002", "sL_LossRatio": "0.702453821711083", "sL_AssetLoss": "1533567", "sL_BldgLoss": "1077260", "sL_StrLoss": "474400", "sL_NStrLoss": "602860", "sL_ContLoss": "456307", "geom_point": "0101000020E6100000AB8B90911EB95EC09C44B56F0B904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890285480999964, 49.12671923000007 ], [ -122.8902859199999, 49.125734167000104 ], [ -122.890286487, 49.124402849000035 ], [ -122.890286599999968, 49.124119704000087 ], [ -122.890434085999985, 49.12411706000011 ], [ -122.890459384999986, 49.124116602000058 ], [ -122.891736191999939, 49.12412265600004 ], [ -122.89269703699992, 49.124127213000101 ], [ -122.894908083999937, 49.124145992000059 ], [ -122.894906216, 49.124851495000016 ], [ -122.894899390999939, 49.125673107000125 ], [ -122.894758892999988, 49.125930309000069 ], [ -122.894517993999969, 49.126153104000167 ], [ -122.894467956999961, 49.126173582000142 ], [ -122.893936330999949, 49.126391317000106 ], [ -122.892999002999915, 49.126744489000018 ], [ -122.891664944999945, 49.126628352000075 ], [ -122.89045661899992, 49.12672060600007 ], [ -122.890285480999964, 49.12671923000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "462971926", "BldgCostT": "304672452", "sL_LossRatio": "0.770386230695888", "sL_AssetLoss": "3031090", "sL_BldgLoss": "2335110", "sL_StrLoss": "1185490", "sL_NStrLoss": "1149620", "sL_ContLoss": "695980", "geom_point": "0101000020E6100000A5D80BE49DB85EC0E2D8B431FA8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887462673999892, 49.122982900000117 ], [ -122.890280221999902, 49.123005829000114 ], [ -122.890286599999968, 49.124119704000087 ], [ -122.890286487, 49.124402849000035 ], [ -122.8902859199999, 49.125734167000104 ], [ -122.890285480999964, 49.12671923000007 ], [ -122.888840711999975, 49.126711695000047 ], [ -122.887572513999885, 49.126706535000082 ], [ -122.886932988999916, 49.126702419000026 ], [ -122.886083983999953, 49.126697693000011 ], [ -122.885543086999945, 49.126694647000107 ], [ -122.883205246999978, 49.126684594000089 ], [ -122.881898319999948, 49.126665609000121 ], [ -122.880404308, 49.126656583000049 ], [ -122.879011199999965, 49.126654896000055 ], [ -122.878993496999911, 49.12376203700007 ], [ -122.878988307, 49.122910306000072 ], [ -122.880316118999986, 49.122924493000014 ], [ -122.884536991999951, 49.12295860400009 ], [ -122.886025203999935, 49.122970151000054 ], [ -122.887462673999892, 49.122982900000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "397065833", "BldgCostT": "267833333", "sL_LossRatio": "0.784486604083443", "sL_AssetLoss": "2006395", "sL_BldgLoss": "1573990", "sL_StrLoss": "832510", "sL_NStrLoss": "741480", "sL_ContLoss": "432405", "geom_point": "0101000020E6100000078952ADCBB85EC0B9DC2E6E828F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887432127, 49.119355050000102 ], [ -122.890342883999949, 49.119382710000139 ], [ -122.890280221999902, 49.123005829000114 ], [ -122.887462673999892, 49.122982900000117 ], [ -122.886025203999935, 49.122970151000054 ], [ -122.884536991999951, 49.12295860400009 ], [ -122.884545102999965, 49.122100110000176 ], [ -122.88454920599996, 49.121118111000058 ], [ -122.884557279, 49.120200110000034 ], [ -122.884565753999951, 49.119337134000062 ], [ -122.885814441999955, 49.119344799000082 ], [ -122.885951511999949, 49.119345637000016 ], [ -122.887328685999975, 49.11935408300009 ], [ -122.887432127, 49.119355050000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53641052", "BldgCostT": "32498745", "sL_LossRatio": "0.695755496776327", "sL_AssetLoss": "483920", "sL_BldgLoss": "336690", "sL_StrLoss": "190050", "sL_NStrLoss": "146640", "sL_ContLoss": "147230", "geom_point": "0101000020E61000005BF844E871B85EC042B467E0918F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.88316658899997, 49.120185904000103 ], [ -122.884557279, 49.120200110000034 ], [ -122.88454920599996, 49.121118111000058 ], [ -122.884545102999965, 49.122100110000176 ], [ -122.884536991999951, 49.12295860400009 ], [ -122.880316118999986, 49.122924493000014 ], [ -122.878988307, 49.122910306000072 ], [ -122.879006709999913, 49.121042989000031 ], [ -122.880302397999913, 49.121045411000047 ], [ -122.880297614999932, 49.120605585000078 ], [ -122.88032879, 49.120446998000048 ], [ -122.880450684999971, 49.120303587000109 ], [ -122.88069660599993, 49.120211590000089 ], [ -122.88101489, 49.120162307000093 ], [ -122.881668705999985, 49.120176813000072 ], [ -122.882836464999954, 49.120183891000096 ], [ -122.883069432999932, 49.120185306000096 ], [ -122.88316658899997, 49.120185904000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109772561", "BldgCostT": "69868190", "sL_LossRatio": "0.755458335900754", "sL_AssetLoss": "973740", "sL_BldgLoss": "735620", "sL_StrLoss": "340860", "sL_NStrLoss": "394760", "sL_ContLoss": "238120", "geom_point": "0101000020E6100000A924786468B85EC05A1F5A54598F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87903526499997, 49.119289423000083 ], [ -122.884565753999951, 49.119337134000062 ], [ -122.884557279, 49.120200110000034 ], [ -122.88316658899997, 49.120185904000103 ], [ -122.883069432999932, 49.120185306000096 ], [ -122.882836464999954, 49.120183891000096 ], [ -122.881668705999985, 49.120176813000072 ], [ -122.88101489, 49.120162307000093 ], [ -122.88069660599993, 49.120211590000089 ], [ -122.880450684999971, 49.120303587000109 ], [ -122.88032879, 49.120446998000048 ], [ -122.880297614999932, 49.120605585000078 ], [ -122.880302397999913, 49.121045411000047 ], [ -122.879006709999913, 49.121042989000031 ], [ -122.879016670999988, 49.120343123000062 ], [ -122.87903526499997, 49.119289423000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111497122", "BldgCostT": "73286380", "sL_LossRatio": "0.735549571772535", "sL_AssetLoss": "1389682", "sL_BldgLoss": "1022180", "sL_StrLoss": "482960", "sL_NStrLoss": "539220", "sL_ContLoss": "367502", "geom_point": "0101000020E6100000B57AA8E98AB85EC0DC4C4BCD1A8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.882464182, 49.11744080600009 ], [ -122.882541217, 49.116537404000098 ], [ -122.882844517999956, 49.116200206000052 ], [ -122.883074303999962, 49.116103190000096 ], [ -122.883553201999916, 49.116007196000112 ], [ -122.884032591999954, 49.116007587000084 ], [ -122.885979992999978, 49.116010790000054 ], [ -122.885969699999961, 49.11667641300005 ], [ -122.885938695999982, 49.116831398000059 ], [ -122.885858094, 49.116972288000092 ], [ -122.88571028699999, 49.117133899000123 ], [ -122.88556380299994, 49.117234999000111 ], [ -122.885949900999947, 49.117381394000084 ], [ -122.886244315999988, 49.117443999000081 ], [ -122.886819749999944, 49.117453890000036 ], [ -122.887396213999949, 49.117463794000052 ], [ -122.887396944000031, 49.117715965000045 ], [ -122.887396973999984, 49.117725440000108 ], [ -122.887400635999981, 49.118994821000051 ], [ -122.887324982999985, 49.119245832000153 ], [ -122.887328685999975, 49.11935408300009 ], [ -122.885951511999949, 49.119345637000016 ], [ -122.885814441999955, 49.119344799000082 ], [ -122.884565753999951, 49.119337134000062 ], [ -122.87903526499997, 49.119289423000083 ], [ -122.879035667, 49.119181291000096 ], [ -122.879038037999948, 49.119093536000072 ], [ -122.879058665999963, 49.118327763000138 ], [ -122.879078194999963, 49.11744350000005 ], [ -122.880943794999951, 49.117441696000157 ], [ -122.882464182, 49.11744080600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131864584", "BldgCostT": "83103334", "sL_LossRatio": "0.674026368570526", "sL_AssetLoss": "1323242", "sL_BldgLoss": "891900", "sL_StrLoss": "368530", "sL_NStrLoss": "523370", "sL_ContLoss": "431342", "geom_point": "0101000020E6100000B35C672AE1B85EC02FBFFCE3F78E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887439920999952, 49.115581782000049 ], [ -122.887451626999962, 49.114954909000041 ], [ -122.887455292999945, 49.1147572160001 ], [ -122.887469778999957, 49.113982074000035 ], [ -122.887472816999917, 49.113820298000078 ], [ -122.888788675999933, 49.113638494000014 ], [ -122.888894791999917, 49.113793012000073 ], [ -122.88888722499999, 49.114596538000107 ], [ -122.88887790199999, 49.115582896000049 ], [ -122.890350718999983, 49.115595776000092 ], [ -122.890344625999958, 49.119274624000099 ], [ -122.890342883999949, 49.119382710000139 ], [ -122.887432127, 49.119355050000102 ], [ -122.887328685999975, 49.11935408300009 ], [ -122.887324982999985, 49.119245832000153 ], [ -122.887400635999981, 49.118994821000051 ], [ -122.887396973999984, 49.117725440000108 ], [ -122.887396944000031, 49.117715965000045 ], [ -122.887396213999949, 49.117463794000052 ], [ -122.887411846999939, 49.116790600000044 ], [ -122.887416632999972, 49.116583758000026 ], [ -122.887439920999952, 49.115581782000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89358137", "BldgCostT": "58447080", "sL_LossRatio": "0.705344854533093", "sL_AssetLoss": "1516393", "sL_BldgLoss": "1069580", "sL_StrLoss": "481920", "sL_NStrLoss": "587660", "sL_ContLoss": "446813", "geom_point": "0101000020E6100000AB6097B8C0B85EC064922618AD8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885987309999933, 49.115322290000087 ], [ -122.885988300999884, 49.115230705000052 ], [ -122.885808083999905, 49.115230261000065 ], [ -122.882551196999913, 49.115222198000048 ], [ -122.882870205999907, 49.114447494000025 ], [ -122.882889047999953, 49.114420511000105 ], [ -122.88310038399996, 49.114118000000126 ], [ -122.883587693999928, 49.113651912000094 ], [ -122.884300805999985, 49.113228286999984 ], [ -122.884807408999933, 49.113024991 ], [ -122.885096205999957, 49.112945908000043 ], [ -122.885590912999987, 49.113535102000078 ], [ -122.886397921999972, 49.113919811000066 ], [ -122.886570212999956, 49.113759008000052 ], [ -122.886621543999979, 49.113723038000053 ], [ -122.886879508999925, 49.11354238300008 ], [ -122.887028586999961, 49.113437989000047 ], [ -122.887092520999943, 49.113409385000047 ], [ -122.887452086999943, 49.113248395000078 ], [ -122.887532658999959, 49.113224151000104 ], [ -122.888451499999988, 49.11294760100003 ], [ -122.888678, 49.112814788000044 ], [ -122.889035899999925, 49.112604908000051 ], [ -122.889365300999913, 49.112756793000116 ], [ -122.88963701599998, 49.112852100000076 ], [ -122.889931708999939, 49.112889509000105 ], [ -122.890310213999953, 49.112901308000055 ], [ -122.890311902999954, 49.113015062000045 ], [ -122.890322033999922, 49.113689301000065 ], [ -122.890336377999958, 49.114642813000081 ], [ -122.890350718999983, 49.115595776000092 ], [ -122.88887790199999, 49.115582896000049 ], [ -122.88888722499999, 49.114596538000107 ], [ -122.888894791999917, 49.113793012000073 ], [ -122.888788675999933, 49.113638494000014 ], [ -122.887472816999917, 49.113820298000078 ], [ -122.887469778999957, 49.113982074000035 ], [ -122.887455292999945, 49.1147572160001 ], [ -122.887451626999962, 49.114954909000041 ], [ -122.887439920999952, 49.115581782000049 ], [ -122.887416632999972, 49.116583758000026 ], [ -122.887411846999939, 49.116790600000044 ], [ -122.887396213999949, 49.117463794000052 ], [ -122.886819749999944, 49.117453890000036 ], [ -122.886244315999988, 49.117443999000081 ], [ -122.885949900999947, 49.117381394000084 ], [ -122.88556380299994, 49.117234999000111 ], [ -122.88571028699999, 49.117133899000123 ], [ -122.885858094, 49.116972288000092 ], [ -122.885938695999982, 49.116831398000059 ], [ -122.885969699999961, 49.11667641300005 ], [ -122.885979992999978, 49.116010790000054 ], [ -122.885981522999927, 49.115867871000049 ], [ -122.885985367, 49.115505997000078 ], [ -122.885987309999933, 49.115322290000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140714583", "BldgCostT": "90918333", "sL_LossRatio": "0.685188973293069", "sL_AssetLoss": "2884270", "sL_BldgLoss": "1976270", "sL_StrLoss": "884880", "sL_NStrLoss": "1091390", "sL_ContLoss": "908000", "geom_point": "0101000020E61000009510A4398FB85EC02BE78BBD978E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879087483999982, 49.116427291000043 ], [ -122.879120905999983, 49.115355265000062 ], [ -122.879128318999975, 49.115117502000011 ], [ -122.879158804000014, 49.11413889900011 ], [ -122.880342008999918, 49.114159687000082 ], [ -122.880726488999983, 49.114083507000061 ], [ -122.881017889999953, 49.113925188000074 ], [ -122.881290988999936, 49.11369160600001 ], [ -122.881863110999959, 49.113063109000144 ], [ -122.882410303999961, 49.112459896000082 ], [ -122.883085206999965, 49.11209470500004 ], [ -122.884131508999957, 49.111931305000049 ], [ -122.885282710999959, 49.111796099000024 ], [ -122.885901413999946, 49.111719503000089 ], [ -122.886138590999948, 49.111612800000081 ], [ -122.886284596999957, 49.111456612000083 ], [ -122.886309415, 49.111187899000065 ], [ -122.886191899999943, 49.110918709000032 ], [ -122.886139511, 49.110452194000054 ], [ -122.88747451199994, 49.110455700000081 ], [ -122.888040889999957, 49.110505506000074 ], [ -122.888362877999981, 49.110605793000069 ], [ -122.888899013999918, 49.110861902000146 ], [ -122.88916148299991, 49.111079276000055 ], [ -122.889191012999973, 49.111103701000047 ], [ -122.88938379699999, 49.111394107000137 ], [ -122.889464218999947, 49.111645992000042 ], [ -122.889468525999959, 49.111889409000085 ], [ -122.889407279999944, 49.11212909100005 ], [ -122.889269313999961, 49.112389994000111 ], [ -122.889207422999959, 49.112446954000028 ], [ -122.889035899999925, 49.112604908000051 ], [ -122.888678, 49.112814788000044 ], [ -122.888451499999988, 49.11294760100003 ], [ -122.887532658999959, 49.113224151000104 ], [ -122.887452086999943, 49.113248395000078 ], [ -122.887092520999943, 49.113409385000047 ], [ -122.887028586999961, 49.113437989000047 ], [ -122.886879508999925, 49.11354238300008 ], [ -122.886621543999979, 49.113723038000053 ], [ -122.886570212999956, 49.113759008000052 ], [ -122.886397921999972, 49.113919811000066 ], [ -122.885590912999987, 49.113535102000078 ], [ -122.885096205999957, 49.112945908000043 ], [ -122.884807408999933, 49.113024991 ], [ -122.884300805999985, 49.113228286999984 ], [ -122.883587693999928, 49.113651912000094 ], [ -122.88310038399996, 49.114118000000126 ], [ -122.882889047999953, 49.114420511000105 ], [ -122.882870205999907, 49.114447494000025 ], [ -122.882551196999913, 49.115222198000048 ], [ -122.885808083999905, 49.115230261000065 ], [ -122.885988300999884, 49.115230705000052 ], [ -122.885987309999933, 49.115322290000087 ], [ -122.885985367, 49.115505997000078 ], [ -122.885981522999927, 49.115867871000049 ], [ -122.885979992999978, 49.116010790000054 ], [ -122.884032591999954, 49.116007587000084 ], [ -122.883553201999916, 49.116007196000112 ], [ -122.883074303999962, 49.116103190000096 ], [ -122.882844517999956, 49.116200206000052 ], [ -122.882541217, 49.116537404000098 ], [ -122.882464182, 49.11744080600009 ], [ -122.880943794999951, 49.117441696000157 ], [ -122.879078194999963, 49.11744350000005 ], [ -122.879087483999982, 49.116427291000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90597979", "BldgCostT": "57991198", "sL_LossRatio": "0.675661225457974", "sL_AssetLoss": "1842299", "sL_BldgLoss": "1244770", "sL_StrLoss": "506420", "sL_NStrLoss": "738350", "sL_ContLoss": "597529", "geom_point": "0101000020E61000005F96E9767AB85EC05933F81C548E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879524297, 49.113016802000054 ], [ -122.880080202999977, 49.112385998000022 ], [ -122.880702489999962, 49.11168229900008 ], [ -122.881099488999936, 49.11123521400004 ], [ -122.881396879999954, 49.110945488000084 ], [ -122.881678098999913, 49.110776188000024 ], [ -122.882220412999956, 49.110551304000133 ], [ -122.882640409999937, 49.110454506000089 ], [ -122.883150197999939, 49.110428703000132 ], [ -122.886139511, 49.110452194000054 ], [ -122.886191899999943, 49.110918709000032 ], [ -122.886309415, 49.111187899000065 ], [ -122.886284596999957, 49.111456612000083 ], [ -122.886138590999948, 49.111612800000081 ], [ -122.885901413999946, 49.111719503000089 ], [ -122.885282710999959, 49.111796099000024 ], [ -122.884131508999957, 49.111931305000049 ], [ -122.883085206999965, 49.11209470500004 ], [ -122.882410303999961, 49.112459896000082 ], [ -122.881863110999959, 49.113063109000144 ], [ -122.881290988999936, 49.11369160600001 ], [ -122.881017889999953, 49.113925188000074 ], [ -122.880726488999983, 49.114083507000061 ], [ -122.880342008999918, 49.114159687000082 ], [ -122.879158804000014, 49.11413889900011 ], [ -122.87918071899999, 49.113648396000045 ], [ -122.879335510999951, 49.113238395000124 ], [ -122.879524297, 49.113016802000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191809167", "BldgCostT": "122771667", "sL_LossRatio": "0.708362570456849", "sL_AssetLoss": "2345762", "sL_BldgLoss": "1661650", "sL_StrLoss": "801250", "sL_NStrLoss": "860400", "sL_ContLoss": "684112", "geom_point": "0101000020E61000005AB7594091B85EC0C8D23DA10D8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.888040889999957, 49.110505506000074 ], [ -122.88747451199994, 49.110455700000081 ], [ -122.886139511, 49.110452194000054 ], [ -122.883150197999939, 49.110428703000132 ], [ -122.882640409999937, 49.110454506000089 ], [ -122.882220412999956, 49.110551304000133 ], [ -122.881678098999913, 49.110776188000024 ], [ -122.881396879999954, 49.110945488000084 ], [ -122.881099488999936, 49.11123521400004 ], [ -122.880702489999962, 49.11168229900008 ], [ -122.880080202999977, 49.112385998000022 ], [ -122.879479198999974, 49.112075716000085 ], [ -122.879202487999919, 49.111810891000069 ], [ -122.877746912999953, 49.111809197000071 ], [ -122.87779072099994, 49.10870532600017 ], [ -122.877794971999919, 49.108437804000111 ], [ -122.877610133999951, 49.108261070000012 ], [ -122.879123552999914, 49.108270949000087 ], [ -122.884091061999982, 49.108239308000073 ], [ -122.887386039999939, 49.108262228000072 ], [ -122.890396893999934, 49.10828309500004 ], [ -122.890387734999976, 49.109410699000101 ], [ -122.890385909999935, 49.109636207000072 ], [ -122.890337206999959, 49.111736085000139 ], [ -122.890310213999953, 49.112901308000055 ], [ -122.889931708999939, 49.112889509000105 ], [ -122.88963701599998, 49.112852100000076 ], [ -122.889365300999913, 49.112756793000116 ], [ -122.889035899999925, 49.112604908000051 ], [ -122.889207422999959, 49.112446954000028 ], [ -122.889269313999961, 49.112389994000111 ], [ -122.889407279999944, 49.11212909100005 ], [ -122.889468525999959, 49.111889409000085 ], [ -122.889464218999947, 49.111645992000042 ], [ -122.88938379699999, 49.111394107000137 ], [ -122.889191012999973, 49.111103701000047 ], [ -122.88916148299991, 49.111079276000055 ], [ -122.888899013999918, 49.110861902000146 ], [ -122.888362877999981, 49.110605793000069 ], [ -122.888040889999957, 49.110505506000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159899969", "BldgCostT": "106100412", "sL_LossRatio": "0.691954651079355", "sL_AssetLoss": "3623460", "sL_BldgLoss": "2507270", "sL_StrLoss": "1088410", "sL_NStrLoss": "1418860", "sL_ContLoss": "1116190", "geom_point": "0101000020E6100000A1E8CB1C1CB95EC061F85F19E18E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890344625999958, 49.119274624000099 ], [ -122.890350718999983, 49.115595776000092 ], [ -122.890336377999958, 49.114642813000081 ], [ -122.890322033999922, 49.113689301000065 ], [ -122.890311902999954, 49.113015062000045 ], [ -122.890310213999953, 49.112901308000055 ], [ -122.890417680999974, 49.112902172000084 ], [ -122.890523796999958, 49.112903010000089 ], [ -122.892125101999952, 49.11289700600004 ], [ -122.893036987999935, 49.112900804000084 ], [ -122.893271908999935, 49.112911188000076 ], [ -122.893556291999957, 49.112958200000044 ], [ -122.893769515999935, 49.113047191000085 ], [ -122.893981694999951, 49.113211993000043 ], [ -122.894093794999918, 49.113421485000053 ], [ -122.894211718999927, 49.113911500000022 ], [ -122.894195006999951, 49.114100305000093 ], [ -122.894075482999966, 49.114372491000047 ], [ -122.893697698, 49.114841901000055 ], [ -122.893390301999958, 49.115178992000054 ], [ -122.893216321999944, 49.115528100000091 ], [ -122.893126925999979, 49.116006700000071 ], [ -122.893250309999956, 49.116558101000052 ], [ -122.89342948299999, 49.11707509200005 ], [ -122.894533200999916, 49.116934905000051 ], [ -122.894975317999965, 49.116876506000089 ], [ -122.895025063999967, 49.11686264300009 ], [ -122.895380104999973, 49.116763805000097 ], [ -122.895640611999937, 49.116758705000095 ], [ -122.89560839699999, 49.118577003000084 ], [ -122.893267993999928, 49.118550903000035 ], [ -122.893165533999976, 49.119366975000069 ], [ -122.89213055, 49.11934591300011 ], [ -122.891794963, 49.119339087000107 ], [ -122.891595251999959, 49.119396382000062 ], [ -122.890486434999914, 49.11938684200004 ], [ -122.890389178999939, 49.119384046000043 ], [ -122.890342883999949, 49.119382710000139 ], [ -122.890344625999958, 49.119274624000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302048948", "BldgCostT": "204077211", "sL_LossRatio": "0.769803761334668", "sL_AssetLoss": "3472863", "sL_BldgLoss": "2673423", "sL_StrLoss": "1329603", "sL_NStrLoss": "1343820", "sL_ContLoss": "799440", "geom_point": "0101000020E61000008198320D16B85EC0CB1A583BC88E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.877746912999953, 49.111809197000071 ], [ -122.879202487999919, 49.111810891000069 ], [ -122.879479198999974, 49.112075716000085 ], [ -122.880080202999977, 49.112385998000022 ], [ -122.879524297, 49.113016802000054 ], [ -122.879335510999951, 49.113238395000124 ], [ -122.87918071899999, 49.113648396000045 ], [ -122.879158804000014, 49.11413889900011 ], [ -122.879128318999975, 49.115117502000011 ], [ -122.879120905999983, 49.115355265000062 ], [ -122.879087483999982, 49.116427291000043 ], [ -122.879078194999963, 49.11744350000005 ], [ -122.879058665999963, 49.118327763000138 ], [ -122.879038037999948, 49.119093536000072 ], [ -122.879035667, 49.119181291000096 ], [ -122.87903526499997, 49.119289423000083 ], [ -122.876355432999958, 49.11927151000004 ], [ -122.875779763999958, 49.119267655000087 ], [ -122.875108163999968, 49.119263172000075 ], [ -122.874765459999963, 49.11926085900015 ], [ -122.873391842999979, 49.119251638000094 ], [ -122.873396236999952, 49.119124724000073 ], [ -122.873408120999954, 49.118540274000075 ], [ -122.873438621999952, 49.116720092000058 ], [ -122.87344528899996, 49.116356198000098 ], [ -122.873470443999935, 49.115491932000033 ], [ -122.873485917999972, 49.114697772000049 ], [ -122.873495937999962, 49.114185106000093 ], [ -122.873508560999937, 49.11353771600006 ], [ -122.873524157999967, 49.112856972000046 ], [ -122.873531300999971, 49.112526488000071 ], [ -122.873499286999959, 49.111800179000078 ], [ -122.875004598999951, 49.111799928000039 ], [ -122.876367049999899, 49.111799720000057 ], [ -122.877746912999953, 49.111809197000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183210999", "BldgCostT": "122559999", "sL_LossRatio": "0.742282416771625", "sL_AssetLoss": "2327121", "sL_BldgLoss": "1727381", "sL_StrLoss": "907918", "sL_NStrLoss": "819463", "sL_ContLoss": "599740", "geom_point": "0101000020E61000001691D56B42B85EC0A2EAEC9E9B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867844253999948, 49.107102062000116 ], [ -122.867858346999981, 49.104493081000051 ], [ -122.868885086999938, 49.104526009000047 ], [ -122.869377700999976, 49.104541808000086 ], [ -122.86942213399999, 49.104539057000068 ], [ -122.87076369099999, 49.104455998000084 ], [ -122.874516393999926, 49.104402113000056 ], [ -122.87505338899993, 49.104399703000141 ], [ -122.876134126999929, 49.104413990000118 ], [ -122.876487079999947, 49.104418825000025 ], [ -122.877767947999985, 49.104185708000095 ], [ -122.878414504999981, 49.10407804900013 ], [ -122.879145824999952, 49.103956293000074 ], [ -122.881156605999976, 49.103624476000064 ], [ -122.882071281999941, 49.103473495000109 ], [ -122.882049697999975, 49.104614608000084 ], [ -122.882107917999988, 49.104808192000107 ], [ -122.882377685, 49.104745561000101 ], [ -122.88279089299999, 49.104649595000062 ], [ -122.88395209399999, 49.104525491000061 ], [ -122.884456421999943, 49.104683241000018 ], [ -122.884900067999951, 49.104621496000078 ], [ -122.885294143999928, 49.104627836000049 ], [ -122.885609075, 49.104632905000074 ], [ -122.885622758999915, 49.104633114000087 ], [ -122.885792103999904, 49.104635847000047 ], [ -122.885950552999972, 49.104638416000107 ], [ -122.886490365999947, 49.104646947000063 ], [ -122.886860048999921, 49.104652758000015 ], [ -122.890396051, 49.104708523000049 ], [ -122.890401918999956, 49.104972777000057 ], [ -122.890408002999948, 49.105246789000056 ], [ -122.890414825999969, 49.10684639700002 ], [ -122.890416893999912, 49.10720510900007 ], [ -122.890433064999954, 49.107680433000041 ], [ -122.890396352999943, 49.107737939000117 ], [ -122.8903971299999, 49.107784365000022 ], [ -122.890400220999965, 49.107968299000071 ], [ -122.890403831999933, 49.108179692000078 ], [ -122.890396893999934, 49.10828309500004 ], [ -122.887386039999939, 49.108262228000072 ], [ -122.884091061999982, 49.108239308000073 ], [ -122.879123552999914, 49.108270949000087 ], [ -122.877610133999951, 49.108261070000012 ], [ -122.87739417100002, 49.108259652000136 ], [ -122.876456686999987, 49.108253513000157 ], [ -122.873518330999957, 49.108234239000069 ], [ -122.871984598999973, 49.108232913000023 ], [ -122.870197730999948, 49.108231345000071 ], [ -122.867891427999965, 49.10817319300002 ], [ -122.867788830999984, 49.108172010000033 ], [ -122.867792564999959, 49.108054966000076 ], [ -122.867792848999954, 49.10796937400012 ], [ -122.867840081999987, 49.107877946000038 ], [ -122.867844253999948, 49.107102062000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156002500", "BldgCostT": "105490000", "sL_LossRatio": "0.758567937407222", "sL_AssetLoss": "1696937", "sL_BldgLoss": "1287242", "sL_StrLoss": "641682", "sL_NStrLoss": "645560", "sL_ContLoss": "409695", "geom_point": "0101000020E6100000947606BA34B85EC045E206F8C58C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.863000205999967, 49.104551492000098 ], [ -122.862498825999964, 49.103153693000124 ], [ -122.862240218999958, 49.102691662000048 ], [ -122.86218352600001, 49.102590298000074 ], [ -122.861719205, 49.1021648850001 ], [ -122.862011997999943, 49.10188421200013 ], [ -122.862287209999963, 49.101762504000128 ], [ -122.862466204999933, 49.101756940000058 ], [ -122.86301494199995, 49.101739881000043 ], [ -122.863528893999899, 49.101723900000103 ], [ -122.863566260000013, 49.100419951000056 ], [ -122.863575294999961, 49.10010490700008 ], [ -122.863579481999977, 49.099957404000072 ], [ -122.863703307999984, 49.099744795000099 ], [ -122.863948805999911, 49.099616809000018 ], [ -122.864118994999927, 49.099590189000075 ], [ -122.864330376999959, 49.09960269800002 ], [ -122.86551429299999, 49.099893990000069 ], [ -122.865713092999968, 49.099950288000038 ], [ -122.865981017999957, 49.099977905000138 ], [ -122.867393517999986, 49.099965011000045 ], [ -122.867548085999928, 49.099946091000071 ], [ -122.86769558499999, 49.099890917000103 ], [ -122.867786122999945, 49.099807105000131 ], [ -122.867905215999912, 49.099460901000043 ], [ -122.868220807999947, 49.099145695000054 ], [ -122.86857360799999, 49.098948697000026 ], [ -122.869020480999922, 49.098817591000049 ], [ -122.869440378999968, 49.098783891000068 ], [ -122.870382198999948, 49.098785200000059 ], [ -122.871664686, 49.098831506000117 ], [ -122.87218629600001, 49.098872809000056 ], [ -122.872235343999989, 49.098879734000093 ], [ -122.87276844199998, 49.098955288000028 ], [ -122.872826500999949, 49.098963497000064 ], [ -122.872805217999911, 49.099009071000147 ], [ -122.872706485999984, 49.099220390000085 ], [ -122.872752310999914, 49.099255751000044 ], [ -122.873682785999961, 49.099973379000033 ], [ -122.87375439, 49.100028595000026 ], [ -122.874230698999966, 49.100540713000065 ], [ -122.87459202299999, 49.100930602000084 ], [ -122.874601971999937, 49.100721094000029 ], [ -122.874624196999946, 49.100253216000056 ], [ -122.874631436999948, 49.100100709000031 ], [ -122.87463614399999, 49.100001851000094 ], [ -122.87463827599997, 49.099956922000032 ], [ -122.874694897999973, 49.098765594000085 ], [ -122.874733099999943, 49.098298090000114 ], [ -122.874638197999971, 49.098287321000079 ], [ -122.874771010999936, 49.09718269100005 ], [ -122.874825888000018, 49.097017585000039 ], [ -122.874827140999955, 49.096852067000036 ], [ -122.874845470999986, 49.094380658000091 ], [ -122.874755493999928, 49.094150096000114 ], [ -122.86961409, 49.09442760500005 ], [ -122.869075913, 49.094499688000134 ], [ -122.86908381799999, 49.094382127000095 ], [ -122.869070202, 49.094382111000108 ], [ -122.869062173, 49.094501528000123 ], [ -122.868553188999897, 49.0945696980001 ], [ -122.861724984999938, 49.094970653000111 ], [ -122.861726028999968, 49.094594936000156 ], [ -122.862148162000011, 49.09456933900006 ], [ -122.867418292999957, 49.094167365000018 ], [ -122.868080086999939, 49.09421260800012 ], [ -122.868569420999947, 49.094278001000099 ], [ -122.869639869999915, 49.094166293000072 ], [ -122.870844079, 49.094059347000027 ], [ -122.871987705999942, 49.093999102000033 ], [ -122.872714501999909, 49.093807796000078 ], [ -122.873643510999969, 49.093637738000069 ], [ -122.874730048999979, 49.093567719000099 ], [ -122.875264598999962, 49.093502929000067 ], [ -122.875437534999946, 49.093494929000016 ], [ -122.877224053999953, 49.093472392000109 ], [ -122.881703363999989, 49.093330906000077 ], [ -122.882727975999956, 49.093336031000064 ], [ -122.88309553299996, 49.093380379000109 ], [ -122.883521595999966, 49.093469250000041 ], [ -122.884316209999952, 49.093459978000062 ], [ -122.887418466999989, 49.0932258240001 ], [ -122.88862594299998, 49.093157728000101 ], [ -122.889205050999948, 49.093084049000026 ], [ -122.889562863999956, 49.095752856000111 ], [ -122.889256233999973, 49.095752561000047 ], [ -122.889257121999918, 49.095353786000018 ], [ -122.886244145999925, 49.095266542000097 ], [ -122.886283384999942, 49.094679718000059 ], [ -122.88476544400001, 49.094635732000079 ], [ -122.884737437999974, 49.095054353000144 ], [ -122.884734583999901, 49.09628786300005 ], [ -122.884654919999889, 49.096287783000037 ], [ -122.884652919999937, 49.096317686000063 ], [ -122.885012147999973, 49.096328097000068 ], [ -122.885004080999948, 49.096448679000069 ], [ -122.885656331999954, 49.09646758100007 ], [ -122.885642539999978, 49.096673800000062 ], [ -122.886842100999928, 49.096708550000052 ], [ -122.886839139999935, 49.09675286100002 ], [ -122.887476982999942, 49.096771333000028 ], [ -122.887336188999953, 49.098877559000087 ], [ -122.888016319999963, 49.098897252000015 ], [ -122.888017326999915, 49.098450006000135 ], [ -122.88925023099992, 49.098451196000021 ], [ -122.889252031999931, 49.097641605000092 ], [ -122.889816190999966, 49.09764214600014 ], [ -122.890353265999977, 49.10164706900008 ], [ -122.890352862000015, 49.101657043000031 ], [ -122.890352489999955, 49.101665027000088 ], [ -122.89030772199996, 49.102689302000037 ], [ -122.890374377999962, 49.102776902000109 ], [ -122.890391175999966, 49.103408090000109 ], [ -122.890396114999987, 49.104338191000124 ], [ -122.890396051, 49.104708523000049 ], [ -122.886860048999921, 49.104652758000015 ], [ -122.886490365999947, 49.104646947000063 ], [ -122.885950552999972, 49.104638416000107 ], [ -122.885792103999904, 49.104635847000047 ], [ -122.885622758999915, 49.104633114000087 ], [ -122.885609075, 49.104632905000074 ], [ -122.885294143999928, 49.104627836000049 ], [ -122.884900067999951, 49.104621496000078 ], [ -122.884456421999943, 49.104683241000018 ], [ -122.88395209399999, 49.104525491000061 ], [ -122.88279089299999, 49.104649595000062 ], [ -122.882377685, 49.104745561000101 ], [ -122.882107917999988, 49.104808192000107 ], [ -122.882049697999975, 49.104614608000084 ], [ -122.882071281999941, 49.103473495000109 ], [ -122.881156605999976, 49.103624476000064 ], [ -122.879145824999952, 49.103956293000074 ], [ -122.878414504999981, 49.10407804900013 ], [ -122.877767947999985, 49.104185708000095 ], [ -122.876487079999947, 49.104418825000025 ], [ -122.876134126999929, 49.104413990000118 ], [ -122.87505338899993, 49.104399703000141 ], [ -122.874516393999926, 49.104402113000056 ], [ -122.87076369099999, 49.104455998000084 ], [ -122.86942213399999, 49.104539057000068 ], [ -122.869377700999976, 49.104541808000086 ], [ -122.868885086999938, 49.104526009000047 ], [ -122.867858346999981, 49.104493081000051 ], [ -122.86626508199997, 49.104463794000068 ], [ -122.865024589999948, 49.104441110000032 ], [ -122.863425991999961, 49.104471083000057 ], [ -122.863000205999967, 49.104551492000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76174083", "BldgCostT": "51798333", "sL_LossRatio": "0.694031093836757", "sL_AssetLoss": "3962200", "sL_BldgLoss": "2749890", "sL_StrLoss": "1076830", "sL_NStrLoss": "1673060", "sL_ContLoss": "1212310", "geom_point": "0101000020E61000009F6C6F5C2BB95EC07ADB33E8D78C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890403831999933, 49.108179692000078 ], [ -122.890400220999965, 49.107968299000071 ], [ -122.8903971299999, 49.107784365000022 ], [ -122.890396352999943, 49.107737939000117 ], [ -122.890433064999954, 49.107680433000041 ], [ -122.890416893999912, 49.10720510900007 ], [ -122.890414825999969, 49.10684639700002 ], [ -122.890408002999948, 49.105246789000056 ], [ -122.890401918999956, 49.104972777000057 ], [ -122.890396051, 49.104708523000049 ], [ -122.890396114999987, 49.104338191000124 ], [ -122.890391175999966, 49.103408090000109 ], [ -122.890374377999962, 49.102776902000109 ], [ -122.89030772199996, 49.102689302000037 ], [ -122.890352489999955, 49.101665027000088 ], [ -122.890352862000015, 49.101657043000031 ], [ -122.890353265999977, 49.10164706900008 ], [ -122.889816190999966, 49.09764214600014 ], [ -122.890073953999917, 49.097642391000079 ], [ -122.890076336999982, 49.096562938000027 ], [ -122.889671430999954, 49.096562551000027 ], [ -122.889665482999987, 49.096518205000102 ], [ -122.88966718099999, 49.095752955000059 ], [ -122.889562863999956, 49.095752856000111 ], [ -122.889205050999948, 49.093084049000026 ], [ -122.889904830999924, 49.09270375600012 ], [ -122.890495464999987, 49.092137466000025 ], [ -122.89053934899998, 49.092095382000117 ], [ -122.891926169999977, 49.092180080000055 ], [ -122.891867683999976, 49.093056396000094 ], [ -122.892549624999901, 49.093057033000072 ], [ -122.892549042999974, 49.093326896000086 ], [ -122.893370892999968, 49.093327658000128 ], [ -122.893370315999945, 49.093597521000056 ], [ -122.89378124199996, 49.093597901000081 ], [ -122.893782394, 49.093058174000113 ], [ -122.894452388000019, 49.093058789000089 ], [ -122.894849886999964, 49.093710611000127 ], [ -122.895061761999941, 49.094056581000061 ], [ -122.895144334999884, 49.094191405000046 ], [ -122.895233574999935, 49.09433711500003 ], [ -122.895422756999949, 49.094646036000029 ], [ -122.895422120999939, 49.094948719000058 ], [ -122.89560822299994, 49.094948888000076 ], [ -122.895832295999966, 49.095314772000052 ], [ -122.895831929999957, 49.095488818000042 ], [ -122.89593894299999, 49.095488916000114 ], [ -122.89760732799999, 49.09821298100011 ], [ -122.897567089999882, 49.101069898000098 ], [ -122.896977153999956, 49.101452316000028 ], [ -122.896768603999988, 49.101587505000126 ], [ -122.896377194999943, 49.102425885000073 ], [ -122.896324193999973, 49.102831697000063 ], [ -122.896355094999947, 49.103128089000116 ], [ -122.896450094000016, 49.103407505000064 ], [ -122.896621333999988, 49.10375055600008 ], [ -122.896758127999988, 49.104024605000028 ], [ -122.896775304999935, 49.104157610000136 ], [ -122.8967426899999, 49.104255705000149 ], [ -122.896563994999923, 49.104450610000114 ], [ -122.896506392999967, 49.104596691000054 ], [ -122.896505581999961, 49.104645533000074 ], [ -122.896502707999971, 49.104816510000035 ], [ -122.896493686999975, 49.105258705000075 ], [ -122.896555908999986, 49.105394696000126 ], [ -122.896713700999925, 49.105511913000015 ], [ -122.897109709999938, 49.105672905000091 ], [ -122.895669390999927, 49.107189274000049 ], [ -122.89545844899996, 49.107362487000088 ], [ -122.89539603599999, 49.107362431000134 ], [ -122.89539592599999, 49.107413828000062 ], [ -122.89501748799999, 49.107724576000052 ], [ -122.89469791599997, 49.107901523000073 ], [ -122.894572807999964, 49.107901408000032 ], [ -122.89457270199992, 49.107951607000082 ], [ -122.894101588999945, 49.108131577000108 ], [ -122.89391146, 49.108170667000138 ], [ -122.89333909099993, 49.108170139000059 ], [ -122.893338897999982, 49.108260734000083 ], [ -122.892912398999925, 49.108283772000036 ], [ -122.89221769399991, 49.108289758000112 ], [ -122.89210570099999, 49.108282618000082 ], [ -122.892105946999948, 49.108168992000088 ], [ -122.892059126999968, 49.108168950000085 ], [ -122.891908742999945, 49.10827006300007 ], [ -122.89048598899997, 49.108179357000012 ], [ -122.890482807999959, 49.108288290000097 ], [ -122.890396893999934, 49.10828309500004 ], [ -122.890403831999933, 49.108179692000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65567333", "BldgCostT": "43403333", "sL_LossRatio": "0.656927162238072", "sL_AssetLoss": "2349880", "sL_BldgLoss": "1543700", "sL_StrLoss": "609740", "sL_NStrLoss": "933960", "sL_ContLoss": "806180", "geom_point": "0101000020E6100000219D26D864B45EC001BE57844D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.805018950999937, 49.094021832000053 ], [ -122.805020007999929, 49.093751969000074 ], [ -122.806663718999943, 49.093754734000051 ], [ -122.80666267, 49.094024597000029 ], [ -122.807895458999909, 49.094026654000054 ], [ -122.807897879999985, 49.093399540000092 ], [ -122.804150339000017, 49.093288169000111 ], [ -122.80423014199999, 49.092125333000084 ], [ -122.803227148999937, 49.092095503000102 ], [ -122.803087092999959, 49.094135631000022 ], [ -122.802944809999985, 49.094106606000054 ], [ -122.801122348999954, 49.094219434000138 ], [ -122.80080611599999, 49.094239008000081 ], [ -122.799998381999941, 49.09437150400003 ], [ -122.798749419999965, 49.094855698000046 ], [ -122.798130580999938, 49.095327376000057 ], [ -122.79753017199999, 49.095309487000073 ], [ -122.797585697999963, 49.094502114000079 ], [ -122.797544620999972, 49.094500890000056 ], [ -122.797581926999939, 49.093958450000116 ], [ -122.797566554999918, 49.093957992000057 ], [ -122.79760046799997, 49.093464859000093 ], [ -122.797500884000016, 49.093461891000089 ], [ -122.797617755999951, 49.091762449000086 ], [ -122.795923632999973, 49.091711954000054 ], [ -122.795950176999938, 49.091326166000073 ], [ -122.795162782999938, 49.091302688000056 ], [ -122.795159980999969, 49.09134339200002 ], [ -122.793968106999927, 49.091307842000084 ], [ -122.793964334999885, 49.091362621000066 ], [ -122.792808317999985, 49.091328128000086 ], [ -122.792806786999932, 49.091350349000024 ], [ -122.792209579, 49.091332525000041 ], [ -122.792158401999956, 49.092075462000054 ], [ -122.791125854999933, 49.092044637000036 ], [ -122.791121661999966, 49.092105488000072 ], [ -122.786338370999914, 49.091962560000077 ], [ -122.786214615999967, 49.09172960100009 ], [ -122.786123007999919, 49.091127085000061 ], [ -122.785823605999937, 49.090452010000035 ], [ -122.785577386999989, 49.090216990000073 ], [ -122.78507308199994, 49.090081792000085 ], [ -122.78464795, 49.090121492000044 ], [ -122.784673830999907, 49.089746638000058 ], [ -122.787588488999958, 49.089804700000123 ], [ -122.789875905999935, 49.08982618700005 ], [ -122.790084894999936, 49.089805944000048 ], [ -122.79032380799994, 49.08978278400005 ], [ -122.800002496999966, 49.089806367000044 ], [ -122.801150163999949, 49.089809128000034 ], [ -122.80114916699992, 49.089129480000118 ], [ -122.801148054999956, 49.088355887000077 ], [ -122.801144961999967, 49.086259927000071 ], [ -122.801144853999915, 49.086187985000088 ], [ -122.801144031999954, 49.08562128200002 ], [ -122.801143693999947, 49.085405376000082 ], [ -122.801142759999934, 49.084739730000138 ], [ -122.801136246999974, 49.080304941000101 ], [ -122.801134298999926, 49.078955648000033 ], [ -122.801134092999973, 49.078829703000117 ], [ -122.801132032999973, 49.077417434000012 ], [ -122.801130168999975, 49.076149635000064 ], [ -122.801185423999954, 49.076002597000027 ], [ -122.801195972999963, 49.074652966000016 ], [ -122.801208042999946, 49.072704282000075 ], [ -122.80120915699996, 49.07252439400002 ], [ -122.801213085999962, 49.071885605000126 ], [ -122.801220676999947, 49.070662133000063 ], [ -122.801222634999974, 49.070343131000115 ], [ -122.804436895999942, 49.069912099000099 ], [ -122.805149195999903, 49.069651489000115 ], [ -122.806123013999951, 49.068952190000068 ], [ -122.80675490899992, 49.068710109000016 ], [ -122.807507295999955, 49.068747087000098 ], [ -122.808844668999882, 49.069074401000101 ], [ -122.80880022300002, 49.069723325000041 ], [ -122.80546784699996, 49.069624272000048 ], [ -122.805423270999967, 49.070274409000021 ], [ -122.805522632, 49.070274575000042 ], [ -122.805520523999988, 49.070814302000016 ], [ -122.806342, 49.070815684000124 ], [ -122.806344098999915, 49.070275956000046 ], [ -122.807576299999965, 49.070278017000042 ], [ -122.807571088999964, 49.071627335000073 ], [ -122.806338853999961, 49.071625275000031 ], [ -122.806337804999956, 49.071895138000102 ], [ -122.805927057999952, 49.071894448000137 ], [ -122.805926007999929, 49.072164312000041 ], [ -122.804693757999971, 49.072162233000086 ], [ -122.804694815999966, 49.071892369000103 ], [ -122.804447590999928, 49.071891952000037 ], [ -122.804414537999975, 49.072373825000085 ], [ -122.806801848999953, 49.072444816000022 ], [ -122.806802065999989, 49.072441628 ], [ -122.808746819999939, 49.072499419000046 ], [ -122.808748187, 49.072479475000108 ], [ -122.811523165999958, 49.072561876000115 ], [ -122.811543385, 49.072266443000075 ], [ -122.817005890999965, 49.072428439000113 ], [ -122.816930883999973, 49.073526264000087 ], [ -122.818191515999956, 49.073563610000129 ], [ -122.818113551999929, 49.07470514700001 ], [ -122.817972919999931, 49.076764063000034 ], [ -122.81946399899999, 49.076808217000057 ], [ -122.819464123, 49.076773989000067 ], [ -122.818642548999932, 49.076772701000067 ], [ -122.818650056999971, 49.074710223000103 ], [ -122.818651389999943, 49.074343929000122 ], [ -122.819062157999937, 49.07434457300014 ], [ -122.819063137999947, 49.07407470900008 ], [ -122.819473902999974, 49.074075352000072 ], [ -122.819476836999968, 49.073265762000027 ], [ -122.8186553199999, 49.073264473000094 ], [ -122.818659246999957, 49.072185019000109 ], [ -122.81783774799996, 49.072183725000066 ], [ -122.817840707999892, 49.071374134000095 ], [ -122.815786991999943, 49.071370874000131 ], [ -122.81578799, 49.07110101100006 ], [ -122.814145024999945, 49.071098377000119 ], [ -122.814149052999966, 49.070018922 ], [ -122.813738319999942, 49.070018261000044 ], [ -122.813741347999965, 49.069208669000083 ], [ -122.814973520999956, 49.069210650000102 ], [ -122.814973705999975, 49.069161096000073 ], [ -122.813540265999961, 49.069118583000019 ], [ -122.81354311399997, 49.069076941000141 ], [ -122.815666234999924, 49.069124240000114 ], [ -122.817213598, 49.069158687000012 ], [ -122.817581291999957, 49.069285409000081 ], [ -122.818236708999933, 49.069672795000038 ], [ -122.819096, 49.070772308000059 ], [ -122.819600094999956, 49.071259398000052 ], [ -122.820052214999976, 49.071502897000052 ], [ -122.82040659099998, 49.071592703000093 ], [ -122.821161611999912, 49.071423189000093 ], [ -122.821766109999899, 49.071037207000067 ], [ -122.822705481999989, 49.069353964000079 ], [ -122.822729397999979, 49.069311107000026 ], [ -122.823633388999937, 49.069285405000116 ], [ -122.824564091999932, 49.069584500000133 ], [ -122.825001091999937, 49.069602992000043 ], [ -122.825074915999963, 49.069621842000103 ], [ -122.826669101999983, 49.070028891000021 ], [ -122.828650200999959, 49.071371888000073 ], [ -122.829006014999933, 49.071695198000057 ], [ -122.829333719, 49.071876101000065 ], [ -122.829649500999963, 49.071867505000107 ], [ -122.830071885999985, 49.072192295 ], [ -122.830167688999936, 49.072371700000062 ], [ -122.83023309499994, 49.073371502000072 ], [ -122.830434623, 49.074099304000072 ], [ -122.830721083999975, 49.074459592000039 ], [ -122.831458519999956, 49.074829901000051 ], [ -122.832801595999968, 49.07502928700012 ], [ -122.834908696999946, 49.075185912000052 ], [ -122.835441995999972, 49.075177404000058 ], [ -122.836730215999935, 49.074999406000039 ], [ -122.837224593999963, 49.074784303000079 ], [ -122.837403574999939, 49.074621994000111 ], [ -122.837678592999936, 49.07411069500008 ], [ -122.837042747999945, 49.072151735000041 ], [ -122.84107549399998, 49.072270399000068 ], [ -122.841060585999941, 49.072490274000117 ], [ -122.841482792999969, 49.072502689000068 ], [ -122.841434944999961, 49.073208463000071 ], [ -122.841565034, 49.073212289000026 ], [ -122.841321129999983, 49.076809715000124 ], [ -122.839903141999983, 49.076768015000091 ], [ -122.839855608, 49.077468748000094 ], [ -122.835208629999968, 49.07733196100002 ], [ -122.835187530000013, 49.077642561000161 ], [ -122.829724350000021, 49.077481490000068 ], [ -122.829809178999966, 49.076234975000048 ], [ -122.82954037899999, 49.07622704300011 ], [ -122.829498056999938, 49.076848901000055 ], [ -122.826858357999967, 49.076770969000052 ], [ -122.826858305999934, 49.076785317000024 ], [ -122.827269094999977, 49.076785932000114 ], [ -122.827268159, 49.077055796000089 ], [ -122.827678948999932, 49.0770564090001 ], [ -122.82767801599999, 49.077326273000025 ], [ -122.828088807999933, 49.077326886000023 ], [ -122.828087876999973, 49.077596750000062 ], [ -122.828909465999942, 49.077597971000067 ], [ -122.82890854099999, 49.07786783400006 ], [ -122.829319336999944, 49.077868442000089 ], [ -122.829317486999983, 49.078408169000049 ], [ -122.82972829, 49.078408776000082 ], [ -122.829727366999961, 49.078678639000081 ], [ -122.830138170999987, 49.07867924400005 ], [ -122.830137250999911, 49.078949108000053 ], [ -122.830548056999987, 49.078949711000078 ], [ -122.830547137999957, 49.079219576000092 ], [ -122.830862059999959, 49.079220037 ], [ -122.830929669999975, 49.078226230000105 ], [ -122.833015122999925, 49.078287724000106 ], [ -122.833015605999975, 49.07814371300001 ], [ -122.834658803999915, 49.078146078 ], [ -122.834658172999951, 49.078336145000037 ], [ -122.836392940999957, 49.078387239000037 ], [ -122.836293083999962, 49.079857558000057 ], [ -122.837650185999919, 49.079897510000066 ], [ -122.837610088999895, 49.080488143000075 ], [ -122.83763282399994, 49.080488812000098 ], [ -122.837608376999952, 49.080848915000047 ], [ -122.837936418999931, 49.080849376000096 ], [ -122.837934663999988, 49.081389103000085 ], [ -122.83834549, 49.081389679000047 ], [ -122.83834470699999, 49.081631187000042 ], [ -122.83852623599995, 49.081631261000048 ], [ -122.838532380999965, 49.081929670000072 ], [ -122.838754568999917, 49.081929981000087 ], [ -122.838751073999973, 49.083009435000051 ], [ -122.83834023499999, 49.083008860000113 ], [ -122.838339359999949, 49.083278724000102 ], [ -122.837443490999974, 49.083277466000041 ], [ -122.837388578999978, 49.084086188000114 ], [ -122.836486452999964, 49.084059633000074 ], [ -122.836282592999964, 49.084053630000028 ], [ -122.836281600999953, 49.084355282000026 ], [ -122.836692452999927, 49.084355865000077 ], [ -122.836691567999978, 49.084625728000063 ], [ -122.837102419999965, 49.084626308000054 ], [ -122.837101536999967, 49.084896172000093 ], [ -122.837512391999937, 49.084896751000031 ], [ -122.837511511999963, 49.085166614000087 ], [ -122.837922369999944, 49.085167192000036 ], [ -122.837921491999964, 49.085437055000106 ], [ -122.838332351999938, 49.085437631000104 ], [ -122.838331473999958, 49.085707495000051 ], [ -122.838742336999971, 49.085708069000134 ], [ -122.838742369, 49.085698296000054 ], [ -122.838743210999894, 49.085438206000063 ], [ -122.839564929999938, 49.085439351000019 ], [ -122.839565798999971, 49.085169488000105 ], [ -122.840798371999981, 49.085171193000086 ], [ -122.840797508999984, 49.085441058000107 ], [ -122.841619228999917, 49.085442188000108 ], [ -122.84161784199992, 49.085878254000065 ], [ -122.840748204999954, 49.086240693000079 ], [ -122.840021204999928, 49.086627147000115 ], [ -122.839716933999966, 49.086788885000033 ], [ -122.839560582999951, 49.086788667000064 ], [ -122.839560314999957, 49.086872138000096 ], [ -122.83928008399999, 49.087021094000129 ], [ -122.839168852999961, 49.087057988000048 ], [ -122.836272728999987, 49.087053916000045 ], [ -122.836273616999932, 49.086784053000024 ], [ -122.835451876000022, 49.086782884000094 ], [ -122.835450983999948, 49.087052748000119 ], [ -122.833396619, 49.087049800000102 ], [ -122.833395714999966, 49.08731966400007 ], [ -122.831752216, 49.087317280000036 ], [ -122.831751303999937, 49.087587143000121 ], [ -122.830929550999912, 49.087585942000054 ], [ -122.830928633, 49.087855806000107 ], [ -122.828874235999947, 49.087852779000052 ], [ -122.828873668999975, 49.0880178540001 ], [ -122.828853883999926, 49.088030894000092 ], [ -122.828755718999943, 49.088392332000126 ], [ -122.828461497, 49.088391895000058 ], [ -122.828460756999988, 49.088606858000063 ], [ -122.82833554299999, 49.088661572000071 ], [ -122.82763879499997, 49.088660535000017 ], [ -122.827631322999977, 49.090819439000043 ], [ -122.827846903999955, 49.090819760000052 ], [ -122.828020389999949, 49.091394911000094 ], [ -122.827887462999939, 49.091899278000078 ], [ -122.827627584999959, 49.091898891000049 ], [ -122.82762682399999, 49.092118912000046 ], [ -122.827359815999955, 49.092274998000114 ], [ -122.82635971299996, 49.09230070500012 ], [ -122.825983205999989, 49.092105202000099 ], [ -122.825983934999968, 49.091896425000058 ], [ -122.825733744999937, 49.09189604700007 ], [ -122.825595702999962, 49.091615589000121 ], [ -122.825894317999939, 49.090277103000027 ], [ -122.82598959399995, 49.090277246000063 ], [ -122.825990369999971, 49.090054624000047 ], [ -122.826026293999973, 49.090014795000094 ], [ -122.826271198999933, 49.090016209000119 ], [ -122.826328412999942, 49.089610296000068 ], [ -122.826164592999987, 49.089547700000054 ], [ -122.826039478, 49.089737094000149 ], [ -122.82599137399994, 49.089767803000022 ], [ -122.825993365999963, 49.089197794000079 ], [ -122.825783335, 49.089197478000095 ], [ -122.825742104999961, 49.08901638600009 ], [ -122.82558354799994, 49.088890730000038 ], [ -122.825584364999912, 49.088657449000017 ], [ -122.824908425999965, 49.088656425000067 ], [ -122.824762634999956, 49.08864429600002 ], [ -122.824763543999936, 49.088386340000056 ], [ -122.823636768999975, 49.088384624000071 ], [ -122.823619900999972, 49.088330005000032 ], [ -122.82375779499999, 49.088032288000072 ], [ -122.823753176999929, 49.087575208000075 ], [ -122.824355515999969, 49.087576127000041 ], [ -122.824360274999918, 49.086226811000138 ], [ -122.823949408999979, 49.086226185000079 ], [ -122.823950362999952, 49.085956323000097 ], [ -122.82271777299998, 49.085954436000044 ], [ -122.822716811999925, 49.086224300000076 ], [ -122.820251617999986, 49.086220487000048 ], [ -122.820250641999934, 49.086490350000119 ], [ -122.819018038999943, 49.086488424000059 ], [ -122.819017768, 49.08656284200007 ], [ -122.818820489999922, 49.08654970500001 ], [ -122.818772531999983, 49.086541994000093 ], [ -122.818369011999962, 49.086477102000082 ], [ -122.81831458799995, 49.08640591100005 ], [ -122.818183489999925, 49.084507400000135 ], [ -122.818021086999963, 49.084101495000013 ], [ -122.81744829799996, 49.083597289000032 ], [ -122.817256316999959, 49.083516100000033 ], [ -122.816543312999954, 49.083452101000084 ], [ -122.815886137999897, 49.083723537000026 ], [ -122.815398739999935, 49.08370909300001 ], [ -122.815644679999963, 49.080111765000041 ], [ -122.816417203999933, 49.080134658000063 ], [ -122.816623105999952, 49.077121796000071 ], [ -122.816285756999932, 49.077111799000072 ], [ -122.816275845999968, 49.077256821000084 ], [ -122.810812777999956, 49.077094789000043 ], [ -122.810875716999973, 49.076175429000067 ], [ -122.810544364999984, 49.076165593000042 ], [ -122.810542854999966, 49.076187662000102 ], [ -122.805918637, 49.076050278000011 ], [ -122.805916661999973, 49.076079076000049 ], [ -122.80447596899991, 49.076036232000064 ], [ -122.804305113999973, 49.078526832000136 ], [ -122.805177201999967, 49.078552769000069 ], [ -122.804930461999973, 49.082150082000055 ], [ -122.804528682999958, 49.082138133000093 ], [ -122.804478590999921, 49.082868289000054 ], [ -122.804653585999944, 49.08287349400009 ], [ -122.80456277499998, 49.084197175000106 ], [ -122.805107951999929, 49.084213386000073 ], [ -122.804862244, 49.087795107000012 ], [ -122.806774612999973, 49.087851951000125 ], [ -122.806768416999944, 49.087942303000098 ], [ -122.806104784999931, 49.087914092000112 ], [ -122.805515004999961, 49.088030898000035 ], [ -122.804952082999961, 49.088300097000101 ], [ -122.804649505999947, 49.088649003000057 ], [ -122.804592889999938, 49.089225792000086 ], [ -122.805136196999911, 49.09030530800009 ], [ -122.805298104999963, 49.090809499000038 ], [ -122.805323400999939, 49.091601385000075 ], [ -122.805567292999967, 49.092042892000116 ], [ -122.805909700999948, 49.092303489000066 ], [ -122.806210107999959, 49.092411799000061 ], [ -122.808331001999946, 49.092883190000073 ], [ -122.80875629800002, 49.093091101000027 ], [ -122.80891879499994, 49.093343186000055 ], [ -122.808877404999961, 49.093568196000042 ], [ -122.808465406999943, 49.094008297000073 ], [ -122.806142191999967, 49.095983714000077 ], [ -122.805634101999914, 49.095982195000019 ], [ -122.804952404999952, 49.095639005000045 ], [ -122.803784263999972, 49.094501164000086 ], [ -122.803785096999945, 49.094289605000036 ], [ -122.804606962999941, 49.094290999000137 ], [ -122.804608020999922, 49.094021137000077 ], [ -122.805018950999937, 49.094021832000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.743714517437145", "sL_AssetLoss": "12330", "sL_BldgLoss": "9170", "sL_StrLoss": "3800", "sL_NStrLoss": "5370", "sL_ContLoss": "3160", "geom_point": "0101000020E6100000E1F381EC8EB45EC055489E90428B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821472603999922, 49.089460756000094 ], [ -122.821473570999913, 49.089190892000076 ], [ -122.82106268099993, 49.089190257000077 ], [ -122.821065589999975, 49.088380667000067 ], [ -122.820243822999913, 49.088379391000032 ], [ -122.82024577199995, 49.087839665000054 ], [ -122.819834892999936, 49.087839025000029 ], [ -122.819838126999969, 49.086945161000116 ], [ -122.821892745999961, 49.086875718000051 ], [ -122.821890253, 49.087572350000073 ], [ -122.822301129999971, 49.087572984000133 ], [ -122.822297860999981, 49.088489119000016 ], [ -122.821920006999946, 49.088696010000042 ], [ -122.821673102999938, 49.089027794000053 ], [ -122.821714707999973, 49.089136093 ], [ -122.822706196999931, 49.089205725000049 ], [ -122.822705281999959, 49.089462656000087 ], [ -122.821472603999922, 49.089460756000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "0.743352645512796", "sL_AssetLoss": "26063", "sL_BldgLoss": "19374", "sL_StrLoss": "6478", "sL_NStrLoss": "12896", "sL_ContLoss": "6689", "geom_point": "0101000020E6100000219174D5D5B65EC0973F5BDE87894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.855041151999927, 49.076351264000024 ], [ -122.855069685999936, 49.075928596000047 ], [ -122.854470358999933, 49.075911050000116 ], [ -122.854713242999978, 49.072313590000078 ], [ -122.858634820999896, 49.072428338000051 ], [ -122.858630711000018, 49.072707796000017 ], [ -122.85872189199992, 49.074218909000109 ], [ -122.85885860399999, 49.074579209000021 ], [ -122.859226991999932, 49.075046393000036 ], [ -122.859319995999925, 49.076063287000068 ], [ -122.859450667999951, 49.076480255000064 ], [ -122.855041151999927, 49.076351264000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14685918", "BldgCostT": "9631668", "sL_LossRatio": "0.648620678503283", "sL_AssetLoss": "432894", "sL_BldgLoss": "280784", "sL_StrLoss": "104320", "sL_NStrLoss": "176464", "sL_ContLoss": "152110", "geom_point": "0101000020E61000007EAB8E7F93B75EC0BADF579BB58B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86361281399995, 49.09410593000009 ], [ -122.863661100999948, 49.093388969000031 ], [ -122.866249373999892, 49.09346446800005 ], [ -122.866249818000014, 49.093299421000097 ], [ -122.865838891999914, 49.093298945000036 ], [ -122.86583961799991, 49.093029362000017 ], [ -122.865839618999985, 49.093029082000086 ], [ -122.865838851999911, 49.093029081000111 ], [ -122.864606850999962, 49.093027642000052 ], [ -122.86460819699991, 49.092532676000054 ], [ -122.864609052, 49.092218052000113 ], [ -122.865430884999967, 49.09221901300004 ], [ -122.865431613999945, 49.091949150000055 ], [ -122.867918420999928, 49.091952022000029 ], [ -122.868001062999937, 49.090723239000027 ], [ -122.868009161999936, 49.090602804000078 ], [ -122.865988882999943, 49.090600476000041 ], [ -122.865846163999962, 49.090600311000038 ], [ -122.865845435999972, 49.090870174000017 ], [ -122.862969102999969, 49.090866796000064 ], [ -122.862968780999935, 49.090983379000086 ], [ -122.862967616999967, 49.091406522000092 ], [ -122.862671870999975, 49.091406171000067 ], [ -122.861766123999985, 49.09140509000013 ], [ -122.861593607999978, 49.09396497200008 ], [ -122.857791031999952, 49.093853868000096 ], [ -122.856128423999976, 49.093805247000077 ], [ -122.856326850999892, 49.090865961000084 ], [ -122.854462545999951, 49.090811411000097 ], [ -122.85453241099998, 49.089777016000028 ], [ -122.852699674999968, 49.089774691000052 ], [ -122.852700198999941, 49.089597634000015 ], [ -122.852702069999978, 49.088965100000102 ], [ -122.853112958999958, 49.088965624000103 ], [ -122.853113755999914, 49.088695760000093 ], [ -122.854605310999943, 49.088697649000018 ], [ -122.854705508999956, 49.087214034000077 ], [ -122.860169914999958, 49.087373833000044 ], [ -122.860043821999938, 49.089244100000059 ], [ -122.860919098999943, 49.08924515800004 ], [ -122.860918345999934, 49.089515021000082 ], [ -122.863383708999919, 49.089517965000041 ], [ -122.863382967999911, 49.089787828000112 ], [ -122.865437447999938, 49.089790241000053 ], [ -122.86543817799999, 49.08952037900012 ], [ -122.866259964999969, 49.089521333000064 ], [ -122.866261415999972, 49.088981605000136 ], [ -122.866269109, 49.088981614000026 ], [ -122.866391004999926, 49.089304106000071 ], [ -122.866665207999972, 49.089529190000121 ], [ -122.867102998999911, 49.089674409000061 ], [ -122.867187364999964, 49.08964565100009 ], [ -122.867842684, 49.089422295000098 ], [ -122.868314700999946, 49.089423338000046 ], [ -122.868314434999931, 49.089523696000064 ], [ -122.868660338999959, 49.089524090000076 ], [ -122.868725200999975, 49.089572870000033 ], [ -122.868724618, 49.089794027000018 ], [ -122.869019709000014, 49.08979436200012 ], [ -122.869102606999931, 49.089856705000066 ], [ -122.869540779999966, 49.089892299000041 ], [ -122.86974533099999, 49.089795183000028 ], [ -122.871189994999952, 49.089796803000098 ], [ -122.87118929699993, 49.090066667000094 ], [ -122.87160019599996, 49.090067126000058 ], [ -122.871599701999941, 49.090258267000074 ], [ -122.87350410399992, 49.090313687000112 ], [ -122.87347200499994, 49.090791804000077 ], [ -122.873652839999963, 49.090797064000085 ], [ -122.87365400399996, 49.090339256000064 ], [ -122.874064904, 49.090339705000112 ], [ -122.8740653399999, 49.090167443000091 ], [ -122.874730105999944, 49.090519010000023 ], [ -122.875591708999949, 49.090555987000116 ], [ -122.876113090999965, 49.090718411000132 ], [ -122.881836109999966, 49.091065903000114 ], [ -122.884069298999975, 49.091122800000015 ], [ -122.88615060799998, 49.091340686000088 ], [ -122.887748289999962, 49.091406150000097 ], [ -122.88772844199994, 49.091703124000084 ], [ -122.888032500999927, 49.091703419000055 ], [ -122.888032477999928, 49.091713946000084 ], [ -122.890459282, 49.09178418900008 ], [ -122.890488037999987, 49.091895966000088 ], [ -122.890491081999969, 49.09190785200007 ], [ -122.89053934899998, 49.092095382000117 ], [ -122.890495464999987, 49.092137466000025 ], [ -122.889904830999924, 49.09270375600012 ], [ -122.889205050999948, 49.093084049000026 ], [ -122.88862594299998, 49.093157728000101 ], [ -122.887418466999989, 49.0932258240001 ], [ -122.884316209999952, 49.093459978000062 ], [ -122.883521595999966, 49.093469250000041 ], [ -122.88309553299996, 49.093380379000109 ], [ -122.882727975999956, 49.093336031000064 ], [ -122.881703363999989, 49.093330906000077 ], [ -122.877224053999953, 49.093472392000109 ], [ -122.875437534999946, 49.093494929000016 ], [ -122.875264598999962, 49.093502929000067 ], [ -122.874730048999979, 49.093567719000099 ], [ -122.873643510999969, 49.093637738000069 ], [ -122.872714501999909, 49.093807796000078 ], [ -122.871987705999942, 49.093999102000033 ], [ -122.870844079, 49.094059347000027 ], [ -122.869639869999915, 49.094166293000072 ], [ -122.868569420999947, 49.094278001000099 ], [ -122.868080086999939, 49.09421260800012 ], [ -122.867418292999957, 49.094167365000018 ], [ -122.862148162000011, 49.09456933900006 ], [ -122.861726028999968, 49.094594936000156 ], [ -122.861726643999987, 49.094373548000085 ], [ -122.862548510999886, 49.094374530000088 ], [ -122.862549255999966, 49.094104667000074 ], [ -122.86361281399995, 49.09410593000009 ] ], [ [ -122.878166647999961, 49.093312613000087 ], [ -122.878167307999917, 49.093042749000041 ], [ -122.88216286499997, 49.093046899000093 ], [ -122.882235129, 49.091967515000057 ], [ -122.87796935199998, 49.091963085000117 ], [ -122.877878895999984, 49.093312310000016 ], [ -122.878166647999961, 49.093312613000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2015500", "BldgCostT": "1390000", "sL_LossRatio": "0.700461361014994", "sL_AssetLoss": "86700", "sL_BldgLoss": "60730", "sL_StrLoss": "20030", "sL_NStrLoss": "40700", "sL_ContLoss": "25970", "geom_point": "0101000020E6100000B3B112F36CB25EC0AE356B5B5A8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78619937799999, 49.098169078000112 ], [ -122.786251141999969, 49.097419123000059 ], [ -122.784479463999929, 49.09736613500003 ], [ -122.784727863999947, 49.093768954000048 ], [ -122.786063685999977, 49.093808909000096 ], [ -122.786055388999955, 49.093834495000081 ], [ -122.786093503999979, 49.094364311000056 ], [ -122.786216283, 49.094572299000049 ], [ -122.786667977, 49.094824397000068 ], [ -122.787284010999926, 49.09496958700003 ], [ -122.789156606999967, 49.095801391000045 ], [ -122.790184095999933, 49.095919590000072 ], [ -122.791664712999989, 49.095553606000053 ], [ -122.791856627999948, 49.095548763000053 ], [ -122.791664831999981, 49.098332356000085 ], [ -122.78619937799999, 49.098169078000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34552750", "BldgCostT": "22675000", "sL_LossRatio": "0.680213927878323", "sL_AssetLoss": "1329420", "sL_BldgLoss": "904290", "sL_StrLoss": "293720", "sL_NStrLoss": "610570", "sL_ContLoss": "425130", "geom_point": "0101000020E6100000AD3E997743B45EC0DE7050A92F8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789779748999976, 49.10223885200007 ], [ -122.789780372999971, 49.102091011000134 ], [ -122.791424357999958, 49.102093993000018 ], [ -122.791423935999916, 49.102194478000094 ], [ -122.79388963199996, 49.102268047000038 ], [ -122.793897039999962, 49.100479250000014 ], [ -122.794719003999916, 49.100480715000032 ], [ -122.794720117999987, 49.100210854000068 ], [ -122.795953058999899, 49.100213039000089 ], [ -122.79594863399997, 49.101292487000087 ], [ -122.796359624999965, 49.10129321200008 ], [ -122.79635741599995, 49.101832937000097 ], [ -122.796448832999914, 49.10183309800005 ], [ -122.796506282999957, 49.100998161000042 ], [ -122.796796436999941, 49.101006808000101 ], [ -122.796835400999925, 49.100440467000084 ], [ -122.797453401999931, 49.100458882000083 ], [ -122.797498710999974, 49.099800182000109 ], [ -122.797834169999973, 49.099810175000123 ], [ -122.797899025999953, 49.098867144000103 ], [ -122.795958590999945, 49.098863729000101 ], [ -122.795959730999954, 49.098585845000116 ], [ -122.795963015999959, 49.097784280000027 ], [ -122.796373975999956, 49.097785006000045 ], [ -122.796375079999919, 49.097515143000059 ], [ -122.796786037999979, 49.097515867000048 ], [ -122.796787138999946, 49.097246005000081 ], [ -122.797609053999977, 49.097247449000051 ], [ -122.797610149999983, 49.09697758700004 ], [ -122.799664919999941, 49.096981171000081 ], [ -122.799666005999924, 49.096711309000071 ], [ -122.800076957999977, 49.096712022000084 ], [ -122.800078042999957, 49.096442159000084 ], [ -122.800488990999966, 49.096442870000033 ], [ -122.800491153999985, 49.095903145000101 ], [ -122.800902098999956, 49.095903855000103 ], [ -122.800904074999934, 49.095409964000098 ], [ -122.798594826999974, 49.095341205000103 ], [ -122.798760683999944, 49.095214592000097 ], [ -122.799735319999925, 49.094704705000048 ], [ -122.801120428999951, 49.094521807000078 ], [ -122.802161593999955, 49.094384312000074 ], [ -122.802736996999897, 49.094367207000126 ], [ -122.80306635899997, 49.09443763200003 ], [ -122.803058079999985, 49.094558231000121 ], [ -122.803341213, 49.094558715000097 ], [ -122.803462108999938, 49.094639187000048 ], [ -122.804689606999943, 49.09583698400008 ], [ -122.805512081999922, 49.096188798000107 ], [ -122.80592090099999, 49.096271393000116 ], [ -122.806278105999937, 49.09624430900007 ], [ -122.806662214999946, 49.096002192000057 ], [ -122.807892008999957, 49.09492105000006 ], [ -122.80789025199995, 49.095375967000095 ], [ -122.807479310999909, 49.095375283000116 ], [ -122.807476180999942, 49.096184870000094 ], [ -122.807065232999946, 49.096184183000098 ], [ -122.807064187999956, 49.096454046000055 ], [ -122.806653237999953, 49.096453359000101 ], [ -122.806650093999949, 49.097262946000079 ], [ -122.807061049000012, 49.097263633000054 ], [ -122.80706000299989, 49.097533496000082 ], [ -122.811169592999931, 49.097540291000023 ], [ -122.811175733999946, 49.095921116000099 ], [ -122.8115866799999, 49.095921788000055 ], [ -122.811587700999965, 49.095651925000041 ], [ -122.813561684999939, 49.0956551310001 ], [ -122.813771957999961, 49.09258215600007 ], [ -122.816119188999949, 49.092651718000049 ], [ -122.81612004099999, 49.092420862000047 ], [ -122.81381364399999, 49.092417165 ], [ -122.813807898999954, 49.092501136000067 ], [ -122.813654242, 49.092496581 ], [ -122.813653529999954, 49.092686772000071 ], [ -122.81242077399996, 49.092684774000119 ], [ -122.812421619999924, 49.092460029000137 ], [ -122.809688699, 49.09237893700007 ], [ -122.809649569000015, 49.092950103000064 ], [ -122.810776071999925, 49.092951954000064 ], [ -122.810769917999949, 49.094571131000059 ], [ -122.810358982999972, 49.094570456000049 ], [ -122.810357955999933, 49.094840318000067 ], [ -122.809125146, 49.094838288000048 ], [ -122.809127215999965, 49.094298562000162 ], [ -122.80860104099996, 49.094297691000058 ], [ -122.809082504999978, 49.093874392000053 ], [ -122.80931559699999, 49.093461389000069 ], [ -122.809288105999897, 49.093299 ], [ -122.808702506999964, 49.092767797000121 ], [ -122.808263814000014, 49.092586897000103 ], [ -122.806157583999905, 49.092142602000102 ], [ -122.805897183999932, 49.091961702000042 ], [ -122.805668788999967, 49.090927703000098 ], [ -122.805030692999978, 49.089288502000024 ], [ -122.805156408999949, 49.088614800000123 ], [ -122.805515007999958, 49.088345598000039 ], [ -122.806227607999958, 49.08819320100006 ], [ -122.806750243999957, 49.088207339000085 ], [ -122.806742177000018, 49.088325007000037 ], [ -122.806841238999979, 49.088327951000032 ], [ -122.806743002999937, 49.089760650000073 ], [ -122.808516144999942, 49.089813323 ], [ -122.808589581, 49.088741719000083 ], [ -122.80880002399999, 49.088747969000082 ], [ -122.809672886999948, 49.089747091000028 ], [ -122.810439303999942, 49.090090303000075 ], [ -122.811068598999938, 49.090190005000089 ], [ -122.811533016999988, 49.090154395000113 ], [ -122.812068290999946, 49.089966392000058 ], [ -122.81244039099991, 49.089670104000085 ], [ -122.81300360299997, 49.088725891000053 ], [ -122.813598593999956, 49.087135110000062 ], [ -122.815015278999965, 49.085833295000029 ], [ -122.815736491999985, 49.084594180000082 ], [ -122.815738084999921, 49.084594182000068 ], [ -122.815738095999947, 49.084591426000031 ], [ -122.815841706999933, 49.084413404000088 ], [ -122.81639220299995, 49.083892105000061 ], [ -122.816788883999919, 49.08376679600007 ], [ -122.817118481999955, 49.083820896000113 ], [ -122.817690498, 49.084326506000075 ], [ -122.817827291999933, 49.084622804000055 ], [ -122.817874787999969, 49.086331807000043 ], [ -122.81807888799996, 49.086692092000142 ], [ -122.818339690999949, 49.086845898000014 ], [ -122.818475889999959, 49.086918591000021 ], [ -122.81859777399994, 49.086930649000116 ], [ -122.81902292299999, 49.086972703000086 ], [ -122.819427201999972, 49.086959045000057 ], [ -122.81942499199999, 49.087568519000051 ], [ -122.819014115999977, 49.087567876000051 ], [ -122.819013133999988, 49.087837738000076 ], [ -122.818602254999973, 49.087837093000118 ], [ -122.818598322999975, 49.088916547000025 ], [ -122.819009211999969, 49.088917192000082 ], [ -122.819006268999928, 49.089726780000028 ], [ -122.818184479999957, 49.089725489000053 ], [ -122.818182508999925, 49.090265214000105 ], [ -122.81778510499997, 49.09026458700005 ], [ -122.817770845, 49.090473263 ], [ -122.817770622999987, 49.09053442900003 ], [ -122.817766666999916, 49.090534423000058 ], [ -122.817729788999941, 49.091074094000049 ], [ -122.81776864599999, 49.091074155000101 ], [ -122.81776765799999, 49.091344017000061 ], [ -122.818178566999919, 49.091344665000079 ], [ -122.818177580999972, 49.091614528000022 ], [ -122.818588491999989, 49.09161517400004 ], [ -122.818588389999974, 49.091642888000138 ], [ -122.821801697999916, 49.091737962000096 ], [ -122.821699235999944, 49.093239208000043 ], [ -122.821869979999974, 49.093239471000047 ], [ -122.821865152, 49.094588785000084 ], [ -122.822276087999981, 49.094589418000055 ], [ -122.822275834, 49.094660668000088 ], [ -122.825724064999932, 49.094762564000078 ], [ -122.825757379999942, 49.09427385200005 ], [ -122.827619172999903, 49.094328822000087 ], [ -122.827619176999974, 49.094327656000097 ], [ -122.828322194999927, 49.09432870400012 ], [ -122.82832347499999, 49.094309914000085 ], [ -122.829673774999961, 49.094349753000095 ], [ -122.829673841, 49.094330706000093 ], [ -122.829958903999923, 49.09433112600005 ], [ -122.829973218999953, 49.094120853000135 ], [ -122.831729048999961, 49.094172627 ], [ -122.831731241999947, 49.093524131000059 ], [ -122.832553092999945, 49.093525326000091 ], [ -122.832554907999963, 49.092985601000066 ], [ -122.831322142999937, 49.092983805000124 ], [ -122.831323058999914, 49.092713943000049 ], [ -122.830501218999956, 49.092712739000028 ], [ -122.830503973999953, 49.091903150000064 ], [ -122.83132580099999, 49.091904353000039 ], [ -122.831326713999914, 49.091634491000043 ], [ -122.831737624999946, 49.09163509000004 ], [ -122.83173853699999, 49.091365227000047 ], [ -122.832149445999931, 49.091365825000047 ], [ -122.832153085999948, 49.090286373000069 ], [ -122.832563984999979, 49.090286970000065 ], [ -122.832564893, 49.090017106000118 ], [ -122.835030276999987, 49.090020656000064 ], [ -122.835027593999911, 49.090830246000074 ], [ -122.834616689999919, 49.09082965700005 ], [ -122.83461489799997, 49.091369384000053 ], [ -122.833793079999964, 49.091368203000073 ], [ -122.833792178999914, 49.091638066 ], [ -122.83502491199999, 49.091639834000013 ], [ -122.835021334999908, 49.092719287000115 ], [ -122.834610415000029, 49.092718699000052 ], [ -122.834608621999934, 49.093258425000052 ], [ -122.835277308999963, 49.093259382000078 ], [ -122.83535061, 49.09218077900006 ], [ -122.837677300999985, 49.092249265000113 ], [ -122.837689622, 49.092067835000101 ], [ -122.840899913000015, 49.092162247000083 ], [ -122.840906692999951, 49.092062313000064 ], [ -122.846371619999942, 49.092222812000017 ], [ -122.846322141999934, 49.092953427000083 ], [ -122.849329661999946, 49.093041636000059 ], [ -122.849221429999915, 49.094641257000056 ], [ -122.849878739999937, 49.094660525000052 ], [ -122.849845963999925, 49.095145025000136 ], [ -122.849800675999973, 49.095147660000137 ], [ -122.849105605999981, 49.095188088000036 ], [ -122.846805155999959, 49.095435092000081 ], [ -122.845492123999932, 49.09557606000007 ], [ -122.84410918199994, 49.095724512000096 ], [ -122.844005425999953, 49.095730669000062 ], [ -122.842985724999949, 49.095791371000089 ], [ -122.840621193999979, 49.095932096000084 ], [ -122.83807312, 49.096083674000056 ], [ -122.834057671999958, 49.096322410000013 ], [ -122.832056733999963, 49.096441343000102 ], [ -122.830617787, 49.096526808000114 ], [ -122.82556227299996, 49.096827028000092 ], [ -122.821837002999985, 49.09704808400005 ], [ -122.81901921099994, 49.097215193000075 ], [ -122.818274665999965, 49.097250845000033 ], [ -122.8181607, 49.097255576000116 ], [ -122.817651987999923, 49.097287390000133 ], [ -122.815405383000027, 49.097445205000085 ], [ -122.812426363999947, 49.09762574800007 ], [ -122.812397624999974, 49.097627503000112 ], [ -122.812175446999959, 49.097640968000078 ], [ -122.807806592999967, 49.097905604000076 ], [ -122.804385277999955, 49.098096601000044 ], [ -122.801096684999933, 49.098280085000098 ], [ -122.801093614999928, 49.098574688000099 ], [ -122.801078701999984, 49.099995955000061 ], [ -122.801060879999923, 49.101690759000036 ], [ -122.80106042599999, 49.101976406000141 ], [ -122.80100275199996, 49.10207832200004 ], [ -122.80097153299999, 49.104366271000067 ], [ -122.80096907599993, 49.104501352000113 ], [ -122.797018402999925, 49.104463032000098 ], [ -122.795039534999958, 49.10445688500004 ], [ -122.795012109999931, 49.104456809000034 ], [ -122.789930747999975, 49.104440849000106 ], [ -122.788096547999928, 49.104456368000037 ], [ -122.784790102999978, 49.104484253000045 ], [ -122.784946481999967, 49.102219884000078 ], [ -122.787611935999962, 49.102299572000085 ], [ -122.78762057699997, 49.102174349000038 ], [ -122.789779748999976, 49.10223885200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.702201622247972", "sL_AssetLoss": "8630", "sL_BldgLoss": "6060", "sL_StrLoss": "1390", "sL_NStrLoss": "4670", "sL_ContLoss": "2570", "geom_point": "0101000020E61000001A6AF383A3B65EC0B525DD5C1D8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850630623999933, 49.094629589000085 ], [ -122.85063143399999, 49.094359726000064 ], [ -122.852136707999961, 49.09436166400009 ], [ -122.852144317999944, 49.094249092000105 ], [ -122.857609540999988, 49.094409019000103 ], [ -122.857594061999947, 49.094638390000043 ], [ -122.857769126999983, 49.094638606000061 ], [ -122.85843840699998, 49.09463942800005 ], [ -122.85843747399997, 49.094967195000081 ], [ -122.857762485999928, 49.094876504000084 ], [ -122.857588391999954, 49.094798402000073 ], [ -122.85730231099997, 49.094736898000065 ], [ -122.857290168999953, 49.094736674000082 ], [ -122.856964621999936, 49.094730609000102 ], [ -122.854131695999953, 49.094895586000085 ], [ -122.851296632999919, 49.095060604000061 ], [ -122.850351613999976, 49.095115599000081 ], [ -122.850218201999922, 49.095123363000013 ], [ -122.850219688999914, 49.09462905700012 ], [ -122.850630623999933, 49.094629589000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.669367199474491", "sL_AssetLoss": "4567", "sL_BldgLoss": "3057", "sL_StrLoss": "617", "sL_NStrLoss": "2440", "sL_ContLoss": "1510", "geom_point": "0101000020E6100000D0D514D0DDB55EC033B0A780288B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841200624999914, 49.087870394000099 ], [ -122.841201483999924, 49.087600531000128 ], [ -122.840790607999963, 49.08759996400002 ], [ -122.840791469999914, 49.08733010200006 ], [ -122.840044023999951, 49.087329068000066 ], [ -122.840224601999978, 49.087256106000019 ], [ -122.840617008, 49.087059877000044 ], [ -122.842089906999959, 49.086323299000092 ], [ -122.842315194999927, 49.086252734000063 ], [ -122.842438385999969, 49.086252903000059 ], [ -122.842433263999951, 49.087872083000072 ], [ -122.841768532999964, 49.08787117400005 ], [ -122.841200624999914, 49.087870394000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.858271375464684", "sL_AssetLoss": "2152", "sL_BldgLoss": "1847", "sL_StrLoss": "717", "sL_NStrLoss": "1130", "sL_ContLoss": "305", "geom_point": "0101000020E61000008D77EC0CB8B45EC0A9275E2BC28B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822691827999975, 49.093240737000123 ], [ -122.822699516999975, 49.091081834000136 ], [ -122.823110420999953, 49.091082463000063 ], [ -122.823111379999929, 49.090812601000117 ], [ -122.82393318799997, 49.09081385700005 ], [ -122.82393414299996, 49.090543995000083 ], [ -122.825166847999967, 49.09054586700006 ], [ -122.825166840999941, 49.090547631000071 ], [ -122.824999583999926, 49.09135520700007 ], [ -122.824753096999984, 49.091354834000121 ], [ -122.824751196999927, 49.091894560000064 ], [ -122.823929371999952, 49.091893309000156 ], [ -122.823928415999944, 49.092163172 ], [ -122.824339331999937, 49.092163798000051 ], [ -122.824335521999927, 49.093243249000103 ], [ -122.822691827999975, 49.093240737000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.649797570850202", "sL_AssetLoss": "9880", "sL_BldgLoss": "6420", "sL_StrLoss": "1270", "sL_NStrLoss": "5150", "sL_ContLoss": "3460", "geom_point": "0101000020E6100000FD499DFCEDB35EC07B227811608B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812420836999962, 49.088636809000036 ], [ -122.812439305999987, 49.088366974000039 ], [ -122.812026154999941, 49.08836630200004 ], [ -122.812030231000023, 49.087286850000062 ], [ -122.81309155299999, 49.087288574000063 ], [ -122.813064797999942, 49.087331606000099 ], [ -122.812593276999948, 49.08887829300005 ], [ -122.812096779999962, 49.08951629400007 ], [ -122.811739609999933, 49.089768405 ], [ -122.811342803999977, 49.089893685000099 ], [ -122.81076840899999, 49.089927899000045 ], [ -122.8101786, 49.089801195000042 ], [ -122.809905206999986, 49.089620285000109 ], [ -122.809283607999987, 49.088762328000087 ], [ -122.812024352999956, 49.088843669000049 ], [ -122.812025136999964, 49.088636164000071 ], [ -122.812420836999962, 49.088636809000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22991667", "BldgCostT": "13646667", "sL_LossRatio": "0.61425038557677", "sL_AssetLoss": "752120", "sL_BldgLoss": "461990", "sL_StrLoss": "202640", "sL_NStrLoss": "259350", "sL_ContLoss": "290130", "geom_point": "0101000020E61000001107F96EADB15EC05FE8F805C78C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.770055789000011, 49.103104692000095 ], [ -122.770157396999949, 49.101791603000066 ], [ -122.769548911999905, 49.099937299000032 ], [ -122.769440307999929, 49.099622494000151 ], [ -122.768814392, 49.099018698000094 ], [ -122.767775196999978, 49.098377807000062 ], [ -122.767735787999953, 49.098179800000032 ], [ -122.767932220999938, 49.09804521500012 ], [ -122.770943761999945, 49.098135730000138 ], [ -122.770701921999944, 49.101622618000071 ], [ -122.77348108899993, 49.101706073000074 ], [ -122.77346580499993, 49.101926606000056 ], [ -122.774849412999941, 49.101968127000113 ], [ -122.774960731999911, 49.100361146000104 ], [ -122.772990759999942, 49.100302022000108 ], [ -122.773189090999949, 49.097440396000067 ], [ -122.769189583, 49.097320249000063 ], [ -122.77005631199998, 49.096754199 ], [ -122.771222703999968, 49.096495005000108 ], [ -122.774004219999981, 49.096087598000068 ], [ -122.77445809999989, 49.09584551100005 ], [ -122.774496371999973, 49.095813422000077 ], [ -122.774432139999988, 49.096740666000109 ], [ -122.775594658999921, 49.096775548000103 ], [ -122.775700374999985, 49.095248915000177 ], [ -122.775303921999949, 49.095237021000081 ], [ -122.775845101999934, 49.095037997000048 ], [ -122.77657398099997, 49.094651994000074 ], [ -122.777273293999912, 49.094473998000069 ], [ -122.778998986999909, 49.094270305000052 ], [ -122.780345114999989, 49.093769008000088 ], [ -122.780839036999936, 49.093457602000058 ], [ -122.780814409999948, 49.093813848000138 ], [ -122.781275017999974, 49.093827645000069 ], [ -122.781118462999956, 49.09609242500003 ], [ -122.781286256999948, 49.096097450000116 ], [ -122.781054182999966, 49.099454469000086 ], [ -122.781037579999918, 49.099694610000064 ], [ -122.780484967999939, 49.099678059000034 ], [ -122.780431905999947, 49.10044541600012 ], [ -122.781358322999978, 49.100473160000064 ], [ -122.781109627999939, 49.104070296000032 ], [ -122.780044090999965, 49.104038385000088 ], [ -122.780010475999973, 49.104524384000065 ], [ -122.77906811299999, 49.104532271000046 ], [ -122.769541612999902, 49.104452182000088 ], [ -122.769542502999954, 49.104407902000069 ], [ -122.770055789000011, 49.103104692000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29567334", "BldgCostT": "18653334", "sL_LossRatio": "0.654817073897142", "sL_AssetLoss": "839410", "sL_BldgLoss": "549660", "sL_StrLoss": "221110", "sL_NStrLoss": "328550", "sL_ContLoss": "289750", "geom_point": "0101000020E6100000219164F304B15EC0799859F8388C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756656837999955, 49.103814779000125 ], [ -122.756657009, 49.100657371000125 ], [ -122.756656987000014, 49.100564180000063 ], [ -122.756657001999898, 49.10043244000007 ], [ -122.756656960999976, 49.10022585600008 ], [ -122.75665747, 49.100000688000073 ], [ -122.756664706999942, 49.096951278000084 ], [ -122.75666492499991, 49.096868350000115 ], [ -122.75666516699998, 49.096753358000086 ], [ -122.756673133999925, 49.093153094000058 ], [ -122.756673584999959, 49.090748805000075 ], [ -122.757701377000018, 49.090870799000101 ], [ -122.758100993999946, 49.090833313000097 ], [ -122.758437484999959, 49.090719105000055 ], [ -122.758757995999957, 49.090501603000028 ], [ -122.758931194999931, 49.090274404000077 ], [ -122.759347088999945, 49.089609193000094 ], [ -122.759575886999926, 49.089551319000066 ], [ -122.759649512999914, 49.089532710000043 ], [ -122.760155557999951, 49.089535382000058 ], [ -122.774021390999934, 49.089607938000022 ], [ -122.775741295999978, 49.089616808000088 ], [ -122.77560112399999, 49.091641293000102 ], [ -122.780953504999943, 49.091801747000041 ], [ -122.780855490999926, 49.093219598000069 ], [ -122.779646296999957, 49.093848791000013 ], [ -122.778876781999912, 49.094053895000044 ], [ -122.776807213999945, 49.094392803000069 ], [ -122.775254548999953, 49.095021449000107 ], [ -122.775459261999956, 49.092065296000023 ], [ -122.775424138999981, 49.092064243000024 ], [ -122.775218335999966, 49.095036111000077 ], [ -122.774995603999955, 49.095126288000074 ], [ -122.774748557999942, 49.09529603600005 ], [ -122.774532661999942, 49.095289557000093 ], [ -122.774521400999944, 49.095452116000111 ], [ -122.773923986999947, 49.095862591000085 ], [ -122.770482896999951, 49.096457896000061 ], [ -122.769714008999941, 49.096725690000035 ], [ -122.768999894999979, 49.097157207000045 ], [ -122.768923719000014, 49.097199245000063 ], [ -122.768940000999947, 49.096964621000069 ], [ -122.768943101999966, 49.096919938000028 ], [ -122.769048593999955, 49.095399661000116 ], [ -122.766921742999955, 49.095335704000085 ], [ -122.766916169999931, 49.095415965000029 ], [ -122.765410830999926, 49.09537067200008 ], [ -122.76541010599999, 49.095381102000026 ], [ -122.764327266999942, 49.095348507000026 ], [ -122.764326063999988, 49.095365828000105 ], [ -122.763757540000015, 49.095348710000088 ], [ -122.763755939999939, 49.095371742000104 ], [ -122.760302806999945, 49.095267709000105 ], [ -122.76024057399998, 49.096162160000034 ], [ -122.760245535999942, 49.096162309000078 ], [ -122.760195366999966, 49.096883327000079 ], [ -122.759995233999945, 49.099759420000133 ], [ -122.759923660999945, 49.099757262000061 ], [ -122.759915547999952, 49.099873853000126 ], [ -122.760199109999959, 49.099874442000065 ], [ -122.760197336999966, 49.100242499000075 ], [ -122.760195210999939, 49.100684026000046 ], [ -122.760051836999978, 49.100683728000035 ], [ -122.75986405499998, 49.103381982000066 ], [ -122.765929206999942, 49.103394436000016 ], [ -122.765950872999966, 49.103082550000117 ], [ -122.764303772999966, 49.103032984000059 ], [ -122.764466411999962, 49.100692821000088 ], [ -122.76348307899994, 49.100690809000064 ], [ -122.763485134999982, 49.100257847000115 ], [ -122.763488207999956, 49.099611363000093 ], [ -122.764541416, 49.099613517000094 ], [ -122.764553760999959, 49.099435882000087 ], [ -122.765374948, 49.09946059700011 ], [ -122.765478404999925, 49.097971400000098 ], [ -122.767175942999984, 49.09802247000006 ], [ -122.767418687999978, 49.09802977100005 ], [ -122.767296513, 49.098097190000047 ], [ -122.767282097999981, 49.09826811100001 ], [ -122.767445709999919, 49.098592785000072 ], [ -122.768334584999963, 49.099017194000048 ], [ -122.769017009999928, 49.099639586000102 ], [ -122.769775096999965, 49.10159221400005 ], [ -122.769769281999942, 49.102834098000059 ], [ -122.769532686, 49.103634492000054 ], [ -122.769214803999944, 49.104245492000075 ], [ -122.769213666999931, 49.104449408000058 ], [ -122.76773893699999, 49.104436914000075 ], [ -122.756657724999968, 49.104342377000052 ], [ -122.75665683299998, 49.104198162000081 ], [ -122.756656839999948, 49.103985690000052 ], [ -122.756656837999955, 49.103814779000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.699312714776632", "sL_AssetLoss": "11640", "sL_BldgLoss": "8140", "sL_StrLoss": "1780", "sL_NStrLoss": "6360", "sL_ContLoss": "3500", "geom_point": "0101000020E61000003B47706581B25EC0A38AEAC61E8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78831080599997, 49.095089288000096 ], [ -122.786532692999984, 49.094447010000067 ], [ -122.786382401999944, 49.094249004000147 ], [ -122.786358754999966, 49.093817733000058 ], [ -122.790192796999975, 49.093932308000014 ], [ -122.790141099999943, 49.094682269000081 ], [ -122.791912681999946, 49.094735164000106 ], [ -122.791873836999955, 49.095298980000052 ], [ -122.790402920999938, 49.095659004 ], [ -122.790062383999953, 49.09567599700005 ], [ -122.789718707999938, 49.095675999000072 ], [ -122.789048221999963, 49.09551230300012 ], [ -122.78831080599997, 49.095089288000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3083667", "BldgCostT": "2126667", "sL_LossRatio": "0.749616391371062", "sL_AssetLoss": "44316", "sL_BldgLoss": "33220", "sL_StrLoss": "11660", "sL_NStrLoss": "21560", "sL_ContLoss": "11096", "geom_point": "0101000020E6100000558FEA2A53B65EC0940C08C6A4894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845922995999956, 49.078321317000061 ], [ -122.845923690999939, 49.07831105700015 ], [ -122.845128067999923, 49.078287697000064 ], [ -122.84537168599995, 49.074690271000115 ], [ -122.846604044999964, 49.07472645200005 ], [ -122.846787877999972, 49.072010397000028 ], [ -122.85225047499992, 49.072170602 ], [ -122.85200740199997, 49.075768058000023 ], [ -122.851570592999963, 49.075755258000065 ], [ -122.851386329999983, 49.078481565000047 ], [ -122.845922995999956, 49.078321317000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.68371467025572", "sL_AssetLoss": "2972", "sL_BldgLoss": "2032", "sL_StrLoss": "412", "sL_NStrLoss": "1620", "sL_ContLoss": "940", "geom_point": "0101000020E6100000F37C407F65B75EC05E844AD88E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.864696302999974, 49.060104219000074 ], [ -122.864699231999936, 49.059024759000081 ], [ -122.863467304999944, 49.059023308000114 ], [ -122.863468183999913, 49.058702389000125 ], [ -122.863529590999988, 49.058670790000079 ], [ -122.865846202999947, 49.058116799000075 ], [ -122.866754716999978, 49.058177070000042 ], [ -122.866753886999931, 49.05848741700003 ], [ -122.866955912999913, 49.058487649000043 ], [ -122.866912595999935, 49.058522692000054 ], [ -122.866801896, 49.058683606000109 ], [ -122.866800510999937, 49.058783293000076 ], [ -122.866897781999938, 49.058810399000095 ], [ -122.86716401399994, 49.058680041000116 ], [ -122.867163142999942, 49.059006380000092 ], [ -122.86702050599996, 49.059070990000116 ], [ -122.867033793999923, 49.059250490000032 ], [ -122.867162225999948, 49.059350085000055 ], [ -122.867161647999936, 49.059567350000123 ], [ -122.866340354999977, 49.059566403000083 ], [ -122.866339630999988, 49.059836267000094 ], [ -122.865928980999954, 49.059835790000129 ], [ -122.865928255999947, 49.060105656000083 ], [ -122.864696302999974, 49.060104219000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15924584", "BldgCostT": "9508334", "sL_LossRatio": "0.626524390243902", "sL_AssetLoss": "334560", "sL_BldgLoss": "209610", "sL_StrLoss": "100640", "sL_NStrLoss": "108970", "sL_ContLoss": "124950", "geom_point": "0101000020E610000088C965ED40B65EC0550750BE668C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84609781799999, 49.098671596000067 ], [ -122.846099418000037, 49.098154156000057 ], [ -122.845754357999951, 49.098144031000068 ], [ -122.845594691999949, 49.096026413000089 ], [ -122.845587321999957, 49.095994046000015 ], [ -122.845492123999932, 49.09557606000007 ], [ -122.846805155999959, 49.095435092000081 ], [ -122.849105605999981, 49.095188088000036 ], [ -122.849800675999973, 49.095147660000137 ], [ -122.849845963999925, 49.095145025000136 ], [ -122.849635365999958, 49.098257850000032 ], [ -122.848564997, 49.098226473000061 ], [ -122.848564454, 49.098404994000063 ], [ -122.848153485999944, 49.09840445400004 ], [ -122.848152662999922, 49.098674317000082 ], [ -122.84609781799999, 49.098671596000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113138834", "BldgCostT": "72133334", "sL_LossRatio": "0.733276486328013", "sL_AssetLoss": "1062501", "sL_BldgLoss": "779107", "sL_StrLoss": "407143", "sL_NStrLoss": "371964", "sL_ContLoss": "283394", "geom_point": "0101000020E61000008457F56612B75EC08F4A9806D18C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84570867399998, 49.10441840700004 ], [ -122.845970700999942, 49.103692291000129 ], [ -122.845976003999979, 49.103677504000039 ], [ -122.845991062999985, 49.103611660000077 ], [ -122.846123090999953, 49.103033992000093 ], [ -122.846079033999914, 49.102449667000037 ], [ -122.846513375999947, 49.102450245000092 ], [ -122.846619467999957, 49.100883877000093 ], [ -122.852085450999979, 49.10104408400008 ], [ -122.852026381999977, 49.101917715000063 ], [ -122.852138788, 49.101917859000061 ], [ -122.852193735999961, 49.101911363000063 ], [ -122.852257028999972, 49.101897258000101 ], [ -122.852456241999988, 49.098950513000062 ], [ -122.857192829999946, 49.099089106000086 ], [ -122.857193986999974, 49.09868585600006 ], [ -122.858426894, 49.098687374000129 ], [ -122.858426127999948, 49.098957238000011 ], [ -122.858837099, 49.098957741000049 ], [ -122.858836332999942, 49.099227603000053 ], [ -122.860069255999974, 49.099229105000077 ], [ -122.860070771999972, 49.09868937800011 ], [ -122.860481741999976, 49.098689876000044 ], [ -122.860483253999973, 49.098150150000059 ], [ -122.861305184999978, 49.098151141000102 ], [ -122.861305936999941, 49.097881277000077 ], [ -122.863360750999973, 49.097883727000124 ], [ -122.863360009999965, 49.09815359200006 ], [ -122.864592904999967, 49.098155044000109 ], [ -122.864592171000012, 49.098424906000105 ], [ -122.865414105999974, 49.098425868000042 ], [ -122.865413375999978, 49.098695731000092 ], [ -122.86591903, 49.09869632000008 ], [ -122.865980735, 49.09867486200006 ], [ -122.866468365999964, 49.098696956000012 ], [ -122.867057254999935, 49.098697635000093 ], [ -122.86705869599993, 49.098157909000129 ], [ -122.86746966199992, 49.098158382000129 ], [ -122.867471097999896, 49.09761865600003 ], [ -122.868293019999896, 49.097619596000051 ], [ -122.868293732999931, 49.097349733000101 ], [ -122.868353284999955, 49.097349801000057 ], [ -122.868368025, 49.097130643000092 ], [ -122.863418797999941, 49.096986332000021 ], [ -122.863467409999942, 49.096264670000089 ], [ -122.862543296999888, 49.096263573000066 ], [ -122.862545530999967, 49.095453983000027 ], [ -122.862134588999979, 49.095453493000065 ], [ -122.862135336999984, 49.095183630000086 ], [ -122.861724394999968, 49.095183138000046 ], [ -122.861724984999938, 49.094970653000111 ], [ -122.868553188999897, 49.0945696980001 ], [ -122.869062173, 49.094501528000123 ], [ -122.86888605899999, 49.097120737000104 ], [ -122.871500302999934, 49.097196859000057 ], [ -122.871522890999955, 49.096860670000119 ], [ -122.871718399999935, 49.096866361000146 ], [ -122.871779161999896, 49.095961897000052 ], [ -122.86898307199999, 49.095880482000076 ], [ -122.869075913, 49.094499688000134 ], [ -122.86961409, 49.09442760500005 ], [ -122.874755493999928, 49.094150096000114 ], [ -122.874845470999986, 49.094380658000091 ], [ -122.874827140999955, 49.096852067000036 ], [ -122.874825888000018, 49.097017585000039 ], [ -122.874771010999936, 49.09718269100005 ], [ -122.874638197999971, 49.098287321000079 ], [ -122.874733099999943, 49.098298090000114 ], [ -122.874694897999973, 49.098765594000085 ], [ -122.87463827599997, 49.099956922000032 ], [ -122.87463614399999, 49.100001851000094 ], [ -122.874631436999948, 49.100100709000031 ], [ -122.874624196999946, 49.100253216000056 ], [ -122.874601971999937, 49.100721094000029 ], [ -122.87459202299999, 49.100930602000084 ], [ -122.874230698999966, 49.100540713000065 ], [ -122.87375439, 49.100028595000026 ], [ -122.873682785999961, 49.099973379000033 ], [ -122.872752310999914, 49.099255751000044 ], [ -122.872706485999984, 49.099220390000085 ], [ -122.872805217999911, 49.099009071000147 ], [ -122.872826500999949, 49.098963497000064 ], [ -122.87276844199998, 49.098955288000028 ], [ -122.872235343999989, 49.098879734000093 ], [ -122.87218629600001, 49.098872809000056 ], [ -122.871664686, 49.098831506000117 ], [ -122.870382198999948, 49.098785200000059 ], [ -122.869440378999968, 49.098783891000068 ], [ -122.869020480999922, 49.098817591000049 ], [ -122.86857360799999, 49.098948697000026 ], [ -122.868220807999947, 49.099145695000054 ], [ -122.867905215999912, 49.099460901000043 ], [ -122.867786122999945, 49.099807105000131 ], [ -122.86769558499999, 49.099890917000103 ], [ -122.867548085999928, 49.099946091000071 ], [ -122.867393517999986, 49.099965011000045 ], [ -122.865981017999957, 49.099977905000138 ], [ -122.865713092999968, 49.099950288000038 ], [ -122.86551429299999, 49.099893990000069 ], [ -122.864330376999959, 49.09960269800002 ], [ -122.864118994999927, 49.099590189000075 ], [ -122.863948805999911, 49.099616809000018 ], [ -122.863703307999984, 49.099744795000099 ], [ -122.863579481999977, 49.099957404000072 ], [ -122.863575294999961, 49.10010490700008 ], [ -122.863566260000013, 49.100419951000056 ], [ -122.863528893999899, 49.101723900000103 ], [ -122.86301494199995, 49.101739881000043 ], [ -122.862466204999933, 49.101756940000058 ], [ -122.862287209999963, 49.101762504000128 ], [ -122.862011997999943, 49.10188421200013 ], [ -122.861719205, 49.1021648850001 ], [ -122.86218352600001, 49.102590298000074 ], [ -122.862240218999958, 49.102691662000048 ], [ -122.862498825999964, 49.103153693000124 ], [ -122.863000205999967, 49.104551492000098 ], [ -122.862054501999964, 49.104768089000075 ], [ -122.861547801999961, 49.104768611000033 ], [ -122.861322660999917, 49.104745284000053 ], [ -122.859610101999962, 49.104567805000023 ], [ -122.857896968999967, 49.104567317000082 ], [ -122.856805796999964, 49.1045670150001 ], [ -122.855287507999961, 49.104563094000099 ], [ -122.850105718999927, 49.104527712000099 ], [ -122.849273011999927, 49.104651902000072 ], [ -122.84876789, 49.104730802000041 ], [ -122.846731508999952, 49.105076615000023 ], [ -122.845612023999976, 49.105229407000074 ], [ -122.84562895699996, 49.105087411000085 ], [ -122.84570867399998, 49.10441840700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10669583", "BldgCostT": "7358333", "sL_LossRatio": "0.73108049425605", "sL_AssetLoss": "253310", "sL_BldgLoss": "185190", "sL_StrLoss": "83690", "sL_NStrLoss": "101500", "sL_ContLoss": "68120", "geom_point": "0101000020E610000077C77B38B5B65EC011D096D6538C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.851901120999983, 49.097846424000103 ], [ -122.852063741999984, 49.09544102800001 ], [ -122.850217253999972, 49.095438646000048 ], [ -122.850218201999922, 49.095123363000013 ], [ -122.850351613999976, 49.095115599000081 ], [ -122.851296632999919, 49.095060604000061 ], [ -122.854131695999953, 49.094895586000085 ], [ -122.856964621999936, 49.094730609000102 ], [ -122.857290168999953, 49.094736674000082 ], [ -122.85730231099997, 49.094736898000065 ], [ -122.857588391999954, 49.094798402000073 ], [ -122.857762485999928, 49.094876504000084 ], [ -122.857843761000012, 49.094941007000088 ], [ -122.857927520999965, 49.09500749500004 ], [ -122.858006501999938, 49.095042313000107 ], [ -122.858106990999914, 49.095086605000098 ], [ -122.858436942999944, 49.095153776000053 ], [ -122.858435336999932, 49.095718880000028 ], [ -122.858024391999919, 49.095718376000043 ], [ -122.858023622999909, 49.095988239000071 ], [ -122.85761267499997, 49.095987732000047 ], [ -122.857611130999885, 49.096527458000025 ], [ -122.857466587999951, 49.096527280000018 ], [ -122.857366764999966, 49.098006362000085 ], [ -122.851901120999983, 49.097846424000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218050812", "BldgCostT": "132928191", "sL_LossRatio": "0.712733801539506", "sL_AssetLoss": "1948287", "sL_BldgLoss": "1388610", "sL_StrLoss": "717160", "sL_NStrLoss": "671450", "sL_ContLoss": "559677", "geom_point": "0101000020E6100000C67AC6F80FB55EC09EB4A9BAC78D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823342167999897, 49.111815003000075 ], [ -122.823426865999963, 49.10820585800009 ], [ -122.823436347999944, 49.106360670000136 ], [ -122.823441535999962, 49.104599132000089 ], [ -122.822359297999967, 49.104591557000042 ], [ -122.822281080999986, 49.104486863000034 ], [ -122.821860812999915, 49.103924311000064 ], [ -122.821717690999975, 49.103454187000068 ], [ -122.821573846999939, 49.102892491000063 ], [ -122.821538526999916, 49.102754579000127 ], [ -122.82127008799992, 49.101706331000038 ], [ -122.821281483999911, 49.101278634000046 ], [ -122.822044618999939, 49.101574893000091 ], [ -122.82216585899999, 49.101621979000065 ], [ -122.82319763699995, 49.101892186000086 ], [ -122.82462161699999, 49.10209374700004 ], [ -122.825909013999933, 49.10222998600004 ], [ -122.826474823999888, 49.102318521000036 ], [ -122.826590497999945, 49.102336598000093 ], [ -122.827453722999948, 49.102528792000058 ], [ -122.828531307, 49.102891304000082 ], [ -122.829512447999932, 49.103397363000028 ], [ -122.829811783999972, 49.103551736000099 ], [ -122.830511342999955, 49.104076990000053 ], [ -122.83112549199997, 49.104509619000041 ], [ -122.831995120999949, 49.105211987000061 ], [ -122.832640143000035, 49.105734450000121 ], [ -122.834004963, 49.106839907000079 ], [ -122.83456090199995, 49.107290159000129 ], [ -122.834768014999952, 49.107457917000055 ], [ -122.835904403999933, 49.108378263000063 ], [ -122.837245912999947, 49.109494553000047 ], [ -122.839681830999936, 49.111456706000055 ], [ -122.840167423999915, 49.11184851100009 ], [ -122.839541568999977, 49.111848167000055 ], [ -122.838590521999947, 49.111848938000044 ], [ -122.836871898000012, 49.111850318000052 ], [ -122.836572346999972, 49.111850546000078 ], [ -122.834380876999944, 49.111852225000042 ], [ -122.831498682999964, 49.111838659000057 ], [ -122.828846975999923, 49.111826116000024 ], [ -122.823342167999897, 49.111815003000075 ] ], [ [ -122.827814135, 49.110663162000058 ], [ -122.827824831, 49.110249930000052 ], [ -122.82756402299999, 49.110249541000037 ], [ -122.827564402999897, 49.110139485000083 ], [ -122.824687244999964, 49.110054551000069 ], [ -122.824684124, 49.110940169000138 ], [ -122.825506306999927, 49.110929312000039 ], [ -122.825506809999965, 49.110786177000094 ], [ -122.82782317099999, 49.110789655000062 ], [ -122.827814135, 49.110663162000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236567644", "BldgCostT": "151776523", "sL_LossRatio": "0.735367178355802", "sL_AssetLoss": "2375140", "sL_BldgLoss": "1746600", "sL_StrLoss": "904260", "sL_NStrLoss": "842340", "sL_ContLoss": "628540", "geom_point": "0101000020E61000003FB3B85AC2B55EC0E91B46DEC58E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834313149999943, 49.118871890000065 ], [ -122.83432124799999, 49.118764586000047 ], [ -122.834323414, 49.118355338000057 ], [ -122.835347453999972, 49.118356803000111 ], [ -122.835348347999954, 49.118086941000101 ], [ -122.836518828999914, 49.118088605000082 ], [ -122.836556717999926, 49.117531170000085 ], [ -122.834328121999974, 49.117465587000105 ], [ -122.834338782999936, 49.115450904000113 ], [ -122.83434161299999, 49.11502937100007 ], [ -122.83434491699991, 49.114531076000048 ], [ -122.834350405999913, 49.113709391000036 ], [ -122.834380876999944, 49.111852225000042 ], [ -122.836572346999972, 49.111850546000078 ], [ -122.836871898000012, 49.111850318000052 ], [ -122.838590521999947, 49.111848938000044 ], [ -122.839541568999977, 49.111848167000055 ], [ -122.840167423999915, 49.11184851100009 ], [ -122.840390649, 49.111848774000073 ], [ -122.840900003999963, 49.111850231000098 ], [ -122.841646203999929, 49.111853231000048 ], [ -122.845354970999949, 49.111852172000042 ], [ -122.845381542999945, 49.111904330000101 ], [ -122.845455191999989, 49.111929010000026 ], [ -122.845451324999914, 49.112397385000065 ], [ -122.845449539999962, 49.11261907199999 ], [ -122.845447209999989, 49.112754192000097 ], [ -122.845444494999924, 49.112999384000076 ], [ -122.845437933, 49.113593148000113 ], [ -122.845432065999915, 49.114123907000085 ], [ -122.845427199999975, 49.11456479900005 ], [ -122.845424437999952, 49.115434244000078 ], [ -122.845406524999987, 49.115751382000077 ], [ -122.84537653699999, 49.116282562000031 ], [ -122.845452886999965, 49.116570452000047 ], [ -122.845406310999948, 49.116651996000051 ], [ -122.845622114999941, 49.116741215000054 ], [ -122.845682273999913, 49.117086302000097 ], [ -122.845365692999948, 49.117169568000115 ], [ -122.845213728, 49.117209510000045 ], [ -122.845317389999977, 49.117559483000065 ], [ -122.845378550999968, 49.118617348000072 ], [ -122.845396459999961, 49.118979218000057 ], [ -122.845399945999972, 49.119109962000081 ], [ -122.844988983999954, 49.119110536000044 ], [ -122.839866498999967, 49.119125024000077 ], [ -122.839869315999948, 49.119023272000071 ], [ -122.839244395999984, 49.119025646000033 ], [ -122.83531081699999, 49.119040504000083 ], [ -122.83451600399998, 49.119043483000041 ], [ -122.83433, 49.119044191000029 ], [ -122.834313149999943, 49.118871890000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "736381311", "BldgCostT": "488813190", "sL_LossRatio": "0.818253938816974", "sL_AssetLoss": "4852980", "sL_BldgLoss": "3970970", "sL_StrLoss": "2422280", "sL_NStrLoss": "1548690", "sL_ContLoss": "882010", "geom_point": "0101000020E6100000059A4310AFB45EC01FCC05B2C78E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81222357199999, 49.119082290000044 ], [ -122.812238116999978, 49.116910166000018 ], [ -122.81223989199999, 49.116721339000101 ], [ -122.812252206999986, 49.115424648000079 ], [ -122.812251583999924, 49.114813683000129 ], [ -122.81225751, 49.113687455000033 ], [ -122.81226106299999, 49.112775647000056 ], [ -122.812263932999954, 49.111793513000094 ], [ -122.815017581999939, 49.111780496000073 ], [ -122.817755296999962, 49.111802101000109 ], [ -122.820555525000017, 49.111809243000017 ], [ -122.823342167999897, 49.111815003000075 ], [ -122.828846975999923, 49.111826116000024 ], [ -122.831498682999964, 49.111838659000057 ], [ -122.834380876999944, 49.111852225000042 ], [ -122.834350405999913, 49.113709391000036 ], [ -122.83434491699991, 49.114531076000048 ], [ -122.83434161299999, 49.11502937100007 ], [ -122.834338782999936, 49.115450904000113 ], [ -122.834328121999974, 49.117465587000105 ], [ -122.833402491999934, 49.117438334000042 ], [ -122.833396990999958, 49.117519188000081 ], [ -122.832868782999981, 49.117503632000108 ], [ -122.832829335, 49.118083320000032 ], [ -122.83288157199999, 49.118083396000017 ], [ -122.832880665999966, 49.118353258000035 ], [ -122.834323414, 49.118355338000057 ], [ -122.83432124799999, 49.118764586000047 ], [ -122.834313149999943, 49.118871890000065 ], [ -122.83433, 49.119044191000029 ], [ -122.834329996999941, 49.119145106000076 ], [ -122.828817858000022, 49.11914849700004 ], [ -122.823274476999984, 49.119167834000052 ], [ -122.817727804999905, 49.119175025000082 ], [ -122.812220963999934, 49.119180427000103 ], [ -122.81222357199999, 49.119082290000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "405235418", "BldgCostT": "252126668", "sL_LossRatio": "0.775428922632462", "sL_AssetLoss": "2303912", "sL_BldgLoss": "1786520", "sL_StrLoss": "1044390", "sL_NStrLoss": "742130", "sL_ContLoss": "517392", "geom_point": "0101000020E6100000EA46C4390FB45EC07827B771348D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817749304999921, 49.108985045000104 ], [ -122.817759866999964, 49.108168940000063 ], [ -122.8158022759999, 49.108158731000032 ], [ -122.815834772999935, 49.106542202000078 ], [ -122.814141986999914, 49.106505554000101 ], [ -122.812291835999957, 49.106486773000043 ], [ -122.812292344999932, 49.106329474000077 ], [ -122.812297865999952, 49.104558534000013 ], [ -122.806164869999961, 49.10451436600006 ], [ -122.803776704999933, 49.104494754000086 ], [ -122.80109227699991, 49.104502309000111 ], [ -122.80096907599993, 49.104501352000113 ], [ -122.80097153299999, 49.104366271000067 ], [ -122.80100275199996, 49.10207832200004 ], [ -122.80106042599999, 49.101976406000141 ], [ -122.801060879999923, 49.101690759000036 ], [ -122.801078701999984, 49.099995955000061 ], [ -122.801093614999928, 49.098574688000099 ], [ -122.801096684999933, 49.098280085000098 ], [ -122.804385277999955, 49.098096601000044 ], [ -122.807806592999967, 49.097905604000076 ], [ -122.812175446999959, 49.097640968000078 ], [ -122.812397624999974, 49.097627503000112 ], [ -122.812426363999947, 49.09762574800007 ], [ -122.815405383000027, 49.097445205000085 ], [ -122.817651987999923, 49.097287390000133 ], [ -122.8181607, 49.097255576000116 ], [ -122.818247490999937, 49.098029516000054 ], [ -122.818510845, 49.098779687000047 ], [ -122.81852371599993, 49.098816271000018 ], [ -122.8185767639999, 49.098901490000081 ], [ -122.818561937999931, 49.098901466000029 ], [ -122.818561842999912, 49.098927364000112 ], [ -122.81859345299992, 49.098928300000082 ], [ -122.818771355999957, 49.099214096 ], [ -122.819013523999928, 49.099603035000044 ], [ -122.819526925, 49.100144490000062 ], [ -122.819964483999968, 49.100514257000015 ], [ -122.82059334899995, 49.100929362000059 ], [ -122.821281483999911, 49.101278634000046 ], [ -122.82127008799992, 49.101706331000038 ], [ -122.821538526999916, 49.102754579000127 ], [ -122.821573846999939, 49.102892491000063 ], [ -122.821717690999975, 49.103454187000068 ], [ -122.821860812999915, 49.103924311000064 ], [ -122.822281080999986, 49.104486863000034 ], [ -122.822359297999967, 49.104591557000042 ], [ -122.823441535999962, 49.104599132000089 ], [ -122.823436347999944, 49.106360670000136 ], [ -122.823426865999963, 49.10820585800009 ], [ -122.823342167999897, 49.111815003000075 ], [ -122.820555525000017, 49.111809243000017 ], [ -122.817755296999962, 49.111802101000109 ], [ -122.817763547999959, 49.110939975000086 ], [ -122.817749304999921, 49.108985045000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176752583", "BldgCostT": "114563333", "sL_LossRatio": "0.685242503407542", "sL_AssetLoss": "3521600", "sL_BldgLoss": "2413150", "sL_StrLoss": "1040320", "sL_NStrLoss": "1372830", "sL_ContLoss": "1108450", "geom_point": "0101000020E610000055C465ECF6B25EC0ECD32AFAC38D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.798791409999964, 49.111277901000086 ], [ -122.798130789, 49.111186092 ], [ -122.797341786999979, 49.111167091 ], [ -122.79602440299999, 49.111145905000065 ], [ -122.794427413, 49.111108200000068 ], [ -122.794056511999926, 49.110985403000107 ], [ -122.79364671699993, 49.110730803000102 ], [ -122.792815283999957, 49.110214899000027 ], [ -122.79300192, 49.110051909000077 ], [ -122.793082292999912, 49.109942563000068 ], [ -122.793143893999982, 49.109858801000087 ], [ -122.7936126099999, 49.108521980000084 ], [ -122.793941709999956, 49.107581088000074 ], [ -122.791958897999976, 49.107281391000058 ], [ -122.791670497999931, 49.107292594000114 ], [ -122.790979571999955, 49.107382796000103 ], [ -122.789882477999981, 49.107365395000052 ], [ -122.789930747999975, 49.104440849000106 ], [ -122.795012109999931, 49.104456809000034 ], [ -122.795039534999958, 49.10445688500004 ], [ -122.797018402999925, 49.104463032000098 ], [ -122.80096907599993, 49.104501352000113 ], [ -122.800961982999965, 49.105164890000026 ], [ -122.800954463999986, 49.105869747000085 ], [ -122.800961324999946, 49.106202978000034 ], [ -122.800989763999937, 49.107588331000109 ], [ -122.800968032999947, 49.108325366000038 ], [ -122.800964063, 49.108460770000136 ], [ -122.800954843999961, 49.108594767000071 ], [ -122.800948126000023, 49.109287930000058 ], [ -122.800943342999929, 49.109781242000047 ], [ -122.800942051999968, 49.109916559000105 ], [ -122.800938202999987, 49.110313374000086 ], [ -122.800937446999953, 49.110394313000029 ], [ -122.800924584, 49.111725266000114 ], [ -122.800637105999911, 49.111722995000093 ], [ -122.800242257999969, 49.11167725500011 ], [ -122.799998473999963, 49.11164900200005 ], [ -122.799594078, 49.111554996000145 ], [ -122.798791409999964, 49.111277901000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112111834", "BldgCostT": "74373334", "sL_LossRatio": "0.708499270659999", "sL_AssetLoss": "2337730", "sL_BldgLoss": "1656280", "sL_StrLoss": "703820", "sL_NStrLoss": "952460", "sL_ContLoss": "681450", "geom_point": "0101000020E61000002F77B00FBCB25EC0F968D4F06B8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.791765153999961, 49.118871234000082 ], [ -122.791766472999939, 49.11855628700004 ], [ -122.791786862999956, 49.118556325000029 ], [ -122.791908096999975, 49.116797610000091 ], [ -122.789850474999923, 49.116736203000087 ], [ -122.78731428599994, 49.116660459000109 ], [ -122.787562568999959, 49.113063379000046 ], [ -122.787564775999982, 49.113063445000101 ], [ -122.787608651999946, 49.11242772500006 ], [ -122.786317610999959, 49.112389145000037 ], [ -122.786441090999986, 49.1106006260001 ], [ -122.785772300999952, 49.110580635000098 ], [ -122.785935535999897, 49.108216585000086 ], [ -122.784668906999983, 49.108178711000029 ], [ -122.784831750999942, 49.105821017000011 ], [ -122.784698052999914, 49.105817019000035 ], [ -122.784790102999978, 49.104484253000045 ], [ -122.788096547999928, 49.104456368000037 ], [ -122.789930747999975, 49.104440849000106 ], [ -122.789882477999981, 49.107365395000052 ], [ -122.790979571999955, 49.107382796000103 ], [ -122.791670497999931, 49.107292594000114 ], [ -122.791958897999976, 49.107281391000058 ], [ -122.793941709999956, 49.107581088000074 ], [ -122.7936126099999, 49.108521980000084 ], [ -122.793143893999982, 49.109858801000087 ], [ -122.793082292999912, 49.109942563000068 ], [ -122.79300192, 49.110051909000077 ], [ -122.792815283999957, 49.110214899000027 ], [ -122.79364671699993, 49.110730803000102 ], [ -122.794056511999926, 49.110985403000107 ], [ -122.794427413, 49.111108200000068 ], [ -122.79602440299999, 49.111145905000065 ], [ -122.797341786999979, 49.111167091 ], [ -122.798130789, 49.111186092 ], [ -122.798791409999964, 49.111277901000086 ], [ -122.799594078, 49.111554996000145 ], [ -122.799998473999963, 49.11164900200005 ], [ -122.800242257999969, 49.11167725500011 ], [ -122.800637105999911, 49.111722995000093 ], [ -122.800924584, 49.111725266000114 ], [ -122.80096943099997, 49.114559724000081 ], [ -122.800968482999949, 49.115377746000036 ], [ -122.800967737999954, 49.116070421000103 ], [ -122.800967080999953, 49.116646626000076 ], [ -122.800958107999975, 49.118677752000075 ], [ -122.800958021, 49.118693482000076 ], [ -122.800957354, 49.118850480000091 ], [ -122.800956555999974, 49.119031567000086 ], [ -122.800958624999978, 49.11910100500009 ], [ -122.798240704999927, 49.119045350000114 ], [ -122.798065779999916, 49.118999581000068 ], [ -122.796665421999947, 49.118984577000063 ], [ -122.791760973999914, 49.118931867000114 ], [ -122.791765153999961, 49.118871234000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.717391304347826", "sL_AssetLoss": "55200", "sL_BldgLoss": "39600", "sL_StrLoss": "15200", "sL_NStrLoss": "24400", "sL_ContLoss": "15600", "geom_point": "0101000020E61000001D3FAFD3E3B15EC0CA7485CA818D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77906811299999, 49.104532271000046 ], [ -122.780010475999973, 49.104524384000065 ], [ -122.779864420999942, 49.106635919000112 ], [ -122.77917268499999, 49.106615196000043 ], [ -122.77906811299999, 49.104532271000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206085084", "BldgCostT": "133343334", "sL_LossRatio": "0.727810435467559", "sL_AssetLoss": "2115037", "sL_BldgLoss": "1539346", "sL_StrLoss": "760276", "sL_NStrLoss": "779070", "sL_ContLoss": "575691", "geom_point": "0101000020E61000006AFE2D3B23B05EC0214AFFBBD38E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.75596683399999, 49.111545170000056 ], [ -122.756651635, 49.111545100000065 ], [ -122.756649981999928, 49.111686539000075 ], [ -122.75659663099999, 49.111764224000069 ], [ -122.756556495999959, 49.113362560000049 ], [ -122.756538386, 49.115587831000035 ], [ -122.756538369999973, 49.116472742000049 ], [ -122.756535207999974, 49.116695180000107 ], [ -122.756504486000011, 49.118865151000094 ], [ -122.756499525999971, 49.118956007000094 ], [ -122.751181513999938, 49.118902704000021 ], [ -122.748271492999947, 49.118870626000025 ], [ -122.745974184999923, 49.118872337000028 ], [ -122.745975242999961, 49.118818296000029 ], [ -122.74598373699996, 49.118373283000054 ], [ -122.746002563999966, 49.117388994000059 ], [ -122.746017711999968, 49.116427891000086 ], [ -122.746011391999929, 49.115636501000118 ], [ -122.746008002999972, 49.115156990000081 ], [ -122.747302301000033, 49.115157390000057 ], [ -122.748610095999979, 49.115161787000019 ], [ -122.749376039999959, 49.115166699000035 ], [ -122.751255195999946, 49.115178704000094 ], [ -122.751327419999953, 49.11322179900008 ], [ -122.751365718999935, 49.111534198000093 ], [ -122.754053449, 49.11154598400001 ], [ -122.754792639999934, 49.111545684000085 ], [ -122.75596683399999, 49.111545170000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161094584", "BldgCostT": "105943334", "sL_LossRatio": "0.73241605074039", "sL_AssetLoss": "1955050", "sL_BldgLoss": "1431910", "sL_StrLoss": "696300", "sL_NStrLoss": "735610", "sL_ContLoss": "523140", "geom_point": "0101000020E61000000F7461623BB05EC0C193275A038E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.748757997999931, 49.111534698000121 ], [ -122.748787802999971, 49.110363205000127 ], [ -122.749820004999933, 49.110624200000096 ], [ -122.750258700999922, 49.110676206000107 ], [ -122.751338693999955, 49.110704304000087 ], [ -122.751337978999914, 49.109793199000102 ], [ -122.751340897999981, 49.108750704000052 ], [ -122.751338333999968, 49.108454097000063 ], [ -122.75132822199997, 49.107284098000015 ], [ -122.751346794999975, 49.10728286500008 ], [ -122.752647506999907, 49.107197803000105 ], [ -122.75282989899992, 49.107125309000075 ], [ -122.753144704999912, 49.107000193000026 ], [ -122.753572562999963, 49.106834832000111 ], [ -122.753676688999946, 49.106794598000121 ], [ -122.754231191999949, 49.106777096000023 ], [ -122.754644588999938, 49.106897704000097 ], [ -122.754681814, 49.106920608000031 ], [ -122.754929619000038, 49.10707299000012 ], [ -122.75514442, 49.107291297000089 ], [ -122.755631194999964, 49.107223005000023 ], [ -122.756647422999947, 49.107241983000037 ], [ -122.756648693999935, 49.108549190000048 ], [ -122.756651448, 49.109444513000057 ], [ -122.756651635, 49.111545100000065 ], [ -122.75596683399999, 49.111545170000056 ], [ -122.754792639999934, 49.111545684000085 ], [ -122.754053449, 49.11154598400001 ], [ -122.751365718999935, 49.111534198000093 ], [ -122.749517210999926, 49.111534564000081 ], [ -122.748757997999931, 49.111534698000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114146167", "BldgCostT": "76356667", "sL_LossRatio": "0.756861070950766", "sL_AssetLoss": "1260226", "sL_BldgLoss": "953816", "sL_StrLoss": "441376", "sL_NStrLoss": "512440", "sL_ContLoss": "306410", "geom_point": "0101000020E6100000F66EDA29E9AF5EC061881886FA8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.746032188999919, 49.110597904000052 ], [ -122.74604855199999, 49.109742880000105 ], [ -122.746084883999941, 49.107845607000115 ], [ -122.747353993, 49.107852503000096 ], [ -122.747374485999927, 49.106969893000063 ], [ -122.747399611999953, 49.106944596000083 ], [ -122.74792079599996, 49.106957592000107 ], [ -122.748253996999907, 49.106965903000074 ], [ -122.748790190999941, 49.106994707000084 ], [ -122.749016875, 49.10703311500005 ], [ -122.749185395999959, 49.107061713000043 ], [ -122.750071514999945, 49.107276799000033 ], [ -122.75132822199997, 49.107284098000015 ], [ -122.751338333999968, 49.108454097000063 ], [ -122.751340897999981, 49.108750704000052 ], [ -122.751337978999914, 49.109793199000102 ], [ -122.751338693999955, 49.110704304000087 ], [ -122.750258700999922, 49.110676206000107 ], [ -122.749820004999933, 49.110624200000096 ], [ -122.748787802999971, 49.110363205000127 ], [ -122.748757997999931, 49.111534698000121 ], [ -122.747808994999957, 49.111532100000069 ], [ -122.746012792999949, 49.111522796000017 ], [ -122.746032188999919, 49.110597904000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117710500", "BldgCostT": "79555000", "sL_LossRatio": "0.765640813457972", "sL_AssetLoss": "1186687", "sL_BldgLoss": "908576", "sL_StrLoss": "437396", "sL_NStrLoss": "471180", "sL_ContLoss": "278111", "geom_point": "0101000020E610000065AF2DF2E1AF5EC0115E69B67E8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.746017315999964, 49.114729310000016 ], [ -122.745975309999892, 49.113822303000063 ], [ -122.744595190999974, 49.113814802000057 ], [ -122.744518092999954, 49.111528009000104 ], [ -122.746012792999949, 49.111522796000017 ], [ -122.747808994999957, 49.111532100000069 ], [ -122.748757997999931, 49.111534698000121 ], [ -122.749517210999926, 49.111534564000081 ], [ -122.751365718999935, 49.111534198000093 ], [ -122.751327419999953, 49.11322179900008 ], [ -122.751255195999946, 49.115178704000094 ], [ -122.749376039999959, 49.115166699000035 ], [ -122.748610095999979, 49.115161787000019 ], [ -122.747302301000033, 49.115157390000057 ], [ -122.746008002999972, 49.115156990000081 ], [ -122.746017315999964, 49.114729310000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178990084", "BldgCostT": "111738334", "sL_LossRatio": "0.713028074244804", "sL_AssetLoss": "2043510", "sL_BldgLoss": "1457080", "sL_StrLoss": "660350", "sL_NStrLoss": "796730", "sL_ContLoss": "586430", "geom_point": "0101000020E61000006E4F886766AF5EC0EF7022970B8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.737164860999968, 49.108087101000123 ], [ -122.737638456999932, 49.107777941000123 ], [ -122.73783749899999, 49.107575818000051 ], [ -122.737954722999973, 49.107670664000111 ], [ -122.738193903999928, 49.107864208000137 ], [ -122.738361422999944, 49.10781881000009 ], [ -122.738821776999941, 49.10781799500009 ], [ -122.740940535999925, 49.10781412100004 ], [ -122.742470903999944, 49.107824490000063 ], [ -122.742703708999969, 49.107825197000068 ], [ -122.743906805999984, 49.107834600000132 ], [ -122.744298287999982, 49.10783750300007 ], [ -122.746084883999941, 49.107845607000115 ], [ -122.74604855199999, 49.109742880000105 ], [ -122.746032188999919, 49.110597904000052 ], [ -122.746012792999949, 49.111522796000017 ], [ -122.744518092999954, 49.111528009000104 ], [ -122.741389507999898, 49.111514381000099 ], [ -122.740489591999975, 49.111515896000071 ], [ -122.737186582999968, 49.111508603000075 ], [ -122.736554560999934, 49.111504702000104 ], [ -122.735697100999971, 49.111499406000057 ], [ -122.734953729999987, 49.111494849000096 ], [ -122.73477301299999, 49.111493866000067 ], [ -122.73478215699997, 49.110507524000099 ], [ -122.734787188999974, 49.109964131000027 ], [ -122.734857861999927, 49.109697938000075 ], [ -122.734856817999983, 49.109697079000043 ], [ -122.734855067999959, 49.109692919000054 ], [ -122.734859193999924, 49.109689456000069 ], [ -122.734932800999985, 49.109216058000051 ], [ -122.734924924999959, 49.108849938000077 ], [ -122.734921553, 49.108693065000125 ], [ -122.735586185999978, 49.108686222000095 ], [ -122.73567762099999, 49.10865293600007 ], [ -122.736706636999941, 49.108293970000091 ], [ -122.736798537999974, 49.108252620000094 ], [ -122.737164860999968, 49.108087101000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110551917", "BldgCostT": "71351667", "sL_LossRatio": "0.741522856953868", "sL_AssetLoss": "1148972", "sL_BldgLoss": "851989", "sL_StrLoss": "404189", "sL_NStrLoss": "447800", "sL_ContLoss": "296983", "geom_point": "0101000020E6100000AF2657CA55AF5EC00214F25A6C8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.741389507999898, 49.111514381000099 ], [ -122.744518092999954, 49.111528009000104 ], [ -122.744595190999974, 49.113814802000057 ], [ -122.743267187999962, 49.1138060870001 ], [ -122.741606382999962, 49.113797293000104 ], [ -122.739557449999936, 49.113785384000103 ], [ -122.737266303999931, 49.113772008000048 ], [ -122.736542605999929, 49.113766711000039 ], [ -122.735857584999906, 49.113761674000095 ], [ -122.734970526999973, 49.113754574000019 ], [ -122.734989502999895, 49.114795207000022 ], [ -122.73500638199998, 49.11572286800007 ], [ -122.734828381999989, 49.115721984000039 ], [ -122.734803654999922, 49.113832160000079 ], [ -122.73477301299999, 49.111493866000067 ], [ -122.734953729999987, 49.111494849000096 ], [ -122.735697100999971, 49.111499406000057 ], [ -122.736554560999934, 49.111504702000104 ], [ -122.737186582999968, 49.111508603000075 ], [ -122.740489591999975, 49.111515896000071 ], [ -122.741389507999898, 49.111514381000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206603311", "BldgCostT": "135993190", "sL_LossRatio": "0.750056592882125", "sL_AssetLoss": "2120408", "sL_BldgLoss": "1590426", "sL_StrLoss": "728626", "sL_NStrLoss": "861800", "sL_ContLoss": "529982", "geom_point": "0101000020E6100000FD6462463AAF5EC041E6142EF58E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734854876999975, 49.116535609000032 ], [ -122.734828381999989, 49.115721984000039 ], [ -122.73500638199998, 49.11572286800007 ], [ -122.734989502999895, 49.114795207000022 ], [ -122.734970526999973, 49.113754574000019 ], [ -122.735857584999906, 49.113761674000095 ], [ -122.736542605999929, 49.113766711000039 ], [ -122.737266303999931, 49.113772008000048 ], [ -122.737293901999948, 49.114609088000115 ], [ -122.738543774999968, 49.114617309000089 ], [ -122.73852469499991, 49.116238810000027 ], [ -122.739136290999951, 49.116502402000037 ], [ -122.742334084999953, 49.116511910000064 ], [ -122.742319325999972, 49.117896565000066 ], [ -122.742322230999946, 49.118374260000024 ], [ -122.74232478099999, 49.118796980000042 ], [ -122.742325143999949, 49.118850150000092 ], [ -122.739289332999959, 49.118834741000079 ], [ -122.738004957000015, 49.118827331000062 ], [ -122.735045062999944, 49.118803292000116 ], [ -122.734862949, 49.118802259000077 ], [ -122.734861853999959, 49.118720230000065 ], [ -122.734854876999975, 49.116535609000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126153394", "BldgCostT": "81486523", "sL_LossRatio": "0.741830555426801", "sL_AssetLoss": "1467052", "sL_BldgLoss": "1088304", "sL_StrLoss": "493464", "sL_NStrLoss": "594840", "sL_ContLoss": "378748", "geom_point": "0101000020E6100000CEEDEBE187AF5EC04032FC2BD48E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.742319325999972, 49.117896565000066 ], [ -122.742334084999953, 49.116511910000064 ], [ -122.739136290999951, 49.116502402000037 ], [ -122.73852469499991, 49.116238810000027 ], [ -122.738543774999968, 49.114617309000089 ], [ -122.737293901999948, 49.114609088000115 ], [ -122.737266303999931, 49.113772008000048 ], [ -122.739557449999936, 49.113785384000103 ], [ -122.741606382999962, 49.113797293000104 ], [ -122.743267187999962, 49.1138060870001 ], [ -122.744595190999974, 49.113814802000057 ], [ -122.745975309999892, 49.113822303000063 ], [ -122.746017315999964, 49.114729310000016 ], [ -122.746008002999972, 49.115156990000081 ], [ -122.746011391999929, 49.115636501000118 ], [ -122.746017711999968, 49.116427891000086 ], [ -122.746002563999966, 49.117388994000059 ], [ -122.74598373699996, 49.118373283000054 ], [ -122.745975242999961, 49.118818296000029 ], [ -122.745974184999923, 49.118872337000028 ], [ -122.742325143999949, 49.118850150000092 ], [ -122.74232478099999, 49.118796980000042 ], [ -122.742322230999946, 49.118374260000024 ], [ -122.742319325999972, 49.117896565000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "286069917", "BldgCostT": "188981667", "sL_LossRatio": "0.702970297029703", "sL_AssetLoss": "4927790", "sL_BldgLoss": "3464090", "sL_StrLoss": "1572830", "sL_NStrLoss": "1891260", "sL_ContLoss": "1463700", "geom_point": "0101000020E61000000FF3061401AE5EC05ECD19D5928F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.713676293999967, 49.121101782000089 ], [ -122.71427931399991, 49.121000396000106 ], [ -122.714629884999979, 49.121002097000037 ], [ -122.7150132, 49.121045406000114 ], [ -122.715186664999933, 49.120571863000073 ], [ -122.715194709999963, 49.120549905000097 ], [ -122.715373791, 49.120303008000043 ], [ -122.715505787999945, 49.120183151000099 ], [ -122.715624394000017, 49.120075507000045 ], [ -122.715647497999925, 49.120054499000091 ], [ -122.71571858499999, 49.119746698000093 ], [ -122.716893795999923, 49.119690689000024 ], [ -122.716906784999964, 49.119194491000044 ], [ -122.716898613999945, 49.118728392000087 ], [ -122.71716550499994, 49.118728925000077 ], [ -122.717617745, 49.118729809000094 ], [ -122.717768479999947, 49.118730107000019 ], [ -122.71842630299993, 49.118731400000094 ], [ -122.719029296999949, 49.118732599000033 ], [ -122.719659722999921, 49.118733831000078 ], [ -122.719898202999929, 49.1187343080001 ], [ -122.720386080000011, 49.118734414000116 ], [ -122.720632726999952, 49.118734473000067 ], [ -122.721578284999964, 49.118734663000069 ], [ -122.72376789599997, 49.118735084000036 ], [ -122.723758412999985, 49.120134300000117 ], [ -122.723754890999956, 49.120592909000123 ], [ -122.723814187999977, 49.120860594000099 ], [ -122.723980083999905, 49.12103319800007 ], [ -122.724266681999922, 49.121145590000054 ], [ -122.723873513999976, 49.122606096000062 ], [ -122.72374097, 49.12277509200009 ], [ -122.723744478999976, 49.123392329000083 ], [ -122.723744802999974, 49.123449891000099 ], [ -122.723748611999923, 49.124127085000076 ], [ -122.72216835499998, 49.124115954000068 ], [ -122.720941493999973, 49.124107308000099 ], [ -122.720355647999924, 49.12410469600011 ], [ -122.719656672000028, 49.124101613000072 ], [ -122.718798097, 49.124097800000108 ], [ -122.718409462999929, 49.12409593600006 ], [ -122.717217224999928, 49.124090172000109 ], [ -122.716869816999989, 49.124088481000037 ], [ -122.71685601199999, 49.124088434000036 ], [ -122.716792376999962, 49.124088188 ], [ -122.715822003999961, 49.124084434000025 ], [ -122.714801717999961, 49.124079427000012 ], [ -122.71258707600002, 49.124070308000064 ], [ -122.712583259999974, 49.122974990000117 ], [ -122.712576809999931, 49.121113302000062 ], [ -122.713676293999967, 49.121101782000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117614250", "BldgCostT": "74700000", "sL_LossRatio": "0.71191087640612", "sL_AssetLoss": "1382350", "sL_BldgLoss": "984110", "sL_StrLoss": "430580", "sL_NStrLoss": "553530", "sL_ContLoss": "398240", "geom_point": "0101000020E6100000AFB5835397AE5EC03529BB4FC48E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.719898202999929, 49.1187343080001 ], [ -122.719907708999955, 49.118339715000083 ], [ -122.719908028999939, 49.118326994000022 ], [ -122.719908566999948, 49.118303740000066 ], [ -122.719919574999921, 49.117847294000022 ], [ -122.719949593999942, 49.115050098000069 ], [ -122.71996208399996, 49.114192609000071 ], [ -122.721879991999941, 49.114188911000092 ], [ -122.72378949899999, 49.114205689000109 ], [ -122.723795299999964, 49.111457292000054 ], [ -122.72620935499999, 49.111464925000064 ], [ -122.726880786999914, 49.111467048000051 ], [ -122.726899598999978, 49.11146710400002 ], [ -122.727730353999945, 49.111467280000078 ], [ -122.730296172999942, 49.111467756000103 ], [ -122.733713428999977, 49.111467086000069 ], [ -122.73477301299999, 49.111493866000067 ], [ -122.734803654999922, 49.113832160000079 ], [ -122.734828381999989, 49.115721984000039 ], [ -122.734854876999975, 49.116535609000032 ], [ -122.734861853999959, 49.118720230000065 ], [ -122.734862949, 49.118802259000077 ], [ -122.733411196999924, 49.118798708000071 ], [ -122.732451377, 49.118811907000044 ], [ -122.731121318999939, 49.118830968000069 ], [ -122.730969643999941, 49.118786704000108 ], [ -122.73081621399993, 49.118786546000088 ], [ -122.727732676999963, 49.118747722000101 ], [ -122.726020685999956, 49.118743405000032 ], [ -122.724853779999975, 49.118739105000053 ], [ -122.72376789599997, 49.118735084000036 ], [ -122.721578284999964, 49.118734663000069 ], [ -122.720632726999952, 49.118734473000067 ], [ -122.720386080000011, 49.118734414000116 ], [ -122.719898202999929, 49.1187343080001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111370916", "BldgCostT": "71711666", "sL_LossRatio": "0.697848190841543", "sL_AssetLoss": "2147960", "sL_BldgLoss": "1498950", "sL_StrLoss": "609530", "sL_NStrLoss": "889420", "sL_ContLoss": "649010", "geom_point": "0101000020E6100000F1105343D7AD5EC06F2BAC0AC38E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.715702789999966, 49.116553396000079 ], [ -122.714834100999965, 49.115723004000102 ], [ -122.71404229699999, 49.114958846 ], [ -122.713368394999961, 49.114308499000103 ], [ -122.713093413999971, 49.114187408000049 ], [ -122.712615597999985, 49.114163787000081 ], [ -122.712618127999946, 49.113626611000022 ], [ -122.712621088000034, 49.112996959000057 ], [ -122.712623272999977, 49.112538200000095 ], [ -122.71262368, 49.112448231000059 ], [ -122.712625869999968, 49.111980494000122 ], [ -122.71262851099999, 49.111421901000064 ], [ -122.713819187999931, 49.111415091 ], [ -122.716343108, 49.111420087000084 ], [ -122.71632741199997, 49.111991900000113 ], [ -122.716307894999929, 49.112501294000054 ], [ -122.716269486999977, 49.113336399000019 ], [ -122.71636379, 49.113746715000076 ], [ -122.71655871699997, 49.114052699000069 ], [ -122.717810386999986, 49.115279495000046 ], [ -122.718273697, 49.115080101000061 ], [ -122.718542024999962, 49.11504319700002 ], [ -122.718755594999891, 49.115045313000081 ], [ -122.719949593999942, 49.115050098000069 ], [ -122.719919574999921, 49.117847294000022 ], [ -122.719908566999948, 49.118303740000066 ], [ -122.719908028999939, 49.118326994000022 ], [ -122.719907708999955, 49.118339715000083 ], [ -122.719898202999929, 49.1187343080001 ], [ -122.719659722999921, 49.118733831000078 ], [ -122.719029296999949, 49.118732599000033 ], [ -122.71842630299993, 49.118731400000094 ], [ -122.717768479999947, 49.118730107000019 ], [ -122.717617745, 49.118729809000094 ], [ -122.71716550499994, 49.118728925000077 ], [ -122.716898613999945, 49.118728392000087 ], [ -122.71683648199992, 49.118728356000112 ], [ -122.714338506000018, 49.118726797000058 ], [ -122.714338465999944, 49.118308506000076 ], [ -122.714338412999965, 49.117564306000112 ], [ -122.715621495999926, 49.117570197000099 ], [ -122.7163814, 49.117575292000012 ], [ -122.716626696999953, 49.117456707000024 ], [ -122.715702789999966, 49.116553396000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125421584", "BldgCostT": "82168334", "sL_LossRatio": "0.739108222661769", "sL_AssetLoss": "1327125", "sL_BldgLoss": "980889", "sL_StrLoss": "457409", "sL_NStrLoss": "523480", "sL_ContLoss": "346236", "geom_point": "0101000020E61000003F584ABF12AE5EC03B5D92DA768E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.722307001999951, 49.111430892000044 ], [ -122.723795299999964, 49.111457292000054 ], [ -122.72378949899999, 49.114205689000109 ], [ -122.721879991999941, 49.114188911000092 ], [ -122.71996208399996, 49.114192609000071 ], [ -122.719949593999942, 49.115050098000069 ], [ -122.718755594999891, 49.115045313000081 ], [ -122.718542024999962, 49.11504319700002 ], [ -122.718273697, 49.115080101000061 ], [ -122.717810386999986, 49.115279495000046 ], [ -122.71655871699997, 49.114052699000069 ], [ -122.71636379, 49.113746715000076 ], [ -122.716269486999977, 49.113336399000019 ], [ -122.716307894999929, 49.112501294000054 ], [ -122.71632741199997, 49.111991900000113 ], [ -122.716343108, 49.111420087000084 ], [ -122.718256698999937, 49.111416312000095 ], [ -122.71998570199996, 49.111428604000039 ], [ -122.720851922999955, 49.111429466000047 ], [ -122.721161089999967, 49.111429784000023 ], [ -122.722307001999951, 49.111430892000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59008999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124143083", "BldgCostT": "79778333", "sL_LossRatio": "0.750136171934575", "sL_AssetLoss": "1156626", "sL_BldgLoss": "867627", "sL_StrLoss": "417037", "sL_NStrLoss": "450590", "sL_ContLoss": "288999", "geom_point": "0101000020E6100000012EC89625AE5EC07A94E74D078E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.719844831999922, 49.107760961000061 ], [ -122.723840894999938, 49.107773783000027 ], [ -122.723814087999955, 49.108758003000055 ], [ -122.723812308999953, 49.109600495000038 ], [ -122.723804940999955, 49.110406543000082 ], [ -122.723796959999945, 49.111277364000067 ], [ -122.723795299999964, 49.111457292000054 ], [ -122.722307001999951, 49.111430892000044 ], [ -122.721161089999967, 49.111429784000023 ], [ -122.720851922999955, 49.111429466000047 ], [ -122.71998570199996, 49.111428604000039 ], [ -122.718256698999937, 49.111416312000095 ], [ -122.718265091999967, 49.110423482000101 ], [ -122.718274109999982, 49.109518091000069 ], [ -122.718277303999969, 49.109104609000084 ], [ -122.718280953999937, 49.108720023000032 ], [ -122.718285413999965, 49.108251396000114 ], [ -122.718286110999955, 49.108180325000049 ], [ -122.718290208999974, 49.107755898000029 ], [ -122.719844831999922, 49.107760961000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99470040", "BldgCostT": "66390373", "sL_LossRatio": "0.726726122622321", "sL_AssetLoss": "1789560", "sL_BldgLoss": "1300520", "sL_StrLoss": "556870", "sL_NStrLoss": "743650", "sL_ContLoss": "489040", "geom_point": "0101000020E6100000408F281F88AE5EC0B2CF7C31088E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.728846597999976, 49.107782399000079 ], [ -122.730297396999916, 49.10778470500005 ], [ -122.730310415999966, 49.108672790000121 ], [ -122.730307664999927, 49.109225542000082 ], [ -122.730305675999915, 49.109616188000103 ], [ -122.730298784999931, 49.110044097000099 ], [ -122.730291403999971, 49.110502481000054 ], [ -122.730293663999959, 49.110961569000068 ], [ -122.730296172999942, 49.111467756000103 ], [ -122.727730353999945, 49.111467280000078 ], [ -122.726899598999978, 49.11146710400002 ], [ -122.726880786999914, 49.111467048000051 ], [ -122.72620935499999, 49.111464925000064 ], [ -122.723795299999964, 49.111457292000054 ], [ -122.723796959999945, 49.111277364000067 ], [ -122.723804940999955, 49.110406543000082 ], [ -122.723812308999953, 49.109600495000038 ], [ -122.723814087999955, 49.108758003000055 ], [ -122.723840894999938, 49.107773783000027 ], [ -122.725354291999963, 49.107792009000072 ], [ -122.726891805999955, 49.10777928699999 ], [ -122.727599800999926, 49.107780441000052 ], [ -122.728846597999976, 49.107782399000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217790697", "BldgCostT": "135508914", "sL_LossRatio": "0.739254230744482", "sL_AssetLoss": "3108200", "sL_BldgLoss": "2297750", "sL_StrLoss": "965650", "sL_NStrLoss": "1332100", "sL_ContLoss": "810450", "geom_point": "0101000020E61000008EE06F4988AE5EC07C074F53918D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.729582587999957, 49.104216896000061 ], [ -122.73030528000001, 49.104221693000099 ], [ -122.730307010999951, 49.104367561000068 ], [ -122.730314976999964, 49.105058297000099 ], [ -122.730310203, 49.106004396000102 ], [ -122.730296589, 49.106880804000056 ], [ -122.730297396999916, 49.10778470500005 ], [ -122.728846597999976, 49.107782399000079 ], [ -122.727599800999926, 49.107780441000052 ], [ -122.726891805999955, 49.10777928699999 ], [ -122.725354291999963, 49.107792009000072 ], [ -122.723840894999938, 49.107773783000027 ], [ -122.723841880999956, 49.106903304000106 ], [ -122.723829970999986, 49.106430736000029 ], [ -122.723819091999971, 49.10600139500005 ], [ -122.723834104, 49.105068306000135 ], [ -122.723838084999926, 49.104271725000103 ], [ -122.723838393, 49.104210491000046 ], [ -122.729582587999957, 49.104216896000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "773115171", "BldgCostT": "470513619", "sL_LossRatio": "0.653502314164816", "sL_AssetLoss": "17375383", "sL_BldgLoss": "11354853", "sL_StrLoss": "4565753", "sL_NStrLoss": "6789100", "sL_ContLoss": "6020530", "geom_point": "0101000020E610000075FC47AEB4AE5EC0B3383885538D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.730307010999951, 49.104367561000068 ], [ -122.73030528000001, 49.104221693000099 ], [ -122.729582587999957, 49.104216896000061 ], [ -122.723838393, 49.104210491000046 ], [ -122.723839263999977, 49.104163789000033 ], [ -122.72384079699998, 49.104079004000063 ], [ -122.723861853999949, 49.10228088000013 ], [ -122.723870604999959, 49.101903553000106 ], [ -122.723873439999934, 49.101590946000016 ], [ -122.723878272999968, 49.1012693650001 ], [ -122.723895431999964, 49.099999081000107 ], [ -122.723901011999914, 49.099584797000048 ], [ -122.723877157999965, 49.099267222000037 ], [ -122.726478186999941, 49.100158027000063 ], [ -122.727526418999958, 49.100629001000129 ], [ -122.730719807999932, 49.102063636000054 ], [ -122.731306133999979, 49.102327032000112 ], [ -122.731381375999902, 49.102346831000084 ], [ -122.733461188, 49.103036271000114 ], [ -122.734212128999971, 49.103592616000071 ], [ -122.734964865999984, 49.104111934000066 ], [ -122.734961373, 49.104219983000064 ], [ -122.734949293999961, 49.105075694000035 ], [ -122.734950104999911, 49.105981398000111 ], [ -122.734938687999943, 49.10776539200004 ], [ -122.734921553, 49.108693065000125 ], [ -122.733699893, 49.108693803000044 ], [ -122.732774091999943, 49.108688074000057 ], [ -122.730310415999966, 49.108672790000121 ], [ -122.730297396999916, 49.10778470500005 ], [ -122.730296589, 49.106880804000056 ], [ -122.730310203, 49.106004396000102 ], [ -122.730314976999964, 49.105058297000099 ], [ -122.730307010999951, 49.104367561000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "402802197", "BldgCostT": "273365269", "sL_LossRatio": "0.825697533547271", "sL_AssetLoss": "4325240", "sL_BldgLoss": "3571340", "sL_StrLoss": "1633100", "sL_NStrLoss": "1938240", "sL_ContLoss": "753900", "geom_point": "0101000020E610000096289C59E2AE5EC0328032BE168E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.733699893, 49.108693803000044 ], [ -122.734921553, 49.108693065000125 ], [ -122.734924924999959, 49.108849938000077 ], [ -122.734932800999985, 49.109216058000051 ], [ -122.734859193999924, 49.109689456000069 ], [ -122.734855067999959, 49.109692919000054 ], [ -122.734856817999983, 49.109697079000043 ], [ -122.734857861999927, 49.109697938000075 ], [ -122.734787188999974, 49.109964131000027 ], [ -122.73478215699997, 49.110507524000099 ], [ -122.73477301299999, 49.111493866000067 ], [ -122.733713428999977, 49.111467086000069 ], [ -122.730296172999942, 49.111467756000103 ], [ -122.730293663999959, 49.110961569000068 ], [ -122.730291403999971, 49.110502481000054 ], [ -122.730298784999931, 49.110044097000099 ], [ -122.730305675999915, 49.109616188000103 ], [ -122.730307664999927, 49.109225542000082 ], [ -122.730310415999966, 49.108672790000121 ], [ -122.732774091999943, 49.108688074000057 ], [ -122.733699893, 49.108693803000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "574022966", "BldgCostT": "363625692", "sL_LossRatio": "0.685635888290991", "sL_AssetLoss": "7026470", "sL_BldgLoss": "4817600", "sL_StrLoss": "1856030", "sL_NStrLoss": "2961570", "sL_ContLoss": "2208870", "geom_point": "0101000020E6100000BFC657D0AEAF5EC0BE6587F8878D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734938687999943, 49.10776539200004 ], [ -122.734950104999911, 49.105981398000111 ], [ -122.734949293999961, 49.105075694000035 ], [ -122.734961373, 49.104219983000064 ], [ -122.734964865999984, 49.104111934000066 ], [ -122.735409468999976, 49.103717310000015 ], [ -122.73778873099999, 49.103685146000075 ], [ -122.738083334999885, 49.104025722000117 ], [ -122.738191206999915, 49.104150418000124 ], [ -122.738323963999903, 49.104025350000036 ], [ -122.738403145999953, 49.103950768000075 ], [ -122.738501211999974, 49.103858432000074 ], [ -122.738825979999916, 49.10368249900003 ], [ -122.741430967, 49.103688565000077 ], [ -122.756127278999941, 49.103881061000038 ], [ -122.75649021, 49.104196706000089 ], [ -122.756657724999968, 49.104342377000052 ], [ -122.756655897999977, 49.104899250000145 ], [ -122.756654978999947, 49.105423668000114 ], [ -122.756651283999986, 49.106440078000098 ], [ -122.756647422999947, 49.107241983000037 ], [ -122.755631194999964, 49.107223005000023 ], [ -122.75514442, 49.107291297000089 ], [ -122.754929619000038, 49.10707299000012 ], [ -122.754681814, 49.106920608000031 ], [ -122.754644588999938, 49.106897704000097 ], [ -122.754231191999949, 49.106777096000023 ], [ -122.753676688999946, 49.106794598000121 ], [ -122.753572562999963, 49.106834832000111 ], [ -122.753144704999912, 49.107000193000026 ], [ -122.75282989899992, 49.107125309000075 ], [ -122.752647506999907, 49.107197803000105 ], [ -122.751346794999975, 49.10728286500008 ], [ -122.75132822199997, 49.107284098000015 ], [ -122.750071514999945, 49.107276799000033 ], [ -122.749185395999959, 49.107061713000043 ], [ -122.749016875, 49.10703311500005 ], [ -122.748790190999941, 49.106994707000084 ], [ -122.748253996999907, 49.106965903000074 ], [ -122.74792079599996, 49.106957592000107 ], [ -122.747399611999953, 49.106944596000083 ], [ -122.747374485999927, 49.106969893000063 ], [ -122.747353993, 49.107852503000096 ], [ -122.746084883999941, 49.107845607000115 ], [ -122.744298287999982, 49.10783750300007 ], [ -122.743906805999984, 49.107834600000132 ], [ -122.742703708999969, 49.107825197000068 ], [ -122.742470903999944, 49.107824490000063 ], [ -122.740940535999925, 49.10781412100004 ], [ -122.738821776999941, 49.10781799500009 ], [ -122.738361422999944, 49.10781881000009 ], [ -122.738193903999928, 49.107864208000137 ], [ -122.737954722999973, 49.107670664000111 ], [ -122.73783749899999, 49.107575818000051 ], [ -122.737638456999932, 49.107777941000123 ], [ -122.737164860999968, 49.108087101000123 ], [ -122.736798537999974, 49.108252620000094 ], [ -122.736706636999941, 49.108293970000091 ], [ -122.73567762099999, 49.10865293600007 ], [ -122.735586185999978, 49.108686222000095 ], [ -122.734921553, 49.108693065000125 ], [ -122.734938687999943, 49.10776539200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22316834", "BldgCostT": "14863334", "sL_LossRatio": "0.657022242396732", "sL_AssetLoss": "1101500", "sL_BldgLoss": "723710", "sL_StrLoss": "292680", "sL_NStrLoss": "431030", "sL_ContLoss": "377790", "geom_point": "0101000020E610000039EE31E49AAF5EC062AE35293F8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734964865999984, 49.104111934000066 ], [ -122.734978490999978, 49.103136385000099 ], [ -122.734974128999966, 49.101446331000041 ], [ -122.734971705999968, 49.100500291000088 ], [ -122.734969131999918, 49.100456755000096 ], [ -122.734969203999967, 49.100447753000012 ], [ -122.734969225999961, 49.100433566000071 ], [ -122.734980749999949, 49.100136457000119 ], [ -122.734987041999887, 49.099011965000088 ], [ -122.734987628999974, 49.098855616000023 ], [ -122.734989130999949, 49.098470002000113 ], [ -122.735136739, 49.098470339000038 ], [ -122.73513817499996, 49.098200478000074 ], [ -122.734990008999915, 49.09820013900007 ], [ -122.734990297999943, 49.098106389000051 ], [ -122.73492961099997, 49.097975676000033 ], [ -122.734732903999927, 49.097774159000132 ], [ -122.734729524999963, 49.097765796000068 ], [ -122.734730089999971, 49.097659814000025 ], [ -122.73468665299994, 49.097659713000084 ], [ -122.734682749999976, 49.097650056000113 ], [ -122.734770656999956, 49.097509434000088 ], [ -122.734932908999966, 49.097343154000093 ], [ -122.735030517999959, 49.097083877000017 ], [ -122.734984617999956, 49.096567009000125 ], [ -122.734988214999973, 49.096228632000162 ], [ -122.735059467999946, 49.089583289000075 ], [ -122.73267232399995, 49.089558510000082 ], [ -122.732033487999928, 49.089551680000064 ], [ -122.731632729999959, 49.089546712000121 ], [ -122.730363150999949, 49.089534532000158 ], [ -122.730369713999934, 49.089441059000059 ], [ -122.729286319999929, 49.089408090000113 ], [ -122.729425167, 49.087431061000117 ], [ -122.729808083999927, 49.087184891000078 ], [ -122.730548004, 49.087079491000118 ], [ -122.732164504999957, 49.087029712000088 ], [ -122.733220014, 49.086860192000067 ], [ -122.733591086999951, 49.086771907000134 ], [ -122.734880995999973, 49.086162295000072 ], [ -122.735115385999976, 49.086009893000096 ], [ -122.735167238999935, 49.085998669000077 ], [ -122.736760009999955, 49.085653891000064 ], [ -122.738513429999941, 49.085372781000082 ], [ -122.738431523999978, 49.086542381000058 ], [ -122.737313341999965, 49.08650843500012 ], [ -122.737242640999966, 49.087517616000042 ], [ -122.738324814999899, 49.087550469000092 ], [ -122.738294077, 49.08798937200006 ], [ -122.738788685999936, 49.088004384000087 ], [ -122.73879244299998, 49.087950724000059 ], [ -122.744256530999948, 49.088116412 ], [ -122.744253714, 49.088156710000121 ], [ -122.74490351, 49.08817639600008 ], [ -122.744891966999916, 49.088341545000027 ], [ -122.74522922499996, 49.088351761000062 ], [ -122.745285903999957, 49.087540781000065 ], [ -122.74839739, 49.087634978000082 ], [ -122.748225517999941, 49.087820102000116 ], [ -122.74816978299998, 49.088207492000137 ], [ -122.748181809999963, 49.088530807000083 ], [ -122.748371206999977, 49.088836998000048 ], [ -122.748794611999983, 49.089036408000077 ], [ -122.749191182999965, 49.089064899000121 ], [ -122.750329384999986, 49.089093299000119 ], [ -122.750641858, 49.089255599000133 ], [ -122.750498977999939, 49.091303275 ], [ -122.746635716999947, 49.091186391000072 ], [ -122.746579056999948, 49.091997367000033 ], [ -122.741114506999978, 49.091831798000058 ], [ -122.741125128999954, 49.091680012000076 ], [ -122.737436786999922, 49.091568101000028 ], [ -122.737467537999947, 49.091129201000037 ], [ -122.736906392999956, 49.091112164000087 ], [ -122.736900321999926, 49.091198805000012 ], [ -122.736357532999975, 49.091182322000087 ], [ -122.736331116999978, 49.091559234000059 ], [ -122.738588755999928, 49.091627772000123 ], [ -122.738392497999911, 49.094429799000046 ], [ -122.740089448999939, 49.094433631000065 ], [ -122.740085222999966, 49.095243215000067 ], [ -122.736956826, 49.095236130000046 ], [ -122.736881906999926, 49.096305190000081 ], [ -122.736381194999979, 49.096289988000073 ], [ -122.73637963699997, 49.096584135000079 ], [ -122.735968686999968, 49.096583195000029 ], [ -122.735964393999936, 49.097392779000103 ], [ -122.737197261999953, 49.097395591000058 ], [ -122.737195835999898, 49.097665453000019 ], [ -122.73760679399993, 49.097666388000029 ], [ -122.737605370999916, 49.097936249000036 ], [ -122.738016330999955, 49.09793718200013 ], [ -122.738013489999929, 49.098476904000044 ], [ -122.738835419999958, 49.098478767000103 ], [ -122.73883400499993, 49.098748628000074 ], [ -122.739244969999959, 49.098749557000062 ], [ -122.739242143999917, 49.09928927900004 ], [ -122.739653113999935, 49.099290206000063 ], [ -122.739651704, 49.099560067000041 ], [ -122.740062676999955, 49.099560993000111 ], [ -122.740054656999988, 49.101096753000085 ], [ -122.741254239999975, 49.101133127000061 ], [ -122.74121298699994, 49.101722491000011 ], [ -122.741388588999939, 49.101722885000051 ], [ -122.741589319999974, 49.098854824000036 ], [ -122.74326137599995, 49.098905499000047 ], [ -122.743271651999976, 49.098758582000087 ], [ -122.740066903999931, 49.098751410000062 ], [ -122.740072541999979, 49.097671966000071 ], [ -122.741716373999964, 49.097675656000028 ], [ -122.741719174999915, 49.0971359320001 ], [ -122.740897266, 49.097134091000015 ], [ -122.740898671999943, 49.096864230000065 ], [ -122.740076768999955, 49.096862383000037 ], [ -122.74008240499991, 49.095782938000113 ], [ -122.743106632999968, 49.095789708000034 ], [ -122.743157668999942, 49.095060051000068 ], [ -122.744195430999966, 49.095091493000041 ], [ -122.744197376999949, 49.094712672000078 ], [ -122.742142708999936, 49.094708100000062 ], [ -122.742151094999912, 49.093088932000065 ], [ -122.745849377999889, 49.093097134000111 ], [ -122.745846622999963, 49.093636858000153 ], [ -122.747079397999954, 49.093639564000057 ], [ -122.74707528499999, 49.094449149000091 ], [ -122.746253422, 49.094447345000063 ], [ -122.746249821000021, 49.095153708000112 ], [ -122.748622606999945, 49.095225516000063 ], [ -122.748580546999975, 49.095827859000089 ], [ -122.748952431999982, 49.095839109000096 ], [ -122.748917303999946, 49.096342223000107 ], [ -122.752818951999984, 49.096350641000107 ], [ -122.752813589999974, 49.09743008600001 ], [ -122.751580720999982, 49.097427441000043 ], [ -122.751582067999919, 49.097157579000111 ], [ -122.749938252999954, 49.097154029000123 ], [ -122.749935540999957, 49.097693752000083 ], [ -122.749113624, 49.097691970000035 ], [ -122.749109541999985, 49.098501553000041 ], [ -122.749520506999914, 49.098502445000129 ], [ -122.74951779299991, 49.0990421670001 ], [ -122.750339732, 49.09904394800003 ], [ -122.750338377999952, 49.099313809000101 ], [ -122.751982264999967, 49.099317352000142 ], [ -122.751980921999973, 49.099587215000106 ], [ -122.752802869999954, 49.099588977000074 ], [ -122.752801529999928, 49.099858838000081 ], [ -122.754034458999968, 49.099861473000075 ], [ -122.754029123999956, 49.100940917000045 ], [ -122.754364094999943, 49.100941631000119 ], [ -122.754582753999955, 49.097804835000069 ], [ -122.754649360999963, 49.097806846000033 ], [ -122.75480206499995, 49.095615914000042 ], [ -122.754432064999975, 49.095604742000027 ], [ -122.754493833999959, 49.094718543000042 ], [ -122.754328215999948, 49.094713541000026 ], [ -122.754466898999965, 49.092723844000034 ], [ -122.75317479899995, 49.092684817000062 ], [ -122.753256487999963, 49.091513194000051 ], [ -122.753095066999961, 49.09150831700007 ], [ -122.753095520999963, 49.091501811000022 ], [ -122.753536287999978, 49.091503103000043 ], [ -122.754374012999932, 49.090937698000118 ], [ -122.754730506999977, 49.090560296000028 ], [ -122.755089003999913, 49.090444896000065 ], [ -122.755690478999966, 49.090427799000096 ], [ -122.756511298999925, 49.090545988000059 ], [ -122.756674929, 49.090573035000048 ], [ -122.757838702999962, 49.090765393000055 ], [ -122.758251801, 49.09065709000005 ], [ -122.758759104999953, 49.090308199000035 ], [ -122.759241721999956, 49.089325972000047 ], [ -122.760155557999951, 49.089535382000058 ], [ -122.759649512999914, 49.089532710000043 ], [ -122.759575886999926, 49.089551319000066 ], [ -122.759347088999945, 49.089609193000094 ], [ -122.758931194999931, 49.090274404000077 ], [ -122.758757995999957, 49.090501603000028 ], [ -122.758437484999959, 49.090719105000055 ], [ -122.758100993999946, 49.090833313000097 ], [ -122.757701377000018, 49.090870799000101 ], [ -122.756673584999959, 49.090748805000075 ], [ -122.756673133999925, 49.093153094000058 ], [ -122.75666516699998, 49.096753358000086 ], [ -122.75666492499991, 49.096868350000115 ], [ -122.756664706999942, 49.096951278000084 ], [ -122.75665747, 49.100000688000073 ], [ -122.756656960999976, 49.10022585600008 ], [ -122.756657001999898, 49.10043244000007 ], [ -122.756656987000014, 49.100564180000063 ], [ -122.756657009, 49.100657371000125 ], [ -122.756656837999955, 49.103814779000125 ], [ -122.756656839999948, 49.103985690000052 ], [ -122.75665683299998, 49.104198162000081 ], [ -122.756657724999968, 49.104342377000052 ], [ -122.75649021, 49.104196706000089 ], [ -122.756127278999941, 49.103881061000038 ], [ -122.741430967, 49.103688565000077 ], [ -122.738825979999916, 49.10368249900003 ], [ -122.738501211999974, 49.103858432000074 ], [ -122.738403145999953, 49.103950768000075 ], [ -122.738323963999903, 49.104025350000036 ], [ -122.738191206999915, 49.104150418000124 ], [ -122.738083334999885, 49.104025722000117 ], [ -122.73778873099999, 49.103685146000075 ], [ -122.735409468999976, 49.103717310000015 ], [ -122.734964865999984, 49.104111934000066 ] ], [ [ -122.751149527999928, 49.101474474000113 ], [ -122.751153576999968, 49.100664890000118 ], [ -122.749098660999934, 49.100660443000024 ], [ -122.749100022000022, 49.100390581000042 ], [ -122.747456098999976, 49.100386996000083 ], [ -122.747460205999957, 49.099577414000088 ], [ -122.747871179999933, 49.09957831100008 ], [ -122.747872027999961, 49.09941110900013 ], [ -122.747029179999956, 49.099385604000076 ], [ -122.74701455099995, 49.099594968000183 ], [ -122.747024533999976, 49.099595270000101 ], [ -122.746988143999971, 49.100116108000051 ], [ -122.747046488999928, 49.10011623600009 ], [ -122.747042375999968, 49.100925819000047 ], [ -122.746931584999984, 49.100925576000137 ], [ -122.746773192999939, 49.103192330000098 ], [ -122.745328910999945, 49.103148612000048 ], [ -122.745314774999954, 49.103350802000065 ], [ -122.750318072999974, 49.103361727000092 ], [ -122.750323488000021, 49.102282283000086 ], [ -122.750734484999938, 49.102283171000074 ], [ -122.750738539999986, 49.101473587000093 ], [ -122.751149527999928, 49.101474474000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69841167", "BldgCostT": "44426667", "sL_LossRatio": "0.643542842017464", "sL_AssetLoss": "3249030", "sL_BldgLoss": "2090890", "sL_StrLoss": "883940", "sL_NStrLoss": "1206950", "sL_ContLoss": "1158140", "geom_point": "0101000020E61000002F946D5C16AF5EC0E7B2669E3B894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.753117569, 49.091185583000026 ], [ -122.753174617999917, 49.090367359000062 ], [ -122.753130337999949, 49.090366021000094 ], [ -122.753277687999912, 49.088252553000068 ], [ -122.753230571999936, 49.08825113000006 ], [ -122.75345125599992, 49.085085467000098 ], [ -122.7533378699999, 49.085082041000113 ], [ -122.7534360499999, 49.083673591000093 ], [ -122.753255753999952, 49.083668142000136 ], [ -122.75339287499996, 49.081701013000043 ], [ -122.753215273999942, 49.081695646000114 ], [ -122.753421383999978, 49.078738615000063 ], [ -122.753086563999958, 49.078728497000064 ], [ -122.753072989999964, 49.078923248000066 ], [ -122.747609947999976, 49.078758006000101 ], [ -122.747630830999981, 49.078458910000059 ], [ -122.747438959999911, 49.078453102000097 ], [ -122.747543056999973, 49.076962232000071 ], [ -122.746540720000013, 49.076931882000103 ], [ -122.746595079000016, 49.076153542000093 ], [ -122.745845455, 49.076130838000026 ], [ -122.745844442999925, 49.076145333000092 ], [ -122.743398953999971, 49.076071227000064 ], [ -122.743349375999969, 49.076780390000067 ], [ -122.741399938999976, 49.076721277000075 ], [ -122.741394898999957, 49.076793338000101 ], [ -122.735932147999961, 49.076627501000083 ], [ -122.735932438999953, 49.076623336000026 ], [ -122.735469490999932, 49.07660926900013 ], [ -122.735464270999955, 49.076683762000066 ], [ -122.737271591999942, 49.076738668000061 ], [ -122.737193313999953, 49.077856220000044 ], [ -122.738484917, 49.077895439000045 ], [ -122.738384255999918, 49.07933304800013 ], [ -122.738479605999927, 49.079335943000061 ], [ -122.738227831999964, 49.082931418000051 ], [ -122.738683418, 49.082945247000097 ], [ -122.738530897999937, 49.085123353 ], [ -122.738295296, 49.085216604000117 ], [ -122.735444392999952, 49.085713696000099 ], [ -122.735173515999961, 49.085790744000064 ], [ -122.734813696999979, 49.085893087000052 ], [ -122.734730792999983, 49.08594580200004 ], [ -122.73407289099994, 49.086358906000051 ], [ -122.733043379999941, 49.086707793000116 ], [ -122.731918414999967, 49.086865893000059 ], [ -122.729823900999961, 49.086959886000088 ], [ -122.729441294999987, 49.08720140300003 ], [ -122.729538936, 49.085810993000045 ], [ -122.731317773999962, 49.085865120000051 ], [ -122.731475279999955, 49.083620834000072 ], [ -122.733157342, 49.083671989000038 ], [ -122.733172321, 49.083458430000071 ], [ -122.731542569999974, 49.083408866000084 ], [ -122.731640632999969, 49.082011435000076 ], [ -122.73154645699999, 49.082008570000021 ], [ -122.731675230999898, 49.080173388000077 ], [ -122.73155647, 49.080169775000073 ], [ -122.731792968999969, 49.076799137000108 ], [ -122.731237694999948, 49.076782243000018 ], [ -122.731226696999926, 49.076938984000058 ], [ -122.72971804699992, 49.076893070000089 ], [ -122.72971223699993, 49.07697582100009 ], [ -122.724249506999939, 49.076809390000051 ], [ -122.724252352999912, 49.076768909000094 ], [ -122.722305840999937, 49.076709538000088 ], [ -122.72231803499993, 49.076536237000042 ], [ -122.721701430999971, 49.076517423000048 ], [ -122.721735336999984, 49.076035630000028 ], [ -122.717490810999948, 49.075906019000072 ], [ -122.717238073999951, 49.079492415000097 ], [ -122.716466950999944, 49.07946885000009 ], [ -122.716220926999981, 49.082958630000078 ], [ -122.716191765999938, 49.082957738000047 ], [ -122.716157449999955, 49.083444430000043 ], [ -122.715194511, 49.083414995000062 ], [ -122.715092486999978, 49.084861552000106 ], [ -122.713225150999918, 49.084804448000085 ], [ -122.71332230299997, 49.082674556000093 ], [ -122.713361052999957, 49.081824827000084 ], [ -122.713406554999949, 49.079499328000047 ], [ -122.71346489099993, 49.076513291 ], [ -122.713502597999977, 49.074581490000163 ], [ -122.713494753999953, 49.072267399000069 ], [ -122.713494400999977, 49.072159463000069 ], [ -122.71348462499995, 49.069271502000021 ], [ -122.71347621299995, 49.066779740000072 ], [ -122.71347459699993, 49.066302937000067 ], [ -122.71346763299999, 49.064252070000087 ], [ -122.713457818999984, 49.061355320000089 ], [ -122.713453814999951, 49.060161207000043 ], [ -122.724123254999967, 49.060128577000015 ], [ -122.724420316999954, 49.060127657000073 ], [ -122.73466346799998, 49.060145797000075 ], [ -122.735306367999954, 49.060147325000038 ], [ -122.735486937999937, 49.060147409000088 ], [ -122.73628462899994, 49.060146415000055 ], [ -122.73743118, 49.06014521200008 ], [ -122.738295755, 49.060146236000023 ], [ -122.74596103699993, 49.060148982000044 ], [ -122.746585452999952, 49.060157919000055 ], [ -122.749514068999957, 49.060199899000089 ], [ -122.75232132599993, 49.060240035000035 ], [ -122.753936392, 49.060263102000093 ], [ -122.756860680999964, 49.060304796000018 ], [ -122.756843626999952, 49.063938209000064 ], [ -122.756826138999983, 49.067652776000052 ], [ -122.756791855999964, 49.074936496000099 ], [ -122.756719930999964, 49.084556875000018 ], [ -122.756711127999935, 49.085734110000082 ], [ -122.756688609999941, 49.088740862000066 ], [ -122.758898489999964, 49.089247316000126 ], [ -122.758320113999986, 49.090333794000038 ], [ -122.757963399999952, 49.090494797000098 ], [ -122.757429919999979, 49.090503305 ], [ -122.756925085999939, 49.090286805000105 ], [ -122.756677169999975, 49.090269166000091 ], [ -122.756405086999905, 49.090249806000017 ], [ -122.755541212999916, 49.090157206000143 ], [ -122.754815799999932, 49.090263992000111 ], [ -122.754237621999962, 49.090558899000079 ], [ -122.753879609999927, 49.090927699000069 ], [ -122.75346841599999, 49.091159896000114 ], [ -122.753117569, 49.091185583000026 ] ], [ [ -122.754616399999946, 49.076791692000015 ], [ -122.754643888999979, 49.076397136000082 ], [ -122.753729804999949, 49.076369518000092 ], [ -122.753702307999959, 49.076764075000014 ], [ -122.754616399999946, 49.076791692000015 ] ], [ [ -122.717183141999939, 49.074586290000127 ], [ -122.717344482999977, 49.072296659000045 ], [ -122.718530548999937, 49.072332897000074 ], [ -122.718532134999961, 49.072310388000112 ], [ -122.719782836999912, 49.072348587000143 ], [ -122.719790988999975, 49.072232817000064 ], [ -122.720716285999956, 49.072261069000078 ], [ -122.720835038999951, 49.070573937000091 ], [ -122.726297027, 49.070740544000024 ], [ -122.726181366000034, 49.072386483000095 ], [ -122.726675985999947, 49.072401557000084 ], [ -122.726686909999955, 49.072246085000053 ], [ -122.727371103999957, 49.072266932000048 ], [ -122.727373381999953, 49.0722345020001 ], [ -122.728468236999944, 49.072267852000024 ], [ -122.728468335999978, 49.07226642800002 ], [ -122.72937925699992, 49.072294167000102 ], [ -122.729380598999938, 49.07227505000008 ], [ -122.730970467999967, 49.072323446000077 ], [ -122.730971833999959, 49.072303989000012 ], [ -122.731239899999963, 49.072312146000044 ], [ -122.731334593999961, 49.070962493000131 ], [ -122.731636885999976, 49.070971691000132 ], [ -122.731689515999946, 49.070221470000057 ], [ -122.731644582999962, 49.070220104000093 ], [ -122.731763187999945, 49.068529339000065 ], [ -122.731666886999932, 49.068526408000075 ], [ -122.731702112999955, 49.068024237000067 ], [ -122.731688118999926, 49.068023810000064 ], [ -122.73173735599994, 49.067321901000042 ], [ -122.73162596, 49.067318511000103 ], [ -122.73166456499996, 49.066768169000106 ], [ -122.73164299299999, 49.066767513000073 ], [ -122.731700495999974, 49.065947758000085 ], [ -122.731695846999969, 49.065947616000145 ], [ -122.73175438, 49.065113133000104 ], [ -122.731645395999962, 49.065109817000078 ], [ -122.731841679999917, 49.06231131800012 ], [ -122.731634867999958, 49.062305024000104 ], [ -122.731766712999971, 49.06042517800006 ], [ -122.731690770999961, 49.060422867000064 ], [ -122.731519220999971, 49.062868718000033 ], [ -122.727630708999953, 49.062750304000097 ], [ -122.727585704999939, 49.063391133000046 ], [ -122.727672826999978, 49.063393787000024 ], [ -122.72742018699995, 49.066991005000048 ], [ -122.721958633999975, 49.066824455000138 ], [ -122.722008602999907, 49.06611421500007 ], [ -122.721921475999963, 49.066111556000031 ], [ -122.721942622999947, 49.065810981000034 ], [ -122.721872993999952, 49.065808855000043 ], [ -122.722126054999961, 49.062211645000097 ], [ -122.722158365999945, 49.062212631000072 ], [ -122.722160137999964, 49.062187434000059 ], [ -122.721928616999946, 49.062180367000039 ], [ -122.721975834999952, 49.061509140000069 ], [ -122.721514498999952, 49.06149505700008 ], [ -122.721458782999932, 49.062286963000069 ], [ -122.71662120099991, 49.062139171000076 ], [ -122.716513960999947, 49.063661079000056 ], [ -122.716430843999959, 49.063658538000098 ], [ -122.716322474999956, 49.065196314000069 ], [ -122.71648194899997, 49.065201189000064 ], [ -122.716411548999972, 49.066200160000079 ], [ -122.716543406999961, 49.066204192000036 ], [ -122.716475377, 49.067169555000127 ], [ -122.716734860999935, 49.067177489000059 ], [ -122.716700773999946, 49.067661186000073 ], [ -122.717240271999913, 49.067677676000109 ], [ -122.716986804000015, 49.071274845000104 ], [ -122.716646041999937, 49.071264429000031 ], [ -122.71649880199999, 49.073353549000075 ], [ -122.717200422999923, 49.073374993000115 ], [ -122.717115068999959, 49.074586201000052 ], [ -122.71702382099997, 49.075880998000059 ], [ -122.71709175499997, 49.075883074000046 ], [ -122.717183141999939, 49.074586290000127 ] ], [ [ -122.738503140999981, 49.061236627000085 ], [ -122.73845797499996, 49.061881941000095 ], [ -122.738917121000014, 49.061895885000069 ], [ -122.738854757999945, 49.062786986000077 ], [ -122.738946974999962, 49.06278978600006 ], [ -122.738904908999942, 49.06339085900003 ], [ -122.739044107999945, 49.063395085000074 ], [ -122.738857904000014, 49.066055684000091 ], [ -122.739170966999922, 49.066065189000078 ], [ -122.738967640999974, 49.06897034400005 ], [ -122.739012349999925, 49.068971701000123 ], [ -122.738913669999974, 49.07038155300009 ], [ -122.738971437999965, 49.070383306000096 ], [ -122.738828120999955, 49.072430754000052 ], [ -122.739007863, 49.072436211000081 ], [ -122.738965418999939, 49.073042571000101 ], [ -122.740583823999927, 49.073091689000066 ], [ -122.740633438999936, 49.072382524 ], [ -122.742474248999912, 49.072438363000046 ], [ -122.742475261999957, 49.072423867000055 ], [ -122.744040316999957, 49.072471317000065 ], [ -122.744042497999956, 49.072440105000105 ], [ -122.746139994, 49.072503662000095 ], [ -122.746141510999976, 49.07248195600004 ], [ -122.749062867999967, 49.072570408000061 ], [ -122.749069293999952, 49.072478328000088 ], [ -122.750051274999933, 49.072508042000038 ], [ -122.75005855699996, 49.072403652000077 ], [ -122.753342393999915, 49.072502952000086 ], [ -122.753445843999913, 49.071018453000178 ], [ -122.753261328999983, 49.071012876000019 ], [ -122.75336885199999, 49.069469936000118 ], [ -122.753343926999918, 49.069469183000081 ], [ -122.753458305999956, 49.067827747000109 ], [ -122.753277624999939, 49.067822285 ], [ -122.753431537999987, 49.065613412000083 ], [ -122.753308461999922, 49.065609692000109 ], [ -122.753420739999967, 49.063998274000035 ], [ -122.753418263999961, 49.063998199 ], [ -122.753514385999921, 49.062618561000072 ], [ -122.750200108999977, 49.062518322000074 ], [ -122.750179071999938, 49.062819965000102 ], [ -122.744717925999922, 49.062654571000081 ], [ -122.744733305999958, 49.062434419000013 ], [ -122.739742965999966, 49.062283039000114 ], [ -122.739751272999939, 49.062164310000085 ], [ -122.73927095699996, 49.062149728000037 ], [ -122.739353598999983, 49.060968685000034 ], [ -122.739032021999961, 49.060967959000074 ], [ -122.739030609999958, 49.061237820000024 ], [ -122.738503140999981, 49.061236627000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.748700173310225", "sL_AssetLoss": "11540", "sL_BldgLoss": "8640", "sL_StrLoss": "3690", "sL_NStrLoss": "4950", "sL_ContLoss": "2900", "geom_point": "0101000020E6100000334F3262B4AD5EC00BEDDE82538B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.71299772399999, 49.088762600000109 ], [ -122.713147533999987, 49.087759964000071 ], [ -122.713158684999954, 49.087152174000032 ], [ -122.71478126, 49.087201794000087 ], [ -122.714668968999931, 49.088793562000035 ], [ -122.71596791599994, 49.088833267000076 ], [ -122.715922983999931, 49.089470434000148 ], [ -122.712892442999959, 49.089467086000049 ], [ -122.712953630999905, 49.089057548000063 ], [ -122.71299772399999, 49.088762600000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.720196078431373", "sL_AssetLoss": "51000", "sL_BldgLoss": "36730", "sL_StrLoss": "14230", "sL_NStrLoss": "22500", "sL_ContLoss": "14270", "geom_point": "0101000020E6100000BFF0087655AE5EC0BEECE8C9C68A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.721360961999935, 49.082309685000091 ], [ -122.726824326999932, 49.082476261000132 ], [ -122.726571517999901, 49.086073370000065 ], [ -122.721107731999922, 49.08590678100007 ], [ -122.721360961999935, 49.082309685000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16980167", "BldgCostT": "11446667", "sL_LossRatio": "0.661455839534131", "sL_AssetLoss": "772750", "sL_BldgLoss": "511140", "sL_StrLoss": "213090", "sL_NStrLoss": "298050", "sL_ContLoss": "261610", "geom_point": "0101000020E6100000B2E9A5B5EBAE5EC01A1407AFE18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.73431913099995, 49.097658869000085 ], [ -122.734326771, 49.096227584000054 ], [ -122.731416884999973, 49.096139129000129 ], [ -122.73166937299996, 49.092542065000039 ], [ -122.733045552999968, 49.092583908000073 ], [ -122.733106005999986, 49.091722210000043 ], [ -122.730215716999965, 49.091634308000046 ], [ -122.730363150999949, 49.089534532000158 ], [ -122.731632729999959, 49.089546712000121 ], [ -122.732033487999928, 49.089551680000064 ], [ -122.73267232399995, 49.089558510000082 ], [ -122.735059467999946, 49.089583289000075 ], [ -122.734988214999973, 49.096228632000162 ], [ -122.734984617999956, 49.096567009000125 ], [ -122.735030517999959, 49.097083877000017 ], [ -122.734932908999966, 49.097343154000093 ], [ -122.734770656999956, 49.097509434000088 ], [ -122.734682749999976, 49.097650056000113 ], [ -122.73468665299994, 49.097659713000084 ], [ -122.73431913099995, 49.097658869000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105504834", "BldgCostT": "68603334", "sL_LossRatio": "0.702427738114952", "sL_AssetLoss": "1715012", "sL_BldgLoss": "1204672", "sL_StrLoss": "539892", "sL_NStrLoss": "664780", "sL_ContLoss": "510340", "geom_point": "0101000020E6100000CA279E92F7AD5EC0A3F14DCBF68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.719524666999945, 49.097623871000096 ], [ -122.723634238, 49.097633783000092 ], [ -122.723640230999962, 49.096554339000114 ], [ -122.725694972000028, 49.096559241000058 ], [ -122.725693733999947, 49.096783729000038 ], [ -122.729175324, 49.096889737000076 ], [ -122.729027364999965, 49.098995890000062 ], [ -122.729791272999947, 49.09899768000006 ], [ -122.729789808999939, 49.099267541000039 ], [ -122.731022721999949, 49.099270420000011 ], [ -122.731021261999913, 49.099540281000031 ], [ -122.73389807599996, 49.099546948000132 ], [ -122.733899516999927, 49.099277087000083 ], [ -122.73431048899999, 49.099278034000108 ], [ -122.734313369999981, 49.098738312000116 ], [ -122.734724337, 49.098739257000048 ], [ -122.734725774999959, 49.098469396000091 ], [ -122.734989130999949, 49.098470002000113 ], [ -122.734987628999974, 49.098855616000023 ], [ -122.734987041999887, 49.099011965000088 ], [ -122.734980749999949, 49.100136457000119 ], [ -122.734969225999961, 49.100433566000071 ], [ -122.734969203999967, 49.100447753000012 ], [ -122.734969131999918, 49.100456755000096 ], [ -122.734971705999968, 49.100500291000088 ], [ -122.734974128999966, 49.101446331000041 ], [ -122.734978490999978, 49.103136385000099 ], [ -122.734964865999984, 49.104111934000066 ], [ -122.734212128999971, 49.103592616000071 ], [ -122.733461188, 49.103036271000114 ], [ -122.731381375999902, 49.102346831000084 ], [ -122.731306133999979, 49.102327032000112 ], [ -122.730719807999932, 49.102063636000054 ], [ -122.727526418999958, 49.100629001000129 ], [ -122.726478186999941, 49.100158027000063 ], [ -122.723877157999965, 49.099267222000037 ], [ -122.723901011999914, 49.099584797000048 ], [ -122.723895431999964, 49.099999081000107 ], [ -122.723878272999968, 49.1012693650001 ], [ -122.723873439999934, 49.101590946000016 ], [ -122.723870604999959, 49.101903553000106 ], [ -122.723861853999949, 49.10228088000013 ], [ -122.72384079699998, 49.104079004000063 ], [ -122.723839263999977, 49.104163789000033 ], [ -122.723838393, 49.104210491000046 ], [ -122.721289782999932, 49.104194018000065 ], [ -122.718947085999943, 49.104178826000108 ], [ -122.718326278999939, 49.10417480100007 ], [ -122.71772777, 49.104176885000115 ], [ -122.712680099999915, 49.104194305000078 ], [ -122.711070904999971, 49.104176591000083 ], [ -122.709474761999942, 49.104176213000059 ], [ -122.708311588999919, 49.104175908000109 ], [ -122.70782223399999, 49.104179535000064 ], [ -122.707145146999935, 49.104184535000108 ], [ -122.707035542999918, 49.104185349000062 ], [ -122.706746893999963, 49.104187496000044 ], [ -122.705410774999905, 49.104197534000058 ], [ -122.703170874999927, 49.104214295000141 ], [ -122.702533580999955, 49.104219067000052 ], [ -122.701645781999915, 49.104225700000022 ], [ -122.701650224000019, 49.104163510000078 ], [ -122.701656193999895, 49.104079181000102 ], [ -122.701672855999959, 49.102394456000042 ], [ -122.701675063999971, 49.10221222900006 ], [ -122.701690750999916, 49.100933422000011 ], [ -122.701695730999916, 49.100525173000094 ], [ -122.706223896000012, 49.100508989000069 ], [ -122.706665992999959, 49.100506626000026 ], [ -122.707099177999979, 49.100504293000064 ], [ -122.707282192999941, 49.100503788000069 ], [ -122.710084914999968, 49.100495706000032 ], [ -122.711527401, 49.100486702000083 ], [ -122.712737412999971, 49.100474123 ], [ -122.712756628999941, 49.099999064000038 ], [ -122.712778089000011, 49.099468640000033 ], [ -122.712784315999926, 49.099315801000053 ], [ -122.712794419999938, 49.09906552100005 ], [ -122.712794707999976, 49.099031257000064 ], [ -122.712799946999922, 49.098416930000013 ], [ -122.712944690999976, 49.09841729000005 ], [ -122.712944329999942, 49.098479612000091 ], [ -122.71368149499996, 49.098502153000048 ], [ -122.713668309999917, 49.098688951000085 ], [ -122.713765064999961, 49.098689191000112 ], [ -122.713763181999965, 49.099016566000024 ], [ -122.713820450999918, 49.099018316000048 ], [ -122.714932880999967, 49.099052322000034 ], [ -122.714882142999912, 49.099771413000049 ], [ -122.714991780999952, 49.099771684000089 ], [ -122.71498869, 49.100311404000109 ], [ -122.715399669999954, 49.100312418000087 ], [ -122.715398126999929, 49.100582278000047 ], [ -122.715591568999983, 49.100582756000072 ], [ -122.715809929999978, 49.100439300000048 ], [ -122.715813729999951, 49.099773710000058 ], [ -122.717868602999928, 49.09977875000002 ], [ -122.717867073999969, 49.10004861000008 ], [ -122.71868902699994, 49.100050616000068 ], [ -122.718687501999952, 49.100320477000018 ], [ -122.719660764999944, 49.100322845000036 ], [ -122.721553227999976, 49.100327424000085 ], [ -122.721569458999937, 49.100096941000047 ], [ -122.723209299999937, 49.100146945000077 ], [ -122.723209775, 49.10006154400002 ], [ -122.722798797999943, 49.100060559000099 ], [ -122.722800300999964, 49.099790697000117 ], [ -122.722389325999984, 49.099789711000021 ], [ -122.722390831999988, 49.099519849000032 ], [ -122.720746940999931, 49.099515884000084 ], [ -122.720748453999988, 49.099246024000088 ], [ -122.72033748399997, 49.09924502900008 ], [ -122.72034203199999, 49.098435447000035 ], [ -122.719520103999955, 49.098433453000027 ], [ -122.719520969999934, 49.098279918000109 ], [ -122.719524666999945, 49.097623871000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24494583", "BldgCostT": "16683333", "sL_LossRatio": "0.719055955391299", "sL_AssetLoss": "616920", "sL_BldgLoss": "443600", "sL_StrLoss": "175150", "sL_NStrLoss": "268450", "sL_ContLoss": "173320", "geom_point": "0101000020E6100000A0E7AAD4C7AD5EC04CE548C2198C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.719524666999945, 49.097623871000096 ], [ -122.718702752999917, 49.097621871000101 ], [ -122.718701227999972, 49.097891732000058 ], [ -122.717215469999957, 49.097888102000113 ], [ -122.716646432999966, 49.0978867070001 ], [ -122.716646985999915, 49.097789496000097 ], [ -122.716647968999922, 49.097616846000072 ], [ -122.715761273999959, 49.09761466600002 ], [ -122.715759797999979, 49.097635601000064 ], [ -122.715720458999911, 49.098193298000105 ], [ -122.712802614999973, 49.098104099000089 ], [ -122.712806678999954, 49.097627464000077 ], [ -122.712810366999946, 49.097196186000076 ], [ -122.712812123999925, 49.096985515000021 ], [ -122.71282189799993, 49.095839878000085 ], [ -122.712837164999954, 49.094044093000036 ], [ -122.712875050000022, 49.089591889000118 ], [ -122.712875124999968, 49.089582886000052 ], [ -122.712892442999959, 49.089467086000049 ], [ -122.715922983999931, 49.089470434000148 ], [ -122.715855461000018, 49.090427885000111 ], [ -122.715936814999978, 49.090430372000057 ], [ -122.71580618199999, 49.092282670000017 ], [ -122.715845732999952, 49.092283879000028 ], [ -122.715793683999919, 49.093021868000022 ], [ -122.71591837499993, 49.093025679000142 ], [ -122.715838570999921, 49.094157185000014 ], [ -122.715998741999954, 49.094162080000068 ], [ -122.715983595999944, 49.094376841000049 ], [ -122.716666400999955, 49.094378518000028 ], [ -122.71666486499997, 49.09464837900012 ], [ -122.717075795999904, 49.094649387000096 ], [ -122.717074262999972, 49.094919248000096 ], [ -122.719539869999934, 49.094925264000068 ], [ -122.719524666999945, 49.097623871000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96015418", "BldgCostT": "64721668", "sL_LossRatio": "0.75057319745084", "sL_AssetLoss": "1099970", "sL_BldgLoss": "825608", "sL_StrLoss": "401958", "sL_NStrLoss": "423650", "sL_ContLoss": "274362", "geom_point": "0101000020E6100000E1333C6A0AAE5EC09FB6CA3C878D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.7182912869999, 49.106938968000065 ], [ -122.718291813999883, 49.106548407000034 ], [ -122.717214902999928, 49.106535305000079 ], [ -122.716790492999948, 49.106435905000069 ], [ -122.716564599999941, 49.106435304000058 ], [ -122.716546379999983, 49.105567777000097 ], [ -122.714062194999968, 49.105547738000041 ], [ -122.713391374999915, 49.105546830000108 ], [ -122.712673727999942, 49.105545847000045 ], [ -122.712676415999965, 49.104973161000046 ], [ -122.712680099999915, 49.104194305000078 ], [ -122.71772777, 49.104176885000115 ], [ -122.718326278999939, 49.10417480100007 ], [ -122.718947085999943, 49.104178826000108 ], [ -122.721289782999932, 49.104194018000065 ], [ -122.723838393, 49.104210491000046 ], [ -122.723838084999926, 49.104271725000103 ], [ -122.723834104, 49.105068306000135 ], [ -122.723819091999971, 49.10600139500005 ], [ -122.723829970999986, 49.106430736000029 ], [ -122.723841880999956, 49.106903304000106 ], [ -122.723840894999938, 49.107773783000027 ], [ -122.719844831999922, 49.107760961000061 ], [ -122.718290208999974, 49.107755898000029 ], [ -122.7182912869999, 49.106938968000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132542750", "BldgCostT": "87725000", "sL_LossRatio": "0.731649472130533", "sL_AssetLoss": "1969521", "sL_BldgLoss": "1440999", "sL_StrLoss": "647109", "sL_NStrLoss": "793890", "sL_ContLoss": "528522", "geom_point": "0101000020E61000004BEB777AC8AD5EC07184B12AE78D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.712666978999948, 49.107114045000067 ], [ -122.712673727999942, 49.105545847000045 ], [ -122.713391374999915, 49.105546830000108 ], [ -122.714062194999968, 49.105547738000041 ], [ -122.716546379999983, 49.105567777000097 ], [ -122.716564599999941, 49.106435304000058 ], [ -122.716790492999948, 49.106435905000069 ], [ -122.717214902999928, 49.106535305000079 ], [ -122.718291813999883, 49.106548407000034 ], [ -122.7182912869999, 49.106938968000065 ], [ -122.718290208999974, 49.107755898000029 ], [ -122.718286110999955, 49.108180325000049 ], [ -122.718285413999965, 49.108251396000114 ], [ -122.718280953999937, 49.108720023000032 ], [ -122.718277303999969, 49.109104609000084 ], [ -122.718274109999982, 49.109518091000069 ], [ -122.718265091999967, 49.110423482000101 ], [ -122.718256698999937, 49.111416312000095 ], [ -122.716343108, 49.111420087000084 ], [ -122.713819187999931, 49.111415091 ], [ -122.71262851099999, 49.111421901000064 ], [ -122.712637254999919, 49.110499969000031 ], [ -122.712646095999929, 49.109569728000082 ], [ -122.712651115999975, 49.109046196000065 ], [ -122.712653482999926, 49.108720987000055 ], [ -122.712664200999939, 49.107755211000054 ], [ -122.712666978999948, 49.107114045000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156987333", "BldgCostT": "104583333", "sL_LossRatio": "0.719026573468374", "sL_AssetLoss": "2676730", "sL_BldgLoss": "1924640", "sL_StrLoss": "865780", "sL_NStrLoss": "1058860", "sL_ContLoss": "752090", "geom_point": "0101000020E6100000610F8A394AAD5EC022F74BF6958D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.701661794999922, 49.105754444000084 ], [ -122.701660959999955, 49.105574545000088 ], [ -122.70166001699999, 49.10537879400006 ], [ -122.702159294999944, 49.105443695000083 ], [ -122.702485605, 49.105535701000065 ], [ -122.702922289999947, 49.105731092000077 ], [ -122.703492694999966, 49.105316107000036 ], [ -122.703941108999942, 49.105133401000046 ], [ -122.704312709999982, 49.105049184000059 ], [ -122.705405736999936, 49.105055215000071 ], [ -122.706652510999973, 49.105062058000051 ], [ -122.706749395999964, 49.105062595000078 ], [ -122.70674752299999, 49.104832297000051 ], [ -122.70674320399999, 49.104298202000081 ], [ -122.705410151999928, 49.104305115000081 ], [ -122.703019709999964, 49.104317497000068 ], [ -122.703170874999927, 49.104214295000141 ], [ -122.705410774999905, 49.104197534000058 ], [ -122.706746893999963, 49.104187496000044 ], [ -122.707035542999918, 49.104185349000062 ], [ -122.707145146999935, 49.104184535000108 ], [ -122.70782223399999, 49.104179535000064 ], [ -122.708311588999919, 49.104175908000109 ], [ -122.709474761999942, 49.104176213000059 ], [ -122.711070904999971, 49.104176591000083 ], [ -122.712680099999915, 49.104194305000078 ], [ -122.712676415999965, 49.104973161000046 ], [ -122.712673727999942, 49.105545847000045 ], [ -122.712666978999948, 49.107114045000067 ], [ -122.712664200999939, 49.107755211000054 ], [ -122.710940783999931, 49.107762900000068 ], [ -122.709719456999949, 49.107760354000064 ], [ -122.709644100999981, 49.107760188000029 ], [ -122.708263901999942, 49.107755783000123 ], [ -122.706814844999926, 49.107755043000104 ], [ -122.706168594999966, 49.107754697000061 ], [ -122.705732184999988, 49.107752275000067 ], [ -122.704923784999977, 49.107747750000073 ], [ -122.70367701399999, 49.107740769000074 ], [ -122.703416676999936, 49.107739294000055 ], [ -122.70167149599996, 49.107729507000116 ], [ -122.701670119999903, 49.107454457000109 ], [ -122.701667888999978, 49.107006598000034 ], [ -122.701667824999987, 49.106986721000098 ], [ -122.701666156999934, 49.106644903000095 ], [ -122.701663863999926, 49.106177170000137 ], [ -122.701661794999922, 49.105754444000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159358666", "BldgCostT": "101386666", "sL_LossRatio": "0.681473539660218", "sL_AssetLoss": "2723510", "sL_BldgLoss": "1856000", "sL_StrLoss": "815090", "sL_NStrLoss": "1040910", "sL_ContLoss": "867510", "geom_point": "0101000020E61000007ECC0F7542AD5EC0F4DEE711068E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.710940783999931, 49.107762900000068 ], [ -122.712664200999939, 49.107755211000054 ], [ -122.712653482999926, 49.108720987000055 ], [ -122.712651115999975, 49.109046196000065 ], [ -122.712646095999929, 49.109569728000082 ], [ -122.712637254999919, 49.110499969000031 ], [ -122.71262851099999, 49.111421901000064 ], [ -122.711890179999926, 49.11141484300002 ], [ -122.711191441999958, 49.111408146 ], [ -122.710300928999942, 49.111399592000048 ], [ -122.708206205999971, 49.111379487000065 ], [ -122.707138424, 49.111372894000084 ], [ -122.706156998999958, 49.111363614000041 ], [ -122.701692210999937, 49.1113222070001 ], [ -122.701689876999978, 49.110908687000126 ], [ -122.701684737999955, 49.109982113000115 ], [ -122.701681905, 49.109476305000044 ], [ -122.701680037999949, 49.109217630000082 ], [ -122.701676202999963, 49.108686695000081 ], [ -122.70167149599996, 49.107729507000116 ], [ -122.703416676999936, 49.107739294000055 ], [ -122.70367701399999, 49.107740769000074 ], [ -122.704923784999977, 49.107747750000073 ], [ -122.705732184999988, 49.107752275000067 ], [ -122.706168594999966, 49.107754697000061 ], [ -122.706814844999926, 49.107755043000104 ], [ -122.708263901999942, 49.107755783000123 ], [ -122.709644100999981, 49.107760188000029 ], [ -122.709719456999949, 49.107760354000064 ], [ -122.710940783999931, 49.107762900000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137736917", "BldgCostT": "93316667", "sL_LossRatio": "0.726853006200236", "sL_AssetLoss": "2406360", "sL_BldgLoss": "1749070", "sL_StrLoss": "732310", "sL_NStrLoss": "1016760", "sL_ContLoss": "657290", "geom_point": "0101000020E61000001B2A73B131AD5EC0413B23217C8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.70321624599994, 49.114232202000039 ], [ -122.703124814, 49.113893898000057 ], [ -122.701718200999935, 49.113892305000029 ], [ -122.701713675999912, 49.113445550000094 ], [ -122.701700935999895, 49.112186077000068 ], [ -122.701692210999937, 49.1113222070001 ], [ -122.706156998999958, 49.111363614000041 ], [ -122.707138424, 49.111372894000084 ], [ -122.707145009999977, 49.112595096000071 ], [ -122.707375726999913, 49.112580351000069 ], [ -122.70786049499999, 49.112549381000086 ], [ -122.708208489999933, 49.112469904000115 ], [ -122.708643113000022, 49.112289492000059 ], [ -122.70869191599999, 49.112282867000069 ], [ -122.709022094999938, 49.112237988000125 ], [ -122.70973520299999, 49.112244500000067 ], [ -122.710228801999932, 49.112315512000087 ], [ -122.710618310999934, 49.112521215000072 ], [ -122.710999284999914, 49.112769815000028 ], [ -122.711179398999974, 49.112973598000082 ], [ -122.711239617999951, 49.113187188000076 ], [ -122.711235410999976, 49.113828710000135 ], [ -122.71120416299999, 49.114000900000057 ], [ -122.711183702999961, 49.114113696000068 ], [ -122.710922301999929, 49.114478791000074 ], [ -122.710570012999966, 49.114618503000017 ], [ -122.71031159099999, 49.114689899000034 ], [ -122.710046611999971, 49.114717892000129 ], [ -122.709621509999963, 49.114725584000041 ], [ -122.707280432999937, 49.114763816000085 ], [ -122.70716540699999, 49.114765684000048 ], [ -122.705265859999955, 49.114795646000097 ], [ -122.704348820999911, 49.114810101000053 ], [ -122.703933389999932, 49.114757689000079 ], [ -122.703438514999931, 49.114551503000108 ], [ -122.703242014999944, 49.114327408000065 ], [ -122.70321624599994, 49.114232202000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68389333", "BldgCostT": "46693333", "sL_LossRatio": "0.73817953455353", "sL_AssetLoss": "1098730", "sL_BldgLoss": "811060", "sL_StrLoss": "366710", "sL_NStrLoss": "444350", "sL_ContLoss": "287670", "geom_point": "0101000020E61000000EF1404BF4AC5EC00FA2105CC08E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.699679094999965, 49.114736299000086 ], [ -122.699661623999972, 49.114313313000061 ], [ -122.699643812999966, 49.113881793000068 ], [ -122.699831070999949, 49.113880726000097 ], [ -122.701400481999968, 49.113871696000082 ], [ -122.701718200999935, 49.113892305000029 ], [ -122.703124814, 49.113893898000057 ], [ -122.70321624599994, 49.114232202000039 ], [ -122.703242014999944, 49.114327408000065 ], [ -122.703438514999931, 49.114551503000108 ], [ -122.703933389999932, 49.114757689000079 ], [ -122.704348820999911, 49.114810101000053 ], [ -122.705265859999955, 49.114795646000097 ], [ -122.70716540699999, 49.114765684000048 ], [ -122.707167985999902, 49.115088186000122 ], [ -122.707172076999896, 49.115600392000054 ], [ -122.705927188999937, 49.11561731300003 ], [ -122.704765895999969, 49.11563299700002 ], [ -122.704336709999922, 49.115638792000084 ], [ -122.703950090999911, 49.115682796000058 ], [ -122.703875627999963, 49.115708573000063 ], [ -122.703627081999926, 49.115794599000075 ], [ -122.703369816999938, 49.115965994000071 ], [ -122.703192906999945, 49.116181389000076 ], [ -122.703130197999926, 49.116447993000094 ], [ -122.70313470799999, 49.116616696000023 ], [ -122.70174981199996, 49.11663638100007 ], [ -122.700691287999945, 49.116651073000128 ], [ -122.699686195999959, 49.116665002000111 ], [ -122.699684297999937, 49.11576379600006 ], [ -122.699683822999987, 49.115671642000066 ], [ -122.699679094999965, 49.114736299000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136402583", "BldgCostT": "88703333", "sL_LossRatio": "0.708074755447442", "sL_AssetLoss": "2217417", "sL_BldgLoss": "1570097", "sL_StrLoss": "705547", "sL_NStrLoss": "864550", "sL_ContLoss": "647320", "geom_point": "0101000020E6100000AC420B22B5AC5EC0BBD1AEDF9F8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69644879, 49.114028796000092 ], [ -122.696460005999981, 49.11306028800005 ], [ -122.69647631, 49.112290311000088 ], [ -122.696483889999968, 49.111315513000122 ], [ -122.697092330999979, 49.111318034000114 ], [ -122.697706605999983, 49.111320598000077 ], [ -122.699745913999948, 49.11132200300009 ], [ -122.701692210999937, 49.1113222070001 ], [ -122.701700935999895, 49.112186077000068 ], [ -122.701713675999912, 49.113445550000094 ], [ -122.701718200999935, 49.113892305000029 ], [ -122.701400481999968, 49.113871696000082 ], [ -122.699831070999949, 49.113880726000097 ], [ -122.699643812999966, 49.113881793000068 ], [ -122.699661623999972, 49.114313313000061 ], [ -122.699679094999965, 49.114736299000086 ], [ -122.699683822999987, 49.115671642000066 ], [ -122.699684297999937, 49.11576379600006 ], [ -122.699686195999959, 49.116665002000111 ], [ -122.69966331799999, 49.1172908180001 ], [ -122.699661397999989, 49.117342811000064 ], [ -122.699611588999986, 49.117426902000062 ], [ -122.69955728799999, 49.117517193000026 ], [ -122.699247775999979, 49.117766300000042 ], [ -122.699150527999961, 49.117812061000073 ], [ -122.698933204999932, 49.117914290000073 ], [ -122.698915852999974, 49.117918312 ], [ -122.698692314999974, 49.117969994000141 ], [ -122.698093913000022, 49.118019666000059 ], [ -122.697955086999954, 49.118031198000018 ], [ -122.697542198999926, 49.118058190000106 ], [ -122.696393983999926, 49.118043608000065 ], [ -122.696394912999892, 49.117974819000047 ], [ -122.696423682999949, 49.115829493000049 ], [ -122.696436677999941, 49.114875497000064 ], [ -122.69644879, 49.114028796000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146280250", "BldgCostT": "99595000", "sL_LossRatio": "0.719266737598298", "sL_AssetLoss": "2500060", "sL_BldgLoss": "1798210", "sL_StrLoss": "826310", "sL_NStrLoss": "971900", "sL_ContLoss": "701850", "geom_point": "0101000020E61000000132F0B3FCAC5EC0065E1C4B0E8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.705927188999937, 49.11561731300003 ], [ -122.707172076999896, 49.115600392000054 ], [ -122.707150810999977, 49.117934707000103 ], [ -122.707147760999987, 49.118308487000121 ], [ -122.707143393999942, 49.118852791000101 ], [ -122.707076666999967, 49.118854134000074 ], [ -122.706034813999935, 49.118874780000127 ], [ -122.705472578999917, 49.11888596000005 ], [ -122.705020796, 49.118894913000098 ], [ -122.703979869999927, 49.118915536000017 ], [ -122.703810579999924, 49.118918899000072 ], [ -122.70171519299997, 49.11896039800007 ], [ -122.700494119999988, 49.118987805000089 ], [ -122.700184236999959, 49.118991341000047 ], [ -122.699660907999942, 49.11899731600009 ], [ -122.699072549999983, 49.119004038000071 ], [ -122.698729499999956, 49.11900793700007 ], [ -122.698460884999974, 49.1190110000001 ], [ -122.698414277, 49.119011599000046 ], [ -122.698058107999913, 49.119016079000041 ], [ -122.697413340999944, 49.119024192000033 ], [ -122.696381012999964, 49.119037199000033 ], [ -122.696393983999926, 49.118043608000065 ], [ -122.697542198999926, 49.118058190000106 ], [ -122.697955086999954, 49.118031198000018 ], [ -122.698093913000022, 49.118019666000059 ], [ -122.698692314999974, 49.117969994000141 ], [ -122.698915852999974, 49.117918312 ], [ -122.698933204999932, 49.117914290000073 ], [ -122.699150527999961, 49.117812061000073 ], [ -122.699247775999979, 49.117766300000042 ], [ -122.69955728799999, 49.117517193000026 ], [ -122.699611588999986, 49.117426902000062 ], [ -122.699661397999989, 49.117342811000064 ], [ -122.69966331799999, 49.1172908180001 ], [ -122.699686195999959, 49.116665002000111 ], [ -122.700691287999945, 49.116651073000128 ], [ -122.70174981199996, 49.11663638100007 ], [ -122.70313470799999, 49.116616696000023 ], [ -122.703130197999926, 49.116447993000094 ], [ -122.703192906999945, 49.116181389000076 ], [ -122.703369816999938, 49.115965994000071 ], [ -122.703627081999926, 49.115794599000075 ], [ -122.703875627999963, 49.115708573000063 ], [ -122.703950090999911, 49.115682796000058 ], [ -122.704336709999922, 49.115638792000084 ], [ -122.704765895999969, 49.11563299700002 ], [ -122.705927188999937, 49.11561731300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154435500", "BldgCostT": "101880000", "sL_LossRatio": "0.711370760764275", "sL_AssetLoss": "2509621", "sL_BldgLoss": "1785271", "sL_StrLoss": "810371", "sL_NStrLoss": "974900", "sL_ContLoss": "724350", "geom_point": "0101000020E6100000EC1B66A267AC5EC005D5A3FCE68E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.692156482999948, 49.118571214000077 ], [ -122.691966039, 49.118359887000047 ], [ -122.69124774299999, 49.117981830000112 ], [ -122.691033813999965, 49.117695864000105 ], [ -122.691029984999943, 49.11766863400009 ], [ -122.691000100999972, 49.117456923000091 ], [ -122.691049719999981, 49.115930951000088 ], [ -122.691071435999945, 49.115201684000027 ], [ -122.691091090999961, 49.114758780000024 ], [ -122.691121706999979, 49.114071289000023 ], [ -122.69253570299999, 49.114064413000023 ], [ -122.692992324999963, 49.114062720000085 ], [ -122.693846888999957, 49.114059593000029 ], [ -122.694594512000023, 49.114041747000059 ], [ -122.695710101999936, 49.11401510000011 ], [ -122.69644879, 49.114028796000092 ], [ -122.696436677999941, 49.114875497000064 ], [ -122.696423682999949, 49.115829493000049 ], [ -122.696394912999892, 49.117974819000047 ], [ -122.696393983999926, 49.118043608000065 ], [ -122.696381012999964, 49.119037199000033 ], [ -122.695710590999965, 49.119047254000044 ], [ -122.69545053399996, 49.11905115600004 ], [ -122.69515995899998, 49.119055523000057 ], [ -122.695041186999916, 49.119057302000037 ], [ -122.694437717999975, 49.119008973000049 ], [ -122.694295937000021, 49.118980358000087 ], [ -122.692960346999939, 49.118632879000188 ], [ -122.692500228999947, 49.118572790000087 ], [ -122.692388444999963, 49.11860357900013 ], [ -122.692195826, 49.118615682000026 ], [ -122.69178278099993, 49.118818352000062 ], [ -122.69135865699991, 49.119022495000117 ], [ -122.691272139999967, 49.119063982000057 ], [ -122.690763182999916, 49.119286226000028 ], [ -122.690656023999978, 49.119319307000097 ], [ -122.69025337, 49.119443578000066 ], [ -122.690210374999964, 49.119354825000123 ], [ -122.69075275199999, 49.119202107000056 ], [ -122.691154164999929, 49.119008984000089 ], [ -122.691237812999987, 49.118969213000142 ], [ -122.691511155999976, 49.118847156000079 ], [ -122.691751354999909, 49.118739892000065 ], [ -122.692156482999948, 49.118571214000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70156334", "BldgCostT": "41368334", "sL_LossRatio": "0.675800019056175", "sL_AssetLoss": "734670", "sL_BldgLoss": "496490", "sL_StrLoss": "207890", "sL_NStrLoss": "288600", "sL_ContLoss": "238180", "geom_point": "0101000020E61000004249FDCC0BAC5EC014C28B3ACA8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.684729659999931, 49.116161689000137 ], [ -122.681728639999989, 49.114830832000052 ], [ -122.68182545799999, 49.114722071000095 ], [ -122.68461923299995, 49.115978893000054 ], [ -122.684793045999982, 49.115981549000018 ], [ -122.68493764599998, 49.115931935000027 ], [ -122.685206987999948, 49.115669884000091 ], [ -122.68553630699995, 49.115704289000043 ], [ -122.685596336999936, 49.11571055800006 ], [ -122.686071511999955, 49.116110210000038 ], [ -122.686227258, 49.115988252000108 ], [ -122.686315179999909, 49.115919386000051 ], [ -122.686373201999913, 49.115201190000086 ], [ -122.686369099, 49.114835206000059 ], [ -122.68649591099998, 49.114342513000047 ], [ -122.686487582000012, 49.113979094000051 ], [ -122.68643359899994, 49.11387110800009 ], [ -122.686152099000012, 49.113785799 ], [ -122.685909204000026, 49.113195292000029 ], [ -122.685837288999963, 49.112877608000133 ], [ -122.685849591999926, 49.111877707000119 ], [ -122.685944488999951, 49.111794986000064 ], [ -122.68647538099998, 49.111745603000081 ], [ -122.686789207999965, 49.111762486000096 ], [ -122.687559572999945, 49.111965500000039 ], [ -122.688559687999927, 49.112616386000091 ], [ -122.688670275999968, 49.112852277000101 ], [ -122.688658353999969, 49.113885564000064 ], [ -122.68856725900001, 49.114338679000099 ], [ -122.688670569999886, 49.114523062000067 ], [ -122.689038051999944, 49.114844342000012 ], [ -122.689205948999955, 49.114909855000128 ], [ -122.689302747999946, 49.115070551000059 ], [ -122.689306358999971, 49.115309547000081 ], [ -122.689745358999929, 49.115357270000054 ], [ -122.690024090999941, 49.115291066000054 ], [ -122.690253888999976, 49.115198057000022 ], [ -122.691071435999945, 49.115201684000027 ], [ -122.691049719999981, 49.115930951000088 ], [ -122.691000100999972, 49.117456923000091 ], [ -122.691029984999943, 49.11766863400009 ], [ -122.691033813999965, 49.117695864000105 ], [ -122.69124774299999, 49.117981830000112 ], [ -122.691966039, 49.118359887000047 ], [ -122.692156482999948, 49.118571214000077 ], [ -122.691751354999909, 49.118739892000065 ], [ -122.691511155999976, 49.118847156000079 ], [ -122.691237812999987, 49.118969213000142 ], [ -122.691154164999929, 49.119008984000089 ], [ -122.690738406999955, 49.118825876000088 ], [ -122.689176918999948, 49.118133586000077 ], [ -122.684729659999931, 49.116161689000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126071666", "BldgCostT": "82526666", "sL_LossRatio": "0.744934977400682", "sL_AssetLoss": "1412432", "sL_BldgLoss": "1052170", "sL_StrLoss": "495540", "sL_NStrLoss": "556630", "sL_ContLoss": "360262", "geom_point": "0101000020E61000004B9E2D18C3AB5EC0D12C9643078F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.679946768999969, 49.119071785000109 ], [ -122.679967758999965, 49.118597001000111 ], [ -122.679975821999989, 49.11841477800003 ], [ -122.67990140899991, 49.118133161000024 ], [ -122.679740975999934, 49.114075167000095 ], [ -122.679680716999954, 49.113930404000072 ], [ -122.679736198999976, 49.11395468700006 ], [ -122.67982743099999, 49.113994590000054 ], [ -122.680015436999952, 49.114076835000084 ], [ -122.681728639999989, 49.114830832000052 ], [ -122.684729659999931, 49.116161689000137 ], [ -122.689176918999948, 49.118133586000077 ], [ -122.690738406999955, 49.118825876000088 ], [ -122.691154164999929, 49.119008984000089 ], [ -122.69075275199999, 49.119202107000056 ], [ -122.690210374999964, 49.119354825000123 ], [ -122.689724816999927, 49.119363318000119 ], [ -122.689524364999954, 49.11933100800006 ], [ -122.689352236999952, 49.119343721000071 ], [ -122.688474936999981, 49.119159027000066 ], [ -122.687854357, 49.119120985000094 ], [ -122.68769827099996, 49.11912042600013 ], [ -122.686172560000017, 49.119115112000067 ], [ -122.686053649999934, 49.119114227000068 ], [ -122.685628840000035, 49.119111093000086 ], [ -122.685400342, 49.119109350000066 ], [ -122.679946768999969, 49.119071785000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156020553", "BldgCostT": "97028746", "sL_LossRatio": "0.68005384787974", "sL_AssetLoss": "2540490", "sL_BldgLoss": "1727670", "sL_StrLoss": "771280", "sL_NStrLoss": "956390", "sL_ContLoss": "812820", "geom_point": "0101000020E610000040D01B38B1AB5EC0A1BA3D31808E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.68461923299995, 49.115978893000054 ], [ -122.68182545799999, 49.114722071000095 ], [ -122.681728639999989, 49.114830832000052 ], [ -122.680015436999952, 49.114076835000084 ], [ -122.67982743099999, 49.113994590000054 ], [ -122.679736198999976, 49.11395468700006 ], [ -122.679680716999954, 49.113930404000072 ], [ -122.679802786999971, 49.11383139400008 ], [ -122.679922486999942, 49.113709008000093 ], [ -122.679974099, 49.113561902000114 ], [ -122.680001593, 49.111237593000055 ], [ -122.680088724999948, 49.111239496000074 ], [ -122.680978526999951, 49.111258764000112 ], [ -122.68195442699999, 49.111279906000092 ], [ -122.684143702999961, 49.111282393000025 ], [ -122.684682587999973, 49.111283002000093 ], [ -122.684683616999948, 49.111556108000073 ], [ -122.684811779999961, 49.111988103000037 ], [ -122.684807310999958, 49.11318558500016 ], [ -122.684666631999931, 49.113610012000052 ], [ -122.684545621, 49.113975097000093 ], [ -122.685272690999909, 49.114170506000043 ], [ -122.685324611999974, 49.114249605000033 ], [ -122.685375092999934, 49.114309801000076 ], [ -122.685387690999931, 49.115286202000107 ], [ -122.68533299399999, 49.115477284000129 ], [ -122.685206987999948, 49.115669884000091 ], [ -122.68493764599998, 49.115931935000027 ], [ -122.684793045999982, 49.115981549000018 ], [ -122.68461923299995, 49.115978893000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "412972125", "BldgCostT": "252219205", "sL_LossRatio": "0.665252147664552", "sL_AssetLoss": "5698050", "sL_BldgLoss": "3790640", "sL_StrLoss": "1460550", "sL_NStrLoss": "2330090", "sL_ContLoss": "1907410", "geom_point": "0101000020E61000003C753F23E8AB5EC054AF4AD8ED8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.684811779999961, 49.111988103000037 ], [ -122.684683616999948, 49.111556108000073 ], [ -122.684682587999973, 49.111283002000093 ], [ -122.684143702999961, 49.111282393000025 ], [ -122.68195442699999, 49.111279906000092 ], [ -122.680978526999951, 49.111258764000112 ], [ -122.680088724999948, 49.111239496000074 ], [ -122.680001593, 49.111237593000055 ], [ -122.68000108499993, 49.11113475000014 ], [ -122.679992055999946, 49.111096277000108 ], [ -122.679986666999966, 49.111079291000081 ], [ -122.679985348999949, 49.110996797000141 ], [ -122.679906666999941, 49.109830249000041 ], [ -122.679926742999953, 49.109734265000057 ], [ -122.679967267, 49.109540223000046 ], [ -122.680017237999962, 49.109300570000038 ], [ -122.680126181999952, 49.108779408000075 ], [ -122.680116800999983, 49.108673941000085 ], [ -122.680104879999973, 49.108539753000045 ], [ -122.680087686999983, 49.108346396000023 ], [ -122.68007469899996, 49.108200059000083 ], [ -122.680051307999975, 49.107937047000057 ], [ -122.68003504299999, 49.107691093000014 ], [ -122.680010356999929, 49.107319179000044 ], [ -122.679946499999986, 49.106356235000149 ], [ -122.679923531, 49.106010306000094 ], [ -122.679916082999981, 49.105897868000085 ], [ -122.679816095999911, 49.104390017000114 ], [ -122.679968933999959, 49.104391459000098 ], [ -122.680638411999922, 49.104397791000167 ], [ -122.682256191999926, 49.10441310000008 ], [ -122.682707422999954, 49.104417550000029 ], [ -122.683042086999976, 49.104420834000059 ], [ -122.683096892999941, 49.104421384000034 ], [ -122.68373492399995, 49.10442764000009 ], [ -122.684829017999974, 49.104438408000171 ], [ -122.688516798999899, 49.104460103000079 ], [ -122.689031008999962, 49.104835594000107 ], [ -122.689300585999902, 49.104700793000085 ], [ -122.689386020999976, 49.104658105000098 ], [ -122.690107206999954, 49.104492004000086 ], [ -122.691136917999955, 49.104416498000028 ], [ -122.691134794, 49.104530919000091 ], [ -122.691134495999904, 49.104546214000102 ], [ -122.69115984099993, 49.105771237000077 ], [ -122.691166603999989, 49.10609810700003 ], [ -122.691156485999912, 49.107328398000035 ], [ -122.691152613999947, 49.10779819400009 ], [ -122.69116126099999, 49.108191134000045 ], [ -122.691175290999951, 49.108827193000103 ], [ -122.691176211999974, 49.109162503000036 ], [ -122.69117592799995, 49.109586128000068 ], [ -122.691175795999982, 49.109784300000072 ], [ -122.69117682800001, 49.109846769000114 ], [ -122.691188197999949, 49.110534409000117 ], [ -122.691204207999959, 49.111310809000059 ], [ -122.691165291999965, 49.11311109800004 ], [ -122.691121706999979, 49.114071289000023 ], [ -122.691091090999961, 49.114758780000024 ], [ -122.691071435999945, 49.115201684000027 ], [ -122.690253888999976, 49.115198057000022 ], [ -122.690024090999941, 49.115291066000054 ], [ -122.689745358999929, 49.115357270000054 ], [ -122.689306358999971, 49.115309547000081 ], [ -122.689302747999946, 49.115070551000059 ], [ -122.689205948999955, 49.114909855000128 ], [ -122.689038051999944, 49.114844342000012 ], [ -122.688670569999886, 49.114523062000067 ], [ -122.68856725900001, 49.114338679000099 ], [ -122.688658353999969, 49.113885564000064 ], [ -122.688670275999968, 49.112852277000101 ], [ -122.688559687999927, 49.112616386000091 ], [ -122.687559572999945, 49.111965500000039 ], [ -122.686789207999965, 49.111762486000096 ], [ -122.68647538099998, 49.111745603000081 ], [ -122.685944488999951, 49.111794986000064 ], [ -122.685849591999926, 49.111877707000119 ], [ -122.685837288999963, 49.112877608000133 ], [ -122.685909204000026, 49.113195292000029 ], [ -122.686152099000012, 49.113785799 ], [ -122.68643359899994, 49.11387110800009 ], [ -122.686487582000012, 49.113979094000051 ], [ -122.68649591099998, 49.114342513000047 ], [ -122.686369099, 49.114835206000059 ], [ -122.686373201999913, 49.115201190000086 ], [ -122.686315179999909, 49.115919386000051 ], [ -122.686227258, 49.115988252000108 ], [ -122.686071511999955, 49.116110210000038 ], [ -122.685596336999936, 49.11571055800006 ], [ -122.68553630699995, 49.115704289000043 ], [ -122.685206987999948, 49.115669884000091 ], [ -122.68533299399999, 49.115477284000129 ], [ -122.685387690999931, 49.115286202000107 ], [ -122.685375092999934, 49.114309801000076 ], [ -122.685324611999974, 49.114249605000033 ], [ -122.685272690999909, 49.114170506000043 ], [ -122.684545621, 49.113975097000093 ], [ -122.684666631999931, 49.113610012000052 ], [ -122.684807310999958, 49.11318558500016 ], [ -122.684811779999961, 49.111988103000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173539749", "BldgCostT": "116679999", "sL_LossRatio": "0.738785509174386", "sL_AssetLoss": "2465560", "sL_BldgLoss": "1821520", "sL_StrLoss": "854750", "sL_NStrLoss": "966770", "sL_ContLoss": "644040", "geom_point": "0101000020E6100000C14A81DC70AC5EC05B5EA041168E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.691188197999949, 49.110534409000117 ], [ -122.69117682800001, 49.109846769000114 ], [ -122.691175795999982, 49.109784300000072 ], [ -122.69117592799995, 49.109586128000068 ], [ -122.691176211999974, 49.109162503000036 ], [ -122.691175290999951, 49.108827193000103 ], [ -122.69116126099999, 49.108191134000045 ], [ -122.691152613999947, 49.10779819400009 ], [ -122.691156485999912, 49.107328398000035 ], [ -122.691166603999989, 49.10609810700003 ], [ -122.691821821999952, 49.106100442000063 ], [ -122.69202920599993, 49.106101195000107 ], [ -122.692368984999973, 49.106136900000045 ], [ -122.692640510999979, 49.1062291100001 ], [ -122.692934106999985, 49.106394902000048 ], [ -122.69310268199996, 49.106605599000012 ], [ -122.693225482999978, 49.106861718000062 ], [ -122.69380549499999, 49.106930010000077 ], [ -122.693954303999945, 49.106966113000034 ], [ -122.695102001999928, 49.107244691000126 ], [ -122.695357101999917, 49.107276900000073 ], [ -122.695969075999983, 49.107279494000089 ], [ -122.697240196999971, 49.107123008000023 ], [ -122.69919779699994, 49.106845216000117 ], [ -122.69966569499995, 49.106812694000084 ], [ -122.700040605, 49.106837712000114 ], [ -122.700772003999973, 49.106952093000096 ], [ -122.701667888999978, 49.107006598000034 ], [ -122.701670119999903, 49.107454457000109 ], [ -122.70167149599996, 49.107729507000116 ], [ -122.700619681999939, 49.107747591000141 ], [ -122.700324986999973, 49.107752091000052 ], [ -122.699508317999957, 49.107931582000063 ], [ -122.699041807999919, 49.10811830100009 ], [ -122.698743003999979, 49.108236981000033 ], [ -122.698158795999987, 49.108363300000036 ], [ -122.697200297999984, 49.108419490000053 ], [ -122.69681799199995, 49.108479800000062 ], [ -122.696458401999962, 49.108644495000071 ], [ -122.696166701999957, 49.10877970400005 ], [ -122.695922694999936, 49.108937087000079 ], [ -122.695626190999945, 49.109177681000119 ], [ -122.695574256999947, 49.109248356000101 ], [ -122.695359382999953, 49.109540698000039 ], [ -122.69523772699992, 49.109865909000099 ], [ -122.695246422999944, 49.110071697000144 ], [ -122.695374699999945, 49.110289214 ], [ -122.695509913999928, 49.110410512000037 ], [ -122.695591068999974, 49.110442846000119 ], [ -122.695769680999945, 49.110513993000019 ], [ -122.6961277, 49.110544906000058 ], [ -122.696785199000018, 49.110485703000066 ], [ -122.697056307999972, 49.110485105000038 ], [ -122.69766189799999, 49.110483811000101 ], [ -122.697706605999983, 49.111320598000077 ], [ -122.697092330999979, 49.111318034000114 ], [ -122.696483889999968, 49.111315513000122 ], [ -122.69647631, 49.112290311000088 ], [ -122.696460005999981, 49.11306028800005 ], [ -122.69644879, 49.114028796000092 ], [ -122.695710101999936, 49.11401510000011 ], [ -122.694594512000023, 49.114041747000059 ], [ -122.693846888999957, 49.114059593000029 ], [ -122.692992324999963, 49.114062720000085 ], [ -122.69253570299999, 49.114064413000023 ], [ -122.691121706999979, 49.114071289000023 ], [ -122.691165291999965, 49.11311109800004 ], [ -122.691204207999959, 49.111310809000059 ], [ -122.691188197999949, 49.110534409000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178918499", "BldgCostT": "121574999", "sL_LossRatio": "0.751430731022568", "sL_AssetLoss": "2222640", "sL_BldgLoss": "1670160", "sL_StrLoss": "731630", "sL_NStrLoss": "938530", "sL_ContLoss": "552480", "geom_point": "0101000020E610000040E56FADBCAC5EC0F629A656088E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.697706605999983, 49.111320598000077 ], [ -122.69766189799999, 49.110483811000101 ], [ -122.697056307999972, 49.110485105000038 ], [ -122.696785199000018, 49.110485703000066 ], [ -122.6961277, 49.110544906000058 ], [ -122.695769680999945, 49.110513993000019 ], [ -122.695591068999974, 49.110442846000119 ], [ -122.695509913999928, 49.110410512000037 ], [ -122.695374699999945, 49.110289214 ], [ -122.695246422999944, 49.110071697000144 ], [ -122.69523772699992, 49.109865909000099 ], [ -122.695359382999953, 49.109540698000039 ], [ -122.695574256999947, 49.109248356000101 ], [ -122.695626190999945, 49.109177681000119 ], [ -122.695922694999936, 49.108937087000079 ], [ -122.696166701999957, 49.10877970400005 ], [ -122.696458401999962, 49.108644495000071 ], [ -122.69681799199995, 49.108479800000062 ], [ -122.697200297999984, 49.108419490000053 ], [ -122.698158795999987, 49.108363300000036 ], [ -122.698743003999979, 49.108236981000033 ], [ -122.699041807999919, 49.10811830100009 ], [ -122.699508317999957, 49.107931582000063 ], [ -122.700324986999973, 49.107752091000052 ], [ -122.700619681999939, 49.107747591000141 ], [ -122.70167149599996, 49.107729507000116 ], [ -122.701676202999963, 49.108686695000081 ], [ -122.701680037999949, 49.109217630000082 ], [ -122.701681905, 49.109476305000044 ], [ -122.701684737999955, 49.109982113000115 ], [ -122.701689876999978, 49.110908687000126 ], [ -122.701692210999937, 49.1113222070001 ], [ -122.699745913999948, 49.11132200300009 ], [ -122.697706605999983, 49.111320598000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109208749", "BldgCostT": "71104999", "sL_LossRatio": "0.737175182971866", "sL_AssetLoss": "1191440", "sL_BldgLoss": "878300", "sL_StrLoss": "423900", "sL_NStrLoss": "454400", "sL_ContLoss": "313140", "geom_point": "0101000020E61000009BFED3AAA9AC5EC062C61D67818D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.693225482999978, 49.106861718000062 ], [ -122.69310268199996, 49.106605599000012 ], [ -122.692934106999985, 49.106394902000048 ], [ -122.692640510999979, 49.1062291100001 ], [ -122.692368984999973, 49.106136900000045 ], [ -122.69202920599993, 49.106101195000107 ], [ -122.691821821999952, 49.106100442000063 ], [ -122.691166603999989, 49.10609810700003 ], [ -122.69115984099993, 49.105771237000077 ], [ -122.691134495999904, 49.104546214000102 ], [ -122.694915106999986, 49.104407977000093 ], [ -122.695499287999951, 49.10438662000012 ], [ -122.69607957, 49.104371428 ], [ -122.69639474799996, 49.104363163000123 ], [ -122.696874605999966, 49.104350620000041 ], [ -122.697738027999932, 49.104328031000179 ], [ -122.698135258, 49.104317648000055 ], [ -122.701645781999915, 49.104225700000022 ], [ -122.702533580999955, 49.104219067000052 ], [ -122.703170874999927, 49.104214295000141 ], [ -122.703019709999964, 49.104317497000068 ], [ -122.705410151999928, 49.104305115000081 ], [ -122.70674320399999, 49.104298202000081 ], [ -122.70674752299999, 49.104832297000051 ], [ -122.706749395999964, 49.105062595000078 ], [ -122.706652510999973, 49.105062058000051 ], [ -122.705405736999936, 49.105055215000071 ], [ -122.704312709999982, 49.105049184000059 ], [ -122.703941108999942, 49.105133401000046 ], [ -122.703492694999966, 49.105316107000036 ], [ -122.702922289999947, 49.105731092000077 ], [ -122.702485605, 49.105535701000065 ], [ -122.702159294999944, 49.105443695000083 ], [ -122.70166001699999, 49.10537879400006 ], [ -122.701660959999955, 49.105574545000088 ], [ -122.701661794999922, 49.105754444000084 ], [ -122.701663863999926, 49.106177170000137 ], [ -122.701666156999934, 49.106644903000095 ], [ -122.701667824999987, 49.106986721000098 ], [ -122.701667888999978, 49.107006598000034 ], [ -122.700772003999973, 49.106952093000096 ], [ -122.700040605, 49.106837712000114 ], [ -122.69966569499995, 49.106812694000084 ], [ -122.69919779699994, 49.106845216000117 ], [ -122.697240196999971, 49.107123008000023 ], [ -122.695969075999983, 49.107279494000089 ], [ -122.695357101999917, 49.107276900000073 ], [ -122.695102001999928, 49.107244691000126 ], [ -122.693954303999945, 49.106966113000034 ], [ -122.69380549499999, 49.106930010000077 ], [ -122.693225482999978, 49.106861718000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2699417", "BldgCostT": "1861667", "sL_LossRatio": "0.73230565224598", "sL_AssetLoss": "60330", "sL_BldgLoss": "44180", "sL_StrLoss": "19610", "sL_NStrLoss": "24570", "sL_ContLoss": "16150", "geom_point": "0101000020E61000005F924E4D97AB5EC0592CA81C518A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.680164022999961, 49.078833270000054 ], [ -122.682195849999914, 49.07889603800006 ], [ -122.681939616999983, 49.082493060000111 ], [ -122.68023369099997, 49.082440365000096 ], [ -122.680256546999928, 49.082282047000064 ], [ -122.680222632999943, 49.081740485000111 ], [ -122.680170831999959, 49.081077211000064 ], [ -122.680092848999948, 49.080606121000052 ], [ -122.680074607999984, 49.080507591000092 ], [ -122.680069889999984, 49.080035190000011 ], [ -122.680164022999961, 49.078833270000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.74245939675174", "sL_AssetLoss": "8620", "sL_BldgLoss": "6400", "sL_StrLoss": "3170", "sL_NStrLoss": "3230", "sL_ContLoss": "2220", "geom_point": "0101000020E61000005719B6FB8FAB5EC0EA28A488CE894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.68040238699993, 49.074717395000086 ], [ -122.681040904999989, 49.074720475000106 ], [ -122.681017577999938, 49.0783634800001 ], [ -122.680198651999945, 49.078361215000029 ], [ -122.680242301999897, 49.077616190000107 ], [ -122.68026285799999, 49.077244103000076 ], [ -122.680265488999964, 49.077196730000033 ], [ -122.680288661999938, 49.076776316000114 ], [ -122.680355766999952, 49.075561623000034 ], [ -122.680374693999966, 49.075219346000019 ], [ -122.68040238699993, 49.074717395000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "370692750", "BldgCostT": "234795000", "sL_LossRatio": "0.667596769626217", "sL_AssetLoss": "6684923", "sL_BldgLoss": "4462833", "sL_StrLoss": "2041573", "sL_NStrLoss": "2421260", "sL_ContLoss": "2222090", "geom_point": "0101000020E61000001E5CADF288AC5EC06B728D09908B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.689031008999962, 49.104835594000107 ], [ -122.688516798999899, 49.104460103000079 ], [ -122.684829017999974, 49.104438408000171 ], [ -122.68373492399995, 49.10442764000009 ], [ -122.683096892999941, 49.104421384000034 ], [ -122.683042086999976, 49.104420834000059 ], [ -122.682707422999954, 49.104417550000029 ], [ -122.682256191999926, 49.10441310000008 ], [ -122.680638411999922, 49.104397791000167 ], [ -122.679968933999959, 49.104391459000098 ], [ -122.679816095999911, 49.104390017000114 ], [ -122.679902652999914, 49.103302097000032 ], [ -122.679959785999969, 49.102584480000132 ], [ -122.679650295, 49.100244770000081 ], [ -122.679675568999969, 49.1001068240001 ], [ -122.679839185999981, 49.098471994000064 ], [ -122.680064473999948, 49.097402424000094 ], [ -122.680044785999911, 49.096981470000046 ], [ -122.68048732799997, 49.096982695000115 ], [ -122.680489059999971, 49.096712836000066 ], [ -122.682132853999931, 49.096717374000093 ], [ -122.682134575999953, 49.096447515000115 ], [ -122.682956466999912, 49.096449775000124 ], [ -122.682958185999922, 49.096179915000072 ], [ -122.683780072999951, 49.096182169000045 ], [ -122.683781013000015, 49.096034307000124 ], [ -122.681833969999943, 49.09597421100009 ], [ -122.681912672999928, 49.094869796000033 ], [ -122.680198880999981, 49.094816871000084 ], [ -122.680214620999948, 49.094596118000055 ], [ -122.679853482999988, 49.094584962000084 ], [ -122.679894298999969, 49.094012543000055 ], [ -122.679684528999928, 49.094011960000095 ], [ -122.67968279199999, 49.094281821000095 ], [ -122.67943216, 49.094281124000034 ], [ -122.67946356899995, 49.093435976000109 ], [ -122.679471716999942, 49.093418 ], [ -122.679471010999961, 49.09323589000013 ], [ -122.679629796999919, 49.092694387000051 ], [ -122.67963329299999, 49.092687602000062 ], [ -122.679654900999978, 49.091769906000081 ], [ -122.67962272199999, 49.091320107000101 ], [ -122.67958098099993, 49.090406796000146 ], [ -122.679572548999914, 49.090070738000101 ], [ -122.6795642, 49.08973781600011 ], [ -122.679563056999953, 49.089692848000062 ], [ -122.679560305999956, 49.089583295000075 ], [ -122.67948154399997, 49.089006601000065 ], [ -122.679382146999927, 49.088494600000089 ], [ -122.679248516999934, 49.087678407000062 ], [ -122.679862591999921, 49.085843589000035 ], [ -122.679885403999933, 49.085465691000124 ], [ -122.679931594, 49.084586711000028 ], [ -122.679981182999967, 49.084386872000067 ], [ -122.679987279999978, 49.084362198000115 ], [ -122.680011139, 49.084063803000163 ], [ -122.680025805999932, 49.083880304000047 ], [ -122.680166818999979, 49.082903574000056 ], [ -122.680164795999957, 49.083218695 ], [ -122.681397303999915, 49.083222104000079 ], [ -122.681400758, 49.082682383000162 ], [ -122.683865751, 49.082689160000029 ], [ -122.683857185999969, 49.08403846200008 ], [ -122.684268030999988, 49.084039587000056 ], [ -122.684264607999964, 49.084579308000052 ], [ -122.68454158599999, 49.084580065000068 ], [ -122.684650903, 49.08304439800002 ], [ -122.689096783999929, 49.083181491000111 ], [ -122.689211201999939, 49.081571904000086 ], [ -122.689941149, 49.081594395000074 ], [ -122.690004940000023, 49.080696766000095 ], [ -122.689076076999967, 49.080668145000139 ], [ -122.689171283999954, 49.079328729000075 ], [ -122.688938153999914, 49.079321544000045 ], [ -122.689193828999919, 49.075724487000052 ], [ -122.691303623999929, 49.075789489000151 ], [ -122.691307568999918, 49.075153073000095 ], [ -122.691646630999941, 49.075153980000017 ], [ -122.69171834, 49.075154171000115 ], [ -122.691720710999931, 49.07477079100007 ], [ -122.692111965999985, 49.074767512000079 ], [ -122.693535880999974, 49.074755628000077 ], [ -122.695849599, 49.074736245000096 ], [ -122.69703539899993, 49.074726292000037 ], [ -122.697268500999911, 49.074682097000021 ], [ -122.697682833999949, 49.074674764000036 ], [ -122.697956302999955, 49.074669896000046 ], [ -122.698231989999968, 49.074700886000109 ], [ -122.699135697999935, 49.074696492000037 ], [ -122.70235374899994, 49.074680669000017 ], [ -122.705645308999948, 49.074664392000081 ], [ -122.713502597999977, 49.074581490000163 ], [ -122.71346489099993, 49.076513291 ], [ -122.713406554999949, 49.079499328000047 ], [ -122.713361052999957, 49.081824827000084 ], [ -122.71332230299997, 49.082674556000093 ], [ -122.713225150999918, 49.084804448000085 ], [ -122.709628885, 49.084694381000084 ], [ -122.709760388999925, 49.08283291 ], [ -122.709481894999954, 49.082824381000158 ], [ -122.709618344999953, 49.080892900000066 ], [ -122.709599048, 49.080892309000092 ], [ -122.709355926999933, 49.084333593000089 ], [ -122.707847681999908, 49.0842873900001 ], [ -122.707747237999939, 49.085708327000063 ], [ -122.70228356399997, 49.085540783000042 ], [ -122.702367249999966, 49.084358872000095 ], [ -122.699834781999982, 49.08428111900011 ], [ -122.699624495999942, 49.087248619000093 ], [ -122.699326945999971, 49.087239480000093 ], [ -122.699088261999975, 49.090606923000095 ], [ -122.699040514, 49.090605456000063 ], [ -122.699021405999972, 49.090875031000081 ], [ -122.701686170999935, 49.090956852000062 ], [ -122.701599417999915, 49.09218163700011 ], [ -122.701885859999976, 49.092182377000043 ], [ -122.701881013999923, 49.092991959000109 ], [ -122.70154208199996, 49.092991082000061 ], [ -122.701503855999974, 49.093530714000075 ], [ -122.70187778199994, 49.093531680000105 ], [ -122.701874548999953, 49.094071401000022 ], [ -122.70310733, 49.09407457700005 ], [ -122.703104111999934, 49.094614299000028 ], [ -122.705158768999951, 49.094619565000087 ], [ -122.705152374999955, 49.095699006000103 ], [ -122.70391955499997, 49.09569585100018 ], [ -122.703921158999933, 49.095425990000145 ], [ -122.703099284999922, 49.095423879000087 ], [ -122.703100892999927, 49.095154019000098 ], [ -122.702279020999939, 49.095151903000072 ], [ -122.702275492999931, 49.09574191100004 ], [ -122.702498135999946, 49.095748743000044 ], [ -122.702444814000017, 49.096501652000057 ], [ -122.702681896999977, 49.096502264000044 ], [ -122.702680286999964, 49.096772123000115 ], [ -122.70391313499999, 49.096775292000061 ], [ -122.703914739999973, 49.096505432000093 ], [ -122.705147580999935, 49.096508588000042 ], [ -122.705145982999952, 49.096778447000084 ], [ -122.705967880999964, 49.096780544000097 ], [ -122.705969475999893, 49.096510684000059 ], [ -122.70720231699994, 49.09651381700013 ], [ -122.707203904999972, 49.096243957000063 ], [ -122.706792960999934, 49.096242914000101 ], [ -122.706797728999902, 49.095433333000074 ], [ -122.708030544999971, 49.095436457000041 ], [ -122.708025795999944, 49.096246039000043 ], [ -122.709258630999926, 49.096249149000137 ], [ -122.709260205999925, 49.095979290000045 ], [ -122.710215471000012, 49.095981692000066 ], [ -122.710234169999964, 49.095717040000117 ], [ -122.710127127999968, 49.095713764000045 ], [ -122.710140449999955, 49.09552521700008 ], [ -122.709125303999912, 49.095494139000081 ], [ -122.709244989999974, 49.093800664000085 ], [ -122.709038505999928, 49.093794340000059 ], [ -122.709261586999943, 49.090637724000104 ], [ -122.709063199999903, 49.090631649000088 ], [ -122.709317383999988, 49.087034607000135 ], [ -122.713158684999954, 49.087152174000032 ], [ -122.713147533999987, 49.087759964000071 ], [ -122.71299772399999, 49.088762600000109 ], [ -122.712953630999905, 49.089057548000063 ], [ -122.712892442999959, 49.089467086000049 ], [ -122.712875124999968, 49.089582886000052 ], [ -122.712875050000022, 49.089591889000118 ], [ -122.712837164999954, 49.094044093000036 ], [ -122.71282189799993, 49.095839878000085 ], [ -122.712812123999925, 49.096985515000021 ], [ -122.712810366999946, 49.097196186000076 ], [ -122.712806678999954, 49.097627464000077 ], [ -122.712802614999973, 49.098104099000089 ], [ -122.712535576, 49.09809593100006 ], [ -122.712533726999965, 49.098416266000122 ], [ -122.712799946999922, 49.098416930000013 ], [ -122.712794707999976, 49.099031257000064 ], [ -122.712794419999938, 49.09906552100005 ], [ -122.712784315999926, 49.099315801000053 ], [ -122.712778089000011, 49.099468640000033 ], [ -122.712756628999941, 49.099999064000038 ], [ -122.712737412999971, 49.100474123 ], [ -122.711527401, 49.100486702000083 ], [ -122.710084914999968, 49.100495706000032 ], [ -122.707282192999941, 49.100503788000069 ], [ -122.707099177999979, 49.100504293000064 ], [ -122.706665992999959, 49.100506626000026 ], [ -122.706223896000012, 49.100508989000069 ], [ -122.701695730999916, 49.100525173000094 ], [ -122.701690750999916, 49.100933422000011 ], [ -122.701675063999971, 49.10221222900006 ], [ -122.701672855999959, 49.102394456000042 ], [ -122.701656193999895, 49.104079181000102 ], [ -122.701650224000019, 49.104163510000078 ], [ -122.701645781999915, 49.104225700000022 ], [ -122.698135258, 49.104317648000055 ], [ -122.697738027999932, 49.104328031000179 ], [ -122.696874605999966, 49.104350620000041 ], [ -122.69639474799996, 49.104363163000123 ], [ -122.69607957, 49.104371428 ], [ -122.695499287999951, 49.10438662000012 ], [ -122.694915106999986, 49.104407977000093 ], [ -122.691134495999904, 49.104546214000102 ], [ -122.691134794, 49.104530919000091 ], [ -122.691136917999955, 49.104416498000028 ], [ -122.690107206999954, 49.104492004000086 ], [ -122.689386020999976, 49.104658105000098 ], [ -122.689300585999902, 49.104700793000085 ], [ -122.689031008999962, 49.104835594000107 ] ], [ [ -122.687483649999962, 49.095382660000013 ], [ -122.687485342999977, 49.095112802000067 ], [ -122.688718147999936, 49.09511613200003 ], [ -122.688720181999912, 49.094791147000052 ], [ -122.687397856999965, 49.094750397000084 ], [ -122.687352899999951, 49.095382307000108 ], [ -122.687483649999962, 49.095382660000013 ] ], [ [ -122.689954315999941, 49.094579729000081 ], [ -122.689959537999982, 49.093741258000129 ], [ -122.689933104999923, 49.093740444000012 ], [ -122.689873457999965, 49.094579512000081 ], [ -122.689954315999941, 49.094579729000081 ] ], [ [ -122.691602946999922, 49.09379186300005 ], [ -122.691601381999959, 49.094044412000109 ], [ -122.692834161999969, 49.094047699000093 ], [ -122.692835826999911, 49.093777839000055 ], [ -122.694068598999976, 49.09378111200008 ], [ -122.694065283999933, 49.094320833000033 ], [ -122.694887139999963, 49.094323008000075 ], [ -122.694885484999958, 49.094592868000078 ], [ -122.695296417999941, 49.09459395400004 ], [ -122.695295889999926, 49.094680081000071 ], [ -122.69858278599996, 49.094781101000066 ], [ -122.69858386599995, 49.09460258400005 ], [ -122.699405728999963, 49.094604728000057 ], [ -122.699406411999959, 49.094491685000044 ], [ -122.695966686999938, 49.094385991000088 ], [ -122.696206769999932, 49.091002293 ], [ -122.69402497499999, 49.090935195000085 ], [ -122.693838613999958, 49.093560041000025 ], [ -122.692641385999963, 49.093523203000061 ], [ -122.692620080000012, 49.093823169000046 ], [ -122.691602946999922, 49.09379186300005 ] ], [ [ -122.68275846899995, 49.089972478000085 ], [ -122.682775491, 49.089733526000018 ], [ -122.682588371999969, 49.089727750000115 ], [ -122.682586815999983, 49.089972006000096 ], [ -122.68275846899995, 49.089972478000085 ] ], [ [ -122.68250541499998, 49.089432053000074 ], [ -122.682740808999981, 49.086127561000062 ], [ -122.684427711999945, 49.08617962600006 ], [ -122.684483962999963, 49.085389503000073 ], [ -122.684259473999973, 49.085388889000043 ], [ -122.684257765, 49.08565875000005 ], [ -122.683025193999953, 49.085655371000023 ], [ -122.683032063999946, 49.084575930000049 ], [ -122.681388673999933, 49.084571406000109 ], [ -122.68138004099994, 49.085920708000081 ], [ -122.680558322999957, 49.085918437000032 ], [ -122.680556589999924, 49.086188296000088 ], [ -122.680145729999978, 49.086187160000122 ], [ -122.680134916999947, 49.087870651000067 ], [ -122.680150534999967, 49.087969662000042 ], [ -122.680134252999949, 49.087974081000091 ], [ -122.680133597999927, 49.08807618000008 ], [ -122.679722719999972, 49.088075041000096 ], [ -122.67971924899993, 49.088614762000049 ], [ -122.680951891999968, 49.088618174000032 ], [ -122.68095016299999, 49.088888035000124 ], [ -122.68136104499996, 49.088889169000026 ], [ -122.681359319999984, 49.089159030000118 ], [ -122.682181091999936, 49.089161295000054 ], [ -122.682179366999947, 49.089431156000074 ], [ -122.68250541499998, 49.089432053000074 ] ], [ [ -122.68817164299999, 49.086757876000064 ], [ -122.688151125999951, 49.087046396000048 ], [ -122.688518052999939, 49.087057705000085 ], [ -122.688538568999959, 49.086769185000016 ], [ -122.68817164299999, 49.086757876000064 ] ], [ [ -122.703735951999946, 49.080795997000081 ], [ -122.703805709999941, 49.079810252000108 ], [ -122.70414290599993, 49.079820597000051 ], [ -122.704265187999937, 49.078092359000024 ], [ -122.709346360999959, 49.078248115000058 ], [ -122.709414624999965, 49.077281781000103 ], [ -122.709922961999936, 49.07729735000003 ], [ -122.709939445999964, 49.077063954000081 ], [ -122.70980726, 49.077059905000063 ], [ -122.709881599000013, 49.076007395 ], [ -122.709091362, 49.075983190000095 ], [ -122.709034890999973, 49.076782522000087 ], [ -122.70360634499994, 49.076616086000101 ], [ -122.703581182, 49.07697165300003 ], [ -122.698280752999935, 49.076808881 ], [ -122.698275959999975, 49.07760028700006 ], [ -122.697865169999915, 49.077599212000081 ], [ -122.697863531999985, 49.07786907400002 ], [ -122.696631152999913, 49.077865842000065 ], [ -122.69662951, 49.07813570200004 ], [ -122.69473113399998, 49.078130699000035 ], [ -122.694661912999933, 49.079106205000102 ], [ -122.696133450999966, 49.079151468000077 ], [ -122.696131410999925, 49.079180239000067 ], [ -122.699704929999939, 49.07929007400007 ], [ -122.69967864399996, 49.079661055000017 ], [ -122.701224597999953, 49.079708534000133 ], [ -122.701168680999928, 49.080498071000122 ], [ -122.701349843999978, 49.080503633000092 ], [ -122.70133435799994, 49.080722288000025 ], [ -122.703735951999946, 49.080795997000081 ] ], [ [ -122.698119509999955, 49.076790282000054 ], [ -122.698119729, 49.076787200000105 ], [ -122.697870139999949, 49.07677952800001 ], [ -122.697870079999959, 49.076789629000139 ], [ -122.698119509999955, 49.076790282000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257011084", "BldgCostT": "172173334", "sL_LossRatio": "0.748040288464024", "sL_AssetLoss": "2901575", "sL_BldgLoss": "2170495", "sL_StrLoss": "990985", "sL_NStrLoss": "1179510", "sL_ContLoss": "731080", "geom_point": "0101000020E610000037B1A7BA53AB5EC05D18D819158D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.674345304999989, 49.103238612000098 ], [ -122.674334274999978, 49.102050494000061 ], [ -122.674295289999989, 49.101062407000072 ], [ -122.674282309, 49.100707911000022 ], [ -122.674274636999925, 49.100508462000057 ], [ -122.674255375999962, 49.100006428000079 ], [ -122.674246378999953, 49.099772210000019 ], [ -122.67434418, 49.099457998000112 ], [ -122.674515560999964, 49.099320896000094 ], [ -122.674753285999955, 49.099404852000085 ], [ -122.674850985999967, 49.099513312000077 ], [ -122.676054046999965, 49.100020068000077 ], [ -122.676538857999944, 49.100134177000051 ], [ -122.677304698999976, 49.100243478000088 ], [ -122.6778437789999, 49.100269160000039 ], [ -122.679079094999963, 49.100285697000103 ], [ -122.679180275999926, 49.100287938000051 ], [ -122.679650295, 49.100244770000081 ], [ -122.679959785999969, 49.102584480000132 ], [ -122.679902652999914, 49.103302097000032 ], [ -122.679816095999911, 49.104390017000114 ], [ -122.676678003999911, 49.104380508000141 ], [ -122.674362889999912, 49.10437199200004 ], [ -122.674352054999972, 49.103674751000035 ], [ -122.674345304999989, 49.103238612000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83440249", "BldgCostT": "54124999", "sL_LossRatio": "0.718219976969652", "sL_AssetLoss": "1346050", "sL_BldgLoss": "966760", "sL_StrLoss": "425450", "sL_NStrLoss": "541310", "sL_ContLoss": "379290", "geom_point": "0101000020E6100000F05B849425AB5EC031962343928C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.672649920999959, 49.098544007000065 ], [ -122.672367992999909, 49.098465913000069 ], [ -122.67211662299998, 49.098439206000073 ], [ -122.672046726999895, 49.098438959000084 ], [ -122.671425182999926, 49.09843669000005 ], [ -122.670952527999972, 49.098441906000055 ], [ -122.669915581999973, 49.098446696000046 ], [ -122.669418003999965, 49.098453806000066 ], [ -122.668835611999967, 49.098460095000021 ], [ -122.668707732999948, 49.098463263000021 ], [ -122.668640801, 49.098464894000116 ], [ -122.668591360999955, 49.096480234000083 ], [ -122.66859098, 49.096465847000047 ], [ -122.668746679999956, 49.096424549000048 ], [ -122.668841112999971, 49.096399507000029 ], [ -122.669170401999949, 49.096211501000091 ], [ -122.66946132, 49.095798506000094 ], [ -122.669654194999922, 49.095710213000132 ], [ -122.670051594999933, 49.095737293000091 ], [ -122.670283386, 49.095828408000052 ], [ -122.671265400999971, 49.096460804000039 ], [ -122.671608805999981, 49.09643509600005 ], [ -122.672062806999961, 49.096148900000067 ], [ -122.672272750999952, 49.096069659000101 ], [ -122.672770812999914, 49.095881622000071 ], [ -122.673097316999986, 49.095882547000059 ], [ -122.673092001999976, 49.096692126000022 ], [ -122.671859158999922, 49.09668862700007 ], [ -122.671857378999945, 49.096958487000023 ], [ -122.671446429999918, 49.096957319000119 ], [ -122.671442867999986, 49.097497037000046 ], [ -122.671853821999932, 49.09749820600009 ], [ -122.67185204299993, 49.097768065 ], [ -122.672262998999898, 49.097769233000108 ], [ -122.67226122199996, 49.098039092000086 ], [ -122.673083139999932, 49.098041424000016 ], [ -122.673086683999983, 49.097501704000116 ], [ -122.67431954599995, 49.097505189000124 ], [ -122.674317780999985, 49.097775048000067 ], [ -122.67596160699999, 49.097779675000105 ], [ -122.675959850999931, 49.098049534000111 ], [ -122.676370809999952, 49.098050686000093 ], [ -122.676367301, 49.098590406 ], [ -122.678833080999965, 49.098597292000122 ], [ -122.678834821999985, 49.098327433000058 ], [ -122.679245782999942, 49.098328575000039 ], [ -122.67925274000001, 49.097249137000126 ], [ -122.679663690000012, 49.097250277000072 ], [ -122.679665427999936, 49.096980418000037 ], [ -122.680044785999911, 49.096981470000046 ], [ -122.680064473999948, 49.097402424000094 ], [ -122.679839185999981, 49.098471994000064 ], [ -122.679675568999969, 49.1001068240001 ], [ -122.679650295, 49.100244770000081 ], [ -122.679180275999926, 49.100287938000051 ], [ -122.679079094999963, 49.100285697000103 ], [ -122.6778437789999, 49.100269160000039 ], [ -122.677304698999976, 49.100243478000088 ], [ -122.676538857999944, 49.100134177000051 ], [ -122.676054046999965, 49.100020068000077 ], [ -122.674850985999967, 49.099513312000077 ], [ -122.674753285999955, 49.099404852000085 ], [ -122.674515560999964, 49.099320896000094 ], [ -122.673421708999982, 49.09885720000009 ], [ -122.673215672999945, 49.098773592000114 ], [ -122.673013982999947, 49.098691767000112 ], [ -122.672884151999966, 49.098639074000104 ], [ -122.672649920999959, 49.098544007000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330665364", "BldgCostT": "219166936", "sL_LossRatio": "0.745323934595761", "sL_AssetLoss": "3790580", "sL_BldgLoss": "2825210", "sL_StrLoss": "1202300", "sL_NStrLoss": "1622910", "sL_ContLoss": "965370", "geom_point": "0101000020E6100000026AE7EAFDAA5EC009667EFBDB8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668677799999926, 49.10154641400004 ], [ -122.668671468999932, 49.101223787000052 ], [ -122.66866311299998, 49.100798215000125 ], [ -122.668659184999981, 49.100599484000071 ], [ -122.668653578999979, 49.100006594000043 ], [ -122.668651714999896, 49.09980619500007 ], [ -122.668640859, 49.09847396300011 ], [ -122.668640801, 49.098464894000116 ], [ -122.668707732999948, 49.098463263000021 ], [ -122.668835611999967, 49.098460095000021 ], [ -122.669418003999965, 49.098453806000066 ], [ -122.669915581999973, 49.098446696000046 ], [ -122.670952527999972, 49.098441906000055 ], [ -122.671425182999926, 49.09843669000005 ], [ -122.672046726999895, 49.098438959000084 ], [ -122.67211662299998, 49.098439206000073 ], [ -122.672367992999909, 49.098465913000069 ], [ -122.672649920999959, 49.098544007000065 ], [ -122.672884151999966, 49.098639074000104 ], [ -122.673013982999947, 49.098691767000112 ], [ -122.673215672999945, 49.098773592000114 ], [ -122.673421708999982, 49.09885720000009 ], [ -122.674515560999964, 49.099320896000094 ], [ -122.67434418, 49.099457998000112 ], [ -122.674246378999953, 49.099772210000019 ], [ -122.674255375999962, 49.100006428000079 ], [ -122.674274636999925, 49.100508462000057 ], [ -122.674282309, 49.100707911000022 ], [ -122.674295289999989, 49.101062407000072 ], [ -122.674334274999978, 49.102050494000061 ], [ -122.674345304999989, 49.103238612000098 ], [ -122.673796211999971, 49.103235786000035 ], [ -122.673371489999923, 49.103233613000079 ], [ -122.67305643, 49.103232006000106 ], [ -122.67235620699995, 49.103228408000049 ], [ -122.672231199999914, 49.102793805000061 ], [ -122.672003607999955, 49.102280189000119 ], [ -122.671656984999956, 49.101763901 ], [ -122.67080398, 49.100996687000098 ], [ -122.670606099999958, 49.10108295900006 ], [ -122.66983299599994, 49.101419910000033 ], [ -122.669543220999984, 49.101546110000079 ], [ -122.668835286999951, 49.101545799000093 ], [ -122.668677799999926, 49.10154641400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227347916", "BldgCostT": "149861666", "sL_LossRatio": "0.741709180718314", "sL_AssetLoss": "2158110", "sL_BldgLoss": "1600690", "sL_StrLoss": "756950", "sL_NStrLoss": "843740", "sL_ContLoss": "557420", "geom_point": "0101000020E61000009D79F685A5AA5EC0AC7823F3C88C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.66630702599997, 49.098464167000053 ], [ -122.668640801, 49.098464894000116 ], [ -122.668640859, 49.09847396300011 ], [ -122.668651714999896, 49.09980619500007 ], [ -122.668653578999979, 49.100006594000043 ], [ -122.668659184999981, 49.100599484000071 ], [ -122.666576994999943, 49.101242403000072 ], [ -122.666208384999933, 49.101355599000044 ], [ -122.664420706999977, 49.101904601000044 ], [ -122.664412107999951, 49.101488885 ], [ -122.66439699199999, 49.100419601000091 ], [ -122.664387490999928, 49.100002978000056 ], [ -122.664380496999925, 49.099694502000077 ], [ -122.664373905999952, 49.099441904000109 ], [ -122.664372096999941, 49.099276107000087 ], [ -122.664355033999968, 49.098463509000112 ], [ -122.66630702599997, 49.098464167000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "690171570", "BldgCostT": "471443975", "sL_LossRatio": "0.809279430053062", "sL_AssetLoss": "5395590", "sL_BldgLoss": "4366540", "sL_StrLoss": "1932420", "sL_NStrLoss": "2434120", "sL_ContLoss": "1029050", "geom_point": "0101000020E61000005692851A8BAA5EC0410A6497248D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.661912643999941, 49.104301478000096 ], [ -122.661594637999954, 49.104248347000137 ], [ -122.660903224999956, 49.104245801000076 ], [ -122.660413712999912, 49.104101727000071 ], [ -122.660455729999939, 49.103859702000101 ], [ -122.660452158999988, 49.103740222000155 ], [ -122.660429757999964, 49.10364577000005 ], [ -122.660386419999938, 49.103555876000051 ], [ -122.6603417199999, 49.103474497000057 ], [ -122.660289031999937, 49.103403193000062 ], [ -122.660058557999946, 49.103244366000084 ], [ -122.660337853, 49.103173803000118 ], [ -122.664420706999977, 49.101904601000044 ], [ -122.666208384999933, 49.101355599000044 ], [ -122.666576994999943, 49.101242403000072 ], [ -122.668659184999981, 49.100599484000071 ], [ -122.66866311299998, 49.100798215000125 ], [ -122.668671468999932, 49.101223787000052 ], [ -122.668677799999926, 49.10154641400004 ], [ -122.66870389199994, 49.102883708000121 ], [ -122.668126619999924, 49.10287989800004 ], [ -122.667708746999949, 49.102877137000078 ], [ -122.667304676999919, 49.102874484000047 ], [ -122.666490597999967, 49.102869107000117 ], [ -122.665822419999984, 49.102868190000017 ], [ -122.665401892999952, 49.102907486000035 ], [ -122.664770810999954, 49.103020392000104 ], [ -122.66423171199996, 49.103051406000105 ], [ -122.664144625999981, 49.104304965000068 ], [ -122.661912643999941, 49.104301478000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413963667", "BldgCostT": "281561667", "sL_LossRatio": "0.792639570590577", "sL_AssetLoss": "3591910", "sL_BldgLoss": "2847090", "sL_StrLoss": "1267070", "sL_NStrLoss": "1580020", "sL_ContLoss": "744820", "geom_point": "0101000020E6100000092384475BAA5EC0E3FABAE3FF8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.659774894999941, 49.100407603000058 ], [ -122.66439699199999, 49.100419601000091 ], [ -122.664412107999951, 49.101488885 ], [ -122.664420706999977, 49.101904601000044 ], [ -122.660337853, 49.103173803000118 ], [ -122.660058557999946, 49.103244366000084 ], [ -122.65992349299998, 49.103161315000108 ], [ -122.659851795999913, 49.103108627000076 ], [ -122.659808738999956, 49.103069888000036 ], [ -122.659774106999947, 49.103032220000081 ], [ -122.659724655999966, 49.102965287000053 ], [ -122.659715764999959, 49.102949656000085 ], [ -122.659698752999958, 49.102897104000121 ], [ -122.659716381999914, 49.102360287000067 ], [ -122.65972126299998, 49.102270354000083 ], [ -122.659675810999886, 49.102170913000116 ], [ -122.659731213999919, 49.101494014000089 ], [ -122.659774894999941, 49.100407603000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267053553", "BldgCostT": "181403746", "sL_LossRatio": "0.780631094974411", "sL_AssetLoss": "2192380", "sL_BldgLoss": "1711440", "sL_StrLoss": "776200", "sL_NStrLoss": "935240", "sL_ContLoss": "480940", "geom_point": "0101000020E6100000A4D158B95FAA5EC0E4D7397ABA8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.660115016999939, 49.098453516000127 ], [ -122.664355033999968, 49.098463509000112 ], [ -122.664372096999941, 49.099276107000087 ], [ -122.664373905999952, 49.099441904000109 ], [ -122.664380496999925, 49.099694502000077 ], [ -122.664387490999928, 49.100002978000056 ], [ -122.66439699199999, 49.100419601000091 ], [ -122.659774894999941, 49.100407603000058 ], [ -122.659785875999944, 49.099998994 ], [ -122.659801128999945, 49.099431498000101 ], [ -122.659835972999957, 49.098507011000095 ], [ -122.659976989999947, 49.098506897000043 ], [ -122.660115016999939, 49.098453516000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173103167", "BldgCostT": "116116667", "sL_LossRatio": "0.804836213027653", "sL_AssetLoss": "1673210", "sL_BldgLoss": "1346660", "sL_StrLoss": "574590", "sL_NStrLoss": "772070", "sL_ContLoss": "326550", "geom_point": "0101000020E6100000B1FC2BF121AA5EC0810A37AEB98C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65671917899999, 49.100245905000079 ], [ -122.656736282999958, 49.100007819000069 ], [ -122.656737510999946, 49.099991018000061 ], [ -122.656841791999952, 49.098538294000029 ], [ -122.656855477999954, 49.098538157000057 ], [ -122.659835972999957, 49.098507011000095 ], [ -122.659801128999945, 49.099431498000101 ], [ -122.659785875999944, 49.099998994 ], [ -122.659774894999941, 49.100407603000058 ], [ -122.659241286999972, 49.100400901000071 ], [ -122.658719885999943, 49.100281989000088 ], [ -122.65671917899999, 49.100245905000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "688724373", "BldgCostT": "471228706", "sL_LossRatio": "0.852362931190553", "sL_AssetLoss": "5744560", "sL_BldgLoss": "4896450", "sL_StrLoss": "2284760", "sL_NStrLoss": "2611690", "sL_ContLoss": "848110", "geom_point": "0101000020E6100000D5586F92EEA95EC09F3AA827A08C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.652819606999913, 49.097558809000084 ], [ -122.653471896999974, 49.097215327000093 ], [ -122.653755283999885, 49.097066099000081 ], [ -122.654014295999943, 49.09702217600006 ], [ -122.654016020999904, 49.097021901000026 ], [ -122.654848576999939, 49.097320997000104 ], [ -122.655054394999965, 49.097322412000096 ], [ -122.655346706000017, 49.096963647000052 ], [ -122.655531524999958, 49.096736765000074 ], [ -122.65555220099999, 49.096711393000042 ], [ -122.655740366999908, 49.096579263000059 ], [ -122.656075406999946, 49.096344011000021 ], [ -122.656169585999919, 49.096354002000105 ], [ -122.656192859999962, 49.096763514000017 ], [ -122.656194104999955, 49.096785501000085 ], [ -122.656789404999955, 49.096601212000046 ], [ -122.657081623999929, 49.09651073700006 ], [ -122.65710334799995, 49.096504020000104 ], [ -122.65685236399996, 49.096768532000105 ], [ -122.656875611999979, 49.096885596000078 ], [ -122.65685743799996, 49.097732344000043 ], [ -122.65684242699993, 49.098433775000025 ], [ -122.65684209599999, 49.098487811000041 ], [ -122.656841791999952, 49.098538294000029 ], [ -122.656737510999946, 49.099991018000061 ], [ -122.656736282999958, 49.100007819000069 ], [ -122.65671917899999, 49.100245905000079 ], [ -122.656716712999923, 49.100297717000053 ], [ -122.656714993999941, 49.100333678000077 ], [ -122.65670570199994, 49.100528503000156 ], [ -122.653826597, 49.100538903000015 ], [ -122.653706285999959, 49.100345007000058 ], [ -122.653743016999954, 49.099999802000113 ], [ -122.653803324999927, 49.099433302000108 ], [ -122.653685294999931, 49.099322391000122 ], [ -122.652988281999953, 49.098904096000126 ], [ -122.653660205000023, 49.098441237000031 ], [ -122.653741672999971, 49.098385092000115 ], [ -122.653867092999931, 49.098298790000037 ], [ -122.653699412999956, 49.098201857000085 ], [ -122.652718566999965, 49.097634747000058 ], [ -122.652788931999936, 49.09758185500008 ], [ -122.652802926999982, 49.097571333000054 ], [ -122.652819606999913, 49.097558809000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110179395", "BldgCostT": "72946524", "sL_LossRatio": "0.731398160992917", "sL_AssetLoss": "1629140", "sL_BldgLoss": "1191550", "sL_StrLoss": "516400", "sL_NStrLoss": "675150", "sL_ContLoss": "437590", "geom_point": "0101000020E6100000DE8838E7F1A95EC0EF516620228C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651420028999937, 49.097024901000054 ], [ -122.651504710999973, 49.096932892000048 ], [ -122.651682113999954, 49.096742792000022 ], [ -122.651801380999942, 49.096615005000075 ], [ -122.651850033999949, 49.096167700000102 ], [ -122.651890685999973, 49.095315496000048 ], [ -122.652055898999947, 49.095170107000058 ], [ -122.652718503999921, 49.094714902000135 ], [ -122.653227186999985, 49.094399098000039 ], [ -122.6536251039999, 49.094102396000054 ], [ -122.653747766, 49.093793353000095 ], [ -122.653837414999956, 49.093567395000036 ], [ -122.653843982999916, 49.093437806000111 ], [ -122.653860492999925, 49.093150808000104 ], [ -122.65371877299999, 49.092702997000089 ], [ -122.654760216999961, 49.092501104000071 ], [ -122.655554498999933, 49.092344705000059 ], [ -122.656247804999936, 49.092280596000094 ], [ -122.656815197999919, 49.092254098000062 ], [ -122.657285303999942, 49.09226601000006 ], [ -122.657672648999934, 49.092331878000067 ], [ -122.658034811999954, 49.092393460000025 ], [ -122.658251565999961, 49.092430314000076 ], [ -122.65886779, 49.092535084000119 ], [ -122.658655685999975, 49.093259397000104 ], [ -122.658656699999966, 49.093856103000086 ], [ -122.65869541, 49.093945585000085 ], [ -122.658784803999978, 49.093997093000027 ], [ -122.65898089199996, 49.09403109600008 ], [ -122.659923304999907, 49.094006298000117 ], [ -122.659929018999975, 49.094385991000088 ], [ -122.659933200999959, 49.094664931000125 ], [ -122.659940546999962, 49.095150861000015 ], [ -122.659943111999965, 49.095321761000044 ], [ -122.65994568799999, 49.095492511000089 ], [ -122.659946220999942, 49.095527026000084 ], [ -122.659286387999941, 49.095545003000055 ], [ -122.659302594999971, 49.095121996000039 ], [ -122.659002018999942, 49.094914107000065 ], [ -122.658827614999936, 49.094682886000029 ], [ -122.658716211999916, 49.094535199000077 ], [ -122.65810190299996, 49.094246096000099 ], [ -122.658088565999904, 49.094252357000137 ], [ -122.657703338999966, 49.094433349000056 ], [ -122.657607617999972, 49.094478307000024 ], [ -122.65718328299999, 49.094441203000017 ], [ -122.656450179999965, 49.094507899000099 ], [ -122.656416106000037, 49.094511011000073 ], [ -122.656345591999923, 49.094699008000077 ], [ -122.656537499999985, 49.094906995000024 ], [ -122.657014311999944, 49.095114895000066 ], [ -122.657054217999956, 49.09545669900006 ], [ -122.656927486999933, 49.095834091000057 ], [ -122.657212791999939, 49.096258501000122 ], [ -122.657141789999955, 49.096492112000078 ], [ -122.65710334799995, 49.096504020000104 ], [ -122.657081623999929, 49.09651073700006 ], [ -122.656789404999955, 49.096601212000046 ], [ -122.656194104999955, 49.096785501000085 ], [ -122.656192859999962, 49.096763514000017 ], [ -122.656169585999919, 49.096354002000105 ], [ -122.656075406999946, 49.096344011000021 ], [ -122.655740366999908, 49.096579263000059 ], [ -122.65555220099999, 49.096711393000042 ], [ -122.655531524999958, 49.096736765000074 ], [ -122.655346706000017, 49.096963647000052 ], [ -122.655054394999965, 49.097322412000096 ], [ -122.654848576999939, 49.097320997000104 ], [ -122.654016020999904, 49.097021901000026 ], [ -122.654014295999943, 49.09702217600006 ], [ -122.653755283999885, 49.097066099000081 ], [ -122.653471896999974, 49.097215327000093 ], [ -122.652819606999913, 49.097558809000084 ], [ -122.652802926999982, 49.097571333000054 ], [ -122.652788931999936, 49.09758185500008 ], [ -122.652718566999965, 49.097634747000058 ], [ -122.652605743, 49.097719603000051 ], [ -122.652587644999983, 49.097708980000114 ], [ -122.65184007699996, 49.097271007000082 ], [ -122.651420028999937, 49.097024901000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119166917", "BldgCostT": "80236667", "sL_LossRatio": "0.740523348209897", "sL_AssetLoss": "1851234", "sL_BldgLoss": "1370882", "sL_StrLoss": "604622", "sL_NStrLoss": "766260", "sL_ContLoss": "480352", "geom_point": "0101000020E6100000FF891DCF9FA95EC0D766086CF38B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.649334154999949, 49.096536953000047 ], [ -122.64923337499999, 49.096528652000082 ], [ -122.646706631999962, 49.096478687000058 ], [ -122.64663507799996, 49.096477397000044 ], [ -122.646569848999917, 49.096476220000078 ], [ -122.646571419999958, 49.096432996000011 ], [ -122.646572557, 49.096400608000089 ], [ -122.646590987999929, 49.095366608000056 ], [ -122.646591465999919, 49.095339527000114 ], [ -122.646628588999974, 49.093626564000019 ], [ -122.646642043999961, 49.092924260000132 ], [ -122.646764325, 49.092920609000025 ], [ -122.647483509999958, 49.092915987000012 ], [ -122.647896406999962, 49.092847787000075 ], [ -122.648150499999986, 49.092779093000118 ], [ -122.648451904999931, 49.092510889000096 ], [ -122.648542277999965, 49.092338005000059 ], [ -122.648584375, 49.092134691000076 ], [ -122.649483084999943, 49.092144697000059 ], [ -122.64948302499999, 49.091907941000095 ], [ -122.649482988999978, 49.091656079000067 ], [ -122.649482952999975, 49.091485136000131 ], [ -122.649482936999945, 49.091407067000013 ], [ -122.649482738999936, 49.090621494000061 ], [ -122.649482477999953, 49.089584302000112 ], [ -122.649965705999975, 49.089585785000033 ], [ -122.650587721999969, 49.089588448000029 ], [ -122.650943822999963, 49.089589945000043 ], [ -122.651929957999968, 49.089594115000104 ], [ -122.652176508999929, 49.089595165000127 ], [ -122.653444799999988, 49.089600502000017 ], [ -122.653430718999914, 49.090577902000106 ], [ -122.65341631299999, 49.090949706000075 ], [ -122.653433107999945, 49.091477405000077 ], [ -122.653487868999932, 49.091901376000074 ], [ -122.653523693999901, 49.092178694000097 ], [ -122.65371877299999, 49.092702997000089 ], [ -122.653860492999925, 49.093150808000104 ], [ -122.653843982999916, 49.093437806000111 ], [ -122.653837414999956, 49.093567395000036 ], [ -122.653747766, 49.093793353000095 ], [ -122.6536251039999, 49.094102396000054 ], [ -122.653227186999985, 49.094399098000039 ], [ -122.652718503999921, 49.094714902000135 ], [ -122.652055898999947, 49.095170107000058 ], [ -122.651890685999973, 49.095315496000048 ], [ -122.651850033999949, 49.096167700000102 ], [ -122.651801380999942, 49.096615005000075 ], [ -122.651682113999954, 49.096742792000022 ], [ -122.651504710999973, 49.096932892000048 ], [ -122.651420028999937, 49.097024901000054 ], [ -122.650962569999976, 49.096797895000137 ], [ -122.650526810999935, 49.096668680000029 ], [ -122.650490712999911, 49.096658 ], [ -122.650025758999959, 49.096591182000012 ], [ -122.649515157999957, 49.096551851000093 ], [ -122.649334154999949, 49.096536953000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86950895", "BldgCostT": "57111524", "sL_LossRatio": "0.716937307715817", "sL_AssetLoss": "1472430", "sL_BldgLoss": "1055640", "sL_StrLoss": "437120", "sL_NStrLoss": "618520", "sL_ContLoss": "416790", "geom_point": "0101000020E6100000A638CC9F08AA5EC081E88BB5A68B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657672648999934, 49.092331878000067 ], [ -122.657285303999942, 49.09226601000006 ], [ -122.656815197999919, 49.092254098000062 ], [ -122.656247804999936, 49.092280596000094 ], [ -122.655554498999933, 49.092344705000059 ], [ -122.654760216999961, 49.092501104000071 ], [ -122.65371877299999, 49.092702997000089 ], [ -122.653523693999901, 49.092178694000097 ], [ -122.653487868999932, 49.091901376000074 ], [ -122.653433107999945, 49.091477405000077 ], [ -122.65341631299999, 49.090949706000075 ], [ -122.653430718999914, 49.090577902000106 ], [ -122.653444799999988, 49.089600502000017 ], [ -122.654451801999983, 49.089609286000076 ], [ -122.655050747999923, 49.088551 ], [ -122.656270400999972, 49.088892303000172 ], [ -122.657656279999969, 49.089280116000033 ], [ -122.658132176999956, 49.089413271000069 ], [ -122.65979766399991, 49.089879274000054 ], [ -122.659848054999941, 49.091429166000047 ], [ -122.659878248999931, 49.092535009000123 ], [ -122.65990989, 49.093582311000063 ], [ -122.659923304999907, 49.094006298000117 ], [ -122.65898089199996, 49.09403109600008 ], [ -122.658784803999978, 49.093997093000027 ], [ -122.65869541, 49.093945585000085 ], [ -122.658656699999966, 49.093856103000086 ], [ -122.658655685999975, 49.093259397000104 ], [ -122.65886779, 49.092535084000119 ], [ -122.658251565999961, 49.092430314000076 ], [ -122.658034811999954, 49.092393460000025 ], [ -122.657672648999934, 49.092331878000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90908416", "BldgCostT": "59596666", "sL_LossRatio": "0.725817543693234", "sL_AssetLoss": "1265070", "sL_BldgLoss": "918210", "sL_StrLoss": "401380", "sL_NStrLoss": "516830", "sL_ContLoss": "346860", "geom_point": "0101000020E6100000E4CF861591A95EC05446A7D77B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.646807069999966, 49.088616580000057 ], [ -122.646844605999959, 49.087622899000088 ], [ -122.646919921999967, 49.087628081000034 ], [ -122.646988993999983, 49.087632806000023 ], [ -122.64790458, 49.087731702000085 ], [ -122.652375163999935, 49.088145529000023 ], [ -122.65267528899993, 49.088173313000105 ], [ -122.653538357999977, 49.088259696000108 ], [ -122.653923976000016, 49.088333970000093 ], [ -122.655050747999923, 49.088551 ], [ -122.654451801999983, 49.089609286000076 ], [ -122.653444799999988, 49.089600502000017 ], [ -122.652176508999929, 49.089595165000127 ], [ -122.651929957999968, 49.089594115000104 ], [ -122.650943822999963, 49.089589945000043 ], [ -122.650587721999969, 49.089588448000029 ], [ -122.649965705999975, 49.089585785000033 ], [ -122.649482477999953, 49.089584302000112 ], [ -122.649482738999936, 49.090621494000061 ], [ -122.649482936999945, 49.091407067000013 ], [ -122.649482952999975, 49.091485136000131 ], [ -122.649482988999978, 49.091656079000067 ], [ -122.64948302499999, 49.091907941000095 ], [ -122.649483084999943, 49.092144697000059 ], [ -122.648584375, 49.092134691000076 ], [ -122.648542277999965, 49.092338005000059 ], [ -122.648451904999931, 49.092510889000096 ], [ -122.648150499999986, 49.092779093000118 ], [ -122.647896406999962, 49.092847787000075 ], [ -122.647483509999958, 49.092915987000012 ], [ -122.646764325, 49.092920609000025 ], [ -122.646642043999961, 49.092924260000132 ], [ -122.646653257999901, 49.092340409000023 ], [ -122.646653414999946, 49.092331325000053 ], [ -122.646680509999968, 49.091674574000116 ], [ -122.646767016999959, 49.089575305000025 ], [ -122.646791686999919, 49.089022698000086 ], [ -122.646797840999966, 49.0888608590001 ], [ -122.646807069999966, 49.088616580000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166914416", "BldgCostT": "112661666", "sL_LossRatio": "0.78451847288024", "sL_AssetLoss": "1882760", "sL_BldgLoss": "1477060", "sL_StrLoss": "672860", "sL_NStrLoss": "804200", "sL_ContLoss": "405700", "geom_point": "0101000020E6100000F9CF607435A95EC0C02CC4552B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.641324891999915, 49.087489296000093 ], [ -122.640855802999937, 49.08529990300012 ], [ -122.640830807, 49.084804744000024 ], [ -122.641150951999961, 49.084306698000056 ], [ -122.643764558999948, 49.084208867000036 ], [ -122.647050326999974, 49.084008570000094 ], [ -122.647039866999989, 49.084226997000059 ], [ -122.64702905199999, 49.084452661000086 ], [ -122.645679448999914, 49.084432541000091 ], [ -122.64403849599999, 49.084407998000124 ], [ -122.64233970399999, 49.084369307000053 ], [ -122.642328444000015, 49.084680905000063 ], [ -122.642302140999945, 49.085409369000132 ], [ -122.64229162599996, 49.085700795000086 ], [ -122.643965309999899, 49.085841394000106 ], [ -122.645178496999961, 49.085951410000092 ], [ -122.645397581999958, 49.085950105000087 ], [ -122.645617792999971, 49.085895687000047 ], [ -122.6457339899999, 49.08584071000012 ], [ -122.646007795999978, 49.08574560800011 ], [ -122.646289819999964, 49.085689503000012 ], [ -122.646921123999974, 49.085704700000157 ], [ -122.646919253999926, 49.085751247000132 ], [ -122.646891078999914, 49.086457279000065 ], [ -122.646844956999971, 49.087613837000042 ], [ -122.646844605999959, 49.087622899000088 ], [ -122.646807069999966, 49.088616580000057 ], [ -122.646797840999966, 49.0888608590001 ], [ -122.646791686999919, 49.089022698000086 ], [ -122.646767016999959, 49.089575305000025 ], [ -122.646615908999962, 49.089574684000027 ], [ -122.646451529999965, 49.089573998000112 ], [ -122.646150222999907, 49.089572789000073 ], [ -122.645314733999939, 49.089569374000028 ], [ -122.644709912999943, 49.08956689700004 ], [ -122.644124819999917, 49.08956492400003 ], [ -122.644082123999937, 49.089564767000084 ], [ -122.643862976999927, 49.089564023000108 ], [ -122.643090699999973, 49.089561415000034 ], [ -122.641241418999968, 49.089538806000121 ], [ -122.641317285999946, 49.088523696000109 ], [ -122.641314804, 49.088008998000078 ], [ -122.641321572999942, 49.087800998000048 ], [ -122.641324891999915, 49.087489296000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126860500", "BldgCostT": "80650000", "sL_LossRatio": "0.717840057792618", "sL_AssetLoss": "1758010", "sL_BldgLoss": "1261970", "sL_StrLoss": "560230", "sL_NStrLoss": "701740", "sL_ContLoss": "496040", "geom_point": "0101000020E6100000854346727FA95EC0B1CB01CCC68A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.646919253999926, 49.085751247000132 ], [ -122.646921123999974, 49.085704700000157 ], [ -122.646289819999964, 49.085689503000012 ], [ -122.646007795999978, 49.08574560800011 ], [ -122.6457339899999, 49.08584071000012 ], [ -122.645617792999971, 49.085895687000047 ], [ -122.645397581999958, 49.085950105000087 ], [ -122.645178496999961, 49.085951410000092 ], [ -122.643965309999899, 49.085841394000106 ], [ -122.64229162599996, 49.085700795000086 ], [ -122.642302140999945, 49.085409369000132 ], [ -122.642328444000015, 49.084680905000063 ], [ -122.64233970399999, 49.084369307000053 ], [ -122.64403849599999, 49.084407998000124 ], [ -122.645679448999914, 49.084432541000091 ], [ -122.64702905199999, 49.084452661000086 ], [ -122.647039866999989, 49.084226997000059 ], [ -122.647050326999974, 49.084008570000094 ], [ -122.647050828999937, 49.083998206000032 ], [ -122.647066939999917, 49.083624330000063 ], [ -122.647097199999948, 49.082922520000075 ], [ -122.647117743999956, 49.08244631100014 ], [ -122.647136638999953, 49.08200731199999 ], [ -122.648658895999972, 49.082006096000086 ], [ -122.650038618999986, 49.082006803000098 ], [ -122.652587979999964, 49.082055594000032 ], [ -122.652799484999932, 49.082063995000063 ], [ -122.652764254999965, 49.08255491000012 ], [ -122.652738508999931, 49.0829138080001 ], [ -122.652749583999977, 49.083197105000096 ], [ -122.653041813999963, 49.083492802000102 ], [ -122.653082538, 49.083553736000042 ], [ -122.653185200999985, 49.083707298000078 ], [ -122.653191005999929, 49.083854387000031 ], [ -122.651944389999954, 49.083866910000083 ], [ -122.651940735, 49.083927403000104 ], [ -122.651892606999979, 49.08472150300004 ], [ -122.651866198999983, 49.085621890000034 ], [ -122.648490188999972, 49.085586101000025 ], [ -122.64847883500002, 49.085841134000056 ], [ -122.648468031000036, 49.086083811000037 ], [ -122.648449993999961, 49.086487915000099 ], [ -122.647027282999929, 49.086473203000025 ], [ -122.646891078999914, 49.086457279000065 ], [ -122.646919253999926, 49.085751247000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93868719", "BldgCostT": "58035412", "sL_LossRatio": "0.676675738262311", "sL_AssetLoss": "1429370", "sL_BldgLoss": "967220", "sL_StrLoss": "409090", "sL_NStrLoss": "558130", "sL_ContLoss": "462150", "geom_point": "0101000020E6100000BEEAD002D7A95EC011855CCAF58A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651892606999979, 49.08472150300004 ], [ -122.651940735, 49.083927403000104 ], [ -122.651944389999954, 49.083866910000083 ], [ -122.653191005999929, 49.083854387000031 ], [ -122.653159321999965, 49.084733896000074 ], [ -122.654370495999956, 49.084737408000102 ], [ -122.655559185999977, 49.084750092000064 ], [ -122.656729992999956, 49.084764001000089 ], [ -122.657922691999929, 49.084776695000059 ], [ -122.657878815999965, 49.085675699000035 ], [ -122.657827814999919, 49.086576296000068 ], [ -122.657827182999966, 49.086576282000102 ], [ -122.657126177999928, 49.086567106000125 ], [ -122.653102572999927, 49.086513899000117 ], [ -122.648449993999961, 49.086487915000099 ], [ -122.648468031000036, 49.086083811000037 ], [ -122.64847883500002, 49.085841134000056 ], [ -122.648490188999972, 49.085586101000025 ], [ -122.651866198999983, 49.085621890000034 ], [ -122.651892606999979, 49.08472150300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "371015808", "BldgCostT": "244379565", "sL_LossRatio": "0.727267586747285", "sL_AssetLoss": "4951740", "sL_BldgLoss": "3601240", "sL_StrLoss": "1541110", "sL_NStrLoss": "2060130", "sL_ContLoss": "1350500", "geom_point": "0101000020E61000001F1318A10EAA5EC068EA6D1AF88A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.655050747999923, 49.088551 ], [ -122.653923976000016, 49.088333970000093 ], [ -122.653538357999977, 49.088259696000108 ], [ -122.65267528899993, 49.088173313000105 ], [ -122.652375163999935, 49.088145529000023 ], [ -122.64790458, 49.087731702000085 ], [ -122.646988993999983, 49.087632806000023 ], [ -122.646919921999967, 49.087628081000034 ], [ -122.646844605999959, 49.087622899000088 ], [ -122.646844956999971, 49.087613837000042 ], [ -122.646891078999914, 49.086457279000065 ], [ -122.647027282999929, 49.086473203000025 ], [ -122.648449993999961, 49.086487915000099 ], [ -122.653102572999927, 49.086513899000117 ], [ -122.657126177999928, 49.086567106000125 ], [ -122.657827182999966, 49.086576282000102 ], [ -122.657827814999919, 49.086576296000068 ], [ -122.657878815999965, 49.085675699000035 ], [ -122.657922691999929, 49.084776695000059 ], [ -122.656729992999956, 49.084764001000089 ], [ -122.655559185999977, 49.084750092000064 ], [ -122.654370495999956, 49.084737408000102 ], [ -122.653159321999965, 49.084733896000074 ], [ -122.653191005999929, 49.083854387000031 ], [ -122.653185200999985, 49.083707298000078 ], [ -122.653082538, 49.083553736000042 ], [ -122.653041813999963, 49.083492802000102 ], [ -122.652749583999977, 49.083197105000096 ], [ -122.652738508999931, 49.0829138080001 ], [ -122.652764254999965, 49.08255491000012 ], [ -122.652799484999932, 49.082063995000063 ], [ -122.656322710999987, 49.082043465000098 ], [ -122.65635507699993, 49.082043089000095 ], [ -122.656584985, 49.082040510000063 ], [ -122.657117772999953, 49.082034566000132 ], [ -122.658114224, 49.082070007000034 ], [ -122.659214799999987, 49.08206990700009 ], [ -122.65921359, 49.082430399000017 ], [ -122.659294078999949, 49.082586103000082 ], [ -122.659407888999937, 49.082678905000094 ], [ -122.660809488999945, 49.083272207000114 ], [ -122.661002412999935, 49.083062795000032 ], [ -122.661186396999952, 49.082940499000088 ], [ -122.661371910999947, 49.082912101000062 ], [ -122.663674690999926, 49.082925010000075 ], [ -122.663760908999976, 49.083002488000034 ], [ -122.664099393999919, 49.083550993000124 ], [ -122.66412777499994, 49.083804295000014 ], [ -122.664041893999979, 49.084066610000015 ], [ -122.663457495999978, 49.084619787000072 ], [ -122.664424581999953, 49.085106785000114 ], [ -122.664127937999936, 49.085422573000116 ], [ -122.664088219999925, 49.085464895000079 ], [ -122.663466392999965, 49.086406306000185 ], [ -122.663414313999951, 49.086442968000036 ], [ -122.663038219, 49.086707589000127 ], [ -122.661219780999943, 49.085759797000073 ], [ -122.660526298999969, 49.086362815000086 ], [ -122.660688754999939, 49.086903143000029 ], [ -122.660679124999888, 49.087323728000101 ], [ -122.660612342999983, 49.087489509000086 ], [ -122.660451009999946, 49.087889811000075 ], [ -122.659893679999954, 49.088597996000054 ], [ -122.659882566999968, 49.088714817000067 ], [ -122.659974053999946, 49.088775353000067 ], [ -122.660080724999943, 49.088795771000079 ], [ -122.661837346999931, 49.088793599000134 ], [ -122.661831311999919, 49.089584682000037 ], [ -122.660014469999936, 49.08962465700003 ], [ -122.659852334999968, 49.089708849000075 ], [ -122.65979766399991, 49.089879274000054 ], [ -122.658132176999956, 49.089413271000069 ], [ -122.657656279999969, 49.089280116000033 ], [ -122.656270400999972, 49.088892303000172 ], [ -122.655050747999923, 49.088551 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190593227", "BldgCostT": "126934856", "sL_LossRatio": "0.728961371377956", "sL_AssetLoss": "3070780", "sL_BldgLoss": "2238480", "sL_StrLoss": "970430", "sL_NStrLoss": "1268050", "sL_ContLoss": "832300", "geom_point": "0101000020E6100000715324DB90AA5EC05A262E8D008B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.661831311999919, 49.089584682000037 ], [ -122.661837346999931, 49.088793599000134 ], [ -122.660080724999943, 49.088795771000079 ], [ -122.659974053999946, 49.088775353000067 ], [ -122.659882566999968, 49.088714817000067 ], [ -122.659893679999954, 49.088597996000054 ], [ -122.660451009999946, 49.087889811000075 ], [ -122.660612342999983, 49.087489509000086 ], [ -122.660679124999888, 49.087323728000101 ], [ -122.660688754999939, 49.086903143000029 ], [ -122.660526298999969, 49.086362815000086 ], [ -122.661219780999943, 49.085759797000073 ], [ -122.663038219, 49.086707589000127 ], [ -122.663414313999951, 49.086442968000036 ], [ -122.663466392999965, 49.086406306000185 ], [ -122.664088219999925, 49.085464895000079 ], [ -122.664127937999936, 49.085422573000116 ], [ -122.664424581999953, 49.085106785000114 ], [ -122.663457495999978, 49.084619787000072 ], [ -122.664041893999979, 49.084066610000015 ], [ -122.66412777499994, 49.083804295000014 ], [ -122.664099393999919, 49.083550993000124 ], [ -122.663760908999976, 49.083002488000034 ], [ -122.663674690999926, 49.082925010000075 ], [ -122.661371910999947, 49.082912101000062 ], [ -122.661186396999952, 49.082940499000088 ], [ -122.661002412999935, 49.083062795000032 ], [ -122.660809488999945, 49.083272207000114 ], [ -122.659407888999937, 49.082678905000094 ], [ -122.659294078999949, 49.082586103000082 ], [ -122.65921359, 49.082430399000017 ], [ -122.659214799999987, 49.08206990700009 ], [ -122.664959887999913, 49.082124107000077 ], [ -122.667778265999956, 49.082143908000084 ], [ -122.668979341999886, 49.082154098000075 ], [ -122.668870332999973, 49.083833878000092 ], [ -122.668818344999949, 49.084634744000027 ], [ -122.66876695, 49.085389324000111 ], [ -122.668735014, 49.085857800000063 ], [ -122.66866769899994, 49.086836283000103 ], [ -122.668628309, 49.087467195000066 ], [ -122.668619840999909, 49.087602247000177 ], [ -122.668610183999974, 49.087757398000043 ], [ -122.66859684299996, 49.087970825000113 ], [ -122.668568223999969, 49.088429214000023 ], [ -122.668548550999944, 49.08874425900008 ], [ -122.668497692999935, 49.089558103000115 ], [ -122.667225009, 49.089550184000082 ], [ -122.665875305999947, 49.089567809000087 ], [ -122.665599588999925, 49.089568971000062 ], [ -122.665311974999966, 49.089570176000066 ], [ -122.66477771599989, 49.089572403000055 ], [ -122.663750411, 49.089576689000125 ], [ -122.662778059999965, 49.08958074200013 ], [ -122.662325950999957, 49.089582628000052 ], [ -122.661831311999919, 49.089584682000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118851167", "BldgCostT": "76336667", "sL_LossRatio": "0.715156211671833", "sL_AssetLoss": "1793720", "sL_BldgLoss": "1282790", "sL_StrLoss": "564750", "sL_NStrLoss": "718040", "sL_ContLoss": "510930", "geom_point": "0101000020E61000002EEA7A3F81AA5EC0DCE28EF55C8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.658175517999908, 49.081005705000109 ], [ -122.658223228999987, 49.080151002000051 ], [ -122.658368797999941, 49.080181614000089 ], [ -122.667923706999915, 49.080206196000098 ], [ -122.667986790999933, 49.079286204000056 ], [ -122.668059404999937, 49.078309725000075 ], [ -122.669285141999936, 49.078299067000103 ], [ -122.668979341999886, 49.082154098000075 ], [ -122.667778265999956, 49.082143908000084 ], [ -122.664959887999913, 49.082124107000077 ], [ -122.659214799999987, 49.08206990700009 ], [ -122.658114224, 49.082070007000034 ], [ -122.658167906999978, 49.081131591000016 ], [ -122.658175517999908, 49.081005705000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105208834", "BldgCostT": "68748334", "sL_LossRatio": "0.702385979179373", "sL_AssetLoss": "1918290", "sL_BldgLoss": "1347380", "sL_StrLoss": "546580", "sL_NStrLoss": "800800", "sL_ContLoss": "570910", "geom_point": "0101000020E61000000D98E1BB64AA5EC0FBC1AF47178A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.658323589999924, 49.078293007000077 ], [ -122.658368904999975, 49.077566194000049 ], [ -122.658377488999918, 49.077388903000021 ], [ -122.658389854999882, 49.077143727000085 ], [ -122.658403212999985, 49.076878695000055 ], [ -122.658439405999928, 49.076469806000105 ], [ -122.661313307999961, 49.07649150600006 ], [ -122.661258397000012, 49.077392002000131 ], [ -122.661227733999908, 49.078080350000057 ], [ -122.6612178889999, 49.078300998000039 ], [ -122.663306002999903, 49.078303317000035 ], [ -122.665308599, 49.078305496000063 ], [ -122.665538036999976, 49.078305868 ], [ -122.665962524999955, 49.078306499000121 ], [ -122.668059404999937, 49.078309725000075 ], [ -122.667986790999933, 49.079286204000056 ], [ -122.667923706999915, 49.080206196000098 ], [ -122.658368797999941, 49.080181614000089 ], [ -122.658223228999987, 49.080151002000051 ], [ -122.658262092999905, 49.079227495000069 ], [ -122.658323589999924, 49.078293007000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218803601", "BldgCostT": "143443563", "sL_LossRatio": "0.723257314844414", "sL_AssetLoss": "3315860", "sL_BldgLoss": "2398220", "sL_StrLoss": "969270", "sL_NStrLoss": "1428950", "sL_ContLoss": "917640", "geom_point": "0101000020E6100000D52168B387AA5EC0E4039701C6894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.661258397000012, 49.077392002000131 ], [ -122.661313307999961, 49.07649150600006 ], [ -122.658439405999928, 49.076469806000105 ], [ -122.65847051199998, 49.076093104000044 ], [ -122.658498482, 49.075607297 ], [ -122.658538702000016, 49.074665911000075 ], [ -122.661004695999978, 49.074667693000016 ], [ -122.662407676, 49.074665391000025 ], [ -122.66408491199995, 49.074676 ], [ -122.664535493999963, 49.074675160000048 ], [ -122.665192703999949, 49.074673940000089 ], [ -122.665535789999964, 49.074673304000036 ], [ -122.666831209999899, 49.074681944000176 ], [ -122.667736892, 49.074705531000085 ], [ -122.66820763799997, 49.074706618000043 ], [ -122.669479659999979, 49.074717241000037 ], [ -122.669443375999947, 49.076086008000082 ], [ -122.669405551999944, 49.076672459000072 ], [ -122.669285141999936, 49.078299067000103 ], [ -122.668059404999937, 49.078309725000075 ], [ -122.665962524999955, 49.078306499000121 ], [ -122.665538036999976, 49.078305868 ], [ -122.665308599, 49.078305496000063 ], [ -122.663306002999903, 49.078303317000035 ], [ -122.6612178889999, 49.078300998000039 ], [ -122.661227733999908, 49.078080350000057 ], [ -122.661258397000012, 49.077392002000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117351083", "BldgCostT": "75128333", "sL_LossRatio": "0.703982162686443", "sL_AssetLoss": "1821799", "sL_BldgLoss": "1282514", "sL_StrLoss": "553654", "sL_NStrLoss": "728860", "sL_ContLoss": "539285", "geom_point": "0101000020E6100000659A132860AA5EC0661780044D894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.664251081999936, 49.070125408000102 ], [ -122.665463912999897, 49.07013320100004 ], [ -122.66547088, 49.070573215000088 ], [ -122.66547312799996, 49.070717126000048 ], [ -122.665535789999964, 49.074673304000036 ], [ -122.665192703999949, 49.074673940000089 ], [ -122.664535493999963, 49.074675160000048 ], [ -122.66408491199995, 49.074676 ], [ -122.662407676, 49.074665391000025 ], [ -122.661004695999978, 49.074667693000016 ], [ -122.658538702000016, 49.074665911000075 ], [ -122.65853959899998, 49.071734111000133 ], [ -122.658529381000037, 49.071074986000092 ], [ -122.658530911999932, 49.07080551100006 ], [ -122.66085108299994, 49.070813002000115 ], [ -122.660868842999918, 49.07081305100013 ], [ -122.661713670000012, 49.070815765000113 ], [ -122.662345394999988, 49.070817803000025 ], [ -122.664002695999969, 49.070835887000065 ], [ -122.663998904999929, 49.070123789000085 ], [ -122.664251081999936, 49.070125408000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91759083", "BldgCostT": "63018333", "sL_LossRatio": "0.748385915972963", "sL_AssetLoss": "1584490", "sL_BldgLoss": "1185810", "sL_StrLoss": "516810", "sL_NStrLoss": "669000", "sL_ContLoss": "398680", "geom_point": "0101000020E610000002B5DE9042AA5EC09027EE1DDA884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.663544038999959, 49.067408322000091 ], [ -122.663982612999959, 49.067408702000066 ], [ -122.663996278999946, 49.068256517000059 ], [ -122.663997888999944, 49.06835558100007 ], [ -122.664002660999955, 49.068652534000137 ], [ -122.664006991999941, 49.068920894 ], [ -122.664006301999976, 49.069065004000016 ], [ -122.664004338999959, 49.069426420000092 ], [ -122.664001814999963, 49.069892299000074 ], [ -122.663998904999929, 49.070123789000085 ], [ -122.664002695999969, 49.070835887000065 ], [ -122.662345394999988, 49.070817803000025 ], [ -122.661713670000012, 49.070815765000113 ], [ -122.660868842999918, 49.07081305100013 ], [ -122.66085108299994, 49.070813002000115 ], [ -122.658530911999932, 49.07080551100006 ], [ -122.658529381000037, 49.071074986000092 ], [ -122.656627487999941, 49.071069794000074 ], [ -122.656749093999949, 49.069222394000086 ], [ -122.656724385999951, 49.067431708000107 ], [ -122.65850769199993, 49.067427790000117 ], [ -122.658780067999913, 49.067426909000126 ], [ -122.660187122999943, 49.067422306000033 ], [ -122.660272543999952, 49.067421649000075 ], [ -122.661401514999966, 49.06741320600009 ], [ -122.662730603999989, 49.067407604000088 ], [ -122.663544038999959, 49.067408322000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123219917", "BldgCostT": "82561667", "sL_LossRatio": "0.745300334264281", "sL_AssetLoss": "1687886", "sL_BldgLoss": "1257982", "sL_StrLoss": "563552", "sL_NStrLoss": "694430", "sL_ContLoss": "429904", "geom_point": "0101000020E61000002F9D8325E6A95EC06B85232717894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.653673695999885, 49.074659491000041 ], [ -122.65366650499999, 49.072701800000033 ], [ -122.651568813999972, 49.072693414000064 ], [ -122.651114902999964, 49.072691608000099 ], [ -122.651110187999961, 49.071862317000054 ], [ -122.651106208999977, 49.071537682000056 ], [ -122.65109910699999, 49.070931900000105 ], [ -122.651098393999959, 49.07054159800002 ], [ -122.651096212999931, 49.0698737600001 ], [ -122.651094275999966, 49.069285097000069 ], [ -122.651093198999959, 49.069010096000049 ], [ -122.651086881999973, 49.067466100000068 ], [ -122.652167041999988, 49.067459267000061 ], [ -122.653098249999985, 49.067453359000105 ], [ -122.653768564999908, 49.067449132000029 ], [ -122.654411909, 49.067445042000088 ], [ -122.655125513999963, 49.067440512000097 ], [ -122.65585027899999, 49.067436506000021 ], [ -122.656724385999951, 49.067431708000107 ], [ -122.656749093999949, 49.069222394000086 ], [ -122.656627487999941, 49.071069794000074 ], [ -122.658529381000037, 49.071074986000092 ], [ -122.65853959899998, 49.071734111000133 ], [ -122.658538702000016, 49.074665911000075 ], [ -122.657649409999976, 49.074661606000078 ], [ -122.656638591, 49.074671601000063 ], [ -122.65643050499996, 49.074672405000136 ], [ -122.655076623999975, 49.074658996000018 ], [ -122.653673695999885, 49.074659491000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122677000", "BldgCostT": "82870000", "sL_LossRatio": "0.734501077532201", "sL_AssetLoss": "1995300", "sL_BldgLoss": "1465550", "sL_StrLoss": "655200", "sL_NStrLoss": "810350", "sL_ContLoss": "529750", "geom_point": "0101000020E61000004FF00BB795A95EC0031A8DF825894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.647441391999962, 49.072677109000026 ], [ -122.64742740299998, 49.071844804000065 ], [ -122.647399816999922, 49.070080109000052 ], [ -122.647399072, 49.069286959000067 ], [ -122.647397827999924, 49.067964654000043 ], [ -122.647397397999924, 49.06748888900011 ], [ -122.648374382, 49.067482693000038 ], [ -122.648958098999941, 49.067478998000105 ], [ -122.651086881999973, 49.067466100000068 ], [ -122.651093198999959, 49.069010096000049 ], [ -122.651094275999966, 49.069285097000069 ], [ -122.651096212999931, 49.0698737600001 ], [ -122.651098393999959, 49.07054159800002 ], [ -122.65109910699999, 49.070931900000105 ], [ -122.651106208999977, 49.071537682000056 ], [ -122.651110187999961, 49.071862317000054 ], [ -122.651114902999964, 49.072691608000099 ], [ -122.651568813999972, 49.072693414000064 ], [ -122.65366650499999, 49.072701800000033 ], [ -122.653673695999885, 49.074659491000041 ], [ -122.65228889499997, 49.074655999000072 ], [ -122.65092630299992, 49.074648706000112 ], [ -122.650213644999951, 49.074644880000108 ], [ -122.649530895999959, 49.07464120100007 ], [ -122.648829900999971, 49.074642714000063 ], [ -122.647474903000017, 49.07464558300007 ], [ -122.64745860799998, 49.073731183000106 ], [ -122.647441391999962, 49.072677109000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98600167", "BldgCostT": "67056667", "sL_LossRatio": "0.743706709397291", "sL_AssetLoss": "1547680", "sL_BldgLoss": "1151020", "sL_StrLoss": "499180", "sL_NStrLoss": "651840", "sL_ContLoss": "396660", "geom_point": "0101000020E6100000CA3E6588E5A95EC017161E2CCA894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657649409999976, 49.074661606000078 ], [ -122.658538702000016, 49.074665911000075 ], [ -122.658498482, 49.075607297 ], [ -122.65847051199998, 49.076093104000044 ], [ -122.658439405999928, 49.076469806000105 ], [ -122.658403212999985, 49.076878695000055 ], [ -122.658389854999882, 49.077143727000085 ], [ -122.658377488999918, 49.077388903000021 ], [ -122.658368904999975, 49.077566194000049 ], [ -122.658323589999924, 49.078293007000077 ], [ -122.657035018999963, 49.078305484000055 ], [ -122.656267789999944, 49.078312895000046 ], [ -122.655514578999956, 49.078312524000069 ], [ -122.654885383999954, 49.078312199000052 ], [ -122.654282225, 49.078312371000095 ], [ -122.653509783999979, 49.078312588000081 ], [ -122.652798284999932, 49.078310304000127 ], [ -122.652114275999949, 49.078305199000077 ], [ -122.651530181999959, 49.078307915000053 ], [ -122.650755991999986, 49.078311502000126 ], [ -122.650817505999925, 49.076988347000032 ], [ -122.65092630299992, 49.074648706000112 ], [ -122.65228889499997, 49.074655999000072 ], [ -122.653673695999885, 49.074659491000041 ], [ -122.655076623999975, 49.074658996000018 ], [ -122.65643050499996, 49.074672405000136 ], [ -122.656638591, 49.074671601000063 ], [ -122.657649409999976, 49.074661606000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107050084", "BldgCostT": "70353334", "sL_LossRatio": "0.715558471500049", "sL_AssetLoss": "1793968", "sL_BldgLoss": "1283689", "sL_StrLoss": "576629", "sL_NStrLoss": "707060", "sL_ContLoss": "510279", "geom_point": "0101000020E6100000D1DE967EB8A95EC0F9455387268A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.647136638999953, 49.08200731199999 ], [ -122.647205200999935, 49.080620056000072 ], [ -122.647257623999963, 49.079558809000083 ], [ -122.647280715999969, 49.079090987000022 ], [ -122.64728381499998, 49.079028078000128 ], [ -122.647287836999979, 49.078946936000079 ], [ -122.647295293999932, 49.078795685000053 ], [ -122.647303890999979, 49.078632602000063 ], [ -122.647321305, 49.078301686000039 ], [ -122.647324791999978, 49.07821904700004 ], [ -122.647330433, 49.078084419000049 ], [ -122.647336079999931, 49.077949355000023 ], [ -122.647376150999904, 49.076996027000071 ], [ -122.647413948999912, 49.076096037000035 ], [ -122.647439254999981, 49.075493733000116 ], [ -122.647474903000017, 49.07464558300007 ], [ -122.648829900999971, 49.074642714000063 ], [ -122.649530895999959, 49.07464120100007 ], [ -122.650213644999951, 49.074644880000108 ], [ -122.65092630299992, 49.074648706000112 ], [ -122.650817505999925, 49.076988347000032 ], [ -122.650755991999986, 49.078311502000126 ], [ -122.651530181999959, 49.078307915000053 ], [ -122.652114275999949, 49.078305199000077 ], [ -122.652798284999932, 49.078310304000127 ], [ -122.653509783999979, 49.078312588000081 ], [ -122.654282225, 49.078312371000095 ], [ -122.654885383999954, 49.078312199000052 ], [ -122.655514578999956, 49.078312524000069 ], [ -122.656267789999944, 49.078312895000046 ], [ -122.657035018999963, 49.078305484000055 ], [ -122.658323589999924, 49.078293007000077 ], [ -122.658262092999905, 49.079227495000069 ], [ -122.658223228999987, 49.080151002000051 ], [ -122.658175517999908, 49.081005705000109 ], [ -122.658167906999978, 49.081131591000016 ], [ -122.658114224, 49.082070007000034 ], [ -122.657117772999953, 49.082034566000132 ], [ -122.656584985, 49.082040510000063 ], [ -122.65635507699993, 49.082043089000095 ], [ -122.656322710999987, 49.082043465000098 ], [ -122.652799484999932, 49.082063995000063 ], [ -122.652587979999964, 49.082055594000032 ], [ -122.650038618999986, 49.082006803000098 ], [ -122.648658895999972, 49.082006096000086 ], [ -122.647136638999953, 49.08200731199999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219916228", "BldgCostT": "146834857", "sL_LossRatio": "0.72188903835044", "sL_AssetLoss": "3283639", "sL_BldgLoss": "2370423", "sL_StrLoss": "1115343", "sL_NStrLoss": "1255080", "sL_ContLoss": "913216", "geom_point": "0101000020E6100000E35739D516A95EC0EFD5F97D208A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.640256146999917, 49.082344823000028 ], [ -122.640271400999964, 49.082014611000034 ], [ -122.638767659999942, 49.082032328 ], [ -122.637531385999964, 49.082046920000103 ], [ -122.636837573999941, 49.082050412000044 ], [ -122.636093616999958, 49.082054192000044 ], [ -122.636093013999968, 49.081152895000102 ], [ -122.636093256999914, 49.080856036000071 ], [ -122.636093685999953, 49.080370331000054 ], [ -122.636093806999952, 49.080250801000076 ], [ -122.636095186999952, 49.080208376000044 ], [ -122.636122572999938, 49.079362685000028 ], [ -122.636124880999958, 49.079290097000104 ], [ -122.636127360999964, 49.079209816000059 ], [ -122.636136705999931, 49.07890395400004 ], [ -122.636152000999971, 49.078403191000099 ], [ -122.636189153999936, 49.077634866000039 ], [ -122.636264347999969, 49.076078784000167 ], [ -122.636268396999967, 49.075995 ], [ -122.636372392999931, 49.074687840000109 ], [ -122.637137331999924, 49.074684986000065 ], [ -122.63804111099995, 49.074681575000071 ], [ -122.639013313999897, 49.074677905000044 ], [ -122.640423068999922, 49.07467256700005 ], [ -122.641339234999947, 49.074669089000082 ], [ -122.642038831, 49.074666429000047 ], [ -122.646283402999956, 49.074650189000117 ], [ -122.647474903000017, 49.07464558300007 ], [ -122.647439254999981, 49.075493733000116 ], [ -122.647413948999912, 49.076096037000035 ], [ -122.647376150999904, 49.076996027000071 ], [ -122.647336079999931, 49.077949355000023 ], [ -122.647330433, 49.078084419000049 ], [ -122.647324791999978, 49.07821904700004 ], [ -122.647321305, 49.078301686000039 ], [ -122.647303890999979, 49.078632602000063 ], [ -122.647295293999932, 49.078795685000053 ], [ -122.647287836999979, 49.078946936000079 ], [ -122.64728381499998, 49.079028078000128 ], [ -122.647280715999969, 49.079090987000022 ], [ -122.647257623999963, 49.079558809000083 ], [ -122.647205200999935, 49.080620056000072 ], [ -122.647136638999953, 49.08200731199999 ], [ -122.647117743999956, 49.08244631100014 ], [ -122.647097199999948, 49.082922520000075 ], [ -122.647066939999917, 49.083624330000063 ], [ -122.647050828999937, 49.083998206000032 ], [ -122.647050326999974, 49.084008570000094 ], [ -122.643764558999948, 49.084208867000036 ], [ -122.641150951999961, 49.084306698000056 ], [ -122.640830807, 49.084804744000024 ], [ -122.640855802999937, 49.08529990300012 ], [ -122.640139478999984, 49.085020594000106 ], [ -122.640157902999945, 49.084384888000059 ], [ -122.640198205999965, 49.083599410000048 ], [ -122.640256146999917, 49.082344823000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224799834", "BldgCostT": "149963334", "sL_LossRatio": "0.724497219844148", "sL_AssetLoss": "3422470", "sL_BldgLoss": "2479570", "sL_StrLoss": "1115720", "sL_NStrLoss": "1363850", "sL_ContLoss": "942900", "geom_point": "0101000020E610000012106AF16FA85EC0E517A1AF8B8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.624742108999953, 49.089284076000119 ], [ -122.624718909999956, 49.088244186000061 ], [ -122.624712873999954, 49.087602191000059 ], [ -122.624706771999939, 49.086954473000041 ], [ -122.624696383999947, 49.085853394000083 ], [ -122.624688902999978, 49.085236403000053 ], [ -122.624672397999959, 49.083880605000033 ], [ -122.624679700999963, 49.083477997000038 ], [ -122.624686085999926, 49.082564674 ], [ -122.624688800999962, 49.08218048700013 ], [ -122.62471099599999, 49.080063958000046 ], [ -122.624714480999984, 49.079731147000054 ], [ -122.624730669999963, 49.078185726000051 ], [ -122.624732125999984, 49.078049087000075 ], [ -122.624741080999954, 49.07719454700009 ], [ -122.624765208999946, 49.074893385000038 ], [ -122.625183094999926, 49.074886477000092 ], [ -122.626319120999952, 49.074867662000017 ], [ -122.627277641999953, 49.074851796000075 ], [ -122.628092212, 49.074838302000089 ], [ -122.628122202999961, 49.074839507000021 ], [ -122.62933270099991, 49.074888109000064 ], [ -122.630694123999902, 49.074813555000034 ], [ -122.631532829999969, 49.074767610000102 ], [ -122.632565918999916, 49.074711005000061 ], [ -122.636372392999931, 49.074687840000109 ], [ -122.636268396999967, 49.075995 ], [ -122.636264347999969, 49.076078784000167 ], [ -122.636189153999936, 49.077634866000039 ], [ -122.636152000999971, 49.078403191000099 ], [ -122.636136705999931, 49.07890395400004 ], [ -122.636127360999964, 49.079209816000059 ], [ -122.636124880999958, 49.079290097000104 ], [ -122.636122572999938, 49.079362685000028 ], [ -122.636095186999952, 49.080208376000044 ], [ -122.636093806999952, 49.080250801000076 ], [ -122.636093685999953, 49.080370331000054 ], [ -122.636093256999914, 49.080856036000071 ], [ -122.636093013999968, 49.081152895000102 ], [ -122.636093616999958, 49.082054192000044 ], [ -122.636837573999941, 49.082050412000044 ], [ -122.637531385999964, 49.082046920000103 ], [ -122.638767659999942, 49.082032328 ], [ -122.640271400999964, 49.082014611000034 ], [ -122.640256146999917, 49.082344823000028 ], [ -122.640198205999965, 49.083599410000048 ], [ -122.640157902999945, 49.084384888000059 ], [ -122.640139478999984, 49.085020594000106 ], [ -122.640855802999937, 49.08529990300012 ], [ -122.641324891999915, 49.087489296000093 ], [ -122.641321572999942, 49.087800998000048 ], [ -122.641314804, 49.088008998000078 ], [ -122.641317285999946, 49.088523696000109 ], [ -122.641241418999968, 49.089538806000121 ], [ -122.639411945999925, 49.089526773000031 ], [ -122.637918905999925, 49.089516914000093 ], [ -122.637507987000035, 49.089514254000115 ], [ -122.637481148999953, 49.089514079000075 ], [ -122.635727839999944, 49.089502695000064 ], [ -122.62938, 49.089461195000091 ], [ -122.624947497999983, 49.089415795000072 ], [ -122.624885838999958, 49.089321936000019 ], [ -122.624742108999953, 49.089284076000119 ] ], [ [ -122.633507623999947, 49.088477294 ], [ -122.633585639999978, 49.087398080000099 ], [ -122.63288693799997, 49.087395860000115 ], [ -122.63289290699997, 49.086586284000106 ], [ -122.634125493999974, 49.086590198000081 ], [ -122.634121828999966, 49.08708903500014 ], [ -122.634428826999951, 49.087098651000119 ], [ -122.634445517999922, 49.086867693000102 ], [ -122.63553549, 49.086901828000123 ], [ -122.635646923999957, 49.085359346000111 ], [ -122.634169371999988, 49.085313071000044 ], [ -122.634221556999989, 49.08459099200013 ], [ -122.632457856000016, 49.084535728000063 ], [ -122.63250373399994, 49.083901250000018 ], [ -122.632461594999967, 49.083899929000069 ], [ -122.632508157999936, 49.083255972000075 ], [ -122.632257827999979, 49.083248126000086 ], [ -122.632344746999948, 49.082046074000097 ], [ -122.629735714999967, 49.081964262000071 ], [ -122.62979253099999, 49.081179077000073 ], [ -122.629646146999931, 49.081178607000069 ], [ -122.629640126, 49.081988183000085 ], [ -122.630461776999965, 49.081990816000037 ], [ -122.63044976099999, 49.083609971000087 ], [ -122.631271436999938, 49.083612599000112 ], [ -122.631265442999961, 49.084422175000029 ], [ -122.630443755, 49.084419548000035 ], [ -122.630441751999911, 49.084689406000102 ], [ -122.630030905999931, 49.084688091000046 ], [ -122.630028901999978, 49.084957949000028 ], [ -122.629207203999968, 49.084955313000101 ], [ -122.629203183999934, 49.085495030000061 ], [ -122.628792330999929, 49.085493710000065 ], [ -122.628782272999928, 49.086843004000023 ], [ -122.628371409999943, 49.08684168100006 ], [ -122.628371023999961, 49.086893312000051 ], [ -122.62840861799999, 49.086894491000081 ], [ -122.62837683799998, 49.087333439000126 ], [ -122.629961489999943, 49.087383151000054 ], [ -122.629961220999959, 49.087386877000071 ], [ -122.630983155999928, 49.087418924000076 ], [ -122.630929849999973, 49.088155741000087 ], [ -122.631146094999977, 49.088162522000118 ], [ -122.631082889999973, 49.08903619400008 ], [ -122.631231241999942, 49.089040845000099 ], [ -122.631231471999953, 49.089009775000136 ], [ -122.63205323599999, 49.089012397000019 ], [ -122.63205523, 49.088742538000105 ], [ -122.633287871, 49.088746461000014 ], [ -122.633289857999955, 49.088476602000128 ], [ -122.633507623999947, 49.088477294 ] ], [ [ -122.62981943299998, 49.078750372000115 ], [ -122.629884088999916, 49.077856785000108 ], [ -122.629670894999919, 49.077850097000116 ], [ -122.629664203999937, 49.078749874000053 ], [ -122.62981943299998, 49.078750372000115 ] ], [ [ -122.62903101299996, 49.077668380000055 ], [ -122.629060275999962, 49.077264038000109 ], [ -122.628178557999931, 49.077236367000062 ], [ -122.628167021999957, 49.077395734000028 ], [ -122.628852664999954, 49.077397940000026 ], [ -122.628850652999972, 49.077667799000025 ], [ -122.62903101299996, 49.077668380000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66818000", "BldgCostT": "45290000", "sL_LossRatio": "0.720049916805324", "sL_AssetLoss": "1033720", "sL_BldgLoss": "744330", "sL_StrLoss": "370110", "sL_NStrLoss": "374220", "sL_ContLoss": "289390", "geom_point": "0101000020E61000009AAE168ED6A75EC036B46402BC8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.620879328999962, 49.084584997000022 ], [ -122.620866521999929, 49.083394205000062 ], [ -122.6208447019999, 49.083394881000046 ], [ -122.620557137999967, 49.083403817000018 ], [ -122.620476884999931, 49.083406301000124 ], [ -122.619941597999983, 49.083463287000015 ], [ -122.619422179999972, 49.083491199000065 ], [ -122.619416032999979, 49.082799268000045 ], [ -122.619410398999932, 49.082163212000104 ], [ -122.621785477999978, 49.082171002000031 ], [ -122.622716702, 49.082174056000127 ], [ -122.624688800999962, 49.08218048700013 ], [ -122.624686085999926, 49.082564674 ], [ -122.624679700999963, 49.083477997000038 ], [ -122.624672397999959, 49.083880605000033 ], [ -122.624688902999978, 49.085236403000053 ], [ -122.624696383999947, 49.085853394000083 ], [ -122.62442251899995, 49.085850586000021 ], [ -122.623619639999902, 49.085842351000075 ], [ -122.62307952599997, 49.085836802000038 ], [ -122.622320400999982, 49.085827397000081 ], [ -122.620892709999978, 49.08582659700005 ], [ -122.620879328999962, 49.084584997000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "292730246", "BldgCostT": "189887056", "sL_LossRatio": "0.734877529493732", "sL_AssetLoss": "2569190", "sL_BldgLoss": "1888040", "sL_StrLoss": "913590", "sL_NStrLoss": "974450", "sL_ContLoss": "681150", "geom_point": "0101000020E6100000DD580541B2A75EC0A4F67522398B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.621623595999949, 49.090375689000048 ], [ -122.621643112999934, 49.089409305000054 ], [ -122.621629206999927, 49.089409049000032 ], [ -122.62093478499996, 49.089396892000096 ], [ -122.619402169999887, 49.089401529000021 ], [ -122.618408131999956, 49.089404546000083 ], [ -122.617913211999948, 49.089283894000047 ], [ -122.617367104, 49.088992826000023 ], [ -122.617010027000021, 49.088802496 ], [ -122.616746788999961, 49.088662213000077 ], [ -122.616110607999943, 49.088279887000063 ], [ -122.615170996999893, 49.08779519900007 ], [ -122.614549895999971, 49.087300599000066 ], [ -122.614102396999911, 49.086996316000082 ], [ -122.614277276999957, 49.086907198000084 ], [ -122.614368793999958, 49.086645993000104 ], [ -122.614523208999927, 49.08578384 ], [ -122.617985343999948, 49.085802746000113 ], [ -122.619431479999946, 49.085814006000071 ], [ -122.620892709999978, 49.08582659700005 ], [ -122.622320400999982, 49.085827397000081 ], [ -122.62307952599997, 49.085836802000038 ], [ -122.623619639999902, 49.085842351000075 ], [ -122.62442251899995, 49.085850586000021 ], [ -122.624696383999947, 49.085853394000083 ], [ -122.624706771999939, 49.086954473000041 ], [ -122.624712873999954, 49.087602191000059 ], [ -122.624718909999956, 49.088244186000061 ], [ -122.624742108999953, 49.089284076000119 ], [ -122.624598166999959, 49.089324607000016 ], [ -122.624540590999928, 49.089420143000048 ], [ -122.624602214999939, 49.089514015000169 ], [ -122.624747346000021, 49.08955191400004 ], [ -122.624689989999936, 49.090381065000052 ], [ -122.623275886, 49.090378086000072 ], [ -122.621623595999949, 49.090375689000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77483917", "BldgCostT": "52701667", "sL_LossRatio": "0.730858598583466", "sL_AssetLoss": "1071630", "sL_BldgLoss": "783210", "sL_StrLoss": "376950", "sL_NStrLoss": "406260", "sL_ContLoss": "288420", "geom_point": "0101000020E6100000F0449C908EA75EC0971BD2C9CE8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.61649330799996, 49.083446272000145 ], [ -122.616493108000014, 49.08307089500002 ], [ -122.617752441999983, 49.083062592000104 ], [ -122.618054387999905, 49.083060604000103 ], [ -122.618054408999967, 49.082156610000027 ], [ -122.619410398999932, 49.082163212000104 ], [ -122.619416032999979, 49.082799268000045 ], [ -122.619422179999972, 49.083491199000065 ], [ -122.619941597999983, 49.083463287000015 ], [ -122.620476884999931, 49.083406301000124 ], [ -122.620557137999967, 49.083403817000018 ], [ -122.6208447019999, 49.083394881000046 ], [ -122.620866521999929, 49.083394205000062 ], [ -122.620879328999962, 49.084584997000022 ], [ -122.620892709999978, 49.08582659700005 ], [ -122.619431479999946, 49.085814006000071 ], [ -122.617985343999948, 49.085802746000113 ], [ -122.614523208999927, 49.08578384 ], [ -122.614571215999931, 49.08536806900004 ], [ -122.614607112999948, 49.085288469000027 ], [ -122.614656134999962, 49.08517967100002 ], [ -122.614909173999976, 49.084862307000023 ], [ -122.615017653999956, 49.084726012000054 ], [ -122.615100963999936, 49.084464559000082 ], [ -122.615117192999918, 49.084015338000029 ], [ -122.615211486999939, 49.084014722000049 ], [ -122.616307318999972, 49.084007619000033 ], [ -122.616493615, 49.084006393000024 ], [ -122.61649330799996, 49.083446272000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146992584", "BldgCostT": "96008334", "sL_LossRatio": "0.723026524358026", "sL_AssetLoss": "1892600", "sL_BldgLoss": "1368400", "sL_StrLoss": "642400", "sL_NStrLoss": "726000", "sL_ContLoss": "524200", "geom_point": "0101000020E61000001F40E0FD48A75EC0FB42865D2D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.60932092899999, 49.084789738000033 ], [ -122.608795179999959, 49.084734378000064 ], [ -122.607912429999914, 49.084731758 ], [ -122.606984476999941, 49.084785373000066 ], [ -122.607017369999951, 49.083920277000068 ], [ -122.607020436999946, 49.08363377400012 ], [ -122.606924904999971, 49.083404537000121 ], [ -122.606782642999917, 49.083234219000076 ], [ -122.606546059999957, 49.083061818000019 ], [ -122.606196042999954, 49.082924573000106 ], [ -122.606044794999903, 49.082914890000062 ], [ -122.605723223999945, 49.082894320000015 ], [ -122.605144535999969, 49.082889559000094 ], [ -122.603580522999948, 49.08288067600008 ], [ -122.603581898999906, 49.082827032000075 ], [ -122.603587932, 49.082591611000076 ], [ -122.603596683999939, 49.082098261000056 ], [ -122.603614315999934, 49.081103533000075 ], [ -122.603728671999974, 49.074748563000078 ], [ -122.61001101799998, 49.074792273000092 ], [ -122.612188029, 49.07480732500008 ], [ -122.61334269000001, 49.074815297000022 ], [ -122.617062214999947, 49.074840851000033 ], [ -122.617431898999882, 49.074843374000082 ], [ -122.617911102000022, 49.074846664000034 ], [ -122.619499310999942, 49.074857550000026 ], [ -122.620293545999942, 49.074862953 ], [ -122.621909126999952, 49.074873993000033 ], [ -122.623469823999926, 49.074884609000087 ], [ -122.62374378, 49.074886464 ], [ -122.623949150999962, 49.074887856000025 ], [ -122.624765208999946, 49.074893385000038 ], [ -122.624741080999954, 49.07719454700009 ], [ -122.624732125999984, 49.078049087000075 ], [ -122.624730669999963, 49.078185726000051 ], [ -122.624714480999984, 49.079731147000054 ], [ -122.62471099599999, 49.080063958000046 ], [ -122.624688800999962, 49.08218048700013 ], [ -122.622716702, 49.082174056000127 ], [ -122.621785477999978, 49.082171002000031 ], [ -122.619410398999932, 49.082163212000104 ], [ -122.618054408999967, 49.082156610000027 ], [ -122.618054387999905, 49.083060604000103 ], [ -122.617752441999983, 49.083062592000104 ], [ -122.616493108000014, 49.08307089500002 ], [ -122.61649330799996, 49.083446272000145 ], [ -122.616493615, 49.084006393000024 ], [ -122.616307318999972, 49.084007619000033 ], [ -122.615211486999939, 49.084014722000049 ], [ -122.615117192999918, 49.084015338000029 ], [ -122.615100963999936, 49.084464559000082 ], [ -122.615017653999956, 49.084726012000054 ], [ -122.614909173999976, 49.084862307000023 ], [ -122.614656134999962, 49.08517967100002 ], [ -122.614607112999948, 49.085288469000027 ], [ -122.614571215999931, 49.08536806900004 ], [ -122.614523208999927, 49.08578384 ], [ -122.614368793999958, 49.086645993000104 ], [ -122.614277276999957, 49.086907198000084 ], [ -122.614102396999911, 49.086996316000082 ], [ -122.61256001199996, 49.086086093000091 ], [ -122.61160286099999, 49.085468338000084 ], [ -122.611319051999914, 49.085324147000037 ], [ -122.61049303599998, 49.085049328000146 ], [ -122.60932092899999, 49.084789738000033 ] ], [ [ -122.610179431999939, 49.081924102000059 ], [ -122.610287052999922, 49.080445391000055 ], [ -122.61574979599996, 49.080617611000079 ], [ -122.615718425999958, 49.081049342000085 ], [ -122.615907817999968, 49.081055307000021 ], [ -122.61587567399998, 49.081497709000082 ], [ -122.616907792999925, 49.081530215000072 ], [ -122.616910817999965, 49.081137042000087 ], [ -122.61760766699993, 49.081139353000054 ], [ -122.617639241999967, 49.080704569000019 ], [ -122.619320788999957, 49.080757497000114 ], [ -122.619387018999973, 49.079845009000159 ], [ -122.621558053999976, 49.079913304000051 ], [ -122.621607763999947, 49.07922796000004 ], [ -122.621697333999975, 49.079230777000141 ], [ -122.621749602999969, 49.078510122000083 ], [ -122.621448421999972, 49.078500651000056 ], [ -122.621450536999987, 49.078471503000046 ], [ -122.620207981999954, 49.078432418000055 ], [ -122.620313387999914, 49.076979696000102 ], [ -122.62012709399994, 49.076973834000057 ], [ -122.620124310999969, 49.077012173000121 ], [ -122.619091820999984, 49.076979684000086 ], [ -122.619056493999921, 49.077466398000084 ], [ -122.613594107999972, 49.077294345000077 ], [ -122.613607589999958, 49.077108909000053 ], [ -122.611669452999934, 49.077047795000084 ], [ -122.61167680299998, 49.076946754000055 ], [ -122.607073898999928, 49.076801473000067 ], [ -122.607128148999934, 49.076056695000041 ], [ -122.60695943599994, 49.076051365000097 ], [ -122.606833398999925, 49.077781585000096 ], [ -122.607391930999981, 49.077799225000092 ], [ -122.60712993099996, 49.081396074000075 ], [ -122.606894533999977, 49.081388640000071 ], [ -122.606882705000018, 49.081551004000062 ], [ -122.60730176499996, 49.081564239 ], [ -122.607276268999968, 49.081914262000069 ], [ -122.607866483999913, 49.081916268000036 ], [ -122.607864359999951, 49.082186126000074 ], [ -122.608275184999968, 49.082187522000083 ], [ -122.6082724, 49.082541596000056 ], [ -122.609504610999977, 49.082580489000115 ], [ -122.609507659999977, 49.082191698000052 ], [ -122.609918485999913, 49.082193087000064 ], [ -122.609920598999963, 49.081923228000093 ], [ -122.610179431999939, 49.081924102000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146709250", "BldgCostT": "95965000", "sL_LossRatio": "0.710860902017838", "sL_AssetLoss": "1991934", "sL_BldgLoss": "1415988", "sL_StrLoss": "695018", "sL_NStrLoss": "720970", "sL_ContLoss": "575946", "geom_point": "0101000020E61000004F90CF33CFA65EC03FBF83FAF18A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.603507306999973, 49.086419493000072 ], [ -122.603544140999944, 49.084562222000038 ], [ -122.603559525999913, 49.083852393000036 ], [ -122.603580522999948, 49.08288067600008 ], [ -122.605144535999969, 49.082889559000094 ], [ -122.605723223999945, 49.082894320000015 ], [ -122.606044794999903, 49.082914890000062 ], [ -122.606196042999954, 49.082924573000106 ], [ -122.606546059999957, 49.083061818000019 ], [ -122.606782642999917, 49.083234219000076 ], [ -122.606924904999971, 49.083404537000121 ], [ -122.607020436999946, 49.08363377400012 ], [ -122.607017369999951, 49.083920277000068 ], [ -122.606984476999941, 49.084785373000066 ], [ -122.607912429999914, 49.084731758 ], [ -122.608795179999959, 49.084734378000064 ], [ -122.60932092899999, 49.084789738000033 ], [ -122.61049303599998, 49.085049328000146 ], [ -122.611319051999914, 49.085324147000037 ], [ -122.61064608199996, 49.086068994000108 ], [ -122.610270203999946, 49.086417594000068 ], [ -122.609839194999921, 49.086696993000039 ], [ -122.609121612999928, 49.087114097000082 ], [ -122.608798892999943, 49.087221106000129 ], [ -122.608298401999946, 49.087270221000082 ], [ -122.60788030599997, 49.087277724000032 ], [ -122.607010686999956, 49.08728181200005 ], [ -122.606284903999949, 49.087434603000048 ], [ -122.605737118999912, 49.087662507000104 ], [ -122.605451905, 49.087724707000099 ], [ -122.604399275999953, 49.087723001 ], [ -122.603800895999882, 49.087799586000116 ], [ -122.603488904999921, 49.087796911000083 ], [ -122.60349748799996, 49.087153443000091 ], [ -122.603507306999973, 49.086419493000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257694229", "BldgCostT": "165559858", "sL_LossRatio": "0.69205592509766", "sL_AssetLoss": "3496820", "sL_BldgLoss": "2419995", "sL_StrLoss": "1118765", "sL_NStrLoss": "1301230", "sL_ContLoss": "1076825", "geom_point": "0101000020E610000077B66FA422A75EC0E90B3A841E8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.622134407999951, 49.096772721000058 ], [ -122.62171980699999, 49.096729931000056 ], [ -122.62110323399996, 49.096735736000078 ], [ -122.62060315399999, 49.096739833000122 ], [ -122.619027291999927, 49.096756061000043 ], [ -122.618782118999889, 49.096759635000048 ], [ -122.616148735999957, 49.096797952000081 ], [ -122.615017522999977, 49.096819107000073 ], [ -122.612921304999929, 49.096847625000109 ], [ -122.611935529000036, 49.096860583000129 ], [ -122.610295715999911, 49.096882107000106 ], [ -122.609907761999978, 49.096888631000134 ], [ -122.609196192999931, 49.096900600000062 ], [ -122.607821314999967, 49.096920315000084 ], [ -122.607170510999964, 49.096925898000102 ], [ -122.605845394999946, 49.096938998000041 ], [ -122.6038446, 49.096962295000054 ], [ -122.60373479399999, 49.09495629000007 ], [ -122.603624995999922, 49.092988903000062 ], [ -122.603594599999937, 49.09231743900007 ], [ -122.603558623999973, 49.091605640000132 ], [ -122.603549951999952, 49.091434604000064 ], [ -122.603485309999911, 49.090155444000089 ], [ -122.605373118999978, 49.090834265000062 ], [ -122.605378910999917, 49.090835983000069 ], [ -122.605945855999934, 49.091002283000066 ], [ -122.60686227199993, 49.091271096000092 ], [ -122.607759156, 49.09153418700005 ], [ -122.607882551999921, 49.091569644000039 ], [ -122.611798695999951, 49.092598953000063 ], [ -122.614490034999946, 49.09332209900009 ], [ -122.614743559999937, 49.09339022100005 ], [ -122.618457737999947, 49.094388026000026 ], [ -122.624578817999975, 49.096032023000063 ], [ -122.62457062199999, 49.096642369000051 ], [ -122.624556977999958, 49.097655401000033 ], [ -122.624022103999948, 49.097647589000104 ], [ -122.623749370999946, 49.09759399900009 ], [ -122.623418497000017, 49.097474501000121 ], [ -122.62278477699999, 49.097017527000055 ], [ -122.622470400999987, 49.096859829000039 ], [ -122.622134407999951, 49.096772721000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87525834", "BldgCostT": "54233334", "sL_LossRatio": "0.673791622564377", "sL_AssetLoss": "1317014", "sL_BldgLoss": "887393", "sL_StrLoss": "401703", "sL_NStrLoss": "485690", "sL_ContLoss": "429621", "geom_point": "0101000020E6100000DEA392957AA85EC08E186EA7CA8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.635163115999958, 49.094971497000053 ], [ -122.632343454999912, 49.093231002000103 ], [ -122.631244214999967, 49.092552405000085 ], [ -122.630940553999963, 49.092382158000071 ], [ -122.630346774999936, 49.09204929800012 ], [ -122.630200625, 49.091981358000112 ], [ -122.62840630099997, 49.091147501000137 ], [ -122.627581033999931, 49.090765657000077 ], [ -122.627590535999943, 49.091873620000051 ], [ -122.627600701999981, 49.093064495000085 ], [ -122.627350894999935, 49.093054805000044 ], [ -122.626785915, 49.09314249800007 ], [ -122.625929920999951, 49.093146311000076 ], [ -122.625937601999937, 49.093852203000075 ], [ -122.62600869299996, 49.094004995000084 ], [ -122.626073190999961, 49.094192601000096 ], [ -122.626061411999927, 49.094922307000019 ], [ -122.624583347999973, 49.094911917000047 ], [ -122.624604874999946, 49.094520557000052 ], [ -122.624640646999964, 49.093177019000066 ], [ -122.624493303999941, 49.093131837000072 ], [ -122.624444727999929, 49.093046495000074 ], [ -122.624499058999959, 49.092958059000047 ], [ -122.62464193699995, 49.092932819000076 ], [ -122.624667720999952, 49.09223696400008 ], [ -122.624679563999933, 49.091714602000131 ], [ -122.624689989999936, 49.090381065000052 ], [ -122.624747346000021, 49.08955191400004 ], [ -122.624602214999939, 49.089514015000169 ], [ -122.624540590999928, 49.089420143000048 ], [ -122.624598166999959, 49.089324607000016 ], [ -122.624742108999953, 49.089284076000119 ], [ -122.624885838999958, 49.089321936000019 ], [ -122.624947497999983, 49.089415795000072 ], [ -122.62938, 49.089461195000091 ], [ -122.635727839999944, 49.089502695000064 ], [ -122.637481148999953, 49.089514079000075 ], [ -122.637507987000035, 49.089514254000115 ], [ -122.637598751, 49.090400938000123 ], [ -122.637605745999934, 49.090560694000018 ], [ -122.637754635999897, 49.093965431000122 ], [ -122.638960045, 49.093941486000062 ], [ -122.639031300999946, 49.093940096000026 ], [ -122.640565940999949, 49.093950124000081 ], [ -122.640566618999969, 49.093968210000114 ], [ -122.640626875999914, 49.095313056000109 ], [ -122.640110322999959, 49.095398806000063 ], [ -122.639931683999976, 49.095428718000072 ], [ -122.638606313999972, 49.09557751900013 ], [ -122.638833586999965, 49.09723489200006 ], [ -122.638020845999975, 49.096572663000067 ], [ -122.637658106999979, 49.096277116000103 ], [ -122.637407244999935, 49.096145814000103 ], [ -122.635481831999925, 49.095138293000026 ], [ -122.635163115999958, 49.094971497000053 ] ], [ [ -122.635719961999925, 49.09329101800018 ], [ -122.635731435999944, 49.09172271300006 ], [ -122.635320531000019, 49.091721416000055 ], [ -122.63532181799999, 49.091545768000096 ], [ -122.634549166999989, 49.091521574000119 ], [ -122.634525967999963, 49.09184255200006 ], [ -122.635087176999946, 49.09186012599999 ], [ -122.634985434999933, 49.093268021000029 ], [ -122.635719961999925, 49.09329101800018 ] ], [ [ -122.633910487999984, 49.091447413000097 ], [ -122.633910510999925, 49.091447088000038 ], [ -122.63389892099994, 49.091447051000074 ], [ -122.633910487999984, 49.091447413000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132034417", "BldgCostT": "82596667", "sL_LossRatio": "0.679149703623739", "sL_AssetLoss": "1777639", "sL_BldgLoss": "1207283", "sL_StrLoss": "553983", "sL_NStrLoss": "653300", "sL_ContLoss": "570356", "geom_point": "0101000020E61000006417FCCB68A85EC07C51E4DE368C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.637141383999946, 49.099344258 ], [ -122.637258553, 49.097722076000139 ], [ -122.63349539799999, 49.097604268000083 ], [ -122.633475316999963, 49.097881990000069 ], [ -122.63337102, 49.09787872200004 ], [ -122.63333983499993, 49.098309992000068 ], [ -122.63327833699999, 49.098308065000062 ], [ -122.632720992999978, 49.098158551000054 ], [ -122.631628335999935, 49.097865424000133 ], [ -122.629899906999967, 49.097401705000031 ], [ -122.628753136999961, 49.097094015000053 ], [ -122.627877195999986, 49.096858988000108 ], [ -122.627121496999933, 49.096656222000028 ], [ -122.626919253999944, 49.096650757000063 ], [ -122.624578817999975, 49.096032023000063 ], [ -122.624579352999945, 49.095930207000102 ], [ -122.624583347999973, 49.094911917000047 ], [ -122.626061411999927, 49.094922307000019 ], [ -122.626073190999961, 49.094192601000096 ], [ -122.62600869299996, 49.094004995000084 ], [ -122.625937601999937, 49.093852203000075 ], [ -122.625929920999951, 49.093146311000076 ], [ -122.626785915, 49.09314249800007 ], [ -122.627350894999935, 49.093054805000044 ], [ -122.627600701999981, 49.093064495000085 ], [ -122.627590535999943, 49.091873620000051 ], [ -122.627581033999931, 49.090765657000077 ], [ -122.62840630099997, 49.091147501000137 ], [ -122.630200625, 49.091981358000112 ], [ -122.630346774999936, 49.09204929800012 ], [ -122.630940553999963, 49.092382158000071 ], [ -122.631244214999967, 49.092552405000085 ], [ -122.632343454999912, 49.093231002000103 ], [ -122.635163115999958, 49.094971497000053 ], [ -122.635481831999925, 49.095138293000026 ], [ -122.637407244999935, 49.096145814000103 ], [ -122.637658106999979, 49.096277116000103 ], [ -122.638020845999975, 49.096572663000067 ], [ -122.638833586999965, 49.09723489200006 ], [ -122.638810533999973, 49.099791916000108 ], [ -122.637141383999946, 49.099344258 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203655917", "BldgCostT": "133351667", "sL_LossRatio": "0.72663825571446", "sL_AssetLoss": "2894893", "sL_BldgLoss": "2103540", "sL_StrLoss": "947450", "sL_NStrLoss": "1156090", "sL_ContLoss": "791353", "geom_point": "0101000020E6100000CC87C1781DA95EC0CFAF62C81C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.638833586999965, 49.09723489200006 ], [ -122.638606313999972, 49.09557751900013 ], [ -122.639931683999976, 49.095428718000072 ], [ -122.640110322999959, 49.095398806000063 ], [ -122.640626875999914, 49.095313056000109 ], [ -122.640566618999969, 49.093968210000114 ], [ -122.640565940999949, 49.093950124000081 ], [ -122.639031300999946, 49.093940096000026 ], [ -122.638960045, 49.093941486000062 ], [ -122.637754635999897, 49.093965431000122 ], [ -122.637605745999934, 49.090560694000018 ], [ -122.637598751, 49.090400938000123 ], [ -122.637507987000035, 49.089514254000115 ], [ -122.637918905999925, 49.089516914000093 ], [ -122.639411945999925, 49.089526773000031 ], [ -122.641241418999968, 49.089538806000121 ], [ -122.643090699999973, 49.089561415000034 ], [ -122.643862976999927, 49.089564023000108 ], [ -122.644082123999937, 49.089564767000084 ], [ -122.644124819999917, 49.08956492400003 ], [ -122.644709912999943, 49.08956689700004 ], [ -122.645314733999939, 49.089569374000028 ], [ -122.646150222999907, 49.089572789000073 ], [ -122.646451529999965, 49.089573998000112 ], [ -122.646615908999962, 49.089574684000027 ], [ -122.646767016999959, 49.089575305000025 ], [ -122.646680509999968, 49.091674574000116 ], [ -122.646653414999946, 49.092331325000053 ], [ -122.646653257999901, 49.092340409000023 ], [ -122.646642043999961, 49.092924260000132 ], [ -122.646628588999974, 49.093626564000019 ], [ -122.646591465999919, 49.095339527000114 ], [ -122.646590987999929, 49.095366608000056 ], [ -122.646572557, 49.096400608000089 ], [ -122.646571419999958, 49.096432996000011 ], [ -122.646569848999917, 49.096476220000078 ], [ -122.64642347399996, 49.096474362000102 ], [ -122.646305591999948, 49.096438224000096 ], [ -122.645766486999946, 49.096433131000026 ], [ -122.644561290999917, 49.096418012000072 ], [ -122.643273892999986, 49.096383196000048 ], [ -122.643320413999959, 49.096821808000044 ], [ -122.643431799999945, 49.096947785000062 ], [ -122.643564798999989, 49.097002489000062 ], [ -122.643700306999946, 49.097058996000015 ], [ -122.643974394999972, 49.097112595000048 ], [ -122.646531660999955, 49.097196909000012 ], [ -122.646531256999964, 49.097205904000056 ], [ -122.646496965999916, 49.097925832000023 ], [ -122.646494560999926, 49.098187101000107 ], [ -122.646444766999963, 49.09841159300008 ], [ -122.646403275999916, 49.098598842000065 ], [ -122.646179233999987, 49.099066795000049 ], [ -122.646076827999963, 49.099190315000087 ], [ -122.645822317999944, 49.099497246000062 ], [ -122.645175571999971, 49.099921364000096 ], [ -122.644987132, 49.10002457600006 ], [ -122.644323007999958, 49.100388219000152 ], [ -122.644051885999914, 49.100536684000105 ], [ -122.644038800999923, 49.100543871000063 ], [ -122.643942381999977, 49.100596656000086 ], [ -122.64382792, 49.100672417000077 ], [ -122.64369792799999, 49.100758446000015 ], [ -122.643375449999979, 49.10096893500009 ], [ -122.643317129999943, 49.10100700300007 ], [ -122.642757106000019, 49.100854340000076 ], [ -122.641760905999945, 49.100584898000051 ], [ -122.641448098999888, 49.100500282 ], [ -122.641146996999908, 49.100418858000118 ], [ -122.639703983999979, 49.100028512000101 ], [ -122.639653032999945, 49.100014736000091 ], [ -122.639241251999934, 49.099905822000089 ], [ -122.638810533999973, 49.099791916000108 ], [ -122.638833586999965, 49.09723489200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107138751", "BldgCostT": "73625001", "sL_LossRatio": "0.793108784401438", "sL_AssetLoss": "1253654", "sL_BldgLoss": "994284", "sL_StrLoss": "441944", "sL_NStrLoss": "552340", "sL_ContLoss": "259370", "geom_point": "0101000020E6100000F5C2748C71A95EC056BC89089C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.646403275999916, 49.098598842000065 ], [ -122.646444766999963, 49.09841159300008 ], [ -122.646494560999926, 49.098187101000107 ], [ -122.646496965999916, 49.097925832000023 ], [ -122.646531256999964, 49.097205904000056 ], [ -122.646531660999955, 49.097196909000012 ], [ -122.643974394999972, 49.097112595000048 ], [ -122.643700306999946, 49.097058996000015 ], [ -122.643564798999989, 49.097002489000062 ], [ -122.643431799999945, 49.096947785000062 ], [ -122.643320413999959, 49.096821808000044 ], [ -122.643273892999986, 49.096383196000048 ], [ -122.644561290999917, 49.096418012000072 ], [ -122.645766486999946, 49.096433131000026 ], [ -122.646305591999948, 49.096438224000096 ], [ -122.64642347399996, 49.096474362000102 ], [ -122.646569848999917, 49.096476220000078 ], [ -122.64663507799996, 49.096477397000044 ], [ -122.646706631999962, 49.096478687000058 ], [ -122.64923337499999, 49.096528652000082 ], [ -122.649334154999949, 49.096536953000047 ], [ -122.649515157999957, 49.096551851000093 ], [ -122.650025758999959, 49.096591182000012 ], [ -122.650490712999911, 49.096658 ], [ -122.650526810999935, 49.096668680000029 ], [ -122.650962569999976, 49.096797895000137 ], [ -122.651420028999937, 49.097024901000054 ], [ -122.65184007699996, 49.097271007000082 ], [ -122.652587644999983, 49.097708980000114 ], [ -122.652605743, 49.097719603000051 ], [ -122.652296701999916, 49.097951899000087 ], [ -122.652208784999985, 49.098743800000086 ], [ -122.65137250399999, 49.098659812000101 ], [ -122.651360045999965, 49.098649826000027 ], [ -122.651114492999952, 49.098453292000094 ], [ -122.650375407999931, 49.098486004000037 ], [ -122.64988168799999, 49.098359307000116 ], [ -122.649745883999927, 49.098196897000037 ], [ -122.649528213999957, 49.098159898000063 ], [ -122.649073854, 49.09832689300007 ], [ -122.648817175999952, 49.098421239000082 ], [ -122.64870299599994, 49.098463203000072 ], [ -122.648260809999925, 49.099153991000051 ], [ -122.647973191999967, 49.099072810000052 ], [ -122.647905908999945, 49.098856292000079 ], [ -122.647592795999984, 49.098621287000093 ], [ -122.64705848600002, 49.098619906000124 ], [ -122.64708308099992, 49.098961692000081 ], [ -122.64736869299999, 49.09943031200001 ], [ -122.647366875999921, 49.099468480000013 ], [ -122.64733472099999, 49.100140906000036 ], [ -122.646647072999912, 49.100395826000089 ], [ -122.646908475, 49.100614396000047 ], [ -122.646851402999943, 49.101559811000058 ], [ -122.64679279299996, 49.102221305000114 ], [ -122.645503041, 49.101743068000097 ], [ -122.645220484, 49.101647555000092 ], [ -122.64426647199997, 49.10132503800002 ], [ -122.64350704499999, 49.101069711000058 ], [ -122.6434053399999, 49.101036112000024 ], [ -122.643317129999943, 49.10100700300007 ], [ -122.643375449999979, 49.10096893500009 ], [ -122.64369792799999, 49.100758446000015 ], [ -122.64382792, 49.100672417000077 ], [ -122.643942381999977, 49.100596656000086 ], [ -122.644038800999923, 49.100543871000063 ], [ -122.644051885999914, 49.100536684000105 ], [ -122.644323007999958, 49.100388219000152 ], [ -122.644987132, 49.10002457600006 ], [ -122.645175571999971, 49.099921364000096 ], [ -122.645822317999944, 49.099497246000062 ], [ -122.646076827999963, 49.099190315000087 ], [ -122.646179233999987, 49.099066795000049 ], [ -122.646403275999916, 49.098598842000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63995584", "BldgCostT": "36168334", "sL_LossRatio": "0.623214933926489", "sL_AssetLoss": "1294770", "sL_BldgLoss": "806920", "sL_StrLoss": "314780", "sL_NStrLoss": "492140", "sL_ContLoss": "487850", "geom_point": "0101000020E61000008264123F90A95EC09EE3DC26DC8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64736869299999, 49.09943031200001 ], [ -122.64708308099992, 49.098961692000081 ], [ -122.64705848600002, 49.098619906000124 ], [ -122.647592795999984, 49.098621287000093 ], [ -122.647905908999945, 49.098856292000079 ], [ -122.647973191999967, 49.099072810000052 ], [ -122.648260809999925, 49.099153991000051 ], [ -122.64870299599994, 49.098463203000072 ], [ -122.648817175999952, 49.098421239000082 ], [ -122.649073854, 49.09832689300007 ], [ -122.649528213999957, 49.098159898000063 ], [ -122.649745883999927, 49.098196897000037 ], [ -122.64988168799999, 49.098359307000116 ], [ -122.650375407999931, 49.098486004000037 ], [ -122.651114492999952, 49.098453292000094 ], [ -122.651360045999965, 49.098649826000027 ], [ -122.65137250399999, 49.098659812000101 ], [ -122.652208784999985, 49.098743800000086 ], [ -122.652296701999916, 49.097951899000087 ], [ -122.652605743, 49.097719603000051 ], [ -122.652718566999965, 49.097634747000058 ], [ -122.653699412999956, 49.098201857000085 ], [ -122.653867092999931, 49.098298790000037 ], [ -122.653741672999971, 49.098385092000115 ], [ -122.653660205000023, 49.098441237000031 ], [ -122.652988281999953, 49.098904096000126 ], [ -122.651909275, 49.099646494000112 ], [ -122.649750685999933, 49.099503428000084 ], [ -122.64953228499995, 49.099488947000062 ], [ -122.649315797999961, 49.099474591000082 ], [ -122.649309843999944, 49.099571272000041 ], [ -122.64928334499993, 49.10000337600011 ], [ -122.649173299000012, 49.101796290000074 ], [ -122.649063583999947, 49.101970392000048 ], [ -122.649906485999963, 49.102265204000027 ], [ -122.651788192999973, 49.102643815000079 ], [ -122.65116948399999, 49.103534700000047 ], [ -122.65027828299999, 49.103340848000073 ], [ -122.649322308999913, 49.103132909000088 ], [ -122.648477897999911, 49.102801093 ], [ -122.64679279299996, 49.102221305000114 ], [ -122.646851402999943, 49.101559811000058 ], [ -122.646908475, 49.100614396000047 ], [ -122.646647072999912, 49.100395826000089 ], [ -122.64733472099999, 49.100140906000036 ], [ -122.647366875999921, 49.099468480000013 ], [ -122.64736869299999, 49.09943031200001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275199219", "BldgCostT": "182310412", "sL_LossRatio": "0.791130571702814", "sL_AssetLoss": "2781690", "sL_BldgLoss": "2200680", "sL_StrLoss": "983090", "sL_NStrLoss": "1217590", "sL_ContLoss": "581010", "geom_point": "0101000020E6100000BE036EA3A2A95EC01E629BD8EC8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.649063583999947, 49.101970392000048 ], [ -122.649173299000012, 49.101796290000074 ], [ -122.64928334499993, 49.10000337600011 ], [ -122.649309843999944, 49.099571272000041 ], [ -122.649315797999961, 49.099474591000082 ], [ -122.64953228499995, 49.099488947000062 ], [ -122.649750685999933, 49.099503428000084 ], [ -122.651909275, 49.099646494000112 ], [ -122.651820109999946, 49.099819404000129 ], [ -122.651818031999966, 49.100002060000101 ], [ -122.651788192999973, 49.102643815000079 ], [ -122.649906485999963, 49.102265204000027 ], [ -122.649063583999947, 49.101970392000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "743287434", "BldgCostT": "461804883", "sL_LossRatio": "0.674346266910871", "sL_AssetLoss": "9096220", "sL_BldgLoss": "6134002", "sL_StrLoss": "2341062", "sL_NStrLoss": "3792940", "sL_ContLoss": "2962218", "geom_point": "0101000020E61000008155A3F4D8A95EC0EF508F65288D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651788192999973, 49.102643815000079 ], [ -122.651818031999966, 49.100002060000101 ], [ -122.651820109999946, 49.099819404000129 ], [ -122.651909275, 49.099646494000112 ], [ -122.652988281999953, 49.098904096000126 ], [ -122.653685294999931, 49.099322391000122 ], [ -122.653803324999927, 49.099433302000108 ], [ -122.653743016999954, 49.099999802000113 ], [ -122.653706285999959, 49.100345007000058 ], [ -122.653826597, 49.100538903000015 ], [ -122.65670570199994, 49.100528503000156 ], [ -122.65665348099999, 49.101637374000113 ], [ -122.656645033999951, 49.101817187000094 ], [ -122.656611793999971, 49.102522654999987 ], [ -122.656589028999974, 49.103002081000071 ], [ -122.656566207999944, 49.103481934000051 ], [ -122.65656407099999, 49.103549459000142 ], [ -122.656537345999951, 49.10430294500005 ], [ -122.65646373499996, 49.104470090000049 ], [ -122.656431768999965, 49.10459077000008 ], [ -122.65631727799996, 49.104716973000087 ], [ -122.656190974999959, 49.104835607000091 ], [ -122.655859175999922, 49.104973990000069 ], [ -122.655725831999945, 49.105009887000023 ], [ -122.655009304999965, 49.105364759000082 ], [ -122.65450211599989, 49.105614230000079 ], [ -122.654332495999981, 49.105697667000072 ], [ -122.653657027999941, 49.106191432000053 ], [ -122.65358887899994, 49.10616443100011 ], [ -122.653489367999924, 49.106124995000087 ], [ -122.653426042999968, 49.10609932100003 ], [ -122.653322977999892, 49.106057599000039 ], [ -122.652869921999951, 49.105884004000089 ], [ -122.651274007999959, 49.104995298000098 ], [ -122.651085102999915, 49.104764996000114 ], [ -122.651022105999942, 49.104650413000023 ], [ -122.651051270999986, 49.103768999000117 ], [ -122.65116948399999, 49.103534700000047 ], [ -122.651788192999973, 49.102643815000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "344175886", "BldgCostT": "229072079", "sL_LossRatio": "0.786950479540738", "sL_AssetLoss": "3792170", "sL_BldgLoss": "2984250", "sL_StrLoss": "1290550", "sL_NStrLoss": "1693700", "sL_ContLoss": "807920", "geom_point": "0101000020E61000009D87A7B283A95EC0DD35009F488D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64679279299996, 49.102221305000114 ], [ -122.648477897999911, 49.102801093 ], [ -122.649322308999913, 49.103132909000088 ], [ -122.65027828299999, 49.103340848000073 ], [ -122.65116948399999, 49.103534700000047 ], [ -122.651051270999986, 49.103768999000117 ], [ -122.651022105999942, 49.104650413000023 ], [ -122.651085102999915, 49.104764996000114 ], [ -122.647861294999927, 49.10468883500009 ], [ -122.646757759999957, 49.10466613300008 ], [ -122.646770901999943, 49.102867688000053 ], [ -122.64679279299996, 49.102221305000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211840002", "BldgCostT": "139660002", "sL_LossRatio": "0.724460234799491", "sL_AssetLoss": "2302390", "sL_BldgLoss": "1667990", "sL_StrLoss": "708990", "sL_NStrLoss": "959000", "sL_ContLoss": "634400", "geom_point": "0101000020E610000056328CFD1DA95EC0FC8D0AF7258D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.640177275999946, 49.101991514000069 ], [ -122.64018026899997, 49.101577469000055 ], [ -122.638727810999953, 49.101532058000018 ], [ -122.638810533999973, 49.099791916000108 ], [ -122.639241251999934, 49.099905822000089 ], [ -122.639653032999945, 49.100014736000091 ], [ -122.639703983999979, 49.100028512000101 ], [ -122.641146996999908, 49.100418858000118 ], [ -122.641448098999888, 49.100500282 ], [ -122.641760905999945, 49.100584898000051 ], [ -122.642757106000019, 49.100854340000076 ], [ -122.643317129999943, 49.10100700300007 ], [ -122.6434053399999, 49.101036112000024 ], [ -122.64350704499999, 49.101069711000058 ], [ -122.64426647199997, 49.10132503800002 ], [ -122.645220484, 49.101647555000092 ], [ -122.645503041, 49.101743068000097 ], [ -122.64679279299996, 49.102221305000114 ], [ -122.646770901999943, 49.102867688000053 ], [ -122.646757759999957, 49.10466613300008 ], [ -122.642955565999941, 49.104597022000057 ], [ -122.64286512399994, 49.104596348000037 ], [ -122.64272971099993, 49.104595398000122 ], [ -122.64061488499999, 49.104579795000056 ], [ -122.638770681999958, 49.104553704000118 ], [ -122.63868908699996, 49.102526595000072 ], [ -122.639351384999912, 49.102528666000069 ], [ -122.639353340999961, 49.102258808 ], [ -122.639764331999956, 49.102260091000055 ], [ -122.639766285999926, 49.101990233000066 ], [ -122.640177275999946, 49.101991514000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232072303", "BldgCostT": "151338746", "sL_LossRatio": "0.703694997198682", "sL_AssetLoss": "2552370", "sL_BldgLoss": "1796090", "sL_StrLoss": "798050", "sL_NStrLoss": "998040", "sL_ContLoss": "756280", "geom_point": "0101000020E61000003FEA6D3B46A95EC0D7DD6554D38D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.641759937999936, 49.110512073000109 ], [ -122.641761017999926, 49.110362231000103 ], [ -122.64151576699993, 49.110361470000122 ], [ -122.641350688999978, 49.110259650000067 ], [ -122.641351903999947, 49.110091097000129 ], [ -122.641076027999958, 49.110090239000058 ], [ -122.64094144299996, 49.110007226000043 ], [ -122.64094279499993, 49.109819961000021 ], [ -122.640636294000018, 49.109819008000088 ], [ -122.640532200999957, 49.109754801000115 ], [ -122.640533699999963, 49.109547281000062 ], [ -122.640177732999931, 49.109536157000072 ], [ -122.640041900999961, 49.109452372000085 ], [ -122.637733913999938, 49.108267443000031 ], [ -122.637772910999971, 49.108238806000017 ], [ -122.64272971099993, 49.104595398000122 ], [ -122.64286512399994, 49.104596348000037 ], [ -122.642955565999941, 49.104597022000057 ], [ -122.646757759999957, 49.10466613300008 ], [ -122.647861294999927, 49.10468883500009 ], [ -122.647847199999958, 49.104979525000097 ], [ -122.64795589799995, 49.105086523000061 ], [ -122.649829704999959, 49.106129122000105 ], [ -122.650484631999959, 49.106410819000125 ], [ -122.651137227, 49.106786087000017 ], [ -122.65134341199996, 49.106904621000048 ], [ -122.651848404999981, 49.107195002000019 ], [ -122.651993109999964, 49.107277900000042 ], [ -122.64957599899999, 49.109140225 ], [ -122.649183086999955, 49.109445710000074 ], [ -122.647947107999983, 49.110406663000113 ], [ -122.647690089999983, 49.110606471000111 ], [ -122.64700535899999, 49.111138766000103 ], [ -122.646797553999946, 49.11130033600007 ], [ -122.646044275999927, 49.111850896000128 ], [ -122.645870541999912, 49.111980671000062 ], [ -122.645668, 49.112130258000064 ], [ -122.645450268999966, 49.112205466000091 ], [ -122.645020613000014, 49.112523071000048 ], [ -122.641759937999936, 49.110512073000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "358840432", "BldgCostT": "200006832", "sL_LossRatio": "0.581471574363496", "sL_AssetLoss": "5988960", "sL_BldgLoss": "3482410", "sL_StrLoss": "1144390", "sL_NStrLoss": "2338020", "sL_ContLoss": "2506550", "geom_point": "0101000020E61000000D267B3ACDA95EC0FE1164A91A8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.647159549999927, 49.114926359000016 ], [ -122.645171415999954, 49.113770509000048 ], [ -122.644286553999933, 49.113256026000094 ], [ -122.64414235699995, 49.113172209000034 ], [ -122.645020613000014, 49.112523071000048 ], [ -122.645450268999966, 49.112205466000091 ], [ -122.645668, 49.112130258000064 ], [ -122.645870541999912, 49.111980671000062 ], [ -122.646044275999927, 49.111850896000128 ], [ -122.646797553999946, 49.11130033600007 ], [ -122.64700535899999, 49.111138766000103 ], [ -122.647690089999983, 49.110606471000111 ], [ -122.647947107999983, 49.110406663000113 ], [ -122.649183086999955, 49.109445710000074 ], [ -122.64957599899999, 49.109140225 ], [ -122.651993109999964, 49.107277900000042 ], [ -122.651848404999981, 49.107195002000019 ], [ -122.65134341199996, 49.106904621000048 ], [ -122.651137227, 49.106786087000017 ], [ -122.650484631999959, 49.106410819000125 ], [ -122.649829704999959, 49.106129122000105 ], [ -122.64795589799995, 49.105086523000061 ], [ -122.647847199999958, 49.104979525000097 ], [ -122.647861294999927, 49.10468883500009 ], [ -122.651085102999915, 49.104764996000114 ], [ -122.651274007999959, 49.104995298000098 ], [ -122.652869921999951, 49.105884004000089 ], [ -122.653322977999892, 49.106057599000039 ], [ -122.653426042999968, 49.10609932100003 ], [ -122.653489367999924, 49.106124995000087 ], [ -122.65358887899994, 49.10616443100011 ], [ -122.653657027999941, 49.106191432000053 ], [ -122.654332495999981, 49.105697667000072 ], [ -122.65450211599989, 49.105614230000079 ], [ -122.655009304999965, 49.105364759000082 ], [ -122.655725831999945, 49.105009887000023 ], [ -122.655859175999922, 49.104973990000069 ], [ -122.656190974999959, 49.104835607000091 ], [ -122.65631727799996, 49.104716973000087 ], [ -122.656654127999971, 49.104789459000102 ], [ -122.657744838, 49.105024101000012 ], [ -122.657776515999956, 49.105030907000071 ], [ -122.658266633999958, 49.105131956000044 ], [ -122.660093659, 49.105508481000122 ], [ -122.660228573, 49.105536994000069 ], [ -122.66013997499999, 49.106733774000119 ], [ -122.660118884, 49.108783354000067 ], [ -122.658244452999966, 49.110778950000068 ], [ -122.657624496, 49.111249047000051 ], [ -122.657460685999951, 49.111241243000073 ], [ -122.656437761999925, 49.111230661000043 ], [ -122.656709037, 49.111759838000097 ], [ -122.656781633999955, 49.111959275000068 ], [ -122.656729163999955, 49.112081867000072 ], [ -122.656665259999954, 49.112361060000111 ], [ -122.656640834999919, 49.113158757000122 ], [ -122.656641678999961, 49.113251156000082 ], [ -122.656642361999957, 49.113328222000128 ], [ -122.656783206999975, 49.113331703000064 ], [ -122.656788830999986, 49.115102747000101 ], [ -122.656665850999943, 49.115098935000084 ], [ -122.654448614999922, 49.115035367000061 ], [ -122.65161089799993, 49.114950872000065 ], [ -122.650446430999978, 49.114916155000039 ], [ -122.649583195000019, 49.114786514000137 ], [ -122.648481477999923, 49.114772895000065 ], [ -122.648475722999976, 49.11482531700009 ], [ -122.64846972, 49.114879799000093 ], [ -122.647400349999941, 49.114855472000102 ], [ -122.647159549999927, 49.114926359000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "605914337", "BldgCostT": "390021523", "sL_LossRatio": "0.742479917829346", "sL_AssetLoss": "6406180", "sL_BldgLoss": "4756460", "sL_StrLoss": "2077060", "sL_NStrLoss": "2679400", "sL_ContLoss": "1649720", "geom_point": "0101000020E6100000D5FAB6BB22AA5EC09F6DEA132B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.656537345999951, 49.10430294500005 ], [ -122.65656407099999, 49.103549459000142 ], [ -122.656566207999944, 49.103481934000051 ], [ -122.656589028999974, 49.103002081000071 ], [ -122.656611793999971, 49.102522654999987 ], [ -122.656645033999951, 49.101817187000094 ], [ -122.65665348099999, 49.101637374000113 ], [ -122.65670570199994, 49.100528503000156 ], [ -122.656714993999941, 49.100333678000077 ], [ -122.656716712999923, 49.100297717000053 ], [ -122.65671917899999, 49.100245905000079 ], [ -122.658719885999943, 49.100281989000088 ], [ -122.659241286999972, 49.100400901000071 ], [ -122.659774894999941, 49.100407603000058 ], [ -122.659731213999919, 49.101494014000089 ], [ -122.659675810999886, 49.102170913000116 ], [ -122.65972126299998, 49.102270354000083 ], [ -122.659716381999914, 49.102360287000067 ], [ -122.659698752999958, 49.102897104000121 ], [ -122.659715764999959, 49.102949656000085 ], [ -122.659724655999966, 49.102965287000053 ], [ -122.659774106999947, 49.103032220000081 ], [ -122.659808738999956, 49.103069888000036 ], [ -122.659851795999913, 49.103108627000076 ], [ -122.65992349299998, 49.103161315000108 ], [ -122.660058557999946, 49.103244366000084 ], [ -122.660289031999937, 49.103403193000062 ], [ -122.6603417199999, 49.103474497000057 ], [ -122.660386419999938, 49.103555876000051 ], [ -122.660429757999964, 49.10364577000005 ], [ -122.660452158999988, 49.103740222000155 ], [ -122.660455729999939, 49.103859702000101 ], [ -122.660413712999912, 49.104101727000071 ], [ -122.660903224999956, 49.104245801000076 ], [ -122.661594637999954, 49.104248347000137 ], [ -122.661912643999941, 49.104301478000096 ], [ -122.661587084999965, 49.104353549000159 ], [ -122.660889303999937, 49.104344488000045 ], [ -122.66037851699997, 49.104210576000099 ], [ -122.66033956699999, 49.104333732000072 ], [ -122.660228573, 49.105536994000069 ], [ -122.660093659, 49.105508481000122 ], [ -122.658266633999958, 49.105131956000044 ], [ -122.657776515999956, 49.105030907000071 ], [ -122.657744838, 49.105024101000012 ], [ -122.656654127999971, 49.104789459000102 ], [ -122.65631727799996, 49.104716973000087 ], [ -122.656431768999965, 49.10459077000008 ], [ -122.65646373499996, 49.104470090000049 ], [ -122.656537345999951, 49.10430294500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1587894182", "BldgCostT": "1022334874", "sL_LossRatio": "0.729331302158114", "sL_AssetLoss": "16666870", "sL_BldgLoss": "12155670", "sL_StrLoss": "4981870", "sL_NStrLoss": "7173800", "sL_ContLoss": "4511200", "geom_point": "0101000020E6100000A9AA111377AA5EC0BFB544151B8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.656788830999986, 49.115102747000101 ], [ -122.656783206999975, 49.113331703000064 ], [ -122.656642361999957, 49.113328222000128 ], [ -122.656641678999961, 49.113251156000082 ], [ -122.656640834999919, 49.113158757000122 ], [ -122.656665259999954, 49.112361060000111 ], [ -122.656729163999955, 49.112081867000072 ], [ -122.656781633999955, 49.111959275000068 ], [ -122.656709037, 49.111759838000097 ], [ -122.656437761999925, 49.111230661000043 ], [ -122.657460685999951, 49.111241243000073 ], [ -122.657624496, 49.111249047000051 ], [ -122.658244452999966, 49.110778950000068 ], [ -122.660118884, 49.108783354000067 ], [ -122.66013997499999, 49.106733774000119 ], [ -122.660228573, 49.105536994000069 ], [ -122.66033956699999, 49.104333732000072 ], [ -122.66037851699997, 49.104210576000099 ], [ -122.660889303999937, 49.104344488000045 ], [ -122.661587084999965, 49.104353549000159 ], [ -122.661912643999941, 49.104301478000096 ], [ -122.664144625999981, 49.104304965000068 ], [ -122.666101646999934, 49.104323324000063 ], [ -122.666541879999954, 49.104326273000062 ], [ -122.667801929999925, 49.104334598000037 ], [ -122.668103457999933, 49.104336600000082 ], [ -122.668688700999951, 49.104340452000066 ], [ -122.66866498199991, 49.106547685000116 ], [ -122.66866362699993, 49.106618316000059 ], [ -122.668643217999929, 49.107697636000054 ], [ -122.668623192999974, 49.108757953000058 ], [ -122.668621716999937, 49.108931835000099 ], [ -122.668621187999989, 49.11008715400007 ], [ -122.668585925999977, 49.111230600000063 ], [ -122.668580796999919, 49.11140356900011 ], [ -122.668525025999941, 49.113297763000048 ], [ -122.668523585999964, 49.113345598000116 ], [ -122.668518698999918, 49.113471612000112 ], [ -122.668448078999958, 49.115318644000055 ], [ -122.666075142999929, 49.115267623000051 ], [ -122.665928778999955, 49.115264897000031 ], [ -122.664461305999978, 49.115232911000184 ], [ -122.663851076999947, 49.115229127000056 ], [ -122.663119522999978, 49.115224594000033 ], [ -122.660987805999966, 49.115181858 ], [ -122.660167749999957, 49.115165397000034 ], [ -122.656924714999946, 49.115105268000057 ], [ -122.656788830999986, 49.115102747000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "432375500", "BldgCostT": "299585000", "sL_LossRatio": "0.872961506560771", "sL_AssetLoss": "3351740", "sL_BldgLoss": "2925940", "sL_StrLoss": "1361240", "sL_NStrLoss": "1564700", "sL_ContLoss": "425800", "geom_point": "0101000020E61000000EFCFBCEA7AA5EC0FA00E652438D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.66423171199996, 49.103051406000105 ], [ -122.664770810999954, 49.103020392000104 ], [ -122.665401892999952, 49.102907486000035 ], [ -122.665822419999984, 49.102868190000017 ], [ -122.666490597999967, 49.102869107000117 ], [ -122.667304676999919, 49.102874484000047 ], [ -122.667708746999949, 49.102877137000078 ], [ -122.668126619999924, 49.10287989800004 ], [ -122.66870389199994, 49.102883708000121 ], [ -122.66870052499992, 49.103208642000013 ], [ -122.668688700999951, 49.104340452000066 ], [ -122.668103457999933, 49.104336600000082 ], [ -122.667801929999925, 49.104334598000037 ], [ -122.666541879999954, 49.104326273000062 ], [ -122.666101646999934, 49.104323324000063 ], [ -122.664144625999981, 49.104304965000068 ], [ -122.66423171199996, 49.103051406000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "613424269", "BldgCostT": "352835577", "sL_LossRatio": "0.595576731113675", "sL_AssetLoss": "9746457", "sL_BldgLoss": "5804763", "sL_StrLoss": "1986603", "sL_NStrLoss": "3818160", "sL_ContLoss": "3941694", "geom_point": "0101000020E6100000745A83731DAB5EC0C53AB20BE98D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668448078999958, 49.115318644000055 ], [ -122.668518698999918, 49.113471612000112 ], [ -122.668523585999964, 49.113345598000116 ], [ -122.668525025999941, 49.113297763000048 ], [ -122.668580796999919, 49.11140356900011 ], [ -122.668585925999977, 49.111230600000063 ], [ -122.668621187999989, 49.11008715400007 ], [ -122.668621716999937, 49.108931835000099 ], [ -122.668623192999974, 49.108757953000058 ], [ -122.668643217999929, 49.107697636000054 ], [ -122.66866362699993, 49.106618316000059 ], [ -122.66866498199991, 49.106547685000116 ], [ -122.668688700999951, 49.104340452000066 ], [ -122.66870052499992, 49.103208642000013 ], [ -122.66870389199994, 49.102883708000121 ], [ -122.668677799999926, 49.10154641400004 ], [ -122.668835286999951, 49.101545799000093 ], [ -122.669543220999984, 49.101546110000079 ], [ -122.66983299599994, 49.101419910000033 ], [ -122.670606099999958, 49.10108295900006 ], [ -122.67080398, 49.100996687000098 ], [ -122.671656984999956, 49.101763901 ], [ -122.672003607999955, 49.102280189000119 ], [ -122.672231199999914, 49.102793805000061 ], [ -122.67235620699995, 49.103228408000049 ], [ -122.67305643, 49.103232006000106 ], [ -122.673371489999923, 49.103233613000079 ], [ -122.673796211999971, 49.103235786000035 ], [ -122.674345304999989, 49.103238612000098 ], [ -122.674352054999972, 49.103674751000035 ], [ -122.674362889999912, 49.10437199200004 ], [ -122.676678003999911, 49.104380508000141 ], [ -122.679816095999911, 49.104390017000114 ], [ -122.679916082999981, 49.105897868000085 ], [ -122.679923531, 49.106010306000094 ], [ -122.679946499999986, 49.106356235000149 ], [ -122.680010356999929, 49.107319179000044 ], [ -122.68003504299999, 49.107691093000014 ], [ -122.680051307999975, 49.107937047000057 ], [ -122.68007469899996, 49.108200059000083 ], [ -122.680087686999983, 49.108346396000023 ], [ -122.680104879999973, 49.108539753000045 ], [ -122.680116800999983, 49.108673941000085 ], [ -122.680126181999952, 49.108779408000075 ], [ -122.680017237999962, 49.109300570000038 ], [ -122.679967267, 49.109540223000046 ], [ -122.679926742999953, 49.109734265000057 ], [ -122.679906666999941, 49.109830249000041 ], [ -122.679985348999949, 49.110996797000141 ], [ -122.679986666999966, 49.111079291000081 ], [ -122.679992055999946, 49.111096277000108 ], [ -122.68000108499993, 49.11113475000014 ], [ -122.680001593, 49.111237593000055 ], [ -122.679974099, 49.113561902000114 ], [ -122.679922486999942, 49.113709008000093 ], [ -122.679802786999971, 49.11383139400008 ], [ -122.679680716999954, 49.113930404000072 ], [ -122.6792894599999, 49.113750701000086 ], [ -122.677703237999964, 49.113025643000107 ], [ -122.67535662599991, 49.11195295600011 ], [ -122.675246487999942, 49.11190358000006 ], [ -122.674424646999952, 49.11152682000003 ], [ -122.67459525799994, 49.112195844000041 ], [ -122.674619520999968, 49.112290971000064 ], [ -122.674665752999957, 49.114459144000122 ], [ -122.674671917999916, 49.114867131000047 ], [ -122.674289726999987, 49.114850056000094 ], [ -122.67186314, 49.114763785000079 ], [ -122.671681474999943, 49.115394475000116 ], [ -122.668731500999982, 49.115321084000108 ], [ -122.668448078999958, 49.115318644000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "642246307", "BldgCostT": "406982709", "sL_LossRatio": "0.708307966928386", "sL_AssetLoss": "7013870", "sL_BldgLoss": "4967980", "sL_StrLoss": "2101800", "sL_NStrLoss": "2866180", "sL_ContLoss": "2045890", "geom_point": "0101000020E61000006F019F6122AB5EC01542D7B60F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669355323999952, 49.122681501000109 ], [ -122.668626265999961, 49.122646334000095 ], [ -122.668488576999977, 49.122644093000083 ], [ -122.668440167999947, 49.122643265000114 ], [ -122.66843985, 49.121244291000075 ], [ -122.66843979099994, 49.121117512000055 ], [ -122.668439550999921, 49.120470652000051 ], [ -122.668438977999941, 49.119042997000065 ], [ -122.66844164799997, 49.118948444000054 ], [ -122.668448296999941, 49.117229192000067 ], [ -122.66844719, 49.116804692000088 ], [ -122.668446216999897, 49.116683895000072 ], [ -122.668447718999928, 49.116318962 ], [ -122.668448078999958, 49.115318644000055 ], [ -122.668731500999982, 49.115321084000108 ], [ -122.671681474999943, 49.115394475000116 ], [ -122.67186314, 49.114763785000079 ], [ -122.674289726999987, 49.114850056000094 ], [ -122.674671917999916, 49.114867131000047 ], [ -122.674665752999957, 49.114459144000122 ], [ -122.674619520999968, 49.112290971000064 ], [ -122.67459525799994, 49.112195844000041 ], [ -122.674424646999952, 49.11152682000003 ], [ -122.675246487999942, 49.11190358000006 ], [ -122.67535662599991, 49.11195295600011 ], [ -122.677703237999964, 49.113025643000107 ], [ -122.6792894599999, 49.113750701000086 ], [ -122.679680716999954, 49.113930404000072 ], [ -122.679740975999934, 49.114075167000095 ], [ -122.67990140899991, 49.118133161000024 ], [ -122.679975821999989, 49.11841477800003 ], [ -122.679967758999965, 49.118597001000111 ], [ -122.679946768999969, 49.119071785000109 ], [ -122.676986211999946, 49.119055995000039 ], [ -122.676981893999979, 49.119855357000063 ], [ -122.676981546999954, 49.119919170000024 ], [ -122.676979737999915, 49.120252003000083 ], [ -122.676979329999966, 49.120323970000065 ], [ -122.676974393999956, 49.12123560100008 ], [ -122.674684705999965, 49.121243197000091 ], [ -122.673985403999893, 49.121347782000043 ], [ -122.673636206999944, 49.12144060500006 ], [ -122.673334059999917, 49.121555749000059 ], [ -122.673122179999936, 49.121636496000114 ], [ -122.672557437999899, 49.121984192000127 ], [ -122.67229761499999, 49.122144138000074 ], [ -122.671750695999918, 49.122480791000029 ], [ -122.671452992999932, 49.122621198000076 ], [ -122.671195314999949, 49.12268080900003 ], [ -122.670837717, 49.122700397000081 ], [ -122.670046520999932, 49.12269029600003 ], [ -122.670032658999943, 49.122690115000111 ], [ -122.669355323999952, 49.122681501000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154264334", "BldgCostT": "105523334", "sL_LossRatio": "0.771675600899187", "sL_AssetLoss": "1734900", "sL_BldgLoss": "1338780", "sL_StrLoss": "590730", "sL_NStrLoss": "748050", "sL_ContLoss": "396120", "geom_point": "0101000020E6100000005899006EAB5EC0032D878AAF8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.676916103999986, 49.124450097000107 ], [ -122.678312808999976, 49.124459894000033 ], [ -122.678448302999968, 49.124462301000044 ], [ -122.678592063999943, 49.124403876000059 ], [ -122.678654293999941, 49.124378608000029 ], [ -122.678795910999938, 49.124256794000111 ], [ -122.679116683999936, 49.12398460100011 ], [ -122.679177796999909, 49.1238964 ], [ -122.679236889999913, 49.122627489000138 ], [ -122.678077413, 49.12261430300002 ], [ -122.67809781199999, 49.121657788000029 ], [ -122.678076587999968, 49.121244408000067 ], [ -122.677392239999918, 49.121238946000084 ], [ -122.676974393999956, 49.12123560100008 ], [ -122.676979329999966, 49.120323970000065 ], [ -122.676979737999915, 49.120252003000083 ], [ -122.676981546999954, 49.119919170000024 ], [ -122.676981893999979, 49.119855357000063 ], [ -122.676986211999946, 49.119055995000039 ], [ -122.679946768999969, 49.119071785000109 ], [ -122.679919102, 49.120296170000159 ], [ -122.67984192699997, 49.123709626000085 ], [ -122.679821163999918, 49.124616910000029 ], [ -122.67978176299998, 49.126338272000119 ], [ -122.678931785999964, 49.126326446000107 ], [ -122.676885172999917, 49.12630288200009 ], [ -122.67689010299992, 49.126008872000035 ], [ -122.676910063999927, 49.124812598000133 ], [ -122.676916103999986, 49.124450097000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111161001", "BldgCostT": "74360001", "sL_LossRatio": "0.725703705066186", "sL_AssetLoss": "1631010", "sL_BldgLoss": "1183630", "sL_StrLoss": "490610", "sL_NStrLoss": "693020", "sL_ContLoss": "447380", "geom_point": "0101000020E6100000B1A028B74AAB5EC0BB68E115B58F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.675834584999947, 49.123747994000084 ], [ -122.675869787999929, 49.122027893000073 ], [ -122.675805704000012, 49.121965508000123 ], [ -122.675717507999963, 49.121935699000097 ], [ -122.674571195999988, 49.121968787000107 ], [ -122.674260129999979, 49.122027706000083 ], [ -122.673905882999961, 49.1221338900001 ], [ -122.673283120999912, 49.122509295000022 ], [ -122.672912323, 49.122752 ], [ -122.672428786999916, 49.122960500000026 ], [ -122.671750695999918, 49.122480791000029 ], [ -122.67229761499999, 49.122144138000074 ], [ -122.672557437999899, 49.121984192000127 ], [ -122.673122179999936, 49.121636496000114 ], [ -122.673334059999917, 49.121555749000059 ], [ -122.673636206999944, 49.12144060500006 ], [ -122.673985403999893, 49.121347782000043 ], [ -122.674684705999965, 49.121243197000091 ], [ -122.676974393999956, 49.12123560100008 ], [ -122.677392239999918, 49.121238946000084 ], [ -122.678076587999968, 49.121244408000067 ], [ -122.67809781199999, 49.121657788000029 ], [ -122.678077413, 49.12261430300002 ], [ -122.679236889999913, 49.122627489000138 ], [ -122.679177796999909, 49.1238964 ], [ -122.679116683999936, 49.12398460100011 ], [ -122.678795910999938, 49.124256794000111 ], [ -122.678654293999941, 49.124378608000029 ], [ -122.678592063999943, 49.124403876000059 ], [ -122.678448302999968, 49.124462301000044 ], [ -122.678312808999976, 49.124459894000033 ], [ -122.676916103999986, 49.124450097000107 ], [ -122.675819215999923, 49.124443308000089 ], [ -122.675834584999947, 49.123747994000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63867083", "BldgCostT": "42308333", "sL_LossRatio": "0.759206160959572", "sL_AssetLoss": "666130", "sL_BldgLoss": "505730", "sL_StrLoss": "247130", "sL_NStrLoss": "258600", "sL_ContLoss": "160400", "geom_point": "0101000020E6100000C7898E682BAB5EC0E241695EC48F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.674571195999988, 49.121968787000107 ], [ -122.675717507999963, 49.121935699000097 ], [ -122.675805704000012, 49.121965508000123 ], [ -122.675869787999929, 49.122027893000073 ], [ -122.675834584999947, 49.123747994000084 ], [ -122.675819215999923, 49.124443308000089 ], [ -122.674631991999931, 49.124434502000057 ], [ -122.674455890999965, 49.124406498000084 ], [ -122.674279603999949, 49.12438030000007 ], [ -122.674001404999942, 49.124286099000074 ], [ -122.673744089999957, 49.124147511000075 ], [ -122.673530586999959, 49.123992197000057 ], [ -122.672771603999976, 49.123282887000087 ], [ -122.672428786999916, 49.122960500000026 ], [ -122.672912323, 49.122752 ], [ -122.673283120999912, 49.122509295000022 ], [ -122.673905882999961, 49.1221338900001 ], [ -122.674260129999979, 49.122027706000083 ], [ -122.674571195999988, 49.121968787000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89772833", "BldgCostT": "60233333", "sL_LossRatio": "0.729459464857559", "sL_AssetLoss": "1502030", "sL_BldgLoss": "1095670", "sL_StrLoss": "479320", "sL_NStrLoss": "616350", "sL_ContLoss": "406360", "geom_point": "0101000020E6100000C2D45C8FFEAA5EC00FC6BA7EE28F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.670773710999953, 49.124877491000056 ], [ -122.670787810999983, 49.124164203000078 ], [ -122.670492896999946, 49.124163129000031 ], [ -122.66946871, 49.124159398000174 ], [ -122.669342208000032, 49.124127505000068 ], [ -122.66931608799996, 49.124052792000093 ], [ -122.669355323999952, 49.122681501000109 ], [ -122.670032658999943, 49.122690115000111 ], [ -122.670046520999932, 49.12269029600003 ], [ -122.670837717, 49.122700397000081 ], [ -122.671195314999949, 49.12268080900003 ], [ -122.671452992999932, 49.122621198000076 ], [ -122.671750695999918, 49.122480791000029 ], [ -122.672428786999916, 49.122960500000026 ], [ -122.672771603999976, 49.123282887000087 ], [ -122.673530586999959, 49.123992197000057 ], [ -122.673744089999957, 49.124147511000075 ], [ -122.674001404999942, 49.124286099000074 ], [ -122.674279603999949, 49.12438030000007 ], [ -122.674455890999965, 49.124406498000084 ], [ -122.674187602999936, 49.125150687000023 ], [ -122.674105012999945, 49.125424802000111 ], [ -122.674028908999929, 49.125491888000113 ], [ -122.673907911999962, 49.125516999000169 ], [ -122.672935778999957, 49.125508504000038 ], [ -122.670761998999964, 49.125481800000117 ], [ -122.670773710999953, 49.124877491000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85883166", "BldgCostT": "56076666", "sL_LossRatio": "0.719636936339523", "sL_AssetLoss": "1206400", "sL_BldgLoss": "868170", "sL_StrLoss": "389070", "sL_NStrLoss": "479100", "sL_ContLoss": "338230", "geom_point": "0101000020E61000002161A5A3D8A95EC0304CA60A46914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651557188999959, 49.133423392000068 ], [ -122.651573321999976, 49.131998178000039 ], [ -122.651586877999975, 49.130801817000069 ], [ -122.651600195999919, 49.129627206000045 ], [ -122.653171371, 49.129632117000071 ], [ -122.65496702199999, 49.129637699000114 ], [ -122.657168898999942, 49.129644505000051 ], [ -122.657162270999905, 49.129963855000049 ], [ -122.657134659999954, 49.131295074000036 ], [ -122.657117188999962, 49.132137299000064 ], [ -122.657079879999941, 49.133458194000127 ], [ -122.660879703999939, 49.13349779300006 ], [ -122.66127708599997, 49.133459668000029 ], [ -122.661434578999902, 49.133460965000097 ], [ -122.661508659999967, 49.134720390000041 ], [ -122.661507793999959, 49.135916234000064 ], [ -122.661510080999989, 49.136345529000081 ], [ -122.661512037999941, 49.13671659300006 ], [ -122.661518236999925, 49.137784634000134 ], [ -122.661521780999948, 49.13839486800007 ], [ -122.649718182999919, 49.138313598000103 ], [ -122.645886203999936, 49.138296 ], [ -122.645898792999986, 49.13723427800003 ], [ -122.645916115999952, 49.135768077000108 ], [ -122.645921846999968, 49.135282352000054 ], [ -122.645936545, 49.134041008000054 ], [ -122.645944294999978, 49.133384599000109 ], [ -122.646962737999957, 49.133391623000072 ], [ -122.648854407999934, 49.133404620000114 ], [ -122.649767085999883, 49.133410898000108 ], [ -122.651557188999959, 49.133423392000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158699584", "BldgCostT": "96978334", "sL_LossRatio": "0.677522520064497", "sL_AssetLoss": "1869222", "sL_BldgLoss": "1266440", "sL_StrLoss": "611810", "sL_NStrLoss": "654630", "sL_ContLoss": "602782", "geom_point": "0101000020E6100000CC96DEC4F1A65EC080027B8E40924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.601008002999919, 49.144292484000076 ], [ -122.601361000999958, 49.14392699200004 ], [ -122.601520307999962, 49.143782166000101 ], [ -122.602450382999947, 49.142936702000092 ], [ -122.602886903999888, 49.142645902000012 ], [ -122.603232787999943, 49.142423517000118 ], [ -122.603450701999932, 49.14228338700007 ], [ -122.603563688999927, 49.142233574000052 ], [ -122.603778211999952, 49.142138937000041 ], [ -122.605703315999946, 49.141289823000058 ], [ -122.606814198, 49.140799814000083 ], [ -122.608873810999967, 49.139714892000043 ], [ -122.609279495999957, 49.139282513000047 ], [ -122.60932440699996, 49.139111274000108 ], [ -122.609387591000015, 49.13887039800008 ], [ -122.609301510999941, 49.138509906000088 ], [ -122.608880713999923, 49.137891098000075 ], [ -122.608793990999942, 49.137538700000029 ], [ -122.608832530999962, 49.137487486000062 ], [ -122.608960886999952, 49.137316803000026 ], [ -122.610643, 49.136188472000079 ], [ -122.61115035899995, 49.135848132000021 ], [ -122.612185925999967, 49.135880752000055 ], [ -122.612166257999945, 49.136150790000116 ], [ -122.612767920999886, 49.136169737000102 ], [ -122.61262282699991, 49.138162228000084 ], [ -122.613051834999936, 49.138175735000075 ], [ -122.612789931999941, 49.141772262000117 ], [ -122.611265760999942, 49.14172426500005 ], [ -122.611181830999953, 49.14287619800011 ], [ -122.609392129999932, 49.142819810000077 ], [ -122.6093341119999, 49.143615648000065 ], [ -122.609879486999958, 49.143632834000108 ], [ -122.609827015999883, 49.144352661000084 ], [ -122.612132352999978, 49.144425276000028 ], [ -122.611870345999975, 49.148021767000095 ], [ -122.61179525799993, 49.148019402000052 ], [ -122.610404645999964, 49.147975604000038 ], [ -122.608710478999981, 49.147311661000067 ], [ -122.608280758999939, 49.147143264000128 ], [ -122.607437589999961, 49.146812797000024 ], [ -122.605225616000013, 49.145945816000044 ], [ -122.603994395999919, 49.145463217000035 ], [ -122.603514010999973, 49.145274895000099 ], [ -122.601495707999987, 49.144483692000101 ], [ -122.601008002999919, 49.144292484000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "671259417", "BldgCostT": "420581667", "sL_LossRatio": "0.680715464451526", "sL_AssetLoss": "9637432", "sL_BldgLoss": "6560349", "sL_StrLoss": "2998359", "sL_NStrLoss": "3561990", "sL_ContLoss": "3077083", "geom_point": "0101000020E6100000FB1A272A40A85EC0485CF181DB924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.617933619999974, 49.150797201000053 ], [ -122.617935937999931, 49.150765322000062 ], [ -122.61783532499993, 49.15076499000007 ], [ -122.61760902099999, 49.150690827000098 ], [ -122.61761053299989, 49.150494383000073 ], [ -122.617003451999906, 49.150492371000105 ], [ -122.616788291999939, 49.150421863000119 ], [ -122.616788426999946, 49.15040429200009 ], [ -122.616728966999943, 49.150402422000063 ], [ -122.616230824999917, 49.150239176000042 ], [ -122.616232222999926, 49.150219949000153 ], [ -122.6161715369999, 49.150219747000051 ], [ -122.6159675699999, 49.150152904000045 ], [ -122.615969145999927, 49.149949211000056 ], [ -122.615436822999953, 49.149947440000055 ], [ -122.615147246999967, 49.149833981000029 ], [ -122.615150554999957, 49.149406761000101 ], [ -122.614327794, 49.149404017000066 ], [ -122.614331010999962, 49.148989570000019 ], [ -122.614334077999942, 49.148594451000058 ], [ -122.615568200000013, 49.148598566000082 ], [ -122.61557237599996, 49.148058855000052 ], [ -122.616335847999935, 49.148061395000056 ], [ -122.616374979999989, 49.147523563000085 ], [ -122.615368456999988, 49.147491907000052 ], [ -122.615391776999942, 49.147171486000083 ], [ -122.614966162999963, 49.14715809700008 ], [ -122.615035502999987, 49.146205460000012 ], [ -122.615033623999977, 49.146205400000049 ], [ -122.615295376999924, 49.142608893000094 ], [ -122.615628026999929, 49.142619357000058 ], [ -122.615751453999934, 49.140923099000076 ], [ -122.616861265999958, 49.140958005000066 ], [ -122.616864741999976, 49.140506998000049 ], [ -122.616986620999967, 49.140507403000122 ], [ -122.617110516999929, 49.138803926000072 ], [ -122.62170439099999, 49.138948286000108 ], [ -122.6217727, 49.138007757000075 ], [ -122.619760506999953, 49.137944549000046 ], [ -122.619978096999944, 49.134950134000078 ], [ -122.615319135999982, 49.134803639000019 ], [ -122.615448844999946, 49.133020876000096 ], [ -122.615309824999912, 49.13301650100005 ], [ -122.61724602399994, 49.131694606000117 ], [ -122.617470309999945, 49.131822325000094 ], [ -122.622330843, 49.134589811000069 ], [ -122.624196801999943, 49.135652103000041 ], [ -122.62419693399994, 49.136005157000071 ], [ -122.624198573999962, 49.140121993000051 ], [ -122.626283184999949, 49.140159497000091 ], [ -122.62678128899995, 49.140226493000071 ], [ -122.627925998999956, 49.140258351000085 ], [ -122.628227678, 49.140266756000081 ], [ -122.629516423999945, 49.140302616000042 ], [ -122.630052325999912, 49.14031752100005 ], [ -122.63176391799999, 49.140365115000087 ], [ -122.631910618999953, 49.140369199000112 ], [ -122.632296393, 49.14071919200007 ], [ -122.63226939599997, 49.140903087000062 ], [ -122.632399607999943, 49.14175431000006 ], [ -122.632519214999917, 49.14228070900004 ], [ -122.632797119999964, 49.142549795 ], [ -122.632800863999975, 49.142551816000072 ], [ -122.6330082, 49.142662792000046 ], [ -122.633234402999932, 49.142757305000096 ], [ -122.635133888, 49.142834690000058 ], [ -122.635140479999947, 49.144070394000103 ], [ -122.626802044999948, 49.143853263000075 ], [ -122.624197204, 49.143785313000102 ], [ -122.624197723999927, 49.14740355000005 ], [ -122.63121633499992, 49.147551445000062 ], [ -122.635145987999948, 49.147655708000059 ], [ -122.635768147999954, 49.147672216000082 ], [ -122.638275374999921, 49.147784831000116 ], [ -122.63979920599995, 49.147826490000092 ], [ -122.64244523499994, 49.147898562000087 ], [ -122.642525893999945, 49.147901275000024 ], [ -122.642539598, 49.147901748000066 ], [ -122.643258882999973, 49.147925994000104 ], [ -122.643532787999931, 49.147935527000058 ], [ -122.645743326999963, 49.148012479000101 ], [ -122.645764615999937, 49.15161330800003 ], [ -122.645785376999953, 49.152979167000083 ], [ -122.645753554999985, 49.155434719 ], [ -122.645727239999928, 49.157544089000091 ], [ -122.645724312999903, 49.157778585000152 ], [ -122.645725094999989, 49.158242704000052 ], [ -122.64518107399999, 49.158098643000123 ], [ -122.641938569999965, 49.157239973000053 ], [ -122.640363412999974, 49.156822811000019 ], [ -122.639969036999986, 49.156718343000044 ], [ -122.639808472999945, 49.156675818000025 ], [ -122.637194475999962, 49.155983447000033 ], [ -122.636148287999958, 49.155706314000078 ], [ -122.630734559999937, 49.154272005000102 ], [ -122.624148432999974, 49.152526566000063 ], [ -122.624068182999935, 49.152505285000082 ], [ -122.62394502699999, 49.152472652 ], [ -122.62224292499999, 49.152021472000051 ], [ -122.621985539999955, 49.151953253000052 ], [ -122.620135787999928, 49.15146290400002 ], [ -122.618569291999933, 49.151005517000065 ], [ -122.617933619999974, 49.150797201000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112819833", "BldgCostT": "76863333", "sL_LossRatio": "0.738625624409342", "sL_AssetLoss": "1555470", "sL_BldgLoss": "1148910", "sL_StrLoss": "542150", "sL_NStrLoss": "606760", "sL_ContLoss": "406560", "geom_point": "0101000020E61000004F476BD28EA85EC00FC3A27D07944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63554724, 49.157546564000029 ], [ -122.63505534799998, 49.157531141000064 ], [ -122.634435110999974, 49.15751179500004 ], [ -122.633920294999939, 49.157576803000062 ], [ -122.63385217699998, 49.157600098000096 ], [ -122.633418419999941, 49.157748504000139 ], [ -122.632970500999974, 49.157402920000038 ], [ -122.63223108899993, 49.156953518000073 ], [ -122.631487078999967, 49.156625596000083 ], [ -122.63045312499996, 49.156287803000041 ], [ -122.629918979999928, 49.156166502000119 ], [ -122.629350281999947, 49.156067614000065 ], [ -122.628994286999941, 49.156023091000037 ], [ -122.62871380199999, 49.156016087000076 ], [ -122.628323287999947, 49.15604980300008 ], [ -122.627799712999888, 49.156199302000111 ], [ -122.626838579999969, 49.156728792000088 ], [ -122.626106993999926, 49.157118599000093 ], [ -122.625713606999938, 49.15726748700007 ], [ -122.625145797999963, 49.157327208000012 ], [ -122.624103877999929, 49.157325196000087 ], [ -122.624105830999966, 49.155623925000022 ], [ -122.62410684, 49.154733415000045 ], [ -122.624107812999938, 49.153887869000116 ], [ -122.624109087999969, 49.152741099000117 ], [ -122.62394502699999, 49.152472652 ], [ -122.624068182999935, 49.152505285000082 ], [ -122.624148432999974, 49.152526566000063 ], [ -122.630734559999937, 49.154272005000102 ], [ -122.636148287999958, 49.155706314000078 ], [ -122.637194475999962, 49.155983447000033 ], [ -122.639808472999945, 49.156675818000025 ], [ -122.639969036999986, 49.156718343000044 ], [ -122.640363412999974, 49.156822811000019 ], [ -122.641938569999965, 49.157239973000053 ], [ -122.64518107399999, 49.158098643000123 ], [ -122.645725094999989, 49.158242704000052 ], [ -122.645734340999951, 49.158534716000162 ], [ -122.645767759999941, 49.159587746000057 ], [ -122.645776609999956, 49.159866391000094 ], [ -122.64563756299999, 49.160026069000082 ], [ -122.645616627999985, 49.160924755000053 ], [ -122.645368750999978, 49.160936430000078 ], [ -122.645327747999943, 49.160938366000074 ], [ -122.644960342999966, 49.160955663000031 ], [ -122.643948705999932, 49.161046694000049 ], [ -122.643647717999912, 49.16103729000006 ], [ -122.643213237999973, 49.160939931000058 ], [ -122.64285374399995, 49.160791752000122 ], [ -122.642632984999977, 49.160658717000103 ], [ -122.642457136999894, 49.160492809000111 ], [ -122.642248459999948, 49.160249294000032 ], [ -122.642123468999912, 49.159930010000075 ], [ -122.64212015599999, 49.159747881000051 ], [ -122.642124425999967, 49.159593891000036 ], [ -122.642138954999979, 49.159013108000046 ], [ -122.642136432999948, 49.158630041000031 ], [ -122.642046178, 49.1584371060001 ], [ -122.641770944999948, 49.158166267000112 ], [ -122.641445854, 49.157978591000067 ], [ -122.64114208699999, 49.157856484000071 ], [ -122.640756813999985, 49.157780472000091 ], [ -122.638908199999989, 49.157710137 ], [ -122.638451581999973, 49.157687918000093 ], [ -122.63554724, 49.157546564000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77642083", "BldgCostT": "51808333", "sL_LossRatio": "0.730170172231805", "sL_AssetLoss": "1165290", "sL_BldgLoss": "850860", "sL_StrLoss": "393660", "sL_NStrLoss": "457200", "sL_ContLoss": "314430", "geom_point": "0101000020E6100000A13CDAD537A85EC05528E2DF2D944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.62871380199999, 49.156016087000076 ], [ -122.628994286999941, 49.156023091000037 ], [ -122.629350281999947, 49.156067614000065 ], [ -122.629918979999928, 49.156166502000119 ], [ -122.63045312499996, 49.156287803000041 ], [ -122.630237387999941, 49.156880290000089 ], [ -122.63021499499996, 49.157095008000084 ], [ -122.630239915999979, 49.157375108000132 ], [ -122.6303181899999, 49.157752394000042 ], [ -122.630318174999942, 49.157766859000027 ], [ -122.630317793999922, 49.158098506000087 ], [ -122.630182502999901, 49.158414113000042 ], [ -122.62993317899999, 49.158807302000049 ], [ -122.629876231999987, 49.158915251000103 ], [ -122.629734486999908, 49.159183832000103 ], [ -122.629532672999986, 49.159566199000061 ], [ -122.629143990999978, 49.159454091000043 ], [ -122.629093737999938, 49.15943960700011 ], [ -122.628132428999933, 49.159162373000051 ], [ -122.627744976999978, 49.159050624000024 ], [ -122.627464377999971, 49.15896969300011 ], [ -122.627149177999982, 49.15883549100009 ], [ -122.626919089999944, 49.158700314000036 ], [ -122.626701000999958, 49.158531299000131 ], [ -122.626223395999901, 49.157970199000069 ], [ -122.625713606999938, 49.15726748700007 ], [ -122.626106993999926, 49.157118599000093 ], [ -122.626838579999969, 49.156728792000088 ], [ -122.627799712999888, 49.156199302000111 ], [ -122.628323287999947, 49.15604980300008 ], [ -122.62871380199999, 49.156016087000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105700167", "BldgCostT": "70421667", "sL_LossRatio": "0.731145376352048", "sL_AssetLoss": "1620690", "sL_BldgLoss": "1184960", "sL_StrLoss": "533330", "sL_NStrLoss": "651630", "sL_ContLoss": "435730", "geom_point": "0101000020E6100000FB9A27CF63A85EC0CF32E6095F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.629170101999961, 49.160255894000038 ], [ -122.629532672999986, 49.159566199000061 ], [ -122.629734486999908, 49.159183832000103 ], [ -122.629876231999987, 49.158915251000103 ], [ -122.62993317899999, 49.158807302000049 ], [ -122.630182502999901, 49.158414113000042 ], [ -122.630317793999922, 49.158098506000087 ], [ -122.630318174999942, 49.157766859000027 ], [ -122.6303181899999, 49.157752394000042 ], [ -122.630239915999979, 49.157375108000132 ], [ -122.63021499499996, 49.157095008000084 ], [ -122.630237387999941, 49.156880290000089 ], [ -122.63045312499996, 49.156287803000041 ], [ -122.631487078999967, 49.156625596000083 ], [ -122.63223108899993, 49.156953518000073 ], [ -122.632970500999974, 49.157402920000038 ], [ -122.633418419999941, 49.157748504000139 ], [ -122.633063097999965, 49.158054590000063 ], [ -122.63283918599997, 49.158344988000138 ], [ -122.632783521999897, 49.158601898000065 ], [ -122.632787989999912, 49.159781380000034 ], [ -122.63278997299993, 49.160310696000117 ], [ -122.632344704999952, 49.160306683 ], [ -122.632018309999978, 49.160269383000099 ], [ -122.631691420999971, 49.160182598000056 ], [ -122.631615098999987, 49.160536115000113 ], [ -122.631638212, 49.161441358000054 ], [ -122.631641905999956, 49.161585883000051 ], [ -122.629573591999943, 49.161497819000076 ], [ -122.628630809999933, 49.161320406000065 ], [ -122.62894937099999, 49.160691610000036 ], [ -122.629170101999961, 49.160255894000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103663583", "BldgCostT": "71228333", "sL_LossRatio": "0.752356232077859", "sL_AssetLoss": "1522558", "sL_BldgLoss": "1145506", "sL_StrLoss": "526016", "sL_NStrLoss": "619490", "sL_ContLoss": "377052", "geom_point": "0101000020E610000062E72B5024A85EC0D92BE22A85944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.624994609999987, 49.161978801000039 ], [ -122.624905294999948, 49.161924601000088 ], [ -122.624854934999917, 49.161923914000049 ], [ -122.624539342999967, 49.161919713000067 ], [ -122.624053215999965, 49.161913208000016 ], [ -122.62406963599993, 49.160427307000141 ], [ -122.624078481999959, 49.159626794000125 ], [ -122.624081359999948, 49.159365933000103 ], [ -122.624103877999929, 49.157325196000087 ], [ -122.625145797999963, 49.157327208000012 ], [ -122.625713606999938, 49.15726748700007 ], [ -122.626223395999901, 49.157970199000069 ], [ -122.626701000999958, 49.158531299000131 ], [ -122.626919089999944, 49.158700314000036 ], [ -122.627149177999982, 49.15883549100009 ], [ -122.627464377999971, 49.15896969300011 ], [ -122.627744976999978, 49.159050624000024 ], [ -122.628132428999933, 49.159162373000051 ], [ -122.629093737999938, 49.15943960700011 ], [ -122.629143990999978, 49.159454091000043 ], [ -122.629532672999986, 49.159566199000061 ], [ -122.629170101999961, 49.160255894000038 ], [ -122.62894937099999, 49.160691610000036 ], [ -122.628630809999933, 49.161320406000065 ], [ -122.629573591999943, 49.161497819000076 ], [ -122.631641905999956, 49.161585883000051 ], [ -122.631638212, 49.161441358000054 ], [ -122.631615098999987, 49.160536115000113 ], [ -122.631691420999971, 49.160182598000056 ], [ -122.632018309999978, 49.160269383000099 ], [ -122.632344704999952, 49.160306683 ], [ -122.63278997299993, 49.160310696000117 ], [ -122.632837522999978, 49.161948980000041 ], [ -122.632844898999949, 49.162203891000111 ], [ -122.632842692999986, 49.162291185000079 ], [ -122.630969562999908, 49.162216911 ], [ -122.627570524999925, 49.162082003000108 ], [ -122.627308968999969, 49.16207153800012 ], [ -122.625566818, 49.162001734000029 ], [ -122.624994609999987, 49.161978801000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82032167", "BldgCostT": "54421667", "sL_LossRatio": "0.71646629091173", "sL_AssetLoss": "1240170", "sL_BldgLoss": "888540", "sL_StrLoss": "400700", "sL_NStrLoss": "487840", "sL_ContLoss": "351630", "geom_point": "0101000020E61000007F710C7556A85EC0DEECB4DAE8944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.627526390999932, 49.162688886000097 ], [ -122.627570524999925, 49.162082003000108 ], [ -122.630969562999908, 49.162216911 ], [ -122.632842692999986, 49.162291185000079 ], [ -122.632844958999968, 49.162947276000033 ], [ -122.632846918, 49.163501606000047 ], [ -122.632934060999986, 49.164378246000126 ], [ -122.632937645999959, 49.164414064000049 ], [ -122.632950008999913, 49.164538504000042 ], [ -122.632086095999938, 49.164539397000055 ], [ -122.631158103999923, 49.164538836000112 ], [ -122.630941106999927, 49.164538696000093 ], [ -122.630329899999964, 49.164552009000069 ], [ -122.629979314999943, 49.16462120000007 ], [ -122.62966208099999, 49.164778905000055 ], [ -122.629422486999928, 49.165095794000123 ], [ -122.62875250399999, 49.16450079700008 ], [ -122.628017475999954, 49.163820798000053 ], [ -122.627786814999965, 49.16359820300007 ], [ -122.627714476000037, 49.163525351000054 ], [ -122.627610482, 49.163420602000024 ], [ -122.627507180999942, 49.163199292000051 ], [ -122.627526390999932, 49.162688886000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407083416", "BldgCostT": "238476666", "sL_LossRatio": "0.64963351603286", "sL_AssetLoss": "5376770", "sL_BldgLoss": "3492930", "sL_StrLoss": "1607200", "sL_NStrLoss": "1885730", "sL_ContLoss": "1883840", "geom_point": "0101000020E6100000D5139F3310A95EC0BAC404146E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.637605215999898, 49.168467006000085 ], [ -122.637174688999892, 49.168408511000102 ], [ -122.636110109999933, 49.168395 ], [ -122.636114606999939, 49.168938581000099 ], [ -122.634974404999952, 49.168928192000088 ], [ -122.634950083999982, 49.168000897000127 ], [ -122.634938530999975, 49.167560202000047 ], [ -122.634917899999934, 49.166772713000064 ], [ -122.634787718999931, 49.166298199000011 ], [ -122.635818220999965, 49.166117703000047 ], [ -122.637347014999975, 49.166133095000085 ], [ -122.63849991099994, 49.16614468900007 ], [ -122.638921408999934, 49.166062388000107 ], [ -122.639367008999926, 49.165911406000056 ], [ -122.639912, 49.16558149500004 ], [ -122.640214902999972, 49.165203419000136 ], [ -122.640362409999952, 49.164851211000077 ], [ -122.640362378999924, 49.16474301900007 ], [ -122.640362339999911, 49.164689308000085 ], [ -122.640361497999962, 49.162587479000074 ], [ -122.642205750999949, 49.162659483000027 ], [ -122.643346383000036, 49.162704022000099 ], [ -122.64569816199996, 49.16279715800011 ], [ -122.645732056000028, 49.16350561200003 ], [ -122.645732410999955, 49.164450929000118 ], [ -122.645724226999974, 49.165438312000042 ], [ -122.64570255299995, 49.16587199500001 ], [ -122.645726597999953, 49.167382149000147 ], [ -122.645752868999978, 49.168275770000051 ], [ -122.645806099999959, 49.170084539000051 ], [ -122.64583898599993, 49.171202854000079 ], [ -122.644863280999971, 49.171192271000038 ], [ -122.64439811299998, 49.171252547000073 ], [ -122.643863149, 49.171415285000094 ], [ -122.642922926999972, 49.171701282000086 ], [ -122.642326698999952, 49.171829588000094 ], [ -122.642271076999961, 49.171829877000064 ], [ -122.641702390999953, 49.17183261300007 ], [ -122.640516484000031, 49.171827205000028 ], [ -122.64016657799999, 49.171829798000061 ], [ -122.638782303999903, 49.171721695 ], [ -122.638733415999951, 49.170994697000026 ], [ -122.638695782999932, 49.170377195000079 ], [ -122.638633894999941, 49.169412020000074 ], [ -122.638573595999929, 49.168824316000098 ], [ -122.638079098999953, 49.168607903000101 ], [ -122.637605215999898, 49.168467006000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83031166", "BldgCostT": "56581666", "sL_LossRatio": "0.742099360521684", "sL_AssetLoss": "1346410", "sL_BldgLoss": "999170", "sL_StrLoss": "435560", "sL_NStrLoss": "563610", "sL_ContLoss": "347240", "geom_point": "0101000020E610000072BE1A98C3A85EC07E1EE558C5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.636110109999933, 49.168395 ], [ -122.637174688999892, 49.168408511000102 ], [ -122.637605215999898, 49.168467006000085 ], [ -122.638079098999953, 49.168607903000101 ], [ -122.638573595999929, 49.168824316000098 ], [ -122.638633894999941, 49.169412020000074 ], [ -122.638695782999932, 49.170377195000079 ], [ -122.638733415999951, 49.170994697000026 ], [ -122.638782303999903, 49.171721695 ], [ -122.637643788999966, 49.171629417000091 ], [ -122.636546907999957, 49.171549996000074 ], [ -122.63607550099999, 49.17150739700012 ], [ -122.635827492999965, 49.17144650200003 ], [ -122.635570292999915, 49.171343789000048 ], [ -122.63534279299995, 49.171208715000077 ], [ -122.63511139799999, 49.170957288000068 ], [ -122.634988075999928, 49.170708301000083 ], [ -122.634995362999945, 49.169885398000105 ], [ -122.63499950799995, 49.169415594000014 ], [ -122.634974404999952, 49.168928192000088 ], [ -122.636114606999939, 49.168938581000099 ], [ -122.636110109999933, 49.168395 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117858500", "BldgCostT": "82250000", "sL_LossRatio": "0.828604830443144", "sL_AssetLoss": "1180430", "sL_BldgLoss": "978110", "sL_StrLoss": "452580", "sL_NStrLoss": "525530", "sL_ContLoss": "202320", "geom_point": "0101000020E6100000767B20E482A85EC0C431A21FD3954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631993703999925, 49.171434697000045 ], [ -122.631989802999968, 49.171072387 ], [ -122.630913300999964, 49.171071991000119 ], [ -122.630893503999957, 49.170115284000133 ], [ -122.63098543599996, 49.169925273000047 ], [ -122.631171438999985, 49.169723886000028 ], [ -122.631430612999949, 49.169573375000041 ], [ -122.63171874599999, 49.169476977000109 ], [ -122.632056707999936, 49.169430782000113 ], [ -122.633826395999947, 49.169423001000062 ], [ -122.633890608999977, 49.170108098000135 ], [ -122.634995362999945, 49.169885398000105 ], [ -122.634988075999928, 49.170708301000083 ], [ -122.63511139799999, 49.170957288000068 ], [ -122.63534279299995, 49.171208715000077 ], [ -122.63473358399996, 49.171439305000085 ], [ -122.63409339, 49.171512106000073 ], [ -122.633178617999988, 49.171511401000018 ], [ -122.632831487999965, 49.171514114000068 ], [ -122.631993703999925, 49.171434697000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118581750", "BldgCostT": "79605000", "sL_LossRatio": "0.732199877230823", "sL_AssetLoss": "1775690", "sL_BldgLoss": "1300160", "sL_StrLoss": "573350", "sL_NStrLoss": "726810", "sL_ContLoss": "475530", "geom_point": "0101000020E6100000749DB23F75A85EC061F670D162954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.633890608999977, 49.170108098000135 ], [ -122.633826395999947, 49.169423001000062 ], [ -122.632056707999936, 49.169430782000113 ], [ -122.63171874599999, 49.169476977000109 ], [ -122.631430612999949, 49.169573375000041 ], [ -122.631171438999985, 49.169723886000028 ], [ -122.630963649999927, 49.169525427000039 ], [ -122.630937972999945, 49.16906594000006 ], [ -122.63088167799999, 49.167817899000092 ], [ -122.62927041099999, 49.167816996000099 ], [ -122.629259604999945, 49.167210199000039 ], [ -122.62924620599992, 49.167163563000067 ], [ -122.62920811199993, 49.167031089000098 ], [ -122.629030684999947, 49.166867796000105 ], [ -122.628828788999954, 49.166625412000045 ], [ -122.628792599999954, 49.16646391200004 ], [ -122.628802586999896, 49.166287583000056 ], [ -122.62886167799999, 49.166168417000051 ], [ -122.62901778899996, 49.165853599000044 ], [ -122.629422486999928, 49.165095794000123 ], [ -122.62966208099999, 49.164778905000055 ], [ -122.629979314999943, 49.16462120000007 ], [ -122.630329899999964, 49.164552009000069 ], [ -122.630941106999927, 49.164538696000093 ], [ -122.631158103999923, 49.164538836000112 ], [ -122.632086095999938, 49.164539397000055 ], [ -122.632950008999913, 49.164538504000042 ], [ -122.632974723999951, 49.164636792000088 ], [ -122.633056500999913, 49.164961698000091 ], [ -122.633081000999965, 49.16499333100009 ], [ -122.633216879999935, 49.165168753000067 ], [ -122.633309819999951, 49.165288695000079 ], [ -122.633676191999925, 49.165587605000134 ], [ -122.634239715999982, 49.165892705000026 ], [ -122.634787718999931, 49.166298199000011 ], [ -122.634917899999934, 49.166772713000064 ], [ -122.634938530999975, 49.167560202000047 ], [ -122.634950083999982, 49.168000897000127 ], [ -122.634974404999952, 49.168928192000088 ], [ -122.63499950799995, 49.169415594000014 ], [ -122.634995362999945, 49.169885398000105 ], [ -122.633890608999977, 49.170108098000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288547166", "BldgCostT": "188621666", "sL_LossRatio": "0.713602955841876", "sL_AssetLoss": "4011040", "sL_BldgLoss": "2862290", "sL_StrLoss": "1313800", "sL_NStrLoss": "1548490", "sL_ContLoss": "1148750", "geom_point": "0101000020E610000096C2599D1EA85EC0DDEEBB75C0954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.624022321999973, 49.167795841000029 ], [ -122.62403391099997, 49.166314708000058 ], [ -122.624041107999957, 49.164915903000136 ], [ -122.624045364999972, 49.1640883580001 ], [ -122.624047188999967, 49.163733286000117 ], [ -122.624049606999989, 49.162999931000094 ], [ -122.624053215999965, 49.161913208000016 ], [ -122.624539342999967, 49.161919713000067 ], [ -122.624854934999917, 49.161923914000049 ], [ -122.624905294999948, 49.161924601000088 ], [ -122.624994609999987, 49.161978801000039 ], [ -122.625566818, 49.162001734000029 ], [ -122.627308968999969, 49.16207153800012 ], [ -122.627570524999925, 49.162082003000108 ], [ -122.627526390999932, 49.162688886000097 ], [ -122.627507180999942, 49.163199292000051 ], [ -122.627610482, 49.163420602000024 ], [ -122.627714476000037, 49.163525351000054 ], [ -122.627786814999965, 49.16359820300007 ], [ -122.628017475999954, 49.163820798000053 ], [ -122.62875250399999, 49.16450079700008 ], [ -122.629422486999928, 49.165095794000123 ], [ -122.62901778899996, 49.165853599000044 ], [ -122.62886167799999, 49.166168417000051 ], [ -122.628802586999896, 49.166287583000056 ], [ -122.628792599999954, 49.16646391200004 ], [ -122.628828788999954, 49.166625412000045 ], [ -122.629030684999947, 49.166867796000105 ], [ -122.62920811199993, 49.167031089000098 ], [ -122.62924620599992, 49.167163563000067 ], [ -122.629259604999945, 49.167210199000039 ], [ -122.62927041099999, 49.167816996000099 ], [ -122.63088167799999, 49.167817899000092 ], [ -122.630937972999945, 49.16906594000006 ], [ -122.630963649999927, 49.169525427000039 ], [ -122.631171438999985, 49.169723886000028 ], [ -122.63098543599996, 49.169925273000047 ], [ -122.630893503999957, 49.170115284000133 ], [ -122.630913300999964, 49.171071991000119 ], [ -122.630241193999964, 49.171072591000048 ], [ -122.629952200999952, 49.170992404000117 ], [ -122.629523379999981, 49.170795990000066 ], [ -122.629269602999926, 49.170702484000046 ], [ -122.629003878999981, 49.170640998000131 ], [ -122.628669014999986, 49.17066380799999 ], [ -122.628404413999988, 49.170718608000108 ], [ -122.628199195999954, 49.170806793000025 ], [ -122.628004995999987, 49.170931401000061 ], [ -122.627727318999987, 49.171223698000098 ], [ -122.627651097999973, 49.171366389000099 ], [ -122.627659496999954, 49.171780305000034 ], [ -122.627634291000035, 49.172259806000035 ], [ -122.627690907999948, 49.172443602000087 ], [ -122.627890703999981, 49.172714803000098 ], [ -122.627982496999905, 49.172848302000091 ], [ -122.628008071999943, 49.173403299000022 ], [ -122.627982387999921, 49.174323504 ], [ -122.628006006999982, 49.17460360400004 ], [ -122.628119616, 49.174757586000069 ], [ -122.628284093999966, 49.174891583000061 ], [ -122.628475709999961, 49.174992279000016 ], [ -122.628688089999983, 49.175033089000046 ], [ -122.629785086999973, 49.175036796 ], [ -122.629789825999964, 49.174309807000071 ], [ -122.62978680099998, 49.172894901000042 ], [ -122.630897579999939, 49.172896298000104 ], [ -122.630890897999933, 49.175013787000047 ], [ -122.630887839999943, 49.175400100000083 ], [ -122.630887233999943, 49.17547160000008 ], [ -122.63087558099997, 49.176927303000099 ], [ -122.629282661999923, 49.176924202000123 ], [ -122.628571617999967, 49.176922805000103 ], [ -122.628322065999953, 49.176923624000018 ], [ -122.628198597999955, 49.176924035000056 ], [ -122.626332565999988, 49.176930164000055 ], [ -122.623989194999965, 49.176937789000064 ], [ -122.623988210000022, 49.175931197000068 ], [ -122.623989062999897, 49.175512358000063 ], [ -122.62398939, 49.175350479000031 ], [ -122.62399011199993, 49.174999489000065 ], [ -122.624017692999956, 49.173864016000088 ], [ -122.623997817999978, 49.173043301000106 ], [ -122.623999575999974, 49.172732813000025 ], [ -122.624002094, 49.172285588000115 ], [ -122.624005222999969, 49.171860252000059 ], [ -122.624007987999946, 49.171486495000089 ], [ -122.62401241299996, 49.170670197000042 ], [ -122.624013395999938, 49.17036709100006 ], [ -122.624014959999954, 49.169898886000034 ], [ -122.624015854, 49.169638466000038 ], [ -122.62401827599993, 49.168954865000053 ], [ -122.624019798999882, 49.168514203000015 ], [ -122.624020366999929, 49.168352129000041 ], [ -122.624022321999973, 49.167795841000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76205833", "BldgCostT": "50608333", "sL_LossRatio": "0.731737827390001", "sL_AssetLoss": "1151150", "sL_BldgLoss": "842340", "sL_StrLoss": "375650", "sL_NStrLoss": "466690", "sL_ContLoss": "308810", "geom_point": "0101000020E610000032AD55D443A85EC0FF14F9BB18964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.627727318999987, 49.171223698000098 ], [ -122.628004995999987, 49.170931401000061 ], [ -122.628199195999954, 49.170806793000025 ], [ -122.628404413999988, 49.170718608000108 ], [ -122.628669014999986, 49.17066380799999 ], [ -122.629003878999981, 49.170640998000131 ], [ -122.629269602999926, 49.170702484000046 ], [ -122.629523379999981, 49.170795990000066 ], [ -122.629952200999952, 49.170992404000117 ], [ -122.630241193999964, 49.171072591000048 ], [ -122.630913300999964, 49.171071991000119 ], [ -122.630897579999939, 49.172896298000104 ], [ -122.62978680099998, 49.172894901000042 ], [ -122.629789825999964, 49.174309807000071 ], [ -122.629785086999973, 49.175036796 ], [ -122.628688089999983, 49.175033089000046 ], [ -122.628475709999961, 49.174992279000016 ], [ -122.628284093999966, 49.174891583000061 ], [ -122.628119616, 49.174757586000069 ], [ -122.628006006999982, 49.17460360400004 ], [ -122.627982387999921, 49.174323504 ], [ -122.628008071999943, 49.173403299000022 ], [ -122.627982496999905, 49.172848302000091 ], [ -122.627890703999981, 49.172714803000098 ], [ -122.627690907999948, 49.172443602000087 ], [ -122.627634291000035, 49.172259806000035 ], [ -122.627659496999954, 49.171780305000034 ], [ -122.627651097999973, 49.171366389000099 ], [ -122.627727318999987, 49.171223698000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111061667", "BldgCostT": "74176667", "sL_LossRatio": "0.742599541122048", "sL_AssetLoss": "1616116", "sL_BldgLoss": "1200127", "sL_StrLoss": "532247", "sL_NStrLoss": "667880", "sL_ContLoss": "415989", "geom_point": "0101000020E61000003E45ED028EA85EC02C22923A64964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63087558099997, 49.176927303000099 ], [ -122.630887233999943, 49.17547160000008 ], [ -122.630887839999943, 49.175400100000083 ], [ -122.630890897999933, 49.175013787000047 ], [ -122.630897579999939, 49.172896298000104 ], [ -122.632005709999973, 49.172897694000056 ], [ -122.632020176999902, 49.172394402000123 ], [ -122.632116009999947, 49.172321699000065 ], [ -122.632261901999982, 49.172276706000041 ], [ -122.63254958099995, 49.172242405000105 ], [ -122.632656308999969, 49.17224156500005 ], [ -122.634505196999925, 49.172227005000124 ], [ -122.634520182999978, 49.17372423500003 ], [ -122.634540088999955, 49.175001807000072 ], [ -122.633484292999967, 49.174997613000116 ], [ -122.63218683, 49.17501649900008 ], [ -122.632215488, 49.17545830500012 ], [ -122.63222439599997, 49.175595295000058 ], [ -122.632182606999933, 49.175756190000051 ], [ -122.632048695999956, 49.175937605000108 ], [ -122.632006412999928, 49.176104797000143 ], [ -122.632010717999933, 49.176310394000019 ], [ -122.632064879999945, 49.176377 ], [ -122.632182699999973, 49.176416689000114 ], [ -122.633163004999957, 49.176422109000029 ], [ -122.63364659199999, 49.176411091 ], [ -122.633910420999939, 49.176367993000078 ], [ -122.634773829999972, 49.175998504000034 ], [ -122.635216009999937, 49.176009608000051 ], [ -122.63653580499998, 49.176005795000066 ], [ -122.637770711999906, 49.175999290000043 ], [ -122.639060497999964, 49.175992712000031 ], [ -122.639121772999971, 49.176947121000097 ], [ -122.637723007999938, 49.17694311000006 ], [ -122.63087558099997, 49.176927303000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122715584", "BldgCostT": "80713334", "sL_LossRatio": "0.727000013070031", "sL_AssetLoss": "1759751", "sL_BldgLoss": "1279339", "sL_StrLoss": "574839", "sL_NStrLoss": "704500", "sL_ContLoss": "480412", "geom_point": "0101000020E61000006419C14AAEA85EC06F3CA7723D964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63218683, 49.17501649900008 ], [ -122.633484292999967, 49.174997613000116 ], [ -122.634540088999955, 49.175001807000072 ], [ -122.634520182999978, 49.17372423500003 ], [ -122.634505196999925, 49.172227005000124 ], [ -122.632656308999969, 49.17224156500005 ], [ -122.63254958099995, 49.172242405000105 ], [ -122.632261901999982, 49.172276706000041 ], [ -122.632116009999947, 49.172321699000065 ], [ -122.632020176999902, 49.172394402000123 ], [ -122.632005709999973, 49.172897694000056 ], [ -122.630897579999939, 49.172896298000104 ], [ -122.630913300999964, 49.171071991000119 ], [ -122.631989802999968, 49.171072387 ], [ -122.631993703999925, 49.171434697000045 ], [ -122.632831487999965, 49.171514114000068 ], [ -122.633178617999988, 49.171511401000018 ], [ -122.63409339, 49.171512106000073 ], [ -122.63473358399996, 49.171439305000085 ], [ -122.63534279299995, 49.171208715000077 ], [ -122.635570292999915, 49.171343789000048 ], [ -122.635827492999965, 49.17144650200003 ], [ -122.63607550099999, 49.17150739700012 ], [ -122.636546907999957, 49.171549996000074 ], [ -122.637643788999966, 49.171629417000091 ], [ -122.638782303999903, 49.171721695 ], [ -122.638834079999981, 49.17252259600015 ], [ -122.638859948999965, 49.172924405000053 ], [ -122.638899274999915, 49.173517489000098 ], [ -122.638935393999958, 49.174062192000072 ], [ -122.638948709999966, 49.174314034000055 ], [ -122.639028728999904, 49.17551550700005 ], [ -122.639060497999964, 49.175992712000031 ], [ -122.637770711999906, 49.175999290000043 ], [ -122.63653580499998, 49.176005795000066 ], [ -122.635216009999937, 49.176009608000051 ], [ -122.634773829999972, 49.175998504000034 ], [ -122.633910420999939, 49.176367993000078 ], [ -122.63364659199999, 49.176411091 ], [ -122.633163004999957, 49.176422109000029 ], [ -122.632182699999973, 49.176416689000114 ], [ -122.632064879999945, 49.176377 ], [ -122.632010717999933, 49.176310394000019 ], [ -122.632006412999928, 49.176104797000143 ], [ -122.632048695999956, 49.175937605000108 ], [ -122.632182606999933, 49.175756190000051 ], [ -122.63222439599997, 49.175595295000058 ], [ -122.632215488, 49.17545830500012 ], [ -122.63218683, 49.17501649900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89181666", "BldgCostT": "60351666", "sL_LossRatio": "0.737969743747187", "sL_AssetLoss": "1397331", "sL_BldgLoss": "1031188", "sL_StrLoss": "450628", "sL_NStrLoss": "580560", "sL_ContLoss": "366143", "geom_point": "0101000020E61000006CA9EE5722A95EC0BE58182227964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.643175976999956, 49.174463946000088 ], [ -122.642464833999938, 49.174340840000099 ], [ -122.641988219, 49.174331387000066 ], [ -122.64003161, 49.174323492000028 ], [ -122.638948709999966, 49.174314034000055 ], [ -122.638935393999958, 49.174062192000072 ], [ -122.638899274999915, 49.173517489000098 ], [ -122.638859948999965, 49.172924405000053 ], [ -122.638834079999981, 49.17252259600015 ], [ -122.638782303999903, 49.171721695 ], [ -122.64016657799999, 49.171829798000061 ], [ -122.640516484000031, 49.171827205000028 ], [ -122.641702390999953, 49.17183261300007 ], [ -122.642271076999961, 49.171829877000064 ], [ -122.642326698999952, 49.171829588000094 ], [ -122.642922926999972, 49.171701282000086 ], [ -122.643863149, 49.171415285000094 ], [ -122.64439811299998, 49.171252547000073 ], [ -122.644863280999971, 49.171192271000038 ], [ -122.64583898599993, 49.171202854000079 ], [ -122.645887000999963, 49.172381218000069 ], [ -122.645907217999948, 49.172727870000102 ], [ -122.646098475999949, 49.174828965000067 ], [ -122.646111323999889, 49.17499336100007 ], [ -122.645520347999962, 49.175010088000171 ], [ -122.644541249, 49.174787152000093 ], [ -122.644378779999926, 49.174750141000118 ], [ -122.643175976999956, 49.174463946000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182742999", "BldgCostT": "116979999", "sL_LossRatio": "0.713937603839764", "sL_AssetLoss": "2437650", "sL_BldgLoss": "1740330", "sL_StrLoss": "803900", "sL_NStrLoss": "936430", "sL_ContLoss": "697320", "geom_point": "0101000020E61000005F2340551EA95EC07FDD6D07B8964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.639028728999904, 49.17551550700005 ], [ -122.638948709999966, 49.174314034000055 ], [ -122.64003161, 49.174323492000028 ], [ -122.641988219, 49.174331387000066 ], [ -122.642464833999938, 49.174340840000099 ], [ -122.643175976999956, 49.174463946000088 ], [ -122.644378779999926, 49.174750141000118 ], [ -122.644541249, 49.174787152000093 ], [ -122.645520347999962, 49.175010088000171 ], [ -122.646111323999889, 49.17499336100007 ], [ -122.646205727000023, 49.176612024000079 ], [ -122.646225013999953, 49.176972159000144 ], [ -122.646220971999966, 49.178225504000125 ], [ -122.646219442999964, 49.178341680000045 ], [ -122.646257003999949, 49.178429371000121 ], [ -122.646247877999883, 49.178722017000069 ], [ -122.646243406999972, 49.178865084000094 ], [ -122.646235452, 49.179065085000147 ], [ -122.64623335, 49.179117942000069 ], [ -122.64620904499999, 49.179729338000108 ], [ -122.646197659000023, 49.180017070000048 ], [ -122.646161142999944, 49.180936004000074 ], [ -122.645338517, 49.180930195000066 ], [ -122.644484909999917, 49.180935084000055 ], [ -122.643946588999967, 49.180848099000094 ], [ -122.643334109999955, 49.180668604000061 ], [ -122.642499508999961, 49.180373106000062 ], [ -122.641039026999977, 49.180120305000067 ], [ -122.640854508999965, 49.180054196000142 ], [ -122.64048575399994, 49.179789686000085 ], [ -122.640476282999927, 49.179782900000085 ], [ -122.640297708, 49.179653902000098 ], [ -122.638059604999967, 49.178774793000109 ], [ -122.637876613999978, 49.178650105 ], [ -122.637711501999931, 49.178429608000137 ], [ -122.637715214999901, 49.177948952000044 ], [ -122.637716954999973, 49.177724069000071 ], [ -122.637723007999938, 49.17694311000006 ], [ -122.639121772999971, 49.176947121000097 ], [ -122.639060497999964, 49.175992712000031 ], [ -122.639028728999904, 49.17551550700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186247334", "BldgCostT": "121648334", "sL_LossRatio": "0.708644037940133", "sL_AssetLoss": "2753285", "sL_BldgLoss": "1951099", "sL_StrLoss": "850979", "sL_NStrLoss": "1100120", "sL_ContLoss": "802186", "geom_point": "0101000020E6100000A2DC3301B5A95EC0604DD0EC5B964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.646111323999889, 49.17499336100007 ], [ -122.646098475999949, 49.174828965000067 ], [ -122.645907217999948, 49.172727870000102 ], [ -122.645887000999963, 49.172381218000069 ], [ -122.645991254999927, 49.172380869000037 ], [ -122.646898752999988, 49.172386611000015 ], [ -122.647172967999921, 49.172387921000087 ], [ -122.648105609999945, 49.17238722300003 ], [ -122.648702443999952, 49.172384189000056 ], [ -122.649486672999984, 49.172387867000062 ], [ -122.65005528099999, 49.172394700000069 ], [ -122.650334647999927, 49.172395300000069 ], [ -122.65070671099997, 49.172396102000079 ], [ -122.651267110999981, 49.172412525000027 ], [ -122.652126928999962, 49.172386207000109 ], [ -122.652879807999952, 49.172406006000074 ], [ -122.65377810699998, 49.172406782000088 ], [ -122.654566838999969, 49.172407473000085 ], [ -122.657203800999966, 49.172409685000041 ], [ -122.657212046999945, 49.172637111000043 ], [ -122.657223108999972, 49.172941901000058 ], [ -122.657268505999951, 49.173893102000122 ], [ -122.657288806999972, 49.174698498000055 ], [ -122.657290490999941, 49.174827371000106 ], [ -122.657304185999962, 49.175364578000035 ], [ -122.657310141999957, 49.17559837300012 ], [ -122.65731814599999, 49.175913108000024 ], [ -122.657320440999982, 49.176003027000078 ], [ -122.657337124999955, 49.176658087000071 ], [ -122.657344702999964, 49.176991735000108 ], [ -122.656476466999891, 49.176986782000021 ], [ -122.654859013999911, 49.176977597000061 ], [ -122.654363620999973, 49.176977426000086 ], [ -122.654185272999953, 49.176977383000136 ], [ -122.652717110999944, 49.176976885000087 ], [ -122.651048710999973, 49.176976309000089 ], [ -122.649849558999904, 49.176975617000046 ], [ -122.648981743999983, 49.176975101000096 ], [ -122.646962905999885, 49.176972600000099 ], [ -122.646337495999944, 49.176972057000071 ], [ -122.646225013999953, 49.176972159000144 ], [ -122.646205727000023, 49.176612024000079 ], [ -122.646111323999889, 49.17499336100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193379122", "BldgCostT": "129713705", "sL_LossRatio": "0.711568854530637", "sL_AssetLoss": "3030810", "sL_BldgLoss": "2156630", "sL_StrLoss": "1006630", "sL_NStrLoss": "1150000", "sL_ContLoss": "874180", "geom_point": "0101000020E610000025DAF21D7EA95EC0298A5FCAA3954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.645726597999953, 49.167382149000147 ], [ -122.64570255299995, 49.16587199500001 ], [ -122.645839630999902, 49.165872670000063 ], [ -122.646974464999971, 49.165880977000107 ], [ -122.647555992999941, 49.165983507000114 ], [ -122.648365109999943, 49.16612613800001 ], [ -122.648445910999953, 49.166140747000043 ], [ -122.649145220999927, 49.166267320000067 ], [ -122.649417814999978, 49.166316652000084 ], [ -122.650595896999945, 49.166529898000078 ], [ -122.651318191999962, 49.166536110000074 ], [ -122.651310586999912, 49.167402790000018 ], [ -122.651310439999989, 49.167556304000151 ], [ -122.651310156999983, 49.167880144000058 ], [ -122.651309810999962, 49.168269702000032 ], [ -122.651305001999901, 49.169193190000087 ], [ -122.651311948999989, 49.169553341000068 ], [ -122.65131766199994, 49.169849966000129 ], [ -122.651324684999949, 49.170214799000107 ], [ -122.65118938799999, 49.170455705000037 ], [ -122.650897702999956, 49.17079260000007 ], [ -122.650627588999939, 49.171019390000069 ], [ -122.650441381999897, 49.171129895000064 ], [ -122.650124183999978, 49.17121099600007 ], [ -122.649972538999975, 49.171211073000066 ], [ -122.649410987999957, 49.171211310000025 ], [ -122.649486672999984, 49.172387867000062 ], [ -122.648702443999952, 49.172384189000056 ], [ -122.648105609999945, 49.17238722300003 ], [ -122.647172967999921, 49.172387921000087 ], [ -122.646898752999988, 49.172386611000015 ], [ -122.645991254999927, 49.172380869000037 ], [ -122.645887000999963, 49.172381218000069 ], [ -122.64583898599993, 49.171202854000079 ], [ -122.645806099999959, 49.170084539000051 ], [ -122.645752868999978, 49.168275770000051 ], [ -122.645726597999953, 49.167382149000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125155917", "BldgCostT": "84371667", "sL_LossRatio": "0.730654582946497", "sL_AssetLoss": "1870947", "sL_BldgLoss": "1367016", "sL_StrLoss": "615126", "sL_NStrLoss": "751890", "sL_ContLoss": "503931", "geom_point": "0101000020E6100000DF92DA93D9A95EC0F05F8BA393954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.651318191999962, 49.166536110000074 ], [ -122.651327293999955, 49.165895713000062 ], [ -122.651329904999955, 49.165516385000068 ], [ -122.651351962999954, 49.165417441000038 ], [ -122.651366402999955, 49.165352694000077 ], [ -122.651406644999923, 49.165313669000099 ], [ -122.651442987999957, 49.165278400000048 ], [ -122.651466972999941, 49.165138103000046 ], [ -122.65158078799999, 49.164472268000104 ], [ -122.651633963999984, 49.164447169000013 ], [ -122.651804550999941, 49.164347383000084 ], [ -122.652820385, 49.164298495 ], [ -122.65348590399999, 49.164425499000046 ], [ -122.653521806999905, 49.163318192000048 ], [ -122.654699296999951, 49.163323295000069 ], [ -122.655878673999908, 49.163320299000077 ], [ -122.655885495999939, 49.164865893000147 ], [ -122.655407986999961, 49.164870009 ], [ -122.65488260299999, 49.164739281000109 ], [ -122.654871499999942, 49.165121895000048 ], [ -122.654938987999941, 49.165346602000049 ], [ -122.65551369799999, 49.166106986000059 ], [ -122.655771395999949, 49.166242008000033 ], [ -122.656060088999979, 49.16628891200002 ], [ -122.657010682999953, 49.166284999000069 ], [ -122.657015767999894, 49.166520799000104 ], [ -122.65702650599999, 49.167019011000029 ], [ -122.657095516999973, 49.168844740000111 ], [ -122.657096898999939, 49.168881207000041 ], [ -122.65710773399995, 49.169390923000073 ], [ -122.657114091999972, 49.169690011000071 ], [ -122.657128800999942, 49.170173238000075 ], [ -122.657145100999955, 49.170709217000088 ], [ -122.657203800999966, 49.172409685000041 ], [ -122.654566838999969, 49.172407473000085 ], [ -122.65377810699998, 49.172406782000088 ], [ -122.652879807999952, 49.172406006000074 ], [ -122.652126928999962, 49.172386207000109 ], [ -122.651267110999981, 49.172412525000027 ], [ -122.65070671099997, 49.172396102000079 ], [ -122.650334647999927, 49.172395300000069 ], [ -122.65005528099999, 49.172394700000069 ], [ -122.649486672999984, 49.172387867000062 ], [ -122.649410987999957, 49.171211310000025 ], [ -122.649972538999975, 49.171211073000066 ], [ -122.650124183999978, 49.17121099600007 ], [ -122.650441381999897, 49.171129895000064 ], [ -122.650627588999939, 49.171019390000069 ], [ -122.650897702999956, 49.17079260000007 ], [ -122.65118938799999, 49.170455705000037 ], [ -122.651324684999949, 49.170214799000107 ], [ -122.65131766199994, 49.169849966000129 ], [ -122.651311948999989, 49.169553341000068 ], [ -122.651305001999901, 49.169193190000087 ], [ -122.651309810999962, 49.168269702000032 ], [ -122.651310156999983, 49.167880144000058 ], [ -122.651310439999989, 49.167556304000151 ], [ -122.651310586999912, 49.167402790000018 ], [ -122.651318191999962, 49.166536110000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164118261", "BldgCostT": "105058461", "sL_LossRatio": "0.647250795660354", "sL_AssetLoss": "2843550", "sL_BldgLoss": "1840490", "sL_StrLoss": "718390", "sL_NStrLoss": "1122100", "sL_ContLoss": "1003060", "geom_point": "0101000020E6100000162B1F59ABAA5EC08399113958954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.667980787999966, 49.169828044000035 ], [ -122.667971400999974, 49.169039891000075 ], [ -122.667031892999958, 49.169041404000076 ], [ -122.666642065999895, 49.169040295000123 ], [ -122.665622486999965, 49.169037401000018 ], [ -122.664177088999935, 49.169017005000043 ], [ -122.663075495999976, 49.168602612000072 ], [ -122.662603814999954, 49.168582489000087 ], [ -122.662530818999983, 49.168581665000062 ], [ -122.662464120999957, 49.168580907000049 ], [ -122.661587288999925, 49.168625818000045 ], [ -122.660455708999962, 49.168608691000053 ], [ -122.658951783999939, 49.168602597000067 ], [ -122.658903016999929, 49.168613312000083 ], [ -122.658585292999987, 49.168683189000021 ], [ -122.65793382399994, 49.168875602000099 ], [ -122.657096898999939, 49.168881207000041 ], [ -122.657095516999973, 49.168844740000111 ], [ -122.65702650599999, 49.167019011000029 ], [ -122.657015767999894, 49.166520799000104 ], [ -122.657010682999953, 49.166284999000069 ], [ -122.656060088999979, 49.16628891200002 ], [ -122.655771395999949, 49.166242008000033 ], [ -122.65551369799999, 49.166106986000059 ], [ -122.654938987999941, 49.165346602000049 ], [ -122.654871499999942, 49.165121895000048 ], [ -122.65488260299999, 49.164739281000109 ], [ -122.655407986999961, 49.164870009 ], [ -122.655885495999939, 49.164865893000147 ], [ -122.656974717999958, 49.164860090000062 ], [ -122.656966525999977, 49.164077708 ], [ -122.656961250999956, 49.163641717000154 ], [ -122.656953189, 49.162967047000038 ], [ -122.65695180499992, 49.1628516970001 ], [ -122.656952865999969, 49.162814852000068 ], [ -122.656954622999976, 49.162755344000054 ], [ -122.656975801999948, 49.161755788000058 ], [ -122.656565599999965, 49.161141085000047 ], [ -122.657300477999954, 49.161339595000079 ], [ -122.659527406, 49.161870990000054 ], [ -122.662578185000015, 49.162692902000096 ], [ -122.662721001999927, 49.162730490000108 ], [ -122.662822857999984, 49.162757315000128 ], [ -122.663288881999947, 49.162879979000067 ], [ -122.665000112999977, 49.16333045800009 ], [ -122.666763749999987, 49.163794678000045 ], [ -122.668030691999974, 49.164128135000091 ], [ -122.668654483999916, 49.16429230300011 ], [ -122.668731207999954, 49.164312689000027 ], [ -122.668799878999963, 49.164330101000125 ], [ -122.668899614999944, 49.164355705000055 ], [ -122.669390645999954, 49.164488926000075 ], [ -122.670699683, 49.164844123000094 ], [ -122.670750405999954, 49.16485787800007 ], [ -122.672394077999954, 49.165303824000027 ], [ -122.672679045999971, 49.165381132000057 ], [ -122.673810576999955, 49.165688065000019 ], [ -122.673892482999946, 49.165709651000064 ], [ -122.678035519999952, 49.166802421000121 ], [ -122.679083593999948, 49.170134696000034 ], [ -122.67823252299999, 49.170337407000041 ], [ -122.677237202999933, 49.170736491000078 ], [ -122.676850992999974, 49.170823700000092 ], [ -122.676350690999982, 49.170859610000022 ], [ -122.673971205999976, 49.170859990000075 ], [ -122.668146401999977, 49.170846604000133 ], [ -122.668070691999972, 49.170846052000101 ], [ -122.667992893999951, 49.17084549300008 ], [ -122.667982915999971, 49.170007287000075 ], [ -122.667980787999966, 49.169828044000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297223522", "BldgCostT": "200074158", "sL_LossRatio": "0.768201848167637", "sL_AssetLoss": "2689150", "sL_BldgLoss": "2065810", "sL_StrLoss": "979530", "sL_NStrLoss": "1086280", "sL_ContLoss": "623340", "geom_point": "0101000020E6100000B3D230BE20AA5EC0A2D0896FEE964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65300879199998, 49.179527018000051 ], [ -122.652764684999923, 49.179487914000092 ], [ -122.652224001999954, 49.179472891000074 ], [ -122.65223281, 49.178741506000058 ], [ -122.651011998999962, 49.178741394000077 ], [ -122.651019424999902, 49.178133846000065 ], [ -122.651024912999958, 49.177686591000075 ], [ -122.651031923999966, 49.177477150000115 ], [ -122.651048710999973, 49.176976309000089 ], [ -122.652717110999944, 49.176976885000087 ], [ -122.654185272999953, 49.176977383000136 ], [ -122.654363620999973, 49.176977426000086 ], [ -122.654859013999911, 49.176977597000061 ], [ -122.656476466999891, 49.176986782000021 ], [ -122.657344702999964, 49.176991735000108 ], [ -122.658257238999937, 49.176991979000015 ], [ -122.65835635900001, 49.176991995 ], [ -122.658531707999941, 49.176992046000059 ], [ -122.658912773999973, 49.176992168000119 ], [ -122.659187262999936, 49.176992258000027 ], [ -122.660098799999972, 49.176992509000108 ], [ -122.661156307999974, 49.176992849000065 ], [ -122.662760530999918, 49.176993276000125 ], [ -122.66373624799995, 49.176993528000061 ], [ -122.664346552999945, 49.176994403000059 ], [ -122.664345432999966, 49.177086287000066 ], [ -122.66442673399996, 49.177196025000079 ], [ -122.664400281999988, 49.178542424000149 ], [ -122.664385389999964, 49.179300643000069 ], [ -122.664371690999971, 49.179797632000025 ], [ -122.66429182499995, 49.180181554000022 ], [ -122.6642623799999, 49.181549594000025 ], [ -122.662175294999884, 49.181520116000073 ], [ -122.661336631999944, 49.181513579000118 ], [ -122.660102577999908, 49.18150176300005 ], [ -122.659958295999971, 49.181505173000048 ], [ -122.658270877999939, 49.181516645000087 ], [ -122.657236782999988, 49.181523675000051 ], [ -122.656431182999967, 49.181514788000058 ], [ -122.656226254999964, 49.181512518000076 ], [ -122.65531984199994, 49.181502499000054 ], [ -122.654428119999949, 49.181492667000022 ], [ -122.65219275799997, 49.181467902000037 ], [ -122.652194099999946, 49.180649686000059 ], [ -122.654757976999974, 49.180667196000051 ], [ -122.654732691999968, 49.180294313000104 ], [ -122.654686005999906, 49.180180194000094 ], [ -122.654567786999905, 49.180107201000062 ], [ -122.654156254999975, 49.179954031000115 ], [ -122.65300879199998, 49.179527018000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2539167", "BldgCostT": "1541667", "sL_LossRatio": "0.630803011292346", "sL_AssetLoss": "63760", "sL_BldgLoss": "40220", "sL_StrLoss": "10220", "sL_NStrLoss": "30000", "sL_ContLoss": "23540", "geom_point": "0101000020E610000037A8FDD68EA95EC0B13663243D994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.648970550999962, 49.1954606870001 ], [ -122.648973261999956, 49.195077744000088 ], [ -122.649445843999928, 49.196302242000051 ], [ -122.650253628999934, 49.198128633000081 ], [ -122.650104578999958, 49.198203495000065 ], [ -122.64877566499996, 49.198162162000095 ], [ -122.648970550999962, 49.1954606870001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17981975", "BldgCostT": "9705309", "sL_LossRatio": "0.524132402753167", "sL_AssetLoss": "331836", "sL_BldgLoss": "173926", "sL_StrLoss": "65616", "sL_NStrLoss": "108310", "sL_ContLoss": "157910", "geom_point": "0101000020E6100000A058C06758A95EC0716BF37B72994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.644375333999946, 49.197376152000082 ], [ -122.648184997999962, 49.197494756000019 ], [ -122.648059745999973, 49.199230511000032 ], [ -122.646267901999963, 49.200130393000094 ], [ -122.645553303999989, 49.200362596000048 ], [ -122.644300641999934, 49.200915435000063 ], [ -122.644305217999928, 49.20086199800005 ], [ -122.644319091999975, 49.200364996000097 ], [ -122.644325924999933, 49.199999204000108 ], [ -122.644336221999964, 49.199450545000062 ], [ -122.644372897999929, 49.197493084000065 ], [ -122.644375333999946, 49.197376152000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "0.752905770029058", "sL_AssetLoss": "96360", "sL_BldgLoss": "72550", "sL_StrLoss": "32580", "sL_NStrLoss": "39970", "sL_ContLoss": "23810", "geom_point": "0101000020E61000004D955AB5CCA95EC01BEBEAA7E2984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.648973261999956, 49.195077744000088 ], [ -122.648974863999939, 49.194851208000088 ], [ -122.64901450799999, 49.194851328000084 ], [ -122.649035099999978, 49.194565858000068 ], [ -122.649053624999965, 49.19456643500007 ], [ -122.649148468999954, 49.193251558000028 ], [ -122.653102868999966, 49.193374502000076 ], [ -122.653107552000023, 49.192704814000095 ], [ -122.651872327999968, 49.19270109700004 ], [ -122.651874220999929, 49.192431243000051 ], [ -122.650859433999983, 49.192428180000022 ], [ -122.652172502999932, 49.191967899000055 ], [ -122.654785436999958, 49.19105186600008 ], [ -122.655076149999971, 49.191230911000069 ], [ -122.655816731999948, 49.191686998000144 ], [ -122.657893005999966, 49.193963053000147 ], [ -122.658296084000014, 49.194404892000058 ], [ -122.65456171299995, 49.195964606000118 ], [ -122.650253628999934, 49.198128633000081 ], [ -122.649445843999928, 49.196302242000051 ], [ -122.648973261999956, 49.195077744000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.726728524393894", "sL_AssetLoss": "66820", "sL_BldgLoss": "48560", "sL_StrLoss": "19540", "sL_NStrLoss": "29020", "sL_ContLoss": "18260", "geom_point": "0101000020E6100000ACD6368307A75EC07D16951E17994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.607226718999939, 49.194133747000095 ], [ -122.612702807999966, 49.194306092000019 ], [ -122.612440561999932, 49.197902309000078 ], [ -122.606964051999938, 49.197729952000046 ], [ -122.607226718999939, 49.194133747000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19730333", "BldgCostT": "13343333", "sL_LossRatio": "0.707430890185138", "sL_AssetLoss": "394300", "sL_BldgLoss": "278940", "sL_StrLoss": "123070", "sL_NStrLoss": "155870", "sL_ContLoss": "115360", "geom_point": "0101000020E6100000F25676244BA85EC0900A8C8AF2994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.62707145899995, 49.202278144000068 ], [ -122.627203353999974, 49.200461847000078 ], [ -122.627570998999957, 49.200473357000078 ], [ -122.627588250999978, 49.200235757000037 ], [ -122.628857529999934, 49.200275483000055 ], [ -122.628891320999941, 49.199809886000018 ], [ -122.633521193999954, 49.199954666000032 ], [ -122.633654624999934, 49.198113597000088 ], [ -122.639131280999919, 49.19828459900009 ], [ -122.639081453999921, 49.19897325500007 ], [ -122.639014932999913, 49.199892584000011 ], [ -122.639171213999987, 49.199897460000059 ], [ -122.639189513999909, 49.199644535000111 ], [ -122.639557348999958, 49.199656010000133 ], [ -122.639617591, 49.198823306000065 ], [ -122.639637656999952, 49.198545942000109 ], [ -122.64037684099999, 49.198568998000034 ], [ -122.64040104299994, 49.19823436100004 ], [ -122.64095881499999, 49.198251755000086 ], [ -122.641007856, 49.197573573000064 ], [ -122.64268659699998, 49.197625906000027 ], [ -122.642708400999979, 49.197324214000055 ], [ -122.644375333999946, 49.197376152000082 ], [ -122.644372897999929, 49.197493084000065 ], [ -122.644336221999964, 49.199450545000062 ], [ -122.644325924999933, 49.199999204000108 ], [ -122.644319091999975, 49.200364996000097 ], [ -122.644305217999928, 49.20086199800005 ], [ -122.644300641999934, 49.200915435000063 ], [ -122.64085759299995, 49.202434815000046 ], [ -122.638301101, 49.203474683000103 ], [ -122.637611126999929, 49.203453151000126 ], [ -122.637727530999882, 49.201845176000056 ], [ -122.634240975999973, 49.20173630900009 ], [ -122.634107559999947, 49.203577367999983 ], [ -122.632838185999944, 49.203537703000087 ], [ -122.63280443, 49.204003299000057 ], [ -122.632436754999915, 49.203991808000104 ], [ -122.632419527999943, 49.204229407000057 ], [ -122.627181107999917, 49.204065546000017 ], [ -122.627049201999924, 49.20588183300007 ], [ -122.62657509099995, 49.2058669890001 ], [ -122.626563290999968, 49.206029444000123 ], [ -122.626114607999924, 49.206015395000101 ], [ -122.626100481999956, 49.206209855000139 ], [ -122.625881665999955, 49.206203003000056 ], [ -122.625828312999914, 49.206937359000079 ], [ -122.622582000999898, 49.206835650000095 ], [ -122.622550497999939, 49.207268838000111 ], [ -122.621935232999974, 49.20724955 ], [ -122.621923578999926, 49.207409752000054 ], [ -122.618956605999969, 49.207316692000113 ], [ -122.618904298999951, 49.208035147000082 ], [ -122.618053390999975, 49.208118802000101 ], [ -122.61630791099995, 49.208140200000102 ], [ -122.613390210999953, 49.208361678000088 ], [ -122.613524269, 49.20652333400011 ], [ -122.616491180999972, 49.206616544000056 ], [ -122.616512271, 49.206327069000039 ], [ -122.616707900999984, 49.203641703000066 ], [ -122.617323114999976, 49.203661021000073 ], [ -122.61733478299999, 49.20350081800013 ], [ -122.620580849999968, 49.20360268600011 ], [ -122.620612368999971, 49.203169497 ], [ -122.620831168999985, 49.203176359000082 ], [ -122.620884598999965, 49.202442 ], [ -122.621333243999928, 49.202456071000107 ], [ -122.621347389999954, 49.202261611000026 ], [ -122.621821462999918, 49.202276477000076 ], [ -122.621833278999986, 49.202114022000046 ], [ -122.62707145899995, 49.202278144000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119922584", "BldgCostT": "78523334", "sL_LossRatio": "0.702595363926535", "sL_AssetLoss": "1911100", "sL_BldgLoss": "1342730", "sL_StrLoss": "588140", "sL_NStrLoss": "754590", "sL_ContLoss": "568370", "geom_point": "0101000020E61000003382E8A492A75EC075E41FE8AE974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.590796395999945, 49.191924104000101 ], [ -122.590404099999972, 49.189611212000045 ], [ -122.590284034, 49.188648571 ], [ -122.593255360999962, 49.18534531200001 ], [ -122.595661900999929, 49.184595149000131 ], [ -122.596892177999948, 49.184211603000044 ], [ -122.597545504999971, 49.184007923000145 ], [ -122.598272121999941, 49.183781385000096 ], [ -122.599948312999942, 49.183258773000055 ], [ -122.600207688999959, 49.1831778990001 ], [ -122.600017622999971, 49.182917960000054 ], [ -122.599542953999944, 49.182268831000059 ], [ -122.599463387999961, 49.182160007000078 ], [ -122.596932488999968, 49.178698569000019 ], [ -122.596909523999969, 49.178667101000023 ], [ -122.59687774299999, 49.178445317000033 ], [ -122.596938938999983, 49.178265239000055 ], [ -122.597081415999952, 49.178061559000099 ], [ -122.597551613999912, 49.17804668400003 ], [ -122.597878024999915, 49.17795427500009 ], [ -122.599290313999958, 49.177212201000025 ], [ -122.599887205999892, 49.177021088000082 ], [ -122.60000505499994, 49.177006998000131 ], [ -122.600429690999988, 49.17695621700004 ], [ -122.607107009999964, 49.17695503200013 ], [ -122.610100530999929, 49.1769522210001 ], [ -122.610855215999891, 49.17695151200008 ], [ -122.611609935999951, 49.176950785000074 ], [ -122.612529175999967, 49.176949879000077 ], [ -122.613722888, 49.176948720000041 ], [ -122.617002476, 49.176945442000083 ], [ -122.619137266999957, 49.17694326400003 ], [ -122.620141399999923, 49.17694233000006 ], [ -122.623695552999948, 49.176939402000116 ], [ -122.623989194999965, 49.176937789000064 ], [ -122.626332565999988, 49.176930164000055 ], [ -122.628198597999955, 49.176924035000056 ], [ -122.628322065999953, 49.176923624000018 ], [ -122.628571617999967, 49.176922805000103 ], [ -122.629282661999923, 49.176924202000123 ], [ -122.63087558099997, 49.176927303000099 ], [ -122.637723007999938, 49.17694311000006 ], [ -122.637716954999973, 49.177724069000071 ], [ -122.637715214999901, 49.177948952000044 ], [ -122.637711501999931, 49.178429608000137 ], [ -122.637876613999978, 49.178650105 ], [ -122.638059604999967, 49.178774793000109 ], [ -122.640297708, 49.179653902000098 ], [ -122.640476282999927, 49.179782900000085 ], [ -122.64048575399994, 49.179789686000085 ], [ -122.640854508999965, 49.180054196000142 ], [ -122.641039026999977, 49.180120305000067 ], [ -122.642499508999961, 49.180373106000062 ], [ -122.643334109999955, 49.180668604000061 ], [ -122.643946588999967, 49.180848099000094 ], [ -122.644484909999917, 49.180935084000055 ], [ -122.645338517, 49.180930195000066 ], [ -122.646161142999944, 49.180936004000074 ], [ -122.646154482999989, 49.18207299000003 ], [ -122.646155512999925, 49.1820830610001 ], [ -122.646158568999965, 49.182113231000066 ], [ -122.64621417599993, 49.182661900000099 ], [ -122.646272714999938, 49.183238971000037 ], [ -122.645753858999967, 49.183237380000094 ], [ -122.645666070999951, 49.184453487000042 ], [ -122.645807282, 49.184457885000086 ], [ -122.64578467299998, 49.18477107000011 ], [ -122.646347793999922, 49.184788608000076 ], [ -122.646335383999912, 49.184908104000044 ], [ -122.646218527999977, 49.185211790000061 ], [ -122.645976973999964, 49.18583960900002 ], [ -122.645835493999954, 49.186207308000107 ], [ -122.64565593699993, 49.186833167000053 ], [ -122.645593596, 49.187050398000032 ], [ -122.645420524999977, 49.187782500000075 ], [ -122.64511558399991, 49.18907198300009 ], [ -122.645055106999962, 49.189339573000055 ], [ -122.645053102999938, 49.189348513000063 ], [ -122.644585333999913, 49.191394942000045 ], [ -122.644577666999965, 49.191428486000063 ], [ -122.644530330999928, 49.191635494000145 ], [ -122.644491484999932, 49.191805393000152 ], [ -122.644487588999965, 49.191993515000085 ], [ -122.644470525999921, 49.192812133000068 ], [ -122.644464141999904, 49.193118018000114 ], [ -122.644452678999954, 49.193666748000091 ], [ -122.644417014999988, 49.195376986000085 ], [ -122.644029885999927, 49.195375794000043 ], [ -122.644037630999946, 49.194296377000057 ], [ -122.643625877999966, 49.194295107000059 ], [ -122.643629753999932, 49.1937554000001 ], [ -122.639512258999957, 49.193742622000059 ], [ -122.639518140999925, 49.192933059000026 ], [ -122.640258529999954, 49.192935368000086 ], [ -122.640303174999971, 49.192318035000028 ], [ -122.637625718999956, 49.192234487000086 ], [ -122.63758639299999, 49.19277781600006 ], [ -122.63211039199993, 49.192606734000059 ], [ -122.632180620999947, 49.191637988000046 ], [ -122.63083490799994, 49.191595902000095 ], [ -122.630857894999934, 49.191278934000039 ], [ -122.629474979999927, 49.191235667000107 ], [ -122.62973587, 49.187639372000014 ], [ -122.631133056999943, 49.187683085000089 ], [ -122.631200159999963, 49.186757605000039 ], [ -122.63408695699998, 49.186847866000129 ], [ -122.634171900999903, 49.185675274000069 ], [ -122.635453654999964, 49.185715326 ], [ -122.635454251999974, 49.185634073000088 ], [ -122.639159388999971, 49.18564570900007 ], [ -122.639158042999966, 49.185830992000064 ], [ -122.639647093999926, 49.185846253000101 ], [ -122.639571808999946, 49.186887210000108 ], [ -122.640142939999961, 49.186905029000073 ], [ -122.640247641999963, 49.185457071000066 ], [ -122.640106428999928, 49.185452665000078 ], [ -122.640343009999981, 49.18218072100008 ], [ -122.638645081000021, 49.182127734000119 ], [ -122.638659443000023, 49.181929181000086 ], [ -122.637789162000018, 49.181902013000077 ], [ -122.63784333699999, 49.181153274000089 ], [ -122.635265218999933, 49.181072748000098 ], [ -122.635286703, 49.180776053000109 ], [ -122.634666647999936, 49.180774093000132 ], [ -122.634668464999962, 49.180527254000033 ], [ -122.63455892799999, 49.180523831000052 ], [ -122.634586874999954, 49.180137946000087 ], [ -122.63325770599999, 49.180096396000096 ], [ -122.633260325999956, 49.180060222000101 ], [ -122.632596985999953, 49.180039480000069 ], [ -122.632606232999962, 49.179911869000115 ], [ -122.632425289999929, 49.17990621000007 ], [ -122.632228406999971, 49.182622874000046 ], [ -122.628478917999956, 49.182505548000073 ], [ -122.628475868999914, 49.182913230000025 ], [ -122.627652548999947, 49.182910578000119 ], [ -122.627650525999982, 49.183180432000036 ], [ -122.626827200999969, 49.183177774000036 ], [ -122.626821115999974, 49.183987337000055 ], [ -122.62664506199998, 49.183986768000125 ], [ -122.62661657799994, 49.184379105000097 ], [ -122.62559900499997, 49.184347225000089 ], [ -122.625586235999961, 49.184523062000096 ], [ -122.62681705599999, 49.184527045000053 ], [ -122.626819085999912, 49.184257191 ], [ -122.628465765999948, 49.18426250000006 ], [ -122.628457683999926, 49.185341917000137 ], [ -122.626399288999949, 49.185335276000082 ], [ -122.626395225999886, 49.185874984000101 ], [ -122.625160174999976, 49.185870982000075 ], [ -122.625164251999976, 49.185331275000102 ], [ -122.62497816299999, 49.185330670000013 ], [ -122.624863749999989, 49.186905740000043 ], [ -122.624361881999974, 49.186890011000081 ], [ -122.624343438999986, 49.187143852000133 ], [ -122.624946314999988, 49.18716274700008 ], [ -122.624854948999953, 49.188420493000123 ], [ -122.625239484, 49.188432543000054 ], [ -122.62518093199995, 49.189238616000104 ], [ -122.625344528999975, 49.18924374200008 ], [ -122.625083290999939, 49.192840018000055 ], [ -122.619607326999983, 49.192668301000069 ], [ -122.619665980999955, 49.191862235000031 ], [ -122.619502374999939, 49.191857100000085 ], [ -122.619593892999958, 49.190599365000026 ], [ -122.619209342999952, 49.190587295000086 ], [ -122.619245965999951, 49.190084009000053 ], [ -122.618643053999946, 49.190065082000011 ], [ -122.618904775, 49.186468807000082 ], [ -122.619406635999923, 49.186484562000032 ], [ -122.619407628999909, 49.186470925000059 ], [ -122.618784841999954, 49.186451373000075 ], [ -122.618769987999954, 49.186655488000056 ], [ -122.614070265999914, 49.186507833000064 ], [ -122.613988807999988, 49.187625594000046 ], [ -122.614495629999936, 49.187641527000068 ], [ -122.614233560999978, 49.191237785000048 ], [ -122.613822112999927, 49.191224851000094 ], [ -122.613678749000016, 49.193191693000109 ], [ -122.610115136999951, 49.193079598000068 ], [ -122.610065933, 49.193753878000123 ], [ -122.604589917999945, 49.193581399000053 ], [ -122.604667541999945, 49.192519352000033 ], [ -122.603386742999973, 49.192478970000089 ], [ -122.603434934999953, 49.191819825000096 ], [ -122.602754160999964, 49.191798354000078 ], [ -122.602831521, 49.190740452000064 ], [ -122.602219408999943, 49.190721144000136 ], [ -122.602318057, 49.189372273000075 ], [ -122.601489365999925, 49.189346127000135 ], [ -122.601518883999958, 49.188942593000029 ], [ -122.59964922799999, 49.18888358 ], [ -122.599661817999902, 49.188711552000044 ], [ -122.598921010999973, 49.188688160000062 ], [ -122.59898847, 49.187766630000056 ], [ -122.598067439999923, 49.187737541000075 ], [ -122.598081877999931, 49.187540346000048 ], [ -122.596763906999954, 49.187498706000078 ], [ -122.596797648999939, 49.187038051000087 ], [ -122.596712768999907, 49.187035369000064 ], [ -122.596477684999954, 49.190244517000025 ], [ -122.59614422599999, 49.19023397900007 ], [ -122.596111461999939, 49.190681168000033 ], [ -122.59618909199996, 49.190683621000126 ], [ -122.595925589999965, 49.19427981800002 ], [ -122.595144111999915, 49.194255118000051 ], [ -122.591418418999979, 49.194137284000057 ], [ -122.591315802999972, 49.193715797000067 ], [ -122.590796395999945, 49.191924104000101 ] ], [ [ -122.620101521999942, 49.1812664260001 ], [ -122.620137566999944, 49.180770861000056 ], [ -122.62008608, 49.180769245000093 ], [ -122.620112273999894, 49.180409109000031 ], [ -122.618571477000032, 49.180360734000075 ], [ -122.618561335999971, 49.180500111000086 ], [ -122.61478108599999, 49.180381335000057 ], [ -122.614756093999958, 49.180724402000095 ], [ -122.613671642999989, 49.180690305000049 ], [ -122.613620883999985, 49.18138682700004 ], [ -122.613329329999885, 49.181377658000038 ], [ -122.613291389999944, 49.181898212000057 ], [ -122.614743582999935, 49.181943874000041 ], [ -122.614786629, 49.181352992000043 ], [ -122.616445934999916, 49.181405143000049 ], [ -122.616452662999933, 49.181312733000034 ], [ -122.618753993, 49.181385018000022 ], [ -122.618765673999945, 49.181224488000034 ], [ -122.620101521999942, 49.1812664260001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3315667", "BldgCostT": "2286667", "sL_LossRatio": "0.688989697062894", "sL_AssetLoss": "130060", "sL_BldgLoss": "89610", "sL_StrLoss": "33220", "sL_NStrLoss": "56390", "sL_ContLoss": "40450", "geom_point": "0101000020E610000053DF01B711A65EC0DB9077F547994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.59478073699999, 49.19565470000007 ], [ -122.597261863999904, 49.195733107000073 ], [ -122.596998416999952, 49.199329278000093 ], [ -122.596162930999981, 49.199302882000069 ], [ -122.596117413999949, 49.19992399800006 ], [ -122.594611375999961, 49.199876402000079 ], [ -122.593916551999939, 49.199854435000042 ], [ -122.593575488999946, 49.199381295000066 ], [ -122.593307817999943, 49.198598001000114 ], [ -122.593090097999919, 49.198462702000036 ], [ -122.593011092, 49.198066711000109 ], [ -122.592492816999965, 49.197515599000063 ], [ -122.591783124999907, 49.195594599000053 ], [ -122.591785664999989, 49.195559977000102 ], [ -122.59478073699999, 49.19565470000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.735490266762797", "sL_AssetLoss": "44384", "sL_BldgLoss": "32644", "sL_StrLoss": "13144", "sL_NStrLoss": "19500", "sL_ContLoss": "11740", "geom_point": "0101000020E61000009FB2589295A65EC0C72853F5409A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.598909008999897, 49.204067017000099 ], [ -122.598951227999947, 49.203490473000038 ], [ -122.599639771999989, 49.203512206000084 ], [ -122.604428389999953, 49.203663237000072 ], [ -122.604407963999975, 49.203942620000085 ], [ -122.605575366999972, 49.203979407000112 ], [ -122.605442777999912, 49.205793479000086 ], [ -122.605312514999966, 49.207575554000115 ], [ -122.605310296999932, 49.207575484000031 ], [ -122.603657017999964, 49.207170298000094 ], [ -122.60193688399994, 49.206184702000094 ], [ -122.59980690899998, 49.204746300000124 ], [ -122.598909008999897, 49.204067017000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "272306668", "BldgCostT": "180161668", "sL_LossRatio": "0.741572546981082", "sL_AssetLoss": "2539320", "sL_BldgLoss": "1883090", "sL_StrLoss": "860430", "sL_NStrLoss": "1022660", "sL_ContLoss": "656230", "geom_point": "0101000020E6100000B5EA18FC22A75EC07F8E556B5D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.613180003999929, 49.215999580000066 ], [ -122.612760683999966, 49.215932396000042 ], [ -122.612029918999923, 49.215920209000075 ], [ -122.611190984999922, 49.215939811000084 ], [ -122.610112215999962, 49.216049998000074 ], [ -122.609644586999963, 49.215873097000085 ], [ -122.609281112999938, 49.215831999000031 ], [ -122.608691199999967, 49.215826009000082 ], [ -122.607220900999948, 49.215920301000068 ], [ -122.606941111999916, 49.216010596000082 ], [ -122.606818671999974, 49.215873529000049 ], [ -122.606645403999963, 49.215679598000065 ], [ -122.606610737999972, 49.215648164000044 ], [ -122.60642530199999, 49.215479819000073 ], [ -122.606308068999979, 49.215373425000088 ], [ -122.606210740000023, 49.215285074000036 ], [ -122.605836178999965, 49.214945094000015 ], [ -122.605746415999974, 49.214863637000093 ], [ -122.605681934999922, 49.214805111000018 ], [ -122.60463392199999, 49.213853796000144 ], [ -122.604057909999966, 49.213330892000108 ], [ -122.603332061999978, 49.212669426000033 ], [ -122.602844300999891, 49.212224901000106 ], [ -122.602372523999918, 49.211881996000017 ], [ -122.602198244999954, 49.211807383000121 ], [ -122.60213413699995, 49.211615338000087 ], [ -122.602526466999947, 49.211042042000052 ], [ -122.604363483999947, 49.211589604000075 ], [ -122.606637885999987, 49.21215499900012 ], [ -122.607927387999936, 49.212303100000035 ], [ -122.610208488999916, 49.212212 ], [ -122.61215929199993, 49.212405045 ], [ -122.612129456999966, 49.21281395700003 ], [ -122.613422787999923, 49.212818292000094 ], [ -122.613420682999987, 49.213088144000018 ], [ -122.615480226999978, 49.213095019000036 ], [ -122.615482319999956, 49.212825166000073 ], [ -122.619601387, 49.212838805000011 ], [ -122.619602350999941, 49.212713407000081 ], [ -122.62014639099999, 49.212694804000094 ], [ -122.620884137999937, 49.212573163000059 ], [ -122.621662981999989, 49.212575716000089 ], [ -122.621663984999969, 49.21244457400006 ], [ -122.622488824999948, 49.212308560000046 ], [ -122.622756361999933, 49.21230943400014 ], [ -122.622782345999966, 49.212456044000085 ], [ -122.622785976, 49.212499838000035 ], [ -122.622911207999948, 49.214007200000033 ], [ -122.617298715999965, 49.214299793000031 ], [ -122.616729981999924, 49.214286401000038 ], [ -122.61460869499993, 49.214253113000069 ], [ -122.614587009999951, 49.215925798000065 ], [ -122.614545804000016, 49.216095707000179 ], [ -122.614352192999917, 49.216509512000094 ], [ -122.613180003999929, 49.215999580000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "521033804", "BldgCostT": "360348747", "sL_LossRatio": "0.834392726707592", "sL_AssetLoss": "3860700", "sL_BldgLoss": "3221340", "sL_StrLoss": "1417580", "sL_NStrLoss": "1803760", "sL_ContLoss": "639360", "geom_point": "0101000020E61000007EAEADA76FA65EC029C40A54529B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.59898430899996, 49.212693395000016 ], [ -122.599001174999898, 49.21146376299999 ], [ -122.599003322999963, 49.21130899300006 ], [ -122.599076302, 49.211099506000025 ], [ -122.599383276999959, 49.210712699000076 ], [ -122.60001876799997, 49.210973430000088 ], [ -122.600525385999944, 49.211181304000057 ], [ -122.601536600999978, 49.211524115000074 ], [ -122.601715689999963, 49.211515310000095 ], [ -122.601972502, 49.211576709000113 ], [ -122.60213413699995, 49.211615338000087 ], [ -122.602198244999954, 49.211807383000121 ], [ -122.602372523999918, 49.211881996000017 ], [ -122.602844300999891, 49.212224901000106 ], [ -122.603332061999978, 49.212669426000033 ], [ -122.603058007999891, 49.212774989000117 ], [ -122.602571908999948, 49.212720891000082 ], [ -122.602299215999935, 49.213483682000096 ], [ -122.601974877999936, 49.214445699000109 ], [ -122.601639407999926, 49.215465111000114 ], [ -122.601448717999943, 49.21597090200008 ], [ -122.60012160399998, 49.215965080000068 ], [ -122.600003512999947, 49.215965948000076 ], [ -122.598933510999956, 49.21597359800009 ], [ -122.598928709999967, 49.215793659000035 ], [ -122.598918503999982, 49.215409889000064 ], [ -122.598980711999957, 49.213716908000038 ], [ -122.59898430899996, 49.212693395000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "577425177", "BldgCostT": "341856252", "sL_LossRatio": "0.6257377109838", "sL_AssetLoss": "6486280", "sL_BldgLoss": "4058710", "sL_StrLoss": "1554740", "sL_NStrLoss": "2503970", "sL_ContLoss": "2427570", "geom_point": "0101000020E6100000B9551F9B66A65EC00416FB89D29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.602299215999935, 49.213483682000096 ], [ -122.602571908999948, 49.212720891000082 ], [ -122.603058007999891, 49.212774989000117 ], [ -122.603332061999978, 49.212669426000033 ], [ -122.604057909999966, 49.213330892000108 ], [ -122.60463392199999, 49.213853796000144 ], [ -122.605681934999922, 49.214805111000018 ], [ -122.605746415999974, 49.214863637000093 ], [ -122.605836178999965, 49.214945094000015 ], [ -122.606210740000023, 49.215285074000036 ], [ -122.606308068999979, 49.215373425000088 ], [ -122.60642530199999, 49.215479819000073 ], [ -122.606610737999972, 49.215648164000044 ], [ -122.606645403999963, 49.215679598000065 ], [ -122.606818671999974, 49.215873529000049 ], [ -122.606941111999916, 49.216010596000082 ], [ -122.607061709999968, 49.216314509000043 ], [ -122.607025889999989, 49.216775572000046 ], [ -122.607024465999956, 49.216793715000087 ], [ -122.607015491999931, 49.216909496000078 ], [ -122.606509814999981, 49.216905192000162 ], [ -122.604541822999977, 49.216888396000101 ], [ -122.602487269999983, 49.216879538000093 ], [ -122.601543251999928, 49.216929040000146 ], [ -122.60158588499999, 49.217297870000067 ], [ -122.601635677999951, 49.217729427000016 ], [ -122.601721287999951, 49.218585499000085 ], [ -122.601721993999945, 49.219020022000116 ], [ -122.60172209699999, 49.219081079 ], [ -122.601720915, 49.219271966000044 ], [ -122.601719307999986, 49.219531496000094 ], [ -122.601705221999978, 49.219968143000095 ], [ -122.601689595999915, 49.22046318800011 ], [ -122.601380693999928, 49.220462500000068 ], [ -122.600376064999949, 49.220438919000081 ], [ -122.599995618999941, 49.220434908000058 ], [ -122.599377622999938, 49.220428359000039 ], [ -122.599257978999916, 49.220427082000114 ], [ -122.598846298999945, 49.220424307000037 ], [ -122.598386586999951, 49.220421225000074 ], [ -122.597837595999948, 49.220418303000081 ], [ -122.5940096, 49.220439814000095 ], [ -122.594050899999942, 49.219633697000049 ], [ -122.594054796999941, 49.218944496000091 ], [ -122.594046553999959, 49.218318406000066 ], [ -122.594043709999966, 49.218104294000042 ], [ -122.594064992999961, 49.217757188000093 ], [ -122.594116885999966, 49.217049611000071 ], [ -122.596301798999932, 49.217115098000107 ], [ -122.596262292999981, 49.217003996000102 ], [ -122.596248290999966, 49.216964703000016 ], [ -122.596258526999947, 49.216601006000111 ], [ -122.59640640799995, 49.216363201000064 ], [ -122.596735685999946, 49.21615919200007 ], [ -122.59711372, 49.21611530900001 ], [ -122.598932406999921, 49.216118604 ], [ -122.598933510999956, 49.21597359800009 ], [ -122.600003512999947, 49.215965948000076 ], [ -122.60012160399998, 49.215965080000068 ], [ -122.601448717999943, 49.21597090200008 ], [ -122.601639407999926, 49.215465111000114 ], [ -122.601974877999936, 49.214445699000109 ], [ -122.602299215999935, 49.213483682000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "445973920", "BldgCostT": "276417875", "sL_LossRatio": "0.724033413614012", "sL_AssetLoss": "4272510", "sL_BldgLoss": "3093440", "sL_StrLoss": "1336260", "sL_NStrLoss": "1757180", "sL_ContLoss": "1179070", "geom_point": "0101000020E61000008177F333B9A55EC01648EDD1DD9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.588337806999917, 49.220422610000078 ], [ -122.588359950999973, 49.219411343000061 ], [ -122.58728291499996, 49.219402496000022 ], [ -122.587361492999946, 49.215941998000098 ], [ -122.587298991999972, 49.215858109000045 ], [ -122.587195504999912, 49.215828597000062 ], [ -122.586075898999979, 49.215838196000156 ], [ -122.584863107999979, 49.215846692000092 ], [ -122.584856474999967, 49.216589904000095 ], [ -122.582033106999916, 49.216582393000124 ], [ -122.58207820899996, 49.215130305000038 ], [ -122.58277461299997, 49.215143392000115 ], [ -122.584221, 49.215150509000118 ], [ -122.587167813999926, 49.215140220000087 ], [ -122.588399769999967, 49.215170221000079 ], [ -122.588391107999939, 49.215007767000046 ], [ -122.588740780999899, 49.214789037000052 ], [ -122.589175211999972, 49.215229011000119 ], [ -122.58980289899992, 49.215654387000022 ], [ -122.590379634, 49.215969985000122 ], [ -122.591637185999971, 49.216511708000063 ], [ -122.591856456999921, 49.216574164000043 ], [ -122.592519298999918, 49.216762999000117 ], [ -122.593349977999978, 49.216949703000111 ], [ -122.594116885999966, 49.217049611000071 ], [ -122.594064992999961, 49.217757188000093 ], [ -122.594043709999966, 49.218104294000042 ], [ -122.594046553999959, 49.218318406000066 ], [ -122.594054796999941, 49.218944496000091 ], [ -122.594050899999942, 49.219633697000049 ], [ -122.5940096, 49.220439814000095 ], [ -122.592383001999949, 49.220435202000083 ], [ -122.590282987999956, 49.220426488000015 ], [ -122.588337806999917, 49.220422610000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75689499", "BldgCostT": "48549999", "sL_LossRatio": "0.702410399734438", "sL_AssetLoss": "933870", "sL_BldgLoss": "655960", "sL_StrLoss": "296960", "sL_NStrLoss": "359000", "sL_ContLoss": "277910", "geom_point": "0101000020E610000084F7771181A55EC0E5E7E15F5F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.58762161199995, 49.212029785000034 ], [ -122.587670108999959, 49.212022994000066 ], [ -122.587938338999933, 49.212034167000091 ], [ -122.588752405999983, 49.212070756000109 ], [ -122.588693298999928, 49.212314906000053 ], [ -122.58852948399999, 49.212993652000108 ], [ -122.58849116, 49.21401971800006 ], [ -122.588259351999966, 49.214256572000082 ], [ -122.588238868999937, 49.21427754500013 ], [ -122.588740780999899, 49.214789037000052 ], [ -122.588391107999939, 49.215007767000046 ], [ -122.588399769999967, 49.215170221000079 ], [ -122.587167813999926, 49.215140220000087 ], [ -122.584221, 49.215150509000118 ], [ -122.58277461299997, 49.215143392000115 ], [ -122.58275280399999, 49.214861495000022 ], [ -122.582814231999976, 49.214518928000132 ], [ -122.582822695999965, 49.214471806000113 ], [ -122.583016688999976, 49.213979597000062 ], [ -122.583023472999983, 49.213104868000102 ], [ -122.583467640999956, 49.213106978000035 ], [ -122.584222767999975, 49.213110584000134 ], [ -122.584231038999988, 49.213110618000059 ], [ -122.584663303, 49.213112688000109 ], [ -122.585231514999947, 49.212983802000075 ], [ -122.585324136999986, 49.212936743000107 ], [ -122.586286732999923, 49.212447744000073 ], [ -122.586376657999921, 49.212401028000059 ], [ -122.586764599999924, 49.21222138700012 ], [ -122.58708422, 49.212112567000105 ], [ -122.58752862599998, 49.212042832000066 ], [ -122.58762161199995, 49.212029785000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90450001", "BldgCostT": "59490001", "sL_LossRatio": "0.736291254224289", "sL_AssetLoss": "1043075", "sL_BldgLoss": "768007", "sL_StrLoss": "360597", "sL_NStrLoss": "407410", "sL_ContLoss": "275068", "geom_point": "0101000020E6100000C5FEAA0A2AA55EC0FACACD81AF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.58252022899994, 49.21309965100005 ], [ -122.583023472999983, 49.213104868000102 ], [ -122.583016688999976, 49.213979597000062 ], [ -122.582822695999965, 49.214471806000113 ], [ -122.582814231999976, 49.214518928000132 ], [ -122.58275280399999, 49.214861495000022 ], [ -122.58277461299997, 49.215143392000115 ], [ -122.58207820899996, 49.215130305000038 ], [ -122.582033106999916, 49.216582393000124 ], [ -122.581463653999919, 49.216577832000034 ], [ -122.581454829, 49.219084406000093 ], [ -122.581400863999988, 49.220264940000071 ], [ -122.58142497299994, 49.220403590000117 ], [ -122.579239379999976, 49.220363962000157 ], [ -122.579247810999959, 49.219075677000014 ], [ -122.579258784999922, 49.216727732000038 ], [ -122.579264286999944, 49.216223868000043 ], [ -122.579267231999921, 49.215951330000067 ], [ -122.579270247999929, 49.215675169000114 ], [ -122.579278285999962, 49.214935141000112 ], [ -122.579257817999959, 49.2140947030001 ], [ -122.579254038999949, 49.213065470000096 ], [ -122.580158854999965, 49.213074975000076 ], [ -122.580161751999981, 49.213074997000092 ], [ -122.580749160999972, 49.213081133000095 ], [ -122.581161004999927, 49.213085443000111 ], [ -122.58252022899994, 49.21309965100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137242750", "BldgCostT": "87160000", "sL_LossRatio": "0.69985166900019", "sL_AssetLoss": "1899131", "sL_BldgLoss": "1329110", "sL_StrLoss": "584860", "sL_NStrLoss": "744250", "sL_ContLoss": "570021", "geom_point": "0101000020E61000005FB621EF6AA55EC097DF7914F49B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.581400863999988, 49.220264940000071 ], [ -122.581454829, 49.219084406000093 ], [ -122.581463653999919, 49.216577832000034 ], [ -122.582033106999916, 49.216582393000124 ], [ -122.584856474999967, 49.216589904000095 ], [ -122.584863107999979, 49.215846692000092 ], [ -122.586075898999979, 49.215838196000156 ], [ -122.587195504999912, 49.215828597000062 ], [ -122.587298991999972, 49.215858109000045 ], [ -122.587361492999946, 49.215941998000098 ], [ -122.58728291499996, 49.219402496000022 ], [ -122.588359950999973, 49.219411343000061 ], [ -122.588337806999917, 49.220422610000078 ], [ -122.584850891999949, 49.220398653000075 ], [ -122.58142497299994, 49.220403590000117 ], [ -122.581400863999988, 49.220264940000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125463834", "BldgCostT": "84053334", "sL_LossRatio": "0.74639075355213", "sL_AssetLoss": "1558220", "sL_BldgLoss": "1163041", "sL_StrLoss": "549771", "sL_NStrLoss": "613270", "sL_ContLoss": "395179", "geom_point": "0101000020E6100000C13081D73EA55EC002C8F1BF6C9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.58142497299994, 49.220403590000117 ], [ -122.584850891999949, 49.220398653000075 ], [ -122.584946993999921, 49.221237878000117 ], [ -122.58491518699995, 49.223406791000059 ], [ -122.58434286, 49.223397889000111 ], [ -122.583964703999982, 49.223392004000054 ], [ -122.58365850599999, 49.223411111000111 ], [ -122.583390400000027, 49.223453105000033 ], [ -122.582865915999946, 49.223602190000072 ], [ -122.582370738999884, 49.223664851000137 ], [ -122.582102306999985, 49.223698795000061 ], [ -122.581824903999973, 49.223792693000085 ], [ -122.581559419999977, 49.223892397000085 ], [ -122.581291285999924, 49.223953294000083 ], [ -122.580810993999975, 49.223986708000048 ], [ -122.579929055999983, 49.223984543 ], [ -122.579434665999969, 49.223983335000078 ], [ -122.579211591999965, 49.223982796000072 ], [ -122.579215755999897, 49.223744002000096 ], [ -122.57923490599994, 49.222642700000037 ], [ -122.579250369999926, 49.221657138000118 ], [ -122.579252394999983, 49.221528588000041 ], [ -122.579251205, 49.221422772000096 ], [ -122.579239379999976, 49.220363962000157 ], [ -122.58142497299994, 49.220403590000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82807417", "BldgCostT": "52431667", "sL_LossRatio": "0.709284121171116", "sL_AssetLoss": "1016876", "sL_BldgLoss": "721254", "sL_StrLoss": "319704", "sL_NStrLoss": "401550", "sL_ContLoss": "295622", "geom_point": "0101000020E610000014F8696094A55EC03B9745D56D9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.585909888999964, 49.224126700000049 ], [ -122.586218700999922, 49.223419208000095 ], [ -122.585907955, 49.223416251000096 ], [ -122.58491518699995, 49.223406791000059 ], [ -122.584946993999921, 49.221237878000117 ], [ -122.584850891999949, 49.220398653000075 ], [ -122.588337806999917, 49.220422610000078 ], [ -122.590282987999956, 49.220426488000015 ], [ -122.590281397999959, 49.22110309300006 ], [ -122.588985012999956, 49.221088308000034 ], [ -122.588967821999972, 49.221509397000091 ], [ -122.58898548699996, 49.223416693000075 ], [ -122.58897441499991, 49.224129102000049 ], [ -122.585909888999964, 49.224126700000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163624972", "BldgCostT": "102653933", "sL_LossRatio": "0.680146977737196", "sL_AssetLoss": "2267010", "sL_BldgLoss": "1541900", "sL_StrLoss": "651330", "sL_NStrLoss": "890570", "sL_ContLoss": "725110", "geom_point": "0101000020E6100000270BBA18DEA55EC0A429FA2A969C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.590329100999952, 49.226472498000071 ], [ -122.590321078, 49.224675402000109 ], [ -122.588985195, 49.224673709000072 ], [ -122.58897441499991, 49.224129102000049 ], [ -122.58898548699996, 49.223416693000075 ], [ -122.588967821999972, 49.221509397000091 ], [ -122.588985012999956, 49.221088308000034 ], [ -122.590281397999959, 49.22110309300006 ], [ -122.590282987999956, 49.220426488000015 ], [ -122.592383001999949, 49.220435202000083 ], [ -122.5940096, 49.220439814000095 ], [ -122.593995388999929, 49.221381888000089 ], [ -122.593965809999958, 49.222309095000135 ], [ -122.593888893, 49.224929702000047 ], [ -122.593888966999955, 49.225101334000087 ], [ -122.593889204999968, 49.225954198000053 ], [ -122.59387239599999, 49.226483598000115 ], [ -122.592660404999918, 49.226476801000032 ], [ -122.591536809999951, 49.226481783000118 ], [ -122.590329100999952, 49.226472498000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89247500", "BldgCostT": "61550000", "sL_LossRatio": "0.772212734585701", "sL_AssetLoss": "1071570", "sL_BldgLoss": "827480", "sL_StrLoss": "388480", "sL_NStrLoss": "439000", "sL_ContLoss": "244090", "geom_point": "0101000020E6100000B1732E208FA55EC0CA690DADE79C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.584880350999981, 49.224123766000019 ], [ -122.58491518699995, 49.223406791000059 ], [ -122.585907955, 49.223416251000096 ], [ -122.586218700999922, 49.223419208000095 ], [ -122.585909888999964, 49.224126700000049 ], [ -122.58897441499991, 49.224129102000049 ], [ -122.588985195, 49.224673709000072 ], [ -122.58896789, 49.22490919800002 ], [ -122.588973419999917, 49.225675398000085 ], [ -122.588989989999945, 49.226383195000018 ], [ -122.588976812999988, 49.226899105000015 ], [ -122.589350800999952, 49.227415591000089 ], [ -122.588512298999959, 49.227708006000057 ], [ -122.588106598999971, 49.22777270299999 ], [ -122.587643130999979, 49.227773502000012 ], [ -122.58502887899999, 49.227777992000021 ], [ -122.585037811999939, 49.22709609300005 ], [ -122.58501419699995, 49.226966989000111 ], [ -122.58500266099999, 49.226903855000117 ], [ -122.584940879999962, 49.2265659 ], [ -122.584740009999919, 49.226068386000058 ], [ -122.584853799999976, 49.224670812000063 ], [ -122.584875562999926, 49.224222877000074 ], [ -122.584880350999981, 49.224123766000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106316083", "BldgCostT": "68008333", "sL_LossRatio": "0.715251164670769", "sL_AssetLoss": "1224595", "sL_BldgLoss": "875893", "sL_StrLoss": "408833", "sL_NStrLoss": "467060", "sL_ContLoss": "348702", "geom_point": "0101000020E61000006179A93B43A55EC096E6B932E69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.58169760199999, 49.227628204000055 ], [ -122.581232793999945, 49.227599996000052 ], [ -122.579372016999983, 49.22758240100007 ], [ -122.579171619999968, 49.227619300000036 ], [ -122.579192903999967, 49.225466294000107 ], [ -122.579196434999943, 49.225184895000076 ], [ -122.579209937999906, 49.224112642000094 ], [ -122.579211591999965, 49.223982796000072 ], [ -122.579434665999969, 49.223983335000078 ], [ -122.579929055999983, 49.223984543 ], [ -122.580810993999975, 49.223986708000048 ], [ -122.581291285999924, 49.223953294000083 ], [ -122.581559419999977, 49.223892397000085 ], [ -122.581824903999973, 49.223792693000085 ], [ -122.582102306999985, 49.223698795000061 ], [ -122.582370738999884, 49.223664851000137 ], [ -122.582865915999946, 49.223602190000072 ], [ -122.583390400000027, 49.223453105000033 ], [ -122.58365850599999, 49.223411111000111 ], [ -122.583964703999982, 49.223392004000054 ], [ -122.58434286, 49.223397889000111 ], [ -122.58491518699995, 49.223406791000059 ], [ -122.584880350999981, 49.224123766000019 ], [ -122.584875562999926, 49.224222877000074 ], [ -122.584853799999976, 49.224670812000063 ], [ -122.584740009999919, 49.226068386000058 ], [ -122.584940879999962, 49.2265659 ], [ -122.58500266099999, 49.226903855000117 ], [ -122.58501419699995, 49.226966989000111 ], [ -122.585037811999939, 49.22709609300005 ], [ -122.58502887899999, 49.227777992000021 ], [ -122.585022785999968, 49.228327397000044 ], [ -122.584737479999959, 49.228284998000092 ], [ -122.584328210999928, 49.228181780000071 ], [ -122.58330207499999, 49.227923066000059 ], [ -122.583049621, 49.227859395000131 ], [ -122.582341818999936, 49.227722753000066 ], [ -122.582240001999949, 49.227703105000089 ], [ -122.58169760199999, 49.227628204000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119929031", "BldgCostT": "71968204", "sL_LossRatio": "0.718577798266908", "sL_AssetLoss": "1388270", "sL_BldgLoss": "997580", "sL_StrLoss": "456580", "sL_NStrLoss": "541000", "sL_ContLoss": "390690", "geom_point": "0101000020E61000008C7B0B6F3FA55EC00B599213589D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.579372016999983, 49.22758240100007 ], [ -122.581232793999945, 49.227599996000052 ], [ -122.58169760199999, 49.227628204000055 ], [ -122.582240001999949, 49.227703105000089 ], [ -122.582341818999936, 49.227722753000066 ], [ -122.583049621, 49.227859395000131 ], [ -122.58330207499999, 49.227923066000059 ], [ -122.584328210999928, 49.228181780000071 ], [ -122.584737479999959, 49.228284998000092 ], [ -122.585022785999968, 49.228327397000044 ], [ -122.585022341999903, 49.228343344000045 ], [ -122.585003007999958, 49.229025102000087 ], [ -122.585015706999968, 49.229972613000022 ], [ -122.585015931999962, 49.230421281000091 ], [ -122.585016099999962, 49.230751106000113 ], [ -122.584789123999968, 49.230749351000128 ], [ -122.584061154999986, 49.230743746000051 ], [ -122.579269505999932, 49.230706812000051 ], [ -122.57925157399994, 49.23007628700001 ], [ -122.579243514999987, 49.229793200000081 ], [ -122.579171619999968, 49.227619300000036 ], [ -122.579372016999983, 49.22758240100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150597251", "BldgCostT": "100915001", "sL_LossRatio": "0.738733559852161", "sL_AssetLoss": "1810887", "sL_BldgLoss": "1337763", "sL_StrLoss": "627693", "sL_NStrLoss": "710070", "sL_ContLoss": "473124", "geom_point": "0101000020E6100000536043686BA55EC03D093A94009E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.582272607999982, 49.239190796000038 ], [ -122.58112069799999, 49.239007104000081 ], [ -122.580433084999981, 49.239004205000114 ], [ -122.579560404999981, 49.23905730000007 ], [ -122.579547982999912, 49.238854216000071 ], [ -122.579527393999939, 49.238518370000122 ], [ -122.579485194999947, 49.237880013000087 ], [ -122.579470099999966, 49.237115406999983 ], [ -122.579463654000023, 49.237002909000061 ], [ -122.579446101999963, 49.236695610000062 ], [ -122.579426825999931, 49.236372700000103 ], [ -122.579387082999986, 49.235707840000011 ], [ -122.579338507999935, 49.234894491000041 ], [ -122.579323289999977, 49.233971679000035 ], [ -122.579317969, 49.2336477590001 ], [ -122.579308929999954, 49.233099005000085 ], [ -122.579294979999986, 49.232253485000037 ], [ -122.579290102999977, 49.231956705000115 ], [ -122.579279109999931, 49.231291045000056 ], [ -122.579269505999932, 49.230706812000051 ], [ -122.584061154999986, 49.230743746000051 ], [ -122.584789123999968, 49.230749351000128 ], [ -122.585016099999962, 49.230751106000113 ], [ -122.585015931999962, 49.230421281000091 ], [ -122.585015706999968, 49.229972613000022 ], [ -122.58519384099999, 49.229972730000028 ], [ -122.586759656999973, 49.229973785000062 ], [ -122.586934104999983, 49.229973889000114 ], [ -122.587593009999978, 49.229883885000014 ], [ -122.588144398999972, 49.229854494000101 ], [ -122.589117085999987, 49.229904202000057 ], [ -122.589333793999927, 49.229890309000027 ], [ -122.589853262999924, 49.229785230000076 ], [ -122.590327600999899, 49.229689292000053 ], [ -122.590327547999934, 49.229738495000049 ], [ -122.590326965999921, 49.230575049000059 ], [ -122.590326907999909, 49.230633605000058 ], [ -122.590334071999933, 49.231834421000016 ], [ -122.590335420999907, 49.232059213000078 ], [ -122.590339010000022, 49.232656891000119 ], [ -122.590331129999925, 49.232815460000054 ], [ -122.590297715, 49.233489232000053 ], [ -122.590296192999958, 49.233519721000064 ], [ -122.590301099999948, 49.23376855300009 ], [ -122.590312416999978, 49.234344273000019 ], [ -122.590325208999943, 49.234994805000078 ], [ -122.590319863999966, 49.235702467000053 ], [ -122.59031925699999, 49.235783424000061 ], [ -122.59031610199996, 49.236201896000075 ], [ -122.589988205999958, 49.236850279000038 ], [ -122.589298121999931, 49.236984703000033 ], [ -122.587757712000013, 49.237124202000075 ], [ -122.587467112999931, 49.237275209000074 ], [ -122.587233709999964, 49.23748168700012 ], [ -122.587008100999952, 49.238020089000024 ], [ -122.586566610999967, 49.238423099000023 ], [ -122.585572703999958, 49.238905909000025 ], [ -122.584265494999926, 49.239233506000055 ], [ -122.582272607999982, 49.239190796000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186952667", "BldgCostT": "126361667", "sL_LossRatio": "0.752614975925619", "sL_AssetLoss": "2108050", "sL_BldgLoss": "1586550", "sL_StrLoss": "717920", "sL_NStrLoss": "868630", "sL_ContLoss": "521500", "geom_point": "0101000020E6100000C4C3739DE3A55EC000C77D2FAE9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.590318499999952, 49.228542808000022 ], [ -122.590672909999924, 49.228540492000022 ], [ -122.590755601999916, 49.228548586000109 ], [ -122.591491008999981, 49.22862038600001 ], [ -122.59293217799997, 49.228947093000095 ], [ -122.593621876999961, 49.229129297000092 ], [ -122.593826416999946, 49.229206099000066 ], [ -122.593819464999939, 49.229418067000012 ], [ -122.593806593999929, 49.229812789000086 ], [ -122.593798599999943, 49.230090099000073 ], [ -122.593778889999925, 49.231013012000048 ], [ -122.59376854599999, 49.232278588000028 ], [ -122.593762900999977, 49.232972400000115 ], [ -122.593739558999971, 49.234536240000097 ], [ -122.593733243999978, 49.234958972000108 ], [ -122.593732396999926, 49.235015100000041 ], [ -122.592652395999977, 49.235003502000062 ], [ -122.591855308999953, 49.234996844000108 ], [ -122.591492605999989, 49.234993804000055 ], [ -122.591003646999965, 49.234994231000016 ], [ -122.590325208999943, 49.234994805000078 ], [ -122.590312416999978, 49.234344273000019 ], [ -122.590301099999948, 49.23376855300009 ], [ -122.590296192999958, 49.233519721000064 ], [ -122.590297715, 49.233489232000053 ], [ -122.590331129999925, 49.232815460000054 ], [ -122.590339010000022, 49.232656891000119 ], [ -122.590335420999907, 49.232059213000078 ], [ -122.590334071999933, 49.231834421000016 ], [ -122.590326907999909, 49.230633605000058 ], [ -122.590326965999921, 49.230575049000059 ], [ -122.590327547999934, 49.229738495000049 ], [ -122.590327600999899, 49.229689292000053 ], [ -122.590325567999912, 49.229432535000122 ], [ -122.590320287999987, 49.228767039000097 ], [ -122.590318499999952, 49.228542808000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63929250", "BldgCostT": "42615000", "sL_LossRatio": "0.750773800609056", "sL_AssetLoss": "801240", "sL_BldgLoss": "601550", "sL_StrLoss": "278950", "sL_NStrLoss": "322600", "sL_ContLoss": "199690", "geom_point": "0101000020E610000019E903D12CA65EC0D2CCC5A5CB9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.593739558999971, 49.234536240000097 ], [ -122.593762900999977, 49.232972400000115 ], [ -122.59376854599999, 49.232278588000028 ], [ -122.593778889999925, 49.231013012000048 ], [ -122.593798599999943, 49.230090099000073 ], [ -122.593806593999929, 49.229812789000086 ], [ -122.593819464999939, 49.229418067000012 ], [ -122.593826416999946, 49.229206099000066 ], [ -122.594471004999932, 49.22944566600011 ], [ -122.596500009999929, 49.230199702000043 ], [ -122.597751917, 49.230542904000139 ], [ -122.598800814999962, 49.230799303000076 ], [ -122.598829440999964, 49.230806310000041 ], [ -122.599891742999944, 49.23106596700007 ], [ -122.599851504999904, 49.230882194000067 ], [ -122.599767232999952, 49.230697027000097 ], [ -122.599444614999967, 49.229988096000142 ], [ -122.600000392999959, 49.229995340000109 ], [ -122.601196490999911, 49.230010909000036 ], [ -122.601184265999976, 49.230757170000047 ], [ -122.601174689999979, 49.23134110000008 ], [ -122.601141089999942, 49.232736704000111 ], [ -122.601137303999934, 49.233164602000052 ], [ -122.601128136999989, 49.233869310000109 ], [ -122.601124875999972, 49.234121204000125 ], [ -122.60112287299999, 49.234274110000108 ], [ -122.60112260899993, 49.234294702000035 ], [ -122.59962369699997, 49.234214590000128 ], [ -122.598813115, 49.234059398000063 ], [ -122.597825497999963, 49.234073593000062 ], [ -122.596765919999939, 49.23429429800008 ], [ -122.596198412999925, 49.234599097000036 ], [ -122.596043790999886, 49.235120405 ], [ -122.596026919999986, 49.235131333000083 ], [ -122.595214903999988, 49.235657288000048 ], [ -122.593154488999957, 49.235821097000063 ], [ -122.592120484999924, 49.236068894 ], [ -122.590109813999973, 49.236826596000064 ], [ -122.589988205999958, 49.236850279000038 ], [ -122.59031610199996, 49.236201896000075 ], [ -122.59031925699999, 49.235783424000061 ], [ -122.590319863999966, 49.235702467000053 ], [ -122.590325208999943, 49.234994805000078 ], [ -122.591003646999965, 49.234994231000016 ], [ -122.591492605999989, 49.234993804000055 ], [ -122.591855308999953, 49.234996844000108 ], [ -122.592652395999977, 49.235003502000062 ], [ -122.593732396999926, 49.235015100000041 ], [ -122.593733243999978, 49.234958972000108 ], [ -122.593739558999971, 49.234536240000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114231002", "BldgCostT": "77835002", "sL_LossRatio": "0.74631983094735", "sL_AssetLoss": "1679950", "sL_BldgLoss": "1253780", "sL_StrLoss": "564010", "sL_NStrLoss": "689770", "sL_ContLoss": "426170", "geom_point": "0101000020E61000001E82578941A65EC0FE613A634E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.60000502799997, 49.22767991400012 ], [ -122.600398700999961, 49.227685297000058 ], [ -122.6011594899999, 49.227717145000092 ], [ -122.601270825999961, 49.227721803000072 ], [ -122.601266729999963, 49.227888085000053 ], [ -122.60124812, 49.228650994000077 ], [ -122.601215003, 49.22932750800004 ], [ -122.601196490999911, 49.230010909000036 ], [ -122.600000392999959, 49.229995340000109 ], [ -122.599444614999967, 49.229988096000142 ], [ -122.599767232999952, 49.230697027000097 ], [ -122.599851504999904, 49.230882194000067 ], [ -122.599891742999944, 49.23106596700007 ], [ -122.598829440999964, 49.230806310000041 ], [ -122.598800814999962, 49.230799303000076 ], [ -122.597751917, 49.230542904000139 ], [ -122.596500009999929, 49.230199702000043 ], [ -122.594471004999932, 49.22944566600011 ], [ -122.593826416999946, 49.229206099000066 ], [ -122.593830671999953, 49.228842474000039 ], [ -122.593831000999955, 49.228813325000061 ], [ -122.593831848999955, 49.22874131500005 ], [ -122.593832391999953, 49.228694498000074 ], [ -122.593858794999946, 49.227978901000021 ], [ -122.59385539699997, 49.227631902000049 ], [ -122.59732730899999, 49.227650824000051 ], [ -122.598336993999951, 49.227656295000131 ], [ -122.59914080599998, 49.227668092000016 ], [ -122.60000502799997, 49.22767991400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177214083", "BldgCostT": "115848333", "sL_LossRatio": "0.737659049279776", "sL_AssetLoss": "2308797", "sL_BldgLoss": "1703105", "sL_StrLoss": "785565", "sL_NStrLoss": "917540", "sL_ContLoss": "605692", "geom_point": "0101000020E61000006FF8ED56DCA65EC0653909A5AF9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.604806094999944, 49.234863391000054 ], [ -122.604443963999984, 49.234689570000086 ], [ -122.603884238999981, 49.234865933000044 ], [ -122.603783870999948, 49.234892145000074 ], [ -122.602314614999969, 49.23435840200014 ], [ -122.60112260899993, 49.234294702000035 ], [ -122.60112287299999, 49.234274110000108 ], [ -122.601124875999972, 49.234121204000125 ], [ -122.601128136999989, 49.233869310000109 ], [ -122.601137303999934, 49.233164602000052 ], [ -122.601141089999942, 49.232736704000111 ], [ -122.601174689999979, 49.23134110000008 ], [ -122.601184265999976, 49.230757170000047 ], [ -122.601196490999911, 49.230010909000036 ], [ -122.601215003, 49.22932750800004 ], [ -122.60124812, 49.228650994000077 ], [ -122.601266729999963, 49.227888085000053 ], [ -122.601270825999961, 49.227721803000072 ], [ -122.602024012999891, 49.227727163000111 ], [ -122.602490958999965, 49.227730471000022 ], [ -122.602738255999967, 49.227732221000068 ], [ -122.603226490999972, 49.227735702000096 ], [ -122.604451996999899, 49.227745403 ], [ -122.60561921, 49.227746198000069 ], [ -122.606048310999981, 49.227755208000097 ], [ -122.606981925999975, 49.227757784000062 ], [ -122.608875083, 49.227762999000042 ], [ -122.608874709999938, 49.228614501000017 ], [ -122.608325412999989, 49.228614379000099 ], [ -122.607914193999974, 49.228753690000083 ], [ -122.6077369899999, 49.228923811000122 ], [ -122.607728151999979, 49.228944157000065 ], [ -122.60765120799999, 49.229121201000119 ], [ -122.607558509999976, 49.229863504000051 ], [ -122.607553912999919, 49.230077825000052 ], [ -122.607528409999958, 49.231270897000066 ], [ -122.608760885999985, 49.231261893000045 ], [ -122.610428814999963, 49.231246449000068 ], [ -122.610662544999983, 49.231244284000063 ], [ -122.610676274999946, 49.231244153000098 ], [ -122.610973301999962, 49.231241401000069 ], [ -122.612788238999926, 49.231288061000079 ], [ -122.6128049899999, 49.231288487000015 ], [ -122.61318699499995, 49.231298306000042 ], [ -122.613468098999959, 49.231266606000041 ], [ -122.614231188999895, 49.231103188000155 ], [ -122.614726891999908, 49.230990796000107 ], [ -122.615424895999965, 49.230966691000027 ], [ -122.615441187000016, 49.23151420900011 ], [ -122.615060888999935, 49.232097907000082 ], [ -122.615018385999974, 49.232397499000037 ], [ -122.615032601999971, 49.232768290000131 ], [ -122.615029297999982, 49.23507220500003 ], [ -122.610454459999985, 49.235048290000151 ], [ -122.609314369999979, 49.235042312000125 ], [ -122.606182571999966, 49.23502578500009 ], [ -122.60611390299999, 49.235025427000075 ], [ -122.605880680999988, 49.235024203000073 ], [ -122.605526486999949, 49.23502209600008 ], [ -122.605133106999915, 49.234955598000056 ], [ -122.604806094999944, 49.234863391000054 ] ], [ [ -122.607029460999939, 49.233384019000034 ], [ -122.60715349599991, 49.231687270000087 ], [ -122.60544621199989, 49.231681449000085 ], [ -122.605448358999965, 49.231411597000083 ], [ -122.60523838, 49.231410881000031 ], [ -122.605180308999977, 49.232204820000049 ], [ -122.60584580299998, 49.232225773000039 ], [ -122.60580658, 49.232762113000035 ], [ -122.606673829999977, 49.232765069000024 ], [ -122.606669006999979, 49.233372675000062 ], [ -122.607029460999939, 49.233384019000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "402220000", "BldgCostT": "270595000", "sL_LossRatio": "0.779126041315556", "sL_AssetLoss": "3141819", "sL_BldgLoss": "2447873", "sL_StrLoss": "1111953", "sL_NStrLoss": "1335920", "sL_ContLoss": "693946", "geom_point": "0101000020E6100000E8062C14C4A65EC0810FEBAEE89C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.610213901999941, 49.224190001000068 ], [ -122.61093241, 49.224184684000065 ], [ -122.61089421099993, 49.225423397000085 ], [ -122.610874297999885, 49.226203100000077 ], [ -122.60886570699995, 49.226199414000085 ], [ -122.608875083, 49.227762999000042 ], [ -122.606981925999975, 49.227757784000062 ], [ -122.606048310999981, 49.227755208000097 ], [ -122.60561921, 49.227746198000069 ], [ -122.604451996999899, 49.227745403 ], [ -122.603226490999972, 49.227735702000096 ], [ -122.602738255999967, 49.227732221000068 ], [ -122.602490958999965, 49.227730471000022 ], [ -122.602024012999891, 49.227727163000111 ], [ -122.601270825999961, 49.227721803000072 ], [ -122.601350641999957, 49.224748513000115 ], [ -122.601355487999925, 49.224568560000044 ], [ -122.601367818, 49.224108788000109 ], [ -122.602849549, 49.224126703000138 ], [ -122.603778091999942, 49.224137908000067 ], [ -122.604716452, 49.224145642000053 ], [ -122.60695620499996, 49.224164093000063 ], [ -122.607768510999932, 49.224170786000073 ], [ -122.608383582999977, 49.224177378000036 ], [ -122.608740564999934, 49.224181188000038 ], [ -122.60898549599996, 49.22418381500011 ], [ -122.608999317999945, 49.224183856000082 ], [ -122.610213901999941, 49.224190001000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "861957853", "BldgCostT": "585717579", "sL_LossRatio": "0.812330443117271", "sL_AssetLoss": "6188926", "sL_BldgLoss": "5027453", "sL_StrLoss": "2335173", "sL_NStrLoss": "2692280", "sL_ContLoss": "1161473", "geom_point": "0101000020E6100000FEBDEB9E42A65EC0FEF5B7C2C39C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.598336993999951, 49.227656295000131 ], [ -122.598346888999927, 49.226677989000059 ], [ -122.59387157099999, 49.226624994000076 ], [ -122.59387239599999, 49.226483598000115 ], [ -122.593889204999968, 49.225954198000053 ], [ -122.593888966999955, 49.225101334000087 ], [ -122.593888893, 49.224929702000047 ], [ -122.593965809999958, 49.222309095000135 ], [ -122.595779798999956, 49.222324898000046 ], [ -122.597755703999937, 49.222341416000091 ], [ -122.599993286999933, 49.222342999000084 ], [ -122.600007298999913, 49.222343004000024 ], [ -122.60136888699995, 49.222349884000089 ], [ -122.601368119999989, 49.223586744000066 ], [ -122.60136786, 49.224020240000108 ], [ -122.601367818, 49.224108788000109 ], [ -122.601355487999925, 49.224568560000044 ], [ -122.601350641999957, 49.224748513000115 ], [ -122.601270825999961, 49.227721803000072 ], [ -122.6011594899999, 49.227717145000092 ], [ -122.600398700999961, 49.227685297000058 ], [ -122.60000502799997, 49.22767991400012 ], [ -122.59914080599998, 49.227668092000016 ], [ -122.598336993999951, 49.227656295000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192761927", "BldgCostT": "126175127", "sL_LossRatio": "0.734859675036928", "sL_AssetLoss": "2031000", "sL_BldgLoss": "1492500", "sL_StrLoss": "630510", "sL_NStrLoss": "861990", "sL_ContLoss": "538500", "geom_point": "0101000020E610000000DA1C08C5A65EC093038FD2199C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.604535421999941, 49.219566202000088 ], [ -122.604526002999947, 49.219029258000042 ], [ -122.604518188999918, 49.218581693000012 ], [ -122.607036910999938, 49.218588908000058 ], [ -122.607040498999979, 49.218915191000086 ], [ -122.607010104999944, 49.22049569200005 ], [ -122.605977686999935, 49.220494701000099 ], [ -122.604509002999976, 49.220490804000157 ], [ -122.604521598999938, 49.220049954000032 ], [ -122.604535421999941, 49.219566202000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "497729364", "BldgCostT": "298878849", "sL_LossRatio": "0.65803793104024", "sL_AssetLoss": "5989290", "sL_BldgLoss": "3941180", "sL_StrLoss": "1706060", "sL_NStrLoss": "2235120", "sL_ContLoss": "2048110", "geom_point": "0101000020E61000003FA76111A6A65EC07AA04E79F49B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.606509814999981, 49.216905192000162 ], [ -122.607015491999931, 49.216909496000078 ], [ -122.607029555999986, 49.217338048000023 ], [ -122.607043993999966, 49.217777303000041 ], [ -122.607041175999953, 49.217928602000072 ], [ -122.607039349, 49.218210722000123 ], [ -122.607037766999923, 49.218453586000109 ], [ -122.607036910999938, 49.218588908000058 ], [ -122.604518188999918, 49.218581693000012 ], [ -122.604526002999947, 49.219029258000042 ], [ -122.604535421999941, 49.219566202000088 ], [ -122.604521598999938, 49.220049954000032 ], [ -122.604509002999976, 49.220490804000157 ], [ -122.603864003999888, 49.220486710000102 ], [ -122.603024007, 49.220482791000052 ], [ -122.601689595999915, 49.22046318800011 ], [ -122.601705221999978, 49.219968143000095 ], [ -122.601719307999986, 49.219531496000094 ], [ -122.601720915, 49.219271966000044 ], [ -122.60172209699999, 49.219081079 ], [ -122.601721993999945, 49.219020022000116 ], [ -122.601721287999951, 49.218585499000085 ], [ -122.601635677999951, 49.217729427000016 ], [ -122.60158588499999, 49.217297870000067 ], [ -122.601543251999928, 49.216929040000146 ], [ -122.602487269999983, 49.216879538000093 ], [ -122.604541822999977, 49.216888396000101 ], [ -122.606509814999981, 49.216905192000162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259385561", "BldgCostT": "177253190", "sL_LossRatio": "0.815721075638195", "sL_AssetLoss": "2200740", "sL_BldgLoss": "1795190", "sL_StrLoss": "817620", "sL_NStrLoss": "977570", "sL_ContLoss": "405550", "geom_point": "0101000020E610000012772765F3A65EC0543342AAEE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.608691199999967, 49.215826009000082 ], [ -122.609281112999938, 49.215831999000031 ], [ -122.609644586999963, 49.215873097000085 ], [ -122.610112215999962, 49.216049998000074 ], [ -122.610104893999946, 49.216808500000141 ], [ -122.610134796999958, 49.216906793000064 ], [ -122.6101239, 49.21795798600003 ], [ -122.610133815999959, 49.218463594000085 ], [ -122.610139891999921, 49.218773088000141 ], [ -122.610224124999917, 49.218992903000135 ], [ -122.610291898999918, 49.219191514000066 ], [ -122.610280606999979, 49.220512100000057 ], [ -122.609024587999926, 49.220509495000044 ], [ -122.607010104999944, 49.22049569200005 ], [ -122.607040498999979, 49.218915191000086 ], [ -122.607036910999938, 49.218588908000058 ], [ -122.607037766999923, 49.218453586000109 ], [ -122.607039349, 49.218210722000123 ], [ -122.607041175999953, 49.217928602000072 ], [ -122.607043993999966, 49.217777303000041 ], [ -122.607029555999986, 49.217338048000023 ], [ -122.607015491999931, 49.216909496000078 ], [ -122.607024465999956, 49.216793715000087 ], [ -122.607025889999989, 49.216775572000046 ], [ -122.607061709999968, 49.216314509000043 ], [ -122.606941111999916, 49.216010596000082 ], [ -122.607220900999948, 49.215920301000068 ], [ -122.608691199999967, 49.215826009000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136536297", "BldgCostT": "86432822", "sL_LossRatio": "0.692536625546687", "sL_AssetLoss": "2039560", "sL_BldgLoss": "1412470", "sL_StrLoss": "594470", "sL_NStrLoss": "818000", "sL_ContLoss": "627090", "geom_point": "0101000020E61000003CC2FDDB40A75EC082A7CAD6FE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.610291898999918, 49.219191514000066 ], [ -122.610224124999917, 49.218992903000135 ], [ -122.610139891999921, 49.218773088000141 ], [ -122.610133815999959, 49.218463594000085 ], [ -122.6101239, 49.21795798600003 ], [ -122.610134796999958, 49.216906793000064 ], [ -122.610104893999946, 49.216808500000141 ], [ -122.610112215999962, 49.216049998000074 ], [ -122.611190984999922, 49.215939811000084 ], [ -122.612029918999923, 49.215920209000075 ], [ -122.612760683999966, 49.215932396000042 ], [ -122.613180003999929, 49.215999580000066 ], [ -122.614352192999917, 49.216509512000094 ], [ -122.614233685, 49.216874372000099 ], [ -122.614208818999913, 49.216950992000136 ], [ -122.612692489, 49.216942096000018 ], [ -122.612675887999956, 49.217413795000034 ], [ -122.61327074499998, 49.217573109000064 ], [ -122.613483886999944, 49.217630203000041 ], [ -122.615358988999958, 49.218555108000082 ], [ -122.615906313999957, 49.218901110000047 ], [ -122.616312685999972, 49.219314896000093 ], [ -122.617796498999965, 49.219055112000028 ], [ -122.618703305999958, 49.219046603000024 ], [ -122.618681109999955, 49.219407198000106 ], [ -122.618619105999969, 49.219598991000069 ], [ -122.618551611000029, 49.220562892000032 ], [ -122.616446905999936, 49.220544592000039 ], [ -122.615828408999946, 49.220539740000056 ], [ -122.615567291, 49.220537708000116 ], [ -122.614605989999959, 49.220533550000084 ], [ -122.614036993999889, 49.220531095000048 ], [ -122.613246449999934, 49.220528119000051 ], [ -122.612897806999982, 49.220526784000086 ], [ -122.612630094999957, 49.2205255880001 ], [ -122.611614397999958, 49.220522508000073 ], [ -122.610280606999979, 49.220512100000057 ], [ -122.610291898999918, 49.219191514000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186414728", "BldgCostT": "118867792", "sL_LossRatio": "0.711535490734023", "sL_AssetLoss": "2556935", "sL_BldgLoss": "1819350", "sL_StrLoss": "780320", "sL_NStrLoss": "1039030", "sL_ContLoss": "737585", "geom_point": "0101000020E610000049CE0EC01FA75EC0210072A1769C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.614605989999959, 49.220533550000084 ], [ -122.615567291, 49.220537708000116 ], [ -122.615556409999925, 49.221177980000064 ], [ -122.615481994, 49.223121096000078 ], [ -122.615547685999957, 49.22335020200007 ], [ -122.615634213999925, 49.223480896000098 ], [ -122.615793195999984, 49.223617405000041 ], [ -122.6164209, 49.223915582000075 ], [ -122.615877894999983, 49.224150794000082 ], [ -122.615645607999966, 49.224191287000103 ], [ -122.614161084999964, 49.224194214000143 ], [ -122.612842891999918, 49.224196095000096 ], [ -122.611545579999955, 49.224192202000012 ], [ -122.61093241, 49.224184684000065 ], [ -122.610213901999941, 49.224190001000068 ], [ -122.608999317999945, 49.224183856000082 ], [ -122.60898549599996, 49.22418381500011 ], [ -122.608740564999934, 49.224181188000038 ], [ -122.608383582999977, 49.224177378000036 ], [ -122.607768510999932, 49.224170786000073 ], [ -122.60695620499996, 49.224164093000063 ], [ -122.606984863999955, 49.223319971000123 ], [ -122.606987617999948, 49.223237919000063 ], [ -122.606994000999975, 49.223050229000094 ], [ -122.60700378300001, 49.222761711000068 ], [ -122.607007908999918, 49.222216696000054 ], [ -122.607014504999981, 49.22146898900008 ], [ -122.607010104999944, 49.22049569200005 ], [ -122.609024587999926, 49.220509495000044 ], [ -122.610280606999979, 49.220512100000057 ], [ -122.611614397999958, 49.220522508000073 ], [ -122.612630094999957, 49.2205255880001 ], [ -122.612897806999982, 49.220526784000086 ], [ -122.613246449999934, 49.220528119000051 ], [ -122.614036993999889, 49.220531095000048 ], [ -122.614605989999959, 49.220533550000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115244667", "BldgCostT": "75056667", "sL_LossRatio": "0.732086921857343", "sL_AssetLoss": "1427351", "sL_BldgLoss": "1044945", "sL_StrLoss": "493295", "sL_NStrLoss": "551650", "sL_ContLoss": "382406", "geom_point": "0101000020E6100000153CE886A4A75EC0A1E68AD67A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.620799188999939, 49.224674700000058 ], [ -122.620461711999965, 49.224556889000034 ], [ -122.618218822999935, 49.224528897000042 ], [ -122.618216704999966, 49.223483594000101 ], [ -122.617731890999949, 49.223485506000031 ], [ -122.617658670999944, 49.223498371000041 ], [ -122.617206092999979, 49.223578001000099 ], [ -122.616903393999962, 49.223681104000022 ], [ -122.616802087999943, 49.22373034400011 ], [ -122.6164209, 49.223915582000075 ], [ -122.615793195999984, 49.223617405000041 ], [ -122.615634213999925, 49.223480896000098 ], [ -122.615547685999957, 49.22335020200007 ], [ -122.615481994, 49.223121096000078 ], [ -122.615556409999925, 49.221177980000064 ], [ -122.615567291, 49.220537708000116 ], [ -122.615828408999946, 49.220539740000056 ], [ -122.616446905999936, 49.220544592000039 ], [ -122.618551611000029, 49.220562892000032 ], [ -122.619956522999971, 49.220558309000054 ], [ -122.622749808, 49.220566505000086 ], [ -122.622714783999982, 49.221935099000106 ], [ -122.622705889999949, 49.22296380600006 ], [ -122.622705015999912, 49.223730586 ], [ -122.62268825299999, 49.224514712000037 ], [ -122.622684985999967, 49.224666214000088 ], [ -122.622681475999954, 49.224757570000065 ], [ -122.622666594999885, 49.22514590000003 ], [ -122.621391009999954, 49.225145604000055 ], [ -122.62114479, 49.225019788000075 ], [ -122.620799188999939, 49.224674700000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142943788", "BldgCostT": "95523046", "sL_LossRatio": "0.74284921530112", "sL_AssetLoss": "1769596", "sL_BldgLoss": "1314543", "sL_StrLoss": "609573", "sL_NStrLoss": "704970", "sL_ContLoss": "455053", "geom_point": "0101000020E6100000318E0DB46DA75EC0B264023CF19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.61089421099993, 49.225423397000085 ], [ -122.61093241, 49.224184684000065 ], [ -122.611545579999955, 49.224192202000012 ], [ -122.612842891999918, 49.224196095000096 ], [ -122.614161084999964, 49.224194214000143 ], [ -122.615645607999966, 49.224191287000103 ], [ -122.615877894999983, 49.224150794000082 ], [ -122.6164209, 49.223915582000075 ], [ -122.616802087999943, 49.22373034400011 ], [ -122.616903393999962, 49.223681104000022 ], [ -122.617206092999979, 49.223578001000099 ], [ -122.617658670999944, 49.223498371000041 ], [ -122.617731890999949, 49.223485506000031 ], [ -122.618216704999966, 49.223483594000101 ], [ -122.618218822999935, 49.224528897000042 ], [ -122.620461711999965, 49.224556889000034 ], [ -122.620799188999939, 49.224674700000058 ], [ -122.62114479, 49.225019788000075 ], [ -122.621391009999954, 49.225145604000055 ], [ -122.622666594999885, 49.22514590000003 ], [ -122.622664684, 49.225510806000074 ], [ -122.622636612999955, 49.22642629200007 ], [ -122.622597905999925, 49.22784508700007 ], [ -122.620692009999985, 49.227863802000108 ], [ -122.618577998999967, 49.227854313000122 ], [ -122.617955222999967, 49.227852128000116 ], [ -122.617666798999949, 49.227851109000085 ], [ -122.617378374999987, 49.227850091000079 ], [ -122.616896299999965, 49.227848397000109 ], [ -122.616092209999962, 49.227841109000053 ], [ -122.615510597999915, 49.227831900000112 ], [ -122.614007580999939, 49.227805387000089 ], [ -122.612764147999926, 49.227794740000036 ], [ -122.610415610999937, 49.227774602000039 ], [ -122.610183003999964, 49.227772611000077 ], [ -122.610017294999949, 49.227771379000039 ], [ -122.609619037999948, 49.227768453000103 ], [ -122.608875083, 49.227762999000042 ], [ -122.60886570699995, 49.226199414000085 ], [ -122.610874297999885, 49.226203100000077 ], [ -122.61089421099993, 49.225423397000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73530750", "BldgCostT": "48765000", "sL_LossRatio": "0.750542068789592", "sL_AssetLoss": "940840", "sL_BldgLoss": "706140", "sL_StrLoss": "320340", "sL_NStrLoss": "385800", "sL_ContLoss": "234700", "geom_point": "0101000020E6100000F02B5AA975A75EC0DBA269DC5D9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.614231188999895, 49.231103188000155 ], [ -122.614172589999953, 49.230832808000109 ], [ -122.61415039799999, 49.230177 ], [ -122.614141891999935, 49.229502810000035 ], [ -122.614123206, 49.229063314000072 ], [ -122.614007520999962, 49.228653333000061 ], [ -122.614007580999939, 49.227805387000089 ], [ -122.615510597999915, 49.227831900000112 ], [ -122.616092209999962, 49.227841109000053 ], [ -122.616896299999965, 49.227848397000109 ], [ -122.617378374999987, 49.227850091000079 ], [ -122.617666798999949, 49.227851109000085 ], [ -122.617955222999967, 49.227852128000116 ], [ -122.618577998999967, 49.227854313000122 ], [ -122.61856319, 49.228471893000098 ], [ -122.618622787999954, 49.228596405000076 ], [ -122.618761699999951, 49.228668290000037 ], [ -122.618954714999987, 49.228695986000083 ], [ -122.619449615999926, 49.228707901000057 ], [ -122.619421701999926, 49.229222393000029 ], [ -122.61936938799991, 49.229318098000142 ], [ -122.618877815999923, 49.229845999000069 ], [ -122.618840187999936, 49.230080004000058 ], [ -122.618851277999966, 49.230304693000015 ], [ -122.619211708999927, 49.23078640100006 ], [ -122.619208200999964, 49.231060196000044 ], [ -122.618713401999983, 49.231056570000071 ], [ -122.618420390999987, 49.231054395000079 ], [ -122.617749798999981, 49.230965796000106 ], [ -122.616730209999986, 49.230956296000066 ], [ -122.615424895999965, 49.230966691000027 ], [ -122.614726891999908, 49.230990796000107 ], [ -122.614231188999895, 49.231103188000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126322750", "BldgCostT": "85645000", "sL_LossRatio": "0.735066679257557", "sL_AssetLoss": "1906140", "sL_BldgLoss": "1401140", "sL_StrLoss": "652740", "sL_NStrLoss": "748400", "sL_ContLoss": "505000", "geom_point": "0101000020E61000008B2648531AA75EC0C60446A8639D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.612764147999926, 49.227794740000036 ], [ -122.614007580999939, 49.227805387000089 ], [ -122.614007520999962, 49.228653333000061 ], [ -122.614123206, 49.229063314000072 ], [ -122.614141891999935, 49.229502810000035 ], [ -122.61415039799999, 49.230177 ], [ -122.614172589999953, 49.230832808000109 ], [ -122.614231188999895, 49.231103188000155 ], [ -122.613468098999959, 49.231266606000041 ], [ -122.61318699499995, 49.231298306000042 ], [ -122.6128049899999, 49.231288487000015 ], [ -122.612788238999926, 49.231288061000079 ], [ -122.610973301999962, 49.231241401000069 ], [ -122.610676274999946, 49.231244153000098 ], [ -122.610662544999983, 49.231244284000063 ], [ -122.610428814999963, 49.231246449000068 ], [ -122.608760885999985, 49.231261893000045 ], [ -122.607528409999958, 49.231270897000066 ], [ -122.607553912999919, 49.230077825000052 ], [ -122.607558509999976, 49.229863504000051 ], [ -122.60765120799999, 49.229121201000119 ], [ -122.607728151999979, 49.228944157000065 ], [ -122.6077369899999, 49.228923811000122 ], [ -122.607914193999974, 49.228753690000083 ], [ -122.608325412999989, 49.228614379000099 ], [ -122.608874709999938, 49.228614501000017 ], [ -122.608875083, 49.227762999000042 ], [ -122.609619037999948, 49.227768453000103 ], [ -122.610017294999949, 49.227771379000039 ], [ -122.610183003999964, 49.227772611000077 ], [ -122.610415610999937, 49.227774602000039 ], [ -122.612764147999926, 49.227794740000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103666500", "BldgCostT": "68580000", "sL_LossRatio": "0.732796009830852", "sL_AssetLoss": "1383400", "sL_BldgLoss": "1013750", "sL_StrLoss": "454990", "sL_NStrLoss": "558760", "sL_ContLoss": "369650", "geom_point": "0101000020E610000001A2E4FE78A75EC0F7272B651D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.621864056999968, 49.24021266700003 ], [ -122.621869022999959, 49.239562263000074 ], [ -122.620494083999972, 49.239557754000096 ], [ -122.620389306999954, 49.24099649200005 ], [ -122.620244496999973, 49.240932603000026 ], [ -122.618708493999975, 49.240531012000162 ], [ -122.618148012999924, 49.240196298000107 ], [ -122.617873382999946, 49.240150692000022 ], [ -122.616953209999934, 49.24022900500006 ], [ -122.616442518999946, 49.240586505000103 ], [ -122.616208996999973, 49.240639186000088 ], [ -122.61500059699992, 49.240492498000066 ], [ -122.613348688999935, 49.240801605000051 ], [ -122.612663197999964, 49.240798688000069 ], [ -122.612127002999941, 49.240688984000045 ], [ -122.611881200999932, 49.240616407000097 ], [ -122.611757486999977, 49.240472596000082 ], [ -122.61109247899995, 49.239556254000021 ], [ -122.614991265999961, 49.239678718000114 ], [ -122.615013662999942, 49.239371664000068 ], [ -122.616512318999924, 49.239418701000012 ], [ -122.616515523999908, 49.239004900000104 ], [ -122.6144549, 49.238998041000038 ], [ -122.614459101999955, 49.238458339000047 ], [ -122.613634861999941, 49.238455585000018 ], [ -122.613643281999941, 49.237376180000055 ], [ -122.614467504999936, 49.237378935000073 ], [ -122.614469057999955, 49.237179111000088 ], [ -122.613161508999923, 49.237138046000084 ], [ -122.61315899600001, 49.237172479000073 ], [ -122.612716793999937, 49.237158588000035 ], [ -122.612685, 49.23759418900007 ], [ -122.61232862199999, 49.237582992000114 ], [ -122.612184189999965, 49.239561496000064 ], [ -122.611070895999944, 49.239526512000097 ], [ -122.610506882999971, 49.238749302000024 ], [ -122.609153487999976, 49.238007294000099 ], [ -122.608213015999979, 49.237203998000034 ], [ -122.606981609999963, 49.236372302000078 ], [ -122.606161404999966, 49.236000509000078 ], [ -122.60572330499997, 49.235790187000127 ], [ -122.60574741799995, 49.235460496 ], [ -122.60560927, 49.235460024000062 ], [ -122.605589810999987, 49.235726098000043 ], [ -122.604066993999979, 49.234994995000072 ], [ -122.603783870999948, 49.234892145000074 ], [ -122.603884238999981, 49.234865933000044 ], [ -122.604443963999984, 49.234689570000086 ], [ -122.604806094999944, 49.234863391000054 ], [ -122.605133106999915, 49.234955598000056 ], [ -122.605526486999949, 49.23502209600008 ], [ -122.605880680999988, 49.235024203000073 ], [ -122.60611390299999, 49.235025427000075 ], [ -122.606182571999966, 49.23502578500009 ], [ -122.609314369999979, 49.235042312000125 ], [ -122.610454459999985, 49.235048290000151 ], [ -122.615029297999982, 49.23507220500003 ], [ -122.615032601999971, 49.232768290000131 ], [ -122.615018385999974, 49.232397499000037 ], [ -122.615060888999935, 49.232097907000082 ], [ -122.615441187000016, 49.23151420900011 ], [ -122.615424895999965, 49.230966691000027 ], [ -122.616730209999986, 49.230956296000066 ], [ -122.617749798999981, 49.230965796000106 ], [ -122.618420390999987, 49.231054395000079 ], [ -122.618713401999983, 49.231056570000071 ], [ -122.619208200999964, 49.231060196000044 ], [ -122.619211708999927, 49.23078640100006 ], [ -122.618851277999966, 49.230304693000015 ], [ -122.618840187999936, 49.230080004000058 ], [ -122.618877815999923, 49.229845999000069 ], [ -122.61936938799991, 49.229318098000142 ], [ -122.619421701999926, 49.229222393000029 ], [ -122.619449615999926, 49.228707901000057 ], [ -122.618954714999987, 49.228695986000083 ], [ -122.618761699999951, 49.228668290000037 ], [ -122.618622787999954, 49.228596405000076 ], [ -122.61856319, 49.228471893000098 ], [ -122.618577998999967, 49.227854313000122 ], [ -122.620692009999985, 49.227863802000108 ], [ -122.622597905999925, 49.22784508700007 ], [ -122.622593103999989, 49.229477685000056 ], [ -122.622602483999984, 49.230272701000025 ], [ -122.622563615999923, 49.231052681000079 ], [ -122.622558194999925, 49.231413662000158 ], [ -122.622550398, 49.231931797000065 ], [ -122.622544714999947, 49.232394053000107 ], [ -122.622510900999984, 49.235136495000091 ], [ -122.622467330999939, 49.23797584700003 ], [ -122.618677302999942, 49.237857059000142 ], [ -122.61870653199999, 49.237455894000085 ], [ -122.617301480999956, 49.237411823000087 ], [ -122.617321392999926, 49.237138630000146 ], [ -122.617282119999985, 49.237137398000051 ], [ -122.617278162999952, 49.237191679000041 ], [ -122.616941761999939, 49.237181124000053 ], [ -122.616933907999936, 49.238196713000072 ], [ -122.617346026999954, 49.238198080000096 ], [ -122.61734394099993, 49.238467930000105 ], [ -122.61775606099999, 49.238469295000108 ], [ -122.617753979, 49.23873914700004 ], [ -122.618166099999925, 49.238740509000131 ], [ -122.618160473999978, 49.239470406000081 ], [ -122.620220672999935, 49.239535000000117 ], [ -122.620226712999937, 49.238747302000043 ], [ -122.622455378999973, 49.238754606000079 ], [ -122.622434964999968, 49.240084734000035 ], [ -122.622427743999936, 49.240552499000067 ], [ -122.622424165999945, 49.240786370000102 ], [ -122.622424035999956, 49.240794834000091 ], [ -122.621453301999978, 49.241116304000066 ], [ -122.62086100399992, 49.241204603000092 ], [ -122.620394964999946, 49.240998989000097 ], [ -122.620411764999943, 49.240768299000131 ], [ -122.620800407, 49.24078047800004 ], [ -122.620844081999977, 49.240180707000093 ], [ -122.621864056999968, 49.24021266700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103435917", "BldgCostT": "70391667", "sL_LossRatio": "0.762675635896928", "sL_AssetLoss": "1252876", "sL_BldgLoss": "955538", "sL_StrLoss": "439808", "sL_NStrLoss": "515730", "sL_ContLoss": "297338", "geom_point": "0101000020E610000016D829771BA85EC039BF9B4DCB9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.622550398, 49.231931797000065 ], [ -122.622558194999925, 49.231413662000158 ], [ -122.622563615999923, 49.231052681000079 ], [ -122.622602483999984, 49.230272701000025 ], [ -122.622593103999989, 49.229477685000056 ], [ -122.62363461699999, 49.229487793000018 ], [ -122.623863779999937, 49.229469795000028 ], [ -122.623878294999926, 49.23019558400005 ], [ -122.625335187999923, 49.230140311000049 ], [ -122.625966713999929, 49.230105092000102 ], [ -122.628146182999956, 49.230102110000054 ], [ -122.628132589999936, 49.23095130300009 ], [ -122.629840717999926, 49.230972288000011 ], [ -122.629825918999927, 49.231327802000074 ], [ -122.629922198000017, 49.232081417000082 ], [ -122.630312388999968, 49.232082838000039 ], [ -122.631750996999955, 49.232088092000069 ], [ -122.631747830999956, 49.232504702000092 ], [ -122.631728099999918, 49.235090603000103 ], [ -122.629767983999926, 49.235093848000062 ], [ -122.625083662999927, 49.235101478000104 ], [ -122.624424307999973, 49.235102525000052 ], [ -122.624259490999989, 49.235102800000028 ], [ -122.623654985999963, 49.235103770000038 ], [ -122.62274938900002, 49.235105196000077 ], [ -122.622510900999984, 49.235136495000091 ], [ -122.622544714999947, 49.232394053000107 ], [ -122.622550398, 49.231931797000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98114334", "BldgCostT": "67193334", "sL_LossRatio": "0.759329159761861", "sL_AssetLoss": "1303440", "sL_BldgLoss": "989740", "sL_StrLoss": "453430", "sL_NStrLoss": "536310", "sL_ContLoss": "313700", "geom_point": "0101000020E61000007E8BFB4D30A85EC0019197985B9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.629825918999927, 49.231327802000074 ], [ -122.629840717999926, 49.230972288000011 ], [ -122.628132589999936, 49.23095130300009 ], [ -122.628146182999956, 49.230102110000054 ], [ -122.625966713999929, 49.230105092000102 ], [ -122.625335187999923, 49.230140311000049 ], [ -122.623878294999926, 49.23019558400005 ], [ -122.623863779999937, 49.229469795000028 ], [ -122.62363461699999, 49.229487793000018 ], [ -122.622593103999989, 49.229477685000056 ], [ -122.622597905999925, 49.22784508700007 ], [ -122.623339534999957, 49.227843715000112 ], [ -122.62605930499997, 49.227838552000065 ], [ -122.627970403999953, 49.227834902000055 ], [ -122.62862290599999, 49.227848986000119 ], [ -122.629600585999981, 49.22784899700013 ], [ -122.63180057299995, 49.227846502000048 ], [ -122.631797942999967, 49.228412008000134 ], [ -122.631796727, 49.228675398000064 ], [ -122.631790467999934, 49.229140673000082 ], [ -122.631773252999963, 49.230426926000078 ], [ -122.631760097999958, 49.231407394 ], [ -122.631756626999945, 49.231668252000141 ], [ -122.631750996999955, 49.232088092000069 ], [ -122.630312388999968, 49.232082838000039 ], [ -122.629922198000017, 49.232081417000082 ], [ -122.629825918999927, 49.231327802000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.758436944937833", "sL_AssetLoss": "16890", "sL_BldgLoss": "12810", "sL_StrLoss": "6020", "sL_NStrLoss": "6790", "sL_ContLoss": "4080", "geom_point": "0101000020E61000004AC4846611A95EC00D24FFFEDA9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.639634578999932, 49.249468206000053 ], [ -122.639737921999966, 49.248041324000106 ], [ -122.640288918999929, 49.248435301000079 ], [ -122.640852484999968, 49.248392603000084 ], [ -122.64121211299998, 49.24816759100009 ], [ -122.641474492999976, 49.248106290000102 ], [ -122.642092695999921, 49.248063610000017 ], [ -122.642353084999968, 49.248126305000078 ], [ -122.64406341199998, 49.249086206000072 ], [ -122.644743181999971, 49.249360736000064 ], [ -122.64358935099996, 49.249383369 ], [ -122.639634578999932, 49.249468206000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101181501", "BldgCostT": "67310001", "sL_LossRatio": "0.728526239513949", "sL_AssetLoss": "1435240", "sL_BldgLoss": "1045610", "sL_StrLoss": "488640", "sL_NStrLoss": "556970", "sL_ContLoss": "389630", "geom_point": "0101000020E6100000AFF2D287CDA65EC0A5BE3D192D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.600591415999986, 49.255523298000128 ], [ -122.600813766999963, 49.249638394000115 ], [ -122.600986873999958, 49.244213384000027 ], [ -122.601016150999939, 49.243296029000085 ], [ -122.601041096999893, 49.242513572000121 ], [ -122.60104394399994, 49.242423647000088 ], [ -122.601047688, 49.242306613000011 ], [ -122.601050103999953, 49.242231094000083 ], [ -122.59999779899999, 49.242221499000081 ], [ -122.597593862999958, 49.242199563000042 ], [ -122.596831796999979, 49.242192600000124 ], [ -122.596453444999938, 49.242190052000076 ], [ -122.596013908999979, 49.242187090000101 ], [ -122.595643006999921, 49.242184594000022 ], [ -122.59523088399996, 49.242181795000114 ], [ -122.593280083999971, 49.24216861900009 ], [ -122.590669784999989, 49.242150920000029 ], [ -122.588677643999972, 49.242137360000058 ], [ -122.588224387999944, 49.242134282000052 ], [ -122.587372661999964, 49.242128473000093 ], [ -122.585421814999961, 49.242115127000069 ], [ -122.585202042000034, 49.242113638000049 ], [ -122.58274568399996, 49.242096794000069 ], [ -122.582710464999963, 49.242102265000028 ], [ -122.582215011999935, 49.242179088000043 ], [ -122.58163579399999, 49.242432796000053 ], [ -122.580748081999928, 49.242978705000048 ], [ -122.580297998999953, 49.243158109000056 ], [ -122.579788506999961, 49.243176208000065 ], [ -122.579774658999938, 49.242869659000043 ], [ -122.579768972999958, 49.242743542000092 ], [ -122.579761650999927, 49.242581492000049 ], [ -122.579736287999978, 49.242020264000075 ], [ -122.579716504999979, 49.241682046000079 ], [ -122.579616529999939, 49.239973734000046 ], [ -122.579596010999921, 49.239638472000102 ], [ -122.579589968999983, 49.239539713000042 ], [ -122.579575819999931, 49.239308932000071 ], [ -122.580926387999938, 49.239194995000062 ], [ -122.583726501999962, 49.239421490000026 ], [ -122.585239018999957, 49.239254906000099 ], [ -122.585708512999943, 49.239103899000042 ], [ -122.587006291999927, 49.238353307000125 ], [ -122.587309012999953, 49.238102704000035 ], [ -122.587728381999966, 49.237456100000074 ], [ -122.588072006999937, 49.237214005000062 ], [ -122.589951340999932, 49.237153577000129 ], [ -122.590065896999988, 49.23714989300003 ], [ -122.590786660999953, 49.236751811000012 ], [ -122.590811100999971, 49.236738309000017 ], [ -122.590936395999961, 49.236697543000105 ], [ -122.592313412, 49.236249520000051 ], [ -122.592890310999934, 49.236061807000056 ], [ -122.593757011999926, 49.235947804 ], [ -122.593883542999933, 49.235949435000073 ], [ -122.594150803999952, 49.235952876000049 ], [ -122.594242331999951, 49.235954052000082 ], [ -122.594377825, 49.235955797000088 ], [ -122.594759388999947, 49.235960712000107 ], [ -122.596655619999964, 49.235940700000086 ], [ -122.596822085999918, 49.235796897000078 ], [ -122.596809391999969, 49.235563299000084 ], [ -122.596474563999962, 49.235332602000042 ], [ -122.596468320999932, 49.235328300000056 ], [ -122.596465457999969, 49.235280386000049 ], [ -122.59645821, 49.235159296000042 ], [ -122.596432309999955, 49.234725899000146 ], [ -122.596750189999952, 49.234475201000052 ], [ -122.596998121999917, 49.234449146000088 ], [ -122.598578502999928, 49.234283011000095 ], [ -122.599123642, 49.234370451000125 ], [ -122.599155091999961, 49.234375498000048 ], [ -122.59996736799998, 49.234412913 ], [ -122.601122264999944, 49.234466106000127 ], [ -122.602093014999966, 49.234510797000027 ], [ -122.603399090000011, 49.234992593000079 ], [ -122.603668284999927, 49.235091894000021 ], [ -122.604865454999981, 49.235733014000068 ], [ -122.605173298999958, 49.23589787 ], [ -122.605160119999965, 49.236077986000097 ], [ -122.605531467999938, 49.236089678000056 ], [ -122.605596497999898, 49.236124501000056 ], [ -122.606748085000021, 49.236560289000067 ], [ -122.608713102999957, 49.238014395000057 ], [ -122.608972679999951, 49.238303496000071 ], [ -122.609821289999928, 49.238603994000115 ], [ -122.610599977999968, 49.239298996000088 ], [ -122.610707680999965, 49.239515096000048 ], [ -122.609917538999966, 49.239490257000085 ], [ -122.609914781999976, 49.239840211000029 ], [ -122.610843532999937, 49.239869407000043 ], [ -122.610853100999989, 49.239738395000103 ], [ -122.611727598999934, 49.240723185000014 ], [ -122.611825206999981, 49.240814400000119 ], [ -122.612209177999929, 49.240896995000107 ], [ -122.613414399999954, 49.241161907000112 ], [ -122.614608790999966, 49.241291508000138 ], [ -122.615818583999925, 49.241169 ], [ -122.617169494999956, 49.240660607000095 ], [ -122.617774603, 49.240617793000077 ], [ -122.618379019999949, 49.240735470000097 ], [ -122.619420991999945, 49.240938291000063 ], [ -122.620502502, 49.241382601000119 ], [ -122.621394106999986, 49.241485208 ], [ -122.621890405, 49.241332788000044 ], [ -122.62242052299996, 49.241023143000128 ], [ -122.62244149299994, 49.241010905000103 ], [ -122.622938788999988, 49.240887003000061 ], [ -122.624597481999928, 49.241126292000018 ], [ -122.625574413999985, 49.241183199000034 ], [ -122.626508495999957, 49.241114894000098 ], [ -122.626667613, 49.241077223000048 ], [ -122.626408052999977, 49.244647537000027 ], [ -122.625782495999914, 49.244627966000067 ], [ -122.625651821999909, 49.246424850000039 ], [ -122.62407363399997, 49.246375460000102 ], [ -122.623952093999961, 49.248045842000117 ], [ -122.627304897000016, 49.248150743000046 ], [ -122.627189789999974, 49.249734178000054 ], [ -122.626405855999977, 49.249750890000058 ], [ -122.62226068599999, 49.249839117000079 ], [ -122.622267274999928, 49.250107463000099 ], [ -122.622303514999928, 49.251598368000067 ], [ -122.621560560999967, 49.25157509900005 ], [ -122.621608711999968, 49.250913885000067 ], [ -122.620626355999903, 49.25088310900005 ], [ -122.620602386999934, 49.251212159000033 ], [ -122.618598169, 49.251149344000105 ], [ -122.618570322999986, 49.251531407000115 ], [ -122.613087462999928, 49.251359375000042 ], [ -122.613173753999931, 49.250177335000032 ], [ -122.613159237999966, 49.250176879000037 ], [ -122.613278660999939, 49.248540909000084 ], [ -122.613226941999955, 49.248539285000064 ], [ -122.613470570999979, 49.245201486000084 ], [ -122.612345700999938, 49.245197717000039 ], [ -122.612346456999987, 49.24510116900008 ], [ -122.60720814299999, 49.244939635000073 ], [ -122.607229998999983, 49.244640722000078 ], [ -122.606991701999931, 49.244639912000089 ], [ -122.606987417999918, 49.245179614000065 ], [ -122.606267524999936, 49.24517716200009 ], [ -122.606199314999969, 49.246109721000074 ], [ -122.60444612699996, 49.246054535000077 ], [ -122.604379662999946, 49.246962719000088 ], [ -122.604415565999943, 49.24696385000005 ], [ -122.604390178999921, 49.247310748000118 ], [ -122.604990742999988, 49.247329656000012 ], [ -122.604994125999951, 49.247283445000051 ], [ -122.606926861999952, 49.247344270000035 ], [ -122.606948557999942, 49.247047591000054 ], [ -122.61243088699996, 49.247219937000096 ], [ -122.612168320999956, 49.25081586300012 ], [ -122.610235432999971, 49.25075513200003 ], [ -122.61021375699994, 49.251051811000103 ], [ -122.608716273, 49.251004736000034 ], [ -122.608712894999954, 49.251050947000124 ], [ -122.603899314999978, 49.250899487000012 ], [ -122.603877406999985, 49.251198764000115 ], [ -122.603106621999956, 49.251174490000061 ], [ -122.603082092999912, 49.251509482000053 ], [ -122.603027704999931, 49.251507769000106 ], [ -122.603023745999963, 49.251561827000103 ], [ -122.604180961999987, 49.251598268000109 ], [ -122.603917732999918, 49.255194151000111 ], [ -122.602699806999951, 49.25515579800004 ], [ -122.602606849999987, 49.256425079000081 ], [ -122.600560426999905, 49.256360607000055 ], [ -122.600591415999986, 49.255523298000128 ] ], [ [ -122.586837184000018, 49.239557263000059 ], [ -122.586837867999961, 49.239475405000022 ], [ -122.585886755999965, 49.239445293000131 ], [ -122.585880745999987, 49.239526984000094 ], [ -122.586837184000018, 49.239557263000059 ] ], [ [ -122.606831900999964, 49.237623059000086 ], [ -122.606878658999918, 49.236983537000079 ], [ -122.605768112999939, 49.236948582000153 ], [ -122.605758523999967, 49.23707968300004 ], [ -122.606227438999952, 49.23708128300008 ], [ -122.60622314799997, 49.237620985000035 ], [ -122.606831900999964, 49.237623059000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77522478", "BldgCostT": "52579857", "sL_LossRatio": "0.747906197654941", "sL_AssetLoss": "979080", "sL_BldgLoss": "732260", "sL_StrLoss": "316840", "sL_NStrLoss": "415420", "sL_ContLoss": "246820", "geom_point": "0101000020E6100000922673669AA45EC0CA8C4CFA5A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.567121876, 49.237426195000062 ], [ -122.565352798, 49.236987489000107 ], [ -122.564212907999945, 49.237045893000072 ], [ -122.562865109999933, 49.237319392000082 ], [ -122.562231713999921, 49.2372908930001 ], [ -122.561850301999954, 49.23709150400002 ], [ -122.560976510000017, 49.236313909000039 ], [ -122.560560692999928, 49.235251402000088 ], [ -122.560124393999928, 49.234854090000098 ], [ -122.560068774999976, 49.234830028000047 ], [ -122.561453799999981, 49.234749103000091 ], [ -122.561562696999886, 49.234799499000125 ], [ -122.562132211999966, 49.234823894000108 ], [ -122.5636719929999, 49.234752221000107 ], [ -122.56493538799999, 49.234693403000051 ], [ -122.565812954999927, 49.234672286000034 ], [ -122.567078994999946, 49.234641794000062 ], [ -122.568107426999958, 49.234617283000063 ], [ -122.568324101999949, 49.234612108000071 ], [ -122.569751217999936, 49.23462869500004 ], [ -122.570975692999966, 49.2346559020001 ], [ -122.573850050999937, 49.234737987000081 ], [ -122.574426526999972, 49.234754436000102 ], [ -122.575675984999961, 49.234790080000025 ], [ -122.57680209899999, 49.234822209000107 ], [ -122.579338507999935, 49.234894491000041 ], [ -122.579387082999986, 49.235707840000011 ], [ -122.579426825999931, 49.236372700000103 ], [ -122.579446101999963, 49.236695610000062 ], [ -122.579463654000023, 49.237002909000061 ], [ -122.579470099999966, 49.237115406999983 ], [ -122.579485194999947, 49.237880013000087 ], [ -122.579527393999939, 49.238518370000122 ], [ -122.579547982999912, 49.238854216000071 ], [ -122.579560404999981, 49.23905730000007 ], [ -122.579168997999943, 49.239081107000075 ], [ -122.578383706999901, 49.23927619500008 ], [ -122.57811861299993, 49.239796095000095 ], [ -122.577328785999924, 49.240693293000113 ], [ -122.577009190999931, 49.240935406000119 ], [ -122.576596921999965, 49.241130500000068 ], [ -122.575673902999981, 49.24123590100006 ], [ -122.573339709999928, 49.241164688000019 ], [ -122.572174617999949, 49.240962502000109 ], [ -122.571832811999968, 49.240717507000049 ], [ -122.57137548499999, 49.239627999000078 ], [ -122.570504497999977, 49.238571205000042 ], [ -122.569958119999953, 49.23822800600005 ], [ -122.568835093999908, 49.237792197000054 ], [ -122.567668976999968, 49.237625593000068 ], [ -122.567121876, 49.237426195000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12154584", "BldgCostT": "6908334", "sL_LossRatio": "0.689378563834928", "sL_AssetLoss": "103470", "sL_BldgLoss": "71330", "sL_StrLoss": "34340", "sL_NStrLoss": "36990", "sL_ContLoss": "32140", "geom_point": "0101000020E6100000B32FA888B6A35EC04F667220DA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556886161999955, 49.231663518000104 ], [ -122.55681210299997, 49.231283038000079 ], [ -122.557203292999944, 49.23129781300009 ], [ -122.557968682999956, 49.23170660300007 ], [ -122.558680616999979, 49.231907403000086 ], [ -122.55883090599994, 49.232042698000058 ], [ -122.558856032999969, 49.232284354000086 ], [ -122.55895720599996, 49.233257496000071 ], [ -122.558892001999965, 49.234426787000103 ], [ -122.559665030999952, 49.234907924000034 ], [ -122.55737201399991, 49.234879288000116 ], [ -122.557253503999945, 49.233551810000044 ], [ -122.556886161999955, 49.231663518000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129128667", "BldgCostT": "82136667", "sL_LossRatio": "0.701039918949567", "sL_AssetLoss": "1489443", "sL_BldgLoss": "1044159", "sL_StrLoss": "505069", "sL_NStrLoss": "539090", "sL_ContLoss": "445284", "geom_point": "0101000020E61000009208BF9A64A45EC0FC8568BE949D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.560068774999976, 49.234830028000047 ], [ -122.559495212999934, 49.234581988000144 ], [ -122.559180882999968, 49.23431999700005 ], [ -122.559164400999975, 49.233257508000094 ], [ -122.559391923999925, 49.232413005000062 ], [ -122.559352914000016, 49.231981389000104 ], [ -122.559082186999916, 49.231700907000118 ], [ -122.558329109999931, 49.23138328300012 ], [ -122.55699949199996, 49.231037190000123 ], [ -122.556720565999953, 49.231019519000093 ], [ -122.556704566999954, 49.230954239000027 ], [ -122.55684116299993, 49.230305128000019 ], [ -122.557346815999978, 49.229609790000097 ], [ -122.557313270999899, 49.227567348 ], [ -122.561405005999944, 49.227660392000125 ], [ -122.562785616999975, 49.227653099000079 ], [ -122.562766278999945, 49.22773674600009 ], [ -122.56640260599994, 49.227613267000024 ], [ -122.568383207999929, 49.227627809000111 ], [ -122.570036745999914, 49.227629362000052 ], [ -122.575211612999937, 49.227634099000085 ], [ -122.5755856, 49.227630719000032 ], [ -122.576382327999923, 49.227623505000061 ], [ -122.577668801, 49.227644602000069 ], [ -122.578802514999921, 49.227670604000068 ], [ -122.579171619999968, 49.227619300000036 ], [ -122.579243514999987, 49.229793200000081 ], [ -122.57925157399994, 49.23007628700001 ], [ -122.579269505999932, 49.230706812000051 ], [ -122.579279109999931, 49.231291045000056 ], [ -122.579290102999977, 49.231956705000115 ], [ -122.579294979999986, 49.232253485000037 ], [ -122.579308929999954, 49.233099005000085 ], [ -122.579317969, 49.2336477590001 ], [ -122.579323289999977, 49.233971679000035 ], [ -122.579338507999935, 49.234894491000041 ], [ -122.57680209899999, 49.234822209000107 ], [ -122.575675984999961, 49.234790080000025 ], [ -122.574426526999972, 49.234754436000102 ], [ -122.573850050999937, 49.234737987000081 ], [ -122.570975692999966, 49.2346559020001 ], [ -122.569751217999936, 49.23462869500004 ], [ -122.568324101999949, 49.234612108000071 ], [ -122.568107426999958, 49.234617283000063 ], [ -122.567078994999946, 49.234641794000062 ], [ -122.565812954999927, 49.234672286000034 ], [ -122.56493538799999, 49.234693403000051 ], [ -122.5636719929999, 49.234752221000107 ], [ -122.562132211999966, 49.234823894000108 ], [ -122.561562696999886, 49.234799499000125 ], [ -122.561453799999981, 49.234749103000091 ], [ -122.560068774999976, 49.234830028000047 ] ], [ [ -122.575414139999964, 49.232519418000038 ], [ -122.575459867999896, 49.231899672000097 ], [ -122.573196899999985, 49.231827763000084 ], [ -122.573336752999978, 49.229933480000064 ], [ -122.572845806999965, 49.229917874000058 ], [ -122.572767968999955, 49.230972056000084 ], [ -122.572915537999918, 49.230976747000071 ], [ -122.572830666999977, 49.232126150000077 ], [ -122.572881010999964, 49.232127751000107 ], [ -122.572877117999965, 49.232180477000099 ], [ -122.575180933999917, 49.232253689000039 ], [ -122.575161916999903, 49.232511405000068 ], [ -122.575414139999964, 49.232519418000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176707310", "BldgCostT": "116258189", "sL_LossRatio": "0.721062466347209", "sL_AssetLoss": "2068922", "sL_BldgLoss": "1491822", "sL_StrLoss": "696392", "sL_NStrLoss": "795430", "sL_ContLoss": "577100", "geom_point": "0101000020E6100000F791A52009A45EC0A4A77623FF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.557043629999967, 49.218514892000094 ], [ -122.556963010999951, 49.21669535500012 ], [ -122.558969694999973, 49.216701801000106 ], [ -122.56124810399993, 49.21670961000008 ], [ -122.563923426999978, 49.216733676000068 ], [ -122.564857235999938, 49.216742803000074 ], [ -122.564873094999953, 49.216742962000104 ], [ -122.565296921999945, 49.216747099000024 ], [ -122.566042981999956, 49.216754387000037 ], [ -122.566032340999982, 49.217137405000095 ], [ -122.566019805999971, 49.217587199000029 ], [ -122.566035001, 49.218459005000092 ], [ -122.566229977999967, 49.218459108000047 ], [ -122.567177462999908, 49.21845961300005 ], [ -122.568106638999978, 49.218460154000148 ], [ -122.570781525, 49.218467442000041 ], [ -122.570824121999962, 49.218467565000033 ], [ -122.570959269999946, 49.218467935000064 ], [ -122.570942078999934, 49.219001298000059 ], [ -122.570879803999944, 49.219446793000046 ], [ -122.570827875, 49.220372396000116 ], [ -122.568178786999923, 49.220362888000082 ], [ -122.567284498999925, 49.220359590000015 ], [ -122.566048622, 49.220355004000069 ], [ -122.565266120999965, 49.220352102000042 ], [ -122.564016543999969, 49.22035463000001 ], [ -122.561232018999988, 49.220355942000054 ], [ -122.560445674999954, 49.220354234000126 ], [ -122.559518328999943, 49.22035219300006 ], [ -122.559408408999957, 49.220351944000065 ], [ -122.558504348999975, 49.220349974000086 ], [ -122.557124742999946, 49.220346465 ], [ -122.557081057999952, 49.219360492000135 ], [ -122.557043629999967, 49.218514892000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132744970", "BldgCostT": "86370413", "sL_LossRatio": "0.724352180594563", "sL_AssetLoss": "1509680", "sL_BldgLoss": "1093540", "sL_StrLoss": "532320", "sL_NStrLoss": "561220", "sL_ContLoss": "416140", "geom_point": "0101000020E6100000A23747E3F1A45EC0E2665D48AC9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.577092704999984, 49.219443396000017 ], [ -122.577144403999952, 49.216730003000059 ], [ -122.57535160299993, 49.21671000200007 ], [ -122.573976180999949, 49.216708270000012 ], [ -122.573464057999971, 49.216707635000049 ], [ -122.573464839999971, 49.216380173000104 ], [ -122.573465101999957, 49.216270613000049 ], [ -122.573465576, 49.216073312000056 ], [ -122.573386137999961, 49.215903185000059 ], [ -122.573618034999953, 49.215774475000117 ], [ -122.573947522999944, 49.215588507000071 ], [ -122.574433193999951, 49.215146195000059 ], [ -122.57511079899993, 49.214260295000066 ], [ -122.575366612999957, 49.213955744000096 ], [ -122.576111801999971, 49.213065690000043 ], [ -122.577871809, 49.213063937000072 ], [ -122.579254038999949, 49.213065470000096 ], [ -122.579257817999959, 49.2140947030001 ], [ -122.579278285999962, 49.214935141000112 ], [ -122.579270247999929, 49.215675169000114 ], [ -122.579267231999921, 49.215951330000067 ], [ -122.579264286999944, 49.216223868000043 ], [ -122.579258784999922, 49.216727732000038 ], [ -122.579247810999959, 49.219075677000014 ], [ -122.579239379999976, 49.220363962000157 ], [ -122.576939, 49.220372904000065 ], [ -122.576893597999941, 49.220225513000059 ], [ -122.576890119999945, 49.219807301000039 ], [ -122.577092704999984, 49.219443396000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89638417", "BldgCostT": "60666667", "sL_LossRatio": "0.74754863296331", "sL_AssetLoss": "1204430", "sL_BldgLoss": "900370", "sL_StrLoss": "399600", "sL_NStrLoss": "500770", "sL_ContLoss": "304060", "geom_point": "0101000020E61000002A365111C8A45EC066762F5AF49B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.573948183999946, 49.219728194000091 ], [ -122.573892083999908, 49.219335404000091 ], [ -122.57172550599995, 49.219336795000054 ], [ -122.571748304999957, 49.218469697000053 ], [ -122.571725815999969, 49.218216706000135 ], [ -122.571737159999927, 49.218149962000048 ], [ -122.571762103999973, 49.218003394000085 ], [ -122.571894895999961, 49.217636303000113 ], [ -122.572055300999949, 49.217435998000049 ], [ -122.572291402999952, 49.21719388500005 ], [ -122.57273990099999, 49.216883810000034 ], [ -122.573015702999939, 49.216774515000054 ], [ -122.573075067000019, 49.216765629000065 ], [ -122.573464057999971, 49.216707635000049 ], [ -122.573976180999949, 49.216708270000012 ], [ -122.57535160299993, 49.21671000200007 ], [ -122.577144403999952, 49.216730003000059 ], [ -122.577092704999984, 49.219443396000017 ], [ -122.576890119999945, 49.219807301000039 ], [ -122.576893597999941, 49.220225513000059 ], [ -122.576939, 49.220372904000065 ], [ -122.575634311, 49.220377492000033 ], [ -122.57528001099999, 49.220378809000096 ], [ -122.574153806999945, 49.220383612000056 ], [ -122.574162195999975, 49.220084711000013 ], [ -122.574122303999914, 49.219973490000086 ], [ -122.573948183999946, 49.219728194000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171217750", "BldgCostT": "109975000", "sL_LossRatio": "0.730131686873345", "sL_AssetLoss": "1960408", "sL_BldgLoss": "1431356", "sL_StrLoss": "685806", "sL_NStrLoss": "745550", "sL_ContLoss": "529052", "geom_point": "0101000020E6100000E22032F6EFA45EC0EB96C228AD9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.576405549999905, 49.226801056000113 ], [ -122.576412123999944, 49.226568406000055 ], [ -122.575587996999943, 49.226571099000068 ], [ -122.575363490999962, 49.226505311000103 ], [ -122.574883906999929, 49.226268394000087 ], [ -122.574557297999917, 49.226117498000065 ], [ -122.574455594, 49.226040150000117 ], [ -122.574329807999973, 49.225944506000111 ], [ -122.574199591999928, 49.22571771200014 ], [ -122.574104204999955, 49.225429088000105 ], [ -122.574025204999955, 49.225195891000041 ], [ -122.57402307699999, 49.224732189000107 ], [ -122.57402158599993, 49.224408197000116 ], [ -122.574119703999884, 49.224008177000023 ], [ -122.574143304999907, 49.223911996 ], [ -122.574679780999972, 49.223966102000063 ], [ -122.574794818999933, 49.223977702000113 ], [ -122.575553295999953, 49.223970306000119 ], [ -122.57555505699996, 49.223892365000019 ], [ -122.575634311, 49.220377492000033 ], [ -122.576939, 49.220372904000065 ], [ -122.579239379999976, 49.220363962000157 ], [ -122.579251205, 49.221422772000096 ], [ -122.579252394999983, 49.221528588000041 ], [ -122.579250369999926, 49.221657138000118 ], [ -122.57923490599994, 49.222642700000037 ], [ -122.579215755999897, 49.223744002000096 ], [ -122.579211591999965, 49.223982796000072 ], [ -122.579209937999906, 49.224112642000094 ], [ -122.579196434999943, 49.225184895000076 ], [ -122.579192903999967, 49.225466294000107 ], [ -122.579171619999968, 49.227619300000036 ], [ -122.578802514999921, 49.227670604000068 ], [ -122.577668801, 49.227644602000069 ], [ -122.576382327999923, 49.227623505000061 ], [ -122.576405549999905, 49.226801056000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199863144", "BldgCostT": "124481523", "sL_LossRatio": "0.695913822928962", "sL_AssetLoss": "2278193", "sL_BldgLoss": "1585426", "sL_StrLoss": "755966", "sL_NStrLoss": "829460", "sL_ContLoss": "692767", "geom_point": "0101000020E6100000A6E9A3215DA55EC0BECF33EEB49A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.57924348899995, 49.212295575000034 ], [ -122.579223004999946, 49.211027069000131 ], [ -122.579175039999953, 49.209721621000035 ], [ -122.579233475999928, 49.209395339000032 ], [ -122.579272953999947, 49.209175055000038 ], [ -122.579272451999955, 49.209163962000055 ], [ -122.579234637999946, 49.208353802000033 ], [ -122.579245206999943, 49.208101818000081 ], [ -122.57929224499992, 49.206982288000084 ], [ -122.57930384, 49.206706063000055 ], [ -122.579184139999967, 49.206467969000109 ], [ -122.579107350999976, 49.206317729000027 ], [ -122.579042801999933, 49.205740783000117 ], [ -122.57936427599999, 49.205288705000051 ], [ -122.579465275999937, 49.205035126000091 ], [ -122.579461386999981, 49.204998317000076 ], [ -122.579428888999956, 49.204691516000068 ], [ -122.57936606899996, 49.204458506 ], [ -122.57924777799991, 49.204019831000068 ], [ -122.579236527999981, 49.203949177000027 ], [ -122.579423347999949, 49.203462213000144 ], [ -122.579882831999925, 49.203373141000029 ], [ -122.580026062999977, 49.20361594900001 ], [ -122.580055813999948, 49.203666314000046 ], [ -122.58017085699997, 49.203540546000106 ], [ -122.580427675999971, 49.203259913000124 ], [ -122.580458483999948, 49.203253567000054 ], [ -122.580687584999907, 49.203254521000076 ], [ -122.580923256999952, 49.20331606600012 ], [ -122.582552646999929, 49.204207606000125 ], [ -122.58291279599996, 49.20429292300004 ], [ -122.583036031999924, 49.204296830000075 ], [ -122.586062666999965, 49.205189373000131 ], [ -122.58692976499999, 49.205492596000099 ], [ -122.587760375999963, 49.205844209000048 ], [ -122.588456207999911, 49.206138401000068 ], [ -122.588958467999959, 49.206350722000131 ], [ -122.590193884999977, 49.206871929 ], [ -122.589882924999955, 49.207270126000061 ], [ -122.589855983999954, 49.207304612000058 ], [ -122.589580131999938, 49.208008795000062 ], [ -122.589449575999978, 49.208341977000032 ], [ -122.589385842999903, 49.208504714000128 ], [ -122.589337824000026, 49.208627241000059 ], [ -122.589315495999941, 49.208684210000058 ], [ -122.589309260999983, 49.208731556000046 ], [ -122.589299901999979, 49.20880268100008 ], [ -122.589355696999988, 49.209277499000045 ], [ -122.589319871, 49.209558417000054 ], [ -122.589252542999972, 49.209661972000077 ], [ -122.589097079999988, 49.209900995000048 ], [ -122.589032249999917, 49.210353999000105 ], [ -122.588986806999969, 49.210879717000068 ], [ -122.588941976999962, 49.211358598000125 ], [ -122.588824898999945, 49.211718882000071 ], [ -122.588752405999983, 49.212070756000109 ], [ -122.587938338999933, 49.212034167000091 ], [ -122.587670108999959, 49.212022994000066 ], [ -122.58762161199995, 49.212029785000034 ], [ -122.58752862599998, 49.212042832000066 ], [ -122.58708422, 49.212112567000105 ], [ -122.586764599999924, 49.21222138700012 ], [ -122.586376657999921, 49.212401028000059 ], [ -122.586286732999923, 49.212447744000073 ], [ -122.585324136999986, 49.212936743000107 ], [ -122.585231514999947, 49.212983802000075 ], [ -122.584663303, 49.213112688000109 ], [ -122.584231038999988, 49.213110618000059 ], [ -122.584222767999975, 49.213110584000134 ], [ -122.583467640999956, 49.213106978000035 ], [ -122.583023472999983, 49.213104868000102 ], [ -122.58252022899994, 49.21309965100005 ], [ -122.581161004999927, 49.213085443000111 ], [ -122.580749160999972, 49.213081133000095 ], [ -122.580161751999981, 49.213074997000092 ], [ -122.580158854999965, 49.213074975000076 ], [ -122.579254038999949, 49.213065470000096 ], [ -122.57924348899995, 49.212295575000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68479833", "BldgCostT": "44313333", "sL_LossRatio": "0.702316071815976", "sL_AssetLoss": "912666", "sL_BldgLoss": "640980", "sL_StrLoss": "288160", "sL_NStrLoss": "352820", "sL_ContLoss": "271686", "geom_point": "0101000020E610000040DB6AD6D9A55EC0541087959F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.589355696999988, 49.209277499000045 ], [ -122.589299901999979, 49.20880268100008 ], [ -122.589309260999983, 49.208731556000046 ], [ -122.589315495999941, 49.208684210000058 ], [ -122.589337824000026, 49.208627241000059 ], [ -122.589385842999903, 49.208504714000128 ], [ -122.589449575999978, 49.208341977000032 ], [ -122.589580131999938, 49.208008795000062 ], [ -122.589855983999954, 49.207304612000058 ], [ -122.589882924999955, 49.207270126000061 ], [ -122.590193884999977, 49.206871929 ], [ -122.588958467999959, 49.206350722000131 ], [ -122.588456207999911, 49.206138401000068 ], [ -122.587760375999963, 49.205844209000048 ], [ -122.58692976499999, 49.205492596000099 ], [ -122.586062666999965, 49.205189373000131 ], [ -122.583036031999924, 49.204296830000075 ], [ -122.58291279599996, 49.20429292300004 ], [ -122.582552646999929, 49.204207606000125 ], [ -122.580923256999952, 49.20331606600012 ], [ -122.580687584999907, 49.203254521000076 ], [ -122.580458483999948, 49.203253567000054 ], [ -122.580427675999971, 49.203259913000124 ], [ -122.580512446999961, 49.203167244000035 ], [ -122.580524282999974, 49.20315429500004 ], [ -122.5806826419999, 49.203142306000061 ], [ -122.581275187999921, 49.203097391000078 ], [ -122.581312547999957, 49.203079244000016 ], [ -122.580571117000019, 49.202664877000117 ], [ -122.580822386999941, 49.202691102000109 ], [ -122.582433002999963, 49.202391986000123 ], [ -122.582639809999989, 49.202194102000057 ], [ -122.58267369499994, 49.202154416000027 ], [ -122.582644722999959, 49.202548180000065 ], [ -122.584366063999951, 49.202602768000105 ], [ -122.584257311999949, 49.204081490000078 ], [ -122.585485410999951, 49.204085902000038 ], [ -122.585483156999956, 49.204355755000087 ], [ -122.585894990999961, 49.204357233000032 ], [ -122.585892737999956, 49.204627084000052 ], [ -122.586304573999925, 49.204628560000067 ], [ -122.586302323999973, 49.204898411000066 ], [ -122.5883615199999, 49.204905769000092 ], [ -122.588358808999942, 49.205232522000117 ], [ -122.592136246999971, 49.205352069000064 ], [ -122.592131837999915, 49.205412159000019 ], [ -122.592814526999959, 49.205433750000118 ], [ -122.592779280999977, 49.205914174000064 ], [ -122.592946053, 49.20591944800001 ], [ -122.592872620999984, 49.206920369000031 ], [ -122.595127303999959, 49.206991643000102 ], [ -122.59656691, 49.208127296000029 ], [ -122.59652469299999, 49.208271213000074 ], [ -122.596839290999966, 49.208281192000072 ], [ -122.597045114999958, 49.208380793000067 ], [ -122.597958208999927, 49.209138495000055 ], [ -122.598410784999928, 49.209312303000019 ], [ -122.599900109999908, 49.210162495000091 ], [ -122.600760781999966, 49.210515701000055 ], [ -122.602526466999947, 49.211042042000052 ], [ -122.60213413699995, 49.211615338000087 ], [ -122.601972502, 49.211576709000113 ], [ -122.601715689999963, 49.211515310000095 ], [ -122.601536600999978, 49.211524115000074 ], [ -122.600525385999944, 49.211181304000057 ], [ -122.60001876799997, 49.210973430000088 ], [ -122.599383276999959, 49.210712699000076 ], [ -122.598563959999979, 49.210373867000044 ], [ -122.597378207999952, 49.209883498000082 ], [ -122.596151685999956, 49.209406585000046 ], [ -122.595827890999928, 49.209280690000085 ], [ -122.595385613999923, 49.209108703 ], [ -122.595115299999947, 49.209426302000104 ], [ -122.594907595, 49.209731495000064 ], [ -122.59465502099999, 49.210275004000046 ], [ -122.594573786999931, 49.210632892000028 ], [ -122.593770862999975, 49.210774136000119 ], [ -122.593757503999882, 49.210776491000054 ], [ -122.593201992999951, 49.210995004000054 ], [ -122.592069092999978, 49.211665936000031 ], [ -122.591888983, 49.21177259500007 ], [ -122.591498697999953, 49.211908997000144 ], [ -122.591041430999951, 49.211990024000073 ], [ -122.590642331999959, 49.212060729000058 ], [ -122.590527914999939, 49.212080998000033 ], [ -122.590381887999911, 49.212080161000138 ], [ -122.590367561999955, 49.212080091000047 ], [ -122.588752405999983, 49.212070756000109 ], [ -122.588824898999945, 49.211718882000071 ], [ -122.588941976999962, 49.211358598000125 ], [ -122.588986806999969, 49.210879717000068 ], [ -122.589032249999917, 49.210353999000105 ], [ -122.589097079999988, 49.209900995000048 ], [ -122.589252542999972, 49.209661972000077 ], [ -122.589319871, 49.209558417000054 ], [ -122.589355696999988, 49.209277499000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170501864", "BldgCostT": "114141936", "sL_LossRatio": "0.835331953401646", "sL_AssetLoss": "1169140", "sL_BldgLoss": "976620", "sL_StrLoss": "456630", "sL_NStrLoss": "519990", "sL_ContLoss": "192520", "geom_point": "0101000020E61000002FD369BC38A65EC0B5BABD20F99A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.594573786999931, 49.210632892000028 ], [ -122.59465502099999, 49.210275004000046 ], [ -122.594907595, 49.209731495000064 ], [ -122.595115299999947, 49.209426302000104 ], [ -122.595385613999923, 49.209108703 ], [ -122.595827890999928, 49.209280690000085 ], [ -122.596151685999956, 49.209406585000046 ], [ -122.597378207999952, 49.209883498000082 ], [ -122.598563959999979, 49.210373867000044 ], [ -122.599383276999959, 49.210712699000076 ], [ -122.599076302, 49.211099506000025 ], [ -122.599003322999963, 49.21130899300006 ], [ -122.599001174999898, 49.21146376299999 ], [ -122.59898430899996, 49.212693395000016 ], [ -122.598360981, 49.212581802000031 ], [ -122.597925386, 49.212344508000044 ], [ -122.597877946999958, 49.212282447000064 ], [ -122.597708679999968, 49.212061103000046 ], [ -122.597526858999956, 49.211701051000034 ], [ -122.597358605, 49.211367896000077 ], [ -122.59709351199993, 49.21108919300007 ], [ -122.59689916499994, 49.210971010000016 ], [ -122.596648091999896, 49.210818289000052 ], [ -122.596346691999941, 49.210697906000043 ], [ -122.595955591999925, 49.210601816000093 ], [ -122.595588611, 49.210552283000069 ], [ -122.595272692999984, 49.210555899000092 ], [ -122.594573786999931, 49.210632892000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269467547", "BldgCostT": "162021198", "sL_LossRatio": "0.629045759205791", "sL_AssetLoss": "4025944", "sL_BldgLoss": "2532503", "sL_StrLoss": "987883", "sL_NStrLoss": "1544620", "sL_ContLoss": "1493441", "geom_point": "0101000020E6100000FAF8AC2167A45EC0E44B56E28D984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.580319294999981, 49.20231230800011 ], [ -122.57964079, 49.201373708000048 ], [ -122.579408421999943, 49.201301100000116 ], [ -122.57884665, 49.201408973000106 ], [ -122.578810201999914, 49.201345637000095 ], [ -122.578643958999976, 49.201056659000066 ], [ -122.578287960999916, 49.201111750000123 ], [ -122.577136337999946, 49.201289945000049 ], [ -122.577065522999959, 49.201304256000107 ], [ -122.575802847999952, 49.201559767000084 ], [ -122.575238805999916, 49.201673878000115 ], [ -122.575054841999943, 49.201704960000086 ], [ -122.574345190999949, 49.201824778000081 ], [ -122.573919108999959, 49.201833789000098 ], [ -122.573571981000015, 49.201757913000066 ], [ -122.573238951999954, 49.201572113000061 ], [ -122.573011790999956, 49.201445397000086 ], [ -122.571715001999934, 49.200605684000131 ], [ -122.571232106999915, 49.200348451000089 ], [ -122.5706679, 49.200047911000084 ], [ -122.57058963799993, 49.200011422000024 ], [ -122.568187102999943, 49.198891195000058 ], [ -122.567332574999909, 49.198531400000057 ], [ -122.567161907999974, 49.198464698000102 ], [ -122.566703207999979, 49.198171609000106 ], [ -122.565998610999941, 49.197419187000015 ], [ -122.5655584, 49.197562887000046 ], [ -122.565309900999978, 49.197582908000065 ], [ -122.565054672999949, 49.197563993000145 ], [ -122.564124598999982, 49.197410812000072 ], [ -122.563741095999944, 49.197270611000143 ], [ -122.563473512, 49.197122390000033 ], [ -122.563296707999939, 49.196971706000063 ], [ -122.562951092999981, 49.196579503000123 ], [ -122.562848685999967, 49.196386093000058 ], [ -122.562833291999979, 49.195686305000045 ], [ -122.562837409999972, 49.195297121000038 ], [ -122.562916365, 49.195118501000074 ], [ -122.563054770999941, 49.19495441500009 ], [ -122.563433646999954, 49.194656529000056 ], [ -122.562945597999956, 49.194241698000063 ], [ -122.56278438399994, 49.194065407000053 ], [ -122.562712800999975, 49.193922456000095 ], [ -122.562270312999914, 49.193038795000135 ], [ -122.562026101999962, 49.192723708000095 ], [ -122.561107399999983, 49.192010391000089 ], [ -122.560932599999944, 49.191832703000038 ], [ -122.560833695999989, 49.191630409 ], [ -122.560839999, 49.191378290000031 ], [ -122.559299601999953, 49.191371402000058 ], [ -122.558204851999946, 49.191364531000033 ], [ -122.557244297999929, 49.191358508000043 ], [ -122.556841866999932, 49.191355961000042 ], [ -122.556855372999948, 49.189489189000049 ], [ -122.55686769499999, 49.187489914000054 ], [ -122.556867749999952, 49.187371076000019 ], [ -122.556868, 49.187024259000097 ], [ -122.556869299999946, 49.18495048300008 ], [ -122.55682910599991, 49.183327112000022 ], [ -122.556830189999943, 49.183213555000123 ], [ -122.556843991999969, 49.181774896000086 ], [ -122.55659981, 49.181405245000086 ], [ -122.556590371999931, 49.181223903000038 ], [ -122.558947917999959, 49.181957497 ], [ -122.559713115999969, 49.182319204000088 ], [ -122.560603699999916, 49.182484496000022 ], [ -122.561629191999941, 49.182911704000105 ], [ -122.563380584999919, 49.183394498000034 ], [ -122.564915686999939, 49.183598196000105 ], [ -122.566145606999939, 49.184250494000047 ], [ -122.56715970799999, 49.1843088870001 ], [ -122.568389197999963, 49.184898514000075 ], [ -122.570182204, 49.18539980700006 ], [ -122.570828091999914, 49.185446792000043 ], [ -122.572579888999925, 49.185858390000085 ], [ -122.573099494999923, 49.186103398000078 ], [ -122.574939994999937, 49.187521888000013 ], [ -122.576114192999938, 49.188236787000157 ], [ -122.578356707999916, 49.190817503000105 ], [ -122.579113003000018, 49.191827543000052 ], [ -122.577765082999989, 49.19178472400008 ], [ -122.577763981999937, 49.191914223 ], [ -122.577352250999979, 49.191912717000022 ], [ -122.577349950999988, 49.192182570000085 ], [ -122.576526485000016, 49.192179553000052 ], [ -122.576524181999972, 49.192449405000033 ], [ -122.576320917999979, 49.192448660000117 ], [ -122.576266005999955, 49.193193746000098 ], [ -122.579392372000015, 49.193293076000018 ], [ -122.579331616000019, 49.194118177000114 ], [ -122.580593578999967, 49.194158246 ], [ -122.580328851999951, 49.197754385000032 ], [ -122.579360056, 49.197723626 ], [ -122.579342324999971, 49.197964409000086 ], [ -122.579249201999943, 49.197961452000072 ], [ -122.579187466999926, 49.198799722000103 ], [ -122.579274717000018, 49.198802493000073 ], [ -122.57922514099999, 49.199475646000131 ], [ -122.57975863199999, 49.19947758800005 ], [ -122.579756345999954, 49.19974743900007 ], [ -122.580168141999977, 49.199748938000013 ], [ -122.580163572999965, 49.200288641000057 ], [ -122.58057537599997, 49.200290137000096 ], [ -122.580568528999976, 49.201099693000117 ], [ -122.581392142999974, 49.201102681000037 ], [ -122.581385309999973, 49.201912236000098 ], [ -122.580561681999967, 49.201909248000064 ], [ -122.580561636999946, 49.201914492000071 ], [ -122.58216727199999, 49.20196544 ], [ -122.582059395999977, 49.202003901000054 ], [ -122.580725645999948, 49.202479436000054 ], [ -122.58068700299998, 49.202493210000135 ], [ -122.580577402999893, 49.202501687000066 ], [ -122.58051666599999, 49.202457119000016 ], [ -122.580319294999981, 49.20231230800011 ] ], [ [ -122.571956629999974, 49.197928360000098 ], [ -122.571986565999936, 49.197522733000064 ], [ -122.571734565999961, 49.197514713000025 ], [ -122.571771928999908, 49.197008486000172 ], [ -122.57141438599993, 49.196997107000072 ], [ -122.571443769999988, 49.196599028000065 ], [ -122.569113930999976, 49.196524847 ], [ -122.569153867999958, 49.195984131000095 ], [ -122.56878558799994, 49.19597240100007 ], [ -122.568709082999959, 49.19700811300001 ], [ -122.569073098999965, 49.197009472000069 ], [ -122.56907075399999, 49.197279324000057 ], [ -122.569482529999945, 49.19728085900006 ], [ -122.56947759399999, 49.197849441000116 ], [ -122.571956629999974, 49.197928360000098 ] ], [ [ -122.565470747999939, 49.190519324000014 ], [ -122.5654895549999, 49.190264921000079 ], [ -122.565014510999944, 49.190249771000012 ], [ -122.565012161999903, 49.190517597000046 ], [ -122.565470747999939, 49.190519324000014 ] ], [ [ -122.564602810999958, 49.190246193000071 ], [ -122.564942504999976, 49.190247474000032 ], [ -122.564602893999961, 49.190236642000059 ], [ -122.564602810999958, 49.190246193000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.754270696452037", "sL_AssetLoss": "7610", "sL_BldgLoss": "5740", "sL_StrLoss": "2950", "sL_NStrLoss": "2790", "sL_ContLoss": "1870", "geom_point": "0101000020E610000023479D2D1EA55EC0740CC85EEF994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.578940866999986, 49.201572757000079 ], [ -122.579268094999932, 49.201534689 ], [ -122.579447086999934, 49.201571696000094 ], [ -122.579609483999931, 49.201696993000056 ], [ -122.579865391999959, 49.202219689000039 ], [ -122.58015311599999, 49.202481800000093 ], [ -122.580563582999972, 49.202664095000124 ], [ -122.580571117000019, 49.202664877000117 ], [ -122.581312547999957, 49.203079244000016 ], [ -122.581275187999921, 49.203097391000078 ], [ -122.5806826419999, 49.203142306000061 ], [ -122.580524282999974, 49.20315429500004 ], [ -122.580512446999961, 49.203167244000035 ], [ -122.580427675999971, 49.203259913000124 ], [ -122.58017085699997, 49.203540546000106 ], [ -122.580055813999948, 49.203666314000046 ], [ -122.580026062999977, 49.20361594900001 ], [ -122.579882831999925, 49.203373141000029 ], [ -122.579827817999899, 49.203281291000053 ], [ -122.579758117000011, 49.203165546000051 ], [ -122.579777881999988, 49.203027396000067 ], [ -122.579003517999951, 49.201681633000078 ], [ -122.57895137099996, 49.201590978000105 ], [ -122.578940866999986, 49.201572757000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165316083", "BldgCostT": "104733333", "sL_LossRatio": "0.683830582253125", "sL_AssetLoss": "2595950", "sL_BldgLoss": "1775190", "sL_StrLoss": "793480", "sL_NStrLoss": "981710", "sL_ContLoss": "820760", "geom_point": "0101000020E6100000A1D30C0C8DA65EC04E7F594E80904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.588719705999949, 49.139500702000099 ], [ -122.587037620999965, 49.138844578000068 ], [ -122.586749497999932, 49.138732211000118 ], [ -122.586052166999949, 49.138455703000041 ], [ -122.585041783999955, 49.138055086000087 ], [ -122.584947901999968, 49.138017873000109 ], [ -122.583793412999981, 49.137560052000048 ], [ -122.582745839, 49.137144647000085 ], [ -122.582722349, 49.137135344000107 ], [ -122.581324008999957, 49.136580790000053 ], [ -122.581324498999919, 49.136550294000102 ], [ -122.581329599999933, 49.136243246000035 ], [ -122.581332398999933, 49.136074589000017 ], [ -122.58133810799994, 49.135960394000058 ], [ -122.581345261999957, 49.13571321200002 ], [ -122.581349679999988, 49.135559698000094 ], [ -122.581356313999933, 49.134853844000141 ], [ -122.581357107, 49.134768592000114 ], [ -122.581371387999965, 49.134145496000038 ], [ -122.58138380799997, 49.133566398000063 ], [ -122.581407814999963, 49.132866906000096 ], [ -122.581429051999919, 49.132115956000128 ], [ -122.581443807999932, 49.131594597000081 ], [ -122.581445226999946, 49.131584968000048 ], [ -122.581485718999915, 49.131312592000015 ], [ -122.581489786999924, 49.131285246000104 ], [ -122.58163638299996, 49.130968093000014 ], [ -122.58165177399999, 49.130944456000122 ], [ -122.581658493999939, 49.130934104000104 ], [ -122.581460095999915, 49.130887609000062 ], [ -122.581470514999936, 49.130112 ], [ -122.581482019999953, 49.129426540000061 ], [ -122.581495784999916, 49.128607964000018 ], [ -122.581514055999946, 49.127519471000028 ], [ -122.581516492, 49.127375554000047 ], [ -122.581517692999938, 49.127303602000076 ], [ -122.581521747999943, 49.127060687000039 ], [ -122.581534705999928, 49.126291092000088 ], [ -122.581540492999963, 49.125963389000091 ], [ -122.581570014999969, 49.124290383000123 ], [ -122.585846088999986, 49.124426224000032 ], [ -122.585756362999987, 49.125648977000026 ], [ -122.586049472999917, 49.125658282000046 ], [ -122.586095342999954, 49.125033136000127 ], [ -122.58879895499993, 49.125118927000116 ], [ -122.588807534999958, 49.12500190100014 ], [ -122.594275424999978, 49.125175201000033 ], [ -122.594102810999985, 49.127533277000055 ], [ -122.594204872999939, 49.127536509000073 ], [ -122.594043755999976, 49.129737388000159 ], [ -122.593941575999978, 49.131133049000056 ], [ -122.590491883999945, 49.13102375100005 ], [ -122.590472850999944, 49.131283470000099 ], [ -122.59183654, 49.131326690000037 ], [ -122.59183936, 49.131288193000103 ], [ -122.595274662999927, 49.131396992000056 ], [ -122.595325351999946, 49.130704375000086 ], [ -122.596635903999953, 49.130745853000072 ], [ -122.59666882099998, 49.130295907000104 ], [ -122.597853388999951, 49.130333383000057 ], [ -122.597894358999952, 49.129773139000086 ], [ -122.597927624999969, 49.129318234000095 ], [ -122.598310856999973, 49.129330355000015 ], [ -122.598333823999894, 49.12901624300013 ], [ -122.598661633999939, 49.129026610000068 ], [ -122.598685426999978, 49.12870115100008 ], [ -122.599034544999981, 49.128712191000062 ], [ -122.599050724999969, 49.128490859000046 ], [ -122.599825297999956, 49.128515349000111 ], [ -122.59986622199996, 49.127955376000045 ], [ -122.600559059, 49.12797727800011 ], [ -122.600565632999945, 49.127887297000079 ], [ -122.598943763999927, 49.127836022000125 ], [ -122.598989434999908, 49.127211248000116 ], [ -122.598475985, 49.127195010000058 ], [ -122.598738909999923, 49.123598436000094 ], [ -122.598840235999958, 49.123601641000079 ], [ -122.598896145999916, 49.122836738000082 ], [ -122.599444107999929, 49.122854068000066 ], [ -122.599445840999948, 49.122830369000013 ], [ -122.596151974999927, 49.12272616000007 ], [ -122.596252486999987, 49.121352117000107 ], [ -122.594352041999954, 49.121291957000068 ], [ -122.590122607999959, 49.121157935000056 ], [ -122.59008529, 49.121667170000066 ], [ -122.58461782699996, 49.121493656000077 ], [ -122.584650605999968, 49.12104707 ], [ -122.583027798999979, 49.120995515000061 ], [ -122.583070892999942, 49.12040865000008 ], [ -122.581639302999946, 49.12036314900007 ], [ -122.581664610999951, 49.118928490000059 ], [ -122.587219088999944, 49.118975996000081 ], [ -122.588546014999935, 49.118982852000045 ], [ -122.592714709999953, 49.119004297000046 ], [ -122.594329518999956, 49.11901929200009 ], [ -122.595384486999947, 49.119029078000047 ], [ -122.595535230999957, 49.119030462000048 ], [ -122.59637070499997, 49.119038202000056 ], [ -122.598348293999933, 49.119056503000095 ], [ -122.600002165999911, 49.119069040000056 ], [ -122.603896294999927, 49.119098502000035 ], [ -122.617940637999979, 49.11924824200004 ], [ -122.618889801999927, 49.119258298000048 ], [ -122.619900684999919, 49.119228175000032 ], [ -122.624336116999984, 49.119095899000058 ], [ -122.625064705999961, 49.119033255000083 ], [ -122.625319017999956, 49.119011407000059 ], [ -122.627405669999916, 49.11813780500011 ], [ -122.630314739999932, 49.119737324000013 ], [ -122.631584676000017, 49.120435515000068 ], [ -122.632702007999939, 49.121049806000059 ], [ -122.631821996999932, 49.121656331000111 ], [ -122.62874088199996, 49.123779797000111 ], [ -122.624898697999981, 49.126450308000059 ], [ -122.624595887999988, 49.126658722000059 ], [ -122.624208097999897, 49.126925631000063 ], [ -122.622331505999924, 49.128217208000059 ], [ -122.620983084, 49.129143705000047 ], [ -122.61724602399994, 49.131694606000117 ], [ -122.615309824999912, 49.13301650100005 ], [ -122.613966, 49.132974207000096 ], [ -122.61400536, 49.13243343700006 ], [ -122.612863293999965, 49.132397479000062 ], [ -122.612965263999982, 49.130996937000106 ], [ -122.60977512, 49.130896432000043 ], [ -122.609539396999978, 49.13413089900007 ], [ -122.609539172999973, 49.134133963000103 ], [ -122.605565396999964, 49.134008636000132 ], [ -122.605561309, 49.134064659000053 ], [ -122.604913138000015, 49.134044203000016 ], [ -122.604829543, 49.135189573000147 ], [ -122.601576890999951, 49.135086861000083 ], [ -122.601512352999947, 49.135970252000078 ], [ -122.597065830999966, 49.13582967900004 ], [ -122.597063965999979, 49.135855160000091 ], [ -122.592941957999955, 49.135724681000028 ], [ -122.59294155, 49.13573024800008 ], [ -122.594014786999963, 49.135764235000082 ], [ -122.593791833999944, 49.138808955000115 ], [ -122.593844823999959, 49.138809141000117 ], [ -122.593849233999961, 49.138269431000033 ], [ -122.596607566999978, 49.138279102000091 ], [ -122.596654509999965, 49.137637528000084 ], [ -122.602123913999975, 49.13781042500009 ], [ -122.602088287999933, 49.138298119000098 ], [ -122.602402971999965, 49.138299203000081 ], [ -122.602468887999919, 49.137396767000055 ], [ -122.606584065999982, 49.13752665900013 ], [ -122.606716711000018, 49.135708365000063 ], [ -122.61115035899995, 49.135848132000021 ], [ -122.610643, 49.136188472000079 ], [ -122.608960886999952, 49.137316803000026 ], [ -122.608832530999962, 49.137487486000062 ], [ -122.608793990999942, 49.137538700000029 ], [ -122.608880713999923, 49.137891098000075 ], [ -122.609301510999941, 49.138509906000088 ], [ -122.609387591000015, 49.13887039800008 ], [ -122.60932440699996, 49.139111274000108 ], [ -122.609279495999957, 49.139282513000047 ], [ -122.608873810999967, 49.139714892000043 ], [ -122.606814198, 49.140799814000083 ], [ -122.605703315999946, 49.141289823000058 ], [ -122.603778211999952, 49.142138937000041 ], [ -122.603563688999927, 49.142233574000052 ], [ -122.603450701999932, 49.14228338700007 ], [ -122.603232787999943, 49.142423517000118 ], [ -122.602886903999888, 49.142645902000012 ], [ -122.602450382999947, 49.142936702000092 ], [ -122.601520307999962, 49.143782166000101 ], [ -122.601361000999958, 49.14392699200004 ], [ -122.601008002999919, 49.144292484000076 ], [ -122.599980275999911, 49.143891820000185 ], [ -122.599268455999976, 49.143614321000072 ], [ -122.595664313999947, 49.142209040000111 ], [ -122.59526811299996, 49.142054546000075 ], [ -122.594683178999958, 49.1418264590001 ], [ -122.590443486999945, 49.14017303100011 ], [ -122.590089749999933, 49.140035062000067 ], [ -122.589798805999962, 49.139921578000077 ], [ -122.588719705999949, 49.139500702000099 ] ], [ [ -122.593017819999929, 49.139345955000053 ], [ -122.593017889999913, 49.139337501000057 ], [ -122.592855215, 49.139332349000014 ], [ -122.592854259999953, 49.139345379000041 ], [ -122.593017819999929, 49.139345955000053 ] ], [ [ -122.591597874999948, 49.135640187000035 ], [ -122.591638463999971, 49.13508623700011 ], [ -122.591268606999918, 49.135074517000078 ], [ -122.591268570999972, 49.13507501900007 ], [ -122.591555134, 49.135084099000082 ], [ -122.591514580999956, 49.135637547000094 ], [ -122.591597874999948, 49.135640187000035 ] ], [ [ -122.609479627999974, 49.130527262000051 ], [ -122.609715559999955, 49.127289713000039 ], [ -122.6150406899999, 49.127457446000101 ], [ -122.615146869999975, 49.125997964000113 ], [ -122.61113913299999, 49.125871751000034 ], [ -122.611155803999949, 49.125642870000043 ], [ -122.610139011999948, 49.125610825000074 ], [ -122.610401027999941, 49.122014214000089 ], [ -122.615868646999957, 49.122186418000084 ], [ -122.615856431999987, 49.122354378000075 ], [ -122.618586162999975, 49.122440246000096 ], [ -122.618414972, 49.124795871000039 ], [ -122.620709533999928, 49.124867995000059 ], [ -122.620689964999912, 49.125137432000095 ], [ -122.620708753999978, 49.125137494000043 ], [ -122.620857743999963, 49.123085970000062 ], [ -122.620990893999988, 49.123090154000089 ], [ -122.621011153999945, 49.122811174000105 ], [ -122.621724329999935, 49.122833580000062 ], [ -122.621773144999935, 49.122161206000023 ], [ -122.621292107999977, 49.122146093 ], [ -122.621140634999946, 49.122285062000088 ], [ -122.620817845999966, 49.122131192000047 ], [ -122.62022574199996, 49.122112584000099 ], [ -122.620220633999921, 49.122287361000097 ], [ -122.619865435999913, 49.122276562000081 ], [ -122.619870550999963, 49.122101420000071 ], [ -122.619480215999928, 49.122089150000122 ], [ -122.619455334999955, 49.122123663000139 ], [ -122.619321384999949, 49.12208415700011 ], [ -122.617457000999948, 49.122025530000045 ], [ -122.617474679999987, 49.121782330000016 ], [ -122.61614584199998, 49.121740523000106 ], [ -122.616142051999972, 49.121792639000063 ], [ -122.610674476999947, 49.121620450000137 ], [ -122.61067531099998, 49.12160901200005 ], [ -122.60769903799999, 49.121515164000115 ], [ -122.607680506999955, 49.12176934400005 ], [ -122.605009684999942, 49.12168505600004 ], [ -122.604986343999897, 49.122004980000057 ], [ -122.607177958999898, 49.122074149000127 ], [ -122.607061620999929, 49.123669635000084 ], [ -122.608734803999965, 49.123722411000116 ], [ -122.608472649999953, 49.127319009000054 ], [ -122.604471581000013, 49.127192761000082 ], [ -122.60446796599993, 49.127242299000081 ], [ -122.606089821999916, 49.127293491000032 ], [ -122.605862235999965, 49.130413170000104 ], [ -122.609479627999974, 49.130527262000051 ] ], [ [ -122.620683168999932, 49.125231015000054 ], [ -122.620675048999914, 49.125342818000085 ], [ -122.620682313999964, 49.12534304600004 ], [ -122.620683168999932, 49.125231015000054 ] ], [ [ -122.615123032999975, 49.128297150000073 ], [ -122.615081901999957, 49.128862501000071 ], [ -122.615781412999951, 49.128884514000021 ], [ -122.615818252999986, 49.128378064000088 ], [ -122.615925980999975, 49.12838145400012 ], [ -122.615930264999974, 49.128322552000093 ], [ -122.615123032999975, 49.128297150000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.757372116349047", "sL_AssetLoss": "9970", "sL_BldgLoss": "7551", "sL_StrLoss": "3061", "sL_NStrLoss": "4490", "sL_ContLoss": "2419", "geom_point": "0101000020E6100000FD5877E228A55EC0AD0E04F14F8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.5814135789999, 49.120355973000116 ], [ -122.58141368, 49.120354599000059 ], [ -122.579527712999905, 49.120294624000081 ], [ -122.579629858999951, 49.11890496900007 ], [ -122.581664610999951, 49.118928490000059 ], [ -122.581639302999946, 49.12036314900007 ], [ -122.5814135789999, 49.120355973000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89136250", "BldgCostT": "58975000", "sL_LossRatio": "0.735536425940463", "sL_AssetLoss": "1059904", "sL_BldgLoss": "779598", "sL_StrLoss": "357548", "sL_NStrLoss": "422050", "sL_ContLoss": "280306", "geom_point": "0101000020E610000041BF19A975A45EC06D2BEE2615904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.57725226899997, 49.127477214000059 ], [ -122.577292208999964, 49.126934303000056 ], [ -122.57509924699994, 49.126864488000102 ], [ -122.57514362199997, 49.126261654000118 ], [ -122.57465617099993, 49.126246130000013 ], [ -122.574472452999942, 49.12874142600009 ], [ -122.572215582999917, 49.128669520000109 ], [ -122.57215849899994, 49.12944428000003 ], [ -122.572132273999969, 49.129443444000039 ], [ -122.572031977999956, 49.130804616 ], [ -122.572006087999966, 49.131155979000063 ], [ -122.569626903999932, 49.131080124000036 ], [ -122.569614676999933, 49.131245938000028 ], [ -122.570634067999919, 49.131278446000032 ], [ -122.570630894999951, 49.13132149900008 ], [ -122.573400575999969, 49.131409773000037 ], [ -122.573289285999962, 49.132920654000095 ], [ -122.573251817999946, 49.133429284000066 ], [ -122.57050178599999, 49.132347877000086 ], [ -122.568992489999943, 49.131754319000066 ], [ -122.566302698999962, 49.130696427 ], [ -122.566159592999924, 49.130640151000073 ], [ -122.564736687999968, 49.130080475000035 ], [ -122.559125674, 49.127873161000068 ], [ -122.55529357799999, 49.12636534500006 ], [ -122.55529458, 49.126253383000098 ], [ -122.556301966999911, 49.126257260000045 ], [ -122.556528136999972, 49.126258129000085 ], [ -122.556527358999944, 49.126345697000055 ], [ -122.556525730999965, 49.126527983000095 ], [ -122.556836334999957, 49.126529176000091 ], [ -122.556840810999972, 49.126468688000053 ], [ -122.556873086999957, 49.126032565000088 ], [ -122.559191105999915, 49.126047107000069 ], [ -122.559196101999973, 49.125745388000077 ], [ -122.55922256, 49.12415329900012 ], [ -122.559234256999972, 49.123451581000083 ], [ -122.559251513999982, 49.122414294000087 ], [ -122.559250697999971, 49.121169087000084 ], [ -122.559250606999953, 49.121036312000037 ], [ -122.559328200999957, 49.119504893000034 ], [ -122.559342716999979, 49.11908987800004 ], [ -122.559330254999935, 49.118692904000078 ], [ -122.559266512999969, 49.11753437300014 ], [ -122.559282695999968, 49.116377788000072 ], [ -122.559274304999946, 49.116027903000052 ], [ -122.563848690999961, 49.116043494000067 ], [ -122.564830601, 49.116047807 ], [ -122.565445215999901, 49.116128705000087 ], [ -122.565972573999929, 49.116314099000078 ], [ -122.566408003999953, 49.116595701000058 ], [ -122.566688116999956, 49.116963546000093 ], [ -122.567681901999919, 49.118268505000124 ], [ -122.5678848099999, 49.118434511000025 ], [ -122.568218900999952, 49.118603799000084 ], [ -122.568882687999974, 49.11877999100016 ], [ -122.570807916999968, 49.118802462000097 ], [ -122.570977855999942, 49.118804450000106 ], [ -122.571474612999936, 49.11881023800003 ], [ -122.57139713299992, 49.119861826000061 ], [ -122.569724897999961, 49.119808493000065 ], [ -122.569693784, 49.120230567000085 ], [ -122.569058994, 49.120210314000126 ], [ -122.569049010999919, 49.120345728000139 ], [ -122.569829827999953, 49.120370639000079 ], [ -122.569817249999943, 49.120541264000039 ], [ -122.57100379699996, 49.120579109000111 ], [ -122.570751036999951, 49.124008885000158 ], [ -122.571295479999932, 49.124026246 ], [ -122.571405176999974, 49.122537573000074 ], [ -122.573235862999979, 49.122595926000038 ], [ -122.573236599999944, 49.122585918000041 ], [ -122.578704148999975, 49.122760009000082 ], [ -122.578659086999906, 49.12337285600011 ], [ -122.580831611999983, 49.123441954000022 ], [ -122.580771132, 49.124264985000089 ], [ -122.581570014999969, 49.124290383000123 ], [ -122.581540492999963, 49.125963389000091 ], [ -122.581534705999928, 49.126291092000088 ], [ -122.581521747999943, 49.127060687000039 ], [ -122.581517692999938, 49.127303602000076 ], [ -122.581516492, 49.127375554000047 ], [ -122.581514055999946, 49.127519471000028 ], [ -122.581495784999916, 49.128607964000018 ], [ -122.581482019999953, 49.129426540000061 ], [ -122.581470514999936, 49.130112 ], [ -122.581460095999915, 49.130887609000062 ], [ -122.581658493999939, 49.130934104000104 ], [ -122.58165177399999, 49.130944456000122 ], [ -122.58163638299996, 49.130968093000014 ], [ -122.581489786999924, 49.131285246000104 ], [ -122.581485718999915, 49.131312592000015 ], [ -122.581445226999946, 49.131584968000048 ], [ -122.581443807999932, 49.131594597000081 ], [ -122.581429051999919, 49.132115956000128 ], [ -122.581407814999963, 49.132866906000096 ], [ -122.58138380799997, 49.133566398000063 ], [ -122.581371387999965, 49.134145496000038 ], [ -122.581357107, 49.134768592000114 ], [ -122.581356313999933, 49.134853844000141 ], [ -122.581349679999988, 49.135559698000094 ], [ -122.581345261999957, 49.13571321200002 ], [ -122.58133810799994, 49.135960394000058 ], [ -122.581332398999933, 49.136074589000017 ], [ -122.581329599999933, 49.136243246000035 ], [ -122.581324498999919, 49.136550294000102 ], [ -122.581324008999957, 49.136580790000053 ], [ -122.58131218799997, 49.136576238000046 ], [ -122.580848838999927, 49.136397691000099 ], [ -122.580212217999986, 49.136152354000082 ], [ -122.580188574999951, 49.136143247000042 ], [ -122.578472016999939, 49.135481695000124 ], [ -122.578290003999953, 49.135410163000138 ], [ -122.574145833999978, 49.133780824000034 ], [ -122.574051748999963, 49.133743822000085 ], [ -122.573305236999929, 49.133450289000066 ], [ -122.573311995999958, 49.133358551000079 ], [ -122.573737559999941, 49.133372108000074 ], [ -122.573739914999976, 49.133097384000088 ], [ -122.573740153999921, 49.133069544000094 ], [ -122.575385128999969, 49.133075605000094 ], [ -122.575403565999963, 49.130916767000024 ], [ -122.575576887999944, 49.130917405000098 ], [ -122.575585552999925, 49.130835982000065 ], [ -122.575591333999952, 49.130781662000096 ], [ -122.575815918999979, 49.130786123000107 ], [ -122.57581709399993, 49.13064842300011 ], [ -122.575850177999925, 49.130648545000057 ], [ -122.576086312999962, 49.127440101000055 ], [ -122.57725226899997, 49.127477214000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96202250", "BldgCostT": "65555000", "sL_LossRatio": "0.735326906509369", "sL_AssetLoss": "1515938", "sL_BldgLoss": "1114710", "sL_StrLoss": "504120", "sL_NStrLoss": "610590", "sL_ContLoss": "401228", "geom_point": "0101000020E6100000223C6F9D1EA35EC0C4C98147E98E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556873086999957, 49.126032565000088 ], [ -122.556880863999965, 49.12592747300004 ], [ -122.556841231999897, 49.125926204000066 ], [ -122.556883497999934, 49.125355081000052 ], [ -122.555918535999979, 49.125324181000039 ], [ -122.555929475999932, 49.125176373000073 ], [ -122.55489305499998, 49.125172382000123 ], [ -122.554895470999952, 49.124902528000121 ], [ -122.554073120999988, 49.124899353000053 ], [ -122.554074391999947, 49.124757653000096 ], [ -122.553465537999926, 49.124738142000091 ], [ -122.553436306, 49.125132767000125 ], [ -122.553400193999934, 49.125620261000073 ], [ -122.549955175999969, 49.124264422000145 ], [ -122.549972273999956, 49.124033828000023 ], [ -122.549315798999913, 49.124012764000064 ], [ -122.547728724999914, 49.123388067000157 ], [ -122.547286768, 49.123214097000151 ], [ -122.546566927999919, 49.122930731000068 ], [ -122.545734635999935, 49.122603101000081 ], [ -122.545770208999926, 49.122123921000117 ], [ -122.545905734999948, 49.12029825000014 ], [ -122.546152781999936, 49.120306186000064 ], [ -122.546180143999933, 49.119937557000121 ], [ -122.547079638999932, 49.11996644400007 ], [ -122.547146952999924, 49.119059277000055 ], [ -122.54753909799993, 49.119071868000063 ], [ -122.547558592999934, 49.118809119000026 ], [ -122.545914972999981, 49.118756333000086 ], [ -122.546008690999912, 49.117493718000055 ], [ -122.545943720999972, 49.11749163000011 ], [ -122.545726323999986, 49.120420345000092 ], [ -122.545478266999979, 49.120412376000033 ], [ -122.545420753999963, 49.121187051000099 ], [ -122.543202086999926, 49.121115750000044 ], [ -122.541845877999933, 49.121072143000085 ], [ -122.539243900999963, 49.120047649000114 ], [ -122.540023303999959, 49.120072731000036 ], [ -122.540038115999906, 49.119873526000106 ], [ -122.540051451999929, 49.119694162000101 ], [ -122.539539336999908, 49.119677682000031 ], [ -122.538960660999962, 49.119659057000099 ], [ -122.538940639999936, 49.119928237000067 ], [ -122.538204180999983, 49.119638243000125 ], [ -122.537029591999925, 49.119175690000091 ], [ -122.537040572999942, 49.118696494000076 ], [ -122.537044288999965, 49.118444307000026 ], [ -122.537049011999954, 49.118123597000114 ], [ -122.537052720999952, 49.117627523000046 ], [ -122.537053277999959, 49.117555559000081 ], [ -122.537067190999934, 49.115691830000081 ], [ -122.53707250799998, 49.114981228000055 ], [ -122.537076618999961, 49.114432511000039 ], [ -122.537086126999924, 49.113164207000096 ], [ -122.537099269999956, 49.111401144000062 ], [ -122.537109436999955, 49.110042842000048 ], [ -122.537120512999977, 49.108564308000098 ], [ -122.540541398999963, 49.108610399000099 ], [ -122.542182991999979, 49.108637105000035 ], [ -122.543807494999953, 49.108655093000031 ], [ -122.546040687999962, 49.108684488000023 ], [ -122.546021280999966, 49.104995806000041 ], [ -122.54833879899995, 49.104836150000068 ], [ -122.548333325999963, 49.105752396000099 ], [ -122.548321706999943, 49.107533805000081 ], [ -122.548339111999937, 49.107613696000065 ], [ -122.548501024999965, 49.107701789000068 ], [ -122.550926808999947, 49.107718403 ], [ -122.550929730999911, 49.108532536000062 ], [ -122.55093485899998, 49.109953822000072 ], [ -122.550940214999912, 49.111437503000019 ], [ -122.550967207999975, 49.113236410000077 ], [ -122.55189681799996, 49.113234380000058 ], [ -122.553966458999938, 49.113229847000127 ], [ -122.555528277999912, 49.113226399000055 ], [ -122.556241039, 49.113224813000052 ], [ -122.559256, 49.113218111000073 ], [ -122.559257936999927, 49.113512327000123 ], [ -122.55926302, 49.114294863000147 ], [ -122.559269056999966, 49.115221336000104 ], [ -122.559274304999946, 49.116027903000052 ], [ -122.559282695999968, 49.116377788000072 ], [ -122.559266512999969, 49.11753437300014 ], [ -122.559330254999935, 49.118692904000078 ], [ -122.559342716999979, 49.11908987800004 ], [ -122.559328200999957, 49.119504893000034 ], [ -122.559250606999953, 49.121036312000037 ], [ -122.559250697999971, 49.121169087000084 ], [ -122.559251513999982, 49.122414294000087 ], [ -122.559234256999972, 49.123451581000083 ], [ -122.55922256, 49.12415329900012 ], [ -122.559196101999973, 49.125745388000077 ], [ -122.559191105999915, 49.126047107000069 ], [ -122.556873086999957, 49.126032565000088 ] ], [ [ -122.545140813999978, 49.112450760000051 ], [ -122.545546825999949, 49.112452359000059 ], [ -122.545566850999961, 49.112182573000098 ], [ -122.545143280999966, 49.112180905000073 ], [ -122.545140813999978, 49.112450760000051 ], [ -122.543496528999981, 49.112444269000029 ], [ -122.543506432999934, 49.111364851000076 ], [ -122.54227324699994, 49.111359968000087 ], [ -122.54226828, 49.111899677000018 ], [ -122.54088323799995, 49.111894177000103 ], [ -122.540812701999954, 49.112843186000063 ], [ -122.540615300999931, 49.112836834000056 ], [ -122.540614046999963, 49.112972564000074 ], [ -122.539791897999976, 49.112969289000127 ], [ -122.53978940099995, 49.113239144000076 ], [ -122.53926231899996, 49.113237042000023 ], [ -122.539230698999958, 49.113662262000034 ], [ -122.540797783999949, 49.113712694000107 ], [ -122.54072714499992, 49.114663029000042 ], [ -122.540912538999976, 49.114668995000081 ], [ -122.540853327, 49.115465616000051 ], [ -122.54178145799996, 49.115495473000095 ], [ -122.541693013999947, 49.116685635000138 ], [ -122.54577851199997, 49.116816965000062 ], [ -122.54594211099996, 49.114612829000045 ], [ -122.545121075999944, 49.114609596000015 ], [ -122.545140813999978, 49.112450760000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.763841807909605", "sL_AssetLoss": "8850", "sL_BldgLoss": "6760", "sL_StrLoss": "3020", "sL_NStrLoss": "3740", "sL_ContLoss": "2090", "geom_point": "0101000020E6100000E5988F18BBA25EC0CF360E27768E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.542253383999977, 49.113518805000062 ], [ -122.54225586599992, 49.113248950000091 ], [ -122.541844787999977, 49.113247319000109 ], [ -122.541852244999959, 49.112437756000141 ], [ -122.54308545799995, 49.112442643000065 ], [ -122.543082978999934, 49.11271249800005 ], [ -122.543494052999961, 49.112714124000014 ], [ -122.543486623999954, 49.113523688000079 ], [ -122.542253383999977, 49.113518805000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95600227", "BldgCostT": "64044856", "sL_LossRatio": "0.75925937500279", "sL_AssetLoss": "1119973", "sL_BldgLoss": "850350", "sL_StrLoss": "391150", "sL_NStrLoss": "459200", "sL_ContLoss": "269623", "geom_point": "0101000020E6100000D08E44FDA8A25EC0E030B0129C8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.543320640999966, 49.104038248000045 ], [ -122.54603038499999, 49.104080393000125 ], [ -122.546021828999983, 49.10494180300006 ], [ -122.546021280999966, 49.104995806000041 ], [ -122.546040687999962, 49.108684488000023 ], [ -122.543807494999953, 49.108655093000031 ], [ -122.542182991999979, 49.108637105000035 ], [ -122.540541398999963, 49.108610399000099 ], [ -122.537120512999977, 49.108564308000098 ], [ -122.537088899999929, 49.107682698000119 ], [ -122.537087062999916, 49.107308327000133 ], [ -122.537083701999919, 49.106624661000076 ], [ -122.537079977999923, 49.105868104000066 ], [ -122.537089983999934, 49.103984708000105 ], [ -122.542158386999958, 49.104028007000132 ], [ -122.543310795999957, 49.104038093000021 ], [ -122.543320640999966, 49.104038248000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.768624912337487", "sL_AssetLoss": "18537", "sL_BldgLoss": "14248", "sL_StrLoss": "5968", "sL_NStrLoss": "8280", "sL_ContLoss": "4289", "geom_point": "0101000020E6100000142D0EA129A55EC084B62084158F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.579792061999953, 49.116698059000065 ], [ -122.581589899999983, 49.116755232000052 ], [ -122.581664610999951, 49.118928490000059 ], [ -122.579629858999951, 49.11890496900007 ], [ -122.579792061999953, 49.116698059000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147391333", "BldgCostT": "98173333", "sL_LossRatio": "0.735372918441972", "sL_AssetLoss": "2036035", "sL_BldgLoss": "1497245", "sL_StrLoss": "688925", "sL_NStrLoss": "808320", "sL_ContLoss": "538790", "geom_point": "0101000020E6100000BB90477023A45EC08FB74BD1008E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.565445215999901, 49.116128705000087 ], [ -122.564830601, 49.116047807 ], [ -122.563848690999961, 49.116043494000067 ], [ -122.559274304999946, 49.116027903000052 ], [ -122.559269056999966, 49.115221336000104 ], [ -122.55926302, 49.114294863000147 ], [ -122.559257936999927, 49.113512327000123 ], [ -122.559256, 49.113218111000073 ], [ -122.556241039, 49.113224813000052 ], [ -122.555528277999912, 49.113226399000055 ], [ -122.553966458999938, 49.113229847000127 ], [ -122.55189681799996, 49.113234380000058 ], [ -122.550967207999975, 49.113236410000077 ], [ -122.550940214999912, 49.111437503000019 ], [ -122.55093485899998, 49.109953822000072 ], [ -122.550929730999911, 49.108532536000062 ], [ -122.550926808999947, 49.107718403 ], [ -122.548501024999965, 49.107701789000068 ], [ -122.548339111999937, 49.107613696000065 ], [ -122.548321706999943, 49.107533805000081 ], [ -122.548333325999963, 49.105752396000099 ], [ -122.54833879899995, 49.104836150000068 ], [ -122.546021280999966, 49.104995806000041 ], [ -122.546021828999983, 49.10494180300006 ], [ -122.54603038499999, 49.104080393000125 ], [ -122.543320640999966, 49.104038248000045 ], [ -122.543310795999957, 49.104038093000021 ], [ -122.543620304999976, 49.103890305000014 ], [ -122.54413924699999, 49.10354392000005 ], [ -122.544228408999956, 49.103484406000135 ], [ -122.545229893999959, 49.10305609100002 ], [ -122.545532810999973, 49.102979286000092 ], [ -122.546461755999971, 49.102831394000034 ], [ -122.546460297999943, 49.102991382000013 ], [ -122.546670234999965, 49.103009062000091 ], [ -122.546677340999935, 49.103011541000065 ], [ -122.546823935999953, 49.103012117000027 ], [ -122.54684410599999, 49.102740212000114 ], [ -122.54824965399996, 49.102336904000047 ], [ -122.548262191999939, 49.102333290000111 ], [ -122.548475271999905, 49.102307667000041 ], [ -122.548521615999945, 49.10230211900015 ], [ -122.548646387999938, 49.102287100000034 ], [ -122.548724917999934, 49.102294043000079 ], [ -122.549029997999952, 49.102321008000068 ], [ -122.549659494999943, 49.102476412000073 ], [ -122.550383904999961, 49.102569095000085 ], [ -122.551307885999975, 49.103222397000103 ], [ -122.551581019, 49.103325793000039 ], [ -122.55212109199999, 49.103412137000063 ], [ -122.552780177999963, 49.103517494000087 ], [ -122.5531652989999, 49.103624505 ], [ -122.553522586999932, 49.103847813000129 ], [ -122.553264520999988, 49.10384681500004 ], [ -122.55318615899999, 49.104905111000065 ], [ -122.552678441999944, 49.104888829000075 ], [ -122.552626274999923, 49.105593237000093 ], [ -122.555445412999944, 49.10568361300006 ], [ -122.555508909999986, 49.104825538000121 ], [ -122.555897003000027, 49.10483797300013 ], [ -122.555898533999965, 49.104666573 ], [ -122.555076517999979, 49.104663407000047 ], [ -122.555078929999922, 49.10439355200009 ], [ -122.554256919999943, 49.104390380000048 ], [ -122.554259336999948, 49.104120525000091 ], [ -122.553848334999927, 49.104118937000088 ], [ -122.55384910899997, 49.104032495000141 ], [ -122.554066518999917, 49.104068905000105 ], [ -122.554185238999949, 49.104068669000078 ], [ -122.55920990099996, 49.104058816000069 ], [ -122.560637902999986, 49.104058196000075 ], [ -122.56196279299995, 49.104057595000093 ], [ -122.562843957999945, 49.104056590000042 ], [ -122.56359269, 49.104055696000017 ], [ -122.564009915, 49.104156390000064 ], [ -122.564266909999958, 49.10429259000005 ], [ -122.565651394999975, 49.105351700000014 ], [ -122.565976692, 49.105491011000048 ], [ -122.566073837999951, 49.105514664000097 ], [ -122.56616648699999, 49.105537234000067 ], [ -122.566164324999974, 49.105785066000074 ], [ -122.565342290999979, 49.105781974000081 ], [ -122.56533605099996, 49.10649649100003 ], [ -122.565339934999898, 49.106497262000119 ], [ -122.565556333999965, 49.106590061000126 ], [ -122.565366335999954, 49.106855962000097 ], [ -122.565332280999968, 49.106928036000092 ], [ -122.565330504999963, 49.107131253000013 ], [ -122.565236429999956, 49.10713089800003 ], [ -122.564917934999968, 49.107804962000039 ], [ -122.564913536999939, 49.107809101000029 ], [ -122.564910039, 49.108209127000102 ], [ -122.565458931999942, 49.108211194000077 ], [ -122.56556353399999, 49.108163862000055 ], [ -122.565718735999951, 49.10821217200008 ], [ -122.56614315099999, 49.10821376800002 ], [ -122.566140798999982, 49.108483623000062 ], [ -122.566551838999928, 49.108485168000108 ], [ -122.566547136999944, 49.109024878000049 ], [ -122.567780269, 49.109029501000087 ], [ -122.567777924999959, 49.109299358000065 ], [ -122.569011065999959, 49.109303968000035 ], [ -122.569015740999987, 49.108764256000072 ], [ -122.569426782999955, 49.108765790000049 ], [ -122.569429117999974, 49.108495934000075 ], [ -122.570251198999983, 49.108498997000083 ], [ -122.570253527999952, 49.10822914100001 ], [ -122.570664566999938, 49.108230671000079 ], [ -122.570669223, 49.107690960000092 ], [ -122.56984715599999, 49.107687899000076 ], [ -122.569856487, 49.106608476000069 ], [ -122.570678534999928, 49.106611536000067 ], [ -122.570679604999896, 49.106487636000082 ], [ -122.5696786029999, 49.106455698000048 ], [ -122.56968727799989, 49.106337981000124 ], [ -122.569447797999914, 49.10633708800006 ], [ -122.569459470999959, 49.104987809000129 ], [ -122.569786685999944, 49.104989028000013 ], [ -122.56979321099999, 49.104900468000011 ], [ -122.568093794999953, 49.104846224000035 ], [ -122.568624691, 49.104274989000018 ], [ -122.568797808999975, 49.104138182000092 ], [ -122.569085598999976, 49.104005792000066 ], [ -122.569575793999931, 49.103858396000142 ], [ -122.569924506999925, 49.103809093000024 ], [ -122.570253773999951, 49.103801592000146 ], [ -122.571656871999949, 49.103939487000105 ], [ -122.572045877999983, 49.103977697000126 ], [ -122.572210291999923, 49.103976601000049 ], [ -122.572476048999988, 49.103976178000025 ], [ -122.57372275699997, 49.103974200000025 ], [ -122.573859847999955, 49.103973973000059 ], [ -122.576435851999946, 49.103969837000072 ], [ -122.579545632999967, 49.103964751000092 ], [ -122.579600415999948, 49.103964668000046 ], [ -122.581150313999984, 49.10396209300005 ], [ -122.581200851999938, 49.1054338920001 ], [ -122.581242302999954, 49.106639757000067 ], [ -122.581322383999989, 49.108970581000072 ], [ -122.581333208999979, 49.109285467000099 ], [ -122.581404302999928, 49.111354802000058 ], [ -122.58142749699999, 49.11202952399999 ], [ -122.581449095999943, 49.112658289000073 ], [ -122.580014303999945, 49.112612657000042 ], [ -122.580093067999925, 49.111540760000018 ], [ -122.579671557999973, 49.111527351000085 ], [ -122.579693233999961, 49.111232408000092 ], [ -122.570638951999925, 49.11119908400012 ], [ -122.57064826699991, 49.110119661000105 ], [ -122.568593, 49.110111999000047 ], [ -122.568590659999956, 49.110381856000103 ], [ -122.564480105999962, 49.110366421000066 ], [ -122.564482467999937, 49.110096566000045 ], [ -122.564071414999944, 49.110095014000109 ], [ -122.564069050999962, 49.110364870000083 ], [ -122.563082672999911, 49.110361141000084 ], [ -122.562834804999966, 49.110483138000141 ], [ -122.562833513999948, 49.110630062000155 ], [ -122.56253856099994, 49.110628944000062 ], [ -122.562117334000035, 49.110836262000049 ], [ -122.561951735999955, 49.110836962000086 ], [ -122.561476734999971, 49.110634362000056 ], [ -122.561440368999939, 49.110624778000044 ], [ -122.560595218999964, 49.11062156400002 ], [ -122.560510584999946, 49.11176682800005 ], [ -122.561708098999944, 49.111805133000082 ], [ -122.561676561999917, 49.11223201100006 ], [ -122.56326787099999, 49.112282892000053 ], [ -122.563240897999947, 49.112648171000075 ], [ -122.567285453999915, 49.112777386000083 ], [ -122.567193107999955, 49.114029380000055 ], [ -122.567356227999952, 49.114034588000045 ], [ -122.567340529999953, 49.114247409 ], [ -122.569023983999941, 49.114301144000059 ], [ -122.569011582999963, 49.114469359000111 ], [ -122.570057057999932, 49.11450271700005 ], [ -122.56999305099994, 49.115371164000088 ], [ -122.570298704999942, 49.11538091400012 ], [ -122.570266817999979, 49.115813563000088 ], [ -122.570604288999931, 49.115824327000077 ], [ -122.570766598999953, 49.113621631000079 ], [ -122.57623308700002, 49.113795851000049 ], [ -122.575968478999982, 49.117392423000055 ], [ -122.571589351999961, 49.117252881000091 ], [ -122.571474612999936, 49.11881023800003 ], [ -122.570977855999942, 49.118804450000106 ], [ -122.570807916999968, 49.118802462000097 ], [ -122.568882687999974, 49.11877999100016 ], [ -122.568218900999952, 49.118603799000084 ], [ -122.5678848099999, 49.118434511000025 ], [ -122.567681901999919, 49.118268505000124 ], [ -122.566688116999956, 49.116963546000093 ], [ -122.566408003999953, 49.116595701000058 ], [ -122.565972573999929, 49.116314099000078 ], [ -122.565445215999901, 49.116128705000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273822000", "BldgCostT": "177945000", "sL_LossRatio": "0.715649181682671", "sL_AssetLoss": "3346929", "sL_BldgLoss": "2395227", "sL_StrLoss": "1083407", "sL_NStrLoss": "1311820", "sL_ContLoss": "951702", "geom_point": "0101000020E6100000D4F87DE609A35EC06F453048598C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.53707969199999, 49.103479688000071 ], [ -122.537072683999952, 49.102836795000051 ], [ -122.537069844999976, 49.102414619000051 ], [ -122.537068076999958, 49.102153684000037 ], [ -122.537055598999984, 49.100305511000094 ], [ -122.537052602999921, 49.100002965000066 ], [ -122.537047813999962, 49.099517269000039 ], [ -122.537037107999979, 49.098437834 ], [ -122.537032633999914, 49.097988119000085 ], [ -122.537029534999945, 49.097673198000059 ], [ -122.537019396999966, 49.096650400000058 ], [ -122.537051417000015, 49.093850741000054 ], [ -122.537061697999945, 49.092951012000043 ], [ -122.53707153, 49.091853753000095 ], [ -122.537079513999942, 49.090963230000071 ], [ -122.537082018999939, 49.090684390000128 ], [ -122.537082714999912, 49.090607397000056 ], [ -122.537085607999984, 49.090297619000047 ], [ -122.537087237999927, 49.090126696000041 ], [ -122.537089805999983, 49.089856858000125 ], [ -122.537090914999965, 49.08973992500011 ], [ -122.537094761999953, 49.08933513800006 ], [ -122.53709508299994, 49.089298188000093 ], [ -122.538169051999958, 49.089303803000085 ], [ -122.539130302999951, 49.089308792000075 ], [ -122.546746885999937, 49.08930689200011 ], [ -122.548194723999984, 49.089310919000127 ], [ -122.548884545, 49.089312815000042 ], [ -122.550851770999927, 49.089318215000034 ], [ -122.552273002999968, 49.089322106000054 ], [ -122.554988009999988, 49.089334563000129 ], [ -122.556306497999969, 49.089340607000054 ], [ -122.559107189999935, 49.089329391000071 ], [ -122.559138983999972, 49.091826113000138 ], [ -122.556692098999989, 49.09182790100003 ], [ -122.55669549, 49.092411188000035 ], [ -122.556632692999969, 49.092520000000142 ], [ -122.556501098999945, 49.092596892000117 ], [ -122.556309186999925, 49.092636707000104 ], [ -122.55469991299999, 49.092641902000061 ], [ -122.554509515999968, 49.09268090300003 ], [ -122.554391214999939, 49.09274288900005 ], [ -122.554288118999963, 49.092841393000057 ], [ -122.553698306999934, 49.094206008000079 ], [ -122.553705098999927, 49.094520801000037 ], [ -122.554416593999974, 49.094528288000028 ], [ -122.555030997999893, 49.094700301000017 ], [ -122.556072086999947, 49.094694008000033 ], [ -122.559176204999943, 49.09469430500009 ], [ -122.559162495999956, 49.096150150000014 ], [ -122.559157197999966, 49.096712597000113 ], [ -122.556059117999922, 49.096708810000074 ], [ -122.553746012999952, 49.096705898000025 ], [ -122.553691404999981, 49.098497703000092 ], [ -122.559146191999957, 49.098528307000045 ], [ -122.559152919999931, 49.100000267000055 ], [ -122.559153524999928, 49.100135116000018 ], [ -122.55915441399992, 49.100326593000041 ], [ -122.559158124999982, 49.100566971000021 ], [ -122.559165986999972, 49.101070762000077 ], [ -122.559176207999911, 49.101727721 ], [ -122.55918250799995, 49.102132793000123 ], [ -122.559194274999967, 49.102960289000066 ], [ -122.559203479999908, 49.103608112000096 ], [ -122.55920990099996, 49.104058816000069 ], [ -122.554185238999949, 49.104068669000078 ], [ -122.554066518999917, 49.104068905000105 ], [ -122.55384910899997, 49.104032495000141 ], [ -122.553850456999953, 49.103881968000074 ], [ -122.553733422, 49.103848628000065 ], [ -122.553522586999932, 49.103847813000129 ], [ -122.5531652989999, 49.103624505 ], [ -122.552780177999963, 49.103517494000087 ], [ -122.55212109199999, 49.103412137000063 ], [ -122.551581019, 49.103325793000039 ], [ -122.551307885999975, 49.103222397000103 ], [ -122.550383904999961, 49.102569095000085 ], [ -122.549659494999943, 49.102476412000073 ], [ -122.549029997999952, 49.102321008000068 ], [ -122.548724917999934, 49.102294043000079 ], [ -122.548646387999938, 49.102287100000034 ], [ -122.548521615999945, 49.10230211900015 ], [ -122.548475271999905, 49.102307667000041 ], [ -122.548262191999939, 49.102333290000111 ], [ -122.54824965399996, 49.102336904000047 ], [ -122.54684410599999, 49.102740212000114 ], [ -122.546900195999939, 49.101984063000017 ], [ -122.546161731999973, 49.101960336000097 ], [ -122.546161134999963, 49.101964462000112 ], [ -122.546053037999968, 49.101956843000053 ], [ -122.54581858, 49.101949308000044 ], [ -122.545818535999942, 49.101949562000051 ], [ -122.545815933999933, 49.101949224000087 ], [ -122.545647845999937, 49.10194382100007 ], [ -122.545645525999944, 49.102197891000117 ], [ -122.544673134000021, 49.102194060000038 ], [ -122.544433536000014, 49.102469062000097 ], [ -122.544409968999943, 49.10247679400009 ], [ -122.544407625999938, 49.102732742000121 ], [ -122.543996634999985, 49.102731119000083 ], [ -122.543994160999915, 49.103000974000047 ], [ -122.542717032999931, 49.102995922000012 ], [ -122.542698307, 49.103248050000055 ], [ -122.542741634999942, 49.103260161000058 ], [ -122.54281889799995, 49.103266192000071 ], [ -122.543580692999939, 49.103269205000096 ], [ -122.543578219999972, 49.103539060000102 ], [ -122.543713317999931, 49.103539594000019 ], [ -122.543990434999969, 49.103407611000058 ], [ -122.54399168899999, 49.103270830000085 ], [ -122.544275273999943, 49.103271949000067 ], [ -122.544342434999962, 49.103239962000096 ], [ -122.544403099999911, 49.103227098000076 ], [ -122.544405155000035, 49.103002597000014 ], [ -122.545227140999913, 49.103005838000037 ], [ -122.545229606999953, 49.102735983000052 ], [ -122.546462580999901, 49.102740833 ], [ -122.546461755999971, 49.102831394000034 ], [ -122.545532810999973, 49.102979286000092 ], [ -122.545229893999959, 49.10305609100002 ], [ -122.544228408999956, 49.103484406000135 ], [ -122.54413924699999, 49.10354392000005 ], [ -122.543620304999976, 49.103890305000014 ], [ -122.543310795999957, 49.104038093000021 ], [ -122.542158386999958, 49.104028007000132 ], [ -122.537089983999934, 49.103984708000105 ], [ -122.53707969199999, 49.103479688000071 ] ], [ [ -122.542353496999965, 49.102634687000048 ], [ -122.542355151999971, 49.102454758000071 ], [ -122.540986678999971, 49.10244932500008 ], [ -122.540958233999959, 49.102463562000054 ], [ -122.540952982999926, 49.102449191000048 ], [ -122.540711197999912, 49.102448229000039 ], [ -122.54071301499998, 49.10225132300009 ], [ -122.540126633999989, 49.102289861000045 ], [ -122.539854933999919, 49.102332662000109 ], [ -122.539695034999966, 49.102212762000079 ], [ -122.539677046999927, 49.102174246000111 ], [ -122.539480729999937, 49.102173462000046 ], [ -122.53947823299994, 49.102443317000088 ], [ -122.539388606999935, 49.10244295900003 ], [ -122.53938146299997, 49.10253903900005 ], [ -122.542353496999965, 49.102634687000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95205145", "BldgCostT": "64301524", "sL_LossRatio": "0.743702033962315", "sL_AssetLoss": "1186256", "sL_BldgLoss": "882221", "sL_StrLoss": "408081", "sL_NStrLoss": "474140", "sL_ContLoss": "304035", "geom_point": "0101000020E6100000A1AECE940AA45EC0AFC6A73A438C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.564009915, 49.104156390000064 ], [ -122.56359269, 49.104055696000017 ], [ -122.562843957999945, 49.104056590000042 ], [ -122.56196279299995, 49.104057595000093 ], [ -122.560637902999986, 49.104058196000075 ], [ -122.55920990099996, 49.104058816000069 ], [ -122.559203479999908, 49.103608112000096 ], [ -122.559194274999967, 49.102960289000066 ], [ -122.55918250799995, 49.102132793000123 ], [ -122.559176207999911, 49.101727721 ], [ -122.559165986999972, 49.101070762000077 ], [ -122.559158124999982, 49.100566971000021 ], [ -122.55915441399992, 49.100326593000041 ], [ -122.559153524999928, 49.100135116000018 ], [ -122.559152919999931, 49.100000267000055 ], [ -122.559146191999957, 49.098528307000045 ], [ -122.553691404999981, 49.098497703000092 ], [ -122.553746012999952, 49.096705898000025 ], [ -122.556059117999922, 49.096708810000074 ], [ -122.559157197999966, 49.096712597000113 ], [ -122.559162495999956, 49.096150150000014 ], [ -122.559176204999943, 49.09469430500009 ], [ -122.556072086999947, 49.094694008000033 ], [ -122.555030997999893, 49.094700301000017 ], [ -122.554416593999974, 49.094528288000028 ], [ -122.553705098999927, 49.094520801000037 ], [ -122.553698306999934, 49.094206008000079 ], [ -122.554288118999963, 49.092841393000057 ], [ -122.554391214999939, 49.09274288900005 ], [ -122.554509515999968, 49.09268090300003 ], [ -122.55469991299999, 49.092641902000061 ], [ -122.556309186999925, 49.092636707000104 ], [ -122.556501098999945, 49.092596892000117 ], [ -122.556632692999969, 49.092520000000142 ], [ -122.55669549, 49.092411188000035 ], [ -122.556692098999989, 49.09182790100003 ], [ -122.559138983999972, 49.091826113000138 ], [ -122.559107189999935, 49.089329391000071 ], [ -122.561908419999924, 49.089328904000112 ], [ -122.564452296999946, 49.089335948000063 ], [ -122.564685802999989, 49.089336600000081 ], [ -122.568547697999989, 49.089344041000054 ], [ -122.57026829199998, 49.089347291000067 ], [ -122.570240871999914, 49.092107973000111 ], [ -122.570231608999947, 49.093042300000114 ], [ -122.570231180999954, 49.093088438000095 ], [ -122.570222787999981, 49.094050935000041 ], [ -122.570199386999903, 49.096731995000034 ], [ -122.570208306999973, 49.099492894000022 ], [ -122.566569135999941, 49.099470772000096 ], [ -122.564802899999975, 49.099460007000054 ], [ -122.564773297999963, 49.100003314000084 ], [ -122.564732193999987, 49.100758648000131 ], [ -122.564706392999966, 49.101232406000072 ], [ -122.564692329999943, 49.101811254000047 ], [ -122.564684884999934, 49.102116966000068 ], [ -122.564664169999944, 49.102971458000091 ], [ -122.564662681999948, 49.103030899000061 ], [ -122.564660599999982, 49.103079347000048 ], [ -122.564619084999947, 49.104029 ], [ -122.564266909999958, 49.10429259000005 ], [ -122.564009915, 49.104156390000064 ] ], [ [ -122.564140312999911, 49.093903388000079 ], [ -122.56433938699999, 49.091205486000014 ], [ -122.56423682800002, 49.091205099000014 ], [ -122.564232104999959, 49.091744812000108 ], [ -122.562177597999948, 49.091737038000069 ], [ -122.562165732999972, 49.09308631900003 ], [ -122.561343907999969, 49.093083199000013 ], [ -122.561334398000028, 49.094162624000028 ], [ -122.562156239000018, 49.094165743000097 ], [ -122.562149118999983, 49.09497531100002 ], [ -122.561327262999953, 49.0949721920001 ], [ -122.56132250899999, 49.09551190400002 ], [ -122.56173344099993, 49.095513464000057 ], [ -122.561731063999972, 49.09578332100007 ], [ -122.562963867999954, 49.09578799500008 ], [ -122.562966237999916, 49.095518138000017 ], [ -122.5633771699999, 49.095519694000117 ], [ -122.56338361499995, 49.094784824000101 ], [ -122.563309033999971, 49.094189562000018 ], [ -122.563350934999946, 49.094077761000115 ], [ -122.563800743999977, 49.094078497000098 ], [ -122.563802289999927, 49.09390211000003 ], [ -122.564140312999911, 49.093903388000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142427667", "BldgCostT": "97226667", "sL_LossRatio": "0.752623718516643", "sL_AssetLoss": "1975250", "sL_BldgLoss": "1486620", "sL_StrLoss": "686710", "sL_NStrLoss": "799910", "sL_ContLoss": "488630", "geom_point": "0101000020E6100000195C101DC4A45EC0EAE5357E7A8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.564619084999947, 49.104029 ], [ -122.564660599999982, 49.103079347000048 ], [ -122.564662681999948, 49.103030899000061 ], [ -122.564664169999944, 49.102971458000091 ], [ -122.564684884999934, 49.102116966000068 ], [ -122.564692329999943, 49.101811254000047 ], [ -122.564706392999966, 49.101232406000072 ], [ -122.564732193999987, 49.100758648000131 ], [ -122.564773297999963, 49.100003314000084 ], [ -122.564802899999975, 49.099460007000054 ], [ -122.566569135999941, 49.099470772000096 ], [ -122.570208306999973, 49.099492894000022 ], [ -122.570199386999903, 49.096731995000034 ], [ -122.570222787999981, 49.094050935000041 ], [ -122.570231180999954, 49.093088438000095 ], [ -122.570231608999947, 49.093042300000114 ], [ -122.570240871999914, 49.092107973000111 ], [ -122.57026829199998, 49.089347291000067 ], [ -122.571588837999926, 49.089340814000067 ], [ -122.575945284999989, 49.089319295000081 ], [ -122.577834204999945, 49.089363205000012 ], [ -122.579312824999974, 49.089362149000053 ], [ -122.579477120999982, 49.089362018000017 ], [ -122.579915419999935, 49.089361705000073 ], [ -122.581292717999972, 49.089360712 ], [ -122.581291940999947, 49.090672970000142 ], [ -122.581291561999961, 49.091320727000088 ], [ -122.581291370999978, 49.09166254000008 ], [ -122.581290597999953, 49.093007192000094 ], [ -122.581288823999927, 49.093228022000098 ], [ -122.581283695, 49.093866684000034 ], [ -122.581261244999922, 49.096655204000029 ], [ -122.581261100999967, 49.096673507000112 ], [ -122.581264432999916, 49.097527456000151 ], [ -122.581265602999935, 49.097823711000039 ], [ -122.581253593999961, 49.098463562000127 ], [ -122.581252409999962, 49.098526506000091 ], [ -122.581224680999981, 49.10000171400003 ], [ -122.581214910999961, 49.100523212000034 ], [ -122.581201398999923, 49.101242779000053 ], [ -122.581191734, 49.101755393000069 ], [ -122.581184473999897, 49.102142166000128 ], [ -122.581150313999984, 49.10396209300005 ], [ -122.579600415999948, 49.103964668000046 ], [ -122.579545632999967, 49.103964751000092 ], [ -122.576435851999946, 49.103969837000072 ], [ -122.573859847999955, 49.103973973000059 ], [ -122.57372275699997, 49.103974200000025 ], [ -122.572476048999988, 49.103976178000025 ], [ -122.572210291999923, 49.103976601000049 ], [ -122.572045877999983, 49.103977697000126 ], [ -122.571656871999949, 49.103939487000105 ], [ -122.570253773999951, 49.103801592000146 ], [ -122.569924506999925, 49.103809093000024 ], [ -122.569575793999931, 49.103858396000142 ], [ -122.569085598999976, 49.104005792000066 ], [ -122.568797808999975, 49.104138182000092 ], [ -122.568624691, 49.104274989000018 ], [ -122.568093794999953, 49.104846224000035 ], [ -122.567405771000026, 49.104824254000057 ], [ -122.567400457999938, 49.105435505000159 ], [ -122.567177381999898, 49.105519004000037 ], [ -122.566166677999931, 49.105515210000085 ], [ -122.56616648699999, 49.105537234000067 ], [ -122.566073837999951, 49.105514664000097 ], [ -122.565976692, 49.105491011000048 ], [ -122.565651394999975, 49.105351700000014 ], [ -122.564266909999958, 49.10429259000005 ], [ -122.564619084999947, 49.104029 ] ], [ [ -122.569177289999956, 49.101228922000139 ], [ -122.569178783999945, 49.101208656000018 ], [ -122.568670192999917, 49.101206756000053 ], [ -122.568670139999938, 49.101212732000107 ], [ -122.569177289999956, 49.101228922000139 ] ], [ [ -122.572809022999962, 49.09783969800003 ], [ -122.572814733999948, 49.097174194000033 ], [ -122.571170946999956, 49.097168099000029 ], [ -122.571156997999964, 49.098787236000092 ], [ -122.571567959, 49.09878876300013 ], [ -122.571563974, 49.09925159600008 ], [ -122.572385702999938, 49.099277805000028 ], [ -122.572389469, 49.098839462000043 ], [ -122.572138834999961, 49.098751761000123 ], [ -122.572143233999938, 49.098522461000137 ], [ -122.572358934999912, 49.098228861000095 ], [ -122.572394980999917, 49.098197694000092 ], [ -122.572396832000024, 49.097982242000043 ], [ -122.572643109999888, 49.097983154000119 ], [ -122.572809022999962, 49.09783969800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160936250", "BldgCostT": "106340000", "sL_LossRatio": "0.723610749423594", "sL_AssetLoss": "2204174", "sL_BldgLoss": "1594964", "sL_StrLoss": "726364", "sL_NStrLoss": "868600", "sL_ContLoss": "609210", "geom_point": "0101000020E6100000D35B766771A45EC0C5A3A70ABE8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.559107189999935, 49.089329391000071 ], [ -122.559083257999973, 49.084294408000062 ], [ -122.559082781999976, 49.084193901000063 ], [ -122.559092305999982, 49.083205346000035 ], [ -122.559107174999937, 49.081654274000101 ], [ -122.559126634, 49.079625258000064 ], [ -122.559127693999955, 49.079517318000072 ], [ -122.559136568999961, 49.078590828000102 ], [ -122.559153380999987, 49.076836757000066 ], [ -122.559157515999942, 49.07640498200012 ], [ -122.559159949, 49.076153111000046 ], [ -122.559163899999959, 49.075739328000097 ], [ -122.559167902999931, 49.075325555000113 ], [ -122.55917617099999, 49.074462009000065 ], [ -122.559177167999934, 49.074355485000098 ], [ -122.56020853499993, 49.074721315000076 ], [ -122.560429659999954, 49.074799755000065 ], [ -122.563944308999979, 49.076046303000034 ], [ -122.564186697999915, 49.076132276000109 ], [ -122.565173319999971, 49.076482154000097 ], [ -122.569998125999945, 49.078192987000101 ], [ -122.57008735799999, 49.078224618000029 ], [ -122.57145903899999, 49.078710955000105 ], [ -122.57306095899996, 49.079278872000032 ], [ -122.573648627999916, 49.079487185000097 ], [ -122.580280320999975, 49.08183781400006 ], [ -122.58134787399996, 49.082213381000017 ], [ -122.58134693199996, 49.082543224000105 ], [ -122.581344554999959, 49.083018214000035 ], [ -122.581343836999935, 49.083162155000124 ], [ -122.581338789, 49.084178629000057 ], [ -122.581334254999945, 49.085087160000079 ], [ -122.581331893999959, 49.085563890000039 ], [ -122.581321857999953, 49.086535547000047 ], [ -122.581311484999958, 49.087542985000063 ], [ -122.581292717999972, 49.089360712 ], [ -122.579915419999935, 49.089361705000073 ], [ -122.579477120999982, 49.089362018000017 ], [ -122.579312824999974, 49.089362149000053 ], [ -122.577834204999945, 49.089363205000012 ], [ -122.575945284999989, 49.089319295000081 ], [ -122.571588837999926, 49.089340814000067 ], [ -122.57026829199998, 49.089347291000067 ], [ -122.568547697999989, 49.089344041000054 ], [ -122.564685802999989, 49.089336600000081 ], [ -122.564452296999946, 49.089335948000063 ], [ -122.561908419999924, 49.089328904000112 ], [ -122.559107189999935, 49.089329391000071 ] ], [ [ -122.57058856899998, 49.081461131000061 ], [ -122.570624426999984, 49.080974146000123 ], [ -122.570488742999942, 49.080973641000099 ], [ -122.570492232999982, 49.080568795000012 ], [ -122.570250615999939, 49.080561082000045 ], [ -122.570260043999966, 49.080433058000025 ], [ -122.570082588999952, 49.080432397000116 ], [ -122.570077929999954, 49.080972112000083 ], [ -122.568845490999962, 49.080967516000058 ], [ -122.568859505999939, 49.079348372000055 ], [ -122.56721630899996, 49.079342223000019 ], [ -122.567220997999982, 49.078802508000116 ], [ -122.566810203999935, 49.078800968000103 ], [ -122.566812549999966, 49.078531111000139 ], [ -122.56475858899995, 49.078523384000079 ], [ -122.564756231, 49.078793241000064 ], [ -122.564345435999911, 49.078791692000081 ], [ -122.56434307399999, 49.079061548000048 ], [ -122.563110685999945, 49.07905689100005 ], [ -122.563115418999956, 49.07851717700003 ], [ -122.562481001999984, 49.07851477300008 ], [ -122.562359851999972, 49.080156260000123 ], [ -122.561274007999913, 49.080121509000087 ], [ -122.561156978999975, 49.081706528000012 ], [ -122.562416423999949, 49.08174683400005 ], [ -122.562384247999958, 49.082182761000084 ], [ -122.562561445999933, 49.082188431000127 ], [ -122.562534167999956, 49.082558008000063 ], [ -122.563878023999933, 49.082600997 ], [ -122.563741112999963, 49.084456590000052 ], [ -122.564706704999963, 49.084460235000087 ], [ -122.564704345999985, 49.084730092000093 ], [ -122.565565026999963, 49.084733335000074 ], [ -122.565624864999975, 49.083921921000126 ], [ -122.566354608999987, 49.083945245000045 ], [ -122.566357118999946, 49.08365685000004 ], [ -122.566633411999973, 49.083657888000083 ], [ -122.566737514999929, 49.08224574300003 ], [ -122.568090317999932, 49.082288964999989 ], [ -122.56815370299995, 49.081428774000088 ], [ -122.569908195000011, 49.08148480600007 ], [ -122.569911530999931, 49.081439517000142 ], [ -122.57058856899998, 49.081461131000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146370061", "BldgCostT": "97173190", "sL_LossRatio": "0.72023922299759", "sL_AssetLoss": "1884267", "sL_BldgLoss": "1357123", "sL_StrLoss": "624853", "sL_NStrLoss": "732270", "sL_ContLoss": "527144", "geom_point": "0101000020E61000007D8216751AA65EC0CD7F8B25178D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.587426813999954, 49.114505582000056 ], [ -122.587470589999924, 49.11390856900011 ], [ -122.58530452199993, 49.11383979500004 ], [ -122.585382038999981, 49.112783273000076 ], [ -122.581449095999943, 49.112658289000073 ], [ -122.58142749699999, 49.11202952399999 ], [ -122.581404302999928, 49.111354802000058 ], [ -122.581333208999979, 49.109285467000099 ], [ -122.581322383999989, 49.108970581000072 ], [ -122.581242302999954, 49.106639757000067 ], [ -122.581200851999938, 49.1054338920001 ], [ -122.581150313999984, 49.10396209300005 ], [ -122.581184473999897, 49.102142166000128 ], [ -122.581191734, 49.101755393000069 ], [ -122.581201398999923, 49.101242779000053 ], [ -122.581214910999961, 49.100523212000034 ], [ -122.581224680999981, 49.10000171400003 ], [ -122.581252409999962, 49.098526506000091 ], [ -122.581253593999961, 49.098463562000127 ], [ -122.581265602999935, 49.097823711000039 ], [ -122.581264432999916, 49.097527456000151 ], [ -122.581261100999967, 49.096673507000112 ], [ -122.581261244999922, 49.096655204000029 ], [ -122.581283695, 49.093866684000034 ], [ -122.581288823999927, 49.093228022000098 ], [ -122.581290597999953, 49.093007192000094 ], [ -122.581291370999978, 49.09166254000008 ], [ -122.581291561999961, 49.091320727000088 ], [ -122.581291940999947, 49.090672970000142 ], [ -122.581292717999972, 49.089360712 ], [ -122.581311484999958, 49.087542985000063 ], [ -122.581321857999953, 49.086535547000047 ], [ -122.581331893999959, 49.085563890000039 ], [ -122.581334254999945, 49.085087160000079 ], [ -122.581338789, 49.084178629000057 ], [ -122.581343836999935, 49.083162155000124 ], [ -122.581344554999959, 49.083018214000035 ], [ -122.58134693199996, 49.082543224000105 ], [ -122.58134787399996, 49.082213381000017 ], [ -122.583007340999956, 49.082805028000138 ], [ -122.58379890099998, 49.083087226000075 ], [ -122.584089913999932, 49.083190963000042 ], [ -122.584563588999941, 49.08335981500008 ], [ -122.585026600999981, 49.083524881000123 ], [ -122.58531194499993, 49.083626594000087 ], [ -122.58719676, 49.084298427000057 ], [ -122.592623676999892, 49.086232613000085 ], [ -122.592793942999947, 49.086293839000071 ], [ -122.599108117999947, 49.08856414500007 ], [ -122.599607007999964, 49.088743986000075 ], [ -122.599749442999922, 49.088855747000089 ], [ -122.59997505299998, 49.088935045000071 ], [ -122.601251119999986, 49.089383612000098 ], [ -122.601682490000016, 49.089532444000042 ], [ -122.603485309999911, 49.090155444000089 ], [ -122.603549951999952, 49.091434604000064 ], [ -122.603558623999973, 49.091605640000132 ], [ -122.603594599999937, 49.09231743900007 ], [ -122.603624995999922, 49.092988903000062 ], [ -122.60373479399999, 49.09495629000007 ], [ -122.6038446, 49.096962295000054 ], [ -122.605845394999946, 49.096938998000041 ], [ -122.607170510999964, 49.096925898000102 ], [ -122.607821314999967, 49.096920315000084 ], [ -122.609196192999931, 49.096900600000062 ], [ -122.609907761999978, 49.096888631000134 ], [ -122.610295715999911, 49.096882107000106 ], [ -122.611935529000036, 49.096860583000129 ], [ -122.612921304999929, 49.096847625000109 ], [ -122.615017522999977, 49.096819107000073 ], [ -122.616148735999957, 49.096797952000081 ], [ -122.618782118999889, 49.096759635000048 ], [ -122.619027291999927, 49.096756061000043 ], [ -122.62060315399999, 49.096739833000122 ], [ -122.62110323399996, 49.096735736000078 ], [ -122.62171980699999, 49.096729931000056 ], [ -122.622134407999951, 49.096772721000058 ], [ -122.622470400999987, 49.096859829000039 ], [ -122.62278477699999, 49.097017527000055 ], [ -122.623418497000017, 49.097474501000121 ], [ -122.623749370999946, 49.09759399900009 ], [ -122.624022103999948, 49.097647589000104 ], [ -122.624556977999958, 49.097655401000033 ], [ -122.624535124999952, 49.099997443000099 ], [ -122.624517488, 49.101886467000092 ], [ -122.624506415999974, 49.103073825000138 ], [ -122.624502453000019, 49.103496617000118 ], [ -122.62450212600001, 49.103532581000103 ], [ -122.624501858999921, 49.103559555000047 ], [ -122.624498495999944, 49.103920799000029 ], [ -122.624428172, 49.103921650000089 ], [ -122.618634097, 49.103991510000071 ], [ -122.618734373000024, 49.102610959000117 ], [ -122.621261434999965, 49.102690424000066 ], [ -122.621304058999968, 49.102103128000053 ], [ -122.621127561, 49.10209757900008 ], [ -122.621308320999958, 49.099606987000136 ], [ -122.618227914999977, 49.09951010900005 ], [ -122.618250155999988, 49.099203897000073 ], [ -122.61433079699998, 49.099080506000078 ], [ -122.614341044999961, 49.098939584000064 ], [ -122.613934592999939, 49.098938225000033 ], [ -122.613928189999967, 49.099026259000027 ], [ -122.61352544, 49.099013570000068 ], [ -122.613490298999963, 49.099496668000022 ], [ -122.610778573999951, 49.099411192000026 ], [ -122.610731418999961, 49.100058933000113 ], [ -122.608391125999944, 49.09998511000007 ], [ -122.608254281999962, 49.101863425000076 ], [ -122.609994756999981, 49.101918332000025 ], [ -122.610009377999958, 49.101717547000085 ], [ -122.61547461399999, 49.10188977500011 ], [ -122.615417628999978, 49.102673572000121 ], [ -122.618065271999981, 49.102756908000046 ], [ -122.617975002999941, 49.103999436000024 ], [ -122.614961655999963, 49.104035627000044 ], [ -122.614947985999947, 49.104035781000057 ], [ -122.614654109999933, 49.10403930800004 ], [ -122.612191981999942, 49.10414338200011 ], [ -122.609591969999968, 49.104253223000114 ], [ -122.607302852999908, 49.104349877000111 ], [ -122.606892740999939, 49.104367193 ], [ -122.606659897999975, 49.104377036000081 ], [ -122.606234255999979, 49.104394999000149 ], [ -122.605999523999913, 49.104404911000074 ], [ -122.604319406999949, 49.10447579 ], [ -122.604242682999939, 49.107593409000046 ], [ -122.604232224999961, 49.107972106000062 ], [ -122.604216061999963, 49.108556790000094 ], [ -122.604129155999914, 49.111698189000052 ], [ -122.604067108999928, 49.11394161100003 ], [ -122.60403039299996, 49.11505060100005 ], [ -122.60396083099999, 49.117150139000067 ], [ -122.603924329, 49.118252333 ], [ -122.603896294999927, 49.119098502000035 ], [ -122.600002165999911, 49.119069040000056 ], [ -122.598348293999933, 49.119056503000095 ], [ -122.59637070499997, 49.119038202000056 ], [ -122.595535230999957, 49.119030462000048 ], [ -122.595384486999947, 49.119029078000047 ], [ -122.594329518999956, 49.11901929200009 ], [ -122.592714709999953, 49.119004297000046 ], [ -122.588546014999935, 49.118982852000045 ], [ -122.587219088999944, 49.118975996000081 ], [ -122.581664610999951, 49.118928490000059 ], [ -122.581589899999983, 49.116755232000052 ], [ -122.582695544999979, 49.116790378000069 ], [ -122.582708450999988, 49.116614629000082 ], [ -122.585463727, 49.116702164000124 ], [ -122.585528679999925, 49.115816895000101 ], [ -122.586354046999986, 49.115843103000067 ], [ -122.586454418999949, 49.114474713000014 ], [ -122.587426813999954, 49.114505582000056 ] ], [ [ -122.602185113999937, 49.106696815000113 ], [ -122.602194151999981, 49.106572980000045 ], [ -122.602101788, 49.106570061000056 ], [ -122.602161016999972, 49.105758650000034 ], [ -122.60210634799995, 49.105756921000086 ], [ -122.602092997999961, 49.105939825000036 ], [ -122.601424399999985, 49.105918688000045 ], [ -122.601379500999968, 49.106533640000116 ], [ -122.59624618, 49.106371222000071 ], [ -122.59623959000001, 49.10646136500003 ], [ -122.594917000999899, 49.106419478000099 ], [ -122.594788825999927, 49.108171595000037 ], [ -122.58932292899999, 49.107998317000053 ], [ -122.589448560999983, 49.106283736000066 ], [ -122.585973846999963, 49.106173437000102 ], [ -122.585840754999936, 49.107988012000085 ], [ -122.585701038999972, 49.107983575000041 ], [ -122.585634360999975, 49.108892565000154 ], [ -122.590398173999986, 49.10904376100013 ], [ -122.590299311999971, 49.110393332000086 ], [ -122.591034535999981, 49.110416648000154 ], [ -122.590973158999986, 49.111254636000112 ], [ -122.593139113999968, 49.111323295000076 ], [ -122.593130380999938, 49.111442614000026 ], [ -122.594371908999946, 49.111481949000016 ], [ -122.594434209999974, 49.110630495000066 ], [ -122.596917730999962, 49.110709139 ], [ -122.596939320000018, 49.110413855000068 ], [ -122.601004786999951, 49.110542468000077 ], [ -122.601035670999977, 49.110119553000068 ], [ -122.601931778999983, 49.11014788100011 ], [ -122.602183715999971, 49.106696771000095 ], [ -122.602185113999937, 49.106696815000113 ] ], [ [ -122.594768225999943, 49.102117825000036 ], [ -122.594793889999934, 49.101766978000107 ], [ -122.597735054999987, 49.101860116000047 ], [ -122.59779110700002, 49.101093149000071 ], [ -122.600739962999953, 49.101186449000117 ], [ -122.600919351999934, 49.098729525000103 ], [ -122.600391706999986, 49.098712836000047 ], [ -122.600654323999919, 49.095116101000066 ], [ -122.60171669499999, 49.09514970000005 ], [ -122.601738036999905, 49.094857299000125 ], [ -122.601253276999898, 49.094841970000054 ], [ -122.601301666999987, 49.094179052000115 ], [ -122.601283317999986, 49.094178472000081 ], [ -122.601326392999951, 49.093588351000058 ], [ -122.601273354999961, 49.093586674000036 ], [ -122.601300821, 49.093210392000039 ], [ -122.60118637399999, 49.093206772000038 ], [ -122.601206571999981, 49.092930068000065 ], [ -122.601156089999947, 49.092928472000075 ], [ -122.601173966999951, 49.092683568000048 ], [ -122.601148805999955, 49.092682772000089 ], [ -122.601166647999932, 49.092438335000111 ], [ -122.60111091899995, 49.092436572000075 ], [ -122.601151670999926, 49.091878279000113 ], [ -122.599980659999986, 49.091874227000041 ], [ -122.599988254999943, 49.09092911500008 ], [ -122.59942509699999, 49.090911294000072 ], [ -122.599381581999964, 49.091507133000015 ], [ -122.597470112999972, 49.091446626000099 ], [ -122.597459908999937, 49.091586278000108 ], [ -122.596695861999976, 49.091562083000028 ], [ -122.596695613999941, 49.091592932000047 ], [ -122.595462906999956, 49.09158861800006 ], [ -122.59546344099999, 49.091523045000066 ], [ -122.593560217999965, 49.091462730000053 ], [ -122.593532663999952, 49.091839373000042 ], [ -122.592173897999928, 49.091796291000065 ], [ -122.592173243999966, 49.091876179000067 ], [ -122.594246681999934, 49.091941913000056 ], [ -122.593983588999961, 49.09553865099999 ], [ -122.58851917599992, 49.095365328000049 ], [ -122.588530014999947, 49.095217406000117 ], [ -122.588036566999932, 49.095201741000068 ], [ -122.588033184999958, 49.09561031800007 ], [ -122.586800382999982, 49.095605912000075 ], [ -122.586804061999914, 49.095162604000059 ], [ -122.586006312999984, 49.095137265000069 ], [ -122.585984558999925, 49.095433945000082 ], [ -122.58593615300002, 49.095432407000033 ], [ -122.585844524999956, 49.09668194900005 ], [ -122.588435195999949, 49.09669121200006 ], [ -122.588417347, 49.098850067000058 ], [ -122.587283705999965, 49.098846019000092 ], [ -122.588145932999964, 49.098873394000094 ], [ -122.587940415999967, 49.101677554000126 ], [ -122.588691285999957, 49.101701388000087 ], [ -122.588667639, 49.102024080000099 ], [ -122.59156550499999, 49.10211601200006 ], [ -122.591522243999961, 49.102706868999988 ], [ -122.592585644999971, 49.102740584000053 ], [ -122.59263496, 49.102066826000112 ], [ -122.594335977999947, 49.102120736000131 ], [ -122.594337189999976, 49.102104168000075 ], [ -122.594768225999943, 49.102117825000036 ] ], [ [ -122.586773620999935, 49.098829822000084 ], [ -122.586782462999963, 49.097764767000051 ], [ -122.586371510999982, 49.097763294000067 ], [ -122.586373751999957, 49.097493438000114 ], [ -122.585762690999928, 49.097491247000029 ], [ -122.585728289999963, 49.097960344000086 ], [ -122.585523985999927, 49.097953854000124 ], [ -122.585462794999955, 49.098788186000064 ], [ -122.586773620999935, 49.098829822000084 ] ], [ [ -122.586478777999929, 49.092310597000044 ], [ -122.586328712999943, 49.092292108000024 ], [ -122.586025294999942, 49.092498602000077 ], [ -122.586353215999935, 49.09256269200003 ], [ -122.586601505999965, 49.092510006000069 ], [ -122.58679440799996, 49.092384692000124 ], [ -122.586478777999929, 49.092310597000044 ] ], [ [ -122.585553381999944, 49.086635526000101 ], [ -122.58555458499994, 49.086619127000084 ], [ -122.585149791999953, 49.086606263000078 ], [ -122.585164090999967, 49.086411245000065 ], [ -122.584716294999936, 49.086397012000099 ], [ -122.584700789999957, 49.086608428000076 ], [ -122.585553381999944, 49.086635526000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "382298167", "BldgCostT": "261231667", "sL_LossRatio": "0.780119758481023", "sL_AssetLoss": "3476497", "sL_BldgLoss": "2712084", "sL_StrLoss": "1194694", "sL_NStrLoss": "1517390", "sL_ContLoss": "764413", "geom_point": "0101000020E6100000CA756DB1D3A75EC07C8DE1DA1E8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.630314739999932, 49.119737324000013 ], [ -122.627405669999916, 49.11813780500011 ], [ -122.625319017999956, 49.119011407000059 ], [ -122.625064705999961, 49.119033255000083 ], [ -122.624336116999984, 49.119095899000058 ], [ -122.619900684999919, 49.119228175000032 ], [ -122.618889801999927, 49.119258298000048 ], [ -122.617940637999979, 49.11924824200004 ], [ -122.603896294999927, 49.119098502000035 ], [ -122.603924329, 49.118252333 ], [ -122.60396083099999, 49.117150139000067 ], [ -122.60403039299996, 49.11505060100005 ], [ -122.604067108999928, 49.11394161100003 ], [ -122.604129155999914, 49.111698189000052 ], [ -122.604216061999963, 49.108556790000094 ], [ -122.604232224999961, 49.107972106000062 ], [ -122.604242682999939, 49.107593409000046 ], [ -122.604319406999949, 49.10447579 ], [ -122.605999523999913, 49.104404911000074 ], [ -122.606234255999979, 49.104394999000149 ], [ -122.606659897999975, 49.104377036000081 ], [ -122.606892740999939, 49.104367193 ], [ -122.607302852999908, 49.104349877000111 ], [ -122.609591969999968, 49.104253223000114 ], [ -122.612191981999942, 49.10414338200011 ], [ -122.614654109999933, 49.10403930800004 ], [ -122.614947985999947, 49.104035781000057 ], [ -122.614961655999963, 49.104035627000044 ], [ -122.617975002999941, 49.103999436000024 ], [ -122.617803956, 49.106353644000095 ], [ -122.616675002999912, 49.10631811700005 ], [ -122.61652152000002, 49.108429669000024 ], [ -122.611575487999986, 49.108273886000063 ], [ -122.611478381, 49.109607787000044 ], [ -122.60912910399999, 49.109533713000069 ], [ -122.609124986, 49.109590244000067 ], [ -122.608303302999957, 49.109564324000083 ], [ -122.608290859999968, 49.10973506400007 ], [ -122.607442598999967, 49.109708299000033 ], [ -122.60738736499998, 49.110466084000059 ], [ -122.606491247999941, 49.110437801000074 ], [ -122.606394492, 49.111764821000058 ], [ -122.609251554999943, 49.111854967000106 ], [ -122.609202055999958, 49.112534392000036 ], [ -122.610003523, 49.112559666000045 ], [ -122.61000817599998, 49.112495778000053 ], [ -122.611183237999938, 49.112532822000084 ], [ -122.611232561999913, 49.111855405000057 ], [ -122.613736031999935, 49.111934286000157 ], [ -122.61373735699999, 49.111916066000077 ], [ -122.6141288099999, 49.11192839500017 ], [ -122.614129742, 49.111915575000062 ], [ -122.614704267999954, 49.111933668000098 ], [ -122.614706817999945, 49.11189858900007 ], [ -122.61516533799994, 49.111913026000096 ], [ -122.615167200999949, 49.111887401000025 ], [ -122.615846547999965, 49.111908787000083 ], [ -122.61587899599995, 49.111462516000117 ], [ -122.620687407999924, 49.111613764000069 ], [ -122.620755861999925, 49.110670937000073 ], [ -122.620749820999933, 49.110670747000064 ], [ -122.621010932999951, 49.107074028000049 ], [ -122.621248312999967, 49.107081489000073 ], [ -122.621299859999951, 49.10637133300002 ], [ -122.622302596999958, 49.106402844000044 ], [ -122.622305519999912, 49.106362557000089 ], [ -122.622707404999943, 49.106375184000044 ], [ -122.622709893999939, 49.106340890000098 ], [ -122.618473110999929, 49.106207698000027 ], [ -122.618634097, 49.103991510000071 ], [ -122.624428172, 49.103921650000089 ], [ -122.624498495999944, 49.103920799000029 ], [ -122.624501858999921, 49.103559555000047 ], [ -122.62450212600001, 49.103532581000103 ], [ -122.624502453000019, 49.103496617000118 ], [ -122.624506415999974, 49.103073825000138 ], [ -122.624517488, 49.101886467000092 ], [ -122.624535124999952, 49.099997443000099 ], [ -122.624556977999958, 49.097655401000033 ], [ -122.62457062199999, 49.096642369000051 ], [ -122.624578817999975, 49.096032023000063 ], [ -122.626919253999944, 49.096650757000063 ], [ -122.627121496999933, 49.096656222000028 ], [ -122.627877195999986, 49.096858988000108 ], [ -122.628753136999961, 49.097094015000053 ], [ -122.629899906999967, 49.097401705000031 ], [ -122.631628335999935, 49.097865424000133 ], [ -122.632720992999978, 49.098158551000054 ], [ -122.63327833699999, 49.098308065000062 ], [ -122.632806574999975, 49.098293287000075 ], [ -122.632805344999937, 49.098460063000097 ], [ -122.632394383999895, 49.098458754000035 ], [ -122.632392391999986, 49.09872861300002 ], [ -122.631570466999989, 49.09872599200002 ], [ -122.631544497999982, 49.102234149000012 ], [ -122.629489540999955, 49.10222757100005 ], [ -122.629487531999942, 49.102497430000042 ], [ -122.628665545000018, 49.102494789000083 ], [ -122.628659504999945, 49.10330436200011 ], [ -122.62669523699999, 49.103298027000037 ], [ -122.626628292999953, 49.104221836000107 ], [ -122.62536481699999, 49.104182178000052 ], [ -122.625364566999949, 49.10421538 ], [ -122.625363379999968, 49.10437317100012 ], [ -122.624495813999943, 49.104370352000046 ], [ -122.624130351999895, 49.104369162000118 ], [ -122.624132058000015, 49.104143470000061 ], [ -122.624101139999965, 49.104142499000091 ], [ -122.62394214699999, 49.106334785000115 ], [ -122.624483986999934, 49.106351800000034 ], [ -122.62860511099997, 49.106481127000052 ], [ -122.628755074999972, 49.104410487000052 ], [ -122.628788292999943, 49.103951806000076 ], [ -122.629844452999961, 49.103984926000059 ], [ -122.629915500999985, 49.103003531000098 ], [ -122.632240209999949, 49.103076392000098 ], [ -122.632243704999965, 49.103028088000059 ], [ -122.635174989999911, 49.103119888000037 ], [ -122.635176682999941, 49.103096459 ], [ -122.637702661999967, 49.103175502000084 ], [ -122.637707407999955, 49.102523519000052 ], [ -122.63868908699996, 49.102526595000072 ], [ -122.638770681999958, 49.104553704000118 ], [ -122.64061488499999, 49.104579795000056 ], [ -122.64272971099993, 49.104595398000122 ], [ -122.637772910999971, 49.108238806000017 ], [ -122.637733913999938, 49.108267443000031 ], [ -122.640041900999961, 49.109452372000085 ], [ -122.640177732999931, 49.109536157000072 ], [ -122.639975555999968, 49.109529839000082 ], [ -122.639945751999932, 49.109942698000104 ], [ -122.634479480999943, 49.109771714000011 ], [ -122.634619329999921, 49.10783750500007 ], [ -122.634051737999926, 49.107819734000032 ], [ -122.633953366999918, 49.109180045000095 ], [ -122.63015100599992, 49.109060923000087 ], [ -122.630057173999958, 49.110356935000034 ], [ -122.628213018999958, 49.11029911300006 ], [ -122.628073100000023, 49.112230479000083 ], [ -122.627749735999956, 49.112220336000064 ], [ -122.627625262, 49.113938208000057 ], [ -122.628181988999984, 49.113955669000056 ], [ -122.628000265999958, 49.116463816000071 ], [ -122.629643491999971, 49.116515336000113 ], [ -122.62957811199999, 49.117418085000033 ], [ -122.631703475999984, 49.117484685000136 ], [ -122.631691274999966, 49.11765324600001 ], [ -122.634583631999988, 49.1177438120001 ], [ -122.634799045999927, 49.114764884000039 ], [ -122.63652419099995, 49.114818864000036 ], [ -122.636613395999944, 49.113584511000077 ], [ -122.636561028999935, 49.113584346000096 ], [ -122.636353834999909, 49.113755062000067 ], [ -122.636084434999958, 49.113608962000065 ], [ -122.636395275999931, 49.113352784000021 ], [ -122.636395557999919, 49.113313962000113 ], [ -122.636158108999908, 49.113313213000019 ], [ -122.635886933999984, 49.113500562000084 ], [ -122.63562423399992, 49.113342562000142 ], [ -122.635986162999956, 49.11308225300013 ], [ -122.635990398999979, 49.112503092000054 ], [ -122.636401474999957, 49.112504388000069 ], [ -122.636403447999939, 49.11223453000013 ], [ -122.636710882, 49.112235498000047 ], [ -122.636734826999927, 49.111904122000084 ], [ -122.637227912999961, 49.111919546000102 ], [ -122.63722953300001, 49.111697401000086 ], [ -122.637265208999949, 49.111697514000056 ], [ -122.637280928999957, 49.111479934000059 ], [ -122.637642111999966, 49.111491231000059 ], [ -122.637642566999915, 49.111428835000076 ], [ -122.638875769999984, 49.111432699000048 ], [ -122.638875065999983, 49.11152978300003 ], [ -122.640325030999975, 49.111575104000053 ], [ -122.640385144999968, 49.110742307000059 ], [ -122.641359861999916, 49.110772762000046 ], [ -122.641372312999977, 49.110600231000078 ], [ -122.641759216999915, 49.110612317000097 ], [ -122.641759937999936, 49.110512073000109 ], [ -122.645020613000014, 49.112523071000048 ], [ -122.64414235699995, 49.113172209000034 ], [ -122.641662377999978, 49.114068082000074 ], [ -122.639536800999949, 49.114881946 ], [ -122.638673108999981, 49.115276651000123 ], [ -122.63705846699996, 49.116113951000052 ], [ -122.63666314699999, 49.116388840000113 ], [ -122.636223950999977, 49.116694189000036 ], [ -122.636063275999973, 49.116805898000045 ], [ -122.635303291999932, 49.117729407000077 ], [ -122.634470062999966, 49.119832604000138 ], [ -122.632702007999939, 49.121049806000059 ], [ -122.631584676000017, 49.120435515000068 ], [ -122.630314739999932, 49.119737324000013 ] ], [ [ -122.60841176299999, 49.117046201000029 ], [ -122.608426494999946, 49.116844052 ], [ -122.613654828999927, 49.117008841000057 ], [ -122.613672587999929, 49.116764779000036 ], [ -122.619139603999912, 49.116936817000102 ], [ -122.619126162999933, 49.117121842000103 ], [ -122.620830190999925, 49.117175408 ], [ -122.620863636999928, 49.116714805000065 ], [ -122.62080405199994, 49.116712933000024 ], [ -122.62084371, 49.116166763000066 ], [ -122.620232527999946, 49.116147553000118 ], [ -122.620220210999975, 49.116317156000029 ], [ -122.618953265999977, 49.116277324000059 ], [ -122.618951858999964, 49.116296687000037 ], [ -122.618163067999902, 49.116271881000017 ], [ -122.618160325999938, 49.116309606000065 ], [ -122.615216574999934, 49.116216977000107 ], [ -122.615213105999914, 49.11626467800005 ], [ -122.614300597999971, 49.116235948000032 ], [ -122.614285176999914, 49.116447900000026 ], [ -122.611679170999963, 49.116365809000115 ], [ -122.611673071999959, 49.116449563000117 ], [ -122.606377262999914, 49.116282546 ], [ -122.606326372999945, 49.116980403000085 ], [ -122.60841176299999, 49.117046201000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.487026543393976", "sL_AssetLoss": "33530", "sL_BldgLoss": "16330", "sL_StrLoss": "4530", "sL_NStrLoss": "11800", "sL_ContLoss": "17200", "geom_point": "0101000020E6100000A6A9AFF8D7A85EC09C981EE2D98C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.637911514999928, 49.101506528000044 ], [ -122.637990922999961, 49.100406941000102 ], [ -122.637856280999941, 49.100402729000088 ], [ -122.637868575999946, 49.100232481000084 ], [ -122.637655783999932, 49.100225824000063 ], [ -122.637670652999944, 49.100019948000124 ], [ -122.637413988999924, 49.100011919000096 ], [ -122.637434601999985, 49.099726526000069 ], [ -122.637114494999977, 49.099716511000061 ], [ -122.637141383999946, 49.099344258 ], [ -122.638810533999973, 49.099791916000108 ], [ -122.638727810999953, 49.101532058000018 ], [ -122.637911514999928, 49.101506528000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157936084", "BldgCostT": "98388334", "sL_LossRatio": "0.690842956094563", "sL_AssetLoss": "1809252", "sL_BldgLoss": "1249909", "sL_StrLoss": "615439", "sL_NStrLoss": "634470", "sL_ContLoss": "559343", "geom_point": "0101000020E61000003895666F40A05EC0F4660DDED7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.498180998999956, 49.060419475000089 ], [ -122.49636019399999, 49.060067099000051 ], [ -122.496244844999964, 49.06005037600012 ], [ -122.495005067999912, 49.059870559000068 ], [ -122.494708874999986, 49.059827593000101 ], [ -122.494600490999971, 49.059850200000056 ], [ -122.492686393, 49.059574897000083 ], [ -122.492690172999957, 49.059524772000053 ], [ -122.492693592, 49.059478688000077 ], [ -122.492684555999986, 49.058096365000054 ], [ -122.49268318599999, 49.057890112000074 ], [ -122.49266589399997, 49.055429707000059 ], [ -122.49242796299994, 49.055434176000105 ], [ -122.491825990999956, 49.055445509000037 ], [ -122.491840811, 49.054577099000078 ], [ -122.491848001999983, 49.053808407000069 ], [ -122.489583008999972, 49.053818209000042 ], [ -122.489589101999954, 49.053101806000022 ], [ -122.492422830999928, 49.053064198000158 ], [ -122.492450186999989, 49.053063820000048 ], [ -122.492648490999983, 49.0530611840001 ], [ -122.492599553999966, 49.049550478000086 ], [ -122.492597414, 49.049396306000062 ], [ -122.492595845999986, 49.049289688000073 ], [ -122.492570877999952, 49.047580581000048 ], [ -122.492562870999961, 49.047031956000048 ], [ -122.492556427999929, 49.046591110000101 ], [ -122.492546937999961, 49.045943409000074 ], [ -122.492544903999899, 49.045803409000023 ], [ -122.494934792999942, 49.045742862000047 ], [ -122.496905587999919, 49.045692916000128 ], [ -122.497823279999963, 49.045669646000079 ], [ -122.498494455999932, 49.045652630000092 ], [ -122.50261541199994, 49.045548005000143 ], [ -122.503819951999958, 49.045517385000046 ], [ -122.50525795199998, 49.045480809000047 ], [ -122.507722305999962, 49.045418120000065 ], [ -122.51071820199995, 49.045341804000067 ], [ -122.510856382999961, 49.045338284000145 ], [ -122.510847375999916, 49.045458630000077 ], [ -122.511419339999975, 49.045477220000109 ], [ -122.511430834999942, 49.045323645000046 ], [ -122.512321929, 49.045300931000085 ], [ -122.513265721999986, 49.045276857000012 ], [ -122.514678512999922, 49.045240797000076 ], [ -122.514678763999939, 49.046909976000109 ], [ -122.51467884, 49.047404735000036 ], [ -122.514678904, 49.047917448000106 ], [ -122.514679038999972, 49.048691087000066 ], [ -122.514679039999976, 49.048736061000085 ], [ -122.514679188999949, 49.049680729000059 ], [ -122.514679355999959, 49.050715139000076 ], [ -122.514679459999954, 49.051425756000079 ], [ -122.514679606999948, 49.05234326000005 ], [ -122.514679657, 49.052676084000105 ], [ -122.514680002999938, 49.054907089000089 ], [ -122.514680168, 49.055932646000038 ], [ -122.514680367999944, 49.057147065000152 ], [ -122.514680595999963, 49.058604402000107 ], [ -122.514680720999962, 49.059476932000081 ], [ -122.514680799999894, 49.059899910000063 ], [ -122.514699997999912, 49.060835893000032 ], [ -122.514718968999944, 49.061762331000118 ], [ -122.514721901999948, 49.061906203000063 ], [ -122.514737761999982, 49.062679786000082 ], [ -122.514741106999949, 49.062841640000066 ], [ -122.514745471999959, 49.063057460000081 ], [ -122.514772647999933, 49.064379944000102 ], [ -122.51243204699999, 49.063700492000116 ], [ -122.508287786999972, 49.062497259000054 ], [ -122.506762364999958, 49.062127655000069 ], [ -122.505306650999955, 49.061832417000041 ], [ -122.503549939999957, 49.061482299000033 ], [ -122.501470917999939, 49.06107077700009 ], [ -122.50120090499999, 49.061017326000062 ], [ -122.50058697899999, 49.060895788000067 ], [ -122.500318532, 49.060842638000111 ], [ -122.500016021999954, 49.060782774000089 ], [ -122.498180998999956, 49.060419475000089 ] ], [ [ -122.511340996999976, 49.059989768000044 ], [ -122.511414761999973, 49.059004502000072 ], [ -122.510114136999931, 49.058962236000106 ], [ -122.510383492999921, 49.055365502000058 ], [ -122.510508183999988, 49.055369555000013 ], [ -122.510528607999987, 49.055096787000082 ], [ -122.510426085999953, 49.055093456000044 ], [ -122.510490735999937, 49.054230069000056 ], [ -122.510053666999937, 49.054215863000067 ], [ -122.510047493999963, 49.054298300000056 ], [ -122.509571348999941, 49.054282821000115 ], [ -122.509402692999984, 49.056534509000109 ], [ -122.507485899999921, 49.056472176000042 ], [ -122.507485533999912, 49.05649226200007 ], [ -122.506805933999914, 49.05649036100003 ], [ -122.506806234999942, 49.056450066000117 ], [ -122.506232259999962, 49.056431390000114 ], [ -122.506226941999969, 49.056968368000049 ], [ -122.506637553999923, 49.056970123000028 ], [ -122.50663488099994, 49.057239979 ], [ -122.507045494999886, 49.057241734000087 ], [ -122.507039016999926, 49.057896840000105 ], [ -122.507128286999958, 49.057899744000053 ], [ -122.507082893999936, 49.058505318000094 ], [ -122.507179022999949, 49.058508445000058 ], [ -122.507125054999975, 49.059228423000043 ], [ -122.50907070099997, 49.05929169700007 ], [ -122.508973350999952, 49.060591076000073 ], [ -122.510873648999919, 49.060652839000035 ], [ -122.510924312999961, 49.059976228000039 ], [ -122.511340996999976, 49.059989768000044 ] ], [ [ -122.51262551399999, 49.047333936000044 ], [ -122.512630477999949, 49.04726760100003 ], [ -122.512250328999968, 49.047255251000067 ], [ -122.512245365999945, 49.047321585000134 ], [ -122.51262551399999, 49.047333936000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84690886", "BldgCostT": "56122079", "sL_LossRatio": "0.748622014364456", "sL_AssetLoss": "898050", "sL_BldgLoss": "672300", "sL_StrLoss": "326890", "sL_NStrLoss": "345410", "sL_ContLoss": "225750", "geom_point": "0101000020E6100000AF07480B429F5EC0CA49D534F7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.485986380999989, 49.053833094000026 ], [ -122.486000091999955, 49.0531069950001 ], [ -122.489589101999954, 49.053101806000022 ], [ -122.489583008999972, 49.053818209000042 ], [ -122.491848001999983, 49.053808407000069 ], [ -122.491840811, 49.054577099000078 ], [ -122.491825990999956, 49.055445509000037 ], [ -122.485308910999947, 49.055504615000117 ], [ -122.485291185999984, 49.054614403000123 ], [ -122.48527027599999, 49.053839397000019 ], [ -122.485986380999989, 49.053833094000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100358623", "BldgCostT": "65848706", "sL_LossRatio": "0.737817077527688", "sL_AssetLoss": "1119600", "sL_BldgLoss": "826060", "sL_StrLoss": "378700", "sL_NStrLoss": "447360", "sL_ContLoss": "293540", "geom_point": "0101000020E61000007FC43B02309F5EC031EEBC4340874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.486696391999914, 49.0580252090001 ], [ -122.486475273999943, 49.057999996000028 ], [ -122.485961812999946, 49.058004812000021 ], [ -122.485317912, 49.057944091000124 ], [ -122.483841903999988, 49.057811896000047 ], [ -122.48384390399994, 49.055536010000061 ], [ -122.485308910999947, 49.055504615000117 ], [ -122.491825990999956, 49.055445509000037 ], [ -122.491837501999953, 49.056473505000042 ], [ -122.489462488999919, 49.056488707000014 ], [ -122.489471692, 49.057420093000097 ], [ -122.489471983, 49.058143099000048 ], [ -122.48836680299992, 49.058156490000094 ], [ -122.487908189999985, 49.058159504000081 ], [ -122.48720769399992, 49.058086100000011 ], [ -122.486696391999914, 49.0580252090001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211110418", "BldgCostT": "138371668", "sL_LossRatio": "0.731217962099599", "sL_AssetLoss": "2155650", "sL_BldgLoss": "1576250", "sL_StrLoss": "669320", "sL_NStrLoss": "906930", "sL_ContLoss": "579400", "geom_point": "0101000020E6100000A0811E8B299F5EC02BC9092C63874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.481689477999964, 49.057958597000074 ], [ -122.48168009599999, 49.057629294 ], [ -122.480052201999925, 49.057498391000124 ], [ -122.47978050799999, 49.057476232000091 ], [ -122.479702687, 49.057469894000086 ], [ -122.479679101999977, 49.05664159100013 ], [ -122.479884274999961, 49.056656316000094 ], [ -122.481019507999946, 49.056737781000081 ], [ -122.481023697999916, 49.055594988000045 ], [ -122.482400011999985, 49.055578804000085 ], [ -122.48313018, 49.055557154000041 ], [ -122.48384390399994, 49.055536010000061 ], [ -122.483841903999988, 49.057811896000047 ], [ -122.485317912, 49.057944091000124 ], [ -122.485961812999946, 49.058004812000021 ], [ -122.486475273999943, 49.057999996000028 ], [ -122.486696391999914, 49.0580252090001 ], [ -122.48720769399992, 49.058086100000011 ], [ -122.487908189999985, 49.058159504000081 ], [ -122.48836680299992, 49.058156490000094 ], [ -122.489471983, 49.058143099000048 ], [ -122.489471692, 49.057420093000097 ], [ -122.489462488999919, 49.056488707000014 ], [ -122.491837501999953, 49.056473505000042 ], [ -122.491825990999956, 49.055445509000037 ], [ -122.49242796299994, 49.055434176000105 ], [ -122.49266589399997, 49.055429707000059 ], [ -122.49268318599999, 49.057890112000074 ], [ -122.492684555999986, 49.058096365000054 ], [ -122.492693592, 49.059478688000077 ], [ -122.492690172999957, 49.059524772000053 ], [ -122.492686393, 49.059574897000083 ], [ -122.492672806999977, 49.059573791000098 ], [ -122.492410723999939, 49.059552739000047 ], [ -122.489479304999946, 49.059316907000117 ], [ -122.481945395999915, 49.058711954000081 ], [ -122.481709318999918, 49.058692996000111 ], [ -122.481702209000019, 49.058579530000017 ], [ -122.481699974999941, 49.05854397100007 ], [ -122.481690503999943, 49.058053306000048 ], [ -122.481689477999964, 49.057958597000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104502000", "BldgCostT": "68385000", "sL_LossRatio": "0.752149916570402", "sL_AssetLoss": "1090740", "sL_BldgLoss": "820400", "sL_StrLoss": "392830", "sL_NStrLoss": "427570", "sL_ContLoss": "270340", "geom_point": "0101000020E6100000EED21B28CF9E5EC051AA75C9D5874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.484675386000035, 49.060383800000096 ], [ -122.486695503999954, 49.06035981400003 ], [ -122.486687189999941, 49.061195994000038 ], [ -122.486692905999945, 49.061937106000109 ], [ -122.48269491799999, 49.061972164000096 ], [ -122.481721003999937, 49.061980689000031 ], [ -122.479249104999951, 49.062006083 ], [ -122.478870211999919, 49.062094599000019 ], [ -122.478556581999968, 49.062116795000058 ], [ -122.476240095999941, 49.062130899000103 ], [ -122.47623550699997, 49.061287099000054 ], [ -122.476237318999935, 49.060449802000022 ], [ -122.476914990999944, 49.0604449080001 ], [ -122.478147202999963, 49.060435820000066 ], [ -122.479215104999952, 49.060428402000106 ], [ -122.479618981999948, 49.060425468000119 ], [ -122.48146307199994, 49.060412895000091 ], [ -122.481695857999938, 49.060410606000033 ], [ -122.48309244599993, 49.060399568000044 ], [ -122.484675386000035, 49.060383800000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116134132", "BldgCostT": "67626782", "sL_LossRatio": "0.660118584176798", "sL_AssetLoss": "1502730", "sL_BldgLoss": "991980", "sL_StrLoss": "455290", "sL_NStrLoss": "536690", "sL_ContLoss": "510750", "geom_point": "0101000020E610000022FFC4AF759E5EC0E36C85D999874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.47070795, 49.06003890900007 ], [ -122.470744907999972, 49.058044704000075 ], [ -122.472251398, 49.058152828000097 ], [ -122.473269794999936, 49.058201607000058 ], [ -122.47451179799999, 49.058207244000066 ], [ -122.474762595999962, 49.058274071 ], [ -122.47654808899992, 49.058275900000083 ], [ -122.477423478999981, 49.058334346000024 ], [ -122.479298818999922, 49.058491321000105 ], [ -122.481695714999944, 49.058691866000046 ], [ -122.481709318999918, 49.058692996000111 ], [ -122.481945395999915, 49.058711954000081 ], [ -122.481700509999982, 49.058899999000111 ], [ -122.481708377999965, 49.059447431000116 ], [ -122.481695857999938, 49.060410606000033 ], [ -122.48146307199994, 49.060412895000091 ], [ -122.479618981999948, 49.060425468000119 ], [ -122.479215104999952, 49.060428402000106 ], [ -122.478147202999963, 49.060435820000066 ], [ -122.476914990999944, 49.0604449080001 ], [ -122.476237318999935, 49.060449802000022 ], [ -122.475723902999931, 49.060453609000071 ], [ -122.474464188999917, 49.060463696000078 ], [ -122.473716229999951, 49.060470222000028 ], [ -122.472252891999986, 49.060483008000112 ], [ -122.470699678999978, 49.0604841970001 ], [ -122.47070795, 49.06003890900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137562144", "BldgCostT": "89936523", "sL_LossRatio": "0.744771744642811", "sL_AssetLoss": "1163390", "sL_BldgLoss": "866460", "sL_StrLoss": "336340", "sL_NStrLoss": "530120", "sL_ContLoss": "296930", "geom_point": "0101000020E6100000F5033EDCA19E5EC01D0AA71E4C874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477423478999981, 49.058334346000024 ], [ -122.47654808899992, 49.058275900000083 ], [ -122.476549089999935, 49.058136204000093 ], [ -122.476543554999978, 49.057431135000094 ], [ -122.476537911999969, 49.0566016820001 ], [ -122.475532708999964, 49.056595704000074 ], [ -122.47552689, 49.055604011000035 ], [ -122.47862848799997, 49.055605711000076 ], [ -122.481023697999916, 49.055594988000045 ], [ -122.481019507999946, 49.056737781000081 ], [ -122.479884274999961, 49.056656316000094 ], [ -122.479679101999977, 49.05664159100013 ], [ -122.479702687, 49.057469894000086 ], [ -122.47978050799999, 49.057476232000091 ], [ -122.480052201999925, 49.057498391000124 ], [ -122.48168009599999, 49.057629294 ], [ -122.481689477999964, 49.057958597000074 ], [ -122.481690503999943, 49.058053306000048 ], [ -122.481699974999941, 49.05854397100007 ], [ -122.481702209000019, 49.058579530000017 ], [ -122.481709318999918, 49.058692996000111 ], [ -122.481695714999944, 49.058691866000046 ], [ -122.479298818999922, 49.058491321000105 ], [ -122.477423478999981, 49.058334346000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238721589", "BldgCostT": "135033797", "sL_LossRatio": "0.62689682233633", "sL_AssetLoss": "2956260", "sL_BldgLoss": "1853270", "sL_StrLoss": "664700", "sL_NStrLoss": "1188570", "sL_ContLoss": "1102990", "geom_point": "0101000020E6100000BA42C328299E5EC0437C17842C874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.474762595999962, 49.058274071 ], [ -122.47451179799999, 49.058207244000066 ], [ -122.473269794999936, 49.058201607000058 ], [ -122.472251398, 49.058152828000097 ], [ -122.470744907999972, 49.058044704000075 ], [ -122.467704361999921, 49.057880169 ], [ -122.467263191999919, 49.057856288000039 ], [ -122.46733650499999, 49.056961808000025 ], [ -122.467359302999952, 49.056264003000116 ], [ -122.46736092, 49.056025202000079 ], [ -122.467349970999948, 49.055520031000114 ], [ -122.46717771499999, 49.055085304000031 ], [ -122.466990619999947, 49.054268778000022 ], [ -122.466996862999977, 49.053957115000088 ], [ -122.466997931999941, 49.053903152 ], [ -122.466998950999979, 49.05385129200004 ], [ -122.4670137199999, 49.053115729000041 ], [ -122.468060496999968, 49.053114111000127 ], [ -122.469126281999976, 49.053113090000068 ], [ -122.470685982999967, 49.053112998000074 ], [ -122.470693904999948, 49.053912805000053 ], [ -122.470695607000025, 49.054070582000094 ], [ -122.470697378999901, 49.05478730600003 ], [ -122.473949983999916, 49.054781499000072 ], [ -122.47551681799996, 49.054778903000056 ], [ -122.47552689, 49.055604011000035 ], [ -122.475532708999964, 49.056595704000074 ], [ -122.476537911999969, 49.0566016820001 ], [ -122.476543554999978, 49.057431135000094 ], [ -122.476549089999935, 49.058136204000093 ], [ -122.47654808899992, 49.058275900000083 ], [ -122.474762595999962, 49.058274071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102708250", "BldgCostT": "66940000", "sL_LossRatio": "0.748990136583229", "sL_AssetLoss": "1018207", "sL_BldgLoss": "762627", "sL_StrLoss": "363137", "sL_NStrLoss": "399490", "sL_ContLoss": "255580", "geom_point": "0101000020E6100000F04861836A9E5EC06ACB8824DD864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.478988308999959, 49.052202603000104 ], [ -122.479002018999935, 49.052202594000036 ], [ -122.479011313999976, 49.053111504000064 ], [ -122.479016191999946, 49.053951690000083 ], [ -122.47901319499999, 49.054770087000101 ], [ -122.47551681799996, 49.054778903000056 ], [ -122.473949983999916, 49.054781499000072 ], [ -122.470697378999901, 49.05478730600003 ], [ -122.470695607000025, 49.054070582000094 ], [ -122.470693904999948, 49.053912805000053 ], [ -122.470685982999967, 49.053112998000074 ], [ -122.473907695999955, 49.053116994000035 ], [ -122.473901470999948, 49.052215417000092 ], [ -122.47390140600001, 49.052206396000066 ], [ -122.478988308999959, 49.052202603000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61215583", "BldgCostT": "41218333", "sL_LossRatio": "0.747426616573506", "sL_AssetLoss": "654780", "sL_BldgLoss": "489400", "sL_StrLoss": "248020", "sL_NStrLoss": "241380", "sL_ContLoss": "165380", "geom_point": "0101000020E6100000ABBBF427589E5EC069D9C5FAA7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.473895291999909, 49.051291304000067 ], [ -122.478995878999982, 49.051287445000128 ], [ -122.479001914999913, 49.052193528000089 ], [ -122.479002018999935, 49.052202594000036 ], [ -122.478988308999959, 49.052202603000104 ], [ -122.47390140600001, 49.052206396000066 ], [ -122.473901470999948, 49.052215417000092 ], [ -122.473907695999955, 49.053116994000035 ], [ -122.470685982999967, 49.053112998000074 ], [ -122.470677243999916, 49.052305446000119 ], [ -122.470675867999944, 49.052177561000079 ], [ -122.47066680599994, 49.051340843000105 ], [ -122.470666313999985, 49.051296082000079 ], [ -122.472164684999981, 49.051291189000075 ], [ -122.473895291999909, 49.051291304000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.782915360501567", "sL_AssetLoss": "12760", "sL_BldgLoss": "9990", "sL_StrLoss": "4970", "sL_NStrLoss": "5020", "sL_ContLoss": "2770", "geom_point": "0101000020E6100000049A00AA959D5EC061CDF910F1854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.462384753, 49.046099032 ], [ -122.463228171999972, 49.046076851000095 ], [ -122.463226291999959, 49.046251547000097 ], [ -122.462815771999914, 49.046249637000074 ], [ -122.462809956999976, 49.04678934600004 ], [ -122.461578383999921, 49.046783607000087 ], [ -122.461585925999941, 49.046085028000086 ], [ -122.462362105999915, 49.046100165000077 ], [ -122.462384753, 49.046099032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129043834", "BldgCostT": "82953334", "sL_LossRatio": "0.723851509368028", "sL_AssetLoss": "1302035", "sL_BldgLoss": "942480", "sL_StrLoss": "458200", "sL_NStrLoss": "484280", "sL_ContLoss": "359555", "geom_point": "0101000020E6100000319A9EA8D39D5EC084C37F7865864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.459760421999974, 49.053124696000054 ], [ -122.459756034999913, 49.046505222000093 ], [ -122.459939208999984, 49.046506079000046 ], [ -122.459935758999947, 49.046824657000087 ], [ -122.461542379999955, 49.046877630000047 ], [ -122.461413373999932, 49.048576848000017 ], [ -122.461942391999941, 49.048594286000082 ], [ -122.46194292899996, 49.048587213000133 ], [ -122.462694622999933, 49.048611985000079 ], [ -122.462694997999947, 49.048607031000081 ], [ -122.46333596199996, 49.048628150000084 ], [ -122.463338071999956, 49.048600346000086 ], [ -122.464095540999963, 49.048625300000019 ], [ -122.464096840999957, 49.048608165000161 ], [ -122.465245655999979, 49.048646 ], [ -122.465246391999955, 49.048636293000058 ], [ -122.465905946999953, 49.048658009000107 ], [ -122.465907766000015, 49.048634009000082 ], [ -122.466506605999882, 49.048653722000104 ], [ -122.466506840999941, 49.048650623000128 ], [ -122.466923300999923, 49.048664331000111 ], [ -122.466941237999919, 49.048427709000109 ], [ -122.466897896999967, 49.048427509000135 ], [ -122.466898740999966, 49.048348650000072 ], [ -122.46631988399993, 49.048329597000077 ], [ -122.466333119999959, 49.048155031000093 ], [ -122.46525863899997, 49.048150057000093 ], [ -122.465261532999946, 49.047880202000066 ], [ -122.464440463999964, 49.04787639500011 ], [ -122.464443362999958, 49.047606541000093 ], [ -122.463622299999955, 49.047602728000044 ], [ -122.463631006999918, 49.046793165000068 ], [ -122.466434641999939, 49.046806160000067 ], [ -122.466495997, 49.045996841000076 ], [ -122.466302450999962, 49.045995945000122 ], [ -122.470128797999962, 49.04589512400009 ], [ -122.470615235999958, 49.045882311000121 ], [ -122.470630414999931, 49.047247693000052 ], [ -122.470635886999972, 49.047740797000067 ], [ -122.470645919999967, 49.049488094000111 ], [ -122.474797989999956, 49.04948660200008 ], [ -122.474791622999987, 49.050403107000079 ], [ -122.472176404999942, 49.050414490000023 ], [ -122.472164684999981, 49.051291189000075 ], [ -122.470666313999985, 49.051296082000079 ], [ -122.47066680599994, 49.051340843000105 ], [ -122.470675867999944, 49.052177561000079 ], [ -122.470677243999916, 49.052305446000119 ], [ -122.470685982999967, 49.053112998000074 ], [ -122.469126281999976, 49.053113090000068 ], [ -122.468060496999968, 49.053114111000127 ], [ -122.4670137199999, 49.053115729000041 ], [ -122.465750292999985, 49.053117310000111 ], [ -122.465476643999949, 49.053117651000015 ], [ -122.464309533999966, 49.05311910100005 ], [ -122.463707345999964, 49.053119849000048 ], [ -122.46347807799998, 49.053120148000083 ], [ -122.459760421999974, 49.053124696000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "442004653", "BldgCostT": "290109983", "sL_LossRatio": "0.756074067121653", "sL_AssetLoss": "1864525", "sL_BldgLoss": "1409719", "sL_StrLoss": "661459", "sL_NStrLoss": "748260", "sL_ContLoss": "454806", "geom_point": "0101000020E610000094980DB6C19D5EC0D47C845094874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.466542998999969, 49.057836407000124 ], [ -122.467263191999919, 49.057856288000039 ], [ -122.467704361999921, 49.057880169 ], [ -122.470744907999972, 49.058044704000075 ], [ -122.47070795, 49.06003890900007 ], [ -122.470699678999978, 49.0604841970001 ], [ -122.469057476999978, 49.060486119000082 ], [ -122.468674415999928, 49.060485231000058 ], [ -122.467976367999952, 49.060487519000041 ], [ -122.467294914999982, 49.060487646000098 ], [ -122.467014903999939, 49.06048804000006 ], [ -122.466087884999965, 49.060489376000071 ], [ -122.46527363699991, 49.060490517000083 ], [ -122.462529894999989, 49.060493011000084 ], [ -122.461158694999966, 49.060493796000031 ], [ -122.461156600999928, 49.061314013000086 ], [ -122.460218906999984, 49.061319092000048 ], [ -122.459792952, 49.061308266000104 ], [ -122.459795703999973, 49.060494790000057 ], [ -122.45977396499994, 49.059430466000038 ], [ -122.45977448499994, 49.058667005000061 ], [ -122.459770626999969, 49.058141371000026 ], [ -122.459765635999972, 49.057649023000046 ], [ -122.462305298, 49.057719208000087 ], [ -122.466283322, 49.057829224000052 ], [ -122.46642001399999, 49.057833002000017 ], [ -122.466542998999969, 49.057836407000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248285000", "BldgCostT": "161390000", "sL_LossRatio": "0.747349587977257", "sL_AssetLoss": "2192112", "sL_BldgLoss": "1638274", "sL_StrLoss": "843484", "sL_NStrLoss": "794790", "sL_ContLoss": "553838", "geom_point": "0101000020E61000007EB0E7C6CF9D5EC0F1F23A039F884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.466801182999973, 49.072627729000054 ], [ -122.466849087999947, 49.07199614200011 ], [ -122.466435533999984, 49.071982538000071 ], [ -122.466708333999975, 49.068385986000102 ], [ -122.467145705999911, 49.068400375000103 ], [ -122.467183400999929, 49.067903317000088 ], [ -122.466682995999989, 49.067886854000037 ], [ -122.466685261999913, 49.067856981000041 ], [ -122.46422587399999, 49.067845588000033 ], [ -122.464246182999972, 49.065956613000033 ], [ -122.463921233999926, 49.065955104000068 ], [ -122.463669949999925, 49.069265576000078 ], [ -122.459823072999939, 49.069138839000118 ], [ -122.459776899999895, 49.066054900000054 ], [ -122.459786498999904, 49.063214778000045 ], [ -122.459842345999974, 49.063216620000098 ], [ -122.459834962999977, 49.063313792000073 ], [ -122.461794284999925, 49.063378368 ], [ -122.461765548999892, 49.063756770000062 ], [ -122.462375087999959, 49.063776853000071 ], [ -122.462271745999985, 49.065137830000083 ], [ -122.462612181999972, 49.065139416000129 ], [ -122.462620911999977, 49.064329855000089 ], [ -122.464263588999927, 49.06433749100006 ], [ -122.464257786999966, 49.064877199000108 ], [ -122.464668461, 49.06487910500006 ], [ -122.464665561999979, 49.065148958000073 ], [ -122.465076236999963, 49.06515086200006 ], [ -122.465073339999975, 49.065420716000069 ], [ -122.465894697999943, 49.065424520000136 ], [ -122.465891805999917, 49.065694373000085 ], [ -122.4661886299999, 49.065695747000106 ], [ -122.466255239, 49.064817577000049 ], [ -122.465399938999937, 49.064789429000029 ], [ -122.465413347999984, 49.064612690000089 ], [ -122.464671358999937, 49.064609251000078 ], [ -122.464680054999974, 49.063799690000103 ], [ -122.465090720999981, 49.063801594 ], [ -122.465096513999967, 49.063261886000141 ], [ -122.464685852999949, 49.063259983000137 ], [ -122.464688750999954, 49.062990128000088 ], [ -122.463046118999969, 49.062982498000075 ], [ -122.463043210999942, 49.063252351000074 ], [ -122.460168588999963, 49.063238942000041 ], [ -122.46017151300002, 49.062969089000028 ], [ -122.459787335, 49.062967291000128 ], [ -122.459788137999965, 49.062729363000074 ], [ -122.459790478999963, 49.062038170000029 ], [ -122.459792952, 49.061308266000104 ], [ -122.460218906999984, 49.061319092000048 ], [ -122.461156600999928, 49.061314013000086 ], [ -122.461158694999966, 49.060493796000031 ], [ -122.462529894999989, 49.060493011000084 ], [ -122.46527363699991, 49.060490517000083 ], [ -122.466087884999965, 49.060489376000071 ], [ -122.467014903999939, 49.06048804000006 ], [ -122.467294914999982, 49.060487646000098 ], [ -122.467976367999952, 49.060487519000041 ], [ -122.468674415999928, 49.060485231000058 ], [ -122.469057476999978, 49.060486119000082 ], [ -122.470699678999978, 49.0604841970001 ], [ -122.47072161399997, 49.0615335930001 ], [ -122.470728555999983, 49.061866494000114 ], [ -122.470749788, 49.062882858000052 ], [ -122.470753804999902, 49.063075704000049 ], [ -122.470771040999978, 49.064148900000106 ], [ -122.470773304999966, 49.065383052000122 ], [ -122.470773723999955, 49.065612849000075 ], [ -122.470774146999972, 49.065984576000098 ], [ -122.47077576599996, 49.067434202000157 ], [ -122.470775757999917, 49.067452237000026 ], [ -122.470776026999943, 49.067677071000055 ], [ -122.470776149999949, 49.067794001000074 ], [ -122.470776481999906, 49.068105261000035 ], [ -122.47077838699991, 49.068747996000042 ], [ -122.470800116999911, 49.069980623000035 ], [ -122.470833353999964, 49.071869694000057 ], [ -122.47083703, 49.072076552000077 ], [ -122.470887610999966, 49.07494859500008 ], [ -122.468539045999989, 49.074958807000051 ], [ -122.468511650999986, 49.074958927000125 ], [ -122.460829526999959, 49.074992014000017 ], [ -122.459991195999962, 49.074995587000046 ], [ -122.459912736999939, 49.072655511000093 ], [ -122.460233549999927, 49.072666085000051 ], [ -122.460236059999929, 49.072633042000092 ], [ -122.460910005999921, 49.072655252000111 ], [ -122.460923741999949, 49.072474459000041 ], [ -122.463607482999976, 49.072562856 ], [ -122.463610528999951, 49.072522724000052 ], [ -122.466801182999973, 49.072627729000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196965311", "BldgCostT": "132358190", "sL_LossRatio": "0.734026134087758", "sL_AssetLoss": "2856040", "sL_BldgLoss": "2096408", "sL_StrLoss": "916448", "sL_NStrLoss": "1179960", "sL_ContLoss": "759632", "geom_point": "0101000020E610000061A78A6F09A35EC0C2C2BDF0528A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.536922382999933, 49.08061758400008 ], [ -122.536924925000022, 49.080023906000058 ], [ -122.536928412999913, 49.079205311000067 ], [ -122.536926375999926, 49.078024270000078 ], [ -122.536925895999957, 49.077738870000097 ], [ -122.536924007999971, 49.076632447000073 ], [ -122.53692372299993, 49.076470545000085 ], [ -122.53692346699998, 49.076335611000069 ], [ -122.536922703999949, 49.075885875000068 ], [ -122.53692021099998, 49.074418981000086 ], [ -122.536940057, 49.070299813000112 ], [ -122.536944299999931, 49.069418188000064 ], [ -122.537979505999928, 49.069642724000062 ], [ -122.540175156999936, 49.070118864000101 ], [ -122.543813799999924, 49.070907811000048 ], [ -122.544002982, 49.070948815000115 ], [ -122.545793991999957, 49.071337112000045 ], [ -122.548075237999953, 49.071831614000104 ], [ -122.548497441000038, 49.07192255100005 ], [ -122.549722780999971, 49.07218648700006 ], [ -122.551048417999979, 49.072472301000055 ], [ -122.55106478899999, 49.072475835000091 ], [ -122.553528980999943, 49.073007074000095 ], [ -122.55380452799993, 49.073066477000111 ], [ -122.555240340999902, 49.073375987000119 ], [ -122.555351356999964, 49.073399925000018 ], [ -122.556319826999982, 49.073608658000062 ], [ -122.556541920999962, 49.073662807000055 ], [ -122.557167097999965, 49.073815172000053 ], [ -122.557822920999939, 49.073975004000083 ], [ -122.559177167999934, 49.074355485000098 ], [ -122.55917617099999, 49.074462009000065 ], [ -122.559167902999931, 49.075325555000113 ], [ -122.559163899999959, 49.075739328000097 ], [ -122.559159949, 49.076153111000046 ], [ -122.559157515999942, 49.07640498200012 ], [ -122.559153380999987, 49.076836757000066 ], [ -122.559136568999961, 49.078590828000102 ], [ -122.559127693999955, 49.079517318000072 ], [ -122.559126634, 49.079625258000064 ], [ -122.559107174999937, 49.081654274000101 ], [ -122.559092305999982, 49.083205346000035 ], [ -122.559082781999976, 49.084193901000063 ], [ -122.559083257999973, 49.084294408000062 ], [ -122.559107189999935, 49.089329391000071 ], [ -122.556306497999969, 49.089340607000054 ], [ -122.554988009999988, 49.089334563000129 ], [ -122.552273002999968, 49.089322106000054 ], [ -122.550851770999927, 49.089318215000034 ], [ -122.548884545, 49.089312815000042 ], [ -122.548194723999984, 49.089310919000127 ], [ -122.546746885999937, 49.08930689200011 ], [ -122.539130302999951, 49.089308792000075 ], [ -122.538169051999958, 49.089303803000085 ], [ -122.53709508299994, 49.089298188000093 ], [ -122.537088640999954, 49.089055175000041 ], [ -122.537079090999939, 49.088695315000095 ], [ -122.537068342999987, 49.0882905 ], [ -122.537056174999947, 49.087831699000034 ], [ -122.537040621999921, 49.087246837000031 ], [ -122.53701626899999, 49.086329273000104 ], [ -122.537007187999976, 49.085987183000064 ], [ -122.537003388999949, 49.085843310000058 ], [ -122.536952501999963, 49.083926307000056 ], [ -122.536949201999931, 49.083720274000072 ], [ -122.53691838899999, 49.081795169000046 ], [ -122.536917627999969, 49.0817440020001 ], [ -122.536921278999955, 49.08087844200012 ], [ -122.536922353999969, 49.080627688000085 ], [ -122.536922382999933, 49.08061758400008 ] ], [ [ -122.554384676, 49.080684202000086 ], [ -122.554447618999944, 49.079833374 ], [ -122.553655114999955, 49.079830312000112 ], [ -122.55366237, 49.079020742000118 ], [ -122.55450749299996, 49.079024008000019 ], [ -122.554549419999915, 49.078457237000073 ], [ -122.555291209999936, 49.078481026000105 ], [ -122.555319807999936, 49.078094355000054 ], [ -122.555521050999971, 49.078100808000016 ], [ -122.555670105999965, 49.076085157000115 ], [ -122.55575451199995, 49.076087864000044 ], [ -122.555813695000026, 49.075287475000032 ], [ -122.55480677499996, 49.075255185000103 ], [ -122.55481508299998, 49.075142848000063 ], [ -122.554139159000016, 49.07512116700007 ], [ -122.554147306999951, 49.075011022000041 ], [ -122.553854514999955, 49.075001629000091 ], [ -122.553794562999911, 49.075811981000058 ], [ -122.552459153999976, 49.07576913 ], [ -122.552454227999988, 49.076317405000054 ], [ -122.552865001999947, 49.076318996000069 ], [ -122.55285941399994, 49.076941621000095 ], [ -122.553387361999967, 49.076958562000058 ], [ -122.55316248099993, 49.079997479000035 ], [ -122.554084323999945, 49.080027052000119 ], [ -122.554036529999934, 49.080673035000132 ], [ -122.554384676, 49.080684202000086 ] ], [ [ -122.544704062999955, 49.077966355000108 ], [ -122.544773583999941, 49.077029197000059 ], [ -122.54417047599999, 49.077009797000073 ], [ -122.544229219, 49.076218036000107 ], [ -122.54390771599995, 49.076207692000096 ], [ -122.543946921999975, 49.075679298000054 ], [ -122.543449133999928, 49.075663281000061 ], [ -122.543499824999955, 49.07498015300007 ], [ -122.543310492, 49.074974060000052 ], [ -122.543258628999979, 49.075672936000039 ], [ -122.542190769999962, 49.075638566000094 ], [ -122.542184900000024, 49.076277130000101 ], [ -122.541363356999938, 49.076273868000058 ], [ -122.541360871999956, 49.076543725000072 ], [ -122.540542337000019, 49.076540469000136 ], [ -122.540538894999969, 49.076586810000052 ], [ -122.54053683299999, 49.076810314000099 ], [ -122.54052229899996, 49.076810256000087 ], [ -122.540493219, 49.077201801000044 ], [ -122.540896735000018, 49.07721479500011 ], [ -122.540850130999956, 49.07784232300002 ], [ -122.544704062999955, 49.077966355000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175454083", "BldgCostT": "118273333", "sL_LossRatio": "0.741245125819146", "sL_AssetLoss": "2064193", "sL_BldgLoss": "1530073", "sL_StrLoss": "716733", "sL_NStrLoss": "813340", "sL_ContLoss": "534120", "geom_point": "0101000020E61000001E91218D2BA05EC0F199D302879B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.460032218999984, 49.219232390000066 ], [ -122.460403992999943, 49.219076705000056 ], [ -122.460696583999933, 49.218609506000021 ], [ -122.461289699999952, 49.218333192000074 ], [ -122.461488714, 49.21779490200003 ], [ -122.461934196999948, 49.217185311000065 ], [ -122.462275103999943, 49.217002024000074 ], [ -122.463825581999956, 49.216168399000054 ], [ -122.464307915999925, 49.216044493 ], [ -122.46458180499998, 49.216064510000059 ], [ -122.464786885999928, 49.216191205000058 ], [ -122.464841216999957, 49.216370695000073 ], [ -122.465154304999913, 49.216588599000026 ], [ -122.465400282999951, 49.216652702000054 ], [ -122.465895204999953, 49.216555809000106 ], [ -122.466260398999978, 49.215900712000085 ], [ -122.466759881999948, 49.215318202000049 ], [ -122.46712009499997, 49.215104502000116 ], [ -122.467917278999934, 49.214919396000063 ], [ -122.468729384999961, 49.214895199000047 ], [ -122.469806143999961, 49.215001646000054 ], [ -122.469881602999962, 49.215009107000085 ], [ -122.471629494999945, 49.214584699000085 ], [ -122.47299140299998, 49.214339695000078 ], [ -122.47325049299991, 49.214403789000094 ], [ -122.474075397999982, 49.214898920000081 ], [ -122.474669494999929, 49.215255488 ], [ -122.47495809499999, 49.215283988000053 ], [ -122.475768907, 49.21518000300005 ], [ -122.476531661999971, 49.215312463000082 ], [ -122.476564695999983, 49.215318190000033 ], [ -122.477237298999924, 49.215312492000102 ], [ -122.477829723999946, 49.21524270400004 ], [ -122.478024067999939, 49.215184166000014 ], [ -122.478297905999952, 49.21510170900013 ], [ -122.478642797999939, 49.214869489000108 ], [ -122.47957940399999, 49.214576206000132 ], [ -122.479966708999925, 49.214379592000071 ], [ -122.480112326999958, 49.214227781000055 ], [ -122.480395688999948, 49.213932393000078 ], [ -122.481107551999955, 49.213477918000073 ], [ -122.481528908999962, 49.213208900000119 ], [ -122.482250892999943, 49.212573709000026 ], [ -122.482901929999969, 49.212221590000127 ], [ -122.483009199999969, 49.212163593000092 ], [ -122.484283690999959, 49.21117938700008 ], [ -122.486659604999957, 49.209813609000079 ], [ -122.487327185999931, 49.209556665 ], [ -122.487514401999988, 49.209484610000096 ], [ -122.487858691000028, 49.209261004000091 ], [ -122.48795699399993, 49.209100099000061 ], [ -122.487935799999917, 49.208460611000191 ], [ -122.488077804999961, 49.208101702000114 ], [ -122.488230088999941, 49.207967804000077 ], [ -122.488670707999944, 49.207806888000107 ], [ -122.488890090999917, 49.207797788000086 ], [ -122.489631311999958, 49.207766997000078 ], [ -122.489922102999927, 49.207705804000049 ], [ -122.489992816999973, 49.207652009000093 ], [ -122.490086914999964, 49.207580403000073 ], [ -122.490158288999964, 49.207409506000097 ], [ -122.490024297999966, 49.207049195000103 ], [ -122.491241315999929, 49.206055096000071 ], [ -122.491353136999976, 49.205666822000062 ], [ -122.491512805999918, 49.205112308000011 ], [ -122.491636688999918, 49.20497840400008 ], [ -122.491701264999918, 49.204961170000075 ], [ -122.492132588999951, 49.204845992000045 ], [ -122.493016549999965, 49.204856048000075 ], [ -122.492971026999967, 49.205458868000107 ], [ -122.494732096999911, 49.205516180000089 ], [ -122.494802970999956, 49.204577181000097 ], [ -122.494813184999927, 49.204578190000042 ], [ -122.494936318999933, 49.204722096000097 ], [ -122.494958089999955, 49.205136500000116 ], [ -122.495671815, 49.205643764000115 ], [ -122.496104306999911, 49.20595110300011 ], [ -122.496513791999931, 49.206123504000054 ], [ -122.49732111, 49.206271603000047 ], [ -122.498072882999935, 49.206678893000102 ], [ -122.498500754999952, 49.206841458000099 ], [ -122.498961511999966, 49.207016489000075 ], [ -122.499036114999939, 49.2072006040001 ], [ -122.499176790999968, 49.207547705000117 ], [ -122.498950991999919, 49.208069008000102 ], [ -122.498990183, 49.208266903000016 ], [ -122.499921287999925, 49.208531794000095 ], [ -122.500304709999924, 49.208722693000034 ], [ -122.500462084999953, 49.209270989000039 ], [ -122.500792882000013, 49.209607639000119 ], [ -122.500579274999936, 49.20960070200006 ], [ -122.500564442999931, 49.209797515000062 ], [ -122.500993140999938, 49.20981143800001 ], [ -122.501128199999968, 49.209948884000056 ], [ -122.501798993999927, 49.210185303000038 ], [ -122.503074899999916, 49.210236600000023 ], [ -122.503967798999966, 49.21033909600002 ], [ -122.505014923999951, 49.209893403000109 ], [ -122.505343899999957, 49.209886190000134 ], [ -122.505535809999969, 49.209994508000122 ], [ -122.505448103999939, 49.210596908000063 ], [ -122.505527691999987, 49.210759308000043 ], [ -122.505814277999946, 49.211004199000101 ], [ -122.50683847799999, 49.211457096000046 ], [ -122.507867297999965, 49.211677896000019 ], [ -122.508100702999968, 49.211692128000053 ], [ -122.508498902, 49.211716411000126 ], [ -122.509446500999971, 49.211657997000032 ], [ -122.51068875299994, 49.211469247000117 ], [ -122.510833908999956, 49.211447201000034 ], [ -122.511685399999976, 49.211460013000078 ], [ -122.51190998099996, 49.21150041100001 ], [ -122.512452910999954, 49.211598090000102 ], [ -122.51338678799999, 49.211656506000118 ], [ -122.514152714999952, 49.212055293000063 ], [ -122.51418209799999, 49.212062084000102 ], [ -122.514329547999964, 49.212096116000083 ], [ -122.514906000999957, 49.212229102000023 ], [ -122.515207106999981, 49.212194909000026 ], [ -122.515310109000012, 49.211610999000094 ], [ -122.515954700999941, 49.21163088600008 ], [ -122.51614083199992, 49.211601468000012 ], [ -122.516504584999936, 49.2115440050001 ], [ -122.516858810999949, 49.211534831000073 ], [ -122.516853752999964, 49.21160227900004 ], [ -122.516418530999914, 49.211588210000109 ], [ -122.51639334399999, 49.211923943000023 ], [ -122.520539095999979, 49.212057892000097 ], [ -122.520447568999927, 49.213279287000049 ], [ -122.520579587999919, 49.213279834000041 ], [ -122.520635498999951, 49.212533706000087 ], [ -122.522587285999961, 49.21259671100006 ], [ -122.522685986999974, 49.211278752000098 ], [ -122.525240430999958, 49.211361157000056 ], [ -122.525334203999975, 49.210108019000138 ], [ -122.525429903999978, 49.210149699000127 ], [ -122.525992284999973, 49.210161101000033 ], [ -122.527934284000011, 49.209458998000102 ], [ -122.527937001999987, 49.209457689 ], [ -122.528999540999976, 49.208943669000128 ], [ -122.52950281399994, 49.208959881000048 ], [ -122.529522949999929, 49.208690455000067 ], [ -122.529962689999977, 49.208477713000022 ], [ -122.531012092999944, 49.20780691300012 ], [ -122.531236682, 49.207719176000062 ], [ -122.532513992999952, 49.207220089000032 ], [ -122.533366291999968, 49.207160294000033 ], [ -122.53473205399996, 49.207636413000067 ], [ -122.533784044999919, 49.206625264000103 ], [ -122.533889875999975, 49.206640599000089 ], [ -122.534344191999978, 49.206666039000041 ], [ -122.534757896999977, 49.206689210000079 ], [ -122.534784421999987, 49.206692419000042 ], [ -122.535453014000012, 49.206773803000061 ], [ -122.535779499999975, 49.206886109000102 ], [ -122.53617365799991, 49.207166300000075 ], [ -122.536185050999933, 49.207174408000043 ], [ -122.536456604999969, 49.207367477000105 ], [ -122.53713510599998, 49.207849792000076 ], [ -122.537425186999926, 49.207973506000023 ], [ -122.537704288999919, 49.208003189000088 ], [ -122.538053212999969, 49.207981995000118 ], [ -122.538439515999983, 49.207899805000139 ], [ -122.538772525999974, 49.20776000300004 ], [ -122.538969801999926, 49.2076356990001 ], [ -122.538741112999986, 49.207960802000052 ], [ -122.538698127999979, 49.208009178000033 ], [ -122.538507408999976, 49.208223692000097 ], [ -122.538166698999959, 49.20839300600008 ], [ -122.537480086999921, 49.208653891000054 ], [ -122.536910294999984, 49.208767102000095 ], [ -122.536112689999925, 49.208859501000127 ], [ -122.535875681999968, 49.208858618000072 ], [ -122.535543212999983, 49.208857386000062 ], [ -122.53524009099999, 49.208780999000062 ], [ -122.535107630999946, 49.208777084000097 ], [ -122.53491131499996, 49.208771301000056 ], [ -122.53469219599999, 49.208820201000059 ], [ -122.534519981999964, 49.208920112000023 ], [ -122.534495110999956, 49.209198608000079 ], [ -122.534513497999981, 49.209917298000079 ], [ -122.534529525999943, 49.210540600000066 ], [ -122.534566447999907, 49.211694766000114 ], [ -122.534595742999954, 49.212644147000077 ], [ -122.534598708999908, 49.212739794000044 ], [ -122.53460064799998, 49.2129308640001 ], [ -122.534600849999933, 49.212951079000028 ], [ -122.534607335999908, 49.213596320000086 ], [ -122.53462711, 49.215557625000045 ], [ -122.534636074, 49.216448405000037 ], [ -122.534637889999942, 49.216629507000015 ], [ -122.534642476999949, 49.217063995000025 ], [ -122.532559194, 49.217071808000085 ], [ -122.532719589999914, 49.217718496000082 ], [ -122.53272238699995, 49.217780946000026 ], [ -122.532731667999911, 49.217987928000127 ], [ -122.532741706999957, 49.21821310500011 ], [ -122.532731805999958, 49.218312120000064 ], [ -122.532649295999974, 49.21913831300003 ], [ -122.531920944999968, 49.219142445000053 ], [ -122.531364994999976, 49.219145603000101 ], [ -122.531192830999927, 49.219141933000131 ], [ -122.530259120999943, 49.219122072000097 ], [ -122.529943551999963, 49.219115349000099 ], [ -122.529382806999962, 49.219103396000037 ], [ -122.529377765999939, 49.220133192000098 ], [ -122.529377492999956, 49.220184593000049 ], [ -122.529289590999952, 49.220314199000093 ], [ -122.523587788999947, 49.220364800000091 ], [ -122.518670249999943, 49.220423021000016 ], [ -122.518114186999981, 49.220429590000094 ], [ -122.518066067999953, 49.220429797000044 ], [ -122.517832802999948, 49.220430757000059 ], [ -122.517544136999973, 49.220431951000101 ], [ -122.516294062999989, 49.220437079000071 ], [ -122.51249809799998, 49.220452604000073 ], [ -122.511597584999947, 49.22044959100009 ], [ -122.509578964999932, 49.220442799000153 ], [ -122.508805615999947, 49.220440196 ], [ -122.503619374999914, 49.220391503000073 ], [ -122.501971710999968, 49.220376000000101 ], [ -122.50152680799998, 49.22037180100007 ], [ -122.500200314999944, 49.220355219000041 ], [ -122.498727009000021, 49.220336804000048 ], [ -122.493431218999916, 49.220251591000107 ], [ -122.491266708999916, 49.220216696000087 ], [ -122.490589582999931, 49.220182991000073 ], [ -122.48999999099999, 49.220136702000048 ], [ -122.489932882999966, 49.220134632000054 ], [ -122.489038304999951, 49.220107191000125 ], [ -122.486003198999967, 49.220116706000148 ], [ -122.485440213999951, 49.220118464000052 ], [ -122.484698580999961, 49.22012077400008 ], [ -122.484355272999949, 49.220121827000064 ], [ -122.482611581999933, 49.220127224000109 ], [ -122.482428296999942, 49.220127795000039 ], [ -122.479658709999939, 49.2201188780001 ], [ -122.477866717999959, 49.220113098000091 ], [ -122.472531765999946, 49.220097309000032 ], [ -122.470385208999986, 49.220090884000093 ], [ -122.46699191499998, 49.220078805000057 ], [ -122.461738715999942, 49.220041694000059 ], [ -122.458364929999945, 49.220013889000015 ], [ -122.458567601, 49.219831503000073 ], [ -122.458722882999922, 49.219509600000031 ], [ -122.459081892999933, 49.219294595000079 ], [ -122.46000280399997, 49.219244708000126 ], [ -122.460032218999984, 49.219232390000066 ] ], [ [ -122.476353210999946, 49.217714866000073 ], [ -122.476480043, 49.216043720000052 ], [ -122.472310772999919, 49.215907316000063 ], [ -122.472318416999954, 49.215806709000013 ], [ -122.47195599099993, 49.215794844000143 ], [ -122.471827487999946, 49.217485871000093 ], [ -122.473275472999916, 49.217533267000107 ], [ -122.473269341999924, 49.21761398800006 ], [ -122.476353210999946, 49.217714866000073 ] ], [ [ -122.485692021999981, 49.216002832000129 ], [ -122.485624547999961, 49.216894233000112 ], [ -122.485716576999948, 49.216897234000065 ], [ -122.485685590999964, 49.217306578000027 ], [ -122.486412064999953, 49.217330265000022 ], [ -122.486425829, 49.217148394000105 ], [ -122.48808861399999, 49.217202594000099 ], [ -122.488258277999961, 49.214959532000094 ], [ -122.49373637299999, 49.215137915000064 ], [ -122.493649304999948, 49.216290828000126 ], [ -122.497093226999979, 49.216402829000096 ], [ -122.496984590999929, 49.217842672000117 ], [ -122.497313693999956, 49.217853369000082 ], [ -122.49731684899993, 49.217811558000037 ], [ -122.49823981699997, 49.217841553000056 ], [ -122.498285528999958, 49.217235492000015 ], [ -122.497756226999925, 49.217218291000094 ], [ -122.497843111999956, 49.216066473000069 ], [ -122.494307177999971, 49.21595150300007 ], [ -122.494373405, 49.215074391000094 ], [ -122.493085089999951, 49.215032473000122 ], [ -122.49313749399991, 49.214338661000056 ], [ -122.492953348999961, 49.214332668000047 ], [ -122.492945940999988, 49.214430749000044 ], [ -122.487467931999973, 49.214252325000054 ], [ -122.48751388699999, 49.213644868000117 ], [ -122.487214860999984, 49.213635120000092 ], [ -122.487478966999959, 49.210143967000079 ], [ -122.486656317999916, 49.210117146000144 ], [ -122.486556512999968, 49.211436211000027 ], [ -122.485904907999966, 49.211414962000049 ], [ -122.48573910199994, 49.213605724000104 ], [ -122.484311014999946, 49.213559141000069 ], [ -122.484241846999922, 49.214472597000096 ], [ -122.485299122999933, 49.214477313 ], [ -122.48529257499996, 49.215108020000088 ], [ -122.485691467999942, 49.215121030000013 ], [ -122.485659244999965, 49.215546748000094 ], [ -122.485689394999966, 49.215547731000136 ], [ -122.485655036999916, 49.216001626000086 ], [ -122.485692021999981, 49.216002832000129 ] ], [ [ -122.506703187999946, 49.216125530000078 ], [ -122.506697176999964, 49.216729558000083 ], [ -122.505461377999922, 49.216724275000075 ], [ -122.505464069999903, 49.21645442600007 ], [ -122.505253423999946, 49.216453524000038 ], [ -122.505164719999954, 49.217631937000107 ], [ -122.505780384999923, 49.217651900000128 ], [ -122.505768660999976, 49.217807667000031 ], [ -122.506344736999921, 49.217826343000119 ], [ -122.506347684999952, 49.217787177000041 ], [ -122.508333850999961, 49.217851546000134 ], [ -122.508334202999961, 49.217815977000029 ], [ -122.508447229999959, 49.217816458000065 ], [ -122.508448711999975, 49.21779675900008 ], [ -122.50834418, 49.217793372000081 ], [ -122.508465315999942, 49.216182637000081 ], [ -122.506703187999946, 49.216125530000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "496577750", "BldgCostT": "324050000", "sL_LossRatio": "0.725058271804821", "sL_AssetLoss": "5731760", "sL_BldgLoss": "4155860", "sL_StrLoss": "2085640", "sL_NStrLoss": "2070220", "sL_ContLoss": "1575900", "geom_point": "0101000020E6100000132F6884EBA25EC01C1947597D994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.534784421999987, 49.206692419000042 ], [ -122.534815608999978, 49.205958014000018 ], [ -122.534808677999976, 49.20585806800009 ], [ -122.534765003999965, 49.20522728100012 ], [ -122.534682339999947, 49.204033838000079 ], [ -122.534468996999948, 49.203295194000106 ], [ -122.534580225999946, 49.203092398000102 ], [ -122.534553113999962, 49.20216789800002 ], [ -122.534539970999958, 49.201461447 ], [ -122.534512942999953, 49.200004261000046 ], [ -122.534504684999916, 49.199560207000047 ], [ -122.534527188999959, 49.199033523000082 ], [ -122.534546886000015, 49.198572079000051 ], [ -122.534558719999964, 49.198115594000072 ], [ -122.534567145, 49.197791907000074 ], [ -122.534577665999947, 49.19738712200008 ], [ -122.534584775999946, 49.196500613000069 ], [ -122.534584435999946, 49.196045522000134 ], [ -122.534685477999957, 49.195794625000076 ], [ -122.534833451999958, 49.195613754000135 ], [ -122.535079012, 49.195412587000135 ], [ -122.535401552999986, 49.195264349000055 ], [ -122.536173025999986, 49.195003504000042 ], [ -122.536462447999952, 49.194825444000038 ], [ -122.536607374999946, 49.194736297000119 ], [ -122.53706190399997, 49.194345392000116 ], [ -122.537292087999958, 49.194055412000104 ], [ -122.538832737999982, 49.192310696000085 ], [ -122.539276327999971, 49.19169775500005 ], [ -122.53949368799999, 49.191303717000061 ], [ -122.540990447999889, 49.191306736000065 ], [ -122.542482026999934, 49.191305966000044 ], [ -122.544521569999958, 49.191308765000088 ], [ -122.545358736, 49.191309892000028 ], [ -122.547497100999976, 49.191312729000046 ], [ -122.547643506999933, 49.19131292400003 ], [ -122.549116668999957, 49.191319591000038 ], [ -122.55006592299999, 49.191323855000128 ], [ -122.550249725999933, 49.191324357000042 ], [ -122.556841866999932, 49.191355961000042 ], [ -122.556809102999964, 49.192868744000066 ], [ -122.556806787999932, 49.192976664000106 ], [ -122.556777547999971, 49.194326033000046 ], [ -122.556766253000021, 49.194847599000049 ], [ -122.556761388999959, 49.195072516000053 ], [ -122.556752413999916, 49.195486336000045 ], [ -122.556750014, 49.195598696000062 ], [ -122.556738206999952, 49.196142729000066 ], [ -122.556720130999935, 49.196978860000051 ], [ -122.556716675999951, 49.19741127900005 ], [ -122.55671504799993, 49.197618196000057 ], [ -122.556708827999984, 49.198409598000069 ], [ -122.55670434399994, 49.198976432000102 ], [ -122.556704080999936, 49.19900812400008 ], [ -122.556269597999915, 49.198921301000013 ], [ -122.555790297, 49.199018104000061 ], [ -122.555102312999949, 49.199177592000076 ], [ -122.554080309999947, 49.199883986000032 ], [ -122.553790910999922, 49.199928194000044 ], [ -122.553079418999928, 49.199600597000078 ], [ -122.553126886999934, 49.198827301000094 ], [ -122.55291001399992, 49.198683393000103 ], [ -122.552586428999987, 49.198696094000113 ], [ -122.552587602999949, 49.198565950000066 ], [ -122.553287950999973, 49.198568661000074 ], [ -122.55331787799993, 49.198165355000057 ], [ -122.55446477699995, 49.198202045000102 ], [ -122.55451730099999, 49.197493969000085 ], [ -122.55383266699999, 49.197491325000051 ], [ -122.553833765999983, 49.197369304000063 ], [ -122.553096591000028, 49.197345718000129 ], [ -122.553146058999985, 49.196679090000103 ], [ -122.552604641999949, 49.196676994000022 ], [ -122.552592470999983, 49.198026248000161 ], [ -122.55218069099999, 49.198024652000115 ], [ -122.552178254999902, 49.198294504000053 ], [ -122.55094290699995, 49.198289707000093 ], [ -122.550945349999921, 49.198019856000045 ], [ -122.550533569, 49.198018254000047 ], [ -122.550531124, 49.198288106000085 ], [ -122.550119341999931, 49.198286503000162 ], [ -122.55011689399997, 49.19855635400009 ], [ -122.549293324999937, 49.198553143000048 ], [ -122.549290871999986, 49.198822993000107 ], [ -122.545173005, 49.198806851 ], [ -122.545175479999941, 49.198537001000055 ], [ -122.541881205999914, 49.198523981000065 ], [ -122.54188369799995, 49.198254129000112 ], [ -122.541471916999967, 49.198252496000094 ], [ -122.541469421999977, 49.198522346000125 ], [ -122.54085780299998, 49.198519916000159 ], [ -122.540812851999988, 49.19912350300006 ], [ -122.541541525999946, 49.199146899000091 ], [ -122.541521603999954, 49.199414446000034 ], [ -122.542338815, 49.199440679000055 ], [ -122.542321942999962, 49.19966732700005 ], [ -122.543571605999944, 49.199707430000068 ], [ -122.543615116999916, 49.199122723000031 ], [ -122.549091556999912, 49.199298298000024 ], [ -122.549089666, 49.199323745000086 ], [ -122.549047399999921, 49.199297201000086 ], [ -122.54859280799991, 49.199314292000054 ], [ -122.548165892999947, 49.199680392000033 ], [ -122.54829969699999, 49.199888304000069 ], [ -122.548738108999927, 49.200123309000027 ], [ -122.54899531299999, 49.200403892000082 ], [ -122.548556795999943, 49.200438013000088 ], [ -122.549158789999979, 49.200512090000075 ], [ -122.54928328699999, 49.200369709000071 ], [ -122.54924471299995, 49.200170300000046 ], [ -122.548657407999926, 49.199854105 ], [ -122.548521603999973, 49.199664698000049 ], [ -122.54874340399999, 49.199512292000051 ], [ -122.548974689999966, 49.199567792000082 ], [ -122.549452492999976, 49.200000790000061 ], [ -122.550012820999939, 49.200318404000036 ], [ -122.550476303999943, 49.200499297000128 ], [ -122.55114878299996, 49.200583304000062 ], [ -122.55134331, 49.200466487000014 ], [ -122.551372015999959, 49.200241491000028 ], [ -122.551060410999952, 49.199710307 ], [ -122.551415841999955, 49.199502548000041 ], [ -122.552017963999958, 49.199521821000133 ], [ -122.552003594999945, 49.199715380000043 ], [ -122.552925238999975, 49.199744875000142 ], [ -122.55293126399998, 49.199663706000059 ], [ -122.553022995999982, 49.199817113000087 ], [ -122.55336390599993, 49.200024997000078 ], [ -122.553939086999932, 49.200107608000067 ], [ -122.554517608999944, 49.199885401000081 ], [ -122.555223803999979, 49.199275903000114 ], [ -122.555499623999964, 49.199169101000081 ], [ -122.555773502999983, 49.199188985000063 ], [ -122.55621337799991, 49.19905509700002 ], [ -122.556702614999963, 49.199193 ], [ -122.556702546999986, 49.199201314000078 ], [ -122.556701127999972, 49.199381228000021 ], [ -122.556698981999958, 49.199651885000037 ], [ -122.556685785999932, 49.20000197100007 ], [ -122.556677708000024, 49.200217112000054 ], [ -122.556659387999971, 49.20209268600005 ], [ -122.556670667999967, 49.205828298000078 ], [ -122.55432750199995, 49.205809114000076 ], [ -122.553862042999938, 49.20580529500004 ], [ -122.551939359999949, 49.205789516000067 ], [ -122.551349304999974, 49.205784643000122 ], [ -122.550059021999942, 49.20577403000005 ], [ -122.549773615999982, 49.205771682000069 ], [ -122.548905974999954, 49.205760981000047 ], [ -122.548164626999949, 49.205751838000062 ], [ -122.547711527999937, 49.205746216000136 ], [ -122.547620683999952, 49.205745111000027 ], [ -122.546415757999952, 49.205734506000034 ], [ -122.544714081, 49.205719501000068 ], [ -122.544606271999953, 49.205732135000041 ], [ -122.544527201999955, 49.205741383000067 ], [ -122.544499054999974, 49.205750893000157 ], [ -122.544177975999958, 49.205859091000079 ], [ -122.543448586999943, 49.206346602000075 ], [ -122.5429139069999, 49.206615099000096 ], [ -122.542244201999964, 49.206853201000058 ], [ -122.542194921999936, 49.206862037000107 ], [ -122.542052212999977, 49.206887596000037 ], [ -122.542025294999959, 49.206888441000089 ], [ -122.541783907999957, 49.20689610300014 ], [ -122.541504897999971, 49.206864603000092 ], [ -122.540900744999959, 49.206662192000053 ], [ -122.540778986999968, 49.206621390000052 ], [ -122.54060922299999, 49.206597895000087 ], [ -122.540497532999964, 49.206605674000052 ], [ -122.54007800899997, 49.20663490200014 ], [ -122.539694985999915, 49.206764092000121 ], [ -122.539107114999965, 49.20717509600005 ], [ -122.539096389999941, 49.207466714000077 ], [ -122.538969801999926, 49.2076356990001 ], [ -122.538772525999974, 49.20776000300004 ], [ -122.538439515999983, 49.207899805000139 ], [ -122.538053212999969, 49.207981995000118 ], [ -122.537704288999919, 49.208003189000088 ], [ -122.537425186999926, 49.207973506000023 ], [ -122.53713510599998, 49.207849792000076 ], [ -122.536456604999969, 49.207367477000105 ], [ -122.536185050999933, 49.207174408000043 ], [ -122.53617365799991, 49.207166300000075 ], [ -122.535779499999975, 49.206886109000102 ], [ -122.535453014000012, 49.206773803000061 ], [ -122.534784421999987, 49.206692419000042 ] ], [ [ -122.546423171999962, 49.197192604000151 ], [ -122.546425638999949, 49.196922754000035 ], [ -122.548484494999926, 49.19693082100008 ], [ -122.548482036999985, 49.197200672000065 ], [ -122.549717356999977, 49.197205494000059 ], [ -122.549719807999935, 49.196935644000121 ], [ -122.550543349999955, 49.196938851000027 ], [ -122.55054968899999, 49.196239197000104 ], [ -122.548936008999974, 49.196187511000062 ], [ -122.548980887000013, 49.195583458000094 ], [ -122.548496775999965, 49.195581567 ], [ -122.548494318999957, 49.195851418000075 ], [ -122.548082555999954, 49.195849807000073 ], [ -122.54807764, 49.196389509000085 ], [ -122.547665872999957, 49.196387896000097 ], [ -122.547663412999938, 49.196657748000042 ], [ -122.546016335999965, 49.196651285000016 ], [ -122.546018806999939, 49.196381435000042 ], [ -122.545607040000021, 49.196379815000078 ], [ -122.545609511999913, 49.196109964000115 ], [ -122.543962454999985, 49.196103473000058 ], [ -122.543964935999924, 49.195833622000038 ], [ -122.543553173999939, 49.195831995000013 ], [ -122.543545724999916, 49.196641548000137 ], [ -122.540933987999935, 49.196631197000059 ], [ -122.540877224, 49.197393445000081 ], [ -122.540941539999935, 49.197395510000092 ], [ -122.54093816699999, 49.197440796000123 ], [ -122.545185377999971, 49.197457597000074 ], [ -122.545187849999948, 49.197187746000054 ], [ -122.546423171999962, 49.197192604000151 ] ], [ [ -122.54521506599994, 49.194219389000104 ], [ -122.545222283999948, 49.193432122000047 ], [ -122.544810647999952, 49.193418918000084 ], [ -122.544803318999968, 49.194217766000037 ], [ -122.54521506599994, 49.194219389000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.756062767475036", "sL_AssetLoss": "14020", "sL_BldgLoss": "10600", "sL_StrLoss": "5330", "sL_NStrLoss": "5270", "sL_ContLoss": "3420", "geom_point": "0101000020E61000002B09DCFC37A35EC0914049A293994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.549264696999956, 49.199433661000086 ], [ -122.550912466999989, 49.199486432000079 ], [ -122.550746789999891, 49.199556497000067 ], [ -122.551083587999955, 49.200250007000115 ], [ -122.550890604999893, 49.200356892000052 ], [ -122.550342695999959, 49.200238611000039 ], [ -122.549933903999928, 49.199885396000049 ], [ -122.549439685999971, 49.199757307000048 ], [ -122.549278795999925, 49.19944251500003 ], [ -122.549264696999956, 49.199433661000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214058501", "BldgCostT": "143260001", "sL_LossRatio": "0.748086516343309", "sL_AssetLoss": "2284054", "sL_BldgLoss": "1708670", "sL_StrLoss": "834910", "sL_NStrLoss": "873760", "sL_ContLoss": "575384", "geom_point": "0101000020E61000002DE57440EFA25EC07F8D3DDE589B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.532719589999914, 49.217718496000082 ], [ -122.532559194, 49.217071808000085 ], [ -122.534642476999949, 49.217063995000025 ], [ -122.534637889999942, 49.216629507000015 ], [ -122.534636074, 49.216448405000037 ], [ -122.53462711, 49.215557625000045 ], [ -122.534607335999908, 49.213596320000086 ], [ -122.534600849999933, 49.212951079000028 ], [ -122.53460064799998, 49.2129308640001 ], [ -122.534598708999908, 49.212739794000044 ], [ -122.534595742999954, 49.212644147000077 ], [ -122.534566447999907, 49.211694766000114 ], [ -122.534529525999943, 49.210540600000066 ], [ -122.534513497999981, 49.209917298000079 ], [ -122.534495110999956, 49.209198608000079 ], [ -122.534519981999964, 49.208920112000023 ], [ -122.53469219599999, 49.208820201000059 ], [ -122.53491131499996, 49.208771301000056 ], [ -122.535107630999946, 49.208777084000097 ], [ -122.53524009099999, 49.208780999000062 ], [ -122.535543212999983, 49.208857386000062 ], [ -122.535875681999968, 49.208858618000072 ], [ -122.536112689999925, 49.208859501000127 ], [ -122.536910294999984, 49.208767102000095 ], [ -122.537480086999921, 49.208653891000054 ], [ -122.538166698999959, 49.20839300600008 ], [ -122.538507408999976, 49.208223692000097 ], [ -122.538698127999979, 49.208009178000033 ], [ -122.538741112999986, 49.207960802000052 ], [ -122.538969801999926, 49.2076356990001 ], [ -122.539096389999941, 49.207466714000077 ], [ -122.539107114999965, 49.20717509600005 ], [ -122.539694985999915, 49.206764092000121 ], [ -122.54007800899997, 49.20663490200014 ], [ -122.540497532999964, 49.206605674000052 ], [ -122.54060922299999, 49.206597895000087 ], [ -122.540778986999968, 49.206621390000052 ], [ -122.540900744999959, 49.206662192000053 ], [ -122.541504897999971, 49.206864603000092 ], [ -122.541783907999957, 49.20689610300014 ], [ -122.542025294999959, 49.206888441000089 ], [ -122.542052212999977, 49.206887596000037 ], [ -122.542194921999936, 49.206862037000107 ], [ -122.542244201999964, 49.206853201000058 ], [ -122.5429139069999, 49.206615099000096 ], [ -122.543448586999943, 49.206346602000075 ], [ -122.544177975999958, 49.205859091000079 ], [ -122.544499054999974, 49.205750893000157 ], [ -122.544527201999955, 49.205741383000067 ], [ -122.544606271999953, 49.205732135000041 ], [ -122.544714081, 49.205719501000068 ], [ -122.546415757999952, 49.205734506000034 ], [ -122.547620683999952, 49.205745111000027 ], [ -122.547711527999937, 49.205746216000136 ], [ -122.548164626999949, 49.205751838000062 ], [ -122.548905974999954, 49.205760981000047 ], [ -122.549773615999982, 49.205771682000069 ], [ -122.550059021999942, 49.20577403000005 ], [ -122.551349304999974, 49.205784643000122 ], [ -122.551939359999949, 49.205789516000067 ], [ -122.553862042999938, 49.20580529500004 ], [ -122.55432750199995, 49.205809114000076 ], [ -122.556670667999967, 49.205828298000078 ], [ -122.55665565299995, 49.206715448000075 ], [ -122.556701845999982, 49.208406563000089 ], [ -122.55673608499994, 49.20968958000006 ], [ -122.556749086, 49.210176074000096 ], [ -122.55680457699999, 49.211857056000021 ], [ -122.556844261999942, 49.21305822900009 ], [ -122.556963010999951, 49.21669535500012 ], [ -122.557043629999967, 49.218514892000094 ], [ -122.557081057999952, 49.219360492000135 ], [ -122.557124742999946, 49.220346465 ], [ -122.554939037999972, 49.220335654000088 ], [ -122.55255439199999, 49.220323815000036 ], [ -122.549743472999964, 49.220310460000128 ], [ -122.548086739000027, 49.220305694000025 ], [ -122.5465212229999, 49.220301107000026 ], [ -122.545938394999936, 49.220299398000101 ], [ -122.541152304999969, 49.22025762100008 ], [ -122.540418419999966, 49.220251200000156 ], [ -122.538913490999946, 49.22025676800007 ], [ -122.537595461999956, 49.220261618000052 ], [ -122.534702386999953, 49.220272196000103 ], [ -122.531772870999959, 49.220294974000097 ], [ -122.529289590999952, 49.220314199000093 ], [ -122.529377492999956, 49.220184593000049 ], [ -122.529377765999939, 49.220133192000098 ], [ -122.529382806999962, 49.219103396000037 ], [ -122.529943551999963, 49.219115349000099 ], [ -122.530259120999943, 49.219122072000097 ], [ -122.531192830999927, 49.219141933000131 ], [ -122.531364994999976, 49.219145603000101 ], [ -122.531920944999968, 49.219142445000053 ], [ -122.532649295999974, 49.21913831300003 ], [ -122.532731805999958, 49.218312120000064 ], [ -122.532741706999957, 49.21821310500011 ], [ -122.532731667999911, 49.217987928000127 ], [ -122.53272238699995, 49.217780946000026 ], [ -122.532719589999914, 49.217718496000082 ] ], [ [ -122.545138080999919, 49.217711519000026 ], [ -122.545274377999974, 49.215879832000084 ], [ -122.544433777999942, 49.215852881000075 ], [ -122.544275539999887, 49.217978900000027 ], [ -122.54471642599999, 49.217993036000109 ], [ -122.544738330999934, 49.217698704000128 ], [ -122.545138080999919, 49.217711519000026 ] ], [ [ -122.55291717599998, 49.216108123000076 ], [ -122.552901367999979, 49.216321046000125 ], [ -122.55291996899993, 49.216321640000082 ], [ -122.552817748999971, 49.217698412000118 ], [ -122.55296041299999, 49.217702976000055 ], [ -122.552979160999968, 49.217450467000056 ], [ -122.552972743999931, 49.217450262000135 ], [ -122.55307234299994, 49.216108722000065 ], [ -122.55291717599998, 49.216108123000076 ] ], [ [ -122.544239080999958, 49.210811937000145 ], [ -122.544242801999957, 49.210407169000085 ], [ -122.54465468399998, 49.210408793000035 ], [ -122.54465674799998, 49.210184038000079 ], [ -122.543768056999937, 49.210155536000102 ], [ -122.543794771999956, 49.209796599000107 ], [ -122.539869942999985, 49.209670634000084 ], [ -122.539879574999958, 49.209541372000075 ], [ -122.537918582999922, 49.209478381000075 ], [ -122.537951796999977, 49.209032875000091 ], [ -122.537834848999935, 49.209032407000016 ], [ -122.537733900999925, 49.210386346000071 ], [ -122.53822474399999, 49.210402117000058 ], [ -122.538197254999886, 49.210770835000055 ], [ -122.542656310999959, 49.210914001000077 ], [ -122.542652738999962, 49.210961987000076 ], [ -122.544190919999934, 49.211011329000016 ], [ -122.544205838999915, 49.210810870000046 ], [ -122.544239080999958, 49.210811937000145 ] ], [ [ -122.54671562499999, 49.210250042000077 ], [ -122.546714098999956, 49.210416893000072 ], [ -122.547125981999969, 49.210418508000032 ], [ -122.547122182999942, 49.210834379000104 ], [ -122.547461108, 49.210845238000097 ], [ -122.547461805999959, 49.210835850000073 ], [ -122.548357612999936, 49.210864549000092 ], [ -122.548359172999966, 49.210693197000062 ], [ -122.549182943999966, 49.210696415000029 ], [ -122.549184260999965, 49.210551577000096 ], [ -122.548046990999964, 49.210515149000109 ], [ -122.548061395999952, 49.210321378000081 ], [ -122.547117170999968, 49.21029112500004 ], [ -122.54711926499999, 49.210262977000099 ], [ -122.54671562499999, 49.210250042000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78602749", "BldgCostT": "53944999", "sL_LossRatio": "0.767661217191321", "sL_AssetLoss": "900943", "sL_BldgLoss": "691619", "sL_StrLoss": "333859", "sL_NStrLoss": "357760", "sL_ContLoss": "209324", "geom_point": "0101000020E6100000AE4C9DEC0BA25EC011ACE442699C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.531772870999959, 49.220294974000097 ], [ -122.534702386999953, 49.220272196000103 ], [ -122.534751095999951, 49.221237909000095 ], [ -122.534773890999986, 49.222661493000082 ], [ -122.534804690999962, 49.223591595000052 ], [ -122.53311778799997, 49.223602212000074 ], [ -122.529193596999988, 49.223654406000072 ], [ -122.529192101999982, 49.223270405000072 ], [ -122.529192679999966, 49.222711694000118 ], [ -122.529193984999921, 49.222198093000017 ], [ -122.529210711999951, 49.221277692000058 ], [ -122.529211217999915, 49.220444196000066 ], [ -122.529289590999952, 49.220314199000093 ], [ -122.531772870999959, 49.220294974000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160965291", "BldgCostT": "106943048", "sL_LossRatio": "0.761453775048236", "sL_AssetLoss": "1348049", "sL_BldgLoss": "1026477", "sL_StrLoss": "497537", "sL_NStrLoss": "528940", "sL_ContLoss": "321572", "geom_point": "0101000020E61000008CFE1A5AEEA25EC0EBD48D5EAA9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.534917809999968, 49.227742195000054 ], [ -122.534858915, 49.225444238000094 ], [ -122.534857110999937, 49.225372998000033 ], [ -122.534835109999932, 49.224733715000113 ], [ -122.534828259999927, 49.224535439000078 ], [ -122.534825903999959, 49.224466392000096 ], [ -122.534804690999962, 49.223591595000052 ], [ -122.534773890999986, 49.222661493000082 ], [ -122.534751095999951, 49.221237909000095 ], [ -122.534702386999953, 49.220272196000103 ], [ -122.537595461999956, 49.220261618000052 ], [ -122.538913490999946, 49.22025676800007 ], [ -122.540418419999966, 49.220251200000156 ], [ -122.541152304999969, 49.22025762100008 ], [ -122.545938394999936, 49.220299398000101 ], [ -122.5465212229999, 49.220301107000026 ], [ -122.548086739000027, 49.220305694000025 ], [ -122.549743472999964, 49.220310460000128 ], [ -122.55255439199999, 49.220323815000036 ], [ -122.554939037999972, 49.220335654000088 ], [ -122.557124742999946, 49.220346465 ], [ -122.557130886999971, 49.220917159000095 ], [ -122.557138682999934, 49.221645799000051 ], [ -122.557143100999951, 49.222058343000093 ], [ -122.557153300999957, 49.223008213000078 ], [ -122.557167902999979, 49.224368230000039 ], [ -122.557170621999944, 49.224623601000111 ], [ -122.557172829999971, 49.224826524000072 ], [ -122.557174812999904, 49.225307453000077 ], [ -122.557176225999982, 49.225649250000082 ], [ -122.557176573999982, 49.225730203000076 ], [ -122.55717699899995, 49.225829153000092 ], [ -122.557178935999957, 49.226296951000023 ], [ -122.55717911699999, 49.226334304000048 ], [ -122.55722529800002, 49.227358491000118 ], [ -122.557262392999945, 49.227507503000062 ], [ -122.557313270999899, 49.227567348 ], [ -122.556386387999936, 49.227653393000033 ], [ -122.554332687999974, 49.227664407000105 ], [ -122.553636601999926, 49.227652097000018 ], [ -122.553252244999925, 49.227645307000053 ], [ -122.552058021999983, 49.227624179000067 ], [ -122.550867086000011, 49.227603099000071 ], [ -122.549900602000022, 49.227634362000089 ], [ -122.549256625999945, 49.227655207000083 ], [ -122.548102980999943, 49.227639881000108 ], [ -122.548052087999935, 49.227639194000076 ], [ -122.546077385999922, 49.227694804000038 ], [ -122.544869682999945, 49.227703897000062 ], [ -122.54343914399999, 49.227711625000076 ], [ -122.543258240999961, 49.227712615000087 ], [ -122.540538172999959, 49.22772717200008 ], [ -122.539686339999918, 49.227729471000075 ], [ -122.537869170999912, 49.227734359000067 ], [ -122.534917809999968, 49.227742195000054 ] ], [ [ -122.552845444999946, 49.225283061000098 ], [ -122.552865477999958, 49.225013280000084 ], [ -122.552348881999961, 49.225011279000078 ], [ -122.552351318999911, 49.224741430000094 ], [ -122.551115313999944, 49.224736633000106 ], [ -122.551112867999947, 49.225006482000062 ], [ -122.549555972999926, 49.225000422000086 ], [ -122.549546600000014, 49.225126537000101 ], [ -122.54972503099999, 49.225132249000033 ], [ -122.549632184999922, 49.226381350000054 ], [ -122.54972640299999, 49.226384366000076 ], [ -122.549737247999971, 49.226238449000149 ], [ -122.552337044999902, 49.226321634000087 ], [ -122.552346443999966, 49.225281128000077 ], [ -122.552845444999946, 49.225283061000098 ] ], [ [ -122.550301103999942, 49.223654029000052 ], [ -122.550306000999967, 49.223114330000058 ], [ -122.54967364099997, 49.223111867000043 ], [ -122.549633537999966, 49.223651429000064 ], [ -122.550301103999942, 49.223654029000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98683417", "BldgCostT": "66561667", "sL_LossRatio": "0.738975604885679", "sL_AssetLoss": "1201880", "sL_BldgLoss": "888160", "sL_StrLoss": "431040", "sL_NStrLoss": "457120", "sL_ContLoss": "313720", "geom_point": "0101000020E6100000A4E93FADDAA15EC0A33D56D73E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.523581516999982, 49.223968405000107 ], [ -122.52358295399992, 49.223140860000022 ], [ -122.523584640999971, 49.222169358000023 ], [ -122.523587788999947, 49.220364800000091 ], [ -122.529289590999952, 49.220314199000093 ], [ -122.529211217999915, 49.220444196000066 ], [ -122.529210711999951, 49.221277692000058 ], [ -122.529193984999921, 49.222198093000017 ], [ -122.529192679999966, 49.222711694000118 ], [ -122.529192101999982, 49.223270405000072 ], [ -122.529193596999988, 49.223654406000072 ], [ -122.53311778799997, 49.223602212000074 ], [ -122.534804690999962, 49.223591595000052 ], [ -122.534825903999959, 49.224466392000096 ], [ -122.534828259999927, 49.224535439000078 ], [ -122.534835109999932, 49.224733715000113 ], [ -122.534857110999937, 49.225372998000033 ], [ -122.534858915, 49.225444238000094 ], [ -122.534917809999968, 49.227742195000054 ], [ -122.534982678999967, 49.230497195000083 ], [ -122.535035296999965, 49.232677634000069 ], [ -122.535069182999933, 49.234081143 ], [ -122.535088277999947, 49.234872626000026 ], [ -122.535094411999921, 49.235126182000023 ], [ -122.533563468999915, 49.235156303000068 ], [ -122.53303284299993, 49.23516807500004 ], [ -122.532126405, 49.23518818600008 ], [ -122.530408943999973, 49.235226274000048 ], [ -122.52766100799991, 49.235287140000068 ], [ -122.526068482999932, 49.235322392000128 ], [ -122.524160554999952, 49.235314243000062 ], [ -122.523556383999917, 49.227989109000106 ], [ -122.523579594999973, 49.225057608000029 ], [ -122.523581516999982, 49.223968405000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71728750", "BldgCostT": "48205000", "sL_LossRatio": "0.754405478764374", "sL_AssetLoss": "812738", "sL_BldgLoss": "613134", "sL_StrLoss": "303974", "sL_NStrLoss": "309160", "sL_ContLoss": "199604", "geom_point": "0101000020E61000009F561BAD34A15EC0710E2242719D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.5118895949999, 49.238401508000045 ], [ -122.511945853999961, 49.236666550000052 ], [ -122.511951683999925, 49.236486564000131 ], [ -122.511973000999916, 49.235829865000014 ], [ -122.511999109999948, 49.235024904000092 ], [ -122.512004612999959, 49.234903442000046 ], [ -122.512251491999962, 49.229492006000093 ], [ -122.51233860899994, 49.227602403000084 ], [ -122.512365507999945, 49.226951789000076 ], [ -122.512361152999986, 49.226664948000064 ], [ -122.512349584999967, 49.225902395000055 ], [ -122.512357132999924, 49.225711756000088 ], [ -122.512419388999945, 49.224138085000043 ], [ -122.512488415999883, 49.222393404000101 ], [ -122.512503895999956, 49.222001787000089 ], [ -122.512503733999949, 49.221961134000054 ], [ -122.512502968999954, 49.221754254000061 ], [ -122.512502183, 49.221538531000064 ], [ -122.51250025399996, 49.221025675000142 ], [ -122.51249809799998, 49.220452604000073 ], [ -122.516294062999989, 49.220437079000071 ], [ -122.517544136999973, 49.220431951000101 ], [ -122.517832802999948, 49.220430757000059 ], [ -122.518066067999953, 49.220429797000044 ], [ -122.518114186999981, 49.220429590000094 ], [ -122.518670249999943, 49.220423021000016 ], [ -122.523587788999947, 49.220364800000091 ], [ -122.523584640999971, 49.222169358000023 ], [ -122.52358295399992, 49.223140860000022 ], [ -122.523581516999982, 49.223968405000107 ], [ -122.523579594999973, 49.225057608000029 ], [ -122.523556383999917, 49.227989109000106 ], [ -122.524160554999952, 49.235314243000062 ], [ -122.526068482999932, 49.235322392000128 ], [ -122.52766100799991, 49.235287140000068 ], [ -122.530408943999973, 49.235226274000048 ], [ -122.532126405, 49.23518818600008 ], [ -122.53303284299993, 49.23516807500004 ], [ -122.533563468999915, 49.235156303000068 ], [ -122.533559380999961, 49.235170706000055 ], [ -122.53344259099994, 49.235580411000036 ], [ -122.533340643999921, 49.235728359000078 ], [ -122.533250003999953, 49.235859895000011 ], [ -122.533007098999946, 49.23602329200002 ], [ -122.527927896999969, 49.238465915000113 ], [ -122.527300383999943, 49.238682608000047 ], [ -122.52715545199996, 49.238692646000089 ], [ -122.526731614999932, 49.23872199400013 ], [ -122.525570283999969, 49.238730492000101 ], [ -122.524921305999897, 49.238734165000075 ], [ -122.52323101899999, 49.238743701000047 ], [ -122.523072096, 49.23874459600006 ], [ -122.520964666999959, 49.238680025000079 ], [ -122.520332824999954, 49.238660676000123 ], [ -122.519565699999987, 49.238637136000065 ], [ -122.519467936999973, 49.238634142000144 ], [ -122.519001175999975, 49.238619827000065 ], [ -122.517984887999987, 49.238588660000097 ], [ -122.517627845999954, 49.238577709000033 ], [ -122.516680105999967, 49.238548619000035 ], [ -122.514084280999953, 49.238468919000091 ], [ -122.513603812, 49.238454165000086 ], [ -122.513219330999988, 49.238442352000128 ], [ -122.5118895949999, 49.238401508000045 ] ], [ [ -122.52998805599999, 49.236796255000101 ], [ -122.529989781999973, 49.236614405000118 ], [ -122.529635602999988, 49.236603006000095 ], [ -122.529630377000032, 49.236672898000101 ], [ -122.527705193999964, 49.236610914000067 ], [ -122.527680911999951, 49.236935445000043 ], [ -122.524991281999945, 49.236848790000046 ], [ -122.524946167999929, 49.237451252000078 ], [ -122.525565882999942, 49.237471225000036 ], [ -122.525496565999944, 49.238397045000085 ], [ -122.525851544999952, 49.238398503000113 ], [ -122.525854128, 49.238128655000075 ], [ -122.52642522799999, 49.238130997000077 ], [ -122.526485069999922, 49.237331519000072 ], [ -122.528333921999945, 49.237391067 ], [ -122.528334511999958, 49.237329233000033 ], [ -122.52915872299999, 49.237332596000023 ], [ -122.529163852999915, 49.23679289800004 ], [ -122.52998805599999, 49.236796255000101 ] ], [ [ -122.521749629999974, 49.236390165000024 ], [ -122.521753851999961, 49.235952884000042 ], [ -122.522260353999926, 49.235954979000077 ], [ -122.522300786999935, 49.235415429000106 ], [ -122.521759061999916, 49.235413188000095 ], [ -122.521761667999925, 49.235143339000096 ], [ -122.520525405999948, 49.235138214000109 ], [ -122.520533241999914, 49.234328671000121 ], [ -122.522381647999936, 49.234336328000033 ], [ -122.522469566999959, 49.233163010000048 ], [ -122.522530897999957, 49.233164988000098 ], [ -122.52256438900001, 49.232718011000088 ], [ -122.52264652, 49.232720661000073 ], [ -122.522673706, 49.232357812000025 ], [ -122.522756225999927, 49.232360474000124 ], [ -122.522812425999945, 49.231610364000097 ], [ -122.522358142999948, 49.231595710000086 ], [ -122.522377932, 49.231331604000069 ], [ -122.52184195399991, 49.231314312000059 ], [ -122.521720945999903, 49.232929001000109 ], [ -122.520122756999939, 49.232877425000055 ], [ -122.520077909999912, 49.233475538000071 ], [ -122.517306686999987, 49.23338605100011 ], [ -122.517162394999943, 49.235308804000113 ], [ -122.51681491899997, 49.235297578000043 ], [ -122.516811359999963, 49.235662458000022 ], [ -122.516399268999962, 49.235660733 ], [ -122.516396633999975, 49.235930581000055 ], [ -122.516331234999953, 49.235930307000032 ], [ -122.516326747000022, 49.235990082000107 ], [ -122.51944472299995, 49.236090784000055 ], [ -122.51944208499999, 49.236125958000109 ], [ -122.519691542999951, 49.236134011000104 ], [ -122.519695998999936, 49.235674488000036 ], [ -122.520932273999904, 49.235679621000017 ], [ -122.520925657999896, 49.236363580000038 ], [ -122.521749629999974, 49.236390165000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "0.771540027137042", "sL_AssetLoss": "58960", "sL_BldgLoss": "45490", "sL_StrLoss": "23000", "sL_NStrLoss": "22490", "sL_ContLoss": "13470", "geom_point": "0101000020E6100000E39F4243B9A15EC0123E08BF5CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.524201392999927, 49.251049304000098 ], [ -122.529683882999976, 49.251225851000065 ], [ -122.529414885999955, 49.254821552000053 ], [ -122.527225041999941, 49.254751069000093 ], [ -122.52604016799998, 49.254420364000104 ], [ -122.525478358, 49.254263304000084 ], [ -122.525252638999959, 49.254216156000041 ], [ -122.524600309, 49.253996583000038 ], [ -122.524430307999921, 49.253975538000063 ], [ -122.523989469999933, 49.253877687000063 ], [ -122.524201392999927, 49.251049304000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13753250", "BldgCostT": "9485000", "sL_LossRatio": "0.778117740381891", "sL_AssetLoss": "141192", "sL_BldgLoss": "109864", "sL_StrLoss": "53734", "sL_NStrLoss": "56130", "sL_ContLoss": "31328", "geom_point": "0101000020E6100000A9E5D6BD38A15EC0F4518878D29F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.514794342999963, 49.251310457000045 ], [ -122.514894867999956, 49.249972351000089 ], [ -122.514833327999952, 49.24997036200012 ], [ -122.51510342499995, 49.246374671000083 ], [ -122.516810554999935, 49.24642982299999 ], [ -122.516861288999976, 49.245754011000081 ], [ -122.522343126999942, 49.245930933000096 ], [ -122.522339750999919, 49.245975967000099 ], [ -122.523274496999974, 49.246006107000028 ], [ -122.523256041999971, 49.246252364000021 ], [ -122.523514703999936, 49.24626070200005 ], [ -122.523245256999985, 49.249856415000131 ], [ -122.52302096399994, 49.249849185000116 ], [ -122.522979478, 49.250402720000132 ], [ -122.522761287999955, 49.250395686000083 ], [ -122.522736685999959, 49.250723926000049 ], [ -122.522417250999965, 49.250713626000106 ], [ -122.522400684, 49.250934633000078 ], [ -122.521143162999948, 49.250894077000041 ], [ -122.521105557999974, 49.251395563000067 ], [ -122.520285706999942, 49.251369115000095 ], [ -122.520276828999954, 49.251487483000076 ], [ -122.514794342999963, 49.251310457000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115076395", "BldgCostT": "77951524", "sL_LossRatio": "0.751278341317714", "sL_AssetLoss": "1288975", "sL_BldgLoss": "968379", "sL_StrLoss": "471769", "sL_NStrLoss": "496610", "sL_ContLoss": "320596", "geom_point": "0101000020E6100000234753A043A25EC051A3CA0F609E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.52656582900002, 49.250457874000034 ], [ -122.526574505, 49.250342003000121 ], [ -122.525846511999973, 49.250318554000046 ], [ -122.52611575899995, 49.246722836000082 ], [ -122.527749013999951, 49.246775437000117 ], [ -122.527789959999922, 49.24677675500002 ], [ -122.527794112, 49.246721277000091 ], [ -122.527846527999927, 49.246020877000099 ], [ -122.528368164999918, 49.246037671000053 ], [ -122.529300897999988, 49.246067694000033 ], [ -122.52933739199996, 49.245579811000042 ], [ -122.529581468999964, 49.245587667000095 ], [ -122.529622078999964, 49.245044725000106 ], [ -122.5296355199999, 49.244865017000095 ], [ -122.52985240299995, 49.244871997000118 ], [ -122.53155962699999, 49.244926920000054 ], [ -122.531562450999942, 49.244628547000026 ], [ -122.531974615999957, 49.244630217000115 ], [ -122.531979719, 49.24409052000005 ], [ -122.532391879999963, 49.244092189000121 ], [ -122.53239656599996, 49.243596009000051 ], [ -122.531588418999888, 49.243570018000078 ], [ -122.528789342999985, 49.24347995100004 ], [ -122.528973655999962, 49.241016097000042 ], [ -122.528784653999963, 49.241010013 ], [ -122.528556747999957, 49.244056404000041 ], [ -122.523075108999961, 49.243879797000126 ], [ -122.523278373999943, 49.241167063000056 ], [ -122.523060178999941, 49.241160027000078 ], [ -122.522875592999981, 49.243623342000035 ], [ -122.521922673999953, 49.243592610000036 ], [ -122.52190886299995, 49.243776865000022 ], [ -122.521356630999918, 49.24375905200003 ], [ -122.521338650999908, 49.243998878000134 ], [ -122.519993782999933, 49.243955485000093 ], [ -122.519866333999943, 49.244020163000059 ], [ -122.519771334000012, 49.243949762000049 ], [ -122.519298033999959, 49.244201962 ], [ -122.519167433999939, 49.244102662000074 ], [ -122.519478237999976, 49.243938846000077 ], [ -122.51915759399995, 49.24392849600013 ], [ -122.519031035, 49.243995162000047 ], [ -122.518946876999905, 49.243921694000036 ], [ -122.515857045999951, 49.243821905000075 ], [ -122.516086686999969, 49.240763506000093 ], [ -122.514908406999936, 49.240725429000094 ], [ -122.514803780999955, 49.242118441000095 ], [ -122.513005075999956, 49.24206029000004 ], [ -122.5128696, 49.24386298400001 ], [ -122.511620544, 49.243822584000029 ], [ -122.51165440299998, 49.243140575000041 ], [ -122.51170333, 49.24215454900007 ], [ -122.511757485999937, 49.241063812000036 ], [ -122.511788290999945, 49.240442506000058 ], [ -122.511809736999979, 49.24001087200002 ], [ -122.5118895949999, 49.238401508000045 ], [ -122.513219330999988, 49.238442352000128 ], [ -122.513603812, 49.238454165000086 ], [ -122.514084280999953, 49.238468919000091 ], [ -122.516680105999967, 49.238548619000035 ], [ -122.517627845999954, 49.238577709000033 ], [ -122.517984887999987, 49.238588660000097 ], [ -122.519001175999975, 49.238619827000065 ], [ -122.519467936999973, 49.238634142000144 ], [ -122.519565699999987, 49.238637136000065 ], [ -122.520332824999954, 49.238660676000123 ], [ -122.520964666999959, 49.238680025000079 ], [ -122.523072096, 49.23874459600006 ], [ -122.52323101899999, 49.238743701000047 ], [ -122.524921305999897, 49.238734165000075 ], [ -122.525570283999969, 49.238730492000101 ], [ -122.526731614999932, 49.23872199400013 ], [ -122.52715545199996, 49.238692646000089 ], [ -122.527300383999943, 49.238682608000047 ], [ -122.527927896999969, 49.238465915000113 ], [ -122.533007098999946, 49.23602329200002 ], [ -122.533250003999953, 49.235859895000011 ], [ -122.533340643999921, 49.235728359000078 ], [ -122.53344259099994, 49.235580411000036 ], [ -122.533559380999961, 49.235170706000055 ], [ -122.533563468999915, 49.235156303000068 ], [ -122.535094411999921, 49.235126182000023 ], [ -122.535088277999947, 49.234872626000026 ], [ -122.535069182999933, 49.234081143 ], [ -122.535035296999965, 49.232677634000069 ], [ -122.534982678999967, 49.230497195000083 ], [ -122.534917809999968, 49.227742195000054 ], [ -122.537869170999912, 49.227734359000067 ], [ -122.539686339999918, 49.227729471000075 ], [ -122.540538172999959, 49.22772717200008 ], [ -122.543258240999961, 49.227712615000087 ], [ -122.54343914399999, 49.227711625000076 ], [ -122.544869682999945, 49.227703897000062 ], [ -122.546077385999922, 49.227694804000038 ], [ -122.548052087999935, 49.227639194000076 ], [ -122.548102980999943, 49.227639881000108 ], [ -122.549256625999945, 49.227655207000083 ], [ -122.549900602000022, 49.227634362000089 ], [ -122.550867086000011, 49.227603099000071 ], [ -122.552058021999983, 49.227624179000067 ], [ -122.553252244999925, 49.227645307000053 ], [ -122.553636601999926, 49.227652097000018 ], [ -122.554332687999974, 49.227664407000105 ], [ -122.556386387999936, 49.227653393000033 ], [ -122.557313270999899, 49.227567348 ], [ -122.557346815999978, 49.229609790000097 ], [ -122.55684116299993, 49.230305128000019 ], [ -122.556704566999954, 49.230954239000027 ], [ -122.556720565999953, 49.231019519000093 ], [ -122.556683916999987, 49.231017199000071 ], [ -122.556445667, 49.231037294000068 ], [ -122.554842188999928, 49.231172490000098 ], [ -122.553202398999971, 49.231696603000103 ], [ -122.552538320999972, 49.232189400000053 ], [ -122.554162995999945, 49.23175498700008 ], [ -122.555058689999953, 49.231388990000042 ], [ -122.555884393999989, 49.231247999000118 ], [ -122.556401624999964, 49.231267532000054 ], [ -122.55681210299997, 49.231283038000079 ], [ -122.556886161999955, 49.231663518000104 ], [ -122.557253503999945, 49.233551810000044 ], [ -122.55707051, 49.233241402000061 ], [ -122.556647309999946, 49.232892694 ], [ -122.556375606999907, 49.232759595000054 ], [ -122.55601921, 49.232658099000055 ], [ -122.555634899000012, 49.232599008000101 ], [ -122.554906903999893, 49.232563983000055 ], [ -122.554232309999989, 49.232641606000051 ], [ -122.55364041599999, 49.232826295000088 ], [ -122.553329288999976, 49.232965891000063 ], [ -122.553047197999959, 49.23313990600009 ], [ -122.55272842499997, 49.233382899000041 ], [ -122.5524979, 49.233737740000045 ], [ -122.55235460599999, 49.233958399000059 ], [ -122.552318668999973, 49.234029908000139 ], [ -122.551720786999951, 49.235218882000098 ], [ -122.551674410999965, 49.235311097000164 ], [ -122.550047539000019, 49.235129832000041 ], [ -122.54983770299999, 49.235096190000093 ], [ -122.549600079999891, 49.235060669000056 ], [ -122.547122883999933, 49.234795696000091 ], [ -122.546258913999964, 49.234963604000043 ], [ -122.54406966599997, 49.235001739000097 ], [ -122.541613396999935, 49.235044460000083 ], [ -122.54101983799994, 49.236134667000073 ], [ -122.540697245, 49.236464056000095 ], [ -122.540066876999902, 49.237034045 ], [ -122.539264200999966, 49.237667904000041 ], [ -122.538459854999971, 49.238342227000018 ], [ -122.53678873299998, 49.239753816000047 ], [ -122.536084918000014, 49.240422291000087 ], [ -122.535708995999926, 49.240740665000018 ], [ -122.535729823999958, 49.241983993000062 ], [ -122.535747774999919, 49.242069555000029 ], [ -122.535766920999919, 49.242171366000036 ], [ -122.535847453999935, 49.242873621000101 ], [ -122.535919789, 49.243763088000058 ], [ -122.535382469999931, 49.243745826000165 ], [ -122.535429006999948, 49.24312257600009 ], [ -122.534313497999946, 49.243086730000066 ], [ -122.53427095799999, 49.243656267000063 ], [ -122.534044761999937, 49.243648997000044 ], [ -122.534043069999925, 49.24382900300008 ], [ -122.53445522899996, 49.2438306640001 ], [ -122.53445015599999, 49.244370360000062 ], [ -122.534862321, 49.244372020000071 ], [ -122.534859785999956, 49.244641869000105 ], [ -122.535271951999945, 49.244643527000115 ], [ -122.535269418999974, 49.244913376000042 ], [ -122.536012419999977, 49.244916362000048 ], [ -122.536090170999955, 49.246192016000116 ], [ -122.536092190999966, 49.246265974000089 ], [ -122.536081117999984, 49.246265930000085 ], [ -122.536078588999928, 49.246535777000133 ], [ -122.535281298999948, 49.246532573000088 ], [ -122.535094892999908, 49.249028632000062 ], [ -122.534576076999898, 49.249011962000068 ], [ -122.534550688999957, 49.249351844000053 ], [ -122.53309621199999, 49.249305098000058 ], [ -122.53308141399998, 49.249503105000052 ], [ -122.533059751999957, 49.249792979000112 ], [ -122.532113423999974, 49.249762554000057 ], [ -122.53204825899999, 49.250634301000012 ], [ -122.52656582900002, 49.250457874000034 ] ], [ [ -122.526257031999961, 49.24037792200005 ], [ -122.526344451999961, 49.239210101000111 ], [ -122.525435967999911, 49.239206372000069 ], [ -122.525431042999969, 49.23927214800009 ], [ -122.525426502999935, 49.239746051000047 ], [ -122.525395568999926, 49.239745924000019 ], [ -122.525350432999943, 49.240348711000088 ], [ -122.526257031999961, 49.24037792200005 ] ], [ [ -122.540331628999922, 49.232416750000027 ], [ -122.540335676999987, 49.231980435 ], [ -122.539923614999921, 49.231978794000042 ], [ -122.539927410999951, 49.231569906000097 ], [ -122.538910058999974, 49.231537248000073 ], [ -122.538840739999912, 49.232466804000047 ], [ -122.540267905999897, 49.232512614000022 ], [ -122.540275187999924, 49.23241493900013 ], [ -122.540331628999922, 49.232416750000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297630334", "BldgCostT": "198993334", "sL_LossRatio": "0.752265757192309", "sL_AssetLoss": "2385847", "sL_BldgLoss": "1794791", "sL_StrLoss": "953754", "sL_NStrLoss": "841037", "sL_ContLoss": "591056", "geom_point": "0101000020E610000079B7E33461A55EC07D29C81163A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.570583668, 49.26074093400009 ], [ -122.570653235999899, 49.259800013000053 ], [ -122.568969615999904, 49.259746479000064 ], [ -122.569046417999942, 49.258708179000102 ], [ -122.569235577999976, 49.256150706000071 ], [ -122.570986611999899, 49.256206384000102 ], [ -122.571084174, 49.254886547000069 ], [ -122.572177889000017, 49.254921310000078 ], [ -122.572373467999952, 49.252274371000077 ], [ -122.573043568999964, 49.252295664000087 ], [ -122.573074762999937, 49.251873386000042 ], [ -122.573649584999913, 49.251891649000065 ], [ -122.573819959999938, 49.249584698000028 ], [ -122.575356354999911, 49.249633495000111 ], [ -122.575386582999926, 49.249223985000043 ], [ -122.576239528999935, 49.249277994000025 ], [ -122.577628077, 49.249323931000056 ], [ -122.580198289999899, 49.24935699600006 ], [ -122.580075403999956, 49.247593773000098 ], [ -122.580037041999958, 49.247043612000056 ], [ -122.579919876999952, 49.245362790000108 ], [ -122.579864141999934, 49.244434943000073 ], [ -122.579807389999985, 49.243490929000053 ], [ -122.579788506999961, 49.243176208000065 ], [ -122.580297998999953, 49.243158109000056 ], [ -122.580748081999928, 49.242978705000048 ], [ -122.58163579399999, 49.242432796000053 ], [ -122.582215011999935, 49.242179088000043 ], [ -122.582710464999963, 49.242102265000028 ], [ -122.58274568399996, 49.242096794000069 ], [ -122.585202042000034, 49.242113638000049 ], [ -122.585421814999961, 49.242115127000069 ], [ -122.587372661999964, 49.242128473000093 ], [ -122.588224387999944, 49.242134282000052 ], [ -122.588677643999972, 49.242137360000058 ], [ -122.590669784999989, 49.242150920000029 ], [ -122.593280083999971, 49.24216861900009 ], [ -122.59523088399996, 49.242181795000114 ], [ -122.595643006999921, 49.242184594000022 ], [ -122.596013908999979, 49.242187090000101 ], [ -122.596453444999938, 49.242190052000076 ], [ -122.596831796999979, 49.242192600000124 ], [ -122.597593862999958, 49.242199563000042 ], [ -122.59999779899999, 49.242221499000081 ], [ -122.601050103999953, 49.242231094000083 ], [ -122.601047688, 49.242306613000011 ], [ -122.60104394399994, 49.242423647000088 ], [ -122.601041096999893, 49.242513572000121 ], [ -122.601016150999939, 49.243296029000085 ], [ -122.600986873999958, 49.244213384000027 ], [ -122.600813766999963, 49.249638394000115 ], [ -122.600591415999986, 49.255523298000128 ], [ -122.600560426999905, 49.256360607000055 ], [ -122.597123471999922, 49.256252237000119 ], [ -122.597327571999955, 49.253469770000095 ], [ -122.592298974999892, 49.253311016000048 ], [ -122.592404416999898, 49.251875528 ], [ -122.590856860000017, 49.251870058000037 ], [ -122.59085463, 49.252139908000082 ], [ -122.589205701999958, 49.252134057000113 ], [ -122.589192265999912, 49.253753155000084 ], [ -122.5887800199999, 49.253751688000108 ], [ -122.588775535999929, 49.254291387000094 ], [ -122.588363285999975, 49.25428991900008 ], [ -122.588358798999963, 49.254829618 ], [ -122.587946543000029, 49.254828149000055 ], [ -122.58794429699999, 49.255097998000068 ], [ -122.58711978299999, 49.255095055000041 ], [ -122.587115282999903, 49.255634753000017 ], [ -122.586703020999934, 49.255633280000133 ], [ -122.586700766999982, 49.255903129000053 ], [ -122.586288504, 49.25590165400012 ], [ -122.586286248999954, 49.256171502000072 ], [ -122.584491582999974, 49.256165063000019 ], [ -122.58441765299996, 49.257169116000057 ], [ -122.583671771999946, 49.25714549700006 ], [ -122.583580485999946, 49.258384934000105 ], [ -122.58261157699998, 49.258354243000056 ], [ -122.582557983999948, 49.259081656 ], [ -122.582244665999937, 49.259071731000098 ], [ -122.582212094999988, 49.259513764000062 ], [ -122.58194534799992, 49.25950531200008 ], [ -122.581834228, 49.261013191000082 ], [ -122.583373315999921, 49.261061946000105 ], [ -122.583108420999949, 49.264657727000099 ], [ -122.579357330999983, 49.264538862000109 ], [ -122.579348667999938, 49.264656318000107 ], [ -122.575956651999917, 49.264548719000075 ], [ -122.575924846999982, 49.264979500000102 ], [ -122.575768796999924, 49.264974547000023 ], [ -122.575677205999966, 49.266215003000056 ], [ -122.57464379000001, 49.266182198000038 ], [ -122.574515755999954, 49.267915625000029 ], [ -122.569031122999959, 49.267741359000084 ], [ -122.569297126, 49.264145630000037 ], [ -122.569563486999982, 49.264154100000042 ], [ -122.56978707599994, 49.261131033 ], [ -122.570138034999914, 49.261142191000083 ], [ -122.570168682999977, 49.260727741000082 ], [ -122.570583668, 49.26074093400009 ] ], [ [ -122.597859915999919, 49.252421495000107 ], [ -122.597841638999938, 49.252670710000075 ], [ -122.598605086999939, 49.252694789000017 ], [ -122.598623358999959, 49.252445574000085 ], [ -122.597859915999919, 49.252421495000107 ] ], [ [ -122.597663940999908, 49.246771978000012 ], [ -122.597701343999944, 49.246261910000058 ], [ -122.596945383999952, 49.246238058000081 ], [ -122.596997644999973, 49.245525509000117 ], [ -122.592058256999962, 49.24536953000009 ], [ -122.592077645999893, 49.245105545000094 ], [ -122.591895959999988, 49.245099803000109 ], [ -122.59189577799998, 49.245102271000107 ], [ -122.590913038999986, 49.245071209000081 ], [ -122.590910374999936, 49.245393661000108 ], [ -122.590446474999936, 49.245392017000071 ], [ -122.590194418999928, 49.248821901000085 ], [ -122.587597732999939, 49.248739772000121 ], [ -122.587566840999926, 49.249159783000053 ], [ -122.588405914999967, 49.249162776000048 ], [ -122.588408157999979, 49.248892925000099 ], [ -122.590881390999968, 49.248901711000016 ], [ -122.590883618999953, 49.248631860000103 ], [ -122.591103744999941, 49.248632640000082 ], [ -122.591221698999973, 49.247027211000109 ], [ -122.592824349999916, 49.247077856000054 ], [ -122.592857953999896, 49.246620249000017 ], [ -122.597663940999908, 49.246771978000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22582584", "BldgCostT": "13628334", "sL_LossRatio": "0.884043807919124", "sL_AssetLoss": "29675", "sL_BldgLoss": "26234", "sL_StrLoss": "19206", "sL_NStrLoss": "7028", "sL_ContLoss": "3441", "geom_point": "0101000020E6100000B71DC7CDB89F5EC0E76AB79F84A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.495428060999984, 49.291300395000079 ], [ -122.498534021999916, 49.291401184000108 ], [ -122.498262378999939, 49.294996590000089 ], [ -122.494150292999961, 49.294863133000042 ], [ -122.492774833999974, 49.294818458000158 ], [ -122.493046902999978, 49.291223065000104 ], [ -122.495428060999984, 49.291300395000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.776632302405498", "sL_AssetLoss": "5820", "sL_BldgLoss": "4520", "sL_StrLoss": "2460", "sL_NStrLoss": "2060", "sL_ContLoss": "1300", "geom_point": "0101000020E6100000F2F122769AA15EC0394DB8BA90A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.523931971999943, 49.254644992000074 ], [ -122.523989469999933, 49.253877687000063 ], [ -122.524430307999921, 49.253975538000063 ], [ -122.524600309, 49.253996583000038 ], [ -122.525252638999959, 49.254216156000041 ], [ -122.525478358, 49.254263304000084 ], [ -122.52604016799998, 49.254420364000104 ], [ -122.527225041999941, 49.254751069000093 ], [ -122.523931971999943, 49.254644992000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.915629095674967", "sL_AssetLoss": "6104", "sL_BldgLoss": "5589", "sL_StrLoss": "4330", "sL_NStrLoss": "1259", "sL_ContLoss": "515", "geom_point": "0101000020E610000071DBA5AA1CA35EC033F37044EF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.545476579999928, 49.249372912000105 ], [ -122.551010546999919, 49.248854377000043 ], [ -122.550926988999947, 49.249978347000066 ], [ -122.545444564999954, 49.249802878000018 ], [ -122.545476579999928, 49.249372912000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40833333", "BldgCostT": "27633333", "sL_LossRatio": "0.67639418559664", "sL_AssetLoss": "1266510", "sL_BldgLoss": "856660", "sL_StrLoss": "374830", "sL_NStrLoss": "481830", "sL_ContLoss": "409850", "geom_point": "0101000020E6100000622F6F69D0A65EC0D053B2D62FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.60514639299997, 49.270365714 ], [ -122.605225541999985, 49.269284538000072 ], [ -122.604175324999943, 49.269251491000041 ], [ -122.604204541999962, 49.268852502000108 ], [ -122.600272713, 49.268728689000049 ], [ -122.600336023999972, 49.2678650820001 ], [ -122.600250566999961, 49.267862390000062 ], [ -122.600514151999931, 49.26426658500003 ], [ -122.605998490999966, 49.264439252000017 ], [ -122.605984847999977, 49.264625674000065 ], [ -122.606024008999967, 49.264626907000086 ], [ -122.606056935999945, 49.264176957000124 ], [ -122.607115391999955, 49.264141716000076 ], [ -122.607766872999946, 49.264214398000071 ], [ -122.609042776999928, 49.264244596000019 ], [ -122.609073451999947, 49.264248261000013 ], [ -122.611708814999986, 49.26428164599999 ], [ -122.611462586999949, 49.265783975000019 ], [ -122.612279174999955, 49.270168307000091 ], [ -122.605883005999914, 49.270388887000088 ], [ -122.60514639299997, 49.270365714 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12022916", "BldgCostT": "8291666", "sL_LossRatio": "0.764161135977774", "sL_AssetLoss": "129580", "sL_BldgLoss": "99020", "sL_StrLoss": "51140", "sL_NStrLoss": "47880", "sL_ContLoss": "30560", "geom_point": "0101000020E6100000C9188290AAA55EC02297EE64A6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.585925287999942, 49.268818345000092 ], [ -122.591410109999956, 49.26899175300013 ], [ -122.591145792999924, 49.272587510000037 ], [ -122.585660545999971, 49.272414090000034 ], [ -122.585925287999942, 49.268818345000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10005000", "BldgCostT": "6900000", "sL_LossRatio": "0.871912247365694", "sL_AssetLoss": "34734", "sL_BldgLoss": "30285", "sL_StrLoss": "21460", "sL_NStrLoss": "8825", "sL_ContLoss": "4449", "geom_point": "0101000020E610000032D05205A5A55EC096F2318AABA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.58630478699996, 49.30250539400005 ], [ -122.585785296999973, 49.302233388000076 ], [ -122.585044091999961, 49.301978512000126 ], [ -122.584871308999979, 49.301960055000109 ], [ -122.584979542999946, 49.300491413000046 ], [ -122.590468107999953, 49.300664860000118 ], [ -122.590432217999989, 49.301152638000062 ], [ -122.590667130999947, 49.301160056000072 ], [ -122.590664261999905, 49.301199035000131 ], [ -122.591440307999932, 49.301223535000091 ], [ -122.591383615999959, 49.301994252000064 ], [ -122.59150345299993, 49.301998035000054 ], [ -122.591335300999901, 49.304283950000126 ], [ -122.591229520999974, 49.304168898000043 ], [ -122.591371991999978, 49.303466798000102 ], [ -122.590636682999971, 49.302655000000129 ], [ -122.59008738599999, 49.30250968900004 ], [ -122.589742992, 49.302606516000047 ], [ -122.58949038, 49.303065099000051 ], [ -122.588894582999913, 49.303772994000013 ], [ -122.588765897999977, 49.304421007000037 ], [ -122.588569915999969, 49.304796995000061 ], [ -122.588417087999971, 49.304913792000043 ], [ -122.588211388999966, 49.304940795000064 ], [ -122.587472704999982, 49.304262892000089 ], [ -122.58630478699996, 49.30250539400005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.911725516322452", "sL_AssetLoss": "3002", "sL_BldgLoss": "2737", "sL_StrLoss": "2060", "sL_NStrLoss": "677", "sL_ContLoss": "265", "geom_point": "0101000020E61000001DA9DF01F5A45EC055C6D86CD9AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.576666205, 49.349715551000017 ], [ -122.57917251399999, 49.349794892000048 ], [ -122.579154927999951, 49.349807177000088 ], [ -122.576523469999927, 49.351645426000069 ], [ -122.576666205, 49.349715551000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22209251", "BldgCostT": "14845001", "sL_LossRatio": "0.686176546509788", "sL_AssetLoss": "600465", "sL_BldgLoss": "412025", "sL_StrLoss": "169225", "sL_NStrLoss": "242800", "sL_ContLoss": "188440", "geom_point": "0101000020E610000020A5A7020DA65EC0898CD49C38A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.591466747999959, 49.269394653000056 ], [ -122.591498804999944, 49.268958490000053 ], [ -122.590312935999933, 49.268921023000104 ], [ -122.59057729499996, 49.265325248000067 ], [ -122.592227748999946, 49.265377391000044 ], [ -122.592234229999946, 49.265289188000033 ], [ -122.59333352099992, 49.265323903000137 ], [ -122.59333508499995, 49.265302614000035 ], [ -122.5988195199999, 49.265475647000081 ], [ -122.598555796999918, 49.269071441000051 ], [ -122.597456412, 49.269036779000047 ], [ -122.597454849999949, 49.269058068000085 ], [ -122.596990137999953, 49.269043413000148 ], [ -122.596951657999938, 49.269567778000052 ], [ -122.591466747999959, 49.269394653000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22369833", "BldgCostT": "13953333", "sL_LossRatio": "0.906750809598937", "sL_AssetLoss": "33720.4", "sL_BldgLoss": "30576", "sL_StrLoss": "23684", "sL_NStrLoss": "6892", "sL_ContLoss": "3144.4", "geom_point": "0101000020E610000079FD51EDF6A05EC07110005E97A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.512396883999926, 49.279882920000077 ], [ -122.512413441999968, 49.279662811000115 ], [ -122.511989482999937, 49.279649110000022 ], [ -122.512061618999951, 49.278690300000072 ], [ -122.512259972999956, 49.276053587000035 ], [ -122.514742691999956, 49.276133799000021 ], [ -122.517745373999972, 49.276230733000034 ], [ -122.517728840999965, 49.276450844000053 ], [ -122.518152772999954, 49.276464523000058 ], [ -122.517882736999951, 49.280060058000089 ], [ -122.512396883999926, 49.279882920000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27673167", "BldgCostT": "16136667", "sL_LossRatio": "0.669947262868603", "sL_AssetLoss": "269260", "sL_BldgLoss": "180390", "sL_StrLoss": "89080", "sL_NStrLoss": "91310", "sL_ContLoss": "88870", "geom_point": "0101000020E610000027FB298652A65EC0716BF37BF2A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.596558526999928, 49.271140409000061 ], [ -122.601171168999898, 49.271285797000139 ], [ -122.601162061999929, 49.272953826000077 ], [ -122.601103003999981, 49.274887721000077 ], [ -122.596294594999904, 49.274736167000057 ], [ -122.596558526999928, 49.271140409000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11853750", "BldgCostT": "8175000", "sL_LossRatio": "0.905784255794104", "sL_AssetLoss": "30462", "sL_BldgLoss": "27592", "sL_StrLoss": "21190", "sL_NStrLoss": "6402", "sL_ContLoss": "2870", "geom_point": "0101000020E6100000E4E55DB324A45EC049EFC0A588A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.562131344999969, 49.260097445000035 ], [ -122.567615046999919, 49.260272063000059 ], [ -122.567348936, 49.263867810000114 ], [ -122.56186481, 49.263693179000043 ], [ -122.562131344999969, 49.260097445000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12047084", "BldgCostT": "8308334", "sL_LossRatio": "0.718775875202862", "sL_AssetLoss": "301930", "sL_BldgLoss": "217020", "sL_StrLoss": "94450", "sL_NStrLoss": "122570", "sL_ContLoss": "84910", "geom_point": "0101000020E6100000E6AE2D558CA55EC04BF50945DFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.584080503999971, 49.262741483000113 ], [ -122.589564600999921, 49.262914986000098 ], [ -122.589300175999981, 49.266510772000075 ], [ -122.583815654999952, 49.266337256000043 ], [ -122.584080503999971, 49.262741483000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177916", "BldgCostT": "2191666", "sL_LossRatio": "0.898485565546616", "sL_AssetLoss": "8452", "sL_BldgLoss": "7594", "sL_StrLoss": "5580", "sL_NStrLoss": "2014", "sL_ContLoss": "858", "geom_point": "0101000020E6100000B4BFBBAE82A55EC0CBC35B4A0AA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.585409556999977, 49.305989497000098 ], [ -122.585449804999925, 49.305443335000099 ], [ -122.585385388999939, 49.305441298000083 ], [ -122.585393626999974, 49.305329516000093 ], [ -122.584652470999956, 49.305306079000097 ], [ -122.584742262999939, 49.304087860000138 ], [ -122.58471454799998, 49.30408698300009 ], [ -122.584798918999951, 49.302942266000052 ], [ -122.585525789999906, 49.303517989000049 ], [ -122.585617779999922, 49.303950997000122 ], [ -122.585781701999963, 49.304184597000067 ], [ -122.585816595999916, 49.304878205000087 ], [ -122.58610672099995, 49.304905199000061 ], [ -122.586397108999961, 49.304618887000089 ], [ -122.586891911999885, 49.304665900000039 ], [ -122.588204805999965, 49.305570283000094 ], [ -122.588084677999973, 49.306074049000074 ], [ -122.585409556999977, 49.305989497000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13895833", "BldgCostT": "9583333", "sL_LossRatio": "0.822812860091424", "sL_AssetLoss": "78973", "sL_BldgLoss": "64980", "sL_StrLoss": "39620", "sL_NStrLoss": "25360", "sL_ContLoss": "13993", "geom_point": "0101000020E6100000BFFC6730FAA45EC06BB933130CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.574877041999969, 49.27577019400011 ], [ -122.574914467999946, 49.275263554000034 ], [ -122.574912673999904, 49.275263497000033 ], [ -122.575178263999987, 49.271667794000059 ], [ -122.58066338199994, 49.271841746000064 ], [ -122.580626022999979, 49.27234839200009 ], [ -122.580627815999947, 49.272348448000081 ], [ -122.58036264499999, 49.27594416100002 ], [ -122.574877041999969, 49.27577019400011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47331000", "BldgCostT": "30015000", "sL_LossRatio": "0.778079909224266", "sL_AssetLoss": "195647", "sL_BldgLoss": "152229", "sL_StrLoss": "90123", "sL_NStrLoss": "62106", "sL_ContLoss": "43418", "geom_point": "0101000020E6100000D036ED18CD9E5EC07034F40DD4A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.474338759999952, 49.293132871000054 ], [ -122.474612246999982, 49.289537516000095 ], [ -122.475201119999952, 49.289556746000073 ], [ -122.475221837, 49.289284330000093 ], [ -122.476342987999956, 49.289320934000095 ], [ -122.476404533000022, 49.288511357000061 ], [ -122.477138987000032, 49.288535329000069 ], [ -122.477198942, 49.287746473000041 ], [ -122.477977101999912, 49.287771866000078 ], [ -122.478018138999971, 49.287231791000067 ], [ -122.478334495999931, 49.287242113000026 ], [ -122.478360443000014, 49.286900599000035 ], [ -122.48096727399998, 49.286985618000067 ], [ -122.481186685999916, 49.284095360000073 ], [ -122.481709466999988, 49.284112402000062 ], [ -122.48174228699996, 49.283679971000097 ], [ -122.48722847099999, 49.283858667000089 ], [ -122.487222143999972, 49.283942155000048 ], [ -122.48831253799996, 49.283977638000138 ], [ -122.488179577000011, 49.285732706000026 ], [ -122.488270545999967, 49.285733109000013 ], [ -122.488267752999917, 49.286002953000022 ], [ -122.48868026199996, 49.286004779000052 ], [ -122.488672599999973, 49.286745690000046 ], [ -122.488432414999949, 49.286776507000042 ], [ -122.488427917999971, 49.286813233000061 ], [ -122.488259375999959, 49.286812486000017 ], [ -122.488254142999963, 49.287318128000081 ], [ -122.488170502999964, 49.287351806000075 ], [ -122.488056945999944, 49.287351303000058 ], [ -122.488053333999972, 49.287398986 ], [ -122.487929881999918, 49.287448693000073 ], [ -122.487599506, 49.287438706000067 ], [ -122.48528150599995, 49.286851886000058 ], [ -122.48515827599999, 49.286906095000091 ], [ -122.48398130899993, 49.287727790000076 ], [ -122.48387152399999, 49.287787150000078 ], [ -122.483793503999934, 49.287784609000084 ], [ -122.483789965999989, 49.287831247000064 ], [ -122.482445593999927, 49.288558111000086 ], [ -122.481167492999973, 49.289820015000053 ], [ -122.480959106999933, 49.289926807000079 ], [ -122.480588204999904, 49.289952397000071 ], [ -122.480007593999972, 49.290237294000114 ], [ -122.47972918899994, 49.290497899000059 ], [ -122.479561905999944, 49.290856800000036 ], [ -122.478470704999921, 49.291309711000103 ], [ -122.478217192, 49.291722692000086 ], [ -122.477789790999935, 49.291838098000078 ], [ -122.477351782999961, 49.291772591000026 ], [ -122.477278884999961, 49.292122890000037 ], [ -122.476409410999963, 49.29241629200002 ], [ -122.47491669599998, 49.29310140800002 ], [ -122.474827730999934, 49.293148840000107 ], [ -122.474338759999952, 49.293132871000054 ] ], [ [ -122.487603203999939, 49.285773810000109 ], [ -122.487962805, 49.285639893000102 ], [ -122.487912197999918, 49.285235492000062 ], [ -122.487748480999954, 49.285100195000091 ], [ -122.487391293999949, 49.285098710000049 ], [ -122.486931305999988, 49.285735397000089 ], [ -122.487330308999958, 49.285619994000122 ], [ -122.487603203999939, 49.285773810000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173756916", "BldgCostT": "117681666", "sL_LossRatio": "0.772716832197782", "sL_AssetLoss": "1523782", "sL_BldgLoss": "1177452", "sL_StrLoss": "611152", "sL_NStrLoss": "566300", "sL_ContLoss": "346330", "geom_point": "0101000020E6100000451D1D57E39F5EC052FD4AE7439D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.508179733999953, 49.240106748000102 ], [ -122.508261379999979, 49.239021720000061 ], [ -122.506450698999942, 49.238963066000075 ], [ -122.506480223999944, 49.238570899000074 ], [ -122.505314984999956, 49.238533137000019 ], [ -122.50548098199999, 49.236328810000053 ], [ -122.50119587899998, 49.236189834000101 ], [ -122.501225836999978, 49.235792485000104 ], [ -122.501171902999943, 49.235790735000059 ], [ -122.501246374999951, 49.234802927000082 ], [ -122.501442975999936, 49.232194999000079 ], [ -122.50692315399999, 49.232372708000106 ], [ -122.506921500999951, 49.232394678000027 ], [ -122.508189125999962, 49.23243574400005 ], [ -122.508195127999954, 49.231831073000116 ], [ -122.506516448999903, 49.231776687000036 ], [ -122.506607947999925, 49.230561051000095 ], [ -122.503701225999947, 49.230466816000067 ], [ -122.50374113099997, 49.22993705500005 ], [ -122.501645386999954, 49.229869063000081 ], [ -122.501654932999955, 49.22974241 ], [ -122.50121100599992, 49.229728002000066 ], [ -122.501203548000021, 49.230468800000033 ], [ -122.500791501999984, 49.230467019000059 ], [ -122.500788781999958, 49.230736867000061 ], [ -122.500316818999977, 49.230734826000052 ], [ -122.499552634999972, 49.230731518000034 ], [ -122.499560810999952, 49.229921975000067 ], [ -122.496676516, 49.229909445000018 ], [ -122.496679256999954, 49.229639598000063 ], [ -122.4958551779999, 49.229636004000042 ], [ -122.495852430999918, 49.229905852000108 ], [ -122.495440388999924, 49.229904052000023 ], [ -122.495437641, 49.230173900000096 ], [ -122.494613552999951, 49.230170297000029 ], [ -122.494610800999951, 49.230440144000092 ], [ -122.493786706999956, 49.230436537000081 ], [ -122.493783949999965, 49.230706383000012 ], [ -122.492959852999888, 49.230702768000072 ], [ -122.492957091999983, 49.230972616000024 ], [ -122.492132990999949, 49.230968996000037 ], [ -122.492130224999983, 49.231238842000046 ], [ -122.491718171999977, 49.231237030000074 ], [ -122.49171540399999, 49.231506877000136 ], [ -122.490891293999937, 49.231503248000095 ], [ -122.49088852, 49.231773095000015 ], [ -122.490064405999959, 49.231769460000066 ], [ -122.490061628999953, 49.232039307000036 ], [ -122.489237509999953, 49.232035666000073 ], [ -122.489234726999911, 49.232305513000057 ], [ -122.488822665999976, 49.232303690000066 ], [ -122.48881988199993, 49.232573537000036 ], [ -122.48840781799997, 49.232571713000013 ], [ -122.488405030999971, 49.232841559000093 ], [ -122.492525691999944, 49.232859735000048 ], [ -122.492528455999903, 49.232589888000057 ], [ -122.493352585999929, 49.232593506000057 ], [ -122.493363623999954, 49.231514117000081 ], [ -122.493775679999956, 49.231515924000043 ], [ -122.493778436999932, 49.231246078000048 ], [ -122.496250754999906, 49.231256885000036 ], [ -122.496242523999953, 49.23206642600006 ], [ -122.49747870499999, 49.232071810000043 ], [ -122.497481441999952, 49.23180196300008 ], [ -122.498305556999981, 49.231805545000029 ], [ -122.498308290999987, 49.231535698000137 ], [ -122.499132401999987, 49.231539275000046 ], [ -122.499135129999928, 49.231269427000015 ], [ -122.500070790999985, 49.231273480000091 ], [ -122.500371290999951, 49.231274780000028 ], [ -122.500360403999977, 49.232354170000058 ], [ -122.499536279999958, 49.232350602000032 ], [ -122.499533552999964, 49.232620448000063 ], [ -122.499945618, 49.232622234000075 ], [ -122.499940169999945, 49.233161928000108 ], [ -122.500352238999938, 49.23316371100006 ], [ -122.500341352999953, 49.2342431000001 ], [ -122.500753431999925, 49.234244882000084 ], [ -122.500747876999924, 49.234796019000065 ], [ -122.500742551999963, 49.235324270000049 ], [ -122.499918378999951, 49.235320706000103 ], [ -122.499888409999969, 49.238289023000071 ], [ -122.49659151499999, 49.23827470300008 ], [ -122.496586028999914, 49.238814397000098 ], [ -122.495761796999972, 49.238810802000096 ], [ -122.495756302999951, 49.239350496000014 ], [ -122.494107820999929, 49.239343289000033 ], [ -122.494116087999942, 49.238533749000034 ], [ -122.493703975999978, 49.238531943000112 ], [ -122.493712250999977, 49.237722403000085 ], [ -122.494124357999965, 49.237724208000053 ], [ -122.49413538099999, 49.236644821000027 ], [ -122.494547478999962, 49.236646625000034 ], [ -122.494550232000023, 49.236376778000086 ], [ -122.494962327999929, 49.236378581000039 ], [ -122.494965080999947, 49.236108734000034 ], [ -122.495377172999937, 49.236110535000073 ], [ -122.495382671999963, 49.23557084000003 ], [ -122.495794759999953, 49.235572640000029 ], [ -122.495800252999942, 49.235032946000032 ], [ -122.496212338999925, 49.235034744000117 ], [ -122.496215082999967, 49.234764897000083 ], [ -122.497863412999948, 49.234772074000013 ], [ -122.497866147999929, 49.234502227000036 ], [ -122.498690309, 49.234505807000083 ], [ -122.49870123299999, 49.233426417000032 ], [ -122.498289159999928, 49.233424628000087 ], [ -122.498294625999932, 49.232884934000083 ], [ -122.49788256, 49.232883144000112 ], [ -122.497879824999984, 49.233152991000104 ], [ -122.496643616999918, 49.233147611000049 ], [ -122.496635389999966, 49.23395715300007 ], [ -122.496223314999909, 49.233955356000116 ], [ -122.496217827999928, 49.234495050000099 ], [ -122.494981586999955, 49.234489653 ], [ -122.494992590999971, 49.233410264000042 ], [ -122.494168448000011, 49.233406659000075 ], [ -122.494165692999928, 49.233676506000087 ], [ -122.49292947399999, 49.233671086000065 ], [ -122.492923949999977, 49.234210780000076 ], [ -122.493748104999909, 49.234214394000112 ], [ -122.493737072999977, 49.235293782000092 ], [ -122.492500813999939, 49.235288357000051 ], [ -122.492498047999931, 49.235558204000064 ], [ -122.492910137999942, 49.235560014000065 ], [ -122.492901848999978, 49.236369554000099 ], [ -122.492489753999934, 49.236367745000102 ], [ -122.492473164999979, 49.237986825000085 ], [ -122.491236837999949, 49.23798138700009 ], [ -122.491247924999968, 49.236902 ], [ -122.490835824, 49.236900184000071 ], [ -122.49084414699999, 49.236090644000058 ], [ -122.491256238999981, 49.236092460000066 ], [ -122.49126455299999, 49.235282920000074 ], [ -122.490852466999982, 49.235281104000073 ], [ -122.490855239999988, 49.235011258000085 ], [ -122.489618988999922, 49.235005802000053 ], [ -122.489616207000012, 49.235275650000062 ], [ -122.487967863000023, 49.235268355000102 ], [ -122.487979020999944, 49.234188968000062 ], [ -122.48839109699999, 49.234190794000035 ], [ -122.488393883999947, 49.233920947000087 ], [ -122.48633351, 49.233911804000044 ], [ -122.486336307999935, 49.233641958000113 ], [ -122.48592423499997, 49.233640124000068 ], [ -122.485926709999916, 49.233401676000064 ], [ -122.485927035999921, 49.233370278000081 ], [ -122.485120329999958, 49.23336668400006 ], [ -122.485102895999916, 49.233366607000107 ], [ -122.485109845999929, 49.232697886000082 ], [ -122.485119081999969, 49.231809156000061 ], [ -122.485122526999959, 49.231477680000118 ], [ -122.485095902999944, 49.231477561000091 ], [ -122.484710473999911, 49.231475843000069 ], [ -122.484724506999953, 49.230126610000113 ], [ -122.485095844999975, 49.230128266000072 ], [ -122.485960635999945, 49.230132117000075 ], [ -122.485949435999984, 49.231211504000015 ], [ -122.488833802999935, 49.231224303000054 ], [ -122.48883658799997, 49.230954456000063 ], [ -122.488424535999911, 49.230952632 ], [ -122.488432894999917, 49.23014309200002 ], [ -122.48884494, 49.230144916000071 ], [ -122.488850507, 49.229605221000085 ], [ -122.490498664, 49.229612503000034 ], [ -122.490490338999919, 49.230422044000079 ], [ -122.491314430999964, 49.230425675000077 ], [ -122.491319970999925, 49.229885981000074 ], [ -122.490907931, 49.229884167000066 ], [ -122.490912592999919, 49.22943049 ], [ -122.488942051, 49.229366325000107 ], [ -122.488991569999925, 49.228711694000033 ], [ -122.488267567999969, 49.228688109000082 ], [ -122.488353625999963, 49.22755063400006 ], [ -122.488328441999926, 49.227549813000067 ], [ -122.488339195999941, 49.22740765700005 ], [ -122.488376736999911, 49.226911458000068 ], [ -122.486953431999964, 49.226865079000078 ], [ -122.487010181999906, 49.226115248000077 ], [ -122.483809868999941, 49.226010897000094 ], [ -122.484060390999929, 49.222703487000047 ], [ -122.483508459999925, 49.22268548100007 ], [ -122.483504022999966, 49.222744053000092 ], [ -122.482037215999966, 49.222696185000132 ], [ -122.482002984, 49.223147887000067 ], [ -122.481069883999979, 49.223117426000044 ], [ -122.480934938999937, 49.224897507999977 ], [ -122.479286684, 49.224843682000063 ], [ -122.479271344999958, 49.225045913000017 ], [ -122.479336014999944, 49.225048024000046 ], [ -122.47906327299998, 49.228643742000024 ], [ -122.478997480999936, 49.228641594000067 ], [ -122.478941909999918, 49.229374143000101 ], [ -122.476156390999947, 49.229283120000041 ], [ -122.476206284999989, 49.227263596000107 ], [ -122.476204894999938, 49.226105515000029 ], [ -122.47623917099996, 49.225824372000019 ], [ -122.476256091999986, 49.22568549800009 ], [ -122.476400206000022, 49.225342308000066 ], [ -122.476634303999944, 49.22500749900005 ], [ -122.477295203999915, 49.224261410000032 ], [ -122.477671002999969, 49.223742897000101 ], [ -122.47785520599993, 49.223124397000028 ], [ -122.477850582999935, 49.221648053000081 ], [ -122.477849575999983, 49.221334508000062 ], [ -122.477861588999957, 49.220478661000108 ], [ -122.477866717999959, 49.220113098000091 ], [ -122.479658709999939, 49.2201188780001 ], [ -122.482428296999942, 49.220127795000039 ], [ -122.482611581999933, 49.220127224000109 ], [ -122.484355272999949, 49.220121827000064 ], [ -122.484698580999961, 49.22012077400008 ], [ -122.485440213999951, 49.220118464000052 ], [ -122.486003198999967, 49.220116706000148 ], [ -122.489038304999951, 49.220107191000125 ], [ -122.489932882999966, 49.220134632000054 ], [ -122.48999999099999, 49.220136702000048 ], [ -122.490589582999931, 49.220182991000073 ], [ -122.491266708999916, 49.220216696000087 ], [ -122.493431218999916, 49.220251591000107 ], [ -122.498727009000021, 49.220336804000048 ], [ -122.500200314999944, 49.220355219000041 ], [ -122.50152680799998, 49.22037180100007 ], [ -122.501971710999968, 49.220376000000101 ], [ -122.503619374999914, 49.220391503000073 ], [ -122.508805615999947, 49.220440196 ], [ -122.509578964999932, 49.220442799000153 ], [ -122.511597584999947, 49.22044959100009 ], [ -122.51249809799998, 49.220452604000073 ], [ -122.51250025399996, 49.221025675000142 ], [ -122.512502183, 49.221538531000064 ], [ -122.512502968999954, 49.221754254000061 ], [ -122.512503733999949, 49.221961134000054 ], [ -122.512503895999956, 49.222001787000089 ], [ -122.512488415999883, 49.222393404000101 ], [ -122.512419388999945, 49.224138085000043 ], [ -122.512357132999924, 49.225711756000088 ], [ -122.512349584999967, 49.225902395000055 ], [ -122.512361152999986, 49.226664948000064 ], [ -122.512365507999945, 49.226951789000076 ], [ -122.51233860899994, 49.227602403000084 ], [ -122.512251491999962, 49.229492006000093 ], [ -122.512004612999959, 49.234903442000046 ], [ -122.511999109999948, 49.235024904000092 ], [ -122.511973000999916, 49.235829865000014 ], [ -122.511951683999925, 49.236486564000131 ], [ -122.511945853999961, 49.236666550000052 ], [ -122.5118895949999, 49.238401508000045 ], [ -122.511809736999979, 49.24001087200002 ], [ -122.511788290999945, 49.240442506000058 ], [ -122.511757485999937, 49.241063812000036 ], [ -122.51170333, 49.24215454900007 ], [ -122.51165440299998, 49.243140575000041 ], [ -122.511620544, 49.243822584000029 ], [ -122.50738804299999, 49.243685580000069 ], [ -122.507658680999953, 49.240089872000063 ], [ -122.508179733999953, 49.240106748000102 ] ], [ [ -122.495451381999928, 49.228824663000111 ], [ -122.495459626999917, 49.228015122000087 ], [ -122.494537671999979, 49.228011091000106 ], [ -122.494456174, 49.229090172000099 ], [ -122.494624564, 49.229090909000064 ], [ -122.49462731499996, 49.228821061000112 ], [ -122.495451381999928, 49.228824663000111 ] ], [ [ -122.49835200699998, 49.227218141000023 ], [ -122.49835473899999, 49.226948293000085 ], [ -122.500002809999927, 49.226955438000047 ], [ -122.500001812, 49.227054183000106 ], [ -122.500067069999957, 49.22618872000006 ], [ -122.495342392999987, 49.226035204 ], [ -122.495412047999977, 49.225112621000051 ], [ -122.495233144999986, 49.22510680400007 ], [ -122.495405761999947, 49.222820458000051 ], [ -122.495299788999944, 49.222817012000071 ], [ -122.495300182999983, 49.222811799000098 ], [ -122.494700522999949, 49.222792299000041 ], [ -122.4945630499999, 49.224612797000134 ], [ -122.494615927999973, 49.224614517000077 ], [ -122.494515592999974, 49.225943135000051 ], [ -122.494693405999968, 49.225948918000078 ], [ -122.494619163999943, 49.226932013000095 ], [ -122.497942720999959, 49.2269465030001 ], [ -122.497939986999967, 49.227216351000017 ], [ -122.49835200699998, 49.227218141000023 ] ], [ [ -122.501950984999908, 49.223024741000053 ], [ -122.50177638599996, 49.225341670000049 ], [ -122.506003742999923, 49.225478786000096 ], [ -122.506009471999946, 49.225402691000077 ], [ -122.508395514999947, 49.225480010000105 ], [ -122.508443554999985, 49.224841338000026 ], [ -122.50512443299999, 49.224733769000089 ], [ -122.505209139999977, 49.223608635000126 ], [ -122.503815456999916, 49.223563437000074 ], [ -122.503847699999966, 49.223135327000094 ], [ -122.503749419999934, 49.22313213900005 ], [ -122.503748803999926, 49.223193560000048 ], [ -122.502512845, 49.223188244000042 ], [ -122.502517768999923, 49.222697757000049 ], [ -122.502491810999956, 49.22304229300002 ], [ -122.501950984999908, 49.223024741000053 ] ], [ [ -122.486718691999982, 49.22250112600009 ], [ -122.486735463999963, 49.222279512000043 ], [ -122.485761218999968, 49.222247749000061 ], [ -122.48574444300003, 49.222469364000062 ], [ -122.486718691999982, 49.22250112600009 ] ], [ [ -122.500881418999953, 49.225422623000064 ], [ -122.500829522999965, 49.226111054000029 ], [ -122.500924413999911, 49.226114134000078 ], [ -122.500976309999913, 49.225425703000063 ], [ -122.500881418999953, 49.225422623000064 ] ], [ [ -122.492560268, 49.229484114000051 ], [ -122.492558859999946, 49.229621571000017 ], [ -122.493382938999943, 49.229625188000043 ], [ -122.493384107999972, 49.22951091700002 ], [ -122.492560268, 49.229484114000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17797500", "BldgCostT": "10800000", "sL_LossRatio": "0.720444861702896", "sL_AssetLoss": "138470", "sL_BldgLoss": "99760", "sL_StrLoss": "50490", "sL_NStrLoss": "49270", "sL_ContLoss": "38710", "geom_point": "0101000020E61000008A16C9EC66A05EC0619B7DB3879F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.503909730999936, 49.248265575000048 ], [ -122.50391905, 49.248141906000065 ], [ -122.502828500999954, 49.248106546000081 ], [ -122.503099517999928, 49.24451087500006 ], [ -122.50387027, 49.244535866000049 ], [ -122.503895503999956, 49.244200993000071 ], [ -122.509377108999914, 49.244378574000066 ], [ -122.50934261, 49.24483711900006 ], [ -122.509662325999955, 49.244847467000028 ], [ -122.509391814999958, 49.248443154000093 ], [ -122.503909730999936, 49.248265575000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20772917", "BldgCostT": "14116667", "sL_LossRatio": "0.78639206737478", "sL_AssetLoss": "121826", "sL_BldgLoss": "95803", "sL_StrLoss": "54080", "sL_NStrLoss": "41723", "sL_ContLoss": "26023", "geom_point": "0101000020E6100000395820F6D99B5EC088C115B3529C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.424435524999936, 49.223485368000084 ], [ -122.424498807999939, 49.220377009000082 ], [ -122.424506400999988, 49.220374590000056 ], [ -122.425071894999945, 49.220253715000062 ], [ -122.426976179999969, 49.220077098000118 ], [ -122.428583802999952, 49.219939300000078 ], [ -122.431378495999965, 49.219932800000052 ], [ -122.433876149999918, 49.21994029000011 ], [ -122.44092082, 49.219961119000118 ], [ -122.442870794999962, 49.2199667900001 ], [ -122.447169025999983, 49.219979199000086 ], [ -122.451853334999925, 49.21999252600007 ], [ -122.451791425999929, 49.220802523000089 ], [ -122.44939136499994, 49.220723479000107 ], [ -122.44937503499996, 49.220936980000054 ], [ -122.447169021999912, 49.220864280000107 ], [ -122.447125169999936, 49.221437234000057 ], [ -122.444034695999932, 49.221335309000089 ], [ -122.444026645999926, 49.221440408000092 ], [ -122.44323581899999, 49.221414312000036 ], [ -122.443164561999978, 49.222344327000016 ], [ -122.437685811999941, 49.222163377000129 ], [ -122.437745899000021, 49.221380366000083 ], [ -122.436562221999978, 49.221341235000033 ], [ -122.43645930699995, 49.222681888000061 ], [ -122.432738660999931, 49.222558803 ], [ -122.432707769999979, 49.222960777000061 ], [ -122.429117201999972, 49.222841874000025 ], [ -122.429117017999886, 49.222844264000074 ], [ -122.428889783, 49.222836734000097 ], [ -122.428838543000026, 49.223502769000042 ], [ -122.427516264999966, 49.223458948 ], [ -122.427506393999963, 49.223587201000043 ], [ -122.424435524999936, 49.223485368000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172654167", "BldgCostT": "109466667", "sL_LossRatio": "0.800410247670292", "sL_AssetLoss": "821455", "sL_BldgLoss": "657501", "sL_StrLoss": "376715", "sL_NStrLoss": "280786", "sL_ContLoss": "163954", "geom_point": "0101000020E6100000C1804ED6A29D5EC06F765A6D349D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.457632812999947, 49.238827266000094 ], [ -122.457861622999985, 49.235829764000087 ], [ -122.457074544999983, 49.235803902000065 ], [ -122.457064387999978, 49.235936952000024 ], [ -122.451583980999928, 49.235756712000118 ], [ -122.451588735999962, 49.235694536000061 ], [ -122.450733655999954, 49.235666390000091 ], [ -122.450766384999909, 49.235238446000047 ], [ -122.450238864999946, 49.235221078000059 ], [ -122.450367033999967, 49.233545415000066 ], [ -122.44995885899999, 49.233531975000076 ], [ -122.449998797999925, 49.233009858000131 ], [ -122.449953790999984, 49.233008376000036 ], [ -122.45006815, 49.231513335000059 ], [ -122.450020985999956, 49.231511782000084 ], [ -122.450078130999941, 49.230764683000139 ], [ -122.449683120999964, 49.230751675000114 ], [ -122.44995815, 49.227156042000054 ], [ -122.450699249999957, 49.227180449000102 ], [ -122.450703920999956, 49.227119361000064 ], [ -122.45207330399991, 49.227164443000028 ], [ -122.452123097999959, 49.226512993 ], [ -122.45218007299998, 49.226514869000034 ], [ -122.452226526999965, 49.225907094000021 ], [ -122.45246923699996, 49.225915082000022 ], [ -122.452511246999933, 49.225365398000086 ], [ -122.453147323999971, 49.225386332000049 ], [ -122.453170934999989, 49.225077315000078 ], [ -122.456216721999951, 49.225177499000026 ], [ -122.456366810999938, 49.223211486000054 ], [ -122.457127641999975, 49.22323649800007 ], [ -122.45726417399996, 49.221447527000045 ], [ -122.453925058999971, 49.221337712000086 ], [ -122.45402734599999, 49.219998641000046 ], [ -122.457510676999917, 49.220008343000096 ], [ -122.457784008999965, 49.22000908800009 ], [ -122.458364929999945, 49.220013889000015 ], [ -122.461738715999942, 49.220041694000059 ], [ -122.46699191499998, 49.220078805000057 ], [ -122.470385208999986, 49.220090884000093 ], [ -122.472531765999946, 49.220097309000032 ], [ -122.477866717999959, 49.220113098000091 ], [ -122.477861588999957, 49.220478661000108 ], [ -122.477849575999983, 49.221334508000062 ], [ -122.477850582999935, 49.221648053000081 ], [ -122.47785520599993, 49.223124397000028 ], [ -122.477671002999969, 49.223742897000101 ], [ -122.477295203999915, 49.224261410000032 ], [ -122.476634303999944, 49.22500749900005 ], [ -122.476400206000022, 49.225342308000066 ], [ -122.476256091999986, 49.22568549800009 ], [ -122.47623917099996, 49.225824372000019 ], [ -122.476204894999938, 49.226105515000029 ], [ -122.476206284999989, 49.227263596000107 ], [ -122.476156390999947, 49.229283120000041 ], [ -122.473462192999989, 49.229195012000034 ], [ -122.473463874999979, 49.229172870000127 ], [ -122.472284552999895, 49.229134282000118 ], [ -122.47234901399996, 49.228286146000038 ], [ -122.472338007999952, 49.22828578500004 ], [ -122.472448427999922, 49.226832886000125 ], [ -122.471985697999955, 49.226830771000053 ], [ -122.471991448999944, 49.226291079000049 ], [ -122.471579438999953, 49.226289195000035 ], [ -122.471567928999931, 49.227368580000046 ], [ -122.471155907999972, 49.227366694000075 ], [ -122.47115302899999, 49.227636541000031 ], [ -122.470690140999935, 49.227634421000076 ], [ -122.470612694999943, 49.228652929000127 ], [ -122.470879348999986, 49.228661660000093 ], [ -122.470786806, 49.229878758000048 ], [ -122.470875526, 49.229881662000011 ], [ -122.47060210099994, 49.233477333000032 ], [ -122.470387218, 49.233470298000043 ], [ -122.470319136999976, 49.234365438000047 ], [ -122.469882086000013, 49.234351127000068 ], [ -122.469817463999931, 49.235200646000145 ], [ -122.464560068999958, 49.235028367000098 ], [ -122.464463108999951, 49.236301073000014 ], [ -122.463322704999939, 49.236263669000031 ], [ -122.463113605999951, 49.23900719800011 ], [ -122.457632812999947, 49.238827266000094 ] ], [ [ -122.47035121499998, 49.225553203000118 ], [ -122.470351645999969, 49.225512863000112 ], [ -122.469116006999954, 49.225472392000071 ], [ -122.469115636999945, 49.225506989000088 ], [ -122.469887692999947, 49.225532278000031 ], [ -122.46988725599999, 49.225538008000065 ], [ -122.47035121499998, 49.225553203000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119704250", "BldgCostT": "78815000", "sL_LossRatio": "0.737852128135846", "sL_AssetLoss": "1389338", "sL_BldgLoss": "1025126", "sL_StrLoss": "490386", "sL_NStrLoss": "534740", "sL_ContLoss": "364212", "geom_point": "0101000020E610000022E2287184AA5EC0401EB061BC844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.656683048999923, 49.042561894000137 ], [ -122.656681465999895, 49.039899152000032 ], [ -122.656680759999986, 49.038738808000105 ], [ -122.656680593999965, 49.038483686000106 ], [ -122.652907363999972, 49.03846772 ], [ -122.652825254999982, 49.038467359000045 ], [ -122.651260787999973, 49.038460699000069 ], [ -122.650193596999884, 49.038456128000057 ], [ -122.649933656999977, 49.038455016000086 ], [ -122.648319169999965, 49.038448092000053 ], [ -122.647206394999955, 49.038443304000054 ], [ -122.647165606999977, 49.031213405000067 ], [ -122.648233549999929, 49.031212606000089 ], [ -122.64995718199998, 49.031211289000105 ], [ -122.650473387999924, 49.031210888000047 ], [ -122.650332189999972, 49.033176471000012 ], [ -122.650141728, 49.033170527000031 ], [ -122.650053639999925, 49.034396629000106 ], [ -122.650103100999914, 49.034398173000049 ], [ -122.650062992999935, 49.034956409000053 ], [ -122.650090735999953, 49.03495727500011 ], [ -122.650012428999986, 49.036047162000031 ], [ -122.650262695999942, 49.036054973000034 ], [ -122.650178564, 49.037225957000054 ], [ -122.65082787399993, 49.037246222000043 ], [ -122.65082842399994, 49.037238545 ], [ -122.65167812599999, 49.03726505600018 ], [ -122.651693299999977, 49.03705376500006 ], [ -122.652241470999954, 49.037070865000082 ], [ -122.652246280999975, 49.037003878000043 ], [ -122.652813473999927, 49.037021569000046 ], [ -122.65281655899993, 49.036978592000047 ], [ -122.657884813999956, 49.03713653300013 ], [ -122.657901003999939, 49.034775825000054 ], [ -122.657470727999936, 49.034762425000039 ], [ -122.657473344999971, 49.034725916000113 ], [ -122.656909062999887, 49.034708340000066 ], [ -122.656865470999946, 49.035316306 ], [ -122.651407880999926, 49.035146163000043 ], [ -122.65166620799998, 49.031548948000044 ], [ -122.654081314999956, 49.031624275000098 ], [ -122.654119100999949, 49.031097662000072 ], [ -122.65448803299995, 49.031027626000068 ], [ -122.656904004999916, 49.031102918000038 ], [ -122.656911483999949, 49.030998586000173 ], [ -122.657451300999966, 49.031167389000039 ], [ -122.657682613999953, 49.031193139 ], [ -122.657799885, 49.03120618300008 ], [ -122.65924676499999, 49.031196604000051 ], [ -122.660012574999911, 49.031191513000088 ], [ -122.660778732999972, 49.031186410000025 ], [ -122.662368083999951, 49.031175813000083 ], [ -122.662358529999935, 49.031309293000128 ], [ -122.663185732999949, 49.03133501700011 ], [ -122.662928295999947, 49.034932261000037 ], [ -122.661594228999959, 49.034890771000029 ], [ -122.661572471999975, 49.038098012000042 ], [ -122.660169438999944, 49.038093889000102 ], [ -122.66006015399995, 49.039619397000102 ], [ -122.660173350999941, 49.039622919000074 ], [ -122.660128233999941, 49.040252707000057 ], [ -122.660326378999983, 49.040253290000109 ], [ -122.660331892000016, 49.039443704000107 ], [ -122.661973791999941, 49.039448524000072 ], [ -122.661979277999933, 49.038638939000066 ], [ -122.662389747999953, 49.03864014100003 ], [ -122.662391574999958, 49.038370279000056 ], [ -122.663654030999979, 49.038373965000112 ], [ -122.663670135999894, 49.038354562000031 ], [ -122.664034076999954, 49.038280330000077 ], [ -122.664035255999949, 49.038105207000079 ], [ -122.665352950999946, 49.038109037000076 ], [ -122.665543488999944, 49.038106709000061 ], [ -122.66570570199994, 49.035838501000065 ], [ -122.66597852799994, 49.035846977000105 ], [ -122.665983715999957, 49.035774415000077 ], [ -122.66515045, 49.035748527000052 ], [ -122.665405826999915, 49.032177764000018 ], [ -122.664970361999963, 49.032164232000092 ], [ -122.665044137999942, 49.031132687000117 ], [ -122.665061729999934, 49.031131452000068 ], [ -122.665802334999924, 49.031079462000037 ], [ -122.666074253999938, 49.031060406000037 ], [ -122.66647158899994, 49.031032491000126 ], [ -122.667579099999898, 49.031166001000017 ], [ -122.669254716999959, 49.031157691000082 ], [ -122.6761771, 49.031104601000088 ], [ -122.678372207999956, 49.031101048000089 ], [ -122.678645812999918, 49.031100621000085 ], [ -122.679576159999939, 49.031099090000069 ], [ -122.679754001999953, 49.031098786000051 ], [ -122.680297294999917, 49.03109788600009 ], [ -122.680300823999957, 49.031610098000066 ], [ -122.680326031999968, 49.03527099100009 ], [ -122.680328370999945, 49.035612893000049 ], [ -122.680347702999939, 49.038417099000057 ], [ -122.679953539999957, 49.038417938000066 ], [ -122.67874935899999, 49.038420427000098 ], [ -122.678325390999987, 49.038421321000094 ], [ -122.675588803999943, 49.03842696100002 ], [ -122.674834495999903, 49.038428501000091 ], [ -122.674316631999943, 49.038431023000093 ], [ -122.674179820999925, 49.038431691000049 ], [ -122.67322199699997, 49.038436344000068 ], [ -122.67208628499999, 49.038441866 ], [ -122.669937896999969, 49.038452269000111 ], [ -122.669329593999976, 49.038455210000073 ], [ -122.669338685999946, 49.039386949000111 ], [ -122.669345920999916, 49.040124518000084 ], [ -122.669364814999966, 49.042059593000069 ], [ -122.669375845999966, 49.043039132000068 ], [ -122.669382857999921, 49.043659867000017 ], [ -122.669384903999983, 49.043839867000024 ], [ -122.669392405999957, 49.044505700000052 ], [ -122.669394583999932, 49.044676539000044 ], [ -122.669406809999941, 49.045644495000026 ], [ -122.667946658999966, 49.045647813000137 ], [ -122.66751220099998, 49.045648778000093 ], [ -122.664142566999971, 49.045655969000073 ], [ -122.663896148, 49.04565650200005 ], [ -122.66384609, 49.045656591000046 ], [ -122.663690848999948, 49.045656872000059 ], [ -122.663252870999955, 49.045657670000011 ], [ -122.660762202999962, 49.045662162000056 ], [ -122.658572295999974, 49.045666040000071 ], [ -122.658312796999951, 49.045666494999985 ], [ -122.656684882999969, 49.045669887000045 ], [ -122.656683904999909, 49.044034895000046 ], [ -122.656683048999923, 49.042561894000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105012167", "BldgCostT": "71686667", "sL_LossRatio": "0.719474946521403", "sL_AssetLoss": "1396353", "sL_BldgLoss": "1004641", "sL_StrLoss": "316460", "sL_NStrLoss": "688181", "sL_ContLoss": "391712", "geom_point": "0101000020E61000007B0C2CD331AB5EC02730F88F60854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669382857999921, 49.043659867000017 ], [ -122.669375845999966, 49.043039132000068 ], [ -122.669364814999966, 49.042059593000069 ], [ -122.669345920999916, 49.040124518000084 ], [ -122.669338685999946, 49.039386949000111 ], [ -122.669329593999976, 49.038455210000073 ], [ -122.669937896999969, 49.038452269000111 ], [ -122.67208628499999, 49.038441866 ], [ -122.67322199699997, 49.038436344000068 ], [ -122.674179820999925, 49.038431691000049 ], [ -122.674316631999943, 49.038431023000093 ], [ -122.674834495999903, 49.038428501000091 ], [ -122.675588803999943, 49.03842696100002 ], [ -122.678325390999987, 49.038421321000094 ], [ -122.67874935899999, 49.038420427000098 ], [ -122.679953539999957, 49.038417938000066 ], [ -122.680347702999939, 49.038417099000057 ], [ -122.680812959999955, 49.039317602000054 ], [ -122.680795827999944, 49.039403785000019 ], [ -122.680322421999989, 49.041788900000078 ], [ -122.680323836999946, 49.042008770000074 ], [ -122.680324408999979, 49.042089816000136 ], [ -122.680324846999966, 49.042161762000013 ], [ -122.68032679699995, 49.042456012000024 ], [ -122.680333454999939, 49.043627955000019 ], [ -122.680336822999905, 49.044221754000034 ], [ -122.680337386999952, 49.044324697000029 ], [ -122.680337669999915, 49.04436565800011 ], [ -122.680339946999979, 49.044725536000016 ], [ -122.68034103599993, 49.044896448000038 ], [ -122.680345798999937, 49.045647090000074 ], [ -122.67930479599994, 49.045646376 ], [ -122.67841524899994, 49.045645756000084 ], [ -122.677977392999964, 49.045645446000037 ], [ -122.677731021999989, 49.045645244000092 ], [ -122.676827838999913, 49.045644624000019 ], [ -122.676554171999939, 49.045644424000095 ], [ -122.67604775199996, 49.045644041000074 ], [ -122.67488878899999, 49.045643197000096 ], [ -122.674460562999968, 49.045643315000063 ], [ -122.674022615999931, 49.045643425000058 ], [ -122.672804606999975, 49.045643727000027 ], [ -122.672188750999922, 49.045643892000022 ], [ -122.67084764699996, 49.045644175000071 ], [ -122.669406809999941, 49.045644495000026 ], [ -122.669394583999932, 49.044676539000044 ], [ -122.669392405999957, 49.044505700000052 ], [ -122.669384903999983, 49.043839867000024 ], [ -122.669382857999921, 49.043659867000017 ] ], [ [ -122.673441357999948, 49.043414844000019 ], [ -122.673443211999981, 49.04313168900007 ], [ -122.672722349, 49.04310934700009 ], [ -122.672703595999948, 49.04337210100006 ], [ -122.67335139699999, 49.043392179000151 ], [ -122.673349981999962, 49.043412012000012 ], [ -122.673441357999948, 49.043414844000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102063416", "BldgCostT": "66971666", "sL_LossRatio": "0.716401580839393", "sL_AssetLoss": "1343590", "sL_BldgLoss": "962550", "sL_StrLoss": "349370", "sL_NStrLoss": "613180", "sL_ContLoss": "381040", "geom_point": "0101000020E6100000C449596DDBAA5EC031DCA94E41864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669450820999955, 49.051747354000028 ], [ -122.669441211999981, 49.051000992000148 ], [ -122.668496900999926, 49.051065401000052 ], [ -122.667773842999964, 49.051064103000037 ], [ -122.667541161999949, 49.051063691000159 ], [ -122.663804886999941, 49.051056896000034 ], [ -122.661159015999928, 49.051051994000076 ], [ -122.658381683999949, 49.051064122000078 ], [ -122.658366428999969, 49.049870974000072 ], [ -122.658351761999953, 49.048719694000113 ], [ -122.658341990999958, 49.047955057000131 ], [ -122.658323883999969, 49.046533586000102 ], [ -122.658312796999951, 49.045666494999985 ], [ -122.658572295999974, 49.045666040000071 ], [ -122.660762202999962, 49.045662162000056 ], [ -122.663252870999955, 49.045657670000011 ], [ -122.663690848999948, 49.045656872000059 ], [ -122.66384609, 49.045656591000046 ], [ -122.663896148, 49.04565650200005 ], [ -122.664142566999971, 49.045655969000073 ], [ -122.66751220099998, 49.045648778000093 ], [ -122.667946658999966, 49.045647813000137 ], [ -122.669406809999941, 49.045644495000026 ], [ -122.67084764699996, 49.045644175000071 ], [ -122.672188750999922, 49.045643892000022 ], [ -122.672804606999975, 49.045643727000027 ], [ -122.674022615999931, 49.045643425000058 ], [ -122.674460562999968, 49.045643315000063 ], [ -122.67488878899999, 49.045643197000096 ], [ -122.67604775199996, 49.045644041000074 ], [ -122.676554171999939, 49.045644424000095 ], [ -122.676827838999913, 49.045644624000019 ], [ -122.677731021999989, 49.045645244000092 ], [ -122.677977392999964, 49.045645446000037 ], [ -122.67841524899994, 49.045645756000084 ], [ -122.67930479599994, 49.045646376 ], [ -122.680345798999937, 49.045647090000074 ], [ -122.680388826999945, 49.049161299000019 ], [ -122.68039102399996, 49.049340715000021 ], [ -122.68042926899993, 49.052462703000039 ], [ -122.680434498999929, 49.052889898000039 ], [ -122.678779156999923, 49.052885194000098 ], [ -122.678026450999965, 49.052883067000089 ], [ -122.677161701, 49.052880599000112 ], [ -122.675289274999969, 49.052885119000052 ], [ -122.673893242999952, 49.052888478000042 ], [ -122.673400550999972, 49.05288966100003 ], [ -122.673181457999959, 49.052890192000049 ], [ -122.672455996999972, 49.052891928000051 ], [ -122.671251533999907, 49.052894772000087 ], [ -122.669465686, 49.05289900200011 ], [ -122.669458371999966, 49.052332239000123 ], [ -122.669450820999955, 49.051747354000028 ] ], [ [ -122.680373340999921, 49.050715372000084 ], [ -122.680374301999962, 49.050565499000129 ], [ -122.679963733999926, 49.050564361000056 ], [ -122.679979199999963, 49.048154385000032 ], [ -122.675790631999973, 49.048024771000044 ], [ -122.675762763999955, 49.048415510000027 ], [ -122.673348591999954, 49.048340730000035 ], [ -122.67331608799995, 49.048796168000109 ], [ -122.672987799999959, 49.048785995000074 ], [ -122.672939318999966, 49.049465202000114 ], [ -122.673812285999986, 49.049467672000084 ], [ -122.673810520999922, 49.049737534000059 ], [ -122.67408092, 49.049738298000079 ], [ -122.674092198999958, 49.049580244000055 ], [ -122.677095480999952, 49.049673240000075 ], [ -122.67709675199994, 49.049476909000127 ], [ -122.678328425999936, 49.049480348000031 ], [ -122.678326936999937, 49.049711349000077 ], [ -122.679551560999982, 49.049749231000142 ], [ -122.679484690999956, 49.050687892000028 ], [ -122.680373340999921, 49.050715372000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115113500", "BldgCostT": "77390000", "sL_LossRatio": "0.720123357156304", "sL_AssetLoss": "1906983", "sL_BldgLoss": "1373263", "sL_StrLoss": "614563", "sL_NStrLoss": "758700", "sL_ContLoss": "533720", "geom_point": "0101000020E6100000EFF92F4AEFA95EC0AF65532A38864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.658407480999983, 49.053721490000051 ], [ -122.658405207999962, 49.052906807000035 ], [ -122.652906112000025, 49.052923906000061 ], [ -122.652760954999934, 49.05292427500008 ], [ -122.647349686999974, 49.052937995000072 ], [ -122.647294610999936, 49.047976388000102 ], [ -122.647290898999969, 49.047643572000048 ], [ -122.647269178999963, 49.04568989400012 ], [ -122.64723787299999, 49.042074831000086 ], [ -122.647224696999928, 49.04055442700011 ], [ -122.647222198999913, 49.040266601000084 ], [ -122.64721563499999, 49.0395108210001 ], [ -122.647215024999952, 49.039438867000108 ], [ -122.647206394999955, 49.038443304000054 ], [ -122.648319169999965, 49.038448092000053 ], [ -122.649933656999977, 49.038455016000086 ], [ -122.650193596999884, 49.038456128000057 ], [ -122.651260787999973, 49.038460699000069 ], [ -122.652825254999982, 49.038467359000045 ], [ -122.652907363999972, 49.03846772 ], [ -122.656680593999965, 49.038483686000106 ], [ -122.656680759999986, 49.038738808000105 ], [ -122.656681465999895, 49.039899152000032 ], [ -122.656683048999923, 49.042561894000137 ], [ -122.656683904999909, 49.044034895000046 ], [ -122.656684882999969, 49.045669887000045 ], [ -122.658312796999951, 49.045666494999985 ], [ -122.658323883999969, 49.046533586000102 ], [ -122.658341990999958, 49.047955057000131 ], [ -122.658351761999953, 49.048719694000113 ], [ -122.658366428999969, 49.049870974000072 ], [ -122.658381683999949, 49.051064122000078 ], [ -122.661159015999928, 49.051051994000076 ], [ -122.663804886999941, 49.051056896000034 ], [ -122.667541161999949, 49.051063691000159 ], [ -122.667773842999964, 49.051064103000037 ], [ -122.668496900999926, 49.051065401000052 ], [ -122.669441211999981, 49.051000992000148 ], [ -122.669450820999955, 49.051747354000028 ], [ -122.669458371999966, 49.052332239000123 ], [ -122.669465686, 49.05289900200011 ], [ -122.666681281999942, 49.052907209000068 ], [ -122.66524323699997, 49.052906907000093 ], [ -122.664517926999963, 49.052906731000029 ], [ -122.66390442, 49.05290660200005 ], [ -122.66389509599999, 49.054124662000063 ], [ -122.663892898999933, 49.054412509000059 ], [ -122.66389, 49.054789792000065 ], [ -122.663905049999968, 49.055843173000049 ], [ -122.663910143999914, 49.056203062000066 ], [ -122.663912475999908, 49.056364963000128 ], [ -122.66392865099999, 49.057498589000069 ], [ -122.663933497999906, 49.057840507000087 ], [ -122.66394186, 49.058425244000048 ], [ -122.663963154999976, 49.059918416000102 ], [ -122.663966608999928, 49.060159283000097 ], [ -122.662757787999936, 49.060163629000023 ], [ -122.661895480999988, 49.060166692000017 ], [ -122.658425490999946, 49.060178985000043 ], [ -122.658423889999966, 49.059595971000142 ], [ -122.658423431999907, 49.059443065000075 ], [ -122.658418446999974, 49.057652776000054 ], [ -122.658416190999986, 49.056843071000088 ], [ -122.658413637999942, 49.055934383000093 ], [ -122.65841282699995, 49.055637540000077 ], [ -122.658407480999983, 49.053721490000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86371417", "BldgCostT": "57831667", "sL_LossRatio": "0.714518281478169", "sL_AssetLoss": "1431230", "sL_BldgLoss": "1022640", "sL_StrLoss": "389500", "sL_NStrLoss": "633140", "sL_ContLoss": "408590", "geom_point": "0101000020E61000001C9D146205AB5EC0F19A0DE83B874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.663905049999968, 49.055843173000049 ], [ -122.66389, 49.054789792000065 ], [ -122.663892898999933, 49.054412509000059 ], [ -122.66389509599999, 49.054124662000063 ], [ -122.66390442, 49.05290660200005 ], [ -122.664517926999963, 49.052906731000029 ], [ -122.66524323699997, 49.052906907000093 ], [ -122.666681281999942, 49.052907209000068 ], [ -122.669465686, 49.05289900200011 ], [ -122.671251533999907, 49.052894772000087 ], [ -122.672455996999972, 49.052891928000051 ], [ -122.673181457999959, 49.052890192000049 ], [ -122.673400550999972, 49.05288966100003 ], [ -122.673893242999952, 49.052888478000042 ], [ -122.675289274999969, 49.052885119000052 ], [ -122.677161701, 49.052880599000112 ], [ -122.678026450999965, 49.052883067000089 ], [ -122.678779156999923, 49.052885194000098 ], [ -122.680434498999929, 49.052889898000039 ], [ -122.68044684099999, 49.053632366000038 ], [ -122.680454743999917, 49.054109194000013 ], [ -122.68045521199997, 49.054136094000057 ], [ -122.680448891, 49.055376898000134 ], [ -122.680477892999946, 49.055488709000144 ], [ -122.680485709999971, 49.056002249000073 ], [ -122.680407372, 49.055999827000043 ], [ -122.68040699899997, 49.056005068000061 ], [ -122.680485790999967, 49.05600750500011 ], [ -122.680518920999972, 49.058183845000094 ], [ -122.680525360999951, 49.058606710000028 ], [ -122.680537863, 49.059425424000096 ], [ -122.680548522, 49.060125197000055 ], [ -122.679184236999987, 49.060125148000083 ], [ -122.677158413999933, 49.060125058000033 ], [ -122.675816937999954, 49.060124973000022 ], [ -122.675474684, 49.060124934000058 ], [ -122.673667957999967, 49.060124798000096 ], [ -122.670686794999966, 49.060124502000072 ], [ -122.6695431099999, 49.060142187000054 ], [ -122.66769978399995, 49.060147884000038 ], [ -122.666727804999979, 49.060150865 ], [ -122.665838023999939, 49.060153588000055 ], [ -122.663966608999928, 49.060159283000097 ], [ -122.663963154999976, 49.059918416000102 ], [ -122.66394186, 49.058425244000048 ], [ -122.663933497999906, 49.057840507000087 ], [ -122.66392865099999, 49.057498589000069 ], [ -122.663912475999908, 49.056364963000128 ], [ -122.663910143999914, 49.056203062000066 ], [ -122.663905049999968, 49.055843173000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122684728", "BldgCostT": "81044857", "sL_LossRatio": "0.722296924870454", "sL_AssetLoss": "1845093", "sL_BldgLoss": "1332705", "sL_StrLoss": "591515", "sL_NStrLoss": "741190", "sL_ContLoss": "512388", "geom_point": "0101000020E6100000123288F60EAA5EC09BE64E97E2874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.647381956999979, 49.066226336000035 ], [ -122.647368023999888, 49.065086359000134 ], [ -122.64736145699996, 49.064546587000109 ], [ -122.647354169999986, 49.063952835000123 ], [ -122.647351423999964, 49.06372786400015 ], [ -122.647338565000013, 49.062675288000051 ], [ -122.647330981999957, 49.062054440000068 ], [ -122.64732510599994, 49.061571598000107 ], [ -122.647366711999979, 49.060232701000047 ], [ -122.647353457999941, 49.05790749300008 ], [ -122.647341152999971, 49.055748522000073 ], [ -122.647340260999925, 49.055586902000073 ], [ -122.647339286999937, 49.055421591000027 ], [ -122.647342103, 49.054750024000072 ], [ -122.647349686999974, 49.052937995000072 ], [ -122.652760954999934, 49.05292427500008 ], [ -122.652906112000025, 49.052923906000061 ], [ -122.658405207999962, 49.052906807000035 ], [ -122.658407480999983, 49.053721490000051 ], [ -122.65841282699995, 49.055637540000077 ], [ -122.658413637999942, 49.055934383000093 ], [ -122.658416190999986, 49.056843071000088 ], [ -122.658418446999974, 49.057652776000054 ], [ -122.658423431999907, 49.059443065000075 ], [ -122.658423889999966, 49.059595971000142 ], [ -122.658425490999946, 49.060178985000043 ], [ -122.661895480999988, 49.060166692000017 ], [ -122.662757787999936, 49.060163629000023 ], [ -122.663966608999928, 49.060159283000097 ], [ -122.665838023999939, 49.060153588000055 ], [ -122.666727804999979, 49.060150865 ], [ -122.66769978399995, 49.060147884000038 ], [ -122.6695431099999, 49.060142187000054 ], [ -122.669531381999946, 49.061175423000101 ], [ -122.669520416999944, 49.062137811000063 ], [ -122.669514401999919, 49.062669395000093 ], [ -122.671038510999963, 49.062670688000054 ], [ -122.671036662999981, 49.063005885000031 ], [ -122.671025808999943, 49.06496688800005 ], [ -122.671025297999918, 49.065058588000078 ], [ -122.670907501999949, 49.065462297000096 ], [ -122.670870779999944, 49.065591895000054 ], [ -122.670835591999918, 49.066467704000033 ], [ -122.672092968999976, 49.066473451000022 ], [ -122.673903795999962, 49.066481703000136 ], [ -122.673899984999977, 49.066792244000048 ], [ -122.673892375999955, 49.067408702000066 ], [ -122.669937586999978, 49.067408244000049 ], [ -122.669571098999967, 49.0674081780001 ], [ -122.669445216999961, 49.067407873000022 ], [ -122.666460027999975, 49.067403287000047 ], [ -122.666113591999974, 49.067402755000053 ], [ -122.6657070099999, 49.06740392800004 ], [ -122.665254192999939, 49.067405195000077 ], [ -122.665050262999941, 49.067405756000014 ], [ -122.664831200999984, 49.067406347000052 ], [ -122.663982612999959, 49.067408702000066 ], [ -122.663544038999959, 49.067408322000091 ], [ -122.662730603999989, 49.067407604000088 ], [ -122.661401514999966, 49.06741320600009 ], [ -122.660272543999952, 49.067421649000075 ], [ -122.660187122999943, 49.067422306000033 ], [ -122.658780067999913, 49.067426909000126 ], [ -122.65850769199993, 49.067427790000117 ], [ -122.656724385999951, 49.067431708000107 ], [ -122.65585027899999, 49.067436506000021 ], [ -122.655125513999963, 49.067440512000097 ], [ -122.654411909, 49.067445042000088 ], [ -122.653768564999908, 49.067449132000029 ], [ -122.653098249999985, 49.067453359000105 ], [ -122.652167041999988, 49.067459267000061 ], [ -122.651086881999973, 49.067466100000068 ], [ -122.648958098999941, 49.067478998000105 ], [ -122.648374382, 49.067482693000038 ], [ -122.647397397999924, 49.06748888900011 ], [ -122.647384958999979, 49.066471514000014 ], [ -122.647381956999979, 49.066226336000035 ] ], [ [ -122.659332129999882, 49.065617825000047 ], [ -122.659335819999939, 49.065078104000072 ], [ -122.658925132999954, 49.065076891000089 ], [ -122.658930673999961, 49.06426730900008 ], [ -122.659587607999924, 49.064269248000116 ], [ -122.659669500999954, 49.063126912000037 ], [ -122.658630050999975, 49.06309457600004 ], [ -122.658449285999936, 49.065615216000069 ], [ -122.659332129999882, 49.065617825000047 ] ], [ [ -122.655116266999968, 49.056205460000029 ], [ -122.655143622999958, 49.055824318000077 ], [ -122.65498584599996, 49.055819403000093 ], [ -122.655081931999916, 49.054480683000044 ], [ -122.65482608399995, 49.054472712000106 ], [ -122.654775194999942, 49.055181698000077 ], [ -122.65396273099995, 49.055156383000082 ], [ -122.653960860999987, 49.055182419000033 ], [ -122.653368140999987, 49.055163946000079 ], [ -122.653367336999978, 49.055175132000066 ], [ -122.652714015999919, 49.055154768000108 ], [ -122.652711712, 49.05518684900013 ], [ -122.652023170999939, 49.055165382000027 ], [ -122.65201708699999, 49.055250066000042 ], [ -122.652006574999987, 49.055249738000057 ], [ -122.651945016999917, 49.056106624000044 ], [ -122.655116266999968, 49.056205460000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111915833", "BldgCostT": "77183333", "sL_LossRatio": "0.762647580595828", "sL_AssetLoss": "1634700", "sL_BldgLoss": "1246700", "sL_StrLoss": "549400", "sL_NStrLoss": "697300", "sL_ContLoss": "388000", "geom_point": "0101000020E610000060000252B2AA5EC075DD21E60E894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.66547088, 49.070573215000088 ], [ -122.665463912999897, 49.07013320100004 ], [ -122.664251081999936, 49.070125408000102 ], [ -122.663998904999929, 49.070123789000085 ], [ -122.664001814999963, 49.069892299000074 ], [ -122.664004338999959, 49.069426420000092 ], [ -122.664006301999976, 49.069065004000016 ], [ -122.664006991999941, 49.068920894 ], [ -122.664002660999955, 49.068652534000137 ], [ -122.663997888999944, 49.06835558100007 ], [ -122.663996278999946, 49.068256517000059 ], [ -122.663982612999959, 49.067408702000066 ], [ -122.664831200999984, 49.067406347000052 ], [ -122.665050262999941, 49.067405756000014 ], [ -122.665254192999939, 49.067405195000077 ], [ -122.6657070099999, 49.06740392800004 ], [ -122.666113591999974, 49.067402755000053 ], [ -122.666460027999975, 49.067403287000047 ], [ -122.669445216999961, 49.067407873000022 ], [ -122.669443685999937, 49.068386593000128 ], [ -122.669419136999977, 49.069304223000096 ], [ -122.669427277999944, 49.07018590400007 ], [ -122.669429747, 49.071012431000078 ], [ -122.66942686000003, 49.071914512000028 ], [ -122.669473537999963, 49.073903201000078 ], [ -122.669479659999979, 49.074717241000037 ], [ -122.66820763799997, 49.074706618000043 ], [ -122.667736892, 49.074705531000085 ], [ -122.666831209999899, 49.074681944000176 ], [ -122.665535789999964, 49.074673304000036 ], [ -122.66547312799996, 49.070717126000048 ], [ -122.66547088, 49.070573215000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120989417", "BldgCostT": "79111667", "sL_LossRatio": "0.713227883042357", "sL_AssetLoss": "1974390", "sL_BldgLoss": "1408190", "sL_StrLoss": "609690", "sL_NStrLoss": "798500", "sL_ContLoss": "566200", "geom_point": "0101000020E6100000ABE9FEDA0FAB5EC0DFD19C48F2884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.678133984999974, 49.072499600000064 ], [ -122.674927894999911, 49.071920011000046 ], [ -122.674425600999953, 49.071920696000113 ], [ -122.673565547, 49.071929186000069 ], [ -122.669551233999954, 49.071916560000027 ], [ -122.66942686000003, 49.071914512000028 ], [ -122.669429747, 49.071012431000078 ], [ -122.669427277999944, 49.07018590400007 ], [ -122.669419136999977, 49.069304223000096 ], [ -122.669443685999937, 49.068386593000128 ], [ -122.669445216999961, 49.067407873000022 ], [ -122.669571098999967, 49.0674081780001 ], [ -122.669937586999978, 49.067408244000049 ], [ -122.673892375999955, 49.067408702000066 ], [ -122.675236, 49.067410708000033 ], [ -122.675239266999938, 49.068381399000046 ], [ -122.675255028999985, 49.069272331000107 ], [ -122.67525862699992, 49.070161984000038 ], [ -122.675269003999944, 49.071070755000051 ], [ -122.676671405999969, 49.071075402000119 ], [ -122.677060868999931, 49.071073346000084 ], [ -122.677786264999924, 49.071069502000086 ], [ -122.678088280999944, 49.071067910000103 ], [ -122.678133984999974, 49.072499600000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83844917", "BldgCostT": "54436667", "sL_LossRatio": "0.701144876325088", "sL_AssetLoss": "1415000", "sL_BldgLoss": "992120", "sL_StrLoss": "378020", "sL_NStrLoss": "614100", "sL_ContLoss": "422880", "geom_point": "0101000020E61000003BE6A7FE22AB5EC0C5BB4CE266894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.675041908999944, 49.074828287000088 ], [ -122.675170684999969, 49.074710594000059 ], [ -122.674612959999976, 49.074706182000057 ], [ -122.674038219999929, 49.074701608000062 ], [ -122.673589807, 49.074712981000118 ], [ -122.673063083999949, 49.074713555000052 ], [ -122.670436458999959, 49.074734259000088 ], [ -122.669634308999932, 49.074717512000063 ], [ -122.669479659999979, 49.074717241000037 ], [ -122.669473537999963, 49.073903201000078 ], [ -122.66942686000003, 49.071914512000028 ], [ -122.669551233999954, 49.071916560000027 ], [ -122.673565547, 49.071929186000069 ], [ -122.674425600999953, 49.071920696000113 ], [ -122.674927894999911, 49.071920011000046 ], [ -122.678133984999974, 49.072499600000064 ], [ -122.678337402999958, 49.072775306000082 ], [ -122.678677791999959, 49.073126493000046 ], [ -122.678938822999925, 49.073751027000036 ], [ -122.678993379999937, 49.073881603000039 ], [ -122.67900889799995, 49.074527744000044 ], [ -122.679013397999981, 49.074715905000126 ], [ -122.67868, 49.074726306000095 ], [ -122.67802323199993, 49.074642639000047 ], [ -122.677288307999973, 49.07460939400007 ], [ -122.676921844999967, 49.075208899000138 ], [ -122.676908327999939, 49.075210291000104 ], [ -122.67659027599997, 49.075242996000107 ], [ -122.676541132999944, 49.075241574000067 ], [ -122.675899079999979, 49.075222847000077 ], [ -122.675443620999886, 49.075209598000072 ], [ -122.67508388899995, 49.075199091000094 ], [ -122.675024013, 49.075232391000021 ], [ -122.675041908999944, 49.074828287000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111588500", "BldgCostT": "73010000", "sL_LossRatio": "0.717170259971545", "sL_AssetLoss": "2010220", "sL_BldgLoss": "1441670", "sL_StrLoss": "633190", "sL_NStrLoss": "808480", "sL_ContLoss": "568550", "geom_point": "0101000020E61000007ADAC81269AB5EC079CAE681FA884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.678133984999974, 49.072499600000064 ], [ -122.678088280999944, 49.071067910000103 ], [ -122.677786264999924, 49.071069502000086 ], [ -122.677060868999931, 49.071073346000084 ], [ -122.676671405999969, 49.071075402000119 ], [ -122.675269003999944, 49.071070755000051 ], [ -122.67525862699992, 49.070161984000038 ], [ -122.675255028999985, 49.069272331000107 ], [ -122.675239266999938, 49.068381399000046 ], [ -122.675236, 49.067410708000033 ], [ -122.676625381999926, 49.067404103000072 ], [ -122.678029222999982, 49.067406100000071 ], [ -122.679259702999957, 49.067401697000093 ], [ -122.679434789999945, 49.067401788000019 ], [ -122.680565890999901, 49.06740969100008 ], [ -122.680425916, 49.071601605000112 ], [ -122.68040238699993, 49.074717395000086 ], [ -122.679292607999955, 49.074715495000099 ], [ -122.679013397999981, 49.074715905000126 ], [ -122.67900889799995, 49.074527744000044 ], [ -122.678993379999937, 49.073881603000039 ], [ -122.678938822999925, 49.073751027000036 ], [ -122.678677791999959, 49.073126493000046 ], [ -122.678337402999958, 49.072775306000082 ], [ -122.678133984999974, 49.072499600000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133204447", "BldgCostT": "86700269", "sL_LossRatio": "0.701547376406394", "sL_AssetLoss": "2188220", "sL_BldgLoss": "1535140", "sL_StrLoss": "633170", "sL_NStrLoss": "901970", "sL_ContLoss": "653080", "geom_point": "0101000020E610000004414F1C63AB5EC03B47B28153884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.679227992999984, 49.062681804000079 ], [ -122.680557822999958, 49.062683197000133 ], [ -122.680559808999959, 49.06385103700012 ], [ -122.680560657999948, 49.064345829000096 ], [ -122.68056226799996, 49.06528129 ], [ -122.680562531999939, 49.065443238000071 ], [ -122.680564042999919, 49.066315895000066 ], [ -122.680564869999984, 49.066801670000075 ], [ -122.680565890999901, 49.06740969100008 ], [ -122.679434789999945, 49.067401788000019 ], [ -122.679259702999957, 49.067401697000093 ], [ -122.678029222999982, 49.067406100000071 ], [ -122.676625381999926, 49.067404103000072 ], [ -122.675236, 49.067410708000033 ], [ -122.67526739499999, 49.06725840900004 ], [ -122.675285808999945, 49.066539796000036 ], [ -122.675275688999989, 49.065050571000015 ], [ -122.67527258699999, 49.064597202000058 ], [ -122.67526328699995, 49.063576604000048 ], [ -122.675426909999928, 49.062684005000051 ], [ -122.676279210999922, 49.062678638000087 ], [ -122.676683500999943, 49.062676106000083 ], [ -122.677883101999939, 49.062679793000058 ], [ -122.679227992999984, 49.062681804000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85859833", "BldgCostT": "58453333", "sL_LossRatio": "0.732604537806724", "sL_AssetLoss": "1460309", "sL_BldgLoss": "1069829", "sL_StrLoss": "472509", "sL_NStrLoss": "597320", "sL_ContLoss": "390480", "geom_point": "0101000020E6100000218AD18C28AB5EC0AF200F7506884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.673899984999977, 49.066792244000048 ], [ -122.673903795999962, 49.066481703000136 ], [ -122.672092968999976, 49.066473451000022 ], [ -122.670835591999918, 49.066467704000033 ], [ -122.670870779999944, 49.065591895000054 ], [ -122.670907501999949, 49.065462297000096 ], [ -122.671025297999918, 49.065058588000078 ], [ -122.671025808999943, 49.06496688800005 ], [ -122.671036662999981, 49.063005885000031 ], [ -122.671038510999963, 49.062670688000054 ], [ -122.669514401999919, 49.062669395000093 ], [ -122.669520416999944, 49.062137811000063 ], [ -122.669531381999946, 49.061175423000101 ], [ -122.6695431099999, 49.060142187000054 ], [ -122.670686794999966, 49.060124502000072 ], [ -122.673667957999967, 49.060124798000096 ], [ -122.675474684, 49.060124934000058 ], [ -122.675816937999954, 49.060124973000022 ], [ -122.677158413999933, 49.060125058000033 ], [ -122.679184236999987, 49.060125148000083 ], [ -122.680548522, 49.060125197000055 ], [ -122.680557822999958, 49.062683197000133 ], [ -122.679227992999984, 49.062681804000079 ], [ -122.677883101999939, 49.062679793000058 ], [ -122.676683500999943, 49.062676106000083 ], [ -122.676279210999922, 49.062678638000087 ], [ -122.675426909999928, 49.062684005000051 ], [ -122.67526328699995, 49.063576604000048 ], [ -122.67527258699999, 49.064597202000058 ], [ -122.675275688999989, 49.065050571000015 ], [ -122.675285808999945, 49.066539796000036 ], [ -122.67526739499999, 49.06725840900004 ], [ -122.675236, 49.067410708000033 ], [ -122.673892375999955, 49.067408702000066 ], [ -122.673899984999977, 49.066792244000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111704250", "BldgCostT": "69015000", "sL_LossRatio": "0.645325867505033", "sL_AssetLoss": "2100593", "sL_BldgLoss": "1355567", "sL_StrLoss": "650417", "sL_NStrLoss": "705150", "sL_ContLoss": "745026", "geom_point": "0101000020E610000032A7B2C581AC5EC0C5E41E5CCB864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.680425916, 49.071601605000112 ], [ -122.680565890999901, 49.06740969100008 ], [ -122.680564869999984, 49.066801670000075 ], [ -122.680564042999919, 49.066315895000066 ], [ -122.680562531999939, 49.065443238000071 ], [ -122.68056226799996, 49.06528129 ], [ -122.680560657999948, 49.064345829000096 ], [ -122.680559808999959, 49.06385103700012 ], [ -122.680557822999958, 49.062683197000133 ], [ -122.680548522, 49.060125197000055 ], [ -122.680537863, 49.059425424000096 ], [ -122.680525360999951, 49.058606710000028 ], [ -122.680518920999972, 49.058183845000094 ], [ -122.680485790999967, 49.05600750500011 ], [ -122.6834971899999, 49.056100559000122 ], [ -122.683510910999928, 49.055907762000132 ], [ -122.682351047999973, 49.055871931000105 ], [ -122.682563272999971, 49.052890549000089 ], [ -122.682574664999947, 49.052730505000071 ], [ -122.68253715099999, 49.052730401000119 ], [ -122.682525751999975, 49.052890538000078 ], [ -122.682300254999944, 49.056058330000042 ], [ -122.680485709999971, 49.056002249000073 ], [ -122.680477892999946, 49.055488709000144 ], [ -122.680448891, 49.055376898000134 ], [ -122.68045521199997, 49.054136094000057 ], [ -122.680454743999917, 49.054109194000013 ], [ -122.68044684099999, 49.053632366000038 ], [ -122.680434498999929, 49.052889898000039 ], [ -122.68042926899993, 49.052462703000039 ], [ -122.68039102399996, 49.049340715000021 ], [ -122.680388826999945, 49.049161299000019 ], [ -122.680345798999937, 49.045647090000074 ], [ -122.68034103599993, 49.044896448000038 ], [ -122.680339946999979, 49.044725536000016 ], [ -122.680337669999915, 49.04436565800011 ], [ -122.680337386999952, 49.044324697000029 ], [ -122.680336822999905, 49.044221754000034 ], [ -122.680333454999939, 49.043627955000019 ], [ -122.68032679699995, 49.042456012000024 ], [ -122.680324846999966, 49.042161762000013 ], [ -122.680324408999979, 49.042089816000136 ], [ -122.680323836999946, 49.042008770000074 ], [ -122.680322421999989, 49.041788900000078 ], [ -122.680795827999944, 49.039403785000019 ], [ -122.680812959999955, 49.039317602000054 ], [ -122.680347702999939, 49.038417099000057 ], [ -122.680328370999945, 49.035612893000049 ], [ -122.680326031999968, 49.03527099100009 ], [ -122.680300823999957, 49.031610098000066 ], [ -122.680297294999917, 49.03109788600009 ], [ -122.680310977999966, 49.031097825000067 ], [ -122.682175531999988, 49.031087959000025 ], [ -122.683854890999896, 49.031079057000134 ], [ -122.684128447999939, 49.031077616000083 ], [ -122.68430943, 49.031076651000078 ], [ -122.685823252999938, 49.031068560000065 ], [ -122.686826878999938, 49.03107377 ], [ -122.687264559999932, 49.031076051000085 ], [ -122.689521564999964, 49.031087727000063 ], [ -122.689760685999886, 49.031088963000066 ], [ -122.689723111999953, 49.031618255000069 ], [ -122.690518700999945, 49.03164279400012 ], [ -122.690716218999981, 49.033250524000017 ], [ -122.690574328999915, 49.035249690000072 ], [ -122.685116622999956, 49.035081260000055 ], [ -122.685164515999972, 49.034407619000042 ], [ -122.684057928999962, 49.034373434000024 ], [ -122.68414238499993, 49.033185814000035 ], [ -122.68380330299999, 49.033175338000021 ], [ -122.683786671999897, 49.03340917900001 ], [ -122.684022594999931, 49.033416468000027 ], [ -122.683766752999986, 49.037013750000021 ], [ -122.683765218999952, 49.037013703000078 ], [ -122.68369090799996, 49.03805844900009 ], [ -122.683591473999982, 49.038055376000074 ], [ -122.683564805999978, 49.038430277000018 ], [ -122.685377731999893, 49.038435234000083 ], [ -122.685377638999938, 49.038449878000101 ], [ -122.685376029999972, 49.038705097000076 ], [ -122.686196969999969, 49.038707332000094 ], [ -122.686198446, 49.038472695000067 ], [ -122.686198666999957, 49.038437469000073 ], [ -122.690303346999968, 49.038448557000017 ], [ -122.690305022999951, 49.038178694000109 ], [ -122.691202836999977, 49.038181102000117 ], [ -122.691246480999936, 49.037566131000077 ], [ -122.691386164000022, 49.038702828000069 ], [ -122.693603302999946, 49.038433309000091 ], [ -122.693717803999974, 49.038433544000036 ], [ -122.694237727999948, 49.038434705000093 ], [ -122.694949202999922, 49.038436284000113 ], [ -122.695044960999965, 49.03843650000001 ], [ -122.697275140999977, 49.038441416000062 ], [ -122.702980684999957, 49.038453784000133 ], [ -122.703569005999896, 49.038455024000029 ], [ -122.704241266999958, 49.038456457000123 ], [ -122.704089871999912, 49.040598047000088 ], [ -122.698631492999979, 49.040430305000079 ], [ -122.698672874999929, 49.03984592299999 ], [ -122.698161511999899, 49.039830194000011 ], [ -122.698163243, 49.039805761000089 ], [ -122.695552722999977, 49.039725426000146 ], [ -122.695553426999979, 49.039715490000049 ], [ -122.693990145999933, 49.039667352000095 ], [ -122.693989284999986, 49.039807725000095 ], [ -122.695220722999963, 49.03981098400007 ], [ -122.695210828999961, 49.041430161000022 ], [ -122.696442308, 49.041433406000074 ], [ -122.696438525999937, 49.042054834000062 ], [ -122.696435737999977, 49.042512858000059 ], [ -122.693562224999937, 49.042505263000045 ], [ -122.693558909999979, 49.043044988000112 ], [ -122.692737896999958, 49.043042805000063 ], [ -122.692736235, 49.043312668000119 ], [ -122.692325726999954, 49.043311575000075 ], [ -122.692311172999922, 49.045670671000138 ], [ -122.692309077999965, 49.046010199000115 ], [ -122.691488017000026, 49.046008008000079 ], [ -122.691486347999913, 49.046277869000086 ], [ -122.691409071999942, 49.046277663000104 ], [ -122.691075814999962, 49.046276772000041 ], [ -122.691069127999981, 49.047356221000015 ], [ -122.691420704000024, 49.047357161000058 ], [ -122.69147966899996, 49.047357319000085 ], [ -122.691467981999949, 49.049246355000029 ], [ -122.692289094999978, 49.049248547000097 ], [ -122.692292425999966, 49.048708823000055 ], [ -122.69598740099994, 49.048718615000091 ], [ -122.695988891999932, 49.048473799000107 ], [ -122.694591253999974, 49.048430777000092 ], [ -122.694628506999891, 49.047905428000057 ], [ -122.693939605999972, 49.047903602000062 ], [ -122.693944573999914, 49.047094015000063 ], [ -122.694355114999951, 49.047095103000089 ], [ -122.694356767999963, 49.046825242000068 ], [ -122.694705038, 49.046826163000055 ], [ -122.694786036999943, 49.045683829000019 ], [ -122.694846323999982, 49.044833533000016 ], [ -122.696183122999983, 49.044874683000089 ], [ -122.696234406999949, 49.044151065000037 ], [ -122.696868957999968, 49.044170592000071 ], [ -122.698433061999935, 49.044218709000091 ], [ -122.698639569999969, 49.041302714000082 ], [ -122.70409805, 49.041470455000123 ], [ -122.703951995999915, 49.043536274000161 ], [ -122.704902048999926, 49.043565441000062 ], [ -122.704849171000021, 49.044313508000094 ], [ -122.708150194999973, 49.044414785000065 ], [ -122.708157330999967, 49.044313713000058 ], [ -122.707029365999972, 49.044279119000088 ], [ -122.70723004, 49.041438103000068 ], [ -122.704938068000018, 49.041367771000125 ], [ -122.705143686999975, 49.038458374000079 ], [ -122.707961085999969, 49.038464309000076 ], [ -122.708207341999966, 49.038464837000092 ], [ -122.708439960999925, 49.038465325000089 ], [ -122.710541307999961, 49.038469689000117 ], [ -122.710489422999927, 49.039613478000021 ], [ -122.711328785999953, 49.043554203000035 ], [ -122.712352113999941, 49.045662488000069 ], [ -122.713483252999978, 49.045660032000114 ], [ -122.713483743999944, 49.047205611000024 ], [ -122.71348435099999, 49.049310600000041 ], [ -122.71348478499999, 49.050876028000111 ], [ -122.713484935999972, 49.05130765100003 ], [ -122.713484956999963, 49.051442561 ], [ -122.713485127999931, 49.051910368000087 ], [ -122.71348519599999, 49.052234290000051 ], [ -122.713485407999912, 49.052923298000039 ], [ -122.71348130599992, 49.053772682000066 ], [ -122.713473884999971, 49.055301876000087 ], [ -122.713472109999884, 49.055673613000117 ], [ -122.713463274999953, 49.057838605000057 ], [ -122.713453814999951, 49.060161207000043 ], [ -122.713457818999984, 49.061355320000089 ], [ -122.71346763299999, 49.064252070000087 ], [ -122.71347459699993, 49.066302937000067 ], [ -122.71347621299995, 49.066779740000072 ], [ -122.71348462499995, 49.069271502000021 ], [ -122.713494400999977, 49.072159463000069 ], [ -122.713494753999953, 49.072267399000069 ], [ -122.713502597999977, 49.074581490000163 ], [ -122.705645308999948, 49.074664392000081 ], [ -122.70235374899994, 49.074680669000017 ], [ -122.699135697999935, 49.074696492000037 ], [ -122.698231989999968, 49.074700886000109 ], [ -122.697956302999955, 49.074669896000046 ], [ -122.697682833999949, 49.074674764000036 ], [ -122.697268500999911, 49.074682097000021 ], [ -122.69703539899993, 49.074726292000037 ], [ -122.695849599, 49.074736245000096 ], [ -122.693535880999974, 49.074755628000077 ], [ -122.692111965999985, 49.074767512000079 ], [ -122.691720710999931, 49.07477079100007 ], [ -122.691721678999912, 49.074614449000073 ], [ -122.696341401999959, 49.074626695000077 ], [ -122.696447480999936, 49.073130854000141 ], [ -122.697073435999982, 49.07315010300001 ], [ -122.697083661999955, 49.073005870000031 ], [ -122.702545849000032, 49.073173682000046 ], [ -122.70253445899999, 49.073334611000099 ], [ -122.703801629999987, 49.073373502000038 ], [ -122.703826787999915, 49.073017933000088 ], [ -122.705775187999905, 49.07307770200007 ], [ -122.70577783399996, 49.072976761000056 ], [ -122.70600443499994, 49.07297696200002 ], [ -122.706005260000026, 49.073084757000075 ], [ -122.706092118999919, 49.073087421000061 ], [ -122.706148635999952, 49.072288087000103 ], [ -122.708722406, 49.072366978000048 ], [ -122.708748687999943, 49.071994958000076 ], [ -122.708694229999978, 49.071993290000123 ], [ -122.708948340999953, 49.06839614400004 ], [ -122.709497625999944, 49.068412973000122 ], [ -122.709624112999904, 49.066621955000045 ], [ -122.710905785999955, 49.066661212000035 ], [ -122.710953249999974, 49.065988844000053 ], [ -122.710793773999967, 49.06598396000004 ], [ -122.710813033999941, 49.065711146000076 ], [ -122.710780891999946, 49.065710161 ], [ -122.711034807999937, 49.062112976000037 ], [ -122.711150060999955, 49.062116506000116 ], [ -122.711218495999958, 49.061146878000059 ], [ -122.710908275999969, 49.061137377000065 ], [ -122.710950489999931, 49.06053930000008 ], [ -122.710891012999951, 49.0605374780001 ], [ -122.710896246999951, 49.060463313000056 ], [ -122.709957819, 49.060434566000019 ], [ -122.709882371999981, 49.061503146000078 ], [ -122.709155136999968, 49.061480864 ], [ -122.709153942999947, 49.061497764000102 ], [ -122.708547107999919, 49.061479167000066 ], [ -122.708535225999924, 49.061647379000071 ], [ -122.708090660999957, 49.061633752000063 ], [ -122.708039744999937, 49.06235448800004 ], [ -122.702578804999987, 49.062186953000015 ], [ -122.702625669000014, 49.061524690000105 ], [ -122.701897721999956, 49.061502336000089 ], [ -122.701920479999984, 49.061180796000059 ], [ -122.701906917, 49.061180379000113 ], [ -122.701903033999926, 49.061235240000038 ], [ -122.701364425999927, 49.061218698000054 ], [ -122.70121062799997, 49.063391251000041 ], [ -122.700539917999905, 49.063370647000092 ], [ -122.696894307999969, 49.06325858100012 ], [ -122.69574959, 49.063223368000102 ], [ -122.695811669999927, 49.06234790700006 ], [ -122.695865210999941, 49.061592848000046 ], [ -122.69501007099997, 49.061566534000079 ], [ -122.695000683, 49.061698906000061 ], [ -122.694297660999922, 49.061677268000025 ], [ -122.694297052999943, 49.061685823000076 ], [ -122.69344941099996, 49.061659728000038 ], [ -122.693398916999968, 49.06237131900005 ], [ -122.693303525999966, 49.063715541000107 ], [ -122.693279812999947, 49.063714811000125 ], [ -122.693241743999948, 49.064251243000101 ], [ -122.693393038999901, 49.064255902000056 ], [ -122.693379078999939, 49.064452624000069 ], [ -122.6931377499999, 49.06785303300007 ], [ -122.691608166999956, 49.067805928000098 ], [ -122.691470620999937, 49.06780169100012 ], [ -122.69140183199994, 49.068770372000124 ], [ -122.687559657999941, 49.068651949000127 ], [ -122.687547179999953, 49.06882746600008 ], [ -122.686805815999918, 49.068804599000082 ], [ -122.686746591999935, 49.069637383000043 ], [ -122.682306512999972, 49.0695003290001 ], [ -122.682294715999916, 49.071350499000054 ], [ -122.681883977999973, 49.071349368 ], [ -122.68188225399993, 49.071619228000074 ], [ -122.681471513999924, 49.07161809600013 ], [ -122.681469788999934, 49.071887956000118 ], [ -122.68105904399999, 49.071886822000096 ], [ -122.681040904999989, 49.074720475000106 ], [ -122.68040238699993, 49.074717395000086 ], [ -122.680425916, 49.071601605000112 ] ], [ [ -122.681324034999989, 49.068919031000078 ], [ -122.681327010999937, 49.068877244000142 ], [ -122.68066771399999, 49.068856871000101 ], [ -122.680667326999938, 49.068917216000095 ], [ -122.681324034999989, 49.068919031000078 ] ], [ [ -122.70958061099999, 49.057888912000081 ], [ -122.709591280999931, 49.057737795000079 ], [ -122.70954083399999, 49.057736249000065 ], [ -122.709743570999976, 49.054864704000082 ], [ -122.70787465699999, 49.05480741900007 ], [ -122.707661127999955, 49.057830078000094 ], [ -122.70958061099999, 49.057888912000081 ] ], [ [ -122.700105500999911, 49.055583693000059 ], [ -122.700136466999936, 49.055146339000011 ], [ -122.700084694999958, 49.055144748000039 ], [ -122.700053727999915, 49.055582103000042 ], [ -122.700105500999911, 49.055583693000059 ] ], [ [ -122.71122572499999, 49.048892165000048 ], [ -122.711282674999921, 49.048085013000048 ], [ -122.710815773999954, 49.048070709000079 ], [ -122.710896618999968, 49.046924958000027 ], [ -122.708574640999942, 49.046853792000078 ], [ -122.70849156499996, 49.048030319000055 ], [ -122.704825549999939, 49.047917859000087 ], [ -122.70472778299991, 49.049300807000058 ], [ -122.70145660699994, 49.049200353000124 ], [ -122.701402678999955, 49.049962393000079 ], [ -122.701853562999958, 49.049976245000046 ], [ -122.701872569999978, 49.049707617000067 ], [ -122.70733204599992, 49.049875192000037 ], [ -122.707146942999941, 49.052495359000012 ], [ -122.707117955999962, 49.052905637000052 ], [ -122.707077910999914, 49.053472437000018 ], [ -122.707044581999952, 49.053471415000061 ], [ -122.707039445999939, 49.054345635000054 ], [ -122.707333980999948, 49.054354667000077 ], [ -122.707436289000029, 49.052906502000084 ], [ -122.707464644999916, 49.052505101000079 ], [ -122.707557357000027, 49.051192660000041 ], [ -122.709371294999968, 49.051248270000023 ], [ -122.70948406499997, 49.04965090200011 ], [ -122.709935652, 49.049664741000086 ], [ -122.709953059999989, 49.049418112000055 ], [ -122.711031666999929, 49.049451160000096 ], [ -122.71107144299998, 49.048887438000094 ], [ -122.71122572499999, 49.048892165000048 ] ], [ [ -122.699484742, 49.051521259000033 ], [ -122.69949937899996, 49.0513145520001 ], [ -122.697614248999912, 49.051256585000033 ], [ -122.697608510999956, 49.052202402000049 ], [ -122.697608336999977, 49.052231139000099 ], [ -122.698629905999979, 49.052233813000036 ], [ -122.69886674299994, 49.052234431000045 ], [ -122.698918487999961, 49.051503851000078 ], [ -122.699484742, 49.051521259000033 ] ], [ [ -122.68611813899993, 49.051233986000071 ], [ -122.686130741999946, 49.049231963000096 ], [ -122.686541297999952, 49.049233079000125 ], [ -122.686544691999956, 49.048693355000054 ], [ -122.685723585999966, 49.048691122000015 ], [ -122.685718483999963, 49.049500708000096 ], [ -122.685307923999929, 49.049499590000075 ], [ -122.68530281399994, 49.050309176000042 ], [ -122.684892248999958, 49.050308056000041 ], [ -122.684887134999983, 49.051117642000079 ], [ -122.684476560999968, 49.051116520000079 ], [ -122.684475534999976, 49.051278732000128 ], [ -122.684777500999985, 49.051288056000104 ], [ -122.684784276999935, 49.05119280800011 ], [ -122.68611813899993, 49.051233986000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6359584", "BldgCostT": "3858334", "sL_LossRatio": "0.618701856294987", "sL_AssetLoss": "158380", "sL_BldgLoss": "97990", "sL_StrLoss": "50070", "sL_NStrLoss": "47920", "sL_ContLoss": "60390", "geom_point": "0101000020E6100000FE69F682C7AC5EC09C32BB17AD884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69837718199993, 49.064555276000114 ], [ -122.703838384999941, 49.064723025000049 ], [ -122.703583898999909, 49.068320178000064 ], [ -122.702790741999962, 49.06829583400004 ], [ -122.702630784999926, 49.070555995000099 ], [ -122.700747239999956, 49.070498157000046 ], [ -122.700730817999954, 49.070730040000065 ], [ -122.695268922999944, 49.070562136000014 ], [ -122.695524063, 49.06696501400009 ], [ -122.695695914999988, 49.066970302000044 ], [ -122.695741089999956, 49.066333317000058 ], [ -122.696474200999916, 49.06635586900012 ], [ -122.696476259999969, 49.06632683600008 ], [ -122.698247786999929, 49.06638131000004 ], [ -122.69837718199993, 49.064555276000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88936333", "BldgCostT": "58123333", "sL_LossRatio": "0.729549786865172", "sL_AssetLoss": "1188215", "sL_BldgLoss": "866862", "sL_StrLoss": "408846", "sL_NStrLoss": "458016", "sL_ContLoss": "321353", "geom_point": "0101000020E61000009F3E336FF2AD5EC0CAB4AAE300854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.711328785999953, 49.043554203000035 ], [ -122.710489422999927, 49.039613478000021 ], [ -122.710541307999961, 49.038469689000117 ], [ -122.71056579899998, 49.038257815000115 ], [ -122.711465197999985, 49.037294808000112 ], [ -122.711952815999908, 49.037011396000025 ], [ -122.712167695999966, 49.036834198000051 ], [ -122.713384190999989, 49.036551498000044 ], [ -122.713384086999952, 49.034865190000048 ], [ -122.713357267999939, 49.031210545000079 ], [ -122.71868979199995, 49.031210466000104 ], [ -122.723754625999931, 49.031210095000056 ], [ -122.723596761999929, 49.033456895000086 ], [ -122.720218750999919, 49.033353717000125 ], [ -122.720199733999962, 49.033624078000116 ], [ -122.717053139999948, 49.033527871000061 ], [ -122.716959181999954, 49.034862341000036 ], [ -122.717352959999957, 49.034874386000055 ], [ -122.717252858999984, 49.036296199000077 ], [ -122.718954991000018, 49.036348247000056 ], [ -122.718864925999981, 49.037628096000034 ], [ -122.719041399999938, 49.037594618000114 ], [ -122.719042256999913, 49.037442632000101 ], [ -122.719452716999967, 49.037443632000105 ], [ -122.719458787999955, 49.036364177000074 ], [ -122.71959275099999, 49.036364503000044 ], [ -122.719592934999966, 49.036349061000053 ], [ -122.719870446999934, 49.036150153000072 ], [ -122.719870755999935, 49.036095311000082 ], [ -122.719946704999956, 49.036095495000041 ], [ -122.720282558999941, 49.035854764000099 ], [ -122.72028423099999, 49.035556579000058 ], [ -122.720694676999969, 49.035557573000084 ], [ -122.720696187999977, 49.035287710000034 ], [ -122.721072395999968, 49.035288619000077 ], [ -122.721106768999974, 49.035263981000092 ], [ -122.721108138999966, 49.035018838000049 ], [ -122.721447616999967, 49.035019659000042 ], [ -122.721518865999954, 49.034968586000041 ], [ -122.721520086999959, 49.034749966000106 ], [ -122.721822833999965, 49.034750696000117 ], [ -122.721930958999934, 49.034673188000042 ], [ -122.721932029999962, 49.0344810920001 ], [ -122.722198043999981, 49.034481732000089 ], [ -122.722343045999963, 49.0343777900001 ], [ -122.72234396799999, 49.034212217000068 ], [ -122.722573251999918, 49.034212768000067 ], [ -122.722755130999971, 49.034082390000037 ], [ -122.722755901999946, 49.033943340000121 ], [ -122.72294845499998, 49.033943802000088 ], [ -122.722975434999924, 49.033924462000122 ], [ -122.723094317999966, 49.033944152000068 ], [ -122.723377363999973, 49.033944831000014 ], [ -122.723779534999963, 49.033866761000091 ], [ -122.723954833999969, 49.033773461000123 ], [ -122.724061867, 49.034216337000018 ], [ -122.724298863999962, 49.034216904000047 ], [ -122.724289099999979, 49.034511811000115 ], [ -122.724296091999975, 49.034802204000087 ], [ -122.724309835999961, 49.035752691000091 ], [ -122.724321031999949, 49.036526212000041 ], [ -122.724326911999967, 49.036932803000063 ], [ -122.724353403999942, 49.038463096000029 ], [ -122.724359206999978, 49.04110488200012 ], [ -122.724360363999921, 49.041214540000084 ], [ -122.724367860999962, 49.041916132000011 ], [ -122.72436949199998, 49.042068703000041 ], [ -122.724369184999958, 49.045672807000066 ], [ -122.717716972999966, 49.045665118000031 ], [ -122.715253772, 49.045662167000039 ], [ -122.713483252999978, 49.045660032000114 ], [ -122.712352113999941, 49.045662488000069 ], [ -122.711328785999953, 49.043554203000035 ] ], [ [ -122.721009178999978, 49.042348126000043 ], [ -122.721031188999945, 49.042035199000061 ], [ -122.71901641399991, 49.042030310000072 ], [ -122.719017145999885, 49.041900642000058 ], [ -122.718808208999974, 49.04189214200008 ], [ -122.718780908, 49.042280036000122 ], [ -122.721009178999978, 49.042348126000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40445416", "BldgCostT": "25891666", "sL_LossRatio": "0.715941946010935", "sL_AssetLoss": "454129", "sL_BldgLoss": "325130", "sL_StrLoss": "169770", "sL_NStrLoss": "155360", "sL_ContLoss": "128999", "geom_point": "0101000020E6100000DF68D7EFCFAC5EC00196A652FD834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.691246480999936, 49.037566131000077 ], [ -122.691358959999945, 49.035981122000059 ], [ -122.69137978899991, 49.035981765000066 ], [ -122.69484766799999, 49.036088614000043 ], [ -122.694850113999934, 49.036054107000048 ], [ -122.696306629, 49.036098951000035 ], [ -122.69631719299997, 49.03594985299999 ], [ -122.695966169999963, 49.035939047000028 ], [ -122.695969328999979, 49.035894466000109 ], [ -122.694684726999967, 49.035854913000058 ], [ -122.694806104999898, 49.034142676000101 ], [ -122.69443447899998, 49.034141692000027 ], [ -122.694437089999923, 49.033715414000049 ], [ -122.693975633999983, 49.033701199000063 ], [ -122.693985715999958, 49.033559002000132 ], [ -122.693456123999937, 49.033542687000114 ], [ -122.693482786999965, 49.033166691000083 ], [ -122.692690119999938, 49.03314226700008 ], [ -122.692731074999941, 49.032564862000058 ], [ -122.69137169, 49.032522961000041 ], [ -122.691315608999943, 49.032521232000086 ], [ -122.691369893999976, 49.031756168000143 ], [ -122.691416628999932, 49.031097503000126 ], [ -122.691541801999932, 49.029333273000049 ], [ -122.6889830799999, 49.029254355000042 ], [ -122.688956049999916, 49.029635046000124 ], [ -122.688884460999972, 49.029632837000122 ], [ -122.688793455999985, 49.030914453000044 ], [ -122.689770932999949, 49.030944609000109 ], [ -122.689760685999886, 49.031088963000066 ], [ -122.689521564999964, 49.031087727000063 ], [ -122.687264559999932, 49.031076051000085 ], [ -122.686826878999938, 49.03107377 ], [ -122.685823252999938, 49.031068560000065 ], [ -122.68430943, 49.031076651000078 ], [ -122.684128447999939, 49.031077616000083 ], [ -122.683854890999896, 49.031079057000134 ], [ -122.682175531999988, 49.031087959000025 ], [ -122.680310977999966, 49.031097825000067 ], [ -122.680297294999917, 49.03109788600009 ], [ -122.6801861599999, 49.028579157000117 ], [ -122.680657722999982, 49.028593745000116 ], [ -122.680651641999987, 49.028679177000079 ], [ -122.680767394999961, 49.028682757000041 ], [ -122.680804621999954, 49.028159744000028 ], [ -122.683514240999941, 49.028243522000011 ], [ -122.683569748, 49.027463008000012 ], [ -122.683641333999972, 49.027465221000078 ], [ -122.683754829999955, 49.025869209000106 ], [ -122.683877695999954, 49.025873005000044 ], [ -122.683938368999961, 49.025019711 ], [ -122.689394893999946, 49.025188204000116 ], [ -122.68938771799999, 49.02528927500002 ], [ -122.690979043999945, 49.02533836100006 ], [ -122.69095268199996, 49.02570989500007 ], [ -122.69343758199993, 49.025786497000091 ], [ -122.693215074999912, 49.028924553000188 ], [ -122.693551546999956, 49.028934921000079 ], [ -122.693554564999971, 49.028892355000046 ], [ -122.695527135999953, 49.028953116000089 ], [ -122.695529984999908, 49.028912903000055 ], [ -122.696059035999951, 49.028929193000081 ], [ -122.696065467999958, 49.028838416000106 ], [ -122.69811807699989, 49.028901594000011 ], [ -122.698119282999954, 49.028884566000073 ], [ -122.703576309999903, 49.029052336000106 ], [ -122.703527401999949, 49.029744211000022 ], [ -122.70434673799997, 49.029769377000029 ], [ -122.704424339999932, 49.028671317000047 ], [ -122.709481449999956, 49.028826506000044 ], [ -122.709584475999947, 49.027366353000012 ], [ -122.707704229999962, 49.027308682000125 ], [ -122.707958173999941, 49.023711288000115 ], [ -122.709731862999959, 49.023765693 ], [ -122.70980425399992, 49.022739531000106 ], [ -122.709868543999917, 49.022741502000031 ], [ -122.709867735000017, 49.022442761000057 ], [ -122.709953083999892, 49.022441039000078 ], [ -122.710057141999982, 49.020965831000112 ], [ -122.713302033999952, 49.021065283000034 ], [ -122.713259997999927, 49.02386108900005 ], [ -122.713281194999979, 49.025462764000032 ], [ -122.713299386999935, 49.026839132000141 ], [ -122.713304863999909, 49.027252780000012 ], [ -122.713320928999948, 49.028467486000054 ], [ -122.713333176999953, 49.029394132000085 ], [ -122.713339828999949, 49.029897935000065 ], [ -122.71334424199992, 49.03023083900009 ], [ -122.713347557999953, 49.030482453000033 ], [ -122.713357267999939, 49.031210545000079 ], [ -122.713384086999952, 49.034865190000048 ], [ -122.713384190999989, 49.036551498000044 ], [ -122.712167695999966, 49.036834198000051 ], [ -122.711952815999908, 49.037011396000025 ], [ -122.711465197999985, 49.037294808000112 ], [ -122.71056579899998, 49.038257815000115 ], [ -122.710541307999961, 49.038469689000117 ], [ -122.708439960999925, 49.038465325000089 ], [ -122.708207341999966, 49.038464837000092 ], [ -122.707961085999969, 49.038464309000076 ], [ -122.705143686999975, 49.038458374000079 ], [ -122.705192301999929, 49.037770463000115 ], [ -122.707143988999945, 49.037830357000075 ], [ -122.707262306999922, 49.036155009 ], [ -122.708111969999905, 49.036181072000041 ], [ -122.708173417999944, 49.035310728000056 ], [ -122.708288051999929, 49.035314244000062 ], [ -122.708380923999968, 49.033998696000033 ], [ -122.704541810999942, 49.033880881000101 ], [ -122.704577096999984, 49.033381609000067 ], [ -122.703947435999964, 49.033362273000073 ], [ -122.70394466499999, 49.033401472000072 ], [ -122.702918225999923, 49.033369943000018 ], [ -122.702917621999973, 49.033378497000044 ], [ -122.702400007999955, 49.03336259400006 ], [ -122.70239530399999, 49.033429110000064 ], [ -122.701615143999973, 49.033405135000116 ], [ -122.701489763999959, 49.035177537000131 ], [ -122.702487025999929, 49.03520818200009 ], [ -122.702428213999895, 49.036039765000041 ], [ -122.703105356999927, 49.036060568000046 ], [ -122.703083026999963, 49.036376350000083 ], [ -122.703874146999922, 49.036400648000104 ], [ -122.703832833999968, 49.036985035000086 ], [ -122.704344167999949, 49.037000737000014 ], [ -122.704241266999958, 49.038456457000123 ], [ -122.703569005999896, 49.038455024000029 ], [ -122.702980684999957, 49.038453784000133 ], [ -122.697275140999977, 49.038441416000062 ], [ -122.695044960999965, 49.03843650000001 ], [ -122.694949202999922, 49.038436284000113 ], [ -122.694237727999948, 49.038434705000093 ], [ -122.693717803999974, 49.038433544000036 ], [ -122.693603302999946, 49.038433309000091 ], [ -122.691386164000022, 49.038702828000069 ], [ -122.691246480999936, 49.037566131000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.752953439888812", "sL_AssetLoss": "28780", "sL_BldgLoss": "21670", "sL_StrLoss": "9600", "sL_NStrLoss": "12070", "sL_ContLoss": "7110", "geom_point": "0101000020E6100000B0AB2C7ED1AC5EC07DFBDFB6DB824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.697685668999966, 49.020447530000105 ], [ -122.703141708999965, 49.020615325000016 ], [ -122.702887409999931, 49.024212725000048 ], [ -122.697430950999944, 49.024044918000079 ], [ -122.697685668999966, 49.020447530000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10263583", "BldgCostT": "7078333", "sL_LossRatio": "0.757296822803638", "sL_AssetLoss": "164044", "sL_BldgLoss": "124230", "sL_StrLoss": "57030", "sL_NStrLoss": "67200", "sL_ContLoss": "39814", "geom_point": "0101000020E61000004E783A3E77AC5EC0774E37795F824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.679858677999931, 49.018956980000027 ], [ -122.679872465999892, 49.018763277000112 ], [ -122.679753004999924, 49.018759581000083 ], [ -122.679672637999914, 49.016937190000071 ], [ -122.67966589699995, 49.016784773000033 ], [ -122.679658084999915, 49.016608398000123 ], [ -122.680803494999978, 49.016622104000128 ], [ -122.68103324799992, 49.016624854000028 ], [ -122.681463598999954, 49.01662999600012 ], [ -122.681658406999972, 49.016735982000057 ], [ -122.68184518299995, 49.017030305000077 ], [ -122.682081206999953, 49.017210577000064 ], [ -122.68267589499996, 49.017458810000036 ], [ -122.683009451999936, 49.017557179000114 ], [ -122.683222100999956, 49.017619911000104 ], [ -122.683424913999929, 49.017632507000087 ], [ -122.683677001999968, 49.017604296000052 ], [ -122.683938720999961, 49.017519496000027 ], [ -122.684316691999939, 49.017355400000056 ], [ -122.684851339999966, 49.01704580100008 ], [ -122.684922511999915, 49.017004610000058 ], [ -122.685531291999922, 49.016708884000053 ], [ -122.685873710999914, 49.016660887000043 ], [ -122.686260695, 49.016663834000042 ], [ -122.690992304999952, 49.016699555000031 ], [ -122.69117302099994, 49.016700912000076 ], [ -122.696848458999952, 49.016653492000053 ], [ -122.700759287999958, 49.016620652000029 ], [ -122.702003550999933, 49.016610173000053 ], [ -122.702285404999927, 49.016607806000138 ], [ -122.703001316999945, 49.016616982000059 ], [ -122.703466400999943, 49.016622943000058 ], [ -122.704477485999973, 49.016635894000039 ], [ -122.707973211999956, 49.016680604000058 ], [ -122.710699404999943, 49.016694992000083 ], [ -122.710667705999924, 49.017144512000058 ], [ -122.713270559999955, 49.01722428600003 ], [ -122.713300346, 49.016801569000066 ], [ -122.711402511999964, 49.016743409000085 ], [ -122.711405663999983, 49.016698708000064 ], [ -122.713367524999967, 49.016709007000067 ], [ -122.713305564, 49.020830566000051 ], [ -122.709954513999946, 49.020727859000047 ], [ -122.710137816999975, 49.018129067000082 ], [ -122.70629073299996, 49.018011027000114 ], [ -122.706274814999958, 49.018236460000061 ], [ -122.70536293399999, 49.018208461000079 ], [ -122.705320706999899, 49.018806282000078 ], [ -122.703086279999937, 49.018737641000023 ], [ -122.703067026999975, 49.019010035000022 ], [ -122.702323238999952, 49.018987176000124 ], [ -122.702319039999963, 49.019691288000089 ], [ -122.702330935999896, 49.01986956100005 ], [ -122.702330634999939, 49.02001846200011 ], [ -122.70236133499999, 49.02044546200004 ], [ -122.70063663599997, 49.020437662000127 ], [ -122.70063848800001, 49.020394699000057 ], [ -122.699852897999946, 49.020392659000052 ], [ -122.699853016999938, 49.020373106000129 ], [ -122.69971573399998, 49.020372362000089 ], [ -122.699724535999948, 49.019044891000043 ], [ -122.694581362999912, 49.018886555000073 ], [ -122.694581517999936, 49.01888436200008 ], [ -122.692750446999923, 49.01882793100004 ], [ -122.692732015999965, 49.019087886000065 ], [ -122.687276192999946, 49.018919561000082 ], [ -122.687282921999923, 49.018824815000059 ], [ -122.685340122999932, 49.018764808000114 ], [ -122.68516393, 49.021244063 ], [ -122.681515184999952, 49.021131270000069 ], [ -122.681409952999928, 49.022610250000085 ], [ -122.681014524999981, 49.022598019000057 ], [ -122.680854056999962, 49.024852857000113 ], [ -122.680561511999954, 49.024843806000042 ], [ -122.680528368999916, 49.025309463000042 ], [ -122.68004124399998, 49.025294392000013 ], [ -122.679761576999965, 49.018953975000095 ], [ -122.679858677999931, 49.018956980000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112220729", "BldgCostT": "73244858", "sL_LossRatio": "0.722472804830695", "sL_AssetLoss": "1421576", "sL_BldgLoss": "1027050", "sL_StrLoss": "507400", "sL_NStrLoss": "519650", "sL_ContLoss": "394526", "geom_point": "0101000020E6100000BAE4650B50AD5EC0BF36F2AB7F814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.713339828999949, 49.029897935000065 ], [ -122.713333176999953, 49.029394132000085 ], [ -122.713320928999948, 49.028467486000054 ], [ -122.713304863999909, 49.027252780000012 ], [ -122.713299386999935, 49.026839132000141 ], [ -122.713281194999979, 49.025462764000032 ], [ -122.713259997999927, 49.02386108900005 ], [ -122.713302033999952, 49.021065283000034 ], [ -122.715205603999948, 49.021123578000136 ], [ -122.715222105999914, 49.020889260000089 ], [ -122.713305564, 49.020830566000051 ], [ -122.713367524999967, 49.016709007000067 ], [ -122.711405663999983, 49.016698708000064 ], [ -122.711457773999896, 49.01595954000004 ], [ -122.710752788999969, 49.015937926000056 ], [ -122.710699404999943, 49.016694992000083 ], [ -122.707973211999956, 49.016680604000058 ], [ -122.704477485999973, 49.016635894000039 ], [ -122.703466400999943, 49.016622943000058 ], [ -122.703001316999945, 49.016616982000059 ], [ -122.702285404999927, 49.016607806000138 ], [ -122.702003550999933, 49.016610173000053 ], [ -122.700759287999958, 49.016620652000029 ], [ -122.696848458999952, 49.016653492000053 ], [ -122.69117302099994, 49.016700912000076 ], [ -122.690992304999952, 49.016699555000031 ], [ -122.686260695, 49.016663834000042 ], [ -122.685873710999914, 49.016660887000043 ], [ -122.685531291999922, 49.016708884000053 ], [ -122.684922511999915, 49.017004610000058 ], [ -122.684851339999966, 49.01704580100008 ], [ -122.684316691999939, 49.017355400000056 ], [ -122.683938720999961, 49.017519496000027 ], [ -122.683677001999968, 49.017604296000052 ], [ -122.683424913999929, 49.017632507000087 ], [ -122.683222100999956, 49.017619911000104 ], [ -122.683009451999936, 49.017557179000114 ], [ -122.68267589499996, 49.017458810000036 ], [ -122.682081206999953, 49.017210577000064 ], [ -122.68184518299995, 49.017030305000077 ], [ -122.681658406999972, 49.016735982000057 ], [ -122.681463598999954, 49.01662999600012 ], [ -122.68103324799992, 49.016624854000028 ], [ -122.680803494999978, 49.016622104000128 ], [ -122.679658084999915, 49.016608398000123 ], [ -122.680661276999928, 49.015973444000103 ], [ -122.681194287999929, 49.013086231000038 ], [ -122.681664376999962, 49.010539419000118 ], [ -122.679862109999931, 49.005850049000145 ], [ -122.680596052999988, 49.004337024000066 ], [ -122.681628635999971, 49.002208088000032 ], [ -122.684396379999924, 49.002222837000083 ], [ -122.684858916999943, 49.002225301000053 ], [ -122.685722563999931, 49.002228182000074 ], [ -122.686393110999973, 49.002230401000141 ], [ -122.686848833999989, 49.002213584000117 ], [ -122.687550695999946, 49.002187702000086 ], [ -122.689537942999934, 49.002185391000069 ], [ -122.691206284999978, 49.002183405000025 ], [ -122.693885692000023, 49.00218615000005 ], [ -122.696649798999928, 49.002188887000081 ], [ -122.697805972999973, 49.00218663200009 ], [ -122.697768552999918, 49.00271539600007 ], [ -122.698256094999962, 49.002730407000115 ], [ -122.698001517999955, 49.006327895000027 ], [ -122.695135754999967, 49.006239630000081 ], [ -122.695104836999988, 49.006676106000057 ], [ -122.69632411, 49.006713669000092 ], [ -122.696069360999957, 49.010311131000023 ], [ -122.69293949199999, 49.010214680000011 ], [ -122.692929340999967, 49.01035787100011 ], [ -122.694410604999987, 49.010403529 ], [ -122.694359350999918, 49.011126871000066 ], [ -122.694672639999936, 49.011136525000026 ], [ -122.694460527000032, 49.014130153000053 ], [ -122.699369559999951, 49.01428130800015 ], [ -122.699349787999921, 49.014560764000059 ], [ -122.701063419999954, 49.01461347500004 ], [ -122.701073466999944, 49.01447139400004 ], [ -122.702333227999986, 49.014510128000083 ], [ -122.703626103999952, 49.014549863000042 ], [ -122.703643070999959, 49.014309756000067 ], [ -122.709098414, 49.014477251000066 ], [ -122.709097378999928, 49.014491924 ], [ -122.709728462999976, 49.014511281000061 ], [ -122.709774768999978, 49.013854755000082 ], [ -122.709731935, 49.013854761000047 ], [ -122.709734634999947, 49.013645662000037 ], [ -122.709789516999933, 49.013645645000089 ], [ -122.70992376099997, 49.011742201000054 ], [ -122.710013080999929, 49.011744940000014 ], [ -122.710065296999971, 49.011004502000105 ], [ -122.713036787999926, 49.011095599000072 ], [ -122.713039020999986, 49.010707152000059 ], [ -122.711037970999968, 49.010645815000011 ], [ -122.711103876999957, 49.009710937000072 ], [ -122.710992325999968, 49.009707516000091 ], [ -122.711100544999951, 49.008172407000075 ], [ -122.710141591999943, 49.008142999000029 ], [ -122.710154093999947, 49.007965697000046 ], [ -122.707088685999906, 49.007871631000121 ], [ -122.706999335999967, 49.009137570000085 ], [ -122.705877325999936, 49.009103117000102 ], [ -122.705826426999963, 49.009823996000129 ], [ -122.702365936999925, 49.009717664000092 ], [ -122.702234269999934, 49.009713617000038 ], [ -122.702159033, 49.010777982000057 ], [ -122.702151526999927, 49.010777752000109 ], [ -122.702046710999952, 49.012260480000066 ], [ -122.696591651999981, 49.012092627000136 ], [ -122.696846369999932, 49.008495174000089 ], [ -122.69685387499996, 49.00849540500014 ], [ -122.696958847999952, 49.007012673000119 ], [ -122.70049426199995, 49.007121491000099 ], [ -122.70069042899992, 49.004347428000067 ], [ -122.699731741999955, 49.00431793100006 ], [ -122.699882771999981, 49.002182555000104 ], [ -122.701665705, 49.002179028000171 ], [ -122.702179224999966, 49.002177998000022 ], [ -122.705439316999957, 49.002173044000124 ], [ -122.706109340999944, 49.002171996000101 ], [ -122.709964720999949, 49.002165984000086 ], [ -122.711140519999987, 49.002164131000036 ], [ -122.713314309999987, 49.002160638000142 ], [ -122.71377739399999, 49.002159899000048 ], [ -122.714626939999931, 49.002160122000092 ], [ -122.716896582999965, 49.002160661000076 ], [ -122.716951290999944, 49.002160684000103 ], [ -122.722666481999966, 49.002161835000031 ], [ -122.723363676999952, 49.002161961000112 ], [ -122.72337833200001, 49.002161960000073 ], [ -122.723500392999966, 49.002161971000099 ], [ -122.723596166999982, 49.002162008000084 ], [ -122.723951628999984, 49.00216204 ], [ -122.72430716, 49.002162105000117 ], [ -122.729858178, 49.002162876000114 ], [ -122.731130712999942, 49.002163005000071 ], [ -122.735433913999969, 49.002150599000046 ], [ -122.735036877999917, 49.002286881000089 ], [ -122.734724006999926, 49.00246169100015 ], [ -122.734716646, 49.002908815000076 ], [ -122.734714992999926, 49.003007707000044 ], [ -122.73471409499993, 49.003061607000049 ], [ -122.734710083999929, 49.00330489099999 ], [ -122.734759254999972, 49.003385510000058 ], [ -122.734808094999963, 49.003465605000024 ], [ -122.734948400999983, 49.003609583000099 ], [ -122.73495761599996, 49.003616728000118 ], [ -122.735031626999969, 49.003673973000069 ], [ -122.735251720999941, 49.003844177000055 ], [ -122.735238231, 49.004036637000048 ], [ -122.735243407999945, 49.005524863000048 ], [ -122.735253699999973, 49.006227312000057 ], [ -122.735263583999981, 49.006904633000069 ], [ -122.735274828999962, 49.007673649000061 ], [ -122.735264183000012, 49.008911661000099 ], [ -122.735259913, 49.00941001000011 ], [ -122.735257528999952, 49.010106294000074 ], [ -122.735255079999916, 49.010826129000108 ], [ -122.735252193999969, 49.011671658000083 ], [ -122.735251029999986, 49.012013505000013 ], [ -122.735250547999925, 49.012148448000104 ], [ -122.735250531999895, 49.012158561000078 ], [ -122.735236532, 49.016267271000054 ], [ -122.735234080999959, 49.016653837000106 ], [ -122.735221036999988, 49.017230269000038 ], [ -122.735200138999929, 49.018180125000043 ], [ -122.732912217999939, 49.018110476000061 ], [ -122.732913183999983, 49.01809669600005 ], [ -122.731745978999982, 49.018061145000054 ], [ -122.731772982999942, 49.017675732000107 ], [ -122.73174390299998, 49.017674847000116 ], [ -122.731762249000028, 49.017413008000119 ], [ -122.729195330999943, 49.01733478000007 ], [ -122.729242153999962, 49.016666995000016 ], [ -122.729248111999951, 49.016582014000043 ], [ -122.72849926899994, 49.016559181000019 ], [ -122.728491595999955, 49.01666861200011 ], [ -122.728395494999987, 49.01803882500014 ], [ -122.72475897699999, 49.017927868000108 ], [ -122.72474795, 49.018084913000045 ], [ -122.721626603999965, 49.01798957600009 ], [ -122.721518300999961, 49.019530487000097 ], [ -122.71606232299996, 49.019363626000086 ], [ -122.716148893999915, 49.018133964000128 ], [ -122.715606225, 49.018117352000118 ], [ -122.715444685, 49.020411428000052 ], [ -122.72071226, 49.020572559000065 ], [ -122.720530365999949, 49.023159570000061 ], [ -122.722557754999926, 49.023221517000117 ], [ -122.722510927999934, 49.023887888000047 ], [ -122.722304939, 49.026818947000073 ], [ -122.717922673999965, 49.026684999000068 ], [ -122.717892596999945, 49.027112358000117 ], [ -122.718160334999965, 49.027125361000103 ], [ -122.718155235, 49.027245962000109 ], [ -122.717884043999973, 49.027233902000035 ], [ -122.717756579999957, 49.029044950000063 ], [ -122.715441400999978, 49.028974113000089 ], [ -122.715427270999982, 49.029174717000053 ], [ -122.717017524999974, 49.029223380000097 ], [ -122.716968471999934, 49.029920152000052 ], [ -122.718373293999917, 49.029963121000073 ], [ -122.718392319999964, 49.029692759000092 ], [ -122.723849514000037, 49.029859499000025 ], [ -122.723754625999931, 49.031210095000056 ], [ -122.71868979199995, 49.031210466000104 ], [ -122.713357267999939, 49.031210545000079 ], [ -122.713347557999953, 49.030482453000033 ], [ -122.71334424199992, 49.03023083900009 ], [ -122.713339828999949, 49.029897935000065 ] ], [ [ -122.717120826999945, 49.014354175000072 ], [ -122.717123062999974, 49.013959451000048 ], [ -122.717065867999963, 49.013959311000114 ], [ -122.717038256999899, 49.014351648000122 ], [ -122.717120826999945, 49.014354175000072 ] ], [ [ -122.724951406999963, 49.014056127000053 ], [ -122.724932321999972, 49.014327963000035 ], [ -122.727872783999914, 49.01441769400008 ], [ -122.727976566999942, 49.01293804200003 ], [ -122.729060171999947, 49.012971089000132 ], [ -122.72917660899999, 49.011310366000011 ], [ -122.730672847999983, 49.011355979000029 ], [ -122.73081125099999, 49.009380900000103 ], [ -122.731973684999943, 49.009416323000103 ], [ -122.7320911899999, 49.007738726000113 ], [ -122.73492430899995, 49.007825007000065 ], [ -122.734945309999944, 49.007524925000034 ], [ -122.734798998999921, 49.007524588000109 ], [ -122.734800402999937, 49.007260304000063 ], [ -122.733339400999981, 49.007215818000134 ], [ -122.733366500999978, 49.006828749000064 ], [ -122.731841071999924, 49.006782279000028 ], [ -122.731899917999968, 49.005942167000107 ], [ -122.731601515999955, 49.005933074000069 ], [ -122.73163860199999, 49.005403638000125 ], [ -122.730029071999937, 49.005354578000016 ], [ -122.729888091999953, 49.005354248000089 ], [ -122.729888113999948, 49.005350281000041 ], [ -122.728613042999967, 49.005311397000071 ], [ -122.728684988999959, 49.004285226000029 ], [ -122.728213388999961, 49.004270841000071 ], [ -122.728000494999932, 49.004270340000048 ], [ -122.727976929999983, 49.004606374000041 ], [ -122.72252267399989, 49.004439837000035 ], [ -122.722525354999931, 49.004401657000088 ], [ -122.719680613, 49.00431468700004 ], [ -122.719677281999935, 49.004362076000042 ], [ -122.716764429999927, 49.00427294499999 ], [ -122.716752877999937, 49.004437115 ], [ -122.716955411999891, 49.00444331500006 ], [ -122.716702266999917, 49.008040838000063 ], [ -122.716688034999919, 49.008040402000077 ], [ -122.71659443799993, 49.00937039400003 ], [ -122.719200202999986, 49.009376763000049 ], [ -122.719201721999951, 49.009106898000041 ], [ -122.724124459, 49.009118773000118 ], [ -122.724100600000014, 49.013436610000021 ], [ -122.724510864999957, 49.013437589000027 ], [ -122.724507526999901, 49.014042575000133 ], [ -122.724951406999963, 49.014056127000053 ] ], [ [ -122.687161888, 49.011677716000094 ], [ -122.687184238999919, 49.011362981000104 ], [ -122.686564383999922, 49.01134383600013 ], [ -122.686542029999927, 49.011658570000137 ], [ -122.687161888, 49.011677716000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30872917", "BldgCostT": "17871667", "sL_LossRatio": "0.674812044451583", "sL_AssetLoss": "261498", "sL_BldgLoss": "176462", "sL_StrLoss": "87134", "sL_NStrLoss": "89328", "sL_ContLoss": "85036", "geom_point": "0101000020E61000009167D11AC7AE5EC02AFFFFA446834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.725681716999972, 49.029903487000134 ], [ -122.725776584999949, 49.028552335 ], [ -122.731233671999973, 49.028718701000045 ], [ -122.731223596999911, 49.028862440000083 ], [ -122.731715370999908, 49.02887741900004 ], [ -122.73185910899997, 49.026826391000071 ], [ -122.731475732999968, 49.02681471500005 ], [ -122.731500782999944, 49.026457293000135 ], [ -122.731478555999956, 49.026456616000068 ], [ -122.731478605999925, 49.026455899000034 ], [ -122.729943313999982, 49.026409123000079 ], [ -122.729933031999963, 49.026555763000076 ], [ -122.724476202999966, 49.026389330000022 ], [ -122.724651454999943, 49.023893970000046 ], [ -122.724728849999948, 49.022791892000058 ], [ -122.729484274999891, 49.022936949000133 ], [ -122.729494557999956, 49.022790308 ], [ -122.729600450999925, 49.022793535000055 ], [ -122.729702528999951, 49.021337708000097 ], [ -122.731579594999957, 49.021394905000086 ], [ -122.731805320999939, 49.018173450000049 ], [ -122.735198012999916, 49.018276747000037 ], [ -122.735189684999938, 49.01865516400008 ], [ -122.735260612999966, 49.018813240000064 ], [ -122.735261023999925, 49.023545675000136 ], [ -122.73526108, 49.023923539000087 ], [ -122.735162308999946, 49.029239911000097 ], [ -122.73518180399995, 49.031207986000062 ], [ -122.733226520999921, 49.031208796 ], [ -122.732081322999974, 49.031208999000086 ], [ -122.73106884799995, 49.031209155000049 ], [ -122.72981036799996, 49.031209364000112 ], [ -122.728442238999904, 49.031209551000082 ], [ -122.728332780999978, 49.031209561000068 ], [ -122.724398398999966, 49.031210031000029 ], [ -122.724194804999911, 49.031210051000052 ], [ -122.724289571999975, 49.029861002000096 ], [ -122.725681716999972, 49.029903487000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132227918", "BldgCostT": "88716668", "sL_LossRatio": "0.749550340429504", "sL_AssetLoss": "1585644", "sL_BldgLoss": "1188520", "sL_StrLoss": "581156", "sL_NStrLoss": "607364", "sL_ContLoss": "397124", "geom_point": "0101000020E61000008FFE653190AF5EC0E494C2B4D6834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.724369184999958, 49.045672807000066 ], [ -122.72436949199998, 49.042068703000041 ], [ -122.724367860999962, 49.041916132000011 ], [ -122.724360363999921, 49.041214540000084 ], [ -122.724359206999978, 49.04110488200012 ], [ -122.724353403999942, 49.038463096000029 ], [ -122.724326911999967, 49.036932803000063 ], [ -122.724321031999949, 49.036526212000041 ], [ -122.724309835999961, 49.035752691000091 ], [ -122.724296091999975, 49.034802204000087 ], [ -122.724289099999979, 49.034511811000115 ], [ -122.724298863999962, 49.034216904000047 ], [ -122.724396140999914, 49.034217136000073 ], [ -122.72440027199994, 49.033469491000055 ], [ -122.724323682999966, 49.033467154000078 ], [ -122.724398398999966, 49.031210031000029 ], [ -122.728332780999978, 49.031209561000068 ], [ -122.728442238999904, 49.031209551000082 ], [ -122.72981036799996, 49.031209364000112 ], [ -122.73106884799995, 49.031209155000049 ], [ -122.732081322999974, 49.031208999000086 ], [ -122.733226520999921, 49.031208796 ], [ -122.73518180399995, 49.031207986000062 ], [ -122.735162308999946, 49.029239911000097 ], [ -122.73526108, 49.023923539000087 ], [ -122.735261023999925, 49.023545675000136 ], [ -122.735260612999966, 49.018813240000064 ], [ -122.735189684999938, 49.01865516400008 ], [ -122.735198012999916, 49.018276747000037 ], [ -122.73652349799994, 49.018317075000056 ], [ -122.736530248999941, 49.018220593000102 ], [ -122.735200138999929, 49.018180125000043 ], [ -122.735221036999988, 49.017230269000038 ], [ -122.735234080999959, 49.016653837000106 ], [ -122.73537351, 49.016653574000017 ], [ -122.736139061999921, 49.016651648000021 ], [ -122.738482129999937, 49.016645777000086 ], [ -122.738448004999924, 49.017133851000082 ], [ -122.742065971999949, 49.017243781000083 ], [ -122.742038413, 49.017638372000093 ], [ -122.742953566999972, 49.017666159000058 ], [ -122.742702351999952, 49.021263668000081 ], [ -122.738241766, 49.021128157000071 ], [ -122.73823247499999, 49.021261025000037 ], [ -122.738307055999925, 49.0212632920001 ], [ -122.738139077999961, 49.023665265000062 ], [ -122.739849849999942, 49.023717258000048 ], [ -122.739788174999916, 49.024599557000094 ], [ -122.740906566999968, 49.024633532000109 ], [ -122.740850687999952, 49.025433162000063 ], [ -122.743475924999984, 49.025512866000057 ], [ -122.743429043, 49.026184293000078 ], [ -122.743689262, 49.026192191000092 ], [ -122.743756745999988, 49.025225660000054 ], [ -122.746983556999965, 49.025323533000133 ], [ -122.747042655999948, 49.024476238000048 ], [ -122.749301653999908, 49.024544698000163 ], [ -122.749442767999966, 49.022519990000042 ], [ -122.751221004999977, 49.022573847000054 ], [ -122.751235402999939, 49.02236713300001 ], [ -122.751370471999962, 49.022371223000043 ], [ -122.751459865999976, 49.021087735000094 ], [ -122.753481630999929, 49.021148929000034 ], [ -122.75360417499999, 49.019388281000062 ], [ -122.754841372, 49.019425710000064 ], [ -122.754843118999986, 49.019069832000064 ], [ -122.75288889799999, 49.019010705000063 ], [ -122.752897858999916, 49.018881994 ], [ -122.748324546999953, 49.018743484000019 ], [ -122.748371594999966, 49.018068575000022 ], [ -122.748358788999965, 49.018068188000051 ], [ -122.748359421999936, 49.018059108000102 ], [ -122.745500189999973, 49.017972411000088 ], [ -122.74556741, 49.017008943000064 ], [ -122.741563510999967, 49.016887410000045 ], [ -122.741580937999956, 49.016637933000069 ], [ -122.741609943999904, 49.016637859000063 ], [ -122.742444264999961, 49.016635727000086 ], [ -122.746297745999954, 49.01662584000011 ], [ -122.749065684999891, 49.016604294000068 ], [ -122.751457796999887, 49.016598799000136 ], [ -122.751731499999963, 49.016598185000078 ], [ -122.752086987999974, 49.016597334000018 ], [ -122.752497164, 49.016596382000017 ], [ -122.752742996999984, 49.016595823000088 ], [ -122.753002755999901, 49.016595223000095 ], [ -122.753262827999933, 49.016594630000021 ], [ -122.753628870999961, 49.016593770000071 ], [ -122.753857413999981, 49.016648452000069 ], [ -122.754568561, 49.016642926000017 ], [ -122.755501060999947, 49.016630045000042 ], [ -122.756330720999983, 49.016618575000031 ], [ -122.75663441099999, 49.016614364000056 ], [ -122.757111361999975, 49.016674754000071 ], [ -122.757548868999947, 49.016770915000087 ], [ -122.757761612999957, 49.016856640000071 ], [ -122.757790203999974, 49.016760167000072 ], [ -122.757889725000013, 49.01668476800004 ], [ -122.758032713999981, 49.016653022000156 ], [ -122.75834154099999, 49.016830897000069 ], [ -122.758902142999929, 49.016781732000091 ], [ -122.759238742999955, 49.016752200000049 ], [ -122.75927393399995, 49.016749104000098 ], [ -122.759869088999977, 49.017733674000048 ], [ -122.760563654999956, 49.018882636000065 ], [ -122.76098043699993, 49.01959399200009 ], [ -122.763101234999937, 49.023213296000037 ], [ -122.763150436999979, 49.023297207000084 ], [ -122.763572258999943, 49.024017042000025 ], [ -122.763890858999972, 49.024560680000022 ], [ -122.764260456999978, 49.025191328000048 ], [ -122.764382805999929, 49.025400080000104 ], [ -122.763429745999957, 49.025398130000021 ], [ -122.76343091699999, 49.025151046000097 ], [ -122.762350072999965, 49.025118440000021 ], [ -122.76240573799997, 49.024316556 ], [ -122.762341418999981, 49.024316423000094 ], [ -122.76224776, 49.025665568000079 ], [ -122.76260773499996, 49.025666310000091 ], [ -122.76260388499999, 49.026475904000037 ], [ -122.762191561999927, 49.026475056000066 ], [ -122.762143363999925, 49.027169281000077 ], [ -122.75926520299997, 49.027082398000132 ], [ -122.759232821999944, 49.027548390000099 ], [ -122.760136463999956, 49.027550272000056 ], [ -122.760135165999941, 49.027820137000091 ], [ -122.760545548999957, 49.027820990000073 ], [ -122.760544254999942, 49.02809085400002 ], [ -122.761775410999945, 49.028093402000131 ], [ -122.761772504999982, 49.028702227000103 ], [ -122.764294403999941, 49.028778297000059 ], [ -122.764341558999959, 49.028098671000038 ], [ -122.764237722999951, 49.028098459000049 ], [ -122.764249196999927, 49.025669675000053 ], [ -122.764510041, 49.025670206000036 ], [ -122.764513331, 49.025622778000063 ], [ -122.765358536999926, 49.027064789000086 ], [ -122.765918131999982, 49.027945058000043 ], [ -122.766716725999942, 49.028809997000046 ], [ -122.768032608999988, 49.03002622100005 ], [ -122.769158021999928, 49.031066348000138 ], [ -122.768855112999987, 49.031065701000081 ], [ -122.767979559999958, 49.031063681000063 ], [ -122.767863500999951, 49.031063385000074 ], [ -122.767541699999981, 49.031063306000092 ], [ -122.767076577999902, 49.031063156000073 ], [ -122.765913699999928, 49.031062811000062 ], [ -122.765681112, 49.031062726000116 ], [ -122.765325431999941, 49.031062606000098 ], [ -122.76462779699996, 49.031062390000081 ], [ -122.763971132999984, 49.031062184000085 ], [ -122.762808254000021, 49.031061801000114 ], [ -122.762069398999984, 49.031061523000119 ], [ -122.761700120999976, 49.031061403000109 ], [ -122.76096137199994, 49.03106113800002 ], [ -122.757133677999974, 49.031059701000039 ], [ -122.754161662999948, 49.031093194000036 ], [ -122.751633073999969, 49.031121653000106 ], [ -122.751619411000021, 49.031121805000026 ], [ -122.751357073999955, 49.031123264 ], [ -122.74870350499998, 49.031138010000042 ], [ -122.747075545999976, 49.031147001000093 ], [ -122.746134585999926, 49.031152194000086 ], [ -122.746165013, 49.03477350800005 ], [ -122.746049773999943, 49.038427824000095 ], [ -122.746039898, 49.038427850000055 ], [ -122.742359231999927, 49.03843769700007 ], [ -122.740895195999954, 49.038441578000075 ], [ -122.740659201999932, 49.038442194 ], [ -122.739745733999939, 49.038445227000111 ], [ -122.738103670999976, 49.038450611000052 ], [ -122.736037404999976, 49.038457367000014 ], [ -122.735886914999952, 49.038457867000069 ], [ -122.735200396999971, 49.038460108000031 ], [ -122.735231660999915, 49.040591584000069 ], [ -122.735238237, 49.041041549000084 ], [ -122.735261056999931, 49.042597795000042 ], [ -122.735265804999969, 49.042921711000112 ], [ -122.735301953999965, 49.045386393000044 ], [ -122.735305986999919, 49.045662600000085 ], [ -122.733303433999978, 49.045664547000051 ], [ -122.724369184999958, 49.045672807000066 ] ], [ [ -122.7311643099999, 49.043243538000112 ], [ -122.731251151999942, 49.042005001000092 ], [ -122.726513790999988, 49.04186063800006 ], [ -122.726429313000011, 49.043063728000043 ], [ -122.727708582, 49.043102733000062 ], [ -122.727683565999925, 49.043459110000086 ], [ -122.727817539999961, 49.04346319400004 ], [ -122.727828178999943, 49.043311628000048 ], [ -122.728863593999947, 49.043343184000101 ], [ -122.728872942999956, 49.043209952000069 ], [ -122.730510141999972, 49.043259829000057 ], [ -122.73051267699995, 49.043223692000034 ], [ -122.7311643099999, 49.043243538000112 ] ], [ [ -122.741213703999989, 49.036236620000118 ], [ -122.741213801999947, 49.0362175550001 ], [ -122.741118909999912, 49.036214675000096 ], [ -122.741117579000019, 49.036233701000093 ], [ -122.741213703999989, 49.036236620000118 ] ], [ [ -122.751244014999941, 49.028590929000103 ], [ -122.751270593999891, 49.028209406000038 ], [ -122.74933391899998, 49.028150758000024 ], [ -122.749291122999978, 49.028764702000082 ], [ -122.749298536999959, 49.028764927000026 ], [ -122.749314736999978, 49.028532505000044 ], [ -122.751244014999941, 49.028590929000103 ] ], [ [ -122.76245647599994, 49.023507057000046 ], [ -122.762475205999962, 49.023237228000092 ], [ -122.762208942999933, 49.023236679000043 ], [ -122.762211513999915, 49.022696949000128 ], [ -122.761801173999928, 49.02269610300003 ], [ -122.761803520999976, 49.022204347000098 ], [ -122.761524394999924, 49.022195923000012 ], [ -122.761430880999967, 49.023542721000084 ], [ -122.761797078999948, 49.023553773000089 ], [ -122.7617973099999, 49.0235056980001 ], [ -122.76245647599994, 49.023507057000046 ] ], [ [ -122.737270463999948, 49.020749518000095 ], [ -122.737273697999981, 49.020703297000033 ], [ -122.737096243999957, 49.020697901000105 ], [ -122.73709301099997, 49.020744122000053 ], [ -122.737270463999948, 49.020749518000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "572879667", "BldgCostT": "375461667", "sL_LossRatio": "0.79499100826758", "sL_AssetLoss": "3988108", "sL_BldgLoss": "3170510", "sL_StrLoss": "1887290", "sL_NStrLoss": "1283220", "sL_ContLoss": "817598", "geom_point": "0101000020E610000085A7CB20C6AF5EC083DC4E5332814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.735236532, 49.016267271000054 ], [ -122.735250531999895, 49.012158561000078 ], [ -122.735250547999925, 49.012148448000104 ], [ -122.735251029999986, 49.012013505000013 ], [ -122.735252193999969, 49.011671658000083 ], [ -122.735255079999916, 49.010826129000108 ], [ -122.735257528999952, 49.010106294000074 ], [ -122.735259913, 49.00941001000011 ], [ -122.735264183000012, 49.008911661000099 ], [ -122.735274828999962, 49.007673649000061 ], [ -122.735263583999981, 49.006904633000069 ], [ -122.735253699999973, 49.006227312000057 ], [ -122.735243407999945, 49.005524863000048 ], [ -122.735238231, 49.004036637000048 ], [ -122.735251720999941, 49.003844177000055 ], [ -122.735031626999969, 49.003673973000069 ], [ -122.73495761599996, 49.003616728000118 ], [ -122.734948400999983, 49.003609583000099 ], [ -122.734808094999963, 49.003465605000024 ], [ -122.734759254999972, 49.003385510000058 ], [ -122.734710083999929, 49.00330489099999 ], [ -122.73471409499993, 49.003061607000049 ], [ -122.734714992999926, 49.003007707000044 ], [ -122.734716646, 49.002908815000076 ], [ -122.734724006999926, 49.00246169100015 ], [ -122.735036877999917, 49.002286881000089 ], [ -122.735433913999969, 49.002150599000046 ], [ -122.735595348999979, 49.002150148000027 ], [ -122.736123040999956, 49.002148611000102 ], [ -122.737284669999966, 49.002148482000109 ], [ -122.739446476999944, 49.002146640000014 ], [ -122.74117236, 49.002145027000033 ], [ -122.746294921999976, 49.002145527000089 ], [ -122.746866724999961, 49.002145699000025 ], [ -122.747851130999948, 49.002146049 ], [ -122.748018209999913, 49.002146116000098 ], [ -122.749081830999941, 49.00214646200002 ], [ -122.749840677999913, 49.002146693000064 ], [ -122.751603383999964, 49.002145995000035 ], [ -122.754929501, 49.002161094000037 ], [ -122.755038104999983, 49.002170706000094 ], [ -122.755135501999973, 49.002243907000022 ], [ -122.755150909999927, 49.002279518000066 ], [ -122.756032732999955, 49.002259948000095 ], [ -122.75675929, 49.003368674000072 ], [ -122.7570736, 49.003848304000044 ], [ -122.757076658999921, 49.004009694000054 ], [ -122.757093337999919, 49.0048916450001 ], [ -122.75709523799992, 49.004990717000069 ], [ -122.757103522999898, 49.005429534000072 ], [ -122.757124818999955, 49.006552812000074 ], [ -122.757322783999896, 49.006750792000105 ], [ -122.757360056, 49.00686279800005 ], [ -122.75737186799995, 49.007480485000038 ], [ -122.757370327999979, 49.008513218000076 ], [ -122.757367234999961, 49.01064075900009 ], [ -122.757364348999985, 49.012602299000029 ], [ -122.757426371999969, 49.013027788000059 ], [ -122.757709234999965, 49.013873629000024 ], [ -122.757868872999964, 49.014153699000083 ], [ -122.758047896999983, 49.014467886000062 ], [ -122.758824453999964, 49.01591277600005 ], [ -122.758858929999946, 49.015976925000068 ], [ -122.758870015999975, 49.015997566000088 ], [ -122.759155412999945, 49.016528546000124 ], [ -122.759199860999956, 49.016611283000039 ], [ -122.75927393399995, 49.016749104000098 ], [ -122.759238742999955, 49.016752200000049 ], [ -122.758902142999929, 49.016781732000091 ], [ -122.75834154099999, 49.016830897000069 ], [ -122.758032713999981, 49.016653022000156 ], [ -122.757889725000013, 49.01668476800004 ], [ -122.757790203999974, 49.016760167000072 ], [ -122.757761612999957, 49.016856640000071 ], [ -122.757548868999947, 49.016770915000087 ], [ -122.757111361999975, 49.016674754000071 ], [ -122.75663441099999, 49.016614364000056 ], [ -122.756330720999983, 49.016618575000031 ], [ -122.755501060999947, 49.016630045000042 ], [ -122.754568561, 49.016642926000017 ], [ -122.753857413999981, 49.016648452000069 ], [ -122.753628870999961, 49.016593770000071 ], [ -122.753262827999933, 49.016594630000021 ], [ -122.753002755999901, 49.016595223000095 ], [ -122.752742996999984, 49.016595823000088 ], [ -122.752497164, 49.016596382000017 ], [ -122.752086987999974, 49.016597334000018 ], [ -122.751731499999963, 49.016598185000078 ], [ -122.751457796999887, 49.016598799000136 ], [ -122.749065684999891, 49.016604294000068 ], [ -122.746297745999954, 49.01662584000011 ], [ -122.742444264999961, 49.016635727000086 ], [ -122.741609943999904, 49.016637859000063 ], [ -122.741580937999956, 49.016637933000069 ], [ -122.741814788999989, 49.013289878000059 ], [ -122.742174228, 49.01330079500007 ], [ -122.742191381999973, 49.013055155000103 ], [ -122.740934234999884, 49.013016969000027 ], [ -122.740804018999967, 49.014880834000039 ], [ -122.738610190999935, 49.014814160000078 ], [ -122.738482129999937, 49.016645777000086 ], [ -122.736139061999921, 49.016651648000021 ], [ -122.73537351, 49.016653574000017 ], [ -122.735234080999959, 49.016653837000106 ], [ -122.735236532, 49.016267271000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165005750", "BldgCostT": "111620000", "sL_LossRatio": "0.729257788642948", "sL_AssetLoss": "2351244", "sL_BldgLoss": "1714663", "sL_StrLoss": "825991", "sL_NStrLoss": "888672", "sL_ContLoss": "636581", "geom_point": "0101000020E6100000A14B0F75E5B05EC0F55AD07B63824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76430356799996, 49.024732952000072 ], [ -122.760910030000019, 49.018757000000129 ], [ -122.759776580000022, 49.016761572000036 ], [ -122.759754185999981, 49.016722164000115 ], [ -122.75927393399995, 49.016749104000098 ], [ -122.759199860999956, 49.016611283000039 ], [ -122.759155412999945, 49.016528546000124 ], [ -122.758870015999975, 49.015997566000088 ], [ -122.758858929999946, 49.015976925000068 ], [ -122.758824453999964, 49.01591277600005 ], [ -122.758047896999983, 49.014467886000062 ], [ -122.757868872999964, 49.014153699000083 ], [ -122.757709234999965, 49.013873629000024 ], [ -122.757426371999969, 49.013027788000059 ], [ -122.757364348999985, 49.012602299000029 ], [ -122.757367234999961, 49.01064075900009 ], [ -122.757370327999979, 49.008513218000076 ], [ -122.75737186799995, 49.007480485000038 ], [ -122.757532645999973, 49.007485375000037 ], [ -122.757683352999962, 49.007489927000087 ], [ -122.757817760999956, 49.007493979000095 ], [ -122.757728280999942, 49.012380767000103 ], [ -122.75790940899999, 49.013176659000102 ], [ -122.758147084999962, 49.013703798000094 ], [ -122.758219670999921, 49.013864705000053 ], [ -122.758901770999913, 49.014905579000072 ], [ -122.759075215999971, 49.01501900600001 ], [ -122.759163269999974, 49.015076608000101 ], [ -122.759532755999913, 49.01516798800003 ], [ -122.759842737999989, 49.015191764000129 ], [ -122.76103355199993, 49.015107838000027 ], [ -122.761132690999929, 49.015115570000077 ], [ -122.761506629999943, 49.015144677000137 ], [ -122.761877445999957, 49.015256796000081 ], [ -122.762176482999976, 49.015437973000125 ], [ -122.762341406999951, 49.015661070000071 ], [ -122.762374122999958, 49.015795993000083 ], [ -122.76237813799996, 49.015812497000077 ], [ -122.762403029999973, 49.01591527500009 ], [ -122.76239610199994, 49.015972243000093 ], [ -122.762385217999935, 49.016061874000108 ], [ -122.762339434999916, 49.016437892000098 ], [ -122.762494611999955, 49.016477299000051 ], [ -122.762500604999929, 49.016478821000085 ], [ -122.762571300000033, 49.016582806000017 ], [ -122.763463003999945, 49.016574775000073 ], [ -122.76370742, 49.016572587000077 ], [ -122.764312766999922, 49.016567150000114 ], [ -122.764778260999947, 49.01656297300012 ], [ -122.765333961999929, 49.016557975000069 ], [ -122.766608844999908, 49.016560401000056 ], [ -122.766745568999966, 49.016560685000073 ], [ -122.767650336999907, 49.016562399000065 ], [ -122.768239392999973, 49.016563496000053 ], [ -122.768226199999944, 49.018076415000024 ], [ -122.768228293, 49.018497542000041 ], [ -122.76823212, 49.019262255000079 ], [ -122.768234415999942, 49.019712193000018 ], [ -122.768234986999971, 49.019829117 ], [ -122.768236814999952, 49.020191094000026 ], [ -122.76823048599999, 49.021072306000065 ], [ -122.768228110999971, 49.021500306000156 ], [ -122.768204494, 49.022572117000045 ], [ -122.768206566999979, 49.022932530000041 ], [ -122.768206889999931, 49.022991315000063 ], [ -122.768213803, 49.023817991000023 ], [ -122.767077625999946, 49.023801803 ], [ -122.766821097000019, 49.023996586000138 ], [ -122.766672907999961, 49.023877167000094 ], [ -122.764374283, 49.022024633000051 ], [ -122.764257399999948, 49.021930433000065 ], [ -122.763592007999989, 49.021393938000067 ], [ -122.763403453999928, 49.021924510000069 ], [ -122.763430807999939, 49.022633734000138 ], [ -122.763588445999986, 49.02315942300006 ], [ -122.764010519999957, 49.024088193000054 ], [ -122.764022901999937, 49.02411544600006 ], [ -122.764046642999986, 49.024167638000037 ], [ -122.76430356799996, 49.024732952000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34920918", "BldgCostT": "23611668", "sL_LossRatio": "0.744373227724148", "sL_AssetLoss": "460566", "sL_BldgLoss": "342833", "sL_StrLoss": "150656", "sL_NStrLoss": "192177", "sL_ContLoss": "117733", "geom_point": "0101000020E61000009FF8A4F23AB15EC08899437399814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.762403029999973, 49.01591527500009 ], [ -122.76237813799996, 49.015812497000077 ], [ -122.762374122999958, 49.015795993000083 ], [ -122.762341406999951, 49.015661070000071 ], [ -122.762176482999976, 49.015437973000125 ], [ -122.761877445999957, 49.015256796000081 ], [ -122.761506629999943, 49.015144677000137 ], [ -122.761132690999929, 49.015115570000077 ], [ -122.76103355199993, 49.015107838000027 ], [ -122.759842737999989, 49.015191764000129 ], [ -122.759532755999913, 49.01516798800003 ], [ -122.759163269999974, 49.015076608000101 ], [ -122.759075215999971, 49.01501900600001 ], [ -122.758901770999913, 49.014905579000072 ], [ -122.758219670999921, 49.013864705000053 ], [ -122.758147084999962, 49.013703798000094 ], [ -122.75790940899999, 49.013176659000102 ], [ -122.757728280999942, 49.012380767000103 ], [ -122.757817760999956, 49.007493979000095 ], [ -122.757683352999962, 49.007489927000087 ], [ -122.757532645999973, 49.007485375000037 ], [ -122.75737186799995, 49.007480485000038 ], [ -122.757360056, 49.00686279800005 ], [ -122.757322783999896, 49.006750792000105 ], [ -122.757124818999955, 49.006552812000074 ], [ -122.757103522999898, 49.005429534000072 ], [ -122.757717932, 49.005447632000056 ], [ -122.757756132999987, 49.005446975000034 ], [ -122.760019395999976, 49.00540828000004 ], [ -122.76090496099999, 49.005861101000058 ], [ -122.760882642999917, 49.006182573000096 ], [ -122.758201590999974, 49.006101572000041 ], [ -122.758201530999969, 49.006102438000042 ], [ -122.757841153999948, 49.006091545000103 ], [ -122.757778304999974, 49.006089645000053 ], [ -122.757773271999966, 49.007127298000107 ], [ -122.757823870999957, 49.007128827000052 ], [ -122.760042797, 49.007195877000164 ], [ -122.760022054999936, 49.007494574000106 ], [ -122.759971709999945, 49.00821956700004 ], [ -122.760707081999939, 49.008241777000087 ], [ -122.760759915999969, 49.007480780000094 ], [ -122.76084591599998, 49.006242019000133 ], [ -122.761700395999952, 49.006267821000016 ], [ -122.763543613999957, 49.007210239000116 ], [ -122.7637750299999, 49.007187738000027 ], [ -122.763977539999942, 49.007168070000077 ], [ -122.764574, 49.007460820000112 ], [ -122.766444905999933, 49.008378998000133 ], [ -122.767921075999979, 49.009104869000083 ], [ -122.768979756999926, 49.009624351000078 ], [ -122.769415048999974, 49.009846724000106 ], [ -122.771958842999936, 49.011146171000064 ], [ -122.772544236999948, 49.011376486000096 ], [ -122.777563555999961, 49.012805155000073 ], [ -122.77763072099998, 49.012824270000053 ], [ -122.77770420799996, 49.01284783600002 ], [ -122.777608810999979, 49.012956509000034 ], [ -122.7776206, 49.013398001000084 ], [ -122.777700195999941, 49.013775515000084 ], [ -122.77785098899993, 49.013956302000068 ], [ -122.778491708, 49.014380693000128 ], [ -122.778942180999934, 49.01443489400009 ], [ -122.779257415999922, 49.014382193000067 ], [ -122.78014809599992, 49.013960595000057 ], [ -122.78064068499999, 49.013935002000125 ], [ -122.781351206999915, 49.014142909000014 ], [ -122.782266103999959, 49.014540296000121 ], [ -122.782469496999951, 49.014657011000089 ], [ -122.782538287999898, 49.014810913000119 ], [ -122.782427089999956, 49.015117095000164 ], [ -122.781934483999976, 49.015403292000066 ], [ -122.781194124999928, 49.015518703000083 ], [ -122.779975302999972, 49.015884690000185 ], [ -122.778456681999899, 49.016116896000064 ], [ -122.777719181999899, 49.016115400000089 ], [ -122.776490992, 49.015339213000061 ], [ -122.775958905999957, 49.015175508000034 ], [ -122.774427714, 49.01510140700001 ], [ -122.77317562799999, 49.014743705000036 ], [ -122.773182199999951, 49.014648708000031 ], [ -122.770034201000016, 49.014553973000098 ], [ -122.770046292999922, 49.014379323000064 ], [ -122.769552694999902, 49.014364460000095 ], [ -122.769659291999957, 49.012825070000041 ], [ -122.768712060000013, 49.012796543000071 ], [ -122.76872926, 49.012548211000123 ], [ -122.767683837999968, 49.012516716000071 ], [ -122.767699598999954, 49.012289240000023 ], [ -122.763002089999958, 49.012147592000112 ], [ -122.763028780999917, 49.011762912000073 ], [ -122.762938611999957, 49.011760192000075 ], [ -122.762998766999942, 49.010893203000059 ], [ -122.762925562999939, 49.010890993000011 ], [ -122.762938285999937, 49.010707626000091 ], [ -122.762499458999955, 49.010694382000111 ], [ -122.76255467, 49.00989876400012 ], [ -122.761892795999955, 49.009878785000112 ], [ -122.761753996000024, 49.011878534000076 ], [ -122.759847361999974, 49.011820960000087 ], [ -122.75967338599996, 49.014325785000047 ], [ -122.760610273999973, 49.01432773199999 ], [ -122.760608979000011, 49.01459759800008 ], [ -122.761429527999965, 49.014599297000075 ], [ -122.761428237999937, 49.014869163000064 ], [ -122.761838514999951, 49.014870010000038 ], [ -122.761837227999976, 49.015139876000063 ], [ -122.762657783999927, 49.015141566000061 ], [ -122.762656812999964, 49.015346079000018 ], [ -122.763077041999964, 49.015358760000048 ], [ -122.763086023999975, 49.015229300000023 ], [ -122.768142112999925, 49.015381736000087 ], [ -122.768177039, 49.014877622000078 ], [ -122.770295114999939, 49.014941408000077 ], [ -122.770571411999981, 49.015030202000041 ], [ -122.771104518999948, 49.015102803999987 ], [ -122.772033113999953, 49.015122805000118 ], [ -122.772430514999925, 49.015007392000044 ], [ -122.772438868, 49.015005927000097 ], [ -122.773155998999968, 49.015027499000041 ], [ -122.773163610999987, 49.014917433000072 ], [ -122.774397901999961, 49.015335003000125 ], [ -122.775944112999937, 49.015383406000069 ], [ -122.776885, 49.015762191000064 ], [ -122.777471792999961, 49.01624929600014 ], [ -122.77812821699996, 49.016367503000033 ], [ -122.778866920999945, 49.016333304000042 ], [ -122.780863883999956, 49.015869003000034 ], [ -122.781372120999933, 49.015626899000083 ], [ -122.782057013999946, 49.01554720700009 ], [ -122.78252150499999, 49.015413284000061 ], [ -122.782742094999932, 49.015135599000111 ], [ -122.782729106999938, 49.014639990000013 ], [ -122.782538879999919, 49.014396395000126 ], [ -122.78129838599996, 49.013890793000016 ], [ -122.779575904999959, 49.013500603000146 ], [ -122.778525196999965, 49.013138804000093 ], [ -122.778400211999909, 49.013056151000086 ], [ -122.778736811, 49.013139601000077 ], [ -122.779004860999919, 49.013218536000096 ], [ -122.779906868999916, 49.013418982000076 ], [ -122.782671702999934, 49.014216742000059 ], [ -122.785647001999962, 49.014986354000044 ], [ -122.787636171999949, 49.015564996000087 ], [ -122.78876455799994, 49.015867199000127 ], [ -122.788764475, 49.015913782000084 ], [ -122.788756948999918, 49.016096278000134 ], [ -122.788765003999941, 49.016211666000117 ], [ -122.788934120999954, 49.016425348000098 ], [ -122.788896814999973, 49.016567314000021 ], [ -122.787509092999969, 49.016573596000107 ], [ -122.786142492999929, 49.016570513000026 ], [ -122.784793583999956, 49.016569690000026 ], [ -122.783402004999942, 49.016573097000084 ], [ -122.782014712999953, 49.016572904000071 ], [ -122.780638715999928, 49.016566791000081 ], [ -122.779412094999898, 49.016563035000026 ], [ -122.779268114999979, 49.01656258900006 ], [ -122.777779215999914, 49.016570209000079 ], [ -122.777319589999976, 49.016569707000045 ], [ -122.775582684, 49.016567890000069 ], [ -122.775459593999969, 49.016567764000129 ], [ -122.774296908999943, 49.016566488000137 ], [ -122.773599734999962, 49.016566174000097 ], [ -122.77342190499995, 49.016566089 ], [ -122.772492081999971, 49.01656563300002 ], [ -122.771767108999967, 49.016565288000059 ], [ -122.770180636999967, 49.016564494000072 ], [ -122.76966575099999, 49.016564234 ], [ -122.768239392999973, 49.016563496000053 ], [ -122.767650336999907, 49.016562399000065 ], [ -122.766745568999966, 49.016560685000073 ], [ -122.766608844999908, 49.016560401000056 ], [ -122.765333961999929, 49.016557975000069 ], [ -122.764778260999947, 49.01656297300012 ], [ -122.764312766999922, 49.016567150000114 ], [ -122.76370742, 49.016572587000077 ], [ -122.763463003999945, 49.016574775000073 ], [ -122.762571300000033, 49.016582806000017 ], [ -122.762500604999929, 49.016478821000085 ], [ -122.762494611999955, 49.016477299000051 ], [ -122.762339434999916, 49.016437892000098 ], [ -122.762385217999935, 49.016061874000108 ], [ -122.76239610199994, 49.015972243000093 ], [ -122.762403029999973, 49.01591527500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159276721", "BldgCostT": "104795414", "sL_LossRatio": "0.720628213692076", "sL_AssetLoss": "1931190", "sL_BldgLoss": "1391670", "sL_StrLoss": "687520", "sL_NStrLoss": "704150", "sL_ContLoss": "539520", "geom_point": "0101000020E6100000BF426A0385B15EC0D4574E4A5A824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.768239392999973, 49.016563496000053 ], [ -122.76966575099999, 49.016564234 ], [ -122.770180636999967, 49.016564494000072 ], [ -122.771767108999967, 49.016565288000059 ], [ -122.772492081999971, 49.01656563300002 ], [ -122.77342190499995, 49.016566089 ], [ -122.773599734999962, 49.016566174000097 ], [ -122.774296908999943, 49.016566488000137 ], [ -122.775459593999969, 49.016567764000129 ], [ -122.775582684, 49.016567890000069 ], [ -122.777319589999976, 49.016569707000045 ], [ -122.777779215999914, 49.016570209000079 ], [ -122.779268114999979, 49.01656258900006 ], [ -122.779258333999962, 49.017251576 ], [ -122.779247351999942, 49.018025104000088 ], [ -122.779242289999928, 49.018381515 ], [ -122.779229484, 49.020209788000059 ], [ -122.777458214999967, 49.020207104000079 ], [ -122.775836237999954, 49.020199775000094 ], [ -122.773570311999961, 49.020194805000123 ], [ -122.772037515999941, 49.020190689000067 ], [ -122.771777618999963, 49.020189986000055 ], [ -122.771490459999924, 49.020189220000091 ], [ -122.771104819999906, 49.020188170000068 ], [ -122.768236814999952, 49.020191094000026 ], [ -122.768234986999971, 49.019829117 ], [ -122.768234415999942, 49.019712193000018 ], [ -122.76823212, 49.019262255000079 ], [ -122.768228293, 49.018497542000041 ], [ -122.768226199999944, 49.018076415000024 ], [ -122.768239392999973, 49.016563496000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92415637", "BldgCostT": "59007080", "sL_LossRatio": "0.707828150877224", "sL_AssetLoss": "1129130", "sL_BldgLoss": "799230", "sL_StrLoss": "392680", "sL_NStrLoss": "406550", "sL_ContLoss": "329900", "geom_point": "0101000020E61000002905FE6CFBB15EC02FD458CA4B824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782014712999953, 49.016572904000071 ], [ -122.783402004999942, 49.016573097000084 ], [ -122.783371893999941, 49.018396307000039 ], [ -122.782020293999906, 49.018393599000035 ], [ -122.780633603999931, 49.018383597000117 ], [ -122.780622611999959, 49.020207396000075 ], [ -122.779229484, 49.020209788000059 ], [ -122.779242289999928, 49.018381515 ], [ -122.779247351999942, 49.018025104000088 ], [ -122.779258333999962, 49.017251576 ], [ -122.779268114999979, 49.01656258900006 ], [ -122.779412094999898, 49.016563035000026 ], [ -122.780638715999928, 49.016566791000081 ], [ -122.782014712999953, 49.016572904000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133751832", "BldgCostT": "86383332", "sL_LossRatio": "0.701861966354358", "sL_AssetLoss": "2103690", "sL_BldgLoss": "1476500", "sL_StrLoss": "691040", "sL_NStrLoss": "785460", "sL_ContLoss": "627190", "geom_point": "0101000020E61000002315CFD111B25EC02158D1F69A824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.780622611999959, 49.020207396000075 ], [ -122.780633603999931, 49.018383597000117 ], [ -122.782020293999906, 49.018393599000035 ], [ -122.783371893999941, 49.018396307000039 ], [ -122.784766406999921, 49.018392191000011 ], [ -122.78472360799999, 49.020202408000046 ], [ -122.784942284999957, 49.020202696000098 ], [ -122.784939503999965, 49.022027586000071 ], [ -122.78419589399999, 49.022027906000076 ], [ -122.783573004999965, 49.022020912000123 ], [ -122.782128219999919, 49.022020002000033 ], [ -122.780634189999915, 49.022020198000078 ], [ -122.779232507999964, 49.022027692000073 ], [ -122.779229484, 49.020209788000059 ], [ -122.780622611999959, 49.020207396000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325458989", "BldgCostT": "221902585", "sL_LossRatio": "0.779702651953597", "sL_AssetLoss": "2332620", "sL_BldgLoss": "1818750", "sL_StrLoss": "931570", "sL_NStrLoss": "887180", "sL_ContLoss": "513870", "geom_point": "0101000020E610000069F0E8F34FB25EC00ACF857050824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78472360799999, 49.020202408000046 ], [ -122.784766406999921, 49.018392191000011 ], [ -122.783371893999941, 49.018396307000039 ], [ -122.783402004999942, 49.016573097000084 ], [ -122.784793583999956, 49.016569690000026 ], [ -122.786142492999929, 49.016570513000026 ], [ -122.787509092999969, 49.016573596000107 ], [ -122.788896814999973, 49.016567314000021 ], [ -122.788893693999952, 49.017367609000111 ], [ -122.788899187999931, 49.018378910000088 ], [ -122.787490895999937, 49.018386392000103 ], [ -122.787475388999937, 49.020199197000046 ], [ -122.786127119999904, 49.020186796000068 ], [ -122.784942284999957, 49.020202696000098 ], [ -122.78472360799999, 49.020202408000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159395667", "BldgCostT": "99641667", "sL_LossRatio": "0.695176550642101", "sL_AssetLoss": "2307270", "sL_BldgLoss": "1603960", "sL_StrLoss": "740580", "sL_NStrLoss": "863380", "sL_ContLoss": "703310", "geom_point": "0101000020E6100000A265FE4D7FB25EC002278007AB824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790139679999982, 49.022340987000064 ], [ -122.790144824, 49.022028393000028 ], [ -122.787479191999964, 49.022028899000084 ], [ -122.786156088999917, 49.022027987000101 ], [ -122.784939503999965, 49.022027586000071 ], [ -122.784942284999957, 49.020202696000098 ], [ -122.786127119999904, 49.020186796000068 ], [ -122.787475388999937, 49.020199197000046 ], [ -122.787490895999937, 49.018386392000103 ], [ -122.788899187999931, 49.018378910000088 ], [ -122.790182987999984, 49.018394802000067 ], [ -122.790197475999918, 49.019244816000032 ], [ -122.790209597999961, 49.019954797000075 ], [ -122.79014189599998, 49.020242984000028 ], [ -122.79094560599998, 49.020580677000076 ], [ -122.79185419399991, 49.020864711000044 ], [ -122.793617715999957, 49.021419389000066 ], [ -122.793044314999946, 49.022204388000048 ], [ -122.792428807999968, 49.02304490300007 ], [ -122.79062720099995, 49.022506993000114 ], [ -122.790139679999982, 49.022340987000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95131053", "BldgCostT": "63143746", "sL_LossRatio": "0.713957919596372", "sL_AssetLoss": "1490480", "sL_BldgLoss": "1064140", "sL_StrLoss": "461930", "sL_NStrLoss": "602210", "sL_ContLoss": "426340", "geom_point": "0101000020E61000006365241069B25EC01268240007834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787479191999964, 49.022028899000084 ], [ -122.790144824, 49.022028393000028 ], [ -122.790139679999982, 49.022340987000064 ], [ -122.79062720099995, 49.022506993000114 ], [ -122.792428807999968, 49.02304490300007 ], [ -122.791827912, 49.023851502000042 ], [ -122.790196682999934, 49.023816308000072 ], [ -122.79004305499997, 49.02381457200007 ], [ -122.789769594999925, 49.023811474000105 ], [ -122.788744694999963, 49.02379990300004 ], [ -122.788737006999952, 49.025640007000035 ], [ -122.787463199999962, 49.025636094000028 ], [ -122.78616059699999, 49.025632290000011 ], [ -122.784722799999926, 49.025627901000085 ], [ -122.784738997999952, 49.0239449070001 ], [ -122.784846002000037, 49.023800290000025 ], [ -122.784903321999963, 49.023702898000039 ], [ -122.784890990999941, 49.023247398000088 ], [ -122.784939503999965, 49.022027586000071 ], [ -122.786156088999917, 49.022027987000101 ], [ -122.787479191999964, 49.022028899000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93007416", "BldgCostT": "61461666", "sL_LossRatio": "0.712638366233137", "sL_AssetLoss": "1817640", "sL_BldgLoss": "1295320", "sL_StrLoss": "566460", "sL_NStrLoss": "728860", "sL_ContLoss": "522320", "geom_point": "0101000020E61000002FAE5C35B0B25EC0411249364F834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790184694999965, 49.026552988000027 ], [ -122.790219610999941, 49.025648292000035 ], [ -122.788737006999952, 49.025640007000035 ], [ -122.788744694999963, 49.02379990300004 ], [ -122.789769594999925, 49.023811474000105 ], [ -122.79004305499997, 49.02381457200007 ], [ -122.790196682999934, 49.023816308000072 ], [ -122.791827912, 49.023851502000042 ], [ -122.792732095999966, 49.023862395000052 ], [ -122.792677797999914, 49.024512287000036 ], [ -122.792577107999989, 49.02462470500015 ], [ -122.792225108999958, 49.024773701000051 ], [ -122.791249501999971, 49.025185180000115 ], [ -122.791108515999937, 49.025345894000139 ], [ -122.791073688, 49.025653990000102 ], [ -122.795668803999916, 49.025686813000029 ], [ -122.795667318999904, 49.026604200000044 ], [ -122.795692909999929, 49.027524209000021 ], [ -122.790182898999944, 49.027473989000072 ], [ -122.790184694999965, 49.026552988000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181749350", "BldgCostT": "116893206", "sL_LossRatio": "0.714710599641982", "sL_AssetLoss": "2513283", "sL_BldgLoss": "1796270", "sL_StrLoss": "742970", "sL_NStrLoss": "1053300", "sL_ContLoss": "717013", "geom_point": "0101000020E6100000CA354898D4B25EC0B4765FBE0A834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792677797999914, 49.024512287000036 ], [ -122.792732095999966, 49.023862395000052 ], [ -122.791827912, 49.023851502000042 ], [ -122.792428807999968, 49.02304490300007 ], [ -122.793044314999946, 49.022204388000048 ], [ -122.793617715999957, 49.021419389000066 ], [ -122.795459222999938, 49.02201250600011 ], [ -122.797258179999943, 49.022607787000041 ], [ -122.796702906999926, 49.023428496000058 ], [ -122.79636938599999, 49.023906094000075 ], [ -122.79568920599999, 49.02389749000011 ], [ -122.79566848899999, 49.024935103000068 ], [ -122.795668803999916, 49.025686813000029 ], [ -122.791073688, 49.025653990000102 ], [ -122.791108515999937, 49.025345894000139 ], [ -122.791249501999971, 49.025185180000115 ], [ -122.792225108999958, 49.024773701000051 ], [ -122.792577107999989, 49.02462470500015 ], [ -122.792677797999914, 49.024512287000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253387425", "BldgCostT": "170920126", "sL_LossRatio": "0.792926232373849", "sL_AssetLoss": "2574300", "sL_BldgLoss": "2041230", "sL_StrLoss": "905540", "sL_NStrLoss": "1135690", "sL_ContLoss": "533070", "geom_point": "0101000020E6100000D7185334FFB25EC0311D7C5941834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.797134176999947, 49.023895597000056 ], [ -122.798507097999931, 49.023929398000092 ], [ -122.798467303999956, 49.024051696000079 ], [ -122.798404295999944, 49.025706286000094 ], [ -122.797134882999927, 49.025697193000028 ], [ -122.797110800999974, 49.027541306000046 ], [ -122.795692909999929, 49.027524209000021 ], [ -122.795667318999904, 49.026604200000044 ], [ -122.795668803999916, 49.025686813000029 ], [ -122.79566848899999, 49.024935103000068 ], [ -122.79568920599999, 49.02389749000011 ], [ -122.79636938599999, 49.023906094000075 ], [ -122.797134176999947, 49.023895597000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "475972946", "BldgCostT": "326243067", "sL_LossRatio": "0.799047384051394", "sL_AssetLoss": "4539080", "sL_BldgLoss": "3626940", "sL_StrLoss": "1629960", "sL_NStrLoss": "1996980", "sL_ContLoss": "912140", "geom_point": "0101000020E6100000977C048229B35EC07F280B3E51834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800730109999947, 49.023874431000124 ], [ -122.80121029699994, 49.023879297000086 ], [ -122.801173893999959, 49.024012511000066 ], [ -122.801160689999961, 49.024781800000028 ], [ -122.801160617, 49.025740702000107 ], [ -122.80116051499999, 49.027575611000081 ], [ -122.800004264999984, 49.027557360000053 ], [ -122.799747087999961, 49.027553301000076 ], [ -122.798428298999966, 49.027547305000034 ], [ -122.797110800999974, 49.027541306000046 ], [ -122.797134882999927, 49.025697193000028 ], [ -122.798404295999944, 49.025706286000094 ], [ -122.798467303999956, 49.024051696000079 ], [ -122.798507097999931, 49.023929398000092 ], [ -122.798740909999978, 49.023936201000055 ], [ -122.799819493999948, 49.023967598000063 ], [ -122.800730109999947, 49.023874431000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417036114", "BldgCostT": "281221936", "sL_LossRatio": "0.791096650931263", "sL_AssetLoss": "4552579", "sL_BldgLoss": "3601530", "sL_StrLoss": "1600840", "sL_NStrLoss": "2000690", "sL_ContLoss": "951049", "geom_point": "0101000020E61000001A7708EB18B35EC079B0300AA3834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800004264999984, 49.027557360000053 ], [ -122.80116051499999, 49.027575611000081 ], [ -122.801165741999938, 49.027658690000074 ], [ -122.801109144999913, 49.027746232000027 ], [ -122.801111562999921, 49.029276554000106 ], [ -122.801111560999942, 49.029285623000099 ], [ -122.799999045, 49.029289936000055 ], [ -122.799748163999951, 49.02929091900009 ], [ -122.798423092999926, 49.029275694000027 ], [ -122.797121582999978, 49.029274700000038 ], [ -122.795662796999949, 49.029256393000054 ], [ -122.79568800699991, 49.028391987000084 ], [ -122.795692909999929, 49.027524209000021 ], [ -122.797110800999974, 49.027541306000046 ], [ -122.798428298999966, 49.027547305000034 ], [ -122.799747087999961, 49.027553301000076 ], [ -122.800004264999984, 49.027557360000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "512934578", "BldgCostT": "330297434", "sL_LossRatio": "0.731350499413083", "sL_AssetLoss": "5011783", "sL_BldgLoss": "3665370", "sL_StrLoss": "1635570", "sL_NStrLoss": "2029800", "sL_ContLoss": "1346413", "geom_point": "0101000020E6100000C1CFE23919B35EC07A5026C1DD834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795655982999961, 49.031085698 ], [ -122.795673225999948, 49.030198510000112 ], [ -122.795662796999949, 49.029256393000054 ], [ -122.797121582999978, 49.029274700000038 ], [ -122.798423092999926, 49.029275694000027 ], [ -122.799748163999951, 49.02929091900009 ], [ -122.799999045, 49.029289936000055 ], [ -122.801111560999942, 49.029285623000099 ], [ -122.801121129999956, 49.031059529000068 ], [ -122.801122359999908, 49.031181230000051 ], [ -122.800004998999967, 49.031172766000068 ], [ -122.799744932999914, 49.031170804000105 ], [ -122.798672135999965, 49.031164039 ], [ -122.798457717999966, 49.031100867000106 ], [ -122.797119746999954, 49.031093403000099 ], [ -122.795655982999961, 49.031085698 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "313961118", "BldgCostT": "188822157", "sL_LossRatio": "0.648414868210789", "sL_AssetLoss": "4419254", "sL_BldgLoss": "2865510", "sL_StrLoss": "1285980", "sL_NStrLoss": "1579530", "sL_ContLoss": "1553744", "geom_point": "0101000020E61000005082A3895CB35EC09401DA35A5834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80253431199999, 49.02574289600004 ], [ -122.80391250699995, 49.025739786000024 ], [ -122.803905975999967, 49.027609699000017 ], [ -122.803901018999952, 49.029278586 ], [ -122.803956291999953, 49.031065591000186 ], [ -122.803956174999939, 49.031189072000096 ], [ -122.801275299999986, 49.031183981000012 ], [ -122.801122359999908, 49.031181230000051 ], [ -122.801121129999956, 49.031059529000068 ], [ -122.801111560999942, 49.029285623000099 ], [ -122.801111562999921, 49.029276554000106 ], [ -122.801109144999913, 49.027746232000027 ], [ -122.801165741999938, 49.027658690000074 ], [ -122.80116051499999, 49.027575611000081 ], [ -122.801160617, 49.025740702000107 ], [ -122.80253431199999, 49.02574289600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316519154", "BldgCostT": "212981953", "sL_LossRatio": "0.828586464300439", "sL_AssetLoss": "2983370", "sL_BldgLoss": "2471980", "sL_StrLoss": "1116490", "sL_NStrLoss": "1355490", "sL_ContLoss": "511390", "geom_point": "0101000020E6100000850959CC7EB35EC0EF2D4036A4834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80391250699995, 49.025739786000024 ], [ -122.805320801999983, 49.025736711000107 ], [ -122.805314813999985, 49.027599308000056 ], [ -122.805312049999898, 49.028820514000074 ], [ -122.805306958999921, 49.03106703600011 ], [ -122.805311979999942, 49.031193382000076 ], [ -122.804441326999921, 49.031189987000104 ], [ -122.803956174999939, 49.031189072000096 ], [ -122.803956291999953, 49.031065591000186 ], [ -122.803901018999952, 49.029278586 ], [ -122.803905975999967, 49.027609699000017 ], [ -122.80391250699995, 49.025739786000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198577075", "BldgCostT": "128817904", "sL_LossRatio": "0.722540799404863", "sL_AssetLoss": "2580920", "sL_BldgLoss": "1864820", "sL_StrLoss": "812970", "sL_NStrLoss": "1051850", "sL_ContLoss": "716100", "geom_point": "0101000020E61000006953969D95B35EC0E2B23CD5C2834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.805306958999921, 49.03106703600011 ], [ -122.805312049999898, 49.028820514000074 ], [ -122.805314813999985, 49.027599308000056 ], [ -122.805940931999913, 49.027605012000066 ], [ -122.806709786999946, 49.027611998000026 ], [ -122.806711240999931, 49.028941126000085 ], [ -122.806712235999925, 49.029835364000107 ], [ -122.806712783999899, 49.030363591000082 ], [ -122.80669284799994, 49.031133530000012 ], [ -122.806081915, 49.031130671000028 ], [ -122.805886397000023, 49.031190632000047 ], [ -122.805340414999989, 49.031193232000135 ], [ -122.805311979999942, 49.031193382000076 ], [ -122.805306958999921, 49.03106703600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "730445031", "BldgCostT": "504643603", "sL_LossRatio": "0.85972805473355", "sL_AssetLoss": "5805580", "sL_BldgLoss": "4991220", "sL_StrLoss": "2368640", "sL_NStrLoss": "2622580", "sL_ContLoss": "814360", "geom_point": "0101000020E6100000AB7081BAB7B35EC0133390A1C2834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808755804999919, 49.02761880900006 ], [ -122.809459084, 49.027629803000075 ], [ -122.80947138499999, 49.028450308000089 ], [ -122.809471530999957, 49.028856197000032 ], [ -122.809471605999974, 49.029036062000031 ], [ -122.80947183499994, 49.029733344000071 ], [ -122.809471909999914, 49.02991321000011 ], [ -122.809472316999944, 49.031134208000068 ], [ -122.80669284799994, 49.031133530000012 ], [ -122.806712783999899, 49.030363591000082 ], [ -122.806712235999925, 49.029835364000107 ], [ -122.806711240999931, 49.028941126000085 ], [ -122.806709786999946, 49.027611998000026 ], [ -122.808106691999967, 49.02761481200006 ], [ -122.808755804999919, 49.02761880900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101897061", "BldgCostT": "66128190", "sL_LossRatio": "0.699417319670484", "sL_AssetLoss": "746550", "sL_BldgLoss": "522150", "sL_StrLoss": "223370", "sL_NStrLoss": "298780", "sL_ContLoss": "224400", "geom_point": "0101000020E6100000FA9BD4C0E4B35EC007891F29C3834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809459084, 49.027629803000075 ], [ -122.812182098, 49.027634088000077 ], [ -122.812175503999981, 49.027790697000107 ], [ -122.81218758899999, 49.028613010000029 ], [ -122.81219987299994, 49.029474091000033 ], [ -122.81222539, 49.030320195000101 ], [ -122.812219, 49.031154495000081 ], [ -122.809472316999944, 49.031134208000068 ], [ -122.809471909999914, 49.02991321000011 ], [ -122.80947183499994, 49.029733344000071 ], [ -122.809471605999974, 49.029036062000031 ], [ -122.809471530999957, 49.028856197000032 ], [ -122.80947138499999, 49.028450308000089 ], [ -122.809459084, 49.027629803000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132040206", "BldgCostT": "86904714", "sL_LossRatio": "0.718742005506544", "sL_AssetLoss": "1579212", "sL_BldgLoss": "1135046", "sL_StrLoss": "539556", "sL_NStrLoss": "595490", "sL_ContLoss": "444166", "geom_point": "0101000020E61000007D3FE21510B45EC00F3E39AF56834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81218758899999, 49.028613010000029 ], [ -122.812175503999981, 49.027790697000107 ], [ -122.812182098, 49.027634088000077 ], [ -122.812190687999987, 49.026967504000012 ], [ -122.812195591999952, 49.026136700000073 ], [ -122.812190864999963, 49.026015362000123 ], [ -122.812182186, 49.02579201 ], [ -122.812177723999966, 49.025298906000074 ], [ -122.812174441999943, 49.025225144000096 ], [ -122.812164205, 49.024995678000074 ], [ -122.812173702999971, 49.024416508000087 ], [ -122.812172591999953, 49.023933403000093 ], [ -122.812191286000015, 49.023498606000011 ], [ -122.812341889999928, 49.023295800000014 ], [ -122.814899990999933, 49.024069303000076 ], [ -122.814900909999906, 49.024213534000118 ], [ -122.8149023779999, 49.024453293000128 ], [ -122.814895006999933, 49.024943401000051 ], [ -122.814867304999936, 49.025147991000019 ], [ -122.814813301999976, 49.025238399000031 ], [ -122.814859206999984, 49.025272223000094 ], [ -122.814965748999953, 49.025333407000034 ], [ -122.815078377999939, 49.025366546000072 ], [ -122.814997035999966, 49.026093678000073 ], [ -122.814818808999945, 49.026978806000038 ], [ -122.814691782999944, 49.02781769700006 ], [ -122.814470192, 49.028660094000102 ], [ -122.814192888999955, 49.028636503000094 ], [ -122.81218758899999, 49.028613010000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182401719", "BldgCostT": "114510412", "sL_LossRatio": "0.712120276358177", "sL_AssetLoss": "2315401", "sL_BldgLoss": "1648844", "sL_StrLoss": "763884", "sL_NStrLoss": "884960", "sL_ContLoss": "666557", "geom_point": "0101000020E6100000BE14A12258B45EC0557602B3A5834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81218758899999, 49.028613010000029 ], [ -122.814192888999955, 49.028636503000094 ], [ -122.814470192, 49.028660094000102 ], [ -122.814691782999944, 49.02781769700006 ], [ -122.814818808999945, 49.026978806000038 ], [ -122.814997035999966, 49.026093678000073 ], [ -122.815078377999939, 49.025366546000072 ], [ -122.814965748999953, 49.025333407000034 ], [ -122.814859206999984, 49.025272223000094 ], [ -122.814813301999976, 49.025238399000031 ], [ -122.814867304999936, 49.025147991000019 ], [ -122.814895006999933, 49.024943401000051 ], [ -122.8149023779999, 49.024453293000128 ], [ -122.814900909999906, 49.024213534000118 ], [ -122.814899990999933, 49.024069303000076 ], [ -122.816506006999958, 49.024472109000058 ], [ -122.817769688999974, 49.024704193000083 ], [ -122.818544979999956, 49.024800191000104 ], [ -122.819428176999949, 49.024879597000023 ], [ -122.81949447199996, 49.025049195000044 ], [ -122.819502198999942, 49.025297192000039 ], [ -122.819410821999938, 49.025490576000031 ], [ -122.819406393999927, 49.02549990600005 ], [ -122.819401799999952, 49.025606995000047 ], [ -122.819381775999915, 49.026057688000044 ], [ -122.819368494999964, 49.026356715000077 ], [ -122.82017981099996, 49.026587207000063 ], [ -122.820754308999966, 49.026882709000056 ], [ -122.82331078299994, 49.027825300000075 ], [ -122.823312392999952, 49.028564386000085 ], [ -122.823313117999973, 49.02909520700009 ], [ -122.82327928899997, 49.030194594000058 ], [ -122.823275590999927, 49.030649601000079 ], [ -122.823280983999965, 49.031172496000053 ], [ -122.820291281999943, 49.031167795000094 ], [ -122.819323496999957, 49.03116518700012 ], [ -122.817595602999987, 49.031161795000038 ], [ -122.814932716999976, 49.031156696000053 ], [ -122.812219, 49.031154495000081 ], [ -122.81222539, 49.030320195000101 ], [ -122.81219987299994, 49.029474091000033 ], [ -122.81218758899999, 49.028613010000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84276584", "BldgCostT": "57178334", "sL_LossRatio": "0.731631061840701", "sL_AssetLoss": "1564067", "sL_BldgLoss": "1144320", "sL_StrLoss": "491520", "sL_NStrLoss": "652800", "sL_ContLoss": "419747", "geom_point": "0101000020E6100000F4EEA8944BB45EC0D0B6DC9118844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.820291281999943, 49.031167795000094 ], [ -122.823280983999965, 49.031172496000053 ], [ -122.82326400399991, 49.032084891000054 ], [ -122.820290803999939, 49.032077102000052 ], [ -122.820328620999959, 49.032986693000126 ], [ -122.818968798999919, 49.032977894000048 ], [ -122.817573491999937, 49.032968108000063 ], [ -122.816183014999964, 49.03297441000008 ], [ -122.814992694999944, 49.032979792000063 ], [ -122.812197199999943, 49.032973408000053 ], [ -122.812198849999959, 49.032835927000072 ], [ -122.812219, 49.031154495000081 ], [ -122.814932716999976, 49.031156696000053 ], [ -122.817595602999987, 49.031161795000038 ], [ -122.819323496999957, 49.03116518700012 ], [ -122.820291281999943, 49.031167795000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89404584", "BldgCostT": "61658334", "sL_LossRatio": "0.741460852522352", "sL_AssetLoss": "1702102", "sL_BldgLoss": "1262042", "sL_StrLoss": "548002", "sL_NStrLoss": "714040", "sL_ContLoss": "440060", "geom_point": "0101000020E61000000AC7873485B45EC01149364F5C844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.820290803999939, 49.032077102000052 ], [ -122.82326400399991, 49.032084891000054 ], [ -122.823283201999956, 49.033006593000067 ], [ -122.823281084999977, 49.033771002000087 ], [ -122.823280804999925, 49.033885199000075 ], [ -122.823271093999978, 49.034790599000054 ], [ -122.823273915999934, 49.035691902000032 ], [ -122.822589219999955, 49.035691472000067 ], [ -122.822122705999945, 49.03569118000005 ], [ -122.820334393999985, 49.035688703000076 ], [ -122.81759049599998, 49.03568489900006 ], [ -122.817590216999946, 49.035543225000026 ], [ -122.817588583999935, 49.034770996000105 ], [ -122.81757961299995, 49.033880306000128 ], [ -122.817573491999937, 49.032968108000063 ], [ -122.818968798999919, 49.032977894000048 ], [ -122.820328620999959, 49.032986693000126 ], [ -122.820290803999939, 49.032077102000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145777501", "BldgCostT": "96435001", "sL_LossRatio": "0.704610173812211", "sL_AssetLoss": "2573352", "sL_BldgLoss": "1813210", "sL_StrLoss": "821820", "sL_NStrLoss": "991390", "sL_ContLoss": "760142", "geom_point": "0101000020E610000060DF3585E1B45EC035D63009B8844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823297221999923, 49.038425451000073 ], [ -122.823298058999953, 49.038189089000163 ], [ -122.823238595999911, 49.038188998000045 ], [ -122.823266972999974, 49.037524043000055 ], [ -122.823278994999924, 49.037242091000053 ], [ -122.823273915999934, 49.035691902000032 ], [ -122.823271093999978, 49.034790599000054 ], [ -122.823509917999914, 49.034796784000015 ], [ -122.823771890999978, 49.034863984000019 ], [ -122.824112295, 49.035025499000014 ], [ -122.824386297999936, 49.035078687000052 ], [ -122.826170307999973, 49.035082811000073 ], [ -122.826432815999965, 49.035217294000049 ], [ -122.827282808999939, 49.035652792000086 ], [ -122.827466725999926, 49.035736536000066 ], [ -122.827691291999955, 49.035838813000105 ], [ -122.828080195999988, 49.035909807000074 ], [ -122.829996087999945, 49.035926706000133 ], [ -122.829992915999938, 49.036616002000066 ], [ -122.829913907999966, 49.03693360700008 ], [ -122.829456192999956, 49.037632114000118 ], [ -122.829409792999911, 49.038314476000082 ], [ -122.829401299999958, 49.038439710000084 ], [ -122.825307499999951, 49.038416985000012 ], [ -122.823297221999923, 49.038425451000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45576561", "BldgCostT": "30548190", "sL_LossRatio": "0.767377512500741", "sL_AssetLoss": "505970", "sL_BldgLoss": "388270", "sL_StrLoss": "203740", "sL_NStrLoss": "184530", "sL_ContLoss": "117700", "geom_point": "0101000020E6100000CA9428DE35B55EC0BFD9E6C674854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.8322548189999, 49.041710723000087 ], [ -122.832263816999927, 49.041578308000048 ], [ -122.831946528999964, 49.041568944000147 ], [ -122.832010884999946, 49.040621844000043 ], [ -122.83093275099999, 49.040590020000089 ], [ -122.830950214, 49.04033309800009 ], [ -122.830930665999915, 49.040332521000067 ], [ -122.831055604999918, 49.038494341000046 ], [ -122.830275059999948, 49.038491235000031 ], [ -122.830274215, 49.038739293000091 ], [ -122.828632317999933, 49.038736867000082 ], [ -122.828633176000025, 49.038486687000074 ], [ -122.826170340999923, 49.038482643000116 ], [ -122.82616946899995, 49.038733183000048 ], [ -122.823706622999964, 49.038729447000037 ], [ -122.823707458999934, 49.038492845000093 ], [ -122.823353134999962, 49.038495361000052 ], [ -122.823350562999948, 49.038459036000063 ], [ -122.823297102999902, 49.038458954000134 ], [ -122.823297221999923, 49.038425451000073 ], [ -122.825307499999951, 49.038416985000012 ], [ -122.829401299999958, 49.038439710000084 ], [ -122.831856192000018, 49.038439736000036 ], [ -122.83411364799997, 49.038439715000095 ], [ -122.834378604, 49.038439693000036 ], [ -122.8343857499999, 49.039148313000055 ], [ -122.834387996999936, 49.039368315000061 ], [ -122.834389282999922, 49.039499745000064 ], [ -122.834399091999913, 49.040514894000118 ], [ -122.834399800999961, 49.040650827000071 ], [ -122.834403282999958, 49.041325025000084 ], [ -122.834404537999916, 49.041568400000124 ], [ -122.834407018999983, 49.042049900000045 ], [ -122.834405202999903, 49.042351416 ], [ -122.834400079999938, 49.043220006000119 ], [ -122.834385231999974, 49.045733302000045 ], [ -122.834240025999975, 49.045732805000064 ], [ -122.831630101999963, 49.045724183000033 ], [ -122.828930424999925, 49.045715084000037 ], [ -122.828876403999985, 49.045714894000085 ], [ -122.826590415999959, 49.045701266000052 ], [ -122.826002111999941, 49.045697738000086 ], [ -122.82368204, 49.045683847000092 ], [ -122.823682772999945, 49.045476078000057 ], [ -122.827742914999988, 49.045482209000042 ], [ -122.82790555699998, 49.043091954000062 ], [ -122.828124352, 49.043098419000096 ], [ -122.828157072999915, 49.042617459000049 ], [ -122.829342541, 49.042652479000061 ], [ -122.829373048999969, 49.042203886000038 ], [ -122.831020340999942, 49.042252528000041 ], [ -122.831057506999983, 49.041705727000107 ], [ -122.831906041999929, 49.04173077200003 ], [ -122.83190611099991, 49.041710216000098 ], [ -122.8322548189999, 49.041710723000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102853311", "BldgCostT": "69368190", "sL_LossRatio": "0.753725793521305", "sL_AssetLoss": "1241145", "sL_BldgLoss": "935483", "sL_StrLoss": "467400", "sL_NStrLoss": "468083", "sL_ContLoss": "305662", "geom_point": "0101000020E6100000EFAD695A39B45EC08FAF7FCFF6844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812211911999938, 49.045657591000122 ], [ -122.812207742999988, 49.044862879000036 ], [ -122.812194572999942, 49.042353288000101 ], [ -122.812192903999986, 49.042035976000093 ], [ -122.812222194999961, 49.040667893000055 ], [ -122.812223314999954, 49.040446324000129 ], [ -122.812233702999933, 49.038379166 ], [ -122.812213017, 49.035681189000051 ], [ -122.812197199999943, 49.032973408000053 ], [ -122.814992694999944, 49.032979792000063 ], [ -122.816183014999964, 49.03297441000008 ], [ -122.817573491999937, 49.032968108000063 ], [ -122.81757961299995, 49.033880306000128 ], [ -122.817588583999935, 49.034770996000105 ], [ -122.817590216999946, 49.035543225000026 ], [ -122.81759049599998, 49.03568489900006 ], [ -122.820334393999985, 49.035688703000076 ], [ -122.822122705999945, 49.03569118000005 ], [ -122.822589219999955, 49.035691472000067 ], [ -122.823273915999934, 49.035691902000032 ], [ -122.823278994999924, 49.037242091000053 ], [ -122.823266972999974, 49.037524043000055 ], [ -122.823238595999911, 49.038188998000045 ], [ -122.819193360000028, 49.038182731000077 ], [ -122.81919243699997, 49.038437529000063 ], [ -122.819192380999979, 49.038452596000113 ], [ -122.818781908999966, 49.038451952000131 ], [ -122.818776027999917, 49.040071144000109 ], [ -122.818365541, 49.040070500000112 ], [ -122.818363575999939, 49.040610230000034 ], [ -122.81918455499999, 49.04061151800007 ], [ -122.81917966499995, 49.041960845000119 ], [ -122.817948160999904, 49.041958909000066 ], [ -122.817941266, 49.043847964000079 ], [ -122.817530749999932, 49.043847316000033 ], [ -122.817527786999946, 49.044656912000058 ], [ -122.814517480999911, 49.044652113000083 ], [ -122.814478933999979, 49.045216234000151 ], [ -122.81453951499999, 49.045218031000097 ], [ -122.814508964999945, 49.045665135 ], [ -122.812386214999918, 49.045658177000107 ], [ -122.812211911999938, 49.045657591000122 ] ], [ [ -122.813019932999936, 49.042542702000041 ], [ -122.81302012799992, 49.042490763000075 ], [ -122.81260962199994, 49.042490097000076 ], [ -122.812609469999984, 49.042530516000028 ], [ -122.813019932999936, 49.042542702000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156037583", "BldgCostT": "107348333", "sL_LossRatio": "0.744604333981185", "sL_AssetLoss": "2063230", "sL_BldgLoss": "1536290", "sL_StrLoss": "752420", "sL_NStrLoss": "783870", "sL_ContLoss": "526940", "geom_point": "0101000020E6100000AEBEDB3839B55EC067B32C9087844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.831077379999925, 49.032086998000054 ], [ -122.832207402000023, 49.032096901000052 ], [ -122.832447886999901, 49.032139199000028 ], [ -122.832671121999937, 49.032234103000093 ], [ -122.832839608, 49.032470688000018 ], [ -122.832848013999964, 49.032991794000061 ], [ -122.832884279999973, 49.033101102000053 ], [ -122.833106108999957, 49.033922292000113 ], [ -122.833134614999935, 49.03477120400003 ], [ -122.834136870999956, 49.034813310000054 ], [ -122.834353422999982, 49.034822394000102 ], [ -122.834371693999984, 49.03747340500005 ], [ -122.834378604, 49.038439693000036 ], [ -122.83411364799997, 49.038439715000095 ], [ -122.831856192000018, 49.038439736000036 ], [ -122.829401299999958, 49.038439710000084 ], [ -122.829409792999911, 49.038314476000082 ], [ -122.829456192999956, 49.037632114000118 ], [ -122.829913907999966, 49.03693360700008 ], [ -122.829992915999938, 49.036616002000066 ], [ -122.829996087999945, 49.035926706000133 ], [ -122.829982775999952, 49.035217097000086 ], [ -122.829969991, 49.035042695000108 ], [ -122.829893088999967, 49.034867408000132 ], [ -122.829581807999929, 49.034438311 ], [ -122.829024105999977, 49.033772888000023 ], [ -122.828390404999965, 49.033037687000146 ], [ -122.828272723999973, 49.032678300000057 ], [ -122.828226085999958, 49.032237994000063 ], [ -122.829439706999935, 49.032245003000064 ], [ -122.830164912999933, 49.032235802000095 ], [ -122.830732493999975, 49.032131793000062 ], [ -122.831077379999925, 49.032086998000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146653561", "BldgCostT": "99783190", "sL_LossRatio": "0.719892455688915", "sL_AssetLoss": "2807029", "sL_BldgLoss": "2020759", "sL_StrLoss": "907269", "sL_NStrLoss": "1113490", "sL_ContLoss": "786270", "geom_point": "0101000020E610000011E7F230FEB45EC0CFCACDA23D844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.826432815999965, 49.035217294000049 ], [ -122.826170307999973, 49.035082811000073 ], [ -122.824386297999936, 49.035078687000052 ], [ -122.824112295, 49.035025499000014 ], [ -122.823771890999978, 49.034863984000019 ], [ -122.823509917999914, 49.034796784000015 ], [ -122.823271093999978, 49.034790599000054 ], [ -122.823280804999925, 49.033885199000075 ], [ -122.823281084999977, 49.033771002000087 ], [ -122.823283201999956, 49.033006593000067 ], [ -122.82326400399991, 49.032084891000054 ], [ -122.823280983999965, 49.031172496000053 ], [ -122.824686283999966, 49.031175300000015 ], [ -122.82607449599999, 49.031166793000097 ], [ -122.828257403999928, 49.031173703 ], [ -122.830410904999951, 49.031171493000066 ], [ -122.834083064999959, 49.031190187000021 ], [ -122.834357884999946, 49.031191599000067 ], [ -122.834356658999951, 49.032169563000082 ], [ -122.834356438999947, 49.03234942600006 ], [ -122.834354584999915, 49.033852524000068 ], [ -122.834353422999982, 49.034822394000102 ], [ -122.834136870999956, 49.034813310000054 ], [ -122.833134614999935, 49.03477120400003 ], [ -122.833106108999957, 49.033922292000113 ], [ -122.832884279999973, 49.033101102000053 ], [ -122.832848013999964, 49.032991794000061 ], [ -122.832839608, 49.032470688000018 ], [ -122.832671121999937, 49.032234103000093 ], [ -122.832447886999901, 49.032139199000028 ], [ -122.832207402000023, 49.032096901000052 ], [ -122.831077379999925, 49.032086998000054 ], [ -122.830732493999975, 49.032131793000062 ], [ -122.830164912999933, 49.032235802000095 ], [ -122.829439706999935, 49.032245003000064 ], [ -122.828226085999958, 49.032237994000063 ], [ -122.828272723999973, 49.032678300000057 ], [ -122.828390404999965, 49.033037687000146 ], [ -122.829024105999977, 49.033772888000023 ], [ -122.829581807999929, 49.034438311 ], [ -122.829893088999967, 49.034867408000132 ], [ -122.829969991, 49.035042695000108 ], [ -122.829982775999952, 49.035217097000086 ], [ -122.829996087999945, 49.035926706000133 ], [ -122.828080195999988, 49.035909807000074 ], [ -122.827691291999955, 49.035838813000105 ], [ -122.827466725999926, 49.035736536000066 ], [ -122.827282808999939, 49.035652792000086 ], [ -122.826432815999965, 49.035217294000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157904166", "BldgCostT": "104166666", "sL_LossRatio": "0.69762175556131", "sL_AssetLoss": "3050990", "sL_BldgLoss": "2128437", "sL_StrLoss": "958852", "sL_NStrLoss": "1169585", "sL_ContLoss": "922553", "geom_point": "0101000020E6100000CA245D12EBB45EC0B05417F0B2834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823270696999955, 49.027109488000072 ], [ -122.823258906999953, 49.026439499000062 ], [ -122.823684306999937, 49.026556700000114 ], [ -122.824558591999931, 49.026625806000084 ], [ -122.824724781999947, 49.026693787000049 ], [ -122.824902217999963, 49.026758494000042 ], [ -122.826085596999974, 49.026785402000023 ], [ -122.826084516999984, 49.026581852000064 ], [ -122.82608408899992, 49.026506012000091 ], [ -122.830434711999914, 49.026697696000078 ], [ -122.830428506999965, 49.026864922000101 ], [ -122.830405182999968, 49.027493507000045 ], [ -122.830407208999972, 49.028008090000114 ], [ -122.830405615999922, 49.02845419000014 ], [ -122.830407738999952, 49.028570523 ], [ -122.83040807699993, 49.028588517000017 ], [ -122.830418315999935, 49.029151205000034 ], [ -122.830416245999942, 49.029329117000046 ], [ -122.830406298999918, 49.030193587000078 ], [ -122.830406624999938, 49.03026440800005 ], [ -122.830410904999951, 49.031171493000066 ], [ -122.828257403999928, 49.031173703 ], [ -122.82607449599999, 49.031166793000097 ], [ -122.824686283999966, 49.031175300000015 ], [ -122.823280983999965, 49.031172496000053 ], [ -122.823275590999927, 49.030649601000079 ], [ -122.82327928899997, 49.030194594000058 ], [ -122.823313117999973, 49.02909520700009 ], [ -122.823312392999952, 49.028564386000085 ], [ -122.82331078299994, 49.027825300000075 ], [ -122.823270696999955, 49.027109488000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144319052", "BldgCostT": "94088745", "sL_LossRatio": "0.706674387623784", "sL_AssetLoss": "2562722", "sL_BldgLoss": "1811010", "sL_StrLoss": "823880", "sL_NStrLoss": "987130", "sL_ContLoss": "751712", "geom_point": "0101000020E61000003DDE68F08CB55EC01CB3049DB9834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836808801999965, 49.027448982000081 ], [ -122.845438134999938, 49.027159602000047 ], [ -122.845443509999896, 49.027887886000052 ], [ -122.845444793999974, 49.028415208000084 ], [ -122.841044204999932, 49.028393885000035 ], [ -122.837403601999981, 49.028516489000019 ], [ -122.837403385999934, 49.029386111000072 ], [ -122.837393211999967, 49.030281589000033 ], [ -122.837400514999985, 49.031048035 ], [ -122.837401997999933, 49.031201111000073 ], [ -122.835977697999908, 49.03119609100002 ], [ -122.834357884999946, 49.031191599000067 ], [ -122.834083064999959, 49.031190187000021 ], [ -122.830410904999951, 49.031171493000066 ], [ -122.830406624999938, 49.03026440800005 ], [ -122.830406298999918, 49.030193587000078 ], [ -122.830416245999942, 49.029329117000046 ], [ -122.830418315999935, 49.029151205000034 ], [ -122.834449994999915, 49.029171094000041 ], [ -122.834465210999895, 49.028664095000124 ], [ -122.834491586999931, 49.028114286000083 ], [ -122.834460679999921, 49.027522203000103 ], [ -122.836808801999965, 49.027448982000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290362065", "BldgCostT": "187632696", "sL_LossRatio": "0.733469350818162", "sL_AssetLoss": "1823295", "sL_BldgLoss": "1337331", "sL_StrLoss": "644897", "sL_NStrLoss": "692434", "sL_ContLoss": "485964", "geom_point": "0101000020E610000018D496BEC0B55EC03E7EB9603A844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843840601999929, 49.031232085000113 ], [ -122.845413107999931, 49.031227803000093 ], [ -122.845433227999948, 49.032974710000147 ], [ -122.845434892999933, 49.033119798000065 ], [ -122.8454549, 49.034854604000031 ], [ -122.843946412999955, 49.034859809000046 ], [ -122.841912521, 49.03485140100009 ], [ -122.840448353999975, 49.034847782000057 ], [ -122.839748727999947, 49.034846046000091 ], [ -122.837200307, 49.034839687000023 ], [ -122.835329894999944, 49.034841250000092 ], [ -122.834673391999928, 49.034841795000077 ], [ -122.834503859999984, 49.034831522000118 ], [ -122.834353422999982, 49.034822394000102 ], [ -122.834354584999915, 49.033852524000068 ], [ -122.834356438999947, 49.03234942600006 ], [ -122.834356658999951, 49.032169563000082 ], [ -122.834357884999946, 49.031191599000067 ], [ -122.835977697999908, 49.03119609100002 ], [ -122.837401997999933, 49.031201111000073 ], [ -122.839230589999943, 49.031210814000076 ], [ -122.843840601999929, 49.031232085000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137268584", "BldgCostT": "87913334", "sL_LossRatio": "0.703739302863743", "sL_AssetLoss": "2476130", "sL_BldgLoss": "1742550", "sL_StrLoss": "736840", "sL_NStrLoss": "1005710", "sL_ContLoss": "733580", "geom_point": "0101000020E6100000A3AA8E24DAB55EC045F31142D1834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841044204999932, 49.028393885000035 ], [ -122.845444793999974, 49.028415208000084 ], [ -122.845409004999937, 49.028661085000095 ], [ -122.845418807000016, 49.029405684000018 ], [ -122.845422590999959, 49.030319709000082 ], [ -122.845414663999975, 49.031077437000128 ], [ -122.845413107999931, 49.031227803000093 ], [ -122.843840601999929, 49.031232085000113 ], [ -122.839230589999943, 49.031210814000076 ], [ -122.837401997999933, 49.031201111000073 ], [ -122.837400514999985, 49.031048035 ], [ -122.837393211999967, 49.030281589000033 ], [ -122.837403385999934, 49.029386111000072 ], [ -122.837403601999981, 49.028516489000019 ], [ -122.841044204999932, 49.028393885000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134975167", "BldgCostT": "89346667", "sL_LossRatio": "0.711055512981397", "sL_AssetLoss": "2538055", "sL_BldgLoss": "1804698", "sL_StrLoss": "822708", "sL_NStrLoss": "981990", "sL_ContLoss": "733357", "geom_point": "0101000020E6100000340B49A060B65EC0E1FA988BCF834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845418807000016, 49.029405684000018 ], [ -122.845409004999937, 49.028661085000095 ], [ -122.845444793999974, 49.028415208000084 ], [ -122.845443509999896, 49.027887886000052 ], [ -122.849245099999933, 49.027769793000118 ], [ -122.849249440999984, 49.027897378000041 ], [ -122.849280304999951, 49.028807200000109 ], [ -122.850795118999955, 49.028847199000019 ], [ -122.851920503999935, 49.028843309000081 ], [ -122.85205300299999, 49.02884350300009 ], [ -122.852630218999977, 49.028657699000128 ], [ -122.853078898999968, 49.028633004000021 ], [ -122.8543582, 49.028616407000129 ], [ -122.854481216999929, 49.028576780000037 ], [ -122.854487182999904, 49.029440300000054 ], [ -122.85449830599994, 49.030289583000098 ], [ -122.854493100999903, 49.031277993000053 ], [ -122.850854709999965, 49.031257989000039 ], [ -122.845413107999931, 49.031227803000093 ], [ -122.845414663999975, 49.031077437000128 ], [ -122.845422590999959, 49.030319709000082 ], [ -122.845418807000016, 49.029405684000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128180886", "BldgCostT": "86562079", "sL_LossRatio": "0.718876498322501", "sL_AssetLoss": "2378243", "sL_BldgLoss": "1709663", "sL_StrLoss": "771223", "sL_NStrLoss": "938440", "sL_ContLoss": "668580", "geom_point": "0101000020E61000007F3F1CC159B65EC0245F224165844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.8454549, 49.034854604000031 ], [ -122.845434892999933, 49.033119798000065 ], [ -122.845433227999948, 49.032974710000147 ], [ -122.845413107999931, 49.031227803000093 ], [ -122.850854709999965, 49.031257989000039 ], [ -122.854493100999903, 49.031277993000053 ], [ -122.856475809999893, 49.031293789000102 ], [ -122.856478720000013, 49.031636302000045 ], [ -122.856443690999981, 49.031810992000082 ], [ -122.856293387999983, 49.032052710000102 ], [ -122.8561084899999, 49.032259895000038 ], [ -122.85462380200002, 49.033496096000057 ], [ -122.854158690999981, 49.033316710000058 ], [ -122.853001681999956, 49.033119597000052 ], [ -122.85275149200001, 49.033079005000111 ], [ -122.852252502999974, 49.033078697000086 ], [ -122.851719202999945, 49.033181201000048 ], [ -122.851543995999975, 49.033244492000101 ], [ -122.851245616999961, 49.03337089300009 ], [ -122.850976003999932, 49.033578400000053 ], [ -122.850715707999939, 49.033828487000058 ], [ -122.850367790999925, 49.034465395 ], [ -122.850233404999955, 49.034592100000062 ], [ -122.849809974999957, 49.03478879400005 ], [ -122.849796339999941, 49.034790753000102 ], [ -122.849564210999958, 49.034823909000053 ], [ -122.850847743999935, 49.034822146000138 ], [ -122.851198887999971, 49.035379205000041 ], [ -122.850981497999953, 49.035561194000117 ], [ -122.85097414099999, 49.036247998000121 ], [ -122.850971929999957, 49.036454839000065 ], [ -122.850969912000011, 49.036645008000072 ], [ -122.850968300999938, 49.037273405000093 ], [ -122.850965509999924, 49.038370882000066 ], [ -122.850965242999919, 49.038495049000055 ], [ -122.849656291999935, 49.038490767000063 ], [ -122.847508695999977, 49.038483745000114 ], [ -122.846728834999936, 49.03848119200007 ], [ -122.845438176999949, 49.038476939000162 ], [ -122.845444674999953, 49.036663013000044 ], [ -122.845453929, 49.035026341000112 ], [ -122.8454549, 49.034854604000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57406167", "BldgCostT": "39326667", "sL_LossRatio": "0.716725103229053", "sL_AssetLoss": "1252070", "sL_BldgLoss": "897390", "sL_StrLoss": "407690", "sL_NStrLoss": "489700", "sL_ContLoss": "354680", "geom_point": "0101000020E6100000AE8F14B2AFB65EC0B91A766B5B844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85153697899996, 49.036057559 ], [ -122.850981497999953, 49.035561194000117 ], [ -122.851198887999971, 49.035379205000041 ], [ -122.850847743999935, 49.034822146000138 ], [ -122.849564210999958, 49.034823909000053 ], [ -122.849796339999941, 49.034790753000102 ], [ -122.849809974999957, 49.03478879400005 ], [ -122.850233404999955, 49.034592100000062 ], [ -122.850367790999925, 49.034465395 ], [ -122.850715707999939, 49.033828487000058 ], [ -122.850976003999932, 49.033578400000053 ], [ -122.851245616999961, 49.03337089300009 ], [ -122.851543995999975, 49.033244492000101 ], [ -122.851719202999945, 49.033181201000048 ], [ -122.852252502999974, 49.033078697000086 ], [ -122.85275149200001, 49.033079005000111 ], [ -122.853001681999956, 49.033119597000052 ], [ -122.854158690999981, 49.033316710000058 ], [ -122.85462380200002, 49.033496096000057 ], [ -122.8561084899999, 49.032259895000038 ], [ -122.856293387999983, 49.032052710000102 ], [ -122.856443690999981, 49.031810992000082 ], [ -122.857170185999934, 49.031823293000123 ], [ -122.857601322999955, 49.031878296000045 ], [ -122.857912519999928, 49.031966708000041 ], [ -122.858159380999936, 49.032117199000069 ], [ -122.858386131999907, 49.032262598000031 ], [ -122.858535701999969, 49.032518401000083 ], [ -122.858583081999925, 49.032728010000021 ], [ -122.85858092700002, 49.033470498000078 ], [ -122.858408594999958, 49.033795298000122 ], [ -122.858101078999979, 49.034037793000067 ], [ -122.857084894999957, 49.0344676100001 ], [ -122.856567303999938, 49.034682288000063 ], [ -122.855709009999913, 49.034941002000039 ], [ -122.855118387999966, 49.03510210200006 ], [ -122.854797288999933, 49.035281994000101 ], [ -122.854598683999967, 49.035489700000014 ], [ -122.85445848199997, 49.035703697000081 ], [ -122.854403105999921, 49.035855291000104 ], [ -122.853606393999883, 49.035808492000058 ], [ -122.853324906999902, 49.035826396000076 ], [ -122.85304460199994, 49.035887592000087 ], [ -122.852250594999987, 49.036165305000075 ], [ -122.85153697899996, 49.036057559 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63609084", "BldgCostT": "43868334", "sL_LossRatio": "0.735856678668657", "sL_AssetLoss": "1138700", "sL_BldgLoss": "837920", "sL_StrLoss": "382070", "sL_NStrLoss": "455850", "sL_ContLoss": "300780", "geom_point": "0101000020E6100000D20C2DDB9CB65EC03AD993E1F4844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85097414099999, 49.036247998000121 ], [ -122.850981497999953, 49.035561194000117 ], [ -122.85153697899996, 49.036057559 ], [ -122.852250594999987, 49.036165305000075 ], [ -122.85304460199994, 49.035887592000087 ], [ -122.853324906999902, 49.035826396000076 ], [ -122.853606393999883, 49.035808492000058 ], [ -122.854403105999921, 49.035855291000104 ], [ -122.854367298999961, 49.036001201000019 ], [ -122.854393083999966, 49.036267792000103 ], [ -122.854510419999912, 49.036494702000027 ], [ -122.854749510999937, 49.036801795000031 ], [ -122.855129986999927, 49.037039114000017 ], [ -122.855359918999937, 49.037239601000067 ], [ -122.85556190199999, 49.037426705000051 ], [ -122.855773218999957, 49.037760895000083 ], [ -122.855805306999983, 49.038095286000051 ], [ -122.855742402999937, 49.038501703000101 ], [ -122.855744616, 49.038574647000083 ], [ -122.855748217000013, 49.038691740000118 ], [ -122.85575857799995, 49.039032103000096 ], [ -122.855675244999972, 49.039294455000082 ], [ -122.855588389999966, 49.039567805000019 ], [ -122.855588873999963, 49.039722800000042 ], [ -122.85558620599997, 49.040112861000068 ], [ -122.855582202999969, 49.040694084000073 ], [ -122.855508113999946, 49.04102268700008 ], [ -122.855288607999952, 49.041275792000121 ], [ -122.85477988099997, 49.041520410000082 ], [ -122.854421381999927, 49.041563992000121 ], [ -122.853930459999972, 49.041563783000086 ], [ -122.853765000999957, 49.041563687000078 ], [ -122.853232589999934, 49.041563530000069 ], [ -122.852271801999933, 49.041563209000046 ], [ -122.851946782999946, 49.041475204000079 ], [ -122.85176260799993, 49.041348186000036 ], [ -122.851620486999977, 49.041183606000104 ], [ -122.851593198999964, 49.040692536 ], [ -122.85159150899996, 49.040661894000081 ], [ -122.851565620999963, 49.03997170700012 ], [ -122.851489020999963, 49.039749506000128 ], [ -122.851136900999947, 49.039192212000017 ], [ -122.850988915999977, 49.038792204000153 ], [ -122.85096591099996, 49.038504004000067 ], [ -122.850965242999919, 49.038495049000055 ], [ -122.850965509999924, 49.038370882000066 ], [ -122.850968300999938, 49.037273405000093 ], [ -122.850969912000011, 49.036645008000072 ], [ -122.850971929999957, 49.036454839000065 ], [ -122.85097414099999, 49.036247998000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111977750", "BldgCostT": "75755000", "sL_LossRatio": "0.719710714931199", "sL_AssetLoss": "1853535", "sL_BldgLoss": "1334009", "sL_StrLoss": "629470", "sL_NStrLoss": "704539", "sL_ContLoss": "519526", "geom_point": "0101000020E61000005FBFCBD2EFB65EC0E83A6435A3844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.857760929, 49.038604741000078 ], [ -122.857763394999935, 49.038500505000066 ], [ -122.855742402999937, 49.038501703000101 ], [ -122.855805306999983, 49.038095286000051 ], [ -122.855773218999957, 49.037760895000083 ], [ -122.85556190199999, 49.037426705000051 ], [ -122.855359918999937, 49.037239601000067 ], [ -122.855129986999927, 49.037039114000017 ], [ -122.854749510999937, 49.036801795000031 ], [ -122.854510419999912, 49.036494702000027 ], [ -122.854393083999966, 49.036267792000103 ], [ -122.854367298999961, 49.036001201000019 ], [ -122.854403105999921, 49.035855291000104 ], [ -122.85445848199997, 49.035703697000081 ], [ -122.854598683999967, 49.035489700000014 ], [ -122.854797288999933, 49.035281994000101 ], [ -122.855118387999966, 49.03510210200006 ], [ -122.855709009999913, 49.034941002000039 ], [ -122.856567303999938, 49.034682288000063 ], [ -122.857084894999957, 49.0344676100001 ], [ -122.858101078999979, 49.034037793000067 ], [ -122.858408594999958, 49.033795298000122 ], [ -122.85858092700002, 49.033470498000078 ], [ -122.858583081999925, 49.032728010000021 ], [ -122.858535701999969, 49.032518401000083 ], [ -122.858386131999907, 49.032262598000031 ], [ -122.858159380999936, 49.032117199000069 ], [ -122.857912519999928, 49.031966708000041 ], [ -122.857601322999955, 49.031878296000045 ], [ -122.857170185999934, 49.031823293000123 ], [ -122.856443690999981, 49.031810992000082 ], [ -122.856478720000013, 49.031636302000045 ], [ -122.856475809999893, 49.031293789000102 ], [ -122.859244377999971, 49.031291896000049 ], [ -122.862019821000018, 49.031291104000061 ], [ -122.862012127999932, 49.03170985200007 ], [ -122.862000897999906, 49.032323297000012 ], [ -122.861601804999921, 49.03232158400008 ], [ -122.861138498999978, 49.032238606000114 ], [ -122.860834388999962, 49.032227 ], [ -122.860555102999967, 49.032273800000056 ], [ -122.86015588399998, 49.032414496000108 ], [ -122.85997338599999, 49.032628101000093 ], [ -122.859878290999958, 49.032821806000108 ], [ -122.85986881, 49.033063906000045 ], [ -122.859846998999927, 49.033713104000086 ], [ -122.859874315999917, 49.033895886000103 ], [ -122.859979586999955, 49.03401789400008 ], [ -122.860307094999939, 49.034291588000045 ], [ -122.860581778999943, 49.034414997000027 ], [ -122.860889023999945, 49.034461809000064 ], [ -122.86198830299999, 49.034482187000073 ], [ -122.86197037699999, 49.03486920100007 ], [ -122.861882599999944, 49.035137890000094 ], [ -122.861509794999947, 49.035496493000046 ], [ -122.861193588999981, 49.035645019000121 ], [ -122.860676921, 49.035886706000056 ], [ -122.859906804999966, 49.036114708000092 ], [ -122.859831313, 49.036828908000047 ], [ -122.859779095999968, 49.037239205000034 ], [ -122.859841996999975, 49.037686314000112 ], [ -122.859855077999981, 49.038506742000038 ], [ -122.859860548999947, 49.038790776000013 ], [ -122.859942884999938, 49.039070743000096 ], [ -122.859930459999973, 49.039478610000074 ], [ -122.859912996999952, 49.040549594000026 ], [ -122.859908804999947, 49.041059601000015 ], [ -122.85983519899996, 49.04133948700008 ], [ -122.859758427999935, 49.041396530000057 ], [ -122.859508410999979, 49.041582291000033 ], [ -122.859239175999946, 49.041709578000045 ], [ -122.859203396999931, 49.041726491000055 ], [ -122.859113779999944, 49.041751078000033 ], [ -122.858817396999967, 49.041832392000039 ], [ -122.858501, 49.041820382000076 ], [ -122.858084178999931, 49.041755997000031 ], [ -122.85778990199999, 49.041596902000101 ], [ -122.857509289999939, 49.041398501000053 ], [ -122.857341983999945, 49.04124310300012 ], [ -122.857215796999952, 49.041045699000023 ], [ -122.857160194999892, 49.040857498000079 ], [ -122.857177904999915, 49.040554286000024 ], [ -122.85727482599999, 49.040231800000043 ], [ -122.857735996999921, 49.039657684000069 ], [ -122.857760929, 49.038604741000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124927833", "BldgCostT": "85893333", "sL_LossRatio": "0.727923113426296", "sL_AssetLoss": "2408639", "sL_BldgLoss": "1753304", "sL_StrLoss": "812382", "sL_NStrLoss": "940922", "sL_ContLoss": "655335", "geom_point": "0101000020E61000002CAFE81848B75EC0C371E846BB844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861509794999947, 49.035496493000046 ], [ -122.861882599999944, 49.035137890000094 ], [ -122.862588179999946, 49.035319809000022 ], [ -122.862924390000018, 49.035321600000088 ], [ -122.864740679999926, 49.035334095000017 ], [ -122.866223294999926, 49.03534759000005 ], [ -122.867498680999958, 49.03535150400009 ], [ -122.867472899999953, 49.038522954000065 ], [ -122.864851291999969, 49.038518785000051 ], [ -122.86404531399991, 49.038517503000065 ], [ -122.862651867999958, 49.038498402000094 ], [ -122.862221072999958, 49.038499690000059 ], [ -122.859855077999981, 49.038506742000038 ], [ -122.859841996999975, 49.037686314000112 ], [ -122.859779095999968, 49.037239205000034 ], [ -122.859831313, 49.036828908000047 ], [ -122.859906804999966, 49.036114708000092 ], [ -122.860676921, 49.035886706000056 ], [ -122.861193588999981, 49.035645019000121 ], [ -122.861509794999947, 49.035496493000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "456632506", "BldgCostT": "302439262", "sL_LossRatio": "0.723701066807062", "sL_AssetLoss": "6689682", "sL_BldgLoss": "4841330", "sL_StrLoss": "1948330", "sL_NStrLoss": "2893000", "sL_ContLoss": "1848352", "geom_point": "0101000020E610000016D8AF434EB75EC0439B91DE43844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86197037699999, 49.03486920100007 ], [ -122.86198830299999, 49.034482187000073 ], [ -122.860889023999945, 49.034461809000064 ], [ -122.860581778999943, 49.034414997000027 ], [ -122.860307094999939, 49.034291588000045 ], [ -122.859979586999955, 49.03401789400008 ], [ -122.859874315999917, 49.033895886000103 ], [ -122.859846998999927, 49.033713104000086 ], [ -122.85986881, 49.033063906000045 ], [ -122.859878290999958, 49.032821806000108 ], [ -122.85997338599999, 49.032628101000093 ], [ -122.86015588399998, 49.032414496000108 ], [ -122.860555102999967, 49.032273800000056 ], [ -122.860834388999962, 49.032227 ], [ -122.861138498999978, 49.032238606000114 ], [ -122.861601804999921, 49.03232158400008 ], [ -122.862000897999906, 49.032323297000012 ], [ -122.862012127999932, 49.03170985200007 ], [ -122.862019821000018, 49.031291104000061 ], [ -122.864754071999982, 49.031304530000085 ], [ -122.865357304999975, 49.031307495000149 ], [ -122.866448412999901, 49.031305110000098 ], [ -122.86756279599993, 49.031302508000088 ], [ -122.867527802999945, 49.033085895000063 ], [ -122.867520919999919, 49.034396934000092 ], [ -122.867519116, 49.034741998000108 ], [ -122.867498680999958, 49.03535150400009 ], [ -122.866223294999926, 49.03534759000005 ], [ -122.864740679999926, 49.035334095000017 ], [ -122.862924390000018, 49.035321600000088 ], [ -122.862588179999946, 49.035319809000022 ], [ -122.861882599999944, 49.035137890000094 ], [ -122.86197037699999, 49.03486920100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "406245312", "BldgCostT": "267073191", "sL_LossRatio": "0.72985098994036", "sL_AssetLoss": "4961410", "sL_BldgLoss": "3621090", "sL_StrLoss": "1635300", "sL_NStrLoss": "1985790", "sL_ContLoss": "1340320", "geom_point": "0101000020E6100000E6651BF2AEB75EC0FE79A58F6D844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867527802999945, 49.033085895000063 ], [ -122.86756279599993, 49.031302508000088 ], [ -122.86936490699999, 49.031302700000055 ], [ -122.870185735999925, 49.031302783000044 ], [ -122.870443380999987, 49.031302812000064 ], [ -122.870428137999951, 49.031800414000067 ], [ -122.870389291999984, 49.03306570700007 ], [ -122.872215981999886, 49.033109127000024 ], [ -122.872236191, 49.03310961500005 ], [ -122.873268114000027, 49.03310846000003 ], [ -122.873310805999964, 49.033232009000066 ], [ -122.874454213999982, 49.033878095 ], [ -122.87533739399997, 49.034838313000115 ], [ -122.873171461999931, 49.034817232000087 ], [ -122.872500777999932, 49.034810705 ], [ -122.872526090999926, 49.036696683000081 ], [ -122.870370007999966, 49.036673498000049 ], [ -122.869012092999952, 49.036636599000055 ], [ -122.869011186999927, 49.038542609000061 ], [ -122.867472899999953, 49.038522954000065 ], [ -122.867498680999958, 49.03535150400009 ], [ -122.867519116, 49.034741998000108 ], [ -122.867520919999919, 49.034396934000092 ], [ -122.867527802999945, 49.033085895000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183086501", "BldgCostT": "124240001", "sL_LossRatio": "0.771616016785605", "sL_AssetLoss": "2560289", "sL_BldgLoss": "1975560", "sL_StrLoss": "857140", "sL_NStrLoss": "1118420", "sL_ContLoss": "584729", "geom_point": "0101000020E6100000E422BE13B3B75EC0C40FDFD3E6834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.870428137999951, 49.031800414000067 ], [ -122.870443380999987, 49.031302812000064 ], [ -122.870185735999925, 49.031302783000044 ], [ -122.86936490699999, 49.031302700000055 ], [ -122.86756279599993, 49.031302508000088 ], [ -122.867577618, 49.030554102000089 ], [ -122.867558517999925, 49.029819903000096 ], [ -122.867554901999981, 49.029079904000064 ], [ -122.867548620000022, 49.028767007000106 ], [ -122.867546768999915, 49.02863972800003 ], [ -122.867544255999945, 49.028461264000057 ], [ -122.868458754999949, 49.028456061000085 ], [ -122.869950384999981, 49.02840269899999 ], [ -122.872047485999943, 49.028421500000071 ], [ -122.872054292999948, 49.029135519000107 ], [ -122.872058216999974, 49.029852 ], [ -122.872057508999944, 49.030575680000034 ], [ -122.872058526999979, 49.031315600000063 ], [ -122.872650106999984, 49.031320196000124 ], [ -122.87281649, 49.03180172500003 ], [ -122.873038040999944, 49.032442790000026 ], [ -122.873268114000027, 49.03310846000003 ], [ -122.872236191, 49.03310961500005 ], [ -122.872215981999886, 49.033109127000024 ], [ -122.870389291999984, 49.03306570700007 ], [ -122.870428137999951, 49.031800414000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152011077", "BldgCostT": "95922409", "sL_LossRatio": "0.69231577459992", "sL_AssetLoss": "2760070", "sL_BldgLoss": "1910840", "sL_StrLoss": "774710", "sL_NStrLoss": "1136130", "sL_ContLoss": "849230", "geom_point": "0101000020E610000054AB1A4A4EB75EC09A9A6F0ACC834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867364704999943, 49.027203372000045 ], [ -122.867526393000034, 49.027204594000132 ], [ -122.867544255999945, 49.028461264000057 ], [ -122.867546768999915, 49.02863972800003 ], [ -122.867548620000022, 49.028767007000106 ], [ -122.867554901999981, 49.029079904000064 ], [ -122.867558517999925, 49.029819903000096 ], [ -122.867577618, 49.030554102000089 ], [ -122.86756279599993, 49.031302508000088 ], [ -122.866448412999901, 49.031305110000098 ], [ -122.865357304999975, 49.031307495000149 ], [ -122.864754071999982, 49.031304530000085 ], [ -122.862019821000018, 49.031291104000061 ], [ -122.859244377999971, 49.031291896000049 ], [ -122.859255819999973, 49.03035230600009 ], [ -122.859264507999924, 49.029451393000087 ], [ -122.862026197999953, 49.029449216000067 ], [ -122.862024987999973, 49.029406833000046 ], [ -122.862005809999957, 49.028735799000088 ], [ -122.863127203, 49.028729796000079 ], [ -122.864228995999923, 49.028731395000108 ], [ -122.864235912999973, 49.027184195000089 ], [ -122.865323381999985, 49.027194395000073 ], [ -122.866442908999929, 49.027196403000097 ], [ -122.867364704999943, 49.027203372000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330683511", "BldgCostT": "224640403", "sL_LossRatio": "0.803421988230989", "sL_AssetLoss": "2994984", "sL_BldgLoss": "2406236", "sL_StrLoss": "1083360", "sL_NStrLoss": "1322876", "sL_ContLoss": "588748", "geom_point": "0101000020E610000061D751303EB75EC0C0E4A9BB70834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.862005795999949, 49.02855371200009 ], [ -122.86202399699998, 49.027653104000073 ], [ -122.859283372000021, 49.027647692000137 ], [ -122.859278, 49.026884808000055 ], [ -122.859276882999922, 49.026730095000097 ], [ -122.85930162399994, 49.025855703000047 ], [ -122.86188280499999, 49.02585100600006 ], [ -122.862041075000022, 49.025794397000027 ], [ -122.862178378999943, 49.025765100000129 ], [ -122.863155483999961, 49.025768409000115 ], [ -122.864250392999921, 49.025769791000073 ], [ -122.865321881999961, 49.025773101000027 ], [ -122.866456075999963, 49.025779202000123 ], [ -122.867536593999958, 49.025790013000048 ], [ -122.867526393000034, 49.027204594000132 ], [ -122.867364704999943, 49.027203372000045 ], [ -122.866442908999929, 49.027196403000097 ], [ -122.865323381999985, 49.027194395000073 ], [ -122.864235912999973, 49.027184195000089 ], [ -122.864228995999923, 49.028731395000108 ], [ -122.863127203, 49.028729796000079 ], [ -122.862005809999957, 49.028735799000088 ], [ -122.862005795999949, 49.02855371200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109240500", "BldgCostT": "72840000", "sL_LossRatio": "0.73082314339412", "sL_AssetLoss": "1754263", "sL_BldgLoss": "1282056", "sL_StrLoss": "584385", "sL_NStrLoss": "697671", "sL_ContLoss": "472207", "geom_point": "0101000020E6100000203B98E2E4B65EC0A11211DDB7834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856549899999933, 49.027638896000042 ], [ -122.856552787999973, 49.027555106000079 ], [ -122.856148017999928, 49.026807493000057 ], [ -122.859276882999922, 49.026730095000097 ], [ -122.859278, 49.026884808000055 ], [ -122.859283372000021, 49.027647692000137 ], [ -122.86202399699998, 49.027653104000073 ], [ -122.862005795999949, 49.02855371200009 ], [ -122.862005809999957, 49.028735799000088 ], [ -122.862024987999973, 49.029406833000046 ], [ -122.862026197999953, 49.029449216000067 ], [ -122.859264507999924, 49.029451393000087 ], [ -122.859255819999973, 49.03035230600009 ], [ -122.859244377999971, 49.031291896000049 ], [ -122.856475809999893, 49.031293789000102 ], [ -122.854493100999903, 49.031277993000053 ], [ -122.85449830599994, 49.030289583000098 ], [ -122.854487182999904, 49.029440300000054 ], [ -122.854481216999929, 49.028576780000037 ], [ -122.854462907, 49.027632685000079 ], [ -122.856549899999933, 49.027638896000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163648833", "BldgCostT": "108648333", "sL_LossRatio": "0.752834570290764", "sL_AssetLoss": "1626437", "sL_BldgLoss": "1224438", "sL_StrLoss": "655892", "sL_NStrLoss": "568546", "sL_ContLoss": "401999", "geom_point": "0101000020E61000004D7C18CEB3B65EC05456474C58834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.849249440999984, 49.027897378000041 ], [ -122.849245099999933, 49.027769793000118 ], [ -122.845443509999896, 49.027887886000052 ], [ -122.845438134999938, 49.027159602000047 ], [ -122.845459824999978, 49.026394211000053 ], [ -122.845508701999933, 49.025244963000091 ], [ -122.845508698999978, 49.025243604000117 ], [ -122.846009735999957, 49.025220562000058 ], [ -122.846662882999937, 49.02526887800007 ], [ -122.849607218999935, 49.025272751000031 ], [ -122.849606406999925, 49.025542617000077 ], [ -122.850005626999987, 49.025543137000049 ], [ -122.850016995999965, 49.025468883000094 ], [ -122.850017481999942, 49.025307068000075 ], [ -122.849927934999982, 49.025146362000058 ], [ -122.84994843599999, 49.025090361000117 ], [ -122.850018141999954, 49.025087770000063 ], [ -122.850019205999956, 49.0247335520001 ], [ -122.849608845999938, 49.024733018000077 ], [ -122.849609275999953, 49.024590095000072 ], [ -122.853048876999949, 49.024627894000048 ], [ -122.854537221999962, 49.024581493000071 ], [ -122.854806615999948, 49.02457309100005 ], [ -122.855016585999948, 49.024566547000042 ], [ -122.85523879099999, 49.024559612000118 ], [ -122.857727212999947, 49.024597990000082 ], [ -122.859013893999958, 49.02455530800006 ], [ -122.859087849999952, 49.024546780000037 ], [ -122.861115402999985, 49.024312604000059 ], [ -122.861258315999962, 49.024296095000096 ], [ -122.863651121999965, 49.024155101000147 ], [ -122.86388496799999, 49.024166768 ], [ -122.865335487999971, 49.02423910100007 ], [ -122.866630015999974, 49.024399199000086 ], [ -122.866729609999965, 49.024411506000071 ], [ -122.867787960999962, 49.024690977000077 ], [ -122.867775121999941, 49.024737516000108 ], [ -122.867756929999942, 49.024803385000105 ], [ -122.867608091999941, 49.025263752000058 ], [ -122.867541760999984, 49.025511952000066 ], [ -122.867536593999958, 49.025790013000048 ], [ -122.866456075999963, 49.025779202000123 ], [ -122.865321881999961, 49.025773101000027 ], [ -122.864250392999921, 49.025769791000073 ], [ -122.863155483999961, 49.025768409000115 ], [ -122.862178378999943, 49.025765100000129 ], [ -122.862041075000022, 49.025794397000027 ], [ -122.86188280499999, 49.02585100600006 ], [ -122.85930162399994, 49.025855703000047 ], [ -122.859276882999922, 49.026730095000097 ], [ -122.856148017999928, 49.026807493000057 ], [ -122.856552787999973, 49.027555106000079 ], [ -122.856549899999933, 49.027638896000042 ], [ -122.854462907, 49.027632685000079 ], [ -122.854481216999929, 49.028576780000037 ], [ -122.8543582, 49.028616407000129 ], [ -122.853078898999968, 49.028633004000021 ], [ -122.852630218999977, 49.028657699000128 ], [ -122.85205300299999, 49.02884350300009 ], [ -122.851920503999935, 49.028843309000081 ], [ -122.850795118999955, 49.028847199000019 ], [ -122.849280304999951, 49.028807200000109 ], [ -122.849249440999984, 49.027897378000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.780054644808743", "sL_AssetLoss": "7320", "sL_BldgLoss": "5710", "sL_StrLoss": "2710", "sL_NStrLoss": "3000", "sL_ContLoss": "1610", "geom_point": "0101000020E610000050B9B2D90BB65EC0932DFD1127834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843872590999922, 49.024526799000071 ], [ -122.845095467999926, 49.02454032100006 ], [ -122.84509488899999, 49.024727047000084 ], [ -122.843863807999966, 49.024725388000064 ], [ -122.843864428999964, 49.024527219 ], [ -122.843872590999922, 49.024526799000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124575250", "BldgCostT": "82075000", "sL_LossRatio": "0.742201611253531", "sL_AssetLoss": "1378554", "sL_BldgLoss": "1023165", "sL_StrLoss": "499951", "sL_NStrLoss": "523214", "sL_ContLoss": "355389", "geom_point": "0101000020E61000007936BB2028B55EC0A131307E5C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.830434711999914, 49.026697696000078 ], [ -122.82608408899992, 49.026506012000091 ], [ -122.826084516999984, 49.026581852000064 ], [ -122.826085596999974, 49.026785402000023 ], [ -122.824902217999963, 49.026758494000042 ], [ -122.824724781999947, 49.026693787000049 ], [ -122.824558591999931, 49.026625806000084 ], [ -122.823684306999937, 49.026556700000114 ], [ -122.823258906999953, 49.026439499000062 ], [ -122.823270696999955, 49.027109488000072 ], [ -122.82331078299994, 49.027825300000075 ], [ -122.820754308999966, 49.026882709000056 ], [ -122.82017981099996, 49.026587207000063 ], [ -122.819368494999964, 49.026356715000077 ], [ -122.819381775999915, 49.026057688000044 ], [ -122.819401799999952, 49.025606995000047 ], [ -122.819406393999927, 49.02549990600005 ], [ -122.819410821999938, 49.025490576000031 ], [ -122.819502198999942, 49.025297192000039 ], [ -122.81949447199996, 49.025049195000044 ], [ -122.819428176999949, 49.024879597000023 ], [ -122.818544979999956, 49.024800191000104 ], [ -122.817769688999974, 49.024704193000083 ], [ -122.816506006999958, 49.024472109000058 ], [ -122.814899990999933, 49.024069303000076 ], [ -122.812341889999928, 49.023295800000014 ], [ -122.812072110999978, 49.023215128000075 ], [ -122.810367401999926, 49.022705409000068 ], [ -122.808655317999936, 49.022194898000137 ], [ -122.808942863999931, 49.022079889000103 ], [ -122.80907077199997, 49.022004881000022 ], [ -122.809110990999912, 49.02197481900005 ], [ -122.809117904999979, 49.021969624000107 ], [ -122.809148720999957, 49.021946606000043 ], [ -122.809971212, 49.022191095000103 ], [ -122.812322509999944, 49.022770802000132 ], [ -122.812340047999925, 49.022776777000054 ], [ -122.81325039699999, 49.023086910000096 ], [ -122.815997990999946, 49.023810395000055 ], [ -122.819304179999975, 49.024481193000035 ], [ -122.821027511999901, 49.024744698000049 ], [ -122.823593051999936, 49.025030698000094 ], [ -122.826100102999959, 49.02531010900006 ], [ -122.82890321, 49.025431204000071 ], [ -122.830411799, 49.025401602000066 ], [ -122.832310797999966, 49.02536430700011 ], [ -122.833967010999942, 49.025250291000155 ], [ -122.835655506999942, 49.025050858000043 ], [ -122.835653877999931, 49.025545769000111 ], [ -122.83576723499999, 49.02557286200004 ], [ -122.835849574999926, 49.025793736000075 ], [ -122.836063428999978, 49.025794040000079 ], [ -122.836062640999927, 49.026034261000092 ], [ -122.836202683999929, 49.026064105000046 ], [ -122.836561553999942, 49.026064615000088 ], [ -122.838935579999927, 49.025931229000065 ], [ -122.838936008999937, 49.025798085000083 ], [ -122.839905498999926, 49.025799435000124 ], [ -122.840167737999977, 49.025605120000073 ], [ -122.840167978999943, 49.025529931000079 ], [ -122.840269021999987, 49.025530070000059 ], [ -122.840296835999965, 49.025509462000066 ], [ -122.84084203499998, 49.025490562000051 ], [ -122.8411288099999, 49.025531258000044 ], [ -122.84221981, 49.025532754000039 ], [ -122.842219324999988, 49.025686004000079 ], [ -122.843049167999965, 49.025803753000076 ], [ -122.84346799299999, 49.025804322000148 ], [ -122.843860811999946, 49.025683464000089 ], [ -122.843861277, 49.025534986000025 ], [ -122.844265305999954, 49.025535532000021 ], [ -122.844682642999928, 49.025331850000072 ], [ -122.844682847999977, 49.025266228000056 ], [ -122.845007224999918, 49.02526666500011 ], [ -122.845508698999978, 49.025243604000117 ], [ -122.845508701999933, 49.025244963000091 ], [ -122.845459824999978, 49.026394211000053 ], [ -122.845438134999938, 49.027159602000047 ], [ -122.836808801999965, 49.027448982000081 ], [ -122.834460679999921, 49.027522203000103 ], [ -122.834491586999931, 49.028114286000083 ], [ -122.834465210999895, 49.028664095000124 ], [ -122.834449994999915, 49.029171094000041 ], [ -122.830418315999935, 49.029151205000034 ], [ -122.83040807699993, 49.028588517000017 ], [ -122.830407738999952, 49.028570523 ], [ -122.830405615999922, 49.02845419000014 ], [ -122.830407208999972, 49.028008090000114 ], [ -122.830405182999968, 49.027493507000045 ], [ -122.830428506999965, 49.026864922000101 ], [ -122.830434711999914, 49.026697696000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "272895919", "BldgCostT": "177887625", "sL_LossRatio": "0.716230471135589", "sL_AssetLoss": "1801180", "sL_BldgLoss": "1290060", "sL_StrLoss": "654460", "sL_NStrLoss": "635600", "sL_ContLoss": "511120", "geom_point": "0101000020E6100000C77AD6DAE0B35EC001DA0C2634834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809397909999959, 49.024369091000032 ], [ -122.80942028699999, 49.023940815000103 ], [ -122.808594612999912, 49.023941485000073 ], [ -122.808600190999954, 49.023659497000047 ], [ -122.808513204999926, 49.023512800000056 ], [ -122.80847646399998, 49.023497065000079 ], [ -122.808622591999921, 49.023013108000065 ], [ -122.808641186, 49.022801004 ], [ -122.808652710999922, 49.022305643000095 ], [ -122.808655317999936, 49.022194898000137 ], [ -122.810367401999926, 49.022705409000068 ], [ -122.812072110999978, 49.023215128000075 ], [ -122.812341889999928, 49.023295800000014 ], [ -122.812191286000015, 49.023498606000011 ], [ -122.812172591999953, 49.023933403000093 ], [ -122.812173702999971, 49.024416508000087 ], [ -122.812164205, 49.024995678000074 ], [ -122.812174441999943, 49.025225144000096 ], [ -122.812177723999966, 49.025298906000074 ], [ -122.812182186, 49.02579201 ], [ -122.812190864999963, 49.026015362000123 ], [ -122.812195591999952, 49.026136700000073 ], [ -122.812190687999987, 49.026967504000012 ], [ -122.812182098, 49.027634088000077 ], [ -122.809459084, 49.027629803000075 ], [ -122.809449910999945, 49.02695735 ], [ -122.809438621999973, 49.02613129500012 ], [ -122.809435111999946, 49.025782503000094 ], [ -122.809342784999942, 49.025333602000089 ], [ -122.809341631999985, 49.025248578000131 ], [ -122.809338894999939, 49.02505138900009 ], [ -122.809343391999974, 49.024725304000079 ], [ -122.809399298999935, 49.024548497000048 ], [ -122.809397909999959, 49.024369091000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "368637592", "BldgCostT": "249343133", "sL_LossRatio": "0.782236922489351", "sL_AssetLoss": "3838479", "sL_BldgLoss": "3002600", "sL_StrLoss": "1376530", "sL_NStrLoss": "1626070", "sL_ContLoss": "835879", "geom_point": "0101000020E6100000FE2CF1DBABB35EC0C36F02BA4C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808594612999912, 49.023941485000073 ], [ -122.80942028699999, 49.023940815000103 ], [ -122.809397909999959, 49.024369091000032 ], [ -122.809399298999935, 49.024548497000048 ], [ -122.809343391999974, 49.024725304000079 ], [ -122.809338894999939, 49.02505138900009 ], [ -122.809341631999985, 49.025248578000131 ], [ -122.809342784999942, 49.025333602000089 ], [ -122.809435111999946, 49.025782503000094 ], [ -122.809438621999973, 49.02613129500012 ], [ -122.809449910999945, 49.02695735 ], [ -122.809459084, 49.027629803000075 ], [ -122.808755804999919, 49.02761880900006 ], [ -122.808106691999967, 49.02761481200006 ], [ -122.806709786999946, 49.027611998000026 ], [ -122.805940931999913, 49.027605012000066 ], [ -122.805314813999985, 49.027599308000056 ], [ -122.805320801999983, 49.025736711000107 ], [ -122.80532020899993, 49.024787599000099 ], [ -122.805311493999966, 49.023915895000172 ], [ -122.805494632999938, 49.023916819000128 ], [ -122.806619305999959, 49.02392240700005 ], [ -122.808594612999912, 49.023941485000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204973178", "BldgCostT": "121697070", "sL_LossRatio": "0.646662603815301", "sL_AssetLoss": "3527900", "sL_BldgLoss": "2281361", "sL_StrLoss": "989231", "sL_NStrLoss": "1292130", "sL_ContLoss": "1246539", "geom_point": "0101000020E6100000C5E0833268B35EC0C579CE2F2D834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.803916204999965, 49.023890490000021 ], [ -122.805311493999966, 49.023915895000172 ], [ -122.80532020899993, 49.024787599000099 ], [ -122.805320801999983, 49.025736711000107 ], [ -122.80391250699995, 49.025739786000024 ], [ -122.80253431199999, 49.02574289600004 ], [ -122.801160617, 49.025740702000107 ], [ -122.801160689999961, 49.024781800000028 ], [ -122.801173893999959, 49.024012511000066 ], [ -122.80121029699994, 49.023879297000086 ], [ -122.8033998, 49.023885995000064 ], [ -122.803916204999965, 49.023890490000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "264760477", "BldgCostT": "176079856", "sL_LossRatio": "0.753722557653578", "sL_AssetLoss": "2510035", "sL_BldgLoss": "1891870", "sL_StrLoss": "878310", "sL_NStrLoss": "1013560", "sL_ContLoss": "618165", "geom_point": "0101000020E6100000A856681865B35EC0C3548F6EE3824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800592013999932, 49.021115698000067 ], [ -122.800881629999964, 49.020700703000067 ], [ -122.80252868599996, 49.021198595000023 ], [ -122.803301302999969, 49.021474003000051 ], [ -122.803387992999944, 49.021524393000064 ], [ -122.803393189999923, 49.02162820500007 ], [ -122.804001390999971, 49.021649013000093 ], [ -122.804003545999947, 49.021649223000033 ], [ -122.804034178, 49.02165263800002 ], [ -122.804278207999914, 49.021679790000057 ], [ -122.804615018999968, 49.021751986000062 ], [ -122.805500042999967, 49.02202166200005 ], [ -122.805434572999957, 49.022977695000051 ], [ -122.805423314999956, 49.023441502000011 ], [ -122.805433901999919, 49.023626596000042 ], [ -122.805494632999938, 49.023916819000128 ], [ -122.805311493999966, 49.023915895000172 ], [ -122.803916204999965, 49.023890490000021 ], [ -122.8033998, 49.023885995000064 ], [ -122.80121029699994, 49.023879297000086 ], [ -122.80121190899996, 49.023835402000024 ], [ -122.801227396999977, 49.023411207000052 ], [ -122.801195099, 49.022845117000017 ], [ -122.80119208499994, 49.022530504000045 ], [ -122.801215707999958, 49.021648901000042 ], [ -122.80055219899999, 49.021596706000075 ], [ -122.800301003999962, 49.02153149400003 ], [ -122.800592013999932, 49.021115698000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229626250", "BldgCostT": "151000000", "sL_LossRatio": "0.715299773946743", "sL_AssetLoss": "2663974", "sL_BldgLoss": "1905540", "sL_StrLoss": "811380", "sL_NStrLoss": "1094160", "sL_ContLoss": "758434", "geom_point": "0101000020E6100000E42840148CB35EC0470BF20ECB824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801186676999976, 49.019668731000081 ], [ -122.801299362999927, 49.019537481000022 ], [ -122.801309388999954, 49.019540702000057 ], [ -122.802350584, 49.019747995000031 ], [ -122.802453536999963, 49.019768489000086 ], [ -122.80267560099999, 49.019812695000034 ], [ -122.806594622999938, 49.021166792000024 ], [ -122.806885869999917, 49.021267419 ], [ -122.80702011799994, 49.021313795000054 ], [ -122.809148720999957, 49.021946606000043 ], [ -122.809117904999979, 49.021969624000107 ], [ -122.809110990999912, 49.02197481900005 ], [ -122.80907077199997, 49.022004881000022 ], [ -122.808942863999931, 49.022079889000103 ], [ -122.808655317999936, 49.022194898000137 ], [ -122.808652710999922, 49.022305643000095 ], [ -122.808641186, 49.022801004 ], [ -122.808622591999921, 49.023013108000065 ], [ -122.80847646399998, 49.023497065000079 ], [ -122.808513204999926, 49.023512800000056 ], [ -122.808600190999954, 49.023659497000047 ], [ -122.808594612999912, 49.023941485000073 ], [ -122.806619305999959, 49.02392240700005 ], [ -122.805494632999938, 49.023916819000128 ], [ -122.805433901999919, 49.023626596000042 ], [ -122.805423314999956, 49.023441502000011 ], [ -122.805434572999957, 49.022977695000051 ], [ -122.805500042999967, 49.02202166200005 ], [ -122.804615018999968, 49.021751986000062 ], [ -122.804278207999914, 49.021679790000057 ], [ -122.804034178, 49.02165263800002 ], [ -122.804003545999947, 49.021649223000033 ], [ -122.804001390999971, 49.021649013000093 ], [ -122.803393189999923, 49.02162820500007 ], [ -122.803387992999944, 49.021524393000064 ], [ -122.803301302999969, 49.021474003000051 ], [ -122.80252868599996, 49.021198595000023 ], [ -122.800881629999964, 49.020700703000067 ], [ -122.800679531999961, 49.020637023000106 ], [ -122.80108836, 49.020614957000141 ], [ -122.801116566999937, 49.020343636000071 ], [ -122.801125320999915, 49.020235731000099 ], [ -122.801090110999965, 49.020124426000102 ], [ -122.801043307999947, 49.01997643500011 ], [ -122.801115279999962, 49.019751917000065 ], [ -122.801186676999976, 49.019668731000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109485776", "BldgCostT": "65322444", "sL_LossRatio": "0.657948072886819", "sL_AssetLoss": "1664718", "sL_BldgLoss": "1095298", "sL_StrLoss": "479808", "sL_NStrLoss": "615490", "sL_ContLoss": "569420", "geom_point": "0101000020E6100000FE8CB9081FB35EC03D214296E4824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795459222999938, 49.02201250600011 ], [ -122.796033589999922, 49.021212204000093 ], [ -122.797856985999928, 49.021790190000047 ], [ -122.798457807999938, 49.020962814000079 ], [ -122.800042671, 49.021451790000071 ], [ -122.800301003999962, 49.02153149400003 ], [ -122.80055219899999, 49.021596706000075 ], [ -122.801215707999958, 49.021648901000042 ], [ -122.80119208499994, 49.022530504000045 ], [ -122.801195099, 49.022845117000017 ], [ -122.801227396999977, 49.023411207000052 ], [ -122.80121190899996, 49.023835402000024 ], [ -122.80121029699994, 49.023879297000086 ], [ -122.800730109999947, 49.023874431000124 ], [ -122.799819493999948, 49.023967598000063 ], [ -122.798740909999978, 49.023936201000055 ], [ -122.798507097999931, 49.023929398000092 ], [ -122.797134176999947, 49.023895597000056 ], [ -122.79636938599999, 49.023906094000075 ], [ -122.796702906999926, 49.023428496000058 ], [ -122.797258179999943, 49.022607787000041 ], [ -122.795459222999938, 49.02201250600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180234728", "BldgCostT": "118524857", "sL_LossRatio": "0.715814627020683", "sL_AssetLoss": "2368630", "sL_BldgLoss": "1695500", "sL_StrLoss": "842310", "sL_NStrLoss": "853190", "sL_ContLoss": "673130", "geom_point": "0101000020E6100000FD6BAAD5F4B25EC0F46AB20C92824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793617715999957, 49.021419389000066 ], [ -122.79185419399991, 49.020864711000044 ], [ -122.792448304999937, 49.020077611000069 ], [ -122.792768887999898, 49.0196483 ], [ -122.79305483199991, 49.019260350000074 ], [ -122.793172687999927, 49.018308482000172 ], [ -122.793248706999947, 49.01827650600007 ], [ -122.793378231999938, 49.01830110900012 ], [ -122.793644839999985, 49.018300059000119 ], [ -122.793746314999964, 49.018255336000024 ], [ -122.793801531999947, 49.018187578000031 ], [ -122.793823611999983, 49.018026023000111 ], [ -122.793966686, 49.017773436000041 ], [ -122.794496103999904, 49.017938819000079 ], [ -122.795773662999949, 49.018338064000027 ], [ -122.795898390999966, 49.018377032000103 ], [ -122.796823743999965, 49.01866616800006 ], [ -122.797784329999942, 49.018966242000069 ], [ -122.799977353999964, 49.019646024000046 ], [ -122.801043307999947, 49.01997643500011 ], [ -122.801090110999965, 49.020124426000102 ], [ -122.801125320999915, 49.020235731000099 ], [ -122.801116566999937, 49.020343636000071 ], [ -122.80108836, 49.020614957000141 ], [ -122.800679531999961, 49.020637023000106 ], [ -122.800881629999964, 49.020700703000067 ], [ -122.800592013999932, 49.021115698000067 ], [ -122.800301003999962, 49.02153149400003 ], [ -122.800042671, 49.021451790000071 ], [ -122.798457807999938, 49.020962814000079 ], [ -122.797856985999928, 49.021790190000047 ], [ -122.796033589999922, 49.021212204000093 ], [ -122.795459222999938, 49.02201250600011 ], [ -122.793617715999957, 49.021419389000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "270018001", "BldgCostT": "178274016", "sL_LossRatio": "0.775945548556516", "sL_AssetLoss": "1843110", "sL_BldgLoss": "1430153", "sL_StrLoss": "725785", "sL_NStrLoss": "704368", "sL_ContLoss": "412957", "geom_point": "0101000020E61000005A21CC8AB4B25EC03DB6014C57824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790197475999918, 49.019244816000032 ], [ -122.790182987999984, 49.018394802000067 ], [ -122.788899187999931, 49.018378910000088 ], [ -122.788893693999952, 49.017367609000111 ], [ -122.788896814999973, 49.016567314000021 ], [ -122.788934120999954, 49.016425348000098 ], [ -122.788765003999941, 49.016211666000117 ], [ -122.788756948999918, 49.016096278000134 ], [ -122.788764475, 49.015913782000084 ], [ -122.78876455799994, 49.015867199000127 ], [ -122.788763633999977, 49.015806006000105 ], [ -122.788960489999951, 49.015893306000059 ], [ -122.789686397999958, 49.016011499000072 ], [ -122.79024439, 49.016246496000065 ], [ -122.792430997999958, 49.01686171200005 ], [ -122.792785312999982, 49.017051090000074 ], [ -122.797142391, 49.018462499000094 ], [ -122.800462388999946, 49.019268609000065 ], [ -122.801299362999927, 49.019537481000022 ], [ -122.801186676999976, 49.019668731000081 ], [ -122.801115279999962, 49.019751917000065 ], [ -122.801043307999947, 49.01997643500011 ], [ -122.799977353999964, 49.019646024000046 ], [ -122.797784329999942, 49.018966242000069 ], [ -122.796823743999965, 49.01866616800006 ], [ -122.795898390999966, 49.018377032000103 ], [ -122.795773662999949, 49.018338064000027 ], [ -122.794496103999904, 49.017938819000079 ], [ -122.793966686, 49.017773436000041 ], [ -122.793823611999983, 49.018026023000111 ], [ -122.793801531999947, 49.018187578000031 ], [ -122.793746314999964, 49.018255336000024 ], [ -122.793644839999985, 49.018300059000119 ], [ -122.793378231999938, 49.01830110900012 ], [ -122.793248706999947, 49.01827650600007 ], [ -122.793172687999927, 49.018308482000172 ], [ -122.79305483199991, 49.019260350000074 ], [ -122.792768887999898, 49.0196483 ], [ -122.792448304999937, 49.020077611000069 ], [ -122.79185419399991, 49.020864711000044 ], [ -122.79094560599998, 49.020580677000076 ], [ -122.79014189599998, 49.020242984000028 ], [ -122.790209597999961, 49.019954797000075 ], [ -122.790197475999918, 49.019244816000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144102167", "BldgCostT": "97906667", "sL_LossRatio": "0.785093273638205", "sL_AssetLoss": "1407150", "sL_BldgLoss": "1104744", "sL_StrLoss": "580754", "sL_NStrLoss": "523990", "sL_ContLoss": "302406", "geom_point": "0101000020E6100000E1B034F023B85EC06F7C92E0B2844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.878376902999932, 49.045782393000081 ], [ -122.878385802999929, 49.04417939800004 ], [ -122.878398788999931, 49.042617189000069 ], [ -122.87839662199994, 49.042010168000132 ], [ -122.878394895000028, 49.041531110000136 ], [ -122.878389083999963, 49.040658600000071 ], [ -122.878397757999934, 49.03924222900006 ], [ -122.878399264000024, 49.038618927000073 ], [ -122.878400498999895, 49.038078 ], [ -122.87750123499994, 49.03712693400005 ], [ -122.875344628999926, 49.03484597000007 ], [ -122.87533739399997, 49.034838313000115 ], [ -122.874454213999982, 49.033878095 ], [ -122.873310805999964, 49.033232009000066 ], [ -122.873268114000027, 49.03310846000003 ], [ -122.873038040999944, 49.032442790000026 ], [ -122.87281649, 49.03180172500003 ], [ -122.872650106999984, 49.031320196000124 ], [ -122.872058526999979, 49.031315600000063 ], [ -122.872057508999944, 49.030575680000034 ], [ -122.872058216999974, 49.029852 ], [ -122.872054292999948, 49.029135519000107 ], [ -122.872047485999943, 49.028421500000071 ], [ -122.869950384999981, 49.02840269899999 ], [ -122.868458754999949, 49.028456061000085 ], [ -122.867544255999945, 49.028461264000057 ], [ -122.867526393000034, 49.027204594000132 ], [ -122.867536593999958, 49.025790013000048 ], [ -122.867541760999984, 49.025511952000066 ], [ -122.867608091999941, 49.025263752000058 ], [ -122.867756929999942, 49.024803385000105 ], [ -122.867775121999941, 49.024737516000108 ], [ -122.867787960999962, 49.024690977000077 ], [ -122.867959200999948, 49.02473619300013 ], [ -122.869078795999926, 49.02516060500011 ], [ -122.871048012999907, 49.026070695000037 ], [ -122.872945395999949, 49.027422211000093 ], [ -122.872995760999942, 49.027466561000061 ], [ -122.872941934999972, 49.028269343000069 ], [ -122.872990450999907, 49.028269397000102 ], [ -122.872989766, 49.028538642000022 ], [ -122.873145693999973, 49.028809301000109 ], [ -122.87339947199996, 49.028809580000043 ], [ -122.873398345999959, 49.029253466000043 ], [ -122.87344351499999, 49.029349363000087 ], [ -122.873808499999953, 49.029349762000088 ], [ -122.873806552999937, 49.030120098000076 ], [ -122.873839428999958, 49.030189899000106 ], [ -122.875057546999969, 49.030225374000082 ], [ -122.875167594999937, 49.030582603 ], [ -122.87595510099996, 49.032480990000096 ], [ -122.875900509999951, 49.032616296000072 ], [ -122.876104909999924, 49.032904005000034 ], [ -122.876759591999956, 49.033624713000066 ], [ -122.877484285999941, 49.034210009000091 ], [ -122.879271317999908, 49.036191100000039 ], [ -122.880663582999944, 49.037524092000069 ], [ -122.881045409999956, 49.038307509000106 ], [ -122.881890095999964, 49.039603508000042 ], [ -122.882681910999978, 49.040707168000026 ], [ -122.883607792999968, 49.041997616000089 ], [ -122.883499790999963, 49.042150015000075 ], [ -122.883963882000018, 49.042627101000058 ], [ -122.884220497999962, 49.043401888000083 ], [ -122.884465797999937, 49.043698086000056 ], [ -122.88458760499995, 49.045012604000085 ], [ -122.8844869119999, 49.045552954000108 ], [ -122.884441356999929, 49.045552907000122 ], [ -122.884440827999967, 49.04578058400007 ], [ -122.884227622999944, 49.045792289000062 ], [ -122.883993932999914, 49.045807621000037 ], [ -122.883506215999901, 49.045854593000051 ], [ -122.882558209999971, 49.04579298700007 ], [ -122.882299651999944, 49.045792464000051 ], [ -122.88122500799993, 49.045790292000071 ], [ -122.879765792999962, 49.045791193000063 ], [ -122.878376902999932, 49.045782393000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111325417", "BldgCostT": "76566667", "sL_LossRatio": "0.772793063889554", "sL_AssetLoss": "1399055", "sL_BldgLoss": "1081180", "sL_StrLoss": "555900", "sL_NStrLoss": "525280", "sL_ContLoss": "317875", "geom_point": "0101000020E61000005E515B34EEB75EC07F83DD4DC3844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876243913999957, 49.038735300000035 ], [ -122.875742684999949, 49.03862430400001 ], [ -122.875728951999989, 49.038624060000068 ], [ -122.874848081999971, 49.03860910000008 ], [ -122.87317631599997, 49.038592320000049 ], [ -122.86999040799995, 49.03856027900008 ], [ -122.869011186999927, 49.038542609000061 ], [ -122.869012092999952, 49.036636599000055 ], [ -122.870370007999966, 49.036673498000049 ], [ -122.872526090999926, 49.036696683000081 ], [ -122.872500777999932, 49.034810705 ], [ -122.873171461999931, 49.034817232000087 ], [ -122.87533739399997, 49.034838313000115 ], [ -122.875344628999926, 49.03484597000007 ], [ -122.87750123499994, 49.03712693400005 ], [ -122.878400498999895, 49.038078 ], [ -122.878399264000024, 49.038618927000073 ], [ -122.878397757999934, 49.03924222900006 ], [ -122.877685054999986, 49.039226018000051 ], [ -122.87726317, 49.039155221000051 ], [ -122.876906805999923, 49.039045701000141 ], [ -122.876483411999942, 49.038834197 ], [ -122.876243913999957, 49.038735300000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99552917", "BldgCostT": "67921667", "sL_LossRatio": "0.724114125557247", "sL_AssetLoss": "1839623", "sL_BldgLoss": "1332097", "sL_StrLoss": "608557", "sL_NStrLoss": "723540", "sL_ContLoss": "507526", "geom_point": "0101000020E6100000D1F1B98FF3B75EC0D6C1C1DE44854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868959510999943, 49.041349193000045 ], [ -122.868960393999913, 49.040561606000068 ], [ -122.869043101999978, 49.040389207 ], [ -122.869723991999962, 49.040553201000122 ], [ -122.870499116999937, 49.040556885000129 ], [ -122.871361200999942, 49.040546892000101 ], [ -122.871793794999959, 49.040376497000068 ], [ -122.872128494999956, 49.040055513000048 ], [ -122.872572083999955, 49.04023070900012 ], [ -122.872688911999973, 49.040323305000072 ], [ -122.872759905999885, 49.040427197 ], [ -122.872789502000018, 49.040556886000061 ], [ -122.872759388999967, 49.041414014000054 ], [ -122.876888013999931, 49.041428694000039 ], [ -122.876898000999958, 49.041219094000077 ], [ -122.876798805999954, 49.040984588000043 ], [ -122.876584599999958, 49.040753002000017 ], [ -122.875649500999913, 49.040322106000104 ], [ -122.875425486999958, 49.040194802 ], [ -122.875052905999951, 49.039878502000086 ], [ -122.874834912999944, 49.039417899000043 ], [ -122.874846677999983, 49.038696169000048 ], [ -122.874848081999971, 49.03860910000008 ], [ -122.875728951999989, 49.038624060000068 ], [ -122.875742684999949, 49.03862430400001 ], [ -122.876243913999957, 49.038735300000035 ], [ -122.876483411999942, 49.038834197 ], [ -122.876906805999923, 49.039045701000141 ], [ -122.87726317, 49.039155221000051 ], [ -122.877685054999986, 49.039226018000051 ], [ -122.878397757999934, 49.03924222900006 ], [ -122.878389083999963, 49.040658600000071 ], [ -122.878394895000028, 49.041531110000136 ], [ -122.87839662199994, 49.042010168000132 ], [ -122.878398788999931, 49.042617189000069 ], [ -122.878243074999887, 49.042635202000078 ], [ -122.876883213, 49.042624500000123 ], [ -122.869070697999973, 49.042543792000103 ], [ -122.869073693999951, 49.041929289000066 ], [ -122.868959510999943, 49.041349193000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97116250", "BldgCostT": "66505000", "sL_LossRatio": "0.728050447349935", "sL_AssetLoss": "1836370", "sL_BldgLoss": "1336970", "sL_StrLoss": "594270", "sL_NStrLoss": "742700", "sL_ContLoss": "499400", "geom_point": "0101000020E61000004781EC92C4B75EC01251657B21854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867444336999981, 49.042530580000054 ], [ -122.867465065999966, 49.039860989000054 ], [ -122.867472899999953, 49.038522954000065 ], [ -122.869011186999927, 49.038542609000061 ], [ -122.86999040799995, 49.03856027900008 ], [ -122.87317631599997, 49.038592320000049 ], [ -122.874848081999971, 49.03860910000008 ], [ -122.874846677999983, 49.038696169000048 ], [ -122.874834912999944, 49.039417899000043 ], [ -122.875052905999951, 49.039878502000086 ], [ -122.875425486999958, 49.040194802 ], [ -122.875649500999913, 49.040322106000104 ], [ -122.876584599999958, 49.040753002000017 ], [ -122.876798805999954, 49.040984588000043 ], [ -122.876898000999958, 49.041219094000077 ], [ -122.876888013999931, 49.041428694000039 ], [ -122.872759388999967, 49.041414014000054 ], [ -122.872789502000018, 49.040556886000061 ], [ -122.872759905999885, 49.040427197 ], [ -122.872688911999973, 49.040323305000072 ], [ -122.872572083999955, 49.04023070900012 ], [ -122.872128494999956, 49.040055513000048 ], [ -122.871793794999959, 49.040376497000068 ], [ -122.871361200999942, 49.040546892000101 ], [ -122.870499116999937, 49.040556885000129 ], [ -122.869723991999962, 49.040553201000122 ], [ -122.869043101999978, 49.040389207 ], [ -122.868960393999913, 49.040561606000068 ], [ -122.868959510999943, 49.041349193000045 ], [ -122.869073693999951, 49.041929289000066 ], [ -122.869070697999973, 49.042543792000103 ], [ -122.867444336999981, 49.042530580000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100760667", "BldgCostT": "67016667", "sL_LossRatio": "0.739264880206913", "sL_AssetLoss": "1433263", "sL_BldgLoss": "1059561", "sL_StrLoss": "510323", "sL_NStrLoss": "549238", "sL_ContLoss": "373702", "geom_point": "0101000020E610000050A5871DDDB75EC03A2717DFA7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.878243074999887, 49.042635202000078 ], [ -122.878398788999931, 49.042617189000069 ], [ -122.878385802999929, 49.04417939800004 ], [ -122.878376902999932, 49.045782393000081 ], [ -122.876452082999933, 49.045793105000079 ], [ -122.867561526999964, 49.04578325700006 ], [ -122.867420003999939, 49.045783097000076 ], [ -122.867413241999969, 49.045281227000018 ], [ -122.86739988199993, 49.04429162400006 ], [ -122.867396701999922, 49.04405399900002 ], [ -122.867402156999958, 49.04387871200008 ], [ -122.867444336999981, 49.042530580000054 ], [ -122.869070697999973, 49.042543792000103 ], [ -122.876883213, 49.042624500000123 ], [ -122.878243074999887, 49.042635202000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127712000", "BldgCostT": "85340000", "sL_LossRatio": "0.707509440193572", "sL_AssetLoss": "2373892", "sL_BldgLoss": "1679551", "sL_StrLoss": "781695", "sL_NStrLoss": "897856", "sL_ContLoss": "694341", "geom_point": "0101000020E6100000B5E16E18DEB75EC04ECE60BE02864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876452082999933, 49.045793105000079 ], [ -122.878376902999932, 49.045782393000081 ], [ -122.878386025999987, 49.046967011000035 ], [ -122.878391693999944, 49.047706789000145 ], [ -122.878395610999974, 49.048118694000046 ], [ -122.878309287999954, 49.048181996000032 ], [ -122.876724235999944, 49.048163162000129 ], [ -122.87647402499999, 49.048160204000077 ], [ -122.873211610999988, 49.048128298000037 ], [ -122.869343299000022, 49.048096692000108 ], [ -122.868048095999967, 49.048080289000076 ], [ -122.867379649, 49.048071826000026 ], [ -122.867420003999939, 49.045783097000076 ], [ -122.867561526999964, 49.04578325700006 ], [ -122.876452082999933, 49.045793105000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88740667", "BldgCostT": "60936667", "sL_LossRatio": "0.768549547276843", "sL_AssetLoss": "1173344", "sL_BldgLoss": "901773", "sL_StrLoss": "441827", "sL_NStrLoss": "459946", "sL_ContLoss": "271571", "geom_point": "0101000020E6100000759AF5F70CB85EC03556490175864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87309970299999, 49.053058011000104 ], [ -122.873099688999929, 49.052181212000086 ], [ -122.873104482, 49.051702794000057 ], [ -122.873111889999933, 49.050797295000109 ], [ -122.873118714999961, 49.049717006 ], [ -122.873211610999988, 49.048128298000037 ], [ -122.87647402499999, 49.048160204000077 ], [ -122.876724235999944, 49.048163162000129 ], [ -122.878309287999954, 49.048181996000032 ], [ -122.878482911999981, 49.048815189000088 ], [ -122.878870094999968, 49.048834506000091 ], [ -122.879187630999951, 49.048824695000086 ], [ -122.879336004999971, 49.048820097000075 ], [ -122.878853495999977, 49.049204410000108 ], [ -122.878749001999964, 49.049417698000099 ], [ -122.878758050000016, 49.049479870000027 ], [ -122.878759621999947, 49.049701825000035 ], [ -122.878745789999982, 49.049764759000055 ], [ -122.878717948999949, 49.049953656000106 ], [ -122.878717455999919, 49.050151550000095 ], [ -122.878717334999919, 49.050214534000119 ], [ -122.878730563999909, 49.050394441000037 ], [ -122.878757799999946, 49.050448442000018 ], [ -122.878785039999954, 49.050493453000058 ], [ -122.879017333, 49.05065561600005 ], [ -122.879085720999925, 49.050673691000149 ], [ -122.879372881, 49.05076393900012 ], [ -122.879468594999977, 49.050809023000056 ], [ -122.879591614999967, 49.050872104000049 ], [ -122.879495604999974, 49.050961965000113 ], [ -122.879427008999969, 49.051033865000058 ], [ -122.879303523999951, 49.05115066600009 ], [ -122.879056761999962, 49.051321339000033 ], [ -122.87886489499999, 49.051429077000101 ], [ -122.878563544999935, 49.051536696000092 ], [ -122.878385420999933, 49.051617477000029 ], [ -122.87815241499996, 49.051761162000084 ], [ -122.877988005999924, 49.051832946000069 ], [ -122.877878429999967, 49.05186880800008 ], [ -122.87758414699999, 49.051970439000073 ], [ -122.877383397999907, 49.052040896000101 ], [ -122.876721595999967, 49.052282996000024 ], [ -122.876674877999946, 49.05228092600008 ], [ -122.876369701999977, 49.052267301000036 ], [ -122.876367178999971, 49.052362474000077 ], [ -122.876347299999935, 49.053112002000013 ], [ -122.874800077999964, 49.053094895000079 ], [ -122.873787706999934, 49.053058542000073 ], [ -122.87309970299999, 49.053058011000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117526644", "BldgCostT": "75701523", "sL_LossRatio": "0.688230976656614", "sL_AssetLoss": "2506920", "sL_BldgLoss": "1725340", "sL_StrLoss": "710250", "sL_NStrLoss": "1015090", "sL_ContLoss": "781580", "geom_point": "0101000020E61000005541770FB1B75EC002761CDCA9864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867348116999921, 49.054205159000084 ], [ -122.867362985999932, 49.053041314000104 ], [ -122.86739405599999, 49.051380854000087 ], [ -122.867398916999932, 49.051122796000094 ], [ -122.867363615999977, 49.049715076000048 ], [ -122.867975623999939, 49.049707236000096 ], [ -122.868757100999957, 49.049697205000044 ], [ -122.870134903999912, 49.049689605000033 ], [ -122.873118714999961, 49.049717006 ], [ -122.873111889999933, 49.050797295000109 ], [ -122.873104482, 49.051702794000057 ], [ -122.873099688999929, 49.052181212000086 ], [ -122.87309970299999, 49.053058011000104 ], [ -122.873389078999978, 49.053168303000092 ], [ -122.873619586, 49.053379845000087 ], [ -122.873732607999983, 49.053483587000073 ], [ -122.874316791999959, 49.054019794000084 ], [ -122.873700592999938, 49.053936042000068 ], [ -122.87254529099999, 49.053779011000103 ], [ -122.872385244999961, 49.053816714000057 ], [ -122.868204903999981, 49.054801489000063 ], [ -122.867340502999923, 49.054801486000017 ], [ -122.867348116999921, 49.054205159000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259043917", "BldgCostT": "177201667", "sL_LossRatio": "0.792043370540527", "sL_AssetLoss": "2175117", "sL_BldgLoss": "1722787", "sL_StrLoss": "827937", "sL_NStrLoss": "894850", "sL_ContLoss": "452330", "geom_point": "0101000020E6100000C35E620B05B75EC034CC8E5C50864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850996675999909, 49.053051889000066 ], [ -122.850988400999967, 49.05129169100011 ], [ -122.850972298, 49.049525795000108 ], [ -122.850970162999928, 49.048481718000048 ], [ -122.850968215999913, 49.047541303000074 ], [ -122.850965805999948, 49.04577491000002 ], [ -122.852326782999924, 49.04577148900006 ], [ -122.85498536599999, 49.045785030000083 ], [ -122.855118390999962, 49.045785696000053 ], [ -122.856427409999966, 49.045783504000035 ], [ -122.861126681999949, 49.045758800000115 ], [ -122.862050889, 49.045764191000011 ], [ -122.862705615, 49.045768006000102 ], [ -122.864604309999933, 49.045760390000048 ], [ -122.867420003999939, 49.045783097000076 ], [ -122.867379649, 49.048071826000026 ], [ -122.868048095999967, 49.048080289000076 ], [ -122.869343299000022, 49.048096692000108 ], [ -122.873211610999988, 49.048128298000037 ], [ -122.873118714999961, 49.049717006 ], [ -122.870134903999912, 49.049689605000033 ], [ -122.868757100999957, 49.049697205000044 ], [ -122.867975623999939, 49.049707236000096 ], [ -122.867363615999977, 49.049715076000048 ], [ -122.867398916999932, 49.051122796000094 ], [ -122.86739405599999, 49.051380854000087 ], [ -122.867362985999932, 49.053041314000104 ], [ -122.866800008, 49.053098215000063 ], [ -122.864900722999906, 49.053290201999985 ], [ -122.864707737999979, 49.053354603000102 ], [ -122.864480897999968, 49.053430304000081 ], [ -122.864353346999962, 49.053265807000109 ], [ -122.864176291999925, 49.053037501000091 ], [ -122.860466802999909, 49.053038995000051 ], [ -122.85649231499994, 49.053034508000053 ], [ -122.855443607999987, 49.053034760000052 ], [ -122.853407896999926, 49.053035206000104 ], [ -122.852925326999937, 49.053038550000018 ], [ -122.850996675999909, 49.053051889000066 ] ], [ [ -122.867186032999911, 49.050414779000022 ], [ -122.867186318999927, 49.050307424000067 ], [ -122.864149586999957, 49.050218776000087 ], [ -122.86422894099999, 49.049039162000021 ], [ -122.863905206999931, 49.049038781000021 ], [ -122.863907415999932, 49.048229185000032 ], [ -122.864283397999941, 49.048229627000119 ], [ -122.864301548999919, 49.047959783000152 ], [ -122.863908151999951, 49.047959319000029 ], [ -122.863908227999971, 49.047931224000159 ], [ -122.862875031999977, 49.047901040000042 ], [ -122.862874882999975, 49.047903275000046 ], [ -122.86234961, 49.047887926000051 ], [ -122.862348360999988, 49.047906488000066 ], [ -122.861694543999988, 49.047887378000027 ], [ -122.861693734, 49.047899404000134 ], [ -122.859928730999954, 49.047847798000127 ], [ -122.859720423999974, 49.050940043000026 ], [ -122.858490341999982, 49.050904060000072 ], [ -122.85845416699999, 49.051440813000099 ], [ -122.859060327999885, 49.051458546000084 ], [ -122.859062935999944, 49.051419835000083 ], [ -122.860172983999945, 49.05145230100009 ], [ -122.860179593999973, 49.051354162000081 ], [ -122.862439616999936, 49.051420226000047 ], [ -122.862474228999943, 49.050906016000035 ], [ -122.863058400999975, 49.050923085000143 ], [ -122.86306510799993, 49.050823430000023 ], [ -122.866755013999978, 49.050931170000105 ], [ -122.86677408099996, 49.050931191000082 ], [ -122.866774802999942, 49.050661327000036 ], [ -122.86709212199996, 49.050661693000109 ], [ -122.867108869, 49.050412528000074 ], [ -122.867186032999911, 49.050414779000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89795000", "BldgCostT": "57980000", "sL_LossRatio": "0.751979270772562", "sL_AssetLoss": "1009589", "sL_BldgLoss": "759190", "sL_StrLoss": "376400", "sL_NStrLoss": "382790", "sL_ContLoss": "250399", "geom_point": "0101000020E61000009DB3367490B65EC0C275528024874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.860466802999909, 49.053038995000051 ], [ -122.864176291999925, 49.053037501000091 ], [ -122.864353346999962, 49.053265807000109 ], [ -122.864480897999968, 49.053430304000081 ], [ -122.864081076999952, 49.053590162000063 ], [ -122.863737285999946, 49.053727593000112 ], [ -122.863395581999967, 49.054232212000102 ], [ -122.862453203999962, 49.054759682000068 ], [ -122.860907482999934, 49.055612660000087 ], [ -122.860154603999973, 49.056028088000119 ], [ -122.858687607999968, 49.056545701000054 ], [ -122.85651319399993, 49.056983087000113 ], [ -122.855698574999934, 49.057172683000012 ], [ -122.85334882099994, 49.057719502000118 ], [ -122.852852590999959, 49.057977089000104 ], [ -122.852556829999969, 49.058275938000037 ], [ -122.850522607999949, 49.060331200000078 ], [ -122.85038418699996, 49.060330095000147 ], [ -122.846973191999936, 49.060302694000079 ], [ -122.845920414999938, 49.060296315000066 ], [ -122.845519350999965, 49.057128044000116 ], [ -122.845506200999964, 49.05711540700004 ], [ -122.845506013999923, 49.056673893000067 ], [ -122.845498498000012, 49.055168702000039 ], [ -122.845499891999978, 49.054996657000082 ], [ -122.845515589999934, 49.053055895000043 ], [ -122.846916659, 49.053054903000024 ], [ -122.850051033999961, 49.053052607000012 ], [ -122.850996675999909, 49.053051889000066 ], [ -122.852925326999937, 49.053038550000018 ], [ -122.853407896999926, 49.053035206000104 ], [ -122.855443607999987, 49.053034760000052 ], [ -122.85649231499994, 49.053034508000053 ], [ -122.860466802999909, 49.053038995000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139493333", "BldgCostT": "94523333", "sL_LossRatio": "0.748080599633221", "sL_AssetLoss": "1745467", "sL_BldgLoss": "1305750", "sL_StrLoss": "665760", "sL_NStrLoss": "639990", "sL_ContLoss": "439717", "geom_point": "0101000020E6100000CF617CA0EEB55EC0E630A17A52864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.847089469999958, 49.045756980000107 ], [ -122.850965805999948, 49.04577491000002 ], [ -122.850968215999913, 49.047541303000074 ], [ -122.850970162999928, 49.048481718000048 ], [ -122.850972298, 49.049525795000108 ], [ -122.850988400999967, 49.05129169100011 ], [ -122.850996675999909, 49.053051889000066 ], [ -122.850051033999961, 49.053052607000012 ], [ -122.846916659, 49.053054903000024 ], [ -122.845515589999934, 49.053055895000043 ], [ -122.840620719999905, 49.05302637500008 ], [ -122.839963192999903, 49.053022417000058 ], [ -122.837076291999892, 49.053010556000046 ], [ -122.836323375999967, 49.053007491000109 ], [ -122.834415580999988, 49.052999604000078 ], [ -122.834413617999985, 49.052767862000074 ], [ -122.834399703999964, 49.051158905000058 ], [ -122.834397112999966, 49.050923751000028 ], [ -122.834379880999961, 49.049355995000042 ], [ -122.834381069999921, 49.048549170000051 ], [ -122.8343812, 49.04846821100007 ], [ -122.834381665999942, 49.048144363000091 ], [ -122.834382574999935, 49.047523658000081 ], [ -122.83438499199994, 49.045877505000064 ], [ -122.834385231999974, 49.045733302000045 ], [ -122.837089683999949, 49.045742796000106 ], [ -122.839576860999941, 49.045742968000113 ], [ -122.839913804000034, 49.045743012000067 ], [ -122.841329215999949, 49.04574318800006 ], [ -122.84143798499997, 49.045743358000053 ], [ -122.844475911999965, 49.045747932000054 ], [ -122.845461594999961, 49.045749410000077 ], [ -122.847089469999958, 49.045756980000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162310668", "BldgCostT": "108046668", "sL_LossRatio": "0.748849500917369", "sL_AssetLoss": "2079315", "sL_BldgLoss": "1557094", "sL_StrLoss": "783184", "sL_NStrLoss": "773910", "sL_ContLoss": "522221", "geom_point": "0101000020E6100000FC9BED5DC5B55EC0AFCC8C6597874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834287520999965, 49.067310984000081 ], [ -122.834341853999931, 49.065005185000054 ], [ -122.834342432999932, 49.065192092000096 ], [ -122.834701783999918, 49.065192606000025 ], [ -122.834700887999958, 49.065462472000128 ], [ -122.834959073999968, 49.065462840000123 ], [ -122.835014058999974, 49.064653323000137 ], [ -122.83470357399996, 49.064652878000103 ], [ -122.834702677999971, 49.064922743000054 ], [ -122.834343816999933, 49.064922229000054 ], [ -122.834347889999947, 49.064750054000058 ], [ -122.834356539999959, 49.064381528000041 ], [ -122.834368987999966, 49.063815972000036 ], [ -122.834407987999938, 49.061912 ], [ -122.834419370999939, 49.060882331000123 ], [ -122.834426569999934, 49.060229201000027 ], [ -122.834433385999915, 49.059524680000045 ], [ -122.834436715, 49.058894267000028 ], [ -122.834437732999945, 49.058696374000085 ], [ -122.834440097999959, 49.058246625000109 ], [ -122.834448852999927, 49.056578285000022 ], [ -122.834441154999922, 49.056140762000055 ], [ -122.834419718, 49.054912902000105 ], [ -122.834415580999988, 49.052999604000078 ], [ -122.836323375999967, 49.053007491000109 ], [ -122.837076291999892, 49.053010556000046 ], [ -122.839963192999903, 49.053022417000058 ], [ -122.840620719999905, 49.05302637500008 ], [ -122.845515589999934, 49.053055895000043 ], [ -122.845499891999978, 49.054996657000082 ], [ -122.845498498000012, 49.055168702000039 ], [ -122.845506013999923, 49.056673893000067 ], [ -122.845506200999964, 49.05711540700004 ], [ -122.845519350999965, 49.057128044000116 ], [ -122.845920414999938, 49.060296315000066 ], [ -122.846973191999936, 49.060302694000079 ], [ -122.85038418699996, 49.060330095000147 ], [ -122.850522607999949, 49.060331200000078 ], [ -122.850515004999949, 49.060338732000091 ], [ -122.848487524999953, 49.062346799000068 ], [ -122.847537378999959, 49.062673510000046 ], [ -122.846252122999914, 49.063115435000071 ], [ -122.846214259999968, 49.063128468000059 ], [ -122.845539104999915, 49.063360609000036 ], [ -122.842243400999962, 49.064388408000127 ], [ -122.841549289999961, 49.064462784000078 ], [ -122.839815099999896, 49.064648585000072 ], [ -122.838678504999962, 49.065268498000108 ], [ -122.838454127999938, 49.065450306000045 ], [ -122.837389498, 49.066320108000056 ], [ -122.836379788999949, 49.066924791000126 ], [ -122.834287520999965, 49.067310984000081 ] ], [ [ -122.844098556999967, 49.062034826000051 ], [ -122.844119652999936, 49.061723330000177 ], [ -122.842926720999969, 49.061688269000051 ], [ -122.84292669599995, 49.061695839000059 ], [ -122.842448633999936, 49.061695188000066 ], [ -122.842424565999949, 49.062050391000135 ], [ -122.843938666999961, 49.062094895000058 ], [ -122.843884320999933, 49.062897306000124 ], [ -122.843974327999945, 49.062899951000141 ], [ -122.844033048999961, 49.062032901000073 ], [ -122.844098556999967, 49.062034826000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133403001", "BldgCostT": "90320001", "sL_LossRatio": "0.754573993825195", "sL_AssetLoss": "1733496", "sL_BldgLoss": "1308051", "sL_StrLoss": "642631", "sL_NStrLoss": "665420", "sL_ContLoss": "425445", "geom_point": "0101000020E61000008F5C813217B55EC0CFB31F4A30874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.828886596999922, 49.05961790200007 ], [ -122.828920490999934, 49.059280888000039 ], [ -122.828337398999935, 49.059266395000087 ], [ -122.827928511000025, 49.059223696000124 ], [ -122.82757050099994, 49.059117598000093 ], [ -122.827528582999918, 49.059091532000082 ], [ -122.827360519999971, 49.058986996000073 ], [ -122.827082585999932, 49.058748991000108 ], [ -122.827057782999972, 49.058681823 ], [ -122.827052410999968, 49.058667351000061 ], [ -122.826980909, 49.058473906000089 ], [ -122.826966186999954, 49.058046292000022 ], [ -122.82700760699997, 49.057097606000148 ], [ -122.824776302999965, 49.057060483000122 ], [ -122.82440311199997, 49.056975594000072 ], [ -122.824030991999919, 49.056796107 ], [ -122.823643292999947, 49.056723299000083 ], [ -122.823539656999969, 49.056720236000054 ], [ -122.823292517999931, 49.056712888000128 ], [ -122.823285471999895, 49.05667507099999 ], [ -122.823227073999988, 49.056439745000048 ], [ -122.823214046999951, 49.056250826000088 ], [ -122.823201070999957, 49.056052906000062 ], [ -122.823201723999915, 49.055863999000074 ], [ -122.823202425999938, 49.055666090000059 ], [ -122.82320290899996, 49.05554015600007 ], [ -122.823202924999961, 49.055531165000076 ], [ -122.823203577999948, 49.055342259000078 ], [ -122.823204277999963, 49.055144350000084 ], [ -122.82321866099997, 49.054955466000067 ], [ -122.823219397999978, 49.054739580000053 ], [ -122.82321944899995, 49.054730577000086 ], [ -122.823206080999952, 49.05464062600003 ], [ -122.823219914999981, 49.054595666000047 ], [ -122.823269921999952, 49.054414771000125 ], [ -122.823288094999924, 49.054348997000034 ], [ -122.823263100999981, 49.054214277000057 ], [ -122.823222057999942, 49.05399297700005 ], [ -122.823222741999928, 49.053804060000076 ], [ -122.823209734999963, 49.053606153000025 ], [ -122.823210367999934, 49.053426237000075 ], [ -122.823210849999924, 49.053300303000121 ], [ -122.823224697999976, 49.053255367000119 ], [ -122.823203641999939, 49.053097734000133 ], [ -122.823192630999955, 49.053015162000065 ], [ -122.82318561299995, 49.052962655 ], [ -122.827569595999961, 49.053000302000058 ], [ -122.828915684999956, 49.053025062000131 ], [ -122.8299917399999, 49.053044832000047 ], [ -122.83005243799991, 49.053045667000106 ], [ -122.830306348999926, 49.053049183000063 ], [ -122.831313170999948, 49.053063107000071 ], [ -122.831314449999965, 49.05298384200006 ], [ -122.832559877000023, 49.052989899000032 ], [ -122.833399677999964, 49.052993990000118 ], [ -122.833668330999956, 49.052995479000018 ], [ -122.834415580999988, 49.052999604000078 ], [ -122.834419718, 49.054912902000105 ], [ -122.834441154999922, 49.056140762000055 ], [ -122.834448852999927, 49.056578285000022 ], [ -122.834440097999959, 49.058246625000109 ], [ -122.834437732999945, 49.058696374000085 ], [ -122.834436715, 49.058894267000028 ], [ -122.834433385999915, 49.059524680000045 ], [ -122.834426569999934, 49.060229201000027 ], [ -122.833609847999966, 49.060229453 ], [ -122.831574088999943, 49.060231574000106 ], [ -122.831344581999971, 49.060231828000063 ], [ -122.83041371099992, 49.060232711000083 ], [ -122.828894371999965, 49.06023419100007 ], [ -122.828763987999963, 49.060234299000072 ], [ -122.828768889999964, 49.059901002000025 ], [ -122.828886596999922, 49.05961790200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210643251", "BldgCostT": "141575001", "sL_LossRatio": "0.732420231346613", "sL_AssetLoss": "2882774", "sL_BldgLoss": "2111402", "sL_StrLoss": "1025802", "sL_NStrLoss": "1085600", "sL_ContLoss": "771372", "geom_point": "0101000020E6100000DE5AD37A07B55EC06B50242D4F884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832148608999972, 49.073247603000041 ], [ -122.83170931799998, 49.072686407000106 ], [ -122.832212334999923, 49.072701242000058 ], [ -122.832214005000012, 49.072205518000025 ], [ -122.831803253999965, 49.07220492000004 ], [ -122.831804163999962, 49.071935056000086 ], [ -122.831745301999931, 49.071934970000051 ], [ -122.831695409999938, 49.072668639000049 ], [ -122.830950198999943, 49.071716594000073 ], [ -122.83041589, 49.071356209000093 ], [ -122.828858998, 49.070634209000097 ], [ -122.828831496999911, 49.070471792000035 ], [ -122.828626589999942, 49.070409094000077 ], [ -122.828122598999968, 49.069959111000045 ], [ -122.82747881200001, 49.069570304000116 ], [ -122.826891390999947, 49.069335298000034 ], [ -122.825975291999939, 49.069145902000059 ], [ -122.825252005999943, 49.06920122300005 ], [ -122.824933304999931, 49.069225598000052 ], [ -122.824169199, 49.068999186000049 ], [ -122.823019202999888, 49.068898098000048 ], [ -122.822577282999987, 49.069021301000106 ], [ -122.822306455000032, 49.06876674500009 ], [ -122.820667660999931, 49.067397138000118 ], [ -122.822186451999983, 49.06677971200002 ], [ -122.82242814499989, 49.066681435000056 ], [ -122.822565813999958, 49.066508874000085 ], [ -122.823043704999961, 49.065420011000114 ], [ -122.823255297999978, 49.064925193000086 ], [ -122.823268393999925, 49.063969386000075 ], [ -122.823269349, 49.063871948000035 ], [ -122.823269514999964, 49.063853197000093 ], [ -122.823284346, 49.062752410000023 ], [ -122.823299908999914, 49.06160116500012 ], [ -122.823299156999951, 49.061555782000013 ], [ -122.823291889999965, 49.060213997000098 ], [ -122.823277860999966, 49.060152125000108 ], [ -122.823241842999948, 49.059993002000034 ], [ -122.82324254699995, 49.059795090000094 ], [ -122.82322938399993, 49.059651163000062 ], [ -122.823243781999949, 49.059444274000029 ], [ -122.823243986999969, 49.059390302000061 ], [ -122.823231027999924, 49.059183389000047 ], [ -122.823231594999953, 49.059030473000057 ], [ -122.823246010999966, 49.058814594000097 ], [ -122.823246301999959, 49.058733640000128 ], [ -122.823260393999973, 49.058625707000019 ], [ -122.823261131999985, 49.058418830000051 ], [ -122.823275530999936, 49.058211941000131 ], [ -122.823276317999913, 49.057987050000079 ], [ -122.823290357999952, 49.057888117000061 ], [ -122.823290872999976, 49.057744202000023 ], [ -122.823291059999974, 49.05769921900005 ], [ -122.823291779999977, 49.057492320000122 ], [ -122.823292055999957, 49.057420357000069 ], [ -122.82329250199993, 49.057285421000131 ], [ -122.823279592999981, 49.05706951000009 ], [ -122.823282642, 49.056869185000082 ], [ -122.823292517999931, 49.056712888000128 ], [ -122.823539656999969, 49.056720236000054 ], [ -122.823643292999947, 49.056723299000083 ], [ -122.824030991999919, 49.056796107 ], [ -122.82440311199997, 49.056975594000072 ], [ -122.824776302999965, 49.057060483000122 ], [ -122.82700760699997, 49.057097606000148 ], [ -122.826966186999954, 49.058046292000022 ], [ -122.826980909, 49.058473906000089 ], [ -122.827052410999968, 49.058667351000061 ], [ -122.827057782999972, 49.058681823 ], [ -122.827082585999932, 49.058748991000108 ], [ -122.827360519999971, 49.058986996000073 ], [ -122.827528582999918, 49.059091532000082 ], [ -122.82757050099994, 49.059117598000093 ], [ -122.827928511000025, 49.059223696000124 ], [ -122.828337398999935, 49.059266395000087 ], [ -122.828920490999934, 49.059280888000039 ], [ -122.828886596999922, 49.05961790200007 ], [ -122.828768889999964, 49.059901002000025 ], [ -122.828763987999963, 49.060234299000072 ], [ -122.828894371999965, 49.06023419100007 ], [ -122.83041371099992, 49.060232711000083 ], [ -122.831344581999971, 49.060231828000063 ], [ -122.831574088999943, 49.060231574000106 ], [ -122.833609847999966, 49.060229453 ], [ -122.834426569999934, 49.060229201000027 ], [ -122.834419370999939, 49.060882331000123 ], [ -122.834407987999938, 49.061912 ], [ -122.834368987999966, 49.063815972000036 ], [ -122.834356539999959, 49.064381528000041 ], [ -122.834347889999947, 49.064750054000058 ], [ -122.834343816999933, 49.064922229000054 ], [ -122.834341597999966, 49.064922225000046 ], [ -122.834341853999931, 49.065005185000054 ], [ -122.834287520999965, 49.067310984000081 ], [ -122.834263207999982, 49.067688799000038 ], [ -122.834437695999952, 49.067862697000137 ], [ -122.834722387999975, 49.068146466000059 ], [ -122.8340815, 49.068912184000112 ], [ -122.834092955999949, 49.07264017300011 ], [ -122.834093292999938, 49.072747965000147 ], [ -122.833855206999928, 49.072747623000048 ], [ -122.83385430599999, 49.073017486000069 ], [ -122.832622034999943, 49.073015706 ], [ -122.832622940999954, 49.072745842000138 ], [ -122.832297419999918, 49.072745370000071 ], [ -122.832258388999946, 49.073319425000143 ], [ -122.832148608999972, 49.073247603000041 ] ], [ [ -122.83141806899999, 49.06464812600008 ], [ -122.831419892999946, 49.064108397000098 ], [ -122.830598525999918, 49.064107195000105 ], [ -122.830600361999942, 49.063567466000073 ], [ -122.827314928999925, 49.063562597000029 ], [ -122.827313993999937, 49.06383246200005 ], [ -122.827286674999954, 49.063832421000029 ], [ -122.827231556999919, 49.064641936000093 ], [ -122.830186004999973, 49.064646321000048 ], [ -122.830185598999961, 49.064765295000029 ], [ -122.830234534999988, 49.064766462000073 ], [ -122.83100665299996, 49.064862352000091 ], [ -122.831007381999939, 49.064647525000055 ], [ -122.83141806899999, 49.06464812600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20056386", "BldgCostT": "12282079", "sL_LossRatio": "0.591934097845734", "sL_AssetLoss": "337470", "sL_BldgLoss": "199760", "sL_StrLoss": "97480", "sL_NStrLoss": "102280", "sL_ContLoss": "137710", "geom_point": "0101000020E6100000D0CF9A400DB45EC09C34AA5F2B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812211822999984, 49.047669073000044 ], [ -122.81221724199996, 49.047021742000055 ], [ -122.812223932, 49.046222114000066 ], [ -122.812211911999938, 49.045657591000122 ], [ -122.812386214999918, 49.045658177000107 ], [ -122.814508964999945, 49.045665135 ], [ -122.81439787799998, 49.047290760000145 ], [ -122.814474646999912, 49.047293038000127 ], [ -122.814228788999941, 49.050890547000051 ], [ -122.81226636299999, 49.050832301000071 ], [ -122.812266809999954, 49.049694822000099 ], [ -122.81225867699996, 49.049351610000059 ], [ -122.812258328999931, 49.049338591000073 ], [ -122.812198568999946, 49.04925300500004 ], [ -122.812199310999972, 49.049161760000089 ], [ -122.812211822999984, 49.047669073000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.868585732165207", "sL_AssetLoss": "3995", "sL_BldgLoss": "3470", "sL_StrLoss": "2320", "sL_NStrLoss": "1150", "sL_ContLoss": "525", "geom_point": "0101000020E6100000CBAEC5B8ACB45EC0255436CD37864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822852127999965, 49.048173471 ], [ -122.823236748999932, 49.048174060000122 ], [ -122.823235747999917, 49.048298877000022 ], [ -122.823230268999964, 49.048983649000071 ], [ -122.82284925099999, 49.048983065000073 ], [ -122.822852127999965, 49.048173471 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113392475", "BldgCostT": "73170309", "sL_LossRatio": "0.701538516862552", "sL_AssetLoss": "1668490", "sL_BldgLoss": "1170510", "sL_StrLoss": "522500", "sL_NStrLoss": "648010", "sL_ContLoss": "497980", "geom_point": "0101000020E6100000020B163D66B45EC0007E3ADC16874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822840622999976, 49.05141184800005 ], [ -122.82319957, 49.051412399000078 ], [ -122.823203619999944, 49.051474178000063 ], [ -122.823230304999967, 49.051663141000077 ], [ -122.823243330999944, 49.051861068000107 ], [ -122.823256235999978, 49.052076975000077 ], [ -122.823255601999961, 49.052256891000056 ], [ -122.823241358999951, 49.052409793000024 ], [ -122.823240707999929, 49.052598697000128 ], [ -122.82321792299993, 49.052813239000045 ], [ -122.82318561299995, 49.052962655 ], [ -122.823192630999955, 49.053015162000065 ], [ -122.823203641999939, 49.053097734000133 ], [ -122.823224697999976, 49.053255367000119 ], [ -122.823210849999924, 49.053300303000121 ], [ -122.823210367999934, 49.053426237000075 ], [ -122.823209734999963, 49.053606153000025 ], [ -122.823222741999928, 49.053804060000076 ], [ -122.823222057999942, 49.05399297700005 ], [ -122.823263100999981, 49.054214277000057 ], [ -122.823288094999924, 49.054348997000034 ], [ -122.823269921999952, 49.054414771000125 ], [ -122.823219914999981, 49.054595666000047 ], [ -122.823206080999952, 49.05464062600003 ], [ -122.82321944899995, 49.054730577000086 ], [ -122.823219397999978, 49.054739580000053 ], [ -122.82321866099997, 49.054955466000067 ], [ -122.823204277999963, 49.055144350000084 ], [ -122.823203577999948, 49.055342259000078 ], [ -122.823202924999961, 49.055531165000076 ], [ -122.82320290899996, 49.05554015600007 ], [ -122.823202425999938, 49.055666090000059 ], [ -122.823201723999915, 49.055863999000074 ], [ -122.823201070999957, 49.056052906000062 ], [ -122.823214046999951, 49.056250826000088 ], [ -122.823227073999988, 49.056439745000048 ], [ -122.823285471999895, 49.05667507099999 ], [ -122.823292517999931, 49.056712888000128 ], [ -122.823282642, 49.056869185000082 ], [ -122.823279592999981, 49.05706951000009 ], [ -122.82329250199993, 49.057285421000131 ], [ -122.823292055999957, 49.057420357000069 ], [ -122.823291779999977, 49.057492320000122 ], [ -122.823291059999974, 49.05769921900005 ], [ -122.823290872999976, 49.057744202000023 ], [ -122.823290357999952, 49.057888117000061 ], [ -122.823276317999913, 49.057987050000079 ], [ -122.823275530999936, 49.058211941000131 ], [ -122.823261131999985, 49.058418830000051 ], [ -122.823260393999973, 49.058625707000019 ], [ -122.823246301999959, 49.058733640000128 ], [ -122.823246010999966, 49.058814594000097 ], [ -122.823231594999953, 49.059030473000057 ], [ -122.823231027999924, 49.059183389000047 ], [ -122.823243986999969, 49.059390302000061 ], [ -122.823243781999949, 49.059444274000029 ], [ -122.82322938399993, 49.059651163000062 ], [ -122.82324254699995, 49.059795090000094 ], [ -122.823241842999948, 49.059993002000034 ], [ -122.823277860999966, 49.060152125000108 ], [ -122.823291889999965, 49.060213997000098 ], [ -122.817744840999978, 49.060168745000112 ], [ -122.817270349999959, 49.059605928000103 ], [ -122.816654129999947, 49.059213618000044 ], [ -122.815920276, 49.058495177000097 ], [ -122.815725683999929, 49.058304705000104 ], [ -122.815378303999978, 49.057964582000125 ], [ -122.814974421000016, 49.057309207000102 ], [ -122.814483744999933, 49.055219381000015 ], [ -122.814389510999916, 49.05481800700003 ], [ -122.81310599599999, 49.053584989000043 ], [ -122.812666096999948, 49.053377307000076 ], [ -122.812265524999958, 49.05293368800006 ], [ -122.812266086999955, 49.051529289000037 ], [ -122.812266128999966, 49.051423352000086 ], [ -122.813829336999973, 49.051469750000074 ], [ -122.813830055999972, 49.051459237000138 ], [ -122.814776847999951, 49.051487328000135 ], [ -122.814779018999957, 49.051455560000143 ], [ -122.81745045699995, 49.051534776000096 ], [ -122.817451606999896, 49.05151792500007 ], [ -122.818123342999982, 49.051537834000058 ], [ -122.818125279999933, 49.051509442000018 ], [ -122.819935379999947, 49.051563067000124 ], [ -122.819949515999937, 49.051355886000096 ], [ -122.822840516999975, 49.051441470000078 ], [ -122.822840622999976, 49.05141184800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89460167", "BldgCostT": "61696667", "sL_LossRatio": "0.742694480559982", "sL_AssetLoss": "1555194", "sL_BldgLoss": "1155034", "sL_StrLoss": "527964", "sL_NStrLoss": "627070", "sL_ContLoss": "400160", "geom_point": "0101000020E61000008031744F0BB55EC0A1E7E47F51864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82325120199998, 49.051412478000074 ], [ -122.823254070999937, 49.050602884000092 ], [ -122.823165737999915, 49.050602749000049 ], [ -122.823165641999964, 49.05060156300005 ], [ -122.823166342999968, 49.05040365800005 ], [ -122.823166669999949, 49.050313684000045 ], [ -122.823153765999976, 49.050097778000051 ], [ -122.823154260999985, 49.049953844000107 ], [ -122.823154835999944, 49.049793133000044 ], [ -122.823183387, 49.049793177000069 ], [ -122.82325796399999, 49.049504342000084 ], [ -122.823258628999923, 49.04931699600008 ], [ -122.823259810999929, 49.04898369400005 ], [ -122.823230268999964, 49.048983649000071 ], [ -122.823235747999917, 49.048298877000022 ], [ -122.823236748999932, 49.048174060000122 ], [ -122.823262679999942, 49.048174101000079 ], [ -122.823271286999926, 49.045745315000069 ], [ -122.823681819999962, 49.045745943000064 ], [ -122.82368204, 49.045683847000092 ], [ -122.826002111999941, 49.045697738000086 ], [ -122.826590415999959, 49.045701266000052 ], [ -122.828876403999985, 49.045714894000085 ], [ -122.828930424999925, 49.045715084000037 ], [ -122.831630101999963, 49.045724183000033 ], [ -122.834240025999975, 49.045732805000064 ], [ -122.834385231999974, 49.045733302000045 ], [ -122.83438499199994, 49.045877505000064 ], [ -122.834382574999935, 49.047523658000081 ], [ -122.834381665999942, 49.048144363000091 ], [ -122.8343812, 49.04846821100007 ], [ -122.834381069999921, 49.048549170000051 ], [ -122.834379880999961, 49.049355995000042 ], [ -122.834397112999966, 49.050923751000028 ], [ -122.834399703999964, 49.051158905000058 ], [ -122.834413617999985, 49.052767862000074 ], [ -122.834415580999988, 49.052999604000078 ], [ -122.833668330999956, 49.052995479000018 ], [ -122.833399677999964, 49.052993990000118 ], [ -122.832559877000023, 49.052989899000032 ], [ -122.831314449999965, 49.05298384200006 ], [ -122.831313170999948, 49.053063107000071 ], [ -122.830306348999926, 49.053049183000063 ], [ -122.83005243799991, 49.053045667000106 ], [ -122.8299917399999, 49.053044832000047 ], [ -122.828915684999956, 49.053025062000131 ], [ -122.827569595999961, 49.053000302000058 ], [ -122.82318561299995, 49.052962655 ], [ -122.82321792299993, 49.052813239000045 ], [ -122.823240707999929, 49.052598697000128 ], [ -122.823241358999951, 49.052409793000024 ], [ -122.823255601999961, 49.052256891000056 ], [ -122.823256235999978, 49.052076975000077 ], [ -122.823243330999944, 49.051861068000107 ], [ -122.823230304999967, 49.051663141000077 ], [ -122.823203619999944, 49.051474178000063 ], [ -122.82319957, 49.051412399000078 ], [ -122.82325120199998, 49.051412478000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "480148645", "BldgCostT": "301316524", "sL_LossRatio": "0.764933032235881", "sL_AssetLoss": "3356167", "sL_BldgLoss": "2567243", "sL_StrLoss": "1430303", "sL_NStrLoss": "1136940", "sL_ContLoss": "788924", "geom_point": "0101000020E610000069453FE022B45EC04712C791B9874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.816940289999977, 49.068798411000095 ], [ -122.815653589999954, 49.068715805000032 ], [ -122.815101618999947, 49.068712268000105 ], [ -122.814794531999979, 49.068487981000011 ], [ -122.812450771999949, 49.066776139000055 ], [ -122.812384471, 49.066488324000098 ], [ -122.812205455999958, 49.06571163900005 ], [ -122.812222842999944, 49.064520057000074 ], [ -122.812228827999931, 49.064110056000054 ], [ -122.812238051999941, 49.063575030000074 ], [ -122.812239812, 49.063389412000063 ], [ -122.81224429699995, 49.062984034000138 ], [ -122.812252143999942, 49.062161718 ], [ -122.812254689999918, 49.061892105000076 ], [ -122.812164926999941, 49.060704381000079 ], [ -122.811727633, 49.060360465000095 ], [ -122.811647441999952, 49.060297378000065 ], [ -122.811571636999957, 49.060237765000117 ], [ -122.809834719999969, 49.058871550000077 ], [ -122.808924623999957, 49.058057790000078 ], [ -122.808841760999911, 49.057929150000142 ], [ -122.808701744999894, 49.057816830000085 ], [ -122.808242156999981, 49.057456224000148 ], [ -122.807617846999918, 49.056964561000093 ], [ -122.807088300999936, 49.05650720200007 ], [ -122.806674031999947, 49.056165065000101 ], [ -122.805883449999968, 49.055525127000067 ], [ -122.804014117999884, 49.054020374000075 ], [ -122.80510225699993, 49.05345167100009 ], [ -122.805676729999917, 49.053152429000065 ], [ -122.806028850999937, 49.05302411600006 ], [ -122.806676511999953, 49.052894678000044 ], [ -122.806747653999963, 49.052894106000025 ], [ -122.806747598999948, 49.052851105000066 ], [ -122.806745191999951, 49.051832404000017 ], [ -122.806734338999931, 49.050502476000126 ], [ -122.806729919999981, 49.04995840600013 ], [ -122.806763759999953, 49.049037924000068 ], [ -122.806778510999948, 49.04863668900007 ], [ -122.806787766, 49.048534904000078 ], [ -122.806816387, 49.047917904000052 ], [ -122.806924095999975, 49.048021995000056 ], [ -122.807079978999937, 49.0481032940001 ], [ -122.807342901999931, 49.0481588970001 ], [ -122.807930907999975, 49.048160096000124 ], [ -122.80947157899999, 49.048169895000093 ], [ -122.809464593999948, 49.049271807000089 ], [ -122.809650392999956, 49.049554006000029 ], [ -122.810137889999965, 49.049685716000077 ], [ -122.811458143999985, 49.049679805000082 ], [ -122.81213714499998, 49.049690978000093 ], [ -122.812266809999954, 49.049694822000099 ], [ -122.81226636299999, 49.050832301000071 ], [ -122.808845256999945, 49.050730676000093 ], [ -122.808833383999982, 49.050904079000169 ], [ -122.808887772999967, 49.050905696000029 ], [ -122.808836174, 49.051659369000049 ], [ -122.808879914, 49.051659441000062 ], [ -122.808877845999945, 49.052199170000051 ], [ -122.809288430999914, 49.05219984900009 ], [ -122.809286365999952, 49.052739578000107 ], [ -122.810107543999919, 49.052740933000102 ], [ -122.810108572, 49.052471068000052 ], [ -122.81029840299999, 49.052471380000057 ], [ -122.81033217, 49.051977954000023 ], [ -122.81070030399998, 49.051988889000071 ], [ -122.810741585999949, 49.051385562000029 ], [ -122.812000921999967, 49.051422961000057 ], [ -122.812001432999949, 49.05141549300005 ], [ -122.812266128999966, 49.051423352000086 ], [ -122.812266086999955, 49.051529289000037 ], [ -122.812265524999958, 49.05293368800006 ], [ -122.812666096999948, 49.053377307000076 ], [ -122.81310599599999, 49.053584989000043 ], [ -122.814389510999916, 49.05481800700003 ], [ -122.814483744999933, 49.055219381000015 ], [ -122.814974421000016, 49.057309207000102 ], [ -122.815378303999978, 49.057964582000125 ], [ -122.815725683999929, 49.058304705000104 ], [ -122.815920276, 49.058495177000097 ], [ -122.816654129999947, 49.059213618000044 ], [ -122.817270349999959, 49.059605928000103 ], [ -122.817744840999978, 49.060168745000112 ], [ -122.823291889999965, 49.060213997000098 ], [ -122.823299156999951, 49.061555782000013 ], [ -122.823299908999914, 49.06160116500012 ], [ -122.823284346, 49.062752410000023 ], [ -122.823269514999964, 49.063853197000093 ], [ -122.823269349, 49.063871948000035 ], [ -122.823268393999925, 49.063969386000075 ], [ -122.823255297999978, 49.064925193000086 ], [ -122.823043704999961, 49.065420011000114 ], [ -122.822565813999958, 49.066508874000085 ], [ -122.82242814499989, 49.066681435000056 ], [ -122.822186451999983, 49.06677971200002 ], [ -122.820667660999931, 49.067397138000118 ], [ -122.822306455000032, 49.06876674500009 ], [ -122.822577282999987, 49.069021301000106 ], [ -122.82253927699999, 49.069031895000151 ], [ -122.822437115999932, 49.06909484200002 ], [ -122.822072319999947, 49.069319603000082 ], [ -122.821811895999986, 49.069715589000104 ], [ -122.821341995999916, 49.070929 ], [ -122.820957813999911, 49.07115259400009 ], [ -122.820709379, 49.071161097000065 ], [ -122.820272596000024, 49.071007313000095 ], [ -122.818322312999939, 49.069259801000115 ], [ -122.817474924999928, 49.068881003000151 ], [ -122.816940289999977, 49.068798411000095 ] ], [ [ -122.808480356999979, 49.048788901000172 ], [ -122.808480735999964, 49.048690250000057 ], [ -122.807249066999972, 49.048688199000047 ], [ -122.80724882, 49.048752285000035 ], [ -122.808480356999979, 49.048788901000172 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "438951918", "BldgCostT": "274111668", "sL_LossRatio": "0.743467473189908", "sL_AssetLoss": "2889770", "sL_BldgLoss": "2148450", "sL_StrLoss": "1172530", "sL_NStrLoss": "975920", "sL_ContLoss": "741320", "geom_point": "0101000020E6100000C2C92EFF7EB35EC0098CDDBA72874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793808965999915, 49.052865613000044 ], [ -122.794078983999924, 49.052791486000089 ], [ -122.794079213999979, 49.052791552000016 ], [ -122.79432174899992, 49.052795595000134 ], [ -122.795680180999938, 49.052818496000036 ], [ -122.797119600999963, 49.052832597000105 ], [ -122.798811690000022, 49.052837132000057 ], [ -122.800000189999977, 49.052840306000064 ], [ -122.801236021999912, 49.052843588000044 ], [ -122.801251803999961, 49.052354721000071 ], [ -122.801262891999968, 49.051853971000128 ], [ -122.801261188999931, 49.051719635000062 ], [ -122.801856799999911, 49.052183869000039 ], [ -122.801916954999982, 49.052230777000034 ], [ -122.802721876999954, 49.052858097000104 ], [ -122.803216622999912, 49.053282888000133 ], [ -122.803244026999977, 49.053381931000061 ], [ -122.804014117999884, 49.054020374000075 ], [ -122.805883449999968, 49.055525127000067 ], [ -122.806674031999947, 49.056165065000101 ], [ -122.807088300999936, 49.05650720200007 ], [ -122.807617846999918, 49.056964561000093 ], [ -122.808242156999981, 49.057456224000148 ], [ -122.808701744999894, 49.057816830000085 ], [ -122.808841760999911, 49.057929150000142 ], [ -122.808924623999957, 49.058057790000078 ], [ -122.809834719999969, 49.058871550000077 ], [ -122.811571636999957, 49.060237765000117 ], [ -122.811647441999952, 49.060297378000065 ], [ -122.811727633, 49.060360465000095 ], [ -122.812164926999941, 49.060704381000079 ], [ -122.812254689999918, 49.061892105000076 ], [ -122.812252143999942, 49.062161718 ], [ -122.81224429699995, 49.062984034000138 ], [ -122.812239812, 49.063389412000063 ], [ -122.812238051999941, 49.063575030000074 ], [ -122.812228827999931, 49.064110056000054 ], [ -122.812222842999944, 49.064520057000074 ], [ -122.812205455999958, 49.06571163900005 ], [ -122.812384471, 49.066488324000098 ], [ -122.812450771999949, 49.066776139000055 ], [ -122.810237504, 49.065159408000042 ], [ -122.805032282999917, 49.061356698000033 ], [ -122.804986807999953, 49.061322008000054 ], [ -122.804929601999945, 49.061277906000029 ], [ -122.803689079999955, 49.060374978000084 ], [ -122.801254944999968, 49.058603161000036 ], [ -122.801177021999933, 49.058546436000022 ], [ -122.799997097999949, 49.057686652000086 ], [ -122.793548205999954, 49.052986717000081 ], [ -122.7937750899999, 49.052881335000052 ], [ -122.793808965999915, 49.052865613000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217072667", "BldgCostT": "130156667", "sL_LossRatio": "0.676778372193308", "sL_AssetLoss": "2342170", "sL_BldgLoss": "1585130", "sL_StrLoss": "733470", "sL_NStrLoss": "851660", "sL_ContLoss": "757040", "geom_point": "0101000020E61000006714D39E75B35EC058D81C5252864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80475787899999, 49.045625259000069 ], [ -122.806718111999942, 49.045638489000112 ], [ -122.806720513999934, 49.045735582000113 ], [ -122.806736194999942, 49.046373511000063 ], [ -122.806939195999973, 49.046624695000098 ], [ -122.806780718999974, 49.046820994000022 ], [ -122.806713019999933, 49.047010911000086 ], [ -122.8067047099999, 49.047731595000094 ], [ -122.806816387, 49.047917904000052 ], [ -122.806787766, 49.048534904000078 ], [ -122.806778510999948, 49.04863668900007 ], [ -122.806763759999953, 49.049037924000068 ], [ -122.806729919999981, 49.04995840600013 ], [ -122.806734338999931, 49.050502476000126 ], [ -122.806745191999951, 49.051832404000017 ], [ -122.806747598999948, 49.052851105000066 ], [ -122.806747653999963, 49.052894106000025 ], [ -122.806676511999953, 49.052894678000044 ], [ -122.806028850999937, 49.05302411600006 ], [ -122.805676729999917, 49.053152429000065 ], [ -122.80510225699993, 49.05345167100009 ], [ -122.804014117999884, 49.054020374000075 ], [ -122.803244026999977, 49.053381931000061 ], [ -122.803216622999912, 49.053282888000133 ], [ -122.802721876999954, 49.052858097000104 ], [ -122.801916954999982, 49.052230777000034 ], [ -122.801856799999911, 49.052183869000039 ], [ -122.801261188999931, 49.051719635000062 ], [ -122.801273645999984, 49.051537969000115 ], [ -122.801232927999962, 49.051434020000016 ], [ -122.801223188999955, 49.051176879000138 ], [ -122.801188666999963, 49.050185438000057 ], [ -122.801172171999923, 49.04899083800003 ], [ -122.801167164999981, 49.048724847000081 ], [ -122.801238807999979, 49.048617924000041 ], [ -122.801204605999942, 49.045668130000053 ], [ -122.801370511999963, 49.045668079000073 ], [ -122.80223820499999, 49.045667781000105 ], [ -122.80260098299999, 49.045667639000037 ], [ -122.803421956999927, 49.045667349000084 ], [ -122.803536453999968, 49.045667317000081 ], [ -122.803682016, 49.04563829000007 ], [ -122.803984482999979, 49.045634630000066 ], [ -122.80475787899999, 49.045625259000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200239001", "BldgCostT": "120355001", "sL_LossRatio": "0.700228634931045", "sL_AssetLoss": "1756512", "sL_BldgLoss": "1229960", "sL_StrLoss": "602680", "sL_NStrLoss": "627280", "sL_ContLoss": "526552", "geom_point": "0101000020E6100000BEB8CF2202B35EC0FF40EA5D59864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79348728699992, 49.052942310000077 ], [ -122.79317601299995, 49.052663618000054 ], [ -122.79016289899999, 49.049965421000103 ], [ -122.790227253999916, 49.049822071000058 ], [ -122.790226613999891, 49.049806977000102 ], [ -122.79020204099993, 49.049203254000048 ], [ -122.791674782999948, 49.04920761900015 ], [ -122.791721423999959, 49.049207663000075 ], [ -122.792816297999948, 49.049208393000114 ], [ -122.793001440999944, 49.049208508000099 ], [ -122.79384271399999, 49.049209700000091 ], [ -122.795695628999951, 49.049212337000036 ], [ -122.796663490999919, 49.049219601000054 ], [ -122.797613510999966, 49.049227212000098 ], [ -122.797876964999958, 49.049115207000092 ], [ -122.793570282999923, 49.045631442000037 ], [ -122.793727501999967, 49.045632534000063 ], [ -122.794420586999962, 49.04563702300004 ], [ -122.795705538999954, 49.045645644000039 ], [ -122.797041703, 49.045651128000053 ], [ -122.797178514999956, 49.045651690000071 ], [ -122.798432991999974, 49.045656852000093 ], [ -122.798569805999975, 49.04565741200004 ], [ -122.79973154, 49.04566214800009 ], [ -122.799868351999962, 49.04566270500009 ], [ -122.801204605999942, 49.045668130000053 ], [ -122.801238807999979, 49.048617924000041 ], [ -122.801167164999981, 49.048724847000081 ], [ -122.801172171999923, 49.04899083800003 ], [ -122.801188666999963, 49.050185438000057 ], [ -122.801223188999955, 49.051176879000138 ], [ -122.801232927999962, 49.051434020000016 ], [ -122.801273645999984, 49.051537969000115 ], [ -122.801261188999931, 49.051719635000062 ], [ -122.801262891999968, 49.051853971000128 ], [ -122.801251803999961, 49.052354721000071 ], [ -122.801236021999912, 49.052843588000044 ], [ -122.800000189999977, 49.052840306000064 ], [ -122.798811690000022, 49.052837132000057 ], [ -122.797119600999963, 49.052832597000105 ], [ -122.795680180999938, 49.052818496000036 ], [ -122.79432174899992, 49.052795595000134 ], [ -122.794079213999979, 49.052791552000016 ], [ -122.794078983999924, 49.052791486000089 ], [ -122.793808965999915, 49.052865613000044 ], [ -122.7937750899999, 49.052881335000052 ], [ -122.793548205999954, 49.052986717000081 ], [ -122.79348728699992, 49.052942310000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "421149478", "BldgCostT": "273790382", "sL_LossRatio": "0.762704694284138", "sL_AssetLoss": "3498510", "sL_BldgLoss": "2668330", "sL_StrLoss": "1202380", "sL_NStrLoss": "1465950", "sL_ContLoss": "830180", "geom_point": "0101000020E61000006E1D6679A8B25EC0BA283FEB12864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790191135999919, 49.045627795000016 ], [ -122.793570282999923, 49.045631442000037 ], [ -122.797876964999958, 49.049115207000092 ], [ -122.797613510999966, 49.049227212000098 ], [ -122.796663490999919, 49.049219601000054 ], [ -122.795695628999951, 49.049212337000036 ], [ -122.79384271399999, 49.049209700000091 ], [ -122.793001440999944, 49.049208508000099 ], [ -122.792816297999948, 49.049208393000114 ], [ -122.791721423999959, 49.049207663000075 ], [ -122.791674782999948, 49.04920761900015 ], [ -122.79020204099993, 49.049203254000048 ], [ -122.790226613999891, 49.049806977000102 ], [ -122.790227253999916, 49.049822071000058 ], [ -122.79016289899999, 49.049965421000103 ], [ -122.787389625999978, 49.047481644000165 ], [ -122.785259853999946, 49.045601903 ], [ -122.78557848199992, 49.045602453000043 ], [ -122.787454298999975, 49.045610838000165 ], [ -122.788397573999987, 49.045616523000078 ], [ -122.790191135999919, 49.045627795000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262084588", "BldgCostT": "162395373", "sL_LossRatio": "0.681650067061161", "sL_AssetLoss": "4551815", "sL_BldgLoss": "3102745", "sL_StrLoss": "1209135", "sL_NStrLoss": "1893610", "sL_ContLoss": "1449070", "geom_point": "0101000020E610000026FFFE5ABFB25EC01A56223760854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793997033000011, 49.038353805000014 ], [ -122.795716795999965, 49.038358686000059 ], [ -122.795720095, 49.039266285000039 ], [ -122.795723213999963, 49.040155902000024 ], [ -122.795746606999927, 49.041128198000109 ], [ -122.795746263999945, 49.04196897500001 ], [ -122.795707721000014, 49.045509850000045 ], [ -122.795707128999979, 49.045562779000129 ], [ -122.795705538999954, 49.045645644000039 ], [ -122.794420586999962, 49.04563702300004 ], [ -122.793727501999967, 49.045632534000063 ], [ -122.793570282999923, 49.045631442000037 ], [ -122.790191135999919, 49.045627795000016 ], [ -122.790189240999894, 49.04555565000004 ], [ -122.790204512999978, 49.044003301000075 ], [ -122.78990860299993, 49.043562622000081 ], [ -122.789850903999962, 49.043378992000079 ], [ -122.789862118999949, 49.043139307000025 ], [ -122.790031852999974, 49.042836471000072 ], [ -122.789859063000023, 49.042605084000094 ], [ -122.790054052999935, 49.042454104000093 ], [ -122.79016793699995, 49.042250245000105 ], [ -122.790185644999966, 49.04054294900002 ], [ -122.790166115999938, 49.038343403000056 ], [ -122.792979815999942, 49.038350906000069 ], [ -122.793997033000011, 49.038353805000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111759864", "BldgCostT": "66415580", "sL_LossRatio": "0.69210534007541", "sL_AssetLoss": "2052780", "sL_BldgLoss": "1420740", "sL_StrLoss": "589650", "sL_NStrLoss": "831090", "sL_ContLoss": "632040", "geom_point": "0101000020E6100000FED5A1A203B35EC03B9745D56D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795720095, 49.039266285000039 ], [ -122.7984718, 49.039260116000051 ], [ -122.798471454999984, 49.040027256000066 ], [ -122.798471405, 49.040161291000089 ], [ -122.798484371999976, 49.040529397000078 ], [ -122.798476217999976, 49.041306898000052 ], [ -122.798449597999976, 49.042032516000056 ], [ -122.798458979999964, 49.045496623000062 ], [ -122.798459172999941, 49.045577299000065 ], [ -122.797078520999918, 49.045567647000077 ], [ -122.795707128999979, 49.045562779000129 ], [ -122.795707721000014, 49.045509850000045 ], [ -122.795746263999945, 49.04196897500001 ], [ -122.795746606999927, 49.041128198000109 ], [ -122.795723213999963, 49.040155902000024 ], [ -122.795720095, 49.039266285000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "706395178", "BldgCostT": "481207070", "sL_LossRatio": "0.750818322073834", "sL_AssetLoss": "4939681", "sL_BldgLoss": "3708803", "sL_StrLoss": "1844503", "sL_NStrLoss": "1864300", "sL_ContLoss": "1230878", "geom_point": "0101000020E61000007B3193C925B35EC0B89A09E12C854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.798471454999984, 49.040027256000066 ], [ -122.7984718, 49.039260116000051 ], [ -122.795720095, 49.039266285000039 ], [ -122.795716795999965, 49.038358686000059 ], [ -122.795713924999944, 49.037368487000059 ], [ -122.795711592999922, 49.036564200000029 ], [ -122.795905684, 49.036563360000073 ], [ -122.798958692, 49.036550198000079 ], [ -122.799874744999954, 49.036551415000069 ], [ -122.799996294000024, 49.036552822000047 ], [ -122.801108478999979, 49.036565665000076 ], [ -122.801135779, 49.038359905000071 ], [ -122.801136205999981, 49.038493312000114 ], [ -122.801191756999955, 49.038580586000059 ], [ -122.801204701999922, 49.04029574200014 ], [ -122.801206051999969, 49.040475596000114 ], [ -122.801206086999983, 49.040481687000124 ], [ -122.801217484999981, 49.041992454000074 ], [ -122.801206806, 49.045596097000029 ], [ -122.801204605999942, 49.045668130000053 ], [ -122.799868351999962, 49.04566270500009 ], [ -122.79973154, 49.04566214800009 ], [ -122.798569805999975, 49.04565741200004 ], [ -122.798432991999974, 49.045656852000093 ], [ -122.797178514999956, 49.045651690000071 ], [ -122.797041703, 49.045651128000053 ], [ -122.795705538999954, 49.045645644000039 ], [ -122.795707128999979, 49.045562779000129 ], [ -122.797078520999918, 49.045567647000077 ], [ -122.798459172999941, 49.045577299000065 ], [ -122.798458979999964, 49.045496623000062 ], [ -122.798449597999976, 49.042032516000056 ], [ -122.798476217999976, 49.041306898000052 ], [ -122.798484371999976, 49.040529397000078 ], [ -122.798471405, 49.040161291000089 ], [ -122.798471454999984, 49.040027256000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "265623157", "BldgCostT": "173657695", "sL_LossRatio": "0.782675338976568", "sL_AssetLoss": "3176547", "sL_BldgLoss": "2486205", "sL_StrLoss": "1165595", "sL_NStrLoss": "1320610", "sL_ContLoss": "690342", "geom_point": "0101000020E61000001FD60A896AB35EC08B485F31B8844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80280720399999, 49.0347237410001 ], [ -122.803182179999936, 49.034639334000047 ], [ -122.804012840999931, 49.035746459000023 ], [ -122.804512268999972, 49.036220039000035 ], [ -122.804868138999936, 49.036513618000065 ], [ -122.805244430999963, 49.036729410000106 ], [ -122.80552255, 49.036841325000061 ], [ -122.805741569999952, 49.036897403000125 ], [ -122.806028092999966, 49.036946491000052 ], [ -122.806753266999934, 49.036999592000051 ], [ -122.806741427999953, 49.037455490000077 ], [ -122.806721927, 49.038206812000034 ], [ -122.806718179999976, 49.038350395000116 ], [ -122.805187868999923, 49.038353528000123 ], [ -122.804409374, 49.038355074000108 ], [ -122.80376828299994, 49.038356339000075 ], [ -122.802355483, 49.038360199000088 ], [ -122.801251942999968, 49.038361150000092 ], [ -122.801238254999987, 49.038361169000034 ], [ -122.801135779, 49.038359905000071 ], [ -122.801108478999979, 49.036565665000076 ], [ -122.801113934999989, 49.036166187000063 ], [ -122.801133311999962, 49.034748635000071 ], [ -122.801290584999933, 49.03474790900006 ], [ -122.802395189999956, 49.034750219000117 ], [ -122.80280720399999, 49.0347237410001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229920803", "BldgCostT": "149263746", "sL_LossRatio": "0.731225311389414", "sL_AssetLoss": "2644438", "sL_BldgLoss": "1933680", "sL_StrLoss": "961670", "sL_NStrLoss": "972010", "sL_ContLoss": "710758", "geom_point": "0101000020E6100000E10873379FB35EC0E37AF4E925854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806689587999969, 49.042062610000094 ], [ -122.806290780999973, 49.042014583000018 ], [ -122.80546089799995, 49.04199180200002 ], [ -122.803514196999942, 49.042022093000028 ], [ -122.802521213999967, 49.042009299000092 ], [ -122.801217484999981, 49.041992454000074 ], [ -122.801206086999983, 49.040481687000124 ], [ -122.801206051999969, 49.040475596000114 ], [ -122.801204701999922, 49.04029574200014 ], [ -122.801191756999955, 49.038580586000059 ], [ -122.801136205999981, 49.038493312000114 ], [ -122.801135779, 49.038359905000071 ], [ -122.801238254999987, 49.038361169000034 ], [ -122.801251942999968, 49.038361150000092 ], [ -122.802355483, 49.038360199000088 ], [ -122.80376828299994, 49.038356339000075 ], [ -122.804409374, 49.038355074000108 ], [ -122.805187868999923, 49.038353528000123 ], [ -122.806718179999976, 49.038350395000116 ], [ -122.80691315699994, 49.038351612000099 ], [ -122.81099769399998, 49.038376701000097 ], [ -122.811962, 49.038378655000017 ], [ -122.812233702999933, 49.038379166 ], [ -122.812223314999954, 49.040446324000129 ], [ -122.812222194999961, 49.040667893000055 ], [ -122.811946144, 49.040678480000111 ], [ -122.810917741999958, 49.040717835000038 ], [ -122.810764700999968, 49.040723697000054 ], [ -122.810852906999983, 49.040974202000044 ], [ -122.810853844999954, 49.041100728000067 ], [ -122.810856402999917, 49.041442898000092 ], [ -122.810859544, 49.042036247000055 ], [ -122.810861998999954, 49.042500193000137 ], [ -122.810810731999965, 49.042500113000088 ], [ -122.808544319999939, 49.042496203000027 ], [ -122.808071996999956, 49.042464206000076 ], [ -122.807771495999958, 49.042399389000067 ], [ -122.807023698999942, 49.042176088000083 ], [ -122.806689587999969, 49.042062610000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113065584", "BldgCostT": "76238334", "sL_LossRatio": "0.712900997600053", "sL_AssetLoss": "2123797", "sL_BldgLoss": "1514057", "sL_StrLoss": "687287", "sL_NStrLoss": "826770", "sL_ContLoss": "609740", "geom_point": "0101000020E6100000566301FADAB35EC0835C90CAA0844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.811886755000018, 49.03297327100006 ], [ -122.812197199999943, 49.032973408000053 ], [ -122.812213017, 49.035681189000051 ], [ -122.812233702999933, 49.038379166 ], [ -122.811962, 49.038378655000017 ], [ -122.81099769399998, 49.038376701000097 ], [ -122.80691315699994, 49.038351612000099 ], [ -122.806718179999976, 49.038350395000116 ], [ -122.806721927, 49.038206812000034 ], [ -122.806741427999953, 49.037455490000077 ], [ -122.806753266999934, 49.036999592000051 ], [ -122.807183321, 49.036998804000085 ], [ -122.807751583999973, 49.036997745000072 ], [ -122.808385698, 49.036862490000054 ], [ -122.808859102, 49.036598126000086 ], [ -122.809146854999966, 49.036290327000046 ], [ -122.809310904999933, 49.035950928000013 ], [ -122.809339462999958, 49.035673319000054 ], [ -122.809335163999947, 49.035036910000017 ], [ -122.809332758999957, 49.034712400000075 ], [ -122.809212475999971, 49.034432166000016 ], [ -122.808954930999917, 49.034139726000085 ], [ -122.810327715999975, 49.033260386000038 ], [ -122.810653190999943, 49.033097903000019 ], [ -122.811212776, 49.032973002000041 ], [ -122.811886755000018, 49.03297327100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "244874750", "BldgCostT": "168575000", "sL_LossRatio": "0.812434239905894", "sL_AssetLoss": "2295275", "sL_BldgLoss": "1864760", "sL_StrLoss": "906460", "sL_NStrLoss": "958300", "sL_ContLoss": "430515", "geom_point": "0101000020E6100000490A6FE6C2B35EC0609288F820844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807248172999934, 49.033106612000033 ], [ -122.806848858999956, 49.033008219000081 ], [ -122.806862422999984, 49.033109565000117 ], [ -122.806717398999965, 49.033171036000127 ], [ -122.806325051999949, 49.033170178000049 ], [ -122.806155131999944, 49.033115552000083 ], [ -122.806073798999975, 49.033045531000063 ], [ -122.806085969999955, 49.03296749900008 ], [ -122.805830426999989, 49.032945465000118 ], [ -122.805083052000029, 49.032698822000015 ], [ -122.805298980999964, 49.032341140000071 ], [ -122.805309778999941, 49.031963862000055 ], [ -122.805311979999942, 49.031193382000076 ], [ -122.805340414999989, 49.031193232000135 ], [ -122.805886397000023, 49.031190632000047 ], [ -122.806081915, 49.031130671000028 ], [ -122.80669284799994, 49.031133530000012 ], [ -122.809472316999944, 49.031134208000068 ], [ -122.812219, 49.031154495000081 ], [ -122.812198849999959, 49.032835927000072 ], [ -122.812197199999943, 49.032973408000053 ], [ -122.811886755000018, 49.03297327100006 ], [ -122.811212776, 49.032973002000041 ], [ -122.810653190999943, 49.033097903000019 ], [ -122.810327715999975, 49.033260386000038 ], [ -122.808954930999917, 49.034139726000085 ], [ -122.807985443999954, 49.033521479000051 ], [ -122.80764212900003, 49.033303976000106 ], [ -122.807248172999934, 49.033106612000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "828183714", "BldgCostT": "561589513", "sL_LossRatio": "0.810340019583393", "sL_AssetLoss": "6677086", "sL_BldgLoss": "5410710", "sL_StrLoss": "2642120", "sL_NStrLoss": "2768590", "sL_ContLoss": "1266376", "geom_point": "0101000020E610000018B1813A86B35EC0FD7E8BCA5D844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804012840999931, 49.035746459000023 ], [ -122.803182179999936, 49.034639334000047 ], [ -122.80280720399999, 49.0347237410001 ], [ -122.802395189999956, 49.034750219000117 ], [ -122.801290584999933, 49.03474790900006 ], [ -122.801133311999962, 49.034748635000071 ], [ -122.801134809999951, 49.033849197000045 ], [ -122.80113501299995, 49.032930011000111 ], [ -122.801122359999908, 49.031181230000051 ], [ -122.801275299999986, 49.031183981000012 ], [ -122.803956174999939, 49.031189072000096 ], [ -122.804441326999921, 49.031189987000104 ], [ -122.805311979999942, 49.031193382000076 ], [ -122.805309778999941, 49.031963862000055 ], [ -122.805298980999964, 49.032341140000071 ], [ -122.805083052000029, 49.032698822000015 ], [ -122.805830426999989, 49.032945465000118 ], [ -122.806085969999955, 49.03296749900008 ], [ -122.806073798999975, 49.033045531000063 ], [ -122.806155131999944, 49.033115552000083 ], [ -122.806325051999949, 49.033170178000049 ], [ -122.806717398999965, 49.033171036000127 ], [ -122.806862422999984, 49.033109565000117 ], [ -122.806848858999956, 49.033008219000081 ], [ -122.807248172999934, 49.033106612000033 ], [ -122.80764212900003, 49.033303976000106 ], [ -122.807985443999954, 49.033521479000051 ], [ -122.808954930999917, 49.034139726000085 ], [ -122.809212475999971, 49.034432166000016 ], [ -122.809332758999957, 49.034712400000075 ], [ -122.809335163999947, 49.035036910000017 ], [ -122.809339462999958, 49.035673319000054 ], [ -122.809310904999933, 49.035950928000013 ], [ -122.809146854999966, 49.036290327000046 ], [ -122.808859102, 49.036598126000086 ], [ -122.808385698, 49.036862490000054 ], [ -122.807751583999973, 49.036997745000072 ], [ -122.807183321, 49.036998804000085 ], [ -122.806753266999934, 49.036999592000051 ], [ -122.806028092999966, 49.036946491000052 ], [ -122.805741569999952, 49.036897403000125 ], [ -122.80552255, 49.036841325000061 ], [ -122.805244430999963, 49.036729410000106 ], [ -122.804868138999936, 49.036513618000065 ], [ -122.804512268999972, 49.036220039000035 ], [ -122.804012840999931, 49.035746459000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "451570773", "BldgCostT": "299429159", "sL_LossRatio": "0.707354803778437", "sL_AssetLoss": "3102870", "sL_BldgLoss": "2194830", "sL_StrLoss": "995190", "sL_NStrLoss": "1199640", "sL_ContLoss": "908040", "geom_point": "0101000020E6100000D81B39FB18B35EC037C3676728844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795655982999961, 49.031085698 ], [ -122.797119746999954, 49.031093403000099 ], [ -122.798457717999966, 49.031100867000106 ], [ -122.798672135999965, 49.031164039 ], [ -122.799744932999914, 49.031170804000105 ], [ -122.800004998999967, 49.031172766000068 ], [ -122.801122359999908, 49.031181230000051 ], [ -122.80113501299995, 49.032930011000111 ], [ -122.801134809999951, 49.033849197000045 ], [ -122.799994224, 49.033844536000039 ], [ -122.795704201000021, 49.033826908 ], [ -122.795714210999904, 49.032925106000043 ], [ -122.795715882999971, 49.032024809000042 ], [ -122.795655982999961, 49.031085698 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "530617477", "BldgCostT": "363744856", "sL_LossRatio": "0.812267769224492", "sL_AssetLoss": "3676300", "sL_BldgLoss": "2986140", "sL_StrLoss": "1531920", "sL_NStrLoss": "1454220", "sL_ContLoss": "690160", "geom_point": "0101000020E6100000678423EDEBB25EC07561172481844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799994224, 49.033844536000039 ], [ -122.801134809999951, 49.033849197000045 ], [ -122.801133311999962, 49.034748635000071 ], [ -122.801113934999989, 49.036166187000063 ], [ -122.801108478999979, 49.036565665000076 ], [ -122.799996294000024, 49.036552822000047 ], [ -122.799874744999954, 49.036551415000069 ], [ -122.798958692, 49.036550198000079 ], [ -122.795905684, 49.036563360000073 ], [ -122.795711592999922, 49.036564200000029 ], [ -122.79442570599997, 49.036552806000039 ], [ -122.793730782999958, 49.036550519000038 ], [ -122.792693610999962, 49.036547098000042 ], [ -122.791467377999965, 49.0365428940001 ], [ -122.790185198999936, 49.036536987000069 ], [ -122.790188291999954, 49.035538488000107 ], [ -122.790177486999951, 49.034702691000113 ], [ -122.790153110999981, 49.033825982000124 ], [ -122.795704201000021, 49.033826908 ], [ -122.799994224, 49.033844536000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212247614", "BldgCostT": "137781936", "sL_LossRatio": "0.698526061621329", "sL_AssetLoss": "2688647", "sL_BldgLoss": "1878090", "sL_StrLoss": "856080", "sL_NStrLoss": "1022010", "sL_ContLoss": "810557", "geom_point": "0101000020E61000000A7671B8A2B25EC06CE0796F2D844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795382472999933, 49.031085581000163 ], [ -122.795655982999961, 49.031085698 ], [ -122.795715882999971, 49.032024809000042 ], [ -122.795714210999904, 49.032925106000043 ], [ -122.795704201000021, 49.033826908 ], [ -122.790153110999981, 49.033825982000124 ], [ -122.790177486999951, 49.034702691000113 ], [ -122.788663799999952, 49.03470430700002 ], [ -122.787208500999952, 49.034690497000064 ], [ -122.787209515999962, 49.034124026000079 ], [ -122.787214807999945, 49.031186701000074 ], [ -122.787281909999976, 49.031085908000136 ], [ -122.788703813999959, 49.031085210000057 ], [ -122.790160473999919, 49.031076539000033 ], [ -122.791446675999921, 49.031080235000054 ], [ -122.791633990999969, 49.031080791000086 ], [ -122.792895701999939, 49.031084406000069 ], [ -122.795382472999933, 49.031085581000163 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196688500", "BldgCostT": "134350000", "sL_LossRatio": "0.746978203262535", "sL_AssetLoss": "2974803", "sL_BldgLoss": "2222113", "sL_StrLoss": "1010833", "sL_NStrLoss": "1211280", "sL_ContLoss": "752690", "geom_point": "0101000020E61000000440266386B25EC06F3BC0D5B2844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78983899399999, 49.036997105000061 ], [ -122.788981388999972, 49.036306296000063 ], [ -122.788046712, 49.036814598000049 ], [ -122.78701409699994, 49.037373096000081 ], [ -122.785944794000017, 49.037948506000085 ], [ -122.785458585999947, 49.037562598000115 ], [ -122.785136504999954, 49.037475503000032 ], [ -122.784913180999979, 49.037382202000039 ], [ -122.78428969199993, 49.036904812000031 ], [ -122.783365087000021, 49.036156095000138 ], [ -122.786641890999974, 49.034421212000098 ], [ -122.786943998999988, 49.034661556000096 ], [ -122.787208500999952, 49.034690497000064 ], [ -122.788663799999952, 49.03470430700002 ], [ -122.790177486999951, 49.034702691000113 ], [ -122.790188291999954, 49.035538488000107 ], [ -122.790185198999936, 49.036536987000069 ], [ -122.791467377999965, 49.0365428940001 ], [ -122.792693610999962, 49.036547098000042 ], [ -122.793730782999958, 49.036550519000038 ], [ -122.79442570599997, 49.036552806000039 ], [ -122.795711592999922, 49.036564200000029 ], [ -122.795713924999944, 49.037368487000059 ], [ -122.795716795999965, 49.038358686000059 ], [ -122.793997033000011, 49.038353805000014 ], [ -122.792979815999942, 49.038350906000069 ], [ -122.790166115999938, 49.038343403000056 ], [ -122.78888071599998, 49.038344593000055 ], [ -122.787611683999899, 49.038325491000123 ], [ -122.787732788999932, 49.038135404000116 ], [ -122.78983899399999, 49.036997105000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135674334", "BldgCostT": "93593334", "sL_LossRatio": "0.801129114095724", "sL_AssetLoss": "1681141", "sL_BldgLoss": "1346811", "sL_StrLoss": "628201", "sL_NStrLoss": "718610", "sL_ContLoss": "334330", "geom_point": "0101000020E610000084DFEA8C71B25EC01CD95BEB07854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78525648899992, 49.038312697000066 ], [ -122.785944794000017, 49.037948506000085 ], [ -122.78701409699994, 49.037373096000081 ], [ -122.788046712, 49.036814598000049 ], [ -122.788981388999972, 49.036306296000063 ], [ -122.78983899399999, 49.036997105000061 ], [ -122.787732788999932, 49.038135404000116 ], [ -122.787611683999899, 49.038325491000123 ], [ -122.78888071599998, 49.038344593000055 ], [ -122.790166115999938, 49.038343403000056 ], [ -122.790185644999966, 49.04054294900002 ], [ -122.79016793699995, 49.042250245000105 ], [ -122.790054052999935, 49.042454104000093 ], [ -122.789859063000023, 49.042605084000094 ], [ -122.788793473999974, 49.041744878000053 ], [ -122.787904050999913, 49.041026827000074 ], [ -122.787770257999966, 49.040918840000067 ], [ -122.787112666999974, 49.040387919000089 ], [ -122.784551482999944, 49.038324008000124 ], [ -122.784925599999909, 49.038317994000089 ], [ -122.78525648899992, 49.038312697000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "376048833", "BldgCostT": "255663333", "sL_LossRatio": "0.726658804023843", "sL_AssetLoss": "6951861", "sL_BldgLoss": "5051631", "sL_StrLoss": "2322141", "sL_NStrLoss": "2729490", "sL_ContLoss": "1900230", "geom_point": "0101000020E61000007E7686CA3BB25EC0BF473F125D854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.783137421999953, 49.038305998000162 ], [ -122.784551482999944, 49.038324008000124 ], [ -122.787112666999974, 49.040387919000089 ], [ -122.787770257999966, 49.040918840000067 ], [ -122.787904050999913, 49.041026827000074 ], [ -122.788793473999974, 49.041744878000053 ], [ -122.789859063000023, 49.042605084000094 ], [ -122.790031852999974, 49.042836471000072 ], [ -122.789862118999949, 49.043139307000025 ], [ -122.789850903999962, 49.043378992000079 ], [ -122.78990860299993, 49.043562622000081 ], [ -122.790204512999978, 49.044003301000075 ], [ -122.790189240999894, 49.04555565000004 ], [ -122.790191135999919, 49.045627795000016 ], [ -122.788397573999987, 49.045616523000078 ], [ -122.787454298999975, 49.045610838000165 ], [ -122.78557848199992, 49.045602453000043 ], [ -122.785259853999946, 49.045601903 ], [ -122.785191376999961, 49.045543993000052 ], [ -122.78515251499995, 49.045508899000069 ], [ -122.781715099999985, 49.04240602600008 ], [ -122.779400457999941, 49.040316337000014 ], [ -122.779337077, 49.039959490000143 ], [ -122.779219610999988, 49.039297900000136 ], [ -122.779181900999959, 49.038299997000095 ], [ -122.779823981999954, 49.038308489000045 ], [ -122.780712189, 49.038317102000121 ], [ -122.781553385, 49.038314400000054 ], [ -122.78266251299999, 49.038312491000042 ], [ -122.783137421999953, 49.038305998000162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104972654", "BldgCostT": "65917309", "sL_LossRatio": "0.647349296180156", "sL_AssetLoss": "1951991", "sL_BldgLoss": "1263620", "sL_StrLoss": "503630", "sL_NStrLoss": "759990", "sL_ContLoss": "688371", "geom_point": "0101000020E6100000FE3EEAE902B25EC09F423A7EA0844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779224659999912, 49.034018618000069 ], [ -122.779189818999981, 49.032602592000082 ], [ -122.779694287999916, 49.03266280400009 ], [ -122.779745203999965, 49.032687342000038 ], [ -122.780501491999942, 49.033052010000063 ], [ -122.780818374999967, 49.033115596000073 ], [ -122.781430687999958, 49.033158307000072 ], [ -122.78175949599995, 49.033247509000077 ], [ -122.78180314, 49.033283290000085 ], [ -122.782471303999927, 49.033831189000139 ], [ -122.781266203999948, 49.034413299000093 ], [ -122.783365087000021, 49.036156095000138 ], [ -122.78428969199993, 49.036904812000031 ], [ -122.784913180999979, 49.037382202000039 ], [ -122.785136504999954, 49.037475503000032 ], [ -122.785458585999947, 49.037562598000115 ], [ -122.785944794000017, 49.037948506000085 ], [ -122.78525648899992, 49.038312697000066 ], [ -122.784925599999909, 49.038317994000089 ], [ -122.784551482999944, 49.038324008000124 ], [ -122.783137421999953, 49.038305998000162 ], [ -122.78266251299999, 49.038312491000042 ], [ -122.781553385, 49.038314400000054 ], [ -122.780712189, 49.038317102000121 ], [ -122.779823981999954, 49.038308489000045 ], [ -122.779181900999959, 49.038299997000095 ], [ -122.779167700999963, 49.036525998000116 ], [ -122.779174703999942, 49.035197686000075 ], [ -122.779180769999982, 49.03505478400006 ], [ -122.779213918999915, 49.034271825000118 ], [ -122.779224659999912, 49.034018618000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287348919", "BldgCostT": "198171669", "sL_LossRatio": "0.754020562402124", "sL_AssetLoss": "4406100", "sL_BldgLoss": "3322290", "sL_StrLoss": "1542130", "sL_NStrLoss": "1780160", "sL_ContLoss": "1083810", "geom_point": "0101000020E61000007FC8DFE6A2B15EC0BBF1930F66844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77749297, 49.038594066 ], [ -122.769166065999954, 49.031073667000122 ], [ -122.769158021999928, 49.031066348000138 ], [ -122.769265154999971, 49.031067415000074 ], [ -122.769509195999944, 49.031069704000082 ], [ -122.769757840999929, 49.031068591000114 ], [ -122.77372840299995, 49.031050598000014 ], [ -122.775520054999973, 49.031041402000056 ], [ -122.776932030999959, 49.032174333000043 ], [ -122.779224659999912, 49.034018618000069 ], [ -122.779213918999915, 49.034271825000118 ], [ -122.779180769999982, 49.03505478400006 ], [ -122.779174703999942, 49.035197686000075 ], [ -122.779167700999963, 49.036525998000116 ], [ -122.779181900999959, 49.038299997000095 ], [ -122.779219610999988, 49.039297900000136 ], [ -122.779337077, 49.039959490000143 ], [ -122.779400457999941, 49.040316337000014 ], [ -122.77749297, 49.038594066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268347305", "BldgCostT": "180909704", "sL_LossRatio": "0.785067323778597", "sL_AssetLoss": "2494958", "sL_BldgLoss": "1958710", "sL_StrLoss": "961520", "sL_NStrLoss": "997190", "sL_ContLoss": "536248", "geom_point": "0101000020E610000007720635B2B15EC0E2EA0943CB834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777803099999929, 49.027443699000138 ], [ -122.779183897999971, 49.027442788000045 ], [ -122.77917909599999, 49.029195606000023 ], [ -122.779177103999984, 49.03106558600004 ], [ -122.779212701999981, 49.031677703000049 ], [ -122.779189818999981, 49.032602592000082 ], [ -122.779224659999912, 49.034018618000069 ], [ -122.776932030999959, 49.032174333000043 ], [ -122.775520054999973, 49.031041402000056 ], [ -122.775336746000022, 49.030892913000059 ], [ -122.775282033999943, 49.030848568000089 ], [ -122.775276120999976, 49.030843791000116 ], [ -122.773326914999984, 49.029264895000018 ], [ -122.7724254, 49.028542023000114 ], [ -122.771481625999982, 49.027758398000074 ], [ -122.771548487999965, 49.027681104000088 ], [ -122.771531322999934, 49.027593153000041 ], [ -122.771783945999985, 49.027439433000048 ], [ -122.773100429999971, 49.02744028500009 ], [ -122.774312723999941, 49.027445198000073 ], [ -122.776459098999965, 49.027444796000012 ], [ -122.777803099999929, 49.027443699000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141121250", "BldgCostT": "90935000", "sL_LossRatio": "0.725673533664441", "sL_AssetLoss": "1939955", "sL_BldgLoss": "1407774", "sL_StrLoss": "660794", "sL_NStrLoss": "746980", "sL_ContLoss": "532181", "geom_point": "0101000020E610000054A9239107B25EC0D4B4E62299834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779177103999984, 49.03106558600004 ], [ -122.77917909599999, 49.029195606000023 ], [ -122.779183897999971, 49.027442788000045 ], [ -122.779207098999976, 49.025623003000078 ], [ -122.78046249499999, 49.025615606000081 ], [ -122.783258586999921, 49.025609306000035 ], [ -122.784722799999926, 49.025627901000085 ], [ -122.78470359799995, 49.027453299000115 ], [ -122.78469640499999, 49.028330888000092 ], [ -122.784688525999968, 49.029198606000058 ], [ -122.782019303999903, 49.029206006000074 ], [ -122.78201192, 49.030145807000082 ], [ -122.783388298999952, 49.030150995000035 ], [ -122.783373285999986, 49.031081488000027 ], [ -122.78066309799999, 49.031066891000059 ], [ -122.779177103999984, 49.03106558600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185744972", "BldgCostT": "124026371", "sL_LossRatio": "0.72634269226826", "sL_AssetLoss": "2731080", "sL_BldgLoss": "1983700", "sL_StrLoss": "852700", "sL_NStrLoss": "1131000", "sL_ContLoss": "747380", "geom_point": "0101000020E61000009C071B64B3B15EC02054B14A4C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777562929999988, 49.02379630500009 ], [ -122.779190902999929, 49.023778500000063 ], [ -122.779207098999976, 49.025623003000078 ], [ -122.779183897999971, 49.027442788000045 ], [ -122.777803099999929, 49.027443699000138 ], [ -122.776459098999965, 49.027444796000012 ], [ -122.774312723999941, 49.027445198000073 ], [ -122.773100429999971, 49.02744028500009 ], [ -122.77308108499993, 49.026177898000071 ], [ -122.77383159799993, 49.026158990000063 ], [ -122.774026985999981, 49.02610089000008 ], [ -122.774509287999976, 49.025808106000127 ], [ -122.77437739, 49.025679805000053 ], [ -122.774334927, 49.025404503000068 ], [ -122.774344015999972, 49.025114606000024 ], [ -122.774410899999964, 49.024938099000082 ], [ -122.774874191999942, 49.024486109000037 ], [ -122.774947517000015, 49.024394592000114 ], [ -122.77498209599996, 49.024290208000068 ], [ -122.774997868999932, 49.023823790000094 ], [ -122.777562929999988, 49.02379630500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205306213", "BldgCostT": "134749488", "sL_LossRatio": "0.727276548119154", "sL_AssetLoss": "2950322", "sL_BldgLoss": "2145700", "sL_StrLoss": "919760", "sL_NStrLoss": "1225940", "sL_ContLoss": "804622", "geom_point": "0101000020E61000002C254F820CB25EC0EF3B2B0E0C834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78419589399999, 49.022027906000076 ], [ -122.784939503999965, 49.022027586000071 ], [ -122.784890990999941, 49.023247398000088 ], [ -122.784903321999963, 49.023702898000039 ], [ -122.784846002000037, 49.023800290000025 ], [ -122.784738997999952, 49.0239449070001 ], [ -122.784722799999926, 49.025627901000085 ], [ -122.783258586999921, 49.025609306000035 ], [ -122.78046249499999, 49.025615606000081 ], [ -122.779207098999976, 49.025623003000078 ], [ -122.779190902999929, 49.023778500000063 ], [ -122.779232507999964, 49.022027692000073 ], [ -122.780634189999915, 49.022020198000078 ], [ -122.782128219999919, 49.022020002000033 ], [ -122.783573004999965, 49.022020912000123 ], [ -122.78419589399999, 49.022027906000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164276833", "BldgCostT": "107188333", "sL_LossRatio": "0.711204417347291", "sL_AssetLoss": "2399268", "sL_BldgLoss": "1706370", "sL_StrLoss": "805666", "sL_NStrLoss": "900704", "sL_ContLoss": "692898", "geom_point": "0101000020E61000006BF472F19AB15EC0CA0389D4D1824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777458214999967, 49.020207104000079 ], [ -122.779229484, 49.020209788000059 ], [ -122.779232507999964, 49.022027692000073 ], [ -122.779190902999929, 49.023778500000063 ], [ -122.777562929999988, 49.02379630500009 ], [ -122.774997868999932, 49.023823790000094 ], [ -122.774444508999949, 49.023819774000103 ], [ -122.773750673, 49.02385193700011 ], [ -122.770759713999922, 49.023830608000075 ], [ -122.770747886, 49.02315160000007 ], [ -122.770771520999944, 49.022515107000068 ], [ -122.770828395999956, 49.022383516000097 ], [ -122.77120401399999, 49.021855802000054 ], [ -122.771257697999985, 49.021672698000074 ], [ -122.771260885999965, 49.0214681960001 ], [ -122.77109869, 49.020848595000054 ], [ -122.771104819999906, 49.020188170000068 ], [ -122.771490459999924, 49.020189220000091 ], [ -122.771777618999963, 49.020189986000055 ], [ -122.772037515999941, 49.020190689000067 ], [ -122.773570311999961, 49.020194805000123 ], [ -122.775836237999954, 49.020199775000094 ], [ -122.777458214999967, 49.020207104000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115164417", "BldgCostT": "77741667", "sL_LossRatio": "0.704384452991846", "sL_AssetLoss": "1976689", "sL_BldgLoss": "1392349", "sL_StrLoss": "650009", "sL_NStrLoss": "742340", "sL_ContLoss": "584340", "geom_point": "0101000020E61000003F8FCD6555B15EC035C1FDA115834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771437399, 49.027528140000079 ], [ -122.771307291999904, 49.02751160600009 ], [ -122.771185750999976, 49.027549427000061 ], [ -122.770911289999958, 49.027327555000092 ], [ -122.768137268999922, 49.025060469000124 ], [ -122.767856555999984, 49.024831039000048 ], [ -122.768093643999947, 49.024634986000102 ], [ -122.768208888999979, 49.024539702000091 ], [ -122.768213803, 49.023817991000023 ], [ -122.768206889999931, 49.022991315000063 ], [ -122.768206566999979, 49.022932530000041 ], [ -122.768204494, 49.022572117000045 ], [ -122.768228110999971, 49.021500306000156 ], [ -122.76823048599999, 49.021072306000065 ], [ -122.768236814999952, 49.020191094000026 ], [ -122.771104819999906, 49.020188170000068 ], [ -122.77109869, 49.020848595000054 ], [ -122.771260885999965, 49.0214681960001 ], [ -122.771257697999985, 49.021672698000074 ], [ -122.77120401399999, 49.021855802000054 ], [ -122.770828395999956, 49.022383516000097 ], [ -122.770771520999944, 49.022515107000068 ], [ -122.770747886, 49.02315160000007 ], [ -122.770759713999922, 49.023830608000075 ], [ -122.773750673, 49.02385193700011 ], [ -122.774444508999949, 49.023819774000103 ], [ -122.774997868999932, 49.023823790000094 ], [ -122.77498209599996, 49.024290208000068 ], [ -122.774947517000015, 49.024394592000114 ], [ -122.774874191999942, 49.024486109000037 ], [ -122.774410899999964, 49.024938099000082 ], [ -122.774344015999972, 49.025114606000024 ], [ -122.774334927, 49.025404503000068 ], [ -122.77437739, 49.025679805000053 ], [ -122.774509287999976, 49.025808106000127 ], [ -122.774026985999981, 49.02610089000008 ], [ -122.77383159799993, 49.026158990000063 ], [ -122.77308108499993, 49.026177898000071 ], [ -122.773100429999971, 49.02744028500009 ], [ -122.771783945999985, 49.027439433000048 ], [ -122.771531322999934, 49.027593153000041 ], [ -122.771437399, 49.027528140000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124109749", "BldgCostT": "82234999", "sL_LossRatio": "0.721385448472642", "sL_AssetLoss": "1639498", "sL_BldgLoss": "1182710", "sL_StrLoss": "574830", "sL_NStrLoss": "607880", "sL_ContLoss": "456788", "geom_point": "0101000020E610000049CD693F27B15EC01DB6986570834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.765918131999982, 49.027945058000043 ], [ -122.765358536999926, 49.027064789000086 ], [ -122.764513331, 49.025622778000063 ], [ -122.764528758999973, 49.025400378000072 ], [ -122.764382805999929, 49.025400080000104 ], [ -122.764260456999978, 49.025191328000048 ], [ -122.763890858999972, 49.024560680000022 ], [ -122.763572258999943, 49.024017042000025 ], [ -122.763150436999979, 49.023297207000084 ], [ -122.763101234999937, 49.023213296000037 ], [ -122.76098043699993, 49.01959399200009 ], [ -122.760563654999956, 49.018882636000065 ], [ -122.759869088999977, 49.017733674000048 ], [ -122.75927393399995, 49.016749104000098 ], [ -122.759754185999981, 49.016722164000115 ], [ -122.759776580000022, 49.016761572000036 ], [ -122.760910030000019, 49.018757000000129 ], [ -122.76430356799996, 49.024732952000072 ], [ -122.764046642999986, 49.024167638000037 ], [ -122.764022901999937, 49.02411544600006 ], [ -122.764010519999957, 49.024088193000054 ], [ -122.763588445999986, 49.02315942300006 ], [ -122.763430807999939, 49.022633734000138 ], [ -122.763403453999928, 49.021924510000069 ], [ -122.763592007999989, 49.021393938000067 ], [ -122.764257399999948, 49.021930433000065 ], [ -122.764374283, 49.022024633000051 ], [ -122.766672907999961, 49.023877167000094 ], [ -122.766821097000019, 49.023996586000138 ], [ -122.767077625999946, 49.023801803 ], [ -122.768213803, 49.023817991000023 ], [ -122.768208888999979, 49.024539702000091 ], [ -122.768093643999947, 49.024634986000102 ], [ -122.767856555999984, 49.024831039000048 ], [ -122.768137268999922, 49.025060469000124 ], [ -122.770911289999958, 49.027327555000092 ], [ -122.771185750999976, 49.027549427000061 ], [ -122.771307291999904, 49.02751160600009 ], [ -122.771437399, 49.027528140000079 ], [ -122.771531322999934, 49.027593153000041 ], [ -122.771548487999965, 49.027681104000088 ], [ -122.771481625999982, 49.027758398000074 ], [ -122.7724254, 49.028542023000114 ], [ -122.773326914999984, 49.029264895000018 ], [ -122.775276120999976, 49.030843791000116 ], [ -122.775282033999943, 49.030848568000089 ], [ -122.775336746000022, 49.030892913000059 ], [ -122.775520054999973, 49.031041402000056 ], [ -122.77372840299995, 49.031050598000014 ], [ -122.769757840999929, 49.031068591000114 ], [ -122.769509195999944, 49.031069704000082 ], [ -122.769265154999971, 49.031067415000074 ], [ -122.769158021999928, 49.031066348000138 ], [ -122.768032608999988, 49.03002622100005 ], [ -122.766716725999942, 49.028809997000046 ], [ -122.765918131999982, 49.027945058000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130008000", "BldgCostT": "85980000", "sL_LossRatio": "0.734394474140129", "sL_AssetLoss": "1678508", "sL_BldgLoss": "1232687", "sL_StrLoss": "586680", "sL_NStrLoss": "646007", "sL_ContLoss": "445821", "geom_point": "0101000020E61000006227ABD84EB25EC0D02AF188A3834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.783373285999986, 49.031081488000027 ], [ -122.783388298999952, 49.030150995000035 ], [ -122.78201192, 49.030145807000082 ], [ -122.782019303999903, 49.029206006000074 ], [ -122.784688525999968, 49.029198606000058 ], [ -122.78469640499999, 49.028330888000092 ], [ -122.78470359799995, 49.027453299000115 ], [ -122.784722799999926, 49.025627901000085 ], [ -122.78616059699999, 49.025632290000011 ], [ -122.787463199999962, 49.025636094000028 ], [ -122.788737006999952, 49.025640007000035 ], [ -122.788740694999944, 49.027471402000067 ], [ -122.788725510999939, 49.028347905000075 ], [ -122.788743494999935, 49.029218114000095 ], [ -122.787385018999913, 49.029211704000026 ], [ -122.787367898999932, 49.030928102000125 ], [ -122.787281909999976, 49.031085908000136 ], [ -122.785353897000022, 49.031085013000087 ], [ -122.784681493, 49.031084720000074 ], [ -122.783373285999986, 49.031081488000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87893208", "BldgCostT": "53134715", "sL_LossRatio": "0.658649823682495", "sL_AssetLoss": "1558552", "sL_BldgLoss": "1026540", "sL_StrLoss": "463250", "sL_NStrLoss": "563290", "sL_ContLoss": "532012", "geom_point": "0101000020E6100000811A193F28B25EC073476A6739844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779189818999981, 49.032602592000082 ], [ -122.779212701999981, 49.031677703000049 ], [ -122.779177103999984, 49.03106558600004 ], [ -122.78066309799999, 49.031066891000059 ], [ -122.783373285999986, 49.031081488000027 ], [ -122.784681493, 49.031084720000074 ], [ -122.785353897000022, 49.031085013000087 ], [ -122.787281909999976, 49.031085908000136 ], [ -122.787214807999945, 49.031186701000074 ], [ -122.787209515999962, 49.034124026000079 ], [ -122.787208500999952, 49.034690497000064 ], [ -122.786943998999988, 49.034661556000096 ], [ -122.786641890999974, 49.034421212000098 ], [ -122.783365087000021, 49.036156095000138 ], [ -122.781266203999948, 49.034413299000093 ], [ -122.782471303999927, 49.033831189000139 ], [ -122.78180314, 49.033283290000085 ], [ -122.78175949599995, 49.033247509000077 ], [ -122.781430687999958, 49.033158307000072 ], [ -122.780818374999967, 49.033115596000073 ], [ -122.780501491999942, 49.033052010000063 ], [ -122.779745203999965, 49.032687342000038 ], [ -122.779694287999916, 49.03266280400009 ], [ -122.779189818999981, 49.032602592000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148634167", "BldgCostT": "96516667", "sL_LossRatio": "0.765629066420797", "sL_AssetLoss": "1302589", "sL_BldgLoss": "997300", "sL_StrLoss": "533710", "sL_NStrLoss": "463590", "sL_ContLoss": "305289", "geom_point": "0101000020E61000007E234611CAB05EC0D55DC8D9AA854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767850166999935, 49.038347377000086 ], [ -122.768161311999975, 49.038345505000109 ], [ -122.768124547999918, 49.042133077000045 ], [ -122.768082597999921, 49.042874490000038 ], [ -122.768109003999939, 49.043736887000051 ], [ -122.768114418, 49.044700051000063 ], [ -122.768119500999916, 49.045597374000089 ], [ -122.768116118999927, 49.045988450000067 ], [ -122.768110914999966, 49.04659495700006 ], [ -122.768109567999915, 49.046753036000077 ], [ -122.76810442399993, 49.047346739000076 ], [ -122.768103286999946, 49.047476355000072 ], [ -122.768093503, 49.04861509200002 ], [ -122.76809104499992, 49.048902926000046 ], [ -122.768087521000012, 49.049313090000048 ], [ -122.766964240999968, 49.049313046000044 ], [ -122.76540406, 49.049312933000074 ], [ -122.762481094999899, 49.049312710000017 ], [ -122.761052120999935, 49.049308404000087 ], [ -122.761059522999972, 49.050913699000041 ], [ -122.76100541299999, 49.051141801000043 ], [ -122.760849008999941, 49.051285797000098 ], [ -122.76076691099999, 49.051325702000078 ], [ -122.760688800999972, 49.051366605000055 ], [ -122.760392907000025, 49.051413598000067 ], [ -122.758996697999947, 49.051427303 ], [ -122.756950008999951, 49.051453790000075 ], [ -122.756954032999928, 49.050616044000066 ], [ -122.756956009999968, 49.050211248000053 ], [ -122.756958224999948, 49.049752472000094 ], [ -122.756960307999961, 49.049320009000013 ], [ -122.756965633000036, 49.048826131000055 ], [ -122.756976598999941, 49.047818624000072 ], [ -122.75698480799997, 49.047063004000059 ], [ -122.757, 49.045663096000098 ], [ -122.757004388999931, 49.045164755000052 ], [ -122.757016423999985, 49.043794397000049 ], [ -122.757025003999956, 49.042905208000022 ], [ -122.757031884999918, 49.042194193000064 ], [ -122.75704088599997, 49.041260728000054 ], [ -122.757047262999961, 49.040604081000033 ], [ -122.75705039799999, 49.040278799000106 ], [ -122.75706788899997, 49.038643221000022 ], [ -122.757070487999954, 49.038397590000123 ], [ -122.759174651999956, 49.038380021000123 ], [ -122.760155903999973, 49.038371785000045 ], [ -122.761514429999977, 49.03837078800003 ], [ -122.76412800599999, 49.038368828000024 ], [ -122.764296690999913, 49.038368708000043 ], [ -122.765454840999936, 49.038361777000034 ], [ -122.765714947, 49.038360197000038 ], [ -122.767083706, 49.038351996000095 ], [ -122.767248027, 49.038351005000024 ], [ -122.767850166999935, 49.038347377000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104232916", "BldgCostT": "70621666", "sL_LossRatio": "0.726874771338148", "sL_AssetLoss": "1954305", "sL_BldgLoss": "1420535", "sL_StrLoss": "647935", "sL_NStrLoss": "772600", "sL_ContLoss": "533770", "geom_point": "0101000020E610000085AA14121BB05EC0C6B69070EF844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.746049773999943, 49.038427824000095 ], [ -122.746165013, 49.03477350800005 ], [ -122.746134585999926, 49.031152194000086 ], [ -122.747075545999976, 49.031147001000093 ], [ -122.74870350499998, 49.031138010000042 ], [ -122.751357073999955, 49.031123264 ], [ -122.751619411000021, 49.031121805000026 ], [ -122.751633073999969, 49.031121653000106 ], [ -122.754161662999948, 49.031093194000036 ], [ -122.757133677999974, 49.031059701000039 ], [ -122.757107214999962, 49.033524766000056 ], [ -122.757094492999926, 49.03471040900012 ], [ -122.757088993999957, 49.035557770000068 ], [ -122.757084421999977, 49.036259423000054 ], [ -122.757076865999963, 49.037419809000049 ], [ -122.757070487999954, 49.038397590000123 ], [ -122.75706788899997, 49.038643221000022 ], [ -122.75705039799999, 49.040278799000106 ], [ -122.757047262999961, 49.040604081000033 ], [ -122.75704088599997, 49.041260728000054 ], [ -122.757031884999918, 49.042194193000064 ], [ -122.757025003999956, 49.042905208000022 ], [ -122.757016423999985, 49.043794397000049 ], [ -122.757004388999931, 49.045164755000052 ], [ -122.757, 49.045663096000098 ], [ -122.753734446999943, 49.045666763000035 ], [ -122.753447098999914, 49.045667082000101 ], [ -122.752311306999943, 49.04566833600007 ], [ -122.750961289999935, 49.045669802000099 ], [ -122.750846982999946, 49.045669736000058 ], [ -122.748862745999986, 49.045668615000032 ], [ -122.746201925999912, 49.04566709700007 ], [ -122.746207106999975, 49.045087703000014 ], [ -122.746211361999954, 49.044610953000081 ], [ -122.746216412999985, 49.044049791000113 ], [ -122.746246974999963, 49.042155944000079 ], [ -122.746260345999971, 49.041328339000124 ], [ -122.746279388999966, 49.040148395000102 ], [ -122.746049773999943, 49.038427824000095 ] ], [ [ -122.752621128999948, 49.034550958000054 ], [ -122.752669461999957, 49.03385695 ], [ -122.752626780999933, 49.033855658000071 ], [ -122.752710381, 49.032655205000083 ], [ -122.75080527399993, 49.032597544000105 ], [ -122.750703287999968, 49.03406113700008 ], [ -122.74881305699995, 49.03400389300009 ], [ -122.748756676999932, 49.034812478000092 ], [ -122.750250860999984, 49.034815721000037 ], [ -122.750246807999972, 49.035625313000075 ], [ -122.749836359999946, 49.03562442400009 ], [ -122.749834459999931, 49.036003262000065 ], [ -122.751476031999957, 49.036052959000067 ], [ -122.751482180000011, 49.034818379000093 ], [ -122.751892620999911, 49.034819261000095 ], [ -122.75189396399999, 49.034549397000099 ], [ -122.752621128999948, 49.034550958000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88571667", "BldgCostT": "58346667", "sL_LossRatio": "0.730894078630418", "sL_AssetLoss": "1108426", "sL_BldgLoss": "810142", "sL_StrLoss": "395002", "sL_NStrLoss": "415140", "sL_ContLoss": "298284", "geom_point": "0101000020E610000071D7540E14B05EC00156169EFA864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.752559502999958, 49.054603573000087 ], [ -122.752584056999979, 49.05425115100013 ], [ -122.752206541999939, 49.054250341000071 ], [ -122.752208442999944, 49.053867844000123 ], [ -122.75221056299992, 49.053440751000096 ], [ -122.751799969999951, 49.053439869000059 ], [ -122.751798627999946, 49.053709732000058 ], [ -122.750566838999973, 49.053707076000045 ], [ -122.750568190999942, 49.053437212000041 ], [ -122.748515221999966, 49.05343275800012 ], [ -122.748516582999983, 49.053162895000071 ], [ -122.746874217999959, 49.053159304000047 ], [ -122.746872847999938, 49.053429167000033 ], [ -122.746051660999981, 49.053427364000108 ], [ -122.746050366999953, 49.053681401000077 ], [ -122.746048801999933, 49.053988687000107 ], [ -122.746110534999971, 49.054341562000019 ], [ -122.746067376999946, 49.054506863000071 ], [ -122.746456765999966, 49.054507720000103 ], [ -122.746454018999941, 49.055047446000081 ], [ -122.746864626999965, 49.05504834700006 ], [ -122.746852294999954, 49.05747711600003 ], [ -122.746441666999914, 49.057476215000072 ], [ -122.746440293999939, 49.057746078000022 ], [ -122.746029664999966, 49.057745175000029 ], [ -122.746028289999941, 49.05801503800005 ], [ -122.745984121999967, 49.058014941000117 ], [ -122.74598905799995, 49.057447045000096 ], [ -122.745995611999959, 49.056695588000096 ], [ -122.746000064, 49.056115695000116 ], [ -122.746004447999951, 49.055549048000046 ], [ -122.746005796999953, 49.055373792000132 ], [ -122.74553021, 49.054838505000077 ], [ -122.745077110999986, 49.054176797000125 ], [ -122.745068235999923, 49.054129119000045 ], [ -122.74498634399994, 49.053689462000079 ], [ -122.744892766999953, 49.053187009000105 ], [ -122.74489110399999, 49.053177998000045 ], [ -122.744858366999921, 49.053117500000049 ], [ -122.744156292999918, 49.051848899000028 ], [ -122.743683514999972, 49.051019806000049 ], [ -122.743624692999944, 49.050687297000124 ], [ -122.743617325999935, 49.049324404000046 ], [ -122.74412292699995, 49.049325344000124 ], [ -122.745245113999914, 49.049327485000035 ], [ -122.74578884, 49.049328501000041 ], [ -122.746052560999956, 49.049328969000022 ], [ -122.74706527099994, 49.049330879000124 ], [ -122.747557948999912, 49.049331778000102 ], [ -122.748598042999959, 49.049333704000027 ], [ -122.748752709999906, 49.049333986000107 ], [ -122.749063735999982, 49.049333467000132 ], [ -122.751513149999951, 49.04932934500011 ], [ -122.753059470999972, 49.049326732000111 ], [ -122.75407232399999, 49.049325001000078 ], [ -122.754866005999972, 49.049323634000039 ], [ -122.755591226999925, 49.049322387000103 ], [ -122.756152393999983, 49.049321392000095 ], [ -122.756960307999961, 49.049320009000013 ], [ -122.756958224999948, 49.049752472000094 ], [ -122.756956009999968, 49.050211248000053 ], [ -122.756954032999928, 49.050616044000066 ], [ -122.756950008999951, 49.051453790000075 ], [ -122.75694714299999, 49.052163230000069 ], [ -122.756943818999957, 49.052997395000055 ], [ -122.756938439999971, 49.053845465000038 ], [ -122.756936524999929, 49.054151309000105 ], [ -122.756931548999887, 49.054942904000058 ], [ -122.756928383999963, 49.055440199000088 ], [ -122.756913776999966, 49.055871060000108 ], [ -122.756893058999978, 49.05648198299999 ], [ -122.756873690999981, 49.057051703000099 ], [ -122.75687107499999, 49.057236888000091 ], [ -122.756867492999945, 49.057488802000151 ], [ -122.756857794999988, 49.058172354000064 ], [ -122.756851598999958, 49.058608408000076 ], [ -122.756852150999975, 49.058711603000049 ], [ -122.756860680999964, 49.060304796000018 ], [ -122.753936392, 49.060263102000093 ], [ -122.75232132599993, 49.060240035000035 ], [ -122.749514068999957, 49.060199899000089 ], [ -122.746585452999952, 49.060157919000055 ], [ -122.74596103699993, 49.060148982000044 ], [ -122.745964219999948, 49.059866807000013 ], [ -122.745977562999897, 49.058678269000019 ], [ -122.746483081999983, 49.058693586000082 ], [ -122.746562427999933, 49.057557024000104 ], [ -122.747522347999933, 49.057586102000094 ], [ -122.747735749999933, 49.05452814300007 ], [ -122.748559206999943, 49.05455308200002 ], [ -122.748564118999965, 49.054482664000041 ], [ -122.752559502999958, 49.054603573000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126852249", "BldgCostT": "84954999", "sL_LossRatio": "0.713411760951269", "sL_AssetLoss": "2130712", "sL_BldgLoss": "1520075", "sL_StrLoss": "708947", "sL_NStrLoss": "811128", "sL_ContLoss": "610637", "geom_point": "0101000020E610000043F97AA589AF5EC03E2783C4F2854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.737939015999984, 49.053972207000122 ], [ -122.737487885999982, 49.053940974000092 ], [ -122.735341972999919, 49.053917277000096 ], [ -122.735339156999927, 49.053581435000083 ], [ -122.735332407, 49.052771800000102 ], [ -122.735329758999939, 49.052456990000067 ], [ -122.735329622999956, 49.052438532000032 ], [ -122.73532699099999, 49.052124184000064 ], [ -122.735325342999957, 49.051926192000053 ], [ -122.735322174999965, 49.051548321000055 ], [ -122.73532013, 49.051305381000077 ], [ -122.735308355999962, 49.04989341200006 ], [ -122.735303509999966, 49.049310797000039 ], [ -122.735303554999945, 49.049245911000078 ], [ -122.735305986999919, 49.045662600000085 ], [ -122.735301953999965, 49.045386393000044 ], [ -122.735265804999969, 49.042921711000112 ], [ -122.735261056999931, 49.042597795000042 ], [ -122.735238237, 49.041041549000084 ], [ -122.735231660999915, 49.040591584000069 ], [ -122.735200396999971, 49.038460108000031 ], [ -122.735886914999952, 49.038457867000069 ], [ -122.736037404999976, 49.038457367000014 ], [ -122.738103670999976, 49.038450611000052 ], [ -122.739745733999939, 49.038445227000111 ], [ -122.740659201999932, 49.038442194 ], [ -122.740895195999954, 49.038441578000075 ], [ -122.742359231999927, 49.03843769700007 ], [ -122.746039898, 49.038427850000055 ], [ -122.746049773999943, 49.038427824000095 ], [ -122.746279388999966, 49.040148395000102 ], [ -122.746260345999971, 49.041328339000124 ], [ -122.746246974999963, 49.042155944000079 ], [ -122.746216412999985, 49.044049791000113 ], [ -122.746211361999954, 49.044610953000081 ], [ -122.746207106999975, 49.045087703000014 ], [ -122.746201925999912, 49.04566709700007 ], [ -122.748862745999986, 49.045668615000032 ], [ -122.750846982999946, 49.045669736000058 ], [ -122.750961289999935, 49.045669802000099 ], [ -122.752311306999943, 49.04566833600007 ], [ -122.753447098999914, 49.045667082000101 ], [ -122.753734446999943, 49.045666763000035 ], [ -122.757, 49.045663096000098 ], [ -122.75698480799997, 49.047063004000059 ], [ -122.756976598999941, 49.047818624000072 ], [ -122.756965633000036, 49.048826131000055 ], [ -122.756960307999961, 49.049320009000013 ], [ -122.756152393999983, 49.049321392000095 ], [ -122.755591226999925, 49.049322387000103 ], [ -122.754866005999972, 49.049323634000039 ], [ -122.75407232399999, 49.049325001000078 ], [ -122.753059470999972, 49.049326732000111 ], [ -122.751513149999951, 49.04932934500011 ], [ -122.749063735999982, 49.049333467000132 ], [ -122.748752709999906, 49.049333986000107 ], [ -122.748598042999959, 49.049333704000027 ], [ -122.747557948999912, 49.049331778000102 ], [ -122.74706527099994, 49.049330879000124 ], [ -122.746052560999956, 49.049328969000022 ], [ -122.74578884, 49.049328501000041 ], [ -122.745245113999914, 49.049327485000035 ], [ -122.74412292699995, 49.049325344000124 ], [ -122.743617325999935, 49.049324404000046 ], [ -122.743624692999944, 49.050687297000124 ], [ -122.743683514999972, 49.051019806000049 ], [ -122.744156292999918, 49.051848899000028 ], [ -122.744858366999921, 49.053117500000049 ], [ -122.74489110399999, 49.053177998000045 ], [ -122.744892766999953, 49.053187009000105 ], [ -122.74498634399994, 49.053689462000079 ], [ -122.745068235999923, 49.054129119000045 ], [ -122.745077110999986, 49.054176797000125 ], [ -122.74553021, 49.054838505000077 ], [ -122.745125300999973, 49.054955109000076 ], [ -122.744717016, 49.055023781000088 ], [ -122.744250195999911, 49.055048392000067 ], [ -122.740168095999977, 49.055030013000049 ], [ -122.739896710999986, 49.054999313000103 ], [ -122.739675391999967, 49.05493670300006 ], [ -122.739600952999979, 49.054900627000066 ], [ -122.739445124999961, 49.054825103000105 ], [ -122.739276702999973, 49.054690205000057 ], [ -122.73923843799993, 49.054626714000023 ], [ -122.739117379999939, 49.054425805 ], [ -122.739074287999969, 49.05414330900004 ], [ -122.738676391999903, 49.0540628030001 ], [ -122.73809367299999, 49.053982886000057 ], [ -122.737939015999984, 49.053972207000122 ] ], [ [ -122.741543528999955, 49.051798159000086 ], [ -122.741546152999973, 49.051291828000089 ], [ -122.740600031999975, 49.051263110000093 ], [ -122.740591248, 49.051388731000046 ], [ -122.740136761, 49.051374934000073 ], [ -122.740126534999945, 49.051521143000151 ], [ -122.738789327999939, 49.051480533000053 ], [ -122.73874866099996, 49.05206173199999 ], [ -122.739489219999953, 49.052063405000069 ], [ -122.739488979999948, 49.052109301 ], [ -122.73955073499998, 49.052074362000091 ], [ -122.739690434999957, 49.052101061000016 ], [ -122.739666611999922, 49.052333672000053 ], [ -122.739898394999955, 49.052334195000135 ], [ -122.739896985999962, 49.052604058000043 ], [ -122.740307572999924, 49.052604982000069 ], [ -122.740306166999943, 49.052874846000101 ], [ -122.741127343999963, 49.05287669100008 ], [ -122.741132948999962, 49.051797237000052 ], [ -122.741543528999955, 49.051798159000086 ] ], [ [ -122.745486434999947, 49.046478174000107 ], [ -122.745422735999952, 49.046475061000045 ], [ -122.742392233999936, 49.0464684 ], [ -122.742391178999924, 49.046672589000082 ], [ -122.740749028999929, 49.046668912000101 ], [ -122.740750089999921, 49.04646475300008 ], [ -122.740284114999923, 49.046463714000019 ], [ -122.740264249999925, 49.046747794000034 ], [ -122.742859451999934, 49.046826563000074 ], [ -122.742861077999962, 49.0468033020001 ], [ -122.745458236999923, 49.04688206800008 ], [ -122.745486434999947, 49.046478174000107 ] ], [ [ -122.74076305600002, 49.043970275000078 ], [ -122.740772875999966, 49.042081230000043 ], [ -122.739951875999935, 49.042079383000114 ], [ -122.739953282999977, 49.041809519 ], [ -122.739542784999927, 49.041808593000063 ], [ -122.739543034999912, 49.041760795000108 ], [ -122.73946873499996, 49.04176046200007 ], [ -122.739344034999988, 49.041669762000048 ], [ -122.739339666999982, 49.041538267000078 ], [ -122.738741460999961, 49.041536915000087 ], [ -122.738558935999933, 49.044145998000047 ], [ -122.740351338999943, 49.044200439000072 ], [ -122.740352541, 49.043969352 ], [ -122.74076305600002, 49.043970275000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102174500", "BldgCostT": "68465000", "sL_LossRatio": "0.707730121145666", "sL_AssetLoss": "1887810", "sL_BldgLoss": "1336060", "sL_StrLoss": "616700", "sL_NStrLoss": "719360", "sL_ContLoss": "551750", "geom_point": "0101000020E6100000CC6AA10188AE5EC0C518B380E4864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.713453814999951, 49.060161207000043 ], [ -122.713463274999953, 49.057838605000057 ], [ -122.713472109999884, 49.055673613000117 ], [ -122.713473884999971, 49.055301876000087 ], [ -122.71348130599992, 49.053772682000066 ], [ -122.713485407999912, 49.052923298000039 ], [ -122.71348519599999, 49.052234290000051 ], [ -122.713485127999931, 49.051910368000087 ], [ -122.713484956999963, 49.051442561 ], [ -122.713484935999972, 49.05130765100003 ], [ -122.71348478499999, 49.050876028000111 ], [ -122.71348435099999, 49.049310600000041 ], [ -122.713483743999944, 49.047205611000024 ], [ -122.713483252999978, 49.045660032000114 ], [ -122.715253772, 49.045662167000039 ], [ -122.717716972999966, 49.045665118000031 ], [ -122.724369184999958, 49.045672807000066 ], [ -122.733303433999978, 49.045664547000051 ], [ -122.735305986999919, 49.045662600000085 ], [ -122.735303554999945, 49.049245911000078 ], [ -122.735303509999966, 49.049310797000039 ], [ -122.735308355999962, 49.04989341200006 ], [ -122.73532013, 49.051305381000077 ], [ -122.735322174999965, 49.051548321000055 ], [ -122.735325342999957, 49.051926192000053 ], [ -122.73532699099999, 49.052124184000064 ], [ -122.735329622999956, 49.052438532000032 ], [ -122.735329758999939, 49.052456990000067 ], [ -122.735332407, 49.052771800000102 ], [ -122.735339156999927, 49.053581435000083 ], [ -122.735341972999919, 49.053917277000096 ], [ -122.737487885999982, 49.053940974000092 ], [ -122.737939015999984, 49.053972207000122 ], [ -122.73809367299999, 49.053982886000057 ], [ -122.738676391999903, 49.0540628030001 ], [ -122.739074287999969, 49.05414330900004 ], [ -122.739117379999939, 49.054425805 ], [ -122.73923843799993, 49.054626714000023 ], [ -122.739276702999973, 49.054690205000057 ], [ -122.739445124999961, 49.054825103000105 ], [ -122.739600952999979, 49.054900627000066 ], [ -122.739675391999967, 49.05493670300006 ], [ -122.739896710999986, 49.054999313000103 ], [ -122.740168095999977, 49.055030013000049 ], [ -122.744250195999911, 49.055048392000067 ], [ -122.744717016, 49.055023781000088 ], [ -122.745125300999973, 49.054955109000076 ], [ -122.74553021, 49.054838505000077 ], [ -122.746005796999953, 49.055373792000132 ], [ -122.746004447999951, 49.055549048000046 ], [ -122.746000064, 49.056115695000116 ], [ -122.745995611999959, 49.056695588000096 ], [ -122.74598905799995, 49.057447045000096 ], [ -122.745984121999967, 49.058014941000117 ], [ -122.745891068999981, 49.058014737000079 ], [ -122.745863234999916, 49.058356762000102 ], [ -122.745615913999984, 49.058356184000026 ], [ -122.745614325999924, 49.058667262000014 ], [ -122.745977562999897, 49.058678269000019 ], [ -122.745964219999948, 49.059866807000013 ], [ -122.74596103699993, 49.060148982000044 ], [ -122.738295755, 49.060146236000023 ], [ -122.73743118, 49.06014521200008 ], [ -122.73628462899994, 49.060146415000055 ], [ -122.735486937999937, 49.060147409000088 ], [ -122.735306367999954, 49.060147325000038 ], [ -122.73466346799998, 49.060145797000075 ], [ -122.724420316999954, 49.060127657000073 ], [ -122.724123254999967, 49.060128577000015 ], [ -122.713453814999951, 49.060161207000043 ] ], [ [ -122.731770335999954, 49.059271432000038 ], [ -122.731840339999948, 49.05827324200002 ], [ -122.731810720999974, 49.058272341000077 ], [ -122.731829171999919, 49.058009227000092 ], [ -122.731326519999953, 49.057993928000059 ], [ -122.731342893999965, 49.057760470000034 ], [ -122.731048922999946, 49.0577515210001 ], [ -122.731301232999911, 49.054154244000145 ], [ -122.731644645999907, 49.054164697000026 ], [ -122.731672839999931, 49.053762652000053 ], [ -122.731789998999886, 49.053766217000032 ], [ -122.731810589999924, 49.053472566000018 ], [ -122.731774012999907, 49.053471452000068 ], [ -122.731789662999958, 49.053248280000034 ], [ -122.731802370999944, 49.053067048000059 ], [ -122.731680934999972, 49.053063350000066 ], [ -122.731761749999947, 49.051910853000059 ], [ -122.731692805999955, 49.051908754000081 ], [ -122.7317196179999, 49.051526377000108 ], [ -122.731446020999897, 49.05151804800002 ], [ -122.731608953999967, 49.049194488000047 ], [ -122.73134825799994, 49.049186552000052 ], [ -122.731397661999921, 49.048482050000054 ], [ -122.730852185999964, 49.048465441000111 ], [ -122.730872582999936, 49.048174607000057 ], [ -122.727709993999923, 49.048078258000082 ], [ -122.727713570999981, 49.048027294000057 ], [ -122.726131661999958, 49.047979066000046 ], [ -122.726002072999933, 49.049824090000108 ], [ -122.723146394999929, 49.04973696900003 ], [ -122.723086595999987, 49.050587558000061 ], [ -122.717626978999974, 49.050420784000039 ], [ -122.717823357999947, 49.047631988000063 ], [ -122.717464563999926, 49.047621018000072 ], [ -122.717448514999958, 49.04784890300008 ], [ -122.716838900999932, 49.047830262000083 ], [ -122.716779013999954, 49.048680493000056 ], [ -122.716809923999961, 49.04868143700007 ], [ -122.716556526999938, 49.052278711000064 ], [ -122.716304265999952, 49.052270996000097 ], [ -122.716287256, 49.052512435999986 ], [ -122.717111449999919, 49.052537640000097 ], [ -122.717092974999957, 49.052799928000042 ], [ -122.717065798999982, 49.05318575900003 ], [ -122.717670758999986, 49.053204254000065 ], [ -122.717686248999883, 49.052984310000113 ], [ -122.719588253999959, 49.053042437000094 ], [ -122.719599929999958, 49.052876551000104 ], [ -122.719617890999942, 49.052621355000056 ], [ -122.725077771999935, 49.052788028000037 ], [ -122.725059840999961, 49.053043224000056 ], [ -122.724984873999929, 49.054110103000035 ], [ -122.726299710999939, 49.054150200000024 ], [ -122.726069054000021, 49.057433767000113 ], [ -122.7263688099999, 49.057442907000059 ], [ -122.726286270999978, 49.058617912000052 ], [ -122.729443873999926, 49.058714128000112 ], [ -122.729409805999964, 49.059199565000057 ], [ -122.731770335999954, 49.059271432000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20532000", "BldgCostT": "14160000", "sL_LossRatio": "0.788279903481558", "sL_AssetLoss": "290100", "sL_BldgLoss": "228680", "sL_StrLoss": "120150", "sL_NStrLoss": "108530", "sL_ContLoss": "61420", "geom_point": "0101000020E6100000967583916CB15EC038D17497408B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.759241721999956, 49.089325972000047 ], [ -122.759920713999961, 49.087944006000043 ], [ -122.759899454999925, 49.087428435000099 ], [ -122.761820834999924, 49.08748635200007 ], [ -122.76183054799999, 49.087346681000056 ], [ -122.765798166999957, 49.087466169000024 ], [ -122.765807686999949, 49.087329078000081 ], [ -122.771271798000015, 49.087493394000028 ], [ -122.771213577999973, 49.088333150000068 ], [ -122.775689240999938, 49.088467534000152 ], [ -122.775877970999886, 49.08574141700003 ], [ -122.775983602999972, 49.085744586000011 ], [ -122.776054920999925, 49.084714318000081 ], [ -122.781518760999944, 49.084878114000034 ], [ -122.781270161999956, 49.088475338000073 ], [ -122.781164521999955, 49.088472174000117 ], [ -122.781093312999985, 49.089502438000082 ], [ -122.775760282999926, 49.089342562000084 ], [ -122.775741295999978, 49.089616808000088 ], [ -122.774021390999934, 49.089607938000022 ], [ -122.760155557999951, 49.089535382000058 ], [ -122.759241721999956, 49.089325972000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145964833", "BldgCostT": "99433333", "sL_LossRatio": "0.789199277325865", "sL_AssetLoss": "1492789", "sL_BldgLoss": "1178108", "sL_StrLoss": "646853", "sL_NStrLoss": "531255", "sL_ContLoss": "314681", "geom_point": "0101000020E61000000FBED5DF37B15EC0474C583400894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756711127999935, 49.085734110000082 ], [ -122.756719930999964, 49.084556875000018 ], [ -122.756791855999964, 49.074936496000099 ], [ -122.756826138999983, 49.067652776000052 ], [ -122.756843626999952, 49.063938209000064 ], [ -122.756860680999964, 49.060304796000018 ], [ -122.761506800999953, 49.060250513000035 ], [ -122.76570755100002, 49.060201260000042 ], [ -122.766364913999965, 49.060193554000108 ], [ -122.768036136999967, 49.060173944000056 ], [ -122.776180783999962, 49.060120122000065 ], [ -122.779145872999948, 49.060100370000086 ], [ -122.779120186999975, 49.0609665980001 ], [ -122.779108120999979, 49.061293234000054 ], [ -122.779045544999988, 49.066228909000081 ], [ -122.779115217999987, 49.066799005000092 ], [ -122.779145897, 49.067324395000085 ], [ -122.779150625999975, 49.069731603000029 ], [ -122.779142542000017, 49.071055226000048 ], [ -122.779118486999906, 49.074608795000088 ], [ -122.782895089999897, 49.074625865000023 ], [ -122.787652554999966, 49.074647141000085 ], [ -122.78999973, 49.074643405000032 ], [ -122.792628378, 49.074645705000144 ], [ -122.792820073999906, 49.074645852000103 ], [ -122.792862524999947, 49.074645887000017 ], [ -122.792874400999949, 49.074848392000099 ], [ -122.79343461500001, 49.075208706000112 ], [ -122.794021422999904, 49.075362502000054 ], [ -122.79474799399999, 49.07534690100011 ], [ -122.795994002999976, 49.075473594000094 ], [ -122.796321703999951, 49.075673004000059 ], [ -122.796332895999953, 49.075979187000016 ], [ -122.796189059999961, 49.076126276000089 ], [ -122.791944416999954, 49.075999609000085 ], [ -122.791943629999963, 49.076187934000082 ], [ -122.791315105999956, 49.076186800000059 ], [ -122.79127281299999, 49.076800829000071 ], [ -122.787771677999928, 49.076696202000072 ], [ -122.787745984999958, 49.077068813000032 ], [ -122.782283036999942, 49.07690533100007 ], [ -122.782297986999978, 49.076688918000073 ], [ -122.779457512999926, 49.07660380500009 ], [ -122.779446332999953, 49.076765515000048 ], [ -122.777837693999956, 49.0767172790001 ], [ -122.777821876999923, 49.076945955000049 ], [ -122.773767672999952, 49.076824281000029 ], [ -122.773763109999933, 49.076890152000097 ], [ -122.768300233999938, 49.076725960000054 ], [ -122.768435943, 49.074769689000036 ], [ -122.768549770999968, 49.073128702000133 ], [ -122.770631178999935, 49.073191294000075 ], [ -122.77068782799995, 49.072374051000018 ], [ -122.772050996999937, 49.072415023000055 ], [ -122.77205327199999, 49.072382185000059 ], [ -122.772848260999965, 49.072406072000021 ], [ -122.772848937999981, 49.072396304000087 ], [ -122.774032767, 49.07243186300007 ], [ -122.774039893999941, 49.072328932000048 ], [ -122.775529398999979, 49.072373653000099 ], [ -122.775530589999946, 49.072109203000096 ], [ -122.775119841999953, 49.072108404000062 ], [ -122.77513932799998, 49.067790595000069 ], [ -122.774317902999897, 49.067788992000047 ], [ -122.774313013999915, 49.068868444000046 ], [ -122.773902291999917, 49.068867640000093 ], [ -122.773901067999986, 49.0691375030001 ], [ -122.772258173999916, 49.069134273000074 ], [ -122.772259151999947, 49.068920233000085 ], [ -122.771558588999952, 49.068899178000109 ], [ -122.771326551999948, 49.072247625000031 ], [ -122.765864226999909, 49.07208330800006 ], [ -122.766107249999948, 49.068582243000066 ], [ -122.766099855999968, 49.06858222700005 ], [ -122.766102387, 49.06804250000004 ], [ -122.765691673999982, 49.068041667000067 ], [ -122.765694918999927, 49.067351380000048 ], [ -122.764456567999972, 49.067314083000099 ], [ -122.764553814999928, 49.06591362300005 ], [ -122.764379951999942, 49.065908385000036 ], [ -122.764514959999957, 49.063964107000054 ], [ -122.76444807199999, 49.06396209200004 ], [ -122.764610025999943, 49.0616296030001 ], [ -122.762783256999953, 49.06157455400006 ], [ -122.762784503999967, 49.061556620000019 ], [ -122.762381335999976, 49.061544467000019 ], [ -122.762182146, 49.064411270000079 ], [ -122.760470888999961, 49.064359667000112 ], [ -122.760346767999977, 49.066144909000087 ], [ -122.759928717999983, 49.06613229900011 ], [ -122.75985569, 49.067182481000089 ], [ -122.761119830999959, 49.067220609000117 ], [ -122.76086975199999, 49.070817883000132 ], [ -122.75893748299994, 49.070759598000102 ], [ -122.75879733499994, 49.072774094000117 ], [ -122.760270582999965, 49.072818536000078 ], [ -122.760283331999958, 49.072635200000065 ], [ -122.76183003700001, 49.072681836000136 ], [ -122.761832468999984, 49.072646838000097 ], [ -122.763091210999917, 49.072684775000056 ], [ -122.763094517999932, 49.072637168000036 ], [ -122.768556897999986, 49.072801626000114 ], [ -122.768420366, 49.07476991300009 ], [ -122.768307362999977, 49.076398886000149 ], [ -122.767048516999978, 49.076361010000056 ], [ -122.767045211999971, 49.076408618000102 ], [ -122.765498379999926, 49.076362057000054 ], [ -122.765495948999984, 49.076397054000026 ], [ -122.761365631999951, 49.076272619000072 ], [ -122.761352885999898, 49.076455955000021 ], [ -122.760116647999922, 49.076418680000103 ], [ -122.760072267999973, 49.077056784000028 ], [ -122.759044829999951, 49.077025794000093 ], [ -122.7589597569999, 49.078248522000081 ], [ -122.76021434099999, 49.078286363000089 ], [ -122.759964131999979, 49.081883573000056 ], [ -122.759037668999966, 49.081855631000053 ], [ -122.75884271699999, 49.084657214000075 ], [ -122.760065239999946, 49.084694083000123 ], [ -122.759970524999972, 49.086055601000062 ], [ -122.759709909999941, 49.086163697000067 ], [ -122.759394499999985, 49.08648560000006 ], [ -122.759594278999884, 49.087476898000055 ], [ -122.759496713999965, 49.088123496000016 ], [ -122.758898489999964, 49.089247316000126 ], [ -122.756688609999941, 49.088740862000066 ], [ -122.756711127999935, 49.085734110000082 ] ], [ [ -122.776783023999897, 49.067605124000131 ], [ -122.776761495999963, 49.072410631000025 ], [ -122.777093448999949, 49.072420590000092 ], [ -122.777105775999971, 49.072242407000012 ], [ -122.778405087999943, 49.072281381000089 ], [ -122.778417938999937, 49.069391595000077 ], [ -122.777869136, 49.06937513400009 ], [ -122.777989037999959, 49.067641308000127 ], [ -122.776783023999897, 49.067605124000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36753333", "BldgCostT": "25083333", "sL_LossRatio": "0.71081755615499", "sL_AssetLoss": "793340", "sL_BldgLoss": "563920", "sL_StrLoss": "280810", "sL_NStrLoss": "283110", "sL_ContLoss": "229420", "geom_point": "0101000020E610000036C4258501B35EC08976F443958A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799025294999964, 49.081970561000055 ], [ -122.799119020999981, 49.08060668100007 ], [ -122.798671814999921, 49.080593357000033 ], [ -122.798814036999914, 49.078523894000078 ], [ -122.798786245999935, 49.078523065000098 ], [ -122.798831539, 49.077863974000131 ], [ -122.79883138699995, 49.077863969000134 ], [ -122.798915571999942, 49.076638916000078 ], [ -122.798850363000014, 49.076636973000092 ], [ -122.798986831999926, 49.074650955000031 ], [ -122.798988164999912, 49.074631559000103 ], [ -122.798656379999926, 49.074621672000085 ], [ -122.798751906999968, 49.073231489000058 ], [ -122.797067723999973, 49.073228540000088 ], [ -122.796970039999948, 49.074649324000063 ], [ -122.7968671, 49.076146495000046 ], [ -122.796615449999962, 49.076138991000029 ], [ -122.796675408999974, 49.076033401000075 ], [ -122.796690805999972, 49.075539098000057 ], [ -122.796282803999958, 49.075268484000077 ], [ -122.795610890999967, 49.075059199000087 ], [ -122.794078216999978, 49.075047804000114 ], [ -122.793572391999973, 49.07495660700004 ], [ -122.793312, 49.074839890000121 ], [ -122.793217194999954, 49.074677507000068 ], [ -122.793226118999954, 49.074646197000092 ], [ -122.793286198999965, 49.074435396000055 ], [ -122.79349270099999, 49.074255909000016 ], [ -122.7960859, 49.072749090000038 ], [ -122.796751525999952, 49.072418386000066 ], [ -122.79729917399996, 49.072419350000118 ], [ -122.797300285999967, 49.072145739000085 ], [ -122.797926114999967, 49.07183479300005 ], [ -122.798694407000013, 49.071350486000064 ], [ -122.799064198999943, 49.071017288000114 ], [ -122.79999748199999, 49.070507397000021 ], [ -122.801222634999974, 49.070343131000115 ], [ -122.801220676999947, 49.070662133000063 ], [ -122.801213085999962, 49.071885605000126 ], [ -122.80120915699996, 49.07252439400002 ], [ -122.801208042999946, 49.072704282000075 ], [ -122.801195972999963, 49.074652966000016 ], [ -122.801185423999954, 49.076002597000027 ], [ -122.801130168999975, 49.076149635000064 ], [ -122.801132032999973, 49.077417434000012 ], [ -122.801134092999973, 49.078829703000117 ], [ -122.801134298999926, 49.078955648000033 ], [ -122.801136246999974, 49.080304941000101 ], [ -122.801142759999934, 49.084739730000138 ], [ -122.801143693999947, 49.085405376000082 ], [ -122.801144031999954, 49.08562128200002 ], [ -122.801144853999915, 49.086187985000088 ], [ -122.801144961999967, 49.086259927000071 ], [ -122.801148054999956, 49.088355887000077 ], [ -122.80114916699992, 49.089129480000118 ], [ -122.801150163999949, 49.089809128000034 ], [ -122.800002496999966, 49.089806367000044 ], [ -122.79032380799994, 49.08978278400005 ], [ -122.790084894999936, 49.089805944000048 ], [ -122.789875905999935, 49.08982618700005 ], [ -122.787588488999958, 49.089804700000123 ], [ -122.784673830999907, 49.089746638000058 ], [ -122.784773367999904, 49.088304940000071 ], [ -122.786938106999969, 49.088369687000053 ], [ -122.786941879999958, 49.088314992000022 ], [ -122.787539046999925, 49.08833284500006 ], [ -122.787590293, 49.087589906000076 ], [ -122.788746213999957, 49.087624456000135 ], [ -122.788747746999888, 49.087602234000101 ], [ -122.789939522999958, 49.087637842000042 ], [ -122.78994329899993, 49.087583062000149 ], [ -122.790547536999938, 49.087601111000048 ], [ -122.790551376999986, 49.087545378000101 ], [ -122.793292020999942, 49.087627197000081 ], [ -122.79329406399998, 49.08759754400009 ], [ -122.795031750999968, 49.08764938500007 ], [ -122.795032390999907, 49.087640087000089 ], [ -122.796778613999948, 49.087692153000098 ], [ -122.796997085999934, 49.084515525000072 ], [ -122.797037132999918, 49.084516719000121 ], [ -122.797059002, 49.084198726000047 ], [ -122.797649400999944, 49.084216323000071 ], [ -122.797806297999983, 49.081934237000048 ], [ -122.799025294999964, 49.081970561000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269790000", "BldgCostT": "174300000", "sL_LossRatio": "0.749357822858581", "sL_AssetLoss": "2050836", "sL_BldgLoss": "1536810", "sL_StrLoss": "791490", "sL_NStrLoss": "745320", "sL_ContLoss": "514026", "geom_point": "0101000020E61000003F0764E9A2B35EC02A4BA6D09A854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801206806, 49.045596097000029 ], [ -122.801217484999981, 49.041992454000074 ], [ -122.802521213999967, 49.042009299000092 ], [ -122.803514196999942, 49.042022093000028 ], [ -122.80546089799995, 49.04199180200002 ], [ -122.806290780999973, 49.042014583000018 ], [ -122.806689587999969, 49.042062610000094 ], [ -122.807023698999942, 49.042176088000083 ], [ -122.807771495999958, 49.042399389000067 ], [ -122.808071996999956, 49.042464206000076 ], [ -122.808544319999939, 49.042496203000027 ], [ -122.810810731999965, 49.042500113000088 ], [ -122.810861998999954, 49.042500193000137 ], [ -122.810859544, 49.042036247000055 ], [ -122.810856402999917, 49.041442898000092 ], [ -122.810853844999954, 49.041100728000067 ], [ -122.810852906999983, 49.040974202000044 ], [ -122.810764700999968, 49.040723697000054 ], [ -122.810917741999958, 49.040717835000038 ], [ -122.811946144, 49.040678480000111 ], [ -122.812222194999961, 49.040667893000055 ], [ -122.812192903999986, 49.042035976000093 ], [ -122.812194572999942, 49.042353288000101 ], [ -122.812207742999988, 49.044862879000036 ], [ -122.812211911999938, 49.045657591000122 ], [ -122.810853662999989, 49.045652901000082 ], [ -122.806718111999942, 49.045638489000112 ], [ -122.80475787899999, 49.045625259000069 ], [ -122.803984482999979, 49.045634630000066 ], [ -122.803682016, 49.04563829000007 ], [ -122.803536453999968, 49.045667317000081 ], [ -122.803421956999927, 49.045667349000084 ], [ -122.80260098299999, 49.045667639000037 ], [ -122.80223820499999, 49.045667781000105 ], [ -122.801370511999963, 49.045668079000073 ], [ -122.801204605999942, 49.045668130000053 ], [ -122.801206806, 49.045596097000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88984750", "BldgCostT": "61105000", "sL_LossRatio": "0.784641429599989", "sL_AssetLoss": "901399", "sL_BldgLoss": "707275", "sL_StrLoss": "391774", "sL_NStrLoss": "315501", "sL_ContLoss": "194124", "geom_point": "0101000020E61000004F05BBE5D3B35EC0393D940D10864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809464593999948, 49.049271807000089 ], [ -122.80947157899999, 49.048169895000093 ], [ -122.807930907999975, 49.048160096000124 ], [ -122.807342901999931, 49.0481588970001 ], [ -122.807079978999937, 49.0481032940001 ], [ -122.806924095999975, 49.048021995000056 ], [ -122.806816387, 49.047917904000052 ], [ -122.8067047099999, 49.047731595000094 ], [ -122.806713019999933, 49.047010911000086 ], [ -122.806780718999974, 49.046820994000022 ], [ -122.806939195999973, 49.046624695000098 ], [ -122.806736194999942, 49.046373511000063 ], [ -122.806720513999934, 49.045735582000113 ], [ -122.806718111999942, 49.045638489000112 ], [ -122.810853662999989, 49.045652901000082 ], [ -122.812211911999938, 49.045657591000122 ], [ -122.812223932, 49.046222114000066 ], [ -122.81221724199996, 49.047021742000055 ], [ -122.812211822999984, 49.047669073000044 ], [ -122.812199310999972, 49.049161760000089 ], [ -122.812198568999946, 49.04925300500004 ], [ -122.812258328999931, 49.049338591000073 ], [ -122.81225867699996, 49.049351610000059 ], [ -122.812266809999954, 49.049694822000099 ], [ -122.81213714499998, 49.049690978000093 ], [ -122.811458143999985, 49.049679805000082 ], [ -122.810137889999965, 49.049685716000077 ], [ -122.809650392999956, 49.049554006000029 ], [ -122.809464593999948, 49.049271807000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92986083", "BldgCostT": "64128333", "sL_LossRatio": "0.766383210168051", "sL_AssetLoss": "1077414", "sL_BldgLoss": "825712", "sL_StrLoss": "423850", "sL_NStrLoss": "401862", "sL_ContLoss": "251702", "geom_point": "0101000020E61000001AEA2419C1B55EC058D11729B1844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834371693999984, 49.03747340500005 ], [ -122.834353422999982, 49.034822394000102 ], [ -122.834503859999984, 49.034831522000118 ], [ -122.834673391999928, 49.034841795000077 ], [ -122.835329894999944, 49.034841250000092 ], [ -122.837200307, 49.034839687000023 ], [ -122.839748727999947, 49.034846046000091 ], [ -122.840448353999975, 49.034847782000057 ], [ -122.841912521, 49.03485140100009 ], [ -122.843946412999955, 49.034859809000046 ], [ -122.8454549, 49.034854604000031 ], [ -122.845453929, 49.035026341000112 ], [ -122.845444674999953, 49.036663013000044 ], [ -122.845438176999949, 49.038476939000162 ], [ -122.845292724999965, 49.038477164000021 ], [ -122.844636336999898, 49.038478211000026 ], [ -122.843938445999967, 49.038479284000125 ], [ -122.842718358999946, 49.038481186000084 ], [ -122.842338190999968, 49.03848177 ], [ -122.841741783999936, 49.038482705000014 ], [ -122.840600417999894, 49.038477003000018 ], [ -122.839052355999982, 49.038467751000049 ], [ -122.837888725999917, 49.038460784000101 ], [ -122.836015532999966, 49.038449549000134 ], [ -122.834378604, 49.038439693000036 ], [ -122.834371693999984, 49.03747340500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105613418", "BldgCostT": "71421668", "sL_LossRatio": "0.714008742314098", "sL_AssetLoss": "2034244", "sL_BldgLoss": "1452468", "sL_StrLoss": "637158", "sL_NStrLoss": "815310", "sL_ContLoss": "581776", "geom_point": "0101000020E6100000054A65E572C25EC0D7E4A572458B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036368094, 49.086208493000115 ], [ -123.04043982799999, 49.085704298000032 ], [ -123.040434815999944, 49.086337999000094 ], [ -123.040426001999947, 49.086863889000085 ], [ -123.040419485999934, 49.087547607000083 ], [ -123.04041400599999, 49.089207104000067 ], [ -123.040409850999964, 49.089707451000059 ], [ -123.040406192999981, 49.090147590000036 ], [ -123.040254536999953, 49.090147134000127 ], [ -123.03702882499999, 49.090137399000113 ], [ -123.036013324, 49.090131667000037 ], [ -123.035975445999938, 49.086354825000079 ], [ -123.036368200999902, 49.086354702000072 ], [ -123.036368094, 49.086208493000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145446750", "BldgCostT": "96075000", "sL_LossRatio": "0.702555971017143", "sL_AssetLoss": "2493612", "sL_BldgLoss": "1751902", "sL_StrLoss": "832952", "sL_NStrLoss": "918950", "sL_ContLoss": "741710", "geom_point": "0101000020E6100000DF6EAC38D3C25EC0EC87E0D1298B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040419485999934, 49.087547607000083 ], [ -123.040426001999947, 49.086863889000085 ], [ -123.040434815999944, 49.086337999000094 ], [ -123.04043982799999, 49.085704298000032 ], [ -123.040443563999958, 49.085237894000038 ], [ -123.041081914999936, 49.085179990000036 ], [ -123.041833400999934, 49.085111389000076 ], [ -123.044199620999933, 49.084995151000037 ], [ -123.04475764699994, 49.084967791000018 ], [ -123.046278901999955, 49.084964629000076 ], [ -123.046295994000019, 49.084123194000021 ], [ -123.047613890999955, 49.084123409000043 ], [ -123.048685014999947, 49.08413210200009 ], [ -123.04867468499998, 49.084833717000066 ], [ -123.048670579999936, 49.085524705000076 ], [ -123.048674706999975, 49.086215895000066 ], [ -123.048631108999956, 49.086386793000059 ], [ -123.048043401999948, 49.087280603000082 ], [ -123.047415383999976, 49.087104793000066 ], [ -123.04702431799997, 49.087056190000048 ], [ -123.046264104999977, 49.087065107000086 ], [ -123.046244905999941, 49.088080002000076 ], [ -123.046238711999948, 49.089084488000026 ], [ -123.046242675999935, 49.089777391000077 ], [ -123.046243327999946, 49.090134272000121 ], [ -123.043034913, 49.090141658000036 ], [ -123.040406192999981, 49.090147590000036 ], [ -123.040409850999964, 49.089707451000059 ], [ -123.04041400599999, 49.089207104000067 ], [ -123.040419485999934, 49.087547607000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86189750", "BldgCostT": "58760000", "sL_LossRatio": "0.72533516672396", "sL_AssetLoss": "1599950", "sL_BldgLoss": "1160500", "sL_StrLoss": "533180", "sL_NStrLoss": "627320", "sL_ContLoss": "439450", "geom_point": "0101000020E6100000C32E07301BC35EC0C2B0E4A65D8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046264104999977, 49.087065107000086 ], [ -123.04702431799997, 49.087056190000048 ], [ -123.047415383999976, 49.087104793000066 ], [ -123.048043401999948, 49.087280603000082 ], [ -123.049027097999968, 49.087566298000148 ], [ -123.05002019899996, 49.087877296000052 ], [ -123.05113943299996, 49.087882823000072 ], [ -123.051139767, 49.088030051000032 ], [ -123.051141289999961, 49.088695725000036 ], [ -123.051144533999917, 49.090115683000143 ], [ -123.051144916999945, 49.090217511000041 ], [ -123.050982020999982, 49.090217542000126 ], [ -123.050834826999932, 49.090164848 ], [ -123.046243327999946, 49.090134272000121 ], [ -123.046242675999935, 49.089777391000077 ], [ -123.046238711999948, 49.089084488000026 ], [ -123.046244905999941, 49.088080002000076 ], [ -123.046264104999977, 49.087065107000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102496060", "BldgCostT": "69328189", "sL_LossRatio": "0.708703672647996", "sL_AssetLoss": "2206310", "sL_BldgLoss": "1563620", "sL_StrLoss": "690940", "sL_NStrLoss": "872680", "sL_ContLoss": "642690", "geom_point": "0101000020E61000003474FDCC2AC35EC02BF786EBE68A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04867468499998, 49.084833717000066 ], [ -123.048685014999947, 49.08413210200009 ], [ -123.047613890999955, 49.084123409000043 ], [ -123.046295994000019, 49.084123194000021 ], [ -123.046295857999908, 49.083134520000073 ], [ -123.046962974999929, 49.083105864000061 ], [ -123.051157688, 49.083118697 ], [ -123.051160687, 49.083439599000066 ], [ -123.051173496999951, 49.084967196000051 ], [ -123.051162885999986, 49.085674200000078 ], [ -123.05113943299996, 49.087882823000072 ], [ -123.05002019899996, 49.087877296000052 ], [ -123.049027097999968, 49.087566298000148 ], [ -123.048043401999948, 49.087280603000082 ], [ -123.048631108999956, 49.086386793000059 ], [ -123.048674706999975, 49.086215895000066 ], [ -123.048670579999936, 49.085524705000076 ], [ -123.04867468499998, 49.084833717000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110891918", "BldgCostT": "75741668", "sL_LossRatio": "0.712890153125981", "sL_AssetLoss": "2744211", "sL_BldgLoss": "1956321", "sL_StrLoss": "845401", "sL_NStrLoss": "1110920", "sL_ContLoss": "787890", "geom_point": "0101000020E6100000B626C4F967C35EC08F3EC5F5188B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051144533999917, 49.090115683000143 ], [ -123.051141289999961, 49.088695725000036 ], [ -123.051139767, 49.088030051000032 ], [ -123.05113943299996, 49.087882823000072 ], [ -123.051162885999986, 49.085674200000078 ], [ -123.051173496999951, 49.084967196000051 ], [ -123.051160687, 49.083439599000066 ], [ -123.051157688, 49.083118697 ], [ -123.055261619999939, 49.083145701000056 ], [ -123.05526301499998, 49.083425899000055 ], [ -123.055255098999979, 49.083984307000044 ], [ -123.055262478999936, 49.085166694000094 ], [ -123.05526157099996, 49.085959553000102 ], [ -123.055256598999989, 49.087164079000061 ], [ -123.05525401199999, 49.087578432000072 ], [ -123.055246936999964, 49.088702774000055 ], [ -123.055238200999909, 49.090096362000068 ], [ -123.055251881999979, 49.090096605000014 ], [ -123.055950793999898, 49.090107527000036 ], [ -123.056851695999939, 49.090121590000066 ], [ -123.056858387999966, 49.09023181400002 ], [ -123.055950947, 49.090226249000096 ], [ -123.055257174999923, 49.090222031000067 ], [ -123.054417608999955, 49.090216893000054 ], [ -123.054403895999954, 49.090216777000109 ], [ -123.053430781999978, 49.090216993000126 ], [ -123.051144916999945, 49.090217511000041 ], [ -123.051144533999917, 49.090115683000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228037638", "BldgCostT": "146975599", "sL_LossRatio": "0.69289094722785", "sL_AssetLoss": "5032105", "sL_BldgLoss": "3486700", "sL_StrLoss": "1449620", "sL_NStrLoss": "2037080", "sL_ContLoss": "1545405", "geom_point": "0101000020E61000009A07A857E7C35EC09E0577F3168B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056858387999966, 49.09023181400002 ], [ -123.056851695999939, 49.090121590000066 ], [ -123.055950793999898, 49.090107527000036 ], [ -123.055251881999979, 49.090096605000014 ], [ -123.055238200999909, 49.090096362000068 ], [ -123.055246936999964, 49.088702774000055 ], [ -123.05525401199999, 49.087578432000072 ], [ -123.055256598999989, 49.087164079000061 ], [ -123.05526157099996, 49.085959553000102 ], [ -123.055262478999936, 49.085166694000094 ], [ -123.055255098999979, 49.083984307000044 ], [ -123.05526301499998, 49.083425899000055 ], [ -123.055261619999939, 49.083145701000056 ], [ -123.056552860999901, 49.082864246000078 ], [ -123.057011148999919, 49.082889636000033 ], [ -123.05717321599991, 49.082907382000073 ], [ -123.059652403999962, 49.083178503000106 ], [ -123.063081394999983, 49.082927355000123 ], [ -123.06541009499999, 49.082954802000053 ], [ -123.065405477999946, 49.083183931000107 ], [ -123.065392801999948, 49.083815700000073 ], [ -123.06552429299991, 49.084118404000051 ], [ -123.065590089999944, 49.084333702000059 ], [ -123.065570995999934, 49.08446390200001 ], [ -123.06538730699999, 49.084990407000092 ], [ -123.065344592999935, 49.085406400000061 ], [ -123.066469382999941, 49.085410098000132 ], [ -123.067550109999928, 49.085417090000078 ], [ -123.068887296999918, 49.085436486000027 ], [ -123.068866488999944, 49.086202591000102 ], [ -123.067670902999936, 49.086106099000077 ], [ -123.067645695999943, 49.08705050500005 ], [ -123.067560304000011, 49.08727619000009 ], [ -123.067548804999916, 49.087720895000089 ], [ -123.067699692999923, 49.087932313000081 ], [ -123.067684504999974, 49.088739187000087 ], [ -123.067372323999976, 49.08873748000012 ], [ -123.066366916999982, 49.088732005000082 ], [ -123.065302390999989, 49.088727298000073 ], [ -123.065269403999977, 49.089749997000069 ], [ -123.065273979999972, 49.090155527000086 ], [ -123.065272443999916, 49.090244695000102 ], [ -123.063391812999924, 49.090243308000034 ], [ -123.063068932999968, 49.090243063000038 ], [ -123.062904689999954, 49.090243094000058 ], [ -123.057061024999911, 49.090231005000071 ], [ -123.056923465999887, 49.090231547000087 ], [ -123.056858387999966, 49.09023181400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97840333", "BldgCostT": "63328333", "sL_LossRatio": "0.665362738384982", "sL_AssetLoss": "2950060", "sL_BldgLoss": "1962860", "sL_StrLoss": "810870", "sL_NStrLoss": "1151990", "sL_ContLoss": "987200", "geom_point": "0101000020E610000040E6FB90D4C35EC08EEAF0E7C68B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057198748999937, 49.093244712000065 ], [ -123.056927613999946, 49.091151804000063 ], [ -123.056858387999966, 49.09023181400002 ], [ -123.056923465999887, 49.090231547000087 ], [ -123.057061024999911, 49.090231005000071 ], [ -123.062904689999954, 49.090243094000058 ], [ -123.063068932999968, 49.090243063000038 ], [ -123.063391812999924, 49.090243308000034 ], [ -123.063692494999927, 49.090729495000062 ], [ -123.06353568899999, 49.090698191000044 ], [ -123.062622699999977, 49.090699407000045 ], [ -123.06258399699999, 49.093375215000023 ], [ -123.062576955999944, 49.093691641000113 ], [ -123.062571323999961, 49.093945194000057 ], [ -123.062494197999982, 49.094038580000174 ], [ -123.0623446809999, 49.094065197000056 ], [ -123.061415507999953, 49.093930691000082 ], [ -123.060866157999925, 49.093843510000063 ], [ -123.06060648199994, 49.093802294000092 ], [ -123.06048270299999, 49.093745707000032 ], [ -123.060426815999932, 49.093655904000137 ], [ -123.060427152999964, 49.093611793000058 ], [ -123.06043679699998, 49.092370500000087 ], [ -123.05940681099996, 49.09235376000003 ], [ -123.059304587999961, 49.092352106000099 ], [ -123.058189506999923, 49.09234500000013 ], [ -123.058200598999974, 49.095419501000059 ], [ -123.057746373999919, 49.095414289000139 ], [ -123.057509918, 49.095401367000143 ], [ -123.057279713999961, 49.095388816000138 ], [ -123.057275696999923, 49.094836743000037 ], [ -123.057274472999893, 49.094667323000131 ], [ -123.057268009999987, 49.093779414000075 ], [ -123.057198748999937, 49.093244712000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126777751", "BldgCostT": "87720001", "sL_LossRatio": "0.760925960404642", "sL_AssetLoss": "2416950", "sL_BldgLoss": "1839120", "sL_StrLoss": "786530", "sL_NStrLoss": "1052590", "sL_ContLoss": "577830", "geom_point": "0101000020E61000007FF2039915C45EC0EEBD7CDBE18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061404220999989, 49.094716998000074 ], [ -123.061415507999953, 49.093930691000082 ], [ -123.0623446809999, 49.094065197000056 ], [ -123.062494197999982, 49.094038580000174 ], [ -123.062571323999961, 49.093945194000057 ], [ -123.062576955999944, 49.093691641000113 ], [ -123.06258399699999, 49.093375215000023 ], [ -123.062622699999977, 49.090699407000045 ], [ -123.06353568899999, 49.090698191000044 ], [ -123.063692494999927, 49.090729495000062 ], [ -123.063391812999924, 49.090243308000034 ], [ -123.065272443999916, 49.090244695000102 ], [ -123.065259003999984, 49.09139220600008 ], [ -123.065236515999956, 49.093270201000117 ], [ -123.065234889999942, 49.09381700200008 ], [ -123.065224698999941, 49.095064605000069 ], [ -123.063675509999911, 49.095058386000105 ], [ -123.061404220999989, 49.094716998000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151719750", "BldgCostT": "99180000", "sL_LossRatio": "0.719408169469848", "sL_AssetLoss": "2861630", "sL_BldgLoss": "2058680", "sL_StrLoss": "961680", "sL_NStrLoss": "1097000", "sL_ContLoss": "802950", "geom_point": "0101000020E6100000DA89914641C45EC078A5C05DD18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065236515999956, 49.093270201000117 ], [ -123.065259003999984, 49.09139220600008 ], [ -123.065272443999916, 49.090244695000102 ], [ -123.065425767999969, 49.090244382000023 ], [ -123.065562739000015, 49.090199459000061 ], [ -123.06628791499999, 49.090203047000116 ], [ -123.067319287999979, 49.090203914000014 ], [ -123.067991890000016, 49.090204487000072 ], [ -123.068487304000016, 49.090205379000061 ], [ -123.068460793999947, 49.091560701000049 ], [ -123.067379602999978, 49.091560002000087 ], [ -123.067369905999968, 49.092365191000049 ], [ -123.06735349299997, 49.09348230800007 ], [ -123.06735030499999, 49.093698187000051 ], [ -123.067259110999913, 49.093908309000049 ], [ -123.066877578999978, 49.094315096000059 ], [ -123.066882117999967, 49.095069291000037 ], [ -123.065224698999941, 49.095064605000069 ], [ -123.065234889999942, 49.09381700200008 ], [ -123.065236515999956, 49.093270201000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255270934", "BldgCostT": "170211896", "sL_LossRatio": "0.719777256066675", "sL_AssetLoss": "5233633", "sL_BldgLoss": "3767050", "sL_StrLoss": "1651220", "sL_NStrLoss": "2115830", "sL_ContLoss": "1466583", "geom_point": "0101000020E6100000F3E07A568AC45EC08FCB1363F48B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074577215999952, 49.095950313000039 ], [ -123.071787294999922, 49.095081389000079 ], [ -123.068442483999945, 49.095070490000083 ], [ -123.066882117999967, 49.095069291000037 ], [ -123.066877578999978, 49.094315096000059 ], [ -123.067259110999913, 49.093908309000049 ], [ -123.06735030499999, 49.093698187000051 ], [ -123.06735349299997, 49.09348230800007 ], [ -123.067369905999968, 49.092365191000049 ], [ -123.067379602999978, 49.091560002000087 ], [ -123.068460793999947, 49.091560701000049 ], [ -123.069049685, 49.09155491500011 ], [ -123.069063370999956, 49.091554777000091 ], [ -123.069165953999956, 49.091553757000035 ], [ -123.069181137999934, 49.091556007000072 ], [ -123.070206023, 49.091560500000071 ], [ -123.070219714999936, 49.091560533000063 ], [ -123.071180410999915, 49.091563059000094 ], [ -123.071194103000011, 49.091563092000086 ], [ -123.071755085999911, 49.091565798000083 ], [ -123.071752906999933, 49.090794496000079 ], [ -123.073756976999903, 49.090812997000107 ], [ -123.07375461, 49.091220206000166 ], [ -123.073751606999963, 49.091507504000084 ], [ -123.073752502999923, 49.091907595000052 ], [ -123.073739418999949, 49.09226404800004 ], [ -123.07372759299993, 49.092587193000114 ], [ -123.073729299999954, 49.093170189 ], [ -123.073726889999989, 49.093424239000086 ], [ -123.073725877999976, 49.093528703000075 ], [ -123.073675885999975, 49.093628204000048 ], [ -123.07319829699999, 49.094191812000105 ], [ -123.073692845999986, 49.094363426000037 ], [ -123.073744905999931, 49.094381499000114 ], [ -123.075780090999928, 49.094886491000089 ], [ -123.075881108999951, 49.094912708000045 ], [ -123.074577215999952, 49.095950313000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90317083", "BldgCostT": "61288333", "sL_LossRatio": "0.714868121623366", "sL_AssetLoss": "2099169", "sL_BldgLoss": "1500629", "sL_StrLoss": "654879", "sL_NStrLoss": "845750", "sL_ContLoss": "598540", "geom_point": "0101000020E6100000C3A10AC162C45EC0E4D594BF568C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063633309999958, 49.097725988000022 ], [ -123.063666608999981, 49.095851015000079 ], [ -123.063675509999911, 49.095058386000105 ], [ -123.065224698999941, 49.095064605000069 ], [ -123.066882117999967, 49.095069291000037 ], [ -123.068442483999945, 49.095070490000083 ], [ -123.071787294999922, 49.095081389000079 ], [ -123.074577215999952, 49.095950313000039 ], [ -123.07383638, 49.096520286000072 ], [ -123.072143199999942, 49.097823901000069 ], [ -123.071954697999914, 49.097751997000053 ], [ -123.069340210999925, 49.097749301000135 ], [ -123.067691007999912, 49.097744798000043 ], [ -123.066046488, 49.097729709000134 ], [ -123.06518051099998, 49.09772140100003 ], [ -123.063633309999958, 49.097725988000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97337645", "BldgCostT": "63801524", "sL_LossRatio": "0.693147624031872", "sL_AssetLoss": "2381787", "sL_BldgLoss": "1650930", "sL_StrLoss": "679070", "sL_NStrLoss": "971860", "sL_ContLoss": "730857", "geom_point": "0101000020E6100000AF18226553C45EC01FC78B5CA28C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.067017858999975, 49.100493341000067 ], [ -123.065277491999964, 49.099357614000091 ], [ -123.064551207999941, 49.099069897000064 ], [ -123.064181, 49.098790791000056 ], [ -123.064016012999957, 49.098722021000071 ], [ -123.063692449999934, 49.098587125000115 ], [ -123.063622809999984, 49.098500508000058 ], [ -123.063633309999958, 49.097725988000022 ], [ -123.06518051099998, 49.09772140100003 ], [ -123.066046488, 49.097729709000134 ], [ -123.067691007999912, 49.097744798000043 ], [ -123.069340210999925, 49.097749301000135 ], [ -123.071954697999914, 49.097751997000053 ], [ -123.072143199999942, 49.097823901000069 ], [ -123.071668193999983, 49.098191885000055 ], [ -123.069704014999957, 49.099713397000102 ], [ -123.069337494999928, 49.099997621000064 ], [ -123.069300988999956, 49.100025896000034 ], [ -123.069278785, 49.10001049100002 ], [ -123.068578189999982, 49.099525090000093 ], [ -123.067842089999942, 49.099986353000055 ], [ -123.067580556999957, 49.100150183000103 ], [ -123.067017858999975, 49.100493341000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91762561", "BldgCostT": "58923190", "sL_LossRatio": "0.65624772947317", "sL_AssetLoss": "2367292", "sL_BldgLoss": "1553530", "sL_StrLoss": "685730", "sL_NStrLoss": "867800", "sL_ContLoss": "813762", "geom_point": "0101000020E6100000376523E7AFC45EC0AC9ECD89C18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07375461, 49.091220206000166 ], [ -123.073756976999903, 49.090812997000107 ], [ -123.071752906999933, 49.090794496000079 ], [ -123.071755085999911, 49.091565798000083 ], [ -123.071194103000011, 49.091563092000086 ], [ -123.071180410999915, 49.091563059000094 ], [ -123.070219714999936, 49.091560533000063 ], [ -123.070206023, 49.091560500000071 ], [ -123.069181137999934, 49.091556007000072 ], [ -123.069165953999956, 49.091553757000035 ], [ -123.069063370999956, 49.091554777000091 ], [ -123.069049685, 49.09155491500011 ], [ -123.068460793999947, 49.091560701000049 ], [ -123.068487304000016, 49.090205379000061 ], [ -123.068837580999954, 49.090206835000089 ], [ -123.070360108999949, 49.090212210000075 ], [ -123.070928328999941, 49.090214241000133 ], [ -123.071761895999913, 49.090217203000037 ], [ -123.072347497999957, 49.090219596000054 ], [ -123.075847192999944, 49.09022118900004 ], [ -123.075834700999948, 49.091227212000014 ], [ -123.075780090999928, 49.094886491000089 ], [ -123.073744905999931, 49.094381499000114 ], [ -123.073692845999986, 49.094363426000037 ], [ -123.07319829699999, 49.094191812000105 ], [ -123.073675885999975, 49.093628204000048 ], [ -123.073725877999976, 49.093528703000075 ], [ -123.073726889999989, 49.093424239000086 ], [ -123.073729299999954, 49.093170189 ], [ -123.07372759299993, 49.092587193000114 ], [ -123.073739418999949, 49.09226404800004 ], [ -123.073752502999923, 49.091907595000052 ], [ -123.073751606999963, 49.091507504000084 ], [ -123.07375461, 49.091220206000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "272320387", "BldgCostT": "180702080", "sL_LossRatio": "0.752766145081648", "sL_AssetLoss": "2973181", "sL_BldgLoss": "2238110", "sL_StrLoss": "1066990", "sL_NStrLoss": "1171120", "sL_ContLoss": "735071", "geom_point": "0101000020E6100000FE9EBA87BEC45EC00B5FE46D3E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073777717999974, 49.085456381000128 ], [ -123.075912800999973, 49.085470211000093 ], [ -123.075887410999897, 49.086245197000061 ], [ -123.075873919999964, 49.089042053000057 ], [ -123.075871889999974, 49.08945689700009 ], [ -123.075860008999939, 49.089825491000056 ], [ -123.075849508999937, 49.090149369000088 ], [ -123.075847192999944, 49.09022118900004 ], [ -123.072347497999957, 49.090219596000054 ], [ -123.07235448699997, 49.089515384000038 ], [ -123.07236190499999, 49.088772098000057 ], [ -123.072381195999981, 49.088094197000061 ], [ -123.072410797999964, 49.086164998000065 ], [ -123.072394286999952, 49.085447392000042 ], [ -123.073777717999974, 49.085456381000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134132575", "BldgCostT": "82197904", "sL_LossRatio": "0.63838309254796", "sL_AssetLoss": "3158276", "sL_BldgLoss": "2016190", "sL_StrLoss": "871130", "sL_NStrLoss": "1145060", "sL_ContLoss": "1142086", "geom_point": "0101000020E61000007E6F147288C45EC0A89DDD31278B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070552588999973, 49.089814807000046 ], [ -123.070603502, 49.089158511000065 ], [ -123.070104298999979, 49.089152084000091 ], [ -123.070083626, 49.089152520000034 ], [ -123.070039306999917, 49.088770999000147 ], [ -123.070085316999965, 49.086777398000095 ], [ -123.070043800999898, 49.086523097000061 ], [ -123.07004948299999, 49.086150204000042 ], [ -123.069393098, 49.086208021000061 ], [ -123.068866488999944, 49.086202591000102 ], [ -123.068887296999918, 49.085436486000027 ], [ -123.067550109999928, 49.085417090000078 ], [ -123.067572311999967, 49.085064488000071 ], [ -123.067745808999931, 49.084873684000094 ], [ -123.067989985999986, 49.084756007000131 ], [ -123.068168739999948, 49.084746238000022 ], [ -123.06831949799998, 49.084737985000082 ], [ -123.068366584999936, 49.08473845200011 ], [ -123.071121982999898, 49.084764902000103 ], [ -123.071234090999923, 49.084853505000041 ], [ -123.071236910999971, 49.085441005000078 ], [ -123.072394286999952, 49.085447392000042 ], [ -123.072410797999964, 49.086164998000065 ], [ -123.072381195999981, 49.088094197000061 ], [ -123.07236190499999, 49.088772098000057 ], [ -123.07235448699997, 49.089515384000038 ], [ -123.072347497999957, 49.090219596000054 ], [ -123.071761895999913, 49.090217203000037 ], [ -123.070928328999941, 49.090214241000133 ], [ -123.070483591999931, 49.090040895000129 ], [ -123.070552588999973, 49.089814807000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168324500", "BldgCostT": "112610000", "sL_LossRatio": "0.760026368705208", "sL_AssetLoss": "2715340", "sL_BldgLoss": "2063730", "sL_StrLoss": "950320", "sL_NStrLoss": "1113410", "sL_ContLoss": "651610", "geom_point": "0101000020E61000005FC3041C5FC45EC03FBA4350568B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065269403999977, 49.089749997000069 ], [ -123.065302390999989, 49.088727298000073 ], [ -123.066366916999982, 49.088732005000082 ], [ -123.067372323999976, 49.08873748000012 ], [ -123.067684504999974, 49.088739187000087 ], [ -123.067699692999923, 49.087932313000081 ], [ -123.067548804999916, 49.087720895000089 ], [ -123.067560304000011, 49.08727619000009 ], [ -123.067645695999943, 49.08705050500005 ], [ -123.067670902999936, 49.086106099000077 ], [ -123.068866488999944, 49.086202591000102 ], [ -123.069393098, 49.086208021000061 ], [ -123.07004948299999, 49.086150204000042 ], [ -123.070043800999898, 49.086523097000061 ], [ -123.070085316999965, 49.086777398000095 ], [ -123.070039306999917, 49.088770999000147 ], [ -123.070083626, 49.089152520000034 ], [ -123.070104298999979, 49.089152084000091 ], [ -123.070603502, 49.089158511000065 ], [ -123.070552588999973, 49.089814807000046 ], [ -123.070483591999931, 49.090040895000129 ], [ -123.070928328999941, 49.090214241000133 ], [ -123.070360108999949, 49.090212210000075 ], [ -123.068837580999954, 49.090206835000089 ], [ -123.068487304000016, 49.090205379000061 ], [ -123.067991890000016, 49.090204487000072 ], [ -123.067319287999979, 49.090203914000014 ], [ -123.06628791499999, 49.090203047000116 ], [ -123.065562739000015, 49.090199459000061 ], [ -123.065425767999969, 49.090244382000023 ], [ -123.065272443999916, 49.090244695000102 ], [ -123.065273979999972, 49.090155527000086 ], [ -123.065269403999977, 49.089749997000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152418084", "BldgCostT": "102608334", "sL_LossRatio": "0.736709411844974", "sL_AssetLoss": "3077930", "sL_BldgLoss": "2267540", "sL_StrLoss": "996720", "sL_NStrLoss": "1270820", "sL_ContLoss": "810390", "geom_point": "0101000020E6100000BD4A14AD5EC45EC0F1407D2EC78A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06538730699999, 49.084990407000092 ], [ -123.065570995999934, 49.08446390200001 ], [ -123.065590089999944, 49.084333702000059 ], [ -123.06552429299991, 49.084118404000051 ], [ -123.065392801999948, 49.083815700000073 ], [ -123.065405477999946, 49.083183931000107 ], [ -123.06541009499999, 49.082954802000053 ], [ -123.068803515999917, 49.082962687000105 ], [ -123.06879919899994, 49.083291391000039 ], [ -123.069750117999902, 49.083294904000127 ], [ -123.069744179999958, 49.084042506000095 ], [ -123.072413397999966, 49.084054908000063 ], [ -123.072394286999952, 49.085447392000042 ], [ -123.071236910999971, 49.085441005000078 ], [ -123.071234090999923, 49.084853505000041 ], [ -123.071121982999898, 49.084764902000103 ], [ -123.068366584999936, 49.08473845200011 ], [ -123.06831949799998, 49.084737985000082 ], [ -123.068168739999948, 49.084746238000022 ], [ -123.067989985999986, 49.084756007000131 ], [ -123.067745808999931, 49.084873684000094 ], [ -123.067572311999967, 49.085064488000071 ], [ -123.067550109999928, 49.085417090000078 ], [ -123.066469382999941, 49.085410098000132 ], [ -123.065344592999935, 49.085406400000061 ], [ -123.06538730699999, 49.084990407000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88356000", "BldgCostT": "57990000", "sL_LossRatio": "0.674982884975814", "sL_AssetLoss": "2673090", "sL_BldgLoss": "1804290", "sL_StrLoss": "751870", "sL_NStrLoss": "1052420", "sL_ContLoss": "868800", "geom_point": "0101000020E6100000712533C5B9C45EC035DC0DC3C38A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072394286999952, 49.085447392000042 ], [ -123.072413397999966, 49.084054908000063 ], [ -123.069744179999958, 49.084042506000095 ], [ -123.069750117999902, 49.083294904000127 ], [ -123.06879919899994, 49.083291391000039 ], [ -123.068803515999917, 49.082962687000105 ], [ -123.07429863, 49.083066357000135 ], [ -123.074473510999937, 49.083045112000065 ], [ -123.074870281999935, 49.08305072100007 ], [ -123.075165302, 49.083054915000048 ], [ -123.076682498999958, 49.083062901000083 ], [ -123.076850811999975, 49.083760294000051 ], [ -123.077035596999977, 49.084544685000012 ], [ -123.077254378999896, 49.085289496000087 ], [ -123.075912800999973, 49.085470211000093 ], [ -123.073777717999974, 49.085456381000128 ], [ -123.072394286999952, 49.085447392000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295934873", "BldgCostT": "192283350", "sL_LossRatio": "0.71852387199919", "sL_AssetLoss": "4383441", "sL_BldgLoss": "3149607", "sL_StrLoss": "1484994", "sL_NStrLoss": "1664613", "sL_ContLoss": "1233834", "geom_point": "0101000020E61000005535730EFFC45EC0FADB09BC348B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.082618507999953, 49.090543890000028 ], [ -123.08140418, 49.090228027000101 ], [ -123.081378714999943, 49.090233700000141 ], [ -123.080991594999929, 49.090252009000039 ], [ -123.080865730999975, 49.090251305000038 ], [ -123.080276836999957, 49.090248138000035 ], [ -123.078426105999966, 49.090238095000153 ], [ -123.076715821, 49.090226902000033 ], [ -123.075847192999944, 49.09022118900004 ], [ -123.075849508999937, 49.090149369000088 ], [ -123.075860008999939, 49.089825491000056 ], [ -123.075871889999974, 49.08945689700009 ], [ -123.075873919999964, 49.089042053000057 ], [ -123.075887410999897, 49.086245197000061 ], [ -123.075912800999973, 49.085470211000093 ], [ -123.077254378999896, 49.085289496000087 ], [ -123.077035596999977, 49.084544685000012 ], [ -123.076850811999975, 49.083760294000051 ], [ -123.076682498999958, 49.083062901000083 ], [ -123.077225872999918, 49.083069646000069 ], [ -123.077390614, 49.083071709000116 ], [ -123.077527053999987, 49.083073390000024 ], [ -123.077962394999972, 49.083078794000038 ], [ -123.078047992999956, 49.08329948300004 ], [ -123.078061309999939, 49.083333796000083 ], [ -123.078091456999942, 49.083387056000078 ], [ -123.078988509999959, 49.084970586000061 ], [ -123.07908401499999, 49.085139200000135 ], [ -123.079239386999973, 49.085737188000031 ], [ -123.079180208999944, 49.086987117000092 ], [ -123.07932510499991, 49.087405508000117 ], [ -123.079534084999963, 49.087652634000037 ], [ -123.080080641000023, 49.088299109000047 ], [ -123.080586055999959, 49.088860636000049 ], [ -123.081087693999962, 49.089264596000071 ], [ -123.082032291999951, 49.090025279000031 ], [ -123.082618507999953, 49.090543890000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "319218333", "BldgCostT": "218313333", "sL_LossRatio": "0.827997663982494", "sL_AssetLoss": "4330447", "sL_BldgLoss": "3585600", "sL_StrLoss": "1715160", "sL_NStrLoss": "1870440", "sL_ContLoss": "744847", "geom_point": "0101000020E6100000E362A11020C55EC02D57B242158B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07908401499999, 49.085139200000135 ], [ -123.080893993999979, 49.085147894000023 ], [ -123.080841819999989, 49.087689336000054 ], [ -123.080829292999951, 49.088299584000062 ], [ -123.080080641000023, 49.088299109000047 ], [ -123.079534084999963, 49.087652634000037 ], [ -123.07932510499991, 49.087405508000117 ], [ -123.079180208999944, 49.086987117000092 ], [ -123.079239386999973, 49.085737188000031 ], [ -123.07908401499999, 49.085139200000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "494150361", "BldgCostT": "313952980", "sL_LossRatio": "0.669597659779641", "sL_AssetLoss": "10144002", "sL_BldgLoss": "6792400", "sL_StrLoss": "3032590", "sL_NStrLoss": "3759810", "sL_ContLoss": "3351602", "geom_point": "0101000020E6100000003620425CC55EC0FBE05948618B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081087693999962, 49.089264596000071 ], [ -123.080586055999959, 49.088860636000049 ], [ -123.080080641000023, 49.088299109000047 ], [ -123.080829292999951, 49.088299584000062 ], [ -123.080841819999989, 49.087689336000054 ], [ -123.080893993999979, 49.085147894000023 ], [ -123.082620694999903, 49.085154197000065 ], [ -123.082598267999941, 49.087265140000056 ], [ -123.082596234999983, 49.08745409200008 ], [ -123.082590986999946, 49.087948821000097 ], [ -123.082587077999946, 49.088313995000142 ], [ -123.08380705099998, 49.088318672000092 ], [ -123.084656337999959, 49.088321909000094 ], [ -123.085019901999885, 49.08832330000012 ], [ -123.086537089999979, 49.088325375000096 ], [ -123.086674026999944, 49.08832556300009 ], [ -123.086842775999926, 49.088325804000064 ], [ -123.086777792999939, 49.088379909000011 ], [ -123.086748381999982, 49.089244100000059 ], [ -123.088698008999941, 49.089255502000128 ], [ -123.088707120999985, 49.090161205000072 ], [ -123.087756588000019, 49.090149003000114 ], [ -123.086773591999943, 49.09015480200005 ], [ -123.086752122999926, 49.090279394000092 ], [ -123.086615284999965, 49.090387514000078 ], [ -123.086295106999927, 49.09058329800007 ], [ -123.085742292999981, 49.090930498000034 ], [ -123.084237801999933, 49.091919513000029 ], [ -123.082618507999953, 49.090543890000028 ], [ -123.082032291999951, 49.090025279000031 ], [ -123.081087693999962, 49.089264596000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269164342", "BldgCostT": "175563762", "sL_LossRatio": "0.710893981945278", "sL_AssetLoss": "5380310", "sL_BldgLoss": "3824830", "sL_StrLoss": "1622070", "sL_NStrLoss": "2202760", "sL_ContLoss": "1555480", "geom_point": "0101000020E61000003F839F9B6AC55EC04BDCE0FAE68A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.082598267999941, 49.087265140000056 ], [ -123.082620694999903, 49.085154197000065 ], [ -123.080893993999979, 49.085147894000023 ], [ -123.07908401499999, 49.085139200000135 ], [ -123.078988509999959, 49.084970586000061 ], [ -123.078091456999942, 49.083387056000078 ], [ -123.078061309999939, 49.083333796000083 ], [ -123.078047992999956, 49.08329948300004 ], [ -123.077962394999972, 49.083078794000038 ], [ -123.078460407999927, 49.083080590000101 ], [ -123.07883858299999, 49.083050286000123 ], [ -123.079148514999986, 49.082975894000093 ], [ -123.079316290999913, 49.082918264000156 ], [ -123.079492317999922, 49.082882504000096 ], [ -123.080648022999966, 49.082893200000065 ], [ -123.082403384999949, 49.08289941000006 ], [ -123.083532105999922, 49.082903898000104 ], [ -123.084112610999924, 49.082903078000129 ], [ -123.084319103999974, 49.082902797000024 ], [ -123.087126644999941, 49.08291881100007 ], [ -123.087687100999958, 49.082922006000118 ], [ -123.087731793999964, 49.081462704000025 ], [ -123.088808287999939, 49.081470211000067 ], [ -123.088788904999987, 49.082217492000026 ], [ -123.088777888999942, 49.082940711000042 ], [ -123.088755301999967, 49.083675395000121 ], [ -123.087626793, 49.08366640000007 ], [ -123.087618393, 49.084414892000105 ], [ -123.088767590999964, 49.084419896000043 ], [ -123.088751194999986, 49.085164590000034 ], [ -123.088722089999962, 49.086461211000071 ], [ -123.088705177999913, 49.088330393000064 ], [ -123.087491413999885, 49.088327414000041 ], [ -123.086842775999926, 49.088325804000064 ], [ -123.086674026999944, 49.08832556300009 ], [ -123.086537089999979, 49.088325375000096 ], [ -123.085019901999885, 49.08832330000012 ], [ -123.084656337999959, 49.088321909000094 ], [ -123.08380705099998, 49.088318672000092 ], [ -123.082587077999946, 49.088313995000142 ], [ -123.082590986999946, 49.087948821000097 ], [ -123.082596234999983, 49.08745409200008 ], [ -123.082598267999941, 49.087265140000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101448979", "BldgCostT": "65089858", "sL_LossRatio": "0.674527114406414", "sL_AssetLoss": "2899750", "sL_BldgLoss": "1955960", "sL_StrLoss": "776760", "sL_NStrLoss": "1179200", "sL_ContLoss": "943790", "geom_point": "0101000020E610000061744883BEC55EC0E47207DA328B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089893511999961, 49.085171187000121 ], [ -123.09119959899995, 49.085184001000115 ], [ -123.091189600999925, 49.085892897000079 ], [ -123.091182271999941, 49.086228697000067 ], [ -123.091448201999953, 49.086595408000072 ], [ -123.09155399699999, 49.086808206000079 ], [ -123.091549596999954, 49.087359500000112 ], [ -123.091532688999948, 49.088353792000092 ], [ -123.091539906999955, 49.089268483000062 ], [ -123.088698008999941, 49.089255502000128 ], [ -123.086748381999982, 49.089244100000059 ], [ -123.086777792999939, 49.088379909000011 ], [ -123.086842775999926, 49.088325804000064 ], [ -123.087491413999885, 49.088327414000041 ], [ -123.088705177999913, 49.088330393000064 ], [ -123.088722089999962, 49.086461211000071 ], [ -123.088751194999986, 49.085164590000034 ], [ -123.089893511999961, 49.085171187000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113693917", "BldgCostT": "73791667", "sL_LossRatio": "0.673066301158757", "sL_AssetLoss": "3286021", "sL_BldgLoss": "2211710", "sL_StrLoss": "869450", "sL_NStrLoss": "1342260", "sL_ContLoss": "1074311", "geom_point": "0101000020E61000000DC5BA44F7C55EC0F123230C288B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094046807999945, 49.085196198000084 ], [ -123.095116300999933, 49.085207994000086 ], [ -123.095057103999963, 49.086705608000045 ], [ -123.095033210999958, 49.087307796000069 ], [ -123.095012790999931, 49.087964893000041 ], [ -123.094971508999961, 49.088955797000111 ], [ -123.094447401999901, 49.0891731930001 ], [ -123.094170301999924, 49.089250380000088 ], [ -123.093938682999948, 49.089276599000058 ], [ -123.093218123999989, 49.089274457000073 ], [ -123.093001283999925, 49.089273803000012 ], [ -123.091539906999955, 49.089268483000062 ], [ -123.091532688999948, 49.088353792000092 ], [ -123.091549596999954, 49.087359500000112 ], [ -123.09155399699999, 49.086808206000079 ], [ -123.091448201999953, 49.086595408000072 ], [ -123.091182271999941, 49.086228697000067 ], [ -123.091189600999925, 49.085892897000079 ], [ -123.09119959899995, 49.085184001000115 ], [ -123.092902904999946, 49.085193208000099 ], [ -123.094046807999945, 49.085196198000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "484376615", "BldgCostT": "308697893", "sL_LossRatio": "0.736270117181646", "sL_AssetLoss": "8008080", "sL_BldgLoss": "5896110", "sL_StrLoss": "2629200", "sL_NStrLoss": "3266910", "sL_ContLoss": "2111970", "geom_point": "0101000020E6100000312A9076AFC55EC0294E8A03A68B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094447401999901, 49.0891731930001 ], [ -123.094971508999961, 49.088955797000111 ], [ -123.095014405000015, 49.08921388600001 ], [ -123.09495159, 49.089351309000101 ], [ -123.094300502999928, 49.08955909200013 ], [ -123.094122419, 49.089721402000045 ], [ -123.09264531499997, 49.090433491000091 ], [ -123.09193445799994, 49.090656349000021 ], [ -123.091523123999977, 49.090785303000061 ], [ -123.090674411999942, 49.091145591000114 ], [ -123.089730002999957, 49.09179360100012 ], [ -123.089579887999946, 49.092081292000096 ], [ -123.08893618799999, 49.092289301000086 ], [ -123.088142389999987, 49.092433106000044 ], [ -123.087019694, 49.093145194000073 ], [ -123.086966091999955, 49.093397309000053 ], [ -123.086485994999933, 49.093676494000086 ], [ -123.086339604999978, 49.093774091000071 ], [ -123.086323691999894, 49.093784690000064 ], [ -123.086284945999978, 49.09381903900006 ], [ -123.085668189, 49.093292189000081 ], [ -123.0859735499999, 49.093097359000055 ], [ -123.085258363999955, 49.092604945000083 ], [ -123.084936804999941, 49.092384499000048 ], [ -123.084237801999933, 49.091919513000029 ], [ -123.085742292999981, 49.090930498000034 ], [ -123.086295106999927, 49.09058329800007 ], [ -123.086615284999965, 49.090387514000078 ], [ -123.086752122999926, 49.090279394000092 ], [ -123.086773591999943, 49.09015480200005 ], [ -123.087756588000019, 49.090149003000114 ], [ -123.088707120999985, 49.090161205000072 ], [ -123.088698008999941, 49.089255502000128 ], [ -123.091539906999955, 49.089268483000062 ], [ -123.093001283999925, 49.089273803000012 ], [ -123.093218123999989, 49.089274457000073 ], [ -123.093938682999948, 49.089276599000058 ], [ -123.094170301999924, 49.089250380000088 ], [ -123.094447401999901, 49.0891731930001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183521783", "BldgCostT": "123735546", "sL_LossRatio": "0.746322514847921", "sL_AssetLoss": "3333800", "sL_BldgLoss": "2488090", "sL_StrLoss": "995780", "sL_NStrLoss": "1492310", "sL_ContLoss": "845710", "geom_point": "0101000020E61000007D6042FD55C65EC041853474FD8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095012790999931, 49.087964893000041 ], [ -123.095033210999958, 49.087307796000069 ], [ -123.095057103999963, 49.086705608000045 ], [ -123.097556398999984, 49.086723601000124 ], [ -123.0978026, 49.087076291000081 ], [ -123.098598710999923, 49.086820194000033 ], [ -123.099102510999941, 49.087564501000095 ], [ -123.100886492999933, 49.087003607000021 ], [ -123.102529809999979, 49.086481204000037 ], [ -123.102005122999927, 49.085741790000029 ], [ -123.102165007999943, 49.085460496000088 ], [ -123.100718016999934, 49.085026799000083 ], [ -123.100059092999956, 49.084839593 ], [ -123.099424496999958, 49.084811704000082 ], [ -123.098449295999927, 49.08480251300012 ], [ -123.098360281999973, 49.084803700000094 ], [ -123.097331822999976, 49.084793007000073 ], [ -123.096281899999937, 49.084775503000095 ], [ -123.095155513999927, 49.084754910000122 ], [ -123.09518870299992, 49.083761994000099 ], [ -123.095217503999947, 49.083136087000128 ], [ -123.095232422999928, 49.082812270000012 ], [ -123.095234894999976, 49.082758073000029 ], [ -123.095254414999957, 49.082334493000118 ], [ -123.099689514999938, 49.083917455000133 ], [ -123.104547195999913, 49.085592979000104 ], [ -123.104521895999952, 49.08585104900007 ], [ -123.106657414, 49.08517545700002 ], [ -123.106735205999883, 49.085150838000047 ], [ -123.106755327999934, 49.085840271000023 ], [ -123.106724045999897, 49.08590124500013 ], [ -123.105523504999937, 49.086256311000071 ], [ -123.105017287999928, 49.086293400000073 ], [ -123.103621294999982, 49.086645107000109 ], [ -123.103471499999927, 49.086807511000139 ], [ -123.102526591999947, 49.086934211000028 ], [ -123.102281105999907, 49.087096589000105 ], [ -123.101870581999918, 49.08708809700002 ], [ -123.10158229699999, 49.087294589000059 ], [ -123.101301517999957, 49.087395438000044 ], [ -123.101148318999932, 49.087395573000094 ], [ -123.100946636999936, 49.087440062000049 ], [ -123.100876882999941, 49.087471257000168 ], [ -123.100877037999979, 49.087547900000082 ], [ -123.10080130599998, 49.087575101000056 ], [ -123.100461346999936, 49.087666037000062 ], [ -123.100441292999932, 49.08766605400006 ], [ -123.100411539, 49.087679360000074 ], [ -123.099624392999942, 49.087889910000065 ], [ -123.09891288899999, 49.087962510000118 ], [ -123.098640082999978, 49.088187595000129 ], [ -123.0983385899999, 49.088295807000037 ], [ -123.097229004999974, 49.088557787000099 ], [ -123.09695570699995, 49.088711695000015 ], [ -123.09495159, 49.089351309000101 ], [ -123.095014405000015, 49.08921388600001 ], [ -123.094971508999961, 49.088955797000111 ], [ -123.095012790999931, 49.087964893000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100978667", "BldgCostT": "65956667", "sL_LossRatio": "0.692386473135697", "sL_AssetLoss": "2823803", "sL_BldgLoss": "1955163", "sL_StrLoss": "808723", "sL_NStrLoss": "1146440", "sL_ContLoss": "868640", "geom_point": "0101000020E6100000EF5809694FC65EC05FF12FDDFF8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099102510999941, 49.087564501000095 ], [ -123.098598710999923, 49.086820194000033 ], [ -123.0978026, 49.087076291000081 ], [ -123.097556398999984, 49.086723601000124 ], [ -123.095057103999963, 49.086705608000045 ], [ -123.095116300999933, 49.085207994000086 ], [ -123.095155513999927, 49.084754910000122 ], [ -123.096281899999937, 49.084775503000095 ], [ -123.097331822999976, 49.084793007000073 ], [ -123.098360281999973, 49.084803700000094 ], [ -123.098449295999927, 49.08480251300012 ], [ -123.099424496999958, 49.084811704000082 ], [ -123.100059092999956, 49.084839593 ], [ -123.100718016999934, 49.085026799000083 ], [ -123.102165007999943, 49.085460496000088 ], [ -123.102005122999927, 49.085741790000029 ], [ -123.102529809999979, 49.086481204000037 ], [ -123.100886492999933, 49.087003607000021 ], [ -123.099102510999941, 49.087564501000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133260751", "BldgCostT": "90225001", "sL_LossRatio": "0.711083572666605", "sL_AssetLoss": "3582870", "sL_BldgLoss": "2547720", "sL_StrLoss": "1063200", "sL_NStrLoss": "1484520", "sL_ContLoss": "1035150", "geom_point": "0101000020E6100000FB1CF563D5C55EC03E612E4EA18A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088751194999986, 49.085164590000034 ], [ -123.088767590999964, 49.084419896000043 ], [ -123.087618393, 49.084414892000105 ], [ -123.087626793, 49.08366640000007 ], [ -123.088755301999967, 49.083675395000121 ], [ -123.088777888999942, 49.082940711000042 ], [ -123.088788904999987, 49.082217492000026 ], [ -123.088808287999939, 49.081470211000067 ], [ -123.088821215999943, 49.080781293000037 ], [ -123.087078286999954, 49.080752099000108 ], [ -123.087105814999944, 49.080027499000067 ], [ -123.087140891999979, 49.079794193000062 ], [ -123.09010303300002, 49.079680206000027 ], [ -123.090519506999954, 49.07965641300013 ], [ -123.090595056999931, 49.080045161000093 ], [ -123.090487754999984, 49.082292227000067 ], [ -123.090494454999927, 49.08237018500003 ], [ -123.0909491, 49.082409783000102 ], [ -123.091828202, 49.082394423000025 ], [ -123.091828479999933, 49.082545800000084 ], [ -123.092239315999933, 49.082545475000096 ], [ -123.092239817999939, 49.08281533800006 ], [ -123.092854209999956, 49.082814845000058 ], [ -123.092881597, 49.082376009000043 ], [ -123.095254414999957, 49.082334493000118 ], [ -123.095234894999976, 49.082758073000029 ], [ -123.095232422999928, 49.082812270000012 ], [ -123.095217503999947, 49.083136087000128 ], [ -123.09518870299992, 49.083761994000099 ], [ -123.095155513999927, 49.084754910000122 ], [ -123.095116300999933, 49.085207994000086 ], [ -123.094046807999945, 49.085196198000084 ], [ -123.092902904999946, 49.085193208000099 ], [ -123.09119959899995, 49.085184001000115 ], [ -123.089893511999961, 49.085171187000121 ], [ -123.088751194999986, 49.085164590000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114592311", "BldgCostT": "77408190", "sL_LossRatio": "0.704614979525676", "sL_AssetLoss": "3091433", "sL_BldgLoss": "2178270", "sL_StrLoss": "888510", "sL_NStrLoss": "1289760", "sL_ContLoss": "913163", "geom_point": "0101000020E61000001DC748F648C55EC08F7251A9698A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077371892999949, 49.081385495000099 ], [ -123.077876823999972, 49.080341602000047 ], [ -123.078062924999927, 49.080084069000051 ], [ -123.078260698999955, 49.079810404000092 ], [ -123.078274310999959, 49.079397299000121 ], [ -123.07836448499998, 49.079279288000109 ], [ -123.078383347999974, 49.079226513000059 ], [ -123.078397001, 49.07923675600005 ], [ -123.078887570999967, 49.079605186000087 ], [ -123.087140891999979, 49.079794193000062 ], [ -123.087105814999944, 49.080027499000067 ], [ -123.087078286999954, 49.080752099000108 ], [ -123.088821215999943, 49.080781293000037 ], [ -123.088808287999939, 49.081470211000067 ], [ -123.087731793999964, 49.081462704000025 ], [ -123.087687100999958, 49.082922006000118 ], [ -123.087126644999941, 49.08291881100007 ], [ -123.084319103999974, 49.082902797000024 ], [ -123.084112610999924, 49.082903078000129 ], [ -123.083532105999922, 49.082903898000104 ], [ -123.082403384999949, 49.08289941000006 ], [ -123.080648022999966, 49.082893200000065 ], [ -123.079492317999922, 49.082882504000096 ], [ -123.079316290999913, 49.082918264000156 ], [ -123.079148514999986, 49.082975894000093 ], [ -123.07883858299999, 49.083050286000123 ], [ -123.078460407999927, 49.083080590000101 ], [ -123.077962394999972, 49.083078794000038 ], [ -123.077527053999987, 49.083073390000024 ], [ -123.077390614, 49.083071709000116 ], [ -123.077264694999926, 49.082815406000158 ], [ -123.077263411, 49.081970908000066 ], [ -123.077289937, 49.081827859000107 ], [ -123.077371892999949, 49.081385495000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138697395", "BldgCostT": "92086524", "sL_LossRatio": "0.716669683086264", "sL_AssetLoss": "2530594", "sL_BldgLoss": "1813600", "sL_StrLoss": "832990", "sL_NStrLoss": "980610", "sL_ContLoss": "716994", "geom_point": "0101000020E6100000B351101B70C55EC021F82167C8834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079701911999976, 49.037516392000072 ], [ -123.079645489999962, 49.035863111000047 ], [ -123.07964588199998, 49.035776741000113 ], [ -123.079652396999919, 49.034334219000073 ], [ -123.079725006999979, 49.032017701000065 ], [ -123.079731689999917, 49.030448211000071 ], [ -123.079815819000018, 49.029826220000054 ], [ -123.079862027, 49.029484695000072 ], [ -123.079897178999971, 49.029224488000111 ], [ -123.079892125999947, 49.029030495000086 ], [ -123.079885894999904, 49.028793511000089 ], [ -123.07979218399997, 49.028433214000067 ], [ -123.079772895999952, 49.027999311 ], [ -123.079772887, 49.027279289000084 ], [ -123.079769189999951, 49.026573704000057 ], [ -123.079768439999924, 49.026080562000161 ], [ -123.079766301999939, 49.024700182000068 ], [ -123.082285165999977, 49.024701150000091 ], [ -123.083228806999898, 49.024691703000045 ], [ -123.08342664499996, 49.024692794000032 ], [ -123.085602103999989, 49.024704792000108 ], [ -123.087010215999953, 49.024703365000114 ], [ -123.088104505999951, 49.024702247000114 ], [ -123.089410195999989, 49.024700895000123 ], [ -123.090828818999952, 49.024723191000113 ], [ -123.090808813999942, 49.025374093000067 ], [ -123.090809683999936, 49.02542459600015 ], [ -123.090813899999944, 49.025510284000077 ], [ -123.090807609999942, 49.02615980500007 ], [ -123.090820970999943, 49.026684345000049 ], [ -123.090084132999962, 49.026684921000012 ], [ -123.090084621, 49.026954788000126 ], [ -123.089674241999944, 49.026955108 ], [ -123.089674726999974, 49.027224975000131 ], [ -123.090834719, 49.027224068000123 ], [ -123.090959193999964, 49.032110243000034 ], [ -123.079701911999976, 49.037516392000072 ] ], [ [ -123.084351629999929, 49.034245533000089 ], [ -123.084350497999978, 49.033576496000101 ], [ -123.081477332999896, 49.033498413000103 ], [ -123.081478556999954, 49.034247597000046 ], [ -123.08065767799999, 49.034248173000087 ], [ -123.080658112999984, 49.034518040000101 ], [ -123.080247672, 49.0345183270001 ], [ -123.08025027799999, 49.036137526000097 ], [ -123.080660730999952, 49.036137239000048 ], [ -123.080661168999939, 49.036407107000166 ], [ -123.081482081999951, 49.036406530000143 ], [ -123.081481641999957, 49.036136663000029 ], [ -123.081892096999951, 49.036136372000065 ], [ -123.081891651999925, 49.035866506000062 ], [ -123.082302104999926, 49.035866214000066 ], [ -123.08230166099996, 49.035596348000126 ], [ -123.082712111999967, 49.035596054000052 ], [ -123.082711214999932, 49.03505632100012 ], [ -123.083532106999911, 49.035055730000124 ], [ -123.083531655999963, 49.034785863000081 ], [ -123.083942098999941, 49.034785565000149 ], [ -123.083941190999951, 49.034245832000067 ], [ -123.084351629999929, 49.034245533000089 ] ], [ [ -123.086812386999966, 49.033164240000126 ], [ -123.086811446999931, 49.032624507000016 ], [ -123.08560519599996, 49.032625409000062 ], [ -123.085554600999956, 49.033435047000097 ], [ -123.086402423999971, 49.033434415000023 ], [ -123.086401955999946, 49.033164548000094 ], [ -123.086812386999966, 49.033164240000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147766480", "BldgCostT": "89299460", "sL_LossRatio": "0.714248477405449", "sL_AssetLoss": "1994950", "sL_BldgLoss": "1424890", "sL_StrLoss": "644880", "sL_NStrLoss": "780010", "sL_ContLoss": "570060", "geom_point": "0101000020E61000005E1DB6E3FCC55EC0A11DFD50E5824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090828541999969, 49.024632155000106 ], [ -123.090816330999971, 49.020117931000094 ], [ -123.09081491100001, 49.019577591000022 ], [ -123.091071200999977, 49.019544006000089 ], [ -123.091703496999983, 49.019528702000137 ], [ -123.092482308999934, 49.019640792000111 ], [ -123.093136588999982, 49.020106389000084 ], [ -123.0936951, 49.020574692000082 ], [ -123.093890102999936, 49.020669194000099 ], [ -123.094216014, 49.020769093000077 ], [ -123.094530691999978, 49.020806395000093 ], [ -123.094831092999925, 49.020811803000079 ], [ -123.095192487999938, 49.021274364000114 ], [ -123.097113393999976, 49.02373270800009 ], [ -123.097117980999926, 49.024207696000147 ], [ -123.099313684999956, 49.024217505000145 ], [ -123.099306191, 49.024580179000047 ], [ -123.099306186, 49.024581318000074 ], [ -123.09736575799991, 49.024666346000117 ], [ -123.096808039999956, 49.024630413000054 ], [ -123.093634258999941, 49.024649780000047 ], [ -123.090828818999952, 49.024723191000113 ], [ -123.090828541999969, 49.024632155000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103008083", "BldgCostT": "67598333", "sL_LossRatio": "0.694827856721836", "sL_AssetLoss": "2358210", "sL_BldgLoss": "1638550", "sL_StrLoss": "692880", "sL_NStrLoss": "945670", "sL_ContLoss": "719660", "geom_point": "0101000020E61000007C5803EF7FC55EC01C25B73FFA824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083228806999898, 49.024691703000045 ], [ -123.083218224999925, 49.023921899000094 ], [ -123.081832318999886, 49.023922 ], [ -123.081842992999938, 49.022854496000029 ], [ -123.081813417999967, 49.022563608000048 ], [ -123.081804382999934, 49.022052402000043 ], [ -123.083199186999977, 49.0221047060001 ], [ -123.086038119999969, 49.022209808000106 ], [ -123.086204100999922, 49.022178299000103 ], [ -123.087317315999911, 49.021708404000073 ], [ -123.088412488999964, 49.021240693000053 ], [ -123.088900871999982, 49.021735994000032 ], [ -123.089309807999939, 49.02214720800005 ], [ -123.089370410999962, 49.022272299000086 ], [ -123.089402019999923, 49.02305709300007 ], [ -123.089408208999927, 49.023943004000053 ], [ -123.089410195999989, 49.024700895000123 ], [ -123.088104505999951, 49.024702247000114 ], [ -123.087010215999953, 49.024703365000114 ], [ -123.085602103999989, 49.024704792000108 ], [ -123.08342664499996, 49.024692794000032 ], [ -123.083228806999898, 49.024691703000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112075500", "BldgCostT": "74820000", "sL_LossRatio": "0.722720130046058", "sL_AssetLoss": "1845500", "sL_BldgLoss": "1333780", "sL_StrLoss": "611710", "sL_NStrLoss": "722070", "sL_ContLoss": "511720", "geom_point": "0101000020E6100000DF22173957C55EC03A32A0289A824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080535794999932, 49.022013405000081 ], [ -123.080498432999917, 49.019809230000121 ], [ -123.080484858999966, 49.019008813000042 ], [ -123.080468787999948, 49.018062107000084 ], [ -123.081739492999958, 49.018065099000111 ], [ -123.083144488999949, 49.018061803000066 ], [ -123.084552271999897, 49.018058700000068 ], [ -123.084558318999981, 49.018880606000074 ], [ -123.084611090999928, 49.018950239000056 ], [ -123.084704800999958, 49.019073801000069 ], [ -123.086600185999899, 49.020978901000028 ], [ -123.087702310999958, 49.020510501000096 ], [ -123.088412488999964, 49.021240693000053 ], [ -123.087317315999911, 49.021708404000073 ], [ -123.086204100999922, 49.022178299000103 ], [ -123.086038119999969, 49.022209808000106 ], [ -123.083199186999977, 49.0221047060001 ], [ -123.081804382999934, 49.022052402000043 ], [ -123.080535794999932, 49.022013405000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137415250", "BldgCostT": "92350000", "sL_LossRatio": "0.716510754600988", "sL_AssetLoss": "3181708", "sL_BldgLoss": "2279728", "sL_StrLoss": "959278", "sL_NStrLoss": "1320450", "sL_ContLoss": "901980", "geom_point": "0101000020E61000001CEB877DA7C55EC01E361D4378824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088412488999964, 49.021240693000053 ], [ -123.087702310999958, 49.020510501000096 ], [ -123.086600185999899, 49.020978901000028 ], [ -123.084704800999958, 49.019073801000069 ], [ -123.084611090999928, 49.018950239000056 ], [ -123.084558318999981, 49.018880606000074 ], [ -123.084552271999897, 49.018058700000068 ], [ -123.084553672999917, 49.017719286000109 ], [ -123.084555493999986, 49.017269517000102 ], [ -123.084556594999981, 49.017005399000027 ], [ -123.084577514999978, 49.01629949200003 ], [ -123.085291004999988, 49.016296399000048 ], [ -123.085689195999976, 49.01626660400008 ], [ -123.08581640599999, 49.016636786000028 ], [ -123.08592291899997, 49.016791092000062 ], [ -123.086146006999968, 49.016894486000034 ], [ -123.08645590299993, 49.016944291000115 ], [ -123.086851294999946, 49.01695780600005 ], [ -123.086955016999966, 49.016676805000046 ], [ -123.087119512999948, 49.016492892 ], [ -123.087351515999941, 49.01638840600004 ], [ -123.087652108999961, 49.016344292000056 ], [ -123.088226498999987, 49.016345999000116 ], [ -123.091221929999932, 49.016354745000115 ], [ -123.091823393999974, 49.016356497000082 ], [ -123.091312455999969, 49.0167949370001 ], [ -123.091292105, 49.016812407000053 ], [ -123.091000196, 49.017154110000057 ], [ -123.090839390999946, 49.017563396000085 ], [ -123.090828623999968, 49.017641821000055 ], [ -123.090794407999937, 49.017891085000024 ], [ -123.090810726999962, 49.019235022000068 ], [ -123.09081491100001, 49.019577591000022 ], [ -123.090816330999971, 49.020117931000094 ], [ -123.090828541999969, 49.024632155000106 ], [ -123.090828818999952, 49.024723191000113 ], [ -123.089410195999989, 49.024700895000123 ], [ -123.089408208999927, 49.023943004000053 ], [ -123.089402019999923, 49.02305709300007 ], [ -123.089370410999962, 49.022272299000086 ], [ -123.089309807999939, 49.02214720800005 ], [ -123.088900871999982, 49.021735994000032 ], [ -123.088412488999964, 49.021240693000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109032917", "BldgCostT": "72721667", "sL_LossRatio": "0.721326357375709", "sL_AssetLoss": "1815378", "sL_BldgLoss": "1309480", "sL_StrLoss": "586000", "sL_NStrLoss": "723480", "sL_ContLoss": "505898", "geom_point": "0101000020E61000002F36B5854AC55EC00FDB1ED6FE814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085433169999973, 49.013540098000064 ], [ -123.087393094999982, 49.013533 ], [ -123.087396620999954, 49.014243200000109 ], [ -123.087330394999981, 49.01442790600008 ], [ -123.087177987999937, 49.014570601000045 ], [ -123.086901195999971, 49.014736106000122 ], [ -123.086483683999973, 49.014922095000067 ], [ -123.086245907999952, 49.014967899000041 ], [ -123.086020397999974, 49.01496720800003 ], [ -123.084605089, 49.014962087000093 ], [ -123.084592816999944, 49.015326761000068 ], [ -123.084581122999964, 49.015673288000052 ], [ -123.084577514999978, 49.01629949200003 ], [ -123.084556594999981, 49.017005399000027 ], [ -123.084555493999986, 49.017269517000102 ], [ -123.084553672999917, 49.017719286000109 ], [ -123.084552271999897, 49.018058700000068 ], [ -123.083144488999949, 49.018061803000066 ], [ -123.081739492999958, 49.018065099000111 ], [ -123.080468787999948, 49.018062107000084 ], [ -123.079622625999917, 49.018066102000091 ], [ -123.079626407999982, 49.017776786000134 ], [ -123.079630518999949, 49.017461980000071 ], [ -123.079632539999963, 49.017308976000017 ], [ -123.07963640499996, 49.017015784000115 ], [ -123.079651498999965, 49.01612050900016 ], [ -123.079656404, 49.015959556000048 ], [ -123.079681291999975, 49.015140892000019 ], [ -123.079683179999947, 49.014084888000085 ], [ -123.079683546999959, 49.014025536000091 ], [ -123.079685794999975, 49.013607308000083 ], [ -123.079824685999967, 49.013605685000101 ], [ -123.080111808999916, 49.013602327000029 ], [ -123.080850309999974, 49.013593694000107 ], [ -123.085433169999973, 49.013540098000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105446500", "BldgCostT": "72250000", "sL_LossRatio": "0.723765594785574", "sL_AssetLoss": "2656016", "sL_BldgLoss": "1922333", "sL_StrLoss": "795833", "sL_NStrLoss": "1126500", "sL_ContLoss": "733683", "geom_point": "0101000020E61000005C0229B1ABC55EC074519907D5814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08581640599999, 49.016636786000028 ], [ -123.085689195999976, 49.01626660400008 ], [ -123.085291004999988, 49.016296399000048 ], [ -123.084577514999978, 49.01629949200003 ], [ -123.084581122999964, 49.015673288000052 ], [ -123.084592816999944, 49.015326761000068 ], [ -123.084605089, 49.014962087000093 ], [ -123.086020397999974, 49.01496720800003 ], [ -123.086245907999952, 49.014967899000041 ], [ -123.086483683999973, 49.014922095000067 ], [ -123.086901195999971, 49.014736106000122 ], [ -123.087177987999937, 49.014570601000045 ], [ -123.087330394999981, 49.01442790600008 ], [ -123.087396620999954, 49.014243200000109 ], [ -123.087393094999982, 49.013533 ], [ -123.085433169999973, 49.013540098000064 ], [ -123.085427321999958, 49.01280290600009 ], [ -123.085437316999958, 49.012577001000118 ], [ -123.08530039799993, 49.012056892000054 ], [ -123.08600719899999, 49.011940992000063 ], [ -123.08647781699996, 49.011910506000014 ], [ -123.087405394999948, 49.01186988900011 ], [ -123.09080518799999, 49.011866589000071 ], [ -123.091443391, 49.013025594000055 ], [ -123.091453563999949, 49.013053482000011 ], [ -123.091583522999926, 49.01340970600009 ], [ -123.091742509999946, 49.013889886000094 ], [ -123.091823791999957, 49.014135304000021 ], [ -123.092154184999956, 49.015147823000042 ], [ -123.092249514999963, 49.015439899000071 ], [ -123.09220021899992, 49.015726894000125 ], [ -123.092053081999964, 49.016047300000011 ], [ -123.091823393999974, 49.016356497000082 ], [ -123.091221929999932, 49.016354745000115 ], [ -123.088226498999987, 49.016345999000116 ], [ -123.087652108999961, 49.016344292000056 ], [ -123.087351515999941, 49.01638840600004 ], [ -123.087119512999948, 49.016492892 ], [ -123.086955016999966, 49.016676805000046 ], [ -123.086851294999946, 49.01695780600005 ], [ -123.08645590299993, 49.016944291000115 ], [ -123.086146006999968, 49.016894486000034 ], [ -123.08592291899997, 49.016791092000062 ], [ -123.08581640599999, 49.016636786000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109353083", "BldgCostT": "74888333", "sL_LossRatio": "0.734164592117192", "sL_AssetLoss": "2084790", "sL_BldgLoss": "1530579", "sL_StrLoss": "684859", "sL_NStrLoss": "845720", "sL_ContLoss": "554211", "geom_point": "0101000020E61000002564520930C55EC0201CBB5D92814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079134681999975, 49.011540502000088 ], [ -123.079131619999956, 49.010847499000093 ], [ -123.079443499999954, 49.010863197000084 ], [ -123.079761698999974, 49.010932194000077 ], [ -123.080146097999929, 49.011098610000069 ], [ -123.080915915999938, 49.010326486000096 ], [ -123.08099509699997, 49.010086293000072 ], [ -123.081847803999935, 49.01010678800003 ], [ -123.082335838999967, 49.010181736000064 ], [ -123.082454094999918, 49.010199913000058 ], [ -123.082781765999968, 49.010261698000072 ], [ -123.082838998999989, 49.010272516000086 ], [ -123.083189772999987, 49.010375495000083 ], [ -123.083261602999954, 49.010396593000088 ], [ -123.083279402999963, 49.010404550000075 ], [ -123.083344182999923, 49.010433487000093 ], [ -123.083815880999936, 49.01064421300002 ], [ -123.08414688, 49.010813600000084 ], [ -123.084504285999955, 49.011063894000131 ], [ -123.084921090999984, 49.011456415000097 ], [ -123.08530039799993, 49.012056892000054 ], [ -123.085437316999958, 49.012577001000118 ], [ -123.085427321999958, 49.01280290600009 ], [ -123.085433169999973, 49.013540098000064 ], [ -123.080850309999974, 49.013593694000107 ], [ -123.080111808999916, 49.013602327000029 ], [ -123.079824685999967, 49.013605685000101 ], [ -123.079685794999975, 49.013607308000083 ], [ -123.078649307999939, 49.013621560000104 ], [ -123.076995515999968, 49.013644288000066 ], [ -123.076936784999972, 49.013645091000036 ], [ -123.074735196999896, 49.013670683000115 ], [ -123.074320886999914, 49.013675605000067 ], [ -123.074319004999921, 49.012943001000039 ], [ -123.076312891999976, 49.012916203000032 ], [ -123.076445571999983, 49.01291490100008 ], [ -123.076944607999977, 49.012909993000079 ], [ -123.077555892999939, 49.012859106000079 ], [ -123.077586891999943, 49.012276919000044 ], [ -123.077675302999964, 49.01210809300008 ], [ -123.077875993999925, 49.011892786 ], [ -123.078245894999981, 49.011725407000071 ], [ -123.078542890999969, 49.011673109000121 ], [ -123.079040280999891, 49.011628999000024 ], [ -123.079101723999955, 49.0115714 ], [ -123.079134681999975, 49.011540502000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97072251", "BldgCostT": "66155001", "sL_LossRatio": "0.732224839281289", "sL_AssetLoss": "1779351", "sL_BldgLoss": "1302885", "sL_StrLoss": "599903", "sL_NStrLoss": "702982", "sL_ContLoss": "476466", "geom_point": "0101000020E6100000BC5ADDA06CC55EC0A41309A61A814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083815880999936, 49.01064421300002 ], [ -123.083344182999923, 49.010433487000093 ], [ -123.083279402999963, 49.010404550000075 ], [ -123.083261602999954, 49.010396593000088 ], [ -123.083189772999987, 49.010375495000083 ], [ -123.082838998999989, 49.010272516000086 ], [ -123.082781765999968, 49.010261698000072 ], [ -123.082454094999918, 49.010199913000058 ], [ -123.082335838999967, 49.010181736000064 ], [ -123.081847803999935, 49.01010678800003 ], [ -123.08099509699997, 49.010086293000072 ], [ -123.080530657999958, 49.01008399800012 ], [ -123.079792151999925, 49.010080331000061 ], [ -123.079742587999931, 49.010080099000099 ], [ -123.079824009999967, 49.007251107000116 ], [ -123.080541098999916, 49.00725348800011 ], [ -123.081101001999969, 49.007213679000131 ], [ -123.08219209799995, 49.00707041500003 ], [ -123.082849376999945, 49.007060478000071 ], [ -123.083575991999936, 49.007049495000132 ], [ -123.084765789999949, 49.007053884000122 ], [ -123.08793988799999, 49.007093193000067 ], [ -123.087973298999955, 49.006317408000108 ], [ -123.088413362999972, 49.006322253000079 ], [ -123.089481897999988, 49.00633399800008 ], [ -123.089583595999926, 49.007243716000076 ], [ -123.089608678999952, 49.007468070000108 ], [ -123.089669025999953, 49.008008168000046 ], [ -123.089689111999945, 49.008187784 ], [ -123.089747597999946, 49.008711090000112 ], [ -123.089794964999939, 49.009124137000065 ], [ -123.08980689199997, 49.009228198000109 ], [ -123.089854096999957, 49.009633089000069 ], [ -123.085951589, 49.009614601000095 ], [ -123.085967589999925, 49.010452188000031 ], [ -123.085967897999979, 49.010973012000044 ], [ -123.085914716999923, 49.01105990500006 ], [ -123.084921090999984, 49.011456415000097 ], [ -123.084504285999955, 49.011063894000131 ], [ -123.08414688, 49.010813600000084 ], [ -123.083815880999936, 49.01064421300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75613334", "BldgCostT": "51883334", "sL_LossRatio": "0.739095236310483", "sL_AssetLoss": "1334050", "sL_BldgLoss": "985990", "sL_StrLoss": "452140", "sL_NStrLoss": "533850", "sL_ContLoss": "348060", "geom_point": "0101000020E61000009252D0ED25C55EC03A6DF03201814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076238605999947, 49.010068498000166 ], [ -123.076251103999979, 49.009215488000088 ], [ -123.075482385999933, 49.009206302000102 ], [ -123.075484282999966, 49.008370103000125 ], [ -123.077067705999966, 49.00835653500009 ], [ -123.077532548999955, 49.008352553000059 ], [ -123.078378291999954, 49.008345304000045 ], [ -123.078383612999957, 49.008106844000089 ], [ -123.078388419999939, 49.007891140000048 ], [ -123.078406503999986, 49.007081162000091 ], [ -123.078422890999931, 49.006345099000065 ], [ -123.079855899, 49.00630399100006 ], [ -123.08029048600001, 49.006306601000048 ], [ -123.081258517000023, 49.006312401000066 ], [ -123.082985445999952, 49.00630520800005 ], [ -123.08347769099997, 49.006303179000113 ], [ -123.084763802999987, 49.006297792000083 ], [ -123.08532327599994, 49.006301218000019 ], [ -123.087018504999961, 49.006311566000136 ], [ -123.087973298999955, 49.006317408000108 ], [ -123.08793988799999, 49.007093193000067 ], [ -123.084765789999949, 49.007053884000122 ], [ -123.083575991999936, 49.007049495000132 ], [ -123.082849376999945, 49.007060478000071 ], [ -123.08219209799995, 49.00707041500003 ], [ -123.081101001999969, 49.007213679000131 ], [ -123.080541098999916, 49.00725348800011 ], [ -123.079824009999967, 49.007251107000116 ], [ -123.079742587999931, 49.010080099000099 ], [ -123.07832468399998, 49.010073993000042 ], [ -123.076238605999947, 49.010068498000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140347394", "BldgCostT": "94411523", "sL_LossRatio": "0.734543602730676", "sL_AssetLoss": "2179680", "sL_BldgLoss": "1601070", "sL_StrLoss": "728060", "sL_NStrLoss": "873010", "sL_ContLoss": "578610", "geom_point": "0101000020E61000001FF8201DC1C55EC00135C69805814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091443391, 49.013025594000055 ], [ -123.09080518799999, 49.011866589000071 ], [ -123.087405394999948, 49.01186988900011 ], [ -123.08647781699996, 49.011910506000014 ], [ -123.08600719899999, 49.011940992000063 ], [ -123.08530039799993, 49.012056892000054 ], [ -123.084921090999984, 49.011456415000097 ], [ -123.085914716999923, 49.01105990500006 ], [ -123.085967897999979, 49.010973012000044 ], [ -123.085967589999925, 49.010452188000031 ], [ -123.085951589, 49.009614601000095 ], [ -123.089854096999957, 49.009633089000069 ], [ -123.08980689199997, 49.009228198000109 ], [ -123.089794964999939, 49.009124137000065 ], [ -123.089747597999946, 49.008711090000112 ], [ -123.089689111999945, 49.008187784 ], [ -123.089669025999953, 49.008008168000046 ], [ -123.089608678999952, 49.007468070000108 ], [ -123.089583595999926, 49.007243716000076 ], [ -123.089481897999988, 49.00633399800008 ], [ -123.088413362999972, 49.006322253000079 ], [ -123.087973298999955, 49.006317408000108 ], [ -123.087018504999961, 49.006311566000136 ], [ -123.08532327599994, 49.006301218000019 ], [ -123.084763802999987, 49.006297792000083 ], [ -123.084776987999987, 49.005342997000085 ], [ -123.086402253999935, 49.005346043000046 ], [ -123.086593715999953, 49.005346423000027 ], [ -123.086954487999947, 49.005347106000102 ], [ -123.087902923999934, 49.005474703000033 ], [ -123.08791799699999, 49.004466785000069 ], [ -123.089376287999968, 49.004479309000089 ], [ -123.089378900999932, 49.004328013000148 ], [ -123.089329808999949, 49.004128390000091 ], [ -123.088985892999972, 49.003400902000052 ], [ -123.086576785999938, 49.003389640000094 ], [ -123.086379998999945, 49.003388689000055 ], [ -123.086235292999902, 49.003365898000027 ], [ -123.08610298399999, 49.003252406000044 ], [ -123.086049910999975, 49.003118393000065 ], [ -123.086059000999938, 49.002731194000077 ], [ -123.0861135899999, 49.002623704000108 ], [ -123.086227811999933, 49.002543893000102 ], [ -123.086373703999968, 49.002504594000094 ], [ -123.08679384899996, 49.002503619000059 ], [ -123.088785306999966, 49.00249888600009 ], [ -123.088730290999962, 49.002131514000098 ], [ -123.088516241999969, 49.002060411000095 ], [ -123.089353935999952, 49.002060062000048 ], [ -123.089445056, 49.002060062000048 ], [ -123.089701935999983, 49.002060062000048 ], [ -123.089742606999963, 49.002127215000058 ], [ -123.090039830999956, 49.002126982000043 ], [ -123.090040319, 49.002396850000089 ], [ -123.090450495999946, 49.002396529000109 ], [ -123.090450603999955, 49.002456180000081 ], [ -123.091090102999956, 49.002473526000124 ], [ -123.091162348999916, 49.002591240000108 ], [ -123.091471511999927, 49.003300159000069 ], [ -123.091792811999952, 49.003865417000071 ], [ -123.091963036999985, 49.004394927000106 ], [ -123.091985741999906, 49.004431994000058 ], [ -123.091994203999931, 49.004697488000083 ], [ -123.092396810999958, 49.005826616000064 ], [ -123.092421127999927, 49.006154093000106 ], [ -123.092443681999924, 49.006230841000047 ], [ -123.092424201999947, 49.0082950890001 ], [ -123.092561719999978, 49.008843402000061 ], [ -123.092763833, 49.009264654000077 ], [ -123.092818143999963, 49.009442718000116 ], [ -123.092923682999952, 49.009597817000071 ], [ -123.094019299999957, 49.011881165000027 ], [ -123.094020208999893, 49.011883719000089 ], [ -123.094122744999936, 49.012627862000038 ], [ -123.091583522999926, 49.01340970600009 ], [ -123.091453563999949, 49.013053482000011 ], [ -123.091443391, 49.013025594000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101317000", "BldgCostT": "69610000", "sL_LossRatio": "0.737720789286969", "sL_AssetLoss": "1898473", "sL_BldgLoss": "1400543", "sL_StrLoss": "623513", "sL_NStrLoss": "777030", "sL_ContLoss": "497930", "geom_point": "0101000020E61000001B372D5F34C55EC0E3752FBD9E804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077046614999944, 49.005392992000047 ], [ -123.077050088999925, 49.004465009000107 ], [ -123.078279892999973, 49.004460604000059 ], [ -123.078296110999986, 49.002565104000062 ], [ -123.080008006999947, 49.002564012000029 ], [ -123.080599880999912, 49.002491797000076 ], [ -123.081932095999889, 49.002488405000065 ], [ -123.082132504999961, 49.002516287000105 ], [ -123.082022178999978, 49.002905302000052 ], [ -123.081949177999917, 49.003024095000072 ], [ -123.081749913999914, 49.003173705000037 ], [ -123.081446895999989, 49.003256405000123 ], [ -123.081079697999925, 49.003296011000074 ], [ -123.080827286999934, 49.003377407000094 ], [ -123.080629498999912, 49.003503595000069 ], [ -123.080476104999903, 49.003662591000086 ], [ -123.080476903999923, 49.004458305000064 ], [ -123.081792900999943, 49.004455802000031 ], [ -123.082503899999907, 49.004454437000092 ], [ -123.083296863999948, 49.00445291400009 ], [ -123.083816434999932, 49.004451899000088 ], [ -123.083834918999969, 49.004451868000046 ], [ -123.084749504999976, 49.00445010300006 ], [ -123.087248968999987, 49.004463278000038 ], [ -123.08791799699999, 49.004466785000069 ], [ -123.087902923999934, 49.005474703000033 ], [ -123.086954487999947, 49.005347106000102 ], [ -123.086593715999953, 49.005346423000027 ], [ -123.086402253999935, 49.005346043000046 ], [ -123.084776987999987, 49.005342997000085 ], [ -123.084763802999987, 49.006297792000083 ], [ -123.08347769099997, 49.006303179000113 ], [ -123.082985445999952, 49.00630520800005 ], [ -123.081258517000023, 49.006312401000066 ], [ -123.08029048600001, 49.006306601000048 ], [ -123.079855899, 49.00630399100006 ], [ -123.078422890999931, 49.006345099000065 ], [ -123.077038698999957, 49.006347998000095 ], [ -123.077046614999944, 49.005392992000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124515167", "BldgCostT": "83926667", "sL_LossRatio": "0.75604066198794", "sL_AssetLoss": "1588609", "sL_BldgLoss": "1201053", "sL_StrLoss": "579283", "sL_NStrLoss": "621770", "sL_ContLoss": "387556", "geom_point": "0101000020E6100000234A10E82BC55EC0BBDF801A67804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06866137599998, 49.003077193000117 ], [ -123.068680198999928, 49.002538786000102 ], [ -123.068687886999982, 49.002263315000057 ], [ -123.068639334999929, 49.002135938000038 ], [ -123.068613822999936, 49.00206895900007 ], [ -123.068678935999927, 49.002069062 ], [ -123.075307934999927, 49.002065062000085 ], [ -123.088516241999969, 49.002060411000095 ], [ -123.088730290999962, 49.002131514000098 ], [ -123.088785306999966, 49.00249888600009 ], [ -123.08679384899996, 49.002503619000059 ], [ -123.086373703999968, 49.002504594000094 ], [ -123.086227811999933, 49.002543893000102 ], [ -123.0861135899999, 49.002623704000108 ], [ -123.086059000999938, 49.002731194000077 ], [ -123.086049910999975, 49.003118393000065 ], [ -123.08610298399999, 49.003252406000044 ], [ -123.086235292999902, 49.003365898000027 ], [ -123.086379998999945, 49.003388689000055 ], [ -123.086576785999938, 49.003389640000094 ], [ -123.088985892999972, 49.003400902000052 ], [ -123.089329808999949, 49.004128390000091 ], [ -123.089378900999932, 49.004328013000148 ], [ -123.089376287999968, 49.004479309000089 ], [ -123.08791799699999, 49.004466785000069 ], [ -123.087248968999987, 49.004463278000038 ], [ -123.084749504999976, 49.00445010300006 ], [ -123.083834918999969, 49.004451868000046 ], [ -123.083816434999932, 49.004451899000088 ], [ -123.083296863999948, 49.00445291400009 ], [ -123.082503899999907, 49.004454437000092 ], [ -123.081792900999943, 49.004455802000031 ], [ -123.080476903999923, 49.004458305000064 ], [ -123.080476104999903, 49.003662591000086 ], [ -123.080629498999912, 49.003503595000069 ], [ -123.080827286999934, 49.003377407000094 ], [ -123.081079697999925, 49.003296011000074 ], [ -123.081446895999989, 49.003256405000123 ], [ -123.081749913999914, 49.003173705000037 ], [ -123.081949177999917, 49.003024095000072 ], [ -123.082022178999978, 49.002905302000052 ], [ -123.082132504999961, 49.002516287000105 ], [ -123.081932095999889, 49.002488405000065 ], [ -123.080599880999912, 49.002491797000076 ], [ -123.080008006999947, 49.002564012000029 ], [ -123.078296110999986, 49.002565104000062 ], [ -123.077481305999981, 49.002553710000079 ], [ -123.076994608999968, 49.002471983000056 ], [ -123.076450879999982, 49.002471586000105 ], [ -123.075364096999962, 49.002482518000079 ], [ -123.074994095999941, 49.002479771000054 ], [ -123.074230802999949, 49.002474103000075 ], [ -123.072025895999957, 49.002472518000069 ], [ -123.070122218, 49.002483603000023 ], [ -123.070112201999947, 49.003731395000074 ], [ -123.070117218999897, 49.004456905000069 ], [ -123.068649595999943, 49.004461002000014 ], [ -123.068660426999898, 49.00319283699999 ], [ -123.06866137599998, 49.003077193000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98068833", "BldgCostT": "65478333", "sL_LossRatio": "0.727507215294196", "sL_AssetLoss": "1571315", "sL_BldgLoss": "1143143", "sL_StrLoss": "502433", "sL_NStrLoss": "640710", "sL_ContLoss": "428172", "geom_point": "0101000020E61000006175F574BFC45EC0075C78DA71804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074230802999949, 49.002474103000075 ], [ -123.074994095999941, 49.002479771000054 ], [ -123.075364096999962, 49.002482518000079 ], [ -123.076450879999982, 49.002471586000105 ], [ -123.076994608999968, 49.002471983000056 ], [ -123.077481305999981, 49.002553710000079 ], [ -123.078296110999986, 49.002565104000062 ], [ -123.078279892999973, 49.004460604000059 ], [ -123.077050088999925, 49.004465009000107 ], [ -123.075369698999936, 49.004465085000085 ], [ -123.074245265999934, 49.004465305000039 ], [ -123.073996433999966, 49.004465345000014 ], [ -123.073105911999946, 49.004465511000014 ], [ -123.070117218999897, 49.004456905000069 ], [ -123.070112201999947, 49.003731395000074 ], [ -123.070122218, 49.002483603000023 ], [ -123.072025895999957, 49.002472518000069 ], [ -123.074230802999949, 49.002474103000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178106083", "BldgCostT": "113518333", "sL_LossRatio": "0.719755937688833", "sL_AssetLoss": "2343336", "sL_BldgLoss": "1686630", "sL_StrLoss": "796900", "sL_NStrLoss": "889730", "sL_ContLoss": "656706", "geom_point": "0101000020E61000007832DD90ABC45EC02E377B14EC804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068653817, 49.009081733000102 ], [ -123.068659089000036, 49.008329420000081 ], [ -123.068666088999976, 49.007330611000086 ], [ -123.068656760999929, 49.005702751000065 ], [ -123.068649595999943, 49.004461002000014 ], [ -123.070117218999897, 49.004456905000069 ], [ -123.073105911999946, 49.004465511000014 ], [ -123.073996433999966, 49.004465345000014 ], [ -123.074245265999934, 49.004465305000039 ], [ -123.075369698999936, 49.004465085000085 ], [ -123.077050088999925, 49.004465009000107 ], [ -123.077046614999944, 49.005392992000047 ], [ -123.077038698999957, 49.006347998000095 ], [ -123.078422890999931, 49.006345099000065 ], [ -123.078406503999986, 49.007081162000091 ], [ -123.078388419999939, 49.007891140000048 ], [ -123.078383612999957, 49.008106844000089 ], [ -123.078378291999954, 49.008345304000045 ], [ -123.077532548999955, 49.008352553000059 ], [ -123.077067705999966, 49.00835653500009 ], [ -123.075484282999966, 49.008370103000125 ], [ -123.075482385999933, 49.009206302000102 ], [ -123.076251103999979, 49.009215488000088 ], [ -123.076238605999947, 49.010068498000166 ], [ -123.074099787999899, 49.010075985000114 ], [ -123.072811516999977, 49.010094911000159 ], [ -123.07141280899999, 49.010109892000095 ], [ -123.070083403999959, 49.010108718000062 ], [ -123.068646699999931, 49.010096493000049 ], [ -123.068653230999971, 49.009166088000093 ], [ -123.068653817, 49.009081733000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69851333", "BldgCostT": "48173333", "sL_LossRatio": "0.74396074484147", "sL_AssetLoss": "1112720", "sL_BldgLoss": "827820", "sL_StrLoss": "373410", "sL_NStrLoss": "454410", "sL_ContLoss": "284900", "geom_point": "0101000020E6100000F085C95441C45EC08F5D605E99804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063789180999891, 49.003259301000092 ], [ -123.063802783999932, 49.00250008800014 ], [ -123.065043396999954, 49.002498005000099 ], [ -123.065807507000017, 49.002512606000089 ], [ -123.066807297999986, 49.002775988000103 ], [ -123.067826802999946, 49.00307601100004 ], [ -123.06866137599998, 49.003077193000117 ], [ -123.068660426999898, 49.00319283699999 ], [ -123.068649595999943, 49.004461002000014 ], [ -123.068656760999929, 49.005702751000065 ], [ -123.068666088999976, 49.007330611000086 ], [ -123.068447497999927, 49.007330112000048 ], [ -123.06821239, 49.00728849200005 ], [ -123.068140876999919, 49.007263666000057 ], [ -123.067787204999917, 49.007140790000058 ], [ -123.067369009999979, 49.007121291000075 ], [ -123.066979287999985, 49.007061002000071 ], [ -123.066609912999951, 49.006959892000161 ], [ -123.06597220799999, 49.006563081000074 ], [ -123.065002501999956, 49.005906692000067 ], [ -123.063942506999979, 49.00488288800009 ], [ -123.063732819999956, 49.004740996000095 ], [ -123.064175615999957, 49.004500795000091 ], [ -123.064463312999976, 49.004423106000061 ], [ -123.064452978999952, 49.004174101000011 ], [ -123.064418819, 49.004115764000097 ], [ -123.064378882999961, 49.004047690000093 ], [ -123.063973487999945, 49.003630206000075 ], [ -123.063870939999944, 49.003476045000042 ], [ -123.063861224999968, 49.003461402000056 ], [ -123.063789180999891, 49.003259301000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56661918", "BldgCostT": "38341668", "sL_LossRatio": "0.721548004875999", "sL_AssetLoss": "1201805", "sL_BldgLoss": "867160", "sL_StrLoss": "386830", "sL_NStrLoss": "480330", "sL_ContLoss": "334645", "geom_point": "0101000020E6100000F1F4F85AE3C25EC0DF7A0382EF804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046548553999969, 49.011496933000075 ], [ -123.046545770999941, 49.008702994000053 ], [ -123.04654571599994, 49.008629801000062 ], [ -123.046472691999924, 49.008488104000065 ], [ -123.046329591999964, 49.008438190000106 ], [ -123.043482902999983, 49.008448092000052 ], [ -123.043325922999941, 49.008446497000136 ], [ -123.042458695000036, 49.008441203000068 ], [ -123.041773010999975, 49.008437004000022 ], [ -123.041106414999916, 49.008433904000043 ], [ -123.040047901999955, 49.008427207000082 ], [ -123.04005390899999, 49.007119530000089 ], [ -123.040063577999945, 49.005014204000076 ], [ -123.04002559499996, 49.004750900000069 ], [ -123.039872779999897, 49.003649099000086 ], [ -123.039715302, 49.002604094000027 ], [ -123.03964301, 49.002124307000017 ], [ -123.03960727, 49.002081633000053 ], [ -123.041436936, 49.002081061000062 ], [ -123.041429534999963, 49.002154677000107 ], [ -123.041639133999951, 49.002154600000033 ], [ -123.041640032999936, 49.003234074000012 ], [ -123.042050218, 49.003233925000117 ], [ -123.042051126999922, 49.004313397000033 ], [ -123.042461320999962, 49.004313248000116 ], [ -123.042463567999945, 49.006956147000054 ], [ -123.044062506999964, 49.007000219000147 ], [ -123.04411973399999, 49.006096802000087 ], [ -123.044279224999954, 49.006101197000085 ], [ -123.044304546999967, 49.005701405000089 ], [ -123.049760042999978, 49.005851589000031 ], [ -123.04968452599995, 49.007046017000079 ], [ -123.05025039799996, 49.007061579000073 ], [ -123.050046001999945, 49.010294782000109 ], [ -123.050177336000019, 49.010242862000027 ], [ -123.050495935999976, 49.010581562000027 ], [ -123.050266235999942, 49.010682662000114 ], [ -123.050036969999937, 49.010437636000077 ], [ -123.050022922, 49.010659833000126 ], [ -123.048684013999932, 49.010623008000138 ], [ -123.048591944999956, 49.012078564000042 ], [ -123.046663041999977, 49.012025482000148 ], [ -123.046548801, 49.011774788 ], [ -123.046548553999969, 49.011496933000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141257418", "BldgCostT": "93736668", "sL_LossRatio": "0.708451288785921", "sL_AssetLoss": "3228620", "sL_BldgLoss": "2287320", "sL_StrLoss": "993600", "sL_NStrLoss": "1293720", "sL_ContLoss": "941300", "geom_point": "0101000020E6100000A3CFEDA905C45EC0CBB8F30E01824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058461388999959, 49.022067492000055 ], [ -123.05846164899999, 49.022058430000072 ], [ -123.058473901999903, 49.021587498 ], [ -123.058354111999932, 49.02071381000011 ], [ -123.058259890999949, 49.020366101000072 ], [ -123.057591004999949, 49.018728390000085 ], [ -123.057030890999911, 49.017965993000118 ], [ -123.056638132999979, 49.017468682000086 ], [ -123.056422852999958, 49.017196082000105 ], [ -123.05637919299997, 49.017140814000079 ], [ -123.056117715999918, 49.01691009400011 ], [ -123.05575391, 49.016719909000123 ], [ -123.054780294999929, 49.016317150000049 ], [ -123.054779849999946, 49.015912381000128 ], [ -123.054815727999966, 49.015912364000073 ], [ -123.05482346, 49.015789892000036 ], [ -123.055600315999953, 49.015811213000113 ], [ -123.055599827999984, 49.015372254000042 ], [ -123.057240963999973, 49.015371451000107 ], [ -123.057241518999916, 49.015856240000048 ], [ -123.060280167999963, 49.015939537000065 ], [ -123.060257147999963, 49.01630486900013 ], [ -123.060609777999929, 49.016314530000031 ], [ -123.060603706999956, 49.016410872000066 ], [ -123.062986337999945, 49.016476118000092 ], [ -123.062985961999956, 49.016178061000083 ], [ -123.062575671999966, 49.016178284000077 ], [ -123.062573981999918, 49.014828947000105 ], [ -123.062984260999926, 49.014828723000072 ], [ -123.062982559, 49.013479385000053 ], [ -123.06380309499994, 49.013478935000123 ], [ -123.063802750999969, 49.013209067000055 ], [ -123.065443815999956, 49.013208147000078 ], [ -123.065443461999948, 49.012938280000071 ], [ -123.066382338999958, 49.012937744000062 ], [ -123.066433497999924, 49.012124064000041 ], [ -123.067083449999984, 49.012141834000062 ], [ -123.067082706999926, 49.011588000000117 ], [ -123.067492957999931, 49.011587760000026 ], [ -123.067492144999946, 49.010985892000079 ], [ -123.065030566999951, 49.010918578000016 ], [ -123.065031792, 49.011859041000065 ], [ -123.063801025999936, 49.011859728000118 ], [ -123.063799646999968, 49.010780257000071 ], [ -123.065003675999918, 49.010779585000137 ], [ -123.06503732199999, 49.01024469500004 ], [ -123.064547520999966, 49.01023129500004 ], [ -123.064631854999959, 49.008890718000053 ], [ -123.064207464, 49.008890954000037 ], [ -123.064207811999964, 49.009160822000105 ], [ -123.063797578999967, 49.009161050000039 ], [ -123.06379895799995, 49.010240521000078 ], [ -123.062157988999928, 49.01024141700011 ], [ -123.062155974999925, 49.008622210000119 ], [ -123.062566202999946, 49.00862198800008 ], [ -123.062565863999964, 49.00835212100008 ], [ -123.063386316999967, 49.008351672000046 ], [ -123.063385973999942, 49.008081804 ], [ -123.064682784999974, 49.008081086000082 ], [ -123.064733713999942, 49.007271452000161 ], [ -123.064615599999939, 49.007271518000046 ], [ -123.064614901999988, 49.00673178200001 ], [ -123.064204687999947, 49.006732011000032 ], [ -123.064203993999911, 49.006192275000096 ], [ -123.063793784999987, 49.00619250200014 ], [ -123.063793362999945, 49.005860966000057 ], [ -123.063560235999887, 49.00565866200003 ], [ -123.063558959999952, 49.005652896000051 ], [ -123.063382892, 49.005652992000073 ], [ -123.063382205999943, 49.005113256000044 ], [ -123.062561806999952, 49.005113704000046 ], [ -123.062560453999978, 49.004034233000077 ], [ -123.062970644999922, 49.004034008000112 ], [ -123.06297030599994, 49.003764140000087 ], [ -123.062560117000018, 49.003764364000041 ], [ -123.062558426999914, 49.002415023000083 ], [ -123.062833566999942, 49.00241487300007 ], [ -123.062833334999951, 49.002413862000061 ], [ -123.062839536999903, 49.002232962000122 ], [ -123.062988936999901, 49.002070062000023 ], [ -123.067890389999945, 49.002068126000026 ], [ -123.068044936999968, 49.002068062000021 ], [ -123.068613822999936, 49.00206895900007 ], [ -123.068639334999929, 49.002135938000038 ], [ -123.068687886999982, 49.002263315000057 ], [ -123.068680198999928, 49.002538786000102 ], [ -123.06866137599998, 49.003077193000117 ], [ -123.067826802999946, 49.00307601100004 ], [ -123.066807297999986, 49.002775988000103 ], [ -123.065807507000017, 49.002512606000089 ], [ -123.065043396999954, 49.002498005000099 ], [ -123.063802783999932, 49.00250008800014 ], [ -123.063789180999891, 49.003259301000092 ], [ -123.063861224999968, 49.003461402000056 ], [ -123.063870939999944, 49.003476045000042 ], [ -123.063973487999945, 49.003630206000075 ], [ -123.064378882999961, 49.004047690000093 ], [ -123.064418819, 49.004115764000097 ], [ -123.064452978999952, 49.004174101000011 ], [ -123.064463312999976, 49.004423106000061 ], [ -123.064175615999957, 49.004500795000091 ], [ -123.063732819999956, 49.004740996000095 ], [ -123.063942506999979, 49.00488288800009 ], [ -123.065002501999956, 49.005906692000067 ], [ -123.06597220799999, 49.006563081000074 ], [ -123.066609912999951, 49.006959892000161 ], [ -123.066979287999985, 49.007061002000071 ], [ -123.067369009999979, 49.007121291000075 ], [ -123.067787204999917, 49.007140790000058 ], [ -123.068140876999919, 49.007263666000057 ], [ -123.06821239, 49.00728849200005 ], [ -123.068447497999927, 49.007330112000048 ], [ -123.068666088999976, 49.007330611000086 ], [ -123.068659089000036, 49.008329420000081 ], [ -123.068653817, 49.009081733000102 ], [ -123.068653230999971, 49.009166088000093 ], [ -123.068646699999931, 49.010096493000049 ], [ -123.06862810599992, 49.013064356000037 ], [ -123.068623703999961, 49.01376878400005 ], [ -123.068482391999964, 49.013799204000073 ], [ -123.067256739999962, 49.013792084000123 ], [ -123.065846112999964, 49.013783894000014 ], [ -123.065807592999931, 49.013797425000121 ], [ -123.065734293, 49.013823204000069 ], [ -123.06482812199998, 49.014018890000095 ], [ -123.064276355999979, 49.014267957000087 ], [ -123.063539590999966, 49.016933714000075 ], [ -123.063542261999942, 49.017087440000132 ], [ -123.063544384999901, 49.017211036000091 ], [ -123.063547803999953, 49.017408393000039 ], [ -123.063547809999932, 49.017435946000063 ], [ -123.063547495999956, 49.018347290000108 ], [ -123.06367080499993, 49.018602097000056 ], [ -123.063689984999939, 49.018699956000042 ], [ -123.063706988999968, 49.018786899000091 ], [ -123.063651792999977, 49.019013407000067 ], [ -123.063518497999922, 49.019284617000032 ], [ -123.06336899199998, 49.019489604000043 ], [ -123.063332976999931, 49.019669703000012 ], [ -123.063398878999976, 49.020272499 ], [ -123.063514192999932, 49.020699202000088 ], [ -123.063799099000022, 49.021492796000075 ], [ -123.063970192999975, 49.021770500000066 ], [ -123.064199703999947, 49.021967800000041 ], [ -123.064545794999901, 49.022136800000084 ], [ -123.064860476999939, 49.022218409000047 ], [ -123.065197382999898, 49.022250093000018 ], [ -123.065517457999931, 49.022251830000116 ], [ -123.066429783999965, 49.022256791000132 ], [ -123.066425885999976, 49.022750833000018 ], [ -123.066422290999967, 49.023200902000085 ], [ -123.066414431999959, 49.023435901000013 ], [ -123.066271189999938, 49.023692409000084 ], [ -123.066123010999931, 49.023982982000085 ], [ -123.066119578999988, 49.024253215000066 ], [ -123.06611438899999, 49.024663095000044 ], [ -123.065888980999929, 49.024661399000138 ], [ -123.065606285999962, 49.024658209000066 ], [ -123.065219522999911, 49.024655040000027 ], [ -123.065028044999949, 49.024653455000092 ], [ -123.06446730799999, 49.024648873000025 ], [ -123.064426288999982, 49.024648539000061 ], [ -123.063020316999939, 49.024637001000073 ], [ -123.062497926999967, 49.024632777000093 ], [ -123.061197957, 49.02462226300004 ], [ -123.060582129999915, 49.024617282000108 ], [ -123.060028494999941, 49.024612802000021 ], [ -123.05877299699999, 49.024604495000062 ], [ -123.058512417999964, 49.024554111000072 ], [ -123.058222499999886, 49.024338892000074 ], [ -123.058138698999983, 49.024129392000141 ], [ -123.058184718999925, 49.023835341000087 ], [ -123.058301644999958, 49.02308826800008 ], [ -123.058461388999959, 49.022067492000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.744070553985786", "sL_AssetLoss": "35037", "sL_BldgLoss": "26070", "sL_StrLoss": "11830", "sL_NStrLoss": "14240", "sL_ContLoss": "8967", "geom_point": "0101000020E61000000D651326ADC35EC0830B05AEA3814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056826992999987, 49.012133242000068 ], [ -123.058057764999973, 49.01213263000006 ], [ -123.058059334999953, 49.013481968000086 ], [ -123.056828528999958, 49.01348258100009 ], [ -123.056826992999987, 49.012133242000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27707250", "BldgCostT": "18165000", "sL_LossRatio": "0.708664845821953", "sL_AssetLoss": "505260", "sL_BldgLoss": "358060", "sL_StrLoss": "153400", "sL_NStrLoss": "204660", "sL_ContLoss": "147200", "geom_point": "0101000020E61000007910C8465CC35EC01853B837A2814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051382976999903, 49.01107739499999 ], [ -123.051163638000034, 49.010901161000049 ], [ -123.051357035999942, 49.010791461000068 ], [ -123.051724501999928, 49.01108678100011 ], [ -123.051990631999971, 49.011094095000047 ], [ -123.05181053699998, 49.010938962000125 ], [ -123.052065735999918, 49.010810062000118 ], [ -123.05240871300002, 49.011105583000102 ], [ -123.05517166599995, 49.011181460000039 ], [ -123.054944549999945, 49.014779702000148 ], [ -123.051878725999984, 49.014695503000013 ], [ -123.051223212999943, 49.014133602000086 ], [ -123.050852801999952, 49.013898206000071 ], [ -123.050811248999963, 49.013882301000123 ], [ -123.050419113999936, 49.013732204000114 ], [ -123.049560088999925, 49.013489773000103 ], [ -123.049715530999919, 49.011031553000102 ], [ -123.051382976999903, 49.01107739499999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.739621936408084", "sL_AssetLoss": "32111", "sL_BldgLoss": "23750", "sL_StrLoss": "11270", "sL_NStrLoss": "12480", "sL_ContLoss": "8361", "geom_point": "0101000020E6100000FBA0A15EF4C35EC0E8C282DA73814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061338167999935, 49.010781591000111 ], [ -123.062568907999946, 49.010780931000028 ], [ -123.062570259999973, 49.011860403000064 ], [ -123.060929239999936, 49.011861280000041 ], [ -123.060928252999986, 49.01105167700009 ], [ -123.0613385, 49.011051459000086 ], [ -123.061338167999935, 49.010781591000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80161833", "BldgCostT": "53313333", "sL_LossRatio": "0.7241521347512", "sL_AssetLoss": "1534324", "sL_BldgLoss": "1111084", "sL_StrLoss": "467734", "sL_NStrLoss": "643350", "sL_ContLoss": "423240", "geom_point": "0101000020E61000003B74DD0889C45EC03F42495886814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06862810599992, 49.013064356000037 ], [ -123.068646699999931, 49.010096493000049 ], [ -123.070083403999959, 49.010108718000062 ], [ -123.07141280899999, 49.010109892000095 ], [ -123.072811516999977, 49.010094911000159 ], [ -123.074099787999899, 49.010075985000114 ], [ -123.074106021999953, 49.010891699000112 ], [ -123.072651108999978, 49.010909604000048 ], [ -123.07203943799999, 49.010914696000071 ], [ -123.071485025, 49.010919298000026 ], [ -123.071402289999952, 49.011910004000065 ], [ -123.071407495999892, 49.01295819100001 ], [ -123.074319004999921, 49.012943001000039 ], [ -123.074320886999914, 49.013675605000067 ], [ -123.074164547999928, 49.013678255000102 ], [ -123.073524815999946, 49.013689095000082 ], [ -123.070717710999958, 49.013716087000041 ], [ -123.070020014999955, 49.013728600000107 ], [ -123.068762271999915, 49.013737492000075 ], [ -123.068623703999961, 49.01376878400005 ], [ -123.06862810599992, 49.013064356000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128906872", "BldgCostT": "83366693", "sL_LossRatio": "0.69711253198145", "sL_AssetLoss": "2106690", "sL_BldgLoss": "1468600", "sL_StrLoss": "618810", "sL_NStrLoss": "849790", "sL_ContLoss": "638090", "geom_point": "0101000020E6100000E3BA4282D6C45EC04EB227E477814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074106021999953, 49.010891699000112 ], [ -123.074099787999899, 49.010075985000114 ], [ -123.076238605999947, 49.010068498000166 ], [ -123.07832468399998, 49.010073993000042 ], [ -123.079742587999931, 49.010080099000099 ], [ -123.079792151999925, 49.010080331000061 ], [ -123.080530657999958, 49.01008399800012 ], [ -123.08099509699997, 49.010086293000072 ], [ -123.080915915999938, 49.010326486000096 ], [ -123.080146097999929, 49.011098610000069 ], [ -123.079761698999974, 49.010932194000077 ], [ -123.079443499999954, 49.010863197000084 ], [ -123.079131619999956, 49.010847499000093 ], [ -123.079134681999975, 49.011540502000088 ], [ -123.079101723999955, 49.0115714 ], [ -123.079040280999891, 49.011628999000024 ], [ -123.078542890999969, 49.011673109000121 ], [ -123.078245894999981, 49.011725407000071 ], [ -123.077875993999925, 49.011892786 ], [ -123.077675302999964, 49.01210809300008 ], [ -123.077586891999943, 49.012276919000044 ], [ -123.077555892999939, 49.012859106000079 ], [ -123.076944607999977, 49.012909993000079 ], [ -123.076445571999983, 49.01291490100008 ], [ -123.076312891999976, 49.012916203000032 ], [ -123.074319004999921, 49.012943001000039 ], [ -123.071407495999892, 49.01295819100001 ], [ -123.071402289999952, 49.011910004000065 ], [ -123.071485025, 49.010919298000026 ], [ -123.07203943799999, 49.010914696000071 ], [ -123.072651108999978, 49.010909604000048 ], [ -123.074106021999953, 49.010891699000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147475810", "BldgCostT": "97138189", "sL_LossRatio": "0.716560096042585", "sL_AssetLoss": "2441417", "sL_BldgLoss": "1749422", "sL_StrLoss": "792579", "sL_NStrLoss": "956843", "sL_ContLoss": "691995", "geom_point": "0101000020E61000006F808052C0C45EC08E8F475706824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068638908999944, 49.018007206000114 ], [ -123.06865429699999, 49.017370507000123 ], [ -123.06864655699999, 49.016767392000148 ], [ -123.068625287999978, 49.015114192000134 ], [ -123.068623856999935, 49.013922058000091 ], [ -123.068623703999961, 49.01376878400005 ], [ -123.068762271999915, 49.013737492000075 ], [ -123.070020014999955, 49.013728600000107 ], [ -123.070717710999958, 49.013716087000041 ], [ -123.073524815999946, 49.013689095000082 ], [ -123.074164547999928, 49.013678255000102 ], [ -123.074320886999914, 49.013675605000067 ], [ -123.074735196999896, 49.013670683000115 ], [ -123.076936784999972, 49.013645091000036 ], [ -123.076995515999968, 49.013644288000066 ], [ -123.078649307999939, 49.013621560000104 ], [ -123.079685794999975, 49.013607308000083 ], [ -123.079683546999959, 49.014025536000091 ], [ -123.079683179999947, 49.014084888000085 ], [ -123.079681291999975, 49.015140892000019 ], [ -123.079656404, 49.015959556000048 ], [ -123.079651498999965, 49.01612050900016 ], [ -123.07963640499996, 49.017015784000115 ], [ -123.079632539999963, 49.017308976000017 ], [ -123.079630518999949, 49.017461980000071 ], [ -123.079626407999982, 49.017776786000134 ], [ -123.079622625999917, 49.018066102000091 ], [ -123.078807899999916, 49.018069093000072 ], [ -123.076730504999901, 49.018072009000022 ], [ -123.075961394, 49.018069521 ], [ -123.074634803, 49.0180652620001 ], [ -123.074555397999958, 49.018064995000032 ], [ -123.074145800999929, 49.018014209000043 ], [ -123.073663196999973, 49.017908210000087 ], [ -123.073219675999908, 49.01783298800008 ], [ -123.07213295, 49.017798312000075 ], [ -123.071103024999957, 49.017765398000051 ], [ -123.07049379399993, 49.017782987000025 ], [ -123.07021810599997, 49.017820506000049 ], [ -123.06985148299999, 49.017891598000062 ], [ -123.069449490999929, 49.017982396000022 ], [ -123.069054087999973, 49.01801221400008 ], [ -123.068638908999944, 49.018007206000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93332517", "BldgCostT": "56550229", "sL_LossRatio": "0.641908214822111", "sL_AssetLoss": "2669930", "sL_BldgLoss": "1713850", "sL_StrLoss": "599110", "sL_NStrLoss": "1114740", "sL_ContLoss": "956080", "geom_point": "0101000020E6100000E9BA6D9596C45EC0D745A73AA6824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068738434999929, 49.021822843000088 ], [ -123.068731105000012, 49.021041888000113 ], [ -123.068662026999959, 49.021041248000074 ], [ -123.068580899999944, 49.021040499000044 ], [ -123.068586778999986, 49.019641203000091 ], [ -123.068650905, 49.0195349050001 ], [ -123.068651600999942, 49.019519018000082 ], [ -123.068658350999925, 49.01936622900007 ], [ -123.068667097999935, 49.019168608000072 ], [ -123.068650937999962, 49.018503694000032 ], [ -123.068638908999944, 49.018007206000114 ], [ -123.069054087999973, 49.01801221400008 ], [ -123.069449490999929, 49.017982396000022 ], [ -123.06985148299999, 49.017891598000062 ], [ -123.07021810599997, 49.017820506000049 ], [ -123.07049379399993, 49.017782987000025 ], [ -123.071103024999957, 49.017765398000051 ], [ -123.07213295, 49.017798312000075 ], [ -123.073219675999908, 49.01783298800008 ], [ -123.073663196999973, 49.017908210000087 ], [ -123.074145800999929, 49.018014209000043 ], [ -123.074555397999958, 49.018064995000032 ], [ -123.074634803, 49.0180652620001 ], [ -123.075961394, 49.018069521 ], [ -123.076730504999901, 49.018072009000022 ], [ -123.075429331999928, 49.01945927800007 ], [ -123.07539047099999, 49.019500695000019 ], [ -123.075311721, 49.019690502000081 ], [ -123.075306008999945, 49.019977808000078 ], [ -123.07532678799997, 49.02090919500008 ], [ -123.075347299999976, 49.02199920300005 ], [ -123.075073821999965, 49.022000004000105 ], [ -123.074558648999954, 49.022001475000103 ], [ -123.074175612999952, 49.022002576000084 ], [ -123.072777508999962, 49.022006595000086 ], [ -123.072777060999925, 49.022602891000112 ], [ -123.072776793999964, 49.022997808000078 ], [ -123.07145667599994, 49.023015790000045 ], [ -123.071460714999915, 49.024106318000108 ], [ -123.071561041999956, 49.024337 ], [ -123.071572457999963, 49.024699527000053 ], [ -123.071375584999927, 49.024698948000093 ], [ -123.070647286999986, 49.024696806000058 ], [ -123.069407790999932, 49.024694492000037 ], [ -123.068736704999964, 49.024694176000068 ], [ -123.068667100999946, 49.024694097000101 ], [ -123.068597301999958, 49.024693999000164 ], [ -123.068597248999978, 49.024684988000068 ], [ -123.068582390999936, 49.022648106000112 ], [ -123.0687462, 49.022650805000097 ], [ -123.0687458399999, 49.022615511 ], [ -123.068738434999929, 49.021822843000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271968917", "BldgCostT": "181171667", "sL_LossRatio": "0.730267728007192", "sL_AssetLoss": "5946819", "sL_BldgLoss": "4342770", "sL_StrLoss": "1865430", "sL_NStrLoss": "2477340", "sL_ContLoss": "1604049", "geom_point": "0101000020E61000003F91161D3FC45EC07F733DD966824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066425885999976, 49.022750833000018 ], [ -123.066429783999965, 49.022256791000132 ], [ -123.065517457999931, 49.022251830000116 ], [ -123.065197382999898, 49.022250093000018 ], [ -123.064860476999939, 49.022218409000047 ], [ -123.064545794999901, 49.022136800000084 ], [ -123.064199703999947, 49.021967800000041 ], [ -123.063970192999975, 49.021770500000066 ], [ -123.063799099000022, 49.021492796000075 ], [ -123.063514192999932, 49.020699202000088 ], [ -123.063398878999976, 49.020272499 ], [ -123.063332976999931, 49.019669703000012 ], [ -123.06336899199998, 49.019489604000043 ], [ -123.063518497999922, 49.019284617000032 ], [ -123.063651792999977, 49.019013407000067 ], [ -123.063706988999968, 49.018786899000091 ], [ -123.063689984999939, 49.018699956000042 ], [ -123.06367080499993, 49.018602097000056 ], [ -123.063547495999956, 49.018347290000108 ], [ -123.063547809999932, 49.017435946000063 ], [ -123.063547803999953, 49.017408393000039 ], [ -123.063544384999901, 49.017211036000091 ], [ -123.063542261999942, 49.017087440000132 ], [ -123.063539590999966, 49.016933714000075 ], [ -123.064276355999979, 49.014267957000087 ], [ -123.06482812199998, 49.014018890000095 ], [ -123.065734293, 49.013823204000069 ], [ -123.065807592999931, 49.013797425000121 ], [ -123.065846112999964, 49.013783894000014 ], [ -123.067256739999962, 49.013792084000123 ], [ -123.068482391999964, 49.013799204000073 ], [ -123.068623703999961, 49.01376878400005 ], [ -123.068623856999935, 49.013922058000091 ], [ -123.068625287999978, 49.015114192000134 ], [ -123.06864655699999, 49.016767392000148 ], [ -123.06865429699999, 49.017370507000123 ], [ -123.068638908999944, 49.018007206000114 ], [ -123.068650937999962, 49.018503694000032 ], [ -123.068667097999935, 49.019168608000072 ], [ -123.068658350999925, 49.01936622900007 ], [ -123.068651600999942, 49.019519018000082 ], [ -123.068650905, 49.0195349050001 ], [ -123.068586778999986, 49.019641203000091 ], [ -123.068580899999944, 49.021040499000044 ], [ -123.068662026999959, 49.021041248000074 ], [ -123.068731105000012, 49.021041888000113 ], [ -123.068738434999929, 49.021822843000088 ], [ -123.0687458399999, 49.022615511 ], [ -123.0687462, 49.022650805000097 ], [ -123.068582390999936, 49.022648106000112 ], [ -123.068597248999978, 49.024684988000068 ], [ -123.068597301999958, 49.024693999000164 ], [ -123.066559927999947, 49.024668659 ], [ -123.06611438899999, 49.024663095000044 ], [ -123.066119578999988, 49.024253215000066 ], [ -123.066123010999931, 49.023982982000085 ], [ -123.066271189999938, 49.023692409000084 ], [ -123.066414431999959, 49.023435901000013 ], [ -123.066422290999967, 49.023200902000085 ], [ -123.066425885999976, 49.022750833000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "590114702", "BldgCostT": "392599748", "sL_LossRatio": "0.750920305490418", "sL_AssetLoss": "7881622", "sL_BldgLoss": "5918470", "sL_StrLoss": "2441340", "sL_NStrLoss": "3477130", "sL_ContLoss": "1963152", "geom_point": "0101000020E6100000BF20855F28C45EC02BB1110C90834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063471345999943, 49.031091212000071 ], [ -123.06350571099992, 49.029627889000075 ], [ -123.06230070299992, 49.029616586000053 ], [ -123.062322, 49.029235107000048 ], [ -123.062358091999982, 49.027360007000041 ], [ -123.062249788999935, 49.026844291000046 ], [ -123.061851, 49.026449599000074 ], [ -123.061427708999986, 49.026160388000029 ], [ -123.060930622999948, 49.025871109000022 ], [ -123.060546186999929, 49.025724494000116 ], [ -123.060254137999905, 49.02555184700001 ], [ -123.060042812999967, 49.025426908000107 ], [ -123.059940183999942, 49.025754706000036 ], [ -123.059766409999924, 49.026018502000106 ], [ -123.059534399999961, 49.026228412000073 ], [ -123.059185403999948, 49.026387411000066 ], [ -123.058751715999932, 49.026502485000066 ], [ -123.058369892999949, 49.026553295000035 ], [ -123.05806849, 49.02649999700008 ], [ -123.058220204999969, 49.026109505000122 ], [ -123.058326893999947, 49.02554468200006 ], [ -123.058512417999964, 49.024554111000072 ], [ -123.05877299699999, 49.024604495000062 ], [ -123.060028494999941, 49.024612802000021 ], [ -123.060582129999915, 49.024617282000108 ], [ -123.061197957, 49.02462226300004 ], [ -123.062497926999967, 49.024632777000093 ], [ -123.063020316999939, 49.024637001000073 ], [ -123.064426288999982, 49.024648539000061 ], [ -123.06446730799999, 49.024648873000025 ], [ -123.065028044999949, 49.024653455000092 ], [ -123.065219522999911, 49.024655040000027 ], [ -123.065606285999962, 49.024658209000066 ], [ -123.065888980999929, 49.024661399000138 ], [ -123.06611438899999, 49.024663095000044 ], [ -123.066559927999947, 49.024668659 ], [ -123.068597301999958, 49.024693999000164 ], [ -123.068618877999967, 49.026416564000073 ], [ -123.068623846999955, 49.026853706000075 ], [ -123.068630802999934, 49.027466676000117 ], [ -123.068622108999946, 49.028366618000057 ], [ -123.068624810999921, 49.029737253000093 ], [ -123.068611378999947, 49.032016638000044 ], [ -123.06795275099995, 49.032012161000111 ], [ -123.067595848999943, 49.032009851000041 ], [ -123.067527439999964, 49.032009406000057 ], [ -123.066939415999968, 49.032005617000067 ], [ -123.066527569, 49.032002963000124 ], [ -123.065769221999957, 49.03199754300006 ], [ -123.063450413999988, 49.031981908000049 ], [ -123.063471345999943, 49.031091212000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19848750", "BldgCostT": "13425000", "sL_LossRatio": "0.694409206039313", "sL_AssetLoss": "465086", "sL_BldgLoss": "322960", "sL_StrLoss": "144660", "sL_NStrLoss": "178300", "sL_ContLoss": "142126", "geom_point": "0101000020E61000008938DF807DC45EC0895CD3303A854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068623474999939, 49.039543904 ], [ -123.072129673999939, 49.039639587000146 ], [ -123.072029442999906, 49.04123580200006 ], [ -123.070904384999949, 49.041781108000116 ], [ -123.070772402999964, 49.041791884000048 ], [ -123.06870260099997, 49.042805619000134 ], [ -123.068691613999974, 49.042811021000105 ], [ -123.068691434999948, 49.042487528000024 ], [ -123.06864998899999, 49.042407114000106 ], [ -123.068634430999907, 49.041023537000108 ], [ -123.068623474999939, 49.039543904 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167731251", "BldgCostT": "109175001", "sL_LossRatio": "0.68935490557066", "sL_AssetLoss": "4100950", "sL_BldgLoss": "2827010", "sL_StrLoss": "1238450", "sL_NStrLoss": "1588560", "sL_ContLoss": "1273940", "geom_point": "0101000020E610000023BF030BB9C45EC0AD75A0566A844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078610159, 49.037218122000091 ], [ -123.078608457999948, 49.03613865600007 ], [ -123.078198003999915, 49.03613893500011 ], [ -123.078197580999969, 49.035869068000075 ], [ -123.076555771999921, 49.035870169000113 ], [ -123.076556184999944, 49.036140035000081 ], [ -123.076145729999922, 49.036140307000068 ], [ -123.076146142999931, 49.036410174000068 ], [ -123.073683400000036, 49.0364117720001 ], [ -123.073682601999934, 49.035872040000122 ], [ -123.071796641999953, 49.035873228000078 ], [ -123.071668119999941, 49.037919926 ], [ -123.070934837999985, 49.037899921000097 ], [ -123.070880734999946, 49.038761243000074 ], [ -123.068617220999954, 49.038699458000032 ], [ -123.06861436299998, 49.03831346600002 ], [ -123.068603431999932, 49.036840808000107 ], [ -123.068570798999986, 49.03529366200015 ], [ -123.068582364999941, 49.034501024000058 ], [ -123.067020600999953, 49.034500616000066 ], [ -123.067017070999924, 49.034500632000118 ], [ -123.067019870999957, 49.034282634000121 ], [ -123.06720017, 49.03408931700011 ], [ -123.067205798999936, 49.033608305000051 ], [ -123.067800507999934, 49.033607423000035 ], [ -123.068088190999944, 49.033772060000103 ], [ -123.068590810999922, 49.033779482000028 ], [ -123.068611378999947, 49.032016638000044 ], [ -123.06871113499993, 49.032017551000074 ], [ -123.070784123999957, 49.032029094000109 ], [ -123.071398514999984, 49.032042302000058 ], [ -123.07358508199998, 49.03203702400009 ], [ -123.074587143999949, 49.032034583000069 ], [ -123.075315498999942, 49.032032788000024 ], [ -123.075322300999957, 49.03137878900003 ], [ -123.075943893999948, 49.031385794000109 ], [ -123.076077898999927, 49.031319201 ], [ -123.076849679999953, 49.030346298000012 ], [ -123.076961507999926, 49.030263810000029 ], [ -123.077701791999971, 49.029727102000045 ], [ -123.07806081399994, 49.029474594000092 ], [ -123.078567726999907, 49.029215397000023 ], [ -123.07939249899999, 49.028835104000088 ], [ -123.079589585999955, 49.028679101000115 ], [ -123.07979218399997, 49.028433214000067 ], [ -123.079885894999904, 49.028793511000089 ], [ -123.079892125999947, 49.029030495000086 ], [ -123.079897178999971, 49.029224488000111 ], [ -123.079862027, 49.029484695000072 ], [ -123.079815819000018, 49.029826220000054 ], [ -123.079731689999917, 49.030448211000071 ], [ -123.079725006999979, 49.032017701000065 ], [ -123.079033884999916, 49.032030397000057 ], [ -123.078083877999958, 49.032028900000078 ], [ -123.077761102999958, 49.032075990000045 ], [ -123.077459317999953, 49.032179503000066 ], [ -123.077197402999928, 49.032345392000074 ], [ -123.077034582999957, 49.032543704000034 ], [ -123.076746210999914, 49.033044987000061 ], [ -123.075766512999934, 49.03475919300012 ], [ -123.075668588999974, 49.0350340150001 ], [ -123.075661901999979, 49.035338402000022 ], [ -123.078799091999954, 49.035341797000051 ], [ -123.078931491, 49.035302220000048 ], [ -123.07898427899994, 49.035223398000014 ], [ -123.07900979399993, 49.034334810000125 ], [ -123.079652396999919, 49.034334219000073 ], [ -123.07964588199998, 49.035776741000113 ], [ -123.079645489999962, 49.035863111000047 ], [ -123.079701911999976, 49.037516392000072 ], [ -123.07498518, 49.03980307100008 ], [ -123.073689337999895, 49.040431222000095 ], [ -123.073687785999951, 49.039380303000037 ], [ -123.074098265999936, 49.039380041000101 ], [ -123.074097864999899, 49.039110175000125 ], [ -123.075329303, 49.039109377000052 ], [ -123.075328895999945, 49.038839511000027 ], [ -123.075739371999987, 49.03883924200008 ], [ -123.075738143999942, 49.038029642000048 ], [ -123.076632966999938, 49.038029052000084 ], [ -123.076671870999931, 49.03740848700005 ], [ -123.078200058999983, 49.037450092 ], [ -123.078199696999945, 49.037218401000089 ], [ -123.078610159, 49.037218122000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78701250", "BldgCostT": "53175000", "sL_LossRatio": "0.767370813696459", "sL_AssetLoss": "959080", "sL_BldgLoss": "735970", "sL_StrLoss": "361700", "sL_NStrLoss": "374270", "sL_ContLoss": "223110", "geom_point": "0101000020E6100000D2D3D389FCC45EC0B8DE5FD252844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079033884999916, 49.032030397000057 ], [ -123.079725006999979, 49.032017701000065 ], [ -123.079652396999919, 49.034334219000073 ], [ -123.07900979399993, 49.034334810000125 ], [ -123.07898427899994, 49.035223398000014 ], [ -123.078931491, 49.035302220000048 ], [ -123.078799091999954, 49.035341797000051 ], [ -123.075661901999979, 49.035338402000022 ], [ -123.075668588999974, 49.0350340150001 ], [ -123.075766512999934, 49.03475919300012 ], [ -123.076746210999914, 49.033044987000061 ], [ -123.077034582999957, 49.032543704000034 ], [ -123.077197402999928, 49.032345392000074 ], [ -123.077459317999953, 49.032179503000066 ], [ -123.077761102999958, 49.032075990000045 ], [ -123.078083877999958, 49.032028900000078 ], [ -123.079033884999916, 49.032030397000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "717997887", "BldgCostT": "488837080", "sL_LossRatio": "0.815539760902438", "sL_AssetLoss": "7591880", "sL_BldgLoss": "6191480", "sL_StrLoss": "3002920", "sL_NStrLoss": "3188560", "sL_ContLoss": "1400400", "geom_point": "0101000020E6100000FE96F74044C45EC03D1AD18778844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065474417999937, 49.036538445000105 ], [ -123.065472840999959, 49.035337255000066 ], [ -123.065142504999983, 49.03533744300006 ], [ -123.065137326999931, 49.034735327000099 ], [ -123.06030678599997, 49.03468470300011 ], [ -123.060509491999966, 49.03433161300012 ], [ -123.061748010999978, 49.034333085000071 ], [ -123.063998195999943, 49.03435411400006 ], [ -123.06502049, 49.034358613000059 ], [ -123.065129899999988, 49.034336392000107 ], [ -123.065182809999968, 49.034277499000048 ], [ -123.065635521999951, 49.032776008000027 ], [ -123.065757216999984, 49.032362231000079 ], [ -123.065769221999957, 49.03199754300006 ], [ -123.066527569, 49.032002963000124 ], [ -123.066939415999968, 49.032005617000067 ], [ -123.067527439999964, 49.032009406000057 ], [ -123.067595848999943, 49.032009851000041 ], [ -123.06795275099995, 49.032012161000111 ], [ -123.068611378999947, 49.032016638000044 ], [ -123.068590810999922, 49.033779482000028 ], [ -123.068088190999944, 49.033772060000103 ], [ -123.067800507999934, 49.033607423000035 ], [ -123.067205798999936, 49.033608305000051 ], [ -123.06720017, 49.03408931700011 ], [ -123.067019870999957, 49.034282634000121 ], [ -123.067017070999924, 49.034500632000118 ], [ -123.067020600999953, 49.034500616000066 ], [ -123.068582364999941, 49.034501024000058 ], [ -123.068570798999986, 49.03529366200015 ], [ -123.068603431999932, 49.036840808000107 ], [ -123.06861436299998, 49.03831346600002 ], [ -123.066700275999892, 49.038313846000086 ], [ -123.066601364999968, 49.036495631000079 ], [ -123.065474417999937, 49.036538445000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84368500", "BldgCostT": "55240000", "sL_LossRatio": "0.690519041848232", "sL_AssetLoss": "1939150", "sL_BldgLoss": "1339020", "sL_StrLoss": "567020", "sL_NStrLoss": "772000", "sL_ContLoss": "600130", "geom_point": "0101000020E610000016A7318C01C45EC057968D7340844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063450413999988, 49.031981908000049 ], [ -123.065769221999957, 49.03199754300006 ], [ -123.065757216999984, 49.032362231000079 ], [ -123.065635521999951, 49.032776008000027 ], [ -123.065182809999968, 49.034277499000048 ], [ -123.065129899999988, 49.034336392000107 ], [ -123.06502049, 49.034358613000059 ], [ -123.063998195999943, 49.03435411400006 ], [ -123.061748010999978, 49.034333085000071 ], [ -123.060509491999966, 49.03433161300012 ], [ -123.06030678599997, 49.03468470300011 ], [ -123.059527784999943, 49.034683759000075 ], [ -123.059138015999949, 49.034683307000122 ], [ -123.05940425199999, 49.034124968000071 ], [ -123.060434484999945, 49.031964193000128 ], [ -123.062247984999956, 49.031973315000108 ], [ -123.063450413999988, 49.031981908000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96185917", "BldgCostT": "65391667", "sL_LossRatio": "0.720451067818349", "sL_AssetLoss": "2383411", "sL_BldgLoss": "1717131", "sL_StrLoss": "716531", "sL_NStrLoss": "1000600", "sL_ContLoss": "666280", "geom_point": "0101000020E610000069CDE207DFC35EC0695CB4D7ED834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057815005999942, 49.03008389200005 ], [ -123.058788396999958, 49.029432115000098 ], [ -123.059482066999976, 49.029611069000083 ], [ -123.05960887900001, 49.029643794000052 ], [ -123.05991, 49.029763432000117 ], [ -123.059962289999973, 49.029784190000022 ], [ -123.060446514999953, 49.029389205000093 ], [ -123.060731698999959, 49.02907079600007 ], [ -123.061053391999948, 49.028585803000091 ], [ -123.061463812999989, 49.028688992000113 ], [ -123.06182301199999, 49.028846603000012 ], [ -123.06211158499994, 49.029039205000132 ], [ -123.062322, 49.029235107000048 ], [ -123.06230070299992, 49.029616586000053 ], [ -123.06350571099992, 49.029627889000075 ], [ -123.063471345999943, 49.031091212000071 ], [ -123.063450413999988, 49.031981908000049 ], [ -123.062247984999956, 49.031973315000108 ], [ -123.060434484999945, 49.031964193000128 ], [ -123.0591870799999, 49.031954401000064 ], [ -123.057916415999969, 49.031944805000066 ], [ -123.056669087999978, 49.031932188000056 ], [ -123.056942697999929, 49.03129988900011 ], [ -123.056969799999962, 49.03125437500011 ], [ -123.057162887999979, 49.030930191000046 ], [ -123.057815005999942, 49.03008389200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128990917", "BldgCostT": "85011667", "sL_LossRatio": "0.722019267220057", "sL_AssetLoss": "2353012", "sL_BldgLoss": "1698920", "sL_StrLoss": "760040", "sL_NStrLoss": "938880", "sL_ContLoss": "654092", "geom_point": "0101000020E61000009CD853DDA9C35EC0CE65404943844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0591870799999, 49.031954401000064 ], [ -123.060434484999945, 49.031964193000128 ], [ -123.05940425199999, 49.034124968000071 ], [ -123.059138015999949, 49.034683307000122 ], [ -123.057880922999971, 49.034674103000086 ], [ -123.056928034999913, 49.034664941000067 ], [ -123.056612988999987, 49.034661901000071 ], [ -123.055377786999927, 49.034652291000072 ], [ -123.05432874, 49.034645574000081 ], [ -123.054050879999949, 49.034643805000016 ], [ -123.055343274999984, 49.031928286000088 ], [ -123.056669087999978, 49.031932188000056 ], [ -123.057916415999969, 49.031944805000066 ], [ -123.0591870799999, 49.031954401000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201249439", "BldgCostT": "135765825", "sL_LossRatio": "0.708667096599009", "sL_AssetLoss": "3535440", "sL_BldgLoss": "2505450", "sL_StrLoss": "1075250", "sL_NStrLoss": "1430200", "sL_ContLoss": "1029990", "geom_point": "0101000020E6100000DFFF8D5EC9C35EC046968224A2834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056510722999946, 49.029525505000052 ], [ -123.05686529, 49.028931516000078 ], [ -123.057356597999956, 49.028119975000052 ], [ -123.057567200999969, 49.027772104000071 ], [ -123.05806849, 49.02649999700008 ], [ -123.058369892999949, 49.026553295000035 ], [ -123.058751715999932, 49.026502485000066 ], [ -123.059185403999948, 49.026387411000066 ], [ -123.059534399999961, 49.026228412000073 ], [ -123.059766409999924, 49.026018502000106 ], [ -123.059940183999942, 49.025754706000036 ], [ -123.060042812999967, 49.025426908000107 ], [ -123.060254137999905, 49.02555184700001 ], [ -123.060546186999929, 49.025724494000116 ], [ -123.060930622999948, 49.025871109000022 ], [ -123.061427708999986, 49.026160388000029 ], [ -123.061851, 49.026449599000074 ], [ -123.062249788999935, 49.026844291000046 ], [ -123.062358091999982, 49.027360007000041 ], [ -123.062322, 49.029235107000048 ], [ -123.06211158499994, 49.029039205000132 ], [ -123.06182301199999, 49.028846603000012 ], [ -123.061463812999989, 49.028688992000113 ], [ -123.061053391999948, 49.028585803000091 ], [ -123.060731698999959, 49.02907079600007 ], [ -123.060446514999953, 49.029389205000093 ], [ -123.059962289999973, 49.029784190000022 ], [ -123.05991, 49.029763432000117 ], [ -123.05960887900001, 49.029643794000052 ], [ -123.059482066999976, 49.029611069000083 ], [ -123.058788396999958, 49.029432115000098 ], [ -123.057815005999942, 49.03008389200005 ], [ -123.057162887999979, 49.030930191000046 ], [ -123.056969799999962, 49.03125437500011 ], [ -123.056942697999929, 49.03129988900011 ], [ -123.056669087999978, 49.031932188000056 ], [ -123.055343274999984, 49.031928286000088 ], [ -123.05604208599999, 49.030387708000056 ], [ -123.056223795, 49.029999804000077 ], [ -123.056396082999939, 49.029717001000087 ], [ -123.056510722999946, 49.029525505000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77203334", "BldgCostT": "51088334", "sL_LossRatio": "0.714380949497825", "sL_AssetLoss": "1552547", "sL_BldgLoss": "1109110", "sL_StrLoss": "486500", "sL_NStrLoss": "622610", "sL_ContLoss": "443437", "geom_point": "0101000020E6100000F17773E195C35EC04E0935010E834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056985906999913, 49.025601572 ], [ -123.056742445999973, 49.025410784000044 ], [ -123.056606726999959, 49.025410111000092 ], [ -123.056498373999929, 49.025454442000104 ], [ -123.056471641999963, 49.025499040000085 ], [ -123.056501506999965, 49.025686409000045 ], [ -123.056683696999983, 49.025998405000045 ], [ -123.056756016999913, 49.026292794000071 ], [ -123.056541990999989, 49.026631696000017 ], [ -123.056525489999942, 49.027452556000135 ], [ -123.056445307999951, 49.02758637400008 ], [ -123.05641776, 49.027604512000025 ], [ -123.056386621999977, 49.02756040400007 ], [ -123.056023518999936, 49.027318245000089 ], [ -123.05602343799994, 49.02724621900007 ], [ -123.055915599999949, 49.02724627100006 ], [ -123.055612830999934, 49.02704434700005 ], [ -123.055612753999981, 49.026976550000079 ], [ -123.055511250999956, 49.026976600000104 ], [ -123.055483205999906, 49.026957894000091 ], [ -123.05520197499996, 49.02661422700006 ], [ -123.055201181999976, 49.025897278000095 ], [ -123.054790812, 49.025897475000065 ], [ -123.05479051399999, 49.025627608000015 ], [ -123.05396977799991, 49.02562799500005 ], [ -123.053969486, 49.025358127000068 ], [ -123.053559119999974, 49.025358319000091 ], [ -123.053555933999945, 49.022389779000079 ], [ -123.053966276, 49.022389587000056 ], [ -123.053965690999959, 49.021849852000052 ], [ -123.056017379999901, 49.021848875000067 ], [ -123.056018287999976, 49.022658477000093 ], [ -123.055197600999918, 49.022658872000072 ], [ -123.055198494999928, 49.023468474000026 ], [ -123.05683989799995, 49.02346767800001 ], [ -123.056838975999966, 49.022658075000066 ], [ -123.057659664999946, 49.022657669000047 ], [ -123.057659395999963, 49.022425818000059 ], [ -123.057391513999946, 49.02241847300008 ], [ -123.057427488999963, 49.02184818200012 ], [ -123.05724839199999, 49.021848271000096 ], [ -123.05724832699994, 49.021793498000129 ], [ -123.056875032999955, 49.021783260000049 ], [ -123.056887945999918, 49.021578582000068 ], [ -123.056837747, 49.021578606000041 ], [ -123.056837528999893, 49.021387771000086 ], [ -123.056570746999967, 49.021380453000063 ], [ -123.056591593999926, 49.02105004599999 ], [ -123.05634375899993, 49.021043248000119 ], [ -123.056371854999952, 49.020598015000118 ], [ -123.055986372999939, 49.020587441000067 ], [ -123.056023197999963, 49.020003925000026 ], [ -123.05512647899999, 49.019979319000051 ], [ -123.05513975599996, 49.019768984000088 ], [ -123.054925883999942, 49.019763115000103 ], [ -123.0549489469999, 49.019397786000127 ], [ -123.054596294999939, 49.019388106000051 ], [ -123.054780463999975, 49.016470977000019 ], [ -123.054780294999929, 49.016317150000049 ], [ -123.05575391, 49.016719909000123 ], [ -123.056117715999918, 49.01691009400011 ], [ -123.05637919299997, 49.017140814000079 ], [ -123.056422852999958, 49.017196082000105 ], [ -123.056638132999979, 49.017468682000086 ], [ -123.057030890999911, 49.017965993000118 ], [ -123.057591004999949, 49.018728390000085 ], [ -123.058259890999949, 49.020366101000072 ], [ -123.058354111999932, 49.02071381000011 ], [ -123.058473901999903, 49.021587498 ], [ -123.05846164899999, 49.022058430000072 ], [ -123.058461388999959, 49.022067492000055 ], [ -123.058301644999958, 49.02308826800008 ], [ -123.058184718999925, 49.023835341000087 ], [ -123.058138698999983, 49.024129392000141 ], [ -123.058222499999886, 49.024338892000074 ], [ -123.058512417999964, 49.024554111000072 ], [ -123.058326893999947, 49.02554468200006 ], [ -123.058220204999969, 49.026109505000122 ], [ -123.05806849, 49.02649999700008 ], [ -123.057567200999969, 49.027772104000071 ], [ -123.057356597999956, 49.028119975000052 ], [ -123.05686529, 49.028931516000078 ], [ -123.056510722999946, 49.029525505000052 ], [ -123.056396082999939, 49.029717001000087 ], [ -123.056223795, 49.029999804000077 ], [ -123.05604208599999, 49.030387708000056 ], [ -123.055343274999984, 49.031928286000088 ], [ -123.054050879999949, 49.034643805000016 ], [ -123.05334249299996, 49.034611270000049 ], [ -123.052672387999976, 49.034523401000072 ], [ -123.052755788999931, 49.034379503000054 ], [ -123.053666638999971, 49.033019468000084 ], [ -123.054279915, 49.032250440000041 ], [ -123.054567243999941, 49.031954355000153 ], [ -123.054582778999958, 49.031934806000088 ], [ -123.054853475999892, 49.03148107100008 ], [ -123.055992384999968, 49.029758084000044 ], [ -123.056210957999923, 49.029347335000075 ], [ -123.056267804999891, 49.029168728000109 ], [ -123.056460976999944, 49.028784749000117 ], [ -123.056632065, 49.02825785200006 ], [ -123.056826756999953, 49.027900689000013 ], [ -123.057123398999948, 49.027213061000047 ], [ -123.0571811, 49.026829015000047 ], [ -123.057135649999964, 49.026105572000105 ], [ -123.057078816999976, 49.025855525000061 ], [ -123.056985906999913, 49.025601572 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96298667", "BldgCostT": "65731667", "sL_LossRatio": "0.725509808982963", "sL_AssetLoss": "1983488", "sL_BldgLoss": "1439040", "sL_StrLoss": "633690", "sL_NStrLoss": "805350", "sL_ContLoss": "544448", "geom_point": "0101000020E610000041BB8E61A3C25EC0FE585E4588814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040011222999937, 49.018120383000038 ], [ -123.040010971999948, 49.017807522000055 ], [ -123.039825331999964, 49.017807586000075 ], [ -123.039717715999956, 49.017626495000123 ], [ -123.039600107999931, 49.017101870000012 ], [ -123.039599811999963, 49.016728193000048 ], [ -123.039516346999989, 49.016728222000133 ], [ -123.039448752999945, 49.016426681000056 ], [ -123.039409871999965, 49.015338221000036 ], [ -123.039276597999944, 49.014759506000047 ], [ -123.039209203999945, 49.014605782000096 ], [ -123.039100606999966, 49.014488155000016 ], [ -123.03810815699994, 49.013817933000048 ], [ -123.037956258999941, 49.01361105900007 ], [ -123.037956166999976, 49.01349033200006 ], [ -123.037867635999973, 49.013490362000049 ], [ -123.037769410999914, 49.013356583000096 ], [ -123.037703830999988, 49.013215919000118 ], [ -123.037676609999963, 49.012680191000051 ], [ -123.037182982999965, 49.011650245000034 ], [ -123.037030500999919, 49.011231450000054 ], [ -123.036989805999895, 49.011186181000063 ], [ -123.036954157999958, 49.011057649000072 ], [ -123.036894003999961, 49.010637901000052 ], [ -123.036751842999976, 49.010453551000126 ], [ -123.036562158999942, 49.009576584000072 ], [ -123.036536508999916, 49.009296254000056 ], [ -123.036323192999973, 49.008473014000074 ], [ -123.036605953999967, 49.008423725000071 ], [ -123.037300616999914, 49.00839918500008 ], [ -123.037668517999961, 49.009965593000047 ], [ -123.038310479999964, 49.009925595000091 ], [ -123.038113607999918, 49.00883070900003 ], [ -123.037979418999967, 49.008403501000032 ], [ -123.03903051099999, 49.008419900000092 ], [ -123.040047901999955, 49.008427207000082 ], [ -123.041106414999916, 49.008433904000043 ], [ -123.041773010999975, 49.008437004000022 ], [ -123.042458695000036, 49.008441203000068 ], [ -123.043325922999941, 49.008446497000136 ], [ -123.043482902999983, 49.008448092000052 ], [ -123.046329591999964, 49.008438190000106 ], [ -123.046472691999924, 49.008488104000065 ], [ -123.04654571599994, 49.008629801000062 ], [ -123.046545770999941, 49.008702994000053 ], [ -123.046548553999969, 49.011496933000075 ], [ -123.046548801, 49.011774788 ], [ -123.046663041999977, 49.012025482000148 ], [ -123.043135725999903, 49.011928324000095 ], [ -123.043211471999939, 49.010733028000075 ], [ -123.041373810999957, 49.01068236400004 ], [ -123.041337307999953, 49.011258044000016 ], [ -123.041236471999966, 49.011255262000127 ], [ -123.041236758999915, 49.011600131000129 ], [ -123.04164701, 49.01159998300006 ], [ -123.041647685000015, 49.012409587000015 ], [ -123.042057946999947, 49.012409439000074 ], [ -123.042058400999963, 49.012949174000077 ], [ -123.042468665999976, 49.012949023000104 ], [ -123.042469352999916, 49.013758627000051 ], [ -123.042879623999966, 49.013758475000074 ], [ -123.042880205999936, 49.014435490000047 ], [ -123.042880318999934, 49.014568079000092 ], [ -123.042470043, 49.014568229000112 ], [ -123.042471418999966, 49.016187436000081 ], [ -123.041240546999987, 49.016187882000089 ], [ -123.041240992999931, 49.01672761800004 ], [ -123.04165128799994, 49.016727470000028 ], [ -123.041651739999935, 49.017267205000095 ], [ -123.042062038999973, 49.017267057000026 ], [ -123.042062948999899, 49.018346527000048 ], [ -123.041652638999921, 49.018346676000064 ], [ -123.041652864999989, 49.018616544000089 ], [ -123.040340708999935, 49.018617011000117 ], [ -123.040251793, 49.018525188000112 ], [ -123.040011222999937, 49.018120383000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.770315720950418", "sL_AssetLoss": "46085", "sL_BldgLoss": "35500", "sL_StrLoss": "17220", "sL_NStrLoss": "18280", "sL_ContLoss": "10585", "geom_point": "0101000020E6100000214CDDD739C35EC0E8659803D2814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049487994999978, 49.014629784000078 ], [ -123.049560088999925, 49.013489773000103 ], [ -123.050419113999936, 49.013732204000114 ], [ -123.050811248999963, 49.013882301000123 ], [ -123.050852801999952, 49.013898206000071 ], [ -123.051223212999943, 49.014133602000086 ], [ -123.051878725999984, 49.014695503000013 ], [ -123.049487994999978, 49.014629784000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "405196624", "BldgCostT": "274279689", "sL_LossRatio": "0.784286346013737", "sL_AssetLoss": "5363972", "sL_BldgLoss": "4206890", "sL_StrLoss": "1878740", "sL_NStrLoss": "2328150", "sL_ContLoss": "1157082", "geom_point": "0101000020E6100000B89466D26AC25EC0034FBE2CAF804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.037668517999961, 49.009965593000047 ], [ -123.037300616999914, 49.00839918500008 ], [ -123.036605953999967, 49.008423725000071 ], [ -123.036323192999973, 49.008473014000074 ], [ -123.036311122999933, 49.008428271000106 ], [ -123.036265378999985, 49.008269726000037 ], [ -123.036010172999937, 49.007732552000029 ], [ -123.03579952799997, 49.007415783000106 ], [ -123.03565678399994, 49.007054629000081 ], [ -123.035623373999925, 49.006884828000132 ], [ -123.035532334999957, 49.005234504000057 ], [ -123.03554481899999, 49.005212409000052 ], [ -123.035521055999979, 49.005030024000057 ], [ -123.035481582, 49.004314394000104 ], [ -123.03533051, 49.002668 ], [ -123.035187088, 49.002084045000039 ], [ -123.03624393699999, 49.002082062000099 ], [ -123.037913934999949, 49.002082063000017 ], [ -123.038160936999972, 49.002082061000102 ], [ -123.03960727, 49.002081633000053 ], [ -123.03964301, 49.002124307000017 ], [ -123.039715302, 49.002604094000027 ], [ -123.039872779999897, 49.003649099000086 ], [ -123.04002559499996, 49.004750900000069 ], [ -123.040063577999945, 49.005014204000076 ], [ -123.04005390899999, 49.007119530000089 ], [ -123.040047901999955, 49.008427207000082 ], [ -123.03903051099999, 49.008419900000092 ], [ -123.037979418999967, 49.008403501000032 ], [ -123.038113607999918, 49.00883070900003 ], [ -123.038310479999964, 49.009925595000091 ], [ -123.037668517999961, 49.009965593000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "524828419", "BldgCostT": "360721669", "sL_LossRatio": "0.795204928701397", "sL_AssetLoss": "6046542", "sL_BldgLoss": "4808240", "sL_StrLoss": "2276790", "sL_NStrLoss": "2531450", "sL_ContLoss": "1238302", "geom_point": "0101000020E6100000D5D09209F0C45EC0392B785D01834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071460714999915, 49.024106318000108 ], [ -123.07145667599994, 49.023015790000045 ], [ -123.072776793999964, 49.022997808000078 ], [ -123.072777060999925, 49.022602891000112 ], [ -123.072777508999962, 49.022006595000086 ], [ -123.074175612999952, 49.022002576000084 ], [ -123.074558648999954, 49.022001475000103 ], [ -123.075073821999965, 49.022000004000105 ], [ -123.075347299999976, 49.02199920300005 ], [ -123.075383583999937, 49.023207598000084 ], [ -123.075634834, 49.023202433000115 ], [ -123.075684708999972, 49.023201397000037 ], [ -123.075983912999916, 49.022898711000082 ], [ -123.07632300099999, 49.022634006000061 ], [ -123.076712780999941, 49.022411205000033 ], [ -123.077263102999922, 49.022178398000037 ], [ -123.077891090999927, 49.022015301000053 ], [ -123.078359120999906, 49.021963200000059 ], [ -123.079016894999981, 49.021955790000057 ], [ -123.07945811699993, 49.021972532000042 ], [ -123.080535794999932, 49.022013405000081 ], [ -123.081804382999934, 49.022052402000043 ], [ -123.081813417999967, 49.022563608000048 ], [ -123.081842992999938, 49.022854496000029 ], [ -123.081832318999886, 49.023922 ], [ -123.083218224999925, 49.023921899000094 ], [ -123.083228806999898, 49.024691703000045 ], [ -123.082285165999977, 49.024701150000091 ], [ -123.079766301999939, 49.024700182000068 ], [ -123.076737551999926, 49.024700363000079 ], [ -123.075471805999896, 49.024700387000038 ], [ -123.07454896199998, 49.024698606000115 ], [ -123.072800112999971, 49.024695195000056 ], [ -123.07213660799999, 49.024704998000097 ], [ -123.071572457999963, 49.024699527000053 ], [ -123.071561041999956, 49.024337 ], [ -123.071460714999915, 49.024106318000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97532002", "BldgCostT": "62090958", "sL_LossRatio": "0.669037197127618", "sL_AssetLoss": "2739190", "sL_BldgLoss": "1832620", "sL_StrLoss": "703230", "sL_NStrLoss": "1129390", "sL_ContLoss": "906570", "geom_point": "0101000020E6100000DEDD14A0F7C45EC0627B46855E834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076394786999984, 49.027791100000073 ], [ -123.076212404999964, 49.027757294000033 ], [ -123.075430011999956, 49.027764794000035 ], [ -123.075353342999946, 49.026523519000129 ], [ -123.07533369, 49.026205092000083 ], [ -123.075338502999955, 49.025737602000071 ], [ -123.0754543, 49.025415402000071 ], [ -123.07546548799999, 49.024958054000074 ], [ -123.075471805999896, 49.024700387000038 ], [ -123.076737551999926, 49.024700363000079 ], [ -123.079766301999939, 49.024700182000068 ], [ -123.079768439999924, 49.026080562000161 ], [ -123.079769189999951, 49.026573704000057 ], [ -123.079772887, 49.027279289000084 ], [ -123.079772895999952, 49.027999311 ], [ -123.076939685999989, 49.027995207000039 ], [ -123.076850786999927, 49.027994513000088 ], [ -123.076394786999984, 49.027791100000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102389832", "BldgCostT": "66433332", "sL_LossRatio": "0.684005211747873", "sL_AssetLoss": "2425290", "sL_BldgLoss": "1658911", "sL_StrLoss": "705921", "sL_NStrLoss": "952990", "sL_ContLoss": "766379", "geom_point": "0101000020E61000002F92024DFCC45EC04F69DC1F98824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075347299999976, 49.02199920300005 ], [ -123.07532678799997, 49.02090919500008 ], [ -123.075306008999945, 49.019977808000078 ], [ -123.075311721, 49.019690502000081 ], [ -123.07539047099999, 49.019500695000019 ], [ -123.075429331999928, 49.01945927800007 ], [ -123.076730504999901, 49.018072009000022 ], [ -123.078807899999916, 49.018069093000072 ], [ -123.079622625999917, 49.018066102000091 ], [ -123.080468787999948, 49.018062107000084 ], [ -123.080484858999966, 49.019008813000042 ], [ -123.080498432999917, 49.019809230000121 ], [ -123.080535794999932, 49.022013405000081 ], [ -123.07945811699993, 49.021972532000042 ], [ -123.079016894999981, 49.021955790000057 ], [ -123.078359120999906, 49.021963200000059 ], [ -123.077891090999927, 49.022015301000053 ], [ -123.077263102999922, 49.022178398000037 ], [ -123.076712780999941, 49.022411205000033 ], [ -123.07632300099999, 49.022634006000061 ], [ -123.075983912999916, 49.022898711000082 ], [ -123.075684708999972, 49.023201397000037 ], [ -123.075634834, 49.023202433000115 ], [ -123.075383583999937, 49.023207598000084 ], [ -123.075347299999976, 49.02199920300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105287583", "BldgCostT": "72348333", "sL_LossRatio": "0.747774451861925", "sL_AssetLoss": "1645662", "sL_BldgLoss": "1230584", "sL_StrLoss": "580237", "sL_NStrLoss": "650347", "sL_ContLoss": "415078", "geom_point": "0101000020E61000007F9FB3FD12C65EC06C88017D68824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100263885999965, 49.024634123000098 ], [ -123.099636929999946, 49.024570049000019 ], [ -123.099306186, 49.024581318000074 ], [ -123.099306191, 49.024580179000047 ], [ -123.099313684999956, 49.024217505000145 ], [ -123.097117980999926, 49.024207696000147 ], [ -123.097113393999976, 49.02373270800009 ], [ -123.095192487999938, 49.021274364000114 ], [ -123.094831092999925, 49.020811803000079 ], [ -123.094530691999978, 49.020806395000093 ], [ -123.094216014, 49.020769093000077 ], [ -123.093890102999936, 49.020669194000099 ], [ -123.0936951, 49.020574692000082 ], [ -123.093136588999982, 49.020106389000084 ], [ -123.092482308999934, 49.019640792000111 ], [ -123.091703496999983, 49.019528702000137 ], [ -123.091071200999977, 49.019544006000089 ], [ -123.09081491100001, 49.019577591000022 ], [ -123.090810726999962, 49.019235022000068 ], [ -123.090794407999937, 49.017891085000024 ], [ -123.090828623999968, 49.017641821000055 ], [ -123.090839390999946, 49.017563396000085 ], [ -123.091000196, 49.017154110000057 ], [ -123.091292105, 49.016812407000053 ], [ -123.091312455999969, 49.0167949370001 ], [ -123.091823393999974, 49.016356497000082 ], [ -123.092053081999964, 49.016047300000011 ], [ -123.09220021899992, 49.015726894000125 ], [ -123.092249514999963, 49.015439899000071 ], [ -123.092154184999956, 49.015147823000042 ], [ -123.091823791999957, 49.014135304000021 ], [ -123.091742509999946, 49.013889886000094 ], [ -123.091583522999926, 49.01340970600009 ], [ -123.094122744999936, 49.012627862000038 ], [ -123.094137302, 49.012754982000075 ], [ -123.094200183999988, 49.012838129000031 ], [ -123.094211330999954, 49.013115001000088 ], [ -123.09434720199999, 49.013584028000047 ], [ -123.094358013999965, 49.013607466000082 ], [ -123.094721, 49.014394775000042 ], [ -123.095035758, 49.014802034000084 ], [ -123.095157872999906, 49.015035867000122 ], [ -123.095233678999961, 49.015371088000052 ], [ -123.095465665999967, 49.016057521000086 ], [ -123.095583817999952, 49.016250126000052 ], [ -123.096034297999921, 49.016904976000099 ], [ -123.096658604999945, 49.017718911000031 ], [ -123.096660931999978, 49.017722240000062 ], [ -123.095543494999944, 49.01755660200007 ], [ -123.094063015999907, 49.017651334000035 ], [ -123.093023264999914, 49.017717867000073 ], [ -123.093029946999977, 49.01773530000002 ], [ -123.09305489799999, 49.017800003000069 ], [ -123.09312562299999, 49.01791961 ], [ -123.093215751999963, 49.018147943000038 ], [ -123.094180842999947, 49.018501211000078 ], [ -123.094894051999944, 49.018878308000069 ], [ -123.09546698199999, 49.01949757400007 ], [ -123.095874544999972, 49.01980489200011 ], [ -123.096610564999978, 49.020238273000075 ], [ -123.097237115999988, 49.02062961500009 ], [ -123.097808384999951, 49.02084673500012 ], [ -123.098074326999921, 49.020950930000012 ], [ -123.098593183999952, 49.021308560000136 ], [ -123.099158302999982, 49.021780508000063 ], [ -123.099649630999949, 49.022310925000035 ], [ -123.099898727999971, 49.022697606000101 ], [ -123.100076869999896, 49.023175031000093 ], [ -123.100311017999914, 49.023455757000121 ], [ -123.100479995999976, 49.023662378000054 ], [ -123.100556753999939, 49.024173334000096 ], [ -123.100496841000037, 49.024640660000067 ], [ -123.100263885999965, 49.024634123000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215073674", "BldgCostT": "130251885", "sL_LossRatio": "0.630149257497571", "sL_AssetLoss": "6340720", "sL_BldgLoss": "3995600", "sL_StrLoss": "1465010", "sL_NStrLoss": "2530590", "sL_ContLoss": "2345120", "geom_point": "0101000020E61000004234C2F4E0C35EC0227B638C388C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057285947999929, 49.096242669000091 ], [ -123.057279713999961, 49.095388816000138 ], [ -123.057509918, 49.095401367000143 ], [ -123.057746373999919, 49.095414289000139 ], [ -123.058200598999974, 49.095419501000059 ], [ -123.058189506999923, 49.09234500000013 ], [ -123.059304587999961, 49.092352106000099 ], [ -123.05940681099996, 49.09235376000003 ], [ -123.06043679699998, 49.092370500000087 ], [ -123.060427152999964, 49.093611793000058 ], [ -123.060426815999932, 49.093655904000137 ], [ -123.06048270299999, 49.093745707000032 ], [ -123.06060648199994, 49.093802294000092 ], [ -123.060866157999925, 49.093843510000063 ], [ -123.061415507999953, 49.093930691000082 ], [ -123.061404220999989, 49.094716998000074 ], [ -123.063675509999911, 49.095058386000105 ], [ -123.063666608999981, 49.095851015000079 ], [ -123.063633309999958, 49.097725988000022 ], [ -123.063622809999984, 49.098500508000058 ], [ -123.063692449999934, 49.098587125000115 ], [ -123.062179086999947, 49.097956202000042 ], [ -123.060675619999984, 49.097431931000138 ], [ -123.060044413999933, 49.097211821000052 ], [ -123.059834684999913, 49.097138691000069 ], [ -123.058163790999942, 49.09645509500006 ], [ -123.057511953999906, 49.096297362000044 ], [ -123.057285947999929, 49.096242669000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169329751", "BldgCostT": "114045001", "sL_LossRatio": "0.731373402075428", "sL_AssetLoss": "2567471", "sL_BldgLoss": "1877780", "sL_StrLoss": "963370", "sL_NStrLoss": "914410", "sL_ContLoss": "689691", "geom_point": "0101000020E61000008A80551E32C35EC09F1CECEAE18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056100606999962, 49.095851821000032 ], [ -123.05610054099999, 49.095792047000025 ], [ -123.055924977999922, 49.095792132000028 ], [ -123.05533547099995, 49.095591779000046 ], [ -123.05528581399993, 49.095574899000013 ], [ -123.053421681999978, 49.095111173000127 ], [ -123.053339384999987, 49.095090700000057 ], [ -123.052496128999934, 49.094934091000013 ], [ -123.051350844999973, 49.094721395000093 ], [ -123.050586389000017, 49.094579396000029 ], [ -123.049559576999968, 49.094560896000154 ], [ -123.049216086999962, 49.094417003000089 ], [ -123.048134794999925, 49.094247602000024 ], [ -123.047507820999954, 49.094220421000053 ], [ -123.046243685000022, 49.094165624000013 ], [ -123.046246799999977, 49.093768995000048 ], [ -123.046220193999915, 49.093088997000017 ], [ -123.046231559999939, 49.09233181100003 ], [ -123.046249910999947, 49.091109292000034 ], [ -123.046243327999946, 49.090134272000121 ], [ -123.050834826999932, 49.090164848 ], [ -123.050982020999982, 49.090217542000126 ], [ -123.051144916999945, 49.090217511000041 ], [ -123.051144079999986, 49.091203183000033 ], [ -123.051124186999942, 49.091842402000076 ], [ -123.051104199999941, 49.093130308000063 ], [ -123.051788505999966, 49.093294067000031 ], [ -123.051917211999978, 49.093324870000096 ], [ -123.052137104999986, 49.093377487000112 ], [ -123.052766497999954, 49.093509684000033 ], [ -123.053401683999979, 49.093643109000013 ], [ -123.053997197999962, 49.093768213 ], [ -123.054380190999908, 49.093880503000065 ], [ -123.054379013999906, 49.094808478000068 ], [ -123.056979804999983, 49.095567201000065 ], [ -123.056999704999939, 49.094710893000112 ], [ -123.057274472999893, 49.094667323000131 ], [ -123.057275696999923, 49.094836743000037 ], [ -123.057279713999961, 49.095388816000138 ], [ -123.057285947999929, 49.096242669000091 ], [ -123.057163386999932, 49.096213005000045 ], [ -123.056100606999962, 49.095851821000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132737416", "BldgCostT": "86026666", "sL_LossRatio": "0.695807619725819", "sL_AssetLoss": "2788893", "sL_BldgLoss": "1940533", "sL_StrLoss": "820683", "sL_NStrLoss": "1119850", "sL_ContLoss": "848360", "geom_point": "0101000020E61000003D3145357CC35EC0EF2619B5D28B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055950947, 49.090226249000096 ], [ -123.056858387999966, 49.09023181400002 ], [ -123.056927613999946, 49.091151804000063 ], [ -123.057198748999937, 49.093244712000065 ], [ -123.057268009999987, 49.093779414000075 ], [ -123.057274472999893, 49.094667323000131 ], [ -123.056999704999939, 49.094710893000112 ], [ -123.056979804999983, 49.095567201000065 ], [ -123.054379013999906, 49.094808478000068 ], [ -123.054380190999908, 49.093880503000065 ], [ -123.053997197999962, 49.093768213 ], [ -123.053401683999979, 49.093643109000013 ], [ -123.052766497999954, 49.093509684000033 ], [ -123.052137104999986, 49.093377487000112 ], [ -123.051917211999978, 49.093324870000096 ], [ -123.051788505999966, 49.093294067000031 ], [ -123.051104199999941, 49.093130308000063 ], [ -123.051124186999942, 49.091842402000076 ], [ -123.051144079999986, 49.091203183000033 ], [ -123.051144916999945, 49.090217511000041 ], [ -123.053430781999978, 49.090216993000126 ], [ -123.054403895999954, 49.090216777000109 ], [ -123.054417608999955, 49.090216893000054 ], [ -123.055257174999923, 49.090222031000067 ], [ -123.055950947, 49.090226249000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112945500", "BldgCostT": "75420000", "sL_LossRatio": "0.731243946551888", "sL_AssetLoss": "1906971", "sL_BldgLoss": "1394461", "sL_StrLoss": "613091", "sL_NStrLoss": "781370", "sL_ContLoss": "512510", "geom_point": "0101000020E61000009B8833965BAB5EC0E047B9241C8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.676844988999903, 49.083183590000097 ], [ -122.675500906999943, 49.083028406000068 ], [ -122.674080681999925, 49.083019599000117 ], [ -122.674165979999927, 49.082170596000061 ], [ -122.67455899199993, 49.082167390000045 ], [ -122.674662134999963, 49.081069304000053 ], [ -122.674740786999948, 49.080005615000047 ], [ -122.674752339999941, 49.079586128000038 ], [ -122.674753722, 49.079537299000016 ], [ -122.675029458999987, 49.078895851000048 ], [ -122.674559901999899, 49.076078689000084 ], [ -122.674737693999958, 49.076079695000061 ], [ -122.674893200999975, 49.076049288000064 ], [ -122.674989979999978, 49.075996496000116 ], [ -122.675005141999989, 49.07596233200011 ], [ -122.675025924999957, 49.075915597000048 ], [ -122.675024857, 49.075538809000093 ], [ -122.675024224999959, 49.075318476000078 ], [ -122.675024013, 49.075232391000021 ], [ -122.67508388899995, 49.075199091000094 ], [ -122.675443620999886, 49.075209598000072 ], [ -122.675899079999979, 49.075222847000077 ], [ -122.676541132999944, 49.075241574000067 ], [ -122.67659027599997, 49.075242996000107 ], [ -122.676908327999939, 49.075210291000104 ], [ -122.676921844999967, 49.075208899000138 ], [ -122.677288307999973, 49.07460939400007 ], [ -122.67802323199993, 49.074642639000047 ], [ -122.67868, 49.074726306000095 ], [ -122.679013397999981, 49.074715905000126 ], [ -122.679292607999955, 49.074715495000099 ], [ -122.68040238699993, 49.074717395000086 ], [ -122.680374693999966, 49.075219346000019 ], [ -122.680355766999952, 49.075561623000034 ], [ -122.680288661999938, 49.076776316000114 ], [ -122.680265488999964, 49.077196730000033 ], [ -122.68026285799999, 49.077244103000076 ], [ -122.680242301999897, 49.077616190000107 ], [ -122.680198651999945, 49.078361215000029 ], [ -122.680195984999926, 49.078361208000068 ], [ -122.680195656999942, 49.078412344000121 ], [ -122.680191703999967, 49.078479805000057 ], [ -122.680179861999932, 49.078631028000068 ], [ -122.680078339999952, 49.078630746000087 ], [ -122.680062946999968, 49.078830147000055 ], [ -122.680164022999961, 49.078833270000054 ], [ -122.680069889999984, 49.080035190000011 ], [ -122.680074607999984, 49.080507591000092 ], [ -122.680092848999948, 49.080606121000052 ], [ -122.680170831999959, 49.081077211000064 ], [ -122.680222632999943, 49.081740485000111 ], [ -122.680256546999928, 49.082282047000064 ], [ -122.679098081999939, 49.082338492000112 ], [ -122.679012625999917, 49.083210909000066 ], [ -122.676844988999903, 49.083183590000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171597167", "BldgCostT": "111451667", "sL_LossRatio": "0.705986095942942", "sL_AssetLoss": "2829390", "sL_BldgLoss": "1997510", "sL_StrLoss": "899780", "sL_NStrLoss": "1097730", "sL_ContLoss": "831880", "geom_point": "0101000020E6100000241FB39A0BAB5EC071776BD3378A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669041472999979, 49.083500360000052 ], [ -122.66912297099995, 49.082155865000104 ], [ -122.668979341999886, 49.082154098000075 ], [ -122.669285141999936, 49.078299067000103 ], [ -122.669405551999944, 49.076672459000072 ], [ -122.669443375999947, 49.076086008000082 ], [ -122.669479659999979, 49.074717241000037 ], [ -122.669634308999932, 49.074717512000063 ], [ -122.670436458999959, 49.074734259000088 ], [ -122.673063083999949, 49.074713555000052 ], [ -122.673589807, 49.074712981000118 ], [ -122.674038219999929, 49.074701608000062 ], [ -122.674612959999976, 49.074706182000057 ], [ -122.675170684999969, 49.074710594000059 ], [ -122.675041908999944, 49.074828287000088 ], [ -122.675024013, 49.075232391000021 ], [ -122.675024224999959, 49.075318476000078 ], [ -122.675024857, 49.075538809000093 ], [ -122.675025924999957, 49.075915597000048 ], [ -122.675005141999989, 49.07596233200011 ], [ -122.674989979999978, 49.075996496000116 ], [ -122.674893200999975, 49.076049288000064 ], [ -122.674737693999958, 49.076079695000061 ], [ -122.674559901999899, 49.076078689000084 ], [ -122.675029458999987, 49.078895851000048 ], [ -122.674753722, 49.079537299000016 ], [ -122.674752339999941, 49.079586128000038 ], [ -122.674740786999948, 49.080005615000047 ], [ -122.674662134999963, 49.081069304000053 ], [ -122.67455899199993, 49.082167390000045 ], [ -122.674165979999927, 49.082170596000061 ], [ -122.674080681999925, 49.083019599000117 ], [ -122.675500906999943, 49.083028406000068 ], [ -122.676844988999903, 49.083183590000097 ], [ -122.679012625999917, 49.083210909000066 ], [ -122.679098081999939, 49.082338492000112 ], [ -122.680256546999928, 49.082282047000064 ], [ -122.68023369099997, 49.082440365000096 ], [ -122.68016980599999, 49.082438390000071 ], [ -122.680166818999979, 49.082903574000056 ], [ -122.680025805999932, 49.083880304000047 ], [ -122.675384641999969, 49.084240233000031 ], [ -122.674699840999935, 49.084293316000121 ], [ -122.672806891, 49.084311565000114 ], [ -122.67269913399997, 49.08408695600005 ], [ -122.67230978, 49.084061241000029 ], [ -122.671908517999981, 49.084013097000138 ], [ -122.671222126999936, 49.083989373000072 ], [ -122.669020192999952, 49.083843803000093 ], [ -122.669031695999962, 49.083661707000076 ], [ -122.669041472999979, 49.083500360000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99527417", "BldgCostT": "66901667", "sL_LossRatio": "0.7362681464954", "sL_AssetLoss": "1674428", "sL_BldgLoss": "1232828", "sL_StrLoss": "544338", "sL_NStrLoss": "688490", "sL_ContLoss": "441600", "geom_point": "0101000020E61000001F052DC926AB5EC0EFBEBE31DF8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668818344999949, 49.084634744000027 ], [ -122.668870332999973, 49.083833878000092 ], [ -122.668979341999886, 49.082154098000075 ], [ -122.66912297099995, 49.082155865000104 ], [ -122.669041472999979, 49.083500360000052 ], [ -122.669031695999962, 49.083661707000076 ], [ -122.669020192999952, 49.083843803000093 ], [ -122.671222126999936, 49.083989373000072 ], [ -122.671908517999981, 49.084013097000138 ], [ -122.67230978, 49.084061241000029 ], [ -122.67269913399997, 49.08408695600005 ], [ -122.672806891, 49.084311565000114 ], [ -122.674699840999935, 49.084293316000121 ], [ -122.675384641999969, 49.084240233000031 ], [ -122.680025805999932, 49.083880304000047 ], [ -122.680011139, 49.084063803000163 ], [ -122.679987279999978, 49.084362198000115 ], [ -122.679981182999967, 49.084386872000067 ], [ -122.679931594, 49.084586711000028 ], [ -122.679885403999933, 49.085465691000124 ], [ -122.679862591999921, 49.085843589000035 ], [ -122.67866208599996, 49.085852265000049 ], [ -122.678018979999962, 49.085856888000109 ], [ -122.677302382000036, 49.08584819700004 ], [ -122.675972895999948, 49.085852192000097 ], [ -122.674583907999974, 49.085845196000051 ], [ -122.673898994999945, 49.085851085000058 ], [ -122.673323711999956, 49.085855788000053 ], [ -122.672426505999937, 49.085864114000096 ], [ -122.668861008999954, 49.085857187000109 ], [ -122.668735014, 49.085857800000063 ], [ -122.66876695, 49.085389324000111 ], [ -122.668818344999949, 49.084634744000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89047001", "BldgCostT": "60940001", "sL_LossRatio": "0.753059276188272", "sL_AssetLoss": "1382680", "sL_BldgLoss": "1041240", "sL_StrLoss": "460930", "sL_NStrLoss": "580310", "sL_ContLoss": "341440", "geom_point": "0101000020E61000005E4A86B13FAB5EC08FC2DC8B3B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.67866208599996, 49.085852265000049 ], [ -122.679862591999921, 49.085843589000035 ], [ -122.679248516999934, 49.087678407000062 ], [ -122.679382146999927, 49.088494600000089 ], [ -122.67948154399997, 49.089006601000065 ], [ -122.679560305999956, 49.089583295000075 ], [ -122.679282107999967, 49.089582886000052 ], [ -122.677720800999964, 49.089580561000105 ], [ -122.671501794999955, 49.089571012000086 ], [ -122.671569252999973, 49.088889465000122 ], [ -122.671575418999964, 49.08882728 ], [ -122.671585410999967, 49.088726487000024 ], [ -122.671590900999959, 49.088693489000065 ], [ -122.671592873999927, 49.088681656000105 ], [ -122.671640589999967, 49.088394694000044 ], [ -122.671682432999916, 49.088337142000078 ], [ -122.671787907999885, 49.088192002000085 ], [ -122.67189386099993, 49.088093274000094 ], [ -122.672298190999925, 49.087716599000039 ], [ -122.672344585999909, 49.087584699000089 ], [ -122.67237937499999, 49.087335918000079 ], [ -122.672428681999918, 49.08698350300007 ], [ -122.672426505999937, 49.085864114000096 ], [ -122.673323711999956, 49.085855788000053 ], [ -122.673898994999945, 49.085851085000058 ], [ -122.674583907999974, 49.085845196000051 ], [ -122.675972895999948, 49.085852192000097 ], [ -122.677302382000036, 49.08584819700004 ], [ -122.678018979999962, 49.085856888000109 ], [ -122.67866208599996, 49.085852265000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170543000", "BldgCostT": "108830000", "sL_LossRatio": "0.70890429983046", "sL_AssetLoss": "2700246", "sL_BldgLoss": "1914216", "sL_StrLoss": "838556", "sL_NStrLoss": "1075660", "sL_ContLoss": "786030", "geom_point": "0101000020E61000009415FD800BAB5EC045F219796E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668497692999935, 49.089558103000115 ], [ -122.668548550999944, 49.08874425900008 ], [ -122.668568223999969, 49.088429214000023 ], [ -122.66859684299996, 49.087970825000113 ], [ -122.668610183999974, 49.087757398000043 ], [ -122.668619840999909, 49.087602247000177 ], [ -122.668628309, 49.087467195000066 ], [ -122.66866769899994, 49.086836283000103 ], [ -122.668735014, 49.085857800000063 ], [ -122.668861008999954, 49.085857187000109 ], [ -122.672426505999937, 49.085864114000096 ], [ -122.672428681999918, 49.08698350300007 ], [ -122.67237937499999, 49.087335918000079 ], [ -122.672344585999909, 49.087584699000089 ], [ -122.672298190999925, 49.087716599000039 ], [ -122.67189386099993, 49.088093274000094 ], [ -122.671787907999885, 49.088192002000085 ], [ -122.671682432999916, 49.088337142000078 ], [ -122.671640589999967, 49.088394694000044 ], [ -122.671592873999927, 49.088681656000105 ], [ -122.671590900999959, 49.088693489000065 ], [ -122.671585410999967, 49.088726487000024 ], [ -122.671575418999964, 49.08882728 ], [ -122.671569252999973, 49.088889465000122 ], [ -122.671501794999955, 49.089571012000086 ], [ -122.677720800999964, 49.089580561000105 ], [ -122.679282107999967, 49.089582886000052 ], [ -122.679560305999956, 49.089583295000075 ], [ -122.679563056999953, 49.089692848000062 ], [ -122.6795642, 49.08973781600011 ], [ -122.679572548999914, 49.090070738000101 ], [ -122.67958098099993, 49.090406796000146 ], [ -122.67962272199999, 49.091320107000101 ], [ -122.678274510999969, 49.091315385 ], [ -122.676271811999982, 49.091311090000048 ], [ -122.674978626, 49.091302700000028 ], [ -122.674283579999965, 49.091296496000076 ], [ -122.672944004, 49.091285699000125 ], [ -122.671628689, 49.09128099100009 ], [ -122.669691898999986, 49.09127498600003 ], [ -122.668648903999951, 49.091271605000024 ], [ -122.66850077399999, 49.091282358000086 ], [ -122.668499134999962, 49.090362447000068 ], [ -122.66849771399994, 49.089567126000077 ], [ -122.668497692999935, 49.089558103000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120635250", "BldgCostT": "82725000", "sL_LossRatio": "0.743694336800598", "sL_AssetLoss": "2132805", "sL_BldgLoss": "1586155", "sL_StrLoss": "681605", "sL_NStrLoss": "904550", "sL_ContLoss": "546650", "geom_point": "0101000020E6100000B6474EAA26AB5EC003125ECCE08B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.670576497999946, 49.093455502000062 ], [ -122.668719405999937, 49.093348381000062 ], [ -122.66871518799995, 49.093540191000052 ], [ -122.668518103999958, 49.093540410000053 ], [ -122.668520986999937, 49.093346709000066 ], [ -122.66850260599989, 49.092301608000056 ], [ -122.668502584999914, 49.092292584000099 ], [ -122.66850077399999, 49.091282358000086 ], [ -122.668648903999951, 49.091271605000024 ], [ -122.669691898999986, 49.09127498600003 ], [ -122.671628689, 49.09128099100009 ], [ -122.672944004, 49.091285699000125 ], [ -122.674283579999965, 49.091296496000076 ], [ -122.674978626, 49.091302700000028 ], [ -122.676271811999982, 49.091311090000048 ], [ -122.678274510999969, 49.091315385 ], [ -122.67962272199999, 49.091320107000101 ], [ -122.679654900999978, 49.091769906000081 ], [ -122.67963329299999, 49.092687602000062 ], [ -122.679629796999919, 49.092694387000051 ], [ -122.679471010999961, 49.09323589000013 ], [ -122.679471716999942, 49.093418 ], [ -122.67946356899995, 49.093435976000109 ], [ -122.679429852999959, 49.093510620000046 ], [ -122.67939858599999, 49.093579713000111 ], [ -122.679293296999916, 49.093712606000096 ], [ -122.679128003999935, 49.093821891000033 ], [ -122.678211182, 49.094102694000092 ], [ -122.677225906999951, 49.094440797000054 ], [ -122.676454690999989, 49.094733291000026 ], [ -122.676010401999974, 49.094820515000087 ], [ -122.675681385999923, 49.094825707000076 ], [ -122.67502408099989, 49.09473140500009 ], [ -122.673948899999971, 49.094544890000044 ], [ -122.6732250969999, 49.094481107000085 ], [ -122.67245761199996, 49.09444094900006 ], [ -122.672420193, 49.094439008000059 ], [ -122.671820188999959, 49.09440510000011 ], [ -122.670586272999969, 49.094275897000045 ], [ -122.670576497999946, 49.093455502000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70071416", "BldgCostT": "47381666", "sL_LossRatio": "0.740685499690252", "sL_AssetLoss": "1144479", "sL_BldgLoss": "847699", "sL_StrLoss": "367739", "sL_NStrLoss": "479960", "sL_ContLoss": "296780", "geom_point": "0101000020E6100000867FCF1714AB5EC098A6C653288C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668518103999958, 49.093540410000053 ], [ -122.66871518799995, 49.093540191000052 ], [ -122.668719405999937, 49.093348381000062 ], [ -122.670576497999946, 49.093455502000062 ], [ -122.670586272999969, 49.094275897000045 ], [ -122.671820188999959, 49.09440510000011 ], [ -122.672420193, 49.094439008000059 ], [ -122.67245761199996, 49.09444094900006 ], [ -122.6732250969999, 49.094481107000085 ], [ -122.673948899999971, 49.094544890000044 ], [ -122.67502408099989, 49.09473140500009 ], [ -122.675681385999923, 49.094825707000076 ], [ -122.676010401999974, 49.094820515000087 ], [ -122.676454690999989, 49.094733291000026 ], [ -122.677225906999951, 49.094440797000054 ], [ -122.678211182, 49.094102694000092 ], [ -122.679128003999935, 49.093821891000033 ], [ -122.679293296999916, 49.093712606000096 ], [ -122.67939858599999, 49.093579713000111 ], [ -122.679429852999959, 49.093510620000046 ], [ -122.67946356899995, 49.093435976000109 ], [ -122.67943216, 49.094281124000034 ], [ -122.679271864999976, 49.094280680000097 ], [ -122.679266647999924, 49.095090259000138 ], [ -122.678855713999923, 49.095089117000029 ], [ -122.678852231999883, 49.095628836000117 ], [ -122.677208476999979, 49.095624251000089 ], [ -122.677206726999941, 49.095894111000028 ], [ -122.675973902999914, 49.095890657000105 ], [ -122.675975659999921, 49.095620798000063 ], [ -122.673920965999983, 49.095615012000096 ], [ -122.67392273399993, 49.095345152000029 ], [ -122.673100862999974, 49.095342828000078 ], [ -122.673099088999948, 49.095612687000049 ], [ -122.67268815099996, 49.095611522000119 ], [ -122.672686375999973, 49.095881383000062 ], [ -122.672770812999914, 49.095881622000071 ], [ -122.672272750999952, 49.096069659000101 ], [ -122.672062806999961, 49.096148900000067 ], [ -122.671608805999981, 49.09643509600005 ], [ -122.671265400999971, 49.096460804000039 ], [ -122.670283386, 49.095828408000052 ], [ -122.670051594999933, 49.095737293000091 ], [ -122.669654194999922, 49.095710213000132 ], [ -122.66946132, 49.095798506000094 ], [ -122.669170401999949, 49.096211501000091 ], [ -122.668841112999971, 49.096399507000029 ], [ -122.668746679999956, 49.096424549000048 ], [ -122.66859098, 49.096465847000047 ], [ -122.668586193999957, 49.096273225000068 ], [ -122.668548748999982, 49.094770966000077 ], [ -122.668518103999958, 49.093540410000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67921417", "BldgCostT": "43926667", "sL_LossRatio": "0.702142661977666", "sL_AssetLoss": "1134570", "sL_BldgLoss": "796630", "sL_StrLoss": "341040", "sL_NStrLoss": "455590", "sL_ContLoss": "337940", "geom_point": "0101000020E61000005C06EEA387AA5EC0EF2165B4238C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.666772196999929, 49.096366811000102 ], [ -122.666555790999922, 49.096096198000019 ], [ -122.666309483999953, 49.096123197000061 ], [ -122.665595291999978, 49.09640809800004 ], [ -122.665035913999986, 49.096002205000048 ], [ -122.664777105999988, 49.095875403000043 ], [ -122.664515003999981, 49.0958317730001 ], [ -122.664229882999976, 49.095784303000059 ], [ -122.664193275999978, 49.095754551000098 ], [ -122.663874395999954, 49.095495201000112 ], [ -122.663707277999947, 49.09555492400014 ], [ -122.663475893999959, 49.095637597000078 ], [ -122.662915704999975, 49.095546410000104 ], [ -122.662668009999905, 49.095572109000052 ], [ -122.662352482999893, 49.095661799000077 ], [ -122.662364088999951, 49.095985108 ], [ -122.661925481, 49.096091894000047 ], [ -122.661541297999946, 49.096090504000095 ], [ -122.660963242, 49.095984453000085 ], [ -122.660945493999961, 49.095981172000023 ], [ -122.660705033999989, 49.095937056000061 ], [ -122.660570481999983, 49.095912380000094 ], [ -122.66044689899995, 49.095889694000022 ], [ -122.660199522999932, 49.095554222000068 ], [ -122.660174882999968, 49.095520801000085 ], [ -122.659946220999942, 49.095527026000084 ], [ -122.65994568799999, 49.095492511000089 ], [ -122.659943111999965, 49.095321761000044 ], [ -122.659940546999962, 49.095150861000015 ], [ -122.659933200999959, 49.094664931000125 ], [ -122.659929018999975, 49.094385991000088 ], [ -122.659923304999907, 49.094006298000117 ], [ -122.65990989, 49.093582311000063 ], [ -122.661176370999939, 49.09356260300008 ], [ -122.662134924999947, 49.093547683000068 ], [ -122.662190687999939, 49.093546805000102 ], [ -122.662695325999934, 49.093549064000022 ], [ -122.662723495999956, 49.093549178000025 ], [ -122.66429310699999, 49.093556187000026 ], [ -122.667113726999986, 49.093553607000025 ], [ -122.667817794999948, 49.093548393000098 ], [ -122.668518103999958, 49.093540410000053 ], [ -122.668548748999982, 49.094770966000077 ], [ -122.668586193999957, 49.096273225000068 ], [ -122.66859098, 49.096465847000047 ], [ -122.66847059399997, 49.096497791000075 ], [ -122.66845598499998, 49.096508151000066 ], [ -122.66814080199994, 49.096731385000098 ], [ -122.667986899999931, 49.096735788000068 ], [ -122.667879978999935, 49.096738834000057 ], [ -122.667291495999947, 49.096755589000082 ], [ -122.666772196999929, 49.096366811000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165561417", "BldgCostT": "105656667", "sL_LossRatio": "0.718255045705494", "sL_AssetLoss": "2430780", "sL_BldgLoss": "1745920", "sL_StrLoss": "770850", "sL_NStrLoss": "975070", "sL_ContLoss": "684860", "geom_point": "0101000020E6100000BB362B0D82AA5EC082C0255BB88B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.667225009, 49.089550184000082 ], [ -122.668497692999935, 49.089558103000115 ], [ -122.66849771399994, 49.089567126000077 ], [ -122.668499134999962, 49.090362447000068 ], [ -122.66850077399999, 49.091282358000086 ], [ -122.668502584999914, 49.092292584000099 ], [ -122.66850260599989, 49.092301608000056 ], [ -122.668520986999937, 49.093346709000066 ], [ -122.668518103999958, 49.093540410000053 ], [ -122.667817794999948, 49.093548393000098 ], [ -122.667113726999986, 49.093553607000025 ], [ -122.66429310699999, 49.093556187000026 ], [ -122.662723495999956, 49.093549178000025 ], [ -122.662695325999934, 49.093549064000022 ], [ -122.662190687999939, 49.093546805000102 ], [ -122.662134924999947, 49.093547683000068 ], [ -122.661176370999939, 49.09356260300008 ], [ -122.65990989, 49.093582311000063 ], [ -122.659878248999931, 49.092535009000123 ], [ -122.659848054999941, 49.091429166000047 ], [ -122.65979766399991, 49.089879274000054 ], [ -122.659852334999968, 49.089708849000075 ], [ -122.660014469999936, 49.08962465700003 ], [ -122.661831311999919, 49.089584682000037 ], [ -122.662325950999957, 49.089582628000052 ], [ -122.662778059999965, 49.08958074200013 ], [ -122.663750411, 49.089576689000125 ], [ -122.66477771599989, 49.089572403000055 ], [ -122.665311974999966, 49.089570176000066 ], [ -122.665599588999925, 49.089568971000062 ], [ -122.665875305999947, 49.089567809000087 ], [ -122.667225009, 49.089550184000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177261519", "BldgCostT": "106626697", "sL_LossRatio": "0.639176573820266", "sL_AssetLoss": "3219475", "sL_BldgLoss": "2057813", "sL_StrLoss": "760923", "sL_NStrLoss": "1296890", "sL_ContLoss": "1161662", "geom_point": "0101000020E6100000F85A016C9DA75EC0EADC8B9AF59B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.618681109999955, 49.219407198000106 ], [ -122.618703305999958, 49.219046603000024 ], [ -122.617796498999965, 49.219055112000028 ], [ -122.616312685999972, 49.219314896000093 ], [ -122.615906313999957, 49.218901110000047 ], [ -122.615358988999958, 49.218555108000082 ], [ -122.613483886999944, 49.217630203000041 ], [ -122.61327074499998, 49.217573109000064 ], [ -122.612675887999956, 49.217413795000034 ], [ -122.612692489, 49.216942096000018 ], [ -122.614208818999913, 49.216950992000136 ], [ -122.616668981999936, 49.216969697000131 ], [ -122.617947779999923, 49.216978301000026 ], [ -122.620822416999985, 49.217017994000052 ], [ -122.621087249999945, 49.217020529000138 ], [ -122.622845900999934, 49.217037302000101 ], [ -122.622840408999963, 49.21777330200004 ], [ -122.622801908999946, 49.219094899000048 ], [ -122.622764442999966, 49.220152329000044 ], [ -122.622749808, 49.220566505000086 ], [ -122.619956522999971, 49.220558309000054 ], [ -122.618551611000029, 49.220562892000032 ], [ -122.618619105999969, 49.219598991000069 ], [ -122.618681109999955, 49.219407198000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106858834", "BldgCostT": "71253334", "sL_LossRatio": "0.733463307899461", "sL_AssetLoss": "1425920", "sL_BldgLoss": "1045860", "sL_StrLoss": "456670", "sL_NStrLoss": "589190", "sL_ContLoss": "380060", "geom_point": "0101000020E61000004FB051399AA75EC0B13296C0989B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.617298715999965, 49.214299793000031 ], [ -122.622911207999948, 49.214007200000033 ], [ -122.622865806999982, 49.215386305000024 ], [ -122.622858491999963, 49.216203315000079 ], [ -122.622847153999956, 49.216954305000066 ], [ -122.622845900999934, 49.217037302000101 ], [ -122.621087249999945, 49.217020529000138 ], [ -122.620822416999985, 49.217017994000052 ], [ -122.617947779999923, 49.216978301000026 ], [ -122.616668981999936, 49.216969697000131 ], [ -122.614208818999913, 49.216950992000136 ], [ -122.614233685, 49.216874372000099 ], [ -122.614352192999917, 49.216509512000094 ], [ -122.614545804000016, 49.216095707000179 ], [ -122.614587009999951, 49.215925798000065 ], [ -122.61460869499993, 49.214253113000069 ], [ -122.616729981999924, 49.214286401000038 ], [ -122.617298715999965, 49.214299793000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173782477", "BldgCostT": "113334856", "sL_LossRatio": "0.660688988878697", "sL_AssetLoss": "7369640", "sL_BldgLoss": "4869040", "sL_StrLoss": "2000440", "sL_NStrLoss": "2868600", "sL_ContLoss": "2500600", "geom_point": "0101000020E6100000839E831DF5AD5EC04FDF42895C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.71272632299997, 49.16768942500012 ], [ -122.712716866999969, 49.166502109000135 ], [ -122.71271119, 49.165790007000055 ], [ -122.71272726799999, 49.164819654000041 ], [ -122.712738691999931, 49.164127073000046 ], [ -122.712760150999912, 49.162828637000111 ], [ -122.712732837999923, 49.161833799000114 ], [ -122.712656994, 49.159072160000044 ], [ -122.712554752999935, 49.155349885000092 ], [ -122.712530794000017, 49.154477407000016 ], [ -122.71245331599999, 49.154429103000084 ], [ -122.712243222999945, 49.154374533000052 ], [ -122.71245241099993, 49.153316994000136 ], [ -122.712441893999966, 49.152408969000071 ], [ -122.712909272999966, 49.152423246000104 ], [ -122.712995442999926, 49.151204183000054 ], [ -122.713254774999953, 49.151212104000116 ], [ -122.713342591999961, 49.149969572000096 ], [ -122.712413308999913, 49.149941186000063 ], [ -122.71238969299999, 49.147902105000064 ], [ -122.71241340399996, 49.143787797000051 ], [ -122.712421167999977, 49.142438496000103 ], [ -122.712431996999968, 49.140556494000116 ], [ -122.712434695999917, 49.140306648000092 ], [ -122.712437935999958, 49.140009778000014 ], [ -122.712441407, 49.139685955000118 ], [ -122.712461663999989, 49.137814891000048 ], [ -122.712462538999915, 49.137733933000092 ], [ -122.712470885999934, 49.1369612760001 ], [ -122.712495400999956, 49.135121009000031 ], [ -122.712509498999921, 49.133311897000041 ], [ -122.718117154999945, 49.133305632000059 ], [ -122.723650587999941, 49.13330129700006 ], [ -122.725165171999933, 49.133503892000107 ], [ -122.725933173999977, 49.134025933000053 ], [ -122.726190241999987, 49.134198347000087 ], [ -122.727087307999938, 49.134799964000123 ], [ -122.72785332699999, 49.135208962000043 ], [ -122.728525951999956, 49.135505748000114 ], [ -122.728472804999981, 49.136261479000012 ], [ -122.725516809999959, 49.136171542000056 ], [ -122.725493896999964, 49.136497049000113 ], [ -122.72328629899999, 49.136429830000083 ], [ -122.723168591999936, 49.138100801000057 ], [ -122.722708396999934, 49.138086783000084 ], [ -122.722679394999886, 49.138498412000111 ], [ -122.72018414899992, 49.138422369000097 ], [ -122.720142321999944, 49.139015572000069 ], [ -122.720113792999925, 49.139014702000047 ], [ -122.720109799999975, 49.13972397599999 ], [ -122.71928719, 49.139721979000036 ], [ -122.719284142, 49.140261696000067 ], [ -122.718461523999963, 49.140259693000104 ], [ -122.718456937999946, 49.141069269000084 ], [ -122.718045619999927, 49.141068265000094 ], [ -122.71804255899994, 49.141607982000032 ], [ -122.717631238999928, 49.141606977000045 ], [ -122.717623573999958, 49.142956270000063 ], [ -122.715623694, 49.142951362000126 ], [ -122.715581792, 49.143544769000094 ], [ -122.715568384, 49.143544360000071 ], [ -122.71536482199997, 49.146426835000057 ], [ -122.715443372999957, 49.146429232000067 ], [ -122.715388230999949, 49.147210004000073 ], [ -122.719500112999953, 49.147335441000145 ], [ -122.719573351999912, 49.1462971280001 ], [ -122.722313781999958, 49.146380640000054 ], [ -122.725044221999937, 49.146463778000125 ], [ -122.724936789, 49.14798937900013 ], [ -122.724790927999919, 49.150060527000072 ], [ -122.720993937999964, 49.149944896000129 ], [ -122.720894644999973, 49.151353065000087 ], [ -122.726333585999953, 49.151518657000096 ], [ -122.726080363999969, 49.155115382000083 ], [ -122.724903661999988, 49.155079580000091 ], [ -122.72485735, 49.155737109000043 ], [ -122.720981733999949, 49.155619100000123 ], [ -122.720971592999945, 49.155762904000085 ], [ -122.715818578999986, 49.155605782000052 ], [ -122.715644906999927, 49.158064526000018 ], [ -122.715543772999936, 49.15806144000004 ], [ -122.715421046999964, 49.159798715000058 ], [ -122.71591067899999, 49.159813656000075 ], [ -122.715857113999988, 49.160571969000024 ], [ -122.718287442999966, 49.160646095000089 ], [ -122.718253366999974, 49.161128854000033 ], [ -122.719500214999925, 49.161166862000044 ], [ -122.719562467999964, 49.160284568000115 ], [ -122.725034983999961, 49.160451215000123 ], [ -122.725034418999925, 49.160459236000065 ], [ -122.725690560999979, 49.160479198000161 ], [ -122.725535340999912, 49.162683097000077 ], [ -122.724028012999938, 49.162700364000024 ], [ -122.723997831999924, 49.164892261000055 ], [ -122.72324332, 49.164869296000091 ], [ -122.72324219799998, 49.164885223000049 ], [ -122.717769168999951, 49.164718485000044 ], [ -122.717803251999939, 49.164235728000072 ], [ -122.716775499999983, 49.164204387000034 ], [ -122.716624054, 49.166348680000034 ], [ -122.718533588999946, 49.166406903000109 ], [ -122.71848639299999, 49.167075491000034 ], [ -122.722005807999935, 49.167182713000066 ], [ -122.721963790999951, 49.167778546000065 ], [ -122.72204063799991, 49.167780886000081 ], [ -122.722047452999945, 49.167684249000061 ], [ -122.722848336999959, 49.167708632 ], [ -122.722854122999976, 49.167626569000056 ], [ -122.723712147999933, 49.167652685000036 ], [ -122.723712886999962, 49.167642190000073 ], [ -122.723959860999969, 49.167649706000098 ], [ -122.723926895, 49.170043454000094 ], [ -122.723801241999979, 49.170044109000045 ], [ -122.722374327999887, 49.170051619000041 ], [ -122.719767226999949, 49.170065319000031 ], [ -122.718793302, 49.170070415000055 ], [ -122.718222794999988, 49.17007339500006 ], [ -122.716439744999917, 49.17008622700012 ], [ -122.715144016999943, 49.170095519 ], [ -122.714073945999957, 49.170103189000038 ], [ -122.712745624999982, 49.170112698000025 ], [ -122.71272632299997, 49.16768942500012 ] ], [ [ -122.717640438000018, 49.139987826000038 ], [ -122.717644943999971, 49.139194489000054 ], [ -122.715977319999951, 49.139143597000057 ], [ -122.715968839999945, 49.139263715000027 ], [ -122.716171305999964, 49.139269895000076 ], [ -122.71610183699994, 49.140253916000113 ], [ -122.717227594999983, 49.140256678000107 ], [ -122.717229131999943, 49.139986819000057 ], [ -122.717640438000018, 49.139987826000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96120143", "BldgCostT": "59771522", "sL_LossRatio": "0.671082571527964", "sL_AssetLoss": "1753510", "sL_BldgLoss": "1176750", "sL_StrLoss": "530030", "sL_NStrLoss": "646720", "sL_ContLoss": "576760", "geom_point": "0101000020E6100000BB303D27DEAF5EC0FA18DE7216944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.745085934999921, 49.161910484000039 ], [ -122.74508779699994, 49.161548009000079 ], [ -122.742385075999934, 49.161466248000032 ], [ -122.742637071, 49.157869520000112 ], [ -122.742675870999932, 49.157870694000039 ], [ -122.742676814999953, 49.157857219000078 ], [ -122.74181506299999, 49.157855296000029 ], [ -122.741823477999944, 49.156236145000022 ], [ -122.742514779999908, 49.156237689000044 ], [ -122.742585452999961, 49.155228867000062 ], [ -122.74241356099995, 49.155223664000111 ], [ -122.742547352999907, 49.153313845000078 ], [ -122.741255638000013, 49.153274739000011 ], [ -122.741434032999933, 49.150728966000017 ], [ -122.73889271299997, 49.150651983000031 ], [ -122.739073018999989, 49.148080650000097 ], [ -122.742408182999966, 49.148100449000026 ], [ -122.74321718, 49.148105251000118 ], [ -122.745922064999988, 49.148121180000082 ], [ -122.745934424999945, 49.150487090000063 ], [ -122.745936740999966, 49.150936954 ], [ -122.745938489999929, 49.151269714000065 ], [ -122.745939412999931, 49.151449622000072 ], [ -122.745948011999985, 49.153095834000041 ], [ -122.745953729999897, 49.154191935000028 ], [ -122.745954064000017, 49.154256255000092 ], [ -122.745958794999964, 49.155196829000062 ], [ -122.746987927999925, 49.155222516000087 ], [ -122.74784734, 49.155244004000039 ], [ -122.749597646999973, 49.155287860000065 ], [ -122.751328222999973, 49.155339212000115 ], [ -122.755196905999966, 49.155456789000056 ], [ -122.756657760999985, 49.155483727000075 ], [ -122.756637148999943, 49.156486907000073 ], [ -122.75662902599997, 49.156937210000066 ], [ -122.756618008999936, 49.157350493000088 ], [ -122.756620712999947, 49.157647003000086 ], [ -122.75661836099999, 49.158143415999987 ], [ -122.756618325999966, 49.158147120000145 ], [ -122.756616671999964, 49.158490309000108 ], [ -122.756621488999926, 49.15916806500006 ], [ -122.756626318999949, 49.15996386000009 ], [ -122.756627328999983, 49.160225003000072 ], [ -122.756628812999978, 49.16059385200009 ], [ -122.756630610999977, 49.161042615000042 ], [ -122.75663171399998, 49.161943102000087 ], [ -122.756631905999939, 49.162114012000046 ], [ -122.756632058999912, 49.162230956000101 ], [ -122.756632801999956, 49.162838509000061 ], [ -122.750251899999981, 49.162795635000037 ], [ -122.748713683999966, 49.162930292000048 ], [ -122.745825080999978, 49.162886260000079 ], [ -122.744670032999949, 49.162767992000106 ], [ -122.744674445999934, 49.16190957400007 ], [ -122.745085934999921, 49.161910484000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22126834", "BldgCostT": "14763334", "sL_LossRatio": "0.651013585868462", "sL_AssetLoss": "1073910", "sL_BldgLoss": "699130", "sL_StrLoss": "281690", "sL_NStrLoss": "417440", "sL_ContLoss": "374780", "geom_point": "0101000020E6100000EEA38591FFAE5EC0BFE8C0AC2F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.732502402999941, 49.153478707000048 ], [ -122.73252282699994, 49.153188033000042 ], [ -122.730976267999935, 49.153141066000046 ], [ -122.731229098999933, 49.149544319000043 ], [ -122.732380579999941, 49.149579291000066 ], [ -122.732456571999975, 49.148497755000072 ], [ -122.731222864999935, 49.14846028500007 ], [ -122.73125518799999, 49.14800040600003 ], [ -122.731475651999972, 49.144863512000043 ], [ -122.73463957, 49.144959577000094 ], [ -122.73467347899998, 49.148053481 ], [ -122.734895356999957, 49.148055710000037 ], [ -122.735126830999917, 49.148057089000091 ], [ -122.737969106999969, 49.148074074000128 ], [ -122.737831491999955, 49.150035965000036 ], [ -122.738226455999921, 49.150047938000036 ], [ -122.737974162999947, 49.153644698000093 ], [ -122.734890200999956, 49.153551177000061 ], [ -122.734696820999929, 49.153545310000034 ], [ -122.732502402999941, 49.153478707000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9787583", "BldgCostT": "6278333", "sL_LossRatio": "0.650942654115426", "sL_AssetLoss": "381370", "sL_BldgLoss": "248250", "sL_StrLoss": "98450", "sL_NStrLoss": "149800", "sL_ContLoss": "133120", "geom_point": "0101000020E6100000D3C2C0CEE8AE5EC0CF6FB976F9914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.731384385999959, 49.143319303000041 ], [ -122.731577342999955, 49.140573433000043 ], [ -122.731273651999985, 49.140564208000065 ], [ -122.73131087199999, 49.140034556000067 ], [ -122.731526393999971, 49.136967391 ], [ -122.731861921999965, 49.136977584000107 ], [ -122.733688251999951, 49.137783280000065 ], [ -122.734126830999969, 49.137977716000172 ], [ -122.734300215999951, 49.138006414000102 ], [ -122.734564658999915, 49.138124376000121 ], [ -122.734612590999944, 49.142497766000069 ], [ -122.734622672999976, 49.143417631000062 ], [ -122.731384385999959, 49.143319303000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37191917", "BldgCostT": "23911667", "sL_LossRatio": "0.645995273830823", "sL_AssetLoss": "1637690", "sL_BldgLoss": "1057940", "sL_StrLoss": "455810", "sL_NStrLoss": "602130", "sL_ContLoss": "579750", "geom_point": "0101000020E6100000CA1DBAC9FDAE5EC02DF13E9657944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.7323542399999, 49.160413530000014 ], [ -122.732411295, 49.159601716000054 ], [ -122.731226981999939, 49.15956575600017 ], [ -122.731381181999922, 49.157372331000012 ], [ -122.73026528299998, 49.157338437000085 ], [ -122.730518192999966, 49.153741715000152 ], [ -122.734698195999982, 49.153868621000065 ], [ -122.734889896999917, 49.153874437000049 ], [ -122.735989975999956, 49.153907807000024 ], [ -122.735836002999974, 49.15610125000007 ], [ -122.736951877999928, 49.156135087000067 ], [ -122.736764707999967, 49.158802069000068 ], [ -122.737949006999955, 49.158837967000053 ], [ -122.737831796999956, 49.160508525000111 ], [ -122.740943705999925, 49.160602793000109 ], [ -122.740798677999962, 49.162671636000042 ], [ -122.734816189999933, 49.162576318000077 ], [ -122.7288307849999, 49.16264527300013 ], [ -122.728994985999933, 49.160311496000077 ], [ -122.7323542399999, 49.160413530000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109931833", "BldgCostT": "72868333", "sL_LossRatio": "0.7033831701386", "sL_AssetLoss": "2163060", "sL_BldgLoss": "1521460", "sL_StrLoss": "675730", "sL_NStrLoss": "845730", "sL_ContLoss": "641600", "geom_point": "0101000020E61000005B34531072AD5EC010B50AEEC98E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.710228801999932, 49.112315512000087 ], [ -122.70973520299999, 49.112244500000067 ], [ -122.709022094999938, 49.112237988000125 ], [ -122.70869191599999, 49.112282867000069 ], [ -122.708643113000022, 49.112289492000059 ], [ -122.708208489999933, 49.112469904000115 ], [ -122.70786049499999, 49.112549381000086 ], [ -122.707375726999913, 49.112580351000069 ], [ -122.707145009999977, 49.112595096000071 ], [ -122.707138424, 49.111372894000084 ], [ -122.708206205999971, 49.111379487000065 ], [ -122.710300928999942, 49.111399592000048 ], [ -122.711191441999958, 49.111408146 ], [ -122.711890179999926, 49.11141484300002 ], [ -122.71262851099999, 49.111421901000064 ], [ -122.712625869999968, 49.111980494000122 ], [ -122.71262368, 49.112448231000059 ], [ -122.712623272999977, 49.112538200000095 ], [ -122.712621088000034, 49.112996959000057 ], [ -122.712618127999946, 49.113626611000022 ], [ -122.712615597999985, 49.114163787000081 ], [ -122.712606149999971, 49.115053318000051 ], [ -122.712604248, 49.115233228000129 ], [ -122.71258849799996, 49.116719588000116 ], [ -122.712586796999972, 49.117326005000059 ], [ -122.712589158999961, 49.118277238000132 ], [ -122.712590296999949, 49.118730993000021 ], [ -122.710543913999985, 49.118776804000028 ], [ -122.70952956, 49.118799483000025 ], [ -122.707309712000011, 49.118849083000015 ], [ -122.707143393999942, 49.118852791000101 ], [ -122.707147760999987, 49.118308487000121 ], [ -122.707150810999977, 49.117934707000103 ], [ -122.707172076999896, 49.115600392000054 ], [ -122.707167985999902, 49.115088186000122 ], [ -122.70716540699999, 49.114765684000048 ], [ -122.707280432999937, 49.114763816000085 ], [ -122.709621509999963, 49.114725584000041 ], [ -122.710046611999971, 49.114717892000129 ], [ -122.71031159099999, 49.114689899000034 ], [ -122.710570012999966, 49.114618503000017 ], [ -122.710922301999929, 49.114478791000074 ], [ -122.711183702999961, 49.114113696000068 ], [ -122.71120416299999, 49.114000900000057 ], [ -122.711235410999976, 49.113828710000135 ], [ -122.711239617999951, 49.113187188000076 ], [ -122.711179398999974, 49.112973598000082 ], [ -122.710999284999914, 49.112769815000028 ], [ -122.710618310999934, 49.112521215000072 ], [ -122.710228801999932, 49.112315512000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78224833", "BldgCostT": "48793333", "sL_LossRatio": "0.689294364830624", "sL_AssetLoss": "1432610", "sL_BldgLoss": "987490", "sL_StrLoss": "440190", "sL_NStrLoss": "547300", "sL_ContLoss": "445120", "geom_point": "0101000020E6100000A50EF27AB0AD5EC0F7ED7FDBEE8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.712606149999971, 49.115053318000051 ], [ -122.712615597999985, 49.114163787000081 ], [ -122.713093413999971, 49.114187408000049 ], [ -122.713368394999961, 49.114308499000103 ], [ -122.71404229699999, 49.114958846 ], [ -122.714834100999965, 49.115723004000102 ], [ -122.715702789999966, 49.116553396000079 ], [ -122.716626696999953, 49.117456707000024 ], [ -122.7163814, 49.117575292000012 ], [ -122.715621495999926, 49.117570197000099 ], [ -122.714338412999965, 49.117564306000112 ], [ -122.714338465999944, 49.118308506000076 ], [ -122.714338506000018, 49.118726797000058 ], [ -122.713903492999989, 49.118727841000108 ], [ -122.712590296999949, 49.118730993000021 ], [ -122.712589158999961, 49.118277238000132 ], [ -122.712586796999972, 49.117326005000059 ], [ -122.71258849799996, 49.116719588000116 ], [ -122.712604248, 49.115233228000129 ], [ -122.712606149999971, 49.115053318000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73280667", "BldgCostT": "46646667", "sL_LossRatio": "0.702190436766221", "sL_AssetLoss": "1135390", "sL_BldgLoss": "797260", "sL_StrLoss": "350320", "sL_NStrLoss": "446940", "sL_ContLoss": "338130", "geom_point": "0101000020E6100000F1A8213F95B05EC010CC8FC7A5924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756569204999977, 49.146631365000111 ], [ -122.756566996999936, 49.145967067000107 ], [ -122.756565457999955, 49.145508299000049 ], [ -122.7565646, 49.145256390000057 ], [ -122.756564174999966, 49.145131901000113 ], [ -122.756564410999957, 49.145076682000095 ], [ -122.756565607999946, 49.144788835000057 ], [ -122.756566775999929, 49.144504806000057 ], [ -122.757840925999957, 49.144511601000012 ], [ -122.758592594999953, 49.144513227000068 ], [ -122.760387012999971, 49.144517103000084 ], [ -122.761893914, 49.14452820200011 ], [ -122.761901147999964, 49.14496182300006 ], [ -122.761908514999902, 49.145400890000069 ], [ -122.76192221, 49.14624773300006 ], [ -122.761929187999982, 49.14667839300008 ], [ -122.761808131999913, 49.146645903000049 ], [ -122.759925196999944, 49.146661398000106 ], [ -122.758401886999977, 49.14664880100004 ], [ -122.758376511999927, 49.146856198000137 ], [ -122.758205288999974, 49.147109711000013 ], [ -122.757911293999967, 49.147395502000045 ], [ -122.757469595999964, 49.147183890000115 ], [ -122.757160313999947, 49.147118674000104 ], [ -122.756668177999956, 49.147079565000084 ], [ -122.756569204999977, 49.146631365000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78503667", "BldgCostT": "52436667", "sL_LossRatio": "0.705268955847928", "sL_AssetLoss": "1597660", "sL_BldgLoss": "1126780", "sL_StrLoss": "485780", "sL_NStrLoss": "641000", "sL_ContLoss": "470880", "geom_point": "0101000020E610000063E33DDED6B05EC080334AFA28934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756247901999927, 49.148351512000069 ], [ -122.756431854999917, 49.148011374000092 ], [ -122.756477193999956, 49.147911819000036 ], [ -122.756642730999957, 49.147562678000064 ], [ -122.756661238999982, 49.147471077000048 ], [ -122.756692920999981, 49.147314573000074 ], [ -122.756668177999956, 49.147079565000084 ], [ -122.757160313999947, 49.147118674000104 ], [ -122.757469595999964, 49.147183890000115 ], [ -122.757911293999967, 49.147395502000045 ], [ -122.758964405999933, 49.147958802000105 ], [ -122.759286203999963, 49.148082117000044 ], [ -122.759308464999904, 49.14808687700004 ], [ -122.759421834999955, 49.148111191000048 ], [ -122.759730512999951, 49.148177396000115 ], [ -122.760173688999942, 49.148209701000013 ], [ -122.761941597999936, 49.14821339400001 ], [ -122.763401524999949, 49.148211745000062 ], [ -122.763531689999979, 49.148211607000121 ], [ -122.763661913999968, 49.148212258000086 ], [ -122.76412817, 49.148214636000041 ], [ -122.764827474999919, 49.1482181820001 ], [ -122.765045815999926, 49.148219302000065 ], [ -122.76530749599999, 49.148220147000167 ], [ -122.76635861699998, 49.148223597000069 ], [ -122.767688165999957, 49.148223033000143 ], [ -122.767748189999978, 49.150909162000026 ], [ -122.76776642599998, 49.151829722000116 ], [ -122.767763912999925, 49.152555002000021 ], [ -122.767762613999977, 49.152929838 ], [ -122.767762335000015, 49.153032550000027 ], [ -122.767066644999929, 49.152764900000079 ], [ -122.766330133999986, 49.152481533000113 ], [ -122.765618354000011, 49.15220768000011 ], [ -122.764795063999941, 49.151890904000076 ], [ -122.763996525999971, 49.151583664000036 ], [ -122.763552905999958, 49.151412948 ], [ -122.762556316999962, 49.151019821000034 ], [ -122.762045606999976, 49.150814344000025 ], [ -122.76162218199994, 49.150634888000091 ], [ -122.760991758999964, 49.150368024000052 ], [ -122.756588774999926, 49.149022934000058 ], [ -122.756295809999983, 49.148933401000114 ], [ -122.756118117, 49.148834534000095 ], [ -122.756169053999898, 49.148497257000074 ], [ -122.756247901999927, 49.148351512000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197290935", "BldgCostT": "128492881", "sL_LossRatio": "0.70992647994098", "sL_AssetLoss": "3144720", "sL_BldgLoss": "2232520", "sL_StrLoss": "978260", "sL_NStrLoss": "1254260", "sL_ContLoss": "912200", "geom_point": "0101000020E6100000C271D71AE3B05EC094023529C3924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.759925196999944, 49.146661398000106 ], [ -122.761808131999913, 49.146645903000049 ], [ -122.761929187999982, 49.14667839300008 ], [ -122.76192221, 49.14624773300006 ], [ -122.761908514999902, 49.145400890000069 ], [ -122.761901147999964, 49.14496182300006 ], [ -122.761893914, 49.14452820200011 ], [ -122.76417839199999, 49.144532093000031 ], [ -122.767635797999958, 49.144538710000091 ], [ -122.767653974, 49.145401595000081 ], [ -122.76766416699995, 49.146241465000067 ], [ -122.767688165999957, 49.148223033000143 ], [ -122.76635861699998, 49.148223597000069 ], [ -122.76530749599999, 49.148220147000167 ], [ -122.765045815999926, 49.148219302000065 ], [ -122.764827474999919, 49.1482181820001 ], [ -122.76412817, 49.148214636000041 ], [ -122.763661913999968, 49.148212258000086 ], [ -122.763531689999979, 49.148211607000121 ], [ -122.763401524999949, 49.148211745000062 ], [ -122.761941597999936, 49.14821339400001 ], [ -122.760173688999942, 49.148209701000013 ], [ -122.759730512999951, 49.148177396000115 ], [ -122.759421834999955, 49.148111191000048 ], [ -122.759308464999904, 49.14808687700004 ], [ -122.759286203999963, 49.148082117000044 ], [ -122.758964405999933, 49.147958802000105 ], [ -122.757911293999967, 49.147395502000045 ], [ -122.758205288999974, 49.147109711000013 ], [ -122.758376511999927, 49.146856198000137 ], [ -122.758401886999977, 49.14664880100004 ], [ -122.759925196999944, 49.146661398000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69852000", "BldgCostT": "47910000", "sL_LossRatio": "0.737827004719778", "sL_AssetLoss": "1264890", "sL_BldgLoss": "933270", "sL_StrLoss": "408760", "sL_NStrLoss": "524510", "sL_ContLoss": "331620", "geom_point": "0101000020E6100000E3FC45B73BB15EC06823F85B92924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.770168997999917, 49.142539484000068 ], [ -122.770497310999986, 49.142509688000118 ], [ -122.770827814999976, 49.14252599200011 ], [ -122.771091511999927, 49.142577100000047 ], [ -122.771355901999982, 49.142677006000035 ], [ -122.771625981999961, 49.142872496000031 ], [ -122.771717208, 49.142960887000108 ], [ -122.77180688499999, 49.14313030800011 ], [ -122.771794906, 49.144547295000024 ], [ -122.771794414999988, 49.14454729100003 ], [ -122.771632224999934, 49.14454694300013 ], [ -122.769887317999988, 49.144543187000139 ], [ -122.769904784999952, 49.145357410000081 ], [ -122.769969693999911, 49.145962210000057 ], [ -122.769973880999956, 49.14625520200012 ], [ -122.769979683999921, 49.146666296000035 ], [ -122.769907608999929, 49.147388610000043 ], [ -122.769814752999963, 49.148232805000106 ], [ -122.767688165999957, 49.148223033000143 ], [ -122.76766416699995, 49.146241465000067 ], [ -122.767653974, 49.145401595000081 ], [ -122.767635797999958, 49.144538710000091 ], [ -122.767625466999974, 49.143947343 ], [ -122.767609577999977, 49.143042104000081 ], [ -122.76835050499993, 49.143030999000068 ], [ -122.768734205999976, 49.142972200000052 ], [ -122.769115691999929, 49.142866608000062 ], [ -122.769602219999953, 49.142697096000056 ], [ -122.76982780699997, 49.142618505000101 ], [ -122.770168997999917, 49.142539484000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25338833", "BldgCostT": "17003333", "sL_LossRatio": "0.700820482404112", "sL_AssetLoss": "606960", "sL_BldgLoss": "425370", "sL_StrLoss": "180770", "sL_NStrLoss": "244600", "sL_ContLoss": "181590", "geom_point": "0101000020E610000019BC1A6689B15EC0D1555F02DC914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.769895440999932, 49.140988331000095 ], [ -122.769900644999964, 49.140913383000068 ], [ -122.769872855999964, 49.140913328000082 ], [ -122.769876604999965, 49.140103749000083 ], [ -122.769956856999954, 49.140103908000114 ], [ -122.769986685999967, 49.139674330000041 ], [ -122.771693151999955, 49.139725548000072 ], [ -122.771704110000016, 49.139567652000025 ], [ -122.77111301799998, 49.13956648200007 ], [ -122.771114261999969, 49.139296622000053 ], [ -122.770702958999962, 49.139295806000085 ], [ -122.770704202999951, 49.139025946000096 ], [ -122.769881603, 49.139024310000075 ], [ -122.769880352999948, 49.139294169000081 ], [ -122.76905774600003, 49.139292527000123 ], [ -122.769055238999954, 49.139832247000079 ], [ -122.767821316, 49.13982977200007 ], [ -122.767828879999954, 49.13821061400013 ], [ -122.770707938, 49.138216367000091 ], [ -122.770706692999923, 49.138486226000111 ], [ -122.773585768999951, 49.138491908000098 ], [ -122.773584538999927, 49.138761768000059 ], [ -122.774818434999972, 49.138764181000091 ], [ -122.77481599, 49.139303901000105 ], [ -122.775227293999976, 49.139304702000089 ], [ -122.775226371999935, 49.13950836099999 ], [ -122.776444329999933, 49.139544861000083 ], [ -122.776507681999973, 49.138630685000102 ], [ -122.776857976, 49.138641180000036 ], [ -122.77694573399999, 49.137374592000093 ], [ -122.7789221419999, 49.137433785000013 ], [ -122.778873483, 49.139762001000101 ], [ -122.778873751999981, 49.139904209000129 ], [ -122.778874066999904, 49.140092973000037 ], [ -122.778875538999927, 49.140900140000021 ], [ -122.776626395999955, 49.140914650000113 ], [ -122.773233581999932, 49.140936483000139 ], [ -122.769895440999932, 49.140988331000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32692667", "BldgCostT": "22546667", "sL_LossRatio": "0.734598271787908", "sL_AssetLoss": "628858", "sL_BldgLoss": "461958", "sL_StrLoss": "204698", "sL_NStrLoss": "257260", "sL_ContLoss": "166900", "geom_point": "0101000020E610000089605607C4B05EC076BF96994A924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756537453999925, 49.141502061000082 ], [ -122.756531429999924, 49.140884905000043 ], [ -122.756523524999977, 49.140076364000052 ], [ -122.75671470399999, 49.140076767000082 ], [ -122.756713382999976, 49.140346626000074 ], [ -122.757124694999945, 49.140347492000032 ], [ -122.757120638999965, 49.141177413000023 ], [ -122.758848054999987, 49.141229466000041 ], [ -122.758832726999984, 49.141449425000125 ], [ -122.75958714799998, 49.141472150000034 ], [ -122.759587341999975, 49.141432096000067 ], [ -122.760821301999968, 49.141434657000033 ], [ -122.760820942999899, 49.141509302000031 ], [ -122.761643475999932, 49.141534062000098 ], [ -122.761643943999957, 49.141436359000082 ], [ -122.763289225999941, 49.14143974300007 ], [ -122.763290510999951, 49.141169883000082 ], [ -122.766169739999953, 49.141175751000063 ], [ -122.766167200999945, 49.141715469000104 ], [ -122.767761296999964, 49.141718689000051 ], [ -122.767609577999977, 49.143042104000081 ], [ -122.767625466999974, 49.143947343 ], [ -122.767635797999958, 49.144538710000091 ], [ -122.76417839199999, 49.144532093000031 ], [ -122.761893914, 49.14452820200011 ], [ -122.760387012999971, 49.144517103000084 ], [ -122.758592594999953, 49.144513227000068 ], [ -122.757840925999957, 49.144511601000012 ], [ -122.756566775999929, 49.144504806000057 ], [ -122.75655630199995, 49.143430436000109 ], [ -122.756546369999938, 49.1424140170001 ], [ -122.756537453999925, 49.141502061000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "0.704130538177295", "sL_AssetLoss": "273330", "sL_BldgLoss": "192460", "sL_StrLoss": "79160", "sL_NStrLoss": "113300", "sL_ContLoss": "80870", "geom_point": "0101000020E6100000DDF5CAA378B05EC06A62AA2E9A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756480488999927, 49.135673627000138 ], [ -122.758389332999968, 49.135731164000049 ], [ -122.758138674999927, 49.139328050000117 ], [ -122.757129825000021, 49.139297646000045 ], [ -122.757128650999945, 49.139537914000073 ], [ -122.756717345999945, 49.139537047000076 ], [ -122.756716024999932, 49.139806908000047 ], [ -122.756520886999965, 49.139806496000062 ], [ -122.756480488999927, 49.135673627000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206790416", "BldgCostT": "137246666", "sL_LossRatio": "0.71212194581149", "sL_AssetLoss": "3923710", "sL_BldgLoss": "2794160", "sL_StrLoss": "1224300", "sL_NStrLoss": "1569860", "sL_ContLoss": "1129550", "geom_point": "0101000020E6100000EFCB04898EB15EC03EB843DC7F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.769887317999988, 49.144543187000139 ], [ -122.771632224999934, 49.14454694300013 ], [ -122.771794414999988, 49.14454729100003 ], [ -122.771794906, 49.144547295000024 ], [ -122.77180688499999, 49.14313030800011 ], [ -122.771717208, 49.142960887000108 ], [ -122.771625981999961, 49.142872496000031 ], [ -122.771355901999982, 49.142677006000035 ], [ -122.771091511999927, 49.142577100000047 ], [ -122.770827814999976, 49.14252599200011 ], [ -122.770497310999986, 49.142509688000118 ], [ -122.770168997999917, 49.142539484000068 ], [ -122.76982780699997, 49.142618505000101 ], [ -122.769602219999953, 49.142697096000056 ], [ -122.769115691999929, 49.142866608000062 ], [ -122.768734205999976, 49.142972200000052 ], [ -122.76835050499993, 49.143030999000068 ], [ -122.767609577999977, 49.143042104000081 ], [ -122.767761296999964, 49.141718689000051 ], [ -122.767845898999937, 49.141718858000083 ], [ -122.767864171999975, 49.141455884000059 ], [ -122.769858813000027, 49.141515786000063 ], [ -122.769895440999932, 49.140988331000095 ], [ -122.773233581999932, 49.140936483000139 ], [ -122.776626395999955, 49.140914650000113 ], [ -122.778875538999927, 49.140900140000021 ], [ -122.77887305199998, 49.141529922000082 ], [ -122.778866537999974, 49.142415503000031 ], [ -122.778863775999923, 49.14302535400013 ], [ -122.778862617999948, 49.143277396000023 ], [ -122.778859626999989, 49.14393407500004 ], [ -122.778859510999965, 49.143961558000036 ], [ -122.77885883299993, 49.144132033000048 ], [ -122.778857994999953, 49.144360040000095 ], [ -122.778855979999932, 49.144896638000041 ], [ -122.778855801999967, 49.144945395000065 ], [ -122.778854757999937, 49.145121580000108 ], [ -122.778847752999951, 49.146317943000028 ], [ -122.778846890999944, 49.146461883000072 ], [ -122.778841085999971, 49.147452706000109 ], [ -122.778842202999968, 49.147927931000012 ], [ -122.778843020999929, 49.14825656400005 ], [ -122.775924400999912, 49.148243012000101 ], [ -122.775115708999962, 49.148243986000125 ], [ -122.773149449999949, 49.14823465700011 ], [ -122.772022922999895, 49.148232404000076 ], [ -122.772005113999953, 49.14823185900007 ], [ -122.771220374999956, 49.148232555000043 ], [ -122.769814752999963, 49.148232805000106 ], [ -122.769907608999929, 49.147388610000043 ], [ -122.769979683999921, 49.146666296000035 ], [ -122.769973880999956, 49.14625520200012 ], [ -122.769969693999911, 49.145962210000057 ], [ -122.769904784999952, 49.145357410000081 ], [ -122.769887317999988, 49.144543187000139 ] ], [ [ -122.774385922999954, 49.143436607000083 ], [ -122.774386040999985, 49.143410698000011 ], [ -122.774224420999957, 49.143405852000122 ], [ -122.774222626999943, 49.143431712000037 ], [ -122.774385922999954, 49.143436607000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180988502", "BldgCostT": "114330002", "sL_LossRatio": "0.659254820846193", "sL_AssetLoss": "3654960", "sL_BldgLoss": "2409550", "sL_StrLoss": "1068290", "sL_NStrLoss": "1341260", "sL_ContLoss": "1245410", "geom_point": "0101000020E61000007F0C67C8C2B25EC04F7EBD8857914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778841085999971, 49.147452706000109 ], [ -122.778846890999944, 49.146461883000072 ], [ -122.778847752999951, 49.146317943000028 ], [ -122.778854757999937, 49.145121580000108 ], [ -122.778855801999967, 49.144945395000065 ], [ -122.778855979999932, 49.144896638000041 ], [ -122.778857994999953, 49.144360040000095 ], [ -122.77885883299993, 49.144132033000048 ], [ -122.778859510999965, 49.143961558000036 ], [ -122.778859626999989, 49.14393407500004 ], [ -122.778862617999948, 49.143277396000023 ], [ -122.778863775999923, 49.14302535400013 ], [ -122.778866537999974, 49.142415503000031 ], [ -122.77887305199998, 49.141529922000082 ], [ -122.778875538999927, 49.140900140000021 ], [ -122.778874066999904, 49.140092973000037 ], [ -122.778873751999981, 49.139904209000129 ], [ -122.778873483, 49.139762001000101 ], [ -122.7789221419999, 49.137433785000013 ], [ -122.782415758999946, 49.137538330000019 ], [ -122.782393509999949, 49.137859987000105 ], [ -122.783701433999966, 49.137899096000076 ], [ -122.783651728999985, 49.138617979000045 ], [ -122.78436435499998, 49.138639281000039 ], [ -122.784363064, 49.138657953000049 ], [ -122.785785005999941, 49.138700444000065 ], [ -122.785760516999972, 49.139054865000034 ], [ -122.787156249999967, 49.139057445000041 ], [ -122.787150470999975, 49.140406746000068 ], [ -122.785916533999966, 49.140404464 ], [ -122.785915369999927, 49.140674324000052 ], [ -122.78564864499999, 49.140673830000026 ], [ -122.78553645, 49.142297378000102 ], [ -122.782649195, 49.142211080000045 ], [ -122.782607259999963, 49.142817347000047 ], [ -122.781078, 49.142771607000022 ], [ -122.780941512, 49.144743752000132 ], [ -122.781052952999943, 49.144747085000049 ], [ -122.781032139999937, 49.145047799000039 ], [ -122.781101868999954, 49.145049885000041 ], [ -122.781082402, 49.145331150000054 ], [ -122.781090286999984, 49.145331386000102 ], [ -122.781053868999948, 49.145857593000102 ], [ -122.781087118999935, 49.145858587000085 ], [ -122.781040544999911, 49.146531525000078 ], [ -122.782835237999919, 49.146585198000011 ], [ -122.782841785999977, 49.146490562000032 ], [ -122.783010727999951, 49.14649561300007 ], [ -122.783011425999945, 49.146336006000062 ], [ -122.78465687299996, 49.146339086000097 ], [ -122.784658040999915, 49.146069227000083 ], [ -122.785229860999905, 49.146070292000061 ], [ -122.78523852, 49.145945018000091 ], [ -122.786285657999883, 49.145976297000111 ], [ -122.786287374999958, 49.145951444000033 ], [ -122.786303998, 49.14595194000001 ], [ -122.78630464, 49.145802424000053 ], [ -122.787127354999939, 49.145803943000075 ], [ -122.787130823, 49.144994364000119 ], [ -122.787542173999924, 49.144995121000086 ], [ -122.787544479999951, 49.144455402000098 ], [ -122.787955826999948, 49.144456158000025 ], [ -122.787956978999901, 49.144186298000122 ], [ -122.788779665999982, 49.144187806000069 ], [ -122.788785400999956, 49.142838507000072 ], [ -122.788374066999936, 49.142837753000059 ], [ -122.788375119999941, 49.142590792000085 ], [ -122.787655205999954, 49.142569300000019 ], [ -122.787903601999972, 49.138972363000072 ], [ -122.79098938099996, 49.139064448000127 ], [ -122.791269264999954, 49.139064953000066 ], [ -122.791269233, 49.139072795000075 ], [ -122.793373851999917, 49.139135544000027 ], [ -122.793341254999973, 49.139608406000093 ], [ -122.793734834999952, 49.13960910900007 ], [ -122.793730355999983, 49.140688550000064 ], [ -122.794552984999896, 49.140690016000079 ], [ -122.794549639999985, 49.141499596000052 ], [ -122.795783605999972, 49.141501785000052 ], [ -122.795782495999958, 49.141771645000055 ], [ -122.796605144999887, 49.141773097000105 ], [ -122.796604040999966, 49.142042958000062 ], [ -122.797015365999982, 49.142043682000093 ], [ -122.797012059999986, 49.142853262000116 ], [ -122.796600728, 49.142852538000092 ], [ -122.796597414999951, 49.143662118000051 ], [ -122.797831433999988, 49.143664285000092 ], [ -122.797832531999987, 49.143394424000057 ], [ -122.798243868999919, 49.143395144000088 ], [ -122.798246061000015, 49.142855425000072 ], [ -122.797834725999977, 49.142854705000076 ], [ -122.797838018999968, 49.142045125000017 ], [ -122.798249345999963, 49.142045844000094 ], [ -122.798250442999972, 49.141775984000041 ], [ -122.798661765999896, 49.141776701 ], [ -122.79867379199996, 49.138808240000074 ], [ -122.800730288999915, 49.138811807000067 ], [ -122.800731371999944, 49.138541946000089 ], [ -122.799497478999953, 49.138539810000047 ], [ -122.799502339999961, 49.137334803000051 ], [ -122.797569198999923, 49.137277277000116 ], [ -122.79768685099998, 49.135568167000031 ], [ -122.796219267999902, 49.135565587000087 ], [ -122.796220513999955, 49.135261395000029 ], [ -122.793611979999966, 49.1351836770001 ], [ -122.793859874999924, 49.131586686000119 ], [ -122.796600121000012, 49.131668325000049 ], [ -122.796610468999944, 49.131518052000047 ], [ -122.796803736999934, 49.131523808000111 ], [ -122.796855100999935, 49.130777756000086 ], [ -122.797236187999943, 49.130789103000055 ], [ -122.797278015999922, 49.130181465000099 ], [ -122.79740723499998, 49.130185313000034 ], [ -122.797462816999925, 49.129377796000057 ], [ -122.792645809999968, 49.12923426800009 ], [ -122.792737195999933, 49.127908547000089 ], [ -122.792019869999933, 49.12788715500006 ], [ -122.792118948999985, 49.126450039000098 ], [ -122.791961955, 49.126445357000065 ], [ -122.791969913999964, 49.126329931000029 ], [ -122.792082437999966, 49.124697745000056 ], [ -122.792002564999962, 49.12469536300005 ], [ -122.792010498999929, 49.1245802810001 ], [ -122.790574022, 49.124537425000071 ], [ -122.790822094999896, 49.120940381000068 ], [ -122.792097089999942, 49.120978421000139 ], [ -122.792139173999914, 49.120367911000088 ], [ -122.793233258999976, 49.12040054200002 ], [ -122.793236223999912, 49.120357503000101 ], [ -122.791665920999947, 49.12031066600008 ], [ -122.791760973999914, 49.118931867000114 ], [ -122.796665421999947, 49.118984577000063 ], [ -122.798065779999916, 49.118999581000068 ], [ -122.798240704999927, 49.119045350000114 ], [ -122.800958624999978, 49.11910100500009 ], [ -122.80095793299995, 49.119255221000053 ], [ -122.800952905999949, 49.120370149000088 ], [ -122.800942964999962, 49.122577015000019 ], [ -122.800957714999981, 49.123518209000068 ], [ -122.800995113999946, 49.126361399000082 ], [ -122.801007022999926, 49.129571349000038 ], [ -122.801012192999934, 49.130975542000044 ], [ -122.801022485999937, 49.132773533000034 ], [ -122.801027575999967, 49.133661245000077 ], [ -122.801044545999943, 49.141054241000049 ], [ -122.801044601999976, 49.141065968000085 ], [ -122.80107475299998, 49.142778344000121 ], [ -122.801075695999941, 49.14283241900003 ], [ -122.801077260999961, 49.142922246000083 ], [ -122.801081243999988, 49.143146236000128 ], [ -122.801081391999929, 49.14315610000007 ], [ -122.801082329999957, 49.143210061000083 ], [ -122.801088366999977, 49.143551709000086 ], [ -122.801089472999962, 49.143614567000078 ], [ -122.80108995099999, 49.143641559000045 ], [ -122.801108472999957, 49.144694076000079 ], [ -122.801110402999925, 49.144802008000092 ], [ -122.80111229699996, 49.144909952000042 ], [ -122.801131763999962, 49.146016550000049 ], [ -122.801166656999953, 49.147995463000029 ], [ -122.801168105999935, 49.148077773000097 ], [ -122.799715796999976, 49.148289085000073 ], [ -122.798313125999954, 49.148296051000067 ], [ -122.798299549999953, 49.147656805000111 ], [ -122.797891889999931, 49.14720763800004 ], [ -122.797754212, 49.147057578000044 ], [ -122.797388151999954, 49.146661008000109 ], [ -122.796779788999984, 49.146180669000081 ], [ -122.796345212999938, 49.146420923000051 ], [ -122.796223131999938, 49.146413915000096 ], [ -122.796182736999953, 49.146411583000045 ], [ -122.796096755999969, 49.146445963000112 ], [ -122.796067449999953, 49.146533409000071 ], [ -122.796123656999939, 49.146612571000084 ], [ -122.79618663, 49.146632749000048 ], [ -122.796253752999945, 49.14665427900011 ], [ -122.796217433999942, 49.146882964000035 ], [ -122.796284495999984, 49.147003925000035 ], [ -122.796297688, 49.147608022000099 ], [ -122.796420754999957, 49.14787119600004 ], [ -122.796408098, 49.148015005000055 ], [ -122.79641306399995, 49.148280956000072 ], [ -122.795571694, 49.148272845000129 ], [ -122.795187963000018, 49.148269131000113 ], [ -122.792824415999974, 49.148246211000078 ], [ -122.792830792999922, 49.147457899000081 ], [ -122.793435307999943, 49.14746066400005 ], [ -122.794975101999952, 49.147467707000033 ], [ -122.794997508000037, 49.146606108000043 ], [ -122.794988293999907, 49.14608684700007 ], [ -122.794978397999941, 49.14553049200002 ], [ -122.793676546999933, 49.145539852000077 ], [ -122.792835176999944, 49.145545897000133 ], [ -122.790033396999945, 49.145491190000044 ], [ -122.790043880999946, 49.146077789000081 ], [ -122.790061022, 49.147037400000031 ], [ -122.790061749, 49.147075934000078 ], [ -122.79008379299998, 49.148236499000042 ], [ -122.788605165, 49.148239652000051 ], [ -122.78444681399999, 49.148248433000106 ], [ -122.781725356999928, 49.148239168000039 ], [ -122.778843020999929, 49.14825656400005 ], [ -122.778842202999968, 49.147927931000012 ], [ -122.778841085999971, 49.147452706000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.728395061728395", "sL_AssetLoss": "11340", "sL_BldgLoss": "8260", "sL_StrLoss": "3740", "sL_NStrLoss": "4520", "sL_ContLoss": "3080", "geom_point": "0101000020E61000000476F35CF8B25EC0D2F0FB71DA914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795793583999966, 49.139073043000053 ], [ -122.797027489999934, 49.139075220000052 ], [ -122.79702418299992, 49.139884800000075 ], [ -122.795790258999915, 49.139882624000109 ], [ -122.795793583999966, 49.139073043000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76377417", "BldgCostT": "48701667", "sL_LossRatio": "0.758876224037922", "sL_AssetLoss": "513056", "sL_BldgLoss": "389346", "sL_StrLoss": "215540", "sL_NStrLoss": "173806", "sL_ContLoss": "123710", "geom_point": "0101000020E610000083B408BD65B35EC09E759D7894914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801027575999967, 49.133661245000077 ], [ -122.801174145999966, 49.13366200500014 ], [ -122.80543645600001, 49.1337075490001 ], [ -122.805432278999959, 49.134346270000101 ], [ -122.805621696999935, 49.134781799000109 ], [ -122.805693392999956, 49.135054203000038 ], [ -122.805661325999949, 49.135501102 ], [ -122.805563401999976, 49.135729807000097 ], [ -122.805316885, 49.136047693000059 ], [ -122.805102852999951, 49.136212993000115 ], [ -122.805020215999946, 49.136276790000061 ], [ -122.804570536999961, 49.136567927000058 ], [ -122.804373502999979, 49.136695489000118 ], [ -122.804104901999949, 49.136914609000058 ], [ -122.80389220499994, 49.137239012000109 ], [ -122.803955312999946, 49.137516608000119 ], [ -122.804028441999947, 49.137687475000099 ], [ -122.804468917999969, 49.138716803000108 ], [ -122.804618190999975, 49.138937494000068 ], [ -122.804818878999981, 49.139148898000045 ], [ -122.805036093999902, 49.139318396000043 ], [ -122.80530629799992, 49.139534612000055 ], [ -122.805614386999977, 49.139876299000029 ], [ -122.805670383999967, 49.14007890500006 ], [ -122.805684420999953, 49.14041360000008 ], [ -122.805634899999959, 49.141075309000058 ], [ -122.804128907999925, 49.141071155000105 ], [ -122.802590349999903, 49.141066876000068 ], [ -122.802031027999988, 49.141067394000096 ], [ -122.801178732999972, 49.141068145000119 ], [ -122.801044601999976, 49.141065968000085 ], [ -122.801044545999943, 49.141054241000049 ], [ -122.801027575999967, 49.133661245000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160422336", "BldgCostT": "99693336", "sL_LossRatio": "0.742471717917817", "sL_AssetLoss": "1286150", "sL_BldgLoss": "954930", "sL_StrLoss": "524840", "sL_NStrLoss": "430090", "sL_ContLoss": "331220", "geom_point": "0101000020E6100000FFB0E763E5B75EC08999F9E57E8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867759404999958, 49.12075922300005 ], [ -122.867790147, 49.119183244000062 ], [ -122.867869461999987, 49.119184652000023 ], [ -122.869391509999957, 49.119201041000039 ], [ -122.869505561999958, 49.119202375000022 ], [ -122.869925281999912, 49.119207437000078 ], [ -122.870127832999927, 49.119209864000055 ], [ -122.870698756999928, 49.119213861 ], [ -122.873391842999979, 49.119251638000094 ], [ -122.874765459999963, 49.11926085900015 ], [ -122.875108163999968, 49.119263172000075 ], [ -122.875779763999958, 49.119267655000087 ], [ -122.876355432999958, 49.11927151000004 ], [ -122.87903526499997, 49.119289423000083 ], [ -122.879016670999988, 49.120343123000062 ], [ -122.879006709999913, 49.121042989000031 ], [ -122.878988307, 49.122910306000072 ], [ -122.877478410999942, 49.122895289000041 ], [ -122.876388224999957, 49.122898450000115 ], [ -122.875826403999952, 49.122900057000017 ], [ -122.875078008999964, 49.122902203000073 ], [ -122.873198898999959, 49.122877323000083 ], [ -122.871909487999972, 49.122862392000059 ], [ -122.870748378999934, 49.122855606000016 ], [ -122.869684272, 49.122851683000064 ], [ -122.869544523999963, 49.12285212700008 ], [ -122.86872274, 49.122850725000085 ], [ -122.868547388999929, 49.122850057000072 ], [ -122.867832560999972, 49.122847334000078 ], [ -122.867748933999977, 49.122848501000057 ], [ -122.867759404999958, 49.12075922300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271716250", "BldgCostT": "179815000", "sL_LossRatio": "0.731366355461834", "sL_AssetLoss": "3428610", "sL_BldgLoss": "2507570", "sL_StrLoss": "1181760", "sL_NStrLoss": "1325810", "sL_ContLoss": "921040", "geom_point": "0101000020E610000078D1888060B75EC0805030C6B48F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.863764216999954, 49.123659601000078 ], [ -122.863525907999971, 49.123618393000065 ], [ -122.86222999599994, 49.123598605000062 ], [ -122.862225876999943, 49.122886597000019 ], [ -122.863487772, 49.122882894000092 ], [ -122.863518319999969, 49.121597106000088 ], [ -122.862216090999951, 49.121569910000055 ], [ -122.862200802999951, 49.120820687000055 ], [ -122.862235862999981, 49.119142982000028 ], [ -122.863704382999984, 49.119140756000057 ], [ -122.863798414999962, 49.119141732000045 ], [ -122.865742093, 49.119161958000056 ], [ -122.867790147, 49.119183244000062 ], [ -122.867759404999958, 49.12075922300005 ], [ -122.867748933999977, 49.122848501000057 ], [ -122.867740783999977, 49.124902688000077 ], [ -122.86775740899995, 49.126589059000047 ], [ -122.86681445499994, 49.126575131000052 ], [ -122.866523536999949, 49.126569969000066 ], [ -122.865711619999985, 49.126555600000088 ], [ -122.865020590999933, 49.126543598000097 ], [ -122.863622004999925, 49.126520791000083 ], [ -122.862209792999963, 49.126498601000037 ], [ -122.862224994, 49.125337501000054 ], [ -122.863320496000014, 49.125344193000103 ], [ -122.864406522999957, 49.125348903000059 ], [ -122.86445419099999, 49.124336605000089 ], [ -122.86439781699994, 49.124116892000082 ], [ -122.864351239999962, 49.124051583000032 ], [ -122.864302614999943, 49.123983407000061 ], [ -122.864158287999928, 49.123889092000056 ], [ -122.863920298999943, 49.123750526000087 ], [ -122.863764216999954, 49.123659601000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202110000", "BldgCostT": "128895000", "sL_LossRatio": "0.705877273956618", "sL_AssetLoss": "3150236", "sL_BldgLoss": "2223680", "sL_StrLoss": "1054100", "sL_NStrLoss": "1169580", "sL_ContLoss": "926556", "geom_point": "0101000020E610000002E6CE0A54BE5EC0A9E79C86C5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.968573960999962, 49.173944652000095 ], [ -122.967983390999933, 49.172777913000047 ], [ -122.968712877999963, 49.17145838000009 ], [ -122.969722216999941, 49.170884372000074 ], [ -122.970301021999958, 49.170628558000018 ], [ -122.970924906999969, 49.170459659000059 ], [ -122.971307899999942, 49.170368631000088 ], [ -122.971795343999972, 49.170303154000074 ], [ -122.97084489799991, 49.170249485000021 ], [ -122.970552176999988, 49.170232950000049 ], [ -122.970456483999953, 49.170227550000035 ], [ -122.970186312999914, 49.170212262000128 ], [ -122.969380112999914, 49.170166725000072 ], [ -122.968063301999933, 49.170092308000108 ], [ -122.967992247999987, 49.16993189500009 ], [ -122.967956280999942, 49.169850792000062 ], [ -122.96585668499992, 49.169856606000039 ], [ -122.96561538499999, 49.169793905000084 ], [ -122.965082893999977, 49.170116812000074 ], [ -122.964707344999979, 49.170420782000043 ], [ -122.964120195999911, 49.170895992000084 ], [ -122.961973682999925, 49.173738299000064 ], [ -122.961705384999973, 49.174002800000032 ], [ -122.961391305999953, 49.174256097000047 ], [ -122.960365690999978, 49.17484250399999 ], [ -122.960039347999938, 49.174990643000079 ], [ -122.959605335999981, 49.175187711000049 ], [ -122.959468190999957, 49.175250504000097 ], [ -122.958429919999972, 49.175672607000116 ], [ -122.957321613999952, 49.176201602000106 ], [ -122.957272850999928, 49.175964624000059 ], [ -122.958454914999919, 49.175397604000118 ], [ -122.959017929999931, 49.175021157000103 ], [ -122.959121046999911, 49.174952210000058 ], [ -122.95973289299998, 49.174543099000104 ], [ -122.960678504999962, 49.1741299890001 ], [ -122.961282608999952, 49.173742702000062 ], [ -122.96254697699996, 49.172483694000071 ], [ -122.962971315999965, 49.171980905000083 ], [ -122.963247208999974, 49.171459598000105 ], [ -122.964028296999928, 49.170586599000082 ], [ -122.965182388999949, 49.16970501100009 ], [ -122.96574569699996, 49.16937318700014 ], [ -122.967102488999927, 49.1687793030001 ], [ -122.96831060599996, 49.168447387000057 ], [ -122.969435118999954, 49.168105601000036 ], [ -122.970722289999969, 49.167855200000076 ], [ -122.972227178999944, 49.167855571000104 ], [ -122.97222734199994, 49.167562392000015 ], [ -122.973462090999973, 49.167322152000025 ], [ -122.973461950999976, 49.167586001000075 ], [ -122.973873491999939, 49.167586095000118 ], [ -122.973873671999968, 49.167242069000075 ], [ -122.974141778999979, 49.167189901000015 ], [ -122.974538964999923, 49.167046523000074 ], [ -122.975108381999917, 49.167046647000042 ], [ -122.975108485999911, 49.166840928000106 ], [ -122.976035712999987, 49.166506193000075 ], [ -122.977037333999974, 49.166237464000027 ], [ -122.977166436999966, 49.166237489000139 ], [ -122.977166450999931, 49.166202821000056 ], [ -122.978312593999959, 49.165895299000063 ], [ -122.980341780999964, 49.165517802000046 ], [ -122.980891059999962, 49.165456905000035 ], [ -122.980730397999977, 49.165769331000028 ], [ -122.984730593, 49.165053199000042 ], [ -122.980894352999954, 49.167209962000086 ], [ -122.98089125199999, 49.167712801000093 ], [ -122.981800669, 49.169280579 ], [ -122.981776365999977, 49.169428008000082 ], [ -122.981768341999953, 49.169476635000144 ], [ -122.981533975999966, 49.169476598000074 ], [ -122.981529041, 49.169552613000086 ], [ -122.98152142699999, 49.169669868000057 ], [ -122.981512042999967, 49.169814408000072 ], [ -122.980881400999934, 49.169814573000089 ], [ -122.979341791999971, 49.16981498500013 ], [ -122.97932782499997, 49.17047369200003 ], [ -122.979327419999947, 49.170491686000055 ], [ -122.979309915999949, 49.171318707000076 ], [ -122.97930099499996, 49.171750887000051 ], [ -122.979178591999968, 49.172050994000124 ], [ -122.97871000399999, 49.172363088000033 ], [ -122.978386313, 49.172111701000084 ], [ -122.978160377999984, 49.172063897000037 ], [ -122.977350487999942, 49.17207718500007 ], [ -122.975242122999958, 49.172090098000069 ], [ -122.974232585999943, 49.172095098000028 ], [ -122.974208794999925, 49.173683717000088 ], [ -122.974337078999952, 49.17407109500008 ], [ -122.973981803999919, 49.174158395000028 ], [ -122.97140110299992, 49.174157887000085 ], [ -122.971083670999931, 49.174146296000082 ], [ -122.970898942999952, 49.174118548000109 ], [ -122.970810812999957, 49.174105294000071 ], [ -122.970431796999961, 49.17401026400011 ], [ -122.970353381999985, 49.173990592000074 ], [ -122.969536900999984, 49.175409109000078 ], [ -122.968564499999971, 49.177030513000091 ], [ -122.968573960999962, 49.173944652000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73927584", "BldgCostT": "50303334", "sL_LossRatio": "0.734679223254829", "sL_AssetLoss": "1935770", "sL_BldgLoss": "1422170", "sL_StrLoss": "633470", "sL_NStrLoss": "788700", "sL_ContLoss": "513600", "geom_point": "0101000020E61000001670434A7BBE5EC03626067924964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977350487999942, 49.17207718500007 ], [ -122.978160377999984, 49.172063897000037 ], [ -122.978386313, 49.172111701000084 ], [ -122.97871000399999, 49.172363088000033 ], [ -122.978490608999905, 49.172531801000027 ], [ -122.978390205999972, 49.17270549400012 ], [ -122.978227397999902, 49.173205501000098 ], [ -122.978149414999962, 49.173919488000081 ], [ -122.975551595999917, 49.173909694000038 ], [ -122.975181516999967, 49.173907402000047 ], [ -122.97494260699996, 49.173932202000053 ], [ -122.974337078999952, 49.17407109500008 ], [ -122.974208794999925, 49.173683717000088 ], [ -122.974232585999943, 49.172095098000028 ], [ -122.975242122999958, 49.172090098000069 ], [ -122.977350487999942, 49.17207718500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170301789", "BldgCostT": "113590372", "sL_LossRatio": "0.729244668498117", "sL_AssetLoss": "3530900", "sL_BldgLoss": "2574890", "sL_StrLoss": "1163830", "sL_NStrLoss": "1411060", "sL_ContLoss": "956010", "geom_point": "0101000020E61000004F18BDE865BE5EC05F09728A6D964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.974590383999939, 49.176563009000056 ], [ -122.974483587999927, 49.176266300000059 ], [ -122.974041014999969, 49.176262439000055 ], [ -122.972163173999945, 49.176246094000071 ], [ -122.971470390999954, 49.176083294000122 ], [ -122.97145150399993, 49.17559359800002 ], [ -122.971433695999963, 49.175086461000042 ], [ -122.971425476, 49.174851902000093 ], [ -122.97140110299992, 49.174157887000085 ], [ -122.973981803999919, 49.174158395000028 ], [ -122.974337078999952, 49.17407109500008 ], [ -122.97494260699996, 49.173932202000053 ], [ -122.975181516999967, 49.173907402000047 ], [ -122.975551595999917, 49.173909694000038 ], [ -122.978149414999962, 49.173919488000081 ], [ -122.978161997999933, 49.174316293000082 ], [ -122.978081481999965, 49.174584305000039 ], [ -122.978070207999963, 49.176572385000028 ], [ -122.974590383999939, 49.176563009000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160993585", "BldgCostT": "109613335", "sL_LossRatio": "0.756504831732471", "sL_AssetLoss": "2401830", "sL_BldgLoss": "1816996", "sL_StrLoss": "884126", "sL_NStrLoss": "932870", "sL_ContLoss": "584834", "geom_point": "0101000020E610000083BDFD770CBE5EC05FFC8E5DF9964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.957805782999927, 49.188324503000032 ], [ -122.957805982999901, 49.188090713000143 ], [ -122.957497194999945, 49.188090600000073 ], [ -122.957394383999898, 49.18795949900003 ], [ -122.957394501999929, 49.187820702000067 ], [ -122.957379824999961, 49.187820697000085 ], [ -122.957261548999938, 49.186351757000125 ], [ -122.957233510999941, 49.185926611000042 ], [ -122.957234590000013, 49.185238299000083 ], [ -122.957234560999964, 49.185084853000063 ], [ -122.957234540999949, 49.184976917 ], [ -122.957234356999948, 49.184329261000066 ], [ -122.957234195999945, 49.183778769000106 ], [ -122.957858897999941, 49.18366396700003 ], [ -122.958701674999972, 49.183443572000066 ], [ -122.959598386999971, 49.183113974000065 ], [ -122.960133207999959, 49.182842586000014 ], [ -122.96139531099999, 49.182061893000068 ], [ -122.961617309999951, 49.181959176000092 ], [ -122.96189398599995, 49.181880488000019 ], [ -122.96215048599997, 49.181838189000047 ], [ -122.9634135, 49.181819784000062 ], [ -122.96389259599998, 49.18177020700012 ], [ -122.964184208999939, 49.181715394000015 ], [ -122.964198725999921, 49.180940395000036 ], [ -122.964222819, 49.179655107000052 ], [ -122.964300889999947, 49.179425786000081 ], [ -122.964650524999982, 49.178838305000077 ], [ -122.965421484999951, 49.177532011000061 ], [ -122.965685572000012, 49.177015999000034 ], [ -122.968319143999921, 49.177029263000058 ], [ -122.96847015899999, 49.177030021000057 ], [ -122.968564499999971, 49.177030513000091 ], [ -122.969536900999984, 49.175409109000078 ], [ -122.970353381999985, 49.173990592000074 ], [ -122.970431796999961, 49.17401026400011 ], [ -122.970810812999957, 49.174105294000071 ], [ -122.970898942999952, 49.174118548000109 ], [ -122.971083670999931, 49.174146296000082 ], [ -122.97140110299992, 49.174157887000085 ], [ -122.971425476, 49.174851902000093 ], [ -122.971433695999963, 49.175086461000042 ], [ -122.97145150399993, 49.17559359800002 ], [ -122.971470390999954, 49.176083294000122 ], [ -122.972163173999945, 49.176246094000071 ], [ -122.974041014999969, 49.176262439000055 ], [ -122.974483587999927, 49.176266300000059 ], [ -122.974590383999939, 49.176563009000056 ], [ -122.978070207999963, 49.176572385000028 ], [ -122.978081481999965, 49.174584305000039 ], [ -122.978161997999933, 49.174316293000082 ], [ -122.978149414999962, 49.173919488000081 ], [ -122.978227397999902, 49.173205501000098 ], [ -122.978390205999972, 49.17270549400012 ], [ -122.978490608999905, 49.172531801000027 ], [ -122.97871000399999, 49.172363088000033 ], [ -122.979178591999968, 49.172050994000124 ], [ -122.97930099499996, 49.171750887000051 ], [ -122.979309915999949, 49.171318707000076 ], [ -122.979327419999947, 49.170491686000055 ], [ -122.97932782499997, 49.17047369200003 ], [ -122.979341791999971, 49.16981498500013 ], [ -122.980881400999934, 49.169814573000089 ], [ -122.981512042999967, 49.169814408000072 ], [ -122.981478204999988, 49.170335527000098 ], [ -122.980562362999962, 49.170628814000082 ], [ -122.980499040999973, 49.170790445000051 ], [ -122.980514302999921, 49.172012396000106 ], [ -122.980044825999954, 49.171999230000033 ], [ -122.980044430999953, 49.172984536000072 ], [ -122.980526448, 49.172984618000015 ], [ -122.980536561999926, 49.173794200000025 ], [ -122.98045569699994, 49.173794187000077 ], [ -122.980455271999972, 49.174873628000121 ], [ -122.980043670999947, 49.174873557000062 ], [ -122.980043128999938, 49.176222858000116 ], [ -122.980566902999939, 49.176222948000024 ], [ -122.980576666999951, 49.177004573000012 ], [ -122.980551830999957, 49.177097905 ], [ -122.980504958999973, 49.177274121000067 ], [ -122.980457885999982, 49.179341040000011 ], [ -122.980442578999927, 49.179458165000014 ], [ -122.980185590999966, 49.179442295000108 ], [ -122.97955095099995, 49.179313898000018 ], [ -122.979116106999939, 49.179225895000037 ], [ -122.977620310999939, 49.179144702000031 ], [ -122.976399416999953, 49.179369697000077 ], [ -122.974687915999965, 49.17947179400003 ], [ -122.974502964, 49.179482824000026 ], [ -122.974182086999988, 49.179501962000067 ], [ -122.974012397999957, 49.179512093000035 ], [ -122.97396060899996, 49.179519333000044 ], [ -122.973964472999967, 49.179459970000089 ], [ -122.973867242, 49.17945994800008 ], [ -122.973867271999922, 49.179405809000066 ], [ -122.973867383999945, 49.179190088000027 ], [ -122.97345574699996, 49.179189995000044 ], [ -122.973455603000019, 49.1794598540001 ], [ -122.97325128099996, 49.1794598070001 ], [ -122.973249296999981, 49.179490266000116 ], [ -122.97324085299995, 49.179619937000055 ], [ -122.971240581999965, 49.179899500000076 ], [ -122.970677796999922, 49.180033415 ], [ -122.970448113999964, 49.180161179000038 ], [ -122.969950686999979, 49.18043790300004 ], [ -122.969359990999948, 49.180654289000131 ], [ -122.969126602999921, 49.180681386000117 ], [ -122.968811879999976, 49.180573192000139 ], [ -122.968468395999949, 49.180617287000146 ], [ -122.967217696999953, 49.181075889000091 ], [ -122.965982497999974, 49.181867793000038 ], [ -122.964665908999947, 49.182524305000129 ], [ -122.963061114999931, 49.183649833000111 ], [ -122.962752705999932, 49.183866132000077 ], [ -122.962749681000034, 49.183866046000034 ], [ -122.962749679999888, 49.183868255000078 ], [ -122.962662419999958, 49.183929453000061 ], [ -122.96232038299992, 49.18416930700004 ], [ -122.962113839999958, 49.184314170000022 ], [ -122.961925985999983, 49.18431410800013 ], [ -122.961925884999971, 49.184445985000075 ], [ -122.96172922299999, 49.184583902000043 ], [ -122.961514096999935, 49.184583831000133 ], [ -122.961513980999925, 49.184734849000058 ], [ -122.961344597999954, 49.184853635000145 ], [ -122.961102204999975, 49.184853552000085 ], [ -122.961102070999942, 49.18502371200001 ], [ -122.960190692999944, 49.185662822000054 ], [ -122.959866499999947, 49.185662709000042 ], [ -122.959866314999942, 49.185890289000064 ], [ -122.959806048999909, 49.185932548000068 ], [ -122.959454587999971, 49.185932425000018 ], [ -122.959454385999919, 49.186179144000093 ], [ -122.959050592999958, 49.18646228800003 ], [ -122.959036198999939, 49.186650294000096 ], [ -122.959186401999943, 49.18674139800008 ], [ -122.959846118999963, 49.18675 ], [ -122.959858315999924, 49.186742146 ], [ -122.960277326000025, 49.186742291000023 ], [ -122.960277539999979, 49.186472209000044 ], [ -122.96071101, 49.186193100000033 ], [ -122.961317404999974, 49.185933064000075 ], [ -122.962748128999948, 49.185933534000128 ], [ -122.962747615999945, 49.186618470000013 ], [ -122.96333797599999, 49.186635115000051 ], [ -122.962699092999927, 49.186976416000071 ], [ -122.961875610000021, 49.187280464000011 ], [ -122.961858169999971, 49.187286893000099 ], [ -122.961845926, 49.187291416000058 ], [ -122.961846505999972, 49.187282539000066 ], [ -122.96068859799999, 49.187282150000016 ], [ -122.960688250999965, 49.187718852000053 ], [ -122.960558121999952, 49.187766901000053 ], [ -122.959145101, 49.188575802000024 ], [ -122.959074093999988, 49.188630889000116 ], [ -122.957853249999943, 49.188630449000122 ], [ -122.957771594999954, 49.188440499000151 ], [ -122.957677791999984, 49.188320887000089 ], [ -122.957805782999927, 49.188324503000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794168", "BldgCostT": "2616668", "sL_LossRatio": "0.748025477707006", "sL_AssetLoss": "78500", "sL_BldgLoss": "58720", "sL_StrLoss": "27050", "sL_NStrLoss": "31670", "sL_ContLoss": "19780", "geom_point": "0101000020E610000040404A2EB7BD5EC064B72AE4A5974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.96274883199996, 49.184997931000069 ], [ -122.963183238999989, 49.184739178000044 ], [ -122.963442984999958, 49.184584457000021 ], [ -122.963572504999931, 49.184584498000035 ], [ -122.963572560999935, 49.184507273000037 ], [ -122.964348569999956, 49.184045021000053 ], [ -122.965219609999963, 49.184045287000117 ], [ -122.96521942, 49.184315146000067 ], [ -122.965631098999921, 49.184315269000116 ], [ -122.965630688999951, 49.184908575000136 ], [ -122.965005882999947, 49.185396159000064 ], [ -122.965023612999957, 49.185124667000139 ], [ -122.964395480999954, 49.185124474000077 ], [ -122.964395674999963, 49.184854615000063 ], [ -122.963983991999953, 49.184854488000077 ], [ -122.963983598999931, 49.185394207000066 ], [ -122.962748533999928, 49.185393815000076 ], [ -122.96274883199996, 49.184997931000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.817574511819116", "sL_AssetLoss": "38920", "sL_BldgLoss": "31820", "sL_StrLoss": "18400", "sL_NStrLoss": "13420", "sL_ContLoss": "7100", "geom_point": "0101000020E61000005D1015D3DABD5EC0AD5A88C473974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.966320566999912, 49.184188669000029 ], [ -122.966329904999967, 49.184045616000084 ], [ -122.965631286999965, 49.184045410000138 ], [ -122.965631365999968, 49.183931592000079 ], [ -122.965108881999981, 49.183916871000051 ], [ -122.965108037999968, 49.183929798000079 ], [ -122.964568292999985, 49.183914588000107 ], [ -122.964568115999953, 49.183917311000059 ], [ -122.964563194999926, 49.183917172000093 ], [ -122.96660000599995, 49.18270380399999 ], [ -122.966956293999957, 49.182371909000082 ], [ -122.967341084999973, 49.182218106000107 ], [ -122.967684619999915, 49.18217400200011 ], [ -122.967957903999888, 49.182236608000089 ], [ -122.967972899999936, 49.182453106000011 ], [ -122.967203802999933, 49.183180912000104 ], [ -122.966382438, 49.184118082000118 ], [ -122.966370741999981, 49.184131420000071 ], [ -122.966320566999912, 49.184188669000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154335501", "BldgCostT": "95795001", "sL_LossRatio": "0.649019818669922", "sL_AssetLoss": "5766280", "sL_BldgLoss": "3742430", "sL_StrLoss": "1548030", "sL_NStrLoss": "2194400", "sL_ContLoss": "2023850", "geom_point": "0101000020E61000005FDC6711A1BD5EC03D32A0289A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.965082893999977, 49.170116812000074 ], [ -122.96561538499999, 49.169793905000084 ], [ -122.96585668499992, 49.169856606000039 ], [ -122.967956280999942, 49.169850792000062 ], [ -122.967992247999987, 49.16993189500009 ], [ -122.968063301999933, 49.170092308000108 ], [ -122.969380112999914, 49.170166725000072 ], [ -122.970186312999914, 49.170212262000128 ], [ -122.970456483999953, 49.170227550000035 ], [ -122.970552176999988, 49.170232950000049 ], [ -122.97084489799991, 49.170249485000021 ], [ -122.971795343999972, 49.170303154000074 ], [ -122.971307899999942, 49.170368631000088 ], [ -122.970924906999969, 49.170459659000059 ], [ -122.970301021999958, 49.170628558000018 ], [ -122.969722216999941, 49.170884372000074 ], [ -122.968712877999963, 49.17145838000009 ], [ -122.967983390999933, 49.172777913000047 ], [ -122.968573960999962, 49.173944652000095 ], [ -122.968564499999971, 49.177030513000091 ], [ -122.96847015899999, 49.177030021000057 ], [ -122.968319143999921, 49.177029263000058 ], [ -122.965685572000012, 49.177015999000034 ], [ -122.965421484999951, 49.177532011000061 ], [ -122.964650524999982, 49.178838305000077 ], [ -122.964300889999947, 49.179425786000081 ], [ -122.964222819, 49.179655107000052 ], [ -122.964198725999921, 49.180940395000036 ], [ -122.964184208999939, 49.181715394000015 ], [ -122.96389259599998, 49.18177020700012 ], [ -122.9634135, 49.181819784000062 ], [ -122.96215048599997, 49.181838189000047 ], [ -122.96189398599995, 49.181880488000019 ], [ -122.961617309999951, 49.181959176000092 ], [ -122.96139531099999, 49.182061893000068 ], [ -122.960133207999959, 49.182842586000014 ], [ -122.959598386999971, 49.183113974000065 ], [ -122.958701674999972, 49.183443572000066 ], [ -122.957858897999941, 49.18366396700003 ], [ -122.957234195999945, 49.183778769000106 ], [ -122.957236628999979, 49.183364406000052 ], [ -122.957236690999949, 49.183303818000077 ], [ -122.957236903999942, 49.183192335000051 ], [ -122.957273957999959, 49.181851900000055 ], [ -122.957277571, 49.181578935000033 ], [ -122.957277811999944, 49.18156094400009 ], [ -122.957320195999927, 49.178365395000135 ], [ -122.957335951999951, 49.177175959000088 ], [ -122.957339193999985, 49.177097229000033 ], [ -122.95734059899999, 49.177063485000041 ], [ -122.957343884999943, 49.176970793000073 ], [ -122.957328262999951, 49.176431587000046 ], [ -122.957321613999952, 49.176201602000106 ], [ -122.958429919999972, 49.175672607000116 ], [ -122.959468190999957, 49.175250504000097 ], [ -122.959605335999981, 49.175187711000049 ], [ -122.960039347999938, 49.174990643000079 ], [ -122.960365690999978, 49.17484250399999 ], [ -122.961391305999953, 49.174256097000047 ], [ -122.961705384999973, 49.174002800000032 ], [ -122.961973682999925, 49.173738299000064 ], [ -122.964120195999911, 49.170895992000084 ], [ -122.964707344999979, 49.170420782000043 ], [ -122.965082893999977, 49.170116812000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295156583", "BldgCostT": "176078333", "sL_LossRatio": "0.636372901456473", "sL_AssetLoss": "7555240", "sL_BldgLoss": "4807950", "sL_StrLoss": "2203880", "sL_NStrLoss": "2604070", "sL_ContLoss": "2747290", "geom_point": "0101000020E610000042DCC613BFBC5EC02232105710984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94255866799989, 49.190656251000092 ], [ -122.942710090999981, 49.190376770000114 ], [ -122.942991736999915, 49.190057713000037 ], [ -122.943496597999939, 49.18968103300017 ], [ -122.943808282999981, 49.189468261000087 ], [ -122.943608711999943, 49.189269782000039 ], [ -122.942418122999968, 49.188038651000049 ], [ -122.941177204999946, 49.188553003000031 ], [ -122.940545406999917, 49.18881521100009 ], [ -122.939315512999912, 49.189327196000114 ], [ -122.936951409999949, 49.186902191000051 ], [ -122.938202010999987, 49.186387291000052 ], [ -122.938610008999916, 49.186173187000129 ], [ -122.938802994999918, 49.186071892000022 ], [ -122.940004703999961, 49.18556909400013 ], [ -122.941054809999926, 49.185202479000075 ], [ -122.941240024999956, 49.185124148000106 ], [ -122.941252612999932, 49.185118801000101 ], [ -122.94195074699995, 49.184823443000042 ], [ -122.942033378999938, 49.184788683000114 ], [ -122.942856167999935, 49.184442369000074 ], [ -122.943178003999918, 49.184306906000074 ], [ -122.94430228499999, 49.183833419000052 ], [ -122.946656001999955, 49.18627412700004 ], [ -122.94797734899997, 49.185724151000088 ], [ -122.949116913999944, 49.185247399000112 ], [ -122.949116074999921, 49.185197843000012 ], [ -122.949170446999943, 49.185163345000085 ], [ -122.94923948099995, 49.18515629000008 ], [ -122.949256013999928, 49.185166048000042 ], [ -122.949292292999985, 49.185187500000062 ], [ -122.949337171999929, 49.185168626000049 ], [ -122.951530826999914, 49.184245455000116 ], [ -122.951676091999957, 49.184184689000062 ], [ -122.953603668999918, 49.183381555000061 ], [ -122.954774004999948, 49.182893882000037 ], [ -122.955612753999944, 49.182547324000097 ], [ -122.953116785999967, 49.180097413000041 ], [ -122.953528195000032, 49.179930610000063 ], [ -122.954616081999987, 49.179506394000093 ], [ -122.956375970999886, 49.178747113000092 ], [ -122.957320195999927, 49.178365395000135 ], [ -122.957277811999944, 49.18156094400009 ], [ -122.957277571, 49.181578935000033 ], [ -122.957273957999959, 49.181851900000055 ], [ -122.957236903999942, 49.183192335000051 ], [ -122.957236690999949, 49.183303818000077 ], [ -122.957236628999979, 49.183364406000052 ], [ -122.957234195999945, 49.183778769000106 ], [ -122.957234356999948, 49.184329261000066 ], [ -122.957234540999949, 49.184976917 ], [ -122.957234560999964, 49.185084853000063 ], [ -122.957234590000013, 49.185238299000083 ], [ -122.957233510999941, 49.185926611000042 ], [ -122.957261548999938, 49.186351757000125 ], [ -122.957379824999961, 49.187820697000085 ], [ -122.956982793999913, 49.187820549000037 ], [ -122.95698247199999, 49.188193750000075 ], [ -122.95664541299999, 49.188511696000049 ], [ -122.956812867999957, 49.188846140000045 ], [ -122.956933485999969, 49.189087103000105 ], [ -122.956878602999922, 49.189663897000081 ], [ -122.956425399999915, 49.190122503000111 ], [ -122.956479802999965, 49.19020219600003 ], [ -122.954859608999953, 49.190867400000045 ], [ -122.954682908999956, 49.1907690970001 ], [ -122.954490593999964, 49.190777599000107 ], [ -122.953734000999958, 49.191434202000032 ], [ -122.952952121999928, 49.191963999000031 ], [ -122.952168902999958, 49.192693189000039 ], [ -122.950054954999985, 49.193780133000082 ], [ -122.950048344999956, 49.193783542000098 ], [ -122.950004991999947, 49.193805842000067 ], [ -122.949580032999933, 49.194024324000068 ], [ -122.949565738, 49.194024317000114 ], [ -122.949565729999961, 49.194031676000044 ], [ -122.949285394999933, 49.194175803000078 ], [ -122.948941002999973, 49.194445006000088 ], [ -122.94636023699999, 49.195662217000113 ], [ -122.946219714999984, 49.195531513000063 ], [ -122.942916103999906, 49.192458361000035 ], [ -122.942648536999968, 49.19210479000008 ], [ -122.942484258999954, 49.19176589799999 ], [ -122.942421896999946, 49.191463214000073 ], [ -122.942442536999962, 49.191065578000078 ], [ -122.94255866799989, 49.190656251000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81742416", "BldgCostT": "50511666", "sL_LossRatio": "0.67170028139134", "sL_AssetLoss": "1357540", "sL_BldgLoss": "911860", "sL_StrLoss": "418910", "sL_NStrLoss": "492950", "sL_ContLoss": "445680", "geom_point": "0101000020E610000040DE693A14BC5EC024B79A33AA974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.933808346999967, 49.187139821000052 ], [ -122.933676111999944, 49.187002727000028 ], [ -122.93354322199994, 49.187145785000098 ], [ -122.933008265999945, 49.187297810000125 ], [ -122.932863554999926, 49.187088668000058 ], [ -122.932777232999982, 49.186963938000098 ], [ -122.932767832999929, 49.186950353000043 ], [ -122.93307160099999, 49.186826884 ], [ -122.933468815, 49.186818294000084 ], [ -122.933660991999929, 49.186522091000079 ], [ -122.934910981999906, 49.185569299000036 ], [ -122.935076892999973, 49.185352811000016 ], [ -122.939306995999956, 49.182890302000075 ], [ -122.939663786999915, 49.182720896000035 ], [ -122.939897341999966, 49.18269451900008 ], [ -122.939936810999882, 49.182730116000108 ], [ -122.940026909999943, 49.182838940000138 ], [ -122.940233688999967, 49.183091727 ], [ -122.940376700999977, 49.183022596000093 ], [ -122.940682692999957, 49.18287472700009 ], [ -122.941509265999969, 49.182536794000029 ], [ -122.942625414999924, 49.182080450000043 ], [ -122.94430228499999, 49.183833419000052 ], [ -122.943178003999918, 49.184306906000074 ], [ -122.942856167999935, 49.184442369000074 ], [ -122.942033378999938, 49.184788683000114 ], [ -122.94195074699995, 49.184823443000042 ], [ -122.941252612999932, 49.185118801000101 ], [ -122.941240024999956, 49.185124148000106 ], [ -122.941054809999926, 49.185202479000075 ], [ -122.940004703999961, 49.18556909400013 ], [ -122.938802994999918, 49.186071892000022 ], [ -122.938610008999916, 49.186173187000129 ], [ -122.938202010999987, 49.186387291000052 ], [ -122.936951409999949, 49.186902191000051 ], [ -122.935759789999977, 49.187395414000065 ], [ -122.934542993999955, 49.187896831000145 ], [ -122.93427091699999, 49.187613382000038 ], [ -122.933808346999967, 49.187139821000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78742833", "BldgCostT": "50733333", "sL_LossRatio": "0.676866344126473", "sL_AssetLoss": "2286020", "sL_BldgLoss": "1547330", "sL_StrLoss": "631120", "sL_NStrLoss": "916210", "sL_ContLoss": "738690", "geom_point": "0101000020E61000000A428190CFBB5EC072DD4A6540984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.933400355999964, 49.187864482000066 ], [ -122.933157712999957, 49.187513834000057 ], [ -122.933008265999945, 49.187297810000125 ], [ -122.93354322199994, 49.187145785000098 ], [ -122.933676111999944, 49.187002727000028 ], [ -122.933808346999967, 49.187139821000052 ], [ -122.93427091699999, 49.187613382000038 ], [ -122.934542993999955, 49.187896831000145 ], [ -122.935759789999977, 49.187395414000065 ], [ -122.936951409999949, 49.186902191000051 ], [ -122.939315512999912, 49.189327196000114 ], [ -122.938119505999921, 49.189824734000084 ], [ -122.936910691999984, 49.190329123000033 ], [ -122.935807705999977, 49.190787867000054 ], [ -122.935114513999906, 49.191082609000013 ], [ -122.934500787999923, 49.191343497000084 ], [ -122.933831329999975, 49.1916167420001 ], [ -122.933499892, 49.19175199700004 ], [ -122.932111183999936, 49.192339496000038 ], [ -122.931990239999919, 49.192202915000117 ], [ -122.931725971, 49.191930413000115 ], [ -122.931620607999932, 49.191384781000117 ], [ -122.930106848999941, 49.189487164000063 ], [ -122.931018691999967, 49.189088541000096 ], [ -122.931578477999935, 49.188866461000039 ], [ -122.932508902999956, 49.188402129000032 ], [ -122.933400355999964, 49.187864482000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "283041720", "BldgCostT": "189770413", "sL_LossRatio": "0.790209333912575", "sL_AssetLoss": "5823710", "sL_BldgLoss": "4601950", "sL_StrLoss": "2301050", "sL_NStrLoss": "2300900", "sL_ContLoss": "1221760", "geom_point": "0101000020E6100000CC1E2E5A3CBC5EC0E1D37BAE5F984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.941245599, 49.193036209000098 ], [ -122.938119505999921, 49.189824734000084 ], [ -122.939315512999912, 49.189327196000114 ], [ -122.940545406999917, 49.18881521100009 ], [ -122.941177204999946, 49.188553003000031 ], [ -122.942418122999968, 49.188038651000049 ], [ -122.943608711999943, 49.189269782000039 ], [ -122.943808282999981, 49.189468261000087 ], [ -122.943496597999939, 49.18968103300017 ], [ -122.942991736999915, 49.190057713000037 ], [ -122.942710090999981, 49.190376770000114 ], [ -122.94255866799989, 49.190656251000092 ], [ -122.942442536999962, 49.191065578000078 ], [ -122.942421896999946, 49.191463214000073 ], [ -122.942484258999954, 49.19176589799999 ], [ -122.942648536999968, 49.19210479000008 ], [ -122.942916103999906, 49.192458361000035 ], [ -122.942648632999976, 49.192590879000093 ], [ -122.942536040999983, 49.192646671000077 ], [ -122.941377522999971, 49.19315790200006 ], [ -122.941245599, 49.193036209000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "446458356", "BldgCostT": "282527492", "sL_LossRatio": "0.681693690575344", "sL_AssetLoss": "9244900", "sL_BldgLoss": "6302190", "sL_StrLoss": "2947130", "sL_NStrLoss": "3355060", "sL_ContLoss": "2942710", "geom_point": "0101000020E6100000A9E8791EB9BB5EC01C6AA9F6C8984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924054075999948, 49.196366193000124 ], [ -122.923615796999911, 49.1961582960001 ], [ -122.92327079099999, 49.196164070000123 ], [ -122.923107485999978, 49.196166798000085 ], [ -122.922036, 49.195987406000022 ], [ -122.921699637999922, 49.19584379300003 ], [ -122.921519569999973, 49.195766912000103 ], [ -122.921105182999966, 49.195589994000088 ], [ -122.921148591999952, 49.195377889000099 ], [ -122.921681612999976, 49.194618689000031 ], [ -122.922067996999942, 49.193765609000103 ], [ -122.9227128039999, 49.193270008000084 ], [ -122.92333249, 49.192992307000054 ], [ -122.923716203999959, 49.192389799000118 ], [ -122.924555099999949, 49.191526812000049 ], [ -122.924911905, 49.191391498000065 ], [ -122.925447208999969, 49.191347311000136 ], [ -122.925627711999965, 49.190798998000062 ], [ -122.925779302999956, 49.190690701000086 ], [ -122.928565988999978, 49.188911896000072 ], [ -122.929185505999982, 49.188616430000053 ], [ -122.929397197999933, 49.188616560000064 ], [ -122.929397341999945, 49.188515397000117 ], [ -122.92975059599999, 49.188346915000096 ], [ -122.92980929399998, 49.188346952000131 ], [ -122.929809334999931, 49.188318901000038 ], [ -122.932164207999975, 49.187195698000018 ], [ -122.932767832999929, 49.186950353000043 ], [ -122.932777232999982, 49.186963938000098 ], [ -122.932863554999926, 49.187088668000058 ], [ -122.933008265999945, 49.187297810000125 ], [ -122.933157712999957, 49.187513834000057 ], [ -122.933400355999964, 49.187864482000066 ], [ -122.932508902999956, 49.188402129000032 ], [ -122.931578477999935, 49.188866461000039 ], [ -122.931018691999967, 49.189088541000096 ], [ -122.930106848999941, 49.189487164000063 ], [ -122.931620607999932, 49.191384781000117 ], [ -122.931725971, 49.191930413000115 ], [ -122.931990239999919, 49.192202915000117 ], [ -122.932111183999936, 49.192339496000038 ], [ -122.933499892, 49.19175199700004 ], [ -122.933831329999975, 49.1916167420001 ], [ -122.934500787999923, 49.191343497000084 ], [ -122.935114513999906, 49.191082609000013 ], [ -122.935807705999977, 49.190787867000054 ], [ -122.936910691999984, 49.190329123000033 ], [ -122.938119505999921, 49.189824734000084 ], [ -122.941245599, 49.193036209000098 ], [ -122.941377522999971, 49.19315790200006 ], [ -122.942536040999983, 49.192646671000077 ], [ -122.942648632999976, 49.192590879000093 ], [ -122.942916103999906, 49.192458361000035 ], [ -122.946219714999984, 49.195531513000063 ], [ -122.94636023699999, 49.195662217000113 ], [ -122.945852002999942, 49.195901909 ], [ -122.94479449399995, 49.196512908000059 ], [ -122.944518406999975, 49.196917411000058 ], [ -122.944106609999963, 49.196746492000081 ], [ -122.943971279999971, 49.196793986000067 ], [ -122.942954307999969, 49.197150994000062 ], [ -122.942073092999962, 49.197138784000053 ], [ -122.9420230299999, 49.19713808400013 ], [ -122.941512111999941, 49.197130990000069 ], [ -122.941171289999929, 49.197082175000048 ], [ -122.940757002999931, 49.197022812000085 ], [ -122.940703706, 49.197149485000075 ], [ -122.939413406, 49.196960109000059 ], [ -122.939427381999948, 49.196878898000065 ], [ -122.938854039999967, 49.19679864800009 ], [ -122.938741541999946, 49.196782918000089 ], [ -122.938732366999886, 49.196781631000079 ], [ -122.938635802999912, 49.196768125000098 ], [ -122.93856083299994, 49.196757639000047 ], [ -122.938270113999948, 49.196716955000092 ], [ -122.937616005000038, 49.196625406000059 ], [ -122.937319612999957, 49.196611474000036 ], [ -122.93722031499999, 49.196606811 ], [ -122.937144062999934, 49.196603233000133 ], [ -122.937130947999933, 49.196602619000018 ], [ -122.936283415999952, 49.196562792000137 ], [ -122.935918763999894, 49.196549045000054 ], [ -122.935738846999982, 49.196542264000058 ], [ -122.935678177999961, 49.196539985000072 ], [ -122.9355626399999, 49.196535626000127 ], [ -122.935562755999982, 49.196446089000048 ], [ -122.93515097599996, 49.196445859000043 ], [ -122.93515088, 49.196520094000093 ], [ -122.933979832999938, 49.196475912000139 ], [ -122.931411699999927, 49.196378998000093 ], [ -122.931282416999977, 49.196374113000083 ], [ -122.931022340999945, 49.196364287000016 ], [ -122.93069660499999, 49.196351994000061 ], [ -122.929832790999967, 49.196262207000103 ], [ -122.929525024999961, 49.196160505000122 ], [ -122.929393303999944, 49.196116991000096 ], [ -122.929338904999952, 49.196450297000048 ], [ -122.928625708999931, 49.196413184000072 ], [ -122.928528090999933, 49.196306410000076 ], [ -122.928145093999944, 49.196252297000107 ], [ -122.92792429, 49.196386204000092 ], [ -122.92780131399995, 49.196656797000081 ], [ -122.927289263999938, 49.1966980340001 ], [ -122.926475123999978, 49.196763590000081 ], [ -122.926139808999892, 49.19679060000005 ], [ -122.925138273999977, 49.196762193000019 ], [ -122.924327282999926, 49.196599792000093 ], [ -122.924054075999948, 49.196366193000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "821974030", "BldgCostT": "515356632", "sL_LossRatio": "0.665123824617669", "sL_AssetLoss": "8013350", "sL_BldgLoss": "5329870", "sL_StrLoss": "2115600", "sL_NStrLoss": "3214270", "sL_ContLoss": "2683480", "geom_point": "0101000020E6100000AF11C71532BA5EC041B75ED3039A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.909394977999966, 49.204465497000108 ], [ -122.908890102999976, 49.204072587 ], [ -122.906372202999961, 49.205451710000041 ], [ -122.905890491999955, 49.205066625000022 ], [ -122.90582630499992, 49.205015305000146 ], [ -122.905290495999935, 49.2045927120001 ], [ -122.904974576999962, 49.204762960000032 ], [ -122.904767217999932, 49.204615020000112 ], [ -122.904378030999979, 49.204831267000031 ], [ -122.903992344999978, 49.204602250000065 ], [ -122.90393659599998, 49.204569128000053 ], [ -122.903957882000014, 49.204263019000066 ], [ -122.903973176999926, 49.204043289000055 ], [ -122.903707975999936, 49.203770804000072 ], [ -122.903793877999988, 49.203710193000063 ], [ -122.903841610999933, 49.203710233000045 ], [ -122.903841676999932, 49.203676467000072 ], [ -122.904175891999955, 49.203440651000058 ], [ -122.90425397199999, 49.20344071600006 ], [ -122.904254078999898, 49.203385483000034 ], [ -122.904557898999926, 49.203171109000074 ], [ -122.904632635000013, 49.203171170000111 ], [ -122.904636326999977, 49.203115770000082 ], [ -122.90466079499997, 49.203098505000092 ], [ -122.905038452999946, 49.202901646000036 ], [ -122.905490512999933, 49.202902017000113 ], [ -122.905490962, 49.202665764000066 ], [ -122.90555533099996, 49.202632210000019 ], [ -122.905902857999962, 49.202632494000071 ], [ -122.90590320299999, 49.20245087000005 ], [ -122.907105923999936, 49.201823891000096 ], [ -122.90713986599998, 49.201823918000045 ], [ -122.907139899999947, 49.201806179000116 ], [ -122.909969980999975, 49.200330733000108 ], [ -122.91045435800001, 49.20071272600012 ], [ -122.910564091999944, 49.200801786000063 ], [ -122.910657791999981, 49.200843912 ], [ -122.910965288999975, 49.200822485000145 ], [ -122.911514408999935, 49.201235085000157 ], [ -122.912101138999958, 49.201703302000077 ], [ -122.91260240099993, 49.202103299000107 ], [ -122.91309749299991, 49.20249950700002 ], [ -122.913531343999949, 49.202847042000023 ], [ -122.913990066999972, 49.203218297000049 ], [ -122.914545741999973, 49.203668011000033 ], [ -122.914640683999949, 49.203746412000058 ], [ -122.914051631999911, 49.204082704000065 ], [ -122.91249794399999, 49.204923134000133 ], [ -122.912487295999981, 49.204928907000038 ], [ -122.910974198999924, 49.205748594000077 ], [ -122.910933537999966, 49.20571453300002 ], [ -122.910866294999963, 49.20565819200003 ], [ -122.910362908999971, 49.205242814000023 ], [ -122.909901227999924, 49.20486020000002 ], [ -122.909394977999966, 49.204465497000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108004584", "BldgCostT": "70538334", "sL_LossRatio": "0.726423375971909", "sL_AssetLoss": "1116360", "sL_BldgLoss": "810950", "sL_StrLoss": "362300", "sL_NStrLoss": "448650", "sL_ContLoss": "305410", "geom_point": "0101000020E61000008B5F25DD1EBA5EC09E4B9263429A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906372202999961, 49.205451710000041 ], [ -122.908890102999976, 49.204072587 ], [ -122.909394977999966, 49.204465497000108 ], [ -122.909901227999924, 49.20486020000002 ], [ -122.907353880999935, 49.206227700000106 ], [ -122.906858384999921, 49.205837802000048 ], [ -122.906372202999961, 49.205451710000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "246583478", "BldgCostT": "166299857", "sL_LossRatio": "0.78912174233616", "sL_AssetLoss": "1763150", "sL_BldgLoss": "1391340", "sL_StrLoss": "594000", "sL_NStrLoss": "797340", "sL_ContLoss": "371810", "geom_point": "0101000020E610000093D8F7D92FBA5EC04145F6BD5D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.907353880999935, 49.206227700000106 ], [ -122.909901227999924, 49.20486020000002 ], [ -122.910362908999971, 49.205242814000023 ], [ -122.910866294999963, 49.20565819200003 ], [ -122.910933537999966, 49.20571453300002 ], [ -122.910974198999924, 49.205748594000077 ], [ -122.910963598999956, 49.205754318000082 ], [ -122.908472300999961, 49.207101563000066 ], [ -122.90846170099999, 49.207107288000024 ], [ -122.908385738999982, 49.207046382000065 ], [ -122.90835101499998, 49.20701849200001 ], [ -122.907812699999923, 49.206591292000049 ], [ -122.907353880999935, 49.206227700000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252435000", "BldgCostT": "169140000", "sL_LossRatio": "0.792791356621636", "sL_AssetLoss": "1944610", "sL_BldgLoss": "1541670", "sL_StrLoss": "675880", "sL_NStrLoss": "865790", "sL_ContLoss": "402940", "geom_point": "0101000020E6100000D3A7E2E7FBB95EC03038D6078A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904712197999956, 49.20828801199999 ], [ -122.904233075999969, 49.207899390000122 ], [ -122.903720908999929, 49.208172102000077 ], [ -122.903259182999989, 49.207790294000098 ], [ -122.903269818999917, 49.2077845580001 ], [ -122.904744094999927, 49.206986103000133 ], [ -122.904754677999975, 49.206980356000081 ], [ -122.90614046099995, 49.206227746000067 ], [ -122.906234340000012, 49.206176756000104 ], [ -122.906847836999972, 49.20584353600001 ], [ -122.906858384999921, 49.205837802000048 ], [ -122.907353880999935, 49.206227700000106 ], [ -122.907812699999923, 49.206591292000049 ], [ -122.90835101499998, 49.20701849200001 ], [ -122.908385738999982, 49.207046382000065 ], [ -122.90846170099999, 49.207107288000024 ], [ -122.906977624999953, 49.207910018000092 ], [ -122.906966988999969, 49.207915755000073 ], [ -122.906303192999957, 49.208275163000074 ], [ -122.905429435999963, 49.208748219000015 ], [ -122.90527151400002, 49.208700096000086 ], [ -122.905207501999911, 49.208680586000106 ], [ -122.904712197999956, 49.20828801199999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392276583", "BldgCostT": "267573333", "sL_LossRatio": "0.810385532834512", "sL_AssetLoss": "2452450", "sL_BldgLoss": "1987430", "sL_StrLoss": "857030", "sL_NStrLoss": "1130400", "sL_ContLoss": "465020", "geom_point": "0101000020E6100000446ACAE3E3B95EC0FCED14406B9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905178006999947, 49.205355295000089 ], [ -122.90582630499992, 49.205015305000146 ], [ -122.905890491999955, 49.205066625000022 ], [ -122.906372202999961, 49.205451710000041 ], [ -122.906858384999921, 49.205837802000048 ], [ -122.906847836999972, 49.20584353600001 ], [ -122.906234340000012, 49.206176756000104 ], [ -122.90614046099995, 49.206227746000067 ], [ -122.904754677999975, 49.206980356000081 ], [ -122.904744094999927, 49.206986103000133 ], [ -122.903269818999917, 49.2077845580001 ], [ -122.903259182999989, 49.207790294000098 ], [ -122.902742795999956, 49.207363809000107 ], [ -122.902225405999957, 49.206931792000056 ], [ -122.902236079999938, 49.206926102000125 ], [ -122.903709599999914, 49.206139305000093 ], [ -122.905178006999947, 49.205355295000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240245953", "BldgCostT": "161950166", "sL_LossRatio": "0.774099019383315", "sL_AssetLoss": "1921240", "sL_BldgLoss": "1487230", "sL_StrLoss": "698730", "sL_NStrLoss": "788500", "sL_ContLoss": "434010", "geom_point": "0101000020E610000072A9294DB3B95EC054FF9C597D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.898065370999944, 49.208806522000017 ], [ -122.898066436999912, 49.208287770000069 ], [ -122.898913205999989, 49.207285589000094 ], [ -122.89966877699996, 49.206620497000067 ], [ -122.903411859999963, 49.203979733000025 ], [ -122.903429246000016, 49.203979747000062 ], [ -122.903429269999947, 49.203967449000082 ], [ -122.903707975999936, 49.203770804000072 ], [ -122.903973176999926, 49.204043289000055 ], [ -122.903957882000014, 49.204263019000066 ], [ -122.90393659599998, 49.204569128000053 ], [ -122.903992344999978, 49.204602250000065 ], [ -122.904378030999979, 49.204831267000031 ], [ -122.904767217999932, 49.204615020000112 ], [ -122.904974576999962, 49.204762960000032 ], [ -122.905290495999935, 49.2045927120001 ], [ -122.90582630499992, 49.205015305000146 ], [ -122.905178006999947, 49.205355295000089 ], [ -122.903709599999914, 49.206139305000093 ], [ -122.902236079999938, 49.206926102000125 ], [ -122.902225405999957, 49.206931792000056 ], [ -122.902742795999956, 49.207363809000107 ], [ -122.903259182999989, 49.207790294000098 ], [ -122.903720908999929, 49.208172102000077 ], [ -122.90313750199995, 49.208483294000082 ], [ -122.90257494399999, 49.208793136000054 ], [ -122.902386717999946, 49.208896808000141 ], [ -122.901828183999967, 49.209205100000069 ], [ -122.901304390999911, 49.208807200000081 ], [ -122.900909507, 49.208822808000036 ], [ -122.90024041199996, 49.208772094000089 ], [ -122.900227678999926, 49.20877760000009 ], [ -122.900160135, 49.208806760000058 ], [ -122.899986118999905, 49.20888190700007 ], [ -122.899785000999913, 49.209119291000036 ], [ -122.899476715999953, 49.209666292000101 ], [ -122.899182861999947, 49.20953216700007 ], [ -122.899020472999936, 49.209458052000052 ], [ -122.898690978999966, 49.209307677 ], [ -122.898681499999896, 49.209300581000029 ], [ -122.898577294999967, 49.209222390000065 ], [ -122.89801577799993, 49.208995069000075 ], [ -122.897912984999948, 49.208963540000063 ], [ -122.897841109999945, 49.208927784000132 ], [ -122.897653377999958, 49.208860082000058 ], [ -122.897653433999906, 49.208832234000056 ], [ -122.897692450999955, 49.208832268000045 ], [ -122.898037742999946, 49.208832572000084 ], [ -122.898065317, 49.208832597000061 ], [ -122.898065370999944, 49.208806522000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316201720", "BldgCostT": "217035413", "sL_LossRatio": "0.825629745400519", "sL_AssetLoss": "2073060", "sL_BldgLoss": "1711580", "sL_StrLoss": "746340", "sL_NStrLoss": "965240", "sL_ContLoss": "361480", "geom_point": "0101000020E610000093C9B10EAAB95EC011F46107DF9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.898297626, 49.21006034300013 ], [ -122.898690978999966, 49.209307677 ], [ -122.899020472999936, 49.209458052000052 ], [ -122.899182861999947, 49.20953216700007 ], [ -122.899476715999953, 49.209666292000101 ], [ -122.899785000999913, 49.209119291000036 ], [ -122.899986118999905, 49.20888190700007 ], [ -122.900160135, 49.208806760000058 ], [ -122.900227678999926, 49.20877760000009 ], [ -122.90024041199996, 49.208772094000089 ], [ -122.900909507, 49.208822808000036 ], [ -122.901304390999911, 49.208807200000081 ], [ -122.901828183999967, 49.209205100000069 ], [ -122.902386717999946, 49.208896808000141 ], [ -122.90257494399999, 49.208793136000054 ], [ -122.90313750199995, 49.208483294000082 ], [ -122.903720908999929, 49.208172102000077 ], [ -122.904233075999969, 49.207899390000122 ], [ -122.904712197999956, 49.20828801199999 ], [ -122.905207501999911, 49.208680586000106 ], [ -122.90527151400002, 49.208700096000086 ], [ -122.905429435999963, 49.208748219000015 ], [ -122.904798880999934, 49.209087753000048 ], [ -122.904747913999955, 49.209107545000094 ], [ -122.904636862999922, 49.20915067500011 ], [ -122.904086604000014, 49.209334871000067 ], [ -122.903944633999956, 49.209344332000065 ], [ -122.903341316999928, 49.209645008000038 ], [ -122.902764160999979, 49.209965369000024 ], [ -122.902647179000013, 49.210032274000078 ], [ -122.90191992299999, 49.210442020000052 ], [ -122.90160630299999, 49.210617698000043 ], [ -122.901287739999958, 49.210804932000073 ], [ -122.901238998999986, 49.210833725000043 ], [ -122.901191823999909, 49.210861597000083 ], [ -122.901137997, 49.210893381000076 ], [ -122.901127757999959, 49.210899444000084 ], [ -122.900798992999924, 49.21108154800006 ], [ -122.900507832999921, 49.211242890000079 ], [ -122.900329757999913, 49.211340462000116 ], [ -122.900270684999967, 49.211373284000089 ], [ -122.900237120999961, 49.211391853000102 ], [ -122.90019552199999, 49.211414874000084 ], [ -122.90008682699991, 49.211474962000082 ], [ -122.900076091999978, 49.211480906000105 ], [ -122.899695277999925, 49.211679062000051 ], [ -122.899532952999905, 49.211763499000078 ], [ -122.898921174999941, 49.21208735700003 ], [ -122.897842031999943, 49.211239177000088 ], [ -122.897643281999976, 49.211082983000054 ], [ -122.898063362999949, 49.210711271000044 ], [ -122.89820937199994, 49.210484265000083 ], [ -122.898242557999964, 49.210432646000157 ], [ -122.898297626, 49.21006034300013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260849228", "BldgCostT": "177534857", "sL_LossRatio": "0.792441285598206", "sL_AssetLoss": "2042940", "sL_BldgLoss": "1618910", "sL_StrLoss": "697400", "sL_NStrLoss": "921510", "sL_ContLoss": "424030", "geom_point": "0101000020E61000000DBF72EFE7B95EC084868BFDE19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.902419131999977, 49.211271333000063 ], [ -122.90160630299999, 49.210617698000043 ], [ -122.90191992299999, 49.210442020000052 ], [ -122.902647179000013, 49.210032274000078 ], [ -122.902764160999979, 49.209965369000024 ], [ -122.903341316999928, 49.209645008000038 ], [ -122.903944633999956, 49.209344332000065 ], [ -122.904086604000014, 49.209334871000067 ], [ -122.904636862999922, 49.20915067500011 ], [ -122.904747913999955, 49.209107545000094 ], [ -122.904798880999934, 49.209087753000048 ], [ -122.905429435999963, 49.208748219000015 ], [ -122.906303192999957, 49.208275163000074 ], [ -122.906966988999969, 49.207915755000073 ], [ -122.907810290999947, 49.208585909000107 ], [ -122.90719633399999, 49.208920421000052 ], [ -122.906255215999963, 49.209433185000066 ], [ -122.907127912999982, 49.210136593000122 ], [ -122.906575495999931, 49.210436097000077 ], [ -122.906451806999897, 49.210500100000075 ], [ -122.906407414999975, 49.210523893000079 ], [ -122.905854011999935, 49.21082082200008 ], [ -122.904551832999942, 49.211517678000092 ], [ -122.904097328999939, 49.211171272000101 ], [ -122.903006504999937, 49.211743602000062 ], [ -122.902419131999977, 49.211271333000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66944832", "BldgCostT": "45433332", "sL_LossRatio": "0.748942100337714", "sL_AssetLoss": "983080", "sL_BldgLoss": "736270", "sL_StrLoss": "335350", "sL_NStrLoss": "400920", "sL_ContLoss": "246810", "geom_point": "0101000020E6100000706EC0A52BBA5EC0A378CF60D79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906977624999953, 49.207910018000092 ], [ -122.90846170099999, 49.207107288000024 ], [ -122.908958326999965, 49.207514990000064 ], [ -122.909652293999955, 49.208084689000053 ], [ -122.910171306999985, 49.208494215000059 ], [ -122.910692479999952, 49.208910006000053 ], [ -122.911193115999936, 49.209307296000141 ], [ -122.911675490999983, 49.209689602 ], [ -122.912151111999947, 49.210068988000046 ], [ -122.911415196999926, 49.210466800000098 ], [ -122.910674996999958, 49.210866295000073 ], [ -122.909104991999982, 49.211711412000071 ], [ -122.908556878999946, 49.212006490000135 ], [ -122.908443018999961, 49.212068096000117 ], [ -122.906460577999894, 49.210507034000017 ], [ -122.906451806999897, 49.210500100000075 ], [ -122.906575495999931, 49.210436097000077 ], [ -122.907127912999982, 49.210136593000122 ], [ -122.906255215999963, 49.209433185000066 ], [ -122.90719633399999, 49.208920421000052 ], [ -122.907810290999947, 49.208585909000107 ], [ -122.906966988999969, 49.207915755000073 ], [ -122.906977624999953, 49.207910018000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163070221", "BldgCostT": "101105414", "sL_LossRatio": "0.683737106624925", "sL_AssetLoss": "2015570", "sL_BldgLoss": "1378120", "sL_StrLoss": "561810", "sL_NStrLoss": "816310", "sL_ContLoss": "637450", "geom_point": "0101000020E61000008756CDF77CBA5EC0E99059C5B49A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.910692479999952, 49.208910006000053 ], [ -122.913285604999928, 49.207556394000051 ], [ -122.913748605999984, 49.207920100000109 ], [ -122.914042112999965, 49.20815008900005 ], [ -122.915505184999915, 49.207319901000105 ], [ -122.916211881999942, 49.207878895000057 ], [ -122.916781608999941, 49.208331196000039 ], [ -122.917196305999937, 49.208657501000111 ], [ -122.915688520999979, 49.209458496000103 ], [ -122.914713180999968, 49.208687398000073 ], [ -122.913531788999975, 49.20932469600011 ], [ -122.913518093999983, 49.209332139000054 ], [ -122.913369516999978, 49.209412906000104 ], [ -122.913354337999962, 49.209421040000102 ], [ -122.913339452999978, 49.209429099000076 ], [ -122.912151111999947, 49.210068988000046 ], [ -122.911675490999983, 49.209689602 ], [ -122.911193115999936, 49.209307296000141 ], [ -122.910692479999952, 49.208910006000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "279179833", "BldgCostT": "187828333", "sL_LossRatio": "0.770495820256911", "sL_AssetLoss": "2122140", "sL_BldgLoss": "1635100", "sL_StrLoss": "720440", "sL_NStrLoss": "914660", "sL_ContLoss": "487040", "geom_point": "0101000020E6100000C71BE41E60BA5EC084C87E50769A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.908958326999965, 49.207514990000064 ], [ -122.90846170099999, 49.207107288000024 ], [ -122.908472300999961, 49.207101563000066 ], [ -122.910963598999956, 49.205754318000082 ], [ -122.910974198999924, 49.205748594000077 ], [ -122.912487295999981, 49.204928907000038 ], [ -122.91249794399999, 49.204923134000133 ], [ -122.914051631999911, 49.204082704000065 ], [ -122.914893098999926, 49.204759086000116 ], [ -122.913359502999981, 49.205618797000078 ], [ -122.914230511999961, 49.20630590800004 ], [ -122.915505184999915, 49.207319901000105 ], [ -122.914042112999965, 49.20815008900005 ], [ -122.913748605999984, 49.207920100000109 ], [ -122.913285604999928, 49.207556394000051 ], [ -122.910692479999952, 49.208910006000053 ], [ -122.910171306999985, 49.208494215000059 ], [ -122.909652293999955, 49.208084689000053 ], [ -122.908958326999965, 49.207514990000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "381241417", "BldgCostT": "262881667", "sL_LossRatio": "0.853787764584867", "sL_AssetLoss": "2255420", "sL_BldgLoss": "1925650", "sL_StrLoss": "855680", "sL_NStrLoss": "1069970", "sL_ContLoss": "329770", "geom_point": "0101000020E6100000E1D761AFA4BA5EC099E546EC6E9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.915770505999916, 49.20547429 ], [ -122.916375342999984, 49.205148361000099 ], [ -122.916970104999919, 49.2055942060001 ], [ -122.91837129000001, 49.206709102000026 ], [ -122.91727919399996, 49.207304899000043 ], [ -122.916211881999942, 49.207878895000057 ], [ -122.915505184999915, 49.207319901000105 ], [ -122.914230511999961, 49.20630590800004 ], [ -122.91529528699995, 49.205729206000086 ], [ -122.915770505999916, 49.20547429 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249752531", "BldgCostT": "167793603", "sL_LossRatio": "0.821921601430673", "sL_AssetLoss": "1733450", "sL_BldgLoss": "1424760", "sL_StrLoss": "650090", "sL_NStrLoss": "774670", "sL_ContLoss": "308690", "geom_point": "0101000020E6100000331603DA8CBA5EC095B823D6419A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.914051631999911, 49.204082704000065 ], [ -122.914640683999949, 49.203746412000058 ], [ -122.916375342999984, 49.205148361000099 ], [ -122.915770505999916, 49.20547429 ], [ -122.91529528699995, 49.205729206000086 ], [ -122.914230511999961, 49.20630590800004 ], [ -122.913359502999981, 49.205618797000078 ], [ -122.914893098999926, 49.204759086000116 ], [ -122.914051631999911, 49.204082704000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307462478", "BldgCostT": "210429857", "sL_LossRatio": "0.824233259745939", "sL_AssetLoss": "1897970", "sL_BldgLoss": "1564370", "sL_StrLoss": "702870", "sL_NStrLoss": "861500", "sL_ContLoss": "333600", "geom_point": "0101000020E610000020E10729B0BA5EC00EC1587C169A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.916761917, 49.202426003 ], [ -122.917422773999988, 49.202102596000017 ], [ -122.917885480999956, 49.202469891000135 ], [ -122.918357590999932, 49.202840989000059 ], [ -122.918805338999931, 49.203198850000028 ], [ -122.919233281999965, 49.203540867000065 ], [ -122.919262347999933, 49.203563793000029 ], [ -122.919298451999964, 49.203592277000027 ], [ -122.918643958999922, 49.203943843000104 ], [ -122.918530192999981, 49.20400366300003 ], [ -122.918398182999951, 49.204028698000073 ], [ -122.918004379999957, 49.204235483000069 ], [ -122.918607394999981, 49.204701414000048 ], [ -122.917828775999922, 49.205123292000103 ], [ -122.916970104999919, 49.2055942060001 ], [ -122.916375342999984, 49.205148361000099 ], [ -122.914640683999949, 49.203746412000058 ], [ -122.914758079999928, 49.203673195000086 ], [ -122.914824902999968, 49.203555278000053 ], [ -122.915182948999956, 49.203329483000047 ], [ -122.915399020999942, 49.203175297000065 ], [ -122.916761917, 49.202426003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127429334", "BldgCostT": "84538334", "sL_LossRatio": "0.776748185652757", "sL_AssetLoss": "1348970", "sL_BldgLoss": "1047810", "sL_StrLoss": "457410", "sL_NStrLoss": "590400", "sL_ContLoss": "301160", "geom_point": "0101000020E6100000FF9EA234E5BA5EC02C674A46299A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.919309120999984, 49.203586584000085 ], [ -122.920479304999958, 49.202959389000092 ], [ -122.922438994999979, 49.204509117000036 ], [ -122.921262076999952, 49.20514388900007 ], [ -122.920664201999941, 49.20546918400003 ], [ -122.920033607999969, 49.205812498000064 ], [ -122.918607394999981, 49.204701414000048 ], [ -122.918004379999957, 49.204235483000069 ], [ -122.918398182999951, 49.204028698000073 ], [ -122.918530192999981, 49.20400366300003 ], [ -122.918643958999922, 49.203943843000104 ], [ -122.919298451999964, 49.203592277000027 ], [ -122.919309120999984, 49.203586584000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "328736448", "BldgCostT": "225415270", "sL_LossRatio": "0.820034433894769", "sL_AssetLoss": "2166470", "sL_BldgLoss": "1776580", "sL_StrLoss": "843580", "sL_NStrLoss": "933000", "sL_ContLoss": "389890", "geom_point": "0101000020E6100000E33156DD1BBB5EC0DFB24B6D0C9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924080292999932, 49.204279403000029 ], [ -122.923604481999973, 49.203900890000085 ], [ -122.922972091999924, 49.204228792000066 ], [ -122.922438994999979, 49.204509117000036 ], [ -122.920479304999958, 49.202959389000092 ], [ -122.921020019999958, 49.202668476000078 ], [ -122.921652942999941, 49.202331608000122 ], [ -122.921587791, 49.202279290000078 ], [ -122.921702918999927, 49.202219513000024 ], [ -122.921819448999898, 49.202200325000014 ], [ -122.922856741999951, 49.2016623580001 ], [ -122.923123540999981, 49.201881669000024 ], [ -122.924212013999963, 49.20260018400009 ], [ -122.924939224999918, 49.203181294000032 ], [ -122.92685819699993, 49.204705485000041 ], [ -122.926352694999935, 49.204982085000083 ], [ -122.9262035, 49.205060684000024 ], [ -122.925520230999979, 49.205433098000107 ], [ -122.925040500999899, 49.205050007000118 ], [ -122.924538984999913, 49.204646492000045 ], [ -122.924080292999932, 49.204279403000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "467548773", "BldgCostT": "321059159", "sL_LossRatio": "0.829143286203683", "sL_AssetLoss": "2983260", "sL_BldgLoss": "2473550", "sL_StrLoss": "1094910", "sL_NStrLoss": "1378640", "sL_ContLoss": "509710", "geom_point": "0101000020E6100000CCB4E48E0ABB5EC0459A8933509A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.922972091999924, 49.204228792000066 ], [ -122.923604481999973, 49.203900890000085 ], [ -122.924080292999932, 49.204279403000029 ], [ -122.924538984999913, 49.204646492000045 ], [ -122.925040500999899, 49.205050007000118 ], [ -122.922738101999983, 49.206311401000022 ], [ -122.923191181999954, 49.20668109900005 ], [ -122.92258500299998, 49.207006095000075 ], [ -122.921956196999986, 49.207343091000141 ], [ -122.921000793999909, 49.206581609000061 ], [ -122.920033607999969, 49.205812498000064 ], [ -122.920664201999941, 49.20546918400003 ], [ -122.921262076999952, 49.20514388900007 ], [ -122.922438994999979, 49.204509117000036 ], [ -122.922972091999924, 49.204228792000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "584270000", "BldgCostT": "405035000", "sL_LossRatio": "0.888784813606259", "sL_AssetLoss": "3928780", "sL_BldgLoss": "3491840", "sL_StrLoss": "1642060", "sL_NStrLoss": "1849780", "sL_ContLoss": "436940", "geom_point": "0101000020E6100000CB8CF9B130BB5EC0DBB3DFC16C9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.922738101999983, 49.206311401000022 ], [ -122.925040500999899, 49.205050007000118 ], [ -122.925520230999979, 49.205433098000107 ], [ -122.925998472999964, 49.205814291000124 ], [ -122.926504504999983, 49.206213414000089 ], [ -122.926970008999916, 49.206582595000064 ], [ -122.924647458, 49.207825687000117 ], [ -122.924636808999978, 49.20783140300005 ], [ -122.924168907999928, 49.207457602000076 ], [ -122.923669521999955, 49.207063202000022 ], [ -122.923191181999954, 49.20668109900005 ], [ -122.922738101999983, 49.206311401000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243354333", "BldgCostT": "166083333", "sL_LossRatio": "0.842115563383727", "sL_AssetLoss": "1635120", "sL_BldgLoss": "1376960", "sL_StrLoss": "629940", "sL_NStrLoss": "747020", "sL_ContLoss": "258160", "geom_point": "0101000020E61000002FF1994F0ABB5EC0517DAD6C9B9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.920308708, 49.208243794000097 ], [ -122.921956196999986, 49.207343091000141 ], [ -122.92258500299998, 49.207006095000075 ], [ -122.923191181999954, 49.20668109900005 ], [ -122.923669521999955, 49.207063202000022 ], [ -122.924168907999928, 49.207457602000076 ], [ -122.924636808999978, 49.20783140300005 ], [ -122.92341619099993, 49.208503697000047 ], [ -122.922929789999955, 49.208120490000113 ], [ -122.921265276999975, 49.209008997000069 ], [ -122.920308708, 49.208243794000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258361244", "BldgCostT": "173204076", "sL_LossRatio": "0.799513509536684", "sL_AssetLoss": "2174760", "sL_BldgLoss": "1738750", "sL_StrLoss": "725270", "sL_NStrLoss": "1013480", "sL_ContLoss": "436010", "geom_point": "0101000020E6100000570FB99535BB5EC014183E64C29A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92341619099993, 49.208503697000047 ], [ -122.924636808999978, 49.20783140300005 ], [ -122.925119016999986, 49.208217200000092 ], [ -122.925608998, 49.208610482 ], [ -122.926406876, 49.209244891000075 ], [ -122.926885299, 49.209625313000124 ], [ -122.925648497999987, 49.210273804000053 ], [ -122.923885519999928, 49.208877503000096 ], [ -122.92341619099993, 49.208503697000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "398009758", "BldgCostT": "270833459", "sL_LossRatio": "0.807434021478346", "sL_AssetLoss": "2529990", "sL_BldgLoss": "2042800", "sL_StrLoss": "880790", "sL_NStrLoss": "1162010", "sL_ContLoss": "487190", "geom_point": "0101000020E61000001F3B2CFD19BB5EC0D35636BDD59A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.921265276999975, 49.209008997000069 ], [ -122.922929789999955, 49.208120490000113 ], [ -122.92341619099993, 49.208503697000047 ], [ -122.923885519999928, 49.208877503000096 ], [ -122.925648497999987, 49.210273804000053 ], [ -122.924021584999963, 49.211174190000122 ], [ -122.923184493999941, 49.210551187000071 ], [ -122.922243491999936, 49.209779307000048 ], [ -122.921265276999975, 49.209008997000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228860246", "BldgCostT": "143749731", "sL_LossRatio": "0.739050048205416", "sL_AssetLoss": "1638820", "sL_BldgLoss": "1211170", "sL_StrLoss": "525740", "sL_NStrLoss": "685430", "sL_ContLoss": "427650", "geom_point": "0101000020E610000032D228B002BB5EC0C179820E049B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.920954520999913, 49.211626301000116 ], [ -122.920067702, 49.210926204000081 ], [ -122.921110711999958, 49.210367701000052 ], [ -122.922243491999936, 49.209779307000048 ], [ -122.923184493999941, 49.210551187000071 ], [ -122.924021584999963, 49.211174190000122 ], [ -122.92299763299998, 49.211731487000115 ], [ -122.92227640699997, 49.21212400600011 ], [ -122.921860388999946, 49.212350400000048 ], [ -122.920954520999913, 49.211626301000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122234698", "BldgCostT": "76970270", "sL_LossRatio": "0.717958568231803", "sL_AssetLoss": "1041230", "sL_BldgLoss": "747560", "sL_StrLoss": "325800", "sL_NStrLoss": "421760", "sL_ContLoss": "293670", "geom_point": "0101000020E6100000250527ECECBA5EC0E08164AECA9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.920178019999966, 49.209635601000031 ], [ -122.919186930999899, 49.208854104000046 ], [ -122.920308708, 49.208243794000097 ], [ -122.921265276999975, 49.209008997000069 ], [ -122.922243491999936, 49.209779307000048 ], [ -122.921110711999958, 49.210367701000052 ], [ -122.920178019999966, 49.209635601000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236204343", "BldgCostT": "160839119", "sL_LossRatio": "0.817641271953937", "sL_AssetLoss": "1382440", "sL_BldgLoss": "1130340", "sL_StrLoss": "475430", "sL_NStrLoss": "654910", "sL_ContLoss": "252100", "geom_point": "0101000020E6100000BB40F638DBBA5EC02F32E0B0DD9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.918152209999974, 49.209411887000066 ], [ -122.919186930999899, 49.208854104000046 ], [ -122.920178019999966, 49.209635601000031 ], [ -122.921110711999958, 49.210367701000052 ], [ -122.920067702, 49.210926204000081 ], [ -122.919436687999934, 49.210425202000067 ], [ -122.919145908999951, 49.210196184000075 ], [ -122.918152209999974, 49.209411887000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140064251", "BldgCostT": "89545001", "sL_LossRatio": "0.728226548888027", "sL_AssetLoss": "1314330", "sL_BldgLoss": "957130", "sL_StrLoss": "410080", "sL_NStrLoss": "547050", "sL_ContLoss": "357200", "geom_point": "0101000020E6100000B7142DCCC4BA5EC0606523C6A19A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91727919399996, 49.207304899000043 ], [ -122.91837129000001, 49.206709102000026 ], [ -122.919342576999924, 49.207479188000072 ], [ -122.920308708, 49.208243794000097 ], [ -122.919186930999899, 49.208854104000046 ], [ -122.918152209999974, 49.209411887000066 ], [ -122.917196305999937, 49.208657501000111 ], [ -122.916781608999941, 49.208331196000039 ], [ -122.916211881999942, 49.207878895000057 ], [ -122.91727919399996, 49.207304899000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385081947", "BldgCostT": "267140269", "sL_LossRatio": "0.844155069285959", "sL_AssetLoss": "2681640", "sL_BldgLoss": "2263720", "sL_StrLoss": "1025570", "sL_NStrLoss": "1238150", "sL_ContLoss": "417920", "geom_point": "0101000020E61000000340687FD8BA5EC044DEACA06D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.917828775999922, 49.205123292000103 ], [ -122.918607394999981, 49.204701414000048 ], [ -122.920033607999969, 49.205812498000064 ], [ -122.921000793999909, 49.206581609000061 ], [ -122.921956196999986, 49.207343091000141 ], [ -122.920308708, 49.208243794000097 ], [ -122.919342576999924, 49.207479188000072 ], [ -122.91837129000001, 49.206709102000026 ], [ -122.916970104999919, 49.2055942060001 ], [ -122.917828775999922, 49.205123292000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "300337424", "BldgCostT": "191320125", "sL_LossRatio": "0.69199848410436", "sL_AssetLoss": "3174361", "sL_BldgLoss": "2196653", "sL_StrLoss": "987163", "sL_NStrLoss": "1209490", "sL_ContLoss": "977708", "geom_point": "0101000020E6100000874AA8E8A1BA5EC0014B7D72F79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.914091104999969, 49.21160660000006 ], [ -122.912151111999947, 49.210068988000046 ], [ -122.913339452999978, 49.209429099000076 ], [ -122.913354337999962, 49.209421040000102 ], [ -122.913369516999978, 49.209412906000104 ], [ -122.913518093999983, 49.209332139000054 ], [ -122.913531788999975, 49.20932469600011 ], [ -122.914713180999968, 49.208687398000073 ], [ -122.915688520999979, 49.209458496000103 ], [ -122.917196305999937, 49.208657501000111 ], [ -122.918152209999974, 49.209411887000066 ], [ -122.919145908999951, 49.210196184000075 ], [ -122.919436687999934, 49.210425202000067 ], [ -122.920067702, 49.210926204000081 ], [ -122.918570090999978, 49.211779800000087 ], [ -122.917381943999942, 49.212415155000045 ], [ -122.91546622299991, 49.210876995000028 ], [ -122.915457480999947, 49.210869993000095 ], [ -122.915445464999934, 49.210876328000047 ], [ -122.915296811999923, 49.210954592000064 ], [ -122.915305499999988, 49.210961584000081 ], [ -122.91722259, 49.212499795000049 ], [ -122.917202909999943, 49.212510165000069 ], [ -122.916018000999941, 49.213134697000037 ], [ -122.914091104999969, 49.21160660000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "390409114", "BldgCostT": "258266936", "sL_LossRatio": "0.723820135597061", "sL_AssetLoss": "3706570", "sL_BldgLoss": "2682890", "sL_StrLoss": "1235720", "sL_NStrLoss": "1447170", "sL_ContLoss": "1023680", "geom_point": "0101000020E6100000A4A45567D4BA5EC09F521C0F4F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91722259, 49.212499795000049 ], [ -122.915305499999988, 49.210961584000081 ], [ -122.915296811999923, 49.210954592000064 ], [ -122.915445464999934, 49.210876328000047 ], [ -122.915457480999947, 49.210869993000095 ], [ -122.91546622299991, 49.210876995000028 ], [ -122.917381943999942, 49.212415155000045 ], [ -122.918570090999978, 49.211779800000087 ], [ -122.920067702, 49.210926204000081 ], [ -122.920954520999913, 49.211626301000116 ], [ -122.921860388999946, 49.212350400000048 ], [ -122.920332811999941, 49.213158088000057 ], [ -122.92119328699999, 49.213841199000093 ], [ -122.921981316999947, 49.214480902000048 ], [ -122.920731600999929, 49.215154195000117 ], [ -122.919433394999942, 49.215853995000039 ], [ -122.91860561499999, 49.215195206000033 ], [ -122.917787065999988, 49.21454118500008 ], [ -122.917321499999943, 49.214173801000108 ], [ -122.916897909999989, 49.213835603000092 ], [ -122.916463895999939, 49.213487988000097 ], [ -122.916018000999941, 49.213134697000037 ], [ -122.917202909999943, 49.212510165000069 ], [ -122.91722259, 49.212499795000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134568561", "BldgCostT": "90713190", "sL_LossRatio": "0.747134732526921", "sL_AssetLoss": "1731950", "sL_BldgLoss": "1294000", "sL_StrLoss": "597640", "sL_NStrLoss": "696360", "sL_ContLoss": "437950", "geom_point": "0101000020E6100000BCFDC94A99BA5EC0031D1095849B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.913507403999915, 49.211921404000051 ], [ -122.914091104999969, 49.21160660000006 ], [ -122.916018000999941, 49.213134697000037 ], [ -122.916463895999939, 49.213487988000097 ], [ -122.916897909999989, 49.213835603000092 ], [ -122.917321499999943, 49.214173801000108 ], [ -122.917787065999988, 49.21454118500008 ], [ -122.91860561499999, 49.215195206000033 ], [ -122.919433394999942, 49.215853995000039 ], [ -122.915739313999936, 49.217847501000058 ], [ -122.915318509999963, 49.217504644 ], [ -122.914928114999981, 49.217186467000055 ], [ -122.914520460999952, 49.21685586500007 ], [ -122.914332798999965, 49.216788331000025 ], [ -122.914050144999933, 49.216559518000032 ], [ -122.914171116, 49.216494501000021 ], [ -122.913275432999967, 49.215801638000073 ], [ -122.913266447999902, 49.215794720000112 ], [ -122.912381688999957, 49.21508469900003 ], [ -122.912402999000037, 49.215073270000048 ], [ -122.912418801999976, 49.215064803000082 ], [ -122.914533682999945, 49.213930109000046 ], [ -122.91406041499998, 49.213555302000032 ], [ -122.91355309799998, 49.213154204000062 ], [ -122.913099602, 49.212791706000061 ], [ -122.912614901999987, 49.21240390800007 ], [ -122.913396383999952, 49.211981304000076 ], [ -122.913507403999915, 49.211921404000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129083887", "BldgCostT": "82317080", "sL_LossRatio": "0.709341699572673", "sL_AssetLoss": "1848700", "sL_BldgLoss": "1311360", "sL_StrLoss": "600530", "sL_NStrLoss": "710830", "sL_ContLoss": "537340", "geom_point": "0101000020E6100000DCC1676F59BA5EC0C56E76D6349B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911917259999925, 49.214715075000086 ], [ -122.911908501999974, 49.214708107000057 ], [ -122.911798985999965, 49.214766198000071 ], [ -122.911328413999982, 49.214385639000099 ], [ -122.911319689999956, 49.214378602000096 ], [ -122.910840600999933, 49.213988287000056 ], [ -122.910937217999958, 49.213938789000061 ], [ -122.910455196999948, 49.213551095000106 ], [ -122.910345574999965, 49.213610094000039 ], [ -122.908948198999923, 49.212478994000023 ], [ -122.908451691999971, 49.212075181000039 ], [ -122.908443018999961, 49.212068096000117 ], [ -122.908556878999946, 49.212006490000135 ], [ -122.909104991999982, 49.211711412000071 ], [ -122.910674996999958, 49.210866295000073 ], [ -122.911415196999926, 49.210466800000098 ], [ -122.912151111999947, 49.210068988000046 ], [ -122.914091104999969, 49.21160660000006 ], [ -122.913507403999915, 49.211921404000051 ], [ -122.913396383999952, 49.211981304000076 ], [ -122.912614901999987, 49.21240390800007 ], [ -122.913099602, 49.212791706000061 ], [ -122.91355309799998, 49.213154204000062 ], [ -122.91406041499998, 49.213555302000032 ], [ -122.914533682999945, 49.213930109000046 ], [ -122.912418801999976, 49.215064803000082 ], [ -122.912402999000037, 49.215073270000048 ], [ -122.912381688999957, 49.21508469900003 ], [ -122.911917259999925, 49.214715075000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115433166", "BldgCostT": "75636666", "sL_LossRatio": "0.732173076688946", "sL_AssetLoss": "1642740", "sL_BldgLoss": "1202770", "sL_StrLoss": "551540", "sL_NStrLoss": "651230", "sL_ContLoss": "439970", "geom_point": "0101000020E61000009C0DC72D05BA5EC04B7EDD4C799B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.902141612999969, 49.214604834000156 ], [ -122.901793128999913, 49.21432342500006 ], [ -122.901233780999945, 49.213871723000125 ], [ -122.901087831999959, 49.21375387200009 ], [ -122.90107910799999, 49.213746775000075 ], [ -122.899845031999973, 49.212742785000088 ], [ -122.899731711999962, 49.212662404000163 ], [ -122.899672446999958, 49.212620340000051 ], [ -122.899633068999961, 49.212592405000109 ], [ -122.89945981599999, 49.212469464000016 ], [ -122.89938881499998, 49.212419109000081 ], [ -122.898921174999941, 49.21208735700003 ], [ -122.899532952999905, 49.211763499000078 ], [ -122.899695277999925, 49.211679062000051 ], [ -122.900076091999978, 49.211480906000105 ], [ -122.90008682699991, 49.211474962000082 ], [ -122.90019552199999, 49.211414874000084 ], [ -122.900237120999961, 49.211391853000102 ], [ -122.900270684999967, 49.211373284000089 ], [ -122.900329757999913, 49.211340462000116 ], [ -122.900507832999921, 49.211242890000079 ], [ -122.900798992999924, 49.21108154800006 ], [ -122.901127757999959, 49.210899444000084 ], [ -122.901137997, 49.210893381000076 ], [ -122.901191823999909, 49.210861597000083 ], [ -122.901238998999986, 49.210833725000043 ], [ -122.901287739999958, 49.210804932000073 ], [ -122.90160630299999, 49.210617698000043 ], [ -122.902419131999977, 49.211271333000063 ], [ -122.903006504999937, 49.211743602000062 ], [ -122.904097328999939, 49.211171272000101 ], [ -122.904551832999942, 49.211517678000092 ], [ -122.905854011999935, 49.21082082200008 ], [ -122.906407414999975, 49.210523893000079 ], [ -122.906451806999897, 49.210500100000075 ], [ -122.906460577999894, 49.210507034000017 ], [ -122.908443018999961, 49.212068096000117 ], [ -122.908451691999971, 49.212075181000039 ], [ -122.908948198999923, 49.212478994000023 ], [ -122.910345574999965, 49.213610094000039 ], [ -122.910455196999948, 49.213551095000106 ], [ -122.910937217999958, 49.213938789000061 ], [ -122.910840600999933, 49.213988287000056 ], [ -122.911319689999956, 49.214378602000096 ], [ -122.911328413999982, 49.214385639000099 ], [ -122.911798985999965, 49.214766198000071 ], [ -122.911908501999974, 49.214708107000057 ], [ -122.911917259999925, 49.214715075000086 ], [ -122.912381688999957, 49.21508469900003 ], [ -122.913266447999902, 49.215794720000112 ], [ -122.913185271999936, 49.215839258000095 ], [ -122.913109253999949, 49.215880894000044 ], [ -122.911259416999954, 49.216894897000039 ], [ -122.911922653999937, 49.217417625000024 ], [ -122.912125379999921, 49.217577388000088 ], [ -122.91094111299999, 49.218212806000054 ], [ -122.910157419999933, 49.218631753000061 ], [ -122.910037387999949, 49.218695910000079 ], [ -122.910021187999959, 49.218704600000102 ], [ -122.909589663999938, 49.218935829000053 ], [ -122.908623403999954, 49.219453552000054 ], [ -122.908457404000032, 49.219542484000058 ], [ -122.908386602999954, 49.219580640000082 ], [ -122.908374827000017, 49.219587005000072 ], [ -122.906119602999922, 49.217794393000077 ], [ -122.905475761999966, 49.217283359000092 ], [ -122.90492912799999, 49.21684949400008 ], [ -122.904474407999928, 49.216488523000123 ], [ -122.904465755999922, 49.21648151800013 ], [ -122.904431797999919, 49.216454086000034 ], [ -122.90349644599999, 49.215698863000057 ], [ -122.902141612999969, 49.214604834000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107567249", "BldgCostT": "71294999", "sL_LossRatio": "0.743599977592919", "sL_AssetLoss": "1428120", "sL_BldgLoss": "1061950", "sL_StrLoss": "483920", "sL_NStrLoss": "578030", "sL_ContLoss": "366170", "geom_point": "0101000020E6100000118BC677B5B95EC0F7059198629C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900232892999924, 49.220564008000082 ], [ -122.900275007999966, 49.220241804000096 ], [ -122.900354290999928, 49.220061189000035 ], [ -122.900560723999931, 49.219909495000088 ], [ -122.900864504999916, 49.219779498000101 ], [ -122.90103501599998, 49.219754599000041 ], [ -122.902451308999929, 49.219759297000031 ], [ -122.902709494999968, 49.21979828800005 ], [ -122.903913409999944, 49.220209407000056 ], [ -122.903956184, 49.220245797000125 ], [ -122.904135516999958, 49.220377989000092 ], [ -122.904356495999934, 49.220460885000108 ], [ -122.904663413999984, 49.22052243200006 ], [ -122.904807512999952, 49.220551306000047 ], [ -122.90545128399999, 49.220510287000131 ], [ -122.905768389999963, 49.220489691000061 ], [ -122.906091186999944, 49.220589087000036 ], [ -122.906254900999954, 49.220727989000046 ], [ -122.904915405999972, 49.221465195000093 ], [ -122.904635297999974, 49.221754502000117 ], [ -122.904504457999906, 49.221889854000018 ], [ -122.904233460999933, 49.222170229000028 ], [ -122.904119291999976, 49.222288314000075 ], [ -122.903853895999944, 49.222563594000107 ], [ -122.903736485999957, 49.222685193000132 ], [ -122.903367180999965, 49.223067593000067 ], [ -122.902723097999925, 49.223771694000078 ], [ -122.902218410999978, 49.223765289000063 ], [ -122.901363902999918, 49.223754208000081 ], [ -122.899332832, 49.223727383000039 ], [ -122.898697505999948, 49.223719009000042 ], [ -122.89870545399999, 49.223296412000131 ], [ -122.898757181999954, 49.220544991000054 ], [ -122.900232892999924, 49.220564008000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117175083", "BldgCostT": "73233333", "sL_LossRatio": "0.717481899267741", "sL_AssetLoss": "1506707", "sL_BldgLoss": "1081035", "sL_StrLoss": "488125", "sL_NStrLoss": "592910", "sL_ContLoss": "425672", "geom_point": "0101000020E61000007F3638320BBA5EC0F1AF2F23869C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905109389999936, 49.225407894000035 ], [ -122.904668503999986, 49.225046495000065 ], [ -122.903710984999975, 49.225529808000068 ], [ -122.903431783999906, 49.225276207000043 ], [ -122.903351448999928, 49.225267513000105 ], [ -122.902601272999959, 49.225186192000052 ], [ -122.902614813999932, 49.224860491000044 ], [ -122.902654102999975, 49.223859808000064 ], [ -122.902723097999925, 49.223771694000078 ], [ -122.903367180999965, 49.223067593000067 ], [ -122.903736485999957, 49.222685193000132 ], [ -122.903853895999944, 49.222563594000107 ], [ -122.904119291999976, 49.222288314000075 ], [ -122.904233460999933, 49.222170229000028 ], [ -122.904504457999906, 49.221889854000018 ], [ -122.904635297999974, 49.221754502000117 ], [ -122.904915405999972, 49.221465195000093 ], [ -122.906254900999954, 49.220727989000046 ], [ -122.906994093999984, 49.220325794000154 ], [ -122.907379346999974, 49.220119642000093 ], [ -122.908007181999963, 49.219783723000077 ], [ -122.908194998999988, 49.219683219000032 ], [ -122.908374827000017, 49.219587005000072 ], [ -122.910008262999966, 49.220907127000025 ], [ -122.911883251999953, 49.222422299000073 ], [ -122.91189190599999, 49.222429304000094 ], [ -122.911277846999951, 49.222770414000095 ], [ -122.910556282999949, 49.223171201000127 ], [ -122.909459426999931, 49.223767888000083 ], [ -122.90898594, 49.224025449000067 ], [ -122.908479608000022, 49.224300892000024 ], [ -122.906651312999941, 49.225266393000069 ], [ -122.905607, 49.225815801000081 ], [ -122.905598395999931, 49.225808749000052 ], [ -122.905109389999936, 49.225407894000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119764916", "BldgCostT": "75731666", "sL_LossRatio": "0.728890003624545", "sL_AssetLoss": "1343617", "sL_BldgLoss": "979349", "sL_StrLoss": "450349", "sL_NStrLoss": "529000", "sL_ContLoss": "364268", "geom_point": "0101000020E61000007184B99BAFB95EC00259D3E5E29C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901214904999946, 49.227607362000121 ], [ -122.90122668099994, 49.227167409000046 ], [ -122.89861300199999, 49.227142683000103 ], [ -122.89862581499996, 49.226518789000082 ], [ -122.898649510999988, 49.225609485000085 ], [ -122.898661819999987, 49.225157599000063 ], [ -122.89867390699996, 49.224668794000102 ], [ -122.898685893999954, 49.22418689400012 ], [ -122.898697505999948, 49.223719009000042 ], [ -122.899332832, 49.223727383000039 ], [ -122.901363902999918, 49.223754208000081 ], [ -122.902218410999978, 49.223765289000063 ], [ -122.902723097999925, 49.223771694000078 ], [ -122.902654102999975, 49.223859808000064 ], [ -122.902614813999932, 49.224860491000044 ], [ -122.902601272999959, 49.225186192000052 ], [ -122.903351448999928, 49.225267513000105 ], [ -122.903431783999906, 49.225276207000043 ], [ -122.903710984999975, 49.225529808000068 ], [ -122.904668503999986, 49.225046495000065 ], [ -122.905109389999936, 49.225407894000035 ], [ -122.905598395999931, 49.225808749000052 ], [ -122.905607, 49.225815801000081 ], [ -122.904609516999969, 49.226342998000106 ], [ -122.903527605999898, 49.226919991000067 ], [ -122.902596768999956, 49.227412487000052 ], [ -122.902379183999983, 49.227527593000062 ], [ -122.901200588, 49.228154101000037 ], [ -122.901204607999944, 49.227991988000042 ], [ -122.901214904999946, 49.227607362000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116556083", "BldgCostT": "77258333", "sL_LossRatio": "0.730875681399742", "sL_AssetLoss": "1662020", "sL_BldgLoss": "1214730", "sL_StrLoss": "533550", "sL_NStrLoss": "681180", "sL_ContLoss": "447290", "geom_point": "0101000020E610000031578A0DEBB95EC0D1455C63449D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904003191999948, 49.231276008000094 ], [ -122.903618802999972, 49.229422613000111 ], [ -122.903243506999942, 49.229619177000068 ], [ -122.903032468999953, 49.229729705000068 ], [ -122.902459305999969, 49.230029913000116 ], [ -122.902015379999938, 49.230264003000066 ], [ -122.901999609999933, 49.230277345000061 ], [ -122.901810212, 49.230437289000122 ], [ -122.901602402999984, 49.230733199000042 ], [ -122.901264297999958, 49.230449604000064 ], [ -122.901201299999968, 49.230364898000069 ], [ -122.901168623999951, 49.22992970800005 ], [ -122.901321788999937, 49.229176493000118 ], [ -122.901432380999964, 49.228795896000115 ], [ -122.901448994999953, 49.228546150000064 ], [ -122.901449581999955, 49.228536894000044 ], [ -122.901418897, 49.228400903000086 ], [ -122.901200588, 49.228154101000037 ], [ -122.902379183999983, 49.227527593000062 ], [ -122.902596768999956, 49.227412487000052 ], [ -122.903527605999898, 49.226919991000067 ], [ -122.904609516999969, 49.226342998000106 ], [ -122.905607, 49.225815801000081 ], [ -122.906017485999939, 49.226144658000166 ], [ -122.907449795, 49.2272921100001 ], [ -122.907545796999955, 49.227335645000053 ], [ -122.907557765999954, 49.227341090000039 ], [ -122.908526661999957, 49.228130146000105 ], [ -122.908535353999952, 49.228137196000077 ], [ -122.909325212999931, 49.228776455000087 ], [ -122.909370795999934, 49.228812891000068 ], [ -122.909078421999965, 49.228969594000048 ], [ -122.909067608999948, 49.228975392000095 ], [ -122.906124001999942, 49.230562110000065 ], [ -122.905262292999936, 49.231027503000121 ], [ -122.904272474999971, 49.23156119800008 ], [ -122.904226689999945, 49.231525877000131 ], [ -122.904066391999933, 49.231399508000017 ], [ -122.904003191999948, 49.231276008000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84483249", "BldgCostT": "57264999", "sL_LossRatio": "0.7462273121925", "sL_AssetLoss": "1209350", "sL_BldgLoss": "902450", "sL_StrLoss": "417680", "sL_NStrLoss": "484770", "sL_ContLoss": "306900", "geom_point": "0101000020E61000005E464EB297B95EC04D410AE05E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89849420199999, 49.231674403000056 ], [ -122.89850709699999, 49.231176049000027 ], [ -122.898520191999921, 49.230668894000054 ], [ -122.898537300999962, 49.23010547400002 ], [ -122.898554515999962, 49.229538292000086 ], [ -122.898572044999923, 49.228900354000089 ], [ -122.898597699999968, 49.22796751100006 ], [ -122.898605260999929, 49.22756000400004 ], [ -122.89861300199999, 49.227142683000103 ], [ -122.90122668099994, 49.227167409000046 ], [ -122.901214904999946, 49.227607362000121 ], [ -122.901204607999944, 49.227991988000042 ], [ -122.901200588, 49.228154101000037 ], [ -122.901418897, 49.228400903000086 ], [ -122.901449581999955, 49.228536894000044 ], [ -122.901448994999953, 49.228546150000064 ], [ -122.901432380999964, 49.228795896000115 ], [ -122.901321788999937, 49.229176493000118 ], [ -122.901168623999951, 49.22992970800005 ], [ -122.901201299999968, 49.230364898000069 ], [ -122.901264297999958, 49.230449604000064 ], [ -122.901602402999984, 49.230733199000042 ], [ -122.901253910999955, 49.231127957000105 ], [ -122.901005189, 49.231409702000114 ], [ -122.900994082999929, 49.23151480600005 ], [ -122.900768262999989, 49.231332961000106 ], [ -122.899893700999925, 49.231719406000138 ], [ -122.899084852, 49.232139942000131 ], [ -122.89849420199999, 49.231674403000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88606018", "BldgCostT": "59280230", "sL_LossRatio": "0.7392798662755", "sL_AssetLoss": "1172560", "sL_BldgLoss": "866850", "sL_StrLoss": "384470", "sL_NStrLoss": "482380", "sL_ContLoss": "305710", "geom_point": "0101000020E6100000E0C0600EADB95EC00A28607DB49D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.898478682999951, 49.232235293 ], [ -122.89849420199999, 49.231674403000056 ], [ -122.899084852, 49.232139942000131 ], [ -122.899893700999925, 49.231719406000138 ], [ -122.900768262999989, 49.231332961000106 ], [ -122.900994082999929, 49.23151480600005 ], [ -122.901005189, 49.231409702000114 ], [ -122.901253910999955, 49.231127957000105 ], [ -122.901602402999984, 49.230733199000042 ], [ -122.901810212, 49.230437289000122 ], [ -122.901999609999933, 49.230277345000061 ], [ -122.902015379999938, 49.230264003000066 ], [ -122.902459305999969, 49.230029913000116 ], [ -122.903032468999953, 49.229729705000068 ], [ -122.903243506999942, 49.229619177000068 ], [ -122.903618802999972, 49.229422613000111 ], [ -122.904003191999948, 49.231276008000094 ], [ -122.904066391999933, 49.231399508000017 ], [ -122.904226689999945, 49.231525877000131 ], [ -122.904272474999971, 49.23156119800008 ], [ -122.903272815999955, 49.232098295000135 ], [ -122.902640322999957, 49.232439640000109 ], [ -122.902345595999961, 49.232598696000053 ], [ -122.901528107999951, 49.233039085000023 ], [ -122.901371114999947, 49.233125438000087 ], [ -122.901359925999941, 49.23313159600005 ], [ -122.900812558999959, 49.2334284310001 ], [ -122.900757283999923, 49.233458411000065 ], [ -122.900279795999936, 49.233719487000073 ], [ -122.899913596999966, 49.233918884000019 ], [ -122.899734075, 49.234016553000082 ], [ -122.89921829799998, 49.234297096000113 ], [ -122.899080084999952, 49.234372402000133 ], [ -122.898682184999956, 49.234587874000049 ], [ -122.898413417999947, 49.234733405000064 ], [ -122.898413683999962, 49.234687437000019 ], [ -122.898431599999981, 49.233905084000106 ], [ -122.898448219999963, 49.233317027000062 ], [ -122.898464808999989, 49.232730409000091 ], [ -122.898468002999962, 49.232615479000081 ], [ -122.898478682999951, 49.232235293 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136848000", "BldgCostT": "90255000", "sL_LossRatio": "0.725868402160984", "sL_AssetLoss": "1908390", "sL_BldgLoss": "1385240", "sL_StrLoss": "624950", "sL_NStrLoss": "760290", "sL_ContLoss": "523150", "geom_point": "0101000020E610000031B39E735AB95EC0F107A815CB9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.895633094999965, 49.235714632000054 ], [ -122.895671318, 49.233911196000129 ], [ -122.893309597999973, 49.233887677000034 ], [ -122.892659413999979, 49.233881199000102 ], [ -122.892688625999938, 49.233095925000079 ], [ -122.8927076, 49.232587099000092 ], [ -122.892720608999966, 49.231818373000046 ], [ -122.892723928999942, 49.231625398000062 ], [ -122.893372304999943, 49.231640496000061 ], [ -122.894085901999944, 49.231688090000056 ], [ -122.894512114999912, 49.231678699000021 ], [ -122.895558787999931, 49.231118783000035 ], [ -122.896246084999945, 49.23075659200012 ], [ -122.897380393, 49.230157692000027 ], [ -122.898554515999962, 49.229538292000086 ], [ -122.898537300999962, 49.23010547400002 ], [ -122.898520191999921, 49.230668894000054 ], [ -122.89850709699999, 49.231176049000027 ], [ -122.89849420199999, 49.231674403000056 ], [ -122.898478682999951, 49.232235293 ], [ -122.898468002999962, 49.232615479000081 ], [ -122.898464808999989, 49.232730409000091 ], [ -122.898448219999963, 49.233317027000062 ], [ -122.898431599999981, 49.233905084000106 ], [ -122.898413683999962, 49.234687437000019 ], [ -122.898413417999947, 49.234733405000064 ], [ -122.897360266999968, 49.235286858000052 ], [ -122.897332139999946, 49.235295759000046 ], [ -122.897041827999928, 49.235387611000064 ], [ -122.89692293399996, 49.235420220000059 ], [ -122.89683372099995, 49.235419460000053 ], [ -122.896369690999919, 49.235533537000073 ], [ -122.895633094999965, 49.235714632000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "488669492", "BldgCostT": "330754571", "sL_LossRatio": "0.808915472560078", "sL_AssetLoss": "3397240", "sL_BldgLoss": "2748080", "sL_StrLoss": "1231660", "sL_NStrLoss": "1516420", "sL_ContLoss": "649160", "geom_point": "0101000020E61000003A4D44643DB95EC00A6C3AA77E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.894085901999944, 49.231688090000056 ], [ -122.893372304999943, 49.231640496000061 ], [ -122.892723928999942, 49.231625398000062 ], [ -122.892758787999952, 49.230243488000085 ], [ -122.892773507999934, 49.229715099000025 ], [ -122.892784492999922, 49.229346094000078 ], [ -122.896257614999968, 49.229394804000023 ], [ -122.896250751999943, 49.230220677000077 ], [ -122.896250196, 49.230285492000078 ], [ -122.896246084999945, 49.23075659200012 ], [ -122.895558787999931, 49.231118783000035 ], [ -122.894512114999912, 49.231678699000021 ], [ -122.894085901999944, 49.231688090000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282036789", "BldgCostT": "189328047", "sL_LossRatio": "0.805243161862035", "sL_AssetLoss": "1979340", "sL_BldgLoss": "1593850", "sL_StrLoss": "720000", "sL_NStrLoss": "873850", "sL_ContLoss": "385490", "geom_point": "0101000020E6100000C30280DF56B95EC031E475504B9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896250751999943, 49.230220677000077 ], [ -122.896257614999968, 49.229394804000023 ], [ -122.892784492999922, 49.229346094000078 ], [ -122.892820366999956, 49.228461092000025 ], [ -122.892843244999966, 49.227897301000112 ], [ -122.892843599999978, 49.227888301000121 ], [ -122.893624550999917, 49.227900012000099 ], [ -122.895588838, 49.227929478000114 ], [ -122.896303981999893, 49.227940198000091 ], [ -122.8974493, 49.227956099000068 ], [ -122.898597699999968, 49.22796751100006 ], [ -122.898572044999923, 49.228900354000089 ], [ -122.898554515999962, 49.229538292000086 ], [ -122.897380393, 49.230157692000027 ], [ -122.896246084999945, 49.23075659200012 ], [ -122.896250196, 49.230285492000078 ], [ -122.896250751999943, 49.230220677000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "291812622", "BldgCostT": "197356380", "sL_LossRatio": "0.806215667107237", "sL_AssetLoss": "2126787", "sL_BldgLoss": "1714649", "sL_StrLoss": "794989", "sL_NStrLoss": "919660", "sL_ContLoss": "412138", "geom_point": "0101000020E61000002BB97AE35EB95EC01C4FEBD3FD9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896303981999893, 49.227940198000091 ], [ -122.89633121599995, 49.226506801000021 ], [ -122.892865608999941, 49.2264519880001 ], [ -122.892890789999925, 49.225541894000081 ], [ -122.898649510999988, 49.225609485000085 ], [ -122.89862581499996, 49.226518789000082 ], [ -122.89861300199999, 49.227142683000103 ], [ -122.898605260999929, 49.22756000400004 ], [ -122.898597699999968, 49.22796751100006 ], [ -122.8974493, 49.227956099000068 ], [ -122.896303981999893, 49.227940198000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227721841", "BldgCostT": "141340807", "sL_LossRatio": "0.648127960522487", "sL_AssetLoss": "2577670", "sL_BldgLoss": "1670660", "sL_StrLoss": "677550", "sL_NStrLoss": "993110", "sL_ContLoss": "907010", "geom_point": "0101000020E6100000A6C2D0D107B95EC0E1AD2D1B219D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887595813999894, 49.229636996000124 ], [ -122.887634193999972, 49.227835295000062 ], [ -122.887071715999937, 49.227829894000081 ], [ -122.887006072999924, 49.227815792000072 ], [ -122.886733342999918, 49.227757087000064 ], [ -122.887605329999957, 49.226948262000057 ], [ -122.887739278999945, 49.226823984000077 ], [ -122.888130239999953, 49.226461302000104 ], [ -122.88820459499999, 49.22639233400011 ], [ -122.889397580999983, 49.22528619300013 ], [ -122.889867798999916, 49.225481790000053 ], [ -122.890040801999987, 49.225521896000046 ], [ -122.892890789999925, 49.225541894000081 ], [ -122.892865608999941, 49.2264519880001 ], [ -122.89633121599995, 49.226506801000021 ], [ -122.896303981999893, 49.227940198000091 ], [ -122.895588838, 49.227929478000114 ], [ -122.893624550999917, 49.227900012000099 ], [ -122.892843599999978, 49.227888301000121 ], [ -122.892843244999966, 49.227897301000112 ], [ -122.892820366999956, 49.228461092000025 ], [ -122.892784492999922, 49.229346094000078 ], [ -122.892773507999934, 49.229715099000025 ], [ -122.891471516999928, 49.229681200000073 ], [ -122.890819231999927, 49.229672143000116 ], [ -122.890205413999965, 49.229663603000077 ], [ -122.889555452999957, 49.229657020000033 ], [ -122.888903383999917, 49.229650407000094 ], [ -122.888264436, 49.229643861000099 ], [ -122.887595813999894, 49.229636996000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121912852", "BldgCostT": "76271238", "sL_LossRatio": "0.686921806167401", "sL_AssetLoss": "1816000", "sL_BldgLoss": "1247450", "sL_StrLoss": "517640", "sL_NStrLoss": "729810", "sL_ContLoss": "568550", "geom_point": "0101000020E6100000D12346CFEDB85EC001E4CFE0849D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891471516999928, 49.229681200000073 ], [ -122.892773507999934, 49.229715099000025 ], [ -122.892758787999952, 49.230243488000085 ], [ -122.892723928999942, 49.231625398000062 ], [ -122.891429981999963, 49.231592610000071 ], [ -122.890787268999958, 49.231586738000026 ], [ -122.890147000999931, 49.231580913000073 ], [ -122.889468983999947, 49.23157023900005 ], [ -122.888849509999957, 49.231560503000019 ], [ -122.888205354999968, 49.231553542000029 ], [ -122.887552903999932, 49.231546490000078 ], [ -122.886941512999968, 49.231543480000049 ], [ -122.88623249599999, 49.231540001000042 ], [ -122.886329490999913, 49.229623791000094 ], [ -122.886945757999968, 49.229630224000076 ], [ -122.887595813999894, 49.229636996000124 ], [ -122.888264436, 49.229643861000099 ], [ -122.888903383999917, 49.229650407000094 ], [ -122.889555452999957, 49.229657020000033 ], [ -122.890205413999965, 49.229663603000077 ], [ -122.890819231999927, 49.229672143000116 ], [ -122.891471516999928, 49.229681200000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7892834", "BldgCostT": "4498334", "sL_LossRatio": "0.600141242937853", "sL_AssetLoss": "283200", "sL_BldgLoss": "169960", "sL_StrLoss": "68900", "sL_NStrLoss": "101060", "sL_ContLoss": "113240", "geom_point": "0101000020E610000091BC310C71B85EC06BF727C83A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.88156102799995, 49.220960485000035 ], [ -122.881561671999933, 49.22069062700011 ], [ -122.880325730999942, 49.220689353000125 ], [ -122.880327685999987, 49.219879781000017 ], [ -122.881975580999949, 49.219881477000051 ], [ -122.881975743999973, 49.219813065000011 ], [ -122.884566882999977, 49.220032290000077 ], [ -122.883231515999981, 49.220654703000093 ], [ -122.882130289999964, 49.221257109000149 ], [ -122.880852492999963, 49.22157899700008 ], [ -122.880323356999924, 49.22167246100004 ], [ -122.880325078999974, 49.220959211000057 ], [ -122.88156102799995, 49.220960485000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "337057261", "BldgCostT": "196397042", "sL_LossRatio": "0.616879792526639", "sL_AssetLoss": "7129590", "sL_BldgLoss": "4398100", "sL_StrLoss": "1649690", "sL_NStrLoss": "2748410", "sL_ContLoss": "2731490", "geom_point": "0101000020E610000004F350A19BB85EC0FFE3D607069D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.875320889999941, 49.23131488700011 ], [ -122.875061089999974, 49.231072815000118 ], [ -122.875040359999929, 49.230697649000085 ], [ -122.875034714999941, 49.230595708000116 ], [ -122.875158711, 49.230478905000062 ], [ -122.875434508999973, 49.230272403000072 ], [ -122.876204515999959, 49.230003200000048 ], [ -122.877015501999935, 49.229571705000055 ], [ -122.877236304999883, 49.229373695000042 ], [ -122.877347646999965, 49.229125510000081 ], [ -122.877324313, 49.229114200000041 ], [ -122.877174176999972, 49.229041392000063 ], [ -122.876841469999945, 49.228880030000084 ], [ -122.876475463999952, 49.228667599000033 ], [ -122.87641378099994, 49.228564018000021 ], [ -122.876409683999952, 49.226278265000133 ], [ -122.87649635699999, 49.225262284000053 ], [ -122.876734232999979, 49.225150107000047 ], [ -122.876726844999922, 49.225103909000012 ], [ -122.877643712999912, 49.224948693000066 ], [ -122.877918989999941, 49.224985688000068 ], [ -122.877834490999987, 49.22557959100007 ], [ -122.878123696999978, 49.225804593000092 ], [ -122.878343889999883, 49.225804606000096 ], [ -122.87854890899996, 49.225660789000067 ], [ -122.878701789000019, 49.224841909000084 ], [ -122.880983478999937, 49.22452999700004 ], [ -122.881408098999941, 49.224440195000035 ], [ -122.881711691999968, 49.224287796000041 ], [ -122.881918389999939, 49.224027198000073 ], [ -122.883746202999987, 49.223507413000107 ], [ -122.883937796999987, 49.223345013000049 ], [ -122.884860294999953, 49.223075798000082 ], [ -122.885436422999959, 49.222779601000056 ], [ -122.887272465999899, 49.222315491000096 ], [ -122.887325718999961, 49.222315542000075 ], [ -122.887325803999943, 49.222278319000083 ], [ -122.887632871999969, 49.222045984000054 ], [ -122.887738322999965, 49.222046086000098 ], [ -122.88773850599992, 49.221966056000056 ], [ -122.887800175999956, 49.221919395000086 ], [ -122.889052983999989, 49.221254305000123 ], [ -122.889933004999961, 49.2205093930001 ], [ -122.890002322999962, 49.220464113000084 ], [ -122.891674648999967, 49.22055316600008 ], [ -122.892355755999972, 49.220507180000084 ], [ -122.892391404999927, 49.220503902000132 ], [ -122.892582444999945, 49.220486413000131 ], [ -122.892626302999986, 49.220482407000077 ], [ -122.893018001999948, 49.220462594 ], [ -122.893901832999916, 49.220475583000095 ], [ -122.894548406999917, 49.220485098000061 ], [ -122.895164939999987, 49.220494222000092 ], [ -122.895904600999955, 49.220505198000104 ], [ -122.895881241999945, 49.221037111000015 ], [ -122.895838874999981, 49.222001595000073 ], [ -122.89581916399996, 49.222439766000115 ], [ -122.895812656999979, 49.222583581000031 ], [ -122.895801992999935, 49.222820295000069 ], [ -122.895783466999887, 49.223249179000071 ], [ -122.895764392000018, 49.223690390000094 ], [ -122.892938098999977, 49.223665779 ], [ -122.892912977999984, 49.224615493000044 ], [ -122.89290224299999, 49.225063199000019 ], [ -122.892890789999925, 49.225541894000081 ], [ -122.890040801999987, 49.225521896000046 ], [ -122.889867798999916, 49.225481790000053 ], [ -122.889397580999983, 49.22528619300013 ], [ -122.88820459499999, 49.22639233400011 ], [ -122.888130239999953, 49.226461302000104 ], [ -122.887739278999945, 49.226823984000077 ], [ -122.887605329999957, 49.226948262000057 ], [ -122.886733342999918, 49.227757087000064 ], [ -122.887006072999924, 49.227815792000072 ], [ -122.887071715999937, 49.227829894000081 ], [ -122.887634193999972, 49.227835295000062 ], [ -122.887595813999894, 49.229636996000124 ], [ -122.886945757999968, 49.229630224000076 ], [ -122.886329490999913, 49.229623791000094 ], [ -122.88623249599999, 49.231540001000042 ], [ -122.883529677, 49.23150962100005 ], [ -122.882908394999944, 49.231356516000083 ], [ -122.882455986999929, 49.232000202000044 ], [ -122.88221330499999, 49.232614587000093 ], [ -122.882207884999985, 49.232628201000068 ], [ -122.881929296999957, 49.233013797000041 ], [ -122.881817861999934, 49.23311169800013 ], [ -122.881665178, 49.233245811000053 ], [ -122.881351784999936, 49.233475493000093 ], [ -122.88117936799992, 49.233563457000059 ], [ -122.880989189999951, 49.233660498000049 ], [ -122.880543190999944, 49.23382149300005 ], [ -122.88038829, 49.233918798000104 ], [ -122.880351417000014, 49.233931661000064 ], [ -122.880276667999951, 49.233861308000094 ], [ -122.880013578999964, 49.23361359200009 ], [ -122.87888689, 49.233441191000097 ], [ -122.87720368, 49.232767904000042 ], [ -122.877131684999952, 49.232739090000102 ], [ -122.876761383999977, 49.232495597000145 ], [ -122.876729188999917, 49.232451827000027 ], [ -122.876580468, 49.232249590000038 ], [ -122.87617159499996, 49.23169370100004 ], [ -122.875320889999941, 49.23131488700011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5427167", "BldgCostT": "3061667", "sL_LossRatio": "0.600298751987664", "sL_AssetLoss": "207530", "sL_BldgLoss": "124580", "sL_StrLoss": "36430", "sL_NStrLoss": "88150", "sL_ContLoss": "82950", "geom_point": "0101000020E61000000CDC89AB2DB85EC007E96B8E5A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.877029217999947, 49.220955749000019 ], [ -122.879089130999944, 49.220957924000132 ], [ -122.879086854999926, 49.221890855 ], [ -122.878723709, 49.221954992000128 ], [ -122.877197795999962, 49.22198060300007 ], [ -122.876242393999974, 49.222074983000077 ], [ -122.876149560999934, 49.221494527000125 ], [ -122.87702787899994, 49.221495465000068 ], [ -122.877029217999947, 49.220955749000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175673061", "BldgCostT": "109988190", "sL_LossRatio": "0.715342863643951", "sL_AssetLoss": "2078771", "sL_BldgLoss": "1487034", "sL_StrLoss": "679394", "sL_NStrLoss": "807640", "sL_ContLoss": "591737", "geom_point": "0101000020E61000006DF1A5C7E1B85EC06F1E1C26F99D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.892270692999944, 49.237961702000092 ], [ -122.891542041999912, 49.237284751000047 ], [ -122.891447492999987, 49.23719691200003 ], [ -122.890891571999987, 49.236437054000106 ], [ -122.890886912000013, 49.236430698000071 ], [ -122.890296829999926, 49.236133392000049 ], [ -122.889939810999977, 49.235953495000025 ], [ -122.889183198999945, 49.235926494000104 ], [ -122.88798839599994, 49.236077395000095 ], [ -122.88789160799999, 49.236067441000031 ], [ -122.886886062999963, 49.2359639740001 ], [ -122.886314080999966, 49.235905101000085 ], [ -122.88581830599999, 49.235724200000092 ], [ -122.885187984999945, 49.235363898000088 ], [ -122.883113856999927, 49.235027688000109 ], [ -122.881507013999908, 49.234767200000086 ], [ -122.880931798999953, 49.234478095000064 ], [ -122.880656405999929, 49.234218817000134 ], [ -122.880351417000014, 49.233931661000064 ], [ -122.88038829, 49.233918798000104 ], [ -122.880543190999944, 49.23382149300005 ], [ -122.880989189999951, 49.233660498000049 ], [ -122.88117936799992, 49.233563457000059 ], [ -122.881351784999936, 49.233475493000093 ], [ -122.881665178, 49.233245811000053 ], [ -122.881817861999934, 49.23311169800013 ], [ -122.881929296999957, 49.233013797000041 ], [ -122.882207884999985, 49.232628201000068 ], [ -122.88221330499999, 49.232614587000093 ], [ -122.882455986999929, 49.232000202000044 ], [ -122.882908394999944, 49.231356516000083 ], [ -122.883529677, 49.23150962100005 ], [ -122.88623249599999, 49.231540001000042 ], [ -122.886941512999968, 49.231543480000049 ], [ -122.887552903999932, 49.231546490000078 ], [ -122.888205354999968, 49.231553542000029 ], [ -122.888849509999957, 49.231560503000019 ], [ -122.889468983999947, 49.23157023900005 ], [ -122.890147000999931, 49.231580913000073 ], [ -122.890787268999958, 49.231586738000026 ], [ -122.891429981999963, 49.231592610000071 ], [ -122.892723928999942, 49.231625398000062 ], [ -122.892720608999966, 49.231818373000046 ], [ -122.8927076, 49.232587099000092 ], [ -122.892688625999938, 49.233095925000079 ], [ -122.892659413999979, 49.233881199000102 ], [ -122.893309597999973, 49.233887677000034 ], [ -122.895671318, 49.233911196000129 ], [ -122.895633094999965, 49.235714632000054 ], [ -122.895618733999953, 49.236130472000092 ], [ -122.895616878999988, 49.236184416000086 ], [ -122.895613933999954, 49.23626877800006 ], [ -122.894951484999964, 49.236208928000075 ], [ -122.894729426999916, 49.238049165000092 ], [ -122.894191176999982, 49.23803525300012 ], [ -122.894192751999967, 49.237972238000147 ], [ -122.894192964999959, 49.237963227000101 ], [ -122.89419387199996, 49.237926875000049 ], [ -122.894207900999959, 49.237355944000086 ], [ -122.893679940999931, 49.23729881100008 ], [ -122.89362119299993, 49.237459700000052 ], [ -122.893393572999955, 49.237444320000108 ], [ -122.893292177999953, 49.237894986000093 ], [ -122.892872665999931, 49.237858186000082 ], [ -122.89286225699999, 49.237863170000011 ], [ -122.892506752999964, 49.238033420000129 ], [ -122.892270692999944, 49.237961702000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58581811", "BldgCostT": "38043190", "sL_LossRatio": "0.719910989474761", "sL_AssetLoss": "781930", "sL_BldgLoss": "562920", "sL_StrLoss": "256380", "sL_NStrLoss": "306540", "sL_ContLoss": "219010", "geom_point": "0101000020E6100000AA1FCCD481B95EC0311E42E8629E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893781614999966, 49.238323405000088 ], [ -122.893342199999921, 49.238044287000022 ], [ -122.892655083999955, 49.238078502000072 ], [ -122.892506752999964, 49.238033420000129 ], [ -122.89286225699999, 49.237863170000011 ], [ -122.892872665999931, 49.237858186000082 ], [ -122.893292177999953, 49.237894986000093 ], [ -122.893393572999955, 49.237444320000108 ], [ -122.89362119299993, 49.237459700000052 ], [ -122.893679940999931, 49.23729881100008 ], [ -122.894207900999959, 49.237355944000086 ], [ -122.89419387199996, 49.237926875000049 ], [ -122.894192964999959, 49.237963227000101 ], [ -122.894192751999967, 49.237972238000147 ], [ -122.894191176999982, 49.23803525300012 ], [ -122.894729426999916, 49.238049165000092 ], [ -122.894951484999964, 49.236208928000075 ], [ -122.895613933999954, 49.23626877800006 ], [ -122.895616878999988, 49.236184416000086 ], [ -122.895618733999953, 49.236130472000092 ], [ -122.895633094999965, 49.235714632000054 ], [ -122.896369690999919, 49.235533537000073 ], [ -122.89683372099995, 49.235419460000053 ], [ -122.89692293399996, 49.235420220000059 ], [ -122.897041827999928, 49.235387611000064 ], [ -122.897332139999946, 49.235295759000046 ], [ -122.897360266999968, 49.235286858000052 ], [ -122.898413417999947, 49.234733405000064 ], [ -122.898682184999956, 49.234587874000049 ], [ -122.899080084999952, 49.234372402000133 ], [ -122.89921829799998, 49.234297096000113 ], [ -122.90049881099992, 49.235333896000071 ], [ -122.901328251000038, 49.235358962000134 ], [ -122.902305013999978, 49.235388508000035 ], [ -122.902880629999942, 49.235397180000064 ], [ -122.90318303, 49.235401743000061 ], [ -122.904025889999957, 49.235414436 ], [ -122.904155428999971, 49.235416399000016 ], [ -122.904329564999927, 49.235550281000037 ], [ -122.904867205999949, 49.23596357400006 ], [ -122.905086715999957, 49.23613231000013 ], [ -122.904831525999967, 49.236253787000109 ], [ -122.903085461, 49.23622278800012 ], [ -122.903018294999953, 49.236221590000099 ], [ -122.903013764000022, 49.236667023000059 ], [ -122.903012080999972, 49.236829494000062 ], [ -122.903072008999956, 49.237001500000083 ], [ -122.903194103999908, 49.237127505000039 ], [ -122.90350770099991, 49.237366192000081 ], [ -122.904599116999947, 49.238131800000062 ], [ -122.90372749, 49.23868345900005 ], [ -122.90370309799999, 49.23869889500007 ], [ -122.903676239, 49.238679525000052 ], [ -122.902700701999947, 49.23797639800005 ], [ -122.902404516999951, 49.237848102000079 ], [ -122.902070902999967, 49.237805210000047 ], [ -122.901482398999946, 49.2378170980001 ], [ -122.901480598999953, 49.238625088000049 ], [ -122.900937948999967, 49.238615997000103 ], [ -122.900828116999918, 49.23861416600009 ], [ -122.900125379999949, 49.238602393000043 ], [ -122.899635768999971, 49.238803938000039 ], [ -122.89923973399999, 49.238957967000012 ], [ -122.899241148999963, 49.238262307000113 ], [ -122.898062448999951, 49.238228408000062 ], [ -122.897911313999955, 49.240489669000034 ], [ -122.894259232999971, 49.240384555000084 ], [ -122.89420340599996, 49.240275999000112 ], [ -122.893984985999936, 49.238755002000033 ], [ -122.893781614999966, 49.238323405000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.794215795328142", "sL_AssetLoss": "4495", "sL_BldgLoss": "3570", "sL_StrLoss": "2060", "sL_NStrLoss": "1510", "sL_ContLoss": "925", "geom_point": "0101000020E6100000F881929FA0B95EC0A5F7AEBD269F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.900255482999924, 49.243527502000063 ], [ -122.898718, 49.243105129000121 ], [ -122.90046779699999, 49.243106649000026 ], [ -122.900467255999928, 49.243376506000097 ], [ -122.901703762999887, 49.243377564000085 ], [ -122.90170309899996, 49.243712165000048 ], [ -122.900255482999924, 49.243527502000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29084000", "BldgCostT": "18320000", "sL_LossRatio": "0.717448178707989", "sL_AssetLoss": "347830", "sL_BldgLoss": "249550", "sL_StrLoss": "121900", "sL_NStrLoss": "127650", "sL_ContLoss": "98280", "geom_point": "0101000020E61000002E08ABD212BA5EC0E9893AB52B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905838925999973, 49.244457989000161 ], [ -122.905864431999973, 49.244075443000035 ], [ -122.905488618, 49.244064661000102 ], [ -122.905527766999953, 49.243477560000059 ], [ -122.904872132999927, 49.243458747000062 ], [ -122.904910429999944, 49.242884540000077 ], [ -122.904513154999947, 49.242873138000043 ], [ -122.904636686999964, 49.241021035000053 ], [ -122.904666986, 49.241022369000142 ], [ -122.905132850999948, 49.24123213700009 ], [ -122.905571851, 49.241378375000096 ], [ -122.906012365999956, 49.241398523000065 ], [ -122.906446155999973, 49.241348401000046 ], [ -122.906696545999921, 49.24125578600006 ], [ -122.906759496999911, 49.241423488000066 ], [ -122.906874300999903, 49.241597011000096 ], [ -122.907217008999979, 49.241935697000059 ], [ -122.908802354000017, 49.242834916000035 ], [ -122.908940004000016, 49.242912987000068 ], [ -122.909303497999957, 49.243166601000027 ], [ -122.90942987699998, 49.243311766000019 ], [ -122.909845887999964, 49.243789557000056 ], [ -122.909959659999956, 49.243920268000117 ], [ -122.910101570999956, 49.244083268000054 ], [ -122.910470387999979, 49.244506837000117 ], [ -122.910623150999967, 49.244682281000031 ], [ -122.910751501, 49.244829704000047 ], [ -122.910801773999964, 49.244884898000088 ], [ -122.910821101999915, 49.244906101000026 ], [ -122.910852467999973, 49.244940557000142 ], [ -122.910876966999979, 49.244967532000068 ], [ -122.910130277999912, 49.245311906000026 ], [ -122.90911296299997, 49.245641065000072 ], [ -122.90889499099994, 49.245711612000036 ], [ -122.908534416999899, 49.245791600000068 ], [ -122.908517180999979, 49.245795407000116 ], [ -122.908319092999989, 49.245688932000071 ], [ -122.907506497999975, 49.245252189000063 ], [ -122.906901981999951, 49.244721004000048 ], [ -122.905838925999973, 49.244457989000161 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99431166", "BldgCostT": "64476666", "sL_LossRatio": "0.71676327042643", "sL_AssetLoss": "1092090", "sL_BldgLoss": "782770", "sL_StrLoss": "386370", "sL_NStrLoss": "396400", "sL_ContLoss": "309320", "geom_point": "0101000020E6100000A535DD1D1FBA5EC02F03E7EF529E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.905086715999957, 49.23613231000013 ], [ -122.904867205999949, 49.23596357400006 ], [ -122.905353292999934, 49.235985011000039 ], [ -122.90547135599999, 49.235923016000072 ], [ -122.907637097999952, 49.234785694000017 ], [ -122.907991103999947, 49.235045082000099 ], [ -122.908370287999944, 49.23532290900004 ], [ -122.909154393000023, 49.23592021300005 ], [ -122.909546612999961, 49.236217003000064 ], [ -122.909829888999965, 49.23629271000005 ], [ -122.910872522999981, 49.236307200000063 ], [ -122.910824678999973, 49.237087787000057 ], [ -122.910660707999924, 49.237550715000076 ], [ -122.910426394999945, 49.23785121700012 ], [ -122.910046591999944, 49.238215105000087 ], [ -122.90974580799994, 49.238381207000096 ], [ -122.909227800999986, 49.2385907090001 ], [ -122.908450317999936, 49.238760294000087 ], [ -122.907150293999933, 49.238856300000123 ], [ -122.907125791999988, 49.238672791000084 ], [ -122.907107778999972, 49.238538089000031 ], [ -122.907065985999949, 49.238225102000072 ], [ -122.907009022999929, 49.238023765000015 ], [ -122.906918203999922, 49.237702898000059 ], [ -122.906574889999945, 49.237332708000075 ], [ -122.905782329000019, 49.236693403000103 ], [ -122.90570845799999, 49.236633812000051 ], [ -122.905621803999921, 49.23656393100002 ], [ -122.905219475999942, 49.236239380000058 ], [ -122.905086715999957, 49.23613231000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90655834", "BldgCostT": "58398334", "sL_LossRatio": "0.70430761319732", "sL_AssetLoss": "1151264", "sL_BldgLoss": "810844", "sL_StrLoss": "373364", "sL_NStrLoss": "437480", "sL_ContLoss": "340420", "geom_point": "0101000020E61000001CB7A01064BA5EC0FA8BD992D59D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91461038599995, 49.230014738000101 ], [ -122.915145218999925, 49.229724205000117 ], [ -122.915605097999958, 49.230100317000094 ], [ -122.916255994999986, 49.230632606000071 ], [ -122.916559956999947, 49.230866075000108 ], [ -122.916977113999934, 49.231186505000032 ], [ -122.917436820999939, 49.231562246000053 ], [ -122.917869224999947, 49.231915601000033 ], [ -122.916815600999968, 49.232480107000107 ], [ -122.916625360999959, 49.232582189000084 ], [ -122.916114083999972, 49.232856585000036 ], [ -122.914333468, 49.233812164000014 ], [ -122.912022736999958, 49.235052088000074 ], [ -122.911820712999884, 49.235160492000098 ], [ -122.911399321999937, 49.235468544000113 ], [ -122.911267371999898, 49.235610462000096 ], [ -122.91105240899995, 49.235833090000028 ], [ -122.910872522999981, 49.236307200000063 ], [ -122.909829888999965, 49.23629271000005 ], [ -122.909546612999961, 49.236217003000064 ], [ -122.909154393000023, 49.23592021300005 ], [ -122.908370287999944, 49.23532290900004 ], [ -122.907991103999947, 49.235045082000099 ], [ -122.907637097999952, 49.234785694000017 ], [ -122.907523019999957, 49.234702498000047 ], [ -122.907250429999976, 49.234503776000061 ], [ -122.907093451999913, 49.234389320000091 ], [ -122.906839716999926, 49.234204306000038 ], [ -122.908185417, 49.23348070400003 ], [ -122.909146603999972, 49.232965011000026 ], [ -122.912003605999985, 49.231399993000061 ], [ -122.913405699999956, 49.23065278100006 ], [ -122.914119582999888, 49.230281396000109 ], [ -122.91461038599995, 49.230014738000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108049833", "BldgCostT": "71418333", "sL_LossRatio": "0.744194636767826", "sL_AssetLoss": "1331958", "sL_BldgLoss": "991236", "sL_StrLoss": "444506", "sL_NStrLoss": "546730", "sL_ContLoss": "340722", "geom_point": "0101000020E61000009A480E7DDCB95EC091DAB4E7EC9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904329564999927, 49.235550281000037 ], [ -122.904155428999971, 49.235416399000016 ], [ -122.904025889999957, 49.235414436 ], [ -122.90318303, 49.235401743000061 ], [ -122.902880629999942, 49.235397180000064 ], [ -122.902305013999978, 49.235388508000035 ], [ -122.901328251000038, 49.235358962000134 ], [ -122.90049881099992, 49.235333896000071 ], [ -122.89921829799998, 49.234297096000113 ], [ -122.899734075, 49.234016553000082 ], [ -122.899913596999966, 49.233918884000019 ], [ -122.900279795999936, 49.233719487000073 ], [ -122.900757283999923, 49.233458411000065 ], [ -122.900812558999959, 49.2334284310001 ], [ -122.901359925999941, 49.23313159600005 ], [ -122.901371114999947, 49.233125438000087 ], [ -122.901528107999951, 49.233039085000023 ], [ -122.902345595999961, 49.232598696000053 ], [ -122.902640322999957, 49.232439640000109 ], [ -122.903272815999955, 49.232098295000135 ], [ -122.904272474999971, 49.23156119800008 ], [ -122.905262292999936, 49.231027503000121 ], [ -122.905737883999933, 49.231442280000046 ], [ -122.906138219999946, 49.231791401000088 ], [ -122.906666878, 49.232242609000131 ], [ -122.907070211999923, 49.232599190000094 ], [ -122.907628541999927, 49.233040524000074 ], [ -122.908185417, 49.23348070400003 ], [ -122.906839716999926, 49.234204306000038 ], [ -122.907093451999913, 49.234389320000091 ], [ -122.907250429999976, 49.234503776000061 ], [ -122.907523019999957, 49.234702498000047 ], [ -122.907637097999952, 49.234785694000017 ], [ -122.90547135599999, 49.235923016000072 ], [ -122.905353292999934, 49.235985011000039 ], [ -122.904867205999949, 49.23596357400006 ], [ -122.904329564999927, 49.235550281000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251387053", "BldgCostT": "160388967", "sL_LossRatio": "0.750311453171285", "sL_AssetLoss": "2528470", "sL_BldgLoss": "1897140", "sL_StrLoss": "876420", "sL_NStrLoss": "1020720", "sL_ContLoss": "631330", "geom_point": "0101000020E61000005F30E16540BA5EC07C795B657D9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.909370795999934, 49.228812891000068 ], [ -122.912164692999937, 49.227306500000076 ], [ -122.912862512999965, 49.227858907000055 ], [ -122.913107183999955, 49.228059597 ], [ -122.913355206999967, 49.228262118000018 ], [ -122.913569900999931, 49.228437453000083 ], [ -122.913734885999958, 49.228572197000091 ], [ -122.914044798999967, 49.228826098000106 ], [ -122.914161193999973, 49.228921084000078 ], [ -122.915145218999925, 49.229724205000117 ], [ -122.91461038599995, 49.230014738000101 ], [ -122.914119582999888, 49.230281396000109 ], [ -122.913405699999956, 49.23065278100006 ], [ -122.912003605999985, 49.231399993000061 ], [ -122.909146603999972, 49.232965011000026 ], [ -122.908185417, 49.23348070400003 ], [ -122.907628541999927, 49.233040524000074 ], [ -122.907070211999923, 49.232599190000094 ], [ -122.906666878, 49.232242609000131 ], [ -122.906138219999946, 49.231791401000088 ], [ -122.905737883999933, 49.231442280000046 ], [ -122.905262292999936, 49.231027503000121 ], [ -122.906124001999942, 49.230562110000065 ], [ -122.909067608999948, 49.228975392000095 ], [ -122.909078421999965, 49.228969594000048 ], [ -122.909370795999934, 49.228812891000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144970500", "BldgCostT": "96330000", "sL_LossRatio": "0.743279357662666", "sL_AssetLoss": "1861950", "sL_BldgLoss": "1383949", "sL_StrLoss": "626029", "sL_NStrLoss": "757920", "sL_ContLoss": "478001", "geom_point": "0101000020E610000051263D254ABA5EC0F1B2EC6AEE9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906651312999941, 49.225266393000069 ], [ -122.908479608000022, 49.224300892000024 ], [ -122.908871714, 49.224618400000068 ], [ -122.908943066999939, 49.224580692000117 ], [ -122.909379612999956, 49.224350096000116 ], [ -122.90951151099992, 49.224328687000117 ], [ -122.912406984999933, 49.225067497000026 ], [ -122.912568188999941, 49.225078398000051 ], [ -122.91265479899999, 49.225056604000088 ], [ -122.914419267999975, 49.224161026000104 ], [ -122.914881102999971, 49.22392660600017 ], [ -122.914894201999985, 49.223929387000076 ], [ -122.915941409999959, 49.224152698000054 ], [ -122.915954491999941, 49.224155513000035 ], [ -122.916337805999916, 49.224274576000013 ], [ -122.916924968000018, 49.224694077000038 ], [ -122.91701611799999, 49.22464443900013 ], [ -122.917063018999897, 49.224682715000014 ], [ -122.916979953999927, 49.224734372000029 ], [ -122.916434137999957, 49.225025962000103 ], [ -122.91269231699998, 49.227024714000073 ], [ -122.912175334999972, 49.22730082000006 ], [ -122.912164692999937, 49.227306500000076 ], [ -122.909370795999934, 49.228812891000068 ], [ -122.909325212999931, 49.228776455000087 ], [ -122.908535353999952, 49.228137196000077 ], [ -122.908526661999957, 49.228130146000105 ], [ -122.907557765999954, 49.227341090000039 ], [ -122.907545796999955, 49.227335645000053 ], [ -122.907449795, 49.2272921100001 ], [ -122.906017485999939, 49.226144658000166 ], [ -122.905607, 49.225815801000081 ], [ -122.906651312999941, 49.225266393000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235364206", "BldgCostT": "162542039", "sL_LossRatio": "0.866618139832582", "sL_AssetLoss": "1593620", "sL_BldgLoss": "1381060", "sL_StrLoss": "636640", "sL_NStrLoss": "744420", "sL_ContLoss": "212560", "geom_point": "0101000020E6100000756C881A5ABA5EC086819D51A99C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912406984999933, 49.225067497000026 ], [ -122.90951151099992, 49.224328687000117 ], [ -122.909379612999956, 49.224350096000116 ], [ -122.908943066999939, 49.224580692000117 ], [ -122.908871714, 49.224618400000068 ], [ -122.908479608000022, 49.224300892000024 ], [ -122.90898594, 49.224025449000067 ], [ -122.909459426999931, 49.223767888000083 ], [ -122.910556282999949, 49.223171201000127 ], [ -122.911277846999951, 49.222770414000095 ], [ -122.91189190599999, 49.222429304000094 ], [ -122.913034782999972, 49.223306199000028 ], [ -122.913235548999921, 49.223424851000054 ], [ -122.91324612599999, 49.22343110000007 ], [ -122.913388799999908, 49.223514497000075 ], [ -122.913695377999929, 49.223625665000057 ], [ -122.913831209999955, 49.22367490400012 ], [ -122.914881102999971, 49.22392660600017 ], [ -122.914419267999975, 49.224161026000104 ], [ -122.91265479899999, 49.225056604000088 ], [ -122.912568188999941, 49.225078398000051 ], [ -122.912406984999933, 49.225067497000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "436929447", "BldgCostT": "296420269", "sL_LossRatio": "0.809462293251648", "sL_AssetLoss": "2794460", "sL_BldgLoss": "2262010", "sL_StrLoss": "1016580", "sL_NStrLoss": "1245430", "sL_ContLoss": "532450", "geom_point": "0101000020E6100000E173A39F9BBA5EC03650638C599C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91398210899996, 49.22134228900012 ], [ -122.914528709999914, 49.221059401000019 ], [ -122.914693538, 49.220974124000151 ], [ -122.914758226999979, 49.220940650000067 ], [ -122.915730589999967, 49.220437405000112 ], [ -122.91477299499995, 49.219664908000034 ], [ -122.916729900999954, 49.218619099000094 ], [ -122.917692017999954, 49.219385406000107 ], [ -122.91798342899996, 49.219612023000089 ], [ -122.918158996999964, 49.21974859700007 ], [ -122.918425596999953, 49.219955896000045 ], [ -122.918601604999978, 49.220095201000078 ], [ -122.918800361999971, 49.220254832000094 ], [ -122.919175009999933, 49.220555701000087 ], [ -122.91953350899999, 49.220842507000093 ], [ -122.917594804999936, 49.221944806000124 ], [ -122.917077536999926, 49.221533095000069 ], [ -122.916626076999989, 49.221173811000071 ], [ -122.914926682999976, 49.22210358800006 ], [ -122.915531397, 49.222568591000055 ], [ -122.916137549999974, 49.22305486900008 ], [ -122.916266311999934, 49.223158154000053 ], [ -122.916778680999982, 49.223569192000106 ], [ -122.916657421999943, 49.223638705000084 ], [ -122.91648881399999, 49.223923004000085 ], [ -122.916293755999973, 49.224040253000041 ], [ -122.916071440999957, 49.224115769 ], [ -122.915954491999941, 49.224155513000035 ], [ -122.915941409999959, 49.224152698000054 ], [ -122.914894201999985, 49.223929387000076 ], [ -122.914881102999971, 49.22392660600017 ], [ -122.913831209999955, 49.22367490400012 ], [ -122.913695377999929, 49.223625665000057 ], [ -122.913388799999908, 49.223514497000075 ], [ -122.91324612599999, 49.22343110000007 ], [ -122.913235548999921, 49.223424851000054 ], [ -122.913034782999972, 49.223306199000028 ], [ -122.91189190599999, 49.222429304000094 ], [ -122.911944691, 49.222403350000057 ], [ -122.912009686999937, 49.222371401000068 ], [ -122.912884661999954, 49.221914914000109 ], [ -122.91398210899996, 49.22134228900012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48346667", "BldgCostT": "31396667", "sL_LossRatio": "0.739562787639711", "sL_AssetLoss": "608400", "sL_BldgLoss": "449950", "sL_StrLoss": "205420", "sL_NStrLoss": "244530", "sL_ContLoss": "158450", "geom_point": "0101000020E61000004181881EC2BA5EC09EF4C6627E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.916924968000018, 49.224694077000038 ], [ -122.916337805999916, 49.224274576000013 ], [ -122.915954491999941, 49.224155513000035 ], [ -122.916071440999957, 49.224115769 ], [ -122.916293755999973, 49.224040253000041 ], [ -122.91648881399999, 49.223923004000085 ], [ -122.916657421999943, 49.223638705000084 ], [ -122.916778680999982, 49.223569192000106 ], [ -122.916266311999934, 49.223158154000053 ], [ -122.916137549999974, 49.22305486900008 ], [ -122.915531397, 49.222568591000055 ], [ -122.914926682999976, 49.22210358800006 ], [ -122.916626076999989, 49.221173811000071 ], [ -122.917077536999926, 49.221533095000069 ], [ -122.917594804999936, 49.221944806000124 ], [ -122.91953350899999, 49.220842507000093 ], [ -122.919876207999934, 49.221118100000112 ], [ -122.91997176299995, 49.22119555000004 ], [ -122.920453306, 49.221585908000129 ], [ -122.920592693999964, 49.221698010000054 ], [ -122.921377704999927, 49.222281712000068 ], [ -122.921401904000035, 49.222300864000047 ], [ -122.921439009000011, 49.222330288000094 ], [ -122.919518284999981, 49.223362843000096 ], [ -122.919411520999944, 49.223420245000113 ], [ -122.917063018999897, 49.224682715000014 ], [ -122.91701611799999, 49.22464443900013 ], [ -122.916924968000018, 49.224694077000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75220083", "BldgCostT": "50403333", "sL_LossRatio": "0.733688010640319", "sL_AssetLoss": "1052600", "sL_BldgLoss": "772280", "sL_StrLoss": "358460", "sL_NStrLoss": "413820", "sL_ContLoss": "280320", "geom_point": "0101000020E61000007B14004604BB5EC011B004EF379C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.919175009999933, 49.220555701000087 ], [ -122.922842400999969, 49.218573103000018 ], [ -122.923549114999958, 49.219136498000047 ], [ -122.924308614999944, 49.219730211000112 ], [ -122.925059202999961, 49.220314710000125 ], [ -122.925111519999945, 49.220354009000111 ], [ -122.924809592999964, 49.220516479000047 ], [ -122.924764016, 49.220541011000101 ], [ -122.921439009000011, 49.222330288000094 ], [ -122.921401904000035, 49.222300864000047 ], [ -122.921377704999927, 49.222281712000068 ], [ -122.920592693999964, 49.221698010000054 ], [ -122.920453306, 49.221585908000129 ], [ -122.91997176299995, 49.22119555000004 ], [ -122.919876207999934, 49.221118100000112 ], [ -122.91953350899999, 49.220842507000093 ], [ -122.919175009999933, 49.220555701000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92406417", "BldgCostT": "60311667", "sL_LossRatio": "0.719407139901441", "sL_AssetLoss": "1329150", "sL_BldgLoss": "956200", "sL_StrLoss": "443890", "sL_NStrLoss": "512310", "sL_ContLoss": "372950", "geom_point": "0101000020E6100000F1B3F41522BB5EC0FB28232E809C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.922828586999941, 49.223442533000132 ], [ -122.922379280999976, 49.223076095000053 ], [ -122.920410380999954, 49.22413599500004 ], [ -122.919924982999987, 49.223755493000041 ], [ -122.919518284999981, 49.223362843000096 ], [ -122.921439009000011, 49.222330288000094 ], [ -122.924764016, 49.220541011000101 ], [ -122.924809592999964, 49.220516479000047 ], [ -122.925111519999945, 49.220354009000111 ], [ -122.925219909999939, 49.220893204000049 ], [ -122.925699803999947, 49.221273501000056 ], [ -122.926175196999949, 49.221651083000019 ], [ -122.926673985999955, 49.222047197000109 ], [ -122.926844504999977, 49.222182469000089 ], [ -122.927019476999973, 49.222321259000111 ], [ -122.927138842999952, 49.222415927000014 ], [ -122.927522844999984, 49.222720527000021 ], [ -122.927623207999886, 49.222847283000114 ], [ -122.927484608999976, 49.222866686 ], [ -122.924329079999936, 49.224601101000069 ], [ -122.923827185999983, 49.224203401000032 ], [ -122.923563491999985, 49.223994502000053 ], [ -122.923323522999951, 49.223846205000086 ], [ -122.922828586999941, 49.223442533000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163380166", "BldgCostT": "110731666", "sL_LossRatio": "0.739333077070921", "sL_AssetLoss": "1664960", "sL_BldgLoss": "1230960", "sL_StrLoss": "565050", "sL_NStrLoss": "665910", "sL_ContLoss": "434000", "geom_point": "0101000020E6100000CF4A4154EDBA5EC0B5D142FAD49C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.917063018999897, 49.224682715000014 ], [ -122.919411520999944, 49.223420245000113 ], [ -122.919518284999981, 49.223362843000096 ], [ -122.919924982999987, 49.223755493000041 ], [ -122.920410380999954, 49.22413599500004 ], [ -122.922379280999976, 49.223076095000053 ], [ -122.922828586999941, 49.223442533000132 ], [ -122.923323522999951, 49.223846205000086 ], [ -122.923563491999985, 49.223994502000053 ], [ -122.923827185999983, 49.224203401000032 ], [ -122.924329079999936, 49.224601101000069 ], [ -122.922341404999926, 49.225656011000126 ], [ -122.922812087999958, 49.226026470000143 ], [ -122.923335605999981, 49.226438495000082 ], [ -122.920818695999984, 49.227812508000078 ], [ -122.920356610999974, 49.227441900000038 ], [ -122.919889318999978, 49.227067106000035 ], [ -122.918849294999973, 49.226249998000071 ], [ -122.918371444999963, 49.225870148000062 ], [ -122.91789347699995, 49.225490194000017 ], [ -122.917459182999949, 49.225103900000072 ], [ -122.916434137999957, 49.225025962000103 ], [ -122.916979953999927, 49.224734372000029 ], [ -122.917063018999897, 49.224682715000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92777084", "BldgCostT": "60418334", "sL_LossRatio": "0.711910974408598", "sL_AssetLoss": "1157420", "sL_BldgLoss": "823980", "sL_StrLoss": "384460", "sL_NStrLoss": "439520", "sL_ContLoss": "333440", "geom_point": "0101000020E6100000BBA9586742BB5EC05D7CC0F2D69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.927484608999976, 49.222866686 ], [ -122.927623207999886, 49.222847283000114 ], [ -122.927708610999957, 49.222863190000133 ], [ -122.92808702799995, 49.223154099000055 ], [ -122.928423093999953, 49.223412403000026 ], [ -122.928609581, 49.223560989000113 ], [ -122.929072920999914, 49.223929991000013 ], [ -122.929229010000014, 49.224054303000116 ], [ -122.929549482999988, 49.224335505000056 ], [ -122.926257505999956, 49.226119994000079 ], [ -122.926724484, 49.226488447000065 ], [ -122.927209987999944, 49.226871505000076 ], [ -122.926639325999943, 49.227183607 ], [ -122.925778121999912, 49.227654579000081 ], [ -122.925251303999943, 49.227942707000089 ], [ -122.924292209999976, 49.227189198000104 ], [ -122.923335605999981, 49.226438495000082 ], [ -122.922812087999958, 49.226026470000143 ], [ -122.922341404999926, 49.225656011000126 ], [ -122.924329079999936, 49.224601101000069 ], [ -122.927484608999976, 49.222866686 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114589217", "BldgCostT": "75855884", "sL_LossRatio": "0.727815355657048", "sL_AssetLoss": "1602302", "sL_BldgLoss": "1166180", "sL_StrLoss": "527040", "sL_NStrLoss": "639140", "sL_ContLoss": "436122", "geom_point": "0101000020E61000000413147931BB5EC0256D68D23F9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.921179163999952, 49.228099297000078 ], [ -122.920818695999984, 49.227812508000078 ], [ -122.923335605999981, 49.226438495000082 ], [ -122.924292209999976, 49.227189198000104 ], [ -122.925251303999943, 49.227942707000089 ], [ -122.925778121999912, 49.227654579000081 ], [ -122.926639325999943, 49.227183607 ], [ -122.927209987999944, 49.226871505000076 ], [ -122.927668277999942, 49.227232733000086 ], [ -122.928172901999943, 49.227630515000087 ], [ -122.928685561999941, 49.228035777000088 ], [ -122.929130489999949, 49.228387507000043 ], [ -122.928629099999938, 49.228667684000079 ], [ -122.927191720999986, 49.229470887000062 ], [ -122.926648615999952, 49.229762909000044 ], [ -122.925146548999948, 49.230570511000082 ], [ -122.924636194999962, 49.230844889000061 ], [ -122.924169190999919, 49.230473246000031 ], [ -122.92367108499991, 49.230076785000044 ], [ -122.923140872999952, 49.229656731000055 ], [ -122.922722785999937, 49.229325521000113 ], [ -122.922281583999933, 49.228975390000066 ], [ -122.921764189, 49.228564798000065 ], [ -122.921179163999952, 49.228099297000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87922167", "BldgCostT": "57746667", "sL_LossRatio": "0.732358446611465", "sL_AssetLoss": "1223390", "sL_BldgLoss": "895960", "sL_StrLoss": "401380", "sL_NStrLoss": "494580", "sL_ContLoss": "327430", "geom_point": "0101000020E610000025B5A37A63BB5EC02963AED27E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.928629099999938, 49.228667684000079 ], [ -122.929130489999949, 49.228387507000043 ], [ -122.930110581999926, 49.229158601000087 ], [ -122.930955214, 49.229838846000085 ], [ -122.931140297999917, 49.22998790300008 ], [ -122.93113443699994, 49.229996407000094 ], [ -122.93108419099994, 49.230069067000088 ], [ -122.93099918899992, 49.230191995000077 ], [ -122.930829943999939, 49.230301403000105 ], [ -122.930567288999953, 49.230471208000083 ], [ -122.92972981299999, 49.231012601000074 ], [ -122.929522916999971, 49.231069796000099 ], [ -122.929248476999959, 49.231087190000082 ], [ -122.929085808999972, 49.231096908000055 ], [ -122.928679632999931, 49.231327062000091 ], [ -122.927626482999941, 49.231923807000086 ], [ -122.927172468999956, 49.232179793000071 ], [ -122.92664392099995, 49.232477806000112 ], [ -122.926033030999946, 49.231980961000048 ], [ -122.925582098999925, 49.231614206000152 ], [ -122.924636194999962, 49.230844889000061 ], [ -122.925146548999948, 49.230570511000082 ], [ -122.926648615999952, 49.229762909000044 ], [ -122.927191720999986, 49.229470887000062 ], [ -122.928629099999938, 49.228667684000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135842000", "BldgCostT": "80105000", "sL_LossRatio": "0.641536718353856", "sL_AssetLoss": "1597430", "sL_BldgLoss": "1024810", "sL_StrLoss": "451210", "sL_NStrLoss": "573600", "sL_ContLoss": "572620", "geom_point": "0101000020E610000076E9FC670FBB5EC05CD5A270039E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.919020207999935, 49.240137283000102 ], [ -122.919243214999966, 49.240009705 ], [ -122.91902026299995, 49.240103519000066 ], [ -122.919021064999967, 49.239613 ], [ -122.919433202999926, 49.239613288000072 ], [ -122.919434080999935, 49.239073574000052 ], [ -122.920258348999965, 49.239074146000114 ], [ -122.92025921799997, 49.238534433000041 ], [ -122.92067134699991, 49.238534716000103 ], [ -122.920672642999989, 49.237725145000056 ], [ -122.922733256999948, 49.237726542000082 ], [ -122.922732834999977, 49.237996399000046 ], [ -122.92314496099999, 49.237996673000055 ], [ -122.923146215999921, 49.237187102000064 ], [ -122.923558334999925, 49.237187375000104 ], [ -122.92355875, 49.236917518000077 ], [ -122.92479509899999, 49.236918330000044 ], [ -122.924795508000017, 49.236648473000066 ], [ -122.92537742499999, 49.236648850000066 ], [ -122.925546388999962, 49.234097978000122 ], [ -122.92646169199999, 49.234124071000096 ], [ -122.926518097000013, 49.233272199000098 ], [ -122.927279213999981, 49.233293891000137 ], [ -122.927308588999935, 49.232850117000062 ], [ -122.927685836999927, 49.232860867000049 ], [ -122.927686213999948, 49.232602456000031 ], [ -122.927274133999944, 49.232602197000126 ], [ -122.927273737999954, 49.232872055000094 ], [ -122.926037491, 49.232871270000075 ], [ -122.926037893999975, 49.232601412000058 ], [ -122.92562581299994, 49.232601148000057 ], [ -122.92562621899999, 49.232331290000069 ], [ -122.925214139999952, 49.232331025000107 ], [ -122.925214548999932, 49.232061167000033 ], [ -122.924802471999911, 49.232060899000068 ], [ -122.92480288199999, 49.23179104200009 ], [ -122.924390808999974, 49.231790773000043 ], [ -122.924391632999942, 49.231251059000101 ], [ -122.923979564999939, 49.231250788000118 ], [ -122.923979976999931, 49.230980931 ], [ -122.923567910999935, 49.230980659000075 ], [ -122.923563330999954, 49.233949090000046 ], [ -122.923151239999953, 49.233948816000044 ], [ -122.923150821999954, 49.234218673000036 ], [ -122.922326634999976, 49.234218122000058 ], [ -122.922326210999955, 49.234487979000036 ], [ -122.921914115999968, 49.234487702000074 ], [ -122.921913691999947, 49.234757559000045 ], [ -122.921089495, 49.234756999000084 ], [ -122.921089064999975, 49.23502685600004 ], [ -122.920676965, 49.235026574000109 ], [ -122.920676531999916, 49.235296431000044 ], [ -122.919852327999962, 49.235295862000036 ], [ -122.919851890999965, 49.23556571900005 ], [ -122.919439787, 49.235565433000033 ], [ -122.919439346999951, 49.235835289000114 ], [ -122.918203025999972, 49.23583442200006 ], [ -122.918203471999945, 49.235564564000072 ], [ -122.917791366999936, 49.235564271000072 ], [ -122.917790919999973, 49.235834128000057 ], [ -122.917378811999967, 49.23583383400009 ], [ -122.917378362999941, 49.236103692000022 ], [ -122.915729926999987, 49.236102501000076 ], [ -122.915731303999934, 49.235292930000078 ], [ -122.91614340599989, 49.235293229000106 ], [ -122.916143863999949, 49.235023372000029 ], [ -122.916555961999933, 49.235023670000075 ], [ -122.916556870999941, 49.234483956000126 ], [ -122.914908489000013, 49.234482754000119 ], [ -122.91490895199999, 49.234212897000134 ], [ -122.914165035999986, 49.23421234700006 ], [ -122.914027326999985, 49.236283689000061 ], [ -122.913502507999965, 49.236268669 ], [ -122.912022736999958, 49.235052088000074 ], [ -122.914333468, 49.233812164000014 ], [ -122.916114083999972, 49.232856585000036 ], [ -122.916625360999959, 49.232582189000084 ], [ -122.916815600999968, 49.232480107000107 ], [ -122.917869224999947, 49.231915601000033 ], [ -122.918794707999979, 49.232658280000095 ], [ -122.919347281999961, 49.232365747000095 ], [ -122.920876907999983, 49.231555867000104 ], [ -122.92143439699997, 49.231260700000085 ], [ -122.921969662999942, 49.23097739000012 ], [ -122.923145898999962, 49.230354800000072 ], [ -122.92367108499991, 49.230076785000044 ], [ -122.924169190999919, 49.230473246000031 ], [ -122.924636194999962, 49.230844889000061 ], [ -122.925582098999925, 49.231614206000152 ], [ -122.926033030999946, 49.231980961000048 ], [ -122.92664392099995, 49.232477806000112 ], [ -122.927172468999956, 49.232179793000071 ], [ -122.927626482999941, 49.231923807000086 ], [ -122.929671013999894, 49.233593276000107 ], [ -122.930454599999962, 49.234233104000118 ], [ -122.931072389999898, 49.234733610000042 ], [ -122.931241229999941, 49.234852426000053 ], [ -122.932844888999952, 49.23598129700008 ], [ -122.932865320999923, 49.236027795000048 ], [ -122.932924632999971, 49.236306116000037 ], [ -122.932957076999955, 49.236458329000072 ], [ -122.932391569999979, 49.236442262 ], [ -122.931950216999923, 49.236429702000109 ], [ -122.93169399599995, 49.236432718000074 ], [ -122.930897583000018, 49.236442091000114 ], [ -122.92993698099994, 49.236494897000028 ], [ -122.92866539, 49.236621812000124 ], [ -122.926790672999942, 49.23696803200005 ], [ -122.926438374999989, 49.237033103000059 ], [ -122.926332550999916, 49.237060626000101 ], [ -122.926046234999959, 49.237135062000029 ], [ -122.925320609999915, 49.237323696000082 ], [ -122.925196187999958, 49.237365403000112 ], [ -122.923978024999883, 49.237773702000055 ], [ -122.923411491999971, 49.237992701000081 ], [ -122.922737166999951, 49.238287295000099 ], [ -122.922488105999946, 49.238396103000035 ], [ -122.921579594, 49.238863790000075 ], [ -122.919019882999962, 49.240336156000048 ], [ -122.919020207999935, 49.240137283000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106879386", "BldgCostT": "70422079", "sL_LossRatio": "0.727811932941527", "sL_AssetLoss": "1476920", "sL_BldgLoss": "1074920", "sL_StrLoss": "505070", "sL_NStrLoss": "569850", "sL_ContLoss": "402000", "geom_point": "0101000020E6100000317E44C0DFBA5EC0F8992795789D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91864571, 49.228966692000029 ], [ -122.920818695999984, 49.227812508000078 ], [ -122.921179163999952, 49.228099297000078 ], [ -122.921764189, 49.228564798000065 ], [ -122.922281583999933, 49.228975390000066 ], [ -122.922722785999937, 49.229325521000113 ], [ -122.923140872999952, 49.229656731000055 ], [ -122.92367108499991, 49.230076785000044 ], [ -122.923145898999962, 49.230354800000072 ], [ -122.921969662999942, 49.23097739000012 ], [ -122.92143439699997, 49.231260700000085 ], [ -122.920876907999983, 49.231555867000104 ], [ -122.919347281999961, 49.232365747000095 ], [ -122.918794707999979, 49.232658280000095 ], [ -122.917869224999947, 49.231915601000033 ], [ -122.917436820999939, 49.231562246000053 ], [ -122.916977113999934, 49.231186505000032 ], [ -122.916559956999947, 49.230866075000108 ], [ -122.916255994999986, 49.230632606000071 ], [ -122.917324287999961, 49.229927092000032 ], [ -122.918240676999943, 49.229261082000043 ], [ -122.91864571, 49.228966692000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128855228", "BldgCostT": "85824857", "sL_LossRatio": "0.73665667982333", "sL_AssetLoss": "1745630", "sL_BldgLoss": "1285930", "sL_StrLoss": "576980", "sL_NStrLoss": "708950", "sL_ContLoss": "459700", "geom_point": "0101000020E6100000936226D5A7BA5EC0E1890731239D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91269231699998, 49.227024714000073 ], [ -122.916434137999957, 49.225025962000103 ], [ -122.917459182999949, 49.225103900000072 ], [ -122.91789347699995, 49.225490194000017 ], [ -122.918371444999963, 49.225870148000062 ], [ -122.918849294999973, 49.226249998000071 ], [ -122.919889318999978, 49.227067106000035 ], [ -122.920356610999974, 49.227441900000038 ], [ -122.920818695999984, 49.227812508000078 ], [ -122.91864571, 49.228966692000029 ], [ -122.918240676999943, 49.229261082000043 ], [ -122.917324287999961, 49.229927092000032 ], [ -122.916255994999986, 49.230632606000071 ], [ -122.915605097999958, 49.230100317000094 ], [ -122.915145218999925, 49.229724205000117 ], [ -122.914161193999973, 49.228921084000078 ], [ -122.914044798999967, 49.228826098000106 ], [ -122.913734885999958, 49.228572197000091 ], [ -122.913569900999931, 49.228437453000083 ], [ -122.913355206999967, 49.228262118000018 ], [ -122.913107183999955, 49.228059597 ], [ -122.912862512999965, 49.227858907000055 ], [ -122.912164692999937, 49.227306500000076 ], [ -122.912175334999972, 49.22730082000006 ], [ -122.91269231699998, 49.227024714000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.647264260768335", "sL_AssetLoss": "85900", "sL_BldgLoss": "55600", "sL_StrLoss": "18600", "sL_NStrLoss": "37000", "sL_ContLoss": "30300", "geom_point": "0101000020E6100000880B270654BB5EC0930266193D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92643204700002, 49.244672438000052 ], [ -122.926433542999945, 49.243665815000021 ], [ -122.927670059999954, 49.243666596000018 ], [ -122.927669666000014, 49.243936454000121 ], [ -122.928043846999941, 49.243936687000065 ], [ -122.927036593999901, 49.244425707000104 ], [ -122.92643204700002, 49.244672438000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100069001", "BldgCostT": "59470001", "sL_LossRatio": "0.655109034724154", "sL_AssetLoss": "1365620", "sL_BldgLoss": "894630", "sL_StrLoss": "406280", "sL_NStrLoss": "488350", "sL_ContLoss": "470990", "geom_point": "0101000020E6100000A0F3222C8DBA5EC0733AB974069F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911609399999975, 49.247658463000107 ], [ -122.91112949799998, 49.247566497000044 ], [ -122.9103869, 49.24764770200003 ], [ -122.909877490999946, 49.247619205000056 ], [ -122.909396988999958, 49.24737709700004 ], [ -122.909142961999962, 49.24714801500005 ], [ -122.908916990999927, 49.246944206000038 ], [ -122.908559993999972, 49.246566797000085 ], [ -122.908713201999916, 49.246170796000058 ], [ -122.908630120999973, 49.245856102000126 ], [ -122.908517180999979, 49.245795407000116 ], [ -122.908534416999899, 49.245791600000068 ], [ -122.90889499099994, 49.245711612000036 ], [ -122.90911296299997, 49.245641065000072 ], [ -122.910130277999912, 49.245311906000026 ], [ -122.910876966999979, 49.244967532000068 ], [ -122.910852467999973, 49.244940557000142 ], [ -122.910821101999915, 49.244906101000026 ], [ -122.910801773999964, 49.244884898000088 ], [ -122.910751501, 49.244829704000047 ], [ -122.910623150999967, 49.244682281000031 ], [ -122.910470387999979, 49.244506837000117 ], [ -122.910101570999956, 49.244083268000054 ], [ -122.909959659999956, 49.243920268000117 ], [ -122.909845887999964, 49.243789557000056 ], [ -122.90942987699998, 49.243311766000019 ], [ -122.909303497999957, 49.243166601000027 ], [ -122.908940004000016, 49.242912987000068 ], [ -122.908802354000017, 49.242834916000035 ], [ -122.907217008999979, 49.241935697000059 ], [ -122.906874300999903, 49.241597011000096 ], [ -122.906759496999911, 49.241423488000066 ], [ -122.906696545999921, 49.24125578600006 ], [ -122.906660386999988, 49.241159414000094 ], [ -122.906641973999953, 49.240960600000037 ], [ -122.906678513999964, 49.240723005000085 ], [ -122.907140085999956, 49.239875901000083 ], [ -122.907224694999954, 49.239674408000113 ], [ -122.907229773999944, 49.239662191000043 ], [ -122.907150293999933, 49.238856300000123 ], [ -122.908450317999936, 49.238760294000087 ], [ -122.909227800999986, 49.2385907090001 ], [ -122.90974580799994, 49.238381207000096 ], [ -122.910046591999944, 49.238215105000087 ], [ -122.910426394999945, 49.23785121700012 ], [ -122.910660707999924, 49.237550715000076 ], [ -122.910824678999973, 49.237087787000057 ], [ -122.910872522999981, 49.236307200000063 ], [ -122.91105240899995, 49.235833090000028 ], [ -122.911267371999898, 49.235610462000096 ], [ -122.911399321999937, 49.235468544000113 ], [ -122.911820712999884, 49.235160492000098 ], [ -122.912022736999958, 49.235052088000074 ], [ -122.913502507999965, 49.236268669 ], [ -122.912432809999984, 49.236238046000054 ], [ -122.91243019199996, 49.237719191000082 ], [ -122.913254436999949, 49.237719813000098 ], [ -122.913253964999939, 49.237989670000083 ], [ -122.913666087999943, 49.237989979000091 ], [ -122.913664677999989, 49.238799550000124 ], [ -122.913101362999925, 49.238799127000085 ], [ -122.91295777799999, 49.240957878000053 ], [ -122.913660914999966, 49.240958405000079 ], [ -122.913661854999972, 49.240418691000144 ], [ -122.914898290999986, 49.240419609000128 ], [ -122.914898754999953, 49.240149751000068 ], [ -122.917573046999962, 49.240151691000051 ], [ -122.917946286999936, 49.240555419000039 ], [ -122.91826328099998, 49.240422039000059 ], [ -122.918522128999911, 49.240422222000085 ], [ -122.91806495799996, 49.240683750000088 ], [ -122.918186635999987, 49.240815405000014 ], [ -122.918773458999965, 49.240477891000062 ], [ -122.918869822999966, 49.240422466000062 ], [ -122.919019740999985, 49.240422571000117 ], [ -122.919019882999962, 49.240336156000048 ], [ -122.921579594, 49.238863790000075 ], [ -122.922488105999946, 49.238396103000035 ], [ -122.922737166999951, 49.238287295000099 ], [ -122.923411491999971, 49.237992701000081 ], [ -122.923978024999883, 49.237773702000055 ], [ -122.925196187999958, 49.237365403000112 ], [ -122.925320609999915, 49.237323696000082 ], [ -122.926046234999959, 49.237135062000029 ], [ -122.926332550999916, 49.237060626000101 ], [ -122.926438374999989, 49.237033103000059 ], [ -122.926790672999942, 49.23696803200005 ], [ -122.92866539, 49.236621812000124 ], [ -122.92993698099994, 49.236494897000028 ], [ -122.930897583000018, 49.236442091000114 ], [ -122.93169399599995, 49.236432718000074 ], [ -122.931950216999923, 49.236429702000109 ], [ -122.932391569999979, 49.236442262 ], [ -122.932957076999955, 49.236458329000072 ], [ -122.93386093399999, 49.237461017000015 ], [ -122.933860929999952, 49.237463590000075 ], [ -122.931388207999987, 49.237462149000066 ], [ -122.931388827999939, 49.237014433000091 ], [ -122.930846823999957, 49.236999008000076 ], [ -122.930790492999932, 49.23785087800006 ], [ -122.927266574999976, 49.237750525000116 ], [ -122.927266210000013, 49.237999341000091 ], [ -122.926029834999937, 49.237998556000051 ], [ -122.926029431999922, 49.238268414000068 ], [ -122.923968796999958, 49.238267076000085 ], [ -122.923967968999975, 49.238806790000076 ], [ -122.923143704999973, 49.238806244000045 ], [ -122.923143284999966, 49.239076101000109 ], [ -122.922319017999925, 49.239075551000084 ], [ -122.922318593999947, 49.239345407000087 ], [ -122.921494322999976, 49.23934485000008 ], [ -122.921493894999983, 49.239614707000079 ], [ -122.921081755999921, 49.239614426000067 ], [ -122.92108046599995, 49.240423998000118 ], [ -122.920256175999924, 49.240423431000089 ], [ -122.920255740999963, 49.24069328800006 ], [ -122.919431446999909, 49.240692716000041 ], [ -122.91943056799991, 49.241232430000089 ], [ -122.918194113999959, 49.24123156100012 ], [ -122.918192775999941, 49.242041132000125 ], [ -122.918604935999909, 49.242041422000071 ], [ -122.918603605, 49.242850992000072 ], [ -122.918191438999941, 49.242850702000105 ], [ -122.918190992999968, 49.243120559000054 ], [ -122.917778824999942, 49.243120267000087 ], [ -122.917778378999984, 49.243390123000019 ], [ -122.916954038999947, 49.243389533000034 ], [ -122.91695358599992, 49.243659390000076 ], [ -122.916541414, 49.243659093000126 ], [ -122.916539594, 49.244738519000073 ], [ -122.915715233999919, 49.244737921000073 ], [ -122.915714070999911, 49.24542087 ], [ -122.917774908999945, 49.245479783000171 ], [ -122.917775240999958, 49.245279120000049 ], [ -122.918187425999974, 49.24527941300002 ], [ -122.918188318999967, 49.244739699000043 ], [ -122.91860049899995, 49.244739990000078 ], [ -122.918601386999953, 49.244200276000058 ], [ -122.919837914999917, 49.244201141000062 ], [ -122.919835731999953, 49.245550425000062 ], [ -122.91942354499993, 49.245550138000091 ], [ -122.919421787999937, 49.246629565000092 ], [ -122.919241832999958, 49.246629439000046 ], [ -122.919215245999936, 49.247029903000048 ], [ -122.91886242899993, 49.247086049000067 ], [ -122.918858393999969, 49.247086725000052 ], [ -122.917863466999961, 49.247396936 ], [ -122.917583396999959, 49.247565784000059 ], [ -122.917035513, 49.247885591000042 ], [ -122.916994862999957, 49.247921064000138 ], [ -122.915798195999969, 49.248965094000084 ], [ -122.914766603999936, 49.249405187000065 ], [ -122.914518982999979, 49.24937669200007 ], [ -122.914370432999974, 49.249302610000044 ], [ -122.914230674999985, 49.249232894000066 ], [ -122.913901913999908, 49.248513693000049 ], [ -122.913106778000014, 49.247945398000105 ], [ -122.912939918999939, 49.24791343400009 ], [ -122.911609399999975, 49.247658463000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.680948040109389", "sL_AssetLoss": "109700", "sL_BldgLoss": "74700", "sL_StrLoss": "12800", "sL_NStrLoss": "61900", "sL_ContLoss": "35000", "geom_point": "0101000020E6100000BBA4413C58BB5EC0581334FBF69E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926849302999983, 49.241237366000057 ], [ -122.928085758999913, 49.241238141000032 ], [ -122.928084190999954, 49.242317570000104 ], [ -122.927672029999925, 49.242317313000022 ], [ -122.927671635999957, 49.242587169000018 ], [ -122.92643514599996, 49.24258638800012 ], [ -122.92643675, 49.241506960000052 ], [ -122.926848904999929, 49.241507222000088 ], [ -122.926849302999983, 49.241237366000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94004917", "BldgCostT": "61581667", "sL_LossRatio": "0.71243460569657", "sL_AssetLoss": "1197352", "sL_BldgLoss": "853035", "sL_StrLoss": "381755", "sL_NStrLoss": "471280", "sL_ContLoss": "344317", "geom_point": "0101000020E6100000B19EDEB5D9B95EC04FF75BB7989E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904636686999964, 49.241021035000053 ], [ -122.90463693399991, 49.241017339000102 ], [ -122.90439417599994, 49.241010371000122 ], [ -122.90380444499999, 49.240984435000016 ], [ -122.903820471999921, 49.240744207000041 ], [ -122.90380716, 49.240743825000052 ], [ -122.903809863999925, 49.240703299000096 ], [ -122.900249714999973, 49.240601028000157 ], [ -122.899940962999935, 49.240471601000131 ], [ -122.899981284999953, 49.23986794300005 ], [ -122.899650024999971, 49.239867656000087 ], [ -122.899650570999967, 49.239597799000101 ], [ -122.899240177999957, 49.239597441000058 ], [ -122.899238480999912, 49.239573989000021 ], [ -122.89923973399999, 49.238957967000012 ], [ -122.899635768999971, 49.238803938000039 ], [ -122.900125379999949, 49.238602393000043 ], [ -122.900828116999918, 49.23861416600009 ], [ -122.900937948999967, 49.238615997000103 ], [ -122.901480598999953, 49.238625088000049 ], [ -122.901482398999946, 49.2378170980001 ], [ -122.902070902999967, 49.237805210000047 ], [ -122.902404516999951, 49.237848102000079 ], [ -122.902700701999947, 49.23797639800005 ], [ -122.903676239, 49.238679525000052 ], [ -122.90370309799999, 49.23869889500007 ], [ -122.90372749, 49.23868345900005 ], [ -122.904599116999947, 49.238131800000062 ], [ -122.90350770099991, 49.237366192000081 ], [ -122.903194103999908, 49.237127505000039 ], [ -122.903072008999956, 49.237001500000083 ], [ -122.903012080999972, 49.236829494000062 ], [ -122.903013764000022, 49.236667023000059 ], [ -122.903018294999953, 49.236221590000099 ], [ -122.903085461, 49.23622278800012 ], [ -122.904831525999967, 49.236253787000109 ], [ -122.905086715999957, 49.23613231000013 ], [ -122.905219475999942, 49.236239380000058 ], [ -122.905621803999921, 49.23656393100002 ], [ -122.90570845799999, 49.236633812000051 ], [ -122.905782329000019, 49.236693403000103 ], [ -122.906574889999945, 49.237332708000075 ], [ -122.906918203999922, 49.237702898000059 ], [ -122.907009022999929, 49.238023765000015 ], [ -122.907065985999949, 49.238225102000072 ], [ -122.907107778999972, 49.238538089000031 ], [ -122.907125791999988, 49.238672791000084 ], [ -122.907150293999933, 49.238856300000123 ], [ -122.907229773999944, 49.239662191000043 ], [ -122.907224694999954, 49.239674408000113 ], [ -122.907140085999956, 49.239875901000083 ], [ -122.906678513999964, 49.240723005000085 ], [ -122.906641973999953, 49.240960600000037 ], [ -122.906660386999988, 49.241159414000094 ], [ -122.906696545999921, 49.24125578600006 ], [ -122.906446155999973, 49.241348401000046 ], [ -122.906012365999956, 49.241398523000065 ], [ -122.905571851, 49.241378375000096 ], [ -122.905132850999948, 49.24123213700009 ], [ -122.904666986, 49.241022369000142 ], [ -122.904636686999964, 49.241021035000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81747501", "BldgCostT": "53960001", "sL_LossRatio": "0.740442164406987", "sL_AssetLoss": "1064310", "sL_BldgLoss": "788060", "sL_StrLoss": "354890", "sL_NStrLoss": "433170", "sL_ContLoss": "276250", "geom_point": "0101000020E610000080C7A64B75BC5EC00A398464609E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963525459999971, 49.248564550000033 ], [ -122.963525675999961, 49.24827104800007 ], [ -122.96146462199998, 49.248270379000097 ], [ -122.961465461999964, 49.247190952000075 ], [ -122.962702067999885, 49.247191358000137 ], [ -122.962702677999914, 49.24638178700009 ], [ -122.962290481999943, 49.246381653000121 ], [ -122.96229068699995, 49.246111796000029 ], [ -122.961878494999937, 49.246111661000036 ], [ -122.961879117999914, 49.245302090000045 ], [ -122.96394004699999, 49.24530275200005 ], [ -122.963940243999957, 49.245032895000044 ], [ -122.964352427999955, 49.245033023000069 ], [ -122.96435281699999, 49.244493309000056 ], [ -122.963940637999954, 49.244493182000049 ], [ -122.963941620999918, 49.243143896000113 ], [ -122.963529451999975, 49.243143767000028 ], [ -122.963529547999926, 49.243012868000065 ], [ -122.961323754999967, 49.242950743000108 ], [ -122.961344533999977, 49.242633377000089 ], [ -122.96067205199995, 49.242614427000056 ], [ -122.960690464999914, 49.24233326500012 ], [ -122.960280448999967, 49.242333125000087 ], [ -122.960167631999965, 49.244055546000077 ], [ -122.95468445100002, 49.243900865000036 ], [ -122.954697117999942, 49.24370783400007 ], [ -122.954372151999976, 49.243698657000024 ], [ -122.954394108999949, 49.243364095000125 ], [ -122.95380095199998, 49.243347344000071 ], [ -122.953812600999967, 49.243169866000102 ], [ -122.952879930999984, 49.243143519000142 ], [ -122.952901763999975, 49.242811001000106 ], [ -122.952155024999925, 49.242789902000034 ], [ -122.952344709999977, 49.239901409 ], [ -122.951991887999952, 49.239901263000078 ], [ -122.951992149999967, 49.239631405000075 ], [ -122.951167871999928, 49.239631061000082 ], [ -122.951168403999958, 49.239091346000087 ], [ -122.950344135999899, 49.239090995000041 ], [ -122.95034386399999, 49.239360852000132 ], [ -122.949107454999961, 49.239360314000116 ], [ -122.949107732999934, 49.239090457000067 ], [ -122.948695597999944, 49.239090274000084 ], [ -122.948696156999929, 49.238550560000093 ], [ -122.94704764, 49.238549817000035 ], [ -122.947047926999971, 49.238279959000074 ], [ -122.946223671999974, 49.238279579000071 ], [ -122.946223964999945, 49.238009721 ], [ -122.945410060999961, 49.238009340000133 ], [ -122.944163338999942, 49.238008744000048 ], [ -122.94416419399991, 49.237249224000038 ], [ -122.944164251999922, 49.237199172000039 ], [ -122.943691175999945, 49.237198943000102 ], [ -122.943340013999972, 49.237198771000095 ], [ -122.943339705999975, 49.237468628000059 ], [ -122.938394257999931, 49.237466097000045 ], [ -122.938394592999913, 49.237196239000063 ], [ -122.937570356999956, 49.237195797000069 ], [ -122.937570696999956, 49.236925939000074 ], [ -122.935510115999961, 49.236924808000062 ], [ -122.93550976399996, 49.237194665000075 ], [ -122.933861291, 49.237193733000076 ], [ -122.93386093399999, 49.237461017000015 ], [ -122.932957076999955, 49.236458329000072 ], [ -122.932924632999971, 49.236306116000037 ], [ -122.932865320999923, 49.236027795000048 ], [ -122.932844888999952, 49.23598129700008 ], [ -122.931241229999941, 49.234852426000053 ], [ -122.931072389999898, 49.234733610000042 ], [ -122.930454599999962, 49.234233104000118 ], [ -122.929671013999894, 49.233593276000107 ], [ -122.927626482999941, 49.231923807000086 ], [ -122.928679632999931, 49.231327062000091 ], [ -122.929085808999972, 49.231096908000055 ], [ -122.929248476999959, 49.231087190000082 ], [ -122.929522916999971, 49.231069796000099 ], [ -122.92972981299999, 49.231012601000074 ], [ -122.930567288999953, 49.230471208000083 ], [ -122.930829943999939, 49.230301403000105 ], [ -122.93099918899992, 49.230191995000077 ], [ -122.93108419099994, 49.230069067000088 ], [ -122.93113443699994, 49.229996407000094 ], [ -122.931140297999917, 49.22998790300008 ], [ -122.931878829000013, 49.229659639000026 ], [ -122.93368026399996, 49.228858900000077 ], [ -122.933886462999951, 49.229008814000103 ], [ -122.934057210999981, 49.229132953000025 ], [ -122.934057076999949, 49.229146597000117 ], [ -122.934216512, 49.229276682000027 ], [ -122.934681117999943, 49.229655745000031 ], [ -122.934827015999957, 49.229774789000039 ], [ -122.936161213999981, 49.230819904000072 ], [ -122.936816155999963, 49.231359771000029 ], [ -122.936844803999946, 49.231383403000102 ], [ -122.937111696999949, 49.23166670500008 ], [ -122.937194360999939, 49.231798759000107 ], [ -122.937445817999944, 49.23220050300003 ], [ -122.937678216, 49.232382712000074 ], [ -122.937940379999958, 49.232507302000023 ], [ -122.938118877999955, 49.232545231000074 ], [ -122.938283014999925, 49.232580095000046 ], [ -122.938296709999946, 49.232580425000059 ], [ -122.93870799699999, 49.232589486000037 ], [ -122.938877046999949, 49.232868465000116 ], [ -122.938902416999952, 49.232910301000032 ], [ -122.939124406999966, 49.233188590000097 ], [ -122.939644470999951, 49.233583424000074 ], [ -122.939879935999926, 49.233762210000066 ], [ -122.940654187999939, 49.234349991000038 ], [ -122.940714281999973, 49.23442534600008 ], [ -122.9410106, 49.234797101000062 ], [ -122.941414612999935, 49.23468868700008 ], [ -122.941795905, 49.234485996000053 ], [ -122.9422069, 49.234186882000095 ], [ -122.942631209999917, 49.233937703000038 ], [ -122.942990115999919, 49.233761404000084 ], [ -122.943428280999981, 49.23361339500007 ], [ -122.943906294999962, 49.2335053830001 ], [ -122.944457829999948, 49.233471399000045 ], [ -122.94610269699993, 49.233513501000118 ], [ -122.946272887999925, 49.23347149100006 ], [ -122.946916615999982, 49.234039284000055 ], [ -122.947387383, 49.23443909700012 ], [ -122.946464094999911, 49.234906602000095 ], [ -122.94638186, 49.234924396000046 ], [ -122.946338791999935, 49.234933683000136 ], [ -122.945982689999965, 49.234919090000055 ], [ -122.944931496999956, 49.234723599000063 ], [ -122.944178791999946, 49.234998607000072 ], [ -122.943883584999952, 49.235456904000095 ], [ -122.944312805999971, 49.235509420000021 ], [ -122.944995078999952, 49.235592895000103 ], [ -122.946090406999986, 49.235785699000076 ], [ -122.948343684999926, 49.23618229700002 ], [ -122.948501897999932, 49.236178704000039 ], [ -122.949116105999948, 49.235921300000086 ], [ -122.94935860799994, 49.23613796700009 ], [ -122.949998003999951, 49.236709291000111 ], [ -122.949463367999954, 49.23701355100004 ], [ -122.949440912999961, 49.237026319000037 ], [ -122.949073699999971, 49.237235300000087 ], [ -122.948574788999963, 49.237518608000101 ], [ -122.948564401999988, 49.237524495000095 ], [ -122.948352732999979, 49.237844589000098 ], [ -122.948226311999946, 49.238035784000047 ], [ -122.948633682999969, 49.23814179800015 ], [ -122.949459484999949, 49.238388411000059 ], [ -122.951653694999933, 49.239043672000015 ], [ -122.954745670999955, 49.239966869000085 ], [ -122.95635488399995, 49.24044731000005 ], [ -122.958148001999973, 49.24093388600005 ], [ -122.959631689, 49.241259495000051 ], [ -122.961188810999943, 49.241567465000024 ], [ -122.963132176999963, 49.241951793000041 ], [ -122.96395239499995, 49.242155900000121 ], [ -122.964526780999932, 49.242342141000044 ], [ -122.96461634899994, 49.242371178000035 ], [ -122.964739540999986, 49.242411104000034 ], [ -122.964686467999954, 49.242493610000089 ], [ -122.964506579, 49.242773293000042 ], [ -122.964577495999933, 49.242907711000043 ], [ -122.964579492999974, 49.242990434 ], [ -122.964641606999976, 49.24558140200002 ], [ -122.96464155399994, 49.246462167000097 ], [ -122.96464151099994, 49.24707286299999 ], [ -122.964641488999945, 49.248038207000079 ], [ -122.964641488999945, 49.248144261000064 ], [ -122.964641487999955, 49.24822523600006 ], [ -122.964641404999938, 49.24990999700006 ], [ -122.962287800999974, 49.249904026000131 ], [ -122.962288223000016, 49.249350078000134 ], [ -122.963112659999979, 49.249350344000071 ], [ -122.963113063999941, 49.24881063100004 ], [ -122.96318494800002, 49.248810653000135 ], [ -122.963201650999949, 49.248555434000089 ], [ -122.963525459999971, 49.248564550000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.711222379449222", "sL_AssetLoss": "91870", "sL_BldgLoss": "65340", "sL_StrLoss": "25640", "sL_NStrLoss": "39700", "sL_ContLoss": "26530", "geom_point": "0101000020E6100000F3B81C6D24BC5EC0B0078B719B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.938803376999914, 49.239895030000056 ], [ -122.938803710999963, 49.239625173000057 ], [ -122.937979435, 49.239624734000095 ], [ -122.937980785999926, 49.238545304000098 ], [ -122.94168995299998, 49.238547237000105 ], [ -122.941688998999908, 49.239356808000068 ], [ -122.940864725999944, 49.239356390000061 ], [ -122.94086440299999, 49.239626246000107 ], [ -122.940040127999936, 49.239625820000114 ], [ -122.940039800999969, 49.239895679000028 ], [ -122.938803376999914, 49.239895030000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84399283", "BldgCostT": "54344448", "sL_LossRatio": "0.700529499516401", "sL_AssetLoss": "1220020", "sL_BldgLoss": "854660", "sL_StrLoss": "353630", "sL_NStrLoss": "501030", "sL_ContLoss": "365360", "geom_point": "0101000020E6100000642C6023C5BC5EC0AB5E8618129E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94935860799994, 49.23613796700009 ], [ -122.949116105999948, 49.235921300000086 ], [ -122.948501897999932, 49.236178704000039 ], [ -122.948343684999926, 49.23618229700002 ], [ -122.946090406999986, 49.235785699000076 ], [ -122.944995078999952, 49.235592895000103 ], [ -122.944312805999971, 49.235509420000021 ], [ -122.943883584999952, 49.235456904000095 ], [ -122.944178791999946, 49.234998607000072 ], [ -122.944931496999956, 49.234723599000063 ], [ -122.945982689999965, 49.234919090000055 ], [ -122.946338791999935, 49.234933683000136 ], [ -122.94638186, 49.234924396000046 ], [ -122.946464094999911, 49.234906602000095 ], [ -122.947387383, 49.23443909700012 ], [ -122.947734297999943, 49.234738110000038 ], [ -122.950827681999954, 49.233149286000064 ], [ -122.951471506999951, 49.232818602000087 ], [ -122.95249600599999, 49.233725463000049 ], [ -122.953078007999949, 49.234240592000063 ], [ -122.953648496999975, 49.23475504500005 ], [ -122.953739708999947, 49.234837300000088 ], [ -122.953288889999939, 49.23489701400014 ], [ -122.953084962, 49.235009323 ], [ -122.949998003999951, 49.236709291000111 ], [ -122.94935860799994, 49.23613796700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219393508", "BldgCostT": "150275784", "sL_LossRatio": "0.795130456441871", "sL_AssetLoss": "1927080", "sL_BldgLoss": "1532280", "sL_StrLoss": "683540", "sL_NStrLoss": "848740", "sL_ContLoss": "394800", "geom_point": "0101000020E6100000A4C1860A02BD5EC064652410699E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953288889999939, 49.23489701400014 ], [ -122.953739708999947, 49.234837300000088 ], [ -122.954465113999944, 49.235491395000068 ], [ -122.954672600999913, 49.235666984000062 ], [ -122.956276520999964, 49.237024207000026 ], [ -122.956317102999947, 49.237058566 ], [ -122.95633391799997, 49.237072807000047 ], [ -122.956978382999978, 49.23761809900008 ], [ -122.957456481999913, 49.237865896000066 ], [ -122.958163892999906, 49.238072306000063 ], [ -122.957814390999928, 49.238272311000067 ], [ -122.957235430999958, 49.238582510000079 ], [ -122.956704280999958, 49.238867084000042 ], [ -122.95616047, 49.239162470000046 ], [ -122.955647797999973, 49.239440890000047 ], [ -122.955595626999965, 49.239468989000066 ], [ -122.955469800999978, 49.239536684000036 ], [ -122.955008600999918, 49.239810689000059 ], [ -122.954745670999955, 49.239966869000085 ], [ -122.951653694999933, 49.239043672000015 ], [ -122.949459484999949, 49.238388411000059 ], [ -122.948633682999969, 49.23814179800015 ], [ -122.948226311999946, 49.238035784000047 ], [ -122.948352732999979, 49.237844589000098 ], [ -122.948564401999988, 49.237524495000095 ], [ -122.948574788999963, 49.237518608000101 ], [ -122.949073699999971, 49.237235300000087 ], [ -122.949440912999961, 49.237026319000037 ], [ -122.949463367999954, 49.23701355100004 ], [ -122.949998003999951, 49.236709291000111 ], [ -122.953084962, 49.235009323 ], [ -122.953288889999939, 49.23489701400014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150855500", "BldgCostT": "92720000", "sL_LossRatio": "0.71220552669623", "sL_AssetLoss": "1702319", "sL_BldgLoss": "1212401", "sL_StrLoss": "574531", "sL_NStrLoss": "637870", "sL_ContLoss": "489918", "geom_point": "0101000020E6100000EF6F549721BD5EC05AEDC459CF9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950737721999985, 49.232179907000024 ], [ -122.949062892999947, 49.230777599000142 ], [ -122.948767694999944, 49.230526003000122 ], [ -122.949352036999969, 49.230215429000118 ], [ -122.949969798000012, 49.229887094000077 ], [ -122.951263781999941, 49.230922696000071 ], [ -122.951530076, 49.231048298000047 ], [ -122.951810698999964, 49.231103091000115 ], [ -122.952138403999953, 49.23108979600012 ], [ -122.952399898999943, 49.231016092000068 ], [ -122.953730689999972, 49.230298815000019 ], [ -122.953926705999947, 49.230262005000085 ], [ -122.954212909999953, 49.230272793000104 ], [ -122.954447404999939, 49.230361410000079 ], [ -122.954627208999966, 49.230508796000017 ], [ -122.954754096999949, 49.230667300000057 ], [ -122.954880413999916, 49.23098079500005 ], [ -122.955378672999956, 49.230892422000117 ], [ -122.95610278599996, 49.230764001000118 ], [ -122.956497692999918, 49.23066790400005 ], [ -122.956767706999983, 49.230528688000049 ], [ -122.956992612999926, 49.230280097000083 ], [ -122.957064018999944, 49.230133489000075 ], [ -122.958048111999958, 49.229949503000093 ], [ -122.958288498999977, 49.22994728900003 ], [ -122.958798497999965, 49.230336514000058 ], [ -122.958919217999963, 49.230484005000086 ], [ -122.959075323999969, 49.230784798000059 ], [ -122.959033700999925, 49.231146688000081 ], [ -122.958873374999925, 49.23139259800012 ], [ -122.958726679, 49.23153619400005 ], [ -122.958706021999987, 49.231547174000092 ], [ -122.959651881999932, 49.232608199000026 ], [ -122.95725422299995, 49.233935093000085 ], [ -122.957362885999927, 49.234024259000108 ], [ -122.95798251699992, 49.234532656000049 ], [ -122.958558484999969, 49.23500517700009 ], [ -122.959064555999959, 49.235391518000021 ], [ -122.95903824, 49.235436711000084 ], [ -122.959068445999961, 49.235478992000061 ], [ -122.958963690999937, 49.235568834000084 ], [ -122.957942324999962, 49.23613099100006 ], [ -122.956579984999919, 49.236888004000086 ], [ -122.956317102999947, 49.237058566 ], [ -122.956276520999964, 49.237024207000026 ], [ -122.954672600999913, 49.235666984000062 ], [ -122.954465113999944, 49.235491395000068 ], [ -122.953739708999947, 49.234837300000088 ], [ -122.953648496999975, 49.23475504500005 ], [ -122.953078007999949, 49.234240592000063 ], [ -122.95249600599999, 49.233725463000049 ], [ -122.951471506999951, 49.232818602000087 ], [ -122.951172702999898, 49.23255981100008 ], [ -122.950737721999985, 49.232179907000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124648084", "BldgCostT": "79068334", "sL_LossRatio": "0.728326096818093", "sL_AssetLoss": "1543100", "sL_BldgLoss": "1123880", "sL_StrLoss": "525500", "sL_NStrLoss": "598380", "sL_ContLoss": "419220", "geom_point": "0101000020E61000007F0CB9C6A5BC5EC0917262D5C19D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.946916615999982, 49.234039284000055 ], [ -122.946272887999925, 49.23347149100006 ], [ -122.94610269699993, 49.233513501000118 ], [ -122.944457829999948, 49.233471399000045 ], [ -122.943906294999962, 49.2335053830001 ], [ -122.943813635999973, 49.233081114000107 ], [ -122.943787123999982, 49.23295970700007 ], [ -122.943780778999894, 49.232742405000074 ], [ -122.943856513999918, 49.232531007000098 ], [ -122.943997407999916, 49.232331406000085 ], [ -122.944232991999968, 49.232151608000059 ], [ -122.944326844, 49.232104144000047 ], [ -122.944562557, 49.23198492900007 ], [ -122.946479787999934, 49.231015303000063 ], [ -122.94826261299994, 49.230106301000077 ], [ -122.948767694999944, 49.230526003000122 ], [ -122.949062892999947, 49.230777599000142 ], [ -122.950737721999985, 49.232179907000024 ], [ -122.951172702999898, 49.23255981100008 ], [ -122.951471506999951, 49.232818602000087 ], [ -122.950827681999954, 49.233149286000064 ], [ -122.947734297999943, 49.234738110000038 ], [ -122.947387383, 49.23443909700012 ], [ -122.946916615999982, 49.234039284000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108886750", "BldgCostT": "72520000", "sL_LossRatio": "0.731131777060796", "sL_AssetLoss": "1580700", "sL_BldgLoss": "1155700", "sL_StrLoss": "508000", "sL_NStrLoss": "647700", "sL_ContLoss": "425000", "geom_point": "0101000020E6100000B04136FB89BD5EC0D022A14E759D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.962828105999947, 49.231866194000105 ], [ -122.962056594, 49.231277808000051 ], [ -122.96195665499998, 49.231333098000086 ], [ -122.960920902999959, 49.23190613600007 ], [ -122.959651881999932, 49.232608199000026 ], [ -122.958706021999987, 49.231547174000092 ], [ -122.958726679, 49.23153619400005 ], [ -122.958873374999925, 49.23139259800012 ], [ -122.959033700999925, 49.231146688000081 ], [ -122.959075323999969, 49.230784798000059 ], [ -122.958919217999963, 49.230484005000086 ], [ -122.958798497999965, 49.230336514000058 ], [ -122.958288498999977, 49.22994728900003 ], [ -122.958048111999958, 49.229949503000093 ], [ -122.957064018999944, 49.230133489000075 ], [ -122.95678979399996, 49.229311291000016 ], [ -122.956959583999932, 49.229275597000019 ], [ -122.957526093999888, 49.229052907000025 ], [ -122.957647331999951, 49.228986885000083 ], [ -122.95854408699995, 49.228498701000035 ], [ -122.959140930999979, 49.228156448000064 ], [ -122.959746514999921, 49.227809193000084 ], [ -122.960337389999893, 49.227479811000109 ], [ -122.960946311999962, 49.227140409000071 ], [ -122.961383337999976, 49.227479749000068 ], [ -122.963954768999955, 49.229476392000045 ], [ -122.964395393999951, 49.229818503000054 ], [ -122.96453011399997, 49.229880001000069 ], [ -122.964737000999975, 49.230011886000057 ], [ -122.965287709999956, 49.230366090000068 ], [ -122.966030594999935, 49.230938888000018 ], [ -122.966581703999935, 49.231363789000063 ], [ -122.965328782999975, 49.232047394000062 ], [ -122.964925904999959, 49.23222529800006 ], [ -122.964721807999965, 49.232239317000065 ], [ -122.964032796999987, 49.232802796000058 ], [ -122.962828105999947, 49.231866194000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142186167", "BldgCostT": "93641667", "sL_LossRatio": "0.723810981886908", "sL_AssetLoss": "1894210", "sL_BldgLoss": "1371050", "sL_StrLoss": "645540", "sL_NStrLoss": "725510", "sL_ContLoss": "523160", "geom_point": "0101000020E6100000FEF4349ABBBD5EC02FE15C05299D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.960946311999962, 49.227140409000071 ], [ -122.961022414999903, 49.226942500000085 ], [ -122.961015681999982, 49.226266717000044 ], [ -122.961011007999929, 49.225795400000045 ], [ -122.961011589999984, 49.225471104000036 ], [ -122.961008247999985, 49.225124294000068 ], [ -122.961004894999959, 49.224777196000147 ], [ -122.961172512999923, 49.224795512000078 ], [ -122.961682569999951, 49.224800038000161 ], [ -122.963948064999954, 49.224820129000094 ], [ -122.964769820999948, 49.22482740700007 ], [ -122.964766224999948, 49.225305405000078 ], [ -122.964762504999939, 49.225799294000041 ], [ -122.964762442999984, 49.225818159000056 ], [ -122.964757508999952, 49.227073889000039 ], [ -122.965485303999955, 49.22706999400004 ], [ -122.966263502999951, 49.227073898000057 ], [ -122.967772498999977, 49.227089293000098 ], [ -122.967772187999969, 49.228823417000051 ], [ -122.967772086999958, 49.22930371300005 ], [ -122.9677928199999, 49.22981036200013 ], [ -122.967801687999923, 49.230027 ], [ -122.967795105, 49.230422295000039 ], [ -122.967801873999932, 49.23092807300003 ], [ -122.9678036829999, 49.231062996000112 ], [ -122.967805133999988, 49.231170928000033 ], [ -122.967807511999951, 49.231346897000051 ], [ -122.967596649999905, 49.231349795000014 ], [ -122.967211933999977, 49.231355104000059 ], [ -122.966581703999935, 49.231363789000063 ], [ -122.966030594999935, 49.230938888000018 ], [ -122.965287709999956, 49.230366090000068 ], [ -122.964737000999975, 49.230011886000057 ], [ -122.96453011399997, 49.229880001000069 ], [ -122.964395393999951, 49.229818503000054 ], [ -122.963954768999955, 49.229476392000045 ], [ -122.961383337999976, 49.227479749000068 ], [ -122.960946311999962, 49.227140409000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139647244", "BldgCostT": "87979076", "sL_LossRatio": "0.648318088150268", "sL_AssetLoss": "6745300", "sL_BldgLoss": "4373100", "sL_StrLoss": "1645500", "sL_NStrLoss": "2727600", "sL_ContLoss": "2372200", "geom_point": "0101000020E6100000A062C53EBBBD5EC060730E9E099E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.964726815999981, 49.238944576000037 ], [ -122.964697894999958, 49.237014111000079 ], [ -122.963450425999966, 49.236667299000032 ], [ -122.962793908999942, 49.237509114000019 ], [ -122.959929320999962, 49.236695105000074 ], [ -122.957942324999962, 49.23613099100006 ], [ -122.958963690999937, 49.235568834000084 ], [ -122.959068445999961, 49.235478992000061 ], [ -122.95903824, 49.235436711000084 ], [ -122.959064555999959, 49.235391518000021 ], [ -122.958558484999969, 49.23500517700009 ], [ -122.95798251699992, 49.234532656000049 ], [ -122.957362885999927, 49.234024259000108 ], [ -122.95725422299995, 49.233935093000085 ], [ -122.959651881999932, 49.232608199000026 ], [ -122.960920902999959, 49.23190613600007 ], [ -122.96195665499998, 49.231333098000086 ], [ -122.962056594, 49.231277808000051 ], [ -122.962828105999947, 49.231866194000105 ], [ -122.964032796999987, 49.232802796000058 ], [ -122.964721807999965, 49.232239317000065 ], [ -122.964925904999959, 49.23222529800006 ], [ -122.965328782999975, 49.232047394000062 ], [ -122.966581703999935, 49.231363789000063 ], [ -122.967211933999977, 49.231355104000059 ], [ -122.967596649999905, 49.231349795000014 ], [ -122.967807511999951, 49.231346897000051 ], [ -122.971109210999956, 49.231326482000085 ], [ -122.971153264999941, 49.231324528000137 ], [ -122.971336094999955, 49.231329664000043 ], [ -122.971438113000019, 49.232201117000074 ], [ -122.971640675999978, 49.233931420000012 ], [ -122.9710041299999, 49.234294503000051 ], [ -122.970974554999913, 49.234311372000022 ], [ -122.970260495999966, 49.23425731 ], [ -122.969203590999967, 49.234023696000094 ], [ -122.968034903999964, 49.234122009000039 ], [ -122.967555006999959, 49.234445304000076 ], [ -122.96613879399996, 49.234651788000058 ], [ -122.965686005999956, 49.235110407000057 ], [ -122.965698899999921, 49.235631703000116 ], [ -122.965987199999944, 49.236189988000064 ], [ -122.96678359500001, 49.236775297000101 ], [ -122.968280007999965, 49.23751308800005 ], [ -122.968858006999966, 49.238079883000076 ], [ -122.968925299999952, 49.238105490000052 ], [ -122.968877520999968, 49.238215024000056 ], [ -122.968623669999928, 49.238330495000085 ], [ -122.968551312, 49.238384599000035 ], [ -122.967344895999958, 49.238322757000077 ], [ -122.96794724199999, 49.238836312000018 ], [ -122.966103007999934, 49.240228863 ], [ -122.965898193999962, 49.240119798000102 ], [ -122.96548589799994, 49.239978473000072 ], [ -122.964681201999952, 49.239789173000091 ], [ -122.964725835999928, 49.239106686000085 ], [ -122.964726815999981, 49.238944576000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200826968", "BldgCostT": "130695989", "sL_LossRatio": "0.721187630722924", "sL_AssetLoss": "3375460", "sL_BldgLoss": "2434340", "sL_StrLoss": "1056250", "sL_NStrLoss": "1378090", "sL_ContLoss": "941120", "geom_point": "0101000020E6100000F4CDE3EE7BBD5EC09F3BEA7D9D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.956978382999978, 49.23761809900008 ], [ -122.95633391799997, 49.237072807000047 ], [ -122.956317102999947, 49.237058566 ], [ -122.956579984999919, 49.236888004000086 ], [ -122.957942324999962, 49.23613099100006 ], [ -122.959929320999962, 49.236695105000074 ], [ -122.962793908999942, 49.237509114000019 ], [ -122.963450425999966, 49.236667299000032 ], [ -122.964697894999958, 49.237014111000079 ], [ -122.964726815999981, 49.238944576000037 ], [ -122.964725835999928, 49.239106686000085 ], [ -122.964681201999952, 49.239789173000091 ], [ -122.96466939099993, 49.240767190000049 ], [ -122.964671798999944, 49.24150774200006 ], [ -122.964545103999939, 49.241703418000036 ], [ -122.96464762, 49.24207662000002 ], [ -122.964668366999973, 49.242152142000045 ], [ -122.964739540999986, 49.242411104000034 ], [ -122.96461634899994, 49.242371178000035 ], [ -122.964526780999932, 49.242342141000044 ], [ -122.96395239499995, 49.242155900000121 ], [ -122.963132176999963, 49.241951793000041 ], [ -122.961188810999943, 49.241567465000024 ], [ -122.959631689, 49.241259495000051 ], [ -122.958148001999973, 49.24093388600005 ], [ -122.95635488399995, 49.24044731000005 ], [ -122.954745670999955, 49.239966869000085 ], [ -122.955008600999918, 49.239810689000059 ], [ -122.955469800999978, 49.239536684000036 ], [ -122.955595626999965, 49.239468989000066 ], [ -122.955647797999973, 49.239440890000047 ], [ -122.95616047, 49.239162470000046 ], [ -122.956704280999958, 49.238867084000042 ], [ -122.957235430999958, 49.238582510000079 ], [ -122.957814390999928, 49.238272311000067 ], [ -122.958163892999906, 49.238072306000063 ], [ -122.957456481999913, 49.237865896000066 ], [ -122.956978382999978, 49.23761809900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251734719", "BldgCostT": "143274722", "sL_LossRatio": "0.583537606555287", "sL_AssetLoss": "17256300", "sL_BldgLoss": "10069700", "sL_StrLoss": "3393400", "sL_NStrLoss": "6676300", "sL_ContLoss": "7186600", "geom_point": "0101000020E6100000D4BDD36C37BE5EC09546EDFA5CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.97146108599999, 49.261453791000108 ], [ -122.970670476999913, 49.26136861500008 ], [ -122.970582879999981, 49.261348465000019 ], [ -122.970175718999897, 49.261254802000096 ], [ -122.968921481999971, 49.26086161900006 ], [ -122.968852000999988, 49.260809494000021 ], [ -122.968144087999946, 49.260521108000056 ], [ -122.968065807999935, 49.260563107000095 ], [ -122.967993477999983, 49.260527734000092 ], [ -122.967732968999925, 49.260406563000075 ], [ -122.967683407, 49.260383537000081 ], [ -122.967433383999932, 49.260233488000104 ], [ -122.967216095999973, 49.260103064000113 ], [ -122.967181779999947, 49.260082476000093 ], [ -122.966939697999948, 49.259904029000012 ], [ -122.966498321999893, 49.259652218000042 ], [ -122.965523053999959, 49.25887213500004 ], [ -122.964738719999971, 49.258126735000062 ], [ -122.96462879399999, 49.258010049000127 ], [ -122.96474439499994, 49.256556285000052 ], [ -122.964344150999978, 49.256528153000076 ], [ -122.964344462999975, 49.25609714600008 ], [ -122.96473960699997, 49.256097267000094 ], [ -122.96475673799992, 49.256097272000076 ], [ -122.96475693, 49.255827416000038 ], [ -122.965581475999926, 49.255827665 ], [ -122.965581665999977, 49.255557809000088 ], [ -122.965993935999904, 49.255557931000077 ], [ -122.965994122999987, 49.255288074000141 ], [ -122.964731163999929, 49.255287695000028 ], [ -122.963932774999989, 49.255287449000072 ], [ -122.963933365999978, 49.254477879000042 ], [ -122.964345628999951, 49.254478008000049 ], [ -122.964345822, 49.254208151000036 ], [ -122.964706774999954, 49.254208262000084 ], [ -122.965582602999959, 49.254208526000134 ], [ -122.96558265199991, 49.254138801000117 ], [ -122.96470422699997, 49.254114088000016 ], [ -122.963704, 49.254085942000074 ], [ -122.963804705999948, 49.253676391000063 ], [ -122.963698766, 49.253509126000061 ], [ -122.963473685999972, 49.25315370599999 ], [ -122.962402687999941, 49.252380396 ], [ -122.961744500999913, 49.251507297000025 ], [ -122.961465913999973, 49.251462976000091 ], [ -122.961534113999932, 49.250421499000026 ], [ -122.963076680999976, 49.250464938000064 ], [ -122.963078982999932, 49.250429760000038 ], [ -122.96228739899999, 49.250429505000035 ], [ -122.962287800999974, 49.249904026000131 ], [ -122.964641404999938, 49.24990999700006 ], [ -122.964641487999955, 49.24822523600006 ], [ -122.964641488999945, 49.248144261000064 ], [ -122.964641488999945, 49.248038207000079 ], [ -122.96464151099994, 49.24707286299999 ], [ -122.96464155399994, 49.246462167000097 ], [ -122.964641606999976, 49.24558140200002 ], [ -122.964579492999974, 49.242990434 ], [ -122.964577495999933, 49.242907711000043 ], [ -122.964506579, 49.242773293000042 ], [ -122.964686467999954, 49.242493610000089 ], [ -122.964739540999986, 49.242411104000034 ], [ -122.964668366999973, 49.242152142000045 ], [ -122.96464762, 49.24207662000002 ], [ -122.964545103999939, 49.241703418000036 ], [ -122.964671798999944, 49.24150774200006 ], [ -122.96466939099993, 49.240767190000049 ], [ -122.964681201999952, 49.239789173000091 ], [ -122.96548589799994, 49.239978473000072 ], [ -122.965898193999962, 49.240119798000102 ], [ -122.966103007999934, 49.240228863 ], [ -122.96631619899992, 49.240342379000012 ], [ -122.967612290999924, 49.241207597000056 ], [ -122.96762207799999, 49.241288949000101 ], [ -122.968104683999954, 49.241574573 ], [ -122.968264828999921, 49.241687169000059 ], [ -122.968692830999913, 49.24196766900004 ], [ -122.969666343999947, 49.242608906000072 ], [ -122.97091138799999, 49.243429003000138 ], [ -122.97202578299999, 49.24402960900008 ], [ -122.972036407999894, 49.244035344000068 ], [ -122.972231162999918, 49.244136031000025 ], [ -122.972517291999949, 49.244283994000085 ], [ -122.973655620999949, 49.245021033000064 ], [ -122.974368688999931, 49.245482702000054 ], [ -122.974495318999942, 49.245478110000057 ], [ -122.974614410999905, 49.245548092 ], [ -122.974616339999969, 49.245728082000078 ], [ -122.97462021399997, 49.246090590000094 ], [ -122.974656665999987, 49.246270029000037 ], [ -122.974692924999914, 49.246448457000071 ], [ -122.974694013999937, 49.246453903000052 ], [ -122.974689039999959, 49.247054572000067 ], [ -122.974687543999977, 49.247234561000056 ], [ -122.97468010599999, 49.248132807000026 ], [ -122.974678609999941, 49.248312796000086 ], [ -122.974701420999921, 49.248838945000053 ], [ -122.974711534, 49.249072569000049 ], [ -122.974749896999938, 49.249957921000082 ], [ -122.974549214999954, 49.249956994000037 ], [ -122.974521743999929, 49.249956863000058 ], [ -122.97401606199999, 49.249954558000141 ], [ -122.97363772099996, 49.249952835000059 ], [ -122.973411208999906, 49.249951116000098 ], [ -122.973284893999946, 49.249950145000106 ], [ -122.974096682, 49.250862183000031 ], [ -122.974489012, 49.25130300500004 ], [ -122.975283358999931, 49.252195381000078 ], [ -122.975704118999943, 49.252262436000059 ], [ -122.975923128999966, 49.25229732600009 ], [ -122.978155420999968, 49.252653029000079 ], [ -122.978155093999987, 49.252230712000042 ], [ -122.978165177999983, 49.251759790000051 ], [ -122.981650393999956, 49.251772702000032 ], [ -122.981690082999961, 49.251901734000043 ], [ -122.981792575999947, 49.252246336000034 ], [ -122.981853503999972, 49.252451284000045 ], [ -122.981872649999971, 49.252676154000071 ], [ -122.981948516999978, 49.253566505000073 ], [ -122.982112995999955, 49.255156505000038 ], [ -122.982248362999897, 49.25564828500012 ], [ -122.982271237999925, 49.255731411000077 ], [ -122.982379602999941, 49.256125191000137 ], [ -122.982611200999912, 49.256872643000108 ], [ -122.982623793999934, 49.256913352000055 ], [ -122.982675492999974, 49.257080126000069 ], [ -122.982761107, 49.257356509000054 ], [ -122.982802109999966, 49.257507288000085 ], [ -122.98282651199996, 49.257596992000053 ], [ -122.982925241000018, 49.257982366000086 ], [ -122.982980581999968, 49.258198213000071 ], [ -122.98302369299995, 49.258366409000082 ], [ -122.983275099999958, 49.25938050300006 ], [ -122.983851090999963, 49.259984053000046 ], [ -122.983913590999947, 49.260049559000095 ], [ -122.984018554999963, 49.260159555000023 ], [ -122.984608898999952, 49.26077809500002 ], [ -122.984936546999919, 49.261130589000054 ], [ -122.98555029799995, 49.261790886000021 ], [ -122.985597678999909, 49.261841850000103 ], [ -122.982097654999905, 49.261731192000049 ], [ -122.98073731099997, 49.261688261000096 ], [ -122.978334558999947, 49.261673576000106 ], [ -122.973507880999989, 49.261621431000044 ], [ -122.973183111999944, 49.261578432000135 ], [ -122.97146108599999, 49.261453791000108 ] ], [ [ -122.97485165099998, 49.260147757000098 ], [ -122.974861071999968, 49.260003274000077 ], [ -122.973985976, 49.259978735000075 ], [ -122.974157528999967, 49.257348544000067 ], [ -122.973479619999978, 49.257329528000056 ], [ -122.97350094799998, 49.257002593000074 ], [ -122.973270333999935, 49.256996124000054 ], [ -122.97327600899996, 49.256909127000114 ], [ -122.973001814999961, 49.256909062000084 ], [ -122.97300166699992, 49.257178919000097 ], [ -122.97176481299999, 49.257178624000097 ], [ -122.971764966999956, 49.256908767000091 ], [ -122.97094040199994, 49.25690856300006 ], [ -122.97094052099996, 49.256704628000101 ], [ -122.968879152999975, 49.256646732000142 ], [ -122.968878647999929, 49.257447738000074 ], [ -122.969290935999965, 49.257447848000069 ], [ -122.969290265999916, 49.258527274000059 ], [ -122.969702561999924, 49.258527383000043 ], [ -122.969701570999973, 49.260146520000056 ], [ -122.971763119999977, 49.260147042 ], [ -122.971762965999929, 49.26041689800013 ], [ -122.974236837, 49.260417477000047 ], [ -122.974236977999922, 49.26014762100003 ], [ -122.97485165099998, 49.260147757000098 ] ], [ [ -122.967640728999967, 49.259066536000063 ], [ -122.967640906, 49.258796680000074 ], [ -122.967228606999939, 49.258796564000114 ], [ -122.967228428999974, 49.25906642000016 ], [ -122.967640728999967, 49.259066536000063 ] ], [ [ -122.967228785999964, 49.258526708000069 ], [ -122.967229678999942, 49.257177426000048 ], [ -122.966817393999989, 49.257177309000099 ], [ -122.966817573999933, 49.256907453000053 ], [ -122.965580726999988, 49.25690709 ], [ -122.965579790000021, 49.258256373000073 ], [ -122.966404375999929, 49.258256615000022 ], [ -122.966404193999963, 49.258526472000085 ], [ -122.967228785999964, 49.258526708000069 ] ], [ [ -122.968466876999969, 49.256638057000082 ], [ -122.968793190999989, 49.256638146000071 ], [ -122.968812860999932, 49.256337090000038 ], [ -122.968054804999923, 49.256315788000101 ], [ -122.968054771999959, 49.256368087000048 ], [ -122.968467048999941, 49.256368201000086 ], [ -122.968466876999969, 49.256638057000082 ] ], [ [ -122.967993861999929, 49.255828358 ], [ -122.96799398099995, 49.255826537000132 ], [ -122.96799221, 49.255826487000064 ], [ -122.968015289000036, 49.255473326000121 ], [ -122.96794982899992, 49.255471487000143 ], [ -122.967952079, 49.255437053000072 ], [ -122.967643106999972, 49.255428369000107 ], [ -122.967642845999961, 49.255828260000079 ], [ -122.967993861999929, 49.255828358 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72246789", "BldgCostT": "46675372", "sL_LossRatio": "0.685168368236147", "sL_AssetLoss": "1090170", "sL_BldgLoss": "746950", "sL_StrLoss": "348440", "sL_NStrLoss": "398510", "sL_ContLoss": "343220", "geom_point": "0101000020E6100000DCD030297CBE5EC0E1DC0D3F0BA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977547992000027, 49.24833019900003 ], [ -122.978024102999882, 49.24833718900004 ], [ -122.978132113999962, 49.248365504000049 ], [ -122.978207819999938, 49.248469396000068 ], [ -122.978197415999915, 49.249155498000057 ], [ -122.97817567599995, 49.249974658000063 ], [ -122.97817279099999, 49.250405284000109 ], [ -122.978169776999962, 49.250845601000094 ], [ -122.978167433999957, 49.251313998000072 ], [ -122.978165177999983, 49.251759790000051 ], [ -122.978155093999987, 49.252230712000042 ], [ -122.978155420999968, 49.252653029000079 ], [ -122.975923128999966, 49.25229732600009 ], [ -122.975704118999943, 49.252262436000059 ], [ -122.975283358999931, 49.252195381000078 ], [ -122.974489012, 49.25130300500004 ], [ -122.974096682, 49.250862183000031 ], [ -122.973284893999946, 49.249950145000106 ], [ -122.973411208999906, 49.249951116000098 ], [ -122.97363772099996, 49.249952835000059 ], [ -122.97401606199999, 49.249954558000141 ], [ -122.974521743999929, 49.249956863000058 ], [ -122.974549214999954, 49.249956994000037 ], [ -122.974749896999938, 49.249957921000082 ], [ -122.974711534, 49.249072569000049 ], [ -122.974701420999921, 49.248838945000053 ], [ -122.974678609999941, 49.248312796000086 ], [ -122.976022991999969, 49.248320959000083 ], [ -122.977547992000027, 49.24833019900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783082250", "BldgCostT": "535474015", "sL_LossRatio": "0.84476985426988", "sL_AssetLoss": "4969460", "sL_BldgLoss": "4198050", "sL_StrLoss": "1891910", "sL_NStrLoss": "2306140", "sL_ContLoss": "771410", "geom_point": "0101000020E61000002800B65197BE5EC0C39F6EC1CE9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.978132113999962, 49.248365504000049 ], [ -122.978024102999882, 49.24833718900004 ], [ -122.977547992000027, 49.24833019900003 ], [ -122.976022991999969, 49.248320959000083 ], [ -122.974678609999941, 49.248312796000086 ], [ -122.97468010599999, 49.248132807000026 ], [ -122.974687543999977, 49.247234561000056 ], [ -122.974689039999959, 49.247054572000067 ], [ -122.974694013999937, 49.246453903000052 ], [ -122.974692924999914, 49.246448457000071 ], [ -122.974656665999987, 49.246270029000037 ], [ -122.97462021399997, 49.246090590000094 ], [ -122.974616339999969, 49.245728082000078 ], [ -122.974614410999905, 49.245548092 ], [ -122.975807902999946, 49.246011290000055 ], [ -122.976584626999951, 49.246315906000092 ], [ -122.976937417999949, 49.24652940100006 ], [ -122.977410830999986, 49.246957095 ], [ -122.978157001999989, 49.247561711000166 ], [ -122.979281066999945, 49.24807968300005 ], [ -122.979911793999946, 49.248370297000037 ], [ -122.980267730000023, 49.248664933000079 ], [ -122.98068332299999, 49.249008903000096 ], [ -122.981331804999968, 49.249491017000025 ], [ -122.981677997999967, 49.249700696000062 ], [ -122.982016381999955, 49.249840792000057 ], [ -122.982336278999966, 49.249928105000016 ], [ -122.982708019999961, 49.249978094 ], [ -122.98105289499992, 49.249978691000067 ], [ -122.981170904999942, 49.250314530000026 ], [ -122.981208961999954, 49.250422951000125 ], [ -122.981277436999932, 49.250617810000058 ], [ -122.981308254999973, 49.250705507000092 ], [ -122.981362297999937, 49.250859308000067 ], [ -122.978169776999962, 49.250845601000094 ], [ -122.97817279099999, 49.250405284000109 ], [ -122.97817567599995, 49.249974658000063 ], [ -122.978197415999915, 49.249155498000057 ], [ -122.978207819999938, 49.248469396000068 ], [ -122.978132113999962, 49.248365504000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89316583", "BldgCostT": "57763333", "sL_LossRatio": "0.714422594686298", "sL_AssetLoss": "1292056", "sL_BldgLoss": "923074", "sL_StrLoss": "397074", "sL_NStrLoss": "526000", "sL_ContLoss": "368982", "geom_point": "0101000020E61000004F602110FBBE5EC05F4EAECED69F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.982336278999966, 49.249928105000016 ], [ -122.982016381999955, 49.249840792000057 ], [ -122.981677997999967, 49.249700696000062 ], [ -122.981331804999968, 49.249491017000025 ], [ -122.98068332299999, 49.249008903000096 ], [ -122.980267730000023, 49.248664933000079 ], [ -122.979911793999946, 49.248370297000037 ], [ -122.979281066999945, 49.24807968300005 ], [ -122.978157001999989, 49.247561711000166 ], [ -122.977410830999986, 49.246957095 ], [ -122.977551997999967, 49.246939396000052 ], [ -122.978006270999941, 49.246881892000061 ], [ -122.978867888999929, 49.246894305000104 ], [ -122.978864412999926, 49.247306785000021 ], [ -122.979474895999928, 49.247634689000073 ], [ -122.982230306999938, 49.247649588000115 ], [ -122.986689207999973, 49.247680591000048 ], [ -122.98668931499995, 49.248418397000137 ], [ -122.989046307999956, 49.248458089000046 ], [ -122.989067655999975, 49.250013481000124 ], [ -122.987681846999976, 49.250012634000065 ], [ -122.987674449999986, 49.250074558000065 ], [ -122.987272565999916, 49.250012922000082 ], [ -122.983373955, 49.249980526000058 ], [ -122.982708019999961, 49.249978094 ], [ -122.982336278999966, 49.249928105000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195988417", "BldgCostT": "131331667", "sL_LossRatio": "0.741346019538728", "sL_AssetLoss": "2434140", "sL_BldgLoss": "1804540", "sL_StrLoss": "769480", "sL_NStrLoss": "1035060", "sL_ContLoss": "629600", "geom_point": "0101000020E610000074443A1305BF5EC0A4A57F6A38A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.981948516999978, 49.253566505000073 ], [ -122.981872649999971, 49.252676154000071 ], [ -122.981853503999972, 49.252451284000045 ], [ -122.981792575999947, 49.252246336000034 ], [ -122.981690082999961, 49.251901734000043 ], [ -122.981650393999956, 49.251772702000032 ], [ -122.978165177999983, 49.251759790000051 ], [ -122.978167433999957, 49.251313998000072 ], [ -122.978169776999962, 49.250845601000094 ], [ -122.981362297999937, 49.250859308000067 ], [ -122.981308254999973, 49.250705507000092 ], [ -122.981277436999932, 49.250617810000058 ], [ -122.981208961999954, 49.250422951000125 ], [ -122.981170904999942, 49.250314530000026 ], [ -122.98105289499992, 49.249978691000067 ], [ -122.982708019999961, 49.249978094 ], [ -122.983373955, 49.249980526000058 ], [ -122.987272565999916, 49.250012922000082 ], [ -122.987674449999986, 49.250074558000065 ], [ -122.987911739999959, 49.250110942000092 ], [ -122.988342374999931, 49.250289605000013 ], [ -122.988677108999966, 49.250528674000087 ], [ -122.988844112999928, 49.250679056000109 ], [ -122.988914590999968, 49.250742501000083 ], [ -122.989051545, 49.251061875000069 ], [ -122.989079198999903, 49.251126293000056 ], [ -122.989059797999971, 49.251933796000067 ], [ -122.98902809799992, 49.252739207000133 ], [ -122.989041088999969, 49.253089091000078 ], [ -122.989062103999927, 49.253232009000087 ], [ -122.989202507999934, 49.253566501000115 ], [ -122.988995410999934, 49.25356069700004 ], [ -122.988734043999941, 49.253560288000031 ], [ -122.984648514999989, 49.253553705000058 ], [ -122.981948516999978, 49.253566505000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100446834", "BldgCostT": "65678334", "sL_LossRatio": "0.732628913626834", "sL_AssetLoss": "1182439", "sL_BldgLoss": "866289", "sL_StrLoss": "390949", "sL_NStrLoss": "475340", "sL_ContLoss": "316150", "geom_point": "0101000020E6100000CB95519712BF5EC0C6875593929F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98668931499995, 49.248418397000137 ], [ -122.986689207999973, 49.247680591000048 ], [ -122.982230306999938, 49.247649588000115 ], [ -122.979474895999928, 49.247634689000073 ], [ -122.978864412999926, 49.247306785000021 ], [ -122.978867888999929, 49.246894305000104 ], [ -122.980347001999945, 49.246896110000144 ], [ -122.981797507999914, 49.246914097000072 ], [ -122.981802156999947, 49.246457239000101 ], [ -122.981804276999966, 49.246250309000111 ], [ -122.981809008999932, 49.24578660600006 ], [ -122.984846805999922, 49.245808487000026 ], [ -122.986959869999964, 49.245926936000075 ], [ -122.987635580999964, 49.245964800000124 ], [ -122.987641018999966, 49.244866 ], [ -122.987638647999958, 49.244397966000101 ], [ -122.987638290999953, 49.244326017000063 ], [ -122.98763609099997, 49.243883910000051 ], [ -122.988335848999924, 49.243878445000099 ], [ -122.989047198999955, 49.243872894000056 ], [ -122.989045607999941, 49.244913290000056 ], [ -122.989047621999987, 49.246956391000076 ], [ -122.989047092999954, 49.247672409000103 ], [ -122.989047101999944, 49.247684292000045 ], [ -122.989046560999952, 49.248212144000028 ], [ -122.989046307999956, 49.248458089000046 ], [ -122.98668931499995, 49.248418397000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117888751", "BldgCostT": "75465001", "sL_LossRatio": "0.712795938343713", "sL_AssetLoss": "1859340", "sL_BldgLoss": "1325330", "sL_StrLoss": "573400", "sL_NStrLoss": "751930", "sL_ContLoss": "534010", "geom_point": "0101000020E6100000BD6C09330CBF5EC010A9507A329F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.986959869999964, 49.245926936000075 ], [ -122.984846805999922, 49.245808487000026 ], [ -122.981809008999932, 49.24578660600006 ], [ -122.981827503999938, 49.24528828000016 ], [ -122.981830996999946, 49.24519451300003 ], [ -122.98187893, 49.245162569000108 ], [ -122.982372205000033, 49.244834012000155 ], [ -122.981215791999944, 49.244096305000021 ], [ -122.981696458, 49.243774416000058 ], [ -122.982177800999963, 49.243452110000057 ], [ -122.981766714999978, 49.243185602000032 ], [ -122.981758201999938, 49.24293588700008 ], [ -122.981743890999937, 49.242481217000091 ], [ -122.981723724999966, 49.241840403000083 ], [ -122.982725614999964, 49.241827888000095 ], [ -122.983733695999931, 49.241831733 ], [ -122.985372613999957, 49.241837880000062 ], [ -122.987104301999963, 49.241858386000018 ], [ -122.987629995999953, 49.241861390000103 ], [ -122.988308489999923, 49.241861607000075 ], [ -122.988999070999952, 49.241861800000073 ], [ -122.989047198999955, 49.243872894000056 ], [ -122.988335848999924, 49.243878445000099 ], [ -122.98763609099997, 49.243883910000051 ], [ -122.987638290999953, 49.244326017000063 ], [ -122.987638647999958, 49.244397966000101 ], [ -122.987641018999966, 49.244866 ], [ -122.987635580999964, 49.245964800000124 ], [ -122.986959869999964, 49.245926936000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131385085", "BldgCostT": "82538335", "sL_LossRatio": "0.707366705046797", "sL_AssetLoss": "1754380", "sL_BldgLoss": "1240990", "sL_StrLoss": "556580", "sL_NStrLoss": "684410", "sL_ContLoss": "513390", "geom_point": "0101000020E61000008CB574DC9BBE5EC035E8E844449F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977935749999943, 49.241813775000047 ], [ -122.981723724999966, 49.241840403000083 ], [ -122.981743890999937, 49.242481217000091 ], [ -122.981758201999938, 49.24293588700008 ], [ -122.981766714999978, 49.243185602000032 ], [ -122.982177800999963, 49.243452110000057 ], [ -122.981696458, 49.243774416000058 ], [ -122.981215791999944, 49.244096305000021 ], [ -122.982372205000033, 49.244834012000155 ], [ -122.98187893, 49.245162569000108 ], [ -122.981830996999946, 49.24519451300003 ], [ -122.981827503999938, 49.24528828000016 ], [ -122.981809008999932, 49.24578660600006 ], [ -122.981804276999966, 49.246250309000111 ], [ -122.981802156999947, 49.246457239000101 ], [ -122.981797507999914, 49.246914097000072 ], [ -122.980347001999945, 49.246896110000144 ], [ -122.978867888999929, 49.246894305000104 ], [ -122.978006270999941, 49.246881892000061 ], [ -122.977551997999967, 49.246939396000052 ], [ -122.977410830999986, 49.246957095 ], [ -122.976937417999949, 49.24652940100006 ], [ -122.976584626999951, 49.246315906000092 ], [ -122.975807902999946, 49.246011290000055 ], [ -122.974614410999905, 49.245548092 ], [ -122.974495318999942, 49.245478110000057 ], [ -122.97446720799999, 49.245383591000106 ], [ -122.97352878299999, 49.244779002 ], [ -122.973677095999946, 49.244716520000026 ], [ -122.97393918399996, 49.244529193000048 ], [ -122.974057086999977, 49.244364110000099 ], [ -122.974139792999978, 49.243875487000075 ], [ -122.974139564999959, 49.2436288990001 ], [ -122.974139419999972, 49.243431455000064 ], [ -122.974139276999921, 49.243314201000089 ], [ -122.974188014000021, 49.243135406000135 ], [ -122.974290586000023, 49.242995093000033 ], [ -122.974859622999958, 49.242597892000049 ], [ -122.975201296999956, 49.242359405000045 ], [ -122.975517564999961, 49.241957380000073 ], [ -122.975642997999969, 49.241797911000035 ], [ -122.97610869799999, 49.241801114000083 ], [ -122.976712984999963, 49.241805249 ], [ -122.97725859399999, 49.241809001000021 ], [ -122.977537375999944, 49.241810977000071 ], [ -122.977935749999943, 49.241813775000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100007208", "BldgCostT": "64519715", "sL_LossRatio": "0.688437797215937", "sL_AssetLoss": "1814758", "sL_BldgLoss": "1249348", "sL_StrLoss": "532468", "sL_NStrLoss": "716880", "sL_ContLoss": "565410", "geom_point": "0101000020E61000000D315682A2BE5EC0245D2B889E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.966103007999934, 49.240228863 ], [ -122.96794724199999, 49.238836312000018 ], [ -122.967344895999958, 49.238322757000077 ], [ -122.968551312, 49.238384599000035 ], [ -122.968623669999928, 49.238330495000085 ], [ -122.968877520999968, 49.238215024000056 ], [ -122.968925299999952, 49.238105490000052 ], [ -122.969022796999965, 49.238142592000102 ], [ -122.971220691999946, 49.238098412000078 ], [ -122.971440316, 49.237981604000012 ], [ -122.971700480999985, 49.237973093000036 ], [ -122.973004692999965, 49.238125500000045 ], [ -122.973321805999944, 49.238044302000084 ], [ -122.973925792999978, 49.238162490000086 ], [ -122.974339085999972, 49.238099796000022 ], [ -122.974956083999984, 49.238324892000037 ], [ -122.975202579999973, 49.238324894000108 ], [ -122.97594452, 49.238054305000112 ], [ -122.976824394999952, 49.238018713000024 ], [ -122.976962103999952, 49.237793585000119 ], [ -122.977402086999973, 49.237524397000058 ], [ -122.977355404999955, 49.237285066000013 ], [ -122.977446481999948, 49.237287619000021 ], [ -122.977398374999922, 49.238026366000092 ], [ -122.978469890999989, 49.238056394000118 ], [ -122.978384406999936, 49.239369503 ], [ -122.985771467999925, 49.239370652000105 ], [ -122.985898464999963, 49.237415055000106 ], [ -122.987848763999921, 49.237469548000028 ], [ -122.987848825999919, 49.237212026000073 ], [ -122.987436708999965, 49.237211982000083 ], [ -122.98743698199992, 49.236132552000164 ], [ -122.987024871999921, 49.236132506000104 ], [ -122.987025083999981, 49.235322935000021 ], [ -122.987437187999944, 49.23532298000007 ], [ -122.987437254999975, 49.235053123000043 ], [ -122.987849356999959, 49.235053167000025 ], [ -122.987849422999929, 49.234783308000075 ], [ -122.987150055999962, 49.234783234000105 ], [ -122.987131311999988, 49.235072016000089 ], [ -122.986934365999986, 49.235066514000039 ], [ -122.986921414999969, 49.235266021000029 ], [ -122.983728308999943, 49.235176752000051 ], [ -122.983728082999946, 49.235862233000034 ], [ -122.985376514, 49.235862452000099 ], [ -122.985376113999934, 49.23721173900006 ], [ -122.984551877999976, 49.237211632000054 ], [ -122.98455162499999, 49.238021204000077 ], [ -122.98413949899998, 49.238021148000023 ], [ -122.98413932699999, 49.238560863000082 ], [ -122.98249080699999, 49.238560624000094 ], [ -122.982490711999944, 49.23883048200004 ], [ -122.981254314999902, 49.238830288000045 ], [ -122.98125441599997, 49.238560430000071 ], [ -122.980430156999887, 49.238560294000088 ], [ -122.980430475999938, 49.237750722000072 ], [ -122.981254722999935, 49.23775085900013 ], [ -122.98125492599992, 49.237211144000092 ], [ -122.982903401999963, 49.237211400000056 ], [ -122.982903680999925, 49.23640182700013 ], [ -122.980843121999953, 49.236401505000082 ], [ -122.98084322599999, 49.236131647000057 ], [ -122.980019006999925, 49.23613150700006 ], [ -122.980018897999955, 49.236401365000056 ], [ -122.979606785999977, 49.236401293000085 ], [ -122.979606674999985, 49.236671150000099 ], [ -122.979194559999911, 49.23667107700004 ], [ -122.979194333999928, 49.237210791000074 ], [ -122.978782214999953, 49.237210717000025 ], [ -122.978782099999975, 49.237480573000063 ], [ -122.977545735999939, 49.237480340000069 ], [ -122.977545992999978, 49.236914302000024 ], [ -122.977840452999914, 49.236670825000012 ], [ -122.977958217999955, 49.236670847000084 ], [ -122.977958260000023, 49.236573413000038 ], [ -122.978103412999971, 49.236453390000079 ], [ -122.977965386, 49.23618430800007 ], [ -122.977609612999956, 49.236211306000044 ], [ -122.97754634099999, 49.236146133000013 ], [ -122.977546471999986, 49.235856850000133 ], [ -122.977884405999959, 49.235644511000075 ], [ -122.97770581499995, 49.23537389600007 ], [ -122.97758736699997, 49.235321489000107 ], [ -122.97837092099999, 49.235321639000077 ], [ -122.978371037999949, 49.235051781000024 ], [ -122.980431541999963, 49.235052149000104 ], [ -122.980431435999989, 49.235322006000033 ], [ -122.98084353899999, 49.235322075000077 ], [ -122.980843642999929, 49.23505221700001 ], [ -122.981443109999987, 49.2350523160001 ], [ -122.981497561999944, 49.234214955000063 ], [ -122.979835876999957, 49.234168427000085 ], [ -122.97983526699997, 49.234177796000075 ], [ -122.979195614999924, 49.234159879000025 ], [ -122.97919546699994, 49.234512218000063 ], [ -122.978371273999983, 49.23451206700004 ], [ -122.978371155999952, 49.234781923000064 ], [ -122.976722761999937, 49.234781603000044 ], [ -122.976723087999943, 49.234090584000036 ], [ -122.97435318799991, 49.234024113000068 ], [ -122.974409518999892, 49.233159866000051 ], [ -122.975793255999932, 49.233448861000056 ], [ -122.976319623999956, 49.233558789000057 ], [ -122.978593772999943, 49.233974792 ], [ -122.979201174999957, 49.234077175000046 ], [ -122.988065988999963, 49.234402906000085 ], [ -122.988164817999944, 49.234403812000053 ], [ -122.98896547, 49.23440089000006 ], [ -122.98895871099991, 49.234728766000032 ], [ -122.988954233999948, 49.234944505000115 ], [ -122.988945274999978, 49.235376305000059 ], [ -122.988933301999964, 49.235954904000053 ], [ -122.988973894999944, 49.236282090000017 ], [ -122.98899249499999, 49.237394889000058 ], [ -122.988996921999941, 49.237660314000024 ], [ -122.989002017999908, 49.237964804000093 ], [ -122.989131678999982, 49.238596338000022 ], [ -122.989151138999972, 49.239486597000045 ], [ -122.989004600999948, 49.239829596000071 ], [ -122.989004359999981, 49.239918534000076 ], [ -122.989003587999946, 49.240206400000062 ], [ -122.989001601000012, 49.240934997000075 ], [ -122.98900032099999, 49.241402730000068 ], [ -122.988999070999952, 49.241861800000073 ], [ -122.988308489999923, 49.241861607000075 ], [ -122.987629995999953, 49.241861390000103 ], [ -122.987104301999963, 49.241858386000018 ], [ -122.985372613999957, 49.241837880000062 ], [ -122.983733695999931, 49.241831733 ], [ -122.982725614999964, 49.241827888000095 ], [ -122.981723724999966, 49.241840403000083 ], [ -122.977935749999943, 49.241813775000047 ], [ -122.977537375999944, 49.241810977000071 ], [ -122.97725859399999, 49.241809001000021 ], [ -122.976712984999963, 49.241805249 ], [ -122.97610869799999, 49.241801114000083 ], [ -122.975642997999969, 49.241797911000035 ], [ -122.975517564999961, 49.241957380000073 ], [ -122.975201296999956, 49.242359405000045 ], [ -122.974859622999958, 49.242597892000049 ], [ -122.974290586000023, 49.242995093000033 ], [ -122.974188014000021, 49.243135406000135 ], [ -122.974139276999921, 49.243314201000089 ], [ -122.974139419999972, 49.243431455000064 ], [ -122.974139564999959, 49.2436288990001 ], [ -122.974139792999978, 49.243875487000075 ], [ -122.974057086999977, 49.244364110000099 ], [ -122.97393918399996, 49.244529193000048 ], [ -122.973677095999946, 49.244716520000026 ], [ -122.97352878299999, 49.244779002 ], [ -122.97446720799999, 49.245383591000106 ], [ -122.974495318999942, 49.245478110000057 ], [ -122.974368688999931, 49.245482702000054 ], [ -122.973655620999949, 49.245021033000064 ], [ -122.972517291999949, 49.244283994000085 ], [ -122.972231162999918, 49.244136031000025 ], [ -122.972036407999894, 49.244035344000068 ], [ -122.97202578299999, 49.24402960900008 ], [ -122.97091138799999, 49.243429003000138 ], [ -122.969666343999947, 49.242608906000072 ], [ -122.968692830999913, 49.24196766900004 ], [ -122.968264828999921, 49.241687169000059 ], [ -122.968104683999954, 49.241574573 ], [ -122.96762207799999, 49.241288949000101 ], [ -122.967612290999924, 49.241207597000056 ], [ -122.96631619899992, 49.240342379000012 ], [ -122.966103007999934, 49.240228863 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.729873586161011", "sL_AssetLoss": "30060", "sL_BldgLoss": "21940", "sL_StrLoss": "9320", "sL_NStrLoss": "12620", "sL_ContLoss": "8120", "geom_point": "0101000020E6100000B641F5283FBE5EC057B5206BF89D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.972161834999937, 49.233773928000105 ], [ -122.973524186999924, 49.233362224000096 ], [ -122.97342689499996, 49.23485442800007 ], [ -122.973185916999952, 49.234815603000115 ], [ -122.97240380599996, 49.234581995000049 ], [ -122.971564700999963, 49.234455306000072 ], [ -122.97133291899999, 49.234338503000089 ], [ -122.970974554999913, 49.234311372000022 ], [ -122.9710041299999, 49.234294503000051 ], [ -122.971640675999978, 49.233931420000012 ], [ -122.972161834999937, 49.233773928000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230684500", "BldgCostT": "153460000", "sL_LossRatio": "0.744188266982924", "sL_AssetLoss": "1989940", "sL_BldgLoss": "1480890", "sL_StrLoss": "704310", "sL_NStrLoss": "776580", "sL_ContLoss": "509050", "geom_point": "0101000020E6100000FD90A63065BB5EC08D183DB7509C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926436611999975, 49.21964140299999 ], [ -122.927649324999948, 49.218988605000042 ], [ -122.928574618999932, 49.2197319960001 ], [ -122.929546095999982, 49.2205057030001 ], [ -122.930491579999938, 49.221256900000064 ], [ -122.931293710999938, 49.221894179000046 ], [ -122.928423093999953, 49.223412403000026 ], [ -122.92808702799995, 49.223154099000055 ], [ -122.927708610999957, 49.222863190000133 ], [ -122.927623207999886, 49.222847283000114 ], [ -122.927522844999984, 49.222720527000021 ], [ -122.927138842999952, 49.222415927000014 ], [ -122.927019476999973, 49.222321259000111 ], [ -122.926844504999977, 49.222182469000089 ], [ -122.926673985999955, 49.222047197000109 ], [ -122.926175196999949, 49.221651083000019 ], [ -122.925699803999947, 49.221273501000056 ], [ -122.925219909999939, 49.220893204000049 ], [ -122.925111519999945, 49.220354009000111 ], [ -122.926436611999975, 49.21964140299999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153698636", "BldgCostT": "96197079", "sL_LossRatio": "0.685804131837745", "sL_AssetLoss": "2372310", "sL_BldgLoss": "1626940", "sL_StrLoss": "694390", "sL_NStrLoss": "932550", "sL_ContLoss": "745370", "geom_point": "0101000020E61000004A8A35E09CBB5EC0D6C3F242159C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.930946138999971, 49.217214849000079 ], [ -122.931509010999932, 49.216912026000067 ], [ -122.932473901999984, 49.217639505000101 ], [ -122.933417675999962, 49.218354597000044 ], [ -122.934451800999952, 49.219136311000064 ], [ -122.935321890999916, 49.219761901000076 ], [ -122.934679628999945, 49.220101696000043 ], [ -122.933303575999972, 49.22082969300002 ], [ -122.931293710999938, 49.221894179000046 ], [ -122.930491579999938, 49.221256900000064 ], [ -122.929546095999982, 49.2205057030001 ], [ -122.928574618999932, 49.2197319960001 ], [ -122.927649324999948, 49.218988605000042 ], [ -122.930946138999971, 49.217214849000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156017986", "BldgCostT": "99010641", "sL_LossRatio": "0.691362477519319", "sL_AssetLoss": "2023960", "sL_BldgLoss": "1399290", "sL_StrLoss": "647750", "sL_NStrLoss": "751540", "sL_ContLoss": "624670", "geom_point": "0101000020E61000001DC80E85EABB5EC02C72C263C39B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93604691299997, 49.214453687000074 ], [ -122.937886499999934, 49.213447406000078 ], [ -122.938863825999974, 49.214132903000056 ], [ -122.939881505999935, 49.214830181000096 ], [ -122.938407105999943, 49.215646902000124 ], [ -122.938309780999973, 49.215727898000054 ], [ -122.93766988, 49.216066510000054 ], [ -122.93886600699993, 49.216972598 ], [ -122.940090009999906, 49.217914500000134 ], [ -122.940095193999952, 49.21800290400008 ], [ -122.939495801999939, 49.21832497200009 ], [ -122.93933815799997, 49.218409645000079 ], [ -122.938906983999971, 49.218641289000082 ], [ -122.938176620999968, 49.218973708000128 ], [ -122.937841400999901, 49.219126280000097 ], [ -122.93772103699996, 49.219178782000036 ], [ -122.936962390999895, 49.219509502000051 ], [ -122.93676739599999, 49.219594008000072 ], [ -122.935711514999966, 49.22005680400013 ], [ -122.935321890999916, 49.219761901000076 ], [ -122.934451800999952, 49.219136311000064 ], [ -122.933417675999962, 49.218354597000044 ], [ -122.932473901999984, 49.217639505000101 ], [ -122.931509010999932, 49.216912026000067 ], [ -122.93151964499999, 49.21690628700005 ], [ -122.932056900999953, 49.216617701000118 ], [ -122.933702046999912, 49.21573208500012 ], [ -122.934212884999951, 49.215457421000053 ], [ -122.93604691299997, 49.214453687000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100173969", "BldgCostT": "64860412", "sL_LossRatio": "0.689230617999963", "sL_AssetLoss": "1627670", "sL_BldgLoss": "1121840", "sL_StrLoss": "479470", "sL_NStrLoss": "642370", "sL_ContLoss": "505830", "geom_point": "0101000020E6100000E2EF07D194BB5EC09F5812667B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92766771099997, 49.214000801000047 ], [ -122.93048480899995, 49.212472882000085 ], [ -122.930933730999968, 49.212826518000078 ], [ -122.93141749599999, 49.213207596000103 ], [ -122.93186562599999, 49.213558920000047 ], [ -122.932330900999915, 49.213923697000062 ], [ -122.932801345999962, 49.214294069000061 ], [ -122.933267709999939, 49.214661207000098 ], [ -122.933699887999978, 49.215026240000086 ], [ -122.93416724199993, 49.215420986000048 ], [ -122.934212884999951, 49.215457421000053 ], [ -122.933702046999912, 49.21573208500012 ], [ -122.932056900999953, 49.216617701000118 ], [ -122.93151964499999, 49.21690628700005 ], [ -122.931509010999932, 49.216912026000067 ], [ -122.931460146999896, 49.216875839000053 ], [ -122.931430506000012, 49.216853924000091 ], [ -122.930940108999962, 49.216504774000029 ], [ -122.93046830599999, 49.21616889600012 ], [ -122.92997388, 49.215788396000072 ], [ -122.929520097999941, 49.215439199000087 ], [ -122.929046829999947, 49.215066622000045 ], [ -122.928608202999925, 49.214721296000064 ], [ -122.928129192999918, 49.214354329000031 ], [ -122.92766771099997, 49.214000801000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139132303", "BldgCostT": "92193746", "sL_LossRatio": "0.748512512082483", "sL_AssetLoss": "1396650", "sL_BldgLoss": "1045410", "sL_StrLoss": "463450", "sL_NStrLoss": "581960", "sL_ContLoss": "351240", "geom_point": "0101000020E6100000C312D6C6D8BB5EC02CF4456B5A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93412820399999, 49.212955901000058 ], [ -122.935989615, 49.211952101000115 ], [ -122.936449440999979, 49.212318060000101 ], [ -122.93692060599993, 49.212693001000055 ], [ -122.937414463999971, 49.213080454000099 ], [ -122.937837990999981, 49.213412700000056 ], [ -122.93784769799997, 49.213419628000111 ], [ -122.937886499999934, 49.213447406000078 ], [ -122.93604691299997, 49.214453687000074 ], [ -122.934212884999951, 49.215457421000053 ], [ -122.93416724199993, 49.215420986000048 ], [ -122.933699887999978, 49.215026240000086 ], [ -122.933267709999939, 49.214661207000098 ], [ -122.932801345999962, 49.214294069000061 ], [ -122.932330900999915, 49.213923697000062 ], [ -122.93412820399999, 49.212955901000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157202394", "BldgCostT": "103616523", "sL_LossRatio": "0.71616966186119", "sL_AssetLoss": "1822920", "sL_BldgLoss": "1305520", "sL_StrLoss": "565490", "sL_NStrLoss": "740030", "sL_ContLoss": "517400", "geom_point": "0101000020E6100000ACFD2126B6BB5EC02FA20EA7239B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.930008709, 49.2120963 ], [ -122.933638491999929, 49.210125689000058 ], [ -122.934131816000018, 49.210511805000088 ], [ -122.934566712999924, 49.210851295000118 ], [ -122.935064899999944, 49.211240203000123 ], [ -122.935484440999957, 49.211563206000022 ], [ -122.935989615, 49.211952101000115 ], [ -122.93412820399999, 49.212955901000058 ], [ -122.932330900999915, 49.213923697000062 ], [ -122.93186562599999, 49.213558920000047 ], [ -122.93141749599999, 49.213207596000103 ], [ -122.930933730999968, 49.212826518000078 ], [ -122.93048480899995, 49.212472882000085 ], [ -122.930008709, 49.2120963 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263825917", "BldgCostT": "179031667", "sL_LossRatio": "0.771305579175177", "sL_AssetLoss": "2368558", "sL_BldgLoss": "1826882", "sL_StrLoss": "763212", "sL_NStrLoss": "1063670", "sL_ContLoss": "541676", "geom_point": "0101000020E6100000413257E506BC5EC0F6DF73F51D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.935484440999957, 49.211563206000022 ], [ -122.935064899999944, 49.211240203000123 ], [ -122.935628817999941, 49.210936378000063 ], [ -122.936623124000022, 49.210400707000076 ], [ -122.937058244999946, 49.210744220000045 ], [ -122.937525259999987, 49.211112850000106 ], [ -122.937741395999979, 49.211089192000024 ], [ -122.938216913999952, 49.210829808000014 ], [ -122.93907688899999, 49.211523612000065 ], [ -122.940005987999882, 49.211024693000063 ], [ -122.940397003999976, 49.211338488000116 ], [ -122.940927682999984, 49.211761702000096 ], [ -122.940970586999939, 49.211798096000138 ], [ -122.940245764999958, 49.212185887000025 ], [ -122.94023511499995, 49.212191604000047 ], [ -122.939444287999919, 49.212613315000119 ], [ -122.937886499999934, 49.213447406000078 ], [ -122.93784769799997, 49.213419628000111 ], [ -122.937837990999981, 49.213412700000056 ], [ -122.937414463999971, 49.213080454000099 ], [ -122.93692060599993, 49.212693001000055 ], [ -122.936449440999979, 49.212318060000101 ], [ -122.935989615, 49.211952101000115 ], [ -122.935484440999957, 49.211563206000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86970782", "BldgCostT": "56200545", "sL_LossRatio": "0.708164214276144", "sL_AssetLoss": "1268830", "sL_BldgLoss": "898540", "sL_StrLoss": "409850", "sL_NStrLoss": "488690", "sL_ContLoss": "370290", "geom_point": "0101000020E61000004F2A96321BBC5EC081A226B8E09A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940397003999976, 49.211338488000116 ], [ -122.940005987999882, 49.211024693000063 ], [ -122.93907688899999, 49.211523612000065 ], [ -122.938216913999952, 49.210829808000014 ], [ -122.937741395999979, 49.211089192000024 ], [ -122.937525259999987, 49.211112850000106 ], [ -122.937058244999946, 49.210744220000045 ], [ -122.936623124000022, 49.210400707000076 ], [ -122.93612727, 49.209996609 ], [ -122.935711403999932, 49.209657692000057 ], [ -122.937255273999952, 49.20882589700004 ], [ -122.938948405999938, 49.207914481000117 ], [ -122.939407828999961, 49.208280003000091 ], [ -122.939870298999907, 49.208647899 ], [ -122.940320071999977, 49.209005282000078 ], [ -122.940815721999954, 49.209399100000041 ], [ -122.941242580999969, 49.209738404000063 ], [ -122.941708997999939, 49.210109093000014 ], [ -122.942169861999943, 49.210471993000041 ], [ -122.942641883999926, 49.210843704000126 ], [ -122.942684678999967, 49.21088089200002 ], [ -122.942485166999944, 49.210988808000117 ], [ -122.942474106999938, 49.210994786000072 ], [ -122.940970586999939, 49.211798096000138 ], [ -122.940927682999984, 49.211761702000096 ], [ -122.940397003999976, 49.211338488000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65103478", "BldgCostT": "42599857", "sL_LossRatio": "0.725483573442108", "sL_AssetLoss": "769790", "sL_BldgLoss": "558470", "sL_StrLoss": "250420", "sL_NStrLoss": "308050", "sL_ContLoss": "211320", "geom_point": "0101000020E61000006FD4F13557BC5EC0F9FEBC5F3B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940970586999939, 49.211798096000138 ], [ -122.942474106999938, 49.210994786000072 ], [ -122.942912926999938, 49.211334442000066 ], [ -122.94336340699999, 49.211683084000143 ], [ -122.944380603999932, 49.212428993000046 ], [ -122.944905548999941, 49.21282785100005 ], [ -122.94544851199997, 49.213240409000022 ], [ -122.94419458699997, 49.213915641000071 ], [ -122.943072394999902, 49.214519900000042 ], [ -122.942556772, 49.21409198500006 ], [ -122.942024805999964, 49.213650485000045 ], [ -122.941120568999949, 49.212917601000107 ], [ -122.94023511499995, 49.212191604000047 ], [ -122.940245764999958, 49.212185887000025 ], [ -122.940970586999939, 49.211798096000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98703750", "BldgCostT": "60060000", "sL_LossRatio": "0.67108619241656", "sL_AssetLoss": "1285960", "sL_BldgLoss": "862990", "sL_StrLoss": "380740", "sL_NStrLoss": "482250", "sL_ContLoss": "422970", "geom_point": "0101000020E61000004C8C76263EBC5EC03EB7F1A3719B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940281984999956, 49.215104708000091 ], [ -122.939881505999935, 49.214830181000096 ], [ -122.938863825999974, 49.214132903000056 ], [ -122.937886499999934, 49.213447406000078 ], [ -122.939444287999919, 49.212613315000119 ], [ -122.94023511499995, 49.212191604000047 ], [ -122.941120568999949, 49.212917601000107 ], [ -122.942024805999964, 49.213650485000045 ], [ -122.942556772, 49.21409198500006 ], [ -122.943072394999902, 49.214519900000042 ], [ -122.943595216999967, 49.214937390000031 ], [ -122.944031727999928, 49.214707401000062 ], [ -122.944753215, 49.215256685000092 ], [ -122.944845210999944, 49.215380900000049 ], [ -122.94294712099996, 49.216422603000105 ], [ -122.942840900999911, 49.216533988000023 ], [ -122.941683824999984, 49.215910199000071 ], [ -122.941253293, 49.215673709000107 ], [ -122.941104873999961, 49.215592900000097 ], [ -122.940281984999956, 49.215104708000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54368053", "BldgCostT": "33108746", "sL_LossRatio": "0.669958799976789", "sL_AssetLoss": "861650", "sL_BldgLoss": "577270", "sL_StrLoss": "245900", "sL_NStrLoss": "331370", "sL_ContLoss": "284380", "geom_point": "0101000020E6100000366BF7E52BBC5EC0D4AF3A93B29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.938407105999943, 49.215646902000124 ], [ -122.939881505999935, 49.214830181000096 ], [ -122.940281984999956, 49.215104708000091 ], [ -122.941104873999961, 49.215592900000097 ], [ -122.941253293, 49.215673709000107 ], [ -122.941683824999984, 49.215910199000071 ], [ -122.942840900999911, 49.216533988000023 ], [ -122.942706509999979, 49.216637392000081 ], [ -122.940095193999952, 49.21800290400008 ], [ -122.940090009999906, 49.217914500000134 ], [ -122.93886600699993, 49.216972598 ], [ -122.93766988, 49.216066510000054 ], [ -122.938309780999973, 49.215727898000054 ], [ -122.938407105999943, 49.215646902000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127079000", "BldgCostT": "84230000", "sL_LossRatio": "0.728452281187825", "sL_AssetLoss": "1754130", "sL_BldgLoss": "1277800", "sL_StrLoss": "551800", "sL_NStrLoss": "726000", "sL_ContLoss": "476330", "geom_point": "0101000020E610000085B19EBD67BC5EC060F72534AC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.943204006999949, 49.206847903000067 ], [ -122.944985192999923, 49.20588759200006 ], [ -122.945421714999966, 49.206234571000053 ], [ -122.945902001, 49.2066163040001 ], [ -122.946364591999966, 49.206983556000054 ], [ -122.946828005, 49.207351484000064 ], [ -122.947291124999978, 49.207706820000119 ], [ -122.947762009999963, 49.2080681 ], [ -122.947807813999987, 49.208102696000012 ], [ -122.946294994999903, 49.208924707000058 ], [ -122.946007712000011, 49.2090778560001 ], [ -122.944564433999929, 49.209844150000087 ], [ -122.944553264999925, 49.209850049000096 ], [ -122.944386716999972, 49.209938221000122 ], [ -122.942684678999967, 49.21088089200002 ], [ -122.942641883999926, 49.210843704000126 ], [ -122.942169861999943, 49.210471993000041 ], [ -122.941708997999939, 49.210109093000014 ], [ -122.941242580999969, 49.209738404000063 ], [ -122.940815721999954, 49.209399100000041 ], [ -122.940320071999977, 49.209005282000078 ], [ -122.939870298999907, 49.208647899 ], [ -122.941581884999948, 49.207725302000057 ], [ -122.943204006999949, 49.206847903000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189458386", "BldgCostT": "127432079", "sL_LossRatio": "0.753226603050945", "sL_AssetLoss": "2146220", "sL_BldgLoss": "1616590", "sL_StrLoss": "725910", "sL_NStrLoss": "890680", "sL_ContLoss": "529630", "geom_point": "0101000020E6100000BD0A083100BC5EC060F91CED729A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.936279814000031, 49.208053092000092 ], [ -122.93580127199999, 49.207671892000079 ], [ -122.935309406999949, 49.207285812000102 ], [ -122.934467003999927, 49.206617684000079 ], [ -122.933652090999914, 49.205970209000064 ], [ -122.934742204999935, 49.2053805030001 ], [ -122.937066441999946, 49.204135742000112 ], [ -122.937883012999976, 49.204778798000042 ], [ -122.938723883999927, 49.205448596000103 ], [ -122.939691286999931, 49.206219396000037 ], [ -122.940184128999945, 49.206613361000024 ], [ -122.94065989399995, 49.20699371000007 ], [ -122.941115462999932, 49.207355178000057 ], [ -122.941581884999948, 49.207725302000057 ], [ -122.939870298999907, 49.208647899 ], [ -122.939407828999961, 49.208280003000091 ], [ -122.938948405999938, 49.207914481000117 ], [ -122.937255273999952, 49.20882589700004 ], [ -122.936776715999912, 49.208446507000048 ], [ -122.936279814000031, 49.208053092000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128667750", "BldgCostT": "84795000", "sL_LossRatio": "0.716460552015706", "sL_AssetLoss": "1991610", "sL_BldgLoss": "1426910", "sL_StrLoss": "656480", "sL_NStrLoss": "770430", "sL_ContLoss": "564700", "geom_point": "0101000020E610000005399CB739BC5EC056D8A1D43D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.939641341999973, 49.202733559000087 ], [ -122.94045794099999, 49.202288814000056 ], [ -122.941268616999963, 49.202959606000057 ], [ -122.942115611999924, 49.203621507000094 ], [ -122.943091486999933, 49.204387897000082 ], [ -122.943637626999958, 49.204820412000075 ], [ -122.944056592999985, 49.205152188000092 ], [ -122.944515023999926, 49.2055152370001 ], [ -122.944985192999923, 49.20588759200006 ], [ -122.943204006999949, 49.206847903000067 ], [ -122.941581884999948, 49.207725302000057 ], [ -122.941115462999932, 49.207355178000057 ], [ -122.94065989399995, 49.20699371000007 ], [ -122.940184128999945, 49.206613361000024 ], [ -122.939691286999931, 49.206219396000037 ], [ -122.938723883999927, 49.205448596000103 ], [ -122.937883012999976, 49.204778798000042 ], [ -122.937066441999946, 49.204135742000112 ], [ -122.939641341999973, 49.202733559000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138244749", "BldgCostT": "87819999", "sL_LossRatio": "0.720869074827105", "sL_AssetLoss": "1684550", "sL_BldgLoss": "1214340", "sL_StrLoss": "544690", "sL_NStrLoss": "669650", "sL_ContLoss": "470210", "geom_point": "0101000020E6100000118E307773BC5EC0C190E6D9F6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94464781799995, 49.20019055700007 ], [ -122.94523736099994, 49.200072131000077 ], [ -122.945484190999935, 49.200553910000103 ], [ -122.945623700999931, 49.20071256900011 ], [ -122.945671862999973, 49.200767334000048 ], [ -122.945872052999917, 49.200852298000086 ], [ -122.94599158799997, 49.200956974000121 ], [ -122.94602516, 49.200986363000034 ], [ -122.946427974999963, 49.201308429000044 ], [ -122.946722568999959, 49.201543979000093 ], [ -122.94683825, 49.201635408000051 ], [ -122.947554704999931, 49.202201795000121 ], [ -122.9483598139999, 49.202833594000069 ], [ -122.947350679999914, 49.203364490000098 ], [ -122.946098793999951, 49.204039913000059 ], [ -122.94657300799993, 49.204412538000099 ], [ -122.94703829099997, 49.204778198000035 ], [ -122.944985192999923, 49.20588759200006 ], [ -122.944515023999926, 49.2055152370001 ], [ -122.944056592999985, 49.205152188000092 ], [ -122.943637626999958, 49.204820412000075 ], [ -122.943091486999933, 49.204387897000082 ], [ -122.942115611999924, 49.203621507000094 ], [ -122.941268616999963, 49.202959606000057 ], [ -122.94045794099999, 49.202288814000056 ], [ -122.940677878999935, 49.202172499000056 ], [ -122.940823310999988, 49.202095583000059 ], [ -122.941427362999946, 49.201840649000076 ], [ -122.941578368999927, 49.201766390000046 ], [ -122.942444062, 49.201340681000062 ], [ -122.942532161999949, 49.201287805000085 ], [ -122.943969677, 49.200425386000106 ], [ -122.944340192999945, 49.200278238000074 ], [ -122.94464781799995, 49.20019055700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121958250", "BldgCostT": "81690000", "sL_LossRatio": "0.741952743893762", "sL_AssetLoss": "1756810", "sL_BldgLoss": "1303470", "sL_StrLoss": "584410", "sL_NStrLoss": "719060", "sL_ContLoss": "453340", "geom_point": "0101000020E6100000BBFC66E6B2BC5EC02B789F1D4F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947350679999914, 49.203364490000098 ], [ -122.9483598139999, 49.202833594000069 ], [ -122.948845510999973, 49.203219970000127 ], [ -122.949174789999958, 49.203481906000057 ], [ -122.949283094999885, 49.203567901000035 ], [ -122.949748938999974, 49.203934929000127 ], [ -122.949961484999946, 49.204102393000049 ], [ -122.950209202999972, 49.204299507000059 ], [ -122.950648605999973, 49.204647621000042 ], [ -122.950762287999908, 49.20473771200011 ], [ -122.951120995999943, 49.205042395000142 ], [ -122.951547377999987, 49.205382439000054 ], [ -122.951867479999962, 49.205627542000094 ], [ -122.951929353999944, 49.205730181000078 ], [ -122.952033929999942, 49.205809701000099 ], [ -122.952096295999951, 49.205862838000051 ], [ -122.949838377999953, 49.20700074600007 ], [ -122.948196256999935, 49.207892113000064 ], [ -122.947807813999987, 49.208102696000012 ], [ -122.947762009999963, 49.2080681 ], [ -122.947291124999978, 49.207706820000119 ], [ -122.946828005, 49.207351484000064 ], [ -122.946364591999966, 49.206983556000054 ], [ -122.945902001, 49.2066163040001 ], [ -122.945421714999966, 49.206234571000053 ], [ -122.944985192999923, 49.20588759200006 ], [ -122.94703829099997, 49.204778198000035 ], [ -122.94657300799993, 49.204412538000099 ], [ -122.946098793999951, 49.204039913000059 ], [ -122.947350679999914, 49.203364490000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92189333", "BldgCostT": "59423333", "sL_LossRatio": "0.679919508967951", "sL_AssetLoss": "2176640", "sL_BldgLoss": "1479940", "sL_StrLoss": "632240", "sL_NStrLoss": "847700", "sL_ContLoss": "696700", "geom_point": "0101000020E61000005101BD91F5BC5EC0C6970EA50F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950968098999979, 49.202501189000039 ], [ -122.952916788999957, 49.201449995000068 ], [ -122.953719789999923, 49.202073594000055 ], [ -122.954524611999958, 49.202710687000042 ], [ -122.955244498999932, 49.203241008000113 ], [ -122.955352615999914, 49.203329598000082 ], [ -122.955814718999974, 49.203711199000118 ], [ -122.953829453999973, 49.204794704000065 ], [ -122.953743856999921, 49.204844535000106 ], [ -122.952545151999956, 49.205446789000085 ], [ -122.952362695999952, 49.205558699000136 ], [ -122.952179601999944, 49.205670976000143 ], [ -122.952188110999941, 49.205724446000033 ], [ -122.952190612999956, 49.205740289000076 ], [ -122.952202388, 49.20581449000008 ], [ -122.952096295999951, 49.205862838000051 ], [ -122.952033929999942, 49.205809701000099 ], [ -122.951929353999944, 49.205730181000078 ], [ -122.951867479999962, 49.205627542000094 ], [ -122.951547377999987, 49.205382439000054 ], [ -122.951120995999943, 49.205042395000142 ], [ -122.950762287999908, 49.20473771200011 ], [ -122.950648605999973, 49.204647621000042 ], [ -122.950209202999972, 49.204299507000059 ], [ -122.949961484999946, 49.204102393000049 ], [ -122.949748938999974, 49.203934929000127 ], [ -122.949283094999885, 49.203567901000035 ], [ -122.949174789999958, 49.203481906000057 ], [ -122.949723481999911, 49.203170398000083 ], [ -122.949861395999946, 49.203097801000091 ], [ -122.950968098999979, 49.202501189000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162037250", "BldgCostT": "99080000", "sL_LossRatio": "0.674087954398575", "sL_AssetLoss": "2924470", "sL_BldgLoss": "1971350", "sL_StrLoss": "814610", "sL_NStrLoss": "1156740", "sL_ContLoss": "953120", "geom_point": "0101000020E61000008EBC0FB4C0BC5EC03151291B7B994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.945535871999965, 49.199934656000067 ], [ -122.94668386699999, 49.199669890000102 ], [ -122.944660324, 49.200065974000033 ], [ -122.944528773999963, 49.200091738000012 ], [ -122.944501834999969, 49.19998398300006 ], [ -122.944429425999928, 49.199694303000093 ], [ -122.944188535999956, 49.199511444000109 ], [ -122.943949799999956, 49.199330196000126 ], [ -122.943764933999915, 49.199188239000115 ], [ -122.94368183899995, 49.199124418000046 ], [ -122.943606300999974, 49.199066409000046 ], [ -122.943664093999971, 49.198869420000072 ], [ -122.943685271999939, 49.198615631000067 ], [ -122.944200976, 49.198428494000083 ], [ -122.945699282999954, 49.197717791000159 ], [ -122.94597200699998, 49.197736307000042 ], [ -122.947534191999935, 49.19685113400007 ], [ -122.947599020999945, 49.196814398000079 ], [ -122.947937500999927, 49.196622592000068 ], [ -122.948686336999984, 49.196295348000028 ], [ -122.948803456999912, 49.196244143000058 ], [ -122.948942468999988, 49.196183390000066 ], [ -122.948962112999951, 49.196174798000072 ], [ -122.948980289999923, 49.196166862000041 ], [ -122.94920409199996, 49.196069053000038 ], [ -122.949424541999974, 49.195972700000077 ], [ -122.949954701999928, 49.195740999000066 ], [ -122.950322426999989, 49.19561018400006 ], [ -122.950476076999962, 49.195555537000047 ], [ -122.950567616999962, 49.195522970000134 ], [ -122.95135842699996, 49.195241631000044 ], [ -122.951777150999973, 49.195092687000091 ], [ -122.951922786999916, 49.195040872000057 ], [ -122.951980688999953, 49.195076529000069 ], [ -122.952086159999951, 49.195180621000084 ], [ -122.952120851999965, 49.195214889000113 ], [ -122.952233577999948, 49.195293914000061 ], [ -122.952385711, 49.195400643000042 ], [ -122.95241262899998, 49.195420236000132 ], [ -122.952506617999987, 49.195488815000054 ], [ -122.952636911999932, 49.195583850000048 ], [ -122.952673983999972, 49.195617986000094 ], [ -122.952805126, 49.195738759000101 ], [ -122.952818711999953, 49.195751233000074 ], [ -122.952989453999976, 49.195865775000108 ], [ -122.953026697, 49.195890592000111 ], [ -122.953063905999912, 49.195915422000027 ], [ -122.953129375999978, 49.195955970000057 ], [ -122.953173184999983, 49.19598406000005 ], [ -122.953216399999945, 49.196011746000103 ], [ -122.953421091999942, 49.196142994000091 ], [ -122.953484501999966, 49.196210350000094 ], [ -122.953509948999937, 49.196237386000043 ], [ -122.953531551999944, 49.19626028600004 ], [ -122.953624595999912, 49.196359073000124 ], [ -122.953692064999984, 49.196430721000041 ], [ -122.953808633999969, 49.196554446000043 ], [ -122.953912216, 49.196664410000054 ], [ -122.953963713999926, 49.196719115000136 ], [ -122.953968563999979, 49.196724269000086 ], [ -122.954124723999925, 49.196851115000129 ], [ -122.954183841999935, 49.196890730000028 ], [ -122.95427226699999, 49.196949981000088 ], [ -122.954418424999943, 49.197047903000076 ], [ -122.954739037999943, 49.197262685000048 ], [ -122.953172027999955, 49.1981237890001 ], [ -122.952413274999984, 49.198501437000097 ], [ -122.95045723599992, 49.199560544000086 ], [ -122.950643747999962, 49.199708155000046 ], [ -122.950787541999944, 49.19978789200011 ], [ -122.95088768, 49.199858294000144 ], [ -122.951092335999988, 49.200012598000079 ], [ -122.951306104, 49.200173802000094 ], [ -122.952108291999977, 49.200808192000132 ], [ -122.952916788999957, 49.201449995000068 ], [ -122.950968098999979, 49.202501189000039 ], [ -122.949861395999946, 49.203097801000091 ], [ -122.949723481999911, 49.203170398000083 ], [ -122.949174789999958, 49.203481906000057 ], [ -122.948845510999973, 49.203219970000127 ], [ -122.9483598139999, 49.202833594000069 ], [ -122.947554704999931, 49.202201795000121 ], [ -122.94683825, 49.201635408000051 ], [ -122.946722568999959, 49.201543979000093 ], [ -122.946427974999963, 49.201308429000044 ], [ -122.94602516, 49.200986363000034 ], [ -122.94599158799997, 49.200956974000121 ], [ -122.945872052999917, 49.200852298000086 ], [ -122.945671862999973, 49.200767334000048 ], [ -122.945623700999931, 49.20071256900011 ], [ -122.945484190999935, 49.200553910000103 ], [ -122.94523736099994, 49.200072131000077 ], [ -122.945432136999912, 49.200030804000036 ], [ -122.945535871999965, 49.199934656000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134326333", "BldgCostT": "82678333", "sL_LossRatio": "0.671225590447289", "sL_AssetLoss": "2425280", "sL_BldgLoss": "1627910", "sL_StrLoss": "688100", "sL_NStrLoss": "939810", "sL_ContLoss": "797370", "geom_point": "0101000020E610000021A2B15922BD5EC04AF3226EA9994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953172027999955, 49.1981237890001 ], [ -122.954739037999943, 49.197262685000048 ], [ -122.955599196999955, 49.197996021000037 ], [ -122.955638989999969, 49.198058417000112 ], [ -122.955618898999944, 49.198156041000118 ], [ -122.956354801999964, 49.198609630000114 ], [ -122.957507887999981, 49.199493067000091 ], [ -122.958791300999948, 49.200476281000093 ], [ -122.959082197000015, 49.200699767000067 ], [ -122.959385575999974, 49.200932879000021 ], [ -122.959951340999936, 49.201367585000064 ], [ -122.958510803999928, 49.202243836000036 ], [ -122.958444752999981, 49.202258936000064 ], [ -122.957430798999923, 49.20245770800009 ], [ -122.957496307, 49.202799209000112 ], [ -122.957169276999963, 49.202976574000033 ], [ -122.955814718999974, 49.203711199000118 ], [ -122.955352615999914, 49.203329598000082 ], [ -122.955244498999932, 49.203241008000113 ], [ -122.954524611999958, 49.202710687000042 ], [ -122.953719789999923, 49.202073594000055 ], [ -122.952916788999957, 49.201449995000068 ], [ -122.952108291999977, 49.200808192000132 ], [ -122.951306104, 49.200173802000094 ], [ -122.951092335999988, 49.200012598000079 ], [ -122.95088768, 49.199858294000144 ], [ -122.950787541999944, 49.19978789200011 ], [ -122.950643747999962, 49.199708155000046 ], [ -122.95045723599992, 49.199560544000086 ], [ -122.952413274999984, 49.198501437000097 ], [ -122.953172027999955, 49.1981237890001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248382333", "BldgCostT": "161508333", "sL_LossRatio": "0.793155809946066", "sL_AssetLoss": "1519274", "sL_BldgLoss": "1205021", "sL_StrLoss": "660751", "sL_NStrLoss": "544270", "sL_ContLoss": "314253", "geom_point": "0101000020E6100000BFC770A7FAC15EC0CFB74767479A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023537305, 49.208177686000042 ], [ -123.023412605999951, 49.207595901000026 ], [ -123.023348227999961, 49.206953913000049 ], [ -123.023341506999941, 49.206886797000053 ], [ -123.023386379999963, 49.205500709000063 ], [ -123.02338608299999, 49.205482748000072 ], [ -123.023383501999916, 49.20533126200008 ], [ -123.023382571999903, 49.204532152000134 ], [ -123.023434794999915, 49.204423700000099 ], [ -123.02342562799997, 49.204288327000057 ], [ -123.023401770999911, 49.203932710000075 ], [ -123.023376713999966, 49.203445553000044 ], [ -123.02320416799995, 49.202991248000082 ], [ -123.022936526999956, 49.202607289000056 ], [ -123.023253323999967, 49.202437694000018 ], [ -123.023385680999965, 49.202234987000104 ], [ -123.023427593999926, 49.201474005000094 ], [ -123.023417357999989, 49.201358906000046 ], [ -123.023385069999918, 49.201171303000095 ], [ -123.026302291999926, 49.201839493000122 ], [ -123.027658950999978, 49.202073456000107 ], [ -123.027804640999932, 49.202098576000061 ], [ -123.027804657999951, 49.202127757000071 ], [ -123.027973642999925, 49.202127716000042 ], [ -123.030459417999936, 49.20255628200011 ], [ -123.030708698999973, 49.202599270000043 ], [ -123.030882079999969, 49.20262915400005 ], [ -123.031092914999959, 49.202665500000144 ], [ -123.03162809399997, 49.202728214000054 ], [ -123.032260698999949, 49.202674005000112 ], [ -123.033153397999911, 49.202782313000057 ], [ -123.033426079, 49.202709592000083 ], [ -123.034359901999949, 49.202799408000054 ], [ -123.034691185999961, 49.202997305000068 ], [ -123.03468981, 49.20300495500009 ], [ -123.034648890999961, 49.203230898000065 ], [ -123.034745685999965, 49.203366193000051 ], [ -123.035791403999966, 49.203621774000091 ], [ -123.036325081999976, 49.203752192000096 ], [ -123.036942797999941, 49.204039906000077 ], [ -123.039029713999952, 49.204525489000062 ], [ -123.039455987999986, 49.204713490000124 ], [ -123.039935511999914, 49.205109390000075 ], [ -123.040746295999952, 49.205261793 ], [ -123.041679899999963, 49.205332990000031 ], [ -123.042379812999982, 49.205503890000095 ], [ -123.042435810999962, 49.205496278000062 ], [ -123.042306087999989, 49.205790105000055 ], [ -123.042301066999954, 49.205900821000064 ], [ -123.042293394999945, 49.206069671000144 ], [ -123.042272004999987, 49.206541407000074 ], [ -123.042263257999949, 49.206691953000117 ], [ -123.042257689999957, 49.206787794000086 ], [ -123.040546091999886, 49.206666109 ], [ -123.038396120999934, 49.206365568000116 ], [ -123.036703990999925, 49.206128995000114 ], [ -123.036636608999956, 49.20690638300011 ], [ -123.036625175999987, 49.206977229000032 ], [ -123.037216913999956, 49.207086635000088 ], [ -123.037776143999935, 49.207287864000101 ], [ -123.038900908999935, 49.207827987000073 ], [ -123.038524888999916, 49.20802128700003 ], [ -123.038148585999963, 49.208177587000094 ], [ -123.037798291999977, 49.208269806 ], [ -123.037158603999913, 49.208317088000136 ], [ -123.035405323999953, 49.208382461000021 ], [ -123.034655197999982, 49.208410391000029 ], [ -123.033960418, 49.208438993000129 ], [ -123.033531787999976, 49.208424494000063 ], [ -123.032973402999971, 49.208354079000081 ], [ -123.032608902999968, 49.208308102000075 ], [ -123.031283574999946, 49.208141822000073 ], [ -123.031172571999917, 49.208127899000068 ], [ -123.030897703, 49.208093404000131 ], [ -123.0300345899999, 49.208007509 ], [ -123.02989055399999, 49.20799332400005 ], [ -123.029309187999957, 49.207936109000052 ], [ -123.029017939999946, 49.207907216000052 ], [ -123.028756901999884, 49.207881288000046 ], [ -123.028703159999907, 49.207875967000092 ], [ -123.028661615999937, 49.207871863000037 ], [ -123.028504678999965, 49.207856299000056 ], [ -123.028015390999954, 49.207825706000079 ], [ -123.027550689999927, 49.207860618000097 ], [ -123.026100209, 49.207969188000099 ], [ -123.025792596999963, 49.207994110000058 ], [ -123.024035124999926, 49.208138072000075 ], [ -123.023671002999919, 49.208167926000094 ], [ -123.023587120999949, 49.208174036000059 ], [ -123.023537305, 49.208177686000042 ] ], [ [ -123.031657012999943, 49.20633466 ], [ -123.031680693999988, 49.205964079000054 ], [ -123.03233726799999, 49.205982162000033 ], [ -123.032337217999938, 49.205904601000043 ], [ -123.031513500999907, 49.205904829000069 ], [ -123.031513673999953, 49.206174687000029 ], [ -123.030278090999957, 49.20617501800006 ], [ -123.03027776199994, 49.205635300000054 ], [ -123.029806347999937, 49.205635424000022 ], [ -123.029775198999957, 49.206122560000011 ], [ -123.027395, 49.206056930000052 ], [ -123.027395215999945, 49.206445596000016 ], [ -123.029866392999963, 49.206444984000093 ], [ -123.029866554999955, 49.206714843000043 ], [ -123.031262163999941, 49.206714474000051 ], [ -123.03128708899996, 49.20632447000002 ], [ -123.031657012999943, 49.20633466 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.765867192054844", "sL_AssetLoss": "49741", "sL_BldgLoss": "38095", "sL_StrLoss": "18930", "sL_NStrLoss": "19165", "sL_ContLoss": "11646", "geom_point": "0101000020E6100000870B48147DC25EC0099EC6E6F89A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.038519496999967, 49.21156973700004 ], [ -123.038519077999979, 49.211030021000091 ], [ -123.037283374999944, 49.211030425000054 ], [ -123.037282765999976, 49.210220850000056 ], [ -123.038518448999952, 49.210220444000086 ], [ -123.038518239999945, 49.209950586000026 ], [ -123.039753916, 49.20995016800007 ], [ -123.039754130999967, 49.210220026000059 ], [ -123.040166025999937, 49.210219883000022 ], [ -123.040166900999978, 49.211299318000066 ], [ -123.039754996999974, 49.211299461000124 ], [ -123.039755212999964, 49.211569318000066 ], [ -123.038519496999967, 49.21156973700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183188251", "BldgCostT": "117810001", "sL_LossRatio": "0.701950874867952", "sL_AssetLoss": "1617787", "sL_BldgLoss": "1135607", "sL_StrLoss": "543575", "sL_NStrLoss": "592032", "sL_ContLoss": "482180", "geom_point": "0101000020E61000001C4F88A942C25EC0DFF803B3FC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030250396999961, 49.215599494000067 ], [ -123.030108994, 49.215320898000058 ], [ -123.029988286999952, 49.215019308000102 ], [ -123.029879076999947, 49.21447399700002 ], [ -123.02984618, 49.21416011700007 ], [ -123.02982065, 49.213916540000113 ], [ -123.029781082999989, 49.213539282000063 ], [ -123.029769757999958, 49.213431225000065 ], [ -123.029750435999929, 49.213246851000072 ], [ -123.029731603999963, 49.213067287000079 ], [ -123.02971039000002, 49.212777593000077 ], [ -123.029715613999954, 49.212675003000079 ], [ -123.029726796999967, 49.212177211000018 ], [ -123.029703500999958, 49.211897307000136 ], [ -123.029551085999941, 49.21159849800005 ], [ -123.029474612999977, 49.211508107000071 ], [ -123.029312580999942, 49.211315286000058 ], [ -123.028807699999959, 49.210992388000101 ], [ -123.02857999699999, 49.21090509400004 ], [ -123.027277921999925, 49.210558400000046 ], [ -123.027367885999951, 49.210395990000116 ], [ -123.027682175999956, 49.210051503000045 ], [ -123.028074012, 49.209655092000098 ], [ -123.028268995999966, 49.209501997000054 ], [ -123.02859919899997, 49.209317394000088 ], [ -123.029081508999951, 49.209179295000084 ], [ -123.029727501999972, 49.209183604000017 ], [ -123.030201312999978, 49.209113797000064 ], [ -123.030652392999954, 49.20886139000006 ], [ -123.030817596999967, 49.208552395000034 ], [ -123.030868887999986, 49.208394399 ], [ -123.030897703, 49.208093404000131 ], [ -123.031172571999917, 49.208127899000068 ], [ -123.031283574999946, 49.208141822000073 ], [ -123.032608902999968, 49.208308102000075 ], [ -123.032973402999971, 49.208354079000081 ], [ -123.033531787999976, 49.208424494000063 ], [ -123.033960418, 49.208438993000129 ], [ -123.034655197999982, 49.208410391000029 ], [ -123.035405323999953, 49.208382461000021 ], [ -123.037158603999913, 49.208317088000136 ], [ -123.037798291999977, 49.208269806 ], [ -123.038148585999963, 49.208177587000094 ], [ -123.038524888999916, 49.20802128700003 ], [ -123.038900908999935, 49.207827987000073 ], [ -123.037776143999935, 49.207287864000101 ], [ -123.037216913999956, 49.207086635000088 ], [ -123.036625175999987, 49.206977229000032 ], [ -123.036636608999956, 49.20690638300011 ], [ -123.036703990999925, 49.206128995000114 ], [ -123.038396120999934, 49.206365568000116 ], [ -123.040546091999886, 49.206666109 ], [ -123.042257689999957, 49.206787794000086 ], [ -123.042257348999925, 49.207101102000109 ], [ -123.042256285999954, 49.208038186000095 ], [ -123.04225838799999, 49.208111443000028 ], [ -123.042258703999948, 49.208121881000125 ], [ -123.042259709999939, 49.208157200000109 ], [ -123.042239162999948, 49.20832935600005 ], [ -123.042168296999975, 49.208923099000081 ], [ -123.041787305999918, 49.210834190000057 ], [ -123.041703883999958, 49.212070918000023 ], [ -123.041664474999905, 49.212655680000125 ], [ -123.04163850299993, 49.213040812000074 ], [ -123.04159971099989, 49.21382160600006 ], [ -123.040837015999927, 49.213800672000026 ], [ -123.04022557799999, 49.21378389800001 ], [ -123.03886937799993, 49.213745790000097 ], [ -123.03813499499995, 49.213705792000034 ], [ -123.036920492999954, 49.213597591000081 ], [ -123.035659416, 49.213509793000085 ], [ -123.035234708999894, 49.213498110000074 ], [ -123.034441720999951, 49.213560100000073 ], [ -123.033834202999969, 49.213638780000082 ], [ -123.033515027999968, 49.213779598000052 ], [ -123.033265488999987, 49.214033098000066 ], [ -123.033211597999937, 49.214190200000075 ], [ -123.033222794999944, 49.214400412000067 ], [ -123.0333105099999, 49.214616758000048 ], [ -123.03373499599995, 49.215663901000028 ], [ -123.033055980999904, 49.215658796000042 ], [ -123.031419214999943, 49.215501093000128 ], [ -123.031186803999944, 49.21548569600008 ], [ -123.030686290999981, 49.215586288000075 ], [ -123.030306381999978, 49.215689298000079 ], [ -123.030250396999961, 49.215599494000067 ] ], [ [ -123.035636933999953, 49.212650097000065 ], [ -123.035636353999962, 49.211840521000106 ], [ -123.037283983999899, 49.211840001000049 ], [ -123.037284389999954, 49.212379717000111 ], [ -123.038108214999951, 49.212379449000125 ], [ -123.038107799999963, 49.211839732000044 ], [ -123.039343522999928, 49.211839318000038 ], [ -123.03934395, 49.212377327000027 ], [ -123.039771335999944, 49.212307763000041 ], [ -123.04016771799995, 49.21230788800009 ], [ -123.040167119, 49.211569176000125 ], [ -123.040579024999928, 49.211569032000078 ], [ -123.040578803999907, 49.211299173000029 ], [ -123.041402609999977, 49.211298881000047 ], [ -123.041401482999945, 49.209949588000022 ], [ -123.041813375999979, 49.209949440000059 ], [ -123.041813277999893, 49.209833907000061 ], [ -123.037577225999954, 49.20971755100004 ], [ -123.037578604999965, 49.209695921000069 ], [ -123.036932348000022, 49.209678155000063 ], [ -123.03693018899996, 49.209711977000062 ], [ -123.03689836399991, 49.209711101000032 ], [ -123.036873708, 49.210097577000049 ], [ -123.035635075999963, 49.21006351500003 ], [ -123.035635188999933, 49.210221370000042 ], [ -123.034811401999917, 49.210221621000088 ], [ -123.034811588999972, 49.21049148 ], [ -123.032752107999926, 49.210492082000101 ], [ -123.032751771999955, 49.209984169000059 ], [ -123.031394281999965, 49.209946786000039 ], [ -123.031395297999936, 49.209930892000038 ], [ -123.031104163999899, 49.209922872000043 ], [ -123.031104690999953, 49.210762397000032 ], [ -123.031928487999934, 49.21076217100012 ], [ -123.031928660999966, 49.21103202900013 ], [ -123.032340563000034, 49.211031915000085 ], [ -123.03234090799999, 49.211561163000034 ], [ -123.03239997299994, 49.211571615 ], [ -123.03275282099996, 49.211571516000127 ], [ -123.032753532999948, 49.212650950000061 ], [ -123.035636933999953, 49.212650097000065 ] ], [ [ -123.031103705999925, 49.20919358200004 ], [ -123.031141422999951, 49.208603518000075 ], [ -123.031103335999916, 49.208603527000129 ], [ -123.031103705999925, 49.20919358200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108859061", "BldgCostT": "70093190", "sL_LossRatio": "0.70302093389874", "sL_AssetLoss": "1636580", "sL_BldgLoss": "1150550", "sL_StrLoss": "509630", "sL_NStrLoss": "640920", "sL_ContLoss": "486030", "geom_point": "0101000020E6100000C1F806B260C25EC0C15B5AEC7A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033834202999969, 49.213638780000082 ], [ -123.034441720999951, 49.213560100000073 ], [ -123.035234708999894, 49.213498110000074 ], [ -123.035659416, 49.213509793000085 ], [ -123.036920492999954, 49.213597591000081 ], [ -123.03813499499995, 49.213705792000034 ], [ -123.03886937799993, 49.213745790000097 ], [ -123.04022557799999, 49.21378389800001 ], [ -123.040837015999927, 49.213800672000026 ], [ -123.04159971099989, 49.21382160600006 ], [ -123.04155504000002, 49.214733645000067 ], [ -123.04151760699996, 49.215498579000091 ], [ -123.040795740999926, 49.215496791000149 ], [ -123.040063532999952, 49.215494968000066 ], [ -123.039788795999939, 49.215494267000061 ], [ -123.038415116, 49.215490801000058 ], [ -123.037076084999939, 49.215568491000084 ], [ -123.036444008, 49.215688896000096 ], [ -123.035907492999954, 49.215858810000107 ], [ -123.035587418999953, 49.215993300000093 ], [ -123.034811506999986, 49.216430390000085 ], [ -123.034801753999929, 49.216424036000049 ], [ -123.034643018999944, 49.216320275000044 ], [ -123.03446430299999, 49.216203447000034 ], [ -123.03429251599999, 49.216091134000081 ], [ -123.033965676999983, 49.215877502000048 ], [ -123.033948257999924, 49.215861355000108 ], [ -123.03373499599995, 49.215663901000028 ], [ -123.0333105099999, 49.214616758000048 ], [ -123.033222794999944, 49.214400412000067 ], [ -123.033211597999937, 49.214190200000075 ], [ -123.033265488999987, 49.214033098000066 ], [ -123.033515027999968, 49.213779598000052 ], [ -123.033834202999969, 49.213638780000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41258083", "BldgCostT": "25198333", "sL_LossRatio": "0.672835204396882", "sL_AssetLoss": "708866", "sL_BldgLoss": "476950", "sL_StrLoss": "180570", "sL_NStrLoss": "296380", "sL_ContLoss": "231916", "geom_point": "0101000020E61000007C833F2E77C25EC044F1095DB29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034811506999986, 49.216430390000085 ], [ -123.035587418999953, 49.215993300000093 ], [ -123.035907492999954, 49.215858810000107 ], [ -123.036444008, 49.215688896000096 ], [ -123.037076084999939, 49.215568491000084 ], [ -123.038415116, 49.215490801000058 ], [ -123.039788795999939, 49.215494267000061 ], [ -123.040063532999952, 49.215494968000066 ], [ -123.040795740999926, 49.215496791000149 ], [ -123.04151760699996, 49.215498579000091 ], [ -123.041486590999938, 49.216263371000068 ], [ -123.041476800999959, 49.216505501 ], [ -123.041449811999925, 49.217209203000074 ], [ -123.041003329999981, 49.217200626000142 ], [ -123.040728712999936, 49.217195333000063 ], [ -123.040472124999937, 49.217190384000091 ], [ -123.040197473999939, 49.217185104000087 ], [ -123.039584199999979, 49.217173290000112 ], [ -123.039198723999959, 49.21718995400002 ], [ -123.038306407999954, 49.217228528000106 ], [ -123.038105981999934, 49.217237197000081 ], [ -123.037923164999938, 49.21724405500003 ], [ -123.036859594999925, 49.21728400400012 ], [ -123.036692158999983, 49.217268173000093 ], [ -123.036416193999955, 49.217242097000074 ], [ -123.036254222, 49.217200692000048 ], [ -123.035759008999932, 49.217002390000104 ], [ -123.034900357, 49.216484056000063 ], [ -123.034811506999986, 49.216430390000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "495257591", "BldgCostT": "324523203", "sL_LossRatio": "0.736828934843255", "sL_AssetLoss": "2181923", "sL_BldgLoss": "1607704", "sL_StrLoss": "752460", "sL_NStrLoss": "855244", "sL_ContLoss": "574219", "geom_point": "0101000020E61000001682FCCF4EC25EC0BF4C4511EF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03197362099999, 49.217606305000047 ], [ -123.031151888999943, 49.216675595000083 ], [ -123.03073548299993, 49.21627679700007 ], [ -123.030418606999916, 49.215842936000051 ], [ -123.030306381999978, 49.215689298000079 ], [ -123.030686290999981, 49.215586288000075 ], [ -123.031186803999944, 49.21548569600008 ], [ -123.031419214999943, 49.215501093000128 ], [ -123.033055980999904, 49.215658796000042 ], [ -123.03373499599995, 49.215663901000028 ], [ -123.033948257999924, 49.215861355000108 ], [ -123.033965676999983, 49.215877502000048 ], [ -123.03429251599999, 49.216091134000081 ], [ -123.03446430299999, 49.216203447000034 ], [ -123.034643018999944, 49.216320275000044 ], [ -123.034801753999929, 49.216424036000049 ], [ -123.034811506999986, 49.216430390000085 ], [ -123.034900357, 49.216484056000063 ], [ -123.035759008999932, 49.217002390000104 ], [ -123.036254222, 49.217200692000048 ], [ -123.036416193999955, 49.217242097000074 ], [ -123.036692158999983, 49.217268173000093 ], [ -123.036859594999925, 49.21728400400012 ], [ -123.037923164999938, 49.21724405500003 ], [ -123.038105981999934, 49.217237197000081 ], [ -123.038306407999954, 49.217228528000106 ], [ -123.039198723999959, 49.21718995400002 ], [ -123.039584199999979, 49.217173290000112 ], [ -123.040197473999939, 49.217185104000087 ], [ -123.040472124999937, 49.217190384000091 ], [ -123.040728712999936, 49.217195333000063 ], [ -123.041003329999981, 49.217200626000142 ], [ -123.041449811999925, 49.217209203000074 ], [ -123.041408705000023, 49.21775606900011 ], [ -123.04140341399993, 49.217826316000078 ], [ -123.041389887999983, 49.218006076000059 ], [ -123.041377489999917, 49.218171104000113 ], [ -123.04137475099995, 49.218304894000049 ], [ -123.041357806999926, 49.219127285000056 ], [ -123.04135609699992, 49.2191975060001 ], [ -123.041281096, 49.220159298000056 ], [ -123.040662104999939, 49.220159587000062 ], [ -123.039687111999939, 49.220160049000071 ], [ -123.039345716999932, 49.220160190000044 ], [ -123.039050490999955, 49.220161184000077 ], [ -123.038424191, 49.220152706000121 ], [ -123.038083695999944, 49.220148100000053 ], [ -123.037964312999989, 49.220148406000135 ], [ -123.037490060999914, 49.220146998000097 ], [ -123.036825286999942, 49.220145018000039 ], [ -123.036075559999944, 49.220140983000128 ], [ -123.035277494999931, 49.220136696000097 ], [ -123.034702163999938, 49.220133524000083 ], [ -123.034592332999978, 49.220132937000052 ], [ -123.033843691999934, 49.22012879600004 ], [ -123.033095446999937, 49.220125356000025 ], [ -123.032390602999953, 49.220122106000119 ], [ -123.032401310999916, 49.219031497000039 ], [ -123.032370041999982, 49.218892289000067 ], [ -123.032275438999974, 49.218470687000014 ], [ -123.032163104999967, 49.21797010200001 ], [ -123.032138616999987, 49.217923087000074 ], [ -123.032111693, 49.217871444000153 ], [ -123.03197362099999, 49.217606305000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83893668", "BldgCostT": "50446668", "sL_LossRatio": "0.670284369496636", "sL_AssetLoss": "1262864", "sL_BldgLoss": "846478", "sL_StrLoss": "346610", "sL_NStrLoss": "499868", "sL_ContLoss": "416386", "geom_point": "0101000020E610000074A97C95DDC15EC061545227209C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02817780099997, 49.217361201000081 ], [ -123.028188721999982, 49.217020095000123 ], [ -123.028315014999961, 49.216891092000118 ], [ -123.02844571699994, 49.216756907000075 ], [ -123.028687494999986, 49.216732005000047 ], [ -123.029022607999977, 49.216750287000131 ], [ -123.029479506999934, 49.21681691200012 ], [ -123.029647978999961, 49.216864793000084 ], [ -123.029708887000012, 49.216920591000047 ], [ -123.0298852199999, 49.217275806000018 ], [ -123.031151888999943, 49.216675595000083 ], [ -123.03197362099999, 49.217606305000047 ], [ -123.032111693, 49.217871444000153 ], [ -123.032138616999987, 49.217923087000074 ], [ -123.032163104999967, 49.21797010200001 ], [ -123.032275438999974, 49.218470687000014 ], [ -123.032370041999982, 49.218892289000067 ], [ -123.032401310999916, 49.219031497000039 ], [ -123.031691416999976, 49.219035402000024 ], [ -123.031685511999939, 49.219385697000057 ], [ -123.031421478999931, 49.219392792000114 ], [ -123.031156697, 49.219435086000068 ], [ -123.030845207999974, 49.219584091000037 ], [ -123.030729478999945, 49.219698100000137 ], [ -123.030658012999979, 49.219828498 ], [ -123.030639907999927, 49.220111803000094 ], [ -123.030074697999964, 49.220106992000105 ], [ -123.030049644999949, 49.220244893000022 ], [ -123.029866953999885, 49.221249862 ], [ -123.029831092999956, 49.221447110000092 ], [ -123.029666915999883, 49.221811164000087 ], [ -123.029603992999952, 49.221950697000068 ], [ -123.029577263, 49.221983055000059 ], [ -123.029104083999954, 49.222555814000081 ], [ -123.02880440499996, 49.222776734000021 ], [ -123.028674871999982, 49.22287221900006 ], [ -123.028160482999979, 49.223251387000062 ], [ -123.02733919399999, 49.222744098000049 ], [ -123.027007286999918, 49.22257527200005 ], [ -123.026867187999954, 49.222504004000058 ], [ -123.026152187999926, 49.222245598000121 ], [ -123.026425006999915, 49.221843206000052 ], [ -123.026753216999921, 49.221327110000104 ], [ -123.02681763599999, 49.221049405000024 ], [ -123.026828982999973, 49.221000391000054 ], [ -123.026801206999949, 49.220792391000039 ], [ -123.026747010999927, 49.220673578000032 ], [ -123.026608601999925, 49.220370005000092 ], [ -123.026347186999971, 49.220058285000036 ], [ -123.026416621999914, 49.220002591000089 ], [ -123.027028213000023, 49.219776201000045 ], [ -123.027475985999942, 49.21943137600006 ], [ -123.02817781600001, 49.218798103000076 ], [ -123.028476890999968, 49.218692812000036 ], [ -123.028618977999912, 49.218584840000112 ], [ -123.02870341299996, 49.218520695000102 ], [ -123.028944786999915, 49.218180498000045 ], [ -123.028598679999902, 49.218012397000159 ], [ -123.028371683999964, 49.217870990000058 ], [ -123.028279106999989, 49.21775229900004 ], [ -123.028206783999977, 49.217594391000048 ], [ -123.02817780099997, 49.217361201000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297802679", "BldgCostT": "191607331", "sL_LossRatio": "0.687073731174079", "sL_AssetLoss": "3281380", "sL_BldgLoss": "2254550", "sL_StrLoss": "996320", "sL_NStrLoss": "1258230", "sL_ContLoss": "1026830", "geom_point": "0101000020E610000045DB53CDC7BB5EC05F6675FEAF9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.933239503999971, 49.20619179700001 ], [ -122.933652090999914, 49.205970209000064 ], [ -122.934467003999927, 49.206617684000079 ], [ -122.935309406999949, 49.207285812000102 ], [ -122.93580127199999, 49.207671892000079 ], [ -122.936279814000031, 49.208053092000092 ], [ -122.936776715999912, 49.208446507000048 ], [ -122.937255273999952, 49.20882589700004 ], [ -122.935711403999932, 49.209657692000057 ], [ -122.93612727, 49.209996609 ], [ -122.936623124000022, 49.210400707000076 ], [ -122.935628817999941, 49.210936378000063 ], [ -122.935064899999944, 49.211240203000123 ], [ -122.934566712999924, 49.210851295000118 ], [ -122.934131816000018, 49.210511805000088 ], [ -122.933638491999929, 49.210125689000058 ], [ -122.933146583999942, 49.209740595 ], [ -122.932670187000014, 49.209368417000093 ], [ -122.932190200999955, 49.208989889000108 ], [ -122.931345288000031, 49.208276695000087 ], [ -122.930604486999982, 49.20760959800009 ], [ -122.931294619, 49.207237402000011 ], [ -122.932105582999966, 49.206801003000052 ], [ -122.933239503999971, 49.20619179700001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219703895", "BldgCostT": "146601524", "sL_LossRatio": "0.750677847500544", "sL_AssetLoss": "1940702", "sL_BldgLoss": "1456842", "sL_StrLoss": "667962", "sL_NStrLoss": "788880", "sL_ContLoss": "483860", "geom_point": "0101000020E61000005773D25E71BB5EC016525D44049B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.925648497999987, 49.210273804000053 ], [ -122.926885299, 49.209625313000124 ], [ -122.927639115999909, 49.210221495000035 ], [ -122.931058099999944, 49.20836581 ], [ -122.931345288000031, 49.208276695000087 ], [ -122.932190200999955, 49.208989889000108 ], [ -122.932670187000014, 49.209368417000093 ], [ -122.933146583999942, 49.209740595 ], [ -122.933638491999929, 49.210125689000058 ], [ -122.930008709, 49.2120963 ], [ -122.93048480899995, 49.212472882000085 ], [ -122.92766771099997, 49.214000801000047 ], [ -122.926633193999976, 49.213227990000064 ], [ -122.925675518, 49.212478199000046 ], [ -122.924856908, 49.211823312000107 ], [ -122.924021584999963, 49.211174190000122 ], [ -122.925648497999987, 49.210273804000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "402483038", "BldgCostT": "263548046", "sL_LossRatio": "0.737411218423877", "sL_AssetLoss": "3419910", "sL_BldgLoss": "2521880", "sL_StrLoss": "1011000", "sL_NStrLoss": "1510880", "sL_ContLoss": "898030", "geom_point": "0101000020E6100000BF3D009070BB5EC00A79AAC7A69A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.928080092999906, 49.206624988000037 ], [ -122.928804294999949, 49.206235800000066 ], [ -122.930604486999982, 49.20760959800009 ], [ -122.931345288000031, 49.208276695000087 ], [ -122.931058099999944, 49.20836581 ], [ -122.927639115999909, 49.210221495000035 ], [ -122.926885299, 49.209625313000124 ], [ -122.926406876, 49.209244891000075 ], [ -122.928165302999929, 49.208283396000091 ], [ -122.926934718999988, 49.207241000000124 ], [ -122.927449806999959, 49.206963804000083 ], [ -122.928080092999906, 49.206624988000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "272523351", "BldgCostT": "179578207", "sL_LossRatio": "0.823371124755005", "sL_AssetLoss": "1846980", "sL_BldgLoss": "1520750", "sL_StrLoss": "712890", "sL_NStrLoss": "807860", "sL_ContLoss": "326230", "geom_point": "0101000020E6100000AA132BFE4ABB5EC050E021B59E9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924647458, 49.207825687000117 ], [ -122.926970008999916, 49.206582595000064 ], [ -122.927449806999959, 49.206963804000083 ], [ -122.926934718999988, 49.207241000000124 ], [ -122.928165302999929, 49.208283396000091 ], [ -122.926406876, 49.209244891000075 ], [ -122.925608998, 49.208610482 ], [ -122.925119016999986, 49.208217200000092 ], [ -122.924636808999978, 49.20783140300005 ], [ -122.924647458, 49.207825687000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29254644", "BldgCostT": "17606523", "sL_LossRatio": "0.677527950530661", "sL_AssetLoss": "564390", "sL_BldgLoss": "382390", "sL_StrLoss": "158810", "sL_NStrLoss": "223580", "sL_ContLoss": "182000", "geom_point": "0101000020E6100000D1D53E9956BB5EC0E2709CCA589A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926352694999935, 49.204982085000083 ], [ -122.92685819699993, 49.204705485000041 ], [ -122.927852502999912, 49.205481597000059 ], [ -122.928804294999949, 49.206235800000066 ], [ -122.928080092999906, 49.206624988000037 ], [ -122.927449806999959, 49.206963804000083 ], [ -122.926970008999916, 49.206582595000064 ], [ -122.926504504999983, 49.206213414000089 ], [ -122.925998472999964, 49.205814291000124 ], [ -122.925520230999979, 49.205433098000107 ], [ -122.9262035, 49.205060684000024 ], [ -122.926352694999935, 49.204982085000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "308080621", "BldgCostT": "209847803", "sL_LossRatio": "0.774497623471214", "sL_AssetLoss": "1754660", "sL_BldgLoss": "1358980", "sL_StrLoss": "643390", "sL_NStrLoss": "715590", "sL_ContLoss": "395680", "geom_point": "0101000020E61000005E14568D12BB5EC0A4903BD73D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92299763299998, 49.211731487000115 ], [ -122.924021584999963, 49.211174190000122 ], [ -122.924856908, 49.211823312000107 ], [ -122.925675518, 49.212478199000046 ], [ -122.921981316999947, 49.214480902000048 ], [ -122.92119328699999, 49.213841199000093 ], [ -122.920332811999941, 49.213158088000057 ], [ -122.921860388999946, 49.212350400000048 ], [ -122.92227640699997, 49.21212400600011 ], [ -122.92299763299998, 49.211731487000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "340202122", "BldgCostT": "226616380", "sL_LossRatio": "0.786291194732983", "sL_AssetLoss": "1895570", "sL_BldgLoss": "1490470", "sL_StrLoss": "685390", "sL_NStrLoss": "805080", "sL_ContLoss": "405100", "geom_point": "0101000020E61000006B6AE1CB27BB5EC0EF5FFEAF5F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.921981316999947, 49.214480902000048 ], [ -122.925675518, 49.212478199000046 ], [ -122.926633193999976, 49.213227990000064 ], [ -122.92292880399999, 49.215240389000051 ], [ -122.921981316999947, 49.214480902000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "453505850", "BldgCostT": "303086237", "sL_LossRatio": "0.752442227179324", "sL_AssetLoss": "3640120", "sL_BldgLoss": "2738980", "sL_StrLoss": "1152200", "sL_NStrLoss": "1586780", "sL_ContLoss": "901140", "geom_point": "0101000020E61000005B326D8343BB5EC0B9E93A1AA89B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.925052605999952, 49.216931297000016 ], [ -122.923899815999945, 49.216017604000065 ], [ -122.923327765999971, 49.216327697000118 ], [ -122.922639789999934, 49.216700593000077 ], [ -122.921959381999926, 49.217069073000047 ], [ -122.921361407999925, 49.217392879000087 ], [ -122.920413813999957, 49.216634305000085 ], [ -122.919433394999942, 49.215853995000039 ], [ -122.920731600999929, 49.215154195000117 ], [ -122.921981316999947, 49.214480902000048 ], [ -122.92292880399999, 49.215240389000051 ], [ -122.926633193999976, 49.213227990000064 ], [ -122.92766771099997, 49.214000801000047 ], [ -122.928129192999918, 49.214354329000031 ], [ -122.928608202999925, 49.214721296000064 ], [ -122.929046829999947, 49.215066622000045 ], [ -122.929520097999941, 49.215439199000087 ], [ -122.92997388, 49.215788396000072 ], [ -122.93046830599999, 49.21616889600012 ], [ -122.930940108999962, 49.216504774000029 ], [ -122.931430506000012, 49.216853924000091 ], [ -122.931460146999896, 49.216875839000053 ], [ -122.931509010999932, 49.216912026000067 ], [ -122.930946138999971, 49.217214849000079 ], [ -122.927649324999948, 49.218988605000042 ], [ -122.927590488999897, 49.218942695000074 ], [ -122.927487754999973, 49.218861287000074 ], [ -122.925052605999952, 49.216931297000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102260040", "BldgCostT": "63420373", "sL_LossRatio": "0.717802008975496", "sL_AssetLoss": "1094090", "sL_BldgLoss": "785340", "sL_StrLoss": "362080", "sL_NStrLoss": "423260", "sL_ContLoss": "308750", "geom_point": "0101000020E61000002085460B2BBB5EC08E5085A2ED9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.923327765999971, 49.216327697000118 ], [ -122.923899815999945, 49.216017604000065 ], [ -122.925052605999952, 49.216931297000016 ], [ -122.927487754999973, 49.218861287000074 ], [ -122.927590488999897, 49.218942695000074 ], [ -122.927649324999948, 49.218988605000042 ], [ -122.926436611999975, 49.21964140299999 ], [ -122.925111519999945, 49.220354009000111 ], [ -122.925059202999961, 49.220314710000125 ], [ -122.924308614999944, 49.219730211000112 ], [ -122.923549114999958, 49.219136498000047 ], [ -122.922842400999969, 49.218573103000018 ], [ -122.922471765999944, 49.218277431000097 ], [ -122.922114983999961, 49.217992807000087 ], [ -122.921734880999963, 49.217690211000075 ], [ -122.921361407999925, 49.217392879000087 ], [ -122.921959381999926, 49.217069073000047 ], [ -122.922639789999934, 49.216700593000077 ], [ -122.923327765999971, 49.216327697000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109320053", "BldgCostT": "71428746", "sL_LossRatio": "0.723772689624191", "sL_AssetLoss": "1424660", "sL_BldgLoss": "1031130", "sL_StrLoss": "475060", "sL_NStrLoss": "556070", "sL_ContLoss": "393530", "geom_point": "0101000020E610000043B357C4D5BA5EC03AC9A024EE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.915739313999936, 49.217847501000058 ], [ -122.919433394999942, 49.215853995000039 ], [ -122.920413813999957, 49.216634305000085 ], [ -122.921361407999925, 49.217392879000087 ], [ -122.921734880999963, 49.217690211000075 ], [ -122.922114983999961, 49.217992807000087 ], [ -122.922471765999944, 49.218277431000097 ], [ -122.922842400999969, 49.218573103000018 ], [ -122.919175009999933, 49.220555701000087 ], [ -122.918800361999971, 49.220254832000094 ], [ -122.918601604999978, 49.220095201000078 ], [ -122.918425596999953, 49.219955896000045 ], [ -122.918158996999964, 49.21974859700007 ], [ -122.91798342899996, 49.219612023000089 ], [ -122.917692017999954, 49.219385406000107 ], [ -122.916729900999954, 49.218619099000094 ], [ -122.915739313999936, 49.217847501000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "852781584", "BldgCostT": "580822349", "sL_LossRatio": "0.782878057693625", "sL_AssetLoss": "5253960", "sL_BldgLoss": "4113210", "sL_StrLoss": "1804690", "sL_NStrLoss": "2308520", "sL_ContLoss": "1140750", "geom_point": "0101000020E61000000785BEAA69BA5EC0FF800706109C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.913185271999936, 49.215839258000095 ], [ -122.913266447999902, 49.215794720000112 ], [ -122.913275432999967, 49.215801638000073 ], [ -122.914171116, 49.216494501000021 ], [ -122.914050144999933, 49.216559518000032 ], [ -122.914332798999965, 49.216788331000025 ], [ -122.914520460999952, 49.21685586500007 ], [ -122.914928114999981, 49.217186467000055 ], [ -122.915318509999963, 49.217504644 ], [ -122.915739313999936, 49.217847501000058 ], [ -122.916729900999954, 49.218619099000094 ], [ -122.91477299499995, 49.219664908000034 ], [ -122.915730589999967, 49.220437405000112 ], [ -122.914758226999979, 49.220940650000067 ], [ -122.914693538, 49.220974124000151 ], [ -122.914528709999914, 49.221059401000019 ], [ -122.91398210899996, 49.22134228900012 ], [ -122.912884661999954, 49.221914914000109 ], [ -122.912009686999937, 49.222371401000068 ], [ -122.911944691, 49.222403350000057 ], [ -122.91189190599999, 49.222429304000094 ], [ -122.911883251999953, 49.222422299000073 ], [ -122.910008262999966, 49.220907127000025 ], [ -122.908374827000017, 49.219587005000072 ], [ -122.908386602999954, 49.219580640000082 ], [ -122.908457404000032, 49.219542484000058 ], [ -122.908623403999954, 49.219453552000054 ], [ -122.909589663999938, 49.218935829000053 ], [ -122.910021187999959, 49.218704600000102 ], [ -122.910037387999949, 49.218695910000079 ], [ -122.910157419999933, 49.218631753000061 ], [ -122.91094111299999, 49.218212806000054 ], [ -122.912125379999921, 49.217577388000088 ], [ -122.911922653999937, 49.217417625000024 ], [ -122.911259416999954, 49.216894897000039 ], [ -122.913109253999949, 49.215880894000044 ], [ -122.913185271999936, 49.215839258000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243004083", "BldgCostT": "158328333", "sL_LossRatio": "0.754661034160608", "sL_AssetLoss": "3692850", "sL_BldgLoss": "2786850", "sL_StrLoss": "1237110", "sL_NStrLoss": "1549740", "sL_ContLoss": "906000", "geom_point": "0101000020E61000008186489708BA5EC09F3DFAD304A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906919877999954, 49.251512020000106 ], [ -122.904302075999937, 49.251129267000096 ], [ -122.904283197999959, 49.251309805000062 ], [ -122.903699493999952, 49.251017462000064 ], [ -122.902559687999968, 49.250446591000049 ], [ -122.901805909999922, 49.250100760000031 ], [ -122.901902470999971, 49.249915536000088 ], [ -122.902007254999916, 49.249633276000075 ], [ -122.902148819999951, 49.24929090200007 ], [ -122.90198179099994, 49.248912309000076 ], [ -122.901981744999958, 49.248907754000058 ], [ -122.90197945599999, 49.248685464000161 ], [ -122.901973508999973, 49.248110293000082 ], [ -122.903325891999955, 49.248101711000039 ], [ -122.90422559299995, 49.248095994000039 ], [ -122.904400713999948, 49.248102627000058 ], [ -122.905113587999963, 49.24812650800002 ], [ -122.906814404999963, 49.248120412000048 ], [ -122.906944260999978, 49.248265862000046 ], [ -122.907117300999943, 49.2484596850001 ], [ -122.90735020599999, 49.248690260000053 ], [ -122.907694588999902, 49.249031216000049 ], [ -122.907832684999946, 49.249163235000019 ], [ -122.908740512999927, 49.250031398000097 ], [ -122.909021629, 49.250079767000017 ], [ -122.909022407999885, 49.250079904000124 ], [ -122.909023240999915, 49.250080052 ], [ -122.909190955999946, 49.25010890500009 ], [ -122.909293197999958, 49.250126506000058 ], [ -122.90932545899993, 49.250128774000117 ], [ -122.909945405999949, 49.250172728000059 ], [ -122.910739095999986, 49.250228993000071 ], [ -122.911104605999967, 49.250254898 ], [ -122.911500629000017, 49.2503440320001 ], [ -122.912705541999969, 49.25061518100005 ], [ -122.912684681999963, 49.250866823000067 ], [ -122.912603401999903, 49.250973509000048 ], [ -122.912489914, 49.252307148000064 ], [ -122.911316023999959, 49.252154641000104 ], [ -122.909721489999953, 49.25192156400005 ], [ -122.906919877999954, 49.251512020000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120305752", "BldgCostT": "76370002", "sL_LossRatio": "0.711089856656647", "sL_AssetLoss": "1610120", "sL_BldgLoss": "1144940", "sL_StrLoss": "512750", "sL_NStrLoss": "632190", "sL_ContLoss": "465180", "geom_point": "0101000020E610000082F954E35FB95EC06CE1B20A9B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.897512994999914, 49.220527651000047 ], [ -122.898757181999954, 49.220544991000054 ], [ -122.89870545399999, 49.223296412000131 ], [ -122.898697505999948, 49.223719009000042 ], [ -122.898685893999954, 49.22418689400012 ], [ -122.89867390699996, 49.224668794000102 ], [ -122.898661819999987, 49.225157599000063 ], [ -122.898649510999988, 49.225609485000085 ], [ -122.892890789999925, 49.225541894000081 ], [ -122.89290224299999, 49.225063199000019 ], [ -122.892912977999984, 49.224615493000044 ], [ -122.892938098999977, 49.223665779 ], [ -122.895764392000018, 49.223690390000094 ], [ -122.895783466999887, 49.223249179000071 ], [ -122.895801992999935, 49.222820295000069 ], [ -122.895812656999979, 49.222583581000031 ], [ -122.89581916399996, 49.222439766000115 ], [ -122.895838874999981, 49.222001595000073 ], [ -122.895881241999945, 49.221037111000015 ], [ -122.895904600999955, 49.220505198000104 ], [ -122.897512994999914, 49.220527651000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194009969", "BldgCostT": "128825412", "sL_LossRatio": "0.757999199679872", "sL_AssetLoss": "1249500", "sL_BldgLoss": "947120", "sL_StrLoss": "414860", "sL_NStrLoss": "532260", "sL_ContLoss": "302380", "geom_point": "0101000020E61000008366327748B95EC03CB31B85BD9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891568612, 49.219512488000085 ], [ -122.891897610999962, 49.219494003000051 ], [ -122.89189890099999, 49.218972692000122 ], [ -122.892023018999964, 49.218685005000019 ], [ -122.89271181, 49.21765098700012 ], [ -122.893251421999977, 49.216508805000061 ], [ -122.893430587999902, 49.21587930300003 ], [ -122.893418189999963, 49.215177197000095 ], [ -122.893597907999961, 49.214728603000033 ], [ -122.893914312999954, 49.21436819700012 ], [ -122.894382695999923, 49.213550697000066 ], [ -122.895828887999954, 49.21144720700007 ], [ -122.896565789999954, 49.210178705000047 ], [ -122.896623899999923, 49.2101803790001 ], [ -122.896631580999966, 49.210065451000141 ], [ -122.896779504, 49.209810802000057 ], [ -122.89737856899994, 49.209101848000039 ], [ -122.897652878999963, 49.209102092000109 ], [ -122.897653377999958, 49.208860082000058 ], [ -122.897841109999945, 49.208927784000132 ], [ -122.897912984999948, 49.208963540000063 ], [ -122.89801577799993, 49.208995069000075 ], [ -122.898577294999967, 49.209222390000065 ], [ -122.898681499999896, 49.209300581000029 ], [ -122.898690978999966, 49.209307677 ], [ -122.898297626, 49.21006034300013 ], [ -122.898242557999964, 49.210432646000157 ], [ -122.89820937199994, 49.210484265000083 ], [ -122.898063362999949, 49.210711271000044 ], [ -122.897643281999976, 49.211082983000054 ], [ -122.895310586999983, 49.213376228000094 ], [ -122.895235459999981, 49.213496533000047 ], [ -122.894782683999935, 49.214221267000028 ], [ -122.894423763999924, 49.214795782000103 ], [ -122.894323400999923, 49.215082701 ], [ -122.894299181999955, 49.215151982000108 ], [ -122.894253693999943, 49.215282008000074 ], [ -122.894214334999944, 49.215394477000089 ], [ -122.893812813999887, 49.216542204000113 ], [ -122.893120086999943, 49.219202497000062 ], [ -122.893117464999975, 49.219234700000065 ], [ -122.893756300999911, 49.219279183 ], [ -122.894666932999911, 49.217816391000035 ], [ -122.8953371919999, 49.217143472000089 ], [ -122.895593315999989, 49.216743903000051 ], [ -122.896064515999939, 49.216983605000088 ], [ -122.89632762299999, 49.217263882000047 ], [ -122.896337475999985, 49.217274400000072 ], [ -122.89645928499999, 49.217546392000074 ], [ -122.896472974999966, 49.218943194000069 ], [ -122.896516720999898, 49.219172406000084 ], [ -122.896640202999933, 49.219316504000105 ], [ -122.896818827999979, 49.219479304000075 ], [ -122.89709760099997, 49.219599900000063 ], [ -122.897426907999929, 49.219663403000048 ], [ -122.897869696999962, 49.219672586000179 ], [ -122.898074283999946, 49.219691999000119 ], [ -122.89827210699994, 49.219750788000042 ], [ -122.89849778899999, 49.219866289000045 ], [ -122.898614129999885, 49.219973310000036 ], [ -122.898772523, 49.220212102000033 ], [ -122.898764274999962, 49.220390726000062 ], [ -122.898757181999954, 49.220544991000054 ], [ -122.897512994999914, 49.220527651000047 ], [ -122.895904600999955, 49.220505198000104 ], [ -122.895164939999987, 49.220494222000092 ], [ -122.894548406999917, 49.220485098000061 ], [ -122.893901832999916, 49.220475583000095 ], [ -122.893018001999948, 49.220462594 ], [ -122.892626302999986, 49.220482407000077 ], [ -122.892582444999945, 49.220486413000131 ], [ -122.892391404999927, 49.220503902000132 ], [ -122.892355755999972, 49.220507180000084 ], [ -122.891674648999967, 49.22055316600008 ], [ -122.890002322999962, 49.220464113000084 ], [ -122.891225788999975, 49.219664891000072 ], [ -122.891568612, 49.219512488000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15566917", "BldgCostT": "9261667", "sL_LossRatio": "0.641174370872747", "sL_AssetLoss": "336180", "sL_BldgLoss": "215550", "sL_StrLoss": "97790", "sL_NStrLoss": "117760", "sL_ContLoss": "120630", "geom_point": "0101000020E61000000E2F0C81B1B85EC0173834C0E09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.883212136999973, 49.219612875000031 ], [ -122.883212772999912, 49.219343017000057 ], [ -122.882800803999942, 49.219342600000054 ], [ -122.882801564999937, 49.219020556000025 ], [ -122.885504042, 49.21766104600006 ], [ -122.88724635599999, 49.215819027000066 ], [ -122.888420680999943, 49.215370893000092 ], [ -122.888577339999955, 49.21535988800008 ], [ -122.888576261999958, 49.215840156000176 ], [ -122.888996009999957, 49.215840561000029 ], [ -122.888636679999962, 49.216881996000033 ], [ -122.887988046, 49.217188880000087 ], [ -122.886101518999979, 49.217187035000059 ], [ -122.886099658999967, 49.217996608000135 ], [ -122.885275743999912, 49.217995793000036 ], [ -122.885274639999949, 49.218472572000053 ], [ -122.885141877999942, 49.218535376000048 ], [ -122.884450569999927, 49.218534688000048 ], [ -122.884449804, 49.218862767000111 ], [ -122.88410010799997, 49.219028190000103 ], [ -122.884449411, 49.219031022000109 ], [ -122.88444931, 49.219074403000022 ], [ -122.884861276999985, 49.219074814000074 ], [ -122.884860022999959, 49.219614529000069 ], [ -122.885271995999929, 49.219614940000049 ], [ -122.885271788999944, 49.219703721000037 ], [ -122.884566882999977, 49.220032290000077 ], [ -122.881975743999973, 49.219813065000011 ], [ -122.881976221999963, 49.219611619000048 ], [ -122.883212136999973, 49.219612875000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "341829988", "BldgCostT": "220098842", "sL_LossRatio": "0.696209427235129", "sL_AssetLoss": "17145430", "sL_BldgLoss": "11936810", "sL_StrLoss": "4718010", "sL_NStrLoss": "7218800", "sL_ContLoss": "5208620", "geom_point": "0101000020E61000005D69CF1B1DB85EC057403D2ABC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.8744401, 49.212587404000033 ], [ -122.874448418, 49.211648898000114 ], [ -122.870815992999923, 49.211642600000054 ], [ -122.870841226999943, 49.211227096000115 ], [ -122.870843968999964, 49.210819260000072 ], [ -122.870845990999925, 49.210524496000048 ], [ -122.870853215999915, 49.209827298000036 ], [ -122.870854821999913, 49.209089510000076 ], [ -122.870848611999918, 49.208958706 ], [ -122.870834875999932, 49.208367297000109 ], [ -122.870838986999956, 49.208041197000064 ], [ -122.870852481999989, 49.207678604000058 ], [ -122.870857195999946, 49.207120105000129 ], [ -122.870868099999967, 49.206957314000107 ], [ -122.870885291999954, 49.20674339300006 ], [ -122.870900695999921, 49.206293189000093 ], [ -122.873560608999981, 49.206284997000083 ], [ -122.874437155999956, 49.206292614000084 ], [ -122.875556058999919, 49.206302345000083 ], [ -122.876517598999925, 49.206247297000061 ], [ -122.876893693999975, 49.206206009 ], [ -122.877054490999981, 49.206198891000106 ], [ -122.877667167999959, 49.206171849000086 ], [ -122.877780891000015, 49.206166824000036 ], [ -122.877917906999969, 49.206160778000019 ], [ -122.878623082999979, 49.206129648000093 ], [ -122.881329702999963, 49.2060101080001 ], [ -122.883224364999961, 49.205894943000018 ], [ -122.883840200999941, 49.205857507000118 ], [ -122.883822225999921, 49.205983076000038 ], [ -122.883713334999953, 49.206173680000063 ], [ -122.883933898999928, 49.206177503000106 ], [ -122.884127432999946, 49.206180474000057 ], [ -122.884575152999957, 49.206190281000048 ], [ -122.884524223999946, 49.206408095000086 ], [ -122.884382506999941, 49.20668050900013 ], [ -122.884291638999983, 49.20679767900004 ], [ -122.883831016, 49.207391358000045 ], [ -122.881748492999975, 49.209828699000063 ], [ -122.881211188999927, 49.210493403000051 ], [ -122.8810759, 49.210606588000125 ], [ -122.878567582999921, 49.211743001000073 ], [ -122.877887811, 49.211976384000067 ], [ -122.875097033999964, 49.212934508000039 ], [ -122.874400852999912, 49.213173495000092 ], [ -122.874301910999961, 49.213207454000063 ], [ -122.874367547999967, 49.212962785000101 ], [ -122.874397241999958, 49.21285204 ], [ -122.874423398, 49.21275448700009 ], [ -122.8744401, 49.212587404000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133558417", "BldgCostT": "87216667", "sL_LossRatio": "0.663447494978514", "sL_AssetLoss": "6641460", "sL_BldgLoss": "4406260", "sL_StrLoss": "1732360", "sL_NStrLoss": "2673900", "sL_ContLoss": "2235200", "geom_point": "0101000020E6100000CFB72ECA66B75EC04E61523AE09A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861899604999934, 49.210576037000088 ], [ -122.861894422999981, 49.209784410000069 ], [ -122.860462424999952, 49.209815508000062 ], [ -122.860209937999926, 49.209811447000106 ], [ -122.858957611999926, 49.209760562000042 ], [ -122.858905383999925, 49.209133048000055 ], [ -122.858859804999923, 49.208434788000055 ], [ -122.85900097199999, 49.207185950000039 ], [ -122.859395608999961, 49.207241596000067 ], [ -122.85963243799992, 49.207260816000066 ], [ -122.859492400999983, 49.209331835000107 ], [ -122.859758787999922, 49.209332159000084 ], [ -122.859758024999977, 49.209602017000087 ], [ -122.861817465999962, 49.209604498000068 ], [ -122.861818216999936, 49.209334640000044 ], [ -122.863465758999908, 49.209336600000015 ], [ -122.863467245999942, 49.208796883000069 ], [ -122.863055365999969, 49.208796396000018 ], [ -122.863056854999982, 49.208256680000019 ], [ -122.861821225999904, 49.208255209000143 ], [ -122.861821976999977, 49.207985350000037 ], [ -122.861410101999951, 49.207984858000039 ], [ -122.861411611000023, 49.207445142000061 ], [ -122.860999740999972, 49.207444647000102 ], [ -122.86100016899999, 49.207291746000045 ], [ -122.861052808999943, 49.207290790000059 ], [ -122.861806163999987, 49.207199825000039 ], [ -122.861822101999948, 49.207197899000079 ], [ -122.863669185999981, 49.206851696000058 ], [ -122.864114309999962, 49.206780965000078 ], [ -122.865514190999974, 49.206558490000084 ], [ -122.865713183999929, 49.206534315000056 ], [ -122.866216626000025, 49.206473146000093 ], [ -122.866292249999958, 49.206463966000079 ], [ -122.866729016, 49.206410905000077 ], [ -122.867419303999924, 49.20634990700011 ], [ -122.867337795999987, 49.20694847200005 ], [ -122.867481588999951, 49.207359004000104 ], [ -122.867471214999938, 49.2076758050001 ], [ -122.867447955000017, 49.208288075000077 ], [ -122.867444592999959, 49.208375990000093 ], [ -122.86913087799999, 49.2083798990001 ], [ -122.869119774999945, 49.209099672000043 ], [ -122.869095361999925, 49.209822761000083 ], [ -122.870853215999915, 49.209827298000036 ], [ -122.870845990999925, 49.210524496000048 ], [ -122.870843968999964, 49.210819260000072 ], [ -122.870841226999943, 49.211227096000115 ], [ -122.870815992999923, 49.211642600000054 ], [ -122.870829901999954, 49.211944811000102 ], [ -122.870852084999967, 49.212573396000089 ], [ -122.870839172999965, 49.212723501000063 ], [ -122.869078716999951, 49.212718311000074 ], [ -122.867398908, 49.212716309000122 ], [ -122.864595093999966, 49.212713160000085 ], [ -122.861929266999965, 49.212699534000073 ], [ -122.861934703999935, 49.211970560000061 ], [ -122.861940113999964, 49.211239414000048 ], [ -122.861913217, 49.210798890000028 ], [ -122.861899604999934, 49.210576037000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190200297", "BldgCostT": "115292822", "sL_LossRatio": "0.647130032671127", "sL_AssetLoss": "5047270", "sL_BldgLoss": "3266240", "sL_StrLoss": "1229640", "sL_NStrLoss": "2036600", "sL_ContLoss": "1781030", "geom_point": "0101000020E61000009FA83A1E92B65EC0E1BC209EFC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.859898547999975, 49.213481939000069 ], [ -122.859841032999952, 49.213474145000092 ], [ -122.857667384999971, 49.213469851000077 ], [ -122.856270700999929, 49.213467110000046 ], [ -122.856270708999915, 49.213466844000081 ], [ -122.856273791999982, 49.213311937000043 ], [ -122.85627577299999, 49.213213278000119 ], [ -122.8550289399999, 49.213244173000071 ], [ -122.854440871999927, 49.213256119000114 ], [ -122.852870635000031, 49.2132505430001 ], [ -122.850187920999957, 49.213226731000091 ], [ -122.848747483999944, 49.213210846000038 ], [ -122.847658737999922, 49.213181639000027 ], [ -122.84523741299995, 49.213047506000059 ], [ -122.845161265999963, 49.212733227000101 ], [ -122.845244523999938, 49.212664539000137 ], [ -122.845300159999951, 49.212578989000058 ], [ -122.845325174999957, 49.212483577000135 ], [ -122.845314606999921, 49.211972766000045 ], [ -122.845322219999929, 49.211835939000132 ], [ -122.8453609099999, 49.211718823000105 ], [ -122.845441157000025, 49.21160675200008 ], [ -122.845269185999939, 49.209598592000098 ], [ -122.84529519299997, 49.208044288000082 ], [ -122.84529120399999, 49.207700005000078 ], [ -122.845296180999938, 49.206938807000014 ], [ -122.845317198999979, 49.206164598000015 ], [ -122.846060234999953, 49.206170297000043 ], [ -122.846819107, 49.206176079000052 ], [ -122.848210811999976, 49.206194302000078 ], [ -122.8481707, 49.207331102000055 ], [ -122.848169013999922, 49.208083294000112 ], [ -122.850866991999979, 49.208105413000126 ], [ -122.850903105999976, 49.20767308900006 ], [ -122.850667210999916, 49.207307590000056 ], [ -122.850668892999948, 49.207079799000034 ], [ -122.852384200999936, 49.207081183000128 ], [ -122.852108998999967, 49.208246202000112 ], [ -122.852093117999956, 49.208946697000059 ], [ -122.852122411999957, 49.209769197000043 ], [ -122.853533051999975, 49.209781338000091 ], [ -122.855051676999963, 49.209794415000111 ], [ -122.85632090499999, 49.209805293000045 ], [ -122.858957611999926, 49.209760562000042 ], [ -122.860209937999926, 49.209811447000106 ], [ -122.860462424999952, 49.209815508000062 ], [ -122.861894422999981, 49.209784410000069 ], [ -122.861899604999934, 49.210576037000088 ], [ -122.861913217, 49.210798890000028 ], [ -122.861940113999964, 49.211239414000048 ], [ -122.861934703999935, 49.211970560000061 ], [ -122.861929266999965, 49.212699534000073 ], [ -122.861926412999964, 49.213151933000098 ], [ -122.861925744999922, 49.213259830000077 ], [ -122.861924937999973, 49.213291944000105 ], [ -122.861916115000014, 49.213645152 ], [ -122.861900272999904, 49.214281427000103 ], [ -122.861833418999979, 49.214319475000138 ], [ -122.861830502999965, 49.214444914000062 ], [ -122.860140814999966, 49.214437958000133 ], [ -122.860085221999938, 49.214415413000076 ], [ -122.86004415799999, 49.214377988000102 ], [ -122.860018908999947, 49.214321951000052 ], [ -122.860019543999954, 49.213582053000088 ], [ -122.859990611999962, 49.21353733200003 ], [ -122.859952164999982, 49.213505779000123 ], [ -122.85995198699996, 49.213505667000049 ], [ -122.859898547999975, 49.213481939000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136317416", "BldgCostT": "82991666", "sL_LossRatio": "0.700201808329758", "sL_AssetLoss": "1573275", "sL_BldgLoss": "1101610", "sL_StrLoss": "512290", "sL_NStrLoss": "589320", "sL_ContLoss": "471665", "geom_point": "0101000020E6100000DD7FF854A9B65EC06D2929A88F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852108998999967, 49.208246202000112 ], [ -122.852384200999936, 49.207081183000128 ], [ -122.850668892999948, 49.207079799000034 ], [ -122.850667210999916, 49.207307590000056 ], [ -122.850903105999976, 49.20767308900006 ], [ -122.850866991999979, 49.208105413000126 ], [ -122.848169013999922, 49.208083294000112 ], [ -122.8481707, 49.207331102000055 ], [ -122.848210811999976, 49.206194302000078 ], [ -122.851731995999927, 49.206216205000075 ], [ -122.85178367499995, 49.205352752000067 ], [ -122.851800972999953, 49.205056843000101 ], [ -122.852148835999955, 49.204823735000041 ], [ -122.853109125999978, 49.204180575000066 ], [ -122.853572574999987, 49.204484246000057 ], [ -122.853669682999922, 49.204547893000097 ], [ -122.853710650000011, 49.2045747270001 ], [ -122.85427193299995, 49.204942491000054 ], [ -122.854436178999919, 49.20505001500004 ], [ -122.856199386999947, 49.20620784600009 ], [ -122.856209273999966, 49.206214365000037 ], [ -122.856466606999973, 49.206385041000033 ], [ -122.856476479999955, 49.206391593000042 ], [ -122.856584310999949, 49.206462284000082 ], [ -122.856838755999917, 49.206572103000063 ], [ -122.85715088299996, 49.206706795000017 ], [ -122.85775008899999, 49.206918008000059 ], [ -122.85871999299998, 49.20714630300003 ], [ -122.85900097199999, 49.207185950000039 ], [ -122.858859804999923, 49.208434788000055 ], [ -122.858905383999925, 49.209133048000055 ], [ -122.858957611999926, 49.209760562000042 ], [ -122.85632090499999, 49.209805293000045 ], [ -122.855051676999963, 49.209794415000111 ], [ -122.853533051999975, 49.209781338000091 ], [ -122.852122411999957, 49.209769197000043 ], [ -122.852093117999956, 49.208946697000059 ], [ -122.852108998999967, 49.208246202000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137955917", "BldgCostT": "92806667", "sL_LossRatio": "0.748647599811108", "sL_AssetLoss": "2138790", "sL_BldgLoss": "1601200", "sL_StrLoss": "713030", "sL_NStrLoss": "888170", "sL_ContLoss": "537590", "geom_point": "0101000020E61000007F484B27CAB35EC0542F22FE1F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808296198999955, 49.158270914000092 ], [ -122.808305409999946, 49.157478202000057 ], [ -122.806918961999983, 49.157453446000083 ], [ -122.806775997999964, 49.157450891000053 ], [ -122.806541677999974, 49.157409707000042 ], [ -122.806344694999936, 49.15734350499999 ], [ -122.806293943999918, 49.157309869000059 ], [ -122.805440842999971, 49.156744974 ], [ -122.805289081999987, 49.156644504000013 ], [ -122.804902684999917, 49.156541986000079 ], [ -122.804162184999925, 49.156526302000081 ], [ -122.804182866999966, 49.155526762000079 ], [ -122.805320097999981, 49.155531280000062 ], [ -122.805429862999944, 49.155531709000059 ], [ -122.806019529999958, 49.155534034000027 ], [ -122.806215299999963, 49.155534788000104 ], [ -122.806948689999928, 49.155535005000083 ], [ -122.810922488999921, 49.155519389000112 ], [ -122.812426709999926, 49.155513502000105 ], [ -122.812423897999935, 49.15651450400005 ], [ -122.812436594999937, 49.157869189000081 ], [ -122.812431310999941, 49.159186409000064 ], [ -122.811369992999971, 49.159189195000081 ], [ -122.81084718399994, 49.159215109000108 ], [ -122.810415812999935, 49.159288810000078 ], [ -122.809569913999965, 49.159927781000086 ], [ -122.809284190999932, 49.160016705000039 ], [ -122.808901701999943, 49.160075593000059 ], [ -122.808230590999983, 49.16006650100006 ], [ -122.808251209000019, 49.159186805000076 ], [ -122.808296198999955, 49.158270914000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105629979", "BldgCostT": "70314858", "sL_LossRatio": "0.708846062290192", "sL_AssetLoss": "2058430", "sL_BldgLoss": "1459110", "sL_StrLoss": "581580", "sL_NStrLoss": "877530", "sL_ContLoss": "599320", "geom_point": "0101000020E610000081231EDCDFB35EC0DE79EAAAA3944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806956904999979, 49.161903001000034 ], [ -122.806954846999972, 49.16142654300004 ], [ -122.806952871999925, 49.160962997000048 ], [ -122.806939127999954, 49.160066989000079 ], [ -122.808230590999983, 49.16006650100006 ], [ -122.808901701999943, 49.160075593000059 ], [ -122.809284190999932, 49.160016705000039 ], [ -122.809569913999965, 49.159927781000086 ], [ -122.810415812999935, 49.159288810000078 ], [ -122.81084718399994, 49.159215109000108 ], [ -122.811369992999971, 49.159189195000081 ], [ -122.812431310999941, 49.159186409000064 ], [ -122.812440352999886, 49.160194099000122 ], [ -122.81244155399996, 49.16032902600007 ], [ -122.812442893, 49.160476991000067 ], [ -122.813720010999987, 49.160486006000021 ], [ -122.814210197999955, 49.160495099000102 ], [ -122.814527988999899, 49.160559401000093 ], [ -122.815323458999941, 49.16148981200012 ], [ -122.815330188999937, 49.161497713000045 ], [ -122.81532981399999, 49.161512588000107 ], [ -122.815319089999889, 49.161919093000051 ], [ -122.81361549899998, 49.161910087000109 ], [ -122.812421090999976, 49.161855004000124 ], [ -122.812387802, 49.162780199000046 ], [ -122.812386321999909, 49.162820700000047 ], [ -122.81238468699999, 49.162864801000083 ], [ -122.812370975999954, 49.162864846000048 ], [ -122.806962295999966, 49.162883513000082 ], [ -122.806960863999933, 49.162784294000033 ], [ -122.806956904999979, 49.161903001000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162323470", "BldgCostT": "110580413", "sL_LossRatio": "0.772191484243445", "sL_AssetLoss": "1496520", "sL_BldgLoss": "1155600", "sL_StrLoss": "500720", "sL_NStrLoss": "654880", "sL_ContLoss": "340920", "geom_point": "0101000020E610000063E3C116FBB35EC0E1BDF60EAF9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808765074999926, 49.250109761000033 ], [ -122.809607515999957, 49.248762951000053 ], [ -122.809878946999916, 49.248328941000061 ], [ -122.810061281999964, 49.248037397000068 ], [ -122.810324106999971, 49.247711001000106 ], [ -122.81080052499999, 49.247274605 ], [ -122.811391591999922, 49.24682899 ], [ -122.812804911999976, 49.245907603000077 ], [ -122.813572891999968, 49.245406896000063 ], [ -122.814788011999894, 49.244313104000092 ], [ -122.81506838899999, 49.244128497000119 ], [ -122.81533227099996, 49.244029338000125 ], [ -122.815346213999973, 49.244024102000068 ], [ -122.815540523999957, 49.243993809000088 ], [ -122.815544218999918, 49.243954334000072 ], [ -122.815641705999951, 49.242920199000025 ], [ -122.815714089999972, 49.242786299000045 ], [ -122.81575861099999, 49.242917293000069 ], [ -122.815691204999965, 49.243960385000051 ], [ -122.815691275999939, 49.243969437000032 ], [ -122.815693154999948, 49.244274443000151 ], [ -122.815702003999959, 49.245703988000038 ], [ -122.815546807999965, 49.245704006000082 ], [ -122.815227878999949, 49.245708103000069 ], [ -122.814938291999937, 49.245764407000138 ], [ -122.814677213999943, 49.245887288000112 ], [ -122.81450089799992, 49.246034398000127 ], [ -122.814369117999888, 49.246228164000108 ], [ -122.814363404999966, 49.246236601000078 ], [ -122.814371708999943, 49.247435988000099 ], [ -122.813870602999941, 49.24751221000011 ], [ -122.812617578999919, 49.248315703000053 ], [ -122.812366998999948, 49.249005604000104 ], [ -122.811149388999965, 49.249594006000052 ], [ -122.810869666999963, 49.249568388000043 ], [ -122.81055278799991, 49.249539401000035 ], [ -122.80975638699999, 49.250773507000126 ], [ -122.80849370599995, 49.251157794000065 ], [ -122.808482751999918, 49.250852043000108 ], [ -122.80848100299994, 49.250803399000119 ], [ -122.808582919999978, 49.250401004000032 ], [ -122.808765074999926, 49.250109761000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160109978", "BldgCostT": "100899857", "sL_LossRatio": "0.731272389382695", "sL_AssetLoss": "1635820", "sL_BldgLoss": "1196230", "sL_StrLoss": "565230", "sL_NStrLoss": "631000", "sL_ContLoss": "439590", "geom_point": "0101000020E610000022B4DCA1FAB35EC0F1233CA948A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809458879999951, 49.255800004000093 ], [ -122.808978920999962, 49.254489410000076 ], [ -122.808882844999971, 49.254357902000081 ], [ -122.808658700999985, 49.254051098000055 ], [ -122.808221192999937, 49.253781413000112 ], [ -122.80772118099999, 49.253641292000097 ], [ -122.807216805999985, 49.253603912000067 ], [ -122.80730160399996, 49.253210006000081 ], [ -122.807455010999945, 49.252937883000108 ], [ -122.808136685999926, 49.252254503000096 ], [ -122.808322478999955, 49.251909497000064 ], [ -122.808444886999965, 49.25150858900011 ], [ -122.80849370599995, 49.251157794000065 ], [ -122.80975638699999, 49.250773507000126 ], [ -122.81055278799991, 49.249539401000035 ], [ -122.810869666999963, 49.249568388000043 ], [ -122.811149388999965, 49.249594006000052 ], [ -122.812366998999948, 49.249005604000104 ], [ -122.812617578999919, 49.248315703000053 ], [ -122.813870602999941, 49.24751221000011 ], [ -122.814371708999943, 49.247435988000099 ], [ -122.814363404999966, 49.246236601000078 ], [ -122.814369117999888, 49.246228164000108 ], [ -122.81450089799992, 49.246034398000127 ], [ -122.814677213999943, 49.245887288000112 ], [ -122.814938291999937, 49.245764407000138 ], [ -122.815227878999949, 49.245708103000069 ], [ -122.815546807999965, 49.245704006000082 ], [ -122.815702003999959, 49.245703988000038 ], [ -122.815700984999964, 49.246166539000036 ], [ -122.815697582999931, 49.247669691000063 ], [ -122.815724788999958, 49.248699292000069 ], [ -122.815734601, 49.24907181100005 ], [ -122.815763499999974, 49.251553807000086 ], [ -122.815575403999958, 49.251551799000026 ], [ -122.815575740999961, 49.251589995000046 ], [ -122.815581592999948, 49.252247272000126 ], [ -122.81559376, 49.253615140000072 ], [ -122.815612909, 49.255768291000024 ], [ -122.81393699799996, 49.255766615000034 ], [ -122.813489108999974, 49.255827198000105 ], [ -122.813054783, 49.255949499000067 ], [ -122.812650529999942, 49.256135800000081 ], [ -122.811619675999935, 49.255682793000076 ], [ -122.811336883999971, 49.255599691000043 ], [ -122.810973196999896, 49.255554691000093 ], [ -122.810604118999933, 49.255567205000041 ], [ -122.810290709999919, 49.255630904000029 ], [ -122.81030288599996, 49.255852899000026 ], [ -122.810442904999931, 49.256113807000069 ], [ -122.810595384999942, 49.256253398000126 ], [ -122.810767583999933, 49.25634770400012 ], [ -122.811119889999958, 49.25645808900007 ], [ -122.81206228299996, 49.256758109000039 ], [ -122.81184820799993, 49.257015700000061 ], [ -122.81168629699998, 49.257131593000111 ], [ -122.811284884999964, 49.257255810000046 ], [ -122.811060901999923, 49.257276187000031 ], [ -122.810667, 49.257250191000054 ], [ -122.81038750799992, 49.257179701000055 ], [ -122.81014162, 49.25705888800011 ], [ -122.809988185999927, 49.256953488000065 ], [ -122.809839609, 49.256796892000061 ], [ -122.809458879999951, 49.255800004000093 ] ], [ [ -122.815105075999938, 49.254875278000043 ], [ -122.815125232, 49.249478173000028 ], [ -122.814713013999935, 49.249477512000098 ], [ -122.814714024999958, 49.249207657000056 ], [ -122.814301807000035, 49.249206996000133 ], [ -122.814302819999952, 49.248937140000045 ], [ -122.813087286, 49.248935180000032 ], [ -122.813065967999961, 49.248991156000038 ], [ -122.813064141, 49.249474856000134 ], [ -122.812672530999933, 49.249474222000082 ], [ -122.812651880999979, 49.249484897000045 ], [ -122.812650900999955, 49.249744044000167 ], [ -122.812152112999954, 49.249743235 ], [ -122.812126134999971, 49.249756662000074 ], [ -122.811826181999947, 49.24981520200005 ], [ -122.811825432999967, 49.250012559000012 ], [ -122.811413208999952, 49.250011887000056 ], [ -122.81141218199997, 49.250281743000087 ], [ -122.81099995699995, 49.250281069 ], [ -122.810998926999929, 49.250550924000052 ], [ -122.810586698999941, 49.25055025000006 ], [ -122.810581537999937, 49.251899525000098 ], [ -122.810169296999973, 49.251898849000071 ], [ -122.810168262999966, 49.252168705000038 ], [ -122.809409627999941, 49.252167455000098 ], [ -122.809343703999971, 49.252187628000073 ], [ -122.809338584999949, 49.253516622000085 ], [ -122.810163089999961, 49.253517979000044 ], [ -122.81016205399996, 49.25378783400005 ], [ -122.810986562999958, 49.253789186000112 ], [ -122.810985533999883, 49.25405904100014 ], [ -122.811810045999934, 49.254060387000095 ], [ -122.811809021999977, 49.254330242000023 ], [ -122.813045797999948, 49.254332251000122 ], [ -122.813044778999966, 49.254602106000085 ], [ -122.81428156299998, 49.254604101000027 ], [ -122.814280549999978, 49.254873956000019 ], [ -122.815105075999938, 49.254875278000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125044249", "BldgCostT": "83344999", "sL_LossRatio": "0.745687826716875", "sL_AssetLoss": "1532290", "sL_BldgLoss": "1142610", "sL_StrLoss": "530370", "sL_NStrLoss": "612240", "sL_ContLoss": "389680", "geom_point": "0101000020E61000006FEB34F3E0B35EC00EB202CFFFA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807887311999963, 49.257914808000045 ], [ -122.807561402999966, 49.257420504000052 ], [ -122.807491393999939, 49.257100396000041 ], [ -122.807692608999915, 49.256352306000103 ], [ -122.807948097999912, 49.256133690000084 ], [ -122.808238109999962, 49.256011600000171 ], [ -122.809458879999951, 49.255800004000093 ], [ -122.809839609, 49.256796892000061 ], [ -122.809988185999927, 49.256953488000065 ], [ -122.81014162, 49.25705888800011 ], [ -122.81038750799992, 49.257179701000055 ], [ -122.810667, 49.257250191000054 ], [ -122.811060901999923, 49.257276187000031 ], [ -122.811284884999964, 49.257255810000046 ], [ -122.81168629699998, 49.257131593000111 ], [ -122.81184820799993, 49.257015700000061 ], [ -122.81206228299996, 49.256758109000039 ], [ -122.811119889999958, 49.25645808900007 ], [ -122.810767583999933, 49.25634770400012 ], [ -122.810595384999942, 49.256253398000126 ], [ -122.810442904999931, 49.256113807000069 ], [ -122.81030288599996, 49.255852899000026 ], [ -122.810290709999919, 49.255630904000029 ], [ -122.810604118999933, 49.255567205000041 ], [ -122.810973196999896, 49.255554691000093 ], [ -122.811336883999971, 49.255599691000043 ], [ -122.811619675999935, 49.255682793000076 ], [ -122.812650529999942, 49.256135800000081 ], [ -122.813054783, 49.255949499000067 ], [ -122.813489108999974, 49.255827198000105 ], [ -122.81393699799996, 49.255766615000034 ], [ -122.81393009599999, 49.256207792000104 ], [ -122.81377798699999, 49.256221299000089 ], [ -122.813431018999921, 49.256312890000132 ], [ -122.813112494999984, 49.256509803000036 ], [ -122.812585393999953, 49.257183415000064 ], [ -122.812486990999901, 49.257415682000037 ], [ -122.812463693999973, 49.257614995000047 ], [ -122.812505000999948, 49.257853994000051 ], [ -122.81267241099998, 49.258116595000033 ], [ -122.813661199999942, 49.25908278900009 ], [ -122.813845296999943, 49.259142287000053 ], [ -122.81399890699997, 49.259146795000021 ], [ -122.815215374999966, 49.258997204000089 ], [ -122.815430705999944, 49.259663895000067 ], [ -122.814080410999978, 49.259860104000062 ], [ -122.813770079999955, 49.259877008000053 ], [ -122.813302913999962, 49.259777612000079 ], [ -122.81306888899995, 49.259685098000091 ], [ -122.812835305999897, 49.259544894000037 ], [ -122.81140901, 49.258208107000023 ], [ -122.81109901499994, 49.258061107000017 ], [ -122.810751707999955, 49.257977 ], [ -122.810241708999939, 49.258001607000054 ], [ -122.80990540599997, 49.258137600000083 ], [ -122.809645186999916, 49.258345205000154 ], [ -122.809521819999986, 49.258520798000113 ], [ -122.809482110999909, 49.258698005000056 ], [ -122.809505190999957, 49.258882510000035 ], [ -122.809613499999955, 49.259084813000101 ], [ -122.809837606999935, 49.259522992000029 ], [ -122.80981591499993, 49.259738502000111 ], [ -122.8097277899999, 49.259880104000089 ], [ -122.80951560699999, 49.260068402000044 ], [ -122.80921479499996, 49.26018739100008 ], [ -122.808860095999989, 49.260211199000025 ], [ -122.808507008999939, 49.260151191000034 ], [ -122.808158199000019, 49.259968798000031 ], [ -122.807973910000015, 49.259712007000104 ], [ -122.807995096999946, 49.258265713000078 ], [ -122.807887311999963, 49.257914808000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76773333", "BldgCostT": "52683333", "sL_LossRatio": "0.774350475145763", "sL_AssetLoss": "838690", "sL_BldgLoss": "649440", "sL_StrLoss": "315930", "sL_NStrLoss": "333510", "sL_ContLoss": "189250", "geom_point": "0101000020E610000011A7B47A1EB45EC092565B35F8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.815430705999944, 49.259663895000067 ], [ -122.815215374999966, 49.258997204000089 ], [ -122.81399890699997, 49.259146795000021 ], [ -122.813845296999943, 49.259142287000053 ], [ -122.813661199999942, 49.25908278900009 ], [ -122.81267241099998, 49.258116595000033 ], [ -122.812505000999948, 49.257853994000051 ], [ -122.812463693999973, 49.257614995000047 ], [ -122.812486990999901, 49.257415682000037 ], [ -122.812585393999953, 49.257183415000064 ], [ -122.813112494999984, 49.256509803000036 ], [ -122.813431018999921, 49.256312890000132 ], [ -122.81377798699999, 49.256221299000089 ], [ -122.81393009599999, 49.256207792000104 ], [ -122.81393699799996, 49.255766615000034 ], [ -122.815612909, 49.255768291000024 ], [ -122.815623730999945, 49.256341205000098 ], [ -122.815635474999951, 49.256961892000021 ], [ -122.815657135999984, 49.258107520000081 ], [ -122.815747042999973, 49.258607966000071 ], [ -122.815769452999973, 49.258732431000048 ], [ -122.815825682999943, 49.258896157000088 ], [ -122.815974207999915, 49.259328335000113 ], [ -122.81605343199999, 49.259558839000121 ], [ -122.815636184999931, 49.259629234000037 ], [ -122.815430705999944, 49.259663895000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135092750", "BldgCostT": "87800000", "sL_LossRatio": "0.748991563831166", "sL_AssetLoss": "1380603", "sL_BldgLoss": "1034060", "sL_StrLoss": "493480", "sL_NStrLoss": "540580", "sL_ContLoss": "346543", "geom_point": "0101000020E610000003055220BBB35EC00F9B125A20A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80121090099999, 49.260416077000059 ], [ -122.801521892999915, 49.260070515000038 ], [ -122.801782555999978, 49.259835800000104 ], [ -122.802233894999944, 49.259429388000086 ], [ -122.802504022999969, 49.259720149000032 ], [ -122.802731395999956, 49.259964910000029 ], [ -122.80281570599999, 49.260057502000102 ], [ -122.803094078999962, 49.260184603000091 ], [ -122.803453486999956, 49.260213295000035 ], [ -122.803785094999967, 49.260146505000115 ], [ -122.805043332999986, 49.259453145000045 ], [ -122.805294597999989, 49.259314696000047 ], [ -122.804518814999938, 49.258650192000076 ], [ -122.804374494999962, 49.258410814000143 ], [ -122.804342190999975, 49.257923400000088 ], [ -122.80487071200001, 49.257031800000092 ], [ -122.805416, 49.256255111 ], [ -122.806305171999938, 49.255412095000032 ], [ -122.806466891999989, 49.255317806000043 ], [ -122.806771889999965, 49.255179012000056 ], [ -122.807210504999958, 49.255132610000018 ], [ -122.807623597999935, 49.255259195000043 ], [ -122.807958108999941, 49.255488903000071 ], [ -122.808088830999978, 49.255845097000112 ], [ -122.808238109999962, 49.256011600000171 ], [ -122.807948097999912, 49.256133690000084 ], [ -122.807692608999915, 49.256352306000103 ], [ -122.807491393999939, 49.257100396000041 ], [ -122.807561402999966, 49.257420504000052 ], [ -122.807887311999963, 49.257914808000045 ], [ -122.807995096999946, 49.258265713000078 ], [ -122.807973910000015, 49.259712007000104 ], [ -122.808158199000019, 49.259968798000031 ], [ -122.808507008999939, 49.260151191000034 ], [ -122.808860095999989, 49.260211199000025 ], [ -122.80921479499996, 49.26018739100008 ], [ -122.80951560699999, 49.260068402000044 ], [ -122.8097277899999, 49.259880104000089 ], [ -122.80981591499993, 49.259738502000111 ], [ -122.809837606999935, 49.259522992000029 ], [ -122.809613499999955, 49.259084813000101 ], [ -122.809505190999957, 49.258882510000035 ], [ -122.809482110999909, 49.258698005000056 ], [ -122.809521819999986, 49.258520798000113 ], [ -122.809645186999916, 49.258345205000154 ], [ -122.80990540599997, 49.258137600000083 ], [ -122.810241708999939, 49.258001607000054 ], [ -122.810751707999955, 49.257977 ], [ -122.81109901499994, 49.258061107000017 ], [ -122.81140901, 49.258208107000023 ], [ -122.812835305999897, 49.259544894000037 ], [ -122.81306888899995, 49.259685098000091 ], [ -122.813302913999962, 49.259777612000079 ], [ -122.813770079999955, 49.259877008000053 ], [ -122.814080410999978, 49.259860104000062 ], [ -122.815430705999944, 49.259663895000067 ], [ -122.815636184999931, 49.259629234000037 ], [ -122.81605343199999, 49.259558839000121 ], [ -122.816440794999934, 49.26032071500002 ], [ -122.816735391999941, 49.260746400000102 ], [ -122.815176503999936, 49.260465860000124 ], [ -122.81513263199993, 49.260465312000079 ], [ -122.81334292299999, 49.26049888500004 ], [ -122.807767676999944, 49.260603367000051 ], [ -122.80507178000002, 49.260217062000088 ], [ -122.8048498199999, 49.26023747400005 ], [ -122.802105070999971, 49.260489996000075 ], [ -122.801134135, 49.260501400000081 ], [ -122.80121090099999, 49.260416077000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113669917", "BldgCostT": "75711667", "sL_LossRatio": "0.76450172882033", "sL_AssetLoss": "1156569", "sL_BldgLoss": "884199", "sL_StrLoss": "428109", "sL_NStrLoss": "456090", "sL_ContLoss": "272370", "geom_point": "0101000020E61000005403A468ABB35EC0F74154E9C0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807040184999963, 49.263838230000069 ], [ -122.807035594999945, 49.263722088000108 ], [ -122.805407101999933, 49.263726201000104 ], [ -122.805239401999941, 49.263806810000091 ], [ -122.805172313999918, 49.263923697000088 ], [ -122.805148184999979, 49.264632893000027 ], [ -122.805100307999965, 49.264789182000079 ], [ -122.804513215999975, 49.265233009000042 ], [ -122.804018083999935, 49.264940007000064 ], [ -122.803859903000017, 49.264743404000065 ], [ -122.803760506999978, 49.264472004000076 ], [ -122.80364461299996, 49.264358599000104 ], [ -122.803395291999891, 49.264287294000013 ], [ -122.803176217999962, 49.264236705 ], [ -122.802997094999952, 49.264103407000071 ], [ -122.802647317999956, 49.263178606000061 ], [ -122.802622570999944, 49.263144727000039 ], [ -122.802583135999939, 49.263090799000075 ], [ -122.802488779999948, 49.262961738000058 ], [ -122.80233091099997, 49.262745804000147 ], [ -122.80317880299998, 49.261169082000059 ], [ -122.804232684999988, 49.262104895000064 ], [ -122.804571883999955, 49.262725700000033 ], [ -122.805317614999964, 49.261973906000023 ], [ -122.805959503999929, 49.261571284000098 ], [ -122.806286087999965, 49.261417008000059 ], [ -122.806723792999975, 49.261346186000033 ], [ -122.807213580999985, 49.261376900000123 ], [ -122.809325819999913, 49.262029495000043 ], [ -122.809722288, 49.262258291000066 ], [ -122.810102617999988, 49.262561501000157 ], [ -122.810606202999949, 49.262951102000059 ], [ -122.810808912999988, 49.263174326000083 ], [ -122.81097281299995, 49.263354806000116 ], [ -122.811135298999986, 49.263528911000115 ], [ -122.811362213999971, 49.263686096000107 ], [ -122.811727013999985, 49.263816703000053 ], [ -122.811402706999971, 49.26423590900005 ], [ -122.810606629999967, 49.26658273900005 ], [ -122.810498646999989, 49.266654354000096 ], [ -122.81021253899999, 49.266777351000016 ], [ -122.809293184999945, 49.266239401000057 ], [ -122.808192599999984, 49.2660184900001 ], [ -122.80693599199995, 49.265908410000037 ], [ -122.807065090999913, 49.264471587000024 ], [ -122.807040184999963, 49.263838230000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90272052", "BldgCostT": "60498745", "sL_LossRatio": "0.762831895164221", "sL_AssetLoss": "963030", "sL_BldgLoss": "734630", "sL_StrLoss": "344500", "sL_NStrLoss": "390130", "sL_ContLoss": "228400", "geom_point": "0101000020E61000007E9718EC82B35EC06891ED7C3FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80264170599996, 49.267246091000111 ], [ -122.802700810999951, 49.265551394000084 ], [ -122.802821897999976, 49.265230697000014 ], [ -122.803395291999891, 49.264287294000013 ], [ -122.80364461299996, 49.264358599000104 ], [ -122.803760506999978, 49.264472004000076 ], [ -122.803859903000017, 49.264743404000065 ], [ -122.804018083999935, 49.264940007000064 ], [ -122.804513215999975, 49.265233009000042 ], [ -122.805100307999965, 49.264789182000079 ], [ -122.805148184999979, 49.264632893000027 ], [ -122.805172313999918, 49.263923697000088 ], [ -122.805239401999941, 49.263806810000091 ], [ -122.805407101999933, 49.263726201000104 ], [ -122.807035594999945, 49.263722088000108 ], [ -122.807040184999963, 49.263838230000069 ], [ -122.807065090999913, 49.264471587000024 ], [ -122.80693599199995, 49.265908410000037 ], [ -122.80571648599998, 49.265798393000111 ], [ -122.805379100999957, 49.267524415000032 ], [ -122.805092612999957, 49.267733107000033 ], [ -122.806938404999926, 49.269166106000078 ], [ -122.80716659699999, 49.269344890000106 ], [ -122.80734388099998, 49.269564593000034 ], [ -122.807324696999927, 49.270840611000011 ], [ -122.80658497599994, 49.270837666 ], [ -122.805919299999928, 49.270835016000099 ], [ -122.804545805999965, 49.270843903000127 ], [ -122.803164190999908, 49.270830009000122 ], [ -122.803215489999957, 49.268092798000019 ], [ -122.802930517999968, 49.267801502000033 ], [ -122.802701808999942, 49.267470406000029 ], [ -122.80264170599996, 49.267246091000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69816250", "BldgCostT": "46675000", "sL_LossRatio": "0.766810955556422", "sL_AssetLoss": "769290", "sL_BldgLoss": "589900", "sL_StrLoss": "276030", "sL_NStrLoss": "313870", "sL_ContLoss": "179390", "geom_point": "0101000020E6100000D3895F0CC0B35EC097139B2C41A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806938404999926, 49.269166106000078 ], [ -122.805092612999957, 49.267733107000033 ], [ -122.805379100999957, 49.267524415000032 ], [ -122.80571648599998, 49.265798393000111 ], [ -122.80693599199995, 49.265908410000037 ], [ -122.808192599999984, 49.2660184900001 ], [ -122.809293184999945, 49.266239401000057 ], [ -122.81021253899999, 49.266777351000016 ], [ -122.810481386999939, 49.266959511000067 ], [ -122.81051979099999, 49.266985521 ], [ -122.810589933999964, 49.267064170000054 ], [ -122.81065331899994, 49.267241717000019 ], [ -122.810666740999963, 49.267645728000041 ], [ -122.810742285999979, 49.267806526000079 ], [ -122.81090274, 49.267931073000064 ], [ -122.811437961999928, 49.268181134000024 ], [ -122.811739931999981, 49.268226094000063 ], [ -122.812002132999936, 49.268269865000072 ], [ -122.813798881999944, 49.26827970100004 ], [ -122.813801683999898, 49.268618507000014 ], [ -122.813984708999911, 49.268875292000125 ], [ -122.813373483999968, 49.269050900000103 ], [ -122.812143883000019, 49.269046099000086 ], [ -122.811666989999978, 49.26904649300009 ], [ -122.811011815999947, 49.2689235060001 ], [ -122.81009270599999, 49.26849990300007 ], [ -122.809580006999937, 49.268482107000068 ], [ -122.809287900999976, 49.269012188000019 ], [ -122.807948883999984, 49.26850139200009 ], [ -122.80771671799998, 49.268699905000126 ], [ -122.806938404999926, 49.269166106000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98679666", "BldgCostT": "65106666", "sL_LossRatio": "0.762712189876335", "sL_AssetLoss": "1041520", "sL_BldgLoss": "794380", "sL_StrLoss": "376980", "sL_NStrLoss": "417400", "sL_ContLoss": "247140", "geom_point": "0101000020E610000039577B75E1B35EC05F1DF8FF8EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808670401999947, 49.272115501000037 ], [ -122.808688483999958, 49.270853895000108 ], [ -122.807973464999989, 49.270846922000025 ], [ -122.807324696999927, 49.270840611000011 ], [ -122.80734388099998, 49.269564593000034 ], [ -122.80716659699999, 49.269344890000106 ], [ -122.806938404999926, 49.269166106000078 ], [ -122.80771671799998, 49.268699905000126 ], [ -122.807948883999984, 49.26850139200009 ], [ -122.809287900999976, 49.269012188000019 ], [ -122.809580006999937, 49.268482107000068 ], [ -122.81009270599999, 49.26849990300007 ], [ -122.811011815999947, 49.2689235060001 ], [ -122.811666989999978, 49.26904649300009 ], [ -122.812143883000019, 49.269046099000086 ], [ -122.813373483999968, 49.269050900000103 ], [ -122.813984708999911, 49.268875292000125 ], [ -122.813990568999955, 49.26888347500001 ], [ -122.81449791699994, 49.269586792000041 ], [ -122.814623484999984, 49.2698788020001 ], [ -122.814664608999948, 49.270420599000026 ], [ -122.814638206999945, 49.270844987 ], [ -122.813261105999942, 49.270845791000049 ], [ -122.81208728899999, 49.270869693000037 ], [ -122.810954088999935, 49.270860498000047 ], [ -122.809810595999949, 49.270863696000021 ], [ -122.809807312999936, 49.271549983000114 ], [ -122.809939801999946, 49.271941303000062 ], [ -122.808670401999947, 49.272115501000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94484334", "BldgCostT": "64688334", "sL_LossRatio": "0.763031671016435", "sL_AssetLoss": "1134160", "sL_BldgLoss": "865400", "sL_StrLoss": "402500", "sL_NStrLoss": "462900", "sL_ContLoss": "268760", "geom_point": "0101000020E610000000C5C892B9B35EC01D35B26DC9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806407969999952, 49.272714864000065 ], [ -122.805890096999974, 49.272654892000048 ], [ -122.805776215999927, 49.27271279900004 ], [ -122.805177995999941, 49.272718502000025 ], [ -122.804733501999976, 49.27274679500006 ], [ -122.804583302999973, 49.272785673000051 ], [ -122.804127610999899, 49.272903597000017 ], [ -122.80402559299992, 49.272808711000039 ], [ -122.804005226999934, 49.272793852000106 ], [ -122.803875427999941, 49.272699357000128 ], [ -122.803536644999937, 49.272452758000021 ], [ -122.803116082999964, 49.272146599000095 ], [ -122.801660548999934, 49.271000973000035 ], [ -122.80154138599994, 49.270907191000056 ], [ -122.801816903999978, 49.27081990100006 ], [ -122.801874393999967, 49.270801699000131 ], [ -122.803164190999908, 49.270830009000122 ], [ -122.804545805999965, 49.270843903000127 ], [ -122.805919299999928, 49.270835016000099 ], [ -122.80658497599994, 49.270837666 ], [ -122.807324696999927, 49.270840611000011 ], [ -122.807973464999989, 49.270846922000025 ], [ -122.808688483999958, 49.270853895000108 ], [ -122.808670401999947, 49.272115501000037 ], [ -122.809939801999946, 49.271941303000062 ], [ -122.809807312999936, 49.271549983000114 ], [ -122.809810595999949, 49.270863696000021 ], [ -122.810954088999935, 49.270860498000047 ], [ -122.81208728899999, 49.270869693000037 ], [ -122.813261105999942, 49.270845791000049 ], [ -122.814638206999945, 49.270844987 ], [ -122.814561082999973, 49.27148779200008 ], [ -122.814331223999929, 49.271773800000084 ], [ -122.814310709999944, 49.271793032000076 ], [ -122.814143107999925, 49.271950193000073 ], [ -122.813916882999976, 49.272102100000062 ], [ -122.81365658, 49.272230395000108 ], [ -122.813301984999967, 49.272351496000084 ], [ -122.811770392999975, 49.272581015000128 ], [ -122.808642518999974, 49.273058804000129 ], [ -122.808372195999979, 49.273052589000045 ], [ -122.807995895999937, 49.273009094000017 ], [ -122.806674083999923, 49.272745696000094 ], [ -122.806407969999952, 49.272714864000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189720333", "BldgCostT": "122088333", "sL_LossRatio": "0.707260376630656", "sL_AssetLoss": "2986374", "sL_BldgLoss": "2112144", "sL_StrLoss": "920704", "sL_NStrLoss": "1191440", "sL_ContLoss": "874230", "geom_point": "0101000020E61000004240F82FD4B35EC0348E9AA721A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.805514105, 49.276156902000068 ], [ -122.804459654999931, 49.275947387000052 ], [ -122.804011410999962, 49.275833426000084 ], [ -122.803821438999989, 49.275785140000082 ], [ -122.802725208999959, 49.275419565000071 ], [ -122.802024568, 49.275083418000087 ], [ -122.80171320699999, 49.274938157000051 ], [ -122.801746510999976, 49.274866854000059 ], [ -122.801822726999973, 49.274703674000143 ], [ -122.80187080899999, 49.274600700000057 ], [ -122.802081728999909, 49.274292855000091 ], [ -122.80213509, 49.274214904000083 ], [ -122.802364481999987, 49.273978399000029 ], [ -122.80265590599997, 49.273737507000071 ], [ -122.803428900999961, 49.273270309000047 ], [ -122.804127610999899, 49.272903597000017 ], [ -122.804583302999973, 49.272785673000051 ], [ -122.804733501999976, 49.27274679500006 ], [ -122.805177995999941, 49.272718502000025 ], [ -122.805776215999927, 49.27271279900004 ], [ -122.805890096999974, 49.272654892000048 ], [ -122.806407969999952, 49.272714864000065 ], [ -122.806674083999923, 49.272745696000094 ], [ -122.807995895999937, 49.273009094000017 ], [ -122.808372195999979, 49.273052589000045 ], [ -122.808642518999974, 49.273058804000129 ], [ -122.811770392999975, 49.272581015000128 ], [ -122.813301984999967, 49.272351496000084 ], [ -122.81365658, 49.272230395000108 ], [ -122.813916882999976, 49.272102100000062 ], [ -122.814143107999925, 49.271950193000073 ], [ -122.814310709999944, 49.271793032000076 ], [ -122.814331223999929, 49.271773800000084 ], [ -122.814561082999973, 49.27148779200008 ], [ -122.814638206999945, 49.270844987 ], [ -122.81556472799997, 49.270849049000041 ], [ -122.815573874999956, 49.270943519000113 ], [ -122.815595287999969, 49.271337297000152 ], [ -122.815497349999987, 49.271337140000135 ], [ -122.8154542, 49.271810655000102 ], [ -122.815452946999983, 49.272146638000031 ], [ -122.815314888999964, 49.272146417000073 ], [ -122.815188081999963, 49.272416071000144 ], [ -122.815451942, 49.272416492000048 ], [ -122.815448921, 49.273226055000094 ], [ -122.815698026999911, 49.273226452000067 ], [ -122.815713371999934, 49.273508610000064 ], [ -122.815692775999963, 49.274052756000046 ], [ -122.816140526999916, 49.274672405000047 ], [ -122.816218132999964, 49.275349390000024 ], [ -122.816304593999945, 49.275932887000053 ], [ -122.816354328999964, 49.276466284000072 ], [ -122.815731461999974, 49.27645461200003 ], [ -122.815703588999924, 49.27645247700017 ], [ -122.814749169, 49.276425063000048 ], [ -122.812762714, 49.276453836 ], [ -122.808716579999924, 49.276579883000096 ], [ -122.808358480999956, 49.276586402000113 ], [ -122.807345572999935, 49.276450568000023 ], [ -122.805514105, 49.276156902000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49864750", "BldgCostT": "30760000", "sL_LossRatio": "0.726446088301999", "sL_AssetLoss": "471790", "sL_BldgLoss": "342730", "sL_StrLoss": "155680", "sL_NStrLoss": "187050", "sL_ContLoss": "129060", "geom_point": "0101000020E6100000714B50683EB35EC06AAB71BAD5A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.798759920999942, 49.273425949000092 ], [ -122.798762986999989, 49.273340878000042 ], [ -122.798771196999937, 49.27311238900004 ], [ -122.798658017999912, 49.273060401000038 ], [ -122.798662943999929, 49.272576215000115 ], [ -122.798668927999955, 49.271991595000074 ], [ -122.798670765999987, 49.271811679000045 ], [ -122.798705784, 49.26838609600005 ], [ -122.799193292999959, 49.268688894000071 ], [ -122.799285985, 49.268839394000096 ], [ -122.799324325999947, 49.268940392000069 ], [ -122.799404610999957, 49.269151908 ], [ -122.799837506999921, 49.269610702000143 ], [ -122.799989722999896, 49.269726531000089 ], [ -122.801413901999979, 49.2708102080001 ], [ -122.80154138599994, 49.270907191000056 ], [ -122.801660548999934, 49.271000973000035 ], [ -122.803116082999964, 49.272146599000095 ], [ -122.803536644999937, 49.272452758000021 ], [ -122.803875427999941, 49.272699357000128 ], [ -122.804005226999934, 49.272793852000106 ], [ -122.80402559299992, 49.272808711000039 ], [ -122.804127610999899, 49.272903597000017 ], [ -122.803428900999961, 49.273270309000047 ], [ -122.80265590599997, 49.273737507000071 ], [ -122.802364481999987, 49.273978399000029 ], [ -122.80213509, 49.274214904000083 ], [ -122.802081728999909, 49.274292855000091 ], [ -122.80187080899999, 49.274600700000057 ], [ -122.801822726999973, 49.274703674000143 ], [ -122.801746510999976, 49.274866854000059 ], [ -122.80171320699999, 49.274938157000051 ], [ -122.801584951999956, 49.274881173000047 ], [ -122.800968831999953, 49.274607450000076 ], [ -122.799116261000023, 49.273612553000106 ], [ -122.798759920999942, 49.273425949000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123386916", "BldgCostT": "78471666", "sL_LossRatio": "0.721911911567203", "sL_AssetLoss": "1451950", "sL_BldgLoss": "1048180", "sL_StrLoss": "478510", "sL_NStrLoss": "569670", "sL_ContLoss": "403770", "geom_point": "0101000020E6100000FC9B7196E9B25EC01F6FD14D8BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.797221155999978, 49.268087777000112 ], [ -122.797331476999943, 49.26808859300013 ], [ -122.79758390899994, 49.268109217000095 ], [ -122.797921897999942, 49.268136810000073 ], [ -122.798128495999919, 49.268202495000054 ], [ -122.798583827999948, 49.268347331000058 ], [ -122.798705784, 49.26838609600005 ], [ -122.798670765999987, 49.271811679000045 ], [ -122.798668927999955, 49.271991595000074 ], [ -122.798662943999929, 49.272576215000115 ], [ -122.798658017999912, 49.273060401000038 ], [ -122.798551596999971, 49.273107685000042 ], [ -122.79855188499999, 49.273215944000114 ], [ -122.798551915999937, 49.273224952000071 ], [ -122.798552158999911, 49.273312253000036 ], [ -122.798025558999882, 49.273022369000103 ], [ -122.797333381999948, 49.272632296000076 ], [ -122.796953000999977, 49.272450634000045 ], [ -122.796044072999962, 49.27190657300013 ], [ -122.795161842999903, 49.271416604000088 ], [ -122.794737060999978, 49.271194302000055 ], [ -122.793309679999965, 49.270452310000081 ], [ -122.790604234999961, 49.269272450000138 ], [ -122.790604812999945, 49.269251481000033 ], [ -122.79063819799994, 49.26804470800009 ], [ -122.79191280400002, 49.268053812000055 ], [ -122.792901810999979, 49.268059697000055 ], [ -122.793242502999931, 49.268060888000079 ], [ -122.79403205899996, 49.268066868000048 ], [ -122.794790402999951, 49.268072612000012 ], [ -122.79623960399999, 49.268080491000013 ], [ -122.797221155999978, 49.268087777000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89515166", "BldgCostT": "58556666", "sL_LossRatio": "0.722025775721153", "sL_AssetLoss": "1030815", "sL_BldgLoss": "744275", "sL_StrLoss": "346785", "sL_NStrLoss": "397490", "sL_ContLoss": "286540", "geom_point": "0101000020E6100000D185817C03B35EC0E1AF6E6102A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79758390899994, 49.268109217000095 ], [ -122.797331476999943, 49.26808859300013 ], [ -122.797221155999978, 49.268087777000112 ], [ -122.79623960399999, 49.268080491000013 ], [ -122.794790402999951, 49.268072612000012 ], [ -122.794802891999922, 49.267533300000075 ], [ -122.794818789999951, 49.266866191000098 ], [ -122.794817000999927, 49.266136407000012 ], [ -122.794820693999952, 49.266004116000033 ], [ -122.794831714999958, 49.265787729000103 ], [ -122.794851498999918, 49.265399600000102 ], [ -122.794868596999947, 49.264793804000064 ], [ -122.794876703999961, 49.263940906000137 ], [ -122.795674090999952, 49.263476313000055 ], [ -122.795897955, 49.263213753000095 ], [ -122.796012011999935, 49.263079991000104 ], [ -122.79751655799997, 49.263090170000112 ], [ -122.797654027999954, 49.263091100000075 ], [ -122.797736484999959, 49.263091661000075 ], [ -122.797763963999941, 49.263091841000055 ], [ -122.797778310999945, 49.263091939000063 ], [ -122.79805430199994, 49.26309378300008 ], [ -122.798247000999979, 49.263088695000071 ], [ -122.798566876, 49.263032392000113 ], [ -122.798889699999933, 49.262933907000068 ], [ -122.799170298999968, 49.263108891000115 ], [ -122.799172041999967, 49.263203322000081 ], [ -122.799175747999968, 49.263401704000081 ], [ -122.799197212999943, 49.264551086000097 ], [ -122.799156384999947, 49.265272917000111 ], [ -122.799134899999956, 49.265652893000023 ], [ -122.799105585999939, 49.267271898000104 ], [ -122.799092413999972, 49.2678020990001 ], [ -122.79909799699999, 49.267821169000037 ], [ -122.799175894999962, 49.26808569500006 ], [ -122.799291485999944, 49.26820258500004 ], [ -122.799520002999927, 49.268376111000038 ], [ -122.79952641899996, 49.268502409000043 ], [ -122.799396788999942, 49.268628299000071 ], [ -122.799193292999959, 49.268688894000071 ], [ -122.798705784, 49.26838609600005 ], [ -122.798583827999948, 49.268347331000058 ], [ -122.798128495999919, 49.268202495000054 ], [ -122.797921897999942, 49.268136810000073 ], [ -122.79758390899994, 49.268109217000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263249000", "BldgCostT": "174860000", "sL_LossRatio": "0.708782085801472", "sL_AssetLoss": "4902480", "sL_BldgLoss": "3474790", "sL_StrLoss": "1488960", "sL_NStrLoss": "1985830", "sL_ContLoss": "1427690", "geom_point": "0101000020E610000017A58CD1DDB25EC041514D07BAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789981024, 49.263263805000037 ], [ -122.791271785999982, 49.261059735000124 ], [ -122.792976591999931, 49.260800308000036 ], [ -122.794749502999963, 49.260776101000033 ], [ -122.795684581999964, 49.260660702000052 ], [ -122.796207095999989, 49.26040151100009 ], [ -122.796229718999896, 49.260384022000054 ], [ -122.79627621399996, 49.260383531000052 ], [ -122.797395091999988, 49.260298098000078 ], [ -122.797709001999948, 49.260292491000023 ], [ -122.797710002999949, 49.260292522000043 ], [ -122.797930451999974, 49.260305957000071 ], [ -122.801134135, 49.260501400000081 ], [ -122.802105070999971, 49.260489996000075 ], [ -122.801542986999948, 49.260961195000057 ], [ -122.80143712399996, 49.261022002000097 ], [ -122.80119980799995, 49.261355508000058 ], [ -122.801169397999971, 49.261596096000076 ], [ -122.801143787999962, 49.262067387000116 ], [ -122.800578101999946, 49.262699285000039 ], [ -122.800474692999899, 49.26300341400011 ], [ -122.800516492999975, 49.26309471800004 ], [ -122.800512734999941, 49.263161703 ], [ -122.800507651999979, 49.263251862000104 ], [ -122.800486489999955, 49.263628093000072 ], [ -122.800015756999954, 49.264254210000033 ], [ -122.799802690999925, 49.264537603000086 ], [ -122.799197212999943, 49.264551086000097 ], [ -122.799175747999968, 49.263401704000081 ], [ -122.799172041999967, 49.263203322000081 ], [ -122.799170298999968, 49.263108891000115 ], [ -122.798889699999933, 49.262933907000068 ], [ -122.798566876, 49.263032392000113 ], [ -122.798247000999979, 49.263088695000071 ], [ -122.79805430199994, 49.26309378300008 ], [ -122.797778310999945, 49.263091939000063 ], [ -122.797763963999941, 49.263091841000055 ], [ -122.797736484999959, 49.263091661000075 ], [ -122.797654027999954, 49.263091100000075 ], [ -122.79751655799997, 49.263090170000112 ], [ -122.796012011999935, 49.263079991000104 ], [ -122.795897955, 49.263213753000095 ], [ -122.795674090999952, 49.263476313000055 ], [ -122.794876703999961, 49.263940906000137 ], [ -122.794868596999947, 49.264793804000064 ], [ -122.794851498999918, 49.265399600000102 ], [ -122.794831714999958, 49.265787729000103 ], [ -122.794820693999952, 49.266004116000033 ], [ -122.794817000999927, 49.266136407000012 ], [ -122.794818789999951, 49.266866191000098 ], [ -122.794802891999922, 49.267533300000075 ], [ -122.794790402999951, 49.268072612000012 ], [ -122.79403205899996, 49.268066868000048 ], [ -122.793242502999931, 49.268060888000079 ], [ -122.792901810999979, 49.268059697000055 ], [ -122.79191280400002, 49.268053812000055 ], [ -122.79063819799994, 49.26804470800009 ], [ -122.790638588999926, 49.268035673000028 ], [ -122.790689081, 49.266894892000096 ], [ -122.790697345999959, 49.266708144000056 ], [ -122.790739543999948, 49.265753367000023 ], [ -122.79074787499998, 49.265564997000091 ], [ -122.79075541499995, 49.265318408000041 ], [ -122.790850397000014, 49.26517619000002 ], [ -122.790837928999977, 49.264997399000045 ], [ -122.790645914999942, 49.264592370000088 ], [ -122.789981024, 49.263263805000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "432467405", "BldgCostT": "277331934", "sL_LossRatio": "0.698511271645481", "sL_AssetLoss": "5532910", "sL_BldgLoss": "3864800", "sL_StrLoss": "1486050", "sL_NStrLoss": "2378750", "sL_ContLoss": "1668110", "geom_point": "0101000020E6100000FB1A16FE67B25EC0C3315021F0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.791161002999957, 49.261076589 ], [ -122.791271785999982, 49.261059735000124 ], [ -122.789981024, 49.263263805000037 ], [ -122.790645914999942, 49.264592370000088 ], [ -122.790837928999977, 49.264997399000045 ], [ -122.790850397000014, 49.26517619000002 ], [ -122.79075541499995, 49.265318408000041 ], [ -122.79074787499998, 49.265564997000091 ], [ -122.790739543999948, 49.265753367000023 ], [ -122.790697345999959, 49.266708144000056 ], [ -122.790689081, 49.266894892000096 ], [ -122.790638588999926, 49.268035673000028 ], [ -122.79063819799994, 49.26804470800009 ], [ -122.790604812999945, 49.269251481000033 ], [ -122.790604234999961, 49.269272450000138 ], [ -122.790264737999948, 49.269126560000139 ], [ -122.790066298999974, 49.269011179000046 ], [ -122.789434381999953, 49.26875131500001 ], [ -122.789206045999947, 49.268679926000075 ], [ -122.786623704999968, 49.267559273000074 ], [ -122.78465328099999, 49.266682677000119 ], [ -122.784273134, 49.266483999000087 ], [ -122.78398466499999, 49.266367986000027 ], [ -122.783806731999903, 49.266306359000062 ], [ -122.78362894, 49.266268304000107 ], [ -122.783119135, 49.266075160000135 ], [ -122.782098658999956, 49.265640861000101 ], [ -122.781903476999943, 49.26556210200004 ], [ -122.782027482999951, 49.265388809000044 ], [ -122.782196417999955, 49.265152696000072 ], [ -122.783284277999954, 49.264749597000062 ], [ -122.783862511, 49.264409208000075 ], [ -122.784427285999982, 49.264050401000084 ], [ -122.784649599, 49.263456506000068 ], [ -122.784856788999932, 49.263214303000055 ], [ -122.7850215199999, 49.263133200000048 ], [ -122.785518387999915, 49.263089007000076 ], [ -122.787102284999946, 49.262310002000028 ], [ -122.789524114999921, 49.261478192000091 ], [ -122.791161002999957, 49.261076589 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1238697781", "BldgCostT": "818977618", "sL_LossRatio": "0.728059323930662", "sL_AssetLoss": "11527220", "sL_BldgLoss": "8392500", "sL_StrLoss": "3717140", "sL_NStrLoss": "4675360", "sL_ContLoss": "3134720", "geom_point": "0101000020E6100000BFDAB37C17B25EC0C7F719389CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777697784999972, 49.262501261000097 ], [ -122.778350693, 49.261646898 ], [ -122.779465853999966, 49.262109903000095 ], [ -122.779781190000023, 49.261842720000118 ], [ -122.779814274999964, 49.261831571000052 ], [ -122.780297540999982, 49.261668935000067 ], [ -122.780477671999989, 49.261492790000034 ], [ -122.781115597999985, 49.260868999000131 ], [ -122.7819535499999, 49.260874813000093 ], [ -122.782688095999944, 49.26087990600012 ], [ -122.782896794999942, 49.260880364000037 ], [ -122.784358724, 49.260883583000073 ], [ -122.78444118099999, 49.260883775000067 ], [ -122.784909431999921, 49.260884813000096 ], [ -122.786118423999937, 49.260877892000096 ], [ -122.788003496999949, 49.260867058 ], [ -122.788134066999987, 49.260866457000063 ], [ -122.788617941999959, 49.26086283100009 ], [ -122.789007420999965, 49.260833879000074 ], [ -122.791432742000012, 49.260823287000086 ], [ -122.791415455999953, 49.260838313000093 ], [ -122.79132771899998, 49.260911939000096 ], [ -122.790790220999938, 49.260985500000075 ], [ -122.790290821999974, 49.261116754000028 ], [ -122.789565797999899, 49.261307292000019 ], [ -122.788375913999971, 49.261688990000025 ], [ -122.78821633499993, 49.261740189000086 ], [ -122.787518537, 49.2619640160001 ], [ -122.787134724999973, 49.262087129000093 ], [ -122.786497601999912, 49.26229149400006 ], [ -122.785478688999945, 49.262730091000066 ], [ -122.785050087999963, 49.263007793000114 ], [ -122.784845508999936, 49.263200931000021 ], [ -122.784470792999983, 49.263554694000057 ], [ -122.784299591999968, 49.263648975000088 ], [ -122.782321779999933, 49.264738199000085 ], [ -122.781973563999941, 49.265170392000137 ], [ -122.781855638999929, 49.265316764000069 ], [ -122.781723996999986, 49.265480159000056 ], [ -122.78168775599994, 49.265461800000075 ], [ -122.781639611999978, 49.265436680000043 ], [ -122.779921595999937, 49.264732259000056 ], [ -122.77946468499999, 49.264517973000075 ], [ -122.77960112699995, 49.264377036000042 ], [ -122.779009439999967, 49.264110400000085 ], [ -122.77715622099997, 49.263275184000115 ], [ -122.777697784999972, 49.262501261000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157144119", "BldgCostT": "100034307", "sL_LossRatio": "0.688417370911002", "sL_AssetLoss": "1978480", "sL_BldgLoss": "1362020", "sL_StrLoss": "546720", "sL_NStrLoss": "815300", "sL_ContLoss": "616460", "geom_point": "0101000020E610000037C7B09228B25EC03D9270C655A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.780572621999923, 49.268620598000034 ], [ -122.781346704999947, 49.267489806000157 ], [ -122.781805499, 49.26633048900004 ], [ -122.781836712999961, 49.265655398000057 ], [ -122.781903476999943, 49.26556210200004 ], [ -122.782098658999956, 49.265640861000101 ], [ -122.783119135, 49.266075160000135 ], [ -122.78362894, 49.266268304000107 ], [ -122.783806731999903, 49.266306359000062 ], [ -122.78398466499999, 49.266367986000027 ], [ -122.784273134, 49.266483999000087 ], [ -122.78465328099999, 49.266682677000119 ], [ -122.786623704999968, 49.267559273000074 ], [ -122.789206045999947, 49.268679926000075 ], [ -122.789434381999953, 49.26875131500001 ], [ -122.790066298999974, 49.269011179000046 ], [ -122.790264737999948, 49.269126560000139 ], [ -122.790604234999961, 49.269272450000138 ], [ -122.790596982999929, 49.269533603000099 ], [ -122.789146692999964, 49.268905689000086 ], [ -122.78712561, 49.268027595000056 ], [ -122.786140200999967, 49.268008104000032 ], [ -122.78612818199997, 49.268442997000079 ], [ -122.786085519999958, 49.269987602000121 ], [ -122.785336279999981, 49.269986279000065 ], [ -122.78460841699993, 49.269985006000105 ], [ -122.783892535999939, 49.269975165000112 ], [ -122.783092720999917, 49.26996420400009 ], [ -122.782534266999946, 49.270099075000076 ], [ -122.782322505999986, 49.270150208000132 ], [ -122.780422395999935, 49.269371006000021 ], [ -122.780071436999918, 49.269211949000116 ], [ -122.780572621999923, 49.268620598000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62167101", "BldgCostT": "35428207", "sL_LossRatio": "0.645166911225239", "sL_AssetLoss": "1090400", "sL_BldgLoss": "703490", "sL_StrLoss": "272410", "sL_NStrLoss": "431080", "sL_ContLoss": "386910", "geom_point": "0101000020E6100000888B48B9E0B15EC05579026127A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779436638999954, 49.26454698100008 ], [ -122.77946468499999, 49.264517973000075 ], [ -122.779921595999937, 49.264732259000056 ], [ -122.781639611999978, 49.265436680000043 ], [ -122.78168775599994, 49.265461800000075 ], [ -122.781723996999986, 49.265480159000056 ], [ -122.781547198999988, 49.265699594000061 ], [ -122.781460505999959, 49.266554093000074 ], [ -122.78118278, 49.267471293 ], [ -122.780642915, 49.2682261060001 ], [ -122.779821591999919, 49.269098729000078 ], [ -122.779774350999929, 49.269077320000058 ], [ -122.779482776999927, 49.26894517500012 ], [ -122.776485593999951, 49.267586801000071 ], [ -122.77660180799991, 49.267456907000053 ], [ -122.776417706999936, 49.26737759600006 ], [ -122.77771994499993, 49.26607858000007 ], [ -122.778060082999914, 49.265750895000075 ], [ -122.77869068699999, 49.265317502000059 ], [ -122.779340708999968, 49.264646050000117 ], [ -122.779436638999954, 49.26454698100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199261373", "BldgCostT": "127972721", "sL_LossRatio": "0.683413364589635", "sL_AssetLoss": "3173760", "sL_BldgLoss": "2168990", "sL_StrLoss": "840700", "sL_NStrLoss": "1328290", "sL_ContLoss": "1004770", "geom_point": "0101000020E6100000239642BD6CB25EC0FEF5B7C2C3A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789409732999971, 49.274774001000033 ], [ -122.789176183999942, 49.274730987000027 ], [ -122.789110242999982, 49.274730692000055 ], [ -122.787707955999949, 49.274723889000065 ], [ -122.787403870999967, 49.274722392000086 ], [ -122.786714411999924, 49.274715391000079 ], [ -122.78599210899992, 49.274707408000019 ], [ -122.786015699999979, 49.272937786000114 ], [ -122.786029744999922, 49.271824848000058 ], [ -122.786031592999976, 49.271677904000057 ], [ -122.784589594999971, 49.27104940300012 ], [ -122.782334248999959, 49.270154844000075 ], [ -122.782322505999986, 49.270150208000132 ], [ -122.782534266999946, 49.270099075000076 ], [ -122.783092720999917, 49.26996420400009 ], [ -122.783892535999939, 49.269975165000112 ], [ -122.78460841699993, 49.269985006000105 ], [ -122.785336279999981, 49.269986279000065 ], [ -122.786085519999958, 49.269987602000121 ], [ -122.78612818199997, 49.268442997000079 ], [ -122.786140200999967, 49.268008104000032 ], [ -122.78712561, 49.268027595000056 ], [ -122.789146692999964, 49.268905689000086 ], [ -122.790596982999929, 49.269533603000099 ], [ -122.790597807999987, 49.269557519000095 ], [ -122.790609513000021, 49.269908685000104 ], [ -122.79060423699994, 49.270025494000087 ], [ -122.79057878499999, 49.270591758000059 ], [ -122.790563601999935, 49.270929886000054 ], [ -122.790639287999937, 49.271067301000123 ], [ -122.790632192999951, 49.271864400000055 ], [ -122.790629304999968, 49.272561583 ], [ -122.790632503000012, 49.273448208000076 ], [ -122.790637913999916, 49.273668189000077 ], [ -122.790558905999916, 49.275266696000081 ], [ -122.790496267999941, 49.275267964000108 ], [ -122.790414406999943, 49.275269597000083 ], [ -122.790029894999947, 49.275265405000084 ], [ -122.789859384999914, 49.275186400000095 ], [ -122.789409732999971, 49.274774001000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186779334", "BldgCostT": "117023334", "sL_LossRatio": "0.70393639686613", "sL_AssetLoss": "2938220", "sL_BldgLoss": "2068320", "sL_StrLoss": "929040", "sL_NStrLoss": "1139280", "sL_ContLoss": "869900", "geom_point": "0101000020E6100000C4BC337F31B25EC0EFED75D617A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782211393999972, 49.275832595000026 ], [ -122.78223742199998, 49.274704516000064 ], [ -122.782247681999976, 49.27392280400003 ], [ -122.782253812999954, 49.273320295000104 ], [ -122.782261510999959, 49.272614193000017 ], [ -122.782283402999951, 49.272002196000088 ], [ -122.782301797999963, 49.271201886000014 ], [ -122.782303769999942, 49.27110743300009 ], [ -122.78230599699998, 49.271002013000086 ], [ -122.782322505999986, 49.270150208000132 ], [ -122.782334248999959, 49.270154844000075 ], [ -122.784589594999971, 49.27104940300012 ], [ -122.786031592999976, 49.271677904000057 ], [ -122.786029744999922, 49.271824848000058 ], [ -122.786015699999979, 49.272937786000114 ], [ -122.78599210899992, 49.274707408000019 ], [ -122.786714411999924, 49.274715391000079 ], [ -122.786700702999966, 49.27574649900005 ], [ -122.788131976999949, 49.275779202000066 ], [ -122.788390906999965, 49.275811202000064 ], [ -122.788405086999944, 49.276081904000115 ], [ -122.788312795999929, 49.276580989000067 ], [ -122.784235358999965, 49.276569921000068 ], [ -122.783630433999988, 49.276568250000054 ], [ -122.783317708999974, 49.276567397000072 ], [ -122.783290187999967, 49.2776566000001 ], [ -122.783171450999973, 49.277822483000179 ], [ -122.782933175999958, 49.277948682000044 ], [ -122.782153468999979, 49.277954268000059 ], [ -122.782163565999909, 49.276872901000047 ], [ -122.782166492999963, 49.276558312000084 ], [ -122.782211393999972, 49.275832595000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129486468", "BldgCostT": "79435411", "sL_LossRatio": "0.67793960058451", "sL_AssetLoss": "2053000", "sL_BldgLoss": "1391810", "sL_StrLoss": "628050", "sL_NStrLoss": "763760", "sL_ContLoss": "661190", "geom_point": "0101000020E6100000C3CA26C861B25EC00C3B529E75A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787640249999953, 49.278584806000048 ], [ -122.787352928999951, 49.278532593000115 ], [ -122.785731640000023, 49.278523942 ], [ -122.785502851999965, 49.278522723000073 ], [ -122.784327442999952, 49.278516366000105 ], [ -122.78403749099999, 49.278514939000061 ], [ -122.783947918999928, 49.278477518000081 ], [ -122.782083245999971, 49.278423300000014 ], [ -122.782041228999944, 49.278423018000076 ], [ -122.782112618, 49.278344940000096 ], [ -122.782131205999974, 49.278167284000084 ], [ -122.782153468999979, 49.277954268000059 ], [ -122.782933175999958, 49.277948682000044 ], [ -122.783171450999973, 49.277822483000179 ], [ -122.783290187999967, 49.2776566000001 ], [ -122.783317708999974, 49.276567397000072 ], [ -122.783630433999988, 49.276568250000054 ], [ -122.784235358999965, 49.276569921000068 ], [ -122.788312795999929, 49.276580989000067 ], [ -122.788405086999944, 49.276081904000115 ], [ -122.788390906999965, 49.275811202000064 ], [ -122.788131976999949, 49.275779202000066 ], [ -122.786700702999966, 49.27574649900005 ], [ -122.786714411999924, 49.274715391000079 ], [ -122.787403870999967, 49.274722392000086 ], [ -122.787707955999949, 49.274723889000065 ], [ -122.789110242999982, 49.274730692000055 ], [ -122.789176183999942, 49.274730987000027 ], [ -122.789409732999971, 49.274774001000033 ], [ -122.789859384999914, 49.275186400000095 ], [ -122.790029894999947, 49.275265405000084 ], [ -122.790414406999943, 49.275269597000083 ], [ -122.790496267999941, 49.275267964000108 ], [ -122.790558905999916, 49.275266696000081 ], [ -122.790560568999979, 49.275572301000061 ], [ -122.790563107999986, 49.276040700000046 ], [ -122.790493794999961, 49.276108010000094 ], [ -122.79049253099997, 49.276375591000033 ], [ -122.790488783999976, 49.277158194000066 ], [ -122.790488514999979, 49.277217802000038 ], [ -122.790487484999943, 49.277365082000124 ], [ -122.79048253699996, 49.278069421000062 ], [ -122.788361079999959, 49.278633364000079 ], [ -122.78821685299999, 49.278601550000118 ], [ -122.788176900999957, 49.278682322000051 ], [ -122.787640249999953, 49.278584806000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191090333", "BldgCostT": "124448333", "sL_LossRatio": "0.736493632132867", "sL_AssetLoss": "2662744", "sL_BldgLoss": "1961094", "sL_StrLoss": "868674", "sL_NStrLoss": "1092420", "sL_ContLoss": "701650", "geom_point": "0101000020E61000000A66F107E8B15EC07FE5A4A445A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.776675743999988, 49.274506901000066 ], [ -122.776676962999929, 49.274237047000021 ], [ -122.776549883999948, 49.27423680200009 ], [ -122.77649201199992, 49.274064007000057 ], [ -122.777182290999932, 49.273400303000074 ], [ -122.777845391999961, 49.27308700200004 ], [ -122.778051998999985, 49.272853386000037 ], [ -122.778251878999953, 49.272481737000085 ], [ -122.77827621899992, 49.272485445000022 ], [ -122.779286496999958, 49.272569606000083 ], [ -122.779078798999976, 49.272948098000022 ], [ -122.779062289999899, 49.273323300000072 ], [ -122.780412073999983, 49.273321196000055 ], [ -122.782253812999954, 49.273320295000104 ], [ -122.782247681999976, 49.27392280400003 ], [ -122.78223742199998, 49.274704516000064 ], [ -122.782211393999972, 49.275832595000026 ], [ -122.782166492999963, 49.276558312000084 ], [ -122.782163565999909, 49.276872901000047 ], [ -122.782153468999979, 49.277954268000059 ], [ -122.782131205999974, 49.278167284000084 ], [ -122.782112618, 49.278344940000096 ], [ -122.782041228999944, 49.278423018000076 ], [ -122.778720819999975, 49.278323773000061 ], [ -122.77872097699999, 49.278288817000018 ], [ -122.778308518999935, 49.27828802600002 ], [ -122.77831335799999, 49.27720861300007 ], [ -122.777900908, 49.277207820000058 ], [ -122.777903330999976, 49.276668114000067 ], [ -122.777490886999956, 49.276667320000072 ], [ -122.777496954999961, 49.275318053000028 ], [ -122.77790375299999, 49.275318835000071 ], [ -122.777909446999956, 49.275305873000079 ], [ -122.777910600999974, 49.275048992000052 ], [ -122.777085738999943, 49.275047404000055 ], [ -122.777088170999903, 49.27450769700004 ], [ -122.776675743999988, 49.274506901000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1307668396", "BldgCostT": "891787126", "sL_LossRatio": "0.813737295511293", "sL_AssetLoss": "16476460", "sL_BldgLoss": "13407510", "sL_StrLoss": "6354370", "sL_NStrLoss": "7053140", "sL_ContLoss": "3068950", "geom_point": "0101000020E610000082069B3A0FB35EC081D605B4DBA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793406850999972, 49.280729728000075 ], [ -122.793486563999963, 49.28057082600003 ], [ -122.794325874999956, 49.27960476100003 ], [ -122.795442312999953, 49.278366762000076 ], [ -122.796090601999978, 49.277696791000047 ], [ -122.797313520000017, 49.276369205000073 ], [ -122.797444008999918, 49.276210884000072 ], [ -122.797999617999935, 49.275589491000048 ], [ -122.798248116999929, 49.275255489000131 ], [ -122.798408598999956, 49.274980002000071 ], [ -122.798505599999899, 49.274809902000086 ], [ -122.798662993, 49.27438130600013 ], [ -122.798665510999953, 49.274367200000015 ], [ -122.798741407999898, 49.273942183000067 ], [ -122.798759920999942, 49.273425949000092 ], [ -122.799116261000023, 49.273612553000106 ], [ -122.800968831999953, 49.274607450000076 ], [ -122.801584951999956, 49.274881173000047 ], [ -122.80171320699999, 49.274938157000051 ], [ -122.801685282999969, 49.274997910000089 ], [ -122.801578172999911, 49.275594727000062 ], [ -122.801681742, 49.276575243000082 ], [ -122.801698739999935, 49.276736142000104 ], [ -122.801707042000018, 49.276814753000082 ], [ -122.801743673999908, 49.277180700000066 ], [ -122.801757176999956, 49.277343272000103 ], [ -122.80175948099999, 49.277648745000114 ], [ -122.801761181999922, 49.279178491000032 ], [ -122.801762273999913, 49.279959620000042 ], [ -122.801618078999965, 49.279958034000103 ], [ -122.801617357999959, 49.28092466500015 ], [ -122.801750604999967, 49.280925907 ], [ -122.801737817999978, 49.282669997000092 ], [ -122.801737490999983, 49.282710197000021 ], [ -122.801657208999956, 49.282710068000085 ], [ -122.801609673999963, 49.282710014000095 ], [ -122.79999332499996, 49.28271298200012 ], [ -122.798832589999947, 49.282715094000025 ], [ -122.79875578099994, 49.283154806000042 ], [ -122.798737116999945, 49.283261797000087 ], [ -122.798652915999966, 49.283426801000047 ], [ -122.798221212999948, 49.28390499900005 ], [ -122.798103586999972, 49.28411498600007 ], [ -122.798077606999925, 49.284292609000012 ], [ -122.798073379999963, 49.285169997000054 ], [ -122.798073180999936, 49.285178996000042 ], [ -122.798070311999965, 49.285294199000063 ], [ -122.794595045999927, 49.285055950000093 ], [ -122.793155739999946, 49.284956454000024 ], [ -122.792460654999942, 49.284909664000082 ], [ -122.792520344, 49.284801526000159 ], [ -122.792849370999988, 49.284218522000117 ], [ -122.793095850999961, 49.283775411000093 ], [ -122.793227979, 49.283455004000096 ], [ -122.793261267999966, 49.282675822000087 ], [ -122.793314939999973, 49.281004521000106 ], [ -122.793406850999972, 49.280729728000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "779803135", "BldgCostT": "532156094", "sL_LossRatio": "0.814454983503733", "sL_AssetLoss": "6252930", "sL_BldgLoss": "5092730", "sL_StrLoss": "2361100", "sL_NStrLoss": "2731630", "sL_ContLoss": "1160200", "geom_point": "0101000020E6100000156D7D4743B25EC044F22AA546A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782708097999958, 49.259957001000075 ], [ -122.782716643999962, 49.259504399000029 ], [ -122.782724986999938, 49.259060188000078 ], [ -122.783391082999984, 49.25905874400005 ], [ -122.78510904699999, 49.259054971000062 ], [ -122.785315208999918, 49.259054495000029 ], [ -122.788017403999902, 49.259058405000069 ], [ -122.78801736399997, 49.259067435000048 ], [ -122.788013220999972, 49.259972737000076 ], [ -122.788003496999949, 49.260867058 ], [ -122.786118423999937, 49.260877892000096 ], [ -122.784909431999921, 49.260884813000096 ], [ -122.78444118099999, 49.260883775000067 ], [ -122.784358724, 49.260883583000073 ], [ -122.782896794999942, 49.260880364000037 ], [ -122.782688095999944, 49.26087990600012 ], [ -122.782689840999979, 49.260799436000127 ], [ -122.782698238999913, 49.260412819000109 ], [ -122.782708097999958, 49.259957001000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "350856250", "BldgCostT": "233469015", "sL_LossRatio": "0.779519289569541", "sL_AssetLoss": "3761100", "sL_BldgLoss": "2931850", "sL_StrLoss": "1324970", "sL_NStrLoss": "1606880", "sL_ContLoss": "829250", "geom_point": "0101000020E6100000FE68A300F2B15EC0E5CB3DEA50A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.780892803999905, 49.25906664900004 ], [ -122.782724986999938, 49.259060188000078 ], [ -122.782716643999962, 49.259504399000029 ], [ -122.782708097999958, 49.259957001000075 ], [ -122.782698238999913, 49.260412819000109 ], [ -122.782689840999979, 49.260799436000127 ], [ -122.782688095999944, 49.26087990600012 ], [ -122.7819535499999, 49.260874813000093 ], [ -122.781115597999985, 49.260868999000131 ], [ -122.780477671999989, 49.261492790000034 ], [ -122.780297540999982, 49.261668935000067 ], [ -122.779814274999964, 49.261831571000052 ], [ -122.779781190000023, 49.261842720000118 ], [ -122.779465853999966, 49.262109903000095 ], [ -122.778350693, 49.261646898 ], [ -122.778541505999968, 49.260877804000103 ], [ -122.778543682999938, 49.260827813000041 ], [ -122.778581004999964, 49.259973494000057 ], [ -122.778591181999957, 49.259074698000063 ], [ -122.779212945999916, 49.259072527000058 ], [ -122.780617761999977, 49.259067606 ], [ -122.780892803999905, 49.25906664900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "498290864", "BldgCostT": "337161936", "sL_LossRatio": "0.798857985362554", "sL_AssetLoss": "3947410", "sL_BldgLoss": "3153420", "sL_StrLoss": "1456710", "sL_NStrLoss": "1696710", "sL_ContLoss": "793990", "geom_point": "0101000020E610000081F3350D02B25EC04A977AED04A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778589990999933, 49.257905203000078 ], [ -122.778546082999924, 49.257012902000042 ], [ -122.779222300999905, 49.257010853000097 ], [ -122.780627985999971, 49.257006598000061 ], [ -122.781970766999919, 49.257001737000081 ], [ -122.782675613999942, 49.256999188000052 ], [ -122.782678892999911, 49.257247888000038 ], [ -122.783357595000012, 49.257247397000064 ], [ -122.785130471999963, 49.257246072000022 ], [ -122.785157957999971, 49.257246049000074 ], [ -122.785330607999981, 49.257245905000104 ], [ -122.785323321, 49.257701072000046 ], [ -122.785316202, 49.258147311000101 ], [ -122.78338116899999, 49.25814900600006 ], [ -122.782701592999985, 49.258149590000073 ], [ -122.782724986999938, 49.259060188000078 ], [ -122.780892803999905, 49.25906664900004 ], [ -122.780617761999977, 49.259067606 ], [ -122.779212945999916, 49.259072527000058 ], [ -122.778591181999957, 49.259074698000063 ], [ -122.778587882999943, 49.258092589000107 ], [ -122.778589990999933, 49.257905203000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208001938", "BldgCostT": "139840824", "sL_LossRatio": "0.764640144590614", "sL_AssetLoss": "1449610", "sL_BldgLoss": "1108430", "sL_StrLoss": "504500", "sL_NStrLoss": "603930", "sL_ContLoss": "341180", "geom_point": "0101000020E61000006A62E4D9E3B15EC0CB725466B1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778550902999939, 49.256094098000084 ], [ -122.778548104999956, 49.255203903000087 ], [ -122.777883443999912, 49.255203937000012 ], [ -122.775294891999977, 49.255203992000133 ], [ -122.775295063999948, 49.254821531000054 ], [ -122.775295118, 49.2546596110001 ], [ -122.775295501999892, 49.253771515000011 ], [ -122.776633405, 49.25403131400008 ], [ -122.777819657999942, 49.254039009000081 ], [ -122.777888348999937, 49.254039455000054 ], [ -122.778326496999952, 49.254042296000108 ], [ -122.778545589999936, 49.254092904000046 ], [ -122.780595491999989, 49.254544307000032 ], [ -122.780851482999978, 49.254577092000034 ], [ -122.782641104999982, 49.254583653000033 ], [ -122.782653476999954, 49.254970726000053 ], [ -122.782667124999961, 49.255397089000084 ], [ -122.782672509999941, 49.256092809000066 ], [ -122.782673013999968, 49.25634319300012 ], [ -122.782675613999942, 49.256999188000052 ], [ -122.781970766999919, 49.257001737000081 ], [ -122.780627985999971, 49.257006598000061 ], [ -122.779222300999905, 49.257010853000097 ], [ -122.778546082999924, 49.257012902000042 ], [ -122.778550902999939, 49.256094098000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "575608114", "BldgCostT": "392696936", "sL_LossRatio": "0.785487136162209", "sL_AssetLoss": "5018720", "sL_BldgLoss": "3942140", "sL_StrLoss": "1778610", "sL_NStrLoss": "2163530", "sL_ContLoss": "1076580", "geom_point": "0101000020E61000000201DF2B42B25EC0C3BBC8A9C2A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787502777999975, 49.254586206000049 ], [ -122.787637461999935, 49.254585719000048 ], [ -122.787673159999926, 49.254665163000027 ], [ -122.78753851, 49.254665639 ], [ -122.787939696999928, 49.255518151000082 ], [ -122.788011342999965, 49.255892391000025 ], [ -122.788003166999971, 49.257240826000078 ], [ -122.787279049999967, 49.257241789000048 ], [ -122.785330607999981, 49.257245905000104 ], [ -122.785157957999971, 49.257246049000074 ], [ -122.785130471999963, 49.257246072000022 ], [ -122.783357595000012, 49.257247397000064 ], [ -122.782678892999911, 49.257247888000038 ], [ -122.782675613999942, 49.256999188000052 ], [ -122.782673013999968, 49.25634319300012 ], [ -122.782672509999941, 49.256092809000066 ], [ -122.782667124999961, 49.255397089000084 ], [ -122.782653476999954, 49.254970726000053 ], [ -122.782641104999982, 49.254583653000033 ], [ -122.783981866999952, 49.25460470900007 ], [ -122.784780581999925, 49.254616813000077 ], [ -122.785281409999968, 49.254625433000115 ], [ -122.785690373999955, 49.254631327000084 ], [ -122.785859081999945, 49.254635450000087 ], [ -122.786015357999986, 49.254600450000062 ], [ -122.786407350999951, 49.254594121000125 ], [ -122.787502777999975, 49.254586206000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "336167833", "BldgCostT": "226917348", "sL_LossRatio": "0.780119066269779", "sL_AssetLoss": "3319160", "sL_BldgLoss": "2589340", "sL_StrLoss": "1168450", "sL_NStrLoss": "1420890", "sL_ContLoss": "729820", "geom_point": "0101000020E61000009F37DBFDA6B25EC0B2805C24E5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788003496999949, 49.260867058 ], [ -122.788013220999972, 49.259972737000076 ], [ -122.78801736399997, 49.259067435000048 ], [ -122.788017403999902, 49.259058405000069 ], [ -122.785315208999918, 49.259054495000029 ], [ -122.78510904699999, 49.259054971000062 ], [ -122.783391082999984, 49.25905874400005 ], [ -122.782724986999938, 49.259060188000078 ], [ -122.782701592999985, 49.258149590000073 ], [ -122.78338116899999, 49.25814900600006 ], [ -122.785316202, 49.258147311000101 ], [ -122.785323321, 49.257701072000046 ], [ -122.785330607999981, 49.257245905000104 ], [ -122.787279049999967, 49.257241789000048 ], [ -122.788003166999971, 49.257240826000078 ], [ -122.788011342999965, 49.255892391000025 ], [ -122.787939696999928, 49.255518151000082 ], [ -122.78753851, 49.254665639 ], [ -122.787673159999926, 49.254665163000027 ], [ -122.787637461999935, 49.254585719000048 ], [ -122.787969609999962, 49.254550552000062 ], [ -122.788353762999947, 49.254458391000085 ], [ -122.788660680999925, 49.254331487000087 ], [ -122.789213498, 49.253985757000073 ], [ -122.789373836999943, 49.253912143000051 ], [ -122.790211702999954, 49.253258671000054 ], [ -122.790717944999926, 49.252851206000038 ], [ -122.791043389999942, 49.252654588000098 ], [ -122.791106896999949, 49.252626976000066 ], [ -122.791305381999948, 49.252540740000065 ], [ -122.791672870999975, 49.252451676000121 ], [ -122.792104565999949, 49.252406858000064 ], [ -122.793186001, 49.252421907000013 ], [ -122.793617824999927, 49.252375265000083 ], [ -122.793699491999945, 49.252354076000103 ], [ -122.793820221999979, 49.252531994000023 ], [ -122.794028962999946, 49.252393250000097 ], [ -122.79443596899992, 49.252243178000064 ], [ -122.795732456999971, 49.251667642000051 ], [ -122.796018558999947, 49.251569138000079 ], [ -122.796154894999972, 49.251460850000079 ], [ -122.796153189999927, 49.251874969000077 ], [ -122.795844163999959, 49.251874424000029 ], [ -122.795756594999929, 49.253142412000066 ], [ -122.795343006999971, 49.253130126000094 ], [ -122.79527293299999, 49.25414462100008 ], [ -122.794464456999947, 49.254120599000096 ], [ -122.794443212999965, 49.25442804000005 ], [ -122.794118239999975, 49.254418383000107 ], [ -122.794107769999968, 49.254569911000047 ], [ -122.794905294999978, 49.254571330000047 ], [ -122.794906414999929, 49.254301475000105 ], [ -122.795318671999965, 49.254302205000059 ], [ -122.795319787999986, 49.254032350000067 ], [ -122.795732044999951, 49.254033080000028 ], [ -122.795733158999923, 49.253763226000025 ], [ -122.796969921000013, 49.25376540500006 ], [ -122.796966599999976, 49.254574970000114 ], [ -122.796554339999929, 49.254574244000011 ], [ -122.796553228999969, 49.254844100000042 ], [ -122.796140966999971, 49.254843373000028 ], [ -122.796139854999964, 49.255113228000049 ], [ -122.795727589999942, 49.255112499000056 ], [ -122.79572647699996, 49.255382354000048 ], [ -122.795314208999969, 49.255381625 ], [ -122.795313094, 49.255651480000083 ], [ -122.794488554999973, 49.255650015000072 ], [ -122.794487434999965, 49.255919870000071 ], [ -122.79407516199997, 49.25591913600006 ], [ -122.794074038999938, 49.256188991000037 ], [ -122.793661764999982, 49.256188255000012 ], [ -122.793660639999985, 49.256458111000079 ], [ -122.792423812, 49.256455895000023 ], [ -122.792427206999918, 49.255646331000086 ], [ -122.792014937999966, 49.255645589000046 ], [ -122.792016596999943, 49.255250502000123 ], [ -122.791885457999925, 49.255246602000028 ], [ -122.791801021999945, 49.256467599000047 ], [ -122.791159159999964, 49.256448508000048 ], [ -122.791121478999955, 49.256993261000098 ], [ -122.791184705999925, 49.256993375000086 ], [ -122.791185844999916, 49.256723521000055 ], [ -122.792834958999919, 49.25672648900008 ], [ -122.792831569999947, 49.257536053000109 ], [ -122.793656139999982, 49.257537529000054 ], [ -122.793655015999917, 49.257807384000031 ], [ -122.794067303999952, 49.257808119000067 ], [ -122.79406618099992, 49.258077974000081 ], [ -122.794890760000015, 49.258079440000081 ], [ -122.794889641999944, 49.258349295000095 ], [ -122.795301933999966, 49.258350026000123 ], [ -122.795301314999961, 49.258499508000085 ], [ -122.795716428999967, 49.258511838000075 ], [ -122.795791319999921, 49.25742759500006 ], [ -122.79715703, 49.25746814900004 ], [ -122.797315381999923, 49.258433300000078 ], [ -122.797161097999933, 49.259431601000031 ], [ -122.796801814999981, 49.259763508000027 ], [ -122.795548683999982, 49.260525395000023 ], [ -122.795320923999924, 49.260566459000067 ], [ -122.794805880999945, 49.260659301000018 ], [ -122.792673708, 49.260727708000069 ], [ -122.792182203, 49.260794988000065 ], [ -122.79132771899998, 49.260911939000096 ], [ -122.791415455999953, 49.260838313000093 ], [ -122.791432742000012, 49.260823287000086 ], [ -122.789007420999965, 49.260833879000074 ], [ -122.788617941999959, 49.26086283100009 ], [ -122.788134066999987, 49.260866457000063 ], [ -122.788003496999949, 49.260867058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15201764", "BldgCostT": "8200681", "sL_LossRatio": "0.600792945519174", "sL_AssetLoss": "292580", "sL_BldgLoss": "175780", "sL_StrLoss": "74780", "sL_NStrLoss": "101000", "sL_ContLoss": "116800", "geom_point": "0101000020E610000079D1157494B25EC0D9401D03F09F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78680769199994, 49.251829702000087 ], [ -122.786594940999962, 49.250013965000072 ], [ -122.786343701999954, 49.247868834000087 ], [ -122.786343164999934, 49.247859305000127 ], [ -122.786276446000031, 49.243733544000058 ], [ -122.788487496999949, 49.243731095000086 ], [ -122.788341982999967, 49.245833613000109 ], [ -122.786697880999924, 49.245784641000057 ], [ -122.786691479999945, 49.247270318000083 ], [ -122.787515880999976, 49.247271837 ], [ -122.787514721999969, 49.247541692000055 ], [ -122.787926923000015, 49.247542449000079 ], [ -122.787925767999923, 49.24781230500011 ], [ -122.78875017699994, 49.247813816000104 ], [ -122.788746723, 49.24862338 ], [ -122.78957114399995, 49.248624884000016 ], [ -122.789573438999938, 49.248085175000057 ], [ -122.789985643999927, 49.248085925000098 ], [ -122.789987932999935, 49.247546215000099 ], [ -122.791224539999988, 49.247548456000061 ], [ -122.791219988999927, 49.248627876000086 ], [ -122.792044410999935, 49.248629363000056 ], [ -122.792043276999934, 49.248899218000119 ], [ -122.79327991699995, 49.248901438000111 ], [ -122.793277663000012, 49.249441147000034 ], [ -122.793689881999981, 49.249441884000106 ], [ -122.793689734999987, 49.249477265000088 ], [ -122.795499003999979, 49.249531033000046 ], [ -122.79586352199999, 49.250353702000105 ], [ -122.795943504999954, 49.250435927000083 ], [ -122.795918698999955, 49.250795127000082 ], [ -122.796157633999925, 49.250795549 ], [ -122.796156422999971, 49.251089811000057 ], [ -122.796154894999972, 49.251460850000079 ], [ -122.796018558999947, 49.251569138000079 ], [ -122.795732456999971, 49.251667642000051 ], [ -122.79443596899992, 49.252243178000064 ], [ -122.794028962999946, 49.252393250000097 ], [ -122.793820221999979, 49.252531994000023 ], [ -122.793699491999945, 49.252354076000103 ], [ -122.790148399999936, 49.252135620000075 ], [ -122.788396380999984, 49.251967107000034 ], [ -122.78680769199994, 49.251829702000087 ] ], [ [ -122.787089755999915, 49.250509338000086 ], [ -122.78709323599999, 49.24969977300006 ], [ -122.786832235, 49.249699291000049 ], [ -122.786776176999922, 49.250508759000098 ], [ -122.787089755999915, 49.250509338000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19089978", "BldgCostT": "11809857", "sL_LossRatio": "0.648151148847911", "sL_AssetLoss": "308570", "sL_BldgLoss": "200000", "sL_StrLoss": "83820", "sL_NStrLoss": "116180", "sL_ContLoss": "108570", "geom_point": "0101000020E6100000662C3F159CB25EC0571F93B51B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789181912999965, 49.243227031000032 ], [ -122.789185359, 49.242417465000081 ], [ -122.792070473999985, 49.24242269400002 ], [ -122.792069340999973, 49.242692550000058 ], [ -122.792893664999951, 49.242694031000028 ], [ -122.792890277999945, 49.243503596000082 ], [ -122.79124160399999, 49.243500629000032 ], [ -122.791242741999937, 49.243230773000043 ], [ -122.790418409999987, 49.243229281000048 ], [ -122.790416294999915, 49.243728922000081 ], [ -122.788767593999935, 49.243730782000057 ], [ -122.788769745999957, 49.243226279000062 ], [ -122.789181912999965, 49.243227031000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212608834", "BldgCostT": "133308334", "sL_LossRatio": "0.676604069467054", "sL_AssetLoss": "3081288", "sL_BldgLoss": "2084812", "sL_StrLoss": "965202", "sL_NStrLoss": "1119610", "sL_ContLoss": "996476", "geom_point": "0101000020E6100000A8EF601747B25EC009217C62FC9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78258701599999, 49.251501683000079 ], [ -122.782704629999941, 49.249112399000076 ], [ -122.782722206999964, 49.247907389000069 ], [ -122.782720707999928, 49.246542398000031 ], [ -122.782759618999947, 49.246318406000043 ], [ -122.78288550799995, 49.245987899000099 ], [ -122.782900599999948, 49.24596377400006 ], [ -122.783032604999946, 49.245752865000114 ], [ -122.783090906999945, 49.245659700000047 ], [ -122.783710184999975, 49.245088086000052 ], [ -122.78426557399996, 49.244624476000055 ], [ -122.785018030999964, 49.243874068000103 ], [ -122.785355958999929, 49.24353706200008 ], [ -122.78541358299999, 49.243501131000052 ], [ -122.787226092999944, 49.242370113000064 ], [ -122.787491497999923, 49.242204498000056 ], [ -122.788590875999887, 49.242237241000034 ], [ -122.788487496999949, 49.243731095000086 ], [ -122.786276446000031, 49.243733544000058 ], [ -122.786343164999934, 49.247859305000127 ], [ -122.786343701999954, 49.247868834000087 ], [ -122.786594940999962, 49.250013965000072 ], [ -122.78680769199994, 49.251829702000087 ], [ -122.788396380999984, 49.251967107000034 ], [ -122.790148399999936, 49.252135620000075 ], [ -122.793699491999945, 49.252354076000103 ], [ -122.793617824999927, 49.252375265000083 ], [ -122.793186001, 49.252421907000013 ], [ -122.792104565999949, 49.252406858000064 ], [ -122.791672870999975, 49.252451676000121 ], [ -122.791305381999948, 49.252540740000065 ], [ -122.791106896999949, 49.252626976000066 ], [ -122.791043389999942, 49.252654588000098 ], [ -122.790717944999926, 49.252851206000038 ], [ -122.790211702999954, 49.253258671000054 ], [ -122.789373836999943, 49.253912143000051 ], [ -122.789213498, 49.253985757000073 ], [ -122.788660680999925, 49.254331487000087 ], [ -122.788353762999947, 49.254458391000085 ], [ -122.787969609999962, 49.254550552000062 ], [ -122.787637461999935, 49.254585719000048 ], [ -122.787502777999975, 49.254586206000049 ], [ -122.786407350999951, 49.254594121000125 ], [ -122.786015357999986, 49.254600450000062 ], [ -122.785859081999945, 49.254635450000087 ], [ -122.785690373999955, 49.254631327000084 ], [ -122.785281409999968, 49.254625433000115 ], [ -122.784780581999925, 49.254616813000077 ], [ -122.783981866999952, 49.25460470900007 ], [ -122.782641104999982, 49.254583653000033 ], [ -122.782639950999965, 49.254184496000136 ], [ -122.782637931999943, 49.253765166000086 ], [ -122.782635814999963, 49.253313181000124 ], [ -122.782628369999969, 49.252856523000013 ], [ -122.782620908999931, 49.252398301000063 ], [ -122.782607609999985, 49.252046798000102 ], [ -122.78258701599999, 49.251501683000079 ] ], [ [ -122.786270098999964, 49.249396770000082 ], [ -122.786272292999939, 49.248888685000061 ], [ -122.785447866999959, 49.248887158000123 ], [ -122.785449036999964, 49.248617303000081 ], [ -122.784624614999956, 49.248615770000086 ], [ -122.784625787999971, 49.248345915000066 ], [ -122.783389163999971, 49.248343602000084 ], [ -122.78338680199991, 49.248883312000039 ], [ -122.782974587999988, 49.248882539000149 ], [ -122.782972763999936, 49.249298474000049 ], [ -122.786270098999964, 49.249396770000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.753134040501447", "sL_AssetLoss": "10370", "sL_BldgLoss": "7810", "sL_StrLoss": "3380", "sL_NStrLoss": "4430", "sL_ContLoss": "2560", "geom_point": "0101000020E6100000ADA7B11890B25EC0270E24189C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79012802599999, 49.238762315000081 ], [ -122.790437327999967, 49.238758771000093 ], [ -122.790435537999912, 49.239181451000078 ], [ -122.790023406999921, 49.239180702000034 ], [ -122.79002226299994, 49.239450558000037 ], [ -122.789610128, 49.239449807000021 ], [ -122.78960898099993, 49.239719664000063 ], [ -122.789415267999942, 49.239719310000062 ], [ -122.789781552999926, 49.239211207000025 ], [ -122.7900271399999, 49.23887054600003 ], [ -122.790085063999982, 49.23880841800009 ], [ -122.79012802599999, 49.238762315000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9316918", "BldgCostT": "6161668", "sL_LossRatio": "0.668704156479218", "sL_AssetLoss": "212680", "sL_BldgLoss": "142220", "sL_StrLoss": "67120", "sL_NStrLoss": "75100", "sL_ContLoss": "70460", "geom_point": "0101000020E610000062D6A43E7DB35EC06033654CE69E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804442722999951, 49.240555298000032 ], [ -122.805679153999975, 49.240557384000049 ], [ -122.805674919999959, 49.241636807000113 ], [ -122.805262766999931, 49.241636113000013 ], [ -122.805261768999969, 49.241889936000106 ], [ -122.804430815999979, 49.242037793000073 ], [ -122.803935608999922, 49.242173583000081 ], [ -122.803199856, 49.242172332000045 ], [ -122.803203072999978, 49.241362765000076 ], [ -122.803615222999923, 49.241363466000038 ], [ -122.80361629399998, 49.241093610000071 ], [ -122.80444059099996, 49.241095008000073 ], [ -122.804442722999951, 49.240555298000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130050000", "BldgCostT": "88065000", "sL_LossRatio": "0.754011821782417", "sL_AssetLoss": "1661340", "sL_BldgLoss": "1252670", "sL_StrLoss": "566250", "sL_NStrLoss": "686420", "sL_ContLoss": "408670", "geom_point": "0101000020E61000000F58FF083FB25EC081BF80DAFF9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78490868399993, 49.242578601000083 ], [ -122.783353686999931, 49.241829494000058 ], [ -122.783572383999939, 49.241526995000115 ], [ -122.783691196999882, 49.241260299000039 ], [ -122.7837603, 49.240798407000071 ], [ -122.783748383999978, 49.240374608000081 ], [ -122.783754494999954, 49.239890914000078 ], [ -122.783701197999932, 49.239629897000086 ], [ -122.783656607999916, 49.239578985 ], [ -122.783307865999944, 49.239171727000048 ], [ -122.783254469999989, 49.239109350000021 ], [ -122.784630454999927, 49.238849198000068 ], [ -122.787380926999958, 49.238782427000061 ], [ -122.789645267999944, 49.23876585600005 ], [ -122.79012802599999, 49.238762315000081 ], [ -122.790085063999982, 49.23880841800009 ], [ -122.7900271399999, 49.23887054600003 ], [ -122.789781552999926, 49.239211207000025 ], [ -122.789415267999942, 49.239719310000062 ], [ -122.789306806999932, 49.239719113000092 ], [ -122.78919620100001, 49.239870141000054 ], [ -122.789195546999935, 49.24002409900006 ], [ -122.789026695999908, 49.240258316000073 ], [ -122.788912070999942, 49.240258107000081 ], [ -122.788781645999933, 49.240436192000068 ], [ -122.788780949999989, 49.240599196000083 ], [ -122.788638115999973, 49.240797321000095 ], [ -122.788517325999962, 49.240797100000094 ], [ -122.788367080999976, 49.241002242000064 ], [ -122.788366804999939, 49.241066681000071 ], [ -122.78831994799998, 49.241066596000032 ], [ -122.787952507999989, 49.241568288000039 ], [ -122.787952346999958, 49.241605637000092 ], [ -122.787925187999932, 49.241605587000045 ], [ -122.787553134999925, 49.242113562000043 ], [ -122.787537973, 49.242122757000068 ], [ -122.787537879999888, 49.242144590000102 ], [ -122.78750207599991, 49.242144524000047 ], [ -122.787407310999953, 49.242201990000083 ], [ -122.787491497999923, 49.242204498000056 ], [ -122.787226092999944, 49.242370113000064 ], [ -122.78541358299999, 49.243501131000052 ], [ -122.785355958999929, 49.24353706200008 ], [ -122.785018030999964, 49.243874068000103 ], [ -122.78426557399996, 49.244624476000055 ], [ -122.783710184999975, 49.245088086000052 ], [ -122.783090906999945, 49.245659700000047 ], [ -122.783032604999946, 49.245752865000114 ], [ -122.782900599999948, 49.24596377400006 ], [ -122.78288550799995, 49.245987899000099 ], [ -122.782759618999947, 49.246318406000043 ], [ -122.782720707999928, 49.246542398000031 ], [ -122.782722206999964, 49.247907389000069 ], [ -122.782484399999987, 49.247909314000019 ], [ -122.782298289999943, 49.24797860100005 ], [ -122.781847093999914, 49.248384013000063 ], [ -122.781626186999958, 49.24845939800008 ], [ -122.781479704999967, 49.248433397000028 ], [ -122.78175178699999, 49.247662795000032 ], [ -122.78181808699999, 49.247474993000026 ], [ -122.781094087, 49.247358810000087 ], [ -122.780439313999963, 49.24725369600008 ], [ -122.780741891999966, 49.246456416000044 ], [ -122.780976196999987, 49.245909300000065 ], [ -122.781076813999945, 49.245529406000067 ], [ -122.781124757999933, 49.245127945000085 ], [ -122.781152110999955, 49.244899201000116 ], [ -122.781778607999982, 49.244915197000054 ], [ -122.782192400999946, 49.244850913000057 ], [ -122.782528803, 49.244694303000074 ], [ -122.782858786999938, 49.244451905000069 ], [ -122.78344289799999, 49.243851215000092 ], [ -122.784194203999903, 49.243157402000122 ], [ -122.784602209999917, 49.242780308000079 ], [ -122.78490868399993, 49.242578601000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67636500", "BldgCostT": "44700000", "sL_LossRatio": "0.752159743225727", "sL_AssetLoss": "810050", "sL_BldgLoss": "609287", "sL_StrLoss": "276897", "sL_NStrLoss": "332390", "sL_ContLoss": "200763", "geom_point": "0101000020E6100000C6E30585FFB15EC0B16A7310329F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778993204999935, 49.242896799000107 ], [ -122.779157427999905, 49.242727801000086 ], [ -122.779388802999947, 49.24259859900009 ], [ -122.77967281399999, 49.242504409000048 ], [ -122.779961425999957, 49.242462602000103 ], [ -122.780176484999942, 49.242469910000047 ], [ -122.78154890699993, 49.242702800000089 ], [ -122.782172212999924, 49.242904297000067 ], [ -122.783353686999931, 49.241829494000058 ], [ -122.78490868399993, 49.242578601000083 ], [ -122.784602209999917, 49.242780308000079 ], [ -122.784194203999903, 49.243157402000122 ], [ -122.78344289799999, 49.243851215000092 ], [ -122.782858786999938, 49.244451905000069 ], [ -122.782528803, 49.244694303000074 ], [ -122.782192400999946, 49.244850913000057 ], [ -122.781778607999982, 49.244915197000054 ], [ -122.781152110999955, 49.244899201000116 ], [ -122.781124757999933, 49.245127945000085 ], [ -122.781076813999945, 49.245529406000067 ], [ -122.779975518999962, 49.245464996000116 ], [ -122.779543197999928, 49.245361094000081 ], [ -122.779321801999956, 49.245246305000052 ], [ -122.778636009999971, 49.244738404000117 ], [ -122.778055209999948, 49.244497692000081 ], [ -122.778656589999969, 49.243688498000061 ], [ -122.778864583999948, 49.243165912000087 ], [ -122.778993204999935, 49.242896799000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80239552", "BldgCostT": "53368745", "sL_LossRatio": "0.702075318953994", "sL_AssetLoss": "1593490", "sL_BldgLoss": "1118750", "sL_StrLoss": "460020", "sL_NStrLoss": "658730", "sL_ContLoss": "474740", "geom_point": "0101000020E6100000AB4F4908DCB15EC0B1D1A4DAC89E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781350493, 49.240810298000078 ], [ -122.781371509999957, 49.240389190000045 ], [ -122.780155889999961, 49.240411490000056 ], [ -122.779883315999925, 49.24042140500007 ], [ -122.778882792, 49.240588794000139 ], [ -122.778817185999984, 49.240474776000113 ], [ -122.778754097999965, 49.240365089000086 ], [ -122.778060513999932, 49.239713699000049 ], [ -122.778039062999966, 49.239305868000088 ], [ -122.778038595999973, 49.239296810000084 ], [ -122.776892794999938, 49.239322994000126 ], [ -122.776899785999916, 49.239425529000108 ], [ -122.77690340099997, 49.23947851500003 ], [ -122.776910710999957, 49.23958579599999 ], [ -122.776927342999912, 49.239829879000098 ], [ -122.776933607999979, 49.239921496000079 ], [ -122.777338679999929, 49.240318294000062 ], [ -122.776609790999927, 49.240530804000031 ], [ -122.776329808999918, 49.240665703000083 ], [ -122.7760527199999, 49.240958293000077 ], [ -122.775521197000018, 49.241531708000153 ], [ -122.775298709999959, 49.241926793000076 ], [ -122.775250498999938, 49.242165004000121 ], [ -122.77465829099998, 49.242163558000037 ], [ -122.773410501999962, 49.242160498000018 ], [ -122.773784601, 49.241085093000052 ], [ -122.773867408999962, 49.240665006000064 ], [ -122.773853113999948, 49.240396100000076 ], [ -122.773795704999912, 49.240135793000029 ], [ -122.77363527199999, 49.239968229000048 ], [ -122.773595909000022, 49.239927082000108 ], [ -122.773081098999953, 49.239589201000065 ], [ -122.77329954199999, 49.239449482000026 ], [ -122.77400941399992, 49.239416425000066 ], [ -122.775045411999884, 49.239282558000099 ], [ -122.776863416999944, 49.239047638000102 ], [ -122.777110578999981, 49.2390098750001 ], [ -122.77817190899998, 49.239033523000039 ], [ -122.781349897, 49.239070758000032 ], [ -122.782636831999966, 49.239089428000057 ], [ -122.783254469999989, 49.239109350000021 ], [ -122.783307865999944, 49.239171727000048 ], [ -122.783656607999916, 49.239578985 ], [ -122.783701197999932, 49.239629897000086 ], [ -122.783754494999954, 49.239890914000078 ], [ -122.783748383999978, 49.240374608000081 ], [ -122.7837603, 49.240798407000071 ], [ -122.783691196999882, 49.241260299000039 ], [ -122.783572383999939, 49.241526995000115 ], [ -122.783353686999931, 49.241829494000058 ], [ -122.782172212999924, 49.242904297000067 ], [ -122.78154890699993, 49.242702800000089 ], [ -122.780176484999942, 49.242469910000047 ], [ -122.780409185999972, 49.241946212000137 ], [ -122.781059391, 49.241284495000052 ], [ -122.781252898999981, 49.241028991000071 ], [ -122.781350493, 49.240810298000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157504251", "BldgCostT": "104105001", "sL_LossRatio": "0.700674108039972", "sL_AssetLoss": "2736950", "sL_BldgLoss": "1917710", "sL_StrLoss": "833280", "sL_NStrLoss": "1084430", "sL_ContLoss": "819240", "geom_point": "0101000020E610000001C23D8552B25EC0B3D9573F329E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78295090499995, 49.238427195000085 ], [ -122.783198792999912, 49.238100404000164 ], [ -122.784340891999975, 49.237076692000052 ], [ -122.78490639099999, 49.236604407000065 ], [ -122.78506919499992, 49.236375910000092 ], [ -122.785129108999968, 49.236126300000102 ], [ -122.78506389799999, 49.235362094000074 ], [ -122.784982510999953, 49.234475903000053 ], [ -122.784988394, 49.234171498000109 ], [ -122.785138210999918, 49.233793997000092 ], [ -122.785831190999943, 49.232908296000041 ], [ -122.785926788000026, 49.232637207000046 ], [ -122.787237904999955, 49.2329781070001 ], [ -122.788452682999932, 49.233282798000118 ], [ -122.788789587999943, 49.233375695000063 ], [ -122.78958172399993, 49.233735406000065 ], [ -122.788657184, 49.234553811000062 ], [ -122.788484390999898, 49.234769404000112 ], [ -122.788328818999929, 49.236423400000064 ], [ -122.78805321899992, 49.236417005000085 ], [ -122.78784289699999, 49.236478294000037 ], [ -122.78759149899993, 49.236599688000076 ], [ -122.787419106999963, 49.236748596000055 ], [ -122.78637379599995, 49.237664374000111 ], [ -122.786275488999976, 49.237855175000064 ], [ -122.786253368999922, 49.238213976000033 ], [ -122.787420907999945, 49.238210920000036 ], [ -122.787668702999923, 49.238261552 ], [ -122.787874488999933, 49.238364092000069 ], [ -122.788008863999949, 49.238505940000039 ], [ -122.787380926999958, 49.238782427000061 ], [ -122.784630454999927, 49.238849198000068 ], [ -122.783254469999989, 49.239109350000021 ], [ -122.783074702999969, 49.23889938700006 ], [ -122.783065042999965, 49.238877892000033 ], [ -122.783010507, 49.238756087000077 ], [ -122.78300009500002, 49.238698704000086 ], [ -122.78295090499995, 49.238427195000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63699667", "BldgCostT": "42096667", "sL_LossRatio": "0.718651759456445", "sL_AssetLoss": "788880", "sL_BldgLoss": "566930", "sL_StrLoss": "253010", "sL_NStrLoss": "313920", "sL_ContLoss": "221950", "geom_point": "0101000020E6100000A137E4B876B25EC007E2A737449E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787668702999923, 49.238261552 ], [ -122.787420907999945, 49.238210920000036 ], [ -122.786253368999922, 49.238213976000033 ], [ -122.786275488999976, 49.237855175000064 ], [ -122.78637379599995, 49.237664374000111 ], [ -122.787419106999963, 49.236748596000055 ], [ -122.78759149899993, 49.236599688000076 ], [ -122.78784289699999, 49.236478294000037 ], [ -122.78805321899992, 49.236417005000085 ], [ -122.788328818999929, 49.236423400000064 ], [ -122.788484390999898, 49.234769404000112 ], [ -122.788657184, 49.234553811000062 ], [ -122.78958172399993, 49.233735406000065 ], [ -122.789841385999949, 49.233494398000076 ], [ -122.790138622999905, 49.233625798000027 ], [ -122.790285701999949, 49.233741895000072 ], [ -122.790392, 49.233873007000092 ], [ -122.79039650799993, 49.234025417000062 ], [ -122.790295832999959, 49.234231414000142 ], [ -122.789651822999943, 49.234806924000061 ], [ -122.789496082999975, 49.235112217000037 ], [ -122.789366792999914, 49.236445360000126 ], [ -122.789268222999965, 49.237473112000011 ], [ -122.789335080999962, 49.237638176000083 ], [ -122.789456251999965, 49.237772408000097 ], [ -122.78925439699999, 49.23791144700008 ], [ -122.788648966999929, 49.238225878 ], [ -122.788008863999949, 49.238505940000039 ], [ -122.787874488999933, 49.238364092000069 ], [ -122.787668702999923, 49.238261552 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81186833", "BldgCostT": "55463333", "sL_LossRatio": "0.694185432669642", "sL_AssetLoss": "3542310", "sL_BldgLoss": "2459020", "sL_StrLoss": "981410", "sL_NStrLoss": "1477610", "sL_ContLoss": "1083290", "geom_point": "0101000020E6100000D86C9B9824B25EC0C1E6D2AEF89D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779666724000023, 49.2331514010001 ], [ -122.779864707999934, 49.233028385000047 ], [ -122.779947148999938, 49.232995821000053 ], [ -122.780549491999977, 49.232757894000038 ], [ -122.781959890999985, 49.232518006000085 ], [ -122.78205305799996, 49.232504793000018 ], [ -122.783574590999962, 49.232289096000024 ], [ -122.78476390199999, 49.232120507000012 ], [ -122.785479013, 49.231867101000027 ], [ -122.785862676999969, 49.232314590000058 ], [ -122.785926788000026, 49.232637207000046 ], [ -122.785831190999943, 49.232908296000041 ], [ -122.785138210999918, 49.233793997000092 ], [ -122.784988394, 49.234171498000109 ], [ -122.784982510999953, 49.234475903000053 ], [ -122.78506389799999, 49.235362094000074 ], [ -122.785129108999968, 49.236126300000102 ], [ -122.78506919499992, 49.236375910000092 ], [ -122.78490639099999, 49.236604407000065 ], [ -122.784340891999975, 49.237076692000052 ], [ -122.783615297999944, 49.236766787000086 ], [ -122.78264878499999, 49.23674240600009 ], [ -122.782551793999943, 49.236635903000064 ], [ -122.782555293999934, 49.235991805000033 ], [ -122.782556096999926, 49.235846438000053 ], [ -122.78255672499999, 49.235738501000057 ], [ -122.782558807999933, 49.235367599000085 ], [ -122.782564795999974, 49.234524189000076 ], [ -122.782565088999974, 49.234482996000068 ], [ -122.782502177, 49.234341496000106 ], [ -122.78235360199993, 49.234167691000053 ], [ -122.782115292999904, 49.234019114000027 ], [ -122.781855897999904, 49.233918603000028 ], [ -122.781360998999943, 49.233807410000068 ], [ -122.78037402299999, 49.233545509000081 ], [ -122.779976877999957, 49.233371500000011 ], [ -122.779666724000023, 49.2331514010001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130790478", "BldgCostT": "88819857", "sL_LossRatio": "0.701275742629075", "sL_AssetLoss": "5147590", "sL_BldgLoss": "3609880", "sL_StrLoss": "1412670", "sL_NStrLoss": "2197210", "sL_ContLoss": "1537710", "geom_point": "0101000020E61000007F139E2BE5B15EC0526F7096509E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.773517273999957, 49.239310209000088 ], [ -122.774406683999956, 49.238741343000108 ], [ -122.77476580099993, 49.238511645000138 ], [ -122.774961004999952, 49.238386788000071 ], [ -122.776031787999926, 49.237285401000101 ], [ -122.776588209999929, 49.236708304000075 ], [ -122.776917325999975, 49.236347575000103 ], [ -122.777021245999904, 49.236233666000082 ], [ -122.777255599999989, 49.235976784000123 ], [ -122.777301381999976, 49.23591412800004 ], [ -122.777718495999977, 49.235342917000033 ], [ -122.778320889999932, 49.234538303000043 ], [ -122.77904119899992, 49.233597590999985 ], [ -122.779349394999926, 49.233330217000137 ], [ -122.779666724000023, 49.2331514010001 ], [ -122.779976877999957, 49.233371500000011 ], [ -122.78037402299999, 49.233545509000081 ], [ -122.781360998999943, 49.233807410000068 ], [ -122.781855897999904, 49.233918603000028 ], [ -122.782115292999904, 49.234019114000027 ], [ -122.78235360199993, 49.234167691000053 ], [ -122.782502177, 49.234341496000106 ], [ -122.782565088999974, 49.234482996000068 ], [ -122.782564795999974, 49.234524189000076 ], [ -122.782558807999933, 49.235367599000085 ], [ -122.78255672499999, 49.235738501000057 ], [ -122.782556096999926, 49.235846438000053 ], [ -122.782555293999934, 49.235991805000033 ], [ -122.782551793999943, 49.236635903000064 ], [ -122.78264878499999, 49.23674240600009 ], [ -122.783615297999944, 49.236766787000086 ], [ -122.784340891999975, 49.237076692000052 ], [ -122.783198792999912, 49.238100404000164 ], [ -122.78295090499995, 49.238427195000085 ], [ -122.78300009500002, 49.238698704000086 ], [ -122.783010507, 49.238756087000077 ], [ -122.783065042999965, 49.238877892000033 ], [ -122.783074702999969, 49.23889938700006 ], [ -122.783254469999989, 49.239109350000021 ], [ -122.782636831999966, 49.239089428000057 ], [ -122.781349897, 49.239070758000032 ], [ -122.77817190899998, 49.239033523000039 ], [ -122.777110578999981, 49.2390098750001 ], [ -122.776863416999944, 49.239047638000102 ], [ -122.775045411999884, 49.239282558000099 ], [ -122.77400941399992, 49.239416425000066 ], [ -122.77329954199999, 49.239449482000026 ], [ -122.773517273999957, 49.239310209000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43920416", "BldgCostT": "29816666", "sL_LossRatio": "0.759199609565642", "sL_AssetLoss": "512250", "sL_BldgLoss": "388900", "sL_StrLoss": "181600", "sL_NStrLoss": "207300", "sL_ContLoss": "123350", "geom_point": "0101000020E6100000B2F3897EA5B15EC0F0C6FE89FC9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.776892794999938, 49.239322994000126 ], [ -122.778038595999973, 49.239296810000084 ], [ -122.778039062999966, 49.239305868000088 ], [ -122.778060513999932, 49.239713699000049 ], [ -122.778754097999965, 49.240365089000086 ], [ -122.778817185999984, 49.240474776000113 ], [ -122.778882792, 49.240588794000139 ], [ -122.777874502999978, 49.240968593000105 ], [ -122.777236702999943, 49.241351396000027 ], [ -122.776754288999911, 49.241772117000068 ], [ -122.776422109999942, 49.242243299000066 ], [ -122.776216482999942, 49.242652508000063 ], [ -122.776155193999955, 49.242921910000106 ], [ -122.776128505999949, 49.243267898000092 ], [ -122.776150801999975, 49.243598403000064 ], [ -122.77561278899995, 49.243612907000049 ], [ -122.775331483999949, 49.243708092000126 ], [ -122.774973616999944, 49.243937090000045 ], [ -122.774579189999884, 49.244216300000105 ], [ -122.774210902999982, 49.244475503000082 ], [ -122.774182644999939, 49.244486118000097 ], [ -122.773847098999951, 49.244612411000041 ], [ -122.773493205999969, 49.244584695000043 ], [ -122.773402406999978, 49.243500794000042 ], [ -122.773306605999949, 49.24292320200005 ], [ -122.773309185999963, 49.242530394000049 ], [ -122.773410501999962, 49.242160498000018 ], [ -122.77465829099998, 49.242163558000037 ], [ -122.775250498999938, 49.242165004000121 ], [ -122.775298709999959, 49.241926793000076 ], [ -122.775521197000018, 49.241531708000153 ], [ -122.7760527199999, 49.240958293000077 ], [ -122.776329808999918, 49.240665703000083 ], [ -122.776609790999927, 49.240530804000031 ], [ -122.777338679999929, 49.240318294000062 ], [ -122.776933607999979, 49.239921496000079 ], [ -122.776927342999912, 49.239829879000098 ], [ -122.776910710999957, 49.23958579599999 ], [ -122.77690340099997, 49.23947851500003 ], [ -122.776899785999916, 49.239425529000108 ], [ -122.776892794999938, 49.239322994000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94579500", "BldgCostT": "64020000", "sL_LossRatio": "0.760113853315782", "sL_AssetLoss": "1147090", "sL_BldgLoss": "871919", "sL_StrLoss": "406899", "sL_NStrLoss": "465020", "sL_ContLoss": "275171", "geom_point": "0101000020E610000007D30F6E5BB15EC05292D862F59E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771904026999977, 49.242869214000024 ], [ -122.771906328999933, 49.24251910800006 ], [ -122.768297511999918, 49.242510995000067 ], [ -122.768153205999965, 49.24217599400005 ], [ -122.768132105999882, 49.241828496000089 ], [ -122.767957118999931, 49.241087199000049 ], [ -122.767738100999949, 49.24038689200011 ], [ -122.771915425999964, 49.240394901000066 ], [ -122.773853113999948, 49.240396100000076 ], [ -122.773867408999962, 49.240665006000064 ], [ -122.773784601, 49.241085093000052 ], [ -122.773410501999962, 49.242160498000018 ], [ -122.773309185999963, 49.242530394000049 ], [ -122.773306605999949, 49.24292320200005 ], [ -122.773402406999978, 49.243500794000042 ], [ -122.773493205999969, 49.244584695000043 ], [ -122.771892916999917, 49.244588202000109 ], [ -122.771904026999977, 49.242869214000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101874584", "BldgCostT": "69313334", "sL_LossRatio": "0.765229890156691", "sL_AssetLoss": "1127060", "sL_BldgLoss": "862460", "sL_StrLoss": "409160", "sL_NStrLoss": "453300", "sL_ContLoss": "264600", "geom_point": "0101000020E6100000155F1F634FB15EC0D0AE6B49819F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76910449699993, 49.247999940000106 ], [ -122.769108905999985, 49.2473670910001 ], [ -122.76864561799999, 49.247373098000061 ], [ -122.768478988999931, 49.247340204000089 ], [ -122.768378998999978, 49.24729570300007 ], [ -122.767598751999984, 49.246240594000035 ], [ -122.767519096999948, 49.246132910000057 ], [ -122.767242915999987, 49.24459750400014 ], [ -122.769000036999941, 49.244587573000018 ], [ -122.769139106999944, 49.24458680700014 ], [ -122.771892916999917, 49.244588202000109 ], [ -122.773493205999969, 49.244584695000043 ], [ -122.773515944999971, 49.244717118000068 ], [ -122.773573418999945, 49.245052 ], [ -122.773532377999956, 49.245443601000069 ], [ -122.773408802999967, 49.245832449000027 ], [ -122.773212384999908, 49.246450310000043 ], [ -122.773081201999972, 49.246697691000051 ], [ -122.772487783999964, 49.247271001000065 ], [ -122.77211609699999, 49.247677899000109 ], [ -122.771918086000014, 49.248154011000054 ], [ -122.771196066999934, 49.248154560000081 ], [ -122.769103401, 49.248156189000092 ], [ -122.76910449699993, 49.247999940000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133991417", "BldgCostT": "86281667", "sL_LossRatio": "0.741222366710013", "sL_AssetLoss": "1491860", "sL_BldgLoss": "1105800", "sL_StrLoss": "512190", "sL_NStrLoss": "593610", "sL_ContLoss": "386060", "geom_point": "0101000020E6100000C16127C4B5B15EC042E835B0349F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.773212384999908, 49.246450310000043 ], [ -122.773408802999967, 49.245832449000027 ], [ -122.773532377999956, 49.245443601000069 ], [ -122.773573418999945, 49.245052 ], [ -122.773515944999971, 49.244717118000068 ], [ -122.773493205999969, 49.244584695000043 ], [ -122.773847098999951, 49.244612411000041 ], [ -122.774182644999939, 49.244486118000097 ], [ -122.774210902999982, 49.244475503000082 ], [ -122.774579189999884, 49.244216300000105 ], [ -122.774973616999944, 49.243937090000045 ], [ -122.775331483999949, 49.243708092000126 ], [ -122.77561278899995, 49.243612907000049 ], [ -122.776150801999975, 49.243598403000064 ], [ -122.776128505999949, 49.243267898000092 ], [ -122.776155193999955, 49.242921910000106 ], [ -122.776216482999942, 49.242652508000063 ], [ -122.776422109999942, 49.242243299000066 ], [ -122.776754288999911, 49.241772117000068 ], [ -122.777236702999943, 49.241351396000027 ], [ -122.777874502999978, 49.240968593000105 ], [ -122.778882792, 49.240588794000139 ], [ -122.779883315999925, 49.24042140500007 ], [ -122.780155889999961, 49.240411490000056 ], [ -122.781371509999957, 49.240389190000045 ], [ -122.781350493, 49.240810298000078 ], [ -122.781252898999981, 49.241028991000071 ], [ -122.781059391, 49.241284495000052 ], [ -122.780409185999972, 49.241946212000137 ], [ -122.780176484999942, 49.242469910000047 ], [ -122.779961425999957, 49.242462602000103 ], [ -122.77967281399999, 49.242504409000048 ], [ -122.779388802999947, 49.24259859900009 ], [ -122.779157427999905, 49.242727801000086 ], [ -122.778993204999935, 49.242896799000107 ], [ -122.778864583999948, 49.243165912000087 ], [ -122.778656589999969, 49.243688498000061 ], [ -122.778055209999948, 49.244497692000081 ], [ -122.777839609, 49.24443720000005 ], [ -122.777243709999965, 49.244356305000039 ], [ -122.776243891999968, 49.244374203000071 ], [ -122.776340421, 49.245198692000024 ], [ -122.776371301999973, 49.245703306000053 ], [ -122.776334499999919, 49.24589680400009 ], [ -122.776180889000031, 49.246308410000026 ], [ -122.775595199999927, 49.246257584000034 ], [ -122.77524121, 49.246291992000081 ], [ -122.775003819999952, 49.246367798000044 ], [ -122.774752810999971, 49.246500890000092 ], [ -122.774169790999949, 49.24704290800004 ], [ -122.773770887999916, 49.247545396000113 ], [ -122.773476903999949, 49.248158288000049 ], [ -122.772803543999927, 49.24815644800001 ], [ -122.771918086000014, 49.248154011000054 ], [ -122.77211609699999, 49.247677899000109 ], [ -122.772487783999964, 49.247271001000065 ], [ -122.773081201999972, 49.246697691000051 ], [ -122.773212384999908, 49.246450310000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92079250", "BldgCostT": "61765000", "sL_LossRatio": "0.775503754318283", "sL_AssetLoss": "917610", "sL_BldgLoss": "711610", "sL_StrLoss": "347300", "sL_NStrLoss": "364310", "sL_ContLoss": "206000", "geom_point": "0101000020E61000000A71D50ACDB15EC0485A01F0959F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.776243891999968, 49.244374203000071 ], [ -122.777243709999965, 49.244356305000039 ], [ -122.777839609, 49.24443720000005 ], [ -122.778055209999948, 49.244497692000081 ], [ -122.778636009999971, 49.244738404000117 ], [ -122.779321801999956, 49.245246305000052 ], [ -122.779543197999928, 49.245361094000081 ], [ -122.779975518999962, 49.245464996000116 ], [ -122.781076813999945, 49.245529406000067 ], [ -122.780976196999987, 49.245909300000065 ], [ -122.780741891999966, 49.246456416000044 ], [ -122.780439313999963, 49.24725369600008 ], [ -122.78010181599997, 49.24809949100009 ], [ -122.779831293999933, 49.248789706000096 ], [ -122.779607512999974, 49.248789301000102 ], [ -122.778461501999971, 49.248933386000047 ], [ -122.778010304999924, 49.248942492000047 ], [ -122.777643799999979, 49.248899101000063 ], [ -122.77703791799992, 49.248703504000055 ], [ -122.776451079999944, 49.2484499010001 ], [ -122.775267004999975, 49.248015390000099 ], [ -122.776180889000031, 49.246308410000026 ], [ -122.776334499999919, 49.24589680400009 ], [ -122.776371301999973, 49.245703306000053 ], [ -122.776340421, 49.245198692000024 ], [ -122.776243891999968, 49.244374203000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120639478", "BldgCostT": "75239857", "sL_LossRatio": "0.721584675491012", "sL_AssetLoss": "1208626", "sL_BldgLoss": "872126", "sL_StrLoss": "400686", "sL_NStrLoss": "471440", "sL_ContLoss": "336500", "geom_point": "0101000020E61000000429BA268BB15EC03E2F151BF39F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77524121, 49.246291992000081 ], [ -122.775595199999927, 49.246257584000034 ], [ -122.776180889000031, 49.246308410000026 ], [ -122.775267004999975, 49.248015390000099 ], [ -122.776451079999944, 49.2484499010001 ], [ -122.776201594999989, 49.249135314000036 ], [ -122.776171877999928, 49.249992190000057 ], [ -122.776149499999974, 49.25063650100001 ], [ -122.775933795999904, 49.250715710000108 ], [ -122.774796492999926, 49.250733907000026 ], [ -122.77484808799997, 49.252066184000093 ], [ -122.774730692999967, 49.252313109000092 ], [ -122.774612111999886, 49.252437484000104 ], [ -122.774329983999976, 49.252583099000098 ], [ -122.773378111999975, 49.252996087000028 ], [ -122.773095805999986, 49.252669590000075 ], [ -122.77264182199994, 49.251988504000039 ], [ -122.772352810999948, 49.251147298000056 ], [ -122.772301196999962, 49.250901608000028 ], [ -122.772117001999931, 49.250132991000022 ], [ -122.771909676999911, 49.249183496000043 ], [ -122.771843303999944, 49.248795881000071 ], [ -122.771918086000014, 49.248154011000054 ], [ -122.772803543999927, 49.24815644800001 ], [ -122.773476903999949, 49.248158288000049 ], [ -122.773770887999916, 49.247545396000113 ], [ -122.774169790999949, 49.24704290800004 ], [ -122.774752810999971, 49.246500890000092 ], [ -122.775003819999952, 49.246367798000044 ], [ -122.77524121, 49.246291992000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164521333", "BldgCostT": "111253333", "sL_LossRatio": "0.785653984344133", "sL_AssetLoss": "1295872", "sL_BldgLoss": "1018107", "sL_StrLoss": "473247", "sL_NStrLoss": "544860", "sL_ContLoss": "277765", "geom_point": "0101000020E6100000410AAF6EC6B15EC02117399724A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778545589999936, 49.254092904000046 ], [ -122.778326496999952, 49.254042296000108 ], [ -122.777888348999937, 49.254039455000054 ], [ -122.777819657999942, 49.254039009000081 ], [ -122.776633405, 49.25403131400008 ], [ -122.775295501999892, 49.253771515000011 ], [ -122.773635694999911, 49.253439896000046 ], [ -122.773545918999943, 49.25330929800004 ], [ -122.773378111999975, 49.252996087000028 ], [ -122.774329983999976, 49.252583099000098 ], [ -122.774612111999886, 49.252437484000104 ], [ -122.774730692999967, 49.252313109000092 ], [ -122.77484808799997, 49.252066184000093 ], [ -122.774796492999926, 49.250733907000026 ], [ -122.775933795999904, 49.250715710000108 ], [ -122.776149499999974, 49.25063650100001 ], [ -122.776171877999928, 49.249992190000057 ], [ -122.776201594999989, 49.249135314000036 ], [ -122.776451079999944, 49.2484499010001 ], [ -122.77703791799992, 49.248703504000055 ], [ -122.777643799999979, 49.248899101000063 ], [ -122.778010304999924, 49.248942492000047 ], [ -122.778461501999971, 49.248933386000047 ], [ -122.779607512999974, 49.248789301000102 ], [ -122.779831293999933, 49.248789706000096 ], [ -122.78010181599997, 49.24809949100009 ], [ -122.780439313999963, 49.24725369600008 ], [ -122.781094087, 49.247358810000087 ], [ -122.78181808699999, 49.247474993000026 ], [ -122.78175178699999, 49.247662795000032 ], [ -122.781479704999967, 49.248433397000028 ], [ -122.781458136999916, 49.248481485000084 ], [ -122.781232686999942, 49.248984592000042 ], [ -122.780778405999968, 49.249632392000066 ], [ -122.780428870999941, 49.25043279700003 ], [ -122.780047719999985, 49.251054977000081 ], [ -122.779466788999969, 49.252003212000091 ], [ -122.779041885999959, 49.25280139700002 ], [ -122.778868692999964, 49.253297208000063 ], [ -122.77860767199999, 49.253797273000075 ], [ -122.778564505999938, 49.253879991000112 ], [ -122.778545589999936, 49.254092904000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66766917", "BldgCostT": "45836667", "sL_LossRatio": "0.763482441471572", "sL_AssetLoss": "765440", "sL_BldgLoss": "584400", "sL_StrLoss": "281220", "sL_NStrLoss": "303180", "sL_ContLoss": "181040", "geom_point": "0101000020E610000066EDDF8AFEB15EC0ED3965453FA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781458136999916, 49.248481485000084 ], [ -122.781479704999967, 49.248433397000028 ], [ -122.781626186999958, 49.24845939800008 ], [ -122.781847093999914, 49.248384013000063 ], [ -122.782298289999943, 49.24797860100005 ], [ -122.782484399999987, 49.247909314000019 ], [ -122.782722206999964, 49.247907389000069 ], [ -122.782704629999941, 49.249112399000076 ], [ -122.78258701599999, 49.251501683000079 ], [ -122.782607609999985, 49.252046798000102 ], [ -122.782620908999931, 49.252398301000063 ], [ -122.782628369999969, 49.252856523000013 ], [ -122.782635814999963, 49.253313181000124 ], [ -122.782637931999943, 49.253765166000086 ], [ -122.782639950999965, 49.254184496000136 ], [ -122.782641104999982, 49.254583653000033 ], [ -122.780851482999978, 49.254577092000034 ], [ -122.780595491999989, 49.254544307000032 ], [ -122.778545589999936, 49.254092904000046 ], [ -122.778564505999938, 49.253879991000112 ], [ -122.77860767199999, 49.253797273000075 ], [ -122.778868692999964, 49.253297208000063 ], [ -122.779041885999959, 49.25280139700002 ], [ -122.779466788999969, 49.252003212000091 ], [ -122.780047719999985, 49.251054977000081 ], [ -122.780428870999941, 49.25043279700003 ], [ -122.780778405999968, 49.249632392000066 ], [ -122.781232686999942, 49.248984592000042 ], [ -122.781458136999916, 49.248481485000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91235667", "BldgCostT": "61271667", "sL_LossRatio": "0.722809426065631", "sL_AssetLoss": "1500520", "sL_BldgLoss": "1084590", "sL_StrLoss": "448070", "sL_NStrLoss": "636520", "sL_ContLoss": "415930", "geom_point": "0101000020E610000071E7D37447B15EC05072031540A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771897986999974, 49.25018050200007 ], [ -122.772117001999931, 49.250132991000022 ], [ -122.772301196999962, 49.250901608000028 ], [ -122.772352810999948, 49.251147298000056 ], [ -122.77264182199994, 49.251988504000039 ], [ -122.773095805999986, 49.252669590000075 ], [ -122.773378111999975, 49.252996087000028 ], [ -122.773545918999943, 49.25330929800004 ], [ -122.772903930999959, 49.253306415000054 ], [ -122.769907892999953, 49.253292960000103 ], [ -122.769119605999919, 49.25328938300003 ], [ -122.766780903999958, 49.25327788700011 ], [ -122.766759795999974, 49.252220394000027 ], [ -122.766759038999965, 49.25211497900009 ], [ -122.766752084999951, 49.25112829400004 ], [ -122.767919492999951, 49.251131689000097 ], [ -122.769102677999967, 49.25112659400007 ], [ -122.76911899199996, 49.250181110000021 ], [ -122.769894950999955, 49.250180932000092 ], [ -122.771406404999979, 49.250180618000066 ], [ -122.771897986999974, 49.25018050200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145444778", "BldgCostT": "94742957", "sL_LossRatio": "0.69497035408855", "sL_AssetLoss": "2706950", "sL_BldgLoss": "1881250", "sL_StrLoss": "766050", "sL_NStrLoss": "1115200", "sL_ContLoss": "825700", "geom_point": "0101000020E61000006970CFB10BB15EC0AD3B06F913A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771196066999934, 49.248154560000081 ], [ -122.771918086000014, 49.248154011000054 ], [ -122.771843303999944, 49.248795881000071 ], [ -122.771909676999911, 49.249183496000043 ], [ -122.772117001999931, 49.250132991000022 ], [ -122.771897986999974, 49.25018050200007 ], [ -122.771406404999979, 49.250180618000066 ], [ -122.769894950999955, 49.250180932000092 ], [ -122.76911899199996, 49.250181110000021 ], [ -122.769102677999967, 49.25112659400007 ], [ -122.767919492999951, 49.251131689000097 ], [ -122.766752084999951, 49.25112829400004 ], [ -122.766759038999965, 49.25211497900009 ], [ -122.766759795999974, 49.252220394000027 ], [ -122.766780903999958, 49.25327788700011 ], [ -122.764258121999916, 49.253263594000082 ], [ -122.763519496999933, 49.253259412000041 ], [ -122.762319272999946, 49.252775909000015 ], [ -122.762345908999961, 49.252359193000075 ], [ -122.762342405999945, 49.250166188000016 ], [ -122.762339987999937, 49.249156197000069 ], [ -122.763253411999955, 49.249158397000095 ], [ -122.765035480999956, 49.249164526000094 ], [ -122.765461579999965, 49.249165989000062 ], [ -122.766748521999972, 49.249170404000012 ], [ -122.769103002999941, 49.249188695000065 ], [ -122.769103401, 49.248156189000092 ], [ -122.771196066999934, 49.248154560000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "476613740", "BldgCostT": "265543031", "sL_LossRatio": "0.59480511644247", "sL_AssetLoss": "8485349", "sL_BldgLoss": "5047129", "sL_StrLoss": "1915399", "sL_NStrLoss": "3131730", "sL_ContLoss": "3438220", "geom_point": "0101000020E610000045FE80A49BB05EC004E51AF211A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756158205999895, 49.254631950000046 ], [ -122.75573663199999, 49.254454980000034 ], [ -122.755278367999949, 49.254271175000056 ], [ -122.754546822999913, 49.253978384000057 ], [ -122.754030753, 49.253758894000086 ], [ -122.751215793999975, 49.252495092000046 ], [ -122.750646637999935, 49.252269307000084 ], [ -122.750145312999948, 49.252016630000099 ], [ -122.748966945999939, 49.251564964000075 ], [ -122.745808658999948, 49.250147543000061 ], [ -122.745358237999952, 49.24998488600005 ], [ -122.745348118999971, 49.249980763000096 ], [ -122.743193573999974, 49.249103221000027 ], [ -122.742942400999965, 49.249339896 ], [ -122.740969364999984, 49.248413810000038 ], [ -122.740471132999915, 49.248255793000098 ], [ -122.739984877, 49.248068812000035 ], [ -122.739866627999959, 49.24801646700007 ], [ -122.739793583999955, 49.247984125000187 ], [ -122.7389561299999, 49.247575152000117 ], [ -122.737033929999939, 49.246646615 ], [ -122.73673037099999, 49.246530366000066 ], [ -122.736540475999931, 49.246431782000037 ], [ -122.736979176, 49.246284794000061 ], [ -122.737858406999962, 49.246133800000052 ], [ -122.740717904999954, 49.245753508000071 ], [ -122.742630994999956, 49.245334789000019 ], [ -122.743662076999982, 49.245022898000094 ], [ -122.744681392999951, 49.24453869400002 ], [ -122.746566912999938, 49.243869292000078 ], [ -122.750573718999931, 49.242277004000059 ], [ -122.75142831, 49.241873989000055 ], [ -122.75182790599996, 49.241586304000094 ], [ -122.753210741999936, 49.240996931000026 ], [ -122.75333428899998, 49.240997195000062 ], [ -122.753334553999977, 49.240944160000019 ], [ -122.755503418999965, 49.240019704000083 ], [ -122.757928285999952, 49.238774907000064 ], [ -122.760177610999961, 49.237419175000113 ], [ -122.759935691999942, 49.239267096000106 ], [ -122.761271232999889, 49.240329429000077 ], [ -122.761787311999939, 49.240739890000093 ], [ -122.761912748, 49.240850905000094 ], [ -122.762213516, 49.241166270000058 ], [ -122.76225128099999, 49.241256180000029 ], [ -122.762313605, 49.241404421000034 ], [ -122.762329695999966, 49.245603397000117 ], [ -122.762337913999943, 49.248103783000026 ], [ -122.762339987999937, 49.249156197000069 ], [ -122.762342405999945, 49.250166188000016 ], [ -122.762345908999961, 49.252359193000075 ], [ -122.762319272999946, 49.252775909000015 ], [ -122.763519496999933, 49.253259412000041 ], [ -122.764258121999916, 49.253263594000082 ], [ -122.766780903999958, 49.25327788700011 ], [ -122.769119605999919, 49.25328938300003 ], [ -122.769907892999953, 49.253292960000103 ], [ -122.772903930999959, 49.253306415000054 ], [ -122.773545918999943, 49.25330929800004 ], [ -122.773635694999911, 49.253439896000046 ], [ -122.775295501999892, 49.253771515000011 ], [ -122.775295118, 49.2546596110001 ], [ -122.775295063999948, 49.254821531000054 ], [ -122.775294891999977, 49.255203992000133 ], [ -122.777883443999912, 49.255203937000012 ], [ -122.778548104999956, 49.255203903000087 ], [ -122.778550902999939, 49.256094098000084 ], [ -122.778546082999924, 49.257012902000042 ], [ -122.778589990999933, 49.257905203000078 ], [ -122.778587882999943, 49.258092589000107 ], [ -122.778591181999957, 49.259074698000063 ], [ -122.778581004999964, 49.259973494000057 ], [ -122.778543682999938, 49.260827813000041 ], [ -122.778541505999968, 49.260877804000103 ], [ -122.778350693, 49.261646898 ], [ -122.777697784999972, 49.262501261000097 ], [ -122.77715622099997, 49.263275184000115 ], [ -122.779009439999967, 49.264110400000085 ], [ -122.77960112699995, 49.264377036000042 ], [ -122.77946468499999, 49.264517973000075 ], [ -122.779199614999925, 49.264396106000085 ], [ -122.779001682999962, 49.264310446000067 ], [ -122.778414184999946, 49.264024707000054 ], [ -122.777990120999945, 49.263870087000086 ], [ -122.777245036999915, 49.263595111 ], [ -122.777005270999965, 49.263472202000074 ], [ -122.7764227159999, 49.263189958000112 ], [ -122.775373588999969, 49.262738032000044 ], [ -122.774379719999928, 49.262339565000019 ], [ -122.77193654199999, 49.261285009000055 ], [ -122.7706390499999, 49.260762512000092 ], [ -122.770390589999934, 49.260629373000064 ], [ -122.76975562299999, 49.260408306000087 ], [ -122.768817068999951, 49.260027433000083 ], [ -122.767221918999923, 49.259337634000083 ], [ -122.766101448999976, 49.25883763700007 ], [ -122.765753406999963, 49.25872596900011 ], [ -122.763092723999975, 49.257553371000064 ], [ -122.761713973999932, 49.256989277000066 ], [ -122.761435306999886, 49.256851044000079 ], [ -122.761087217999943, 49.256730342000054 ], [ -122.760885827999914, 49.256639994000047 ], [ -122.759443187999921, 49.256007647000025 ], [ -122.759264296999959, 49.255929212000126 ], [ -122.75877338399998, 49.255738139000051 ], [ -122.756158205999895, 49.254631950000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "221795624", "BldgCostT": "131810231", "sL_LossRatio": "0.640037192743797", "sL_AssetLoss": "2763980", "sL_BldgLoss": "1769050", "sL_StrLoss": "651700", "sL_NStrLoss": "1117350", "sL_ContLoss": "994930", "geom_point": "0101000020E6100000EE0EBE6A04B15EC0FFD22677ED9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.762337913999943, 49.248103783000026 ], [ -122.762329695999966, 49.245603397000117 ], [ -122.762313605, 49.241404421000034 ], [ -122.76225128099999, 49.241256180000029 ], [ -122.762213516, 49.241166270000058 ], [ -122.761912748, 49.240850905000094 ], [ -122.761787311999939, 49.240739890000093 ], [ -122.761271232999889, 49.240329429000077 ], [ -122.759935691999942, 49.239267096000106 ], [ -122.760177610999961, 49.237419175000113 ], [ -122.762405899999976, 49.236075995000135 ], [ -122.764221095999929, 49.23560318600002 ], [ -122.764577100999972, 49.235640209000074 ], [ -122.765252307999901, 49.235264200000067 ], [ -122.765473389999983, 49.234949501000074 ], [ -122.765954588999975, 49.234788507000054 ], [ -122.766396689999965, 49.23448380400005 ], [ -122.767016808999983, 49.23379158200008 ], [ -122.767471976999929, 49.233747397000045 ], [ -122.767651786999963, 49.233451203000108 ], [ -122.767995001999935, 49.233298795000067 ], [ -122.769502411999937, 49.232312833000044 ], [ -122.769054974999946, 49.233282392000078 ], [ -122.768757704999942, 49.233988098000097 ], [ -122.768957841999935, 49.23407158400002 ], [ -122.769117615000013, 49.234242187000071 ], [ -122.769381182999979, 49.234480709000103 ], [ -122.769489001999915, 49.234608300000055 ], [ -122.769993803999967, 49.235109007000091 ], [ -122.770404599999949, 49.235520498000092 ], [ -122.767464675999946, 49.236563091000079 ], [ -122.766082306999962, 49.237107281000107 ], [ -122.766198072999941, 49.23729909500009 ], [ -122.766399699999937, 49.237854683000066 ], [ -122.766649973999947, 49.238580020000072 ], [ -122.7667550099999, 49.238884301000063 ], [ -122.770588291, 49.238900094000037 ], [ -122.770592654999916, 49.238566906000088 ], [ -122.770597799999948, 49.238172411000015 ], [ -122.771766300999971, 49.238194799000063 ], [ -122.771930843999897, 49.238536028000098 ], [ -122.772033893999975, 49.238749693000038 ], [ -122.772316894999946, 49.239064501000087 ], [ -122.772829982999951, 49.239416790000071 ], [ -122.773081098999953, 49.239589201000065 ], [ -122.773595909000022, 49.239927082000108 ], [ -122.77363527199999, 49.239968229000048 ], [ -122.773795704999912, 49.240135793000029 ], [ -122.773853113999948, 49.240396100000076 ], [ -122.771915425999964, 49.240394901000066 ], [ -122.767738100999949, 49.24038689200011 ], [ -122.767957118999931, 49.241087199000049 ], [ -122.768132105999882, 49.241828496000089 ], [ -122.768153205999965, 49.24217599400005 ], [ -122.768297511999918, 49.242510995000067 ], [ -122.771906328999933, 49.24251910800006 ], [ -122.771904026999977, 49.242869214000024 ], [ -122.771892916999917, 49.244588202000109 ], [ -122.769139106999944, 49.24458680700014 ], [ -122.769000036999941, 49.244587573000018 ], [ -122.767242915999987, 49.24459750400014 ], [ -122.767519096999948, 49.246132910000057 ], [ -122.767598751999984, 49.246240594000035 ], [ -122.768378998999978, 49.24729570300007 ], [ -122.768478988999931, 49.247340204000089 ], [ -122.76864561799999, 49.247373098000061 ], [ -122.769108905999985, 49.2473670910001 ], [ -122.76910449699993, 49.247999940000106 ], [ -122.769103401, 49.248156189000092 ], [ -122.769103002999941, 49.249188695000065 ], [ -122.766748521999972, 49.249170404000012 ], [ -122.765461579999965, 49.249165989000062 ], [ -122.765035480999956, 49.249164526000094 ], [ -122.763253411999955, 49.249158397000095 ], [ -122.762339987999937, 49.249156197000069 ], [ -122.762337913999943, 49.248103783000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91549561", "BldgCostT": "61518190", "sL_LossRatio": "0.752617650442987", "sL_AssetLoss": "1042920", "sL_BldgLoss": "784920", "sL_StrLoss": "370440", "sL_NStrLoss": "414480", "sL_ContLoss": "258000", "geom_point": "0101000020E61000002445BF1138B15EC07F84A3DC649E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767464675999946, 49.236563091000079 ], [ -122.770404599999949, 49.235520498000092 ], [ -122.771067806999966, 49.23615300299999 ], [ -122.771324788999934, 49.236447197000061 ], [ -122.771515177999959, 49.237085397000023 ], [ -122.771638218999954, 49.237764804000072 ], [ -122.771766300999971, 49.238194799000063 ], [ -122.770597799999948, 49.238172411000015 ], [ -122.770592654999916, 49.238566906000088 ], [ -122.770588291, 49.238900094000037 ], [ -122.7667550099999, 49.238884301000063 ], [ -122.766649973999947, 49.238580020000072 ], [ -122.766399699999937, 49.237854683000066 ], [ -122.766198072999941, 49.23729909500009 ], [ -122.766082306999962, 49.237107281000107 ], [ -122.767464675999946, 49.236563091000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6237418", "BldgCostT": "4301668", "sL_LossRatio": "0.731748878923767", "sL_AssetLoss": "111500", "sL_BldgLoss": "81590", "sL_StrLoss": "31310", "sL_NStrLoss": "50280", "sL_ContLoss": "29910", "geom_point": "0101000020E6100000F98169206FB35EC05183AB34909D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80229175, 49.231965637 ], [ -122.802521292999984, 49.231707999000058 ], [ -122.80314180499991, 49.23118808300012 ], [ -122.803639512, 49.230208303000055 ], [ -122.804024206999941, 49.229912003000052 ], [ -122.804303354999917, 49.229785444000086 ], [ -122.804517111999971, 49.229912228000082 ], [ -122.804949810999972, 49.230169192000119 ], [ -122.804787134999927, 49.230336928000114 ], [ -122.802916338999978, 49.232266057000054 ], [ -122.802576949999931, 49.232103208000062 ], [ -122.80229175, 49.231965637 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86902584", "BldgCostT": "58778334", "sL_LossRatio": "0.688179926977365", "sL_AssetLoss": "4023410", "sL_BldgLoss": "2768830", "sL_StrLoss": "1099830", "sL_NStrLoss": "1669000", "sL_ContLoss": "1254580", "geom_point": "0101000020E6100000AF0352286CB25EC0519773C6839D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.784791595999977, 49.231323992000085 ], [ -122.784525192999979, 49.231205213000038 ], [ -122.78405139099999, 49.231067695000021 ], [ -122.783750701999963, 49.230948796000099 ], [ -122.783737688999963, 49.230819611000115 ], [ -122.784121819999982, 49.230190388000089 ], [ -122.78436900599992, 49.229991495000085 ], [ -122.784673708999918, 49.229854593000027 ], [ -122.785484503999982, 49.229646297000045 ], [ -122.785810894999941, 49.229552515000186 ], [ -122.786203880999949, 49.229508305000095 ], [ -122.786626480999985, 49.229572296000136 ], [ -122.787310092999974, 49.22975299600008 ], [ -122.788499309999949, 49.230128095000055 ], [ -122.788888809999946, 49.229599109000041 ], [ -122.789087703999954, 49.229423102000069 ], [ -122.7893456799999, 49.229306393000066 ], [ -122.789717777999925, 49.229226498000081 ], [ -122.790061510999962, 49.229219589000088 ], [ -122.790421486999918, 49.229275399000109 ], [ -122.790677604999971, 49.229345198000068 ], [ -122.791109611999943, 49.229471500000102 ], [ -122.79134329399993, 49.229606386000107 ], [ -122.791495103000031, 49.229793896000061 ], [ -122.791543609999948, 49.22994579100002 ], [ -122.791526407999982, 49.230096609000071 ], [ -122.791077420999926, 49.230870702000054 ], [ -122.790854720999931, 49.231211800000061 ], [ -122.790697397999935, 49.231342303000076 ], [ -122.790493595999934, 49.231429909000134 ], [ -122.78997519, 49.231580302000118 ], [ -122.788862183999953, 49.231888595000036 ], [ -122.788452305999925, 49.23189980100009 ], [ -122.788135205999978, 49.231857900000072 ], [ -122.787414704999946, 49.231653603 ], [ -122.786246077000015, 49.231297993000105 ], [ -122.785930500999939, 49.23157328200007 ], [ -122.785566005999925, 49.231839905000143 ], [ -122.785479013, 49.231867101000027 ], [ -122.784965211000014, 49.231434601000032 ], [ -122.784791595999977, 49.231323992000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288287045", "BldgCostT": "178411793", "sL_LossRatio": "0.661257256186561", "sL_AssetLoss": "3590040", "sL_BldgLoss": "2373940", "sL_StrLoss": "938710", "sL_NStrLoss": "1435230", "sL_ContLoss": "1216100", "geom_point": "0101000020E6100000E7B0FCD8E8AF5EC003BD167817994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.757219508999967, 49.205111638000041 ], [ -122.757220817999936, 49.204844407000046 ], [ -122.756397125999968, 49.204842673000073 ], [ -122.756399775999952, 49.204302960000113 ], [ -122.755987934999951, 49.204302090000041 ], [ -122.755989262999961, 49.204032234000131 ], [ -122.755577423999938, 49.204031364000116 ], [ -122.755578753999913, 49.203761507000138 ], [ -122.755166916999883, 49.203760634000069 ], [ -122.755168249999912, 49.203490778000067 ], [ -122.753932745000029, 49.203488153000144 ], [ -122.753935423999962, 49.202948440000064 ], [ -122.753523592999926, 49.202947561000045 ], [ -122.753524935999948, 49.202677705000028 ], [ -122.752289450999953, 49.20267506200004 ], [ -122.752292146999977, 49.202135350000034 ], [ -122.751880323999956, 49.202134466000118 ], [ -122.751881672999929, 49.201864608000086 ], [ -122.751469851999914, 49.201863724000091 ], [ -122.751471204999973, 49.201593867000071 ], [ -122.750647566999945, 49.201592091000059 ], [ -122.750650279999945, 49.201052380000135 ], [ -122.750238465999985, 49.201051489000044 ], [ -122.75023982499998, 49.200781633000069 ], [ -122.749416201999964, 49.200779849000106 ], [ -122.74941756500003, 49.200509992000093 ], [ -122.748593943999936, 49.200508203000034 ], [ -122.748595312999925, 49.200238346000084 ], [ -122.748183504999957, 49.20023744900007 ], [ -122.74818487499995, 49.19996759300011 ], [ -122.747361264999967, 49.199965794000043 ], [ -122.747364014999931, 49.199426081000112 ], [ -122.746540412999963, 49.199424277000041 ], [ -122.746539033999952, 49.199694134 ], [ -122.746127230999974, 49.199693229000047 ], [ -122.746124469, 49.200232942000078 ], [ -122.744065432999918, 49.200228398000071 ], [ -122.744071000999909, 49.199148972000096 ], [ -122.744894598999934, 49.199150793000086 ], [ -122.744897373999919, 49.198611081000102 ], [ -122.744073785999944, 49.19860925900015 ], [ -122.744076571000022, 49.19806954600007 ], [ -122.743664781999911, 49.198068633000076 ], [ -122.743667570999961, 49.197528920000138 ], [ -122.743255785999963, 49.197528006000034 ], [ -122.74325718199999, 49.197258148000081 ], [ -122.74284540099994, 49.197257232000062 ], [ -122.742848198, 49.196717520000092 ], [ -122.742024640999915, 49.19671568299999 ], [ -122.74202744899992, 49.196175971000038 ], [ -122.740792127999953, 49.196173204000061 ], [ -122.740794948999977, 49.195633491000152 ], [ -122.73914787199999, 49.195629783000108 ], [ -122.73915212899999, 49.194820214000153 ], [ -122.738740367999952, 49.194819283000108 ], [ -122.738741787999956, 49.194549427000027 ], [ -122.737918268999977, 49.194547561000029 ], [ -122.737921118999964, 49.194007847000087 ], [ -122.737509364999966, 49.194006912000091 ], [ -122.73751079299997, 49.193737056000032 ], [ -122.737099039999961, 49.193736120000075 ], [ -122.737100469, 49.193466263000055 ], [ -122.73627696799997, 49.193464386000116 ], [ -122.736278402, 49.19319452900001 ], [ -122.735866652999974, 49.193193588000049 ], [ -122.735868089999954, 49.192923731000072 ], [ -122.734283917000013, 49.192920098000037 ], [ -122.734282107999888, 49.191975563000014 ], [ -122.734380806, 49.191455910000109 ], [ -122.734758936, 49.191453797000122 ], [ -122.736875516999959, 49.191450286000112 ], [ -122.738057695999885, 49.19144829800009 ], [ -122.738469756999933, 49.191460777000053 ], [ -122.739541935999938, 49.191473630000111 ], [ -122.740373038999934, 49.191502236000076 ], [ -122.741016353999925, 49.191507453000078 ], [ -122.743097575999954, 49.191524286000075 ], [ -122.745131863999944, 49.191536927000122 ], [ -122.745448875999955, 49.191538902000019 ], [ -122.746546849999987, 49.191545697000123 ], [ -122.749827097999912, 49.19156593800011 ], [ -122.750113486999979, 49.191567705000132 ], [ -122.752434355999966, 49.191583406000099 ], [ -122.754712701999978, 49.191598790000072 ], [ -122.755659694999935, 49.191605148000072 ], [ -122.756468190999939, 49.191610596000046 ], [ -122.756481126999986, 49.192320162000115 ], [ -122.756482401999961, 49.192389491000078 ], [ -122.756482652999935, 49.192410016000075 ], [ -122.756483539999948, 49.192481950000086 ], [ -122.756492840999925, 49.193219609000039 ], [ -122.756496354999939, 49.193498435000038 ], [ -122.756498100999977, 49.193638797000062 ], [ -122.756503085999924, 49.19422695500004 ], [ -122.756504799999917, 49.194426488000055 ], [ -122.756490594999889, 49.195219901000051 ], [ -122.75649335199995, 49.195504284000073 ], [ -122.756501995999884, 49.196394919000085 ], [ -122.75650720799996, 49.196934512000041 ], [ -122.756526188999956, 49.198896298000079 ], [ -122.756525708999959, 49.199099005000043 ], [ -122.756553977999957, 49.19919292800008 ], [ -122.75658698699999, 49.199302595000077 ], [ -122.756604754999941, 49.199327962000041 ], [ -122.756636873, 49.200517201000082 ], [ -122.756635030999945, 49.20086594600015 ], [ -122.756645309999897, 49.201025282000096 ], [ -122.755592395999969, 49.200993580000038 ], [ -122.75558806399999, 49.201872511000097 ], [ -122.75517624299998, 49.201871639000053 ], [ -122.755174910999941, 49.202141496000145 ], [ -122.755998558, 49.202143239000087 ], [ -122.75599723, 49.202413096000107 ], [ -122.756746971999959, 49.20241467600006 ], [ -122.756744490999964, 49.202658725000049 ], [ -122.756743033999925, 49.202799850000126 ], [ -122.756736018, 49.203484281000073 ], [ -122.757523291999959, 49.204438770000131 ], [ -122.757219508999967, 49.205111638000041 ] ], [ [ -122.748965948999967, 49.19835013600008 ], [ -122.748969269999932, 49.198302695000031 ], [ -122.748519233999914, 49.198289114000048 ], [ -122.74856905899999, 49.197577288000055 ], [ -122.748248369999928, 49.197567609000046 ], [ -122.748477002999905, 49.194301177000064 ], [ -122.748213643, 49.19430060400007 ], [ -122.748215011999946, 49.194030776000055 ], [ -122.745333134999939, 49.193943742 ], [ -122.74533272, 49.194024428000098 ], [ -122.745744475999942, 49.194025335000035 ], [ -122.745738944999957, 49.195104762000014 ], [ -122.746150707999931, 49.195105668000018 ], [ -122.746146566999954, 49.195915236000104 ], [ -122.746970108999932, 49.195917044000026 ], [ -122.74696873299996, 49.1961869000001 ], [ -122.747380505999928, 49.196187803000079 ], [ -122.747376383999949, 49.196997373000045 ], [ -122.748199944999939, 49.196999170000012 ], [ -122.74819309499999, 49.198348454000062 ], [ -122.748965948999967, 49.19835013600008 ] ], [ [ -122.744877976999931, 49.191864545000065 ], [ -122.744896880999946, 49.19159472700008 ], [ -122.744734104, 49.191594368000075 ], [ -122.74471519899997, 49.191864186000039 ], [ -122.744877976999931, 49.191864545000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143107228", "BldgCostT": "93389857", "sL_LossRatio": "0.695571539212247", "sL_AssetLoss": "2303464", "sL_BldgLoss": "1602224", "sL_StrLoss": "741094", "sL_NStrLoss": "861130", "sL_ContLoss": "701240", "geom_point": "0101000020E610000021D87E5314B05EC0AE099A7D3B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.750041082999971, 49.18665736600007 ], [ -122.750047304999939, 49.185884601000069 ], [ -122.750162488999948, 49.185910455000041 ], [ -122.7540465299999, 49.186782129000058 ], [ -122.756276498, 49.187282503000048 ], [ -122.756439698999927, 49.187361307000067 ], [ -122.756498487999977, 49.187501787000016 ], [ -122.756479616, 49.188371391000025 ], [ -122.756475117999955, 49.188578243000016 ], [ -122.756472480999903, 49.188699391000029 ], [ -122.756472377999913, 49.188757976000097 ], [ -122.756470682999975, 49.189693473000055 ], [ -122.756470194999949, 49.189970687000084 ], [ -122.75646843499996, 49.190602015000088 ], [ -122.756468296, 49.190646513000054 ], [ -122.75646822399996, 49.19138464600011 ], [ -122.756468190999939, 49.191610596000046 ], [ -122.755659694999935, 49.191605148000072 ], [ -122.754712701999978, 49.191598790000072 ], [ -122.752434355999966, 49.191583406000099 ], [ -122.750113486999979, 49.191567705000132 ], [ -122.749827097999912, 49.19156593800011 ], [ -122.746546849999987, 49.191545697000123 ], [ -122.745448875999955, 49.191538902000019 ], [ -122.745131863999944, 49.191536927000122 ], [ -122.745442282999988, 49.189683088000052 ], [ -122.745476889999964, 49.1879153880001 ], [ -122.746619928999934, 49.187923250000097 ], [ -122.750030690999949, 49.187946590000081 ], [ -122.750041082999971, 49.18665736600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125743583", "BldgCostT": "85928333", "sL_LossRatio": "0.729757246750823", "sL_AssetLoss": "2121537", "sL_BldgLoss": "1548207", "sL_StrLoss": "699297", "sL_NStrLoss": "848910", "sL_ContLoss": "573330", "geom_point": "0101000020E610000020BB453F9EB05EC0210589CCE0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.758533273999944, 49.193691007000062 ], [ -122.758245882999944, 49.193659895000046 ], [ -122.757777079999968, 49.193654241000054 ], [ -122.756498100999977, 49.193638797000062 ], [ -122.756496354999939, 49.193498435000038 ], [ -122.756492840999925, 49.193219609000039 ], [ -122.756483539999948, 49.192481950000086 ], [ -122.756482652999935, 49.192410016000075 ], [ -122.756482401999961, 49.192389491000078 ], [ -122.756481126999986, 49.192320162000115 ], [ -122.756468190999939, 49.191610596000046 ], [ -122.75875911899999, 49.191613800000034 ], [ -122.761701986999967, 49.191574305000103 ], [ -122.761702697999965, 49.192450091000076 ], [ -122.761678502999956, 49.192658509000118 ], [ -122.76135662199998, 49.193084903000077 ], [ -122.761993089000029, 49.193303105000012 ], [ -122.762268617999922, 49.193345693000012 ], [ -122.762259587999949, 49.193810286000016 ], [ -122.762250393999977, 49.193860333000067 ], [ -122.762245289999939, 49.193887973000052 ], [ -122.762204287, 49.194110493000018 ], [ -122.762076006999962, 49.194376989000034 ], [ -122.761929215999956, 49.194651898000068 ], [ -122.761924285999953, 49.194880601000108 ], [ -122.762264482999967, 49.195510708000043 ], [ -122.762258485999922, 49.195852905000045 ], [ -122.76193181399999, 49.196288195000101 ], [ -122.761048586999962, 49.196715804000092 ], [ -122.761488590999932, 49.197193906000052 ], [ -122.761202208999933, 49.197325891000027 ], [ -122.760867887999922, 49.197570136000095 ], [ -122.760749703999963, 49.197656492000171 ], [ -122.760576892999921, 49.197714297000054 ], [ -122.760352692999902, 49.19774179300012 ], [ -122.759395288999926, 49.197757204 ], [ -122.759071206999977, 49.197760988000027 ], [ -122.758745298999926, 49.197711504000054 ], [ -122.758566874999957, 49.197650481 ], [ -122.758450501999945, 49.197610700000098 ], [ -122.758204683999935, 49.197495193000044 ], [ -122.757994298999932, 49.197265387000066 ], [ -122.75786480499994, 49.19691910600006 ], [ -122.757864411999947, 49.196910084000116 ], [ -122.757860956999934, 49.196829675000046 ], [ -122.757849758999953, 49.196569023000066 ], [ -122.757828888999981, 49.196083709000085 ], [ -122.757825610999944, 49.196006990000086 ], [ -122.757873406999963, 49.195851697000087 ], [ -122.758022303999923, 49.195685009000066 ], [ -122.75886732, 49.195275187000092 ], [ -122.758660995999932, 49.195046393000048 ], [ -122.758583850999941, 49.194878678000066 ], [ -122.758559676999965, 49.194826193000019 ], [ -122.758559006999974, 49.194501898000055 ], [ -122.758533273999944, 49.193691007000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186672834", "BldgCostT": "122348334", "sL_LossRatio": "0.702142732388732", "sL_AssetLoss": "3469682", "sL_BldgLoss": "2436212", "sL_StrLoss": "1077882", "sL_NStrLoss": "1358330", "sL_ContLoss": "1033470", "geom_point": "0101000020E61000005E45EB4DF1B05EC08CB05DB1F1984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.765368896999959, 49.19855391600003 ], [ -122.765966220999971, 49.197622197000115 ], [ -122.765671412, 49.197716905000071 ], [ -122.76543219899996, 49.197743999000082 ], [ -122.764266395, 49.197755799000085 ], [ -122.763561797999927, 49.19776620600004 ], [ -122.762725420999956, 49.197757309000067 ], [ -122.762231481999919, 49.197618102000057 ], [ -122.76186752699995, 49.197466603000116 ], [ -122.761488590999932, 49.197193906000052 ], [ -122.761048586999962, 49.196715804000092 ], [ -122.76193181399999, 49.196288195000101 ], [ -122.762258485999922, 49.195852905000045 ], [ -122.762264482999967, 49.195510708000043 ], [ -122.761924285999953, 49.194880601000108 ], [ -122.761929215999956, 49.194651898000068 ], [ -122.762076006999962, 49.194376989000034 ], [ -122.762204287, 49.194110493000018 ], [ -122.762245289999939, 49.193887973000052 ], [ -122.762250393999977, 49.193860333000067 ], [ -122.762259587999949, 49.193810286000016 ], [ -122.762268617999922, 49.193345693000012 ], [ -122.761993089000029, 49.193303105000012 ], [ -122.76135662199998, 49.193084903000077 ], [ -122.761678502999956, 49.192658509000118 ], [ -122.761702697999965, 49.192450091000076 ], [ -122.761701986999967, 49.191574305000103 ], [ -122.763154086999947, 49.191553072000019 ], [ -122.763617799999963, 49.191546296000112 ], [ -122.763991343, 49.191543275000065 ], [ -122.76539129499993, 49.191532 ], [ -122.765995285999949, 49.191527605000061 ], [ -122.766628979999965, 49.191523016000069 ], [ -122.767470884999938, 49.191516927000109 ], [ -122.76746625699991, 49.191857351000053 ], [ -122.767452101999979, 49.192891282000154 ], [ -122.767427611999892, 49.192946508000027 ], [ -122.767346295, 49.193129583000086 ], [ -122.76718489299995, 49.193359995000066 ], [ -122.767119596999962, 49.193766190000076 ], [ -122.767108901999947, 49.194254202000138 ], [ -122.767133252999926, 49.194671182000079 ], [ -122.767138016999965, 49.194752364000102 ], [ -122.767147113999926, 49.194907698000073 ], [ -122.767220407000011, 49.195117108000055 ], [ -122.767533500999946, 49.19580320900004 ], [ -122.767500811, 49.197199697000059 ], [ -122.767514195, 49.198841802000047 ], [ -122.76744339699998, 49.198842256000056 ], [ -122.766043296999911, 49.198851259000051 ], [ -122.765507856999989, 49.198854694000033 ], [ -122.765290302, 49.198856089000124 ], [ -122.765368896999959, 49.19855391600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247388001", "BldgCostT": "156155001", "sL_LossRatio": "0.674425743729736", "sL_AssetLoss": "3941620", "sL_BldgLoss": "2658330", "sL_StrLoss": "1216130", "sL_NStrLoss": "1442200", "sL_ContLoss": "1283290", "geom_point": "0101000020E610000069B1783D9AAF5EC0C0CC56E2AAA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.743371302999918, 49.260739894000039 ], [ -122.742988027999957, 49.260503962000065 ], [ -122.739876308999911, 49.259278781000049 ], [ -122.738971249999949, 49.259176609000122 ], [ -122.73903491099999, 49.258872238000102 ], [ -122.739089333999985, 49.258612020000051 ], [ -122.739136287999912, 49.258387351000053 ], [ -122.737809838999979, 49.258387970000037 ], [ -122.733971799999935, 49.258396187000102 ], [ -122.733962739999981, 49.257306391000029 ], [ -122.733947033999982, 49.25541344600002 ], [ -122.733946848999892, 49.255390282000107 ], [ -122.733945701, 49.255254619000041 ], [ -122.733964263999937, 49.254824344000049 ], [ -122.736399888, 49.254898061000048 ], [ -122.736363635999936, 49.25541336900006 ], [ -122.736307031999971, 49.256217962000107 ], [ -122.737501326999947, 49.256254088000034 ], [ -122.73750314899992, 49.256228178000057 ], [ -122.739066486999931, 49.256275446000068 ], [ -122.739074888999966, 49.25615591600009 ], [ -122.740890161999957, 49.256210774000088 ], [ -122.74089083699999, 49.256081960000081 ], [ -122.739654021999925, 49.256079179000082 ], [ -122.73965544099994, 49.255809326000104 ], [ -122.739243170999885, 49.255808396000077 ], [ -122.739244592999952, 49.255538543000057 ], [ -122.738832324999947, 49.255537612000111 ], [ -122.738839442999932, 49.254188342000035 ], [ -122.738398758999935, 49.254187345000012 ], [ -122.738014933, 49.254186476000086 ], [ -122.738017416999924, 49.25371725800008 ], [ -122.735497503999966, 49.253641026000047 ], [ -122.735132031999953, 49.253640189000038 ], [ -122.735130586999944, 49.253910042000022 ], [ -122.734718333999922, 49.253909097000083 ], [ -122.734715441, 49.254448803000081 ], [ -122.733980536999979, 49.254447114000087 ], [ -122.73401022499999, 49.253758911000027 ], [ -122.734023177000012, 49.253458719000029 ], [ -122.734054969999946, 49.252721641000058 ], [ -122.73412402799994, 49.251120999000086 ], [ -122.733737214999962, 49.250078582000114 ], [ -122.733837570999981, 49.249828400000112 ], [ -122.732780500999951, 49.249431674000071 ], [ -122.732040726999969, 49.249151848000061 ], [ -122.731374704999936, 49.248873031000102 ], [ -122.731427700999916, 49.248853993000054 ], [ -122.731489067999931, 49.248776282000087 ], [ -122.7317043199999, 49.248503698000086 ], [ -122.731896579999969, 49.248423898000084 ], [ -122.732433112999971, 49.248469506000056 ], [ -122.73270850199999, 49.24818181200002 ], [ -122.73503729199993, 49.246892915000039 ], [ -122.73652459500002, 49.246437103000083 ], [ -122.736540475999931, 49.246431782000037 ], [ -122.73673037099999, 49.246530366000066 ], [ -122.737033929999939, 49.246646615 ], [ -122.7389561299999, 49.247575152000117 ], [ -122.739793583999955, 49.247984125000187 ], [ -122.739866627999959, 49.24801646700007 ], [ -122.739984877, 49.248068812000035 ], [ -122.740471132999915, 49.248255793000098 ], [ -122.740969364999984, 49.248413810000038 ], [ -122.742942400999965, 49.249339896 ], [ -122.743193573999974, 49.249103221000027 ], [ -122.745348118999971, 49.249980763000096 ], [ -122.745358237999952, 49.24998488600005 ], [ -122.745808658999948, 49.250147543000061 ], [ -122.748966945999939, 49.251564964000075 ], [ -122.750145312999948, 49.252016630000099 ], [ -122.750646637999935, 49.252269307000084 ], [ -122.751215793999975, 49.252495092000046 ], [ -122.754030753, 49.253758894000086 ], [ -122.754546822999913, 49.253978384000057 ], [ -122.755278367999949, 49.254271175000056 ], [ -122.755320550999926, 49.254838178000064 ], [ -122.755331359999971, 49.254902600000072 ], [ -122.755340026999974, 49.255051854000065 ], [ -122.755346630999952, 49.255165826000074 ], [ -122.755403764999983, 49.255450063000083 ], [ -122.755427420000018, 49.255567825000121 ], [ -122.755445601999895, 49.255730367000083 ], [ -122.755492329999967, 49.256148411000069 ], [ -122.755507847999965, 49.256337839000082 ], [ -122.755519622999941, 49.256481805000121 ], [ -122.755544013999923, 49.256613591000068 ], [ -122.7555825099999, 49.256821050000077 ], [ -122.755641903999916, 49.257118002000091 ], [ -122.755709617999969, 49.257456510000047 ], [ -122.755781074999959, 49.257931003000117 ], [ -122.75622695, 49.258379262000069 ], [ -122.756286502999956, 49.258439120000041 ], [ -122.756325598, 49.258478565000054 ], [ -122.756449439, 49.258764859000038 ], [ -122.756456584999938, 49.258781378000087 ], [ -122.756419102999956, 49.259029422 ], [ -122.756380424999975, 49.259285789000117 ], [ -122.756223574999964, 49.259426800000085 ], [ -122.756205916999974, 49.259442700000101 ], [ -122.756073994999966, 49.259797313000021 ], [ -122.756068280999969, 49.260114288000075 ], [ -122.755228608999943, 49.259998937000098 ], [ -122.755213412999964, 49.260078656000083 ], [ -122.755184162999925, 49.260105740000085 ], [ -122.754816756999958, 49.260446025000071 ], [ -122.75462187, 49.260521252000082 ], [ -122.754176836999989, 49.260597947000036 ], [ -122.75403247, 49.260402602000077 ], [ -122.753832685999981, 49.260253352000078 ], [ -122.754057072999927, 49.260051074000067 ], [ -122.754094118999944, 49.259980211000048 ], [ -122.754128470999959, 49.25991449300011 ], [ -122.754153630999966, 49.258965638000056 ], [ -122.754047336999946, 49.258913814000053 ], [ -122.753847206999978, 49.258897571000027 ], [ -122.753746772999975, 49.258889432000046 ], [ -122.753761873999977, 49.258673667000011 ], [ -122.753689248999962, 49.258533623000098 ], [ -122.75369094, 49.25841114700011 ], [ -122.753227591, 49.258407462000086 ], [ -122.752633607999954, 49.258402752000094 ], [ -122.7521837849999, 49.258400963000085 ], [ -122.748589071999916, 49.258386569000088 ], [ -122.74791221299995, 49.259175005000046 ], [ -122.747836949999964, 49.26042503900004 ], [ -122.74781599899994, 49.260743361 ], [ -122.748809875999939, 49.260756180000016 ], [ -122.749504337999937, 49.26076719200006 ], [ -122.749860819999952, 49.260876140000072 ], [ -122.750154372999972, 49.26103994000006 ], [ -122.750305480999955, 49.261197659000082 ], [ -122.750421111999941, 49.261390339000066 ], [ -122.750415888999981, 49.261681197000051 ], [ -122.75041115499999, 49.262056586000043 ], [ -122.750394172999918, 49.26340313300004 ], [ -122.747787250999934, 49.263838140000111 ], [ -122.747010030999988, 49.263948048000074 ], [ -122.746409007999958, 49.264034414000079 ], [ -122.745181966999951, 49.264092921000049 ], [ -122.744993380999944, 49.264088803000078 ], [ -122.74227053099996, 49.264029368000074 ], [ -122.7423430959999, 49.262214396000083 ], [ -122.742412213999984, 49.261973199000103 ], [ -122.742591197999928, 49.261654293000028 ], [ -122.742782297999966, 49.261437503000117 ], [ -122.743166396999939, 49.261153612000086 ], [ -122.743596208999989, 49.260961104000046 ], [ -122.743371302999918, 49.260739894000039 ] ], [ [ -122.737637000999953, 49.247709048000097 ], [ -122.737640006, 49.247141762000098 ], [ -122.737600125999961, 49.247708964000047 ], [ -122.737637000999953, 49.247709048000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147799857", "BldgCostT": "97147493", "sL_LossRatio": "0.698480885270035", "sL_AssetLoss": "2404690", "sL_BldgLoss": "1679630", "sL_StrLoss": "771540", "sL_NStrLoss": "908090", "sL_ContLoss": "725060", "geom_point": "0101000020E61000007C7864E621B05EC0B17258AF5CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.749860819999952, 49.260876140000072 ], [ -122.749504337999937, 49.26076719200006 ], [ -122.748809875999939, 49.260756180000016 ], [ -122.74781599899994, 49.260743361 ], [ -122.747836949999964, 49.26042503900004 ], [ -122.74791221299995, 49.259175005000046 ], [ -122.748589071999916, 49.258386569000088 ], [ -122.7521837849999, 49.258400963000085 ], [ -122.752633607999954, 49.258402752000094 ], [ -122.753227591, 49.258407462000086 ], [ -122.75369094, 49.25841114700011 ], [ -122.753689248999962, 49.258533623000098 ], [ -122.753761873999977, 49.258673667000011 ], [ -122.753746772999975, 49.258889432000046 ], [ -122.753847206999978, 49.258897571000027 ], [ -122.754047336999946, 49.258913814000053 ], [ -122.754153630999966, 49.258965638000056 ], [ -122.754128470999959, 49.25991449300011 ], [ -122.754094118999944, 49.259980211000048 ], [ -122.754057072999927, 49.260051074000067 ], [ -122.753832685999981, 49.260253352000078 ], [ -122.75403247, 49.260402602000077 ], [ -122.754176836999989, 49.260597947000036 ], [ -122.75462187, 49.260521252000082 ], [ -122.754816756999958, 49.260446025000071 ], [ -122.755184162999925, 49.260105740000085 ], [ -122.755213412999964, 49.260078656000083 ], [ -122.755228608999943, 49.259998937000098 ], [ -122.756068280999969, 49.260114288000075 ], [ -122.756072503999974, 49.260348713000063 ], [ -122.756072472999918, 49.260386523000051 ], [ -122.756072133999965, 49.260827292000037 ], [ -122.75607209099995, 49.260865805 ], [ -122.756072051, 49.260980242000066 ], [ -122.756071506999916, 49.261758592000078 ], [ -122.756072523999961, 49.262726199000035 ], [ -122.754260193999968, 49.262744697000123 ], [ -122.753579422999934, 49.262753054000051 ], [ -122.753023841999891, 49.26283814300011 ], [ -122.752569998999888, 49.262935512000105 ], [ -122.751889704999925, 49.263081490000076 ], [ -122.750394172999918, 49.26340313300004 ], [ -122.75041115499999, 49.262056586000043 ], [ -122.750415888999981, 49.261681197000051 ], [ -122.750421111999941, 49.261390339000066 ], [ -122.750305480999955, 49.261197659000082 ], [ -122.750154372999972, 49.26103994000006 ], [ -122.749860819999952, 49.260876140000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "474859894", "BldgCostT": "309021523", "sL_LossRatio": "0.728111913295122", "sL_AssetLoss": "5564808", "sL_BldgLoss": "4051803", "sL_StrLoss": "1909183", "sL_NStrLoss": "2142620", "sL_ContLoss": "1513005", "geom_point": "0101000020E6100000C63D345E00AF5EC0D64454B8D0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.733773758999973, 49.271914201000087 ], [ -122.733778783999966, 49.271284704000045 ], [ -122.733161912999932, 49.271288146000103 ], [ -122.732474650999933, 49.271292004000017 ], [ -122.731418089999963, 49.271297915000027 ], [ -122.727842374000019, 49.271293202000038 ], [ -122.728175772000014, 49.265910058000046 ], [ -122.728243725999945, 49.264812636000052 ], [ -122.728304375000022, 49.263832979000021 ], [ -122.728324362999956, 49.26350963600008 ], [ -122.728359495999939, 49.262942796000061 ], [ -122.72836393199999, 49.262870941000095 ], [ -122.728429630000022, 49.26180945400003 ], [ -122.728557736999932, 49.259740039000093 ], [ -122.728607820999983, 49.258931026000077 ], [ -122.728641325999959, 49.258389640000068 ], [ -122.730152740999969, 49.258391536000026 ], [ -122.731018567999953, 49.258392599000047 ], [ -122.731073561999963, 49.258392660000069 ], [ -122.732722716999916, 49.25839468700012 ], [ -122.733368656999914, 49.258395480000033 ], [ -122.733971799999935, 49.258396187000102 ], [ -122.737809838999979, 49.258387970000037 ], [ -122.739136287999912, 49.258387351000053 ], [ -122.739089333999985, 49.258612020000051 ], [ -122.73903491099999, 49.258872238000102 ], [ -122.738971249999949, 49.259176609000122 ], [ -122.739876308999911, 49.259278781000049 ], [ -122.742988027999957, 49.260503962000065 ], [ -122.743371302999918, 49.260739894000039 ], [ -122.743596208999989, 49.260961104000046 ], [ -122.743166396999939, 49.261153612000086 ], [ -122.742782297999966, 49.261437503000117 ], [ -122.742591197999928, 49.261654293000028 ], [ -122.742412213999984, 49.261973199000103 ], [ -122.7423430959999, 49.262214396000083 ], [ -122.74227053099996, 49.264029368000074 ], [ -122.742258213999932, 49.2644066840001 ], [ -122.742210326999938, 49.265871048000051 ], [ -122.74220468599998, 49.266042797000118 ], [ -122.742143309, 49.266270682000069 ], [ -122.741962194999957, 49.26656069000007 ], [ -122.74169507699996, 49.266783305000047 ], [ -122.741366680999988, 49.266959004000135 ], [ -122.740855497999974, 49.267094903000078 ], [ -122.740374201999927, 49.267158696000131 ], [ -122.739681909999959, 49.267174802000042 ], [ -122.73678811399995, 49.267248610000124 ], [ -122.736864681999947, 49.267623931000124 ], [ -122.736952886999973, 49.267777035000059 ], [ -122.737121396999925, 49.267921726000054 ], [ -122.736940761999946, 49.268066729000068 ], [ -122.736589090999971, 49.268221014000069 ], [ -122.736324269999955, 49.268273305000065 ], [ -122.735769779999956, 49.26828359800006 ], [ -122.73528921099998, 49.268278000000123 ], [ -122.735290605, 49.268607363000115 ], [ -122.735292203999919, 49.268976400000042 ], [ -122.735273122, 49.269775804000119 ], [ -122.73529414799998, 49.271203127000028 ], [ -122.735295225999934, 49.271276574000041 ], [ -122.735116400999985, 49.271279293000134 ], [ -122.735112728000018, 49.271565603000035 ], [ -122.735039313999962, 49.271788701000069 ], [ -122.735041301999928, 49.272286901000037 ], [ -122.734764733999924, 49.27228892100009 ], [ -122.733770694999976, 49.272296216000065 ], [ -122.733773758999973, 49.271914201000087 ] ], [ [ -122.732989258999936, 49.268747228000052 ], [ -122.733003818999947, 49.266048698000098 ], [ -122.732591464999985, 49.266047745000073 ], [ -122.73259292399996, 49.265777892000116 ], [ -122.731716052999914, 49.265775860000112 ], [ -122.731603685999929, 49.267370409000108 ], [ -122.731640333999934, 49.267371519000079 ], [ -122.731535760999989, 49.268855386000084 ], [ -122.732224450999965, 49.268876244000118 ], [ -122.732227753999922, 49.268829385000053 ], [ -122.732576374999951, 49.268839943000089 ], [ -122.732576882999979, 49.26874627500009 ], [ -122.732989258999936, 49.268747228000052 ] ], [ [ -122.739611433999954, 49.264174784000041 ], [ -122.739614272, 49.263635077000117 ], [ -122.734253925999894, 49.263622872000056 ], [ -122.73425247699997, 49.263892726000087 ], [ -122.734078103999977, 49.263892324000025 ], [ -122.733840139999941, 49.263891776000072 ], [ -122.733832883999938, 49.265241042000071 ], [ -122.733915379999956, 49.265241233000054 ], [ -122.734657579000029, 49.265242939000132 ], [ -122.734656131999955, 49.265512792000095 ], [ -122.73877963299995, 49.265522188000048 ], [ -122.738785330999946, 49.264442776000109 ], [ -122.739197673, 49.264443707000055 ], [ -122.739199092999968, 49.264173854000056 ], [ -122.739611433999954, 49.264174784000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.744497936726272", "sL_AssetLoss": "29080", "sL_BldgLoss": "21650", "sL_StrLoss": "10120", "sL_NStrLoss": "11530", "sL_ContLoss": "7430", "geom_point": "0101000020E61000006324DEAE95AE5EC09B32E4965EA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.725946399999913, 49.253528289000016 ], [ -122.728570602999952, 49.2513663020001 ], [ -122.728730468999984, 49.251196622000144 ], [ -122.729786023999921, 49.251199095000082 ], [ -122.72978160599996, 49.25200865700009 ], [ -122.729369368999969, 49.25200769200007 ], [ -122.729367892999932, 49.252277545000034 ], [ -122.728955652999929, 49.252276578000128 ], [ -122.72895269899999, 49.252816286000034 ], [ -122.729364943999911, 49.252817253000032 ], [ -122.729360516999947, 49.253626813000047 ], [ -122.72894826699995, 49.253625847000102 ], [ -122.728946788999949, 49.253895700000029 ], [ -122.727710031999948, 49.253892792000066 ], [ -122.727714482999914, 49.253083231000083 ], [ -122.726889990999936, 49.253081285000086 ], [ -122.726884035999902, 49.25416070000017 ], [ -122.726059525999972, 49.254158748000044 ], [ -122.726058031, 49.254428601000015 ], [ -122.724821629999951, 49.254425663000163 ], [ -122.725244097, 49.254011110000043 ], [ -122.725946399999913, 49.253528289000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152679083", "BldgCostT": "94598333", "sL_LossRatio": "0.673482667499192", "sL_AssetLoss": "2242175", "sL_BldgLoss": "1510066", "sL_StrLoss": "665836", "sL_NStrLoss": "844230", "sL_ContLoss": "732109", "geom_point": "0101000020E61000002100B4BD48AE5EC04B40EAE191A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.710246705999964, 49.279254716000025 ], [ -122.710248506999974, 49.278946972000078 ], [ -122.709836047999957, 49.278945937000117 ], [ -122.709842806999916, 49.277793527000036 ], [ -122.709985919999966, 49.277597034000145 ], [ -122.710256412999954, 49.277597712000016 ], [ -122.710257993999946, 49.277327860000085 ], [ -122.710670439999916, 49.277328894000028 ], [ -122.710672018999986, 49.27705904200009 ], [ -122.710378281999937, 49.277058306000058 ], [ -122.710418200999982, 49.277003495 ], [ -122.710260894999934, 49.276832482000088 ], [ -122.710263167999955, 49.276444403000077 ], [ -122.710395386999949, 49.276309899000069 ], [ -122.710412363999978, 49.276248823000081 ], [ -122.710676753999934, 49.276249485000037 ], [ -122.710682217999974, 49.27531533100008 ], [ -122.711085786999973, 49.274631373000027 ], [ -122.711098648999936, 49.274631405000065 ], [ -122.711098776999904, 49.274609356000049 ], [ -122.71124477799999, 49.27436191400011 ], [ -122.711332666999979, 49.274362134000107 ], [ -122.711379475999962, 49.273702102000087 ], [ -122.71138462499999, 49.273693132000126 ], [ -122.711516527999947, 49.273697151000128 ], [ -122.711517905999983, 49.273460876000101 ], [ -122.711913905999936, 49.272770795000071 ], [ -122.712198350999927, 49.272475300000082 ], [ -122.712348478999928, 49.272475674000063 ], [ -122.712349392999897, 49.272318387000091 ], [ -122.71315871399996, 49.271477592000032 ], [ -122.713188900999981, 49.271145796000077 ], [ -122.714640997999965, 49.269140449000133 ], [ -122.714842144999977, 49.26914657300005 ], [ -122.714843794999936, 49.268860370000027 ], [ -122.71534699099999, 49.268165399000111 ], [ -122.71567255099994, 49.268166201000106 ], [ -122.715674462999985, 49.267833293000074 ], [ -122.716370113999986, 49.267509795000137 ], [ -122.71657298299999, 49.267088987000079 ], [ -122.716915840999917, 49.267089828000046 ], [ -122.71691712099998, 49.266865958000089 ], [ -122.71724190299993, 49.266756294000025 ], [ -122.71785219099992, 49.265767913000104 ], [ -122.718126797999943, 49.265579887000094 ], [ -122.718161983999963, 49.265473735000114 ], [ -122.718162149999898, 49.265473736000061 ], [ -122.718162152999952, 49.265473228000154 ], [ -122.718338281999976, 49.264941891000028 ], [ -122.718523302999955, 49.264665047 ], [ -122.718579103999971, 49.264665184000165 ], [ -122.718579582999951, 49.264580837000061 ], [ -122.71906346699997, 49.263856792000098 ], [ -122.720233050999965, 49.263859630000105 ], [ -122.720223894999933, 49.265478747000024 ], [ -122.718574498999956, 49.265474741000048 ], [ -122.718566825999972, 49.266824005000018 ], [ -122.719391546999972, 49.266826011000056 ], [ -122.719393077999911, 49.266556158000128 ], [ -122.720217793999922, 49.266558158000066 ], [ -122.720220844999957, 49.266018452000019 ], [ -122.722282613999965, 49.266023426000025 ], [ -122.72227504199995, 49.267372691000112 ], [ -122.72186267599993, 49.267371699000073 ], [ -122.721858125999987, 49.268181257000059 ], [ -122.721445752999969, 49.268180263000069 ], [ -122.721442714999966, 49.268719969000117 ], [ -122.721030337999935, 49.268718973000077 ], [ -122.721028315999931, 49.269077517000056 ], [ -122.721758001999916, 49.269099689000022 ], [ -122.721765767999941, 49.26898983300002 ], [ -122.723090506999981, 49.269030070000085 ], [ -122.723093729999931, 49.268454081000058 ], [ -122.724330852999984, 49.268457039000033 ], [ -122.724339871999987, 49.266837923000018 ], [ -122.72392751299999, 49.266836938000047 ], [ -122.72393955699998, 49.264678115000102 ], [ -122.724764240999917, 49.264680083000059 ], [ -122.724765741999988, 49.264410314000095 ], [ -122.724099654, 49.264390094000106 ], [ -122.724288897999955, 49.261710527000041 ], [ -122.723956114999922, 49.261709732000064 ], [ -122.723959508999926, 49.261101126000028 ], [ -122.722310515999965, 49.261051040000076 ], [ -122.722306842999927, 49.261705780000085 ], [ -122.721894524999968, 49.261704788000017 ], [ -122.721888458999928, 49.262784200000091 ], [ -122.721476131999978, 49.262783207000041 ], [ -122.721474613999973, 49.263053060000097 ], [ -122.72106228499996, 49.263052065000096 ], [ -122.721060764999933, 49.263321918000067 ], [ -122.719823768999916, 49.263318925000142 ], [ -122.719828353999972, 49.262509366000067 ], [ -122.71946444299999, 49.262508484000108 ], [ -122.719810888999959, 49.262193208000042 ], [ -122.719841918, 49.26138419600008 ], [ -122.720260085999939, 49.260539689000012 ], [ -122.721018593999986, 49.259903112000082 ], [ -122.721027598999953, 49.259543844000113 ], [ -122.72108205699999, 49.259543976000046 ], [ -122.72108357800002, 49.259274123000047 ], [ -122.721819104999895, 49.25927589600014 ], [ -122.721841425999941, 49.258960058000085 ], [ -122.722136311999947, 49.258943093000084 ], [ -122.722013717999957, 49.258807800000056 ], [ -122.722413483999972, 49.258682495000116 ], [ -122.723419308999922, 49.255967987000076 ], [ -122.723998963999946, 49.255233271000129 ], [ -122.724816758999978, 49.255235222000067 ], [ -122.724811010999957, 49.256269573000047 ], [ -122.726391745999976, 49.256317555000052 ], [ -122.72641591199995, 49.255975108 ], [ -122.72798858799996, 49.256022822000098 ], [ -122.728892234999989, 49.25605022700006 ], [ -122.730819191999942, 49.256108641000026 ], [ -122.730891924999966, 49.255076516000031 ], [ -122.730916199999953, 49.254732014000098 ], [ -122.731511455999964, 49.254750052000169 ], [ -122.731825311999984, 49.254759561000128 ], [ -122.733964263999937, 49.254824344000049 ], [ -122.733945701, 49.255254619000041 ], [ -122.733946848999892, 49.255390282000107 ], [ -122.733947033999982, 49.25541344600002 ], [ -122.733962739999981, 49.257306391000029 ], [ -122.733971799999935, 49.258396187000102 ], [ -122.733368656999914, 49.258395480000033 ], [ -122.732722716999916, 49.25839468700012 ], [ -122.731073561999963, 49.258392660000069 ], [ -122.731018567999953, 49.258392599000047 ], [ -122.730152740999969, 49.258391536000026 ], [ -122.728641325999959, 49.258389640000068 ], [ -122.728607820999983, 49.258931026000077 ], [ -122.728557736999932, 49.259740039000093 ], [ -122.728429630000022, 49.26180945400003 ], [ -122.72836393199999, 49.262870941000095 ], [ -122.728359495999939, 49.262942796000061 ], [ -122.728324362999956, 49.26350963600008 ], [ -122.728304375000022, 49.263832979000021 ], [ -122.728243725999945, 49.264812636000052 ], [ -122.728175772000014, 49.265910058000046 ], [ -122.727842374000019, 49.271293202000038 ], [ -122.731418089999963, 49.271297915000027 ], [ -122.732474650999933, 49.271292004000017 ], [ -122.733161912999932, 49.271288146000103 ], [ -122.733778783999966, 49.271284704000045 ], [ -122.733773758999973, 49.271914201000087 ], [ -122.733770694999976, 49.272296216000065 ], [ -122.733770223999954, 49.272579733000079 ], [ -122.733769584999948, 49.272975506000087 ], [ -122.734735701999909, 49.272977709000052 ], [ -122.734912194999964, 49.2730668 ], [ -122.734951013999975, 49.273140104000042 ], [ -122.73492491799999, 49.275268202000042 ], [ -122.734782096999979, 49.27534411500006 ], [ -122.734628904999923, 49.275372814000043 ], [ -122.733755711999976, 49.275378797000073 ], [ -122.733928303999974, 49.276625966999987 ], [ -122.733932, 49.276651556000019 ], [ -122.73376061099998, 49.278527706000027 ], [ -122.73343572899995, 49.278525851000026 ], [ -122.733315101999906, 49.27852516600008 ], [ -122.729181098999916, 49.278501589000051 ], [ -122.727623228999931, 49.278504809000033 ], [ -122.721064928999951, 49.278518042000073 ], [ -122.714289821999913, 49.278531306000104 ], [ -122.714188918999952, 49.27867876800012 ], [ -122.713609391999981, 49.280102581000072 ], [ -122.713550859999899, 49.28007900900009 ], [ -122.713386793000026, 49.280012894000087 ], [ -122.712390198999969, 49.279723809000117 ], [ -122.710246705999964, 49.279254716000025 ] ], [ [ -122.724966482999946, 49.27736380600011 ], [ -122.724983267999932, 49.277126158000073 ], [ -122.724958821999948, 49.277125416000082 ], [ -122.724941988999916, 49.277363747000102 ], [ -122.724966482999946, 49.27736380600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.740556660039761", "sL_AssetLoss": "40240", "sL_BldgLoss": "29800", "sL_StrLoss": "13750", "sL_NStrLoss": "16050", "sL_ContLoss": "10440", "geom_point": "0101000020E610000000560572E2AE5EC03A8FAB0D25A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.733480414999917, 49.254121547000103 ], [ -122.733481574999985, 49.253906250000057 ], [ -122.73265706699999, 49.25390434500008 ], [ -122.73266143799998, 49.253094785000037 ], [ -122.733073685999955, 49.25309573800007 ], [ -122.733083870999963, 49.251206762000024 ], [ -122.732259409000022, 49.251204854000072 ], [ -122.732260868999958, 49.250935 ], [ -122.731848638999949, 49.25093404400009 ], [ -122.731848869999951, 49.250891306000057 ], [ -122.73159876599999, 49.250883728000055 ], [ -122.731671289999937, 49.249854203000091 ], [ -122.731442267, 49.249853671000068 ], [ -122.731439337999973, 49.250393379000037 ], [ -122.731027114999947, 49.250392420000018 ], [ -122.731025647999914, 49.250662274000049 ], [ -122.730613423999955, 49.250661314000062 ], [ -122.730611954000025, 49.250931168000079 ], [ -122.729375268999888, 49.25092827700005 ], [ -122.729376671999901, 49.2506716830001 ], [ -122.730914399999946, 49.249715712000047 ], [ -122.730996679999961, 49.24957329500009 ], [ -122.730904405000018, 49.249041986000066 ], [ -122.731374704999936, 49.248873031000102 ], [ -122.732040726999969, 49.249151848000061 ], [ -122.732780500999951, 49.249431674000071 ], [ -122.733837570999981, 49.249828400000112 ], [ -122.733737214999962, 49.250078582000114 ], [ -122.73412402799994, 49.251120999000086 ], [ -122.734054969999946, 49.252721641000058 ], [ -122.734023177000012, 49.253458719000029 ], [ -122.73401022499999, 49.253758911000027 ], [ -122.733980536999979, 49.254447114000087 ], [ -122.733478667999947, 49.254445958000062 ], [ -122.733480414999917, 49.254121547000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59252500", "BldgCostT": "40600000", "sL_LossRatio": "0.747961059632065", "sL_AssetLoss": "810470", "sL_BldgLoss": "606200", "sL_StrLoss": "285600", "sL_NStrLoss": "320600", "sL_ContLoss": "204270", "geom_point": "0101000020E6100000593AB40222AF5EC0C71294AA86A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.737121396999925, 49.267921726000054 ], [ -122.737404003999956, 49.268123974000069 ], [ -122.737616673999952, 49.268499804000079 ], [ -122.737603023999938, 49.268615608000061 ], [ -122.737599710999973, 49.268799311000109 ], [ -122.737598295999987, 49.268917289000065 ], [ -122.737584712999947, 49.269696175000043 ], [ -122.737582798999966, 49.269821363000034 ], [ -122.737571298999967, 49.270473290000098 ], [ -122.737587558999962, 49.271277411000014 ], [ -122.736735971999948, 49.271277099000045 ], [ -122.735295225999934, 49.271276574000041 ], [ -122.73529414799998, 49.271203127000028 ], [ -122.735273122, 49.269775804000119 ], [ -122.735292203999919, 49.268976400000042 ], [ -122.735290605, 49.268607363000115 ], [ -122.73528921099998, 49.268278000000123 ], [ -122.735769779999956, 49.26828359800006 ], [ -122.736324269999955, 49.268273305000065 ], [ -122.736589090999971, 49.268221014000069 ], [ -122.736940761999946, 49.268066729000068 ], [ -122.737121396999925, 49.267921726000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103170834", "BldgCostT": "64028334", "sL_LossRatio": "0.690049912270242", "sL_AssetLoss": "1174060", "sL_BldgLoss": "810160", "sL_StrLoss": "375560", "sL_NStrLoss": "434600", "sL_ContLoss": "363900", "geom_point": "0101000020E61000007F8327DBDDB45EC01F8D1A7E7DA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.827145224999953, 49.280855313000117 ], [ -122.82667840299996, 49.280518385000022 ], [ -122.826317183999905, 49.280514111000066 ], [ -122.825082006999978, 49.280506629000051 ], [ -122.823793334999948, 49.280497545000038 ], [ -122.823828015999936, 49.279183905000053 ], [ -122.823843346, 49.278603565000054 ], [ -122.82396570499999, 49.277781100000055 ], [ -122.823960845, 49.277674689000023 ], [ -122.823952909999974, 49.277505913000013 ], [ -122.823916950999958, 49.276706111000131 ], [ -122.82390757899995, 49.276524508000136 ], [ -122.823827489999985, 49.275724799000031 ], [ -122.823779221, 49.274845004000078 ], [ -122.824003186999974, 49.274684914000034 ], [ -122.829376106, 49.274676186000093 ], [ -122.82937092, 49.274811944000085 ], [ -122.829358925999927, 49.275125985000059 ], [ -122.829348318999976, 49.275404688000094 ], [ -122.829344268999932, 49.27551040400003 ], [ -122.829341308999958, 49.275587781000084 ], [ -122.829333688999981, 49.275799312000103 ], [ -122.829233685999966, 49.27591439600009 ], [ -122.828998473999903, 49.276038096000015 ], [ -122.828609279999924, 49.276302294000104 ], [ -122.828890776999941, 49.276507895000094 ], [ -122.829033657999929, 49.276629219000036 ], [ -122.828684134999889, 49.276790728 ], [ -122.828450437999962, 49.276898713000044 ], [ -122.828366978999966, 49.276937271000115 ], [ -122.82817474899997, 49.277026095000103 ], [ -122.828007900999978, 49.277103191000045 ], [ -122.827455427999922, 49.277358476000124 ], [ -122.82729209799993, 49.277937442000116 ], [ -122.82726372800002, 49.278142361000079 ], [ -122.827344086999972, 49.27852364400011 ], [ -122.827099256999958, 49.279329941000064 ], [ -122.827052215999984, 49.279916826000097 ], [ -122.827111111999926, 49.280160900000084 ], [ -122.827127891999979, 49.280377597000054 ], [ -122.827341605999976, 49.280769454000087 ], [ -122.827374434, 49.280832577000119 ], [ -122.82721074599999, 49.280902606000069 ], [ -122.827145224999953, 49.280855313000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206239510", "BldgCostT": "134881742", "sL_LossRatio": "0.706054832993625", "sL_AssetLoss": "3154670", "sL_BldgLoss": "2227370", "sL_StrLoss": "980730", "sL_NStrLoss": "1246640", "sL_ContLoss": "927300", "geom_point": "0101000020E6100000FF62322CB1B65EC0FC6341FEA5A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861497200999949, 49.299975685000106 ], [ -122.861215411999979, 49.29991350700012 ], [ -122.860529185999923, 49.299953904000049 ], [ -122.860527298999941, 49.299944981000067 ], [ -122.860430304999966, 49.299485308000072 ], [ -122.860433885999967, 49.299289891000072 ], [ -122.860537980999979, 49.299114596000081 ], [ -122.860684492999923, 49.299021588000102 ], [ -122.860949125999966, 49.298931103000079 ], [ -122.861255494999966, 49.298914700000083 ], [ -122.86149738899999, 49.298957810000019 ], [ -122.863487071999913, 49.299825036000129 ], [ -122.863607694999985, 49.299877601000041 ], [ -122.863869993999941, 49.299963614000063 ], [ -122.864058295999911, 49.29957900300009 ], [ -122.863980071999919, 49.299539049000039 ], [ -122.863931530999949, 49.299514247000126 ], [ -122.863143784999977, 49.29911189600012 ], [ -122.862584094999974, 49.298788502000043 ], [ -122.859578557999924, 49.296610084000108 ], [ -122.858092501999948, 49.295532895000093 ], [ -122.857926688999953, 49.295444298000099 ], [ -122.857418987999907, 49.295286295000018 ], [ -122.856828391999898, 49.295257402000118 ], [ -122.855572617999954, 49.294939804000101 ], [ -122.855318004999916, 49.294821611000053 ], [ -122.855306512999945, 49.294749190000118 ], [ -122.855803499999951, 49.294272708000037 ], [ -122.855734210999969, 49.294237108000111 ], [ -122.855314573999976, 49.294021489000073 ], [ -122.854286417999944, 49.29337 ], [ -122.85295070299999, 49.292590580000102 ], [ -122.852686877999986, 49.292485592000084 ], [ -122.852259597999975, 49.29238129900007 ], [ -122.852235211, 49.292700295000067 ], [ -122.852308490999917, 49.29293670300013 ], [ -122.852397586, 49.293081598000121 ], [ -122.852227000999932, 49.293163985000028 ], [ -122.851990692999934, 49.293202202000018 ], [ -122.851520496999939, 49.293202008000094 ], [ -122.85115060899993, 49.293284901000078 ], [ -122.851004489999937, 49.293046402000058 ], [ -122.850976488999962, 49.292851003000067 ], [ -122.851214113999973, 49.292186788000095 ], [ -122.85047145399993, 49.292034478000055 ], [ -122.850810390999953, 49.291413166000034 ], [ -122.849413487999939, 49.291028 ], [ -122.847622993999934, 49.290367712000076 ], [ -122.847227988999933, 49.290252607000056 ], [ -122.846834197999954, 49.290241095000049 ], [ -122.84671691799997, 49.290280501000069 ], [ -122.84666547199997, 49.290297798000033 ], [ -122.846405100999988, 49.290385291000106 ], [ -122.846218886999907, 49.290697902000055 ], [ -122.846008100999967, 49.290805203000083 ], [ -122.845809006999957, 49.29080121000009 ], [ -122.845779864999983, 49.291048059000104 ], [ -122.845644905999904, 49.291041840000034 ], [ -122.845178700999909, 49.291020247000077 ], [ -122.844987680999949, 49.291011389000083 ], [ -122.844376399999959, 49.290943102000035 ], [ -122.84408319, 49.290869905000108 ], [ -122.843828881999968, 49.290806397000139 ], [ -122.84354795199998, 49.290688842000051 ], [ -122.84340520899994, 49.290629092000103 ], [ -122.84326361399999, 49.290528609000027 ], [ -122.842438711999975, 49.289740605000055 ], [ -122.84280211199993, 49.289734111000094 ], [ -122.842948800999963, 49.289699597000087 ], [ -122.843012675999915, 49.289629396000088 ], [ -122.843011811999972, 49.28960079700002 ], [ -122.843005075999926, 49.289385620000054 ], [ -122.843001908999966, 49.289284103000085 ], [ -122.842958702999951, 49.289150386000095 ], [ -122.842795910999897, 49.289018599000102 ], [ -122.842174399999934, 49.288677009000018 ], [ -122.841488017999907, 49.28833990300005 ], [ -122.840684411999973, 49.288027187000075 ], [ -122.839238296999923, 49.287622709000054 ], [ -122.838064289999963, 49.287340605000054 ], [ -122.837072598999981, 49.286924205000062 ], [ -122.835855139999964, 49.286301299000087 ], [ -122.835697808999939, 49.286220789000076 ], [ -122.835436867999945, 49.286087665000139 ], [ -122.83533509099999, 49.286035727000069 ], [ -122.835272721999928, 49.286003898000111 ], [ -122.834711006999939, 49.285875701000094 ], [ -122.835418034999989, 49.285725897000134 ], [ -122.835420524999961, 49.285717266000141 ], [ -122.835519205999958, 49.285375710000046 ], [ -122.835570397999959, 49.285281536000099 ], [ -122.835574689999987, 49.285278302000073 ], [ -122.835665888999969, 49.285389803000044 ], [ -122.836029267999919, 49.285474724000096 ], [ -122.836027724999937, 49.285940299000053 ], [ -122.836852769999965, 49.285941468000026 ], [ -122.836851879999969, 49.286211321000067 ], [ -122.837264404999971, 49.286211903 ], [ -122.837263515999965, 49.286481756000086 ], [ -122.837676044999952, 49.286482337000059 ], [ -122.837675158999929, 49.286752191000048 ], [ -122.83932527799999, 49.286754497000118 ], [ -122.83932440199996, 49.287024351000106 ], [ -122.839736934, 49.287024924000043 ], [ -122.839737808999985, 49.286755070000048 ], [ -122.84097539899993, 49.286756780000147 ], [ -122.84097453, 49.287026634000078 ], [ -122.841387062999971, 49.287027200000104 ], [ -122.841384465999937, 49.287836763000058 ], [ -122.84262208199999, 49.287838454000038 ], [ -122.842620363999956, 49.288378164000086 ], [ -122.843032908999959, 49.288378723000093 ], [ -122.843032050999966, 49.288648578000029 ], [ -122.843444596999959, 49.288649137000078 ], [ -122.84344374299998, 49.28891899100006 ], [ -122.84385629099999, 49.288919549000056 ], [ -122.843855438999924, 49.289189404000112 ], [ -122.845093088999988, 49.289191069000026 ], [ -122.84509386799999, 49.288942578000061 ], [ -122.845911598999948, 49.289262910000097 ], [ -122.846393311999975, 49.289128601000108 ], [ -122.846627511999955, 49.289147 ], [ -122.84703818599999, 49.289399397000089 ], [ -122.84738069499997, 49.289948515000056 ], [ -122.849702912999931, 49.290446203000037 ], [ -122.850060602, 49.290644604000057 ], [ -122.851058175999967, 49.290972602000103 ], [ -122.851598690999936, 49.291150315000117 ], [ -122.852313489999943, 49.291151201000048 ], [ -122.853055480999956, 49.291790999000078 ], [ -122.854160669999928, 49.29209450200004 ], [ -122.85416047899993, 49.292159333000079 ], [ -122.854190691999946, 49.292171311000089 ], [ -122.854345835999965, 49.292171506000031 ], [ -122.855114188999892, 49.29288190800002 ], [ -122.856157998999919, 49.293252098000032 ], [ -122.856571112, 49.29363968900001 ], [ -122.856775510999938, 49.293801591000104 ], [ -122.857312590999982, 49.293865088000054 ], [ -122.857560203999952, 49.293964309000039 ], [ -122.858742203999938, 49.294046908000091 ], [ -122.861352889000017, 49.295111503000101 ], [ -122.863534187, 49.296859093000073 ], [ -122.864710402999933, 49.297650487000112 ], [ -122.864708540999942, 49.297681938000082 ], [ -122.864697872999983, 49.297852602000034 ], [ -122.864725279000012, 49.298305926000133 ], [ -122.864826295999961, 49.298430194000062 ], [ -122.864851676999976, 49.298495071000083 ], [ -122.864904793999969, 49.298630702000047 ], [ -122.864899273999981, 49.298687544000103 ], [ -122.864850285000017, 49.299192091000094 ], [ -122.864841218999942, 49.299835097 ], [ -122.864739538999928, 49.299984852000108 ], [ -122.864676286999924, 49.300078002000049 ], [ -122.864834010999985, 49.300348306000046 ], [ -122.864825383999957, 49.301228196000082 ], [ -122.86483489699998, 49.301596006000111 ], [ -122.864763268000019, 49.301706614000068 ], [ -122.864705723000014, 49.301795547000033 ], [ -122.864650588999908, 49.301880702000098 ], [ -122.864374996999942, 49.302011407000087 ], [ -122.86395289099994, 49.302030696000038 ], [ -122.863393805999934, 49.301819000000187 ], [ -122.862979802999945, 49.301677185000059 ], [ -122.862694379999937, 49.301526612000025 ], [ -122.86251791199993, 49.301390909000084 ], [ -122.862302850999953, 49.301176220000052 ], [ -122.862287408999975, 49.301160788000054 ], [ -122.862035322999958, 49.300731335000073 ], [ -122.861839792999945, 49.300398308000105 ], [ -122.861651201999962, 49.300076587000085 ], [ -122.861557099999942, 49.300014947000129 ], [ -122.861497200999949, 49.299975685000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88335657", "BldgCostT": "59977695", "sL_LossRatio": "0.792400149891589", "sL_AssetLoss": "923334", "sL_BldgLoss": "731650", "sL_StrLoss": "323910", "sL_NStrLoss": "407740", "sL_ContLoss": "191684", "geom_point": "0101000020E6100000E5EE0070A8B45EC01F0E3B21AE9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82315318399999, 49.245403107000108 ], [ -122.824417214999926, 49.245397898000064 ], [ -122.824417549999922, 49.245551540000079 ], [ -122.824420287999985, 49.24671789300006 ], [ -122.82441959, 49.246756945000094 ], [ -122.824406181999947, 49.247504893000105 ], [ -122.824436477999939, 49.248267000000105 ], [ -122.824410308999973, 49.249070808000063 ], [ -122.824134288999986, 49.249072077000044 ], [ -122.822238086999945, 49.249080936000048 ], [ -122.820872194999964, 49.249087292000112 ], [ -122.820878860999954, 49.248874060000034 ], [ -122.82088491399999, 49.248681293000082 ], [ -122.820904700999961, 49.247912012000043 ], [ -122.820907224999956, 49.247814404000046 ], [ -122.820922788999923, 49.247146406000091 ], [ -122.820938670999936, 49.246455052000087 ], [ -122.820942213999913, 49.246301904000063 ], [ -122.821959434999911, 49.246303450000056 ], [ -122.823132687999987, 49.246305218000039 ], [ -122.823147809999952, 49.245639747000084 ], [ -122.82315318399999, 49.245403107000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78380584", "BldgCostT": "52848334", "sL_LossRatio": "0.75793056486116", "sL_AssetLoss": "913428", "sL_BldgLoss": "692315", "sL_StrLoss": "325435", "sL_NStrLoss": "366880", "sL_ContLoss": "221113", "geom_point": "0101000020E6100000C2BC9E1A75B45EC05A9F28BFFB9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.816661739999958, 49.243747938000091 ], [ -122.816742413999989, 49.241490500000097 ], [ -122.818881498999971, 49.240838303000018 ], [ -122.819508206999927, 49.240610792000133 ], [ -122.820482908999949, 49.240174686000081 ], [ -122.820720191999953, 49.240360011000121 ], [ -122.820974698999919, 49.240453985000059 ], [ -122.821198725999949, 49.240476041000122 ], [ -122.822243309, 49.240578807000077 ], [ -122.823169006999976, 49.240759206000085 ], [ -122.823334191999933, 49.240853313000066 ], [ -122.823399006, 49.240949788000087 ], [ -122.823376576999976, 49.241076196000066 ], [ -122.823248004, 49.241210200000118 ], [ -122.82228629, 49.241655800000053 ], [ -122.820520596, 49.242430810000087 ], [ -122.820691123999964, 49.242588993000084 ], [ -122.820897105999904, 49.242689600000034 ], [ -122.821166906999949, 49.242720998000117 ], [ -122.822564701999951, 49.242705492000077 ], [ -122.821621508999982, 49.243542608000041 ], [ -122.820251987999939, 49.24355007100008 ], [ -122.819269064, 49.243555457000099 ], [ -122.819269090999967, 49.243547874000043 ], [ -122.818856920999963, 49.243547228000118 ], [ -122.818856882999938, 49.243557702000032 ], [ -122.817496894, 49.243565089000043 ], [ -122.817364716999975, 49.243594026000018 ], [ -122.816849727999966, 49.243706797000058 ], [ -122.816661739999958, 49.243747938000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50731749", "BldgCostT": "30564999", "sL_LossRatio": "0.73467353733274", "sL_AssetLoss": "471570", "sL_BldgLoss": "346450", "sL_StrLoss": "161370", "sL_NStrLoss": "185080", "sL_ContLoss": "125120", "geom_point": "0101000020E61000004F3760C26EB45EC008899BF09E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.820294475999916, 49.237078640000085 ], [ -122.82055549399999, 49.23695053700007 ], [ -122.820585335999965, 49.236976475000077 ], [ -122.82062762599999, 49.237013199000046 ], [ -122.820683944, 49.237062168000058 ], [ -122.820724004999988, 49.237096959000063 ], [ -122.821733966999915, 49.237953616000013 ], [ -122.821794730999954, 49.238005117000071 ], [ -122.82180276299999, 49.238012633000032 ], [ -122.821942910999937, 49.238143572000041 ], [ -122.822060576999945, 49.238253500000063 ], [ -122.82230311299999, 49.238361592000047 ], [ -122.822588196999973, 49.238611397000049 ], [ -122.823095410999926, 49.239065096000012 ], [ -122.822242405999972, 49.239389492000065 ], [ -122.820773307999971, 49.240046301000085 ], [ -122.820482908999949, 49.240174686000081 ], [ -122.819508206999927, 49.240610792000133 ], [ -122.818881498999971, 49.240838303000018 ], [ -122.816742413999989, 49.241490500000097 ], [ -122.816471650999958, 49.240631593000025 ], [ -122.816210807999965, 49.239803759000068 ], [ -122.816299494999924, 49.239218227000023 ], [ -122.816766275999939, 49.238799176000093 ], [ -122.818716474999974, 49.237841405000097 ], [ -122.818989309999949, 49.237707412000084 ], [ -122.819000309999979, 49.237702002000056 ], [ -122.819125419999978, 49.237641961000058 ], [ -122.819191414999949, 49.237610315000026 ], [ -122.819681162999942, 49.237375339000032 ], [ -122.820072329999974, 49.23718766100005 ], [ -122.820294475999916, 49.237078640000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125659167", "BldgCostT": "80831667", "sL_LossRatio": "0.680286579080601", "sL_AssetLoss": "2745490", "sL_BldgLoss": "1867720", "sL_StrLoss": "779820", "sL_NStrLoss": "1087900", "sL_ContLoss": "877770", "geom_point": "0101000020E6100000C413F70EEDB45EC02074967A129E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832797858000035, 49.230623017000084 ], [ -122.833205876999941, 49.230427051000021 ], [ -122.833742815999955, 49.230204980000046 ], [ -122.834198636999986, 49.230153236000099 ], [ -122.834203701999968, 49.230150927000118 ], [ -122.834589028999915, 49.230017195000038 ], [ -122.834907707999932, 49.229934670000013 ], [ -122.835575490999958, 49.229847052000167 ], [ -122.836476286999968, 49.229845552000015 ], [ -122.836740849999956, 49.229879250000117 ], [ -122.83694760399996, 49.230787379000084 ], [ -122.835771322999975, 49.230700597000101 ], [ -122.835245085999986, 49.230665300000041 ], [ -122.834318177999933, 49.2307264 ], [ -122.83412798699996, 49.230737 ], [ -122.833852923999942, 49.230805503000084 ], [ -122.833552992999955, 49.230934588000089 ], [ -122.833502115, 49.230956502000019 ], [ -122.831444291999929, 49.232559201000086 ], [ -122.831128691999979, 49.232838211000093 ], [ -122.829867263999958, 49.234093681000054 ], [ -122.829823280999946, 49.234137437000072 ], [ -122.829711409999987, 49.234248798000067 ], [ -122.829516452999954, 49.234438153 ], [ -122.82869221499999, 49.23523870700005 ], [ -122.828359493999955, 49.235411477000071 ], [ -122.827905516999976, 49.235647185000111 ], [ -122.827652808999929, 49.235778402000093 ], [ -122.827337349999965, 49.23600854700009 ], [ -122.827213518999983, 49.23609891100007 ], [ -122.827204456999965, 49.236111391000122 ], [ -122.826296435999936, 49.237365078000032 ], [ -122.826271812999963, 49.237399095000093 ], [ -122.826141216999957, 49.237571310000078 ], [ -122.82579330599999, 49.238030099000078 ], [ -122.825463699999929, 49.238191586000077 ], [ -122.824888008999935, 49.23857333100009 ], [ -122.824606294999967, 49.238760112000108 ], [ -122.824433869999936, 49.238828788000113 ], [ -122.824374810999956, 49.238852306000091 ], [ -122.824144552999925, 49.238890602000048 ], [ -122.823834357999914, 49.238942193000035 ], [ -122.82332135800003, 49.239027512000071 ], [ -122.823095410999926, 49.239065096000012 ], [ -122.822588196999973, 49.238611397000049 ], [ -122.82230311299999, 49.238361592000047 ], [ -122.822060576999945, 49.238253500000063 ], [ -122.821942910999937, 49.238143572000041 ], [ -122.82180276299999, 49.238012633000032 ], [ -122.821794730999954, 49.238005117000071 ], [ -122.821733966999915, 49.237953616000013 ], [ -122.820724004999988, 49.237096959000063 ], [ -122.820683944, 49.237062168000058 ], [ -122.82062762599999, 49.237013199000046 ], [ -122.820585335999965, 49.236976475000077 ], [ -122.82055549399999, 49.23695053700007 ], [ -122.820636558999936, 49.236913463000093 ], [ -122.820736955999934, 49.236867596000131 ], [ -122.820668432999966, 49.236805227000112 ], [ -122.820588030999957, 49.236736179000054 ], [ -122.823531986999939, 49.235242226000075 ], [ -122.823712274999963, 49.235150750000116 ], [ -122.82489857799996, 49.234548688000054 ], [ -122.825253200999967, 49.234364153000072 ], [ -122.825964976999927, 49.233993825000098 ], [ -122.826168632999895, 49.23388784400003 ], [ -122.826824492999947, 49.233533272000066 ], [ -122.828792852999953, 49.232558471000075 ], [ -122.829529060999917, 49.232193854000123 ], [ -122.829553161999925, 49.232182011000113 ], [ -122.829638473999964, 49.23214030900008 ], [ -122.829983273999957, 49.231974714000039 ], [ -122.832797858000035, 49.230623017000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239820667", "BldgCostT": "162291667", "sL_LossRatio": "0.745256093046816", "sL_AssetLoss": "4106320", "sL_BldgLoss": "3060260", "sL_StrLoss": "1306260", "sL_NStrLoss": "1754000", "sL_ContLoss": "1046060", "geom_point": "0101000020E61000004C8E6C953DB55EC0DB5AFCF9F89D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.826271812999963, 49.237399095000093 ], [ -122.826296435999936, 49.237365078000032 ], [ -122.827204456999965, 49.236111391000122 ], [ -122.827213518999983, 49.23609891100007 ], [ -122.827337349999965, 49.23600854700009 ], [ -122.827652808999929, 49.235778402000093 ], [ -122.827905516999976, 49.235647185000111 ], [ -122.828359493999955, 49.235411477000071 ], [ -122.82869221499999, 49.23523870700005 ], [ -122.829516452999954, 49.234438153 ], [ -122.829711409999987, 49.234248798000067 ], [ -122.829823280999946, 49.234137437000072 ], [ -122.829867263999958, 49.234093681000054 ], [ -122.831128691999979, 49.232838211000093 ], [ -122.831444291999929, 49.232559201000086 ], [ -122.833502115, 49.230956502000019 ], [ -122.833552992999955, 49.230934588000089 ], [ -122.833852923999942, 49.230805503000084 ], [ -122.83412798699996, 49.230737 ], [ -122.834318177999933, 49.2307264 ], [ -122.835245085999986, 49.230665300000041 ], [ -122.835771322999975, 49.230700597000101 ], [ -122.83694760399996, 49.230787379000084 ], [ -122.836873994999962, 49.231202302000099 ], [ -122.836415511999988, 49.231724882000087 ], [ -122.83534679199991, 49.232899915000054 ], [ -122.834130242999919, 49.233925502000091 ], [ -122.834059674999978, 49.234054093000069 ], [ -122.834060454999985, 49.234339643000069 ], [ -122.834061815999945, 49.23482888500012 ], [ -122.834075753999983, 49.235410188000039 ], [ -122.834087914999927, 49.23591619900003 ], [ -122.833370886999916, 49.235912236000097 ], [ -122.832354685999988, 49.235906647000022 ], [ -122.832310181999958, 49.235906391000078 ], [ -122.83028948499999, 49.236607579000108 ], [ -122.829813585999915, 49.236772693000077 ], [ -122.829746130999979, 49.23679604200008 ], [ -122.827889603999893, 49.237437697000054 ], [ -122.826248420999946, 49.237998946000168 ], [ -122.826220508999953, 49.238008501000053 ], [ -122.82579330599999, 49.238030099000078 ], [ -122.826141216999957, 49.237571310000078 ], [ -122.826271812999963, 49.237399095000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139126251", "BldgCostT": "91055001", "sL_LossRatio": "0.752237735445223", "sL_AssetLoss": "1224117", "sL_BldgLoss": "920827", "sL_StrLoss": "478587", "sL_NStrLoss": "442240", "sL_ContLoss": "303290", "geom_point": "0101000020E6100000FFB5383A59B25EC098AACD62D6A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.783873409999956, 49.305254604000012 ], [ -122.784082295999909, 49.304325718000079 ], [ -122.784722704999979, 49.304371789000037 ], [ -122.785290694999972, 49.304351799000088 ], [ -122.785441580999972, 49.303722901000064 ], [ -122.785572794999908, 49.303357489000099 ], [ -122.785854474999951, 49.302924492000074 ], [ -122.785981090999954, 49.302725490000071 ], [ -122.786154487999966, 49.30230730600006 ], [ -122.786362977999914, 49.301799992000042 ], [ -122.785756912999929, 49.301595497000143 ], [ -122.785360506999922, 49.301462081000118 ], [ -122.784788393999932, 49.301382891000124 ], [ -122.784924211999979, 49.30083379300001 ], [ -122.785174716999975, 49.300333990000048 ], [ -122.785391706999945, 49.300041393000107 ], [ -122.785424644, 49.300005082000098 ], [ -122.78571781, 49.299681798000044 ], [ -122.78645288199999, 49.299115394000069 ], [ -122.787346198999984, 49.298666302000107 ], [ -122.787742305, 49.299002384000026 ], [ -122.788381086999934, 49.299547510000139 ], [ -122.788667120999918, 49.299745204000075 ], [ -122.788943074, 49.299868217000089 ], [ -122.788894009, 49.299965433000075 ], [ -122.788347481999935, 49.301464005000042 ], [ -122.788404384999936, 49.303124511000128 ], [ -122.788397033999942, 49.303629794000045 ], [ -122.7883970399999, 49.303629966000038 ], [ -122.788151609999915, 49.303851268000088 ], [ -122.78819429399999, 49.303875791000095 ], [ -122.788652326999909, 49.304077103000047 ], [ -122.788497456999934, 49.305968363000126 ], [ -122.788573220999979, 49.306214270000105 ], [ -122.788845588999934, 49.306382670000062 ], [ -122.78880499199991, 49.306388699000117 ], [ -122.788275129999946, 49.306527046000063 ], [ -122.788216726999934, 49.306542310000047 ], [ -122.78795836599997, 49.306674637000086 ], [ -122.787443816999939, 49.306938188000096 ], [ -122.786974513999937, 49.307299903000079 ], [ -122.78669289699998, 49.307593392000086 ], [ -122.786042097999911, 49.307342677000044 ], [ -122.785169784999979, 49.307006607000034 ], [ -122.785059447999984, 49.306947304000047 ], [ -122.784876779999976, 49.306849197000112 ], [ -122.784464580999924, 49.306545107000048 ], [ -122.784229903999943, 49.306281384000052 ], [ -122.784029184999937, 49.305982598000071 ], [ -122.783936289999986, 49.305754602000071 ], [ -122.783873409999956, 49.305254604000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103986834", "BldgCostT": "69713334", "sL_LossRatio": "0.756748793689906", "sL_AssetLoss": "1215069", "sL_BldgLoss": "919502", "sL_StrLoss": "442942", "sL_NStrLoss": "476560", "sL_ContLoss": "295567", "geom_point": "0101000020E610000042A23B4E32B65EC0FF66D610A49F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.844050787999961, 49.246108488000111 ], [ -122.844052121999979, 49.245018401000067 ], [ -122.846290671999938, 49.245021697000098 ], [ -122.847561314999908, 49.245018283000029 ], [ -122.84755490699996, 49.245584495000095 ], [ -122.847548699999948, 49.246134198000107 ], [ -122.850051196, 49.246133404 ], [ -122.850048232999939, 49.246703063000048 ], [ -122.85004548199997, 49.247229697000137 ], [ -122.850047185999955, 49.248115303000091 ], [ -122.850050425999925, 49.248556114000088 ], [ -122.850053613999975, 49.248992085000076 ], [ -122.8472034, 49.248993491000093 ], [ -122.846625404999898, 49.248988308000079 ], [ -122.843978203999939, 49.248993813 ], [ -122.844059408999982, 49.248849296000081 ], [ -122.844062104999949, 49.248102490000051 ], [ -122.844060403999947, 49.247845708000092 ], [ -122.844056584000015, 49.247234809000105 ], [ -122.844050787999961, 49.246108488000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168516584", "BldgCostT": "106903334", "sL_LossRatio": "0.722359235466099", "sL_AssetLoss": "2011160", "sL_BldgLoss": "1452780", "sL_StrLoss": "682890", "sL_NStrLoss": "769890", "sL_ContLoss": "558380", "geom_point": "0101000020E6100000B6A8FC295DB65EC0F4DBBEE4529F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850048232999939, 49.246703063000048 ], [ -122.850051196, 49.246133404 ], [ -122.847548699999948, 49.246134198000107 ], [ -122.84755490699996, 49.245584495000095 ], [ -122.847561314999908, 49.245018283000029 ], [ -122.846290671999938, 49.245021697000098 ], [ -122.844052121999979, 49.245018401000067 ], [ -122.844072415999946, 49.243912693000027 ], [ -122.844078678999963, 49.24334899600008 ], [ -122.844079364999942, 49.243286054000045 ], [ -122.84408451799996, 49.242825602000039 ], [ -122.845321894999984, 49.242825785000029 ], [ -122.846518910999976, 49.242834681000062 ], [ -122.847347324999959, 49.242840497000103 ], [ -122.847575901999932, 49.242842099000079 ], [ -122.848111618999965, 49.242841598000105 ], [ -122.850026796999927, 49.242851596000094 ], [ -122.84971131599994, 49.24238022100009 ], [ -122.84936570399995, 49.241867412000012 ], [ -122.849382748999957, 49.241717463000043 ], [ -122.849505515999979, 49.241629143000132 ], [ -122.849669879999965, 49.241574499000123 ], [ -122.852071519, 49.241498659000051 ], [ -122.852275281999965, 49.241430750000085 ], [ -122.85242648099991, 49.241286500000065 ], [ -122.852496700999936, 49.241466015000057 ], [ -122.852512818999955, 49.241775485000055 ], [ -122.852540495999932, 49.241847596000078 ], [ -122.852519562999959, 49.242136540000033 ], [ -122.852460557999947, 49.242952527000035 ], [ -122.852455206999963, 49.242965907000098 ], [ -122.852429197999967, 49.245054217000096 ], [ -122.852433688999895, 49.245635411000137 ], [ -122.852433099999985, 49.246211095000078 ], [ -122.852430422999959, 49.246706140000121 ], [ -122.852427494999972, 49.247245098000057 ], [ -122.852444188, 49.24801139200013 ], [ -122.852441313999975, 49.248216700000029 ], [ -122.852462798999966, 49.248992102000081 ], [ -122.850053613999975, 49.248992085000076 ], [ -122.850050425999925, 49.248556114000088 ], [ -122.850047185999955, 49.248115303000091 ], [ -122.85004548199997, 49.247229697000137 ], [ -122.850048232999939, 49.246703063000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93349499", "BldgCostT": "58964999", "sL_LossRatio": "0.701684752450829", "sL_AssetLoss": "1297520", "sL_BldgLoss": "910450", "sL_StrLoss": "395550", "sL_NStrLoss": "514900", "sL_ContLoss": "387070", "geom_point": "0101000020E61000006067F9703FB65EC020E705F1E49E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.844046589999948, 49.240676698000108 ], [ -122.845330132999962, 49.240239053000074 ], [ -122.846161103999961, 49.239955704000117 ], [ -122.846768291, 49.239879288000097 ], [ -122.847003309999963, 49.239849699000104 ], [ -122.847923211999969, 49.239853095000115 ], [ -122.849415094999955, 49.240087693000056 ], [ -122.849725809999981, 49.24000219300013 ], [ -122.850079088999934, 49.240114554000101 ], [ -122.850942403999966, 49.240389108000024 ], [ -122.851718577999961, 49.24062800300004 ], [ -122.852368778999946, 49.240626142000075 ], [ -122.852450706999932, 49.240625893000079 ], [ -122.852427985999938, 49.241245733000056 ], [ -122.85242648099991, 49.241286500000065 ], [ -122.852275281999965, 49.241430750000085 ], [ -122.852071519, 49.241498659000051 ], [ -122.849669879999965, 49.241574499000123 ], [ -122.849505515999979, 49.241629143000132 ], [ -122.849382748999957, 49.241717463000043 ], [ -122.84936570399995, 49.241867412000012 ], [ -122.84971131599994, 49.24238022100009 ], [ -122.850026796999927, 49.242851596000094 ], [ -122.848111618999965, 49.242841598000105 ], [ -122.847575901999932, 49.242842099000079 ], [ -122.847347324999959, 49.242840497000103 ], [ -122.846518910999976, 49.242834681000062 ], [ -122.845321894999984, 49.242825785000029 ], [ -122.84408451799996, 49.242825602000039 ], [ -122.844081253999931, 49.242674146000098 ], [ -122.844056608999907, 49.241520307000037 ], [ -122.844075290999939, 49.240800099000069 ], [ -122.844046589999948, 49.240676698000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183811561", "BldgCostT": "124773190", "sL_LossRatio": "0.774973927612795", "sL_AssetLoss": "1169820", "sL_BldgLoss": "906580", "sL_StrLoss": "406090", "sL_NStrLoss": "500490", "sL_ContLoss": "263240", "geom_point": "0101000020E61000009E9393605CB65EC0C4F97A429F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.849725809999981, 49.24000219300013 ], [ -122.849131307, 49.239792091000069 ], [ -122.848719985999978, 49.239646697000126 ], [ -122.847227595999939, 49.238812097000036 ], [ -122.846555924999933, 49.238525165000112 ], [ -122.846333409999986, 49.238430100000045 ], [ -122.846518336999964, 49.237949553000085 ], [ -122.84669198899995, 49.237498203000065 ], [ -122.847248012999927, 49.237722606000069 ], [ -122.848161759999925, 49.238147187000024 ], [ -122.848185198999943, 49.23815808800002 ], [ -122.849187914999973, 49.238720698000044 ], [ -122.849631414999976, 49.238965210000046 ], [ -122.851652301999962, 49.239568766000041 ], [ -122.85213228399995, 49.239712104000056 ], [ -122.85245502, 49.239752205000109 ], [ -122.852454336999969, 49.239887811000067 ], [ -122.852452383999932, 49.240283599000058 ], [ -122.852450706999932, 49.240625893000079 ], [ -122.852368778999946, 49.240626142000075 ], [ -122.851718577999961, 49.24062800300004 ], [ -122.850942403999966, 49.240389108000024 ], [ -122.850079088999934, 49.240114554000101 ], [ -122.849725809999981, 49.24000219300013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188825645", "BldgCostT": "120981524", "sL_LossRatio": "0.721737527095457", "sL_AssetLoss": "2223620", "sL_BldgLoss": "1604870", "sL_StrLoss": "708680", "sL_NStrLoss": "896190", "sL_ContLoss": "618750", "geom_point": "0101000020E6100000B68930D1E2B55EC02CC65CC60B9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.840360818999926, 49.24569680400004 ], [ -122.840386824999925, 49.244710193000095 ], [ -122.83977138600001, 49.244703712000018 ], [ -122.839757656999907, 49.244703553000079 ], [ -122.839136490999977, 49.244697018000124 ], [ -122.839064900999958, 49.244557003000118 ], [ -122.839062446, 49.244169503000087 ], [ -122.839059086999939, 49.243635206000107 ], [ -122.839068923, 49.243009512000071 ], [ -122.839075995999934, 49.242559996000139 ], [ -122.839061102999949, 49.242010118000046 ], [ -122.839051671999968, 49.241659607000067 ], [ -122.839047080999961, 49.241491596000067 ], [ -122.838751937999987, 49.241493269000088 ], [ -122.83814589399999, 49.241496689000058 ], [ -122.837775968999949, 49.241496058 ], [ -122.836937480999978, 49.241494593000048 ], [ -122.836929408999978, 49.24040656799999 ], [ -122.836926404999971, 49.240005015000108 ], [ -122.83965779, 49.240026592000049 ], [ -122.83965222799999, 49.239762755000086 ], [ -122.839637282999917, 49.239056595000108 ], [ -122.839610022, 49.237642205 ], [ -122.839589980999932, 49.236686693000138 ], [ -122.839588916999929, 49.236601026000095 ], [ -122.841265481000022, 49.237026747000087 ], [ -122.841377348999941, 49.23705793500006 ], [ -122.84183838199999, 49.237184067000101 ], [ -122.842048452999961, 49.23723849800006 ], [ -122.842918945999884, 49.237463892000044 ], [ -122.842980026999896, 49.237479693000061 ], [ -122.843441447999965, 49.237637057000036 ], [ -122.843583251, 49.237685418000055 ], [ -122.84398773199996, 49.237823358000135 ], [ -122.844000056999946, 49.237827552000034 ], [ -122.844139856999917, 49.237861565000124 ], [ -122.845950795999926, 49.238301807000063 ], [ -122.846333409999986, 49.238430100000045 ], [ -122.846555924999933, 49.238525165000112 ], [ -122.847227595999939, 49.238812097000036 ], [ -122.848719985999978, 49.239646697000126 ], [ -122.849131307, 49.239792091000069 ], [ -122.849725809999981, 49.24000219300013 ], [ -122.849415094999955, 49.240087693000056 ], [ -122.847923211999969, 49.239853095000115 ], [ -122.847003309999963, 49.239849699000104 ], [ -122.846768291, 49.239879288000097 ], [ -122.846161103999961, 49.239955704000117 ], [ -122.845330132999962, 49.240239053000074 ], [ -122.844046589999948, 49.240676698000108 ], [ -122.844075290999939, 49.240800099000069 ], [ -122.844056608999907, 49.241520307000037 ], [ -122.844081253999931, 49.242674146000098 ], [ -122.84408451799996, 49.242825602000039 ], [ -122.844079364999942, 49.243286054000045 ], [ -122.844078678999963, 49.24334899600008 ], [ -122.844072415999946, 49.243912693000027 ], [ -122.844052121999979, 49.245018401000067 ], [ -122.844050787999961, 49.246108488000111 ], [ -122.844056584000015, 49.247234809000105 ], [ -122.844060403999947, 49.247845708000092 ], [ -122.844062104999949, 49.248102490000051 ], [ -122.844059408999982, 49.248849296000081 ], [ -122.843978203999939, 49.248993813 ], [ -122.841997746999937, 49.249009281000077 ], [ -122.841112700999957, 49.249016198000021 ], [ -122.840939530999961, 49.24901712900003 ], [ -122.840211064, 49.249021119000112 ], [ -122.839991092999966, 49.249022325000084 ], [ -122.839168390999973, 49.249026790000045 ], [ -122.839171131999962, 49.24854146100013 ], [ -122.839171557999919, 49.248469503000052 ], [ -122.839181812999939, 49.246652401000127 ], [ -122.839750723999884, 49.246647264000032 ], [ -122.839765407999934, 49.246647121000109 ], [ -122.840333496000014, 49.246642005000112 ], [ -122.840360818999926, 49.24569680400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122461923", "BldgCostT": "79664481", "sL_LossRatio": "0.706789611384085", "sL_AssetLoss": "1567100", "sL_BldgLoss": "1107610", "sL_StrLoss": "480230", "sL_NStrLoss": "627380", "sL_ContLoss": "459490", "geom_point": "0101000020E61000003875BBEA83B55EC0045B78A0469F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834265410999933, 49.24814774200005 ], [ -122.834260281999931, 49.247197190000101 ], [ -122.834259092999972, 49.246978396000031 ], [ -122.834244822999935, 49.244345403000089 ], [ -122.834236812999947, 49.243838749000076 ], [ -122.834233694999938, 49.243642303000044 ], [ -122.834227273999971, 49.243333995000093 ], [ -122.834220875999961, 49.242804382000017 ], [ -122.834217971999976, 49.242564395000109 ], [ -122.834213697999957, 49.242285892000055 ], [ -122.834213039999966, 49.242156852000072 ], [ -122.834209601999945, 49.24148030300011 ], [ -122.834876965999982, 49.241486581000039 ], [ -122.835561518999953, 49.241493007000059 ], [ -122.836251036999954, 49.24149380800003 ], [ -122.836937480999978, 49.241494593000048 ], [ -122.837775968999949, 49.241496058 ], [ -122.83814589399999, 49.241496689000058 ], [ -122.838751937999987, 49.241493269000088 ], [ -122.839047080999961, 49.241491596000067 ], [ -122.839051671999968, 49.241659607000067 ], [ -122.839061102999949, 49.242010118000046 ], [ -122.839075995999934, 49.242559996000139 ], [ -122.839068923, 49.243009512000071 ], [ -122.839059086999939, 49.243635206000107 ], [ -122.839062446, 49.244169503000087 ], [ -122.839064900999958, 49.244557003000118 ], [ -122.839136490999977, 49.244697018000124 ], [ -122.837999195999942, 49.24471770600011 ], [ -122.83740802899996, 49.244713855000093 ], [ -122.8368144, 49.244709980000088 ], [ -122.836226646999989, 49.244706218000047 ], [ -122.835633795999968, 49.244702415000027 ], [ -122.835637773999963, 49.246657495000136 ], [ -122.835628952999969, 49.24798779300005 ], [ -122.835627699999989, 49.248175199000158 ], [ -122.836215664999983, 49.248170151000053 ], [ -122.836816487999911, 49.248165005 ], [ -122.836807919999913, 49.248502467000066 ], [ -122.836794397999967, 49.249033797000038 ], [ -122.835534593999981, 49.249036501000049 ], [ -122.83427029399995, 49.249045284000054 ], [ -122.834265410999933, 49.24814774200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88333750", "BldgCostT": "57295000", "sL_LossRatio": "0.735041281349771", "sL_AssetLoss": "1028915", "sL_BldgLoss": "756295", "sL_StrLoss": "352775", "sL_NStrLoss": "403520", "sL_ContLoss": "272620", "geom_point": "0101000020E610000004166E969EB55EC0852BD28A909F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836807919999913, 49.248502467000066 ], [ -122.836816487999911, 49.248165005 ], [ -122.836215664999983, 49.248170151000053 ], [ -122.835627699999989, 49.248175199000158 ], [ -122.835628952999969, 49.24798779300005 ], [ -122.835637773999963, 49.246657495000136 ], [ -122.835633795999968, 49.244702415000027 ], [ -122.836226646999989, 49.244706218000047 ], [ -122.8368144, 49.244709980000088 ], [ -122.83740802899996, 49.244713855000093 ], [ -122.837999195999942, 49.24471770600011 ], [ -122.839136490999977, 49.244697018000124 ], [ -122.839757656999907, 49.244703553000079 ], [ -122.83977138600001, 49.244703712000018 ], [ -122.840386824999925, 49.244710193000095 ], [ -122.840360818999926, 49.24569680400004 ], [ -122.840333496000014, 49.246642005000112 ], [ -122.839765407999934, 49.246647121000109 ], [ -122.839750723999884, 49.246647264000032 ], [ -122.839181812999939, 49.246652401000127 ], [ -122.839171557999919, 49.248469503000052 ], [ -122.839171131999962, 49.24854146100013 ], [ -122.839168390999973, 49.249026790000045 ], [ -122.837979705999956, 49.24903519300004 ], [ -122.837007419999964, 49.249032797 ], [ -122.836794397999967, 49.249033797000038 ], [ -122.836807919999913, 49.248502467000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82755084", "BldgCostT": "55598334", "sL_LossRatio": "0.73158456340032", "sL_AssetLoss": "1686900", "sL_BldgLoss": "1234110", "sL_StrLoss": "522030", "sL_NStrLoss": "712080", "sL_ContLoss": "452790", "geom_point": "0101000020E61000006F9EF20164B85EC0FB2D4B85C2A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879831900999974, 49.256637589000029 ], [ -122.879834584999983, 49.256353003000072 ], [ -122.879853709999978, 49.255598591000108 ], [ -122.879854253999966, 49.255319378000095 ], [ -122.879855624999934, 49.254651903000109 ], [ -122.879838399999954, 49.253701792000051 ], [ -122.87983230199994, 49.252771894000041 ], [ -122.88208322, 49.25276957600007 ], [ -122.882719881999975, 49.252768901000159 ], [ -122.882729118, 49.253080905000047 ], [ -122.882749178999987, 49.253722904000064 ], [ -122.88273339899996, 49.254551296000081 ], [ -122.882824118999949, 49.254653002000104 ], [ -122.882874991999969, 49.254753609000069 ], [ -122.882912102999953, 49.255633009000078 ], [ -122.882908348999962, 49.256060051000098 ], [ -122.882902797, 49.256691185000086 ], [ -122.882632786999977, 49.25666091300004 ], [ -122.881421889999942, 49.256650211000057 ], [ -122.88139231599996, 49.258255689000045 ], [ -122.881483587999981, 49.260167193000058 ], [ -122.879834917999986, 49.260127708000013 ], [ -122.879813317999918, 49.258241502000011 ], [ -122.879831900999974, 49.256637589000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103862415", "BldgCostT": "68266665", "sL_LossRatio": "0.728607963767944", "sL_AssetLoss": "1262970", "sL_BldgLoss": "920210", "sL_StrLoss": "430780", "sL_NStrLoss": "489430", "sL_ContLoss": "342760", "geom_point": "0101000020E610000038616F20ACB85EC04D9A61FEE5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.881483587999981, 49.260167193000058 ], [ -122.88139231599996, 49.258255689000045 ], [ -122.881421889999942, 49.256650211000057 ], [ -122.882632786999977, 49.25666091300004 ], [ -122.882902797, 49.256691185000086 ], [ -122.882908348999962, 49.256060051000098 ], [ -122.882912102999953, 49.255633009000078 ], [ -122.885122609999939, 49.255487808000076 ], [ -122.891927308, 49.255519184000086 ], [ -122.891907532999966, 49.256086399000054 ], [ -122.891900388999943, 49.25629026700004 ], [ -122.891882617999912, 49.256800808000023 ], [ -122.890630598999934, 49.256788109000063 ], [ -122.889508992999964, 49.256777387000092 ], [ -122.889326829999931, 49.256775577000091 ], [ -122.886926614999965, 49.256751604000101 ], [ -122.88692070099998, 49.257454991000024 ], [ -122.88691729599999, 49.257914298000095 ], [ -122.884070813000037, 49.257872693000088 ], [ -122.884099871, 49.2587699010001 ], [ -122.883008406999934, 49.258759101000088 ], [ -122.882882710999979, 49.258667204000069 ], [ -122.882871012999942, 49.260190184000095 ], [ -122.881954219999969, 49.260176308000055 ], [ -122.881483587999981, 49.260167193000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "272966052", "BldgCostT": "181218745", "sL_LossRatio": "0.799762863842559", "sL_AssetLoss": "1889210", "sL_BldgLoss": "1510920", "sL_StrLoss": "666790", "sL_NStrLoss": "844130", "sL_ContLoss": "378290", "geom_point": "0101000020E61000003C76D4C1CFB85EC0B127C3E90BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.886926614999965, 49.256751604000101 ], [ -122.889285592999926, 49.257534326000112 ], [ -122.88930823799997, 49.257545531000112 ], [ -122.889401500999938, 49.257592065000061 ], [ -122.890870861999986, 49.258352768000101 ], [ -122.891885085999917, 49.25887644700002 ], [ -122.89071432599998, 49.258859819000072 ], [ -122.888981212999965, 49.258836317000089 ], [ -122.887827714999943, 49.258820647000057 ], [ -122.886999256999943, 49.258809373000069 ], [ -122.884099871, 49.2587699010001 ], [ -122.884070813000037, 49.257872693000088 ], [ -122.88691729599999, 49.257914298000095 ], [ -122.88692070099998, 49.257454991000024 ], [ -122.886926614999965, 49.256751604000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226620667", "BldgCostT": "145446667", "sL_LossRatio": "0.734710252585855", "sL_AssetLoss": "2057637", "sL_BldgLoss": "1511767", "sL_StrLoss": "731507", "sL_NStrLoss": "780260", "sL_ContLoss": "545870", "geom_point": "0101000020E610000082398B2877B95EC0410A6497A4A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.892964993999925, 49.255232913000036 ], [ -122.892953750999965, 49.254828103000101 ], [ -122.89292629299996, 49.253838795000064 ], [ -122.89291409799992, 49.2533990660001 ], [ -122.894627766999989, 49.253416452000074 ], [ -122.894998729999955, 49.253420210000122 ], [ -122.896343193999897, 49.253433838000049 ], [ -122.897898175999941, 49.253449779000015 ], [ -122.898631512999955, 49.253457314000023 ], [ -122.899986554999913, 49.25346983700009 ], [ -122.901820598999933, 49.253486795000107 ], [ -122.902323305999985, 49.253630905000101 ], [ -122.902510411999955, 49.253536992000107 ], [ -122.902586303999925, 49.253498893000078 ], [ -122.902839098999948, 49.253456600000057 ], [ -122.904053864999952, 49.253480856000074 ], [ -122.904601910999958, 49.253491790000076 ], [ -122.904797712999979, 49.253995605000036 ], [ -122.904787014999968, 49.254217004000061 ], [ -122.904672213999973, 49.25443529700005 ], [ -122.904518581999952, 49.254596600000106 ], [ -122.904110498999955, 49.254876931000069 ], [ -122.903787220999959, 49.255099003000019 ], [ -122.902997800999955, 49.255544796000031 ], [ -122.902618295999929, 49.2552816890001 ], [ -122.900895505999983, 49.255263713000112 ], [ -122.900889689999985, 49.255660007000095 ], [ -122.900804888999957, 49.255728709000095 ], [ -122.900035696999964, 49.256351602000102 ], [ -122.899350397999925, 49.256883188000074 ], [ -122.899117716999982, 49.25699370300007 ], [ -122.898758289999989, 49.257068912000108 ], [ -122.898386715999905, 49.257078993000093 ], [ -122.897726405999947, 49.25706994100009 ], [ -122.897685205999892, 49.257069376000061 ], [ -122.896063948999952, 49.257047114000088 ], [ -122.895452206999934, 49.257038704000088 ], [ -122.893604056999934, 49.257018786000131 ], [ -122.893399908, 49.257016584000048 ], [ -122.893008351999981, 49.257104438000027 ], [ -122.893008434999985, 49.25704138400004 ], [ -122.893008701999975, 49.256807095000084 ], [ -122.892996471999965, 49.256366383000064 ], [ -122.892993481999952, 49.256259158000063 ], [ -122.892991217999906, 49.256177793000063 ], [ -122.892966067999936, 49.255271111000084 ], [ -122.892964993999925, 49.255232913000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134809136", "BldgCostT": "83252079", "sL_LossRatio": "0.654242469291807", "sL_AssetLoss": "2152520", "sL_BldgLoss": "1408270", "sL_StrLoss": "489490", "sL_NStrLoss": "918780", "sL_ContLoss": "744250", "geom_point": "0101000020E6100000A1370D3868BC5EC061D23A05D4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.937009894, 49.26349853300011 ], [ -122.93698262, 49.263356991000052 ], [ -122.936774090999975, 49.262959631000058 ], [ -122.936488388999976, 49.262415108000042 ], [ -122.93640927699991, 49.261843497000029 ], [ -122.936469010999929, 49.261626295000063 ], [ -122.936560712999949, 49.261444188000077 ], [ -122.936833101999966, 49.2611215680001 ], [ -122.936998892999966, 49.260925167000039 ], [ -122.937358804000027, 49.260923342000098 ], [ -122.939509026999957, 49.260912412000081 ], [ -122.940502794999929, 49.260907339000042 ], [ -122.941252391999953, 49.260903498000069 ], [ -122.941264103999956, 49.260058788000102 ], [ -122.941375383999969, 49.260079109000124 ], [ -122.944191298999925, 49.260085912000093 ], [ -122.944689800999981, 49.260152304000023 ], [ -122.94517047599993, 49.260341598000117 ], [ -122.945663625999913, 49.260051101000059 ], [ -122.946106280999985, 49.259764567000111 ], [ -122.946267692, 49.259660116000084 ], [ -122.946336887000015, 49.259558657000056 ], [ -122.94636961099998, 49.259510690000113 ], [ -122.946379506999904, 49.259465570000081 ], [ -122.946402980999935, 49.259358497000058 ], [ -122.946356496999968, 49.259124816000025 ], [ -122.946154721999903, 49.258844952000047 ], [ -122.946095910999986, 49.258763395000081 ], [ -122.94648508399996, 49.258694208000087 ], [ -122.946676193999963, 49.258694257000045 ], [ -122.947387712999941, 49.258694489000064 ], [ -122.94842169899999, 49.258712835000061 ], [ -122.948667881999953, 49.258717190000084 ], [ -122.948876679999941, 49.258721973000036 ], [ -122.949004009999911, 49.258724902999987 ], [ -122.949076648999934, 49.258746400000049 ], [ -122.949626603999931, 49.258909204000126 ], [ -122.950040393999956, 49.259092102000089 ], [ -122.950237096999956, 49.25923460000012 ], [ -122.950349723999963, 49.259402601000083 ], [ -122.950423982999936, 49.259588499000081 ], [ -122.950421861999956, 49.259601498000109 ], [ -122.950389794999921, 49.259795593000035 ], [ -122.950343053, 49.259863439000078 ], [ -122.950263790999912, 49.25997851500005 ], [ -122.950069905999939, 49.260128004000123 ], [ -122.949861093999971, 49.260210309000101 ], [ -122.949074098999972, 49.26031239600006 ], [ -122.948911595999974, 49.260379895000085 ], [ -122.948664213999933, 49.260611602000075 ], [ -122.948651042000037, 49.26077742000011 ], [ -122.948616202999929, 49.261216485000041 ], [ -122.953439524999965, 49.261052826000096 ], [ -122.953421411999926, 49.263358406000101 ], [ -122.953393424999959, 49.263909807000104 ], [ -122.951965097999903, 49.263880301000036 ], [ -122.950696297999968, 49.263806592000023 ], [ -122.9495401, 49.26379647100007 ], [ -122.948320012999929, 49.26379572300003 ], [ -122.948171767999938, 49.263795607000063 ], [ -122.948045289999968, 49.263796539000104 ], [ -122.948015906999927, 49.265328926000116 ], [ -122.947997799999911, 49.266126500000013 ], [ -122.947922494999915, 49.266601898 ], [ -122.947804698999974, 49.266868807000073 ], [ -122.947444695999977, 49.267391007000079 ], [ -122.947144884999943, 49.267707693000084 ], [ -122.946304559999959, 49.26863351100009 ], [ -122.946297491999928, 49.268641301000081 ], [ -122.945996180999956, 49.26896284200005 ], [ -122.94575800899996, 49.269216981000099 ], [ -122.945357609999959, 49.269810094000036 ], [ -122.94516617699999, 49.270317202000079 ], [ -122.945101998000027, 49.27031101500004 ], [ -122.944385107999977, 49.270241996000038 ], [ -122.942738273999979, 49.270134568000053 ], [ -122.94155290499998, 49.270057200000068 ], [ -122.940951618999918, 49.269943786000042 ], [ -122.940580293, 49.269844110000072 ], [ -122.940101725999952, 49.269651081000077 ], [ -122.94007571199991, 49.269640587000019 ], [ -122.939694830999912, 49.269431378000036 ], [ -122.938209974999936, 49.268615691000029 ], [ -122.937828505999946, 49.268358109000054 ], [ -122.937594192999967, 49.268160397000038 ], [ -122.937279904999926, 49.267759698000084 ], [ -122.93705868699999, 49.26732279000008 ], [ -122.937018195999983, 49.267041510000119 ], [ -122.93703160599992, 49.266256303000013 ], [ -122.937037270999923, 49.266105894000042 ], [ -122.937040008999958, 49.266033971000063 ], [ -122.937041694999934, 49.265989031000068 ], [ -122.937060109999933, 49.26550294900008 ], [ -122.93708689, 49.264794986000012 ], [ -122.937018695999896, 49.264224608000056 ], [ -122.937018405999964, 49.263542605000026 ], [ -122.937009894, 49.26349853300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140525417", "BldgCostT": "89071667", "sL_LossRatio": "0.735372823877893", "sL_AssetLoss": "1677870", "sL_BldgLoss": "1233860", "sL_StrLoss": "566650", "sL_NStrLoss": "667210", "sL_ContLoss": "444010", "geom_point": "0101000020E6100000E0C168B960BC5EC0FFC02C1F0FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93972575199993, 49.260562366000066 ], [ -122.93970135899994, 49.25988827700003 ], [ -122.939729454999934, 49.259751644000048 ], [ -122.93986818299993, 49.259478269000077 ], [ -122.940393748999924, 49.25882161400007 ], [ -122.940573920999952, 49.258502628000087 ], [ -122.940754953999942, 49.257992442000138 ], [ -122.940853180999952, 49.257555184000076 ], [ -122.940964429999937, 49.257272753000031 ], [ -122.941282214999944, 49.256944242000017 ], [ -122.941903101999984, 49.25652343800008 ], [ -122.941951265999961, 49.25649453700003 ], [ -122.942227447000022, 49.25633434900007 ], [ -122.942330595999962, 49.256270154000056 ], [ -122.942390806999967, 49.256088214000094 ], [ -122.942453105999988, 49.255890988000104 ], [ -122.94257693599998, 49.255662857000054 ], [ -122.942954203999975, 49.255263749000044 ], [ -122.943189537999956, 49.255340470000121 ], [ -122.945650262999948, 49.256142849000121 ], [ -122.945637815999987, 49.256291109000124 ], [ -122.945601101999955, 49.256993591000047 ], [ -122.94549708299995, 49.257155600000075 ], [ -122.946738504999942, 49.257516786000089 ], [ -122.947175186999928, 49.257643608000066 ], [ -122.947375585999964, 49.257897007000096 ], [ -122.947387712999941, 49.258694489000064 ], [ -122.946676193999963, 49.258694257000045 ], [ -122.94648508399996, 49.258694208000087 ], [ -122.946095910999986, 49.258763395000081 ], [ -122.946154721999903, 49.258844952000047 ], [ -122.946356496999968, 49.259124816000025 ], [ -122.946402980999935, 49.259358497000058 ], [ -122.946379506999904, 49.259465570000081 ], [ -122.94636961099998, 49.259510690000113 ], [ -122.946336887000015, 49.259558657000056 ], [ -122.946267692, 49.259660116000084 ], [ -122.946106280999985, 49.259764567000111 ], [ -122.945663625999913, 49.260051101000059 ], [ -122.94517047599993, 49.260341598000117 ], [ -122.944689800999981, 49.260152304000023 ], [ -122.944191298999925, 49.260085912000093 ], [ -122.941375383999969, 49.260079109000124 ], [ -122.941264103999956, 49.260058788000102 ], [ -122.941252391999953, 49.260903498000069 ], [ -122.940502794999929, 49.260907339000042 ], [ -122.939509026999957, 49.260912412000081 ], [ -122.93972575199993, 49.260562366000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260191667", "BldgCostT": "168091667", "sL_LossRatio": "0.715738354918811", "sL_AssetLoss": "1945521", "sL_BldgLoss": "1392484", "sL_StrLoss": "586070", "sL_NStrLoss": "806414", "sL_ContLoss": "553037", "geom_point": "0101000020E61000004746DFEEB6C05EC067076D83249E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011094106999977, 49.234041904000073 ], [ -123.013496619999941, 49.23404540100011 ], [ -123.013498356999932, 49.234854184000078 ], [ -123.013499813999914, 49.235531803000065 ], [ -123.013500295999961, 49.235843411000054 ], [ -123.013500887999911, 49.236218298000061 ], [ -123.013501694999931, 49.236580990000085 ], [ -123.013502497, 49.236941702000131 ], [ -123.012871799999971, 49.236938178000081 ], [ -123.012280899999922, 49.23693489300004 ], [ -123.01170411499993, 49.236933906000019 ], [ -123.011065783999953, 49.236932803000109 ], [ -123.00881792499996, 49.236936206000102 ], [ -123.008829271999929, 49.236230541000097 ], [ -123.008841296999918, 49.235486503000061 ], [ -123.00882898499998, 49.234036700000054 ], [ -123.011094106999977, 49.234041904000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "683583720", "BldgCostT": "471080413", "sL_LossRatio": "0.86222207556781", "sL_AssetLoss": "2909334", "sL_BldgLoss": "2508492", "sL_StrLoss": "1241130", "sL_NStrLoss": "1267362", "sL_ContLoss": "400842", "geom_point": "0101000020E610000082AD0ABB85C05EC01F1011CC0B9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00747008899999, 49.232965788000101 ], [ -123.007676223999937, 49.232579594000114 ], [ -123.008548908999927, 49.232800186000105 ], [ -123.00882590399999, 49.23284839100004 ], [ -123.011077203999903, 49.232874799000058 ], [ -123.011085296999966, 49.233432952000037 ], [ -123.011094106999977, 49.234041904000073 ], [ -123.00882898499998, 49.234036700000054 ], [ -123.008841296999918, 49.235486503000061 ], [ -123.008829271999929, 49.236230541000097 ], [ -123.00881792499996, 49.236936206000102 ], [ -123.008723041999986, 49.236935369000065 ], [ -123.007445605999948, 49.236924180000116 ], [ -123.006608170999982, 49.236937887000089 ], [ -123.006319843999904, 49.236942599000024 ], [ -123.006197510999982, 49.236944606000058 ], [ -123.006196437999961, 49.236383729000082 ], [ -123.006195707999922, 49.23601389500007 ], [ -123.00619599, 49.235264501000081 ], [ -123.00619751, 49.234176292000043 ], [ -123.007453506, 49.234182303000082 ], [ -123.00747008899999, 49.232965788000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12143622", "BldgCostT": "6526380", "sL_LossRatio": "0.565623943820647", "sL_AssetLoss": "266290", "sL_BldgLoss": "150620", "sL_StrLoss": "54680", "sL_NStrLoss": "95940", "sL_ContLoss": "115670", "geom_point": "0101000020E610000040127A26C9C05EC00349AF38E29D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011077203999903, 49.232874799000058 ], [ -123.012183775999958, 49.232869569000059 ], [ -123.012407997999929, 49.232868497000055 ], [ -123.012885000999987, 49.232908221000059 ], [ -123.013493710999967, 49.232958879000108 ], [ -123.013496619999941, 49.23404540100011 ], [ -123.011094106999977, 49.234041904000073 ], [ -123.011085296999966, 49.233432952000037 ], [ -123.011077203999903, 49.232874799000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73135000", "BldgCostT": "47260000", "sL_LossRatio": "0.713052917827145", "sL_AssetLoss": "911980", "sL_BldgLoss": "650290", "sL_StrLoss": "308670", "sL_NStrLoss": "341620", "sL_ContLoss": "261690", "geom_point": "0101000020E610000064F7E461A1C15EC084F0E4AAE49E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025211302999963, 49.242629701000098 ], [ -123.02494657299998, 49.242581893000079 ], [ -123.02368823099998, 49.242547200000068 ], [ -123.023694595999956, 49.242983291000051 ], [ -123.023559883999923, 49.242985004000047 ], [ -123.023565006999945, 49.242570343000047 ], [ -123.023565135999917, 49.242561265000077 ], [ -123.023571314999955, 49.242057501000048 ], [ -123.02357128899996, 49.242048504000081 ], [ -123.023570599999985, 49.241530297000075 ], [ -123.023570529999944, 49.241490805000112 ], [ -123.02356977899997, 49.240967491000063 ], [ -123.023554872999938, 49.240393459000082 ], [ -123.023554542999989, 49.240380812000062 ], [ -123.023550784999969, 49.240236389000074 ], [ -123.02344874, 49.239579395000078 ], [ -123.023446797999924, 49.239566901000053 ], [ -123.023429489999941, 49.237760303000144 ], [ -123.023562589999983, 49.237760402000049 ], [ -123.023583800999972, 49.239560800000099 ], [ -123.023583917999986, 49.239569794000033 ], [ -123.024234220999986, 49.239582737000049 ], [ -123.02434402699997, 49.239584935999986 ], [ -123.025102077999946, 49.239600002000024 ], [ -123.025099182999952, 49.239236894000157 ], [ -123.026328898000017, 49.239696911000109 ], [ -123.025943558999955, 49.240098534000097 ], [ -123.025541718999989, 49.240517394000051 ], [ -123.027912296999915, 49.241498021000019 ], [ -123.028504797999972, 49.24174310900009 ], [ -123.027709091, 49.242588714000121 ], [ -123.026974000999942, 49.243346694000095 ], [ -123.026375828999946, 49.243103396000052 ], [ -123.025211302999963, 49.242629701000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48198166", "BldgCostT": "31351666", "sL_LossRatio": "0.72050138391834", "sL_AssetLoss": "567230", "sL_BldgLoss": "408690", "sL_StrLoss": "187190", "sL_NStrLoss": "221500", "sL_ContLoss": "158540", "geom_point": "0101000020E61000008CEA083BA0C15EC02B53B3A42F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02355799399993, 49.244428097000117 ], [ -123.023559883999923, 49.242985004000047 ], [ -123.023694595999956, 49.242983291000051 ], [ -123.02368823099998, 49.242547200000068 ], [ -123.02494657299998, 49.242581893000079 ], [ -123.025211302999963, 49.242629701000098 ], [ -123.026375828999946, 49.243103396000052 ], [ -123.026974000999942, 49.243346694000095 ], [ -123.027526811999934, 49.243562815000104 ], [ -123.028052405999986, 49.243768300000035 ], [ -123.027776223000032, 49.244054123000041 ], [ -123.02737147699996, 49.244472898000062 ], [ -123.026269604999953, 49.244465974000022 ], [ -123.026226595999944, 49.24446569000002 ], [ -123.025893098999987, 49.244355597000052 ], [ -123.025707386999926, 49.244425212000031 ], [ -123.025611554999927, 49.244438383000087 ], [ -123.025442959999978, 49.24446157200007 ], [ -123.02542891099999, 49.244463504000066 ], [ -123.024968810999923, 49.24446428300007 ], [ -123.024587712999931, 49.244432207000052 ], [ -123.023714701999907, 49.244426111000038 ], [ -123.02355799399993, 49.244428097000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49971917", "BldgCostT": "33991667", "sL_LossRatio": "0.744258055115385", "sL_AssetLoss": "713739", "sL_BldgLoss": "531206", "sL_StrLoss": "251890", "sL_NStrLoss": "279316", "sL_ContLoss": "182533", "geom_point": "0101000020E61000001CA88C7FDFC15EC0B17B9F68269F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.027709091, 49.242588714000121 ], [ -123.028504797999972, 49.24174310900009 ], [ -123.028998687999916, 49.241946624000057 ], [ -123.029647013999949, 49.242213776000042 ], [ -123.030466626999939, 49.242551528000099 ], [ -123.030893053999989, 49.242727218000027 ], [ -123.031374694, 49.242925711000062 ], [ -123.030999787, 49.243329433000113 ], [ -123.030597402999916, 49.24376271000007 ], [ -123.031644118999964, 49.244123899000073 ], [ -123.031491392999939, 49.244493609000074 ], [ -123.029942319, 49.24449419200004 ], [ -123.029209728, 49.244485831000055 ], [ -123.02854938899992, 49.244478294000054 ], [ -123.028367091999897, 49.244477450000097 ], [ -123.027890917999969, 49.244475286000153 ], [ -123.02737147699996, 49.244472898000062 ], [ -123.027776223000032, 49.244054123000041 ], [ -123.028052405999986, 49.243768300000035 ], [ -123.027526811999934, 49.243562815000104 ], [ -123.026974000999942, 49.243346694000095 ], [ -123.027709091, 49.242588714000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123244363", "BldgCostT": "80046935", "sL_LossRatio": "0.712684252613852", "sL_AssetLoss": "1605676", "sL_BldgLoss": "1144340", "sL_StrLoss": "504460", "sL_NStrLoss": "639880", "sL_ContLoss": "461336", "geom_point": "0101000020E61000009F0D7DA0AAC15EC05CB16CA4749F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02355799399993, 49.244428097000117 ], [ -123.023714701999907, 49.244426111000038 ], [ -123.024587712999931, 49.244432207000052 ], [ -123.024968810999923, 49.24446428300007 ], [ -123.02542891099999, 49.244463504000066 ], [ -123.025442959999978, 49.24446157200007 ], [ -123.025611554999927, 49.244438383000087 ], [ -123.025707386999926, 49.244425212000031 ], [ -123.025893098999987, 49.244355597000052 ], [ -123.026226595999944, 49.24446569000002 ], [ -123.026269604999953, 49.244465974000022 ], [ -123.02737147699996, 49.244472898000062 ], [ -123.027890917999969, 49.244475286000153 ], [ -123.028367091999897, 49.244477450000097 ], [ -123.02854938899992, 49.244478294000054 ], [ -123.028544412999935, 49.245350201000107 ], [ -123.028542390999931, 49.246196017000038 ], [ -123.028538408999964, 49.247052486000037 ], [ -123.02787869799999, 49.247047187000106 ], [ -123.026270808999953, 49.247034203000105 ], [ -123.024471238999979, 49.247043487000049 ], [ -123.023848700999935, 49.247046691000087 ], [ -123.023674136999958, 49.247047040000098 ], [ -123.023660415000023, 49.247047079000076 ], [ -123.023543798999981, 49.247047307000088 ], [ -123.023551316999928, 49.246180897000059 ], [ -123.023554438999938, 49.245356151000109 ], [ -123.023556213999953, 49.244898188000022 ], [ -123.023556388999978, 49.244844185000069 ], [ -123.023556463999924, 49.244828043000034 ], [ -123.02355799399993, 49.244428097000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83079417", "BldgCostT": "54881667", "sL_LossRatio": "0.730559729067053", "sL_AssetLoss": "1021655", "sL_BldgLoss": "746380", "sL_StrLoss": "369770", "sL_NStrLoss": "376610", "sL_ContLoss": "275275", "geom_point": "0101000020E6100000816A41F7FEC15EC09488A6A2679F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033331963999942, 49.24450728700004 ], [ -123.034091189999955, 49.244512902000103 ], [ -123.033998700999945, 49.244626511000099 ], [ -123.03394429, 49.244662008000027 ], [ -123.033890297999932, 49.244754189000098 ], [ -123.033789715999902, 49.245104505000036 ], [ -123.033776775999925, 49.245347393000046 ], [ -123.033776276999959, 49.245356397000101 ], [ -123.033781952999931, 49.246224859000037 ], [ -123.033782017999897, 49.246233900000121 ], [ -123.033099805999925, 49.246228978000033 ], [ -123.029184279999967, 49.246200651000066 ], [ -123.028542390999931, 49.246196017000038 ], [ -123.028544412999935, 49.245350201000107 ], [ -123.02854938899992, 49.244478294000054 ], [ -123.029209728, 49.244485831000055 ], [ -123.029942319, 49.24449419200004 ], [ -123.031491392999939, 49.244493609000074 ], [ -123.0331121899999, 49.244505637000039 ], [ -123.033331963999942, 49.24450728700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145886000", "BldgCostT": "100580000", "sL_LossRatio": "0.794928030790629", "sL_AssetLoss": "1235181", "sL_BldgLoss": "981880", "sL_StrLoss": "483910", "sL_NStrLoss": "497970", "sL_ContLoss": "253301", "geom_point": "0101000020E61000003DA551BBFEC15EC01CCAC3219F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033782017999897, 49.246233900000121 ], [ -123.033905470999969, 49.246235496000111 ], [ -123.033888965999935, 49.247088917000085 ], [ -123.033888804999933, 49.247098008000073 ], [ -123.03378914299995, 49.247096875000054 ], [ -123.033774883999953, 49.247096696000071 ], [ -123.033763950999969, 49.247862983000104 ], [ -123.033763822999916, 49.247872005000055 ], [ -123.03308653500001, 49.247874855000077 ], [ -123.031064408999939, 49.247883302000055 ], [ -123.028534113999939, 49.24789108600001 ], [ -123.028536396999954, 49.247444518000108 ], [ -123.028538408999964, 49.247052486000037 ], [ -123.028542390999931, 49.246196017000038 ], [ -123.029184279999967, 49.246200651000066 ], [ -123.033099805999925, 49.246228978000033 ], [ -123.033782017999897, 49.246233900000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52187917", "BldgCostT": "35991667", "sL_LossRatio": "0.774836435241059", "sL_AssetLoss": "629720", "sL_BldgLoss": "487930", "sL_StrLoss": "234810", "sL_NStrLoss": "253120", "sL_ContLoss": "141790", "geom_point": "0101000020E6100000C15A636D5FC35EC047C1191D0C9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051275584999971, 49.218047024000086 ], [ -123.05419528799996, 49.217975414000101 ], [ -123.054805909999928, 49.218492734000044 ], [ -123.054862201999967, 49.218540407000077 ], [ -123.054887607999945, 49.218961809000071 ], [ -123.054881926999911, 49.219405450000053 ], [ -123.05487674699998, 49.219810123000059 ], [ -123.054871986999942, 49.220182005000012 ], [ -123.052760212999942, 49.220194507000052 ], [ -123.051236266999965, 49.220186931000072 ], [ -123.050586801999941, 49.220183686000048 ], [ -123.050579113999916, 49.219785012000074 ], [ -123.050562781999986, 49.218940787000037 ], [ -123.050564601, 49.218490382000027 ], [ -123.050566286999981, 49.218064391000077 ], [ -123.051275584999971, 49.218047024000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80938841", "BldgCostT": "52324117", "sL_LossRatio": "0.721720925465929", "sL_AssetLoss": "1024565", "sL_BldgLoss": "739450", "sL_StrLoss": "346090", "sL_NStrLoss": "393360", "sL_ContLoss": "285115", "geom_point": "0101000020E6100000405A10885FC35EC07FE641B4B59B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052747044999961, 49.214552440000077 ], [ -123.053089209999925, 49.214253489000086 ], [ -123.054397204999972, 49.214900885000056 ], [ -123.054198258999989, 49.215236148 ], [ -123.053893212, 49.215750189000076 ], [ -123.053733201999961, 49.21607853800009 ], [ -123.053680097999944, 49.21618748900012 ], [ -123.054378841999934, 49.216208841000061 ], [ -123.05510881, 49.216231105000077 ], [ -123.055069892999981, 49.21662909300008 ], [ -123.055137777999946, 49.216965192000032 ], [ -123.054474083999935, 49.217048079000115 ], [ -123.053664398999913, 49.217149191000047 ], [ -123.053915656999948, 49.217540202000073 ], [ -123.05419528799996, 49.217975414000101 ], [ -123.051275584999971, 49.218047024000086 ], [ -123.050566286999981, 49.218064391000077 ], [ -123.0506370089999, 49.217016904000069 ], [ -123.05088748799993, 49.216357093000084 ], [ -123.051407688999944, 49.215728994000131 ], [ -123.051724820999965, 49.21544959100008 ], [ -123.052139908999948, 49.215083850000084 ], [ -123.05226538, 49.214973292000195 ], [ -123.052460374999953, 49.214802925000122 ], [ -123.052635054999982, 49.21465032800009 ], [ -123.052747044999961, 49.214552440000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76249000", "BldgCostT": "50320000", "sL_LossRatio": "0.766440468846391", "sL_AssetLoss": "810500", "sL_BldgLoss": "621200", "sL_StrLoss": "332030", "sL_NStrLoss": "289170", "sL_ContLoss": "189300", "geom_point": "0101000020E61000009B5B6B39A1C35EC0CB7B20A2669B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055121211999975, 49.212421805000119 ], [ -123.05560370299996, 49.212214299000095 ], [ -123.055913691999976, 49.212127540000104 ], [ -123.056131813999968, 49.212066498000077 ], [ -123.056523992999985, 49.2120277040001 ], [ -123.057107977999976, 49.21212290100005 ], [ -123.057410322999928, 49.212225812000035 ], [ -123.057876381999932, 49.212450186000105 ], [ -123.05872119499999, 49.211808408000138 ], [ -123.059172812999961, 49.211610802000131 ], [ -123.059380801999964, 49.211945287000049 ], [ -123.059390813999954, 49.211982794000086 ], [ -123.059417623999977, 49.212083386000046 ], [ -123.059439583999961, 49.212165797000033 ], [ -123.059449901, 49.212371492000081 ], [ -123.059410403999919, 49.212930789000097 ], [ -123.059401591999972, 49.213351194000083 ], [ -123.059381948999942, 49.214231129000119 ], [ -123.059376911999934, 49.214456799000061 ], [ -123.059358393999943, 49.215269714000058 ], [ -123.059344322999934, 49.215837786000101 ], [ -123.058935122999955, 49.215830477000061 ], [ -123.058294291, 49.215819011000086 ], [ -123.05805671, 49.215817112000053 ], [ -123.057827874999987, 49.215815300000095 ], [ -123.05713825, 49.215800898000097 ], [ -123.056416199999944, 49.215785792000098 ], [ -123.055749751999912, 49.215783823000052 ], [ -123.055306101999946, 49.215782484000023 ], [ -123.05510881, 49.216231105000077 ], [ -123.054378841999934, 49.216208841000061 ], [ -123.053680097999944, 49.21618748900012 ], [ -123.053733201999961, 49.21607853800009 ], [ -123.053893212, 49.215750189000076 ], [ -123.054198258999989, 49.215236148 ], [ -123.054397204999972, 49.214900885000056 ], [ -123.053089209999925, 49.214253489000086 ], [ -123.053441847999949, 49.213949707000019 ], [ -123.054050452999931, 49.213425430000015 ], [ -123.05479198099999, 49.212786606000058 ], [ -123.054950715999937, 49.212708097000117 ], [ -123.055117203999941, 49.212700905000077 ], [ -123.055121211999975, 49.212421805000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65812501", "BldgCostT": "42705001", "sL_LossRatio": "0.726566265290058", "sL_AssetLoss": "786377", "sL_BldgLoss": "571355", "sL_StrLoss": "284020", "sL_NStrLoss": "287335", "sL_ContLoss": "215022", "geom_point": "0101000020E6100000A9E76A4C84C55EC0A43BEC11AC9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083106002999941, 49.216451909000064 ], [ -123.083113634999947, 49.21600704700009 ], [ -123.083117466999937, 49.215782073000092 ], [ -123.0831214, 49.21555231300006 ], [ -123.083138601, 49.215116841000032 ], [ -123.083156197, 49.21467050299999 ], [ -123.083648704999945, 49.214681542000051 ], [ -123.085020641999932, 49.214712316000053 ], [ -123.085698290999957, 49.214727504000024 ], [ -123.086311542999965, 49.214737887000091 ], [ -123.086792537999926, 49.214746033000083 ], [ -123.087382932999972, 49.214756045000037 ], [ -123.08792331899997, 49.214765199000048 ], [ -123.087919637999946, 49.215184672000078 ], [ -123.087916220999986, 49.215578398000112 ], [ -123.087907910999931, 49.215751596000132 ], [ -123.087892858999979, 49.216066425000108 ], [ -123.087872115999929, 49.216500502000066 ], [ -123.090354279999985, 49.216524587000087 ], [ -123.090995203999952, 49.216530801000097 ], [ -123.090978687999964, 49.217122190000055 ], [ -123.090969490999925, 49.217401188000096 ], [ -123.090328056999965, 49.217394039000091 ], [ -123.087838416999986, 49.217366199000054 ], [ -123.085464590999933, 49.217313812000093 ], [ -123.083095701999923, 49.217316403000083 ], [ -123.08309929899994, 49.21701448900005 ], [ -123.083100808000012, 49.216888574000045 ], [ -123.083106002999941, 49.216451909000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124901667", "BldgCostT": "84956667", "sL_LossRatio": "0.779038047379756", "sL_AssetLoss": "696500", "sL_BldgLoss": "542600", "sL_StrLoss": "295350", "sL_NStrLoss": "247250", "sL_ContLoss": "153900", "geom_point": "0101000020E6100000FCA95C6E91C55EC06BB0A182E09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090328056999965, 49.217394039000091 ], [ -123.090969490999925, 49.217401188000096 ], [ -123.090942307999967, 49.218274307000101 ], [ -123.09030278099999, 49.218266399000129 ], [ -123.087804497, 49.218235502000027 ], [ -123.085438917999937, 49.218204903000057 ], [ -123.083060795999984, 49.218198201000078 ], [ -123.083079475999952, 49.217725854000051 ], [ -123.083095701999923, 49.217316403000083 ], [ -123.085464590999933, 49.217313812000093 ], [ -123.087838416999986, 49.217366199000054 ], [ -123.090328056999965, 49.217394039000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143592250", "BldgCostT": "97555000", "sL_LossRatio": "0.799660065632798", "sL_AssetLoss": "1350849", "sL_BldgLoss": "1080220", "sL_StrLoss": "501680", "sL_NStrLoss": "578540", "sL_ContLoss": "270629", "geom_point": "0101000020E6100000FE32CE9577C55EC082D6C397099C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085438917999937, 49.218204903000057 ], [ -123.087804497, 49.218235502000027 ], [ -123.087791555999956, 49.218665887000036 ], [ -123.087779286999947, 49.219074410000069 ], [ -123.087764165999928, 49.219529235000081 ], [ -123.087751401, 49.219913206000051 ], [ -123.083030587999986, 49.219837798000107 ], [ -123.083034494999964, 49.219623494000082 ], [ -123.083040962999959, 49.219453629000107 ], [ -123.08305770500003, 49.219013385000068 ], [ -123.083059259999956, 49.218606621000077 ], [ -123.083060795999984, 49.218198201000078 ], [ -123.085438917999937, 49.218204903000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83290083", "BldgCostT": "54873333", "sL_LossRatio": "0.736573728939914", "sL_AssetLoss": "1006050", "sL_BldgLoss": "741030", "sL_StrLoss": "355690", "sL_NStrLoss": "385340", "sL_ContLoss": "265020", "geom_point": "0101000020E61000005EF1B315A4C55EC0C15E7A5E1E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09030278099999, 49.218266399000129 ], [ -123.090942307999967, 49.218274307000101 ], [ -123.090919680999932, 49.219116795000055 ], [ -123.090903799999964, 49.219962316000085 ], [ -123.090892396999976, 49.220647521000039 ], [ -123.089976335999935, 49.220633447000061 ], [ -123.083007901, 49.22052629500012 ], [ -123.083022811999982, 49.220074037000138 ], [ -123.083030587999986, 49.219837798000107 ], [ -123.087751401, 49.219913206000051 ], [ -123.087764165999928, 49.219529235000081 ], [ -123.087779286999947, 49.219074410000069 ], [ -123.087791555999956, 49.218665887000036 ], [ -123.087804497, 49.218235502000027 ], [ -123.09030278099999, 49.218266399000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90467470", "BldgCostT": "55770413", "sL_LossRatio": "0.711182606200947", "sL_AssetLoss": "975980", "sL_BldgLoss": "694100", "sL_StrLoss": "310860", "sL_NStrLoss": "383240", "sL_ContLoss": "281880", "geom_point": "0101000020E61000003E53437679C55EC0B1A6689B519C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080228409000014, 49.220484381000091 ], [ -123.080925957999966, 49.220494914000078 ], [ -123.083007901, 49.22052629500012 ], [ -123.089976335999935, 49.220633447000061 ], [ -123.090892396999976, 49.220647521000039 ], [ -123.090889105999906, 49.22085369399999 ], [ -123.090879267, 49.221362138000103 ], [ -123.090871890999964, 49.221742313000078 ], [ -123.090869826999949, 49.221994500000044 ], [ -123.089291238999948, 49.221970943000052 ], [ -123.08524056099999, 49.221910415000067 ], [ -123.082961598999972, 49.221876300000105 ], [ -123.082247405999951, 49.221866030000101 ], [ -123.081613501, 49.221856895000023 ], [ -123.08088821599992, 49.221846330000076 ], [ -123.080177817, 49.221836 ], [ -123.080201970999923, 49.221190325000052 ], [ -123.080228409000014, 49.220484381000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208589083", "BldgCostT": "143848333", "sL_LossRatio": "0.79873545262107", "sL_AssetLoss": "1081810", "sL_BldgLoss": "864080", "sL_StrLoss": "464690", "sL_NStrLoss": "399390", "sL_ContLoss": "217730", "geom_point": "0101000020E610000041EF9E4D98C55EC081C71231809C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0853261889999, 49.223048732000066 ], [ -123.085335886999985, 49.222645809000021 ], [ -123.082908400999912, 49.222613497000069 ], [ -123.082933864999987, 49.222260309000021 ], [ -123.082961598999972, 49.221876300000105 ], [ -123.08524056099999, 49.221910415000067 ], [ -123.089291238999948, 49.221970943000052 ], [ -123.090869826999949, 49.221994500000044 ], [ -123.090840996999972, 49.22271709600016 ], [ -123.09084239399999, 49.223571098000072 ], [ -123.090078623999901, 49.223560391000092 ], [ -123.088069410999978, 49.223532187000046 ], [ -123.085315381, 49.223496505000121 ], [ -123.0853261889999, 49.223048732000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97728728", "BldgCostT": "61929857", "sL_LossRatio": "0.69455198790597", "sL_AssetLoss": "1193316", "sL_BldgLoss": "828820", "sL_StrLoss": "363260", "sL_NStrLoss": "465560", "sL_ContLoss": "364496", "geom_point": "0101000020E6100000E1C2EC2BF0C55EC06146B2261A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094298307999935, 49.218330952000066 ], [ -123.094870197999953, 49.218340596000147 ], [ -123.094860227999931, 49.218785772000089 ], [ -123.094850988999966, 49.219195794 ], [ -123.094841042999931, 49.219631400000054 ], [ -123.09483208099999, 49.220024094000124 ], [ -123.094275057999965, 49.220014804000073 ], [ -123.09426133099997, 49.220014567000085 ], [ -123.094222019999975, 49.220013901000108 ], [ -123.094214355999938, 49.220469058000084 ], [ -123.094206889999924, 49.220912513000059 ], [ -123.09151753399999, 49.220864857000038 ], [ -123.090889105999906, 49.22085369399999 ], [ -123.090892396999976, 49.220647521000039 ], [ -123.090903799999964, 49.219962316000085 ], [ -123.090919680999932, 49.219116795000055 ], [ -123.090942307999967, 49.218274307000101 ], [ -123.091566053999927, 49.218284849000042 ], [ -123.091758527999943, 49.218288095000041 ], [ -123.094298307999935, 49.218330952000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68180834", "BldgCostT": "45283334", "sL_LossRatio": "0.761852331606218", "sL_AssetLoss": "772000", "sL_BldgLoss": "588150", "sL_StrLoss": "306580", "sL_NStrLoss": "281570", "sL_ContLoss": "183850", "geom_point": "0101000020E6100000EFCFB0DE09C65EC00C79A97DDF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090969490999925, 49.217401188000096 ], [ -123.090978687999964, 49.217122190000055 ], [ -123.091784682999958, 49.217136781000058 ], [ -123.094311303, 49.217182471000051 ], [ -123.094338771999958, 49.217182969000113 ], [ -123.096947307, 49.21723008000005 ], [ -123.097768715999962, 49.217244910000069 ], [ -123.097758409, 49.217519385000095 ], [ -123.097731294999974, 49.218392416000071 ], [ -123.096921846999948, 49.218377763000028 ], [ -123.094870197999953, 49.218340596000147 ], [ -123.094298307999935, 49.218330952000066 ], [ -123.091758527999943, 49.218288095000041 ], [ -123.091566053999927, 49.218284849000042 ], [ -123.090942307999967, 49.218274307000101 ], [ -123.090969490999925, 49.217401188000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193439645", "BldgCostT": "131751524", "sL_LossRatio": "0.747706610382464", "sL_AssetLoss": "1217630", "sL_BldgLoss": "910430", "sL_StrLoss": "455670", "sL_NStrLoss": "454760", "sL_ContLoss": "307200", "geom_point": "0101000020E6100000B82ACB0816C65EC0217FACB7B89B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097012645999911, 49.215753636000102 ], [ -123.097812982999969, 49.215767 ], [ -123.097784777999919, 49.216657990000023 ], [ -123.097773074999978, 49.217085676000075 ], [ -123.097771643999948, 49.217138017000082 ], [ -123.097768715999962, 49.217244910000069 ], [ -123.096947307, 49.21723008000005 ], [ -123.094338771999958, 49.217182969000113 ], [ -123.094311303, 49.217182471000051 ], [ -123.091784682999958, 49.217136781000058 ], [ -123.090978687999964, 49.217122190000055 ], [ -123.090995203999952, 49.216530801000097 ], [ -123.09167359199995, 49.216541471000035 ], [ -123.091797082999946, 49.216543418000107 ], [ -123.094193882999932, 49.216581089000087 ], [ -123.094203892999971, 49.216151939000042 ], [ -123.094214296999908, 49.215706909000048 ], [ -123.094334309999979, 49.215708902000138 ], [ -123.094361756999902, 49.215709378000085 ], [ -123.097012645999911, 49.215753636000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214275083", "BldgCostT": "145853333", "sL_LossRatio": "0.792184554482927", "sL_AssetLoss": "1815789", "sL_BldgLoss": "1438440", "sL_StrLoss": "679280", "sL_NStrLoss": "759160", "sL_ContLoss": "377349", "geom_point": "0101000020E6100000E2D132F735C65EC02EB6EE8B709B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09426505099999, 49.213768457000086 ], [ -123.094284008999978, 49.213209906000081 ], [ -123.094384805999965, 49.213215625000025 ], [ -123.094412066999951, 49.213217184000051 ], [ -123.094495032999973, 49.213221889000124 ], [ -123.095341104999989, 49.213269999 ], [ -123.097883406999955, 49.213432098000034 ], [ -123.100220211999925, 49.213590496000073 ], [ -123.101388366999927, 49.213669062000122 ], [ -123.102074714000011, 49.213715198000017 ], [ -123.10205649699995, 49.214138006000056 ], [ -123.102049699999924, 49.214357697000018 ], [ -123.098507103999935, 49.21429812700007 ], [ -123.097857517999927, 49.2142871960001 ], [ -123.097837804999941, 49.214931693000061 ], [ -123.097812982999969, 49.215767 ], [ -123.097012645999911, 49.215753636000102 ], [ -123.094361756999902, 49.215709378000085 ], [ -123.094334309999979, 49.215708902000138 ], [ -123.094214296999908, 49.215706909000048 ], [ -123.094223772999925, 49.215324334000108 ], [ -123.094234987, 49.214870595000036 ], [ -123.094249711999979, 49.21421970199999 ], [ -123.09426505099999, 49.213768457000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198846061", "BldgCostT": "135978190", "sL_LossRatio": "0.777765259730724", "sL_AssetLoss": "2281151", "sL_BldgLoss": "1774200", "sL_StrLoss": "868020", "sL_NStrLoss": "906180", "sL_ContLoss": "506951", "geom_point": "0101000020E61000002264E62365C65EC06FD609FD869B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098507103999935, 49.21429812700007 ], [ -123.102049699999924, 49.214357697000018 ], [ -123.102023226999933, 49.215001903000051 ], [ -123.101991471999924, 49.215818095000046 ], [ -123.101311416999977, 49.215809803000042 ], [ -123.098454192999952, 49.215774840000066 ], [ -123.097812982999969, 49.215767 ], [ -123.097837804999941, 49.214931693000061 ], [ -123.097857517999927, 49.2142871960001 ], [ -123.098507103999935, 49.21429812700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61804000", "BldgCostT": "41680000", "sL_LossRatio": "0.751459559962814", "sL_AssetLoss": "806750", "sL_BldgLoss": "606240", "sL_StrLoss": "295550", "sL_NStrLoss": "310690", "sL_ContLoss": "200510", "geom_point": "0101000020E61000008F6FB56F6AC65EC00C6D1018319B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097942470999925, 49.212154428000069 ], [ -123.097952404999916, 49.211669290000017 ], [ -123.100288083999942, 49.211733896000105 ], [ -123.100305668999951, 49.211253153000072 ], [ -123.100321116999908, 49.210831297000055 ], [ -123.100734778999978, 49.210843298000114 ], [ -123.101479271999935, 49.210970983000152 ], [ -123.101504983999931, 49.210975386000044 ], [ -123.101545286999979, 49.210982288 ], [ -123.101627671999935, 49.211002962000073 ], [ -123.101765754000013, 49.21103762400007 ], [ -123.102220902999932, 49.211151799000113 ], [ -123.102182599999935, 49.211787605000026 ], [ -123.102143075999948, 49.212419788000034 ], [ -123.102129613999978, 49.212680708000029 ], [ -123.102093679999953, 49.213255304000022 ], [ -123.102074714000011, 49.213715198000017 ], [ -123.101388366999927, 49.213669062000122 ], [ -123.100220211999925, 49.213590496000073 ], [ -123.097883406999955, 49.213432098000034 ], [ -123.097905246, 49.213054195000097 ], [ -123.097933483999967, 49.212565092000105 ], [ -123.097940389999977, 49.21225629900006 ], [ -123.097942470999925, 49.212154428000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108500500", "BldgCostT": "69670000", "sL_LossRatio": "0.709511860695762", "sL_AssetLoss": "1845170", "sL_BldgLoss": "1309170", "sL_StrLoss": "596600", "sL_NStrLoss": "712570", "sL_ContLoss": "536000", "geom_point": "0101000020E610000077E48212AAC65EC0A2003893429B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102182599999935, 49.211787605000026 ], [ -123.102220902999932, 49.211151799000113 ], [ -123.102797630999987, 49.211337059000066 ], [ -123.105272006999954, 49.212131899000013 ], [ -123.105536186000023, 49.212187601000089 ], [ -123.105942970999976, 49.21226544200006 ], [ -123.10657092, 49.212385594000089 ], [ -123.106534743999987, 49.212894399000056 ], [ -123.106504290999908, 49.213322501000057 ], [ -123.106432401999939, 49.214212412000066 ], [ -123.105796212999934, 49.214201591000169 ], [ -123.102692980999947, 49.214148834000135 ], [ -123.10205649699995, 49.214138006000056 ], [ -123.102074714000011, 49.213715198000017 ], [ -123.102093679999953, 49.213255304000022 ], [ -123.102129613999978, 49.212680708000029 ], [ -123.102143075999948, 49.212419788000034 ], [ -123.102182599999935, 49.211787605000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616476387", "BldgCostT": "390113977", "sL_LossRatio": "0.676178371720628", "sL_AssetLoss": "7229128", "sL_BldgLoss": "4888180", "sL_StrLoss": "1977660", "sL_NStrLoss": "2910520", "sL_ContLoss": "2340948", "geom_point": "0101000020E61000000114038704C75EC04263C470BB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109902713999986, 49.213824702000061 ], [ -123.109922298999948, 49.213372811000056 ], [ -123.107072553999956, 49.213330871000032 ], [ -123.106504290999908, 49.213322501000057 ], [ -123.106534743999987, 49.212894399000056 ], [ -123.10657092, 49.212385594000089 ], [ -123.105942970999976, 49.21226544200006 ], [ -123.105536186000023, 49.212187601000089 ], [ -123.105272006999954, 49.212131899000013 ], [ -123.102797630999987, 49.211337059000066 ], [ -123.102220902999932, 49.211151799000113 ], [ -123.102221487999913, 49.2111423220001 ], [ -123.102227396999936, 49.211047385000086 ], [ -123.102331584999959, 49.209332402000044 ], [ -123.102418518999926, 49.20723580500001 ], [ -123.102422094999952, 49.207121715000028 ], [ -123.10242691800002, 49.206969402000041 ], [ -123.102470286999946, 49.205173408000043 ], [ -123.102457973999961, 49.204924208000087 ], [ -123.102343723999965, 49.204817320000103 ], [ -123.102715509999911, 49.204971293000021 ], [ -123.105489490999915, 49.204915790000044 ], [ -123.106299198999949, 49.204959900000077 ], [ -123.107217798999955, 49.205110902000072 ], [ -123.111434305, 49.205170694000046 ], [ -123.111763578999955, 49.205323099000026 ], [ -123.113411092999982, 49.205259015000145 ], [ -123.115674901999952, 49.204860195000059 ], [ -123.117076431999976, 49.204401640000107 ], [ -123.117161621999983, 49.205012966000027 ], [ -123.117259262999937, 49.205714181000076 ], [ -123.117249405999956, 49.205859880000084 ], [ -123.117290400999977, 49.205913568000085 ], [ -123.117291154000014, 49.205998306000048 ], [ -123.117291849999958, 49.206071750000014 ], [ -123.11724654399994, 49.207440612000042 ], [ -123.117197317999938, 49.208965348000035 ], [ -123.117176885000035, 49.20954569000007 ], [ -123.117166438999945, 49.209860816000038 ], [ -123.11707768799999, 49.209964743000128 ], [ -123.117072746999938, 49.210088018000128 ], [ -123.117053164999959, 49.210248733000064 ], [ -123.116528283999955, 49.210459006000107 ], [ -123.116237606999988, 49.210581753000085 ], [ -123.11618049499999, 49.210605885000128 ], [ -123.115651783999965, 49.210829187000101 ], [ -123.115059094999964, 49.21102679800002 ], [ -123.114716701999939, 49.211125792000068 ], [ -123.11450009899994, 49.211188388000018 ], [ -123.11424932599999, 49.211230887000092 ], [ -123.114096735999965, 49.21125675800004 ], [ -123.114016174999946, 49.211270386000066 ], [ -123.112815100999953, 49.211473895000083 ], [ -123.112803466999964, 49.211799109000012 ], [ -123.112776094999944, 49.212565514000076 ], [ -123.112840486999971, 49.212567294000138 ], [ -123.113281400999952, 49.212759207000083 ], [ -123.113577606999925, 49.212960809000066 ], [ -123.113747889, 49.213158202000052 ], [ -123.11274980599994, 49.213363881000127 ], [ -123.112739565999931, 49.213643002000026 ], [ -123.112730959999908, 49.213876760000062 ], [ -123.112724118999949, 49.214064003000047 ], [ -123.112719695999928, 49.214289093000062 ], [ -123.109884388999959, 49.21424641100004 ], [ -123.109902713999986, 49.213824702000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "266312248", "BldgCostT": "153810228", "sL_LossRatio": "0.6230535585315", "sL_AssetLoss": "3900387", "sL_BldgLoss": "2430150", "sL_StrLoss": "924790", "sL_NStrLoss": "1505360", "sL_ContLoss": "1470237", "geom_point": "0101000020E6100000D10AABC2B0C75EC0AA4E2FE7889A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121368519999947, 49.205315897000055 ], [ -123.122486415999973, 49.20505479900006 ], [ -123.123509654000017, 49.206111480000082 ], [ -123.123907387, 49.206522172000099 ], [ -123.124414389999941, 49.207045692000037 ], [ -123.12442389899995, 49.207055860000047 ], [ -123.124474912, 49.20711040900008 ], [ -123.124263418999973, 49.207201198000071 ], [ -123.122828186999982, 49.20779879500008 ], [ -123.121699960999962, 49.208269553000093 ], [ -123.120946510999957, 49.208604334000036 ], [ -123.120380583999989, 49.208856796000092 ], [ -123.118961792999983, 49.209453902000043 ], [ -123.118299529999916, 49.209733498000105 ], [ -123.11722504799998, 49.210176784000041 ], [ -123.117053164999959, 49.210248733000064 ], [ -123.117072746999938, 49.210088018000128 ], [ -123.11707768799999, 49.209964743000128 ], [ -123.117166438999945, 49.209860816000038 ], [ -123.117176885000035, 49.20954569000007 ], [ -123.117197317999938, 49.208965348000035 ], [ -123.11724654399994, 49.207440612000042 ], [ -123.117291849999958, 49.206071750000014 ], [ -123.119119399999988, 49.205741411000098 ], [ -123.119982587999985, 49.205605903000034 ], [ -123.121216398999977, 49.205347717000066 ], [ -123.121368519999947, 49.205315897000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258667002", "BldgCostT": "176200958", "sL_LossRatio": "0.77214434168414", "sL_AssetLoss": "4343333", "sL_BldgLoss": "3353680", "sL_StrLoss": "1514670", "sL_NStrLoss": "1839010", "sL_ContLoss": "989653", "geom_point": "0101000020E6100000778BA7BB7EC75EC02451489555914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114192551999977, 49.137436758000078 ], [ -123.114267096, 49.134232091000044 ], [ -123.114284020999946, 49.133451499000081 ], [ -123.115635895999986, 49.133455295000019 ], [ -123.117847889999922, 49.13346229900003 ], [ -123.1191422039999, 49.133466286000065 ], [ -123.11913358799994, 49.134956203000087 ], [ -123.120367989999963, 49.134976707000085 ], [ -123.120347008999971, 49.135470704000099 ], [ -123.1206233, 49.135765510000084 ], [ -123.120757591999961, 49.13594199100001 ], [ -123.121023808999936, 49.136223894000068 ], [ -123.121091494999973, 49.136347412000127 ], [ -123.121073291999906, 49.13686218600003 ], [ -123.120944299999962, 49.136954301000081 ], [ -123.120815191999895, 49.136954476000035 ], [ -123.119124798999934, 49.136956893000018 ], [ -123.117818285999974, 49.136947996000075 ], [ -123.116708717999956, 49.136923697000078 ], [ -123.116523976999957, 49.13694129800006 ], [ -123.116286005999925, 49.13700161000007 ], [ -123.115253411999902, 49.137481106000109 ], [ -123.115019301999951, 49.137544197000068 ], [ -123.11418979299999, 49.13755439400007 ], [ -123.114192551999977, 49.137436758000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112588835", "BldgCostT": "73788335", "sL_LossRatio": "0.687880277575913", "sL_AssetLoss": "2807160", "sL_BldgLoss": "1930990", "sL_StrLoss": "786300", "sL_NStrLoss": "1144690", "sL_ContLoss": "876170", "geom_point": "0101000020E6100000C4F79C26F9C75EC0E1B1651A49914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127645697999952, 49.137700002000088 ], [ -123.127033203999986, 49.137635898000049 ], [ -123.125323587999958, 49.137630792000074 ], [ -123.124360699999968, 49.13753841300008 ], [ -123.12413902, 49.137467601000075 ], [ -123.124088783, 49.137438917000111 ], [ -123.123947194999914, 49.13735799700008 ], [ -123.123828979, 49.13723050300009 ], [ -123.123779289999931, 49.137081393000109 ], [ -123.123768411999933, 49.136814485000095 ], [ -123.123728921999955, 49.136057598000015 ], [ -123.123667699999956, 49.13538470200011 ], [ -123.123652019999895, 49.135262687000079 ], [ -123.123201398999981, 49.134506490000014 ], [ -123.123051613999948, 49.134404283000073 ], [ -123.122713809999965, 49.13430519200007 ], [ -123.122341007999978, 49.134263694 ], [ -123.122049654999927, 49.134263387000104 ], [ -123.121850593999923, 49.134263207000053 ], [ -123.121453876999936, 49.13429849900006 ], [ -123.121133204000017, 49.134389008 ], [ -123.120875901999966, 49.13451728800004 ], [ -123.120570932999925, 49.134797404000068 ], [ -123.120367989999963, 49.134976707000085 ], [ -123.11913358799994, 49.134956203000087 ], [ -123.1191422039999, 49.133466286000065 ], [ -123.12187219499998, 49.133471796000038 ], [ -123.124862717999974, 49.133482724000046 ], [ -123.130455615999921, 49.133502896000067 ], [ -123.130446098999982, 49.134101803000149 ], [ -123.129172602999972, 49.134093008000036 ], [ -123.126173974999986, 49.134066997000033 ], [ -123.126122402999925, 49.136898088000081 ], [ -123.127232216999957, 49.136920503000091 ], [ -123.128285704999911, 49.13692070700008 ], [ -123.128272995999922, 49.137414983000042 ], [ -123.128108404999921, 49.137816887000078 ], [ -123.127645697999952, 49.137700002000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54987083", "BldgCostT": "37658333", "sL_LossRatio": "0.714706653601446", "sL_AssetLoss": "1449140", "sL_BldgLoss": "1035710", "sL_StrLoss": "433850", "sL_NStrLoss": "601860", "sL_ContLoss": "413430", "geom_point": "0101000020E6100000B00431542EC85EC06B5DACA050914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129172602999972, 49.134093008000036 ], [ -123.130446098999982, 49.134101803000149 ], [ -123.130431116999915, 49.135011304000052 ], [ -123.129964579999978, 49.135023196000063 ], [ -123.1297051869999, 49.135075710000073 ], [ -123.129505299999977, 49.135161404000037 ], [ -123.128359313999951, 49.135905607000062 ], [ -123.128292605999931, 49.136098401000048 ], [ -123.128285704999911, 49.13692070700008 ], [ -123.127232216999957, 49.136920503000091 ], [ -123.126122402999925, 49.136898088000081 ], [ -123.126173974999986, 49.134066997000033 ], [ -123.129172602999972, 49.134093008000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95356834", "BldgCostT": "62343334", "sL_LossRatio": "0.7092011623056", "sL_AssetLoss": "2202863", "sL_BldgLoss": "1562273", "sL_StrLoss": "661223", "sL_NStrLoss": "901050", "sL_ContLoss": "640590", "geom_point": "0101000020E6100000D3AF631264C85EC012BF18807C914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131654386999926, 49.135012400000036 ], [ -123.132742885999946, 49.135023390000086 ], [ -123.133035308999965, 49.135058189000084 ], [ -123.133384213999975, 49.135175602000039 ], [ -123.133625519999967, 49.135307201000032 ], [ -123.133816979999906, 49.135488907000124 ], [ -123.133937409999987, 49.135692098000099 ], [ -123.133963198999979, 49.135829784000109 ], [ -123.133956670999936, 49.136713401000073 ], [ -123.13388368899993, 49.136852898000051 ], [ -123.133820155999942, 49.136914667000042 ], [ -123.133682604999976, 49.137048390000089 ], [ -123.133500686999938, 49.1372219000001 ], [ -123.13345118299999, 49.137357607000112 ], [ -123.133453417999959, 49.13744802500009 ], [ -123.13345452799993, 49.137493004000085 ], [ -123.13347078799994, 49.138150902000135 ], [ -123.132128403999957, 49.138146592000041 ], [ -123.129901271999955, 49.13814633800007 ], [ -123.129581506999898, 49.138146287000033 ], [ -123.129076803999965, 49.138087802000015 ], [ -123.128108404999921, 49.137816887000078 ], [ -123.128272995999922, 49.137414983000042 ], [ -123.128285704999911, 49.13692070700008 ], [ -123.128292605999931, 49.136098401000048 ], [ -123.128359313999951, 49.135905607000062 ], [ -123.129505299999977, 49.135161404000037 ], [ -123.1297051869999, 49.135075710000073 ], [ -123.129964579999978, 49.135023196000063 ], [ -123.130431116999915, 49.135011304000052 ], [ -123.131654386999926, 49.135012400000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53958668", "BldgCostT": "36531668", "sL_LossRatio": "0.716090197423822", "sL_AssetLoss": "1474898", "sL_BldgLoss": "1056160", "sL_StrLoss": "426490", "sL_NStrLoss": "629670", "sL_ContLoss": "418738", "geom_point": "0101000020E6100000F582CB3A8EC85EC06C8EACFC32914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133035308999965, 49.135058189000084 ], [ -123.132742885999946, 49.135023390000086 ], [ -123.131654386999926, 49.135012400000036 ], [ -123.130431116999915, 49.135011304000052 ], [ -123.130446098999982, 49.134101803000149 ], [ -123.130455615999921, 49.133502896000067 ], [ -123.134900079999937, 49.133517791000031 ], [ -123.136584800999984, 49.13352389500011 ], [ -123.136657077, 49.135354596000134 ], [ -123.13539422299999, 49.135350702000032 ], [ -123.134514804999952, 49.135348915000051 ], [ -123.13410670599994, 49.135412896000076 ], [ -123.133816979999906, 49.135488907000124 ], [ -123.133625519999967, 49.135307201000032 ], [ -123.133384213999975, 49.135175602000039 ], [ -123.133035308999965, 49.135058189000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188685335", "BldgCostT": "127938335", "sL_LossRatio": "0.792944367431232", "sL_AssetLoss": "2327162", "sL_BldgLoss": "1845310", "sL_StrLoss": "850010", "sL_NStrLoss": "995300", "sL_ContLoss": "481852", "geom_point": "0101000020E610000037319FA4A7C85EC049F002FC85914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13347078799994, 49.138150902000135 ], [ -123.13345452799993, 49.137493004000085 ], [ -123.133453417999959, 49.13744802500009 ], [ -123.13345118299999, 49.137357607000112 ], [ -123.133500686999938, 49.1372219000001 ], [ -123.133682604999976, 49.137048390000089 ], [ -123.133820155999942, 49.136914667000042 ], [ -123.13388368899993, 49.136852898000051 ], [ -123.133956670999936, 49.136713401000073 ], [ -123.133963198999979, 49.135829784000109 ], [ -123.133937409999987, 49.135692098000099 ], [ -123.133816979999906, 49.135488907000124 ], [ -123.13410670599994, 49.135412896000076 ], [ -123.134514804999952, 49.135348915000051 ], [ -123.13539422299999, 49.135350702000032 ], [ -123.136657077, 49.135354596000134 ], [ -123.136644909, 49.136999390000135 ], [ -123.13665701499994, 49.137915906000103 ], [ -123.136661093999976, 49.138471909000039 ], [ -123.135156086999984, 49.138438990000054 ], [ -123.134652198999945, 49.138166989000041 ], [ -123.134536992999983, 49.138146814000102 ], [ -123.13347078799994, 49.138150902000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "327299553", "BldgCostT": "222983746", "sL_LossRatio": "0.77301250526333", "sL_AssetLoss": "4892340", "sL_BldgLoss": "3781840", "sL_StrLoss": "1632740", "sL_NStrLoss": "2149100", "sL_ContLoss": "1110500", "geom_point": "0101000020E61000007FE3635EA4C85EC06360F447DE914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13347078799994, 49.138150902000135 ], [ -123.134536992999983, 49.138146814000102 ], [ -123.134652198999945, 49.138166989000041 ], [ -123.135156086999984, 49.138438990000054 ], [ -123.136661093999976, 49.138471909000039 ], [ -123.13666396499994, 49.138631706000091 ], [ -123.136666077, 49.138748644000039 ], [ -123.136704395999942, 49.140885608000083 ], [ -123.134190943999954, 49.140871281000038 ], [ -123.133476112999972, 49.140867200000109 ], [ -123.13347078799994, 49.138150902000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160536834", "BldgCostT": "105293334", "sL_LossRatio": "0.764582961588652", "sL_AssetLoss": "1860596", "sL_BldgLoss": "1422580", "sL_StrLoss": "732390", "sL_NStrLoss": "690190", "sL_ContLoss": "438016", "geom_point": "0101000020E6100000FD38607861C85EC09BF5076F34924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134190943999954, 49.140871281000038 ], [ -123.136704395999942, 49.140885608000083 ], [ -123.136693679999951, 49.143619596000072 ], [ -123.13515279799999, 49.14361009100007 ], [ -123.13374109399993, 49.143603966000072 ], [ -123.133124088999921, 49.143601310000172 ], [ -123.129093898999969, 49.143583710000058 ], [ -123.128360802999964, 49.143584007000101 ], [ -123.125172713999959, 49.143576386000092 ], [ -123.125195599999969, 49.142686748000123 ], [ -123.125243101999928, 49.14084130100008 ], [ -123.125438585999973, 49.140840703000066 ], [ -123.127996283999963, 49.14083280300008 ], [ -123.128263200000021, 49.140834402000081 ], [ -123.129455871999966, 49.140841607000084 ], [ -123.131660006999965, 49.140854899000033 ], [ -123.133476112999972, 49.140867200000109 ], [ -123.134190943999954, 49.140871281000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94826667", "BldgCostT": "64241667", "sL_LossRatio": "0.744223997251568", "sL_AssetLoss": "1560162", "sL_BldgLoss": "1161110", "sL_StrLoss": "538460", "sL_NStrLoss": "622650", "sL_ContLoss": "399052", "geom_point": "0101000020E6100000A1B161133AC85EC03EADD32F2E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125219392999895, 49.15002711000006 ], [ -123.125163706999913, 49.148201286000102 ], [ -123.126904990999947, 49.148209102000088 ], [ -123.129038102999957, 49.148217409000075 ], [ -123.130931086999965, 49.148231798000076 ], [ -123.13093859899999, 49.149353590000032 ], [ -123.132304297999937, 49.149363004000065 ], [ -123.132308701999932, 49.151358603000112 ], [ -123.130952515999937, 49.151349381000045 ], [ -123.129677196999936, 49.151340696000076 ], [ -123.128383991999982, 49.151332301000132 ], [ -123.126944200999944, 49.151322697000055 ], [ -123.125242792999984, 49.151311508000049 ], [ -123.125219392999895, 49.15002711000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106559314", "BldgCostT": "68403193", "sL_LossRatio": "0.685029920957471", "sL_AssetLoss": "1874940", "sL_BldgLoss": "1284390", "sL_StrLoss": "579980", "sL_NStrLoss": "704410", "sL_ContLoss": "590550", "geom_point": "0101000020E610000098FD4EEE92C85EC01FA3D9C837934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133795510999946, 49.1524070930001 ], [ -123.131533317999981, 49.152265784000072 ], [ -123.130960213999941, 49.152268588000091 ], [ -123.130952515999937, 49.151349381000045 ], [ -123.132308701999932, 49.151358603000112 ], [ -123.132304297999937, 49.149363004000065 ], [ -123.13093859899999, 49.149353590000032 ], [ -123.130931086999965, 49.148231798000076 ], [ -123.134571786999942, 49.148259415000069 ], [ -123.136673714, 49.148285596000044 ], [ -123.13667140099993, 49.150659391000048 ], [ -123.136671883999981, 49.151587298000045 ], [ -123.135500994, 49.15157239200007 ], [ -123.134854703999935, 49.151563312000107 ], [ -123.13463641599995, 49.151614202000069 ], [ -123.1345136959999, 49.151693895000051 ], [ -123.134453003999923, 49.151812106000143 ], [ -123.13444678599997, 49.152402012000017 ], [ -123.133795510999946, 49.1524070930001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242154251", "BldgCostT": "161469016", "sL_LossRatio": "0.71957200132184", "sL_AssetLoss": "3864311", "sL_BldgLoss": "2780650", "sL_StrLoss": "1209850", "sL_NStrLoss": "1570800", "sL_ContLoss": "1083661", "geom_point": "0101000020E6100000021DB625D9C85EC0E396255368944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136590118999919, 49.159215608000125 ], [ -123.136617288999986, 49.157437112000082 ], [ -123.136646688999946, 49.155579403000019 ], [ -123.140343886999943, 49.155611888000045 ], [ -123.14034125199997, 49.155791829000066 ], [ -123.14032879899996, 49.156637601000149 ], [ -123.139697869999949, 49.156820023000122 ], [ -123.139210924999986, 49.156960817000069 ], [ -123.138973886999921, 49.157029347000034 ], [ -123.138973971, 49.156933233000046 ], [ -123.13820189399992, 49.157012593000054 ], [ -123.138163289999966, 49.158329493000089 ], [ -123.138903709999965, 49.158331130000086 ], [ -123.138859199999942, 49.159157017000076 ], [ -123.139367916999902, 49.159150073000013 ], [ -123.140286224999926, 49.159143612000044 ], [ -123.140276832, 49.159571202000087 ], [ -123.140264388999952, 49.160137503000016 ], [ -123.140254227999932, 49.160585338000061 ], [ -123.14024427899993, 49.161021670000096 ], [ -123.140232993999945, 49.161943655000051 ], [ -123.140231449999987, 49.162069561000074 ], [ -123.140226245999983, 49.162495917000086 ], [ -123.140175499999941, 49.162585533 ], [ -123.140174352999964, 49.162671087000035 ], [ -123.140173546999961, 49.162795393000032 ], [ -123.136640620999941, 49.162779879000063 ], [ -123.136535884999915, 49.162778602000074 ], [ -123.136518687999981, 49.162778400000064 ], [ -123.136518465999956, 49.162671226000022 ], [ -123.136520918999935, 49.160961430000036 ], [ -123.136523016999931, 49.160860588000034 ], [ -123.136580614999957, 49.160771134000115 ], [ -123.136588033999914, 49.160138933000098 ], [ -123.136588605000014, 49.159885099000071 ], [ -123.136590118999919, 49.159215608000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263346386", "BldgCostT": "174842079", "sL_LossRatio": "0.765491557269045", "sL_AssetLoss": "3278560", "sL_BldgLoss": "2509710", "sL_StrLoss": "1206020", "sL_NStrLoss": "1303690", "sL_ContLoss": "768850", "geom_point": "0101000020E6100000B1A48A7FEBC85EC0AF54828B36944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138859199999942, 49.159157017000076 ], [ -123.138903709999965, 49.158331130000086 ], [ -123.138163289999966, 49.158329493000089 ], [ -123.13820189399992, 49.157012593000054 ], [ -123.138973971, 49.156933233000046 ], [ -123.138973886999921, 49.157029347000034 ], [ -123.139210924999986, 49.156960817000069 ], [ -123.139697869999949, 49.156820023000122 ], [ -123.14032879899996, 49.156637601000149 ], [ -123.140322291999937, 49.15708178800007 ], [ -123.14030400199999, 49.158334192000019 ], [ -123.140290061999949, 49.158969223000042 ], [ -123.140286224999926, 49.159143612000044 ], [ -123.139367916999902, 49.159150073000013 ], [ -123.138859199999942, 49.159157017000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144335333", "BldgCostT": "93623333", "sL_LossRatio": "0.699466801924956", "sL_AssetLoss": "3152487", "sL_BldgLoss": "2205060", "sL_StrLoss": "960400", "sL_NStrLoss": "1244660", "sL_ContLoss": "947427", "geom_point": "0101000020E6100000B3FFBE6F51CC5EC0C903ECFE8C924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.191819007999953, 49.14751169000008 ], [ -123.191815699999935, 49.145046815000072 ], [ -123.190575302999974, 49.145053191000052 ], [ -123.187310889999935, 49.145061601000123 ], [ -123.187303199999988, 49.144327189000087 ], [ -123.188413089999955, 49.14432740200008 ], [ -123.191838793, 49.144324907000076 ], [ -123.191837777000032, 49.143205093000063 ], [ -123.191839201, 49.141775498000122 ], [ -123.190701909, 49.141777292000071 ], [ -123.190123592999939, 49.141778510000059 ], [ -123.190134110999921, 49.141014781000038 ], [ -123.191764790999954, 49.141010500000064 ], [ -123.192800397999974, 49.141007582000043 ], [ -123.194039592999957, 49.141004097000071 ], [ -123.194432402999936, 49.1410134650001 ], [ -123.194695941999953, 49.141030187000069 ], [ -123.194314721999959, 49.142956904000108 ], [ -123.194307409, 49.14426150500006 ], [ -123.195002798999923, 49.146706887000057 ], [ -123.19528494399998, 49.148310514000052 ], [ -123.195098511999973, 49.148309742000016 ], [ -123.194826037999945, 49.148322199000056 ], [ -123.192551311999949, 49.148319906000083 ], [ -123.189884996999979, 49.14831431400011 ], [ -123.18891902899999, 49.148313397000024 ], [ -123.18894471699997, 49.147503304000075 ], [ -123.19055700899996, 49.147512079000116 ], [ -123.191819007999953, 49.14751169000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81726749", "BldgCostT": "55394999", "sL_LossRatio": "0.76124869697474", "sL_AssetLoss": "1159801", "sL_BldgLoss": "882897", "sL_StrLoss": "430827", "sL_NStrLoss": "452070", "sL_ContLoss": "276904", "geom_point": "0101000020E6100000258E97C90BCC5EC091535CD1BD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190575302999974, 49.145053191000052 ], [ -123.191815699999935, 49.145046815000072 ], [ -123.191819007999953, 49.14751169000008 ], [ -123.19055700899996, 49.147512079000116 ], [ -123.18894471699997, 49.147503304000075 ], [ -123.185392771999929, 49.147503299000043 ], [ -123.183847401999969, 49.14749889200003 ], [ -123.183858421999929, 49.146683905000096 ], [ -123.183852888999951, 49.145868417 ], [ -123.187299303999936, 49.145865809000078 ], [ -123.187310889999935, 49.145061601000123 ], [ -123.190575302999974, 49.145053191000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287979302", "BldgCostT": "188257760", "sL_LossRatio": "0.732494706078582", "sL_AssetLoss": "2206304", "sL_BldgLoss": "1616106", "sL_StrLoss": "670250", "sL_NStrLoss": "945856", "sL_ContLoss": "590198", "geom_point": "0101000020E610000082A017AC00CA5EC0FF1E92AD70A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15514141200002, 49.268152303000065 ], [ -123.157502392999959, 49.268186605000054 ], [ -123.157474398999952, 49.269092907000065 ], [ -123.15746059099996, 49.269506984000124 ], [ -123.157459158999927, 49.269549880000056 ], [ -123.157444993999974, 49.269974789000067 ], [ -123.155074486999979, 49.26993851000006 ], [ -123.155090093999945, 49.269508960000088 ], [ -123.155091603999949, 49.26946778800005 ], [ -123.15510649499997, 49.269057512000074 ], [ -123.155123418999921, 49.268618575000048 ], [ -123.15514141200002, 49.268152303000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218957000", "BldgCostT": "151520000", "sL_LossRatio": "0.839610632721827", "sL_AssetLoss": "1201950", "sL_BldgLoss": "1009170", "sL_StrLoss": "441740", "sL_NStrLoss": "567430", "sL_ContLoss": "192780", "geom_point": "0101000020E6100000803329ECFFC95EC0397D5E6D9CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155074486999979, 49.26993851000006 ], [ -123.157444993999974, 49.269974789000067 ], [ -123.15743039199999, 49.27041359600004 ], [ -123.157415514, 49.270860289000069 ], [ -123.155043683000017, 49.270821303000083 ], [ -123.155059356999956, 49.270372180000045 ], [ -123.155074486999979, 49.26993851000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1063810272", "BldgCostT": "704591099", "sL_LossRatio": "0.727343553143773", "sL_AssetLoss": "2547862", "sL_BldgLoss": "1853171", "sL_StrLoss": "818188", "sL_NStrLoss": "1034983", "sL_ContLoss": "694691", "geom_point": "0101000020E61000000EE414DBACC85EC0BBCFCE2FEBA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134124883999931, 49.26621910100004 ], [ -123.133618710999954, 49.266184911 ], [ -123.133510646999923, 49.26618298500005 ], [ -123.132100840999968, 49.266158085000072 ], [ -123.131464019999896, 49.26612584300004 ], [ -123.131370485, 49.266082830000116 ], [ -123.131241459999956, 49.266081216000011 ], [ -123.131262494999987, 49.265650764000057 ], [ -123.131282984999984, 49.265231094000036 ], [ -123.133660207999924, 49.26526818200005 ], [ -123.133675564999919, 49.264857302000095 ], [ -123.133691779999964, 49.264424098000106 ], [ -123.133720223999902, 49.263519591 ], [ -123.136088794999949, 49.263559999000101 ], [ -123.137859378999963, 49.263581187000057 ], [ -123.138562510999961, 49.263589608000075 ], [ -123.138529488999964, 49.264502993000058 ], [ -123.138499706999966, 49.265342606000033 ], [ -123.138468494999984, 49.26618298500005 ], [ -123.136062189999919, 49.266148892000047 ], [ -123.135299408999956, 49.266153899000059 ], [ -123.134902100999952, 49.26618118600009 ], [ -123.134527092000027, 49.266246896000027 ], [ -123.134329893999976, 49.266280404000035 ], [ -123.134124883999931, 49.26621910100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "436610426", "BldgCostT": "280783447", "sL_LossRatio": "0.667653394456509", "sL_AssetLoss": "1594158", "sL_BldgLoss": "1064345", "sL_StrLoss": "428602", "sL_NStrLoss": "635743", "sL_ContLoss": "529813", "geom_point": "0101000020E6100000D50FFB4E5DC85EC09AF99A27CFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13129814, 49.264823589000088 ], [ -123.131313911999939, 49.264398805000077 ], [ -123.128963010999911, 49.264360592000067 ], [ -123.126585612999961, 49.264327903000016 ], [ -123.126600794999945, 49.263912094000013 ], [ -123.126619296999976, 49.263406509000106 ], [ -123.129003200999961, 49.263443783000127 ], [ -123.13136769499998, 49.263484184000056 ], [ -123.133720223999902, 49.263519591 ], [ -123.133691779999964, 49.264424098000106 ], [ -123.133675564999919, 49.264857302000095 ], [ -123.133660207999924, 49.26526818200005 ], [ -123.131282984999984, 49.265231094000036 ], [ -123.13129814, 49.264823589000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224106895", "BldgCostT": "143291524", "sL_LossRatio": "0.675254761069665", "sL_AssetLoss": "1054910", "sL_BldgLoss": "712333", "sL_StrLoss": "265450", "sL_NStrLoss": "446883", "sL_ContLoss": "342577", "geom_point": "0101000020E61000000375E3407CC85EC0FFE9ED6C9BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131448904999971, 49.261592983000078 ], [ -123.133793301999944, 49.261623703000033 ], [ -123.133772816999951, 49.262104255000047 ], [ -123.133753608999939, 49.26255580300014 ], [ -123.133737743000012, 49.263013182000037 ], [ -123.133720223999902, 49.263519591 ], [ -123.13136769499998, 49.263484184000056 ], [ -123.131393083999939, 49.262980277000054 ], [ -123.131416203999919, 49.262521709000133 ], [ -123.13143237599995, 49.262062659000051 ], [ -123.131448904999971, 49.261592983000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "622359864", "BldgCostT": "423826936", "sL_LossRatio": "0.826509737397361", "sL_AssetLoss": "1525613", "sL_BldgLoss": "1260934", "sL_StrLoss": "539622", "sL_NStrLoss": "721312", "sL_ContLoss": "264679", "geom_point": "0101000020E610000057EB47D455C85EC0F67CF6F18AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129082733999923, 49.261120866000056 ], [ -123.129100391999884, 49.260608190000013 ], [ -123.131481980999979, 49.260681397000049 ], [ -123.131465152999937, 49.261145253000031 ], [ -123.131448904999971, 49.261592983000078 ], [ -123.13143237599995, 49.262062659000051 ], [ -123.131416203999919, 49.262521709000133 ], [ -123.131393083999939, 49.262980277000054 ], [ -123.13136769499998, 49.263484184000056 ], [ -123.129003200999961, 49.263443783000127 ], [ -123.129021159999965, 49.262946778000057 ], [ -123.129037802999946, 49.262485383000126 ], [ -123.129052474999938, 49.26202931900005 ], [ -123.129067516999953, 49.261562098000084 ], [ -123.129082733999923, 49.261120866000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "582376412", "BldgCostT": "391314428", "sL_LossRatio": "0.798917655145052", "sL_AssetLoss": "1507283", "sL_BldgLoss": "1204195", "sL_StrLoss": "502435", "sL_NStrLoss": "701760", "sL_ContLoss": "303088", "geom_point": "0101000020E6100000A676B8E32EC85EC00177B0308AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128581094999944, 49.260608787000081 ], [ -123.129100391999884, 49.260608190000013 ], [ -123.129082733999923, 49.261120866000056 ], [ -123.129067516999953, 49.261562098000084 ], [ -123.129052474999938, 49.26202931900005 ], [ -123.129037802999946, 49.262485383000126 ], [ -123.129021159999965, 49.262946778000057 ], [ -123.129003200999961, 49.263443783000127 ], [ -123.126619296999976, 49.263406509000106 ], [ -123.12663536599996, 49.262904926000026 ], [ -123.126650317999989, 49.262439904000132 ], [ -123.126664357999942, 49.261996438000082 ], [ -123.126679191999955, 49.261529096000089 ], [ -123.126693339999974, 49.261078737000034 ], [ -123.126707504999956, 49.260629105000142 ], [ -123.126721240999956, 49.26062933800003 ], [ -123.128468205999923, 49.260657992000141 ], [ -123.128581094999944, 49.260608787000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "629113272", "BldgCostT": "438249158", "sL_LossRatio": "0.895174465878396", "sL_AssetLoss": "3972410", "sL_BldgLoss": "3556000", "sL_StrLoss": "1637960", "sL_NStrLoss": "1918040", "sL_ContLoss": "416410", "geom_point": "0101000020E61000008FEA2A9390C85EC031013B0E6EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134888916999984, 49.260734629000126 ], [ -123.13620980799999, 49.260754705000046 ], [ -123.136192400999931, 49.261202480000094 ], [ -123.136191562999912, 49.261224011000088 ], [ -123.136174786999973, 49.261655402000045 ], [ -123.133793301999944, 49.261623703000033 ], [ -123.131448904999971, 49.261592983000078 ], [ -123.131465152999937, 49.261145253000031 ], [ -123.131481980999979, 49.260681397000049 ], [ -123.133828690999934, 49.260718492000137 ], [ -123.134711818999932, 49.260731932000077 ], [ -123.134888916999984, 49.260734629000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "641430303", "BldgCostT": "432637761", "sL_LossRatio": "0.825704908113727", "sL_AssetLoss": "1970044", "sL_BldgLoss": "1626675", "sL_StrLoss": "702132", "sL_NStrLoss": "924543", "sL_ContLoss": "343369", "geom_point": "0101000020E61000007EED8943B0C85EC01737C02FA2A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133753608999939, 49.26255580300014 ], [ -123.133772816999951, 49.262104255000047 ], [ -123.133793301999944, 49.261623703000033 ], [ -123.136174786999973, 49.261655402000045 ], [ -123.136158037, 49.262128880000063 ], [ -123.13614169099999, 49.262591306000083 ], [ -123.13788353299995, 49.262625790000129 ], [ -123.138541510999957, 49.262638801000023 ], [ -123.138562510999961, 49.263589608000075 ], [ -123.137859378999963, 49.263581187000057 ], [ -123.136088794999949, 49.263559999000101 ], [ -123.133720223999902, 49.263519591 ], [ -123.133737743000012, 49.263013182000037 ], [ -123.133753608999939, 49.26255580300014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "551870192", "BldgCostT": "361655695", "sL_LossRatio": "0.807637937716024", "sL_AssetLoss": "3186855", "sL_BldgLoss": "2573825", "sL_StrLoss": "1208340", "sL_NStrLoss": "1365485", "sL_ContLoss": "613030", "geom_point": "0101000020E6100000663BA6EECAC85EC0DF9B9D147FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137946450999905, 49.260786957000043 ], [ -123.138697377999932, 49.260800897000102 ], [ -123.138572610999944, 49.261710110000116 ], [ -123.138541510999957, 49.262638801000023 ], [ -123.13788353299995, 49.262625790000129 ], [ -123.13614169099999, 49.262591306000083 ], [ -123.136158037, 49.262128880000063 ], [ -123.136174786999973, 49.261655402000045 ], [ -123.136191562999912, 49.261224011000088 ], [ -123.136192400999931, 49.261202480000094 ], [ -123.13620980799999, 49.260754705000046 ], [ -123.13743837399997, 49.260777513000058 ], [ -123.137713330999986, 49.260782635000062 ], [ -123.137946450999905, 49.260786957000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418990369", "BldgCostT": "267574832", "sL_LossRatio": "0.730477803618605", "sL_AssetLoss": "3522849", "sL_BldgLoss": "2573363", "sL_StrLoss": "1098760", "sL_NStrLoss": "1474603", "sL_ContLoss": "949486", "geom_point": "0101000020E61000003F37A771F3C85EC067EBF04280A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13944315099999, 49.259826560000135 ], [ -123.141183081999912, 49.259853504000048 ], [ -123.141161508999957, 49.26034846900005 ], [ -123.141146877999958, 49.260684261000094 ], [ -123.141139987999949, 49.260842191000073 ], [ -123.141121433999928, 49.261304681000077 ], [ -123.141121240999951, 49.261309619000052 ], [ -123.14110398499993, 49.261738400000112 ], [ -123.141085133999937, 49.2622132770001 ], [ -123.141066683999924, 49.26267780300001 ], [ -123.14104781399999, 49.263121881000075 ], [ -123.14102690699994, 49.263614401000048 ], [ -123.138562510999961, 49.263589608000075 ], [ -123.138541510999957, 49.262638801000023 ], [ -123.138572610999944, 49.261710110000116 ], [ -123.138697377999932, 49.260800897000102 ], [ -123.138729313999974, 49.259815500000116 ], [ -123.13944315099999, 49.259826560000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "304909893", "BldgCostT": "184783226", "sL_LossRatio": "0.705194597409721", "sL_AssetLoss": "1225042", "sL_BldgLoss": "863893", "sL_StrLoss": "381669", "sL_NStrLoss": "482224", "sL_ContLoss": "361149", "geom_point": "0101000020E6100000BA856BDE46C85EC0809A39A8EDA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128929995999925, 49.265625216000025 ], [ -123.128943007999922, 49.265194084000051 ], [ -123.126561606999971, 49.265157705000064 ], [ -123.126573169000011, 49.264757629000037 ], [ -123.126585612999961, 49.264327903000016 ], [ -123.128963010999911, 49.264360592000067 ], [ -123.131313911999939, 49.264398805000077 ], [ -123.13129814, 49.264823589000088 ], [ -123.131282984999984, 49.265231094000036 ], [ -123.131262494999987, 49.265650764000057 ], [ -123.131241459999956, 49.266081216000011 ], [ -123.128915289999938, 49.266040111000066 ], [ -123.128929995999925, 49.265625216000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "266601561", "BldgCostT": "178178190", "sL_LossRatio": "0.756319739841425", "sL_AssetLoss": "1162983", "sL_BldgLoss": "879587", "sL_StrLoss": "375130", "sL_NStrLoss": "504457", "sL_ContLoss": "283396", "geom_point": "0101000020E61000008106D5E518C85EC0DFF6146BFEA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126561606999971, 49.265157705000064 ], [ -123.128943007999922, 49.265194084000051 ], [ -123.128929995999925, 49.265625216000025 ], [ -123.128915289999938, 49.266040111000066 ], [ -123.12653291099997, 49.265999213000079 ], [ -123.124326632999924, 49.265952583000058 ], [ -123.124076901999899, 49.265947298000071 ], [ -123.124107596999934, 49.265119398000095 ], [ -123.124351614999966, 49.265123211000095 ], [ -123.126561606999971, 49.265157705000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263952968", "BldgCostT": "163835145", "sL_LossRatio": "0.669834322864498", "sL_AssetLoss": "1556461", "sL_BldgLoss": "1042571", "sL_StrLoss": "431430", "sL_NStrLoss": "611141", "sL_ContLoss": "513890", "geom_point": "0101000020E6100000C25D20B5C7C75EC0DF2E6E82F3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119810998999952, 49.265063396000095 ], [ -123.119818500999969, 49.264656426000045 ], [ -123.11982657799993, 49.264216207000054 ], [ -123.121794176999956, 49.264231697000049 ], [ -123.121783936999961, 49.264672739000083 ], [ -123.121774392999967, 49.265083290000042 ], [ -123.124107596999934, 49.265119398000095 ], [ -123.124076901999899, 49.265947298000071 ], [ -123.121753981, 49.265920493000088 ], [ -123.121454694999898, 49.265917009000141 ], [ -123.12134610399994, 49.265963587000087 ], [ -123.120642354999944, 49.265956731000109 ], [ -123.120545585999963, 49.265955793000025 ], [ -123.11978310399995, 49.265956085000113 ], [ -123.119785706999949, 49.265870588000013 ], [ -123.119798373999942, 49.265466065000041 ], [ -123.119810998999952, 49.265063396000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "809229746", "BldgCostT": "544834731", "sL_LossRatio": "0.791532955815512", "sL_AssetLoss": "1908377.9", "sL_BldgLoss": "1510544", "sL_StrLoss": "690277", "sL_NStrLoss": "820267", "sL_ContLoss": "397833.9", "geom_point": "0101000020E6100000C6978BB6F2C75EC0DD54D5B2D2A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124176294999955, 49.263368409000108 ], [ -123.126619296999976, 49.263406509000106 ], [ -123.126600794999945, 49.263912094000013 ], [ -123.126585612999961, 49.264327903000016 ], [ -123.126573169000011, 49.264757629000037 ], [ -123.126561606999971, 49.265157705000064 ], [ -123.124351614999966, 49.265123211000095 ], [ -123.124107596999934, 49.265119398000095 ], [ -123.121774392999967, 49.265083290000042 ], [ -123.121783936999961, 49.264672739000083 ], [ -123.121794176999956, 49.264231697000049 ], [ -123.121819418999976, 49.263317295000064 ], [ -123.124176294999955, 49.263368409000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4565038450", "BldgCostT": "2953725879", "sL_LossRatio": "0.721485141943685", "sL_AssetLoss": "19647792", "sL_BldgLoss": "14175590", "sL_StrLoss": "6221620", "sL_NStrLoss": "7953970", "sL_ContLoss": "5472202", "geom_point": "0101000020E6100000899BA8A5F9C65EC0B3613D8340A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101181601999954, 49.273049495000052 ], [ -123.10009941699991, 49.272885303000081 ], [ -123.099933714999977, 49.272855587000052 ], [ -123.099937298999961, 49.272782475000035 ], [ -123.099937831999981, 49.27277123600004 ], [ -123.099939090999939, 49.272745890000081 ], [ -123.100020028999978, 49.271891499000034 ], [ -123.100212325999934, 49.271488227000084 ], [ -123.100269833999931, 49.27136761000007 ], [ -123.100586193999973, 49.270704187000099 ], [ -123.10059159799999, 49.270507107000114 ], [ -123.100596076999977, 49.270342053000078 ], [ -123.100602011, 49.270121896000099 ], [ -123.100736232999964, 49.27012815200009 ], [ -123.100756151999988, 49.269631215000054 ], [ -123.100775580999979, 49.269146494000076 ], [ -123.100785677999937, 49.26905130200003 ], [ -123.100823282999926, 49.268229926000068 ], [ -123.100825889, 49.268144441000047 ], [ -123.100745356999951, 49.268047689000078 ], [ -123.10075691399993, 49.267313001000034 ], [ -123.100783097999908, 49.266609301000074 ], [ -123.100728811999943, 49.266488113 ], [ -123.100731080999964, 49.266407997000073 ], [ -123.100735258999975, 49.266310036000107 ], [ -123.100769715999888, 49.265503794000011 ], [ -123.100773724999968, 49.265439605000026 ], [ -123.100826476999956, 49.264595497000052 ], [ -123.100833039999941, 49.264490316000135 ], [ -123.100988984, 49.264633228000044 ], [ -123.100926029999954, 49.265488024000021 ], [ -123.100925391, 49.265497113000023 ], [ -123.101647352, 49.265509778000066 ], [ -123.10286038000001, 49.265531096000082 ], [ -123.104788489999919, 49.265564796000042 ], [ -123.104804220999966, 49.265130528 ], [ -123.104820687999933, 49.264674803000034 ], [ -123.104837689999925, 49.264230643000104 ], [ -123.104855398999959, 49.263766900000036 ], [ -123.104871623999941, 49.263366993 ], [ -123.104885118999945, 49.263034416000046 ], [ -123.104885890999981, 49.263014694000063 ], [ -123.106831716000016, 49.26304890600008 ], [ -123.109484228, 49.263120009000083 ], [ -123.110952496999943, 49.263145813000087 ], [ -123.112891609999906, 49.263179691000076 ], [ -123.11477898899993, 49.263203999000069 ], [ -123.114849598999982, 49.263205875000025 ], [ -123.114925714999941, 49.263207890000032 ], [ -123.117520915999961, 49.263250288000094 ], [ -123.1198948099999, 49.263294698000053 ], [ -123.121819418999976, 49.263317295000064 ], [ -123.121794176999956, 49.264231697000049 ], [ -123.11982657799993, 49.264216207000054 ], [ -123.119818500999969, 49.264656426000045 ], [ -123.119810998999952, 49.265063396000095 ], [ -123.119798373999942, 49.265466065000041 ], [ -123.119785706999949, 49.265870588000013 ], [ -123.11978310399995, 49.265956085000113 ], [ -123.117415604999934, 49.265918101000075 ], [ -123.117416820999949, 49.26585330400011 ], [ -123.117420902999982, 49.265787708000047 ], [ -123.1155303849999, 49.26581099900006 ], [ -123.115075610999938, 49.265768202000039 ], [ -123.114978980999922, 49.265731395000053 ], [ -123.114891107999981, 49.265642611000061 ], [ -123.114899113, 49.26602200000012 ], [ -123.114905594999954, 49.266535590000089 ], [ -123.114776384999914, 49.266603288000063 ], [ -123.11477998399999, 49.266721405000077 ], [ -123.114789821999963, 49.267396917000056 ], [ -123.114793788999961, 49.267670303000031 ], [ -123.114798066, 49.267936055000042 ], [ -123.114800022999958, 49.268056904000062 ], [ -123.114805292999989, 49.268346985000022 ], [ -123.114819969999971, 49.269392300000035 ], [ -123.114774505999918, 49.271147181000046 ], [ -123.11446859099999, 49.271309489000025 ], [ -123.112930495999976, 49.271679801000111 ], [ -123.112613982999989, 49.271679799000033 ], [ -123.112434807999975, 49.271573009000065 ], [ -123.111830201999965, 49.271645709000069 ], [ -123.111680722999949, 49.271762404000086 ], [ -123.112133396999951, 49.271860691 ], [ -123.111955492999968, 49.271977507000074 ], [ -123.111447524999932, 49.272041603000055 ], [ -123.111266899999947, 49.271933306000022 ], [ -123.111063656999931, 49.272056946000127 ], [ -123.11056950499993, 49.272043718000077 ], [ -123.110574020999962, 49.271971247000103 ], [ -123.109734799999899, 49.271972046000087 ], [ -123.109709054999897, 49.272385167000039 ], [ -123.108423916, 49.272394808000058 ], [ -123.107831001999926, 49.272332084000055 ], [ -123.107694608999964, 49.272188294000067 ], [ -123.107721098999946, 49.271973207000087 ], [ -123.107514192999943, 49.271892012000102 ], [ -123.107254207999958, 49.272179693000062 ], [ -123.10703419099994, 49.27227089900002 ], [ -123.105370204999971, 49.272245201000125 ], [ -123.103115715999962, 49.272363499000093 ], [ -123.102950895999925, 49.272480201000036 ], [ -123.102925796, 49.272696689000021 ], [ -123.102341059999958, 49.272864848000054 ], [ -123.101992001999946, 49.273032017000084 ], [ -123.101835436999949, 49.272988784000084 ], [ -123.101621889999961, 49.272929819000112 ], [ -123.101631383, 49.273012821000059 ], [ -123.101635199999947, 49.273046395000051 ], [ -123.101483443999953, 49.27304743800002 ], [ -123.101181601999954, 49.273049495000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311755729", "BldgCostT": "201798873", "sL_LossRatio": "0.680543591105718", "sL_AssetLoss": "1935131", "sL_BldgLoss": "1316941", "sL_StrLoss": "534833", "sL_NStrLoss": "782108", "sL_ContLoss": "618190", "geom_point": "0101000020E6100000B90A069D31C75EC06887337D7EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.110952496999943, 49.263145813000087 ], [ -123.111006097999976, 49.262175315000036 ], [ -123.109491000999967, 49.262150898000087 ], [ -123.109525895, 49.261238499000072 ], [ -123.10954281600003, 49.260772334000102 ], [ -123.109558589999949, 49.26033780800006 ], [ -123.111036506999938, 49.260362882000067 ], [ -123.112987205999957, 49.260384491000053 ], [ -123.11492201899992, 49.26039572800007 ], [ -123.114857244999953, 49.262228772000149 ], [ -123.11485692299999, 49.262237809000098 ], [ -123.114779716999962, 49.263194965000061 ], [ -123.11477898899993, 49.263203999000069 ], [ -123.112891609999906, 49.263179691000076 ], [ -123.110952496999943, 49.263145813000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "523915537", "BldgCostT": "336959091", "sL_LossRatio": "0.726052266186539", "sL_AssetLoss": "2674846", "sL_BldgLoss": "1942078", "sL_StrLoss": "872778", "sL_NStrLoss": "1069300", "sL_ContLoss": "732768", "geom_point": "0101000020E61000006C4CA87D86C75EC07F3439087CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117658178999989, 49.259493302000102 ], [ -123.119989878999959, 49.259526803000035 ], [ -123.119965569, 49.259969344000112 ], [ -123.119936512999956, 49.260498191000046 ], [ -123.119930400999962, 49.261393300000108 ], [ -123.11992280799997, 49.262334401000089 ], [ -123.119910417999975, 49.262759094000039 ], [ -123.119909121999939, 49.262804056000071 ], [ -123.1198948099999, 49.263294698000053 ], [ -123.117520915999961, 49.263250288000094 ], [ -123.114925714999941, 49.263207890000032 ], [ -123.114849598999982, 49.263205875000025 ], [ -123.11477898899993, 49.263203999000069 ], [ -123.114779716999962, 49.263194965000061 ], [ -123.11485692299999, 49.262237809000098 ], [ -123.114857244999953, 49.262228772000149 ], [ -123.11492201899992, 49.26039572800007 ], [ -123.115056483999965, 49.260398428000087 ], [ -123.117629511999951, 49.260441058000076 ], [ -123.117644481999932, 49.259945855000048 ], [ -123.117658178999989, 49.259493302000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "481275414", "BldgCostT": "328756153", "sL_LossRatio": "0.775052539663746", "sL_AssetLoss": "2054067.2", "sL_BldgLoss": "1592010", "sL_StrLoss": "748930", "sL_NStrLoss": "843080", "sL_ContLoss": "462057.2", "geom_point": "0101000020E6100000E10A49E27CC75EC0ABBF1D8F36A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117707503999952, 49.25878759200009 ], [ -123.120050514999932, 49.258838409000106 ], [ -123.120029225999971, 49.259080363000095 ], [ -123.119989878999959, 49.259526803000035 ], [ -123.117658178999989, 49.259493302000102 ], [ -123.117644481999932, 49.259945855000048 ], [ -123.117629511999951, 49.260441058000076 ], [ -123.115056483999965, 49.260398428000087 ], [ -123.11492201899992, 49.26039572800007 ], [ -123.114936866000036, 49.259893084000048 ], [ -123.114943119999936, 49.259681108000088 ], [ -123.115010424999952, 49.259592821000155 ], [ -123.11501278199998, 49.259444274 ], [ -123.115022309999929, 49.258738286000103 ], [ -123.115663109999971, 49.258750093000067 ], [ -123.117707503999952, 49.25878759200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "623197478", "BldgCostT": "424239857", "sL_LossRatio": "0.763697914398123", "sL_AssetLoss": "2732113", "sL_BldgLoss": "2086509", "sL_StrLoss": "1016450", "sL_NStrLoss": "1070059", "sL_ContLoss": "645604", "geom_point": "0101000020E6100000BFB6444F86C75EC0417EBAAA01A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115037817999905, 49.257827188000071 ], [ -123.115046129999939, 49.257339290000061 ], [ -123.115053399999979, 49.256913296000064 ], [ -123.116003413999977, 49.256922498000073 ], [ -123.118128209999924, 49.256946001000067 ], [ -123.119384994999947, 49.256968823000115 ], [ -123.120128579999943, 49.256982302000068 ], [ -123.120113142999941, 49.257415958000109 ], [ -123.120102584999984, 49.257711204000039 ], [ -123.12008133399999, 49.258180643000067 ], [ -123.120061895, 49.258609899000049 ], [ -123.120050514999932, 49.258838409000106 ], [ -123.117707503999952, 49.25878759200009 ], [ -123.115663109999971, 49.258750093000067 ], [ -123.115022309999929, 49.258738286000103 ], [ -123.115030033, 49.258283900000045 ], [ -123.115037817999905, 49.257827188000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "346771281", "BldgCostT": "233593603", "sL_LossRatio": "0.804276024434425", "sL_AssetLoss": "2799984", "sL_BldgLoss": "2251960", "sL_StrLoss": "1015720", "sL_NStrLoss": "1236240", "sL_ContLoss": "548024", "geom_point": "0101000020E6100000C04EA03E38C75EC0F3E3379E32A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.113096109999944, 49.257795107000049 ], [ -123.115037817999905, 49.257827188000071 ], [ -123.115030033, 49.258283900000045 ], [ -123.115022309999929, 49.258738286000103 ], [ -123.11501278199998, 49.259444274 ], [ -123.115010424999952, 49.259592821000155 ], [ -123.114943119999936, 49.259681108000088 ], [ -123.114936866000036, 49.259893084000048 ], [ -123.11492201899992, 49.26039572800007 ], [ -123.112987205999957, 49.260384491000053 ], [ -123.111036506999938, 49.260362882000067 ], [ -123.109558589999949, 49.26033780800006 ], [ -123.109580778999913, 49.259899840000116 ], [ -123.10958394799998, 49.259836933000038 ], [ -123.10960620299997, 49.259397688000078 ], [ -123.109731783999948, 49.259366901000099 ], [ -123.111084899999966, 49.259366190000115 ], [ -123.111111697999945, 49.258669695000037 ], [ -123.113076795999959, 49.258701601000077 ], [ -123.113086217, 49.258259023000058 ], [ -123.113096109999944, 49.257795107000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243259168", "BldgCostT": "167336668", "sL_LossRatio": "0.837104277123823", "sL_AssetLoss": "1436643", "sL_BldgLoss": "1202620", "sL_StrLoss": "565800", "sL_NStrLoss": "636820", "sL_ContLoss": "234023", "geom_point": "0101000020E6100000CA850CDCE8C65EC0FC1ADD9C25A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105052500999989, 49.25935310200007 ], [ -123.105101582999936, 49.258457302000046 ], [ -123.107028798999977, 49.258500896000065 ], [ -123.109492586999949, 49.258531809000075 ], [ -123.109609713999959, 49.258592583000038 ], [ -123.109800418999967, 49.258661601000014 ], [ -123.111111697999945, 49.258669695000037 ], [ -123.111084899999966, 49.259366190000115 ], [ -123.109731783999948, 49.259366901000099 ], [ -123.10960620299997, 49.259397688000078 ], [ -123.109450685, 49.259425101000041 ], [ -123.106987398999976, 49.259385214000062 ], [ -123.105052500999989, 49.25935310200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "336453667", "BldgCostT": "230601667", "sL_LossRatio": "0.828057238348354", "sL_AssetLoss": "2270366", "sL_BldgLoss": "1879993", "sL_StrLoss": "875920", "sL_NStrLoss": "1004073", "sL_ContLoss": "390373", "geom_point": "0101000020E6100000784673E8DDC65EC0A394F85851A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109450685, 49.259425101000041 ], [ -123.10960620299997, 49.259397688000078 ], [ -123.10958394799998, 49.259836933000038 ], [ -123.109580778999913, 49.259899840000116 ], [ -123.109558589999949, 49.26033780800006 ], [ -123.10954281600003, 49.260772334000102 ], [ -123.109525895, 49.261238499000072 ], [ -123.106929512999955, 49.26119509500009 ], [ -123.10498360299998, 49.261162693000109 ], [ -123.105006921999973, 49.260713674000108 ], [ -123.105031116999982, 49.260247901000106 ], [ -123.105041502999981, 49.259813702000017 ], [ -123.105052500999989, 49.25935310200007 ], [ -123.106987398999976, 49.259385214000062 ], [ -123.109450685, 49.259425101000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "730173592", "BldgCostT": "494671793", "sL_LossRatio": "0.810402861787364", "sL_AssetLoss": "4563302", "sL_BldgLoss": "3698113", "sL_StrLoss": "1642690", "sL_NStrLoss": "2055423", "sL_ContLoss": "865189", "geom_point": "0101000020E61000002B449EC9E3C65EC03FD7E7FF8FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104885890999981, 49.263014694000063 ], [ -123.104917175, 49.262072505000063 ], [ -123.104936504999927, 49.2614983120001 ], [ -123.10498360299998, 49.261162693000109 ], [ -123.106929512999955, 49.26119509500009 ], [ -123.109525895, 49.261238499000072 ], [ -123.109491000999967, 49.262150898000087 ], [ -123.111006097999976, 49.262175315000036 ], [ -123.110952496999943, 49.263145813000087 ], [ -123.109484228, 49.263120009000083 ], [ -123.106831716000016, 49.26304890600008 ], [ -123.104885890999981, 49.263014694000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "502279321", "BldgCostT": "323172635", "sL_LossRatio": "0.725378012227576", "sL_AssetLoss": "3677262", "sL_BldgLoss": "2667405", "sL_StrLoss": "1231690", "sL_NStrLoss": "1435715", "sL_ContLoss": "1009857", "geom_point": "0101000020E61000004196ABA393C65EC0BFF7798481A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100965777999932, 49.261113358000038 ], [ -123.101002816999937, 49.260191093000117 ], [ -123.101087128, 49.260193342000044 ], [ -123.101156430999978, 49.260195217000089 ], [ -123.10308551299994, 49.26023170100008 ], [ -123.1030648979999, 49.260697030000131 ], [ -123.103045176999956, 49.261142188000072 ], [ -123.10498360299998, 49.261162693000109 ], [ -123.104936504999927, 49.2614983120001 ], [ -123.104917175, 49.262072505000063 ], [ -123.104885890999981, 49.263014694000063 ], [ -123.102961501999971, 49.262966699000046 ], [ -123.101045500999973, 49.26291611300006 ], [ -123.100888014999953, 49.262908296000077 ], [ -123.1009027899999, 49.262451110000093 ], [ -123.100977906999944, 49.262392801000061 ], [ -123.100996289999969, 49.262010438000104 ], [ -123.10104381, 49.261293828000085 ], [ -123.100962684999971, 49.261206972000132 ], [ -123.100965777999932, 49.261113358000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "683479518", "BldgCostT": "467138889", "sL_LossRatio": "0.862091482734788", "sL_AssetLoss": "4456360", "sL_BldgLoss": "3841790", "sL_StrLoss": "1755550", "sL_NStrLoss": "2086240", "sL_ContLoss": "614570", "geom_point": "0101000020E6100000C9DCC7FA9BC65EC0E3EE428C3AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1030648979999, 49.260697030000131 ], [ -123.10308551299994, 49.26023170100008 ], [ -123.101156430999978, 49.260195217000089 ], [ -123.101087128, 49.260193342000044 ], [ -123.101002816999937, 49.260191093000117 ], [ -123.101003355999936, 49.260182099000097 ], [ -123.10100843799998, 49.26010117400007 ], [ -123.101085833999974, 49.260005963000012 ], [ -123.101108804999953, 49.259308505 ], [ -123.101131371999912, 49.258397493000153 ], [ -123.101754428999953, 49.258406063000116 ], [ -123.103184595, 49.258425694000017 ], [ -123.105101582999936, 49.258457302000046 ], [ -123.105052500999989, 49.25935310200007 ], [ -123.105041502999981, 49.259813702000017 ], [ -123.105031116999982, 49.260247901000106 ], [ -123.105006921999973, 49.260713674000108 ], [ -123.10498360299998, 49.261162693000109 ], [ -123.103045176999956, 49.261142188000072 ], [ -123.1030648979999, 49.260697030000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "280475351", "BldgCostT": "185073207", "sL_LossRatio": "0.759839244378203", "sL_AssetLoss": "1989355", "sL_BldgLoss": "1511590", "sL_StrLoss": "684030", "sL_NStrLoss": "827560", "sL_ContLoss": "477765", "geom_point": "0101000020E61000003E6136BFA9C65EC049DD421506A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105133512999927, 49.257570893000057 ], [ -123.107067303999941, 49.257596683000102 ], [ -123.107048028999927, 49.258048871000028 ], [ -123.107028798999977, 49.258500896000065 ], [ -123.105101582999936, 49.258457302000046 ], [ -123.103184595, 49.258425694000017 ], [ -123.101754428999953, 49.258406063000116 ], [ -123.101131371999912, 49.258397493000153 ], [ -123.10119800799994, 49.257507598000082 ], [ -123.101646382999917, 49.257513527000093 ], [ -123.101999561999904, 49.257518221000041 ], [ -123.103185300999939, 49.257533899000123 ], [ -123.105133512999927, 49.257570893000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "406565342", "BldgCostT": "274689118", "sL_LossRatio": "0.780544284601828", "sL_AssetLoss": "2927880", "sL_BldgLoss": "2285340", "sL_StrLoss": "1010890", "sL_NStrLoss": "1274450", "sL_ContLoss": "642540", "geom_point": "0101000020E6100000411094999AC65EC0347B7EBDE7A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104947380999931, 49.256635393000074 ], [ -123.105169707999934, 49.256639598000099 ], [ -123.105152599999897, 49.257079410000102 ], [ -123.105133512999927, 49.257570893000057 ], [ -123.103185300999939, 49.257533899000123 ], [ -123.101999561999904, 49.257518221000041 ], [ -123.101646382999917, 49.257513527000093 ], [ -123.10119800799994, 49.257507598000082 ], [ -123.101238098999914, 49.256579113000079 ], [ -123.102039830999928, 49.256590191000015 ], [ -123.103243193999944, 49.256606805000146 ], [ -123.104947380999931, 49.256635393000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "406014278", "BldgCostT": "261114055", "sL_LossRatio": "0.712118489754434", "sL_AssetLoss": "3728930", "sL_BldgLoss": "2655440", "sL_StrLoss": "1198660", "sL_NStrLoss": "1456780", "sL_ContLoss": "1073490", "geom_point": "0101000020E6100000EA46934995C65EC089C2BB7DD2A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100860574999956, 49.263740072000061 ], [ -123.100888014999953, 49.262908296000077 ], [ -123.101045500999973, 49.26291611300006 ], [ -123.102961501999971, 49.262966699000046 ], [ -123.104885890999981, 49.263014694000063 ], [ -123.104885118999945, 49.263034416000046 ], [ -123.104871623999941, 49.263366993 ], [ -123.104855398999959, 49.263766900000036 ], [ -123.104837689999925, 49.264230643000104 ], [ -123.104820687999933, 49.264674803000034 ], [ -123.104804220999966, 49.265130528 ], [ -123.104788489999919, 49.265564796000042 ], [ -123.10286038000001, 49.265531096000082 ], [ -123.101647352, 49.265509778000066 ], [ -123.100925391, 49.265497113000023 ], [ -123.100926029999954, 49.265488024000021 ], [ -123.100988984, 49.264633228000044 ], [ -123.100833039999941, 49.264490316000135 ], [ -123.100842057999955, 49.264302298000153 ], [ -123.100860574999956, 49.263740072000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1042738283", "BldgCostT": "704140812", "sL_LossRatio": "0.780949940302841", "sL_AssetLoss": "6750740", "sL_BldgLoss": "5271990", "sL_StrLoss": "2365890", "sL_NStrLoss": "2906100", "sL_ContLoss": "1478750", "geom_point": "0101000020E6100000C748731A58C65EC018D5F8D81FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100008791999983, 49.26458116000007 ], [ -123.100826476999956, 49.264595497000052 ], [ -123.100773724999968, 49.265439605000026 ], [ -123.100769715999888, 49.265503794000011 ], [ -123.100735258999975, 49.266310036000107 ], [ -123.100731080999964, 49.266407997000073 ], [ -123.100728811999943, 49.266488113 ], [ -123.100783097999908, 49.266609301000074 ], [ -123.10075691399993, 49.267313001000034 ], [ -123.100745356999951, 49.268047689000078 ], [ -123.100825889, 49.268144441000047 ], [ -123.100823282999926, 49.268229926000068 ], [ -123.100785677999937, 49.26905130200003 ], [ -123.100775580999979, 49.269146494000076 ], [ -123.100630720999987, 49.269112 ], [ -123.100633119999927, 49.269008478000032 ], [ -123.10023030799999, 49.268857978000071 ], [ -123.099688393999955, 49.268582285000086 ], [ -123.09919360799999, 49.268298703000042 ], [ -123.099071398999968, 49.268275616000089 ], [ -123.09820239199999, 49.267738006000044 ], [ -123.097171809999963, 49.267190498000097 ], [ -123.096692987999973, 49.266982197000061 ], [ -123.096206078999955, 49.26686009800008 ], [ -123.096304582999934, 49.266624010000022 ], [ -123.096765303999916, 49.266331991000101 ], [ -123.096893001999916, 49.266223708000062 ], [ -123.096908752999951, 49.265874120000078 ], [ -123.096928283999915, 49.265440097000074 ], [ -123.098855602999961, 49.265464887000107 ], [ -123.098878464999956, 49.264982333000034 ], [ -123.098898396999957, 49.264561695000033 ], [ -123.100008791999983, 49.26458116000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "455739843", "BldgCostT": "310888763", "sL_LossRatio": "0.850816395283549", "sL_AssetLoss": "2226250", "sL_BldgLoss": "1894130", "sL_StrLoss": "884380", "sL_NStrLoss": "1009750", "sL_ContLoss": "332120", "geom_point": "0101000020E610000003DA3E6035C65EC09306A7D3F4A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095777077999969, 49.264939829000063 ], [ -123.095794585999954, 49.264500805000075 ], [ -123.096826321999941, 49.264524002000051 ], [ -123.096969009999967, 49.264548612000091 ], [ -123.098898396999957, 49.264561695000033 ], [ -123.098878464999956, 49.264982333000034 ], [ -123.098855602999961, 49.265464887000107 ], [ -123.096928283999915, 49.265440097000074 ], [ -123.096908752999951, 49.265874120000078 ], [ -123.096893001999916, 49.266223708000062 ], [ -123.096765303999916, 49.266331991000101 ], [ -123.096304582999934, 49.266624010000022 ], [ -123.096130220999967, 49.266557202000108 ], [ -123.095815195999975, 49.266365894000089 ], [ -123.095652503999986, 49.266221894000047 ], [ -123.095716474999975, 49.265730598000076 ], [ -123.095758386999989, 49.265408605000133 ], [ -123.095763179999949, 49.265288094000077 ], [ -123.095777077999969, 49.264939829000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "680540336", "BldgCostT": "453348691", "sL_LossRatio": "0.770876378954105", "sL_AssetLoss": "3625030", "sL_BldgLoss": "2794450", "sL_StrLoss": "1332670", "sL_NStrLoss": "1461780", "sL_ContLoss": "830580", "geom_point": "0101000020E61000008F213B2D87C75EC0066DDF27B7A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115160501999966, 49.254903913000071 ], [ -123.115210796000014, 49.253984697000135 ], [ -123.11532450699994, 49.254033709000097 ], [ -123.116000595999978, 49.25420400700007 ], [ -123.11620960499999, 49.254223083000049 ], [ -123.11822380299995, 49.254257098000025 ], [ -123.120191307, 49.254290689000058 ], [ -123.120178779999961, 49.254752693000107 ], [ -123.120166812999969, 49.255194406000086 ], [ -123.120155878999952, 49.255643428000099 ], [ -123.120144612999965, 49.25610540100012 ], [ -123.120128579999943, 49.256982302000068 ], [ -123.119384994999947, 49.256968823000115 ], [ -123.118128209999924, 49.256946001000067 ], [ -123.116003413999977, 49.256922498000073 ], [ -123.115053399999979, 49.256913296000064 ], [ -123.115114190999989, 49.255869218000029 ], [ -123.115160501999966, 49.254903913000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114589970", "BldgCostT": "73570413", "sL_LossRatio": "0.702745326602155", "sL_AssetLoss": "1516723", "sL_BldgLoss": "1065870", "sL_StrLoss": "464270", "sL_NStrLoss": "601600", "sL_ContLoss": "450853", "geom_point": "0101000020E61000005E588A26C8C75EC0FBADEF266CA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120178779999961, 49.254752693000107 ], [ -123.120191307, 49.254290689000058 ], [ -123.11822380299995, 49.254257098000025 ], [ -123.118240262999933, 49.253818516000145 ], [ -123.118257408, 49.253361700000049 ], [ -123.118272193999957, 49.252919330000047 ], [ -123.118287802999959, 49.252452786000084 ], [ -123.118305127999989, 49.251993139000149 ], [ -123.118321788999978, 49.251551106000136 ], [ -123.120284921999925, 49.251587404000105 ], [ -123.122215098999959, 49.251623516000116 ], [ -123.123957705999928, 49.251656327000056 ], [ -123.124625413999979, 49.251668906000127 ], [ -123.124606926999959, 49.252140071000014 ], [ -123.124589997999948, 49.252571400000086 ], [ -123.124563155999979, 49.253039485000052 ], [ -123.124538705999939, 49.253466307000089 ], [ -123.124528929999911, 49.253938593000058 ], [ -123.124520109999978, 49.254364693000099 ], [ -123.124502196999956, 49.254820492000107 ], [ -123.124484412999934, 49.255273506000059 ], [ -123.123776962999926, 49.255260508000084 ], [ -123.12209719399999, 49.255229690000128 ], [ -123.120836512000011, 49.255206655 ], [ -123.120166812999969, 49.255194406000086 ], [ -123.120178779999961, 49.254752693000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163404791", "BldgCostT": "110680374", "sL_LossRatio": "0.787461186044667", "sL_AssetLoss": "1639230", "sL_BldgLoss": "1290830", "sL_StrLoss": "639790", "sL_NStrLoss": "651040", "sL_ContLoss": "348400", "geom_point": "0101000020E610000071B1BBA373C65EC0EBDFDCFC12A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100253134999946, 49.274976447000093 ], [ -123.100135899999927, 49.274939073000091 ], [ -123.099994559000024, 49.274936177000029 ], [ -123.09997398099992, 49.274935649000057 ], [ -123.099850502999928, 49.274932305000043 ], [ -123.099872918999978, 49.274372461000084 ], [ -123.099923017999984, 49.273122060000027 ], [ -123.099924466999965, 49.273086091000039 ], [ -123.099927344999969, 49.273014188000047 ], [ -123.099933714999977, 49.272855587000052 ], [ -123.10009941699991, 49.272885303000081 ], [ -123.101181601999954, 49.273049495000052 ], [ -123.101483443999953, 49.27304743800002 ], [ -123.101635199999947, 49.273046395000051 ], [ -123.101635689999966, 49.273381516000086 ], [ -123.10163654099992, 49.273971489000083 ], [ -123.101726141999961, 49.274009897000077 ], [ -123.101821160999961, 49.274388148000128 ], [ -123.101951736999951, 49.274907682000048 ], [ -123.101970047999941, 49.274988329000088 ], [ -123.101417349999949, 49.274984511000106 ], [ -123.101374799999974, 49.274984205000052 ], [ -123.101018523999954, 49.274981737000147 ], [ -123.100399268999922, 49.274977463000049 ], [ -123.100253134999946, 49.274976447000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109421553", "BldgCostT": "70193746", "sL_LossRatio": "0.74071858786218", "sL_AssetLoss": "718910", "sL_BldgLoss": "532510", "sL_StrLoss": "259460", "sL_NStrLoss": "273050", "sL_ContLoss": "186400", "geom_point": "0101000020E6100000DF2FB849B9C85EC03FF72F5A91A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134424012999929, 49.278256092000078 ], [ -123.13542418599998, 49.277593604000103 ], [ -123.134887568999915, 49.277034492000041 ], [ -123.134468810999977, 49.276598190000065 ], [ -123.134216823999964, 49.276384302000061 ], [ -123.13618709299999, 49.275750736000134 ], [ -123.136284315999958, 49.275864200000058 ], [ -123.136236461999943, 49.276040538000089 ], [ -123.136230612999967, 49.276062102000019 ], [ -123.136252464999956, 49.276111741000101 ], [ -123.136319104999927, 49.27626311800006 ], [ -123.136321332999955, 49.277070996000077 ], [ -123.136766258999955, 49.277070470000112 ], [ -123.136838612999952, 49.277096098000072 ], [ -123.136880198999961, 49.277142061000127 ], [ -123.137374680999983, 49.277688599000037 ], [ -123.137676900999949, 49.277671489000049 ], [ -123.137826411999967, 49.277737198000075 ], [ -123.138104790999989, 49.277859514000085 ], [ -123.138393814, 49.278372198000099 ], [ -123.138699259999939, 49.278713161000027 ], [ -123.138773033999911, 49.278795522000074 ], [ -123.13712983799999, 49.279284303000097 ], [ -123.137129597999902, 49.279284389000068 ], [ -123.136570492999937, 49.279659613000085 ], [ -123.135496174999972, 49.278957163000037 ], [ -123.134424012999929, 49.278256092000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101083500", "BldgCostT": "65025000", "sL_LossRatio": "0.757642742385743", "sL_AssetLoss": "877630", "sL_BldgLoss": "664930", "sL_StrLoss": "298560", "sL_NStrLoss": "366370", "sL_ContLoss": "212700", "geom_point": "0101000020E6100000AD953BF995C85EC0DDB542607EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133284943999953, 49.277520612000046 ], [ -123.133291731999961, 49.277455895000081 ], [ -123.133146718999953, 49.277356603000051 ], [ -123.133018147999934, 49.27721435900002 ], [ -123.132961487, 49.277151709000087 ], [ -123.132963603999912, 49.276983319000102 ], [ -123.13321479199999, 49.27672161100007 ], [ -123.134204583999946, 49.276388414000046 ], [ -123.134216823999964, 49.276384302000061 ], [ -123.134468810999977, 49.276598190000065 ], [ -123.134887568999915, 49.277034492000041 ], [ -123.13542418599998, 49.277593604000103 ], [ -123.134424012999929, 49.278256092000078 ], [ -123.133284943999953, 49.277520612000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "441206139", "BldgCostT": "255553872", "sL_LossRatio": "0.612190166270832", "sL_AssetLoss": "9907330", "sL_BldgLoss": "6065170", "sL_StrLoss": "2048670", "sL_NStrLoss": "4016500", "sL_ContLoss": "3842160", "geom_point": "0101000020E6100000FF614B8FA6C55EC0EBD518F87AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097575516999939, 49.289523552000041 ], [ -123.09757498399999, 49.289253697000085 ], [ -123.096228055999944, 49.289254827 ], [ -123.095924606999944, 49.289167073000058 ], [ -123.095924252999936, 49.288985224000051 ], [ -123.095297592999898, 49.288985743000055 ], [ -123.094875055999935, 49.288863545000048 ], [ -123.091859491, 49.287890202000035 ], [ -123.091799975999933, 49.289100049000083 ], [ -123.091798964999953, 49.28910002100006 ], [ -123.091799000999956, 49.289119872000093 ], [ -123.091792185999978, 49.289258436000061 ], [ -123.090818566999957, 49.289259205000057 ], [ -123.090561470999958, 49.289187627000082 ], [ -123.090561249999922, 49.289066677000051 ], [ -123.090080509999893, 49.289053723000109 ], [ -123.089523, 49.288898501000084 ], [ -123.089626722999952, 49.28564280300008 ], [ -123.088966496999944, 49.285444801000097 ], [ -123.08817051199999, 49.285454798000103 ], [ -123.08809077799999, 49.288162195000034 ], [ -123.086727687999911, 49.288137313000071 ], [ -123.086725542999972, 49.286779499000055 ], [ -123.086725662999967, 49.286775162000062 ], [ -123.086844264999911, 49.286774459000057 ], [ -123.086843511999959, 49.286345259000122 ], [ -123.086737539999916, 49.286342399000048 ], [ -123.086778904999946, 49.284835293000043 ], [ -123.085774698999984, 49.284746988000052 ], [ -123.085775212999977, 49.284638709000035 ], [ -123.085363401999942, 49.28457610900012 ], [ -123.085296383999946, 49.286222396000035 ], [ -123.084733497999949, 49.286213886000063 ], [ -123.084733387999933, 49.286295422000059 ], [ -123.084553583999963, 49.286295555000038 ], [ -123.084553515999971, 49.286230995000089 ], [ -123.08403098699992, 49.28620531100011 ], [ -123.084137009999921, 49.28378560200008 ], [ -123.083957998999935, 49.283785606000031 ], [ -123.083808296999962, 49.284684291000126 ], [ -123.08354889899995, 49.284675711000077 ], [ -123.083559807999947, 49.283947994000073 ], [ -123.082775996999885, 49.283947986000051 ], [ -123.082791, 49.284568895000106 ], [ -123.083080896999974, 49.28457748700005 ], [ -123.083069503999937, 49.285185509000037 ], [ -123.082963631999974, 49.285182649000028 ], [ -123.08297029299996, 49.284675698000108 ], [ -123.082364717999951, 49.284677205000044 ], [ -123.081982187999969, 49.285252495000059 ], [ -123.082201810999919, 49.286035887000047 ], [ -123.08216200199999, 49.286278010000039 ], [ -123.08238191699999, 49.286413306000028 ], [ -123.082383293999953, 49.28699521600003 ], [ -123.082221249999947, 49.286990836000115 ], [ -123.082231100999962, 49.286440305000035 ], [ -123.082024690999944, 49.286323615000107 ], [ -123.081803810999972, 49.286305005000031 ], [ -123.081557290999967, 49.286350614000106 ], [ -123.081214299999942, 49.286963619000097 ], [ -123.080319087999939, 49.28693941400013 ], [ -123.080262882999989, 49.285541700000103 ], [ -123.080097902999938, 49.285118701000023 ], [ -123.079945911999943, 49.285128700000058 ], [ -123.079795691999934, 49.285541707000029 ], [ -123.079757394999916, 49.286924223 ], [ -123.077933844999947, 49.286874885000053 ], [ -123.077994522999987, 49.284397006000049 ], [ -123.077091878999951, 49.283807694000132 ], [ -123.077092925999921, 49.28375391000008 ], [ -123.077096463, 49.283565038000113 ], [ -123.077105811999942, 49.283064063000097 ], [ -123.077089760999939, 49.282393252000148 ], [ -123.077086503999936, 49.282258280000065 ], [ -123.07709653799995, 49.281772171000092 ], [ -123.077100153999979, 49.281344408000052 ], [ -123.078054508999912, 49.28135670900005 ], [ -123.078568225999973, 49.281274300000064 ], [ -123.079159590999893, 49.281115497000037 ], [ -123.079642987999989, 49.281012392000044 ], [ -123.080061090999934, 49.280985906000133 ], [ -123.080851267999932, 49.280974097000062 ], [ -123.08130462099993, 49.280967301000054 ], [ -123.082031252999968, 49.280981254000054 ], [ -123.082182320999934, 49.280984165000092 ], [ -123.082415882999982, 49.28098865000004 ], [ -123.08245492499999, 49.280989408000032 ], [ -123.082553537999956, 49.280991673000123 ], [ -123.084797504000022, 49.281043603000064 ], [ -123.08716239099999, 49.281092191000027 ], [ -123.087133747999985, 49.281606718000042 ], [ -123.087109206000022, 49.282047318000131 ], [ -123.08709083299999, 49.28250599800004 ], [ -123.08707290199996, 49.282954202000099 ], [ -123.089461397999969, 49.282999798000056 ], [ -123.089459305999952, 49.283186987000128 ], [ -123.089462736999977, 49.283439259000041 ], [ -123.089463968999937, 49.283529201000064 ], [ -123.089469090999955, 49.283907006000042 ], [ -123.089541879999913, 49.2839080910001 ], [ -123.091363434999934, 49.283944502000047 ], [ -123.091386561999954, 49.283473147000066 ], [ -123.091408023000014, 49.283036900000049 ], [ -123.09141384099992, 49.282565094000105 ], [ -123.091419206999973, 49.282134682000063 ], [ -123.093196204999927, 49.282173579000101 ], [ -123.09338461499999, 49.282177705000059 ], [ -123.093594590999942, 49.282180674000124 ], [ -123.095340594999954, 49.282205438000069 ], [ -123.095365987999941, 49.28220580000005 ], [ -123.095346778999897, 49.282687730000156 ], [ -123.095329917999891, 49.283111008000077 ], [ -123.09334630699999, 49.283073792000089 ], [ -123.093326098999952, 49.28352561800007 ], [ -123.093305407999964, 49.283988694000065 ], [ -123.093272513, 49.284755307000069 ], [ -123.09381066899999, 49.284874216000084 ], [ -123.094921971999923, 49.284905045000144 ], [ -123.095250269999909, 49.284865233000069 ], [ -123.095237750999928, 49.285350396000126 ], [ -123.094760006999962, 49.285626666000084 ], [ -123.095229901, 49.285629405000051 ], [ -123.095911955999952, 49.285448695000071 ], [ -123.096537733999966, 49.285332222000108 ], [ -123.097996108, 49.285000617000094 ], [ -123.098018478999933, 49.284995533000078 ], [ -123.098495908999936, 49.284943503000086 ], [ -123.098819448999961, 49.284934187000054 ], [ -123.099176210999957, 49.284855503000031 ], [ -123.099069936999939, 49.285058358000121 ], [ -123.09945559, 49.285367573000059 ], [ -123.099799115999943, 49.28567875100007 ], [ -123.099737442999981, 49.286510140000125 ], [ -123.0997124, 49.286912298000054 ], [ -123.099687258999936, 49.287315974000094 ], [ -123.099687247999896, 49.287316468 ], [ -123.099687212999953, 49.28731701000001 ], [ -123.099678634999975, 49.287710682000039 ], [ -123.099634633000022, 49.287709500000062 ], [ -123.099635023999966, 49.287902665000047 ], [ -123.09965316099999, 49.287902648000092 ], [ -123.099588629999971, 49.288287354000055 ], [ -123.099299168999949, 49.28952208400009 ], [ -123.097575516999939, 49.289523552000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100499886", "BldgCostT": "64812079", "sL_LossRatio": "0.688823729612273", "sL_AssetLoss": "763940", "sL_BldgLoss": "526220", "sL_StrLoss": "217160", "sL_NStrLoss": "309060", "sL_ContLoss": "237720", "geom_point": "0101000020E6100000F098AA49EAC55EC04E3B90500EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091467107999961, 49.281196502000036 ], [ -123.093208421999975, 49.281233019000091 ], [ -123.093427006999931, 49.281237584000053 ], [ -123.093403341999974, 49.281762474000097 ], [ -123.09338461499999, 49.282177705000059 ], [ -123.093196204999927, 49.282173579000101 ], [ -123.091419206999973, 49.282134682000063 ], [ -123.091441791999927, 49.281692126000095 ], [ -123.091467107999961, 49.281196502000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "526180767", "BldgCostT": "349531919", "sL_LossRatio": "0.709280725812951", "sL_AssetLoss": "2940923", "sL_BldgLoss": "2085940", "sL_StrLoss": "850460", "sL_NStrLoss": "1235480", "sL_ContLoss": "854983", "geom_point": "0101000020E61000007A9417F4B9C55EC086F1583B23A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089459305999952, 49.283186987000128 ], [ -123.089461397999969, 49.282999798000056 ], [ -123.08707290199996, 49.282954202000099 ], [ -123.08709083299999, 49.28250599800004 ], [ -123.087109206000022, 49.282047318000131 ], [ -123.087133747999985, 49.281606718000042 ], [ -123.08716239099999, 49.281092191000027 ], [ -123.089531300999937, 49.281164191000116 ], [ -123.091467107999961, 49.281196502000036 ], [ -123.091441791999927, 49.281692126000095 ], [ -123.091419206999973, 49.282134682000063 ], [ -123.09141384099992, 49.282565094000105 ], [ -123.091408023000014, 49.283036900000049 ], [ -123.091386561999954, 49.283473147000066 ], [ -123.091363434999934, 49.283944502000047 ], [ -123.089541879999913, 49.2839080910001 ], [ -123.089469090999955, 49.283907006000042 ], [ -123.089463968999937, 49.283529201000064 ], [ -123.089462736999977, 49.283439259000041 ], [ -123.089459305999952, 49.283186987000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "347842805", "BldgCostT": "234488748", "sL_LossRatio": "0.756946076818203", "sL_AssetLoss": "2552520", "sL_BldgLoss": "1932120", "sL_StrLoss": "851820", "sL_NStrLoss": "1080300", "sL_ContLoss": "620400", "geom_point": "0101000020E6100000A8B35A60CFC55EC01927CEBCE2A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.089600209999944, 49.279432843000016 ], [ -123.089685085000028, 49.279261439000109 ], [ -123.089812953999967, 49.279304528000075 ], [ -123.091563526999948, 49.279330080000094 ], [ -123.093245684999914, 49.279361391000087 ], [ -123.093509998999949, 49.27936628900008 ], [ -123.093492225999924, 49.279810669000064 ], [ -123.093473802999981, 49.280271488000082 ], [ -123.093451670999954, 49.280728153000034 ], [ -123.093427006999931, 49.281237584000053 ], [ -123.093208421999975, 49.281233019000091 ], [ -123.091467107999961, 49.281196502000036 ], [ -123.089531300999937, 49.281164191000116 ], [ -123.08716239099999, 49.281092191000027 ], [ -123.087187834999952, 49.280608178000101 ], [ -123.087211483999965, 49.280157597000013 ], [ -123.089570657999928, 49.280208633000086 ], [ -123.089588420999974, 49.27974231400006 ], [ -123.089600209999944, 49.279432843000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161915720", "BldgCostT": "103089428", "sL_LossRatio": "0.697474490436217", "sL_AssetLoss": "1872533", "sL_BldgLoss": "1306044", "sL_StrLoss": "533800", "sL_NStrLoss": "772244", "sL_ContLoss": "566489", "geom_point": "0101000020E6100000E19F4AB481C55EC061536319CDA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.084919093999957, 49.278299699000122 ], [ -123.087282602999949, 49.278347281000023 ], [ -123.087260309999976, 49.278811411000092 ], [ -123.087239506999936, 49.279251341000162 ], [ -123.087226481999977, 49.279672748000102 ], [ -123.087211483999965, 49.280157597000013 ], [ -123.087187834999952, 49.280608178000101 ], [ -123.08716239099999, 49.281092191000027 ], [ -123.084797504000022, 49.281043603000064 ], [ -123.084819976999967, 49.280546262 ], [ -123.084839783999939, 49.280107097000055 ], [ -123.084859942999913, 49.279655706000035 ], [ -123.084880100999925, 49.279203879000129 ], [ -123.084898643999963, 49.278774138000095 ], [ -123.084919093999957, 49.278299699000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87952417", "BldgCostT": "55056667", "sL_LossRatio": "0.675647154420067", "sL_AssetLoss": "1895220", "sL_BldgLoss": "1280500", "sL_StrLoss": "522200", "sL_NStrLoss": "758300", "sL_ContLoss": "614720", "geom_point": "0101000020E6100000095329B09FC55EC0C1033DB3A8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087260309999976, 49.278811411000092 ], [ -123.087282602999949, 49.278347281000023 ], [ -123.084919093999957, 49.278299699000122 ], [ -123.084938032999915, 49.277874866000111 ], [ -123.084959200999933, 49.277400001000117 ], [ -123.087298584999985, 49.277436114000061 ], [ -123.087734300999955, 49.277456904000076 ], [ -123.089697917999942, 49.277481008000073 ], [ -123.089678620999948, 49.277960662000055 ], [ -123.089661338999917, 49.278391613000032 ], [ -123.089631351, 49.278869204000031 ], [ -123.089612121999963, 49.279175734000063 ], [ -123.089685085000028, 49.279261439000109 ], [ -123.089600209999944, 49.279432843000016 ], [ -123.089588420999974, 49.27974231400006 ], [ -123.089570657999928, 49.280208633000086 ], [ -123.087211483999965, 49.280157597000013 ], [ -123.087226481999977, 49.279672748000102 ], [ -123.087239506999936, 49.279251341000162 ], [ -123.087260309999976, 49.278811411000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166379061", "BldgCostT": "112583190", "sL_LossRatio": "0.816253017501509", "sL_AssetLoss": "1060480", "sL_BldgLoss": "865620", "sL_StrLoss": "409400", "sL_NStrLoss": "456220", "sL_ContLoss": "194860", "geom_point": "0101000020E61000003F219E995EC55EC042D8B649C1A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08328708499999, 49.277372006000071 ], [ -123.083562134999937, 49.277376613000094 ], [ -123.084959200999933, 49.277400001000117 ], [ -123.084938032999915, 49.277874866000111 ], [ -123.084919093999957, 49.278299699000122 ], [ -123.084898643999963, 49.278774138000095 ], [ -123.084880100999925, 49.279203879000129 ], [ -123.084859942999913, 49.279655706000035 ], [ -123.084839783999939, 49.280107097000055 ], [ -123.084819976999967, 49.280546262 ], [ -123.084797504000022, 49.281043603000064 ], [ -123.082553537999956, 49.280991673000123 ], [ -123.08245492499999, 49.280989408000032 ], [ -123.082473196999928, 49.280480890000042 ], [ -123.082637108999947, 49.280098893000087 ], [ -123.082645480999972, 49.280079404000041 ], [ -123.08313735899999, 49.279242510000117 ], [ -123.083168702999942, 49.27918921200007 ], [ -123.08328708499999, 49.277372006000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123673823", "BldgCostT": "75545563", "sL_LossRatio": "0.698946329529184", "sL_AssetLoss": "1438780", "sL_BldgLoss": "1005630", "sL_StrLoss": "416590", "sL_NStrLoss": "589040", "sL_ContLoss": "433150", "geom_point": "0101000020E6100000F5B704E05FC55EC0E670523D3EA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08145652099995, 49.273094402000041 ], [ -123.08236911299997, 49.273113703000028 ], [ -123.082755686999917, 49.273150194000046 ], [ -123.083313890999975, 49.273231992000042 ], [ -123.08404081299993, 49.273428201000108 ], [ -123.085084223999928, 49.273771596000188 ], [ -123.085905772, 49.274114012000027 ], [ -123.086071091999926, 49.274182899000053 ], [ -123.086894543999946, 49.274459475000093 ], [ -123.087432907999968, 49.274640285000018 ], [ -123.087354954999938, 49.276534183000088 ], [ -123.087354608999959, 49.276543197000102 ], [ -123.084998324999944, 49.276493098000032 ], [ -123.084959200999933, 49.277400001000117 ], [ -123.083562134999937, 49.277376613000094 ], [ -123.08328708499999, 49.277372006000071 ], [ -123.082584409999953, 49.277358397000057 ], [ -123.081885285999959, 49.277347275000096 ], [ -123.081372195999961, 49.277339107000074 ], [ -123.08138027699999, 49.276816901000096 ], [ -123.081395791999938, 49.276114171000117 ], [ -123.08139681199999, 49.276069201000091 ], [ -123.081400291999927, 49.275910410000073 ], [ -123.081409702999935, 49.275804394000026 ], [ -123.08143471299995, 49.274226996000053 ], [ -123.081436002999936, 49.274097286000043 ], [ -123.08145652099995, 49.273094402000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "378653213", "BldgCostT": "228878354", "sL_LossRatio": "0.643994325692929", "sL_AssetLoss": "4553860", "sL_BldgLoss": "2932660", "sL_StrLoss": "1067250", "sL_NStrLoss": "1865410", "sL_ContLoss": "1621200", "geom_point": "0101000020E61000006EE487A51CC55EC056A778F9A9A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0772466989999, 49.277668004000056 ], [ -123.077255827999977, 49.277223914000075 ], [ -123.077265422999986, 49.276759604000084 ], [ -123.077276109999943, 49.276333252000107 ], [ -123.077288101999926, 49.275855012000072 ], [ -123.078630200999939, 49.275884099000116 ], [ -123.07945321299999, 49.275886594000085 ], [ -123.079999985999933, 49.275887802000099 ], [ -123.080661224999972, 49.275898469000055 ], [ -123.080948275999944, 49.27590311300002 ], [ -123.081400291999927, 49.275910410000073 ], [ -123.08139681199999, 49.276069201000091 ], [ -123.081395791999938, 49.276114171000117 ], [ -123.08138027699999, 49.276816901000096 ], [ -123.081372195999961, 49.277339107000074 ], [ -123.081885285999959, 49.277347275000096 ], [ -123.082584409999953, 49.277358397000057 ], [ -123.08328708499999, 49.277372006000071 ], [ -123.083168702999942, 49.27918921200007 ], [ -123.08313735899999, 49.279242510000117 ], [ -123.082645480999972, 49.280079404000041 ], [ -123.082637108999947, 49.280098893000087 ], [ -123.082473196999928, 49.280480890000042 ], [ -123.08245492499999, 49.280989408000032 ], [ -123.082415882999982, 49.28098865000004 ], [ -123.082182320999934, 49.280984165000092 ], [ -123.082031252999968, 49.280981254000054 ], [ -123.08130462099993, 49.280967301000054 ], [ -123.080851267999932, 49.280974097000062 ], [ -123.080061090999934, 49.280985906000133 ], [ -123.079642987999989, 49.281012392000044 ], [ -123.079159590999893, 49.281115497000037 ], [ -123.078568225999973, 49.281274300000064 ], [ -123.078054508999912, 49.28135670900005 ], [ -123.077100153999979, 49.281344408000052 ], [ -123.077131897999976, 49.280840187000067 ], [ -123.077162297999962, 49.280358011000075 ], [ -123.077178325999981, 49.279922471000098 ], [ -123.077194994999942, 49.279468892000054 ], [ -123.077212308999918, 49.27898706500013 ], [ -123.077227781999937, 49.278555598000082 ], [ -123.07723680799991, 49.278132391000106 ], [ -123.0772466989999, 49.277668004000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "579094941", "BldgCostT": "353601345", "sL_LossRatio": "0.670240805444297", "sL_AssetLoss": "4599896", "sL_BldgLoss": "3083038", "sL_StrLoss": "1065599", "sL_NStrLoss": "2017439", "sL_ContLoss": "1516858", "geom_point": "0101000020E61000000ECDE393C2C45EC0F238B853BEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075857891999931, 49.276743999000075 ], [ -123.077265422999986, 49.276759604000084 ], [ -123.077255827999977, 49.277223914000075 ], [ -123.0772466989999, 49.277668004000056 ], [ -123.07723680799991, 49.278132391000106 ], [ -123.077227781999937, 49.278555598000082 ], [ -123.077212308999918, 49.27898706500013 ], [ -123.077194994999942, 49.279468892000054 ], [ -123.077178325999981, 49.279922471000098 ], [ -123.077162297999962, 49.280358011000075 ], [ -123.077131897999976, 49.280840187000067 ], [ -123.077100153999979, 49.281344408000052 ], [ -123.074117205, 49.281310392000073 ], [ -123.072629905999946, 49.281292592000106 ], [ -123.070399404999961, 49.281248302000122 ], [ -123.070414982999978, 49.280736085000171 ], [ -123.070428691999936, 49.280284410000057 ], [ -123.070439749999963, 49.279845646000069 ], [ -123.070451502999973, 49.279379787000025 ], [ -123.072682893999982, 49.279408802000027 ], [ -123.072696397999934, 49.278953635000065 ], [ -123.072709685999953, 49.278505191000086 ], [ -123.072728560999977, 49.27803607900011 ], [ -123.072745888999933, 49.277605410000021 ], [ -123.072762379999958, 49.277163401000038 ], [ -123.072779600000018, 49.276701107000058 ], [ -123.07333808599995, 49.276714502000019 ], [ -123.074081584999959, 49.276723613000122 ], [ -123.074164133999957, 49.276724616000067 ], [ -123.074310196999946, 49.276726398000037 ], [ -123.075857891999931, 49.276743999000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177321666", "BldgCostT": "109460681", "sL_LossRatio": "0.693666666666667", "sL_AssetLoss": "1767000", "sL_BldgLoss": "1225709", "sL_StrLoss": "557470", "sL_NStrLoss": "668239", "sL_ContLoss": "541291", "geom_point": "0101000020E6100000DCAF4C0992C45EC01DA54BFF92A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.071416092999939, 49.276683902000094 ], [ -123.072779600000018, 49.276701107000058 ], [ -123.072762379999958, 49.277163401000038 ], [ -123.072745888999933, 49.277605410000021 ], [ -123.072728560999977, 49.27803607900011 ], [ -123.072709685999953, 49.278505191000086 ], [ -123.072696397999934, 49.278953635000065 ], [ -123.072682893999982, 49.279408802000027 ], [ -123.070451502999973, 49.279379787000025 ], [ -123.070461153999958, 49.278937172000077 ], [ -123.070471090999931, 49.27848229900011 ], [ -123.07047199599999, 49.27809770000011 ], [ -123.070420336999987, 49.278010294000055 ], [ -123.070282104999933, 49.277776397000068 ], [ -123.070070986999909, 49.277572490000132 ], [ -123.069679213999933, 49.277247505000027 ], [ -123.06954420699995, 49.277100358000055 ], [ -123.069522409999976, 49.277076605000062 ], [ -123.069459804999937, 49.276914594000061 ], [ -123.069470598999914, 49.276656407000125 ], [ -123.070461714999965, 49.27667339100001 ], [ -123.071416092999939, 49.276683902000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "394305583", "BldgCostT": "267012348", "sL_LossRatio": "0.807498356366791", "sL_AssetLoss": "2360624", "sL_BldgLoss": "1906200", "sL_StrLoss": "831620", "sL_NStrLoss": "1074580", "sL_ContLoss": "454424", "geom_point": "0101000020E61000002320E4C470C45EC0CBB87747A5A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068440399999986, 49.277549582000091 ], [ -123.070070986999909, 49.277572490000132 ], [ -123.070282104999933, 49.277776397000068 ], [ -123.070420336999987, 49.278010294000055 ], [ -123.07047199599999, 49.27809770000011 ], [ -123.070471090999931, 49.27848229900011 ], [ -123.070461153999958, 49.278937172000077 ], [ -123.070451502999973, 49.279379787000025 ], [ -123.068330093999961, 49.27935010700007 ], [ -123.068339527999967, 49.278911131000065 ], [ -123.068349195999943, 49.27846070600004 ], [ -123.068349188999917, 49.277993572000113 ], [ -123.068349203999929, 49.277548299000088 ], [ -123.068440399999986, 49.277549582000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "472978781", "BldgCostT": "321258603", "sL_LossRatio": "0.820325580531992", "sL_AssetLoss": "2693650", "sL_BldgLoss": "2209670", "sL_StrLoss": "1000060", "sL_NStrLoss": "1209610", "sL_ContLoss": "483980", "geom_point": "0101000020E61000007FDEF9EA4FC45EC0FC2CD7F483A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068878798999961, 49.276649996000074 ], [ -123.069470598999914, 49.276656407000125 ], [ -123.069459804999937, 49.276914594000061 ], [ -123.069522409999976, 49.277076605000062 ], [ -123.06954420699995, 49.277100358000055 ], [ -123.069679213999933, 49.277247505000027 ], [ -123.070070986999909, 49.277572490000132 ], [ -123.068440399999986, 49.277549582000091 ], [ -123.068349203999929, 49.277548299000088 ], [ -123.068349188999917, 49.277993572000113 ], [ -123.068349195999943, 49.27846070600004 ], [ -123.065826401999942, 49.278412898000063 ], [ -123.065612691999931, 49.278380101000089 ], [ -123.065609125999956, 49.277977138000026 ], [ -123.065605106999968, 49.27752241000011 ], [ -123.065614083999918, 49.277059585000117 ], [ -123.065622090999966, 49.276646400000025 ], [ -123.067545604999964, 49.276651798000103 ], [ -123.06837200399994, 49.276644492000038 ], [ -123.068878798999961, 49.276649996000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242341689", "BldgCostT": "163040825", "sL_LossRatio": "0.838461084402936", "sL_AssetLoss": "1372239", "sL_BldgLoss": "1150569", "sL_StrLoss": "537810", "sL_NStrLoss": "612759", "sL_ContLoss": "221670", "geom_point": "0101000020E6100000F19AB22E49C45EC0B1483C6EB2A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06560059499999, 49.279157993000091 ], [ -123.065605261999977, 49.278858744000019 ], [ -123.065612691999931, 49.278380101000089 ], [ -123.065826401999942, 49.278412898000063 ], [ -123.068349195999943, 49.27846070600004 ], [ -123.068339527999967, 49.278911131000065 ], [ -123.068330093999961, 49.27935010700007 ], [ -123.065598886999936, 49.279314715000055 ], [ -123.06560059499999, 49.279157993000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43678166", "BldgCostT": "25436666", "sL_LossRatio": "0.685991422196443", "sL_AssetLoss": "472382", "sL_BldgLoss": "324050", "sL_StrLoss": "161150", "sL_NStrLoss": "162900", "sL_ContLoss": "148332", "geom_point": "0101000020E61000002FD151F548C45EC0BF3C6C3BD0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065595503999972, 49.279672206000029 ], [ -123.065597796999924, 49.279429940000021 ], [ -123.065598886999936, 49.279314715000055 ], [ -123.068330093999961, 49.27935010700007 ], [ -123.068320422999989, 49.279810740000038 ], [ -123.068310898999925, 49.280262110000095 ], [ -123.065586895999971, 49.280242986000118 ], [ -123.06559395, 49.279776162000125 ], [ -123.065595503999972, 49.279672206000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142692174", "BldgCostT": "88857534", "sL_LossRatio": "0.694565242313307", "sL_AssetLoss": "1308430", "sL_BldgLoss": "908790", "sL_StrLoss": "383930", "sL_NStrLoss": "524860", "sL_ContLoss": "399640", "geom_point": "0101000020E61000000399CF7F70C45EC0FEA51CFEE0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068330093999961, 49.27935010700007 ], [ -123.070451502999973, 49.279379787000025 ], [ -123.070439749999963, 49.279845646000069 ], [ -123.070428691999936, 49.280284410000057 ], [ -123.070414982999978, 49.280736085000171 ], [ -123.070399404999961, 49.281248302000122 ], [ -123.068290304999891, 49.28124058500007 ], [ -123.068301468999934, 49.280710210000123 ], [ -123.068310898999925, 49.280262110000095 ], [ -123.068320422999989, 49.279810740000038 ], [ -123.068330093999961, 49.27935010700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "507659342", "BldgCostT": "294860539", "sL_LossRatio": "0.610959947194938", "sL_AssetLoss": "6282731", "sL_BldgLoss": "3838497", "sL_StrLoss": "1385960", "sL_NStrLoss": "2452537", "sL_ContLoss": "2444234", "geom_point": "0101000020E6100000FE69A2F095C45EC093C7BCE971A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065813079999913, 49.287448701000095 ], [ -123.065800090999986, 49.287188091000125 ], [ -123.065496603999989, 49.28718809700004 ], [ -123.06549769799993, 49.287404491000089 ], [ -123.065384160999955, 49.287387360000082 ], [ -123.065411617000024, 49.28678464300009 ], [ -123.065473544999975, 49.286302634000023 ], [ -123.065517720999978, 49.285484303000054 ], [ -123.065515016999939, 49.28527450900004 ], [ -123.065514209999947, 49.285209423000104 ], [ -123.065512715999972, 49.285092505000122 ], [ -123.065509393999918, 49.284833799000062 ], [ -123.065526612999975, 49.284309480000118 ], [ -123.065539106999935, 49.2839292950001 ], [ -123.065545496999931, 49.283464215000095 ], [ -123.065551304999971, 49.283041498000046 ], [ -123.065556279999939, 49.282564697000126 ], [ -123.065560801999965, 49.282132109 ], [ -123.065567218999973, 49.281674165000041 ], [ -123.065573683999915, 49.281211803000126 ], [ -123.065580865999934, 49.280684697000019 ], [ -123.065586895999971, 49.280242986000118 ], [ -123.068310898999925, 49.280262110000095 ], [ -123.068301468999934, 49.280710210000123 ], [ -123.068290304999891, 49.28124058500007 ], [ -123.070399404999961, 49.281248302000122 ], [ -123.072629905999946, 49.281292592000106 ], [ -123.074117205, 49.281310392000073 ], [ -123.077100153999979, 49.281344408000052 ], [ -123.07709653799995, 49.281772171000092 ], [ -123.077086503999936, 49.282258280000065 ], [ -123.077089760999939, 49.282393252000148 ], [ -123.077105811999942, 49.283064063000097 ], [ -123.077096463, 49.283565038000113 ], [ -123.077092925999921, 49.28375391000008 ], [ -123.077091878999951, 49.283807694000132 ], [ -123.077994522999987, 49.284397006000049 ], [ -123.077933844999947, 49.286874885000053 ], [ -123.077768716999927, 49.286870416000021 ], [ -123.077769093999933, 49.287109884000039 ], [ -123.07735656, 49.287110161000037 ], [ -123.07735702399999, 49.287407536000082 ], [ -123.077213699999959, 49.287451496000124 ], [ -123.077201992999932, 49.287919830000128 ], [ -123.076945286, 49.28792000100006 ], [ -123.076945704999929, 49.288189856000052 ], [ -123.07719524599996, 49.288189689000056 ], [ -123.077168258999947, 49.289269127000082 ], [ -123.076122281999929, 49.289269821000076 ], [ -123.076121865999966, 49.288999966000105 ], [ -123.074531825999898, 49.289001003000031 ], [ -123.074058964999907, 49.288901343000042 ], [ -123.074058712999928, 49.288731452000036 ], [ -123.073255332999949, 49.288731964000057 ], [ -123.072408258999985, 49.288553421000145 ], [ -123.072408125999942, 49.288462643000109 ], [ -123.071978859999888, 49.288462911000067 ], [ -123.071582912999943, 49.288379451000075 ], [ -123.07158264399996, 49.288193303000028 ], [ -123.070702405999953, 49.288193845000094 ], [ -123.07034490800001, 49.288118483000126 ], [ -123.070344631999944, 49.287924208000078 ], [ -123.069932090999885, 49.287924458000113 ], [ -123.069932240999933, 49.288031491000034 ], [ -123.069802323999966, 49.288004103000027 ], [ -123.06979056099999, 49.288734108000035 ], [ -123.068695591999941, 49.288734764000054 ], [ -123.068695217999959, 49.28846491000008 ], [ -123.068561556999924, 49.288464989000026 ], [ -123.06857032, 49.287385565000108 ], [ -123.068693716999974, 49.28738549200007 ], [ -123.068693108999952, 49.286947314000095 ], [ -123.068573901999955, 49.28694407700003 ], [ -123.06857682399999, 49.2865842040001 ], [ -123.067269407999945, 49.286575601000017 ], [ -123.067266973999921, 49.286846620000063 ], [ -123.067042839999942, 49.286846751000084 ], [ -123.067043570999928, 49.287386461000089 ], [ -123.067024400999969, 49.28738647100004 ], [ -123.067024413999917, 49.287384594000066 ], [ -123.066198703999987, 49.28737749000004 ], [ -123.066146284999945, 49.289211898000076 ], [ -123.065994006999958, 49.289203310000097 ], [ -123.06603312, 49.28745720300001 ], [ -123.065813079999913, 49.287448701000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267766896", "BldgCostT": "179076525", "sL_LossRatio": "0.759139918097404", "sL_AssetLoss": "2293456", "sL_BldgLoss": "1741054", "sL_StrLoss": "721430", "sL_NStrLoss": "1019624", "sL_ContLoss": "552402", "geom_point": "0101000020E61000009E6CF24A08C45EC0E1B3F9A854A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061616398999931, 49.284798997000081 ], [ -123.06163370499999, 49.284348222000055 ], [ -123.061650189999938, 49.283918989000021 ], [ -123.059712503999947, 49.283913993000077 ], [ -123.059717145999983, 49.28346738900008 ], [ -123.059721884999973, 49.283007196000064 ], [ -123.061666515999931, 49.283010596000047 ], [ -123.063588579999987, 49.283043095000103 ], [ -123.064762598999948, 49.283042157000089 ], [ -123.065551304999971, 49.283041498000046 ], [ -123.065545496999931, 49.283464215000095 ], [ -123.065539106999935, 49.2839292950001 ], [ -123.065526612999975, 49.284309480000118 ], [ -123.065509393999918, 49.284833799000062 ], [ -123.063728881999964, 49.284843 ], [ -123.063552498999954, 49.28480671100003 ], [ -123.061616398999931, 49.284798997000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "374678978", "BldgCostT": "257499857", "sL_LossRatio": "0.820009903110679", "sL_AssetLoss": "1886276", "sL_BldgLoss": "1546765", "sL_StrLoss": "673590", "sL_NStrLoss": "873175", "sL_ContLoss": "339511", "geom_point": "0101000020E6100000D1983181F2C35EC09F150FF72AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061682599999969, 49.282105788000074 ], [ -123.063637200999949, 49.282122999000102 ], [ -123.063615710999912, 49.282530019000014 ], [ -123.063588579999987, 49.283043095000103 ], [ -123.061666515999931, 49.283010596000047 ], [ -123.059721884999973, 49.283007196000064 ], [ -123.059741048999982, 49.282541583000118 ], [ -123.059759791999909, 49.282085012000053 ], [ -123.061682599999969, 49.282105788000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194862114", "BldgCostT": "121635951", "sL_LossRatio": "0.671462712375919", "sL_AssetLoss": "2452020", "sL_BldgLoss": "1646440", "sL_StrLoss": "716700", "sL_NStrLoss": "929740", "sL_ContLoss": "805580", "geom_point": "0101000020E610000095471E2502C45EC09E493736F9A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063615710999912, 49.282530019000014 ], [ -123.063637200999949, 49.282122999000102 ], [ -123.061682599999969, 49.282105788000074 ], [ -123.059759791999909, 49.282085012000053 ], [ -123.059761920999932, 49.281623429000057 ], [ -123.059764022999957, 49.281173604000124 ], [ -123.059771357999921, 49.280687988000039 ], [ -123.059778181999931, 49.280234505000109 ], [ -123.059787410999931, 49.279655489000092 ], [ -123.059794183999898, 49.279115291000039 ], [ -123.061748086999927, 49.279119790000067 ], [ -123.061738391999967, 49.279663583000044 ], [ -123.062572004999979, 49.279663944000035 ], [ -123.063652794999882, 49.279664389000061 ], [ -123.063656212999945, 49.280239996000084 ], [ -123.065586895999971, 49.280242986000118 ], [ -123.065580865999934, 49.280684697000019 ], [ -123.065573683999915, 49.281211803000126 ], [ -123.065567218999973, 49.281674165000041 ], [ -123.065560801999965, 49.282132109 ], [ -123.065556279999939, 49.282564697000126 ], [ -123.065551304999971, 49.283041498000046 ], [ -123.064762598999948, 49.283042157000089 ], [ -123.063588579999987, 49.283043095000103 ], [ -123.063615710999912, 49.282530019000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "480245137", "BldgCostT": "325062080", "sL_LossRatio": "0.795110437689901", "sL_AssetLoss": "2492084", "sL_BldgLoss": "1981482", "sL_StrLoss": "859920", "sL_NStrLoss": "1121562", "sL_ContLoss": "510602", "geom_point": "0101000020E6100000087193EEBAC35EC055E19DB625A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057773745999938, 49.283450305000045 ], [ -123.057792808, 49.282998790000065 ], [ -123.056533992999974, 49.282995994 ], [ -123.056536616999921, 49.282524540000061 ], [ -123.056539081999944, 49.282072006000185 ], [ -123.056541520999957, 49.281642977000082 ], [ -123.056544204999938, 49.281168706000088 ], [ -123.057838722000014, 49.281170704000012 ], [ -123.059764022999957, 49.281173604000124 ], [ -123.059761920999932, 49.281623429000057 ], [ -123.059759791999909, 49.282085012000053 ], [ -123.059741048999982, 49.282541583000118 ], [ -123.059721884999973, 49.283007196000064 ], [ -123.059717145999983, 49.28346738900008 ], [ -123.059712503999947, 49.283913993000077 ], [ -123.05969873, 49.283913936000026 ], [ -123.057754594999977, 49.283903894000041 ], [ -123.057773745999938, 49.283450305000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "393359803", "BldgCostT": "267288746", "sL_LossRatio": "0.850762282266647", "sL_AssetLoss": "2058883", "sL_BldgLoss": "1751620", "sL_StrLoss": "812530", "sL_NStrLoss": "939090", "sL_ContLoss": "307263", "geom_point": "0101000020E6100000D3C62A08D2C35EC0F4102AC465A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059712503999947, 49.283913993000077 ], [ -123.061650189999938, 49.283918989000021 ], [ -123.06163370499999, 49.284348222000055 ], [ -123.061616398999931, 49.284798997000081 ], [ -123.061602047999898, 49.284799053000036 ], [ -123.059708181999937, 49.28480558800004 ], [ -123.057766987999969, 49.284791501000043 ], [ -123.057760828999946, 49.284349871000124 ], [ -123.057754594999977, 49.283903894000041 ], [ -123.05969873, 49.283913936000026 ], [ -123.059712503999947, 49.283913993000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "427522001", "BldgCostT": "297580001", "sL_LossRatio": "0.884746637325455", "sL_AssetLoss": "1934026", "sL_BldgLoss": "1711123", "sL_StrLoss": "782560", "sL_NStrLoss": "928563", "sL_ContLoss": "222903", "geom_point": "0101000020E6100000CEA125F2D1C35EC0B115764983A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061602047999898, 49.284799053000036 ], [ -123.061616398999931, 49.284798997000081 ], [ -123.061616139999956, 49.285274430000086 ], [ -123.061615903999922, 49.28571778500006 ], [ -123.059709789999957, 49.285712694000054 ], [ -123.057750308, 49.285705300000053 ], [ -123.057758448999962, 49.285258587000087 ], [ -123.057766987999969, 49.284791501000043 ], [ -123.059708181999937, 49.28480558800004 ], [ -123.061602047999898, 49.284799053000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "294605001", "BldgCostT": "204380001", "sL_LossRatio": "0.813931924963845", "sL_AssetLoss": "1445170", "sL_BldgLoss": "1176270", "sL_StrLoss": "486360", "sL_NStrLoss": "689910", "sL_ContLoss": "268900", "geom_point": "0101000020E6100000B1B8E62BD4C35EC0A1472974A0A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057729204999958, 49.286600910000061 ], [ -123.057738989999976, 49.286184933000072 ], [ -123.057750308, 49.285705300000053 ], [ -123.059709789999957, 49.285712694000054 ], [ -123.061615903999922, 49.28571778500006 ], [ -123.062453067999968, 49.28571082600007 ], [ -123.06192342599995, 49.28607111000008 ], [ -123.061488466999919, 49.286618 ], [ -123.06086249699996, 49.286587215000061 ], [ -123.060767894999984, 49.286626991000041 ], [ -123.059685076999969, 49.286621795000038 ], [ -123.057729204999958, 49.286600910000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31980373", "BldgCostT": "18841381", "sL_LossRatio": "0.651932585227852", "sL_AssetLoss": "539407", "sL_BldgLoss": "351657", "sL_StrLoss": "126444", "sL_NStrLoss": "225213", "sL_ContLoss": "187750", "geom_point": "0101000020E610000051D8C909A8C35EC0C0DE2F2CA0A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056525306999944, 49.284779292000067 ], [ -123.057766987999969, 49.284791501000043 ], [ -123.057758448999962, 49.285258587000087 ], [ -123.057750308, 49.285705300000053 ], [ -123.057738989999976, 49.286184933000072 ], [ -123.057729204999958, 49.286600910000061 ], [ -123.057716186999983, 49.287075509000054 ], [ -123.057704208999951, 49.287513596000068 ], [ -123.056506121999945, 49.28750619100007 ], [ -123.056509455999958, 49.287400073000065 ], [ -123.056511757999942, 49.287328076000037 ], [ -123.056519987999948, 49.287067509000124 ], [ -123.056530699999911, 49.286728615000101 ], [ -123.056524913999937, 49.286603292000052 ], [ -123.056526196999954, 49.286185564000036 ], [ -123.056527703999933, 49.285694496000104 ], [ -123.056526571999939, 49.285268022000061 ], [ -123.056525306999944, 49.284779292000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "505991811", "BldgCostT": "351353190", "sL_LossRatio": "0.87353164077302", "sL_AssetLoss": "2005640", "sL_BldgLoss": "1751990", "sL_StrLoss": "812930", "sL_NStrLoss": "939060", "sL_ContLoss": "253650", "geom_point": "0101000020E61000000D20091CC5C35EC07BE0EF59CFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057704208999951, 49.287513596000068 ], [ -123.057716186999983, 49.287075509000054 ], [ -123.057729204999958, 49.286600910000061 ], [ -123.059685076999969, 49.286621795000038 ], [ -123.059669317999948, 49.287101909000057 ], [ -123.059655503999977, 49.28752259600008 ], [ -123.06010653599999, 49.287530438000033 ], [ -123.060753882999975, 49.287541696000112 ], [ -123.060020810999902, 49.288437794000103 ], [ -123.059283538999964, 49.288430177000109 ], [ -123.057726804, 49.288414095000107 ], [ -123.057715778999977, 49.287974858000041 ], [ -123.057704208999951, 49.287513596000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364750031", "BldgCostT": "252303603", "sL_LossRatio": "0.850281843008193", "sL_AssetLoss": "1142480", "sL_BldgLoss": "971430", "sL_StrLoss": "417320", "sL_NStrLoss": "554110", "sL_ContLoss": "171050", "geom_point": "0101000020E6100000C428AEAEB3C35EC061463ED006A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059283538999964, 49.288430177000109 ], [ -123.060020810999902, 49.288437794000103 ], [ -123.059307602999979, 49.28932359000008 ], [ -123.059111209999969, 49.289493897000078 ], [ -123.058666086999949, 49.289749318000126 ], [ -123.056834917999964, 49.290619998000054 ], [ -123.056483711999959, 49.290716688000067 ], [ -123.05650422699992, 49.290207342000059 ], [ -123.056524296999939, 49.289709901 ], [ -123.056536129, 49.289306679000056 ], [ -123.05653834499999, 49.289216225000096 ], [ -123.056544827, 49.288952915000046 ], [ -123.056552282999959, 49.288662181000049 ], [ -123.056552172999915, 49.288404555000049 ], [ -123.057726804, 49.288414095000107 ], [ -123.059283538999964, 49.288430177000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "386077301", "BldgCostT": "257169218", "sL_LossRatio": "0.736458468693752", "sL_AssetLoss": "1666846.2", "sL_BldgLoss": "1227563", "sL_StrLoss": "458980", "sL_NStrLoss": "768583", "sL_ContLoss": "439283.2", "geom_point": "0101000020E6100000C2FB2FDFD3C35EC0B9AF8F90F9A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051713720999928, 49.293331145000145 ], [ -123.051672425999982, 49.292810925000012 ], [ -123.051615454999947, 49.292519194000121 ], [ -123.051799055999965, 49.29228078900006 ], [ -123.05188194899992, 49.292042908000035 ], [ -123.051953221999966, 49.291663200000116 ], [ -123.053296575999966, 49.29138252700011 ], [ -123.054565413999967, 49.291117382000024 ], [ -123.054564978999963, 49.290734598000071 ], [ -123.05639048499999, 49.290734898 ], [ -123.056483711999959, 49.290716688000067 ], [ -123.056834917999964, 49.290619998000054 ], [ -123.058666086999949, 49.289749318000126 ], [ -123.059111209999969, 49.289493897000078 ], [ -123.059307602999979, 49.28932359000008 ], [ -123.060020810999902, 49.288437794000103 ], [ -123.060753882999975, 49.287541696000112 ], [ -123.06010653599999, 49.287530438000033 ], [ -123.059655503999977, 49.28752259600008 ], [ -123.059669317999948, 49.287101909000057 ], [ -123.059685076999969, 49.286621795000038 ], [ -123.060767894999984, 49.286626991000041 ], [ -123.06086249699996, 49.286587215000061 ], [ -123.061488466999919, 49.286618 ], [ -123.06192342599995, 49.28607111000008 ], [ -123.062453067999968, 49.28571082600007 ], [ -123.061615903999922, 49.28571778500006 ], [ -123.061616139999956, 49.285274430000086 ], [ -123.061616398999931, 49.284798997000081 ], [ -123.063552498999954, 49.28480671100003 ], [ -123.063728881999964, 49.284843 ], [ -123.065509393999918, 49.284833799000062 ], [ -123.065512715999972, 49.285092505000122 ], [ -123.065514209999947, 49.285209423000104 ], [ -123.065515016999939, 49.28527450900004 ], [ -123.065517720999978, 49.285484303000054 ], [ -123.065473544999975, 49.286302634000023 ], [ -123.065411617000024, 49.28678464300009 ], [ -123.065384160999955, 49.287387360000082 ], [ -123.065318812999948, 49.287377499000101 ], [ -123.065318800999989, 49.287277791000058 ], [ -123.064975197999914, 49.287279211000076 ], [ -123.064933597999968, 49.287133911000112 ], [ -123.064699210999919, 49.287135404000054 ], [ -123.064673002999939, 49.287836110000022 ], [ -123.064562115999976, 49.287827495000016 ], [ -123.064590082999942, 49.287108303000061 ], [ -123.06446569299996, 49.287108312000086 ], [ -123.064465593999955, 49.287269200000026 ], [ -123.06413511599996, 49.287270699 ], [ -123.06412321199997, 49.28792719000009 ], [ -123.063889481, 49.28792719700003 ], [ -123.063888399999982, 49.287504204000115 ], [ -123.06369558399993, 49.287539805000094 ], [ -123.063683281999943, 49.288016892000037 ], [ -123.063380812999966, 49.288394392000036 ], [ -123.062678111999929, 49.288179294000024 ], [ -123.06265270099999, 49.288350188000102 ], [ -123.062954595999955, 49.288475508000104 ], [ -123.062432408999925, 49.289169083000097 ], [ -123.062048714999975, 49.28906090200006 ], [ -123.062212991999985, 49.289285896000109 ], [ -123.062049000999977, 49.289339996000116 ], [ -123.061869617999932, 49.289160600000095 ], [ -123.061373681999967, 49.289754495000089 ], [ -123.061057615999943, 49.289906896000097 ], [ -123.060562499999946, 49.289871296000079 ], [ -123.06038569899999, 49.289943888000025 ], [ -123.060508017999965, 49.290177503000031 ], [ -123.060632395999903, 49.290104793000076 ], [ -123.061045, 49.290365513000026 ], [ -123.061196083999945, 49.290284292000052 ], [ -123.061649694, 49.290626089000071 ], [ -123.061472787999946, 49.290725804000054 ], [ -123.061086283999913, 49.29049220700005 ], [ -123.060866606999952, 49.290563389000027 ], [ -123.060577182999921, 49.290312798000059 ], [ -123.060357488999912, 49.290384013000043 ], [ -123.060934895999964, 49.290861094 ], [ -123.06079869, 49.290923795000012 ], [ -123.060137800999939, 49.290393913000059 ], [ -123.0603165899999, 49.290275699000063 ], [ -123.060178387999912, 49.290150403000077 ], [ -123.059531799999945, 49.290438109000085 ], [ -123.059643516, 49.290556299000066 ], [ -123.059313980999917, 49.290663102000067 ], [ -123.059877994999965, 49.29119439800008 ], [ -123.059136098999957, 49.291491999000101 ], [ -123.058708499999952, 49.291104608000133 ], [ -123.057897491999981, 49.291500588000105 ], [ -123.057704194999943, 49.291383799000066 ], [ -123.057003982999944, 49.291887900000127 ], [ -123.056276191, 49.291862293000115 ], [ -123.055875824999987, 49.292158503000067 ], [ -123.054460297999967, 49.292645600000114 ], [ -123.053011848999972, 49.293061840000121 ], [ -123.052970843999915, 49.293060721000046 ], [ -123.052198236999971, 49.293061072000107 ], [ -123.052198484999906, 49.293295563000122 ], [ -123.052075222999974, 49.293330982000064 ], [ -123.051713720999928, 49.293331145000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119423302", "BldgCostT": "81808745", "sL_LossRatio": "0.805264760996669", "sL_AssetLoss": "906138", "sL_BldgLoss": "729681", "sL_StrLoss": "331477", "sL_NStrLoss": "398204", "sL_ContLoss": "176457", "geom_point": "0101000020E6100000449B362591C35EC005E2651BF2A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054574576, 49.287726405000079 ], [ -123.054573847999947, 49.287220934000075 ], [ -123.054573109999964, 49.286733803000104 ], [ -123.056530699999911, 49.286728615000101 ], [ -123.056519987999948, 49.287067509000124 ], [ -123.056511757999942, 49.287328076000037 ], [ -123.056509455999958, 49.287400073000065 ], [ -123.056506121999945, 49.28750619100007 ], [ -123.057704208999951, 49.287513596000068 ], [ -123.057715778999977, 49.287974858000041 ], [ -123.057726804, 49.288414095000107 ], [ -123.056552172999915, 49.288404555000049 ], [ -123.056552282999959, 49.288662181000049 ], [ -123.056544827, 49.288952915000046 ], [ -123.05653834499999, 49.289216225000096 ], [ -123.056536129, 49.289306679000056 ], [ -123.056524296999939, 49.289709901 ], [ -123.05650422699992, 49.290207342000059 ], [ -123.056483711999959, 49.290716688000067 ], [ -123.05639048499999, 49.290734898 ], [ -123.054564978999963, 49.290734598000071 ], [ -123.054566666999946, 49.290216412000106 ], [ -123.054568312999919, 49.289707891000077 ], [ -123.05455845699997, 49.289208489000011 ], [ -123.054549096999949, 49.288734598000104 ], [ -123.05456258699995, 49.288202150000124 ], [ -123.054574576, 49.287726405000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94518250", "BldgCostT": "62035000", "sL_LossRatio": "0.746107369093022", "sL_AssetLoss": "977488", "sL_BldgLoss": "729311", "sL_StrLoss": "362300", "sL_NStrLoss": "367011", "sL_ContLoss": "248177", "geom_point": "0101000020E61000001C991D3568C35EC0D0645AF6FFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.051957209999927, 49.286736196000057 ], [ -123.054573109999964, 49.286733803000104 ], [ -123.054573847999947, 49.287220934000075 ], [ -123.054574576, 49.287726405000079 ], [ -123.05456258699995, 49.288202150000124 ], [ -123.054549096999949, 49.288734598000104 ], [ -123.05455845699997, 49.289208489000011 ], [ -123.054568312999919, 49.289707891000077 ], [ -123.054566666999946, 49.290216412000106 ], [ -123.054564978999963, 49.290734598000071 ], [ -123.054565413999967, 49.291117382000024 ], [ -123.053296575999966, 49.29138252700011 ], [ -123.051953221999966, 49.291663200000116 ], [ -123.051964420999951, 49.290731195000063 ], [ -123.051965075999973, 49.290613422000028 ], [ -123.051967366999975, 49.290226634000064 ], [ -123.051970408999978, 49.289706296000098 ], [ -123.05195579799998, 49.289209877000076 ], [ -123.051941292999913, 49.288715609000128 ], [ -123.051945123999971, 49.288211585000042 ], [ -123.051948677999931, 49.287735794000092 ], [ -123.051953146999935, 49.287213330000057 ], [ -123.051957209999927, 49.286736196000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82739251", "BldgCostT": "55620001", "sL_LossRatio": "0.744159186441224", "sL_AssetLoss": "993954", "sL_BldgLoss": "739660", "sL_StrLoss": "335050", "sL_NStrLoss": "404610", "sL_ContLoss": "254294", "geom_point": "0101000020E6100000F181158E3DC35EC07525762BD3A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049319507999911, 49.285677908000096 ], [ -123.051964713999936, 49.285689790000077 ], [ -123.051961132999935, 49.286187832000067 ], [ -123.051957209999927, 49.286736196000057 ], [ -123.051953146999935, 49.287213330000057 ], [ -123.051948677999931, 49.287735794000092 ], [ -123.051945123999971, 49.288211585000042 ], [ -123.051941292999913, 49.288715609000128 ], [ -123.05195579799998, 49.289209877000076 ], [ -123.051970408999978, 49.289706296000098 ], [ -123.049301104999969, 49.289703700000103 ], [ -123.049308512999971, 49.289211178000116 ], [ -123.049316000999909, 49.288713294000061 ], [ -123.049311239999923, 49.288221698000072 ], [ -123.049306399999978, 49.287720395000051 ], [ -123.049309265999938, 49.287214333000065 ], [ -123.049311992, 49.28672519900006 ], [ -123.049315897, 49.286179885000145 ], [ -123.049319507999911, 49.285677908000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80770334", "BldgCostT": "53548334", "sL_LossRatio": "0.74086023454351", "sL_AssetLoss": "1103420", "sL_BldgLoss": "817480", "sL_StrLoss": "360210", "sL_NStrLoss": "457270", "sL_ContLoss": "285940", "geom_point": "0101000020E6100000AB53588812C35EC0794EDD09B4A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046700896999965, 49.28477580600002 ], [ -123.049321988999964, 49.28477449800004 ], [ -123.049320714000018, 49.285244377000012 ], [ -123.049319507999911, 49.285677908000096 ], [ -123.049315897, 49.286179885000145 ], [ -123.049311992, 49.28672519900006 ], [ -123.049309265999938, 49.287214333000065 ], [ -123.049306399999978, 49.287720395000051 ], [ -123.049311239999923, 49.288221698000072 ], [ -123.049316000999909, 49.288713294000061 ], [ -123.046701284999983, 49.288718295000045 ], [ -123.046698420999945, 49.28822287100013 ], [ -123.046695405999984, 49.287709396000032 ], [ -123.046695935999963, 49.287224362000131 ], [ -123.046696507999968, 49.286721299000156 ], [ -123.046699118999953, 49.286180909000102 ], [ -123.046701580999951, 49.285671096000044 ], [ -123.046701273999943, 49.285236440000041 ], [ -123.046700896999965, 49.28477580600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188036030", "BldgCostT": "123298602", "sL_LossRatio": "0.748031784393423", "sL_AssetLoss": "1911630", "sL_BldgLoss": "1429960", "sL_StrLoss": "647180", "sL_NStrLoss": "782780", "sL_ContLoss": "481670", "geom_point": "0101000020E61000000E528579EEC25EC0B24FCFD4CEA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.044047982000023, 49.288659209000052 ], [ -123.04404158199999, 49.288233711000011 ], [ -123.04404143799999, 49.288224082000063 ], [ -123.04403348799994, 49.287699604000132 ], [ -123.044047435999985, 49.287216282000053 ], [ -123.044061794999934, 49.286716696000049 ], [ -123.044053323999947, 49.28566439300009 ], [ -123.044002803999902, 49.284775791000051 ], [ -123.04484038599999, 49.284775799000073 ], [ -123.046105448999967, 49.284775796000055 ], [ -123.046700896999965, 49.28477580600002 ], [ -123.046701273999943, 49.285236440000041 ], [ -123.046701580999951, 49.285671096000044 ], [ -123.046699118999953, 49.286180909000102 ], [ -123.046696507999968, 49.286721299000156 ], [ -123.046695935999963, 49.287224362000131 ], [ -123.046695405999984, 49.287709396000032 ], [ -123.046698420999945, 49.28822287100013 ], [ -123.046701284999983, 49.288718295000045 ], [ -123.049316000999909, 49.288713294000061 ], [ -123.049308512999971, 49.289211178000116 ], [ -123.049301104999969, 49.289703700000103 ], [ -123.046685294999961, 49.289703287000123 ], [ -123.044046104999936, 49.289701405000095 ], [ -123.044046526999978, 49.289213355000079 ], [ -123.044046900999916, 49.288784412000027 ], [ -123.044047638, 49.288700636000051 ], [ -123.044047982000023, 49.288659209000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174981333", "BldgCostT": "108033333", "sL_LossRatio": "0.691904177541179", "sL_AssetLoss": "2314280", "sL_BldgLoss": "1601260", "sL_StrLoss": "699210", "sL_NStrLoss": "902050", "sL_ContLoss": "713020", "geom_point": "0101000020E610000032A09C7008C35EC0345F251F3BA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.042151883999978, 49.289679192000079 ], [ -123.041604694999961, 49.289293999000051 ], [ -123.041320704999976, 49.28906412000007 ], [ -123.041296583999952, 49.289097491000057 ], [ -123.041278913, 49.289121993000087 ], [ -123.041134093999958, 49.289193697000101 ], [ -123.040957715000019, 49.289223100000157 ], [ -123.040772701999941, 49.289212692000049 ], [ -123.040529311999961, 49.289150103000047 ], [ -123.040643700999951, 49.2888002 ], [ -123.040759785999953, 49.288800030000104 ], [ -123.041358593, 49.288799096000027 ], [ -123.044046900999916, 49.288784412000027 ], [ -123.044046526999978, 49.289213355000079 ], [ -123.044046104999936, 49.289701405000095 ], [ -123.046685294999961, 49.289703287000123 ], [ -123.049301104999969, 49.289703700000103 ], [ -123.051970408999978, 49.289706296000098 ], [ -123.051967366999975, 49.290226634000064 ], [ -123.051965075999973, 49.290613422000028 ], [ -123.051964420999951, 49.290731195000063 ], [ -123.051953221999966, 49.291663200000116 ], [ -123.05188194899992, 49.292042908000035 ], [ -123.051799055999965, 49.29228078900006 ], [ -123.051615454999947, 49.292519194000121 ], [ -123.05114389499991, 49.292608516000072 ], [ -123.05013209599997, 49.292781708000078 ], [ -123.049853451999951, 49.292798720000121 ], [ -123.04928096799992, 49.292833674000107 ], [ -123.049246097999941, 49.292835789000037 ], [ -123.048695477999928, 49.292803694000057 ], [ -123.048095513999925, 49.292706202000083 ], [ -123.046345386999931, 49.292297194000092 ], [ -123.044621872999954, 49.291945373000075 ], [ -123.044282826999961, 49.291876145000039 ], [ -123.044072399999891, 49.291833185000044 ], [ -123.044078279999951, 49.291695288000078 ], [ -123.044070858999973, 49.291501427000071 ], [ -123.044056423999962, 49.291071701000071 ], [ -123.043767283999983, 49.290947598000045 ], [ -123.043410807999948, 49.290718001000101 ], [ -123.04278801699995, 49.290204110000104 ], [ -123.042151883999978, 49.289679192000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "353674558", "BldgCostT": "222491630", "sL_LossRatio": "0.671365161083492", "sL_AssetLoss": "4242210", "sL_BldgLoss": "2848072", "sL_StrLoss": "1084392", "sL_NStrLoss": "1763680", "sL_ContLoss": "1394138", "geom_point": "0101000020E610000001FA7DFF66C25EC03A7D2BE993A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04683515499994, 49.29360307900015 ], [ -123.046834898999975, 49.293333225000012 ], [ -123.046422314999973, 49.293333391000012 ], [ -123.046422059999927, 49.293063537000101 ], [ -123.046033301999941, 49.293063693000114 ], [ -123.04600942699993, 49.293012413000064 ], [ -123.046008973999932, 49.292523993000046 ], [ -123.045463604999924, 49.292524209000092 ], [ -123.045589834999973, 49.292574763000083 ], [ -123.045489432999958, 49.292680528000091 ], [ -123.04427020199995, 49.292145683000058 ], [ -123.043967201999948, 49.292137190000076 ], [ -123.043073691999922, 49.292497506000075 ], [ -123.042744009999936, 49.292497503000092 ], [ -123.04051558799992, 49.292074510000113 ], [ -123.039813395999971, 49.291544699000042 ], [ -123.039564587999976, 49.291211411000113 ], [ -123.039001987999953, 49.290869592000092 ], [ -123.037308583999931, 49.290825492000096 ], [ -123.036930867, 49.290712566000117 ], [ -123.036930811999937, 49.290638266 ], [ -123.036469445999984, 49.290638413000103 ], [ -123.036469057999966, 49.290644487000051 ], [ -123.035012989999984, 49.29049360600002 ], [ -123.034186893999944, 49.290322705000094 ], [ -123.033858004999956, 49.290332692000071 ], [ -123.034105491999952, 49.290637493000119 ], [ -123.034187783999954, 49.290979293000071 ], [ -123.033829500999943, 49.291006411000133 ], [ -123.03363779599999, 49.290718700000049 ], [ -123.0324965099999, 49.290655998000069 ], [ -123.031738911999966, 49.290422387000149 ], [ -123.028934491999948, 49.29211438800008 ], [ -123.029505495999956, 49.292036398000093 ], [ -123.029505628, 49.292259530000081 ], [ -123.028680473999955, 49.292259739000052 ], [ -123.028680630999972, 49.292529592000058 ], [ -123.027855470999924, 49.292529795000092 ], [ -123.027855561999971, 49.292691503000107 ], [ -123.027834588999909, 49.292664090000081 ], [ -123.027478785999904, 49.292770995000055 ], [ -123.026901296999981, 49.292726789000064 ], [ -123.026696634999922, 49.292799924000128 ], [ -123.026205294999897, 49.29280003600006 ], [ -123.02620538799999, 49.292975463000076 ], [ -123.02610309899994, 49.293012014000084 ], [ -123.026102935000011, 49.293005762000156 ], [ -123.026087845999967, 49.292430094000053 ], [ -123.026087003, 49.292397685000097 ], [ -123.02608725099999, 49.292392906000075 ], [ -123.026100359999973, 49.292151368000049 ], [ -123.026113563999957, 49.291908311000057 ], [ -123.02613133899996, 49.291580941000063 ], [ -123.02613281399999, 49.291554107000081 ], [ -123.026199003999977, 49.291186591000027 ], [ -123.026312799999928, 49.290955579000091 ], [ -123.02645041, 49.290782805000099 ], [ -123.027646492999935, 49.289737871000106 ], [ -123.028308500999941, 49.289159516000012 ], [ -123.02843069199993, 49.289054692000079 ], [ -123.029199484999978, 49.288440531000042 ], [ -123.029242531999969, 49.288360955000073 ], [ -123.029248607999989, 49.28834977000006 ], [ -123.029662257999945, 49.287956754000078 ], [ -123.029954596999957, 49.287711015000127 ], [ -123.030100251999926, 49.287247706000109 ], [ -123.030087509999959, 49.287120201000036 ], [ -123.030041290999932, 49.286657985000033 ], [ -123.03010868599992, 49.286635494000031 ], [ -123.030445407999963, 49.286177667000061 ], [ -123.030811804999971, 49.28567940300006 ], [ -123.030837663999975, 49.285642750000093 ], [ -123.030854185999956, 49.285619294000071 ], [ -123.030866139999915, 49.285231775000035 ], [ -123.030879796999926, 49.284789506000031 ], [ -123.030875516999984, 49.284297475000081 ], [ -123.030871914999977, 49.283882187000074 ], [ -123.030870619000027, 49.283415788000049 ], [ -123.030869403999986, 49.28295621000008 ], [ -123.03084950099999, 49.282508633000056 ], [ -123.030830011999953, 49.282069597000024 ], [ -123.030821287999956, 49.281625291000111 ], [ -123.030851962999989, 49.281141824 ], [ -123.030963810999964, 49.281142233000018 ], [ -123.031280995999936, 49.281143399000115 ], [ -123.03147740199995, 49.281144296000072 ], [ -123.03151838399999, 49.281144396000151 ], [ -123.031639990999949, 49.281144753000092 ], [ -123.031686018999949, 49.281144868000069 ], [ -123.031765994999958, 49.281145090000031 ], [ -123.031912998999971, 49.281145504000072 ], [ -123.032709857999976, 49.281148929000025 ], [ -123.036186083999937, 49.281163799000048 ], [ -123.036197079999937, 49.280197601000062 ], [ -123.03620410799999, 49.279636144000087 ], [ -123.036211089999966, 49.279074791000056 ], [ -123.03884500699999, 49.279084906000037 ], [ -123.038847086000018, 49.278672919 ], [ -123.038849200999948, 49.278265295 ], [ -123.036220997999962, 49.278274309000047 ], [ -123.036228316999939, 49.277836865000033 ], [ -123.036234577999934, 49.277460303000083 ], [ -123.03694218699999, 49.277460920000095 ], [ -123.038248234999969, 49.277462056000104 ], [ -123.038875688999909, 49.277462593000095 ], [ -123.039526782999985, 49.277459773000039 ], [ -123.04076416499997, 49.277454412000047 ], [ -123.041429797999982, 49.277451488000132 ], [ -123.041465594, 49.27749391000004 ], [ -123.041463115999989, 49.277853691000139 ], [ -123.041460310000019, 49.278265790000077 ], [ -123.041457833999928, 49.278681188000085 ], [ -123.04145614, 49.278959982000117 ], [ -123.041455285999945, 49.279098797000103 ], [ -123.041453791999942, 49.27961669200014 ], [ -123.044085098999986, 49.279624788000056 ], [ -123.044078291999952, 49.280206495000058 ], [ -123.044767424999918, 49.280208652000077 ], [ -123.045991086999962, 49.28021247300007 ], [ -123.046675312999923, 49.280214609000019 ], [ -123.046667187999944, 49.280693597000067 ], [ -123.046659414999951, 49.281154504000035 ], [ -123.046660085, 49.281602436000092 ], [ -123.046660807, 49.282060700000102 ], [ -123.044810498999965, 49.282058630000066 ], [ -123.043983629999957, 49.282057701000049 ], [ -123.043987815999955, 49.28253019400011 ], [ -123.043991692999896, 49.282966799000071 ], [ -123.04399580799999, 49.283872204000083 ], [ -123.044002803999902, 49.284775791000051 ], [ -123.044053323999947, 49.28566439300009 ], [ -123.044061794999934, 49.286716696000049 ], [ -123.044047435999985, 49.287216282000053 ], [ -123.04403348799994, 49.287699604000132 ], [ -123.04404143799999, 49.288224082000063 ], [ -123.04404158199999, 49.288233711000011 ], [ -123.044047982000023, 49.288659209000052 ], [ -123.044047638, 49.288700636000051 ], [ -123.044046900999916, 49.288784412000027 ], [ -123.041358593, 49.288799096000027 ], [ -123.040759785999953, 49.288800030000104 ], [ -123.040643700999951, 49.2888002 ], [ -123.040529311999961, 49.289150103000047 ], [ -123.040772701999941, 49.289212692000049 ], [ -123.040957715000019, 49.289223100000157 ], [ -123.041134093999958, 49.289193697000101 ], [ -123.041278913, 49.289121993000087 ], [ -123.041296583999952, 49.289097491000057 ], [ -123.041320704999976, 49.28906412000007 ], [ -123.041604694999961, 49.289293999000051 ], [ -123.042151883999978, 49.289679192000079 ], [ -123.04278801699995, 49.290204110000104 ], [ -123.043410807999948, 49.290718001000101 ], [ -123.043767283999983, 49.290947598000045 ], [ -123.044056423999962, 49.291071701000071 ], [ -123.044070858999973, 49.291501427000071 ], [ -123.044078279999951, 49.291695288000078 ], [ -123.044072399999891, 49.291833185000044 ], [ -123.044282826999961, 49.291876145000039 ], [ -123.044621872999954, 49.291945373000075 ], [ -123.046345386999931, 49.292297194000092 ], [ -123.048095513999925, 49.292706202000083 ], [ -123.048695477999928, 49.292803694000057 ], [ -123.049246097999941, 49.292835789000037 ], [ -123.04928096799992, 49.292833674000107 ], [ -123.049853451999951, 49.292798720000121 ], [ -123.05013209599997, 49.292781708000078 ], [ -123.05114389499991, 49.292608516000072 ], [ -123.051615454999947, 49.292519194000121 ], [ -123.051672425999982, 49.292810925000012 ], [ -123.051713720999928, 49.293331145000145 ], [ -123.050960762999964, 49.293331480000056 ], [ -123.050961041999955, 49.293601334000051 ], [ -123.049807638999951, 49.293601838000065 ], [ -123.049743285999966, 49.293312195000112 ], [ -123.049536896999911, 49.2931953880001 ], [ -123.049275379999983, 49.293186799000082 ], [ -123.049111905999965, 49.293538598000062 ], [ -123.048397269999967, 49.293457628000063 ], [ -123.048401620999982, 49.29333258000004 ], [ -123.048072658999899, 49.293332717000112 ], [ -123.048072821999966, 49.293500516000073 ], [ -123.047809087999937, 49.293602681000046 ], [ -123.04683515499994, 49.29360307900015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.759278897136797", "sL_AssetLoss": "9430", "sL_BldgLoss": "7160", "sL_StrLoss": "3170", "sL_NStrLoss": "3990", "sL_ContLoss": "2270", "geom_point": "0101000020E61000005F27B34917C25EC0F28A33C855A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030889550999945, 49.291907815000066 ], [ -123.034668694999965, 49.291177298000065 ], [ -123.034682910999962, 49.291366703000051 ], [ -123.030871995999973, 49.292181919000043 ], [ -123.030889550999945, 49.291907815000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233139476", "BldgCostT": "150542619", "sL_LossRatio": "0.691350731130948", "sL_AssetLoss": "2928340", "sL_BldgLoss": "2024510", "sL_StrLoss": "924980", "sL_NStrLoss": "1099530", "sL_ContLoss": "903830", "geom_point": "0101000020E6100000BA3A10C4FFC25EC07D55F35E2DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046675312999923, 49.280214609000019 ], [ -123.049336818999933, 49.280222501 ], [ -123.049336558000022, 49.280710820000131 ], [ -123.049336310999948, 49.281159286000104 ], [ -123.049333441, 49.281628404000109 ], [ -123.049330807999951, 49.282066190000101 ], [ -123.049330604999952, 49.282527819000023 ], [ -123.049330420999922, 49.282980406000071 ], [ -123.049327076999973, 49.283418413000071 ], [ -123.04932347399992, 49.283887295000071 ], [ -123.046689218999987, 49.283880100000026 ], [ -123.046695140999987, 49.284336931000098 ], [ -123.046700896999965, 49.28477580600002 ], [ -123.046105448999967, 49.284775796000055 ], [ -123.04484038599999, 49.284775799000073 ], [ -123.044002803999902, 49.284775791000051 ], [ -123.04399580799999, 49.283872204000083 ], [ -123.043991692999896, 49.282966799000071 ], [ -123.043987815999955, 49.28253019400011 ], [ -123.043983629999957, 49.282057701000049 ], [ -123.044810498999965, 49.282058630000066 ], [ -123.046660807, 49.282060700000102 ], [ -123.046660085, 49.281602436000092 ], [ -123.046659414999951, 49.281154504000035 ], [ -123.046667187999944, 49.280693597000067 ], [ -123.046675312999923, 49.280214609000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202053031", "BldgCostT": "128805278", "sL_LossRatio": "0.716670517014386", "sL_AssetLoss": "2328794", "sL_BldgLoss": "1668978", "sL_StrLoss": "727628", "sL_NStrLoss": "941350", "sL_ContLoss": "659816", "geom_point": "0101000020E610000069C118B236C35EC084B56B214CA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049320714000018, 49.285244377000012 ], [ -123.049321988999964, 49.28477449800004 ], [ -123.046700896999965, 49.28477580600002 ], [ -123.046695140999987, 49.284336931000098 ], [ -123.046689218999987, 49.283880100000026 ], [ -123.04932347399992, 49.283887295000071 ], [ -123.049327076999973, 49.283418413000071 ], [ -123.049330420999922, 49.282980406000071 ], [ -123.049330604999952, 49.282527819000023 ], [ -123.049330807999951, 49.282066190000101 ], [ -123.049333441, 49.281628404000109 ], [ -123.049336310999948, 49.281159286000104 ], [ -123.051974791999925, 49.281162893000086 ], [ -123.051971399999928, 49.281636197000061 ], [ -123.051968284999958, 49.282066202000102 ], [ -123.051959605999983, 49.282526748000073 ], [ -123.051950908999942, 49.282988090000117 ], [ -123.051958262999932, 49.283426015 ], [ -123.051966093999965, 49.283894617000101 ], [ -123.051968818999981, 49.284334569000116 ], [ -123.051971580999947, 49.284780193000131 ], [ -123.051968072999969, 49.285243311000073 ], [ -123.051964713999936, 49.285689790000077 ], [ -123.049319507999911, 49.285677908000096 ], [ -123.049320714000018, 49.285244377000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218060830", "BldgCostT": "138208420", "sL_LossRatio": "0.674027243839801", "sL_AssetLoss": "2864721", "sL_BldgLoss": "1930900", "sL_StrLoss": "841260", "sL_NStrLoss": "1089640", "sL_ContLoss": "933821", "geom_point": "0101000020E610000027C86C1C73C35EC0D7E6206430A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054581774999988, 49.281166493000036 ], [ -123.056544204999938, 49.281168706000088 ], [ -123.056541520999957, 49.281642977000082 ], [ -123.056539081999944, 49.282072006000185 ], [ -123.056536616999921, 49.282524540000061 ], [ -123.056533992999974, 49.282995994 ], [ -123.05458239399999, 49.282994983000016 ], [ -123.054583201999932, 49.28345193800002 ], [ -123.054584010999974, 49.283901195000055 ], [ -123.054583799999989, 49.284324515000037 ], [ -123.054583593999951, 49.284772205000081 ], [ -123.051971580999947, 49.284780193000131 ], [ -123.051968818999981, 49.284334569000116 ], [ -123.051966093999965, 49.283894617000101 ], [ -123.051958262999932, 49.283426015 ], [ -123.051950908999942, 49.282988090000117 ], [ -123.051959605999983, 49.282526748000073 ], [ -123.051968284999958, 49.282066202000102 ], [ -123.051971399999928, 49.281636197000061 ], [ -123.051974791999925, 49.281162893000086 ], [ -123.054581774999988, 49.281166493000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148936552", "BldgCostT": "95083745", "sL_LossRatio": "0.759166271135219", "sL_AssetLoss": "1101893", "sL_BldgLoss": "836520", "sL_StrLoss": "398210", "sL_NStrLoss": "438310", "sL_ContLoss": "265373", "geom_point": "0101000020E6100000B72A046A98C35EC057E9516556A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056533992999974, 49.282995994 ], [ -123.057792808, 49.282998790000065 ], [ -123.057773745999938, 49.283450305000045 ], [ -123.057754594999977, 49.283903894000041 ], [ -123.057760828999946, 49.284349871000124 ], [ -123.057766987999969, 49.284791501000043 ], [ -123.056525306999944, 49.284779292000067 ], [ -123.055786034999983, 49.284776598000072 ], [ -123.054583593999951, 49.284772205000081 ], [ -123.054583799999989, 49.284324515000037 ], [ -123.054584010999974, 49.283901195000055 ], [ -123.054583201999932, 49.28345193800002 ], [ -123.05458239399999, 49.282994983000016 ], [ -123.056533992999974, 49.282995994 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131541583", "BldgCostT": "88243333", "sL_LossRatio": "0.750986663673943", "sL_AssetLoss": "1122723", "sL_BldgLoss": "843150", "sL_StrLoss": "392280", "sL_NStrLoss": "450870", "sL_ContLoss": "279573", "geom_point": "0101000020E61000001DC960BD78C35EC0DB4786A093A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055786034999983, 49.284776598000072 ], [ -123.056525306999944, 49.284779292000067 ], [ -123.056526571999939, 49.285268022000061 ], [ -123.056527703999933, 49.285694496000104 ], [ -123.056526196999954, 49.286185564000036 ], [ -123.056524913999937, 49.286603292000052 ], [ -123.056530699999911, 49.286728615000101 ], [ -123.054573109999964, 49.286733803000104 ], [ -123.051957209999927, 49.286736196000057 ], [ -123.051961132999935, 49.286187832000067 ], [ -123.051964713999936, 49.285689790000077 ], [ -123.051968072999969, 49.285243311000073 ], [ -123.051971580999947, 49.284780193000131 ], [ -123.054583593999951, 49.284772205000081 ], [ -123.055786034999983, 49.284776598000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230868561", "BldgCostT": "154883190", "sL_LossRatio": "0.735218836393005", "sL_AssetLoss": "3219300", "sL_BldgLoss": "2366890", "sL_StrLoss": "1062890", "sL_NStrLoss": "1304000", "sL_ContLoss": "852410", "geom_point": "0101000020E6100000E74DF32B69C35EC08927ABB7C0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.052013012, 49.277471786000071 ], [ -123.054611707999968, 49.277470590000142 ], [ -123.054607903999951, 49.277856732000025 ], [ -123.054603704000016, 49.278289190000116 ], [ -123.054600618000023, 49.278684352000042 ], [ -123.054597394999945, 49.27910238900008 ], [ -123.054594023999982, 49.279637992000083 ], [ -123.054590283999985, 49.280231798000038 ], [ -123.054586134999937, 49.280690479000071 ], [ -123.054581774999988, 49.281166493000036 ], [ -123.051974791999925, 49.281162893000086 ], [ -123.051979057999972, 49.280700711000094 ], [ -123.051983396999944, 49.280229116000072 ], [ -123.051987114999946, 49.279729288000063 ], [ -123.051987740999934, 49.279648349000055 ], [ -123.051991811999983, 49.279101493000077 ], [ -123.05199590399998, 49.278676952000048 ], [ -123.051999684999927, 49.278286599000104 ], [ -123.052006686999917, 49.277858419000019 ], [ -123.052013012, 49.277471786000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185530612", "BldgCostT": "112508610", "sL_LossRatio": "0.637466164388601", "sL_AssetLoss": "4621610", "sL_BldgLoss": "2946120", "sL_StrLoss": "1323830", "sL_NStrLoss": "1622290", "sL_ContLoss": "1675490", "geom_point": "0101000020E6100000163188BCA3C35EC0C706EB62C7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054597394999945, 49.27910238900008 ], [ -123.054600618000023, 49.278684352000042 ], [ -123.054603704000016, 49.278289190000116 ], [ -123.054607903999951, 49.277856732000025 ], [ -123.054611707999968, 49.277470590000142 ], [ -123.055818784999985, 49.27747011200011 ], [ -123.056561794999965, 49.277469794000119 ], [ -123.057248597999916, 49.27746928000002 ], [ -123.057878407999937, 49.277468813000034 ], [ -123.057873123999968, 49.277864462000075 ], [ -123.057867391999949, 49.278292599000061 ], [ -123.05786360599997, 49.278683205000107 ], [ -123.057859518999948, 49.279110301000074 ], [ -123.059794183999898, 49.279115291000039 ], [ -123.059787410999931, 49.279655489000092 ], [ -123.059778181999931, 49.280234505000109 ], [ -123.059771357999921, 49.280687988000039 ], [ -123.059764022999957, 49.281173604000124 ], [ -123.057838722000014, 49.281170704000012 ], [ -123.056544204999938, 49.281168706000088 ], [ -123.054581774999988, 49.281166493000036 ], [ -123.054586134999937, 49.280690479000071 ], [ -123.054590283999985, 49.280231798000038 ], [ -123.054594023999982, 49.279637992000083 ], [ -123.054597394999945, 49.27910238900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112526418", "BldgCostT": "70621668", "sL_LossRatio": "0.690185281368817", "sL_AssetLoss": "1682738", "sL_BldgLoss": "1161401", "sL_StrLoss": "469870", "sL_NStrLoss": "691531", "sL_ContLoss": "521337", "geom_point": "0101000020E61000005EED49DCFAC35EC0B0CD4212A8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063656212999945, 49.280239996000084 ], [ -123.063652794999882, 49.279664389000061 ], [ -123.062572004999979, 49.279663944000035 ], [ -123.061738391999967, 49.279663583000044 ], [ -123.061748086999927, 49.279119790000067 ], [ -123.059794183999898, 49.279115291000039 ], [ -123.057859518999948, 49.279110301000074 ], [ -123.05786360599997, 49.278683205000107 ], [ -123.057867391999949, 49.278292599000061 ], [ -123.057873123999968, 49.277864462000075 ], [ -123.057878407999937, 49.277468813000034 ], [ -123.059668754999961, 49.277480081000071 ], [ -123.059815294999964, 49.27748098900004 ], [ -123.061745408999954, 49.277493013000061 ], [ -123.063698914999975, 49.277503795000079 ], [ -123.065605106999968, 49.27752241000011 ], [ -123.065609125999956, 49.277977138000026 ], [ -123.065612691999931, 49.278380101000089 ], [ -123.065605261999977, 49.278858744000019 ], [ -123.06560059499999, 49.279157993000091 ], [ -123.065598886999936, 49.279314715000055 ], [ -123.065597796999924, 49.279429940000021 ], [ -123.065595503999972, 49.279672206000029 ], [ -123.06559395, 49.279776162000125 ], [ -123.065586895999971, 49.280242986000118 ], [ -123.063656212999945, 49.280239996000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262788735", "BldgCostT": "167743315", "sL_LossRatio": "0.689058316096654", "sL_AssetLoss": "4989360", "sL_BldgLoss": "3437960", "sL_StrLoss": "1517680", "sL_NStrLoss": "1920280", "sL_ContLoss": "1551400", "geom_point": "0101000020E610000019953FA52BC35EC00AEE41E7B9A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.049336558000022, 49.280710820000131 ], [ -123.049336818999933, 49.280222501 ], [ -123.046675312999923, 49.280214609000019 ], [ -123.046685962999945, 49.279623183000091 ], [ -123.046695372999977, 49.279099994000092 ], [ -123.046702760999963, 49.278660855000027 ], [ -123.046709199999938, 49.278278890000124 ], [ -123.046739415999923, 49.277859329000094 ], [ -123.046768886, 49.277449997000069 ], [ -123.04741847799994, 49.277452109000102 ], [ -123.048559581999939, 49.277455779 ], [ -123.049345085999946, 49.277458286000055 ], [ -123.052013012, 49.277471786000071 ], [ -123.052006686999917, 49.277858419000019 ], [ -123.051999684999927, 49.278286599000104 ], [ -123.05199590399998, 49.278676952000048 ], [ -123.051991811999983, 49.279101493000077 ], [ -123.051987740999934, 49.279648349000055 ], [ -123.051987114999946, 49.279729288000063 ], [ -123.051983396999944, 49.280229116000072 ], [ -123.051979057999972, 49.280700711000094 ], [ -123.051974791999925, 49.281162893000086 ], [ -123.049336310999948, 49.281159286000104 ], [ -123.049336558000022, 49.280710820000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103379249", "BldgCostT": "68879999", "sL_LossRatio": "0.690949510074343", "sL_AssetLoss": "3045360", "sL_BldgLoss": "2104190", "sL_StrLoss": "878960", "sL_NStrLoss": "1225230", "sL_ContLoss": "941170", "geom_point": "0101000020E6100000B5E4650B10C35EC0B2BA49CA65A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.044115916999885, 49.276426191000049 ], [ -123.044128017999967, 49.275372607000108 ], [ -123.044859378999945, 49.275373050000063 ], [ -123.045540678999927, 49.275373507000033 ], [ -123.046206642999962, 49.2753734550001 ], [ -123.04685299799992, 49.275373394000013 ], [ -123.04684370499993, 49.275778506000044 ], [ -123.049365198999965, 49.275802389000035 ], [ -123.05201588499996, 49.275804498000063 ], [ -123.052011032999971, 49.276212100000102 ], [ -123.052005978999944, 49.276631200000018 ], [ -123.052009452999982, 49.27704851900004 ], [ -123.052013012, 49.277471786000071 ], [ -123.049345085999946, 49.277458286000055 ], [ -123.048559581999939, 49.277455779 ], [ -123.04741847799994, 49.277452109000102 ], [ -123.046768886, 49.277449997000069 ], [ -123.044106008999933, 49.277464499000075 ], [ -123.04411079499999, 49.277042896000061 ], [ -123.044115786999981, 49.276599096000098 ], [ -123.044115916999885, 49.276426191000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114815083", "BldgCostT": "75823333", "sL_LossRatio": "0.671799676678625", "sL_AssetLoss": "6179610", "sL_BldgLoss": "4151460", "sL_StrLoss": "1612760", "sL_NStrLoss": "2538700", "sL_ContLoss": "2028150", "geom_point": "0101000020E6100000FF58A91C2AC35EC0D07355EA23A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04939860099995, 49.273269379000062 ], [ -123.052040615999942, 49.273274984000103 ], [ -123.052029292999933, 49.273720145000034 ], [ -123.052018592999943, 49.274140894000091 ], [ -123.052023000999924, 49.27455695000004 ], [ -123.052027392999932, 49.274974411000052 ], [ -123.052021581999909, 49.275393453000106 ], [ -123.05201588499996, 49.275804498000063 ], [ -123.049365198999965, 49.275802389000035 ], [ -123.04684370499993, 49.275778506000044 ], [ -123.04685299799992, 49.275373394000013 ], [ -123.046861816999979, 49.274954806000117 ], [ -123.046864600999953, 49.274550015000038 ], [ -123.046867203999952, 49.274179306000043 ], [ -123.046864064999951, 49.273722628000101 ], [ -123.04686091899994, 49.27326490400003 ], [ -123.04939860099995, 49.273269379000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122364500", "BldgCostT": "81500000", "sL_LossRatio": "0.738108074752028", "sL_AssetLoss": "1539490", "sL_BldgLoss": "1136310", "sL_StrLoss": "542470", "sL_NStrLoss": "593840", "sL_ContLoss": "403180", "geom_point": "0101000020E61000008F8F1ED8D4C25EC0CC28D877ACA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.044078291999952, 49.280206495000058 ], [ -123.044085098999986, 49.279624788000056 ], [ -123.041453791999942, 49.27961669200014 ], [ -123.041455285999945, 49.279098797000103 ], [ -123.04145614, 49.278959982000117 ], [ -123.041457833999928, 49.278681188000085 ], [ -123.041460310000019, 49.278265790000077 ], [ -123.041463115999989, 49.277853691000139 ], [ -123.041465594, 49.27749391000004 ], [ -123.041429797999982, 49.277451488000132 ], [ -123.043307632999955, 49.277460642000065 ], [ -123.044106008999933, 49.277464499000075 ], [ -123.046768886, 49.277449997000069 ], [ -123.046739415999923, 49.277859329000094 ], [ -123.046709199999938, 49.278278890000124 ], [ -123.046702760999963, 49.278660855000027 ], [ -123.046695372999977, 49.279099994000092 ], [ -123.046685962999945, 49.279623183000091 ], [ -123.046675312999923, 49.280214609000019 ], [ -123.045991086999962, 49.28021247300007 ], [ -123.044767424999918, 49.280208652000077 ], [ -123.044078291999952, 49.280206495000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158899114", "BldgCostT": "106226936", "sL_LossRatio": "0.770924206434895", "sL_AssetLoss": "926200", "sL_BldgLoss": "714030", "sL_StrLoss": "346010", "sL_NStrLoss": "368020", "sL_ContLoss": "212170", "geom_point": "0101000020E6100000BDF3EDF2A7C25EC0911D3C8F61A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043388331999935, 49.275372818000115 ], [ -123.044128017999967, 49.275372607000108 ], [ -123.044115916999885, 49.276426191000049 ], [ -123.044115786999981, 49.276599096000098 ], [ -123.04411079499999, 49.277042896000061 ], [ -123.044106008999933, 49.277464499000075 ], [ -123.043307632999955, 49.277460642000065 ], [ -123.041429797999982, 49.277451488000132 ], [ -123.04076416499997, 49.277454412000047 ], [ -123.039526782999985, 49.277459773000039 ], [ -123.038875688999909, 49.277462593000095 ], [ -123.038883802999976, 49.276432305000078 ], [ -123.038889061999967, 49.27587539400006 ], [ -123.038893791999925, 49.275371487000051 ], [ -123.039525176999945, 49.275371745000037 ], [ -123.040126405999956, 49.275372004000069 ], [ -123.040776221000016, 49.27537185400007 ], [ -123.04136598799991, 49.275371705000026 ], [ -123.042054786, 49.275372366000084 ], [ -123.042726401999943, 49.2753729880001 ], [ -123.043388331999935, 49.275372818000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167020000", "BldgCostT": "111580000", "sL_LossRatio": "0.760085030650583", "sL_AssetLoss": "2022800", "sL_BldgLoss": "1537500", "sL_StrLoss": "681750", "sL_NStrLoss": "855750", "sL_ContLoss": "485300", "geom_point": "0101000020E6100000045EEB5A54C25EC0610FD4C664A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03824658299996, 49.275373950000109 ], [ -123.038893791999925, 49.275371487000051 ], [ -123.038889061999967, 49.27587539400006 ], [ -123.038883802999976, 49.276432305000078 ], [ -123.038875688999909, 49.277462593000095 ], [ -123.038248234999969, 49.277462056000104 ], [ -123.03694218699999, 49.277460920000095 ], [ -123.036234577999934, 49.277460303000083 ], [ -123.033610688999957, 49.277445899000035 ], [ -123.033606041999931, 49.277019317000097 ], [ -123.033601690999959, 49.276619712000127 ], [ -123.0336053, 49.276209925000025 ], [ -123.033608890999972, 49.275797492000073 ], [ -123.036317415999989, 49.275798905000059 ], [ -123.036332996999988, 49.275382309000072 ], [ -123.036954301999955, 49.275379399000023 ], [ -123.037594909999939, 49.275376393000109 ], [ -123.03824658299996, 49.275373950000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116579803", "BldgCostT": "75783746", "sL_LossRatio": "0.695325178339421", "sL_AssetLoss": "2039650", "sL_BldgLoss": "1418220", "sL_StrLoss": "591030", "sL_NStrLoss": "827190", "sL_ContLoss": "621430", "geom_point": "0101000020E6100000EB1E9FB12BC25EC002603412BEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.03087877399993, 49.278258992000062 ], [ -123.030875502999947, 49.277847999000116 ], [ -123.030874223999959, 49.277686798000076 ], [ -123.030769571999954, 49.277431792000129 ], [ -123.031279604999952, 49.277429601000058 ], [ -123.031399096999962, 49.277430110000083 ], [ -123.031544188999987, 49.277430924000086 ], [ -123.031683492999917, 49.277431688000071 ], [ -123.031808392999949, 49.277433311000088 ], [ -123.032804014999954, 49.277440247000143 ], [ -123.033610688999957, 49.277445899000035 ], [ -123.036234577999934, 49.277460303000083 ], [ -123.036228316999939, 49.277836865000033 ], [ -123.036220997999962, 49.278274309000047 ], [ -123.038849200999948, 49.278265295 ], [ -123.038847086000018, 49.278672919 ], [ -123.03884500699999, 49.279084906000037 ], [ -123.036211089999966, 49.279074791000056 ], [ -123.03620410799999, 49.279636144000087 ], [ -123.036197079999937, 49.280197601000062 ], [ -123.036186083999937, 49.281163799000048 ], [ -123.032709857999976, 49.281148929000025 ], [ -123.031912998999971, 49.281145504000072 ], [ -123.031765994999958, 49.281145090000031 ], [ -123.031686018999949, 49.281144868000069 ], [ -123.031639990999949, 49.281144753000092 ], [ -123.03151838399999, 49.281144396000151 ], [ -123.03147740199995, 49.281144296000072 ], [ -123.031280995999936, 49.281143399000115 ], [ -123.030963810999964, 49.281142233000018 ], [ -123.030851962999989, 49.281141824 ], [ -123.030805248999954, 49.280695297000094 ], [ -123.030838768999942, 49.280215210000115 ], [ -123.030851298999934, 49.279636965000108 ], [ -123.030863500999942, 49.279077284000053 ], [ -123.03087877399993, 49.278258992000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269635540", "BldgCostT": "183733048", "sL_LossRatio": "0.77972485729609", "sL_AssetLoss": "2341912", "sL_BldgLoss": "1826047", "sL_StrLoss": "797020", "sL_NStrLoss": "1029027", "sL_ContLoss": "515865", "geom_point": "0101000020E6100000476E032D53C45EC080FC7CC64BA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06888984199999, 49.274860463000081 ], [ -123.069545385999959, 49.274864094000066 ], [ -123.06953261599989, 49.275761805000037 ], [ -123.069470598999914, 49.276656407000125 ], [ -123.068878798999961, 49.276649996000074 ], [ -123.06837200399994, 49.276644492000038 ], [ -123.067545604999964, 49.276651798000103 ], [ -123.065622090999966, 49.276646400000025 ], [ -123.065630494999951, 49.276178179000098 ], [ -123.065638391999983, 49.275736199000029 ], [ -123.065645611999955, 49.275348422000057 ], [ -123.065646929999957, 49.275278573000058 ], [ -123.065648983999921, 49.27516840800012 ], [ -123.065655009999915, 49.274844900000069 ], [ -123.067585082999983, 49.274853194000066 ], [ -123.06888984199999, 49.274860463000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "459617214", "BldgCostT": "295592898", "sL_LossRatio": "0.71191340530601", "sL_AssetLoss": "4325623", "sL_BldgLoss": "3079469", "sL_StrLoss": "1165870", "sL_NStrLoss": "1913599", "sL_ContLoss": "1246154", "geom_point": "0101000020E610000041F0BF95ACC45EC0EC5CDE3D3CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06953261599989, 49.275761805000037 ], [ -123.069545385999959, 49.274864094000066 ], [ -123.06888984199999, 49.274860463000081 ], [ -123.067585082999983, 49.274853194000066 ], [ -123.06759565199998, 49.274359924000116 ], [ -123.067604704999965, 49.273935 ], [ -123.068902021999989, 49.273946289000023 ], [ -123.069559025999936, 49.273951998000022 ], [ -123.070168802999916, 49.273956891000097 ], [ -123.070809090999916, 49.273957996000028 ], [ -123.071468219999986, 49.273944406000041 ], [ -123.073402892999951, 49.273987906000052 ], [ -123.074471393999943, 49.273996993000026 ], [ -123.074924285999913, 49.274003889000049 ], [ -123.075378004999962, 49.274010816000036 ], [ -123.075915600999963, 49.274019008000039 ], [ -123.077299396999976, 49.274040309000029 ], [ -123.077298580999951, 49.274452825000026 ], [ -123.077297605999888, 49.27494100400002 ], [ -123.077288101999926, 49.275855012000072 ], [ -123.077276109999943, 49.276333252000107 ], [ -123.077265422999986, 49.276759604000084 ], [ -123.075857891999931, 49.276743999000075 ], [ -123.074310196999946, 49.276726398000037 ], [ -123.074164133999957, 49.276724616000067 ], [ -123.074081584999959, 49.276723613000122 ], [ -123.07333808599995, 49.276714502000019 ], [ -123.072779600000018, 49.276701107000058 ], [ -123.071416092999939, 49.276683902000094 ], [ -123.070461714999965, 49.27667339100001 ], [ -123.069470598999914, 49.276656407000125 ], [ -123.06953261599989, 49.275761805000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269090552", "BldgCostT": "153742858", "sL_LossRatio": "0.647934302384405", "sL_AssetLoss": "2965100", "sL_BldgLoss": "1921190", "sL_StrLoss": "836030", "sL_NStrLoss": "1085160", "sL_ContLoss": "1043910", "geom_point": "0101000020E610000000C1A075E2C45EC0696AE215EFA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074771112999912, 49.311335500000041 ], [ -123.075571802999931, 49.310546590000087 ], [ -123.078651903999955, 49.311860314000057 ], [ -123.077830009999943, 49.312659501000027 ], [ -123.077025286999969, 49.313424884000078 ], [ -123.07401828, 49.312105989000024 ], [ -123.074771112999912, 49.311335500000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "759455036", "BldgCostT": "519438134", "sL_LossRatio": "0.808786407977173", "sL_AssetLoss": "4619180", "sL_BldgLoss": "3735930", "sL_StrLoss": "1675390", "sL_NStrLoss": "2060540", "sL_ContLoss": "883250", "geom_point": "0101000020E610000042D1453B15C55EC02921DDD71AA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077830009999943, 49.312659501000027 ], [ -123.078651903999955, 49.311860314000057 ], [ -123.080252660000014, 49.312524933000056 ], [ -123.080266807999948, 49.312530781000127 ], [ -123.081814678999976, 49.31317520000006 ], [ -123.080955604999986, 49.314018505000078 ], [ -123.08014748799998, 49.314795496000087 ], [ -123.077025286999969, 49.313424884000078 ], [ -123.077830009999943, 49.312659501000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188145000", "BldgCostT": "123615000", "sL_LossRatio": "0.79427347536918", "sL_AssetLoss": "1419360", "sL_BldgLoss": "1127360", "sL_StrLoss": "492310", "sL_NStrLoss": "635050", "sL_ContLoss": "292000", "geom_point": "0101000020E6100000DF2D3D584EC55EC0A74323AF39A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080955604999986, 49.314018505000078 ], [ -123.081814678999976, 49.31317520000006 ], [ -123.083365887999932, 49.313853907000059 ], [ -123.084858116999939, 49.314510201000118 ], [ -123.08400931099996, 49.315343898000123 ], [ -123.080955604999986, 49.314018505000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "630765197", "BldgCostT": "427089284", "sL_LossRatio": "0.819087576164412", "sL_AssetLoss": "3873200", "sL_BldgLoss": "3172490", "sL_StrLoss": "1392940", "sL_NStrLoss": "1779550", "sL_ContLoss": "700710", "geom_point": "0101000020E6100000FDD346753AC55EC033B14C0161A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08014748799998, 49.314795496000087 ], [ -123.080955604999986, 49.314018505000078 ], [ -123.08400931099996, 49.315343898000123 ], [ -123.083240891999964, 49.316122895000028 ], [ -123.082424313999979, 49.316904296000104 ], [ -123.079373906999948, 49.315569915000061 ], [ -123.08014748799998, 49.314795496000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142068333", "BldgCostT": "92373333", "sL_LossRatio": "0.737069183937918", "sL_AssetLoss": "1381390", "sL_BldgLoss": "1018180", "sL_StrLoss": "469430", "sL_NStrLoss": "548750", "sL_ContLoss": "363210", "geom_point": "0101000020E6100000E9F8ABD71FC55EC0D77ED70C95A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078496001, 49.316449613000074 ], [ -123.079373906999948, 49.315569915000061 ], [ -123.082424313999979, 49.316904296000104 ], [ -123.081544384000026, 49.317771301000064 ], [ -123.080781905999942, 49.318521698000076 ], [ -123.080552850999965, 49.318417865000065 ], [ -123.07767910799997, 49.317189495000093 ], [ -123.078496001, 49.316449613000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "591156000", "BldgCostT": "407205000", "sL_LossRatio": "0.844473000742825", "sL_AssetLoss": "3688620", "sL_BldgLoss": "3114940", "sL_StrLoss": "1341410", "sL_NStrLoss": "1773530", "sL_ContLoss": "573680", "geom_point": "0101000020E61000004F26F24D68C55EC00C78BA6F8CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.083240891999964, 49.316122895000028 ], [ -123.08400931099996, 49.315343898000123 ], [ -123.08587282299996, 49.316154309000069 ], [ -123.085826288999968, 49.317265394000124 ], [ -123.085796422999977, 49.317959004000024 ], [ -123.085800776999946, 49.318391507000079 ], [ -123.084963857999981, 49.318018258000109 ], [ -123.084412093999944, 49.31777219100011 ], [ -123.084287793, 49.317706632000053 ], [ -123.084156506999989, 49.317637388000051 ], [ -123.082424313999979, 49.316904296000104 ], [ -123.083240891999964, 49.316122895000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126175001", "BldgCostT": "74470001", "sL_LossRatio": "0.646409242950275", "sL_AssetLoss": "2521446", "sL_BldgLoss": "1629886", "sL_StrLoss": "727296", "sL_NStrLoss": "902590", "sL_ContLoss": "891560", "geom_point": "0101000020E610000042AAEFFCA2C55EC0344F747E86A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088405180999985, 49.319080134000082 ], [ -123.08571238899998, 49.318922296000046 ], [ -123.085618380999918, 49.31895219300003 ], [ -123.08486740499994, 49.31895170000012 ], [ -123.08426640499998, 49.318950805000071 ], [ -123.082358198999941, 49.318123942000092 ], [ -123.081544384000026, 49.317771301000064 ], [ -123.082424313999979, 49.316904296000104 ], [ -123.084156506999989, 49.317637388000051 ], [ -123.084287793, 49.317706632000053 ], [ -123.084412093999944, 49.31777219100011 ], [ -123.084963857999981, 49.318018258000109 ], [ -123.085800776999946, 49.318391507000079 ], [ -123.085796422999977, 49.317959004000024 ], [ -123.085826288999968, 49.317265394000124 ], [ -123.08587282299996, 49.316154309000069 ], [ -123.085926796999956, 49.314967805000016 ], [ -123.085936174999986, 49.31470948900003 ], [ -123.085934108999979, 49.314042092000136 ], [ -123.085830273999974, 49.313912781000042 ], [ -123.08570711599999, 49.313759393000041 ], [ -123.085662913999968, 49.313740191000065 ], [ -123.08614900799995, 49.313511987000012 ], [ -123.086169034999983, 49.313294309000149 ], [ -123.086653923999961, 49.312950594000043 ], [ -123.087207077999949, 49.312439719000018 ], [ -123.087198502999982, 49.312513311000018 ], [ -123.086884687999955, 49.312765405000142 ], [ -123.086800902999983, 49.312954794000056 ], [ -123.087448606999942, 49.313340797000066 ], [ -123.087476982999988, 49.313655597000029 ], [ -123.0900799, 49.314813391000051 ], [ -123.090463486999965, 49.314588406000112 ], [ -123.09098469199995, 49.313921914000098 ], [ -123.091258807999935, 49.312933484000041 ], [ -123.091478801999955, 49.312969089000084 ], [ -123.09153530199994, 49.313365006000055 ], [ -123.091698986999987, 49.313292401000126 ], [ -123.091776360999958, 49.313292402000066 ], [ -123.091763772999983, 49.313543009000114 ], [ -123.091761219, 49.313670392000034 ], [ -123.091689753, 49.315784200000081 ], [ -123.091666507999946, 49.316471708000101 ], [ -123.091643662999942, 49.31713341199999 ], [ -123.091631443999972, 49.317488605000094 ], [ -123.09163066, 49.317510781000124 ], [ -123.091626318999914, 49.31763663300007 ], [ -123.091620701999943, 49.317798686000103 ], [ -123.09161741699999, 49.317894186000032 ], [ -123.091611107999967, 49.318077598000087 ], [ -123.091602395999971, 49.318329543000068 ], [ -123.091596512999942, 49.318500761000081 ], [ -123.091577503999957, 49.319051494000071 ], [ -123.090128534999906, 49.319048176000095 ], [ -123.089786916999941, 49.319047413000092 ], [ -123.089248317999974, 49.319062135000138 ], [ -123.088807302999967, 49.319074198000067 ], [ -123.088461939999931, 49.318926491000077 ], [ -123.088405180999985, 49.319080134000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1231760777", "BldgCostT": "761030265", "sL_LossRatio": "0.668858796368154", "sL_AssetLoss": "54441730", "sL_BldgLoss": "36413830", "sL_StrLoss": "14582730", "sL_NStrLoss": "21831100", "sL_ContLoss": "18027900", "geom_point": "0101000020E610000083DC796632C65EC0040774ECC1A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091196790999959, 49.323187105000066 ], [ -123.09124570099999, 49.322255303000155 ], [ -123.091319988999885, 49.321224194000088 ], [ -123.09139371599997, 49.320160704000045 ], [ -123.091841591999952, 49.320211511000068 ], [ -123.091401274999967, 49.320061260000074 ], [ -123.09140215399999, 49.320047713000037 ], [ -123.091404171999926, 49.320015099000095 ], [ -123.09140611399999, 49.319984846000054 ], [ -123.091408792, 49.319942290000043 ], [ -123.091577503999957, 49.319051494000071 ], [ -123.091596512999942, 49.318500761000081 ], [ -123.091602395999971, 49.318329543000068 ], [ -123.091611107999967, 49.318077598000087 ], [ -123.09161741699999, 49.317894186000032 ], [ -123.091620701999943, 49.317798686000103 ], [ -123.091626318999914, 49.31763663300007 ], [ -123.09163066, 49.317510781000124 ], [ -123.091631443999972, 49.317488605000094 ], [ -123.091643662999942, 49.31713341199999 ], [ -123.091666507999946, 49.316471708000101 ], [ -123.091689753, 49.315784200000081 ], [ -123.091761219, 49.313670392000034 ], [ -123.091763772999983, 49.313543009000114 ], [ -123.091776360999958, 49.313292402000066 ], [ -123.09244401899997, 49.313292405000055 ], [ -123.092458503999978, 49.313696885000134 ], [ -123.092678709999987, 49.313705408000082 ], [ -123.092689990999972, 49.313282414000071 ], [ -123.093570102999976, 49.313236802000091 ], [ -123.097630408, 49.313188397000019 ], [ -123.10092439499999, 49.313248985000023 ], [ -123.100924431999957, 49.313267862000075 ], [ -123.101749937999969, 49.313267138000079 ], [ -123.101749930999972, 49.313264153000084 ], [ -123.101811797999986, 49.313265290000047 ], [ -123.101881692999925, 49.313392087000089 ], [ -123.101832817999934, 49.316539602000077 ], [ -123.101916513999967, 49.316845805000121 ], [ -123.10205470399994, 49.317025210000082 ], [ -123.102218891999939, 49.317070803000028 ], [ -123.102316323999929, 49.31706080400005 ], [ -123.102190082999968, 49.316683398000094 ], [ -123.102398677999986, 49.316435399000092 ], [ -123.102405655999959, 49.317187082 ], [ -123.102403088999921, 49.317392626000121 ], [ -123.102393790999926, 49.318129811000048 ], [ -123.102340261999984, 49.319122083000124 ], [ -123.102281797999936, 49.320206504000033 ], [ -123.102264888999969, 49.320854652000058 ], [ -123.102242514999929, 49.321714901000135 ], [ -123.102222152999929, 49.321767085000111 ], [ -123.102201494000013, 49.321820102000089 ], [ -123.10221670699994, 49.322016893000054 ], [ -123.102211290999904, 49.322528718000022 ], [ -123.102206922, 49.322944298000074 ], [ -123.102170348999962, 49.32340380500009 ], [ -123.10214219399991, 49.323757695000054 ], [ -123.10214221299999, 49.32376737200012 ], [ -123.102142412999953, 49.323863997000053 ], [ -123.101978191999976, 49.323851396000087 ], [ -123.101220001999977, 49.323590590000023 ], [ -123.100620084999932, 49.323352721000028 ], [ -123.100508624, 49.323308494000116 ], [ -123.099764504999939, 49.323285884000072 ], [ -123.094577509999922, 49.323237502000083 ], [ -123.093774492999927, 49.323233010000081 ], [ -123.093705873999937, 49.323241530000089 ], [ -123.093512377999957, 49.32326557000011 ], [ -123.093463533, 49.323271643000048 ], [ -123.093416875999978, 49.32327744700013 ], [ -123.093398819999948, 49.323279702000058 ], [ -123.093151464999934, 49.323348258000166 ], [ -123.093013804999927, 49.323386387000113 ], [ -123.092486186999935, 49.323595603000108 ], [ -123.091891222999962, 49.323909343000025 ], [ -123.091161710999984, 49.324294003000084 ], [ -123.091186257999937, 49.32354705100007 ], [ -123.09119510799998, 49.323278895000051 ], [ -123.091196790999959, 49.323187105000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4965061", "BldgCostT": "2748190", "sL_LossRatio": "0.611899563318777", "sL_AssetLoss": "73280", "sL_BldgLoss": "44840", "sL_StrLoss": "23360", "sL_NStrLoss": "21480", "sL_ContLoss": "28440", "geom_point": "0101000020E6100000EF95F5728AC55EC0216FC16BFAA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.086255659999964, 49.312722815000022 ], [ -123.086122422999949, 49.311482475000062 ], [ -123.086882021999941, 49.311829704000061 ], [ -123.08721310599999, 49.312387993000115 ], [ -123.087207077999949, 49.312439719000018 ], [ -123.086653923999961, 49.312950594000043 ], [ -123.086169034999983, 49.313294309000149 ], [ -123.086255659999964, 49.312722815000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290114624", "BldgCostT": "188296381", "sL_LossRatio": "0.77130297873115", "sL_AssetLoss": "1098790", "sL_BldgLoss": "847500", "sL_StrLoss": "375790", "sL_NStrLoss": "471710", "sL_ContLoss": "251290", "geom_point": "0101000020E61000006E4E882DFBC75EC01023A55504A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123372995999929, 49.281574004000035 ], [ -123.124983413, 49.28053610500006 ], [ -123.126037888999974, 49.281194701000068 ], [ -123.125430658999903, 49.281584222000106 ], [ -123.124968826999918, 49.281880499000124 ], [ -123.124422378999938, 49.282225303000111 ], [ -123.123838758999966, 49.281863084000065 ], [ -123.123372995999929, 49.281574004000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119123250", "BldgCostT": "76290000", "sL_LossRatio": "0.744225695620961", "sL_AssetLoss": "1118533", "sL_BldgLoss": "832441", "sL_StrLoss": "395654", "sL_NStrLoss": "436787", "sL_ContLoss": "286092", "geom_point": "0101000020E6100000427E0582E3C65EC00DF591E73C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10514440599998, 49.246059507000076 ], [ -123.105208408999985, 49.244527205000104 ], [ -123.10525579499992, 49.243371017000072 ], [ -123.104566892999927, 49.243354432000118 ], [ -123.103975097999978, 49.243340204000063 ], [ -123.103331220999948, 49.243329657000103 ], [ -123.102606110999929, 49.243317805000103 ], [ -123.102663631999945, 49.242022300000066 ], [ -123.10273901399998, 49.240528991000097 ], [ -123.103418477, 49.240531905000104 ], [ -123.10409039699995, 49.240546410000078 ], [ -123.104447246999939, 49.240554947000092 ], [ -123.104713418999921, 49.240561353000054 ], [ -123.105058961999987, 49.240569619000077 ], [ -123.105362682999953, 49.240576901000075 ], [ -123.106087889000023, 49.240618893000033 ], [ -123.106629811999966, 49.240779396000072 ], [ -123.107799295999953, 49.241834031000074 ], [ -123.109102604999961, 49.243009316000069 ], [ -123.110304814999964, 49.244041137000067 ], [ -123.110885800999966, 49.244539808000098 ], [ -123.111116097999968, 49.24470090800002 ], [ -123.111359900999972, 49.244821788000117 ], [ -123.111586795999955, 49.244927912000023 ], [ -123.11213251, 49.245073088000062 ], [ -123.112364006999954, 49.245104489 ], [ -123.112867702999949, 49.245131511000118 ], [ -123.114478323999947, 49.245149787000059 ], [ -123.115378911999983, 49.245159998000098 ], [ -123.115307486999882, 49.24609026600006 ], [ -123.115306795999985, 49.246099286000103 ], [ -123.11442523299992, 49.24608316200009 ], [ -123.112319181999951, 49.246044605000115 ], [ -123.112298965999983, 49.246511735000091 ], [ -123.112278310999898, 49.246989287000098 ], [ -123.111299093999975, 49.246946 ], [ -123.110424506999962, 49.246810885000109 ], [ -123.10976810899993, 49.246568091000057 ], [ -123.10895071, 49.246020996000055 ], [ -123.10838576899998, 49.246301946000052 ], [ -123.107876502999943, 49.246555201000106 ], [ -123.10761848099996, 49.246904107000034 ], [ -123.107392945999933, 49.246898862000087 ], [ -123.105100806999971, 49.246845599000054 ], [ -123.105122890999951, 49.246447393000054 ], [ -123.10514440599998, 49.246059507000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88194834", "BldgCostT": "56513334", "sL_LossRatio": "0.778961807782496", "sL_AssetLoss": "494263", "sL_BldgLoss": "385012", "sL_StrLoss": "213421", "sL_NStrLoss": "171591", "sL_ContLoss": "109251", "geom_point": "0101000020E61000005EA9674128C75EC080715FBDC09E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.106087889000023, 49.240618893000033 ], [ -123.105362682999953, 49.240576901000075 ], [ -123.105058961999987, 49.240569619000077 ], [ -123.104713418999921, 49.240561353000054 ], [ -123.104447246999939, 49.240554947000092 ], [ -123.104456601, 49.240186201000064 ], [ -123.104735364999939, 49.240015010000086 ], [ -123.10469760300002, 49.239183740000087 ], [ -123.104693864999916, 49.239101795000117 ], [ -123.104689889999975, 49.239015034000033 ], [ -123.104730900999954, 49.238533200000056 ], [ -123.104707699999949, 49.237848003000096 ], [ -123.104543908, 49.23772200100003 ], [ -123.104000809999917, 49.237624496000088 ], [ -123.10401109299994, 49.237305904000095 ], [ -123.105495008, 49.237333194000072 ], [ -123.106397470999923, 49.237353735000099 ], [ -123.107925903999913, 49.237388492000107 ], [ -123.107937019999895, 49.237134251000022 ], [ -123.10794485299999, 49.236954936000124 ], [ -123.107964597999967, 49.236503106000072 ], [ -123.10798382199999, 49.236082373000094 ], [ -123.108006189999983, 49.23559270800007 ], [ -123.10934849399996, 49.235644003000054 ], [ -123.109979623999919, 49.235668324000088 ], [ -123.110651086999951, 49.23569420200009 ], [ -123.111269274, 49.235708992000113 ], [ -123.111579186999933, 49.235716405000126 ], [ -123.11196372399999, 49.235648304000094 ], [ -123.111926935999975, 49.236794082000102 ], [ -123.111918295999928, 49.2370630980001 ], [ -123.112570906999963, 49.237009223000051 ], [ -123.112700795999956, 49.236998512000071 ], [ -123.11326509899996, 49.237041505000143 ], [ -123.113279679999934, 49.236771866000012 ], [ -123.113287115999967, 49.236634121000115 ], [ -123.11331030799991, 49.236205007000095 ], [ -123.115227066, 49.23627127900015 ], [ -123.115959886, 49.236296597000049 ], [ -123.115926543999933, 49.237062963000014 ], [ -123.115918418999982, 49.237249946000084 ], [ -123.115918004999926, 49.237259305000094 ], [ -123.115892103999926, 49.238051297 ], [ -123.116011605999972, 49.238448104000078 ], [ -123.116214707999958, 49.238714807000107 ], [ -123.116647309999934, 49.239110994000036 ], [ -123.117152017999942, 49.239541502000066 ], [ -123.118166974999951, 49.240477546000129 ], [ -123.118177998999982, 49.240487712000082 ], [ -123.118255088999959, 49.240638398000115 ], [ -123.118337486999934, 49.241081115000021 ], [ -123.118335928999954, 49.241099539000125 ], [ -123.118247217999965, 49.24213620200004 ], [ -123.11824263599999, 49.242160789000138 ], [ -123.118150372999978, 49.24265609600014 ], [ -123.117764985999955, 49.243224086000055 ], [ -123.117201886999936, 49.243600805 ], [ -123.11615269899994, 49.244198807000025 ], [ -123.115683380999926, 49.244614107000089 ], [ -123.115437989999961, 49.24498318900001 ], [ -123.115381842999938, 49.245151156000077 ], [ -123.115378911999983, 49.245159998000098 ], [ -123.114478323999947, 49.245149787000059 ], [ -123.112867702999949, 49.245131511000118 ], [ -123.112364006999954, 49.245104489 ], [ -123.11213251, 49.245073088000062 ], [ -123.111586795999955, 49.244927912000023 ], [ -123.111359900999972, 49.244821788000117 ], [ -123.111116097999968, 49.24470090800002 ], [ -123.110885800999966, 49.244539808000098 ], [ -123.110304814999964, 49.244041137000067 ], [ -123.109102604999961, 49.243009316000069 ], [ -123.107799295999953, 49.241834031000074 ], [ -123.106629811999966, 49.240779396000072 ], [ -123.106087889000023, 49.240618893000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106042667", "BldgCostT": "70426667", "sL_LossRatio": "0.737130332029777", "sL_AssetLoss": "1312563", "sL_BldgLoss": "967530", "sL_StrLoss": "463270", "sL_NStrLoss": "504260", "sL_ContLoss": "345033", "geom_point": "0101000020E61000005E99A6BE22C75EC02F052836B49F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10761848099996, 49.246904107000034 ], [ -123.107876502999943, 49.246555201000106 ], [ -123.10838576899998, 49.246301946000052 ], [ -123.10895071, 49.246020996000055 ], [ -123.10976810899993, 49.246568091000057 ], [ -123.110424506999962, 49.246810885000109 ], [ -123.111299093999975, 49.246946 ], [ -123.112278310999898, 49.246989287000098 ], [ -123.112298965999983, 49.246511735000091 ], [ -123.112319181999951, 49.246044605000115 ], [ -123.11442523299992, 49.24608316200009 ], [ -123.115306795999985, 49.246099286000103 ], [ -123.115272599999969, 49.247025295000114 ], [ -123.115236490999948, 49.247959325000096 ], [ -123.115298933999966, 49.248921223000124 ], [ -123.115295119999928, 49.249049014000086 ], [ -123.114706250999944, 49.249038695000053 ], [ -123.112853224999924, 49.249006198000117 ], [ -123.112150712999963, 49.24899384600004 ], [ -123.11001069299995, 49.248956204000066 ], [ -123.109958245999962, 49.248955586000086 ], [ -123.10744720000001, 49.248926181000094 ], [ -123.105005437999964, 49.248881348000076 ], [ -123.104991684999945, 49.248881089000086 ], [ -123.104993140999966, 49.248858008000049 ], [ -123.104996301999932, 49.248807297000099 ], [ -123.105010036999971, 49.248807533000104 ], [ -123.107454812999933, 49.248848101000092 ], [ -123.107475606999941, 49.248360777000023 ], [ -123.107499614999981, 49.24779898800012 ], [ -123.107523189999981, 49.247199703000057 ], [ -123.107574508999974, 49.247040616000049 ], [ -123.10761848099996, 49.246904107000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120242302", "BldgCostT": "78253745", "sL_LossRatio": "0.729587752988101", "sL_AssetLoss": "1486730", "sL_BldgLoss": "1084700", "sL_StrLoss": "494550", "sL_NStrLoss": "590150", "sL_ContLoss": "402030", "geom_point": "0101000020E6100000D2084F4BE0C65EC051C908C10DA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109958245999962, 49.248955586000086 ], [ -123.11001069299995, 49.248956204000066 ], [ -123.10998575699989, 49.249490542000053 ], [ -123.109961301999945, 49.250014184000115 ], [ -123.109935857999943, 49.250535257000088 ], [ -123.109911089999983, 49.251041513000061 ], [ -123.109891534999988, 49.251497123000028 ], [ -123.10987159599992, 49.251961910000034 ], [ -123.107302079999954, 49.25191470900009 ], [ -123.104856010999981, 49.251870705000037 ], [ -123.104881282999898, 49.251421861000068 ], [ -123.104906723999974, 49.25097039200007 ], [ -123.104922853999966, 49.250694005000113 ], [ -123.10493757299993, 49.250442172000071 ], [ -123.104968288999913, 49.249916301000091 ], [ -123.104976221999948, 49.24956979300007 ], [ -123.104980284999939, 49.249388617000101 ], [ -123.104991684999945, 49.248881089000086 ], [ -123.105005437999964, 49.248881348000076 ], [ -123.10744720000001, 49.248926181000094 ], [ -123.109958245999962, 49.248955586000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160676250", "BldgCostT": "109545000", "sL_LossRatio": "0.772047657262794", "sL_AssetLoss": "1619900", "sL_BldgLoss": "1250640", "sL_StrLoss": "561960", "sL_NStrLoss": "688680", "sL_ContLoss": "369260", "geom_point": "0101000020E6100000ACDB0B921FC95EC0223BA19D74A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139035597999978, 49.251538391000032 ], [ -123.139056089999883, 49.250841095000105 ], [ -123.139732800000019, 49.250846502000122 ], [ -123.14143911299999, 49.250860096000082 ], [ -123.142330151999957, 49.250868520000083 ], [ -123.143305785999928, 49.250876302000023 ], [ -123.144198981999978, 49.250884188000029 ], [ -123.144253936999988, 49.250884143000057 ], [ -123.144458778999976, 49.250443093000072 ], [ -123.144526920999965, 49.250254116000114 ], [ -123.144540578999965, 49.250227129000073 ], [ -123.144581406999961, 49.250083145000119 ], [ -123.144608444999932, 49.249930198000058 ], [ -123.144621651999969, 49.249750276000029 ], [ -123.144632569999928, 49.249633728000092 ], [ -123.144631300999947, 49.249580001000012 ], [ -123.146108796999982, 49.24960648900008 ], [ -123.146083732999926, 49.249678785000121 ], [ -123.146129383999906, 49.249785387000081 ], [ -123.146004806999954, 49.250280069000084 ], [ -123.145787756999965, 49.251141868000047 ], [ -123.145620219999941, 49.251529383000054 ], [ -123.145616448999945, 49.251538173000029 ], [ -123.146188014999936, 49.251445194000063 ], [ -123.14718930199993, 49.251241987000114 ], [ -123.147164354999987, 49.251290847000092 ], [ -123.147114207999962, 49.251600155000098 ], [ -123.147006043999966, 49.252193965000053 ], [ -123.14684283299999, 49.252760867000113 ], [ -123.146752058999979, 49.25329125400004 ], [ -123.14675252499994, 49.253308595000043 ], [ -123.146739795999963, 49.25332609800008 ], [ -123.146620295999966, 49.253795902000071 ], [ -123.146339291999965, 49.254233417000094 ], [ -123.146050949999932, 49.254517927000094 ], [ -123.145960590999934, 49.254607108000101 ], [ -123.145430002999916, 49.255015495000059 ], [ -123.144024083999938, 49.255607895000104 ], [ -123.143782095999967, 49.25579151200008 ], [ -123.143685202999933, 49.256026797000104 ], [ -123.143679589999962, 49.256184310000052 ], [ -123.143660035999957, 49.256687908000039 ], [ -123.143658395999964, 49.256730402000095 ], [ -123.143598777999941, 49.257140488000047 ], [ -123.141293677999911, 49.257099291000038 ], [ -123.138793889999974, 49.257053703000096 ], [ -123.138812330999954, 49.256674669000056 ], [ -123.138819806999933, 49.256521206000052 ], [ -123.138907839999916, 49.254660611000119 ], [ -123.138910306999904, 49.254608608000083 ], [ -123.138912506999958, 49.254506003000095 ], [ -123.138938386999911, 49.253151 ], [ -123.139024800999962, 49.25190578400008 ], [ -123.139035597999978, 49.251538391000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155271000", "BldgCostT": "103215000", "sL_LossRatio": "0.774940412292353", "sL_AssetLoss": "1428986", "sL_BldgLoss": "1107379", "sL_StrLoss": "512859", "sL_NStrLoss": "594520", "sL_ContLoss": "321607", "geom_point": "0101000020E61000006F2312437AC95EC05B4D3A3E98A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.148658578999971, 49.251133993000039 ], [ -123.148913963999988, 49.251131251000075 ], [ -123.149696496999979, 49.251246015000049 ], [ -123.150301864999932, 49.251497095000104 ], [ -123.150789576999955, 49.251831798000076 ], [ -123.150854408999962, 49.251899089000041 ], [ -123.151101400999934, 49.252305584000077 ], [ -123.151078026999969, 49.252773467000075 ], [ -123.151077287999954, 49.252787701000074 ], [ -123.150932405999981, 49.253021692000047 ], [ -123.150930114999966, 49.253032123000011 ], [ -123.150858012999947, 49.253362010000096 ], [ -123.150859289999957, 49.25347525200003 ], [ -123.150860877999889, 49.25361163500002 ], [ -123.150871015999925, 49.254491893000122 ], [ -123.15085592599992, 49.254924112000012 ], [ -123.15084041599998, 49.255370191000033 ], [ -123.15082362899993, 49.255850326000044 ], [ -123.150807917999941, 49.256301610000115 ], [ -123.150786836999941, 49.256812660000037 ], [ -123.150768691999986, 49.257253510000062 ], [ -123.148371007999955, 49.257221690000094 ], [ -123.145979481999987, 49.257179192000052 ], [ -123.143598777999941, 49.257140488000047 ], [ -123.143658395999964, 49.256730402000095 ], [ -123.143660035999957, 49.256687908000039 ], [ -123.143679589999962, 49.256184310000052 ], [ -123.143685202999933, 49.256026797000104 ], [ -123.143782095999967, 49.25579151200008 ], [ -123.144024083999938, 49.255607895000104 ], [ -123.145430002999916, 49.255015495000059 ], [ -123.145960590999934, 49.254607108000101 ], [ -123.146050949999932, 49.254517927000094 ], [ -123.146339291999965, 49.254233417000094 ], [ -123.146620295999966, 49.253795902000071 ], [ -123.146739795999963, 49.25332609800008 ], [ -123.14675252499994, 49.253308595000043 ], [ -123.146752058999979, 49.25329125400004 ], [ -123.14684283299999, 49.252760867000113 ], [ -123.147006043999966, 49.252193965000053 ], [ -123.147114207999962, 49.251600155000098 ], [ -123.147164354999987, 49.251290847000092 ], [ -123.14718930199993, 49.251241987000114 ], [ -123.147916328999912, 49.25114500800003 ], [ -123.148658578999971, 49.251133993000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115642168", "BldgCostT": "73856668", "sL_LossRatio": "0.709414352840909", "sL_AssetLoss": "1762341", "sL_BldgLoss": "1250230", "sL_StrLoss": "580190", "sL_NStrLoss": "670040", "sL_ContLoss": "512111", "geom_point": "0101000020E6100000E3770E23CCC95EC02F12E2E376A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150768691999986, 49.257253510000062 ], [ -123.150786836999941, 49.256812660000037 ], [ -123.150807917999941, 49.256301610000115 ], [ -123.15082362899993, 49.255850326000044 ], [ -123.15084041599998, 49.255370191000033 ], [ -123.15085592599992, 49.254924112000012 ], [ -123.150871015999925, 49.254491893000122 ], [ -123.150860877999889, 49.25361163500002 ], [ -123.150859289999957, 49.25347525200003 ], [ -123.150858012999947, 49.253362010000096 ], [ -123.150930114999966, 49.253032123000011 ], [ -123.150932405999981, 49.253021692000047 ], [ -123.151077287999954, 49.252787701000074 ], [ -123.151078026999969, 49.252773467000075 ], [ -123.151101400999934, 49.252305584000077 ], [ -123.150854408999962, 49.251899089000041 ], [ -123.151154962999954, 49.251380762000018 ], [ -123.15138432199997, 49.250985305000029 ], [ -123.15211029299995, 49.251351324000069 ], [ -123.152535179000012, 49.251522834000085 ], [ -123.152610681999988, 49.251538740000143 ], [ -123.153034163999976, 49.251627888000023 ], [ -123.153037794999946, 49.251411806000085 ], [ -123.153075967999911, 49.250453538000087 ], [ -123.153107235999954, 49.24972025800006 ], [ -123.153199260999926, 49.24971998400013 ], [ -123.153775515999925, 49.249728899000097 ], [ -123.15433189, 49.249725500000075 ], [ -123.154281395999959, 49.249877296000179 ], [ -123.154403272999943, 49.250466015000022 ], [ -123.15432766899994, 49.250578424000032 ], [ -123.154309075999947, 49.25092654500007 ], [ -123.154337565999953, 49.251021023000121 ], [ -123.154450960999952, 49.251142844000071 ], [ -123.154602372999932, 49.251407149000073 ], [ -123.154460284, 49.25143942600004 ], [ -123.153765704999969, 49.25150127200007 ], [ -123.153125826999926, 49.251432131000065 ], [ -123.15312222599999, 49.251647326000068 ], [ -123.153788324999951, 49.251691924000049 ], [ -123.154398789999973, 49.251658475000092 ], [ -123.154741899999948, 49.251583813000124 ], [ -123.154948605999934, 49.251538788000119 ], [ -123.155773089, 49.251240800000076 ], [ -123.155754619999982, 49.251721306000057 ], [ -123.155738171999957, 49.252183540000026 ], [ -123.155722279999935, 49.252629301000056 ], [ -123.155704892999921, 49.253100735000032 ], [ -123.155689009999975, 49.253530885000082 ], [ -123.155669478999954, 49.25401739800003 ], [ -123.15565259899995, 49.25443789300008 ], [ -123.155634616, 49.254907788000033 ], [ -123.155618302999969, 49.255334095000066 ], [ -123.153667980999955, 49.255305320000069 ], [ -123.152983607999914, 49.255295203000109 ], [ -123.15294240899999, 49.256212012000091 ], [ -123.152935898999914, 49.256353253 ], [ -123.15289260599999, 49.257292504000098 ], [ -123.15246489099998, 49.25727851400012 ], [ -123.151734667999946, 49.257267738000074 ], [ -123.150768691999986, 49.257253510000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158527521", "BldgCostT": "102679157", "sL_LossRatio": "0.729709860945544", "sL_AssetLoss": "1829571", "sL_BldgLoss": "1335056", "sL_StrLoss": "591627", "sL_NStrLoss": "743429", "sL_ContLoss": "494515", "geom_point": "0101000020E61000003E4DC9E6A8C95EC087BF58A515A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150683295999926, 49.259520167000083 ], [ -123.150692593999977, 49.259118709000084 ], [ -123.148334100999989, 49.259096885000055 ], [ -123.148345818999971, 49.25859717600013 ], [ -123.148356898, 49.258122987000043 ], [ -123.148363987999943, 49.25767050200006 ], [ -123.148371007999955, 49.257221690000094 ], [ -123.150768691999986, 49.257253510000062 ], [ -123.151734667999946, 49.257267738000074 ], [ -123.15246489099998, 49.25727851400012 ], [ -123.15289260599999, 49.257292504000098 ], [ -123.15307640499995, 49.258215195000126 ], [ -123.153095886999935, 49.258680204000015 ], [ -123.153115405999969, 49.259145695000079 ], [ -123.15310653399996, 49.259580971000041 ], [ -123.153096976999933, 49.260049602000031 ], [ -123.15247175599994, 49.260041700000066 ], [ -123.150671701999926, 49.260018909000102 ], [ -123.150683295999926, 49.259520167000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "306071903", "BldgCostT": "201739982", "sL_LossRatio": "0.705009945928302", "sL_AssetLoss": "2119963", "sL_BldgLoss": "1494595", "sL_StrLoss": "656700", "sL_NStrLoss": "837895", "sL_ContLoss": "625368", "geom_point": "0101000020E6100000E85A7CE971C95EC0D69862712CA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145937106999924, 49.259051598000035 ], [ -123.145955525999966, 49.258554482000065 ], [ -123.145972506999925, 49.258096787000071 ], [ -123.145975944999975, 49.257646234000021 ], [ -123.145979481999987, 49.257179192000052 ], [ -123.148371007999955, 49.257221690000094 ], [ -123.148363987999943, 49.25767050200006 ], [ -123.148356898, 49.258122987000043 ], [ -123.148345818999971, 49.25859717600013 ], [ -123.148334100999989, 49.259096885000055 ], [ -123.150692593999977, 49.259118709000084 ], [ -123.150683295999926, 49.259520167000083 ], [ -123.150671701999926, 49.260018909000102 ], [ -123.148287283999935, 49.259969396000024 ], [ -123.148269925999941, 49.260441473000057 ], [ -123.148250203999936, 49.260976285 ], [ -123.145866214999913, 49.260941189000121 ], [ -123.145886204999925, 49.260399206000038 ], [ -123.145903112999974, 49.259940600000093 ], [ -123.145921349, 49.259463355000022 ], [ -123.145937106999924, 49.259051598000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "415045613", "BldgCostT": "267976935", "sL_LossRatio": "0.729194935206417", "sL_AssetLoss": "2871272", "sL_BldgLoss": "2093717", "sL_StrLoss": "993820", "sL_NStrLoss": "1099897", "sL_ContLoss": "777555", "geom_point": "0101000020E61000001844194778C95EC0C19FE1CD9AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14582819599994, 49.261827407000048 ], [ -123.145848180999963, 49.261361770000093 ], [ -123.145866214999913, 49.260941189000121 ], [ -123.148250203999936, 49.260976285 ], [ -123.148232098999955, 49.261413090000069 ], [ -123.14821329099999, 49.261866188000035 ], [ -123.150603979999985, 49.261904117000064 ], [ -123.150574929999891, 49.262824806000047 ], [ -123.150574414999952, 49.262840188000062 ], [ -123.150560581999926, 49.263262962000077 ], [ -123.15054359599992, 49.263782302000081 ], [ -123.148141914999911, 49.263742291000014 ], [ -123.145756781999964, 49.263701793000088 ], [ -123.145778056, 49.263188002000042 ], [ -123.145796195999964, 49.262749791000019 ], [ -123.145811894999923, 49.262297325000112 ], [ -123.14582819599994, 49.261827407000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "478856684", "BldgCostT": "324661896", "sL_LossRatio": "0.794782279954043", "sL_AssetLoss": "3385770", "sL_BldgLoss": "2690950", "sL_StrLoss": "1174060", "sL_NStrLoss": "1516890", "sL_ContLoss": "694820", "geom_point": "0101000020E61000003EDE9A2A8EC95EC0EFCA99B3DFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.148141914999911, 49.263742291000014 ], [ -123.15054359599992, 49.263782302000081 ], [ -123.150496392999941, 49.264706092000033 ], [ -123.150486943, 49.26511598400009 ], [ -123.150477399999914, 49.265529788000016 ], [ -123.148074917999949, 49.265503297000087 ], [ -123.14808560099999, 49.265074193000032 ], [ -123.148095606999973, 49.264674212000102 ], [ -123.148141914999911, 49.263742291000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149646000", "BldgCostT": "97050000", "sL_LossRatio": "0.717733612168444", "sL_AssetLoss": "3323350", "sL_BldgLoss": "2385280", "sL_StrLoss": "1003480", "sL_NStrLoss": "1381800", "sL_ContLoss": "938070", "geom_point": "0101000020E610000081FC85811BC75EC07547284B679C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114585303999945, 49.226008909000051 ], [ -123.112951211999984, 49.225952492000069 ], [ -123.111719790000024, 49.225924064000054 ], [ -123.110734715999939, 49.225901285000127 ], [ -123.108393093999922, 49.225810583000047 ], [ -123.106550609999957, 49.225762509000035 ], [ -123.105898915999916, 49.225745512000067 ], [ -123.105906771999983, 49.225288775000159 ], [ -123.105915597999953, 49.224773907000049 ], [ -123.105927738999981, 49.224496226000042 ], [ -123.105935218999946, 49.224325472 ], [ -123.10595779499999, 49.223809402000029 ], [ -123.103862004999939, 49.223785604000113 ], [ -123.103875067999979, 49.223374583000094 ], [ -123.103890620999934, 49.222886413000012 ], [ -123.10391638899992, 49.221988104000062 ], [ -123.104563974999934, 49.221996065000042 ], [ -123.105443393999963, 49.222006901000043 ], [ -123.106021712999947, 49.222013984000057 ], [ -123.10603949399993, 49.221807110000036 ], [ -123.106096500999939, 49.221144092000031 ], [ -123.106077791999937, 49.220231991000048 ], [ -123.106118816999967, 49.219353901000062 ], [ -123.106116455999953, 49.218740468000114 ], [ -123.10611579099999, 49.218566507000098 ], [ -123.106118041999977, 49.218236545000153 ], [ -123.106121500999961, 49.217726191000132 ], [ -123.108075678999981, 49.21779505000007 ], [ -123.11098776299994, 49.217908069000025 ], [ -123.113338395999961, 49.217790890000039 ], [ -123.113339202999938, 49.217790899000072 ], [ -123.114583787999962, 49.217796965000076 ], [ -123.115952302999972, 49.217803611000107 ], [ -123.116171977999954, 49.217804682000079 ], [ -123.116188874999978, 49.217804767000104 ], [ -123.116710191999928, 49.217807307000065 ], [ -123.11670966, 49.217821752000084 ], [ -123.116664078999975, 49.219058104000091 ], [ -123.116563685999949, 49.221714595000016 ], [ -123.116499600999958, 49.22349029100009 ], [ -123.116487396999943, 49.223827598000099 ], [ -123.116486215999942, 49.223848716000141 ], [ -123.116444120999958, 49.224590301000013 ], [ -123.11643450199989, 49.225186390000097 ], [ -123.116380619999944, 49.226054006 ], [ -123.11637949, 49.226072190000103 ], [ -123.114585303999945, 49.226008909000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123372969", "BldgCostT": "77430412", "sL_LossRatio": "0.680801716388799", "sL_AssetLoss": "2358440", "sL_BldgLoss": "1605630", "sL_StrLoss": "689320", "sL_NStrLoss": "916310", "sL_ContLoss": "752810", "geom_point": "0101000020E6100000084777AD90C75EC0CAAFDD45319C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116563685999949, 49.221714595000016 ], [ -123.116664078999975, 49.219058104000091 ], [ -123.116834160999929, 49.219059438000066 ], [ -123.116904198999947, 49.219059998 ], [ -123.117178907999985, 49.219062979000114 ], [ -123.120405679, 49.219097796000042 ], [ -123.120422079999969, 49.219415574000024 ], [ -123.120426896999959, 49.219509101000021 ], [ -123.120507992999975, 49.219883291 ], [ -123.120505286999958, 49.220014800000058 ], [ -123.120416307999946, 49.220144793000081 ], [ -123.120244386999971, 49.220194295000056 ], [ -123.119414603999957, 49.220295484000076 ], [ -123.119247386999973, 49.220381100000026 ], [ -123.11912819599992, 49.220487795000111 ], [ -123.118947876999925, 49.22108752500008 ], [ -123.11888257699998, 49.221304605000043 ], [ -123.118877120999969, 49.221381959000084 ], [ -123.118849422, 49.221773899000048 ], [ -123.118262404999925, 49.221767200000095 ], [ -123.117599779000031, 49.22174538399999 ], [ -123.11703817099999, 49.221726887000031 ], [ -123.116882335999946, 49.221721751000082 ], [ -123.116807682999962, 49.221719307000079 ], [ -123.116563685999949, 49.221714595000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56219916", "BldgCostT": "36621666", "sL_LossRatio": "0.715845918959033", "sL_AssetLoss": "751916", "sL_BldgLoss": "538256", "sL_StrLoss": "246860", "sL_NStrLoss": "291396", "sL_ContLoss": "213660", "geom_point": "0101000020E6100000818F35E1A6C75EC0B6412FD4C89B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116738112999926, 49.216933296000086 ], [ -123.116775026999932, 49.21592762300002 ], [ -123.116778340999971, 49.215837666000105 ], [ -123.116809117999949, 49.214998498000064 ], [ -123.116841024999957, 49.214108401000054 ], [ -123.11684130899998, 49.214099320000066 ], [ -123.116872617999888, 49.213201299000083 ], [ -123.117041408999981, 49.213204682 ], [ -123.11714681499997, 49.213206809000042 ], [ -123.117111898999937, 49.214121987000112 ], [ -123.117811183999919, 49.214140713000049 ], [ -123.120125972999958, 49.214202601000089 ], [ -123.120123916999916, 49.214634187000094 ], [ -123.120121701999906, 49.215090589000049 ], [ -123.120103633, 49.215553307000064 ], [ -123.120086686999969, 49.215987812000087 ], [ -123.120065216999961, 49.216506694000074 ], [ -123.120045426999951, 49.21698480200007 ], [ -123.123173216999987, 49.217018444000068 ], [ -123.12388558899994, 49.217026109000045 ], [ -123.123868389000037, 49.219142499000071 ], [ -123.122252902999904, 49.219121887000092 ], [ -123.120680361999959, 49.219101389000045 ], [ -123.120405679, 49.219097796000042 ], [ -123.117178907999985, 49.219062979000114 ], [ -123.116904198999947, 49.219059998 ], [ -123.116834160999929, 49.219059438000066 ], [ -123.116664078999975, 49.219058104000091 ], [ -123.11670966, 49.217821752000084 ], [ -123.116710191999928, 49.217807307000065 ], [ -123.116737807999968, 49.216942297000031 ], [ -123.116738112999926, 49.216933296000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161154144", "BldgCostT": "106571523", "sL_LossRatio": "0.734841260043201", "sL_AssetLoss": "1206911", "sL_BldgLoss": "886888", "sL_StrLoss": "430810", "sL_NStrLoss": "456078", "sL_ContLoss": "320023", "geom_point": "0101000020E61000005D26050ECFC75EC01E83E36C999B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123221253999944, 49.214256315000021 ], [ -123.123987703999973, 49.214269586000043 ], [ -123.123974697999984, 49.214634102000083 ], [ -123.123953501999949, 49.215154186000127 ], [ -123.123937585999968, 49.215521299000073 ], [ -123.123915210999911, 49.216061192000026 ], [ -123.12388558899994, 49.217026109000045 ], [ -123.123173216999987, 49.217018444000068 ], [ -123.120045426999951, 49.21698480200007 ], [ -123.120065216999961, 49.216506694000074 ], [ -123.120086686999969, 49.215987812000087 ], [ -123.120103633, 49.215553307000064 ], [ -123.120121701999906, 49.215090589000049 ], [ -123.120123916999916, 49.214634187000094 ], [ -123.120125972999958, 49.214202601000089 ], [ -123.123221253999944, 49.214256315000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115114811", "BldgCostT": "75478190", "sL_LossRatio": "0.712005500052768", "sL_AssetLoss": "1639257", "sL_BldgLoss": "1167160", "sL_StrLoss": "561000", "sL_NStrLoss": "606160", "sL_ContLoss": "472097", "geom_point": "0101000020E6100000C27FA955EAC75EC09F7F5051549B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123974697999984, 49.214634102000083 ], [ -123.123987703999973, 49.214269586000043 ], [ -123.123221253999944, 49.214256315000021 ], [ -123.120125972999958, 49.214202601000089 ], [ -123.120148254999975, 49.213727444000078 ], [ -123.120168691999979, 49.213292097000107 ], [ -123.12018410599994, 49.212809405000016 ], [ -123.120197886999918, 49.212378609000069 ], [ -123.120854736999988, 49.2123537370001 ], [ -123.121761898999949, 49.212319400000084 ], [ -123.123340147999969, 49.212346743000069 ], [ -123.124064795999985, 49.212359289000098 ], [ -123.124044026999968, 49.212857436000036 ], [ -123.124042300999989, 49.21289918900009 ], [ -123.124659429999923, 49.21290542900006 ], [ -123.125030052999989, 49.21290918300005 ], [ -123.125944482999941, 49.212918398000113 ], [ -123.126636183999906, 49.212929270000082 ], [ -123.127349727999956, 49.212940500000052 ], [ -123.127332478999946, 49.213348712000091 ], [ -123.127314509999948, 49.213775492000096 ], [ -123.127294828999965, 49.214239299000049 ], [ -123.127275981999958, 49.214684295000026 ], [ -123.127275590999943, 49.214693297000096 ], [ -123.124626531999979, 49.214645796000077 ], [ -123.123974697999984, 49.214634102000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216329834", "BldgCostT": "142618334", "sL_LossRatio": "0.77113136840853", "sL_AssetLoss": "1344920", "sL_BldgLoss": "1037110", "sL_StrLoss": "578190", "sL_NStrLoss": "458920", "sL_ContLoss": "307810", "geom_point": "0101000020E6100000FE0E654520C85EC015D508BBB09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129313270999987, 49.212965274000055 ], [ -123.130098505999968, 49.212983101000084 ], [ -123.130076063999951, 49.213426217000055 ], [ -123.130023713999933, 49.214459403000049 ], [ -123.12999036399999, 49.21474693400009 ], [ -123.129914980999914, 49.215396902000109 ], [ -123.129715504, 49.216116697000153 ], [ -123.129641873999972, 49.2162982850001 ], [ -123.129417495999988, 49.216851911000049 ], [ -123.129250091999921, 49.217118586000055 ], [ -123.129032707999954, 49.217647331000087 ], [ -123.12890278199994, 49.217963303000104 ], [ -123.128809398999948, 49.218185997000027 ], [ -123.128688581999981, 49.218674605000089 ], [ -123.128556881999884, 49.219207102000034 ], [ -123.128282188999961, 49.219203360000094 ], [ -123.1261228, 49.21917380900004 ], [ -123.123868389000037, 49.219142499000071 ], [ -123.12388558899994, 49.217026109000045 ], [ -123.123915210999911, 49.216061192000026 ], [ -123.123937585999968, 49.215521299000073 ], [ -123.123953501999949, 49.215154186000127 ], [ -123.123974697999984, 49.214634102000083 ], [ -123.124626531999979, 49.214645796000077 ], [ -123.127275590999943, 49.214693297000096 ], [ -123.127275981999958, 49.214684295000026 ], [ -123.127294828999965, 49.214239299000049 ], [ -123.127314509999948, 49.213775492000096 ], [ -123.127332478999946, 49.213348712000091 ], [ -123.127349727999956, 49.212940500000052 ], [ -123.128092007999967, 49.212946689000098 ], [ -123.128728114999888, 49.212951993000026 ], [ -123.129313270999987, 49.212965274000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117304197", "BldgCostT": "76220269", "sL_LossRatio": "0.758256487021888", "sL_AssetLoss": "983348", "sL_BldgLoss": "745630", "sL_StrLoss": "348140", "sL_NStrLoss": "397490", "sL_ContLoss": "237718", "geom_point": "0101000020E61000001DE71489EEC75EC05377B85F369C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128282188999961, 49.219203360000094 ], [ -123.128556881999884, 49.219207102000034 ], [ -123.128528615999969, 49.220507102000127 ], [ -123.12850912, 49.221533502000021 ], [ -123.127703665, 49.221519284000117 ], [ -123.126906293999951, 49.221505200000074 ], [ -123.126070065999954, 49.221486330000126 ], [ -123.125356204999932, 49.221470193000123 ], [ -123.124544793, 49.221464513000043 ], [ -123.123750978999965, 49.221458897000076 ], [ -123.123046679999931, 49.221463219000029 ], [ -123.122515306999986, 49.221466496000033 ], [ -123.121127104999943, 49.221674410000098 ], [ -123.12059098, 49.221754697000094 ], [ -123.120114528999977, 49.22177980000005 ], [ -123.118849422, 49.221773899000048 ], [ -123.118877120999969, 49.221381959000084 ], [ -123.11888257699998, 49.221304605000043 ], [ -123.118947876999925, 49.22108752500008 ], [ -123.11912819599992, 49.220487795000111 ], [ -123.119247386999973, 49.220381100000026 ], [ -123.119414603999957, 49.220295484000076 ], [ -123.120244386999971, 49.220194295000056 ], [ -123.120416307999946, 49.220144793000081 ], [ -123.120505286999958, 49.220014800000058 ], [ -123.120507992999975, 49.219883291 ], [ -123.120426896999959, 49.219509101000021 ], [ -123.120422079999969, 49.219415574000024 ], [ -123.120405679, 49.219097796000042 ], [ -123.120680361999959, 49.219101389000045 ], [ -123.122252902999904, 49.219121887000092 ], [ -123.123868389000037, 49.219142499000071 ], [ -123.1261228, 49.21917380900004 ], [ -123.128282188999961, 49.219203360000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94068332", "BldgCostT": "62193332", "sL_LossRatio": "0.762698308242131", "sL_AssetLoss": "987730", "sL_BldgLoss": "753340", "sL_StrLoss": "384810", "sL_NStrLoss": "368530", "sL_ContLoss": "234390", "geom_point": "0101000020E6100000DE78DA8E67C85EC0947BA2678A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132173725999948, 49.213014003000119 ], [ -123.132860600999919, 49.213031396000055 ], [ -123.13284765399996, 49.21346839400011 ], [ -123.132794803999957, 49.215254587000054 ], [ -123.132776232, 49.215735585000118 ], [ -123.132736612999963, 49.216761072000075 ], [ -123.132719195999968, 49.217211893000083 ], [ -123.132027842999932, 49.217200272000085 ], [ -123.131341428999974, 49.217188696000058 ], [ -123.130680026999968, 49.217166535000068 ], [ -123.129250091999921, 49.217118586000055 ], [ -123.129417495999988, 49.216851911000049 ], [ -123.129641873999972, 49.2162982850001 ], [ -123.129715504, 49.216116697000153 ], [ -123.129914980999914, 49.215396902000109 ], [ -123.12999036399999, 49.21474693400009 ], [ -123.130023713999933, 49.214459403000049 ], [ -123.130076063999951, 49.213426217000055 ], [ -123.130098505999968, 49.212983101000084 ], [ -123.130785207999978, 49.212989457000035 ], [ -123.131446721999978, 49.212995602000071 ], [ -123.132173725999948, 49.213014003000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67760166", "BldgCostT": "46521666", "sL_LossRatio": "0.765666116534662", "sL_AssetLoss": "850099", "sL_BldgLoss": "650892", "sL_StrLoss": "309876", "sL_NStrLoss": "341016", "sL_ContLoss": "199207", "geom_point": "0101000020E6100000B3649F1176C85EC03B90508EDD9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129032707999954, 49.217647331000087 ], [ -123.129250091999921, 49.217118586000055 ], [ -123.130680026999968, 49.217166535000068 ], [ -123.131341428999974, 49.217188696000058 ], [ -123.132027842999932, 49.217200272000085 ], [ -123.132719195999968, 49.217211893000083 ], [ -123.132736612999963, 49.216761072000075 ], [ -123.132776232, 49.215735585000118 ], [ -123.132794803999957, 49.215254587000054 ], [ -123.133462, 49.215429412000098 ], [ -123.134149305999969, 49.215609490000062 ], [ -123.134867548999921, 49.21581079500001 ], [ -123.135502392999953, 49.215988707000051 ], [ -123.135488631999948, 49.216523709000072 ], [ -123.135481012999918, 49.216820781000095 ], [ -123.135469014999956, 49.217286802000103 ], [ -123.134071399999954, 49.21724960500012 ], [ -123.134072198999917, 49.217407082000122 ], [ -123.134074134999949, 49.217793867000076 ], [ -123.134076578999938, 49.21827850100005 ], [ -123.134059324999939, 49.218747704000023 ], [ -123.134040109999916, 49.219269304000115 ], [ -123.130444240999964, 49.219228546000068 ], [ -123.129331787999931, 49.219215910000102 ], [ -123.128556881999884, 49.219207102000034 ], [ -123.128688581999981, 49.218674605000089 ], [ -123.128809398999948, 49.218185997000027 ], [ -123.12890278199994, 49.217963303000104 ], [ -123.129032707999954, 49.217647331000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114361809", "BldgCostT": "74493643", "sL_LossRatio": "0.730087536749439", "sL_AssetLoss": "1269067", "sL_BldgLoss": "926530", "sL_StrLoss": "457740", "sL_NStrLoss": "468790", "sL_ContLoss": "342537", "geom_point": "0101000020E610000043A11B50A5C85EC0857B97186C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136908579999911, 49.213102097000068 ], [ -123.137651699999978, 49.213113697000068 ], [ -123.137643002999937, 49.213516671000022 ], [ -123.137610976999923, 49.214998897000093 ], [ -123.136886152999978, 49.214988421000037 ], [ -123.136269979999938, 49.214979492000104 ], [ -123.135550093999925, 49.214970308000026 ], [ -123.135502392999953, 49.215988707000051 ], [ -123.134867548999921, 49.21581079500001 ], [ -123.134149305999969, 49.215609490000062 ], [ -123.133462, 49.215429412000098 ], [ -123.132794803999957, 49.215254587000054 ], [ -123.13284765399996, 49.21346839400011 ], [ -123.132860600999919, 49.213031396000055 ], [ -123.133490418999898, 49.213041557000039 ], [ -123.134238416999949, 49.213053601000141 ], [ -123.134945819999984, 49.213067716000118 ], [ -123.13559119, 49.213080604000041 ], [ -123.136287691999954, 49.213091011000067 ], [ -123.136908579999911, 49.213102097000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92960001", "BldgCostT": "61955001", "sL_LossRatio": "0.761706117439034", "sL_AssetLoss": "1028159", "sL_BldgLoss": "783155", "sL_StrLoss": "383324", "sL_NStrLoss": "399831", "sL_ContLoss": "245004", "geom_point": "0101000020E6100000711A3FE0C3C85EC07535D483DD9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134072198999917, 49.217407082000122 ], [ -123.134071399999954, 49.21724960500012 ], [ -123.135469014999956, 49.217286802000103 ], [ -123.135481012999918, 49.216820781000095 ], [ -123.135488631999948, 49.216523709000072 ], [ -123.135502392999953, 49.215988707000051 ], [ -123.135550093999925, 49.214970308000026 ], [ -123.136269979999938, 49.214979492000104 ], [ -123.136886152999978, 49.214988421000037 ], [ -123.137610976999923, 49.214998897000093 ], [ -123.137557600999969, 49.216576585000048 ], [ -123.13753802, 49.217086953000027 ], [ -123.137528201999956, 49.217343299000071 ], [ -123.137825484999965, 49.217351192000095 ], [ -123.139185995999966, 49.21738819800003 ], [ -123.139422994, 49.217329588000077 ], [ -123.13948736699993, 49.217294229000117 ], [ -123.139654512999968, 49.217202402000069 ], [ -123.140174972999972, 49.217357249000038 ], [ -123.140216503999952, 49.217369600000033 ], [ -123.140182215999943, 49.218372203000044 ], [ -123.140180212999937, 49.218516203000078 ], [ -123.140155865999986, 49.21891156000008 ], [ -123.14012995, 49.219331908000072 ], [ -123.139424908999942, 49.219329185000028 ], [ -123.137746603999972, 49.219322695000088 ], [ -123.13700840599995, 49.219312073000033 ], [ -123.134040109999916, 49.219269304000115 ], [ -123.134059324999939, 49.218747704000023 ], [ -123.134076578999938, 49.21827850100005 ], [ -123.134074134999949, 49.217793867000076 ], [ -123.134072198999917, 49.217407082000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103467624", "BldgCostT": "65936381", "sL_LossRatio": "0.68741065830721", "sL_AssetLoss": "1595000", "sL_BldgLoss": "1096420", "sL_StrLoss": "481290", "sL_NStrLoss": "615130", "sL_ContLoss": "498580", "geom_point": "0101000020E6100000891B546EE4C85EC0F4BBD9B48C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139185995999966, 49.21738819800003 ], [ -123.137825484999965, 49.217351192000095 ], [ -123.137528201999956, 49.217343299000071 ], [ -123.13753802, 49.217086953000027 ], [ -123.137557600999969, 49.216576585000048 ], [ -123.137610976999923, 49.214998897000093 ], [ -123.137643002999937, 49.213516671000022 ], [ -123.137651699999978, 49.213113697000068 ], [ -123.138363625999943, 49.213124713000077 ], [ -123.139029501999943, 49.213134995000075 ], [ -123.139640567999976, 49.213139709000117 ], [ -123.140369612999933, 49.213145288000135 ], [ -123.140362684, 49.213604148000059 ], [ -123.140360701999967, 49.213735102000044 ], [ -123.140355502, 49.213997998000089 ], [ -123.140304193999967, 49.214942510000064 ], [ -123.140298299, 49.215037796000075 ], [ -123.140271518999967, 49.215919893000027 ], [ -123.140243991999938, 49.21681088800009 ], [ -123.140216503999952, 49.217369600000033 ], [ -123.140174972999972, 49.217357249000038 ], [ -123.139654512999968, 49.217202402000069 ], [ -123.13948736699993, 49.217294229000117 ], [ -123.139422994, 49.217329588000077 ], [ -123.139185995999966, 49.21738819800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215387323", "BldgCostT": "139532902", "sL_LossRatio": "0.711660506255249", "sL_AssetLoss": "2481436", "sL_BldgLoss": "1765940", "sL_StrLoss": "798620", "sL_NStrLoss": "967320", "sL_ContLoss": "715496", "geom_point": "0101000020E610000099E2F43FCAC85EC0816186E7219B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139757409999987, 49.210875188000095 ], [ -123.140448292999963, 49.210886414000065 ], [ -123.14043211699996, 49.211372403000105 ], [ -123.140400988999914, 49.212256191000073 ], [ -123.140369612999933, 49.213145288000135 ], [ -123.139640567999976, 49.213139709000117 ], [ -123.139029501999943, 49.213134995000075 ], [ -123.138363625999943, 49.213124713000077 ], [ -123.137651699999978, 49.213113697000068 ], [ -123.136908579999911, 49.213102097000068 ], [ -123.136287691999954, 49.213091011000067 ], [ -123.13559119, 49.213080604000041 ], [ -123.134945819999984, 49.213067716000118 ], [ -123.134238416999949, 49.213053601000141 ], [ -123.134309630999979, 49.210978233000048 ], [ -123.134315809, 49.210798305000083 ], [ -123.134993315999964, 49.210806007000073 ], [ -123.135680202999936, 49.210813797000043 ], [ -123.136324908999981, 49.210821770000031 ], [ -123.137007505, 49.210830180000073 ], [ -123.137736902999961, 49.210839696000093 ], [ -123.138439139999889, 49.21085246400007 ], [ -123.139134998999921, 49.210865104000071 ], [ -123.139757409999987, 49.210875188000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261973916", "BldgCostT": "170051666", "sL_LossRatio": "0.722793868653529", "sL_AssetLoss": "2356546", "sL_BldgLoss": "1703297", "sL_StrLoss": "768910", "sL_NStrLoss": "934387", "sL_ContLoss": "653249", "geom_point": "0101000020E61000007ED777B0CBC85EC07EA9D898D79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139877442999989, 49.208565697000068 ], [ -123.140533991999988, 49.208534912000061 ], [ -123.140462921999969, 49.210514805000109 ], [ -123.140448292999963, 49.210886414000065 ], [ -123.139757409999987, 49.210875188000095 ], [ -123.139134998999921, 49.210865104000071 ], [ -123.138439139999889, 49.21085246400007 ], [ -123.137736902999961, 49.210839696000093 ], [ -123.137007505, 49.210830180000073 ], [ -123.136324908999981, 49.210821770000031 ], [ -123.135680202999936, 49.210813797000043 ], [ -123.134993315999964, 49.210806007000073 ], [ -123.134315809, 49.210798305000083 ], [ -123.134370213999915, 49.208960911000062 ], [ -123.134382905999956, 49.208531908000083 ], [ -123.134595395999952, 49.208535701000102 ], [ -123.135801520999962, 49.208557896000073 ], [ -123.136123599999948, 49.208563693000023 ], [ -123.136798235999947, 49.208576139000051 ], [ -123.137121393000015, 49.208582108000044 ], [ -123.137644912999917, 49.208591510000083 ], [ -123.137836811999946, 49.20859569800011 ], [ -123.138515353999964, 49.208596350000043 ], [ -123.13853801799992, 49.208596360000058 ], [ -123.139210186999961, 49.208596998000075 ], [ -123.139822774999942, 49.208568255000095 ], [ -123.139877442999989, 49.208565697000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "317028228", "BldgCostT": "215569857", "sL_LossRatio": "0.776786121681678", "sL_AssetLoss": "2191620", "sL_BldgLoss": "1702420", "sL_StrLoss": "695890", "sL_NStrLoss": "1006530", "sL_ContLoss": "489200", "geom_point": "0101000020E61000006043AA07D0C85EC086C30C6C999A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138511268999977, 49.207037453000048 ], [ -123.139264393999909, 49.207049107000017 ], [ -123.139248058999925, 49.2075156860001 ], [ -123.139223551999947, 49.208215718000112 ], [ -123.139210186999961, 49.208596998000075 ], [ -123.13853801799992, 49.208596360000058 ], [ -123.138515353999964, 49.208596350000043 ], [ -123.137836811999946, 49.20859569800011 ], [ -123.137644912999917, 49.208591510000083 ], [ -123.137121393000015, 49.208582108000044 ], [ -123.136798235999947, 49.208576139000051 ], [ -123.136123599999948, 49.208563693000023 ], [ -123.13614126099999, 49.208198912000071 ], [ -123.136175102999943, 49.207501310000104 ], [ -123.136199270999953, 49.20700189800008 ], [ -123.137713994999956, 49.20702509500007 ], [ -123.138511268999977, 49.207037453000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164800114", "BldgCostT": "110606936", "sL_LossRatio": "0.760534699135318", "sL_AssetLoss": "1296430", "sL_BldgLoss": "985980", "sL_StrLoss": "517860", "sL_NStrLoss": "468120", "sL_ContLoss": "310450", "geom_point": "0101000020E6100000185AE7297CC85EC0DFA71DDD0C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133290283999955, 49.208515407000085 ], [ -123.134382905999956, 49.208531908000083 ], [ -123.134370213999915, 49.208960911000062 ], [ -123.134315809, 49.210798305000083 ], [ -123.134309630999979, 49.210978233000048 ], [ -123.134238416999949, 49.213053601000141 ], [ -123.133490418999898, 49.213041557000039 ], [ -123.132860600999919, 49.213031396000055 ], [ -123.132173725999948, 49.213014003000119 ], [ -123.131446721999978, 49.212995602000071 ], [ -123.130785207999978, 49.212989457000035 ], [ -123.130098505999968, 49.212983101000084 ], [ -123.130188917999973, 49.210743414000049 ], [ -123.130901796000018, 49.210753466 ], [ -123.131555787, 49.210762704000039 ], [ -123.13227463799997, 49.210765402000042 ], [ -123.132935909999929, 49.21076790500004 ], [ -123.132994920999948, 49.208953124000047 ], [ -123.133009282, 49.208511496000064 ], [ -123.133290283999955, 49.208515407000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "386215872", "BldgCostT": "268006380", "sL_LossRatio": "0.846109599680659", "sL_AssetLoss": "1846301", "sL_BldgLoss": "1562173", "sL_StrLoss": "752810", "sL_NStrLoss": "809363", "sL_ContLoss": "284128", "geom_point": "0101000020E6100000D65DFA136CC85EC0E4014D00D59A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132420159999967, 49.208503004000129 ], [ -123.133009282, 49.208511496000064 ], [ -123.132994920999948, 49.208953124000047 ], [ -123.132935909999929, 49.21076790500004 ], [ -123.13227463799997, 49.210765402000042 ], [ -123.131555787, 49.210762704000039 ], [ -123.130901796000018, 49.210753466 ], [ -123.130188917999973, 49.210743414000049 ], [ -123.130257773, 49.208473450000064 ], [ -123.130951136999926, 49.208482603000057 ], [ -123.130978593999913, 49.208482976 ], [ -123.131606790999939, 49.208491303000109 ], [ -123.132420159999967, 49.208503004000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192091499", "BldgCostT": "132524999", "sL_LossRatio": "0.785986811116345", "sL_AssetLoss": "1273800", "sL_BldgLoss": "1001190", "sL_StrLoss": "485480", "sL_NStrLoss": "515710", "sL_ContLoss": "272610", "geom_point": "0101000020E610000095EDB6EA3EC85EC072C1C6B3D39A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129522817999927, 49.208461876000044 ], [ -123.130257773, 49.208473450000064 ], [ -123.130188917999973, 49.210743414000049 ], [ -123.129392395999915, 49.210724255000066 ], [ -123.128784388999975, 49.21070960900007 ], [ -123.128156641999908, 49.210698965000113 ], [ -123.127395801999967, 49.210686086000088 ], [ -123.127511914999971, 49.20843270400006 ], [ -123.128218543999935, 49.208442533000024 ], [ -123.128855398999946, 49.208451399000126 ], [ -123.129481690999967, 49.208461223000036 ], [ -123.129522817999927, 49.208461876000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84623416", "BldgCostT": "57361666", "sL_LossRatio": "0.760891136647354", "sL_AssetLoss": "937230", "sL_BldgLoss": "713130", "sL_StrLoss": "370940", "sL_NStrLoss": "342190", "sL_ContLoss": "224100", "geom_point": "0101000020E6100000BF72BD6D26C85EC05B15768B1F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129392395999915, 49.210724255000066 ], [ -123.130188917999973, 49.210743414000049 ], [ -123.130098505999968, 49.212983101000084 ], [ -123.129313270999987, 49.212965274000055 ], [ -123.128728114999888, 49.212951993000026 ], [ -123.128092007999967, 49.212946689000098 ], [ -123.127349727999956, 49.212940500000052 ], [ -123.126636183999906, 49.212929270000082 ], [ -123.125944482999941, 49.212918398000113 ], [ -123.125030052999989, 49.21290918300005 ], [ -123.124659429999923, 49.21290542900006 ], [ -123.124042300999989, 49.21289918900009 ], [ -123.124044026999968, 49.212857436000036 ], [ -123.124064795999985, 49.212359289000098 ], [ -123.124104791999912, 49.211381212000063 ], [ -123.125997214999927, 49.211400986000122 ], [ -123.126010195999982, 49.211019358000073 ], [ -123.126022318, 49.210662994000074 ], [ -123.126687799999956, 49.21067418300003 ], [ -123.127395801999967, 49.210686086000088 ], [ -123.128156641999908, 49.210698965000113 ], [ -123.128784388999975, 49.21070960900007 ], [ -123.129392395999915, 49.210724255000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "358169194", "BldgCostT": "245690721", "sL_LossRatio": "0.780352734653574", "sL_AssetLoss": "3645800", "sL_BldgLoss": "2845010", "sL_StrLoss": "1387720", "sL_NStrLoss": "1457290", "sL_ContLoss": "800790", "geom_point": "0101000020E61000008BE1A073ADC65EC084B5E7E8279C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103941689999957, 49.221097893000106 ], [ -123.103969000999939, 49.2201987 ], [ -123.103326343999967, 49.220183596000055 ], [ -123.1025029799999, 49.220164257000079 ], [ -123.101824200999943, 49.220148296000019 ], [ -123.101856, 49.219308693000094 ], [ -123.101887899999937, 49.218467309000026 ], [ -123.102550027999911, 49.218485098000038 ], [ -123.104050005999966, 49.218525381000035 ], [ -123.105460898999951, 49.21855346500012 ], [ -123.10611579099999, 49.218566507000098 ], [ -123.106116455999953, 49.218740468000114 ], [ -123.106118816999967, 49.219353901000062 ], [ -123.106077791999937, 49.220231991000048 ], [ -123.106096500999939, 49.221144092000031 ], [ -123.10603949399993, 49.221807110000036 ], [ -123.106021712999947, 49.222013984000057 ], [ -123.105443393999963, 49.222006901000043 ], [ -123.104563974999934, 49.221996065000042 ], [ -123.10391638899992, 49.221988104000062 ], [ -123.103941689999957, 49.221097893000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154426917", "BldgCostT": "100871667", "sL_LossRatio": "0.71571966636419", "sL_AssetLoss": "1608940", "sL_BldgLoss": "1151550", "sL_StrLoss": "548680", "sL_NStrLoss": "602870", "sL_ContLoss": "457390", "geom_point": "0101000020E6100000D547E88087C65EC04D446C6E549C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101717715999982, 49.222843411000035 ], [ -123.101750404999976, 49.221946107000107 ], [ -123.101102586999929, 49.221933747000058 ], [ -123.099669311999889, 49.221906402000045 ], [ -123.099681812999947, 49.221471308000048 ], [ -123.099695007999983, 49.221012587000132 ], [ -123.099709896999954, 49.220589691 ], [ -123.099727108999971, 49.220102682000046 ], [ -123.101156210999946, 49.22013377000011 ], [ -123.101824200999943, 49.220148296000019 ], [ -123.1025029799999, 49.220164257000079 ], [ -123.103326343999967, 49.220183596000055 ], [ -123.103969000999939, 49.2201987 ], [ -123.103941689999957, 49.221097893000106 ], [ -123.10391638899992, 49.221988104000062 ], [ -123.103890620999934, 49.222886413000012 ], [ -123.10323501299996, 49.222873438000093 ], [ -123.102410950999982, 49.222857124000022 ], [ -123.101717715999982, 49.222843411000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240093115", "BldgCostT": "160277893", "sL_LossRatio": "0.735534680039554", "sL_AssetLoss": "1415800", "sL_BldgLoss": "1041370", "sL_StrLoss": "528600", "sL_NStrLoss": "512770", "sL_ContLoss": "374430", "geom_point": "0101000020E6100000C0BDDF266BC45EC0EAF541D8A19C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069133598999983, 49.221841691000044 ], [ -123.071905621, 49.22174320199999 ], [ -123.071890717999935, 49.222040739000086 ], [ -123.071826287999968, 49.223326505000024 ], [ -123.071775493999965, 49.224819899000046 ], [ -123.071761894999966, 49.22521918700005 ], [ -123.069937405999951, 49.225200206000075 ], [ -123.069052517, 49.225192400000054 ], [ -123.068421285999975, 49.225188698000053 ], [ -123.067091781999935, 49.225178701000068 ], [ -123.065763600999944, 49.225169592000086 ], [ -123.06580600299999, 49.224282489000068 ], [ -123.065807502999959, 49.224041102000058 ], [ -123.065811889999964, 49.223428710000107 ], [ -123.0658191099999, 49.223140579000102 ], [ -123.065831402999947, 49.222620306000053 ], [ -123.066469454999961, 49.22262730900011 ], [ -123.069100084999945, 49.222656094000072 ], [ -123.069116404999974, 49.222259626000032 ], [ -123.069133598999983, 49.221841691000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "300182300", "BldgCostT": "203359217", "sL_LossRatio": "0.848085744282307", "sL_AssetLoss": "1491598", "sL_BldgLoss": "1265003", "sL_StrLoss": "644440", "sL_NStrLoss": "620563", "sL_ContLoss": "226595", "geom_point": "0101000020E61000009F20A0B165C45EC0DFF01E14529C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065870180999937, 49.220344555000082 ], [ -123.065870286999953, 49.220267505000074 ], [ -123.066601720999969, 49.220335107000096 ], [ -123.067197427999957, 49.220334200000146 ], [ -123.068454714999987, 49.220334192000067 ], [ -123.06919218799996, 49.220327197000067 ], [ -123.070135186999948, 49.21999969600008 ], [ -123.070413314999954, 49.219941507000037 ], [ -123.071969891, 49.219961295000104 ], [ -123.071952491999966, 49.220368903000058 ], [ -123.071905621, 49.22174320199999 ], [ -123.069133598999983, 49.221841691000044 ], [ -123.069116404999974, 49.222259626000032 ], [ -123.069100084999945, 49.222656094000072 ], [ -123.066469454999961, 49.22262730900011 ], [ -123.065831402999947, 49.222620306000053 ], [ -123.06584221599999, 49.222231402000077 ], [ -123.065854397999956, 49.221778678000135 ], [ -123.065868492, 49.221272789000125 ], [ -123.065870180999937, 49.220344555000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80629498", "BldgCostT": "51959998", "sL_LossRatio": "0.693710537181456", "sL_AssetLoss": "1077755", "sL_BldgLoss": "747650", "sL_StrLoss": "350650", "sL_NStrLoss": "397000", "sL_ContLoss": "330105", "geom_point": "0101000020E6100000E9C1F6F61BC45EC0AC023951609C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065176745999921, 49.220260566000022 ], [ -123.065870286999953, 49.220267505000074 ], [ -123.065870180999937, 49.220344555000082 ], [ -123.065868492, 49.221272789000125 ], [ -123.065854397999956, 49.221778678000135 ], [ -123.06584221599999, 49.222231402000077 ], [ -123.065831402999947, 49.222620306000053 ], [ -123.0658191099999, 49.223140579000102 ], [ -123.065096594999957, 49.223131515000034 ], [ -123.063187853999963, 49.223107425000094 ], [ -123.062494509999979, 49.223098691000061 ], [ -123.062536584999961, 49.222195498000112 ], [ -123.062583380999925, 49.221237402000042 ], [ -123.062629231999949, 49.220316249000113 ], [ -123.062634015999933, 49.220220806000071 ], [ -123.064567214999968, 49.22025449100002 ], [ -123.06515701499994, 49.220260384000042 ], [ -123.065176745999921, 49.220260566000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142794083", "BldgCostT": "97088333", "sL_LossRatio": "0.802386652913287", "sL_AssetLoss": "1056710", "sL_BldgLoss": "847890", "sL_StrLoss": "424540", "sL_NStrLoss": "423350", "sL_ContLoss": "208820", "geom_point": "0101000020E6100000748B968FE6C35EC0DD668DEE5E9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061921251999948, 49.220217447000024 ], [ -123.062634015999933, 49.220220806000071 ], [ -123.062629231999949, 49.220316249000113 ], [ -123.062583380999925, 49.221237402000042 ], [ -123.062536584999961, 49.222195498000112 ], [ -123.062494509999979, 49.223098691000061 ], [ -123.061828554999934, 49.223089816000012 ], [ -123.059850639999965, 49.223063448000126 ], [ -123.059194807999987, 49.223054689000065 ], [ -123.059199247999956, 49.223011163000095 ], [ -123.059248592999978, 49.222529204000047 ], [ -123.059335290999954, 49.222157710000033 ], [ -123.059343585999926, 49.221987675000072 ], [ -123.059371705999979, 49.221409200000096 ], [ -123.059371091999978, 49.221202904000116 ], [ -123.059363843999904, 49.220437953000101 ], [ -123.059361612999979, 49.220203687000058 ], [ -123.060039177999926, 49.220207772000045 ], [ -123.060678712999973, 49.220211601000059 ], [ -123.061358014999939, 49.220214808000023 ], [ -123.061921251999948, 49.220217447000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57314552", "BldgCostT": "35348745", "sL_LossRatio": "0.681968171755566", "sL_AssetLoss": "837935", "sL_BldgLoss": "571445", "sL_StrLoss": "260600", "sL_NStrLoss": "310845", "sL_ContLoss": "266490", "geom_point": "0101000020E6100000E004116FFEC35EC04A3ED941E39C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065045050999942, 49.225157846000059 ], [ -123.065763600999944, 49.225169592000086 ], [ -123.06574220499999, 49.225589137000114 ], [ -123.065706388999928, 49.226292191000013 ], [ -123.065019035999967, 49.226285324000088 ], [ -123.062297390999973, 49.226258010000045 ], [ -123.059771844999887, 49.226243081000057 ], [ -123.059134396000019, 49.226239300000024 ], [ -123.059142790999928, 49.225781888000057 ], [ -123.059158196999931, 49.225040016000086 ], [ -123.059799342999924, 49.225054798000073 ], [ -123.061679521999963, 49.225098184000096 ], [ -123.062365585999942, 49.225113999000044 ], [ -123.06301195199994, 49.22512457300008 ], [ -123.065045050999942, 49.225157846000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182438251", "BldgCostT": "122010001", "sL_LossRatio": "0.732319549830917", "sL_AssetLoss": "1446923", "sL_BldgLoss": "1059610", "sL_StrLoss": "537650", "sL_NStrLoss": "521960", "sL_ContLoss": "387313", "geom_point": "0101000020E6100000AA01A5FCFFC35EC0625F8972AF9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065096594999957, 49.223131515000034 ], [ -123.0658191099999, 49.223140579000102 ], [ -123.065811889999964, 49.223428710000107 ], [ -123.065807502999959, 49.224041102000058 ], [ -123.06580600299999, 49.224282489000068 ], [ -123.065763600999944, 49.225169592000086 ], [ -123.065045050999942, 49.225157846000059 ], [ -123.06301195199994, 49.22512457300008 ], [ -123.062365585999942, 49.225113999000044 ], [ -123.061679521999963, 49.225098184000096 ], [ -123.059799342999924, 49.225054798000073 ], [ -123.059158196999931, 49.225040016000086 ], [ -123.059158336999957, 49.225030961000073 ], [ -123.059175582999941, 49.223964003000084 ], [ -123.059194807999987, 49.223054689000065 ], [ -123.059850639999965, 49.223063448000126 ], [ -123.061828554999934, 49.223089816000012 ], [ -123.062494509999979, 49.223098691000061 ], [ -123.063187853999963, 49.223107425000094 ], [ -123.065096594999957, 49.223131515000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150671833", "BldgCostT": "88993333", "sL_LossRatio": "0.656362830334265", "sL_AssetLoss": "1608333", "sL_BldgLoss": "1055650", "sL_StrLoss": "414820", "sL_NStrLoss": "640830", "sL_ContLoss": "552683", "geom_point": "0101000020E6100000586794B235C45EC0E3B8A682029D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.067091781999935, 49.225178701000068 ], [ -123.068421285999975, 49.225188698000053 ], [ -123.068409399999936, 49.225632647000118 ], [ -123.068355501999989, 49.227644397000077 ], [ -123.067643241999974, 49.227634215000073 ], [ -123.067033301999956, 49.227625492000136 ], [ -123.066324759999972, 49.227622045000061 ], [ -123.06582431, 49.22761958899999 ], [ -123.065659708999974, 49.227639498000038 ], [ -123.065474588999948, 49.227679496000079 ], [ -123.064980434999981, 49.227673027000051 ], [ -123.062288304, 49.227637807000093 ], [ -123.062309512999931, 49.227151005000088 ], [ -123.062297390999973, 49.226258010000045 ], [ -123.065019035999967, 49.226285324000088 ], [ -123.065706388999928, 49.226292191000013 ], [ -123.06574220499999, 49.225589137000114 ], [ -123.065763600999944, 49.225169592000086 ], [ -123.067091781999935, 49.225178701000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82572833", "BldgCostT": "56003333", "sL_LossRatio": "0.777467073406934", "sL_AssetLoss": "826080", "sL_BldgLoss": "642250", "sL_StrLoss": "341750", "sL_NStrLoss": "300500", "sL_ContLoss": "183830", "geom_point": "0101000020E6100000A3C7E7FCF1C35EC07A90E8AF219D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0590801929999, 49.22757190400003 ], [ -123.059090878999939, 49.227078594 ], [ -123.059134396000019, 49.226239300000024 ], [ -123.059771844999887, 49.226243081000057 ], [ -123.062297390999973, 49.226258010000045 ], [ -123.062309512999931, 49.227151005000088 ], [ -123.062288304, 49.227637807000093 ], [ -123.064980434999981, 49.227673027000051 ], [ -123.065474588999948, 49.227679496000079 ], [ -123.065659708999974, 49.227639498000038 ], [ -123.065613590999973, 49.228564317000128 ], [ -123.064953806999966, 49.228556860000033 ], [ -123.059733466999944, 49.228497895000011 ], [ -123.059063195999968, 49.228490306000069 ], [ -123.0590801929999, 49.22757190400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161556916", "BldgCostT": "110971666", "sL_LossRatio": "0.824372018956185", "sL_AssetLoss": "1306170", "sL_BldgLoss": "1076770", "sL_StrLoss": "544340", "sL_NStrLoss": "532430", "sL_ContLoss": "229400", "geom_point": "0101000020E6100000CF592C6600C45EC0AFDC4DE85C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059898293999979, 49.229864781000046 ], [ -123.05991761199999, 49.229414383000126 ], [ -123.059711097, 49.229412529000129 ], [ -123.059693349999975, 49.229412379000046 ], [ -123.059077893999969, 49.229406808000086 ], [ -123.059070963999901, 49.228974483000073 ], [ -123.059063195999968, 49.228490306000069 ], [ -123.059733466999944, 49.228497895000011 ], [ -123.064953806999966, 49.228556860000033 ], [ -123.065613590999973, 49.228564317000128 ], [ -123.065585584999937, 49.229464295000085 ], [ -123.065570079999944, 49.230258810000102 ], [ -123.065567802999965, 49.230375508000066 ], [ -123.064901470999985, 49.230365024000086 ], [ -123.0620499139999, 49.230320198000108 ], [ -123.059880100999976, 49.23028898900008 ], [ -123.059898293999979, 49.229864781000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241615666", "BldgCostT": "148500681", "sL_LossRatio": "0.670234301020991", "sL_AssetLoss": "2714030", "sL_BldgLoss": "1819036", "sL_StrLoss": "774387", "sL_NStrLoss": "1044649", "sL_ContLoss": "894994", "geom_point": "0101000020E6100000524BEFF21FC45EC0E5CE86DBA59D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.062096785999969, 49.232490129000098 ], [ -123.062081798999984, 49.23205150900003 ], [ -123.062056958999946, 49.231617125000113 ], [ -123.062032915999922, 49.231197094000066 ], [ -123.062041468999922, 49.230754210000072 ], [ -123.0620499139999, 49.230320198000108 ], [ -123.064901470999985, 49.230365024000086 ], [ -123.065567802999965, 49.230375508000066 ], [ -123.065566392, 49.230505108000088 ], [ -123.066260020999977, 49.230507030000076 ], [ -123.066967898999962, 49.230509007000087 ], [ -123.066915225999949, 49.2325371290001 ], [ -123.068687076999964, 49.232568191000077 ], [ -123.068685666999912, 49.232633925000137 ], [ -123.066916874999933, 49.232620041000089 ], [ -123.066858550999953, 49.232624668 ], [ -123.066803992999937, 49.232628999000021 ], [ -123.06622436699999, 49.232675 ], [ -123.066181432999969, 49.23267841200007 ], [ -123.065511836999917, 49.232802513000109 ], [ -123.065498296999962, 49.232804304000069 ], [ -123.064742014999979, 49.232905894000098 ], [ -123.06410611499993, 49.232929990000081 ], [ -123.062123478999965, 49.232911829000102 ], [ -123.062109701999987, 49.23291169 ], [ -123.062109557999946, 49.232902179000028 ], [ -123.06210828399999, 49.232825992000137 ], [ -123.062096785999969, 49.232490129000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149246469", "BldgCostT": "98430412", "sL_LossRatio": "0.757903913092162", "sL_AssetLoss": "1455703", "sL_BldgLoss": "1103283", "sL_StrLoss": "505170", "sL_NStrLoss": "598113", "sL_ContLoss": "352420", "geom_point": "0101000020E6100000C2C63856D4C35EC06370DF939C9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057865595999957, 49.232831101000066 ], [ -123.057906596999928, 49.230801445000054 ], [ -123.05792642699997, 49.229821018000081 ], [ -123.057934998999883, 49.229396393000059 ], [ -123.059077893999969, 49.229406808000086 ], [ -123.059693349999975, 49.229412379000046 ], [ -123.059711097, 49.229412529000129 ], [ -123.05991761199999, 49.229414383000126 ], [ -123.059898293999979, 49.229864781000046 ], [ -123.059880100999976, 49.23028898900008 ], [ -123.0620499139999, 49.230320198000108 ], [ -123.062041468999922, 49.230754210000072 ], [ -123.062032915999922, 49.231197094000066 ], [ -123.062056958999946, 49.231617125000113 ], [ -123.062081798999984, 49.23205150900003 ], [ -123.062096785999969, 49.232490129000098 ], [ -123.06210828399999, 49.232825992000137 ], [ -123.062109557999946, 49.232902179000028 ], [ -123.062109701999987, 49.23291169 ], [ -123.06123780199998, 49.232913993000054 ], [ -123.061117815999921, 49.23285669400007 ], [ -123.060451993999934, 49.232855696000072 ], [ -123.058867698999919, 49.232833208000109 ], [ -123.057865595999957, 49.232831101000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67026135", "BldgCostT": "44467078", "sL_LossRatio": "0.759943211508191", "sL_AssetLoss": "621957", "sL_BldgLoss": "472652", "sL_StrLoss": "253520", "sL_NStrLoss": "219132", "sL_ContLoss": "149305", "geom_point": "0101000020E61000000FDA8A81DEC35EC094C76857009E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058837067999946, 49.233372939000084 ], [ -123.058867698999919, 49.232833208000109 ], [ -123.060451993999934, 49.232855696000072 ], [ -123.061117815999921, 49.23285669400007 ], [ -123.06123780199998, 49.232913993000054 ], [ -123.062109701999987, 49.23291169 ], [ -123.06211372199999, 49.233398715000092 ], [ -123.062117891999975, 49.233909999000083 ], [ -123.062116004999965, 49.234406263000047 ], [ -123.062114081999965, 49.234902597000016 ], [ -123.062111219999935, 49.235413777000076 ], [ -123.062108503999951, 49.235903192000137 ], [ -123.061417955999943, 49.235899343000021 ], [ -123.059467312999971, 49.235888432000181 ], [ -123.058781507999939, 49.235884597000087 ], [ -123.058790635, 49.23538858300001 ], [ -123.058800074999937, 49.23487619600013 ], [ -123.058804206, 49.234380940000058 ], [ -123.058808403999961, 49.23387828600012 ], [ -123.058837067999946, 49.233372939000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92990167", "BldgCostT": "61716667", "sL_LossRatio": "0.721255756632289", "sL_AssetLoss": "1541700", "sL_BldgLoss": "1111960", "sL_StrLoss": "507970", "sL_NStrLoss": "603990", "sL_ContLoss": "429740", "geom_point": "0101000020E6100000FC0F1237A1C35EC04C5136FEA79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05548071599992, 49.23281279600009 ], [ -123.05523329899998, 49.232556509000069 ], [ -123.055220282999983, 49.231787797000102 ], [ -123.055203197999958, 49.230867603000071 ], [ -123.055152009999958, 49.229941990000029 ], [ -123.055147868999953, 49.229928282000046 ], [ -123.055059092999969, 49.229632195000107 ], [ -123.054920205999963, 49.22937618800011 ], [ -123.055833619999987, 49.229380680000105 ], [ -123.056528711999974, 49.229384108 ], [ -123.057934998999883, 49.229396393000059 ], [ -123.05792642699997, 49.229821018000081 ], [ -123.057906596999928, 49.230801445000054 ], [ -123.057865595999957, 49.232831101000066 ], [ -123.058867698999919, 49.232833208000109 ], [ -123.058837067999946, 49.233372939000084 ], [ -123.058808403999961, 49.23387828600012 ], [ -123.055528194999965, 49.23385910800004 ], [ -123.055506237999964, 49.233374940000033 ], [ -123.05548071599992, 49.23281279600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165188167", "BldgCostT": "110091667", "sL_LossRatio": "0.722079163814553", "sL_AssetLoss": "3681480", "sL_BldgLoss": "2658320", "sL_StrLoss": "1130140", "sL_NStrLoss": "1528180", "sL_ContLoss": "1023160", "geom_point": "0101000020E6100000BF14AADDA7C35EC09C62693B019D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05468560599995, 49.225933201000032 ], [ -123.054726997999978, 49.224804704000078 ], [ -123.056138991999916, 49.224813507000093 ], [ -123.057416616999944, 49.22486190300009 ], [ -123.057671411999976, 49.224891410000062 ], [ -123.057683613, 49.22441501100014 ], [ -123.057719750999965, 49.22300282800007 ], [ -123.057731909999944, 49.22252840000013 ], [ -123.059248592999978, 49.222529204000047 ], [ -123.059199247999956, 49.223011163000095 ], [ -123.059194807999987, 49.223054689000065 ], [ -123.059175582999941, 49.223964003000084 ], [ -123.059158336999957, 49.225030961000073 ], [ -123.059158196999931, 49.225040016000086 ], [ -123.059142790999928, 49.225781888000057 ], [ -123.059134396000019, 49.226239300000024 ], [ -123.059090878999939, 49.227078594 ], [ -123.0590801929999, 49.22757190400003 ], [ -123.059063195999968, 49.228490306000069 ], [ -123.059070963999901, 49.228974483000073 ], [ -123.059077893999969, 49.229406808000086 ], [ -123.057934998999883, 49.229396393000059 ], [ -123.056528711999974, 49.229384108 ], [ -123.055833619999987, 49.229380680000105 ], [ -123.054920205999963, 49.22937618800011 ], [ -123.054728048999934, 49.228925417000013 ], [ -123.054683596999936, 49.228821192000041 ], [ -123.054655897999908, 49.228457412000097 ], [ -123.054650061999922, 49.228023320000098 ], [ -123.054643898999984, 49.227565183000067 ], [ -123.054654100999969, 49.227168568000067 ], [ -123.054664492999947, 49.226764104000033 ], [ -123.054674345999942, 49.226377054000103 ], [ -123.05468560599995, 49.225933201000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114996147", "BldgCostT": "68007510", "sL_LossRatio": "0.654952185390884", "sL_AssetLoss": "1616347", "sL_BldgLoss": "1058630", "sL_StrLoss": "520350", "sL_NStrLoss": "538280", "sL_ContLoss": "557717", "geom_point": "0101000020E610000088C0FE6F15C45EC0CA3F871A019E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065498296999962, 49.232804304000069 ], [ -123.065511836999917, 49.232802513000109 ], [ -123.065468596999963, 49.233921008000031 ], [ -123.065485980999966, 49.234492605000135 ], [ -123.065500289999989, 49.234917309000132 ], [ -123.065491615999946, 49.235229601000071 ], [ -123.065479570999955, 49.235637055000048 ], [ -123.065471100999901, 49.235922690000116 ], [ -123.064728795999912, 49.235918396000031 ], [ -123.062108503999951, 49.235903192000137 ], [ -123.062111219999935, 49.235413777000076 ], [ -123.062114081999965, 49.234902597000016 ], [ -123.062116004999965, 49.234406263000047 ], [ -123.062117891999975, 49.233909999000083 ], [ -123.06211372199999, 49.233398715000092 ], [ -123.062109701999987, 49.23291169 ], [ -123.062123478999965, 49.232911829000102 ], [ -123.06410611499993, 49.232929990000081 ], [ -123.064742014999979, 49.232905894000098 ], [ -123.065498296999962, 49.232804304000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "415038455", "BldgCostT": "276714713", "sL_LossRatio": "0.742398059220365", "sL_AssetLoss": "3009100", "sL_BldgLoss": "2233950", "sL_StrLoss": "969990", "sL_NStrLoss": "1263960", "sL_ContLoss": "775150", "geom_point": "0101000020E61000008176C93055C45EC0C3790791EF9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068941433999953, 49.232605742000061 ], [ -123.070111683999926, 49.232618620000075 ], [ -123.070101144999953, 49.233061590000069 ], [ -123.070061679999966, 49.234716105000075 ], [ -123.069356542999969, 49.234708647000055 ], [ -123.06865119699998, 49.234701202000117 ], [ -123.068642713999978, 49.235270288000059 ], [ -123.066128769999963, 49.235237835000106 ], [ -123.065491615999946, 49.235229601000071 ], [ -123.065500289999989, 49.234917309000132 ], [ -123.065485980999966, 49.234492605000135 ], [ -123.065468596999963, 49.233921008000031 ], [ -123.065511836999917, 49.232802513000109 ], [ -123.066181432999969, 49.23267841200007 ], [ -123.06622436699999, 49.232675 ], [ -123.066803992999937, 49.232628999000021 ], [ -123.066858550999953, 49.232624668 ], [ -123.066916874999933, 49.232620041000089 ], [ -123.068685666999912, 49.232633925000137 ], [ -123.068824256999946, 49.232634979000075 ], [ -123.068941433999953, 49.232605742000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102626220", "BldgCostT": "62270413", "sL_LossRatio": "0.651476497025694", "sL_AssetLoss": "1595330", "sL_BldgLoss": "1039320", "sL_StrLoss": "410990", "sL_NStrLoss": "628330", "sL_ContLoss": "556010", "geom_point": "0101000020E61000009F80817B39C45EC0F737D34A429E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.065433994999978, 49.23748640000008 ], [ -123.065444099999979, 49.236914717000062 ], [ -123.064729790999976, 49.236913161000082 ], [ -123.062724146999983, 49.236908849000088 ], [ -123.062103993999926, 49.236907497000054 ], [ -123.062108503999951, 49.235903192000137 ], [ -123.064728795999912, 49.235918396000031 ], [ -123.065471100999901, 49.235922690000116 ], [ -123.065479570999955, 49.235637055000048 ], [ -123.065491615999946, 49.235229601000071 ], [ -123.066128769999963, 49.235237835000106 ], [ -123.068642713999978, 49.235270288000059 ], [ -123.068636, 49.235688715000059 ], [ -123.06862565599999, 49.236336521000041 ], [ -123.068619362999954, 49.236727196000039 ], [ -123.068608328999957, 49.237173022000043 ], [ -123.068598924999932, 49.237551696000082 ], [ -123.066022014999973, 49.237520427000064 ], [ -123.065607899999961, 49.237515402000099 ], [ -123.065433994999978, 49.23748640000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80742250", "BldgCostT": "52795000", "sL_LossRatio": "0.753115790221212", "sL_AssetLoss": "844890", "sL_BldgLoss": "636300", "sL_StrLoss": "323590", "sL_NStrLoss": "312710", "sL_ContLoss": "208590", "geom_point": "0101000020E6100000516628937FC45EC052ED6856159E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070111683999926, 49.232618620000075 ], [ -123.071514108999963, 49.23262970800004 ], [ -123.071500163999943, 49.233087752000124 ], [ -123.071450201999966, 49.234731295000081 ], [ -123.071399384999893, 49.236388760000054 ], [ -123.071387898999902, 49.236763594000095 ], [ -123.070011893999919, 49.236744293000115 ], [ -123.068619362999954, 49.236727196000039 ], [ -123.06862565599999, 49.236336521000041 ], [ -123.068636, 49.235688715000059 ], [ -123.068642713999978, 49.235270288000059 ], [ -123.06865119699998, 49.234701202000117 ], [ -123.069356542999969, 49.234708647000055 ], [ -123.070061679999966, 49.234716105000075 ], [ -123.070101144999953, 49.233061590000069 ], [ -123.070111683999926, 49.232618620000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140238136", "BldgCostT": "84487079", "sL_LossRatio": "0.683257481171211", "sL_AssetLoss": "1738030", "sL_BldgLoss": "1187522", "sL_StrLoss": "545970", "sL_NStrLoss": "641552", "sL_ContLoss": "550508", "geom_point": "0101000020E610000022D0507116C45EC0ABF6766C809E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.064690088999953, 49.239879755000104 ], [ -123.064214087999943, 49.239798 ], [ -123.062889776999924, 49.239786200000069 ], [ -123.06288981099999, 49.239777180000083 ], [ -123.062890506999963, 49.239380229000098 ], [ -123.062891303999919, 49.238937709000041 ], [ -123.06274029199993, 49.238936667000083 ], [ -123.062095295999967, 49.238932185000031 ], [ -123.062099117999963, 49.238069403000033 ], [ -123.062099314999955, 49.237949380000046 ], [ -123.062100098999963, 49.237467693000106 ], [ -123.062103993999926, 49.236907497000054 ], [ -123.062724146999983, 49.236908849000088 ], [ -123.064729790999976, 49.236913161000082 ], [ -123.065444099999979, 49.236914717000062 ], [ -123.065433994999978, 49.23748640000008 ], [ -123.065420711999977, 49.238130994000052 ], [ -123.065414189999942, 49.238342491000054 ], [ -123.065396199999967, 49.238953694000017 ], [ -123.065390107999974, 49.239223693000078 ], [ -123.065367504999983, 49.240059108000054 ], [ -123.064743896999985, 49.239889012000127 ], [ -123.064690088999953, 49.239879755000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50218999", "BldgCostT": "32929999", "sL_LossRatio": "0.708889138499463", "sL_AssetLoss": "658804", "sL_BldgLoss": "467019", "sL_StrLoss": "213470", "sL_NStrLoss": "253549", "sL_ContLoss": "191785", "geom_point": "0101000020E61000007FED4727DEC35EC0409AFBF5549E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061417955999943, 49.235899343000021 ], [ -123.062108503999951, 49.235903192000137 ], [ -123.062103993999926, 49.236907497000054 ], [ -123.062100098999963, 49.237467693000106 ], [ -123.062099314999955, 49.237949380000046 ], [ -123.062099117999963, 49.238069403000033 ], [ -123.061376654999947, 49.238056324000063 ], [ -123.059427460999956, 49.238021054000093 ], [ -123.058756691999946, 49.238008890000067 ], [ -123.058736611999933, 49.237394012000067 ], [ -123.05873701099999, 49.237376265000059 ], [ -123.058747886, 49.23689080300003 ], [ -123.058781507999939, 49.235884597000087 ], [ -123.059467312999971, 49.235888432000181 ], [ -123.061417955999943, 49.235899343000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57618167", "BldgCostT": "39736667", "sL_LossRatio": "0.758951779559678", "sL_AssetLoss": "852149", "sL_BldgLoss": "646740", "sL_StrLoss": "315170", "sL_NStrLoss": "331570", "sL_ContLoss": "205409", "geom_point": "0101000020E6100000D1C82932E1C35EC0050CB34C969E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058732598999967, 49.238910011000101 ], [ -123.058756691999946, 49.238008890000067 ], [ -123.059427460999956, 49.238021054000093 ], [ -123.061376654999947, 49.238056324000063 ], [ -123.062099117999963, 49.238069403000033 ], [ -123.062095295999967, 49.238932185000031 ], [ -123.06274029199993, 49.238936667000083 ], [ -123.062891303999919, 49.238937709000041 ], [ -123.062890506999963, 49.239380229000098 ], [ -123.06288981099999, 49.239777180000083 ], [ -123.062889776999924, 49.239786200000069 ], [ -123.05871108599996, 49.23979131500009 ], [ -123.058721750999936, 49.239355329000034 ], [ -123.058732598999967, 49.238910011000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83042583", "BldgCostT": "53118333", "sL_LossRatio": "0.704544204626699", "sL_AssetLoss": "1200078", "sL_BldgLoss": "845508", "sL_StrLoss": "406140", "sL_NStrLoss": "439368", "sL_ContLoss": "354570", "geom_point": "0101000020E61000003DA7AB9E00C45EC0C2C4728DC79E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.062835093000018, 49.241080217000082 ], [ -123.062840606999941, 49.240672193000108 ], [ -123.058688173999911, 49.240649994000051 ], [ -123.058699689999941, 49.240218928000012 ], [ -123.05871108599996, 49.23979131500009 ], [ -123.062889776999924, 49.239786200000069 ], [ -123.064214087999943, 49.239798 ], [ -123.064690088999953, 49.239879755000104 ], [ -123.064743896999985, 49.239889012000127 ], [ -123.065367504999983, 49.240059108000054 ], [ -123.065349904999906, 49.240684607000112 ], [ -123.065303817999975, 49.24152290200005 ], [ -123.064667311000022, 49.241513064000081 ], [ -123.064074598999923, 49.24150391200007 ], [ -123.06340317599999, 49.241502132000086 ], [ -123.06282941799999, 49.241500601000084 ], [ -123.062835093000018, 49.241080217000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "494477611", "BldgCostT": "325143637", "sL_LossRatio": "0.737183406525203", "sL_AssetLoss": "2598877", "sL_BldgLoss": "1915849", "sL_StrLoss": "915660", "sL_NStrLoss": "1000189", "sL_ContLoss": "683028", "geom_point": "0101000020E61000006A22BFC0E4C35EC0DFB45BC3F39E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058688173999911, 49.240649994000051 ], [ -123.062840606999941, 49.240672193000108 ], [ -123.062835093000018, 49.241080217000082 ], [ -123.06282941799999, 49.241500601000084 ], [ -123.062813401999904, 49.241808347000116 ], [ -123.062785288999933, 49.242348893000063 ], [ -123.062722191999967, 49.242716507000104 ], [ -123.06264450599997, 49.242793600000105 ], [ -123.062228471999973, 49.243177208000112 ], [ -123.06181039499999, 49.24356269400009 ], [ -123.059161092999929, 49.242353697000055 ], [ -123.058123402999954, 49.241870507000023 ], [ -123.058342083999932, 49.241669306000119 ], [ -123.058374000999933, 49.24161917600005 ], [ -123.058570900999939, 49.241309806000075 ], [ -123.058644512999976, 49.241123487000102 ], [ -123.05867940399996, 49.24085419199999 ], [ -123.058688173999911, 49.240649994000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "607515684", "BldgCostT": "401188683", "sL_LossRatio": "0.781606676180017", "sL_AssetLoss": "4197610", "sL_BldgLoss": "3280880", "sL_StrLoss": "1496900", "sL_NStrLoss": "1783980", "sL_ContLoss": "916730", "geom_point": "0101000020E6100000EE61589321C45EC0C33D2332289F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06264450599997, 49.242793600000105 ], [ -123.062722191999967, 49.242716507000104 ], [ -123.062785288999933, 49.242348893000063 ], [ -123.062813401999904, 49.241808347000116 ], [ -123.06282941799999, 49.241500601000084 ], [ -123.06340317599999, 49.241502132000086 ], [ -123.064074598999923, 49.24150391200007 ], [ -123.064667311000022, 49.241513064000081 ], [ -123.065303817999975, 49.24152290200005 ], [ -123.06526799, 49.242826309000051 ], [ -123.065352994999969, 49.242851100000053 ], [ -123.065904962999966, 49.242859835000061 ], [ -123.066617771999987, 49.242871095000055 ], [ -123.06654267499998, 49.245396541000041 ], [ -123.066531091999963, 49.245786389000088 ], [ -123.06517368099999, 49.245143301000091 ], [ -123.063765511999947, 49.244501401000093 ], [ -123.06181039499999, 49.24356269400009 ], [ -123.062228471999973, 49.243177208000112 ], [ -123.06264450599997, 49.242793600000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188654290", "BldgCostT": "120944004", "sL_LossRatio": "0.722385303815356", "sL_AssetLoss": "1326875", "sL_BldgLoss": "958515", "sL_StrLoss": "495525", "sL_NStrLoss": "462990", "sL_ContLoss": "368360", "geom_point": "0101000020E6100000DD2FFA65CBC35EC0830A06BE3F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057325398999964, 49.242587389000072 ], [ -123.058123402999954, 49.241870507000023 ], [ -123.059161092999929, 49.242353697000055 ], [ -123.06181039499999, 49.24356269400009 ], [ -123.063765511999947, 49.244501401000093 ], [ -123.063272616999967, 49.244847403000087 ], [ -123.063258069999947, 49.244851731000068 ], [ -123.063006689999924, 49.244926699000054 ], [ -123.062811787999976, 49.244924991000047 ], [ -123.061153678999915, 49.244900548 ], [ -123.060438214999976, 49.244890017000024 ], [ -123.060445192999964, 49.245798209000071 ], [ -123.059685145999964, 49.245797014000111 ], [ -123.057390581, 49.245793390000074 ], [ -123.056656700999966, 49.245792208000118 ], [ -123.056660095999959, 49.245413010000092 ], [ -123.056658706999954, 49.244612204000127 ], [ -123.056652889999953, 49.243989594000034 ], [ -123.056659479999951, 49.243733895000048 ], [ -123.056684781999948, 49.243443701000089 ], [ -123.056759604999954, 49.243238485000084 ], [ -123.056921195999948, 49.242963705000058 ], [ -123.057325398999964, 49.242587389000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78314955", "BldgCostT": "50299713", "sL_LossRatio": "0.725238354468357", "sL_AssetLoss": "736613", "sL_BldgLoss": "534220", "sL_StrLoss": "274300", "sL_NStrLoss": "259920", "sL_ContLoss": "202393", "geom_point": "0101000020E6100000FD02403605C45EC0147F1D30769F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063272616999967, 49.244847403000087 ], [ -123.063765511999947, 49.244501401000093 ], [ -123.06517368099999, 49.245143301000091 ], [ -123.065148223999955, 49.245807386000109 ], [ -123.065122389999928, 49.246758805000042 ], [ -123.064385557999969, 49.246753430000062 ], [ -123.062727016999958, 49.246741296000089 ], [ -123.061115376999908, 49.246729967000057 ], [ -123.060408508999956, 49.246724991000043 ], [ -123.060445192999964, 49.245798209000071 ], [ -123.060438214999976, 49.244890017000024 ], [ -123.061153678999915, 49.244900548 ], [ -123.062811787999976, 49.244924991000047 ], [ -123.063006689999924, 49.244926699000054 ], [ -123.063258069999947, 49.244851731000068 ], [ -123.063272616999967, 49.244847403000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103329979", "BldgCostT": "65044858", "sL_LossRatio": "0.69621714195809", "sL_AssetLoss": "1550838", "sL_BldgLoss": "1079720", "sL_StrLoss": "469730", "sL_NStrLoss": "609990", "sL_ContLoss": "471118", "geom_point": "0101000020E610000021BB9016C0C35EC0557CA5C1A79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059685145999964, 49.245797014000111 ], [ -123.060445192999964, 49.245798209000071 ], [ -123.060408508999956, 49.246724991000043 ], [ -123.06052251199992, 49.246854184000078 ], [ -123.060518249, 49.247225890000145 ], [ -123.060511793999922, 49.24779238600005 ], [ -123.060507997999963, 49.248123991000043 ], [ -123.0604772199999, 49.248870808000035 ], [ -123.057994299999976, 49.248845407000012 ], [ -123.057990919999909, 49.248985898000058 ], [ -123.057376024999911, 49.24871970800011 ], [ -123.05665162299999, 49.248406089000035 ], [ -123.056653199999943, 49.248098096000092 ], [ -123.05665428499999, 49.247107294000052 ], [ -123.056652686999968, 49.246699202000109 ], [ -123.056656199999964, 49.246275917000048 ], [ -123.056656700999966, 49.245792208000118 ], [ -123.057390581, 49.245793390000074 ], [ -123.059685145999964, 49.245797014000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "572274311", "BldgCostT": "388363190", "sL_LossRatio": "0.800661574679284", "sL_AssetLoss": "3648870", "sL_BldgLoss": "2921510", "sL_StrLoss": "1331150", "sL_NStrLoss": "1590360", "sL_ContLoss": "727360", "geom_point": "0101000020E61000006976A4FA4EC15EC0D749BE2BE5A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022740876999961, 49.279330904000119 ], [ -123.023398102999963, 49.279336497000038 ], [ -123.023395334999989, 49.279801452000065 ], [ -123.023392814999966, 49.280232601000115 ], [ -123.023392808999915, 49.280241666000059 ], [ -123.02339254099999, 49.280682959000046 ], [ -123.023392293999976, 49.281139692000089 ], [ -123.020983305999977, 49.281113791000131 ], [ -123.018624207999935, 49.281081099000126 ], [ -123.016278395999976, 49.281055901000158 ], [ -123.016279337999933, 49.280621248000088 ], [ -123.01628032399995, 49.2801713960001 ], [ -123.01863989, 49.280196094000097 ], [ -123.02099119799999, 49.280220381000127 ], [ -123.021035595999948, 49.279316397000059 ], [ -123.022740876999961, 49.279330904000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152907500", "BldgCostT": "106445000", "sL_LossRatio": "0.848805903447675", "sL_AssetLoss": "917430", "sL_BldgLoss": "778720", "sL_StrLoss": "349960", "sL_NStrLoss": "428760", "sL_ContLoss": "138710", "geom_point": "0101000020E610000040A1BF4C6BC15EC0AB6F26C719A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.020983305999977, 49.281113791000131 ], [ -123.023392293999976, 49.281139692000089 ], [ -123.023392197999968, 49.281148702000067 ], [ -123.02338202199995, 49.282049197000049 ], [ -123.023381715999918, 49.282058281000097 ], [ -123.023367090999983, 49.282509072000082 ], [ -123.023352621, 49.28295628300009 ], [ -123.020974215, 49.282944803000092 ], [ -123.020971818999953, 49.282500481000085 ], [ -123.02096919099999, 49.282018702000087 ], [ -123.020975698999933, 49.281600886000071 ], [ -123.020983305999977, 49.281113791000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241005303", "BldgCostT": "157913746", "sL_LossRatio": "0.743017061893302", "sL_AssetLoss": "2588810", "sL_BldgLoss": "1923530", "sL_StrLoss": "884320", "sL_NStrLoss": "1039210", "sL_ContLoss": "665280", "geom_point": "0101000020E6100000DF13A07D57C15EC08B7EA8F245A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.020952406999967, 49.284281503000024 ], [ -123.020953297999966, 49.283826997000105 ], [ -123.019676601999976, 49.283827068000065 ], [ -123.018578189999985, 49.283827112000033 ], [ -123.018584814999912, 49.283364467000091 ], [ -123.018591196999949, 49.282919513000138 ], [ -123.01860161799999, 49.282473994000064 ], [ -123.018612385999973, 49.282012996000041 ], [ -123.018618063999952, 49.281565374000124 ], [ -123.018624207999935, 49.281081099000126 ], [ -123.020983305999977, 49.281113791000131 ], [ -123.020975698999933, 49.281600886000071 ], [ -123.02096919099999, 49.282018702000087 ], [ -123.020971818999953, 49.282500481000085 ], [ -123.020974215, 49.282944803000092 ], [ -123.023352621, 49.28295628300009 ], [ -123.023352543, 49.282965317000055 ], [ -123.023349211999914, 49.28339952200006 ], [ -123.023345701999972, 49.283856902000068 ], [ -123.023345640999963, 49.283865958000071 ], [ -123.023342606999947, 49.284308017000036 ], [ -123.02333967, 49.284734945000025 ], [ -123.023339612, 49.28474400100005 ], [ -123.023332679999925, 49.285216537000061 ], [ -123.023326189999949, 49.285659716000062 ], [ -123.020930798999984, 49.285653113000066 ], [ -123.020941261999965, 49.285199144000032 ], [ -123.020951488999927, 49.284753797000135 ], [ -123.020952406999967, 49.284281503000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189711552", "BldgCostT": "120738745", "sL_LossRatio": "0.707781693494619", "sL_AssetLoss": "1889820", "sL_BldgLoss": "1337580", "sL_StrLoss": "592920", "sL_NStrLoss": "744660", "sL_ContLoss": "552240", "geom_point": "0101000020E6100000A04C27022AC15EC08C084AFA49A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.018555133999939, 49.285163526000126 ], [ -123.018571305999899, 49.284725003000105 ], [ -123.016187076999969, 49.284717703000119 ], [ -123.016196447999931, 49.284264134000061 ], [ -123.016205905, 49.28380569800008 ], [ -123.016213519999923, 49.28335577400005 ], [ -123.016221116999986, 49.282907198000011 ], [ -123.016222966999976, 49.282465290000054 ], [ -123.01622499399997, 49.281992107000043 ], [ -123.016250817999904, 49.281539712000047 ], [ -123.016278395999976, 49.281055901000158 ], [ -123.018624207999935, 49.281081099000126 ], [ -123.018618063999952, 49.281565374000124 ], [ -123.018612385999973, 49.282012996000041 ], [ -123.01860161799999, 49.282473994000064 ], [ -123.018591196999949, 49.282919513000138 ], [ -123.018584814999912, 49.283364467000091 ], [ -123.018578189999985, 49.283827112000033 ], [ -123.019676601999976, 49.283827068000065 ], [ -123.020953297999966, 49.283826997000105 ], [ -123.020952406999967, 49.284281503000024 ], [ -123.020951488999927, 49.284753797000135 ], [ -123.020941261999965, 49.285199144000032 ], [ -123.020930798999984, 49.285653113000066 ], [ -123.018538099999901, 49.285626684000114 ], [ -123.018555133999939, 49.285163526000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "480800925", "BldgCostT": "317365126", "sL_LossRatio": "0.73126513551469", "sL_AssetLoss": "3617320", "sL_BldgLoss": "2645220", "sL_StrLoss": "1169000", "sL_NStrLoss": "1476220", "sL_ContLoss": "972100", "geom_point": "0101000020E61000007A1CB260E6C05EC0A630193B1FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.014161362, 49.28333815600007 ], [ -123.014164099999931, 49.282899880000059 ], [ -123.011385598999979, 49.282868898000075 ], [ -123.011403948999941, 49.282430668000103 ], [ -123.011423705999945, 49.281958405000076 ], [ -123.011416087999947, 49.281503119000078 ], [ -123.011408394999961, 49.281043691000029 ], [ -123.014159587, 49.281047810000089 ], [ -123.016278395999976, 49.281055901000158 ], [ -123.016250817999904, 49.281539712000047 ], [ -123.01622499399997, 49.281992107000043 ], [ -123.016222966999976, 49.282465290000054 ], [ -123.016221116999986, 49.282907198000011 ], [ -123.016213519999923, 49.28335577400005 ], [ -123.016205905, 49.28380569800008 ], [ -123.014158614999971, 49.283774397000066 ], [ -123.014161362, 49.28333815600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123947220", "BldgCostT": "80810413", "sL_LossRatio": "0.714330379153188", "sL_AssetLoss": "1663180", "sL_BldgLoss": "1188060", "sL_StrLoss": "537910", "sL_NStrLoss": "650150", "sL_ContLoss": "475120", "geom_point": "0101000020E61000001DA6BE458ABF5EC0405454DC3CA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.991461743999935, 49.280148276000098 ], [ -122.991695886999977, 49.28014840000003 ], [ -122.992041784999969, 49.280196797000066 ], [ -122.992106636999949, 49.280213713000101 ], [ -122.992266209999983, 49.280255289000131 ], [ -122.992408812999969, 49.280260207000019 ], [ -122.992965945999941, 49.280542815000018 ], [ -122.993479894999965, 49.280803492000075 ], [ -122.993902608999989, 49.280919701000116 ], [ -122.994218215999965, 49.28096900200007 ], [ -122.994654514999979, 49.280981203000074 ], [ -122.994660957999955, 49.28141393400012 ], [ -122.994667885999959, 49.281877789000113 ], [ -122.994671234999913, 49.282304372000084 ], [ -122.994674700999937, 49.282747292000046 ], [ -122.994669613999918, 49.283203885000091 ], [ -122.994665428999937, 49.283581112000043 ], [ -122.994654808999968, 49.284538400000031 ], [ -122.994639734999936, 49.285012113000114 ], [ -122.994627616999963, 49.285393331000094 ], [ -122.994610886999951, 49.285920595000064 ], [ -122.994596606999949, 49.286369790000052 ], [ -122.992041283999981, 49.286349095000098 ], [ -122.99188628899999, 49.28636459800002 ], [ -122.991932112999933, 49.28544800700007 ], [ -122.991973395999977, 49.284535797000103 ], [ -122.991980472999899, 49.283811703000033 ], [ -122.99120999899999, 49.28333719700003 ], [ -122.990521996, 49.28292431600012 ], [ -122.990517516999887, 49.282613494000067 ], [ -122.990558606999983, 49.280391509000026 ], [ -122.990561180999961, 49.280244694000068 ], [ -122.991135099999909, 49.280148093000086 ], [ -122.991461743999935, 49.280148276000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126848500", "BldgCostT": "84175000", "sL_LossRatio": "0.722945177772384", "sL_AssetLoss": "1606830", "sL_BldgLoss": "1161650", "sL_StrLoss": "533150", "sL_NStrLoss": "628500", "sL_ContLoss": "445180", "geom_point": "0101000020E61000002B8B677557BF5EC021B19B216EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98999887899997, 49.282619697000015 ], [ -122.990517516999887, 49.282613494000067 ], [ -122.990521996, 49.28292431600012 ], [ -122.99120999899999, 49.28333719700003 ], [ -122.991980472999899, 49.283811703000033 ], [ -122.991973395999977, 49.284535797000103 ], [ -122.991932112999933, 49.28544800700007 ], [ -122.99188628899999, 49.28636459800002 ], [ -122.991769488999978, 49.286406394000089 ], [ -122.991098092999948, 49.286394910000112 ], [ -122.990385602999964, 49.286402104000061 ], [ -122.989673842999977, 49.286393774000018 ], [ -122.988994318, 49.286385804000084 ], [ -122.988312425999979, 49.286375743000043 ], [ -122.98762511299995, 49.286365582000073 ], [ -122.987698292999966, 49.284456185000082 ], [ -122.987773901000011, 49.282594610000103 ], [ -122.988450582, 49.282599826000052 ], [ -122.989158701999926, 49.282605306000029 ], [ -122.989839258999908, 49.282616970000049 ], [ -122.98999887899997, 49.282619697000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184505083", "BldgCostT": "123373333", "sL_LossRatio": "0.790054277591109", "sL_AssetLoss": "967250", "sL_BldgLoss": "764180", "sL_StrLoss": "388320", "sL_NStrLoss": "375860", "sL_ContLoss": "203070", "geom_point": "0101000020E6100000E148FB7A19BF5EC0BC2B161A63A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98488198799997, 49.286316 ], [ -122.9849173, 49.284398394000092 ], [ -122.984228953999988, 49.284388377000013 ], [ -122.983571615, 49.284378805000038 ], [ -122.98365202299999, 49.282573198000101 ], [ -122.984311325999911, 49.28257750300007 ], [ -122.985042296999964, 49.282582307000091 ], [ -122.985338320999972, 49.282574301000075 ], [ -122.98572789399999, 49.282577706000041 ], [ -122.986416688999952, 49.282583700000053 ], [ -122.987075660999892, 49.282589004000023 ], [ -122.987773901000011, 49.282594610000103 ], [ -122.987698292999966, 49.284456185000082 ], [ -122.98762511299995, 49.286365582000073 ], [ -122.986923065999918, 49.286354663000111 ], [ -122.98623411299999, 49.286343899000016 ], [ -122.985548366999964, 49.28632974000007 ], [ -122.98488198799997, 49.286316 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "293353053", "BldgCostT": "198968746", "sL_LossRatio": "0.785241040272504", "sL_AssetLoss": "2404370", "sL_BldgLoss": "1888010", "sL_StrLoss": "823930", "sL_NStrLoss": "1064080", "sL_ContLoss": "516360", "geom_point": "0101000020E610000039CDB7152DBF5EC03FAA482207A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.989338198999945, 49.280369102000108 ], [ -122.990270290999945, 49.280237501000059 ], [ -122.990412916999972, 49.280264006000031 ], [ -122.990561180999961, 49.280244694000068 ], [ -122.990558606999983, 49.280391509000026 ], [ -122.990517516999887, 49.282613494000067 ], [ -122.98999887899997, 49.282619697000015 ], [ -122.989839258999908, 49.282616970000049 ], [ -122.989158701999926, 49.282605306000029 ], [ -122.988450582, 49.282599826000052 ], [ -122.987773901000011, 49.282594610000103 ], [ -122.987075660999892, 49.282589004000023 ], [ -122.986416688999952, 49.282583700000053 ], [ -122.98572789399999, 49.282577706000041 ], [ -122.985338320999972, 49.282574301000075 ], [ -122.985042296999964, 49.282582307000091 ], [ -122.984311325999911, 49.28257750300007 ], [ -122.98365202299999, 49.282573198000101 ], [ -122.983662807999906, 49.281561904000071 ], [ -122.983668399999956, 49.281411598000098 ], [ -122.983691215999912, 49.280534015000057 ], [ -122.983691311999948, 49.28034209500003 ], [ -122.987806279, 49.28036059300004 ], [ -122.989338198999945, 49.280369102000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210204122", "BldgCostT": "142221380", "sL_LossRatio": "0.78325151354678", "sL_AssetLoss": "1397380", "sL_BldgLoss": "1094500", "sL_StrLoss": "484790", "sL_NStrLoss": "609710", "sL_ContLoss": "302880", "geom_point": "0101000020E6100000C352358BE1BE5EC0307D75762EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98229540799997, 49.280334605000107 ], [ -122.983691311999948, 49.28034209500003 ], [ -122.983691215999912, 49.280534015000057 ], [ -122.983668399999956, 49.281411598000098 ], [ -122.983662807999906, 49.281561904000071 ], [ -122.98365202299999, 49.282573198000101 ], [ -122.983571615, 49.284378805000038 ], [ -122.982867230999886, 49.284367020000104 ], [ -122.98220267399995, 49.284355902000051 ], [ -122.981519813999981, 49.284344888000099 ], [ -122.98083649799996, 49.284333912000143 ], [ -122.980883984999963, 49.28290750000005 ], [ -122.981347012999905, 49.282552882000104 ], [ -122.981960599999937, 49.282056614000098 ], [ -122.982261215999955, 49.281937090000056 ], [ -122.98229540799997, 49.280334605000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79596000", "BldgCostT": "49320000", "sL_LossRatio": "0.695125169657668", "sL_AssetLoss": "1060960", "sL_BldgLoss": "737500", "sL_StrLoss": "330080", "sL_NStrLoss": "407420", "sL_ContLoss": "323460", "geom_point": "0101000020E610000032242713B7BE5EC0809076ED1CA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.980945701999971, 49.280335597000075 ], [ -122.98229540799997, 49.280334605000107 ], [ -122.982261215999955, 49.281937090000056 ], [ -122.981960599999937, 49.282056614000098 ], [ -122.981347012999905, 49.282552882000104 ], [ -122.980883984999963, 49.28290750000005 ], [ -122.98083649799996, 49.284333912000143 ], [ -122.980131158999939, 49.284318305000077 ], [ -122.979457082999929, 49.284303403000074 ], [ -122.978079392999945, 49.284310791000074 ], [ -122.978138975999926, 49.282553197000084 ], [ -122.978139170999953, 49.282544185000056 ], [ -122.97816848299999, 49.280812785000037 ], [ -122.978165306999969, 49.280335306000126 ], [ -122.979541083999905, 49.280335472000147 ], [ -122.980945701999971, 49.280335597000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223416791", "BldgCostT": "149653048", "sL_LossRatio": "0.7773193359375", "sL_AssetLoss": "1638400", "sL_BldgLoss": "1273560", "sL_StrLoss": "571190", "sL_NStrLoss": "702370", "sL_ContLoss": "364840", "geom_point": "0101000020E6100000094F64BD83BE5EC01E7C38B323A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.976877429999945, 49.280336211000062 ], [ -122.978165306999969, 49.280335306000126 ], [ -122.97816848299999, 49.280812785000037 ], [ -122.978139170999953, 49.282544185000056 ], [ -122.978138975999926, 49.282553197000084 ], [ -122.978079392999945, 49.284310791000074 ], [ -122.97733937199996, 49.284299665000091 ], [ -122.976695189999944, 49.284290011000039 ], [ -122.976019293999954, 49.284286090000066 ], [ -122.975314405999953, 49.284282005000136 ], [ -122.975374207999948, 49.282564114000067 ], [ -122.975511599999905, 49.282459789000129 ], [ -122.975534594999957, 49.280817708000022 ], [ -122.975541311999905, 49.280339271000031 ], [ -122.976070243999928, 49.280338058000133 ], [ -122.976345419999987, 49.280337422000109 ], [ -122.976877429999945, 49.280336211000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108738137", "BldgCostT": "70492080", "sL_LossRatio": "0.744300449616504", "sL_AssetLoss": "945250", "sL_BldgLoss": "703550", "sL_StrLoss": "308790", "sL_NStrLoss": "394760", "sL_ContLoss": "241700", "geom_point": "0101000020E6100000B367F8E49BBE5EC0DF63E1D2CEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.980952612999914, 49.279109794000085 ], [ -122.980945701999971, 49.280335597000075 ], [ -122.979541083999905, 49.280335472000147 ], [ -122.978165306999969, 49.280335306000126 ], [ -122.976877429999945, 49.280336211000062 ], [ -122.976345419999987, 49.280337422000109 ], [ -122.976070243999928, 49.280338058000133 ], [ -122.975541311999905, 49.280339271000031 ], [ -122.975559483999973, 49.279155197000051 ], [ -122.97735522699999, 49.279174275000052 ], [ -122.979362484999967, 49.279195555000044 ], [ -122.979545096999985, 49.27919751400001 ], [ -122.980198916999925, 49.279097804000052 ], [ -122.98038063199999, 49.279100683000166 ], [ -122.980952612999914, 49.279109794000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93728301", "BldgCostT": "59689218", "sL_LossRatio": "0.707120591691806", "sL_AssetLoss": "1194676", "sL_BldgLoss": "844780", "sL_StrLoss": "348700", "sL_NStrLoss": "496080", "sL_ContLoss": "349896", "geom_point": "0101000020E6100000F56340B4DEBE5EC0BDA740A092A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.983639916999934, 49.275483206000075 ], [ -122.983718687999954, 49.27548309500007 ], [ -122.98373038499993, 49.276402309000062 ], [ -122.98373070699995, 49.277305791000067 ], [ -122.983722591999964, 49.278212596000053 ], [ -122.983715589999989, 49.279122190000066 ], [ -122.983703118999969, 49.279748864000098 ], [ -122.983691311999948, 49.28034209500003 ], [ -122.98229540799997, 49.280334605000107 ], [ -122.980945701999971, 49.280335597000075 ], [ -122.980952612999914, 49.279109794000085 ], [ -122.980955676999912, 49.278767880000032 ], [ -122.980960807999907, 49.278203010000077 ], [ -122.980974611999912, 49.277295411000139 ], [ -122.980976197999937, 49.276986821000015 ], [ -122.980983497999958, 49.275574496000033 ], [ -122.980983996999953, 49.275482288000092 ], [ -122.98248730899999, 49.275484696000028 ], [ -122.983639916999934, 49.275483206000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254359386", "BldgCostT": "172407079", "sL_LossRatio": "0.83732161589771", "sL_AssetLoss": "1515690", "sL_BldgLoss": "1269120", "sL_StrLoss": "586950", "sL_NStrLoss": "682170", "sL_ContLoss": "246570", "geom_point": "0101000020E6100000312857A116BF5EC0C55A538BCEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.983715589999989, 49.279122190000066 ], [ -122.987806213999946, 49.279135605000107 ], [ -122.987806254999938, 49.279767178000093 ], [ -122.987806279, 49.28036059300004 ], [ -122.983691311999948, 49.28034209500003 ], [ -122.983703118999969, 49.279748864000098 ], [ -122.983715589999989, 49.279122190000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153614240", "BldgCostT": "99256028", "sL_LossRatio": "0.782935149916264", "sL_AssetLoss": "1098149.7", "sL_BldgLoss": "859780", "sL_StrLoss": "444270", "sL_NStrLoss": "415510", "sL_ContLoss": "238369.7", "geom_point": "0101000020E6100000CFF0B09AB8BE5EC01251FADF9DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.978177612999986, 49.286495194000054 ], [ -122.97801741899994, 49.28631599800012 ], [ -122.977810090999938, 49.286311999000084 ], [ -122.977368088999967, 49.286155493000152 ], [ -122.977333230999989, 49.286155074000142 ], [ -122.977310952999957, 49.286154789000165 ], [ -122.97661544099995, 49.28614612500008 ], [ -122.976695189999944, 49.284290011000039 ], [ -122.97733937199996, 49.284299665000091 ], [ -122.978079392999945, 49.284310791000074 ], [ -122.979457082999929, 49.284303403000074 ], [ -122.980131158999939, 49.284318305000077 ], [ -122.98083649799996, 49.284333912000143 ], [ -122.981519813999981, 49.284344888000099 ], [ -122.98220267399995, 49.284355902000051 ], [ -122.982112619999967, 49.286268401000022 ], [ -122.982081578999896, 49.287062001000066 ], [ -122.982296179999963, 49.287603347000108 ], [ -122.982500309999978, 49.287876010000069 ], [ -122.982907103999963, 49.28834810200005 ], [ -122.983232772999941, 49.288526433000101 ], [ -122.983265988999932, 49.288544643000101 ], [ -122.983744009999967, 49.288806395000123 ], [ -122.982360108999956, 49.288971133000111 ], [ -122.979546613999943, 49.287297403000146 ], [ -122.978703188999958, 49.286822813000072 ], [ -122.978350617, 49.286624391000046 ], [ -122.978267774999964, 49.286562538000084 ], [ -122.978177612999986, 49.286495194000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116602834", "BldgCostT": "72843334", "sL_LossRatio": "0.76141554058633", "sL_AssetLoss": "737810", "sL_BldgLoss": "561780", "sL_StrLoss": "303620", "sL_NStrLoss": "258160", "sL_ContLoss": "176030", "geom_point": "0101000020E61000002FF20C9601BF5EC09135FA03ABA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.982081578999896, 49.287062001000066 ], [ -122.982112619999967, 49.286268401000022 ], [ -122.98220267399995, 49.284355902000051 ], [ -122.982867230999886, 49.284367020000104 ], [ -122.983571615, 49.284378805000038 ], [ -122.984228953999988, 49.284388377000013 ], [ -122.9849173, 49.284398394000092 ], [ -122.98488198799997, 49.286316 ], [ -122.985548366999964, 49.28632974000007 ], [ -122.98623411299999, 49.286343899000016 ], [ -122.986923065999918, 49.286354663000111 ], [ -122.98762511299995, 49.286365582000073 ], [ -122.98754480099997, 49.287919901000087 ], [ -122.987510599999951, 49.288022518000027 ], [ -122.987394891999926, 49.288111186000023 ], [ -122.986644618999961, 49.288446008000093 ], [ -122.986255730999943, 49.28847952800006 ], [ -122.983486781999957, 49.286739194000042 ], [ -122.983232772999941, 49.288526433000101 ], [ -122.982907103999963, 49.28834810200005 ], [ -122.982500309999978, 49.287876010000069 ], [ -122.982296179999963, 49.287603347000108 ], [ -122.982081578999896, 49.287062001000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102368750", "BldgCostT": "69125000", "sL_LossRatio": "0.803163270498191", "sL_AssetLoss": "746822", "sL_BldgLoss": "599820", "sL_StrLoss": "318625", "sL_NStrLoss": "281195", "sL_ContLoss": "147002", "geom_point": "0101000020E61000002F159F2B5FBF5EC0115818A6DFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.985566019999965, 49.289380998000077 ], [ -122.985606768999972, 49.288754289000096 ], [ -122.98453578099999, 49.288754150000088 ], [ -122.984535631999933, 49.289234035000078 ], [ -122.98453561299999, 49.289293860000079 ], [ -122.983297953999937, 49.289293688000086 ], [ -122.983297860999954, 49.289571059000089 ], [ -122.98269089799993, 49.289167905000085 ], [ -122.982465778999966, 49.289033981000031 ], [ -122.982360108999956, 49.288971133000111 ], [ -122.983744009999967, 49.288806395000123 ], [ -122.983265988999932, 49.288544643000101 ], [ -122.983232772999941, 49.288526433000101 ], [ -122.983486781999957, 49.286739194000042 ], [ -122.986255730999943, 49.28847952800006 ], [ -122.986644618999961, 49.288446008000093 ], [ -122.987394891999926, 49.288111186000023 ], [ -122.987510599999951, 49.288022518000027 ], [ -122.98754480099997, 49.287919901000087 ], [ -122.98762511299995, 49.286365582000073 ], [ -122.988312425999979, 49.286375743000043 ], [ -122.988994318, 49.286385804000084 ], [ -122.989673842999977, 49.286393774000018 ], [ -122.990385602999964, 49.286402104000061 ], [ -122.991098092999948, 49.286394910000112 ], [ -122.991769488999978, 49.286406394000089 ], [ -122.99188628899999, 49.28636459800002 ], [ -122.992041283999981, 49.286349095000098 ], [ -122.994596606999949, 49.286369790000052 ], [ -122.996859916999981, 49.286400406000048 ], [ -122.996835111999957, 49.287356310000057 ], [ -122.997006707999972, 49.287466493000132 ], [ -122.995951929999961, 49.28809103100005 ], [ -122.995941685999981, 49.288097106000109 ], [ -122.99574276099996, 49.288217492000037 ], [ -122.994602175999944, 49.288907711000093 ], [ -122.994601128999975, 49.288908338000113 ], [ -122.991158847999927, 49.289483534000091 ], [ -122.988391406999966, 49.290228812000109 ], [ -122.987618411999946, 49.290214381000048 ], [ -122.985989639999971, 49.289932050000075 ], [ -122.985534279999968, 49.289869138000022 ], [ -122.985566019999965, 49.289380998000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "354728310", "BldgCostT": "223487302", "sL_LossRatio": "0.736646767313928", "sL_AssetLoss": "2346810", "sL_BldgLoss": "1728770", "sL_StrLoss": "857890", "sL_NStrLoss": "870880", "sL_ContLoss": "618040", "geom_point": "0101000020E610000021444B81B9C45EC0F88137E6EDA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07254966499994, 49.317919418000052 ], [ -123.072561981999925, 49.31789578300004 ], [ -123.074209898999968, 49.318589791000115 ], [ -123.074369289999979, 49.318679704000061 ], [ -123.074429614999957, 49.318770501000095 ], [ -123.074430811999946, 49.318968703000166 ], [ -123.075127580999933, 49.318999290000058 ], [ -123.075670187999947, 49.319206688000051 ], [ -123.075555606999984, 49.319518785000078 ], [ -123.07549610699999, 49.320025199999989 ], [ -123.075536018999955, 49.321068390000093 ], [ -123.074688657999957, 49.321049933000026 ], [ -123.074378089999939, 49.321045151000092 ], [ -123.073330464999984, 49.321040217000075 ], [ -123.072348218999963, 49.321018102000103 ], [ -123.072373309999989, 49.319966793000042 ], [ -123.07239893299996, 49.3189523940001 ], [ -123.072438318999943, 49.318132917000064 ], [ -123.072514104999982, 49.317987593000041 ], [ -123.07254966499994, 49.317919418000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "369508404", "BldgCostT": "227585968", "sL_LossRatio": "0.674324243152331", "sL_AssetLoss": "3329600", "sL_BldgLoss": "2245230", "sL_StrLoss": "1045860", "sL_NStrLoss": "1199370", "sL_ContLoss": "1084370", "geom_point": "0101000020E6100000493DE2C287C45EC037037D9E16A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069252982999956, 49.319934398000079 ], [ -123.072373309999989, 49.319966793000042 ], [ -123.072348218999963, 49.321018102000103 ], [ -123.072318898000034, 49.322069316000075 ], [ -123.070762703999947, 49.322054998000105 ], [ -123.069198176, 49.322040502000014 ], [ -123.069226007999987, 49.321014506000019 ], [ -123.069252982999956, 49.319934398000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111718501", "BldgCostT": "71385001", "sL_LossRatio": "0.762919507955609", "sL_AssetLoss": "598320", "sL_BldgLoss": "456470", "sL_StrLoss": "217220", "sL_NStrLoss": "239250", "sL_ContLoss": "141850", "geom_point": "0101000020E6100000B157FE0094CA5EC00A63F2A3EDA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169169804999939, 49.327969592000095 ], [ -123.168120712999951, 49.327915989000076 ], [ -123.168080205999956, 49.328849794000121 ], [ -123.166399800999955, 49.328321206000076 ], [ -123.164620777999986, 49.327810579000115 ], [ -123.164344898999943, 49.327731396000026 ], [ -123.162211510999938, 49.327705202000075 ], [ -123.162010958999986, 49.327703053000015 ], [ -123.161446860999931, 49.327696988000064 ], [ -123.160869251999927, 49.327690780000083 ], [ -123.160238724999957, 49.327683960000115 ], [ -123.160265969999926, 49.327220144000115 ], [ -123.158897330999977, 49.32723890000009 ], [ -123.158947613999985, 49.327062150000053 ], [ -123.158974514999954, 49.326620115 ], [ -123.158974976999943, 49.326604027000073 ], [ -123.159888285999912, 49.326603099000081 ], [ -123.160410388999949, 49.326476296000116 ], [ -123.16150010699999, 49.326789597000072 ], [ -123.162008708999906, 49.326852308000127 ], [ -123.162250058999916, 49.326883451000029 ], [ -123.162560481999947, 49.326923503000131 ], [ -123.163798911999905, 49.326920599000076 ], [ -123.164761013999907, 49.327081589000038 ], [ -123.1660288839999, 49.32724249000006 ], [ -123.167424883999942, 49.327195314000122 ], [ -123.167424976999925, 49.327223043000146 ], [ -123.167837844999937, 49.327222445000139 ], [ -123.167837706999975, 49.32718136000009 ], [ -123.168124749999947, 49.327171656000097 ], [ -123.168809411999959, 49.327148506000114 ], [ -123.169606602999977, 49.327299504000102 ], [ -123.170779890999952, 49.327854910000028 ], [ -123.17100671299994, 49.328045789000022 ], [ -123.171011818999929, 49.328103994000067 ], [ -123.171014586999959, 49.328317544000043 ], [ -123.17109111299996, 49.328698142000057 ], [ -123.171054799, 49.329089795000101 ], [ -123.170906680000016, 49.328970696000077 ], [ -123.16956310099999, 49.328106913000106 ], [ -123.169169804999939, 49.327969592000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150119061", "BldgCostT": "90833190", "sL_LossRatio": "0.677540307461567", "sL_AssetLoss": "1893570", "sL_BldgLoss": "1282970", "sL_StrLoss": "555870", "sL_NStrLoss": "727100", "sL_ContLoss": "610600", "geom_point": "0101000020E610000031F071E074CA5EC0E4419B9805AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.164353574999922, 49.32871340100013 ], [ -123.163520377999959, 49.328614894000054 ], [ -123.162238785999989, 49.32860742000009 ], [ -123.162069920999969, 49.32860928800006 ], [ -123.160238505999985, 49.328629590000105 ], [ -123.160240086999977, 49.328155005 ], [ -123.160238724999957, 49.327683960000115 ], [ -123.160869251999927, 49.327690780000083 ], [ -123.161446860999931, 49.327696988000064 ], [ -123.162010958999986, 49.327703053000015 ], [ -123.162211510999938, 49.327705202000075 ], [ -123.164344898999943, 49.327731396000026 ], [ -123.164620777999986, 49.327810579000115 ], [ -123.166399800999955, 49.328321206000076 ], [ -123.166395790999943, 49.329354108000089 ], [ -123.165468080999972, 49.329063039000097 ], [ -123.16527389299992, 49.329002133000117 ], [ -123.164718647999933, 49.328827939000107 ], [ -123.164353574999922, 49.32871340100013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103166090", "BldgCostT": "63724590", "sL_LossRatio": "0.699090293036532", "sL_AssetLoss": "1217425", "sL_BldgLoss": "851090", "sL_StrLoss": "343720", "sL_NStrLoss": "507370", "sL_ContLoss": "366335", "geom_point": "0101000020E61000003DEB5BFF91CA5EC0D2D5CA4243AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.162329610999976, 49.329751791 ], [ -123.162238785999989, 49.32860742000009 ], [ -123.163520377999959, 49.328614894000054 ], [ -123.164353574999922, 49.32871340100013 ], [ -123.164718647999933, 49.328827939000107 ], [ -123.16527389299992, 49.329002133000117 ], [ -123.165468080999972, 49.329063039000097 ], [ -123.166395790999943, 49.329354108000089 ], [ -123.166399800999955, 49.328321206000076 ], [ -123.168080205999956, 49.328849794000121 ], [ -123.16807649399999, 49.329877295000053 ], [ -123.168079896999984, 49.330654609000106 ], [ -123.168061791999961, 49.331624993000119 ], [ -123.166446214999937, 49.331609701000104 ], [ -123.16436198599996, 49.331609104000073 ], [ -123.164102727999975, 49.331609016000087 ], [ -123.163213307000021, 49.331608690000088 ], [ -123.162423616999916, 49.331608589000048 ], [ -123.162118823999947, 49.331608569000146 ], [ -123.162362102999978, 49.330636197000103 ], [ -123.162329610999976, 49.329751791 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273021500", "BldgCostT": "179570000", "sL_LossRatio": "0.79759779747678", "sL_AssetLoss": "1652650", "sL_BldgLoss": "1318150", "sL_StrLoss": "594880", "sL_NStrLoss": "723270", "sL_ContLoss": "334500", "geom_point": "0101000020E6100000FBCE37BBD8CA5EC08F07F8C13BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168080205999956, 49.328849794000121 ], [ -123.168120712999951, 49.327915989000076 ], [ -123.169169804999939, 49.327969592000095 ], [ -123.16956310099999, 49.328106913000106 ], [ -123.170906680000016, 49.328970696000077 ], [ -123.171054799, 49.329089795000101 ], [ -123.17106350499995, 49.329780799000076 ], [ -123.171030206999916, 49.330777809000018 ], [ -123.170994955999944, 49.331697107000124 ], [ -123.168061791999961, 49.331624993000119 ], [ -123.168079896999984, 49.330654609000106 ], [ -123.16807649399999, 49.329877295000053 ], [ -123.168080205999956, 49.328849794000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193058864", "BldgCostT": "123666936", "sL_LossRatio": "0.702583032225082", "sL_AssetLoss": "2308140", "sL_BldgLoss": "1621660", "sL_StrLoss": "703400", "sL_NStrLoss": "918260", "sL_ContLoss": "686480", "geom_point": "0101000020E61000005E6DC4B42BCB5EC0617C56A19AAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.174903109999917, 49.334112293000068 ], [ -123.173387103999943, 49.333748507000088 ], [ -123.170951809999949, 49.333704610000069 ], [ -123.170953667999967, 49.333562343000075 ], [ -123.170960699999966, 49.332590787000086 ], [ -123.170994955999944, 49.331697107000124 ], [ -123.171030206999916, 49.330777809000018 ], [ -123.17106350499995, 49.329780799000076 ], [ -123.171875992999944, 49.330060582000073 ], [ -123.172647203999944, 49.330497697000048 ], [ -123.173977106, 49.331633090000068 ], [ -123.174778991999972, 49.332131407000062 ], [ -123.175020085999961, 49.332194400000077 ], [ -123.179306776999937, 49.33325829700005 ], [ -123.17929161, 49.333665894000028 ], [ -123.179267883999927, 49.334168702000078 ], [ -123.179181385, 49.335137302000113 ], [ -123.177299881999957, 49.334697303000098 ], [ -123.174903109999917, 49.334112293000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83461834", "BldgCostT": "54723334", "sL_LossRatio": "0.731586932168147", "sL_AssetLoss": "967628", "sL_BldgLoss": "707904", "sL_StrLoss": "318784", "sL_NStrLoss": "389120", "sL_ContLoss": "259724", "geom_point": "0101000020E610000042D47D0052CB5EC03AA2F79D11AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17488520399999, 49.33467570800007 ], [ -123.174903109999917, 49.334112293000068 ], [ -123.177299881999957, 49.334697303000098 ], [ -123.179181385, 49.335137302000113 ], [ -123.179142974999962, 49.335655096000032 ], [ -123.179113693999952, 49.336541415000113 ], [ -123.179092489999931, 49.337454999000052 ], [ -123.179076600999934, 49.338370488000059 ], [ -123.17475419599999, 49.338311590000053 ], [ -123.174781590999928, 49.337389214000027 ], [ -123.17483002299997, 49.336483605000055 ], [ -123.174856982999984, 49.335589990000138 ], [ -123.17488520399999, 49.33467570800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232076323", "BldgCostT": "155079361", "sL_LossRatio": "0.700980240253511", "sL_AssetLoss": "5937728", "sL_BldgLoss": "4162230", "sL_StrLoss": "1775160", "sL_NStrLoss": "2387070", "sL_ContLoss": "1775498", "geom_point": "0101000020E61000001E816731A7CA5EC0EB8D00F24E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161677483999981, 49.167793896000084 ], [ -123.161684896999972, 49.166505903000065 ], [ -123.164356795999936, 49.166504300000099 ], [ -123.16440097899999, 49.166367899000065 ], [ -123.164550994999942, 49.166085094000017 ], [ -123.164553961999971, 49.165797393000098 ], [ -123.16455601, 49.165597809000069 ], [ -123.164558163999985, 49.164978877000088 ], [ -123.164559295999979, 49.164644803000023 ], [ -123.164559325999946, 49.164635809000117 ], [ -123.164568400999926, 49.162809108000047 ], [ -123.166365712999962, 49.162783290000085 ], [ -123.166383590999985, 49.16278301400007 ], [ -123.167998394999955, 49.162759810000125 ], [ -123.168469591999923, 49.16267488600004 ], [ -123.168769987999966, 49.162581901000102 ], [ -123.168854299999964, 49.162502991000025 ], [ -123.169010041999982, 49.162438989000073 ], [ -123.169089110999892, 49.162406493000042 ], [ -123.169395876999914, 49.162612808000119 ], [ -123.169679912999925, 49.16273864699999 ], [ -123.169849686999953, 49.162813888000088 ], [ -123.169884774999957, 49.162819053000078 ], [ -123.169991214999982, 49.165632751000047 ], [ -123.169960650999926, 49.168524490000053 ], [ -123.169806841999915, 49.169434940000023 ], [ -123.169749946999957, 49.169563393000026 ], [ -123.169702893999968, 49.169622113000074 ], [ -123.169416824999942, 49.170085457000035 ], [ -123.169359042999957, 49.170179043000047 ], [ -123.16698550699999, 49.17018129800001 ], [ -123.166985068999935, 49.170147733000078 ], [ -123.16698428799999, 49.170088504000084 ], [ -123.166983892999909, 49.169589947000169 ], [ -123.166983725999927, 49.16938320100008 ], [ -123.16698321599992, 49.168734498000113 ], [ -123.168145582999941, 49.168738105000067 ], [ -123.168061315999978, 49.168389002000012 ], [ -123.168058799999955, 49.168185210000033 ], [ -123.168055992999925, 49.167957397000116 ], [ -123.168009004999973, 49.167760693000091 ], [ -123.167840615, 49.167397704000052 ], [ -123.167449127999987, 49.16745499700005 ], [ -123.166855899999959, 49.167673597000046 ], [ -123.166615304999951, 49.167460100000099 ], [ -123.166280694999941, 49.16728280400006 ], [ -123.165838099999974, 49.167234208000053 ], [ -123.16567265399999, 49.167231462000082 ], [ -123.165560109999916, 49.16722960400012 ], [ -123.164536588999951, 49.167219791000065 ], [ -123.164523114999966, 49.168048194000022 ], [ -123.164508813999987, 49.168732481000099 ], [ -123.164498508999912, 49.170093401000059 ], [ -123.164497288999897, 49.17013326500004 ], [ -123.164495789999975, 49.170181599000053 ], [ -123.161711736999962, 49.170189959000098 ], [ -123.161685570999907, 49.170190054000088 ], [ -123.161669594999978, 49.170102596000063 ], [ -123.161677483999981, 49.167793896000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94851500", "BldgCostT": "62420000", "sL_LossRatio": "0.724186205122376", "sL_AssetLoss": "1671490", "sL_BldgLoss": "1210470", "sL_StrLoss": "486150", "sL_NStrLoss": "724320", "sL_ContLoss": "461020", "geom_point": "0101000020E61000007A39786890C95EC0080B1FF8B5954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147731290999971, 49.169019901000055 ], [ -123.14942105099999, 49.169019033000083 ], [ -123.151165708999883, 49.169018098000095 ], [ -123.151152994999961, 49.170119505000059 ], [ -123.151153788999949, 49.170178722000053 ], [ -123.151154179999963, 49.170212299000077 ], [ -123.147719938999956, 49.170211117000051 ], [ -123.147706186999983, 49.170211107000064 ], [ -123.147706119999924, 49.170200952000137 ], [ -123.147705589999973, 49.17013181500009 ], [ -123.147731290999971, 49.169019901000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275001585", "BldgCostT": "183688335", "sL_LossRatio": "0.730800113609427", "sL_AssetLoss": "5619252", "sL_BldgLoss": "4106550", "sL_StrLoss": "1829290", "sL_NStrLoss": "2277260", "sL_ContLoss": "1512702", "geom_point": "0101000020E61000009FB01FBD3CCB5EC0BFA2421249904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.180731674999919, 49.125178264000098 ], [ -123.181201290999951, 49.125180488000105 ], [ -123.181210122999985, 49.126156849000083 ], [ -123.181212495999958, 49.126420502000016 ], [ -123.18121889299999, 49.126540404000124 ], [ -123.181222867999935, 49.127308210000116 ], [ -123.181223180999922, 49.127373901000063 ], [ -123.181232992999966, 49.12834260300005 ], [ -123.181247411999962, 49.129280780000066 ], [ -123.179715012999964, 49.129275802000073 ], [ -123.178334212999943, 49.129285314000107 ], [ -123.177377216999986, 49.129291895000073 ], [ -123.177292223999956, 49.129292203000098 ], [ -123.175839884999931, 49.129297515000076 ], [ -123.175345153999928, 49.129303037000021 ], [ -123.174635633999969, 49.129310964000162 ], [ -123.173890803999939, 49.129319295000066 ], [ -123.171614896000037, 49.129331582000091 ], [ -123.170725727, 49.129334299000021 ], [ -123.16998615599999, 49.129337452000065 ], [ -123.170006541999953, 49.128049737000048 ], [ -123.170031338999976, 49.126693833000012 ], [ -123.170032173999957, 49.126682397000103 ], [ -123.170029173999936, 49.126267537000047 ], [ -123.169828696999915, 49.126178312000022 ], [ -123.169970377999974, 49.126083780000116 ], [ -123.169962793999957, 49.125126905000094 ], [ -123.16998628, 49.125127041000049 ], [ -123.172907612999978, 49.125144003000038 ], [ -123.173718107999917, 49.125148097000071 ], [ -123.174276059999926, 49.125149804000024 ], [ -123.174933954999972, 49.125151829000153 ], [ -123.175347702999929, 49.125153094000041 ], [ -123.176645198999921, 49.125159101000122 ], [ -123.176921450999913, 49.125160364000074 ], [ -123.177788994999915, 49.125164354000098 ], [ -123.178802403999953, 49.125169 ], [ -123.180731674999919, 49.125178264000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "851256114", "BldgCostT": "581026936", "sL_LossRatio": "0.812079279864783", "sL_AssetLoss": "8862780", "sL_BldgLoss": "7197280", "sL_StrLoss": "3502500", "sL_NStrLoss": "3694780", "sL_ContLoss": "1665500", "geom_point": "0101000020E610000081FB2A8E3DC85EC07F4C101AE6954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125988492999952, 49.170182209000068 ], [ -123.12626292000003, 49.170184830000082 ], [ -123.127976332999964, 49.170201215000063 ], [ -123.130500535999914, 49.170225292000055 ], [ -123.131510416999973, 49.17023491000004 ], [ -123.131558195999986, 49.171972111000066 ], [ -123.130351322999942, 49.171966336000061 ], [ -123.129721063999952, 49.171963351000045 ], [ -123.127914515000015, 49.171954700000065 ], [ -123.125998801999941, 49.171945487000059 ], [ -123.125988492999952, 49.170182209000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "281779083", "BldgCostT": "190173333", "sL_LossRatio": "0.72884385790806", "sL_AssetLoss": "4665430", "sL_BldgLoss": "3400370", "sL_StrLoss": "1418710", "sL_NStrLoss": "1981660", "sL_ContLoss": "1265060", "geom_point": "0101000020E610000013FE4E8B28AB5EC0C1E226593D9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.665568329999957, 49.221654619000063 ], [ -122.664512043999977, 49.221249285000077 ], [ -122.666846372999927, 49.221263885000113 ], [ -122.668950743999957, 49.221277015000105 ], [ -122.668975052999926, 49.220789235000034 ], [ -122.669001172999955, 49.220265882 ], [ -122.669041709999959, 49.219453687000048 ], [ -122.669067975999951, 49.218928311000091 ], [ -122.669086248999932, 49.218561759000046 ], [ -122.66909416699994, 49.218402786000084 ], [ -122.66910416599994, 49.21820288600005 ], [ -122.669113644000021, 49.21801315800009 ], [ -122.669125623999918, 49.217920769000045 ], [ -122.669132539999922, 49.217780212000044 ], [ -122.669121116000014, 49.217201498000165 ], [ -122.669427404000018, 49.217236188000044 ], [ -122.671532407999933, 49.217230088000051 ], [ -122.672368673999969, 49.217226196000119 ], [ -122.67318397599999, 49.217223915000012 ], [ -122.67359588399998, 49.217222771000138 ], [ -122.673911832, 49.217221868000138 ], [ -122.674172709999965, 49.217221149000075 ], [ -122.675070891999965, 49.217218614000096 ], [ -122.676319979, 49.217220192000077 ], [ -122.67648471699999, 49.217220703000137 ], [ -122.678260705999932, 49.217207002000031 ], [ -122.68082801099996, 49.217184314000107 ], [ -122.680808117999973, 49.218038807 ], [ -122.680778695999962, 49.220773410000092 ], [ -122.680789686999958, 49.221849597000116 ], [ -122.680759187999939, 49.222103919000098 ], [ -122.680710257, 49.222698970000117 ], [ -122.680703513, 49.222770244000081 ], [ -122.680717520999934, 49.223339504000116 ], [ -122.676958083999935, 49.221769396000106 ], [ -122.676561211, 49.221713900000061 ], [ -122.676328815999909, 49.221738300000048 ], [ -122.675999308999934, 49.221795704000051 ], [ -122.675704313999915, 49.22198480300009 ], [ -122.675511590999974, 49.222222093000042 ], [ -122.675500111999966, 49.222478594000094 ], [ -122.675597109999941, 49.223232199000073 ], [ -122.675682307999949, 49.223691597000069 ], [ -122.675831917999972, 49.223903504000127 ], [ -122.676056, 49.224072605000053 ], [ -122.676178912999958, 49.22411958800005 ], [ -122.677181407999981, 49.224519896000075 ], [ -122.677315286999942, 49.22460520000007 ], [ -122.677467902999965, 49.224871193000084 ], [ -122.677205681999979, 49.22494689400002 ], [ -122.676981491999925, 49.225049004000013 ], [ -122.676205270999958, 49.225822460000074 ], [ -122.672999400999913, 49.224574747000048 ], [ -122.670105293999924, 49.223358916000016 ], [ -122.669254356999943, 49.223036332000028 ], [ -122.669093966, 49.222975529000081 ], [ -122.666821700999961, 49.222172723000028 ], [ -122.665568329999957, 49.221654619000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1371744470", "BldgCostT": "934119428", "sL_LossRatio": "0.798020608774685", "sL_AssetLoss": "16508308", "sL_BldgLoss": "13173970", "sL_StrLoss": "5993650", "sL_NStrLoss": "7180320", "sL_ContLoss": "3334338", "geom_point": "0101000020E6100000C44BA4B853C95EC0ACC852D260944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143638113999913, 49.162674811000109 ], [ -123.14364012099999, 49.162494875000064 ], [ -123.143645934999981, 49.161975498000089 ], [ -123.143657209999915, 49.160970671000086 ], [ -123.143661562999952, 49.160581377000014 ], [ -123.143664949999931, 49.160279702000061 ], [ -123.143666592999963, 49.160131335000045 ], [ -123.143673160999924, 49.159544014000105 ], [ -123.143674927999925, 49.159386706000049 ], [ -123.143687380999921, 49.1582747140001 ], [ -123.143696712999912, 49.157442403000054 ], [ -123.143702025999943, 49.156967886000089 ], [ -123.143704270999962, 49.156767662000036 ], [ -123.143717290999959, 49.155605090000073 ], [ -123.147800902999961, 49.155594391000065 ], [ -123.147799075999941, 49.156968464000073 ], [ -123.147798002999963, 49.157765386000094 ], [ -123.147796116, 49.158868892000065 ], [ -123.147792295999977, 49.15998048800008 ], [ -123.147789816999961, 49.161093893 ], [ -123.147770781999967, 49.162677102000089 ], [ -123.147770711999968, 49.162791504000047 ], [ -123.146480633999943, 49.162793060000098 ], [ -123.14364968599989, 49.162796404000034 ], [ -123.143638113999913, 49.162674811000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "400880525", "BldgCostT": "258569161", "sL_LossRatio": "0.731533051338054", "sL_AssetLoss": "7139363", "sL_BldgLoss": "5222680", "sL_StrLoss": "2314050", "sL_NStrLoss": "2908630", "sL_ContLoss": "1916683", "geom_point": "0101000020E61000006C2C58B2FCC75EC07F977B16BE914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11912850499999, 49.138556083000012 ], [ -123.11914518499999, 49.137754804000096 ], [ -123.116881006999947, 49.137746392000089 ], [ -123.116682283999978, 49.137792400000073 ], [ -123.116255980999981, 49.137994506000084 ], [ -123.115995000999987, 49.138071289000024 ], [ -123.115787991999952, 49.138094606000074 ], [ -123.115560788999943, 49.138091196000062 ], [ -123.115512189999919, 49.137836700000022 ], [ -123.115413610999923, 49.137659311000043 ], [ -123.115253411999902, 49.137481106000109 ], [ -123.116286005999925, 49.13700161000007 ], [ -123.116523976999957, 49.13694129800006 ], [ -123.116708717999956, 49.136923697000078 ], [ -123.117818285999974, 49.136947996000075 ], [ -123.119124798999934, 49.136956893000018 ], [ -123.120815191999895, 49.136954476000035 ], [ -123.120944299999962, 49.136954301000081 ], [ -123.121073291999906, 49.13686218600003 ], [ -123.121091494999973, 49.136347412000127 ], [ -123.121023808999936, 49.136223894000068 ], [ -123.120757591999961, 49.13594199100001 ], [ -123.1206233, 49.135765510000084 ], [ -123.120347008999971, 49.135470704000099 ], [ -123.120367989999963, 49.134976707000085 ], [ -123.120570932999925, 49.134797404000068 ], [ -123.120875901999966, 49.13451728800004 ], [ -123.121133204000017, 49.134389008 ], [ -123.121453876999936, 49.13429849900006 ], [ -123.121850593999923, 49.134263207000053 ], [ -123.122049654999927, 49.134263387000104 ], [ -123.122341007999978, 49.134263694 ], [ -123.122713809999965, 49.13430519200007 ], [ -123.123051613999948, 49.134404283000073 ], [ -123.123201398999981, 49.134506490000014 ], [ -123.123652019999895, 49.135262687000079 ], [ -123.123667699999956, 49.13538470200011 ], [ -123.123728921999955, 49.136057598000015 ], [ -123.123768411999933, 49.136814485000095 ], [ -123.123779289999931, 49.137081393000109 ], [ -123.123828979, 49.13723050300009 ], [ -123.123947194999914, 49.13735799700008 ], [ -123.124088783, 49.137438917000111 ], [ -123.12413902, 49.137467601000075 ], [ -123.124360699999968, 49.13753841300008 ], [ -123.125323587999958, 49.137630792000074 ], [ -123.127033203999986, 49.137635898000049 ], [ -123.127645697999952, 49.137700002000088 ], [ -123.128108404999921, 49.137816887000078 ], [ -123.129076803999965, 49.138087802000015 ], [ -123.129581506999898, 49.138146287000033 ], [ -123.129901271999955, 49.13814633800007 ], [ -123.132128403999957, 49.138146592000041 ], [ -123.13347078799994, 49.138150902000135 ], [ -123.133476112999972, 49.140867200000109 ], [ -123.131660006999965, 49.140854899000033 ], [ -123.129455871999966, 49.140841607000084 ], [ -123.128263200000021, 49.140834402000081 ], [ -123.127996283999963, 49.14083280300008 ], [ -123.125438585999973, 49.140840703000066 ], [ -123.125243101999928, 49.14084130100008 ], [ -123.124533845, 49.140834672000082 ], [ -123.121873100999963, 49.140809798000085 ], [ -123.120439411999925, 49.140795694000055 ], [ -123.119764317999937, 49.140789398000081 ], [ -123.11905248, 49.140779293 ], [ -123.119057601999884, 49.140365087000063 ], [ -123.119095582999989, 49.140194002000101 ], [ -123.11912850499999, 49.138556083000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "338648606", "BldgCostT": "216097492", "sL_LossRatio": "0.675210776612839", "sL_AssetLoss": "6463478", "sL_BldgLoss": "4364210", "sL_StrLoss": "1708990", "sL_NStrLoss": "2655220", "sL_ContLoss": "2099268", "geom_point": "0101000020E6100000925F81E0D8C95EC0D8A8665A8B934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.149918799999966, 49.151853290000112 ], [ -123.149958289, 49.148302207000043 ], [ -123.153255989999948, 49.148312900000043 ], [ -123.153269407999943, 49.149169103000091 ], [ -123.153247579999928, 49.149862193000075 ], [ -123.153231867999935, 49.15025226000008 ], [ -123.153229732999961, 49.150305271000043 ], [ -123.153226506999914, 49.150385087000096 ], [ -123.153472002999962, 49.150785185000089 ], [ -123.153891090999963, 49.151325997000114 ], [ -123.154128512999947, 49.151523306000051 ], [ -123.154675826999949, 49.151335110000055 ], [ -123.15499909499998, 49.151293199000101 ], [ -123.157521604999943, 49.151278710000028 ], [ -123.157696906999945, 49.151279791000043 ], [ -123.157950088999925, 49.151241393000056 ], [ -123.15846099099997, 49.151109799000061 ], [ -123.158935010999969, 49.151091700000102 ], [ -123.158930013999949, 49.151553703000019 ], [ -123.158930386999941, 49.153481712 ], [ -123.15893080599993, 49.155579690000074 ], [ -123.156155808999969, 49.155594789000048 ], [ -123.155758123999973, 49.155594311000044 ], [ -123.15548376199996, 49.155593972000091 ], [ -123.154345431999943, 49.155592568000046 ], [ -123.150864524999974, 49.155588199000178 ], [ -123.149918373999981, 49.155594599000118 ], [ -123.149918799999966, 49.151853290000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "484283388", "BldgCostT": "328657081", "sL_LossRatio": "0.801242994471369", "sL_AssetLoss": "2374910", "sL_BldgLoss": "1902880", "sL_StrLoss": "864030", "sL_NStrLoss": "1038850", "sL_ContLoss": "472030", "geom_point": "0101000020E610000082AAF303B2B95EC077704D0D769F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.906814404999963, 49.248120412000048 ], [ -122.906501180999967, 49.247111403000062 ], [ -122.90572287699996, 49.247145793000058 ], [ -122.904500103999936, 49.247132409000095 ], [ -122.904489041999909, 49.247134506000073 ], [ -122.90394359199999, 49.247238014000025 ], [ -122.903704284999961, 49.247181604000055 ], [ -122.903401080999956, 49.246950391000077 ], [ -122.903135289999938, 49.246796805000052 ], [ -122.903008695999944, 49.246635493000049 ], [ -122.903012304999919, 49.246437383000099 ], [ -122.901923202999953, 49.246296627000042 ], [ -122.901803091000019, 49.246281097000058 ], [ -122.901260777999966, 49.246171014000048 ], [ -122.90098289599996, 49.24611461100011 ], [ -122.900210879999975, 49.245957903000061 ], [ -122.900136656999976, 49.245952133000046 ], [ -122.899934891999948, 49.24593641500006 ], [ -122.899736608999902, 49.24596498600004 ], [ -122.899536508999972, 49.246040300000047 ], [ -122.89950797099999, 49.246061045000054 ], [ -122.89939940399999, 49.246139898000074 ], [ -122.89930531499999, 49.246253399000132 ], [ -122.899272351999969, 49.2463743980001 ], [ -122.899268798999955, 49.246387510000027 ], [ -122.899251102999983, 49.246919407000085 ], [ -122.899196106999952, 49.247537713000078 ], [ -122.89913751200001, 49.247695389000093 ], [ -122.899127009999972, 49.247704598000077 ], [ -122.898904094000031, 49.247899506000046 ], [ -122.898452728999956, 49.248065541000123 ], [ -122.89819299, 49.248161101000079 ], [ -122.897649182999942, 49.248529197000074 ], [ -122.895919949999964, 49.247594532000114 ], [ -122.892765920999963, 49.245889597000058 ], [ -122.89257652099991, 49.245785034000015 ], [ -122.892581163999949, 49.244649137000067 ], [ -122.892578383999975, 49.244526534000045 ], [ -122.892650352999979, 49.244416012000066 ], [ -122.892604566999964, 49.24280155600006 ], [ -122.892599269999948, 49.242614564000071 ], [ -122.892602301999929, 49.242365094000107 ], [ -122.892601914999958, 49.242288845000068 ], [ -122.89260128699999, 49.242174111000054 ], [ -122.892595692999933, 49.241875152000041 ], [ -122.892580943999945, 49.241092436000081 ], [ -122.892576414999922, 49.240849494000102 ], [ -122.892573362999954, 49.240687601000083 ], [ -122.892543079999925, 49.239076984000121 ], [ -122.89254108799993, 49.238971488000089 ], [ -122.892527560999909, 49.238734670000106 ], [ -122.892523960999981, 49.238671794000084 ], [ -122.8924986869999, 49.23822970800007 ], [ -122.892501569999979, 49.238160127000086 ], [ -122.892502052999987, 49.238147558000037 ], [ -122.892505970999935, 49.238052262000046 ], [ -122.892506752999964, 49.238033420000129 ], [ -122.892655083999955, 49.238078502000072 ], [ -122.893342199999921, 49.238044287000022 ], [ -122.893781614999966, 49.238323405000088 ], [ -122.893984985999936, 49.238755002000033 ], [ -122.89420340599996, 49.240275999000112 ], [ -122.894259232999971, 49.240384555000084 ], [ -122.893479628999955, 49.240362101000109 ], [ -122.893458905999978, 49.240671684000048 ], [ -122.893466180999951, 49.240671690000163 ], [ -122.893465599999956, 49.24094154700007 ], [ -122.893877747999952, 49.240941927000037 ], [ -122.893877169999911, 49.241211784 ], [ -122.894289321999963, 49.241212161000078 ], [ -122.89428926, 49.241240873000088 ], [ -122.894731989999983, 49.241253622000038 ], [ -122.894716680999977, 49.241482408000074 ], [ -122.895919469999967, 49.241483498000086 ], [ -122.895973093999942, 49.241500811000058 ], [ -122.896349093999945, 49.241685099000044 ], [ -122.896348949999961, 49.241753742000064 ], [ -122.896489399999908, 49.241753867000106 ], [ -122.896760827999955, 49.241886900000097 ], [ -122.896760542999942, 49.242023967000073 ], [ -122.896998362999938, 49.242024179000055 ], [ -122.897550506999934, 49.242517689000088 ], [ -122.897583802999989, 49.242534925000093 ], [ -122.897583185999977, 49.242834270000088 ], [ -122.897995350999935, 49.242834635000037 ], [ -122.897994793999956, 49.2431044920001 ], [ -122.898718, 49.243105129000121 ], [ -122.900255482999924, 49.243527502000063 ], [ -122.90170309899996, 49.243712165000048 ], [ -122.901702155999928, 49.244187135000139 ], [ -122.90252650799998, 49.244187832000087 ], [ -122.902525445999942, 49.244727546000092 ], [ -122.903761987999971, 49.244728583000082 ], [ -122.903761463999956, 49.244998440000096 ], [ -122.904173646999979, 49.244998782000081 ], [ -122.904173124999929, 49.245268638000034 ], [ -122.904997495999979, 49.24526931900008 ], [ -122.904996976999939, 49.245539176000122 ], [ -122.905409164999952, 49.245539515000111 ], [ -122.905408133, 49.246079227000102 ], [ -122.906644709999924, 49.246080233000072 ], [ -122.906645819999952, 49.245491351000119 ], [ -122.906430764999953, 49.245485182000031 ], [ -122.906471218999968, 49.244878339000074 ], [ -122.906109891999947, 49.244867975000048 ], [ -122.906130829999938, 49.244553909000018 ], [ -122.905833099999967, 49.244545368000075 ], [ -122.905838925999973, 49.244457989000161 ], [ -122.906901981999951, 49.244721004000048 ], [ -122.907506497999975, 49.245252189000063 ], [ -122.908319092999989, 49.245688932000071 ], [ -122.908517180999979, 49.245795407000116 ], [ -122.908630120999973, 49.245856102000126 ], [ -122.908713201999916, 49.246170796000058 ], [ -122.908559993999972, 49.246566797000085 ], [ -122.908916990999927, 49.246944206000038 ], [ -122.909142961999962, 49.24714801500005 ], [ -122.909396988999958, 49.24737709700004 ], [ -122.909877490999946, 49.247619205000056 ], [ -122.9103869, 49.24764770200003 ], [ -122.91112949799998, 49.247566497000044 ], [ -122.911609399999975, 49.247658463000107 ], [ -122.912939918999939, 49.24791343400009 ], [ -122.913106778000014, 49.247945398000105 ], [ -122.913901913999908, 49.248513693000049 ], [ -122.914230674999985, 49.249232894000066 ], [ -122.914370432999974, 49.249302610000044 ], [ -122.914365877999899, 49.249310045000087 ], [ -122.914321905999927, 49.249381289000034 ], [ -122.914256396999988, 49.249498307000074 ], [ -122.914256131999963, 49.249557035000066 ], [ -122.914254404999937, 49.24990792300008 ], [ -122.914251349999972, 49.250546582 ], [ -122.914250296999967, 49.250766594 ], [ -122.913627085999934, 49.252464921000069 ], [ -122.913574550999954, 49.252608087000034 ], [ -122.91261839399999, 49.252479810000132 ], [ -122.912604952, 49.252477988000088 ], [ -122.912475582999932, 49.252460790000093 ], [ -122.912489914, 49.252307148000064 ], [ -122.912603401999903, 49.250973509000048 ], [ -122.912684681999963, 49.250866823000067 ], [ -122.912705541999969, 49.25061518100005 ], [ -122.911500629000017, 49.2503440320001 ], [ -122.911104605999967, 49.250254898 ], [ -122.910739095999986, 49.250228993000071 ], [ -122.909945405999949, 49.250172728000059 ], [ -122.90932545899993, 49.250128774000117 ], [ -122.909293197999958, 49.250126506000058 ], [ -122.909190955999946, 49.25010890500009 ], [ -122.909023240999915, 49.250080052 ], [ -122.909022407999885, 49.250079904000124 ], [ -122.909021629, 49.250079767000017 ], [ -122.908740512999927, 49.250031398000097 ], [ -122.907832684999946, 49.249163235000019 ], [ -122.907694588999902, 49.249031216000049 ], [ -122.90735020599999, 49.248690260000053 ], [ -122.907117300999943, 49.2484596850001 ], [ -122.906944260999978, 49.248265862000046 ], [ -122.906814404999963, 49.248120412000048 ] ], [ [ -122.908422040999952, 49.247700798000047 ], [ -122.908444535999948, 49.247363180000036 ], [ -122.90835202099997, 49.247360528000087 ], [ -122.908365312999976, 49.247161038000122 ], [ -122.908291478999956, 49.247160980000096 ], [ -122.908290478999959, 49.247700693000048 ], [ -122.908422040999952, 49.247700798000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99400916", "BldgCostT": "65681666", "sL_LossRatio": "0.764712339794901", "sL_AssetLoss": "1093130", "sL_BldgLoss": "835930", "sL_StrLoss": "369360", "sL_NStrLoss": "466570", "sL_ContLoss": "257200", "geom_point": "0101000020E6100000DFF37831BFB95EC0E546AA52A79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.898904094000031, 49.247899506000046 ], [ -122.899127009999972, 49.247704598000077 ], [ -122.89913751200001, 49.247695389000093 ], [ -122.899196106999952, 49.247537713000078 ], [ -122.899251102999983, 49.246919407000085 ], [ -122.899268798999955, 49.246387510000027 ], [ -122.899272351999969, 49.2463743980001 ], [ -122.89930531499999, 49.246253399000132 ], [ -122.89939940399999, 49.246139898000074 ], [ -122.89950797099999, 49.246061045000054 ], [ -122.899536508999972, 49.246040300000047 ], [ -122.899736608999902, 49.24596498600004 ], [ -122.899934891999948, 49.24593641500006 ], [ -122.900136656999976, 49.245952133000046 ], [ -122.900210879999975, 49.245957903000061 ], [ -122.90098289599996, 49.24611461100011 ], [ -122.901260777999966, 49.246171014000048 ], [ -122.901803091000019, 49.246281097000058 ], [ -122.901923202999953, 49.246296627000042 ], [ -122.903012304999919, 49.246437383000099 ], [ -122.903008695999944, 49.246635493000049 ], [ -122.903135289999938, 49.246796805000052 ], [ -122.903401080999956, 49.246950391000077 ], [ -122.903704284999961, 49.247181604000055 ], [ -122.90394359199999, 49.247238014000025 ], [ -122.904489041999909, 49.247134506000073 ], [ -122.904500103999936, 49.247132409000095 ], [ -122.90572287699996, 49.247145793000058 ], [ -122.906501180999967, 49.247111403000062 ], [ -122.906814404999963, 49.248120412000048 ], [ -122.905113587999963, 49.24812650800002 ], [ -122.904400713999948, 49.248102627000058 ], [ -122.90422559299995, 49.248095994000039 ], [ -122.903325891999955, 49.248101711000039 ], [ -122.901973508999973, 49.248110293000082 ], [ -122.899932384999886, 49.248083677000118 ], [ -122.89956512, 49.248078902000088 ], [ -122.899552392999951, 49.248075434000093 ], [ -122.898904094000031, 49.247899506000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "429050070", "BldgCostT": "286043975", "sL_LossRatio": "0.819226423114005", "sL_AssetLoss": "4823050", "sL_BldgLoss": "3951170", "sL_StrLoss": "1827120", "sL_NStrLoss": "2124050", "sL_ContLoss": "871880", "geom_point": "0101000020E6100000EB47810DA1B95EC074072DFBE09F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.897649182999942, 49.248529197000074 ], [ -122.89819299, 49.248161101000079 ], [ -122.898452728999956, 49.248065541000123 ], [ -122.898904094000031, 49.247899506000046 ], [ -122.899552392999951, 49.248075434000093 ], [ -122.89956512, 49.248078902000088 ], [ -122.899932384999886, 49.248083677000118 ], [ -122.901973508999973, 49.248110293000082 ], [ -122.90197945599999, 49.248685464000161 ], [ -122.901981744999958, 49.248907754000058 ], [ -122.90198179099994, 49.248912309000076 ], [ -122.902148819999951, 49.24929090200007 ], [ -122.902007254999916, 49.249633276000075 ], [ -122.901902470999971, 49.249915536000088 ], [ -122.901805909999922, 49.250100760000031 ], [ -122.902559687999968, 49.250446591000049 ], [ -122.903699493999952, 49.251017462000064 ], [ -122.903216693, 49.250927883000067 ], [ -122.902051631999939, 49.25057976100009 ], [ -122.901772807999961, 49.250496455000075 ], [ -122.901712389999886, 49.250478378000032 ], [ -122.900343002999975, 49.249901205000057 ], [ -122.899309565999943, 49.249391039000045 ], [ -122.899160393000017, 49.249317392000044 ], [ -122.89897169799994, 49.249224230000017 ], [ -122.898186302999989, 49.248836505000078 ], [ -122.897649182999942, 49.248529197000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287140500", "BldgCostT": "187425000", "sL_LossRatio": "0.726409307853022", "sL_AssetLoss": "4173680", "sL_BldgLoss": "3031800", "sL_StrLoss": "1375080", "sL_NStrLoss": "1656720", "sL_ContLoss": "1141880", "geom_point": "0101000020E61000007C4B4941FDC15EC00FA3E6CC72AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.027566680999911, 49.335974696000029 ], [ -123.027537498999962, 49.335142489000098 ], [ -123.027460799000011, 49.334752200000032 ], [ -123.027295274999943, 49.334478397000055 ], [ -123.026870222999989, 49.333749698000119 ], [ -123.026420492999975, 49.333038407000039 ], [ -123.02616509299996, 49.332323415000133 ], [ -123.026097916999959, 49.331955003000068 ], [ -123.02609638699991, 49.3316576980001 ], [ -123.026187900999943, 49.331432389000078 ], [ -123.026747320999945, 49.330626302000049 ], [ -123.02689150799992, 49.330416798000023 ], [ -123.027079819999955, 49.329326792000053 ], [ -123.02731889899998, 49.327830102000064 ], [ -123.027360955999924, 49.327564860000052 ], [ -123.027367424999966, 49.327524301000047 ], [ -123.027525209999936, 49.327188202000052 ], [ -123.027729213, 49.327009997000083 ], [ -123.028121504999959, 49.326750595000064 ], [ -123.02855856499994, 49.326571815000079 ], [ -123.02900452199998, 49.326389403000064 ], [ -123.029164641999984, 49.326313156000012 ], [ -123.029353558999929, 49.326223225000035 ], [ -123.029520416999944, 49.326143812000097 ], [ -123.029628779999953, 49.326092191000086 ], [ -123.029760813999971, 49.326013663000047 ], [ -123.029886309999981, 49.325938987000065 ], [ -123.030107074999989, 49.325219094000069 ], [ -123.03049679799993, 49.326179109000059 ], [ -123.03087878499997, 49.32680838800006 ], [ -123.031909717999937, 49.326415190000084 ], [ -123.032278993999938, 49.326319893000068 ], [ -123.032667309999923, 49.326270286000067 ], [ -123.032799122999918, 49.326253195000099 ], [ -123.033421909999973, 49.326259500000027 ], [ -123.033906012999978, 49.326325899000025 ], [ -123.034778283999941, 49.326603797000075 ], [ -123.034708308999939, 49.327440390000099 ], [ -123.033496323999884, 49.32718200300009 ], [ -123.033443502999944, 49.328328888000094 ], [ -123.033374914999968, 49.329571790000109 ], [ -123.034584115999934, 49.329594189000062 ], [ -123.034539598999956, 49.330354104000058 ], [ -123.034510036999933, 49.330882521000056 ], [ -123.034506015999938, 49.330954385000048 ], [ -123.034463764999927, 49.331709927000141 ], [ -123.034425294999934, 49.332397304000061 ], [ -123.034374319999984, 49.333258800000124 ], [ -123.036310302999965, 49.333320886000109 ], [ -123.036258194999931, 49.334285884000117 ], [ -123.036207121999936, 49.335235596000068 ], [ -123.036220868999976, 49.335235878000105 ], [ -123.037814800999939, 49.335268898000052 ], [ -123.037788513999885, 49.335916604000062 ], [ -123.037946290999969, 49.336246994000057 ], [ -123.033132042999981, 49.33609680700004 ], [ -123.032696286999979, 49.336083214000034 ], [ -123.03001671499996, 49.336027590000128 ], [ -123.027566680999911, 49.335974696000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230512917", "BldgCostT": "154061667", "sL_LossRatio": "0.710758567530987", "sL_AssetLoss": "4916965", "sL_BldgLoss": "3494775", "sL_StrLoss": "1474335", "sL_NStrLoss": "2020440", "sL_ContLoss": "1422190", "geom_point": "0101000020E61000004F0BB9AD08C25EC03FDFBB7262A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02085995, 49.335961212000072 ], [ -123.020859728999966, 49.335438014000026 ], [ -123.022098542999956, 49.335437784000121 ], [ -123.022098301999961, 49.334898078000016 ], [ -123.022511234999982, 49.334897998000073 ], [ -123.022511110999943, 49.334628145000082 ], [ -123.02292404399999, 49.3346280640001 ], [ -123.022923793, 49.33408835900007 ], [ -123.023336719999961, 49.334088276000095 ], [ -123.023336464999929, 49.333548571000165 ], [ -123.023749385999977, 49.333548486000048 ], [ -123.023749255999917, 49.33327863400006 ], [ -123.024162178, 49.333278548000067 ], [ -123.024161912999944, 49.332738843000079 ], [ -123.024574828999903, 49.332738756000083 ], [ -123.02457442599993, 49.331929198000097 ], [ -123.024987334999963, 49.331929109000079 ], [ -123.024986515999942, 49.330309991000064 ], [ -123.025399409999935, 49.330309901000142 ], [ -123.025398995, 49.329500342000088 ], [ -123.025811883, 49.329500251000084 ], [ -123.025811599999898, 49.328960545000022 ], [ -123.026224483999925, 49.328960451000079 ], [ -123.026223767999966, 49.327611186000063 ], [ -123.026636639999978, 49.327611091000072 ], [ -123.026635766999931, 49.325991974000061 ], [ -123.027048624999978, 49.325991878000103 ], [ -123.027048330999961, 49.325452172000013 ], [ -123.026222621, 49.325452362000121 ], [ -123.026222764999943, 49.325722214000074 ], [ -123.025616658999965, 49.325722351000067 ], [ -123.027110893999989, 49.324596304000103 ], [ -123.027935298999978, 49.324200389000033 ], [ -123.028596205999946, 49.323723309000052 ], [ -123.029255907999982, 49.322968507000063 ], [ -123.029379698999989, 49.322670807000101 ], [ -123.029215288, 49.322158101000085 ], [ -123.029227701999943, 49.321772101000064 ], [ -123.029433078999915, 49.32141179300006 ], [ -123.030849807999928, 49.319819504000115 ], [ -123.032142414999953, 49.317812798000126 ], [ -123.033338798, 49.316760286000083 ], [ -123.033419488999968, 49.314124101000097 ], [ -123.033492538999951, 49.313895285000093 ], [ -123.033762951999933, 49.313990307000061 ], [ -123.033924596999967, 49.31404710300005 ], [ -123.034942598999947, 49.314430794000053 ], [ -123.035005523000024, 49.314455669000068 ], [ -123.036327005999965, 49.314977696000042 ], [ -123.036993823, 49.315324716000077 ], [ -123.037239989999989, 49.31549721100005 ], [ -123.037564808999946, 49.315730403000039 ], [ -123.038369847999888, 49.316498252000038 ], [ -123.040600067999947, 49.319311699000068 ], [ -123.040690132999899, 49.319425325000097 ], [ -123.041716267999973, 49.320719663000141 ], [ -123.040163201999945, 49.32061407900013 ], [ -123.039297184999938, 49.320603901000084 ], [ -123.038523196, 49.320598004000068 ], [ -123.03575268900002, 49.320578707000074 ], [ -123.03586958299995, 49.321266496000071 ], [ -123.035599006999945, 49.321691404000056 ], [ -123.035497600999946, 49.321921007000071 ], [ -123.035327204999987, 49.32211181000006 ], [ -123.034816810999956, 49.32245719600013 ], [ -123.034590014999964, 49.322454501000067 ], [ -123.033491281999929, 49.322599094000097 ], [ -123.033167096999975, 49.322763984000019 ], [ -123.032709367999956, 49.323284120000068 ], [ -123.032254587999972, 49.323800891000104 ], [ -123.031636008999968, 49.324545882000031 ], [ -123.031616091999922, 49.324856092000061 ], [ -123.031856701, 49.325202290000036 ], [ -123.032211012999937, 49.325362392000066 ], [ -123.03270860299989, 49.325412109000062 ], [ -123.03264860199999, 49.325811306000091 ], [ -123.032667309999923, 49.326270286000067 ], [ -123.032278993999938, 49.326319893000068 ], [ -123.031909717999937, 49.326415190000084 ], [ -123.03087878499997, 49.32680838800006 ], [ -123.03049679799993, 49.326179109000059 ], [ -123.030107074999989, 49.325219094000069 ], [ -123.029886309999981, 49.325938987000065 ], [ -123.029760813999971, 49.326013663000047 ], [ -123.029628779999953, 49.326092191000086 ], [ -123.029520416999944, 49.326143812000097 ], [ -123.029353558999929, 49.326223225000035 ], [ -123.029164641999984, 49.326313156000012 ], [ -123.02900452199998, 49.326389403000064 ], [ -123.02855856499994, 49.326571815000079 ], [ -123.028121504999959, 49.326750595000064 ], [ -123.027729213, 49.327009997000083 ], [ -123.027525209999936, 49.327188202000052 ], [ -123.027367424999966, 49.327524301000047 ], [ -123.027360955999924, 49.327564860000052 ], [ -123.02731889899998, 49.327830102000064 ], [ -123.027079819999955, 49.329326792000053 ], [ -123.02689150799992, 49.330416798000023 ], [ -123.026747320999945, 49.330626302000049 ], [ -123.026187900999943, 49.331432389000078 ], [ -123.02609638699991, 49.3316576980001 ], [ -123.026097916999959, 49.331955003000068 ], [ -123.02616509299996, 49.332323415000133 ], [ -123.026420492999975, 49.333038407000039 ], [ -123.026870222999989, 49.333749698000119 ], [ -123.027295274999943, 49.334478397000055 ], [ -123.027460799000011, 49.334752200000032 ], [ -123.027537498999962, 49.335142489000098 ], [ -123.027566680999911, 49.335974696000029 ], [ -123.022987211, 49.335891003000029 ], [ -123.02244351, 49.335893989000091 ], [ -123.022261622999963, 49.33589051900006 ], [ -123.02194097099995, 49.335877385000046 ], [ -123.021734539999912, 49.335922401000076 ], [ -123.021650112999907, 49.335968402000084 ], [ -123.021437909, 49.335966484000025 ], [ -123.02085995, 49.335961212000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "535427926", "BldgCostT": "354222096", "sL_LossRatio": "0.801757604547167", "sL_AssetLoss": "6104900", "sL_BldgLoss": "4894650", "sL_StrLoss": "2227370", "sL_NStrLoss": "2667280", "sL_ContLoss": "1210250", "geom_point": "0101000020E6100000D5D570D3D7B35EC0EF148287AF984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.811736780999979, 49.195204100000097 ], [ -122.810949095999931, 49.195086091000064 ], [ -122.810601814000023, 49.19514969300009 ], [ -122.810446402999972, 49.195114504000053 ], [ -122.810329794999916, 49.195034514000049 ], [ -122.810260997999976, 49.194917097000015 ], [ -122.81030659799994, 49.194812090000042 ], [ -122.810662998999959, 49.1944171990001 ], [ -122.810640899999939, 49.194279612000081 ], [ -122.810531403999917, 49.194076399000096 ], [ -122.810551885999928, 49.193977887000081 ], [ -122.81061648799999, 49.193895990000094 ], [ -122.811418220999926, 49.193349401000077 ], [ -122.81144560599995, 49.193070005000024 ], [ -122.810590989999952, 49.193069006000073 ], [ -122.809788843999982, 49.193072091000083 ], [ -122.809172792999945, 49.193073604000055 ], [ -122.809015894999959, 49.193074558000021 ], [ -122.808687725999945, 49.193073889000075 ], [ -122.806377600999923, 49.193050481000078 ], [ -122.80643421799999, 49.191793841000106 ], [ -122.806445438999958, 49.191544201000049 ], [ -122.807734659999966, 49.191541984000018 ], [ -122.80923436099999, 49.191539385000119 ], [ -122.812448252999928, 49.191533696000072 ], [ -122.812449872999949, 49.191713864000043 ], [ -122.812461502999938, 49.193060402000036 ], [ -122.812464589999934, 49.193915495000091 ], [ -122.812475392999957, 49.195097100000048 ], [ -122.812478126000016, 49.195298990000062 ], [ -122.812172582999935, 49.19531159800011 ], [ -122.811736780999979, 49.195204100000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "925924174", "BldgCostT": "632066466", "sL_LossRatio": "0.833801212703151", "sL_AssetLoss": "9956270", "sL_BldgLoss": "8301550", "sL_StrLoss": "3797280", "sL_NStrLoss": "4504270", "sL_ContLoss": "1654720", "geom_point": "0101000020E61000004BBE0B21C8B35EC072C45A7C0A994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806377600999923, 49.193050481000078 ], [ -122.808687725999945, 49.193073889000075 ], [ -122.809015894999959, 49.193074558000021 ], [ -122.809172792999945, 49.193073604000055 ], [ -122.809788843999982, 49.193072091000083 ], [ -122.810590989999952, 49.193069006000073 ], [ -122.81144560599995, 49.193070005000024 ], [ -122.811418220999926, 49.193349401000077 ], [ -122.81061648799999, 49.193895990000094 ], [ -122.810551885999928, 49.193977887000081 ], [ -122.810531403999917, 49.194076399000096 ], [ -122.810640899999939, 49.194279612000081 ], [ -122.810662998999959, 49.1944171990001 ], [ -122.81030659799994, 49.194812090000042 ], [ -122.810260997999976, 49.194917097000015 ], [ -122.810329794999916, 49.195034514000049 ], [ -122.810446402999972, 49.195114504000053 ], [ -122.810601814000023, 49.19514969300009 ], [ -122.810949095999931, 49.195086091000064 ], [ -122.811736780999979, 49.195204100000097 ], [ -122.812172582999935, 49.19531159800011 ], [ -122.812478126000016, 49.195298990000062 ], [ -122.812479520999915, 49.195878865000083 ], [ -122.812479912999919, 49.196032384000048 ], [ -122.81248148, 49.196909189000053 ], [ -122.81248658399997, 49.197834593000096 ], [ -122.811596093, 49.197874012000042 ], [ -122.809326998999936, 49.197836681000076 ], [ -122.807483101999978, 49.197806320000019 ], [ -122.806247511999985, 49.197816549000073 ], [ -122.806279642999982, 49.196639195000017 ], [ -122.806282024999973, 49.196552775000086 ], [ -122.806283723999968, 49.196490036000085 ], [ -122.806294816999966, 49.19608326900007 ], [ -122.8063164599999, 49.195290227000065 ], [ -122.806345839999935, 49.194213590000096 ], [ -122.80634732399993, 49.194159882000065 ], [ -122.806377600999923, 49.193050481000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1549844043", "BldgCostT": "1043424669", "sL_LossRatio": "0.786380517303711", "sL_AssetLoss": "9128100", "sL_BldgLoss": "7178160", "sL_StrLoss": "3238000", "sL_NStrLoss": "3940160", "sL_ContLoss": "1949940", "geom_point": "0101000020E610000001C191DD98B95EC0F02CDDD1BD9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.898074283999946, 49.219691999000119 ], [ -122.897869696999962, 49.219672586000179 ], [ -122.897426907999929, 49.219663403000048 ], [ -122.89709760099997, 49.219599900000063 ], [ -122.896818827999979, 49.219479304000075 ], [ -122.896640202999933, 49.219316504000105 ], [ -122.896516720999898, 49.219172406000084 ], [ -122.896472974999966, 49.218943194000069 ], [ -122.89645928499999, 49.217546392000074 ], [ -122.896337475999985, 49.217274400000072 ], [ -122.89632762299999, 49.217263882000047 ], [ -122.896064515999939, 49.216983605000088 ], [ -122.895593315999989, 49.216743903000051 ], [ -122.8953371919999, 49.217143472000089 ], [ -122.894666932999911, 49.217816391000035 ], [ -122.893756300999911, 49.219279183 ], [ -122.893117464999975, 49.219234700000065 ], [ -122.893120086999943, 49.219202497000062 ], [ -122.893812813999887, 49.216542204000113 ], [ -122.894214334999944, 49.215394477000089 ], [ -122.894253693999943, 49.215282008000074 ], [ -122.894299181999955, 49.215151982000108 ], [ -122.894323400999923, 49.215082701 ], [ -122.894423763999924, 49.214795782000103 ], [ -122.894782683999935, 49.214221267000028 ], [ -122.895235459999981, 49.213496533000047 ], [ -122.895310586999983, 49.213376228000094 ], [ -122.897643281999976, 49.211082983000054 ], [ -122.897842031999943, 49.211239177000088 ], [ -122.898921174999941, 49.21208735700003 ], [ -122.89938881499998, 49.212419109000081 ], [ -122.89945981599999, 49.212469464000016 ], [ -122.899633068999961, 49.212592405000109 ], [ -122.899672446999958, 49.212620340000051 ], [ -122.899731711999962, 49.212662404000163 ], [ -122.899845031999973, 49.212742785000088 ], [ -122.90107910799999, 49.213746775000075 ], [ -122.901087831999959, 49.21375387200009 ], [ -122.901233780999945, 49.213871723000125 ], [ -122.901793128999913, 49.21432342500006 ], [ -122.902141612999969, 49.214604834000156 ], [ -122.90349644599999, 49.215698863000057 ], [ -122.904431797999919, 49.216454086000034 ], [ -122.904465755999922, 49.21648151800013 ], [ -122.904474407999928, 49.216488523000123 ], [ -122.90492912799999, 49.21684949400008 ], [ -122.905475761999966, 49.217283359000092 ], [ -122.906119602999922, 49.217794393000077 ], [ -122.908374827000017, 49.219587005000072 ], [ -122.908194998999988, 49.219683219000032 ], [ -122.908007181999963, 49.219783723000077 ], [ -122.907379346999974, 49.220119642000093 ], [ -122.906994093999984, 49.220325794000154 ], [ -122.906254900999954, 49.220727989000046 ], [ -122.906091186999944, 49.220589087000036 ], [ -122.905768389999963, 49.220489691000061 ], [ -122.90545128399999, 49.220510287000131 ], [ -122.904807512999952, 49.220551306000047 ], [ -122.904663413999984, 49.22052243200006 ], [ -122.904356495999934, 49.220460885000108 ], [ -122.904135516999958, 49.220377989000092 ], [ -122.903956184, 49.220245797000125 ], [ -122.903913409999944, 49.220209407000056 ], [ -122.902709494999968, 49.21979828800005 ], [ -122.902451308999929, 49.219759297000031 ], [ -122.90103501599998, 49.219754599000041 ], [ -122.900864504999916, 49.219779498000101 ], [ -122.900560723999931, 49.219909495000088 ], [ -122.900354290999928, 49.220061189000035 ], [ -122.900275007999966, 49.220241804000096 ], [ -122.900232892999924, 49.220564008000082 ], [ -122.898757181999954, 49.220544991000054 ], [ -122.898764274999962, 49.220390726000062 ], [ -122.898772523, 49.220212102000033 ], [ -122.898614129999885, 49.219973310000036 ], [ -122.89849778899999, 49.219866289000045 ], [ -122.89827210699994, 49.219750788000042 ], [ -122.898074283999946, 49.219691999000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176874833", "BldgCostT": "109058333", "sL_LossRatio": "0.655133084687942", "sL_AssetLoss": "3927950", "sL_BldgLoss": "2573330", "sL_StrLoss": "1071620", "sL_NStrLoss": "1501710", "sL_ContLoss": "1354620", "geom_point": "0101000020E6100000213760E37CB65EC0DDC0E3FC49944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845685614999965, 49.162688899000067 ], [ -122.845679568999969, 49.161763689000104 ], [ -122.84567380299994, 49.160882165 ], [ -122.845663970999951, 49.15937070600009 ], [ -122.845648681999933, 49.157023218000042 ], [ -122.845646746999989, 49.156726254000041 ], [ -122.845644507999964, 49.15638436700003 ], [ -122.845641865999966, 49.155979584000107 ], [ -122.84563941499999, 49.155601788000048 ], [ -122.845638372999957, 49.155439894000061 ], [ -122.845638251999944, 49.155425187000034 ], [ -122.845751311999962, 49.15542800600015 ], [ -122.845842211999965, 49.155430291000066 ], [ -122.847222798999937, 49.155447289000037 ], [ -122.849340377999951, 49.155451598000113 ], [ -122.851383511000023, 49.155441989000103 ], [ -122.852743282999981, 49.155444004000096 ], [ -122.854033711999975, 49.155435709000116 ], [ -122.856827223999915, 49.155419092000081 ], [ -122.856853573, 49.157118387000018 ], [ -122.856859186999884, 49.157478888000071 ], [ -122.856878425999966, 49.158719796000071 ], [ -122.856881357999924, 49.15890868700005 ], [ -122.856887493999963, 49.159304211000077 ], [ -122.85689171099996, 49.159574694000057 ], [ -122.856888913999967, 49.159736341000013 ], [ -122.856882524999918, 49.160105379000107 ], [ -122.856876096999926, 49.160475304000052 ], [ -122.856894584999978, 49.161427081000056 ], [ -122.856899100999954, 49.161660925000035 ], [ -122.856902241999961, 49.161822951000026 ], [ -122.856917968999966, 49.162634480000101 ], [ -122.85651045399996, 49.162638584000021 ], [ -122.855728343999957, 49.162646403000053 ], [ -122.855330661999943, 49.162650374000052 ], [ -122.854260827999923, 49.162661040000124 ], [ -122.852781585999963, 49.162675798000116 ], [ -122.852792692999927, 49.162105797000038 ], [ -122.854203500999958, 49.162085804000093 ], [ -122.85418630099997, 49.161720370000083 ], [ -122.854162385999985, 49.161213296000042 ], [ -122.854157086999948, 49.16098790500007 ], [ -122.854068400999921, 49.160778890000103 ], [ -122.853390974999911, 49.160112191000074 ], [ -122.853176109999978, 49.159884296 ], [ -122.852962803000011, 49.159754594000084 ], [ -122.852141606999908, 49.159491796000033 ], [ -122.851748493999963, 49.159426189000058 ], [ -122.851078984999958, 49.159433710000037 ], [ -122.850461409999966, 49.159442703000103 ], [ -122.85000368499999, 49.159522093000092 ], [ -122.848689780999962, 49.160055807000091 ], [ -122.847842607999937, 49.16039860300004 ], [ -122.847519096000013, 49.160580092000039 ], [ -122.847308990999963, 49.16084791300009 ], [ -122.847242219999913, 49.161064901 ], [ -122.84724928899999, 49.161263309000077 ], [ -122.847269016999974, 49.161720814000077 ], [ -122.847283909999987, 49.162067102000073 ], [ -122.847402716999952, 49.162135506 ], [ -122.847607406999956, 49.162168493000081 ], [ -122.849286492999937, 49.162154613000041 ], [ -122.849310379999935, 49.162712092000135 ], [ -122.848553918000036, 49.162724703000038 ], [ -122.847622082, 49.162740188000058 ], [ -122.84759472599994, 49.162756352000088 ], [ -122.847543618999907, 49.162786496000123 ], [ -122.845908584999933, 49.162797196000014 ], [ -122.845783135999966, 49.162798179000113 ], [ -122.84568910199998, 49.162798898000077 ], [ -122.845687341999948, 49.162744209000039 ], [ -122.845685614999965, 49.162688899000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185761636", "BldgCostT": "122167079", "sL_LossRatio": "0.69355478112596", "sL_AssetLoss": "6028810", "sL_BldgLoss": "4181310", "sL_StrLoss": "1592040", "sL_NStrLoss": "2589270", "sL_ContLoss": "1847500", "geom_point": "0101000020E6100000A932324CD6B65EC0A9255F01339E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852565496999915, 49.231683193000059 ], [ -122.853740764999941, 49.231522862000098 ], [ -122.859028708999958, 49.232123643000143 ], [ -122.861471728999931, 49.232401113000087 ], [ -122.86160291399996, 49.232416002000065 ], [ -122.86162658799999, 49.233323905000084 ], [ -122.861655392999936, 49.234380601000112 ], [ -122.861657146999946, 49.234429667 ], [ -122.86166109, 49.234539319000064 ], [ -122.861649707999987, 49.235683211000037 ], [ -122.86164327199999, 49.236793789000039 ], [ -122.861637868999978, 49.237560442000081 ], [ -122.861637220999924, 49.23765579900008 ], [ -122.861768298999962, 49.237991194000116 ], [ -122.86219450699997, 49.238491799000059 ], [ -122.862244216999912, 49.238772608000048 ], [ -122.861026699999982, 49.239006487000026 ], [ -122.859773019999949, 49.239208805000032 ], [ -122.858944090999955, 49.239342312000112 ], [ -122.857318197, 49.239767893000042 ], [ -122.854832514999913, 49.240436894000041 ], [ -122.854179604999928, 49.240587189000045 ], [ -122.852450706999932, 49.240625893000079 ], [ -122.852452383999932, 49.240283599000058 ], [ -122.852454336999969, 49.239887811000067 ], [ -122.85245502, 49.239752205000109 ], [ -122.852461142999985, 49.239402112000086 ], [ -122.852471454999886, 49.238817367000053 ], [ -122.852491678999925, 49.237666118000107 ], [ -122.852515772999965, 49.236298287000075 ], [ -122.852517496999951, 49.236199015000047 ], [ -122.852516751999957, 49.235453179000075 ], [ -122.852516187999981, 49.234886474000056 ], [ -122.852515503999925, 49.234202513000078 ], [ -122.852525612999926, 49.233672350000035 ], [ -122.852538709999934, 49.232989607000093 ], [ -122.852600013999975, 49.232850229000093 ], [ -122.852668627999918, 49.232694290000047 ], [ -122.852702040999986, 49.232623483000033 ], [ -122.852729515999926, 49.23256538600009 ], [ -122.852734545999937, 49.232556774000038 ], [ -122.852810290999969, 49.232427285000036 ], [ -122.852841511999927, 49.232270495000044 ], [ -122.852791714999952, 49.232053703000084 ], [ -122.852565496999915, 49.231683193000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179870978", "BldgCostT": "119499857", "sL_LossRatio": "0.768965012851143", "sL_AssetLoss": "1435670", "sL_BldgLoss": "1103980", "sL_StrLoss": "483940", "sL_NStrLoss": "620040", "sL_ContLoss": "331690", "geom_point": "0101000020E6100000BEDA0F8091C85EC066C81DDBD7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132241704999927, 49.279657289000106 ], [ -123.1327545729999, 49.279351681000094 ], [ -123.132781071999929, 49.279335895000052 ], [ -123.132955095999989, 49.279232201000056 ], [ -123.13332520199999, 49.27898170000006 ], [ -123.134199936999892, 49.279544792000117 ], [ -123.135495392999971, 49.280378694000021 ], [ -123.134957180999962, 49.280738121000063 ], [ -123.134950923999924, 49.280742297000117 ], [ -123.134457605999955, 49.281071700000041 ], [ -123.13295183299995, 49.280110572000083 ], [ -123.132241704999927, 49.279657289000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "377407250", "BldgCostT": "258740000", "sL_LossRatio": "0.84210960583391", "sL_AssetLoss": "2545120", "sL_BldgLoss": "2143270", "sL_StrLoss": "966170", "sL_NStrLoss": "1177100", "sL_ContLoss": "401850", "geom_point": "0101000020E6100000333E5808A3C85EC0500083ACC0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13332520199999, 49.27898170000006 ], [ -123.133829927999926, 49.278648393000033 ], [ -123.13383153599996, 49.278647362000065 ], [ -123.134424012999929, 49.278256092000078 ], [ -123.135496174999972, 49.278957163000037 ], [ -123.136570492999937, 49.279659613000085 ], [ -123.136157821999944, 49.279935633000079 ], [ -123.136025636999946, 49.280024035000068 ], [ -123.135495392999971, 49.280378694000021 ], [ -123.134199936999892, 49.279544792000117 ], [ -123.13332520199999, 49.27898170000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59009999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "484882560", "BldgCostT": "326477204", "sL_LossRatio": "0.820151128639488", "sL_AssetLoss": "3108610", "sL_BldgLoss": "2549530", "sL_StrLoss": "1126040", "sL_NStrLoss": "1423490", "sL_ContLoss": "559080", "geom_point": "0101000020E610000009423F74FDC85EC00F417A2F63A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139059082999907, 49.283419548000097 ], [ -123.139629305999975, 49.28304990000008 ], [ -123.140782202999929, 49.283787511000128 ], [ -123.142368416999958, 49.284810286 ], [ -123.141939084999947, 49.285098792000021 ], [ -123.141763591999947, 49.285216728000115 ], [ -123.141328879999904, 49.285508805000063 ], [ -123.139739302999928, 49.284497487000074 ], [ -123.138562692999983, 49.283741298000059 ], [ -123.139037741999928, 49.283433355000135 ], [ -123.139059082999907, 49.283419548000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "300965927", "BldgCostT": "192507097", "sL_LossRatio": "0.749372534958767", "sL_AssetLoss": "1980190", "sL_BldgLoss": "1483900", "sL_StrLoss": "673060", "sL_NStrLoss": "810840", "sL_ContLoss": "496290", "geom_point": "0101000020E6100000B3E33B08ECC85EC054D2CC8B7AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137978946999951, 49.284125445000072 ], [ -123.138562692999983, 49.283741298000059 ], [ -123.139739302999928, 49.284497487000074 ], [ -123.141328879999904, 49.285508805000063 ], [ -123.14130655299999, 49.285523805000089 ], [ -123.140728777999982, 49.285911450000064 ], [ -123.140236417, 49.286241802000106 ], [ -123.138670602999966, 49.285223100000046 ], [ -123.137481187999953, 49.284453003000053 ], [ -123.137978946999951, 49.284125445000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "348702417", "BldgCostT": "236381667", "sL_LossRatio": "0.731038077794349", "sL_AssetLoss": "6326732", "sL_BldgLoss": "4625082", "sL_StrLoss": "1921832", "sL_NStrLoss": "2703250", "sL_ContLoss": "1701650", "geom_point": "0101000020E6100000F64508B0C4B55EC0ADE03B5AEA934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834582184999988, 49.158532649000058 ], [ -122.834554613999927, 49.155514242000088 ], [ -122.83454766299991, 49.15446883700006 ], [ -122.83454292199994, 49.153602214000074 ], [ -122.834535596999928, 49.152269930000031 ], [ -122.834523550999947, 49.151601015000075 ], [ -122.834588848999957, 49.151487593000077 ], [ -122.834584068999973, 49.151054048000063 ], [ -122.83457775299999, 49.149991424000071 ], [ -122.834577287999934, 49.149910467000062 ], [ -122.834576435999949, 49.149766558000081 ], [ -122.834575022999985, 49.149532621000013 ], [ -122.834574351999933, 49.14941564 ], [ -122.834573397, 49.149256992000069 ], [ -122.835291503999954, 49.149239401000052 ], [ -122.835279317999948, 49.148653402000051 ], [ -122.835273802999907, 49.148355157000026 ], [ -122.835271107000011, 49.148209794000067 ], [ -122.836481113999952, 49.148213880000107 ], [ -122.838199904999982, 49.148192288000047 ], [ -122.840096577999958, 49.148195211000136 ], [ -122.841144983999968, 49.14819678700006 ], [ -122.842217197, 49.148148198000079 ], [ -122.842761808999981, 49.148123504000068 ], [ -122.843078306999942, 49.148145412000133 ], [ -122.843322874999927, 49.148175990000048 ], [ -122.844170232999929, 49.148169506000102 ], [ -122.844499113000012, 49.148166981000017 ], [ -122.845006216999977, 49.148163100000048 ], [ -122.84556503499995, 49.148158847000069 ], [ -122.845565110999971, 49.148167839000024 ], [ -122.84558486499995, 49.150048928000075 ], [ -122.845594659999932, 49.151032133000108 ], [ -122.845602001999936, 49.151769702000159 ], [ -122.845603856999958, 49.151958801000035 ], [ -122.84560413299999, 49.151985671000055 ], [ -122.845615131999978, 49.153092090000037 ], [ -122.845615415999973, 49.153119684000053 ], [ -122.845619535999973, 49.153538376000085 ], [ -122.845620727999986, 49.153658767000138 ], [ -122.845620762999957, 49.153659249000043 ], [ -122.845638251999944, 49.155425187000034 ], [ -122.845638372999957, 49.155439894000061 ], [ -122.84563941499999, 49.155601788000048 ], [ -122.845641865999966, 49.155979584000107 ], [ -122.845644507999964, 49.15638436700003 ], [ -122.845646746999989, 49.156726254000041 ], [ -122.845648681999933, 49.157023218000042 ], [ -122.845663970999951, 49.15937070600009 ], [ -122.84567380299994, 49.160882165 ], [ -122.845679568999969, 49.161763689000104 ], [ -122.845685614999965, 49.162688899000067 ], [ -122.845687341999948, 49.162744209000039 ], [ -122.84568910199998, 49.162798898000077 ], [ -122.84472690199999, 49.162804828000056 ], [ -122.84395870799996, 49.162809579000069 ], [ -122.841677213999972, 49.162823607000057 ], [ -122.840977616, 49.162828309000091 ], [ -122.838933892999961, 49.162842199000096 ], [ -122.837532510999935, 49.162844290000116 ], [ -122.83614080199996, 49.162845763000078 ], [ -122.835440593999934, 49.162843570000092 ], [ -122.834713884999985, 49.162841292000039 ], [ -122.834700154999965, 49.162841259000047 ], [ -122.83457821599994, 49.162840369000087 ], [ -122.834578718000017, 49.162732253000065 ], [ -122.834571594999957, 49.16197067800006 ], [ -122.834570787999951, 49.161851819000084 ], [ -122.834561306999973, 49.160450348000033 ], [ -122.834582184999988, 49.158532649000058 ] ], [ [ -122.84210703899997, 49.154527782000045 ], [ -122.842143686999961, 49.15398811000005 ], [ -122.840577967999963, 49.153985958000113 ], [ -122.84057883399997, 49.153716098000089 ], [ -122.840167408999989, 49.15371552900011 ], [ -122.840168276999975, 49.153445669000114 ], [ -122.839756855999951, 49.153445099000038 ], [ -122.839757726999935, 49.153175238000088 ], [ -122.839541938999957, 49.153174938000049 ], [ -122.839419037999932, 49.154983234000078 ], [ -122.83781981599995, 49.154936260000035 ], [ -122.837756245999955, 49.155871059000098 ], [ -122.840160463999965, 49.155874410000095 ], [ -122.840161332999941, 49.155604550000106 ], [ -122.84139565299995, 49.155606251000016 ], [ -122.841397375000014, 49.155066532000014 ], [ -122.841808809999947, 49.155067096000032 ], [ -122.841810527999939, 49.154527376000033 ], [ -122.84210703899997, 49.154527782000045 ] ], [ [ -122.83935211899994, 49.151377103000073 ], [ -122.83935328799997, 49.151015785000084 ], [ -122.83816774899999, 49.151014130000142 ], [ -122.838160902999903, 49.151114829000107 ], [ -122.838183235999935, 49.151115485000034 ], [ -122.83816781299997, 49.151342315000122 ], [ -122.83935211899994, 49.151377103000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66525644", "BldgCostT": "42106523", "sL_LossRatio": "0.681029901937104", "sL_AssetLoss": "1242060", "sL_BldgLoss": "845880", "sL_StrLoss": "354010", "sL_NStrLoss": "491870", "sL_ContLoss": "396180", "geom_point": "0101000020E6100000AB148E62F1B25EC0AFFEC6A62E974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78989633499998, 49.180677887000108 ], [ -122.791344881, 49.180675094000044 ], [ -122.792422095999939, 49.180669391000059 ], [ -122.795435598999987, 49.180667193000048 ], [ -122.796780375999944, 49.180657589000106 ], [ -122.798122300999935, 49.180650700000093 ], [ -122.799115612999984, 49.180643581000012 ], [ -122.799490509999941, 49.180640906000093 ], [ -122.799487170999953, 49.179755179000018 ], [ -122.799485919999967, 49.179412701000096 ], [ -122.799480919999894, 49.178588999000134 ], [ -122.799480301999949, 49.178259186000055 ], [ -122.799378391999937, 49.178125494000028 ], [ -122.799337077999922, 49.178097473000093 ], [ -122.799196303999935, 49.178001999000116 ], [ -122.798267983999921, 49.177719493000083 ], [ -122.7980992009999, 49.177482891000125 ], [ -122.798038592999887, 49.177187309000018 ], [ -122.79806068799999, 49.176866292000071 ], [ -122.799728015999932, 49.176852786000012 ], [ -122.79999524699997, 49.176850629000064 ], [ -122.800941104999964, 49.176842895000085 ], [ -122.800900092999939, 49.179793806000127 ], [ -122.800890902999953, 49.180456099000025 ], [ -122.800887699999947, 49.180684356000079 ], [ -122.800875339999891, 49.181574840000046 ], [ -122.800862131999935, 49.182525992000087 ], [ -122.800861987999909, 49.182534999000026 ], [ -122.800136698999921, 49.182535632000089 ], [ -122.799999460999942, 49.182535763000061 ], [ -122.795412101999958, 49.18253969400012 ], [ -122.795411848999976, 49.182923541000029 ], [ -122.795411615999981, 49.183342510000074 ], [ -122.789876106999955, 49.183353348000054 ], [ -122.789878008999949, 49.18310282200013 ], [ -122.78988312599995, 49.182428156000121 ], [ -122.789890053999954, 49.181510613000107 ], [ -122.78989633499998, 49.180677887000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127102001", "BldgCostT": "76315001", "sL_LossRatio": "0.647943969317301", "sL_AssetLoss": "1732051", "sL_BldgLoss": "1122272", "sL_StrLoss": "443232", "sL_NStrLoss": "679040", "sL_ContLoss": "609779", "geom_point": "0101000020E610000018A7AC09D6BE5EC0973CDF68AA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.976370878999958, 49.230477282000059 ], [ -122.976435194999951, 49.22948980200006 ], [ -122.977588415999932, 49.229522135000074 ], [ -122.977614936999942, 49.229114770000123 ], [ -122.977145358999934, 49.229114678000037 ], [ -122.977611695999926, 49.228942106000041 ], [ -122.978094683999942, 49.228819592 ], [ -122.978569909999948, 49.228775311000042 ], [ -122.978601033999922, 49.228774860000087 ], [ -122.979103015999925, 49.228767710000078 ], [ -122.979655415999957, 49.228852737000082 ], [ -122.97988199699995, 49.228887614 ], [ -122.980133300999967, 49.228926309 ], [ -122.980328490999966, 49.228986693000067 ], [ -122.980769497999958, 49.229109007000019 ], [ -122.980908294999892, 49.229150134000079 ], [ -122.982065202999976, 49.229492979000028 ], [ -122.982412692, 49.229553192000054 ], [ -122.982696786999895, 49.229598016000111 ], [ -122.983256702999967, 49.229599721000035 ], [ -122.984070697999968, 49.229602204000095 ], [ -122.984551104, 49.229604911000088 ], [ -122.98490078899999, 49.229652494000113 ], [ -122.985713504999921, 49.229653605000095 ], [ -122.986734972999912, 49.229673097000081 ], [ -122.987392496, 49.229801399000081 ], [ -122.987690522999969, 49.229822301000077 ], [ -122.988156712999981, 49.229893891000081 ], [ -122.988861209999968, 49.229912701000082 ], [ -122.988928890999915, 49.229914590000114 ], [ -122.988954386999964, 49.229915311000056 ], [ -122.988952878999982, 49.229924344000018 ], [ -122.988923867, 49.230095295000055 ], [ -122.988865415999967, 49.230439794000063 ], [ -122.988839016, 49.230590870000078 ], [ -122.98883854599994, 49.230593686000098 ], [ -122.988704104999925, 49.231364134000017 ], [ -122.988585794999963, 49.231469799000145 ], [ -122.988684091999957, 49.231478811000038 ], [ -122.98842083699995, 49.232938188000077 ], [ -122.988386830999914, 49.233126584000068 ], [ -122.988354933999943, 49.233303406000076 ], [ -122.988351822999903, 49.233320805000048 ], [ -122.988288887999929, 49.233685191000113 ], [ -122.988231882999983, 49.234015233000093 ], [ -122.988200424999931, 49.234197467000044 ], [ -122.98818798299996, 49.234269537000081 ], [ -122.988164817999944, 49.234403812000053 ], [ -122.988065988999963, 49.234402906000085 ], [ -122.979201174999957, 49.234077175000046 ], [ -122.978593772999943, 49.233974792 ], [ -122.976319623999956, 49.233558789000057 ], [ -122.975793255999932, 49.233448861000056 ], [ -122.974409518999892, 49.233159866000051 ], [ -122.97458761599999, 49.230427259000095 ], [ -122.976370878999958, 49.230477282000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5361834", "BldgCostT": "3488334", "sL_LossRatio": "0.676311323042108", "sL_AssetLoss": "98984", "sL_BldgLoss": "66944", "sL_StrLoss": "22714", "sL_NStrLoss": "44230", "sL_ContLoss": "32040", "geom_point": "0101000020E61000000EF416303DBE5EC0E542ABB4C19D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.971336094999955, 49.231329664000043 ], [ -122.97365245899999, 49.231394704000103 ], [ -122.973524186999924, 49.233362224000096 ], [ -122.972161834999937, 49.233773928000105 ], [ -122.971640675999978, 49.233931420000012 ], [ -122.971438113000019, 49.232201117000074 ], [ -122.971336094999955, 49.231329664000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12178750", "BldgCostT": "6925000", "sL_LossRatio": "0.660701754385965", "sL_AssetLoss": "114000", "sL_BldgLoss": "75320", "sL_StrLoss": "36540", "sL_NStrLoss": "38780", "sL_ContLoss": "38680", "geom_point": "0101000020E6100000DA71AA5206BE5EC018810C78749D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.967807511999951, 49.231346897000051 ], [ -122.967805133999988, 49.231170928000033 ], [ -122.9678036829999, 49.231062996000112 ], [ -122.967801873999932, 49.23092807300003 ], [ -122.967795105, 49.230422295000039 ], [ -122.967801687999923, 49.230027 ], [ -122.9677928199999, 49.22981036200013 ], [ -122.967772086999958, 49.22930371300005 ], [ -122.9677904979999, 49.229303327000075 ], [ -122.969288295999917, 49.229273289000034 ], [ -122.969343206999952, 49.22927474600003 ], [ -122.96972827099998, 49.229284826000026 ], [ -122.970223098999924, 49.229297809000087 ], [ -122.97131620399999, 49.229376203000093 ], [ -122.971985499, 49.229387797000072 ], [ -122.973428848999944, 49.229422210000095 ], [ -122.973428723999945, 49.229653599000137 ], [ -122.971780501999916, 49.229653208000059 ], [ -122.971780634999959, 49.229416928000077 ], [ -122.970132440999933, 49.229381791000087 ], [ -122.970132440000015, 49.229382936000093 ], [ -122.969720386999967, 49.229382829 ], [ -122.969720056999961, 49.2299225450001 ], [ -122.969403753999941, 49.229922460000111 ], [ -122.969374936999941, 49.230400563000089 ], [ -122.969426734999914, 49.230663063000122 ], [ -122.969307535999945, 49.230668177000076 ], [ -122.96930733, 49.231001865000081 ], [ -122.968483195999937, 49.231001644000123 ], [ -122.968483038999977, 49.231249487000092 ], [ -122.971153264999941, 49.231324528000137 ], [ -122.971109210999956, 49.231326482000085 ], [ -122.967807511999951, 49.231346897000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640368802", "BldgCostT": "427737760", "sL_LossRatio": "0.771583549639354", "sL_AssetLoss": "7385370", "sL_BldgLoss": "5698430", "sL_StrLoss": "2526520", "sL_NStrLoss": "3171910", "sL_ContLoss": "1686940", "geom_point": "0101000020E6100000E96556E77FB35EC03DE2A0EFB4A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801737817999978, 49.282669997000092 ], [ -122.801750604999967, 49.280925907 ], [ -122.801617357999959, 49.28092466500015 ], [ -122.801618078999965, 49.279958034000103 ], [ -122.801762273999913, 49.279959620000042 ], [ -122.801761181999922, 49.279178491000032 ], [ -122.80175948099999, 49.277648745000114 ], [ -122.801757176999956, 49.277343272000103 ], [ -122.801743673999908, 49.277180700000066 ], [ -122.801707042000018, 49.276814753000082 ], [ -122.801698739999935, 49.276736142000104 ], [ -122.801681742, 49.276575243000082 ], [ -122.801578172999911, 49.275594727000062 ], [ -122.801685282999969, 49.274997910000089 ], [ -122.80171320699999, 49.274938157000051 ], [ -122.802024568, 49.275083418000087 ], [ -122.802725208999959, 49.275419565000071 ], [ -122.803821438999989, 49.275785140000082 ], [ -122.804011410999962, 49.275833426000084 ], [ -122.804459654999931, 49.275947387000052 ], [ -122.805514105, 49.276156902000068 ], [ -122.807345572999935, 49.276450568000023 ], [ -122.808358480999956, 49.276586402000113 ], [ -122.808353005999919, 49.277106083 ], [ -122.80832440099999, 49.277780891000141 ], [ -122.808322240999971, 49.277845497000015 ], [ -122.808320497999915, 49.2778979140001 ], [ -122.80831490599995, 49.278133375000081 ], [ -122.808298909999934, 49.278810804000067 ], [ -122.808302004999959, 49.279114392000089 ], [ -122.808318387999975, 49.280723898000055 ], [ -122.808313691, 49.281271510000053 ], [ -122.807335910999939, 49.281257889000088 ], [ -122.806021731, 49.281253897000063 ], [ -122.805432621999913, 49.281252101000113 ], [ -122.805376822999946, 49.282120665000051 ], [ -122.80398474199994, 49.282115482000087 ], [ -122.80396374499999, 49.282719365000098 ], [ -122.803585858999938, 49.282717187000074 ], [ -122.801737490999983, 49.282710197000021 ], [ -122.801737817999978, 49.282669997000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1440415765", "BldgCostT": "959703793", "sL_LossRatio": "0.793393110841168", "sL_AssetLoss": "8545020", "sL_BldgLoss": "6779560", "sL_StrLoss": "3041150", "sL_NStrLoss": "3738410", "sL_ContLoss": "1765460", "geom_point": "0101000020E61000008533441D6FB95EC0E57CB0AD1BA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89291409799992, 49.2533990660001 ], [ -122.89291473499999, 49.252798383000048 ], [ -122.892915491999943, 49.252004601000053 ], [ -122.892908672999909, 49.251796356000085 ], [ -122.892878010999979, 49.250862086000055 ], [ -122.892793697999934, 49.2508083170001 ], [ -122.892765315999924, 49.249385899000089 ], [ -122.892758988999972, 49.249110939000055 ], [ -122.892755817999927, 49.249014464000034 ], [ -122.89268878799993, 49.248045911000077 ], [ -122.89259318699996, 49.245945897000041 ], [ -122.89257652099991, 49.245785034000015 ], [ -122.892765920999963, 49.245889597000058 ], [ -122.895919949999964, 49.247594532000114 ], [ -122.897649182999942, 49.248529197000074 ], [ -122.898186302999989, 49.248836505000078 ], [ -122.89897169799994, 49.249224230000017 ], [ -122.899160393000017, 49.249317392000044 ], [ -122.899309565999943, 49.249391039000045 ], [ -122.900343002999975, 49.249901205000057 ], [ -122.901712389999886, 49.250478378000032 ], [ -122.901772807999961, 49.250496455000075 ], [ -122.902051631999939, 49.25057976100009 ], [ -122.903216693, 49.250927883000067 ], [ -122.903699493999952, 49.251017462000064 ], [ -122.904283197999959, 49.251309805000062 ], [ -122.90428215799993, 49.251510202000091 ], [ -122.904280279999966, 49.251868306000127 ], [ -122.904289404999972, 49.252616195000087 ], [ -122.904324498999955, 49.253017206000074 ], [ -122.904601910999958, 49.253491790000076 ], [ -122.904053864999952, 49.253480856000074 ], [ -122.902839098999948, 49.253456600000057 ], [ -122.902586303999925, 49.253498893000078 ], [ -122.902510411999955, 49.253536992000107 ], [ -122.902323305999985, 49.253630905000101 ], [ -122.901820598999933, 49.253486795000107 ], [ -122.899986554999913, 49.25346983700009 ], [ -122.898631512999955, 49.253457314000023 ], [ -122.897898175999941, 49.253449779000015 ], [ -122.896343193999897, 49.253433838000049 ], [ -122.894998729999955, 49.253420210000122 ], [ -122.894627766999989, 49.253416452000074 ], [ -122.89291409799992, 49.2533990660001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271782083", "BldgCostT": "180563333", "sL_LossRatio": "0.732852992519094", "sL_AssetLoss": "3190790", "sL_BldgLoss": "2338380", "sL_StrLoss": "1030630", "sL_NStrLoss": "1307750", "sL_ContLoss": "852410", "geom_point": "0101000020E6100000428C1A23C4B95EC05FCA65483AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89845269099996, 49.259789787000109 ], [ -122.89879039600001, 49.258889600000018 ], [ -122.899125888999905, 49.258494699000011 ], [ -122.899656291000014, 49.258061409000092 ], [ -122.899254900999935, 49.257901204000085 ], [ -122.898400606999957, 49.257898190000056 ], [ -122.898393179999957, 49.257460185000056 ], [ -122.898386715999905, 49.257078993000093 ], [ -122.898758289999989, 49.257068912000108 ], [ -122.899117716999982, 49.25699370300007 ], [ -122.899350397999925, 49.256883188000074 ], [ -122.900035696999964, 49.256351602000102 ], [ -122.900804888999957, 49.255728709000095 ], [ -122.900889689999985, 49.255660007000095 ], [ -122.900895505999983, 49.255263713000112 ], [ -122.902618295999929, 49.2552816890001 ], [ -122.902997800999955, 49.255544796000031 ], [ -122.903787220999959, 49.255099003000019 ], [ -122.904372156999969, 49.255419182000018 ], [ -122.904828365999933, 49.255668910000047 ], [ -122.904933601999971, 49.255726503000055 ], [ -122.905077128999949, 49.2557859 ], [ -122.90521428699999, 49.255842706000138 ], [ -122.905143097999883, 49.256024393000054 ], [ -122.905139123999959, 49.25607116000004 ], [ -122.905021719, 49.257448624000055 ], [ -122.904959606999981, 49.258177611000107 ], [ -122.904744720999986, 49.258599305000054 ], [ -122.904581099999987, 49.258806288000081 ], [ -122.904524636999952, 49.258854318000047 ], [ -122.90418347399999, 49.259144495000058 ], [ -122.904338817999985, 49.259226402000081 ], [ -122.904567908999937, 49.259250986000033 ], [ -122.904707215999949, 49.259223493000071 ], [ -122.905316606999946, 49.25894368800008 ], [ -122.905598010999967, 49.25880219200009 ], [ -122.905815902999962, 49.258721863000034 ], [ -122.905854291999958, 49.25870771200011 ], [ -122.90621221499994, 49.258635997000098 ], [ -122.906363292999956, 49.258636787000114 ], [ -122.906350328999963, 49.259099405000015 ], [ -122.90639550099999, 49.259244888000062 ], [ -122.906485308999947, 49.259382608000116 ], [ -122.906659503999947, 49.259550607000051 ], [ -122.906895898999935, 49.259673589000073 ], [ -122.907282911999943, 49.259741386000037 ], [ -122.90773449799994, 49.259665194000021 ], [ -122.90802281899991, 49.259503207000058 ], [ -122.908107034999901, 49.259429342000054 ], [ -122.908175987000035, 49.259368904000119 ], [ -122.908298687999903, 49.259196711000079 ], [ -122.90835700699995, 49.259022691000055 ], [ -122.909042004999904, 49.259072105000044 ], [ -122.909206591999975, 49.259055212000121 ], [ -122.909383602999952, 49.258997201000028 ], [ -122.909460407999973, 49.258916505000037 ], [ -122.909459703999957, 49.258824599000064 ], [ -122.909264017999959, 49.258503706000084 ], [ -122.909202608999934, 49.258188386000064 ], [ -122.909216762999947, 49.258158342000094 ], [ -122.909235808999981, 49.258061497000043 ], [ -122.909266121999977, 49.257647896000023 ], [ -122.909215118999953, 49.257443794000039 ], [ -122.909009011999942, 49.257279289000074 ], [ -122.908977304999937, 49.257198187000022 ], [ -122.909141140999964, 49.257082650000072 ], [ -122.909150288999967, 49.257076210000037 ], [ -122.90937541299995, 49.256996092000065 ], [ -122.909598211999977, 49.256952096000127 ], [ -122.909836484999985, 49.256921094000091 ], [ -122.910418593999978, 49.256761207000089 ], [ -122.910658131999966, 49.256943119000049 ], [ -122.91088810499997, 49.257117787000077 ], [ -122.911199884999945, 49.257287027000103 ], [ -122.91144887899999, 49.257422184000099 ], [ -122.911987407999987, 49.257628566000115 ], [ -122.911892097999925, 49.257772762000059 ], [ -122.911671219999945, 49.258106871000074 ], [ -122.911209515999971, 49.258603540000102 ], [ -122.91079755, 49.258910644000089 ], [ -122.910308647999912, 49.25921734300006 ], [ -122.908840302999948, 49.259913999000027 ], [ -122.908939207999978, 49.259996996000027 ], [ -122.908768853999945, 49.260079508000082 ], [ -122.908663030999946, 49.259997195000068 ], [ -122.90604312, 49.261257685000011 ], [ -122.904252600999939, 49.26211904800001 ], [ -122.903870613999942, 49.262302809000111 ], [ -122.903183457999958, 49.26263335800013 ], [ -122.901690397999957, 49.263351517000096 ], [ -122.900339251999981, 49.264001425000082 ], [ -122.900465831999924, 49.264101457000066 ], [ -122.900407327, 49.264133045000094 ], [ -122.900323277, 49.264178394000083 ], [ -122.900206414999957, 49.264076908000057 ], [ -122.899885983, 49.263792896000076 ], [ -122.899452701999934, 49.263492212000124 ], [ -122.899072428999943, 49.263323601000074 ], [ -122.898768590999907, 49.263223907000061 ], [ -122.898382214, 49.263145191000042 ], [ -122.897935720999911, 49.263103598000022 ], [ -122.897191042999978, 49.263075366000066 ], [ -122.896407868, 49.263045680000054 ], [ -122.895796687999962, 49.26302249 ], [ -122.895817706999964, 49.262930068000102 ], [ -122.895841108999903, 49.26282709300002 ], [ -122.895851406999924, 49.26246890100002 ], [ -122.896943479999962, 49.261711104000071 ], [ -122.897115895999946, 49.261495386000014 ], [ -122.897207411999958, 49.261256587000041 ], [ -122.89723728199999, 49.26064670200001 ], [ -122.897709385999917, 49.260469204000074 ], [ -122.898125001999958, 49.260170414000072 ], [ -122.898311590999938, 49.259989306000108 ], [ -122.89845269099996, 49.259789787000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230160122", "BldgCostT": "156606380", "sL_LossRatio": "0.851059245257147", "sL_AssetLoss": "1021010", "sL_BldgLoss": "868940", "sL_StrLoss": "392580", "sL_NStrLoss": "476360", "sL_ContLoss": "152070", "geom_point": "0101000020E61000002E4DC60893C05EC07F0C2D1DB99D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.007676223999937, 49.232579594000114 ], [ -123.006754515999958, 49.232352211000091 ], [ -123.00786188299999, 49.231210992000058 ], [ -123.008765361999977, 49.231505 ], [ -123.009817124000023, 49.231847195000064 ], [ -123.010644750999987, 49.232109394000133 ], [ -123.011375203999961, 49.232340792000045 ], [ -123.011079305999914, 49.232715384000095 ], [ -123.011077203999903, 49.232874799000058 ], [ -123.00882590399999, 49.23284839100004 ], [ -123.008548908999927, 49.232800186000105 ], [ -123.007676223999937, 49.232579594000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "338980916", "BldgCostT": "203725779", "sL_LossRatio": "0.717038696640384", "sL_AssetLoss": "2776210", "sL_BldgLoss": "1990650", "sL_StrLoss": "944660", "sL_NStrLoss": "1045990", "sL_ContLoss": "785560", "geom_point": "0101000020E6100000A61B9C4662BD5EC0C3436B87B79B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.958619782999932, 49.214349799000033 ], [ -122.959051058999975, 49.214114225000074 ], [ -122.95977970199999, 49.214699411 ], [ -122.960026391999961, 49.214897573000052 ], [ -122.960031556999965, 49.214901686000168 ], [ -122.960283302999954, 49.21510388100009 ], [ -122.960566515999972, 49.215348 ], [ -122.960769213999981, 49.215647406000066 ], [ -122.96093218599999, 49.216198794000086 ], [ -122.960933812999883, 49.217179909000052 ], [ -122.960938388999935, 49.218305208000096 ], [ -122.960983103000032, 49.218356001000124 ], [ -122.960987492999962, 49.21843630800003 ], [ -122.959379011999928, 49.218433301000118 ], [ -122.957522159999925, 49.218429577000052 ], [ -122.957523292999937, 49.217071087000093 ], [ -122.957503611, 49.215989499000052 ], [ -122.957125390999948, 49.215289604000105 ], [ -122.957032691999927, 49.215216712000029 ], [ -122.958462295999979, 49.214435834000049 ], [ -122.958619782999932, 49.214349799000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "398686113", "BldgCostT": "261476935", "sL_LossRatio": "0.74177340751283", "sL_AssetLoss": "5564880", "sL_BldgLoss": "4127880", "sL_StrLoss": "1728710", "sL_NStrLoss": "2399170", "sL_ContLoss": "1437000", "geom_point": "0101000020E6100000C5C0E88F7CB65EC038778069C9984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.853820805999973, 49.196245790000035 ], [ -122.853787609999955, 49.194467196000055 ], [ -122.852194808999982, 49.19444589100015 ], [ -122.851764848999963, 49.194456699000057 ], [ -122.850885134999942, 49.194478809000053 ], [ -122.849523009999928, 49.194474991000099 ], [ -122.848212306999955, 49.194482599000011 ], [ -122.848243252999907, 49.193136561000088 ], [ -122.846912794999966, 49.193111196000103 ], [ -122.84542988699999, 49.19308935700009 ], [ -122.845215110999959, 49.193087796000107 ], [ -122.845215313999958, 49.192754211000072 ], [ -122.845260866999922, 49.19163922900006 ], [ -122.845473357999978, 49.191640939000095 ], [ -122.847653244999933, 49.191661504000066 ], [ -122.848020932999987, 49.191661470000092 ], [ -122.850517071999903, 49.191671397000064 ], [ -122.850773843999946, 49.192113185000011 ], [ -122.850847838999954, 49.193146978000051 ], [ -122.850947701999971, 49.193150799000065 ], [ -122.851809346999914, 49.193230932000098 ], [ -122.851934395999976, 49.193231917000055 ], [ -122.854143719999939, 49.19324921700008 ], [ -122.854184898999961, 49.193249524000038 ], [ -122.854404611999939, 49.19325124200008 ], [ -122.856443953999943, 49.193267166000034 ], [ -122.856441812999918, 49.194475307000104 ], [ -122.85645929699993, 49.195372300000038 ], [ -122.856462393999934, 49.196239087000038 ], [ -122.856354691, 49.196269296000025 ], [ -122.855130403999937, 49.196256111000068 ], [ -122.853820805999973, 49.196245790000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "519255043", "BldgCostT": "338078316", "sL_LossRatio": "0.750647714678505", "sL_AssetLoss": "8255950", "sL_BldgLoss": "6197310", "sL_StrLoss": "2716860", "sL_NStrLoss": "3480450", "sL_ContLoss": "2058640", "geom_point": "0101000020E610000046680E206EB75EC069C438245A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.863051505999934, 49.173897606000018 ], [ -122.864576686999953, 49.173486997000083 ], [ -122.8654184869999, 49.173469200000071 ], [ -122.86541372, 49.172585109000053 ], [ -122.865437115999953, 49.171708197000029 ], [ -122.868056294, 49.171667314000032 ], [ -122.868038385999967, 49.173388505000105 ], [ -122.868017544999958, 49.175392349000035 ], [ -122.868016878999981, 49.175455311000071 ], [ -122.868016151999939, 49.175527257000049 ], [ -122.86799920199995, 49.177155408000068 ], [ -122.865990556999947, 49.177141816000095 ], [ -122.864084119999944, 49.177128893 ], [ -122.864107790999952, 49.17596459400005 ], [ -122.86399860399996, 49.175591911000076 ], [ -122.86394620099999, 49.175412998000098 ], [ -122.863051505999934, 49.173897606000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "356346884", "BldgCostT": "230240108", "sL_LossRatio": "0.700308520912748", "sL_AssetLoss": "2768694", "sL_BldgLoss": "1938940", "sL_StrLoss": "894370", "sL_NStrLoss": "1044570", "sL_ContLoss": "829754", "geom_point": "0101000020E61000008162F92DD9B75EC007F9EB3E95914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867829346999898, 49.137426330000046 ], [ -122.86781223, 49.133936079000094 ], [ -122.867899854999948, 49.133936817000098 ], [ -122.869474859999954, 49.133946640000055 ], [ -122.870026774999928, 49.133950401000035 ], [ -122.871296340999919, 49.133959082000082 ], [ -122.873416352999982, 49.133973860000083 ], [ -122.874881742999918, 49.133965519000093 ], [ -122.875375204999955, 49.133962702000147 ], [ -122.875609164999929, 49.133961372000073 ], [ -122.87590980499999, 49.133959651000062 ], [ -122.876242696999952, 49.13395773600012 ], [ -122.87624456199994, 49.135174139000036 ], [ -122.876244984999971, 49.13545445700003 ], [ -122.876240988999925, 49.136125589000066 ], [ -122.87627191699994, 49.136176101000096 ], [ -122.876304198999932, 49.136225706000047 ], [ -122.876341898999939, 49.136235050000082 ], [ -122.876464591999977, 49.136265508000108 ], [ -122.879063305999949, 49.136294886000101 ], [ -122.879058028999978, 49.136841259000086 ], [ -122.879055520999913, 49.137102122000115 ], [ -122.879054292999939, 49.13722850000002 ], [ -122.879050224999972, 49.1376533030001 ], [ -122.879033002999989, 49.139298997000061 ], [ -122.878102362999954, 49.139281956000076 ], [ -122.877181194999977, 49.139265105000064 ], [ -122.876306536999934, 49.139261566000108 ], [ -122.876064699999958, 49.139260595000032 ], [ -122.875490694999939, 49.13934040600008 ], [ -122.875299292999955, 49.139395206000124 ], [ -122.875021203999935, 49.139516904000047 ], [ -122.874974524999985, 49.139545565000077 ], [ -122.874812503999962, 49.139645013000049 ], [ -122.874536249999963, 49.139921871000077 ], [ -122.874194687999989, 49.140264210000055 ], [ -122.873894197999903, 49.140565408000072 ], [ -122.873712173999962, 49.140676932000083 ], [ -122.873501211999965, 49.140806201000025 ], [ -122.87321589599999, 49.140898720000109 ], [ -122.87307530799994, 49.140944304000072 ], [ -122.872613802999922, 49.141021006000095 ], [ -122.872129199999989, 49.141053808000073 ], [ -122.870854086999913, 49.14104370200004 ], [ -122.87072809199995, 49.141042805000041 ], [ -122.869437799999957, 49.141034090000076 ], [ -122.86796794199999, 49.141025545000076 ], [ -122.867960355999955, 49.139796905 ], [ -122.867945699999922, 49.137427931000069 ], [ -122.867829346999898, 49.137426330000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "563655810", "BldgCostT": "379848189", "sL_LossRatio": "0.783860351724726", "sL_AssetLoss": "6013737", "sL_BldgLoss": "4713930", "sL_StrLoss": "2155280", "sL_NStrLoss": "2558650", "sL_ContLoss": "1299807", "geom_point": "0101000020E610000085BBBD7B72B55EC0A936C4BAE9904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834411790999937, 49.129924503000034 ], [ -122.834476369999933, 49.129136136000085 ], [ -122.834895526999986, 49.129560260000041 ], [ -122.835462691999965, 49.129842781000036 ], [ -122.835960098999948, 49.129943944000075 ], [ -122.836016735999934, 49.129955475000067 ], [ -122.83628695099999, 49.12995641100008 ], [ -122.836509059999969, 49.129957161000085 ], [ -122.836862581999952, 49.129958353000106 ], [ -122.838509712999979, 49.129963895000081 ], [ -122.838573034999968, 49.133266381000105 ], [ -122.83865112899997, 49.133366902000063 ], [ -122.838650900999951, 49.133531803000061 ], [ -122.838651626999976, 49.13362191500007 ], [ -122.836524941999954, 49.133636687000063 ], [ -122.83498993299996, 49.133647314 ], [ -122.834461007999963, 49.133650960000054 ], [ -122.830250522, 49.133690095000084 ], [ -122.828930786999976, 49.133714270000091 ], [ -122.828928691999977, 49.133643920000019 ], [ -122.828901001999938, 49.132743817000026 ], [ -122.830340791999959, 49.132727696000075 ], [ -122.830570304999981, 49.132717286000101 ], [ -122.831641312999963, 49.132543405000078 ], [ -122.833069815999977, 49.132229599000027 ], [ -122.834442933999938, 49.132245671000177 ], [ -122.834411790999937, 49.129924503000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "867925638", "BldgCostT": "578787525", "sL_LossRatio": "0.773099250865691", "sL_AssetLoss": "10604240", "sL_BldgLoss": "8198130", "sL_StrLoss": "3596210", "sL_NStrLoss": "4601920", "sL_ContLoss": "2406110", "geom_point": "0101000020E61000002C89DCA15BB95EC0DD2E029DA8944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901044297999931, 49.159556613000134 ], [ -122.902143199999941, 49.159564792000054 ], [ -122.902134989999965, 49.161066504000061 ], [ -122.902142042999984, 49.16142972800003 ], [ -122.902146090999921, 49.161636579000131 ], [ -122.902147694999897, 49.161720100000089 ], [ -122.902150722, 49.161933476000087 ], [ -122.902154020999916, 49.16216742200006 ], [ -122.902159019999942, 49.162517801000085 ], [ -122.902140106999937, 49.163254289000058 ], [ -122.90088101500001, 49.163240595000033 ], [ -122.897367398999933, 49.163237607000099 ], [ -122.89543675199999, 49.163230976000122 ], [ -122.895125819999947, 49.163229892000096 ], [ -122.894602693999957, 49.163228112000077 ], [ -122.893873280999955, 49.163222122000121 ], [ -122.893187702999953, 49.16321650200009 ], [ -122.893049934999937, 49.163215371000049 ], [ -122.89272409099999, 49.163212688000044 ], [ -122.891926406, 49.16320939800007 ], [ -122.891776864999969, 49.163210004000071 ], [ -122.890966409999947, 49.163213302000045 ], [ -122.890414188999955, 49.163208992000058 ], [ -122.890388951999938, 49.1632088960001 ], [ -122.890267496999968, 49.163208400000059 ], [ -122.890255121999971, 49.16206199600002 ], [ -122.890251108999962, 49.161978100000077 ], [ -122.890251043999967, 49.161949605000046 ], [ -122.890246586000018, 49.159585793000048 ], [ -122.890382678999927, 49.159584159000133 ], [ -122.890445511999985, 49.159583396000123 ], [ -122.891664507999977, 49.159579883000056 ], [ -122.893118316999988, 49.159569612000077 ], [ -122.894082592999936, 49.159562304000183 ], [ -122.89585267199999, 49.159556308000099 ], [ -122.897969901999915, 49.159549097000117 ], [ -122.899816191999989, 49.159553695000064 ], [ -122.901044297999931, 49.159556613000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "613154434", "BldgCostT": "418551896", "sL_LossRatio": "0.839165163397857", "sL_AssetLoss": "2344890", "sL_BldgLoss": "1967750", "sL_StrLoss": "839870", "sL_NStrLoss": "1127880", "sL_ContLoss": "377140", "geom_point": "0101000020E6100000F4C0F0DF36C95EC03EB1560638A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143124130999979, 49.290227845000103 ], [ -123.143669371999948, 49.289862502000105 ], [ -123.144272488999903, 49.289487612000116 ], [ -123.14483596, 49.289202287000116 ], [ -123.14503414799999, 49.289278182000047 ], [ -123.145329502999971, 49.289391293000023 ], [ -123.146065813999911, 49.289767917000134 ], [ -123.146483985999978, 49.289981813000033 ], [ -123.146540697999939, 49.290010812000062 ], [ -123.146576045999922, 49.289999181000091 ], [ -123.14639399099994, 49.290096761000051 ], [ -123.145738073999965, 49.290427439000055 ], [ -123.144955599999932, 49.290692806000024 ], [ -123.144934512999924, 49.291340957000081 ], [ -123.144913827999972, 49.29138601800004 ], [ -123.144417161999939, 49.291877807000056 ], [ -123.143957454, 49.292022434000039 ], [ -123.143850682999926, 49.292096047000065 ], [ -123.143431486999972, 49.292385368000069 ], [ -123.143150314999957, 49.292254723000049 ], [ -123.143056418999961, 49.29221108900007 ], [ -123.142892891999949, 49.292135100000074 ], [ -123.142837906999944, 49.292099219000114 ], [ -123.141568802999956, 49.291271491000082 ], [ -123.142077905999898, 49.290929210000066 ], [ -123.142627011999934, 49.290560891000048 ], [ -123.143124130999979, 49.290227845000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "879286271", "BldgCostT": "594583645", "sL_LossRatio": "0.804090630439541", "sL_AssetLoss": "5769673", "sL_BldgLoss": "4639340", "sL_StrLoss": "2021570", "sL_NStrLoss": "2617770", "sL_ContLoss": "1130333", "geom_point": "0101000020E61000006A6D2973B5C25EC03B44EC7E5BAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.04278949899999, 49.333384906000042 ], [ -123.042541014999927, 49.333333881000044 ], [ -123.042130117999989, 49.33332654200003 ], [ -123.041585790999974, 49.333316804000042 ], [ -123.039622184999928, 49.33336389800008 ], [ -123.037883897999933, 49.333350503000069 ], [ -123.037973458999929, 49.33158699300008 ], [ -123.03797941, 49.33146978900006 ], [ -123.038030610999897, 49.330453411000072 ], [ -123.038097114, 49.329478901000066 ], [ -123.038207002999968, 49.32801741 ], [ -123.03823808099996, 49.327144498000074 ], [ -123.03917559599995, 49.327177411000044 ], [ -123.039481311999936, 49.327237190000126 ], [ -123.03997311199997, 49.327399191000033 ], [ -123.040707702999967, 49.327787692000037 ], [ -123.041605894999961, 49.328264505000128 ], [ -123.042384037999966, 49.328675485000126 ], [ -123.042742312999948, 49.328864746000058 ], [ -123.043197605000017, 49.329105190000028 ], [ -123.04383229799997, 49.329398991000069 ], [ -123.044250784999974, 49.329503198000019 ], [ -123.044371444999967, 49.329513132000045 ], [ -123.044505971999953, 49.329524206000038 ], [ -123.044661398999935, 49.329537001000077 ], [ -123.044827669999989, 49.329530676000083 ], [ -123.045101213999956, 49.329520293000044 ], [ -123.045226822999908, 49.32951552500009 ], [ -123.045240588999917, 49.329515010000065 ], [ -123.045602795000022, 49.329510498000026 ], [ -123.046166990999964, 49.329551112000068 ], [ -123.046380817999975, 49.329583741000064 ], [ -123.046454518999937, 49.329595004000055 ], [ -123.046955809999957, 49.329802402000041 ], [ -123.047035008999941, 49.329856619000033 ], [ -123.047305211999983, 49.330041605000119 ], [ -123.048154396999948, 49.330639412000039 ], [ -123.048994092999976, 49.331237908000055 ], [ -123.049088800999968, 49.331306194000085 ], [ -123.04840621699999, 49.331668454000109 ], [ -123.047637715999954, 49.332076299000114 ], [ -123.047623596999955, 49.332083759000106 ], [ -123.04664367, 49.33260329000008 ], [ -123.046013223999964, 49.33293753900012 ], [ -123.045826026999947, 49.333036761000074 ], [ -123.045621316999956, 49.33314529800009 ], [ -123.045598510999952, 49.333157363000105 ], [ -123.044048069999945, 49.333979105 ], [ -123.043869670999982, 49.334073649000047 ], [ -123.043834073999932, 49.334092505000037 ], [ -123.043798894999924, 49.334059202000063 ], [ -123.043786113999971, 49.33404709900006 ], [ -123.043313506999937, 49.333646891000043 ], [ -123.043028005999972, 49.333464309000092 ], [ -123.04278949899999, 49.333384906000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "906832300", "BldgCostT": "622443833", "sL_LossRatio": "0.833252692937361", "sL_AssetLoss": "9589900", "sL_BldgLoss": "7990810", "sL_StrLoss": "3757960", "sL_NStrLoss": "4232850", "sL_ContLoss": "1599090", "geom_point": "0101000020E61000008270ABA43EC85EC0E12FD23021964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125998801999941, 49.171945487000059 ], [ -123.127914515000015, 49.171954700000065 ], [ -123.129721063999952, 49.171963351000045 ], [ -123.130351322999942, 49.171966336000061 ], [ -123.131558195999986, 49.171972111000066 ], [ -123.131554239999957, 49.172758898000033 ], [ -123.131549130999971, 49.173785295000073 ], [ -123.131547998999949, 49.17381893400011 ], [ -123.131545861999911, 49.173882495000136 ], [ -123.128979481999963, 49.173876291000042 ], [ -123.128682985999944, 49.173903490000122 ], [ -123.128681732999922, 49.17381289300009 ], [ -123.128680995999957, 49.173758390000096 ], [ -123.126254935999967, 49.17373625500003 ], [ -123.126022607999943, 49.173734132000021 ], [ -123.126008902999942, 49.173734014000068 ], [ -123.125998801999941, 49.171945487000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229269955", "BldgCostT": "157019713", "sL_LossRatio": "0.843092447154863", "sL_AssetLoss": "1452830", "sL_BldgLoss": "1224870", "sL_StrLoss": "557570", "sL_NStrLoss": "667300", "sL_ContLoss": "227960", "geom_point": "0101000020E61000007FE73833D1C85EC0C561729BD7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13712983799999, 49.279284303000097 ], [ -123.138773033999911, 49.278795522000074 ], [ -123.138795696999949, 49.278820811000116 ], [ -123.139784511999949, 49.279555541000065 ], [ -123.139811584999975, 49.27957565800012 ], [ -123.139880450999968, 49.279626826000055 ], [ -123.14020559899997, 49.279868416000113 ], [ -123.138363398999942, 49.280513286000087 ], [ -123.13811262399993, 49.280680494000059 ], [ -123.137631413999955, 49.280994710000058 ], [ -123.137525080000017, 49.281064140000055 ], [ -123.137042886999936, 49.281379015000027 ], [ -123.135495392999971, 49.280378694000021 ], [ -123.136025636999946, 49.280024035000068 ], [ -123.136157821999944, 49.279935633000079 ], [ -123.136570492999937, 49.279659613000085 ], [ -123.137129597999902, 49.279284389000068 ], [ -123.13712983799999, 49.279284303000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "439536742", "BldgCostT": "280562630", "sL_LossRatio": "0.701826749574707", "sL_AssetLoss": "5191133", "sL_BldgLoss": "3643276", "sL_StrLoss": "1600036", "sL_NStrLoss": "2043240", "sL_ContLoss": "1547857", "geom_point": "0101000020E61000000512F47AA4B75EC045C4ADE542874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.8340815, 49.068912184000112 ], [ -122.834722387999975, 49.068146466000059 ], [ -122.834437695999952, 49.067862697000137 ], [ -122.834263207999982, 49.067688799000038 ], [ -122.834287520999965, 49.067310984000081 ], [ -122.836379788999949, 49.066924791000126 ], [ -122.837389498, 49.066320108000056 ], [ -122.838454127999938, 49.065450306000045 ], [ -122.838678504999962, 49.065268498000108 ], [ -122.839815099999896, 49.064648585000072 ], [ -122.841549289999961, 49.064462784000078 ], [ -122.842243400999962, 49.064388408000127 ], [ -122.845539104999915, 49.063360609000036 ], [ -122.846214259999968, 49.063128468000059 ], [ -122.846252122999914, 49.063115435000071 ], [ -122.847537378999959, 49.062673510000046 ], [ -122.848487524999953, 49.062346799000068 ], [ -122.850515004999949, 49.060338732000091 ], [ -122.850522607999949, 49.060331200000078 ], [ -122.852556829999969, 49.058275938000037 ], [ -122.852852590999959, 49.057977089000104 ], [ -122.85334882099994, 49.057719502000118 ], [ -122.855698574999934, 49.057172683000012 ], [ -122.85651319399993, 49.056983087000113 ], [ -122.858687607999968, 49.056545701000054 ], [ -122.860154603999973, 49.056028088000119 ], [ -122.860907482999934, 49.055612660000087 ], [ -122.862453203999962, 49.054759682000068 ], [ -122.863395581999967, 49.054232212000102 ], [ -122.863737285999946, 49.053727593000112 ], [ -122.864081076999952, 49.053590162000063 ], [ -122.864480897999968, 49.053430304000081 ], [ -122.864707737999979, 49.053354603000102 ], [ -122.864900722999906, 49.053290201999985 ], [ -122.866800008, 49.053098215000063 ], [ -122.867362985999932, 49.053041314000104 ], [ -122.867348116999921, 49.054205159000084 ], [ -122.867340502999923, 49.054801486000017 ], [ -122.868204903999981, 49.054801489000063 ], [ -122.872385244999961, 49.053816714000057 ], [ -122.87254529099999, 49.053779011000103 ], [ -122.873700592999938, 49.053936042000068 ], [ -122.874316791999959, 49.054019794000084 ], [ -122.873732607999983, 49.053483587000073 ], [ -122.873619586, 49.053379845000087 ], [ -122.873389078999978, 49.053168303000092 ], [ -122.87309970299999, 49.053058011000104 ], [ -122.873787706999934, 49.053058542000073 ], [ -122.874800077999964, 49.053094895000079 ], [ -122.876347299999935, 49.053112002000013 ], [ -122.876367178999971, 49.052362474000077 ], [ -122.876369701999977, 49.052267301000036 ], [ -122.876674877999946, 49.05228092600008 ], [ -122.876721595999967, 49.052282996000024 ], [ -122.877383397999907, 49.052040896000101 ], [ -122.87758414699999, 49.051970439000073 ], [ -122.877878429999967, 49.05186880800008 ], [ -122.877988005999924, 49.051832946000069 ], [ -122.87815241499996, 49.051761162000084 ], [ -122.878385420999933, 49.051617477000029 ], [ -122.878563544999935, 49.051536696000092 ], [ -122.87886489499999, 49.051429077000101 ], [ -122.879056761999962, 49.051321339000033 ], [ -122.879303523999951, 49.05115066600009 ], [ -122.879427008999969, 49.051033865000058 ], [ -122.879495604999974, 49.050961965000113 ], [ -122.879591614999967, 49.050872104000049 ], [ -122.879468594999977, 49.050809023000056 ], [ -122.879372881, 49.05076393900012 ], [ -122.879085720999925, 49.050673691000149 ], [ -122.879017333, 49.05065561600005 ], [ -122.878785039999954, 49.050493453000058 ], [ -122.878757799999946, 49.050448442000018 ], [ -122.878730563999909, 49.050394441000037 ], [ -122.878717334999919, 49.050214534000119 ], [ -122.878717455999919, 49.050151550000095 ], [ -122.878717948999949, 49.049953656000106 ], [ -122.878745789999982, 49.049764759000055 ], [ -122.878759621999947, 49.049701825000035 ], [ -122.878758050000016, 49.049479870000027 ], [ -122.878749001999964, 49.049417698000099 ], [ -122.878853495999977, 49.049204410000108 ], [ -122.879336004999971, 49.048820097000075 ], [ -122.879187630999951, 49.048824695000086 ], [ -122.878870094999968, 49.048834506000091 ], [ -122.878482911999981, 49.048815189000088 ], [ -122.878309287999954, 49.048181996000032 ], [ -122.878395610999974, 49.048118694000046 ], [ -122.878391693999944, 49.047706789000145 ], [ -122.878386025999987, 49.046967011000035 ], [ -122.878376902999932, 49.045782393000081 ], [ -122.879765792999962, 49.045791193000063 ], [ -122.88122500799993, 49.045790292000071 ], [ -122.882299651999944, 49.045792464000051 ], [ -122.882558209999971, 49.04579298700007 ], [ -122.883506215999901, 49.045854593000051 ], [ -122.883993932999914, 49.045807621000037 ], [ -122.884227622999944, 49.045792289000062 ], [ -122.884440827999967, 49.04578058400007 ], [ -122.884440782999931, 49.045800492000055 ], [ -122.884406586999901, 49.045983991000078 ], [ -122.88423762199993, 49.046632169000141 ], [ -122.884028314999966, 49.046631959000045 ], [ -122.884027041999929, 49.047179460000102 ], [ -122.883951119999921, 49.047278605000081 ], [ -122.883840783999943, 49.047899496000042 ], [ -122.883853811000023, 49.048285497000059 ], [ -122.884023418999931, 49.04873753800009 ], [ -122.884023293999988, 49.048790884000027 ], [ -122.88404344099996, 49.048790905000018 ], [ -122.88532288299993, 49.052200598000105 ], [ -122.886426197999938, 49.054386803000078 ], [ -122.887122308999949, 49.055161592000047 ], [ -122.887701595999957, 49.056220479000082 ], [ -122.887699775999948, 49.057028454000061 ], [ -122.887696271999985, 49.057031926000022 ], [ -122.88756679699999, 49.057160239000012 ], [ -122.887529036999965, 49.05716020100008 ], [ -122.887526358999978, 49.057200313000067 ], [ -122.887404877999984, 49.057320700000027 ], [ -122.887297988999961, 49.057361053000108 ], [ -122.887288396999921, 49.057360775000035 ], [ -122.887288388999963, 49.057364678000063 ], [ -122.887118287999925, 49.057428895000079 ], [ -122.887053027999968, 49.057410223000126 ], [ -122.8865162099999, 49.057256588000044 ], [ -122.886129707999928, 49.057428697000063 ], [ -122.885645723, 49.057428217000059 ], [ -122.885645120999925, 49.057690646000012 ], [ -122.884871495999931, 49.058380301000078 ], [ -122.883130002999977, 49.059681991000076 ], [ -122.88221081099995, 49.059842895000088 ], [ -122.881569195999958, 49.059645004000075 ], [ -122.880980013999988, 49.059607897000085 ], [ -122.880226098999941, 49.059858593000058 ], [ -122.879814902999925, 49.060200406 ], [ -122.87934779599999, 49.061144713000012 ], [ -122.878867214999957, 49.061647402000027 ], [ -122.878325020999966, 49.06200845000005 ], [ -122.877421852999959, 49.062007494000049 ], [ -122.877422399999915, 49.061784324000094 ], [ -122.877512605999968, 49.061745685000034 ], [ -122.877636190999951, 49.061566208000016 ], [ -122.877805803999934, 49.061198304000051 ], [ -122.87783450299996, 49.061198335000086 ], [ -122.877834657, 49.061135716000109 ], [ -122.878158795999951, 49.060432604000063 ], [ -122.878241781999989, 49.059704802000084 ], [ -122.878106289999934, 49.059469792000058 ], [ -122.877873182999934, 49.059478305000056 ], [ -122.87783436899997, 49.059501922000038 ], [ -122.877838824999969, 49.059435415000031 ], [ -122.877839793999897, 49.059039413000065 ], [ -122.877546240999948, 49.059039103000096 ], [ -122.877600585999986, 49.058696408000039 ], [ -122.877492298999925, 49.058579696000038 ], [ -122.877246097999958, 49.058659409000057 ], [ -122.877123391999987, 49.058768789000041 ], [ -122.877019173999912, 49.058768678000042 ], [ -122.877021057999983, 49.058005605000105 ], [ -122.877521091999967, 49.057698103000057 ], [ -122.878671796999953, 49.057276512000065 ], [ -122.878810988999987, 49.057051511000019 ], [ -122.879207903999884, 49.05688061200005 ], [ -122.879275790999955, 49.05662851000011 ], [ -122.878962104999943, 49.056547285000129 ], [ -122.878256182999976, 49.056687087000086 ], [ -122.878256577999977, 49.05652521800009 ], [ -122.877685602, 49.056508619000098 ], [ -122.877714934, 49.056070758000054 ], [ -122.876615213999969, 49.056069587000046 ], [ -122.876615881999939, 49.05579972099999 ], [ -122.875384032999989, 49.055798398000043 ], [ -122.875383358999969, 49.056068264000089 ], [ -122.874562121999929, 49.056067374000051 ], [ -122.874561442999934, 49.056337239000065 ], [ -122.874150823999983, 49.056336792000067 ], [ -122.874150141999976, 49.056606657000032 ], [ -122.873369304000022, 49.056605804000078 ], [ -122.873352068999935, 49.056862724000027 ], [ -122.872542803, 49.056711092000072 ], [ -122.872378278000028, 49.056721094000046 ], [ -122.872062199999945, 49.056917598000062 ], [ -122.871843098999975, 49.057044394000094 ], [ -122.871089701999935, 49.057042905000017 ], [ -122.871008084999943, 49.056745305000099 ], [ -122.870853321999974, 49.056674158000057 ], [ -122.870831405999965, 49.056664084000033 ], [ -122.870435288999914, 49.056691189000034 ], [ -122.870203306999912, 49.056420586000037 ], [ -122.870203216999982, 49.056259607000101 ], [ -122.870832998999902, 49.055971910000039 ], [ -122.870887612999937, 49.055765406000056 ], [ -122.870710589999959, 49.055575998000052 ], [ -122.870697288000017, 49.055396501000111 ], [ -122.870287010999974, 49.055351004000066 ], [ -122.867956840000019, 49.055726699000026 ], [ -122.867988843999981, 49.055250445000098 ], [ -122.86793837099998, 49.0552503870001 ], [ -122.867905808999964, 49.055734926000092 ], [ -122.867575295, 49.05578821000006 ], [ -122.866289885999919, 49.05591349900007 ], [ -122.865618995999981, 49.055893588000082 ], [ -122.863112182999942, 49.056494602000129 ], [ -122.860413111999947, 49.057767907000056 ], [ -122.858759790999954, 49.058084478000083 ], [ -122.857936378999938, 49.058060390000037 ], [ -122.857997136999984, 49.057159157000044 ], [ -122.857723349999944, 49.057251126000025 ], [ -122.857722933999952, 49.057397174000094 ], [ -122.857290152999965, 49.05739664000005 ], [ -122.857232034999981, 49.057416162000017 ], [ -122.856901360999927, 49.057506124000099 ], [ -122.856900902999882, 49.057666024000106 ], [ -122.856316272999919, 49.057665298000103 ], [ -122.855668495999907, 49.057841521000036 ], [ -122.855668227999985, 49.057934355000114 ], [ -122.855328803, 49.057933930000061 ], [ -122.855282736, 49.057946462000089 ], [ -122.854846492999968, 49.058094142000094 ], [ -122.854846174999963, 49.058203189000047 ], [ -122.854525554999938, 49.058202787000084 ], [ -122.854024403999958, 49.058372433000045 ], [ -122.854024112999937, 49.058472019000092 ], [ -122.853731312999955, 49.058471649000104 ], [ -122.853346935000019, 49.058601761000055 ], [ -122.853202156999927, 49.058702663000119 ], [ -122.853201247999905, 49.059010706000024 ], [ -122.852791735000011, 49.059010185000098 ], [ -122.852790603999935, 49.059011318000074 ], [ -122.85278981, 49.059280048000048 ], [ -122.85252267599999, 49.059279707000044 ], [ -122.852378738999931, 49.059423891000115 ], [ -122.852378366999986, 49.059549389000033 ], [ -122.852253612999945, 49.059549230000066 ], [ -122.852103834999937, 49.059699262000024 ], [ -122.851966795999914, 49.059859795000136 ], [ -122.851966116999961, 49.060088592000021 ], [ -122.85177169499994, 49.060088343000103 ], [ -122.85155470799999, 49.060342525000053 ], [ -122.851553858999978, 49.060627795000094 ], [ -122.851311445999926, 49.060627482000044 ], [ -122.851142610999958, 49.06082525100009 ], [ -122.851141591999948, 49.061166996000061 ], [ -122.850916748999964, 49.061166705000069 ], [ -122.850729758999989, 49.061558347000108 ], [ -122.850726896999944, 49.062513532000061 ], [ -122.850718439, 49.062515777000065 ], [ -122.850441105999977, 49.062515418000125 ], [ -122.850377705999975, 49.063453448000089 ], [ -122.850279895999961, 49.063540188000047 ], [ -122.849672814999977, 49.064653898000103 ], [ -122.848643206999952, 49.066019684000032 ], [ -122.848376784999957, 49.066264595000142 ], [ -122.845149958999983, 49.066169864000116 ], [ -122.84513934099999, 49.066326664000066 ], [ -122.844950899999901, 49.066250497000034 ], [ -122.844534886999938, 49.06629319400011 ], [ -122.84208590599998, 49.066119387000093 ], [ -122.841619615999917, 49.066226205000149 ], [ -122.841481902999959, 49.066145101000082 ], [ -122.84056551899999, 49.066072401000049 ], [ -122.839908411999929, 49.066152201000129 ], [ -122.839018121, 49.066502502000027 ], [ -122.838139801999958, 49.067120585000062 ], [ -122.837150601999937, 49.068000799000032 ], [ -122.836628795999957, 49.068315603000038 ], [ -122.83649181599999, 49.068630296000066 ], [ -122.836312813999939, 49.068620305000117 ], [ -122.836353290999966, 49.068782695000074 ], [ -122.83577699199995, 49.069483397000049 ], [ -122.835712883999975, 49.069781764000076 ], [ -122.835508024999967, 49.069781472000059 ], [ -122.835504827999955, 49.070750057000055 ], [ -122.835456280999963, 49.070975995000083 ], [ -122.835502939999955, 49.071322066000036 ], [ -122.835500009000015, 49.072210248000026 ], [ -122.835089257, 49.072209662000034 ], [ -122.835088363999915, 49.07247952600008 ], [ -122.834677609999943, 49.072478938000089 ], [ -122.834676715999933, 49.072748802000049 ], [ -122.834093292999938, 49.072747965000147 ], [ -122.834092955999949, 49.07264017300011 ], [ -122.8340815, 49.068912184000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176540395", "BldgCostT": "116906524", "sL_LossRatio": "0.820107293348926", "sL_AssetLoss": "1077420", "sL_BldgLoss": "883600", "sL_StrLoss": "407630", "sL_NStrLoss": "475970", "sL_ContLoss": "193820", "geom_point": "0101000020E6100000C591A4F7CFC75EC037740EF942AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120068079999953, 49.329817496000018 ], [ -123.121100512999931, 49.329465703000096 ], [ -123.12182832299996, 49.329284804000075 ], [ -123.122736781999933, 49.329166597000061 ], [ -123.123905695999966, 49.329066910000058 ], [ -123.124420571999963, 49.329066434000019 ], [ -123.124357551999978, 49.330219013000018 ], [ -123.124322491999948, 49.330860089000076 ], [ -123.121149719999934, 49.330955961000143 ], [ -123.118773559999937, 49.331027695000039 ], [ -123.119217683999921, 49.330726107000075 ], [ -123.119642390999942, 49.330132203000112 ], [ -123.120068079999953, 49.329817496000018 ] ], [ [ -123.123062405999931, 49.329457349000052 ], [ -123.123064488999958, 49.329186405000065 ], [ -123.122868249999911, 49.329212453000146 ], [ -123.122374736, 49.329355669000108 ], [ -123.122386756999944, 49.329423554000094 ], [ -123.122434793999957, 49.329695200000081 ], [ -123.123090990999984, 49.329661464000019 ], [ -123.123062405999931, 49.329457349000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122846167", "BldgCostT": "76371667", "sL_LossRatio": "0.665523570602485", "sL_AssetLoss": "1737970", "sL_BldgLoss": "1156660", "sL_StrLoss": "512460", "sL_NStrLoss": "644200", "sL_ContLoss": "581310", "geom_point": "0101000020E6100000FDE1AD14BEA85EC0619F5B4304954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.632950008999913, 49.164538504000042 ], [ -122.632937645999959, 49.164414064000049 ], [ -122.632934060999986, 49.164378246000126 ], [ -122.632846918, 49.163501606000047 ], [ -122.632844958999968, 49.162947276000033 ], [ -122.632842692999986, 49.162291185000079 ], [ -122.63346539299999, 49.162313638000079 ], [ -122.633725953999928, 49.162323007000097 ], [ -122.634947483999966, 49.162367005000135 ], [ -122.636345059999954, 49.162421913000088 ], [ -122.63774500699999, 49.162476884000043 ], [ -122.640361497999962, 49.162587479000074 ], [ -122.640362339999911, 49.164689308000085 ], [ -122.640362378999924, 49.16474301900007 ], [ -122.640362409999952, 49.164851211000077 ], [ -122.640214902999972, 49.165203419000136 ], [ -122.639912, 49.16558149500004 ], [ -122.639367008999926, 49.165911406000056 ], [ -122.638921408999934, 49.166062388000107 ], [ -122.63849991099994, 49.16614468900007 ], [ -122.637347014999975, 49.166133095000085 ], [ -122.635818220999965, 49.166117703000047 ], [ -122.634787718999931, 49.166298199000011 ], [ -122.634239715999982, 49.165892705000026 ], [ -122.633676191999925, 49.165587605000134 ], [ -122.633309819999951, 49.165288695000079 ], [ -122.633216879999935, 49.165168753000067 ], [ -122.633081000999965, 49.16499333100009 ], [ -122.633056500999913, 49.164961698000091 ], [ -122.632974723999951, 49.164636792000088 ], [ -122.632950008999913, 49.164538504000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115901500", "BldgCostT": "74335000", "sL_LossRatio": "0.688487558678244", "sL_AssetLoss": "2607440", "sL_BldgLoss": "1795190", "sL_StrLoss": "727260", "sL_NStrLoss": "1067930", "sL_ContLoss": "812250", "geom_point": "0101000020E6100000E8DF057C04C85EC08B39AD80E7AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128624878999958, 49.337956203000061 ], [ -123.128481773999937, 49.337934399000027 ], [ -123.127032382999971, 49.337919060000047 ], [ -123.12668179699989, 49.337915353000085 ], [ -123.124034815999948, 49.337887302000084 ], [ -123.119212479999959, 49.337853577000082 ], [ -123.119144860999967, 49.337848522000122 ], [ -123.119144570999964, 49.337728339000037 ], [ -123.118852965, 49.33772056700009 ], [ -123.119032669999967, 49.334831849000082 ], [ -123.11858358899994, 49.334819878000147 ], [ -123.118539412999908, 49.335529934000128 ], [ -123.118163943999917, 49.33551992400006 ], [ -123.1181473339999, 49.334671049000093 ], [ -123.118592086999953, 49.334001800000053 ], [ -123.118730101999972, 49.33357030400002 ], [ -123.118687210999951, 49.333218499000111 ], [ -123.118493101999931, 49.332940812000082 ], [ -123.11846921599999, 49.332611286000052 ], [ -123.118464403999923, 49.332544893000012 ], [ -123.118134307999924, 49.332094794000106 ], [ -123.118187682999974, 49.33162769700008 ], [ -123.118420692999948, 49.33126731100009 ], [ -123.118773559999937, 49.331027695000039 ], [ -123.121149719999934, 49.330955961000143 ], [ -123.124322491999948, 49.330860089000076 ], [ -123.124168707999942, 49.333559703000084 ], [ -123.12416329499996, 49.334422389000046 ], [ -123.125172389999946, 49.334433225000026 ], [ -123.12575550299999, 49.334439502000052 ], [ -123.127301594999921, 49.334444594000068 ], [ -123.127844998999961, 49.33444549200005 ], [ -123.129384631999983, 49.334446100000044 ], [ -123.130747228999937, 49.334446620000058 ], [ -123.132013499999957, 49.334447092000033 ], [ -123.134553597999968, 49.334448001000048 ], [ -123.134902507, 49.334457187000062 ], [ -123.134901992999971, 49.334487566000043 ], [ -123.134878079999936, 49.335960361000048 ], [ -123.134874384999975, 49.336187726000105 ], [ -123.134868144000038, 49.33657127400005 ], [ -123.134866677, 49.336660108000054 ], [ -123.134763862999975, 49.336765469000099 ], [ -123.134685906999948, 49.33731369700007 ], [ -123.134681949999958, 49.337533335000074 ], [ -123.134679825999953, 49.337612539000133 ], [ -123.134674746999963, 49.337760997000089 ], [ -123.134386604999989, 49.337756798 ], [ -123.134307515999964, 49.33775564200004 ], [ -123.133722741999932, 49.337747122000103 ], [ -123.131127943999957, 49.337709266000033 ], [ -123.130350026999963, 49.337650767000135 ], [ -123.12969174600002, 49.337540608000104 ], [ -123.12940774499999, 49.337668988000132 ], [ -123.129261190999927, 49.338013601000057 ], [ -123.128907595999976, 49.338124015000112 ], [ -123.128624878999958, 49.337956203000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110190083", "BldgCostT": "74078333", "sL_LossRatio": "0.749407231900944", "sL_AssetLoss": "1152643", "sL_BldgLoss": "863799", "sL_StrLoss": "417709", "sL_NStrLoss": "446090", "sL_ContLoss": "288844", "geom_point": "0101000020E61000003FD6DF545CC85EC01C11295990AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124562920999907, 49.330816746000039 ], [ -123.125845958999946, 49.330585371000033 ], [ -123.126487168999944, 49.330629449000057 ], [ -123.127003699999989, 49.330695490000053 ], [ -123.127018941999964, 49.330697423000025 ], [ -123.127559937999962, 49.330766515000107 ], [ -123.127768799999942, 49.330793201000148 ], [ -123.130738212, 49.330829790000038 ], [ -123.13131513399999, 49.33083523500008 ], [ -123.132107701999985, 49.330842716000078 ], [ -123.132636548999955, 49.330846419000046 ], [ -123.133447107999956, 49.330852088000029 ], [ -123.134930586999971, 49.330844609000053 ], [ -123.13619278699997, 49.330857357000056 ], [ -123.138935163999946, 49.330871434000109 ], [ -123.137649798999988, 49.331702006000079 ], [ -123.137717215999928, 49.332771093000062 ], [ -123.137319394999935, 49.33315229300004 ], [ -123.137108305999959, 49.333295286000045 ], [ -123.136852198999975, 49.333410091000069 ], [ -123.136611209999899, 49.333480301000129 ], [ -123.136237694999977, 49.333513610000068 ], [ -123.134910276999946, 49.333509096000085 ], [ -123.134902507, 49.334457187000062 ], [ -123.134553597999968, 49.334448001000048 ], [ -123.132013499999957, 49.334447092000033 ], [ -123.130747228999937, 49.334446620000058 ], [ -123.129384631999983, 49.334446100000044 ], [ -123.127844998999961, 49.33444549200005 ], [ -123.127301594999921, 49.334444594000068 ], [ -123.12575550299999, 49.334439502000052 ], [ -123.125172389999946, 49.334433225000026 ], [ -123.12416329499996, 49.334422389000046 ], [ -123.124168707999942, 49.333559703000084 ], [ -123.124322491999948, 49.330860089000076 ], [ -123.124562920999907, 49.330816746000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219856000", "BldgCostT": "139630000", "sL_LossRatio": "0.736227865101472", "sL_AssetLoss": "1608320", "sL_BldgLoss": "1184090", "sL_StrLoss": "567960", "sL_NStrLoss": "616130", "sL_ContLoss": "424230", "geom_point": "0101000020E6100000747AB50E94C85EC0C5E8CAB106964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133629621999958, 49.170240608000043 ], [ -123.1364795099999, 49.170248201000078 ], [ -123.136472203999958, 49.171241254000115 ], [ -123.136466583999933, 49.172009060000036 ], [ -123.136466476999942, 49.172018080000043 ], [ -123.136671047999982, 49.173816204000069 ], [ -123.136667994, 49.173910710000079 ], [ -123.131545861999911, 49.173882495000136 ], [ -123.131547998999949, 49.17381893400011 ], [ -123.131549130999971, 49.173785295000073 ], [ -123.131554239999957, 49.172758898000033 ], [ -123.131558195999986, 49.171972111000066 ], [ -123.131510416999973, 49.17023491000004 ], [ -123.131524134999964, 49.170234934000064 ], [ -123.133629621999958, 49.170240608000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149489500", "BldgCostT": "102325000", "sL_LossRatio": "0.80294092397503", "sL_AssetLoss": "815390", "sL_BldgLoss": "654710", "sL_StrLoss": "352880", "sL_NStrLoss": "301830", "sL_ContLoss": "160680", "geom_point": "0101000020E6100000CF3FEA447CC85EC01C6681D9B1954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131505508999908, 49.168826697000029 ], [ -123.132176326999954, 49.16883174500007 ], [ -123.133669202999968, 49.168842908000101 ], [ -123.133656618999964, 49.170158695000111 ], [ -123.132193601999958, 49.170141786000023 ], [ -123.13151671599995, 49.170133963000048 ], [ -123.131503010999893, 49.170133788000044 ], [ -123.131505508999908, 49.168826697000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "691238187", "BldgCostT": "445739544", "sL_LossRatio": "0.729958550002623", "sL_AssetLoss": "5262244", "sL_BldgLoss": "3841220", "sL_StrLoss": "1663310", "sL_NStrLoss": "2177910", "sL_ContLoss": "1421024", "geom_point": "0101000020E6100000FF00312AA5C85EC0150A327E71954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133694884999954, 49.166492302000073 ], [ -123.133718397999928, 49.164710102000065 ], [ -123.136484312999926, 49.164717099 ], [ -123.136472650999977, 49.1665004890001 ], [ -123.136472579, 49.166509495000028 ], [ -123.136519196999942, 49.166509893000061 ], [ -123.136623362999941, 49.166510789000078 ], [ -123.13662142699999, 49.167483602000054 ], [ -123.136618789999943, 49.168832200000082 ], [ -123.13651143599995, 49.168832041000023 ], [ -123.136474899999925, 49.168832011000106 ], [ -123.136481289999949, 49.170174411000104 ], [ -123.1364795099999, 49.170248201000078 ], [ -123.133629621999958, 49.170240608000043 ], [ -123.131524134999964, 49.170234934000064 ], [ -123.131510416999973, 49.17023491000004 ], [ -123.13150528499996, 49.170165007000094 ], [ -123.131503010999893, 49.170133788000044 ], [ -123.13151671599995, 49.170133963000048 ], [ -123.132193601999958, 49.170141786000023 ], [ -123.133656618999964, 49.170158695000111 ], [ -123.133669202999968, 49.168842908000101 ], [ -123.13367393599998, 49.168410055000038 ], [ -123.133694884999954, 49.166492302000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124781123", "BldgCostT": "79001381", "sL_LossRatio": "0.732330549774769", "sL_AssetLoss": "2391543", "sL_BldgLoss": "1751400", "sL_StrLoss": "700180", "sL_NStrLoss": "1051220", "sL_ContLoss": "640143", "geom_point": "0101000020E6100000612DD3697CC85EC01F52B1D675954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13150952299992, 49.168294406000051 ], [ -123.131494905999887, 49.16648689000003 ], [ -123.133694884999954, 49.166492302000073 ], [ -123.13367393599998, 49.168410055000038 ], [ -123.133669202999968, 49.168842908000101 ], [ -123.132176326999954, 49.16883174500007 ], [ -123.131505508999908, 49.168826697000029 ], [ -123.13150952299992, 49.168294406000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157128500", "BldgCostT": "107570000", "sL_LossRatio": "0.851828813137596", "sL_AssetLoss": "2331020", "sL_BldgLoss": "1985630", "sL_StrLoss": "901420", "sL_NStrLoss": "1084210", "sL_ContLoss": "345390", "geom_point": "0101000020E6100000058FBAC67CC85EC0277C3A4732954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131529916999952, 49.164697801000081 ], [ -123.133718397999928, 49.164710102000065 ], [ -123.133694884999954, 49.166492302000073 ], [ -123.131494905999887, 49.16648689000003 ], [ -123.131533581000014, 49.165926689000095 ], [ -123.131529916999952, 49.164697801000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114151584", "BldgCostT": "71213334", "sL_LossRatio": "0.709398313331171", "sL_AssetLoss": "1233200", "sL_BldgLoss": "874830", "sL_StrLoss": "373100", "sL_NStrLoss": "501730", "sL_ContLoss": "358370", "geom_point": "0101000020E61000000873710AA1B75EC0C17EB2D60EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868068793, 49.286298193000043 ], [ -122.86787582099997, 49.286225007000034 ], [ -122.867697904999929, 49.286254094000064 ], [ -122.867388202999962, 49.286300989000061 ], [ -122.867197698999945, 49.285723411000056 ], [ -122.867058436999926, 49.284672477000086 ], [ -122.86686538, 49.283215700000085 ], [ -122.86676622499999, 49.282445295000045 ], [ -122.866741856999951, 49.281941778000018 ], [ -122.866665914999913, 49.280371383000116 ], [ -122.866685503999975, 49.279571980000171 ], [ -122.866704879999972, 49.279041018000044 ], [ -122.866786060999942, 49.278351036000061 ], [ -122.866796589999964, 49.278261286000031 ], [ -122.866814707999978, 49.278107316000053 ], [ -122.866808516, 49.27771075800004 ], [ -122.866807451999961, 49.277701756000056 ], [ -122.86674167699999, 49.27715366500005 ], [ -122.866730914999948, 49.277063937000037 ], [ -122.86672411799999, 49.277007440000048 ], [ -122.866792206999946, 49.276874299000127 ], [ -122.866773704999943, 49.276639538000026 ], [ -122.868513799999945, 49.276616794000134 ], [ -122.868527613999973, 49.276616603000036 ], [ -122.868896396999972, 49.276547997000101 ], [ -122.869119494999921, 49.276440089000076 ], [ -122.869298704999935, 49.276229083000032 ], [ -122.86933791099996, 49.27662479100011 ], [ -122.869354489999949, 49.277152198000095 ], [ -122.869372004, 49.277687899000043 ], [ -122.869393848999948, 49.278207808000076 ], [ -122.86939388499998, 49.278209280000048 ], [ -122.869414688999939, 49.27870440100007 ], [ -122.869346583999942, 49.278878097000081 ], [ -122.86919689699999, 49.279018698000108 ], [ -122.868844005999946, 49.279217487000089 ], [ -122.870217754999985, 49.27898167200005 ], [ -122.87165536199997, 49.278734891000035 ], [ -122.872775068999914, 49.278548163000075 ], [ -122.870847911999988, 49.279269832000054 ], [ -122.870176702999956, 49.279529861000135 ], [ -122.87012074499998, 49.279760997000025 ], [ -122.870068064999913, 49.280087111000036 ], [ -122.871371583999988, 49.280674748000081 ], [ -122.872685764999957, 49.280644435000035 ], [ -122.875174997999963, 49.280559503000092 ], [ -122.87507682799999, 49.280723148000021 ], [ -122.874919492999965, 49.280985415000046 ], [ -122.874644486999955, 49.281327647000076 ], [ -122.874584885, 49.28140179400004 ], [ -122.87448708099997, 49.281649406000085 ], [ -122.874275790999903, 49.281653704000114 ], [ -122.874196147999953, 49.281655303000086 ], [ -122.873226298999953, 49.281675009000011 ], [ -122.872960798999927, 49.281698891000048 ], [ -122.872462401999911, 49.281813296000074 ], [ -122.872192590999987, 49.281920699000054 ], [ -122.871942717999971, 49.282059405000091 ], [ -122.87171789199995, 49.282233085000037 ], [ -122.871506291999978, 49.282477394000125 ], [ -122.871342494999965, 49.282806013000048 ], [ -122.87128818399999, 49.283061091000086 ], [ -122.871286776999952, 49.283132604000151 ], [ -122.871266906999963, 49.284129792000094 ], [ -122.871121596999956, 49.284653489000078 ], [ -122.871131234999922, 49.28482896000002 ], [ -122.871132714999959, 49.284855605000082 ], [ -122.870861285999965, 49.285719796000109 ], [ -122.870863293999989, 49.28573874900006 ], [ -122.870657502999933, 49.285825685000098 ], [ -122.869826393999986, 49.286057936000077 ], [ -122.869718861999957, 49.286068005000132 ], [ -122.869263948999958, 49.286532781000055 ], [ -122.869362638999959, 49.286769559000035 ], [ -122.869429691, 49.286930390000109 ], [ -122.869456590999931, 49.287081597000075 ], [ -122.86938919699999, 49.287163501000109 ], [ -122.869306110999958, 49.287213298000061 ], [ -122.868068793, 49.286298193000043 ] ], [ [ -122.870234384999932, 49.281200992000031 ], [ -122.869601583999923, 49.281106894000068 ], [ -122.869343009999938, 49.281129209000014 ], [ -122.869155280999948, 49.281202110000017 ], [ -122.868958385999974, 49.281329710000144 ], [ -122.868831119999939, 49.281484599000059 ], [ -122.868786681999921, 49.281673403000134 ], [ -122.869045602, 49.28305021000007 ], [ -122.869108596999965, 49.283115107000057 ], [ -122.869403387999938, 49.283227203000109 ], [ -122.869673396999957, 49.283260280000057 ], [ -122.870181618999979, 49.283469605000114 ], [ -122.870425793999971, 49.282743387000046 ], [ -122.870432302999944, 49.282647198000056 ], [ -122.870375586999913, 49.282530203000093 ], [ -122.870404286999985, 49.282247302000037 ], [ -122.870570014999913, 49.28193050700002 ], [ -122.871054011999945, 49.281500392000048 ], [ -122.87044639599999, 49.281236798000037 ], [ -122.870234384999932, 49.281200992000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18338833", "BldgCostT": "11173333", "sL_LossRatio": "0.731810714853479", "sL_AssetLoss": "188710", "sL_BldgLoss": "138100", "sL_StrLoss": "63840", "sL_NStrLoss": "74260", "sL_ContLoss": "50610", "geom_point": "0101000020E61000001D1EC2F8A9B75EC0A92A762C1DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.869343009999938, 49.281129209000014 ], [ -122.869601583999923, 49.281106894000068 ], [ -122.870234384999932, 49.281200992000031 ], [ -122.87044639599999, 49.281236798000037 ], [ -122.871054011999945, 49.281500392000048 ], [ -122.870570014999913, 49.28193050700002 ], [ -122.870404286999985, 49.282247302000037 ], [ -122.870375586999913, 49.282530203000093 ], [ -122.870432302999944, 49.282647198000056 ], [ -122.870425793999971, 49.282743387000046 ], [ -122.870181618999979, 49.283469605000114 ], [ -122.869673396999957, 49.283260280000057 ], [ -122.869403387999938, 49.283227203000109 ], [ -122.869108596999965, 49.283115107000057 ], [ -122.869045602, 49.28305021000007 ], [ -122.868786681999921, 49.281673403000134 ], [ -122.868831119999939, 49.281484599000059 ], [ -122.868958385999974, 49.281329710000144 ], [ -122.869155280999948, 49.281202110000017 ], [ -122.869343009999938, 49.281129209000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70882750", "BldgCostT": "46675000", "sL_LossRatio": "0.738128518000831", "sL_AssetLoss": "714717", "sL_BldgLoss": "527553", "sL_StrLoss": "272333", "sL_NStrLoss": "255220", "sL_ContLoss": "187164", "geom_point": "0101000020E6100000248369390CB65EC07F019C62FEA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.846709569999987, 49.300069178000051 ], [ -122.846709822999955, 49.299987417000104 ], [ -122.846519918999945, 49.299987164000044 ], [ -122.845885434999971, 49.299699867000122 ], [ -122.845886224999973, 49.299446612000096 ], [ -122.84547358899998, 49.299446061000012 ], [ -122.845474431999946, 49.29917620700013 ], [ -122.845061797999975, 49.299175655000028 ], [ -122.845062644999956, 49.298905801000103 ], [ -122.844650012999978, 49.298905248000068 ], [ -122.844650861999966, 49.298635394000129 ], [ -122.844238230999935, 49.29863483900013 ], [ -122.844237382999935, 49.298904692000129 ], [ -122.844129089999939, 49.298904546000117 ], [ -122.843378251, 49.298564530000085 ], [ -122.843064209999966, 49.298422301000116 ], [ -122.84318384699999, 49.298360935000083 ], [ -122.843334361, 49.298372544000124 ], [ -122.843522235999956, 49.298197876000074 ], [ -122.843827498999929, 49.297794196000055 ], [ -122.843906866999987, 49.297537083000037 ], [ -122.843915063999958, 49.297275166000126 ], [ -122.843840540999977, 49.29689554100004 ], [ -122.843578234999953, 49.296507727000112 ], [ -122.841031458, 49.294191946000041 ], [ -122.840563029999913, 49.29380256900005 ], [ -122.840001902000012, 49.29346185400005 ], [ -122.838715417999978, 49.293012492000067 ], [ -122.839133813999965, 49.292523010000089 ], [ -122.839419793999937, 49.292361113000077 ], [ -122.83962576499998, 49.292311056000081 ], [ -122.839853203999937, 49.292255803000074 ], [ -122.840286489999968, 49.292252188000084 ], [ -122.840671773999944, 49.292347291000105 ], [ -122.84095128099996, 49.292482492000012 ], [ -122.841192891, 49.292669697000122 ], [ -122.84130369099999, 49.292920714000076 ], [ -122.841589814999949, 49.293565096000101 ], [ -122.84177812499999, 49.293736979000087 ], [ -122.84177800599997, 49.293774112000101 ], [ -122.841818867999919, 49.293774167000045 ], [ -122.842600913999931, 49.294487971000088 ], [ -122.842600605999934, 49.294584799000077 ], [ -122.842707160999964, 49.294584944000121 ], [ -122.843833003999919, 49.295612490000082 ], [ -122.844740591999951, 49.296499413000042 ], [ -122.845225103999951, 49.296875688000064 ], [ -122.846007293999918, 49.297282303000074 ], [ -122.846121905999922, 49.297316181000028 ], [ -122.846815704999969, 49.29752750500009 ], [ -122.847568104999979, 49.297644895000069 ], [ -122.848165101999925, 49.297701992000036 ], [ -122.848863900000012, 49.297858403000099 ], [ -122.84934630099994, 49.298023790000052 ], [ -122.84967771699999, 49.298206495000031 ], [ -122.84995688399998, 49.298446997 ], [ -122.849987928999937, 49.298642446000052 ], [ -122.849602411999939, 49.298641944000067 ], [ -122.849603233999943, 49.298372091000026 ], [ -122.847952724999942, 49.298369931000074 ], [ -122.84794735199992, 49.300116739000082 ], [ -122.846767026999942, 49.300093536000134 ], [ -122.846709569999987, 49.300069178000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79312916", "BldgCostT": "51281666", "sL_LossRatio": "0.728454915031689", "sL_AssetLoss": "792060", "sL_BldgLoss": "576980", "sL_StrLoss": "299700", "sL_NStrLoss": "277280", "sL_ContLoss": "215080", "geom_point": "0101000020E610000061C83D9F39B65EC0F506E3D0F0A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.844740591999951, 49.296499413000042 ], [ -122.843833003999919, 49.295612490000082 ], [ -122.842707160999964, 49.294584944000121 ], [ -122.843425795999934, 49.294585921000106 ], [ -122.843424940999967, 49.294855773000087 ], [ -122.847963516999954, 49.294861834000066 ], [ -122.847961855999984, 49.295401542000036 ], [ -122.848374456999935, 49.295402084000067 ], [ -122.848372802999947, 49.295941791000082 ], [ -122.848926210999977, 49.295942516000082 ], [ -122.8491652109999, 49.296238499000012 ], [ -122.84952521299999, 49.296403 ], [ -122.849887783999989, 49.296631603000023 ], [ -122.850304374999965, 49.297037395000068 ], [ -122.850571387999977, 49.297295698000042 ], [ -122.851408098999912, 49.297751595000094 ], [ -122.851622991999989, 49.297907399000081 ], [ -122.851667357999972, 49.298045100000074 ], [ -122.851667070999923, 49.298140641000053 ], [ -122.850346985000016, 49.298324494000063 ], [ -122.84995688399998, 49.298446997 ], [ -122.84967771699999, 49.298206495000031 ], [ -122.84934630099994, 49.298023790000052 ], [ -122.848863900000012, 49.297858403000099 ], [ -122.848165101999925, 49.297701992000036 ], [ -122.847568104999979, 49.297644895000069 ], [ -122.846815704999969, 49.29752750500009 ], [ -122.846121905999922, 49.297316181000028 ], [ -122.846007293999918, 49.297282303000074 ], [ -122.845225103999951, 49.296875688000064 ], [ -122.844740591999951, 49.296499413000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102784917", "BldgCostT": "66896667", "sL_LossRatio": "0.712328767123288", "sL_AssetLoss": "1206690", "sL_BldgLoss": "859560", "sL_StrLoss": "398060", "sL_NStrLoss": "461500", "sL_ContLoss": "347130", "geom_point": "0101000020E6100000C0325FF3A4B55EC00BDAAA4540A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841785778999935, 49.291345429000081 ], [ -122.841781460999968, 49.292694697000066 ], [ -122.842194040999942, 49.292695261000091 ], [ -122.842191455999966, 49.293504822000031 ], [ -122.84177887, 49.293504258000063 ], [ -122.84177812499999, 49.293736979000087 ], [ -122.841589814999949, 49.293565096000101 ], [ -122.84130369099999, 49.292920714000076 ], [ -122.841192891, 49.292669697000122 ], [ -122.84095128099996, 49.292482492000012 ], [ -122.840671773999944, 49.292347291000105 ], [ -122.840286489999968, 49.292252188000084 ], [ -122.839853203999937, 49.292255803000074 ], [ -122.83962576499998, 49.292311056000081 ], [ -122.839419793999937, 49.292361113000077 ], [ -122.839133813999965, 49.292523010000089 ], [ -122.838715417999978, 49.293012492000067 ], [ -122.836107717999965, 49.29223094200006 ], [ -122.835127996999944, 49.291937272000062 ], [ -122.835184125999916, 49.290976756000099 ], [ -122.835269474999933, 49.289515345000034 ], [ -122.83526481399997, 49.288999905000018 ], [ -122.83526240799999, 49.288753473000064 ], [ -122.835259451999946, 49.288451941000076 ], [ -122.838124500999982, 49.28938120300009 ], [ -122.839633808999977, 49.289721519000068 ], [ -122.841190953999913, 49.290808594000119 ], [ -122.841380357999981, 49.290959020000095 ], [ -122.841510832999958, 49.291075196000087 ], [ -122.841374076999969, 49.291075009000096 ], [ -122.841373211999922, 49.291344862000045 ], [ -122.841785778999935, 49.291345429000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.772357723577236", "sL_AssetLoss": "12300", "sL_BldgLoss": "9500", "sL_StrLoss": "5020", "sL_NStrLoss": "4480", "sL_ContLoss": "2800", "geom_point": "0101000020E610000056082FEAE8B55EC083284633A2A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841818867999919, 49.293774167000045 ], [ -122.842603182999966, 49.293775238000109 ], [ -122.842600913999931, 49.294487971000088 ], [ -122.841818867999919, 49.293774167000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103298167", "BldgCostT": "68766667", "sL_LossRatio": "0.749622055071681", "sL_AssetLoss": "969718", "sL_BldgLoss": "726922", "sL_StrLoss": "390092", "sL_NStrLoss": "336830", "sL_ContLoss": "242796", "geom_point": "0101000020E61000000133196D19B25EC0E0B810D4BEA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782887104999972, 49.304226993000043 ], [ -122.782489008999946, 49.304197208000105 ], [ -122.781847192999919, 49.304191491 ], [ -122.781837309999972, 49.303402086000055 ], [ -122.780193599999933, 49.303407094000043 ], [ -122.778944611999989, 49.303410401000029 ], [ -122.778861105999951, 49.302930495000041 ], [ -122.778803608999908, 49.302371998000112 ], [ -122.778869680999918, 49.302174006000037 ], [ -122.779002083999941, 49.302030211000023 ], [ -122.779202088999952, 49.301922695000066 ], [ -122.779625622999973, 49.301824495000055 ], [ -122.780528880999924, 49.301688406000054 ], [ -122.781792896999931, 49.301348609000051 ], [ -122.78344201299997, 49.301325592000076 ], [ -122.784177391999933, 49.301329499000062 ], [ -122.784788393999932, 49.301382891000124 ], [ -122.785360506999922, 49.301462081000118 ], [ -122.785756912999929, 49.301595497000143 ], [ -122.786362977999914, 49.301799992000042 ], [ -122.786154487999966, 49.30230730600006 ], [ -122.785981090999954, 49.302725490000071 ], [ -122.785854474999951, 49.302924492000074 ], [ -122.785572794999908, 49.303357489000099 ], [ -122.785441580999972, 49.303722901000064 ], [ -122.785290694999972, 49.304351799000088 ], [ -122.784722704999979, 49.304371789000037 ], [ -122.784082295999909, 49.304325718000079 ], [ -122.782887104999972, 49.304226993000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116483167", "BldgCostT": "73446667", "sL_LossRatio": "0.707127912416314", "sL_AssetLoss": "1167158", "sL_BldgLoss": "825330", "sL_StrLoss": "411710", "sL_NStrLoss": "413620", "sL_ContLoss": "341828", "geom_point": "0101000020E6100000610BBDD5E5B15EC03AC6A9317CA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.775006588999972, 49.303504914000015 ], [ -122.775353855999953, 49.30296896600003 ], [ -122.775967592999947, 49.302021595000092 ], [ -122.777380167999922, 49.300003691000086 ], [ -122.777734209999963, 49.299497900000063 ], [ -122.778023077999933, 49.298979163000098 ], [ -122.778057865999955, 49.298916562000038 ], [ -122.7782508129999, 49.298966402000119 ], [ -122.778850814999913, 49.299121292000081 ], [ -122.779159401999948, 49.299192704000049 ], [ -122.779539519999986, 49.299204001000113 ], [ -122.779903693999955, 49.299148202000019 ], [ -122.780298717, 49.299023886000022 ], [ -122.780590907999951, 49.298855192000097 ], [ -122.78079989099993, 49.298638888 ], [ -122.781834003999961, 49.297588685000022 ], [ -122.78211411199996, 49.297415895000078 ], [ -122.782541400999946, 49.29726200200006 ], [ -122.782988099999926, 49.297205914000095 ], [ -122.783514780999937, 49.297204508000043 ], [ -122.783456998999952, 49.297465357000071 ], [ -122.783360697999953, 49.297899910000112 ], [ -122.783283022999939, 49.298107506000036 ], [ -122.783012920999965, 49.298493088000093 ], [ -122.782929919999944, 49.298797004000029 ], [ -122.783029694999968, 49.299083696000046 ], [ -122.783225507999973, 49.299332788000051 ], [ -122.783287813999962, 49.299585101000105 ], [ -122.783258908999954, 49.299703096000073 ], [ -122.783217241999949, 49.300010824000033 ], [ -122.783202512999964, 49.300119499000111 ], [ -122.783273417999936, 49.300444997000071 ], [ -122.783448500999924, 49.300834917000103 ], [ -122.78344201299997, 49.301325592000076 ], [ -122.781792896999931, 49.301348609000051 ], [ -122.780528880999924, 49.301688406000054 ], [ -122.779625622999973, 49.301824495000055 ], [ -122.779202088999952, 49.301922695000066 ], [ -122.779002083999941, 49.302030211000023 ], [ -122.778869680999918, 49.302174006000037 ], [ -122.778803608999908, 49.302371998000112 ], [ -122.778861105999951, 49.302930495000041 ], [ -122.778944611999989, 49.303410401000029 ], [ -122.777628291, 49.303367893000093 ], [ -122.774776608999986, 49.303859889000073 ], [ -122.775006588999972, 49.303504914000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.766437901261899", "sL_AssetLoss": "45170", "sL_BldgLoss": "34620", "sL_StrLoss": "18140", "sL_NStrLoss": "16480", "sL_ContLoss": "10550", "geom_point": "0101000020E61000008736BEFEBDB15EC041DE0610199B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77778533, 49.211092558000132 ], [ -122.778861986999956, 49.211094625000094 ], [ -122.778853515999927, 49.21121377500009 ], [ -122.778845829999952, 49.211321931000072 ], [ -122.778785264999954, 49.212173914000104 ], [ -122.776814313999921, 49.21217012200011 ], [ -122.775309619999945, 49.21204050200005 ], [ -122.77531271399998, 49.211357634000159 ], [ -122.777784117999914, 49.211362415000025 ], [ -122.77778533, 49.211092558000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.765692977004351", "sL_AssetLoss": "32180", "sL_BldgLoss": "24640", "sL_StrLoss": "12820", "sL_NStrLoss": "11820", "sL_ContLoss": "7540", "geom_point": "0101000020E6100000060D814C80B15EC097BE9D65129B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.772015933999953, 49.211693956000055 ], [ -122.772018750999933, 49.211081320000076 ], [ -122.774078242999963, 49.211085367000102 ], [ -122.774077013999928, 49.211355223000126 ], [ -122.774900813999949, 49.211356831000089 ], [ -122.774897871999897, 49.212005028000064 ], [ -122.774671113999929, 49.211985491000064 ], [ -122.772202186999948, 49.211700696000037 ], [ -122.772015933999953, 49.211693956000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41495834", "BldgCostT": "28408334", "sL_LossRatio": "0.726233135841245", "sL_AssetLoss": "700450", "sL_BldgLoss": "508690", "sL_StrLoss": "228190", "sL_NStrLoss": "280500", "sL_ContLoss": "191760", "geom_point": "0101000020E6100000B65FFC3CDFB05EC0B90FAB05979A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767897243999968, 49.211612829000046 ], [ -122.767901032999958, 49.210803261000059 ], [ -122.767489138000016, 49.210802432000044 ], [ -122.767490402999911, 49.210532576000034 ], [ -122.765430935999959, 49.210528412000087 ], [ -122.765432211999894, 49.210258555000088 ], [ -122.764196537999936, 49.21025604000009 ], [ -122.764204237999976, 49.208636901000027 ], [ -122.7637923599999, 49.20863606000006 ], [ -122.763793646999943, 49.208366203000018 ], [ -122.763381769999981, 49.208365360000094 ], [ -122.763383059999981, 49.20809550400007 ], [ -122.762559312999983, 49.208093814000094 ], [ -122.762560604000029, 49.207823958000063 ], [ -122.760913120999973, 49.207820559000069 ], [ -122.760914421999985, 49.207550703000052 ], [ -122.760502552999966, 49.207549849000046 ], [ -122.760505158999962, 49.207010137000047 ], [ -122.759681432999955, 49.207008426000094 ], [ -122.759686662999911, 49.205929 ], [ -122.758862952999934, 49.20592728300003 ], [ -122.7588642649999, 49.205657427000112 ], [ -122.758452413, 49.205656566000059 ], [ -122.75845372699996, 49.20538671 ], [ -122.757630024999941, 49.205384985000073 ], [ -122.757631344999979, 49.205115128000017 ], [ -122.757219497999969, 49.205114263000013 ], [ -122.757219508999967, 49.205111638000041 ], [ -122.757523291999959, 49.204438770000131 ], [ -122.756736018, 49.203484281000073 ], [ -122.756743033999925, 49.202799850000126 ], [ -122.756744490999964, 49.202658725000049 ], [ -122.756746971999959, 49.20241467600006 ], [ -122.75723270799989, 49.202415698000038 ], [ -122.757228745, 49.203225268000075 ], [ -122.757640575999957, 49.203226133000065 ], [ -122.757639257999926, 49.203495989000039 ], [ -122.758462926999982, 49.203497715000019 ], [ -122.75846161299998, 49.203767571000071 ], [ -122.758873449999982, 49.203768432000139 ], [ -122.758872138999948, 49.204038288000092 ], [ -122.759283978, 49.204039148000064 ], [ -122.759282668999944, 49.204309003000063 ], [ -122.759694509999974, 49.204309861000169 ], [ -122.759693200999919, 49.20457971800009 ], [ -122.760105045999964, 49.204580574000047 ], [ -122.76010374099998, 49.204850431000111 ], [ -122.76092743199996, 49.204852138000028 ], [ -122.760926131999938, 49.205121994000145 ], [ -122.761337980999897, 49.205122847000055 ], [ -122.761336681999964, 49.205392703000037 ], [ -122.761748531999942, 49.205393553000107 ], [ -122.761747235, 49.205663410000085 ], [ -122.762159088999951, 49.205664258000056 ], [ -122.762157794999922, 49.205934115000055 ], [ -122.762569649999932, 49.205934962000136 ], [ -122.762568357999896, 49.206204819000043 ], [ -122.762980213999981, 49.206205665000063 ], [ -122.762978925999931, 49.20647552100008 ], [ -122.763390784999942, 49.206476365000093 ], [ -122.763389496999977, 49.206746222000049 ], [ -122.763801357999967, 49.206747065000037 ], [ -122.763800073999988, 49.20701692100004 ], [ -122.76421193799996, 49.207017763000138 ], [ -122.764210653999982, 49.207287619000091 ], [ -122.764622521999968, 49.207288460000051 ], [ -122.764621239999954, 49.20755831600006 ], [ -122.765444976999902, 49.207559992000085 ], [ -122.765443701999956, 49.207829848000131 ], [ -122.765855572999925, 49.207830684000029 ], [ -122.765854297999979, 49.208100540000082 ], [ -122.766266173, 49.208101375000069 ], [ -122.766264898999978, 49.208371230000047 ], [ -122.766676775999926, 49.208372063000077 ], [ -122.766675505999942, 49.208641920000083 ], [ -122.767087382999961, 49.208642751000049 ], [ -122.76708611399998, 49.20891260800002 ], [ -122.767497995999989, 49.208913437000071 ], [ -122.767496728999916, 49.209183294000063 ], [ -122.767908612999932, 49.209184122000039 ], [ -122.767907349000012, 49.209453978000063 ], [ -122.768319234000018, 49.209454806000053 ], [ -122.768317972999924, 49.209724662000063 ], [ -122.76914174699999, 49.209726311000054 ], [ -122.769140490999973, 49.209996167000021 ], [ -122.76955238, 49.209996990000015 ], [ -122.769551126, 49.210266846000145 ], [ -122.770374907999937, 49.210268487000072 ], [ -122.77037365799994, 49.210538344000071 ], [ -122.771197445999974, 49.210539978000057 ], [ -122.771193708999974, 49.211349547000054 ], [ -122.769546108999961, 49.211346272000064 ], [ -122.769544852999928, 49.211616129000092 ], [ -122.767897243999968, 49.211612829000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101112084", "BldgCostT": "68258334", "sL_LossRatio": "0.740243223909069", "sL_AssetLoss": "1258100", "sL_BldgLoss": "931300", "sL_StrLoss": "460600", "sL_NStrLoss": "470700", "sL_ContLoss": "326800", "geom_point": "0101000020E610000068816E164CB15EC067EC8D52709A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.774081931999945, 49.210275797000094 ], [ -122.77408316099999, 49.210005940000059 ], [ -122.771199936999935, 49.21000026500009 ], [ -122.771201180999967, 49.209730409000016 ], [ -122.770789293999925, 49.209729593000098 ], [ -122.770790540999926, 49.209459737000067 ], [ -122.770378656999966, 49.209458918000053 ], [ -122.770379906999963, 49.209189061000117 ], [ -122.769556140999967, 49.209187421000074 ], [ -122.769557395999968, 49.208917564000046 ], [ -122.769145515999966, 49.208916742000021 ], [ -122.769148028999922, 49.208377029000083 ], [ -122.768736152999907, 49.208376205000093 ], [ -122.768737411999908, 49.208106348000044 ], [ -122.768325538999946, 49.208105523000071 ], [ -122.768326797999961, 49.207835666000094 ], [ -122.767914927999925, 49.207834840000046 ], [ -122.76791619, 49.207564984000051 ], [ -122.767092452999961, 49.207563326000106 ], [ -122.76709372, 49.207293469000071 ], [ -122.766681854999888, 49.207292638000084 ], [ -122.766684393999981, 49.206752924000078 ], [ -122.766272530999984, 49.206752092000102 ], [ -122.766273803, 49.206482235000088 ], [ -122.76503822399999, 49.206479729000115 ], [ -122.76503950299994, 49.206209872000137 ], [ -122.76462764599999, 49.206209033000086 ], [ -122.764628925999929, 49.205939177000062 ], [ -122.764217070999962, 49.205938336000017 ], [ -122.764218351999915, 49.205668480000028 ], [ -122.76380650099999, 49.205667639000112 ], [ -122.763807785999987, 49.205397782000063 ], [ -122.762984084, 49.205396095 ], [ -122.762985374999957, 49.205126239000094 ], [ -122.762573526, 49.205125393000102 ], [ -122.762574816999972, 49.20485553600011 ], [ -122.762162970999981, 49.204854689000037 ], [ -122.762164266999932, 49.204584833000077 ], [ -122.761752421999944, 49.204583984000102 ], [ -122.761753718999941, 49.204314127000075 ], [ -122.76134187599996, 49.204313277000026 ], [ -122.761343174999979, 49.204043420000069 ], [ -122.760519495999958, 49.20404171600007 ], [ -122.760520799999981, 49.203771859000057 ], [ -122.760108960999958, 49.203771005000121 ], [ -122.76011026799992, 49.203501147000125 ], [ -122.759698433, 49.203500291000111 ], [ -122.759699739999974, 49.203230436000069 ], [ -122.759287906999958, 49.203229578000084 ], [ -122.759289216999946, 49.202959721000077 ], [ -122.758877386999956, 49.202958862000123 ], [ -122.758879822999972, 49.202457910000092 ], [ -122.759961703, 49.202520798000123 ], [ -122.76264480899998, 49.202520919000094 ], [ -122.763318391, 49.202502931000019 ], [ -122.76593, 49.202517199000091 ], [ -122.767485180999955, 49.202510696000097 ], [ -122.767487979999927, 49.203260497000088 ], [ -122.767485623999974, 49.20402449700012 ], [ -122.767478191999928, 49.204781099000044 ], [ -122.767482703999946, 49.205446198000104 ], [ -122.767499202999957, 49.206155795000058 ], [ -122.770254977999912, 49.20613480300004 ], [ -122.77316166899999, 49.206126057000134 ], [ -122.773672922999964, 49.206124499000161 ], [ -122.778337918999938, 49.206065442000046 ], [ -122.77868781399999, 49.206061056000038 ], [ -122.77872727399992, 49.206323520000041 ], [ -122.778854900999988, 49.2065607030001 ], [ -122.778997998999955, 49.206713644000075 ], [ -122.779166558999975, 49.206810201000067 ], [ -122.778977081999969, 49.209475691000137 ], [ -122.77861635499994, 49.209475 ], [ -122.77861997, 49.208665430000096 ], [ -122.778208091999943, 49.208664639000027 ], [ -122.778206883999985, 49.208934496000026 ], [ -122.777795003999969, 49.208933705000064 ], [ -122.77778895699997, 49.210282989000099 ], [ -122.774081931999945, 49.210275797000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130035469", "BldgCostT": "86005412", "sL_LossRatio": "0.68953847004419", "sL_AssetLoss": "2532230", "sL_BldgLoss": "1746070", "sL_StrLoss": "751500", "sL_NStrLoss": "994570", "sL_ContLoss": "786160", "geom_point": "0101000020E61000007CB48A617BB15EC08476A96C339A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767482703999946, 49.205446198000104 ], [ -122.767478191999928, 49.204781099000044 ], [ -122.767485623999974, 49.20402449700012 ], [ -122.767487979999927, 49.203260497000088 ], [ -122.767485180999955, 49.202510696000097 ], [ -122.769702601999953, 49.202494305000073 ], [ -122.769701398999956, 49.202748402000026 ], [ -122.769317498999939, 49.203394593000063 ], [ -122.768868587999961, 49.204126307000067 ], [ -122.768830577999893, 49.204377411000074 ], [ -122.76884471799994, 49.204627480000099 ], [ -122.768969205999937, 49.204850998000055 ], [ -122.769220300999947, 49.20508740800004 ], [ -122.769768098999918, 49.20526238700009 ], [ -122.77006392199992, 49.205291102000054 ], [ -122.77037390199996, 49.205273397000099 ], [ -122.773267377999929, 49.205145598000108 ], [ -122.773581612, 49.205088407000048 ], [ -122.773894700999975, 49.204967090000132 ], [ -122.774268129999939, 49.205083702000103 ], [ -122.777438409999959, 49.205060491000033 ], [ -122.777423213, 49.204212185000067 ], [ -122.777415096000013, 49.20337850100011 ], [ -122.77586089, 49.203369896000034 ], [ -122.775862299, 49.202938403000068 ], [ -122.775863942999962, 49.202436522000049 ], [ -122.77868491000001, 49.202422706000092 ], [ -122.77868423299999, 49.203222222000072 ], [ -122.778683907999977, 49.203627006000019 ], [ -122.77868338899998, 49.204224701000065 ], [ -122.77868781399999, 49.206061056000038 ], [ -122.778337918999938, 49.206065442000046 ], [ -122.773672922999964, 49.206124499000161 ], [ -122.77316166899999, 49.206126057000134 ], [ -122.770254977999912, 49.20613480300004 ], [ -122.767499202999957, 49.206155795000058 ], [ -122.767482703999946, 49.205446198000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54088333", "BldgCostT": "36883333", "sL_LossRatio": "0.722748995743476", "sL_AssetLoss": "918590", "sL_BldgLoss": "663910", "sL_StrLoss": "292410", "sL_NStrLoss": "371500", "sL_ContLoss": "254680", "geom_point": "0101000020E6100000FE28345A58B15EC060F1487A209A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.769702601999953, 49.202494305000073 ], [ -122.770419854999915, 49.202488397000138 ], [ -122.77170729, 49.202477800000096 ], [ -122.771698010999899, 49.20346060400005 ], [ -122.771701296999979, 49.204281501000018 ], [ -122.774491484999928, 49.204276815000057 ], [ -122.774415299999973, 49.204425796000123 ], [ -122.773894700999975, 49.204967090000132 ], [ -122.773581612, 49.205088407000048 ], [ -122.773267377999929, 49.205145598000108 ], [ -122.77037390199996, 49.205273397000099 ], [ -122.77006392199992, 49.205291102000054 ], [ -122.769768098999918, 49.20526238700009 ], [ -122.769220300999947, 49.20508740800004 ], [ -122.768969205999937, 49.204850998000055 ], [ -122.76884471799994, 49.204627480000099 ], [ -122.768830577999893, 49.204377411000074 ], [ -122.768868587999961, 49.204126307000067 ], [ -122.769317498999939, 49.203394593000063 ], [ -122.769701398999956, 49.202748402000026 ], [ -122.769702601999953, 49.202494305000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73255167", "BldgCostT": "49496667", "sL_LossRatio": "0.701965262593814", "sL_AssetLoss": "1395844", "sL_BldgLoss": "979834", "sL_StrLoss": "439934", "sL_NStrLoss": "539900", "sL_ContLoss": "416010", "geom_point": "0101000020E610000057704FC292B15EC0FC78E04A139A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.774415299999973, 49.204425796000123 ], [ -122.774491484999928, 49.204276815000057 ], [ -122.771701296999979, 49.204281501000018 ], [ -122.771698010999899, 49.20346060400005 ], [ -122.77170729, 49.202477800000096 ], [ -122.771793425999945, 49.202476545000039 ], [ -122.773961505999949, 49.202445145000112 ], [ -122.77491057899995, 49.202431405000077 ], [ -122.775863942999962, 49.202436522000049 ], [ -122.775862299, 49.202938403000068 ], [ -122.77586089, 49.203369896000034 ], [ -122.777415096000013, 49.20337850100011 ], [ -122.777423213, 49.204212185000067 ], [ -122.777438409999959, 49.205060491000033 ], [ -122.774268129999939, 49.205083702000103 ], [ -122.773894700999975, 49.204967090000132 ], [ -122.774415299999973, 49.204425796000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146832872", "BldgCostT": "94071380", "sL_LossRatio": "0.685455875764305", "sL_AssetLoss": "3102490", "sL_BldgLoss": "2126620", "sL_StrLoss": "919520", "sL_NStrLoss": "1207100", "sL_ContLoss": "975870", "geom_point": "0101000020E610000021F197BB7BB35EC0B79EE770A9954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801191201999956, 49.170074517000081 ], [ -122.801213579999981, 49.169197607000108 ], [ -122.801235118999969, 49.168286386000055 ], [ -122.801235418999937, 49.168277353000107 ], [ -122.801303248999929, 49.166100674000091 ], [ -122.80138016799998, 49.166130681 ], [ -122.801460818999942, 49.166162128000032 ], [ -122.804067815999943, 49.167188013000072 ], [ -122.806827851999984, 49.168273991000042 ], [ -122.808956502999976, 49.169088617000035 ], [ -122.809075021999945, 49.169133946 ], [ -122.811652854999977, 49.17012032600006 ], [ -122.812003510999929, 49.170254491000094 ], [ -122.811022510000029, 49.170105637000127 ], [ -122.810785786999958, 49.170103309000098 ], [ -122.806732912999976, 49.170094908000095 ], [ -122.806728584999945, 49.171016496000043 ], [ -122.806562482999965, 49.171016218000062 ], [ -122.806411589999939, 49.171015930000038 ], [ -122.80523177000002, 49.171013861000127 ], [ -122.803952008999957, 49.171011587000088 ], [ -122.802670015999965, 49.171009608000062 ], [ -122.802633790999948, 49.171875313000044 ], [ -122.80169610199999, 49.171870006000098 ], [ -122.801297628, 49.171822119000076 ], [ -122.801124745999971, 49.171803359000045 ], [ -122.801148173999962, 49.171195327000042 ], [ -122.801167947999929, 49.170681937000069 ], [ -122.801190990999942, 49.170083549000033 ], [ -122.801191201999956, 49.170074517000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211218997", "BldgCostT": "124994732", "sL_LossRatio": "0.64720173251888", "sL_AssetLoss": "4889990", "sL_BldgLoss": "3164810", "sL_StrLoss": "1320780", "sL_NStrLoss": "1844030", "sL_ContLoss": "1725180", "geom_point": "0101000020E6100000AB720DD87AB35EC0183EA59421954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804274479999947, 49.162890187000073 ], [ -122.806962295999966, 49.162883513000082 ], [ -122.806971599999912, 49.163745099000081 ], [ -122.806959926, 49.164152344000115 ], [ -122.806906116999954, 49.166032083000083 ], [ -122.806901200999945, 49.166202947000095 ], [ -122.806894105999959, 49.166451400000021 ], [ -122.80687041, 49.167294953000116 ], [ -122.806828117999927, 49.168210038000097 ], [ -122.806827851999984, 49.168273991000042 ], [ -122.804067815999943, 49.167188013000072 ], [ -122.801460818999942, 49.166162128000032 ], [ -122.80138016799998, 49.166130681 ], [ -122.801303248999929, 49.166100674000091 ], [ -122.801305172999932, 49.166033154000111 ], [ -122.801422860999963, 49.162887483000091 ], [ -122.801555787, 49.162888737000038 ], [ -122.804260731999975, 49.162890184000076 ], [ -122.804274479999947, 49.162890187000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59111085", "BldgCostT": "34602350", "sL_LossRatio": "0.649545854087313", "sL_AssetLoss": "682600", "sL_BldgLoss": "443380", "sL_StrLoss": "193460", "sL_NStrLoss": "249920", "sL_ContLoss": "239220", "geom_point": "0101000020E6100000334B9FA959B85EC09F9BDB29C2924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880460208999949, 49.144683496000042 ], [ -122.881861094999977, 49.144699804000048 ], [ -122.88185650599999, 49.14844800400008 ], [ -122.880497014999918, 49.148424788000028 ], [ -122.87990328399998, 49.148417935000033 ], [ -122.87910421399999, 49.148408689000078 ], [ -122.879065992999969, 49.144689086000106 ], [ -122.879364810999931, 49.144667997000091 ], [ -122.880460208999949, 49.144683496000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216802554", "BldgCostT": "148378747", "sL_LossRatio": "0.80568607625052", "sL_AssetLoss": "2185690", "sL_BldgLoss": "1760980", "sL_StrLoss": "889320", "sL_NStrLoss": "871660", "sL_ContLoss": "424710", "geom_point": "0101000020E610000041FFB1CE80B85EC00DD5A446AE924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.88185650599999, 49.14844800400008 ], [ -122.881861094999977, 49.144699804000048 ], [ -122.880460208999949, 49.144683496000042 ], [ -122.879364810999931, 49.144667997000091 ], [ -122.879065992999969, 49.144689086000106 ], [ -122.879069506999912, 49.143902604000047 ], [ -122.88032640599998, 49.143919203000053 ], [ -122.882095301999982, 49.143944305000055 ], [ -122.883354683999954, 49.143966404000054 ], [ -122.884658997999949, 49.143992491000049 ], [ -122.884665906999956, 49.144747683000126 ], [ -122.884672814999973, 49.146211070000085 ], [ -122.884683579999958, 49.148493812000069 ], [ -122.884142147999938, 49.148481446000098 ], [ -122.883211198999973, 49.148460213000135 ], [ -122.88185650599999, 49.14844800400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41136500", "BldgCostT": "28370000", "sL_LossRatio": "0.73278507027529", "sL_AssetLoss": "924009", "sL_BldgLoss": "677100", "sL_StrLoss": "291020", "sL_NStrLoss": "386080", "sL_ContLoss": "246909", "geom_point": "0101000020E61000000F111E0A32BA5EC069FA993841934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.908085192999948, 49.151475310000059 ], [ -122.908078694999944, 49.150458697000097 ], [ -122.908095994999925, 49.149456413000031 ], [ -122.908081599999917, 49.148643308000054 ], [ -122.908821712999966, 49.148642001000049 ], [ -122.910325711999945, 49.148656410000108 ], [ -122.910311383999968, 49.149428105000013 ], [ -122.910308206999929, 49.150466905000044 ], [ -122.910305374999936, 49.151477792 ], [ -122.910820278999935, 49.151485299000065 ], [ -122.910822491999966, 49.152216088000088 ], [ -122.908618498999942, 49.15221590900007 ], [ -122.908622700999942, 49.151492505000071 ], [ -122.908085192999948, 49.151475310000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42156417", "BldgCostT": "27656667", "sL_LossRatio": "0.692232630757221", "sL_AssetLoss": "973560", "sL_BldgLoss": "673930", "sL_StrLoss": "273650", "sL_NStrLoss": "400280", "sL_ContLoss": "299630", "geom_point": "0101000020E6100000244E7A2155BA5EC0E0CF19E63E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.910822491999966, 49.152216088000088 ], [ -122.910820278999935, 49.151485299000065 ], [ -122.910305374999936, 49.151477792 ], [ -122.910308206999929, 49.150466905000044 ], [ -122.910311383999968, 49.149428105000013 ], [ -122.910325711999945, 49.148656410000108 ], [ -122.911390501999932, 49.148658103000081 ], [ -122.912530488999948, 49.14864130800003 ], [ -122.912505145999944, 49.14983354000006 ], [ -122.91249170199994, 49.150464692000128 ], [ -122.912455299, 49.15223140300003 ], [ -122.910822491999966, 49.152216088000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129566667", "BldgCostT": "81656667", "sL_LossRatio": "0.749525351197062", "sL_AssetLoss": "929108", "sL_BldgLoss": "696390", "sL_StrLoss": "358760", "sL_NStrLoss": "337630", "sL_ContLoss": "232718", "geom_point": "0101000020E6100000977063ABB2B75EC0A9C10B8DED8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.86779209499997, 49.115450156000037 ], [ -122.867783303999914, 49.113809942000074 ], [ -122.867778989999948, 49.113141192000093 ], [ -122.867869360999961, 49.11314203700001 ], [ -122.86801220299999, 49.113143328000078 ], [ -122.869619926999974, 49.113157867000012 ], [ -122.870172827999966, 49.113143325000095 ], [ -122.870463447999924, 49.113261708000032 ], [ -122.870588692999945, 49.11337180800011 ], [ -122.870640577999907, 49.113417403000064 ], [ -122.870688597999944, 49.113559292000083 ], [ -122.870685651999949, 49.11365102000007 ], [ -122.870676199999934, 49.113946404000039 ], [ -122.870652099999916, 49.114508902000132 ], [ -122.870522391999955, 49.114768200000043 ], [ -122.870517703999923, 49.115449296000122 ], [ -122.870622870999966, 49.115451825000015 ], [ -122.870704530999944, 49.115453781000035 ], [ -122.871235596999981, 49.115466595000051 ], [ -122.871657230999944, 49.115474780000056 ], [ -122.872354388999966, 49.115488291000133 ], [ -122.873470443999935, 49.115491932000033 ], [ -122.87344528899996, 49.116356198000098 ], [ -122.873438621999952, 49.116720092000058 ], [ -122.873408120999954, 49.118540274000075 ], [ -122.873396236999952, 49.119124724000073 ], [ -122.873391842999979, 49.119251638000094 ], [ -122.870698756999928, 49.119213861 ], [ -122.870127832999927, 49.119209864000055 ], [ -122.869925281999912, 49.119207437000078 ], [ -122.869505561999958, 49.119202375000022 ], [ -122.869391509999957, 49.119201041000039 ], [ -122.867869461999987, 49.119184652000023 ], [ -122.867790147, 49.119183244000062 ], [ -122.867795344999976, 49.119024814000113 ], [ -122.867790805999945, 49.118277673000094 ], [ -122.867795574, 49.117291145000145 ], [ -122.867792966999929, 49.115912408000099 ], [ -122.86779209499997, 49.115450156000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60032249", "BldgCostT": "38384999", "sL_LossRatio": "0.687779323333489", "sL_AssetLoss": "790079", "sL_BldgLoss": "543400", "sL_StrLoss": "239200", "sL_NStrLoss": "304200", "sL_ContLoss": "246679", "geom_point": "0101000020E610000082624C76C3B75EC051A8D9C9818E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867778989999948, 49.113141192000093 ], [ -122.867793280999962, 49.111809801000071 ], [ -122.867882373, 49.111808793000122 ], [ -122.869625974999963, 49.111805529000044 ], [ -122.870386884999917, 49.111804353000068 ], [ -122.870934921999947, 49.111803506000072 ], [ -122.871455603999948, 49.111802695000023 ], [ -122.872125586999942, 49.111801674000056 ], [ -122.87238739599999, 49.111801408000083 ], [ -122.873499286999959, 49.111800179000078 ], [ -122.873531300999971, 49.112526488000071 ], [ -122.873524157999967, 49.112856972000046 ], [ -122.873508560999937, 49.11353771600006 ], [ -122.873495937999962, 49.114185106000093 ], [ -122.873485917999972, 49.114697772000049 ], [ -122.873470443999935, 49.115491932000033 ], [ -122.872354388999966, 49.115488291000133 ], [ -122.871657230999944, 49.115474780000056 ], [ -122.871235596999981, 49.115466595000051 ], [ -122.870704530999944, 49.115453781000035 ], [ -122.870622870999966, 49.115451825000015 ], [ -122.870517703999923, 49.115449296000122 ], [ -122.870522391999955, 49.114768200000043 ], [ -122.870652099999916, 49.114508902000132 ], [ -122.870676199999934, 49.113946404000039 ], [ -122.870685651999949, 49.11365102000007 ], [ -122.870688597999944, 49.113559292000083 ], [ -122.870640577999907, 49.113417403000064 ], [ -122.870588692999945, 49.11337180800011 ], [ -122.870463447999924, 49.113261708000032 ], [ -122.870172827999966, 49.113143325000095 ], [ -122.869619926999974, 49.113157867000012 ], [ -122.86801220299999, 49.113143328000078 ], [ -122.867869360999961, 49.11314203700001 ], [ -122.867778989999948, 49.113141192000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119287416", "BldgCostT": "71856666", "sL_LossRatio": "0.690733035637776", "sL_AssetLoss": "1155319", "sL_BldgLoss": "798017", "sL_StrLoss": "403689", "sL_NStrLoss": "394328", "sL_ContLoss": "357302", "geom_point": "0101000020E6100000BEB4C95DDBB75EC060DCF404158E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87739417100002, 49.108259652000136 ], [ -122.877610133999951, 49.108261070000012 ], [ -122.877794971999919, 49.108437804000111 ], [ -122.87779072099994, 49.10870532600017 ], [ -122.877746912999953, 49.111809197000071 ], [ -122.876367049999899, 49.111799720000057 ], [ -122.875004598999951, 49.111799928000039 ], [ -122.873499286999959, 49.111800179000078 ], [ -122.87238739599999, 49.111801408000083 ], [ -122.872125586999942, 49.111801674000056 ], [ -122.871455603999948, 49.111802695000023 ], [ -122.870934921999947, 49.111803506000072 ], [ -122.870386884999917, 49.111804353000068 ], [ -122.869625974999963, 49.111805529000044 ], [ -122.867882373, 49.111808793000122 ], [ -122.867793280999962, 49.111809801000071 ], [ -122.867796668, 49.110334846000093 ], [ -122.867795995999955, 49.109940137000081 ], [ -122.867795188999963, 49.109440929000044 ], [ -122.867788830999984, 49.108172010000033 ], [ -122.867891427999965, 49.10817319300002 ], [ -122.870197730999948, 49.108231345000071 ], [ -122.871984598999973, 49.108232913000023 ], [ -122.873518330999957, 49.108234239000069 ], [ -122.876456686999987, 49.108253513000157 ], [ -122.87739417100002, 49.108259652000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66612167", "BldgCostT": "40711667", "sL_LossRatio": "0.656704859858054", "sL_AssetLoss": "1330080", "sL_BldgLoss": "873470", "sL_StrLoss": "352050", "sL_NStrLoss": "521420", "sL_ContLoss": "456610", "geom_point": "0101000020E61000005D2A5E1BE0A65EC001CDF7BE7E8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.611642642999982, 49.092485880000034 ], [ -122.607942054999938, 49.091466967000059 ], [ -122.607882551999921, 49.091569644000039 ], [ -122.607759156, 49.09153418700005 ], [ -122.60686227199993, 49.091271096000092 ], [ -122.605945855999934, 49.091002283000066 ], [ -122.605378910999917, 49.090835983000069 ], [ -122.605373118999978, 49.090834265000062 ], [ -122.603485309999911, 49.090155444000089 ], [ -122.60348056499997, 49.090066816000103 ], [ -122.603469040999983, 49.089852997000065 ], [ -122.603431504999904, 49.089297541000072 ], [ -122.603435217999959, 49.088120591000042 ], [ -122.603488904999921, 49.087796911000083 ], [ -122.603800895999882, 49.087799586000116 ], [ -122.604399275999953, 49.087723001 ], [ -122.605451905, 49.087724707000099 ], [ -122.605737118999912, 49.087662507000104 ], [ -122.606284903999949, 49.087434603000048 ], [ -122.607010686999956, 49.08728181200005 ], [ -122.60788030599997, 49.087277724000032 ], [ -122.607908200999972, 49.087771706000062 ], [ -122.607940728999949, 49.08834669400003 ], [ -122.608093500999956, 49.088917592000072 ], [ -122.608104909999938, 49.089175256000097 ], [ -122.608114235999963, 49.089385079000067 ], [ -122.608198421999973, 49.089385521000047 ], [ -122.608979162999958, 49.089389435000051 ], [ -122.609266764999944, 49.089390868000045 ], [ -122.611184291999962, 49.089400421000086 ], [ -122.611439911000019, 49.089401698000124 ], [ -122.611471960999964, 49.089896733000074 ], [ -122.611506303999974, 49.090426709000049 ], [ -122.611569182999986, 49.091331752000045 ], [ -122.611586569999943, 49.091605332000064 ], [ -122.611642642999982, 49.092485880000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311697481", "BldgCostT": "209940816", "sL_LossRatio": "0.768562162014995", "sL_AssetLoss": "2938370", "sL_BldgLoss": "2258320", "sL_StrLoss": "1046630", "sL_NStrLoss": "1211690", "sL_ContLoss": "680050", "geom_point": "0101000020E61000000167A5202AA75EC08807CEF8428B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.60788030599997, 49.087277724000032 ], [ -122.608298401999946, 49.087270221000082 ], [ -122.608798892999943, 49.087221106000129 ], [ -122.609121612999928, 49.087114097000082 ], [ -122.609839194999921, 49.086696993000039 ], [ -122.610270203999946, 49.086417594000068 ], [ -122.61064608199996, 49.086068994000108 ], [ -122.611319051999914, 49.085324147000037 ], [ -122.61160286099999, 49.085468338000084 ], [ -122.61256001199996, 49.086086093000091 ], [ -122.614102396999911, 49.086996316000082 ], [ -122.614549895999971, 49.087300599000066 ], [ -122.615170996999893, 49.08779519900007 ], [ -122.616110607999943, 49.088279887000063 ], [ -122.616746788999961, 49.088662213000077 ], [ -122.616798474999925, 49.088899098000034 ], [ -122.616824815999919, 49.089019792000059 ], [ -122.61682938199999, 49.089409318000016 ], [ -122.616019196999929, 49.089408161000044 ], [ -122.614471447999904, 49.089406009000129 ], [ -122.611439911000019, 49.089401698000124 ], [ -122.611184291999962, 49.089400421000086 ], [ -122.609266764999944, 49.089390868000045 ], [ -122.608979162999958, 49.089389435000051 ], [ -122.608198421999973, 49.089385521000047 ], [ -122.608114235999963, 49.089385079000067 ], [ -122.608104909999938, 49.089175256000097 ], [ -122.608093500999956, 49.088917592000072 ], [ -122.607940728999949, 49.08834669400003 ], [ -122.607908200999972, 49.087771706000062 ], [ -122.60788030599997, 49.087277724000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259698531", "BldgCostT": "175093603", "sL_LossRatio": "0.792559365534463", "sL_AssetLoss": "2162450", "sL_BldgLoss": "1713870", "sL_StrLoss": "821760", "sL_NStrLoss": "892110", "sL_ContLoss": "448580", "geom_point": "0101000020E6100000BF7C5F1A4EA75EC0149227A4908B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.611439911000019, 49.089401698000124 ], [ -122.614471447999904, 49.089406009000129 ], [ -122.616019196999929, 49.089408161000044 ], [ -122.61682938199999, 49.089409318000016 ], [ -122.616818823999964, 49.090086054000047 ], [ -122.616818376999944, 49.090113029000051 ], [ -122.616804603999967, 49.090993800000057 ], [ -122.61674220899999, 49.091136905000077 ], [ -122.616646095999926, 49.091208302000013 ], [ -122.616587389999935, 49.091251910000054 ], [ -122.616322187999955, 49.091308892000065 ], [ -122.616309214999944, 49.091311682000033 ], [ -122.616127680999952, 49.09131111100006 ], [ -122.614525160999918, 49.091305992000116 ], [ -122.614368188999933, 49.091305512000147 ], [ -122.612210346999959, 49.091325688000097 ], [ -122.611569182999986, 49.091331752000045 ], [ -122.611506303999974, 49.090426709000049 ], [ -122.611471960999964, 49.089896733000074 ], [ -122.611439911000019, 49.089401698000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142544166", "BldgCostT": "87816666", "sL_LossRatio": "0.673135073877338", "sL_AssetLoss": "1861870", "sL_BldgLoss": "1253290", "sL_StrLoss": "587600", "sL_NStrLoss": "665690", "sL_ContLoss": "608580", "geom_point": "0101000020E6100000491408D89AA95EC0BE08B6BE06954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64570255299995, 49.16587199500001 ], [ -122.645724226999974, 49.165438312000042 ], [ -122.645732410999955, 49.164450929000118 ], [ -122.645732056000028, 49.16350561200003 ], [ -122.64569816199996, 49.16279715800011 ], [ -122.645919995, 49.162801375000122 ], [ -122.649559389999965, 49.162817394000058 ], [ -122.651054847999916, 49.162824274000073 ], [ -122.651225024999988, 49.162825085000044 ], [ -122.651869673999926, 49.16282809700003 ], [ -122.652541750999902, 49.16283123300007 ], [ -122.65695180499992, 49.1628516970001 ], [ -122.656953189, 49.162967047000038 ], [ -122.656961250999956, 49.163641717000154 ], [ -122.656966525999977, 49.164077708 ], [ -122.656974717999958, 49.164860090000062 ], [ -122.655885495999939, 49.164865893000147 ], [ -122.655878673999908, 49.163320299000077 ], [ -122.654699296999951, 49.163323295000069 ], [ -122.653521806999905, 49.163318192000048 ], [ -122.65348590399999, 49.164425499000046 ], [ -122.652820385, 49.164298495 ], [ -122.651804550999941, 49.164347383000084 ], [ -122.651633963999984, 49.164447169000013 ], [ -122.65158078799999, 49.164472268000104 ], [ -122.651466972999941, 49.165138103000046 ], [ -122.651442987999957, 49.165278400000048 ], [ -122.651406644999923, 49.165313669000099 ], [ -122.651366402999955, 49.165352694000077 ], [ -122.651351962999954, 49.165417441000038 ], [ -122.651329904999955, 49.165516385000068 ], [ -122.651327293999955, 49.165895713000062 ], [ -122.651318191999962, 49.166536110000074 ], [ -122.650595896999945, 49.166529898000078 ], [ -122.649417814999978, 49.166316652000084 ], [ -122.649145220999927, 49.166267320000067 ], [ -122.648445910999953, 49.166140747000043 ], [ -122.648365109999943, 49.16612613800001 ], [ -122.647555992999941, 49.165983507000114 ], [ -122.646974464999971, 49.165880977000107 ], [ -122.645839630999902, 49.165872670000063 ], [ -122.64570255299995, 49.16587199500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127823500", "BldgCostT": "82855000", "sL_LossRatio": "0.687858070694981", "sL_AssetLoss": "1802193", "sL_BldgLoss": "1239653", "sL_StrLoss": "563923", "sL_NStrLoss": "675730", "sL_ContLoss": "562540", "geom_point": "0101000020E6100000496A5F48A0A95EC0BC95D2F1A0944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.645734340999951, 49.158534716000162 ], [ -122.645725094999989, 49.158242704000052 ], [ -122.647504790999989, 49.158714362000126 ], [ -122.651570787999958, 49.15979179500011 ], [ -122.652014000999941, 49.159911548000153 ], [ -122.654646974999977, 49.160622829000026 ], [ -122.654847133999937, 49.160676898000091 ], [ -122.656565599999965, 49.161141085000047 ], [ -122.656975801999948, 49.161755788000058 ], [ -122.656954622999976, 49.162755344000054 ], [ -122.656952865999969, 49.162814852000068 ], [ -122.65695180499992, 49.1628516970001 ], [ -122.652541750999902, 49.16283123300007 ], [ -122.651869673999926, 49.16282809700003 ], [ -122.651225024999988, 49.162825085000044 ], [ -122.651054847999916, 49.162824274000073 ], [ -122.649559389999965, 49.162817394000058 ], [ -122.645919995, 49.162801375000122 ], [ -122.64569816199996, 49.16279715800011 ], [ -122.645702473999933, 49.162680147000032 ], [ -122.645658269999942, 49.161734382000127 ], [ -122.645616627999985, 49.160924755000053 ], [ -122.64563756299999, 49.160026069000082 ], [ -122.645776609999956, 49.159866391000094 ], [ -122.645767759999941, 49.159587746000057 ], [ -122.645734340999951, 49.158534716000162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204421166", "BldgCostT": "115191267", "sL_LossRatio": "0.577798671799998", "sL_AssetLoss": "5051950", "sL_BldgLoss": "2919010", "sL_StrLoss": "1011210", "sL_NStrLoss": "1907800", "sL_ContLoss": "2132940", "geom_point": "0101000020E6100000A7148CCEE2AA5EC05FF7C1BF29964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.664346552999945, 49.176994403000059 ], [ -122.664340688999985, 49.176540965000065 ], [ -122.664325181, 49.175859234000058 ], [ -122.664393887999921, 49.175529240000117 ], [ -122.664405186999915, 49.175475064000096 ], [ -122.66440887199991, 49.175457236000021 ], [ -122.664631606999976, 49.174972146000087 ], [ -122.664953671999925, 49.174536047000082 ], [ -122.665235582999969, 49.174239219000107 ], [ -122.665242986999971, 49.174231438000071 ], [ -122.665234259999949, 49.174224426000123 ], [ -122.663748492999957, 49.173039807000102 ], [ -122.663540121999958, 49.172828807 ], [ -122.663271303999977, 49.172466288000159 ], [ -122.663198510999948, 49.172298494000039 ], [ -122.66311010099993, 49.172094605000083 ], [ -122.662111388999904, 49.172097900000139 ], [ -122.662092773999944, 49.170943465000029 ], [ -122.662083695999939, 49.170383103000098 ], [ -122.66168838599999, 49.169610431000088 ], [ -122.661680784999959, 49.16959559499999 ], [ -122.661603252999953, 49.169610161000087 ], [ -122.661124790999978, 49.169700008000056 ], [ -122.66094442399995, 49.169700685000088 ], [ -122.660546469999929, 49.16970223700006 ], [ -122.660374413999932, 49.169702892000018 ], [ -122.659709666999944, 49.169616353000151 ], [ -122.659674695999954, 49.169611798000062 ], [ -122.659477185999961, 49.169604238000034 ], [ -122.659052388999953, 49.169587999000157 ], [ -122.658309436999929, 49.169624759000079 ], [ -122.657958182999906, 49.169642119000073 ], [ -122.657944508999989, 49.16964279700003 ], [ -122.657261486, 49.169643201000099 ], [ -122.657114091999972, 49.169690011000071 ], [ -122.65710773399995, 49.169390923000073 ], [ -122.657096898999939, 49.168881207000041 ], [ -122.65793382399994, 49.168875602000099 ], [ -122.658585292999987, 49.168683189000021 ], [ -122.658903016999929, 49.168613312000083 ], [ -122.658951783999939, 49.168602597000067 ], [ -122.660455708999962, 49.168608691000053 ], [ -122.661587288999925, 49.168625818000045 ], [ -122.662464120999957, 49.168580907000049 ], [ -122.662530818999983, 49.168581665000062 ], [ -122.662603814999954, 49.168582489000087 ], [ -122.663075495999976, 49.168602612000072 ], [ -122.664177088999935, 49.169017005000043 ], [ -122.665622486999965, 49.169037401000018 ], [ -122.666642065999895, 49.169040295000123 ], [ -122.667031892999958, 49.169041404000076 ], [ -122.667971400999974, 49.169039891000075 ], [ -122.667980787999966, 49.169828044000035 ], [ -122.667982915999971, 49.170007287000075 ], [ -122.667992893999951, 49.17084549300008 ], [ -122.668070691999972, 49.170846052000101 ], [ -122.668146401999977, 49.170846604000133 ], [ -122.673971205999976, 49.170859990000075 ], [ -122.676350690999982, 49.170859610000022 ], [ -122.676850992999974, 49.170823700000092 ], [ -122.677237202999933, 49.170736491000078 ], [ -122.67823252299999, 49.170337407000041 ], [ -122.679083593999948, 49.170134696000034 ], [ -122.678677996999966, 49.173798310000052 ], [ -122.678608554999968, 49.174456322000019 ], [ -122.678468589999966, 49.175782773000023 ], [ -122.678373828999938, 49.176986694000078 ], [ -122.673900064999913, 49.176990780000033 ], [ -122.672993463999902, 49.176989797000083 ], [ -122.67225684, 49.176991355000091 ], [ -122.669433930999901, 49.176897766000131 ], [ -122.668632829999936, 49.176994649 ], [ -122.668038727999885, 49.17699698400002 ], [ -122.6675216899999, 49.176996297000073 ], [ -122.665083210999939, 49.176992894000144 ], [ -122.664516728999956, 49.176993352000068 ], [ -122.664346552999945, 49.176994403000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247336334", "BldgCostT": "166213334", "sL_LossRatio": "0.715877747415354", "sL_AssetLoss": "3826733", "sL_BldgLoss": "2739473", "sL_StrLoss": "1284883", "sL_NStrLoss": "1454590", "sL_ContLoss": "1087260", "geom_point": "0101000020E610000009647E8745AA5EC05358889239964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657203800999966, 49.172409685000041 ], [ -122.657145100999955, 49.170709217000088 ], [ -122.657128800999942, 49.170173238000075 ], [ -122.657114091999972, 49.169690011000071 ], [ -122.657261486, 49.169643201000099 ], [ -122.657944508999989, 49.16964279700003 ], [ -122.657958182999906, 49.169642119000073 ], [ -122.658309436999929, 49.169624759000079 ], [ -122.659052388999953, 49.169587999000157 ], [ -122.659477185999961, 49.169604238000034 ], [ -122.659674695999954, 49.169611798000062 ], [ -122.659709666999944, 49.169616353000151 ], [ -122.660374413999932, 49.169702892000018 ], [ -122.660546469999929, 49.16970223700006 ], [ -122.66094442399995, 49.169700685000088 ], [ -122.661124790999978, 49.169700008000056 ], [ -122.661603252999953, 49.169610161000087 ], [ -122.661680784999959, 49.16959559499999 ], [ -122.66168838599999, 49.169610431000088 ], [ -122.662083695999939, 49.170383103000098 ], [ -122.662092773999944, 49.170943465000029 ], [ -122.662111388999904, 49.172097900000139 ], [ -122.66311010099993, 49.172094605000083 ], [ -122.663198510999948, 49.172298494000039 ], [ -122.663271303999977, 49.172466288000159 ], [ -122.663540121999958, 49.172828807 ], [ -122.663748492999957, 49.173039807000102 ], [ -122.665234259999949, 49.174224426000123 ], [ -122.665242986999971, 49.174231438000071 ], [ -122.665235582999969, 49.174239219000107 ], [ -122.664953671999925, 49.174536047000082 ], [ -122.664631606999976, 49.174972146000087 ], [ -122.66440887199991, 49.175457236000021 ], [ -122.664405186999915, 49.175475064000096 ], [ -122.664393887999921, 49.175529240000117 ], [ -122.664325181, 49.175859234000058 ], [ -122.664340688999985, 49.176540965000065 ], [ -122.664346552999945, 49.176994403000059 ], [ -122.66373624799995, 49.176993528000061 ], [ -122.662760530999918, 49.176993276000125 ], [ -122.661156307999974, 49.176992849000065 ], [ -122.660098799999972, 49.176992509000108 ], [ -122.659187262999936, 49.176992258000027 ], [ -122.658912773999973, 49.176992168000119 ], [ -122.658531707999941, 49.176992046000059 ], [ -122.65835635900001, 49.176991995 ], [ -122.658257238999937, 49.176991979000015 ], [ -122.657344702999964, 49.176991735000108 ], [ -122.657337124999955, 49.176658087000071 ], [ -122.657320440999982, 49.176003027000078 ], [ -122.65731814599999, 49.175913108000024 ], [ -122.657310141999957, 49.17559837300012 ], [ -122.657304185999962, 49.175364578000035 ], [ -122.657290490999941, 49.174827371000106 ], [ -122.657288806999972, 49.174698498000055 ], [ -122.657268505999951, 49.173893102000122 ], [ -122.657223108999972, 49.172941901000058 ], [ -122.657212046999945, 49.172637111000043 ], [ -122.657203800999966, 49.172409685000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127905834", "BldgCostT": "82373334", "sL_LossRatio": "0.725201572978429", "sL_AssetLoss": "1459397", "sL_BldgLoss": "1058357", "sL_StrLoss": "505297", "sL_NStrLoss": "553060", "sL_ContLoss": "401040", "geom_point": "0101000020E6100000CA4E2FC67AA45EC0E1B564B8AE9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.56531760499999, 49.226559683000069 ], [ -122.565303463999939, 49.225347046000081 ], [ -122.565288781999982, 49.224087312000023 ], [ -122.565271986999946, 49.222648102000093 ], [ -122.565266204999915, 49.22215068400002 ], [ -122.565257910999946, 49.221520601000087 ], [ -122.565258697999965, 49.221407236000076 ], [ -122.565260968999922, 49.221083433000068 ], [ -122.565266120999965, 49.220352102000042 ], [ -122.566048622, 49.220355004000069 ], [ -122.567284498999925, 49.220359590000015 ], [ -122.568178786999923, 49.220362888000082 ], [ -122.570827875, 49.220372396000116 ], [ -122.573395365999957, 49.220381049000096 ], [ -122.574153806999945, 49.220383612000056 ], [ -122.57528001099999, 49.220378809000096 ], [ -122.575634311, 49.220377492000033 ], [ -122.57555505699996, 49.223892365000019 ], [ -122.575553295999953, 49.223970306000119 ], [ -122.574794818999933, 49.223977702000113 ], [ -122.574679780999972, 49.223966102000063 ], [ -122.574143304999907, 49.223911996 ], [ -122.574119703999884, 49.224008177000023 ], [ -122.57402158599993, 49.224408197000116 ], [ -122.57402307699999, 49.224732189000107 ], [ -122.574025204999955, 49.225195891000041 ], [ -122.574104204999955, 49.225429088000105 ], [ -122.574199591999928, 49.22571771200014 ], [ -122.574329807999973, 49.225944506000111 ], [ -122.574455594, 49.226040150000117 ], [ -122.574557297999917, 49.226117498000065 ], [ -122.574883906999929, 49.226268394000087 ], [ -122.575363490999962, 49.226505311000103 ], [ -122.575587996999943, 49.226571099000068 ], [ -122.576412123999944, 49.226568406000055 ], [ -122.576405549999905, 49.226801056000113 ], [ -122.576382327999923, 49.227623505000061 ], [ -122.5755856, 49.227630719000032 ], [ -122.575211612999937, 49.227634099000085 ], [ -122.570036745999914, 49.227629362000052 ], [ -122.568383207999929, 49.227627809000111 ], [ -122.56640260599994, 49.227613267000024 ], [ -122.562766278999945, 49.22773674600009 ], [ -122.562785616999975, 49.227653099000079 ], [ -122.562782995999953, 49.226537488000091 ], [ -122.563123877999971, 49.226540490000033 ], [ -122.56531760499999, 49.226559683000069 ] ], [ [ -122.57309239599999, 49.225248895000128 ], [ -122.573163885999918, 49.224280490000055 ], [ -122.572544138999973, 49.224278198000015 ], [ -122.572546464999945, 49.224008348000069 ], [ -122.57172247199999, 49.224005295000019 ], [ -122.571720138999979, 49.224275146000068 ], [ -122.56924814199995, 49.224265954000032 ], [ -122.569244939000015, 49.224634548000083 ], [ -122.571605799999958, 49.22470966500002 ], [ -122.571572223999922, 49.225164294000088 ], [ -122.572554794999959, 49.225195541000105 ], [ -122.572552123999984, 49.225231717000064 ], [ -122.57309239599999, 49.225248895000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182043250", "BldgCostT": "117745000", "sL_LossRatio": "0.704275690956454", "sL_AssetLoss": "2018434", "sL_BldgLoss": "1421534", "sL_StrLoss": "708054", "sL_NStrLoss": "713480", "sL_ContLoss": "596900", "geom_point": "0101000020E6100000B3307EF9E8A35EC010F705B2A69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.564016543999969, 49.22035463000001 ], [ -122.565266120999965, 49.220352102000042 ], [ -122.565260968999922, 49.221083433000068 ], [ -122.565258697999965, 49.221407236000076 ], [ -122.565257910999946, 49.221520601000087 ], [ -122.565266204999915, 49.22215068400002 ], [ -122.565271986999946, 49.222648102000093 ], [ -122.565288781999982, 49.224087312000023 ], [ -122.565303463999939, 49.225347046000081 ], [ -122.56531760499999, 49.226559683000069 ], [ -122.563123877999971, 49.226540490000033 ], [ -122.562782995999953, 49.226537488000091 ], [ -122.562785616999975, 49.227653099000079 ], [ -122.561405005999944, 49.227660392000125 ], [ -122.557313270999899, 49.227567348 ], [ -122.557262392999945, 49.227507503000062 ], [ -122.55722529800002, 49.227358491000118 ], [ -122.55717911699999, 49.226334304000048 ], [ -122.557178935999957, 49.226296951000023 ], [ -122.55717699899995, 49.225829153000092 ], [ -122.557176573999982, 49.225730203000076 ], [ -122.557176225999982, 49.225649250000082 ], [ -122.557174812999904, 49.225307453000077 ], [ -122.557172829999971, 49.224826524000072 ], [ -122.557170621999944, 49.224623601000111 ], [ -122.557167902999979, 49.224368230000039 ], [ -122.557153300999957, 49.223008213000078 ], [ -122.557143100999951, 49.222058343000093 ], [ -122.557138682999934, 49.221645799000051 ], [ -122.557130886999971, 49.220917159000095 ], [ -122.557124742999946, 49.220346465 ], [ -122.558504348999975, 49.220349974000086 ], [ -122.559408408999957, 49.220351944000065 ], [ -122.559518328999943, 49.22035219300006 ], [ -122.560445674999954, 49.220354234000126 ], [ -122.561232018999988, 49.220355942000054 ], [ -122.564016543999969, 49.22035463000001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86990333", "BldgCostT": "56573333", "sL_LossRatio": "0.727139842616609", "sL_AssetLoss": "909880", "sL_BldgLoss": "661610", "sL_StrLoss": "331970", "sL_NStrLoss": "329640", "sL_ContLoss": "248270", "geom_point": "0101000020E61000008E4A9806D1A35EC031B13364C0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556777547999971, 49.194326033000046 ], [ -122.556806787999932, 49.192976664000106 ], [ -122.556809102999964, 49.192868744000066 ], [ -122.556841866999932, 49.191355961000042 ], [ -122.557244297999929, 49.191358508000043 ], [ -122.558204851999946, 49.191364531000033 ], [ -122.559299601999953, 49.191371402000058 ], [ -122.560839999, 49.191378290000031 ], [ -122.560833695999989, 49.191630409 ], [ -122.560932599999944, 49.191832703000038 ], [ -122.561107399999983, 49.192010391000089 ], [ -122.562026101999962, 49.192723708000095 ], [ -122.562270312999914, 49.193038795000135 ], [ -122.562712800999975, 49.193922456000095 ], [ -122.56278438399994, 49.194065407000053 ], [ -122.562945597999956, 49.194241698000063 ], [ -122.563433646999954, 49.194656529000056 ], [ -122.563054770999941, 49.19495441500009 ], [ -122.562916365, 49.195118501000074 ], [ -122.562837409999972, 49.195297121000038 ], [ -122.562833291999979, 49.195686305000045 ], [ -122.56058828399992, 49.194947834000104 ], [ -122.560575989999933, 49.194943812000119 ], [ -122.559974911999916, 49.194721839000081 ], [ -122.558933709, 49.194365981000033 ], [ -122.55868525399994, 49.194312719000074 ], [ -122.558558182999917, 49.194285496000141 ], [ -122.558387146999962, 49.194279115 ], [ -122.55830186899999, 49.194304734000113 ], [ -122.558227115999969, 49.19432717500009 ], [ -122.558058055999965, 49.194423612000094 ], [ -122.557889458999924, 49.194569607000126 ], [ -122.557862481999933, 49.19478502100003 ], [ -122.557913120999928, 49.195138993000171 ], [ -122.557868540999934, 49.19522694500008 ], [ -122.556750014, 49.195598696000062 ], [ -122.556752413999916, 49.195486336000045 ], [ -122.556761388999959, 49.195072516000053 ], [ -122.556766253000021, 49.194847599000049 ], [ -122.556777547999971, 49.194326033000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "483958053", "BldgCostT": "315188844", "sL_LossRatio": "0.800652720868378", "sL_AssetLoss": "3477750", "sL_BldgLoss": "2784470", "sL_StrLoss": "1569120", "sL_NStrLoss": "1215350", "sL_ContLoss": "693280", "geom_point": "0101000020E610000042052DA8D8B75EC0C9E6CB87F78F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.876388224999957, 49.122898450000115 ], [ -122.877478410999942, 49.122895289000041 ], [ -122.877447836999977, 49.124929694000144 ], [ -122.877434750999925, 49.12580241500013 ], [ -122.877429865999957, 49.12612623400009 ], [ -122.877421896999948, 49.126656497000049 ], [ -122.876831099999904, 49.126649963000084 ], [ -122.876219987999932, 49.126643193000042 ], [ -122.875775546999989, 49.126638325000116 ], [ -122.875309407999936, 49.12663320900004 ], [ -122.874623827000022, 49.126625664000144 ], [ -122.873372601999904, 49.126611913000033 ], [ -122.873144208999946, 49.126610529000054 ], [ -122.870631135999929, 49.126595221000109 ], [ -122.869429865999976, 49.12659354000003 ], [ -122.86783263299999, 49.126591255000058 ], [ -122.86775740899995, 49.126589059000047 ], [ -122.867740783999977, 49.124902688000077 ], [ -122.867748933999977, 49.122848501000057 ], [ -122.867832560999972, 49.122847334000078 ], [ -122.868547388999929, 49.122850057000072 ], [ -122.86872274, 49.122850725000085 ], [ -122.869544523999963, 49.12285212700008 ], [ -122.869684272, 49.122851683000064 ], [ -122.870748378999934, 49.122855606000016 ], [ -122.871909487999972, 49.122862392000059 ], [ -122.873198898999959, 49.122877323000083 ], [ -122.875078008999964, 49.122902203000073 ], [ -122.875826403999952, 49.122900057000017 ], [ -122.876388224999957, 49.122898450000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177692957", "BldgCostT": "118551684", "sL_LossRatio": "0.824437971935688", "sL_AssetLoss": "1280630", "sL_BldgLoss": "1055800", "sL_StrLoss": "526260", "sL_NStrLoss": "529540", "sL_ContLoss": "224830", "geom_point": "0101000020E61000009306A7D334B85EC0AA32844AF98F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.877478410999942, 49.122895289000041 ], [ -122.878988307, 49.122910306000072 ], [ -122.878993496999911, 49.12376203700007 ], [ -122.879011199999965, 49.126654896000055 ], [ -122.877873047999969, 49.126656054000058 ], [ -122.877421896999948, 49.126656497000049 ], [ -122.877429865999957, 49.12612623400009 ], [ -122.877434750999925, 49.12580241500013 ], [ -122.877447836999977, 49.124929694000144 ], [ -122.877478410999942, 49.122895289000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86639363", "BldgCostT": "56896935", "sL_LossRatio": "0.684099699909353", "sL_AssetLoss": "1776130", "sL_BldgLoss": "1215050", "sL_StrLoss": "522140", "sL_NStrLoss": "692910", "sL_ContLoss": "561080", "geom_point": "0101000020E6100000CD6053E791B25EC061585936CE9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.789366792999914, 49.236445360000126 ], [ -122.789496082999975, 49.235112217000037 ], [ -122.789651822999943, 49.234806924000061 ], [ -122.790295832999959, 49.234231414000142 ], [ -122.79039650799993, 49.234025417000062 ], [ -122.790392, 49.233873007000092 ], [ -122.790285701999949, 49.233741895000072 ], [ -122.790138622999905, 49.233625798000027 ], [ -122.789841385999949, 49.233494398000076 ], [ -122.78958172399993, 49.233735406000065 ], [ -122.788789587999943, 49.233375695000063 ], [ -122.788452682999932, 49.233282798000118 ], [ -122.787237904999955, 49.2329781070001 ], [ -122.785926788000026, 49.232637207000046 ], [ -122.785862676999969, 49.232314590000058 ], [ -122.785479013, 49.231867101000027 ], [ -122.785566005999925, 49.231839905000143 ], [ -122.785930500999939, 49.23157328200007 ], [ -122.786246077000015, 49.231297993000105 ], [ -122.787414704999946, 49.231653603 ], [ -122.788135205999978, 49.231857900000072 ], [ -122.788452305999925, 49.23189980100009 ], [ -122.788862183999953, 49.231888595000036 ], [ -122.78997519, 49.231580302000118 ], [ -122.790344294999969, 49.231980507000074 ], [ -122.790503494999982, 49.232081588000028 ], [ -122.790728618999964, 49.232142401000068 ], [ -122.791188894999962, 49.232137999000031 ], [ -122.791452501999956, 49.232058515000084 ], [ -122.79167840099997, 49.231910296000095 ], [ -122.792660000999916, 49.230262794000069 ], [ -122.79279344299999, 49.229583801000054 ], [ -122.792919322999964, 49.229451494000067 ], [ -122.793153895999964, 49.22927469900003 ], [ -122.79351267599999, 49.229666485000038 ], [ -122.793755139, 49.230211555000068 ], [ -122.793796873999952, 49.230521833000111 ], [ -122.793767402999947, 49.230888546000116 ], [ -122.793333409999931, 49.232102751000092 ], [ -122.79320003499997, 49.232144727000069 ], [ -122.793090322999987, 49.232242381000077 ], [ -122.79306055699999, 49.232633396000047 ], [ -122.792970899999943, 49.232818137000088 ], [ -122.792642752999939, 49.232817385000047 ], [ -122.79250655099996, 49.232880902000019 ], [ -122.792222156999941, 49.233320225000064 ], [ -122.792119713999924, 49.233670341000057 ], [ -122.792064002999965, 49.233720947000037 ], [ -122.791953635999931, 49.233748295000062 ], [ -122.791750458999942, 49.233747651000037 ], [ -122.791779620999975, 49.233464721000104 ], [ -122.792013629999985, 49.232860831000053 ], [ -122.791968063999931, 49.232626131000067 ], [ -122.791884501999931, 49.232602934000063 ], [ -122.79175222899994, 49.232629607000078 ], [ -122.791502868999928, 49.232820409000063 ], [ -122.79095342, 49.233398693000034 ], [ -122.790909185999936, 49.233542435000054 ], [ -122.790919544999966, 49.233749968000041 ], [ -122.790995606999971, 49.233940521000079 ], [ -122.790989475999964, 49.234088994000054 ], [ -122.790833852999967, 49.234517247 ], [ -122.790260243999953, 49.236095344000077 ], [ -122.790220135999959, 49.236457241000053 ], [ -122.790301709999937, 49.236628149000076 ], [ -122.790473920999915, 49.236718859000071 ], [ -122.79027101699991, 49.237011945000035 ], [ -122.7899945, 49.237337049000075 ], [ -122.789701364999928, 49.237604032000036 ], [ -122.789456251999965, 49.237772408000097 ], [ -122.789335080999962, 49.237638176000083 ], [ -122.789268222999965, 49.237473112000011 ], [ -122.789366792999914, 49.236445360000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64602250", "BldgCostT": "40345000", "sL_LossRatio": "0.671820628980369", "sL_AssetLoss": "913860", "sL_BldgLoss": "613950", "sL_StrLoss": "310270", "sL_NStrLoss": "303680", "sL_ContLoss": "299910", "geom_point": "0101000020E6100000E1F3F542A2B25EC06173273B2A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790919544999966, 49.233749968000041 ], [ -122.790909185999936, 49.233542435000054 ], [ -122.79095342, 49.233398693000034 ], [ -122.791502868999928, 49.232820409000063 ], [ -122.79175222899994, 49.232629607000078 ], [ -122.791884501999931, 49.232602934000063 ], [ -122.791968063999931, 49.232626131000067 ], [ -122.792013629999985, 49.232860831000053 ], [ -122.791779620999975, 49.233464721000104 ], [ -122.791750458999942, 49.233747651000037 ], [ -122.791953635999931, 49.233748295000062 ], [ -122.792064002999965, 49.233720947000037 ], [ -122.792119713999924, 49.233670341000057 ], [ -122.792222156999941, 49.233320225000064 ], [ -122.79250655099996, 49.232880902000019 ], [ -122.792642752999939, 49.232817385000047 ], [ -122.792970899999943, 49.232818137000088 ], [ -122.79306055699999, 49.232633396000047 ], [ -122.793090322999987, 49.232242381000077 ], [ -122.79320003499997, 49.232144727000069 ], [ -122.793333409999931, 49.232102751000092 ], [ -122.793458356, 49.232221792000068 ], [ -122.793739873999982, 49.232340968000074 ], [ -122.793162682999977, 49.233519355000119 ], [ -122.792932023999967, 49.233518942000089 ], [ -122.792930894999955, 49.23378879800002 ], [ -122.793030612999942, 49.233788976000056 ], [ -122.792125203999916, 49.23563728700006 ], [ -122.791091979999919, 49.237722867000059 ], [ -122.791086229, 49.237734455000123 ], [ -122.790491914999961, 49.238371981000085 ], [ -122.790438963000028, 49.238371884000081 ], [ -122.790438721999976, 49.238429039000039 ], [ -122.79012802599999, 49.238762315000081 ], [ -122.789645267999944, 49.23876585600005 ], [ -122.787380926999958, 49.238782427000061 ], [ -122.788008863999949, 49.238505940000039 ], [ -122.788648966999929, 49.238225878 ], [ -122.78925439699999, 49.23791144700008 ], [ -122.789456251999965, 49.237772408000097 ], [ -122.789701364999928, 49.237604032000036 ], [ -122.7899945, 49.237337049000075 ], [ -122.79027101699991, 49.237011945000035 ], [ -122.790473920999915, 49.236718859000071 ], [ -122.790301709999937, 49.236628149000076 ], [ -122.790220135999959, 49.236457241000053 ], [ -122.790260243999953, 49.236095344000077 ], [ -122.790833852999967, 49.234517247 ], [ -122.790989475999964, 49.234088994000054 ], [ -122.790995606999971, 49.233940521000079 ], [ -122.790919544999966, 49.233749968000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86594667", "BldgCostT": "56036667", "sL_LossRatio": "0.685097939908669", "sL_AssetLoss": "1796765", "sL_BldgLoss": "1230960", "sL_StrLoss": "562000", "sL_NStrLoss": "668960", "sL_ContLoss": "565805", "geom_point": "0101000020E6100000E20A94B99ECA5EC0818CCA97E1954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.164439801, 49.173460992000123 ], [ -123.164456900999951, 49.172055198000052 ], [ -123.163625115999977, 49.172049495000081 ], [ -123.163284086999937, 49.172088290000026 ], [ -123.163225390999969, 49.172101978000079 ], [ -123.162125521999911, 49.172358599000056 ], [ -123.161821777999975, 49.172398871000041 ], [ -123.161620991999939, 49.172425505000035 ], [ -123.160521393999915, 49.172410460000044 ], [ -123.160415394999973, 49.172409004000059 ], [ -123.16039864699998, 49.172279670000108 ], [ -123.16026169, 49.171222218000054 ], [ -123.160300802000037, 49.171142993000096 ], [ -123.16038618, 49.171091202000042 ], [ -123.160506893999965, 49.171069199000044 ], [ -123.161845091999979, 49.171063702000026 ], [ -123.161685570999907, 49.170190054000088 ], [ -123.161711736999962, 49.170189959000098 ], [ -123.164495789999975, 49.170181599000053 ], [ -123.164497288999897, 49.17013326500004 ], [ -123.164498508999912, 49.170093401000059 ], [ -123.164508813999987, 49.168732481000099 ], [ -123.164523114999966, 49.168048194000022 ], [ -123.164536588999951, 49.167219791000065 ], [ -123.165560109999916, 49.16722960400012 ], [ -123.16567265399999, 49.167231462000082 ], [ -123.165838099999974, 49.167234208000053 ], [ -123.166280694999941, 49.16728280400006 ], [ -123.166615304999951, 49.167460100000099 ], [ -123.166855899999959, 49.167673597000046 ], [ -123.167449127999987, 49.16745499700005 ], [ -123.167840615, 49.167397704000052 ], [ -123.168009004999973, 49.167760693000091 ], [ -123.168055992999925, 49.167957397000116 ], [ -123.168058799999955, 49.168185210000033 ], [ -123.168061315999978, 49.168389002000012 ], [ -123.168145582999941, 49.168738105000067 ], [ -123.16698321599992, 49.168734498000113 ], [ -123.166983725999927, 49.16938320100008 ], [ -123.166983892999909, 49.169589947000169 ], [ -123.16698428799999, 49.170088504000084 ], [ -123.166985068999935, 49.170147733000078 ], [ -123.16698550699999, 49.17018129800001 ], [ -123.169359042999957, 49.170179043000047 ], [ -123.169440164999926, 49.17017896400003 ], [ -123.170025176999943, 49.17017839600004 ], [ -123.170022986999939, 49.170935003000054 ], [ -123.16999201499999, 49.172480994000104 ], [ -123.169978700999962, 49.173577814000105 ], [ -123.165536113999963, 49.173469108000035 ], [ -123.164439801, 49.173460992000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215709333", "BldgCostT": "146763333", "sL_LossRatio": "0.728074946926063", "sL_AssetLoss": "3217210", "sL_BldgLoss": "2342370", "sL_StrLoss": "1087150", "sL_NStrLoss": "1255220", "sL_ContLoss": "874840", "geom_point": "0101000020E61000006DBB5C06D4CB5EC0AC37FE9F9E944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184126384999942, 49.162854892000048 ], [ -123.183835208999966, 49.162797695000094 ], [ -123.181787516000028, 49.162796102000087 ], [ -123.181669500999959, 49.162795989000074 ], [ -123.181203214999968, 49.162822609000109 ], [ -123.181199004999939, 49.161760302000062 ], [ -123.181197622999917, 49.161490109000056 ], [ -123.181184764999955, 49.160734899000047 ], [ -123.181178084999942, 49.160341893000066 ], [ -123.181149419999969, 49.159304623000068 ], [ -123.18114591299999, 49.159177095000103 ], [ -123.182142012999961, 49.159182485000059 ], [ -123.183167102999946, 49.159185891000099 ], [ -123.183503387999963, 49.159188908000118 ], [ -123.184210899999982, 49.159195190000062 ], [ -123.184408556999983, 49.159198493000133 ], [ -123.18459568099999, 49.159201591000063 ], [ -123.184807017999958, 49.159266593000076 ], [ -123.184996166999937, 49.159356290000069 ], [ -123.185124495999901, 49.15945510400006 ], [ -123.185184257999964, 49.159534691000019 ], [ -123.185234891999968, 49.159602088000021 ], [ -123.185268403999928, 49.15972728900006 ], [ -123.185268817999955, 49.159793160000049 ], [ -123.185275587999968, 49.16092110800011 ], [ -123.186342213999964, 49.160919304000096 ], [ -123.186347794999975, 49.159443791000065 ], [ -123.186409026999954, 49.15944371700003 ], [ -123.188446533999951, 49.159441007000119 ], [ -123.188945593999932, 49.159460392000049 ], [ -123.188934099999955, 49.160194196000084 ], [ -123.188921811999961, 49.160919092 ], [ -123.188520210999954, 49.16091940700003 ], [ -123.188530790999963, 49.161764706000085 ], [ -123.188543886999952, 49.162794691000023 ], [ -123.188097234999972, 49.162794718000093 ], [ -123.186862695999977, 49.162794715000103 ], [ -123.18468252, 49.162794694000098 ], [ -123.184542887999925, 49.162835210000061 ], [ -123.18435350699994, 49.162952709000116 ], [ -123.184156128999987, 49.162867708000128 ], [ -123.184126384999942, 49.162854892000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130540267", "BldgCostT": "79630229", "sL_LossRatio": "0.667352166557502", "sL_AssetLoss": "2108437", "sL_BldgLoss": "1407070", "sL_StrLoss": "602710", "sL_NStrLoss": "804360", "sL_ContLoss": "701367", "geom_point": "0101000020E6100000D605D41F0ACB5EC084B84106D58F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.172412260999977, 49.121286765000065 ], [ -123.172350556999959, 49.121238217000055 ], [ -123.172563003999969, 49.121348798000035 ], [ -123.17443061499992, 49.121689565000054 ], [ -123.174413739000016, 49.121761677000116 ], [ -123.17400321, 49.122069866000082 ], [ -123.173768737, 49.122179045000038 ], [ -123.173421864999952, 49.122340583000096 ], [ -123.173320944999887, 49.122423522000055 ], [ -123.173363781999939, 49.122478239000095 ], [ -123.173656793999925, 49.122759980000062 ], [ -123.17534638099994, 49.124384603000117 ], [ -123.175347228999911, 49.124879540000101 ], [ -123.175347421999959, 49.124978490000089 ], [ -123.175347702999929, 49.125153094000041 ], [ -123.174933954999972, 49.125151829000153 ], [ -123.174276059999926, 49.125149804000024 ], [ -123.173718107999917, 49.125148097000071 ], [ -123.172907612999978, 49.125144003000038 ], [ -123.16998628, 49.125127041000049 ], [ -123.169962793999957, 49.125126905000094 ], [ -123.169930884999957, 49.124192854000043 ], [ -123.16966384499996, 49.123469023000048 ], [ -123.169630555999944, 49.12335081100008 ], [ -123.169708864999976, 49.123327980000099 ], [ -123.169898271999941, 49.123272792000115 ], [ -123.169954228999956, 49.123256486000145 ], [ -123.170535710999928, 49.123086984000096 ], [ -123.170730654999929, 49.123012084000031 ], [ -123.170893302999957, 49.122949598000048 ], [ -123.171074206999933, 49.122790395000024 ], [ -123.171255895999963, 49.12257258600004 ], [ -123.171424286999923, 49.122281500000042 ], [ -123.172017230999984, 49.122103632000119 ], [ -123.172453762999908, 49.121303629000046 ], [ -123.172412260999977, 49.121286765000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21593334", "BldgCostT": "13208334", "sL_LossRatio": "0.695009901786342", "sL_AssetLoss": "198954", "sL_BldgLoss": "138275", "sL_StrLoss": "65160", "sL_NStrLoss": "73115", "sL_ContLoss": "60679", "geom_point": "0101000020E6100000227A08991ACB5EC07A4F406E1A8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17372990599992, 49.118279684000086 ], [ -123.173428999999885, 49.118162892000107 ], [ -123.172181309999957, 49.118164296000018 ], [ -123.171722876999922, 49.117997848000101 ], [ -123.171906101999951, 49.117363035000032 ], [ -123.173277189000018, 49.11761460100012 ], [ -123.174722449999933, 49.117632335000046 ], [ -123.174832082999956, 49.117955847000076 ], [ -123.174850991999961, 49.118068243000081 ], [ -123.174876700999917, 49.118214905000094 ], [ -123.174885933999988, 49.118889851000041 ], [ -123.174376509999959, 49.118746804000104 ], [ -123.17372990599992, 49.118279684000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125168166", "BldgCostT": "84111666", "sL_LossRatio": "0.713669064748201", "sL_AssetLoss": "2912050", "sL_BldgLoss": "2078240", "sL_StrLoss": "925800", "sL_NStrLoss": "1152440", "sL_ContLoss": "833810", "geom_point": "0101000020E6100000AF2B344AB6CA5EC09B289DA3E9904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166359186999955, 49.133669801000053 ], [ -123.166381693999952, 49.133165009000074 ], [ -123.16347837899994, 49.133106494000103 ], [ -123.163507513999946, 49.132741498000108 ], [ -123.163599395999981, 49.132627696000043 ], [ -123.164152489999978, 49.132227898000103 ], [ -123.164376300999962, 49.131972616000027 ], [ -123.164525800999982, 49.131698997000115 ], [ -123.164727248999938, 49.131213077000041 ], [ -123.164803598999981, 49.131028910000062 ], [ -123.16499035799994, 49.131032625000081 ], [ -123.165100330999962, 49.131034829000036 ], [ -123.166933911999948, 49.131071504000097 ], [ -123.166952217999906, 49.130712117000066 ], [ -123.166969507999951, 49.130373298000109 ], [ -123.168393100999964, 49.130390116000086 ], [ -123.169822002999936, 49.13043310200009 ], [ -123.16999137000002, 49.130502830000097 ], [ -123.169996276999939, 49.131410591000083 ], [ -123.170022219999964, 49.133571217000082 ], [ -123.169803519999959, 49.13373259100009 ], [ -123.168054410999943, 49.133700714000064 ], [ -123.166359186999955, 49.133669801000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175368417", "BldgCostT": "116336667", "sL_LossRatio": "0.74644313688864", "sL_AssetLoss": "2569680", "sL_BldgLoss": "1918120", "sL_StrLoss": "870680", "sL_NStrLoss": "1047440", "sL_ContLoss": "651560", "geom_point": "0101000020E610000077581B4299B55EC0EC93E4D25B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.836226124999925, 49.145575298000054 ], [ -122.836269309000016, 49.145423395000051 ], [ -122.835813643999984, 49.145423135 ], [ -122.835621673999952, 49.145423027000092 ], [ -122.835128040999933, 49.145422744000051 ], [ -122.834549324999955, 49.145422399000068 ], [ -122.834546181999968, 49.144561795000087 ], [ -122.834537708999932, 49.14363969900004 ], [ -122.834534602999952, 49.142738602000065 ], [ -122.834522195999966, 49.140907303000105 ], [ -122.841045392999945, 49.140804303000074 ], [ -122.840127707999955, 49.1418469010001 ], [ -122.840119503999958, 49.142714387000048 ], [ -122.840089685999914, 49.143616404000106 ], [ -122.840089384999956, 49.144528299000058 ], [ -122.840098391999931, 49.14540520000007 ], [ -122.840109499999926, 49.146310198000087 ], [ -122.838169986999986, 49.146312705000106 ], [ -122.836226088, 49.146320506000073 ], [ -122.836226124999925, 49.145575298000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67988084", "BldgCostT": "46888334", "sL_LossRatio": "0.730302553379649", "sL_AssetLoss": "1334310", "sL_BldgLoss": "974450", "sL_StrLoss": "432960", "sL_NStrLoss": "541490", "sL_ContLoss": "359860", "geom_point": "0101000020E610000082C4B0A24AB55EC086B741CC29944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833212203999963, 49.159022211000064 ], [ -122.833301997999939, 49.158529211000037 ], [ -122.832580677999957, 49.158531412000066 ], [ -122.832249488999963, 49.158463993000048 ], [ -122.831892596999978, 49.158330105000104 ], [ -122.831522891999981, 49.157960594000045 ], [ -122.831519677999935, 49.157303594000055 ], [ -122.831487611999961, 49.157131487000036 ], [ -122.831362014999939, 49.156902502000079 ], [ -122.831047596999923, 49.156647305000064 ], [ -122.830648396999919, 49.156510308000115 ], [ -122.83038308499998, 49.156480807 ], [ -122.828940382999974, 49.156488785000121 ], [ -122.828958808999957, 49.155516199000026 ], [ -122.829156100999981, 49.155516261000102 ], [ -122.831642835999915, 49.155516883000104 ], [ -122.832310492999937, 49.155516285000076 ], [ -122.832721944999932, 49.155515924000071 ], [ -122.833023663999981, 49.155515646000076 ], [ -122.834554613999927, 49.155514242000088 ], [ -122.834582184999988, 49.158532649000058 ], [ -122.834561306999973, 49.160450348000033 ], [ -122.8333340499999, 49.160453877000066 ], [ -122.832257696999974, 49.160455499000122 ], [ -122.83199117599996, 49.160444096000063 ], [ -122.831338310999968, 49.160287004000089 ], [ -122.83147040299994, 49.160097175000061 ], [ -122.83148270299999, 49.160079497000041 ], [ -122.83184040299993, 49.159799890000031 ], [ -122.83220958699999, 49.15961259700007 ], [ -122.832914992999974, 49.15938009900006 ], [ -122.833212203999963, 49.159022211000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166404895", "BldgCostT": "109016524", "sL_LossRatio": "0.698772685390269", "sL_AssetLoss": "3582537", "sL_BldgLoss": "2503379", "sL_StrLoss": "1060262", "sL_NStrLoss": "1443117", "sL_ContLoss": "1079158", "geom_point": "0101000020E6100000940A00E185BA5EC0B125F5AFF6944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912389864999952, 49.161500807000031 ], [ -122.912377191999951, 49.159662386000072 ], [ -122.913346387999979, 49.159663215000101 ], [ -122.915275851999965, 49.159673717000089 ], [ -122.915289585, 49.15967379500011 ], [ -122.915303713999961, 49.160390500000027 ], [ -122.915348696999942, 49.160373815000099 ], [ -122.916355597999924, 49.160384601000132 ], [ -122.917184393999932, 49.16039389400003 ], [ -122.91743480699995, 49.160442581000062 ], [ -122.917428419, 49.161385705000058 ], [ -122.917423168999974, 49.161414137000044 ], [ -122.917419922999954, 49.161431887000028 ], [ -122.917383386999944, 49.161630400000099 ], [ -122.917328108999982, 49.161820565 ], [ -122.91729936199999, 49.161919351000087 ], [ -122.917184586999966, 49.162313988000101 ], [ -122.917192299999925, 49.162651997000047 ], [ -122.916140778999974, 49.162651298000064 ], [ -122.916127098999965, 49.162651287000067 ], [ -122.916110482999898, 49.163357201000061 ], [ -122.916064216999956, 49.163496405000096 ], [ -122.915937506999938, 49.163649504000077 ], [ -122.915299879999964, 49.164209701000097 ], [ -122.915251480999956, 49.164253418000023 ], [ -122.91512479, 49.164367798000107 ], [ -122.915007987999985, 49.164578801000125 ], [ -122.914958100999968, 49.164772905000085 ], [ -122.914944596999931, 49.165141903000084 ], [ -122.914989838999986, 49.165261088000129 ], [ -122.915060093999969, 49.165446191000058 ], [ -122.915189105999971, 49.165631006000098 ], [ -122.915988072999966, 49.166090799000131 ], [ -122.916661182999945, 49.166443495000095 ], [ -122.917316894, 49.166768605000101 ], [ -122.916407393999989, 49.167582314000072 ], [ -122.915564909999986, 49.168335702000036 ], [ -122.912344794999967, 49.167830707000121 ], [ -122.912354690999933, 49.166917405000021 ], [ -122.912355948999945, 49.165978912000078 ], [ -122.912359505999945, 49.165090351000096 ], [ -122.912357304999929, 49.164981942000047 ], [ -122.912358402999985, 49.16415437400012 ], [ -122.912359494999976, 49.163335193000059 ], [ -122.912383411999912, 49.162391207000056 ], [ -122.912391609999986, 49.162067320000034 ], [ -122.912393304999938, 49.162000892000044 ], [ -122.912391482999979, 49.161734687000099 ], [ -122.912390774999935, 49.161635743000026 ], [ -122.912389864999952, 49.161500807000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "531514500", "BldgCostT": "354390000", "sL_LossRatio": "0.737202676779599", "sL_AssetLoss": "6934751", "sL_BldgLoss": "5112317", "sL_StrLoss": "2400144", "sL_NStrLoss": "2712173", "sL_ContLoss": "1822434", "geom_point": "0101000020E6100000FE3E2D505CBA5EC04165B26E72904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.90544281199999, 49.133922298000066 ], [ -122.905437085999921, 49.13200920400002 ], [ -122.905390825999959, 49.131922301000039 ], [ -122.904666987, 49.131990593000118 ], [ -122.903975205999984, 49.131989688000033 ], [ -122.90397301299997, 49.132906908000045 ], [ -122.902037319999963, 49.132925002000086 ], [ -122.902035508, 49.131922999000039 ], [ -122.902037457999981, 49.13123192800002 ], [ -122.90203797799991, 49.131040998000074 ], [ -122.901877584999937, 49.130939896000037 ], [ -122.900943798999918, 49.130807602000083 ], [ -122.899965509999959, 49.130686610000076 ], [ -122.899542603999961, 49.130555497000039 ], [ -122.89909568299997, 49.130272294000072 ], [ -122.898857578999952, 49.130206896000075 ], [ -122.89858991199999, 49.130214499000076 ], [ -122.898045116999924, 49.130330303000079 ], [ -122.897880301999976, 49.130336396000075 ], [ -122.897880029999939, 49.130336170000078 ], [ -122.897220719999964, 49.130218613000054 ], [ -122.89693528399998, 49.130167713000105 ], [ -122.896875914999939, 49.130030789000045 ], [ -122.896745513999988, 49.129871113000014 ], [ -122.896603691999971, 49.129758012000089 ], [ -122.896356820999969, 49.129658999000064 ], [ -122.896081809999941, 49.129613198000136 ], [ -122.895694581999919, 49.129604697000019 ], [ -122.895666313999982, 49.1289200000001 ], [ -122.898026995999928, 49.128896207000039 ], [ -122.898034203999885, 49.128418896000085 ], [ -122.897855292999978, 49.12787581 ], [ -122.897885706999929, 49.127461304000121 ], [ -122.89783021099997, 49.127266002000091 ], [ -122.89761290099996, 49.127134500000047 ], [ -122.897360697999929, 49.127074889000056 ], [ -122.896805714999942, 49.127077794000058 ], [ -122.896319900000023, 49.127070115000016 ], [ -122.895946878999965, 49.127178304000054 ], [ -122.895900148999885, 49.127204411000044 ], [ -122.895554174000026, 49.127397602000094 ], [ -122.894729620999954, 49.127846910000073 ], [ -122.893960690999961, 49.128284200000088 ], [ -122.893025881999961, 49.128804140000071 ], [ -122.892109095999942, 49.128069442000012 ], [ -122.892025283999956, 49.127928200000035 ], [ -122.891973639999918, 49.127841172000061 ], [ -122.891944162999962, 49.127564597000095 ], [ -122.892040387999955, 49.127293461000136 ], [ -122.892141070999912, 49.127186508000143 ], [ -122.892246793999945, 49.127074162000035 ], [ -122.892570562999978, 49.126903296000066 ], [ -122.892999002999915, 49.126744489000018 ], [ -122.893936330999949, 49.126391317000106 ], [ -122.894467956999961, 49.126173582000142 ], [ -122.894517993999969, 49.126153104000167 ], [ -122.894758892999988, 49.125930309000069 ], [ -122.894899390999939, 49.125673107000125 ], [ -122.895985787999976, 49.125671109000038 ], [ -122.89641557299997, 49.125676301000027 ], [ -122.897012496999949, 49.12572320700005 ], [ -122.898065257999974, 49.125910604000119 ], [ -122.898921386999987, 49.126063001000063 ], [ -122.898984823999982, 49.126087553000048 ], [ -122.899288621999958, 49.126205107000111 ], [ -122.899858144999953, 49.126505855000097 ], [ -122.900230058999909, 49.126702259000133 ], [ -122.900846179999988, 49.127027601000144 ], [ -122.901317687999935, 49.127209686000107 ], [ -122.903386281999957, 49.127916043000042 ], [ -122.904438813999946, 49.12827540500011 ], [ -122.905538419999985, 49.128632303000046 ], [ -122.906188186999955, 49.128852913000046 ], [ -122.906997782999937, 49.128976986000083 ], [ -122.90796079099999, 49.129121907000069 ], [ -122.909184916999934, 49.129318300000108 ], [ -122.909975814999981, 49.129435714000074 ], [ -122.911175902999929, 49.129352999000027 ], [ -122.911741589999949, 49.129292712000051 ], [ -122.912048899999945, 49.12920330400005 ], [ -122.912960902999913, 49.128632085000092 ], [ -122.914145411000021, 49.127895698000117 ], [ -122.915006397999917, 49.127368908000058 ], [ -122.91552738899999, 49.127053191000037 ], [ -122.915772705, 49.126762005000089 ], [ -122.915963998, 49.126603493000047 ], [ -122.916383887999984, 49.126365898000074 ], [ -122.917345699999913, 49.125868189000087 ], [ -122.91841218799999, 49.125319399000048 ], [ -122.91971098, 49.124634003000075 ], [ -122.91991971099999, 49.124481389000067 ], [ -122.919990802999934, 49.124234697000141 ], [ -122.919991978999946, 49.122664197000098 ], [ -122.9199921969999, 49.12232515500007 ], [ -122.919992490999988, 49.121828990000068 ], [ -122.919969898999952, 49.120225406000053 ], [ -122.919974221999951, 49.119228990000089 ], [ -122.920742005999941, 49.119196896000112 ], [ -122.921702898999939, 49.119018896000057 ], [ -122.921826568999961, 49.119009483000049 ], [ -122.922071903999964, 49.118990805000053 ], [ -122.922793293999973, 49.118996112000104 ], [ -122.923377472999931, 49.118999078000051 ], [ -122.923706355999954, 49.119000742000011 ], [ -122.923814319999906, 49.119001285000124 ], [ -122.924167077999954, 49.119671751000041 ], [ -122.92453804099999, 49.120994791000037 ], [ -122.924293114999941, 49.122238466000042 ], [ -122.924188256999969, 49.122497262000117 ], [ -122.924145928999963, 49.122497234000029 ], [ -122.924145768999949, 49.122602126000082 ], [ -122.924050494999932, 49.122837263000044 ], [ -122.923940550999944, 49.123077837000054 ], [ -122.923814803999974, 49.123306604000071 ], [ -122.923733519999971, 49.123306551000042 ], [ -122.923733291999923, 49.123454898000048 ], [ -122.92343241899998, 49.124002258000075 ], [ -122.923431141999984, 49.124004625000069 ], [ -122.923354151999945, 49.124115888000141 ], [ -122.923321096999956, 49.124115866000125 ], [ -122.923321022999957, 49.124163764000059 ], [ -122.922980853999917, 49.124655365000116 ], [ -122.9229090799999, 49.124655316 ], [ -122.922908919999927, 49.12475931900012 ], [ -122.92265748100003, 49.125122679000079 ], [ -122.922094062999946, 49.126004083000041 ], [ -122.922084597999984, 49.126004077000104 ], [ -122.922084572999935, 49.126018926000015 ], [ -122.921445366999976, 49.127018845000066 ], [ -122.92106265399994, 49.127753357000081 ], [ -122.920407796999953, 49.129179259000104 ], [ -122.920403606999912, 49.129433283000047 ], [ -122.919992401999977, 49.131033225000095 ], [ -122.919861328999929, 49.131543287000078 ], [ -122.919623899999948, 49.132628000000103 ], [ -122.919511588999939, 49.133160601000071 ], [ -122.919353677999936, 49.133930546000109 ], [ -122.9192971, 49.133929801000129 ], [ -122.918584017999962, 49.133920202000105 ], [ -122.918175807999944, 49.133914692000104 ], [ -122.917347588999959, 49.13390448800007 ], [ -122.916283281999981, 49.133878491000054 ], [ -122.914196489999981, 49.133839396000049 ], [ -122.912640024, 49.133860510000048 ], [ -122.910939879999958, 49.133878393000046 ], [ -122.910508743, 49.133882991000085 ], [ -122.910303200999934, 49.133885159000087 ], [ -122.909809582999941, 49.133890421000075 ], [ -122.909055801999926, 49.133898422000122 ], [ -122.908397893999961, 49.133905411000107 ], [ -122.905875657999928, 49.133919834000032 ], [ -122.90544281199999, 49.133922298000066 ] ], [ [ -122.91796292399998, 49.131889529000034 ], [ -122.91796373399994, 49.131398471000054 ], [ -122.916370435999937, 49.131397329000059 ], [ -122.91631875399996, 49.131407473000081 ], [ -122.916318317999981, 49.131667154000084 ], [ -122.915907074999978, 49.131666854000052 ], [ -122.915906617999923, 49.131936716000098 ], [ -122.913794103999919, 49.131935160000062 ], [ -122.913704603999932, 49.133284405 ], [ -122.914183702999978, 49.133284762000073 ], [ -122.915082089999913, 49.133129210000035 ], [ -122.915082745999925, 49.132745700000044 ], [ -122.915905249, 49.132746302000086 ], [ -122.915905704999929, 49.132476440000062 ], [ -122.917139454999969, 49.1324773320001 ], [ -122.917139903999953, 49.132207471000108 ], [ -122.917941824999971, 49.132208043000098 ], [ -122.91796292399998, 49.131889529000034 ] ], [ [ -122.908332059999921, 49.131661090000094 ], [ -122.908376487999988, 49.130992464000045 ], [ -122.910973229999968, 49.131067064000028 ], [ -122.910973610999946, 49.130853569000088 ], [ -122.910688425, 49.130853349000084 ], [ -122.910555636, 49.130946862000059 ], [ -122.910431536000019, 49.13098516200008 ], [ -122.910080630999957, 49.130852877000052 ], [ -122.908506196999951, 49.130851641000056 ], [ -122.90850669299995, 49.130581778000106 ], [ -122.90809545799999, 49.130581451000104 ], [ -122.908095958999922, 49.130311590000098 ], [ -122.90645103199995, 49.13031026800008 ], [ -122.906451538999974, 49.130040407000088 ], [ -122.904209304999966, 49.13003856800011 ], [ -122.903953636000026, 49.130058262000063 ], [ -122.903885367999948, 49.130038300000102 ], [ -122.903161706999967, 49.130037694000066 ], [ -122.903162116999908, 49.129826802000132 ], [ -122.902959880999944, 49.12976766200007 ], [ -122.902339778999973, 49.12976713900013 ], [ -122.902340130999903, 49.129587774000051 ], [ -122.901957175999925, 49.129496953000057 ], [ -122.901106634999962, 49.129496227000111 ], [ -122.901107101999941, 49.129261483000072 ], [ -122.901020535999976, 49.12922629200007 ], [ -122.899873504, 49.129225302000116 ], [ -122.899874589999939, 49.128685578000052 ], [ -122.899463372999961, 49.128685221000097 ], [ -122.899465555999925, 49.127605773000077 ], [ -122.898643137999954, 49.127605053000067 ], [ -122.89863928699998, 49.129494088000051 ], [ -122.899461736999953, 49.12949480700015 ], [ -122.899461190999915, 49.129764668000121 ], [ -122.89987241599998, 49.129765026000079 ], [ -122.89987187399997, 49.130034888000033 ], [ -122.900694331999944, 49.130035599000109 ], [ -122.900693976999946, 49.130213401000113 ], [ -122.900739934999933, 49.130222962000069 ], [ -122.900964334999969, 49.130305693 ], [ -122.902338717999939, 49.130306863000023 ], [ -122.902338188999948, 49.130576726000065 ], [ -122.903160654999965, 49.130577419000112 ], [ -122.903160129999918, 49.13084728000004 ], [ -122.905627544999902, 49.130849323000042 ], [ -122.905627286999916, 49.130984991000069 ], [ -122.90585423600001, 49.131043162000047 ], [ -122.905858091999932, 49.131119374000086 ], [ -122.9060382709999, 49.131119520000063 ], [ -122.90603725199999, 49.131659244000076 ], [ -122.908332059999921, 49.131661090000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201664682", "BldgCostT": "122838873", "sL_LossRatio": "0.667202789229855", "sL_AssetLoss": "2297982", "sL_BldgLoss": "1533220", "sL_StrLoss": "635060", "sL_NStrLoss": "898160", "sL_ContLoss": "764762", "geom_point": "0101000020E6100000DEC534D3FD9F5EC0832BB17C27884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.492726005999955, 49.066021377000062 ], [ -122.492710040999938, 49.061811384000059 ], [ -122.491764891999935, 49.061891084000059 ], [ -122.490280078999888, 49.061904601000045 ], [ -122.490129553999978, 49.061905949000021 ], [ -122.486692905999945, 49.061937106000109 ], [ -122.486687189999941, 49.061195994000038 ], [ -122.486695503999954, 49.06035981400003 ], [ -122.484675386000035, 49.060383800000096 ], [ -122.48309244599993, 49.060399568000044 ], [ -122.481695857999938, 49.060410606000033 ], [ -122.481708377999965, 49.059447431000116 ], [ -122.481700509999982, 49.058899999000111 ], [ -122.481945395999915, 49.058711954000081 ], [ -122.489479304999946, 49.059316907000117 ], [ -122.492410723999939, 49.059552739000047 ], [ -122.492672806999977, 49.059573791000098 ], [ -122.492686393, 49.059574897000083 ], [ -122.494600490999971, 49.059850200000056 ], [ -122.494708874999986, 49.059827593000101 ], [ -122.495005067999912, 49.059870559000068 ], [ -122.496244844999964, 49.06005037600012 ], [ -122.49636019399999, 49.060067099000051 ], [ -122.498180998999956, 49.060419475000089 ], [ -122.500016021999954, 49.060782774000089 ], [ -122.500318532, 49.060842638000111 ], [ -122.50058697899999, 49.060895788000067 ], [ -122.50120090499999, 49.061017326000062 ], [ -122.501470917999939, 49.06107077700009 ], [ -122.503549939999957, 49.061482299000033 ], [ -122.505306650999955, 49.061832417000041 ], [ -122.506762364999958, 49.062127655000069 ], [ -122.508287786999972, 49.062497259000054 ], [ -122.51243204699999, 49.063700492000116 ], [ -122.514772647999933, 49.064379944000102 ], [ -122.514847088999957, 49.067244198000111 ], [ -122.514278454999911, 49.06725262700008 ], [ -122.50511837, 49.067387988000057 ], [ -122.504201301999956, 49.067401500000088 ], [ -122.503827915999977, 49.067407004000131 ], [ -122.503653603999908, 49.067409288000121 ], [ -122.50099701399995, 49.067444053000116 ], [ -122.49839547199997, 49.067478051000116 ], [ -122.497865888999968, 49.067484947000082 ], [ -122.496533190999955, 49.067502305000097 ], [ -122.492731791, 49.067551804000075 ], [ -122.492726005999955, 49.066021377000062 ] ], [ [ -122.506215841999932, 49.064829363000023 ], [ -122.50624150799996, 49.064487104000172 ], [ -122.503022643999913, 49.064382334000058 ], [ -122.503058680999985, 49.063902174000056 ], [ -122.50188983299995, 49.0638641050001 ], [ -122.501902419999908, 49.063696462000053 ], [ -122.501232103999939, 49.063693567000058 ], [ -122.501234803999964, 49.063423712 ], [ -122.49877082099999, 49.063413038000085 ], [ -122.49875724899999, 49.064762314000077 ], [ -122.497935898999927, 49.06475874400013 ], [ -122.497933179999961, 49.065028599000073 ], [ -122.497808623999987, 49.065028057000085 ], [ -122.497795337999932, 49.065204811000065 ], [ -122.499494866999939, 49.065260222000063 ], [ -122.499517297999944, 49.064961668000173 ], [ -122.503355498999937, 49.065086710000053 ], [ -122.503377649999891, 49.064791561000099 ], [ -122.504568518999974, 49.064830329000138 ], [ -122.504572602999957, 49.064775890000092 ], [ -122.506215841999932, 49.064829363000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "270984698", "BldgCostT": "177137211", "sL_LossRatio": "0.766307550568139", "sL_AssetLoss": "1927696", "sL_BldgLoss": "1477208", "sL_StrLoss": "729788", "sL_NStrLoss": "747420", "sL_ContLoss": "450488", "geom_point": "0101000020E610000082386B2AAA9D5EC0C7C1114919874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.465750292999985, 49.053117310000111 ], [ -122.4670137199999, 49.053115729000041 ], [ -122.466998950999979, 49.05385129200004 ], [ -122.466997931999941, 49.053903152 ], [ -122.466996862999977, 49.053957115000088 ], [ -122.466990619999947, 49.054268778000022 ], [ -122.46717771499999, 49.055085304000031 ], [ -122.467349970999948, 49.055520031000114 ], [ -122.46736092, 49.056025202000079 ], [ -122.467359302999952, 49.056264003000116 ], [ -122.46733650499999, 49.056961808000025 ], [ -122.467263191999919, 49.057856288000039 ], [ -122.466542998999969, 49.057836407000124 ], [ -122.46642001399999, 49.057833002000017 ], [ -122.466283322, 49.057829224000052 ], [ -122.462305298, 49.057719208000087 ], [ -122.459765635999972, 49.057649023000046 ], [ -122.459767404000019, 49.057049604000028 ], [ -122.459764049999976, 49.056048989000082 ], [ -122.459766912999953, 49.055975166000081 ], [ -122.459765554999976, 49.055002508000058 ], [ -122.459699479999969, 49.054485611000082 ], [ -122.459763632999966, 49.05412717500014 ], [ -122.459762907999959, 49.054010846000025 ], [ -122.459760421999974, 49.053124696000054 ], [ -122.46347807799998, 49.053120148000083 ], [ -122.463707345999964, 49.053119849000048 ], [ -122.464309533999966, 49.05311910100005 ], [ -122.465476643999949, 49.053117651000015 ], [ -122.465750292999985, 49.053117310000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "693394047", "BldgCostT": "442363848", "sL_LossRatio": "0.749803664292027", "sL_AssetLoss": "2349801.8", "sL_BldgLoss": "1761890", "sL_StrLoss": "997468", "sL_NStrLoss": "764422", "sL_ContLoss": "587911.8", "geom_point": "0101000020E6100000EF1E2B5B98D05EC07F5D02C7D0AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.257163231999982, 49.360223546000036 ], [ -123.256725033999913, 49.360185412000128 ], [ -123.256151468999931, 49.360224016000053 ], [ -123.255898350999971, 49.360268016000113 ], [ -123.255668897999954, 49.360161592000118 ], [ -123.255251312999988, 49.359967908000094 ], [ -123.254766698999902, 49.359666588000039 ], [ -123.254292779999957, 49.359274377000119 ], [ -123.25429228, 49.35917704400002 ], [ -123.25419978799998, 49.35917724700009 ], [ -123.254185675999977, 49.359159382000037 ], [ -123.253793791999954, 49.358662990000028 ], [ -123.25363282499994, 49.358287029000074 ], [ -123.253609845999975, 49.358233379000126 ], [ -123.253581427, 49.35816703800009 ], [ -123.253527896999927, 49.35804201600012 ], [ -123.253451404999979, 49.357520502000114 ], [ -123.253484191, 49.356968397000017 ], [ -123.253535457999945, 49.35676747400003 ], [ -123.254085088999929, 49.354611597000094 ], [ -123.254111026999922, 49.35401160200005 ], [ -123.254047504999932, 49.353833980000076 ], [ -123.253930408999935, 49.353506293000102 ], [ -123.253709225999941, 49.35310345200007 ], [ -123.253688185999977, 49.353065190000059 ], [ -123.253676773000024, 49.353054098000079 ], [ -123.252887913999956, 49.352288401000088 ], [ -123.252246105999987, 49.351923581000058 ], [ -123.251474904999952, 49.351631091000058 ], [ -123.25156160899995, 49.351514493000074 ], [ -123.251674094999913, 49.351347857000071 ], [ -123.251806086999963, 49.351152343000145 ], [ -123.251856543999935, 49.351094368000091 ], [ -123.252123662, 49.350787585000091 ], [ -123.252245974999937, 49.350697030000035 ], [ -123.253657635999929, 49.350170042000059 ], [ -123.254073034999962, 49.349941945000111 ], [ -123.254348270999941, 49.349732808000077 ], [ -123.254703804999934, 49.349191589000078 ], [ -123.255061004999916, 49.348830528000057 ], [ -123.25428539399995, 49.348327598000019 ], [ -123.25397559399994, 49.348126696000094 ], [ -123.253638013999961, 49.347717281000016 ], [ -123.253537767999916, 49.34755 ], [ -123.253510203999937, 49.347365594000088 ], [ -123.253547110999961, 49.347230503000098 ], [ -123.253691025999942, 49.347101799000107 ], [ -123.254003933999982, 49.346961964000073 ], [ -123.25480067399991, 49.346605899000124 ], [ -123.254940784999988, 49.346285223000059 ], [ -123.255036063999938, 49.346001274000031 ], [ -123.255120583999897, 49.345875532000036 ], [ -123.255914482999913, 49.34529682100009 ], [ -123.256092360999986, 49.34520504200006 ], [ -123.25675623099994, 49.344862487000029 ], [ -123.256884657999962, 49.344762175000085 ], [ -123.25698724399993, 49.344609897000034 ], [ -123.256999776999947, 49.344398572000074 ], [ -123.257495321999926, 49.3443958390001 ], [ -123.258015189999981, 49.34433066400004 ], [ -123.257964614999977, 49.344140379000102 ], [ -123.257916182999949, 49.343958019000119 ], [ -123.257934027999909, 49.343540622000098 ], [ -123.257912150999942, 49.343380796000083 ], [ -123.257905195000021, 49.343330050000056 ], [ -123.257893546, 49.34325405200007 ], [ -123.257875415999948, 49.343135700000104 ], [ -123.257775201999948, 49.342969232000037 ], [ -123.257516806999917, 49.342801491000088 ], [ -123.257236390999964, 49.342726839000044 ], [ -123.256798257999932, 49.342689596000071 ], [ -123.256745469999927, 49.34265224300006 ], [ -123.256703205999955, 49.342366594000048 ], [ -123.256720314999896, 49.342263461000108 ], [ -123.256805655000022, 49.342170171000049 ], [ -123.257019562999943, 49.342135968000022 ], [ -123.257305888999966, 49.342134234000078 ], [ -123.258341159999958, 49.342311779000056 ], [ -123.258924065999963, 49.342413010000037 ], [ -123.259233813999955, 49.342425762000069 ], [ -123.259606283, 49.342441123000079 ], [ -123.259621102999986, 49.342438980000047 ], [ -123.259925496999969, 49.342395164000102 ], [ -123.26006515499995, 49.34233272500007 ], [ -123.260182732999937, 49.34228012000009 ], [ -123.26048361600003, 49.342148154000029 ], [ -123.262484482999966, 49.341703529000043 ], [ -123.263241576999974, 49.341628144000033 ], [ -123.263444555999968, 49.341639569000094 ], [ -123.263648067999924, 49.341758212000059 ], [ -123.264127917999986, 49.342136866000097 ], [ -123.264238005999985, 49.342256280000065 ], [ -123.264794749999922, 49.342023244000032 ], [ -123.264954724999924, 49.341971148000063 ], [ -123.265240490999986, 49.341867846000127 ], [ -123.265370386999948, 49.342231337000072 ], [ -123.265751539999954, 49.343582812000072 ], [ -123.265785135, 49.343729413000034 ], [ -123.26592658700001, 49.344347311 ], [ -123.265911397999915, 49.344604483000111 ], [ -123.265760182999927, 49.345184214000021 ], [ -123.265755285999958, 49.34538401800004 ], [ -123.265875873999931, 49.345791511000144 ], [ -123.265898664999952, 49.345868534000097 ], [ -123.266053516999989, 49.346322729000121 ], [ -123.266223966999959, 49.346605313000033 ], [ -123.266356445999961, 49.346739238000069 ], [ -123.266406153, 49.346782816000015 ], [ -123.267301407000019, 49.347399823000046 ], [ -123.267608360999958, 49.347608392000041 ], [ -123.267712289999977, 49.347736200000085 ], [ -123.267742588999937, 49.347852244000144 ], [ -123.267722820999907, 49.348070573000072 ], [ -123.267603290999972, 49.34839356 ], [ -123.267431376000019, 49.348625154000032 ], [ -123.266945392999943, 49.349047845000044 ], [ -123.266674078999984, 49.349284116000021 ], [ -123.26656002299994, 49.3493982950001 ], [ -123.266405166999988, 49.349634870000088 ], [ -123.26628167099993, 49.349823527000048 ], [ -123.266347266999929, 49.350390730000122 ], [ -123.266334717999968, 49.350560074000086 ], [ -123.266324751999932, 49.350694390000051 ], [ -123.26631361699999, 49.350844657000096 ], [ -123.2661971199999, 49.351185737 ], [ -123.266180723, 49.351230323000024 ], [ -123.266053972999927, 49.351209122000085 ], [ -123.264824058999963, 49.351178008000062 ], [ -123.264388427999933, 49.351284076000091 ], [ -123.264122992999916, 49.351280977000044 ], [ -123.263416122999899, 49.351155003000031 ], [ -123.26156801399992, 49.351177581000016 ], [ -123.261256580999955, 49.351181383000053 ], [ -123.260918403999966, 49.351244853 ], [ -123.260642242999964, 49.351342145000039 ], [ -123.260391306999949, 49.351430541000113 ], [ -123.259987354999922, 49.351698552000066 ], [ -123.259202027999962, 49.352456725000103 ], [ -123.25899780099995, 49.352837895000036 ], [ -123.258993104999917, 49.352917012000098 ], [ -123.259060408999957, 49.352988967000094 ], [ -123.259181948999966, 49.35305147300005 ], [ -123.259066430999951, 49.353189047000036 ], [ -123.25894216899998, 49.353428135000058 ], [ -123.258932452999929, 49.353496863000039 ], [ -123.25891147399993, 49.353644390000035 ], [ -123.258994133000016, 49.353829311000069 ], [ -123.259218439, 49.354039411000031 ], [ -123.259838119999955, 49.354382904000026 ], [ -123.260105905999978, 49.354498095000089 ], [ -123.261130636999923, 49.354938862000068 ], [ -123.261273330999984, 49.355071345000049 ], [ -123.2613589599999, 49.355150882000082 ], [ -123.261378858999933, 49.355443162000036 ], [ -123.26133516199998, 49.355599639000097 ], [ -123.261193658999943, 49.355804977000091 ], [ -123.26084275099997, 49.356129300000063 ], [ -123.260221084999969, 49.356702507000108 ], [ -123.260121976999955, 49.356889232000057 ], [ -123.259942010999978, 49.357228315000043 ], [ -123.259900387999934, 49.357306740000148 ], [ -123.259842315999947, 49.357376484000042 ], [ -123.259817414999972, 49.357406414000081 ], [ -123.259678949999952, 49.357490240000061 ], [ -123.259611126999943, 49.357516 ], [ -123.25959457, 49.357522286000155 ], [ -123.259350281999929, 49.35761510800014 ], [ -123.259210046999925, 49.35766838800005 ], [ -123.259090635999897, 49.35779625800005 ], [ -123.259049851999961, 49.357839917000014 ], [ -123.259004943999969, 49.358519814000054 ], [ -123.25899899099997, 49.358609569000116 ], [ -123.258970303999931, 49.359043739000064 ], [ -123.258982001999968, 49.359195326000098 ], [ -123.259023575999947, 49.359608811 ], [ -123.25909634599995, 49.359774546000025 ], [ -123.259150398999964, 49.359824376000077 ], [ -123.25919685199996, 49.359867148000035 ], [ -123.259406311999925, 49.359956229000062 ], [ -123.259767993999944, 49.360055444000061 ], [ -123.25999052, 49.360133127000033 ], [ -123.260071986999918, 49.360198211000039 ], [ -123.260115199999987, 49.360282172000055 ], [ -123.26014263499998, 49.360470179000046 ], [ -123.26012099399999, 49.360602897000057 ], [ -123.260098183999943, 49.360630805000035 ], [ -123.259987443999975, 49.36076611700004 ], [ -123.259921358999961, 49.360796872000058 ], [ -123.259882328999964, 49.360815027000051 ], [ -123.259869975999976, 49.360820771000085 ], [ -123.259851493999975, 49.360821246000157 ], [ -123.259729324999924, 49.360824416000106 ], [ -123.259291376999968, 49.360618819000081 ], [ -123.259021972999932, 49.360566048000116 ], [ -123.258230436999966, 49.360496460000057 ], [ -123.258100097999929, 49.360473958000121 ], [ -123.257876169000014, 49.36043523700004 ], [ -123.257656419999989, 49.360367382000042 ], [ -123.257612556999973, 49.360353816000064 ], [ -123.257163231999982, 49.360223546000036 ] ], [ [ -123.255633558999989, 49.354856451000046 ], [ -123.255665557999976, 49.354316677000057 ], [ -123.25550651399999, 49.354317028000018 ], [ -123.255509309999951, 49.35485672700004 ], [ -123.255633558999989, 49.354856451000046 ] ], [ [ -123.258780383999948, 49.347530479000106 ], [ -123.258402871, 49.347497858000054 ], [ -123.257838352999954, 49.347619522000087 ], [ -123.257829397999942, 49.347681789000085 ], [ -123.257742144999924, 49.348290693000081 ], [ -123.257765167999935, 49.348366930000047 ], [ -123.257778650999981, 49.348365113000035 ], [ -123.25778477899999, 49.3483643020001 ], [ -123.258143879, 49.348316180000076 ], [ -123.258158483999978, 49.348318116000065 ], [ -123.258246317999976, 49.348329601000088 ], [ -123.25830942099995, 49.348378929 ], [ -123.258434663999978, 49.348634260000097 ], [ -123.258474117, 49.348672184000073 ], [ -123.258497170999988, 49.348694372000089 ], [ -123.258593880999953, 49.348734665000038 ], [ -123.258812558999935, 49.348760020000107 ], [ -123.258951065999966, 49.348745516000079 ], [ -123.25940478499993, 49.348566105000081 ], [ -123.259492723999983, 49.348475580000134 ], [ -123.259510034999963, 49.348368838000034 ], [ -123.259415756999914, 49.348148513000112 ], [ -123.259269406000016, 49.347853926000035 ], [ -123.25905185199997, 49.347553926000053 ], [ -123.258780383999948, 49.347530479000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9437083", "BldgCostT": "6508333", "sL_LossRatio": "0.884921899904367", "sL_AssetLoss": "31370", "sL_BldgLoss": "27760", "sL_StrLoss": "20410", "sL_NStrLoss": "7350", "sL_ContLoss": "3610", "geom_point": "0101000020E61000006107637E8DD05EC04CD43D788EAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.258158483999978, 49.348318116000065 ], [ -123.258143879, 49.348316180000076 ], [ -123.25778477899999, 49.3483643020001 ], [ -123.257778650999981, 49.348365113000035 ], [ -123.257765167999935, 49.348366930000047 ], [ -123.257742144999924, 49.348290693000081 ], [ -123.257829397999942, 49.347681789000085 ], [ -123.257838352999954, 49.347619522000087 ], [ -123.258402871, 49.347497858000054 ], [ -123.258780383999948, 49.347530479000106 ], [ -123.25905185199997, 49.347553926000053 ], [ -123.259269406000016, 49.347853926000035 ], [ -123.259415756999914, 49.348148513000112 ], [ -123.259510034999963, 49.348368838000034 ], [ -123.259492723999983, 49.348475580000134 ], [ -123.25940478499993, 49.348566105000081 ], [ -123.258951065999966, 49.348745516000079 ], [ -123.258812558999935, 49.348760020000107 ], [ -123.258593880999953, 49.348734665000038 ], [ -123.258497170999988, 49.348694372000089 ], [ -123.258474117, 49.348672184000073 ], [ -123.258434663999978, 49.348634260000097 ], [ -123.25830942099995, 49.348378929 ], [ -123.258246317999976, 49.348329601000088 ], [ -123.258158483999978, 49.348318116000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "572103368", "BldgCostT": "359421111", "sL_LossRatio": "0.706980200960415", "sL_AssetLoss": "2138033", "sL_BldgLoss": "1511547", "sL_StrLoss": "674690", "sL_NStrLoss": "836857", "sL_ContLoss": "626486", "geom_point": "0101000020E61000001B86B096D2C75EC078C15B18D0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11947840699996, 49.279049094000044 ], [ -123.121081008999951, 49.277982095000034 ], [ -123.121562851999983, 49.278302840000059 ], [ -123.122011398999987, 49.278601407000011 ], [ -123.122495067999978, 49.278907308000107 ], [ -123.123040205999985, 49.279252096000086 ], [ -123.123533937999952, 49.279576760000069 ], [ -123.124039690999922, 49.27990929200012 ], [ -123.124983413, 49.28053610500006 ], [ -123.123372995999929, 49.281574004000035 ], [ -123.123204892999979, 49.281468315000055 ], [ -123.122742063999937, 49.281177305000043 ], [ -123.122436479, 49.280985195000078 ], [ -123.121909498999969, 49.280651773000052 ], [ -123.121393202999954, 49.280325081000043 ], [ -123.120871618999971, 49.279963782000053 ], [ -123.120414196999974, 49.27964690200006 ], [ -123.119923421999943, 49.279333387000072 ], [ -123.11947840699996, 49.279049094000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "551731584", "BldgCostT": "320100148", "sL_LossRatio": "0.592085672737805", "sL_AssetLoss": "2651672", "sL_BldgLoss": "1570017", "sL_StrLoss": "427009", "sL_NStrLoss": "1143008", "sL_ContLoss": "1081655", "geom_point": "0101000020E610000054B741ED37C75EC0A74AFF58A9A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10953958, 49.289512830000092 ], [ -123.109539010000034, 49.289255482000037 ], [ -123.109497900999941, 49.289243015000103 ], [ -123.109126431000021, 49.28924336700009 ], [ -123.109126180999951, 49.289130281 ], [ -123.108771898999962, 49.289022836000072 ], [ -123.112670862999948, 49.287621976000054 ], [ -123.112767112999975, 49.287514002000151 ], [ -123.112422569000017, 49.287361157000113 ], [ -123.112422547000023, 49.287351221000037 ], [ -123.112400219999955, 49.287351242000028 ], [ -123.111608559999979, 49.287000042000031 ], [ -123.111596669999955, 49.286995052000101 ], [ -123.111596463999959, 49.286903473000052 ], [ -123.11159625699996, 49.286812312000031 ], [ -123.111392838999933, 49.286812508000025 ], [ -123.111183725999979, 49.286812709000088 ], [ -123.111183746999984, 49.286821727000117 ], [ -123.111089701999973, 49.286782251000034 ], [ -123.110145733999957, 49.287083559000102 ], [ -123.109984318000016, 49.287083713000065 ], [ -123.110010766999935, 49.287126639000057 ], [ -123.109971800999944, 49.287139076000102 ], [ -123.109304435999903, 49.287308062000065 ], [ -123.109210936999972, 49.287157762000113 ], [ -123.108833617999935, 49.287246571000097 ], [ -123.108799383999923, 49.287237753000113 ], [ -123.10870536899999, 49.287069949000042 ], [ -123.108706830999935, 49.287065046000166 ], [ -123.109025836999976, 49.286985963000092 ], [ -123.108914236999908, 49.286814871000047 ], [ -123.108781361999931, 49.286814996000011 ], [ -123.108832493999955, 49.286643449000017 ], [ -123.109548436999916, 49.286355773000054 ], [ -123.109016550999954, 49.286226156000083 ], [ -123.108707436999978, 49.286314010000083 ], [ -123.108707410999926, 49.286302029000062 ], [ -123.108872903999938, 49.286043291000041 ], [ -123.108842324, 49.285816197000074 ], [ -123.10881258299996, 49.285595254000086 ], [ -123.108785852, 49.285396912000053 ], [ -123.108757435999948, 49.285185714000072 ], [ -123.108728010999968, 49.284967170000122 ], [ -123.108675616999975, 49.284644693000125 ], [ -123.108822898999961, 49.284310796000042 ], [ -123.110891352999928, 49.284703093000068 ], [ -123.110918799999979, 49.284708305000031 ], [ -123.111433169999927, 49.284364352000061 ], [ -123.111908411999977, 49.284046599000078 ], [ -123.112429538999891, 49.283703129000052 ], [ -123.112864411999951, 49.283416500000094 ], [ -123.113830103999973, 49.284019698000129 ], [ -123.114846284999913, 49.284652098000016 ], [ -123.115390028999983, 49.284992763000048 ], [ -123.115844995999936, 49.285277810000053 ], [ -123.116380542999934, 49.285612680000014 ], [ -123.116863722999966, 49.285914807000083 ], [ -123.117889006999917, 49.286556393000062 ], [ -123.116959997999984, 49.287173806000091 ], [ -123.11642081899997, 49.287519012000068 ], [ -123.116194220999972, 49.287664096000057 ], [ -123.116100815999957, 49.287722661000075 ], [ -123.115708162999937, 49.287968825000057 ], [ -123.115483287999922, 49.28810980300004 ], [ -123.115640191999915, 49.288195102000017 ], [ -123.115768881999912, 49.288268808000105 ], [ -123.115824041999986, 49.288288268000073 ], [ -123.115438538, 49.288361585000082 ], [ -123.115333168999939, 49.28842777300008 ], [ -123.114922854999961, 49.288428182000111 ], [ -123.11494623, 49.288320895000055 ], [ -123.114899983999962, 49.288305340000093 ], [ -123.114899641999955, 49.288158349000085 ], [ -123.114464240999936, 49.288158782000032 ], [ -123.114201970999957, 49.288070568000094 ], [ -123.11405055100002, 49.288159191000027 ], [ -123.113814095999942, 49.288159424000085 ], [ -123.113662155000014, 49.288220424000052 ], [ -123.11366240299995, 49.28832803300002 ], [ -123.113283782999943, 49.288429800000081 ], [ -123.113250090999927, 49.288429833000031 ], [ -123.113250111999932, 49.288438850000077 ], [ -123.113160021999974, 49.288463065000045 ], [ -123.113250390999937, 49.288560829000069 ], [ -123.113251304999963, 49.288959571000106 ], [ -123.113222456999949, 49.288969570000077 ], [ -123.112426228999965, 49.28897034800012 ], [ -123.11242684199999, 49.289240202000045 ], [ -123.111118780999959, 49.289241467000174 ], [ -123.110776943999923, 49.289378691000067 ], [ -123.11077724099998, 49.289511651000055 ], [ -123.110488674999957, 49.289511927000063 ], [ -123.110434256999952, 49.289435470000065 ], [ -123.109744741000014, 49.289512635000072 ], [ -123.10953958, 49.289512830000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251264268", "BldgCostT": "166314874", "sL_LossRatio": "0.827839087382424", "sL_AssetLoss": "564530", "sL_BldgLoss": "467340", "sL_StrLoss": "273400", "sL_NStrLoss": "193940", "sL_ContLoss": "97190", "geom_point": "0101000020E61000002F96095CAAC75EC02F6BEE2A9CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11844860799999, 49.278437909000139 ], [ -123.119081668999939, 49.278018456000062 ], [ -123.120093897999965, 49.277347788000021 ], [ -123.120593138999965, 49.277668625000061 ], [ -123.12069885699999, 49.277736559000033 ], [ -123.121081008999951, 49.277982095000034 ], [ -123.11947840699996, 49.279049094000044 ], [ -123.119062609999943, 49.278802319000071 ], [ -123.118981812999948, 49.278754390000067 ], [ -123.11844860799999, 49.278437909000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111409934", "BldgCostT": "71791896", "sL_LossRatio": "0.717091673175672", "sL_AssetLoss": "871869", "sL_BldgLoss": "625210", "sL_StrLoss": "266210", "sL_NStrLoss": "359000", "sL_ContLoss": "246659", "geom_point": "0101000020E6100000D4F387C9C8C75EC0FCF24408F6A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119790000999927, 49.272991893000018 ], [ -123.121398191999944, 49.271987304000035 ], [ -123.12268267899999, 49.272832199000085 ], [ -123.123597975999971, 49.273404203000084 ], [ -123.123685855999895, 49.273458339000101 ], [ -123.123736991999962, 49.273489901000069 ], [ -123.122763404999915, 49.273748966000085 ], [ -123.121487600999956, 49.274088407000143 ], [ -123.121444250999943, 49.274100758000017 ], [ -123.121429343999964, 49.274104985000051 ], [ -123.121400901999934, 49.274113107000105 ], [ -123.121235511999913, 49.274009602000078 ], [ -123.120002892999963, 49.27317049800007 ], [ -123.120001701, 49.27312369200007 ], [ -123.119790000999927, 49.272991893000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "690882283", "BldgCostT": "434110595", "sL_LossRatio": "0.686025583152439", "sL_AssetLoss": "5004309", "sL_BldgLoss": "3433084", "sL_StrLoss": "1333300", "sL_NStrLoss": "2099784", "sL_ContLoss": "1571225", "geom_point": "0101000020E6100000C1A3A6C0B6C75EC0D6C764ED46A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119985095999965, 49.274495915000102 ], [ -123.121400901999934, 49.274113107000105 ], [ -123.121539688000013, 49.274165607999983 ], [ -123.121567387999974, 49.274176093000037 ], [ -123.121742967999921, 49.2742835560001 ], [ -123.122136593999954, 49.274524504000055 ], [ -123.122664685999979, 49.274871794000092 ], [ -123.12295151099994, 49.275048373000054 ], [ -123.123273473999959, 49.275246598000116 ], [ -123.121673787999953, 49.276291102000059 ], [ -123.120093897999965, 49.277347788000021 ], [ -123.119511565999986, 49.276965682000103 ], [ -123.118973242999942, 49.276628865000099 ], [ -123.118217634999951, 49.276155431000099 ], [ -123.118162446999975, 49.276120821000077 ], [ -123.11803164199992, 49.27603626500008 ], [ -123.118120655, 49.275974709000096 ], [ -123.11920385699996, 49.274619209000051 ], [ -123.119415323999974, 49.274599625000079 ], [ -123.119985095999965, 49.274495915000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277980413", "BldgCostT": "183834078", "sL_LossRatio": "0.780501521513039", "sL_AssetLoss": "3894150", "sL_BldgLoss": "3039390", "sL_StrLoss": "1565160", "sL_NStrLoss": "1474230", "sL_ContLoss": "854760", "geom_point": "0101000020E61000009E13ADA2A0C75EC0CC3358060FA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117091000999935, 49.274191696000116 ], [ -123.117293307999944, 49.273412594000042 ], [ -123.11758971099998, 49.273468538000031 ], [ -123.117731993999939, 49.273495406000073 ], [ -123.118356085999949, 49.273512104000083 ], [ -123.118880205999943, 49.273414405 ], [ -123.119403206999976, 49.273202289000047 ], [ -123.119790000999927, 49.272991893000018 ], [ -123.120001701, 49.27312369200007 ], [ -123.120002892999963, 49.27317049800007 ], [ -123.121235511999913, 49.274009602000078 ], [ -123.121400901999934, 49.274113107000105 ], [ -123.119985095999965, 49.274495915000102 ], [ -123.119415323999974, 49.274599625000079 ], [ -123.11920385699996, 49.274619209000051 ], [ -123.119316284000021, 49.274533906000066 ], [ -123.119012712999961, 49.27448295199999 ], [ -123.11890161599996, 49.274464300000048 ], [ -123.118542503999961, 49.274426810000122 ], [ -123.117091000999935, 49.274191696000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108243539", "BldgCostT": "68898047", "sL_LossRatio": "0.85506166708054", "sL_AssetLoss": "241620", "sL_BldgLoss": "206600", "sL_StrLoss": "130110", "sL_NStrLoss": "76490", "sL_ContLoss": "35020", "geom_point": "0101000020E61000002AF6FA078FC75EC02140658034A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117518588999985, 49.274452584000137 ], [ -123.117091000999935, 49.274191696000116 ], [ -123.118542503999961, 49.274426810000122 ], [ -123.11890161599996, 49.274464300000048 ], [ -123.119012712999961, 49.27448295199999 ], [ -123.119316284000021, 49.274533906000066 ], [ -123.11920385699996, 49.274619209000051 ], [ -123.118120655, 49.275974709000096 ], [ -123.11803164199992, 49.27603626500008 ], [ -123.117180611999956, 49.275533061000068 ], [ -123.117146252999987, 49.275512743000078 ], [ -123.117315687999948, 49.275373128000062 ], [ -123.117511279, 49.275055908000056 ], [ -123.117518588999985, 49.274452584000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94148500", "BldgCostT": "61510000", "sL_LossRatio": "0.767770827409724", "sL_AssetLoss": "281360", "sL_BldgLoss": "216020", "sL_StrLoss": "104180", "sL_NStrLoss": "111840", "sL_ContLoss": "65340", "geom_point": "0101000020E6100000A2FC492175C75EC0EBFF98AD27A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11542881499993, 49.274073400000063 ], [ -123.116102910999942, 49.2740598930001 ], [ -123.116379397999964, 49.27407719800005 ], [ -123.117091000999935, 49.274191696000116 ], [ -123.117518588999985, 49.274452584000137 ], [ -123.117511279, 49.275055908000056 ], [ -123.117315687999948, 49.275373128000062 ], [ -123.117146252999987, 49.275512743000078 ], [ -123.117084497999926, 49.275555190000041 ], [ -123.116905792999887, 49.27544689100008 ], [ -123.115980206999922, 49.274885290000057 ], [ -123.115365997999987, 49.274486113000066 ], [ -123.11501701899999, 49.274176817000068 ], [ -123.11513811499999, 49.27415209800003 ], [ -123.11542881499993, 49.274073400000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22805394", "BldgCostT": "12896523", "sL_LossRatio": "0.625067024128686", "sL_AssetLoss": "447600", "sL_BldgLoss": "279780", "sL_StrLoss": "115770", "sL_NStrLoss": "164010", "sL_ContLoss": "167820", "geom_point": "0101000020E6100000602A2E756DC75EC0FD764CBC07A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114874872999962, 49.274031598000128 ], [ -123.114814073999952, 49.273860643000049 ], [ -123.11489209799997, 49.273533960000144 ], [ -123.115076099999911, 49.273381256000029 ], [ -123.11538333599999, 49.273213817000098 ], [ -123.116141709999937, 49.27317103400005 ], [ -123.116727105, 49.273236203000074 ], [ -123.117293307999944, 49.273412594000042 ], [ -123.117091000999935, 49.274191696000116 ], [ -123.116379397999964, 49.27407719800005 ], [ -123.116102910999942, 49.2740598930001 ], [ -123.11542881499993, 49.274073400000063 ], [ -123.11513811499999, 49.27415209800003 ], [ -123.11501701899999, 49.274176817000068 ], [ -123.114874872999962, 49.274031598000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223794750", "BldgCostT": "153570000", "sL_LossRatio": "0.804866249601443", "sL_AssetLoss": "727624", "sL_BldgLoss": "585640", "sL_StrLoss": "264340", "sL_NStrLoss": "321300", "sL_ContLoss": "141984", "geom_point": "0101000020E6100000DA5F975D47C85EC07FAAE18D12A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128224518999957, 49.289005200000119 ], [ -123.128861581999956, 49.288594294000106 ], [ -123.130033197, 49.289362209000082 ], [ -123.131232901999923, 49.290144385000104 ], [ -123.130597302999917, 49.290575189000059 ], [ -123.129019497999963, 49.290039604000157 ], [ -123.127447312999976, 49.289568202000076 ], [ -123.127761014000015, 49.289340948000053 ], [ -123.128224518999957, 49.289005200000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74504750", "BldgCostT": "51350000", "sL_LossRatio": "0.790595074933039", "sL_AssetLoss": "223266", "sL_BldgLoss": "176513", "sL_StrLoss": "100590", "sL_NStrLoss": "75923", "sL_ContLoss": "46753", "geom_point": "0101000020E6100000EF1E7FED49C85EC0F9ACDF0A30A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128394796999913, 49.290471586000088 ], [ -123.128498335999922, 49.290400006 ], [ -123.129019497999963, 49.290039604000157 ], [ -123.130597302999917, 49.290575189000059 ], [ -123.12981859300001, 49.291075990000088 ], [ -123.129246800999923, 49.290696900000121 ], [ -123.128394796999913, 49.290471586000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "278005561", "BldgCostT": "181788190", "sL_LossRatio": "0.738546917054797", "sL_AssetLoss": "1692732", "sL_BldgLoss": "1250162", "sL_StrLoss": "522882", "sL_NStrLoss": "727280", "sL_ContLoss": "442570", "geom_point": "0101000020E61000000B0CF6B22FC85EC0D4B74040C6A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126425280999982, 49.28637147200002 ], [ -123.126958092, 49.285973099000088 ], [ -123.128536904000015, 49.287001380000056 ], [ -123.129948015999972, 49.287918903000111 ], [ -123.129344165999925, 49.288294300000075 ], [ -123.128861581999956, 49.288594294000106 ], [ -123.127469212999927, 49.28772859400005 ], [ -123.125920415999957, 49.286748910000028 ], [ -123.126425280999982, 49.28637147200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107620876", "BldgCostT": "70944614", "sL_LossRatio": "0.673528622240118", "sL_AssetLoss": "596040", "sL_BldgLoss": "401450", "sL_StrLoss": "136400", "sL_NStrLoss": "265050", "sL_ContLoss": "194590", "geom_point": "0101000020E6100000EBA2CFE42EC85EC0526D6040E9A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126873623, 49.288136110000053 ], [ -123.127469212999927, 49.28772859400005 ], [ -123.128861581999956, 49.288594294000106 ], [ -123.128224518999957, 49.289005200000119 ], [ -123.126873623, 49.288136110000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104254833", "BldgCostT": "67038333", "sL_LossRatio": "0.679347251926856", "sL_AssetLoss": "425953", "sL_BldgLoss": "289370", "sL_StrLoss": "113930", "sL_NStrLoss": "175440", "sL_ContLoss": "136583", "geom_point": "0101000020E610000012EDAEDC20C85EC0B6A1C5C6FAA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125799691999973, 49.288873085000056 ], [ -123.126329159999955, 49.288509763000057 ], [ -123.126873623, 49.288136110000053 ], [ -123.128224518999957, 49.289005200000119 ], [ -123.127761014000015, 49.289340948000053 ], [ -123.127447312999976, 49.289568202000076 ], [ -123.126187494999968, 49.289204106000092 ], [ -123.125799691999973, 49.288873085000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85135886", "BldgCostT": "56657079", "sL_LossRatio": "0.834331896149467", "sL_AssetLoss": "214308", "sL_BldgLoss": "178804", "sL_StrLoss": "104300", "sL_NStrLoss": "74504", "sL_ContLoss": "35504", "geom_point": "0101000020E6100000DE9C29F816C85EC091CD13D7CAA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125330212, 49.287135804000094 ], [ -123.125920415999957, 49.286748910000028 ], [ -123.127469212999927, 49.28772859400005 ], [ -123.126873623, 49.288136110000053 ], [ -123.125330212, 49.287135804000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "731948396", "BldgCostT": "468796990", "sL_LossRatio": "0.697424262017563", "sL_AssetLoss": "5103780", "sL_BldgLoss": "3559500", "sL_StrLoss": "1425170", "sL_NStrLoss": "2134330", "sL_ContLoss": "1544280", "geom_point": "0101000020E61000004197D45CF0C75EC00129807B81A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122213409000011, 49.283662011000111 ], [ -123.122803897999987, 49.283281891000101 ], [ -123.124848301999933, 49.28459919200003 ], [ -123.126958092, 49.285973099000088 ], [ -123.126425280999982, 49.28637147200002 ], [ -123.125920415999957, 49.286748910000028 ], [ -123.125330212, 49.287135804000094 ], [ -123.123132092, 49.28572350000011 ], [ -123.121097009999929, 49.284409105000059 ], [ -123.121665815999975, 49.284014507000101 ], [ -123.122040265999942, 49.28377347100006 ], [ -123.122213409000011, 49.283662011000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130682917", "BldgCostT": "89916667", "sL_LossRatio": "0.832107428152704", "sL_AssetLoss": "1080834", "sL_BldgLoss": "899370", "sL_StrLoss": "540070", "sL_NStrLoss": "359300", "sL_ContLoss": "181464", "geom_point": "0101000020E6100000E996FCD336CC5EC0918D0FCC34954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.190211819999917, 49.166337054000039 ], [ -123.190216359999951, 49.165967865000034 ], [ -123.18964537, 49.165959033000071 ], [ -123.18911522099998, 49.165950796000132 ], [ -123.18841094899993, 49.165944682000031 ], [ -123.188079384999938, 49.165941810000085 ], [ -123.187824029999931, 49.16594214500001 ], [ -123.186798892999946, 49.1659435 ], [ -123.186202186999935, 49.16593856100009 ], [ -123.185737071999981, 49.165934646000046 ], [ -123.18464115899998, 49.165922223000067 ], [ -123.184595695, 49.165359814000091 ], [ -123.18452421399995, 49.165339917000068 ], [ -123.184505834999953, 49.165311958000117 ], [ -123.184494107999939, 49.165294088000131 ], [ -123.183465891999901, 49.165296031 ], [ -123.183453115999953, 49.163514701000111 ], [ -123.184591015999928, 49.163512956000012 ], [ -123.184576867999965, 49.163179273000026 ], [ -123.18435350699994, 49.162952709000116 ], [ -123.184542887999925, 49.162835210000061 ], [ -123.18468252, 49.162794694000098 ], [ -123.186862695999977, 49.162794715000103 ], [ -123.188097234999972, 49.162794718000093 ], [ -123.188543886999952, 49.162794691000023 ], [ -123.189386794999962, 49.162796 ], [ -123.193409335999917, 49.16297233900012 ], [ -123.19486828499997, 49.16304685700004 ], [ -123.195054935999948, 49.16530699000004 ], [ -123.195414936999967, 49.167653887000093 ], [ -123.196386509999968, 49.169444485000092 ], [ -123.196869063999941, 49.170150501000116 ], [ -123.191706502, 49.170143398000036 ], [ -123.191769181000012, 49.1694234 ], [ -123.191856407999978, 49.168727587000014 ], [ -123.191906179999975, 49.168289290000097 ], [ -123.191886614999987, 49.168159901000067 ], [ -123.19181039599998, 49.168059692000078 ], [ -123.191424795999936, 49.167862283000062 ], [ -123.191877898999948, 49.167424329000035 ], [ -123.191892114999945, 49.167410602000103 ], [ -123.192033795999961, 49.167107080000036 ], [ -123.191585916999927, 49.167078275000073 ], [ -123.19034242399999, 49.166490854000067 ], [ -123.190211819999917, 49.166337054000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159741123", "BldgCostT": "109638706", "sL_LossRatio": "0.82845982663907", "sL_AssetLoss": "1285180", "sL_BldgLoss": "1064720", "sL_StrLoss": "651680", "sL_NStrLoss": "413040", "sL_ContLoss": "220460", "geom_point": "0101000020E6100000FD62842A14CC5EC0E18311DA76954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18964537, 49.165959033000071 ], [ -123.190216359999951, 49.165967865000034 ], [ -123.190211819999917, 49.166337054000039 ], [ -123.19034242399999, 49.166490854000067 ], [ -123.191585916999927, 49.167078275000073 ], [ -123.192033795999961, 49.167107080000036 ], [ -123.191892114999945, 49.167410602000103 ], [ -123.191877898999948, 49.167424329000035 ], [ -123.191424795999936, 49.167862283000062 ], [ -123.19181039599998, 49.168059692000078 ], [ -123.191886614999987, 49.168159901000067 ], [ -123.191906179999975, 49.168289290000097 ], [ -123.191856407999978, 49.168727587000014 ], [ -123.191769181000012, 49.1694234 ], [ -123.191706502, 49.170143398000036 ], [ -123.189573610999929, 49.170137306000065 ], [ -123.189533698999981, 49.169891203000077 ], [ -123.189440422999922, 49.169687007000064 ], [ -123.189310300999921, 49.169526786000098 ], [ -123.189172797999959, 49.169420510000059 ], [ -123.18882639099999, 49.169231297000096 ], [ -123.187367013999932, 49.168540094000136 ], [ -123.185922006999945, 49.167861863000027 ], [ -123.185002426999972, 49.167404533000095 ], [ -123.184725027999974, 49.167140547000066 ], [ -123.184623669999937, 49.166867642000085 ], [ -123.1846320399999, 49.166457069000053 ], [ -123.18464115899998, 49.165922223000067 ], [ -123.185737071999981, 49.165934646000046 ], [ -123.186202186999935, 49.16593856100009 ], [ -123.186798892999946, 49.1659435 ], [ -123.187824029999931, 49.16594214500001 ], [ -123.188079384999938, 49.165941810000085 ], [ -123.18841094899993, 49.165944682000031 ], [ -123.18911522099998, 49.165950796000132 ], [ -123.18964537, 49.165959033000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233134540", "BldgCostT": "138898048", "sL_LossRatio": "0.696269256247269", "sL_AssetLoss": "2128530", "sL_BldgLoss": "1482030", "sL_StrLoss": "718310", "sL_NStrLoss": "763720", "sL_ContLoss": "646500", "geom_point": "0101000020E610000008BB9CD0B3CB5EC00354CDE650954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18121721299994, 49.165914588000064 ], [ -123.181211995999931, 49.16476504900006 ], [ -123.181208639999952, 49.164027433000086 ], [ -123.181203214999968, 49.162822609000109 ], [ -123.181669500999959, 49.162795989000074 ], [ -123.181787516000028, 49.162796102000087 ], [ -123.183835208999966, 49.162797695000094 ], [ -123.184126384999942, 49.162854892000048 ], [ -123.184156128999987, 49.162867708000128 ], [ -123.18435350699994, 49.162952709000116 ], [ -123.184576867999965, 49.163179273000026 ], [ -123.184591015999928, 49.163512956000012 ], [ -123.183453115999953, 49.163514701000111 ], [ -123.183465891999901, 49.165296031 ], [ -123.184494107999939, 49.165294088000131 ], [ -123.184505834999953, 49.165311958000117 ], [ -123.18452421399995, 49.165339917000068 ], [ -123.184595695, 49.165359814000091 ], [ -123.18464115899998, 49.165922223000067 ], [ -123.1846320399999, 49.166457069000053 ], [ -123.184623669999937, 49.166867642000085 ], [ -123.184725027999974, 49.167140547000066 ], [ -123.185002426999972, 49.167404533000095 ], [ -123.185922006999945, 49.167861863000027 ], [ -123.185225202999987, 49.168434589000078 ], [ -123.184660296999965, 49.168752209000047 ], [ -123.18413241199994, 49.169048311000061 ], [ -123.183718109999987, 49.169279805000066 ], [ -123.183148702999958, 49.169785608000097 ], [ -123.182944497999983, 49.169919891000035 ], [ -123.182672075999946, 49.170025392000099 ], [ -123.18240090799999, 49.170089406000137 ], [ -123.182148194999982, 49.170119797000019 ], [ -123.182074775999979, 49.170120765000064 ], [ -123.18123574199997, 49.170131924000046 ], [ -123.18122627399994, 49.16798536500005 ], [ -123.181222847999948, 49.167202782000111 ], [ -123.18121721299994, 49.165914588000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63615501", "BldgCostT": "40715001", "sL_LossRatio": "0.709331104243379", "sL_AssetLoss": "1007287", "sL_BldgLoss": "714500", "sL_StrLoss": "330280", "sL_NStrLoss": "384220", "sL_ContLoss": "292787", "geom_point": "0101000020E6100000D1E0538C75CB5EC07155764D0A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.180444400999974, 49.162880215000072 ], [ -123.181203214999968, 49.162822609000109 ], [ -123.181208639999952, 49.164027433000086 ], [ -123.181211995999931, 49.16476504900006 ], [ -123.18121721299994, 49.165914588000064 ], [ -123.179972710999934, 49.165911785000063 ], [ -123.179794602999962, 49.165909784000092 ], [ -123.176943423999916, 49.165906206000066 ], [ -123.176944728999928, 49.164654681000037 ], [ -123.176944845999941, 49.164528684000089 ], [ -123.176945400999955, 49.164021710000014 ], [ -123.176737291999984, 49.163385711000139 ], [ -123.176683285999943, 49.162876197000053 ], [ -123.180444400999974, 49.162880215000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.716131064902331", "sL_AssetLoss": "31740", "sL_BldgLoss": "22730", "sL_StrLoss": "9840", "sL_NStrLoss": "12890", "sL_ContLoss": "9010", "geom_point": "0101000020E61000000D3CEFAD25C65EC03A8910706B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093920394999941, 49.105292303000077 ], [ -123.094671813999966, 49.104877905000123 ], [ -123.094561989999974, 49.104815209 ], [ -123.094097094999981, 49.105094295000065 ], [ -123.093932694999978, 49.105058713000091 ], [ -123.094027688999915, 49.104635689000084 ], [ -123.094327389999961, 49.104231300000038 ], [ -123.09438238199999, 49.10388949400005 ], [ -123.094697792999909, 49.103700002000032 ], [ -123.095732287999937, 49.102621728000038 ], [ -123.098103958999943, 49.102685769000082 ], [ -123.097998794999953, 49.104373106000025 ], [ -123.097576499999946, 49.104380811000041 ], [ -123.096672383999973, 49.104489004000072 ], [ -123.096056083999954, 49.104732598000091 ], [ -123.095191696999947, 49.1047340040001 ], [ -123.094821877999962, 49.104877893000051 ], [ -123.09484949499992, 49.104977605000059 ], [ -123.095110687000016, 49.10507579500009 ], [ -123.095686993999948, 49.105011700000048 ], [ -123.097618100999938, 49.104543203000105 ], [ -123.097987884999952, 49.104548142000048 ], [ -123.097879712999941, 49.106283589000078 ], [ -123.09740415399996, 49.10627075100011 ], [ -123.09737116499997, 49.1067998830001 ], [ -123.093442392999975, 49.106651009000053 ], [ -123.093592403999963, 49.106029995000078 ], [ -123.093892184999959, 49.105580003000064 ], [ -123.093920394999941, 49.105292303000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.71740569159497", "sL_AssetLoss": "15110", "sL_BldgLoss": "10840", "sL_StrLoss": "4740", "sL_NStrLoss": "6100", "sL_ContLoss": "4270", "geom_point": "0101000020E6100000B573B3A2BACA5EC08DB1D9B2F88E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16817901499995, 49.118036096000033 ], [ -123.166739910999965, 49.117543403000056 ], [ -123.165874504999948, 49.116994996000116 ], [ -123.163013545999945, 49.116194293000021 ], [ -123.163012681999973, 49.115930355000067 ], [ -123.163834903999913, 49.115929191000106 ], [ -123.163834014999978, 49.115659330000049 ], [ -123.166172965999948, 49.115655986000085 ], [ -123.167721899999947, 49.116273003000067 ], [ -123.170451395999976, 49.117096105 ], [ -123.171906101999951, 49.117363035000032 ], [ -123.171722876999922, 49.117997848000101 ], [ -123.17131840899998, 49.117850991000047 ], [ -123.171084510999961, 49.117833890000099 ], [ -123.17093608799992, 49.118229793000062 ], [ -123.170578985999953, 49.118302506000127 ], [ -123.169399297999945, 49.118295312000093 ], [ -123.16817901499995, 49.118036096000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7688750", "BldgCostT": "4775000", "sL_LossRatio": "0.626767954420511", "sL_AssetLoss": "200090", "sL_BldgLoss": "125410", "sL_StrLoss": "69820", "sL_NStrLoss": "55590", "sL_ContLoss": "74680", "geom_point": "0101000020E610000038C7B1DCEFC55EC06FCEB151908F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080784987999948, 49.126083388000069 ], [ -123.079635246999928, 49.125155312000047 ], [ -123.078319957999966, 49.124093571000067 ], [ -123.077944594999963, 49.12379054400008 ], [ -123.077934943999978, 49.123782754000082 ], [ -123.078054801999912, 49.123735784000047 ], [ -123.078058262999946, 49.123734853000016 ], [ -123.079630416999947, 49.123311398000077 ], [ -123.079946208, 49.12328429300004 ], [ -123.080178693999954, 49.123626200000068 ], [ -123.080316392000015, 49.123571994000038 ], [ -123.080411797999972, 49.123140510000034 ], [ -123.082096199999967, 49.122636300000131 ], [ -123.082727689999942, 49.12256371000008 ], [ -123.08341208299997, 49.122580798000072 ], [ -123.083783294999989, 49.122662003000087 ], [ -123.08427598599998, 49.122895508000063 ], [ -123.084277579999963, 49.123173296000068 ], [ -123.08412560699999, 49.123381205000072 ], [ -123.083592687999939, 49.123668897000051 ], [ -123.083456203999944, 49.123849805000091 ], [ -123.08454158699999, 49.125215600000097 ], [ -123.084759591999969, 49.125377910000083 ], [ -123.084965486999963, 49.1254134980001 ], [ -123.085419294999937, 49.125430589000104 ], [ -123.085925402999962, 49.125322406000087 ], [ -123.086918869999977, 49.124918197000106 ], [ -123.086972448999958, 49.124918156000042 ], [ -123.086972408999927, 49.124896412000098 ], [ -123.087143494999935, 49.124826802000086 ], [ -123.087299203999947, 49.124648047000079 ], [ -123.087383159999931, 49.124647983000017 ], [ -123.087382990999984, 49.124551855000092 ], [ -123.087417704999964, 49.124512005000057 ], [ -123.087382822999928, 49.124455408000138 ], [ -123.087381737999962, 49.123838396000103 ], [ -123.087002721999966, 49.123838682000041 ], [ -123.086758489999923, 49.123442398000101 ], [ -123.08598990099992, 49.122552311000057 ], [ -123.086015608999929, 49.121885785000096 ], [ -123.08652677399995, 49.121410275000066 ], [ -123.08655515599996, 49.121410254000082 ], [ -123.08655511, 49.121383916000077 ], [ -123.086575986999932, 49.121364494000055 ], [ -123.087206508999941, 49.121138094000081 ], [ -123.090315902999976, 49.120380393000062 ], [ -123.090452606999932, 49.120453003000065 ], [ -123.090383993, 49.120515691000051 ], [ -123.089795212999917, 49.120669509000031 ], [ -123.089522193000022, 49.120876014000025 ], [ -123.089591510999938, 49.121172195000028 ], [ -123.089769283999928, 49.121271898000018 ], [ -123.090084898999947, 49.121271888000138 ], [ -123.090989097999952, 49.120974299000032 ], [ -123.091098616999915, 49.120749203000067 ], [ -123.091783111000012, 49.120720808000058 ], [ -123.09301508799993, 49.120379006000121 ], [ -123.09468845499994, 49.120054555000088 ], [ -123.094775740999935, 49.120054484 ], [ -123.094775708999961, 49.120037637000031 ], [ -123.095769699999948, 49.11984489500005 ], [ -123.096797091999974, 49.11931361500006 ], [ -123.097660205999929, 49.119034491000022 ], [ -123.100093899999962, 49.118026928000084 ], [ -123.100116575999962, 49.118027539000138 ], [ -123.100116555999961, 49.118017547000072 ], [ -123.100274601999956, 49.117952111000072 ], [ -123.100483684999958, 49.117890754000086 ], [ -123.100938557999925, 49.117890356000075 ], [ -123.100938288999927, 49.117757342000047 ], [ -123.101405990999965, 49.117620084000059 ], [ -123.101760262999974, 49.117619773000058 ], [ -123.101760051999975, 49.117516175000077 ], [ -123.101808004999938, 49.117502102000131 ], [ -123.103664778, 49.116808489000057 ], [ -123.103814206, 49.116808354000092 ], [ -123.103814088999954, 49.116752710000085 ], [ -123.104388897, 49.116537974000067 ], [ -123.10463587699995, 49.116537749000017 ], [ -123.104635684999906, 49.116445777000052 ], [ -123.105696676999955, 49.116049394000086 ], [ -123.106219211999985, 49.116022289000099 ], [ -123.10653239, 49.115832907000048 ], [ -123.107437294999983, 49.115499600000085 ], [ -123.109299623999945, 49.114885802000096 ], [ -123.109695591999937, 49.11484021200004 ], [ -123.110160992000019, 49.11455249699999 ], [ -123.110751288999921, 49.114407211000156 ], [ -123.112816894999966, 49.113586909000041 ], [ -123.118254506999975, 49.112107108000046 ], [ -123.118733297999981, 49.112015992000089 ], [ -123.11991050599994, 49.111439204000128 ], [ -123.120855315999961, 49.111181798000047 ], [ -123.120811569999901, 49.111889144000038 ], [ -123.118838588999964, 49.11204220300008 ], [ -123.118686235999945, 49.112163905000045 ], [ -123.118284097999975, 49.112485143000079 ], [ -123.117968864999966, 49.112736992000109 ], [ -123.117853297999886, 49.112829300000037 ], [ -123.117572631999948, 49.11301662100005 ], [ -123.117470479999923, 49.113084802000031 ], [ -123.117154401999969, 49.11325739100009 ], [ -123.116664099999966, 49.113457797000109 ], [ -123.114458685999963, 49.114151219000078 ], [ -123.114446307999955, 49.114155100000119 ], [ -123.114300778999961, 49.114208426000054 ], [ -123.11346516399999, 49.114514635000084 ], [ -123.113379201999962, 49.114546136000087 ], [ -123.11131854199995, 49.115301187000021 ], [ -123.11047379099989, 49.115610710000041 ], [ -123.11026454099999, 49.115696138000033 ], [ -123.10929781599998, 49.116090798000101 ], [ -123.10920878599994, 49.116109058000177 ], [ -123.109039498999934, 49.116143752000106 ], [ -123.108746149999931, 49.116203905000113 ], [ -123.108089610999954, 49.116338499000044 ], [ -123.10793700899994, 49.116352089000067 ], [ -123.107842780999974, 49.11636048400004 ], [ -123.106611626999978, 49.116470158 ], [ -123.106310395999941, 49.116496983000062 ], [ -123.105497723999974, 49.116516905000083 ], [ -123.105240599999917, 49.116523201000106 ], [ -123.104299514999965, 49.116792402000051 ], [ -123.103843562999941, 49.117001403000131 ], [ -123.103280298999948, 49.117259587000099 ], [ -123.102850056999941, 49.117369345000021 ], [ -123.10264171099999, 49.117422487000063 ], [ -123.102022651999931, 49.117580419000085 ], [ -123.101475400999945, 49.117719991000122 ], [ -123.101023783999935, 49.117892417000078 ], [ -123.10091642899999, 49.117933421000053 ], [ -123.10070924899999, 49.118012525000054 ], [ -123.100056876999957, 49.118261588000095 ], [ -123.100041944999958, 49.118267295000059 ], [ -123.09880934099999, 49.118737893000073 ], [ -123.09876671399995, 49.118754136000057 ], [ -123.097838084999964, 49.119108673000085 ], [ -123.0974296, 49.11926462200006 ], [ -123.097080210999962, 49.11939799400006 ], [ -123.09662557099999, 49.119620646000051 ], [ -123.096579505999927, 49.119643195000023 ], [ -123.095988418999951, 49.119932640000059 ], [ -123.095799457999931, 49.120025183000038 ], [ -123.095643408999962, 49.12010159800009 ], [ -123.095332727999903, 49.120161861000092 ], [ -123.095154107999988, 49.120196503000088 ], [ -123.094550603999963, 49.120209912000114 ], [ -123.09312922799991, 49.120512603000115 ], [ -123.093030383999974, 49.120533647000101 ], [ -123.092947964999965, 49.120551199000026 ], [ -123.092235973999919, 49.120702799000085 ], [ -123.092222898999978, 49.120705609000055 ], [ -123.092218299999942, 49.121638640000086 ], [ -123.092205308999937, 49.124275503000113 ], [ -123.092202689999951, 49.126136805000115 ], [ -123.087132869999905, 49.126111825000088 ], [ -123.083747191999976, 49.126095008000043 ], [ -123.083171436, 49.126092143000022 ], [ -123.082856210999978, 49.126090581000071 ], [ -123.081860201999987, 49.126085589000098 ], [ -123.081526623999977, 49.1260846610001 ], [ -123.081170211, 49.126083666000049 ], [ -123.080972702999986, 49.126083131000023 ], [ -123.08086877199996, 49.126083266000109 ], [ -123.080784987999948, 49.126083388000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.718802556340397", "sL_AssetLoss": "29730", "sL_BldgLoss": "21370", "sL_StrLoss": "9370", "sL_NStrLoss": "12000", "sL_ContLoss": "8360", "geom_point": "0101000020E6100000AA0C67A774CA5EC0DB743E1B3D8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.171403699, 49.121537700000026 ], [ -123.170658700999937, 49.121312712000133 ], [ -123.170172406999953, 49.121290889000122 ], [ -123.169901782, 49.12134960800006 ], [ -123.169409175999988, 49.121720364000076 ], [ -123.169377890999897, 49.121743913000053 ], [ -123.168934791999959, 49.121593173000065 ], [ -123.168287036999942, 49.121372857000026 ], [ -123.167979948999985, 49.121268397000037 ], [ -123.166765480999942, 49.120855292000094 ], [ -123.166722480999951, 49.120845023000065 ], [ -123.16657919, 49.12081080800003 ], [ -123.1662677, 49.120776399000121 ], [ -123.166234523999918, 49.120775766000101 ], [ -123.164570093999941, 49.120744292000047 ], [ -123.164368793000037, 49.120743492000052 ], [ -123.163816327999939, 49.120624278000065 ], [ -123.163512072999978, 49.120558619000136 ], [ -123.161980135999954, 49.120227950000093 ], [ -123.161455394999962, 49.120114691000119 ], [ -123.161428478999952, 49.120108878000039 ], [ -123.161401686999952, 49.12010311100007 ], [ -123.161339486, 49.12008107500003 ], [ -123.1612259199999, 49.120040860000081 ], [ -123.161091130999964, 49.119993152000077 ], [ -123.159790418999975, 49.119532595000059 ], [ -123.15971077399999, 49.119481031000113 ], [ -123.159690282999975, 49.119467797000013 ], [ -123.159662583999975, 49.119360690000128 ], [ -123.159732044999899, 49.119277409000063 ], [ -123.160500784, 49.118355367000063 ], [ -123.160590759999963, 49.118247428000117 ], [ -123.16064004499998, 49.118188360000012 ], [ -123.160654001999944, 49.118171610000068 ], [ -123.159329680999974, 49.117737341000094 ], [ -123.159276476999977, 49.117719896000054 ], [ -123.159175436999988, 49.117717648000074 ], [ -123.159010673999944, 49.117713961000028 ], [ -123.158955943999942, 49.117712713000053 ], [ -123.158838913999929, 49.117710140000021 ], [ -123.158103028999975, 49.116709607000054 ], [ -123.157531824000017, 49.116532327000066 ], [ -123.15737768399994, 49.116471452 ], [ -123.157214579999973, 49.116407051000131 ], [ -123.156940735999981, 49.11629890600004 ], [ -123.156872249999964, 49.116271879000045 ], [ -123.15620596399999, 49.116008746000034 ], [ -123.156187609999989, 49.116001497000099 ], [ -123.155563514999955, 49.115755044000124 ], [ -123.154496746999925, 49.1152178 ], [ -123.153997559999979, 49.115028011000092 ], [ -123.153606454999988, 49.114892584000152 ], [ -123.153085381999972, 49.114712152000045 ], [ -123.152553572999949, 49.114528032000102 ], [ -123.152462189999966, 49.114496401000082 ], [ -123.152123801999963, 49.114319802000139 ], [ -123.151473195999969, 49.113784604000067 ], [ -123.149717381999963, 49.112828990000018 ], [ -123.149035988999913, 49.112537248000081 ], [ -123.149342795999985, 49.112545382000071 ], [ -123.150622878999968, 49.113148196000068 ], [ -123.151969386999937, 49.113893105000052 ], [ -123.152475780999978, 49.114288994000049 ], [ -123.154055289999931, 49.114942710000065 ], [ -123.154424119999973, 49.114959798000065 ], [ -123.154740405999988, 49.115095092000047 ], [ -123.154918301999956, 49.115320210000043 ], [ -123.155399690999957, 49.115562300000072 ], [ -123.15589339899999, 49.115498194000054 ], [ -123.155879488999943, 49.115704700000016 ], [ -123.156003603999949, 49.115750301000084 ], [ -123.156825785999928, 49.115982390000113 ], [ -123.15807289699994, 49.116205989000036 ], [ -123.15843179899997, 49.116574912000075 ], [ -123.158815312999963, 49.116816992000054 ], [ -123.159336401999923, 49.116446700000068 ], [ -123.1595277, 49.116644710000088 ], [ -123.159952509, 49.116715898000123 ], [ -123.160281679999954, 49.117003598000082 ], [ -123.161022975999941, 49.117335396000072 ], [ -123.161092987999965, 49.117650205000061 ], [ -123.160875821999952, 49.118135801000157 ], [ -123.16001489099996, 49.119027408000136 ], [ -123.159864889999952, 49.119460294000135 ], [ -123.160112175, 49.11962129300008 ], [ -123.161142398999985, 49.119961701000129 ], [ -123.161484886999943, 49.120005806000101 ], [ -123.161867288999929, 49.119718091000038 ], [ -123.162372712999968, 49.119033095000113 ], [ -123.162548376999951, 49.118251197000077 ], [ -123.162712586999945, 49.118097394000131 ], [ -123.162917710999949, 49.118088799000091 ], [ -123.163356019999952, 49.118303899000075 ], [ -123.164124922999918, 49.118348003000065 ], [ -123.165729682999981, 49.118722606000134 ], [ -123.165687593999976, 49.118849400000066 ], [ -123.165401097999947, 49.118813695000085 ], [ -123.165291301999957, 49.119001699000094 ], [ -123.165840019999976, 49.119145605000071 ], [ -123.165622796999941, 49.119505907000089 ], [ -123.165745490999925, 49.119550109000095 ], [ -123.165676816, 49.119730907000111 ], [ -123.171480297999949, 49.121377287000072 ], [ -123.171808802999948, 49.121206384000089 ], [ -123.172303093999943, 49.121213512000104 ], [ -123.172350556999959, 49.121238217000055 ], [ -123.172412260999977, 49.121286765000065 ], [ -123.172453762999908, 49.121303629000046 ], [ -123.172017230999984, 49.122103632000119 ], [ -123.171424286999923, 49.122281500000042 ], [ -123.171429447999955, 49.122262038000045 ], [ -123.171587794999979, 49.121663300000101 ], [ -123.171543486999965, 49.121604493000042 ], [ -123.171403699, 49.121537700000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.742222222222222", "sL_AssetLoss": "9000", "sL_BldgLoss": "6680", "sL_StrLoss": "3210", "sL_NStrLoss": "3470", "sL_ContLoss": "2320", "geom_point": "0101000020E61000009CBC6D4B49CA5EC0D0D10DC1AF8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15807268099995, 49.113840393000068 ], [ -123.158326890999945, 49.113840395000132 ], [ -123.160026789999961, 49.113945800000074 ], [ -123.160712213999915, 49.114150904000063 ], [ -123.16127528899996, 49.114501204000121 ], [ -123.162797123999937, 49.114796104000064 ], [ -123.163427293999931, 49.115002588000081 ], [ -123.163832036999935, 49.115058592000025 ], [ -123.163832237999955, 49.115119605000082 ], [ -123.163421132999972, 49.11512018800007 ], [ -123.163422020000013, 49.115390050000023 ], [ -123.162599804999942, 49.11539121100013 ], [ -123.162601569999978, 49.115930935000087 ], [ -123.162380526, 49.115931246000159 ], [ -123.161951398999946, 49.115687598000044 ], [ -123.16053751, 49.115132197000023 ], [ -123.159589607999948, 49.114845892000119 ], [ -123.159261805999989, 49.11463939500014 ], [ -123.15809608899994, 49.114551105000061 ], [ -123.15747839099997, 49.114278768000126 ], [ -123.158074123999967, 49.114294513000125 ], [ -123.15807268099995, 49.113840393000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.717259905977166", "sL_AssetLoss": "14890", "sL_BldgLoss": "10680", "sL_StrLoss": "4640", "sL_NStrLoss": "6040", "sL_ContLoss": "4210", "geom_point": "0101000020E61000002B22F5641FC85EC0523B0D62318E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121891246999937, 49.111805369000066 ], [ -123.121890897999961, 49.111663283000091 ], [ -123.121479822999945, 49.111663717000091 ], [ -123.121478230999941, 49.111012083000027 ], [ -123.122032790999924, 49.110860989000052 ], [ -123.122105107999943, 49.11085346700002 ], [ -123.123533195999954, 49.110851948000146 ], [ -123.123533122999987, 49.110822405000057 ], [ -123.123568418, 49.110823907000089 ], [ -123.123636695999963, 49.111057500000115 ], [ -123.123882614999943, 49.111057501000111 ], [ -123.124499606999962, 49.110732793000054 ], [ -123.125041690999936, 49.110580460000151 ], [ -123.125587865999989, 49.110579867000069 ], [ -123.125587835, 49.110567573000019 ], [ -123.125923494999967, 49.1105604870001 ], [ -123.126895920999971, 49.110325505000084 ], [ -123.127231439999932, 49.110305501000035 ], [ -123.127231446999986, 49.110308205000067 ], [ -123.127642512999955, 49.110307751000065 ], [ -123.127642443999946, 49.110280993000067 ], [ -123.127828494999946, 49.11026989800007 ], [ -123.128239177999959, 49.11015309600004 ], [ -123.12923542499999, 49.11003611500005 ], [ -123.129286075, 49.110036058000098 ], [ -123.12928606, 49.11003016900009 ], [ -123.130252394999914, 49.109916690000055 ], [ -123.131752231999897, 49.109949387000015 ], [ -123.131753883999963, 49.110572995000012 ], [ -123.131342815999943, 49.110573463000044 ], [ -123.131343527999903, 49.110843326000108 ], [ -123.130932458999965, 49.110843793000107 ], [ -123.130933140999971, 49.111103349000153 ], [ -123.121891246999937, 49.111805369000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.716380655226209", "sL_AssetLoss": "32050", "sL_BldgLoss": "22960", "sL_StrLoss": "9970", "sL_NStrLoss": "12990", "sL_ContLoss": "9090", "geom_point": "0101000020E6100000C33AC0592BC65EC069F04AD4038E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097610407999966, 49.107871490000079 ], [ -123.099086558999943, 49.107594960000043 ], [ -123.098875016999941, 49.110989752000108 ], [ -123.093407051999947, 49.110842089000073 ], [ -123.093552386999974, 49.1085142250001 ], [ -123.094815294999961, 49.108287409000042 ], [ -123.09665139599997, 49.108132207000068 ], [ -123.097610407999966, 49.107871490000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153504456", "BldgCostT": "98921683", "sL_LossRatio": "0.817970949817416", "sL_AssetLoss": "600547", "sL_BldgLoss": "491230", "sL_StrLoss": "310700", "sL_NStrLoss": "180530", "sL_ContLoss": "109317", "geom_point": "0101000020E6100000FED54E5A59C35EC0CB60DE46779A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.047696207999962, 49.206475692000048 ], [ -123.050236763999948, 49.206265550000083 ], [ -123.050445282999959, 49.206248294000019 ], [ -123.05089510399992, 49.20620919600006 ], [ -123.052168028999972, 49.20609851200004 ], [ -123.052352092999939, 49.206082519000105 ], [ -123.05349638099996, 49.205997598000081 ], [ -123.053735015999933, 49.20597799100009 ], [ -123.054209929999942, 49.205946536000077 ], [ -123.054399083999925, 49.205934005000131 ], [ -123.055249210999975, 49.205857197000135 ], [ -123.056777944999979, 49.205810623000033 ], [ -123.056791706999945, 49.205810210000067 ], [ -123.056792847999986, 49.205824441000068 ], [ -123.05682019799994, 49.206162316000068 ], [ -123.056819356999981, 49.206442553000088 ], [ -123.056817418999955, 49.207072103000066 ], [ -123.056819454, 49.20713236299999 ], [ -123.05681979299996, 49.207142387000026 ], [ -123.056806153999915, 49.207143282000096 ], [ -123.056237502999977, 49.207179554000035 ], [ -123.055753754999927, 49.207210403000076 ], [ -123.050591127999951, 49.207539575000084 ], [ -123.049874136999946, 49.207585274000039 ], [ -123.047703309999946, 49.207723601000062 ], [ -123.047700794999969, 49.207654216000023 ], [ -123.047698391999916, 49.207304608000058 ], [ -123.047696772999984, 49.206698644000028 ], [ -123.047696207999962, 49.206475692000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "322523187", "BldgCostT": "216285557", "sL_LossRatio": "0.807565082170379", "sL_AssetLoss": "1102222", "sL_BldgLoss": "890116", "sL_StrLoss": "441860", "sL_NStrLoss": "448256", "sL_ContLoss": "212106", "geom_point": "0101000020E610000060C77F81E0C25EC0544D3183889A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.042257689999957, 49.206787794000086 ], [ -123.043213778999984, 49.206792496000027 ], [ -123.04404558399996, 49.206765715000103 ], [ -123.047696207999962, 49.206475692000048 ], [ -123.047696772999984, 49.206698644000028 ], [ -123.047698391999916, 49.207304608000058 ], [ -123.047700794999969, 49.207654216000023 ], [ -123.047703309999946, 49.207723601000062 ], [ -123.044882914999903, 49.207883203000144 ], [ -123.043772091000037, 49.207980690000078 ], [ -123.042273199999926, 49.208155631000103 ], [ -123.042259709999939, 49.208157200000109 ], [ -123.042258703999948, 49.208121881000125 ], [ -123.04225838799999, 49.208111443000028 ], [ -123.042256285999954, 49.208038186000095 ], [ -123.042257348999925, 49.207101102000109 ], [ -123.042257689999957, 49.206787794000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199308250", "BldgCostT": "129880000", "sL_LossRatio": "0.705050668293394", "sL_AssetLoss": "878656", "sL_BldgLoss": "619497", "sL_StrLoss": "248630", "sL_NStrLoss": "370867", "sL_ContLoss": "259159", "geom_point": "0101000020E6100000B418B81317C35EC01F5CE8E7599A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05528850099995, 49.205300599000068 ], [ -123.056589877999912, 49.205306648000047 ], [ -123.056594215999937, 49.205329406000075 ], [ -123.056640113999904, 49.205442844000075 ], [ -123.056755980999981, 49.205676717000088 ], [ -123.056766628, 49.205695027000047 ], [ -123.056791706999945, 49.205810210000067 ], [ -123.056777944999979, 49.205810623000033 ], [ -123.055249210999975, 49.205857197000135 ], [ -123.054399083999925, 49.205934005000131 ], [ -123.054209929999942, 49.205946536000077 ], [ -123.053735015999933, 49.20597799100009 ], [ -123.05349638099996, 49.205997598000081 ], [ -123.052352092999939, 49.206082519000105 ], [ -123.052168028999972, 49.20609851200004 ], [ -123.05089510399992, 49.20620919600006 ], [ -123.050445282999959, 49.206248294000019 ], [ -123.050236763999948, 49.206265550000083 ], [ -123.047696207999962, 49.206475692000048 ], [ -123.04404558399996, 49.206765715000103 ], [ -123.043213778999984, 49.206792496000027 ], [ -123.042257689999957, 49.206787794000086 ], [ -123.042263257999949, 49.206691953000117 ], [ -123.042272004999987, 49.206541407000074 ], [ -123.042293394999945, 49.206069671000144 ], [ -123.042301066999954, 49.205900821000064 ], [ -123.042306087999989, 49.205790105000055 ], [ -123.042435810999962, 49.205496278000062 ], [ -123.043573703999968, 49.205341597000078 ], [ -123.044308555999976, 49.20533418800003 ], [ -123.045247921999987, 49.205324713000103 ], [ -123.046208206999964, 49.205315024000107 ], [ -123.049069543999948, 49.205286083000011 ], [ -123.049077964999981, 49.205285994000086 ], [ -123.049598069999959, 49.205280723000037 ], [ -123.050054794999966, 49.205276106000042 ], [ -123.052770120999938, 49.205288848000045 ], [ -123.053570237999935, 49.205292581000023 ], [ -123.05528850099995, 49.205300599000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42698386", "BldgCostT": "22297079", "sL_LossRatio": "0.620085920402043", "sL_AssetLoss": "370110", "sL_BldgLoss": "229500", "sL_StrLoss": "78880", "sL_NStrLoss": "150620", "sL_ContLoss": "140610", "geom_point": "0101000020E6100000B59C4B7155C05EC00ABA62EB3E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004471903999928, 49.227939587000087 ], [ -123.005649081999977, 49.226821900000083 ], [ -123.005801299000026, 49.226664244000062 ], [ -123.007626148999933, 49.22750701800004 ], [ -123.00771109599999, 49.227546249000078 ], [ -123.007695919999946, 49.227561278000088 ], [ -123.007646793000021, 49.22760997700005 ], [ -123.007639119999951, 49.227617607000035 ], [ -123.007590577999963, 49.227664294000057 ], [ -123.00756658899995, 49.227687409000097 ], [ -123.007459292999982, 49.227660405000037 ], [ -123.007451437999947, 49.227667809000124 ], [ -123.006295914999924, 49.228756006000047 ], [ -123.005691293999959, 49.229331419000069 ], [ -123.004782500999966, 49.230196279000076 ], [ -123.004774696999988, 49.230203693000135 ], [ -123.003847797999981, 49.229896105000122 ], [ -123.003598605999969, 49.22981340000009 ], [ -123.002827401999937, 49.229559253000026 ], [ -123.00265219799995, 49.22950148500005 ], [ -123.003140808999945, 49.229058388000084 ], [ -123.003688704999959, 49.228694299000118 ], [ -123.004471903999928, 49.227939587000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154144500", "BldgCostT": "104775000", "sL_LossRatio": "0.746486825595985", "sL_AssetLoss": "478200", "sL_BldgLoss": "356970", "sL_StrLoss": "163930", "sL_NStrLoss": "193040", "sL_ContLoss": "121230", "geom_point": "0101000020E6100000A06970F830C05EC0FF04F61C819D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.001835076999939, 49.230228291000095 ], [ -123.00265219799995, 49.22950148500005 ], [ -123.002827401999937, 49.229559253000026 ], [ -123.003598605999969, 49.22981340000009 ], [ -123.003847797999981, 49.229896105000122 ], [ -123.004774696999988, 49.230203693000135 ], [ -123.003391487999963, 49.231490393000051 ], [ -123.002109579999953, 49.231092533000137 ], [ -123.001988990999934, 49.231055097000144 ], [ -123.001161219999958, 49.230841993000055 ], [ -123.001835076999939, 49.230228291000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262568402", "BldgCostT": "162479982", "sL_LossRatio": "0.654462266705586", "sL_AssetLoss": "2843510", "sL_BldgLoss": "1860970", "sL_StrLoss": "817610", "sL_NStrLoss": "1043360", "sL_ContLoss": "982540", "geom_point": "0101000020E61000003AFE2BC8E2BF5EC09F2EE642409D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.998923985999937, 49.228857300000129 ], [ -122.998913207999962, 49.228812 ], [ -122.998819814999933, 49.228833686000058 ], [ -122.99852830499999, 49.229138211000112 ], [ -122.997667488000033, 49.22886288900002 ], [ -122.996378305999912, 49.228439604000087 ], [ -122.996121598999935, 49.228354995000089 ], [ -122.995716242999933, 49.228178672000112 ], [ -122.99532039799999, 49.228006488000069 ], [ -122.995103736999951, 49.227960668000016 ], [ -122.99509020499994, 49.227957813000039 ], [ -122.994790211999941, 49.227926904000107 ], [ -122.994193185999961, 49.227923798000084 ], [ -122.994217700999968, 49.226972202000056 ], [ -122.994220492999915, 49.226717397000129 ], [ -122.995091579999979, 49.227002891000097 ], [ -122.996408698999971, 49.227438683000074 ], [ -122.997713690999987, 49.227850702000062 ], [ -122.999350106999927, 49.228382692 ], [ -123.000028021999938, 49.228612412000125 ], [ -123.000742775999967, 49.228854594000033 ], [ -123.00186669199995, 49.229235368000083 ], [ -123.00265219799995, 49.22950148500005 ], [ -123.001835076999939, 49.230228291000095 ], [ -123.001226806999966, 49.230027587000016 ], [ -123.00000345499997, 49.229623949000057 ], [ -122.998623790999943, 49.229168702000031 ], [ -122.998923985999937, 49.228857300000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100809685", "BldgCostT": "63586541", "sL_LossRatio": "0.786968780287233", "sL_AssetLoss": "680980", "sL_BldgLoss": "535910", "sL_StrLoss": "252470", "sL_NStrLoss": "283440", "sL_ContLoss": "145070", "geom_point": "0101000020E61000009E085E04F8BF5EC0C1A419076E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.997768286999985, 49.229978206000041 ], [ -122.997667488000033, 49.22886288900002 ], [ -122.99852830499999, 49.229138211000112 ], [ -122.998819814999933, 49.228833686000058 ], [ -122.998913207999962, 49.228812 ], [ -122.998923985999937, 49.228857300000129 ], [ -122.998623790999943, 49.229168702000031 ], [ -123.00000345499997, 49.229623949000057 ], [ -123.001226806999966, 49.230027587000016 ], [ -123.001835076999939, 49.230228291000095 ], [ -123.001161219999958, 49.230841993000055 ], [ -123.000414609999893, 49.230646398000054 ], [ -122.999800137999955, 49.230490561000074 ], [ -122.99912600499999, 49.230319611000027 ], [ -122.998441093999972, 49.230147380000055 ], [ -122.997768286999985, 49.229978206000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143219500", "BldgCostT": "99025000", "sL_LossRatio": "0.874743045087022", "sL_AssetLoss": "729700", "sL_BldgLoss": "638300", "sL_StrLoss": "291000", "sL_NStrLoss": "347300", "sL_ContLoss": "91400", "geom_point": "0101000020E6100000660A632CCFBF5EC0137CD3F4599D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.996378305999912, 49.228439604000087 ], [ -122.997667488000033, 49.22886288900002 ], [ -122.997768286999985, 49.229978206000041 ], [ -122.996400504999926, 49.229941887000102 ], [ -122.996387570999985, 49.229066870000111 ], [ -122.996378305999912, 49.228439604000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "471126895", "BldgCostT": "316672864", "sL_LossRatio": "0.777382672013487", "sL_AssetLoss": "3012133", "sL_BldgLoss": "2341580", "sL_StrLoss": "1105140", "sL_NStrLoss": "1236440", "sL_ContLoss": "670553", "geom_point": "0101000020E6100000FACF356135C25EC0997BE4835C9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.035531838999944, 49.234568407000047 ], [ -123.035930205999961, 49.23416620600004 ], [ -123.036889597999945, 49.234623219000078 ], [ -123.036491228999964, 49.235029623000109 ], [ -123.035028280999981, 49.236521952000025 ], [ -123.034696904, 49.23686000300011 ], [ -123.035639913999958, 49.237250697000079 ], [ -123.036469993999944, 49.237582505 ], [ -123.03613792799996, 49.237919987000019 ], [ -123.03581658799996, 49.238246492000066 ], [ -123.03547753099997, 49.238606491000034 ], [ -123.03510369299994, 49.239003407000034 ], [ -123.034662916999963, 49.239433607000123 ], [ -123.033723577999979, 49.239047404000068 ], [ -123.033007513, 49.238758396000051 ], [ -123.032337284999954, 49.23845915200004 ], [ -123.031848699999912, 49.238240990000129 ], [ -123.0324728, 49.237606812000088 ], [ -123.032593198999962, 49.237549784000095 ], [ -123.032630997999917, 49.237494996000095 ], [ -123.033054944999918, 49.237067859000078 ], [ -123.033183545, 49.236938284000068 ], [ -123.033670115999911, 49.236448002000046 ], [ -123.034296093999941, 49.235816028 ], [ -123.034657565999964, 49.235451117000082 ], [ -123.035277130999987, 49.234825563000101 ], [ -123.035531838999944, 49.234568407000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "323103417", "BldgCostT": "217451667", "sL_LossRatio": "0.805090555295451", "sL_AssetLoss": "984647", "sL_BldgLoss": "792730", "sL_StrLoss": "380870", "sL_NStrLoss": "411860", "sL_ContLoss": "191917", "geom_point": "0101000020E61000009DE3605F00C25EC00F3EDEF5639E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.029934517999919, 49.237362209000061 ], [ -123.03007413099999, 49.237217897000065 ], [ -123.030308725999973, 49.236975456000067 ], [ -123.030641705999983, 49.236631308000035 ], [ -123.032079319999966, 49.237256354000124 ], [ -123.032544091999981, 49.237458406000037 ], [ -123.032630997999917, 49.237494996000095 ], [ -123.032593198999962, 49.237549784000095 ], [ -123.0324728, 49.237606812000088 ], [ -123.031848699999912, 49.238240990000129 ], [ -123.031370715999955, 49.238001903000047 ], [ -123.030905392999969, 49.237769116000067 ], [ -123.030673951999958, 49.237672113000073 ], [ -123.029934517999919, 49.237362209000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148011417", "BldgCostT": "101651667", "sL_LossRatio": "0.834361339002335", "sL_AssetLoss": "333980", "sL_BldgLoss": "278660", "sL_StrLoss": "148040", "sL_NStrLoss": "130620", "sL_ContLoss": "55320", "geom_point": "0101000020E6100000D2439F5507C25EC0C1E6DA1F419E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030641705999983, 49.236631308000035 ], [ -123.029760198999952, 49.236224208000053 ], [ -123.02987039, 49.236112842000118 ], [ -123.030324182999919, 49.235654261000079 ], [ -123.030450086999949, 49.235527003000101 ], [ -123.03045599299999, 49.235177712000052 ], [ -123.033589602999882, 49.236417895000038 ], [ -123.033670115999911, 49.236448002000046 ], [ -123.033183545, 49.236938284000068 ], [ -123.033054944999918, 49.237067859000078 ], [ -123.032630997999917, 49.237494996000095 ], [ -123.032544091999981, 49.237458406000037 ], [ -123.032079319999966, 49.237256354000124 ], [ -123.030641705999983, 49.236631308000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213304416", "BldgCostT": "143661666", "sL_LossRatio": "0.747106420138205", "sL_AssetLoss": "1981110", "sL_BldgLoss": "1480100", "sL_StrLoss": "779740", "sL_NStrLoss": "700360", "sL_ContLoss": "501010", "geom_point": "0101000020E6100000FBD115116AB45EC0A1C8BD6DE4A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821096830999963, 49.308046236000031 ], [ -122.821097808999966, 49.307776383000025 ], [ -122.82068510299996, 49.307775744000104 ], [ -122.820686082999913, 49.307505891000119 ], [ -122.820273379999961, 49.307505249000052 ], [ -122.820274361999935, 49.307235397000106 ], [ -122.819861661999937, 49.307234754000085 ], [ -122.819862646, 49.306964902000054 ], [ -122.819449947999942, 49.306964258000058 ], [ -122.819452905, 49.306154699000103 ], [ -122.819865595999957, 49.306155344000075 ], [ -122.819870514999963, 49.304806080000063 ], [ -122.81904515399998, 49.304804789000073 ], [ -122.819044167999962, 49.305074643000118 ], [ -122.817393437999925, 49.305072046000092 ], [ -122.817394434999983, 49.304802194000047 ], [ -122.816981754999986, 49.304801541000081 ], [ -122.816982754999984, 49.304531688000033 ], [ -122.816570075999962, 49.304531034000078 ], [ -122.816571076999978, 49.304261181000051 ], [ -122.816158403000017, 49.304260526000142 ], [ -122.816159405999912, 49.303990673000065 ], [ -122.815746732999941, 49.30399001500011 ], [ -122.815744719999927, 49.30452972100008 ], [ -122.81533204299997, 49.304529062000093 ], [ -122.815331035, 49.304798915000035 ], [ -122.814918354999946, 49.304798254000069 ], [ -122.814916333000028, 49.305337960000038 ], [ -122.814503648999931, 49.305337298000097 ], [ -122.814502635999986, 49.305607151000082 ], [ -122.813677261999928, 49.30560582300005 ], [ -122.81367115799999, 49.307224939000093 ], [ -122.811869013999967, 49.307222020000012 ], [ -122.811692739999955, 49.30673157800004 ], [ -122.811623170999951, 49.306538082000046 ], [ -122.811607341999945, 49.306493976000041 ], [ -122.81159526199994, 49.306209869000092 ], [ -122.81180148699994, 49.305870916000117 ], [ -122.812072620999913, 49.305687962000093 ], [ -122.812285399999908, 49.305613964000052 ], [ -122.813763394999938, 49.305100032000055 ], [ -122.813956991999959, 49.304964314000088 ], [ -122.814861781999952, 49.304177538000069 ], [ -122.815096608000019, 49.303973375000062 ], [ -122.815275202999956, 49.303818079000102 ], [ -122.815589331999973, 49.303544902000077 ], [ -122.815665396999961, 49.303478757000043 ], [ -122.81583866699998, 49.303198291000079 ], [ -122.816281543999935, 49.302316816000022 ], [ -122.816296201999961, 49.302170916000087 ], [ -122.816303240999972, 49.30210123800007 ], [ -122.816303454000021, 49.302092202000054 ], [ -122.816321804999973, 49.301390114000078 ], [ -122.816384493999976, 49.301178512000057 ], [ -122.816539013999886, 49.300971306000058 ], [ -122.816745394999984, 49.300829697000054 ], [ -122.817058806999967, 49.300711 ], [ -122.817455696999943, 49.300638898000031 ], [ -122.818603781999968, 49.300599795000089 ], [ -122.818940700999946, 49.300580005 ], [ -122.819241589999962, 49.300503195000012 ], [ -122.820201787999949, 49.299997286000043 ], [ -122.820941895999937, 49.300634394000063 ], [ -122.821396293999953, 49.300866705000018 ], [ -122.821596606999918, 49.300932030000091 ], [ -122.821628001999926, 49.300942293000034 ], [ -122.821833407000028, 49.301009289000021 ], [ -122.822122480999951, 49.301064590000117 ], [ -122.822202384999954, 49.301066943000102 ], [ -122.822744230999945, 49.30108290800009 ], [ -122.822376538999947, 49.308048209000063 ], [ -122.821096830999963, 49.308046236000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116080583", "BldgCostT": "78848333", "sL_LossRatio": "0.761064533216432", "sL_AssetLoss": "1094940", "sL_BldgLoss": "833320", "sL_StrLoss": "438600", "sL_NStrLoss": "394720", "sL_ContLoss": "261620", "geom_point": "0101000020E6100000A2BB66EA1CB45EC08909C5B189A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.811195360999989, 49.307114628000093 ], [ -122.811195985999973, 49.306951068000032 ], [ -122.810925531999914, 49.306950626000045 ], [ -122.81053077099989, 49.306710688000095 ], [ -122.810003475999935, 49.30639023300008 ], [ -122.809979003999928, 49.306359096000044 ], [ -122.809938220999953, 49.306303282000052 ], [ -122.80988068100001, 49.306185323000086 ], [ -122.809861438999931, 49.305989558000057 ], [ -122.809860060999981, 49.305975806000063 ], [ -122.809845108999966, 49.305823801000066 ], [ -122.809998502999946, 49.305553202000119 ], [ -122.810110596999962, 49.305457874000126 ], [ -122.81031489599998, 49.305284104000087 ], [ -122.811680378999952, 49.304557701000071 ], [ -122.811919380999896, 49.30417363100004 ], [ -122.812082715, 49.303911109000033 ], [ -122.81203636, 49.303759953000032 ], [ -122.811878390999951, 49.303244597000074 ], [ -122.811919642, 49.302224651000088 ], [ -122.811923825999912, 49.302120903000038 ], [ -122.811881328999959, 49.301488275000047 ], [ -122.811853984, 49.301080672000104 ], [ -122.81180911099996, 49.300412266000116 ], [ -122.811808683, 49.300406072000065 ], [ -122.811767397999944, 49.299790893000129 ], [ -122.811451574, 49.299307427000016 ], [ -122.811014704999948, 49.298638684000096 ], [ -122.81077090499997, 49.297782709000117 ], [ -122.81079127799994, 49.297499839000039 ], [ -122.811965707999903, 49.29748699600006 ], [ -122.813741794999927, 49.297453005000143 ], [ -122.814714715999912, 49.297441984000095 ], [ -122.81477463600001, 49.297447036000086 ], [ -122.815311004999941, 49.29749197600011 ], [ -122.815363460999933, 49.297496378000154 ], [ -122.815421012999977, 49.29750120000007 ], [ -122.815876788999972, 49.297539396000133 ], [ -122.816668899999954, 49.297738402000043 ], [ -122.817392792999925, 49.297989406000013 ], [ -122.817978496999899, 49.298270703000128 ], [ -122.81864238799993, 49.298735204000067 ], [ -122.81940128199993, 49.299339500000038 ], [ -122.820201787999949, 49.299997286000043 ], [ -122.819241589999962, 49.300503195000012 ], [ -122.818940700999946, 49.300580005 ], [ -122.818603781999968, 49.300599795000089 ], [ -122.817455696999943, 49.300638898000031 ], [ -122.817058806999967, 49.300711 ], [ -122.816745394999984, 49.300829697000054 ], [ -122.816539013999886, 49.300971306000058 ], [ -122.816384493999976, 49.301178512000057 ], [ -122.816321804999973, 49.301390114000078 ], [ -122.816303454000021, 49.302092202000054 ], [ -122.816303240999972, 49.30210123800007 ], [ -122.816296201999961, 49.302170916000087 ], [ -122.816281543999935, 49.302316816000022 ], [ -122.81583866699998, 49.303198291000079 ], [ -122.815665396999961, 49.303478757000043 ], [ -122.815589331999973, 49.303544902000077 ], [ -122.815275202999956, 49.303818079000102 ], [ -122.815096608000019, 49.303973375000062 ], [ -122.814861781999952, 49.304177538000069 ], [ -122.813956991999959, 49.304964314000088 ], [ -122.813763394999938, 49.305100032000055 ], [ -122.812285399999908, 49.305613964000052 ], [ -122.812072620999913, 49.305687962000093 ], [ -122.81180148699994, 49.305870916000117 ], [ -122.81159526199994, 49.306209869000092 ], [ -122.811607341999945, 49.306493976000041 ], [ -122.811623170999951, 49.306538082000046 ], [ -122.811692739999955, 49.30673157800004 ], [ -122.811869013999967, 49.307222020000012 ], [ -122.811370718999967, 49.307221208000058 ], [ -122.811195360999989, 49.307114628000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290238156", "BldgCostT": "196562694", "sL_LossRatio": "0.741925467357128", "sL_AssetLoss": "4090020", "sL_BldgLoss": "3034490", "sL_StrLoss": "1326090", "sL_NStrLoss": "1708400", "sL_ContLoss": "1055530", "geom_point": "0101000020E6100000F5DA854965B25EC05BBE91EDBA934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.785858051999938, 49.156129939000053 ], [ -122.785861686999951, 49.155442528000101 ], [ -122.784423708999938, 49.15542210900005 ], [ -122.784432601999953, 49.155035806000065 ], [ -122.784432394999897, 49.154979038000128 ], [ -122.784428619999929, 49.154498655000062 ], [ -122.784431526999981, 49.154059912 ], [ -122.78443376499996, 49.153670743000113 ], [ -122.784439904999957, 49.152649992000114 ], [ -122.7844461, 49.151807709000053 ], [ -122.78719619499999, 49.15184208700002 ], [ -122.787479380999969, 49.151845109000128 ], [ -122.790109600999941, 49.151873100000074 ], [ -122.790130700999924, 49.153039770000113 ], [ -122.79015029599995, 49.154124308000057 ], [ -122.790141932999987, 49.155496383000106 ], [ -122.79014978899994, 49.15655359900007 ], [ -122.789559389999951, 49.156567506000073 ], [ -122.788838697999935, 49.156681202000073 ], [ -122.788343515999912, 49.156810092000107 ], [ -122.787677178999957, 49.15698349600008 ], [ -122.787294996999933, 49.156859515000079 ], [ -122.78677128299995, 49.156642003000087 ], [ -122.786429599999934, 49.156509624000094 ], [ -122.786121092999949, 49.156390084000115 ], [ -122.78594039299999, 49.156287390000017 ], [ -122.785858051999938, 49.156129939000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67612167", "BldgCostT": "41261667", "sL_LossRatio": "0.651714309665521", "sL_AssetLoss": "1192900", "sL_BldgLoss": "777430", "sL_StrLoss": "353840", "sL_NStrLoss": "423590", "sL_ContLoss": "415470", "geom_point": "0101000020E610000003B353BD06B25EC0C661B4B7A9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77886459299998, 49.155425270000073 ], [ -122.778896602999964, 49.153617768000089 ], [ -122.778890781999905, 49.151821757000079 ], [ -122.780485499999969, 49.151813601000086 ], [ -122.780690920999945, 49.151812598000049 ], [ -122.781651071999988, 49.151807927000057 ], [ -122.781788035999924, 49.151807882000071 ], [ -122.782814898999916, 49.151807613000059 ], [ -122.783721694999954, 49.151807663000049 ], [ -122.7844461, 49.151807709000053 ], [ -122.784439904999957, 49.152649992000114 ], [ -122.78443376499996, 49.153670743000113 ], [ -122.784431526999981, 49.154059912 ], [ -122.784428619999929, 49.154498655000062 ], [ -122.784432394999897, 49.154979038000128 ], [ -122.784432601999953, 49.155035806000065 ], [ -122.784423708999938, 49.15542210900005 ], [ -122.784092926999932, 49.155427540000119 ], [ -122.783972239999954, 49.155408629000107 ], [ -122.783080711999929, 49.155415301000119 ], [ -122.781636497999955, 49.155425290000025 ], [ -122.77886459299998, 49.155425270000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201887334", "BldgCostT": "135578334", "sL_LossRatio": "0.791734379048023", "sL_AssetLoss": "1698360", "sL_BldgLoss": "1344650", "sL_StrLoss": "767270", "sL_NStrLoss": "577380", "sL_ContLoss": "353710", "geom_point": "0101000020E61000003516DA5A1BB45EC0FA51058AF58D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812274427999938, 49.109580692000065 ], [ -122.81227966099999, 49.108264310000067 ], [ -122.810999265999968, 49.108254558000048 ], [ -122.809377903999973, 49.108242198000013 ], [ -122.809414706999945, 49.107566603000059 ], [ -122.809446107999975, 49.106988102000045 ], [ -122.809953113999967, 49.106983306000103 ], [ -122.810047359999942, 49.106327364 ], [ -122.810276415999979, 49.10638192000004 ], [ -122.811168486999975, 49.106393082000039 ], [ -122.811803021999978, 49.106485790000107 ], [ -122.812291835999957, 49.106486773000043 ], [ -122.814141986999914, 49.106505554000101 ], [ -122.815834772999935, 49.106542202000078 ], [ -122.8158022759999, 49.108158731000032 ], [ -122.817759866999964, 49.108168940000063 ], [ -122.817749304999921, 49.108985045000104 ], [ -122.817763547999959, 49.110939975000086 ], [ -122.817755296999962, 49.111802101000109 ], [ -122.815017581999939, 49.111780496000073 ], [ -122.812263932999954, 49.111793513000094 ], [ -122.812269199999932, 49.110916879000051 ], [ -122.812272890999978, 49.109923069000118 ], [ -122.812274427999938, 49.109580692000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166880131", "BldgCostT": "105042165", "sL_LossRatio": "0.758543396466913", "sL_AssetLoss": "1286637", "sL_BldgLoss": "975970", "sL_StrLoss": "524420", "sL_NStrLoss": "451550", "sL_ContLoss": "310667", "geom_point": "0101000020E6100000E25A074997B35EC074744B61948D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800989763999937, 49.107588331000109 ], [ -122.800961324999946, 49.106202978000034 ], [ -122.800954463999986, 49.105869747000085 ], [ -122.800961982999965, 49.105164890000026 ], [ -122.80096907599993, 49.104501352000113 ], [ -122.80109227699991, 49.104502309000111 ], [ -122.803776704999933, 49.104494754000086 ], [ -122.806164869999961, 49.10451436600006 ], [ -122.812297865999952, 49.104558534000013 ], [ -122.812292344999932, 49.106329474000077 ], [ -122.812291835999957, 49.106486773000043 ], [ -122.811803021999978, 49.106485790000107 ], [ -122.811168486999975, 49.106393082000039 ], [ -122.810276415999979, 49.10638192000004 ], [ -122.810047359999942, 49.106327364 ], [ -122.809953113999967, 49.106983306000103 ], [ -122.809446107999975, 49.106988102000045 ], [ -122.809414706999945, 49.107566603000059 ], [ -122.809377903999973, 49.108242198000013 ], [ -122.808543694999955, 49.10822559900005 ], [ -122.807947107999922, 49.108139428000051 ], [ -122.807431291999947, 49.108032134000091 ], [ -122.806788903999916, 49.107754446000101 ], [ -122.80611114599999, 49.107309010000066 ], [ -122.804843052999928, 49.106475594000031 ], [ -122.804403708999985, 49.106791452 ], [ -122.80418793299998, 49.107002222000091 ], [ -122.803716363999939, 49.107667645000099 ], [ -122.803550121999976, 49.107804114 ], [ -122.803433853999977, 49.107899597 ], [ -122.803324485999966, 49.10798940100004 ], [ -122.802804279, 49.108246065000152 ], [ -122.802280100999937, 49.108400807000073 ], [ -122.80171035099994, 49.108461350000127 ], [ -122.801098277999984, 49.108460264000023 ], [ -122.800964063, 49.108460770000136 ], [ -122.800968032999947, 49.108325366000038 ], [ -122.800989763999937, 49.107588331000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307965916", "BldgCostT": "201886666", "sL_LossRatio": "0.686113967226549", "sL_AssetLoss": "5271340", "sL_BldgLoss": "3616740", "sL_StrLoss": "1632040", "sL_NStrLoss": "1984700", "sL_ContLoss": "1654600", "geom_point": "0101000020E6100000C248AB3113B05EC0319FDE526F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.745958794999964, 49.155196829000062 ], [ -122.745954064000017, 49.154256255000092 ], [ -122.745953729999897, 49.154191935000028 ], [ -122.745948011999985, 49.153095834000041 ], [ -122.745939412999931, 49.151449622000072 ], [ -122.745938489999929, 49.151269714000065 ], [ -122.745936740999966, 49.150936954 ], [ -122.745934424999945, 49.150487090000063 ], [ -122.745922064999988, 49.148121180000082 ], [ -122.746781704999989, 49.148127665000082 ], [ -122.747933709, 49.148136332000043 ], [ -122.749573006999952, 49.148148636000073 ], [ -122.750717207999969, 49.148153460000032 ], [ -122.751550376999944, 49.148156075 ], [ -122.75275209899992, 49.148161715000079 ], [ -122.753659998999922, 49.148167100000094 ], [ -122.753793347999974, 49.148167904000069 ], [ -122.753895678999953, 49.148184070000184 ], [ -122.754082133999987, 49.148213546000079 ], [ -122.754391134999977, 49.148317847000065 ], [ -122.754422264999945, 49.148328346000035 ], [ -122.754635977999939, 49.148506910000059 ], [ -122.75507275199999, 49.149024677000021 ], [ -122.755328335999977, 49.149191885000072 ], [ -122.755606581, 49.149290383000036 ], [ -122.756004115999971, 49.149349238000056 ], [ -122.75622579399996, 49.149295537000029 ], [ -122.756526882999964, 49.149852468000056 ], [ -122.756562442999964, 49.150266242000022 ], [ -122.756574360999934, 49.150761655000053 ], [ -122.756575794999932, 49.150821703000119 ], [ -122.756579986999938, 49.151013602000106 ], [ -122.756600319999976, 49.151939718000058 ], [ -122.756603014999897, 49.152062407000088 ], [ -122.756601475999929, 49.152174381000094 ], [ -122.756600787999943, 49.152226010000106 ], [ -122.756586693999935, 49.153260406000108 ], [ -122.756591859999901, 49.153794902000122 ], [ -122.756605974999957, 49.154319759000067 ], [ -122.75661534999989, 49.15455538600002 ], [ -122.756629366999931, 49.154907971000057 ], [ -122.756657760999985, 49.155483727000075 ], [ -122.755196905999966, 49.155456789000056 ], [ -122.751328222999973, 49.155339212000115 ], [ -122.749597646999973, 49.155287860000065 ], [ -122.74784734, 49.155244004000039 ], [ -122.746987927999925, 49.155222516000087 ], [ -122.745958794999964, 49.155196829000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48480833", "BldgCostT": "29543333", "sL_LossRatio": "0.616145705143982", "sL_AssetLoss": "2031500", "sL_BldgLoss": "1251700", "sL_StrLoss": "532400", "sL_NStrLoss": "719300", "sL_ContLoss": "779800", "geom_point": "0101000020E610000040EC1A67F2AE5EC081E4A5B461914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.732555629999965, 49.133794306000063 ], [ -122.734619537999947, 49.133856977000036 ], [ -122.734581881999944, 49.13678506300004 ], [ -122.734564658999915, 49.138124376000121 ], [ -122.734300215999951, 49.138006414000102 ], [ -122.734126830999969, 49.137977716000172 ], [ -122.733688251999951, 49.137783280000065 ], [ -122.731861921999965, 49.136977584000107 ], [ -122.732331033999984, 49.136991834000099 ], [ -122.732555629999965, 49.133794306000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "611895750", "BldgCostT": "387555000", "sL_LossRatio": "0.689535328701853", "sL_AssetLoss": "7536252", "sL_BldgLoss": "5196512", "sL_StrLoss": "2442312", "sL_NStrLoss": "2754200", "sL_ContLoss": "2339740", "geom_point": "0101000020E6100000DF8C79A169AE5EC08E4D5DBF81904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.717995045999942, 49.130277678000063 ], [ -122.718084329999954, 49.130080343000024 ], [ -122.718104518999922, 49.12983165100011 ], [ -122.71813050599998, 49.129678057000078 ], [ -122.718114966999934, 49.129471212000055 ], [ -122.718136705999939, 49.12836620000013 ], [ -122.718137622999919, 49.12825779800005 ], [ -122.718137786999975, 49.12823981300005 ], [ -122.718141389999971, 49.127813902000113 ], [ -122.718321085999918, 49.127124397000017 ], [ -122.718790754999986, 49.12595031300004 ], [ -122.718133324999911, 49.12594739300004 ], [ -122.717329659999947, 49.125939992000042 ], [ -122.715377140999934, 49.125922727000074 ], [ -122.712645522999949, 49.125899626000077 ], [ -122.712519440999969, 49.125900285000107 ], [ -122.712516502999961, 49.125263088000125 ], [ -122.712574388999954, 49.125161228000096 ], [ -122.71258707600002, 49.124070308000064 ], [ -122.714801717999961, 49.124079427000012 ], [ -122.715822003999961, 49.124084434000025 ], [ -122.716792376999962, 49.124088188 ], [ -122.71685601199999, 49.124088434000036 ], [ -122.716869816999989, 49.124088481000037 ], [ -122.717217224999928, 49.124090172000109 ], [ -122.718409462999929, 49.12409593600006 ], [ -122.718798097, 49.124097800000108 ], [ -122.719656672000028, 49.124101613000072 ], [ -122.720355647999924, 49.12410469600011 ], [ -122.720941493999973, 49.124107308000099 ], [ -122.72216835499998, 49.124115954000068 ], [ -122.723748611999923, 49.124127085000076 ], [ -122.723747870999887, 49.124568934000116 ], [ -122.723745522999977, 49.125979714 ], [ -122.724498294999989, 49.125986978000149 ], [ -122.727034201999956, 49.126011360000078 ], [ -122.727249141999948, 49.126013381000099 ], [ -122.72795925199992, 49.125812424000067 ], [ -122.728551667999966, 49.125726803000063 ], [ -122.728920217999956, 49.125726313000072 ], [ -122.729259706999954, 49.12576912 ], [ -122.729550851999988, 49.125838329000103 ], [ -122.729870156999979, 49.125953441000107 ], [ -122.730089011999951, 49.126075066000027 ], [ -122.730223494999976, 49.126149816000058 ], [ -122.731353027999958, 49.126999682000076 ], [ -122.731678807999984, 49.127140244 ], [ -122.732028282999977, 49.127216669000056 ], [ -122.732640366999988, 49.127241558 ], [ -122.73366079199991, 49.127245514999984 ], [ -122.734704495999921, 49.127249278000136 ], [ -122.734672996000015, 49.12970124600016 ], [ -122.734634295999953, 49.132709752000018 ], [ -122.732533583999952, 49.132645961000065 ], [ -122.732549598, 49.132417953000093 ], [ -122.731146551, 49.13237532600003 ], [ -122.731221956999917, 49.131302102000063 ], [ -122.731216316999948, 49.131301930000063 ], [ -122.731264428999964, 49.130617144000027 ], [ -122.730872984999962, 49.130605248000073 ], [ -122.730759669999927, 49.132217835000034 ], [ -122.730142922999946, 49.132199088000064 ], [ -122.729938399999952, 49.135108846000072 ], [ -122.728556817999973, 49.135066839000039 ], [ -122.728525951999956, 49.135505748000114 ], [ -122.72785332699999, 49.135208962000043 ], [ -122.727087307999938, 49.134799964000123 ], [ -122.726190241999987, 49.134198347000087 ], [ -122.725933173999977, 49.134025933000053 ], [ -122.725165171999933, 49.133503892000107 ], [ -122.724842084999977, 49.133284288000041 ], [ -122.724190004999969, 49.132841021000054 ], [ -122.723646243999937, 49.132524689000086 ], [ -122.723641011999973, 49.132521647000011 ], [ -122.723541071999946, 49.132463497000138 ], [ -122.722828157999942, 49.132176853000018 ], [ -122.722777999999892, 49.132162590000057 ], [ -122.72230234599999, 49.132027314000034 ], [ -122.721965762999957, 49.131931597000111 ], [ -122.720115035999982, 49.131594926000041 ], [ -122.719504636999915, 49.131409607000066 ], [ -122.718115532999946, 49.130861682000081 ], [ -122.71765934299998, 49.130685581000101 ], [ -122.717736781999932, 49.130597813000158 ], [ -122.717995045999942, 49.130277678000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213662255", "BldgCostT": "125273911", "sL_LossRatio": "0.619725852580245", "sL_AssetLoss": "3510520", "sL_BldgLoss": "2175560", "sL_StrLoss": "816860", "sL_NStrLoss": "1358700", "sL_ContLoss": "1334960", "geom_point": "0101000020E610000042D8A667B0AE5EC0DE070F89B18F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.729259706999954, 49.12576912 ], [ -122.728920217999956, 49.125726313000072 ], [ -122.728551667999966, 49.125726803000063 ], [ -122.72795925199992, 49.125812424000067 ], [ -122.727249141999948, 49.126013381000099 ], [ -122.727034201999956, 49.126011360000078 ], [ -122.724498294999989, 49.125986978000149 ], [ -122.723745522999977, 49.125979714 ], [ -122.723747870999887, 49.124568934000116 ], [ -122.723748611999923, 49.124127085000076 ], [ -122.723744802999974, 49.123449891000099 ], [ -122.723744478999976, 49.123392329000083 ], [ -122.72374097, 49.12277509200009 ], [ -122.723873513999976, 49.122606096000062 ], [ -122.724266681999922, 49.121145590000054 ], [ -122.723980083999905, 49.12103319800007 ], [ -122.723814187999977, 49.120860594000099 ], [ -122.723754890999956, 49.120592909000123 ], [ -122.723758412999985, 49.120134300000117 ], [ -122.72376789599997, 49.118735084000036 ], [ -122.724853779999975, 49.118739105000053 ], [ -122.726020685999956, 49.118743405000032 ], [ -122.727732676999963, 49.118747722000101 ], [ -122.73081621399993, 49.118786546000088 ], [ -122.730969643999941, 49.118786704000108 ], [ -122.731121318999939, 49.118830968000069 ], [ -122.732451377, 49.118811907000044 ], [ -122.733411196999924, 49.118798708000071 ], [ -122.734862949, 49.118802259000077 ], [ -122.734853735999977, 49.120242018000098 ], [ -122.734846122999969, 49.121189800000053 ], [ -122.734845163999978, 49.121505762000034 ], [ -122.73483939599997, 49.123374872000042 ], [ -122.734752608999926, 49.125867419000016 ], [ -122.73473997499994, 49.126231014000084 ], [ -122.734737442999972, 49.12630296800009 ], [ -122.734704495999921, 49.127249278000136 ], [ -122.73366079199991, 49.127245514999984 ], [ -122.732640366999988, 49.127241558 ], [ -122.732028282999977, 49.127216669000056 ], [ -122.731678807999984, 49.127140244 ], [ -122.731353027999958, 49.126999682000076 ], [ -122.730223494999976, 49.126149816000058 ], [ -122.730089011999951, 49.126075066000027 ], [ -122.729870156999979, 49.125953441000107 ], [ -122.729550851999988, 49.125838329000103 ], [ -122.729259706999954, 49.12576912 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82929334", "BldgCostT": "54618334", "sL_LossRatio": "0.717528838759293", "sL_AssetLoss": "975250", "sL_BldgLoss": "699770", "sL_StrLoss": "324450", "sL_NStrLoss": "375320", "sL_ContLoss": "275480", "geom_point": "0101000020E6100000DF9E10CFCCAD5EC0E1C546495D904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.718133324999911, 49.12594739300004 ], [ -122.718790754999986, 49.12595031300004 ], [ -122.718321085999918, 49.127124397000017 ], [ -122.718141389999971, 49.127813902000113 ], [ -122.718137786999975, 49.12823981300005 ], [ -122.718137622999919, 49.12825779800005 ], [ -122.718136705999939, 49.12836620000013 ], [ -122.718114966999934, 49.129471212000055 ], [ -122.71813050599998, 49.129678057000078 ], [ -122.718104518999922, 49.12983165100011 ], [ -122.718084329999954, 49.130080343000024 ], [ -122.717995045999942, 49.130277678000063 ], [ -122.717736781999932, 49.130597813000158 ], [ -122.71765934299998, 49.130685581000101 ], [ -122.71322657199994, 49.128981314000036 ], [ -122.712623681999915, 49.12874930800016 ], [ -122.712495669999896, 49.128699439000052 ], [ -122.712496587999937, 49.128589531000053 ], [ -122.712497718999913, 49.128477632000084 ], [ -122.71250050399999, 49.128207778000025 ], [ -122.712501705999927, 49.128090452000073 ], [ -122.71250506399997, 49.12768605800003 ], [ -122.712509919999917, 49.127101245000141 ], [ -122.712519440999969, 49.125900285000107 ], [ -122.712645522999949, 49.125899626000077 ], [ -122.715377140999934, 49.125922727000074 ], [ -122.717329659999947, 49.125939992000042 ], [ -122.718133324999911, 49.12594739300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18344750", "BldgCostT": "12155000", "sL_LossRatio": "0.692676361487706", "sL_AssetLoss": "304630", "sL_BldgLoss": "211010", "sL_StrLoss": "86090", "sL_NStrLoss": "124920", "sL_ContLoss": "93620", "geom_point": "0101000020E61000009697FC4FFEA45EC0E397C989D99A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.577712940999973, 49.20635845200011 ], [ -122.577988087999984, 49.206083964000108 ], [ -122.578416137999966, 49.205863257000026 ], [ -122.578692820999947, 49.205777422000025 ], [ -122.579042801999933, 49.205740783000117 ], [ -122.579107350999976, 49.206317729000027 ], [ -122.579184139999967, 49.206467969000109 ], [ -122.57930384, 49.206706063000055 ], [ -122.57929224499992, 49.206982288000084 ], [ -122.579245206999943, 49.208101818000081 ], [ -122.579234637999946, 49.208353802000033 ], [ -122.579272451999955, 49.209163962000055 ], [ -122.579272953999947, 49.209175055000038 ], [ -122.579233475999928, 49.209395339000032 ], [ -122.579175039999953, 49.209721621000035 ], [ -122.579223004999946, 49.211027069000131 ], [ -122.57924348899995, 49.212295575000034 ], [ -122.579254038999949, 49.213065470000096 ], [ -122.577871809, 49.213063937000072 ], [ -122.576111801999971, 49.213065690000043 ], [ -122.57655483299996, 49.212530993000065 ], [ -122.576703573999964, 49.212151846 ], [ -122.576700731999892, 49.211797960000098 ], [ -122.576694885000023, 49.211059418000062 ], [ -122.576686181999918, 49.210022852000073 ], [ -122.576661259999923, 49.209411106000104 ], [ -122.576755872999968, 49.208556234000078 ], [ -122.57712529099993, 49.207268553000105 ], [ -122.577405882, 49.206664716000013 ], [ -122.577712940999973, 49.20635845200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "266568887", "BldgCostT": "164047080", "sL_LossRatio": "0.678170705740401", "sL_AssetLoss": "3170075", "sL_BldgLoss": "2149852", "sL_StrLoss": "1009762", "sL_NStrLoss": "1140090", "sL_ContLoss": "1020223", "geom_point": "0101000020E61000003E99F2009AA45EC048223D3D1D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.570879803999944, 49.219446793000046 ], [ -122.570942078999934, 49.219001298000059 ], [ -122.570959269999946, 49.218467935000064 ], [ -122.570824121999962, 49.218467565000033 ], [ -122.570781525, 49.218467442000041 ], [ -122.568106638999978, 49.218460154000148 ], [ -122.568083217999956, 49.217918857000043 ], [ -122.568056780999939, 49.217307480000095 ], [ -122.568043276999987, 49.216995619000102 ], [ -122.56803127199997, 49.2167492250001 ], [ -122.56803177099998, 49.216704147000051 ], [ -122.56803842699999, 49.216058305000097 ], [ -122.568041604999976, 49.215495199000067 ], [ -122.56804337799997, 49.214755621000108 ], [ -122.568043396999926, 49.21474661500006 ], [ -122.567942390999946, 49.213033225000117 ], [ -122.567938109999943, 49.212788566 ], [ -122.567921212999977, 49.212332097000065 ], [ -122.56792410599999, 49.212256388000121 ], [ -122.567927144999913, 49.2118642820001 ], [ -122.567931409999986, 49.211322205000073 ], [ -122.567875302999951, 49.21118979700006 ], [ -122.567753303999964, 49.211074990000057 ], [ -122.56788048599999, 49.210896204000065 ], [ -122.567906922999939, 49.210794151000051 ], [ -122.567934178999948, 49.210688800000142 ], [ -122.567916878999938, 49.210032242000082 ], [ -122.567874527999919, 49.208283624000032 ], [ -122.567871123999936, 49.208199713000042 ], [ -122.567843989999957, 49.207526597000069 ], [ -122.567841318999967, 49.206820033000028 ], [ -122.567837287999964, 49.206094489000115 ], [ -122.568016458999963, 49.205936195000127 ], [ -122.568997347000035, 49.205968888000079 ], [ -122.570152231999913, 49.206054715000029 ], [ -122.577015418999977, 49.20632962400007 ], [ -122.577712940999973, 49.20635845200011 ], [ -122.577405882, 49.206664716000013 ], [ -122.57712529099993, 49.207268553000105 ], [ -122.576755872999968, 49.208556234000078 ], [ -122.576661259999923, 49.209411106000104 ], [ -122.576686181999918, 49.210022852000073 ], [ -122.576694885000023, 49.211059418000062 ], [ -122.576700731999892, 49.211797960000098 ], [ -122.576703573999964, 49.212151846 ], [ -122.57655483299996, 49.212530993000065 ], [ -122.576111801999971, 49.213065690000043 ], [ -122.575366612999957, 49.213955744000096 ], [ -122.57511079899993, 49.214260295000066 ], [ -122.574433193999951, 49.215146195000059 ], [ -122.573947522999944, 49.215588507000071 ], [ -122.573618034999953, 49.215774475000117 ], [ -122.573386137999961, 49.215903185000059 ], [ -122.573465576, 49.216073312000056 ], [ -122.573465101999957, 49.216270613000049 ], [ -122.573464839999971, 49.216380173000104 ], [ -122.573464057999971, 49.216707635000049 ], [ -122.573075067000019, 49.216765629000065 ], [ -122.573015702999939, 49.216774515000054 ], [ -122.57273990099999, 49.216883810000034 ], [ -122.572291402999952, 49.21719388500005 ], [ -122.572055300999949, 49.217435998000049 ], [ -122.571894895999961, 49.217636303000113 ], [ -122.571762103999973, 49.218003394000085 ], [ -122.571737159999927, 49.218149962000048 ], [ -122.571725815999969, 49.218216706000135 ], [ -122.571748304999957, 49.218469697000053 ], [ -122.57172550599995, 49.219336795000054 ], [ -122.573892083999908, 49.219335404000091 ], [ -122.573948183999946, 49.219728194000091 ], [ -122.574122303999914, 49.219973490000086 ], [ -122.574162195999975, 49.220084711000013 ], [ -122.574153806999945, 49.220383612000056 ], [ -122.573395365999957, 49.220381049000096 ], [ -122.570827875, 49.220372396000116 ], [ -122.570879803999944, 49.219446793000046 ] ], [ [ -122.572620932999925, 49.21537312700012 ], [ -122.57262270199999, 49.215167990000111 ], [ -122.571699842999976, 49.215138636000056 ], [ -122.571623023999976, 49.216179009000037 ], [ -122.571790089000018, 49.216179629000088 ], [ -122.57179242, 49.215909778000096 ], [ -122.572204348999946, 49.215911304000031 ], [ -122.572209007999945, 49.215371603000051 ], [ -122.572620932999925, 49.21537312700012 ] ], [ [ -122.573044480999982, 49.214025396000089 ], [ -122.573053775999938, 49.212945992000087 ], [ -122.572835, 49.212945184000034 ], [ -122.572755348999962, 49.214024327000082 ], [ -122.573044480999982, 49.214025396000089 ] ], [ [ -122.573060748000017, 49.212136439000162 ], [ -122.573067719999955, 49.211326886000073 ], [ -122.572655826999934, 49.211325364000075 ], [ -122.572665131999955, 49.210245959000126 ], [ -122.573027148, 49.210247297000102 ], [ -122.573047059, 49.209977511000055 ], [ -122.57266745599999, 49.209976108 ], [ -122.572669781999949, 49.209706256000054 ], [ -122.572257903999926, 49.209704733000152 ], [ -122.572262559999956, 49.209165029000069 ], [ -122.572098082999943, 49.209164421000068 ], [ -122.571922622999949, 49.211541254000117 ], [ -122.572936237999983, 49.211573496000028 ], [ -122.572894735999952, 49.212135825000068 ], [ -122.573060748000017, 49.212136439000162 ] ], [ [ -122.572276527999946, 49.207545923000026 ], [ -122.572278589999897, 49.207306752000122 ], [ -122.572233010999952, 49.207305302000115 ], [ -122.572215267999965, 49.207545696000075 ], [ -122.572276527999946, 49.207545923000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274626584", "BldgCostT": "184438334", "sL_LossRatio": "0.706250704445157", "sL_AssetLoss": "4613560", "sL_BldgLoss": "3258330", "sL_StrLoss": "1464730", "sL_NStrLoss": "1793600", "sL_ContLoss": "1355230", "geom_point": "0101000020E61000007E6400C970AD5EC0BF01C177F68F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.707042202999958, 49.126203450000105 ], [ -122.706143696999931, 49.125737652000041 ], [ -122.706256998999891, 49.12566632000005 ], [ -122.707340624999958, 49.12580315800006 ], [ -122.70718171499999, 49.125628852000069 ], [ -122.707175475999961, 49.125290751000108 ], [ -122.707163893999962, 49.124719063000065 ], [ -122.707156319999939, 49.124477296000101 ], [ -122.707145458999932, 49.123966457000044 ], [ -122.707138918999988, 49.123658531000103 ], [ -122.707338540999942, 49.121992943000116 ], [ -122.70741523399991, 49.120862552000048 ], [ -122.707415196999975, 49.120861955000116 ], [ -122.708267696999926, 49.121375305000079 ], [ -122.709070971999935, 49.121871193000111 ], [ -122.709361775999966, 49.122078297000101 ], [ -122.709495307999973, 49.122205882000074 ], [ -122.70961618599992, 49.122394292000088 ], [ -122.70962234699999, 49.122425455000048 ], [ -122.709678703999984, 49.122711599000084 ], [ -122.710674232999978, 49.122684043000149 ], [ -122.711271012999958, 49.122667497000108 ], [ -122.711401605999924, 49.122583202000122 ], [ -122.711401469999899, 49.12198389200011 ], [ -122.711422157999934, 49.121314745000113 ], [ -122.711426599, 49.121170853000123 ], [ -122.711428090999917, 49.121122311000128 ], [ -122.712576809999931, 49.121113302000062 ], [ -122.712583259999974, 49.122974990000117 ], [ -122.71258707600002, 49.124070308000064 ], [ -122.712574388999954, 49.125161228000096 ], [ -122.712516502999961, 49.125263088000125 ], [ -122.712519440999969, 49.125900285000107 ], [ -122.712509919999917, 49.127101245000141 ], [ -122.71250506399997, 49.12768605800003 ], [ -122.712501705999927, 49.128090452000073 ], [ -122.71250050399999, 49.128207778000025 ], [ -122.712497718999913, 49.128477632000084 ], [ -122.712496587999937, 49.128589531000053 ], [ -122.712495669999896, 49.128699439000052 ], [ -122.71094267899997, 49.128087840000013 ], [ -122.710286844, 49.127785873000064 ], [ -122.709735434, 49.127531964000056 ], [ -122.708622212999941, 49.127019374000092 ], [ -122.708567506999941, 49.126994186000054 ], [ -122.707042202999958, 49.126203450000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77690783", "BldgCostT": "52950546", "sL_LossRatio": "0.727124484894248", "sL_AssetLoss": "1244890", "sL_BldgLoss": "905190", "sL_StrLoss": "424990", "sL_NStrLoss": "480200", "sL_ContLoss": "339700", "geom_point": "0101000020E61000004A02F5E29BAD5EC0BF135034518F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.711422719999973, 49.121026902000104 ], [ -122.711415634000019, 49.120900794000086 ], [ -122.71140555099997, 49.120721164000074 ], [ -122.711398948999971, 49.120604041000064 ], [ -122.711391698999975, 49.120475086000084 ], [ -122.710466389999937, 49.119863696000081 ], [ -122.71000898599999, 49.119590194000111 ], [ -122.709655214999913, 49.119556903000117 ], [ -122.709513236999925, 49.119560448000094 ], [ -122.709250405999981, 49.119567 ], [ -122.708234809999936, 49.119593605000091 ], [ -122.707137793999962, 49.119608697000082 ], [ -122.707143393999942, 49.118852791000101 ], [ -122.707309712000011, 49.118849083000015 ], [ -122.70952956, 49.118799483000025 ], [ -122.710543913999985, 49.118776804000028 ], [ -122.712590296999949, 49.118730993000021 ], [ -122.713903492999989, 49.118727841000108 ], [ -122.714338506000018, 49.118726797000058 ], [ -122.71683648199992, 49.118728356000112 ], [ -122.716898613999945, 49.118728392000087 ], [ -122.716906784999964, 49.119194491000044 ], [ -122.716893795999923, 49.119690689000024 ], [ -122.71571858499999, 49.119746698000093 ], [ -122.715647497999925, 49.120054499000091 ], [ -122.715624394000017, 49.120075507000045 ], [ -122.715505787999945, 49.120183151000099 ], [ -122.715373791, 49.120303008000043 ], [ -122.715194709999963, 49.120549905000097 ], [ -122.715186664999933, 49.120571863000073 ], [ -122.7150132, 49.121045406000114 ], [ -122.714629884999979, 49.121002097000037 ], [ -122.71427931399991, 49.121000396000106 ], [ -122.713676293999967, 49.121101782000089 ], [ -122.712576809999931, 49.121113302000062 ], [ -122.711428090999917, 49.121122311000128 ], [ -122.711422719999973, 49.121026902000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110483667", "BldgCostT": "73571667", "sL_LossRatio": "0.699662342278301", "sL_AssetLoss": "1856910", "sL_BldgLoss": "1299210", "sL_StrLoss": "594310", "sL_NStrLoss": "704900", "sL_ContLoss": "557700", "geom_point": "0101000020E610000012F084C169AD5EC02BE930787B8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.709513236999925, 49.119560448000094 ], [ -122.709655214999913, 49.119556903000117 ], [ -122.71000898599999, 49.119590194000111 ], [ -122.710466389999937, 49.119863696000081 ], [ -122.711391698999975, 49.120475086000084 ], [ -122.711398948999971, 49.120604041000064 ], [ -122.71140555099997, 49.120721164000074 ], [ -122.711415634000019, 49.120900794000086 ], [ -122.711422719999973, 49.121026902000104 ], [ -122.711428090999917, 49.121122311000128 ], [ -122.711426599, 49.121170853000123 ], [ -122.711422157999934, 49.121314745000113 ], [ -122.711401469999899, 49.12198389200011 ], [ -122.711401605999924, 49.122583202000122 ], [ -122.711271012999958, 49.122667497000108 ], [ -122.710674232999978, 49.122684043000149 ], [ -122.709678703999984, 49.122711599000084 ], [ -122.70962234699999, 49.122425455000048 ], [ -122.70961618599992, 49.122394292000088 ], [ -122.709495307999973, 49.122205882000074 ], [ -122.709361775999966, 49.122078297000101 ], [ -122.709070971999935, 49.121871193000111 ], [ -122.708267696999926, 49.121375305000079 ], [ -122.707415196999975, 49.120861955000116 ], [ -122.707336848999915, 49.120630777000017 ], [ -122.707329900999966, 49.120434961000065 ], [ -122.707333846, 49.120120305000079 ], [ -122.707137793999962, 49.119608697000082 ], [ -122.708234809999936, 49.119593605000091 ], [ -122.709250405999981, 49.119567 ], [ -122.709513236999925, 49.119560448000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162649802", "BldgCostT": "105608745", "sL_LossRatio": "0.677126188605473", "sL_AssetLoss": "3232780", "sL_BldgLoss": "2189000", "sL_StrLoss": "975190", "sL_NStrLoss": "1213810", "sL_ContLoss": "1043780", "geom_point": "0101000020E6100000238E3C1019AD5EC043CFF3C89B8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.707340624999958, 49.12580315800006 ], [ -122.706256998999891, 49.12566632000005 ], [ -122.706143696999931, 49.125737652000041 ], [ -122.704880926999977, 49.125170894000121 ], [ -122.703441570999985, 49.124524804000082 ], [ -122.701751272, 49.123766489000047 ], [ -122.701660989999979, 49.123725856000114 ], [ -122.701688052999927, 49.123633882000043 ], [ -122.701798525999948, 49.123293015000073 ], [ -122.701701181999979, 49.122965599000111 ], [ -122.701710900999913, 49.122886592000043 ], [ -122.701703666999961, 49.122543945000139 ], [ -122.70171061699989, 49.12175782200007 ], [ -122.701719199999928, 49.120778099000077 ], [ -122.70168638799997, 49.119037897000048 ], [ -122.70171519299997, 49.11896039800007 ], [ -122.703810579999924, 49.118918899000072 ], [ -122.703979869999927, 49.118915536000017 ], [ -122.705020796, 49.118894913000098 ], [ -122.705472578999917, 49.11888596000005 ], [ -122.706034813999935, 49.118874780000127 ], [ -122.707076666999967, 49.118854134000074 ], [ -122.707143393999942, 49.118852791000101 ], [ -122.707137793999962, 49.119608697000082 ], [ -122.707333846, 49.120120305000079 ], [ -122.707329900999966, 49.120434961000065 ], [ -122.707336848999915, 49.120630777000017 ], [ -122.707415196999975, 49.120861955000116 ], [ -122.70741523399991, 49.120862552000048 ], [ -122.707338540999942, 49.121992943000116 ], [ -122.707138918999988, 49.123658531000103 ], [ -122.707145458999932, 49.123966457000044 ], [ -122.707156319999939, 49.124477296000101 ], [ -122.707163893999962, 49.124719063000065 ], [ -122.707175475999961, 49.125290751000108 ], [ -122.70718171499999, 49.125628852000069 ], [ -122.707340624999958, 49.12580315800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145449641", "BldgCostT": "90216975", "sL_LossRatio": "0.668675593937381", "sL_AssetLoss": "2288120", "sL_BldgLoss": "1530010", "sL_StrLoss": "693990", "sL_NStrLoss": "836020", "sL_ContLoss": "758110", "geom_point": "0101000020E6100000AD9ADECDACAC5EC0AB88CBD86D8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69135865699991, 49.119022495000117 ], [ -122.69178278099993, 49.118818352000062 ], [ -122.692195826, 49.118615682000026 ], [ -122.692388444999963, 49.11860357900013 ], [ -122.692500228999947, 49.118572790000087 ], [ -122.692960346999939, 49.118632879000188 ], [ -122.694295937000021, 49.118980358000087 ], [ -122.694437717999975, 49.119008973000049 ], [ -122.695041186999916, 49.119057302000037 ], [ -122.69515995899998, 49.119055523000057 ], [ -122.69545053399996, 49.11905115600004 ], [ -122.695710590999965, 49.119047254000044 ], [ -122.696381012999964, 49.119037199000033 ], [ -122.697413340999944, 49.119024192000033 ], [ -122.698058107999913, 49.119016079000041 ], [ -122.698414277, 49.119011599000046 ], [ -122.698460884999974, 49.1190110000001 ], [ -122.698729499999956, 49.11900793700007 ], [ -122.699072549999983, 49.119004038000071 ], [ -122.699660907999942, 49.11899731600009 ], [ -122.700184236999959, 49.118991341000047 ], [ -122.700494119999988, 49.118987805000089 ], [ -122.70171519299997, 49.11896039800007 ], [ -122.70168638799997, 49.119037897000048 ], [ -122.701719199999928, 49.120778099000077 ], [ -122.70171061699989, 49.12175782200007 ], [ -122.701703666999961, 49.122543945000139 ], [ -122.701710900999913, 49.122886592000043 ], [ -122.701701181999979, 49.122965599000111 ], [ -122.701798525999948, 49.123293015000073 ], [ -122.701688052999927, 49.123633882000043 ], [ -122.701660989999979, 49.123725856000114 ], [ -122.701330931999962, 49.123575679000083 ], [ -122.699488412999969, 49.122737303000079 ], [ -122.692613894, 49.119671019000087 ], [ -122.691590219999938, 49.119214356000036 ], [ -122.691272139999967, 49.119063982000057 ], [ -122.69135865699991, 49.119022495000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268640917", "BldgCostT": "175206667", "sL_LossRatio": "0.777151027752217", "sL_AssetLoss": "1754022", "sL_BldgLoss": "1363140", "sL_StrLoss": "760290", "sL_NStrLoss": "602850", "sL_ContLoss": "390882", "geom_point": "0101000020E610000078EEC04A8FB45EC01F198ABF96914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.820561393999967, 49.138048291000082 ], [ -122.820573917999951, 49.137344903000056 ], [ -122.820470381999925, 49.137374302000147 ], [ -122.819196113999951, 49.137373590000131 ], [ -122.819191894999946, 49.136861904000057 ], [ -122.819173813999925, 49.13467330300012 ], [ -122.819229087999972, 49.134225300000033 ], [ -122.819230268999888, 49.13374774600009 ], [ -122.819264781999905, 49.133747571000121 ], [ -122.819484182999972, 49.133746400000078 ], [ -122.822787232999971, 49.133728517000073 ], [ -122.822934769999918, 49.133775235000066 ], [ -122.8233363, 49.133774474000042 ], [ -122.823343803999975, 49.134520383000094 ], [ -122.823345107999927, 49.13464878900006 ], [ -122.823354928999919, 49.136463819000063 ], [ -122.823359709999977, 49.137345182000075 ], [ -122.823363545999982, 49.138231093000108 ], [ -122.823389662999972, 49.140056513000104 ], [ -122.823397696999947, 49.14100199100011 ], [ -122.82126206399991, 49.141010094000052 ], [ -122.820741143999967, 49.141012716000027 ], [ -122.819189757999965, 49.141013735000094 ], [ -122.819218789, 49.140027916000072 ], [ -122.81952351699999, 49.139680100000092 ], [ -122.818597122999975, 49.139359864000063 ], [ -122.818491439999931, 49.139262110000075 ], [ -122.818452943999958, 49.139063652000033 ], [ -122.818413415999885, 49.138098328000119 ], [ -122.820263839999953, 49.138055243000032 ], [ -122.820561393999967, 49.138048291000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237079156", "BldgCostT": "158262694", "sL_LossRatio": "0.822476362714183", "sL_AssetLoss": "1561516", "sL_BldgLoss": "1284310", "sL_StrLoss": "758100", "sL_NStrLoss": "526210", "sL_ContLoss": "277206", "geom_point": "0101000020E610000081D42F093EB45EC01FF5DF9C74914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.815315993999917, 49.137384907000133 ], [ -122.814844987999933, 49.137359312000058 ], [ -122.813220255999951, 49.137336102000049 ], [ -122.812142702999921, 49.137320704000039 ], [ -122.812167200999951, 49.135542690000136 ], [ -122.812146701999922, 49.133742620000085 ], [ -122.814274704999946, 49.133736158000048 ], [ -122.816742389999931, 49.133728609000073 ], [ -122.817858885999939, 49.133725198000029 ], [ -122.818907925999937, 49.133742488000017 ], [ -122.819154544999932, 49.133746554 ], [ -122.819230268999888, 49.13374774600009 ], [ -122.819229087999972, 49.134225300000033 ], [ -122.819173813999925, 49.13467330300012 ], [ -122.819191894999946, 49.136861904000057 ], [ -122.819196113999951, 49.137373590000131 ], [ -122.820470381999925, 49.137374302000147 ], [ -122.820573917999951, 49.137344903000056 ], [ -122.820561393999967, 49.138048291000082 ], [ -122.820263839999953, 49.138055243000032 ], [ -122.818413415999885, 49.138098328000119 ], [ -122.818452943999958, 49.139063652000033 ], [ -122.818491439999931, 49.139262110000075 ], [ -122.818597122999975, 49.139359864000063 ], [ -122.81952351699999, 49.139680100000092 ], [ -122.819218789, 49.140027916000072 ], [ -122.819189757999965, 49.141013735000094 ], [ -122.817171210999959, 49.141012601000078 ], [ -122.817173494, 49.140278291000087 ], [ -122.817177407999921, 49.139781001000088 ], [ -122.817178201999965, 49.138768189000125 ], [ -122.817076382, 49.138452594000135 ], [ -122.816880091999963, 49.138178195000073 ], [ -122.816687123999898, 49.138033794000087 ], [ -122.816374073999938, 49.137844677000061 ], [ -122.815821291999967, 49.137510699000067 ], [ -122.815530204999931, 49.137418297000096 ], [ -122.815315993999917, 49.137384907000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89993417", "BldgCostT": "57961667", "sL_LossRatio": "0.700738942595603", "sL_AssetLoss": "1870240", "sL_BldgLoss": "1310550", "sL_StrLoss": "595550", "sL_NStrLoss": "715000", "sL_ContLoss": "559690", "geom_point": "0101000020E6100000305C889BF4BC5EC094C1076550974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952251989, 49.180464801 ], [ -122.953116785999967, 49.180097413000041 ], [ -122.955612753999944, 49.182547324000097 ], [ -122.954774004999948, 49.182893882000037 ], [ -122.953603668999918, 49.183381555000061 ], [ -122.951676091999957, 49.184184689000062 ], [ -122.951239431999937, 49.18373267500008 ], [ -122.950654736999937, 49.183132315000115 ], [ -122.950600731999941, 49.183077618000077 ], [ -122.949928600999939, 49.182389203000071 ], [ -122.949286400999966, 49.18172500800015 ], [ -122.950894803999986, 49.181040788000068 ], [ -122.952251989, 49.180464801 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232312635", "BldgCostT": "155542078", "sL_LossRatio": "0.718365640694518", "sL_AssetLoss": "5095330", "sL_BldgLoss": "3660310", "sL_StrLoss": "1629900", "sL_NStrLoss": "2030410", "sL_ContLoss": "1435020", "geom_point": "0101000020E6100000E2BB1082C0BC5EC048296C2F37974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.946656001999955, 49.18627412700004 ], [ -122.94430228499999, 49.183833419000052 ], [ -122.942625414999924, 49.182080450000043 ], [ -122.941509265999969, 49.182536794000029 ], [ -122.940682692999957, 49.18287472700009 ], [ -122.940376700999977, 49.183022596000093 ], [ -122.940233688999967, 49.183091727 ], [ -122.940026909999943, 49.182838940000138 ], [ -122.939936810999882, 49.182730116000108 ], [ -122.939897341999966, 49.18269451900008 ], [ -122.939992300999918, 49.182683795000038 ], [ -122.940554911999968, 49.182577008000038 ], [ -122.941817876999963, 49.18191189300007 ], [ -122.942436106999963, 49.181776597000095 ], [ -122.943410799999967, 49.181309490000046 ], [ -122.943822689999948, 49.181229690000087 ], [ -122.944303905999959, 49.180969089000051 ], [ -122.945155088999968, 49.180735496000068 ], [ -122.945964407999938, 49.180321088000014 ], [ -122.94735152, 49.179989200000072 ], [ -122.94799541299993, 49.17959328700011 ], [ -122.948861490999946, 49.179386802000074 ], [ -122.950454217999919, 49.178686106000029 ], [ -122.951989694999938, 49.178183287000053 ], [ -122.954433790999957, 49.177221999000068 ], [ -122.955477496999904, 49.176763391000058 ], [ -122.955559211999983, 49.176485893000049 ], [ -122.95575777399992, 49.176485970000073 ], [ -122.955757841999969, 49.176410218000058 ], [ -122.955762153999927, 49.176408605000042 ], [ -122.95592201599996, 49.176348843 ], [ -122.956039813999922, 49.176304806000154 ], [ -122.956450477999979, 49.176287698000124 ], [ -122.957124897999961, 49.176035593000137 ], [ -122.957272850999928, 49.175964624000059 ], [ -122.957321613999952, 49.176201602000106 ], [ -122.957328262999951, 49.176431587000046 ], [ -122.957343884999943, 49.176970793000073 ], [ -122.95734059899999, 49.177063485000041 ], [ -122.957339193999985, 49.177097229000033 ], [ -122.957335951999951, 49.177175959000088 ], [ -122.957320195999927, 49.178365395000135 ], [ -122.956375970999886, 49.178747113000092 ], [ -122.954616081999987, 49.179506394000093 ], [ -122.953528195000032, 49.179930610000063 ], [ -122.953116785999967, 49.180097413000041 ], [ -122.952251989, 49.180464801 ], [ -122.950894803999986, 49.181040788000068 ], [ -122.949286400999966, 49.18172500800015 ], [ -122.949928600999939, 49.182389203000071 ], [ -122.950600731999941, 49.183077618000077 ], [ -122.950654736999937, 49.183132315000115 ], [ -122.951239431999937, 49.18373267500008 ], [ -122.951676091999957, 49.184184689000062 ], [ -122.951530826999914, 49.184245455000116 ], [ -122.949337171999929, 49.185168626000049 ], [ -122.949292292999985, 49.185187500000062 ], [ -122.949256013999928, 49.185166048000042 ], [ -122.94923948099995, 49.18515629000008 ], [ -122.949170446999943, 49.185163345000085 ], [ -122.949116074999921, 49.185197843000012 ], [ -122.949116913999944, 49.185247399000112 ], [ -122.94797734899997, 49.185724151000088 ], [ -122.946656001999955, 49.18627412700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "881901093", "BldgCostT": "534939151", "sL_LossRatio": "0.660442609565408", "sL_AssetLoss": "9231974", "sL_BldgLoss": "6097189", "sL_StrLoss": "2477509", "sL_NStrLoss": "3619680", "sL_ContLoss": "3134785", "geom_point": "0101000020E6100000684B2DC606C95EC098FB882586964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136570291999988, 49.183802455000077 ], [ -123.13661039, 49.1828590880001 ], [ -123.136624953999956, 49.182511753000085 ], [ -123.136570003, 49.181533776000045 ], [ -123.136596759999975, 49.179741813000106 ], [ -123.136611025999954, 49.179398961000039 ], [ -123.136520800999904, 49.178370506000057 ], [ -123.136520547999936, 49.177417407000121 ], [ -123.13652241299998, 49.17734268300007 ], [ -123.136698430999957, 49.176377164 ], [ -123.136673065999972, 49.174321011000103 ], [ -123.136667994, 49.173910710000079 ], [ -123.136671047999982, 49.173816204000069 ], [ -123.136466476999942, 49.172018080000043 ], [ -123.136466583999933, 49.172009060000036 ], [ -123.136472203999958, 49.171241254000115 ], [ -123.1364795099999, 49.170248201000078 ], [ -123.13650172899996, 49.170248507000117 ], [ -123.136616476999919, 49.170250093000057 ], [ -123.14014348399995, 49.17023749500008 ], [ -123.140261408999962, 49.170237904000032 ], [ -123.14272180799999, 49.170223998000068 ], [ -123.144621504999975, 49.170211298000012 ], [ -123.147706186999983, 49.170211107000064 ], [ -123.147705603999938, 49.170333595000095 ], [ -123.14761268499997, 49.170417591000074 ], [ -123.147608609999963, 49.171019302000055 ], [ -123.147562666999974, 49.171276595000059 ], [ -123.146575869999964, 49.172527767000091 ], [ -123.146569567999933, 49.172535785000051 ], [ -123.145622626999966, 49.173666486000123 ], [ -123.145618321999962, 49.173759163000057 ], [ -123.145544898999944, 49.173838291000088 ], [ -123.145280947999979, 49.174274508000096 ], [ -123.145174763999947, 49.174663570000092 ], [ -123.145195064999939, 49.1751145160001 ], [ -123.145270325999931, 49.175407488000097 ], [ -123.145445235999915, 49.17572921600005 ], [ -123.145717413999989, 49.176053535000086 ], [ -123.147107331999976, 49.177289395000095 ], [ -123.147270890999948, 49.177435668000037 ], [ -123.147503798999963, 49.177644002000079 ], [ -123.147631120999975, 49.177757795000076 ], [ -123.14772363799996, 49.177840475000046 ], [ -123.147730738999954, 49.177846822000042 ], [ -123.14544546599997, 49.178911270000128 ], [ -123.144736091999931, 49.178892466000079 ], [ -123.14474013099999, 49.178826719000028 ], [ -123.144756354999984, 49.178562600000106 ], [ -123.144694848999919, 49.178562678000091 ], [ -123.144695681, 49.178848572000092 ], [ -123.144696880000012, 49.179259929000132 ], [ -123.144455053999977, 49.179372559000079 ], [ -123.143873933999956, 49.179373284000079 ], [ -123.143874715999956, 49.179642845000039 ], [ -123.143874074999943, 49.179643144000124 ], [ -123.143077481999967, 49.17964413300006 ], [ -123.14305143699994, 49.179644166000053 ], [ -123.143051473999947, 49.179656919000102 ], [ -123.143052855999912, 49.180136457000046 ], [ -123.142990282999946, 49.180183962000093 ], [ -123.14288312799999, 49.180184094 ], [ -123.142879691999909, 49.18023998000006 ], [ -123.14264149199991, 49.180233660000063 ], [ -123.142642107999976, 49.180448285000061 ], [ -123.142634233999956, 49.180454263000051 ], [ -123.141818835, 49.180455266000081 ], [ -123.141820594999928, 49.181071903000024 ], [ -123.141472016999955, 49.181336504000065 ], [ -123.14079269299999, 49.182075682000047 ], [ -123.140588481999913, 49.182075931000035 ], [ -123.140589149999954, 49.182311525000088 ], [ -123.140370000999951, 49.182615917000078 ], [ -123.140178346999932, 49.182616149000047 ], [ -123.140179093999933, 49.182881077000054 ], [ -123.140175540999934, 49.182886013000051 ], [ -123.139884097999968, 49.18288636700008 ], [ -123.139858438999951, 49.183303324000043 ], [ -123.139874789999951, 49.183303759000069 ], [ -123.139807843999961, 49.18339674000002 ], [ -123.139792589999985, 49.183417930000104 ], [ -123.139606143999941, 49.183676882000071 ], [ -123.139399648000023, 49.183963679000037 ], [ -123.139089323999954, 49.183971286 ], [ -123.13900214899995, 49.183957210000138 ], [ -123.13798373899999, 49.183902078000067 ], [ -123.137775525999984, 49.183890798000043 ], [ -123.136681195999955, 49.183810566000069 ], [ -123.136570291999988, 49.183802455000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "354761334", "BldgCostT": "234758334", "sL_LossRatio": "0.755847687134436", "sL_AssetLoss": "4675823", "sL_BldgLoss": "3534210", "sL_StrLoss": "1647240", "sL_NStrLoss": "1886970", "sL_ContLoss": "1141613", "geom_point": "0101000020E6100000A2FD5A8738C95EC01D39D1CF50954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141055696999928, 49.166216884000107 ], [ -123.1411103, 49.165841761000109 ], [ -123.141262991999923, 49.165855732000104 ], [ -123.141254713999913, 49.165807373000057 ], [ -123.141202486999987, 49.165501932000062 ], [ -123.14104460899992, 49.165194111000069 ], [ -123.140864599999972, 49.164932586000084 ], [ -123.140755382999927, 49.164970214000036 ], [ -123.140344382999942, 49.164542202000099 ], [ -123.140231016999934, 49.164379752000038 ], [ -123.140164644999956, 49.164166272000045 ], [ -123.140173546999961, 49.162795393000032 ], [ -123.14028047799998, 49.162795545000087 ], [ -123.143052106999974, 49.16279703700009 ], [ -123.143298358, 49.162796803000063 ], [ -123.14364968599989, 49.162796404000034 ], [ -123.146480633999943, 49.162793060000098 ], [ -123.147770711999968, 49.162791504000047 ], [ -123.147766614999966, 49.163670375000038 ], [ -123.147760353999956, 49.165019683000018 ], [ -123.147755209999971, 49.166127890000027 ], [ -123.147749639999944, 49.166800870000024 ], [ -123.147731290999971, 49.169019901000055 ], [ -123.147705589999973, 49.17013181500009 ], [ -123.147706119999924, 49.170200952000137 ], [ -123.147706186999983, 49.170211107000064 ], [ -123.144621504999975, 49.170211298000012 ], [ -123.14272180799999, 49.170223998000068 ], [ -123.140261408999962, 49.170237904000032 ], [ -123.14014348399995, 49.17023749500008 ], [ -123.140145011999934, 49.170168196000077 ], [ -123.140161992999978, 49.168154289000057 ], [ -123.140171438999943, 49.167666304000072 ], [ -123.140207620999973, 49.167412314000046 ], [ -123.140371194999972, 49.167115775000077 ], [ -123.140720567999963, 49.16676200400012 ], [ -123.140926158999918, 49.166495410000046 ], [ -123.141055696999928, 49.166216884000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "575228884", "BldgCostT": "360093753", "sL_LossRatio": "0.708573328528452", "sL_AssetLoss": "5022670", "sL_BldgLoss": "3558930", "sL_StrLoss": "1422280", "sL_NStrLoss": "2136650", "sL_ContLoss": "1463740", "geom_point": "0101000020E6100000DE6D4019DDC85EC063D075864E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136481289999949, 49.170174411000104 ], [ -123.136474899999925, 49.168832011000106 ], [ -123.13651143599995, 49.168832041000023 ], [ -123.136618789999943, 49.168832200000082 ], [ -123.13662142699999, 49.167483602000054 ], [ -123.136623362999941, 49.166510789000078 ], [ -123.136519196999942, 49.166509893000061 ], [ -123.136472579, 49.166509495000028 ], [ -123.136472650999977, 49.1665004890001 ], [ -123.136484312999926, 49.164717099 ], [ -123.13648456, 49.164708089000044 ], [ -123.136519705999916, 49.163474800000067 ], [ -123.136519688999954, 49.163465737000159 ], [ -123.136518687999981, 49.162778400000064 ], [ -123.136535884999915, 49.162778602000074 ], [ -123.136640620999941, 49.162779879000063 ], [ -123.140173546999961, 49.162795393000032 ], [ -123.140164644999956, 49.164166272000045 ], [ -123.140231016999934, 49.164379752000038 ], [ -123.140344382999942, 49.164542202000099 ], [ -123.140755382999927, 49.164970214000036 ], [ -123.140864599999972, 49.164932586000084 ], [ -123.14104460899992, 49.165194111000069 ], [ -123.141202486999987, 49.165501932000062 ], [ -123.141254713999913, 49.165807373000057 ], [ -123.141262991999923, 49.165855732000104 ], [ -123.1411103, 49.165841761000109 ], [ -123.141055696999928, 49.166216884000107 ], [ -123.140926158999918, 49.166495410000046 ], [ -123.140720567999963, 49.16676200400012 ], [ -123.140371194999972, 49.167115775000077 ], [ -123.140207620999973, 49.167412314000046 ], [ -123.140171438999943, 49.167666304000072 ], [ -123.140161992999978, 49.168154289000057 ], [ -123.140145011999934, 49.170168196000077 ], [ -123.14014348399995, 49.17023749500008 ], [ -123.136616476999919, 49.170250093000057 ], [ -123.13650172899996, 49.170248507000117 ], [ -123.1364795099999, 49.170248201000078 ], [ -123.136481289999949, 49.170174411000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "915813646", "BldgCostT": "627946525", "sL_LossRatio": "0.854420532792644", "sL_AssetLoss": "9962600", "sL_BldgLoss": "8512250", "sL_StrLoss": "3971320", "sL_NStrLoss": "4540930", "sL_ContLoss": "1450350", "geom_point": "0101000020E6100000FEA676A777B35EC03F2529E1F0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804217951999959, 49.194109997000112 ], [ -122.80422609699994, 49.193213727000099 ], [ -122.802452385999942, 49.193211542000036 ], [ -122.802020321999962, 49.193210993 ], [ -122.800994024999923, 49.193209694000096 ], [ -122.800903165999927, 49.193208780000099 ], [ -122.800760994999962, 49.193207295000086 ], [ -122.800809787999967, 49.191561696000072 ], [ -122.800988413999931, 49.191557993000082 ], [ -122.802050660999925, 49.19155534100004 ], [ -122.803476717999942, 49.19155174200008 ], [ -122.804162997999953, 49.19155 ], [ -122.806445438999958, 49.191544201000049 ], [ -122.80643421799999, 49.191793841000106 ], [ -122.806377600999923, 49.193050481000078 ], [ -122.80634732399993, 49.194159882000065 ], [ -122.806345839999935, 49.194213590000096 ], [ -122.8063164599999, 49.195290227000065 ], [ -122.806294816999966, 49.19608326900007 ], [ -122.806283723999968, 49.196490036000085 ], [ -122.806282024999973, 49.196552775000086 ], [ -122.806279642999982, 49.196639195000017 ], [ -122.806247511999985, 49.197816549000073 ], [ -122.80625, 49.19873833700008 ], [ -122.804772003999958, 49.198721527000053 ], [ -122.804503839999981, 49.198746860000028 ], [ -122.804488865999957, 49.19874826900012 ], [ -122.80389612, 49.198609053000041 ], [ -122.803948422999966, 49.198563592000099 ], [ -122.804030379999972, 49.198492295000051 ], [ -122.801452376, 49.197261908000037 ], [ -122.80156948299999, 49.197132690000018 ], [ -122.801752896999929, 49.196959149000108 ], [ -122.802588507999971, 49.196814185000072 ], [ -122.802632392, 49.195638789000036 ], [ -122.802554712999921, 49.19545180500009 ], [ -122.802152055999926, 49.195207818000085 ], [ -122.801652485999966, 49.194905136000031 ], [ -122.80209449299997, 49.194722721000055 ], [ -122.802455483999978, 49.194500994000066 ], [ -122.80263125, 49.194310729000073 ], [ -122.802716410999977, 49.194218605000117 ], [ -122.804103297, 49.194201205000084 ], [ -122.804217951999959, 49.194109997000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "372279303", "BldgCostT": "256148746", "sL_LossRatio": "0.867780271345507", "sL_AssetLoss": "3921200", "sL_BldgLoss": "3402740", "sL_StrLoss": "1571440", "sL_NStrLoss": "1831300", "sL_ContLoss": "518460", "geom_point": "0101000020E6100000AF0E6F8C53B35EC040E91B03F8984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801339156999987, 49.19738681300008 ], [ -122.801327325999964, 49.197381170000035 ], [ -122.801150694999961, 49.197296724000132 ], [ -122.800863406999952, 49.197159388000074 ], [ -122.800590989999975, 49.197070294000071 ], [ -122.80036110399999, 49.197021982000052 ], [ -122.800456607999962, 49.196889692000084 ], [ -122.800496350999978, 49.196825146000045 ], [ -122.800595593999986, 49.196663991000023 ], [ -122.80074429299998, 49.196139596000087 ], [ -122.800750311999977, 49.195086516000039 ], [ -122.800755036999959, 49.194258079000058 ], [ -122.800760954999959, 49.193216324000062 ], [ -122.800760994999962, 49.193207295000086 ], [ -122.800903165999927, 49.193208780000099 ], [ -122.800994024999923, 49.193209694000096 ], [ -122.802020321999962, 49.193210993 ], [ -122.802452385999942, 49.193211542000036 ], [ -122.80422609699994, 49.193213727000099 ], [ -122.804217951999959, 49.194109997000112 ], [ -122.804103297, 49.194201205000084 ], [ -122.802716410999977, 49.194218605000117 ], [ -122.80263125, 49.194310729000073 ], [ -122.802455483999978, 49.194500994000066 ], [ -122.80209449299997, 49.194722721000055 ], [ -122.801652485999966, 49.194905136000031 ], [ -122.802152055999926, 49.195207818000085 ], [ -122.802554712999921, 49.19545180500009 ], [ -122.802632392, 49.195638789000036 ], [ -122.802588507999971, 49.196814185000072 ], [ -122.801752896999929, 49.196959149000108 ], [ -122.80156948299999, 49.197132690000018 ], [ -122.801452376, 49.197261908000037 ], [ -122.804030379999972, 49.198492295000051 ], [ -122.803948422999966, 49.198563592000099 ], [ -122.80389612, 49.198609053000041 ], [ -122.80388498399999, 49.198603780000077 ], [ -122.801339156999987, 49.19738681300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197378917", "BldgCostT": "134121667", "sL_LossRatio": "0.756527837329128", "sL_AssetLoss": "2752060", "sL_BldgLoss": "2082010", "sL_StrLoss": "950280", "sL_NStrLoss": "1131730", "sL_ContLoss": "670050", "geom_point": "0101000020E6100000F328BFB9BDC15EC0DAFC643156AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026964795999945, 49.359129113000051 ], [ -123.026205282, 49.358481101000088 ], [ -123.025143989999918, 49.356780594000057 ], [ -123.024374510999948, 49.356169594000065 ], [ -123.023973796999968, 49.355963111000079 ], [ -123.023375963999939, 49.355788808000113 ], [ -123.02340746699997, 49.355298899000076 ], [ -123.024172972999935, 49.355319969000099 ], [ -123.024172883999952, 49.355136584 ], [ -123.023759780999939, 49.355136670000078 ], [ -123.023759521, 49.354596966000045 ], [ -123.023346422999964, 49.354597050000166 ], [ -123.023346166999943, 49.354057346000054 ], [ -123.022933072999962, 49.354057430000132 ], [ -123.022932792999981, 49.353455657000062 ], [ -123.021332963999967, 49.353411598000065 ], [ -123.020888992999971, 49.352959492000082 ], [ -123.019497706, 49.351835804000068 ], [ -123.019332299999931, 49.35164629000009 ], [ -123.019194515, 49.35120479100005 ], [ -123.019344524999966, 49.350665105000125 ], [ -123.019247998999973, 49.350431489000115 ], [ -123.019252586999968, 49.350424643000025 ], [ -123.019533814999974, 49.34995685399999 ], [ -123.019919816999959, 49.349473764000031 ], [ -123.020019828999949, 49.349482310000042 ], [ -123.020566697999982, 49.349602918000102 ], [ -123.020589501999922, 49.349569292000048 ], [ -123.022391290999934, 49.348754298000088 ], [ -123.02244512099999, 49.348174895000056 ], [ -123.022687189999942, 49.347877998000058 ], [ -123.024692596999941, 49.347790892000027 ], [ -123.024705979999951, 49.348235823000032 ], [ -123.024721105999973, 49.348739208000069 ], [ -123.024714761999931, 49.34908195100008 ], [ -123.024703196999951, 49.349704194000012 ], [ -123.022383285999922, 49.34967100800003 ], [ -123.022803489999916, 49.350628292000131 ], [ -123.024689799999962, 49.350661313000018 ], [ -123.02640570399997, 49.350691418000075 ], [ -123.028391111999937, 49.350745880000076 ], [ -123.028381106999959, 49.351695903000163 ], [ -123.02833412699999, 49.351891799000057 ], [ -123.028211481999989, 49.352107293000117 ], [ -123.02807738099996, 49.352202697000024 ], [ -123.02749618199999, 49.352722594000056 ], [ -123.027365806999967, 49.352888388000032 ], [ -123.027311784999966, 49.353085015000026 ], [ -123.02758311299999, 49.353619403000081 ], [ -123.028302416999935, 49.354658692000029 ], [ -123.02846319199989, 49.354770292000062 ], [ -123.028707112999982, 49.354872489000087 ], [ -123.029090502999964, 49.354968608000028 ], [ -123.029383587999973, 49.35497029600004 ], [ -123.02971661, 49.354972299000039 ], [ -123.030323487999951, 49.354910613000058 ], [ -123.03095208199997, 49.354703602000036 ], [ -123.03142604599995, 49.354533021000123 ], [ -123.03218218, 49.354260891000109 ], [ -123.032455166999924, 49.354147383000033 ], [ -123.032903513999941, 49.353960904000076 ], [ -123.036024894999983, 49.352335311000033 ], [ -123.037051212999984, 49.351850009000074 ], [ -123.037653099999915, 49.35184399600012 ], [ -123.037551861999958, 49.35239336000005 ], [ -123.037140340999912, 49.354607361000049 ], [ -123.037064833999963, 49.3550135220001 ], [ -123.03710458099999, 49.355403007000035 ], [ -123.036994372999985, 49.355403043000074 ], [ -123.036979287999927, 49.355411799000109 ], [ -123.03697948199995, 49.355672899000091 ], [ -123.036433142999954, 49.355673073000077 ], [ -123.036265235999977, 49.35571486200012 ], [ -123.036106208999982, 49.355673177000064 ], [ -123.035327051999957, 49.355673416000059 ], [ -123.035326858999952, 49.355403565000074 ], [ -123.034087542999984, 49.355403937000069 ], [ -123.034087356999976, 49.355134085 ], [ -123.032445610999929, 49.35513455800001 ], [ -123.032533334999954, 49.35523206199999 ], [ -123.032541635999948, 49.355349062000059 ], [ -123.032469834999944, 49.355460763000067 ], [ -123.032435178999933, 49.355489540000065 ], [ -123.0324353, 49.355674264000086 ], [ -123.032118885999949, 49.35567435200003 ], [ -123.032073236999963, 49.355692462000043 ], [ -123.032022227999931, 49.355730058000077 ], [ -123.032022366999939, 49.355944231000109 ], [ -123.031674171999924, 49.355944327000024 ], [ -123.031431135999952, 49.356069462000065 ], [ -123.03126313599995, 49.356111263000059 ], [ -123.03093363699999, 49.356013663000041 ], [ -123.030860323999903, 49.355944547000043 ], [ -123.030783037999967, 49.355944568000055 ], [ -123.030782992999931, 49.355871642000118 ], [ -123.030647136999974, 49.355743563000047 ], [ -123.030553614999945, 49.355674777000033 ], [ -123.028889609999922, 49.355675205000047 ], [ -123.028702589999952, 49.358588805000089 ], [ -123.030629293999965, 49.358641725000034 ], [ -123.030398567999939, 49.362238005000073 ], [ -123.029974293999913, 49.362226355000089 ], [ -123.029953194999962, 49.36221259400002 ], [ -123.02877030399999, 49.361178611000071 ], [ -123.028215884999952, 49.361010807000063 ], [ -123.02794198699999, 49.360927907000118 ], [ -123.027585305999963, 49.360640184000047 ], [ -123.026964795999945, 49.359129113000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120551584", "BldgCostT": "80223334", "sL_LossRatio": "0.724750433292344", "sL_AssetLoss": "2065580", "sL_BldgLoss": "1497030", "sL_StrLoss": "652000", "sL_NStrLoss": "845030", "sL_ContLoss": "568550", "geom_point": "0101000020E61000009F98810C55C15EC05B125E8AC4AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022929685999927, 49.346771425000021 ], [ -123.022929558999948, 49.346501573000111 ], [ -123.022103498999954, 49.346501733000132 ], [ -123.022103134999924, 49.345692177000025 ], [ -123.022516159999924, 49.345692097000097 ], [ -123.02251589799999, 49.345118669000051 ], [ -123.02004889799997, 49.345050696000037 ], [ -123.01970101699996, 49.344243300000088 ], [ -123.019562018999977, 49.344153599000045 ], [ -123.019150593999882, 49.344135087000041 ], [ -123.01807326399998, 49.343746172000074 ], [ -123.017855915999945, 49.34366755300006 ], [ -123.016740435999964, 49.342994733000097 ], [ -123.016865141000025, 49.341059101000063 ], [ -123.017714685999948, 49.341082541000063 ], [ -123.017715105999955, 49.341076021000063 ], [ -123.017870096999928, 49.341080297000111 ], [ -123.017908831999975, 49.340478824000037 ], [ -123.017970997999967, 49.340480539000048 ], [ -123.017970931, 49.340295846000039 ], [ -123.018016632999945, 49.340295839000134 ], [ -123.018024443999963, 49.340174526000034 ], [ -123.01838386799993, 49.340184440000023 ], [ -123.018383606999961, 49.33948622400009 ], [ -123.01879657899994, 49.339486157000088 ], [ -123.018796476999981, 49.339216304000026 ], [ -123.018383506999953, 49.339216371000099 ], [ -123.018383103999938, 49.338136961000046 ], [ -123.017144221999928, 49.338137151000083 ], [ -123.017143821999966, 49.336985268000085 ], [ -123.017143753999989, 49.336787887000114 ], [ -123.017556703999944, 49.336787826000041 ], [ -123.017556596999952, 49.33649141800008 ], [ -123.017556509999977, 49.336248121000054 ], [ -123.020447125999951, 49.336247646000054 ], [ -123.020447014999903, 49.335977793000026 ], [ -123.020859955999981, 49.335977720000074 ], [ -123.02085995, 49.335961212000072 ], [ -123.021437909, 49.335966484000025 ], [ -123.021650112999907, 49.335968402000084 ], [ -123.021734539999912, 49.335922401000076 ], [ -123.02194097099995, 49.335877385000046 ], [ -123.022261622999963, 49.33589051900006 ], [ -123.02244351, 49.335893989000091 ], [ -123.022416289, 49.336274300000099 ], [ -123.022229591999974, 49.336802291 ], [ -123.02210449899998, 49.337207811000077 ], [ -123.021688879999957, 49.337250409000113 ], [ -123.021001788999939, 49.337450285000031 ], [ -123.020901483999978, 49.337511495000058 ], [ -123.02089620000001, 49.337594199000101 ], [ -123.021098701999918, 49.338041105000059 ], [ -123.021035290999947, 49.339067992000025 ], [ -123.022207004999984, 49.339080408000051 ], [ -123.022152288999948, 49.340379495000036 ], [ -123.022098089999957, 49.341630017000071 ], [ -123.024263718999975, 49.341658996000042 ], [ -123.025779823, 49.341687199000056 ], [ -123.025711208, 49.343504699000071 ], [ -123.024185098, 49.343480716000094 ], [ -123.023348720999948, 49.343432501000038 ], [ -123.023354516999959, 49.344199099000065 ], [ -123.023371992999941, 49.344739988000114 ], [ -123.024422700999963, 49.34483172900012 ], [ -123.024832308999976, 49.344867499000053 ], [ -123.02441188, 49.34547740000005 ], [ -123.023884283999962, 49.346191593000079 ], [ -123.022911327999964, 49.34756224500007 ], [ -123.022687189999942, 49.347877998000058 ], [ -123.02244512099999, 49.348174895000056 ], [ -123.022391290999934, 49.348754298000088 ], [ -123.020589501999922, 49.349569292000048 ], [ -123.020566697999982, 49.349602918000102 ], [ -123.020019828999949, 49.349482310000042 ], [ -123.019919816999959, 49.349473764000031 ], [ -123.020085740999917, 49.349212847000068 ], [ -123.020386221999971, 49.348430358000101 ], [ -123.02039558300001, 49.348339030000076 ], [ -123.020651554999986, 49.347585947000063 ], [ -123.020587474999928, 49.34710329100006 ], [ -123.022516827999965, 49.347156443000095 ], [ -123.022516652999968, 49.346771506000117 ], [ -123.022929685999927, 49.346771425000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "553610250", "BldgCostT": "378045000", "sL_LossRatio": "0.816635518177368", "sL_AssetLoss": "6292440", "sL_BldgLoss": "5138630", "sL_StrLoss": "2322880", "sL_NStrLoss": "2815750", "sL_ContLoss": "1153810", "geom_point": "0101000020E6100000A2AC4B3297B55EC0C0852B56C3974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834180897999985, 49.187339913000095 ], [ -122.834181016999977, 49.187330883000037 ], [ -122.834186497999937, 49.186934880000074 ], [ -122.834198868000016, 49.186035428000089 ], [ -122.83420768799999, 49.185395404000083 ], [ -122.834205587999961, 49.185104312000121 ], [ -122.834211581999909, 49.184271103000036 ], [ -122.835506522999935, 49.184277419000111 ], [ -122.835945573999965, 49.184279551000053 ], [ -122.835959295999942, 49.184279619000051 ], [ -122.83639845499999, 49.184281768000055 ], [ -122.836661981999924, 49.184283053000073 ], [ -122.836700425999979, 49.18428323600007 ], [ -122.83821830899997, 49.184290604000097 ], [ -122.83950950799999, 49.184283390000076 ], [ -122.839733505999973, 49.184285177000092 ], [ -122.840172695999925, 49.184288667 ], [ -122.840831322999975, 49.184293894000064 ], [ -122.840886179999984, 49.184294344000108 ], [ -122.841739990999898, 49.184301111000089 ], [ -122.841738596999932, 49.186098507000075 ], [ -122.841240492999987, 49.18610100800003 ], [ -122.83856205499994, 49.186062914000019 ], [ -122.837793349000023, 49.186051966000065 ], [ -122.83719783199993, 49.186043511000058 ], [ -122.837184086999983, 49.186043307000041 ], [ -122.837153593999972, 49.187761467000065 ], [ -122.837081187, 49.187759628000023 ], [ -122.83662160799993, 49.187757573000084 ], [ -122.835778285999965, 49.187752622000083 ], [ -122.83501504099992, 49.187747020000074 ], [ -122.834864072999935, 49.187745937000059 ], [ -122.834187790999962, 49.187741018000054 ], [ -122.834182128999956, 49.187411336000018 ], [ -122.834180897999985, 49.187339913000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "847616775", "BldgCostT": "562028541", "sL_LossRatio": "0.744000495126404", "sL_AssetLoss": "9032037", "sL_BldgLoss": "6719840", "sL_StrLoss": "3221120", "sL_NStrLoss": "3498720", "sL_ContLoss": "2312197", "geom_point": "0101000020E6100000AF457521B3C45EC07F67203B94834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073524591999941, 49.031010814000133 ], [ -123.073494801999914, 49.028000408000011 ], [ -123.07214791, 49.028008700000079 ], [ -123.07044711799989, 49.02842817600007 ], [ -123.070283987999957, 49.028370555000073 ], [ -123.068732825999973, 49.028366038000065 ], [ -123.068622108999946, 49.028366618000057 ], [ -123.068630802999934, 49.027466676000117 ], [ -123.068623846999955, 49.026853706000075 ], [ -123.068618877999967, 49.026416564000073 ], [ -123.068597301999958, 49.024693999000164 ], [ -123.068667100999946, 49.024694097000101 ], [ -123.068736704999964, 49.024694176000068 ], [ -123.069407790999932, 49.024694492000037 ], [ -123.070647286999986, 49.024696806000058 ], [ -123.071375584999927, 49.024698948000093 ], [ -123.071572457999963, 49.024699527000053 ], [ -123.07213660799999, 49.024704998000097 ], [ -123.072800112999971, 49.024695195000056 ], [ -123.07454896199998, 49.024698606000115 ], [ -123.075471805999896, 49.024700387000038 ], [ -123.07546548799999, 49.024958054000074 ], [ -123.0754543, 49.025415402000071 ], [ -123.075338502999955, 49.025737602000071 ], [ -123.07533369, 49.026205092000083 ], [ -123.075353342999946, 49.026523519000129 ], [ -123.075430011999956, 49.027764794000035 ], [ -123.076212404999964, 49.027757294000033 ], [ -123.076394786999984, 49.027791100000073 ], [ -123.076850786999927, 49.027994513000088 ], [ -123.076939685999989, 49.027995207000039 ], [ -123.079772895999952, 49.027999311 ], [ -123.07979218399997, 49.028433214000067 ], [ -123.079589585999955, 49.028679101000115 ], [ -123.07939249899999, 49.028835104000088 ], [ -123.078567726999907, 49.029215397000023 ], [ -123.07806081399994, 49.029474594000092 ], [ -123.077701791999971, 49.029727102000045 ], [ -123.076961507999926, 49.030263810000029 ], [ -123.076849679999953, 49.030346298000012 ], [ -123.076077898999927, 49.031319201 ], [ -123.075943893999948, 49.031385794000109 ], [ -123.075322300999957, 49.03137878900003 ], [ -123.075315498999942, 49.032032788000024 ], [ -123.074587143999949, 49.032034583000069 ], [ -123.07358508199998, 49.03203702400009 ], [ -123.071398514999984, 49.032042302000058 ], [ -123.070784123999957, 49.032029094000109 ], [ -123.070803716999947, 49.031020398000173 ], [ -123.072153981999961, 49.031004099000072 ], [ -123.073524591999941, 49.031010814000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237957719", "BldgCostT": "155585412", "sL_LossRatio": "0.698593450061078", "sL_AssetLoss": "4297750", "sL_BldgLoss": "3002380", "sL_StrLoss": "1315640", "sL_NStrLoss": "1686740", "sL_ContLoss": "1295370", "geom_point": "0101000020E6100000085B0E4F8AC45EC04A61ADF3D2834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068624810999921, 49.029737253000093 ], [ -123.068622108999946, 49.028366618000057 ], [ -123.068732825999973, 49.028366038000065 ], [ -123.070283987999957, 49.028370555000073 ], [ -123.07044711799989, 49.02842817600007 ], [ -123.07214791, 49.028008700000079 ], [ -123.073494801999914, 49.028000408000011 ], [ -123.073524591999941, 49.031010814000133 ], [ -123.072153981999961, 49.031004099000072 ], [ -123.070803716999947, 49.031020398000173 ], [ -123.070784123999957, 49.032029094000109 ], [ -123.06871113499993, 49.032017551000074 ], [ -123.068611378999947, 49.032016638000044 ], [ -123.068624810999921, 49.029737253000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "492837417", "BldgCostT": "334976667", "sL_LossRatio": "0.788768794025312", "sL_AssetLoss": "3167496", "sL_BldgLoss": "2498422", "sL_StrLoss": "1126840", "sL_NStrLoss": "1371582", "sL_ContLoss": "669074", "geom_point": "0101000020E610000068EC9FC8CFC15EC07625D09A7E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026910437999959, 49.218202897000062 ], [ -123.026909706999945, 49.218200850000073 ], [ -123.026318809999978, 49.218357600000104 ], [ -123.026210200999969, 49.218252814000074 ], [ -123.02612299499998, 49.21822158800007 ], [ -123.025889319999948, 49.218206993000102 ], [ -123.025602316999951, 49.218320004000056 ], [ -123.025519905999928, 49.218352432000124 ], [ -123.025480905999984, 49.218367804000088 ], [ -123.025234607999963, 49.218098890000114 ], [ -123.025126027999974, 49.21786620200006 ], [ -123.025061615999931, 49.217478805000063 ], [ -123.027280096999959, 49.217486289000078 ], [ -123.027313692999954, 49.217486414000057 ], [ -123.027303862999958, 49.215767977000034 ], [ -123.02730063099996, 49.215200687000056 ], [ -123.027302755999983, 49.215106962000064 ], [ -123.027339747999946, 49.215135737000089 ], [ -123.027680294999954, 49.215143555000111 ], [ -123.027602107999954, 49.214847075000073 ], [ -123.02762485099997, 49.214737696000029 ], [ -123.027778402999942, 49.213999485000087 ], [ -123.027718186999934, 49.213975618000063 ], [ -123.027303319999959, 49.213816486000049 ], [ -123.027419326999961, 49.213356561000069 ], [ -123.027455493999952, 49.213314495000127 ], [ -123.02748630399995, 49.213090988000026 ], [ -123.027471122999941, 49.212921195 ], [ -123.027390488, 49.212765906000129 ], [ -123.027314592999957, 49.212558407000095 ], [ -123.027257509999956, 49.212485600000022 ], [ -123.027272486999976, 49.212422091000064 ], [ -123.02719519299994, 49.212236205000053 ], [ -123.026860208999949, 49.212174700000027 ], [ -123.026575903999955, 49.21219928200005 ], [ -123.026468114999929, 49.212189092000109 ], [ -123.026400720999931, 49.212149405000076 ], [ -123.026338185999933, 49.212053997000062 ], [ -123.026301913999959, 49.211977302000079 ], [ -123.026058196999955, 49.211711090000037 ], [ -123.026455271999978, 49.211511299000108 ], [ -123.026682989999969, 49.21138430600007 ], [ -123.026864084999971, 49.211234294000135 ], [ -123.027098376999902, 49.210854294000079 ], [ -123.027277921999925, 49.210558400000046 ], [ -123.02857999699999, 49.21090509400004 ], [ -123.028807699999959, 49.210992388000101 ], [ -123.029312580999942, 49.211315286000058 ], [ -123.029474612999977, 49.211508107000071 ], [ -123.029551085999941, 49.21159849800005 ], [ -123.029703500999958, 49.211897307000136 ], [ -123.029726796999967, 49.212177211000018 ], [ -123.029715613999954, 49.212675003000079 ], [ -123.02971039000002, 49.212777593000077 ], [ -123.029731603999963, 49.213067287000079 ], [ -123.029750435999929, 49.213246851000072 ], [ -123.029769757999958, 49.213431225000065 ], [ -123.029781082999989, 49.213539282000063 ], [ -123.02982065, 49.213916540000113 ], [ -123.02984618, 49.21416011700007 ], [ -123.029879076999947, 49.21447399700002 ], [ -123.029988286999952, 49.215019308000102 ], [ -123.030108994, 49.215320898000058 ], [ -123.030250396999961, 49.215599494000067 ], [ -123.030306381999978, 49.215689298000079 ], [ -123.030418606999916, 49.215842936000051 ], [ -123.03073548299993, 49.21627679700007 ], [ -123.031151888999943, 49.216675595000083 ], [ -123.0298852199999, 49.217275806000018 ], [ -123.029708887000012, 49.216920591000047 ], [ -123.029647978999961, 49.216864793000084 ], [ -123.029479506999934, 49.21681691200012 ], [ -123.029022607999977, 49.216750287000131 ], [ -123.028687494999986, 49.216732005000047 ], [ -123.02844571699994, 49.216756907000075 ], [ -123.028315014999961, 49.216891092000118 ], [ -123.028188721999982, 49.217020095000123 ], [ -123.02817780099997, 49.217361201000081 ], [ -123.028206783999977, 49.217594391000048 ], [ -123.028279106999989, 49.21775229900004 ], [ -123.028371683999964, 49.217870990000058 ], [ -123.028598679999902, 49.218012397000159 ], [ -123.028944786999915, 49.218180498000045 ], [ -123.02870341299996, 49.218520695000102 ], [ -123.028618977999912, 49.218584840000112 ], [ -123.028476890999968, 49.218692812000036 ], [ -123.02817781600001, 49.218798103000076 ], [ -123.027667503999979, 49.218902000000114 ], [ -123.02741659899999, 49.218919417000087 ], [ -123.027028412999968, 49.21891590300001 ], [ -123.026633186999931, 49.218870787000071 ], [ -123.026930082999911, 49.218521289000115 ], [ -123.026938385999969, 49.218284603000029 ], [ -123.026910437999959, 49.218202897000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52970251", "BldgCostT": "32430001", "sL_LossRatio": "0.68885712340889", "sL_AssetLoss": "734550", "sL_BldgLoss": "506000", "sL_StrLoss": "222380", "sL_NStrLoss": "283620", "sL_ContLoss": "228550", "geom_point": "0101000020E610000061990A33A5C15EC0019DA4549D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023639296999988, 49.215730824000055 ], [ -123.023636953, 49.214828852000082 ], [ -123.023636908999947, 49.21480360400016 ], [ -123.023672613999977, 49.214803808000021 ], [ -123.023801487999989, 49.214804599000068 ], [ -123.025511991999963, 49.214819368000036 ], [ -123.025561314999905, 49.214819797000082 ], [ -123.025585598999953, 49.214547493000119 ], [ -123.025562407, 49.214374789000047 ], [ -123.025465695999983, 49.213891099000072 ], [ -123.025209987999943, 49.21327769100008 ], [ -123.025442790999975, 49.213241795000108 ], [ -123.025482871999913, 49.213343880000146 ], [ -123.025501799000025, 49.213392107000054 ], [ -123.025680119999961, 49.213544799000069 ], [ -123.02601488699996, 49.213694503000063 ], [ -123.026286000999946, 49.213747089000094 ], [ -123.026607009999964, 49.213750485000027 ], [ -123.027004301999938, 49.21365339199999 ], [ -123.027207320999977, 49.213547297000119 ], [ -123.027347288999962, 49.213440298000052 ], [ -123.027419326999961, 49.213356561000069 ], [ -123.027303319999959, 49.213816486000049 ], [ -123.027718186999934, 49.213975618000063 ], [ -123.027778402999942, 49.213999485000087 ], [ -123.02762485099997, 49.214737696000029 ], [ -123.027602107999954, 49.214847075000073 ], [ -123.027680294999954, 49.215143555000111 ], [ -123.027339747999946, 49.215135737000089 ], [ -123.027302755999983, 49.215106962000064 ], [ -123.02730063099996, 49.215200687000056 ], [ -123.027303862999958, 49.215767977000034 ], [ -123.027313692999954, 49.217486414000057 ], [ -123.027280096999959, 49.217486289000078 ], [ -123.025061615999931, 49.217478805000063 ], [ -123.02458161199999, 49.217472796000052 ], [ -123.023802595999939, 49.217464812000081 ], [ -123.023643811999975, 49.217473794000057 ], [ -123.023641827999953, 49.216701996000076 ], [ -123.023641582999971, 49.216612015000031 ], [ -123.023639296999988, 49.215730824000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141006917", "BldgCostT": "92671667", "sL_LossRatio": "0.705042564438228", "sL_AssetLoss": "2096116", "sL_BldgLoss": "1477851", "sL_StrLoss": "680551", "sL_NStrLoss": "797300", "sL_ContLoss": "618265", "geom_point": "0101000020E610000032155E5914A95EC05B7380608E944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.640361497999962, 49.162587479000074 ], [ -122.640357290999958, 49.162474686000088 ], [ -122.640292205999941, 49.161269602000125 ], [ -122.639551, 49.160256086000068 ], [ -122.639422686, 49.159924999000097 ], [ -122.639133992999973, 49.159177090000064 ], [ -122.639008707999949, 49.158846182000083 ], [ -122.6389237399999, 49.158621749000162 ], [ -122.638869228, 49.158477769000086 ], [ -122.638851918999976, 49.158432015000095 ], [ -122.63887363399999, 49.158153773000095 ], [ -122.638908199999989, 49.157710137 ], [ -122.640756813999985, 49.157780472000091 ], [ -122.64114208699999, 49.157856484000071 ], [ -122.641445854, 49.157978591000067 ], [ -122.641770944999948, 49.158166267000112 ], [ -122.642046178, 49.1584371060001 ], [ -122.642136432999948, 49.158630041000031 ], [ -122.642138954999979, 49.159013108000046 ], [ -122.642124425999967, 49.159593891000036 ], [ -122.64212015599999, 49.159747881000051 ], [ -122.642123468999912, 49.159930010000075 ], [ -122.642248459999948, 49.160249294000032 ], [ -122.642457136999894, 49.160492809000111 ], [ -122.642632984999977, 49.160658717000103 ], [ -122.64285374399995, 49.160791752000122 ], [ -122.643213237999973, 49.160939931000058 ], [ -122.643647717999912, 49.16103729000006 ], [ -122.643948705999932, 49.161046694000049 ], [ -122.644960342999966, 49.160955663000031 ], [ -122.645327747999943, 49.160938366000074 ], [ -122.645368750999978, 49.160936430000078 ], [ -122.645616627999985, 49.160924755000053 ], [ -122.645658269999942, 49.161734382000127 ], [ -122.645702473999933, 49.162680147000032 ], [ -122.64569816199996, 49.16279715800011 ], [ -122.643346383000036, 49.162704022000099 ], [ -122.642205750999949, 49.162659483000027 ], [ -122.640361497999962, 49.162587479000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202057698", "BldgCostT": "131395270", "sL_LossRatio": "0.719375504111697", "sL_AssetLoss": "2157260", "sL_BldgLoss": "1551880", "sL_StrLoss": "687660", "sL_NStrLoss": "864220", "sL_ContLoss": "605380", "geom_point": "0101000020E6100000425F73D4B2A85EC00A2043C78E944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.632842692999986, 49.162291185000079 ], [ -122.632844898999949, 49.162203891000111 ], [ -122.632837522999978, 49.161948980000041 ], [ -122.63278997299993, 49.160310696000117 ], [ -122.632787989999912, 49.159781380000034 ], [ -122.632783521999897, 49.158601898000065 ], [ -122.63283918599997, 49.158344988000138 ], [ -122.633063097999965, 49.158054590000063 ], [ -122.633418419999941, 49.157748504000139 ], [ -122.63385217699998, 49.157600098000096 ], [ -122.633920294999939, 49.157576803000062 ], [ -122.634435110999974, 49.15751179500004 ], [ -122.63505534799998, 49.157531141000064 ], [ -122.63554724, 49.157546564000029 ], [ -122.63549799399999, 49.158378607000053 ], [ -122.63549619299998, 49.1591427030001 ], [ -122.635486078999989, 49.15965433100007 ], [ -122.63548019699999, 49.159950487000046 ], [ -122.638639710999911, 49.160058302000124 ], [ -122.639422686, 49.159924999000097 ], [ -122.639551, 49.160256086000068 ], [ -122.640292205999941, 49.161269602000125 ], [ -122.640357290999958, 49.162474686000088 ], [ -122.640361497999962, 49.162587479000074 ], [ -122.63774500699999, 49.162476884000043 ], [ -122.636345059999954, 49.162421913000088 ], [ -122.634947483999966, 49.162367005000135 ], [ -122.633725953999928, 49.162323007000097 ], [ -122.63346539299999, 49.162313638000079 ], [ -122.632842692999986, 49.162291185000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58704750", "BldgCostT": "39015000", "sL_LossRatio": "0.708036132824872", "sL_AssetLoss": "789310", "sL_BldgLoss": "558860", "sL_StrLoss": "269990", "sL_NStrLoss": "288870", "sL_ContLoss": "230450", "geom_point": "0101000020E610000049BAC91CC9A85EC08EAEB94055944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63554724, 49.157546564000029 ], [ -122.638451581999973, 49.157687918000093 ], [ -122.638908199999989, 49.157710137 ], [ -122.63887363399999, 49.158153773000095 ], [ -122.638851918999976, 49.158432015000095 ], [ -122.638869228, 49.158477769000086 ], [ -122.6389237399999, 49.158621749000162 ], [ -122.639008707999949, 49.158846182000083 ], [ -122.639133992999973, 49.159177090000064 ], [ -122.639422686, 49.159924999000097 ], [ -122.638639710999911, 49.160058302000124 ], [ -122.63548019699999, 49.159950487000046 ], [ -122.635486078999989, 49.15965433100007 ], [ -122.63549619299998, 49.1591427030001 ], [ -122.63549799399999, 49.158378607000053 ], [ -122.63554724, 49.157546564000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228362646", "BldgCostT": "151941525", "sL_LossRatio": "0.77560590804944", "sL_AssetLoss": "2522660", "sL_BldgLoss": "1956590", "sL_StrLoss": "866590", "sL_NStrLoss": "1090000", "sL_ContLoss": "566070", "geom_point": "0101000020E6100000EC0EEF5A7EAA5EC01C77203E728C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.659946220999942, 49.095527026000084 ], [ -122.660174882999968, 49.095520801000085 ], [ -122.660199522999932, 49.095554222000068 ], [ -122.66044689899995, 49.095889694000022 ], [ -122.660570481999983, 49.095912380000094 ], [ -122.660705033999989, 49.095937056000061 ], [ -122.660945493999961, 49.095981172000023 ], [ -122.660963242, 49.095984453000085 ], [ -122.661541297999946, 49.096090504000095 ], [ -122.661925481, 49.096091894000047 ], [ -122.662364088999951, 49.095985108 ], [ -122.662352482999893, 49.095661799000077 ], [ -122.662668009999905, 49.095572109000052 ], [ -122.662915704999975, 49.095546410000104 ], [ -122.663475893999959, 49.095637597000078 ], [ -122.663707277999947, 49.09555492400014 ], [ -122.663874395999954, 49.095495201000112 ], [ -122.664193275999978, 49.095754551000098 ], [ -122.664229882999976, 49.095784303000059 ], [ -122.664515003999981, 49.0958317730001 ], [ -122.664777105999988, 49.095875403000043 ], [ -122.665035913999986, 49.096002205000048 ], [ -122.665595291999978, 49.09640809800004 ], [ -122.666309483999953, 49.096123197000061 ], [ -122.666555790999922, 49.096096198000019 ], [ -122.666772196999929, 49.096366811000102 ], [ -122.667291495999947, 49.096755589000082 ], [ -122.667879978999935, 49.096738834000057 ], [ -122.667986899999931, 49.096735788000068 ], [ -122.66814080199994, 49.096731385000098 ], [ -122.66845598499998, 49.096508151000066 ], [ -122.66847059399997, 49.096497791000075 ], [ -122.66859098, 49.096465847000047 ], [ -122.668591360999955, 49.096480234000083 ], [ -122.668640801, 49.098464894000116 ], [ -122.66630702599997, 49.098464167000053 ], [ -122.664355033999968, 49.098463509000112 ], [ -122.660115016999939, 49.098453516000127 ], [ -122.659976989999947, 49.098506897000043 ], [ -122.659835972999957, 49.098507011000095 ], [ -122.659840247999966, 49.098408926000062 ], [ -122.659874859999945, 49.097640369000068 ], [ -122.659929013999914, 49.096445413000055 ], [ -122.65993146299995, 49.096391488000073 ], [ -122.659937569999954, 49.096256648000086 ], [ -122.659952301999965, 49.095931307000086 ], [ -122.659948523999944, 49.095681640000073 ], [ -122.659946220999942, 49.095527026000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22840750", "BldgCostT": "14545000", "sL_LossRatio": "0.689029056420008", "sL_AssetLoss": "431230", "sL_BldgLoss": "297130", "sL_StrLoss": "126230", "sL_NStrLoss": "170900", "sL_ContLoss": "134100", "geom_point": "0101000020E6100000D98F149121AA5EC04817DD725C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65684242699993, 49.098433775000025 ], [ -122.65685743799996, 49.097732344000043 ], [ -122.656875611999979, 49.096885596000078 ], [ -122.65685236399996, 49.096768532000105 ], [ -122.65710334799995, 49.096504020000104 ], [ -122.657141789999955, 49.096492112000078 ], [ -122.657212791999939, 49.096258501000122 ], [ -122.656927486999933, 49.095834091000057 ], [ -122.657054217999956, 49.09545669900006 ], [ -122.657014311999944, 49.095114895000066 ], [ -122.656537499999985, 49.094906995000024 ], [ -122.656345591999923, 49.094699008000077 ], [ -122.656416106000037, 49.094511011000073 ], [ -122.656450179999965, 49.094507899000099 ], [ -122.65718328299999, 49.094441203000017 ], [ -122.657607617999972, 49.094478307000024 ], [ -122.657703338999966, 49.094433349000056 ], [ -122.658088565999904, 49.094252357000137 ], [ -122.65810190299996, 49.094246096000099 ], [ -122.658716211999916, 49.094535199000077 ], [ -122.658827614999936, 49.094682886000029 ], [ -122.659002018999942, 49.094914107000065 ], [ -122.659302594999971, 49.095121996000039 ], [ -122.659286387999941, 49.095545003000055 ], [ -122.659946220999942, 49.095527026000084 ], [ -122.659948523999944, 49.095681640000073 ], [ -122.659952301999965, 49.095931307000086 ], [ -122.659937569999954, 49.096256648000086 ], [ -122.65993146299995, 49.096391488000073 ], [ -122.659929013999914, 49.096445413000055 ], [ -122.659874859999945, 49.097640369000068 ], [ -122.659840247999966, 49.098408926000062 ], [ -122.659835972999957, 49.098507011000095 ], [ -122.656855477999954, 49.098538157000057 ], [ -122.656841791999952, 49.098538294000029 ], [ -122.65684209599999, 49.098487811000041 ], [ -122.65684242699993, 49.098433775000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181665083", "BldgCostT": "115358333", "sL_LossRatio": "0.692554312581064", "sL_AssetLoss": "2467200", "sL_BldgLoss": "1708670", "sL_StrLoss": "763770", "sL_NStrLoss": "944900", "sL_ContLoss": "758530", "geom_point": "0101000020E610000078320E81A5A75EC0817EF0EBD18B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.611798695999951, 49.092598953000063 ], [ -122.607882551999921, 49.091569644000039 ], [ -122.607942054999938, 49.091466967000059 ], [ -122.611642642999982, 49.092485880000034 ], [ -122.611586569999943, 49.091605332000064 ], [ -122.611569182999986, 49.091331752000045 ], [ -122.612210346999959, 49.091325688000097 ], [ -122.614368188999933, 49.091305512000147 ], [ -122.614525160999918, 49.091305992000116 ], [ -122.616127680999952, 49.09131111100006 ], [ -122.616309214999944, 49.091311682000033 ], [ -122.616322187999955, 49.091308892000065 ], [ -122.616587389999935, 49.091251910000054 ], [ -122.616646095999926, 49.091208302000013 ], [ -122.61674220899999, 49.091136905000077 ], [ -122.616804603999967, 49.090993800000057 ], [ -122.616818376999944, 49.090113029000051 ], [ -122.616818823999964, 49.090086054000047 ], [ -122.61682938199999, 49.089409318000016 ], [ -122.616824815999919, 49.089019792000059 ], [ -122.616798474999925, 49.088899098000034 ], [ -122.616746788999961, 49.088662213000077 ], [ -122.617010027000021, 49.088802496 ], [ -122.617367104, 49.088992826000023 ], [ -122.617913211999948, 49.089283894000047 ], [ -122.618408131999956, 49.089404546000083 ], [ -122.619402169999887, 49.089401529000021 ], [ -122.62093478499996, 49.089396892000096 ], [ -122.621629206999927, 49.089409049000032 ], [ -122.621643112999934, 49.089409305000054 ], [ -122.621623595999949, 49.090375689000048 ], [ -122.623275886, 49.090378086000072 ], [ -122.624689989999936, 49.090381065000052 ], [ -122.624679563999933, 49.091714602000131 ], [ -122.624667720999952, 49.09223696400008 ], [ -122.62464193699995, 49.092932819000076 ], [ -122.624499058999959, 49.092958059000047 ], [ -122.624444727999929, 49.093046495000074 ], [ -122.624493303999941, 49.093131837000072 ], [ -122.624640646999964, 49.093177019000066 ], [ -122.624604874999946, 49.094520557000052 ], [ -122.624583347999973, 49.094911917000047 ], [ -122.624579352999945, 49.095930207000102 ], [ -122.624578817999975, 49.096032023000063 ], [ -122.618457737999947, 49.094388026000026 ], [ -122.614743559999937, 49.09339022100005 ], [ -122.614490034999946, 49.09332209900009 ], [ -122.611798695999951, 49.092598953000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100258477", "BldgCostT": "65784856", "sL_LossRatio": "0.728296248866122", "sL_AssetLoss": "937050", "sL_BldgLoss": "682450", "sL_StrLoss": "364690", "sL_NStrLoss": "317760", "sL_ContLoss": "254600", "geom_point": "0101000020E61000006571295BA2B25EC01F96D58D5AA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790774582999973, 49.31707009400003 ], [ -122.790494509999974, 49.31660589800007 ], [ -122.789871506999972, 49.315848705000072 ], [ -122.788934277999928, 49.314883094000031 ], [ -122.788416816000023, 49.314272205000051 ], [ -122.788207702999941, 49.313915611000027 ], [ -122.787839450999982, 49.313201484000075 ], [ -122.788601372999949, 49.312618577000094 ], [ -122.788720523, 49.312622120000093 ], [ -122.788667397999944, 49.313388568000072 ], [ -122.788882651, 49.313388961000065 ], [ -122.788883805999944, 49.313119109000063 ], [ -122.789709303999956, 49.313120614000155 ], [ -122.789710451999923, 49.312850763 ], [ -122.790535944999974, 49.312852262000057 ], [ -122.790537087999951, 49.312582409000115 ], [ -122.790949833999889, 49.312583157000077 ], [ -122.79095211799995, 49.312043452000097 ], [ -122.790539376999959, 49.31204270500016 ], [ -122.790543954999976, 49.310963297000036 ], [ -122.791782146999964, 49.310965535000044 ], [ -122.791777596999964, 49.312044943000032 ], [ -122.792603075999978, 49.312046427000091 ], [ -122.792599677999974, 49.312855984000045 ], [ -122.792186931999964, 49.312855242000104 ], [ -122.79218239, 49.313934649000103 ], [ -122.792595145999925, 49.313935391000022 ], [ -122.792591746999946, 49.314744947000072 ], [ -122.79217898499995, 49.314744206000043 ], [ -122.792173307999946, 49.316093464000041 ], [ -122.791760534, 49.3160927220001 ], [ -122.79175826, 49.316632426000076 ], [ -122.791345480999965, 49.316631681000032 ], [ -122.791344341999945, 49.316901533000092 ], [ -122.79175712199999, 49.316902277000104 ], [ -122.791754846999964, 49.317441982000091 ], [ -122.792167630999955, 49.317442724000088 ], [ -122.792160818999918, 49.319061834000117 ], [ -122.792573615999956, 49.319062576000107 ], [ -122.792572482999944, 49.319332427000113 ], [ -122.793810885999946, 49.319334644000023 ], [ -122.79381201299995, 49.319064793000123 ], [ -122.795050408999927, 49.319066994000131 ], [ -122.795051528999977, 49.318797143000062 ], [ -122.795418830999949, 49.318797794000041 ], [ -122.795244904999961, 49.318966588000073 ], [ -122.793693219999952, 49.320257398000109 ], [ -122.793549656999957, 49.320335192000073 ], [ -122.793201503999967, 49.320523909000023 ], [ -122.793096084999945, 49.32055590900007 ], [ -122.792854299999973, 49.320630573000059 ], [ -122.792178897999975, 49.320192595000044 ], [ -122.791776388999921, 49.319529388000099 ], [ -122.791137193999987, 49.317833010000079 ], [ -122.790774582999973, 49.31707009400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.774769585253456", "sL_AssetLoss": "17360", "sL_BldgLoss": "13450", "sL_StrLoss": "7240", "sL_NStrLoss": "6210", "sL_ContLoss": "3910", "geom_point": "0101000020E6100000FDB5BC727DB35EC003EBFED21EA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804187173999935, 49.305160855000096 ], [ -122.805224256999949, 49.305719802000098 ], [ -122.804183831999978, 49.306003880000048 ], [ -122.804187173999935, 49.305160855000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183570667", "BldgCostT": "120576667", "sL_LossRatio": "0.808897122230254", "sL_AssetLoss": "430229", "sL_BldgLoss": "348011", "sL_StrLoss": "209348", "sL_NStrLoss": "138663", "sL_ContLoss": "82218", "geom_point": "0101000020E61000008011D13B17B35EC0210F54F8F9A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802977129999974, 49.304508660000039 ], [ -122.803775368999979, 49.304938902000117 ], [ -122.8037738579999, 49.305319578000073 ], [ -122.802948488999931, 49.305318174 ], [ -122.802944173999961, 49.306400263000128 ], [ -122.802778619999941, 49.306482516000095 ], [ -122.802478193999917, 49.306690741000097 ], [ -122.802213138999932, 49.306963953000079 ], [ -122.802085301, 49.307194294000062 ], [ -122.80200899499999, 49.307331755000085 ], [ -122.801970656999956, 49.307568452000105 ], [ -122.801940862000023, 49.310451177000111 ], [ -122.801870343999951, 49.310775200000123 ], [ -122.801697216, 49.3111313160001 ], [ -122.801454063999984, 49.311465553000104 ], [ -122.800530183999982, 49.312256150000032 ], [ -122.800059157999954, 49.312681829000063 ], [ -122.798919301999916, 49.313711865000109 ], [ -122.798070606999957, 49.314210188000104 ], [ -122.796512905999947, 49.314953989000024 ], [ -122.796157998999902, 49.315173200000082 ], [ -122.795847820999981, 49.315421698000058 ], [ -122.795624119999957, 49.315672692000057 ], [ -122.795511203999936, 49.315953101000098 ], [ -122.795474301999917, 49.316306887000145 ], [ -122.795540402999933, 49.316823294000109 ], [ -122.795765492, 49.317988846000056 ], [ -122.79464209799994, 49.317986855000157 ], [ -122.79464546399997, 49.317177299000065 ], [ -122.79340711399999, 49.317175093000081 ], [ -122.793411629, 49.316095686000089 ], [ -122.792998854999936, 49.316094947000082 ], [ -122.793002248999983, 49.315285391000018 ], [ -122.793415015999926, 49.315286130000096 ], [ -122.793416143999963, 49.315016277000062 ], [ -122.793828908999956, 49.31501701500008 ], [ -122.793830034999971, 49.314747163000028 ], [ -122.794655560999985, 49.314748632000047 ], [ -122.794656681999967, 49.314478781000041 ], [ -122.795482201999974, 49.314480244000087 ], [ -122.795483320999921, 49.314210393000124 ], [ -122.796308836999941, 49.314211850000071 ], [ -122.796309948999962, 49.313941998000054 ], [ -122.797135461, 49.313943450000124 ], [ -122.79713767699991, 49.313403746000041 ], [ -122.797550427999923, 49.313404470000094 ], [ -122.79755264, 49.312864765 ], [ -122.79879088199999, 49.312866928000126 ], [ -122.79879198, 49.312597076000095 ], [ -122.79920472500001, 49.312597794000084 ], [ -122.799205822000019, 49.312327941000099 ], [ -122.799618563999957, 49.312328657000073 ], [ -122.79962403699993, 49.310979396000029 ], [ -122.80086223, 49.310981537000075 ], [ -122.800864405999945, 49.31044183200013 ], [ -122.801277132999957, 49.310442542000054 ], [ -122.801292326999942, 49.306664610000034 ], [ -122.80170502299994, 49.306665319000047 ], [ -122.801710436999926, 49.305316056000024 ], [ -122.802123120999951, 49.305316763000086 ], [ -122.802126363, 49.304507206000039 ], [ -122.802977129999974, 49.304508660000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211079334", "BldgCostT": "139118334", "sL_LossRatio": "0.713533995441492", "sL_AssetLoss": "2430620", "sL_BldgLoss": "1734330", "sL_StrLoss": "839960", "sL_NStrLoss": "894370", "sL_ContLoss": "696290", "geom_point": "0101000020E610000073207FC4CAB25EC051992863F8A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790169392999971, 49.308264076000086 ], [ -122.790142958999951, 49.308199712 ], [ -122.790143830999938, 49.307994175000104 ], [ -122.790058482999925, 49.30799402000013 ], [ -122.789793306999982, 49.307348313000084 ], [ -122.788845588999934, 49.306382670000062 ], [ -122.789260782, 49.306321092000076 ], [ -122.791302693999938, 49.306108892000054 ], [ -122.791751204999983, 49.305987086000101 ], [ -122.792096305999934, 49.305830585000074 ], [ -122.792323587999959, 49.305625693000145 ], [ -122.79243250699993, 49.305444280000096 ], [ -122.79250108399999, 49.305247193000078 ], [ -122.792500409999974, 49.305058882000054 ], [ -122.793052693000021, 49.30502760600011 ], [ -122.793489204999929, 49.304980191000062 ], [ -122.793745213999898, 49.304897703000023 ], [ -122.794370212999965, 49.304509899000045 ], [ -122.794982182999931, 49.304231699000084 ], [ -122.795249875999957, 49.304169836000014 ], [ -122.796035984999946, 49.303988185000058 ], [ -122.796214800999962, 49.303907903000045 ], [ -122.796266222999947, 49.303741902000077 ], [ -122.79618869699999, 49.303589200000054 ], [ -122.795940200999937, 49.303483610000079 ], [ -122.795072208999969, 49.303606492000021 ], [ -122.794518424, 49.303780100000061 ], [ -122.794042005, 49.304085805000064 ], [ -122.793699810999939, 49.304261185000016 ], [ -122.793425084999967, 49.30431610700002 ], [ -122.792787705999928, 49.304384594000076 ], [ -122.792268680999925, 49.304591698000131 ], [ -122.792062389999955, 49.304433287000094 ], [ -122.791100116999985, 49.303990301000049 ], [ -122.790428689999928, 49.30369561500008 ], [ -122.790131, 49.303527307000117 ], [ -122.790007123999928, 49.303429899000086 ], [ -122.789811989999947, 49.303208811000061 ], [ -122.789686022999916, 49.302942904000069 ], [ -122.789662288999963, 49.302689988000125 ], [ -122.789720891999949, 49.302438610000124 ], [ -122.789849981999936, 49.302222596000043 ], [ -122.79005989499997, 49.302011697000076 ], [ -122.790323510999926, 49.301839399000073 ], [ -122.79077690099993, 49.30164750700002 ], [ -122.791491283999932, 49.301418296000115 ], [ -122.79208500699994, 49.301264700000011 ], [ -122.792917971999927, 49.301111988000031 ], [ -122.793566584999951, 49.301018713000104 ], [ -122.79441035, 49.300979200000036 ], [ -122.794851226999967, 49.300958533000056 ], [ -122.796581097999976, 49.300877495000087 ], [ -122.796845307999945, 49.300865115000093 ], [ -122.798429804999955, 49.30079089 ], [ -122.798585501999952, 49.300769473000031 ], [ -122.798500933999918, 49.301235652000031 ], [ -122.79939849, 49.302579635 ], [ -122.799461552999958, 49.302613631000092 ], [ -122.799245295999967, 49.302613256000079 ], [ -122.799244200999951, 49.302883108000039 ], [ -122.798418872999918, 49.302881671000058 ], [ -122.798416670999927, 49.303421377000134 ], [ -122.797178667000011, 49.303419210000087 ], [ -122.797175345999975, 49.304228768000016 ], [ -122.796762669999922, 49.304228043000151 ], [ -122.796758229999952, 49.305307453000069 ], [ -122.795932862999962, 49.305305998000058 ], [ -122.795931748999948, 49.305575852000104 ], [ -122.795106376000021, 49.305574391000036 ], [ -122.795105257000017, 49.305844243000109 ], [ -122.79469257, 49.305843510000138 ], [ -122.794689204999912, 49.306653068000067 ], [ -122.793451120999961, 49.306650861000051 ], [ -122.793448864999945, 49.307190567000141 ], [ -122.792623465999952, 49.30718908900014 ], [ -122.792618934999936, 49.308268497000057 ], [ -122.79303164399991, 49.308269237000069 ], [ -122.793027121999927, 49.309348646000053 ], [ -122.792614405, 49.30934790600007 ], [ -122.792613270999979, 49.30961775800003 ], [ -122.792200551999969, 49.309617016000104 ], [ -122.792197147, 49.310426573000036 ], [ -122.791784420999974, 49.310425830000078 ], [ -122.791783282999972, 49.310695683000048 ], [ -122.790545099, 49.310693445000055 ], [ -122.790555392999977, 49.30826477600003 ], [ -122.790169392999971, 49.308264076000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20392500", "BldgCostT": "13800000", "sL_LossRatio": "0.752265728112626", "sL_AssetLoss": "227300", "sL_BldgLoss": "170990", "sL_StrLoss": "88500", "sL_NStrLoss": "82490", "sL_ContLoss": "56310", "geom_point": "0101000020E6100000E28930B0D4B25EC09CAD179EF2A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792268680999925, 49.304591698000131 ], [ -122.792787705999928, 49.304384594000076 ], [ -122.793425084999967, 49.30431610700002 ], [ -122.793699810999939, 49.304261185000016 ], [ -122.794042005, 49.304085805000064 ], [ -122.794518424, 49.303780100000061 ], [ -122.795072208999969, 49.303606492000021 ], [ -122.795940200999937, 49.303483610000079 ], [ -122.79618869699999, 49.303589200000054 ], [ -122.796266222999947, 49.303741902000077 ], [ -122.796214800999962, 49.303907903000045 ], [ -122.796035984999946, 49.303988185000058 ], [ -122.795249875999957, 49.304169836000014 ], [ -122.794982182999931, 49.304231699000084 ], [ -122.794370212999965, 49.304509899000045 ], [ -122.793745213999898, 49.304897703000023 ], [ -122.793489204999929, 49.304980191000062 ], [ -122.793052693000021, 49.30502760600011 ], [ -122.792500409999974, 49.305058882000054 ], [ -122.792427698999944, 49.304817998000019 ], [ -122.792268680999925, 49.304591698000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "988173966", "BldgCostT": "654740144", "sL_LossRatio": "0.762642115422778", "sL_AssetLoss": "13157351", "sL_BldgLoss": "10034350", "sL_StrLoss": "4473790", "sL_NStrLoss": "5560560", "sL_ContLoss": "3123001", "geom_point": "0101000020E6100000413D8E3016C95EC081EB8A1961944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140343886999943, 49.155611888000045 ], [ -123.143717290999959, 49.155605090000073 ], [ -123.143704270999962, 49.156767662000036 ], [ -123.143702025999943, 49.156967886000089 ], [ -123.143696712999912, 49.157442403000054 ], [ -123.143687380999921, 49.1582747140001 ], [ -123.143674927999925, 49.159386706000049 ], [ -123.143673160999924, 49.159544014000105 ], [ -123.143666592999963, 49.160131335000045 ], [ -123.143664949999931, 49.160279702000061 ], [ -123.143661562999952, 49.160581377000014 ], [ -123.143657209999915, 49.160970671000086 ], [ -123.143645934999981, 49.161975498000089 ], [ -123.14364012099999, 49.162494875000064 ], [ -123.143638113999913, 49.162674811000109 ], [ -123.14364968599989, 49.162796404000034 ], [ -123.143298358, 49.162796803000063 ], [ -123.143052106999974, 49.16279703700009 ], [ -123.14028047799998, 49.162795545000087 ], [ -123.140173546999961, 49.162795393000032 ], [ -123.140174352999964, 49.162671087000035 ], [ -123.140175499999941, 49.162585533 ], [ -123.140226245999983, 49.162495917000086 ], [ -123.140231449999987, 49.162069561000074 ], [ -123.140232993999945, 49.161943655000051 ], [ -123.14024427899993, 49.161021670000096 ], [ -123.140254227999932, 49.160585338000061 ], [ -123.140264388999952, 49.160137503000016 ], [ -123.140276832, 49.159571202000087 ], [ -123.140286224999926, 49.159143612000044 ], [ -123.140290061999949, 49.158969223000042 ], [ -123.14030400199999, 49.158334192000019 ], [ -123.140322291999937, 49.15708178800007 ], [ -123.14032879899996, 49.156637601000149 ], [ -123.14034125199997, 49.155791829000066 ], [ -123.140343886999943, 49.155611888000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "682926289", "BldgCostT": "457399387", "sL_LossRatio": "0.758716749966024", "sL_AssetLoss": "6114693", "sL_BldgLoss": "4639320", "sL_StrLoss": "2135820", "sL_NStrLoss": "2503500", "sL_ContLoss": "1475373", "geom_point": "0101000020E61000006E96BB64D6C85EC0F95DC6240E9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139280624999969, 49.206580495000068 ], [ -123.139308490999966, 49.205775603000113 ], [ -123.138506916000026, 49.205763135000034 ], [ -123.137752689, 49.205751403000107 ], [ -123.136928710999939, 49.205738413000084 ], [ -123.136243513999929, 49.205727587000098 ], [ -123.136282306999973, 49.204652991000103 ], [ -123.136357375999978, 49.204547792000099 ], [ -123.1359259809999, 49.204379592000066 ], [ -123.13558951, 49.204318398000055 ], [ -123.135526823999982, 49.204316798000086 ], [ -123.13474710199992, 49.204296904000053 ], [ -123.134779736999974, 49.203310814000119 ], [ -123.134782097, 49.203239409000034 ], [ -123.13479700799995, 49.202998385000093 ], [ -123.134800745999911, 49.202939504000064 ], [ -123.134861906999902, 49.203013646000088 ], [ -123.135427504999882, 49.203163805000123 ], [ -123.135186384999926, 49.202957401000027 ], [ -123.13501371800001, 49.202709599000073 ], [ -123.135007907, 49.202690231000069 ], [ -123.134972690999916, 49.202572515000099 ], [ -123.134945752, 49.202482517000043 ], [ -123.134922695999933, 49.202405388000024 ], [ -123.13493159699999, 49.20215069500005 ], [ -123.134983683999977, 49.202151202000145 ], [ -123.135255502999911, 49.20150349200005 ], [ -123.135397088999952, 49.201054207000084 ], [ -123.135271912999897, 49.201037291000048 ], [ -123.135195704999958, 49.20102719600002 ], [ -123.135550898999952, 49.200142756000162 ], [ -123.135551906999936, 49.200140246000032 ], [ -123.135589172999943, 49.200136327000052 ], [ -123.135601631000029, 49.200135017000058 ], [ -123.135610647999897, 49.200134069000079 ], [ -123.13580409399999, 49.200113731000108 ], [ -123.13629579399999, 49.200061998000066 ], [ -123.137214886, 49.200204491000122 ], [ -123.137553912, 49.200370144000061 ], [ -123.138039691999907, 49.200607490000088 ], [ -123.139344306999988, 49.200804082000062 ], [ -123.139305306999987, 49.201074683000094 ], [ -123.139415394999958, 49.201164407000043 ], [ -123.140665174999953, 49.201819494000127 ], [ -123.140854034999961, 49.201946157000066 ], [ -123.140876280999947, 49.202383144000109 ], [ -123.140841059999957, 49.202645017000116 ], [ -123.140660552999975, 49.203986489000052 ], [ -123.140639820999965, 49.204066066000117 ], [ -123.140572671999934, 49.204316219000077 ], [ -123.140561142999928, 49.204341380000145 ], [ -123.140467208999965, 49.204546129000121 ], [ -123.140272469, 49.204971132000018 ], [ -123.140274701999985, 49.204975336000068 ], [ -123.140350884, 49.205117939000019 ], [ -123.140382401999929, 49.205135697000088 ], [ -123.140528400999955, 49.205282792000126 ], [ -123.140629207999979, 49.205495386000024 ], [ -123.140631482999979, 49.205791817000076 ], [ -123.140585792, 49.20706980300011 ], [ -123.140556413999917, 49.207900759000069 ], [ -123.140553263999976, 49.207990412000065 ], [ -123.14054502499999, 49.208222899000049 ], [ -123.140533991999988, 49.208534912000061 ], [ -123.139877442999989, 49.208565697000068 ], [ -123.139822774999942, 49.208568255000095 ], [ -123.139210186999961, 49.208596998000075 ], [ -123.139223551999947, 49.208215718000112 ], [ -123.139248058999925, 49.2075156860001 ], [ -123.139264393999909, 49.207049107000017 ], [ -123.139280624999969, 49.206580495000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289300864", "BldgCostT": "188471936", "sL_LossRatio": "0.739274766978752", "sL_AssetLoss": "2397850", "sL_BldgLoss": "1772670", "sL_StrLoss": "743720", "sL_NStrLoss": "1028950", "sL_ContLoss": "625180", "geom_point": "0101000020E61000003E4330F5D0C85EC0FCBBB9F06A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138506916000026, 49.205763135000034 ], [ -123.139308490999966, 49.205775603000113 ], [ -123.139280624999969, 49.206580495000068 ], [ -123.139264393999909, 49.207049107000017 ], [ -123.138511268999977, 49.207037453000048 ], [ -123.137713994999956, 49.20702509500007 ], [ -123.136199270999953, 49.20700189800008 ], [ -123.136214457999941, 49.206565190000063 ], [ -123.136243513999929, 49.205727587000098 ], [ -123.136928710999939, 49.205738413000084 ], [ -123.137752689, 49.205751403000107 ], [ -123.138506916000026, 49.205763135000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "458626287", "BldgCostT": "309189456", "sL_LossRatio": "0.759615984269589", "sL_AssetLoss": "5451860", "sL_BldgLoss": "4141320", "sL_StrLoss": "1847040", "sL_NStrLoss": "2294280", "sL_ContLoss": "1310540", "geom_point": "0101000020E6100000425512FAD5AB5EC008ED7B58989C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.681986962999972, 49.226294304000149 ], [ -122.682001390999943, 49.22560371200013 ], [ -122.680679201999965, 49.225602588000115 ], [ -122.680717520999934, 49.223339504000116 ], [ -122.680703513, 49.222770244000081 ], [ -122.680710257, 49.222698970000117 ], [ -122.680759187999939, 49.222103919000098 ], [ -122.680789686999958, 49.221849597000116 ], [ -122.680844065999949, 49.221849592000119 ], [ -122.681919606999912, 49.221849201000055 ], [ -122.681903406999979, 49.221692012000105 ], [ -122.681917695999942, 49.22099601700009 ], [ -122.68193303399994, 49.220249596000038 ], [ -122.681943796999988, 49.219724389000064 ], [ -122.683774088999925, 49.219720405000032 ], [ -122.68378167899999, 49.219036707000114 ], [ -122.686753957999926, 49.21903623200005 ], [ -122.686753690999922, 49.219136253000094 ], [ -122.686699639999944, 49.219220182000086 ], [ -122.686781836999927, 49.219568709000079 ], [ -122.686775663, 49.219915077000046 ], [ -122.686759910999953, 49.220795391000102 ], [ -122.68675849, 49.220874161000076 ], [ -122.68674417699998, 49.221674189000112 ], [ -122.686741399999931, 49.222290408000028 ], [ -122.686850972999963, 49.222293772000071 ], [ -122.688476023999939, 49.222281527000128 ], [ -122.689043100999953, 49.222396266000054 ], [ -122.689542836999962, 49.22241523300012 ], [ -122.689538229000021, 49.222824680000038 ], [ -122.689536927999953, 49.222941622000057 ], [ -122.68952841, 49.223697136000119 ], [ -122.68952526, 49.223975381000045 ], [ -122.689518360999955, 49.224587749000065 ], [ -122.689507335999934, 49.225666856000061 ], [ -122.689502019999935, 49.226116769000107 ], [ -122.689501300999922, 49.226176703000128 ], [ -122.689499143999925, 49.226359644000077 ], [ -122.689496532999939, 49.226582812000068 ], [ -122.68949563299999, 49.226657860000046 ], [ -122.689493069999969, 49.226877002000052 ], [ -122.689486374999944, 49.227443048000076 ], [ -122.688539890999948, 49.22744910200008 ], [ -122.688525606999974, 49.226340397000079 ], [ -122.68839173799995, 49.226157896000103 ], [ -122.688141656999932, 49.225987131000075 ], [ -122.687225405999968, 49.225608465000079 ], [ -122.68679993899994, 49.225606205000112 ], [ -122.686782389999948, 49.226563463000041 ], [ -122.686017477999911, 49.226562981000079 ], [ -122.683995579999973, 49.226561708000126 ], [ -122.683192050999963, 49.226561180000047 ], [ -122.683184690999951, 49.227490811000081 ], [ -122.682880868999945, 49.227496718000104 ], [ -122.68286151199996, 49.227497085000017 ], [ -122.682512199999906, 49.227447599000072 ], [ -122.682190899999938, 49.227312501000036 ], [ -122.682046182999983, 49.227147598000045 ], [ -122.681973014999969, 49.226960705000074 ], [ -122.681986962999972, 49.226294304000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "524116606", "BldgCostT": "348267492", "sL_LossRatio": "0.761483493464847", "sL_AssetLoss": "2597032", "sL_BldgLoss": "1977597", "sL_StrLoss": "870680", "sL_NStrLoss": "1106917", "sL_ContLoss": "619435", "geom_point": "0101000020E610000006931C8F5DC05EC0411648D4B49C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.003380699999951, 49.225213003000107 ], [ -123.005907961999966, 49.222843469000075 ], [ -123.006280981999979, 49.222493694000015 ], [ -123.00768221, 49.223136191000087 ], [ -123.008040093999966, 49.223311899000095 ], [ -123.00759892399999, 49.223730018000012 ], [ -123.006760399999933, 49.224524726000034 ], [ -123.005164309999927, 49.226037307000091 ], [ -123.004350899999963, 49.22566609000009 ], [ -123.004224088999976, 49.225613935000105 ], [ -123.003766739999932, 49.225425692000066 ], [ -123.003672924999975, 49.225374726000091 ], [ -123.003380699999951, 49.225213003000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "682366917", "BldgCostT": "478286667", "sL_LossRatio": "0.897073958175521", "sL_AssetLoss": "3828380", "sL_BldgLoss": "3434340", "sL_StrLoss": "1605700", "sL_NStrLoss": "1828640", "sL_ContLoss": "394040", "geom_point": "0101000020E6100000E12F566905C05EC0D28062E0909C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.002430722999975, 49.221943788000047 ], [ -123.00278589, 49.221944396000026 ], [ -123.00066209499991, 49.223968998 ], [ -123.002160706999959, 49.224654791000063 ], [ -123.00276676499999, 49.224932095000042 ], [ -123.003380699999951, 49.225213003000107 ], [ -123.003672924999975, 49.225374726000091 ], [ -123.003766739999932, 49.225425692000066 ], [ -123.004224088999976, 49.225613935000105 ], [ -123.004350899999963, 49.22566609000009 ], [ -123.005164309999927, 49.226037307000091 ], [ -123.006107174999954, 49.226466191000064 ], [ -123.005801299000026, 49.226664244000062 ], [ -123.005499513999922, 49.226523658000097 ], [ -123.003852742999982, 49.225756658000101 ], [ -123.003605361, 49.225641370000119 ], [ -123.003285397999932, 49.225492356000046 ], [ -123.003183984999978, 49.225445118000074 ], [ -123.00297534699996, 49.225347542000115 ], [ -123.001938546999924, 49.2248626270001 ], [ -123.001244946999975, 49.224555062000078 ], [ -123.000427295999913, 49.224210516000056 ], [ -123.000089924999926, 49.224046189000042 ], [ -122.998721886999974, 49.223341574000059 ], [ -122.997929578999944, 49.222939241000141 ], [ -122.997847952999948, 49.222897771000156 ], [ -122.997222596999976, 49.222589465000119 ], [ -122.996549831999957, 49.222335514000065 ], [ -122.995741298999988, 49.221947402000033 ], [ -122.995783894999946, 49.221947225000086 ], [ -122.995911598, 49.221946691000063 ], [ -122.997103090999971, 49.221946603000085 ], [ -122.997638605999938, 49.221943504000102 ], [ -122.999525508999952, 49.221951005000037 ], [ -123.000000118999978, 49.221948753000106 ], [ -123.000439561999926, 49.221946677000048 ], [ -123.001409326000015, 49.221942097000095 ], [ -123.002430722999975, 49.221943788000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "475531219", "BldgCostT": "323440412", "sL_LossRatio": "0.797292483876099", "sL_AssetLoss": "4463870", "sL_BldgLoss": "3559010", "sL_StrLoss": "1606680", "sL_NStrLoss": "1952330", "sL_ContLoss": "904860", "geom_point": "0101000020E6100000CB1CF584E3B35EC0647C3E4EC1974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809731539, 49.184206434000046 ], [ -122.810134119999972, 49.184204835000045 ], [ -122.810454605999965, 49.18420354400012 ], [ -122.810724196999928, 49.184203289000102 ], [ -122.810875159999966, 49.18420315500002 ], [ -122.812077401999915, 49.184202019000061 ], [ -122.812076330999986, 49.184381983000016 ], [ -122.81206585299999, 49.186110043000028 ], [ -122.812025131999974, 49.18690351900004 ], [ -122.809258132, 49.186845897000055 ], [ -122.809252335999943, 49.186116234000032 ], [ -122.809253043999945, 49.186108368000049 ], [ -122.809474984999952, 49.185485714000031 ], [ -122.809614861999961, 49.185038233000071 ], [ -122.809731539, 49.184206434000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "946028448", "BldgCostT": "653680270", "sL_LossRatio": "0.856922701855372", "sL_AssetLoss": "9065030", "sL_BldgLoss": "7768030", "sL_StrLoss": "3584300", "sL_NStrLoss": "4183730", "sL_ContLoss": "1297000", "geom_point": "0101000020E6100000EBFA7911B5B35EC0EC9F23C9DE974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809358380999967, 49.184207109000099 ], [ -122.809731539, 49.184206434000046 ], [ -122.809614861999961, 49.185038233000071 ], [ -122.809474984999952, 49.185485714000031 ], [ -122.809253043999945, 49.186108368000049 ], [ -122.809252335999943, 49.186116234000032 ], [ -122.809258132, 49.186845897000055 ], [ -122.809253299999966, 49.188873949000026 ], [ -122.807774924999975, 49.18886799600007 ], [ -122.806438979999925, 49.188864391000024 ], [ -122.806450422999902, 49.187530332000094 ], [ -122.806458113999938, 49.186630500000078 ], [ -122.806460126999966, 49.186141276000093 ], [ -122.806478068999979, 49.185650457000087 ], [ -122.806479079999974, 49.185623497000108 ], [ -122.806480744999945, 49.185578541000041 ], [ -122.806530405999951, 49.18422060400006 ], [ -122.808213187999968, 49.184213154000119 ], [ -122.809358380999967, 49.184207109000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111586751", "BldgCostT": "74275001", "sL_LossRatio": "0.730577578952031", "sL_AssetLoss": "1806160", "sL_BldgLoss": "1319540", "sL_StrLoss": "575380", "sL_NStrLoss": "744160", "sL_ContLoss": "486620", "geom_point": "0101000020E6100000618F58A4ECAF5EC0227C529A0BA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.754805141999924, 49.276891264 ], [ -122.754806478999953, 49.276621412000033 ], [ -122.753981592999963, 49.276619657000076 ], [ -122.753983507, 49.276234609000063 ], [ -122.752783983999947, 49.276198525000048 ], [ -122.752811360999928, 49.275807593000096 ], [ -122.751923437999949, 49.275805690000055 ], [ -122.751920730999942, 49.276345395000106 ], [ -122.749446086999924, 49.276340056000038 ], [ -122.749450186999979, 49.275530498000066 ], [ -122.749862621999952, 49.27553139000004 ], [ -122.749868078999953, 49.274451979000069 ], [ -122.750280504000017, 49.274452871000065 ], [ -122.75028731499998, 49.273103606000085 ], [ -122.749874900999899, 49.273102714000053 ], [ -122.749876265, 49.272832861000083 ], [ -122.749463853999885, 49.272831968000084 ], [ -122.74946497199997, 49.272611065000035 ], [ -122.748227597999957, 49.272636956000085 ], [ -122.748223873999962, 49.273368983000111 ], [ -122.745336961999939, 49.27336265800006 ], [ -122.745335572999934, 49.273632510000034 ], [ -122.74492315399999, 49.273631601000012 ], [ -122.744919033999935, 49.274430688000031 ], [ -122.744919830999891, 49.274441162000123 ], [ -122.745743829999952, 49.274442977000113 ], [ -122.745742442999926, 49.274712831000087 ], [ -122.746979723999985, 49.274715546000039 ], [ -122.746975583999955, 49.275525080000094 ], [ -122.74631359699994, 49.275187785000107 ], [ -122.745241493999941, 49.275188798000087 ], [ -122.744287709999981, 49.275188009000047 ], [ -122.74427680899997, 49.274110202000067 ], [ -122.743987911, 49.273859087000112 ], [ -122.743604801999965, 49.273658287000067 ], [ -122.742691521999959, 49.273629906000075 ], [ -122.74267859299999, 49.271682368 ], [ -122.74267559899998, 49.271233798 ], [ -122.744833592999939, 49.271229604000041 ], [ -122.746111792999983, 49.271228501000046 ], [ -122.747599072999961, 49.271224691000057 ], [ -122.749152299999977, 49.271221905000047 ], [ -122.750391988999979, 49.271220493000094 ], [ -122.750395471, 49.271672208000048 ], [ -122.750398903999965, 49.272122486000079 ], [ -122.750404409999959, 49.27247498900006 ], [ -122.750460610999966, 49.274811001000131 ], [ -122.75277439599995, 49.274809956000077 ], [ -122.753338119999952, 49.274809696000084 ], [ -122.754506686999946, 49.274809128000129 ], [ -122.754590884999956, 49.274809103000081 ], [ -122.75490489799995, 49.274814804000115 ], [ -122.754971098999988, 49.2748159920001 ], [ -122.75616980199996, 49.274833203000092 ], [ -122.756165193999948, 49.276568211000082 ], [ -122.756161806999984, 49.276812110000044 ], [ -122.756150731, 49.277603622000036 ], [ -122.754495203999952, 49.277025365000135 ], [ -122.754179795000013, 49.276915191000064 ], [ -122.754076679, 49.276889716000071 ], [ -122.754805141999924, 49.276891264 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202809083", "BldgCostT": "131588333", "sL_LossRatio": "0.7468550260445", "sL_AssetLoss": "2113690", "sL_BldgLoss": "1578620", "sL_StrLoss": "745480", "sL_NStrLoss": "833140", "sL_ContLoss": "535070", "geom_point": "0101000020E61000009CDB2007A3AF5EC001F30CF1FAA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.748177164999916, 49.282543980000085 ], [ -122.748171668999944, 49.283623390000045 ], [ -122.748996670999958, 49.283625185000062 ], [ -122.748995302, 49.28389503800004 ], [ -122.750645315999947, 49.283898610000023 ], [ -122.750648037999966, 49.283358905000057 ], [ -122.749823039999939, 49.283357121000044 ], [ -122.749827134999947, 49.282547564000055 ], [ -122.748177164999916, 49.282543980000085 ], [ -122.748182765999942, 49.281444271000055 ], [ -122.748859211, 49.281420602000068 ], [ -122.750873196000015, 49.281418099000128 ], [ -122.750874382999939, 49.282146092000062 ], [ -122.752050281999971, 49.282148328000027 ], [ -122.752087986999967, 49.282148397000135 ], [ -122.753227413999966, 49.282151083000073 ], [ -122.753206474999971, 49.283353201000054 ], [ -122.753318289999982, 49.283424199000052 ], [ -122.752693243999957, 49.283922819000061 ], [ -122.752613566999969, 49.283986384000059 ], [ -122.75230367099999, 49.284233562000068 ], [ -122.751930693999924, 49.284531099000013 ], [ -122.751676295, 49.284435109000086 ], [ -122.75136326899991, 49.284420569000062 ], [ -122.750908911999957, 49.284399449 ], [ -122.750356715999956, 49.284373805 ], [ -122.749133507999929, 49.284370291000137 ], [ -122.748860707999938, 49.284339592000038 ], [ -122.748311512999948, 49.284133803000017 ], [ -122.748105444999922, 49.284056049000057 ], [ -122.748030676999932, 49.284027828000099 ], [ -122.747940501999949, 49.283993788000096 ], [ -122.747764394999962, 49.283983652000089 ], [ -122.747546191999916, 49.283971092000058 ], [ -122.747574203999989, 49.283239490000014 ], [ -122.747358283999986, 49.283240887000062 ], [ -122.746143791999941, 49.283248706000059 ], [ -122.744800524999931, 49.283233406000058 ], [ -122.744786507999891, 49.283922183000087 ], [ -122.744038810999911, 49.283931585000111 ], [ -122.743624385000018, 49.283929509000068 ], [ -122.743571237999987, 49.28392991100003 ], [ -122.74291327899995, 49.283934999000095 ], [ -122.741297085999946, 49.283947503000064 ], [ -122.740389305999955, 49.283955301000034 ], [ -122.739638270999947, 49.283931482000064 ], [ -122.739136902000013, 49.283915600000071 ], [ -122.738878088999982, 49.283842889000049 ], [ -122.738096006, 49.283294098000077 ], [ -122.737723569999986, 49.283056303000123 ], [ -122.737820503999941, 49.282999683000078 ], [ -122.738146596000021, 49.282809098000058 ], [ -122.738297797999934, 49.282673099000164 ], [ -122.738426315999945, 49.282487793000094 ], [ -122.738486419999973, 49.28216614400008 ], [ -122.738488091999912, 49.282157194000085 ], [ -122.738459505999955, 49.280354484000014 ], [ -122.738476116999919, 49.279787499000115 ], [ -122.738521326999901, 49.279373791000118 ], [ -122.73861872099999, 49.27848270700013 ], [ -122.738903905999919, 49.278492194000179 ], [ -122.739736473999969, 49.278482935000127 ], [ -122.740495496999955, 49.27847450900007 ], [ -122.741317267999989, 49.27847157900009 ], [ -122.742097302, 49.278468800000063 ], [ -122.743344704000023, 49.278477714000068 ], [ -122.743373296999948, 49.279871394000047 ], [ -122.743743274999957, 49.279871204000074 ], [ -122.743922014999967, 49.279871127000028 ], [ -122.744374004999955, 49.27987089200014 ], [ -122.744371905999913, 49.278471692000075 ], [ -122.744379692999971, 49.277089004000111 ], [ -122.745237719999921, 49.277103205000053 ], [ -122.745241695999979, 49.276361002000101 ], [ -122.745241493999941, 49.275188798000087 ], [ -122.74631359699994, 49.275187785000107 ], [ -122.746975583999955, 49.275525080000094 ], [ -122.74696454099994, 49.277683928000073 ], [ -122.74531473199994, 49.277680303000068 ], [ -122.745302226999954, 49.28010897800003 ], [ -122.744889754, 49.280108067000107 ], [ -122.744888361999955, 49.280377920000078 ], [ -122.744475887999911, 49.28037700900007 ], [ -122.744471704999938, 49.281186567000084 ], [ -122.742868818999952, 49.281183011000081 ], [ -122.742830533999964, 49.281284262000092 ], [ -122.742821072999973, 49.28131932500002 ], [ -122.742816169999969, 49.282262316000121 ], [ -122.741991188999947, 49.282260477000044 ], [ -122.741989780999958, 49.282530330000085 ], [ -122.74033981299999, 49.282526634000121 ], [ -122.740338396999945, 49.282796486000102 ], [ -122.739925901, 49.282795559000071 ], [ -122.739923063999967, 49.283335263000083 ], [ -122.744048051999982, 49.283344474000074 ], [ -122.744050844999933, 49.282804769000023 ], [ -122.744463339000021, 49.282805682000131 ], [ -122.74446612899996, 49.282265977000066 ], [ -122.744878618999962, 49.28226688900002 ], [ -122.74488001099999, 49.281997036000078 ], [ -122.747767424999935, 49.282003375000023 ], [ -122.747764672999963, 49.282543080000067 ], [ -122.748177164999916, 49.282543980000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31960728", "BldgCostT": "17239857", "sL_LossRatio": "0.627511525678139", "sL_AssetLoss": "466350", "sL_BldgLoss": "292640", "sL_StrLoss": "99270", "sL_NStrLoss": "193370", "sL_ContLoss": "173710", "geom_point": "0101000020E6100000D92DE15494C75EC080D52EF9E1A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11489209799997, 49.273533960000144 ], [ -123.11483195199996, 49.273352191000122 ], [ -123.114711361999952, 49.273391315000083 ], [ -123.114721907999979, 49.273177214000093 ], [ -123.114737287999972, 49.27258362400007 ], [ -123.114877547, 49.272535464000022 ], [ -123.114885002999983, 49.272532904000052 ], [ -123.116450506, 49.272539207000122 ], [ -123.116513014999938, 49.272539459000036 ], [ -123.116513570000038, 49.2727749760001 ], [ -123.116925983999963, 49.272774560000066 ], [ -123.116926620999919, 49.273044414000012 ], [ -123.118163869999961, 49.27304315600005 ], [ -123.118164514999961, 49.273313010000052 ], [ -123.118576932999986, 49.273312589000071 ], [ -123.118576285999922, 49.273042734000065 ], [ -123.119401118999946, 49.273041884000115 ], [ -123.119400043999946, 49.272596390000118 ], [ -123.119421701999926, 49.272581392000113 ], [ -123.119399835999928, 49.272510041000096 ], [ -123.119399482999967, 49.27236447500011 ], [ -123.119516407999967, 49.272231002000062 ], [ -123.119433207999947, 49.272185406000048 ], [ -123.119399108999971, 49.272209843000063 ], [ -123.119399035999919, 49.272178885000081 ], [ -123.1194194799999, 49.272159792000096 ], [ -123.119398965999963, 49.272150075000113 ], [ -123.119397861999971, 49.271692609000098 ], [ -123.119810266999977, 49.271692182000066 ], [ -123.119808959999972, 49.271152472 ], [ -123.120633760999951, 49.271151614000097 ], [ -123.120633487999925, 49.271040026000087 ], [ -123.121398191999944, 49.271987304000035 ], [ -123.119790000999927, 49.272991893000018 ], [ -123.119403206999976, 49.273202289000047 ], [ -123.118880205999943, 49.273414405 ], [ -123.118356085999949, 49.273512104000083 ], [ -123.117731993999939, 49.273495406000073 ], [ -123.11758971099998, 49.273468538000031 ], [ -123.117293307999944, 49.273412594000042 ], [ -123.116727105, 49.273236203000074 ], [ -123.116141709999937, 49.27317103400005 ], [ -123.11538333599999, 49.273213817000098 ], [ -123.115076099999911, 49.273381256000029 ], [ -123.11489209799997, 49.273533960000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169922477", "BldgCostT": "115324856", "sL_LossRatio": "0.812713286713287", "sL_AssetLoss": "2145000", "sL_BldgLoss": "1743270", "sL_StrLoss": "784820", "sL_NStrLoss": "958450", "sL_ContLoss": "401730", "geom_point": "0101000020E610000020FCF63BB5B55EC0E4B28F1DED974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841240492999987, 49.18610100800003 ], [ -122.841226463999988, 49.186503928000029 ], [ -122.841211607999966, 49.186929999000043 ], [ -122.841204839999989, 49.187325425000026 ], [ -122.841204124999962, 49.187367448000032 ], [ -122.841196876999973, 49.187791841000049 ], [ -122.839251346999944, 49.187777111000081 ], [ -122.83917977, 49.187775973000036 ], [ -122.838687885999931, 49.187772282000019 ], [ -122.837862484999945, 49.187766075000042 ], [ -122.837153593999972, 49.187761467000065 ], [ -122.837184086999983, 49.186043307000041 ], [ -122.83719783199993, 49.186043511000058 ], [ -122.837793349000023, 49.186051966000065 ], [ -122.83856205499994, 49.186062914000019 ], [ -122.841240492999987, 49.18610100800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1013709751", "BldgCostT": "660210001", "sL_LossRatio": "0.773419953561019", "sL_AssetLoss": "5262820", "sL_BldgLoss": "4070370", "sL_StrLoss": "2119780", "sL_NStrLoss": "1950590", "sL_ContLoss": "1192450", "geom_point": "0101000020E6100000FE5CF2476AB25EC0976DCFE2FB864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79610587699996, 49.060176903000041 ], [ -122.795910318999944, 49.060117001000073 ], [ -122.794235698999941, 49.060112175000043 ], [ -122.793031171999942, 49.060108669000044 ], [ -122.792141338, 49.060106094000062 ], [ -122.79091282899999, 49.060102550000103 ], [ -122.790228545999923, 49.060100533000082 ], [ -122.790211297999974, 49.060100535000082 ], [ -122.789376260999958, 49.060100297000133 ], [ -122.788005491999954, 49.060099878000116 ], [ -122.78726831699997, 49.060099932000149 ], [ -122.78624161499998, 49.060100014000056 ], [ -122.784268324999971, 49.060100172000062 ], [ -122.783818871999955, 49.060100187000018 ], [ -122.783339839999883, 49.06010021200008 ], [ -122.782888112999927, 49.06010025500008 ], [ -122.781943587999947, 49.060100301 ], [ -122.781067614999984, 49.060100338000083 ], [ -122.780684280999978, 49.060100345000166 ], [ -122.779145872999948, 49.060100370000086 ], [ -122.779163833999959, 49.058279981000076 ], [ -122.779166732999954, 49.057983152000055 ], [ -122.779177171999919, 49.05692175500014 ], [ -122.779182708999926, 49.05636056500002 ], [ -122.779197047999943, 49.054708883000053 ], [ -122.779209360999928, 49.053287676000089 ], [ -122.779213527999971, 49.052807091000041 ], [ -122.779213974999948, 49.052693769000065 ], [ -122.779215833999956, 49.052243978000035 ], [ -122.779221126999957, 49.050955328000107 ], [ -122.779873417999951, 49.050960052000065 ], [ -122.780125971999936, 49.050961868000059 ], [ -122.780509682999963, 49.050964639000014 ], [ -122.780783314999937, 49.050966603000042 ], [ -122.784603433999976, 49.050994084000074 ], [ -122.784671375999949, 49.049216210000026 ], [ -122.783357480999925, 49.049213099000042 ], [ -122.782381311, 49.049210768000115 ], [ -122.780880884999959, 49.049207185000121 ], [ -122.780101497999937, 49.049205315000016 ], [ -122.7793687899999, 49.049203533000096 ], [ -122.779214994, 49.049203173000095 ], [ -122.779214763999931, 49.049097151000169 ], [ -122.779214112999966, 49.04879828 ], [ -122.779213081999956, 49.048321687000097 ], [ -122.779212032999951, 49.047835830000139 ], [ -122.779211690999915, 49.047667394000044 ], [ -122.779169639999978, 49.047583218000106 ], [ -122.77917650899991, 49.047124982000057 ], [ -122.779181042999966, 49.046823819000089 ], [ -122.779183992999933, 49.045593724000049 ], [ -122.779263332999903, 49.045593431000029 ], [ -122.779284420999915, 49.045593432000082 ], [ -122.780856563999919, 49.045594349000091 ], [ -122.782767092999947, 49.045595739000063 ], [ -122.784184511, 49.045599364000104 ], [ -122.785259853999946, 49.045601903 ], [ -122.787389625999978, 49.047481644000165 ], [ -122.79016289899999, 49.049965421000103 ], [ -122.79317601299995, 49.052663618000054 ], [ -122.79348728699992, 49.052942310000077 ], [ -122.793548205999954, 49.052986717000081 ], [ -122.799997097999949, 49.057686652000086 ], [ -122.801177021999933, 49.058546436000022 ], [ -122.801254944999968, 49.058603161000036 ], [ -122.803689079999955, 49.060374978000084 ], [ -122.803687453999956, 49.060374934000087 ], [ -122.802733980999975, 49.060176267000053 ], [ -122.802711583999923, 49.06016442600005 ], [ -122.802710405999917, 49.060163789000093 ], [ -122.802700443999925, 49.060162018000021 ], [ -122.802456217999989, 49.060118398000064 ], [ -122.801804959999984, 49.060113475000072 ], [ -122.80123938199992, 49.060109155000092 ], [ -122.801133957999966, 49.060090933 ], [ -122.800344365999976, 49.059954514000047 ], [ -122.800114993999983, 49.060046792000072 ], [ -122.79999021499998, 49.060072353000102 ], [ -122.799811224999985, 49.060108989000099 ], [ -122.798640405999933, 49.060105615000047 ], [ -122.7981992199999, 49.060214123000037 ], [ -122.797460378999986, 49.060613802000027 ], [ -122.797344084999921, 49.060673503000075 ], [ -122.796948115999911, 49.060403890000025 ], [ -122.796453769, 49.060230597000093 ], [ -122.79610587699996, 49.060176903000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109331144", "BldgCostT": "71416523", "sL_LossRatio": "0.710136958053374", "sL_AssetLoss": "1745790", "sL_BldgLoss": "1239750", "sL_StrLoss": "529330", "sL_NStrLoss": "710420", "sL_ContLoss": "506040", "geom_point": "0101000020E6100000BDEEEF641EB05EC0A1CE37FDB4A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.752330468999943, 49.276885987000099 ], [ -122.754076679, 49.276889716000071 ], [ -122.754179795000013, 49.276915191000064 ], [ -122.754495203999952, 49.277025365000135 ], [ -122.756150731, 49.277603622000036 ], [ -122.75613878800003, 49.278459296000072 ], [ -122.754681188999967, 49.278467787000068 ], [ -122.754025179999985, 49.27847239400014 ], [ -122.753609895999958, 49.278475184000143 ], [ -122.753589635999958, 49.279972794000052 ], [ -122.753588811999947, 49.28003310000004 ], [ -122.750928612999957, 49.279999105000066 ], [ -122.750878297999975, 49.280227297000117 ], [ -122.750876186999932, 49.280708294000085 ], [ -122.750873196000015, 49.281418099000128 ], [ -122.748859211, 49.281420602000068 ], [ -122.748182765999942, 49.281444271000055 ], [ -122.748188156999916, 49.280385158000058 ], [ -122.74860063199999, 49.280386057000079 ], [ -122.748602002999917, 49.28011620300002 ], [ -122.749014475999942, 49.280117100000055 ], [ -122.749018584999988, 49.279307542000033 ], [ -122.749431049999913, 49.279308438000093 ], [ -122.749432416999966, 49.279038585000087 ], [ -122.749844878999966, 49.279039478000115 ], [ -122.749850338999977, 49.27796006700008 ], [ -122.750675248000036, 49.277961850000075 ], [ -122.750676606999932, 49.277691997 ], [ -122.751089059999941, 49.277692886000047 ], [ -122.751090416999943, 49.277423033000041 ], [ -122.751915316999913, 49.277424808000035 ], [ -122.751916670999961, 49.277154954000103 ], [ -122.752329117999949, 49.27715584 ], [ -122.752330468999943, 49.276885987000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213288583", "BldgCostT": "145888333", "sL_LossRatio": "0.780005157248322", "sL_AssetLoss": "2094140", "sL_BldgLoss": "1633440", "sL_StrLoss": "812530", "sL_NStrLoss": "820910", "sL_ContLoss": "460700", "geom_point": "0101000020E61000006F05C1A1FFCE5EC018162F5822BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.240623415999949, 49.476694528000081 ], [ -123.24066190299996, 49.476050616000059 ], [ -123.24064285599999, 49.476050132000076 ], [ -123.240660815999917, 49.475749663000094 ], [ -123.239904347999953, 49.475730413000058 ], [ -123.239998032999949, 49.474163396000073 ], [ -123.23956522, 49.474164293000079 ], [ -123.23956127199996, 49.473354761000103 ], [ -123.239975363999974, 49.473353903000032 ], [ -123.239974046000029, 49.473084059 ], [ -123.23790359399996, 49.47308833600006 ], [ -123.237897059999966, 49.471739116000087 ], [ -123.237497433, 49.471739937000052 ], [ -123.237495498999976, 49.471772256000094 ], [ -123.236676815999914, 49.471751396000101 ], [ -123.23663330399998, 49.472478375000037 ], [ -123.232938942999937, 49.472384166000055 ], [ -123.232875452999949, 49.471511770000092 ], [ -123.232883403999949, 49.47150515900006 ], [ -123.23287944799999, 49.471505201000063 ], [ -123.23308699399999, 49.470483757000146 ], [ -123.230750761999943, 49.470332750000097 ], [ -123.230754273999977, 49.470274179000036 ], [ -123.230437032999973, 49.47026607700009 ], [ -123.230541491999944, 49.468524603000077 ], [ -123.230403539999955, 49.468521080000087 ], [ -123.230586256000024, 49.465474748000098 ], [ -123.230490032999953, 49.465472290000072 ], [ -123.230530389999927, 49.464799403000072 ], [ -123.22994225399998, 49.464784377000129 ], [ -123.22995769799995, 49.464526930000019 ], [ -123.22958497399999, 49.464517407000052 ], [ -123.229091261999883, 49.461107124000087 ], [ -123.22898605099999, 49.460380186000108 ], [ -123.228983082999974, 49.460192060000047 ], [ -123.228703637999942, 49.457626489000049 ], [ -123.228696945999971, 49.457221206000085 ], [ -123.228872541999962, 49.453581817000028 ], [ -123.228877654999948, 49.453496579000038 ], [ -123.229648441999984, 49.453516282000074 ], [ -123.229738604999952, 49.452012996000043 ], [ -123.231674054999957, 49.452062448000092 ], [ -123.231869001999939, 49.448809439000058 ], [ -123.232502610999916, 49.448825620000051 ], [ -123.232511132999932, 49.448683371000101 ], [ -123.236844560999884, 49.448728499000033 ], [ -123.236852242999987, 49.448931483000088 ], [ -123.23705323499999, 49.450206217000115 ], [ -123.237048146999925, 49.450683307000133 ], [ -123.237131167999976, 49.450840317000029 ], [ -123.237074694999976, 49.452084157000058 ], [ -123.237000670999976, 49.454634988000066 ], [ -123.23710370699996, 49.455198165000141 ], [ -123.237203396, 49.455743203000061 ], [ -123.237159893999959, 49.455895090000062 ], [ -123.237142886999948, 49.45617831000007 ], [ -123.236917897999959, 49.4567804060001 ], [ -123.236475371999944, 49.457536198000071 ], [ -123.236231298999954, 49.457719997000027 ], [ -123.235873491999939, 49.457867506000106 ], [ -123.235814119999986, 49.457867797000084 ], [ -123.235715903999974, 49.45791941600006 ], [ -123.235434397999981, 49.458174202000116 ], [ -123.23527831200002, 49.458246797000086 ], [ -123.235357280999921, 49.458337952000079 ], [ -123.23542051699998, 49.458410895000029 ], [ -123.235440365999963, 49.458433828000054 ], [ -123.235490372999905, 49.458491541000086 ], [ -123.23557510099999, 49.458589296000071 ], [ -123.23572249899992, 49.45894010700006 ], [ -123.235709468999985, 49.459270724000064 ], [ -123.235545504999962, 49.459360188000083 ], [ -123.23578150899999, 49.459631460000054 ], [ -123.236162395999926, 49.460069195000102 ], [ -123.236419246999944, 49.460342309000048 ], [ -123.236446482999938, 49.460668377000033 ], [ -123.236437068999919, 49.460707786000093 ], [ -123.23642687, 49.460750482000087 ], [ -123.23633878699998, 49.461118529000053 ], [ -123.23632899899999, 49.461159383000073 ], [ -123.23632479299999, 49.461289147000059 ], [ -123.23632013199996, 49.461432977000072 ], [ -123.236301489999946, 49.462009611000042 ], [ -123.236443755999986, 49.4623581970001 ], [ -123.236451883999933, 49.462378110000067 ], [ -123.236692513999969, 49.4625759830001 ], [ -123.237053524999979, 49.462858134000058 ], [ -123.238011263999951, 49.463606489000043 ], [ -123.23817791099998, 49.463736703000109 ], [ -123.238392777999977, 49.463995991000075 ], [ -123.238525317999958, 49.464272203000071 ], [ -123.238573991999971, 49.464658001000039 ], [ -123.238570691999939, 49.465173793000098 ], [ -123.238650451999945, 49.465424761000108 ], [ -123.238669389, 49.465484302000064 ], [ -123.238880208999944, 49.465766986000077 ], [ -123.239529972999932, 49.466436301000066 ], [ -123.239675900999984, 49.466719106000056 ], [ -123.239736599999958, 49.467020494000053 ], [ -123.239706115999951, 49.467321395000106 ], [ -123.239115267999949, 49.468368350000027 ], [ -123.239110490999948, 49.468376801000034 ], [ -123.238967985999921, 49.468821605000102 ], [ -123.238916292999988, 49.469201111000103 ], [ -123.238968476999958, 49.469435596000068 ], [ -123.238987236999961, 49.469537860000102 ], [ -123.239036670999965, 49.469632799000102 ], [ -123.23922800499993, 49.469872591000083 ], [ -123.239549708999931, 49.470146507000074 ], [ -123.241058202999952, 49.470995196000054 ], [ -123.241136905999937, 49.471061854000013 ], [ -123.241534903999977, 49.471398979000135 ], [ -123.241779795999946, 49.471688881000055 ], [ -123.241988706999948, 49.472119195000097 ], [ -123.24208705199996, 49.472486298000078 ], [ -123.242137594999974, 49.472674908000016 ], [ -123.242097709999967, 49.473412201000102 ], [ -123.242084679999934, 49.47348739000013 ], [ -123.242081324999944, 49.4735064770001 ], [ -123.24205481499996, 49.473659463000047 ], [ -123.242011307, 49.47374944799999 ], [ -123.241940085999914, 49.474479693000056 ], [ -123.241917166999897, 49.474685187 ], [ -123.241889547999961, 49.474933087000061 ], [ -123.241810186999956, 49.475637871000139 ], [ -123.241901494999979, 49.475887794000123 ], [ -123.242062181999941, 49.476132289000127 ], [ -123.242819776999966, 49.476617954000041 ], [ -123.242912944999929, 49.476719026000104 ], [ -123.242848068999976, 49.476736757000026 ], [ -123.242613166999931, 49.476745138000041 ], [ -123.240623415999949, 49.476694528000081 ] ], [ [ -123.231916298999963, 49.457781290000064 ], [ -123.231668921999955, 49.457601800000113 ], [ -123.231392591999949, 49.457664506000079 ], [ -123.231419575999965, 49.457826896000057 ], [ -123.231889406, 49.457852503000041 ], [ -123.231916298999963, 49.457781290000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95902000", "BldgCostT": "65140000", "sL_LossRatio": "0.781576860291843", "sL_AssetLoss": "843537", "sL_BldgLoss": "659289", "sL_StrLoss": "342959", "sL_NStrLoss": "316330", "sL_ContLoss": "184248", "geom_point": "0101000020E6100000E140CC4E54CF5EC0C6E89006FDBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.241058202999952, 49.470995196000054 ], [ -123.239549708999931, 49.470146507000074 ], [ -123.23922800499993, 49.469872591000083 ], [ -123.239036670999965, 49.469632799000102 ], [ -123.238987236999961, 49.469537860000102 ], [ -123.238968476999958, 49.469435596000068 ], [ -123.238916292999988, 49.469201111000103 ], [ -123.238967985999921, 49.468821605000102 ], [ -123.239110490999948, 49.468376801000034 ], [ -123.239115267999949, 49.468368350000027 ], [ -123.239706115999951, 49.467321395000106 ], [ -123.239736599999958, 49.467020494000053 ], [ -123.239675900999984, 49.466719106000056 ], [ -123.239529972999932, 49.466436301000066 ], [ -123.238880208999944, 49.465766986000077 ], [ -123.238669389, 49.465484302000064 ], [ -123.238650451999945, 49.465424761000108 ], [ -123.238570691999939, 49.465173793000098 ], [ -123.238573991999971, 49.464658001000039 ], [ -123.238525317999958, 49.464272203000071 ], [ -123.238392777999977, 49.463995991000075 ], [ -123.23817791099998, 49.463736703000109 ], [ -123.238011263999951, 49.463606489000043 ], [ -123.237053524999979, 49.462858134000058 ], [ -123.236692513999969, 49.4625759830001 ], [ -123.236451883999933, 49.462378110000067 ], [ -123.236443755999986, 49.4623581970001 ], [ -123.236301489999946, 49.462009611000042 ], [ -123.23632013199996, 49.461432977000072 ], [ -123.23632479299999, 49.461289147000059 ], [ -123.23632899899999, 49.461159383000073 ], [ -123.23633878699998, 49.461118529000053 ], [ -123.23642687, 49.460750482000087 ], [ -123.236437068999919, 49.460707786000093 ], [ -123.236446482999938, 49.460668377000033 ], [ -123.236419246999944, 49.460342309000048 ], [ -123.236162395999926, 49.460069195000102 ], [ -123.23578150899999, 49.459631460000054 ], [ -123.235545504999962, 49.459360188000083 ], [ -123.235709468999985, 49.459270724000064 ], [ -123.23572249899992, 49.45894010700006 ], [ -123.23557510099999, 49.458589296000071 ], [ -123.235490372999905, 49.458491541000086 ], [ -123.235440365999963, 49.458433828000054 ], [ -123.23542051699998, 49.458410895000029 ], [ -123.235357280999921, 49.458337952000079 ], [ -123.23527831200002, 49.458246797000086 ], [ -123.235434397999981, 49.458174202000116 ], [ -123.235715903999974, 49.45791941600006 ], [ -123.235814119999986, 49.457867797000084 ], [ -123.235873491999939, 49.457867506000106 ], [ -123.236231298999954, 49.457719997000027 ], [ -123.236475371999944, 49.457536198000071 ], [ -123.236917897999959, 49.4567804060001 ], [ -123.237142886999948, 49.45617831000007 ], [ -123.237159893999959, 49.455895090000062 ], [ -123.237203396, 49.455743203000061 ], [ -123.23710370699996, 49.455198165000141 ], [ -123.237000670999976, 49.454634988000066 ], [ -123.237074694999976, 49.452084157000058 ], [ -123.237131167999976, 49.450840317000029 ], [ -123.237048146999925, 49.450683307000133 ], [ -123.23705323499999, 49.450206217000115 ], [ -123.236852242999987, 49.448931483000088 ], [ -123.236844560999884, 49.448728499000033 ], [ -123.236969292999973, 49.448735215000085 ], [ -123.23764870499997, 49.448771685000033 ], [ -123.238013042999953, 49.44801817500008 ], [ -123.238066355999976, 49.448782031000107 ], [ -123.238436208999985, 49.448786252000026 ], [ -123.238620418999972, 49.448788363000119 ], [ -123.23894031599994, 49.448794719000041 ], [ -123.238968878999984, 49.449320092000036 ], [ -123.239494402999966, 49.449589201000094 ], [ -123.239330212999931, 49.449822800000156 ], [ -123.239510974999916, 49.450210196000128 ], [ -123.239747277999953, 49.450362599000137 ], [ -123.240326102999958, 49.450369687000027 ], [ -123.240505010999968, 49.450324106000025 ], [ -123.240656176999948, 49.450117594000162 ], [ -123.240918199999953, 49.450107594000073 ], [ -123.240932204999964, 49.450324089000041 ], [ -123.241222881999988, 49.450368294000064 ], [ -123.241306714999908, 49.450503606000055 ], [ -123.241335505999942, 49.450791291000051 ], [ -123.240940506999948, 49.451879388000101 ], [ -123.240861506999948, 49.452752402000094 ], [ -123.240436201999913, 49.453185293000061 ], [ -123.240119112999977, 49.453717975000124 ], [ -123.240039393999965, 49.453851891000042 ], [ -123.239158509999953, 49.454401591000071 ], [ -123.239063692999963, 49.454546892000032 ], [ -123.239312707999915, 49.45500411000004 ], [ -123.239466717999932, 49.455139408000093 ], [ -123.23988030199996, 49.455147892000092 ], [ -123.239908192999906, 49.455219107000062 ], [ -123.239536699999974, 49.455435594000051 ], [ -123.239467924999957, 49.455616502000069 ], [ -123.239981599999936, 49.456082188000153 ], [ -123.240328198999947, 49.456666087000087 ], [ -123.240940391, 49.457385394000092 ], [ -123.24121922099998, 49.458202801000034 ], [ -123.241263482999926, 49.458903498000048 ], [ -123.241091296999926, 49.45993899800002 ], [ -123.240720904999975, 49.460695211000036 ], [ -123.240088020999963, 49.461029899000046 ], [ -123.239594810999961, 49.461669402000012 ], [ -123.239584884999957, 49.462361505000075 ], [ -123.239586208999938, 49.462748903000026 ], [ -123.239976214999956, 49.463314294000092 ], [ -123.239978095999959, 49.463987604000096 ], [ -123.239929611999955, 49.463986369000096 ], [ -123.239934505999926, 49.464988736000031 ], [ -123.240348528999931, 49.464987877000155 ], [ -123.2403524899999, 49.465797409000068 ], [ -123.240766516999898, 49.465796549000039 ], [ -123.240770485, 49.466606082000069 ], [ -123.241184521999983, 49.466605218000076 ], [ -123.241188495999936, 49.467414751 ], [ -123.240774452999943, 49.467415613000121 ], [ -123.240777096999963, 49.467955302000078 ], [ -123.240363050999918, 49.467956163000103 ], [ -123.240367394999922, 49.46884433600006 ], [ -123.24036965099998, 49.469305384000101 ], [ -123.240382912999934, 49.469305355000053 ], [ -123.240385084999957, 49.469269003000072 ], [ -123.240543536999894, 49.469273036000111 ], [ -123.240625787999974, 49.469474011000088 ], [ -123.241346790999927, 49.470012389000082 ], [ -123.242509494, 49.4706305 ], [ -123.243283322999957, 49.470926701000074 ], [ -123.244099107999929, 49.471050590000097 ], [ -123.244719490999941, 49.471003600000124 ], [ -123.245739011999945, 49.470651893000138 ], [ -123.245890800999945, 49.470713102000111 ], [ -123.245877, 49.470831311000026 ], [ -123.24603160599996, 49.470973700000066 ], [ -123.245396803999981, 49.471299891000044 ], [ -123.245262702, 49.471893785000141 ], [ -123.24464207599999, 49.47206609400012 ], [ -123.244271316, 49.472417892000088 ], [ -123.244121680999967, 49.472894997000026 ], [ -123.244112084999983, 49.473856298000079 ], [ -123.243757694999914, 49.47475638900012 ], [ -123.243870509999965, 49.475125300000116 ], [ -123.243403086999962, 49.475512703000049 ], [ -123.243225486999961, 49.475918605000054 ], [ -123.243281188999973, 49.476170688000131 ], [ -123.243578378999956, 49.476537978000046 ], [ -123.242912944999929, 49.476719026000104 ], [ -123.242819776999966, 49.476617954000041 ], [ -123.242062181999941, 49.476132289000127 ], [ -123.241901494999979, 49.475887794000123 ], [ -123.241810186999956, 49.475637871000139 ], [ -123.241889547999961, 49.474933087000061 ], [ -123.241917166999897, 49.474685187 ], [ -123.241940085999914, 49.474479693000056 ], [ -123.242011307, 49.47374944799999 ], [ -123.24205481499996, 49.473659463000047 ], [ -123.242081324999944, 49.4735064770001 ], [ -123.242084679999934, 49.47348739000013 ], [ -123.242097709999967, 49.473412201000102 ], [ -123.242137594999974, 49.472674908000016 ], [ -123.24208705199996, 49.472486298000078 ], [ -123.241988706999948, 49.472119195000097 ], [ -123.241779795999946, 49.471688881000055 ], [ -123.241534903999977, 49.471398979000135 ], [ -123.241136905999937, 49.471061854000013 ], [ -123.241058202999952, 49.470995196000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.83398285268901", "sL_AssetLoss": "3849", "sL_BldgLoss": "3210", "sL_StrLoss": "1820", "sL_NStrLoss": "1390", "sL_ContLoss": "639", "geom_point": "0101000020E61000005D147F0C04CF5EC0FB1DED2C38B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.233989702999949, 49.433812576000093 ], [ -123.233986594999962, 49.43315888900009 ], [ -123.23368365499999, 49.433159501000063 ], [ -123.233572838999933, 49.433159724000099 ], [ -123.233571851999926, 49.432951810000063 ], [ -123.233275651000014, 49.432944246000041 ], [ -123.233294559999976, 49.432628437000048 ], [ -123.23311856399998, 49.432623943000117 ], [ -123.23331135299992, 49.42940382600009 ], [ -123.233333873999982, 49.429027620000049 ], [ -123.234447593999931, 49.429056058000086 ], [ -123.23523061899999, 49.429457998000082 ], [ -123.235758286999967, 49.429979304000014 ], [ -123.236118693999941, 49.430517588000058 ], [ -123.236009897999935, 49.43070711100011 ], [ -123.236412211999948, 49.431066003000126 ], [ -123.236482285999926, 49.431326590000076 ], [ -123.236360986999941, 49.432226703 ], [ -123.236211895999986, 49.432433213000088 ], [ -123.235840185999962, 49.432595590000069 ], [ -123.235565189999988, 49.432982892000091 ], [ -123.23557564699999, 49.433002960000117 ], [ -123.234813273, 49.432983503000095 ], [ -123.234814102999962, 49.433157210000061 ], [ -123.235227856999956, 49.433156370000091 ], [ -123.235231728999949, 49.43396590800009 ], [ -123.234094428999953, 49.433968216000011 ], [ -123.233990443999986, 49.433968426000028 ], [ -123.233989702999949, 49.433812576000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.909329140461216", "sL_AssetLoss": "3816", "sL_BldgLoss": "3470", "sL_StrLoss": "2430", "sL_NStrLoss": "1040", "sL_ContLoss": "346", "geom_point": "0101000020E61000003EEAF1732AB75EC014F4ACDE40B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858542547999932, 49.386868148000069 ], [ -122.858786746999954, 49.383272376 ], [ -122.858836347999954, 49.383273817000045 ], [ -122.858926184999987, 49.381950835000033 ], [ -122.8634128529999, 49.381933259000128 ], [ -122.86363388399991, 49.381932494000054 ], [ -122.863601091999968, 49.382069503000068 ], [ -122.862632099999985, 49.383561601000075 ], [ -122.8629481899999, 49.384011493000052 ], [ -122.86300240599995, 49.384524587000101 ], [ -122.86315320499989, 49.384632502000073 ], [ -122.863912513999963, 49.38415689400005 ], [ -122.865042393999943, 49.384203104000051 ], [ -122.865702202999969, 49.384554687000097 ], [ -122.866045905999982, 49.384869706000103 ], [ -122.866868810999947, 49.386372998000134 ], [ -122.866854519999919, 49.386758720000067 ], [ -122.865009462999964, 49.386705280000058 ], [ -122.86499936599995, 49.386854256000049 ], [ -122.864055948999976, 49.386826918000054 ], [ -122.864042337999962, 49.387027679000013 ], [ -122.858542547999932, 49.386868148000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.878725449800851", "sL_AssetLoss": "7281", "sL_BldgLoss": "6398", "sL_StrLoss": "4290", "sL_NStrLoss": "2108", "sL_ContLoss": "883", "geom_point": "0101000020E6100000DF62D1B692A35EC02BB60F9AD9B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556733386999966, 49.438116143000073 ], [ -122.56067927099997, 49.438241503000015 ], [ -122.560411596999941, 49.441836277000093 ], [ -122.560400792999957, 49.441835935 ], [ -122.560380109999926, 49.442113678000098 ], [ -122.560308762999938, 49.442111412000052 ], [ -122.560285024, 49.442430179 ], [ -122.560127547999954, 49.442425179000104 ], [ -122.560103133999959, 49.442752983000062 ], [ -122.56004737499994, 49.442751212000083 ], [ -122.56001495699999, 49.443186483000055 ], [ -122.559880857999957, 49.443182225000037 ], [ -122.559860065999942, 49.443461387000106 ], [ -122.559703096999925, 49.443456402000017 ], [ -122.559677176999955, 49.443804390000025 ], [ -122.559548880999955, 49.443800316000136 ], [ -122.559528986999936, 49.444067392000065 ], [ -122.555690188999975, 49.44394541300003 ], [ -122.555443399999973, 49.44725448300003 ], [ -122.554787988999948, 49.447233643000082 ], [ -122.554543348, 49.45051279500008 ], [ -122.551155504999926, 49.450405012000068 ], [ -122.55137312, 49.449975200000033 ], [ -122.551333682999939, 49.4498840010001 ], [ -122.551003905, 49.449604902 ], [ -122.551033004999908, 49.449314355000077 ], [ -122.551066092999974, 49.448983901000119 ], [ -122.550916755999978, 49.448645433000067 ], [ -122.550727991000016, 49.448217712000066 ], [ -122.550703193999965, 49.447759108000078 ], [ -122.5509550149999, 49.447462902000083 ], [ -122.551110995999977, 49.446987192000073 ], [ -122.551277405999883, 49.446816299000012 ], [ -122.552000025999973, 49.446433205000112 ], [ -122.552024278999966, 49.44522829400011 ], [ -122.553080785999924, 49.444395104000101 ], [ -122.55350769799999, 49.444342391000113 ], [ -122.55382688499995, 49.44419150100002 ], [ -122.55398289799993, 49.443670188000034 ], [ -122.554443599, 49.443213012000065 ], [ -122.555243594999951, 49.443215910000063 ], [ -122.555658910999981, 49.443046386000042 ], [ -122.556169276999924, 49.441538195000092 ], [ -122.556163177999977, 49.44058389700011 ], [ -122.556526206999976, 49.440091209000066 ], [ -122.556741607999939, 49.439246587000099 ], [ -122.556759793999944, 49.438607106000092 ], [ -122.556733386999966, 49.438116143000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.884894991922456", "sL_AssetLoss": "2476", "sL_BldgLoss": "2191", "sL_StrLoss": "1430", "sL_NStrLoss": "761", "sL_ContLoss": "285", "geom_point": "0101000020E6100000C945EF3332A95EC0E50B9C6412B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.640766473999946, 49.37726338800011 ], [ -122.640934864999949, 49.374944400000068 ], [ -122.642078403999918, 49.375254007000152 ], [ -122.642350974999943, 49.375695495000102 ], [ -122.64254420599994, 49.375516108000099 ], [ -122.6425607, 49.375328106000019 ], [ -122.642506390999955, 49.375130108000128 ], [ -122.642356295999932, 49.375048911000064 ], [ -122.640948526999935, 49.374756240000139 ], [ -122.641027535999925, 49.373668074000079 ], [ -122.646524982999921, 49.373838656 ], [ -122.646264346999985, 49.377433982000063 ], [ -122.640766473999946, 49.37726338800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.770570309098825", "sL_AssetLoss": "22970", "sL_BldgLoss": "17700", "sL_StrLoss": "8200", "sL_NStrLoss": "9500", "sL_ContLoss": "5270", "geom_point": "0101000020E6100000427F3E1D51D15EC0D0DB8E5F2EB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.272679087999947, 49.428682696000052 ], [ -123.272700471999912, 49.428320318000026 ], [ -123.272393499999978, 49.428312590000097 ], [ -123.272589247, 49.424995608000124 ], [ -123.272275000999969, 49.424987695000084 ], [ -123.272296794999932, 49.424618392000113 ], [ -123.271267586999983, 49.424592470000086 ], [ -123.271296704999941, 49.424099253000072 ], [ -123.270510789999932, 49.424079452000058 ], [ -123.270523288999954, 49.423867796000074 ], [ -123.270072687999956, 49.42385644000008 ], [ -123.270100010999968, 49.42339382100009 ], [ -123.269759305999969, 49.42338523300004 ], [ -123.269789499, 49.422874053000079 ], [ -123.267244346999973, 49.422809868000051 ], [ -123.26724556, 49.422789360000138 ], [ -123.266325514999934, 49.422766144000036 ], [ -123.266327411999967, 49.422734092000098 ], [ -123.266305028999923, 49.422733527000034 ], [ -123.266300659999942, 49.422807387000077 ], [ -123.261487356999936, 49.422685797000021 ], [ -123.261478087999976, 49.422295691000102 ], [ -123.261726697999947, 49.422141909000061 ], [ -123.262080593999912, 49.421170596000081 ], [ -123.262271689999949, 49.420998194000099 ], [ -123.26276821899999, 49.420862901000078 ], [ -123.263111189999933, 49.420646393000062 ], [ -123.26402130699995, 49.420616509000119 ], [ -123.263948892999963, 49.420095297000053 ], [ -123.264044806999948, 49.420103792000134 ], [ -123.264268912, 49.420437092000107 ], [ -123.264428781, 49.420526166000073 ], [ -123.264460602999961, 49.420543895000058 ], [ -123.264779183999963, 49.420506900000127 ], [ -123.265219011999974, 49.420308891000076 ], [ -123.265752208999942, 49.41951298900009 ], [ -123.266205430999946, 49.419222472000129 ], [ -123.266576687999972, 49.419085630000062 ], [ -123.26683105399999, 49.419075754000033 ], [ -123.267017998999961, 49.419189507000112 ], [ -123.267063677999943, 49.419746296000042 ], [ -123.267560309999951, 49.42001551000007 ], [ -123.267783307999963, 49.420284711000058 ], [ -123.267757009999968, 49.420662084000085 ], [ -123.267951297999943, 49.420877198000021 ], [ -123.268697086999978, 49.420921291000084 ], [ -123.26891569699994, 49.420813105000036 ], [ -123.269259314999914, 49.420334495000105 ], [ -123.26936661699996, 49.419957106000048 ], [ -123.269573283999975, 49.419865997000109 ], [ -123.26976321599993, 49.419353295000036 ], [ -123.270273019999962, 49.419388904000058 ], [ -123.27057807499996, 49.419620994000056 ], [ -123.270868900999957, 49.419656603000064 ], [ -123.271046195999958, 49.41939600400012 ], [ -123.271213915000018, 49.419646595000117 ], [ -123.271117906999933, 49.419844583000092 ], [ -123.271173003999962, 49.419952904000084 ], [ -123.271766818999936, 49.419987005000017 ], [ -123.27204259299999, 49.420220610000108 ], [ -123.27211359399999, 49.420580902000076 ], [ -123.271990906999974, 49.420787382000086 ], [ -123.272144387999958, 49.420985410000078 ], [ -123.272117697999946, 49.421344295000061 ], [ -123.272297905999977, 49.421389902000051 ], [ -123.27264209, 49.421307308000038 ], [ -123.272766696999952, 49.42136989300009 ], [ -123.272699688999978, 49.421703195000113 ], [ -123.272769529999977, 49.421761895000017 ], [ -123.272977718999968, 49.421936802000083 ], [ -123.272993173999978, 49.422224495000066 ], [ -123.273612991999968, 49.422294294000011 ], [ -123.273914099999942, 49.422023701000093 ], [ -123.274135592999954, 49.421988009000074 ], [ -123.274618786999923, 49.422175993000074 ], [ -123.274882311999974, 49.422525005000082 ], [ -123.275132500999987, 49.422660295000071 ], [ -123.275326000999954, 49.4226588020001 ], [ -123.275433793000019, 49.422560609000044 ], [ -123.275834913999944, 49.422477999000137 ], [ -123.276125907999955, 49.422891006000015 ], [ -123.275866615999945, 49.423422202000062 ], [ -123.275509218999929, 49.423621599000036 ], [ -123.275232238999948, 49.423892286000068 ], [ -123.274974390999972, 49.424144305000091 ], [ -123.274976819999949, 49.424404903000081 ], [ -123.275114882999929, 49.424575798000021 ], [ -123.275652792999963, 49.424620004000076 ], [ -123.276758393999955, 49.425048710000105 ], [ -123.27680281799995, 49.425417507000112 ], [ -123.276543382999989, 49.426038498000011 ], [ -123.27675149599996, 49.426299091000033 ], [ -123.27626088699995, 49.427343099000048 ], [ -123.27560341799996, 49.428146298000094 ], [ -123.275239364999948, 49.428747125000072 ], [ -123.272679087999947, 49.428682696000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.847161572052402", "sL_AssetLoss": "6870", "sL_BldgLoss": "5820", "sL_StrLoss": "3440", "sL_NStrLoss": "2380", "sL_ContLoss": "1050", "geom_point": "0101000020E6100000976E96BB24BE5EC0C25F40ED3FB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.967956082999947, 49.440414498000038 ], [ -122.967970011999981, 49.440243606000109 ], [ -122.967722891999983, 49.440262100000034 ], [ -122.96774897799996, 49.440397392000051 ], [ -122.967584316999975, 49.440405902000123 ], [ -122.967556507999959, 49.440262085000072 ], [ -122.967525271999961, 49.440201214000041 ], [ -122.967376698999885, 49.439911700000046 ], [ -122.96667480099994, 49.439443188000055 ], [ -122.966150386999942, 49.43926369200004 ], [ -122.966148124999961, 49.439261531000113 ], [ -122.966210442999937, 49.438312544000055 ], [ -122.96627291, 49.437361238000058 ], [ -122.971779071999919, 49.437515285000103 ], [ -122.971753234999966, 49.437909471000125 ], [ -122.97502958099993, 49.438001 ], [ -122.974794133999964, 49.441596737000026 ], [ -122.974790561999939, 49.441596638000064 ], [ -122.974756561999953, 49.442115837000124 ], [ -122.972837998999935, 49.442062252000014 ], [ -122.971776605999978, 49.44172051000006 ], [ -122.970370306999911, 49.440945699000025 ], [ -122.969626291999987, 49.440801891000035 ], [ -122.968466523999922, 49.440703601000088 ], [ -122.967956082999947, 49.440414498000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.874739908447774", "sL_AssetLoss": "2403", "sL_BldgLoss": "2102", "sL_StrLoss": "1350", "sL_NStrLoss": "752", "sL_ContLoss": "301", "geom_point": "0101000020E61000000DEB5B2060A35EC02D175C399CBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.548573582999964, 49.473543809000013 ], [ -122.548695432, 49.471914315000078 ], [ -122.554204225999982, 49.472089560000022 ], [ -122.554186866999885, 49.472322083000044 ], [ -122.554934413999931, 49.472345843000021 ], [ -122.554883261999947, 49.473031162000055 ], [ -122.556804290999978, 49.473092194000053 ], [ -122.556671550999937, 49.47487147800009 ], [ -122.556224194999956, 49.474981500000055 ], [ -122.554417384999951, 49.475028391000045 ], [ -122.55369671699999, 49.475160894000098 ], [ -122.553017589, 49.475445712000088 ], [ -122.552299808999948, 49.475451392000117 ], [ -122.552065880999933, 49.475324693000125 ], [ -122.552082986999963, 49.474982902000093 ], [ -122.551138795999947, 49.474277908000012 ], [ -122.549320700999914, 49.473830688000184 ], [ -122.548573582999964, 49.473543809000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.87736699729486", "sL_AssetLoss": "2218", "sL_BldgLoss": "1946", "sL_StrLoss": "1410", "sL_NStrLoss": "536", "sL_ContLoss": "272", "geom_point": "0101000020E6100000B473DC216CCF5EC052EFA99C76B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.239041651999941, 49.412167851000049 ], [ -123.239256405999967, 49.408571408000029 ], [ -123.239604663999955, 49.408580287000085 ], [ -123.239623909999949, 49.408257916000061 ], [ -123.239915091999947, 49.408265339000096 ], [ -123.239930103999939, 49.408013831000041 ], [ -123.240428886999936, 49.408028347000091 ], [ -123.240622851999973, 49.40803398200012 ], [ -123.241233899999912, 49.408088445000068 ], [ -123.241477285999963, 49.408110159000081 ], [ -123.241615411999959, 49.408078064000065 ], [ -123.242255358999927, 49.40792937800007 ], [ -123.242439727999979, 49.407886523000052 ], [ -123.242601296999965, 49.407848977000114 ], [ -123.243275701999906, 49.407678379000046 ], [ -123.243137476999905, 49.407871297000021 ], [ -123.242932577999923, 49.408339797000075 ], [ -123.242920119999923, 49.408727203000112 ], [ -123.24312928099999, 49.408888201000067 ], [ -123.243500792999924, 49.408986402000032 ], [ -123.24354419499997, 49.409192901000125 ], [ -123.243160212999939, 49.409940694000042 ], [ -123.242433306999928, 49.410644192000092 ], [ -123.241924090999987, 49.410627090000105 ], [ -123.241292203999976, 49.411185384000071 ], [ -123.241225488999973, 49.411420400000104 ], [ -123.241338194999955, 49.411841988000106 ], [ -123.241018205000032, 49.412218229000096 ], [ -123.239608388999955, 49.412182299000072 ], [ -123.239041651999941, 49.412167851000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.905574516496018", "sL_AssetLoss": "1758", "sL_BldgLoss": "1592", "sL_StrLoss": "1120", "sL_NStrLoss": "472", "sL_ContLoss": "166", "geom_point": "0101000020E610000062209DF41DB85EC05DDD1403E2B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.875688107999977, 49.435333482000082 ], [ -122.875757105999952, 49.435000807000101 ], [ -122.875386101999965, 49.434649600000064 ], [ -122.874973191999942, 49.434469812000053 ], [ -122.874961899999917, 49.434463526000066 ], [ -122.878275065999958, 49.434559055000072 ], [ -122.878227542999952, 49.435262396000041 ], [ -122.878309407999922, 49.435264756000095 ], [ -122.878066452999917, 49.438860295000069 ], [ -122.876251958999987, 49.438807991000061 ], [ -122.875749598999946, 49.438248001000026 ], [ -122.875105001999884, 49.43653809700001 ], [ -122.875245009999958, 49.435818898000065 ], [ -122.875688107999977, 49.435333482000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.80388510022732", "sL_AssetLoss": "4839", "sL_BldgLoss": "3890", "sL_StrLoss": "2020", "sL_NStrLoss": "1870", "sL_ContLoss": "949", "geom_point": "0101000020E6100000142A72672ACF5EC09EA5B78133B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.236920176999931, 49.440897467000092 ], [ -123.23691923799997, 49.440702379000051 ], [ -123.234950935999947, 49.440652170000071 ], [ -123.235166141999969, 49.437055887000099 ], [ -123.236206399999972, 49.437082427000121 ], [ -123.237856656, 49.437124510000025 ], [ -123.238084284999942, 49.437530407000025 ], [ -123.238359410999976, 49.437664292000164 ], [ -123.23861048699996, 49.438058789000138 ], [ -123.239023901999957, 49.438157112000084 ], [ -123.239055482999973, 49.438661303000046 ], [ -123.239208609999977, 49.438957503000033 ], [ -123.238838216999966, 49.439705204000091 ], [ -123.238840684999943, 49.4399032050001 ], [ -123.239020411999959, 49.440163790000049 ], [ -123.238718515999921, 49.44059530000002 ], [ -123.238671697999962, 49.440747053000038 ], [ -123.238160857, 49.440734033000112 ], [ -123.238163334999939, 49.441245812000034 ], [ -123.236921868999929, 49.441248362000103 ], [ -123.236920176999931, 49.440897467000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.940909735014879", "sL_AssetLoss": "1411.4", "sL_BldgLoss": "1328", "sL_StrLoss": "1020", "sL_NStrLoss": "308", "sL_ContLoss": "83.4", "geom_point": "0101000020E61000005D3FD4E81BA55EC017B6C9556AB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.578656090999957, 49.392797514000101 ], [ -122.57904138399995, 49.391699000000131 ], [ -122.581314309, 49.391770836000028 ], [ -122.581277944999968, 49.392262704000075 ], [ -122.581532031999956, 49.392270732 ], [ -122.581266242999931, 49.395865802000088 ], [ -122.577957251999948, 49.395761214000075 ], [ -122.578159312, 49.394522196000047 ], [ -122.578020585999937, 49.393136394000102 ], [ -122.578656090999957, 49.392797514000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.924174174174174", "sL_AssetLoss": "1332", "sL_BldgLoss": "1231", "sL_StrLoss": "1000", "sL_NStrLoss": "231", "sL_ContLoss": "101", "geom_point": "0101000020E61000003DFA784BA6B05EC0C85BCF8C55BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.763395608999957, 49.463916217000104 ], [ -122.76339431, 49.464186061000106 ], [ -122.763808325999932, 49.464186907000098 ], [ -122.763804432999933, 49.464996440000036 ], [ -122.762148343999954, 49.464993047000064 ], [ -122.762149648999966, 49.464723202000073 ], [ -122.76173563, 49.464722351000042 ], [ -122.761736937999942, 49.464452506000036 ], [ -122.761322920999973, 49.464451653000047 ], [ -122.761324230999932, 49.464181808000035 ], [ -122.760910214999953, 49.464180953000067 ], [ -122.760911527999923, 49.463911109000072 ], [ -122.760497514999926, 49.463910253000122 ], [ -122.760500146999959, 49.463370563000097 ], [ -122.759672128999938, 49.463368846000066 ], [ -122.759670808999928, 49.463638691000035 ], [ -122.759256797999953, 49.463637829000113 ], [ -122.759255475999964, 49.463907674000033 ], [ -122.758841462999953, 49.463906811000129 ], [ -122.758840138999972, 49.464176655000088 ], [ -122.758426121999904, 49.464175792000056 ], [ -122.758424795999971, 49.464445636000093 ], [ -122.758010778, 49.464444770000064 ], [ -122.75800945, 49.464714615000098 ], [ -122.756767390999983, 49.464712009000024 ], [ -122.756772732999949, 49.463632633000046 ], [ -122.757186743999966, 49.463633502000079 ], [ -122.757188076999952, 49.463363658000077 ], [ -122.757602086999952, 49.463364527000088 ], [ -122.75760341599999, 49.463094682000076 ], [ -122.758017422999927, 49.463095548000091 ], [ -122.75801875099998, 49.46282570500005 ], [ -122.75843275699998, 49.462826570000047 ], [ -122.758434081999908, 49.462556726000059 ], [ -122.758848083999979, 49.46255759000011 ], [ -122.758852057999974, 49.461748056000047 ], [ -122.760094041999949, 49.46175063900008 ], [ -122.760092723999946, 49.462020484000021 ], [ -122.760506721999917, 49.462021341000117 ], [ -122.76050409099993, 49.462561031000099 ], [ -122.760918093999962, 49.462561886000096 ], [ -122.76091678099999, 49.46283173200014 ], [ -122.761744788999948, 49.462833440000047 ], [ -122.761743479999964, 49.463103283000116 ], [ -122.762157485999978, 49.463104136000048 ], [ -122.762156181999984, 49.463373980000043 ], [ -122.762570189999934, 49.463374831000138 ], [ -122.762568884999922, 49.463644675000069 ], [ -122.762982896999958, 49.463645524000093 ], [ -122.762981594999928, 49.463915369000119 ], [ -122.763395608999957, 49.463916217000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.902073033220574", "sL_AssetLoss": "11529", "sL_BldgLoss": "10400", "sL_StrLoss": "7230", "sL_NStrLoss": "3170", "sL_ContLoss": "1129", "geom_point": "0101000020E6100000315CA13895B65EC0B75A0E9126B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852391290999975, 49.442047345000084 ], [ -122.852417769999974, 49.441658729999986 ], [ -122.852277111999967, 49.441654643000028 ], [ -122.852299148999947, 49.44133122500007 ], [ -122.852086223999947, 49.441325038000024 ], [ -122.852092979999938, 49.441225902 ], [ -122.85131240299998, 49.441203219000037 ], [ -122.851436420999946, 49.439383627000026 ], [ -122.849835363999958, 49.439337084000101 ], [ -122.84986404199995, 49.438916516000063 ], [ -122.849697784999989, 49.438911681000086 ], [ -122.849942947, 49.435316206000046 ], [ -122.850783074999953, 49.43534063300006 ], [ -122.850831565999925, 49.434629225000045 ], [ -122.850707489999934, 49.434625619000023 ], [ -122.850721590999981, 49.434418748000041 ], [ -122.850197384999916, 49.434403507000127 ], [ -122.850211021999911, 49.434203464000099 ], [ -122.849785683, 49.434191095000088 ], [ -122.849798229, 49.434007084000015 ], [ -122.849385678999937, 49.43399508500007 ], [ -122.849398907999969, 49.433801083000034 ], [ -122.848807171999951, 49.433783871000081 ], [ -122.849052375999975, 49.43018837100005 ], [ -122.84935886399991, 49.430197287000027 ], [ -122.849415079999957, 49.429372822000033 ], [ -122.849204359999959, 49.429366692 ], [ -122.849301223999959, 49.427946107000032 ], [ -122.84897064099998, 49.427936491000047 ], [ -122.849215800999986, 49.424340959000062 ], [ -122.852665108999972, 49.424441256000129 ], [ -122.852840094, 49.421871741000054 ], [ -122.853086320999978, 49.421878896000102 ], [ -122.853249012999953, 49.419489444000114 ], [ -122.85768932699996, 49.419618384000053 ], [ -122.857608191999958, 49.420075196000077 ], [ -122.856972091, 49.420838893000038 ], [ -122.857082507999934, 49.420955498000104 ], [ -122.857700790999957, 49.421298505000038 ], [ -122.858044520999911, 49.421820798000084 ], [ -122.858056104999946, 49.4226122910001 ], [ -122.85790250699992, 49.423097810000101 ], [ -122.85752867799999, 49.423627995000082 ], [ -122.856603908999929, 49.423869888000098 ], [ -122.855721205999942, 49.423976209000038 ], [ -122.855403593999966, 49.424084109000077 ], [ -122.855155095999976, 49.424434799000039 ], [ -122.854864001999943, 49.424973904000097 ], [ -122.854422593999928, 49.425279405000062 ], [ -122.853937382999916, 49.425800700000082 ], [ -122.85382652599999, 49.426186605000076 ], [ -122.853852816999904, 49.426574008000038 ], [ -122.854182489999985, 49.427060005000051 ], [ -122.854180105999902, 49.427626795000016 ], [ -122.854441094999984, 49.428148587000024 ], [ -122.854399015999903, 49.428589496000029 ], [ -122.854644390999965, 49.429390413000078 ], [ -122.854559785, 49.429974701000056 ], [ -122.85415640799999, 49.43082949500009 ], [ -122.854032490999884, 49.430909614000079 ], [ -122.853343485999986, 49.430926804000094 ], [ -122.853163412999962, 49.430989401000033 ], [ -122.853382096999923, 49.431503195000069 ], [ -122.855102613, 49.432736907000056 ], [ -122.855597192999966, 49.4333048 ], [ -122.855872289000018, 49.433763212 ], [ -122.855939488999965, 49.434725812000103 ], [ -122.85570299299998, 49.435211517000042 ], [ -122.855496106999979, 49.435408392000085 ], [ -122.854651380999954, 49.436073396000047 ], [ -122.854113614999932, 49.436361198000021 ], [ -122.853975800999933, 49.43645039600014 ], [ -122.854152607999964, 49.436972184000119 ], [ -122.854274204999925, 49.43806028400008 ], [ -122.854535582, 49.438205192000019 ], [ -122.854809896999924, 49.438718201000079 ], [ -122.855084303999902, 49.438907503000074 ], [ -122.855759713999959, 49.439115196000039 ], [ -122.856142997999953, 49.440005687000038 ], [ -122.856139607999964, 49.441831601000032 ], [ -122.856172923999964, 49.442157144000063 ], [ -122.852391290999975, 49.442047345000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.831390831390831", "sL_AssetLoss": "3861", "sL_BldgLoss": "3210", "sL_StrLoss": "1800", "sL_NStrLoss": "1410", "sL_ContLoss": "651", "geom_point": "0101000020E6100000AEADC87DE5CE5EC018DA104ED1B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.231876566999986, 49.424411008000043 ], [ -123.231875285999962, 49.424139262000125 ], [ -123.230671799999939, 49.424108500000038 ], [ -123.230887261999968, 49.420512137000031 ], [ -123.231058691999976, 49.420516520000099 ], [ -123.23107376800003, 49.420264841000055 ], [ -123.231138794999964, 49.420266504000075 ], [ -123.23114665899999, 49.420135226000042 ], [ -123.23110736199996, 49.420134221000083 ], [ -123.231322769999906, 49.416537837000028 ], [ -123.23409198799996, 49.416608599 ], [ -123.235363460999949, 49.416641065000078 ], [ -123.234936507999976, 49.417018995000056 ], [ -123.234362518999944, 49.41792910200008 ], [ -123.234267489, 49.418260904000121 ], [ -123.234761021999986, 49.42036590400005 ], [ -123.235066193999941, 49.420706316000079 ], [ -123.235164410999985, 49.421200499000051 ], [ -123.234918986999929, 49.421822792000079 ], [ -123.234844960999951, 49.421878280000087 ], [ -123.234233112999959, 49.422337005000045 ], [ -123.233794011999962, 49.422805502000067 ], [ -123.233727619999925, 49.423595999000042 ], [ -123.233347531999954, 49.424176878000026 ], [ -123.23311648399999, 49.42417097600007 ], [ -123.23311907899992, 49.424718569000049 ], [ -123.233089267999972, 49.424795391000011 ], [ -123.231878389999963, 49.42479782500007 ], [ -123.231876566999986, 49.424411008000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.772394136807818", "sL_AssetLoss": "245.6", "sL_BldgLoss": "189.7", "sL_StrLoss": "40.7", "sL_NStrLoss": "149", "sL_ContLoss": "55.9", "geom_point": "0101000020E610000003A9FB9D39B05EC0E9BC00DADAB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.752380396999939, 49.431511418000106 ], [ -122.752381753999927, 49.431241573000129 ], [ -122.751968016999925, 49.431240686000073 ], [ -122.751970737999912, 49.430700994000048 ], [ -122.751557003999935, 49.43070010600011 ], [ -122.75155836499999, 49.430430260000065 ], [ -122.751144635999964, 49.430429371000109 ], [ -122.751147365999913, 49.429889680000016 ], [ -122.75073364, 49.429888789000039 ], [ -122.750735005999985, 49.429618943000079 ], [ -122.750321281999959, 49.429618051000048 ], [ -122.750322650999948, 49.429348205000039 ], [ -122.749908928999943, 49.429347311000114 ], [ -122.749910302, 49.429077465000042 ], [ -122.749082861999966, 49.429075672000103 ], [ -122.749088366999956, 49.427996289000063 ], [ -122.75032949699991, 49.427998976000055 ], [ -122.750328129999957, 49.42826882100006 ], [ -122.751155554999983, 49.428270605000101 ], [ -122.751154190999927, 49.428540451000053 ], [ -122.751567906999966, 49.428541340000031 ], [ -122.751578804999895, 49.42638257400008 ], [ -122.75323359399999, 49.42638611600006 ], [ -122.75323224, 49.426655962000027 ], [ -122.75364594, 49.426656844000085 ], [ -122.753648642999934, 49.426117152000103 ], [ -122.754062337999969, 49.426118033000094 ], [ -122.754066382999923, 49.425308495000095 ], [ -122.75530744799994, 49.425311128000068 ], [ -122.75530610599999, 49.425580973000095 ], [ -122.755719796999941, 49.425581849000068 ], [ -122.755714437999984, 49.426661232000072 ], [ -122.756128135999944, 49.426662105000048 ], [ -122.756120110999987, 49.42828118200007 ], [ -122.756533823999945, 49.428282053000046 ], [ -122.756532489999969, 49.428551899000119 ], [ -122.756946205999924, 49.428552769000127 ], [ -122.756940870999969, 49.429632152000103 ], [ -122.757354596999932, 49.429633022000104 ], [ -122.757350604999928, 49.430442559000035 ], [ -122.755695678999928, 49.430439075000088 ], [ -122.755698357999961, 49.429899384000095 ], [ -122.755284631999984, 49.42989850900009 ], [ -122.75529000200001, 49.428819124000015 ], [ -122.753221412999892, 49.428814729000116 ], [ -122.75322006, 49.429084575 ], [ -122.753633779999959, 49.429085457000014 ], [ -122.753631075999962, 49.429625148000099 ], [ -122.754044800999907, 49.42962602900009 ], [ -122.754040752999984, 49.430435568000092 ], [ -122.754454485999958, 49.430436447000041 ], [ -122.754449095999959, 49.431515829000027 ], [ -122.752380396999939, 49.431511418000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.86144578313253", "sL_AssetLoss": "2988", "sL_BldgLoss": "2574", "sL_StrLoss": "1580", "sL_NStrLoss": "994", "sL_ContLoss": "414", "geom_point": "0101000020E61000007752DB5D52A75EC09787546A59AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.61368411899997, 49.355611923000083 ], [ -122.613706611999973, 49.355304507000078 ], [ -122.609498190999943, 49.355172612000089 ], [ -122.609621272999945, 49.353492412000094 ], [ -122.609770288999968, 49.353255705000059 ], [ -122.610018191000023, 49.353121811000079 ], [ -122.610145955999926, 49.353120973000038 ], [ -122.611767296999957, 49.35311039700013 ], [ -122.612746898999887, 49.352834106000095 ], [ -122.613079892999934, 49.352601993000071 ], [ -122.613443809999936, 49.351847203000084 ], [ -122.613718017999958, 49.351811596000054 ], [ -122.613826608999915, 49.352055102000136 ], [ -122.61376532599995, 49.352328186000094 ], [ -122.613741937999961, 49.352432578000062 ], [ -122.613657313999951, 49.352809891000064 ], [ -122.614563415999939, 49.352993602000026 ], [ -122.61529369500002, 49.353004996000038 ], [ -122.615432400999921, 49.352923901000118 ], [ -122.615476109999975, 49.352636210000043 ], [ -122.61585988, 49.352619099000066 ], [ -122.615875677999966, 49.352864504000088 ], [ -122.615910289999988, 49.353402397000067 ], [ -122.616424626999901, 49.353480173000072 ], [ -122.616676239999947, 49.353518204000117 ], [ -122.617615487999956, 49.353660197000067 ], [ -122.618112567999916, 49.353700708000105 ], [ -122.618245675999958, 49.35371154000012 ], [ -122.618523810999989, 49.353734195000065 ], [ -122.619335717999931, 49.353642813000143 ], [ -122.61917932099999, 49.355783898000013 ], [ -122.61368411899997, 49.355611923000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.925373134328358", "sL_AssetLoss": "2814", "sL_BldgLoss": "2604", "sL_StrLoss": "1935", "sL_NStrLoss": "669", "sL_ContLoss": "210", "geom_point": "0101000020E610000038ECC6D440A55EC0F921C20125B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.582062584999946, 49.400680404000106 ], [ -122.581827702999973, 49.400670512000048 ], [ -122.581222208999932, 49.400748790000087 ], [ -122.579566169999964, 49.401919653000128 ], [ -122.579668229999925, 49.400540141000121 ], [ -122.577237151999952, 49.400463283000121 ], [ -122.577228084999959, 49.400221907000066 ], [ -122.577607912999966, 49.399306106000026 ], [ -122.578219617999963, 49.398750607000153 ], [ -122.578289904999977, 49.397131284000075 ], [ -122.578070682999936, 49.396923403000102 ], [ -122.577868990999974, 49.396302395000127 ], [ -122.577913337999945, 49.396030484000093 ], [ -122.581341779999917, 49.396138847000081 ], [ -122.581319870999948, 49.396435175000128 ], [ -122.581432895999939, 49.396438745000083 ], [ -122.581273750999927, 49.398591130000121 ], [ -122.585315993999984, 49.398718747000018 ], [ -122.585311331999904, 49.398781872000015 ], [ -122.585750782999966, 49.398795737000086 ], [ -122.585740264999984, 49.398938173000083 ], [ -122.586274373999927, 49.398955022000052 ], [ -122.586255899999941, 49.399205230000128 ], [ -122.586860768999884, 49.399224308000043 ], [ -122.586595355000014, 49.402819354 ], [ -122.583246859999946, 49.402713699000046 ], [ -122.583689205999988, 49.402170188000056 ], [ -122.583574204999948, 49.401242993000096 ], [ -122.582900804, 49.401052204000074 ], [ -122.582062584999946, 49.400680404000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.919578114700066", "sL_AssetLoss": "3034", "sL_BldgLoss": "2790", "sL_StrLoss": "2040", "sL_NStrLoss": "750", "sL_ContLoss": "244", "geom_point": "0101000020E61000004BB867C8FEA55EC09E1D99DC62B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.590931615999963, 49.379915505000113 ], [ -122.591555299999968, 49.379377112000093 ], [ -122.59224407899994, 49.379415599 ], [ -122.592312809, 49.379523810000073 ], [ -122.592813599999943, 49.379058107000041 ], [ -122.592827308, 49.37890568600011 ], [ -122.592595215999935, 49.378841598000072 ], [ -122.592595594999963, 49.378769014000056 ], [ -122.592971082999952, 49.378311793000108 ], [ -122.59265660599999, 49.377970011000038 ], [ -122.592449988999959, 49.377941502000041 ], [ -122.592436811999931, 49.377797709000035 ], [ -122.592743698999953, 49.377330486000091 ], [ -122.591957907999927, 49.37751709000009 ], [ -122.59198650699993, 49.377391788000097 ], [ -122.592291307999943, 49.37725788900007 ], [ -122.592101390999986, 49.376806403000089 ], [ -122.592173503999931, 49.376518708000106 ], [ -122.591675201999948, 49.376589891000094 ], [ -122.591677594999979, 49.376419007000045 ], [ -122.591845903, 49.376168702000051 ], [ -122.591859318999965, 49.376149901000076 ], [ -122.592107288999927, 49.376015998000121 ], [ -122.59210977799998, 49.3756557 ], [ -122.592307112999933, 49.375359400000072 ], [ -122.592593710999921, 49.375469104000032 ], [ -122.593009492999968, 49.375389307000056 ], [ -122.593034406999948, 49.375174687000083 ], [ -122.593041657999919, 49.375112154000071 ], [ -122.593111789999909, 49.374507695000098 ], [ -122.592892412999959, 49.374372504000092 ], [ -122.592952913999966, 49.373851207000023 ], [ -122.593214909999944, 49.373636088000133 ], [ -122.593408498999963, 49.373618994000033 ], [ -122.593357891999943, 49.372979603000033 ], [ -122.593524898999931, 49.372800096000049 ], [ -122.593293994999939, 49.372385697000048 ], [ -122.593295869999935, 49.372357235000074 ], [ -122.595918165999962, 49.372439799000055 ], [ -122.595654356999901, 49.376024847000132 ], [ -122.595945388999937, 49.376034007000051 ], [ -122.595920064999987, 49.376378145000018 ], [ -122.596071305999914, 49.37638290400011 ], [ -122.59603235899999, 49.376912166000075 ], [ -122.596176534999955, 49.376916703000092 ], [ -122.595911971999925, 49.38051189100004 ], [ -122.594693955999972, 49.38047355600002 ], [ -122.594607282999959, 49.381650819000129 ], [ -122.593943509999932, 49.381629923000048 ], [ -122.59389019299999, 49.382353935000012 ], [ -122.593471366999978, 49.382340747000072 ], [ -122.593438399999954, 49.382788344000147 ], [ -122.589367837999973, 49.382660091000083 ], [ -122.589409084999957, 49.38259009800008 ], [ -122.589780404999928, 49.382420691000043 ], [ -122.589963719999986, 49.382016196000045 ], [ -122.590338311, 49.381829599000071 ], [ -122.590712216999961, 49.381398099000158 ], [ -122.590605110999974, 49.381128896000064 ], [ -122.590371590999979, 49.381109008000053 ], [ -122.59038511199995, 49.381002207000037 ], [ -122.590680393999932, 49.380445314000085 ], [ -122.590818912999936, 49.380391201000037 ], [ -122.590931615999963, 49.379915505000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.779329608938548", "sL_AssetLoss": "10740", "sL_BldgLoss": "8370", "sL_StrLoss": "4600", "sL_NStrLoss": "3770", "sL_ContLoss": "2370", "geom_point": "0101000020E610000026A4B93EC1B15EC0910A84192AAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.772716131999942, 49.355132251000036 ], [ -122.77296682799998, 49.35153650700012 ], [ -122.774700189999976, 49.351588231000044 ], [ -122.774712502999989, 49.351411507000059 ], [ -122.774675524999921, 49.351411434000035 ], [ -122.774676801999931, 49.351132131000092 ], [ -122.775645115999978, 49.351224971000093 ], [ -122.777088177999929, 49.351237769000129 ], [ -122.781214848999923, 49.351274190000019 ], [ -122.781186389999974, 49.351683458000089 ], [ -122.783860827999973, 49.351763049000063 ], [ -122.783760162999968, 49.35321186800013 ], [ -122.783131003999983, 49.352965195000095 ], [ -122.782773493999983, 49.352936713000084 ], [ -122.782345091999943, 49.353061994000051 ], [ -122.781766780999945, 49.352881091000015 ], [ -122.78154710699999, 49.35289819500008 ], [ -122.781765706999977, 49.353412400000067 ], [ -122.781530394999919, 49.353806897000041 ], [ -122.780853005999987, 49.354103106000046 ], [ -122.779916217, 49.354154393000094 ], [ -122.779737919999889, 49.354046100000048 ], [ -122.779629302999979, 49.353660212000165 ], [ -122.779423103999974, 49.353497807000032 ], [ -122.778542900000019, 49.353576192000027 ], [ -122.77506551299993, 49.354883596000036 ], [ -122.775094086999943, 49.35505449000005 ], [ -122.775262604999966, 49.355208229000027 ], [ -122.772716131999942, 49.355132251000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.86013986013986", "sL_AssetLoss": "2717", "sL_BldgLoss": "2337", "sL_StrLoss": "1450", "sL_NStrLoss": "887", "sL_ContLoss": "380", "geom_point": "0101000020E6100000CCCA7A5AD3A95EC02F988D0825AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65450522799992, 49.351120992000084 ], [ -122.657484577999966, 49.351059150000069 ], [ -122.657393678999952, 49.352317883000048 ], [ -122.656455731999955, 49.352288879000128 ], [ -122.656397383999945, 49.353096605000104 ], [ -122.656245540999947, 49.353091909000113 ], [ -122.656224192999929, 49.353387409000092 ], [ -122.655882619999929, 49.353376844000081 ], [ -122.655826518999945, 49.354153316000065 ], [ -122.655719970999883, 49.354150021000073 ], [ -122.655693134999964, 49.354521418000019 ], [ -122.650197946999953, 49.354351298000061 ], [ -122.65042730499999, 49.351182052000063 ], [ -122.654431155999973, 49.35112248500014 ], [ -122.65450522799992, 49.351120992000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.82179675994109", "sL_AssetLoss": "3395", "sL_BldgLoss": "2790", "sL_StrLoss": "1760", "sL_NStrLoss": "1030", "sL_ContLoss": "605", "geom_point": "0101000020E6100000BD1F75432CCF5EC0B17E3BA225B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.232511132999932, 49.448683371000101 ], [ -123.232544815000011, 49.448121154000049 ], [ -123.232888234999933, 49.448129923000053 ], [ -123.23290561499999, 49.447839761000097 ], [ -123.236922795999945, 49.447942256000019 ], [ -123.236954128999926, 49.447943056000035 ], [ -123.23695361899992, 49.447837262000057 ], [ -123.236951774999937, 49.447454803000021 ], [ -123.237096429999966, 49.447454507000018 ], [ -123.237365648999969, 49.447453955000114 ], [ -123.237363312999918, 49.446969811000024 ], [ -123.237361740999972, 49.446644420000091 ], [ -123.237515371999933, 49.44664410400005 ], [ -123.237775608999968, 49.446643568000042 ], [ -123.237763865000019, 49.444214962000018 ], [ -123.237566876999921, 49.444215366000108 ], [ -123.237350018999919, 49.444215812000081 ], [ -123.237347704999976, 49.44373654500005 ], [ -123.237344806999928, 49.443136430000088 ], [ -123.237073271999932, 49.44313698800007 ], [ -123.236930968999971, 49.44313728000008 ], [ -123.23692884399999, 49.442696213000033 ], [ -123.236927067999929, 49.442327743000142 ], [ -123.238168562999988, 49.442325193000066 ], [ -123.238172483999932, 49.443134729000072 ], [ -123.238586322999964, 49.44313387600004 ], [ -123.238591559999946, 49.444213257000051 ], [ -123.239005407999983, 49.444212403000101 ], [ -123.239015753999965, 49.446340623000047 ], [ -123.238967580999898, 49.446397597000036 ], [ -123.238940065999941, 49.446641169 ], [ -123.23860334599999, 49.446641864000071 ], [ -123.238612088999957, 49.448443419000107 ], [ -123.238939584999954, 49.448451763000044 ], [ -123.238923891999931, 49.448492601000076 ], [ -123.23894031599994, 49.448794719000041 ], [ -123.238620418999972, 49.448788363000119 ], [ -123.238436208999985, 49.448786252000026 ], [ -123.238066355999976, 49.448782031000107 ], [ -123.238013042999953, 49.44801817500008 ], [ -123.23764870499997, 49.448771685000033 ], [ -123.236969292999973, 49.448735215000085 ], [ -123.236844560999884, 49.448728499000033 ], [ -123.232511132999932, 49.448683371000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.910835214446953", "sL_AssetLoss": "1772", "sL_BldgLoss": "1614", "sL_StrLoss": "1140", "sL_NStrLoss": "474", "sL_ContLoss": "158", "geom_point": "0101000020E61000008454409072B85EC0797C18ADE5BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880407324999936, 49.477525098000108 ], [ -122.88043120899999, 49.477171699000095 ], [ -122.880038131999953, 49.477160390000066 ], [ -122.880281135999965, 49.473565049000065 ], [ -122.883004620999955, 49.473643378000077 ], [ -122.883099092999913, 49.474091306000062 ], [ -122.883345413999962, 49.474937304000079 ], [ -122.883646089999928, 49.475737697000078 ], [ -122.884183298999943, 49.476268913000084 ], [ -122.884293492999944, 49.476610710000038 ], [ -122.884430896999902, 49.477394098000026 ], [ -122.884353010999959, 49.47763854100009 ], [ -122.880407324999936, 49.477525098000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.894641782059001", "sL_AssetLoss": "1661", "sL_BldgLoss": "1486", "sL_StrLoss": "1130", "sL_NStrLoss": "356", "sL_ContLoss": "175", "geom_point": "0101000020E6100000C385FA6509B75EC09C2A29C1ACB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858641393999932, 49.45374418100009 ], [ -122.858648853999966, 49.453634521000048 ], [ -122.858077781999896, 49.453617966000088 ], [ -122.858104745999967, 49.453221625000047 ], [ -122.85792670099994, 49.453216463000082 ], [ -122.858094285, 49.450753170000056 ], [ -122.857455838999954, 49.450734658000073 ], [ -122.857700459999947, 49.447139227000044 ], [ -122.86085050599999, 49.44723053200007 ], [ -122.860922896999952, 49.447288995000044 ], [ -122.861320995999961, 49.448458709000114 ], [ -122.861870278999973, 49.449079995000055 ], [ -122.862160015999947, 49.449206299000053 ], [ -122.862367487, 49.449197699000052 ], [ -122.862946414999925, 49.44887439400005 ], [ -122.86325038699999, 49.448892795000084 ], [ -122.863139711999978, 49.449126600000092 ], [ -122.862573303999952, 49.44957550200008 ], [ -122.862353015999929, 49.449557893000076 ], [ -122.861440176999963, 49.449825596000011 ], [ -122.86073580099999, 49.449896913000075 ], [ -122.860447904999944, 49.449798596000065 ], [ -122.86025408899999, 49.449815696000087 ], [ -122.859300223999981, 49.450201603000032 ], [ -122.860915217999946, 49.450319804000088 ], [ -122.861812199999946, 49.450087702000097 ], [ -122.862612996999985, 49.449989414000072 ], [ -122.86309571699999, 49.450053002000118 ], [ -122.863233897999947, 49.450152103000072 ], [ -122.863109286999986, 49.450259899000102 ], [ -122.862403898999943, 49.450438810000094 ], [ -122.862198018999948, 49.450627601000114 ], [ -122.862195510999967, 49.450942393000062 ], [ -122.86242991099999, 49.451554299000058 ], [ -122.862244110999939, 49.453380494000086 ], [ -122.86238021399997, 49.453852492000067 ], [ -122.858641393999932, 49.45374418100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.907206928549335", "sL_AssetLoss": "9699", "sL_BldgLoss": "8799", "sL_StrLoss": "6260", "sL_NStrLoss": "2539", "sL_ContLoss": "900", "geom_point": "0101000020E610000085E464E2D6B65EC01BFBED467AB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85388603399997, 49.418112145000045 ], [ -122.853905491, 49.417826315000056 ], [ -122.853582740999968, 49.417816937000062 ], [ -122.853587159999989, 49.417752023000013 ], [ -122.85297462299999, 49.417734222000057 ], [ -122.853102652999951, 49.415853768000112 ], [ -122.851889302999922, 49.415818498000093 ], [ -122.852134171999921, 49.412222896000053 ], [ -122.8526752399999, 49.412238626000025 ], [ -122.852708575999912, 49.41174900900004 ], [ -122.85367796199999, 49.411777184000073 ], [ -122.853702635999966, 49.411414673000088 ], [ -122.853588438999935, 49.41141135400008 ], [ -122.853636611999931, 49.410703583000092 ], [ -122.853597882999978, 49.410702457000056 ], [ -122.853603540999956, 49.410619335000085 ], [ -122.852836361999948, 49.410597036000077 ], [ -122.853081129999964, 49.407001405000116 ], [ -122.854756292999966, 49.40705008700008 ], [ -122.854805598999974, 49.40632534500002 ], [ -122.854949451999971, 49.406329524000043 ], [ -122.854974211999945, 49.405965547000051 ], [ -122.85546556499996, 49.405979821000116 ], [ -122.855587488999973, 49.404187158000042 ], [ -122.855963243999952, 49.404198072000064 ], [ -122.855978884999971, 49.403968066000104 ], [ -122.856699419000037, 49.403988991000034 ], [ -122.856701656999959, 49.403956084000043 ], [ -122.857083761999945, 49.403967179000098 ], [ -122.857098852, 49.403745192000059 ], [ -122.857733980999939, 49.403763631000075 ], [ -122.857748736999923, 49.403546508000041 ], [ -122.86111803299994, 49.403644260000057 ], [ -122.861229283999961, 49.402005489000096 ], [ -122.865865465999917, 49.402139825000098 ], [ -122.86582041599999, 49.402248501000074 ], [ -122.865776704999945, 49.402769486000118 ], [ -122.865514299999958, 49.403183007000074 ], [ -122.863333285999914, 49.404250990000044 ], [ -122.861663, 49.405256397000095 ], [ -122.861013982999935, 49.405426492000075 ], [ -122.860586520999931, 49.405632804000064 ], [ -122.859950207999958, 49.406225693000096 ], [ -122.859313991999969, 49.407331493000058 ], [ -122.858855715999951, 49.408509299000094 ], [ -122.85870308799997, 49.408706905000081 ], [ -122.858506899999924, 49.40958749300011 ], [ -122.85863021599998, 49.410218402000069 ], [ -122.858709403999953, 49.411352108000088 ], [ -122.858707304999896, 49.412044 ], [ -122.858568111999958, 49.412367587000062 ], [ -122.857669409999971, 49.41310378700004 ], [ -122.857229004999965, 49.413310484000064 ], [ -122.856840801999908, 49.413669185000067 ], [ -122.856772303999932, 49.413804505000073 ], [ -122.856674489999989, 49.414362802000113 ], [ -122.856727709000012, 49.414677087000072 ], [ -122.857057500999957, 49.415271489000084 ], [ -122.857318601999964, 49.41551441100011 ], [ -122.857813684999954, 49.415784892000069 ], [ -122.858337882999976, 49.415830494000026 ], [ -122.858515204999946, 49.416568289000054 ], [ -122.858458011999957, 49.417080905000077 ], [ -122.858194092999952, 49.417800911000022 ], [ -122.8581175, 49.418235005000035 ], [ -122.85388603399997, 49.418112145000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.902151639344262", "sL_AssetLoss": "1952", "sL_BldgLoss": "1761", "sL_StrLoss": "1220", "sL_NStrLoss": "541", "sL_ContLoss": "191", "geom_point": "0101000020E61000003B08F0CC7AB85EC0BB792E7C92B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.879192329999981, 49.448133252000048 ], [ -122.884699480999984, 49.448291719000025 ], [ -122.884456953999972, 49.451887203000133 ], [ -122.88128520099994, 49.451795972000134 ], [ -122.881262479999947, 49.451404195000102 ], [ -122.881636382999929, 49.45099980300008 ], [ -122.881635813999935, 49.450757097000043 ], [ -122.881197784999969, 49.449758201000037 ], [ -122.880894087999962, 49.449506002000113 ], [ -122.880619592999906, 49.449406914000122 ], [ -122.880163015, 49.449352397000091 ], [ -122.87964010099995, 49.449180503000029 ], [ -122.87913439499998, 49.448990679000133 ], [ -122.879192329999981, 49.448133252000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.800359712230216", "sL_AssetLoss": "5560", "sL_BldgLoss": "4450", "sL_StrLoss": "2260", "sL_NStrLoss": "2190", "sL_ContLoss": "1110", "geom_point": "0101000020E610000035A9156493CE5EC0C388969FC8BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.228659124999936, 49.464493744000066 ], [ -123.228677187999949, 49.464192749000055 ], [ -123.228606540999962, 49.464190944000052 ], [ -123.228612089999956, 49.464098477000093 ], [ -123.227960823999979, 49.464081827 ], [ -123.227980210999931, 49.463758868000063 ], [ -123.227735934999941, 49.463752621000062 ], [ -123.227756465999931, 49.463410642000092 ], [ -123.227419045999952, 49.463402014000089 ], [ -123.227431128999953, 49.463200767000025 ], [ -123.227425158999907, 49.463200615000041 ], [ -123.22754662799997, 49.461177399000086 ], [ -123.226776560999895, 49.461157702000044 ], [ -123.226805402999929, 49.460677404000123 ], [ -123.225623948999981, 49.460647174000101 ], [ -123.225839972999921, 49.457051015000076 ], [ -123.226428530999911, 49.457066076000032 ], [ -123.226449767999966, 49.456712429000035 ], [ -123.22707115599999, 49.456728326000068 ], [ -123.22718885099999, 49.454767942000053 ], [ -123.22725496399994, 49.454769633000105 ], [ -123.227283772999968, 49.454289742000078 ], [ -123.228448352000015, 49.45431952700006 ], [ -123.228466140999984, 49.454023070000069 ], [ -123.228550985999945, 49.454025239000103 ], [ -123.228566752999953, 49.453762473000033 ], [ -123.228861250999927, 49.453770002000091 ], [ -123.228872541999962, 49.453581817000028 ], [ -123.228696945999971, 49.457221206000085 ], [ -123.228703637999942, 49.457626489000049 ], [ -123.228983082999974, 49.460192060000047 ], [ -123.22898605099999, 49.460380186000108 ], [ -123.229091261999883, 49.461107124000087 ], [ -123.22958497399999, 49.464517407000052 ], [ -123.228659124999936, 49.464493744000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.866642958748222", "sL_AssetLoss": "2812", "sL_BldgLoss": "2437", "sL_StrLoss": "1520", "sL_NStrLoss": "917", "sL_ContLoss": "375", "geom_point": "0101000020E6100000CCFAA445C3A25EC03815A93036BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.540138640999956, 49.469103801000045 ], [ -122.545647065999944, 49.469279481000122 ], [ -122.545411529999953, 49.472426634000051 ], [ -122.544284106999896, 49.472091699000053 ], [ -122.543254509999912, 49.471584707000019 ], [ -122.541903312999963, 49.471255693000096 ], [ -122.541092591999927, 49.470928200000102 ], [ -122.540268693999963, 49.47047529700005 ], [ -122.540050817999912, 49.470275440000066 ], [ -122.540138640999956, 49.469103801000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.895164934478084", "sL_AssetLoss": "2213", "sL_BldgLoss": "1981", "sL_StrLoss": "1330", "sL_NStrLoss": "651", "sL_ContLoss": "232", "geom_point": "0101000020E61000001491C43FEAA55EC062BFA39D05BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.594538988999957, 49.494055892000091 ], [ -122.593864090999944, 49.493810891000052 ], [ -122.593007812999971, 49.493816596000109 ], [ -122.592468100999938, 49.493904908000054 ], [ -122.592125010999979, 49.493624395000033 ], [ -122.592059375999966, 49.493192796000109 ], [ -122.591812302999969, 49.49296640799999 ], [ -122.591468810999956, 49.492812603000068 ], [ -122.590847994999962, 49.492828207000073 ], [ -122.590600886999979, 49.492747000000172 ], [ -122.590311798999963, 49.49257469500008 ], [ -122.589883990999979, 49.492483611000054 ], [ -122.589514187999939, 49.492257097000028 ], [ -122.588783489999955, 49.492074796000033 ], [ -122.588315898999895, 49.491740098000101 ], [ -122.588097181999899, 49.491433898000054 ], [ -122.588093966999935, 49.491311327000112 ], [ -122.588112611, 49.491059216000053 ], [ -122.588363632999972, 49.490810421000027 ], [ -122.593642745999944, 49.490976359000086 ], [ -122.593630200999897, 49.491146273000062 ], [ -122.594234234999973, 49.491165243000083 ], [ -122.594154541999927, 49.492244789000068 ], [ -122.595754049999982, 49.492295005000123 ], [ -122.595530898999982, 49.495319032000104 ], [ -122.594687090999955, 49.494443310000072 ], [ -122.594648417999963, 49.494155597000052 ], [ -122.594538988999957, 49.494055892000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.918529199711608", "sL_AssetLoss": "2774", "sL_BldgLoss": "2548", "sL_StrLoss": "1954", "sL_NStrLoss": "594", "sL_ContLoss": "226", "geom_point": "0101000020E6100000DDF0F59460A55EC03F7F6F0DCBB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.582709388999888, 49.410666990000067 ], [ -122.58239779199999, 49.409954900000081 ], [ -122.58205659, 49.409521905000084 ], [ -122.581979006999958, 49.408882491000085 ], [ -122.581707496999982, 49.408522197000067 ], [ -122.58169592199999, 49.40836898400002 ], [ -122.58582378399997, 49.408499259000038 ], [ -122.58580338099992, 49.40877550800009 ], [ -122.585915899999918, 49.408779057000061 ], [ -122.585887810999949, 49.409159357000085 ], [ -122.586052617999911, 49.409164554000029 ], [ -122.586024201, 49.409549314000046 ], [ -122.58614593799993, 49.409553153000047 ], [ -122.586124243999961, 49.409846890000047 ], [ -122.586126256999989, 49.409846954000081 ], [ -122.586100787999939, 49.410191821000062 ], [ -122.586190576999982, 49.41019465200003 ], [ -122.585925047, 49.4137896390001 ], [ -122.585835709999955, 49.41378682200007 ], [ -122.585810962999957, 49.414121841000032 ], [ -122.585770496999942, 49.414120565000083 ], [ -122.585746976999971, 49.414438942000118 ], [ -122.585545229999951, 49.414432579000092 ], [ -122.585507894999949, 49.414937946000109 ], [ -122.58540114799996, 49.414934579000089 ], [ -122.58537371099996, 49.415305949000178 ], [ -122.585180249999894, 49.415299847000036 ], [ -122.585153621999964, 49.415660253000063 ], [ -122.584991880999937, 49.415655151000109 ], [ -122.584946546999916, 49.416268656000085 ], [ -122.584704812999988, 49.416261031000047 ], [ -122.584675458999968, 49.416658262000063 ], [ -122.581427922999978, 49.416555768000059 ], [ -122.581410103999971, 49.415906697000018 ], [ -122.581550890999935, 49.415510692000076 ], [ -122.582938895, 49.412754913000093 ], [ -122.582976084999984, 49.411567105000088 ], [ -122.582709388999888, 49.410666990000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.787234042553192", "sL_AssetLoss": "6580", "sL_BldgLoss": "5180", "sL_StrLoss": "2540", "sL_NStrLoss": "2640", "sL_ContLoss": "1400", "geom_point": "0101000020E61000004D50DC5491D35EC04B9E8060EDAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.303892364999953, 49.343193657000057 ], [ -123.303997470999917, 49.341388320000078 ], [ -123.304275395999966, 49.341307994000076 ], [ -123.304647492999962, 49.341396307000075 ], [ -123.304746288999979, 49.341639790000045 ], [ -123.305172496999916, 49.34170960600008 ], [ -123.305351510999984, 49.34154730700002 ], [ -123.305677389999971, 49.34081810100016 ], [ -123.306210105000019, 49.34035808800008 ], [ -123.306472280999955, 49.340303899000105 ], [ -123.306692178999953, 49.340320994000059 ], [ -123.30770150699999, 49.340930597000053 ], [ -123.307964699999957, 49.341262386000061 ], [ -123.307966496999981, 49.341604200000091 ], [ -123.307254792999984, 49.34217249000006 ], [ -123.306709075999919, 49.342965797000048 ], [ -123.306697988999971, 49.343388795000138 ], [ -123.306906010999981, 49.34367500000014 ], [ -123.306975992999966, 49.344008293000066 ], [ -123.306868975, 49.344314494000109 ], [ -123.307050986999954, 49.345015195000023 ], [ -123.306960817999965, 49.345753 ], [ -123.306851409, 49.345923898000088 ], [ -123.306507598999957, 49.346087707000066 ], [ -123.306082012999966, 49.34618729200011 ], [ -123.30577851, 49.346178785000092 ], [ -123.305487491999941, 49.345919603000056 ], [ -123.305361509999955, 49.345569209000118 ], [ -123.304851210999942, 49.345489508000092 ], [ -123.304628983000015, 49.345112102000058 ], [ -123.304201106999983, 49.34493260900004 ], [ -123.303937883999964, 49.344573702000098 ], [ -123.303986599999959, 49.343529788000048 ], [ -123.303892364999953, 49.343193657000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.831005586592179", "sL_AssetLoss": "14320", "sL_BldgLoss": "11900", "sL_StrLoss": "6980", "sL_NStrLoss": "4920", "sL_ContLoss": "2420", "geom_point": "0101000020E6100000BACC3CFBC2BF5EC0E6CF54DB8FB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.995666563999976, 49.380235193000019 ], [ -122.995666587999949, 49.379965343000023 ], [ -122.994839964999969, 49.379965309000049 ], [ -122.994840106999902, 49.378616055000066 ], [ -122.997319905999973, 49.378616139000066 ], [ -122.997319889999972, 49.378885991000061 ], [ -122.997733193, 49.378885999000097 ], [ -122.997733142999948, 49.379965401000057 ], [ -122.997319830999956, 49.379965393000106 ], [ -122.997319816999934, 49.380235243000044 ], [ -122.995666563999976, 49.380235193000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.721117223867965", "sL_AssetLoss": "23630", "sL_BldgLoss": "17040", "sL_StrLoss": "6640", "sL_NStrLoss": "10400", "sL_ContLoss": "6590", "geom_point": "0101000020E610000085434EE387C15EC05C0C585107A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.023326869999948, 49.313243745000136 ], [ -123.023326646000015, 49.312769868000039 ], [ -123.022913896999952, 49.31276995000006 ], [ -123.022913783999911, 49.312526191000053 ], [ -123.023113008999971, 49.312538107000094 ], [ -123.024417112999956, 49.31252667399999 ], [ -123.024514092999965, 49.312404779000083 ], [ -123.025205614999919, 49.312430126000066 ], [ -123.025357253999985, 49.312424395000065 ], [ -123.025168799999946, 49.312500442000164 ], [ -123.025016754999911, 49.312561812000062 ], [ -123.023326869999948, 49.313243745000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44270085", "BldgCostT": "27373335", "sL_LossRatio": "0.711710922721222", "sL_AssetLoss": "570920", "sL_BldgLoss": "406330", "sL_StrLoss": "180830", "sL_NStrLoss": "225500", "sL_ContLoss": "164590", "geom_point": "0101000020E61000009F1FD2B1FBC05EC09FFFAA65E3AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.019253393999975, 49.353354292000056 ], [ -123.019256174999938, 49.353311115000054 ], [ -123.018521971999917, 49.353290873000056 ], [ -123.018522231999953, 49.353286821000012 ], [ -123.017555037999927, 49.353260148000075 ], [ -123.017583367999961, 49.352820407000117 ], [ -123.015303016999894, 49.35275748600003 ], [ -123.01528243599995, 49.353076698000059 ], [ -123.011334398999935, 49.352967647000099 ], [ -123.009786167999948, 49.352924843000032 ], [ -123.010018447999983, 49.349328557000064 ], [ -123.013020146999963, 49.349411525000079 ], [ -123.013070063999947, 49.348637830000044 ], [ -123.016172086000026, 49.348723483000128 ], [ -123.017940610000011, 49.348772276000098 ], [ -123.018038840999935, 49.347247146000036 ], [ -123.018395973999986, 49.347256996000112 ], [ -123.018409737999932, 49.347043255000138 ], [ -123.020587474999928, 49.34710329100006 ], [ -123.020651554999986, 49.347585947000063 ], [ -123.02039558300001, 49.348339030000076 ], [ -123.020386221999971, 49.348430358000101 ], [ -123.020085740999917, 49.349212847000068 ], [ -123.019919816999959, 49.349473764000031 ], [ -123.019533814999974, 49.34995685399999 ], [ -123.019252586999968, 49.350424643000025 ], [ -123.019247998999973, 49.350431489000115 ], [ -123.019001988999946, 49.3503872960001 ], [ -123.018642195999988, 49.350585302000063 ], [ -123.018573909999986, 49.351035393000139 ], [ -123.018670111999967, 49.351250407000052 ], [ -123.019387781999924, 49.352086400000097 ], [ -123.019814487999923, 49.352419703000066 ], [ -123.02059878599999, 49.353138895000029 ], [ -123.020769034999915, 49.353396062000087 ], [ -123.019253393999975, 49.353354292000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.707874015748032", "sL_AssetLoss": "177800", "sL_BldgLoss": "125860", "sL_StrLoss": "50860", "sL_NStrLoss": "75000", "sL_ContLoss": "51940", "geom_point": "0101000020E610000093EF21FAD8C05EC04758F199AEA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.013657885999976, 49.323460653000012 ], [ -123.014508619999944, 49.323484162000128 ], [ -123.014276818999974, 49.327080596000059 ], [ -123.010976211999946, 49.326989352000055 ], [ -123.01118761399999, 49.326704204000123 ], [ -123.012034203999917, 49.325725599000108 ], [ -123.012316216999935, 49.325399601000044 ], [ -123.012716380999976, 49.325084794000098 ], [ -123.013657885999976, 49.323460653000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10257500", "BldgCostT": "5600000", "sL_LossRatio": "0.614487541741587", "sL_AssetLoss": "194650", "sL_BldgLoss": "119610", "sL_StrLoss": "56460", "sL_NStrLoss": "63150", "sL_ContLoss": "75040", "geom_point": "0101000020E6100000D8156D6D25C15EC085787F1711AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.017367941999964, 49.344976764000116 ], [ -123.017387300999985, 49.344676247000095 ], [ -123.016633434999932, 49.344655445000029 ], [ -123.016740435999964, 49.342994733000097 ], [ -123.017855915999945, 49.34366755300006 ], [ -123.01807326399998, 49.343746172000074 ], [ -123.019150593999882, 49.344135087000041 ], [ -123.019562408999917, 49.344774495000138 ], [ -123.019589378999967, 49.345038029000051 ], [ -123.017367941999964, 49.344976764000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29831918", "BldgCostT": "17361668", "sL_LossRatio": "0.667231281580156", "sL_AssetLoss": "348320", "sL_BldgLoss": "232410", "sL_StrLoss": "113370", "sL_NStrLoss": "119040", "sL_ContLoss": "115910", "geom_point": "0101000020E61000002CE484E894C05EC083BAE57671AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.008652605999913, 49.337586707000071 ], [ -123.011951993, 49.337677966000072 ], [ -123.011719921999941, 49.341274318000053 ], [ -123.011478027999942, 49.3412676310001 ], [ -123.006225066999932, 49.341122279000068 ], [ -123.006457562999955, 49.33752593800012 ], [ -123.008652605999913, 49.337586707000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16159000", "BldgCostT": "9670000", "sL_LossRatio": "0.703645116918845", "sL_AssetLoss": "145400", "sL_BldgLoss": "102310", "sL_StrLoss": "49470", "sL_NStrLoss": "52840", "sL_ContLoss": "43090", "geom_point": "0101000020E610000079F819B4A3C15EC06CF1C6D50AAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.024901163999985, 49.362086919 ], [ -123.025102908999955, 49.358948200000015 ], [ -123.023176196999913, 49.358895182000055 ], [ -123.023353903000014, 49.356131888000142 ], [ -123.023560403999952, 49.356232304000102 ], [ -123.024111520999924, 49.356332006000109 ], [ -123.024703319999929, 49.35676350100006 ], [ -123.026082308999932, 49.358985297000096 ], [ -123.02691029099999, 49.35981278800012 ], [ -123.027295577999965, 49.360811098000049 ], [ -123.027970795999963, 49.361188603000066 ], [ -123.028727785999962, 49.361449198000059 ], [ -123.02914191, 49.36197038800006 ], [ -123.029228687999961, 49.362205877000108 ], [ -123.024901163999985, 49.362086919 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154799667", "BldgCostT": "97421667", "sL_LossRatio": "0.664576974080698", "sL_AssetLoss": "3270497", "sL_BldgLoss": "2173497", "sL_StrLoss": "944407", "sL_NStrLoss": "1229090", "sL_ContLoss": "1097000", "geom_point": "0101000020E61000001797C2075FC15EC0CBCBA313F0A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.016663126999916, 49.32640270100012 ], [ -123.016695774000013, 49.325895796000033 ], [ -123.015506753999901, 49.32586296300012 ], [ -123.015722366999967, 49.322516230000076 ], [ -123.014376220999935, 49.322479042000104 ], [ -123.01440981699993, 49.321957759000099 ], [ -123.014420993999934, 49.321927397000074 ], [ -123.014435924999944, 49.321552605000143 ], [ -123.014438132999985, 49.321518402000095 ], [ -123.0144372889999, 49.321518379000054 ], [ -123.014453719999949, 49.321105962000075 ], [ -123.014462195999911, 49.320893411000114 ], [ -123.014415071999963, 49.320774805000035 ], [ -123.014496091999931, 49.319517654000016 ], [ -123.014088726999958, 49.319517705000045 ], [ -123.013729834999964, 49.31962826200003 ], [ -123.01347680899994, 49.319665518000093 ], [ -123.012638975999948, 49.31897714800013 ], [ -123.012638274999944, 49.318976570000139 ], [ -123.012450450999935, 49.318821491000065 ], [ -123.012388981999905, 49.318754360000106 ], [ -123.012062847, 49.318397360000091 ], [ -123.011770948, 49.318077831000082 ], [ -123.011770838999979, 49.31762340400013 ], [ -123.01171310299999, 49.31735914100009 ], [ -123.011551391999916, 49.317359158000066 ], [ -123.011481264999986, 49.316958961000054 ], [ -123.011475398999963, 49.316925507000072 ], [ -123.011530982999943, 49.315801798000081 ], [ -123.011618923999933, 49.315615019000077 ], [ -123.011695889999984, 49.315451513000077 ], [ -123.012149198999964, 49.314928806000054 ], [ -123.012616508999912, 49.314649687000035 ], [ -123.014487003999932, 49.313795110000058 ], [ -123.01456818199992, 49.31376880200007 ], [ -123.015113427999907, 49.313592030000081 ], [ -123.016261524999919, 49.313219804000028 ], [ -123.016774426999945, 49.312986967 ], [ -123.016895307999945, 49.312932096000061 ], [ -123.017472613, 49.312517601000081 ], [ -123.017629998999936, 49.312325035000079 ], [ -123.017838868999931, 49.312069484000077 ], [ -123.017884706999908, 49.31201339900008 ], [ -123.018146767999966, 49.311815650000078 ], [ -123.018765992999988, 49.312307903000033 ], [ -123.019304185999928, 49.312557506000125 ], [ -123.019536254999977, 49.312453536000142 ], [ -123.019725042999937, 49.312368935000059 ], [ -123.019821104999949, 49.312325893000043 ], [ -123.021147344, 49.312412128000034 ], [ -123.022500918, 49.312500179000061 ], [ -123.021162927999924, 49.312500432000064 ], [ -123.020808236, 49.312659862000082 ], [ -123.020782772999922, 49.31263504700005 ], [ -123.020755984999937, 49.313051678000122 ], [ -123.02043751799998, 49.313042894 ], [ -123.020437628999957, 49.313310123000051 ], [ -123.020024876999969, 49.313310195000113 ], [ -123.02002498499999, 49.313580049000059 ], [ -123.01961223099994, 49.313580119000079 ], [ -123.019612337999931, 49.313849973000046 ], [ -123.019400162999915, 49.31385000900007 ], [ -123.019393781999952, 49.313949208000096 ], [ -123.019199614999962, 49.313943851000019 ], [ -123.019199683999929, 49.314119896000129 ], [ -123.018665488999943, 49.314119984000044 ], [ -123.018648124999956, 49.31438984000004 ], [ -123.020487252999942, 49.314389530000028 ], [ -123.01887353699999, 49.315040605000085 ], [ -123.019012242999963, 49.315065162000018 ], [ -123.019503524999919, 49.315446204000082 ], [ -123.01968180599998, 49.315529458000078 ], [ -123.020028291999949, 49.315691260000058 ], [ -123.020622316999933, 49.315864375000082 ], [ -123.020771437999912, 49.315941441000042 ], [ -123.020920961999963, 49.316075263000045 ], [ -123.020921526999928, 49.31613111900004 ], [ -123.020765036999975, 49.316394332000051 ], [ -123.020708686999924, 49.316489145000084 ], [ -123.020691212999964, 49.31729570800011 ], [ -123.020841503000014, 49.317525048000093 ], [ -123.020920637999936, 49.317599283000014 ], [ -123.020839173999917, 49.317734330000114 ], [ -123.020417384999959, 49.318433693000074 ], [ -123.020207789999972, 49.318781172000016 ], [ -123.022056885999987, 49.319758976000109 ], [ -123.022182785999973, 49.3198377840001 ], [ -123.02259902899999, 49.32009817400008 ], [ -123.022490274999953, 49.320222828000048 ], [ -123.022031845999933, 49.320685050000108 ], [ -123.021776793999905, 49.321120318000084 ], [ -123.025223971999978, 49.319908877000032 ], [ -123.025660251999952, 49.319724040000047 ], [ -123.025940470999956, 49.319622747000025 ], [ -123.026067547999958, 49.319528983000097 ], [ -123.026261728999884, 49.31911820100003 ], [ -123.026314315999983, 49.319061916000059 ], [ -123.026712110999966, 49.318636558000087 ], [ -123.026944548999907, 49.318387978 ], [ -123.02708464499996, 49.318238135000072 ], [ -123.027310058999987, 49.317997073000107 ], [ -123.027669098999951, 49.317613113000071 ], [ -123.027727775999921, 49.313926266000109 ], [ -123.027730946999966, 49.313729216000098 ], [ -123.02774081799997, 49.31310788800004 ], [ -123.028321794999925, 49.31273480300009 ], [ -123.02821279399997, 49.31250387200005 ], [ -123.028139862999979, 49.312418065000095 ], [ -123.027984057999959, 49.312317457000162 ], [ -123.028167844999984, 49.312322551000143 ], [ -123.028654008000018, 49.312335899000075 ], [ -123.029464291999986, 49.312524792000069 ], [ -123.029705668999924, 49.312592998000063 ], [ -123.030453200999901, 49.312804202000081 ], [ -123.030464895999899, 49.312809190000053 ], [ -123.030756992999954, 49.312934099000117 ], [ -123.032901072999934, 49.313687488000049 ], [ -123.033158850999953, 49.313778061000065 ], [ -123.033131300999983, 49.313836390000084 ], [ -123.032841419999926, 49.314888906000071 ], [ -123.032789008999899, 49.31600411100009 ], [ -123.032677501999956, 49.316364413000052 ], [ -123.032225813999915, 49.317110704000044 ], [ -123.028801110999936, 49.321680987000093 ], [ -123.028799092999975, 49.321685864000131 ], [ -123.028581296999903, 49.322212191000084 ], [ -123.028540701999972, 49.322743391000124 ], [ -123.028293199999922, 49.3233003080001 ], [ -123.028059807999938, 49.323579509000076 ], [ -123.02740232099994, 49.324052001000098 ], [ -123.027219614999964, 49.324183297000083 ], [ -123.025101802999984, 49.325433793000052 ], [ -123.024858777999967, 49.325722517000059 ], [ -123.024571335999937, 49.325722578000054 ], [ -123.02457144499999, 49.325939735000119 ], [ -123.02441067399991, 49.325992465000056 ], [ -123.024158610999933, 49.325992518000149 ], [ -123.024158651999926, 49.326075123000066 ], [ -123.023890717999961, 49.326163000000115 ], [ -123.023734963999985, 49.326262459000105 ], [ -123.023333020999942, 49.326262540000059 ], [ -123.023333140999952, 49.326519046000058 ], [ -123.023299701999946, 49.326540399000109 ], [ -123.023103627999944, 49.326802293000121 ], [ -123.022140309999926, 49.326802481000129 ], [ -123.022063587000019, 49.327995904000019 ], [ -123.016570270999964, 49.327844387000049 ], [ -123.016663126999916, 49.32640270100012 ] ], [ [ -123.021267666999947, 49.323834260000062 ], [ -123.02126755099998, 49.323564407000042 ], [ -123.021157391999949, 49.323564427000065 ], [ -123.021140037999956, 49.323834284000057 ], [ -123.021267666999947, 49.323834260000062 ] ], [ [ -123.015896574999928, 49.317955826000052 ], [ -123.015935038999928, 49.317358637000019 ], [ -123.015898646999986, 49.317358641000098 ], [ -123.01589873399999, 49.3176284950001 ], [ -123.015485943, 49.31762855100002 ], [ -123.015486043999914, 49.317944486000101 ], [ -123.015896574999928, 49.317955826000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96588250", "BldgCostT": "64690000", "sL_LossRatio": "0.780999309848389", "sL_AssetLoss": "1347530", "sL_BldgLoss": "1052420", "sL_StrLoss": "471030", "sL_NStrLoss": "581390", "sL_ContLoss": "295110", "geom_point": "0101000020E61000001F69803D6CC15EC0AD4C0017C7A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022949307, 49.3176011420001 ], [ -123.023979441, 49.317602507000103 ], [ -123.023977921, 49.3180269550001 ], [ -123.023977169999966, 49.318237441000072 ], [ -123.023891750999923, 49.318561156000079 ], [ -123.023724774999934, 49.318847479000063 ], [ -123.023571810999954, 49.31901747900006 ], [ -123.02259902899999, 49.32009817400008 ], [ -123.022182785999973, 49.3198377840001 ], [ -123.022056885999987, 49.319758976000109 ], [ -123.020207789999972, 49.318781172000016 ], [ -123.020417384999959, 49.318433693000074 ], [ -123.020839173999917, 49.317734330000114 ], [ -123.020920637999936, 49.317599283000014 ], [ -123.02144880299997, 49.317599421000068 ], [ -123.022949307, 49.3176011420001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227499523", "BldgCostT": "147909159", "sL_LossRatio": "0.721324153177779", "sL_AssetLoss": "4668040", "sL_BldgLoss": "3367170", "sL_StrLoss": "1430150", "sL_NStrLoss": "1937020", "sL_ContLoss": "1300870", "geom_point": "0101000020E61000000A901604A2C15EC07F57FC8D93A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.024193504999914, 49.31476213600007 ], [ -123.024495377000022, 49.313959808000092 ], [ -123.025159134999939, 49.314117707000079 ], [ -123.025523944999989, 49.314134062000058 ], [ -123.02566412699997, 49.314136146000067 ], [ -123.026159334999974, 49.314020409000122 ], [ -123.026288191000035, 49.313990294000071 ], [ -123.026880006999974, 49.31366250500006 ], [ -123.027217574999952, 49.313445010000081 ], [ -123.02774081799997, 49.31310788800004 ], [ -123.027730946999966, 49.313729216000098 ], [ -123.027727775999921, 49.313926266000109 ], [ -123.027669098999951, 49.317613113000071 ], [ -123.027310058999987, 49.317997073000107 ], [ -123.02708464499996, 49.318238135000072 ], [ -123.026944548999907, 49.318387978 ], [ -123.026712110999966, 49.318636558000087 ], [ -123.026314315999983, 49.319061916000059 ], [ -123.026261728999884, 49.31911820100003 ], [ -123.026067547999958, 49.319528983000097 ], [ -123.025940470999956, 49.319622747000025 ], [ -123.025660251999952, 49.319724040000047 ], [ -123.025223971999978, 49.319908877000032 ], [ -123.021776793999905, 49.321120318000084 ], [ -123.022031845999933, 49.320685050000108 ], [ -123.022490274999953, 49.320222828000048 ], [ -123.02259902899999, 49.32009817400008 ], [ -123.023571810999954, 49.31901747900006 ], [ -123.023724774999934, 49.318847479000063 ], [ -123.023891750999923, 49.318561156000079 ], [ -123.023977169999966, 49.318237441000072 ], [ -123.023977921, 49.3180269550001 ], [ -123.023979441, 49.317602507000103 ], [ -123.023978713999938, 49.317528634000062 ], [ -123.024003078999954, 49.315818066000077 ], [ -123.024005380999952, 49.315656769000043 ], [ -123.024057992999971, 49.315587069000131 ], [ -123.024193504999914, 49.31476213600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44826250", "BldgCostT": "25735000", "sL_LossRatio": "0.6064947098289", "sL_AssetLoss": "2061370", "sL_BldgLoss": "1250210", "sL_StrLoss": "497110", "sL_NStrLoss": "753100", "sL_ContLoss": "811160", "geom_point": "0101000020E61000003FF2393D90C15EC0AF15862B14A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022914519000011, 49.314106372000062 ], [ -123.022914397999941, 49.31384936500006 ], [ -123.023085036999973, 49.31384933200016 ], [ -123.023326983999979, 49.313484617000064 ], [ -123.023326869999948, 49.313243745000136 ], [ -123.025016754999911, 49.312561812000062 ], [ -123.025168799999946, 49.312500442000164 ], [ -123.025357253999985, 49.312424395000065 ], [ -123.025205614999919, 49.312430126000066 ], [ -123.024514092999965, 49.312404779000083 ], [ -123.024603307999939, 49.312295121000083 ], [ -123.024618085000014, 49.312276940000068 ], [ -123.025403096, 49.311312180000108 ], [ -123.02561300799999, 49.311057459000054 ], [ -123.02544257699995, 49.311051291000069 ], [ -123.025307843999954, 49.311033902000069 ], [ -123.024999425999965, 49.310994106000109 ], [ -123.024176811999894, 49.310788682000108 ], [ -123.023337174999966, 49.310578988000046 ], [ -123.023434612999978, 49.310305188000044 ], [ -123.023646749999898, 49.308782157000017 ], [ -123.026933201999924, 49.308648418000082 ], [ -123.026942020999982, 49.309365586000105 ], [ -123.027797000999939, 49.309361101999983 ], [ -123.027796047999956, 49.309520473000056 ], [ -123.027794320999988, 49.309808224000022 ], [ -123.027794660999959, 49.310553135000085 ], [ -123.027851861, 49.310804194000085 ], [ -123.02791378799995, 49.311076137000093 ], [ -123.02799969699997, 49.311218253000042 ], [ -123.028131360999978, 49.311436092000072 ], [ -123.02813797, 49.311444136000077 ], [ -123.028308594999928, 49.311653492000048 ], [ -123.028795996999946, 49.312051592000017 ], [ -123.029362310999929, 49.312326363000075 ], [ -123.029669703999929, 49.312475499000122 ], [ -123.030453200999901, 49.312804202000081 ], [ -123.029705668999924, 49.312592998000063 ], [ -123.029464291999986, 49.312524792000069 ], [ -123.028654008000018, 49.312335899000075 ], [ -123.028167844999984, 49.312322551000143 ], [ -123.027984057999959, 49.312317457000162 ], [ -123.028139862999979, 49.312418065000095 ], [ -123.02821279399997, 49.31250387200005 ], [ -123.028321794999925, 49.31273480300009 ], [ -123.02774081799997, 49.31310788800004 ], [ -123.027217574999952, 49.313445010000081 ], [ -123.026880006999974, 49.31366250500006 ], [ -123.026288191000035, 49.313990294000071 ], [ -123.026159334999974, 49.314020409000122 ], [ -123.02566412699997, 49.314136146000067 ], [ -123.025523944999989, 49.314134062000058 ], [ -123.025159134999939, 49.314117707000079 ], [ -123.024495377000022, 49.313959808000092 ], [ -123.024193504999914, 49.31476213600007 ], [ -123.024057992999971, 49.315587069000131 ], [ -123.024005380999952, 49.315656769000043 ], [ -123.024003078999954, 49.315818066000077 ], [ -123.023978713999938, 49.317528634000062 ], [ -123.023979441, 49.317602507000103 ], [ -123.022949307, 49.3176011420001 ], [ -123.02144880299997, 49.317599421000068 ], [ -123.020920637999936, 49.317599283000014 ], [ -123.020841503000014, 49.317525048000093 ], [ -123.020691212999964, 49.31729570800011 ], [ -123.020708686999924, 49.316489145000084 ], [ -123.020765036999975, 49.316394332000051 ], [ -123.020921526999928, 49.31613111900004 ], [ -123.020920961999963, 49.316075263000045 ], [ -123.020771437999912, 49.315941441000042 ], [ -123.020622316999933, 49.315864375000082 ], [ -123.020028291999949, 49.315691260000058 ], [ -123.01968180599998, 49.315529458000078 ], [ -123.019503524999919, 49.315446204000082 ], [ -123.019012242999963, 49.315065162000018 ], [ -123.01887353699999, 49.315040605000085 ], [ -123.020487252999942, 49.314389530000028 ], [ -123.021676361999965, 49.314389312000074 ], [ -123.02167624399999, 49.314119457000118 ], [ -123.022905994, 49.314119221000091 ], [ -123.022914519000011, 49.314106372000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30923750", "BldgCostT": "18965000", "sL_LossRatio": "0.60531000457759", "sL_AssetLoss": "1966100", "sL_BldgLoss": "1190100", "sL_StrLoss": "436600", "sL_NStrLoss": "753500", "sL_ContLoss": "776000", "geom_point": "0101000020E6100000DAC6860B8CC15EC09FFAACD799A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.018765992999988, 49.312307903000033 ], [ -123.018146767999966, 49.311815650000078 ], [ -123.018586790999947, 49.311483613000064 ], [ -123.019743164999966, 49.310934128000063 ], [ -123.019857550999987, 49.310879773000096 ], [ -123.019893506999921, 49.310862691000111 ], [ -123.02091132399994, 49.310250305000075 ], [ -123.021178149999955, 49.310021579000136 ], [ -123.021351588999977, 49.309872895000041 ], [ -123.021763614999898, 49.309162197000063 ], [ -123.021827701999968, 49.308817917000034 ], [ -123.021860900999926, 49.308639505000052 ], [ -123.021556543, 49.307900932000088 ], [ -123.021130789999987, 49.306867800000063 ], [ -123.021142426999972, 49.306794984000106 ], [ -123.02475285099996, 49.306373291000128 ], [ -123.026503608, 49.306669699000039 ], [ -123.027371889999984, 49.307346611000057 ], [ -123.027570396999948, 49.307574598000038 ], [ -123.027804621999934, 49.308103396000064 ], [ -123.027806459999937, 49.308051919000093 ], [ -123.027936101999941, 49.308090841000109 ], [ -123.028291965999941, 49.307301686000102 ], [ -123.029529865999976, 49.305670206000073 ], [ -123.02945647699994, 49.307001720000073 ], [ -123.029490094999957, 49.307918291000135 ], [ -123.02888437699994, 49.30901229800002 ], [ -123.029027002999953, 49.309992245000046 ], [ -123.028899471999964, 49.31063375600008 ], [ -123.029152733999922, 49.311249970000055 ], [ -123.029003936999942, 49.311341175000102 ], [ -123.02829022799996, 49.311253812000125 ], [ -123.02816780399999, 49.311238840000108 ], [ -123.02799969699997, 49.311218253000042 ], [ -123.02791378799995, 49.311076137000093 ], [ -123.027851861, 49.310804194000085 ], [ -123.027794660999959, 49.310553135000085 ], [ -123.027794320999988, 49.309808224000022 ], [ -123.027796047999956, 49.309520473000056 ], [ -123.027797000999939, 49.309361101999983 ], [ -123.026942020999982, 49.309365586000105 ], [ -123.026933201999924, 49.308648418000082 ], [ -123.023646749999898, 49.308782157000017 ], [ -123.023434612999978, 49.310305188000044 ], [ -123.023337174999966, 49.310578988000046 ], [ -123.024176811999894, 49.310788682000108 ], [ -123.024999425999965, 49.310994106000109 ], [ -123.025307843999954, 49.311033902000069 ], [ -123.02544257699995, 49.311051291000069 ], [ -123.02561300799999, 49.311057459000054 ], [ -123.025403096, 49.311312180000108 ], [ -123.024618085000014, 49.312276940000068 ], [ -123.024603307999939, 49.312295121000083 ], [ -123.024514092999965, 49.312404779000083 ], [ -123.024417112999956, 49.31252667399999 ], [ -123.023113008999971, 49.312538107000094 ], [ -123.022913783999911, 49.312526191000053 ], [ -123.022913772999942, 49.312500097000026 ], [ -123.022500918, 49.312500179000061 ], [ -123.021147344, 49.312412128000034 ], [ -123.019821104999949, 49.312325893000043 ], [ -123.019725042999937, 49.312368935000059 ], [ -123.019536254999977, 49.312453536000142 ], [ -123.019304185999928, 49.312557506000125 ], [ -123.018765992999988, 49.312307903000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94410395", "BldgCostT": "58086524", "sL_LossRatio": "0.61955284878596", "sL_AssetLoss": "4367650", "sL_BldgLoss": "2705990", "sL_StrLoss": "1029290", "sL_NStrLoss": "1676700", "sL_ContLoss": "1661660", "geom_point": "0101000020E6100000E3E37726F6C15EC04C2088A0A8A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028131360999978, 49.311436092000072 ], [ -123.02799969699997, 49.311218253000042 ], [ -123.02816780399999, 49.311238840000108 ], [ -123.02829022799996, 49.311253812000125 ], [ -123.029003936999942, 49.311341175000102 ], [ -123.029152733999922, 49.311249970000055 ], [ -123.028899471999964, 49.31063375600008 ], [ -123.029027002999953, 49.309992245000046 ], [ -123.02888437699994, 49.30901229800002 ], [ -123.029490094999957, 49.307918291000135 ], [ -123.029617242999919, 49.307920098000096 ], [ -123.031978308999939, 49.307953394000101 ], [ -123.031974107999957, 49.308812604000096 ], [ -123.032282421999966, 49.30973170000005 ], [ -123.032614585999937, 49.310665808000039 ], [ -123.03260068699997, 49.311525586000087 ], [ -123.030253373999983, 49.311478372000082 ], [ -123.030175187999959, 49.311476805000048 ], [ -123.029901807999963, 49.31147129900004 ], [ -123.029427851999969, 49.311460670000088 ], [ -123.029384080999989, 49.311459753000058 ], [ -123.02937011299997, 49.311459464000045 ], [ -123.028740205999952, 49.311447357000091 ], [ -123.028506129999954, 49.31144286300011 ], [ -123.028404715999969, 49.311440913000077 ], [ -123.028294826999925, 49.311438796000111 ], [ -123.028146244999959, 49.311436354000072 ], [ -123.028131360999978, 49.311436092000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "596136105", "BldgCostT": "320205375", "sL_LossRatio": "0.545391808939323", "sL_AssetLoss": "36313490", "sL_BldgLoss": "19805080", "sL_StrLoss": "6829410", "sL_NStrLoss": "12975670", "sL_ContLoss": "16508410", "geom_point": "0101000020E610000039F8792117C25EC011A3769EFCA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.031974107999957, 49.308812604000096 ], [ -123.031978308999939, 49.307953394000101 ], [ -123.029617242999919, 49.307920098000096 ], [ -123.029490094999957, 49.307918291000135 ], [ -123.02945647699994, 49.307001720000073 ], [ -123.029529865999976, 49.305670206000073 ], [ -123.028291965999941, 49.307301686000102 ], [ -123.027936101999941, 49.308090841000109 ], [ -123.027806459999937, 49.308051919000093 ], [ -123.027804621999934, 49.308103396000064 ], [ -123.027570396999948, 49.307574598000038 ], [ -123.027371889999984, 49.307346611000057 ], [ -123.026503608, 49.306669699000039 ], [ -123.02475285099996, 49.306373291000128 ], [ -123.021142426999972, 49.306794984000106 ], [ -123.021280215999965, 49.30593210700011 ], [ -123.0213646, 49.30576120900016 ], [ -123.021818094, 49.305383690000092 ], [ -123.021866829999979, 49.305351780000144 ], [ -123.021984096999958, 49.305275014000102 ], [ -123.022038880999929, 49.305239153000116 ], [ -123.022156728999988, 49.30516200700005 ], [ -123.023183735999964, 49.304489635000039 ], [ -123.023425585999988, 49.304331306000094 ], [ -123.024470691999952, 49.303835607000067 ], [ -123.024819600999962, 49.303550172000044 ], [ -123.025175108000013, 49.303555512000059 ], [ -123.026565484999963, 49.303562461000091 ], [ -123.026750936, 49.30355871400014 ], [ -123.027083442, 49.303552018000097 ], [ -123.028823217999985, 49.303951135000091 ], [ -123.029042624999946, 49.304546478000098 ], [ -123.029397811999942, 49.304530845000016 ], [ -123.029731684999959, 49.304554009000135 ], [ -123.029808489999951, 49.304220982000032 ], [ -123.029818205, 49.304165447000138 ], [ -123.029816610999944, 49.304004602000106 ], [ -123.029816628, 49.303987953000011 ], [ -123.029816674999921, 49.30374451200008 ], [ -123.029816699999969, 49.303466012000079 ], [ -123.029756056999943, 49.303313985000052 ], [ -123.029736396999951, 49.303249981000114 ], [ -123.02972579, 49.302974402000061 ], [ -123.02974548399996, 49.302389508000033 ], [ -123.029772910999938, 49.30146790100008 ], [ -123.029811100999936, 49.300120497000123 ], [ -123.02995296899995, 49.299619681000173 ], [ -123.029984694999939, 49.299634205000096 ], [ -123.029997597999952, 49.297116188000068 ], [ -123.03050730699999, 49.297114782000079 ], [ -123.031984349999931, 49.297293796000147 ], [ -123.03198441, 49.297386109000108 ], [ -123.032650602999965, 49.29738592300005 ], [ -123.035320485999947, 49.297815506000056 ], [ -123.038669230999929, 49.298216502000031 ], [ -123.038327588999906, 49.301464066000101 ], [ -123.038304476999912, 49.301753319000085 ], [ -123.03829511, 49.301781891000068 ], [ -123.03829019899996, 49.301932099000062 ], [ -123.038283007999951, 49.302152132000096 ], [ -123.038240082999948, 49.303463897000015 ], [ -123.037979596999932, 49.30460610700009 ], [ -123.03807708899997, 49.305002108000032 ], [ -123.03848990299997, 49.305729787000054 ], [ -123.03875578, 49.306016054000061 ], [ -123.038900752999893, 49.306618683000124 ], [ -123.038875810999983, 49.306692608000063 ], [ -123.038748780999981, 49.306823382000069 ], [ -123.038394390999954, 49.307188210000099 ], [ -123.03821550899994, 49.307628296000125 ], [ -123.038175714999952, 49.308303396000085 ], [ -123.038287008999973, 49.308824608000108 ], [ -123.038012606, 49.309589386 ], [ -123.037792499999938, 49.309814484000086 ], [ -123.037419889999939, 49.309985410000081 ], [ -123.036059405999964, 49.310237501000138 ], [ -123.035549580999927, 49.310472393000033 ], [ -123.035137885999987, 49.310750191000054 ], [ -123.033969400999979, 49.31188379600006 ], [ -123.033667102999956, 49.312379491000108 ], [ -123.033500611999912, 49.313054504000071 ], [ -123.033400408999952, 49.313266652000074 ], [ -123.033158850999953, 49.313778061000065 ], [ -123.032901072999934, 49.313687488000049 ], [ -123.030756992999954, 49.312934099000117 ], [ -123.030464895999899, 49.312809190000053 ], [ -123.030453200999901, 49.312804202000081 ], [ -123.029669703999929, 49.312475499000122 ], [ -123.029362310999929, 49.312326363000075 ], [ -123.028795996999946, 49.312051592000017 ], [ -123.028308594999928, 49.311653492000048 ], [ -123.02813797, 49.311444136000077 ], [ -123.028131360999978, 49.311436092000072 ], [ -123.028146244999959, 49.311436354000072 ], [ -123.028294826999925, 49.311438796000111 ], [ -123.028404715999969, 49.311440913000077 ], [ -123.028506129999954, 49.31144286300011 ], [ -123.028740205999952, 49.311447357000091 ], [ -123.02937011299997, 49.311459464000045 ], [ -123.029384080999989, 49.311459753000058 ], [ -123.029427851999969, 49.311460670000088 ], [ -123.029901807999963, 49.31147129900004 ], [ -123.030175187999959, 49.311476805000048 ], [ -123.030253373999983, 49.311478372000082 ], [ -123.03260068699997, 49.311525586000087 ], [ -123.032614585999937, 49.310665808000039 ], [ -123.032282421999966, 49.30973170000005 ], [ -123.031974107999957, 49.308812604000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28031061", "BldgCostT": "14753190", "sL_LossRatio": "0.551020408163265", "sL_AssetLoss": "1631700", "sL_BldgLoss": "899100", "sL_StrLoss": "277800", "sL_NStrLoss": "621300", "sL_ContLoss": "732600", "geom_point": "0101000020E6100000CEFA9463B2C15EC01F7D616C80A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.029042624999946, 49.304546478000098 ], [ -123.028823217999985, 49.303951135000091 ], [ -123.027083442, 49.303552018000097 ], [ -123.026750936, 49.30355871400014 ], [ -123.026565484999963, 49.303562461000091 ], [ -123.025175108000013, 49.303555512000059 ], [ -123.024819600999962, 49.303550172000044 ], [ -123.025137626999964, 49.303290014000083 ], [ -123.02550299899994, 49.302991108000057 ], [ -123.025668213999936, 49.302747505000106 ], [ -123.02569, 49.302492704000024 ], [ -123.02569439499996, 49.302441298000062 ], [ -123.025282395999952, 49.301838890000127 ], [ -123.025048500999901, 49.301659399000123 ], [ -123.024661982999973, 49.301192303000072 ], [ -123.023905898999942, 49.300661088000034 ], [ -123.023590383999974, 49.299931893000092 ], [ -123.023182562999949, 49.299455242000114 ], [ -123.022805612999932, 49.299014696000015 ], [ -123.022763684999944, 49.298789699000039 ], [ -123.023011399999945, 49.298493407000045 ], [ -123.022810226999951, 49.298265236000056 ], [ -123.022750218999931, 49.298197204000104 ], [ -123.022747743999929, 49.298157487000012 ], [ -123.023319755999964, 49.298173256000027 ], [ -123.023319639999912, 49.297927892000097 ], [ -123.022907015999976, 49.297927975000071 ], [ -123.022906882999933, 49.297639164000081 ], [ -123.02307831899995, 49.297530698000095 ], [ -123.023272008999967, 49.297638885000026 ], [ -123.023519588999974, 49.29757619300009 ], [ -123.023601904999936, 49.297405309000027 ], [ -123.02333960199995, 49.296640497000027 ], [ -123.02335239599995, 49.296578613000051 ], [ -123.024969458999948, 49.296578275000037 ], [ -123.024970276, 49.298197401000081 ], [ -123.025190644999938, 49.298197353000099 ], [ -123.025211992999957, 49.299302404000066 ], [ -123.025376801999982, 49.299419207000028 ], [ -123.026105422999976, 49.298969105000083 ], [ -123.026271285999954, 49.298954315000174 ], [ -123.026409221, 49.298942006000061 ], [ -123.026431, 49.298733683000115 ], [ -123.026476804999959, 49.2982954900001 ], [ -123.026751612999959, 49.298276897000044 ], [ -123.02679479499993, 49.29985069100006 ], [ -123.026890691999967, 49.300183990000079 ], [ -123.026866129999959, 49.30122801400006 ], [ -123.026862983999976, 49.301361794000051 ], [ -123.02698650499994, 49.301524097000033 ], [ -123.027645509999971, 49.301562131000047 ], [ -123.028073392999971, 49.3015868150001 ], [ -123.028266608, 49.301497107000046 ], [ -123.028362104999971, 49.299473283000118 ], [ -123.028609279999955, 49.29939209400009 ], [ -123.029433992999941, 49.299382106000074 ], [ -123.02995296899995, 49.299619681000173 ], [ -123.029811100999936, 49.300120497000123 ], [ -123.029772910999938, 49.30146790100008 ], [ -123.02974548399996, 49.302389508000033 ], [ -123.02972579, 49.302974402000061 ], [ -123.029736396999951, 49.303249981000114 ], [ -123.029756056999943, 49.303313985000052 ], [ -123.029816699999969, 49.303466012000079 ], [ -123.029816674999921, 49.30374451200008 ], [ -123.029816628, 49.303987953000011 ], [ -123.029816610999944, 49.304004602000106 ], [ -123.029818205, 49.304165447000138 ], [ -123.029808489999951, 49.304220982000032 ], [ -123.029731684999959, 49.304554009000135 ], [ -123.029397811999942, 49.304530845000016 ], [ -123.029042624999946, 49.304546478000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5776000", "BldgCostT": "3040000", "sL_LossRatio": "0.64638783269962", "sL_AssetLoss": "10520", "sL_BldgLoss": "6800", "sL_StrLoss": "2640", "sL_NStrLoss": "4160", "sL_ContLoss": "3720", "geom_point": "0101000020E6100000E9075CF461C65EC0E952F1B9F2A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09965316099999, 49.287902648000092 ], [ -123.099944312999952, 49.287902398000035 ], [ -123.100047678999957, 49.28795883800003 ], [ -123.100049747999947, 49.288981726000053 ], [ -123.099637199999933, 49.28898208300005 ], [ -123.09963828699992, 49.28952179100007 ], [ -123.099299168999949, 49.28952208400009 ], [ -123.099588629999971, 49.288287354000055 ], [ -123.09965316099999, 49.287902648000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "789790391", "BldgCostT": "519411097", "sL_LossRatio": "0.70979870599469", "sL_AssetLoss": "1812821", "sL_BldgLoss": "1286738", "sL_StrLoss": "504782", "sL_NStrLoss": "781956", "sL_ContLoss": "526083", "geom_point": "0101000020E6100000FEE13A08B2C65EC0B81B741178A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09945559, 49.285367573000059 ], [ -123.099069936999939, 49.285058358000121 ], [ -123.099176210999957, 49.284855503000031 ], [ -123.09914618, 49.284764604000081 ], [ -123.099166403999973, 49.284652336000121 ], [ -123.099179881999987, 49.284577305000013 ], [ -123.09944379699999, 49.28424840900005 ], [ -123.099491193999967, 49.284104704000072 ], [ -123.100252685999976, 49.284088120000085 ], [ -123.100454591999934, 49.284083695000028 ], [ -123.102161990999946, 49.283791813000029 ], [ -123.103786996999986, 49.283475988000127 ], [ -123.103986551999938, 49.283376304000114 ], [ -123.104002607999945, 49.283368296000042 ], [ -123.104013699999925, 49.283373574000052 ], [ -123.104222911999969, 49.283473298000068 ], [ -123.104544318999942, 49.283563894000046 ], [ -123.106413615999926, 49.283892302000091 ], [ -123.106511119999979, 49.283646645000026 ], [ -123.10660927899994, 49.283399391000053 ], [ -123.106794, 49.282927891000085 ], [ -123.107287381999967, 49.28301299200011 ], [ -123.107571853999943, 49.283062051000066 ], [ -123.107851775999947, 49.283110341000047 ], [ -123.108544010999978, 49.283229685000038 ], [ -123.108840119999954, 49.283329503000047 ], [ -123.109152882999979, 49.283537796000076 ], [ -123.109042801999976, 49.283801044 ], [ -123.109023591999986, 49.283846908000029 ], [ -123.108822898999961, 49.284310796000042 ], [ -123.108675616999975, 49.284644693000125 ], [ -123.108728010999968, 49.284967170000122 ], [ -123.108757435999948, 49.285185714000072 ], [ -123.108785852, 49.285396912000053 ], [ -123.10881258299996, 49.285595254000086 ], [ -123.108842324, 49.285816197000074 ], [ -123.108872903999938, 49.286043291000041 ], [ -123.108707410999926, 49.286302029000062 ], [ -123.108707352999915, 49.286275355000086 ], [ -123.107469771999945, 49.286276513000097 ], [ -123.107470357999929, 49.286546367000028 ], [ -123.107057829, 49.286546751000131 ], [ -123.107058010999964, 49.286630509000084 ], [ -123.107000367999945, 49.286625133000022 ], [ -123.106861965999911, 49.286816787000092 ], [ -123.105820820999895, 49.286817745000121 ], [ -123.105820241999965, 49.286547890000058 ], [ -123.105601975999903, 49.286548090000061 ], [ -123.105717885000018, 49.286358806000059 ], [ -123.105504327999981, 49.286340659000096 ], [ -123.10405474599996, 49.286095621000072 ], [ -123.103800583999927, 49.2862880670001 ], [ -123.103245363, 49.286273172000115 ], [ -123.103120089999948, 49.285976869000123 ], [ -123.103163760999905, 49.285683005000131 ], [ -123.102843705999931, 49.285395672000085 ], [ -123.10221325599997, 49.285319060000099 ], [ -123.10148215699995, 49.285379792000064 ], [ -123.101229807999971, 49.285505223000079 ], [ -123.1008830009999, 49.285515103000066 ], [ -123.101039272999969, 49.286036177000092 ], [ -123.101240658000023, 49.286699314000039 ], [ -123.099737442999981, 49.286510140000125 ], [ -123.099799115999943, 49.28567875100007 ], [ -123.09945559, 49.285367573000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179775500", "BldgCostT": "118400000", "sL_LossRatio": "0.75200754912482", "sL_AssetLoss": "5404600", "sL_BldgLoss": "4064300", "sL_StrLoss": "1879800", "sL_NStrLoss": "2184500", "sL_ContLoss": "1340300", "geom_point": "0101000020E61000005586C47F72C65EC0CE30836B4DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099560694999965, 49.283192286000094 ], [ -123.100265903999926, 49.283205418000136 ], [ -123.100307109999989, 49.283206198000073 ], [ -123.102184005999959, 49.283241092000019 ], [ -123.102169727999964, 49.283598455000103 ], [ -123.102161990999946, 49.283791813000029 ], [ -123.100454591999934, 49.284083695000028 ], [ -123.100252685999976, 49.284088120000085 ], [ -123.099491193999967, 49.284104704000072 ], [ -123.09952683799996, 49.283637041000098 ], [ -123.099560694999965, 49.283192286000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "336509092", "BldgCostT": "213196793", "sL_LossRatio": "0.646280965651172", "sL_AssetLoss": "2154484", "sL_BldgLoss": "1392402", "sL_StrLoss": "527943", "sL_NStrLoss": "864459", "sL_ContLoss": "762082", "geom_point": "0101000020E610000042932096ACC65EC0C16A03E23BA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102169727999964, 49.283598455000103 ], [ -123.102184005999959, 49.283241092000019 ], [ -123.102203392999954, 49.282816409000077 ], [ -123.102224888999956, 49.282345986000038 ], [ -123.103578397999939, 49.282349907000039 ], [ -123.104267412999917, 49.28242959600005 ], [ -123.106794, 49.282927891000085 ], [ -123.10660927899994, 49.283399391000053 ], [ -123.106511119999979, 49.283646645000026 ], [ -123.106413615999926, 49.283892302000091 ], [ -123.104544318999942, 49.283563894000046 ], [ -123.104222911999969, 49.283473298000068 ], [ -123.104013699999925, 49.283373574000052 ], [ -123.104002607999945, 49.283368296000042 ], [ -123.103986551999938, 49.283376304000114 ], [ -123.103786996999986, 49.283475988000127 ], [ -123.102161990999946, 49.283791813000029 ], [ -123.102169727999964, 49.283598455000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "555017250", "BldgCostT": "374774015", "sL_LossRatio": "0.789432530653571", "sL_AssetLoss": "3747198", "sL_BldgLoss": "2958160", "sL_StrLoss": "1429400", "sL_NStrLoss": "1528760", "sL_ContLoss": "789038", "geom_point": "0101000020E6100000F7E17A9075C65EC0D40EF25922A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100331880999974, 49.281360891000084 ], [ -123.102263286, 49.281401270000053 ], [ -123.102243055999963, 49.281898925000114 ], [ -123.102224888999956, 49.282345986000038 ], [ -123.102203392999954, 49.282816409000077 ], [ -123.102184005999959, 49.283241092000019 ], [ -123.100307109999989, 49.283206198000073 ], [ -123.100265903999926, 49.283205418000136 ], [ -123.099560694999965, 49.283192286000094 ], [ -123.099630893, 49.282289018000036 ], [ -123.099687082999964, 49.281347401000055 ], [ -123.100331880999974, 49.281360891000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "580774246", "BldgCostT": "388837761", "sL_LossRatio": "0.805384193873402", "sL_AssetLoss": "2772077", "sL_BldgLoss": "2232587", "sL_StrLoss": "963537", "sL_NStrLoss": "1269050", "sL_ContLoss": "539490", "geom_point": "0101000020E610000062E3B9A5B2C65EC0EA0BCFE81AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104267412999917, 49.28242959600005 ], [ -123.103578397999939, 49.282349907000039 ], [ -123.102224888999956, 49.282345986000038 ], [ -123.102243055999963, 49.281898925000114 ], [ -123.102263286, 49.281401270000053 ], [ -123.10385277499995, 49.281433061000051 ], [ -123.104327053999981, 49.281474659000054 ], [ -123.104746051999925, 49.281551753000024 ], [ -123.107194008999926, 49.282001905000129 ], [ -123.106985547999912, 49.28248454100008 ], [ -123.106794, 49.282927891000085 ], [ -123.104267412999917, 49.28242959600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330722698", "BldgCostT": "221765270", "sL_LossRatio": "0.829867097772663", "sL_AssetLoss": "1506822", "sL_BldgLoss": "1250462", "sL_StrLoss": "563930", "sL_NStrLoss": "686532", "sL_ContLoss": "256360", "geom_point": "0101000020E610000081E07526C2C65EC0EC3498A7EFA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104452709000014, 49.279406440000031 ], [ -123.104464696999983, 49.279226586000107 ], [ -123.104910117999935, 49.279288914000055 ], [ -123.105039185999914, 49.279306981000026 ], [ -123.10611310799996, 49.279457191000077 ], [ -123.105849217999946, 49.280096847000053 ], [ -123.105774154, 49.280277952000112 ], [ -123.105595219999941, 49.280709737000123 ], [ -123.106212538999955, 49.280820237000036 ], [ -123.107583602999952, 49.281065705000088 ], [ -123.107365863999988, 49.281588951000096 ], [ -123.107194008999926, 49.282001905000129 ], [ -123.104746051999925, 49.281551753000024 ], [ -123.104327053999981, 49.281474659000054 ], [ -123.104352099999929, 49.281029498000109 ], [ -123.104378758999971, 49.280492460000104 ], [ -123.104400624000021, 49.28018770500006 ], [ -123.104452709000014, 49.279406440000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "942793524", "BldgCostT": "603013238", "sL_LossRatio": "0.72614193525128", "sL_AssetLoss": "3328560", "sL_BldgLoss": "2417007", "sL_StrLoss": "1078888", "sL_NStrLoss": "1338119", "sL_ContLoss": "911553", "geom_point": "0101000020E61000003152E5A405C75EC0FCEB2D6935A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.107365863999988, 49.281588951000096 ], [ -123.107583602999952, 49.281065705000088 ], [ -123.108458989999946, 49.28122060500008 ], [ -123.109758006999982, 49.281458101000077 ], [ -123.110066314999955, 49.281560905000056 ], [ -123.110956395, 49.282119799000021 ], [ -123.111922399999926, 49.28276348400005 ], [ -123.112237228999959, 49.282981753000108 ], [ -123.112376988, 49.283078617000065 ], [ -123.112426104999912, 49.283112674000073 ], [ -123.112864411999951, 49.283416500000094 ], [ -123.112429538999891, 49.283703129000052 ], [ -123.111908411999977, 49.284046599000078 ], [ -123.111433169999927, 49.284364352000061 ], [ -123.110918799999979, 49.284708305000031 ], [ -123.110891352999928, 49.284703093000068 ], [ -123.108822898999961, 49.284310796000042 ], [ -123.109023591999986, 49.283846908000029 ], [ -123.109042801999976, 49.283801044 ], [ -123.109152882999979, 49.283537796000076 ], [ -123.108840119999954, 49.283329503000047 ], [ -123.108544010999978, 49.283229685000038 ], [ -123.107851775999947, 49.283110341000047 ], [ -123.107571853999943, 49.283062051000066 ], [ -123.107287381999967, 49.28301299200011 ], [ -123.106794, 49.282927891000085 ], [ -123.106985547999912, 49.28248454100008 ], [ -123.107194008999926, 49.282001905000129 ], [ -123.107365863999988, 49.281588951000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289927470", "BldgCostT": "155747444", "sL_LossRatio": "0.602229919572589", "sL_AssetLoss": "9034855", "sL_BldgLoss": "5441060", "sL_StrLoss": "2093580", "sL_NStrLoss": "3347480", "sL_ContLoss": "3593795", "geom_point": "0101000020E6100000A9D5C1A881C65EC0156E8EADC6A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104327053999981, 49.281474659000054 ], [ -123.10385277499995, 49.281433061000051 ], [ -123.102263286, 49.281401270000053 ], [ -123.100331880999974, 49.281360891000084 ], [ -123.099687082999964, 49.281347401000055 ], [ -123.09969940399999, 49.280381297000076 ], [ -123.099737721999958, 49.279482509000054 ], [ -123.099771483999973, 49.278569102000056 ], [ -123.099811613999961, 49.278081097000097 ], [ -123.09978634, 49.278061298000111 ], [ -123.099719904999944, 49.278009300000043 ], [ -123.099721012999936, 49.277685110000085 ], [ -123.099722222999958, 49.277674099000073 ], [ -123.099733608999927, 49.277570990000086 ], [ -123.099762867999942, 49.277279062000034 ], [ -123.099768009999963, 49.277086448000077 ], [ -123.099781688999897, 49.276758006000087 ], [ -123.09992980199999, 49.276762910000087 ], [ -123.101187532999958, 49.276862864000087 ], [ -123.101299908999977, 49.276871813000049 ], [ -123.101789853999946, 49.276932331000062 ], [ -123.102138600999965, 49.276975407000045 ], [ -123.10213900799999, 49.277123097000057 ], [ -123.10212771099998, 49.277325511000058 ], [ -123.102125998999924, 49.277506490000086 ], [ -123.102120643999953, 49.277591832000041 ], [ -123.102119533999925, 49.277609835000092 ], [ -123.102117414999967, 49.277643998000023 ], [ -123.102117509999985, 49.277734753000111 ], [ -123.102118603999941, 49.278580307000034 ], [ -123.10211920799999, 49.279044710000058 ], [ -123.102155010999965, 49.279286204000066 ], [ -123.102544385999934, 49.279211100000083 ], [ -123.104464696999983, 49.279226586000107 ], [ -123.104452709000014, 49.279406440000031 ], [ -123.104400624000021, 49.28018770500006 ], [ -123.104378758999971, 49.280492460000104 ], [ -123.104352099999929, 49.281029498000109 ], [ -123.104327053999981, 49.281474659000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2231250", "BldgCostT": "1275000", "sL_LossRatio": "0.618126077792681", "sL_AssetLoss": "52190", "sL_BldgLoss": "32260", "sL_StrLoss": "18020", "sL_NStrLoss": "14240", "sL_ContLoss": "19930", "geom_point": "0101000020E6100000E2FE65EFF3C95EC0BEFFC9BEAFA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157887131999956, 49.299616529000104 ], [ -123.158312627999976, 49.299627725000043 ], [ -123.158261607, 49.300114185000027 ], [ -123.158526100999936, 49.300725202000088 ], [ -123.158829986999933, 49.301067001000021 ], [ -123.158830347999981, 49.301131801000054 ], [ -123.15883078099999, 49.301219393000018 ], [ -123.158445700999962, 49.301462901000072 ], [ -123.15748430099994, 49.301725006000055 ], [ -123.157044393, 49.302203504000083 ], [ -123.156857895999977, 49.303758714000026 ], [ -123.156571700999933, 49.304812586 ], [ -123.156545942999955, 49.305087850000092 ], [ -123.153532892999976, 49.305008490000027 ], [ -123.152939552999925, 49.304992853000044 ], [ -123.153160489999919, 49.301396009000023 ], [ -123.154261543999965, 49.301425025000114 ], [ -123.154378246999897, 49.29952413400008 ], [ -123.157887131999956, 49.299616529000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12087917", "BldgCostT": "6601667", "sL_LossRatio": "0.607366444073456", "sL_AssetLoss": "191680", "sL_BldgLoss": "116420", "sL_StrLoss": "62750", "sL_NStrLoss": "53670", "sL_ContLoss": "75260", "geom_point": "0101000020E61000002F2AD29241C95EC0D16A16A2A2A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147870720999919, 49.297578338000093 ], [ -123.147971121999959, 49.295946525000026 ], [ -123.147597995999945, 49.295947002000027 ], [ -123.146688596999965, 49.295948160000101 ], [ -123.146688906999898, 49.296052521000071 ], [ -123.146689397999936, 49.296218013000093 ], [ -123.146288213999981, 49.296218523000107 ], [ -123.145451570999938, 49.296219579000066 ], [ -123.145451174999948, 49.296085704000085 ], [ -123.14551458599999, 49.29606510400005 ], [ -123.145450809999943, 49.295960921000137 ], [ -123.145447598999937, 49.294870310000057 ], [ -123.14420980599999, 49.294871862000036 ], [ -123.144209018999973, 49.294602007000051 ], [ -123.143975170999923, 49.294602299000069 ], [ -123.143949455999959, 49.295019681000085 ], [ -123.143377111999939, 49.294646588 ], [ -123.141821613999952, 49.29401 ], [ -123.141009406999927, 49.293867609000081 ], [ -123.139677080999945, 49.294175193000065 ], [ -123.138727788999944, 49.294239306000122 ], [ -123.138495395999925, 49.294295356000113 ], [ -123.138509351999957, 49.294069270000058 ], [ -123.138018573999943, 49.294069857000082 ], [ -123.138019326999981, 49.294339712000038 ], [ -123.137606734999977, 49.294340203000068 ], [ -123.137607292999931, 49.294540828000017 ], [ -123.137435215000011, 49.29465379600007 ], [ -123.137320833999979, 49.294880253000095 ], [ -123.137195639, 49.294880402000082 ], [ -123.13719632399993, 49.295126762000066 ], [ -123.137048062999924, 49.29542028600013 ], [ -123.13650986199994, 49.295420923000108 ], [ -123.135694244999982, 49.295421884000113 ], [ -123.135714461999967, 49.295306841000112 ], [ -123.135546124999919, 49.295202716000034 ], [ -123.135545245999936, 49.294882350000073 ], [ -123.13513264799991, 49.294882832000091 ], [ -123.13513338599995, 49.29515268500009 ], [ -123.134142726999954, 49.295153840000111 ], [ -123.134142614999988, 49.295153785000124 ], [ -123.133895320999926, 49.295057098 ], [ -123.133894852999958, 49.294884273000072 ], [ -123.133694818999956, 49.294884504000024 ], [ -123.133584599999935, 49.294676036000084 ], [ -123.13372952899999, 49.294558565000067 ], [ -123.133784645999967, 49.294478612000077 ], [ -123.133723420999956, 49.294415156000056 ], [ -123.13333490699992, 49.294223731000031 ], [ -123.132965171, 49.294043907000095 ], [ -123.132804359999952, 49.293960740000038 ], [ -123.132670334999915, 49.293819679000087 ], [ -123.132558432999943, 49.293682978000099 ], [ -123.13248734299998, 49.293591879000104 ], [ -123.132439380999969, 49.293576548000019 ], [ -123.132452863999944, 49.293566377000033 ], [ -123.132573517999958, 49.29347537899999 ], [ -123.132513291999913, 49.293444306000076 ], [ -123.132780299999936, 49.293262704000057 ], [ -123.133094488999944, 49.293049 ], [ -123.133440861999944, 49.292812879000053 ], [ -123.133718800999972, 49.292623388000045 ], [ -123.13439839599998, 49.292192908000111 ], [ -123.135476218999941, 49.291479299000045 ], [ -123.137027098000019, 49.292474303000091 ], [ -123.136557877999934, 49.292789674000041 ], [ -123.135968726999977, 49.293185700000102 ], [ -123.137319914, 49.294077106000074 ], [ -123.137853487999948, 49.293732775000137 ], [ -123.138204696999949, 49.29350611000006 ], [ -123.138361991999929, 49.293406701000102 ], [ -123.138858291999938, 49.29306987000006 ], [ -123.138907783999969, 49.293036285000056 ], [ -123.139443822999965, 49.292672489000097 ], [ -123.13998327299997, 49.292318316000056 ], [ -123.140504011999937, 49.29197638200008 ], [ -123.14170181899999, 49.292834936000126 ], [ -123.141830921999912, 49.292927449000075 ], [ -123.141840196999937, 49.292934092000067 ], [ -123.14274941199993, 49.293079803000076 ], [ -123.143771115999968, 49.292516803000112 ], [ -123.14345821499991, 49.292397799000092 ], [ -123.143431486999972, 49.292385368000069 ], [ -123.143850682999926, 49.292096047000065 ], [ -123.143957454, 49.292022434000039 ], [ -123.144417161999939, 49.291877807000056 ], [ -123.144913827999972, 49.29138601800004 ], [ -123.144934512999924, 49.291340957000081 ], [ -123.144955599999932, 49.290692806000024 ], [ -123.145738073999965, 49.290427439000055 ], [ -123.14639399099994, 49.290096761000051 ], [ -123.146576045999922, 49.289999181000091 ], [ -123.147083007999925, 49.289832297000068 ], [ -123.147083538999965, 49.290010851000062 ], [ -123.14741588499993, 49.290010428000052 ], [ -123.147489803, 49.290315589000066 ], [ -123.147497032999965, 49.290324236000068 ], [ -123.147497408999939, 49.290450574000047 ], [ -123.147605045999953, 49.29045341700003 ], [ -123.148000690999964, 49.290926594000062 ], [ -123.149614806999949, 49.292228309000038 ], [ -123.150152015999964, 49.292839295000114 ], [ -123.150170510999928, 49.294143909000113 ], [ -123.150390877999939, 49.294682195000057 ], [ -123.150640992999925, 49.294979907000013 ], [ -123.151700178999988, 49.295437097000047 ], [ -123.152182407999959, 49.295291809000084 ], [ -123.152471188999954, 49.295283314000081 ], [ -123.1528552199999, 49.295479798000081 ], [ -123.153427490999903, 49.296638329000068 ], [ -123.153377592999917, 49.2974508880001 ], [ -123.153360869999929, 49.297723191000074 ], [ -123.147870720999919, 49.297578338000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.611806797853309", "sL_AssetLoss": "55900", "sL_BldgLoss": "34200", "sL_StrLoss": "5200", "sL_NStrLoss": "29000", "sL_ContLoss": "21700", "geom_point": "0101000020E6100000231C8A6DD8C75EC018C2FF90DDA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122758717999957, 49.296515768000106 ], [ -123.122758352999981, 49.29636882300008 ], [ -123.120373701999966, 49.296305262000047 ], [ -123.120391899999944, 49.296283095000021 ], [ -123.120787596999946, 49.295936996000108 ], [ -123.122239598999968, 49.295069598000055 ], [ -123.122902096999951, 49.295156515000102 ], [ -123.12397339599994, 49.295046800000094 ], [ -123.12401600199999, 49.295874297000118 ], [ -123.123906123999987, 49.296278803000064 ], [ -123.123906981999951, 49.29651454300005 ], [ -123.122758717999957, 49.296515768000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30131084", "BldgCostT": "16573334", "sL_LossRatio": "0.604149511584726", "sL_AssetLoss": "619350", "sL_BldgLoss": "374180", "sL_StrLoss": "184160", "sL_NStrLoss": "190020", "sL_ContLoss": "245170", "geom_point": "0101000020E610000065A2E79AB2C85EC04FBC033CE9A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139548942999951, 49.312867428000089 ], [ -123.139609998999973, 49.311878334 ], [ -123.13930654699999, 49.311878700000115 ], [ -123.139305784999948, 49.311608846000098 ], [ -123.138893047999915, 49.311609344000018 ], [ -123.138892289999944, 49.311339490000066 ], [ -123.138479554999918, 49.31133998600005 ], [ -123.138478796999948, 49.311070133000037 ], [ -123.138066064, 49.311070626000081 ], [ -123.138065309999917, 49.310800774000072 ], [ -123.137550110999911, 49.310801388000037 ], [ -123.137238967000016, 49.310484674000044 ], [ -123.137238348999944, 49.310262051000045 ], [ -123.137020515999936, 49.310262309000059 ], [ -123.136825070999976, 49.310063359000026 ], [ -123.13682412799993, 49.30972283300013 ], [ -123.136556490999936, 49.309723150000117 ], [ -123.136410514999966, 49.309401109000092 ], [ -123.136409169999965, 49.308913762000046 ], [ -123.13613246199999, 49.308914089000048 ], [ -123.135995895999898, 49.308711482000049 ], [ -123.135995711999897, 49.30864439500003 ], [ -123.135950711999953, 49.308644448000038 ], [ -123.135670891999951, 49.308229311000069 ], [ -123.135516219999943, 49.307033001000086 ], [ -123.135185816999936, 49.306826495000045 ], [ -123.134339083999933, 49.306522573000059 ], [ -123.134338989999961, 49.306487500000102 ], [ -123.134241685999953, 49.30648761300008 ], [ -123.133925984999948, 49.306374295000069 ], [ -123.133925562999963, 49.306218126000019 ], [ -123.133512871, 49.306218603000055 ], [ -123.133512140999983, 49.305948749000052 ], [ -123.133099449999975, 49.305949226000081 ], [ -123.133098369999942, 49.305548048000077 ], [ -123.13309685899999, 49.304987059000062 ], [ -123.132590501999957, 49.304973618000105 ], [ -123.131760322999966, 49.304951577000047 ], [ -123.131700379999955, 49.304519301 ], [ -123.131203683999942, 49.304025096000032 ], [ -123.130953810999969, 49.303530900000105 ], [ -123.130322197999959, 49.303424012000079 ], [ -123.129426307999921, 49.302794509000101 ], [ -123.129219486999929, 49.302731895000072 ], [ -123.127458084999915, 49.302545307000059 ], [ -123.126603727999964, 49.302718273000053 ], [ -123.126509198999912, 49.302718377000112 ], [ -123.126488101999939, 49.302715400000068 ], [ -123.126487417999925, 49.302448546000043 ], [ -123.126103959999966, 49.30244896500006 ], [ -123.126074686999942, 49.302421701000071 ], [ -123.126074622999951, 49.302396271000084 ], [ -123.126046586999934, 49.302395524000111 ], [ -123.125378701, 49.301773413000063 ], [ -123.124276415999972, 49.30112679400002 ], [ -123.123188891999959, 49.300642600000039 ], [ -123.121166505999923, 49.299997405000092 ], [ -123.119886498999961, 49.299809409000083 ], [ -123.118908987999959, 49.299819412000026 ], [ -123.118853728, 49.29984555900009 ], [ -123.118859163999957, 49.299758100000069 ], [ -123.118640370999941, 49.299758324000052 ], [ -123.118639951, 49.299583732000038 ], [ -123.118639513999938, 49.299401911000054 ], [ -123.118638425999919, 49.298948762000101 ], [ -123.118561374999956, 49.298948842000108 ], [ -123.118225792999922, 49.298949186000115 ], [ -123.118224262999945, 49.298309488000051 ], [ -123.118223227, 49.297876076000129 ], [ -123.118730042999942, 49.297869251000122 ], [ -123.118976583999981, 49.297868997000108 ], [ -123.118982172999978, 49.297779065000093 ], [ -123.121524150999932, 49.297846849000088 ], [ -123.12152353499998, 49.297596492000068 ], [ -123.121880783999984, 49.297596116000072 ], [ -123.121896380999928, 49.297344935000062 ], [ -123.12193553899999, 49.297345979000127 ], [ -123.121935491999949, 49.297326203000125 ], [ -123.122348108999972, 49.297325767000039 ], [ -123.122347441999921, 49.297055914000083 ], [ -123.123917654999957, 49.297054240000044 ], [ -123.1239663899999, 49.29759329400013 ], [ -123.124159007999964, 49.297700086000049 ], [ -123.12516270899999, 49.2977171920001 ], [ -123.125905512999978, 49.297509306000052 ], [ -123.12663321799999, 49.29705919700006 ], [ -123.12687207, 49.296781180000039 ], [ -123.126885529999967, 49.296781165000063 ], [ -123.126885491999971, 49.296765560000061 ], [ -123.127415001999921, 49.296149209000077 ], [ -123.127647498000016, 49.296005298000075 ], [ -123.128114706999952, 49.295905591000057 ], [ -123.128416403999978, 49.295951196000082 ], [ -123.128947327999953, 49.296290901000098 ], [ -123.128947897999979, 49.296509027000042 ], [ -123.129218371999983, 49.296508726000049 ], [ -123.129360978999941, 49.296688186000011 ], [ -123.129362118, 49.297123410000054 ], [ -123.129362628999971, 49.297318128000079 ], [ -123.129477185999932, 49.297318 ], [ -123.1294780599999, 49.297317999000079 ], [ -123.129505778999956, 49.296870402000117 ], [ -123.130003310999939, 49.297496492000064 ], [ -123.130484591999959, 49.297621792000029 ], [ -123.131034803999938, 49.297522097000055 ], [ -123.132160199999987, 49.296864099000054 ], [ -123.132422502999944, 49.296810005000061 ], [ -123.132959697999965, 49.296925401000088 ], [ -123.133633904999954, 49.296960989000084 ], [ -123.133907098999913, 49.296906899000135 ], [ -123.134017282999963, 49.296762999000116 ], [ -123.134458101999954, 49.296717398000084 ], [ -123.134442595999971, 49.296644787000112 ], [ -123.134951604999983, 49.296617694000069 ], [ -123.135145095999945, 49.296492404000098 ], [ -123.135326506999917, 49.296231880000114 ], [ -123.136067911999973, 49.296231008000092 ], [ -123.136786774999948, 49.296230160000036 ], [ -123.136787521000016, 49.296500013000063 ], [ -123.136898739999936, 49.296499881000088 ], [ -123.137057195999915, 49.296966698000048 ], [ -123.13719599299999, 49.297110499000084 ], [ -123.137926423999886, 49.29755060200015 ], [ -123.138571309999932, 49.297603285000037 ], [ -123.139149919999909, 49.297503602000113 ], [ -123.139265832999968, 49.297434965000051 ], [ -123.139266766, 49.297766001000085 ], [ -123.13926699299995, 49.297846325000144 ], [ -123.139679614999963, 49.297845828000028 ], [ -123.139681642999946, 49.298563223000052 ], [ -123.139800924999975, 49.298566383000058 ], [ -123.139786295999912, 49.298803458000044 ], [ -123.139578965999959, 49.302163214000046 ], [ -123.139576740999985, 49.302163155000123 ], [ -123.139555385, 49.302509214000054 ], [ -123.139554989999951, 49.302509204000017 ], [ -123.13952990699994, 49.30291561300006 ], [ -123.136851195999924, 49.302844638000117 ], [ -123.136807060999928, 49.303559086000099 ], [ -123.136809181999936, 49.304325768000055 ], [ -123.137221859999897, 49.304325278000086 ], [ -123.137224109000016, 49.3051348380001 ], [ -123.137636791999967, 49.305134348000102 ], [ -123.137640549999915, 49.306483615000069 ], [ -123.138053245999956, 49.306483121999989 ], [ -123.138057767999939, 49.308102243000079 ], [ -123.138470478, 49.308101749000087 ], [ -123.138475014999983, 49.30972086700006 ], [ -123.138887736999962, 49.309720372000065 ], [ -123.138888495999979, 49.309990226000139 ], [ -123.13930122, 49.30998972800009 ], [ -123.139301979999942, 49.310259582000093 ], [ -123.139714707999957, 49.310259083000105 ], [ -123.139712418999949, 49.309449524000065 ], [ -123.140125137999974, 49.309449025000042 ], [ -123.140122842999958, 49.308639465000105 ], [ -123.140535555999961, 49.308638964000053 ], [ -123.140534019999961, 49.308099257000038 ], [ -123.14081317599999, 49.308098917000095 ], [ -123.14098095599999, 49.305379324000086 ], [ -123.145246173999965, 49.305492134000083 ], [ -123.146472006999929, 49.305524524000099 ], [ -123.146260879999929, 49.308953282000104 ], [ -123.150926337999934, 49.309076431000044 ], [ -123.151308345999951, 49.309086506000035 ], [ -123.151124174999964, 49.312082364000034 ], [ -123.149886204999959, 49.312651626000097 ], [ -123.145595314999952, 49.312538339000071 ], [ -123.145635259999935, 49.311889856000072 ], [ -123.145806506999932, 49.30910960199999 ], [ -123.14411045899999, 49.309064776000099 ], [ -123.143838488999961, 49.309057585000083 ], [ -123.143839629999931, 49.309449309000115 ], [ -123.143841186999921, 49.309984167000074 ], [ -123.143428462999978, 49.309984680000071 ], [ -123.14343003, 49.310524386000104 ], [ -123.143017300999986, 49.310524898000061 ], [ -123.143018081999941, 49.310794750000085 ], [ -123.143430811999934, 49.310794239000074 ], [ -123.143431602, 49.31106603700006 ], [ -123.145157997999974, 49.311111674000067 ], [ -123.145097072999988, 49.312100604000115 ], [ -123.145001962999956, 49.313644296000064 ], [ -123.143929288999971, 49.313842092000115 ], [ -123.141424700999934, 49.314078496000064 ], [ -123.14126099299996, 49.314024387000082 ], [ -123.141065788999981, 49.313575798000045 ], [ -123.140859706999962, 49.313396300000058 ], [ -123.140591928000021, 49.313363486000107 ], [ -123.14019798899993, 49.313315210000098 ], [ -123.139799715999956, 49.313108703000047 ], [ -123.139548942999951, 49.312867428000089 ] ], [ [ -123.12884782699993, 49.300287103000059 ], [ -123.128981555999957, 49.298128117000026 ], [ -123.128952120999926, 49.298128150000117 ], [ -123.12895000899999, 49.297318589000042 ], [ -123.127712152999905, 49.297319964000046 ], [ -123.127712849999924, 49.297589818000041 ], [ -123.127380280999915, 49.297590184 ], [ -123.127309687999983, 49.298729279000035 ], [ -123.128674651999944, 49.298765578000051 ], [ -123.128580378999914, 49.300287401000112 ], [ -123.12884782699993, 49.300287103000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "360970000", "BldgCostT": "249100000", "sL_LossRatio": "0.907072726492215", "sL_AssetLoss": "1630630", "sL_BldgLoss": "1479100", "sL_StrLoss": "705200", "sL_NStrLoss": "773900", "sL_ContLoss": "151530", "geom_point": "0101000020E6100000ED936955C7C85EC0974D90438AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.135968726999977, 49.293185700000102 ], [ -123.136557877999934, 49.292789674000041 ], [ -123.137027098000019, 49.292474303000091 ], [ -123.138361991999929, 49.293406701000102 ], [ -123.138204696999949, 49.29350611000006 ], [ -123.137853487999948, 49.293732775000137 ], [ -123.137319914, 49.294077106000074 ], [ -123.135968726999977, 49.293185700000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "329083008", "BldgCostT": "220993459", "sL_LossRatio": "0.77455695761814", "sL_AssetLoss": "2010530", "sL_BldgLoss": "1557270", "sL_StrLoss": "658890", "sL_NStrLoss": "898380", "sL_ContLoss": "453260", "geom_point": "0101000020E610000042220248CCC85EC03B277A0963A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136032057999941, 49.291108155000131 ], [ -123.13652708799998, 49.290777587000065 ], [ -123.138054383999958, 49.291769862000088 ], [ -123.13806134899994, 49.291774394000107 ], [ -123.139443822999965, 49.292672489000097 ], [ -123.138907783999969, 49.293036285000056 ], [ -123.138858291999938, 49.29306987000006 ], [ -123.138361991999929, 49.293406701000102 ], [ -123.137027098000019, 49.292474303000091 ], [ -123.135476218999941, 49.291479299000045 ], [ -123.136005087999976, 49.291126149000029 ], [ -123.136032057999941, 49.291108155000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "558226126", "BldgCostT": "376185589", "sL_LossRatio": "0.81355441830022", "sL_AssetLoss": "3162585", "sL_BldgLoss": "2572935", "sL_StrLoss": "1196080", "sL_NStrLoss": "1376855", "sL_ContLoss": "589650", "geom_point": "0101000020E6100000978F515CDDC85EC03F65CAC14BA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137057602999903, 49.290410721000107 ], [ -123.137549393999947, 49.290070600000035 ], [ -123.139129602999901, 49.291082598000102 ], [ -123.140504011999937, 49.29197638200008 ], [ -123.13998327299997, 49.292318316000056 ], [ -123.139443822999965, 49.292672489000097 ], [ -123.13806134899994, 49.291774394000107 ], [ -123.138054383999958, 49.291769862000088 ], [ -123.13652708799998, 49.290777587000065 ], [ -123.1370286099999, 49.290430767000039 ], [ -123.137057602999903, 49.290410721000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102311227", "BldgCostT": "65933871", "sL_LossRatio": "0.690434664239104", "sL_AssetLoss": "1175390", "sL_BldgLoss": "811530", "sL_StrLoss": "270960", "sL_NStrLoss": "540570", "sL_ContLoss": "363860", "geom_point": "0101000020E6100000FB8E4C4DE3C85EC0BF6E744226A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137549393999947, 49.290070600000035 ], [ -123.13804206699993, 49.289751725000038 ], [ -123.138078611999973, 49.289728100000055 ], [ -123.138616104999983, 49.289380187000042 ], [ -123.140196685999939, 49.290384011000071 ], [ -123.139674194999941, 49.290726066000083 ], [ -123.139647278999945, 49.290743693000067 ], [ -123.139129602999901, 49.291082598000102 ], [ -123.137549393999947, 49.290070600000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "466074622", "BldgCostT": "316376380", "sL_LossRatio": "0.823002966727825", "sL_AssetLoss": "2632530", "sL_BldgLoss": "2166580", "sL_StrLoss": "940690", "sL_NStrLoss": "1225890", "sL_ContLoss": "465950", "geom_point": "0101000020E6100000CD7BD6140CC95EC0A5F3F2855AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139674194999941, 49.290726066000083 ], [ -123.140196685999939, 49.290384011000071 ], [ -123.141568802999956, 49.291271491000082 ], [ -123.142837906999944, 49.292099219000114 ], [ -123.142892891999949, 49.292135100000074 ], [ -123.143056418999961, 49.29221108900007 ], [ -123.143150314999957, 49.292254723000049 ], [ -123.143431486999972, 49.292385368000069 ], [ -123.14345821499991, 49.292397799000092 ], [ -123.143771115999968, 49.292516803000112 ], [ -123.14274941199993, 49.293079803000076 ], [ -123.141840196999937, 49.292934092000067 ], [ -123.141830921999912, 49.292927449000075 ], [ -123.14170181899999, 49.292834936000126 ], [ -123.140504011999937, 49.29197638200008 ], [ -123.139129602999901, 49.291082598000102 ], [ -123.139647278999945, 49.290743693000067 ], [ -123.139674194999941, 49.290726066000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12084500", "BldgCostT": "6860000", "sL_LossRatio": "0.658489563865993", "sL_AssetLoss": "101666", "sL_BldgLoss": "66946", "sL_StrLoss": "31936", "sL_NStrLoss": "35010", "sL_ContLoss": "34720", "geom_point": "0101000020E6100000524B521DDBB65EC05774B18A33AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856508185999928, 49.336160389000042 ], [ -122.858159957999959, 49.336162428000151 ], [ -122.858155305999944, 49.337781540000023 ], [ -122.857742346999942, 49.337781031000119 ], [ -122.857739237999951, 49.338860439000051 ], [ -122.856087374999959, 49.338858394000077 ], [ -122.856092094999966, 49.337239283000088 ], [ -122.856505047999974, 49.337239797000102 ], [ -122.856508185999928, 49.336160389000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3675750", "BldgCostT": "2535000", "sL_LossRatio": "0.883689320388349", "sL_AssetLoss": "10300", "sL_BldgLoss": "9102", "sL_StrLoss": "6371", "sL_NStrLoss": "2731", "sL_ContLoss": "1198", "geom_point": "0101000020E6100000DB35DF901FB75EC064DD6895D3B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858996771999927, 49.380911276000049 ], [ -122.863924168999958, 49.381054215000063 ], [ -122.863670098999975, 49.381781185000108 ], [ -122.86363388399991, 49.381932494000054 ], [ -122.8634128529999, 49.381933259000128 ], [ -122.858926184999987, 49.381950835000033 ], [ -122.858996771999927, 49.380911276000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263062251", "BldgCostT": "171845001", "sL_LossRatio": "0.734433170118708", "sL_AssetLoss": "2358653", "sL_BldgLoss": "1732273", "sL_StrLoss": "874003", "sL_NStrLoss": "858270", "sL_ContLoss": "626380", "geom_point": "0101000020E610000049AD182A96B65EC03CE801E264A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.852819859, 49.32671089500009 ], [ -122.85282066399995, 49.326441043000024 ], [ -122.852407801999959, 49.326440516000069 ], [ -122.852410220999957, 49.325630960000119 ], [ -122.851997365999964, 49.325630432000047 ], [ -122.852003836999984, 49.323471614 ], [ -122.852416673999969, 49.323472141000067 ], [ -122.852417816999974, 49.323089506000024 ], [ -122.852418778999933, 49.322767874000142 ], [ -122.852297686999933, 49.322764346000049 ], [ -122.852299136999974, 49.322743027000065 ], [ -122.852038934999911, 49.32268916200016 ], [ -122.852034623999941, 49.322662093000062 ], [ -122.852006262999979, 49.322662056000055 ], [ -122.852006785999961, 49.322487239000061 ], [ -122.851905710999915, 49.321852367000083 ], [ -122.851595864999979, 49.321851969000129 ], [ -122.851593432999962, 49.322661527000029 ], [ -122.851180601999943, 49.32266099600006 ], [ -122.851179789999961, 49.322930849000031 ], [ -122.849115629999972, 49.322928171000115 ], [ -122.849118101999949, 49.322118615000058 ], [ -122.849530927999979, 49.322119152000013 ], [ -122.849532572999948, 49.321579448000101 ], [ -122.849945393999988, 49.321579985000049 ], [ -122.849948671999954, 49.320500574000071 ], [ -122.851134394000013, 49.320502109000088 ], [ -122.851155186999947, 49.320196205000066 ], [ -122.849154334, 49.320137870000082 ], [ -122.849197459, 49.319503822000065 ], [ -122.848084033999953, 49.319471343000025 ], [ -122.848198292999911, 49.317791961000125 ], [ -122.843110762999984, 49.317643416000124 ], [ -122.8432569779999, 49.315497634000067 ], [ -122.842082060999971, 49.315463294 ], [ -122.842178840999978, 49.314043402000024 ], [ -122.842175352999931, 49.314043301000027 ], [ -122.84222137899998, 49.313368008000083 ], [ -122.841851480999978, 49.313357193000108 ], [ -122.841892788999957, 49.312751171000102 ], [ -122.839156025999955, 49.312671124000047 ], [ -122.839323619999959, 49.310214352000017 ], [ -122.838909168999947, 49.310202223000083 ], [ -122.838948407999936, 49.309627060000011 ], [ -122.838612094999988, 49.309617217000032 ], [ -122.838646156999971, 49.309117968000052 ], [ -122.838029003999978, 49.309099903000124 ], [ -122.838054066999973, 49.308732626000022 ], [ -122.837496108999943, 49.308716290000078 ], [ -122.837527719999954, 49.308253116000138 ], [ -122.837250028999946, 49.308244984000098 ], [ -122.83730171199997, 49.307487762000065 ], [ -122.836400344999959, 49.307461364000083 ], [ -122.836429822999946, 49.307029589000138 ], [ -122.835882353999949, 49.307013551000104 ], [ -122.836007098999985, 49.305186582000069 ], [ -122.835825489999962, 49.305181261000037 ], [ -122.835748105999954, 49.301138590000043 ], [ -122.836388387999975, 49.301846492000095 ], [ -122.836463527999967, 49.301930949000081 ], [ -122.8374727, 49.303065600000139 ], [ -122.839763693999899, 49.305667605000046 ], [ -122.840077206999979, 49.306028785000066 ], [ -122.840598906999972, 49.306629788000102 ], [ -122.842452662999975, 49.308791034000144 ], [ -122.843108583999978, 49.309458797000111 ], [ -122.84359778799994, 49.309969498000051 ], [ -122.84409385399999, 49.310558504000021 ], [ -122.844360002999935, 49.310874516000062 ], [ -122.844937461999947, 49.311551505000068 ], [ -122.84512443499996, 49.311770686000166 ], [ -122.845246587999924, 49.311913906000051 ], [ -122.846002940999981, 49.312751527000088 ], [ -122.846364406999982, 49.313151809000061 ], [ -122.847106085999911, 49.31403 ], [ -122.84738068299994, 49.314355063000107 ], [ -122.847450193999975, 49.314437405000049 ], [ -122.847586091999943, 49.314502610000105 ], [ -122.847782605999967, 49.314545313000075 ], [ -122.850428318999889, 49.314545795000079 ], [ -122.851076982999956, 49.314545894000098 ], [ -122.851281369999953, 49.314545989000074 ], [ -122.852148186999983, 49.314546355000111 ], [ -122.852988904999961, 49.314546699000061 ], [ -122.855691710999977, 49.314547 ], [ -122.855696458999944, 49.314030204000048 ], [ -122.855696978999944, 49.313976233000069 ], [ -122.855698185999984, 49.313843666 ], [ -122.855701486999934, 49.313349203000051 ], [ -122.855774301999944, 49.313026122000039 ], [ -122.855912718999917, 49.312769824000071 ], [ -122.85602078099997, 49.312661106000071 ], [ -122.856891445999963, 49.311784895000102 ], [ -122.858112105999936, 49.31055929700009 ], [ -122.858281403999953, 49.3103898620001 ], [ -122.858757724, 49.309913244000043 ], [ -122.859560994999981, 49.309109460000116 ], [ -122.859957532999942, 49.308712633000084 ], [ -122.860357748999945, 49.308312168000029 ], [ -122.860781131999943, 49.307968645000066 ], [ -122.861415492999953, 49.3078826 ], [ -122.861899082999926, 49.307890331000088 ], [ -122.865974007999938, 49.307952801000063 ], [ -122.866348666999926, 49.308045652000061 ], [ -122.866631165999976, 49.308179961000043 ], [ -122.867220018999916, 49.308888866000082 ], [ -122.867484872999938, 49.309118161000093 ], [ -122.867484760999957, 49.309119813000031 ], [ -122.866595869999955, 49.309094031000065 ], [ -122.866588329999942, 49.309205535000103 ], [ -122.865901330999961, 49.309185603000053 ], [ -122.865896403999955, 49.309258451000083 ], [ -122.864223032999931, 49.309209883000072 ], [ -122.864222734999927, 49.309214293000132 ], [ -122.863170925999952, 49.309183751000077 ], [ -122.863170588999949, 49.309188718000058 ], [ -122.862481647999985, 49.309168708000101 ], [ -122.862471853, 49.309313367000129 ], [ -122.862522983999952, 49.309314852000064 ], [ -122.862279462999979, 49.312911029000105 ], [ -122.861941506999983, 49.312901212000064 ], [ -122.861941343999945, 49.312959618000058 ], [ -122.864830587, 49.312963034000042 ], [ -122.86482837299998, 49.313772593000088 ], [ -122.86524112799998, 49.313773074 ], [ -122.865238919999967, 49.314582634000011 ], [ -122.86565168199995, 49.314583114000129 ], [ -122.865650948999956, 49.314852967000022 ], [ -122.866476478999957, 49.314853923000094 ], [ -122.86647491399998, 49.315432304000076 ], [ -122.866473560999935, 49.315933336000043 ], [ -122.865235237999968, 49.315931898000066 ], [ -122.865233766999921, 49.3164716040001 ], [ -122.864820988999938, 49.316471122000138 ], [ -122.864819510999965, 49.317010828000036 ], [ -122.864406727999949, 49.317010344000046 ], [ -122.864403022999937, 49.318359607000048 ], [ -122.863990228999981, 49.318359123000086 ], [ -122.86398948599999, 49.31862897500006 ], [ -122.862751095999954, 49.318627512000049 ], [ -122.862756345999941, 49.316738542000117 ], [ -122.863169127, 49.316739031000068 ], [ -122.86316987399999, 49.316469178000091 ], [ -122.862757095999953, 49.316468689000033 ], [ -122.862757845999937, 49.316198836000041 ], [ -122.861519516999977, 49.31619735900005 ], [ -122.861514976999942, 49.317816477000044 ], [ -122.861425818999976, 49.317816369000049 ], [ -122.861279566999883, 49.31997502300009 ], [ -122.863160154999903, 49.319977265000055 ], [ -122.863158660999929, 49.32051697100011 ], [ -122.863571472, 49.320517458000097 ], [ -122.863566254999952, 49.322406427000047 ], [ -122.863153426999972, 49.322405938000088 ], [ -122.863152677999921, 49.322675790000083 ], [ -122.860262865999957, 49.322672333000057 ], [ -122.860263628999974, 49.32240248100009 ], [ -122.859850801999954, 49.322401982000088 ], [ -122.859849269999984, 49.322941686000028 ], [ -122.859436438000017, 49.322941185000118 ], [ -122.859435669, 49.323211037000107 ], [ -122.85819716499999, 49.323209525000053 ], [ -122.858196390999964, 49.323479377000076 ], [ -122.85770996799998, 49.323478779000048 ], [ -122.857370715999977, 49.323478361000049 ], [ -122.857367597999882, 49.324557770000062 ], [ -122.856954751999922, 49.32455726000007 ], [ -122.856952407999955, 49.325366817000038 ], [ -122.857365258999948, 49.325367327000059 ], [ -122.857364479999944, 49.325637180000072 ], [ -122.857777335999927, 49.325637688000064 ], [ -122.85777549, 49.326278642 ], [ -122.856124023999911, 49.326285025000061 ], [ -122.856125128999977, 49.325905497000051 ], [ -122.855712271999948, 49.325904983000022 ], [ -122.855713060999918, 49.325635130000073 ], [ -122.855300205999981, 49.325634614000123 ], [ -122.855301787999963, 49.325094909000072 ], [ -122.85488893699997, 49.325094392000082 ], [ -122.85489290299995, 49.323745129000031 ], [ -122.85406722399992, 49.323744090000126 ], [ -122.854066426999964, 49.324013943000111 ], [ -122.853653584999961, 49.324013421000075 ], [ -122.853649586999936, 49.325362682000026 ], [ -122.854062438999946, 49.32536320400002 ], [ -122.854058450999943, 49.326712466000082 ], [ -122.852819859, 49.32671089500009 ] ], [ [ -122.858581303999983, 49.32240781200003 ], [ -122.858459914999969, 49.322362935000086 ], [ -122.858171757999983, 49.322507274000039 ], [ -122.85797684799995, 49.322759566000052 ], [ -122.857874100999965, 49.322974203000122 ], [ -122.85858972599999, 49.322526981000081 ], [ -122.858581303999983, 49.32240781200003 ] ], [ [ -122.858633877, 49.322102496000113 ], [ -122.858751863999885, 49.321879144000064 ], [ -122.858411408999956, 49.321932643000125 ], [ -122.85812520199994, 49.321850508000061 ], [ -122.858204957999973, 49.322007524000057 ], [ -122.858478591999983, 49.32211968900009 ], [ -122.858633877, 49.322102496000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4814000", "BldgCostT": "3320000", "sL_LossRatio": "0.818985501552002", "sL_AssetLoss": "25451", "sL_BldgLoss": "20844", "sL_StrLoss": "11576", "sL_NStrLoss": "9268", "sL_ContLoss": "4607", "geom_point": "0101000020E6100000E3CE7D2016B85EC0C1D7636441A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.875059785999966, 49.31337478000011 ], [ -122.876047926999917, 49.313258528000098 ], [ -122.877659259999959, 49.313339504000076 ], [ -122.877815893999951, 49.314312231000052 ], [ -122.877775193999966, 49.314618550000013 ], [ -122.877667134999967, 49.315599135000049 ], [ -122.876385186000036, 49.315674298000019 ], [ -122.874902489999926, 49.315706832000089 ], [ -122.874932357999953, 49.315264006000106 ], [ -122.875059785999966, 49.31337478000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.897535371976267", "sL_AssetLoss": "4382", "sL_BldgLoss": "3933", "sL_StrLoss": "2650", "sL_NStrLoss": "1283", "sL_ContLoss": "449", "geom_point": "0101000020E6100000D8E6CE650DB95EC02F075129BCAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891878113999923, 49.348179806000054 ], [ -122.892897689999984, 49.348117203000051 ], [ -122.8929786899999, 49.348621304000041 ], [ -122.89295786000001, 49.348668948000046 ], [ -122.891913519999903, 49.348638930000057 ], [ -122.891811019, 49.350165628000113 ], [ -122.890785000999955, 49.35090430600011 ], [ -122.890591200999921, 49.350902893000068 ], [ -122.890357697999974, 49.350642296000061 ], [ -122.89038840399995, 49.350110986000104 ], [ -122.890871106999938, 49.349275007000095 ], [ -122.891436686999953, 49.348790808000089 ], [ -122.89168649599999, 49.348250997000065 ], [ -122.891878113999923, 49.348179806000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9956667", "BldgCostT": "6866667", "sL_LossRatio": "0.83715081289859", "sL_AssetLoss": "55665", "sL_BldgLoss": "46600", "sL_StrLoss": "28260", "sL_NStrLoss": "18340", "sL_ContLoss": "9065", "geom_point": "0101000020E6100000AFBE91AB9EBA5EC07B8CEA5B03AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.912751450999906, 49.330505488000021 ], [ -122.912970288999929, 49.327222236000082 ], [ -122.913104602999937, 49.327157592000106 ], [ -122.914839094999977, 49.327194697000053 ], [ -122.914898398, 49.327100664000064 ], [ -122.915081245999957, 49.327105885000073 ], [ -122.915118775999971, 49.326542380000021 ], [ -122.915170204999953, 49.326277484000073 ], [ -122.91519388299993, 49.326256884000045 ], [ -122.920251684999968, 49.326401154000052 ], [ -122.919574498999935, 49.326820288000157 ], [ -122.91887069299996, 49.327161692000104 ], [ -122.918045188999983, 49.327808905000076 ], [ -122.917947409999925, 49.328141400000078 ], [ -122.918029722999933, 49.328429500000084 ], [ -122.918565805999918, 49.328798603000095 ], [ -122.918772499999974, 49.329077493000042 ], [ -122.918771518999947, 49.329635399000097 ], [ -122.918688600999971, 49.329770106000112 ], [ -122.918495199999981, 49.329833011000069 ], [ -122.916251209, 49.329930293000089 ], [ -122.91535778799998, 49.32981269700015 ], [ -122.914738118999963, 49.329821202000097 ], [ -122.913485507999951, 49.330189083000029 ], [ -122.912751450999906, 49.330505488000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70574500", "BldgCostT": "45460000", "sL_LossRatio": "0.880769746347131", "sL_AssetLoss": "201417", "sL_BldgLoss": "177402", "sL_StrLoss": "121194", "sL_NStrLoss": "56208", "sL_ContLoss": "24015", "geom_point": "0101000020E61000009B3DBFDEF3B95EC0F9E4D5F7E9A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896967946999965, 49.325815444000071 ], [ -122.896985836999988, 49.325548391000076 ], [ -122.893698846999968, 49.32545394800006 ], [ -122.893990095, 49.325290894000084 ], [ -122.894249963999968, 49.32482986300009 ], [ -122.894277197999884, 49.324691801000128 ], [ -122.894385700000015, 49.324467757000043 ], [ -122.894551031999981, 49.324292984000103 ], [ -122.894676465999936, 49.32393279000005 ], [ -122.894712246, 49.32384971000004 ], [ -122.895100133999932, 49.32337601100005 ], [ -122.895276162999934, 49.323186983000014 ], [ -122.895628419999966, 49.32294137800006 ], [ -122.895332393, 49.322791709000072 ], [ -122.895129203999929, 49.322621897000012 ], [ -122.895021704, 49.322336899000049 ], [ -122.895019142999971, 49.32201204200004 ], [ -122.895017790999987, 49.321841295000134 ], [ -122.894687708999982, 49.321020299000075 ], [ -122.894085675999932, 49.320488169000065 ], [ -122.897537782999933, 49.320587353000043 ], [ -122.89750178099996, 49.321124942000083 ], [ -122.900231221999974, 49.321203284000042 ], [ -122.90022533099993, 49.321291309000074 ], [ -122.901961501999907, 49.321341106000062 ], [ -122.901961987999925, 49.321096106000034 ], [ -122.902273075999958, 49.321096368000084 ], [ -122.902375115, 49.320940288 ], [ -122.902375873999958, 49.320556749000147 ], [ -122.902832385999915, 49.320557133000086 ], [ -122.903201904999946, 49.320350595000043 ], [ -122.903202028999914, 49.320287590000063 ], [ -122.903337166999933, 49.320287703000098 ], [ -122.903615059999979, 49.320175706000029 ], [ -122.903615364999922, 49.320018082000075 ], [ -122.904005353999978, 49.320018406000074 ], [ -122.904081635999944, 49.319987663000113 ], [ -122.904176234999952, 49.319928863000015 ], [ -122.904441332999966, 49.319838509000057 ], [ -122.904441505999927, 49.319748914000073 ], [ -122.90465708699999, 49.319749092000045 ], [ -122.904854475999954, 49.319665095000055 ], [ -122.904854832999945, 49.319479402000113 ], [ -122.905289988999982, 49.31947975900011 ], [ -122.905680758999921, 49.319313462000153 ], [ -122.905680955999955, 49.319210225000113 ], [ -122.905922880999981, 49.319210423000115 ], [ -122.906093895999945, 49.319137643000055 ], [ -122.9060942699999, 49.318940709000024 ], [ -122.90671872899999, 49.318941214000048 ], [ -122.906896734999961, 49.318865662000071 ], [ -122.90692002399993, 49.318860238000134 ], [ -122.90692038, 49.318671523000063 ], [ -122.907514701999943, 49.318672001000074 ], [ -122.907746175999989, 49.318564291000023 ], [ -122.907746301999907, 49.318497100000116 ], [ -122.906600467999951, 49.318464297000077 ], [ -122.906840578999919, 49.31486805200003 ], [ -122.91105588299996, 49.314988665000044 ], [ -122.911255661999959, 49.311991952000078 ], [ -122.9167467499999, 49.312148823000058 ], [ -122.916641977999973, 49.313723248000038 ], [ -122.916565599999956, 49.314870928000055 ], [ -122.915326577999963, 49.315483494 ], [ -122.914280601999906, 49.316139301000049 ], [ -122.913976699999964, 49.316184103000104 ], [ -122.913481397999988, 49.316417712000039 ], [ -122.913123983999952, 49.316750290000101 ], [ -122.912982951999936, 49.317057125000105 ], [ -122.912823264999957, 49.317057005000038 ], [ -122.912702214999953, 49.317165460000034 ], [ -122.912702010999951, 49.317279928000076 ], [ -122.912638106999978, 49.317326719000043 ], [ -122.912522323999909, 49.317326632000032 ], [ -122.91228877099999, 49.317535879000069 ], [ -122.912288688999979, 49.317582557000051 ], [ -122.912269927999901, 49.317596293000129 ], [ -122.912221379999892, 49.317596257000091 ], [ -122.91215677699995, 49.317654137000083 ], [ -122.912155023999944, 49.317680423000027 ], [ -122.911620901999967, 49.318071488000051 ], [ -122.910834587999915, 49.319033097000109 ], [ -122.909842508999986, 49.319958991000121 ], [ -122.909153499999917, 49.320749987000049 ], [ -122.907499404999953, 49.322062003000063 ], [ -122.906466412999976, 49.322699799000098 ], [ -122.905378480999929, 49.323229698000084 ], [ -122.903863596999912, 49.323795095000058 ], [ -122.902762096999965, 49.324090895000069 ], [ -122.902197403999935, 49.324413993000078 ], [ -122.901934994999976, 49.324629893000107 ], [ -122.901229807999954, 49.326122407000078 ], [ -122.900956446999913, 49.326424336000038 ], [ -122.900952968999917, 49.326422339000032 ], [ -122.900061389, 49.326132401000066 ], [ -122.896967946999965, 49.325815444000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29588999", "BldgCostT": "19724999", "sL_LossRatio": "0.808258974553135", "sL_AssetLoss": "122816.7", "sL_BldgLoss": "99267.7", "sL_StrLoss": "59575.7", "sL_NStrLoss": "39692", "sL_ContLoss": "23549", "geom_point": "0101000020E6100000C049AA2137BB5EC0AFC76DC964A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924089995999935, 49.323703092000038 ], [ -122.923728000999958, 49.323541199000069 ], [ -122.923424752999949, 49.323540999000045 ], [ -122.923425047999956, 49.323351549000066 ], [ -122.923200535999925, 49.323201362000113 ], [ -122.922934135, 49.322915163000047 ], [ -122.92342592199999, 49.322787498000046 ], [ -122.923426008999968, 49.322731439000066 ], [ -122.923641322999941, 49.322731581000077 ], [ -122.923838920999941, 49.322680285000082 ], [ -122.923839257999958, 49.322461859000029 ], [ -122.924252085999939, 49.322462130000133 ], [ -122.924252500999941, 49.32219227700007 ], [ -122.924925054999903, 49.322192715000085 ], [ -122.925493585999945, 49.320466412000073 ], [ -122.925494644999958, 49.319764404000104 ], [ -122.925780870999986, 49.319764587000087 ], [ -122.92590773399999, 49.319576876000092 ], [ -122.925908261999965, 49.319224962000128 ], [ -122.926145463999944, 49.319225113000051 ], [ -122.92618023499999, 49.319173662000019 ], [ -122.926321382999944, 49.319011647000082 ], [ -122.92632187, 49.318685519000091 ], [ -122.926605342999892, 49.318685700000117 ], [ -122.926688834999979, 49.318589862000088 ], [ -122.926513735, 49.31849446200011 ], [ -122.926588934999955, 49.318133163000049 ], [ -122.926402834000015, 49.317514063000083 ], [ -122.92597453599997, 49.317108463000075 ], [ -122.925802561999944, 49.316796212000092 ], [ -122.925499122999909, 49.316796017000101 ], [ -122.925500343999914, 49.315986457000093 ], [ -122.925087568999942, 49.315986190000054 ], [ -122.925089496999973, 49.314714075000104 ], [ -122.925089615, 49.314636923000073 ], [ -122.92504170799999, 49.314636891000077 ], [ -122.925037141999923, 49.314705698000083 ], [ -122.924975656999948, 49.315632099000034 ], [ -122.919629769999972, 49.315479799000101 ], [ -122.919894896999949, 49.315018999000074 ], [ -122.92055751, 49.314569801000061 ], [ -122.920657892999927, 49.314424057000082 ], [ -122.920749599999937, 49.314290908000018 ], [ -122.920764884999926, 49.31395839500005 ], [ -122.920145387999966, 49.313553111 ], [ -122.919609352999913, 49.313592217000121 ], [ -122.919659873999976, 49.312832297000092 ], [ -122.919723224999956, 49.311879356000077 ], [ -122.923015435999957, 49.311973184000074 ], [ -122.923109956999966, 49.310549807000122 ], [ -122.926160502999963, 49.310522341000144 ], [ -122.927638744999911, 49.310499081000067 ], [ -122.927661890999929, 49.310598703000096 ], [ -122.928019001999928, 49.311021485000033 ], [ -122.927111114999946, 49.311542598000123 ], [ -122.92673839099993, 49.311848406000109 ], [ -122.92664159099999, 49.312037117000067 ], [ -122.9266698, 49.312208184000092 ], [ -122.927149612999969, 49.312801990000033 ], [ -122.927700080999983, 49.313135198000097 ], [ -122.927700035999962, 49.313152150000107 ], [ -122.927699591999954, 49.313324013000056 ], [ -122.927010406999955, 49.313656609000063 ], [ -122.926873620999984, 49.313827200000077 ], [ -122.926885508999945, 49.314322102000062 ], [ -122.926526217999964, 49.314920640000011 ], [ -122.926493134999959, 49.314950162000038 ], [ -122.926350734999929, 49.315133062000051 ], [ -122.926327099000019, 49.315179382000053 ], [ -122.926326988999904, 49.315252525000083 ], [ -122.926237918999917, 49.315400901000046 ], [ -122.926209597999957, 49.315724998000107 ], [ -122.92671790299994, 49.316588708000076 ], [ -122.926717003999954, 49.316966398000069 ], [ -122.927080452999988, 49.317327834000082 ], [ -122.927113134999956, 49.317465062000075 ], [ -122.927138411, 49.317556173000128 ], [ -122.927182707999961, 49.317929086000063 ], [ -122.927260542999989, 49.317996438000087 ], [ -122.92727583599999, 49.318051562000143 ], [ -122.927415835999938, 49.318098163000094 ], [ -122.92761953499992, 49.318085262000125 ], [ -122.927884620999933, 49.318020888000035 ], [ -122.928779518999974, 49.317885299000082 ], [ -122.928789786999971, 49.317877506000066 ], [ -122.928954340999937, 49.31787760700005 ], [ -122.929051333999922, 49.317854562000029 ], [ -122.929157634999967, 49.31781196200005 ], [ -122.929212755999913, 49.317778595000107 ], [ -122.929213073999961, 49.317556235000062 ], [ -122.929371484999976, 49.317436004000072 ], [ -122.929812499999926, 49.316878499000026 ], [ -122.929964220999977, 49.316798809 ], [ -122.930039724999915, 49.316798855000116 ], [ -122.930039781999938, 49.316759122000057 ], [ -122.930240115999965, 49.316653897000073 ], [ -122.930724267999949, 49.316529413000048 ], [ -122.93095690399997, 49.316529552000141 ], [ -122.931246671999986, 49.316426056000125 ], [ -122.931629195999946, 49.31644761200009 ], [ -122.931863790999898, 49.316619002000103 ], [ -122.932129717999942, 49.317809621000031 ], [ -122.932102148999959, 49.317882264000076 ], [ -122.93210214799997, 49.317882714000085 ], [ -122.932058027, 49.317934005000104 ], [ -122.931889213999952, 49.318130207000138 ], [ -122.930264309999956, 49.318416988000095 ], [ -122.929289532999945, 49.319257961000133 ], [ -122.929210543999901, 49.31932174800005 ], [ -122.929210538999925, 49.319326109 ], [ -122.929066120999934, 49.319450700000104 ], [ -122.928460082999905, 49.319513096000072 ], [ -122.928267809999937, 49.319612085000109 ], [ -122.927839712999969, 49.320259393000065 ], [ -122.927769208999962, 49.320305554000136 ], [ -122.927720114999957, 49.320305524000098 ], [ -122.927557703999923, 49.320431254000063 ], [ -122.927557684999925, 49.320444044000091 ], [ -122.927428085999935, 49.32052889400007 ], [ -122.927300134999882, 49.320575114000029 ], [ -122.927284934999932, 49.320575104000049 ], [ -122.927144613999943, 49.320618185000107 ], [ -122.927144595999934, 49.320631299000084 ], [ -122.926533077, 49.320852193000064 ], [ -122.92655969099998, 49.320996299000107 ], [ -122.926731165000021, 49.321046998000099 ], [ -122.926731144, 49.321061422000064 ], [ -122.92682122399999, 49.321073626000064 ], [ -122.927261190999957, 49.321203710000063 ], [ -122.927261501999965, 49.321536396000042 ], [ -122.925487974999953, 49.32300264000002 ], [ -122.925437826999925, 49.32300260800006 ], [ -122.925151265999915, 49.323191483000102 ], [ -122.924766692999967, 49.32339669800011 ], [ -122.924340086999919, 49.323477510000032 ], [ -122.924089995999935, 49.323703092000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11902084", "BldgCostT": "8208334", "sL_LossRatio": "0.879796163069544", "sL_AssetLoss": "43368", "sL_BldgLoss": "38155", "sL_StrLoss": "25710", "sL_NStrLoss": "12445", "sL_ContLoss": "5213", "geom_point": "0101000020E6100000FFD92479CDB85EC03A1AEA2499AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890257205999916, 49.345158904000051 ], [ -122.890261810999945, 49.345090335000108 ], [ -122.890521512999925, 49.345299501000056 ], [ -122.890534201999969, 49.345776102000094 ], [ -122.888630980999949, 49.34760019600003 ], [ -122.888520794, 49.347753287000067 ], [ -122.888588706999926, 49.348023188000056 ], [ -122.888808090999973, 49.348113110000142 ], [ -122.889414198999972, 49.348131697000042 ], [ -122.889482808999915, 49.348185784000094 ], [ -122.889234180999964, 49.34860840100005 ], [ -122.88921979499996, 49.348797190000042 ], [ -122.889384600999918, 49.349058293000091 ], [ -122.889024388999928, 49.350092306000072 ], [ -122.888554585999927, 49.350451704000051 ], [ -122.888168291999961, 49.351207102000053 ], [ -122.887394919999934, 49.352267704000077 ], [ -122.887084219999949, 49.352538663000104 ], [ -122.885542079999979, 49.352494252000035 ], [ -122.885784001999966, 49.348898236000089 ], [ -122.885879626999952, 49.348900991000086 ], [ -122.885987684999961, 49.347294536000106 ], [ -122.886005105999942, 49.347295038000027 ], [ -122.886137990999885, 49.345319335000049 ], [ -122.886536361999958, 49.345330809000075 ], [ -122.88655508899997, 49.345052343000127 ], [ -122.890257205999916, 49.345158904000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10954750", "BldgCostT": "7555000", "sL_LossRatio": "0.859536136717599", "sL_AssetLoss": "47514", "sL_BldgLoss": "40840", "sL_StrLoss": "25980", "sL_NStrLoss": "14860", "sL_ContLoss": "6674", "geom_point": "0101000020E6100000D1F654F3C1BA5EC02EC7F16433A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.916457614, 49.322437594000107 ], [ -122.915702502999935, 49.321330584000101 ], [ -122.915592888999953, 49.320782003000076 ], [ -122.915813086999947, 49.320341297000084 ], [ -122.915883105, 49.319702611000011 ], [ -122.916545686999896, 49.319280396000053 ], [ -122.917136509999949, 49.319136806000088 ], [ -122.917384501999948, 49.318974995000062 ], [ -122.917795723999959, 49.318295792000164 ], [ -122.919383133999986, 49.318341068000024 ], [ -122.919303962999933, 49.319531653000062 ], [ -122.919325708999921, 49.319532273000092 ], [ -122.9191982, 49.321449658000041 ], [ -122.920299393999983, 49.321481051000021 ], [ -122.920060292999921, 49.325077291000134 ], [ -122.915805058, 49.32495591800005 ], [ -122.915806302999982, 49.324937807000055 ], [ -122.91622, 49.324560297000119 ], [ -122.917252604999959, 49.323877291000088 ], [ -122.917267798999958, 49.32357148800007 ], [ -122.917020609999938, 49.323229491000092 ], [ -122.917034906999945, 49.322806807000049 ], [ -122.916457614, 49.322437594000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50815917", "BldgCostT": "31361667", "sL_LossRatio": "0.839047987861782", "sL_AssetLoss": "157519", "sL_BldgLoss": "132166", "sL_StrLoss": "83740", "sL_NStrLoss": "48426", "sL_ContLoss": "25353", "geom_point": "0101000020E6100000D6C4A7A5DEB85EC0E97ACB6AF4AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.887882416, 49.342012440000083 ], [ -122.887937807999947, 49.341188308 ], [ -122.887883467999984, 49.341186743000073 ], [ -122.887907843999983, 49.340824047000147 ], [ -122.887306368999958, 49.340806729000093 ], [ -122.887334425999967, 49.340389378000069 ], [ -122.886595969999973, 49.340368111 ], [ -122.886694083999942, 49.338908878000048 ], [ -122.884965403, 49.338859072000098 ], [ -122.88500496799999, 49.338270921000102 ], [ -122.883756797999979, 49.338234941000032 ], [ -122.883821185999935, 49.337278144000095 ], [ -122.883769155999985, 49.337276644000028 ], [ -122.884011135999955, 49.333680550000068 ], [ -122.884637200999961, 49.333698599000108 ], [ -122.884670736999951, 49.333200065 ], [ -122.884916338999972, 49.333207145000124 ], [ -122.884932238999951, 49.332970771000056 ], [ -122.887169098999948, 49.333035223000081 ], [ -122.887178252999917, 49.33289902500006 ], [ -122.888253622999983, 49.332929994000047 ], [ -122.88830154599998, 49.33221675000005 ], [ -122.888956662999988, 49.332235611000094 ], [ -122.889022871999941, 49.331249965000097 ], [ -122.889399663999924, 49.331260811000092 ], [ -122.889425376999952, 49.330877974000082 ], [ -122.889915450999965, 49.33089207900013 ], [ -122.88992126, 49.330805586000089 ], [ -122.890187736999948, 49.330813254000184 ], [ -122.890212267999956, 49.330447892000052 ], [ -122.890479393999939, 49.330455579000095 ], [ -122.89049864799992, 49.330168803000042 ], [ -122.894692476999964, 49.330171455000063 ], [ -122.895876919, 49.330172174000054 ], [ -122.89459888599994, 49.331270804000035 ], [ -122.894241290999901, 49.331396493000064 ], [ -122.893896088999938, 49.332133691000088 ], [ -122.892959323999932, 49.332483605000107 ], [ -122.892435696999911, 49.332851988000101 ], [ -122.891399688999954, 49.334065497000033 ], [ -122.890365497999966, 49.335044908000022 ], [ -122.889773389999959, 49.335179302000107 ], [ -122.889058384999942, 49.335196497000055 ], [ -122.888590186999963, 49.335124108000109 ], [ -122.888384198999944, 49.335168901000067 ], [ -122.887171096999964, 49.335815398000072 ], [ -122.886881609999961, 49.336102504000038 ], [ -122.887127501999956, 49.33631019600012 ], [ -122.887692496999989, 49.336400494000024 ], [ -122.888049192000025, 49.336544706000112 ], [ -122.888613110999984, 49.336959286000081 ], [ -122.88916249, 49.337922313000057 ], [ -122.889477194999941, 49.338102487000135 ], [ -122.889917784999923, 49.338534606000067 ], [ -122.891320912999944, 49.339030705000035 ], [ -122.891140397999919, 49.339516093000022 ], [ -122.89126349199995, 49.339732204000079 ], [ -122.891221496999918, 49.33994800500011 ], [ -122.890229451999929, 49.342079987000027 ], [ -122.887882416, 49.342012440000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.853797365425272", "sL_AssetLoss": "6149", "sL_BldgLoss": "5250", "sL_StrLoss": "3170", "sL_NStrLoss": "2080", "sL_ContLoss": "899", "geom_point": "0101000020E610000040E61C9FFDB85EC0DB51397953A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.891046938999978, 49.313962445000108 ], [ -122.891058070999975, 49.313960153000117 ], [ -122.891025606999946, 49.314443972000099 ], [ -122.8909201, 49.31601622500007 ], [ -122.889725994999964, 49.315981852000078 ], [ -122.890001491999925, 49.315188888000115 ], [ -122.890059293999954, 49.314884870000071 ], [ -122.890082408999945, 49.314763299000042 ], [ -122.89005089599999, 49.314474186000048 ], [ -122.890017533000034, 49.314406998000038 ], [ -122.889947912999929, 49.314266695000065 ], [ -122.890060011999978, 49.314140410000071 ], [ -122.890035520999945, 49.314130589000101 ], [ -122.891046938999978, 49.313962445000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152198917", "BldgCostT": "101811667", "sL_LossRatio": "0.744094204205287", "sL_AssetLoss": "1663620", "sL_BldgLoss": "1237890", "sL_StrLoss": "617890", "sL_NStrLoss": "620000", "sL_ContLoss": "425730", "geom_point": "0101000020E61000004FD5C95B66B65EC08FF42F6A73A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84512443499996, 49.311770686000166 ], [ -122.844937461999947, 49.311551505000068 ], [ -122.844360002999935, 49.310874516000062 ], [ -122.84409385399999, 49.310558504000021 ], [ -122.84359778799994, 49.309969498000051 ], [ -122.843108583999978, 49.309458797000111 ], [ -122.842452662999975, 49.308791034000144 ], [ -122.840598906999972, 49.306629788000102 ], [ -122.840077206999979, 49.306028785000066 ], [ -122.839763693999899, 49.305667605000046 ], [ -122.8374727, 49.303065600000139 ], [ -122.836463527999967, 49.301930949000081 ], [ -122.836388387999975, 49.301846492000095 ], [ -122.835748105999954, 49.301138590000043 ], [ -122.835721330999959, 49.301108980000052 ], [ -122.835608393999948, 49.300984090000021 ], [ -122.8354806, 49.300720904000109 ], [ -122.835475147999944, 49.300603126000063 ], [ -122.83544720899998, 49.299998116000083 ], [ -122.835436219999977, 49.299760204000087 ], [ -122.83558349099999, 49.299646328000037 ], [ -122.835728202999945, 49.299537210000032 ], [ -122.835933605999983, 49.299380974 ], [ -122.836008222999965, 49.299324235000036 ], [ -122.839695997999954, 49.299650677000017 ], [ -122.839694934999926, 49.299977899000062 ], [ -122.840107575999937, 49.299978470000042 ], [ -122.840104083999975, 49.301057883000105 ], [ -122.839691435999924, 49.301057312000111 ], [ -122.839691257999974, 49.301111784000057 ], [ -122.840772085999944, 49.301143409000112 ], [ -122.84074987299999, 49.301469252000089 ], [ -122.841072894999954, 49.301478701000086 ], [ -122.841055695999955, 49.301731027000059 ], [ -122.841474995999931, 49.301743292000097 ], [ -122.841420698999926, 49.302539984000141 ], [ -122.841725094999958, 49.302548887000114 ], [ -122.8413343499999, 49.305881820000067 ], [ -122.84883130799993, 49.305872471000058 ], [ -122.849099084999963, 49.305872634000117 ], [ -122.84986333699996, 49.305873118000058 ], [ -122.850218628000022, 49.306952476000049 ], [ -122.850646065999968, 49.308216537000135 ], [ -122.851454629000017, 49.30821197900007 ], [ -122.851864461999952, 49.308181634000036 ], [ -122.851821309999977, 49.308816794000094 ], [ -122.84957164199993, 49.308751200000103 ], [ -122.849569556999981, 49.309436075000079 ], [ -122.849156839, 49.309435537000148 ], [ -122.849156014999949, 49.30970539100008 ], [ -122.848330569999931, 49.309704310000015 ], [ -122.848329742999937, 49.309974163000042 ], [ -122.84822082399999, 49.309974020000034 ], [ -122.848152095999936, 49.310984402000038 ], [ -122.848290314999943, 49.310988434000066 ], [ -122.84827583400002, 49.311201338000025 ], [ -122.849936869999965, 49.311249791000073 ], [ -122.849896905999941, 49.311837637000068 ], [ -122.851215622, 49.311876086000019 ], [ -122.851229812, 49.311667293000042 ], [ -122.85212394399997, 49.31169335400007 ], [ -122.852236462999912, 49.31003711200006 ], [ -122.852757623999977, 49.310052299000112 ], [ -122.85288983599996, 49.30810570900011 ], [ -122.856852420999957, 49.307812197000047 ], [ -122.857919103, 49.307796899000074 ], [ -122.858370205999904, 49.307783184000087 ], [ -122.858546613999948, 49.307694008000105 ], [ -122.859292536999959, 49.306867851 ], [ -122.860447958999913, 49.305588047000079 ], [ -122.864370249999965, 49.305679 ], [ -122.864725138999987, 49.305678563000093 ], [ -122.867714913999976, 49.305715096000093 ], [ -122.867484872999938, 49.309118161000093 ], [ -122.867220018999916, 49.308888866000082 ], [ -122.866631165999976, 49.308179961000043 ], [ -122.866348666999926, 49.308045652000061 ], [ -122.865974007999938, 49.307952801000063 ], [ -122.861899082999926, 49.307890331000088 ], [ -122.861415492999953, 49.3078826 ], [ -122.860781131999943, 49.307968645000066 ], [ -122.860357748999945, 49.308312168000029 ], [ -122.859957532999942, 49.308712633000084 ], [ -122.859560994999981, 49.309109460000116 ], [ -122.858757724, 49.309913244000043 ], [ -122.858281403999953, 49.3103898620001 ], [ -122.858112105999936, 49.31055929700009 ], [ -122.856891445999963, 49.311784895000102 ], [ -122.85602078099997, 49.312661106000071 ], [ -122.855912718999917, 49.312769824000071 ], [ -122.855774301999944, 49.313026122000039 ], [ -122.855701486999934, 49.313349203000051 ], [ -122.855698185999984, 49.313843666 ], [ -122.855696978999944, 49.313976233000069 ], [ -122.855696458999944, 49.314030204000048 ], [ -122.855691710999977, 49.314547 ], [ -122.852988904999961, 49.314546699000061 ], [ -122.852148186999983, 49.314546355000111 ], [ -122.851281369999953, 49.314545989000074 ], [ -122.851076982999956, 49.314545894000098 ], [ -122.850428318999889, 49.314545795000079 ], [ -122.847782605999967, 49.314545313000075 ], [ -122.847586091999943, 49.314502610000105 ], [ -122.847450193999975, 49.314437405000049 ], [ -122.84738068299994, 49.314355063000107 ], [ -122.847106085999911, 49.31403 ], [ -122.846364406999982, 49.313151809000061 ], [ -122.846002940999981, 49.312751527000088 ], [ -122.845246587999924, 49.311913906000051 ], [ -122.84512443499996, 49.311770686000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770001", "BldgCostT": "2600001", "sL_LossRatio": "0.743147208121827", "sL_AssetLoss": "59100", "sL_BldgLoss": "43920", "sL_StrLoss": "20010", "sL_NStrLoss": "23910", "sL_ContLoss": "15180", "geom_point": "0101000020E6100000250DA816D5B75EC04C3B4E343CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872063770999972, 49.307396910000051 ], [ -122.872091151999939, 49.306991276000062 ], [ -122.871052259999885, 49.306961185000105 ], [ -122.871133584999953, 49.30575676900002 ], [ -122.87348320299999, 49.305785347000025 ], [ -122.873487366999967, 49.306054494000151 ], [ -122.873510884000012, 49.307438810000072 ], [ -122.872063770999972, 49.307396910000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34974999", "BldgCostT": "21699999", "sL_LossRatio": "0.685306653735229", "sL_AssetLoss": "391810", "sL_BldgLoss": "268510", "sL_StrLoss": "126900", "sL_NStrLoss": "141610", "sL_ContLoss": "123300", "geom_point": "0101000020E61000002F4080B123B65EC0205AF12E13A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.850218628000022, 49.306952476000049 ], [ -122.84986333699996, 49.305873118000058 ], [ -122.849099084999963, 49.305872634000117 ], [ -122.84883130799993, 49.305872471000058 ], [ -122.8413343499999, 49.305881820000067 ], [ -122.841725094999958, 49.302548887000114 ], [ -122.842384512999942, 49.302568169000011 ], [ -122.84234801299999, 49.303103867000118 ], [ -122.842621539, 49.303111864000073 ], [ -122.842599876999955, 49.303429801000085 ], [ -122.842916546999959, 49.303439058000038 ], [ -122.842884784999981, 49.303905294000096 ], [ -122.843242464999932, 49.303915751000055 ], [ -122.843215032999964, 49.304318473000151 ], [ -122.847760230999981, 49.304451231000016 ], [ -122.847716522999917, 49.305093768000084 ], [ -122.851249111999948, 49.305196817000144 ], [ -122.851152636999984, 49.305813630000067 ], [ -122.851454629000017, 49.30821197900007 ], [ -122.850646065999968, 49.308216537000135 ], [ -122.850218628000022, 49.306952476000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39715333", "BldgCostT": "25948333", "sL_LossRatio": "0.699402193092482", "sL_AssetLoss": "470386", "sL_BldgLoss": "328989", "sL_StrLoss": "154299", "sL_NStrLoss": "174690", "sL_ContLoss": "141397", "geom_point": "0101000020E610000092E97530C7B55EC09CADDDF2E8A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841759864999943, 49.299441035000015 ], [ -122.841763320999945, 49.298361622000108 ], [ -122.840938068999932, 49.29836048900011 ], [ -122.84093893599993, 49.298090636000012 ], [ -122.840113687999988, 49.298089497000078 ], [ -122.840114559999975, 49.297819643000082 ], [ -122.839701936999944, 49.29781907200001 ], [ -122.839702812999988, 49.297549218000078 ], [ -122.838877573, 49.297548071000065 ], [ -122.838878453999911, 49.297278217000034 ], [ -122.83764059899994, 49.297276484000058 ], [ -122.837641485999882, 49.297006631000066 ], [ -122.83722887, 49.297006050000036 ], [ -122.837227981999916, 49.297275904000116 ], [ -122.83523652, 49.297273083000043 ], [ -122.835235166999936, 49.297273081000128 ], [ -122.83523632899994, 49.297270705000123 ], [ -122.835254551999952, 49.297025068000039 ], [ -122.835270742999981, 49.296806879000073 ], [ -122.835783397999961, 49.296749833000071 ], [ -122.837178700999957, 49.296593412000036 ], [ -122.837957879999919, 49.296619842000148 ], [ -122.838618151, 49.296716658000094 ], [ -122.839283198999965, 49.296904565000034 ], [ -122.840467655999973, 49.297380049000118 ], [ -122.840304610999922, 49.296887580000018 ], [ -122.840460309999969, 49.296761606000054 ], [ -122.840539185999916, 49.296633189000076 ], [ -122.840572288999951, 49.296449498000044 ], [ -122.840533113, 49.296198902000071 ], [ -122.840466313999954, 49.296088804000085 ], [ -122.840345084999953, 49.295931203000031 ], [ -122.840074708999964, 49.295762012000118 ], [ -122.839711115999989, 49.295649603000129 ], [ -122.83947288199991, 49.295614704000108 ], [ -122.838893601999956, 49.295641882000112 ], [ -122.838513780999946, 49.295625394000041 ], [ -122.835558992999893, 49.29510279400013 ], [ -122.83582008499999, 49.294801497000059 ], [ -122.836230698999969, 49.294466702000108 ], [ -122.836514178999963, 49.294300652000054 ], [ -122.836553020999958, 49.29427789200011 ], [ -122.83699599799999, 49.294092695000096 ], [ -122.837825352999985, 49.293831966 ], [ -122.837834781999931, 49.293828991000041 ], [ -122.838325191999942, 49.293552398000045 ], [ -122.838672937999959, 49.293071262000048 ], [ -122.838715417999978, 49.293012492000067 ], [ -122.840001902000012, 49.29346185400005 ], [ -122.840563029999913, 49.29380256900005 ], [ -122.841031458, 49.294191946000041 ], [ -122.843578234999953, 49.296507727000112 ], [ -122.843840540999977, 49.29689554100004 ], [ -122.843915063999958, 49.297275166000126 ], [ -122.843906866999987, 49.297537083000037 ], [ -122.843827498999929, 49.297794196000055 ], [ -122.843522235999956, 49.298197876000074 ], [ -122.843334361, 49.298372544000124 ], [ -122.84318384699999, 49.298360935000083 ], [ -122.843064209999966, 49.298422301000116 ], [ -122.843378251, 49.298564530000085 ], [ -122.844129089999939, 49.298904546000117 ], [ -122.843824749999925, 49.298904135000036 ], [ -122.84382389699999, 49.299173988000135 ], [ -122.843411264999943, 49.299173430000067 ], [ -122.843410409999976, 49.299443284000112 ], [ -122.841759864999943, 49.299441035000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12227083", "BldgCostT": "6958333", "sL_LossRatio": "0.675999042833214", "sL_AssetLoss": "83580", "sL_BldgLoss": "56500", "sL_StrLoss": "28670", "sL_NStrLoss": "27830", "sL_ContLoss": "27080", "geom_point": "0101000020E6100000045F87207DB55EC0BBD76A8B42A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.835164008999982, 49.299376600000073 ], [ -122.834258818999984, 49.298980693000075 ], [ -122.833944827999929, 49.298745391000125 ], [ -122.83361874799999, 49.298285368000059 ], [ -122.834379183999928, 49.298083364000064 ], [ -122.834782596999958, 49.297874468 ], [ -122.834847694999951, 49.297812236000041 ], [ -122.83516309399999, 49.297812687000068 ], [ -122.835158592999974, 49.299161953000059 ], [ -122.835388208999916, 49.299162281000108 ], [ -122.838459662999966, 49.29916661500004 ], [ -122.838458778999922, 49.299436468000081 ], [ -122.839696686999943, 49.299438192000089 ], [ -122.839695997999954, 49.299650677000017 ], [ -122.836008222999965, 49.299324235000036 ], [ -122.835933605999983, 49.299380974 ], [ -122.835728202999945, 49.299537210000032 ], [ -122.83558349099999, 49.299646328000037 ], [ -122.835436219999977, 49.299760204000087 ], [ -122.835386634999949, 49.299628749000092 ], [ -122.835369911000015, 49.299584397000118 ], [ -122.835335952999955, 49.299550144000087 ], [ -122.835164008999982, 49.299376600000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168780250", "BldgCostT": "114895000", "sL_LossRatio": "0.77579639631597", "sL_AssetLoss": "1344180", "sL_BldgLoss": "1042810", "sL_StrLoss": "520860", "sL_NStrLoss": "521950", "sL_ContLoss": "301370", "geom_point": "0101000020E61000008579C9DE56B55EC0D52F09FED4A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.837957879999919, 49.296619842000148 ], [ -122.837178700999957, 49.296593412000036 ], [ -122.835783397999961, 49.296749833000071 ], [ -122.835479226999951, 49.29671388800007 ], [ -122.83533889399996, 49.296614293000069 ], [ -122.835270121999912, 49.296473537000061 ], [ -122.835267153999951, 49.295852762000038 ], [ -122.835253171, 49.295852309000118 ], [ -122.834848810999944, 49.295837813000013 ], [ -122.83454879599995, 49.295862297000049 ], [ -122.834022114, 49.295964006000119 ], [ -122.832857116999946, 49.296050604000136 ], [ -122.83224349699999, 49.296034394000124 ], [ -122.830484596999938, 49.295858404000057 ], [ -122.829160474999966, 49.295738492000062 ], [ -122.828020018999922, 49.295706804000126 ], [ -122.82753259499998, 49.295756387000104 ], [ -122.827226305999915, 49.295711408000074 ], [ -122.827039898999928, 49.295623012000064 ], [ -122.826883403999943, 49.295458092000089 ], [ -122.826876609999957, 49.2951966030001 ], [ -122.827017880999932, 49.294839491000062 ], [ -122.827311391999928, 49.29390680300002 ], [ -122.827442992, 49.293751198000081 ], [ -122.827753708999921, 49.293591907000057 ], [ -122.827955599999882, 49.293795115000073 ], [ -122.828286124000016, 49.293988602000056 ], [ -122.829114488999906, 49.294239903000111 ], [ -122.830624004999919, 49.294684185000058 ], [ -122.832046407999911, 49.295096194000031 ], [ -122.83219189399999, 49.295140112000048 ], [ -122.832774579999935, 49.295164408000105 ], [ -122.832816387999969, 49.295161749000044 ], [ -122.834662329999958, 49.295045007000077 ], [ -122.835160798999979, 49.295054186000151 ], [ -122.835558992999893, 49.29510279400013 ], [ -122.838513780999946, 49.295625394000041 ], [ -122.838893601999956, 49.295641882000112 ], [ -122.83947288199991, 49.295614704000108 ], [ -122.839711115999989, 49.295649603000129 ], [ -122.840074708999964, 49.295762012000118 ], [ -122.840345084999953, 49.295931203000031 ], [ -122.840466313999954, 49.296088804000085 ], [ -122.840533113, 49.296198902000071 ], [ -122.840572288999951, 49.296449498000044 ], [ -122.840539185999916, 49.296633189000076 ], [ -122.840460309999969, 49.296761606000054 ], [ -122.840304610999922, 49.296887580000018 ], [ -122.840467655999973, 49.297380049000118 ], [ -122.839283198999965, 49.296904565000034 ], [ -122.838618151, 49.296716658000094 ], [ -122.837957879999919, 49.296619842000148 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "356433249", "BldgCostT": "236739999", "sL_LossRatio": "0.740035028517934", "sL_AssetLoss": "3863709", "sL_BldgLoss": "2859280", "sL_StrLoss": "1426560", "sL_NStrLoss": "1432720", "sL_ContLoss": "1004429", "geom_point": "0101000020E61000005AAB7EBE10B55EC05F9EB57804A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.830662153999924, 49.286742127000089 ], [ -122.830662887999921, 49.286527906000032 ], [ -122.830316638999989, 49.286517741000104 ], [ -122.830092412999988, 49.286317903000082 ], [ -122.829984303999964, 49.286038710000057 ], [ -122.830017619999964, 49.285917590000032 ], [ -122.830022014999926, 49.285919997000043 ], [ -122.83003763899994, 49.28592864200008 ], [ -122.830142590999927, 49.285986555000044 ], [ -122.830203202999897, 49.286020013000048 ], [ -122.830263645999977, 49.286050182000125 ], [ -122.831330271999946, 49.286582795000093 ], [ -122.832532193999924, 49.287182890000025 ], [ -122.832845812999921, 49.287421803000036 ], [ -122.833088188999952, 49.287697403000081 ], [ -122.833297297999934, 49.288097197000056 ], [ -122.833400797999957, 49.2893993100001 ], [ -122.83292071599999, 49.289383402000041 ], [ -122.832311286999968, 49.289409688000092 ], [ -122.831692195999892, 49.289556410000031 ], [ -122.831183304999968, 49.289821617000072 ], [ -122.830940091999935, 49.290120691000027 ], [ -122.830905396, 49.290467491000044 ], [ -122.831059216999947, 49.290732293000062 ], [ -122.831326872999966, 49.290939294000076 ], [ -122.831823514999968, 49.291216005000088 ], [ -122.832119084999945, 49.291618292000123 ], [ -122.832085584999945, 49.291908288000087 ], [ -122.831897687, 49.292182104000034 ], [ -122.831507913999971, 49.292413890000034 ], [ -122.830981112999922, 49.292537983000045 ], [ -122.830898585999932, 49.292533149000043 ], [ -122.830522418000015, 49.29251109800007 ], [ -122.829481119999912, 49.292196710000091 ], [ -122.829087783999952, 49.292158105000134 ], [ -122.82907176599997, 49.292158761000067 ], [ -122.828894804999919, 49.29216598300011 ], [ -122.828593975999979, 49.292231478000083 ], [ -122.828424416999923, 49.292268408000062 ], [ -122.827987019999938, 49.292471702000036 ], [ -122.827692707000011, 49.292774799000028 ], [ -122.827577800999933, 49.292987596000046 ], [ -122.827646203999961, 49.293433808000096 ], [ -122.827753708999921, 49.293591907000057 ], [ -122.827442992, 49.293751198000081 ], [ -122.827311391999928, 49.29390680300002 ], [ -122.827017880999932, 49.294839491000062 ], [ -122.826876609999957, 49.2951966030001 ], [ -122.826883403999943, 49.295458092000089 ], [ -122.827039898999928, 49.295623012000064 ], [ -122.827226305999915, 49.295711408000074 ], [ -122.82753259499998, 49.295756387000104 ], [ -122.828020018999922, 49.295706804000126 ], [ -122.829160474999966, 49.295738492000062 ], [ -122.830484596999938, 49.295858404000057 ], [ -122.83224349699999, 49.296034394000124 ], [ -122.832857116999946, 49.296050604000136 ], [ -122.834022114, 49.295964006000119 ], [ -122.83454879599995, 49.295862297000049 ], [ -122.834848810999944, 49.295837813000013 ], [ -122.835253171, 49.295852309000118 ], [ -122.835267153999951, 49.295852762000038 ], [ -122.835270121999912, 49.296473537000061 ], [ -122.83533889399996, 49.296614293000069 ], [ -122.835479226999951, 49.29671388800007 ], [ -122.835783397999961, 49.296749833000071 ], [ -122.835270742999981, 49.296806879000073 ], [ -122.835254551999952, 49.297025068000039 ], [ -122.83523632899994, 49.297270705000123 ], [ -122.835235166999936, 49.297273081000128 ], [ -122.835164893999931, 49.297272980000059 ], [ -122.835164411999955, 49.297417535000115 ], [ -122.83510308299995, 49.297542746000069 ], [ -122.834751374999939, 49.297542244000056 ], [ -122.834750470999921, 49.297812098000023 ], [ -122.834847694999951, 49.297812236000041 ], [ -122.834782596999958, 49.297874468 ], [ -122.834379183999928, 49.298083364000064 ], [ -122.83361874799999, 49.298285368000059 ], [ -122.832890122999984, 49.298484675000068 ], [ -122.832614735, 49.298611786000045 ], [ -122.832306699999961, 49.298832377000082 ], [ -122.832059100999928, 49.299135994000025 ], [ -122.831954792999923, 49.299453593000109 ], [ -122.832058798999981, 49.299844001000089 ], [ -122.832166860999948, 49.300010386000061 ], [ -122.832189395999947, 49.300045100000034 ], [ -122.832431195999945, 49.300269284000102 ], [ -122.832953644999961, 49.300555470000077 ], [ -122.833213303999941, 49.300697694000064 ], [ -122.833443009999968, 49.300857503000032 ], [ -122.833653799999965, 49.301092511000029 ], [ -122.833706752999944, 49.301167769000131 ], [ -122.833811806999947, 49.301317011000044 ], [ -122.83392768299997, 49.30171309500016 ], [ -122.833947117999955, 49.301993889000123 ], [ -122.833883602999919, 49.302318996000139 ], [ -122.833668294999953, 49.302652297000115 ], [ -122.833074989999886, 49.303285287000037 ], [ -122.832394501999943, 49.303784259000032 ], [ -122.831975916999937, 49.304033211000039 ], [ -122.831671984999929, 49.304194546000055 ], [ -122.831256253999939, 49.304301278000089 ], [ -122.830795281999968, 49.304345415000085 ], [ -122.830397162999958, 49.304335521000091 ], [ -122.83035205500002, 49.304131510000097 ], [ -122.830254125999943, 49.303974620000055 ], [ -122.830059229999975, 49.303787823000043 ], [ -122.829950533999963, 49.303627908000067 ], [ -122.829895623999931, 49.303465005000071 ], [ -122.829823578999964, 49.302868297000046 ], [ -122.829579554999953, 49.302275619000064 ], [ -122.829457022999947, 49.30209640200011 ], [ -122.829260698999988, 49.301950988000044 ], [ -122.82862447199993, 49.301742197000124 ], [ -122.828301293, 49.301603004000107 ], [ -122.828132382999911, 49.301458405000069 ], [ -122.828020851999909, 49.301319991000035 ], [ -122.827853382999976, 49.301115092000089 ], [ -122.827715000999959, 49.301027237000014 ], [ -122.827520324999981, 49.300958455000064 ], [ -122.827394487999982, 49.300945756000061 ], [ -122.82725673000003, 49.300931800000043 ], [ -122.82652824199999, 49.300947341000018 ], [ -122.823930702999974, 49.301006104000059 ], [ -122.823203580999945, 49.30108199000005 ], [ -122.822744230999945, 49.30108290800009 ], [ -122.822796289999957, 49.300519674000093 ], [ -122.822844467999943, 49.300371128000087 ], [ -122.822853803999976, 49.300342466000089 ], [ -122.82290455699993, 49.300218548000053 ], [ -122.823017494999988, 49.299829878000047 ], [ -122.823100671999896, 49.299520732000126 ], [ -122.823161631999952, 49.299278168000079 ], [ -122.823295291999926, 49.299196998000035 ], [ -122.823330512999917, 49.29911168400011 ], [ -122.823629286999946, 49.29838799900007 ], [ -122.823739722999946, 49.297565842000047 ], [ -122.823807108999986, 49.297064085000052 ], [ -122.823817546000015, 49.296986382000043 ], [ -122.824437798999952, 49.296987326000156 ], [ -122.824447071999941, 49.294376669 ], [ -122.824498219999953, 49.294288871000077 ], [ -122.824859976999903, 49.294289420000069 ], [ -122.824861887999958, 49.293749712000064 ], [ -122.825274475999962, 49.293750337000127 ], [ -122.825276383999963, 49.293210631000051 ], [ -122.825688965999973, 49.293211253000024 ], [ -122.825689919999888, 49.292941400000089 ], [ -122.826102499999962, 49.292942021000052 ], [ -122.826103447999984, 49.292672168000081 ], [ -122.826516027999929, 49.292672788000154 ], [ -122.826517922999983, 49.292133081000067 ], [ -122.826930495999932, 49.292133700000143 ], [ -122.82693333, 49.291324139000068 ], [ -122.827345897999948, 49.291324756000058 ], [ -122.827347783, 49.290785049000036 ], [ -122.827760345999963, 49.290785665000051 ], [ -122.827761286999973, 49.29051581100002 ], [ -122.828173846999931, 49.290516425000114 ], [ -122.82817478599999, 49.290246572000051 ], [ -122.828587344999931, 49.290247184000059 ], [ -122.828588100999966, 49.290028870000057 ], [ -122.829516722000022, 49.289780101000126 ], [ -122.829827037999962, 49.289663271000101 ], [ -122.829826877999977, 49.289709306000091 ], [ -122.830239433, 49.289709913000117 ], [ -122.83024126, 49.289177543000044 ], [ -122.830244663999935, 49.289170211000013 ], [ -122.830653835999954, 49.289170811000112 ], [ -122.830656607999941, 49.288361250000101 ], [ -122.831069151999955, 49.288361854000122 ], [ -122.83107283899993, 49.287282438000027 ], [ -122.831485373999968, 49.28728304000002 ], [ -122.831487211999971, 49.286743333000096 ], [ -122.830662153999924, 49.286742127000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.734265734265734", "sL_AssetLoss": "10010", "sL_BldgLoss": "7350", "sL_StrLoss": "3420", "sL_NStrLoss": "3930", "sL_ContLoss": "2660", "geom_point": "0101000020E610000086F31DBA28B55EC09B741906C5A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.830662153999924, 49.286742127000089 ], [ -122.830658456999984, 49.287821542000074 ], [ -122.830562272999941, 49.287821401000116 ], [ -122.830572067999967, 49.287032480000093 ], [ -122.830573783999981, 49.286893200000087 ], [ -122.830496303999951, 49.286741884000051 ], [ -122.830662153999924, 49.286742127000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385365249", "BldgCostT": "259569999", "sL_LossRatio": "0.746733795620249", "sL_AssetLoss": "3869170", "sL_BldgLoss": "2889240", "sL_StrLoss": "1474440", "sL_NStrLoss": "1414800", "sL_ContLoss": "979930", "geom_point": "0101000020E6100000F3BD015E0DB55EC0E4919AD1EAA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822376538999947, 49.308048209000063 ], [ -122.822744230999945, 49.30108290800009 ], [ -122.823203580999945, 49.30108199000005 ], [ -122.823930702999974, 49.301006104000059 ], [ -122.82652824199999, 49.300947341000018 ], [ -122.82725673000003, 49.300931800000043 ], [ -122.827394487999982, 49.300945756000061 ], [ -122.827520324999981, 49.300958455000064 ], [ -122.827715000999959, 49.301027237000014 ], [ -122.827853382999976, 49.301115092000089 ], [ -122.828020851999909, 49.301319991000035 ], [ -122.828132382999911, 49.301458405000069 ], [ -122.828301293, 49.301603004000107 ], [ -122.82862447199993, 49.301742197000124 ], [ -122.829260698999988, 49.301950988000044 ], [ -122.829457022999947, 49.30209640200011 ], [ -122.829579554999953, 49.302275619000064 ], [ -122.829823578999964, 49.302868297000046 ], [ -122.829895623999931, 49.303465005000071 ], [ -122.829950533999963, 49.303627908000067 ], [ -122.830059229999975, 49.303787823000043 ], [ -122.830254125999943, 49.303974620000055 ], [ -122.83035205500002, 49.304131510000097 ], [ -122.830397162999958, 49.304335521000091 ], [ -122.830795281999968, 49.304345415000085 ], [ -122.831256253999939, 49.304301278000089 ], [ -122.831671984999929, 49.304194546000055 ], [ -122.831975916999937, 49.304033211000039 ], [ -122.832394501999943, 49.303784259000032 ], [ -122.833074989999886, 49.303285287000037 ], [ -122.833668294999953, 49.302652297000115 ], [ -122.833883602999919, 49.302318996000139 ], [ -122.833947117999955, 49.301993889000123 ], [ -122.83392768299997, 49.30171309500016 ], [ -122.833811806999947, 49.301317011000044 ], [ -122.833706752999944, 49.301167769000131 ], [ -122.833653799999965, 49.301092511000029 ], [ -122.833443009999968, 49.300857503000032 ], [ -122.833213303999941, 49.300697694000064 ], [ -122.832953644999961, 49.300555470000077 ], [ -122.832431195999945, 49.300269284000102 ], [ -122.832189395999947, 49.300045100000034 ], [ -122.832166860999948, 49.300010386000061 ], [ -122.832058798999981, 49.299844001000089 ], [ -122.831954792999923, 49.299453593000109 ], [ -122.832059100999928, 49.299135994000025 ], [ -122.832306699999961, 49.298832377000082 ], [ -122.832614735, 49.298611786000045 ], [ -122.832890122999984, 49.298484675000068 ], [ -122.83361874799999, 49.298285368000059 ], [ -122.833944827999929, 49.298745391000125 ], [ -122.834258818999984, 49.298980693000075 ], [ -122.835164008999982, 49.299376600000073 ], [ -122.835335952999955, 49.299550144000087 ], [ -122.835369911000015, 49.299584397000118 ], [ -122.835386634999949, 49.299628749000092 ], [ -122.835436219999977, 49.299760204000087 ], [ -122.83544720899998, 49.299998116000083 ], [ -122.835475147999944, 49.300603126000063 ], [ -122.8354806, 49.300720904000109 ], [ -122.835608393999948, 49.300984090000021 ], [ -122.835721330999959, 49.301108980000052 ], [ -122.835748105999954, 49.301138590000043 ], [ -122.835825489999962, 49.305181261000037 ], [ -122.835739862999986, 49.305178753000099 ], [ -122.835745268999986, 49.305099587000043 ], [ -122.835551473999928, 49.30509931100007 ], [ -122.835549006999941, 49.305840626000077 ], [ -122.833671939999988, 49.305808869000025 ], [ -122.833671078999942, 49.305906183000033 ], [ -122.833072641999976, 49.305905320000058 ], [ -122.833071728999954, 49.306175173000042 ], [ -122.832246345999948, 49.306173979000029 ], [ -122.832245429999972, 49.306443831000088 ], [ -122.833483511999972, 49.306445621000123 ], [ -122.833480783999974, 49.30725518000002 ], [ -122.832655382999988, 49.307253988000113 ], [ -122.832654468, 49.307523841000091 ], [ -122.831416359999977, 49.307522042000087 ], [ -122.831417278999965, 49.307252188000092 ], [ -122.83059187799995, 49.307250982000049 ], [ -122.830590951999952, 49.30752083400008 ], [ -122.829765545999948, 49.307519622000051 ], [ -122.829764615999963, 49.30778947400006 ], [ -122.828113796999943, 49.307787032000135 ], [ -122.828118488999962, 49.306437767000062 ], [ -122.827705795999947, 49.306437153000083 ], [ -122.827702974, 49.307246711000026 ], [ -122.827290271999956, 49.30724609400005 ], [ -122.827289328999925, 49.30751594700007 ], [ -122.826876625999915, 49.307515330000051 ], [ -122.826874733999929, 49.30805503600012 ], [ -122.825636612999972, 49.308053174000065 ], [ -122.825637565999955, 49.307783322000105 ], [ -122.825224858999945, 49.307782698000082 ], [ -122.825227723999916, 49.306973139000043 ], [ -122.824402326999973, 49.306971888000056 ], [ -122.824403284999931, 49.30670203500005 ], [ -122.823990588999976, 49.306701408 ], [ -122.823989627999978, 49.306971260000104 ], [ -122.822751532999931, 49.306969368000068 ], [ -122.822747661999927, 49.308048779000096 ], [ -122.822376538999947, 49.308048209000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97704061", "BldgCostT": "65058190", "sL_LossRatio": "0.746216467739458", "sL_AssetLoss": "1106770", "sL_BldgLoss": "825890", "sL_StrLoss": "381980", "sL_NStrLoss": "443910", "sL_ContLoss": "280880", "geom_point": "0101000020E610000086825B6F42B55EC03055DDE17EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.832046407999911, 49.295096194000031 ], [ -122.830624004999919, 49.294684185000058 ], [ -122.829114488999906, 49.294239903000111 ], [ -122.828286124000016, 49.293988602000056 ], [ -122.827955599999882, 49.293795115000073 ], [ -122.827753708999921, 49.293591907000057 ], [ -122.827646203999961, 49.293433808000096 ], [ -122.827577800999933, 49.292987596000046 ], [ -122.827692707000011, 49.292774799000028 ], [ -122.827987019999938, 49.292471702000036 ], [ -122.828424416999923, 49.292268408000062 ], [ -122.828593975999979, 49.292231478000083 ], [ -122.828894804999919, 49.29216598300011 ], [ -122.82907176599997, 49.292158761000067 ], [ -122.829087783999952, 49.292158105000134 ], [ -122.829481119999912, 49.292196710000091 ], [ -122.830522418000015, 49.29251109800007 ], [ -122.830898585999932, 49.292533149000043 ], [ -122.830981112999922, 49.292537983000045 ], [ -122.831507913999971, 49.292413890000034 ], [ -122.831897687, 49.292182104000034 ], [ -122.832085584999945, 49.291908288000087 ], [ -122.832119084999945, 49.291618292000123 ], [ -122.831823514999968, 49.291216005000088 ], [ -122.831326872999966, 49.290939294000076 ], [ -122.831059216999947, 49.290732293000062 ], [ -122.830905396, 49.290467491000044 ], [ -122.830940091999935, 49.290120691000027 ], [ -122.831183304999968, 49.289821617000072 ], [ -122.831692195999892, 49.289556410000031 ], [ -122.832311286999968, 49.289409688000092 ], [ -122.83292071599999, 49.289383402000041 ], [ -122.833400797999957, 49.2893993100001 ], [ -122.833401284999965, 49.290499206000078 ], [ -122.833564381999977, 49.290929200000043 ], [ -122.833737903, 49.291166697000051 ], [ -122.83389864499999, 49.291303741000057 ], [ -122.8341236699999, 49.291495587000057 ], [ -122.834209517999966, 49.291568791000039 ], [ -122.834409620999935, 49.291664970000127 ], [ -122.834486814999963, 49.292017507000068 ], [ -122.834572422999955, 49.292979406000043 ], [ -122.834639591999959, 49.293122808000099 ], [ -122.83485170799996, 49.293177697000026 ], [ -122.835165816999975, 49.293209406000052 ], [ -122.835393587999931, 49.29329539600009 ], [ -122.835478895999941, 49.293354616000045 ], [ -122.836117492999946, 49.293909300000067 ], [ -122.836553020999958, 49.29427789200011 ], [ -122.836514178999963, 49.294300652000054 ], [ -122.836230698999969, 49.294466702000108 ], [ -122.83582008499999, 49.294801497000059 ], [ -122.835558992999893, 49.29510279400013 ], [ -122.835160798999979, 49.295054186000151 ], [ -122.834662329999958, 49.295045007000077 ], [ -122.832816387999969, 49.295161749000044 ], [ -122.832774579999935, 49.295164408000105 ], [ -122.83219189399999, 49.295140112000048 ], [ -122.832046407999911, 49.295096194000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133248834", "BldgCostT": "82163334", "sL_LossRatio": "0.683745415533545", "sL_AssetLoss": "2004050", "sL_BldgLoss": "1370260", "sL_StrLoss": "608220", "sL_NStrLoss": "762040", "sL_ContLoss": "633790", "geom_point": "0101000020E6100000EFA2BF025EB55EC0DB69390AEFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.830267082999967, 49.284160693000054 ], [ -122.830232308999939, 49.284025407000051 ], [ -122.830672087999915, 49.284087910000039 ], [ -122.831027110999912, 49.284208274000093 ], [ -122.831283615999936, 49.284295274000037 ], [ -122.831578299999961, 49.284395210000092 ], [ -122.831610056, 49.284405981000148 ], [ -122.831763762999927, 49.284458125000093 ], [ -122.833213998999966, 49.28494988400012 ], [ -122.833818000999941, 49.285164009000077 ], [ -122.834336283999932, 49.285464705000074 ], [ -122.834711006999939, 49.285875701000094 ], [ -122.834891206999913, 49.286297201000096 ], [ -122.835101589999951, 49.286697889000024 ], [ -122.835237112999934, 49.286928894000056 ], [ -122.835238815999972, 49.287104592000048 ], [ -122.835254129999967, 49.287915897000055 ], [ -122.835254323999962, 49.287924879000094 ], [ -122.835259451999946, 49.288451941000076 ], [ -122.83526240799999, 49.288753473000064 ], [ -122.83526481399997, 49.288999905000018 ], [ -122.835269474999933, 49.289515345000034 ], [ -122.835184125999916, 49.290976756000099 ], [ -122.835127996999944, 49.291937272000062 ], [ -122.836107717999965, 49.29223094200006 ], [ -122.838715417999978, 49.293012492000067 ], [ -122.838672937999959, 49.293071262000048 ], [ -122.838325191999942, 49.293552398000045 ], [ -122.837834781999931, 49.293828991000041 ], [ -122.837825352999985, 49.293831966 ], [ -122.83699599799999, 49.294092695000096 ], [ -122.836553020999958, 49.29427789200011 ], [ -122.836117492999946, 49.293909300000067 ], [ -122.835478895999941, 49.293354616000045 ], [ -122.835393587999931, 49.29329539600009 ], [ -122.835165816999975, 49.293209406000052 ], [ -122.83485170799996, 49.293177697000026 ], [ -122.834639591999959, 49.293122808000099 ], [ -122.834572422999955, 49.292979406000043 ], [ -122.834486814999963, 49.292017507000068 ], [ -122.834409620999935, 49.291664970000127 ], [ -122.834209517999966, 49.291568791000039 ], [ -122.8341236699999, 49.291495587000057 ], [ -122.83389864499999, 49.291303741000057 ], [ -122.833737903, 49.291166697000051 ], [ -122.833564381999977, 49.290929200000043 ], [ -122.833401284999965, 49.290499206000078 ], [ -122.833400797999957, 49.2893993100001 ], [ -122.833297297999934, 49.288097197000056 ], [ -122.833088188999952, 49.287697403000081 ], [ -122.832845812999921, 49.287421803000036 ], [ -122.832532193999924, 49.287182890000025 ], [ -122.831330271999946, 49.286582795000093 ], [ -122.830263645999977, 49.286050182000125 ], [ -122.830203202999897, 49.286020013000048 ], [ -122.830142590999927, 49.285986555000044 ], [ -122.83003763899994, 49.28592864200008 ], [ -122.830022014999926, 49.285919997000043 ], [ -122.830017619999964, 49.285917590000032 ], [ -122.829679677999977, 49.28573109700006 ], [ -122.829499783999907, 49.2856317970001 ], [ -122.829308324999943, 49.285478509000015 ], [ -122.829819289999989, 49.284638499000067 ], [ -122.830019414999981, 49.284526404000118 ], [ -122.830267082999967, 49.284160693000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268518584", "BldgCostT": "167638334", "sL_LossRatio": "0.652831554651694", "sL_AssetLoss": "6953371", "sL_BldgLoss": "4539380", "sL_StrLoss": "1876080", "sL_NStrLoss": "2663300", "sL_ContLoss": "2413991", "geom_point": "0101000020E6100000DF9F9CB224CB5EC0B77D231521994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.221878230999963, 49.225125840000047 ], [ -123.22187581499999, 49.224586128000055 ], [ -123.220227772999948, 49.224589282000075 ], [ -123.220226573000033, 49.224319426000136 ], [ -123.219814564999965, 49.224320211000141 ], [ -123.219813366999944, 49.224050355000053 ], [ -123.218577347999954, 49.224052700000065 ], [ -123.218574967999942, 49.223512988000053 ], [ -123.216926959999952, 49.223516095000043 ], [ -123.216925779999968, 49.223246239000119 ], [ -123.216513779999943, 49.223247013000048 ], [ -123.21651260099999, 49.22297715600007 ], [ -123.214622245999976, 49.222980684000049 ], [ -123.21338841799998, 49.222685599000101 ], [ -123.212802527999941, 49.222496162000056 ], [ -123.212802304999954, 49.222444334000038 ], [ -123.212643140999958, 49.222444627000137 ], [ -123.211036405999934, 49.221925091000088 ], [ -123.209915237999951, 49.221714127000048 ], [ -123.209914924999964, 49.221640042000089 ], [ -123.209525288999956, 49.221640750000084 ], [ -123.20909060299999, 49.221558952000152 ], [ -123.209089812999963, 49.221371680000033 ], [ -123.208104906999921, 49.22137345800008 ], [ -123.207853659999913, 49.22132617700003 ], [ -123.207852728999981, 49.221104054000087 ], [ -123.207028763999972, 49.22110553400011 ], [ -123.207025381999969, 49.220295966000101 ], [ -123.207437358000021, 49.220295227000065 ], [ -123.20743509899998, 49.219755514000084 ], [ -123.207847069999943, 49.219754773000027 ], [ -123.207845936999931, 49.219484917000031 ], [ -123.208257907, 49.219484175000062 ], [ -123.208255638999944, 49.218944462000117 ], [ -123.20990349499999, 49.218941479000087 ], [ -123.20990692399999, 49.219751048000077 ], [ -123.209494952999961, 49.219751796000061 ], [ -123.209496093999959, 49.220021651000089 ], [ -123.210320039999885, 49.220020155000064 ], [ -123.210323475999957, 49.220829724000041 ], [ -123.211147434999958, 49.220828220000016 ], [ -123.21114283699994, 49.219748795000079 ], [ -123.211966777999947, 49.219747287000125 ], [ -123.211964469999955, 49.219207574000031 ], [ -123.212376434999982, 49.219206817000043 ], [ -123.212375277999968, 49.218936961000054 ], [ -123.212787243999969, 49.21893620200008 ], [ -123.212786084999962, 49.218666373000119 ], [ -123.20995678299991, 49.218593185000046 ], [ -123.210065572999952, 49.216782316000057 ], [ -123.209482406999911, 49.216783375000077 ], [ -123.209483546999977, 49.217053232000112 ], [ -123.209071598999984, 49.21705397700002 ], [ -123.20907387499993, 49.21759369100004 ], [ -123.207838016999986, 49.21759592100004 ], [ -123.20783688599991, 49.217326065000073 ], [ -123.20536518099999, 49.217330486000058 ], [ -123.205364062999976, 49.217060629000102 ], [ -123.20495211399999, 49.217061361000049 ], [ -123.204953230999934, 49.217331217000016 ], [ -123.204129327999922, 49.217332676000069 ], [ -123.204131551999964, 49.217872389000043 ], [ -123.203307639999963, 49.217873843000113 ], [ -123.203310960999914, 49.218683412000082 ], [ -123.202898998999984, 49.21868413600005 ], [ -123.202903419, 49.219763562000054 ], [ -123.20496327299999, 49.219759925000048 ], [ -123.20496438899994, 49.220029782 ], [ -123.205788335999955, 49.2200283170001 ], [ -123.205791698, 49.220837886000048 ], [ -123.205264212999964, 49.220838825000065 ], [ -123.203173608999961, 49.220445305000105 ], [ -123.202665216999932, 49.220365598000058 ], [ -123.198407310999968, 49.219824406000043 ], [ -123.197296538999964, 49.219606131000084 ], [ -123.196001022999923, 49.219351505000084 ], [ -123.195485933999962, 49.219268693000124 ], [ -123.195485807999972, 49.219236637000058 ], [ -123.195288614999953, 49.21923697000004 ], [ -123.193837016999936, 49.21900358000002 ], [ -123.193836882999918, 49.218969557000023 ], [ -123.193627603999971, 49.218969907000073 ], [ -123.192511194999938, 49.21879039300012 ], [ -123.191775202999963, 49.218492992000051 ], [ -123.191774972999937, 49.218433282000028 ], [ -123.19162804599992, 49.218433526000084 ], [ -123.191284535999955, 49.218294714000116 ], [ -123.190804570999916, 49.218100741000093 ], [ -123.190118285, 49.21782340700004 ], [ -123.189712324999974, 49.217692979000077 ], [ -123.189712071999978, 49.217627112000066 ], [ -123.189508362999945, 49.217627448000044 ], [ -123.189334759999937, 49.217571671 ], [ -123.189305636999961, 49.217562327000074 ], [ -123.189118318999988, 49.217502108000055 ], [ -123.188083405, 49.217169600000084 ], [ -123.188062469999977, 49.217158444000049 ], [ -123.188061186, 49.216820237000064 ], [ -123.187649239, 49.216820907000113 ], [ -123.187648215999957, 49.216551050000056 ], [ -123.186924854999944, 49.216552223000043 ], [ -123.18682412499993, 49.216498543000107 ], [ -123.186823310999955, 49.21628252800015 ], [ -123.186419997999948, 49.216283181000058 ], [ -123.18599858, 49.216058600000082 ], [ -123.185998412999979, 49.216014001000069 ], [ -123.185915144999939, 49.216014136000062 ], [ -123.185745084999979, 49.215923507000049 ], [ -123.185585931, 49.215870147000054 ], [ -123.185585461999963, 49.215744807000135 ], [ -123.18521386399999, 49.215745404000089 ], [ -123.184761017999946, 49.215593574000103 ], [ -123.184760579999988, 49.21547627100005 ], [ -123.184412813999984, 49.21547682700006 ], [ -123.184300596999933, 49.215439202000042 ], [ -123.182699441999915, 49.215083846000013 ], [ -123.182698910999946, 49.214939833000074 ], [ -123.182286978999969, 49.214940484000053 ], [ -123.182287306, 49.215029078000079 ], [ -123.180638839, 49.214829326000086 ], [ -123.180638270999978, 49.21467321600003 ], [ -123.179367042999942, 49.214675197000098 ], [ -123.17899038499999, 49.21462954400009 ], [ -123.178986655999921, 49.213596352000124 ], [ -123.179810495999959, 49.213595073000114 ], [ -123.179809969999923, 49.213450214000027 ], [ -123.182262413, 49.213697391000061 ], [ -123.182922993999952, 49.213831315000064 ], [ -123.183648788999946, 49.213785696000102 ], [ -123.18393051699999, 49.213808816000032 ], [ -123.183930701999927, 49.213858444000067 ], [ -123.184342622999935, 49.213857787000087 ], [ -123.184342565999927, 49.213842629000105 ], [ -123.184829790999984, 49.213882609000045 ], [ -123.18553168899993, 49.213836999000144 ], [ -123.185861196999966, 49.21391680400005 ], [ -123.18645368599999, 49.213880461000045 ], [ -123.186889830999974, 49.213853694000107 ], [ -123.187226079999931, 49.213853149000052 ], [ -123.187226003999967, 49.213833061000102 ], [ -123.187370407999978, 49.21382419800004 ], [ -123.187987611999972, 49.21369740000015 ], [ -123.188346181999989, 49.213741598000077 ], [ -123.189484213999947, 49.213668888000043 ], [ -123.191448404999946, 49.213745807000073 ], [ -123.192163006999948, 49.213681791000056 ], [ -123.193122095999954, 49.213463891000053 ], [ -123.193403410999949, 49.213457850000076 ], [ -123.193403860999965, 49.213573113000081 ], [ -123.193815780999984, 49.21357242200002 ], [ -123.193815529999966, 49.213508399000098 ], [ -123.194207490999972, 49.213579191000058 ], [ -123.194566123999934, 49.213694776000089 ], [ -123.194749504999919, 49.213753884000049 ], [ -123.194778895999946, 49.213763337000088 ], [ -123.194799876999951, 49.213770082000103 ], [ -123.195347880999947, 49.213946696000029 ], [ -123.195733107999956, 49.213982286000054 ], [ -123.197114143999926, 49.214322790000026 ], [ -123.197114358999926, 49.214376416000093 ], [ -123.195054724999963, 49.214379912000041 ], [ -123.19505578799999, 49.21464976900009 ], [ -123.19382, 49.214651849000056 ], [ -123.19381894599999, 49.214381992000085 ], [ -123.190523531999958, 49.214387475000073 ], [ -123.190526644, 49.215197046000078 ], [ -123.191350510999939, 49.215195684000079 ], [ -123.191352592999962, 49.21573539800012 ], [ -123.193412282999958, 49.215731967000103 ], [ -123.193413336999953, 49.216001823000035 ], [ -123.194237215999919, 49.216000441000091 ], [ -123.19424356199994, 49.217619582000054 ], [ -123.194655513999976, 49.21761888800004 ], [ -123.194656573999907, 49.217888746000042 ], [ -123.195480484999976, 49.217887354000069 ], [ -123.195479420999959, 49.217617497000035 ], [ -123.195891374999974, 49.217616799000048 ], [ -123.195889241999936, 49.21707708600011 ], [ -123.197231476999931, 49.217074802000049 ], [ -123.197353108, 49.215059343000114 ], [ -123.198764958999973, 49.215096043000116 ], [ -123.198764228999934, 49.214913305000074 ], [ -123.198352296999929, 49.214914014000087 ], [ -123.198350696999967, 49.21451440800007 ], [ -123.198372502999987, 49.214516421000056 ], [ -123.198377986999915, 49.214516915000111 ], [ -123.198430387999963, 49.214521776000034 ], [ -123.200006607, 49.214667285000154 ], [ -123.2000453039999, 49.214208691000067 ], [ -123.200466558999921, 49.213047325000105 ], [ -123.200534993999952, 49.212858588000088 ], [ -123.20095771599992, 49.212173493000179 ], [ -123.201257916, 49.211902904000098 ], [ -123.201393806999988, 49.211534089000068 ], [ -123.201269794000012, 49.21134608800007 ], [ -123.201062689, 49.211246399000075 ], [ -123.200350555999975, 49.211076445000096 ], [ -123.199868891999955, 49.210961515000115 ], [ -123.199605213999988, 49.210494401000048 ], [ -123.199055995999927, 49.210306402000029 ], [ -123.198314109999956, 49.210280697 ], [ -123.19775062099994, 49.210470202000046 ], [ -123.197180084999957, 49.21051817300004 ], [ -123.196667488999978, 49.210561293000112 ], [ -123.194677992999971, 49.210888901000054 ], [ -123.192569579999898, 49.210886655000067 ], [ -123.192569538999976, 49.210875919000074 ], [ -123.191745742999942, 49.210877289000074 ], [ -123.191745776999937, 49.210885767 ], [ -123.188141791999939, 49.210881806000074 ], [ -123.186234606999975, 49.210984294000042 ], [ -123.185116724999958, 49.211152522000098 ], [ -123.1834614099999, 49.211401595000012 ], [ -123.182851695999915, 49.211566585000064 ], [ -123.182351053999952, 49.211702078000052 ], [ -123.181451264999936, 49.211703496000062 ], [ -123.181451940999963, 49.211888553000065 ], [ -123.179712662000014, 49.212245932000037 ], [ -123.178569874999965, 49.212247704000049 ], [ -123.178571466999969, 49.212689790000049 ], [ -123.178349981999958, 49.212787761000115 ], [ -123.177336078999986, 49.212789322000106 ], [ -123.177337043999941, 49.213059179000076 ], [ -123.176513211999975, 49.213060441000053 ], [ -123.176514171999955, 49.213330299000098 ], [ -123.173630744999969, 49.213334669000034 ], [ -123.17363169099994, 49.213604526 ], [ -123.172395927999958, 49.21360637700014 ], [ -123.172396865999957, 49.21387623400004 ], [ -123.171161097, 49.213878072000149 ], [ -123.171160604999926, 49.21373511000013 ], [ -123.17123612499995, 49.213553605000058 ], [ -123.171159411999895, 49.213389679000066 ], [ -123.171159233999944, 49.213338358000023 ], [ -123.171120050999917, 49.213338416000077 ], [ -123.170603791999909, 49.213140591000119 ], [ -123.170629183999935, 49.212896995000065 ], [ -123.170368084999922, 49.212888494000012 ], [ -123.170383198999943, 49.213122004000105 ], [ -123.170204307999967, 49.213221685000114 ], [ -123.169560901999958, 49.213348512000017 ], [ -123.169533095999938, 49.21354650800005 ], [ -123.169740509999968, 49.213698792000073 ], [ -123.170441601000022, 49.21378859700004 ], [ -123.17051027799999, 49.214012193 ], [ -123.170221211999902, 49.21409479000004 ], [ -123.169426001999952, 49.214086205000086 ], [ -123.167322609999971, 49.213515347000126 ], [ -123.167108213999967, 49.213457146000096 ], [ -123.16636162199994, 49.213254502000076 ], [ -123.165611978999948, 49.21300304500005 ], [ -123.165623961, 49.212806710000088 ], [ -123.165029221999973, 49.212807561000083 ], [ -123.164978602999952, 49.212790581000071 ], [ -123.164977761, 49.212537776000097 ], [ -123.164228173999931, 49.212538844000058 ], [ -123.164153854999967, 49.212513912000084 ], [ -123.164153044999978, 49.212269091000039 ], [ -123.163605821999965, 49.212269868000071 ], [ -123.163328796999934, 49.212140593000086 ], [ -123.16332833599995, 49.212000402000065 ], [ -123.163029293999926, 49.212000825000068 ], [ -123.162916254999985, 49.21194807300003 ], [ -123.162915540999961, 49.211731127000093 ], [ -123.162503636999958, 49.211731706000108 ], [ -123.162502751999938, 49.211461849000109 ], [ -123.162090849999942, 49.211462428000132 ], [ -123.162089966999986, 49.21119257000003 ], [ -123.161299751999962, 49.211193676000121 ], [ -123.16126611299994, 49.211177978000087 ], [ -123.161265287, 49.210923866000016 ], [ -123.160853388999968, 49.210924440999989 ], [ -123.160852512999938, 49.210654582000082 ], [ -123.160440616999978, 49.210655156000065 ], [ -123.160439743999987, 49.210385298000084 ], [ -123.160027851, 49.210385870000081 ], [ -123.160026977999976, 49.210116012000114 ], [ -123.159106034999965, 49.210117284000027 ], [ -123.158894677999982, 49.209954596000074 ], [ -123.158790325999988, 49.209813088000061 ], [ -123.158789574999929, 49.209578003000033 ], [ -123.158617148999923, 49.209578239000102 ], [ -123.158376642999926, 49.209252085000053 ], [ -123.158375962999912, 49.209038852000049 ], [ -123.158219567999978, 49.209039067000049 ], [ -123.158079703999988, 49.208849391000093 ], [ -123.157494298, 49.208543721000105 ], [ -123.156636801999966, 49.208095993000065 ], [ -123.155506611999954, 49.20731774700004 ], [ -123.155356722999926, 49.207214547000014 ], [ -123.154661816999948, 49.206735995000074 ], [ -123.15466059799995, 49.206345299000134 ], [ -123.15424873799995, 49.206345849000087 ], [ -123.154247058999943, 49.205806134000035 ], [ -123.153529229999933, 49.205807090000043 ], [ -123.152789860999945, 49.205119514000017 ], [ -123.152703247999938, 49.205038963000042 ], [ -123.152656173999972, 49.204995168000025 ], [ -123.152397691999965, 49.204754790000038 ], [ -123.152184027999965, 49.204586872000057 ], [ -123.152183636999951, 49.204459576000026 ], [ -123.152022323999986, 49.204459788000044 ], [ -123.150924390999947, 49.203596896000079 ], [ -123.150533007999954, 49.203392203000107 ], [ -123.15053298, 49.203382303000048 ], [ -123.150514125999962, 49.203382328000025 ], [ -123.149966112999934, 49.203095712000042 ], [ -123.14765389499992, 49.201886335000047 ], [ -123.147561881999977, 49.201838191000022 ], [ -123.147233182999955, 49.201666277000122 ], [ -123.147230278, 49.200687969000114 ], [ -123.147642091999955, 49.200687444000053 ], [ -123.147640485999929, 49.20014772600009 ], [ -123.14681686699997, 49.200148777000031 ], [ -123.146816069999971, 49.199878919000049 ], [ -123.145168840999986, 49.199881 ], [ -123.145170419999886, 49.200420717000092 ], [ -123.144319784999979, 49.200421783000081 ], [ -123.142292486999978, 49.199621995000065 ], [ -123.142108657999984, 49.199582714000059 ], [ -123.141873373999957, 49.199532468000022 ], [ -123.141872837999927, 49.199345378000075 ], [ -123.141067994999958, 49.199346364000093 ], [ -123.140260616999953, 49.199058006000129 ], [ -123.139283298999942, 49.198812088000118 ], [ -123.138556797999982, 49.198629308000072 ], [ -123.138254197999956, 49.198575210000087 ], [ -123.138164525999969, 49.198600471000091 ], [ -123.13816435699998, 49.198540295000015 ], [ -123.137340764999976, 49.198541277000075 ], [ -123.137340017999975, 49.198271420000047 ], [ -123.136319416999925, 49.198272628000041 ], [ -123.135996960999961, 49.198273009000118 ], [ -123.13569264099999, 49.1981997520001 ], [ -123.135692375999952, 49.198102698000078 ], [ -123.135315431999956, 49.198092677000055 ], [ -123.135259483999945, 49.198075299000088 ], [ -123.135191102999912, 49.197958492000062 ], [ -123.135176715999989, 49.197777592000065 ], [ -123.135616797999887, 49.197273613000142 ], [ -123.135655484999972, 49.197229298000138 ], [ -123.135783758999978, 49.196988365000074 ], [ -123.136105900999965, 49.196383301000054 ], [ -123.136804707999985, 49.195671192000106 ], [ -123.137145382999904, 49.194860804000086 ], [ -123.137505909999959, 49.19433642500011 ], [ -123.137556043999922, 49.194263478000082 ], [ -123.13762447, 49.194163959000079 ], [ -123.138140761999935, 49.193412996000099 ], [ -123.138150076999949, 49.193412984000062 ], [ -123.138150039, 49.193399499000108 ], [ -123.138252815, 49.193250007000138 ], [ -123.138276938000033, 49.193176708000102 ], [ -123.138389284999931, 49.19283560500002 ], [ -123.1388536799999, 49.19228590000008 ], [ -123.138854450999986, 49.192277549000046 ], [ -123.138881807999923, 49.191981092000098 ], [ -123.139373200999955, 49.191368709000095 ], [ -123.139660217999932, 49.19070209800001 ], [ -123.139898612999929, 49.190348536000087 ], [ -123.140316100999939, 49.189729390000103 ], [ -123.140803717000011, 49.189227941000091 ], [ -123.140832073999917, 49.189198769000058 ], [ -123.14106321099996, 49.188961050000032 ], [ -123.141201295999963, 49.188819049000116 ], [ -123.141256427999949, 49.188762365000059 ], [ -123.141821405999963, 49.188181312000076 ], [ -123.142467387999972, 49.187644519000067 ], [ -123.142916609999986, 49.187271203000151 ], [ -123.143079210999971, 49.186856794000114 ], [ -123.143077970999968, 49.186204791000073 ], [ -123.143077317999953, 49.185868405000072 ], [ -123.142839891999941, 49.184384298000069 ], [ -123.142907786999956, 49.184059603000016 ], [ -123.143055719999921, 49.183833904000039 ], [ -123.143179373999942, 49.183645194000079 ], [ -123.1438658899999, 49.182965204000062 ], [ -123.143923773999987, 49.182907872000015 ], [ -123.144038025999947, 49.182794729000129 ], [ -123.144233403999948, 49.182601188000028 ], [ -123.144604197999953, 49.182340833000126 ], [ -123.145117523999929, 49.18234019000014 ], [ -123.145116735999977, 49.182070331000041 ], [ -123.145528393999911, 49.182069812000123 ], [ -123.145527321999964, 49.181704004000053 ], [ -123.1459996829999, 49.18139349700008 ], [ -123.147668925999966, 49.180521212000045 ], [ -123.148932007, 49.179861111000029 ], [ -123.149663257999919, 49.179573888000085 ], [ -123.150864618999918, 49.179101996000078 ], [ -123.151782207999972, 49.178822810000078 ], [ -123.153551318999959, 49.178361399000075 ], [ -123.153816335999977, 49.178307183000051 ], [ -123.153915515999969, 49.178286898000124 ], [ -123.154270512999915, 49.178214257000093 ], [ -123.154345067999927, 49.17819900500006 ], [ -123.154700565999974, 49.178126271000039 ], [ -123.154790370999976, 49.178107908000086 ], [ -123.155272717999964, 49.178009220000071 ], [ -123.155395540999947, 49.178009055000061 ], [ -123.15539546399998, 49.177984106000039 ], [ -123.155854846999915, 49.177890115000046 ], [ -123.155897414999984, 49.177881404000082 ], [ -123.157186814999946, 49.177744702000091 ], [ -123.158899200999954, 49.177761337000071 ], [ -123.160410679999956, 49.177775994000029 ], [ -123.161489593999988, 49.177679090000069 ], [ -123.16285190799999, 49.177556704000075 ], [ -123.164170212, 49.177563809000013 ], [ -123.16548498299997, 49.177462698000113 ], [ -123.168806590999921, 49.177368693000112 ], [ -123.169917095999935, 49.17743848900006 ], [ -123.170394874999928, 49.177515318000076 ], [ -123.173185714999988, 49.177963994000017 ], [ -123.173610293999943, 49.178170507000097 ], [ -123.174203794, 49.178691789000041 ], [ -123.174669925999964, 49.178825704000083 ], [ -123.176687418999961, 49.178921100000103 ], [ -123.179128304999963, 49.178549408000059 ], [ -123.17996541699992, 49.178529404000102 ], [ -123.181148694999962, 49.179265690000108 ], [ -123.181547391999956, 49.17944520300005 ], [ -123.18335900299995, 49.179882409000065 ], [ -123.183363849, 49.179884436000059 ], [ -123.184472394999972, 49.180348114000047 ], [ -123.184912493999946, 49.180600204000015 ], [ -123.185024302999977, 49.180996194000102 ], [ -123.185630767999953, 49.181215219000094 ], [ -123.185730087999957, 49.18125109700005 ], [ -123.185807281999971, 49.181278973000104 ], [ -123.186280499999981, 49.181449870000044 ], [ -123.186280579999917, 49.181471550000055 ], [ -123.186340264999956, 49.181471453000086 ], [ -123.186384695999934, 49.18148749900007 ], [ -123.186693075000022, 49.181694096000044 ], [ -123.18669325099998, 49.181740744000116 ], [ -123.186762536999936, 49.181740632000142 ], [ -123.187105774999907, 49.18197057800009 ], [ -123.187107957999942, 49.182549653000116 ], [ -123.185872970000034, 49.182551647000054 ], [ -123.18587196, 49.182281789000065 ], [ -123.185459791999932, 49.182282452000017 ], [ -123.183813657999963, 49.182285083000032 ], [ -123.183812657999979, 49.182015224000111 ], [ -123.182577683999966, 49.182017183000092 ], [ -123.182578677, 49.182287042000041 ], [ -123.18216701599999, 49.182287692000102 ], [ -123.182170978999977, 49.183367126000078 ], [ -123.182994317999956, 49.183365824000091 ], [ -123.182997302999979, 49.184175400000086 ], [ -123.183820655, 49.184174093000067 ], [ -123.183822653999954, 49.184713809000122 ], [ -123.184234333999967, 49.184713152000022 ], [ -123.184235336999976, 49.184983011000043 ], [ -123.184647019999915, 49.184982354000063 ], [ -123.184648023999941, 49.185252212000051 ], [ -123.186318580999952, 49.185249530000135 ], [ -123.18645451499999, 49.183004100000062 ], [ -123.186479480999964, 49.182591684000073 ], [ -123.188505763999913, 49.182644594000102 ], [ -123.189816290999943, 49.18315670900013 ], [ -123.189865368999932, 49.183175887000161 ], [ -123.191028705999926, 49.183630461000128 ], [ -123.191099190999978, 49.183658011000027 ], [ -123.191249506999952, 49.183791895000056 ], [ -123.191238301999988, 49.184025394000109 ], [ -123.19123867799999, 49.184223396000021 ], [ -123.19134800099998, 49.184169304000072 ], [ -123.191815412000011, 49.184186405000048 ], [ -123.192312718, 49.184371984000123 ], [ -123.192732348999954, 49.184528573000058 ], [ -123.193353294999923, 49.184760290000057 ], [ -123.194865180999969, 49.185234601000026 ], [ -123.195991788999947, 49.185475310000065 ], [ -123.197610504, 49.185624791000052 ], [ -123.201250895999934, 49.186482189000067 ], [ -123.203735494999961, 49.18677561100008 ], [ -123.206886512999986, 49.187019573000029 ], [ -123.206886926, 49.187118883000039 ], [ -123.206891363999901, 49.188182967000074 ], [ -123.206067946999895, 49.188184439000104 ], [ -123.206071308999924, 49.188994014000052 ], [ -123.206483023999937, 49.188993277000051 ], [ -123.206487516999942, 49.190072709000027 ], [ -123.206075791999965, 49.190073445000074 ], [ -123.206076912999976, 49.190343302000016 ], [ -123.20566518599999, 49.190344036000042 ], [ -123.205667422999966, 49.19088375200004 ], [ -123.206490885999955, 49.190882282000075 ], [ -123.206495376999953, 49.191961713000083 ], [ -123.204848418999973, 49.191964647000113 ], [ -123.204849532999958, 49.192234504000069 ], [ -123.202790819999905, 49.192238137000075 ], [ -123.202787510999926, 49.191428564000063 ], [ -123.203199246999972, 49.191427840000053 ], [ -123.203198140999945, 49.191157982000014 ], [ -123.203609873999952, 49.191157257000064 ], [ -123.203607658999971, 49.190617541000066 ], [ -123.203195931, 49.190618267000069 ], [ -123.203194824999954, 49.190348408000041 ], [ -123.201136191999964, 49.190352012000048 ], [ -123.201135097999895, 49.19008215500007 ], [ -123.199899923999965, 49.190084299000077 ], [ -123.19989883699999, 49.189814441000046 ], [ -123.199487113999965, 49.189815152000072 ], [ -123.199486028999985, 49.189545295000045 ], [ -123.198662587999976, 49.189546714000073 ], [ -123.198665829999953, 49.190356288000054 ], [ -123.19907755699991, 49.190355578000094 ], [ -123.199081887999981, 49.191435011000088 ], [ -123.199493622999981, 49.191434300000033 ], [ -123.199494708999936, 49.191704158000029 ], [ -123.199906447000018, 49.191703447000123 ], [ -123.199907534999966, 49.191973304000058 ], [ -123.200731015999978, 49.191971876000068 ], [ -123.200729923999944, 49.191702018000079 ], [ -123.202376875999974, 49.191699143000058 ], [ -123.202380178999974, 49.192508717000045 ], [ -123.200733199999917, 49.192511591000063 ], [ -123.200734289999943, 49.192781449000051 ], [ -123.197028566999919, 49.19278783 ], [ -123.197029638999979, 49.19305768800006 ], [ -123.19538264000002, 49.193060486000121 ], [ -123.19538370399998, 49.19333034400006 ], [ -123.194971952999964, 49.193331039000029 ], [ -123.194975133999918, 49.194140612000105 ], [ -123.195386891999988, 49.194139917 ], [ -123.195387955999962, 49.194409775000025 ], [ -123.195799715999954, 49.194409078000021 ], [ -123.195800782, 49.194678936000045 ], [ -123.19621254399999, 49.194678237000105 ], [ -123.196214678999965, 49.195217952000093 ], [ -123.196626445000021, 49.19521725100001 ], [ -123.196627515999978, 49.195487110000066 ], [ -123.197039285999921, 49.195486408000065 ], [ -123.197040357999953, 49.195756266000089 ], [ -123.197452129999959, 49.195755562000095 ], [ -123.197453203999913, 49.196025419000129 ], [ -123.198276752999931, 49.196024009000105 ], [ -123.19827890799999, 49.196563724000072 ], [ -123.200337799999957, 49.196560172000098 ], [ -123.200341070999926, 49.197369744000085 ], [ -123.199517499, 49.19737116900005 ], [ -123.19952075599997, 49.198180743000137 ], [ -123.199932548999982, 49.19818003100012 ], [ -123.199934723999903, 49.198719745000048 ], [ -123.20158190899997, 49.198716882000078 ], [ -123.20158300599995, 49.198986740000095 ], [ -123.201994804999956, 49.198986021000053 ], [ -123.201999200999921, 49.200065449000057 ], [ -123.201587393999944, 49.200066170000078 ], [ -123.201590684999971, 49.200875742000065 ], [ -123.200767055999975, 49.200877176000098 ], [ -123.200769241, 49.201416891000058 ], [ -123.201181057999975, 49.201416174000052 ], [ -123.201182153999952, 49.201686031000079 ], [ -123.201593974000019, 49.201685314000031 ], [ -123.20159616899997, 49.202225028000015 ], [ -123.202419817999925, 49.202223588000038 ], [ -123.202430834999959, 49.204922160000137 ], [ -123.202842681999968, 49.204921437000102 ], [ -123.202841577999919, 49.2046515810001 ], [ -123.203665268999956, 49.204650131000051 ], [ -123.203664160999935, 49.204380274000073 ], [ -123.204782675999979, 49.20437829700009 ], [ -123.204899689999962, 49.204378088000048 ], [ -123.204901063999969, 49.20471055700007 ], [ -123.204772404999986, 49.204854488000073 ], [ -123.204521660999902, 49.205188336000042 ], [ -123.204491186999945, 49.205188390000075 ], [ -123.204491351999948, 49.205228692000041 ], [ -123.204318705999981, 49.205458555000114 ], [ -123.203946291999955, 49.205459213000026 ], [ -123.203668593999978, 49.20545970300001 ], [ -123.203670058999975, 49.205816194000079 ], [ -123.203672125000011, 49.206319393000115 ], [ -123.203506854999929, 49.20653942400007 ], [ -123.20326116699999, 49.206539856000042 ], [ -123.20326309499994, 49.207010273000087 ], [ -123.203230486, 49.207079628000052 ], [ -123.202851513999974, 49.207080294000065 ], [ -123.202857033999976, 49.208429580000022 ], [ -123.20322031099991, 49.208428942000076 ], [ -123.203238, 49.209129998000058 ], [ -123.203225469999978, 49.209238509000066 ], [ -123.202860345999909, 49.209239151000077 ], [ -123.202861449999943, 49.209509008000062 ], [ -123.202449565000023, 49.209509730000022 ], [ -123.202451767999932, 49.210049445000024 ], [ -123.202863657999984, 49.210048721000078 ], [ -123.202864761999962, 49.210318578000049 ], [ -123.203100783999943, 49.210318163000103 ], [ -123.202853595999926, 49.212458412000096 ], [ -123.202613967999952, 49.213017606000086 ], [ -123.20246389, 49.213017870000101 ], [ -123.202464990999943, 49.21328772600004 ], [ -123.202053074999938, 49.213288448000128 ], [ -123.202054174999944, 49.213558304000024 ], [ -123.20238250599999, 49.213557729000129 ], [ -123.201738526999975, 49.215060405000045 ], [ -123.201548804999945, 49.215860811000013 ], [ -123.20183869, 49.216121404000077 ], [ -123.202705798999943, 49.216478893000073 ], [ -123.203021391999982, 49.216487504000042 ], [ -123.203240396999945, 49.21639770700002 ], [ -123.204102478999957, 49.215802395000075 ], [ -123.205090605999914, 49.21554888500004 ], [ -123.205531500999967, 49.215862211000101 ], [ -123.205698804999955, 49.216303685000064 ], [ -123.205547091999932, 49.216447595000091 ], [ -123.204751104999957, 49.216674010000091 ], [ -123.204601018999966, 49.216853504000035 ], [ -123.20941979, 49.216638394000022 ], [ -123.211754586999973, 49.2167694010001 ], [ -123.212221014999955, 49.216624208000049 ], [ -123.212646487999905, 49.216209711000083 ], [ -123.213016085999939, 49.215993304000051 ], [ -123.215633793999984, 49.215465804000075 ], [ -123.215613400999956, 49.215805945000056 ], [ -123.214676889999922, 49.215990394000073 ], [ -123.214443884999952, 49.216196902000057 ], [ -123.214260394999926, 49.21832038600008 ], [ -123.214435328999912, 49.218986274000052 ], [ -123.214436266999911, 49.219203012000051 ], [ -123.214492241999949, 49.219202908000106 ], [ -123.214567588999941, 49.219489707000079 ], [ -123.214943191999964, 49.220163304000025 ], [ -123.215679107999918, 49.220796320000098 ], [ -123.215679209999919, 49.220819848000076 ], [ -123.215706401999938, 49.220819798000065 ], [ -123.21571478599999, 49.220827009000104 ], [ -123.216504318999952, 49.221081589000029 ], [ -123.216504346999926, 49.221088163000026 ], [ -123.21652458899996, 49.221088125000023 ], [ -123.216938217999953, 49.221221494000119 ], [ -123.217329922999937, 49.221453929000084 ], [ -123.217330677999925, 49.221626328000056 ], [ -123.217619541999923, 49.221625785000079 ], [ -123.217888696999978, 49.221785494000102 ], [ -123.218549306999975, 49.222073187000099 ], [ -123.218568641999937, 49.222078525 ], [ -123.218570206999956, 49.22243356399999 ], [ -123.219394193999989, 49.222432003000108 ], [ -123.219395386999935, 49.222701858000057 ], [ -123.220499205999928, 49.222699757000072 ], [ -123.220927980999974, 49.222913498000047 ], [ -123.221044901999946, 49.223042950000057 ], [ -123.221045775, 49.223238429000055 ], [ -123.221221155999956, 49.22323809300007 ], [ -123.221658588999986, 49.223722395000031 ], [ -123.223061016, 49.223917598000106 ], [ -123.22393301699999, 49.223951479000021 ], [ -123.223938306999955, 49.225121865000112 ], [ -123.221878230999963, 49.225125840000047 ] ], [ [ -123.194215013999937, 49.21033344600005 ], [ -123.194213956999988, 49.210063589000086 ], [ -123.195037738999929, 49.210062201000056 ], [ -123.195036676999976, 49.209792344000036 ], [ -123.195860453999941, 49.209790950000077 ], [ -123.195859388, 49.20952109300007 ], [ -123.196683160999939, 49.209519693000068 ], [ -123.196682089000021, 49.209249836000062 ], [ -123.19709397299999, 49.209249134000089 ], [ -123.197091827999898, 49.208709419000037 ], [ -123.197503706999925, 49.208708716000039 ], [ -123.197502631999924, 49.208438860000072 ], [ -123.197914508999929, 49.208438154000085 ], [ -123.19791343299994, 49.208168297000071 ], [ -123.198325307999966, 49.208167591000063 ], [ -123.198324226999944, 49.207897733000046 ], [ -123.198736098999959, 49.207897026000097 ], [ -123.198733936999986, 49.20735731200007 ], [ -123.198322069999932, 49.207358019000054 ], [ -123.198320990999946, 49.207088162000097 ], [ -123.197497258999974, 49.207089574000086 ], [ -123.197498332999899, 49.207359430000039 ], [ -123.196262728999969, 49.207361537000097 ], [ -123.19626806899997, 49.208710822000086 ], [ -123.195444310999946, 49.208712219000041 ], [ -123.195445373999945, 49.208982076000026 ], [ -123.195033492999968, 49.208982772000049 ], [ -123.195034553999932, 49.209252630000073 ], [ -123.193798902999959, 49.209254710000074 ], [ -123.193797847999974, 49.208984852000036 ], [ -123.19132655599999, 49.208988972000014 ], [ -123.191321350999957, 49.207639686000057 ], [ -123.190909479999931, 49.20764036800005 ], [ -123.190906362999982, 49.206830795000016 ], [ -123.190494498999968, 49.206831476000055 ], [ -123.190493815999972, 49.206653741000125 ], [ -123.190491387999913, 49.206021904000089 ], [ -123.190903244999944, 49.206021225000129 ], [ -123.190900128999985, 49.205211652000081 ], [ -123.190488278000018, 49.205212333000077 ], [ -123.190487242999936, 49.204942475000053 ], [ -123.188016153, 49.204946523000096 ], [ -123.188015128999893, 49.20467666600004 ], [ -123.186779590999947, 49.204678671000089 ], [ -123.186778573999945, 49.204408814000089 ], [ -123.185954886999966, 49.204410143000104 ], [ -123.18595286299994, 49.203870428000037 ], [ -123.185541024, 49.203871090000106 ], [ -123.18554304299991, 49.204410805000109 ], [ -123.183483822999946, 49.204414095000047 ], [ -123.183486817999949, 49.205223667000084 ], [ -123.184310518999979, 49.20522235500006 ], [ -123.184315534999939, 49.206571642000071 ], [ -123.18307995, 49.206573607000081 ], [ -123.183077955999963, 49.206033893000082 ], [ -123.182254241999942, 49.206035195000041 ], [ -123.182252256999959, 49.205495481000128 ], [ -123.181016697999965, 49.205497424000036 ], [ -123.181015712999923, 49.205227566000076 ], [ -123.180808137999946, 49.205227891000092 ], [ -123.180790637999948, 49.205516266000139 ], [ -123.181366963999949, 49.205531341000047 ], [ -123.181297683999944, 49.206673091000027 ], [ -123.181148666999903, 49.209128764000084 ], [ -123.175668897999969, 49.208985304000066 ], [ -123.175673418999921, 49.208910953000043 ], [ -123.175486240999973, 49.208906048000067 ], [ -123.175394206999968, 49.210419501000075 ], [ -123.175387449999917, 49.210419324000071 ], [ -123.17536322899997, 49.210817600000063 ], [ -123.175269519999944, 49.21081514400003 ], [ -123.175269830999952, 49.210903465000108 ], [ -123.178565014999947, 49.210898418000056 ], [ -123.178565987999974, 49.211168275000084 ], [ -123.178977886999959, 49.211167637000059 ], [ -123.178978861999965, 49.211437495000062 ], [ -123.180214568999986, 49.211435573000053 ], [ -123.180213588999948, 49.211165716000096 ], [ -123.180625488999922, 49.211165073000139 ], [ -123.180624505999987, 49.210895216000075 ], [ -123.181448300999961, 49.210893924000096 ], [ -123.181447312999936, 49.21062406700004 ], [ -123.182271105, 49.210622770000057 ], [ -123.182270112, 49.210352913000087 ], [ -123.182682005999936, 49.210352262000121 ], [ -123.18267802799997, 49.209272833000064 ], [ -123.184737449999886, 49.209269557000027 ], [ -123.184739460999936, 49.209809272000101 ], [ -123.185151349999927, 49.209808613000078 ], [ -123.18515336599998, 49.210348326000066 ], [ -123.18638904699999, 49.210346340000072 ], [ -123.186388032000011, 49.210076483000087 ], [ -123.190918830999919, 49.210069082000118 ], [ -123.190917792, 49.209799225000054 ], [ -123.19297723599999, 49.209795803000127 ], [ -123.192978284999953, 49.210065660000026 ], [ -123.19380206699995, 49.210064280000047 ], [ -123.193803121999935, 49.21033413800005 ], [ -123.194215013999937, 49.21033344600005 ] ], [ [ -123.164143215999928, 49.209300660000039 ], [ -123.164142645999959, 49.209128034000109 ], [ -123.162906881, 49.209095510000118 ], [ -123.162907562000015, 49.20930240900001 ], [ -123.164143215999928, 49.209300660000039 ] ], [ [ -123.166609086999927, 49.207677976000063 ], [ -123.166606366999972, 49.206868403000094 ], [ -123.165811404999971, 49.206869548000064 ], [ -123.165745536999907, 49.207949078000063 ], [ -123.166198118999915, 49.207948428000073 ], [ -123.166197214999897, 49.207678569000045 ], [ -123.166609086999927, 49.207677976000063 ] ], [ [ -123.174694110999923, 49.206679579000053 ], [ -123.174778967999941, 49.205284364000129 ], [ -123.17531581599998, 49.205298436000099 ], [ -123.175336002999956, 49.204966469000048 ], [ -123.174425148999916, 49.204967847000098 ], [ -123.174424199999976, 49.204697990000092 ], [ -123.173600505999943, 49.204699231000049 ], [ -123.173599561999964, 49.204429374000085 ], [ -123.172847671999961, 49.20443050100004 ], [ -123.172711276999934, 49.206671563000086 ], [ -123.172706752999915, 49.206745894000093 ], [ -123.174686919999971, 49.206797823000038 ], [ -123.174694110999923, 49.206679579000053 ] ], [ [ -123.167276929999986, 49.205787999000044 ], [ -123.167366666999911, 49.204316390000045 ], [ -123.167332673999979, 49.204315496000099 ], [ -123.167374534999979, 49.203628985000165 ], [ -123.165771809999939, 49.20363129700003 ], [ -123.165770907999985, 49.203361438000044 ], [ -123.16206438599994, 49.203366698000067 ], [ -123.162065268999967, 49.203636557000038 ], [ -123.161653429999944, 49.20363713400009 ], [ -123.161656068999932, 49.204446707000052 ], [ -123.163303448999926, 49.20444439000007 ], [ -123.16330611599993, 49.205253962000043 ], [ -123.16371796599999, 49.205253380000073 ], [ -123.163718825999936, 49.205513713000116 ], [ -123.164062236999953, 49.205522751000068 ], [ -123.166601831999969, 49.205519115000122 ], [ -123.166602738, 49.205788972000157 ], [ -123.167276929999986, 49.205787999000044 ] ], [ [ -123.157125775999958, 49.204452958000097 ], [ -123.15712492099999, 49.204183101000076 ], [ -123.157536762999911, 49.204182540000041 ], [ -123.157535906999925, 49.203912681000126 ], [ -123.157947747999927, 49.203912119000066 ], [ -123.157946027999913, 49.203372404000092 ], [ -123.157122355999917, 49.203373527000075 ], [ -123.157120644999964, 49.202833811000055 ], [ -123.156708815999963, 49.202834370000069 ], [ -123.156707961999984, 49.202564513000063 ], [ -123.153825156999972, 49.202568388000032 ], [ -123.153829343000027, 49.203917678000046 ], [ -123.154653022999938, 49.203916578000076 ], [ -123.154653864999929, 49.204186435000047 ], [ -123.155477550999962, 49.204185329000069 ], [ -123.155478397, 49.20445518800004 ], [ -123.157125775999958, 49.204452958000097 ] ], [ [ -123.155880909999922, 49.201486195000072 ], [ -123.155878365999953, 49.200676621000106 ], [ -123.155466552999954, 49.20067717500006 ], [ -123.155465706999934, 49.200407318000018 ], [ -123.15464208399996, 49.200408423000063 ], [ -123.154638717999902, 49.199328991000037 ], [ -123.155050521999911, 49.199328439000112 ], [ -123.155049676999951, 49.199058581000074 ], [ -123.157108678999961, 49.199055798000124 ], [ -123.157109533000011, 49.199325657000017 ], [ -123.159580347999977, 49.199322270000017 ], [ -123.15957861, 49.198782553000051 ], [ -123.159166811999967, 49.198783122000052 ], [ -123.159165946999963, 49.198513263000038 ], [ -123.158342354999931, 49.198514396000064 ], [ -123.15834149399997, 49.198244537000029 ], [ -123.155870733999961, 49.198247898000091 ], [ -123.155869885999962, 49.197978040000052 ], [ -123.154222719999922, 49.197980252000072 ], [ -123.15422188299999, 49.197710393000072 ], [ -123.153398303999936, 49.197711490000131 ], [ -123.153397469999945, 49.197441631000103 ], [ -123.152573895000018, 49.197442722000062 ], [ -123.152572236999944, 49.196903006000099 ], [ -123.152160452999951, 49.196903549000119 ], [ -123.152162935999968, 49.197713124000138 ], [ -123.15175114699997, 49.197713666000091 ], [ -123.151752798999951, 49.198253382000118 ], [ -123.150929212000037, 49.198254461000019 ], [ -123.150931675999971, 49.199064036000109 ], [ -123.150108074999935, 49.199065109000109 ], [ -123.150112157999942, 49.200414400000035 ], [ -123.150523969999981, 49.200413864000083 ], [ -123.15052642699996, 49.201223438000085 ], [ -123.151350062999981, 49.201222363000106 ], [ -123.15135088699995, 49.201492220000048 ], [ -123.152586347999957, 49.201490595000116 ], [ -123.152587178999937, 49.201760453000112 ], [ -123.155469935999989, 49.201756609000022 ], [ -123.155469091999976, 49.201486750000115 ], [ -123.155880909999922, 49.201486195000072 ] ], [ [ -123.148456833999916, 49.197717947000129 ], [ -123.14886862499999, 49.197717416000074 ], [ -123.148867813999942, 49.197447558000121 ], [ -123.148456026999952, 49.19744808900009 ], [ -123.148456833999916, 49.197717947000129 ], [ -123.148045044999947, 49.197718476000034 ], [ -123.148045850999921, 49.197988334000058 ], [ -123.14433972799999, 49.197993026000077 ], [ -123.144335800999912, 49.196643733000066 ], [ -123.145982922999906, 49.196641662000076 ], [ -123.145982127999957, 49.196371805000062 ], [ -123.147629240999947, 49.196369711000102 ], [ -123.147628437999941, 49.196099852000032 ], [ -123.149275540999909, 49.196097736000056 ], [ -123.149274728999956, 49.195827877000063 ], [ -123.150098275999966, 49.195826810000071 ], [ -123.150095008999969, 49.194747376000073 ], [ -123.149683243999931, 49.194747911000043 ], [ -123.14968243099996, 49.194478052000044 ], [ -123.148035380999929, 49.194480175000045 ], [ -123.14803779699993, 49.195289750000065 ], [ -123.147626027999976, 49.195290278000115 ], [ -123.147628437999941, 49.196099852000032 ], [ -123.145569558999952, 49.196102466000113 ], [ -123.145567973999917, 49.195562750000086 ], [ -123.145156202999956, 49.195563267000082 ], [ -123.145156993999962, 49.195833126000053 ], [ -123.14474522099998, 49.195833642000068 ], [ -123.144746006999981, 49.196103501000024 ], [ -123.144334232999967, 49.196104016000106 ], [ -123.144335015999985, 49.196373875000127 ], [ -123.142687903999956, 49.196375922000101 ], [ -123.142688680999981, 49.196645779000043 ], [ -123.141453337999934, 49.196647299000084 ], [ -123.141452568999952, 49.196377441000045 ], [ -123.140629012999938, 49.196378446000089 ], [ -123.140627484, 49.195838730000055 ], [ -123.13924760899999, 49.195840402000087 ], [ -123.1391204399999, 49.197905720000072 ], [ -123.13898616499999, 49.197902155000122 ], [ -123.138986436999957, 49.197999591000013 ], [ -123.139398227999934, 49.19799909500005 ], [ -123.13939898699999, 49.198268953000145 ], [ -123.140222573999935, 49.198267956000088 ], [ -123.140223337999927, 49.198537814000062 ], [ -123.143929502999981, 49.198533255000015 ], [ -123.143930285999943, 49.198803114000071 ], [ -123.147636469999924, 49.198798436000118 ], [ -123.147635666, 49.198528577000033 ], [ -123.148459256999956, 49.19852752200012 ], [ -123.148456833999916, 49.197717947000129 ] ], [ [ -123.197025352999958, 49.191978257000045 ], [ -123.197023207999905, 49.191438541000053 ], [ -123.197846680999945, 49.191437133000072 ], [ -123.197843451999944, 49.190627559000056 ], [ -123.196608264999966, 49.190629669000067 ], [ -123.196605055999925, 49.18982009500008 ], [ -123.196193334, 49.18982079500006 ], [ -123.196192266999958, 49.189550937000071 ], [ -123.19495710699999, 49.189553029000074 ], [ -123.194956044999969, 49.189283171000078 ], [ -123.194544326999946, 49.189283865000036 ], [ -123.194543268999965, 49.189014006000079 ], [ -123.194005544999982, 49.18901491200009 ], [ -123.193856679999939, 49.19148020400003 ], [ -123.192905886999966, 49.191455434000098 ], [ -123.192910045999909, 49.192524922000096 ], [ -123.19414527899994, 49.192522853000128 ], [ -123.194144223999928, 49.192252995000096 ], [ -123.194967709999972, 49.192251607000046 ], [ -123.19496664899998, 49.191981750000132 ], [ -123.197025352999958, 49.191978257000045 ] ], [ [ -123.191258904, 49.191448231000017 ], [ -123.192547264999945, 49.191446090000063 ], [ -123.191258764999972, 49.191412504000084 ], [ -123.191258904, 49.191448231000017 ] ], [ [ -123.195361387999938, 49.187663327000024 ], [ -123.195361086, 49.187586525 ], [ -123.191655351999955, 49.187489981000112 ], [ -123.191656044999917, 49.187669535000062 ], [ -123.193714568999937, 49.187666101000026 ], [ -123.193715377999965, 49.187873319000062 ], [ -123.19407391099999, 49.187882659000053 ], [ -123.194070728999989, 49.187935363000037 ], [ -123.194950743999954, 49.187933880000095 ], [ -123.194949684999983, 49.187664022000128 ], [ -123.195361387999938, 49.187663327000024 ] ], [ [ -123.191599359999941, 49.187399769000052 ], [ -123.191648288999957, 49.186590109000129 ], [ -123.19082848499994, 49.186591466000031 ], [ -123.190827395999989, 49.18630840700007 ], [ -123.189180446999956, 49.186265444000057 ], [ -123.189180671999964, 49.186324316000054 ], [ -123.18876897899996, 49.186324991000085 ], [ -123.188772056999966, 49.187134565000065 ], [ -123.189595458999946, 49.187133216000078 ], [ -123.189596489999971, 49.187403074000066 ], [ -123.191599359999941, 49.187399769000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.726275631855031", "sL_AssetLoss": "20970", "sL_BldgLoss": "15230", "sL_StrLoss": "6030", "sL_NStrLoss": "9200", "sL_ContLoss": "5740", "geom_point": "0101000020E6100000DFBD691B3BC95EC055F235F4E4994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143940783999966, 49.202420576000108 ], [ -123.143940467, 49.202311270000067 ], [ -123.143471531, 49.202311854000115 ], [ -123.142291813999947, 49.201845157000065 ], [ -123.142290557999971, 49.201407300000035 ], [ -123.142264293000025, 49.201834270000091 ], [ -123.14126948799999, 49.201440707000081 ], [ -123.141102409999945, 49.201332398000055 ], [ -123.141005985, 49.201054691000053 ], [ -123.141638085999915, 49.200982096000125 ], [ -123.142308761999956, 49.201111358000063 ], [ -123.142301226999948, 49.201233865000091 ], [ -123.142643843999977, 49.201233443000035 ], [ -123.143071004999967, 49.20142630200008 ], [ -123.143437113999966, 49.20159159800005 ], [ -123.14375921099996, 49.201694002000046 ], [ -123.143823010999967, 49.201714280000033 ], [ -123.14391510899999, 49.20174358400007 ], [ -123.143938840999979, 49.201751130000034 ], [ -123.143939683, 49.202041413000046 ], [ -123.144776783999959, 49.202040366000027 ], [ -123.145101894999982, 49.202190981000093 ], [ -123.145196800999884, 49.202234933000078 ], [ -123.145206973999933, 49.202239644000052 ], [ -123.145258697999921, 49.202263607000056 ], [ -123.145642906999967, 49.202441594000064 ], [ -123.146135583999921, 49.202669827000072 ], [ -123.146401284999953, 49.202792897000023 ], [ -123.146432787999942, 49.202807476000068 ], [ -123.146948665999943, 49.203046437000104 ], [ -123.1468995769999, 49.203845735000179 ], [ -123.145790507999891, 49.203341999 ], [ -123.14466441799999, 49.202920394000046 ], [ -123.144059383999931, 49.202544400000079 ], [ -123.143732404999923, 49.202415053000074 ], [ -123.143940783999966, 49.202420576000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4809250", "BldgCostT": "2845000", "sL_LossRatio": "0.649401763224181", "sL_AssetLoss": "44464", "sL_BldgLoss": "28875", "sL_StrLoss": "12490", "sL_NStrLoss": "16385", "sL_ContLoss": "15589", "geom_point": "0101000020E61000002F0CA2FFEFCE5EC024317BB8689D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.242117056999959, 49.235339797000016 ], [ -123.242115739000013, 49.235069943000035 ], [ -123.241703641999962, 49.23507080600011 ], [ -123.241704391999946, 49.235224677000062 ], [ -123.241408488999966, 49.235070507000039 ], [ -123.238832516999977, 49.23349250300015 ], [ -123.237786901999982, 49.232964109000086 ], [ -123.237158519999952, 49.232563024000044 ], [ -123.237157651999922, 49.232381649000089 ], [ -123.236875272999939, 49.232382229000116 ], [ -123.234134501999932, 49.230632697000047 ], [ -123.231310813999983, 49.229000589000044 ], [ -123.227718019999912, 49.227110605000078 ], [ -123.226149799, 49.226501101000096 ], [ -123.225179395999959, 49.226229470000085 ], [ -123.22517925799994, 49.226198885000031 ], [ -123.225030117999964, 49.226199176000129 ], [ -123.224354692999924, 49.22608631300006 ], [ -123.224347878999978, 49.224581354000058 ], [ -123.22506810699997, 49.224579952000092 ], [ -123.225998233999974, 49.225085497000073 ], [ -123.225999612999928, 49.225387709000131 ], [ -123.226552285999929, 49.22538662500007 ], [ -123.226824325999985, 49.225534480000078 ], [ -123.22682488199996, 49.225655949000021 ], [ -123.22704702399993, 49.225655513000028 ], [ -123.227237378999973, 49.225758968000072 ], [ -123.2272381399999, 49.225924995000128 ], [ -123.227541767999952, 49.225924398000089 ], [ -123.228841408999983, 49.226630702000044 ], [ -123.229694187999925, 49.226791610000078 ], [ -123.230794308999975, 49.227238805000113 ], [ -123.232392088999916, 49.228279901000093 ], [ -123.233250598, 49.229348112000103 ], [ -123.233456505000021, 49.229446292000034 ], [ -123.234405389999907, 49.22958018900006 ], [ -123.235085725999951, 49.229951906000039 ], [ -123.235085751, 49.229957163000073 ], [ -123.235095312999974, 49.229957144000089 ], [ -123.235781777999932, 49.230332196000134 ], [ -123.23591187000001, 49.230377399000062 ], [ -123.235912429999942, 49.230495193000046 ], [ -123.23624889899996, 49.230494506000113 ], [ -123.236324616999966, 49.230520814000073 ], [ -123.236325777999951, 49.230764206000096 ], [ -123.236737839999975, 49.230763363000101 ], [ -123.236739129999961, 49.231033219000039 ], [ -123.237151191999928, 49.231032373000041 ], [ -123.237152483999949, 49.231302228000132 ], [ -123.237602455999962, 49.231301303000059 ], [ -123.238391223999926, 49.23182806300008 ], [ -123.238391278999956, 49.231839395000073 ], [ -123.238408138999915, 49.231839360000031 ], [ -123.238661400999945, 49.232008489000037 ], [ -123.239309106999897, 49.232538304000066 ], [ -123.239709011999963, 49.233005387000084 ], [ -123.240123376999975, 49.233220495000111 ], [ -123.240871182999982, 49.233372784000089 ], [ -123.240871574999957, 49.233453397000112 ], [ -123.241062239999948, 49.233452999000114 ], [ -123.241284272999934, 49.23357871100005 ], [ -123.241284972999978, 49.233722391000043 ], [ -123.241537113999954, 49.233721865000049 ], [ -123.241567195999977, 49.233738896000013 ], [ -123.241697958999936, 49.233906253000029 ], [ -123.241698374999928, 49.233991385000103 ], [ -123.241764370999974, 49.233991247000048 ], [ -123.242437407999944, 49.234852592000067 ], [ -123.243002025999914, 49.234922404 ], [ -123.243351898999975, 49.235040425000143 ], [ -123.243353355999943, 49.23533720000006 ], [ -123.242117056999959, 49.235339797000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.615116320880227", "sL_AssetLoss": "278110", "sL_BldgLoss": "171070", "sL_StrLoss": "78090", "sL_NStrLoss": "92980", "sL_ContLoss": "107040", "geom_point": "0101000020E6100000A4A0C2AE39CD5EC02475C8EEFE984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.204912465999939, 49.197857006000106 ], [ -123.204997296999977, 49.196446846000079 ], [ -123.203931117999971, 49.196419184000042 ], [ -123.204147592999945, 49.19282164500008 ], [ -123.208831029999914, 49.192943081000081 ], [ -123.209179323999976, 49.192952104000078 ], [ -123.208878770999902, 49.197959820000051 ], [ -123.208573782999977, 49.197951920000023 ], [ -123.204912465999939, 49.197857006000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.736503856041131", "sL_AssetLoss": "15560", "sL_BldgLoss": "11460", "sL_StrLoss": "4670", "sL_NStrLoss": "6790", "sL_ContLoss": "4100", "geom_point": "0101000020E6100000B2C11D030DCC5EC0239DC3AD699A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.188436203999956, 49.207104712000039 ], [ -123.188435178999924, 49.206834855000096 ], [ -123.186787721999949, 49.206837529000076 ], [ -123.186787059999958, 49.206661636000028 ], [ -123.18678670599995, 49.206567672000048 ], [ -123.186374842999953, 49.206568338000082 ], [ -123.18637180199994, 49.205758766000024 ], [ -123.189666642999939, 49.205753402 ], [ -123.18966767299996, 49.206023260000109 ], [ -123.190079530999967, 49.206022583000021 ], [ -123.190081953999965, 49.206654624000109 ], [ -123.190082633999907, 49.20683215500005 ], [ -123.189670770999982, 49.206832833000078 ], [ -123.189671801999935, 49.207102689000031 ], [ -123.188436203999956, 49.207104712000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.782865583456425", "sL_AssetLoss": "6770", "sL_BldgLoss": "5300", "sL_StrLoss": "2540", "sL_NStrLoss": "2760", "sL_ContLoss": "1470", "geom_point": "0101000020E610000021C43AFAC4CF5EC0700DA6406A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.247170598999944, 49.238836112000087 ], [ -123.246298619999934, 49.237874807000026 ], [ -123.245370905999934, 49.237235330000054 ], [ -123.244908086999914, 49.236916295000064 ], [ -123.244357613999966, 49.236790997000078 ], [ -123.2434889099999, 49.236154398000053 ], [ -123.24335703499996, 49.236085693000064 ], [ -123.24335600799999, 49.235876910000115 ], [ -123.244667777999936, 49.235874140000064 ], [ -123.244904785999893, 49.23627680500006 ], [ -123.245137285999959, 49.236393590000034 ], [ -123.245831773999939, 49.236505099000098 ], [ -123.24583398799993, 49.236951094000077 ], [ -123.24654023399998, 49.236949589000055 ], [ -123.246659191999967, 49.237145839000071 ], [ -123.246659557, 49.237219192000047 ], [ -123.246703598999957, 49.237219098000068 ], [ -123.247067419999951, 49.237819296000048 ], [ -123.247343706999942, 49.238035696000047 ], [ -123.247900510999955, 49.238137390000134 ], [ -123.247901304999971, 49.238295965000077 ], [ -123.248190866999977, 49.238295343000054 ], [ -123.24872130599999, 49.238598310000057 ], [ -123.249141833999886, 49.239119642000027 ], [ -123.249143105999934, 49.239372723000024 ], [ -123.24825515899991, 49.239374636 ], [ -123.247624597999959, 49.238997098000084 ], [ -123.247170598999944, 49.238836112000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.769811320754717", "sL_AssetLoss": "7950", "sL_BldgLoss": "6120", "sL_StrLoss": "2820", "sL_NStrLoss": "3300", "sL_ContLoss": "1830", "geom_point": "0101000020E6100000BB98A8D6E9CC5EC057312AE33E974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.201518324999967, 49.183065128000052 ], [ -123.201516134999949, 49.182525411000093 ], [ -123.201104473999962, 49.182526128000084 ], [ -123.201102286, 49.1819864120001 ], [ -123.200690628999936, 49.181987128000088 ], [ -123.200687354999971, 49.181177553000083 ], [ -123.200275703999935, 49.181178268000068 ], [ -123.200272042999927, 49.180271114000156 ], [ -123.201507976999963, 49.180515951000068 ], [ -123.201508464999975, 49.180636403000094 ], [ -123.20211073899999, 49.180635350000038 ], [ -123.202422488999929, 49.180697103000064 ], [ -123.20274402599992, 49.180786669000035 ], [ -123.20274450699999, 49.180904100000099 ], [ -123.203156153999942, 49.180903377000043 ], [ -123.203159466999949, 49.181712951000122 ], [ -123.202747812999917, 49.181713675000019 ], [ -123.202753325999979, 49.183062966000108 ], [ -123.201518324999967, 49.183065128000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.726172465960666", "sL_AssetLoss": "19830", "sL_BldgLoss": "14400", "sL_StrLoss": "5660", "sL_NStrLoss": "8740", "sL_ContLoss": "5430", "geom_point": "0101000020E610000074C728F04ACD5EC072AF06077F994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.207352695999973, 49.200055963000068 ], [ -123.20735156799995, 49.199786106000097 ], [ -123.206527958999985, 49.199787581000109 ], [ -123.206522338999889, 49.198438295000102 ], [ -123.208548987999933, 49.198434654000067 ], [ -123.208850300999941, 49.198434109000075 ], [ -123.208797976999932, 49.199305793000114 ], [ -123.208650515999963, 49.200053626000063 ], [ -123.208442837999925, 49.200054001000098 ], [ -123.207352695999973, 49.200055963000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "0.608531583264971", "sL_AssetLoss": "182850", "sL_BldgLoss": "111270", "sL_StrLoss": "52530", "sL_NStrLoss": "58740", "sL_ContLoss": "71580", "geom_point": "0101000020E6100000449293680DCC5EC0652B5878D1964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.189980297999952, 49.180116222000066 ], [ -123.189979264, 49.179846363000109 ], [ -123.188940248999955, 49.179848068000098 ], [ -123.188331739999981, 49.179594789000092 ], [ -123.18833065699999, 49.179309344000082 ], [ -123.187544555999921, 49.179310622000131 ], [ -123.187507335999967, 49.179297361000096 ], [ -123.187506366999969, 49.17904082400004 ], [ -123.186790650999981, 49.179041985000019 ], [ -123.186737206999965, 49.179022941000035 ], [ -123.186270768, 49.178856740000157 ], [ -123.186269441, 49.178503105000068 ], [ -123.185857812999984, 49.178503768000063 ], [ -123.185856801999989, 49.178233910000067 ], [ -123.18539769799996, 49.178234648000071 ], [ -123.185396599999976, 49.178018106000131 ], [ -123.185545807, 49.177630683000181 ], [ -123.185916013999986, 49.1771080890001 ], [ -123.186130591999941, 49.176884168000122 ], [ -123.186674980999925, 49.176883288000099 ], [ -123.186674238999956, 49.176686047000054 ], [ -123.186818893999941, 49.176648015000126 ], [ -123.188733020999962, 49.176870437000055 ], [ -123.188733057999954, 49.176879944000113 ], [ -123.18881370099993, 49.176879812000045 ], [ -123.189556621999955, 49.176966129000128 ], [ -123.189559378999945, 49.177688171000071 ], [ -123.189147758, 49.177688846000088 ], [ -123.189148785999961, 49.177958704000062 ], [ -123.190795282999915, 49.177955997000069 ], [ -123.190797357999941, 49.178495713000117 ], [ -123.191208985999978, 49.17849503300004 ], [ -123.191209785999931, 49.178702399000045 ], [ -123.191066085999978, 49.178799997000048 ], [ -123.190793510999953, 49.179151806000107 ], [ -123.190550104999943, 49.180006286000065 ], [ -123.190411065999967, 49.180115512000036 ], [ -123.189980297999952, 49.180116222000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.744210769586318", "sL_AssetLoss": "21635", "sL_BldgLoss": "16101", "sL_StrLoss": "6861", "sL_NStrLoss": "9240", "sL_ContLoss": "5534", "geom_point": "0101000020E6100000A3F2866624C85EC0606F6AB916814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12854811399994, 49.006785408000084 ], [ -123.128848695, 49.006568992000041 ], [ -123.129394982999912, 49.006559002000095 ], [ -123.129749911999966, 49.006459298000046 ], [ -123.130295595999939, 49.006171589000054 ], [ -123.130342969999973, 49.006136518000119 ], [ -123.131267800999979, 49.006135469000064 ], [ -123.13147849299996, 49.006274629000075 ], [ -123.131478835999985, 49.006405097000048 ], [ -123.131675684, 49.006404873000122 ], [ -123.131889420999954, 49.006546040000039 ], [ -123.131889759, 49.006674496000102 ], [ -123.132083573999964, 49.006674275000115 ], [ -123.132300350999969, 49.006817450000014 ], [ -123.132302114999945, 49.007483629000056 ], [ -123.13189189799999, 49.007484099000074 ], [ -123.131892609999952, 49.007753966000053 ], [ -123.128610843999979, 49.007757670000096 ], [ -123.128612234999977, 49.008297405000128 ], [ -123.128202008999921, 49.008297861000116 ], [ -123.128202701999939, 49.008567729000063 ], [ -123.127792473999975, 49.008568184000076 ], [ -123.127794546, 49.009377786000123 ], [ -123.126974076999957, 49.009378692000027 ], [ -123.126974763999939, 49.009648560000059 ], [ -123.126564528999964, 49.009649010000018 ], [ -123.126565210999956, 49.009918878000121 ], [ -123.126154972999927, 49.009919326000052 ], [ -123.126155654999934, 49.010189194000134 ], [ -123.12574541399999, 49.010189642000135 ], [ -123.125746093999922, 49.01045951 ], [ -123.125335850999974, 49.010459956000041 ], [ -123.125336528999981, 49.010729823000119 ], [ -123.12492628299999, 49.01073026800006 ], [ -123.124927633999974, 49.011270002000096 ], [ -123.122876385999973, 49.011272206000065 ], [ -123.122875555999912, 49.010935430000124 ], [ -123.123033116999949, 49.010776102000129 ], [ -123.123239151999968, 49.010192345000114 ], [ -123.1232839689999, 49.010192299000046 ], [ -123.123283657999977, 49.010066246000065 ], [ -123.123331707999967, 49.00993010500008 ], [ -123.123337118999984, 49.009922373000101 ], [ -123.123693541999955, 49.009921991000084 ], [ -123.123692455, 49.009483162000045 ], [ -123.124891635000012, 49.008571360000147 ], [ -123.12492088099999, 49.008571329000048 ], [ -123.124920826999983, 49.008549163000083 ], [ -123.125957875999944, 49.0077605970001 ], [ -123.126149517999977, 49.007760388000058 ], [ -123.126149152999957, 49.007615147000152 ], [ -123.126279400999977, 49.007516103000029 ], [ -123.126702592999962, 49.007264013000047 ], [ -123.126872861999985, 49.007219858000049 ], [ -123.127378805999953, 49.007219301000134 ], [ -123.127378470999957, 49.007088740000015 ], [ -123.127917947999947, 49.006948836000028 ], [ -123.128198543999986, 49.006948524000073 ], [ -123.128198357999977, 49.006876114000065 ], [ -123.12854811399994, 49.006785408000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6690000", "BldgCostT": "4350000", "sL_LossRatio": "0.657278701118043", "sL_AssetLoss": "192658", "sL_BldgLoss": "126630", "sL_StrLoss": "55410", "sL_NStrLoss": "71220", "sL_ContLoss": "66028", "geom_point": "0101000020E61000007087B8FFE9CA5EC079623145148D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170793222999933, 49.107013615000021 ], [ -123.170791369999904, 49.106473889000043 ], [ -123.169969303999963, 49.106475103000086 ], [ -123.169968381999965, 49.106205241000048 ], [ -123.169557352, 49.106205845 ], [ -123.169555511999988, 49.10566612000013 ], [ -123.169144485999951, 49.105666723000098 ], [ -123.16914178799999, 49.10487293100006 ], [ -123.165516192999959, 49.104777411000043 ], [ -123.165560308999943, 49.104052737000103 ], [ -123.165439863999921, 49.104052910000071 ], [ -123.165441657999963, 49.104592635000131 ], [ -123.164208605999988, 49.104594396000024 ], [ -123.16420593399999, 49.103784808000107 ], [ -123.163707271999968, 49.103785516000066 ], [ -123.164323307999965, 49.103586091000111 ], [ -123.167827389999957, 49.103059089000055 ], [ -123.169729993999965, 49.102696014000088 ], [ -123.170072877999957, 49.10256069800004 ], [ -123.170496917999913, 49.102075006000064 ], [ -123.170591302999938, 49.101902702000181 ], [ -123.170494199999936, 49.101570786000067 ], [ -123.169891209999918, 49.101328692000074 ], [ -123.169028911999959, 49.101455499000053 ], [ -123.168247713999961, 49.101448387000062 ], [ -123.166603678999948, 49.101576494 ], [ -123.16631522499992, 49.101666305000101 ], [ -123.166139499999986, 49.10182858800006 ], [ -123.165852000999976, 49.102288610000066 ], [ -123.165665383999951, 49.102326592000118 ], [ -123.165735210999955, 49.10117944400011 ], [ -123.16584131299993, 49.101182241000082 ], [ -123.165839187999921, 49.100544107000061 ], [ -123.166646454999963, 49.100542944000047 ], [ -123.166730783999981, 49.099156962000045 ], [ -123.16835905399999, 49.099199863000052 ], [ -123.168359816999924, 49.099187303000079 ], [ -123.173826648999977, 49.099331159 ], [ -123.17381547, 49.099515351000058 ], [ -123.17546170199995, 49.099558616000131 ], [ -123.175370038999972, 49.101069750000136 ], [ -123.176526686999964, 49.101067987000121 ], [ -123.17652955899996, 49.101877574000063 ], [ -123.175320924999966, 49.101879416000074 ], [ -123.17524344499995, 49.103156613000046 ], [ -123.174867008999925, 49.103146722000055 ], [ -123.17484744799998, 49.103469121000103 ], [ -123.174162086, 49.103451109000041 ], [ -123.174161318999921, 49.103463738000031 ], [ -123.171077165999947, 49.103382631000052 ], [ -123.170987743999916, 49.104854418000073 ], [ -123.171196832999939, 49.104854107000051 ], [ -123.171201474999975, 49.10620341900006 ], [ -123.172023535999926, 49.106202196000019 ], [ -123.172026334999927, 49.1070117840001 ], [ -123.170793222999933, 49.107013615000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52127084", "BldgCostT": "34213334", "sL_LossRatio": "0.664337582279804", "sL_AssetLoss": "1378224", "sL_BldgLoss": "915606", "sL_StrLoss": "378040", "sL_NStrLoss": "537566", "sL_ContLoss": "462618", "geom_point": "0101000020E6100000447EBBF4C8C75EC06F3F328064894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.106755327999934, 49.085840271000023 ], [ -123.106735205999883, 49.085150838000047 ], [ -123.107684587999984, 49.084850496000058 ], [ -123.108592576999953, 49.084563195000072 ], [ -123.108616653999931, 49.084059881 ], [ -123.108633055000027, 49.083716649000081 ], [ -123.108785693, 49.08052388300009 ], [ -123.108811516999978, 49.079983823000134 ], [ -123.109128859999913, 49.073344615000103 ], [ -123.109185596999964, 49.072157255000036 ], [ -123.109293456999936, 49.069899348000042 ], [ -123.109319688999975, 49.069350622000037 ], [ -123.109521705999924, 49.065122364000075 ], [ -123.109606397999983, 49.063349309000031 ], [ -123.10991640599994, 49.061284404000084 ], [ -123.109919216999941, 49.060912544000132 ], [ -123.10992953899995, 49.059540893000126 ], [ -123.109930228999986, 49.059450978000065 ], [ -123.109930364999983, 49.059432700000066 ], [ -123.112509589999945, 49.059502073000075 ], [ -123.112389752999945, 49.061436347000033 ], [ -123.112959592999971, 49.061451666000089 ], [ -123.112862252999918, 49.063022979000031 ], [ -123.112895490999961, 49.063023872000016 ], [ -123.112869301999922, 49.063446617000068 ], [ -123.112824609999933, 49.064168019000107 ], [ -123.112766253999936, 49.065109972000052 ], [ -123.112777722, 49.065110280000056 ], [ -123.11276906800002, 49.065249966000081 ], [ -123.11490000199997, 49.06530722100009 ], [ -123.114966963, 49.064225581000095 ], [ -123.115011233999894, 49.063510442000045 ], [ -123.115087531999947, 49.062277896000118 ], [ -123.120549869999977, 49.062424467000042 ], [ -123.120546879999964, 49.062472875000054 ], [ -123.125619293999975, 49.062608734000079 ], [ -123.12554436399995, 49.063823624000051 ], [ -123.122565382999966, 49.063735171000111 ], [ -123.122555811999916, 49.064218955000072 ], [ -123.122077467999986, 49.064187349000072 ], [ -123.122128052999969, 49.063722166000112 ], [ -123.11958424, 49.063646562000073 ], [ -123.1194157, 49.069062514000116 ], [ -123.117206018999966, 49.06900324 ], [ -123.117203495999959, 49.069044026000036 ], [ -123.116162406999976, 49.069016084000054 ], [ -123.116086217999921, 49.070247150000071 ], [ -123.115761463999931, 49.070238432000053 ], [ -123.115736324999929, 49.070644557000044 ], [ -123.113023416999951, 49.070571688000058 ], [ -123.112996503999966, 49.071006057000034 ], [ -123.116933635999914, 49.071111786000131 ], [ -123.116710993999973, 49.074709822000059 ], [ -123.115898193999953, 49.074688006000031 ], [ -123.115830618999937, 49.075779640000057 ], [ -123.11216096, 49.075681071000105 ], [ -123.11215772599995, 49.075733245 ], [ -123.116453240999988, 49.075848612000108 ], [ -123.116328038999967, 49.077871486000099 ], [ -123.116582459999933, 49.077878314000024 ], [ -123.116559844, 49.078243738000047 ], [ -123.116588781999965, 49.078244515000115 ], [ -123.116366080999939, 49.081842509000055 ], [ -123.116225985999947, 49.08183875000001 ], [ -123.11618531, 49.08249581200009 ], [ -123.115399455999921, 49.082474720000022 ], [ -123.11538398099999, 49.082724618000114 ], [ -123.116103874999965, 49.082743941000118 ], [ -123.116063480999969, 49.083396427000054 ], [ -123.120922467999975, 49.08352671500004 ], [ -123.12105582, 49.081368997000091 ], [ -123.121495794999959, 49.081380783000036 ], [ -123.121575370999921, 49.080092907000093 ], [ -123.12186204299999, 49.080100585000018 ], [ -123.121867532999957, 49.080011724000066 ], [ -123.121620879999966, 49.080005117000077 ], [ -123.121628198999957, 49.079886667000068 ], [ -123.120823057999985, 49.079865096000091 ], [ -123.120885639999926, 49.078852466000029 ], [ -123.119583475999917, 49.078817566000055 ], [ -123.119805915, 49.075219549000096 ], [ -123.124382486999963, 49.075342134000017 ], [ -123.12438332499994, 49.075328560000052 ], [ -123.125116445999979, 49.075348179000059 ], [ -123.125170842999921, 49.074466578000084 ], [ -123.125628321999955, 49.07447881700012 ], [ -123.125657448999931, 49.074006688000026 ], [ -123.126880389999954, 49.074039398000082 ], [ -123.126960165999989, 49.072745616000056 ], [ -123.127026353999923, 49.07274738600006 ], [ -123.127098787999955, 49.07157259300002 ], [ -123.122684840999952, 49.071454468000113 ], [ -123.122793499999943, 49.069694735000112 ], [ -123.128253052999966, 49.069900613000115 ], [ -123.128247367999961, 49.069992871000082 ], [ -123.128321144999944, 49.069994844000092 ], [ -123.128326780999956, 49.069903391000025 ], [ -123.130471189999952, 49.069984178000027 ], [ -123.130477833, 49.069542931000036 ], [ -123.132004093999981, 49.06958368800008 ], [ -123.132005943999971, 49.069553630000037 ], [ -123.133199009999942, 49.069585474000085 ], [ -123.133224917999968, 49.069164358000073 ], [ -123.137046920000017, 49.069266282000079 ], [ -123.137128430999937, 49.067939550000077 ], [ -123.138838433999979, 49.067985107000041 ], [ -123.138857774999948, 49.067670091000096 ], [ -123.139425488999962, 49.067685210000029 ], [ -123.139428153999972, 49.067641805000093 ], [ -123.142979019999984, 49.067736301000096 ], [ -123.14301233499999, 49.067192891000076 ], [ -123.146169166999954, 49.067276802000073 ], [ -123.14622084899996, 49.066432867000039 ], [ -123.148531806999941, 49.066494235000079 ], [ -123.148573689999949, 49.065809723 ], [ -123.15403654699999, 49.065954592000082 ], [ -123.153891977999947, 49.068321763000021 ], [ -123.153188212999922, 49.068325741000109 ], [ -123.152810508999963, 49.068327897000103 ], [ -123.152472897999971, 49.068329813000098 ], [ -123.151036511999934, 49.068476496000052 ], [ -123.150475606999947, 49.068665897000116 ], [ -123.149558380999949, 49.068730001000077 ], [ -123.147724796999967, 49.069299687000097 ], [ -123.146698308999945, 49.069372304000055 ], [ -123.145263782999962, 49.069649150000089 ], [ -123.143974812999943, 49.069897892000014 ], [ -123.143276888999964, 49.069943400000085 ], [ -123.143100841999939, 49.070017218000082 ], [ -123.142675719999943, 49.070195504000026 ], [ -123.141910205, 49.070188409000089 ], [ -123.141020212999976, 49.070477502000088 ], [ -123.140472997999922, 49.070468994000095 ], [ -123.139540892999946, 49.070604304000071 ], [ -123.138938783999961, 49.070819509000039 ], [ -123.138883386999979, 49.07083929100002 ], [ -123.138340101999987, 49.071033472000046 ], [ -123.138022708999955, 49.071146891000069 ], [ -123.136785790999966, 49.071422115000082 ], [ -123.136035641999925, 49.071589009000121 ], [ -123.135340820999915, 49.071743603000073 ], [ -123.134992031999957, 49.071954715000118 ], [ -123.133256312999919, 49.073005395000074 ], [ -123.132348004999983, 49.073555201000055 ], [ -123.131880011999954, 49.073929921000079 ], [ -123.130053423999954, 49.075392504000021 ], [ -123.129588104999982, 49.075869594000096 ], [ -123.129369708999931, 49.076238389000075 ], [ -123.128523808999944, 49.07690498400013 ], [ -123.128058205999977, 49.077473191000081 ], [ -123.127408988999889, 49.078802040000035 ], [ -123.127240602999933, 49.07914670400001 ], [ -123.12673524, 49.079606537000096 ], [ -123.126379704999977, 49.079929994000068 ], [ -123.1262562899999, 49.080188217000085 ], [ -123.12569960899998, 49.081352799000136 ], [ -123.124485600999975, 49.082936510000103 ], [ -123.124034790999971, 49.083323905000114 ], [ -123.123902454999936, 49.083541093000065 ], [ -123.123392613999926, 49.084377806000091 ], [ -123.122815184999951, 49.085020058000119 ], [ -123.121040851999936, 49.084972540000145 ], [ -123.120975123999969, 49.084970779000066 ], [ -123.120971609999955, 49.085027630000056 ], [ -123.120907531999933, 49.086064366000059 ], [ -123.119754396999966, 49.086009902000079 ], [ -123.117685210999966, 49.085606897000098 ], [ -123.114931907000013, 49.08559980800004 ], [ -123.114316288999973, 49.085403195000012 ], [ -123.113671282999945, 49.085367597000115 ], [ -123.112944303999953, 49.085179597000042 ], [ -123.11256159, 49.085323494000107 ], [ -123.109795111999986, 49.085551289000094 ], [ -123.108495790999939, 49.085534303000045 ], [ -123.107988907, 49.085625390000097 ], [ -123.107769600999958, 49.085742193000016 ], [ -123.107509187999938, 49.085733597000065 ], [ -123.10674178499994, 49.085896003000094 ], [ -123.106724045999897, 49.08590124500013 ], [ -123.106755327999934, 49.085840271000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.737165713530131", "sL_AssetLoss": "30251", "sL_BldgLoss": "22300", "sL_StrLoss": "9380", "sL_NStrLoss": "12920", "sL_ContLoss": "7951", "geom_point": "0101000020E6100000E484C786C7CB5EC065146803F28D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.182312737999908, 49.109853048000069 ], [ -123.182312156999942, 49.10969463400005 ], [ -123.181350187999939, 49.109696150000076 ], [ -123.17984451800001, 49.109343910000071 ], [ -123.179842873999974, 49.108888917000073 ], [ -123.18107603199999, 49.108886988000094 ], [ -123.181075050999937, 49.108617126000055 ], [ -123.182308201999945, 49.108615186000087 ], [ -123.182307213999962, 49.108345323000073 ], [ -123.182718261000019, 49.108344674000101 ], [ -123.18271628, 49.107804950000016 ], [ -123.184360454999961, 49.107802335000045 ], [ -123.184361454999987, 49.108072198000123 ], [ -123.186005639, 49.108069560000061 ], [ -123.186004629999971, 49.107799699000019 ], [ -123.187026284999931, 49.107798048000063 ], [ -123.187039699999929, 49.107958409000112 ], [ -123.187165398999952, 49.108677696000036 ], [ -123.18710144399995, 49.10954171800006 ], [ -123.187101413999969, 49.109542108000078 ], [ -123.186448745999911, 49.109688027000075 ], [ -123.186447577999928, 49.109688029000012 ], [ -123.186011691999951, 49.109688732000052 ], [ -123.186012053999917, 49.109785480000085 ], [ -123.186012052999928, 49.109785658000085 ], [ -123.18523288499992, 49.109959848000067 ], [ -123.185232749999926, 49.109959848000067 ], [ -123.18436845399998, 49.109961232000067 ], [ -123.184368492999937, 49.10997153900005 ], [ -123.182759001999969, 49.109918111000063 ], [ -123.182312737999908, 49.109853048000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6848917", "BldgCostT": "4251667", "sL_LossRatio": "0.622268223381041", "sL_AssetLoss": "151687", "sL_BldgLoss": "94390", "sL_StrLoss": "34170", "sL_NStrLoss": "60220", "sL_ContLoss": "57297", "geom_point": "0101000020E610000082A1715557CB5EC091F915A5638C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175261778999939, 49.099482284 ], [ -123.175361918999926, 49.097831394000146 ], [ -123.175282317999987, 49.097831515000045 ], [ -123.175281437999956, 49.097581474 ], [ -123.174568273999938, 49.097562733000139 ], [ -123.173226569999883, 49.097564754000139 ], [ -123.173225630999966, 49.097294891000075 ], [ -123.172403716999952, 49.09729612200006 ], [ -123.172400911999929, 49.096486534000107 ], [ -123.173222813999985, 49.096485303000144 ], [ -123.173221874999939, 49.096215441000034 ], [ -123.17392681799997, 49.096214381000074 ], [ -123.174064482999981, 49.093945726000115 ], [ -123.179530717999938, 49.094089294000064 ], [ -123.179415749000015, 49.095987608000023 ], [ -123.180946483999918, 49.096027761000116 ], [ -123.180728666999968, 49.099625788000047 ], [ -123.175261778999939, 49.099482284 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.733005112668055", "sL_AssetLoss": "52810", "sL_BldgLoss": "38710", "sL_StrLoss": "16630", "sL_NStrLoss": "22080", "sL_ContLoss": "14100", "geom_point": "0101000020E61000007317FE5FF7C85EC084A0FE0EA0874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137647991999955, 49.057566932000022 ], [ -123.139903337999954, 49.057627016000048 ], [ -123.141627707999945, 49.0582420900001 ], [ -123.143041230999955, 49.058831859000115 ], [ -123.142889290999932, 49.061310522000078 ], [ -123.137427013999968, 49.06116508499999 ], [ -123.137647991999955, 49.057566932000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16804917", "BldgCostT": "9851667", "sL_LossRatio": "0.62170910110355", "sL_AssetLoss": "392370", "sL_BldgLoss": "243940", "sL_StrLoss": "114080", "sL_NStrLoss": "129860", "sL_ContLoss": "148430", "geom_point": "0101000020E6100000A1F2F101A8C85EC06F18A296288A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13010878599999, 49.081005307000027 ], [ -123.130560928999941, 49.080471408000065 ], [ -123.130686949, 49.080322589000083 ], [ -123.130879723999925, 49.080094994000142 ], [ -123.131527195999979, 49.079330406000075 ], [ -123.1317713709999, 49.079121460000067 ], [ -123.132459695999941, 49.078532373000058 ], [ -123.132716846999983, 49.078312300000029 ], [ -123.132948681999906, 49.078113891000122 ], [ -123.133066542, 49.078117035000062 ], [ -123.13307329699991, 49.078007242000048 ], [ -123.133263006999968, 49.077844881000026 ], [ -123.133359294999963, 49.07760139600007 ], [ -123.134453195999953, 49.077033105000034 ], [ -123.135703424999946, 49.076228890000017 ], [ -123.136680413999954, 49.07560040800012 ], [ -123.137691095999926, 49.075056836000087 ], [ -123.137718484999965, 49.075042099000022 ], [ -123.139659318000028, 49.073993799000078 ], [ -123.141633597999913, 49.07404634200001 ], [ -123.141412849999966, 49.077644412000083 ], [ -123.138573408999918, 49.077568833000157 ], [ -123.138482811999936, 49.079043879000082 ], [ -123.135076452999954, 49.078953112000065 ], [ -123.134956260999928, 49.080907539000123 ], [ -123.135439547999937, 49.080920424000105 ], [ -123.135218288000019, 49.084518442000061 ], [ -123.130114147999933, 49.084382257000136 ], [ -123.130168703999956, 49.083407895000128 ], [ -123.129898982999919, 49.082648843000136 ], [ -123.129865353999961, 49.082554230000063 ], [ -123.12990095, 49.08197646600005 ], [ -123.130066543999973, 49.08120269900008 ], [ -123.13010878599999, 49.081005307000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.871663827370812", "sL_AssetLoss": "1761", "sL_BldgLoss": "1535", "sL_StrLoss": "601", "sL_NStrLoss": "934", "sL_ContLoss": "226", "geom_point": "0101000020E61000000CFF2B23DCCB5EC0D44809C99B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.184354457, 49.106183163000026 ], [ -123.184349457999971, 49.104833853000081 ], [ -123.18558251499995, 49.104831878000041 ], [ -123.18558553499993, 49.105641464000058 ], [ -123.18677782099999, 49.105639541000045 ], [ -123.186818808999973, 49.105691899000078 ], [ -123.186824691999902, 49.107258647000037 ], [ -123.185180532999965, 49.107261297000072 ], [ -123.18518153899997, 49.107531158000015 ], [ -123.183948413999985, 49.107533130000071 ], [ -123.183943426, 49.106183819000073 ], [ -123.184354457, 49.106183163000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26629250", "BldgCostT": "17420000", "sL_LossRatio": "0.702158278023896", "sL_AssetLoss": "309923", "sL_BldgLoss": "217615", "sL_StrLoss": "96665", "sL_NStrLoss": "120950", "sL_ContLoss": "92308", "geom_point": "0101000020E61000006FD9EFC3E0C95EC080B659E557834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157764627999967, 49.01662713700005 ], [ -123.157765480999956, 49.016897005000025 ], [ -123.158175776999926, 49.016896442000068 ], [ -123.158174921999958, 49.016626576000078 ], [ -123.157764627999967, 49.01662713700005 ], [ -123.157762068999943, 49.015817538000064 ], [ -123.158172355999966, 49.015816977000092 ], [ -123.15817150099997, 49.015547109000053 ], [ -123.158581784999939, 49.01554654500007 ], [ -123.158580927999935, 49.015276680000035 ], [ -123.158991209999968, 49.015276115000091 ], [ -123.158990350999929, 49.015006248000127 ], [ -123.159810910999951, 49.01500511400009 ], [ -123.15980918299999, 49.014465381000065 ], [ -123.161040008999919, 49.014463669000079 ], [ -123.161040878999955, 49.014733537000083 ], [ -123.161861433999917, 49.014732389000088 ], [ -123.161862308999929, 49.015002255000063 ], [ -123.162682867999976, 49.015001101000024 ], [ -123.162684965999958, 49.015644574000127 ], [ -123.164773191999956, 49.015699773000101 ], [ -123.164763731999926, 49.015855450000167 ], [ -123.165165386, 49.015866063000011 ], [ -123.165146565999919, 49.016175789000101 ], [ -123.166072172999975, 49.016200240000032 ], [ -123.166046948999949, 49.016615517000076 ], [ -123.16679107399996, 49.01661444300003 ], [ -123.166791975999928, 49.016884310000059 ], [ -123.16761256699999, 49.016883120000067 ], [ -123.167613470999967, 49.01715298800012 ], [ -123.16802377, 49.017152391000067 ], [ -123.168024678, 49.017422257000085 ], [ -123.16966587499995, 49.017419857000064 ], [ -123.169670460999967, 49.018769189000061 ], [ -123.169260150999989, 49.018769790000071 ], [ -123.169261980999963, 49.019309523000111 ], [ -123.168851666999956, 49.019310125000096 ], [ -123.168853110999976, 49.019737118000094 ], [ -123.168934335999936, 49.019662761000113 ], [ -123.169163336999972, 49.019770462000096 ], [ -123.168854159999938, 49.020046982000039 ], [ -123.168855316999924, 49.020389590000079 ], [ -123.169265640999981, 49.020388988000065 ], [ -123.169269301999989, 49.021468454000065 ], [ -123.168858968999956, 49.021469055000097 ], [ -123.168861707999937, 49.022278654000054 ], [ -123.168451368999968, 49.022279254000132 ], [ -123.168453190999955, 49.022818986000068 ], [ -123.168042847999942, 49.022819585000015 ], [ -123.168043755999932, 49.023089451000104 ], [ -123.16763341, 49.023090048 ], [ -123.167635221999959, 49.023629781000103 ], [ -123.167224870999945, 49.023630376000028 ], [ -123.167225775999967, 49.023900242000082 ], [ -123.16681542399995, 49.023900836000067 ], [ -123.166817227999957, 49.024440568000017 ], [ -123.166406869999904, 49.024441161000013 ], [ -123.166407768999989, 49.024711027000087 ], [ -123.165587051999964, 49.024712208000082 ], [ -123.16558794599996, 49.024982073000047 ], [ -123.163536139, 49.02498499900009 ], [ -123.163535253999896, 49.024715134000061 ], [ -123.162536191999934, 49.024716546000015 ], [ -123.161481846999962, 49.024220400000061 ], [ -123.161480838, 49.023908425000101 ], [ -123.160249777999951, 49.023910140000098 ], [ -123.160248912, 49.023640274000087 ], [ -123.159838561999933, 49.023640843000102 ], [ -123.159839425999948, 49.023910709000056 ], [ -123.158608366999971, 49.023912409000019 ], [ -123.158609223999918, 49.02418227400004 ], [ -123.157788513999932, 49.024183400000048 ], [ -123.157791072999899, 49.024992998000116 ], [ -123.156970348999977, 49.024994118000087 ], [ -123.156972895999942, 49.025803717000031 ], [ -123.156562526999934, 49.02580427500007 ], [ -123.156564220999954, 49.026344006999985 ], [ -123.155743474999952, 49.026345117000098 ], [ -123.155746589, 49.027342872000084 ], [ -123.155674244999958, 49.027424680000109 ], [ -123.155336461999951, 49.027425136000048 ], [ -123.155337644999989, 49.027805324000049 ], [ -123.155196390999947, 49.027965059000074 ], [ -123.15492775499996, 49.027965420000072 ], [ -123.154928592999937, 49.028235286000047 ], [ -123.154518204999988, 49.028235836000157 ], [ -123.154519039999954, 49.028505703000071 ], [ -123.153698257999949, 49.02850679800013 ], [ -123.153700750999974, 49.029316396000134 ], [ -123.152879956999982, 49.029317488000039 ], [ -123.152882437999949, 49.030127086000057 ], [ -123.152472033999985, 49.030127628000045 ], [ -123.152472857999925, 49.030397495000038 ], [ -123.152062450999921, 49.030398035000054 ], [ -123.15206409699999, 49.030937769000033 ], [ -123.151653685999989, 49.030938308000025 ], [ -123.151654505999943, 49.031208174000078 ], [ -123.15124409299996, 49.031208713000119 ], [ -123.151244910999978, 49.031478579000051 ], [ -123.150834495999902, 49.031479116000092 ], [ -123.150835309999948, 49.031748982000089 ], [ -123.150424892999951, 49.031749518000041 ], [ -123.150425706999926, 49.032019383 ], [ -123.15001528699996, 49.032019919000071 ], [ -123.150016098999942, 49.032289784000064 ], [ -123.149605676999983, 49.032290317000076 ], [ -123.149606485999968, 49.032560183000086 ], [ -123.149196060999941, 49.032560714000041 ], [ -123.149196868000018, 49.032830581000063 ], [ -123.148786442999949, 49.032831111000071 ], [ -123.14878764599996, 49.033234953000061 ], [ -123.148590578999929, 49.033371097000064 ], [ -123.148377619999977, 49.033371370000054 ], [ -123.148378055999899, 49.033517917000061 ], [ -123.148199214999948, 49.03364146800002 ], [ -123.14796798899999, 49.033641764000031 ], [ -123.14796846199999, 49.033800880000101 ], [ -123.147807846999939, 49.033911836000101 ], [ -123.147558353999941, 49.033912156000035 ], [ -123.147558933999946, 49.034108201000024 ], [ -123.147467255999956, 49.034182139000052 ], [ -123.147148714999929, 49.034182545000064 ], [ -123.14714947, 49.034438427000033 ], [ -123.147132101999915, 49.034452433000077 ], [ -123.146739070999956, 49.034452934000115 ], [ -123.146739865999933, 49.034722801000036 ], [ -123.146329422999898, 49.034723321000087 ], [ -123.14633021499999, 49.034993187000055 ], [ -123.145919770999953, 49.034993707000126 ], [ -123.145920558999961, 49.035263573000037 ], [ -123.145510111999954, 49.035264091000059 ], [ -123.1455109, 49.035533956000087 ], [ -123.14510045199998, 49.035534474000016 ], [ -123.145101235999974, 49.03580434 ], [ -123.144690784999966, 49.035804856000034 ], [ -123.144691566999981, 49.036074721000077 ], [ -123.144281114999913, 49.036075235000105 ], [ -123.144281894999921, 49.036345101000073 ], [ -123.143871439999927, 49.036345614000098 ], [ -123.143872217999942, 49.036615479000027 ], [ -123.14346176, 49.036615990000037 ], [ -123.143463298999933, 49.037151173000098 ], [ -123.143459055999983, 49.037155727000119 ], [ -123.143052849999933, 49.037156231000054 ], [ -123.143053622999957, 49.037426098000054 ], [ -123.142643159999977, 49.037426606000103 ], [ -123.142643931999913, 49.03769647200005 ], [ -123.142233464999947, 49.037696978000156 ], [ -123.14223417, 49.037944446000061 ], [ -123.142200591999966, 49.037966885000031 ], [ -123.14182376499997, 49.037967349000084 ], [ -123.14182447899999, 49.038218235000045 ], [ -123.141796024999948, 49.038237250000073 ], [ -123.141414059999931, 49.038237718000119 ], [ -123.141414781999941, 49.038492024000071 ], [ -123.141391453999987, 49.038507613000021 ], [ -123.141004352999943, 49.038508087000046 ], [ -123.14100508199999, 49.038765809000047 ], [ -123.140986876999975, 49.038777975000073 ], [ -123.140594638999929, 49.038778454000038 ], [ -123.140595375999965, 49.039039594000023 ], [ -123.140582294999916, 49.039048335000111 ], [ -123.140184923999954, 49.039048818000012 ], [ -123.140185665999979, 49.039313376000095 ], [ -123.140177708999929, 49.039318695000084 ], [ -123.139775199999946, 49.03931918200005 ], [ -123.139775956999969, 49.039589048000025 ], [ -123.139365474999977, 49.039589544000115 ], [ -123.139366228999947, 49.039859410000105 ], [ -123.138955744999961, 49.039859906000096 ], [ -123.13895680899995, 49.040242265000046 ], [ -123.138748692999926, 49.04039988800006 ], [ -123.138546758999908, 49.040400130000066 ], [ -123.138547141999936, 49.040537721000071 ], [ -123.13834456699999, 49.040670241000065 ], [ -123.138137018999927, 49.040670488000067 ], [ -123.138137391999948, 49.040805768000034 ], [ -123.137931276, 49.040940601000067 ], [ -123.137727270999946, 49.040940845000144 ], [ -123.137727637999944, 49.041073811000068 ], [ -123.137517979000023, 49.041210961000111 ], [ -123.137317521999989, 49.041211200000177 ], [ -123.137317880999987, 49.041341855000084 ], [ -123.137104675999922, 49.041481319000063 ], [ -123.13690776599999, 49.041481554000086 ], [ -123.136908118999926, 49.041609894000075 ], [ -123.13669136899999, 49.041751677000086 ], [ -123.136498006999943, 49.041751905000126 ], [ -123.13649835199999, 49.041877933000066 ], [ -123.13627805599999, 49.042022032000034 ], [ -123.136088242999932, 49.042022256000081 ], [ -123.136088579999978, 49.042145970000036 ], [ -123.135864737999967, 49.042292387000018 ], [ -123.135678474999978, 49.042292606000061 ], [ -123.135678804999927, 49.042414004000086 ], [ -123.135549011999942, 49.042498901000116 ], [ -123.135468715999977, 49.042562718000077 ], [ -123.135268700999987, 49.042562953000129 ], [ -123.135269130999987, 49.042721340000107 ], [ -123.135128654999988, 49.042832983000075 ], [ -123.134858924999932, 49.042833299000051 ], [ -123.134859502999916, 49.043046892000071 ], [ -123.134788590999932, 49.043103247000076 ], [ -123.134449143999959, 49.043103643000066 ], [ -123.134449868999965, 49.043372443000088 ], [ -123.134448521999971, 49.043373511000063 ], [ -123.134039356999921, 49.043373987000102 ], [ -123.134040082999931, 49.043643853000077 ], [ -123.133629565999925, 49.04364432900006 ], [ -123.133630288999939, 49.043914194000131 ], [ -123.133219770999915, 49.043914669000131 ], [ -123.133220492999925, 49.044184534000067 ], [ -123.132809971999947, 49.044185008000028 ], [ -123.132810774999896, 49.044486169000059 ], [ -123.132455068999988, 49.044725149000023 ], [ -123.132400884999925, 49.04472521100012 ], [ -123.132400980999961, 49.044761486000027 ], [ -123.132135281999979, 49.044939992000131 ], [ -123.132081451999952, 49.044995444000094 ], [ -123.13199107299999, 49.044995547000013 ], [ -123.131991321000015, 49.045088292000059 ], [ -123.131819189999973, 49.045265609000097 ], [ -123.131581259999933, 49.045265881000077 ], [ -123.131581903999916, 49.045510044000018 ], [ -123.131556925999945, 49.045535775000133 ], [ -123.131171440999935, 49.045536214000059 ], [ -123.131172148999951, 49.045806080000098 ], [ -123.130761615999916, 49.045806546000058 ], [ -123.130762254, 49.046049549000038 ], [ -123.130645891999947, 49.046075114000075 ], [ -123.13064319099999, 49.046076546000101 ], [ -123.130351787999942, 49.046076876000065 ], [ -123.1303521899999, 49.046230890000125 ], [ -123.130133292999972, 49.046346989000028 ], [ -123.129941954999964, 49.04634720500006 ], [ -123.129942252, 49.046461140000098 ], [ -123.129719401999964, 49.046617321000049 ], [ -123.129532117999958, 49.046617531000024 ], [ -123.129532457999986, 49.046748337000096 ], [ -123.129333714999973, 49.046887621000074 ], [ -123.129122275999975, 49.046887857000058 ], [ -123.129122657999957, 49.047035531000091 ], [ -123.128948023999925, 49.047157919000036 ], [ -123.128712430999883, 49.047158181000029 ], [ -123.128712854999932, 49.047322725000107 ], [ -123.128562326999884, 49.047428215000139 ], [ -123.128302579999954, 49.047428504000031 ], [ -123.12830304699996, 49.047609916000049 ], [ -123.126930583999965, 49.048571692000088 ], [ -123.126723736999978, 49.048779580000087 ], [ -123.12666382, 49.048779646000128 ], [ -123.126663970999971, 49.048839645000015 ], [ -123.126454923999958, 49.049049741000069 ], [ -123.126253944, 49.049049960000012 ], [ -123.126254338999956, 49.049205760000092 ], [ -123.126080166999955, 49.049320017000085 ], [ -123.125433502999968, 49.049320722000118 ], [ -123.125434181999978, 49.049590587000068 ], [ -123.125023615999922, 49.049591033000091 ], [ -123.125024292999939, 49.049860898000063 ], [ -123.124613726999911, 49.04986134300006 ], [ -123.124614445999953, 49.05014910200002 ], [ -123.124808367999947, 49.050154294000016 ], [ -123.123816503999976, 49.050804908000103 ], [ -123.123802913999967, 49.051021399000021 ], [ -123.12382043299999, 49.051044323000085 ], [ -123.122578701999927, 49.050308079000068 ], [ -123.122459961999937, 49.050237671000069 ], [ -123.122356219999958, 49.050176150000084 ], [ -123.121867719999955, 49.049886479000051 ], [ -123.122528083999953, 49.049844996000061 ], [ -123.123114004999962, 49.049574412000091 ], [ -123.124251924999939, 49.048782267000043 ], [ -123.124605440999929, 49.048781886 ], [ -123.124611027999933, 49.048781880000078 ], [ -123.124611019999946, 49.048778251000044 ], [ -123.124610405999931, 49.048532709000021 ], [ -123.124810106999959, 49.048393683000043 ], [ -123.125492693999945, 49.047735707000136 ], [ -123.126461396999971, 49.047177398 ], [ -123.127690784999956, 49.04615060600009 ], [ -123.127799065999938, 49.046079731000063 ], [ -123.127888572999922, 49.046079631000055 ], [ -123.127888421999927, 49.046021242000066 ], [ -123.128212054999935, 49.045809406000032 ], [ -123.128298413999971, 49.045809311000063 ], [ -123.128298268999956, 49.04575297300002 ], [ -123.128625037999925, 49.045539080000097 ], [ -123.128708250999935, 49.045538988000075 ], [ -123.128708111999927, 49.045484703000056 ], [ -123.129440193999969, 49.045005491000019 ], [ -123.129449124999951, 49.04499842600007 ], [ -123.129527911999972, 49.044998338000063 ], [ -123.129527752999948, 49.044936225000086 ], [ -123.129790741999926, 49.044728176000071 ], [ -123.129937736000031, 49.04472801000005 ], [ -123.129937433999928, 49.044612126000082 ], [ -123.130132352999937, 49.044457925000103 ], [ -123.130758077999971, 49.044457217000044 ], [ -123.130756784999946, 49.043963922000032 ], [ -123.131091011999942, 49.043699501000049 ], [ -123.131194923999956, 49.043647122000095 ], [ -123.13157698699996, 49.043646686000052 ], [ -123.131576481999929, 49.04345479100003 ], [ -123.131731512999963, 49.04337664400007 ], [ -123.131986787999949, 49.043376353000035 ], [ -123.131986448999967, 49.043248136000045 ], [ -123.13219858899997, 49.043141201000054 ], [ -123.132238538999971, 49.043106197000149 ], [ -123.132396586999974, 49.043106016000145 ], [ -123.132396219999961, 49.042968036000076 ], [ -123.132546935999983, 49.04283597700006 ], [ -123.132806379000016, 49.042835679000056 ], [ -123.132805775999941, 49.042609177000067 ], [ -123.133030804, 49.042412001000073 ], [ -123.133195265999959, 49.042295498000023 ], [ -123.133215446999927, 49.042295474000078 ], [ -123.133215408999902, 49.042281228 ], [ -123.133947499999948, 49.041762611000102 ], [ -123.133960866999956, 49.041754879000095 ], [ -123.134445505999963, 49.041754315000084 ], [ -123.134444752999968, 49.041474938000057 ], [ -123.135380284999968, 49.040933694000074 ], [ -123.135684247999961, 49.040673400000067 ], [ -123.136084561999922, 49.040672927000038 ], [ -123.136083824999957, 49.040403062000109 ], [ -123.136494313, 49.040402577000066 ], [ -123.13649357599995, 49.040132711000041 ], [ -123.136904062, 49.040132224000061 ], [ -123.136902909999918, 49.039712624000103 ], [ -123.137092300999939, 49.03959226800005 ], [ -123.13731306399994, 49.039592005000081 ], [ -123.13731267899999, 49.039452216000072 ], [ -123.13805838799999, 49.038978306000075 ], [ -123.138638823999926, 49.03851095300007 ], [ -123.138951985999967, 49.038510576000078 ], [ -123.138951286999941, 49.038259361000094 ], [ -123.138974483999931, 49.03824068200008 ], [ -123.139361704999942, 49.038240216000162 ], [ -123.139360837999945, 49.037929588000054 ], [ -123.139645791999939, 49.037700138000062 ], [ -123.139770663999954, 49.037699987000046 ], [ -123.139770384, 49.037599814 ], [ -123.139859074999919, 49.037528396000056 ], [ -123.14003245, 49.037429803000087 ], [ -123.14018037299995, 49.037429624000048 ], [ -123.140180136999902, 49.037345817000109 ], [ -123.14050801599997, 49.037159359000071 ], [ -123.140590075999981, 49.037159259000198 ], [ -123.140589945999949, 49.037112766000106 ], [ -123.1414443099999, 49.036626890000051 ], [ -123.143642995999983, 49.034994809000054 ], [ -123.144275340999968, 49.034456041000048 ], [ -123.144276431, 49.034456040000073 ], [ -123.144276430000019, 49.034455112000025 ], [ -123.144909731999974, 49.033915512000128 ], [ -123.145095741999967, 49.033915279000063 ], [ -123.14509530399998, 49.03376484300005 ], [ -123.145659072999948, 49.033374834000021 ], [ -123.145915032999966, 49.033374511000083 ], [ -123.145914518999959, 49.033198117000069 ], [ -123.146049878999975, 49.033104473000073 ], [ -123.146735102999969, 49.033103603000072 ], [ -123.146733714000035, 49.032631383000123 ], [ -123.146831477999982, 49.032563747000047 ], [ -123.147143939999964, 49.032563349000029 ], [ -123.147143304999958, 49.032348014000043 ], [ -123.147613054999908, 49.032023016000032 ], [ -123.14796318799992, 49.032022568000031 ], [ -123.147962472999964, 49.03178126900012 ], [ -123.149176155999939, 49.030941537000039 ], [ -123.149191220999938, 49.03094151700008 ], [ -123.149191188999964, 49.030931136000078 ], [ -123.150168394000019, 49.030254989000085 ], [ -123.150838215999926, 49.029590041000091 ], [ -123.151239183999962, 49.029589515000055 ], [ -123.151237982999973, 49.029193173000074 ], [ -123.152199173999946, 49.028238917000095 ], [ -123.152466261999919, 49.028238565000123 ], [ -123.152465381999932, 49.027950577000098 ], [ -123.152693116999899, 49.027698531000105 ], [ -123.152874996999913, 49.027698290000018 ], [ -123.152874381999951, 49.027497912000086 ], [ -123.152937242999911, 49.027428341000068 ], [ -123.15328455199996, 49.027427879000108 ], [ -123.153283722999959, 49.027158013000069 ], [ -123.153694102, 49.027157467000059 ], [ -123.153692439999958, 49.026617735000116 ], [ -123.154102815, 49.02661718800006 ], [ -123.154101982999975, 49.026347322000106 ], [ -123.154512354999952, 49.0263467730001 ], [ -123.15451068299997, 49.025807040000068 ], [ -123.154921052999939, 49.025806490000058 ], [ -123.154920214999933, 49.025536623000036 ], [ -123.15533058199999, 49.025536072000136 ], [ -123.155328900999976, 49.024996339000054 ], [ -123.155739262999987, 49.024995786000083 ], [ -123.155738421, 49.024725920000016 ], [ -123.156148781999931, 49.024725365000101 ], [ -123.156146553999974, 49.024013530000026 ], [ -123.156646305999956, 49.023652396000145 ], [ -123.156669587999971, 49.022762190000059 ], [ -123.15649061199997, 49.022159796000039 ], [ -123.156230089999923, 49.021800893000012 ], [ -123.155728585999924, 49.021573813000096 ], [ -123.155728316999927, 49.021487523000076 ], [ -123.155538582999938, 49.021487779000061 ], [ -123.155317670999949, 49.021387748000031 ], [ -123.155317142999976, 49.021218209000068 ], [ -123.154944362999913, 49.021218710000078 ], [ -123.154906759999932, 49.021201683000051 ], [ -123.154905975999952, 49.020948894000114 ], [ -123.154350152999939, 49.020949639000065 ], [ -123.154229706999928, 49.020895099000043 ], [ -123.154085091999931, 49.020877199000019 ], [ -123.154084484999942, 49.02068012700002 ], [ -123.153919019999961, 49.020680348000077 ], [ -123.153914, 49.020670087000084 ], [ -123.15368190099997, 49.020526205000117 ], [ -123.153673673999933, 49.020523095000065 ], [ -123.153672496999945, 49.020140941000129 ], [ -123.153262173999977, 49.020141486000114 ], [ -123.153261345, 49.019871620000096 ], [ -123.152851025999936, 49.019872164000084 ], [ -123.15284868199997, 49.019107152000117 ], [ -123.153149379999988, 49.018792298000079 ], [ -123.153258030999936, 49.018792154000053 ], [ -123.153257681999932, 49.0186788950001 ], [ -123.153665491999959, 49.018251877000083 ], [ -123.153666680999933, 49.018251875000026 ], [ -123.153666676999961, 49.018250635000086 ], [ -123.153923541999916, 49.017981664000104 ], [ -123.154486458999941, 49.017980912000112 ], [ -123.154484787999976, 49.017441179000095 ], [ -123.154895087999932, 49.017440629000113 ], [ -123.154894250999973, 49.017170762000013 ], [ -123.155304549, 49.017170211000064 ], [ -123.155302869999971, 49.016630477000014 ], [ -123.155713162000026, 49.016629925000075 ], [ -123.155711538999981, 49.016109301000014 ], [ -123.155987834999962, 49.015819950000029 ], [ -123.157351781999935, 49.01581809800004 ], [ -123.157354335999969, 49.016627698000022 ], [ -123.157764627999967, 49.01662713700005 ] ], [ [ -123.16639157499999, 49.019853434000048 ], [ -123.166392474999938, 49.020123300000087 ], [ -123.16721311799995, 49.020122114000117 ], [ -123.167212214999935, 49.019852248000056 ], [ -123.16639157499999, 49.019853434000048 ], [ -123.166390676, 49.019583568 ], [ -123.165980358999946, 49.019584158000058 ], [ -123.165979461999925, 49.01931429200004 ], [ -123.165883000999912, 49.019314431000048 ], [ -123.16585358199994, 49.019798683000076 ], [ -123.165160369999953, 49.019780372000085 ], [ -123.165160615999923, 49.019855202 ], [ -123.16639157499999, 49.019853434000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.728077398106217", "sL_AssetLoss": "48580", "sL_BldgLoss": "35370", "sL_StrLoss": "14640", "sL_NStrLoss": "20730", "sL_ContLoss": "13210", "geom_point": "0101000020E6100000FBE70E076EC85EC0473C97B13A884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130556982999948, 49.062683300000089 ], [ -123.133977196, 49.062774613000059 ], [ -123.133856864000023, 49.064731272000117 ], [ -123.133755908999944, 49.066372730000104 ], [ -123.130525847999962, 49.066286496000039 ], [ -123.130558205999989, 49.063972311000043 ], [ -123.128435865999975, 49.063909401000046 ], [ -123.128514773999896, 49.062628724000021 ], [ -123.130556982999948, 49.062683300000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.665248751618273", "sL_AssetLoss": "5407", "sL_BldgLoss": "3597", "sL_StrLoss": "727", "sL_NStrLoss": "2870", "sL_ContLoss": "1810", "geom_point": "0101000020E6100000C973BF3B60CB5EC085A84E49CE8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176965518999921, 49.108898205000038 ], [ -123.176965501999973, 49.108893363000078 ], [ -123.176943867999938, 49.108893396000028 ], [ -123.176142762999945, 49.108715463000102 ], [ -123.176140530999987, 49.108085034000098 ], [ -123.176551577999959, 49.108084407000042 ], [ -123.176550619999915, 49.107814544000043 ], [ -123.176961664000018, 49.107813915000058 ], [ -123.176959744000015, 49.107274191000087 ], [ -123.177370783999919, 49.107273560000117 ], [ -123.177368860999962, 49.106733835000114 ], [ -123.177779894999986, 49.106733203000083 ], [ -123.177778931999939, 49.106463341000065 ], [ -123.179012029999967, 49.106461435000099 ], [ -123.179015912999915, 49.10754088400008 ], [ -123.178193828999895, 49.107542155000047 ], [ -123.178194796, 49.107812018000033 ], [ -123.17860584099995, 49.107811383000083 ], [ -123.178610592, 49.109135237000089 ], [ -123.177261282999964, 49.108963895000073 ], [ -123.176965518999921, 49.108898205000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43645167", "BldgCostT": "28571667", "sL_LossRatio": "0.667889771475429", "sL_AssetLoss": "1207310", "sL_BldgLoss": "806350", "sL_StrLoss": "347250", "sL_NStrLoss": "459100", "sL_ContLoss": "400960", "geom_point": "0101000020E6100000814CF8C6CCC95EC095EFCFFB358B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141604217999912, 49.093262003000049 ], [ -123.139408518, 49.091600004 ], [ -123.138845993999965, 49.091420512000077 ], [ -123.137433098999963, 49.090558912000084 ], [ -123.136803688999976, 49.090416408000074 ], [ -123.136048804999987, 49.090128711000048 ], [ -123.13540855699992, 49.089835076000021 ], [ -123.135472322999973, 49.08879826900003 ], [ -123.137319964999975, 49.088847497000089 ], [ -123.137451361, 49.086709512000077 ], [ -123.138439858999973, 49.08673583700012 ], [ -123.13849817099999, 49.085786635000041 ], [ -123.138778012999921, 49.085794086000078 ], [ -123.138911074999939, 49.083627738000096 ], [ -123.144375989999901, 49.083773095000033 ], [ -123.1443638099999, 49.08397179700011 ], [ -123.145495662999949, 49.084001866000072 ], [ -123.14546301799993, 49.084534595000079 ], [ -123.146567956999903, 49.08456393900007 ], [ -123.146515766999983, 49.085415946000133 ], [ -123.148692088999951, 49.08547370900007 ], [ -123.14884071099999, 49.083045580000068 ], [ -123.15081368499996, 49.083097907000102 ], [ -123.150989281999955, 49.080226724000113 ], [ -123.151538033999955, 49.080241272000073 ], [ -123.151555174999913, 49.079960937000067 ], [ -123.153963540999925, 49.080024750000064 ], [ -123.15405945899991, 49.078454593000068 ], [ -123.158091380999977, 49.078561306000047 ], [ -123.158131525999963, 49.077903191000075 ], [ -123.159464347999972, 49.077938434000075 ], [ -123.159518317999954, 49.077053222000131 ], [ -123.164707570999951, 49.077190278000103 ], [ -123.164741900999942, 49.077318008000034 ], [ -123.164963896999936, 49.077503702000065 ], [ -123.164763564999944, 49.080795632000068 ], [ -123.163430657000035, 49.080760456000085 ], [ -123.163376756999938, 49.081645664000092 ], [ -123.159766976999975, 49.08155031600009 ], [ -123.159726442999954, 49.08221515100005 ], [ -123.15971323399998, 49.082214802000081 ], [ -123.159612730999982, 49.083863149000095 ], [ -123.158401175, 49.08383112000007 ], [ -123.15840048199999, 49.083842479000062 ], [ -123.156245438, 49.083785474000067 ], [ -123.156234200999961, 49.083969532000012 ], [ -123.15515019199999, 49.0839408410001 ], [ -123.155128426999966, 49.084297204000052 ], [ -123.155366514999969, 49.084303506000069 ], [ -123.155207090999951, 49.086914025000027 ], [ -123.157321105999969, 49.086969961000115 ], [ -123.157262803999942, 49.087925259000052 ], [ -123.157376362999941, 49.087928263000052 ], [ -123.15732952499998, 49.088695731000058 ], [ -123.157387639999939, 49.088697267000107 ], [ -123.157416174000019, 49.088229704000071 ], [ -123.160856974999973, 49.088320653000075 ], [ -123.1608809519999, 49.087927288000053 ], [ -123.16634644, 49.088071526000078 ], [ -123.166332882999939, 49.088294372000043 ], [ -123.166835135, 49.088307613000097 ], [ -123.166797753999987, 49.088922160000031 ], [ -123.169374282999939, 49.08899004800007 ], [ -123.169155604999929, 49.092588091000103 ], [ -123.169069158999932, 49.092585814000138 ], [ -123.16895570299998, 49.094452290000021 ], [ -123.163489458999919, 49.094308185000081 ], [ -123.163640558999987, 49.091827173000098 ], [ -123.162672897999968, 49.091801633000074 ], [ -123.162662509999976, 49.091972151000043 ], [ -123.162247606999955, 49.091961199000117 ], [ -123.162219117999953, 49.092428761000043 ], [ -123.16128786199998, 49.09240417000013 ], [ -123.161212646, 49.093638182000113 ], [ -123.160619329000014, 49.093622511000071 ], [ -123.160592645999913, 49.094060196000029 ], [ -123.15902066299995, 49.09401866000011 ], [ -123.159017981, 49.094062634000124 ], [ -123.15355181399994, 49.093918024000082 ], [ -123.15360143499997, 49.09310611100009 ], [ -123.151686196999918, 49.093055377000098 ], [ -123.151759374, 49.091858826000077 ], [ -123.150371723999925, 49.091822045000121 ], [ -123.150376855999966, 49.091738160000055 ], [ -123.14811564899999, 49.09167818700007 ], [ -123.148172426999921, 49.090750914000083 ], [ -123.14774149199998, 49.090739479000014 ], [ -123.147742084999948, 49.090729806000063 ], [ -123.145648319999921, 49.090674224000047 ], [ -123.145686959, 49.090043709000071 ], [ -123.144364911999944, 49.090008592000046 ], [ -123.144481164999931, 49.08811238800007 ], [ -123.143830703999953, 49.088095104000061 ], [ -123.14374271299999, 49.089530020000055 ], [ -123.142754152999913, 49.089503744000048 ], [ -123.142724245999929, 49.089991240000074 ], [ -123.143311110999917, 49.090006840000143 ], [ -123.143170458000014, 49.092299969000109 ], [ -123.147179313999914, 49.09240644400009 ], [ -123.147147530999987, 49.092925309000051 ], [ -123.147762525999937, 49.092941630000098 ], [ -123.147745627999925, 49.093217535000086 ], [ -123.148182225999946, 49.093229120000025 ], [ -123.14798381099996, 49.09646920800008 ], [ -123.147764318999947, 49.096635994000067 ], [ -123.145216199999979, 49.096000812000064 ], [ -123.14403509600001, 49.095193201000065 ], [ -123.14296431799994, 49.094204807000025 ], [ -123.142633782999923, 49.093764798000031 ], [ -123.141604217999912, 49.093262003000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.728494623655914", "sL_AssetLoss": "37200", "sL_BldgLoss": "27100", "sL_StrLoss": "10800", "sL_NStrLoss": "16300", "sL_ContLoss": "10100", "geom_point": "0101000020E61000002BBD994526C75EC0BF81666367874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114584511999951, 49.056465843000041 ], [ -123.116127611999971, 49.056489827000121 ], [ -123.116116756999986, 49.056665289000101 ], [ -123.114366905999972, 49.05661828700002 ], [ -123.113276178999939, 49.05658897400005 ], [ -123.113224811999956, 49.057418355000046 ], [ -123.113098691999966, 49.059454655000096 ], [ -123.109930838999972, 49.05936945900006 ], [ -123.109932143999956, 49.059195043000038 ], [ -123.109934001999974, 49.058949388000052 ], [ -123.109935616999977, 49.058636702000051 ], [ -123.109936325999968, 49.058501320000104 ], [ -123.10994349399999, 49.057125428000106 ], [ -123.109947302999942, 49.056393603000082 ], [ -123.114584511999951, 49.056465843000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035334", "BldgCostT": "2093334", "sL_LossRatio": "0.720384363658", "sL_AssetLoss": "67228", "sL_BldgLoss": "48430", "sL_StrLoss": "19580", "sL_NStrLoss": "28850", "sL_ContLoss": "18798", "geom_point": "0101000020E61000008294336FB0CA5EC0AFA8D260648C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.165209836999963, 49.098983662000151 ], [ -123.165286265999924, 49.098655852000078 ], [ -123.165010955999918, 49.098656247000136 ], [ -123.165010912, 49.098642836000074 ], [ -123.164657138999971, 49.098633506000077 ], [ -123.164673102999956, 49.098371289000056 ], [ -123.164108333999948, 49.098356391000067 ], [ -123.1641393, 49.097847897000072 ], [ -123.162542499000025, 49.097850156000035 ], [ -123.162539855999938, 49.097040568000089 ], [ -123.16295081199992, 49.097039988000091 ], [ -123.162949927999961, 49.096770125000035 ], [ -123.164205039999942, 49.096768347000086 ], [ -123.164327428999968, 49.094758391 ], [ -123.169793727999973, 49.094902453000046 ], [ -123.169777791999977, 49.095164672000116 ], [ -123.170342525999928, 49.095179540000082 ], [ -123.170279316999967, 49.096219818000115 ], [ -123.170756185999934, 49.096219114000114 ], [ -123.17075896299994, 49.097028703000021 ], [ -123.170230118999967, 49.097029484000117 ], [ -123.170123893999985, 49.098777550000058 ], [ -123.165646898999967, 49.098659606000069 ], [ -123.165570136999932, 49.09902076200008 ], [ -123.165209836999963, 49.098983662000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "0.732694402091048", "sL_AssetLoss": "22955", "sL_BldgLoss": "16819", "sL_StrLoss": "5369", "sL_NStrLoss": "11450", "sL_ContLoss": "6136", "geom_point": "0101000020E6100000631F2AAE66CB5EC01F9DFC0EAC8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176189598999912, 49.093169724000063 ], [ -123.176241363999949, 49.092315940000098 ], [ -123.176038944999945, 49.09231062300006 ], [ -123.176257089999979, 49.088712564000083 ], [ -123.179226796999927, 49.088790545000066 ], [ -123.179202596999986, 49.088972289 ], [ -123.179768873999961, 49.09037509500007 ], [ -123.17992329399999, 49.091248209000057 ], [ -123.180157203999926, 49.091705309000119 ], [ -123.18069450899999, 49.092361904000064 ], [ -123.181122721999913, 49.093170905000079 ], [ -123.181096519999983, 49.093298520000047 ], [ -123.176189598999912, 49.093169724000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "0.596681557115507", "sL_AssetLoss": "219380", "sL_BldgLoss": "130900", "sL_StrLoss": "62140", "sL_NStrLoss": "68760", "sL_ContLoss": "88480", "geom_point": "0101000020E610000074234D38CBC55EC090AD5F97FE864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090818383999974, 49.052897298000083 ], [ -123.093600909, 49.052712225000043 ], [ -123.093785928999978, 49.052757378000059 ], [ -123.093761991999884, 49.053141339000028 ], [ -123.093670439999983, 49.054609742000117 ], [ -123.092628636999933, 49.054581542000072 ], [ -123.092527781999976, 49.056198465000058 ], [ -123.091007140999963, 49.056157286 ], [ -123.087066260999961, 49.056050467000098 ], [ -123.087201044999986, 49.053893600000116 ], [ -123.090414634999945, 49.053898668000016 ], [ -123.090817383999976, 49.053899306000062 ], [ -123.090818383999974, 49.052897298000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671417", "BldgCostT": "3221667", "sL_LossRatio": "0.737400380044811", "sL_AssetLoss": "105777", "sL_BldgLoss": "78000", "sL_StrLoss": "31800", "sL_NStrLoss": "46200", "sL_ContLoss": "27777", "geom_point": "0101000020E6100000CDBDB83B08C55EC085EB30AA35874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074652089999972, 49.056044605000118 ], [ -123.074692254, 49.055404631000059 ], [ -123.074288428999949, 49.055393631000079 ], [ -123.074384185999961, 49.053867972000077 ], [ -123.07500324199998, 49.053868052000063 ], [ -123.076903693999924, 49.053868291000086 ], [ -123.07970240399996, 49.053881400000101 ], [ -123.085960866999983, 49.053891619000069 ], [ -123.085820708999947, 49.0561335290001 ], [ -123.085058810999953, 49.056112851000137 ], [ -123.085053182999943, 49.056202847000108 ], [ -123.084344365, 49.056183605000129 ], [ -123.084343053999973, 49.056204565000058 ], [ -123.080231157999933, 49.056092851000123 ], [ -123.080049638999938, 49.0589904610001 ], [ -123.07910031899992, 49.05896464700001 ], [ -123.079060582999944, 49.05959868700004 ], [ -123.079049941999983, 49.059768483000013 ], [ -123.077846760999961, 49.059735754000016 ], [ -123.076891763999939, 49.059709767000101 ], [ -123.075712210999953, 49.05967765700013 ], [ -123.073588045999898, 49.059619801000068 ], [ -123.07381394199993, 49.056021771000083 ], [ -123.074652089999972, 49.056044605000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.715527230590962", "sL_AssetLoss": "17260", "sL_BldgLoss": "12350", "sL_StrLoss": "5360", "sL_NStrLoss": "6990", "sL_ContLoss": "4910", "geom_point": "0101000020E6100000624C3C98BBC55EC009C6C1A5E3894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.088123307, 49.07823085400004 ], [ -123.088119964999947, 49.076341802000073 ], [ -123.088530751999954, 49.07634148799999 ], [ -123.088530272999904, 49.076071623000075 ], [ -123.090173406999938, 49.076070351000062 ], [ -123.090174383999923, 49.076610081000041 ], [ -123.090585171999976, 49.0766097590001 ], [ -123.090585661999938, 49.076879623000096 ], [ -123.090996452999917, 49.076879300000023 ], [ -123.090996945999933, 49.077149164000033 ], [ -123.091407736999926, 49.077148839000074 ], [ -123.091409222999943, 49.07795843300007 ], [ -123.09099842399992, 49.077958758000129 ], [ -123.090998915999975, 49.078228623000022 ], [ -123.088123307, 49.07823085400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.715144230769231", "sL_AssetLoss": "16640", "sL_BldgLoss": "11900", "sL_StrLoss": "5160", "sL_NStrLoss": "6740", "sL_ContLoss": "4740", "geom_point": "0101000020E6100000F1253BD317C45EC0CD30DE24C0894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063063728999936, 49.077707536000091 ], [ -123.063063385999925, 49.077437672000023 ], [ -123.06224179699997, 49.077438117000064 ], [ -123.062240446999965, 49.076358659000036 ], [ -123.062651233999972, 49.076358436000135 ], [ -123.062650216999927, 49.075548841000106 ], [ -123.063060994999958, 49.075548618000077 ], [ -123.063060653999969, 49.075278753000156 ], [ -123.064292987000016, 49.075278073000042 ], [ -123.064292287999962, 49.074738344000124 ], [ -123.065524607, 49.074737650000095 ], [ -123.065524962999959, 49.075007516000049 ], [ -123.065935737999936, 49.075007281000111 ], [ -123.0659368099999, 49.075816875000029 ], [ -123.065526026999933, 49.075817110000074 ], [ -123.065526381, 49.076086974000127 ], [ -123.065115598, 49.076087207000064 ], [ -123.065115950999925, 49.076357072000114 ], [ -123.064294378999989, 49.076357533000071 ], [ -123.06429612, 49.077706856000077 ], [ -123.063063728999936, 49.077707536000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.863935969868173", "sL_AssetLoss": "4248", "sL_BldgLoss": "3670", "sL_StrLoss": "2390", "sL_NStrLoss": "1280", "sL_ContLoss": "578", "geom_point": "0101000020E6100000FA141980BAC35EC02F3BDDDC0C874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057353378999935, 49.054610437000107 ], [ -123.057359814999927, 49.053835873000061 ], [ -123.057426424999946, 49.053848417 ], [ -123.057685677, 49.053897008000064 ], [ -123.057806483999954, 49.053900322000075 ], [ -123.05917922399999, 49.053896881000107 ], [ -123.059293534999966, 49.053890619000057 ], [ -123.059300536999956, 49.053889571000092 ], [ -123.059151144999987, 49.056257478000134 ], [ -123.057972219999954, 49.056225188000113 ], [ -123.057969, 49.056276207000053 ], [ -123.057077834999944, 49.05625179 ], [ -123.057110749999964, 49.056172515000107 ], [ -123.057160583000027, 49.056052493000017 ], [ -123.057167848999967, 49.056024661000045 ], [ -123.057313858000015, 49.055465675000029 ], [ -123.057318460999966, 49.055376236000029 ], [ -123.057353378999935, 49.054610437000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40059584", "BldgCostT": "26308334", "sL_LossRatio": "0.667458081786455", "sL_AssetLoss": "1063917", "sL_BldgLoss": "710120", "sL_StrLoss": "329580", "sL_NStrLoss": "380540", "sL_ContLoss": "353797", "geom_point": "0101000020E61000006F8D7C1C15C55EC0AAE5D6BDF8884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.057011148999919, 49.082889636000033 ], [ -123.057057445999973, 49.076091471000019 ], [ -123.058132269999987, 49.076090936000078 ], [ -123.058134475999964, 49.07797998800006 ], [ -123.057723675999938, 49.077980195000087 ], [ -123.057727428999982, 49.081218570000019 ], [ -123.058138253999985, 49.081218364000108 ], [ -123.058139514999965, 49.082297821000054 ], [ -123.060604526999953, 49.082296554000038 ], [ -123.060604855999912, 49.082566418000063 ], [ -123.062248203999928, 49.08256554400004 ], [ -123.062247866999925, 49.082295680000136 ], [ -123.064712877999938, 49.082294324000074 ], [ -123.064712528, 49.08202445900011 ], [ -123.065123359999987, 49.082024228000137 ], [ -123.065122654, 49.081484499000062 ], [ -123.06635514, 49.081483797 ], [ -123.066355857999966, 49.082023526000079 ], [ -123.066766692999977, 49.08202328900007 ], [ -123.066767052999964, 49.082293154000084 ], [ -123.067588722999986, 49.082292675000062 ], [ -123.067587991999943, 49.08175294700002 ], [ -123.068820483999957, 49.081752218000069 ], [ -123.068821228999965, 49.082291948000041 ], [ -123.071340844999952, 49.082290420000028 ], [ -123.071424736999944, 49.080955986000092 ], [ -123.076889126999916, 49.081104773000099 ], [ -123.076885464999918, 49.081163123000117 ], [ -123.077036197999945, 49.08116722400009 ], [ -123.077034171999955, 49.079857975000074 ], [ -123.076623357999964, 49.07985824900004 ], [ -123.076622879999917, 49.079547769000129 ], [ -123.07532659599994, 49.079512494000021 ], [ -123.075492695, 49.076866597000055 ], [ -123.074926743999967, 49.076851191000038 ], [ -123.075152619999969, 49.073253255000047 ], [ -123.076430949999931, 49.073288049000098 ], [ -123.076452213999971, 49.072949166000079 ], [ -123.075292796999946, 49.072917610000047 ], [ -123.075313477999927, 49.072588138000071 ], [ -123.075297815999988, 49.072587711000097 ], [ -123.07531805299999, 49.072265332000057 ], [ -123.074427706999955, 49.07224109000002 ], [ -123.07449922699999, 49.071101983000062 ], [ -123.074301170999917, 49.071096589000085 ], [ -123.074331326999953, 49.070616330000057 ], [ -123.07416449699997, 49.070611787000054 ], [ -123.074294751999901, 49.068537291000013 ], [ -123.073041883999977, 49.068503163000038 ], [ -123.073048229999955, 49.068402129000013 ], [ -123.072458069999968, 49.068386047000082 ], [ -123.072458088999966, 49.068385733000063 ], [ -123.071863823999976, 49.068369536000041 ], [ -123.071838556999978, 49.068771633000033 ], [ -123.070363897999954, 49.068731427000031 ], [ -123.070351107999969, 49.068934868000028 ], [ -123.064888164999914, 49.068785746000074 ], [ -123.064909922999973, 49.068440322000072 ], [ -123.061052051, 49.068334846000027 ], [ -123.061053992999959, 49.068304048000051 ], [ -123.057755634999964, 49.068213759000066 ], [ -123.057757564999932, 49.06818320900004 ], [ -123.057111417999948, 49.068165510000064 ], [ -123.057121933999952, 49.066620962000087 ], [ -123.057124407999964, 49.066258147000035 ], [ -123.057125902999971, 49.066042157000027 ], [ -123.057127050999938, 49.066023978000054 ], [ -123.057219228999941, 49.064564292000092 ], [ -123.057346669999944, 49.064567783000058 ], [ -123.057389158999939, 49.063894895000011 ], [ -123.062851504999955, 49.064044399000039 ], [ -123.062807168999925, 49.064747840000102 ], [ -123.063314561999945, 49.064761713000081 ], [ -123.06344522699996, 49.064765286000046 ], [ -123.06344375599997, 49.064788632000052 ], [ -123.068001711999955, 49.06491314200008 ], [ -123.068055622999921, 49.064056254000057 ], [ -123.073518020999984, 49.06420521700003 ], [ -123.073480599000021, 49.064801123000066 ], [ -123.073584360999988, 49.064803950000069 ], [ -123.073662523999957, 49.06355919000007 ], [ -123.07566399699995, 49.063613699000022 ], [ -123.075692245999946, 49.063163515000035 ], [ -123.075767728999963, 49.061960536000058 ], [ -123.076774831999899, 49.061987950000045 ], [ -123.081229906999923, 49.062109107000055 ], [ -123.081154563999988, 49.063312089000128 ], [ -123.081109429999941, 49.064032715000067 ], [ -123.084125620999941, 49.064114636000099 ], [ -123.083999983999945, 49.066122571000079 ], [ -123.083930610999943, 49.067231194000094 ], [ -123.084857760999938, 49.067256359000098 ], [ -123.084860368999955, 49.067214673000095 ], [ -123.086002115, 49.067245652000089 ], [ -123.086071898999975, 49.066129646000057 ], [ -123.086205595999928, 49.063991397000024 ], [ -123.091668044999949, 49.06413943600004 ], [ -123.091544426999945, 49.066120208 ], [ -123.091474327999919, 49.067243337000036 ], [ -123.093656263999918, 49.067302392000052 ], [ -123.093655240999936, 49.067318789000161 ], [ -123.093910422999954, 49.067325693000086 ], [ -123.093984738999978, 49.066134002000105 ], [ -123.094060828999972, 49.064913791000031 ], [ -123.099523408999971, 49.065061431000039 ], [ -123.09937443499993, 49.067454894000043 ], [ -123.099553754999988, 49.067459737000128 ], [ -123.099329790999946, 49.071057756000066 ], [ -123.098903441999965, 49.071046243000069 ], [ -123.098688356999986, 49.074500562000061 ], [ -123.095618722999959, 49.074417625000073 ], [ -123.093224673999941, 49.074352881000046 ], [ -123.093436522999923, 49.070956916000107 ], [ -123.092769434000033, 49.070938866000063 ], [ -123.092768919999955, 49.070947116000077 ], [ -123.090717737999967, 49.070891589000041 ], [ -123.090707843999979, 49.071050066000033 ], [ -123.085244588999956, 49.070901980000045 ], [ -123.085245167000011, 49.070892741000122 ], [ -123.082445697999901, 49.070816751000031 ], [ -123.082439103999945, 49.070922068000087 ], [ -123.081412641, 49.070894187000071 ], [ -123.081409563999955, 49.070943292999985 ], [ -123.081004671, 49.070932292000123 ], [ -123.080983288999931, 49.07127362600005 ], [ -123.082028137999927, 49.0713020110001 ], [ -123.08180280199997, 49.074899972000047 ], [ -123.080524422999972, 49.074865242000023 ], [ -123.080450323999983, 49.076047774000074 ], [ -123.081016265999921, 49.076063151000021 ], [ -123.080797532999924, 49.079554094000059 ], [ -123.083992204, 49.079583259000032 ], [ -123.085250006999971, 49.079582335000062 ], [ -123.085249544999925, 49.079312471000058 ], [ -123.087303596, 49.079310936000041 ], [ -123.087303122999913, 49.079041071000027 ], [ -123.08894635599998, 49.079039816000041 ], [ -123.088946837999956, 49.079309681000041 ], [ -123.091000888999957, 49.079308080000061 ], [ -123.091006312999951, 49.08227658800012 ], [ -123.09182798199997, 49.082275937000084 ], [ -123.091828202, 49.082394423000025 ], [ -123.0909491, 49.082409783000102 ], [ -123.090494454999927, 49.08237018500003 ], [ -123.090487754999984, 49.082292227000067 ], [ -123.090595056999931, 49.080045161000093 ], [ -123.090519506999954, 49.07965641300013 ], [ -123.09010303300002, 49.079680206000027 ], [ -123.087140891999979, 49.079794193000062 ], [ -123.078887570999967, 49.079605186000087 ], [ -123.078397001, 49.07923675600005 ], [ -123.078383347999974, 49.079226513000059 ], [ -123.07836448499998, 49.079279288000109 ], [ -123.078274310999959, 49.079397299000121 ], [ -123.078260698999955, 49.079810404000092 ], [ -123.078062924999927, 49.080084069000051 ], [ -123.077876823999972, 49.080341602000047 ], [ -123.077371892999949, 49.081385495000099 ], [ -123.077289937, 49.081827859000107 ], [ -123.077263411, 49.081970908000066 ], [ -123.077264694999926, 49.082815406000158 ], [ -123.077390614, 49.083071709000116 ], [ -123.077225872999918, 49.083069646000069 ], [ -123.076682498999958, 49.083062901000083 ], [ -123.075165302, 49.083054915000048 ], [ -123.074870281999935, 49.08305072100007 ], [ -123.074473510999937, 49.083045112000065 ], [ -123.07429863, 49.083066357000135 ], [ -123.068803515999917, 49.082962687000105 ], [ -123.06541009499999, 49.082954802000053 ], [ -123.063081394999983, 49.082927355000123 ], [ -123.059652403999962, 49.083178503000106 ], [ -123.05717321599991, 49.082907382000073 ], [ -123.057011148999919, 49.082889636000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "0.746704233552358", "sL_AssetLoss": "96184", "sL_BldgLoss": "71821", "sL_StrLoss": "32010", "sL_NStrLoss": "39811", "sL_ContLoss": "24363", "geom_point": "0101000020E610000076212D0013C45EC030B3539C38874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063376187999935, 49.053784900000032 ], [ -123.068620885999962, 49.053830896000122 ], [ -123.068989297999963, 49.053867099000023 ], [ -123.070616855999901, 49.053867391000054 ], [ -123.070593590999934, 49.054237605000061 ], [ -123.0704657429999, 49.054234117000085 ], [ -123.070384554999947, 49.055525906000078 ], [ -123.069694182999967, 49.055507071000065 ], [ -123.06969262899996, 49.055531823000152 ], [ -123.068395667999965, 49.055496426000076 ], [ -123.068343318999979, 49.056328753000074 ], [ -123.067232399999966, 49.056298422000076 ], [ -123.067227475999957, 49.05637668 ], [ -123.06513300099999, 49.056319463000129 ], [ -123.064952143999932, 49.059191627000054 ], [ -123.064852517999924, 49.05918890600001 ], [ -123.064823044, 49.059656930000124 ], [ -123.06480308, 49.059973930000062 ], [ -123.063364914999937, 49.059934617000103 ], [ -123.060166575999958, 49.059847120000022 ], [ -123.060166637999956, 49.059897974000052 ], [ -123.058934684999912, 49.059898610000054 ], [ -123.058933728999989, 49.059089013000111 ], [ -123.059387626000031, 49.059088781000099 ], [ -123.05956820199998, 49.056226525000028 ], [ -123.059667819999959, 49.056229254000066 ], [ -123.059717339999978, 49.055444227000066 ], [ -123.059962151999969, 49.055450929000088 ], [ -123.060068074999919, 49.053771544000021 ], [ -123.063376187999935, 49.053784900000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "0.7374751757067", "sL_AssetLoss": "70999", "sL_BldgLoss": "52360", "sL_StrLoss": "22490", "sL_NStrLoss": "29870", "sL_ContLoss": "18639", "geom_point": "0101000020E610000053379BB7BFC65EC0A11342075D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102781131999947, 49.056052621000099 ], [ -123.102757066999956, 49.055476781000053 ], [ -123.107362628000018, 49.055455047000095 ], [ -123.107374420999946, 49.056015783000127 ], [ -123.109949203, 49.056030929000066 ], [ -123.109947302999942, 49.056393603000082 ], [ -123.10994349399999, 49.057125428000106 ], [ -123.109936325999968, 49.058501320000104 ], [ -123.109935616999977, 49.058636702000051 ], [ -123.109934001999974, 49.058949388000052 ], [ -123.109932143999956, 49.059195043000038 ], [ -123.109930838999972, 49.05936945900006 ], [ -123.108812375999946, 49.059339357000063 ], [ -123.108809515999965, 49.059385459000048 ], [ -123.108260783, 49.059370686000072 ], [ -123.106321757999922, 49.059318462000128 ], [ -123.106318314999939, 49.059373920000091 ], [ -123.100856378999936, 49.059226624000146 ], [ -123.101053956, 49.056050004000049 ], [ -123.102781131999947, 49.056052621000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16705227", "BldgCostT": "10844856", "sL_LossRatio": "0.665627435697584", "sL_AssetLoss": "461880", "sL_BldgLoss": "307440", "sL_StrLoss": "130660", "sL_NStrLoss": "176780", "sL_ContLoss": "154440", "geom_point": "0101000020E6100000710B6D6B91C65EC0A13D87C7B8894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104547195999913, 49.085592979000104 ], [ -123.099689514999938, 49.083917455000133 ], [ -123.095254414999957, 49.082334493000118 ], [ -123.092881597, 49.082376009000043 ], [ -123.092928160999989, 49.081629867000096 ], [ -123.092069387999956, 49.081606631000028 ], [ -123.092261547999939, 49.078528061000057 ], [ -123.091891069, 49.078518035000087 ], [ -123.092115643999975, 49.074920073000122 ], [ -123.092350996999983, 49.074926443000045 ], [ -123.092371251999936, 49.074601878000074 ], [ -123.095606219999965, 49.074689377 ], [ -123.097834962999983, 49.074749602000061 ], [ -123.097732512999968, 49.076394299000079 ], [ -123.098642834999978, 49.076418885000137 ], [ -123.09846957499991, 49.079200932000035 ], [ -123.099082488999912, 49.079217480000089 ], [ -123.098875586999924, 49.082539980000043 ], [ -123.099223544, 49.082539681000057 ], [ -123.099224081999978, 49.082809545000039 ], [ -123.100456596999962, 49.082808480000011 ], [ -123.100456052999974, 49.082538616000129 ], [ -123.101389480999941, 49.082537800000125 ], [ -123.101433782999933, 49.081825820000105 ], [ -123.1043549, 49.081904574000099 ], [ -123.104377136999958, 49.081538362000082 ], [ -123.105068837999966, 49.081552362000131 ], [ -123.105036307999967, 49.081922933000087 ], [ -123.106282626999928, 49.081956502000033 ], [ -123.106357345, 49.080753637000051 ], [ -123.10640982399994, 49.080755050000121 ], [ -123.10655967199996, 49.078342435000096 ], [ -123.106886924999955, 49.07835124700005 ], [ -123.106965770999977, 49.077081534000037 ], [ -123.10660160299993, 49.077071728000092 ], [ -123.106711379999979, 49.075304035000038 ], [ -123.106629611999949, 49.075301834000122 ], [ -123.106757331999944, 49.073245083000089 ], [ -123.106012514999975, 49.073225023000091 ], [ -123.106235974999976, 49.06962700100015 ], [ -123.107123772999941, 49.069650912000078 ], [ -123.10719124699996, 49.068564043000052 ], [ -123.107091738999941, 49.06856136400004 ], [ -123.10712919300002, 49.067958064000038 ], [ -123.106200144999946, 49.067933042000163 ], [ -123.106423565999989, 49.064334991000102 ], [ -123.107307833999926, 49.064358807000112 ], [ -123.107328853999945, 49.064020160000084 ], [ -123.107394127999925, 49.062968519000037 ], [ -123.106824272000011, 49.062953171000082 ], [ -123.107033546999958, 49.059581812000083 ], [ -123.10704762, 49.059355091000064 ], [ -123.108182856999989, 49.059385663000086 ], [ -123.109930364999983, 49.059432700000066 ], [ -123.109930228999986, 49.059450978000065 ], [ -123.10992953899995, 49.059540893000126 ], [ -123.109919216999941, 49.060912544000132 ], [ -123.10991640599994, 49.061284404000084 ], [ -123.109606397999983, 49.063349309000031 ], [ -123.109521705999924, 49.065122364000075 ], [ -123.109319688999975, 49.069350622000037 ], [ -123.109293456999936, 49.069899348000042 ], [ -123.109185596999964, 49.072157255000036 ], [ -123.109128859999913, 49.073344615000103 ], [ -123.108811516999978, 49.079983823000134 ], [ -123.108785693, 49.08052388300009 ], [ -123.108633055000027, 49.083716649000081 ], [ -123.108616653999931, 49.084059881 ], [ -123.108592576999953, 49.084563195000072 ], [ -123.107684587999984, 49.084850496000058 ], [ -123.106735205999883, 49.085150838000047 ], [ -123.106657414, 49.08517545700002 ], [ -123.104521895999952, 49.08585104900007 ], [ -123.104547195999913, 49.085592979000104 ] ], [ [ -123.101281262999919, 49.084276890000098 ], [ -123.101339100999937, 49.08334743700005 ], [ -123.100868529999943, 49.083347849000127 ], [ -123.100870169999922, 49.084157441000116 ], [ -123.101281019999973, 49.08415708200009 ], [ -123.101281262999919, 49.084276890000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37460001", "BldgCostT": "23600001", "sL_LossRatio": "0.651373600076577", "sL_AssetLoss": "1044700", "sL_BldgLoss": "680490", "sL_StrLoss": "299770", "sL_NStrLoss": "380720", "sL_ContLoss": "364210", "geom_point": "0101000020E61000009F7ACD40DFBA5EC0B10D260F558C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.932629003999963, 49.10766002600009 ], [ -122.932688884999962, 49.10675120200009 ], [ -122.930561482999934, 49.106690487000044 ], [ -122.930798652999968, 49.103093029000021 ], [ -122.93141250299999, 49.103110552000082 ], [ -122.93145115899992, 49.102524043000088 ], [ -122.931721484999983, 49.102531758000119 ], [ -122.931747667999971, 49.102134449000033 ], [ -122.932805356999921, 49.102164631000051 ], [ -122.93281172699993, 49.102067931000143 ], [ -122.931434299999978, 49.102028622000056 ], [ -122.931465260999957, 49.101558855000086 ], [ -122.93141512899993, 49.101557424000056 ], [ -122.931630215999959, 49.098293652000038 ], [ -122.93092143299999, 49.09827341700008 ], [ -122.930899960999966, 49.098599175000054 ], [ -122.930880513999938, 49.098598620000097 ], [ -122.930880535999961, 49.098615262000123 ], [ -122.930623135999966, 49.098615162000108 ], [ -122.930623108999939, 49.098591270000036 ], [ -122.930340253999944, 49.098583193000081 ], [ -122.930340934999961, 49.098622662000061 ], [ -122.93012003599992, 49.09863116100005 ], [ -122.930118638999971, 49.098576865000084 ], [ -122.926582802999945, 49.098475826000026 ], [ -122.926543711, 49.099068079000126 ], [ -122.925147164999913, 49.099028141000133 ], [ -122.925134863999929, 49.099214414000095 ], [ -122.920963702999984, 49.09909501700006 ], [ -122.920926517999931, 49.099657315000094 ], [ -122.915460464999938, 49.099500606000063 ], [ -122.915563891999966, 49.09793930100011 ], [ -122.915460821999986, 49.097936343000114 ], [ -122.914575620999983, 49.097910938000048 ], [ -122.914569061999913, 49.098009934000139 ], [ -122.914718606999898, 49.098014226000039 ], [ -122.91481565, 49.098017012000106 ], [ -122.914577272999935, 49.101614463000082 ], [ -122.912657118999903, 49.101559334000044 ], [ -122.909111009999933, 49.101457432000082 ], [ -122.90913783299996, 49.101053397000079 ], [ -122.907460257999944, 49.101005150000056 ], [ -122.907446761999907, 49.101208337000102 ], [ -122.901980571999914, 49.101050945000033 ], [ -122.902002491999923, 49.100721516000107 ], [ -122.902028386999959, 49.100332326000064 ], [ -122.902219918999961, 49.097453518000087 ], [ -122.904668820999959, 49.097524066000069 ], [ -122.904682328999911, 49.097320877000115 ], [ -122.909130042999934, 49.097448865000054 ], [ -122.909211851999885, 49.096216365000075 ], [ -122.909162532999986, 49.096214947000064 ], [ -122.909308238999955, 49.094019706000054 ], [ -122.908700952999965, 49.094002242000137 ], [ -122.908813399999971, 49.092308265000021 ], [ -122.905717151999923, 49.092219167000046 ], [ -122.905739757999982, 49.091878944000022 ], [ -122.905956165999939, 49.088621683000078 ], [ -122.908301444999893, 49.088689180000081 ], [ -122.908369819999947, 49.087659138000092 ], [ -122.910544010999956, 49.087721665000124 ], [ -122.91058286099999, 49.087135991000039 ], [ -122.910683595999913, 49.087138887000116 ], [ -122.910762501999969, 49.08594924700003 ], [ -122.90903846, 49.085899672000053 ], [ -122.909134121999912, 49.084458134000023 ], [ -122.910735610999922, 49.083896384000106 ], [ -122.910983305999977, 49.083671389000067 ], [ -122.911269811999901, 49.083698395000098 ], [ -122.911436607999946, 49.083365205000085 ], [ -122.911929388999965, 49.083366594000019 ], [ -122.912146804999963, 49.083366598000083 ], [ -122.912386373999979, 49.083444394000068 ], [ -122.913365982999949, 49.083762498000048 ], [ -122.913653915999987, 49.083979008000064 ], [ -122.915062604999946, 49.084141404 ], [ -122.915269608999949, 49.08406161000007 ], [ -122.916022393999967, 49.084034596000059 ], [ -122.916570395999912, 49.084169905000039 ], [ -122.917404909999959, 49.084719590000049 ], [ -122.918041378999959, 49.085270437000091 ], [ -122.917945172999936, 49.086724325000105 ], [ -122.916189359, 49.086673953000101 ], [ -122.91614533399995, 49.087338866000032 ], [ -122.91604459899996, 49.087335976000062 ], [ -122.91603527800001, 49.087476757000054 ], [ -122.917417512, 49.08751641500006 ], [ -122.917249442999946, 49.090055621000047 ], [ -122.917179388999926, 49.091113931000081 ], [ -122.916051937999924, 49.091081585000062 ], [ -122.916033677999962, 49.091357341000077 ], [ -122.915841509999936, 49.094259054000069 ], [ -122.915809263999961, 49.094258128000078 ], [ -122.915803717999921, 49.094341871000069 ], [ -122.91589788499999, 49.094344573000093 ], [ -122.915794476999949, 49.095905887000121 ], [ -122.919869625999951, 49.096022743000034 ], [ -122.919906818999934, 49.095460442000082 ], [ -122.921303254999984, 49.095500449000113 ], [ -122.921315568999958, 49.095314176000016 ], [ -122.921716381999886, 49.095325655000117 ], [ -122.92176639399996, 49.094569084000071 ], [ -122.925772602, 49.094683745000083 ], [ -122.92582206599999, 49.093934480000037 ], [ -122.929505490999972, 49.094039771000062 ], [ -122.929522825, 49.093776870000035 ], [ -122.931564390999981, 49.09383517400007 ], [ -122.931712259999983, 49.091590917000119 ], [ -122.934875645999938, 49.091681181000112 ], [ -122.937177439999914, 49.091746801000056 ], [ -122.936940893999946, 49.095343233000037 ], [ -122.936936521999925, 49.095344214000036 ], [ -122.93566218499997, 49.095307892000037 ], [ -122.935640649000021, 49.095635142000077 ], [ -122.935191330999942, 49.095736013000078 ], [ -122.935026615999945, 49.095773003000062 ], [ -122.935035259999964, 49.097576269000101 ], [ -122.935040597999887, 49.098691775000134 ], [ -122.935041161999948, 49.09880819800005 ], [ -122.935041220999977, 49.098817201000095 ], [ -122.935026227999927, 49.09999615000001 ], [ -122.934966837999951, 49.104673903000062 ], [ -122.934929594999943, 49.107604791000071 ], [ -122.934973304999986, 49.109851402000096 ], [ -122.923939424999929, 49.109893728 ], [ -122.923734578999969, 49.109894499000077 ], [ -122.923702635999945, 49.111819034000071 ], [ -122.923400303999983, 49.111810383 ], [ -122.923638051999959, 49.108212969000107 ], [ -122.925013037999989, 49.108252303 ], [ -122.925047622999941, 49.107728702000074 ], [ -122.930002011999974, 49.107870284000107 ], [ -122.930014025999981, 49.107688123000059 ], [ -122.931787326999981, 49.107738743000027 ], [ -122.931792754999918, 49.107656365000082 ], [ -122.931978396999938, 49.107661663000059 ], [ -122.9319784, 49.107659644000144 ], [ -122.932629003999963, 49.10766002600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.734042553191489", "sL_AssetLoss": "49444", "sL_BldgLoss": "36294", "sL_StrLoss": "16304", "sL_NStrLoss": "19990", "sL_ContLoss": "13150", "geom_point": "0101000020E6100000DFAA460A40C25EC002AD4C3AC2884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.034580541999901, 49.070446840000045 ], [ -123.034610309999934, 49.069979098000076 ], [ -123.029604795999958, 49.069840810000052 ], [ -123.029706415999982, 49.068246665000053 ], [ -123.029834133999955, 49.066242931000076 ], [ -123.035296666999955, 49.066393835000014 ], [ -123.035269032999935, 49.066828164000121 ], [ -123.040695402999916, 49.066977793000085 ], [ -123.040612102999958, 49.068289454000137 ], [ -123.04046689799999, 49.070575691000087 ], [ -123.040045703999908, 49.070564087000044 ], [ -123.040043581999953, 49.070597502000055 ], [ -123.034580541999901, 49.070446840000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.730953050323306", "sL_AssetLoss": "35570", "sL_BldgLoss": "26000", "sL_StrLoss": "10420", "sL_NStrLoss": "15580", "sL_ContLoss": "9570", "geom_point": "0101000020E610000016E336F9F1C45EC0C4D83A1FBB864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076585812999937, 49.050993025000082 ], [ -123.079704341999957, 49.05107788 ], [ -123.079702777999955, 49.053327213000088 ], [ -123.07970240399996, 49.053881400000101 ], [ -123.076903693999924, 49.053868291000086 ], [ -123.07500324199998, 49.053868052000063 ], [ -123.074384185999961, 49.053867972000077 ], [ -123.074514250999954, 49.051795576000096 ], [ -123.076532035999946, 49.051850529 ], [ -123.076585812999937, 49.050993025000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "0.739738180671109", "sL_AssetLoss": "50722", "sL_BldgLoss": "37521", "sL_StrLoss": "15201", "sL_NStrLoss": "22320", "sL_ContLoss": "13201", "geom_point": "0101000020E61000001D98F5C552C45EC05E7767AB9A864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.060068074999919, 49.053771544000021 ], [ -123.060149187999968, 49.052485429000093 ], [ -123.064406388999899, 49.052601893000066 ], [ -123.064457854999915, 49.051784631000103 ], [ -123.065148168999926, 49.051803500000091 ], [ -123.065149727999966, 49.051778748000089 ], [ -123.065277566999981, 49.051782242000051 ], [ -123.065358890999946, 49.050490450000062 ], [ -123.066471065999963, 49.0505208390001 ], [ -123.066592848999932, 49.048585474000078 ], [ -123.068635003999944, 49.048641245000105 ], [ -123.072053430999972, 49.048734514000067 ], [ -123.071827433999943, 49.05233258100003 ], [ -123.070715212999943, 49.052302247000107 ], [ -123.070616855999901, 49.053867391000054 ], [ -123.068989297999963, 49.053867099000023 ], [ -123.068620885999962, 49.053830896000122 ], [ -123.063376187999935, 49.053784900000032 ], [ -123.060068074999919, 49.053771544000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.849701110162254", "sL_AssetLoss": "4684", "sL_BldgLoss": "3980", "sL_StrLoss": "2550", "sL_NStrLoss": "1430", "sL_ContLoss": "704", "geom_point": "0101000020E61000001AEB4DD29DBA5EC0E1BEA300B08A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.916667108999917, 49.083999003000038 ], [ -122.916447614, 49.08374689900004 ], [ -122.91558440799993, 49.083882210000056 ], [ -122.914845401999941, 49.083907794000019 ], [ -122.913899614999977, 49.08365570600008 ], [ -122.913338197999948, 49.083412197000037 ], [ -122.913091816999923, 49.083420696000118 ], [ -122.913037585, 49.083303901000143 ], [ -122.913257688, 49.082953594000074 ], [ -122.913682289999883, 49.082674394000058 ], [ -122.914368194, 49.082702891000103 ], [ -122.914732541, 49.082589923000093 ], [ -122.91470359499999, 49.083026930000067 ], [ -122.918183214999928, 49.083126783000097 ], [ -122.91806627299998, 49.084894223000106 ], [ -122.917515104999922, 49.084386298000048 ], [ -122.916667108999917, 49.083999003000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10257500", "BldgCostT": "5600000", "sL_LossRatio": "0.591754004350405", "sL_AssetLoss": "202280", "sL_BldgLoss": "119700", "sL_StrLoss": "57300", "sL_NStrLoss": "62400", "sL_ContLoss": "82580", "geom_point": "0101000020E6100000A9FE5AC163C45EC03DEFA574D9854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068674531999989, 49.043644455000013 ], [ -123.07183163299996, 49.043730607000064 ], [ -123.071605643999973, 49.0473287 ], [ -123.070837661999946, 49.047307752000037 ], [ -123.070805739999969, 49.047815818000082 ], [ -123.068637412, 49.047756643000092 ], [ -123.065345268999963, 49.047666714000094 ], [ -123.065557755999976, 49.044290878000055 ], [ -123.065571742999907, 49.044068636000112 ], [ -123.066003433999967, 49.044080434000072 ], [ -123.066339670999952, 49.044089622000058 ], [ -123.066350560999922, 49.043916521000071 ], [ -123.066371637999964, 49.043581554000056 ], [ -123.067022281, 49.043599330000092 ], [ -123.068674531999989, 49.043644455000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6902667", "BldgCostT": "4496667", "sL_LossRatio": "0.647803181688423", "sL_AssetLoss": "192665", "sL_BldgLoss": "124809", "sL_StrLoss": "58829", "sL_NStrLoss": "65980", "sL_ContLoss": "67856", "geom_point": "0101000020E61000000A94DAAC76C15EC07F0A155609894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.021902724999933, 49.074504093000023 ], [ -123.021925396999947, 49.0741494110001 ], [ -123.021040217999953, 49.074124871000066 ], [ -123.021054896999928, 49.073895280000045 ], [ -123.0201306, 49.07386964700008 ], [ -123.020161288999986, 49.073389804000016 ], [ -123.019639710999925, 49.07337533599999 ], [ -123.019641931999942, 49.073340622000025 ], [ -123.016324796999953, 49.073248549000056 ], [ -123.01632826599996, 49.073194370000088 ], [ -123.015513070999958, 49.073171727000023 ], [ -123.015743513999922, 49.069573897000105 ], [ -123.019475706, 49.069677513000059 ], [ -123.019488468999924, 49.069477988000109 ], [ -123.020519909999976, 49.0695066010001 ], [ -123.020702179999887, 49.066655909000112 ], [ -123.021960371999938, 49.066690798000138 ], [ -123.021991951999922, 49.066196640000065 ], [ -123.022915591999933, 49.066222243000084 ], [ -123.022915813999944, 49.066218762000062 ], [ -123.028378319999931, 49.066370018000043 ], [ -123.028259010999975, 49.06824090200007 ], [ -123.028148868, 49.069967893000069 ], [ -123.027892708999929, 49.069960806000076 ], [ -123.027768661999971, 49.071905496000028 ], [ -123.027674718999933, 49.07190289699999 ], [ -123.027543867999952, 49.07395399700011 ], [ -123.027411183999973, 49.073950325000126 ], [ -123.027366199999975, 49.074655398000054 ], [ -123.024176508999943, 49.074567097000092 ], [ -123.021902724999933, 49.074504093000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.759628928068386", "sL_AssetLoss": "20589", "sL_BldgLoss": "15640", "sL_StrLoss": "7220", "sL_NStrLoss": "8420", "sL_ContLoss": "4949", "geom_point": "0101000020E6100000CDA27F9BA8C35EC0168C84958E844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056034347999955, 49.036961426000047 ], [ -123.056032226999946, 49.035072359000026 ], [ -123.054390441999914, 49.035073144000101 ], [ -123.054391912999961, 49.036422478000098 ], [ -123.05398145599996, 49.036422670000078 ], [ -123.053981748999959, 49.036692538000096 ], [ -123.05275037, 49.036693106000072 ], [ -123.052749513000023, 49.035883507000086 ], [ -123.052339059999937, 49.035883693000095 ], [ -123.052338776999974, 49.03561382600008 ], [ -123.052040303999945, 49.035613962000042 ], [ -123.052672387999976, 49.034523401000072 ], [ -123.05334249299996, 49.034611270000049 ], [ -123.054050879999949, 49.034643805000016 ], [ -123.05432874, 49.034645574000081 ], [ -123.055377786999927, 49.034652291000072 ], [ -123.056612988999987, 49.034661901000071 ], [ -123.056928034999913, 49.034664941000067 ], [ -123.057880922999971, 49.034674103000086 ], [ -123.059138015999949, 49.034683307000122 ], [ -123.059527784999943, 49.034683759000075 ], [ -123.06030678599997, 49.03468470300011 ], [ -123.065137326999931, 49.034735327000099 ], [ -123.065142504999983, 49.03533744300006 ], [ -123.064241495999951, 49.035337948000112 ], [ -123.064241147999965, 49.035068081000169 ], [ -123.063830702999923, 49.035068308000135 ], [ -123.063830356999972, 49.034798442000103 ], [ -123.06177813799998, 49.034799559000064 ], [ -123.061778471999972, 49.035069425000138 ], [ -123.060547133999947, 49.035070079000029 ], [ -123.060547460999956, 49.035339944000107 ], [ -123.060137011999984, 49.035340159000029 ], [ -123.060137337999947, 49.035610027000125 ], [ -123.059726887999915, 49.035610240000047 ], [ -123.059728503000017, 49.036959573000104 ], [ -123.056034347999955, 49.036961426000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.728122344944775", "sL_AssetLoss": "23540", "sL_BldgLoss": "17140", "sL_StrLoss": "6060", "sL_NStrLoss": "11080", "sL_ContLoss": "6400", "geom_point": "0101000020E61000004F11333D59C35EC0BF828F1C44854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.050748034999955, 49.039005757000069 ], [ -123.054903577999937, 49.039119842000041 ], [ -123.054676305999962, 49.042717926000122 ], [ -123.053720379999959, 49.04269169700008 ], [ -123.053698284999939, 49.043041349000092 ], [ -123.04855314699995, 49.042900027000016 ], [ -123.048809704999897, 49.042684097000112 ], [ -123.050571998999914, 49.040551997000101 ], [ -123.050723489999882, 49.040093406000047 ], [ -123.050748034999955, 49.039005757000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10413333", "BldgCostT": "6708333", "sL_LossRatio": "0.65960296437394", "sL_AssetLoss": "335990", "sL_BldgLoss": "221620", "sL_StrLoss": "87760", "sL_NStrLoss": "133860", "sL_ContLoss": "114370", "geom_point": "0101000020E6100000D2F8C77324C35EC071C58335E7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.043170736999926, 49.059350697000049 ], [ -123.043261972999971, 49.057912532000067 ], [ -123.042871914999921, 49.057901792000024 ], [ -123.042930780999953, 49.056973934000027 ], [ -123.042885770999959, 49.056972696000024 ], [ -123.043114021999898, 49.053374716000121 ], [ -123.043324291999951, 49.053380506000082 ], [ -123.043323863999902, 49.052889014000122 ], [ -123.043430142999981, 49.052888974000012 ], [ -123.04344495, 49.05265552300007 ], [ -123.044051973999984, 49.052672234000035 ], [ -123.044236980999969, 49.049754533000069 ], [ -123.044492971999915, 49.049761580000023 ], [ -123.044493329999938, 49.049755945000079 ], [ -123.044575739999971, 49.04845603800004 ], [ -123.050036236999944, 49.048606196000101 ], [ -123.049881417999984, 49.051052697000046 ], [ -123.053822651999923, 49.051160903000067 ], [ -123.053782540999933, 49.051795581000043 ], [ -123.055739423999981, 49.051849254000025 ], [ -123.055701540999934, 49.052449042000056 ], [ -123.057229207999924, 49.052490917000071 ], [ -123.057222295999935, 49.052600403000042 ], [ -123.057265151999914, 49.052601577000146 ], [ -123.059378137999957, 49.052659460000051 ], [ -123.059300536999956, 49.053889571000092 ], [ -123.059293534999966, 49.053890619000057 ], [ -123.05917922399999, 49.053896881000107 ], [ -123.057806483999954, 49.053900322000075 ], [ -123.057685677, 49.053897008000064 ], [ -123.057426424999946, 49.053848417 ], [ -123.057359814999927, 49.053835873000061 ], [ -123.057353378999935, 49.054610437000107 ], [ -123.057318460999966, 49.055376236000029 ], [ -123.057313858000015, 49.055465675000029 ], [ -123.057167848999967, 49.056024661000045 ], [ -123.057160583000027, 49.056052493000017 ], [ -123.057110749999964, 49.056172515000107 ], [ -123.057077834999944, 49.05625179 ], [ -123.052507578999951, 49.056126453000047 ], [ -123.05250951, 49.056095917000071 ], [ -123.048854461999923, 49.055995538000104 ], [ -123.04863250399994, 49.059500925000059 ], [ -123.046659340999938, 49.059446684000072 ], [ -123.043170736999926, 49.059350697000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.731121281464531", "sL_AssetLoss": "17480", "sL_BldgLoss": "12780", "sL_StrLoss": "5100", "sL_NStrLoss": "7680", "sL_ContLoss": "4700", "geom_point": "0101000020E6100000293DF459B5C05EC0B63D0F287A894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.013766832999977, 49.07340610400005 ], [ -123.012534546, 49.073406245000101 ], [ -123.012534613999932, 49.073676109000118 ], [ -123.012123850999984, 49.073676153000129 ], [ -123.012123915999979, 49.073946019000104 ], [ -123.011713149999963, 49.073946061000079 ], [ -123.011713274999948, 49.074485791000043 ], [ -123.011302504999918, 49.074485832000143 ], [ -123.011302566999987, 49.074755696000068 ], [ -123.010891794, 49.074755736000085 ], [ -123.010891911999948, 49.075295466000149 ], [ -123.010070354999954, 49.075295540000127 ], [ -123.010070463999952, 49.075835271000074 ], [ -123.009248900999978, 49.075835339000079 ], [ -123.009249050999983, 49.07664493300004 ], [ -123.008016684999973, 49.076645027000112 ], [ -123.008016555, 49.075835432000076 ], [ -123.008838118999961, 49.075835371000082 ], [ -123.008837974999963, 49.075025776000103 ], [ -123.009659525999965, 49.075025711000094 ], [ -123.009659368999948, 49.074216116000024 ], [ -123.010070137999918, 49.074216081000031 ], [ -123.01007008299996, 49.073946216000067 ], [ -123.010480848999961, 49.073946179000039 ], [ -123.010480794, 49.073676314000124 ], [ -123.010891556999951, 49.07367627600005 ], [ -123.010891438999948, 49.073136547000075 ], [ -123.0113022, 49.073136507000122 ], [ -123.011302136999973, 49.072866642000037 ], [ -123.011712895999921, 49.072866601000101 ], [ -123.011712639999942, 49.07178714 ], [ -123.012944887999964, 49.071787009000026 ], [ -123.012944956999945, 49.072056874000033 ], [ -123.013355707999906, 49.072056827000075 ], [ -123.013355852999922, 49.072596557000068 ], [ -123.013766607999955, 49.072596509000142 ], [ -123.013766832999977, 49.07340610400005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2515000", "BldgCostT": "1525000", "sL_LossRatio": "0.693310657596372", "sL_AssetLoss": "176400", "sL_BldgLoss": "122300", "sL_StrLoss": "30800", "sL_NStrLoss": "91500", "sL_ContLoss": "54100", "geom_point": "0101000020E610000097CC0C769EB95EC02F9A0089C78C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.903615940999913, 49.107848457000074 ], [ -122.901640207999918, 49.104686799000014 ], [ -122.900325197999933, 49.102582202000086 ], [ -122.900268276999938, 49.102490396000071 ], [ -122.900382702999977, 49.102376589000123 ], [ -122.898945367999914, 49.100049518000098 ], [ -122.898912872000011, 49.099996920000116 ], [ -122.897611889999922, 49.097890357000047 ], [ -122.89760732799999, 49.09821298100011 ], [ -122.89593894299999, 49.095488916000114 ], [ -122.896242873999981, 49.095489188000101 ], [ -122.89624235499997, 49.095738028000014 ], [ -122.901678103999942, 49.095894855000026 ], [ -122.901438723999917, 49.099492289000111 ], [ -122.900126807999968, 49.099454464000068 ], [ -122.900103110999979, 49.0998104170001 ], [ -122.90157660499996, 49.099811682000059 ], [ -122.901576070999937, 49.100081546000062 ], [ -122.901987052, 49.10008189500013 ], [ -122.901986555999912, 49.10033407400006 ], [ -122.901985758999956, 49.100738557000049 ], [ -122.901985457999928, 49.100891485 ], [ -122.901835722, 49.100891358000069 ], [ -122.901574469, 49.100891136000101 ], [ -122.901573943999949, 49.101157956000065 ], [ -122.901573403999933, 49.101430862000065 ], [ -122.901306187999978, 49.101430634000096 ], [ -122.901162408999951, 49.101430511000018 ], [ -122.901162117999959, 49.101577353000053 ], [ -122.90116026699998, 49.102509964000099 ], [ -122.901571268999959, 49.102510316000092 ], [ -122.9015702, 49.103050042000085 ], [ -122.901981206999949, 49.103050392000036 ], [ -122.901980143999978, 49.103590118000042 ], [ -122.902391154999989, 49.10359046700006 ], [ -122.902389037999967, 49.104669920000021 ], [ -122.902800056999979, 49.104670265000024 ], [ -122.902799002999984, 49.105209992000077 ], [ -122.903210026999886, 49.105210338000084 ], [ -122.90320950099999, 49.105480201000091 ], [ -122.903620527999962, 49.105480544000052 ], [ -122.903620004999965, 49.10575040800007 ], [ -122.90444206200003, 49.105751091000066 ], [ -122.904439989999943, 49.106830543000086 ], [ -122.904028951999948, 49.106830203000094 ], [ -122.904027909999982, 49.10736992900005 ], [ -122.903616868999947, 49.107369586000061 ], [ -122.903616605999929, 49.107505529000022 ], [ -122.903615940999913, 49.107848457000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6854334", "BldgCostT": "4463334", "sL_LossRatio": "0.669215086646279", "sL_AssetLoss": "274680", "sL_BldgLoss": "183820", "sL_StrLoss": "77660", "sL_NStrLoss": "106160", "sL_ContLoss": "90860", "geom_point": "0101000020E61000000A4AEA675EBA5EC07F55CB29C38D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911420698999919, 49.113529576000118 ], [ -122.910327952, 49.113135051 ], [ -122.908876317999926, 49.112474295000055 ], [ -122.908075895999971, 49.112030499000049 ], [ -122.906992217999957, 49.111356861000033 ], [ -122.905643840999943, 49.110298074000056 ], [ -122.904622868999951, 49.109279311000108 ], [ -122.904607380999934, 49.109259453000092 ], [ -122.904904011999975, 49.109259698000123 ], [ -122.906079554999948, 49.109260660000132 ], [ -122.906078535999981, 49.10980038700005 ], [ -122.906900658999987, 49.109801052000094 ], [ -122.906900155999949, 49.11007091500008 ], [ -122.907311218999936, 49.110071246000068 ], [ -122.907310716999959, 49.110341109000046 ], [ -122.907721782999985, 49.110341438000077 ], [ -122.907721280999922, 49.110611301000063 ], [ -122.908954488999925, 49.110612281000023 ], [ -122.908953993999916, 49.110882143000055 ], [ -122.909085618999939, 49.110882247000099 ], [ -122.909308769999924, 49.107521318000089 ], [ -122.909351798999936, 49.107522556000042 ], [ -122.909422823999989, 49.106452718000085 ], [ -122.910428498999977, 49.106481623 ], [ -122.910451380999987, 49.106136829000029 ], [ -122.909021123999963, 49.106095717000066 ], [ -122.90904281899995, 49.105768939000015 ], [ -122.908488625999922, 49.105753004000064 ], [ -122.908727492999944, 49.102155589000127 ], [ -122.912652999, 49.102268398000042 ], [ -122.914193835999953, 49.102312639000083 ], [ -122.914172177999916, 49.102639420000038 ], [ -122.91472633699999, 49.102655326000033 ], [ -122.914698098999963, 49.103081437000071 ], [ -122.916320407999962, 49.103127985000114 ], [ -122.916082119999956, 49.106725411000134 ], [ -122.915889967999945, 49.106719899000034 ], [ -122.915847990000017, 49.107353544000041 ], [ -122.91586068299992, 49.107353908000107 ], [ -122.915828055999981, 49.10784638900008 ], [ -122.915989008999986, 49.107851006000061 ], [ -122.915939534999922, 49.108597790000069 ], [ -122.916009853999981, 49.108599807000125 ], [ -122.915954193999966, 49.109439953000027 ], [ -122.915959706999942, 49.109440111000112 ], [ -122.915808852999987, 49.111717023000018 ], [ -122.912545309999985, 49.111543500000089 ], [ -122.912445070999937, 49.111980690000117 ], [ -122.912520257, 49.112945635000116 ], [ -122.911005738999961, 49.112902137000056 ], [ -122.911005486999912, 49.113042649000064 ], [ -122.911827663999986, 49.113043280000042 ], [ -122.911827185999968, 49.113313142000059 ], [ -122.912548937999958, 49.113313692000084 ], [ -122.912581173999925, 49.113727401000041 ], [ -122.912592962999938, 49.113878834000054 ], [ -122.911420698999919, 49.113529576000118 ] ], [ [ -122.910298821999902, 49.112201554000123 ], [ -122.910309517999977, 49.112040394000097 ], [ -122.91030400599999, 49.112040235000073 ], [ -122.910353573999984, 49.111293457000095 ], [ -122.910283251999942, 49.111291437000055 ], [ -122.91029238499999, 49.111153840000028 ], [ -122.909364618999973, 49.111127176000132 ], [ -122.909363589999984, 49.111692056000066 ], [ -122.909774667999955, 49.111692377000097 ], [ -122.90977377199999, 49.112186466000139 ], [ -122.910298821999902, 49.112201554000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.889456775700935", "sL_AssetLoss": "6848", "sL_BldgLoss": "6091", "sL_StrLoss": "4320", "sL_NStrLoss": "1771", "sL_ContLoss": "757", "geom_point": "0101000020E6100000A2FBA4A0FCBD5EC0CED435A41B894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970397479999974, 49.069187568000054 ], [ -122.971236904999927, 49.069211239000076 ], [ -122.971003027999984, 49.072808975000044 ], [ -122.96553995499994, 49.072654805000113 ], [ -122.965711671999912, 49.070018098000084 ], [ -122.967991289999929, 49.069802406000058 ], [ -122.969578508, 49.069335286000054 ], [ -122.970397479999974, 49.069187568000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.838979673176564", "sL_AssetLoss": "5018", "sL_BldgLoss": "4210", "sL_StrLoss": "2600", "sL_NStrLoss": "1610", "sL_ContLoss": "808", "geom_point": "0101000020E6100000144031B264C45EC080BAA21058854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06644379, 49.043088656000059 ], [ -123.066670155999986, 49.039490549000142 ], [ -123.068623474999939, 49.039543904 ], [ -123.068634430999907, 49.041023537000108 ], [ -123.06864998899999, 49.042407114000106 ], [ -123.068691434999948, 49.042487528000024 ], [ -123.068691613999974, 49.042811021000105 ], [ -123.06870260099997, 49.042805619000134 ], [ -123.070772402999964, 49.041791884000048 ], [ -123.070904384999949, 49.041781108000116 ], [ -123.072029442999906, 49.04123580200006 ], [ -123.071903728, 49.043237705000116 ], [ -123.068685593999959, 49.043149888000052 ], [ -123.068012935999917, 49.043131520000067 ], [ -123.06644379, 49.043088656000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42010750", "BldgCostT": "26290000", "sL_LossRatio": "0.648213327969965", "sL_AssetLoss": "1372272", "sL_BldgLoss": "889525", "sL_StrLoss": "374485", "sL_NStrLoss": "515040", "sL_ContLoss": "482747", "geom_point": "0101000020E61000002578BFE1F0BD5EC09E9968A99F8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95368099299999, 49.089488113000066 ], [ -122.953716714999956, 49.088941990000073 ], [ -122.953623420999961, 49.088939346000089 ], [ -122.953694751999947, 49.087848806000117 ], [ -122.953473880999937, 49.087842545000072 ], [ -122.953709185999983, 49.084244931000029 ], [ -122.955491620999936, 49.084295445000045 ], [ -122.956542911999961, 49.084325226000082 ], [ -122.95656796599999, 49.08394177600006 ], [ -122.955516682999985, 49.083911996000062 ], [ -122.95451396199995, 49.083883583000123 ], [ -122.954640774999973, 49.081943944000052 ], [ -122.953526645999958, 49.081912362000033 ], [ -122.953691328999966, 49.079394183000069 ], [ -122.953521500999926, 49.079389368000072 ], [ -122.953612125999882, 49.078003561000067 ], [ -122.953541985999905, 49.078001573000094 ], [ -122.953666885999922, 49.076091546000043 ], [ -122.953410398999935, 49.076084274000046 ], [ -122.953645647999949, 49.072486594000061 ], [ -122.954649843999974, 49.072515065000097 ], [ -122.954697228999976, 49.071790100000115 ], [ -122.9561050199999, 49.071490102000041 ], [ -122.957107606999926, 49.071347529000064 ], [ -122.958118281999987, 49.071203797000074 ], [ -122.959280907, 49.070843504000052 ], [ -122.960235554999926, 49.070789266000091 ], [ -122.960194728999909, 49.071415019000042 ], [ -122.960213046999982, 49.071415537000057 ], [ -122.960071456999941, 49.073585657000066 ], [ -122.960102883999966, 49.073586546000051 ], [ -122.959897663999939, 49.076731605000056 ], [ -122.960397465999961, 49.07674574599999 ], [ -122.960244614999951, 49.079088335000101 ], [ -122.960305412999929, 49.079090054000076 ], [ -122.96007064299998, 49.082687712000101 ], [ -122.960066466999976, 49.082687593000081 ], [ -122.960008328999947, 49.083578432000103 ], [ -122.96206232599998, 49.083636521000066 ], [ -122.961854996999961, 49.086815204000125 ], [ -122.965795387999933, 49.086926530000042 ], [ -122.965738018999971, 49.087807176000055 ], [ -122.970549174999988, 49.087942907000098 ], [ -122.970450712999934, 49.089456635 ], [ -122.970608114999948, 49.08946107200007 ], [ -122.970725510999927, 49.087656154000051 ], [ -122.975964681999955, 49.08780370700007 ], [ -122.976085395000013, 49.085944417000043 ], [ -122.975855324999927, 49.08593794300004 ], [ -122.976088892999954, 49.082340270000053 ], [ -122.976960676999937, 49.082364799000047 ], [ -122.977040082, 49.081141242000051 ], [ -122.976942058999924, 49.081138485000103 ], [ -122.977042712999918, 49.079587447000051 ], [ -122.976037621999978, 49.079559164000095 ], [ -122.976189532999953, 49.077218849000069 ], [ -122.97594506199998, 49.077211968000064 ], [ -122.97617857899999, 49.073614245000144 ], [ -122.977020532999987, 49.073637941000079 ], [ -122.977119892999923, 49.072106533000074 ], [ -122.976944911999951, 49.072101609000072 ], [ -122.97695113099999, 49.072005761000064 ], [ -122.975608569999949, 49.071967973000064 ], [ -122.975842085999943, 49.068370222000063 ], [ -122.97685183199998, 49.068398644000069 ], [ -122.976886613999966, 49.067862525000045 ], [ -122.977026796999908, 49.067844110000102 ], [ -122.97950532299997, 49.067764401000012 ], [ -122.981723014, 49.067368493000131 ], [ -122.982394634999963, 49.067313961000089 ], [ -122.982308234999934, 49.068648089000071 ], [ -122.982640949999947, 49.068657435000041 ], [ -122.982410985999934, 49.07220843100005 ], [ -122.982585968999956, 49.072213346000076 ], [ -122.982352953999964, 49.075811090000059 ], [ -122.981510956999927, 49.075787437000074 ], [ -122.981490173999944, 49.076108212000129 ], [ -122.981734639999942, 49.07611507900004 ], [ -122.98163415, 49.077666130000082 ], [ -122.982639202999962, 49.077694360000066 ], [ -122.982583837, 49.078549168000059 ], [ -122.982693952999981, 49.078552260000016 ], [ -122.982498256999975, 49.081573494000061 ], [ -122.9829458299999, 49.081586062000021 ], [ -122.982712794999912, 49.085183754000106 ], [ -122.982694876999915, 49.085183251000103 ], [ -122.98266621799992, 49.085625655000086 ], [ -122.982592800999925, 49.085623593000015 ], [ -122.982582060999931, 49.085789378000129 ], [ -122.982891787999989, 49.08579807500012 ], [ -122.982783120999954, 49.087475604000105 ], [ -122.986221773999944, 49.087572091000013 ], [ -122.98621353899992, 49.087699349000111 ], [ -122.991474396999976, 49.087846752000061 ], [ -122.991337984000012, 49.089958508000045 ], [ -122.991299073999954, 49.09056081800005 ], [ -122.980553155999957, 49.090561833000095 ], [ -122.980561242999968, 49.090437101000077 ], [ -122.977055901999961, 49.090338563000032 ], [ -122.977082160999956, 49.08993397700003 ], [ -122.977086931, 49.089860493000124 ], [ -122.977061029999973, 49.089859765 ], [ -122.977165953999986, 49.088243174000105 ], [ -122.976164069999967, 49.088214988000104 ], [ -122.976052382999953, 49.089935197000045 ], [ -122.976011688999932, 49.090561935000082 ], [ -122.963115494999968, 49.090561176000044 ], [ -122.96247536099996, 49.090560728000135 ], [ -122.960509491999971, 49.090559320000146 ], [ -122.959454125999926, 49.09055856300008 ], [ -122.959271439999966, 49.090717509000037 ], [ -122.95883732, 49.09109527400004 ], [ -122.95831740599999, 49.091342758000074 ], [ -122.957829907999937, 49.091492955000014 ], [ -122.957374124999902, 49.091554845000097 ], [ -122.957165681999953, 49.091581398000073 ], [ -122.956464377999922, 49.091707468000045 ], [ -122.956193683999985, 49.091756110000134 ], [ -122.952690866999987, 49.092385619000041 ], [ -122.95238961699999, 49.092439766000041 ], [ -122.952046599999946, 49.092501393000084 ], [ -122.951578499999982, 49.092585511000109 ], [ -122.947460205, 49.093325411000087 ], [ -122.946081262999897, 49.093573121000084 ], [ -122.942619334999975, 49.094194902000041 ], [ -122.939802197999981, 49.094700791000093 ], [ -122.939425888999921, 49.094785288000054 ], [ -122.939562480999896, 49.092706912000025 ], [ -122.942925679999945, 49.092802625000097 ], [ -122.943017615999935, 49.091402092000102 ], [ -122.946708938999933, 49.091507022000087 ], [ -122.946763606000019, 49.09067318000006 ], [ -122.948923680999911, 49.09073452400002 ], [ -122.948934154999904, 49.090574675000106 ], [ -122.948967050999983, 49.090072533000075 ], [ -122.95143918799999, 49.090142685000046 ], [ -122.951444547999955, 49.090060795000092 ], [ -122.951454359999943, 49.089910892000084 ], [ -122.951906842999946, 49.08992372600008 ], [ -122.9519077409999, 49.089910003000092 ], [ -122.952927640999945, 49.089938924000123 ], [ -122.952946613999927, 49.089648928000081 ], [ -122.953620837999949, 49.08966804100001 ], [ -122.953632695999943, 49.089486744000112 ], [ -122.95368099299999, 49.089488113000066 ] ], [ [ -122.960199479999957, 49.088782353000099 ], [ -122.960303336999957, 49.087191051000133 ], [ -122.960295713999983, 49.087190836000104 ], [ -122.960202381999949, 49.088620892000044 ], [ -122.959214549999913, 49.088592946000105 ], [ -122.959202206999947, 49.088782004000052 ], [ -122.960199479999957, 49.088782353000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6665834", "BldgCostT": "4333334", "sL_LossRatio": "0.662895343020028", "sL_AssetLoss": "181899", "sL_BldgLoss": "120580", "sL_StrLoss": "58430", "sL_NStrLoss": "62150", "sL_ContLoss": "61319", "geom_point": "0101000020E61000003F4AF44BE7BB5EC06110A2C64E8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.932395838999966, 49.085622491000059 ], [ -122.93261030299999, 49.082365941000027 ], [ -122.932346136999954, 49.082358399000057 ], [ -122.932398262000021, 49.081566923000018 ], [ -122.932369487999921, 49.081566102000117 ], [ -122.932391158999948, 49.081237017 ], [ -122.932345105999943, 49.08123570200015 ], [ -122.932345476999942, 49.08123007500005 ], [ -122.931182666999959, 49.081196872000113 ], [ -122.931419626999968, 49.077599730000067 ], [ -122.931421032999964, 49.077599309000028 ], [ -122.931563736999948, 49.077603384000014 ], [ -122.93156688199997, 49.077555649000075 ], [ -122.934615807999961, 49.076642906000075 ], [ -122.935931715999985, 49.076311103000066 ], [ -122.93805048099992, 49.075886887000081 ], [ -122.93802145399998, 49.076328522000047 ], [ -122.938057064999967, 49.076329537000085 ], [ -122.938046004999933, 49.076497808000084 ], [ -122.939060340999944, 49.076526711000042 ], [ -122.939035874999917, 49.076899071000121 ], [ -122.939825438, 49.076899486000102 ], [ -122.939825112000037, 49.077169350000133 ], [ -122.94064669799999, 49.077169775000122 ], [ -122.940646374999957, 49.077439641000026 ], [ -122.941057169999922, 49.077439851000101 ], [ -122.94105685199996, 49.077709715000076 ], [ -122.941878446999951, 49.077710132000028 ], [ -122.9418781319999, 49.077979997000099 ], [ -122.942699730999962, 49.077980407000048 ], [ -122.942699419999954, 49.078250272000076 ], [ -122.943521023999949, 49.078250677000028 ], [ -122.943520716999984, 49.078520542000064 ], [ -122.943931521999971, 49.078520742000087 ], [ -122.943930611999988, 49.079330336000055 ], [ -122.938876288999921, 49.079327772000035 ], [ -122.938823943999964, 49.080124337000044 ], [ -122.937968942999959, 49.08009997400012 ], [ -122.937949653999951, 49.080393413000145 ], [ -122.9384629, 49.080408038000051 ], [ -122.938226437999958, 49.084005640000086 ], [ -122.937977326999928, 49.083998541000049 ], [ -122.937860321999892, 49.085778342000054 ], [ -122.932395838999966, 49.085622491000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.718845500848896", "sL_AssetLoss": "29450", "sL_BldgLoss": "21170", "sL_StrLoss": "9260", "sL_NStrLoss": "11910", "sL_ContLoss": "8280", "geom_point": "0101000020E6100000EA43D5B7A5BF5EC069F75047EC884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.991874371999927, 49.067835311000096 ], [ -122.997336965999963, 49.06798814400004 ], [ -122.9971051099999, 49.071585944000098 ], [ -122.991642094999946, 49.071433100000036 ], [ -122.991874371999927, 49.067835311000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28543334", "BldgCostT": "17683334", "sL_LossRatio": "0.646128172621666", "sL_AssetLoss": "773020", "sL_BldgLoss": "499470", "sL_StrLoss": "229920", "sL_NStrLoss": "269550", "sL_ContLoss": "273550", "geom_point": "0101000020E61000000EAE567904C35EC000F7860C75894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.037182549999926, 49.085814715000069 ], [ -123.037196847999908, 49.085589928000047 ], [ -123.036926003999923, 49.085582461000101 ], [ -123.037154856999919, 49.081984654000067 ], [ -123.038081086999952, 49.08201018900008 ], [ -123.038116847999959, 49.081447777000115 ], [ -123.043196451999947, 49.081587670000069 ], [ -123.043249481999965, 49.080752199000074 ], [ -123.043921068999978, 49.080770676000022 ], [ -123.043983566999955, 49.079785762000022 ], [ -123.043008685999936, 49.079758938000104 ], [ -123.043237038999962, 49.076161086000077 ], [ -123.044040132999939, 49.076183183000097 ], [ -123.044045903999915, 49.076092218000042 ], [ -123.042818504999957, 49.076058443000107 ], [ -123.042982518999978, 49.073474292000064 ], [ -123.042944766999938, 49.073473253000017 ], [ -123.04317309599999, 49.069875366000133 ], [ -123.043174778999969, 49.069875412000052 ], [ -123.04323854899998, 49.068870464000028 ], [ -123.044079504999928, 49.068893608000053 ], [ -123.044116971999955, 49.068302960000082 ], [ -123.04412482399999, 49.068179183000012 ], [ -123.043227000999977, 49.068154474000018 ], [ -123.043256176999989, 49.067694687000035 ], [ -123.043059423999964, 49.067689271000091 ], [ -123.043287714999963, 49.064091352000048 ], [ -123.043369589999941, 49.064093606000014 ], [ -123.043391328999959, 49.063750953000081 ], [ -123.043398192999959, 49.063751142000086 ], [ -123.043405100999976, 49.063642250000051 ], [ -123.043144774999973, 49.06363508400009 ], [ -123.043231077999934, 49.062274829000117 ], [ -123.043373038999945, 49.060037142000041 ], [ -123.046494845999945, 49.060123036000078 ], [ -123.048834887999945, 49.060187359000025 ], [ -123.048693187999973, 49.062425054000087 ], [ -123.048638847999911, 49.063283114000122 ], [ -123.048899173999985, 49.063290266000052 ], [ -123.048860054999963, 49.063908018000056 ], [ -123.049923875999951, 49.063937241000119 ], [ -123.049873064999986, 49.064739891000052 ], [ -123.050395725, 49.064754244000063 ], [ -123.050454341999952, 49.063828125000093 ], [ -123.055916656999969, 49.063977982000061 ], [ -123.05578789499998, 49.06601608700003 ], [ -123.055689340999919, 49.06757592900005 ], [ -123.053575643999977, 49.067517974000054 ], [ -123.053515503999961, 49.06846907900006 ], [ -123.049601653999957, 49.0683616560001 ], [ -123.049558077999933, 49.069049874 ], [ -123.049542034999945, 49.069049433000082 ], [ -123.049496715999979, 49.069765174000104 ], [ -123.048655739999944, 49.069742073000022 ], [ -123.048607284999932, 49.070507076000105 ], [ -123.048680622999896, 49.070509091000119 ], [ -123.048485512999903, 49.073589286000107 ], [ -123.049675576999917, 49.073621973000122 ], [ -123.049554234999917, 49.075538144000106 ], [ -123.049970382999987, 49.075549570000142 ], [ -123.049742551999955, 49.079147440000042 ], [ -123.049498096999983, 49.079140728000056 ], [ -123.049427622999985, 49.080253404000089 ], [ -123.049722079999952, 49.08026149000009 ], [ -123.049721275999957, 49.080274182000025 ], [ -123.05095163699994, 49.080307957000052 ], [ -123.050948734999935, 49.080353800000161 ], [ -123.051464121999942, 49.080367943000041 ], [ -123.051394558999931, 49.081466953000053 ], [ -123.051565292999911, 49.081471638000025 ], [ -123.051565033999964, 49.081221488000075 ], [ -123.051975861999964, 49.081221302000081 ], [ -123.05197529699997, 49.08068157400006 ], [ -123.05238611899992, 49.08068138900007 ], [ -123.052385834999924, 49.080411524000091 ], [ -123.052796654999938, 49.080411337000079 ], [ -123.052795797999963, 49.079601742000072 ], [ -123.053206608999943, 49.079601554000057 ], [ -123.053206033999942, 49.079061824000092 ], [ -123.054438458999982, 49.07906125000008 ], [ -123.054439933999987, 49.080410573000059 ], [ -123.055672391999977, 49.080409985000074 ], [ -123.055672090999963, 49.080140121000049 ], [ -123.056082908999912, 49.080139922000072 ], [ -123.056080476999952, 49.077981005 ], [ -123.055669677999944, 49.077981203000064 ], [ -123.055668170999979, 49.076631880000029 ], [ -123.05648974799999, 49.07663148000006 ], [ -123.056489440999954, 49.076361615000025 ], [ -123.056900227999961, 49.076361414000061 ], [ -123.056899917999885, 49.076091549000068 ], [ -123.057057445999973, 49.076091471000019 ], [ -123.057011148999919, 49.082889636000033 ], [ -123.056552860999901, 49.082864246000078 ], [ -123.055261619999939, 49.083145701000056 ], [ -123.051157688, 49.083118697 ], [ -123.046962974999929, 49.083105864000061 ], [ -123.046295857999908, 49.083134520000073 ], [ -123.046295994000019, 49.084123194000021 ], [ -123.046278901999955, 49.084964629000076 ], [ -123.04475764699994, 49.084967791000018 ], [ -123.044199620999933, 49.084995151000037 ], [ -123.041833400999934, 49.085111389000076 ], [ -123.041081914999936, 49.085179990000036 ], [ -123.040443563999958, 49.085237894000038 ], [ -123.04043982799999, 49.085704298000032 ], [ -123.036368094, 49.086208493000115 ], [ -123.03636780699999, 49.085814974000094 ], [ -123.037182549999926, 49.085814715000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.731628242074928", "sL_AssetLoss": "55520", "sL_BldgLoss": "40620", "sL_StrLoss": "17320", "sL_NStrLoss": "23300", "sL_ContLoss": "14900", "geom_point": "0101000020E6100000FB27B858D1BB5EC07D9D06D2668B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93149744899992, 49.091474752000067 ], [ -122.931541583999945, 49.090804896000144 ], [ -122.931424486999916, 49.090801553000055 ], [ -122.931438736999937, 49.090585279000038 ], [ -122.931454581999972, 49.090344793000071 ], [ -122.931337512, 49.090341451000057 ], [ -122.931355923999945, 49.090062016000054 ], [ -122.931360238999901, 49.089996531000047 ], [ -122.931301430999909, 49.089994851000036 ], [ -122.931538458999981, 49.086397298000072 ], [ -122.937003029999971, 49.086553192000068 ], [ -122.936980344999981, 49.086898116000143 ], [ -122.937039148999986, 49.0868997930001 ], [ -122.937009110999924, 49.087356555000113 ], [ -122.937126173999943, 49.087359892000066 ], [ -122.937101495999926, 49.087735147000046 ], [ -122.938281157999967, 49.087768762000131 ], [ -122.938130198999943, 49.090065012000153 ], [ -122.938096996999917, 49.090570027000119 ], [ -122.938044643999916, 49.091366323000045 ], [ -122.936981990999953, 49.091336043000069 ], [ -122.93696261499997, 49.091630648000034 ], [ -122.934871581999971, 49.091571033000051 ], [ -122.93149744899992, 49.091474752000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.848138747884941", "sL_AssetLoss": "4728", "sL_BldgLoss": "4010", "sL_StrLoss": "2510", "sL_NStrLoss": "1500", "sL_ContLoss": "718", "geom_point": "0101000020E6100000D2DFAE0BFDC45EC0D28369B513854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076446285, 49.04100662600009 ], [ -123.076531448999944, 49.039648320000033 ], [ -123.07574060099995, 49.039648842000048 ], [ -123.075741010999963, 49.039918707000048 ], [ -123.075330525999945, 49.039918977000106 ], [ -123.075330933999965, 49.040188843000074 ], [ -123.074920445999908, 49.040189110000028 ], [ -123.07492085, 49.040458976000103 ], [ -123.073689378999973, 49.040459769000044 ], [ -123.073689337999895, 49.040431222000095 ], [ -123.07498518, 49.03980307100008 ], [ -123.079701911999976, 49.037516392000072 ], [ -123.079713135999924, 49.038428537000044 ], [ -123.079711281999948, 49.041095490000075 ], [ -123.076446285, 49.04100662600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.76645264847512", "sL_AssetLoss": "24920", "sL_BldgLoss": "19100", "sL_StrLoss": "9870", "sL_NStrLoss": "9230", "sL_ContLoss": "5820", "geom_point": "0101000020E6100000E017B04795C15EC01892B497448A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.021944747999939, 49.082366772000029 ], [ -123.021998833999959, 49.081520747000049 ], [ -123.021833795999939, 49.081516172000072 ], [ -123.022063792999987, 49.077918375000074 ], [ -123.024148942999958, 49.077976147000136 ], [ -123.027527666999944, 49.078069671000058 ], [ -123.027473685999965, 49.078915705000078 ], [ -123.02763871499999, 49.078920270000012 ], [ -123.027409142999943, 49.082518074000063 ], [ -123.024113133999933, 49.082426846000047 ], [ -123.022354053999891, 49.082378116000072 ], [ -123.021944747999939, 49.082366772000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9299167", "BldgCostT": "5916667", "sL_LossRatio": "0.620271674976656", "sL_AssetLoss": "283795", "sL_BldgLoss": "176030", "sL_StrLoss": "72580", "sL_NStrLoss": "103450", "sL_ContLoss": "107765", "geom_point": "0101000020E610000057FF52CCA2C05EC07FE34AC1438A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.001033437999979, 49.08447137600011 ], [ -123.001033410999923, 49.0831220540001 ], [ -123.000622568, 49.083122056000015 ], [ -123.000622560999943, 49.082582327000061 ], [ -123.000211723999925, 49.082582329000076 ], [ -123.000211721999989, 49.082312464000012 ], [ -122.999800885999946, 49.082312464000012 ], [ -122.999800889999918, 49.08150287100004 ], [ -123.00021172, 49.081502870000151 ], [ -123.000211716999928, 49.081233006000083 ], [ -123.00103337099992, 49.081233002000069 ], [ -123.001033359999951, 49.080693271000015 ], [ -123.001444181999929, 49.080693267000136 ], [ -123.001444173999943, 49.08042340300004 ], [ -123.001754465999937, 49.080423399000047 ], [ -123.002676633999968, 49.080423380000056 ], [ -123.002676647999976, 49.080693245000099 ], [ -123.00349829299995, 49.080693223000026 ], [ -123.003498311999948, 49.08096308800009 ], [ -123.003909136999965, 49.080963075000113 ], [ -123.003909155999963, 49.081232939000095 ], [ -123.004319983999963, 49.081232925000023 ], [ -123.004320029999946, 49.081772654000154 ], [ -123.009250003999966, 49.081772364000123 ], [ -123.009249901999951, 49.081232635000092 ], [ -123.008839075999958, 49.081232667000073 ], [ -123.008838931999961, 49.080423073000063 ], [ -123.009660571999916, 49.080423006000032 ], [ -123.009660520999958, 49.080153142000086 ], [ -123.00924970299999, 49.080153176000096 ], [ -123.009249651999966, 49.079883311000138 ], [ -123.008428021999947, 49.079883375000058 ], [ -123.008427975999894, 49.079613510000065 ], [ -123.006373908999976, 49.079613641000044 ], [ -123.006373770999957, 49.078534182000055 ], [ -123.006784575999973, 49.078534159000071 ], [ -123.006784538999966, 49.078264294000057 ], [ -123.001660749999985, 49.07826449000008 ], [ -122.996925286999982, 49.078264452000056 ], [ -122.996925255999926, 49.078804182000056 ], [ -122.995282027999949, 49.078804127000048 ], [ -122.995282079999967, 49.078264397000062 ], [ -122.994460473999936, 49.078264360000048 ], [ -122.994460594999964, 49.077184901000074 ], [ -122.99487138799999, 49.077184921000025 ], [ -122.994871415999967, 49.076915055000036 ], [ -122.996103788999918, 49.076915104000122 ], [ -122.996103745999932, 49.077454833000104 ], [ -123.001611492999942, 49.077454896000098 ], [ -123.006373632999939, 49.077454723000088 ], [ -123.006373598999929, 49.077184859000027 ], [ -123.006784392999961, 49.077184835000054 ], [ -123.006784355999955, 49.076914970000061 ], [ -123.008016727999959, 49.076914891000044 ], [ -123.008016814999962, 49.077454621000136 ], [ -123.015821928999941, 49.07745381400013 ], [ -123.01582218499999, 49.078263409000073 ], [ -123.00924935099999, 49.078264123000032 ], [ -123.009249452999981, 49.078803853000103 ], [ -123.011303484999928, 49.078803670000084 ], [ -123.011303545999937, 49.079073534000102 ], [ -123.015000825999905, 49.079073112000067 ], [ -123.015000743999963, 49.078803249000067 ], [ -123.017054775999938, 49.078802963000058 ], [ -123.017054591999965, 49.078263233 ], [ -123.016643788999886, 49.078263293000084 ], [ -123.016643519999974, 49.077453699000024 ], [ -123.017465110999964, 49.077453577000099 ], [ -123.017464920999913, 49.076913848000103 ], [ -123.018697294, 49.076913655000027 ], [ -123.018697394999919, 49.077183520000098 ], [ -123.019108188999923, 49.077183452000057 ], [ -123.019108291999942, 49.077453317000064 ], [ -123.019929883, 49.077453179 ], [ -123.019930313999964, 49.078532637000109 ], [ -123.020751922999963, 49.078532493000047 ], [ -123.02075203599999, 49.078802358000111 ], [ -123.021162842999928, 49.078802282000019 ], [ -123.021163301999977, 49.07988174200009 ], [ -123.017876776999941, 49.079882298000079 ], [ -123.017876873999967, 49.08015216200004 ], [ -123.016644421999914, 49.08015234700013 ], [ -123.016644690999925, 49.080961941000076 ], [ -123.019931286999935, 49.080961420000094 ], [ -123.019931395, 49.081231285000072 ], [ -123.020342220999936, 49.081231213000066 ], [ -123.020342551999931, 49.08204080700007 ], [ -123.019931718999942, 49.082040879000076 ], [ -123.019931849999921, 49.08236748100007 ], [ -123.019932042999969, 49.082850472000139 ], [ -123.003498443999931, 49.082852141000082 ], [ -123.003498463999946, 49.083122005000092 ], [ -123.002676778999955, 49.083122027000051 ], [ -123.002676851999965, 49.084471350000115 ], [ -123.001734896999892, 49.084471368000038 ], [ -123.001033437999979, 49.08447137600011 ] ], [ [ -123.015001393999952, 49.080962166000091 ], [ -123.015001150999922, 49.080152572000074 ], [ -123.015411967999967, 49.080152518000091 ], [ -123.015411883999917, 49.07988265300007 ], [ -123.014179438999975, 49.079882811000132 ], [ -123.01417951399992, 49.080152675000107 ], [ -123.013357879999944, 49.080152775000109 ], [ -123.013357952999954, 49.080422638000066 ], [ -123.013768773, 49.080422590000033 ], [ -123.013768847, 49.080692454000022 ], [ -123.014179668999944, 49.080692405000114 ], [ -123.014179745999911, 49.080962270000065 ], [ -123.015001393999952, 49.080962166000091 ] ], [ [ -123.019519722, 49.079072437000079 ], [ -123.01951961599994, 49.078802573000111 ], [ -123.018698003999972, 49.078802709000108 ], [ -123.018698104999928, 49.079072573000126 ], [ -123.019519722, 49.079072437000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.731597971363726", "sL_AssetLoss": "71378", "sL_BldgLoss": "52220", "sL_StrLoss": "22580", "sL_NStrLoss": "29640", "sL_ContLoss": "19158", "geom_point": "0101000020E6100000CE3A5FC3BEC15EC0942FAA3D538B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.019759595999957, 49.09004792100005 ], [ -123.019847876999933, 49.088668252000048 ], [ -123.02171795799994, 49.088720092000088 ], [ -123.021860318, 49.086493695000087 ], [ -123.022159245999944, 49.086501979000026 ], [ -123.022202141999927, 49.085831002000056 ], [ -123.024097455999964, 49.085883503000034 ], [ -123.027666944999964, 49.0859822890001 ], [ -123.027529747999935, 49.088132149000103 ], [ -123.030480476999969, 49.08821372000007 ], [ -123.030431622999956, 49.088979968000054 ], [ -123.03078576899999, 49.08898975400006 ], [ -123.030796728999931, 49.088817820000017 ], [ -123.033832797999963, 49.088901656000111 ], [ -123.033940692999948, 49.087207391000049 ], [ -123.034562299999948, 49.08722454600008 ], [ -123.034568172999968, 49.087132306000058 ], [ -123.035209374999937, 49.087149998000093 ], [ -123.035212446999964, 49.087101722000078 ], [ -123.035957886999981, 49.087122285000085 ], [ -123.035957330999963, 49.086354831000072 ], [ -123.035975445999938, 49.086354825000079 ], [ -123.036013324, 49.090131667000037 ], [ -123.027973045999914, 49.090085804000068 ], [ -123.027516539999951, 49.090083192000144 ], [ -123.025040826999955, 49.090068995000081 ], [ -123.024692481999921, 49.090066969000127 ], [ -123.024571488, 49.090066292000081 ], [ -123.024514368999959, 49.090065966000061 ], [ -123.02448453099997, 49.090065755000083 ], [ -123.024311653, 49.090064752000039 ], [ -123.024078489999937, 49.090063396000076 ], [ -123.022339526999971, 49.090057188000102 ], [ -123.02172319, 49.090054975000072 ], [ -123.019759595999957, 49.09004792100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.749164865395952", "sL_AssetLoss": "20356", "sL_BldgLoss": "15250", "sL_StrLoss": "7420", "sL_NStrLoss": "7830", "sL_ContLoss": "5106", "geom_point": "0101000020E6100000F0183F0903C55EC04CAA747F0E864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077254642999932, 49.050404122000053 ], [ -123.077302351999947, 49.04964314100004 ], [ -123.076448761000023, 49.049619904000046 ], [ -123.076674387999972, 49.046021813000024 ], [ -123.077531397, 49.046045143000079 ], [ -123.077675173999978, 49.043751330000134 ], [ -123.079709397999949, 49.043806680000081 ], [ -123.079704763999942, 49.050470784000034 ], [ -123.077254642999932, 49.050404122000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.743027597571914", "sL_AssetLoss": "47939", "sL_BldgLoss": "35620", "sL_StrLoss": "15930", "sL_NStrLoss": "19690", "sL_ContLoss": "12319", "geom_point": "0101000020E6100000436A24538FC15EC02B1BF762FF874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.02204040099997, 49.065183922000102 ], [ -123.02216353299994, 49.063256996000085 ], [ -123.02101328099991, 49.063225100000118 ], [ -123.021113088999968, 49.061663672000115 ], [ -123.021243251999934, 49.059627202000073 ], [ -123.026704980999952, 49.059778544000054 ], [ -123.026582044999969, 49.061705486000086 ], [ -123.027732261999944, 49.061737322000027 ], [ -123.027725276999888, 49.061846856000059 ], [ -123.027502781999956, 49.065335222000044 ], [ -123.02204040099997, 49.065183922000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18735046", "BldgCostT": "9686794", "sL_LossRatio": "0.549036732596969", "sL_AssetLoss": "973250", "sL_BldgLoss": "534350", "sL_StrLoss": "226950", "sL_NStrLoss": "307400", "sL_ContLoss": "438900", "geom_point": "0101000020E61000005FD4729025C05EC067F4A3E114914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.999673577999957, 49.131574786000094 ], [ -123.005143675999946, 49.131727208000086 ], [ -123.004912106999925, 49.135324669000049 ], [ -122.999441587, 49.135172237000063 ], [ -122.999673577999957, 49.131574786000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4395706", "BldgCostT": "2822039", "sL_LossRatio": "0.636765416752987", "sL_AssetLoss": "144810", "sL_BldgLoss": "92210", "sL_StrLoss": "17710", "sL_NStrLoss": "74500", "sL_ContLoss": "52600", "geom_point": "0101000020E6100000CE2A3B167EC45EC0827645F8308F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.070107691999937, 49.120611825000026 ], [ -123.070106931999959, 49.120072099000012 ], [ -123.069284636999967, 49.120072596000064 ], [ -123.069284262999957, 49.119802733000064 ], [ -123.068873115999949, 49.119802979000113 ], [ -123.068871995999956, 49.118993391000075 ], [ -123.070105409999954, 49.11899264800013 ], [ -123.070105029999965, 49.118722786000092 ], [ -123.069282757999957, 49.11872328200014 ], [ -123.069282005999966, 49.118183557000044 ], [ -123.068870875999963, 49.118183803000157 ], [ -123.068869379999967, 49.117104352000112 ], [ -123.068047135999919, 49.117104840000152 ], [ -123.068046765999938, 49.116834977000075 ], [ -123.067635646000014, 49.116835218000112 ], [ -123.067634668999943, 49.116116967000046 ], [ -123.067641504999983, 49.116087789000083 ], [ -123.067634616999982, 49.116077895000032 ], [ -123.067634176999945, 49.115755767000067 ], [ -123.067993388999966, 49.115755556000082 ], [ -123.06874098699997, 49.116358911000042 ], [ -123.069198738, 49.116728579000082 ], [ -123.072689619999906, 49.119547816000072 ], [ -123.072787703999964, 49.119626986000128 ], [ -123.073002898999931, 49.119800741000063 ], [ -123.073120281999934, 49.119895551000084 ], [ -123.073129604999963, 49.119903079000096 ], [ -123.072723444999937, 49.120070481000027 ], [ -123.072162665999912, 49.120070833000078 ], [ -123.072163000999979, 49.120301468000093 ], [ -123.072067678999986, 49.120340755000129 ], [ -123.071340758999924, 49.120341207000102 ], [ -123.071341146999927, 49.12061106900012 ], [ -123.070107691999937, 49.120611825000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3528417", "BldgCostT": "1961667", "sL_LossRatio": "0.615107395127577", "sL_AssetLoss": "69370", "sL_BldgLoss": "42670", "sL_StrLoss": "17370", "sL_NStrLoss": "25300", "sL_ContLoss": "26700", "geom_point": "0101000020E61000008DF41E3E1BBD5EC0CB831523A2924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.954549855999971, 49.147070662000026 ], [ -122.954550102999988, 49.146800801000076 ], [ -122.953727367999988, 49.146800475000134 ], [ -122.95372761899992, 49.146530613 ], [ -122.953316252999983, 49.146530448000057 ], [ -122.953316506999954, 49.146260586000039 ], [ -122.952905142999953, 49.146260418000125 ], [ -122.952906676999945, 49.14464125000012 ], [ -122.953318025999948, 49.14464141600012 ], [ -122.953318279999934, 49.144371556000088 ], [ -122.954140976999952, 49.144371884000066 ], [ -122.954141224999915, 49.144102023000116 ], [ -122.955375263999969, 49.144102506000074 ], [ -122.955375020999924, 49.144372368000063 ], [ -122.956197717999927, 49.144372683000029 ], [ -122.956197241999973, 49.144912407000042 ], [ -122.956608593999974, 49.144912562000101 ], [ -122.956607179999978, 49.146531730000092 ], [ -122.956195812999908, 49.146531575 ], [ -122.956195575999956, 49.146801438000104 ], [ -122.955784206999965, 49.146801281000101 ], [ -122.95578396799999, 49.147071142000108 ], [ -122.954549855999971, 49.147070662000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4170500", "BldgCostT": "2195000", "sL_LossRatio": "0.649329407916258", "sL_AssetLoss": "152850", "sL_BldgLoss": "99250", "sL_StrLoss": "21650", "sL_NStrLoss": "77600", "sL_ContLoss": "53600", "geom_point": "0101000020E6100000DFB5F8D223BF5EC0D0B37A03A38B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.985776665999978, 49.091291291000061 ], [ -122.985784900999974, 49.09116403400003 ], [ -122.980523686999959, 49.091016352000125 ], [ -122.980542852999946, 49.090720748000074 ], [ -122.980553155999957, 49.090561833000095 ], [ -122.991299073999954, 49.09056081800005 ], [ -122.991288651000019, 49.090722169000131 ], [ -122.99124199000002, 49.091444428000031 ], [ -122.985776665999978, 49.091291291000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9963834", "BldgCostT": "5453334", "sL_LossRatio": "0.618805590851334", "sL_AssetLoss": "291190", "sL_BldgLoss": "180190", "sL_StrLoss": "64600", "sL_NStrLoss": "115590", "sL_ContLoss": "111000", "geom_point": "0101000020E6100000B734D0DF38C25EC00EDFC2BA71904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.033933709999985, 49.131422627000056 ], [ -123.033933255999926, 49.130758093000075 ], [ -123.031754654999972, 49.130698004000095 ], [ -123.031984127, 49.12710045900009 ], [ -123.032211646999897, 49.127106737000119 ], [ -123.032277474999887, 49.12607456400012 ], [ -123.032696476999959, 49.126086124000089 ], [ -123.03269625899992, 49.125755873000102 ], [ -123.03475223099997, 49.125755272000063 ], [ -123.034752321, 49.125884525000124 ], [ -123.034752501999947, 49.126142821000052 ], [ -123.037747032999931, 49.126225329000107 ], [ -123.037632310999939, 49.128027480000092 ], [ -123.037633040999978, 49.128992719000095 ], [ -123.037570859999946, 49.128992740000065 ], [ -123.037518008999939, 49.129822891000067 ], [ -123.037290474999935, 49.129816626000078 ], [ -123.03722475499994, 49.130848795000126 ], [ -123.035166987999972, 49.130792103000076 ], [ -123.035167432999984, 49.131422258000057 ], [ -123.034322306000021, 49.131422512 ], [ -123.033933709999985, 49.131422627000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2565000", "BldgCostT": "1350000", "sL_LossRatio": "0.687659574468085", "sL_AssetLoss": "235000", "sL_BldgLoss": "161600", "sL_StrLoss": "28000", "sL_NStrLoss": "133600", "sL_ContLoss": "73400", "geom_point": "0101000020E6100000CCDC53A448C05EC0637DC176498D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.002266919999983, 49.104711161000075 ], [ -123.002266907999953, 49.104441297000079 ], [ -123.001855889999945, 49.104441305000137 ], [ -123.001855848999952, 49.103361850000113 ], [ -123.003499886000014, 49.103361813000035 ], [ -123.003499869, 49.103091949000024 ], [ -123.00678792399999, 49.103091803000076 ], [ -123.006787959999954, 49.103361666000069 ], [ -123.007198968999944, 49.103361641000049 ], [ -123.007199087999965, 49.104171231000102 ], [ -123.005966039, 49.104171302000083 ], [ -123.005966071999964, 49.104441166000043 ], [ -123.004733017999925, 49.104441223000023 ], [ -123.00473299199993, 49.10417136000008 ], [ -123.004321974999954, 49.104171377000029 ], [ -123.004321951999913, 49.103901512000085 ], [ -123.003910938000018, 49.10390152700009 ], [ -123.003910980999947, 49.104441254000072 ], [ -123.003499963999971, 49.104441267000034 ], [ -123.00349998199998, 49.104711130000062 ], [ -123.002266919999983, 49.104711161000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.683700440528634", "sL_AssetLoss": "113500", "sL_BldgLoss": "77600", "sL_StrLoss": "13400", "sL_NStrLoss": "64200", "sL_ContLoss": "35900", "geom_point": "0101000020E6100000D6D7678C5EBB5EC08E354C020E914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92741793499998, 49.134373286000077 ], [ -122.927418327999973, 49.134103425000035 ], [ -122.92618453899999, 49.134102642000137 ], [ -122.926184658999929, 49.134022223000073 ], [ -122.926185740999969, 49.133293057000074 ], [ -122.927008254999947, 49.13329358 ], [ -122.927010235999973, 49.131944269 ], [ -122.928243971, 49.131945043000087 ], [ -122.928243581999965, 49.132214904000072 ], [ -122.928359681999936, 49.132214977000075 ], [ -122.928596645999946, 49.132215124000041 ], [ -122.928654828999953, 49.132215159000104 ], [ -122.92865387099999, 49.132882428000059 ], [ -122.928652430999961, 49.133886716000163 ], [ -122.928652225999883, 49.134029006000127 ], [ -122.92865173099996, 49.134374056000077 ], [ -122.92741793499998, 49.134373286000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206047235", "BldgCostT": "120356757", "sL_LossRatio": "0.597835967477959", "sL_AssetLoss": "9097830", "sL_BldgLoss": "5439010", "sL_StrLoss": "2104460", "sL_NStrLoss": "3334550", "sL_ContLoss": "3658820", "geom_point": "0101000020E610000069DB16235AC05EC019C868F4D58C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.985826333999967, 49.10390072400007 ], [ -122.985826411999966, 49.103630859000127 ], [ -122.985415400999898, 49.103630808000105 ], [ -122.985415715999949, 49.102551354000084 ], [ -122.985004714999917, 49.102551301000091 ], [ -122.98500495899998, 49.101741710000034 ], [ -122.98541595399999, 49.101741763000099 ], [ -122.985416348999976, 49.100392445000097 ], [ -122.98459438, 49.100392337000059 ], [ -122.984594963999925, 49.098503291000057 ], [ -122.985005933999915, 49.098503345000076 ], [ -122.985006095999935, 49.097963617000083 ], [ -122.985417059999946, 49.097963670000105 ], [ -122.98541713899999, 49.097693806000102 ], [ -122.985828102999918, 49.097693857000088 ], [ -122.985828179999928, 49.097423993000071 ], [ -122.986239138999935, 49.097424043000061 ], [ -122.986239288999982, 49.096884315000075 ], [ -122.989115978999962, 49.096884622000104 ], [ -122.989115919999961, 49.097154487000104 ], [ -122.991581666999977, 49.097154692000103 ], [ -122.991581713999949, 49.096884829 ], [ -122.994869358999949, 49.096885021000084 ], [ -122.994869331999965, 49.09715488500013 ], [ -122.997746037999946, 49.097154977000059 ], [ -122.997746048999929, 49.096885114000017 ], [ -122.999389872999927, 49.096885134000097 ], [ -122.999389875999938, 49.096615269000068 ], [ -123.001855598999953, 49.096615257000103 ], [ -123.001855608999932, 49.096885120000145 ], [ -123.003499431999941, 49.09688508199999 ], [ -123.003499448999946, 49.097154946000053 ], [ -123.004732322999956, 49.097154902000071 ], [ -123.004732299999915, 49.096885038000032 ], [ -123.009061912999954, 49.096884781000057 ], [ -123.00914371799999, 49.095611112 ], [ -123.014609625, 49.09576306100012 ], [ -123.014555047999963, 49.096614353000056 ], [ -123.015828018, 49.096614186000075 ], [ -123.01582810399999, 49.096884050000043 ], [ -123.01623906, 49.096883992000087 ], [ -123.016239324999916, 49.097693584000119 ], [ -123.016650285999972, 49.097693526000093 ], [ -123.016650015999957, 49.096883934000118 ], [ -123.018704794999962, 49.096883620000028 ], [ -123.01870489599996, 49.097153483000078 ], [ -123.021581601999969, 49.0971529810001 ], [ -123.021581718999926, 49.097422845000047 ], [ -123.022403638999947, 49.097422688000101 ], [ -123.022403518999923, 49.097152825000116 ], [ -123.022814475999951, 49.097152744000027 ], [ -123.022814103999934, 49.096343153000063 ], [ -123.024028973999947, 49.096342906000132 ], [ -123.024457909, 49.096342816000039 ], [ -123.02445817399996, 49.096882544000074 ], [ -123.024869130999917, 49.096882456000053 ], [ -123.02486926399996, 49.097152320000063 ], [ -123.025280221999935, 49.097152231000067 ], [ -123.025280269999925, 49.097246143000056 ], [ -123.025280770999984, 49.098231685000023 ], [ -123.024869804999966, 49.098231775000095 ], [ -123.02486994, 49.098501639000055 ], [ -123.024458969999969, 49.098501727000048 ], [ -123.024459103999945, 49.098771591000052 ], [ -123.0240481299999, 49.098771677000073 ], [ -123.024048261999937, 49.099041541000062 ], [ -123.024019257999953, 49.099041547000091 ], [ -123.02363728899999, 49.099041625000034 ], [ -123.023637800999964, 49.100121080000072 ], [ -123.024007644999969, 49.100121004000087 ], [ -123.024048782999898, 49.100120996000037 ], [ -123.024048914999938, 49.100390859000136 ], [ -123.02445989899999, 49.100390773000065 ], [ -123.024460296999976, 49.101200365000054 ], [ -123.024049304999892, 49.101200450000086 ], [ -123.02404943499999, 49.101470314000018 ], [ -123.023993126999954, 49.101470326000076 ], [ -123.02363844199999, 49.101470399000071 ], [ -123.023638826999957, 49.102279991000096 ], [ -123.023984414999958, 49.102279919000118 ], [ -123.024049826999956, 49.102279906000028 ], [ -123.024049957000017, 49.102549770000053 ], [ -123.0244609599999, 49.102549684000046 ], [ -123.02446135699995, 49.103359273000102 ], [ -123.02405034899999, 49.103359359000066 ], [ -123.024050479, 49.103629223 ], [ -123.02396989499999, 49.103629241000043 ], [ -123.023639465999935, 49.103629308000045 ], [ -123.023639722999974, 49.104169035000069 ], [ -123.023228707999948, 49.104169119000126 ], [ -123.023228960999958, 49.104708846000086 ], [ -123.017063653999969, 49.104709922000026 ], [ -123.017063562000018, 49.104440058000094 ], [ -123.009665235999961, 49.104440916000073 ], [ -123.009665130999906, 49.103901188000123 ], [ -123.007610061999969, 49.103901342000079 ], [ -123.00760993899999, 49.103091751000171 ], [ -123.008431951999953, 49.103091694000049 ], [ -123.008431859999988, 49.102551966000192 ], [ -123.006787849999981, 49.102552075000133 ], [ -123.006787886999987, 49.102821939000087 ], [ -123.005554871999934, 49.102822005000085 ], [ -123.005554811999943, 49.102282277 ], [ -123.004732811999972, 49.102282314000085 ], [ -123.004732759999939, 49.101742587000075 ], [ -123.003910768999958, 49.101742617000127 ], [ -123.003910811999958, 49.102282345000035 ], [ -123.00226681, 49.102282389000031 ], [ -123.002266785999936, 49.101742662000092 ], [ -123.001855789999951, 49.101742669000082 ], [ -123.001855748999958, 49.100663214000036 ], [ -123.001444761999906, 49.100663219000054 ], [ -123.001444754999937, 49.100393356000104 ], [ -123.000211801, 49.100393365000023 ], [ -123.000211808999964, 49.102552274000125 ], [ -122.999800806999986, 49.102552275000036 ], [ -122.999800806999986, 49.102822138000086 ], [ -122.999389800999964, 49.102822137000054 ], [ -122.99938979699999, 49.103092 ], [ -122.998978790999971, 49.103091998000181 ], [ -122.99897877299999, 49.103901588000063 ], [ -122.99733471899998, 49.103901563000093 ], [ -122.997334733999963, 49.103631698000108 ], [ -122.996923720999945, 49.10363168800005 ], [ -122.996923705, 49.103901552000075 ], [ -122.985826333999967, 49.10390072400007 ] ], [ [ -123.000211799999988, 49.100123502000017 ], [ -123.000211796999935, 49.099583774000031 ], [ -122.99897886299999, 49.099583769000077 ], [ -122.998978850999961, 49.100123497000027 ], [ -123.000211799999988, 49.100123502000017 ] ], [ [ -123.001033745999933, 49.099313905000024 ], [ -123.001033735999968, 49.098774177000045 ], [ -123.000622763999942, 49.098774181000053 ], [ -123.000622760999946, 49.098504317000071 ], [ -123.000211791999945, 49.098504319000064 ], [ -123.000211795999945, 49.09931391 ], [ -123.001033745999933, 49.099313905000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10079886", "BldgCostT": "5037079", "sL_LossRatio": "0.622102243523566", "sL_AssetLoss": "227633", "sL_BldgLoss": "141611", "sL_StrLoss": "25841", "sL_NStrLoss": "115770", "sL_ContLoss": "86022", "geom_point": "0101000020E6100000237FEED3CAC15EC0687D25EB4B8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025385666999981, 49.109817449000019 ], [ -123.030853292999922, 49.109968568000042 ], [ -123.030623816999949, 49.11356620600003 ], [ -123.025155768999966, 49.113415075000091 ], [ -123.025385666999981, 49.109817449000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.683655536028119", "sL_AssetLoss": "113800", "sL_BldgLoss": "77800", "sL_StrLoss": "13400", "sL_NStrLoss": "64400", "sL_ContLoss": "36000", "geom_point": "0101000020E61000004FCD82DC07BB5EC0A897AD2F718E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.922106574999987, 49.111971220000051 ], [ -122.923339814999949, 49.111972044000062 ], [ -122.92333731899997, 49.113591222000139 ], [ -122.921281852999925, 49.113589839000028 ], [ -122.921283988999988, 49.11224052500004 ], [ -122.922106151999955, 49.112241082 ], [ -122.922106574999987, 49.111971220000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101728017", "BldgCostT": "54573529", "sL_LossRatio": "0.576107648502239", "sL_AssetLoss": "4853277", "sL_BldgLoss": "2796010", "sL_StrLoss": "932520", "sL_NStrLoss": "1863490", "sL_ContLoss": "2057267", "geom_point": "0101000020E610000047E46AE09EBB5EC0999A5EDE738E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92661133699994, 49.123578279000156 ], [ -122.926613726999975, 49.121959104000098 ], [ -122.926202562999919, 49.121958842000119 ], [ -122.926203204999965, 49.121527110000102 ], [ -122.92455863899994, 49.121480095000059 ], [ -122.924557094999926, 49.122497504000137 ], [ -122.924188256999969, 49.122497262000117 ], [ -122.924293114999941, 49.122238466000042 ], [ -122.92453804099999, 49.120994791000037 ], [ -122.924167077999954, 49.119671751000041 ], [ -122.923814319999906, 49.119001285000124 ], [ -122.923912663999928, 49.119001775000072 ], [ -122.924103851999988, 49.119002755000025 ], [ -122.924172093999971, 49.119003088000042 ], [ -122.924648192999939, 49.119012211000083 ], [ -122.925449213999968, 49.119222510000085 ], [ -122.925490613999912, 49.119232464000056 ], [ -122.926092394999941, 49.119376981000059 ], [ -122.926475145999973, 49.119426561000076 ], [ -122.926547319999898, 49.119435914000078 ], [ -122.926635233999932, 49.119445540000143 ], [ -122.92671177599999, 49.1194550270001 ], [ -122.926343515999918, 49.11891289800004 ], [ -122.926104325000026, 49.118635758000082 ], [ -122.925805068999935, 49.118293820000055 ], [ -122.925328215, 49.117840465 ], [ -122.924703937999965, 49.117338775000114 ], [ -122.923974963999967, 49.11686739500005 ], [ -122.922740728999955, 49.116228381000077 ], [ -122.921493524999946, 49.115724124000081 ], [ -122.920311070999929, 49.115379412000017 ], [ -122.913562762999931, 49.114167759000068 ], [ -122.912592962999938, 49.113878834000054 ], [ -122.912581173999925, 49.113727401000041 ], [ -122.912548937999958, 49.113313692000084 ], [ -122.913060459999912, 49.113314078000016 ], [ -122.91306093099999, 49.113044215000052 ], [ -122.913472018999954, 49.11304452400006 ], [ -122.91347214399994, 49.11297296300004 ], [ -122.912520257, 49.112945635000116 ], [ -122.912445070999937, 49.111980690000117 ], [ -122.912545309999985, 49.111543500000089 ], [ -122.915808852999987, 49.111717023000018 ], [ -122.91573866399996, 49.11277633800011 ], [ -122.915939006999977, 49.112776483000111 ], [ -122.91593809699998, 49.113316209000075 ], [ -122.91634918699998, 49.113316508000025 ], [ -122.916348732999921, 49.113586370000043 ], [ -122.916759827999925, 49.113586667000028 ], [ -122.916759374999984, 49.113856531000067 ], [ -122.918814852999944, 49.113857994000043 ], [ -122.91881573299996, 49.113318268000043 ], [ -122.920049006999946, 49.113319129000025 ], [ -122.920046837999948, 49.114668443000063 ], [ -122.920457941999985, 49.114668727000023 ], [ -122.920458803999935, 49.114129001000016 ], [ -122.92169209799999, 49.114129844000047 ], [ -122.92169124899999, 49.114669570000025 ], [ -122.92210235, 49.114669848000119 ], [ -122.922101925999939, 49.114939711000019 ], [ -122.922924136999924, 49.114940263000086 ], [ -122.922923718999982, 49.115210125000083 ], [ -122.923334825999945, 49.115210400000088 ], [ -122.923334410000024, 49.115480262000055 ], [ -122.924156626999959, 49.115480805000075 ], [ -122.924155803999923, 49.116020531000061 ], [ -122.924978031999942, 49.116021068000123 ], [ -122.924978437999982, 49.115751205000066 ], [ -122.926211771999974, 49.115752 ], [ -122.926210214999941, 49.116801417000062 ], [ -122.927443524999916, 49.116836662000033 ], [ -122.927443532999959, 49.116832233000089 ], [ -122.9287823559999, 49.116833067000115 ], [ -122.928798374999957, 49.116590319000046 ], [ -122.929910550999963, 49.116622076000098 ], [ -122.929911013999927, 49.116294031000045 ], [ -122.930733243999953, 49.116294527000065 ], [ -122.930733995999915, 49.115754802000055 ], [ -122.929500661999938, 49.1157540560001 ], [ -122.929501809999977, 49.114944467000129 ], [ -122.929912913999956, 49.114944717000107 ], [ -122.929913674999966, 49.114404991000143 ], [ -122.93032477499996, 49.114405241000078 ], [ -122.930327797999951, 49.112246337000101 ], [ -122.930738879999922, 49.112246583000122 ], [ -122.930739202999959, 49.112015314000132 ], [ -122.930252425999967, 49.112001419000073 ], [ -122.930251388, 49.112017152000142 ], [ -122.924783851999962, 49.111860920000034 ], [ -122.924784574999961, 49.111849982000102 ], [ -122.923702635999945, 49.111819034000071 ], [ -122.923734578999969, 49.109894499000077 ], [ -122.923939424999929, 49.109893728 ], [ -122.934973304999986, 49.109851402000096 ], [ -122.934929594999943, 49.107604791000071 ], [ -122.934966837999951, 49.104673903000062 ], [ -122.935026227999927, 49.09999615000001 ], [ -122.935041220999977, 49.098817201000095 ], [ -122.935041161999948, 49.09880819800005 ], [ -122.935040597999887, 49.098691775000134 ], [ -122.935035259999964, 49.097576269000101 ], [ -122.935026615999945, 49.095773003000062 ], [ -122.935191330999942, 49.095736013000078 ], [ -122.935640649000021, 49.095635142000077 ], [ -122.935626461999988, 49.095850739000085 ], [ -122.938522947, 49.095933277000043 ], [ -122.938289974999975, 49.099476589000048 ], [ -122.938458467, 49.099481389000118 ], [ -122.938260136999972, 49.102497536000058 ], [ -122.938486949999955, 49.102503996000138 ], [ -122.938444173999969, 49.103154522000047 ], [ -122.938499490999973, 49.103156098000063 ], [ -122.938300353, 49.106184308000124 ], [ -122.938521473999941, 49.106190605000073 ], [ -122.938284885999963, 49.109788063000053 ], [ -122.938176050999942, 49.109784964000028 ], [ -122.938145389999974, 49.110251112000121 ], [ -122.938296731999941, 49.110255422000087 ], [ -122.938224593999976, 49.111352185000015 ], [ -122.938604988999955, 49.111363016000034 ], [ -122.938581399, 49.111721699000036 ], [ -122.939161091999964, 49.111738203000101 ], [ -122.93892452399993, 49.11533563200004 ], [ -122.938270691999918, 49.115317017000017 ], [ -122.93823922099989, 49.115795447000039 ], [ -122.938075668999915, 49.115790790000062 ], [ -122.938029253999943, 49.116496350000062 ], [ -122.936994650999964, 49.116466886000048 ], [ -122.936923168999925, 49.11755307300006 ], [ -122.935665056999966, 49.117517231000107 ], [ -122.93566417599996, 49.118197874000018 ], [ -122.936920971999953, 49.118233679000092 ], [ -122.936684197, 49.121831067000073 ], [ -122.933946714999962, 49.121753061000021 ], [ -122.933903417999915, 49.122410233000096 ], [ -122.931547153999986, 49.122343035000029 ], [ -122.931546934999943, 49.122501860000057 ], [ -122.931135767999962, 49.122501615000068 ], [ -122.931135393999909, 49.122771478000161 ], [ -122.929490718999915, 49.122770485000146 ], [ -122.92949033499994, 49.123040348000089 ], [ -122.929079162999983, 49.12304009500005 ], [ -122.929078778999951, 49.123309959000061 ], [ -122.927924712999953, 49.123309244000069 ], [ -122.927845257999977, 49.123309194000058 ], [ -122.927844866999962, 49.123579056000082 ], [ -122.927677650999939, 49.123578952000067 ], [ -122.92661133699994, 49.123578279000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "371864289", "BldgCostT": "197357057", "sL_LossRatio": "0.576948773463987", "sL_AssetLoss": "7066201", "sL_BldgLoss": "4076836", "sL_StrLoss": "1400046", "sL_NStrLoss": "2676790", "sL_ContLoss": "2989365", "geom_point": "0101000020E6100000C5FC80CD9ABC5EC03C9D1019DA954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.919198118999986, 49.193782368000079 ], [ -122.919101724999948, 49.193737139000064 ], [ -122.918363019999973, 49.193736619000092 ], [ -122.918272604999942, 49.193647669 ], [ -122.918273986999964, 49.192808385000056 ], [ -122.918577766999988, 49.192387473000032 ], [ -122.918686426999955, 49.192387549000074 ], [ -122.91868667499989, 49.192236569000038 ], [ -122.918967081999966, 49.191848028000109 ], [ -122.919099053999986, 49.19184812000006 ], [ -122.919099352999936, 49.191664749000054 ], [ -122.919175305999971, 49.191559503000079 ], [ -122.919312576, 49.191308551000063 ], [ -122.919511669999935, 49.191308689000081 ], [ -122.919512262999959, 49.190943488000123 ], [ -122.919724903999935, 49.190554739000092 ], [ -122.919732853, 49.190540213000112 ], [ -122.919738864999957, 49.190529271000074 ], [ -122.919754432999937, 49.190500795000069 ], [ -122.919925253999935, 49.190188482000032 ], [ -122.920232160999944, 49.189627381000044 ], [ -122.920644018999965, 49.188874351000074 ], [ -122.921005190999935, 49.188214008000102 ], [ -122.921047959999953, 49.188071435000047 ], [ -122.921163762999981, 49.188071514000079 ], [ -122.92116419199999, 49.187801655000101 ], [ -122.920752483999948, 49.18780137300007 ], [ -122.92075251599999, 49.187781878000045 ], [ -122.921682192999967, 49.186046410000053 ], [ -122.921915779999949, 49.186083392000093 ], [ -122.922036622999954, 49.186029298000037 ], [ -122.922259287999978, 49.185929594000093 ], [ -122.922335265999919, 49.185707285000042 ], [ -122.922437390999974, 49.185408397000081 ], [ -122.922809719999975, 49.184905599000103 ], [ -122.92309399599999, 49.184346267000066 ], [ -122.924007690999986, 49.182548499000049 ], [ -122.924640508, 49.181551593000094 ], [ -122.924751433999944, 49.181327411000041 ], [ -122.92487936899991, 49.181327494000115 ], [ -122.924879759999897, 49.181068056000115 ], [ -122.925151874, 49.180518091000103 ], [ -122.925292239999976, 49.180518182000121 ], [ -122.925292644999942, 49.180248322000132 ], [ -122.92528534899999, 49.180248318000096 ], [ -122.925333985999941, 49.180150019000031 ], [ -122.925340129999967, 49.180137544000026 ], [ -122.925344271999947, 49.180129174000079 ], [ -122.925529301999944, 49.179755205000099 ], [ -122.925685754999947, 49.179438996000066 ], [ -122.925705502999946, 49.179439009000056 ], [ -122.925705562999937, 49.179398961000039 ], [ -122.925752025999927, 49.179305057000143 ], [ -122.925864498999942, 49.17907768800012 ], [ -122.925996257999913, 49.178697060000076 ], [ -122.926347099999973, 49.177683392000056 ], [ -122.926737997999936, 49.17767420400002 ], [ -122.927073719999967, 49.17766630000007 ], [ -122.927430399999949, 49.177334487000095 ], [ -122.927597585999976, 49.177086979000045 ], [ -122.927843987999935, 49.176722102000056 ], [ -122.928049082999962, 49.176224661000084 ], [ -122.928115063999925, 49.176064655000118 ], [ -122.928160194999975, 49.175955198000054 ], [ -122.92821424899995, 49.175824091000017 ], [ -122.92822132199997, 49.17580695500007 ], [ -122.928310778999943, 49.175589895000044 ], [ -122.928793712999905, 49.173907890000066 ], [ -122.929234018999978, 49.173188603000071 ], [ -122.929454506999917, 49.172522101000055 ], [ -122.929605819999949, 49.172313999000082 ], [ -122.930114207999964, 49.171614883000096 ], [ -122.93082850499998, 49.170824554000063 ], [ -122.931041855, 49.170588487 ], [ -122.931126658000011, 49.170494637000075 ], [ -122.931163527999942, 49.17045384500009 ], [ -122.932162, 49.169349009000101 ], [ -122.932914116999925, 49.168856636000044 ], [ -122.933400302999985, 49.168538334000047 ], [ -122.933704500999937, 49.168339186000011 ], [ -122.933832794999944, 49.168255184000024 ], [ -122.9339872, 49.168154107000149 ], [ -122.934243960999964, 49.167840190000099 ], [ -122.93436525599999, 49.167840259000059 ], [ -122.934365452999955, 49.167691652000059 ], [ -122.934399608999968, 49.167649891000082 ], [ -122.934826709000021, 49.167570092000084 ], [ -122.935607855999976, 49.166961362000052 ], [ -122.935992594999973, 49.166661502000046 ], [ -122.937035728999973, 49.166070683000036 ], [ -122.937100731999919, 49.166033880000079 ], [ -122.937155929999946, 49.166002621000061 ], [ -122.937928899999974, 49.165564797000123 ], [ -122.939493801, 49.16454940800002 ], [ -122.939953197999969, 49.164321227000066 ], [ -122.940006315999952, 49.164294853000079 ], [ -122.94018372, 49.16420673000006 ], [ -122.941827682999985, 49.163390095000089 ], [ -122.94196462299999, 49.1632733060001 ], [ -122.942091026999918, 49.162998321000053 ], [ -122.942147784999932, 49.162874894000076 ], [ -122.942220330999959, 49.16271710200008 ], [ -122.942602032999929, 49.1627172930001 ], [ -122.942602832999938, 49.162024739000046 ], [ -122.942857796999974, 49.161745097000079 ], [ -122.943021082999962, 49.161638057000054 ], [ -122.943426261999946, 49.161638256000145 ], [ -122.943426278999951, 49.161622867000069 ], [ -122.943426530999915, 49.161401705000046 ], [ -122.943548911, 49.161397580000049 ], [ -122.943927805999948, 49.161384805000047 ], [ -122.944133210999922, 49.161538591000088 ], [ -122.944166087999946, 49.16175889900007 ], [ -122.944187003999943, 49.161898892000039 ], [ -122.944406292999972, 49.161952987000092 ], [ -122.947303923999968, 49.16044749700005 ], [ -122.947466480999964, 49.160363044000114 ], [ -122.94746785699999, 49.160362332000062 ], [ -122.947797007999938, 49.160191289000089 ], [ -122.948177673999922, 49.160034567000061 ], [ -122.949087296999963, 49.159660096000053 ], [ -122.950594892999959, 49.159311109000058 ], [ -122.951658471999934, 49.159188569000086 ], [ -122.95165844899995, 49.159213247000039 ], [ -122.95206992, 49.159213418 ], [ -122.95206998899999, 49.159141153000071 ], [ -122.952460996999889, 49.159096098000063 ], [ -122.953047475999981, 49.159089313000045 ], [ -122.953166885000016, 49.159087935000059 ], [ -122.95372052099998, 49.159081536000045 ], [ -122.955534799999896, 49.159060508000081 ], [ -122.955892945999963, 49.15909951200004 ], [ -122.956946805999905, 49.159214291000076 ], [ -122.958436780999989, 49.159265187000052 ], [ -122.959887790999957, 49.159314714000104 ], [ -122.959887652999939, 49.159486260000051 ], [ -122.960299125999981, 49.159486402000027 ], [ -122.960299250999952, 49.159328755000033 ], [ -122.960367085999977, 49.159331069000054 ], [ -122.96095147599999, 49.159350997000111 ], [ -122.961678617999965, 49.159469909000016 ], [ -122.962006776999971, 49.159523578000034 ], [ -122.962685398999909, 49.15963454400007 ], [ -122.96307000899999, 49.15969743000008 ], [ -122.963174119999906, 49.159714452000074 ], [ -122.963179270999916, 49.159715294000108 ], [ -122.96317924, 49.159757217000056 ], [ -122.963436220999981, 49.159757300000052 ], [ -122.964914600999975, 49.159999001000152 ], [ -122.966012703999922, 49.160036095000088 ], [ -122.966697590999956, 49.159954914000117 ], [ -122.966971593999972, 49.16012580000006 ], [ -122.967356696999943, 49.160198401000116 ], [ -122.968128977, 49.160225699000101 ], [ -122.96816276, 49.160226899000087 ], [ -122.968278579999961, 49.160230976000101 ], [ -122.968515680999971, 49.160239355000051 ], [ -122.971469787999965, 49.160343708000092 ], [ -122.971882286999971, 49.160318763000092 ], [ -122.971926772999922, 49.160316079000047 ], [ -122.972710144999922, 49.160268683000069 ], [ -122.973880291999961, 49.160197905000125 ], [ -122.973899289999949, 49.160196748000075 ], [ -122.973931723999925, 49.16019480500011 ], [ -122.973975616999923, 49.160192153000011 ], [ -122.974075246999988, 49.160186122000063 ], [ -122.974159165999964, 49.160181031000043 ], [ -122.974904414000022, 49.160135942000068 ], [ -122.978437578999973, 49.159922095000056 ], [ -122.979693, 49.159761303000082 ], [ -122.980872693999927, 49.159761503000048 ], [ -122.980872486999942, 49.160301225000126 ], [ -122.982518408999908, 49.160301485000097 ], [ -122.982518311999968, 49.160571347 ], [ -122.982929795999922, 49.160571408000045 ], [ -122.982929594999959, 49.161152418000029 ], [ -122.982869388, 49.161145490000088 ], [ -122.982730285999963, 49.161451702000093 ], [ -122.982257886999932, 49.161650751000124 ], [ -122.982106441999917, 49.161650726000111 ], [ -122.982106419, 49.161714571000047 ], [ -122.981770300999969, 49.161856194000087 ], [ -122.981455622999988, 49.161920486000092 ], [ -122.981283356999981, 49.1619204570001 ], [ -122.981283320999964, 49.1620165470001 ], [ -122.981022760999977, 49.162190276000032 ], [ -122.97963727199999, 49.16219004000007 ], [ -122.979637161999946, 49.162459902000101 ], [ -122.97922566299998, 49.162459827000063 ], [ -122.979225474999936, 49.16290861100002 ], [ -122.97897192299996, 49.162999503000073 ], [ -122.978402432999971, 49.162999398000096 ], [ -122.978402343999946, 49.163203678000059 ], [ -122.977498504, 49.163527665000068 ], [ -122.976694389999935, 49.163815894000059 ], [ -122.973773187999882, 49.164733091000102 ], [ -122.972221805999979, 49.165074893000053 ], [ -122.971385810999934, 49.165335491000057 ], [ -122.970328583999944, 49.165469406000035 ], [ -122.969712383999934, 49.165677399000074 ], [ -122.968696579999971, 49.165811194000057 ], [ -122.968166093999955, 49.165965499000094 ], [ -122.968112962999925, 49.16596548400004 ], [ -122.968112952999959, 49.165980955000066 ], [ -122.967736681999895, 49.166090400000037 ], [ -122.9666241, 49.166305397000045 ], [ -122.965265613000028, 49.166682805000093 ], [ -122.964566274, 49.167043893 ], [ -122.964408446000036, 49.167043844000105 ], [ -122.964408387000034, 49.167125413000122 ], [ -122.964360776999968, 49.16714999400012 ], [ -122.963248280999892, 49.168050095000133 ], [ -122.962452003999928, 49.16887760500002 ], [ -122.962357395999945, 49.169102611000021 ], [ -122.962425395999929, 49.169605295000039 ], [ -122.961670199999944, 49.170270393000095 ], [ -122.961215804999966, 49.170855783 ], [ -122.960831519999914, 49.171080807000145 ], [ -122.960790886999959, 49.171412601000085 ], [ -122.960337608999936, 49.171871187000036 ], [ -122.960077632999983, 49.172095566000067 ], [ -122.960108073999905, 49.171630068000113 ], [ -122.959877842999944, 49.171629988000127 ], [ -122.959877405999947, 49.172169708000069 ], [ -122.959465829999942, 49.172169566000022 ], [ -122.959465640999966, 49.172399133000063 ], [ -122.95971765799996, 49.172406248000108 ], [ -122.959294691, 49.172771288000028 ], [ -122.958209201000017, 49.173480612000048 ], [ -122.957784907999923, 49.173661501000034 ], [ -122.95751029899999, 49.173741188000115 ], [ -122.957262477999961, 49.17402039300007 ], [ -122.957166813999919, 49.174079391000106 ], [ -122.956823688999961, 49.174291003000071 ], [ -122.956107262, 49.17459708000009 ], [ -122.95575945799996, 49.174596949000104 ], [ -122.955759325999921, 49.174745726000019 ], [ -122.955437085999989, 49.174883390000048 ], [ -122.955132645, 49.174978820000099 ], [ -122.954959800999944, 49.175033 ], [ -122.954777998999958, 49.175089986000067 ], [ -122.954524198999962, 49.175102466000027 ], [ -122.954524413999934, 49.174866329000089 ], [ -122.953999022999966, 49.174866121000029 ], [ -122.953804590999979, 49.174441898000097 ], [ -122.953873899999962, 49.173749792000116 ], [ -122.953490887999948, 49.173677097000052 ], [ -122.95342080199994, 49.17356040500011 ], [ -122.95331159199992, 49.173587388000037 ], [ -122.95289075, 49.174056093000068 ], [ -122.95246718599995, 49.174055919000139 ], [ -122.95246641199999, 49.174865500000095 ], [ -122.95123160899999, 49.174864985000056 ], [ -122.951231343999908, 49.175134845000031 ], [ -122.949584931999965, 49.175134138000068 ], [ -122.949584528999978, 49.175531 ], [ -122.948781308, 49.175743687000079 ], [ -122.948207798999988, 49.175943110000034 ], [ -122.947937670999963, 49.175942989000113 ], [ -122.947937571999958, 49.176037073000053 ], [ -122.947204399, 49.17629200600004 ], [ -122.946728559999926, 49.176482157000059 ], [ -122.946702261999974, 49.176482145000122 ], [ -122.946702249999973, 49.176492672000087 ], [ -122.9460783, 49.176742005000094 ], [ -122.945516363999943, 49.177021313000068 ], [ -122.945466825999944, 49.177021289000052 ], [ -122.945466798999988, 49.177045948000035 ], [ -122.944760095999953, 49.177397202000101 ], [ -122.943819530999988, 49.177746104000057 ], [ -122.943819741999974, 49.177560220000011 ], [ -122.94340811899994, 49.177560019000076 ], [ -122.943407735999969, 49.177896052000094 ], [ -122.942455191999954, 49.178116397000039 ], [ -122.941902058999958, 49.178368852000084 ], [ -122.940525786999942, 49.178368151000043 ], [ -122.940525032999957, 49.178997314000092 ], [ -122.939228489999962, 49.179589013000047 ], [ -122.936963379999938, 49.1803523990001 ], [ -122.934834122999931, 49.181557306000109 ], [ -122.934528514999926, 49.181685483000059 ], [ -122.932938827999962, 49.181640223000031 ], [ -122.932909577, 49.182083464000122 ], [ -122.931596518999953, 49.182041496000117 ], [ -122.930168497999915, 49.182463091000088 ], [ -122.930180600999918, 49.182688104000093 ], [ -122.930511103999905, 49.183075499000054 ], [ -122.931251289999977, 49.183083989000039 ], [ -122.932967907999924, 49.182868995000042 ], [ -122.933521997999961, 49.182906411000062 ], [ -122.933521164999945, 49.18352961600003 ], [ -122.933571201999911, 49.183531040000069 ], [ -122.933554919999935, 49.183777770000077 ], [ -122.933821660999953, 49.183785365000084 ], [ -122.933252483999965, 49.184498303000112 ], [ -122.932139297999953, 49.185414106000032 ], [ -122.931757099999956, 49.185494613000095 ], [ -122.930259783999929, 49.185810002000096 ], [ -122.928762993999953, 49.186294201000102 ], [ -122.928240109999962, 49.186536287000088 ], [ -122.926510082000021, 49.187785400000045 ], [ -122.924159587999952, 49.189646794000048 ], [ -122.92208599699994, 49.191371506000074 ], [ -122.921863159999987, 49.191580164000065 ], [ -122.92156992799994, 49.191579965000081 ], [ -122.921569493, 49.191855142000101 ], [ -122.921287175999979, 49.192119492000131 ], [ -122.921157330999975, 49.192119403000078 ], [ -122.921157136999938, 49.19224125100002 ], [ -122.920999176999928, 49.192389155000072 ], [ -122.920745156999928, 49.192388981000121 ], [ -122.920744994999978, 49.192490364000086 ], [ -122.920884015999917, 49.192494338000095 ], [ -122.920368180999986, 49.192909698000037 ], [ -122.919736401999955, 49.193250094000106 ], [ -122.919885793999924, 49.19333118700014 ], [ -122.919198118999986, 49.193782368000079 ] ], [ [ -122.919584151999956, 49.193130642000071 ], [ -122.919597592999963, 49.192927906000058 ], [ -122.919509042999934, 49.192927844000067 ], [ -122.919508596999904, 49.193202699000032 ], [ -122.919584151999956, 49.193130642000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80876527", "BldgCostT": "42117042", "sL_LossRatio": "0.57501399759576", "sL_AssetLoss": "2211094", "sL_BldgLoss": "1271410", "sL_StrLoss": "418950", "sL_NStrLoss": "852460", "sL_ContLoss": "939684", "geom_point": "0101000020E6100000C9FC38D48EC25EC081F1990D2E8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.041452465999953, 49.099329491000056 ], [ -123.041454910999946, 49.099291009000105 ], [ -123.043058575999936, 49.099335133000061 ], [ -123.043063364999981, 49.099259718000106 ], [ -123.04296399399999, 49.09925698500016 ], [ -123.043020568, 49.098366086000098 ], [ -123.042896945999971, 49.098362685000048 ], [ -123.042932910000019, 49.097796340000087 ], [ -123.042898279, 49.09779538600003 ], [ -123.043027116999895, 49.095766444000077 ], [ -123.042938006, 49.095763994000094 ], [ -123.043021545999963, 49.094448342000071 ], [ -123.041305341999959, 49.094448968000108 ], [ -123.041305564999973, 49.094718832000041 ], [ -123.039661814999974, 49.094719409000071 ], [ -123.039662030999963, 49.09498927300006 ], [ -123.038429209999919, 49.094989690000027 ], [ -123.03842731, 49.092530515000064 ], [ -123.036039428999956, 49.092464692000078 ], [ -123.036032954999953, 49.092566435 ], [ -123.031936850999969, 49.092453402000118 ], [ -123.031925893000022, 49.092625334000054 ], [ -123.030717744999933, 49.092591966000136 ], [ -123.030709347999945, 49.09272366500003 ], [ -123.028241521000012, 49.092655460000039 ], [ -123.028230055999956, 49.092835124000082 ], [ -123.022764447999975, 49.092683867000083 ], [ -123.02278554899999, 49.092353781000085 ], [ -123.01961765599998, 49.092265984000115 ], [ -123.019759595999957, 49.09004792100005 ], [ -123.02172319, 49.090054975000072 ], [ -123.022339526999971, 49.090057188000102 ], [ -123.024078489999937, 49.090063396000076 ], [ -123.024311653, 49.090064752000039 ], [ -123.02448453099997, 49.090065755000083 ], [ -123.024514368999959, 49.090065966000061 ], [ -123.024571488, 49.090066292000081 ], [ -123.024692481999921, 49.090066969000127 ], [ -123.025040826999955, 49.090068995000081 ], [ -123.027516539999951, 49.090083192000144 ], [ -123.027973045999914, 49.090085804000068 ], [ -123.036013324, 49.090131667000037 ], [ -123.03702882499999, 49.090137399000113 ], [ -123.040254536999953, 49.090147134000127 ], [ -123.040406192999981, 49.090147590000036 ], [ -123.043034913, 49.090141658000036 ], [ -123.046243327999946, 49.090134272000121 ], [ -123.046249910999947, 49.091109292000034 ], [ -123.046231559999939, 49.09233181100003 ], [ -123.046220193999915, 49.093088997000017 ], [ -123.046246799999977, 49.093768995000048 ], [ -123.046243685000022, 49.094165624000013 ], [ -123.047507820999954, 49.094220421000053 ], [ -123.048134794999925, 49.094247602000024 ], [ -123.049216086999962, 49.094417003000089 ], [ -123.049559576999968, 49.094560896000154 ], [ -123.050586389000017, 49.094579396000029 ], [ -123.051350844999973, 49.094721395000093 ], [ -123.052496128999934, 49.094934091000013 ], [ -123.053339384999987, 49.095090700000057 ], [ -123.053421681999978, 49.095111173000127 ], [ -123.05528581399993, 49.095574899000013 ], [ -123.05533547099995, 49.095591779000046 ], [ -123.055924977999922, 49.095792132000028 ], [ -123.055278646999966, 49.095792444000047 ], [ -123.055278430999977, 49.09559792700005 ], [ -123.054954834999975, 49.095544662000094 ], [ -123.054885082999988, 49.095522767000027 ], [ -123.054734661999959, 49.095522838000065 ], [ -123.05472178299999, 49.095726471000063 ], [ -123.049650980999957, 49.095587410000107 ], [ -123.049580219999939, 49.096704279000058 ], [ -123.049589588999936, 49.096704537000086 ], [ -123.049410103999946, 49.099537252000097 ], [ -123.049846853999981, 49.099549238000058 ], [ -123.04961889499999, 49.103146973 ], [ -123.045428440999956, 49.103031893000022 ], [ -123.045223105999966, 49.103026249000067 ], [ -123.045222411999987, 49.103037181000062 ], [ -123.045121063999929, 49.103034395000073 ], [ -123.039755550999985, 49.102886790000056 ], [ -123.039895638999923, 49.100683310000136 ], [ -123.039905068999929, 49.100534961000051 ], [ -123.039984270999966, 49.099289074000097 ], [ -123.041452465999953, 49.099329491000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96210525", "BldgCostT": "62048025", "sL_LossRatio": "0.81941522354093", "sL_AssetLoss": "1227717", "sL_BldgLoss": "1006010", "sL_StrLoss": "487270", "sL_NStrLoss": "518740", "sL_ContLoss": "221707", "geom_point": "0101000020E6100000C01306A736C25EC0B17069675E8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.031510856999915, 49.123989915000024 ], [ -123.031633514, 49.122066913000012 ], [ -123.031412670999913, 49.12206081800008 ], [ -123.031484808999963, 49.120929855000064 ], [ -123.031262434999917, 49.120923717000075 ], [ -123.031491898999917, 49.117326119000062 ], [ -123.031647129999911, 49.117330405000082 ], [ -123.031723655999912, 49.116130422000033 ], [ -123.03494865499998, 49.116219388000104 ], [ -123.03719204399999, 49.116281218000083 ], [ -123.037135546999963, 49.117168765000024 ], [ -123.03721009899995, 49.117170819000094 ], [ -123.03717574399991, 49.117710531000057 ], [ -123.038379588999987, 49.117743691000037 ], [ -123.038150656999946, 49.12134130000004 ], [ -123.037160130999951, 49.121314018000092 ], [ -123.036980167999943, 49.124140721000096 ], [ -123.034928302999944, 49.124084177000043 ], [ -123.031510856999915, 49.123989915000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145062603", "BldgCostT": "75692633", "sL_LossRatio": "0.573264425333069", "sL_AssetLoss": "2814961", "sL_BldgLoss": "1613717", "sL_StrLoss": "630517", "sL_NStrLoss": "983200", "sL_ContLoss": "1201244", "geom_point": "0101000020E61000005B7EAEF08DC15EC0986181542F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.012203593999971, 49.147554288000045 ], [ -123.012011081999958, 49.147446095000078 ], [ -123.0097501199999, 49.147383403000056 ], [ -123.007614035999893, 49.147511414000071 ], [ -123.00764183299998, 49.147079355000088 ], [ -123.00473707899998, 49.147079509000093 ], [ -123.00473700199997, 49.146269924000102 ], [ -123.003914273999939, 49.146269956000062 ], [ -123.003914336000022, 49.147079540000071 ], [ -123.003502965999971, 49.147079554000129 ], [ -123.00350300499997, 49.147619277000054 ], [ -123.002914935, 49.147619293000041 ], [ -123.002880490999985, 49.147618395000102 ], [ -123.002620006999933, 49.147518687000066 ], [ -123.00264690399996, 49.147241008000044 ], [ -123.002962304999969, 49.146790906000028 ], [ -123.00298940199994, 49.146565904000084 ], [ -123.00486771599995, 49.145711399000078 ], [ -123.005662691999973, 49.145252794000079 ], [ -123.00602029400001, 49.144911004000029 ], [ -123.006800401999925, 49.144569192000048 ], [ -123.007514099999952, 49.144054999000048 ], [ -123.008870997999963, 49.14342550800005 ], [ -123.012326393999956, 49.142345996000081 ], [ -123.014601698999954, 49.14126640900011 ], [ -123.015546798999964, 49.140663993000032 ], [ -123.018263078999951, 49.139619993000053 ], [ -123.02016798699999, 49.139286808000065 ], [ -123.021599814999988, 49.139111760000105 ], [ -123.021599875999968, 49.139251595000097 ], [ -123.021188570999968, 49.139251672000086 ], [ -123.021188915999929, 49.140061257000113 ], [ -123.021600227999969, 49.1400611810001 ], [ -123.021600344999982, 49.140331043000053 ], [ -123.023245605999975, 49.140330723 ], [ -123.023245594999963, 49.140308421000015 ], [ -123.022935640999961, 49.140299845000058 ], [ -123.022962504999938, 49.13988006400011 ], [ -123.022766559999965, 49.139874643000098 ], [ -123.022789177999968, 49.139521229000081 ], [ -123.02242260899996, 49.139521301000094 ], [ -123.022422378999977, 49.139011188000055 ], [ -123.023115902, 49.13892638700009 ], [ -123.025952208999954, 49.138430795000069 ], [ -123.026433503999925, 49.138525565000066 ], [ -123.02650171199997, 49.138538995000076 ], [ -123.027199689999961, 49.138529089000066 ], [ -123.027817604999925, 49.138699983000016 ], [ -123.028585481999968, 49.138708492000021 ], [ -123.031216502999925, 49.13756630400011 ], [ -123.031764975999977, 49.137422493000066 ], [ -123.033012792999926, 49.137304311000022 ], [ -123.033588318999961, 49.137124801000077 ], [ -123.03421870499993, 49.136872687000086 ], [ -123.03447617199997, 49.136691153000093 ], [ -123.034588310999936, 49.136612087000096 ], [ -123.03531639, 49.136439794000111 ], [ -123.036424521999919, 49.135882904000084 ], [ -123.037384097999904, 49.135576711000091 ], [ -123.038317979999931, 49.135341699000101 ], [ -123.040153899999936, 49.135116697000051 ], [ -123.042374797999926, 49.134539909000083 ], [ -123.04301811699996, 49.134333407000071 ], [ -123.043676401999988, 49.133873287000071 ], [ -123.043805668999966, 49.133886462000092 ], [ -123.043806430999908, 49.134751718000068 ], [ -123.043389407999953, 49.135160800000151 ], [ -123.043008833999949, 49.135737398000039 ], [ -123.042984746999949, 49.135737407000072 ], [ -123.04298477899998, 49.135773843000017 ], [ -123.042830667999937, 49.136007328000083 ], [ -123.042573700999981, 49.136007422000077 ], [ -123.04257403099993, 49.136392006000108 ], [ -123.042417282999921, 49.136547203000084 ], [ -123.0421628799999, 49.136547297000106 ], [ -123.042163093999974, 49.136798877000103 ], [ -123.041053943999927, 49.137897007000099 ], [ -123.040930141999979, 49.137897050000049 ], [ -123.040930240999913, 49.138019476000096 ], [ -123.04071899599991, 49.13822861400007 ], [ -123.040205749999942, 49.138976753000094 ], [ -123.039782301999935, 49.13897690000006 ], [ -123.039750962999989, 49.139469414000125 ], [ -123.039416699999919, 49.139820799000049 ], [ -123.039169780999956, 49.140280901000033 ], [ -123.038678390999962, 49.140639795000062 ], [ -123.038033099999964, 49.14091040400011 ], [ -123.037225802999956, 49.141629586000086 ], [ -123.037197106999912, 49.14220639600007 ], [ -123.036417012999905, 49.142071107000078 ], [ -123.03430590100001, 49.143456788000151 ], [ -123.03241359899998, 49.144131887000121 ], [ -123.031263111, 49.144448094000055 ], [ -123.03086470699999, 49.144402499000108 ], [ -123.030343798999979, 49.144043593000099 ], [ -123.029301898999975, 49.14391690300004 ], [ -123.030262181999944, 49.14458339300004 ], [ -123.029850012999972, 49.144762794000016 ], [ -123.029453380999925, 49.144789898000063 ], [ -123.02827308499991, 49.14515019100007 ], [ -123.026943305999978, 49.145410893000118 ], [ -123.023542312999936, 49.145358194000053 ], [ -123.02303700499999, 49.145483495000136 ], [ -123.022323116999971, 49.14610440400002 ], [ -123.021602977, 49.146384357000066 ], [ -123.021602808999944, 49.145998139000056 ], [ -123.021191445999975, 49.145998216000109 ], [ -123.021191216999966, 49.145458492000031 ], [ -123.020779859999962, 49.145458567000077 ], [ -123.020780085999974, 49.145998291000048 ], [ -123.019134637999969, 49.145998575000135 ], [ -123.019134743000038, 49.146268437000046 ], [ -123.018723377999919, 49.146268504000076 ], [ -123.018723876999957, 49.147589904000078 ], [ -123.018334092999964, 49.147589906000107 ], [ -123.017489810999919, 49.147758852999985 ], [ -123.017489761999968, 49.147618005 ], [ -123.01543288499991, 49.147618298000069 ], [ -123.015432632999989, 49.146808714000066 ], [ -123.015021265999934, 49.146808769000081 ], [ -123.015021427999926, 49.147348491000045 ], [ -123.014198681999972, 49.147348595000075 ], [ -123.014198758999925, 49.147618457000128 ], [ -123.013088913999951, 49.1476185880001 ], [ -123.013081312999972, 49.14773695500002 ], [ -123.013027294999972, 49.147787905000101 ], [ -123.012986107999964, 49.148408790000168 ], [ -123.013031854999923, 49.148507087000091 ], [ -123.013031774999916, 49.148508333000045 ], [ -123.012422175999959, 49.148491412000055 ], [ -123.01238320499999, 49.147950204000047 ], [ -123.012203593999971, 49.147554288000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10771975", "BldgCostT": "5465309", "sL_LossRatio": "0.553687712344281", "sL_AssetLoss": "847680", "sL_BldgLoss": "469350", "sL_StrLoss": "170040", "sL_NStrLoss": "299310", "sL_ContLoss": "378330", "geom_point": "0101000020E6100000BF799A619DBE5EC09114EC1A888C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.975996927999958, 49.096027907000106 ], [ -122.981462775999958, 49.096181540000089 ], [ -122.981229554, 49.099779148000032 ], [ -122.980715776999958, 49.099764718000095 ], [ -122.980714834, 49.099779260000055 ], [ -122.975248565999962, 49.09962559000008 ], [ -122.97548225, 49.096027994000067 ], [ -122.975995983999908, 49.096042448000048 ], [ -122.975996927999958, 49.096027907000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97832008", "BldgCostT": "51773772", "sL_LossRatio": "0.577527761307116", "sL_AssetLoss": "2106439", "sL_BldgLoss": "1216527", "sL_StrLoss": "440107", "sL_NStrLoss": "776420", "sL_ContLoss": "889912", "geom_point": "0101000020E6100000BEC069EA4ABD5EC058CC4A8B618C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.953657647999947, 49.106492299000095 ], [ -122.953687607999882, 49.106034418000036 ], [ -122.953662275999974, 49.106033701000094 ], [ -122.9538347229999, 49.103398133000042 ], [ -122.953710338999926, 49.103394609000098 ], [ -122.953891367999944, 49.10062767300014 ], [ -122.953677607999964, 49.100621615000115 ], [ -122.953763746999968, 49.099304980000035 ], [ -122.953609786999948, 49.099300617000054 ], [ -122.953767762999973, 49.096885890000088 ], [ -122.953355924999968, 49.096874217000021 ], [ -122.953516228999959, 49.094423966000122 ], [ -122.951996222999952, 49.094380873000055 ], [ -122.951993276999985, 49.094425875000077 ], [ -122.950422423999953, 49.094381317000028 ], [ -122.95034717099999, 49.09553041100002 ], [ -122.944881503999952, 49.095375197000038 ], [ -122.944902186999983, 49.09505994200002 ], [ -122.944883685999983, 49.095059416000062 ], [ -122.944791800999951, 49.096459944000024 ], [ -122.939326040999916, 49.096304448000126 ], [ -122.939425888999921, 49.094785288000054 ], [ -122.939802197999981, 49.094700791000093 ], [ -122.942619334999975, 49.094194902000041 ], [ -122.946081262999897, 49.093573121000084 ], [ -122.947460205, 49.093325411000087 ], [ -122.951578499999982, 49.092585511000109 ], [ -122.952046599999946, 49.092501393000084 ], [ -122.95238961699999, 49.092439766000041 ], [ -122.952690866999987, 49.092385619000041 ], [ -122.956193683999985, 49.091756110000134 ], [ -122.956464377999922, 49.091707468000045 ], [ -122.957165681999953, 49.091581398000073 ], [ -122.957374124999902, 49.091554845000097 ], [ -122.957829907999937, 49.091492955000014 ], [ -122.95831740599999, 49.091342758000074 ], [ -122.95883732, 49.09109527400004 ], [ -122.959271439999966, 49.090717509000037 ], [ -122.959454125999926, 49.09055856300008 ], [ -122.960509491999971, 49.090559320000146 ], [ -122.96247536099996, 49.090560728000135 ], [ -122.963115494999968, 49.090561176000044 ], [ -122.976011688999932, 49.090561935000082 ], [ -122.975990318999891, 49.090891063000029 ], [ -122.975956771999932, 49.091407701000016 ], [ -122.974337465999923, 49.09136212600005 ], [ -122.974220201999984, 49.093167038000047 ], [ -122.968754730999962, 49.093013036000102 ], [ -122.968852733999967, 49.091507347000103 ], [ -122.968014259999933, 49.091483696000026 ], [ -122.967915037999958, 49.093007692000064 ], [ -122.966851194999933, 49.092977675000057 ], [ -122.966848495999983, 49.093019118000093 ], [ -122.964679220999969, 49.092957878000021 ], [ -122.96467091199996, 49.093085371000058 ], [ -122.96025377, 49.09296053500001 ], [ -122.960200237999985, 49.093780660000078 ], [ -122.961713860999964, 49.093823457000077 ], [ -122.961512647999939, 49.096907319000145 ], [ -122.96275171399995, 49.096942338000069 ], [ -122.962517043999981, 49.100539901000019 ], [ -122.960414505999935, 49.10048047100004 ], [ -122.960401270999967, 49.100683191000037 ], [ -122.960451427999899, 49.100684609000083 ], [ -122.960328056999984, 49.102574404000059 ], [ -122.960614739000022, 49.102582509000101 ], [ -122.960379873999898, 49.106180037000065 ], [ -122.959157411999954, 49.106145468000072 ], [ -122.959124648999975, 49.106647065000104 ], [ -122.95403935899995, 49.106503115000059 ], [ -122.953657647999947, 49.106492299000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2255417", "BldgCostT": "1291667", "sL_LossRatio": "0.566204728077326", "sL_AssetLoss": "85870", "sL_BldgLoss": "48620", "sL_StrLoss": "24610", "sL_NStrLoss": "24010", "sL_ContLoss": "37250", "geom_point": "0101000020E61000001D058882D9BB5EC0ECE80B6303924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.934399117999959, 49.14220346300003 ], [ -122.93440125099994, 49.140586793000054 ], [ -122.934401610999927, 49.140314431000078 ], [ -122.934172424999986, 49.140314300000071 ], [ -122.933990296999951, 49.140314196000084 ], [ -122.933990584999975, 49.140097756000031 ], [ -122.933990654999931, 49.140044334000038 ], [ -122.933945701999988, 49.140044308000029 ], [ -122.933168029999976, 49.140043861000088 ], [ -122.93316919699997, 49.139176728000066 ], [ -122.93316948099999, 49.138964415000068 ], [ -122.93321003599999, 49.13896443800008 ], [ -122.934814694999915, 49.138965355000011 ], [ -122.934813987, 49.139505078000077 ], [ -122.935225295999942, 49.1395053090001 ], [ -122.935224240999929, 49.140314895000088 ], [ -122.936046868999981, 49.140315353000091 ], [ -122.93604652199997, 49.140585215000087 ], [ -122.936457837999924, 49.140585442000024 ], [ -122.93645749399991, 49.140855304000119 ], [ -122.937280131999941, 49.140855754000064 ], [ -122.937279109999977, 49.141665339000063 ], [ -122.936867784999919, 49.141665115000094 ], [ -122.93686744199999, 49.141934977000098 ], [ -122.936456112999963, 49.14193475000009 ], [ -122.936455767999959, 49.142204613000132 ], [ -122.935596804999989, 49.142204138000103 ], [ -122.93523417599998, 49.142203935000097 ], [ -122.934399117999959, 49.14220346300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "754073214", "BldgCostT": "399665659", "sL_LossRatio": "0.562588784045215", "sL_AssetLoss": "26604583", "sL_BldgLoss": "14967440", "sL_StrLoss": "5210410", "sL_NStrLoss": "9757030", "sL_ContLoss": "11637143", "geom_point": "0101000020E610000081EFF4524AC05EC04C15EE2A5E914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.940457354000017, 49.1564081080001 ], [ -122.940459325999925, 49.155492179000099 ], [ -122.940357766, 49.1552466280001 ], [ -122.940224530999927, 49.154996604000054 ], [ -122.939720811999933, 49.154051272000082 ], [ -122.938756416000018, 49.152947837000042 ], [ -122.93860422099999, 49.152793362000118 ], [ -122.937996866999967, 49.152338014000058 ], [ -122.93681148499995, 49.151559539000047 ], [ -122.93490282399992, 49.150409302000092 ], [ -122.934901980999911, 49.150408809000091 ], [ -122.934901115999978, 49.150408180000042 ], [ -122.933426507999968, 49.149378649000028 ], [ -122.931446833999985, 49.148038324000069 ], [ -122.925684245999975, 49.144136123000088 ], [ -122.925173519999987, 49.143759392000085 ], [ -122.924436342999968, 49.143222089000048 ], [ -122.923971793999925, 49.142842135000095 ], [ -122.923971557999934, 49.14284195400009 ], [ -122.92397137899998, 49.142841842000117 ], [ -122.923443697, 49.142422038000106 ], [ -122.922448809999977, 49.141532692000062 ], [ -122.921494222999982, 49.140455898000091 ], [ -122.919803111999897, 49.137971870000094 ], [ -122.919357200999926, 49.136938709000034 ], [ -122.919223436999957, 49.136454164000071 ], [ -122.919160434999938, 49.13622611200006 ], [ -122.919032137999963, 49.135486749000059 ], [ -122.919254245999966, 49.134411829000051 ], [ -122.919278815999931, 49.134292904000098 ], [ -122.919314362999955, 49.134120852000102 ], [ -122.919353677999936, 49.133930546000109 ], [ -122.919511588999939, 49.133160601000071 ], [ -122.919623899999948, 49.132628000000103 ], [ -122.919861328999929, 49.131543287000078 ], [ -122.919992401999977, 49.131033225000095 ], [ -122.920403606999912, 49.129433283000047 ], [ -122.920407796999953, 49.129179259000104 ], [ -122.92106265399994, 49.127753357000081 ], [ -122.921445366999976, 49.127018845000066 ], [ -122.922084572999935, 49.126018926000015 ], [ -122.922083329999936, 49.126813664000053 ], [ -122.92167212499993, 49.126813385000055 ], [ -122.921670851999963, 49.127622973000101 ], [ -122.921259641999953, 49.12762269299999 ], [ -122.921258359999968, 49.128432278000105 ], [ -122.92084714399999, 49.128431998000053 ], [ -122.920844135999971, 49.130321033000072 ], [ -122.921666599999952, 49.130321594000037 ], [ -122.921666174999984, 49.130591456000076 ], [ -122.922488641999905, 49.13059201100014 ], [ -122.922488222, 49.130861872000082 ], [ -122.922899457999947, 49.130862148000112 ], [ -122.922899037999969, 49.13113201000003 ], [ -122.92331027799996, 49.131132284000095 ], [ -122.923309993999951, 49.131317089000149 ], [ -122.923480671, 49.131321970000073 ], [ -122.923305907999989, 49.133964834000089 ], [ -122.923305879999987, 49.133983674000056 ], [ -122.923305282999976, 49.13437062900006 ], [ -122.92327907399995, 49.134370611000108 ], [ -122.923242791999925, 49.134919256000032 ], [ -122.919603174, 49.134815104000019 ], [ -122.919599968999975, 49.136796867000065 ], [ -122.920011253, 49.13679715300001 ], [ -122.920009515999979, 49.137876599000016 ], [ -122.920420810999943, 49.137876884000093 ], [ -122.920419514999978, 49.138686469000071 ], [ -122.92083081599999, 49.138686752000048 ], [ -122.920829956999981, 49.139226475000051 ], [ -122.92124126099999, 49.139226757000053 ], [ -122.921240406999971, 49.139766480000041 ], [ -122.921651714999911, 49.139766759000096 ], [ -122.921650865999979, 49.140306483000124 ], [ -122.922062178999937, 49.140306761 ], [ -122.922061333, 49.140846485000097 ], [ -122.922472651999968, 49.140846762000116 ], [ -122.92247181099998, 49.141386485000048 ], [ -122.922883131999924, 49.141386760000053 ], [ -122.922882715999947, 49.141656622000021 ], [ -122.923294039999959, 49.141656896000022 ], [ -122.923293206999972, 49.142196619000067 ], [ -122.923704536999949, 49.142196892000115 ], [ -122.923704122999936, 49.142466753000114 ], [ -122.924115455, 49.142467023000073 ], [ -122.924115041999983, 49.142736886000101 ], [ -122.924526376999978, 49.142737156000031 ], [ -122.924525967999926, 49.143007016000112 ], [ -122.924937303999954, 49.143007284000113 ], [ -122.924936896999938, 49.143277146000052 ], [ -122.925348235999977, 49.143277413000106 ], [ -122.925347829000017, 49.143547274000127 ], [ -122.925759171999957, 49.143547539000032 ], [ -122.92575836499995, 49.144087263000046 ], [ -122.926169710999943, 49.144087526000135 ], [ -122.926169309999963, 49.144357388000088 ], [ -122.926580657999978, 49.144357651000099 ], [ -122.926580258999977, 49.144627512000049 ], [ -122.926991609999973, 49.14462777300006 ], [ -122.926991212999908, 49.144897634000039 ], [ -122.927402564999966, 49.144897894000081 ], [ -122.92740217099994, 49.145167754000049 ], [ -122.92781352599999, 49.145168012000084 ], [ -122.927813133999933, 49.145437874000095 ], [ -122.928224489999963, 49.14543813100007 ], [ -122.928224099999937, 49.145707992000034 ], [ -122.928635458999977, 49.145708247000087 ], [ -122.92863507099996, 49.145978108000065 ], [ -122.929046433999943, 49.145978361000076 ], [ -122.929046048999936, 49.1462482230001 ], [ -122.92986877499996, 49.146248726000053 ], [ -122.929869156, 49.145978864000057 ], [ -122.931103238999981, 49.1459796070001 ], [ -122.93110249199999, 49.146519330000103 ], [ -122.931513857999988, 49.146519574000152 ], [ -122.931512369999922, 49.147599020000072 ], [ -122.931923744999963, 49.147599263000046 ], [ -122.93192300599999, 49.148138986000113 ], [ -122.932334382999954, 49.148139228000062 ], [ -122.932334015999956, 49.14840908900004 ], [ -122.933156778999901, 49.148409568000076 ], [ -122.933160046999916, 49.145980816000069 ], [ -122.93357140799999, 49.145981054000089 ], [ -122.933571768999968, 49.145711192000164 ], [ -122.933983126999919, 49.145711428000027 ], [ -122.93398456099996, 49.144631982000064 ], [ -122.934395911999943, 49.14463221700008 ], [ -122.934396979999974, 49.143822632000081 ], [ -122.935219665999924, 49.14382309700008 ], [ -122.935220370999986, 49.143283373000067 ], [ -122.935631709999939, 49.14328360400004 ], [ -122.93563181699993, 49.143201993000083 ], [ -122.935632759999947, 49.142474019000112 ], [ -122.935712162999948, 49.142474063000058 ], [ -122.936866754999954, 49.142474700000058 ], [ -122.936866412999947, 49.142744562000111 ], [ -122.938100415999912, 49.14274523000006 ], [ -122.938099745, 49.143284952000073 ], [ -122.939333762999979, 49.143285607000067 ], [ -122.939333103999957, 49.143825331000095 ], [ -122.94056713399999, 49.143825973000112 ], [ -122.94056777899999, 49.14328624900002 ], [ -122.941801796999968, 49.143286879000129 ], [ -122.94180148099997, 49.143556740000086 ], [ -122.942212821999988, 49.143556947000107 ], [ -122.942212508999944, 49.143826808000036 ], [ -122.943035194999965, 49.143827217000087 ], [ -122.943034884999946, 49.144097078000087 ], [ -122.943446232000014, 49.144097280000025 ], [ -122.943445616999952, 49.144637003000071 ], [ -122.943856966999988, 49.144637205000031 ], [ -122.943856662999977, 49.144907065000062 ], [ -122.944268015999938, 49.144907265000015 ], [ -122.944267410999942, 49.145446989000092 ], [ -122.944678767999974, 49.145447186000062 ], [ -122.944678166999921, 49.145986909000086 ], [ -122.945089528999915, 49.145987105000053 ], [ -122.945088931999976, 49.146526829000074 ], [ -122.945500296999967, 49.146527023000061 ], [ -122.945499704999946, 49.147066746000085 ], [ -122.94796792899993, 49.147067884000094 ], [ -122.94796764699997, 49.147337746000105 ], [ -122.948790392000021, 49.147338114000028 ], [ -122.948790946999964, 49.146798390000093 ], [ -122.950025051999944, 49.146798932000095 ], [ -122.95002451000002, 49.147338654000059 ], [ -122.950435881999923, 49.147338832000038 ], [ -122.950435611999964, 49.147608693000102 ], [ -122.951347459999951, 49.14760908100007 ], [ -122.951669737999978, 49.147609217000131 ], [ -122.95166887699996, 49.148494534000115 ], [ -122.951667900999965, 49.1494982460001 ], [ -122.95250361699999, 49.149498593000011 ], [ -122.952902072999976, 49.149498756000064 ], [ -122.952902325999972, 49.149231511000046 ], [ -122.952902674999976, 49.148863223000106 ], [ -122.952903606999925, 49.14787958800008 ], [ -122.953726360999966, 49.147879920000058 ], [ -122.953726863999961, 49.147340197000091 ], [ -122.955372354999938, 49.147340846000091 ], [ -122.955372112999925, 49.147610707000098 ], [ -122.956606237999893, 49.147611177000073 ], [ -122.956606473999926, 49.147341316000045 ], [ -122.958251964999974, 49.147341922000038 ], [ -122.958251019999949, 49.148466555000077 ], [ -122.958250830999972, 49.148691230000047 ], [ -122.957428061999948, 49.148690929000047 ], [ -122.957427600999964, 49.149230652 ], [ -122.957838989999971, 49.149230802000012 ], [ -122.957838301999985, 49.150040387000047 ], [ -122.959072489, 49.150040830000108 ], [ -122.959072266999939, 49.150310692000041 ], [ -122.960717855999974, 49.150311264000074 ], [ -122.960718067999935, 49.15004140200007 ], [ -122.96236364899994, 49.150041951000063 ], [ -122.962364670999989, 49.148692644000036 ], [ -122.962776055999925, 49.148692777000036 ], [ -122.962776222999977, 49.148469827000035 ], [ -122.962776863999963, 49.147613331000137 ], [ -122.964422363999915, 49.147613849000074 ], [ -122.964422170999939, 49.147883711000112 ], [ -122.969770074999985, 49.147885234000022 ], [ -122.969770403999945, 49.147345512000079 ], [ -122.970181776999979, 49.147345619000077 ], [ -122.970181939999918, 49.147075758000028 ], [ -122.97059331, 49.147075863000076 ], [ -122.97059347, 49.146806001000058 ], [ -122.975529890999923, 49.146807153000069 ], [ -122.975529759, 49.147077014000054 ], [ -122.977175240999955, 49.147077352000082 ], [ -122.977175111999884, 49.147360859000095 ], [ -122.977174992999934, 49.147617075000092 ], [ -122.979231867999928, 49.147617462000056 ], [ -122.979231973, 49.147365661000023 ], [ -122.979231981999973, 49.147347601000078 ], [ -122.980466098999955, 49.147347816000035 ], [ -122.980466311999947, 49.146808092000093 ], [ -122.980877679999935, 49.146808163000081 ], [ -122.980877784999947, 49.146538301000099 ], [ -122.981289150999928, 49.146538368000073 ], [ -122.981289557999972, 49.145458922000095 ], [ -122.981700913999987, 49.145458987000019 ], [ -122.981701113999947, 49.144919263000077 ], [ -122.98211246699999, 49.144919329000118 ], [ -122.982112563, 49.144649467000086 ], [ -122.982935264999966, 49.144649591000096 ], [ -122.982935356999917, 49.144379730000026 ], [ -122.984992098999953, 49.144380015000053 ], [ -122.984992261999977, 49.143840292000078 ], [ -122.986226293999906, 49.143840445000123 ], [ -122.98622621899996, 49.144110307000062 ], [ -122.986637564999967, 49.14411035600012 ], [ -122.986637491999915, 49.144380217000098 ], [ -122.989928278999969, 49.144380551000083 ], [ -122.989928333999927, 49.144110690000083 ], [ -122.990751025999913, 49.144110758000096 ], [ -122.990751126999925, 49.143571035000029 ], [ -122.991573809999949, 49.143571098000095 ], [ -122.991573946999921, 49.142761513000011 ], [ -122.991985282999948, 49.142761542000109 ], [ -122.991985368999934, 49.142221818000095 ], [ -122.992396699999972, 49.142221846000076 ], [ -122.992396740999979, 49.141951983000041 ], [ -122.993219396999947, 49.141952035000067 ], [ -122.993219434999901, 49.141682173000035 ], [ -122.994042085999965, 49.141682219000074 ], [ -122.994042118, 49.141412357000036 ], [ -122.993219470999989, 49.141412312000057 ], [ -122.993219581999938, 49.140602726000076 ], [ -122.993630897999978, 49.140602749000031 ], [ -122.993630933999938, 49.140332888000074 ], [ -122.994042248999961, 49.14033291000009 ], [ -122.994042312999952, 49.139793186000084 ], [ -122.994864932999974, 49.139793225000112 ], [ -122.994864960999948, 49.139523363000073 ], [ -122.995276269999962, 49.139523381000046 ], [ -122.995276320999935, 49.138983657000132 ], [ -122.996921535999917, 49.138983713000094 ], [ -122.996921518999955, 49.13925357600003 ], [ -122.998155436999966, 49.13925360100005 ], [ -122.998155447999977, 49.138983740000093 ], [ -122.999389357999988, 49.138983752000101 ], [ -122.999389354999934, 49.139286745000028 ], [ -122.999389345999958, 49.140001081000086 ], [ -122.999389341999972, 49.140333062000117 ], [ -123.000559414999927, 49.140333062000117 ], [ -123.000623286999925, 49.140333062000117 ], [ -123.000623268999917, 49.138882444000053 ], [ -123.000623256999972, 49.137904304000109 ], [ -123.001034550999933, 49.137904301000098 ], [ -123.001034533, 49.137094716000036 ], [ -123.00144582199998, 49.137094711000088 ], [ -123.001445813999936, 49.136824848000074 ], [ -123.002312744999983, 49.136824834000052 ], [ -123.002314675999969, 49.136794865000127 ], [ -123.004324816999954, 49.136850853000077 ], [ -123.004324790999931, 49.136554915000026 ], [ -123.005040925999978, 49.136554885000052 ], [ -123.005096631999962, 49.136554883000017 ], [ -123.005098163999975, 49.13653110100006 ], [ -123.00519025700001, 49.135100431000083 ], [ -123.007203573999931, 49.13515645600004 ], [ -123.007203503999946, 49.134665736000031 ], [ -123.008437306999895, 49.13466565300012 ], [ -123.008437352999948, 49.134935515000024 ], [ -123.008848623999981, 49.134935483000056 ], [ -123.008848670999924, 49.135202205000098 ], [ -123.008961340999988, 49.135205338000048 ], [ -123.009259943999936, 49.135205314000125 ], [ -123.009259693000018, 49.13385600300014 ], [ -123.010082215999972, 49.133855934000096 ], [ -123.01008210599997, 49.133316210000068 ], [ -123.011727131999976, 49.133316055000037 ], [ -123.011727068999917, 49.133046192000037 ], [ -123.012098277999954, 49.133046154000034 ], [ -123.012138323999935, 49.133046150000034 ], [ -123.012138305999926, 49.13297539100018 ], [ -123.012137993999929, 49.131696838000039 ], [ -123.012549237999977, 49.131696795000053 ], [ -123.012549169999943, 49.131426932000096 ], [ -123.012137927999959, 49.131426976000043 ], [ -123.012137861999946, 49.131157114000096 ], [ -123.01172662499999, 49.13115715599999 ], [ -123.011726177999932, 49.129268119000123 ], [ -123.012548624999965, 49.129268033000052 ], [ -123.012548556999917, 49.128998170000116 ], [ -123.013153091999968, 49.128998103000072 ], [ -123.013370998999932, 49.128998078000052 ], [ -123.013370932000029, 49.128749038000095 ], [ -123.013370924999975, 49.128728216000084 ], [ -123.013392827999922, 49.128728214000084 ], [ -123.013782144999965, 49.128728167000148 ], [ -123.013782069999934, 49.128458306000077 ], [ -123.01533603699994, 49.128458111000022 ], [ -123.01535073499997, 49.128228957000012 ], [ -123.016660521999967, 49.128265291000069 ], [ -123.016660496999918, 49.128188063000017 ], [ -123.017894139999953, 49.128187878000098 ], [ -123.01789404199999, 49.127918016000109 ], [ -123.01707161899999, 49.127918141000031 ], [ -123.017071348999977, 49.127132197000037 ], [ -123.017071339999944, 49.127108554000046 ], [ -123.017156314999909, 49.127108541000069 ], [ -123.020360984999954, 49.127108020000037 ], [ -123.02036087399992, 49.126838158000069 ], [ -123.02118328, 49.12683800900006 ], [ -123.021182934999942, 49.126028423000101 ], [ -123.022005327999963, 49.126028269000116 ], [ -123.022005004, 49.125297689000028 ], [ -123.022004610999915, 49.124409093000132 ], [ -123.022979806999928, 49.124408903000102 ], [ -123.023649343999949, 49.124408768000102 ], [ -123.023649599999942, 49.124948493000019 ], [ -123.023839649999957, 49.124948454000091 ], [ -123.024060788999975, 49.124948408000115 ], [ -123.024061310999969, 49.126027858000057 ], [ -123.023822890999952, 49.126027907000079 ], [ -123.023650113999949, 49.126027943000089 ], [ -123.023650370999988, 49.12656766700011 ], [ -123.02378702399993, 49.126567640000133 ], [ -123.024061572999983, 49.126567583000089 ], [ -123.024061963999927, 49.127377171000056 ], [ -123.023787132999956, 49.127377227000068 ], [ -123.023650756999984, 49.12737725500007 ], [ -123.023651396999952, 49.128726568000133 ], [ -123.023765524999973, 49.128726545000049 ], [ -123.024062615999952, 49.128726482000083 ], [ -123.024062747, 49.128996345000061 ], [ -123.024473968, 49.128996258000093 ], [ -123.024475296999981, 49.13169488100008 ], [ -123.026120269999936, 49.13169452200006 ], [ -123.026120412999916, 49.131964384000092 ], [ -123.029410376, 49.13196359300008 ], [ -123.02941085599997, 49.1327731800001 ], [ -123.029822108999937, 49.132773075000053 ], [ -123.029822917999951, 49.134122384000143 ], [ -123.029411653999944, 49.134122490000031 ], [ -123.029412134, 49.134932076000055 ], [ -123.030234673999956, 49.134931864000102 ], [ -123.030235165999983, 49.135741451000044 ], [ -123.03146899699999, 49.135741120000091 ], [ -123.031468836999949, 49.135489262000057 ], [ -123.030943632999964, 49.13547477000008 ], [ -123.030969498999966, 49.135069444000052 ], [ -123.030908856999957, 49.135067770000035 ], [ -123.031138416999951, 49.131470252000021 ], [ -123.034321535999965, 49.131558050000102 ], [ -123.036608605999987, 49.131621074000101 ], [ -123.036582789999969, 49.132026404000079 ], [ -123.036643427999977, 49.132028074000061 ], [ -123.036615133999931, 49.132472334000063 ], [ -123.036813178999964, 49.132477789000085 ], [ -123.036812996999942, 49.132231332000117 ], [ -123.038046740999945, 49.13223093200002 ], [ -123.03804694599998, 49.132500794000109 ], [ -123.040103195999961, 49.132500098000023 ], [ -123.040102978999968, 49.13223023600014 ], [ -123.04174797, 49.132229652000071 ], [ -123.041747743999977, 49.131959790000103 ], [ -123.042158989999976, 49.131959641000037 ], [ -123.042158530999984, 49.131419917000137 ], [ -123.043803494999906, 49.13141930400009 ], [ -123.043803257000022, 49.13114944300002 ], [ -123.044214497000013, 49.131149286000024 ], [ -123.04421401599997, 49.130609560000089 ], [ -123.044625251999932, 49.130609402000069 ], [ -123.044625008999972, 49.130339541000076 ], [ -123.045036241999924, 49.130339380000045 ], [ -123.04503575199999, 49.129799656000088 ], [ -123.045446978999962, 49.1297994950001 ], [ -123.045445499999971, 49.128180321000059 ], [ -123.04626792699996, 49.128179994000071 ], [ -123.046267676999918, 49.127910132000125 ], [ -123.046343794, 49.127910101000026 ], [ -123.046389638999969, 49.12718783800004 ], [ -123.042446571999946, 49.127079497000118 ], [ -123.042616647999949, 49.124403324000056 ], [ -123.041330215999892, 49.124403791000127 ], [ -123.041329542999932, 49.123594204000085 ], [ -123.041740720999925, 49.123594056000123 ], [ -123.04174026699999, 49.123054331000112 ], [ -123.042356028999947, 49.123054107000037 ], [ -123.042432936999887, 49.121843903000062 ], [ -123.042425892999916, 49.121843710000078 ], [ -123.042510191999966, 49.12051712500007 ], [ -123.04250257699999, 49.120516916000085 ], [ -123.04256428399999, 49.119545814000062 ], [ -123.041326179999956, 49.119546264000128 ], [ -123.041325283999981, 49.118466812000065 ], [ -123.042558684999946, 49.118466364 ], [ -123.042558915999948, 49.118736227000056 ], [ -123.042615726999927, 49.118736206000079 ], [ -123.042667168999984, 49.117926598000011 ], [ -123.042147094999962, 49.117926790000084 ], [ -123.042146865999939, 49.117656926000073 ], [ -123.041735737999929, 49.117657076000107 ], [ -123.041735058999976, 49.116847487000072 ], [ -123.04308840099999, 49.11684699100006 ], [ -123.043260200999953, 49.114142465 ], [ -123.043032395999958, 49.114136202000061 ], [ -123.043026353999949, 49.11423130200005 ], [ -123.040831038999926, 49.11417091400007 ], [ -123.040823668999963, 49.114286856000057 ], [ -123.035355502999948, 49.114136243000054 ], [ -123.035392354999956, 49.113557603000118 ], [ -123.034955572999962, 49.113545560000055 ], [ -123.033121957999953, 49.113494987000124 ], [ -123.03322865199999, 49.111820944000094 ], [ -123.033045235999936, 49.111812162000042 ], [ -123.033082936999932, 49.11161146200007 ], [ -123.033241442999937, 49.1116202400001 ], [ -123.033351239999917, 49.109897343000036 ], [ -123.034292000999969, 49.109923295000051 ], [ -123.034297105999954, 49.109843165000044 ], [ -123.034987245999929, 49.10986219900014 ], [ -123.034991379999923, 49.109797282000052 ], [ -123.035719559999961, 49.10981735900004 ], [ -123.035720651999924, 49.109800200000088 ], [ -123.039146948999971, 49.109894602000068 ], [ -123.039153513999935, 49.109791384000026 ], [ -123.040283082, 49.109822482000084 ], [ -123.040290371999973, 49.109707812000124 ], [ -123.042391864999956, 49.109765637000052 ], [ -123.042402993999957, 49.109590462000064 ], [ -123.042562787999941, 49.109594857000054 ], [ -123.042648446999962, 49.108246428000029 ], [ -123.042591129999948, 49.108244851000116 ], [ -123.042819654999974, 49.104647159000066 ], [ -123.043922387999928, 49.104677485000096 ], [ -123.044001875999967, 49.103425484000049 ], [ -123.046119785999977, 49.103483695000058 ], [ -123.046450804999907, 49.103492790000097 ], [ -123.049468813999937, 49.103575658000075 ], [ -123.04939009899999, 49.104817770000125 ], [ -123.049382280999978, 49.104941119000053 ], [ -123.049276237999976, 49.106614342000086 ], [ -123.049321004, 49.106615571000042 ], [ -123.049092970999936, 49.110213266000088 ], [ -123.04800265599998, 49.110183338000112 ], [ -123.047985239999946, 49.110457980000049 ], [ -123.049646431000028, 49.110503572000042 ], [ -123.049586629999936, 49.111447119000054 ], [ -123.050857629999925, 49.111446566000033 ], [ -123.050968142999949, 49.109702072000061 ], [ -123.053238857999972, 49.109764325000071 ], [ -123.053237768999963, 49.108746860000089 ], [ -123.05282671599997, 49.108747048000076 ], [ -123.052826141999944, 49.108207322000105 ], [ -123.052415092999965, 49.108207509000103 ], [ -123.052413955999967, 49.107128056000093 ], [ -123.052824996999959, 49.107127869000053 ], [ -123.052824709000021, 49.106858006000046 ], [ -123.053549527999934, 49.106857672000039 ], [ -123.053915493999952, 49.106857501000036 ], [ -123.05405782299999, 49.106857434000091 ], [ -123.054057794999935, 49.106831828000068 ], [ -123.054057530999927, 49.10658757100002 ], [ -123.05570167399999, 49.106586790000044 ], [ -123.055701371999945, 49.106316926000019 ], [ -123.056523437999957, 49.106316526000093 ], [ -123.056522824999917, 49.105776799000033 ], [ -123.057254257999972, 49.105776439000095 ], [ -123.057180504999977, 49.106102697000097 ], [ -123.056794388999947, 49.10662191200008 ], [ -123.056239753999989, 49.107123535000035 ], [ -123.05614798, 49.10720653900006 ], [ -123.055819988999971, 49.107503209000058 ], [ -123.055738619999943, 49.107576798000061 ], [ -123.055675893999975, 49.107637298000036 ], [ -123.055537502999982, 49.107769505000107 ], [ -123.055645693999949, 49.107817097000108 ], [ -123.055701386999928, 49.107841601000068 ], [ -123.056474467999919, 49.108192124000027 ], [ -123.056790506, 49.108335413000056 ], [ -123.056986548999987, 49.108424293000084 ], [ -123.057404602999981, 49.1086138430001 ], [ -123.059477040999965, 49.10955340400006 ], [ -123.059371937999956, 49.109553458000107 ], [ -123.05899347899998, 49.109553652000059 ], [ -123.058993797, 49.109823515000087 ], [ -123.057760611, 49.109824139000075 ], [ -123.05776123699998, 49.11036386500006 ], [ -123.056403423999953, 49.110364537000088 ], [ -123.056249837999957, 49.112793381000081 ], [ -123.056530796999979, 49.112793244000024 ], [ -123.056531102999955, 49.113063107000038 ], [ -123.057764369999944, 49.113062496000126 ], [ -123.057764995999946, 49.113602221000058 ], [ -123.058102095, 49.113602052000061 ], [ -123.058133062999971, 49.113112055000073 ], [ -123.05895538799993, 49.113134549000058 ], [ -123.058991859999963, 49.112557275000064 ], [ -123.060917375999978, 49.112609920000075 ], [ -123.060938697999944, 49.112272221000133 ], [ -123.061263197999949, 49.112281090000046 ], [ -123.061290107999952, 49.111854829 ], [ -123.061844817999955, 49.111869987000055 ], [ -123.061871883, 49.111441189000054 ], [ -123.061462172999939, 49.111441408000104 ], [ -123.061461505999901, 49.110901681000016 ], [ -123.061050434999942, 49.110901899000169 ], [ -123.061050102999957, 49.110632036000013 ], [ -123.060639033999919, 49.110632252000087 ], [ -123.060638704999974, 49.110362389000095 ], [ -123.060227638999962, 49.110362605000027 ], [ -123.060227072999979, 49.109895412000085 ], [ -123.060952408999967, 49.110226903000097 ], [ -123.061573192999944, 49.110588003 ], [ -123.0629410129999, 49.111685807000086 ], [ -123.064120504999963, 49.112632366000099 ], [ -123.064716908000022, 49.11311099200001 ], [ -123.066009189999974, 49.114154065000051 ], [ -123.066592922999959, 49.114625215000046 ], [ -123.066584463999959, 49.114759448000079 ], [ -123.066228110999987, 49.114730503000068 ], [ -123.065761620999979, 49.114432903000093 ], [ -123.065200099999927, 49.114334613000061 ], [ -123.064844800999978, 49.114388709000089 ], [ -123.063337705999984, 49.115163507000041 ], [ -123.061926202, 49.114821708000086 ], [ -123.061899490999949, 49.114875796000028 ], [ -123.063037197999932, 49.115334401 ], [ -123.062119794999958, 49.115919798000036 ], [ -123.060008956999965, 49.117852914000053 ], [ -123.059825571999937, 49.117847901000054 ], [ -123.059825779999969, 49.118020660000106 ], [ -123.059642017999963, 49.118188939000049 ], [ -123.058659122999956, 49.118189443000034 ], [ -123.058592587999939, 49.118189477 ], [ -123.058592685999912, 49.118272533000052 ], [ -123.058593223999964, 49.118729202000118 ], [ -123.058227384999924, 49.118729387000059 ], [ -123.057770950999938, 49.118729616000081 ], [ -123.057771577999986, 49.119269342000095 ], [ -123.055715875999979, 49.119270352000122 ], [ -123.055715574, 49.119000490000111 ], [ -123.054893297, 49.119000884000108 ], [ -123.054891211999987, 49.117111844000128 ], [ -123.056535703999913, 49.117111050000105 ], [ -123.056536010999977, 49.11738091400008 ], [ -123.057769384999972, 49.117380303000125 ], [ -123.057769070999939, 49.117110440000033 ], [ -123.058180193999974, 49.117110233000133 ], [ -123.058179732999918, 49.116717231000031 ], [ -123.057905677999955, 49.116709734000061 ], [ -123.058050927999929, 49.114411668000095 ], [ -123.057765936999957, 49.114411812000121 ], [ -123.057767817999888, 49.116030988000048 ], [ -123.056534475999925, 49.116031600000071 ], [ -123.056534169999978, 49.115761736000096 ], [ -123.056123058999972, 49.115761936000077 ], [ -123.056122752999954, 49.115492074000059 ], [ -123.055711644999988, 49.115492273000029 ], [ -123.055711341999952, 49.115222410000037 ], [ -123.055300234999933, 49.115222608000117 ], [ -123.055299034999933, 49.11414315600004 ], [ -123.054932609999952, 49.114143332000069 ], [ -123.054930735999932, 49.114243562000098 ], [ -123.054593836, 49.114238562000089 ], [ -123.054594555000023, 49.114143491000057 ], [ -123.054065739999956, 49.114143740000046 ], [ -123.054064921999924, 49.113390886000111 ], [ -123.050776092999953, 49.113300737000074 ], [ -123.05077612799991, 49.113335645000113 ], [ -123.050365037999967, 49.113335824000082 ], [ -123.050365310999922, 49.113605687000067 ], [ -123.049988297999946, 49.113605852000063 ], [ -123.049954215999946, 49.113605866000078 ], [ -123.049954287999967, 49.113676054000059 ], [ -123.049954487999912, 49.113875729000029 ], [ -123.050365583999934, 49.113875550000039 ], [ -123.050366402999941, 49.114685140000084 ], [ -123.049955299999979, 49.114685318000035 ], [ -123.049955571999973, 49.114955182000031 ], [ -123.049785715999946, 49.114955254000023 ], [ -123.049639188999961, 49.114955318000113 ], [ -123.049614580999972, 49.11534353900003 ], [ -123.049544851999954, 49.115341626000024 ], [ -123.049545004999914, 49.115495084000045 ], [ -123.049512091999972, 49.115495098000096 ], [ -123.049335234999887, 49.118285037000071 ], [ -123.048124706999943, 49.118251818000097 ], [ -123.04811555399999, 49.118396125000132 ], [ -123.048123168999979, 49.118396333000042 ], [ -123.048101750999976, 49.118734051000075 ], [ -123.049137093999917, 49.118733614000085 ], [ -123.049136828999977, 49.11846375100005 ], [ -123.049686965999967, 49.11846351700008 ], [ -123.050370228999952, 49.118463220000159 ], [ -123.050371048999978, 49.119272809000101 ], [ -123.049959909, 49.119272987000102 ], [ -123.049960178999982, 49.119542850000109 ], [ -123.049656576999936, 49.119542981000087 ], [ -123.049549035999931, 49.119543027000091 ], [ -123.049549305999946, 49.119812890000105 ], [ -123.049648979999944, 49.119812846000094 ], [ -123.049960450999933, 49.11981271300008 ], [ -123.049960721999952, 49.120082576000129 ], [ -123.050371868999946, 49.120082398000108 ], [ -123.050373062999967, 49.121261169000043 ], [ -123.051787311999973, 49.121299945000132 ], [ -123.051719143999975, 49.122376043000038 ], [ -123.051835975999936, 49.122379246000108 ], [ -123.051733118999962, 49.124002888000064 ], [ -123.05339082399999, 49.124048314000035 ], [ -123.05443438499999, 49.124076896000069 ], [ -123.054222285999984, 49.124504895000022 ], [ -123.052606803999979, 49.126350687000169 ], [ -123.05257888099996, 49.126565702000086 ], [ -123.053114600999976, 49.126584202000053 ], [ -123.053278079999941, 49.126367793000078 ], [ -123.053551377999923, 49.126259496000038 ], [ -123.053826699999959, 49.126322187000049 ], [ -123.053964217999962, 49.126582797000019 ], [ -123.054086481999917, 49.126619798000021 ], [ -123.054717190999924, 49.126582810000095 ], [ -123.05544330099994, 49.126429008000066 ], [ -123.055730700999945, 49.126159793000106 ], [ -123.056072202999971, 49.125349406000069 ], [ -123.057003499999922, 49.124774110000097 ], [ -123.057045792999986, 49.124549012000131 ], [ -123.057251299999962, 49.124422286000083 ], [ -123.057346611999932, 49.124207194000064 ], [ -123.057277, 49.124017809000115 ], [ -123.057294796999955, 49.124003079000083 ], [ -123.0573659, 49.12400502400007 ], [ -123.057365829999952, 49.123944286000039 ], [ -123.057471094999968, 49.123857160000078 ], [ -123.057776909000026, 49.123857007000019 ], [ -123.057776612999945, 49.123604286000081 ], [ -123.057961803999902, 49.123451004000067 ], [ -123.058193579999937, 49.123054996000057 ], [ -123.058466844999913, 49.122777209000084 ], [ -123.05859799299999, 49.122777142000096 ], [ -123.058597837999955, 49.122646284000076 ], [ -123.058805557999932, 49.122507174000091 ], [ -123.059831176999921, 49.122506648000105 ], [ -123.059831500999948, 49.122776510000058 ], [ -123.061065008999918, 49.122775864000062 ], [ -123.06106467799998, 49.122506002000044 ], [ -123.060242343, 49.12250643300009 ], [ -123.060241362999932, 49.121696846000084 ], [ -123.061474844999978, 49.12169619500002 ], [ -123.06147517699999, 49.121966058000098 ], [ -123.062297503999957, 49.121965617000043 ], [ -123.062297164999933, 49.121695754000029 ], [ -123.062708325999978, 49.121695532000018 ], [ -123.062706283999887, 49.120076357000109 ], [ -123.062295136999964, 49.120076578000059 ], [ -123.062294423999944, 49.119506594 ], [ -123.062534600999953, 49.119283708000033 ], [ -123.062648272999979, 49.118996936000038 ], [ -123.062704923999917, 49.118996905000103 ], [ -123.062704827999966, 49.118920885000058 ], [ -123.063013712000028, 49.118733995000113 ], [ -123.063021342999917, 49.118726871000099 ], [ -123.066404806999955, 49.118724974 ], [ -123.066405526999986, 49.119264699000048 ], [ -123.068050088999883, 49.119263742000101 ], [ -123.068051197, 49.120073329000043 ], [ -123.066817755999949, 49.120074050000078 ], [ -123.06681920599999, 49.121153500000027 ], [ -123.066408050999911, 49.121153737000022 ], [ -123.066409490999945, 49.122233189000085 ], [ -123.06599832699996, 49.12223342300009 ], [ -123.06599868399995, 49.122503286000033 ], [ -123.065176348999941, 49.122503753000089 ], [ -123.065177469999966, 49.123358940000102 ], [ -123.064909896999936, 49.123527895000073 ], [ -123.064787423999945, 49.123583423000092 ], [ -123.064766589000016, 49.123583435000064 ], [ -123.064766600999974, 49.123592865000056 ], [ -123.064212496999986, 49.123844088000098 ], [ -123.064200172999961, 49.123853614000033 ], [ -123.063944582999952, 49.123853755000077 ], [ -123.063944836999937, 49.12405097500001 ], [ -123.06385078699995, 49.124123670000159 ], [ -123.063122568999972, 49.124124071000047 ], [ -123.063122912, 49.124393932000068 ], [ -123.06230054699995, 49.124394380000069 ], [ -123.062300882999935, 49.124664243000041 ], [ -123.06096914699999, 49.124664954000096 ], [ -123.060890864999976, 49.125904473000027 ], [ -123.059446204, 49.12678789100007 ], [ -123.059089387999947, 49.126886196000029 ], [ -123.05706050399999, 49.127049893000034 ], [ -123.056403814999967, 49.127185299000104 ], [ -123.055431614999918, 49.127176697000081 ], [ -123.054155315999964, 49.127356200000051 ], [ -123.052457294999954, 49.127807588000053 ], [ -123.052388479999976, 49.128184995000119 ], [ -123.052169004999968, 49.128158004000063 ], [ -123.052141493999912, 49.127978491000121 ], [ -123.052005197999904, 49.12794290400003 ], [ -123.051182706999953, 49.128184999000077 ], [ -123.050963778999915, 49.128293295000077 ], [ -123.050960151999945, 49.128301224000026 ], [ -123.050827597999969, 49.12859089200014 ], [ -123.049990408999989, 49.128968384000075 ], [ -123.049730510999936, 49.129193406000098 ], [ -123.049168485999971, 49.129167802000069 ], [ -123.048192861999908, 49.129922275000105 ], [ -123.047948229999989, 49.12991556300009 ], [ -123.047914457, 49.129914636000095 ], [ -123.047914484999978, 49.129941995000138 ], [ -123.047914605999907, 49.130068360000053 ], [ -123.047753068999953, 49.13006842700004 ], [ -123.047503375999938, 49.130068530000102 ], [ -123.047503513999985, 49.130213017000067 ], [ -123.047503632999977, 49.130338391000066 ], [ -123.047285824999918, 49.130338482000099 ], [ -123.047092400999972, 49.130338560000027 ], [ -123.047092505999942, 49.130449900000023 ], [ -123.047092656999936, 49.130608423000119 ], [ -123.046755654999941, 49.130608559000066 ], [ -123.04668142299991, 49.130608589000047 ], [ -123.046681454999941, 49.130643339000095 ], [ -123.046681923999955, 49.131142636000106 ], [ -123.04642581399996, 49.13141827900003 ], [ -123.045859701, 49.131418506000045 ], [ -123.04586044699991, 49.13222809200002 ], [ -123.045449199999922, 49.132228254000061 ], [ -123.045449570999949, 49.132634857000092 ], [ -123.045100088999959, 49.133225302000071 ], [ -123.045013996999927, 49.133307875000078 ], [ -123.043393903999913, 49.133308495000087 ], [ -123.043394344999967, 49.133813880000055 ], [ -123.042827092999943, 49.134135399000051 ], [ -123.041209291999962, 49.134621101000057 ], [ -123.040056690999933, 49.134793403000081 ], [ -123.039124612999927, 49.135089601000097 ], [ -123.037850218999964, 49.135216408000097 ], [ -123.036946282999921, 49.135414306000037 ], [ -123.036288992999971, 49.135701999000084 ], [ -123.036001296999984, 49.13591850200006 ], [ -123.035725589999942, 49.136152101000036 ], [ -123.034478510999946, 49.136503892000079 ], [ -123.034377302999957, 49.136505544000066 ], [ -123.033957692999977, 49.136512396000064 ], [ -123.032710700999985, 49.137008008000109 ], [ -123.031819917999911, 49.137160393000066 ], [ -123.030560005000012, 49.137674498000123 ], [ -123.029872884999961, 49.138052002000109 ], [ -123.028462022999918, 49.13855610300002 ], [ -123.028063778999979, 49.138574698000106 ], [ -123.027049684999923, 49.138214289000125 ], [ -123.026278593999962, 49.138193417000075 ], [ -123.026104383999936, 49.138188700000022 ], [ -123.023254181999931, 49.138719897000051 ], [ -123.022422300999949, 49.138835469000114 ], [ -123.022422122999927, 49.138441852000028 ], [ -123.0215995249999, 49.138442009000144 ], [ -123.021599743999957, 49.138949738000086 ], [ -123.01956338399998, 49.139232598000042 ], [ -123.018425798999928, 49.139340887000131 ], [ -123.016931995, 49.139701209000052 ], [ -123.015342802999939, 49.140466012000047 ], [ -123.014807379999965, 49.140851994000059 ], [ -123.014368814999969, 49.140978706000062 ], [ -123.01416371699996, 49.141195194000026 ], [ -123.012395304999984, 49.142157999000055 ], [ -123.010859315999966, 49.142652206000157 ], [ -123.009817496999929, 49.142858702000041 ], [ -123.008089596, 49.14348961200006 ], [ -123.006609816, 49.144154702000023 ], [ -123.005799307999894, 49.144640395000117 ], [ -123.005252092999967, 49.145171607000073 ], [ -123.004729896999905, 49.145477804000087 ], [ -123.002386302999952, 49.146709696000116 ], [ -123.002153299000028, 49.146709694000016 ], [ -123.002042829999951, 49.146788679000075 ], [ -123.002001816999922, 49.146818003000107 ], [ -123.002125385999946, 49.147401894000041 ], [ -123.00197358399997, 49.147635497000067 ], [ -123.001317501999921, 49.147924607000022 ], [ -122.999779799999928, 49.149371586000051 ], [ -122.999575094999912, 49.14922770600004 ], [ -122.99947959499994, 49.149246195000096 ], [ -122.999053702999944, 49.149498294000104 ], [ -122.998519713999926, 49.149650690000051 ], [ -122.998189519999954, 49.149516902000087 ], [ -122.997887899999981, 49.149246289000054 ], [ -122.997709704999949, 49.149219198000054 ], [ -122.997436599999958, 49.149398591000129 ], [ -122.996147024999956, 49.149740503000032 ], [ -122.995076004999959, 49.150190509000026 ], [ -122.994652607999981, 49.150271707000066 ], [ -122.994349793999902, 49.150461116000045 ], [ -122.994033908999981, 49.15044259700008 ], [ -122.99316979699995, 49.150703205000063 ], [ -122.99252709199996, 49.150730298000042 ], [ -122.988630504999932, 49.15172010400007 ], [ -122.986094107999989, 49.152222909000066 ], [ -122.984937194999972, 49.152615114000056 ], [ -122.984804994999962, 49.152654409000093 ], [ -122.984447029, 49.15268101200008 ], [ -122.98407709, 49.152708505000142 ], [ -122.983776488999979, 49.152897902000092 ], [ -122.982419609999965, 49.153167106000083 ], [ -122.98236620199998, 49.153195773000093 ], [ -122.981883913, 49.153454803000059 ], [ -122.980812994999951, 49.153733913000053 ], [ -122.980264110999912, 49.153957504000111 ], [ -122.979990518999912, 49.153967500000114 ], [ -122.979799621999945, 49.153625700000099 ], [ -122.979482685, 49.153642790000113 ], [ -122.979360612, 49.153976095000118 ], [ -122.978646102999917, 49.154101411000099 ], [ -122.978606586999902, 49.15398460100004 ], [ -122.977850987999986, 49.153984594000057 ], [ -122.977577610999916, 49.154191100000112 ], [ -122.977154823999939, 49.154223498000114 ], [ -122.97662991599999, 49.154263707000034 ], [ -122.976506701999952, 49.154470288000049 ], [ -122.975947167999919, 49.154581139000086 ], [ -122.975644006999985, 49.154641191000017 ], [ -122.97542031199994, 49.154658506000047 ], [ -122.974944302, 49.154695290000092 ], [ -122.974739111999966, 49.15455999100007 ], [ -122.974189415999902, 49.15449730600001 ], [ -122.973654056999976, 49.154599645000125 ], [ -122.973295850999961, 49.154668129000122 ], [ -122.97200788699999, 49.154914372000093 ], [ -122.971780554999953, 49.154957844000087 ], [ -122.971515000999915, 49.155008597000062 ], [ -122.970691587999951, 49.154990091000094 ], [ -122.970362218999981, 49.154900397000084 ], [ -122.969731802999917, 49.154981493000022 ], [ -122.967922011, 49.154962995000083 ], [ -122.966689918999947, 49.154750672000098 ], [ -122.965988490999933, 49.154629811000127 ], [ -122.964040304999983, 49.154530083000111 ], [ -122.963808004, 49.154486519000024 ], [ -122.962984793999937, 49.154332108000133 ], [ -122.962957124999946, 49.154421803000041 ], [ -122.961696514999971, 49.154330696000066 ], [ -122.96166828099993, 49.154394792000126 ], [ -122.95944770499996, 49.154178283000057 ], [ -122.959473490999954, 49.153853610000091 ], [ -122.95898110199991, 49.153835088000072 ], [ -122.958751048999915, 49.15376717500007 ], [ -122.95868484899999, 49.153747616000061 ], [ -122.958569849999932, 49.153713636000106 ], [ -122.958035688000038, 49.153555892000021 ], [ -122.957740196999978, 49.153531595000096 ], [ -122.957499317999961, 49.153511803000093 ], [ -122.957185682999963, 49.153303795000085 ], [ -122.956938693999973, 49.153241206000033 ], [ -122.955484998999921, 49.152997603000074 ], [ -122.954662484, 49.152943492000077 ], [ -122.954496007, 49.153024709000128 ], [ -122.954182195999962, 49.153006211000118 ], [ -122.953180576999955, 49.152862292000115 ], [ -122.952920518999946, 49.152735603000075 ], [ -122.951740794999964, 49.1528253070001 ], [ -122.951479780999961, 49.153248301000133 ], [ -122.951288211999966, 49.153346588000026 ], [ -122.950656689999917, 49.153346595000052 ], [ -122.950273022999937, 49.153211302000052 ], [ -122.949902614999971, 49.153400691000058 ], [ -122.94942181, 49.153328009000113 ], [ -122.949103145999985, 49.153432736000156 ], [ -122.948983985999945, 49.15347190500011 ], [ -122.948709414999911, 49.153759603 ], [ -122.947432998999915, 49.154191095000051 ], [ -122.94674629699999, 49.154181114000046 ], [ -122.946321900999962, 49.154297891000034 ], [ -122.94619912499999, 49.154495903000061 ], [ -122.94591141299999, 49.154477388000011 ], [ -122.945661542999972, 49.154535955000014 ], [ -122.94548601299999, 49.154577101 ], [ -122.944978401999947, 49.154864812000042 ], [ -122.94477048899995, 49.155044207000103 ], [ -122.94451010599991, 49.15551139100009 ], [ -122.943590322, 49.15611380400005 ], [ -122.943000504999986, 49.156392889000045 ], [ -122.942713885999964, 49.156293193000067 ], [ -122.942506905999934, 49.156338804000072 ], [ -122.942520976, 49.156563797000118 ], [ -122.942026579999975, 49.156968298000088 ], [ -122.94216254, 49.157127187000086 ], [ -122.942327430999967, 49.157319937000068 ], [ -122.942226782999953, 49.157319886000096 ], [ -122.942179785999926, 49.158034573000101 ], [ -122.942168332999984, 49.158039258000045 ], [ -122.941978727999981, 49.158116815 ], [ -122.941708598999966, 49.158227308000043 ], [ -122.941088481999927, 49.158356933000078 ], [ -122.940779545999987, 49.158421512000075 ], [ -122.940410816999943, 49.158498587000068 ], [ -122.940064254999967, 49.158121982000047 ], [ -122.940006134999919, 49.158058807000046 ], [ -122.939884245999906, 49.157926363000065 ], [ -122.939894002999949, 49.157901651000032 ], [ -122.939912111999917, 49.157844190000091 ], [ -122.939983392999949, 49.15770342000009 ], [ -122.940083220999909, 49.157506350000098 ], [ -122.940237009999976, 49.157202787000131 ], [ -122.940247037999939, 49.157170850000043 ], [ -122.940457354000017, 49.1564081080001 ] ], [ [ -123.046164194999989, 49.123577782000062 ], [ -123.046184632999925, 49.123255784000065 ], [ -123.043385063999935, 49.123178864000039 ], [ -123.04338534599998, 49.123501432000062 ], [ -123.046164194999989, 49.123577782000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "0.840460904661327", "sL_AssetLoss": "47819", "sL_BldgLoss": "40190", "sL_StrLoss": "24370", "sL_NStrLoss": "15820", "sL_ContLoss": "7629", "geom_point": "0101000020E610000030AC4D2910C45EC0531F0E33B08C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.068026099999912, 49.101722640000062 ], [ -123.068025362999947, 49.101182913000052 ], [ -123.067614372999941, 49.101183154000054 ], [ -123.06761400799999, 49.100913291000062 ], [ -123.067203017999972, 49.100913531000074 ], [ -123.067202653999942, 49.100643667000064 ], [ -123.06679166699999, 49.100643906000109 ], [ -123.066791305999956, 49.100374042000041 ], [ -123.065969335999966, 49.100374516000052 ], [ -123.065968978999962, 49.100105423000095 ], [ -123.062749478999962, 49.100017506000079 ], [ -123.062828983999978, 49.098757084000034 ], [ -123.062679421999974, 49.098757165000087 ], [ -123.062678749999947, 49.098223511000072 ], [ -123.062663884999978, 49.09821744500011 ], [ -123.062267775999942, 49.098217660000024 ], [ -123.062267571999925, 49.098055748000093 ], [ -123.06200334299993, 49.097947939000029 ], [ -123.06144551, 49.097948237000118 ], [ -123.06144522799994, 49.097720217000074 ], [ -123.061342810999989, 49.097678427000076 ], [ -123.060623251999971, 49.097678808000119 ], [ -123.060622934, 49.097417691000075 ], [ -123.060592931999977, 49.097408960000038 ], [ -123.060211962999972, 49.097409159000094 ], [ -123.060211828999954, 49.09729804600007 ], [ -123.060176836999972, 49.09728786200003 ], [ -123.059782593999941, 49.097139518000105 ], [ -123.05938972199999, 49.097139720000087 ], [ -123.059389544999988, 49.096991621000036 ], [ -123.059066394999988, 49.096870023000129 ], [ -123.057513268999926, 49.096870808000119 ], [ -123.057334622999974, 49.096870897000016 ], [ -123.057334001999976, 49.09633116800012 ], [ -123.057286579000021, 49.096331192000044 ], [ -123.057285978999957, 49.096249037000035 ], [ -123.057285947999929, 49.096242669000091 ], [ -123.057511953999906, 49.096297362000044 ], [ -123.058163790999942, 49.09645509500006 ], [ -123.059834684999913, 49.097138691000069 ], [ -123.060044413999933, 49.097211821000052 ], [ -123.060675619999984, 49.097431931000138 ], [ -123.062179086999947, 49.097956202000042 ], [ -123.063692449999934, 49.098587125000115 ], [ -123.064016012999957, 49.098722021000071 ], [ -123.064181, 49.098790791000056 ], [ -123.064551207999941, 49.099069897000064 ], [ -123.065277491999964, 49.099357614000091 ], [ -123.067017858999975, 49.100493341000067 ], [ -123.068156302999952, 49.10123621200006 ], [ -123.068776901999982, 49.101722194000033 ], [ -123.068026099999912, 49.101722640000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "0.817674137800921", "sL_AssetLoss": "26502", "sL_BldgLoss": "21670", "sL_StrLoss": "12770", "sL_NStrLoss": "8900", "sL_ContLoss": "4832", "geom_point": "0101000020E61000005BB4DF5E02C65EC047AFC40BBB8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.093959690999938, 49.090818095000095 ], [ -123.094603611999972, 49.090484794000112 ], [ -123.094726096999935, 49.090638586000097 ], [ -123.094745225999972, 49.09145550100002 ], [ -123.094699921999961, 49.092181764000067 ], [ -123.094615051999966, 49.092438248000043 ], [ -123.092834125999957, 49.092390094000045 ], [ -123.093031702999937, 49.092232307000089 ], [ -123.092579111999953, 49.091638408000044 ], [ -123.093494606999926, 49.091188383000016 ], [ -123.093959690999938, 49.090818095000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17286333", "BldgCostT": "10953333", "sL_LossRatio": "0.722565557096402", "sL_AssetLoss": "206957", "sL_BldgLoss": "149540", "sL_StrLoss": "74790", "sL_NStrLoss": "74750", "sL_ContLoss": "57417", "geom_point": "0101000020E61000002E3DDC069CC45EC0F23746570E8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072689619999906, 49.119547816000072 ], [ -123.069198738, 49.116728579000082 ], [ -123.06874098699997, 49.116358911000042 ], [ -123.067993388999966, 49.115755556000082 ], [ -123.0680452899999, 49.115755525000047 ], [ -123.068045120999969, 49.115631753000073 ], [ -123.068044919999949, 49.115485663000065 ], [ -123.068535161999961, 49.115485373000084 ], [ -123.069807012999917, 49.116113493000071 ], [ -123.070101405999964, 49.11615243100011 ], [ -123.070101607, 49.116294022000069 ], [ -123.070512722, 49.116293771000073 ], [ -123.070513104999975, 49.116563634000052 ], [ -123.071746458999982, 49.116562874000117 ], [ -123.071747627, 49.117372462000077 ], [ -123.07256987599996, 49.11737194800002 ], [ -123.072568694999958, 49.116562359000092 ], [ -123.074624284999985, 49.116561050000051 ], [ -123.074625903999944, 49.117640500000107 ], [ -123.073803651, 49.117641029000033 ], [ -123.073804851999952, 49.118450617000065 ], [ -123.07421598599997, 49.1184503530001 ], [ -123.074217473999965, 49.119447895000093 ], [ -123.074169186999924, 49.119474593000113 ], [ -123.074034952999924, 49.119529922000012 ], [ -123.073806453999978, 49.119530068000131 ], [ -123.073806593000015, 49.119624046000084 ], [ -123.073243199999922, 49.119856259000073 ], [ -123.073129604999963, 49.119903079000096 ], [ -123.073120281999934, 49.119895551000084 ], [ -123.073002898999931, 49.119800741000063 ], [ -123.072787703999964, 49.119626986000128 ], [ -123.072689619999906, 49.119547816000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.883641674780915", "sL_AssetLoss": "4108", "sL_BldgLoss": "3630", "sL_StrLoss": "2350", "sL_NStrLoss": "1280", "sL_ContLoss": "478", "geom_point": "0101000020E61000007FBE2D582AC55EC00E0732D06F8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08078448, 49.112508957000067 ], [ -123.081125172999961, 49.112508718000122 ], [ -123.081107716999952, 49.112542999000034 ], [ -123.081300407999933, 49.112813592000094 ], [ -123.080887620999974, 49.112948800000062 ], [ -123.080121193999972, 49.112957408000071 ], [ -123.079962949999981, 49.112907483000043 ], [ -123.079962743999943, 49.11277939100011 ], [ -123.080784917999907, 49.112778819000035 ], [ -123.08078448, 49.112508957000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66742833", "BldgCostT": "45348333", "sL_LossRatio": "0.781674075055749", "sL_AssetLoss": "739477", "sL_BldgLoss": "578030", "sL_StrLoss": "306400", "sL_NStrLoss": "271630", "sL_ContLoss": "161447", "geom_point": "0101000020E6100000EFF7723C32C45EC0AA02FFA5D68D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.060227072999979, 49.109895412000085 ], [ -123.060226985, 49.109822879000042 ], [ -123.060068545999911, 49.109822961000113 ], [ -123.059815783999923, 49.109707441000133 ], [ -123.05981559699994, 49.109553229000035 ], [ -123.059477040999965, 49.10955340400006 ], [ -123.057404602999981, 49.1086138430001 ], [ -123.056986548999987, 49.108424293000084 ], [ -123.056790506, 49.108335413000056 ], [ -123.056474467999919, 49.108192124000027 ], [ -123.055701386999928, 49.107841601000068 ], [ -123.055645693999949, 49.107817097000108 ], [ -123.055537502999982, 49.107769505000107 ], [ -123.055675893999975, 49.107637298000036 ], [ -123.055738619999943, 49.107576798000061 ], [ -123.055819988999971, 49.107503209000058 ], [ -123.05614798, 49.10720653900006 ], [ -123.056239753999989, 49.107123535000035 ], [ -123.056794388999947, 49.10662191200008 ], [ -123.057180504999977, 49.106102697000097 ], [ -123.057254257999972, 49.105776439000095 ], [ -123.057459623999975, 49.10577633700008 ], [ -123.057519857999978, 49.105776307000049 ], [ -123.057755911999948, 49.105776189000053 ], [ -123.05775653799999, 49.106315916000085 ], [ -123.058167572999963, 49.106315710000068 ], [ -123.058168517999931, 49.107125300000106 ], [ -123.058990597999951, 49.107124882000043 ], [ -123.05899187899999, 49.108204336000064 ], [ -123.06186922099999, 49.108202829000064 ], [ -123.061871233999966, 49.109822009000013 ], [ -123.061974076999903, 49.109821954000054 ], [ -123.061984301999971, 49.109659939000039 ], [ -123.064337483999964, 49.109724212000032 ], [ -123.06433691099997, 49.109280934000061 ], [ -123.064460126999961, 49.109280866000105 ], [ -123.06459644099999, 49.107118996000061 ], [ -123.06506700700001, 49.107131842000051 ], [ -123.065082333999968, 49.106888707000074 ], [ -123.065751562999978, 49.106906972000083 ], [ -123.065801248999918, 49.106118622000054 ], [ -123.065955305999964, 49.106122826000082 ], [ -123.065993173999971, 49.105521926000087 ], [ -123.068388022999926, 49.105587252000063 ], [ -123.068573431999965, 49.102642480000029 ], [ -123.069671414999974, 49.10267241300005 ], [ -123.069671215999961, 49.102531250000055 ], [ -123.069260214999986, 49.102531498000047 ], [ -123.069259840000015, 49.102261634000101 ], [ -123.068848838999941, 49.102261880000064 ], [ -123.068848168999978, 49.10177800400001 ], [ -123.069612974999927, 49.102376893000084 ], [ -123.069706623999949, 49.102450228000073 ], [ -123.069720935999911, 49.102461438000056 ], [ -123.069761769999943, 49.102493416000073 ], [ -123.069820335999935, 49.102539282000087 ], [ -123.069845194999957, 49.102558768000051 ], [ -123.069911288999918, 49.102610502000047 ], [ -123.069942361999921, 49.102640630000032 ], [ -123.071076069999947, 49.103740277000014 ], [ -123.071654313999915, 49.104301100000093 ], [ -123.072019171999969, 49.104427021000106 ], [ -123.072172139999964, 49.104479815000111 ], [ -123.07238040799993, 49.10455170500007 ], [ -123.07202551099999, 49.105120008000036 ], [ -123.071998799999974, 49.105991610000054 ], [ -123.071930297999955, 49.106262203000014 ], [ -123.071725876999963, 49.106504296000047 ], [ -123.070960515999971, 49.107260594000081 ], [ -123.068303889999925, 49.109089208000071 ], [ -123.067372893999917, 49.110160312000069 ], [ -123.066444110999953, 49.112238202000121 ], [ -123.065774502999943, 49.113282108000107 ], [ -123.066281895999964, 49.113830401000058 ], [ -123.066900198, 49.114234888000027 ], [ -123.066885907999975, 49.114343194000135 ], [ -123.066982913999965, 49.114406831000032 ], [ -123.066606669999942, 49.1144070490001 ], [ -123.066604296999984, 49.114444714000108 ], [ -123.066592922999959, 49.114625215000046 ], [ -123.066009189999974, 49.114154065000051 ], [ -123.064716908000022, 49.11311099200001 ], [ -123.064120504999963, 49.112632366000099 ], [ -123.0629410129999, 49.111685807000086 ], [ -123.061573192999944, 49.110588003 ], [ -123.060952408999967, 49.110226903000097 ], [ -123.060227072999979, 49.109895412000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119247727", "BldgCostT": "77229856", "sL_LossRatio": "0.74255159297597", "sL_AssetLoss": "1335017", "sL_BldgLoss": "991319", "sL_StrLoss": "493009", "sL_NStrLoss": "498310", "sL_ContLoss": "343698", "geom_point": "0101000020E6100000000E901EB5C45EC03F8B8CAB1D8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073333240999887, 49.104743384000095 ], [ -123.073426215999959, 49.104828640000065 ], [ -123.073671827999974, 49.105053987000062 ], [ -123.073769503999955, 49.105143599000066 ], [ -123.073862929999947, 49.105261479000042 ], [ -123.073970410999934, 49.105397127000025 ], [ -123.074099304999962, 49.105559797000133 ], [ -123.074268893999886, 49.105867991000075 ], [ -123.074364310999968, 49.106245501000046 ], [ -123.074587993999955, 49.106237097000061 ], [ -123.074901892999961, 49.106187114000072 ], [ -123.075104500999942, 49.106123189000058 ], [ -123.075833799999941, 49.105760212000121 ], [ -123.076148002999943, 49.105662387000045 ], [ -123.076604518999943, 49.105630702000042 ], [ -123.077099796999917, 49.105636007000086 ], [ -123.076972376999919, 49.106378597000109 ], [ -123.076839591999928, 49.107055204000048 ], [ -123.076860589, 49.10744049700002 ], [ -123.077591474999977, 49.107393818000077 ], [ -123.077840704999957, 49.10737790400006 ], [ -123.078841111999978, 49.107451991000033 ], [ -123.07887084099994, 49.107253403000108 ], [ -123.078932281999968, 49.106843107000074 ], [ -123.079131128999947, 49.106842971000027 ], [ -123.079131557999972, 49.107112833 ], [ -123.079388299999948, 49.107112658000091 ], [ -123.079277802999982, 49.107767586000101 ], [ -123.079257100999882, 49.107922338 ], [ -123.079132846000022, 49.107922423000062 ], [ -123.079136278999954, 49.110081328000085 ], [ -123.079547342999916, 49.110081045000086 ], [ -123.079548637999949, 49.110890634000093 ], [ -123.079137566000014, 49.110890917000106 ], [ -123.079137911999965, 49.111108232000078 ], [ -123.079997243999955, 49.111131571000072 ], [ -123.079933631999921, 49.112145705000103 ], [ -123.079887342999939, 49.112883630000177 ], [ -123.079750990999955, 49.112840611000102 ], [ -123.078093502999963, 49.113067093000041 ], [ -123.077861010999982, 49.113229386000057 ], [ -123.077806885999976, 49.113679505000093 ], [ -123.077369021999928, 49.113877399000089 ], [ -123.076944181999949, 49.113885998000036 ], [ -123.076503782999964, 49.113599703000084 ], [ -123.075902002999953, 49.113708003000085 ], [ -123.075736407999941, 49.113499998000123 ], [ -123.075559321999947, 49.113501403000065 ], [ -123.075284074999928, 49.113518496000019 ], [ -123.074750288999937, 49.113762106000117 ], [ -123.074380904999956, 49.113609686000046 ], [ -123.074052205999948, 49.113591203000034 ], [ -123.073372458000037, 49.11358061 ], [ -123.072954510999949, 49.113574094000093 ], [ -123.07284145200002, 49.113593694000059 ], [ -123.07215327099999, 49.113594126000059 ], [ -123.072153444999941, 49.113712968000101 ], [ -123.071804193999952, 49.113773513000048 ], [ -123.070920077999929, 49.113655577000038 ], [ -123.07091999, 49.11359489000008 ], [ -123.070508898999918, 49.113595142000072 ], [ -123.070509036999965, 49.1136935070001 ], [ -123.069366515999931, 49.113918706000049 ], [ -123.069276067999965, 49.113919423000077 ], [ -123.069275992999948, 49.113865752000017 ], [ -123.068042706999918, 49.113866485000123 ], [ -123.068042803999944, 49.113938560000079 ], [ -123.066968684999935, 49.114108197000043 ], [ -123.066158891, 49.113416002000079 ], [ -123.066089208999955, 49.113128307000068 ], [ -123.066526712, 49.112571397000075 ], [ -123.066977787, 49.111752495000033 ], [ -123.067456287999903, 49.110348208000048 ], [ -123.067962697999988, 49.109781400000045 ], [ -123.069795493999891, 49.108250413000043 ], [ -123.072136990999951, 49.106648210000046 ], [ -123.072356496999973, 49.106341909000072 ], [ -123.072436520999986, 49.105631301000116 ], [ -123.072477900999942, 49.104911988000076 ], [ -123.072695489999944, 49.104722588000108 ], [ -123.072696403999913, 49.10454321200006 ], [ -123.072584286999984, 49.104546225000021 ], [ -123.072649246, 49.104461409000066 ], [ -123.072741186999977, 49.104512616000108 ], [ -123.072986008999933, 49.104648959000038 ], [ -123.073228038999986, 49.104783778000076 ], [ -123.073333240999887, 49.104743384000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10215250", "BldgCostT": "7045000", "sL_LossRatio": "0.771287477954145", "sL_AssetLoss": "141750", "sL_BldgLoss": "109330", "sL_StrLoss": "55340", "sL_NStrLoss": "53990", "sL_ContLoss": "32420", "geom_point": "0101000020E61000004681783CF1C45EC01DF3CF460D8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073333240999887, 49.104743384000095 ], [ -123.072825665, 49.10445373200011 ], [ -123.072709049999929, 49.104387198 ], [ -123.072781823999918, 49.104325602000067 ], [ -123.07308035199999, 49.104102596000097 ], [ -123.074109200999928, 49.10338324300011 ], [ -123.0747412959999, 49.102973237000086 ], [ -123.075347496999939, 49.102516795000042 ], [ -123.076272547999949, 49.101935676000025 ], [ -123.076842458999948, 49.101631668000032 ], [ -123.079044110999945, 49.100235061000078 ], [ -123.079162981999971, 49.100159671000029 ], [ -123.079819021999967, 49.099530169000083 ], [ -123.079758208000015, 49.099226600000094 ], [ -123.079886718999944, 49.09925430100008 ], [ -123.08001720599999, 49.099132056000052 ], [ -123.080235948999984, 49.09887706100006 ], [ -123.080341117999936, 49.098811768000054 ], [ -123.080385774999954, 49.09901439600003 ], [ -123.080577928, 49.099279934000023 ], [ -123.08063311799999, 49.099356199000049 ], [ -123.08075728599999, 49.099904491000089 ], [ -123.08076448499996, 49.100191165000098 ], [ -123.08076476699992, 49.100365111000016 ], [ -123.080353783999939, 49.100365398000079 ], [ -123.080355962999988, 49.101714715000107 ], [ -123.079944966999932, 49.101715 ], [ -123.079945401999936, 49.101984865000105 ], [ -123.079645665000015, 49.101985072000069 ], [ -123.079646186, 49.101981435000027 ], [ -123.079762080999956, 49.101172794000085 ], [ -123.078943790999972, 49.101123608000144 ], [ -123.078340083999976, 49.10136676000009 ], [ -123.077146, 49.101847699000103 ], [ -123.077605712999954, 49.102332389000019 ], [ -123.076841379999962, 49.102687295000045 ], [ -123.076520807999927, 49.102864204000063 ], [ -123.076180694999934, 49.103114403000063 ], [ -123.075632812999984, 49.103619396000092 ], [ -123.075504978999959, 49.103736588000096 ], [ -123.075159086999946, 49.103946205000092 ], [ -123.074789693999946, 49.104116307000069 ], [ -123.074640461999977, 49.104182054000077 ], [ -123.074003982999912, 49.104462499000093 ], [ -123.073930041999986, 49.104490150000139 ], [ -123.073783888999941, 49.104544794000049 ], [ -123.073333240999887, 49.104743384000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.747731997731998", "sL_AssetLoss": "42328", "sL_BldgLoss": "31650", "sL_StrLoss": "15250", "sL_NStrLoss": "16400", "sL_ContLoss": "10678", "geom_point": "0101000020E6100000308C0D4017C55EC0C5EB13A35B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079606964999954, 49.102254962000096 ], [ -123.079945833999929, 49.102254728000091 ], [ -123.079948303999956, 49.1037931830001 ], [ -123.079707035999945, 49.105223394000056 ], [ -123.079539577999952, 49.105223508000044 ], [ -123.079541148999951, 49.106206679000067 ], [ -123.079524903999953, 49.106302973000062 ], [ -123.079130269999979, 49.106303243000085 ], [ -123.079130698999919, 49.106573108000077 ], [ -123.078972696999969, 49.106573215000033 ], [ -123.079086531999963, 49.105813017000031 ], [ -123.079090895999954, 49.105783804000083 ], [ -123.07929225099997, 49.104426777000057 ], [ -123.079392221999953, 49.103753101000073 ], [ -123.079556348999972, 49.102608047000039 ], [ -123.07960643499996, 49.102258660000054 ], [ -123.079606964999954, 49.102254962000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11237500", "BldgCostT": "7750000", "sL_LossRatio": "0.805621431708388", "sL_AssetLoss": "113850", "sL_BldgLoss": "91720", "sL_StrLoss": "51930", "sL_NStrLoss": "39790", "sL_ContLoss": "22130", "geom_point": "0101000020E6100000BDFB67F68EC55EC0A054562E2F8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08238300899994, 49.096557592000096 ], [ -123.082642918999952, 49.096332604000047 ], [ -123.083121274999939, 49.096476395000067 ], [ -123.08413528599999, 49.095908203000072 ], [ -123.086844776999953, 49.094493999000122 ], [ -123.086967890999944, 49.094241905000054 ], [ -123.087227095999978, 49.094070994000027 ], [ -123.089883400999952, 49.093044090000014 ], [ -123.090321092999929, 49.092782007000032 ], [ -123.090594482999933, 49.092836202000072 ], [ -123.091060082999931, 49.093142400000062 ], [ -123.091436858999913, 49.093012379000143 ], [ -123.091437958999961, 49.09361055100004 ], [ -123.090616102999945, 49.093611200000055 ], [ -123.090616592999964, 49.093881063000019 ], [ -123.089383800999954, 49.09388202400006 ], [ -123.089384286999987, 49.094151888000042 ], [ -123.089147009999962, 49.094152071000089 ], [ -123.089085031999971, 49.095143635000042 ], [ -123.088153197999958, 49.095118397000086 ], [ -123.088153399999968, 49.095232291000059 ], [ -123.086598681999988, 49.095233468000082 ], [ -123.086589444999987, 49.095381096000025 ], [ -123.08650988499997, 49.095378939000099 ], [ -123.08651010199992, 49.095503398000105 ], [ -123.086163335999927, 49.095503658 ], [ -123.086055427, 49.097228203000078 ], [ -123.08381020899995, 49.097167318000047 ], [ -123.082793399999943, 49.096899404000091 ], [ -123.082670684999982, 49.096647393000083 ], [ -123.08238300899994, 49.096557592000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "0.885873347251218", "sL_AssetLoss": "28740", "sL_BldgLoss": "25460", "sL_StrLoss": "17690", "sL_NStrLoss": "7770", "sL_ContLoss": "3280", "geom_point": "0101000020E6100000FF1DF6E707C55EC0003A0EB4E98E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.077260842, 49.117573444000072 ], [ -123.077370152999961, 49.115832566000108 ], [ -123.078125697999937, 49.115855711000016 ], [ -123.078452721999966, 49.11561209900011 ], [ -123.080618304999987, 49.11578160300018 ], [ -123.080701984999976, 49.11588980000009 ], [ -123.080318001999942, 49.116016585000089 ], [ -123.080181707999927, 49.116439586000055 ], [ -123.079456191999924, 49.116710194000099 ], [ -123.079182792999958, 49.117133194000075 ], [ -123.078525519999957, 49.117447899000069 ], [ -123.078177045999922, 49.117598339000089 ], [ -123.077260842, 49.117573444000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118979749", "BldgCostT": "82054999", "sL_LossRatio": "0.758000420539037", "sL_AssetLoss": "1792937", "sL_BldgLoss": "1359047", "sL_StrLoss": "673247", "sL_NStrLoss": "685800", "sL_ContLoss": "433890", "geom_point": "0101000020E6100000EEB03684F2C45EC06689104F5D8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.076860589, 49.10744049700002 ], [ -123.076839591999928, 49.107055204000048 ], [ -123.076972376999919, 49.106378597000109 ], [ -123.077099796999917, 49.105636007000086 ], [ -123.076604518999943, 49.105630702000042 ], [ -123.076148002999943, 49.105662387000045 ], [ -123.075833799999941, 49.105760212000121 ], [ -123.075104500999942, 49.106123189000058 ], [ -123.074901892999961, 49.106187114000072 ], [ -123.074587993999955, 49.106237097000061 ], [ -123.074364310999968, 49.106245501000046 ], [ -123.074268893999886, 49.105867991000075 ], [ -123.074099304999962, 49.105559797000133 ], [ -123.073970410999934, 49.105397127000025 ], [ -123.073862929999947, 49.105261479000042 ], [ -123.073769503999955, 49.105143599000066 ], [ -123.073671827999974, 49.105053987000062 ], [ -123.073426215999959, 49.104828640000065 ], [ -123.073333240999887, 49.104743384000095 ], [ -123.073783888999941, 49.104544794000049 ], [ -123.073930041999986, 49.104490150000139 ], [ -123.074003982999912, 49.104462499000093 ], [ -123.074640461999977, 49.104182054000077 ], [ -123.074789693999946, 49.104116307000069 ], [ -123.075159086999946, 49.103946205000092 ], [ -123.075504978999959, 49.103736588000096 ], [ -123.075632812999984, 49.103619396000092 ], [ -123.076180694999934, 49.103114403000063 ], [ -123.076520807999927, 49.102864204000063 ], [ -123.076841379999962, 49.102687295000045 ], [ -123.077605712999954, 49.102332389000019 ], [ -123.077146, 49.101847699000103 ], [ -123.078340083999976, 49.10136676000009 ], [ -123.078943790999972, 49.101123608000144 ], [ -123.079762080999956, 49.101172794000085 ], [ -123.079646186, 49.101981435000027 ], [ -123.079645665000015, 49.101985072000069 ], [ -123.07953440299994, 49.101985148000047 ], [ -123.079534834999976, 49.102255012000164 ], [ -123.079606964999954, 49.102254962000096 ], [ -123.07960643499996, 49.102258660000054 ], [ -123.079556348999972, 49.102608047000039 ], [ -123.079392221999953, 49.103753101000073 ], [ -123.07929225099997, 49.104426777000057 ], [ -123.079090895999954, 49.105783804000083 ], [ -123.079086531999963, 49.105813017000031 ], [ -123.078972696999969, 49.106573215000033 ], [ -123.078719663999919, 49.106573388000072 ], [ -123.078720090999951, 49.106843252000033 ], [ -123.078932281999968, 49.106843107000074 ], [ -123.07887084099994, 49.107253403000108 ], [ -123.078841111999978, 49.107451991000033 ], [ -123.077840704999957, 49.10737790400006 ], [ -123.077591474999977, 49.107393818000077 ], [ -123.076860589, 49.10744049700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145491916", "BldgCostT": "97921666", "sL_LossRatio": "0.72535101836746", "sL_AssetLoss": "2722151", "sL_BldgLoss": "1974515", "sL_StrLoss": "875525", "sL_NStrLoss": "1098990", "sL_ContLoss": "747636", "geom_point": "0101000020E61000002CCB6B80ADC45EC01F1308BFFD8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.072741186999977, 49.104512616000108 ], [ -123.072649246, 49.104461409000066 ], [ -123.072584286999984, 49.104546225000021 ], [ -123.07238040799993, 49.10455170500007 ], [ -123.072172139999964, 49.104479815000111 ], [ -123.072019171999969, 49.104427021000106 ], [ -123.071654313999915, 49.104301100000093 ], [ -123.071076069999947, 49.103740277000014 ], [ -123.069942361999921, 49.102640630000032 ], [ -123.069911288999918, 49.102610502000047 ], [ -123.069845194999957, 49.102558768000051 ], [ -123.069820335999935, 49.102539282000087 ], [ -123.069761769999943, 49.102493416000073 ], [ -123.069720935999911, 49.102461438000056 ], [ -123.069706623999949, 49.102450228000073 ], [ -123.069612974999927, 49.102376893000084 ], [ -123.068848168999978, 49.10177800400001 ], [ -123.068848093999947, 49.1017221520001 ], [ -123.068776901999982, 49.101722194000033 ], [ -123.068156302999952, 49.10123621200006 ], [ -123.067017858999975, 49.100493341000067 ], [ -123.067580556999957, 49.100150183000103 ], [ -123.067842089999942, 49.099986353000055 ], [ -123.068578189999982, 49.099525090000093 ], [ -123.069278785, 49.10001049100002 ], [ -123.069300988999956, 49.100025896000034 ], [ -123.07068534299999, 49.100979035000051 ], [ -123.071480888999972, 49.100345698000062 ], [ -123.071947925999936, 49.099992377000021 ], [ -123.072249915999947, 49.099763900000056 ], [ -123.072636662999926, 49.099988390000135 ], [ -123.07296970599999, 49.100181719000027 ], [ -123.07321286899996, 49.100010643000147 ], [ -123.07400529399996, 49.099453102000091 ], [ -123.074794911999959, 49.099893505000132 ], [ -123.074683791999973, 49.099981262000057 ], [ -123.073754837999942, 49.100714849000042 ], [ -123.074947289999926, 49.101432999000053 ], [ -123.075343816999975, 49.10118070100004 ], [ -123.075820603999944, 49.10078101000007 ], [ -123.07605890399999, 49.100584707000088 ], [ -123.076653194999906, 49.100101798000068 ], [ -123.076746786999976, 49.099989007000033 ], [ -123.076776097000021, 49.099953694000128 ], [ -123.076992318999928, 49.099498305000054 ], [ -123.077208507999956, 49.099281604000062 ], [ -123.07801763599997, 49.099737903000069 ], [ -123.079515899999947, 49.098463189000036 ], [ -123.079709688999941, 49.099073827000055 ], [ -123.079758208000015, 49.099226600000094 ], [ -123.079819021999967, 49.099530169000083 ], [ -123.079162981999971, 49.100159671000029 ], [ -123.079044110999945, 49.100235061000078 ], [ -123.076842458999948, 49.101631668000032 ], [ -123.076272547999949, 49.101935676000025 ], [ -123.075347496999939, 49.102516795000042 ], [ -123.0747412959999, 49.102973237000086 ], [ -123.074109200999928, 49.10338324300011 ], [ -123.07308035199999, 49.104102596000097 ], [ -123.072781823999918, 49.104325602000067 ], [ -123.072709049999929, 49.104387198 ], [ -123.072825665, 49.10445373200011 ], [ -123.073333240999887, 49.104743384000095 ], [ -123.073228038999986, 49.104783778000076 ], [ -123.072986008999933, 49.104648959000038 ], [ -123.072741186999977, 49.104512616000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150466871", "BldgCostT": "98371379", "sL_LossRatio": "0.691016009678962", "sL_AssetLoss": "3554100", "sL_BldgLoss": "2455940", "sL_StrLoss": "1033440", "sL_NStrLoss": "1422500", "sL_ContLoss": "1098160", "geom_point": "0101000020E61000006B558D56DCC45EC0318F78899C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074794911999959, 49.099893505000132 ], [ -123.07400529399996, 49.099453102000091 ], [ -123.07321286899996, 49.100010643000147 ], [ -123.07296970599999, 49.100181719000027 ], [ -123.072636662999926, 49.099988390000135 ], [ -123.072249915999947, 49.099763900000056 ], [ -123.073379994999925, 49.098881111000061 ], [ -123.072709808999932, 49.098479907000076 ], [ -123.073355192999912, 49.097968613000099 ], [ -123.074617368999924, 49.097053290000062 ], [ -123.075353204999928, 49.096496690000031 ], [ -123.075454763, 49.096417265000134 ], [ -123.075947814999964, 49.096031699000036 ], [ -123.07611220699999, 49.095963186000041 ], [ -123.076281912999988, 49.095942605000076 ], [ -123.076481081999944, 49.095975092000032 ], [ -123.077136205999949, 49.096332508000053 ], [ -123.077601865999966, 49.096612800000109 ], [ -123.07792711899999, 49.096773902000045 ], [ -123.078419068999978, 49.0970494580001 ], [ -123.078822198999902, 49.097453297000101 ], [ -123.078925243999947, 49.097603283000076 ], [ -123.079330755999962, 49.098193658000106 ], [ -123.079515899999947, 49.098463189000036 ], [ -123.07801763599997, 49.099737903000069 ], [ -123.077208507999956, 49.099281604000062 ], [ -123.076992318999928, 49.099498305000054 ], [ -123.076776097000021, 49.099953694000128 ], [ -123.076746786999976, 49.099989007000033 ], [ -123.076653194999906, 49.100101798000068 ], [ -123.07605890399999, 49.100584707000088 ], [ -123.075820603999944, 49.10078101000007 ], [ -123.075343816999975, 49.10118070100004 ], [ -123.074947289999926, 49.101432999000053 ], [ -123.073754837999942, 49.100714849000042 ], [ -123.074683791999973, 49.099981262000057 ], [ -123.074794911999959, 49.099893505000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330779500", "BldgCostT": "222910000", "sL_LossRatio": "0.753414410742757", "sL_AssetLoss": "4799364", "sL_BldgLoss": "3615910", "sL_StrLoss": "1624800", "sL_NStrLoss": "1991110", "sL_ContLoss": "1183454", "geom_point": "0101000020E6100000C1DC834AFBC45EC09F222CCF288C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074577215999952, 49.095950313000039 ], [ -123.075881108999951, 49.094912708000045 ], [ -123.077862595999946, 49.093505207000135 ], [ -123.079058402999962, 49.092643527000114 ], [ -123.079238952999972, 49.092513416000052 ], [ -123.0792429299999, 49.09251056300009 ], [ -123.079423479, 49.092380453000011 ], [ -123.080703803999981, 49.09145780800003 ], [ -123.08089188799994, 49.09123139400009 ], [ -123.080976100999962, 49.090978695000025 ], [ -123.080991594999929, 49.090252009000039 ], [ -123.081378714999943, 49.090233700000141 ], [ -123.08140418, 49.090228027000101 ], [ -123.082618507999953, 49.090543890000028 ], [ -123.084237801999933, 49.091919513000029 ], [ -123.083884608999981, 49.092191822000082 ], [ -123.083875243999955, 49.092199071 ], [ -123.083330238999977, 49.092619325000072 ], [ -123.083228624999961, 49.092712072000019 ], [ -123.080749105999956, 49.094950386000065 ], [ -123.079739315999959, 49.095860895000023 ], [ -123.078419068999978, 49.0970494580001 ], [ -123.07792711899999, 49.096773902000045 ], [ -123.077601865999966, 49.096612800000109 ], [ -123.077136205999949, 49.096332508000053 ], [ -123.076481081999944, 49.095975092000032 ], [ -123.076281912999988, 49.095942605000076 ], [ -123.07611220699999, 49.095963186000041 ], [ -123.075947814999964, 49.096031699000036 ], [ -123.075454763, 49.096417265000134 ], [ -123.075353204999928, 49.096496690000031 ], [ -123.074617368999924, 49.097053290000062 ], [ -123.073355192999912, 49.097968613000099 ], [ -123.072709808999932, 49.098479907000076 ], [ -123.073379994999925, 49.098881111000061 ], [ -123.072249915999947, 49.099763900000056 ], [ -123.071947925999936, 49.099992377000021 ], [ -123.071480888999972, 49.100345698000062 ], [ -123.07068534299999, 49.100979035000051 ], [ -123.069300988999956, 49.100025896000034 ], [ -123.069337494999928, 49.099997621000064 ], [ -123.069704014999957, 49.099713397000102 ], [ -123.071668193999983, 49.098191885000055 ], [ -123.072143199999942, 49.097823901000069 ], [ -123.07383638, 49.096520286000072 ], [ -123.074577215999952, 49.095950313000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93973250", "BldgCostT": "60365000", "sL_LossRatio": "0.693522738242213", "sL_AssetLoss": "1968270", "sL_BldgLoss": "1365040", "sL_StrLoss": "598750", "sL_NStrLoss": "766290", "sL_ContLoss": "603230", "geom_point": "0101000020E610000024A377E843C55EC07F5AE2542D8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078419068999978, 49.0970494580001 ], [ -123.079739315999959, 49.095860895000023 ], [ -123.080749105999956, 49.094950386000065 ], [ -123.083228624999961, 49.092712072000019 ], [ -123.083330238999977, 49.092619325000072 ], [ -123.083875243999955, 49.092199071 ], [ -123.083884608999981, 49.092191822000082 ], [ -123.084237801999933, 49.091919513000029 ], [ -123.084936804999941, 49.092384499000048 ], [ -123.085258363999955, 49.092604945000083 ], [ -123.0859735499999, 49.093097359000055 ], [ -123.085668189, 49.093292189000081 ], [ -123.086284945999978, 49.09381903900006 ], [ -123.086212802999967, 49.093882998 ], [ -123.084873485999964, 49.094847191000071 ], [ -123.084104796999895, 49.094738897000056 ], [ -123.083229402999962, 49.095505093000064 ], [ -123.082749898999978, 49.095586292000114 ], [ -123.08235299099999, 49.095811305000076 ], [ -123.08220260899995, 49.095982208000045 ], [ -123.082326716999916, 49.096288394000076 ], [ -123.082303722999924, 49.096322028000095 ], [ -123.082204002999944, 49.096467889000081 ], [ -123.081861579999924, 49.096405194000106 ], [ -123.081162985999981, 49.096863808000066 ], [ -123.08094488699993, 49.097125898000094 ], [ -123.080685992999975, 49.097557413000011 ], [ -123.080658501999935, 49.097953305000047 ], [ -123.080426585999987, 49.098205407000073 ], [ -123.080302597999932, 49.098636993000056 ], [ -123.080341117999936, 49.098811768000054 ], [ -123.080235948999984, 49.09887706100006 ], [ -123.08001720599999, 49.099132056000052 ], [ -123.079886718999944, 49.09925430100008 ], [ -123.079758208000015, 49.099226600000094 ], [ -123.079709688999941, 49.099073827000055 ], [ -123.079515899999947, 49.098463189000036 ], [ -123.079330755999962, 49.098193658000106 ], [ -123.078925243999947, 49.097603283000076 ], [ -123.078822198999902, 49.097453297000101 ], [ -123.078419068999978, 49.0970494580001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "451499491", "BldgCostT": "302229058", "sL_LossRatio": "0.727483378026285", "sL_AssetLoss": "4179257", "sL_BldgLoss": "3040340", "sL_StrLoss": "1513720", "sL_NStrLoss": "1526620", "sL_ContLoss": "1138917", "geom_point": "0101000020E61000007BE3173DFBC45EC05AA4C2D8C28B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075780090999928, 49.094886491000089 ], [ -123.075834700999948, 49.091227212000014 ], [ -123.075847192999944, 49.09022118900004 ], [ -123.076715821, 49.090226902000033 ], [ -123.078426105999966, 49.090238095000153 ], [ -123.080276836999957, 49.090248138000035 ], [ -123.080865730999975, 49.090251305000038 ], [ -123.080991594999929, 49.090252009000039 ], [ -123.080976100999962, 49.090978695000025 ], [ -123.08089188799994, 49.09123139400009 ], [ -123.080703803999981, 49.09145780800003 ], [ -123.079423479, 49.092380453000011 ], [ -123.0792429299999, 49.09251056300009 ], [ -123.079238952999972, 49.092513416000052 ], [ -123.079058402999962, 49.092643527000114 ], [ -123.077862595999946, 49.093505207000135 ], [ -123.075881108999951, 49.094912708000045 ], [ -123.075780090999928, 49.094886491000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262734334", "BldgCostT": "165528334", "sL_LossRatio": "0.685162662267941", "sL_AssetLoss": "10524260", "sL_BldgLoss": "7210830", "sL_StrLoss": "3198740", "sL_NStrLoss": "4012090", "sL_ContLoss": "3313430", "geom_point": "0101000020E61000007B8C2B2ECEC25EC0A12C53FEFB934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061409812999955, 49.177827181000069 ], [ -123.061309236999989, 49.177823715000088 ], [ -123.060309419999939, 49.177797186000085 ], [ -123.060309302999926, 49.177700456000075 ], [ -123.060309129999936, 49.177558135000048 ], [ -123.058662637999987, 49.177558983000061 ], [ -123.05866231899995, 49.177289124 ], [ -123.057427455999957, 49.177289744000085 ], [ -123.057424511999969, 49.174744098000126 ], [ -123.05420159399999, 49.17465598200009 ], [ -123.054256600999963, 49.173787959000066 ], [ -123.049837083999975, 49.173666970000063 ], [ -123.049638343999945, 49.176798261000044 ], [ -123.048615292999955, 49.176770228000045 ], [ -123.04857713200002, 49.177371234000098 ], [ -123.048569907999934, 49.17748499099999 ], [ -123.047542230999952, 49.177457600000025 ], [ -123.047032092999984, 49.177443992000107 ], [ -123.047030196999955, 49.177382906000084 ], [ -123.047028520999959, 49.177327661000099 ], [ -123.047011959, 49.177238896000063 ], [ -123.046993630999907, 49.17714031700006 ], [ -123.046760357000011, 49.175886689000045 ], [ -123.046721791999985, 49.17567959500014 ], [ -123.046722780999986, 49.17558448600002 ], [ -123.04672305299999, 49.175552657 ], [ -123.046700541999911, 49.174439415000116 ], [ -123.046602383999954, 49.169988842000102 ], [ -123.046600930999972, 49.169921368000061 ], [ -123.04642397399995, 49.169921426000052 ], [ -123.045875212999945, 49.169921505000048 ], [ -123.041018808999965, 49.169922100000036 ], [ -123.038288838999947, 49.169922333000038 ], [ -123.03587431699998, 49.169922492000062 ], [ -123.03555877899997, 49.169922490000054 ], [ -123.03549511199995, 49.169922498000062 ], [ -123.024276172999976, 49.169913017000034 ], [ -123.017189534999972, 49.169884779000043 ], [ -123.012789401999967, 49.169866996000053 ], [ -123.01070281199999, 49.169863209000063 ], [ -123.010035775999967, 49.169797478000056 ], [ -123.009874397999951, 49.169781597000053 ], [ -123.009802309999955, 49.16976603400007 ], [ -123.007683598999975, 49.16930899500003 ], [ -123.006978382999975, 49.169211 ], [ -123.006921351999921, 49.169208006000055 ], [ -123.007208514999959, 49.169207987000085 ], [ -123.007208475999946, 49.168938127000075 ], [ -123.008443131, 49.168938044000058 ], [ -123.008443191, 49.1692869500001 ], [ -123.00901997499993, 49.169302974000061 ], [ -123.00906951799999, 49.168532921000121 ], [ -123.010496753999988, 49.168572559000069 ], [ -123.010623563999957, 49.166600454000069 ], [ -123.012806936999965, 49.166661054000016 ], [ -123.016097815999899, 49.166752310000071 ], [ -123.015968248999926, 49.168770999000103 ], [ -123.016366440999931, 49.168782034000046 ], [ -123.016391028999976, 49.168398899000046 ], [ -123.018320194999944, 49.168452341000027 ], [ -123.018320173999939, 49.168397178000113 ], [ -123.018731721999956, 49.1683971120001 ], [ -123.018731620999944, 49.168127251000072 ], [ -123.019554709999923, 49.168127114000114 ], [ -123.019554603999921, 49.16785725400004 ], [ -123.020763073999902, 49.167857043000019 ], [ -123.020869974999968, 49.166188802000114 ], [ -123.022023134999984, 49.166220704000111 ], [ -123.022022903000021, 49.165697925000075 ], [ -123.022434427999954, 49.165697846000086 ], [ -123.022434305999951, 49.165427985000115 ], [ -123.023668873999895, 49.165427738000091 ], [ -123.023668616999927, 49.164888016000077 ], [ -123.024267965999954, 49.164887892000081 ], [ -123.02490317199999, 49.164887757000123 ], [ -123.024903848999941, 49.1662370600001 ], [ -123.02449232, 49.166237148000064 ], [ -123.024492343999924, 49.166288973000107 ], [ -123.026344212, 49.16634013700007 ], [ -123.026297120999971, 49.167076385000044 ], [ -123.027550914999949, 49.16711100800007 ], [ -123.027537813999928, 49.167315905000045 ], [ -123.028196695999938, 49.167315745000096 ], [ -123.028197155999948, 49.168125327000041 ], [ -123.027486051999972, 49.168125499000077 ], [ -123.027464945999967, 49.168455595000076 ], [ -123.027484945999944, 49.1684561470001 ], [ -123.027489184, 49.168389869000059 ], [ -123.027785762999954, 49.168398057000083 ], [ -123.027785761999965, 49.168395288000063 ], [ -123.027991665999977, 49.168395239000041 ], [ -123.027993064999961, 49.168373381000059 ], [ -123.028778006999957, 49.168395045000089 ], [ -123.029004914999973, 49.168394988000088 ], [ -123.029005321999961, 49.168388606000065 ], [ -123.02954482899996, 49.168403491000035 ], [ -123.029545, 49.168400819000041 ], [ -123.030138959999988, 49.168417203000068 ], [ -123.03014097599997, 49.168385633000092 ], [ -123.030588553999976, 49.168397978000023 ], [ -123.030588656999925, 49.168396344000016 ], [ -123.031642920999943, 49.168425415000094 ], [ -123.031644015999959, 49.168408270000086 ], [ -123.034409436999979, 49.168484475000149 ], [ -123.034450633999953, 49.167838637000095 ], [ -123.034831172999958, 49.167849118000063 ], [ -123.034857639999942, 49.167434145000044 ], [ -123.0360160339999, 49.167466041000111 ], [ -123.036015727999981, 49.167043712000059 ], [ -123.035604191999965, 49.167043840000133 ], [ -123.035603996999953, 49.166773978000087 ], [ -123.035192464999952, 49.166774104000076 ], [ -123.035191889999936, 49.165964523000099 ], [ -123.033957309999963, 49.165964892000076 ], [ -123.033958046999899, 49.167044335000121 ], [ -123.032723439999955, 49.167044691000058 ], [ -123.032723261999976, 49.166774830000072 ], [ -123.032311726999922, 49.166774946000039 ], [ -123.032311551999982, 49.166505086 ], [ -123.029430830999928, 49.166505856000065 ], [ -123.029430670999886, 49.16623599600009 ], [ -123.028607612999949, 49.166236202000043 ], [ -123.028607767999986, 49.166506063000092 ], [ -123.027373172999916, 49.166506362000064 ], [ -123.027373024999974, 49.166236501000064 ], [ -123.026549965999905, 49.166236693000101 ], [ -123.026549675999931, 49.165696973000138 ], [ -123.02613815199993, 49.165697066000128 ], [ -123.02613772699999, 49.164887484000062 ], [ -123.026549243999966, 49.164887391000036 ], [ -123.026548522999974, 49.163538086000131 ], [ -123.02613701599995, 49.163538181000021 ], [ -123.026136731999927, 49.162998458000068 ], [ -123.02572522899996, 49.162998551000101 ], [ -123.025725090999941, 49.162728691000041 ], [ -123.024902089999955, 49.16272887100007 ], [ -123.024902495999967, 49.163538453000079 ], [ -123.024265761999914, 49.163538589000041 ], [ -123.02366797399999, 49.163538714000033 ], [ -123.02366758699999, 49.162729130000109 ], [ -123.022844586999923, 49.162729296000087 ], [ -123.022844461999981, 49.162459436000105 ], [ -123.02037547499998, 49.16245989700009 ], [ -123.020375142999939, 49.16165031500001 ], [ -123.019963649999951, 49.161650387000122 ], [ -123.01996343499998, 49.161110666000063 ], [ -123.019551947999958, 49.161110736000076 ], [ -123.019551840999966, 49.160840875000076 ], [ -123.018728870999922, 49.160841011000045 ], [ -123.018728973999956, 49.161110873000055 ], [ -123.01831748699999, 49.161110938000014 ], [ -123.018317686000017, 49.161650660000035 ], [ -123.018729177999973, 49.161650593000061 ], [ -123.018729481999955, 49.162460176000089 ], [ -123.018317983999921, 49.16246024200008 ], [ -123.018318282999971, 49.1632698250001 ], [ -123.017083768999981, 49.16327001300003 ], [ -123.017083396999965, 49.162190571000103 ], [ -123.016260405999944, 49.162190689000084 ], [ -123.016260316999961, 49.16192082900011 ], [ -123.015025835999921, 49.161920997000053 ], [ -123.01502591799999, 49.162190857000077 ], [ -123.014614421999951, 49.162190909000088 ], [ -123.014614499999951, 49.162460770000052 ], [ -123.013791504999958, 49.16246087200004 ], [ -123.013791729999951, 49.163270454000084 ], [ -123.01461473900001, 49.163270353000058 ], [ -123.014614976999951, 49.164079935000068 ], [ -123.013791953999913, 49.164080037000048 ], [ -123.01379210499999, 49.164619759000082 ], [ -123.013380588999965, 49.164619807000093 ], [ -123.01338080699999, 49.165429389000053 ], [ -123.012813671999965, 49.16542945300003 ], [ -123.012146237999985, 49.165429525000071 ], [ -123.012145380999982, 49.161921335000081 ], [ -123.00761895, 49.161921722000059 ], [ -123.007618991999948, 49.162191583000137 ], [ -123.006384504, 49.162191658000104 ], [ -123.006384446999974, 49.161744196000051 ], [ -123.00618762499991, 49.161743549000114 ], [ -123.006170657999945, 49.162007061000089 ], [ -123.00484301399996, 49.161970131000054 ], [ -123.004767864999906, 49.163136692000108 ], [ -123.003915600999946, 49.163112977000054 ], [ -123.003915677999956, 49.164080795000082 ], [ -123.002681142999947, 49.164080830000053 ], [ -123.002681156999984, 49.164350689000088 ], [ -123.001722452, 49.164350709000061 ], [ -123.001035104000024, 49.164350717000048 ], [ -123.001035075999965, 49.163032773000097 ], [ -122.999294075999899, 49.162984259000027 ], [ -122.999345216, 49.162191833000087 ], [ -122.998977577999966, 49.162191830000062 ], [ -122.998977571999944, 49.162461691000033 ], [ -122.997743077999957, 49.162461674000056 ], [ -122.997743040999936, 49.163271256000073 ], [ -122.99568551699997, 49.163271198000082 ], [ -122.995685493999986, 49.163541058000042 ], [ -122.995273985999958, 49.16354104300008 ], [ -122.995273909999938, 49.164350625000075 ], [ -122.995243339999902, 49.164350624000043 ], [ -122.995138695999941, 49.165969783 ], [ -122.99568528399999, 49.165969806000092 ], [ -122.995685213999948, 49.166779387000076 ], [ -122.995086370999971, 49.166779364000021 ], [ -122.995033625999966, 49.167595416000019 ], [ -122.994862060999978, 49.167590628000035 ], [ -122.994862008999945, 49.168090225000078 ], [ -122.996919728999941, 49.168147639000061 ], [ -122.99691974699999, 49.167858869000064 ], [ -122.99733129, 49.167858879000043 ], [ -122.997331305000017, 49.167589019000118 ], [ -122.99815438499995, 49.167589035000084 ], [ -122.998154485999962, 49.164890428 ], [ -122.997742968999916, 49.164890421000045 ], [ -122.997743003999986, 49.164080838000075 ], [ -122.998154515999914, 49.164080847000044 ], [ -122.998154526999954, 49.16381098500009 ], [ -122.999389054999966, 49.163810998000073 ], [ -122.99938905099998, 49.164080858000027 ], [ -122.99980056299999, 49.164080860000084 ], [ -122.99980055899999, 49.164890443000047 ], [ -122.999389040999958, 49.164890442000072 ], [ -122.999389029999975, 49.165700023000049 ], [ -122.99980055599994, 49.165700025000085 ], [ -122.999800554999922, 49.165969885000038 ], [ -123.001035135999985, 49.165969881000152 ], [ -123.001035130999924, 49.165700020000017 ], [ -123.001719644999966, 49.165700013000119 ], [ -123.002269705999979, 49.165700003000055 ], [ -123.002269718999955, 49.165969863000079 ], [ -123.002681244999962, 49.16596985400006 ], [ -123.002681317999972, 49.167319158000083 ], [ -123.002269779999935, 49.167319166000063 ], [ -123.00226981099999, 49.167993128000049 ], [ -123.005247798999932, 49.168076001000017 ], [ -123.005209639999933, 49.168668375000024 ], [ -123.006385336999983, 49.168668315000048 ], [ -123.006385402999953, 49.169179865000103 ], [ -123.006325203999921, 49.16917670300014 ], [ -123.005571430999936, 49.169163535000024 ], [ -123.001860986999986, 49.169098701000046 ], [ -123.001712591999961, 49.169096099000093 ], [ -123.000000010999941, 49.169101519000044 ], [ -122.998751455999979, 49.16910544100007 ], [ -122.998635186999977, 49.1691057990001 ], [ -122.998633201999894, 49.169435484000083 ], [ -122.998637318999982, 49.169541002000088 ], [ -122.998651514999963, 49.169809899000043 ], [ -122.996204103999958, 49.16980920200006 ], [ -122.989724750999969, 49.169811740000085 ], [ -122.988448908999942, 49.169812204000038 ], [ -122.985883096999942, 49.169813073000064 ], [ -122.985887375999965, 49.169747073000025 ], [ -122.983338198999931, 49.169746732000142 ], [ -122.98333822799998, 49.169664232000102 ], [ -122.983338267999926, 49.169543298000058 ], [ -122.983338289999921, 49.169476872000047 ], [ -122.981768341999953, 49.169476635000144 ], [ -122.981776365999977, 49.169428008000082 ], [ -122.981800669, 49.169280579 ], [ -122.98089125199999, 49.167712801000093 ], [ -122.980894352999954, 49.167209962000086 ], [ -122.984730593, 49.165053199000042 ], [ -122.980730397999977, 49.165769331000028 ], [ -122.980891059999962, 49.165456905000035 ], [ -122.982538006999917, 49.165274294000064 ], [ -122.984047902999961, 49.164978091000066 ], [ -122.985542410999969, 49.164537999000082 ], [ -122.987201693999964, 49.163898508000074 ], [ -122.988779789999953, 49.163422807000096 ], [ -122.992319309999985, 49.162649491000046 ], [ -122.99441839899994, 49.162055604000045 ], [ -122.995075692999961, 49.161938795000069 ], [ -122.99512596299995, 49.161921871000089 ], [ -122.995137372999977, 49.161921871000089 ], [ -122.995274140000021, 49.16192187700009 ], [ -122.995274144999939, 49.161871982000044 ], [ -122.995927402999953, 49.161652041000075 ], [ -122.9960971499999, 49.161652047000068 ], [ -122.996097153999955, 49.161594888000039 ], [ -122.996728831999974, 49.161382205000088 ], [ -122.996920148999919, 49.161382211000067 ], [ -122.996920152999962, 49.161317789000066 ], [ -122.997530249999912, 49.161112365000086 ], [ -122.997743139999969, 49.161112369000136 ], [ -122.997743143000022, 49.16104068200007 ], [ -122.99795509199997, 49.160969315 ], [ -122.998176111999953, 49.160894893000041 ], [ -122.998725195999981, 49.160723990000115 ], [ -122.999369192999964, 49.160365114000093 ], [ -123.001439217999973, 49.158241600000103 ], [ -123.00155386899999, 49.158143910000042 ], [ -123.00185789899993, 49.158143906000092 ], [ -123.001857888999922, 49.157884870000096 ], [ -123.003359804999917, 49.156605099000053 ], [ -123.003826779999883, 49.156334498000042 ], [ -123.006952513999963, 49.155219402000107 ], [ -123.007180112999919, 49.1551752250001 ], [ -123.007206476999926, 49.155175223000121 ], [ -123.007206476999926, 49.155170108000121 ], [ -123.00857085899996, 49.154905269000061 ], [ -123.009263616999974, 49.154905216000053 ], [ -123.009263590999979, 49.154770795000061 ], [ -123.009961583999939, 49.154635296000031 ], [ -123.010583661999988, 49.15463524100003 ], [ -123.01094518299999, 49.154679605000084 ], [ -123.011890205999975, 49.154490189000072 ], [ -123.012412316, 49.154309308000073 ], [ -123.012966386999977, 49.154332604000039 ], [ -123.012966395, 49.154365137000056 ], [ -123.013377825999925, 49.154365089000123 ], [ -123.013377764999944, 49.154137394000024 ], [ -123.013810587999942, 49.153869200000074 ], [ -123.013967421999979, 49.153825298000108 ], [ -123.01420053399994, 49.153825268000077 ], [ -123.014200513999924, 49.153760047000105 ], [ -123.014838320999928, 49.15358150100014 ], [ -123.015408612999977, 49.153555253000079 ], [ -123.016099991999965, 49.153555159000057 ], [ -123.016718603999934, 49.153598584000093 ], [ -123.016801128999987, 49.15355505900007 ], [ -123.017491850999932, 49.153554955000111 ], [ -123.017491760999974, 49.153298697000047 ], [ -123.017575854999976, 49.15328508100005 ], [ -123.018314600999958, 49.153284967000026 ], [ -123.018314556999911, 49.153165475000016 ], [ -123.018418813999929, 49.153148594000136 ], [ -123.018967096999958, 49.152842397000065 ], [ -123.019267095999965, 49.152771199000036 ], [ -123.02116042099999, 49.15264440500011 ], [ -123.022600706999981, 49.152248505000045 ], [ -123.02475328599995, 49.152185797000087 ], [ -123.025686307999948, 49.15201348500004 ], [ -123.028812994999953, 49.151221588000055 ], [ -123.029031209, 49.151069190000094 ], [ -123.029058816999964, 49.150888406000043 ], [ -123.02913782199991, 49.15085399200008 ], [ -123.029361416999933, 49.150853935000065 ], [ -123.029813596999972, 49.151113391000067 ], [ -123.030129377, 49.15111339400007 ], [ -123.033090705999925, 49.150583064000095 ], [ -123.033123994999983, 49.150583055000041 ], [ -123.03312399099994, 49.150577103000089 ], [ -123.034358036999919, 49.150356075000076 ], [ -123.034360433999964, 49.153821029000042 ], [ -123.035183287, 49.153820781000064 ], [ -123.035182904999957, 49.153281059000022 ], [ -123.036417170999982, 49.153280676000108 ], [ -123.036416973999962, 49.153010815000087 ], [ -123.03723981199991, 49.153010552000083 ], [ -123.037239609999958, 49.152740691000048 ], [ -123.038062445999941, 49.152740423000125 ], [ -123.038062238999885, 49.152470561000023 ], [ -123.038885069999964, 49.152470288000067 ], [ -123.03888485799996, 49.152200427000032 ], [ -123.03970768399995, 49.152200146000055 ], [ -123.03970746899995, 49.151930286000074 ], [ -123.040118878999962, 49.151930143000051 ], [ -123.040118660999937, 49.151660282000059 ], [ -123.039295843999952, 49.151660565000064 ], [ -123.039295203, 49.150850980000051 ], [ -123.039706605999953, 49.150850839000093 ], [ -123.039706173999946, 49.150311118000019 ], [ -123.03847198199999, 49.150311534000146 ], [ -123.038472190999968, 49.150581396000057 ], [ -123.037649390999931, 49.150581668000015 ], [ -123.03764959599999, 49.150851529000136 ], [ -123.035592585999936, 49.150852181000083 ], [ -123.035592392999931, 49.150582320000048 ], [ -123.03476959399994, 49.150582571000022 ], [ -123.034769366999967, 49.150258870000073 ], [ -123.038410992999943, 49.14928471100005 ], [ -123.039278467999978, 49.148961956000093 ], [ -123.03929370899999, 49.148961951000025 ], [ -123.039293703999959, 49.148956287000019 ], [ -123.040004427999961, 49.148691846000077 ], [ -123.041350415999943, 49.148691371000069 ], [ -123.041350009, 49.14820180300007 ], [ -123.041515176999923, 49.148151590000076 ], [ -123.041761347000019, 49.148151500000054 ], [ -123.041761283999946, 49.148076768000067 ], [ -123.042468010999954, 49.147861902000095 ], [ -123.043784503999959, 49.147222491000036 ], [ -123.046236996999966, 49.146322312000031 ], [ -123.046537593999957, 49.145882300000082 ], [ -123.046757789999944, 49.145855211 ], [ -123.047033125999945, 49.145917905 ], [ -123.047156302999923, 49.145809602000014 ], [ -123.047442807999957, 49.145799709000066 ], [ -123.04797701699998, 49.145574600000039 ], [ -123.049704906999949, 49.144665994000064 ], [ -123.050882206999944, 49.143855608000095 ], [ -123.051527798999984, 49.143243213000119 ], [ -123.051901156999975, 49.143020016000079 ], [ -123.052040462999969, 49.143019954000074 ], [ -123.052040375999965, 49.14293678800005 ], [ -123.052747586999942, 49.142513999000073 ], [ -123.053035293999969, 49.142263390000075 ], [ -123.053308498999954, 49.1419657020001 ], [ -123.05334959899993, 49.141677997000144 ], [ -123.053359602999961, 49.141670043000019 ], [ -123.053684352999966, 49.14166989200011 ], [ -123.053684108999946, 49.141444115000105 ], [ -123.054256837999915, 49.141129901000042 ], [ -123.054917734999933, 49.141129589000094 ], [ -123.054917435999954, 49.140859726000038 ], [ -123.05532875499992, 49.140859529000046 ], [ -123.055328188999937, 49.140350538000042 ], [ -123.055513400999956, 49.140211111000049 ], [ -123.056211982999955, 49.139832194000064 ], [ -123.05666489099994, 49.139202712000035 ], [ -123.056705998999988, 49.138914998000061 ], [ -123.057623294999985, 49.138140297000042 ], [ -123.057814278999942, 49.137879599000051 ], [ -123.05846928599999, 49.137349777000097 ], [ -123.058615169999911, 49.137349703000041 ], [ -123.058615030999974, 49.137231884000059 ], [ -123.05911531299995, 49.136827202000063 ], [ -123.060335710999979, 49.135998309000037 ], [ -123.061826313999958, 49.134683699000085 ], [ -123.06289608599999, 49.13392750300001 ], [ -123.063237094, 49.133379087 ], [ -123.063406103999952, 49.13329923900006 ], [ -123.063956730999934, 49.133298935000035 ], [ -123.063956395999966, 49.13303925200006 ], [ -123.063977965999925, 49.133029062000034 ], [ -123.06477889199999, 49.133028614000089 ], [ -123.0647784, 49.132650884000093 ], [ -123.065238509999944, 49.132433492000132 ], [ -123.066115114999889, 49.131937795000091 ], [ -123.066415287999945, 49.131604610000089 ], [ -123.066957002999985, 49.131263481000104 ], [ -123.067244042000013, 49.131271306000045 ], [ -123.067243682999944, 49.131005854000129 ], [ -123.067415303999951, 49.130795601000067 ], [ -123.06805871399996, 49.130327103000127 ], [ -123.068441098999926, 49.129922605000047 ], [ -123.069838619000038, 49.12886870300013 ], [ -123.070523094999928, 49.128112414000043 ], [ -123.07097569699999, 49.127922988000108 ], [ -123.071339248999934, 49.12762750000006 ], [ -123.071351213999961, 49.127627492000144 ], [ -123.071351199, 49.127617785000098 ], [ -123.071906179999985, 49.127166696000117 ], [ -123.072358383999955, 49.126951699000102 ], [ -123.073726786999913, 49.125762508000101 ], [ -123.076234081999985, 49.124439402000043 ], [ -123.076617597999984, 49.124465003000104 ], [ -123.07702819, 49.124833896000098 ], [ -123.076891901999915, 49.125158589000087 ], [ -123.076988017999909, 49.125275404000035 ], [ -123.077646682999926, 49.125265404000118 ], [ -123.077701294999954, 49.125094512000075 ], [ -123.077550290999923, 49.124860910000102 ], [ -123.076754516, 49.124177305000067 ], [ -123.076823206999975, 49.124069087000052 ], [ -123.077178710999959, 49.124079096000109 ], [ -123.077934943999978, 49.123782754000082 ], [ -123.077944594999963, 49.12379054400008 ], [ -123.078319957999966, 49.124093571000067 ], [ -123.079635246999928, 49.125155312000047 ], [ -123.080784987999948, 49.126083388000069 ], [ -123.082353014999967, 49.127384171000081 ], [ -123.082515697999924, 49.127519117000062 ], [ -123.083313605999933, 49.128181005000044 ], [ -123.085440799, 49.129977416000045 ], [ -123.086058001999973, 49.130532900000112 ], [ -123.086293305999945, 49.130800605000069 ], [ -123.08642918799994, 49.131058297000074 ], [ -123.086554198999963, 49.13144731000007 ], [ -123.086619085999956, 49.131833717000056 ], [ -123.086611494999914, 49.132309457000098 ], [ -123.086604075999944, 49.132776627000034 ], [ -123.086593692999884, 49.133427694000027 ], [ -123.086592888999931, 49.133477202000073 ], [ -123.086509194999977, 49.133478603000093 ], [ -123.086314385999941, 49.133482308000026 ], [ -123.085713685999949, 49.133494001000059 ], [ -123.084462974999937, 49.133514146000067 ], [ -123.084108383999961, 49.13352054500006 ], [ -123.083809564999939, 49.133525949000017 ], [ -123.083484583999947, 49.133531841000078 ], [ -123.080951901999981, 49.133577744000043 ], [ -123.080938207999978, 49.13357799900011 ], [ -123.08081737299996, 49.138972079000048 ], [ -123.080781081999959, 49.140591172000093 ], [ -123.080779666999902, 49.140654123000061 ], [ -123.080777051999974, 49.140771180000051 ], [ -123.080770292999915, 49.141071755000034 ], [ -123.075039912999983, 49.140603691000166 ], [ -123.069426611999958, 49.140871860000104 ], [ -123.069443004, 49.141034292000057 ], [ -123.069375100999963, 49.144852401000058 ], [ -123.069237389999941, 49.14828982100007 ], [ -123.069203142999982, 49.14914450100013 ], [ -123.069104066999941, 49.151618174000077 ], [ -123.068994803999971, 49.154343792000134 ], [ -123.068951614999975, 49.155422202000082 ], [ -123.068853863999891, 49.15767169900009 ], [ -123.068833558999984, 49.158139595000108 ], [ -123.068788990999948, 49.1591649920001 ], [ -123.068683895999953, 49.161583406000091 ], [ -123.068750994, 49.161909598000143 ], [ -123.069159086999932, 49.162677398000028 ], [ -123.069189807999976, 49.163539496000062 ], [ -123.069203905999984, 49.167459162000029 ], [ -123.069207589999934, 49.168475623000127 ], [ -123.069213493999939, 49.17012299000006 ], [ -123.069213109999936, 49.170211898000041 ], [ -123.069212894, 49.170262598000072 ], [ -123.069212813999968, 49.170271778000092 ], [ -123.069211502999934, 49.170501314000028 ], [ -123.069189183999953, 49.17187820400008 ], [ -123.069192881999967, 49.173710705000119 ], [ -123.069189136999981, 49.174385644000083 ], [ -123.06918027799999, 49.175959757000101 ], [ -123.069178199999953, 49.1763364010001 ], [ -123.069215842999938, 49.177370732000107 ], [ -123.069214785999947, 49.177462036000065 ], [ -123.069214367999948, 49.177498030000088 ], [ -123.069209765999986, 49.177902082000053 ], [ -123.069209510999883, 49.178014672000138 ], [ -123.065490385999965, 49.17794520800004 ], [ -123.064049947999948, 49.177918287000125 ], [ -123.063967659999946, 49.177915445000046 ], [ -123.063870191999953, 49.177912088000092 ], [ -123.063747022999976, 49.177907848000075 ], [ -123.063500015999978, 49.177899311000061 ], [ -123.061409812999955, 49.177827181000069 ] ], [ [ -123.061538981999945, 49.173509583000055 ], [ -123.06153729099999, 49.172146113000068 ], [ -123.059848068999912, 49.172100004000058 ], [ -123.059758854999956, 49.173510518000093 ], [ -123.061538981999945, 49.173509583000055 ] ], [ [ -123.049816108999963, 49.172209211000066 ], [ -123.049819187999972, 49.172160695000073 ], [ -123.049113359, 49.172141354000061 ], [ -123.049149801999988, 49.17156723300009 ], [ -123.048728494000031, 49.171555686000076 ], [ -123.048688964999911, 49.172178324000093 ], [ -123.049816108999963, 49.172209211000066 ] ], [ [ -123.041365919999976, 49.167311779000137 ], [ -123.041365694999911, 49.167041919000056 ], [ -123.042188767999946, 49.167041621000052 ], [ -123.042188182999965, 49.166354342000083 ], [ -123.04000448, 49.166294328000021 ], [ -123.040008396999923, 49.166232815000079 ], [ -123.039307375999925, 49.166233055000063 ], [ -123.039308015999907, 49.167042638000055 ], [ -123.040131087999953, 49.167042354000081 ], [ -123.040131304999989, 49.167312215000081 ], [ -123.041365919999976, 49.167311779000137 ] ], [ [ -123.050300637999925, 49.163306096000049 ], [ -123.050072402999945, 49.166903479000048 ], [ -123.050070409999989, 49.166903425000051 ], [ -123.050049297000015, 49.167236172000088 ], [ -123.050419697999985, 49.167246320000054 ], [ -123.050417841999945, 49.165419157000024 ], [ -123.051652410999978, 49.165418612000082 ], [ -123.051652689999969, 49.165688472000056 ], [ -123.052064214999973, 49.165688288000062 ], [ -123.052064780999928, 49.166228008000132 ], [ -123.053299368999916, 49.166227445000096 ], [ -123.053300236999945, 49.167037028000081 ], [ -123.052065629999916, 49.167037590000092 ], [ -123.052065896999963, 49.167291406000075 ], [ -123.052170013999927, 49.167294256000083 ], [ -123.052152495999934, 49.167570546000043 ], [ -123.05453550299994, 49.16763576400011 ], [ -123.05453454900001, 49.166766589000105 ], [ -123.05494608199993, 49.166766395000067 ], [ -123.054945783999983, 49.166496534000018 ], [ -123.055357315999956, 49.166496338000101 ], [ -123.055356713999956, 49.165956617000049 ], [ -123.057414347, 49.165955612000054 ], [ -123.057414659999964, 49.166225473000075 ], [ -123.057826188999968, 49.166225267000087 ], [ -123.057827130999939, 49.167034848000121 ], [ -123.058238667999944, 49.167034643000108 ], [ -123.058239378999971, 49.167640857000066 ], [ -123.059100814999951, 49.167664390000084 ], [ -123.059100951999966, 49.167662236000098 ], [ -123.064575485999981, 49.167811630000067 ], [ -123.064570454999938, 49.167891306000087 ], [ -123.065088385999928, 49.167905425000114 ], [ -123.065090798999947, 49.16786718300007 ], [ -123.06584558899999, 49.167887755000024 ], [ -123.065851354999936, 49.167796391000095 ], [ -123.065848344999907, 49.167796308000142 ], [ -123.065877517999979, 49.167334074000074 ], [ -123.065864173999969, 49.16733371 ], [ -123.065917370999983, 49.166490792000062 ], [ -123.064822534999976, 49.166491412000042 ], [ -123.064820773999926, 49.165142110000033 ], [ -123.065746840999935, 49.165141586000118 ], [ -123.065762144999951, 49.164899058000046 ], [ -123.06560991500001, 49.16489490900004 ], [ -123.065625059999945, 49.164654956000064 ], [ -123.065201114999937, 49.164643400000088 ], [ -123.065220751999945, 49.164332303000059 ], [ -123.064408202999928, 49.164332758000057 ], [ -123.06440645499994, 49.162983455000187 ], [ -123.063994951999931, 49.162983684000075 ], [ -123.063994884999971, 49.162931827000079 ], [ -123.063952473999933, 49.162930671000069 ], [ -123.063966165999958, 49.162713839000084 ], [ -123.06358310399996, 49.162714051000059 ], [ -123.063582758999956, 49.162444191000105 ], [ -123.062759761999985, 49.162444640000103 ], [ -123.062760103999963, 49.162714502000078 ], [ -123.061114103999941, 49.162715383000034 ], [ -123.061113770999896, 49.162445523000038 ], [ -123.059879278999972, 49.162446170000116 ], [ -123.059878953999956, 49.162176310000056 ], [ -123.059467457999958, 49.16217652200006 ], [ -123.059467134999949, 49.16190666200005 ], [ -123.058644146999882, 49.161907082000091 ], [ -123.058645104999954, 49.162716665000055 ], [ -123.057822103999939, 49.16271707900006 ], [ -123.057822731999977, 49.163256801000109 ], [ -123.056999723999937, 49.16325721000009 ], [ -123.057000342999942, 49.163796930000039 ], [ -123.057411851999959, 49.163796727000125 ], [ -123.05741372300001, 49.165415891000073 ], [ -123.057002200999975, 49.165416095000047 ], [ -123.057002510999951, 49.16568595500005 ], [ -123.055356411999952, 49.165686757000131 ], [ -123.055355810999956, 49.165147035000039 ], [ -123.054944290999956, 49.165147231000141 ], [ -123.05494369299997, 49.164607510000032 ], [ -123.054532177999988, 49.164607705000101 ], [ -123.054531585999882, 49.164067984000013 ], [ -123.054120073999968, 49.164068178000029 ], [ -123.054119191999945, 49.163258596000077 ], [ -123.053707687999989, 49.16325878800005 ], [ -123.053706811, 49.162449206000069 ], [ -123.052472317999957, 49.162449774000017 ], [ -123.052472602999941, 49.162719634000041 ], [ -123.051238102999932, 49.162720188 ], [ -123.05123866, 49.163259910000136 ], [ -123.050004146, 49.163260451000063 ], [ -123.050004183999945, 49.163297973000049 ], [ -123.050300637999925, 49.163306096000049 ] ], [ [ -123.040094300999954, 49.164883482000079 ], [ -123.040231734999963, 49.162724548000028 ], [ -123.037658596999947, 49.162725416000065 ], [ -123.037658800999935, 49.16299527700005 ], [ -123.036835796999938, 49.162995542000054 ], [ -123.036835995999965, 49.163265402000064 ], [ -123.036424492999956, 49.163265534000068 ], [ -123.036425086999913, 49.164075115000102 ], [ -123.037248107999972, 49.164074853000102 ], [ -123.037248513999941, 49.164614575000044 ], [ -123.038071545999955, 49.164614306000047 ], [ -123.038071958999964, 49.165154027000092 ], [ -123.039306520999929, 49.165153614000069 ], [ -123.039306306999976, 49.164883753000041 ], [ -123.040094300999954, 49.164883482000079 ] ], [ [ -123.033544504999924, 49.164075988000029 ], [ -123.033544322999987, 49.163806127000029 ], [ -123.033955832999965, 49.163806006000101 ], [ -123.033955647999974, 49.163536147000059 ], [ -123.034367155999917, 49.163536024000024 ], [ -123.034366594999966, 49.162726442000043 ], [ -123.033543594999927, 49.162726684000035 ], [ -123.033543411999972, 49.162456823000106 ], [ -123.032308918999931, 49.162457176000011 ], [ -123.032309093999942, 49.162727037000117 ], [ -123.030251592999917, 49.162727593000113 ], [ -123.03025192199999, 49.163267315000063 ], [ -123.029840416999917, 49.163267422000068 ], [ -123.02984057899999, 49.163537284000036 ], [ -123.029017564999961, 49.163537493000042 ], [ -123.029017722999981, 49.163807354000085 ], [ -123.02942923099998, 49.163807249000087 ], [ -123.02942939199994, 49.164077110000051 ], [ -123.033544504999924, 49.164075988000029 ] ], [ [ -123.040538437999984, 49.161914858000081 ], [ -123.040539084000031, 49.162705364000047 ], [ -123.042185121999964, 49.162750600000095 ], [ -123.04218464099992, 49.162184129000082 ], [ -123.042596135999972, 49.162183977000026 ], [ -123.04259590499997, 49.161914117000066 ], [ -123.04424188, 49.161913498000047 ], [ -123.04424139799994, 49.161373777000023 ], [ -123.04465288699997, 49.16137361799999 ], [ -123.04465216, 49.160564036000075 ], [ -123.044240676999948, 49.160564194000102 ], [ -123.044239715999979, 49.159484750000033 ], [ -123.043828241999933, 49.159484908000138 ], [ -123.043827290999985, 49.158405464000097 ], [ -123.042592896999935, 49.158405926000022 ], [ -123.042593126999989, 49.158675787000021 ], [ -123.042181660999972, 49.15867593800003 ], [ -123.04218189, 49.158945799000037 ], [ -123.041770420999981, 49.158945948000095 ], [ -123.041770875999958, 49.159485670000088 ], [ -123.040124981999966, 49.159486253000111 ], [ -123.040125417999889, 49.160025975000039 ], [ -123.039302462999956, 49.160026258000052 ], [ -123.039303957999934, 49.161915285000049 ], [ -123.040538437999984, 49.161914858000081 ] ], [ [ -123.046294314999955, 49.156515473000127 ], [ -123.046296327000022, 49.158674362000014 ], [ -123.046707793999943, 49.158674196000071 ], [ -123.04670906299999, 49.160023500000058 ], [ -123.046297585000033, 49.160023666000036 ], [ -123.046298087999944, 49.160563387000096 ], [ -123.045886605999954, 49.160563552000063 ], [ -123.045887104999963, 49.16110327300003 ], [ -123.046298591999971, 49.161103109000038 ], [ -123.046298844999967, 49.161372970000087 ], [ -123.046710331999961, 49.161372805000028 ], [ -123.046710586999936, 49.161642666000049 ], [ -123.049179531999926, 49.16164164000002 ], [ -123.0491798, 49.161911501000134 ], [ -123.049591293999981, 49.161911325000048 ], [ -123.049591024999984, 49.16164146400007 ], [ -123.050414007999976, 49.161641108000019 ], [ -123.050412910999967, 49.160561665000102 ], [ -123.050824391999939, 49.160561485000109 ], [ -123.050823840999925, 49.160021762000099 ], [ -123.052058273999947, 49.160021213000043 ], [ -123.052059122999964, 49.160830795000066 ], [ -123.052470606999975, 49.16083060900008 ], [ -123.052470891999945, 49.161100470000051 ], [ -123.053705351999952, 49.161099902000082 ], [ -123.053705060999903, 49.160830042000043 ], [ -123.054116544999928, 49.16082984900001 ], [ -123.054116250999954, 49.160559988000088 ], [ -123.056173660999931, 49.160559005000074 ], [ -123.056173355999974, 49.160289145 ], [ -123.056584836999974, 49.160288944000065 ], [ -123.056583606999979, 49.159209501000113 ], [ -123.056172135999986, 49.159209701000115 ], [ -123.056171219999939, 49.158400119000092 ], [ -123.056582683999935, 49.15839991800005 ], [ -123.056582068999916, 49.15786019600008 ], [ -123.055759150999947, 49.157860597000052 ], [ -123.055758846999979, 49.157590735000092 ], [ -123.054524472999958, 49.157591325000084 ], [ -123.054524770999976, 49.157861186000041 ], [ -123.05411331000002, 49.157861380000085 ], [ -123.054113603999937, 49.158131240000039 ], [ -123.053290679999961, 49.15813162400007 ], [ -123.053290968999931, 49.158401484000166 ], [ -123.051645112999964, 49.158402232000057 ], [ -123.051644832999941, 49.158132371000079 ], [ -123.051233368999988, 49.158132554000112 ], [ -123.051233090999943, 49.157862693000069 ], [ -123.050821632999885, 49.157862876000138 ], [ -123.05082108, 49.157323153000078 ], [ -123.049586712999954, 49.157323690000069 ], [ -123.049586982999941, 49.157593551000026 ], [ -123.047529693999962, 49.157594416000087 ], [ -123.04752943699998, 49.157324555000109 ], [ -123.047117980999928, 49.157324723000102 ], [ -123.047116701, 49.155975418000033 ], [ -123.046705257, 49.155975586000096 ], [ -123.046705763999952, 49.156515308000117 ], [ -123.046294314999955, 49.156515473000127 ] ], [ [ -123.057813308999954, 49.155160975000058 ], [ -123.05781770599998, 49.158939029000045 ], [ -123.062343859999956, 49.158936673000014 ], [ -123.062343521999964, 49.158666813000053 ], [ -123.063577922, 49.15866613900009 ], [ -123.06357826699994, 49.158936 ], [ -123.064401203999964, 49.158935544 ], [ -123.064400854999946, 49.158665684000063 ], [ -123.065223786999979, 49.158665221000057 ], [ -123.065222723999938, 49.157855639000047 ], [ -123.064811264999975, 49.157855871000088 ], [ -123.064810208999958, 49.157046288000089 ], [ -123.065655072999917, 49.157045811000089 ], [ -123.06566002699995, 49.156967305000144 ], [ -123.065635300999958, 49.156966632000042 ], [ -123.065834636999938, 49.153807374000095 ], [ -123.065628835999988, 49.153807491000066 ], [ -123.065629548999965, 49.154347213000136 ], [ -123.062338104, 49.154349037000074 ], [ -123.062338441999941, 49.154618898000095 ], [ -123.061104143999955, 49.154619558000029 ], [ -123.061103810999981, 49.154349697000058 ], [ -123.060280951, 49.154350129000065 ], [ -123.060279967999975, 49.153540547000041 ], [ -123.059868543999954, 49.153540760000048 ], [ -123.059867567999959, 49.15273117600001 ], [ -123.061513236999986, 49.152730312000124 ], [ -123.061513570999949, 49.153000173000045 ], [ -123.062336409999943, 49.152999732000076 ], [ -123.062337088999939, 49.153539454000089 ], [ -123.062748510999981, 49.153539231000103 ], [ -123.062747147999957, 49.152459786000108 ], [ -123.061512903999983, 49.152460450000014 ], [ -123.061512568999945, 49.152190589000099 ], [ -123.061101155999935, 49.152190807000075 ], [ -123.061100492, 49.151651085000054 ], [ -123.059043450999965, 49.151652156000075 ], [ -123.059044092999969, 49.152191878000032 ], [ -123.057809853999942, 49.152192502000027 ], [ -123.057810795999984, 49.153002085000061 ], [ -123.057399376999953, 49.153002291000078 ], [ -123.057399687999933, 49.153272152000042 ], [ -123.057811109999946, 49.153271948000032 ], [ -123.057811737999927, 49.15381166900012 ], [ -123.058634590999958, 49.153811254000075 ], [ -123.058635226999982, 49.154350977000078 ], [ -123.059046657999886, 49.154350767000032 ], [ -123.059047620999976, 49.155160350000095 ], [ -123.057813308999954, 49.155160975000058 ] ], [ [ -123.041764294999922, 49.151659699000028 ], [ -123.041764067999964, 49.151389836000128 ], [ -123.040529848999981, 49.151390277000068 ], [ -123.040530069999974, 49.151660138000118 ], [ -123.041764294999922, 49.151659699000028 ], [ -123.041765202999912, 49.152739143000119 ], [ -123.040942368999978, 49.152739437000015 ], [ -123.040942590999919, 49.153009299000175 ], [ -123.040119750999949, 49.153009588000039 ], [ -123.040120186999943, 49.153549310000052 ], [ -123.039708762999979, 49.153549453000032 ], [ -123.039708977999979, 49.153819314000067 ], [ -123.040120403999978, 49.153819172000091 ], [ -123.040120186999943, 49.153549310000052 ], [ -123.04135446, 49.153548875000077 ], [ -123.04135558199998, 49.154898180000018 ], [ -123.041767018999948, 49.154898033000038 ], [ -123.041767243999942, 49.155167894000023 ], [ -123.043001557999915, 49.155167440000064 ], [ -123.043001323999988, 49.154897579000107 ], [ -123.043824194999942, 49.154897270000113 ], [ -123.043823479999929, 49.154087687000064 ], [ -123.045057765999985, 49.154087211000032 ], [ -123.045057519999901, 49.15381735100005 ], [ -123.045468946999904, 49.153817189000087 ], [ -123.045467711999962, 49.152467883000014 ], [ -123.045056297999906, 49.152468045000056 ], [ -123.045055564000023, 49.151658460000128 ], [ -123.045466972000014, 49.151658299000047 ], [ -123.04546623200001, 49.150848715000066 ], [ -123.044232023999925, 49.150849195000013 ], [ -123.044232266999984, 49.151119056 ], [ -123.043820861999961, 49.151119213000058 ], [ -123.04382110099999, 49.151389075000054 ], [ -123.042998287999964, 49.151389383000065 ], [ -123.042998519999955, 49.151659245000097 ], [ -123.041764294999922, 49.151659699000028 ] ], [ [ -123.053289521999943, 49.157052180000051 ], [ -123.053289232999958, 49.15678231800009 ], [ -123.052054878999911, 49.156782881000055 ], [ -123.05205459699999, 49.156513021000073 ], [ -123.051231699999946, 49.156513388000079 ], [ -123.051232255999963, 49.157053110000099 ], [ -123.053289521999943, 49.157052180000051 ] ], [ [ -123.045888600999959, 49.162722438000081 ], [ -123.045888680999965, 49.162808080000104 ], [ -123.047534726999942, 49.162853235000021 ], [ -123.047534602, 49.162721772000104 ], [ -123.045888600999959, 49.162722438000081 ] ], [ [ -123.044242635999964, 49.162762899000015 ], [ -123.044242600999937, 49.162723081000081 ], [ -123.0434196, 49.162723393000057 ], [ -123.043419652999901, 49.162784512000087 ], [ -123.043432853999917, 49.162784874000046 ], [ -123.04343565899994, 49.16274074100005 ], [ -123.044242635999964, 49.162762899000015 ] ], [ [ -123.065865340999949, 49.145751121000096 ], [ -123.065871495999914, 49.145653557000095 ], [ -123.06583150099999, 49.145652467000048 ], [ -123.06591189199996, 49.144378007000029 ], [ -123.065899582999975, 49.14437767200009 ], [ -123.065943397999931, 49.143683023000079 ], [ -123.065868222999981, 49.143680973000052 ], [ -123.065964075999915, 49.142161274000102 ], [ -123.065956919999962, 49.142161079000097 ], [ -123.066022342999972, 49.141123773000047 ], [ -123.065888580999939, 49.14112385000012 ], [ -123.065884890999968, 49.141182368000059 ], [ -123.064783445999979, 49.141152329000114 ], [ -123.064712803999967, 49.142271893000036 ], [ -123.064228646999965, 49.142258685000058 ], [ -123.06417523, 49.143105103000075 ], [ -123.058703603, 49.142955685000118 ], [ -123.058819181999979, 49.141127666000052 ], [ -123.05738566199993, 49.141128388000027 ], [ -123.057386595999915, 49.14193797300009 ], [ -123.058209251999969, 49.141937561000077 ], [ -123.05821051599996, 49.143017008000101 ], [ -123.05862185399999, 49.143016800000076 ], [ -123.058625037999931, 49.145715416000016 ], [ -123.058213676999983, 49.145715624000054 ], [ -123.058214309999926, 49.146255346000096 ], [ -123.058625673999927, 49.146255139000104 ], [ -123.058626627999956, 49.147064723000014 ], [ -123.057803887999967, 49.14706513699999 ], [ -123.057805143999971, 49.148144583000096 ], [ -123.057393763999968, 49.148144789000085 ], [ -123.057394388999953, 49.148684511000098 ], [ -123.05821715499998, 49.148684099000057 ], [ -123.058217471999939, 49.148953961000103 ], [ -123.058628858999938, 49.148953752000111 ], [ -123.05862917599994, 49.149223613000125 ], [ -123.059040564999918, 49.149223404000089 ], [ -123.059040884999945, 49.149493266000093 ], [ -123.062743398999928, 49.149491313000098 ], [ -123.062742036999964, 49.148411867000078 ], [ -123.062330655999943, 49.148412090000114 ], [ -123.062329638999955, 49.147602506000034 ], [ -123.06438651299996, 49.147601377000079 ], [ -123.064387562999983, 49.148410962000078 ], [ -123.063976181999962, 49.148411190000061 ], [ -123.06397687499998, 49.148950913000093 ], [ -123.064388260999976, 49.148950684000063 ], [ -123.064388611999917, 49.149220546000087 ], [ -123.064799998999902, 49.149220316000054 ], [ -123.064800703999978, 49.149760038000061 ], [ -123.065057410999927, 49.149759894000105 ], [ -123.065127980999947, 49.148641529000059 ], [ -123.065638623999973, 49.148655453000067 ], [ -123.065821915999919, 49.145749937000062 ], [ -123.065865340999949, 49.145751121000096 ] ], [ [ -123.047520917999961, 49.14841913500004 ], [ -123.047932299, 49.148418965000097 ], [ -123.04793203899996, 49.148149103000058 ], [ -123.049166176999947, 49.148148585000108 ], [ -123.049166443999979, 49.148418446000036 ], [ -123.049577825999904, 49.148418271000018 ], [ -123.049577287999981, 49.147878547000104 ], [ -123.050811418999942, 49.147878011000039 ], [ -123.050811694999979, 49.148147872000067 ], [ -123.052457210999961, 49.14814713600002 ], [ -123.052456641999967, 49.147607413000031 ], [ -123.052868016999966, 49.147607226000069 ], [ -123.052867729999932, 49.147337364000094 ], [ -123.053279102999909, 49.14733717600005 ], [ -123.053277944999977, 49.146257730000045 ], [ -123.052043853999962, 49.14625829200002 ], [ -123.052043288999968, 49.145718570000049 ], [ -123.05080921199999, 49.145719119000013 ], [ -123.050810589999941, 49.14706842600004 ], [ -123.04875373699997, 49.147069314000127 ], [ -123.048753473999938, 49.146799452000039 ], [ -123.047519367999882, 49.146799967000028 ], [ -123.047520917999961, 49.14841913500004 ] ], [ [ -123.077115362999962, 49.132277827000102 ], [ -123.077114840999926, 49.131941585000021 ], [ -123.076292351999953, 49.13194213200007 ], [ -123.076289037999928, 49.129783235000026 ], [ -123.075877810999899, 49.129783506000123 ], [ -123.075876576000013, 49.128973919000039 ], [ -123.075054134999959, 49.128974457000034 ], [ -123.075052911999961, 49.128164871000102 ], [ -123.07628655399995, 49.128164062000103 ], [ -123.076287795999946, 49.128973649000059 ], [ -123.077110238000017, 49.128973102000018 ], [ -123.077110655999959, 49.129242964000113 ], [ -123.077610924999973, 49.129242629000075 ], [ -123.077780401999959, 49.126543890000114 ], [ -123.075461668999949, 49.126545429000025 ], [ -123.075462079999951, 49.126815291000113 ], [ -123.074639672999979, 49.126815825000037 ], [ -123.074640077999931, 49.127085687000054 ], [ -123.073817667999919, 49.127086216000109 ], [ -123.073818068999927, 49.127356079000059 ], [ -123.073406860999981, 49.12735634200002 ], [ -123.073408455999953, 49.128435791000058 ], [ -123.07299723899996, 49.128436051000016 ], [ -123.073001992999977, 49.13167439700004 ], [ -123.072590750999922, 49.131674656000065 ], [ -123.072591841999937, 49.132421707000034 ], [ -123.072900018, 49.132430092000128 ], [ -123.072913292999942, 49.132219071000087 ], [ -123.073366312999937, 49.132231396000115 ], [ -123.073367174999959, 49.132217682000018 ], [ -123.07407159, 49.132236842000104 ], [ -123.074072146999967, 49.132227999000101 ], [ -123.075082140999911, 49.132255464000103 ], [ -123.075084204999939, 49.132222624000107 ], [ -123.077115362999962, 49.132277827000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.717428087986464", "sL_AssetLoss": "29550", "sL_BldgLoss": "21200", "sL_StrLoss": "8100", "sL_NStrLoss": "13100", "sL_ContLoss": "8350", "geom_point": "0101000020E6100000B65284AB6EBF5EC08364098480944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.994040055999974, 49.158614725000064 ], [ -122.994554785999938, 49.158537802000069 ], [ -122.994751432999948, 49.158547289000076 ], [ -122.994938306999984, 49.158556304000044 ], [ -122.995102595999953, 49.158619 ], [ -122.995118195999964, 49.158925192 ], [ -122.994926030999949, 49.159223253000029 ], [ -122.994451455, 49.159223231000091 ], [ -122.994451402999971, 49.159683601000147 ], [ -122.994050792999985, 49.160032794000116 ], [ -122.994039885999911, 49.160032794000116 ], [ -122.994039884999921, 49.160042302000129 ], [ -122.993741209999925, 49.160302638000054 ], [ -122.99362837299999, 49.160302633000057 ], [ -122.993628360999963, 49.160401 ], [ -122.993575621999952, 49.16044697000013 ], [ -122.993525805999965, 49.160490390000113 ], [ -122.99335956299997, 49.160572479000137 ], [ -122.993216855999961, 49.160572470000098 ], [ -122.993216846999985, 49.160642949000078 ], [ -122.99281310899994, 49.160842307000038 ], [ -122.99239385099996, 49.160842279000072 ], [ -122.992393831999962, 49.160962766000125 ], [ -122.991650458999942, 49.161112090000124 ], [ -122.990747860999974, 49.161112021000115 ], [ -122.99074782699995, 49.161293397000065 ], [ -122.990307468999958, 49.161381845000101 ], [ -122.988278876999985, 49.161381657000099 ], [ -122.988278812, 49.161651518000021 ], [ -122.987044338999951, 49.161651386000138 ], [ -122.987044564999962, 49.160780984000027 ], [ -122.987390039999966, 49.160571982000079 ], [ -122.987867584999947, 49.160572032000047 ], [ -122.987867649999956, 49.160302171000083 ], [ -122.988690611000024, 49.160302254000044 ], [ -122.988690677999926, 49.160002557000062 ], [ -122.99000019599994, 49.159527610000097 ], [ -122.99013298899996, 49.159492805000049 ], [ -122.990748163999953, 49.159492855000018 ], [ -122.990748192999945, 49.159331556000026 ], [ -122.992191497999954, 49.158953239000063 ], [ -122.992394139999959, 49.158953253000064 ], [ -122.992394147999946, 49.158900119000052 ], [ -122.992744097999932, 49.158808387000121 ], [ -122.99358007499994, 49.158683465000095 ], [ -122.99404004899999, 49.158683489000119 ], [ -122.994040055999974, 49.158614725000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152759917", "BldgCostT": "94461667", "sL_LossRatio": "0.632292754661488", "sL_AssetLoss": "3978075", "sL_BldgLoss": "2515308", "sL_StrLoss": "1146388", "sL_NStrLoss": "1368920", "sL_ContLoss": "1462767", "geom_point": "0101000020E61000005A18CF5E05C55EC0A16D80C2EE934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.074379943999972, 49.170568347000028 ], [ -123.074379178999905, 49.170303998000129 ], [ -123.072716705999966, 49.170294886000093 ], [ -123.069226649999933, 49.170262735000023 ], [ -123.069212894, 49.170262598000072 ], [ -123.069213109999936, 49.170211898000041 ], [ -123.069213493999939, 49.17012299000006 ], [ -123.069207589999934, 49.168475623000127 ], [ -123.069203905999984, 49.167459162000029 ], [ -123.069189807999976, 49.163539496000062 ], [ -123.069159086999932, 49.162677398000028 ], [ -123.068750994, 49.161909598000143 ], [ -123.068683895999953, 49.161583406000091 ], [ -123.068788990999948, 49.1591649920001 ], [ -123.068833558999984, 49.158139595000108 ], [ -123.068853863999891, 49.15767169900009 ], [ -123.068951614999975, 49.155422202000082 ], [ -123.068994803999971, 49.154343792000134 ], [ -123.069104066999941, 49.151618174000077 ], [ -123.069203142999982, 49.14914450100013 ], [ -123.069237389999941, 49.14828982100007 ], [ -123.069375100999963, 49.144852401000058 ], [ -123.069443004, 49.141034292000057 ], [ -123.069426611999958, 49.140871860000104 ], [ -123.075039912999983, 49.140603691000166 ], [ -123.080770292999915, 49.141071755000034 ], [ -123.080777051999974, 49.140771180000051 ], [ -123.080779666999902, 49.140654123000061 ], [ -123.080781081999959, 49.140591172000093 ], [ -123.08081737299996, 49.138972079000048 ], [ -123.080938207999978, 49.13357799900011 ], [ -123.080951901999981, 49.133577744000043 ], [ -123.083484583999947, 49.133531841000078 ], [ -123.083809564999939, 49.133525949000017 ], [ -123.084108383999961, 49.13352054500006 ], [ -123.084462974999937, 49.133514146000067 ], [ -123.085713685999949, 49.133494001000059 ], [ -123.086314385999941, 49.133482308000026 ], [ -123.086509194999977, 49.133478603000093 ], [ -123.086592888999931, 49.133477202000073 ], [ -123.086592656999969, 49.133489845000085 ], [ -123.086575417999967, 49.134390321000112 ], [ -123.086569101999928, 49.136154156000032 ], [ -123.086577420999902, 49.137636366000024 ], [ -123.086593243999985, 49.140450444000074 ], [ -123.086592841999959, 49.140573085000042 ], [ -123.086580888999961, 49.144124914000095 ], [ -123.08656892899991, 49.147687196000135 ], [ -123.086543767999942, 49.155180145000017 ], [ -123.086541776999937, 49.155769092000114 ], [ -123.086541727999972, 49.155778086000041 ], [ -123.086538861999941, 49.156410190000074 ], [ -123.086491800999937, 49.166922597000116 ], [ -123.086491592999963, 49.167114700000091 ], [ -123.086489199999932, 49.169371205000061 ], [ -123.086694287999975, 49.169970397000043 ], [ -123.08681145599995, 49.170205114000062 ], [ -123.086828326999935, 49.170238902000108 ], [ -123.086872355999944, 49.170315496000086 ], [ -123.086898783999942, 49.170361500000126 ], [ -123.086483252999955, 49.170362687000058 ], [ -123.086237790999988, 49.170363417000054 ], [ -123.084031894999981, 49.170354765000127 ], [ -123.083924406999927, 49.17035433200008 ], [ -123.08036161299999, 49.170340312000107 ], [ -123.080352671999933, 49.170744133000042 ], [ -123.080333993999972, 49.171587296000027 ], [ -123.080219390999915, 49.171884207000069 ], [ -123.080215454999944, 49.171922690000024 ], [ -123.080191108999912, 49.172159999000016 ], [ -123.080233213, 49.175199808000073 ], [ -123.080241496999975, 49.17629100199999 ], [ -123.080362383999983, 49.177238113000044 ], [ -123.080373877999989, 49.177328205000094 ], [ -123.080376604999955, 49.1773496080001 ], [ -123.080383567999903, 49.177412810000078 ], [ -123.080396986999943, 49.177508320000086 ], [ -123.080406290999974, 49.177574667000087 ], [ -123.079704040999943, 49.177574337000046 ], [ -123.079560235999978, 49.177574256000064 ], [ -123.07720851000002, 49.177574425000081 ], [ -123.076432231999931, 49.177598400000122 ], [ -123.074698747999932, 49.177703367000113 ], [ -123.074583564999955, 49.177710364000077 ], [ -123.07439910299999, 49.177721600000062 ], [ -123.074395250999942, 49.177608839000108 ], [ -123.074395601999925, 49.17753768700009 ], [ -123.07439503099998, 49.175893583000125 ], [ -123.07439502699998, 49.175869245000044 ], [ -123.074394340999945, 49.175641707000047 ], [ -123.074383548999975, 49.171845688000126 ], [ -123.074380826999942, 49.170867103000084 ], [ -123.074379943999972, 49.170568347000028 ] ], [ [ -123.077830160999923, 49.167562821000089 ], [ -123.077993227999954, 49.16756271000007 ], [ -123.077993234999951, 49.167567247000086 ], [ -123.078103621999944, 49.167570243000092 ], [ -123.078127266, 49.167194041000052 ], [ -123.077249307999963, 49.167170212000016 ], [ -123.077275496999931, 49.1667536120001 ], [ -123.077168889999939, 49.166753682000021 ], [ -123.077168469999933, 49.166483822000068 ], [ -123.076756938999949, 49.166484096000019 ], [ -123.076755687999977, 49.165674515000021 ], [ -123.07716721299991, 49.165674241000019 ], [ -123.077164695999954, 49.16405507800004 ], [ -123.077305121999956, 49.164054984000082 ], [ -123.07737297599999, 49.162975495000083 ], [ -123.075769429000019, 49.162976559000121 ], [ -123.075636729999943, 49.165086461000016 ], [ -123.073101026999964, 49.165017557000041 ], [ -123.072915025999976, 49.167972044000123 ], [ -123.073624146999975, 49.167991319000109 ], [ -123.073624847999923, 49.167980191000026 ], [ -123.074371441999958, 49.168000481000071 ], [ -123.074374819999974, 49.167946809000036 ], [ -123.075733855999914, 49.167983728000088 ], [ -123.075752378999937, 49.167689243000034 ], [ -123.076519780999945, 49.167710082000042 ], [ -123.076531256999914, 49.167527561 ], [ -123.077830160999923, 49.167562821000089 ] ], [ [ -123.083747051999936, 49.16297104900012 ], [ -123.083747504999963, 49.163240909000073 ], [ -123.084159009999908, 49.163240610000088 ], [ -123.08415947, 49.163511689000089 ], [ -123.084938268999906, 49.163532779000057 ], [ -123.084855102999967, 49.16485926600005 ], [ -123.084984788999961, 49.164859170000057 ], [ -123.08498663599994, 49.165938612000026 ], [ -123.085398161999947, 49.165938308000079 ], [ -123.08539677, 49.165128727000123 ], [ -123.085808290999964, 49.165128422000095 ], [ -123.085804559999957, 49.162969538000027 ], [ -123.085393057999937, 49.162969843000099 ], [ -123.085392592999966, 49.162699983000053 ], [ -123.084981094999989, 49.162700286000032 ], [ -123.084980632999944, 49.16243042600005 ], [ -123.082890432999989, 49.162431945000073 ], [ -123.082856569999947, 49.162971691000081 ], [ -123.083747051999936, 49.16297104900012 ] ], [ [ -123.075927275999945, 49.162166872000093 ], [ -123.075926450999987, 49.161627151000083 ], [ -123.076823546999947, 49.161626558000087 ], [ -123.076874444999959, 49.160816941000071 ], [ -123.076748180999971, 49.160817025000057 ], [ -123.076747764999951, 49.160547164000079 ], [ -123.075101836999977, 49.160548246000062 ], [ -123.075101428999957, 49.160278386000066 ], [ -123.074689947999943, 49.160278653000027 ], [ -123.074689136999964, 49.159738931000028 ], [ -123.074277660999911, 49.159739197000114 ], [ -123.074276450999946, 49.158929615000048 ], [ -123.076993194999901, 49.15892783500005 ], [ -123.077039400999951, 49.158192760000105 ], [ -123.072260298999964, 49.158062885000056 ], [ -123.072167677999957, 49.159533962000076 ], [ -123.071998505999929, 49.159529360000121 ], [ -123.07194873899999, 49.160319694000059 ], [ -123.072048649999914, 49.160322412000049 ], [ -123.072000318999969, 49.161089944000054 ], [ -123.073868192999925, 49.161088764000041 ], [ -123.073868706999988, 49.161434827000072 ], [ -123.07586297899995, 49.161489015000093 ], [ -123.075820345999915, 49.162166943000088 ], [ -123.075927275999945, 49.162166872000093 ] ], [ [ -123.083773224999959, 49.158383393000037 ], [ -123.083602526999968, 49.16110517900011 ], [ -123.082341605999929, 49.161071013000011 ], [ -123.082323917999986, 49.161352907000051 ], [ -123.084567296999964, 49.161351286000055 ], [ -123.08456637899999, 49.160811564000063 ], [ -123.084977861999946, 49.160811262000124 ], [ -123.084977399999957, 49.160541401000074 ], [ -123.085388881999933, 49.160541098000053 ], [ -123.085387490999935, 49.159731515000018 ], [ -123.084976014999967, 49.159731819000079 ], [ -123.084975552999964, 49.159461959000062 ], [ -123.084564078999918, 49.15946226100008 ], [ -123.084562243999969, 49.158382819000124 ], [ -123.083773224999959, 49.158383393000037 ] ], [ [ -123.077160942999981, 49.161639181000119 ], [ -123.07716134099999, 49.161896194000029 ], [ -123.077440826999918, 49.161896007000038 ], [ -123.077456464999941, 49.161647204000133 ], [ -123.077160942999981, 49.161639181000119 ] ], [ [ -123.078310306999981, 49.158066774000119 ], [ -123.078326378999932, 49.15781095600007 ], [ -123.078093323999951, 49.15780463000003 ], [ -123.078092520999959, 49.157817423000047 ], [ -123.077362353999945, 49.157797601000013 ], [ -123.077347079999981, 49.158040627000041 ], [ -123.078310306999981, 49.158066774000119 ] ], [ [ -123.076736902999954, 49.153517226000076 ], [ -123.076736089999898, 49.152991060000019 ], [ -123.075090412999941, 49.15299214200008 ], [ -123.075089189999943, 49.152182559000089 ], [ -123.076323426999963, 49.152181750000132 ], [ -123.076323011999946, 49.151911888000122 ], [ -123.07714583299996, 49.151911342000041 ], [ -123.077144650999955, 49.151149385000032 ], [ -123.076914875999961, 49.151143145000084 ], [ -123.077140958999976, 49.147545618000017 ], [ -123.077290915999981, 49.147549690000126 ], [ -123.077308176999978, 49.147274995000011 ], [ -123.07685011099997, 49.147262554000086 ], [ -123.076880175999975, 49.146784151000062 ], [ -123.07631513699999, 49.146784525000037 ], [ -123.076314307999937, 49.146244803000101 ], [ -123.07549158099998, 49.146245343000047 ], [ -123.075489531999935, 49.144896037000059 ], [ -123.076312235000017, 49.144895495000078 ], [ -123.076311819999944, 49.144625634000057 ], [ -123.075489121999979, 49.144626174000045 ], [ -123.075488710999977, 49.144356313000074 ], [ -123.075077363999952, 49.144356581000089 ], [ -123.075076955999961, 49.144086720000068 ], [ -123.074665609999954, 49.144086986000055 ], [ -123.074664393999967, 49.143277402000059 ], [ -123.077270222999985, 49.143275688000081 ], [ -123.077289365999988, 49.142970993000048 ], [ -123.077277688999928, 49.142970676000033 ], [ -123.077341877999984, 49.141949023000087 ], [ -123.075484977999935, 49.141898572000038 ], [ -123.07548502199991, 49.141927559000059 ], [ -123.07507369399994, 49.141927828000114 ], [ -123.075074102999935, 49.142197690000039 ], [ -123.074662772999886, 49.142197956000189 ], [ -123.074663987999912, 49.143007541000046 ], [ -123.073841314999925, 49.143008069000068 ], [ -123.073841715999961, 49.143277931000064 ], [ -123.073600280999955, 49.143278086000073 ], [ -123.073514691999961, 49.14463857200009 ], [ -123.072743132999975, 49.144617587000049 ], [ -123.072741759999985, 49.144639391000098 ], [ -123.072673692999956, 49.144637540000112 ], [ -123.072581537, 49.146101890000068 ], [ -123.072532833999944, 49.146100566000065 ], [ -123.072390364999961, 49.148364167000125 ], [ -123.072541097999959, 49.148368267000137 ], [ -123.072517566999963, 49.148742139000063 ], [ -123.072522322999959, 49.148742269000081 ], [ -123.072471508999939, 49.149549602000015 ], [ -123.072543872000011, 49.149551570000078 ], [ -123.072480081, 49.150565058000062 ], [ -123.073029744999971, 49.150564711000094 ], [ -123.073029348999967, 49.150294850000094 ], [ -123.073852143999915, 49.150294327000069 ], [ -123.073851742000016, 49.150024465000122 ], [ -123.075085926999975, 49.150023670000053 ], [ -123.07508878199999, 49.151912697000064 ], [ -123.07344314, 49.151913757000109 ], [ -123.073442740999937, 49.151643895000085 ], [ -123.073031333999921, 49.151644156000039 ], [ -123.07303093599999, 49.151374294000071 ], [ -123.072480902, 49.151374642000093 ], [ -123.072460044999943, 49.151705987000085 ], [ -123.07258090299996, 49.151709275000059 ], [ -123.072510111999975, 49.152833925000081 ], [ -123.072603970999978, 49.152836477000101 ], [ -123.072571209999936, 49.15335693600008 ], [ -123.075957783999982, 49.153448990000136 ], [ -123.07595636299996, 49.153471605000036 ], [ -123.076717159999959, 49.153492270000108 ], [ -123.076715626999913, 49.153516648000128 ], [ -123.076736902999954, 49.153517226000076 ] ], [ [ -123.084181821999948, 49.149207812000022 ], [ -123.084089711999979, 49.150677071000061 ], [ -123.08445100099999, 49.150686858000064 ], [ -123.084279984999952, 49.153414827000063 ], [ -123.085141204999957, 49.15343815300006 ], [ -123.085189144999973, 49.152673229000058 ], [ -123.085442144999931, 49.152680079000028 ], [ -123.085490686999947, 49.151905465000027 ], [ -123.085374038999944, 49.151905551000056 ], [ -123.085369401999955, 49.149206940000084 ], [ -123.085780789999944, 49.149206635000027 ], [ -123.085779391999935, 49.148397052000092 ], [ -123.084545248999987, 49.148397961000065 ], [ -123.084546626999952, 49.149207545000131 ], [ -123.084181821999948, 49.149207812000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54784491", "BldgCostT": "28823871", "sL_LossRatio": "0.532511770305385", "sL_AssetLoss": "3886900", "sL_BldgLoss": "2069820", "sL_StrLoss": "804900", "sL_NStrLoss": "1264920", "sL_ContLoss": "1817080", "geom_point": "0101000020E6100000439B80B22BBF5EC021E3F670EE964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.987609081999935, 49.181997400000107 ], [ -122.985770392999953, 49.181071602000046 ], [ -122.985266623999962, 49.180892889000042 ], [ -122.983675960999946, 49.180328636000112 ], [ -122.983471020999943, 49.180255935000034 ], [ -122.98323301399995, 49.180171504000128 ], [ -122.982935906999955, 49.180088099000031 ], [ -122.982573615999939, 49.179986404000083 ], [ -122.980762080999966, 49.179477895000062 ], [ -122.980442578999927, 49.179458165000014 ], [ -122.980457885999982, 49.179341040000011 ], [ -122.980504958999973, 49.177274121000067 ], [ -122.980551830999957, 49.177097905 ], [ -122.980576666999951, 49.177004573000012 ], [ -122.980566902999939, 49.176222948000024 ], [ -122.981277964999975, 49.176223065000038 ], [ -122.981277863999964, 49.176492925000076 ], [ -122.982512706999898, 49.176493119000028 ], [ -122.982512613, 49.176762979000053 ], [ -122.983335844999942, 49.176763101000063 ], [ -122.983335648999955, 49.177347720000064 ], [ -122.984134150999935, 49.177370085000071 ], [ -122.984120999, 49.177572792000021 ], [ -122.984158819999934, 49.177572797000032 ], [ -122.984159164999966, 49.176493357000034 ], [ -122.984570778999966, 49.176493412000113 ], [ -122.984571366999916, 49.174604391000095 ], [ -122.984159767999955, 49.174604335000019 ], [ -122.984159939, 49.174064615000077 ], [ -122.983748344999952, 49.174064557000079 ], [ -122.983748433, 49.173794697000055 ], [ -122.982102065999968, 49.17379445400011 ], [ -122.982102649999959, 49.172175292000119 ], [ -122.983337384999956, 49.172175476000035 ], [ -122.983337203999938, 49.172715196000048 ], [ -122.984160369999955, 49.172715313000076 ], [ -122.98416045699993, 49.17244545300013 ], [ -122.98457203599996, 49.172445508000123 ], [ -122.984572120999971, 49.172175649000046 ], [ -122.985806856999915, 49.172175806000148 ], [ -122.985806624999924, 49.172985387000011 ], [ -122.986629795999974, 49.172985485000019 ], [ -122.986629578999938, 49.173795067000064 ], [ -122.986217985999957, 49.173795018000092 ], [ -122.986217685999989, 49.174874460000076 ], [ -122.985806084999936, 49.174874410000101 ], [ -122.985805698999982, 49.176223710000052 ], [ -122.986217310999962, 49.176223760000028 ], [ -122.986217236999963, 49.176493620000038 ], [ -122.986628850999978, 49.176493669000088 ], [ -122.986628560999961, 49.177573109000114 ], [ -122.986216935999948, 49.177573062000079 ], [ -122.986216777999971, 49.178146557000048 ], [ -122.986580008999979, 49.178156722000011 ], [ -122.986561329999944, 49.178444833000079 ], [ -122.987642989999955, 49.178475095000024 ], [ -122.987613989999915, 49.178922520000086 ], [ -122.987863100999917, 49.178922546000088 ], [ -122.987863232999956, 49.178382827000071 ], [ -122.989098121999973, 49.178382950000078 ], [ -122.98909787099997, 49.179528002000076 ], [ -122.990397354999985, 49.179564324000069 ], [ -122.990316573999976, 49.18081179900004 ], [ -122.990744188999955, 49.180811833000121 ], [ -122.990744026999934, 49.181688029000057 ], [ -122.99549230299999, 49.181820595000097 ], [ -122.995274016999957, 49.185196919000056 ], [ -122.995261298999978, 49.185393618000084 ], [ -122.994428102999962, 49.184931206000066 ], [ -122.993911805999957, 49.18470911 ], [ -122.992041534999913, 49.18390451500008 ], [ -122.991661339999965, 49.18374095700009 ], [ -122.990789830999958, 49.183365974000068 ], [ -122.990775767999935, 49.183359933000105 ], [ -122.990762170999943, 49.18335407800005 ], [ -122.989375749999965, 49.182757557000066 ], [ -122.988399675999943, 49.18233757400003 ], [ -122.988154325999943, 49.182232001000052 ], [ -122.987609081999935, 49.181997400000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1342572992", "BldgCostT": "756571575", "sL_LossRatio": "0.596628183597477", "sL_AssetLoss": "33387583", "sL_BldgLoss": "19919973", "sL_StrLoss": "6979273", "sL_NStrLoss": "12940700", "sL_ContLoss": "13467610", "geom_point": "0101000020E6100000879B9FEA29C35EC0D4AA7B43E5974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.053909300999948, 49.202846397000044 ], [ -123.049941099999927, 49.202631311000083 ], [ -123.04928341599998, 49.202668303000074 ], [ -123.048487397999978, 49.202847797000054 ], [ -123.047498675999961, 49.202857797000071 ], [ -123.047002901999974, 49.202722513000083 ], [ -123.046974608999918, 49.202691240000071 ], [ -123.046742608999963, 49.202434796000112 ], [ -123.046509693999923, 49.202498903000048 ], [ -123.04624899399991, 49.202786602000039 ], [ -123.0459736, 49.202822196000085 ], [ -123.044244003999964, 49.202805103000081 ], [ -123.043892637999988, 49.202767443000091 ], [ -123.042630687999974, 49.202632187000042 ], [ -123.041732393999951, 49.202535909000076 ], [ -123.039077686, 49.20192605900008 ], [ -123.039018225999953, 49.201912402000097 ], [ -123.038166980999961, 49.201716807000089 ], [ -123.037392582999971, 49.201538901000056 ], [ -123.035993602999923, 49.20103620900008 ], [ -123.035572695999974, 49.20092830700009 ], [ -123.034976900999979, 49.200775611000076 ], [ -123.034783917999917, 49.200603161000075 ], [ -123.034524192999982, 49.200371110000049 ], [ -123.033645791999945, 49.20000219700006 ], [ -123.032919938999939, 49.19979539000007 ], [ -123.032735386999931, 49.199742814000075 ], [ -123.032372181999961, 49.199639330000132 ], [ -123.032253431999962, 49.199605482000067 ], [ -123.032198035999954, 49.199589703000122 ], [ -123.032157091, 49.199578022000061 ], [ -123.029417094999957, 49.198797310000067 ], [ -123.0276187199999, 49.198501106000052 ], [ -123.024332953999959, 49.198144819000028 ], [ -123.024308858000012, 49.198142197000074 ], [ -123.023980592, 49.198106612000053 ], [ -123.022481186999968, 49.197832818000052 ], [ -123.021469014999965, 49.197648 ], [ -123.01942218899994, 49.197055502000062 ], [ -123.015043102999954, 49.195562997000117 ], [ -123.014342696999904, 49.19542768900007 ], [ -123.013231090999952, 49.19508591200011 ], [ -123.012153960999967, 49.19452203500002 ], [ -123.011873494999961, 49.194375191000042 ], [ -123.011351494999928, 49.194187203000169 ], [ -123.01104667, 49.194105296000046 ], [ -123.009832249999945, 49.193778990000091 ], [ -123.009332008999962, 49.193644578000061 ], [ -123.008303881999936, 49.19336829900007 ], [ -123.007183445999885, 49.193001581000019 ], [ -123.006876394999949, 49.192901100000043 ], [ -123.004803900999946, 49.191955408000084 ], [ -123.004309289999952, 49.191533912000082 ], [ -123.003994337999984, 49.191330677000053 ], [ -123.003832054999975, 49.191225959000121 ], [ -123.003641288, 49.191102875000077 ], [ -123.003414864999982, 49.190956759000102 ], [ -123.003377281999946, 49.190932508000088 ], [ -123.002704706999964, 49.190498496000018 ], [ -123.002682570999966, 49.190478824000152 ], [ -123.00268255, 49.190089202000131 ], [ -123.002682529999973, 49.189717546000026 ], [ -123.006388046999973, 49.189717400000085 ], [ -123.006388095999952, 49.190100339000082 ], [ -123.008851321999913, 49.190168763000059 ], [ -123.008828272999963, 49.190526818000123 ], [ -123.008858535999977, 49.190526816000073 ], [ -123.008858439999941, 49.189987097 ], [ -123.009893009, 49.18998701300012 ], [ -123.009930506, 49.189404302000035 ], [ -123.015407440999923, 49.189556188000054 ], [ -123.015293136999944, 49.191335721000023 ], [ -123.015858218999952, 49.191335644000105 ], [ -123.015858562999981, 49.192415083000043 ], [ -123.017505549999953, 49.192414845000059 ], [ -123.017505644999957, 49.192684704000058 ], [ -123.017917394, 49.19268464000001 ], [ -123.01791749100002, 49.192954501000052 ], [ -123.019152743999925, 49.1929543030001 ], [ -123.01915284899998, 49.193224162000043 ], [ -123.021211615, 49.193223802000041 ], [ -123.021211688999955, 49.193394116000071 ], [ -123.021895606, 49.193413024000058 ], [ -123.022055331999979, 49.190920902000087 ], [ -123.02753248599997, 49.191072172000062 ], [ -123.027522857999926, 49.191222658000044 ], [ -123.028030276, 49.19123665800003 ], [ -123.028023409999903, 49.191344004000044 ], [ -123.030695489999971, 49.191417688000044 ], [ -123.030465599999971, 49.195014875000091 ], [ -123.02863589599994, 49.194964427000095 ], [ -123.028624280999949, 49.195146023000135 ], [ -123.028624418, 49.195381077000029 ], [ -123.030683272999937, 49.19538054900007 ], [ -123.030683438999944, 49.195650407000066 ], [ -123.031095211999954, 49.19565029700005 ], [ -123.031095383, 49.19592015700011 ], [ -123.03150715699995, 49.195920046000033 ], [ -123.0315073299999, 49.196189905000082 ], [ -123.03191910799994, 49.196189792000013 ], [ -123.03191923899999, 49.196395825000117 ], [ -123.032203739999929, 49.19640366200008 ], [ -123.032200167999974, 49.196459572000059 ], [ -123.032742839999969, 49.196459420000053 ], [ -123.032742955999936, 49.196632684000086 ], [ -123.03310442, 49.196642639000025 ], [ -123.033098894999981, 49.19672917900008 ], [ -123.033566583999971, 49.196729043000069 ], [ -123.033566639999918, 49.196813225000042 ], [ -123.03399489899999, 49.196825016000098 ], [ -123.033983803999931, 49.196998781000048 ], [ -123.036037473999912, 49.196998159000081 ], [ -123.036037864999969, 49.197537876000084 ], [ -123.036449653999938, 49.197537748000059 ], [ -123.036449843999961, 49.197797142000105 ], [ -123.036657260999945, 49.197802847000027 ], [ -123.036656960999935, 49.197807540000056 ], [ -123.036861642999952, 49.197807476000044 ], [ -123.036861752, 49.197953251000037 ], [ -123.036995856999951, 49.197956939000044 ], [ -123.036988181999916, 49.198077295000125 ], [ -123.037685430999929, 49.198077069000135 ], [ -123.037685551000024, 49.198234496000161 ], [ -123.03788274199999, 49.198239916000027 ], [ -123.037875921999955, 49.198346867000168 ], [ -123.040156409999895, 49.198346096000094 ], [ -123.040156627999949, 49.19861595400004 ], [ -123.043005086999955, 49.198614931000101 ], [ -123.043157682999919, 49.196217330000074 ], [ -123.044159704999927, 49.196244826000019 ], [ -123.044256800999918, 49.194718576000049 ], [ -123.04422359199999, 49.194717665000056 ], [ -123.044254522999935, 49.194231455000121 ], [ -123.044222122999926, 49.19423056700002 ], [ -123.044450944999966, 49.190633345000016 ], [ -123.044541768999949, 49.190635837000102 ], [ -123.044557955999935, 49.190381348000095 ], [ -123.044563546999925, 49.19038150100004 ], [ -123.044672061999989, 49.188675277000101 ], [ -123.043323033, 49.188638258000069 ], [ -123.043353216999947, 49.188163866000075 ], [ -123.043345663999943, 49.188163659000097 ], [ -123.043351880999978, 49.188065944000073 ], [ -123.0428091499999, 49.188051046000091 ], [ -123.04288946599992, 49.186788919000065 ], [ -123.04027023699993, 49.18671698200005 ], [ -123.040309290999971, 49.186103809 ], [ -123.03757387899995, 49.186028613000133 ], [ -123.037575052999955, 49.186010207000024 ], [ -123.036476341999972, 49.185979983000053 ], [ -123.036512578999961, 49.185411742000028 ], [ -123.031784712, 49.185281560000071 ], [ -123.032014451999956, 49.181684317000055 ], [ -123.0320670669999, 49.181685766000108 ], [ -123.032099976999945, 49.181170418000072 ], [ -123.037576014, 49.181321179000115 ], [ -123.037506943999972, 49.182404775000059 ], [ -123.042181917000022, 49.182533261000096 ], [ -123.042180745999985, 49.182551667000112 ], [ -123.043279379999888, 49.182581833000015 ], [ -123.043240369999978, 49.183195010000127 ], [ -123.043392403999974, 49.183199184000031 ], [ -123.043426236999963, 49.182667366000047 ], [ -123.04336460199994, 49.18266567400012 ], [ -123.043418541999941, 49.181817771000098 ], [ -123.043050541999961, 49.181807669000122 ], [ -123.043242217999975, 49.178794774000082 ], [ -123.043001825999909, 49.178788175000136 ], [ -123.043094683999968, 49.17732852700005 ], [ -123.043096754999951, 49.177295983000086 ], [ -123.04013937799999, 49.177297047000117 ], [ -123.04013938199995, 49.177301457000098 ], [ -123.04013959699995, 49.177566907000049 ], [ -123.036434986999936, 49.177568136000076 ], [ -123.03643538399993, 49.178107855000071 ], [ -123.034788871999964, 49.178108363000042 ], [ -123.034788494999987, 49.17756864300005 ], [ -123.03067226099995, 49.177569810000087 ], [ -123.030672094999957, 49.177299950000133 ], [ -123.030260473999959, 49.177300058000121 ], [ -123.03026046199993, 49.177282105000067 ], [ -123.03026039599996, 49.177175326000039 ], [ -123.030260308999985, 49.177030198000082 ], [ -123.027790595999988, 49.177030819000066 ], [ -123.027790676, 49.177175643000055 ], [ -123.027790734999954, 49.177281896000061 ], [ -123.027790746999983, 49.177300679 ], [ -123.027379125, 49.177300777 ], [ -123.027379274999987, 49.177570637000038 ], [ -123.026967650999921, 49.177570734 ], [ -123.026967798, 49.177840594000067 ], [ -123.02614454699993, 49.177840783000171 ], [ -123.026144831999957, 49.178380504000124 ], [ -123.027791350999962, 49.178380120000078 ], [ -123.027791805999954, 49.179189700000094 ], [ -123.027380166999961, 49.179189798000024 ], [ -123.02738031599992, 49.179459658000091 ], [ -123.026145400999937, 49.179459944000023 ], [ -123.026145257999985, 49.179190084000034 ], [ -123.022440526999986, 49.179190864000091 ], [ -123.022440405999973, 49.178921003000077 ], [ -123.022028769999963, 49.178921083000041 ], [ -123.022028291999973, 49.177841642000104 ], [ -123.021616664999954, 49.177841720000032 ], [ -123.02161654799994, 49.17757186100004 ], [ -123.021204924999964, 49.177571937000096 ], [ -123.021204809999986, 49.177302077000022 ], [ -123.020381566999959, 49.177302224000094 ], [ -123.02038167799995, 49.177572084000069 ], [ -123.018323561999964, 49.177572429000122 ], [ -123.018323460999937, 49.177302569000062 ], [ -123.017911839999897, 49.177302634000071 ], [ -123.017911785999942, 49.17715218700004 ], [ -123.017911742999956, 49.177032773000043 ], [ -123.017257897999968, 49.177032873000059 ], [ -123.017088505999965, 49.177032899000039 ], [ -123.017088598, 49.177302759000057 ], [ -123.015442112999921, 49.17730299100004 ], [ -123.01544183299994, 49.176400197000056 ], [ -123.015441777999982, 49.17622355000006 ], [ -123.015095662999954, 49.176223595000181 ], [ -123.01503016599996, 49.176223605000047 ], [ -123.015030152999941, 49.176183386000069 ], [ -123.015030082999957, 49.175953744000076 ], [ -123.014656110999979, 49.175953792000037 ], [ -123.014618473999974, 49.175953797000041 ], [ -123.014618467, 49.175930684000029 ], [ -123.014618392999964, 49.175683937000052 ], [ -123.014299934999883, 49.175683977000112 ], [ -123.014206786999978, 49.17568398800006 ], [ -123.014206863999945, 49.175953848000077 ], [ -123.012560422999954, 49.175954039000096 ], [ -123.012560149999899, 49.174874598000081 ], [ -123.012971751999942, 49.174874552000048 ], [ -123.012971680999911, 49.174604692000059 ], [ -123.013334506999968, 49.174604651000045 ], [ -123.013383278999967, 49.174604645000095 ], [ -123.013383207999979, 49.174334785000042 ], [ -123.013148166999898, 49.174334811000037 ], [ -123.012148418999942, 49.174334922000064 ], [ -123.012148219999929, 49.173525341000065 ], [ -123.012559808999939, 49.173525296000022 ], [ -123.01255975499997, 49.17331279900008 ], [ -123.012559740999961, 49.173255436000019 ], [ -123.012526732999959, 49.173255440000013 ], [ -123.011736566999929, 49.173255523000094 ], [ -123.011736502999966, 49.172985662000016 ], [ -123.011324916999968, 49.172985704000084 ], [ -123.011324911999907, 49.17297066400004 ], [ -123.00803221699999, 49.172879225 ], [ -123.008032277999959, 49.173255840000095 ], [ -123.007620689999925, 49.173255868000133 ], [ -123.007620772999985, 49.173795589000093 ], [ -123.00720918, 49.173795614000021 ], [ -123.007209336999964, 49.17487505600004 ], [ -123.005974534999979, 49.174875126000067 ], [ -123.005974501999944, 49.174605266000057 ], [ -123.00515130499997, 49.174605306000039 ], [ -123.005151192999989, 49.173525865000087 ], [ -123.004739601999958, 49.173525882000028 ], [ -123.004739424999954, 49.171665567000076 ], [ -123.000057422999959, 49.171535225000056 ], [ -123.000037865999957, 49.171838282000095 ], [ -122.999431745999956, 49.171821393000045 ], [ -122.999429440999933, 49.171857097 ], [ -122.999049493999976, 49.171846509000027 ], [ -122.999048927, 49.171855306000111 ], [ -122.998977378999896, 49.171853313000057 ], [ -122.998977378999896, 49.171906813000092 ], [ -122.997093658999972, 49.171906781000104 ], [ -122.997055281999948, 49.172500853000031 ], [ -122.991580413999955, 49.172348030000087 ], [ -122.991596605999973, 49.172097857000068 ], [ -122.99122036199995, 49.172087344000033 ], [ -122.991219224999938, 49.172104897000089 ], [ -122.985744423999947, 49.171951777000068 ], [ -122.985883096999942, 49.169813073000064 ], [ -122.988448908999942, 49.169812204000038 ], [ -122.989724750999969, 49.169811740000085 ], [ -122.996204103999958, 49.16980920200006 ], [ -122.998651514999963, 49.169809899000043 ], [ -122.998637318999982, 49.169541002000088 ], [ -122.998633201999894, 49.169435484000083 ], [ -122.998635186999977, 49.1691057990001 ], [ -122.998751455999979, 49.16910544100007 ], [ -123.000000010999941, 49.169101519000044 ], [ -123.001712591999961, 49.169096099000093 ], [ -123.001860986999986, 49.169098701000046 ], [ -123.005571430999936, 49.169163535000024 ], [ -123.006325203999921, 49.16917670300014 ], [ -123.006385402999953, 49.169179865000103 ], [ -123.006385406999954, 49.169208037000104 ], [ -123.006921351999921, 49.169208006000055 ], [ -123.006978382999975, 49.169211 ], [ -123.007683598999975, 49.16930899500003 ], [ -123.009802309999955, 49.16976603400007 ], [ -123.009874397999951, 49.169781597000053 ], [ -123.010035775999967, 49.169797478000056 ], [ -123.01070281199999, 49.169863209000063 ], [ -123.012789401999967, 49.169866996000053 ], [ -123.017189534999972, 49.169884779000043 ], [ -123.024276172999976, 49.169913017000034 ], [ -123.03549511199995, 49.169922498000062 ], [ -123.03555877899997, 49.169922490000054 ], [ -123.03587431699998, 49.169922492000062 ], [ -123.038288838999947, 49.169922333000038 ], [ -123.041018808999965, 49.169922100000036 ], [ -123.045875212999945, 49.169921505000048 ], [ -123.04642397399995, 49.169921426000052 ], [ -123.046600930999972, 49.169921368000061 ], [ -123.046602383999954, 49.169988842000102 ], [ -123.046700541999911, 49.174439415000116 ], [ -123.04672305299999, 49.175552657 ], [ -123.046722780999986, 49.17558448600002 ], [ -123.046721791999985, 49.17567959500014 ], [ -123.046760357000011, 49.175886689000045 ], [ -123.046993630999907, 49.17714031700006 ], [ -123.047011959, 49.177238896000063 ], [ -123.047028520999959, 49.177327661000099 ], [ -123.047030196999955, 49.177382906000084 ], [ -123.047032092999984, 49.177443992000107 ], [ -123.047542230999952, 49.177457600000025 ], [ -123.048569907999934, 49.17748499099999 ], [ -123.048514726999926, 49.178353988000012 ], [ -123.048755117999974, 49.178360576000095 ], [ -123.0487012789999, 49.179208487000047 ], [ -123.049069259999953, 49.179218570000067 ], [ -123.049066237999938, 49.179266179000088 ], [ -123.050079725999964, 49.179293944000058 ], [ -123.050020589999946, 49.180225662000105 ], [ -123.050114883999981, 49.180228245000116 ], [ -123.049964530999958, 49.182597050000012 ], [ -123.050455329999977, 49.182610492000073 ], [ -123.050461362999954, 49.182515469000037 ], [ -123.055937616999969, 49.182665297000021 ], [ -123.055931320999917, 49.182764687 ], [ -123.057946251999951, 49.182819744000078 ], [ -123.057910341999914, 49.183386985000048 ], [ -123.058208875999966, 49.183395138999984 ], [ -123.058188412999982, 49.183718414000069 ], [ -123.05870788799993, 49.183732601 ], [ -123.058723173999951, 49.183491073000013 ], [ -123.05932938699999, 49.183507625000068 ], [ -123.059385595999956, 49.182619286000069 ], [ -123.06113867099999, 49.18266713500001 ], [ -123.061138359, 49.182415180000071 ], [ -123.060726696999964, 49.182415398000053 ], [ -123.060726035999963, 49.181875678000083 ], [ -123.060314376999926, 49.181875894000086 ], [ -123.06031076899994, 49.178907435000063 ], [ -123.060722403999989, 49.178907219000052 ], [ -123.06072108299999, 49.17782777900004 ], [ -123.060309457999949, 49.177827996000183 ], [ -123.060309419999939, 49.177797186000085 ], [ -123.061309236999989, 49.177823715000088 ], [ -123.061409812999955, 49.177827181000069 ], [ -123.063500015999978, 49.177899311000061 ], [ -123.063747022999976, 49.177907848000075 ], [ -123.063870191999953, 49.177912088000092 ], [ -123.063967659999946, 49.177915445000046 ], [ -123.064049947999948, 49.177918287000125 ], [ -123.065490385999965, 49.17794520800004 ], [ -123.069209510999883, 49.178014672000138 ], [ -123.069209765999986, 49.177902082000053 ], [ -123.069214367999948, 49.177498030000088 ], [ -123.069214785999947, 49.177462036000065 ], [ -123.069215842999938, 49.177370732000107 ], [ -123.069178199999953, 49.1763364010001 ], [ -123.06918027799999, 49.175959757000101 ], [ -123.069189136999981, 49.174385644000083 ], [ -123.069192881999967, 49.173710705000119 ], [ -123.069189183999953, 49.17187820400008 ], [ -123.069211502999934, 49.170501314000028 ], [ -123.069212813999968, 49.170271778000092 ], [ -123.069212894, 49.170262598000072 ], [ -123.069226649999933, 49.170262735000023 ], [ -123.072716705999966, 49.170294886000093 ], [ -123.074379178999905, 49.170303998000129 ], [ -123.074379943999972, 49.170568347000028 ], [ -123.074380826999942, 49.170867103000084 ], [ -123.074383548999975, 49.171845688000126 ], [ -123.074394340999945, 49.175641707000047 ], [ -123.07439502699998, 49.175869245000044 ], [ -123.07439503099998, 49.175893583000125 ], [ -123.074395601999925, 49.17753768700009 ], [ -123.074395250999942, 49.177608839000108 ], [ -123.07439910299999, 49.177721600000062 ], [ -123.074583564999955, 49.177710364000077 ], [ -123.074698747999932, 49.177703367000113 ], [ -123.076432231999931, 49.177598400000122 ], [ -123.07720851000002, 49.177574425000081 ], [ -123.079560235999978, 49.177574256000064 ], [ -123.079704040999943, 49.177574337000046 ], [ -123.080406290999974, 49.177574667000087 ], [ -123.080418476999981, 49.177742576000114 ], [ -123.080441606999926, 49.17806029300008 ], [ -123.080360496999958, 49.179023810000096 ], [ -123.080332501999962, 49.18082390900004 ], [ -123.080319818999968, 49.182356902000087 ], [ -123.080318975999901, 49.182741493000023 ], [ -123.08030599099996, 49.184541109000087 ], [ -123.080293910999984, 49.185650610000096 ], [ -123.08031058099999, 49.187414994000051 ], [ -123.08032521899996, 49.189235108000055 ], [ -123.081947593999956, 49.189238489000033 ], [ -123.08297609899995, 49.189242102000044 ], [ -123.08298360400002, 49.190171985000028 ], [ -123.082793493999972, 49.190371494000047 ], [ -123.082629701999963, 49.190543392000102 ], [ -123.082570312999948, 49.190681493000078 ], [ -123.082571974999951, 49.191243595000053 ], [ -123.082559792999987, 49.191983787000083 ], [ -123.085134693000015, 49.191979092000125 ], [ -123.089542508999969, 49.191970886000085 ], [ -123.091480409999988, 49.191975493000015 ], [ -123.091481220999981, 49.1938691 ], [ -123.091495985999956, 49.19435599500013 ], [ -123.091486635999928, 49.194672458000056 ], [ -123.09143180399991, 49.196521703000109 ], [ -123.091771444999935, 49.196697460000031 ], [ -123.09121605699994, 49.196697900000053 ], [ -123.091215743999953, 49.196527790000069 ], [ -123.091215559999952, 49.196428042000065 ], [ -123.09039200199993, 49.196428690000054 ], [ -123.090392392999945, 49.196642867000072 ], [ -123.090392493999943, 49.19669854800005 ], [ -123.090084118, 49.196698789000024 ], [ -123.089568929999984, 49.196699189000057 ], [ -123.089569096999981, 49.196792214000013 ], [ -123.089569417999925, 49.196969049000131 ], [ -123.089157632999942, 49.196969368000026 ], [ -123.08915774399999, 49.197030121000097 ], [ -123.088328818999955, 49.19713960400005 ], [ -123.086284302999928, 49.1976808000001 ], [ -123.085436231999964, 49.197997620000137 ], [ -123.084865336999954, 49.198210900000028 ], [ -123.08444807099994, 49.198199609000078 ], [ -123.084218298999971, 49.198193392000057 ], [ -123.084218442999912, 49.198278180000074 ], [ -123.084218518999975, 49.198322371000096 ], [ -123.084089019999951, 49.198322465000025 ], [ -123.083394928999965, 49.198322968000078 ], [ -123.083395382000035, 49.198592827000041 ], [ -123.082983584999951, 49.198593124000098 ], [ -123.082983890999969, 49.198776629000122 ], [ -123.082984138999976, 49.198924896000108 ], [ -123.082181419999955, 49.199267305000106 ], [ -123.082010445999984, 49.199403397000026 ], [ -123.081337721999958, 49.199403873000051 ], [ -123.081338065999944, 49.19961326000012 ], [ -123.081126933999954, 49.199673880000091 ], [ -123.080514551999897, 49.199674308000041 ], [ -123.080514837999928, 49.199849616000073 ], [ -123.080444289999946, 49.19986987 ], [ -123.080299426999943, 49.199911469000028 ], [ -123.08018473899989, 49.199944397000074 ], [ -123.080103181999917, 49.199944453000079 ], [ -123.080103218999952, 49.199967801000085 ], [ -123.077383608999952, 49.200748553000089 ], [ -123.077358010999944, 49.20075590200004 ], [ -123.077221781999981, 49.200755993000065 ], [ -123.077221842999975, 49.200794990000105 ], [ -123.076857777999976, 49.200899500000055 ], [ -123.076336498999964, 49.201151604000046 ], [ -123.075844506999942, 49.201222808000047 ], [ -123.075163719999935, 49.201426951000023 ], [ -123.075163522999986, 49.201297069000098 ], [ -123.07510088399998, 49.201297110000034 ], [ -123.075091342999926, 49.201448655000014 ], [ -123.07470955899997, 49.201563135000072 ], [ -123.074457918999897, 49.201638602000052 ], [ -123.0730717, 49.201684190000087 ], [ -123.072864986999917, 49.201432091000108 ], [ -123.072780923999943, 49.201429482000052 ], [ -123.07231681899998, 49.201415002000047 ], [ -123.07160926099999, 49.20153514000004 ], [ -123.070723304999888, 49.201685592000054 ], [ -123.069116792999978, 49.201803911000127 ], [ -123.069008318, 49.20229809900011 ], [ -123.068102392999933, 49.202460404000064 ], [ -123.068103418999954, 49.202793699000047 ], [ -123.067967108999952, 49.202883404 ], [ -123.067402290999951, 49.202712496000032 ], [ -123.066552709999939, 49.202703904000032 ], [ -123.065178802999952, 49.20283069100001 ], [ -123.064988292999956, 49.202984505000067 ], [ -123.06468568799994, 49.202884789000031 ], [ -123.064078915999971, 49.202939423000053 ], [ -123.063646842999958, 49.202978306 ], [ -123.062329353999942, 49.203096906000077 ], [ -123.06196387699994, 49.203129792000041 ], [ -123.061862804999976, 49.203138894000062 ], [ -123.061505163999954, 49.203171077000057 ], [ -123.061061612999978, 49.203210991000063 ], [ -123.059372272999951, 49.203211990000064 ], [ -123.058673910999914, 49.203212387000058 ], [ -123.053909300999948, 49.202846397000044 ] ], [ [ -123.057599160999956, 49.195640121000054 ], [ -123.05762675699998, 49.19520437900006 ], [ -123.058271754999936, 49.195221993000061 ], [ -123.058271610999938, 49.195100065000027 ], [ -123.058683378999973, 49.195099857000102 ], [ -123.058682420999901, 49.194290279000079 ], [ -123.059094181999967, 49.194290069000012 ], [ -123.059092254999925, 49.192670914000097 ], [ -123.059504002999958, 49.192670702000022 ], [ -123.059502707999911, 49.191591265000028 ], [ -123.059914446999983, 49.191591052000049 ], [ -123.059912491999967, 49.189971896000131 ], [ -123.060324217999934, 49.189971682000099 ], [ -123.060322578999887, 49.188622384000034 ], [ -123.060734292999911, 49.188622169000055 ], [ -123.060732784999956, 49.187391378000015 ], [ -123.056211094, 49.187267902000038 ], [ -123.056231572999963, 49.186944629000038 ], [ -123.054777742999974, 49.186904888000079 ], [ -123.054766530999942, 49.187081807 ], [ -123.052307546999927, 49.187014545000075 ], [ -123.052304829999969, 49.187057366000062 ], [ -123.048915813999912, 49.186964572000065 ], [ -123.048827753999973, 49.188351215000111 ], [ -123.050176780999948, 49.188388165000084 ], [ -123.050064492999979, 49.190156972000075 ], [ -123.050115593000015, 49.190158371000102 ], [ -123.050002073999948, 49.19194647100003 ], [ -123.05044019099995, 49.19195846700007 ], [ -123.050211824999977, 49.19555569300006 ], [ -123.049779149999935, 49.195543846000085 ], [ -123.049678192999949, 49.197133702000066 ], [ -123.048657146999957, 49.197105738000076 ], [ -123.048561412999931, 49.198612727000125 ], [ -123.052510564, 49.198610998000021 ], [ -123.05250999099998, 49.198071280000072 ], [ -123.052921784999981, 49.198071092000085 ], [ -123.052921497999989, 49.197801233000106 ], [ -123.053745078999924, 49.197800853000111 ], [ -123.053744786999914, 49.197530994000047 ], [ -123.05456836499999, 49.197530608000058 ], [ -123.054568067999952, 49.197260748000097 ], [ -123.054979854999942, 49.197260553000064 ], [ -123.054979554999974, 49.196990694000164 ], [ -123.055391338999925, 49.19699049700008 ], [ -123.055391038, 49.196720638000052 ], [ -123.055802820999986, 49.196720440000043 ], [ -123.055802516999947, 49.196450581000093 ], [ -123.056214295999965, 49.196450381000027 ], [ -123.05621399099999, 49.196180522000084 ], [ -123.056625767999961, 49.196180321000114 ], [ -123.056625458999932, 49.195910462000093 ], [ -123.057449010999974, 49.195910055000049 ], [ -123.057448697999959, 49.195640195000088 ], [ -123.057599160999956, 49.195640121000054 ] ], [ [ -123.020027342999981, 49.176492706000083 ], [ -123.020200343999974, 49.173794073000082 ], [ -123.019968534, 49.173794113000099 ], [ -123.01996864299997, 49.174063974000077 ], [ -123.016264293999953, 49.174064555000079 ], [ -123.016264206999949, 49.173794694000023 ], [ -123.015029429999942, 49.173794862000072 ], [ -123.015029510999952, 49.174064722000033 ], [ -123.014617917999956, 49.17406477500009 ], [ -123.014618156999958, 49.174874356000039 ], [ -123.016264559999954, 49.174874136000071 ], [ -123.016264647999918, 49.175143996000095 ], [ -123.017499457999961, 49.175143815000091 ], [ -123.017499553, 49.175413676000083 ], [ -123.018322763999933, 49.175413548000044 ], [ -123.01832296299996, 49.175953268000036 ], [ -123.018734573999964, 49.175953202000123 ], [ -123.018734775999988, 49.176492923000083 ], [ -123.020027342999981, 49.176492706000083 ] ], [ [ -123.031904961999942, 49.174195139000062 ], [ -123.031905396999917, 49.174870874000092 ], [ -123.032316996999953, 49.174870759000051 ], [ -123.032317172, 49.175140619000061 ], [ -123.032728775999956, 49.175140504000126 ], [ -123.032728954, 49.175410363000061 ], [ -123.033552165999978, 49.175410127000056 ], [ -123.033551982999967, 49.175140267000117 ], [ -123.033963585999928, 49.175140147 ], [ -123.033963030999985, 49.17433056700002 ], [ -123.03355143499999, 49.174330686000076 ], [ -123.033551340999963, 49.17419167 ], [ -123.03333873299999, 49.174185813000101 ], [ -123.033336540999954, 49.17422016600004 ], [ -123.032821739999974, 49.174205982000061 ], [ -123.032820819999927, 49.174220378000058 ], [ -123.031904961999942, 49.174195139000062 ] ], [ [ -123.043373003999974, 49.17378769500003 ], [ -123.043439855999949, 49.172736595000075 ], [ -123.043163103999987, 49.172728995000078 ], [ -123.043244210999944, 49.171453827000065 ], [ -123.040957746999979, 49.171391019000062 ], [ -123.040957944999946, 49.171629693000064 ], [ -123.040134795999947, 49.17162998200012 ], [ -123.040135013999972, 49.171899843000077 ], [ -123.039311861, 49.171900126000061 ], [ -123.039312074999899, 49.172169986000092 ], [ -123.038900497, 49.172170126000061 ], [ -123.03890113199995, 49.17297970700006 ], [ -123.039312716999987, 49.172979567000056 ], [ -123.039312928999962, 49.173249428000069 ], [ -123.04219404199992, 49.17324841000007 ], [ -123.042194271999946, 49.173518271000013 ], [ -123.043017450999983, 49.173517967000087 ], [ -123.043017683999892, 49.173787827000076 ], [ -123.043373003999974, 49.17378769500003 ] ], [ [ -123.00646424599995, 49.171366916000082 ], [ -123.00648162399996, 49.171097055000097 ], [ -123.005974078999884, 49.171097082000117 ], [ -123.005974047999985, 49.170827222000113 ], [ -123.005070559999965, 49.170827265000071 ], [ -123.005018401999948, 49.171636848000041 ], [ -123.0063857199999, 49.171636781000053 ], [ -123.006385683999923, 49.17136692 ], [ -123.00646424599995, 49.171366916000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118000417", "BldgCostT": "80226667", "sL_LossRatio": "0.802116213933224", "sL_AssetLoss": "1124650", "sL_BldgLoss": "902100", "sL_StrLoss": "510570", "sL_NStrLoss": "391530", "sL_ContLoss": "222550", "geom_point": "0101000020E6100000413A3C8471C55EC09D4EB2D5E5964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080360496999958, 49.179023810000096 ], [ -123.080441606999926, 49.17806029300008 ], [ -123.080418476999981, 49.177742576000114 ], [ -123.080406290999974, 49.177574667000087 ], [ -123.082843119999964, 49.17755151299999 ], [ -123.085129108999922, 49.17745632900003 ], [ -123.085268352999904, 49.17745053800008 ], [ -123.087166494999977, 49.17735973 ], [ -123.087303359999964, 49.177353194000084 ], [ -123.090056071999967, 49.177221438000053 ], [ -123.09163538599995, 49.177161403000127 ], [ -123.091633993999892, 49.17736539300008 ], [ -123.091626907999938, 49.178414306 ], [ -123.091624991999979, 49.178597697000043 ], [ -123.091614106999913, 49.179648996000083 ], [ -123.090377984999961, 49.179636398000056 ], [ -123.088951282, 49.17962209100012 ], [ -123.088956421999939, 49.178906105000088 ], [ -123.090307104999923, 49.178906611000109 ], [ -123.090306383999987, 49.178571864000048 ], [ -123.090305607999966, 49.178208307000048 ], [ -123.087252103999973, 49.178201517000076 ], [ -123.086674787999954, 49.178202115000069 ], [ -123.086131987, 49.178504500000024 ], [ -123.085924059999954, 49.178392777000106 ], [ -123.085902493999967, 49.178381211000051 ], [ -123.085430407999951, 49.178277393000023 ], [ -123.083891899999955, 49.178254687000084 ], [ -123.083543376999941, 49.178280397000115 ], [ -123.083075888999943, 49.178408293000089 ], [ -123.082884395999983, 49.178510302000092 ], [ -123.082742603999989, 49.178584810000089 ], [ -123.082494216999976, 49.178828503 ], [ -123.08219211899997, 49.179272607 ], [ -123.082187901999987, 49.180539988000092 ], [ -123.082166096999984, 49.181651993000045 ], [ -123.081983887999954, 49.181932602000089 ], [ -123.081818777999899, 49.182072290000107 ], [ -123.081632100999954, 49.182185195000095 ], [ -123.081171194999939, 49.182338511000083 ], [ -123.080932590999964, 49.182360003000085 ], [ -123.080319818999968, 49.182356902000087 ], [ -123.080332501999962, 49.18082390900004 ], [ -123.080360496999958, 49.179023810000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105056562", "BldgCostT": "66448191", "sL_LossRatio": "0.744720392973682", "sL_AssetLoss": "998133", "sL_BldgLoss": "743330", "sL_StrLoss": "404330", "sL_NStrLoss": "339000", "sL_ContLoss": "254803", "geom_point": "0101000020E61000005989CB5475C55EC05C7955A951974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080319818999968, 49.182356902000087 ], [ -123.080932590999964, 49.182360003000085 ], [ -123.081171194999939, 49.182338511000083 ], [ -123.081632100999954, 49.182185195000095 ], [ -123.081818777999899, 49.182072290000107 ], [ -123.081983887999954, 49.181932602000089 ], [ -123.082166096999984, 49.181651993000045 ], [ -123.082187901999987, 49.180539988000092 ], [ -123.08219211899997, 49.179272607 ], [ -123.082494216999976, 49.178828503 ], [ -123.082742603999989, 49.178584810000089 ], [ -123.082884395999983, 49.178510302000092 ], [ -123.083075888999943, 49.178408293000089 ], [ -123.083543376999941, 49.178280397000115 ], [ -123.083891899999955, 49.178254687000084 ], [ -123.085430407999951, 49.178277393000023 ], [ -123.085902493999967, 49.178381211000051 ], [ -123.085924059999954, 49.178392777000106 ], [ -123.086131987, 49.178504500000024 ], [ -123.086321812999969, 49.178648393000053 ], [ -123.086567658999954, 49.178925196000115 ], [ -123.08738759199997, 49.179848300000046 ], [ -123.086957302999949, 49.180040283000103 ], [ -123.086474813000038, 49.180364208000043 ], [ -123.086201376999895, 49.1806784 ], [ -123.08607851, 49.180888595000049 ], [ -123.08597508299998, 49.181225396000038 ], [ -123.08597518, 49.181376708000037 ], [ -123.085970394999947, 49.182329693000085 ], [ -123.089427114000017, 49.182341304000012 ], [ -123.091561810999934, 49.182348391000033 ], [ -123.091555272, 49.182654761000045 ], [ -123.091551776999921, 49.182816640000048 ], [ -123.091542586999935, 49.183246112000099 ], [ -123.091529486999931, 49.183977216000088 ], [ -123.091518878999977, 49.184567901000079 ], [ -123.089732902999941, 49.184563705000087 ], [ -123.08553621599998, 49.184553761000132 ], [ -123.08524556799992, 49.184553060000027 ], [ -123.084074807, 49.184550257000048 ], [ -123.083461612999912, 49.184548770000049 ], [ -123.082144238999945, 49.184545562000054 ], [ -123.08030599099996, 49.184541109000087 ], [ -123.080318975999901, 49.182741493000023 ], [ -123.080319818999968, 49.182356902000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100847958", "BldgCostT": "66514715", "sL_LossRatio": "0.762608421787353", "sL_AssetLoss": "1174810", "sL_BldgLoss": "895920", "sL_StrLoss": "469740", "sL_NStrLoss": "426180", "sL_ContLoss": "278890", "geom_point": "0101000020E610000013E3CA13A7C55EC0318518F906974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087700096999967, 49.181425202000142 ], [ -123.087107000999978, 49.181391993000076 ], [ -123.08597518, 49.181376708000037 ], [ -123.08597508299998, 49.181225396000038 ], [ -123.08607851, 49.180888595000049 ], [ -123.086201376999895, 49.1806784 ], [ -123.086474813000038, 49.180364208000043 ], [ -123.086957302999949, 49.180040283000103 ], [ -123.08738759199997, 49.179848300000046 ], [ -123.086567658999954, 49.178925196000115 ], [ -123.086321812999969, 49.178648393000053 ], [ -123.086131987, 49.178504500000024 ], [ -123.086674787999954, 49.178202115000069 ], [ -123.087252103999973, 49.178201517000076 ], [ -123.090305607999966, 49.178208307000048 ], [ -123.090306383999987, 49.178571864000048 ], [ -123.090307104999923, 49.178906611000109 ], [ -123.088956421999939, 49.178906105000088 ], [ -123.088951282, 49.17962209100012 ], [ -123.090377984999961, 49.179636398000056 ], [ -123.090341619999933, 49.181422711000096 ], [ -123.090317338999967, 49.181422707000102 ], [ -123.089256783999943, 49.18142309500012 ], [ -123.087700096999967, 49.181425202000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104158166", "BldgCostT": "69626666", "sL_LossRatio": "0.710878746533522", "sL_AssetLoss": "3378790", "sL_BldgLoss": "2401910", "sL_StrLoss": "1049860", "sL_NStrLoss": "1352050", "sL_ContLoss": "976880", "geom_point": "0101000020E61000005FFF4BA5E1C55EC022E0C61C3A974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085970394999947, 49.182329693000085 ], [ -123.08597518, 49.181376708000037 ], [ -123.087107000999978, 49.181391993000076 ], [ -123.087700096999967, 49.181425202000142 ], [ -123.089256783999943, 49.18142309500012 ], [ -123.090317338999967, 49.181422707000102 ], [ -123.090341619999933, 49.181422711000096 ], [ -123.090377984999961, 49.179636398000056 ], [ -123.091614106999913, 49.179648996000083 ], [ -123.091595882999968, 49.180531403 ], [ -123.09261040399997, 49.180536300000057 ], [ -123.096414906999939, 49.180551489000067 ], [ -123.096400316999976, 49.181467296000029 ], [ -123.096401799999981, 49.181994145000054 ], [ -123.096402400999978, 49.182201587000094 ], [ -123.096288626999922, 49.182311110000065 ], [ -123.096134286999984, 49.182365495000113 ], [ -123.095903985999954, 49.182364642000017 ], [ -123.091561810999934, 49.182348391000033 ], [ -123.089427114000017, 49.182341304000012 ], [ -123.085970394999947, 49.182329693000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97265583", "BldgCostT": "63453333", "sL_LossRatio": "0.654386331334722", "sL_AssetLoss": "5889090", "sL_BldgLoss": "3853740", "sL_StrLoss": "1512690", "sL_NStrLoss": "2341050", "sL_ContLoss": "2035350", "geom_point": "0101000020E6100000DDF46FB01AC65EC0219B1EF305974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097806586, 49.182422298000041 ], [ -123.097840794999982, 49.180557500000049 ], [ -123.096414906999939, 49.180551489000067 ], [ -123.09261040399997, 49.180536300000057 ], [ -123.091595882999968, 49.180531403 ], [ -123.091614106999913, 49.179648996000083 ], [ -123.091624991999979, 49.178597697000043 ], [ -123.091626907999938, 49.178414306 ], [ -123.092966614999938, 49.178415293000079 ], [ -123.094136104999976, 49.178418986000104 ], [ -123.095386501999926, 49.178422090000055 ], [ -123.096645406, 49.178421816000061 ], [ -123.096640604999948, 49.178914393000092 ], [ -123.097139197999979, 49.178945007000095 ], [ -123.097384716999969, 49.179032694000121 ], [ -123.097746789999988, 49.17927310200006 ], [ -123.097861683999952, 49.179475203000045 ], [ -123.097852007999919, 49.179889384000084 ], [ -123.097851807999973, 49.179898405000117 ], [ -123.098639896999913, 49.17990429800011 ], [ -123.098837191999948, 49.17999521800003 ], [ -123.099108791999953, 49.180191686000057 ], [ -123.099144494999933, 49.180278204000025 ], [ -123.09912670599999, 49.182430811000053 ], [ -123.097806586, 49.182422298000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122060991", "BldgCostT": "74154163", "sL_LossRatio": "0.637032492462841", "sL_AssetLoss": "8345320", "sL_BldgLoss": "5316240", "sL_StrLoss": "1650490", "sL_NStrLoss": "3665750", "sL_ContLoss": "3029080", "geom_point": "0101000020E6100000F9E6E403CAC55EC0D7635B069C964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098837191999948, 49.17999521800003 ], [ -123.098639896999913, 49.17990429800011 ], [ -123.097851807999973, 49.179898405000117 ], [ -123.097852007999919, 49.179889384000084 ], [ -123.097861683999952, 49.179475203000045 ], [ -123.097746789999988, 49.17927310200006 ], [ -123.097384716999969, 49.179032694000121 ], [ -123.097139197999979, 49.178945007000095 ], [ -123.096640604999948, 49.178914393000092 ], [ -123.096645406, 49.178421816000061 ], [ -123.095386501999926, 49.178422090000055 ], [ -123.094136104999976, 49.178418986000104 ], [ -123.092966614999938, 49.178415293000079 ], [ -123.091626907999938, 49.178414306 ], [ -123.091633993999892, 49.17736539300008 ], [ -123.09163538599995, 49.177161403000127 ], [ -123.090056071999967, 49.177221438000053 ], [ -123.087303359999964, 49.177353194000084 ], [ -123.087166494999977, 49.17735973 ], [ -123.085268352999904, 49.17745053800008 ], [ -123.085129108999922, 49.17745632900003 ], [ -123.082843119999964, 49.17755151299999 ], [ -123.080406290999974, 49.177574667000087 ], [ -123.080396986999943, 49.177508320000086 ], [ -123.080383567999903, 49.177412810000078 ], [ -123.080376604999955, 49.1773496080001 ], [ -123.080373877999989, 49.177328205000094 ], [ -123.080362383999983, 49.177238113000044 ], [ -123.080241496999975, 49.17629100199999 ], [ -123.080233213, 49.175199808000073 ], [ -123.080191108999912, 49.172159999000016 ], [ -123.080215454999944, 49.171922690000024 ], [ -123.080219390999915, 49.171884207000069 ], [ -123.080333993999972, 49.171587296000027 ], [ -123.080352671999933, 49.170744133000042 ], [ -123.08036161299999, 49.170340312000107 ], [ -123.083924406999927, 49.17035433200008 ], [ -123.084031894999981, 49.170354765000127 ], [ -123.086237790999988, 49.170363417000054 ], [ -123.086483252999955, 49.170362687000058 ], [ -123.086898783999942, 49.170361500000126 ], [ -123.08728350599999, 49.17089620100009 ], [ -123.0874424, 49.171063915000069 ], [ -123.087563783999926, 49.171192104000014 ], [ -123.08788505199999, 49.171447700000094 ], [ -123.087975188, 49.171519388 ], [ -123.089009224999941, 49.17224113300005 ], [ -123.089069487999922, 49.172283209000106 ], [ -123.091832311999909, 49.174123590000086 ], [ -123.092178800999989, 49.174349189000061 ], [ -123.093431911999943, 49.175184751000096 ], [ -123.095629483999957, 49.176644338000109 ], [ -123.095671376999988, 49.176672156000087 ], [ -123.096237185999939, 49.177053164000014 ], [ -123.096341199999955, 49.177122585000056 ], [ -123.097184931999962, 49.177687115000026 ], [ -123.097277984999891, 49.17774935900006 ], [ -123.098398198999959, 49.178498819 ], [ -123.099858780999938, 49.179475948000061 ], [ -123.100362507999961, 49.179812897000048 ], [ -123.102067368999926, 49.180933370000055 ], [ -123.102298995999945, 49.18108560200006 ], [ -123.102449992999979, 49.181186308000051 ], [ -123.102470350999951, 49.181199871000032 ], [ -123.102726882, 49.181371011000067 ], [ -123.10296662199994, 49.181531216000117 ], [ -123.10560698099998, 49.183295327000017 ], [ -123.106331126999947, 49.183779091000083 ], [ -123.107145248000023, 49.184323002000085 ], [ -123.107516188999938, 49.184570798000053 ], [ -123.107525955999989, 49.184577317000048 ], [ -123.107283346999964, 49.184575321000075 ], [ -123.107243160999971, 49.184575241000097 ], [ -123.106872663999951, 49.184574642000015 ], [ -123.104639420999916, 49.184570941000118 ], [ -123.103743485999971, 49.18457715800011 ], [ -123.103702316999943, 49.184577450000113 ], [ -123.102750074999932, 49.184584096000037 ], [ -123.102426591999972, 49.184582393 ], [ -123.100871886999968, 49.184574093000037 ], [ -123.100107411999886, 49.18457824700004 ], [ -123.097808298999965, 49.184590684000042 ], [ -123.097810393999936, 49.183261997000052 ], [ -123.097806586, 49.182422298000041 ], [ -123.09912670599999, 49.182430811000053 ], [ -123.099144494999933, 49.180278204000025 ], [ -123.099108791999953, 49.180191686000057 ], [ -123.098837191999948, 49.17999521800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95459332", "BldgCostT": "58167053", "sL_LossRatio": "0.62650921774436", "sL_AssetLoss": "3093490", "sL_BldgLoss": "1938100", "sL_StrLoss": "778040", "sL_NStrLoss": "1160060", "sL_ContLoss": "1155390", "geom_point": "0101000020E6100000F8E42F6715C65EC003ACC1A071974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096414906999939, 49.180551489000067 ], [ -123.097840794999982, 49.180557500000049 ], [ -123.097806586, 49.182422298000041 ], [ -123.097810393999936, 49.183261997000052 ], [ -123.097808298999965, 49.184590684000042 ], [ -123.096917311999974, 49.184584696000059 ], [ -123.091518878999977, 49.184567901000079 ], [ -123.091529486999931, 49.183977216000088 ], [ -123.091542586999935, 49.183246112000099 ], [ -123.091551776999921, 49.182816640000048 ], [ -123.091555272, 49.182654761000045 ], [ -123.091561810999934, 49.182348391000033 ], [ -123.095903985999954, 49.182364642000017 ], [ -123.096134286999984, 49.182365495000113 ], [ -123.096288626999922, 49.182311110000065 ], [ -123.096402400999978, 49.182201587000094 ], [ -123.096401799999981, 49.181994145000054 ], [ -123.096400316999976, 49.181467296000029 ], [ -123.096414906999939, 49.180551489000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95955250", "BldgCostT": "63760000", "sL_LossRatio": "0.674707259383865", "sL_AssetLoss": "4113710", "sL_BldgLoss": "2775550", "sL_StrLoss": "1163810", "sL_NStrLoss": "1611740", "sL_ContLoss": "1338160", "geom_point": "0101000020E61000008BABDBEA03C65EC05C25FD62DB974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09151581399999, 49.18735690400009 ], [ -123.09151667699993, 49.186554342000107 ], [ -123.091518875999924, 49.184597783000093 ], [ -123.091518878999977, 49.184567901000079 ], [ -123.096917311999974, 49.184584696000059 ], [ -123.096919702999941, 49.18511630800009 ], [ -123.097094504999959, 49.185589390000125 ], [ -123.094220678999974, 49.185597497000046 ], [ -123.09420298, 49.186429412000038 ], [ -123.097233123999985, 49.186444499000125 ], [ -123.097219400999904, 49.186840485000097 ], [ -123.097161418999988, 49.18699928400008 ], [ -123.096869600999966, 49.187235484000084 ], [ -123.096754489999967, 49.187365793000012 ], [ -123.096679610999928, 49.187533107000064 ], [ -123.096677646999922, 49.187724048000057 ], [ -123.096671500999918, 49.18832110400006 ], [ -123.095391783999901, 49.188321803000115 ], [ -123.095410886999957, 49.187248491000062 ], [ -123.094211290999922, 49.187239505000079 ], [ -123.094208804999937, 49.188310598000037 ], [ -123.093609843999957, 49.188308045000063 ], [ -123.09354134199999, 49.188307764000108 ], [ -123.093099498999891, 49.188305893000113 ], [ -123.091511120999925, 49.188307094000024 ], [ -123.09151581399999, 49.18735690400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65597780", "BldgCostT": "41803602", "sL_LossRatio": "0.637673418909564", "sL_AssetLoss": "3856990", "sL_BldgLoss": "2459500", "sL_StrLoss": "980750", "sL_NStrLoss": "1478750", "sL_ContLoss": "1397490", "geom_point": "0101000020E610000072A77C2147C65EC074962894E8974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097219400999904, 49.186840485000097 ], [ -123.097233123999985, 49.186444499000125 ], [ -123.09420298, 49.186429412000038 ], [ -123.094220678999974, 49.185597497000046 ], [ -123.097094504999959, 49.185589390000125 ], [ -123.097533171999885, 49.185548996000101 ], [ -123.098977982999941, 49.185548594000068 ], [ -123.099252549999932, 49.185548506000032 ], [ -123.099368197999951, 49.185548466000114 ], [ -123.100509383999949, 49.185548108 ], [ -123.100424964999959, 49.187352450000063 ], [ -123.100377784, 49.188360605000099 ], [ -123.099149593999982, 49.188345567000063 ], [ -123.097889416999934, 49.188330123000135 ], [ -123.097798383999972, 49.18832899600006 ], [ -123.096671500999918, 49.18832110400006 ], [ -123.096677646999922, 49.187724048000057 ], [ -123.096679610999928, 49.187533107000064 ], [ -123.096754489999967, 49.187365793000012 ], [ -123.096869600999966, 49.187235484000084 ], [ -123.097161418999988, 49.18699928400008 ], [ -123.097219400999904, 49.186840485000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140702584", "BldgCostT": "95883334", "sL_LossRatio": "0.765433062384774", "sL_AssetLoss": "6405890", "sL_BldgLoss": "4903280", "sL_StrLoss": "2036610", "sL_NStrLoss": "2866670", "sL_ContLoss": "1502610", "geom_point": "0101000020E6100000F43E7DBA70C65EC0ACBE56B6CD974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100424964999959, 49.187352450000063 ], [ -123.100509383999949, 49.185548108 ], [ -123.099368197999951, 49.185548466000114 ], [ -123.099252549999932, 49.185548506000032 ], [ -123.098977982999941, 49.185548594000068 ], [ -123.097533171999885, 49.185548996000101 ], [ -123.097094504999959, 49.185589390000125 ], [ -123.096919702999941, 49.18511630800009 ], [ -123.096917311999974, 49.184584696000059 ], [ -123.097808298999965, 49.184590684000042 ], [ -123.100107411999886, 49.18457824700004 ], [ -123.100871886999968, 49.184574093000037 ], [ -123.102426591999972, 49.184582393 ], [ -123.102750074999932, 49.184584096000037 ], [ -123.102712504999914, 49.184747005000048 ], [ -123.102710495999972, 49.187418903000037 ], [ -123.102376524999926, 49.187423784000011 ], [ -123.101474997999972, 49.187436992000116 ], [ -123.101419783999972, 49.188696691000047 ], [ -123.100370993999945, 49.188689220000128 ], [ -123.100377784, 49.188360605000099 ], [ -123.100424964999959, 49.187352450000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "360259325", "BldgCostT": "239782904", "sL_LossRatio": "0.740906503424584", "sL_AssetLoss": "12630730", "sL_BldgLoss": "9358190", "sL_StrLoss": "4027570", "sL_NStrLoss": "5330620", "sL_ContLoss": "3272540", "geom_point": "0101000020E6100000964B0426C7C65EC0595369F606984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102688319999956, 49.189820896000036 ], [ -123.102691012999955, 49.18958508 ], [ -123.102040611999939, 49.189584598000067 ], [ -123.101558371999943, 49.189580155000066 ], [ -123.096687617999947, 49.189534999000095 ], [ -123.096671500999918, 49.18832110400006 ], [ -123.097798383999972, 49.18832899600006 ], [ -123.097889416999934, 49.188330123000135 ], [ -123.099149593999982, 49.188345567000063 ], [ -123.100377784, 49.188360605000099 ], [ -123.100370993999945, 49.188689220000128 ], [ -123.101419783999972, 49.188696691000047 ], [ -123.101474997999972, 49.187436992000116 ], [ -123.102376524999926, 49.187423784000011 ], [ -123.102710495999972, 49.187418903000037 ], [ -123.102712504999914, 49.184747005000048 ], [ -123.102750074999932, 49.184584096000037 ], [ -123.103702316999943, 49.184577450000113 ], [ -123.103743485999971, 49.18457715800011 ], [ -123.104639420999916, 49.184570941000118 ], [ -123.106872663999951, 49.184574642000015 ], [ -123.107243160999971, 49.184575241000097 ], [ -123.107283346999964, 49.184575321000075 ], [ -123.107525955999989, 49.184577317000048 ], [ -123.109357858999942, 49.185795818000024 ], [ -123.111741567999914, 49.187383968000091 ], [ -123.111895053999973, 49.187539379000086 ], [ -123.112328061999975, 49.187854578000042 ], [ -123.112542967999985, 49.188105401000044 ], [ -123.112564807999959, 49.188152762000072 ], [ -123.112678309, 49.188399080000075 ], [ -123.112699994999957, 49.1886681780001 ], [ -123.112681027999912, 49.188779941000057 ], [ -123.112668827999954, 49.188851485000036 ], [ -123.11262357399994, 49.189117872000025 ], [ -123.112620498999931, 49.189136067000028 ], [ -123.112559503999975, 49.189495007000055 ], [ -123.112570124999962, 49.189672613000013 ], [ -123.112333798999956, 49.189861 ], [ -123.111192977999963, 49.189853804000094 ], [ -123.111001841999965, 49.1898530610001 ], [ -123.102688319999956, 49.189820896000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214905492", "BldgCostT": "128941105", "sL_LossRatio": "0.644743007394136", "sL_AssetLoss": "11375230", "sL_BldgLoss": "7334100", "sL_StrLoss": "2733210", "sL_NStrLoss": "4600890", "sL_ContLoss": "4041130", "geom_point": "0101000020E610000081E0C86E2CC65EC0FDB61E8D5C984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.091513793999965, 49.189514394000106 ], [ -123.091511993999973, 49.189213388000056 ], [ -123.091511120999925, 49.188307094000024 ], [ -123.093099498999891, 49.188305893000113 ], [ -123.09354134199999, 49.188307764000108 ], [ -123.093609843999957, 49.188308045000063 ], [ -123.094208804999937, 49.188310598000037 ], [ -123.094211290999922, 49.187239505000079 ], [ -123.095410886999957, 49.187248491000062 ], [ -123.095391783999901, 49.188321803000115 ], [ -123.096671500999918, 49.18832110400006 ], [ -123.096687617999947, 49.189534999000095 ], [ -123.101558371999943, 49.189580155000066 ], [ -123.102040611999939, 49.189584598000067 ], [ -123.102691012999955, 49.18958508 ], [ -123.102688319999956, 49.189820896000036 ], [ -123.102691165999929, 49.190183490000074 ], [ -123.102693783999953, 49.190516309000017 ], [ -123.102696573999964, 49.190867116000099 ], [ -123.102705606999947, 49.192008608000052 ], [ -123.102332042999947, 49.192006768000113 ], [ -123.098978504999977, 49.191990312000044 ], [ -123.09577399299999, 49.191972393000114 ], [ -123.091480409999988, 49.191975493000015 ], [ -123.091502382, 49.19035491500005 ], [ -123.091505567999945, 49.190121047000034 ], [ -123.091513793999965, 49.189514394000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212966001", "BldgCostT": "139850001", "sL_LossRatio": "0.731578630609666", "sL_AssetLoss": "5981640", "sL_BldgLoss": "4376040", "sL_StrLoss": "2049240", "sL_NStrLoss": "2326800", "sL_ContLoss": "1605600", "geom_point": "0101000020E6100000A1D30C0C0DC75EC0812AA8876C984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.111895053999973, 49.187539379000086 ], [ -123.111741567999914, 49.187383968000091 ], [ -123.11383431899999, 49.188758068000027 ], [ -123.114563716999982, 49.189236974000025 ], [ -123.116412000999929, 49.190450402000103 ], [ -123.116538420999944, 49.190536055000081 ], [ -123.117072407999984, 49.19089789900007 ], [ -123.117380814999933, 49.191106900000086 ], [ -123.118120511, 49.191829290000058 ], [ -123.118298393999979, 49.192014202000053 ], [ -123.117121907999959, 49.192007987000046 ], [ -123.115686205999936, 49.192000256000014 ], [ -123.11557640599996, 49.191999657000018 ], [ -123.115140500999971, 49.191997307000037 ], [ -123.115000484999939, 49.191998002000062 ], [ -123.114986693999953, 49.191998056000074 ], [ -123.113894709999954, 49.192001798000071 ], [ -123.112310586999939, 49.191999785000085 ], [ -123.110870091999971, 49.192003606000043 ], [ -123.10921718899999, 49.192004317000091 ], [ -123.107831800999946, 49.192003991 ], [ -123.106251508999932, 49.192005699000077 ], [ -123.104804294999951, 49.192007411000105 ], [ -123.102705606999947, 49.192008608000052 ], [ -123.102696573999964, 49.190867116000099 ], [ -123.102693783999953, 49.190516309000017 ], [ -123.102691165999929, 49.190183490000074 ], [ -123.102688319999956, 49.189820896000036 ], [ -123.111001841999965, 49.1898530610001 ], [ -123.111192977999963, 49.189853804000094 ], [ -123.112333798999956, 49.189861 ], [ -123.112570124999962, 49.189672613000013 ], [ -123.112559503999975, 49.189495007000055 ], [ -123.112620498999931, 49.189136067000028 ], [ -123.11262357399994, 49.189117872000025 ], [ -123.112668827999954, 49.188851485000036 ], [ -123.112681027999912, 49.188779941000057 ], [ -123.112699994999957, 49.1886681780001 ], [ -123.112678309, 49.188399080000075 ], [ -123.112564807999959, 49.188152762000072 ], [ -123.112542967999985, 49.188105401000044 ], [ -123.112328061999975, 49.187854578000042 ], [ -123.111895053999973, 49.187539379000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "466059331", "BldgCostT": "295182526", "sL_LossRatio": "0.667162522738564", "sL_AssetLoss": "9981391", "sL_BldgLoss": "6659210", "sL_StrLoss": "2804560", "sL_NStrLoss": "3854650", "sL_ContLoss": "3322181", "geom_point": "0101000020E6100000454E1DB385C55EC07F283D7812984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08298360400002, 49.190171985000028 ], [ -123.08297609899995, 49.189242102000044 ], [ -123.081947593999956, 49.189238489000033 ], [ -123.08032521899996, 49.189235108000055 ], [ -123.08031058099999, 49.187414994000051 ], [ -123.080293910999984, 49.185650610000096 ], [ -123.08030599099996, 49.184541109000087 ], [ -123.082144238999945, 49.184545562000054 ], [ -123.083461612999912, 49.184548770000049 ], [ -123.084074807, 49.184550257000048 ], [ -123.08524556799992, 49.184553060000027 ], [ -123.08553621599998, 49.184553761000132 ], [ -123.089732902999941, 49.184563705000087 ], [ -123.091518878999977, 49.184567901000079 ], [ -123.091518875999924, 49.184597783000093 ], [ -123.09151667699993, 49.186554342000107 ], [ -123.09151581399999, 49.18735690400009 ], [ -123.091511120999925, 49.188307094000024 ], [ -123.091511993999973, 49.189213388000056 ], [ -123.091513793999965, 49.189514394000106 ], [ -123.091505567999945, 49.190121047000034 ], [ -123.091502382, 49.19035491500005 ], [ -123.091480409999988, 49.191975493000015 ], [ -123.089542508999969, 49.191970886000085 ], [ -123.085134693000015, 49.191979092000125 ], [ -123.082559792999987, 49.191983787000083 ], [ -123.082571974999951, 49.191243595000053 ], [ -123.082570312999948, 49.190681493000078 ], [ -123.082629701999963, 49.190543392000102 ], [ -123.082793493999972, 49.190371494000047 ], [ -123.08298360400002, 49.190171985000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "820291770", "BldgCostT": "464107545", "sL_LossRatio": "0.585266042827672", "sL_AssetLoss": "40457020", "sL_BldgLoss": "23678120", "sL_StrLoss": "8570870", "sL_NStrLoss": "15107250", "sL_ContLoss": "16778900", "geom_point": "0101000020E6100000A7BA9D5C57BF5EC0D0538F3438994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.990403958999963, 49.206819027000087 ], [ -122.988482503999947, 49.206755188000031 ], [ -122.987270004999957, 49.206726707000065 ], [ -122.985856401999953, 49.206475511000029 ], [ -122.985040448999939, 49.206360168000074 ], [ -122.984918208999886, 49.206342894000052 ], [ -122.984403271999952, 49.206298181000093 ], [ -122.983847117999986, 49.206249899000106 ], [ -122.982949263999942, 49.20623211300002 ], [ -122.981810813999914, 49.206209547000057 ], [ -122.981179485999959, 49.206197025000044 ], [ -122.981092507000014, 49.20619529400004 ], [ -122.980690430999928, 49.206131122000102 ], [ -122.980291183999967, 49.206067417000064 ], [ -122.979456692999989, 49.205818811000064 ], [ -122.978930201999958, 49.205640653000053 ], [ -122.97827247499994, 49.205418034000054 ], [ -122.977754145999967, 49.20524404800004 ], [ -122.977249748999967, 49.205150629000094 ], [ -122.976261715999911, 49.205088658000129 ], [ -122.976143212999943, 49.205012376000063 ], [ -122.976085426999944, 49.204908947000028 ], [ -122.976077028999967, 49.204887994 ], [ -122.976049975999985, 49.204820594000068 ], [ -122.976083674, 49.204813648000034 ], [ -122.976699508999928, 49.204686493000104 ], [ -122.977240797000022, 49.204486391000067 ], [ -122.977138292999911, 49.204333112000043 ], [ -122.977051803999984, 49.204123483000075 ], [ -122.9770489499999, 49.204007626000049 ], [ -122.977042405999981, 49.203740293000131 ], [ -122.97688569799999, 49.203538669000082 ], [ -122.976877788999943, 49.203528494000118 ], [ -122.975384918999978, 49.202336529000043 ], [ -122.974469539, 49.201605569000058 ], [ -122.972424860999922, 49.199972801000065 ], [ -122.971858239999932, 49.199520285000077 ], [ -122.971371396, 49.199131515000055 ], [ -122.970248146999921, 49.198283263000064 ], [ -122.970236378999942, 49.19827440500012 ], [ -122.96838629199999, 49.196833986000058 ], [ -122.967773503, 49.1965515220001 ], [ -122.964956587999922, 49.196149850000012 ], [ -122.964582075999971, 49.196096430000061 ], [ -122.964124063, 49.196031117000089 ], [ -122.961050077999957, 49.195643526000019 ], [ -122.961172082999923, 49.195856910000067 ], [ -122.960534491999937, 49.196208292000023 ], [ -122.957423772999945, 49.197927081000088 ], [ -122.95730479099997, 49.197992807000098 ], [ -122.956660632999899, 49.198416205000122 ], [ -122.956276979999956, 49.198268325000086 ], [ -122.955618898999944, 49.198156041000118 ], [ -122.955638989999969, 49.198058417000112 ], [ -122.955599196999955, 49.197996021000037 ], [ -122.954739037999943, 49.197262685000048 ], [ -122.954418424999943, 49.197047903000076 ], [ -122.95427226699999, 49.196949981000088 ], [ -122.954183841999935, 49.196890730000028 ], [ -122.954124723999925, 49.196851115000129 ], [ -122.953968563999979, 49.196724269000086 ], [ -122.953963713999926, 49.196719115000136 ], [ -122.953912216, 49.196664410000054 ], [ -122.953808633999969, 49.196554446000043 ], [ -122.953692064999984, 49.196430721000041 ], [ -122.953624595999912, 49.196359073000124 ], [ -122.953531551999944, 49.19626028600004 ], [ -122.953509948999937, 49.196237386000043 ], [ -122.953484501999966, 49.196210350000094 ], [ -122.953421091999942, 49.196142994000091 ], [ -122.953216399999945, 49.196011746000103 ], [ -122.953173184999983, 49.19598406000005 ], [ -122.953129375999978, 49.195955970000057 ], [ -122.953063905999912, 49.195915422000027 ], [ -122.953026697, 49.195890592000111 ], [ -122.952989453999976, 49.195865775000108 ], [ -122.952818711999953, 49.195751233000074 ], [ -122.952805126, 49.195738759000101 ], [ -122.952673983999972, 49.195617986000094 ], [ -122.952636911999932, 49.195583850000048 ], [ -122.952506617999987, 49.195488815000054 ], [ -122.95241262899998, 49.195420236000132 ], [ -122.952385711, 49.195400643000042 ], [ -122.952233577999948, 49.195293914000061 ], [ -122.952120851999965, 49.195214889000113 ], [ -122.952086159999951, 49.195180621000084 ], [ -122.951980688999953, 49.195076529000069 ], [ -122.951922786999916, 49.195040872000057 ], [ -122.952124520999959, 49.194969100000037 ], [ -122.952915527999892, 49.194604015000095 ], [ -122.953267302999947, 49.194441673000078 ], [ -122.955217317999953, 49.19354162000009 ], [ -122.95536058099999, 49.193475497000094 ], [ -122.955805813999959, 49.193269996000105 ], [ -122.955952161, 49.193227548000095 ], [ -122.95626898899998, 49.193135665000099 ], [ -122.957014088, 49.192919604000032 ], [ -122.958976209999918, 49.192156292000099 ], [ -122.960312845999908, 49.191287160000059 ], [ -122.960719717999922, 49.191022601000022 ], [ -122.961105092999929, 49.190734899000098 ], [ -122.961119731999958, 49.190520612000078 ], [ -122.961509492999966, 49.1905207430001 ], [ -122.961509606999925, 49.190373666000049 ], [ -122.961792013000021, 49.19026780400003 ], [ -122.961996764999952, 49.190122045000081 ], [ -122.964167095999926, 49.18857718700005 ], [ -122.965930252999968, 49.187051599000029 ], [ -122.966233689999939, 49.18678902199999 ], [ -122.96664276599995, 49.186435029000066 ], [ -122.96728439099995, 49.185879806000102 ], [ -122.968005847999976, 49.185168772000075 ], [ -122.968093350999979, 49.185082545000107 ], [ -122.968156022999935, 49.185020790000053 ], [ -122.968862491, 49.184324490000058 ], [ -122.969327363999923, 49.183968136 ], [ -122.969824806999952, 49.183586788000063 ], [ -122.971101506999943, 49.182669596000061 ], [ -122.973063592999921, 49.181689695000074 ], [ -122.973262428999988, 49.181618690000043 ], [ -122.973454448999945, 49.181618734000011 ], [ -122.973454159999946, 49.18215845400006 ], [ -122.973865820999919, 49.182158547000029 ], [ -122.973865678999985, 49.182428408000121 ], [ -122.975100669999975, 49.182428680000086 ], [ -122.97510053399999, 49.182698540000025 ], [ -122.975512200999958, 49.182698627 ], [ -122.97551206699994, 49.182968488000093 ], [ -122.975923735999942, 49.182968574000078 ], [ -122.975923605999981, 49.183238434000039 ], [ -122.976746944999931, 49.183238603000049 ], [ -122.976746438999925, 49.184318042000093 ], [ -122.977158118999967, 49.184318124000114 ], [ -122.977157870999974, 49.184857845000067 ], [ -122.977981237999984, 49.184858004000056 ], [ -122.977981117999917, 49.185127863000048 ], [ -122.97880449099992, 49.18512801800005 ], [ -122.978804374999953, 49.18539787800011 ], [ -122.97921606299991, 49.185397952000059 ], [ -122.979216741999906, 49.183778793000073 ], [ -122.979628416999944, 49.183778867000086 ], [ -122.979628747999982, 49.182969287000034 ], [ -122.979217080999916, 49.182969213 ], [ -122.979217193999929, 49.182699355000111 ], [ -122.978805525999974, 49.18269927900014 ], [ -122.978805988999952, 49.181619839000099 ], [ -122.979217645999967, 49.181619914000123 ], [ -122.979217887999965, 49.181042253000037 ], [ -122.978994015999916, 49.181035974000054 ], [ -122.978997647999932, 49.180980103000067 ], [ -122.979240091999898, 49.180988997000064 ], [ -122.980666685999921, 49.181232593000097 ], [ -122.981571194999972, 49.181474708000046 ], [ -122.982943199999937, 49.181889100000035 ], [ -122.983104350999952, 49.181951743000084 ], [ -122.982099133999938, 49.181923580000046 ], [ -122.982099048999942, 49.18216011700013 ], [ -122.983334033999967, 49.182160302000078 ], [ -122.98333358, 49.183509601000083 ], [ -122.982510234999921, 49.183509479000072 ], [ -122.982510139999988, 49.183779340000036 ], [ -122.983745163999913, 49.183779519000076 ], [ -122.983745431, 49.182969940000064 ], [ -122.984690788999927, 49.182970069000127 ], [ -122.984714458, 49.182605253000084 ], [ -122.985663398999989, 49.183035614000097 ], [ -122.984980419999943, 49.183016497000082 ], [ -122.984980350999933, 49.183239967000112 ], [ -122.986104704999917, 49.183240107000053 ], [ -122.98621534599998, 49.183304899000099 ], [ -122.986215288999958, 49.183509981000057 ], [ -122.986565628999969, 49.183510022000036 ], [ -122.987239093999946, 49.183904391000084 ], [ -122.987450188, 49.18398078200007 ], [ -122.987450168999914, 49.184049841000025 ], [ -122.987641081999982, 49.184049862000073 ], [ -122.988431503999919, 49.184335887000046 ], [ -122.989319943999959, 49.18483150600013 ], [ -122.989629454999914, 49.18500416600007 ], [ -122.989682654999967, 49.185033829000076 ], [ -122.990230810999947, 49.185339601000095 ], [ -122.990646377999965, 49.185571418000102 ], [ -122.990683345999955, 49.185592038000088 ], [ -122.99330318399997, 49.187053299000056 ], [ -122.993604889999972, 49.187286909000086 ], [ -122.993785939999952, 49.187423321000082 ], [ -122.994415852999964, 49.187897924000055 ], [ -122.995995772999947, 49.189088283000082 ], [ -122.996094985999946, 49.189163030000017 ], [ -122.996094942999889, 49.189717511000033 ], [ -122.996831012999962, 49.189717533000071 ], [ -122.996918388, 49.189783359000067 ], [ -122.996918358999949, 49.190257255000056 ], [ -122.997499646999955, 49.190257268000053 ], [ -122.997741805999908, 49.190467603000066 ], [ -122.99774180299994, 49.190527134000028 ], [ -122.997810344999976, 49.190527135000089 ], [ -122.998202096999975, 49.190867396000023 ], [ -122.998871082999955, 49.191579790000084 ], [ -122.999039318999934, 49.191758898000096 ], [ -122.999916590999959, 49.192478102000038 ], [ -123.000623949999977, 49.192948885000085 ], [ -123.000623948999987, 49.192955889000096 ], [ -123.000634472999948, 49.192955889000096 ], [ -123.000824240999975, 49.193082186 ], [ -123.001938347999968, 49.193823635000037 ], [ -123.001954622999932, 49.193834470000127 ], [ -123.002212439999951, 49.194006075000047 ], [ -123.00241608, 49.194141597000041 ], [ -123.002539196999948, 49.194249800000101 ], [ -123.00255371, 49.19450190000002 ], [ -123.003005101999989, 49.194429297000049 ], [ -123.003786399999925, 49.194729267000085 ], [ -123.003824930999926, 49.194744073000095 ], [ -123.004005517999957, 49.194813388000057 ], [ -123.004357573999982, 49.194948563000047 ], [ -123.004373078999905, 49.194954511000077 ], [ -123.005023201999947, 49.195204090000097 ], [ -123.005977026, 49.195560764000014 ], [ -123.005977037999969, 49.195654329000035 ], [ -123.006227171999939, 49.195654316000102 ], [ -123.007137013999966, 49.195994506000069 ], [ -123.007689946999932, 49.196146692000056 ], [ -123.007756148999974, 49.196164913000054 ], [ -123.008083756999966, 49.196255103000098 ], [ -123.00812463799997, 49.196266347000076 ], [ -123.009024705999948, 49.196514078000135 ], [ -123.010506812999921, 49.196921970000126 ], [ -123.010506831999976, 49.197003302000027 ], [ -123.00927147799996, 49.19700340800005 ], [ -123.009271427999934, 49.196733549000065 ], [ -123.008859644999944, 49.196733582000071 ], [ -123.008859740999952, 49.197273299000067 ], [ -123.009271527999942, 49.197273267000092 ], [ -123.009271577999982, 49.197543127000102 ], [ -123.009683366999951, 49.197543092000082 ], [ -123.009683419999988, 49.197812952000049 ], [ -123.010095210999964, 49.197812917000093 ], [ -123.010095321, 49.19835263500007 ], [ -123.010507116, 49.198352599000067 ], [ -123.010507230999977, 49.19889231600007 ], [ -123.010919030999972, 49.198892278000095 ], [ -123.010919210999987, 49.19970185600004 ], [ -123.012154631999977, 49.199701732000101 ], [ -123.012154431999988, 49.198892155000124 ], [ -123.012566232999987, 49.198892111000077 ], [ -123.012565959999918, 49.197812674000083 ], [ -123.01215416899997, 49.197812719000126 ], [ -123.012154100999965, 49.197542860000084 ], [ -123.011742312999942, 49.197542902000116 ], [ -123.011742245999983, 49.197261953000059 ], [ -123.012627692999899, 49.1975056100001 ], [ -123.012793121999906, 49.197534590000053 ], [ -123.013960610999945, 49.197739206000065 ], [ -123.016088597999939, 49.198368688000102 ], [ -123.017542790999983, 49.198854300000093 ], [ -123.018816417999957, 49.199489748000069 ], [ -123.01946597, 49.19981381500002 ], [ -123.019849407999942, 49.200005103000073 ], [ -123.021001804999969, 49.200382508000111 ], [ -123.022335205999951, 49.200930808000059 ], [ -123.023385069999918, 49.201171303000095 ], [ -123.023417357999989, 49.201358906000046 ], [ -123.023427593999926, 49.201474005000094 ], [ -123.023385680999965, 49.202234987000104 ], [ -123.023253323999967, 49.202437694000018 ], [ -123.022936526999956, 49.202607289000056 ], [ -123.02320416799995, 49.202991248000082 ], [ -123.023376713999966, 49.203445553000044 ], [ -123.023401770999911, 49.203932710000075 ], [ -123.02342562799997, 49.204288327000057 ], [ -123.023434794999915, 49.204423700000099 ], [ -123.023382571999903, 49.204532152000134 ], [ -123.023383501999916, 49.20533126200008 ], [ -123.02338608299999, 49.205482748000072 ], [ -123.023386379999963, 49.205500709000063 ], [ -123.023341506999941, 49.206886797000053 ], [ -123.023348227999961, 49.206953913000049 ], [ -123.023412605999951, 49.207595901000026 ], [ -123.023537305, 49.208177686000042 ], [ -123.023283319999948, 49.208179700000137 ], [ -123.022091251999939, 49.20815941000005 ], [ -123.020471221999983, 49.208131808000054 ], [ -123.020311602999982, 49.208129115000133 ], [ -123.019434203999964, 49.208116594000089 ], [ -123.018272760999963, 49.208241732000076 ], [ -123.017890686999976, 49.208282902000043 ], [ -123.017773837999982, 49.208296152000067 ], [ -123.017199448999946, 49.208361277000073 ], [ -123.016468306999926, 49.2084441720001 ], [ -123.016272391000015, 49.208466383000065 ], [ -123.015640828999949, 49.208537976000045 ], [ -123.015585008999935, 49.208544302000163 ], [ -123.015138788999934, 49.208612989000066 ], [ -123.014424778999938, 49.208767994000041 ], [ -123.013812396999953, 49.209031198000062 ], [ -123.013380271999935, 49.209177783000058 ], [ -123.013126691999901, 49.209216685000051 ], [ -123.012382065999986, 49.209229372000017 ], [ -123.011354275999921, 49.209221182000107 ], [ -123.008462185999946, 49.209198116000032 ], [ -123.004976828999943, 49.209152644000099 ], [ -123.004704539000016, 49.209119860000079 ], [ -123.003227494, 49.208764387000059 ], [ -123.002828280999907, 49.208626249000091 ], [ -123.002247700999945, 49.208425392000045 ], [ -123.001725091999944, 49.208293792000035 ], [ -123.000607807999927, 49.208107801000089 ], [ -123.000013976999952, 49.208011629000062 ], [ -122.999176735999953, 49.207876047000127 ], [ -122.99876300199999, 49.207809039000104 ], [ -122.998323601999957, 49.207737909000038 ], [ -122.99720746199992, 49.207626589000064 ], [ -122.996614137999941, 49.20756742599999 ], [ -122.996053419999953, 49.207511504000088 ], [ -122.99602291099994, 49.207508431000051 ], [ -122.994760061999926, 49.207381547000104 ], [ -122.994056113999974, 49.207310812000095 ], [ -122.992068382999946, 49.206986293000114 ], [ -122.991207297999907, 49.206845695000048 ], [ -122.990403958999963, 49.206819027000087 ] ], [ [ -123.008449566999928, 49.206732934000101 ], [ -123.008449471999967, 49.206178677000032 ], [ -123.010096913999945, 49.206178545000064 ], [ -123.01009696899996, 49.206448405000103 ], [ -123.011744420999932, 49.206448249000076 ], [ -123.011744293999953, 49.20590853100002 ], [ -123.010920576999979, 49.205908612000059 ], [ -123.010920518999967, 49.205638753000137 ], [ -123.009684947999943, 49.205638863000019 ], [ -123.009684894999978, 49.205369004000133 ], [ -123.008449332999959, 49.205369101000095 ], [ -123.008449379999931, 49.205638961000048 ], [ -123.008037523999974, 49.205638990000054 ], [ -123.00803756699996, 49.205908848000099 ], [ -123.006801990000014, 49.205908928000085 ], [ -123.006801953999982, 49.205639068000082 ], [ -123.005978241999969, 49.205639115000047 ], [ -123.005978208999977, 49.205369255000065 ], [ -123.005566354999957, 49.205369276000098 ], [ -123.005566415999965, 49.205908994000012 ], [ -123.00515455699994, 49.205909013000095 ], [ -123.005154612999888, 49.206448730000048 ], [ -123.004742749999963, 49.206448748000106 ], [ -123.004742772999961, 49.206681295000067 ], [ -123.004847784999967, 49.206684213000059 ], [ -123.004843876999956, 49.20674482000004 ], [ -123.005465565999941, 49.206762097000052 ], [ -123.005460265999886, 49.206844303000032 ], [ -123.005959854999929, 49.206858184000041 ], [ -123.005951913999965, 49.206981371000012 ], [ -123.006359628999917, 49.2069926980001 ], [ -123.006380073999978, 49.206675465000075 ], [ -123.008449566999928, 49.206732934000101 ] ], [ [ -122.981269817999959, 49.197811840000064 ], [ -122.981270023999969, 49.197272121000061 ], [ -122.982505381999957, 49.197272314000017 ], [ -122.982505288999917, 49.197542174000027 ], [ -122.982917076999968, 49.197542236000103 ], [ -122.982917262999976, 49.197002518000026 ], [ -122.98332904699997, 49.197002577000063 ], [ -122.983329139, 49.196732718000128 ], [ -122.985388050999958, 49.196732998000059 ], [ -122.985387970999952, 49.197002856000054 ], [ -122.987236085999911, 49.197003076000023 ], [ -122.987296725999926, 49.196067959000054 ], [ -122.986201461999912, 49.196037326000102 ], [ -122.986401389999969, 49.192955090000055 ], [ -122.986212664999954, 49.192955068000096 ], [ -122.986212888999887, 49.192145490000073 ], [ -122.985801145999972, 49.192145440000047 ], [ -122.985801067999901, 49.192415299000089 ], [ -122.984565827999972, 49.192415141000055 ], [ -122.984565913999958, 49.192145282000105 ], [ -122.984154168, 49.192145225000075 ], [ -122.9841546, 49.190795929000096 ], [ -122.986213264999975, 49.190796192000036 ], [ -122.986213563999968, 49.189716754000081 ], [ -122.985390114999973, 49.189716653000112 ], [ -122.985390195999983, 49.18944679400002 ], [ -122.980861254999979, 49.189446131000054 ], [ -122.980861151999989, 49.18971599200011 ], [ -122.980037702999965, 49.189715852000127 ], [ -122.980037594999928, 49.189985711000091 ], [ -122.979214141999961, 49.189985566000054 ], [ -122.979214029, 49.190255426000093 ], [ -122.9788023, 49.190255351000076 ], [ -122.97880218399996, 49.190525210000033 ], [ -122.97839045399999, 49.190525134000012 ], [ -122.978390335999961, 49.190794994000051 ], [ -122.97756687, 49.190794837000098 ], [ -122.97756674799993, 49.19106469700008 ], [ -122.97839022, 49.191064853000043 ], [ -122.978389513999957, 49.192684010000043 ], [ -122.977566016999944, 49.192683853000091 ], [ -122.977565894999941, 49.192953712000055 ], [ -122.977154143999925, 49.192953631000051 ], [ -122.977154018999926, 49.193223491000047 ], [ -122.976742265999974, 49.193223409000041 ], [ -122.976742139999899, 49.193493269000079 ], [ -122.975918628999949, 49.193493099000051 ], [ -122.975918366999935, 49.194032818000103 ], [ -122.97509484599999, 49.194032644000117 ], [ -122.97509457699999, 49.194572362000045 ], [ -122.975506339999924, 49.194572451000056 ], [ -122.975505805999987, 49.195651887000103 ], [ -122.97427048699997, 49.195651619000067 ], [ -122.974270907999937, 49.194842041000086 ], [ -122.973447374, 49.194841855000028 ], [ -122.973447951999944, 49.193762417000116 ], [ -122.974683224999978, 49.193762695000025 ], [ -122.974683636999941, 49.192953118000091 ], [ -122.973860135999971, 49.192952933000115 ], [ -122.97385999299999, 49.193222792000057 ], [ -122.973036486999916, 49.193222603000095 ], [ -122.973036339999922, 49.19349246300002 ], [ -122.97262458499999, 49.193492366000036 ], [ -122.972624286999945, 49.194032084000092 ], [ -122.971800769000012, 49.194031886000118 ], [ -122.971800613999903, 49.194301746000093 ], [ -122.971388851999919, 49.194301644000092 ], [ -122.971388696999938, 49.194571504000088 ], [ -122.970565168999926, 49.194571297000017 ], [ -122.970565006999919, 49.194841156000081 ], [ -122.97097677499994, 49.194841260000054 ], [ -122.97097646, 49.195377214000096 ], [ -122.971462126999967, 49.195390868000125 ], [ -122.971409991999948, 49.196190665000117 ], [ -122.972623095999936, 49.196190958000095 ], [ -122.972622979999954, 49.196400259000029 ], [ -122.972874737999959, 49.196407332000057 ], [ -122.972871247999976, 49.196460877000064 ], [ -122.974270067999925, 49.196461196000079 ], [ -122.97426992599992, 49.196731056000047 ], [ -122.975093492000028, 49.196731236000055 ], [ -122.975093356999977, 49.197001095000076 ], [ -122.977152278999981, 49.197001521000118 ], [ -122.97715240399998, 49.196731662000055 ], [ -122.978387750999971, 49.196731900000053 ], [ -122.978387396999963, 49.197541477000122 ], [ -122.980446342000022, 49.197541844000092 ], [ -122.980446236999967, 49.197811703000092 ], [ -122.981269817999959, 49.197811840000064 ] ], [ [ -122.987038351999971, 49.184589516000045 ], [ -122.987038421999941, 49.184319656000071 ], [ -122.986215062999975, 49.184319561000059 ], [ -122.986214988999947, 49.184589420000073 ], [ -122.987038351999971, 49.184589516000045 ] ], [ [ -122.981935735999969, 49.181890232000022 ], [ -122.981952580999987, 49.181630840000068 ], [ -122.980870850999935, 49.181600523000057 ], [ -122.980877273999923, 49.181501644000036 ], [ -122.980452665999977, 49.18148974000006 ], [ -122.980452509999949, 49.181889990000066 ], [ -122.981935735999969, 49.181890232000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127616116", "BldgCostT": "84158879", "sL_LossRatio": "0.708586967703269", "sL_AssetLoss": "2235830", "sL_BldgLoss": "1584280", "sL_StrLoss": "645370", "sL_NStrLoss": "938910", "sL_ContLoss": "651550", "geom_point": "0101000020E610000094FF3D3611BF5EC0244B523EA99A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.981766382999922, 49.206762090000062 ], [ -122.981437006999954, 49.206531993000105 ], [ -122.981364189999965, 49.206460865000032 ], [ -122.981092507000014, 49.20619529400004 ], [ -122.981179485999959, 49.206197025000044 ], [ -122.981810813999914, 49.206209547000057 ], [ -122.982949263999942, 49.20623211300002 ], [ -122.983847117999986, 49.206249899000106 ], [ -122.984403271999952, 49.206298181000093 ], [ -122.984918208999886, 49.206342894000052 ], [ -122.985040448999939, 49.206360168000074 ], [ -122.985856401999953, 49.206475511000029 ], [ -122.987270004999957, 49.206726707000065 ], [ -122.988482503999947, 49.206755188000031 ], [ -122.988424721999962, 49.207668002000041 ], [ -122.988423724999919, 49.208531003000111 ], [ -122.98845839099998, 49.209412995000093 ], [ -122.988457314999962, 49.21031841000017 ], [ -122.985757499, 49.210325792000134 ], [ -122.982988504999966, 49.210320409000111 ], [ -122.98298690199999, 49.20939420900006 ], [ -122.982980909999981, 49.208537293000056 ], [ -122.982948729999976, 49.207684536000087 ], [ -122.982421000999949, 49.207248690000029 ], [ -122.981900413999966, 49.206855706000113 ], [ -122.981766382999922, 49.206762090000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130430833", "BldgCostT": "78193333", "sL_LossRatio": "0.656097226613307", "sL_AssetLoss": "2691691", "sL_BldgLoss": "1766011", "sL_StrLoss": "758791", "sL_NStrLoss": "1007220", "sL_ContLoss": "925680", "geom_point": "0101000020E610000031E3F1DDBBBE5EC090B67560CE9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977428413999945, 49.210250181000035 ], [ -122.977467006999987, 49.209339599000025 ], [ -122.97745738699993, 49.208454601000057 ], [ -122.977451818999938, 49.207633697000041 ], [ -122.979497628999965, 49.207657800000078 ], [ -122.98095281799999, 49.20766879300006 ], [ -122.982811407999961, 49.207683442000061 ], [ -122.982948729999976, 49.207684536000087 ], [ -122.982980909999981, 49.208537293000056 ], [ -122.98298690199999, 49.20939420900006 ], [ -122.982988504999966, 49.210320409000111 ], [ -122.983006799999899, 49.211201990000056 ], [ -122.979684901999946, 49.211172011 ], [ -122.979310393, 49.211167260000053 ], [ -122.978772803999945, 49.21116348500005 ], [ -122.977438186999933, 49.211153102000061 ], [ -122.977428413999945, 49.210250181000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127946977", "BldgCostT": "81939856", "sL_LossRatio": "0.683910483550467", "sL_AssetLoss": "2994310", "sL_BldgLoss": "2047840", "sL_StrLoss": "855190", "sL_NStrLoss": "1192650", "sL_ContLoss": "946470", "geom_point": "0101000020E6100000F3D2DA5584BE5EC0FBAA4B7CA49A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.974726491999974, 49.211131999000052 ], [ -122.974719375999953, 49.210229102000071 ], [ -122.972447584999927, 49.210195890000136 ], [ -122.972867487999963, 49.209291504000099 ], [ -122.973085985999916, 49.208823791000071 ], [ -122.973307997999896, 49.208407480000048 ], [ -122.97337417499989, 49.208296799000038 ], [ -122.97406088299999, 49.207593537 ], [ -122.974988672999984, 49.20662139600006 ], [ -122.977504316999912, 49.205709116000023 ], [ -122.97827247499994, 49.205418034000054 ], [ -122.978930201999958, 49.205640653000053 ], [ -122.979456692999989, 49.205818811000064 ], [ -122.980291183999967, 49.206067417000064 ], [ -122.980690430999928, 49.206131122000102 ], [ -122.981092507000014, 49.20619529400004 ], [ -122.981364189999965, 49.206460865000032 ], [ -122.981437006999954, 49.206531993000105 ], [ -122.981766382999922, 49.206762090000062 ], [ -122.981900413999966, 49.206855706000113 ], [ -122.982421000999949, 49.207248690000029 ], [ -122.982948729999976, 49.207684536000087 ], [ -122.982811407999961, 49.207683442000061 ], [ -122.98095281799999, 49.20766879300006 ], [ -122.979497628999965, 49.207657800000078 ], [ -122.977451818999938, 49.207633697000041 ], [ -122.97745738699993, 49.208454601000057 ], [ -122.977467006999987, 49.209339599000025 ], [ -122.977428413999945, 49.210250181000035 ], [ -122.977438186999933, 49.211153102000061 ], [ -122.974726491999974, 49.211131999000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79193166", "BldgCostT": "52176666", "sL_LossRatio": "0.687388485138605", "sL_AssetLoss": "1838320", "sL_BldgLoss": "1263640", "sL_StrLoss": "517740", "sL_NStrLoss": "745900", "sL_ContLoss": "574680", "geom_point": "0101000020E61000002124B9995DBE5EC05181F6971B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.972028002999963, 49.211096808000072 ], [ -122.972447584999927, 49.210195890000136 ], [ -122.974719375999953, 49.210229102000071 ], [ -122.974726491999974, 49.211131999000052 ], [ -122.977438186999933, 49.211153102000061 ], [ -122.977447785999928, 49.212059699000072 ], [ -122.977455400999986, 49.212956303000098 ], [ -122.974753517999943, 49.21292908700007 ], [ -122.971931012999931, 49.212900306000058 ], [ -122.971917596999944, 49.212010805000048 ], [ -122.97190531699999, 49.211357292000059 ], [ -122.972028002999963, 49.211096808000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78940751", "BldgCostT": "51025001", "sL_LossRatio": "0.709178223754483", "sL_AssetLoss": "1151530", "sL_BldgLoss": "816640", "sL_StrLoss": "382250", "sL_NStrLoss": "434390", "sL_ContLoss": "334890", "geom_point": "0101000020E6100000EC4B3E8FB4BE5EC000529B38399B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.979684901999946, 49.211172011 ], [ -122.983006799999899, 49.211201990000056 ], [ -122.983013881999966, 49.212106596000055 ], [ -122.98302388399999, 49.213007795000166 ], [ -122.980225799999971, 49.212983493000081 ], [ -122.98023609399999, 49.213880205000066 ], [ -122.980225694999959, 49.214822205000139 ], [ -122.977517204999941, 49.214789492000136 ], [ -122.977465278999944, 49.213857391000083 ], [ -122.977455400999986, 49.212956303000098 ], [ -122.977447785999928, 49.212059699000072 ], [ -122.977438186999933, 49.211153102000061 ], [ -122.978772803999945, 49.21116348500005 ], [ -122.979310393, 49.211167260000053 ], [ -122.979684901999946, 49.211172011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171060585", "BldgCostT": "113218335", "sL_LossRatio": "0.749642880917018", "sL_AssetLoss": "1832722", "sL_BldgLoss": "1373887", "sL_StrLoss": "618787", "sL_NStrLoss": "755100", "sL_ContLoss": "458835", "geom_point": "0101000020E6100000E8DA939767BE5EC061659F8D7D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.974753517999943, 49.21292908700007 ], [ -122.977455400999986, 49.212956303000098 ], [ -122.977465278999944, 49.213857391000083 ], [ -122.977517204999941, 49.214789492000136 ], [ -122.977523680999951, 49.215638296000101 ], [ -122.97754112, 49.216313383000056 ], [ -122.977572390999967, 49.217527016000091 ], [ -122.977569433000014, 49.217572846000031 ], [ -122.977559249999942, 49.217728644000047 ], [ -122.976379794999986, 49.217218723000094 ], [ -122.973574804999913, 49.215821696000027 ], [ -122.972123860999957, 49.215344312000134 ], [ -122.972021177999963, 49.215321186000033 ], [ -122.972018425999977, 49.215222943000079 ], [ -122.972013911999966, 49.215061617000039 ], [ -122.972004409999926, 49.214721305000054 ], [ -122.971986049999941, 49.214270201000019 ], [ -122.97196750699996, 49.21381301600011 ], [ -122.971949434999914, 49.213361610000085 ], [ -122.971931012999931, 49.212900306000058 ], [ -122.974753517999943, 49.21292908700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61253751", "BldgCostT": "40565001", "sL_LossRatio": "0.719145802650957", "sL_AssetLoss": "950600", "sL_BldgLoss": "683620", "sL_StrLoss": "312930", "sL_NStrLoss": "370690", "sL_ContLoss": "266980", "geom_point": "0101000020E6100000ADC26EF1D3BE5EC07F266F3E7D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.983033711999923, 49.213913488000053 ], [ -122.985763012999911, 49.213941187000067 ], [ -122.985762687999951, 49.214855600000107 ], [ -122.984319051999975, 49.214858272000107 ], [ -122.983043593999966, 49.214860614000031 ], [ -122.982752701999942, 49.214858686000049 ], [ -122.982756465999955, 49.2151536370001 ], [ -122.982762395999913, 49.215618408000104 ], [ -122.981572438999976, 49.215622946000046 ], [ -122.977523680999951, 49.215638296000101 ], [ -122.977517204999941, 49.214789492000136 ], [ -122.980225694999959, 49.214822205000139 ], [ -122.98023609399999, 49.213880205000066 ], [ -122.983033711999923, 49.213913488000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73484083", "BldgCostT": "49918333", "sL_LossRatio": "0.730980814172937", "sL_AssetLoss": "1245190", "sL_BldgLoss": "910210", "sL_StrLoss": "412310", "sL_NStrLoss": "497900", "sL_ContLoss": "334980", "geom_point": "0101000020E610000084398B28F7BE5EC01F458C8D2F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.982988504999966, 49.210320409000111 ], [ -122.985757499, 49.210325792000134 ], [ -122.985739886999937, 49.211167604000067 ], [ -122.985775292999946, 49.211214618000021 ], [ -122.985819502999959, 49.211273504000125 ], [ -122.985798413999987, 49.212126903000105 ], [ -122.985763513999956, 49.212179099000139 ], [ -122.985763513999956, 49.213024094000019 ], [ -122.985763012999911, 49.213941187000067 ], [ -122.983033711999923, 49.213913488000053 ], [ -122.98023609399999, 49.213880205000066 ], [ -122.980225799999971, 49.212983493000081 ], [ -122.98302388399999, 49.213007795000166 ], [ -122.983013881999966, 49.212106596000055 ], [ -122.983006799999899, 49.211201990000056 ], [ -122.982988504999966, 49.210320409000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180846333", "BldgCostT": "117813333", "sL_LossRatio": "0.719407536280686", "sL_AssetLoss": "2138190", "sL_BldgLoss": "1538230", "sL_StrLoss": "650870", "sL_NStrLoss": "887360", "sL_ContLoss": "599960", "geom_point": "0101000020E6100000BF05D0F72CBF5EC096B68F47369B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.985757499, 49.210325792000134 ], [ -122.988457314999962, 49.21031841000017 ], [ -122.988458311999963, 49.211213903000051 ], [ -122.988464386999937, 49.212114006000121 ], [ -122.988474488999913, 49.213016989000081 ], [ -122.988482220999941, 49.213913608000048 ], [ -122.988473305999918, 49.214854690000074 ], [ -122.985762687999951, 49.214855600000107 ], [ -122.985763012999911, 49.213941187000067 ], [ -122.985763513999956, 49.213024094000019 ], [ -122.985763513999956, 49.212179099000139 ], [ -122.985798413999987, 49.212126903000105 ], [ -122.985819502999959, 49.211273504000125 ], [ -122.985775292999946, 49.211214618000021 ], [ -122.985739886999937, 49.211167604000067 ], [ -122.985757499, 49.210325792000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392792644", "BldgCostT": "259806523", "sL_LossRatio": "0.738854551860621", "sL_AssetLoss": "3036890", "sL_BldgLoss": "2243820", "sL_StrLoss": "1071960", "sL_NStrLoss": "1171860", "sL_ContLoss": "793070", "geom_point": "0101000020E61000006469C08313BF5EC0F7F93805BF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.982918300999984, 49.218753293000049 ], [ -122.982808141999925, 49.216538496000098 ], [ -122.982804957999917, 49.216474446000092 ], [ -122.982762395999913, 49.215618408000104 ], [ -122.982756465999955, 49.2151536370001 ], [ -122.982752701999942, 49.214858686000049 ], [ -122.983043593999966, 49.214860614000031 ], [ -122.984319051999975, 49.214858272000107 ], [ -122.985762687999951, 49.214855600000107 ], [ -122.988473305999918, 49.214854690000074 ], [ -122.988449720999981, 49.215579304000045 ], [ -122.988434826999963, 49.216045186000024 ], [ -122.988420396999928, 49.216496487 ], [ -122.988454004999966, 49.21752260400006 ], [ -122.988500785999975, 49.218495016000105 ], [ -122.987594592999955, 49.218499401000038 ], [ -122.985041872999943, 49.218495588000032 ], [ -122.985054730999977, 49.219186069000088 ], [ -122.982918300999984, 49.218753293000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "955420969", "BldgCostT": "649434427", "sL_LossRatio": "0.792746462976852", "sL_AssetLoss": "5493320", "sL_BldgLoss": "4354810", "sL_StrLoss": "1932380", "sL_NStrLoss": "2422430", "sL_ContLoss": "1138510", "geom_point": "0101000020E61000001F4CFD9BDBBE5EC0BD84CF18DE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.982930723, 49.219132003 ], [ -122.982926859999978, 49.219014097000105 ], [ -122.982622377999959, 49.218978303000014 ], [ -122.982345567999957, 49.218946025000029 ], [ -122.981400527999966, 49.218760404000129 ], [ -122.981142726999963, 49.218708883000083 ], [ -122.980245120999911, 49.218529406000123 ], [ -122.979457484999983, 49.218398292000082 ], [ -122.979204171999967, 49.218356445000076 ], [ -122.978694854999929, 49.218239114000056 ], [ -122.977559249999942, 49.217728644000047 ], [ -122.977569433000014, 49.217572846000031 ], [ -122.977572390999967, 49.217527016000091 ], [ -122.97754112, 49.216313383000056 ], [ -122.977523680999951, 49.215638296000101 ], [ -122.981572438999976, 49.215622946000046 ], [ -122.982762395999913, 49.215618408000104 ], [ -122.982804957999917, 49.216474446000092 ], [ -122.982808141999925, 49.216538496000098 ], [ -122.982918300999984, 49.218753293000049 ], [ -122.985054730999977, 49.219186069000088 ], [ -122.985041872999943, 49.218495588000032 ], [ -122.987594592999955, 49.218499401000038 ], [ -122.988500785999975, 49.218495016000105 ], [ -122.988536027999913, 49.219003598 ], [ -122.988596531, 49.219876034000016 ], [ -122.98860926699993, 49.220064521000033 ], [ -122.988614166999952, 49.220136745000033 ], [ -122.988629874999958, 49.220368823000044 ], [ -122.986972806999944, 49.220044209000051 ], [ -122.985878711999931, 49.219805793000035 ], [ -122.984710709999931, 49.219538846000034 ], [ -122.982930723, 49.219132003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1398702008", "BldgCostT": "815630557", "sL_LossRatio": "0.620844522952124", "sL_AssetLoss": "19345312", "sL_BldgLoss": "12010431", "sL_StrLoss": "4178401", "sL_NStrLoss": "7832030", "sL_ContLoss": "7334881", "geom_point": "0101000020E6100000817F1134A6BE5EC0AD51A7133B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.980801723999932, 49.226121706000058 ], [ -122.980775281999982, 49.224945350000048 ], [ -122.980017211999922, 49.224944722000046 ], [ -122.979217303999974, 49.224943996000086 ], [ -122.979201799999942, 49.222967099000115 ], [ -122.979217806999898, 49.222376857 ], [ -122.979228312999979, 49.221989489000087 ], [ -122.979048393999975, 49.222011497000111 ], [ -122.976318494999987, 49.22202779100008 ], [ -122.976350087999947, 49.221015202000018 ], [ -122.976120889999891, 49.220952907000061 ], [ -122.974759980000016, 49.220582300000032 ], [ -122.973476293999951, 49.22027150300007 ], [ -122.973560309999954, 49.217549592000076 ], [ -122.972071087999979, 49.217507796000092 ], [ -122.972072343999969, 49.217151935000047 ], [ -122.970790957999938, 49.217105800000063 ], [ -122.96876025399996, 49.217032691000057 ], [ -122.968530017999925, 49.217024400000099 ], [ -122.967308607999954, 49.216980180000121 ], [ -122.965740196999931, 49.216909889000078 ], [ -122.965737602999965, 49.216005405 ], [ -122.965734689999948, 49.215104417000077 ], [ -122.963958699999978, 49.215147211000065 ], [ -122.96396107799994, 49.215977022000111 ], [ -122.963961183999942, 49.216011205000029 ], [ -122.963961575999946, 49.216147950000092 ], [ -122.963963518999918, 49.216858098000039 ], [ -122.961041800999979, 49.216766708000051 ], [ -122.960933812999883, 49.217179909000052 ], [ -122.96093218599999, 49.216198794000086 ], [ -122.960769213999981, 49.215647406000066 ], [ -122.960566515999972, 49.215348 ], [ -122.960283302999954, 49.21510388100009 ], [ -122.96037249699999, 49.215061414000111 ], [ -122.960414765999943, 49.215041910000082 ], [ -122.960880600999985, 49.214827106000023 ], [ -122.960982480999974, 49.214798129000073 ], [ -122.961388196999977, 49.214682786000026 ], [ -122.961611385999973, 49.214662121000124 ], [ -122.961709877999908, 49.214764475000081 ], [ -122.962066066999952, 49.21497389900005 ], [ -122.962823504999932, 49.21503039000001 ], [ -122.963442775999951, 49.215010670000062 ], [ -122.964002196999957, 49.214969367000066 ], [ -122.96569490399996, 49.214914297000057 ], [ -122.967176130999988, 49.214896821000067 ], [ -122.968817186999942, 49.214815717000064 ], [ -122.969753047999944, 49.214841127000078 ], [ -122.970525944999949, 49.214952374000113 ], [ -122.970687622999932, 49.214984206000032 ], [ -122.97128851899997, 49.215118883000109 ], [ -122.972021177999963, 49.215321186000033 ], [ -122.972123860999957, 49.215344312000134 ], [ -122.973574804999913, 49.215821696000027 ], [ -122.976379794999986, 49.217218723000094 ], [ -122.977559249999942, 49.217728644000047 ], [ -122.978694854999929, 49.218239114000056 ], [ -122.979204171999967, 49.218356445000076 ], [ -122.979457484999983, 49.218398292000082 ], [ -122.980245120999911, 49.218529406000123 ], [ -122.981142726999963, 49.218708883000083 ], [ -122.981400527999966, 49.218760404000129 ], [ -122.982345567999957, 49.218946025000029 ], [ -122.982622377999959, 49.218978303000014 ], [ -122.982926859999978, 49.219014097000105 ], [ -122.982930723, 49.219132003 ], [ -122.984710709999931, 49.219538846000034 ], [ -122.985878711999931, 49.219805793000035 ], [ -122.986972806999944, 49.220044209000051 ], [ -122.988629874999958, 49.220368823000044 ], [ -122.988702529999941, 49.22144210500003 ], [ -122.988734623999932, 49.221915903000131 ], [ -122.988879500999985, 49.222496485000057 ], [ -122.9889174959999, 49.223392109000024 ], [ -122.98891759299994, 49.223560509000087 ], [ -122.988925421999951, 49.224248671000097 ], [ -122.98893404399999, 49.225000560000133 ], [ -122.988932890999962, 49.225391228000085 ], [ -122.988930601, 49.226195895000082 ], [ -122.98739421599997, 49.226179989000045 ], [ -122.98656796099999, 49.226171780000122 ], [ -122.98573831299997, 49.226163497000073 ], [ -122.984061905999965, 49.226145388000106 ], [ -122.982414319999975, 49.226128999000089 ], [ -122.980801723999932, 49.226121706000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150282988", "BldgCostT": "92198317", "sL_LossRatio": "0.673413170180068", "sL_AssetLoss": "1724350", "sL_BldgLoss": "1161200", "sL_StrLoss": "518560", "sL_NStrLoss": "642640", "sL_ContLoss": "563150", "geom_point": "0101000020E6100000FD79BE2C4EBE5EC03BF117AB349C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.972071087999979, 49.217507796000092 ], [ -122.973560309999954, 49.217549592000076 ], [ -122.973476293999951, 49.22027150300007 ], [ -122.974759980000016, 49.220582300000032 ], [ -122.976120889999891, 49.220952907000061 ], [ -122.976350087999947, 49.221015202000018 ], [ -122.976318494999987, 49.22202779100008 ], [ -122.973325713999955, 49.222033901000046 ], [ -122.972122885999951, 49.222018105000075 ], [ -122.971959691, 49.221995501 ], [ -122.972035578999964, 49.219925609 ], [ -122.972055194999896, 49.21836308700005 ], [ -122.972071087999979, 49.217507796000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125090697", "BldgCostT": "82985269", "sL_LossRatio": "0.747583397871669", "sL_AssetLoss": "1394520", "sL_BldgLoss": "1042520", "sL_StrLoss": "485450", "sL_NStrLoss": "557070", "sL_ContLoss": "352000", "geom_point": "0101000020E610000091B13D27FBBD5EC09A231A93349C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.971959691, 49.221995501 ], [ -122.971605192, 49.221958490000112 ], [ -122.970826190999958, 49.221947398000083 ], [ -122.970773901999976, 49.221824303000076 ], [ -122.970769791999913, 49.221529087000086 ], [ -122.970764199999948, 49.221131281000083 ], [ -122.96706875699995, 49.221119910000034 ], [ -122.965461934999922, 49.221114903000107 ], [ -122.964755891999971, 49.221112711000025 ], [ -122.964757974999912, 49.220627820000139 ], [ -122.964759715999932, 49.220215597000049 ], [ -122.964765292999942, 49.219331098000048 ], [ -122.967235604999985, 49.219358297000056 ], [ -122.967998496999925, 49.219172508999989 ], [ -122.968039488999963, 49.219070089000041 ], [ -122.97079808399991, 49.219664689000076 ], [ -122.972035578999964, 49.219925609 ], [ -122.971959691, 49.221995501 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104601447", "BldgCostT": "67250269", "sL_LossRatio": "0.697515109036328", "sL_AssetLoss": "756170", "sL_BldgLoss": "527440", "sL_StrLoss": "240790", "sL_NStrLoss": "286650", "sL_ContLoss": "228730", "geom_point": "0101000020E6100000915E0629D9BD5EC02DF015DDFA9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.965564701999938, 49.217768911000078 ], [ -122.966281685999903, 49.217761207000073 ], [ -122.96665161599995, 49.217809621000114 ], [ -122.966834223999967, 49.21783349800004 ], [ -122.967042783999958, 49.217885931000119 ], [ -122.967516127999957, 49.218004896000103 ], [ -122.967596407999977, 49.218037118000055 ], [ -122.968310603999896, 49.218323690000084 ], [ -122.96830830299993, 49.218421798000051 ], [ -122.968147652999974, 49.218809233000073 ], [ -122.968114341999964, 49.218889580000095 ], [ -122.968039488999963, 49.219070089000041 ], [ -122.967998496999925, 49.219172508999989 ], [ -122.967235604999985, 49.219358297000056 ], [ -122.964765292999942, 49.219331098000048 ], [ -122.964774819999903, 49.218451194000117 ], [ -122.96478285699996, 49.218271288000039 ], [ -122.964792431999967, 49.218056597000079 ], [ -122.964795500999969, 49.217987785000048 ], [ -122.96485270399991, 49.217889388000067 ], [ -122.964855286, 49.217888461000101 ], [ -122.964860549999983, 49.217886568000047 ], [ -122.965014399999987, 49.217830914000096 ], [ -122.965138967999977, 49.217816888000051 ], [ -122.965327226999989, 49.217795665000061 ], [ -122.965409749999978, 49.217786362000027 ], [ -122.965564701999938, 49.217768911000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89412866", "BldgCostT": "50988879", "sL_LossRatio": "0.622336963862523", "sL_AssetLoss": "1628780", "sL_BldgLoss": "1013650", "sL_StrLoss": "437310", "sL_NStrLoss": "576340", "sL_ContLoss": "615130", "geom_point": "0101000020E6100000C15811FBE5BD5EC0224C625AE59B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.96665161599995, 49.217809621000114 ], [ -122.966281685999903, 49.217761207000073 ], [ -122.965564701999938, 49.217768911000078 ], [ -122.965409749999978, 49.217786362000027 ], [ -122.965327226999989, 49.217795665000061 ], [ -122.965138967999977, 49.217816888000051 ], [ -122.965014399999987, 49.217830914000096 ], [ -122.964860549999983, 49.217886568000047 ], [ -122.964855286, 49.217888461000101 ], [ -122.96485270399991, 49.217889388000067 ], [ -122.964795500999969, 49.217987785000048 ], [ -122.964792431999967, 49.218056597000079 ], [ -122.96478285699996, 49.218271288000039 ], [ -122.964774819999903, 49.218451194000117 ], [ -122.964145529999968, 49.218448739000038 ], [ -122.964076878999947, 49.218448460000104 ], [ -122.960987492999962, 49.21843630800003 ], [ -122.960983103000032, 49.218356001000124 ], [ -122.960938388999935, 49.218305208000096 ], [ -122.960933812999883, 49.217179909000052 ], [ -122.961041800999979, 49.216766708000051 ], [ -122.963963518999918, 49.216858098000039 ], [ -122.964050410999945, 49.216860640000064 ], [ -122.965740196999931, 49.216909889000078 ], [ -122.967308607999954, 49.216980180000121 ], [ -122.968530017999925, 49.217024400000099 ], [ -122.96876025399996, 49.217032691000057 ], [ -122.970790957999938, 49.217105800000063 ], [ -122.972072343999969, 49.217151935000047 ], [ -122.972071087999979, 49.217507796000092 ], [ -122.972055194999896, 49.21836308700005 ], [ -122.972035578999964, 49.219925609 ], [ -122.97079808399991, 49.219664689000076 ], [ -122.968039488999963, 49.219070089000041 ], [ -122.968114341999964, 49.218889580000095 ], [ -122.968147652999974, 49.218809233000073 ], [ -122.96830830299993, 49.218421798000051 ], [ -122.968310603999896, 49.218323690000084 ], [ -122.967596407999977, 49.218037118000055 ], [ -122.967516127999957, 49.218004896000103 ], [ -122.967042783999958, 49.217885931000119 ], [ -122.966834223999967, 49.21783349800004 ], [ -122.96665161599995, 49.217809621000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26645667", "BldgCostT": "17066667", "sL_LossRatio": "0.670540480427046", "sL_AssetLoss": "539520", "sL_BldgLoss": "361770", "sL_StrLoss": "135320", "sL_NStrLoss": "226450", "sL_ContLoss": "177750", "geom_point": "0101000020E6100000DE76CA38C0BD5EC0A67CEF0CA69B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963958699999978, 49.215147211000065 ], [ -122.965734689999948, 49.215104417000077 ], [ -122.965737602999965, 49.216005405 ], [ -122.965740196999931, 49.216909889000078 ], [ -122.964050410999945, 49.216860640000064 ], [ -122.963963518999918, 49.216858098000039 ], [ -122.963961575999946, 49.216147950000092 ], [ -122.963961183999942, 49.216011205000029 ], [ -122.96396107799994, 49.215977022000111 ], [ -122.963958699999978, 49.215147211000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413825311", "BldgCostT": "278388190", "sL_LossRatio": "0.81782783223128", "sL_AssetLoss": "2909720", "sL_BldgLoss": "2379650", "sL_StrLoss": "1084750", "sL_NStrLoss": "1294900", "sL_ContLoss": "530070", "geom_point": "0101000020E61000001FE8E3D29FBD5EC0FF1873D7129C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.964145529999968, 49.218448739000038 ], [ -122.964774819999903, 49.218451194000117 ], [ -122.964765292999942, 49.219331098000048 ], [ -122.964759715999932, 49.220215597000049 ], [ -122.964103051999956, 49.220212973000052 ], [ -122.960995575999902, 49.220200498000054 ], [ -122.960995412999964, 49.21974509300005 ], [ -122.960995195999928, 49.219325703000059 ], [ -122.960987492999962, 49.21843630800003 ], [ -122.964076878999947, 49.218448460000104 ], [ -122.964145529999968, 49.218448739000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127631333", "BldgCostT": "85073333", "sL_LossRatio": "0.718209053930045", "sL_AssetLoss": "2758073", "sL_BldgLoss": "1980873", "sL_StrLoss": "839663", "sL_NStrLoss": "1141210", "sL_ContLoss": "777200", "geom_point": "0101000020E6100000E5EE8C1915BE5EC0E1B611AA2F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.970525944999949, 49.214952374000113 ], [ -122.969753047999944, 49.214841127000078 ], [ -122.968817186999942, 49.214815717000064 ], [ -122.967176130999988, 49.214896821000067 ], [ -122.96569490399996, 49.214914297000057 ], [ -122.964002196999957, 49.214969367000066 ], [ -122.96427015099999, 49.214667954000078 ], [ -122.965648002999899, 49.214675895000049 ], [ -122.966660781999963, 49.214681747000085 ], [ -122.967382892, 49.214685889000108 ], [ -122.967376841999965, 49.21424178200008 ], [ -122.967370798999951, 49.213799100000152 ], [ -122.967361020999988, 49.213351168000074 ], [ -122.967351203999954, 49.212902202000073 ], [ -122.967349090999903, 49.212766637000129 ], [ -122.967344504999943, 49.212469828000053 ], [ -122.967342963999897, 49.21237087700009 ], [ -122.967337526999955, 49.21201800900009 ], [ -122.967329508999981, 49.211721408000088 ], [ -122.967357307999976, 49.211634392000072 ], [ -122.967363994999957, 49.211613395000072 ], [ -122.967516991999958, 49.211560006000056 ], [ -122.969477783999963, 49.211439505000023 ], [ -122.969480230999963, 49.21081529800005 ], [ -122.969480381999929, 49.210768413000068 ], [ -122.969539388999976, 49.210558300000102 ], [ -122.970133495999946, 49.210159692000055 ], [ -122.970379846999933, 49.209993775000058 ], [ -122.970894438999963, 49.209647140000072 ], [ -122.970922993, 49.209627894000064 ], [ -122.971022513999984, 49.209473204000155 ], [ -122.971319126999958, 49.208989772000088 ], [ -122.971394089999976, 49.208870147 ], [ -122.97157280099999, 49.20835430700005 ], [ -122.971667227999902, 49.20827490199999 ], [ -122.971708283999973, 49.208260268000039 ], [ -122.97189898699996, 49.208192293000153 ], [ -122.972087191999947, 49.208188507000031 ], [ -122.972217202999971, 49.208214708000135 ], [ -122.972527228999965, 49.208432059000096 ], [ -122.973085985999916, 49.208823791000071 ], [ -122.972867487999963, 49.209291504000099 ], [ -122.972447584999927, 49.210195890000136 ], [ -122.972028002999963, 49.211096808000072 ], [ -122.97190531699999, 49.211357292000059 ], [ -122.971917596999944, 49.212010805000048 ], [ -122.971931012999931, 49.212900306000058 ], [ -122.971949434999914, 49.213361610000085 ], [ -122.97196750699996, 49.21381301600011 ], [ -122.971986049999941, 49.214270201000019 ], [ -122.972004409999926, 49.214721305000054 ], [ -122.972013911999966, 49.215061617000039 ], [ -122.972018425999977, 49.215222943000079 ], [ -122.972021177999963, 49.215321186000033 ], [ -122.97128851899997, 49.215118883000109 ], [ -122.970687622999932, 49.214984206000032 ], [ -122.970525944999949, 49.214952374000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115212365", "BldgCostT": "68981937", "sL_LossRatio": "0.625008355180583", "sL_AssetLoss": "2692940", "sL_BldgLoss": "1683110", "sL_StrLoss": "684340", "sL_NStrLoss": "998770", "sL_ContLoss": "1009830", "geom_point": "0101000020E6100000C6C3A5D7E4BD5EC03D776816F09A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959385141999988, 49.212051045000074 ], [ -122.958619605999985, 49.211126271000111 ], [ -122.957886092999928, 49.210088190000128 ], [ -122.957879372999983, 49.210078708 ], [ -122.95787918799999, 49.210078481000053 ], [ -122.957521607999951, 49.210226115000076 ], [ -122.957652309999958, 49.210167555000076 ], [ -122.957784273999948, 49.210108469 ], [ -122.957875402999974, 49.210067686000052 ], [ -122.95795712599994, 49.210031084000079 ], [ -122.958320409999914, 49.209868412000041 ], [ -122.959241295999959, 49.211104316000061 ], [ -122.959736796999962, 49.211501222000038 ], [ -122.959881717999906, 49.211552096000055 ], [ -122.960034609999951, 49.21152310600008 ], [ -122.960581222000016, 49.211226674000038 ], [ -122.962147500999905, 49.210377286000067 ], [ -122.962864202999981, 49.209988327000076 ], [ -122.962971301999929, 49.209930207000099 ], [ -122.963999251999894, 49.209531684000076 ], [ -122.964137769999979, 49.209608666000115 ], [ -122.96437779199999, 49.209763084000024 ], [ -122.96437754499999, 49.210107233000059 ], [ -122.965553951999965, 49.210140363000093 ], [ -122.965513373999926, 49.210761437 ], [ -122.965612773000018, 49.210761466000086 ], [ -122.965612957999952, 49.210491608000055 ], [ -122.966024854999986, 49.210491730000108 ], [ -122.96602504099999, 49.210221871000023 ], [ -122.966436933999944, 49.210221992000086 ], [ -122.966437115999966, 49.209952133000129 ], [ -122.966849009, 49.209952252000058 ], [ -122.966849188999944, 49.209682394000076 ], [ -122.967261080999918, 49.209682511000032 ], [ -122.967261256999961, 49.209412653000093 ], [ -122.967673145, 49.20941276800005 ], [ -122.967673320999921, 49.209142910000033 ], [ -122.968085205999969, 49.209143025000095 ], [ -122.96808538, 49.208873165000064 ], [ -122.968497262999932, 49.208873279000059 ], [ -122.968497433999985, 49.208603420000074 ], [ -122.968909315999937, 49.208603531000051 ], [ -122.96890948399999, 49.208333673000034 ], [ -122.969321364, 49.208333783000036 ], [ -122.969321696999927, 49.207794066000055 ], [ -122.969292622, 49.207794059000072 ], [ -122.97052019600001, 49.207172912000026 ], [ -122.969938078, 49.206616823000047 ], [ -122.973089583999979, 49.205391545000062 ], [ -122.97357580399995, 49.205202489000072 ], [ -122.974533360999928, 49.205049217000088 ], [ -122.974754884999953, 49.20501373600009 ], [ -122.97476832, 49.205011613000053 ], [ -122.975811763, 49.204856104000072 ], [ -122.976049975999985, 49.204820594000068 ], [ -122.976077028999967, 49.204887994 ], [ -122.976085426999944, 49.204908947000028 ], [ -122.976143212999943, 49.205012376000063 ], [ -122.976261715999911, 49.205088658000129 ], [ -122.977249748999967, 49.205150629000094 ], [ -122.977754145999967, 49.20524404800004 ], [ -122.97827247499994, 49.205418034000054 ], [ -122.977504316999912, 49.205709116000023 ], [ -122.974988672999984, 49.20662139600006 ], [ -122.97406088299999, 49.207593537 ], [ -122.97337417499989, 49.208296799000038 ], [ -122.973307997999896, 49.208407480000048 ], [ -122.973085985999916, 49.208823791000071 ], [ -122.972527228999965, 49.208432059000096 ], [ -122.972217202999971, 49.208214708000135 ], [ -122.972087191999947, 49.208188507000031 ], [ -122.97189898699996, 49.208192293000153 ], [ -122.971708283999973, 49.208260268000039 ], [ -122.971667227999902, 49.20827490199999 ], [ -122.97157280099999, 49.20835430700005 ], [ -122.971394089999976, 49.208870147 ], [ -122.971319126999958, 49.208989772000088 ], [ -122.971022513999984, 49.209473204000155 ], [ -122.970922993, 49.209627894000064 ], [ -122.970894438999963, 49.209647140000072 ], [ -122.970379846999933, 49.209993775000058 ], [ -122.970133495999946, 49.210159692000055 ], [ -122.969539388999976, 49.210558300000102 ], [ -122.969480381999929, 49.210768413000068 ], [ -122.969480230999963, 49.21081529800005 ], [ -122.969477783999963, 49.211439505000023 ], [ -122.967516991999958, 49.211560006000056 ], [ -122.967363994999957, 49.211613395000072 ], [ -122.967357307999976, 49.211634392000072 ], [ -122.967329508999981, 49.211721408000088 ], [ -122.967337526999955, 49.21201800900009 ], [ -122.967342963999897, 49.21237087700009 ], [ -122.967344504999943, 49.212469828000053 ], [ -122.967349090999903, 49.212766637000129 ], [ -122.967351203999954, 49.212902202000073 ], [ -122.967361020999988, 49.213351168000074 ], [ -122.967370798999951, 49.213799100000152 ], [ -122.967376841999965, 49.21424178200008 ], [ -122.967382892, 49.214685889000108 ], [ -122.966660781999963, 49.214681747000085 ], [ -122.965648002999899, 49.214675895000049 ], [ -122.96427015099999, 49.214667954000078 ], [ -122.964002196999957, 49.214969367000066 ], [ -122.963442775999951, 49.215010670000062 ], [ -122.962823504999932, 49.21503039000001 ], [ -122.962066066999952, 49.21497389900005 ], [ -122.961709877999908, 49.214764475000081 ], [ -122.961611385999973, 49.214662121000124 ], [ -122.961593707999924, 49.21464533300005 ], [ -122.960911805999913, 49.213997850000048 ], [ -122.960867142999959, 49.213949139000057 ], [ -122.960730067999975, 49.2137693110001 ], [ -122.96042241, 49.213397946000065 ], [ -122.960382822999946, 49.213350176000155 ], [ -122.960338522999933, 49.213296709000062 ], [ -122.960253931999915, 49.213208123000115 ], [ -122.960082701, 49.213028928000092 ], [ -122.959475067999918, 49.212177085000093 ], [ -122.959385141999988, 49.212051045000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164124477", "BldgCostT": "111299856", "sL_LossRatio": "0.762115853253809", "sL_AssetLoss": "2109220", "sL_BldgLoss": "1607470", "sL_StrLoss": "695070", "sL_NStrLoss": "912400", "sL_ContLoss": "501750", "geom_point": "0101000020E61000007149BCD972BD5EC030371079E89A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.958320409999914, 49.209868412000041 ], [ -122.958370428999956, 49.209841488000087 ], [ -122.958476361999956, 49.20978439300012 ], [ -122.959202360999939, 49.209393307000063 ], [ -122.959870872999929, 49.209033805000104 ], [ -122.960189461999988, 49.208841879000069 ], [ -122.961924855999911, 49.210202707000114 ], [ -122.962147500999905, 49.210377286000067 ], [ -122.960581222000016, 49.211226674000038 ], [ -122.960034609999951, 49.21152310600008 ], [ -122.959881717999906, 49.211552096000055 ], [ -122.959736796999962, 49.211501222000038 ], [ -122.959241295999959, 49.211104316000061 ], [ -122.958320409999914, 49.209868412000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "270264249", "BldgCostT": "174429999", "sL_LossRatio": "0.690081525321751", "sL_AssetLoss": "4171710", "sL_BldgLoss": "2878820", "sL_StrLoss": "1235430", "sL_NStrLoss": "1643390", "sL_ContLoss": "1292890", "geom_point": "0101000020E6100000075CD4DDABBD5EC0613A4AB1659A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.961924855999911, 49.210202707000114 ], [ -122.960189461999988, 49.208841879000069 ], [ -122.959870872999929, 49.209033805000104 ], [ -122.959202360999939, 49.209393307000063 ], [ -122.958476361999956, 49.20978439300012 ], [ -122.958370428999956, 49.209841488000087 ], [ -122.958320409999914, 49.209868412000041 ], [ -122.95795712599994, 49.210031084000079 ], [ -122.957875402999974, 49.210067686000052 ], [ -122.957784273999948, 49.210108469 ], [ -122.957652309999958, 49.210167555000076 ], [ -122.957521607999951, 49.210226115000076 ], [ -122.957781835999953, 49.209932112000104 ], [ -122.957201319999967, 49.209199303000034 ], [ -122.95715785199998, 49.209144440000067 ], [ -122.956546404, 49.208372619000066 ], [ -122.956437017999946, 49.208234522000055 ], [ -122.956400555999892, 49.208082606000104 ], [ -122.956400470999967, 49.208070784000085 ], [ -122.956398319999948, 49.207724701000053 ], [ -122.957213445999983, 49.206864528000025 ], [ -122.958172269999949, 49.205977735000033 ], [ -122.959306226999971, 49.204878250000036 ], [ -122.95940116599995, 49.204781678000117 ], [ -122.959458957999971, 49.204722892000071 ], [ -122.96028631199999, 49.203734690000033 ], [ -122.960062499999935, 49.203442444000096 ], [ -122.959332026999974, 49.202777702000077 ], [ -122.958564933999966, 49.202265683000107 ], [ -122.958510803999928, 49.202243836000036 ], [ -122.959951340999936, 49.201367585000064 ], [ -122.960319705999936, 49.201236455000085 ], [ -122.96061020300003, 49.201133019000025 ], [ -122.961122986999953, 49.20160727600004 ], [ -122.961244164, 49.201719381000082 ], [ -122.961864190999947, 49.202162085000083 ], [ -122.962611168999942, 49.202489450000016 ], [ -122.962781470999929, 49.202550100000025 ], [ -122.963260967999958, 49.202729773000058 ], [ -122.963927550999969, 49.202979535000097 ], [ -122.964596242999917, 49.203230073000086 ], [ -122.965341736999974, 49.203434616000074 ], [ -122.966381421999984, 49.20371983900003 ], [ -122.96646134599996, 49.203741747000024 ], [ -122.966597953999965, 49.203779221000076 ], [ -122.966952014999919, 49.203868999000029 ], [ -122.967401097999954, 49.203982908000057 ], [ -122.968521381999977, 49.204267599000033 ], [ -122.969552965999966, 49.204514739000075 ], [ -122.970216896999901, 49.204673810000045 ], [ -122.970749598999987, 49.204774398000062 ], [ -122.97116190899996, 49.204806695000109 ], [ -122.97194154099999, 49.204854091000058 ], [ -122.973478564999965, 49.204947477000083 ], [ -122.974032457999925, 49.204975012000098 ], [ -122.97454713399992, 49.205000611000109 ], [ -122.974754424999972, 49.205010924000113 ], [ -122.97476832, 49.205011613000053 ], [ -122.974754884999953, 49.20501373600009 ], [ -122.974533360999928, 49.205049217000088 ], [ -122.97357580399995, 49.205202489000072 ], [ -122.973089583999979, 49.205391545000062 ], [ -122.969938078, 49.206616823000047 ], [ -122.97052019600001, 49.207172912000026 ], [ -122.969292622, 49.207794059000072 ], [ -122.968909821999958, 49.207793956000117 ], [ -122.968909701999934, 49.207987808000055 ], [ -122.968838932999958, 49.208023615000052 ], [ -122.96887830899999, 49.208063806000034 ], [ -122.968497777999929, 49.208063702000047 ], [ -122.968497605999957, 49.20833356200005 ], [ -122.967673848999979, 49.208333334000031 ], [ -122.967673672999965, 49.208603193000073 ], [ -122.96726179199996, 49.208603077000106 ], [ -122.96726161399999, 49.208872935000052 ], [ -122.966437846999952, 49.208872700000057 ], [ -122.96643766499993, 49.209142558000103 ], [ -122.965613892999954, 49.209142315000044 ], [ -122.965613706999989, 49.209412174000107 ], [ -122.964378043999915, 49.209411799000073 ], [ -122.96437779199999, 49.209763084000024 ], [ -122.964137769999979, 49.209608666000115 ], [ -122.963999251999894, 49.209531684000076 ], [ -122.962971301999929, 49.209930207000099 ], [ -122.962864202999981, 49.209988327000076 ], [ -122.962147500999905, 49.210377286000067 ], [ -122.961924855999911, 49.210202707000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183924081", "BldgCostT": "111312271", "sL_LossRatio": "0.634585953689808", "sL_AssetLoss": "9448460", "sL_BldgLoss": "5995860", "sL_StrLoss": "1988150", "sL_NStrLoss": "4007710", "sL_ContLoss": "3452600", "geom_point": "0101000020E6100000C7BE0BBEDDBD5EC0422A1066A8994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.961122986999953, 49.20160727600004 ], [ -122.96061020300003, 49.201133019000025 ], [ -122.960319705999936, 49.201236455000085 ], [ -122.959951340999936, 49.201367585000064 ], [ -122.959385575999974, 49.200932879000021 ], [ -122.959082197000015, 49.200699767000067 ], [ -122.958791300999948, 49.200476281000093 ], [ -122.957507887999981, 49.199493067000091 ], [ -122.956354801999964, 49.198609630000114 ], [ -122.955618898999944, 49.198156041000118 ], [ -122.956276979999956, 49.198268325000086 ], [ -122.956660632999899, 49.198416205000122 ], [ -122.95730479099997, 49.197992807000098 ], [ -122.957423772999945, 49.197927081000088 ], [ -122.960534491999937, 49.196208292000023 ], [ -122.961172082999923, 49.195856910000067 ], [ -122.961050077999957, 49.195643526000019 ], [ -122.964124063, 49.196031117000089 ], [ -122.964582075999971, 49.196096430000061 ], [ -122.964956587999922, 49.196149850000012 ], [ -122.967773503, 49.1965515220001 ], [ -122.96838629199999, 49.196833986000058 ], [ -122.970236378999942, 49.19827440500012 ], [ -122.970248146999921, 49.198283263000064 ], [ -122.971371396, 49.199131515000055 ], [ -122.971858239999932, 49.199520285000077 ], [ -122.972424860999922, 49.199972801000065 ], [ -122.974469539, 49.201605569000058 ], [ -122.975384918999978, 49.202336529000043 ], [ -122.976877788999943, 49.203528494000118 ], [ -122.97688569799999, 49.203538669000082 ], [ -122.977042405999981, 49.203740293000131 ], [ -122.9770489499999, 49.204007626000049 ], [ -122.977051803999984, 49.204123483000075 ], [ -122.977138292999911, 49.204333112000043 ], [ -122.977240797000022, 49.204486391000067 ], [ -122.976699508999928, 49.204686493000104 ], [ -122.976083674, 49.204813648000034 ], [ -122.976049975999985, 49.204820594000068 ], [ -122.975811763, 49.204856104000072 ], [ -122.97476832, 49.205011613000053 ], [ -122.974754424999972, 49.205010924000113 ], [ -122.97454713399992, 49.205000611000109 ], [ -122.974032457999925, 49.204975012000098 ], [ -122.973478564999965, 49.204947477000083 ], [ -122.97194154099999, 49.204854091000058 ], [ -122.97116190899996, 49.204806695000109 ], [ -122.970749598999987, 49.204774398000062 ], [ -122.970216896999901, 49.204673810000045 ], [ -122.969552965999966, 49.204514739000075 ], [ -122.968521381999977, 49.204267599000033 ], [ -122.967401097999954, 49.203982908000057 ], [ -122.966952014999919, 49.203868999000029 ], [ -122.966597953999965, 49.203779221000076 ], [ -122.96646134599996, 49.203741747000024 ], [ -122.966381421999984, 49.20371983900003 ], [ -122.965341736999974, 49.203434616000074 ], [ -122.964596242999917, 49.203230073000086 ], [ -122.963927550999969, 49.202979535000097 ], [ -122.963260967999958, 49.202729773000058 ], [ -122.962781470999929, 49.202550100000025 ], [ -122.962611168999942, 49.202489450000016 ], [ -122.961864190999947, 49.202162085000083 ], [ -122.961244164, 49.201719381000082 ], [ -122.961122986999953, 49.20160727600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1349885780", "BldgCostT": "914606632", "sL_LossRatio": "0.820324891410741", "sL_AssetLoss": "12962608", "sL_BldgLoss": "10633550", "sL_StrLoss": "5193760", "sL_NStrLoss": "5439790", "sL_ContLoss": "2329058", "geom_point": "0101000020E6100000C1C82F0FDBBA5EC03A1057107B994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.909969980999975, 49.200330733000108 ], [ -122.910294183999923, 49.200161700000102 ], [ -122.910390021999945, 49.200241505000072 ], [ -122.911501697999967, 49.199684601000094 ], [ -122.911789993999946, 49.199676108000098 ], [ -122.911927184999939, 49.199767199000114 ], [ -122.912339102999951, 49.199623388000091 ], [ -122.912833806999942, 49.199335700000113 ], [ -122.912930901, 49.198939794000182 ], [ -122.913109482999971, 49.198841503000018 ], [ -122.913027614999962, 49.198616503 ], [ -122.913081235999968, 49.198590232000107 ], [ -122.913319947999952, 49.198590411000055 ], [ -122.913326853999962, 49.198486480000092 ], [ -122.913577312999948, 49.198543799000049 ], [ -122.914058403999931, 49.198184889000068 ], [ -122.915019198999914, 49.197924296000096 ], [ -122.915500195999982, 49.197927710000073 ], [ -122.918038685999989, 49.197945691000072 ], [ -122.918175328999965, 49.197947451000154 ], [ -122.920472355999962, 49.19797694800009 ], [ -122.920894088999944, 49.197982357000086 ], [ -122.92092093699992, 49.19798270800004 ], [ -122.922473916999934, 49.198002598000116 ], [ -122.922498502999986, 49.198164809000019 ], [ -122.922499813999963, 49.198173496000102 ], [ -122.922788585999939, 49.198334493000083 ], [ -122.922942762000034, 49.19835765800012 ], [ -122.923303346999916, 49.198411848000099 ], [ -122.923338293999976, 49.198417096000064 ], [ -122.924532397999954, 49.198444091000106 ], [ -122.924751801999889, 49.198495432000058 ], [ -122.92483112699999, 49.198513992000123 ], [ -122.925035285999954, 49.198561760000125 ], [ -122.925314841999949, 49.198627184000088 ], [ -122.92557359199999, 49.19868771200003 ], [ -122.926040289999932, 49.19885 ], [ -122.926259398999932, 49.19905661300001 ], [ -122.9271106, 49.199372712000056 ], [ -122.92756662499994, 49.199506513000131 ], [ -122.926892825999957, 49.199972094000032 ], [ -122.926885415999919, 49.200001371000056 ], [ -122.92686491799999, 49.200083006000078 ], [ -122.926391786999929, 49.200493889 ], [ -122.924560788999955, 49.200234404000064 ], [ -122.924055110999944, 49.200162530000107 ], [ -122.923488855999892, 49.200082014000039 ], [ -122.923289723999986, 49.200053713 ], [ -122.923276223999963, 49.200051803000072 ], [ -122.922896044999931, 49.199997726000092 ], [ -122.922869806999955, 49.199994020000062 ], [ -122.922039310999963, 49.199875893000048 ], [ -122.921797560999963, 49.199777300000029 ], [ -122.921675907999912, 49.199727677000027 ], [ -122.921654608999972, 49.199718992000015 ], [ -122.92102601, 49.199266692000016 ], [ -122.920739294, 49.19920360200009 ], [ -122.91929298, 49.19910913800004 ], [ -122.918457908999926, 49.199054588000102 ], [ -122.916815487999955, 49.198947439000122 ], [ -122.916269319999955, 49.198911806000105 ], [ -122.91579529799999, 49.198900901000066 ], [ -122.915623918999955, 49.198920308000041 ], [ -122.915370280999952, 49.199054852000067 ], [ -122.915175552999983, 49.19915815600006 ], [ -122.915199562999973, 49.199337998000075 ], [ -122.915179993999985, 49.199344602000124 ], [ -122.914758077, 49.199563345000037 ], [ -122.914744199, 49.199570562000083 ], [ -122.914422606999949, 49.199737306000095 ], [ -122.914049700999925, 49.19987800500008 ], [ -122.913894893999938, 49.199936616000045 ], [ -122.9135751099999, 49.200002092000034 ], [ -122.910799880999917, 49.200570513000059 ], [ -122.910750579999899, 49.200590808000086 ], [ -122.91045435800001, 49.20071272600012 ], [ -122.909969980999975, 49.200330733000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147986855", "BldgCostT": "95912491", "sL_LossRatio": "0.678501776602282", "sL_AssetLoss": "3743100", "sL_BldgLoss": "2539700", "sL_StrLoss": "1041600", "sL_NStrLoss": "1498100", "sL_ContLoss": "1203400", "geom_point": "0101000020E6100000BD68F1F7C5BB5EC06C084CAFE6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93189201399997, 49.204571405000074 ], [ -122.931364010999943, 49.204151011000107 ], [ -122.929806987999882, 49.204976 ], [ -122.929377123999942, 49.204628605000131 ], [ -122.927852502999912, 49.205481597000059 ], [ -122.92685819699993, 49.204705485000041 ], [ -122.924939224999918, 49.203181294000032 ], [ -122.926430289999971, 49.202359009000084 ], [ -122.92666629899999, 49.202213505000024 ], [ -122.926783191999974, 49.202209613000079 ], [ -122.927492394999945, 49.201817198000086 ], [ -122.927961274999987, 49.201570010000061 ], [ -122.927988604999939, 49.201555605000117 ], [ -122.927902008, 49.201516197000032 ], [ -122.928119918999926, 49.201394194000045 ], [ -122.928231183999941, 49.201331905000082 ], [ -122.92823071199993, 49.201234598000049 ], [ -122.928125822999903, 49.201141499000052 ], [ -122.928023004999915, 49.201076328000099 ], [ -122.927620086999937, 49.200820795000062 ], [ -122.927477097999954, 49.200770570000017 ], [ -122.92723189900002, 49.200684422000108 ], [ -122.926938892999956, 49.200581495000073 ], [ -122.926391786999929, 49.200493889 ], [ -122.92686491799999, 49.200083006000078 ], [ -122.926885415999919, 49.200001371000056 ], [ -122.926892825999957, 49.199972094000032 ], [ -122.92756662499994, 49.199506513000131 ], [ -122.928921389999971, 49.199903992000095 ], [ -122.928990509999949, 49.200003603000056 ], [ -122.929497915999931, 49.200155992000056 ], [ -122.929840216999978, 49.200489306000044 ], [ -122.931117105999974, 49.200751399000062 ], [ -122.932090705999912, 49.200707198000025 ], [ -122.93314918499999, 49.200932207000079 ], [ -122.934122807999969, 49.201031893000035 ], [ -122.935481409999966, 49.200977803000036 ], [ -122.93837929299994, 49.200422395000025 ], [ -122.940149597999948, 49.200000795000086 ], [ -122.942815614999944, 49.198931201000043 ], [ -122.943685271999939, 49.198615631000067 ], [ -122.943664093999971, 49.198869420000072 ], [ -122.943606300999974, 49.199066409000046 ], [ -122.94368183899995, 49.199124418000046 ], [ -122.943764933999915, 49.199188239000115 ], [ -122.943949799999956, 49.199330196000126 ], [ -122.944188535999956, 49.199511444000109 ], [ -122.944429425999928, 49.199694303000093 ], [ -122.944501834999969, 49.19998398300006 ], [ -122.944528773999963, 49.200091738000012 ], [ -122.944660324, 49.200065974000033 ], [ -122.94668386699999, 49.199669890000102 ], [ -122.945535871999965, 49.199934656000067 ], [ -122.945432136999912, 49.200030804000036 ], [ -122.94523736099994, 49.200072131000077 ], [ -122.94464781799995, 49.20019055700007 ], [ -122.944340192999945, 49.200278238000074 ], [ -122.943969677, 49.200425386000106 ], [ -122.942532161999949, 49.201287805000085 ], [ -122.942444062, 49.201340681000062 ], [ -122.941578368999927, 49.201766390000046 ], [ -122.941427362999946, 49.201840649000076 ], [ -122.940823310999988, 49.202095583000059 ], [ -122.940677878999935, 49.202172499000056 ], [ -122.94045794099999, 49.202288814000056 ], [ -122.939641341999973, 49.202733559000087 ], [ -122.937066441999946, 49.204135742000112 ], [ -122.934742204999935, 49.2053805030001 ], [ -122.933652090999914, 49.205970209000064 ], [ -122.93189201399997, 49.204571405000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11700250", "BldgCostT": "6595000", "sL_LossRatio": "0.642062830136225", "sL_AssetLoss": "143880", "sL_BldgLoss": "92380", "sL_StrLoss": "43960", "sL_NStrLoss": "48420", "sL_ContLoss": "51500", "geom_point": "0101000020E61000000301D7BAF9BB5EC0EBC3FEDB7A994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.938391902999939, 49.198547904000094 ], [ -122.938401998999936, 49.198394707000055 ], [ -122.935608148999904, 49.198315279000063 ], [ -122.935626051999975, 49.198043856000069 ], [ -122.935704507999915, 49.198046800000057 ], [ -122.936004259999947, 49.198069527000079 ], [ -122.937847317, 49.198209200000051 ], [ -122.938463105, 49.198335910000061 ], [ -122.938827370999959, 49.19835342800009 ], [ -122.939767500999963, 49.198398613000059 ], [ -122.940015035999977, 49.198484968000088 ], [ -122.940440990999917, 49.19863358900006 ], [ -122.939260096999988, 49.199019503000102 ], [ -122.938708988999934, 49.199451097000072 ], [ -122.938392990999944, 49.199594898000029 ], [ -122.933986585999918, 49.19986270400004 ], [ -122.933094413999967, 49.199852695000111 ], [ -122.932318374999937, 49.199713978000069 ], [ -122.932818636999926, 49.199728220000097 ], [ -122.932836849999916, 49.19945235600008 ], [ -122.936580636999963, 49.19955886700005 ], [ -122.93663593799999, 49.198720246000065 ], [ -122.937341393999972, 49.198740302000083 ], [ -122.93735601899999, 49.19851846200006 ], [ -122.938391902999939, 49.198547904000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287349728", "BldgCostT": "191754857", "sL_LossRatio": "0.778426767117217", "sL_AssetLoss": "2256500", "sL_BldgLoss": "1756520", "sL_StrLoss": "771750", "sL_NStrLoss": "984770", "sL_ContLoss": "499980", "geom_point": "0101000020E61000001E4CC3F091BB5EC0E27F1386589A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.927852502999912, 49.205481597000059 ], [ -122.929377123999942, 49.204628605000131 ], [ -122.929806987999882, 49.204976 ], [ -122.931364010999943, 49.204151011000107 ], [ -122.93189201399997, 49.204571405000074 ], [ -122.933652090999914, 49.205970209000064 ], [ -122.933239503999971, 49.20619179700001 ], [ -122.932105582999966, 49.206801003000052 ], [ -122.931294619, 49.207237402000011 ], [ -122.930604486999982, 49.20760959800009 ], [ -122.928804294999949, 49.206235800000066 ], [ -122.927852502999912, 49.205481597000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207961185", "BldgCostT": "133234571", "sL_LossRatio": "0.702642856355965", "sL_AssetLoss": "9077300", "sL_BldgLoss": "6378100", "sL_StrLoss": "2818600", "sL_NStrLoss": "3559500", "sL_ContLoss": "2699200", "geom_point": "0101000020E610000053FADF9DFEBA5EC0002F7DF9AE994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92131615199996, 49.200528747000099 ], [ -122.920504589999965, 49.200405034000056 ], [ -122.919760710999981, 49.200821590000018 ], [ -122.918940261000031, 49.200415724000052 ], [ -122.917451531999944, 49.20126915600008 ], [ -122.915441058999974, 49.200124157000111 ], [ -122.915304686999932, 49.200124713000079 ], [ -122.915199562999973, 49.199337998000075 ], [ -122.915175552999983, 49.19915815600006 ], [ -122.915370280999952, 49.199054852000067 ], [ -122.915623918999955, 49.198920308000041 ], [ -122.91579529799999, 49.198900901000066 ], [ -122.916269319999955, 49.198911806000105 ], [ -122.916815487999955, 49.198947439000122 ], [ -122.918457908999926, 49.199054588000102 ], [ -122.91929298, 49.19910913800004 ], [ -122.920739294, 49.19920360200009 ], [ -122.92102601, 49.199266692000016 ], [ -122.921654608999972, 49.199718992000015 ], [ -122.921675907999912, 49.199727677000027 ], [ -122.921797560999963, 49.199777300000029 ], [ -122.922039310999963, 49.199875893000048 ], [ -122.922869806999955, 49.199994020000062 ], [ -122.922896044999931, 49.199997726000092 ], [ -122.923276223999963, 49.200051803000072 ], [ -122.923289723999986, 49.200053713 ], [ -122.923488855999892, 49.200082014000039 ], [ -122.924055110999944, 49.200162530000107 ], [ -122.924560788999955, 49.200234404000064 ], [ -122.926391786999929, 49.200493889 ], [ -122.926938892999956, 49.200581495000073 ], [ -122.92723189900002, 49.200684422000108 ], [ -122.927477097999954, 49.200770570000017 ], [ -122.927620086999937, 49.200820795000062 ], [ -122.928023004999915, 49.201076328000099 ], [ -122.928125822999903, 49.201141499000052 ], [ -122.92823071199993, 49.201234598000049 ], [ -122.928231183999941, 49.201331905000082 ], [ -122.928119918999926, 49.201394194000045 ], [ -122.927902008, 49.201516197000032 ], [ -122.927988604999939, 49.201555605000117 ], [ -122.927961274999987, 49.201570010000061 ], [ -122.927492394999945, 49.201817198000086 ], [ -122.926783191999974, 49.202209613000079 ], [ -122.92666629899999, 49.202213505000024 ], [ -122.926430289999971, 49.202359009000084 ], [ -122.924939224999918, 49.203181294000032 ], [ -122.924212013999963, 49.20260018400009 ], [ -122.923123540999981, 49.201881669000024 ], [ -122.922856741999951, 49.2016623580001 ], [ -122.92229199399999, 49.201198510000097 ], [ -122.922287454999974, 49.201186610000029 ], [ -122.922224224999923, 49.201020903000028 ], [ -122.92222179099997, 49.20101450100006 ], [ -122.92222549899995, 49.200985204000098 ], [ -122.922247905999924, 49.200808352000109 ], [ -122.922265007999926, 49.200673404000071 ], [ -122.92131615199996, 49.200528747000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124063450", "BldgCostT": "78332213", "sL_LossRatio": "0.678375559951635", "sL_AssetLoss": "2886410", "sL_BldgLoss": "1958070", "sL_StrLoss": "830180", "sL_NStrLoss": "1127890", "sL_ContLoss": "928340", "geom_point": "0101000020E6100000F692CD8FDEBA5EC06107328ED3994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.917451531999944, 49.20126915600008 ], [ -122.918940261000031, 49.200415724000052 ], [ -122.919760710999981, 49.200821590000018 ], [ -122.920504589999965, 49.200405034000056 ], [ -122.92131615199996, 49.200528747000099 ], [ -122.922265007999926, 49.200673404000071 ], [ -122.922247905999924, 49.200808352000109 ], [ -122.92222549899995, 49.200985204000098 ], [ -122.92222179099997, 49.20101450100006 ], [ -122.922224224999923, 49.201020903000028 ], [ -122.922287454999974, 49.201186610000029 ], [ -122.92229199399999, 49.201198510000097 ], [ -122.922856741999951, 49.2016623580001 ], [ -122.921819448999898, 49.202200325000014 ], [ -122.921702918999927, 49.202219513000024 ], [ -122.921587791, 49.202279290000078 ], [ -122.921652942999941, 49.202331608000122 ], [ -122.921020019999958, 49.202668476000078 ], [ -122.920479304999958, 49.202959389000092 ], [ -122.919309120999984, 49.203586584000085 ], [ -122.919298451999964, 49.203592277000027 ], [ -122.919262347999933, 49.203563793000029 ], [ -122.919233281999965, 49.203540867000065 ], [ -122.918805338999931, 49.203198850000028 ], [ -122.918357590999932, 49.202840989000059 ], [ -122.917885480999956, 49.202469891000135 ], [ -122.917422773999988, 49.202102596000017 ], [ -122.916802726999904, 49.201604180000039 ], [ -122.917451531999944, 49.20126915600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "509626194", "BldgCostT": "329570356", "sL_LossRatio": "0.707928667313177", "sL_AssetLoss": "8373160", "sL_BldgLoss": "5927600", "sL_StrLoss": "2636210", "sL_NStrLoss": "3291390", "sL_ContLoss": "2445560", "geom_point": "0101000020E6100000791A711A85BA5EC0B97B1C7AC9994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911514408999935, 49.201235085000157 ], [ -122.910965288999975, 49.200822485000145 ], [ -122.910657791999981, 49.200843912 ], [ -122.910564091999944, 49.200801786000063 ], [ -122.91045435800001, 49.20071272600012 ], [ -122.910750579999899, 49.200590808000086 ], [ -122.910799880999917, 49.200570513000059 ], [ -122.9135751099999, 49.200002092000034 ], [ -122.913894893999938, 49.199936616000045 ], [ -122.914049700999925, 49.19987800500008 ], [ -122.914422606999949, 49.199737306000095 ], [ -122.914744199, 49.199570562000083 ], [ -122.914758077, 49.199563345000037 ], [ -122.915179993999985, 49.199344602000124 ], [ -122.915199562999973, 49.199337998000075 ], [ -122.915304686999932, 49.200124713000079 ], [ -122.915441058999974, 49.200124157000111 ], [ -122.917451531999944, 49.20126915600008 ], [ -122.916802726999904, 49.201604180000039 ], [ -122.917422773999988, 49.202102596000017 ], [ -122.916761917, 49.202426003 ], [ -122.915399020999942, 49.203175297000065 ], [ -122.915182948999956, 49.203329483000047 ], [ -122.914824902999968, 49.203555278000053 ], [ -122.914758079999928, 49.203673195000086 ], [ -122.914640683999949, 49.203746412000058 ], [ -122.914545741999973, 49.203668011000033 ], [ -122.913990066999972, 49.203218297000049 ], [ -122.913531343999949, 49.202847042000023 ], [ -122.91309749299991, 49.20249950700002 ], [ -122.91260240099993, 49.202103299000107 ], [ -122.912101138999958, 49.201703302000077 ], [ -122.911514408999935, 49.201235085000157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23755833", "BldgCostT": "16383333", "sL_LossRatio": "0.823256779192031", "sL_AssetLoss": "144560", "sL_BldgLoss": "119010", "sL_StrLoss": "69400", "sL_NStrLoss": "49610", "sL_ContLoss": "25550", "geom_point": "0101000020E61000003FF40FE86DD55EC0DAC83337F8B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.332582186999943, 49.415285697000066 ], [ -123.331435512999917, 49.414785797000043 ], [ -123.331033194999989, 49.414687512000114 ], [ -123.33023539699991, 49.414825696000129 ], [ -123.328924684999961, 49.414738796000037 ], [ -123.327105137999965, 49.41455540000009 ], [ -123.327164006999965, 49.413537156000103 ], [ -123.327238343999966, 49.412251268 ], [ -123.331107605999975, 49.412346699000118 ], [ -123.331129501999968, 49.411967362000098 ], [ -123.336633781999964, 49.412102880000106 ], [ -123.33656165299999, 49.413354982000023 ], [ -123.336561130999954, 49.413364050000112 ], [ -123.338260789999936, 49.413405840000024 ], [ -123.338401419999983, 49.41340929600004 ], [ -123.338408734999959, 49.413282244000087 ], [ -123.343913191999917, 49.413417392000063 ], [ -123.343896230999945, 49.413712623000038 ], [ -123.343814462999944, 49.415135856000049 ], [ -123.342258289999904, 49.414942499000091 ], [ -123.341570014999945, 49.415170407000055 ], [ -123.340688297999975, 49.41526288500004 ], [ -123.338097393999988, 49.415315606000057 ], [ -123.336594214999948, 49.415166098000086 ], [ -123.335739818999969, 49.415358400000102 ], [ -123.333907699999926, 49.415443798000119 ], [ -123.332582186999943, 49.415285697000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209555078", "BldgCostT": "143017410", "sL_LossRatio": "0.869694407346235", "sL_AssetLoss": "759246", "sL_BldgLoss": "660312", "sL_StrLoss": "446566", "sL_NStrLoss": "213746", "sL_ContLoss": "98934", "geom_point": "0101000020E61000009E679192C3D45EC0208A97E11EB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.313874904999935, 49.417785185000064 ], [ -123.313600094999941, 49.417705508000054 ], [ -123.313088791999959, 49.417715400000098 ], [ -123.31251289299999, 49.418085708000064 ], [ -123.312264403999961, 49.418122697000079 ], [ -123.312168203999946, 49.418032998000072 ], [ -123.312234001999983, 49.41768981200007 ], [ -123.312012320999926, 49.417538804000074 ], [ -123.311363285999988, 49.417486104000083 ], [ -123.310924418999889, 49.417550195000089 ], [ -123.31068849699993, 49.417451897000028 ], [ -123.310591422999934, 49.417289605000121 ], [ -123.310617400999917, 49.417118711000064 ], [ -123.310810097999948, 49.416939202000052 ], [ -123.311992220999926, 49.416557499000128 ], [ -123.3126538, 49.416474913000101 ], [ -123.31313348, 49.416303999000085 ], [ -123.313313412999946, 49.416239901000033 ], [ -123.313711902999955, 49.415869595000082 ], [ -123.313818512999958, 49.415411087000031 ], [ -123.31464459099999, 49.415012311000076 ], [ -123.314807387999949, 49.414714599000092 ], [ -123.314898991999954, 49.414013896000071 ], [ -123.314341900999977, 49.41306109200012 ], [ -123.313455191999964, 49.412371815000043 ], [ -123.311880480999932, 49.412079168000062 ], [ -123.311784288999931, 49.412061291000057 ], [ -123.309243815999977, 49.411249494000067 ], [ -123.308828408999929, 49.411034508000114 ], [ -123.308550517999919, 49.410621395000121 ], [ -123.308848004999916, 49.40996338500004 ], [ -123.30927369199999, 49.409576108000095 ], [ -123.309408403999925, 49.409009186000112 ], [ -123.310245223999914, 49.408322803000083 ], [ -123.310364486999944, 49.407612094000051 ], [ -123.309865507999959, 49.40708228900008 ], [ -123.309851092999907, 49.406948404000048 ], [ -123.310013183, 49.406461292000046 ], [ -123.310752291999947, 49.405641014000054 ], [ -123.310838098999952, 49.404183989000053 ], [ -123.311110496999945, 49.403652810000082 ], [ -123.311728922999976, 49.403191305000036 ], [ -123.312621695999908, 49.402739912000115 ], [ -123.312881723999951, 49.402514804000099 ], [ -123.313236106999923, 49.40191949000009 ], [ -123.313338498999926, 49.401832902000073 ], [ -123.313619990999953, 49.401594802000098 ], [ -123.314128394999912, 49.401332703000094 ], [ -123.314555110999919, 49.401231600000095 ], [ -123.316153605999901, 49.401272902000095 ], [ -123.316596184999952, 49.401190293000077 ], [ -123.31781789899999, 49.400449692000073 ], [ -123.318793394999958, 49.400240414000088 ], [ -123.31930202399991, 49.400005404000055 ], [ -123.320496405999933, 49.399138 ], [ -123.320770713999977, 49.398786198000067 ], [ -123.320696412999979, 49.39822939400004 ], [ -123.321064803999946, 49.397643986000055 ], [ -123.321914686999932, 49.39698459 ], [ -123.322214608999928, 49.396443407000049 ], [ -123.322847100999965, 49.396046087000045 ], [ -123.32309149299999, 49.39550628800005 ], [ -123.323236487999964, 49.394516501000084 ], [ -123.322957889999913, 49.393976712000018 ], [ -123.322794255999966, 49.393776695000042 ], [ -123.322430007999969, 49.393331509000127 ], [ -123.320975291999929, 49.392435689000088 ], [ -123.320575794999968, 49.392328888000087 ], [ -123.319997813999947, 49.392321794000097 ], [ -123.31980359799995, 49.392223507000104 ], [ -123.319595476999936, 49.39205259700006 ], [ -123.319079379999962, 49.391145396000127 ], [ -123.318706996999964, 49.391111188000131 ], [ -123.318266212999944, 49.391175293000074 ], [ -123.318114406999896, 49.391075586000042 ], [ -123.318180592999909, 49.390743690000079 ], [ -123.318814289999949, 49.390399103000107 ], [ -123.318784286999957, 49.390067210000019 ], [ -123.319055611999929, 49.389355094000067 ], [ -123.319158292999973, 49.388285608000096 ], [ -123.319120966, 49.387608770000014 ], [ -123.319110613999925, 49.387421098000033 ], [ -123.319481682999964, 49.387177493000131 ], [ -123.320952217999931, 49.386508096000078 ], [ -123.322285005, 49.386180592000038 ], [ -123.325690594999969, 49.386314411000058 ], [ -123.326284285999961, 49.386546603000049 ], [ -123.327112180999919, 49.386688998000089 ], [ -123.328672508999944, 49.387233083000034 ], [ -123.329872406999982, 49.387274386000072 ], [ -123.330491292999938, 49.387119110000093 ], [ -123.331633312999926, 49.386990906000044 ], [ -123.332430906999932, 49.386646283000097 ], [ -123.333320995999898, 49.385969792000047 ], [ -123.333494496999919, 49.385213511000103 ], [ -123.333286980999958, 49.384917299000023 ], [ -123.332648696999939, 49.384468687 ], [ -123.332645497, 49.383820712000031 ], [ -123.332822704999899, 49.383443210000102 ], [ -123.334163621999949, 49.382315301000098 ], [ -123.33424380799994, 49.381748393000123 ], [ -123.334421505999956, 49.381778881000052 ], [ -123.334601, 49.381809703000023 ], [ -123.336571607999986, 49.382410705000048 ], [ -123.33672453899996, 49.382483767000075 ], [ -123.337736823999975, 49.382967303000058 ], [ -123.337866665999982, 49.383060804000088 ], [ -123.338498508999947, 49.383515901000109 ], [ -123.33959271099998, 49.38422368600007 ], [ -123.340385278999975, 49.384505697000073 ], [ -123.340327997999978, 49.384727006000091 ], [ -123.33964415399997, 49.385253077000066 ], [ -123.33951817499991, 49.385349987000069 ], [ -123.33827593700002, 49.386130002000101 ], [ -123.33776076, 49.386453450000033 ], [ -123.337496311, 49.386619502000094 ], [ -123.337635384999942, 49.386811988000069 ], [ -123.337836260999964, 49.386813707000073 ], [ -123.339535094999945, 49.386828099000063 ], [ -123.33952331099999, 49.387480198000034 ], [ -123.339490921999982, 49.389271804000046 ], [ -123.343909992999954, 49.389310993000088 ], [ -123.34395398599996, 49.389320813000069 ], [ -123.344821096999965, 49.389514306000073 ], [ -123.345093787999957, 49.391204760000122 ], [ -123.345184715999963, 49.393845474000081 ], [ -123.345252281999976, 49.395807666000053 ], [ -123.344902419999968, 49.395799085000078 ], [ -123.344979629999955, 49.394454018000104 ], [ -123.342824427999943, 49.394401134000063 ], [ -123.342956714999929, 49.392098267000101 ], [ -123.342678463999945, 49.392091436000136 ], [ -123.342688310999961, 49.391920028000037 ], [ -123.341616437999974, 49.391893709000087 ], [ -123.341639402999974, 49.391494108000067 ], [ -123.340618709999887, 49.391469034000075 ], [ -123.340616868999959, 49.391501058000053 ], [ -123.339095194, 49.391463659000131 ], [ -123.339080419999945, 49.391720494000019 ], [ -123.333578555999978, 49.391585097000096 ], [ -123.33358312699994, 49.391505804000097 ], [ -123.333061836999946, 49.391492960000086 ], [ -123.332990203999941, 49.392735359000064 ], [ -123.333155117999951, 49.392739422000105 ], [ -123.332947734999934, 49.396336131000034 ], [ -123.332125204999969, 49.396315863000019 ], [ -123.33205796499999, 49.397481550000059 ], [ -123.33099851499999, 49.397455435000104 ], [ -123.330984033999968, 49.397706376000095 ], [ -123.329335557999954, 49.397665720000077 ], [ -123.329315284, 49.398016816000073 ], [ -123.328823485999948, 49.398004682000057 ], [ -123.328808478000028, 49.398264527000087 ], [ -123.325882863999979, 49.398192298000026 ], [ -123.325767364999962, 49.400189797000088 ], [ -123.325159350999911, 49.4001747760001 ], [ -123.325130267999967, 49.400677611000098 ], [ -123.324363907999924, 49.400658673000081 ], [ -123.324271124999925, 49.402262327000052 ], [ -123.32259185, 49.402220811000099 ], [ -123.322546796999958, 49.402998968000077 ], [ -123.321645557999958, 49.402976676000065 ], [ -123.321622979999958, 49.403366490000103 ], [ -123.32154067099999, 49.403364453000023 ], [ -123.32152079699992, 49.403707591000064 ], [ -123.319176612999968, 49.403649571000066 ], [ -123.319092976999954, 49.405092246000081 ], [ -123.318029982999946, 49.405065920000027 ], [ -123.318010050999973, 49.40540957200011 ], [ -123.316232196999962, 49.405365518000067 ], [ -123.316029967999924, 49.40884971000002 ], [ -123.3151714299999, 49.408828426000063 ], [ -123.315161442999937, 49.409000432000049 ], [ -123.314620201999944, 49.408987010000033 ], [ -123.314564639999929, 49.409943684000083 ], [ -123.31599382399996, 49.409979118000095 ], [ -123.315982723999923, 49.410170337000054 ], [ -123.317086495999959, 49.410197690000139 ], [ -123.317068780999961, 49.410502990000055 ], [ -123.317750290999982, 49.410519874000066 ], [ -123.317734813999934, 49.410786672000086 ], [ -123.317964799999956, 49.41079236900007 ], [ -123.317945696999914, 49.411121704000038 ], [ -123.318319407999965, 49.411130960000115 ], [ -123.318285530999972, 49.411715055000101 ], [ -123.318568235999962, 49.411722056 ], [ -123.318539395999935, 49.412219328000035 ], [ -123.318689861999985, 49.412223054000023 ], [ -123.318669472999929, 49.412574635000063 ], [ -123.319315974999952, 49.412590640000097 ], [ -123.319336462999971, 49.412237275000116 ], [ -123.321596350000036, 49.412293194000036 ], [ -123.3216288, 49.411733030000079 ], [ -123.327133023999977, 49.411869030000105 ], [ -123.327037110999981, 49.413528070000027 ], [ -123.326978452999967, 49.41454263 ], [ -123.326579391999971, 49.414502403000014 ], [ -123.324343187999958, 49.414095093000043 ], [ -123.323655002999942, 49.414096489000038 ], [ -123.321934402999943, 49.414641995000089 ], [ -123.321011202999955, 49.414734612000117 ], [ -123.320846798999966, 49.41479721400006 ], [ -123.320600304999928, 49.415076395000085 ], [ -123.32057548899995, 49.415401099000071 ], [ -123.320713677999947, 49.4155719930001 ], [ -123.321211292999919, 49.415633196000066 ], [ -123.321431693999955, 49.415767101000078 ], [ -123.321576615999945, 49.416811006000145 ], [ -123.321428409999953, 49.417359402000024 ], [ -123.321046009999975, 49.418071506000047 ], [ -123.320634348999974, 49.418518345000074 ], [ -123.320389976999962, 49.418783594000075 ], [ -123.31957821, 49.419055602000064 ], [ -123.319136385999983, 49.418957300000066 ], [ -123.318900183999943, 49.418715199000125 ], [ -123.318951899999945, 49.418346307000057 ], [ -123.319197801999962, 49.41793191200005 ], [ -123.319156986999985, 49.417798001000023 ], [ -123.318382787999951, 49.417484711000036 ], [ -123.317540020999914, 49.417469002000132 ], [ -123.317060897999937, 49.417803705000033 ], [ -123.31642809399996, 49.418057200000064 ], [ -123.316168690999987, 49.418417601000101 ], [ -123.315907205999963, 49.418571390000089 ], [ -123.315969303999964, 49.419532704000055 ], [ -123.316177588999906, 49.419883108000114 ], [ -123.31604100899996, 49.419974201000109 ], [ -123.31574978699993, 49.419974192000012 ], [ -123.314906902999923, 49.419662309000032 ], [ -123.314131901999957, 49.419069784000051 ], [ -123.314005509999959, 49.418792103000015 ], [ -123.314193684999978, 49.418008796000073 ], [ -123.313874904999935, 49.417785185000064 ] ], [ [ -123.329468200999926, 49.393013981000081 ], [ -123.329621894999903, 49.390900805000065 ], [ -123.329655209999913, 49.389369882000047 ], [ -123.330879152999955, 49.389006864000052 ], [ -123.330892508999966, 49.389002922000131 ], [ -123.331053707999942, 49.388955107000115 ], [ -123.331739294999949, 49.388530703000043 ], [ -123.332529912999945, 49.387837986000086 ], [ -123.333069391999985, 49.387564551000075 ], [ -123.333280404999954, 49.387457589000107 ], [ -123.333909452999961, 49.38732484400002 ], [ -123.335240703999943, 49.387043892000058 ], [ -123.335243582999922, 49.387042877000027 ], [ -123.335725059000012, 49.386870882000018 ], [ -123.335792817999959, 49.386846667000114 ], [ -123.335025318999953, 49.38684168100005 ], [ -123.332820891999944, 49.387143207000094 ], [ -123.331598988999986, 49.387562119000073 ], [ -123.331198491999913, 49.387721679000016 ], [ -123.330717596999989, 49.387785192000102 ], [ -123.330316195999941, 49.387819396000062 ], [ -123.329237903999967, 49.387770296000049 ], [ -123.328971891999927, 49.387796988000034 ], [ -123.326809711999928, 49.387842694000071 ], [ -123.326545516999914, 49.38776681100012 ], [ -123.32511341299994, 49.387770322000115 ], [ -123.32502458399992, 49.387770551000052 ], [ -123.323497004999965, 49.387774297000064 ], [ -123.323519888999925, 49.388521408000052 ], [ -123.324405009999964, 49.388507303000047 ], [ -123.325117899999952, 49.388636488 ], [ -123.324875196, 49.390451315000099 ], [ -123.325360107, 49.390998090000089 ], [ -123.325478626999939, 49.3910920020001 ], [ -123.326772209999916, 49.39211359600008 ], [ -123.326896589999976, 49.392130202000075 ], [ -123.327009239999967, 49.392111417000116 ], [ -123.327009802999953, 49.392113994000063 ], [ -123.326716789, 49.39235497500006 ], [ -123.32633822, 49.392666291000054 ], [ -123.326237993999925, 49.393372701000018 ], [ -123.32424570699996, 49.393595391000041 ], [ -123.324373395999899, 49.393649012000033 ], [ -123.32448671899999, 49.393881412000013 ], [ -123.324622608999931, 49.394055914000035 ], [ -123.324586892999918, 49.394673603000044 ], [ -123.325430111999978, 49.394670191000046 ], [ -123.326123300999882, 49.394713386000092 ], [ -123.326263694999966, 49.394787091000062 ], [ -123.327886408999944, 49.394762295000071 ], [ -123.32951181599999, 49.394747781000113 ], [ -123.329519588999972, 49.394747703000085 ], [ -123.329479015999937, 49.393901206000066 ], [ -123.329468200999926, 49.393013981000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61692667", "BldgCostT": "42546667", "sL_LossRatio": "0.91433186717452", "sL_AssetLoss": "166898.7", "sL_BldgLoss": "152600.8", "sL_StrLoss": "116738.8", "sL_NStrLoss": "35862", "sL_ContLoss": "14297.9", "geom_point": "0101000020E6100000DABCC350FBD45EC0F1F77BF701B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.326123300999882, 49.394713386000092 ], [ -123.325430111999978, 49.394670191000046 ], [ -123.324586892999918, 49.394673603000044 ], [ -123.324622608999931, 49.394055914000035 ], [ -123.32448671899999, 49.393881412000013 ], [ -123.324373395999899, 49.393649012000033 ], [ -123.32424570699996, 49.393595391000041 ], [ -123.326237993999925, 49.393372701000018 ], [ -123.32633822, 49.392666291000054 ], [ -123.326716789, 49.39235497500006 ], [ -123.327009802999953, 49.392113994000063 ], [ -123.327009239999967, 49.392111417000116 ], [ -123.326896589999976, 49.392130202000075 ], [ -123.326772209999916, 49.39211359600008 ], [ -123.325478626999939, 49.3910920020001 ], [ -123.325360107, 49.390998090000089 ], [ -123.324875196, 49.390451315000099 ], [ -123.325117899999952, 49.388636488 ], [ -123.324405009999964, 49.388507303000047 ], [ -123.323519888999925, 49.388521408000052 ], [ -123.323497004999965, 49.387774297000064 ], [ -123.32502458399992, 49.387770551000052 ], [ -123.32511341299994, 49.387770322000115 ], [ -123.326545516999914, 49.38776681100012 ], [ -123.326809711999928, 49.387842694000071 ], [ -123.328971891999927, 49.387796988000034 ], [ -123.329237903999967, 49.387770296000049 ], [ -123.330316195999941, 49.387819396000062 ], [ -123.330717596999989, 49.387785192000102 ], [ -123.331198491999913, 49.387721679000016 ], [ -123.331598988999986, 49.387562119000073 ], [ -123.332820891999944, 49.387143207000094 ], [ -123.335025318999953, 49.38684168100005 ], [ -123.335792817999959, 49.386846667000114 ], [ -123.335725059000012, 49.386870882000018 ], [ -123.335243582999922, 49.387042877000027 ], [ -123.335240703999943, 49.387043892000058 ], [ -123.333909452999961, 49.38732484400002 ], [ -123.333280404999954, 49.387457589000107 ], [ -123.333069391999985, 49.387564551000075 ], [ -123.332529912999945, 49.387837986000086 ], [ -123.331739294999949, 49.388530703000043 ], [ -123.331053707999942, 49.388955107000115 ], [ -123.330892508999966, 49.389002922000131 ], [ -123.330879152999955, 49.389006864000052 ], [ -123.329655209999913, 49.389369882000047 ], [ -123.329621894999903, 49.390900805000065 ], [ -123.329468200999926, 49.393013981000081 ], [ -123.329479015999937, 49.393901206000066 ], [ -123.329519588999972, 49.394747703000085 ], [ -123.32951181599999, 49.394747781000113 ], [ -123.327886408999944, 49.394762295000071 ], [ -123.326263694999966, 49.394787091000062 ], [ -123.326123300999882, 49.394713386000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "0.885974914481186", "sL_AssetLoss": "21925", "sL_BldgLoss": "19425", "sL_StrLoss": "13600", "sL_NStrLoss": "5825", "sL_ContLoss": "2500", "geom_point": "0101000020E6100000F3EFC89218D65EC01010C4609BAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.344093917999928, 49.348085797000039 ], [ -123.344487589, 49.347429307 ], [ -123.345090519999943, 49.346940801000102 ], [ -123.345598204999959, 49.346633110000084 ], [ -123.346036997999988, 49.346560496000052 ], [ -123.346326896, 49.346604605000017 ], [ -123.34648161699999, 49.346927896000039 ], [ -123.34649910499999, 49.347494788000063 ], [ -123.346609983999898, 49.34759299300007 ], [ -123.346886307999966, 49.347618709000066 ], [ -123.347316760999959, 49.347433932000094 ], [ -123.347185944, 49.349717313000099 ], [ -123.341856860999911, 49.34958644400011 ], [ -123.342038109999976, 49.349423195 ], [ -123.342339978999945, 49.349306395000056 ], [ -123.343050002999988, 49.348619885000062 ], [ -123.344093917999928, 49.348085797000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9009333", "BldgCostT": "6213333", "sL_LossRatio": "0.87933078221432", "sL_AssetLoss": "31045.2", "sL_BldgLoss": "27299", "sL_StrLoss": "19025", "sL_NStrLoss": "8274", "sL_ContLoss": "3746.2", "geom_point": "0101000020E61000004229AD01C2D65EC0375641902CAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.35242283299999, 49.346591410000066 ], [ -123.352444878999961, 49.346205816000065 ], [ -123.351762032999972, 49.346189093000071 ], [ -123.351806529999919, 49.345411014000028 ], [ -123.353130216999958, 49.344992396000066 ], [ -123.353857717999986, 49.344503906000099 ], [ -123.353969163999963, 49.344481696000109 ], [ -123.354364898999947, 49.34440279100005 ], [ -123.355462184999965, 49.343707802000033 ], [ -123.356090019999954, 49.342860399000124 ], [ -123.356342143999939, 49.342699130000042 ], [ -123.35746382799999, 49.34272655200008 ], [ -123.357441824999952, 49.343112150000074 ], [ -123.358124628999946, 49.343128836000055 ], [ -123.357919405999937, 49.346725859000095 ], [ -123.35242283299999, 49.346591410000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180740083", "BldgCostT": "118258333", "sL_LossRatio": "0.779770863625195", "sL_AssetLoss": "1135481", "sL_BldgLoss": "885415", "sL_StrLoss": "506712", "sL_NStrLoss": "378703", "sL_ContLoss": "250066", "geom_point": "0101000020E61000000A51E869BED55EC03F528E13F0AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.33421440499994, 49.381477797000095 ], [ -123.33380071199997, 49.381380992000111 ], [ -123.332739516999979, 49.381544798000071 ], [ -123.33227099199992, 49.381420908000095 ], [ -123.331939923999954, 49.381422302000082 ], [ -123.330178319999959, 49.381749900000088 ], [ -123.329530902999963, 49.381734187000063 ], [ -123.328813422999957, 49.381457905000012 ], [ -123.328068711999919, 49.381432307000111 ], [ -123.327299585, 49.381804010000096 ], [ -123.32692839099991, 49.381759796000054 ], [ -123.326553203999964, 49.381392384000044 ], [ -123.326620992999963, 49.381275590000044 ], [ -123.327102780999937, 49.381192994000067 ], [ -123.328215196999977, 49.380767199000033 ], [ -123.328874891999988, 49.380395403000108 ], [ -123.32993318699998, 49.380158994000027 ], [ -123.330665907999958, 49.380264386000107 ], [ -123.331049703999938, 49.380173304000095 ], [ -123.331542596999938, 49.379767412000028 ], [ -123.331117811999917, 49.379876996000036 ], [ -123.330868413999937, 49.379733201000107 ], [ -123.3312532899999, 49.379589295000116 ], [ -123.331349007999961, 49.379687593000064 ], [ -123.331555606999956, 49.379452596000107 ], [ -123.331374118999946, 49.379218997000045 ], [ -123.331538522999921, 49.379183400000052 ], [ -123.331781841999927, 49.379597942000082 ], [ -123.331790993, 49.379613515000109 ], [ -123.331839479999957, 49.379601701000048 ], [ -123.333618910999959, 49.379167786000032 ], [ -123.333989705, 49.378986906000073 ], [ -123.334329506999964, 49.378512924000077 ], [ -123.334345, 49.378491303000075 ], [ -123.334300705999951, 49.378068308000181 ], [ -123.334132387999901, 49.377717909000047 ], [ -123.333870505999968, 49.377619591000041 ], [ -123.333098317999941, 49.377576898000065 ], [ -123.33147550799994, 49.377887405000116 ], [ -123.329853194999956, 49.378333187000116 ], [ -123.328975094999947, 49.378786095000045 ], [ -123.327831304999933, 49.378851593000057 ], [ -123.326745084999956, 49.379106500000063 ], [ -123.325319227999898, 49.379593511000046 ], [ -123.323384016999952, 49.379545659000051 ], [ -123.323557358999921, 49.376548985000063 ], [ -123.323753302999961, 49.376597091000029 ], [ -123.324841802, 49.376629806000089 ], [ -123.32548690499999, 49.376474612000059 ], [ -123.325994806000011, 49.376077211000023 ], [ -123.326819696999962, 49.376030213000035 ], [ -123.327050558999971, 49.375818126000091 ], [ -123.327163785999986, 49.375714106000018 ], [ -123.327896402999926, 49.374291286000101 ], [ -123.32822559, 49.373939495000045 ], [ -123.328259916999968, 49.373030804000024 ], [ -123.328489005, 49.372266110000155 ], [ -123.329107785999966, 49.371967 ], [ -123.329670191000019, 49.37148839000011 ], [ -123.330122304000028, 49.371299008000037 ], [ -123.330655173999958, 49.370639593000114 ], [ -123.33091559599994, 49.370522813000029 ], [ -123.332154000999978, 49.370312004000063 ], [ -123.332435798999967, 49.370139668000057 ], [ -123.332886119999912, 49.370150770000116 ], [ -123.332913804, 49.369670378000087 ], [ -123.333032004999893, 49.369544398000116 ], [ -123.333151993999934, 49.369148494000079 ], [ -123.333238590999954, 49.367672996000067 ], [ -123.333456508999987, 49.367114708000045 ], [ -123.333492203999967, 49.366440995000069 ], [ -123.333362802999957, 49.365586490000084 ], [ -123.332804383999971, 49.364356 ], [ -123.332755910999964, 49.363447302000118 ], [ -123.332498280999914, 49.362036002000131 ], [ -123.332504797999945, 49.36202405600006 ], [ -123.337325476, 49.362142832000131 ], [ -123.337311143999983, 49.362391975000087 ], [ -123.338600245999956, 49.36242370100009 ], [ -123.338562555999914, 49.363079216000074 ], [ -123.33860668599999, 49.363080302000064 ], [ -123.338548203999963, 49.364097396000048 ], [ -123.338633846999954, 49.364099503000013 ], [ -123.338571546999972, 49.365183001000055 ], [ -123.338819507999929, 49.365189102000109 ], [ -123.338729227999949, 49.36675926700007 ], [ -123.339632475999935, 49.36678148400005 ], [ -123.339425712000022, 49.370378345000091 ], [ -123.338381610999946, 49.370352663000098 ], [ -123.33836278699998, 49.370679970000012 ], [ -123.338238126999897, 49.370676903000117 ], [ -123.338239215, 49.370835388000103 ], [ -123.338652442999944, 49.370834178000081 ], [ -123.338667272999942, 49.372992949000036 ], [ -123.338254025999944, 49.372994159000037 ], [ -123.338259581999978, 49.373803697000071 ], [ -123.337433076999972, 49.373806113000107 ], [ -123.337434200999951, 49.373970282000087 ], [ -123.340467291999985, 49.374044881000032 ], [ -123.340341918999911, 49.376226250000101 ], [ -123.341169156999939, 49.376223812000056 ], [ -123.341170161999955, 49.376369074000138 ], [ -123.341174008999971, 49.376369169000085 ], [ -123.341170576999957, 49.376428902000086 ], [ -123.341172892999978, 49.37676350500012 ], [ -123.341586170000014, 49.376762284000044 ], [ -123.341584299999909, 49.376492437000131 ], [ -123.341997575, 49.376491216000076 ], [ -123.341995702999924, 49.37622137000016 ], [ -123.34240897399998, 49.376220147000055 ], [ -123.342407098999942, 49.37595030100006 ], [ -123.343308964999949, 49.375947626000055 ], [ -123.344473448999963, 49.375944163000078 ], [ -123.344475336999949, 49.376214008000034 ], [ -123.344888606999987, 49.376212776000052 ], [ -123.344890495999906, 49.376482621 ], [ -123.345303770999948, 49.37648138800008 ], [ -123.345301880999969, 49.376211542000114 ], [ -123.34612842599995, 49.376209070000044 ], [ -123.346120844999987, 49.375129687 ], [ -123.346534107999958, 49.375128450000055 ], [ -123.346532210999925, 49.374858603000121 ], [ -123.347358732, 49.374856123000036 ], [ -123.347356830999928, 49.374586276000144 ], [ -123.347770089999955, 49.37458503400002 ], [ -123.347768185999954, 49.374315188000118 ], [ -123.348594697999971, 49.374312699000022 ], [ -123.348592788999909, 49.374042853000041 ], [ -123.349419297999944, 49.374040359000041 ], [ -123.349417384999981, 49.373770512000043 ], [ -123.349830636999968, 49.373769263000028 ], [ -123.349828721999927, 49.373499416000037 ], [ -123.350241970999932, 49.37349816400004 ], [ -123.350240051999918, 49.373228320000102 ], [ -123.352306287999966, 49.373222041000062 ], [ -123.352308216, 49.373491887000043 ], [ -123.35262996099999, 49.373490907000175 ], [ -123.352656763999931, 49.373022381000055 ], [ -123.354603660999913, 49.373070002000098 ], [ -123.35466444199993, 49.372006727000041 ], [ -123.354768485999941, 49.372009271000174 ], [ -123.354805371999973, 49.371363929000033 ], [ -123.355166069999939, 49.371372747000052 ], [ -123.355219007999921, 49.370446436000066 ], [ -123.357583814999956, 49.370504221000097 ], [ -123.357599323999978, 49.370232595000104 ], [ -123.363098718999979, 49.37036677600004 ], [ -123.363025618, 49.371649722000058 ], [ -123.362519391999982, 49.371960405000117 ], [ -123.362221181999956, 49.372103054000085 ], [ -123.361722481999962, 49.372341605000059 ], [ -123.360100512999963, 49.372972003000086 ], [ -123.359603491999977, 49.373357010000099 ], [ -123.35905799199999, 49.373627302000038 ], [ -123.358411301999965, 49.37386008400005 ], [ -123.357224597999931, 49.374074210000124 ], [ -123.356718974999964, 49.374249199000054 ], [ -123.356496645999968, 49.374362725000061 ], [ -123.356471266999932, 49.374375679000146 ], [ -123.356042394, 49.374594592000072 ], [ -123.355935521999982, 49.374668028000023 ], [ -123.355427810999942, 49.375016709000114 ], [ -123.355378885, 49.375050300000083 ], [ -123.355346329999989, 49.375064700000067 ], [ -123.354288401999924, 49.375532406000012 ], [ -123.354648354999966, 49.375978468000064 ], [ -123.355340181999978, 49.376835794000037 ], [ -123.355427589999962, 49.377040601000068 ], [ -123.355412899999962, 49.377226612000051 ], [ -123.355080399999935, 49.377502114000066 ], [ -123.353941394999978, 49.378155994000089 ], [ -123.35310806699999, 49.378674441000015 ], [ -123.352495846999915, 49.378659463000098 ], [ -123.352472361999958, 49.37906992900011 ], [ -123.352307968999924, 49.379172198000106 ], [ -123.351778383999942, 49.379330410000115 ], [ -123.351299840999957, 49.379416044000088 ], [ -123.351047997999942, 49.379461097000103 ], [ -123.349983196999958, 49.380020300000055 ], [ -123.349171370999983, 49.380441652000052 ], [ -123.34865423799999, 49.380622580000065 ], [ -123.348347127999915, 49.380695197000101 ], [ -123.347244384999939, 49.380954520000067 ], [ -123.346852341, 49.38102141100002 ], [ -123.346865361999932, 49.380794336000072 ], [ -123.346573953999894, 49.380795211000091 ], [ -123.346575851999916, 49.381065056000068 ], [ -123.345749225999953, 49.381067531000085 ], [ -123.345749963999964, 49.381172679000088 ], [ -123.34531836499994, 49.381161224000046 ], [ -123.34454170399998, 49.381064711000079 ], [ -123.343620708999964, 49.380916055000036 ], [ -123.343267632999982, 49.380828859000168 ], [ -123.343265588999941, 49.380535230000092 ], [ -123.342667386999921, 49.380537003000107 ], [ -123.342663678999941, 49.380601576000117 ], [ -123.342820908999954, 49.380605436000096 ], [ -123.342816731999932, 49.380678150000115 ], [ -123.342515447000025, 49.380571048000135 ], [ -123.342016034999943, 49.38039490500006 ], [ -123.34082721299994, 49.380114469000048 ], [ -123.338911497999959, 49.379782827000042 ], [ -123.338454590999945, 49.379705799000099 ], [ -123.337955302999887, 49.379695384000122 ], [ -123.338238383999936, 49.380210553000012 ], [ -123.33956100799999, 49.382617285000052 ], [ -123.339883823999941, 49.383191320000073 ], [ -123.340356893999953, 49.384032514000126 ], [ -123.340421791999944, 49.384364584000053 ], [ -123.340385278999975, 49.384505697000073 ], [ -123.33959271099998, 49.38422368600007 ], [ -123.338498508999947, 49.383515901000109 ], [ -123.337866665999982, 49.383060804000088 ], [ -123.337736823999975, 49.382967303000058 ], [ -123.33672453899996, 49.382483767000075 ], [ -123.336571607999986, 49.382410705000048 ], [ -123.334601, 49.381809703000023 ], [ -123.334421505999956, 49.381778881000052 ], [ -123.33424380799994, 49.381748393000123 ], [ -123.33421440499994, 49.381477797000095 ] ], [ [ -123.350274834999979, 49.378122935000093 ], [ -123.350274568999907, 49.378085543000076 ], [ -123.34986128099996, 49.378086795000094 ], [ -123.349859365999947, 49.377816950000081 ], [ -123.349446079999922, 49.377818199000082 ], [ -123.349440339999958, 49.377008662000023 ], [ -123.348613782999948, 49.37701115800008 ], [ -123.348611872999967, 49.376741312000028 ], [ -123.347372045999961, 49.37674504400006 ], [ -123.347373946999966, 49.377014889000108 ], [ -123.34613411, 49.377018609000061 ], [ -123.346136003999973, 49.377288454000073 ], [ -123.345722723999984, 49.377289691000094 ], [ -123.345724615999956, 49.377559536 ], [ -123.345311332999941, 49.377560771000077 ], [ -123.345315112999955, 49.378100463000038 ], [ -123.345728401999963, 49.378099228000103 ], [ -123.345730293999935, 49.378369074000048 ], [ -123.346143583999918, 49.378367837000091 ], [ -123.34614927299998, 49.379177375000012 ], [ -123.34573597499994, 49.379178612000032 ], [ -123.345737867999915, 49.379448456000013 ], [ -123.346564466999936, 49.379445982000071 ], [ -123.346566361999962, 49.379715827000084 ], [ -123.346927266999927, 49.379714745000086 ], [ -123.347023103999959, 49.378043258000012 ], [ -123.350274834999979, 49.378122935000093 ] ], [ [ -123.352540269999963, 49.375058674000059 ], [ -123.35258364, 49.374300601000058 ], [ -123.35107423599996, 49.374305196000144 ], [ -123.35107615699998, 49.374575042000082 ], [ -123.350249639999973, 49.374577549000058 ], [ -123.350251557999982, 49.374847394000014 ], [ -123.349838295999959, 49.374848646000075 ], [ -123.349840211999933, 49.375118492000084 ], [ -123.349013686999939, 49.37512099 ], [ -123.349019416999951, 49.375930528000033 ], [ -123.349432688, 49.37592927900004 ], [ -123.34943460099997, 49.37619912500007 ], [ -123.350261143999944, 49.37619662400008 ], [ -123.350259227999942, 49.3759267780001 ], [ -123.35149903599995, 49.375923015000048 ], [ -123.351497111999933, 49.375653169000088 ], [ -123.35190047899998, 49.375651942000054 ], [ -123.351935276999924, 49.375043869000081 ], [ -123.352540269999963, 49.375058674000059 ] ], [ [ -123.335780875999887, 49.373929583000084 ], [ -123.335780065999984, 49.373810926 ], [ -123.335383169999957, 49.373812078000093 ], [ -123.335383045999961, 49.373814234000065 ], [ -123.335304713999918, 49.373812305000122 ], [ -123.33506918, 49.373812988000068 ], [ -123.335063482999928, 49.373911915000086 ], [ -123.335780875999887, 49.373929583000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80822168", "BldgCostT": "53796668", "sL_LossRatio": "0.917774565564467", "sL_AssetLoss": "190661.2", "sL_BldgLoss": "174984", "sL_StrLoss": "135630", "sL_NStrLoss": "39354", "sL_ContLoss": "15677.2", "geom_point": "0101000020E6100000FEFA5BE161D85EC04516DD3831AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.369587085999967, 49.365482688000071 ], [ -123.369669692999963, 49.364029071000061 ], [ -123.370056863999977, 49.364038485999984 ], [ -123.37008230099994, 49.363590781000042 ], [ -123.375580942999974, 49.363724329000085 ], [ -123.3755386799999, 49.364469716000031 ], [ -123.376971037999965, 49.364504459000102 ], [ -123.376992992999988, 49.364117051000051 ], [ -123.377714639999965, 49.364134548000102 ], [ -123.377760305999971, 49.363328468000134 ], [ -123.377875386999946, 49.36333125800008 ], [ -123.377972595999893, 49.361615168000078 ], [ -123.37893809799999, 49.361638568000018 ], [ -123.37899075199995, 49.360708652000078 ], [ -123.378900753999986, 49.360706472000068 ], [ -123.378967313999951, 49.359530948000064 ], [ -123.378365406999947, 49.359516360000107 ], [ -123.378391892999971, 49.359048679000104 ], [ -123.377829515999935, 49.35903504700007 ], [ -123.377899699999958, 49.357795972000112 ], [ -123.375971225999947, 49.357749201000146 ], [ -123.376175094999937, 49.354152203000062 ], [ -123.381672633999969, 49.354285444000013 ], [ -123.38164159499999, 49.354834288000035 ], [ -123.384042284, 49.354892384000024 ], [ -123.383976854999915, 49.356050308000107 ], [ -123.384066854999972, 49.356052486000124 ], [ -123.384044465999963, 49.356448707000013 ], [ -123.384844948999913, 49.356468066000019 ], [ -123.38472894, 49.358521666000115 ], [ -123.388791881999936, 49.358619832000059 ], [ -123.388794533999942, 49.358572825000081 ], [ -123.389416473999958, 49.358587838000034 ], [ -123.389440531, 49.358161240000072 ], [ -123.389981796999962, 49.358174303000062 ], [ -123.389995122999949, 49.35793795200005 ], [ -123.39549315, 49.358070490000074 ], [ -123.395474995999962, 49.358393175000074 ], [ -123.396994316999908, 49.358429751000088 ], [ -123.396973194999958, 49.358805386000022 ], [ -123.395628178999914, 49.358927690000037 ], [ -123.395495208999975, 49.358995037000106 ], [ -123.392072002999939, 49.360728500000043 ], [ -123.391773900999965, 49.360861082000071 ], [ -123.390163241999971, 49.361577503000078 ], [ -123.388161154999949, 49.362149617000036 ], [ -123.38577452499996, 49.362975306000124 ], [ -123.385388919999968, 49.363076138000075 ], [ -123.385061935999914, 49.36316162400005 ], [ -123.384575304999913, 49.363246209000067 ], [ -123.384448733999974, 49.363257143000027 ], [ -123.384167315999917, 49.363281419000032 ], [ -123.383851877999973, 49.363278870000016 ], [ -123.383094535999959, 49.363272759000033 ], [ -123.382330389999964, 49.363266589000055 ], [ -123.382336758999969, 49.363518312000096 ], [ -123.382346977999973, 49.363923102000093 ], [ -123.382352078999944, 49.364125298000076 ], [ -123.380214395999985, 49.364488697000127 ], [ -123.38014064, 49.364493821000082 ], [ -123.379873472999975, 49.364512378000015 ], [ -123.378640253999919, 49.364598062000063 ], [ -123.378551795999925, 49.36460419100009 ], [ -123.378120093999982, 49.364715287000124 ], [ -123.37780109, 49.364929101000037 ], [ -123.376977670999935, 49.365675528000047 ], [ -123.376248910999919, 49.366336166000089 ], [ -123.376033482999901, 49.36653140100006 ], [ -123.375781823, 49.36667380400015 ], [ -123.375335698999947, 49.366820583000042 ], [ -123.375318676999939, 49.366823986000107 ], [ -123.374952684999954, 49.366896548000064 ], [ -123.374737015999983, 49.366939313000067 ], [ -123.373811325999952, 49.366960871000096 ], [ -123.373411060999928, 49.366970196000068 ], [ -123.373372311999958, 49.366971089000074 ], [ -123.373107110999939, 49.367034894000014 ], [ -123.372729286999984, 49.367167089000091 ], [ -123.371950607999935, 49.367521794000034 ], [ -123.371490475999934, 49.36776910300005 ], [ -123.370601997999984, 49.36850659400006 ], [ -123.370583649999915, 49.368530582000105 ], [ -123.370341713999906, 49.368846987000019 ], [ -123.369689684999955, 49.369103907000067 ], [ -123.369165697, 49.369433401000066 ], [ -123.368909706999929, 49.369617105 ], [ -123.36828330899999, 49.369601868000075 ], [ -123.368327668999939, 49.36882175700007 ], [ -123.368487826999953, 49.366004948000054 ], [ -123.368872075999917, 49.366014295000092 ], [ -123.368903239999895, 49.365466057000027 ], [ -123.369587085999967, 49.365482688000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19534000", "BldgCostT": "13000000", "sL_LossRatio": "0.836100321927063", "sL_AssetLoss": "79117.3", "sL_BldgLoss": "66150", "sL_StrLoss": "43188", "sL_NStrLoss": "22962", "sL_ContLoss": "12967.3", "geom_point": "0101000020E61000002E3749DAAAD55EC0CF56778FE0AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.337398757999978, 49.355879461 ], [ -123.342896390999982, 49.356014671000032 ], [ -123.342689928999931, 49.359611596000057 ], [ -123.338606333999948, 49.359511189000074 ], [ -123.338520039999963, 49.361012093000099 ], [ -123.333084427999935, 49.360878205000063 ], [ -123.333162500999947, 49.360576101000085 ], [ -123.33375437799999, 49.360332593000052 ], [ -123.334192201999954, 49.35988111000006 ], [ -123.334573292999949, 49.359456688000073 ], [ -123.334621993999988, 49.358387099000055 ], [ -123.334798405999948, 49.357945587000053 ], [ -123.334989901999904, 49.357764693000085 ], [ -123.335689898999959, 49.357573905000031 ], [ -123.335951699999939, 49.357384513000049 ], [ -123.335968212999944, 49.357347269000037 ], [ -123.337312432999951, 49.357380372000129 ], [ -123.337398757999978, 49.355879461 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12925000", "BldgCostT": "8650000", "sL_LossRatio": "0.8859918200409", "sL_AssetLoss": "46944", "sL_BldgLoss": "41592", "sL_StrLoss": "31210", "sL_NStrLoss": "10382", "sL_ContLoss": "5352", "geom_point": "0101000020E6100000599423AE2DD75EC075B12789BEAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.359530246999952, 49.343785885000088 ], [ -123.359526315999958, 49.343246191000141 ], [ -123.359113319999949, 49.343247474000094 ], [ -123.359109324999935, 49.342698316000096 ], [ -123.358514299999982, 49.342683781000041 ], [ -123.358543614999945, 49.342169830000117 ], [ -123.358279492999941, 49.34217064900006 ], [ -123.358276394, 49.34174394500009 ], [ -123.358402382999955, 49.341694290000127 ], [ -123.358427217999946, 49.341633491000067 ], [ -123.358483659999976, 49.341469364000027 ], [ -123.358546906999933, 49.341138601000061 ], [ -123.358619802999954, 49.341018805000047 ], [ -123.358732967999941, 49.340916230000104 ], [ -123.358943633999971, 49.34084122900002 ], [ -123.359745797999921, 49.340656042000099 ], [ -123.360739230999926, 49.340426685000068 ], [ -123.361843435999944, 49.340151092000013 ], [ -123.363265152999944, 49.339840411000061 ], [ -123.36371182399995, 49.33971669400006 ], [ -123.36406790699999, 49.339575887000045 ], [ -123.364350382999959, 49.339399074000028 ], [ -123.364505767999958, 49.339303805000057 ], [ -123.364982670999936, 49.339699945000092 ], [ -123.365057762999939, 49.340121420000109 ], [ -123.365146417999981, 49.340255958000121 ], [ -123.365372554999951, 49.340466050000089 ], [ -123.365656034999958, 49.340729435000071 ], [ -123.365906853999959, 49.340916551000184 ], [ -123.366013643999949, 49.341046120000023 ], [ -123.366019642999959, 49.341134518000075 ], [ -123.366021222999933, 49.341227312000072 ], [ -123.365956198999982, 49.341340481000046 ], [ -123.36579848599996, 49.341491130000058 ], [ -123.365599000999921, 49.341611436000072 ], [ -123.365168186999966, 49.341762862000103 ], [ -123.364871319999963, 49.341866691000092 ], [ -123.364668080999948, 49.341991448000094 ], [ -123.364536729999926, 49.342096156000132 ], [ -123.36456198099998, 49.342213749000024 ], [ -123.364576977999917, 49.34228353300005 ], [ -123.364677084, 49.342458879000048 ], [ -123.364816825999966, 49.342583225000105 ], [ -123.365043170999954, 49.342674905000081 ], [ -123.365314344999888, 49.342735180000069 ], [ -123.36559246399996, 49.342789292000063 ], [ -123.36593802599999, 49.342863719000029 ], [ -123.366132039999911, 49.342928991000072 ], [ -123.366134239999965, 49.343225448000034 ], [ -123.364482257999981, 49.343230669000043 ], [ -123.364480265999987, 49.342960823000119 ], [ -123.364067272999975, 49.342962124000032 ], [ -123.36406528199997, 49.342692277000054 ], [ -123.364017570999934, 49.342692427000053 ], [ -123.364010426999982, 49.342817921000112 ], [ -123.363653142999922, 49.342809209000073 ], [ -123.36365428, 49.342963424000054 ], [ -123.36324128699998, 49.342964722000062 ], [ -123.363243272999966, 49.343234570000064 ], [ -123.362830278000033, 49.343235866000072 ], [ -123.362832262999959, 49.343505714000067 ], [ -123.362006266999956, 49.343508303000128 ], [ -123.362008247999967, 49.343778150000105 ], [ -123.359530246999952, 49.343785885000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14201083", "BldgCostT": "9058333", "sL_LossRatio": "0.763332175272506", "sL_AssetLoss": "92108", "sL_BldgLoss": "70309", "sL_StrLoss": "42465", "sL_NStrLoss": "27844", "sL_ContLoss": "21799", "geom_point": "0101000020E61000003275577601D75EC0F8B7F4FD0EB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.362519391999982, 49.371960405000117 ], [ -123.363025618, 49.371649722000058 ], [ -123.363017203, 49.371797414000127 ], [ -123.364446558999973, 49.371832244000068 ], [ -123.364241700999912, 49.375429124000085 ], [ -123.363859836999936, 49.375419821000079 ], [ -123.36382401900002, 49.37604853300013 ], [ -123.360871647999915, 49.375976562000083 ], [ -123.360753110999951, 49.378054903000077 ], [ -123.359772629999924, 49.378030983000016 ], [ -123.359761579999898, 49.378224627000051 ], [ -123.358119390999889, 49.378184545000117 ], [ -123.358112218999949, 49.378310167000038 ], [ -123.35725756, 49.378289296000027 ], [ -123.35722981, 49.378775187 ], [ -123.35310806699999, 49.378674441000015 ], [ -123.353941394999978, 49.378155994000089 ], [ -123.355080399999935, 49.377502114000066 ], [ -123.355412899999962, 49.377226612000051 ], [ -123.355427589999962, 49.377040601000068 ], [ -123.355340181999978, 49.376835794000037 ], [ -123.354648354999966, 49.375978468000064 ], [ -123.354288401999924, 49.375532406000012 ], [ -123.355346329999989, 49.375064700000067 ], [ -123.355378885, 49.375050300000083 ], [ -123.355427810999942, 49.375016709000114 ], [ -123.355935521999982, 49.374668028000023 ], [ -123.356042394, 49.374594592000072 ], [ -123.356471266999932, 49.374375679000146 ], [ -123.356496645999968, 49.374362725000061 ], [ -123.356718974999964, 49.374249199000054 ], [ -123.357224597999931, 49.374074210000124 ], [ -123.358411301999965, 49.37386008400005 ], [ -123.35905799199999, 49.373627302000038 ], [ -123.359603491999977, 49.373357010000099 ], [ -123.360100512999963, 49.372972003000086 ], [ -123.361722481999962, 49.372341605000059 ], [ -123.362221181999956, 49.372103054000085 ], [ -123.362519391999982, 49.371960405000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45050500", "BldgCostT": "28180000", "sL_LossRatio": "0.837561753160071", "sL_AssetLoss": "138960.5", "sL_BldgLoss": "116388", "sL_StrLoss": "73317", "sL_NStrLoss": "43071", "sL_ContLoss": "22572.5", "geom_point": "0101000020E6100000CF6C806775D85EC026EAD4AEECAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37136467699996, 49.371973243000106 ], [ -123.371494931999962, 49.369679947000051 ], [ -123.368909706999929, 49.369617105 ], [ -123.369165697, 49.369433401000066 ], [ -123.369689684999955, 49.369103907000067 ], [ -123.370341713999906, 49.368846987000019 ], [ -123.370583649999915, 49.368530582000105 ], [ -123.370601997999984, 49.36850659400006 ], [ -123.371490475999934, 49.36776910300005 ], [ -123.371950607999935, 49.367521794000034 ], [ -123.372729286999984, 49.367167089000091 ], [ -123.373107110999939, 49.367034894000014 ], [ -123.373372311999958, 49.366971089000074 ], [ -123.373411060999928, 49.366970196000068 ], [ -123.373811325999952, 49.366960871000096 ], [ -123.374737015999983, 49.366939313000067 ], [ -123.374952684999954, 49.366896548000064 ], [ -123.375318676999939, 49.366823986000107 ], [ -123.375335698999947, 49.366820583000042 ], [ -123.375781823, 49.36667380400015 ], [ -123.376033482999901, 49.36653140100006 ], [ -123.376248910999919, 49.366336166000089 ], [ -123.376977670999935, 49.365675528000047 ], [ -123.37780109, 49.364929101000037 ], [ -123.378120093999982, 49.364715287000124 ], [ -123.378551795999925, 49.36460419100009 ], [ -123.378640253999919, 49.364598062000063 ], [ -123.379873472999975, 49.364512378000015 ], [ -123.38014064, 49.364493821000082 ], [ -123.380214395999985, 49.364488697000127 ], [ -123.382352078999944, 49.364125298000076 ], [ -123.382346977999973, 49.363923102000093 ], [ -123.382336758999969, 49.363518312000096 ], [ -123.382330389999964, 49.363266589000055 ], [ -123.383094535999959, 49.363272759000033 ], [ -123.383851877999973, 49.363278870000016 ], [ -123.384167315999917, 49.363281419000032 ], [ -123.384448733999974, 49.363257143000027 ], [ -123.384575304999913, 49.363246209000067 ], [ -123.385061935999914, 49.36316162400005 ], [ -123.385388919999968, 49.363076138000075 ], [ -123.38577452499996, 49.362975306000124 ], [ -123.388161154999949, 49.362149617000036 ], [ -123.390163241999971, 49.361577503000078 ], [ -123.391773900999965, 49.360861082000071 ], [ -123.392072002999939, 49.360728500000043 ], [ -123.395495208999975, 49.358995037000106 ], [ -123.395628178999914, 49.358927690000037 ], [ -123.396973194999958, 49.358805386000022 ], [ -123.396792045999973, 49.362026765000046 ], [ -123.395196924999979, 49.361988364000077 ], [ -123.39509068299995, 49.363876302000087 ], [ -123.389591966999916, 49.363743745000107 ], [ -123.389651350999912, 49.362690712000123 ], [ -123.389590900999934, 49.362689253000056 ], [ -123.389532949999975, 49.363716838000101 ], [ -123.389052107999959, 49.363705233000076 ], [ -123.389029052999959, 49.364113949000071 ], [ -123.388279107999935, 49.364095845000072 ], [ -123.388264034999963, 49.364362967000126 ], [ -123.387597257999957, 49.36434686600014 ], [ -123.387576328999927, 49.36471768400002 ], [ -123.38706227199999, 49.364705268000108 ], [ -123.387043725999945, 49.365033795000045 ], [ -123.386363963999898, 49.365017374000054 ], [ -123.386285973, 49.366398511000128 ], [ -123.384014693999958, 49.366343609000097 ], [ -123.383986204999957, 49.366847665000073 ], [ -123.383068760999947, 49.36682547500002 ], [ -123.383055579999947, 49.367058587 ], [ -123.38247051599997, 49.3670444320001 ], [ -123.382458586999931, 49.367255379000014 ], [ -123.384266538999952, 49.367299110000033 ], [ -123.384063240999964, 49.370896052000028 ], [ -123.382996337999884, 49.37087025000011 ], [ -123.381052405999966, 49.370823210000076 ], [ -123.380988275999954, 49.371956424000054 ], [ -123.37741955599995, 49.371869976000106 ], [ -123.377407838999957, 49.372076711000055 ], [ -123.376866764999974, 49.372063594000068 ], [ -123.37686431899999, 49.372106724000034 ], [ -123.37136467699996, 49.371973243000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76069668", "BldgCostT": "48076668", "sL_LossRatio": "0.844271518757987", "sL_AssetLoss": "209724", "sL_BldgLoss": "177064", "sL_StrLoss": "120802", "sL_NStrLoss": "56262", "sL_ContLoss": "32660", "geom_point": "0101000020E6100000C47673C8B8DA5EC0E1A76043A6AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.423167086999968, 49.369743996000075 ], [ -123.423181993999947, 49.369476248000048 ], [ -123.422527737999928, 49.369478640000139 ], [ -123.422525874999948, 49.369261349000105 ], [ -123.420646093, 49.369216548000018 ], [ -123.420668236999973, 49.368819195000064 ], [ -123.420582412999977, 49.368817149000066 ], [ -123.42058959699996, 49.368688234000125 ], [ -123.42028371, 49.368680940000068 ], [ -123.42033538699998, 49.36775380400006 ], [ -123.417940983999955, 49.367696682000066 ], [ -123.41795461599996, 49.367452308000061 ], [ -123.41724477299999, 49.367435364000059 ], [ -123.417286157999925, 49.366693741000063 ], [ -123.417048212999987, 49.36668805900004 ], [ -123.417063320999944, 49.366417342000069 ], [ -123.416519110999943, 49.36640434700012 ], [ -123.416719868, 49.362807319000069 ], [ -123.41731404699999, 49.362821508000117 ], [ -123.417414100999977, 49.361028184000084 ], [ -123.417757497999972, 49.36095755500007 ], [ -123.419295889999958, 49.361138349000058 ], [ -123.419724259999953, 49.361280930000078 ], [ -123.420242459999884, 49.361566126000071 ], [ -123.42064723499999, 49.362243227000079 ], [ -123.42069569200001, 49.362324296000082 ], [ -123.421254089999962, 49.362999488000078 ], [ -123.421977538999968, 49.363779889000057 ], [ -123.42225203000001, 49.364075976000031 ], [ -123.422509846999986, 49.364034156000109 ], [ -123.423010384999955, 49.363952896000036 ], [ -123.423656695999952, 49.36377920200006 ], [ -123.423866589999975, 49.364048397 ], [ -123.423714701999984, 49.364202196000065 ], [ -123.423235604999945, 49.364428608000033 ], [ -123.423265208999965, 49.364761891000043 ], [ -123.423613678, 49.365056695000078 ], [ -123.424344714999947, 49.36529740200011 ], [ -123.42540270399995, 49.365040997000015 ], [ -123.425817308999981, 49.365058090000041 ], [ -123.426218283, 49.365325904000066 ], [ -123.427375308999956, 49.365204803000061 ], [ -123.428257585999987, 49.36536290800008 ], [ -123.428861894999983, 49.36533438700009 ], [ -123.429687592999954, 49.365070894000048 ], [ -123.430375509999948, 49.364986907000052 ], [ -123.430665909999959, 49.365085198000024 ], [ -123.430639587999949, 49.365354404000129 ], [ -123.430298308999966, 49.365670501000046 ], [ -123.430149302999922, 49.365959711000102 ], [ -123.430126000999962, 49.366480900000127 ], [ -123.43047371599999, 49.366929500000033 ], [ -123.430247184999985, 49.367731399000043 ], [ -123.429826204999955, 49.368380798000096 ], [ -123.429662710999963, 49.368578793000104 ], [ -123.428976601999949, 49.368940501000061 ], [ -123.429009203999897, 49.369436102000087 ], [ -123.427182288999958, 49.37019810000006 ], [ -123.427048086999946, 49.370558389000102 ], [ -123.427284102999948, 49.37071080100003 ], [ -123.428029096999921, 49.37074359700005 ], [ -123.427578985999958, 49.371347390000068 ], [ -123.427347, 49.371484196 ], [ -123.426575319999955, 49.371612302000059 ], [ -123.426264996999976, 49.372278887000022 ], [ -123.425963785, 49.372640606000047 ], [ -123.425072379999989, 49.372993793000077 ], [ -123.424370601999954, 49.373121998000094 ], [ -123.423602903999921, 49.373449603000054 ], [ -123.421087805999889, 49.374295494000123 ], [ -123.420568087999982, 49.374711408000074 ], [ -123.420449604999973, 49.375332403000101 ], [ -123.420217882999935, 49.37544919099999 ], [ -123.419610801999951, 49.375533201000088 ], [ -123.419268597999917, 49.375687010000071 ], [ -123.419201781999931, 49.37605589300005 ], [ -123.419067005999935, 49.376218192000117 ], [ -123.41845960499991, 49.376248097000015 ], [ -123.417730694999989, 49.376393394000054 ], [ -123.416935984999924, 49.376765090000035 ], [ -123.41682858899999, 49.377233691000043 ], [ -123.416419701, 49.377603993 ], [ -123.416135380999933, 49.378216396000028 ], [ -123.415902489999937, 49.378343202000032 ], [ -123.415022504999911, 49.378535404000097 ], [ -123.414975617999971, 49.379543794000035 ], [ -123.414071509999985, 49.380094909000086 ], [ -123.412916993999914, 49.380593386000072 ], [ -123.412395961999891, 49.381449791000101 ], [ -123.410476213999985, 49.381403870000014 ], [ -123.410417962999972, 49.382444675000073 ], [ -123.40491699599994, 49.382312901000049 ], [ -123.40511872399999, 49.378715979000056 ], [ -123.40651923199999, 49.378749555000134 ], [ -123.406644087999936, 49.376521811000089 ], [ -123.40678008699993, 49.376525070000056 ], [ -123.406848748999948, 49.375299813000083 ], [ -123.407615069999949, 49.375318177000089 ], [ -123.407634337999951, 49.374974231000095 ], [ -123.40823971099999, 49.374988734000041 ], [ -123.408260431999963, 49.374618745000099 ], [ -123.408313550999935, 49.374620017000069 ], [ -123.408364080999945, 49.373717746000096 ], [ -123.409224321999915, 49.373738348000096 ], [ -123.409229449999927, 49.373646766000057 ], [ -123.410820194999957, 49.373684846000046 ], [ -123.41083079399999, 49.373495405000078 ], [ -123.411744157, 49.373517258000049 ], [ -123.411765074999934, 49.373143228000067 ], [ -123.412240395999959, 49.373154597000116 ], [ -123.41228530099994, 49.372351538000032 ], [ -123.413149814999926, 49.372372211000069 ], [ -123.41316978499999, 49.372014959000097 ], [ -123.413563621999941, 49.372024375000102 ], [ -123.413610913999918, 49.37117816700006 ], [ -123.414524822999951, 49.371200011000063 ], [ -123.414544594999967, 49.370846089000075 ], [ -123.41592119299996, 49.370878978000093 ], [ -123.41594015699998, 49.370539322000084 ], [ -123.417173800999976, 49.370568780000035 ], [ -123.417195126999943, 49.370186652000022 ], [ -123.418188422999947, 49.370210361 ], [ -123.418221016999937, 49.369626075000106 ], [ -123.423167086999968, 49.369743996000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.8345882634158", "sL_AssetLoss": "8367", "sL_BldgLoss": "6983", "sL_StrLoss": "4160", "sL_NStrLoss": "2823", "sL_ContLoss": "1384", "geom_point": "0101000020E6100000AA3AB376BED95EC07EF9090CFEAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40292606, 49.360583105000117 ], [ -123.40294516299997, 49.360242604000071 ], [ -123.400944709999976, 49.360194553000028 ], [ -123.401030743999939, 49.35866214100006 ], [ -123.400639891999958, 49.358652749000036 ], [ -123.40065952499998, 49.358303120000102 ], [ -123.400704086999951, 49.358295203000075 ], [ -123.401599636999933, 49.358243136000063 ], [ -123.403170399999965, 49.35815180400003 ], [ -123.403291880999944, 49.358683297000056 ], [ -123.403343208999942, 49.359782199000101 ], [ -123.403508702999943, 49.359947386000051 ], [ -123.40384846399999, 49.360221198000026 ], [ -123.404062370999966, 49.360610382000075 ], [ -123.40292606, 49.360583105000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96000374", "BldgCostT": "63151381", "sL_LossRatio": "0.856522610988904", "sL_AssetLoss": "329132", "sL_BldgLoss": "281909", "sL_StrLoss": "190958", "sL_NStrLoss": "90951", "sL_ContLoss": "47223", "geom_point": "0101000020E61000001CBE2ABC70D75EC0CB44213448B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360667453999937, 49.407733176000114 ], [ -123.360810291999911, 49.405230570000079 ], [ -123.360836130999928, 49.405231200000117 ], [ -123.360857511999939, 49.404856570000071 ], [ -123.360873695999913, 49.404856964000082 ], [ -123.360889390999958, 49.404581940000099 ], [ -123.356094502999923, 49.404464958000062 ], [ -123.356096330999918, 49.404432982000102 ], [ -123.355447681999976, 49.404417141000089 ], [ -123.35546636499997, 49.404090443000072 ], [ -123.353630836999969, 49.404045594000088 ], [ -123.353691824999913, 49.402979830000064 ], [ -123.351729433999978, 49.402931847000048 ], [ -123.351935386999969, 49.399335136000069 ], [ -123.356581166999931, 49.399448675 ], [ -123.356601812999884, 49.399087449000078 ], [ -123.359027359999942, 49.399146649000031 ], [ -123.359188711999963, 49.396320826000057 ], [ -123.358841308999985, 49.396312351000056 ], [ -123.35892241399992, 49.394891988000026 ], [ -123.357936564999989, 49.394867930000018 ], [ -123.358141998999955, 49.391271165000106 ], [ -123.358831464999938, 49.391287991000127 ], [ -123.35888091799994, 49.390421881000108 ], [ -123.361163370999975, 49.390477552000085 ], [ -123.361196954999969, 49.389888836000111 ], [ -123.364513151999972, 49.389969635000071 ], [ -123.364550651999963, 49.389311417000116 ], [ -123.370052333999951, 49.389445241000033 ], [ -123.369847833999955, 49.393042038000068 ], [ -123.366695592, 49.39296539700009 ], [ -123.366625135999982, 49.394202984000088 ], [ -123.367559823999969, 49.394225719000076 ], [ -123.36749901899999, 49.395294079000067 ], [ -123.368622449999947, 49.395321394000106 ], [ -123.368483732999934, 49.397759583000095 ], [ -123.368575003999965, 49.397761801000108 ], [ -123.368549791999925, 49.398204927000037 ], [ -123.370727753999958, 49.398257846000071 ], [ -123.370604843999956, 49.400419797000062 ], [ -123.371107588999962, 49.400418185000071 ], [ -123.371109623, 49.400688029000044 ], [ -123.37152309899993, 49.400686701000062 ], [ -123.37152920699999, 49.401496233000096 ], [ -123.370543463, 49.401499396000098 ], [ -123.370523265999935, 49.401854597000074 ], [ -123.369050665000017, 49.401818822000017 ], [ -123.369052351999954, 49.402043866000064 ], [ -123.36946583799994, 49.402042545 ], [ -123.369471912999956, 49.40285207800013 ], [ -123.369885407999959, 49.402850756000078 ], [ -123.369889461999918, 49.403390444000124 ], [ -123.370302960999979, 49.403389120000014 ], [ -123.370303076999946, 49.403404650000063 ], [ -123.371877756999979, 49.403442886000043 ], [ -123.371910579999948, 49.402865334000111 ], [ -123.373332627999972, 49.40289984300005 ], [ -123.373408193999964, 49.401569367000043 ], [ -123.374762625999935, 49.401602218000093 ], [ -123.374849520999987, 49.400071398000101 ], [ -123.375891267999975, 49.400096654000016 ], [ -123.37589247899993, 49.400075324000042 ], [ -123.376192277999962, 49.400082590000117 ], [ -123.376208482999985, 49.399796930000058 ], [ -123.377390783999928, 49.399825578000055 ], [ -123.377406248999961, 49.399552860000071 ], [ -123.377965291999914, 49.399566401000143 ], [ -123.377992852, 49.399080273000038 ], [ -123.37842142199996, 49.399090652000062 ], [ -123.378427439999896, 49.398984484000103 ], [ -123.379138576999964, 49.399001702000099 ], [ -123.379146616999947, 49.398859800000025 ], [ -123.38464947699994, 49.398992881000027 ], [ -123.384646080999957, 49.399052920000024 ], [ -123.38512406299999, 49.399064467000066 ], [ -123.385200739999974, 49.397708245000082 ], [ -123.387675067000018, 49.397767982000026 ], [ -123.387835993999943, 49.394918602000132 ], [ -123.393221701999934, 49.395048432000095 ], [ -123.392892391999979, 49.395406609000055 ], [ -123.390795813999887, 49.396807992000078 ], [ -123.389866297999944, 49.397728087000118 ], [ -123.388907115999956, 49.398388906000044 ], [ -123.388565198999913, 49.398713599000118 ], [ -123.388433607999943, 49.399487005000076 ], [ -123.388078093999937, 49.399867205000106 ], [ -123.38701778899997, 49.400041006000059 ], [ -123.386481701999983, 49.400384196000097 ], [ -123.386127489999978, 49.400933997000017 ], [ -123.38480959599994, 49.40146951100013 ], [ -123.383019205, 49.401637494000063 ], [ -123.382620682999956, 49.401747202000109 ], [ -123.382304423000022, 49.401936601000088 ], [ -123.382083883999883, 49.401955102000066 ], [ -123.381241016999937, 49.401526397000076 ], [ -123.380329214, 49.401403904000034 ], [ -123.379547012999922, 49.401721498000079 ], [ -123.379035911999949, 49.401731503000086 ], [ -123.378831394999978, 49.402064791000043 ], [ -123.378598809999914, 49.402182989000067 ], [ -123.377346308999947, 49.402285485000064 ], [ -123.37650678599995, 49.402611703000048 ], [ -123.376383105999963, 49.402711406000087 ], [ -123.376357519999928, 49.402936403000126 ], [ -123.376938806999945, 49.403195611000093 ], [ -123.376969790999908, 49.403608595000023 ], [ -123.37664161699999, 49.404041595000137 ], [ -123.376507684, 49.404455995000014 ], [ -123.376123087999943, 49.404728093000145 ], [ -123.375600885, 49.404890401000038 ], [ -123.375423705999964, 49.405143901000024 ], [ -123.375107406999987, 49.40533330200001 ], [ -123.374308790999976, 49.405282097000047 ], [ -123.373866, 49.405131111000117 ], [ -123.373714405999962, 49.405202310000078 ], [ -123.373428515999962, 49.405680798000063 ], [ -123.37301821699999, 49.405897303000074 ], [ -123.372425404999987, 49.406025492000055 ], [ -123.371447696999937, 49.406055411000068 ], [ -123.370719517999973, 49.40632740500007 ], [ -123.369918404, 49.406222002 ], [ -123.369549292999977, 49.406610892000074 ], [ -123.36898481899999, 49.406891396000056 ], [ -123.368585685999932, 49.406982605000088 ], [ -123.367551111999916, 49.406832991000087 ], [ -123.366228603999957, 49.40678318800007 ], [ -123.365235016, 49.406615103000085 ], [ -123.364514187999958, 49.406194992000074 ], [ -123.364404193999931, 49.406176501000111 ], [ -123.364252796999963, 49.406259100000064 ], [ -123.364300680999975, 49.407059491000091 ], [ -123.364207081999922, 49.40743689700011 ], [ -123.364057808999988, 49.407671890000088 ], [ -123.363643576999962, 49.407817197000078 ], [ -123.363305094999987, 49.408564901000048 ], [ -123.36346089299991, 49.409247112000045 ], [ -123.363381790999981, 49.409598790000096 ], [ -123.362957, 49.410067401000056 ], [ -123.362409404999966, 49.410329492000102 ], [ -123.36227148699993, 49.410582992000052 ], [ -123.362178385999954, 49.410862106000053 ], [ -123.362665286, 49.411398993000077 ], [ -123.362392896999964, 49.41195879100011 ], [ -123.361529293999965, 49.41255410800003 ], [ -123.361117992999965, 49.413014114000049 ], [ -123.360803013999913, 49.413204895000057 ], [ -123.360087306999958, 49.413458492000096 ], [ -123.35862839399999, 49.413823086000093 ], [ -123.358271180999935, 49.413995398000111 ], [ -123.357376883999976, 49.414169093000098 ], [ -123.35660570099995, 49.414197591000097 ], [ -123.355462897999956, 49.41440839600002 ], [ -123.353465017999895, 49.414649101000066 ], [ -123.353070766999963, 49.414670477000129 ], [ -123.353200487999956, 49.41240460300002 ], [ -123.357007552999946, 49.412497586000022 ], [ -123.357101217999968, 49.410858994000137 ], [ -123.358460996999909, 49.410892173000022 ], [ -123.358597894999932, 49.408495824000028 ], [ -123.358836132999926, 49.40850163500005 ], [ -123.358852399999961, 49.408216830000086 ], [ -123.359081413999945, 49.408222416000072 ], [ -123.359091699999937, 49.408042335000069 ], [ -123.359769427999979, 49.408058863000058 ], [ -123.359771073999923, 49.408030051000068 ], [ -123.360107104999926, 49.408038245000078 ], [ -123.36012527699998, 49.407719959000104 ], [ -123.360667453999937, 49.407733176000114 ] ], [ [ -123.362035866999989, 49.403809201000101 ], [ -123.362034954999928, 49.403685153000055 ], [ -123.362265864999969, 49.403684430000105 ], [ -123.361651008999928, 49.40366944800008 ], [ -123.36164358099991, 49.403799642000131 ], [ -123.362035866999989, 49.403809201000101 ] ], [ [ -123.364102464999988, 49.403678661000129 ], [ -123.364103802999935, 49.403859566000079 ], [ -123.364930978999936, 49.403879702000083 ], [ -123.364926175999955, 49.403231572000081 ], [ -123.364512591999969, 49.403221505000054 ], [ -123.364515967999964, 49.403677359000078 ], [ -123.364102464999988, 49.403678661000129 ] ], [ [ -123.366579458999965, 49.403131135000088 ], [ -123.366585330999911, 49.403919952000138 ], [ -123.36665452499993, 49.403921635000067 ], [ -123.36668896599997, 49.403316808000099 ], [ -123.368235155999983, 49.403354404000012 ], [ -123.368233445999962, 49.403125878000083 ], [ -123.367819949999969, 49.403127195000081 ], [ -123.367815917999962, 49.402587506000046 ], [ -123.367402426999945, 49.40258882200007 ], [ -123.367404439999973, 49.402858665000068 ], [ -123.366990944999912, 49.40285997900002 ], [ -123.366992955999962, 49.403129822000103 ], [ -123.366579458999965, 49.403131135000088 ] ], [ [ -123.366982900999986, 49.401780603000084 ], [ -123.36698282299993, 49.401770077000037 ], [ -123.36656925199999, 49.401760018000047 ], [ -123.36656941399994, 49.401781914000061 ], [ -123.366982900999986, 49.401780603000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17236416", "BldgCostT": "11151666", "sL_LossRatio": "0.793635456263671", "sL_AssetLoss": "94178", "sL_BldgLoss": "74743", "sL_StrLoss": "44793", "sL_NStrLoss": "29950", "sL_ContLoss": "19435", "geom_point": "0101000020E610000025C75BB6AFD65EC08733E0A8ECB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.349156974999957, 49.384482726000037 ], [ -123.349189493999916, 49.383915179000034 ], [ -123.348562189999896, 49.383899812000045 ], [ -123.348563242999901, 49.383881440000046 ], [ -123.348112675999928, 49.383870400000042 ], [ -123.348209777999969, 49.382176247000082 ], [ -123.348238511999909, 49.381674919000019 ], [ -123.346816863999962, 49.381640072000081 ], [ -123.346852341, 49.38102141100002 ], [ -123.347244384999939, 49.380954520000067 ], [ -123.348347127999915, 49.380695197000101 ], [ -123.34865423799999, 49.380622580000065 ], [ -123.349171370999983, 49.380441652000052 ], [ -123.349983196999958, 49.380020300000055 ], [ -123.351047997999942, 49.379461097000103 ], [ -123.351299840999957, 49.379416044000088 ], [ -123.351778383999942, 49.379330410000115 ], [ -123.352307968999924, 49.379172198000106 ], [ -123.352472361999958, 49.37906992900011 ], [ -123.352397771999961, 49.380373472000038 ], [ -123.353819384999966, 49.380408245000105 ], [ -123.353818334, 49.380426617000069 ], [ -123.354268869999942, 49.380437633000057 ], [ -123.354238013, 49.380977268000038 ], [ -123.35490284899997, 49.380993521000093 ], [ -123.354967878999929, 49.379855956000029 ], [ -123.360468410999928, 49.379990269000125 ], [ -123.360428949999985, 49.380681963000015 ], [ -123.361109229999954, 49.380698554000091 ], [ -123.360904073999905, 49.384295382000055 ], [ -123.357822331999955, 49.384220186000036 ], [ -123.357796869, 49.38466605700004 ], [ -123.354659635999965, 49.384589416000104 ], [ -123.354658039999961, 49.384617333000058 ], [ -123.349156974999957, 49.384482726000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7257917", "BldgCostT": "4741667", "sL_LossRatio": "0.787387537289485", "sL_AssetLoss": "50483.4", "sL_BldgLoss": "39750", "sL_StrLoss": "25660", "sL_NStrLoss": "14090", "sL_ContLoss": "10733.4", "geom_point": "0101000020E61000009128939E52D75EC04C1D3FAFD3B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.361912722999989, 49.379445325000084 ], [ -123.36741322599994, 49.379579286000087 ], [ -123.36720856299992, 49.383176130000024 ], [ -123.366940238999959, 49.383169602000073 ], [ -123.366922868999978, 49.383474837000044 ], [ -123.361421903999897, 49.383340853000121 ], [ -123.361627017999965, 49.379744019000064 ], [ -123.36189532, 49.379750561000051 ], [ -123.361912722999989, 49.379445325000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21603917", "BldgCostT": "14371667", "sL_LossRatio": "0.785569662319759", "sL_AssetLoss": "162491", "sL_BldgLoss": "127648", "sL_StrLoss": "77679", "sL_NStrLoss": "49969", "sL_ContLoss": "34843", "geom_point": "0101000020E6100000A148F7730AD65EC0AB1D0756BCB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.345093787999957, 49.391204760000122 ], [ -123.344821096999965, 49.389514306000073 ], [ -123.34395398599996, 49.389320813000069 ], [ -123.343909992999954, 49.389310993000088 ], [ -123.339490921999982, 49.389271804000046 ], [ -123.33952331099999, 49.387480198000034 ], [ -123.339535094999945, 49.386828099000063 ], [ -123.337836260999964, 49.386813707000073 ], [ -123.337635384999942, 49.386811988000069 ], [ -123.337496311, 49.386619502000094 ], [ -123.33776076, 49.386453450000033 ], [ -123.33827593700002, 49.386130002000101 ], [ -123.33951817499991, 49.385349987000069 ], [ -123.33964415399997, 49.385253077000066 ], [ -123.340327997999978, 49.384727006000091 ], [ -123.340385278999975, 49.384505697000073 ], [ -123.340421791999944, 49.384364584000053 ], [ -123.340356893999953, 49.384032514000126 ], [ -123.339883823999941, 49.383191320000073 ], [ -123.33956100799999, 49.382617285000052 ], [ -123.338238383999936, 49.380210553000012 ], [ -123.337955302999887, 49.379695384000122 ], [ -123.338454590999945, 49.379705799000099 ], [ -123.338911497999959, 49.379782827000042 ], [ -123.34082721299994, 49.380114469000048 ], [ -123.342016034999943, 49.38039490500006 ], [ -123.342515447000025, 49.380571048000135 ], [ -123.342816731999932, 49.380678150000115 ], [ -123.342805153999976, 49.380879770000128 ], [ -123.343072315999962, 49.380886330000124 ], [ -123.343058655999982, 49.381124230000069 ], [ -123.343051964000011, 49.381240751000107 ], [ -123.343352227999958, 49.381248124000102 ], [ -123.343145689999972, 49.384844914000027 ], [ -123.342709902999914, 49.384834214000115 ], [ -123.342610864999983, 49.386558422000064 ], [ -123.342551243999935, 49.386556958000057 ], [ -123.342548503999964, 49.386604656000074 ], [ -123.344664911999971, 49.386656603000034 ], [ -123.344593695999947, 49.387897338000059 ], [ -123.345777547999901, 49.387926377000092 ], [ -123.345750756000015, 49.38839335100004 ], [ -123.347324623999938, 49.388431937000043 ], [ -123.347314795, 49.388603346000068 ], [ -123.348386593999976, 49.388629610000052 ], [ -123.348278516999969, 49.390515065000088 ], [ -123.350042651999971, 49.390558271000046 ], [ -123.350033473999986, 49.390718481000086 ], [ -123.350722736999955, 49.390735354000057 ], [ -123.35051672899999, 49.394332108000114 ], [ -123.350496600999961, 49.394331615000034 ], [ -123.350404815000019, 49.395933906000039 ], [ -123.345252281999976, 49.395807666000053 ], [ -123.345184715999963, 49.393845474000081 ], [ -123.345093787999957, 49.391204760000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.821794099939795", "sL_AssetLoss": "3322", "sL_BldgLoss": "2730", "sL_StrLoss": "1710", "sL_NStrLoss": "1020", "sL_ContLoss": "592", "geom_point": "0101000020E610000075619CA6ECD85EC0D5571D5AE0AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.389025513999954, 49.365548451000045 ], [ -123.390265055999961, 49.365544274000072 ], [ -123.390273598999968, 49.366623654000072 ], [ -123.389860409999955, 49.366625048000088 ], [ -123.389862542999964, 49.366894894000097 ], [ -123.38862296799999, 49.366899067000077 ], [ -123.388614458999896, 49.365819687000034 ], [ -123.389027641999974, 49.36581829700004 ], [ -123.389025513999954, 49.365548451000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76958750", "BldgCostT": "53075000", "sL_LossRatio": "0.89783795487357", "sL_AssetLoss": "250327.8", "sL_BldgLoss": "224753.8", "sL_StrLoss": "166362.8", "sL_NStrLoss": "58391", "sL_ContLoss": "25574", "geom_point": "0101000020E6100000C786879368DA5EC0D953179579AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.419295889999958, 49.361138349000058 ], [ -123.417757497999972, 49.36095755500007 ], [ -123.417414100999977, 49.361028184000084 ], [ -123.417424050999941, 49.360849831000102 ], [ -123.420070825999971, 49.360912995000085 ], [ -123.420134002999973, 49.359779395000061 ], [ -123.419286330999981, 49.359759173000072 ], [ -123.419267439999928, 49.360098021000056 ], [ -123.419079119999964, 49.360093527000082 ], [ -123.419051159999981, 49.360595025000052 ], [ -123.418229082999929, 49.360575406000045 ], [ -123.418222432999983, 49.360694644000056 ], [ -123.412724027999943, 49.360563262000035 ], [ -123.412817746999934, 49.358886389000098 ], [ -123.412699729999943, 49.358883566000038 ], [ -123.412802410999944, 49.357046261000036 ], [ -123.41267408899995, 49.357043192000063 ], [ -123.412665207999964, 49.357202091000019 ], [ -123.412165701000021, 49.357190140000085 ], [ -123.412154998999938, 49.357381602000025 ], [ -123.411386515999979, 49.357363212000074 ], [ -123.411371781, 49.357626721000031 ], [ -123.409588867999943, 49.357584033000101 ], [ -123.409570026, 49.357920764000049 ], [ -123.40858218699999, 49.357897100000102 ], [ -123.408424438999958, 49.360714985000108 ], [ -123.404062370999966, 49.360610382000075 ], [ -123.40384846399999, 49.360221198000026 ], [ -123.403508702999943, 49.359947386000051 ], [ -123.403343208999942, 49.359782199000101 ], [ -123.403291880999944, 49.358683297000056 ], [ -123.403170399999965, 49.35815180400003 ], [ -123.401599636999933, 49.358243136000063 ], [ -123.400704086999951, 49.358295203000075 ], [ -123.40065952499998, 49.358303120000102 ], [ -123.400841849999964, 49.355055709000041 ], [ -123.401332214999911, 49.355067494000124 ], [ -123.401394689999918, 49.353954420000086 ], [ -123.404157319999968, 49.354020768000034 ], [ -123.40427780499999, 49.351871728000027 ], [ -123.401115631999971, 49.351795779000049 ], [ -123.401317522999932, 49.348198703000087 ], [ -123.406814427999947, 49.348330667000063 ], [ -123.406669459999975, 49.350919073000092 ], [ -123.408296939999943, 49.350958090000091 ], [ -123.408297583999982, 49.350946580000084 ], [ -123.40874983799992, 49.350957418000128 ], [ -123.408768183999939, 49.350629591000086 ], [ -123.409067208999957, 49.350636756000036 ], [ -123.409072376999973, 49.350544399000114 ], [ -123.409499058999955, 49.350554621000072 ], [ -123.409519177999982, 49.350195009000124 ], [ -123.411471891999909, 49.350241769000021 ], [ -123.411495120999945, 49.349826256000036 ], [ -123.411993356, 49.349838181000045 ], [ -123.412006312999907, 49.349606368000074 ], [ -123.412524933999975, 49.349618779000075 ], [ -123.41253429899993, 49.349451180000081 ], [ -123.412804835999921, 49.349457653000044 ], [ -123.412817401999973, 49.349232787000048 ], [ -123.41341556299993, 49.349247096000084 ], [ -123.413425885999956, 49.349062301000068 ], [ -123.415420958999945, 49.349110005000085 ], [ -123.415445527999978, 49.348669849000025 ], [ -123.420942528999944, 49.348801096 ], [ -123.420865492999937, 49.350184148000082 ], [ -123.420980813999932, 49.350186898000103 ], [ -123.420937814999931, 49.350958832000032 ], [ -123.419901682999921, 49.351415603000078 ], [ -123.419214397999966, 49.351607908000091 ], [ -123.41898934699995, 49.351813759000066 ], [ -123.418859409999982, 49.35193260900008 ], [ -123.418849278999943, 49.352328495000087 ], [ -123.419085195999926, 49.352597699000064 ], [ -123.419087615999942, 49.352885398000055 ], [ -123.419105708999922, 49.353343996000014 ], [ -123.419413987999974, 49.353990607000078 ], [ -123.419830786999952, 49.354331007000056 ], [ -123.420472089999919, 49.355245294000085 ], [ -123.420900104999959, 49.355522997000037 ], [ -123.421533993999958, 49.355511688000036 ], [ -123.421852615999967, 49.355672595000144 ], [ -123.421828913999931, 49.356077097000131 ], [ -123.422094591999894, 49.356733612000049 ], [ -123.422101100999953, 49.357326111000084 ], [ -123.422156501999908, 49.357488411000055 ], [ -123.422420194999944, 49.357712008000057 ], [ -123.423342409999975, 49.357619498000076 ], [ -123.423551481999979, 49.357843099 ], [ -123.424226715999936, 49.357867302000031 ], [ -123.42432269299999, 49.358019704000114 ], [ -123.424626588999956, 49.358019696000028 ], [ -123.42567108799993, 49.357709202000095 ], [ -123.425810501999976, 49.357897203000057 ], [ -123.425498608999959, 49.358429893000135 ], [ -123.425488494999925, 49.358915494000094 ], [ -123.425983192, 49.358949702000068 ], [ -123.426014605999939, 49.359318588000058 ], [ -123.425864588, 49.359508009000116 ], [ -123.425506808999927, 49.359580600000051 ], [ -123.425426893999941, 49.359886816000014 ], [ -123.424800816999948, 49.36058180800007 ], [ -123.424304522999989, 49.360683004000109 ], [ -123.424389213999945, 49.360933594000066 ], [ -123.424750410999962, 49.361131589000102 ], [ -123.42486089, 49.361301099000052 ], [ -123.424835686999955, 49.36160730600006 ], [ -123.424662900999962, 49.362363499000082 ], [ -123.424528690999949, 49.362544400000075 ], [ -123.424490205999945, 49.36303 ], [ -123.423940377999912, 49.363094092000033 ], [ -123.423516894999935, 49.363420286000093 ], [ -123.423406585999942, 49.363574100000115 ], [ -123.423656695999952, 49.36377920200006 ], [ -123.423010384999955, 49.363952896000036 ], [ -123.422509846999986, 49.364034156000109 ], [ -123.42225203000001, 49.364075976000031 ], [ -123.421977538999968, 49.363779889000057 ], [ -123.421254089999962, 49.362999488000078 ], [ -123.42069569200001, 49.362324296000082 ], [ -123.42064723499999, 49.362243227000079 ], [ -123.420242459999884, 49.361566126000071 ], [ -123.419724259999953, 49.361280930000078 ], [ -123.419295889999958, 49.361138349000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49693917", "BldgCostT": "34271667", "sL_LossRatio": "0.825492802862442", "sL_AssetLoss": "304635", "sL_BldgLoss": "251474", "sL_StrLoss": "152191", "sL_NStrLoss": "99283", "sL_ContLoss": "53161", "geom_point": "0101000020E6100000A80D98D119D85EC0EE312EA831AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.364677084, 49.342458879000048 ], [ -123.364576977999917, 49.34228353300005 ], [ -123.36456198099998, 49.342213749000024 ], [ -123.364536729999926, 49.342096156000132 ], [ -123.364668080999948, 49.341991448000094 ], [ -123.364871319999963, 49.341866691000092 ], [ -123.365168186999966, 49.341762862000103 ], [ -123.365599000999921, 49.341611436000072 ], [ -123.36579848599996, 49.341491130000058 ], [ -123.365956198999982, 49.341340481000046 ], [ -123.366021222999933, 49.341227312000072 ], [ -123.366019642999959, 49.341134518000075 ], [ -123.366013643999949, 49.341046120000023 ], [ -123.365906853999959, 49.340916551000184 ], [ -123.365656034999958, 49.340729435000071 ], [ -123.365372554999951, 49.340466050000089 ], [ -123.365146417999981, 49.340255958000121 ], [ -123.365057762999939, 49.340121420000109 ], [ -123.364982670999936, 49.339699945000092 ], [ -123.364505767999958, 49.339303805000057 ], [ -123.364350382999959, 49.339399074000028 ], [ -123.36406790699999, 49.339575887000045 ], [ -123.36371182399995, 49.33971669400006 ], [ -123.363265152999944, 49.339840411000061 ], [ -123.361843435999944, 49.340151092000013 ], [ -123.360739230999926, 49.340426685000068 ], [ -123.359745797999921, 49.340656042000099 ], [ -123.358943633999971, 49.34084122900002 ], [ -123.358732967999941, 49.340916230000104 ], [ -123.358619802999954, 49.341018805000047 ], [ -123.358546906999933, 49.341138601000061 ], [ -123.358483659999976, 49.341469364000027 ], [ -123.358427217999946, 49.341633491000067 ], [ -123.358402382999955, 49.341694290000127 ], [ -123.358276394, 49.34174394500009 ], [ -123.358265778999922, 49.340281718000014 ], [ -123.358651373999976, 49.3402805220001 ], [ -123.358665085999988, 49.340040100000088 ], [ -123.357071311999931, 49.340001148000056 ], [ -123.357146987999926, 49.338675007000035 ], [ -123.357682718999968, 49.338725900000014 ], [ -123.358493286999959, 49.338435401000069 ], [ -123.35945752, 49.338442500000049 ], [ -123.359718416999897, 49.338243093000131 ], [ -123.359755507999935, 49.337847185000058 ], [ -123.359287305999914, 49.337812991000135 ], [ -123.358600483999908, 49.337922704000086 ], [ -123.358489682999988, 49.337824401000013 ], [ -123.358543674999936, 49.337751793000024 ], [ -123.359463303999959, 49.337379996000053 ], [ -123.36013701899999, 49.337270396000072 ], [ -123.361344204999966, 49.336717788000023 ], [ -123.361369908999933, 49.33652840000012 ], [ -123.361261015999929, 49.336465706000098 ], [ -123.360902692999986, 49.336477090000066 ], [ -123.36051788599994, 49.336620893000038 ], [ -123.360213619999939, 49.336559698000066 ], [ -123.360130183999971, 49.336424407000059 ], [ -123.360168011999946, 49.335957289000106 ], [ -123.360414017999972, 49.335742310000043 ], [ -123.361945738999964, 49.335779701000028 ], [ -123.361958229999971, 49.335560404000113 ], [ -123.36474783, 49.335628445000076 ], [ -123.364709185999914, 49.335826195000053 ], [ -123.364367210999959, 49.335917394000084 ], [ -123.36352769799997, 49.335964401000084 ], [ -123.363268093999949, 49.336153811000067 ], [ -123.363214397, 49.336505601000098 ], [ -123.363449382999988, 49.336639502000033 ], [ -123.363891205999948, 49.336646587000068 ], [ -123.364852390999943, 49.336499893000024 ], [ -123.364895607999969, 49.336625203000033 ], [ -123.364621399999947, 49.336743411000086 ], [ -123.364663083999972, 49.336824591000074 ], [ -123.364869907999918, 49.33684169800005 ], [ -123.365925, 49.336326111000062 ], [ -123.366571193999931, 49.336242103000117 ], [ -123.366940680999988, 49.335927296000129 ], [ -123.36753068199999, 49.335744999000035 ], [ -123.367944517999916, 49.335716596000054 ], [ -123.368014094999978, 49.335950101000037 ], [ -123.36835920499999, 49.335841905000059 ], [ -123.368785283999941, 49.335857591000099 ], [ -123.369003407999983, 49.335695195 ], [ -123.369347413999932, 49.335693802000044 ], [ -123.369461383999962, 49.336027006000094 ], [ -123.369983585999989, 49.336015595000092 ], [ -123.370136991999956, 49.336150894000099 ], [ -123.370698689000022, 49.33582481100013 ], [ -123.371426497999948, 49.335723705000085 ], [ -123.371716004999911, 49.335605506000043 ], [ -123.372389479, 49.335585497000054 ], [ -123.373010403999956, 49.335709405000095 ], [ -123.373668582999983, 49.335518602000022 ], [ -123.373833303999959, 49.335373289000053 ], [ -123.373899910999953, 49.335041494000059 ], [ -123.373429195999904, 49.334871987000078 ], [ -123.37333268, 49.334763797000051 ], [ -123.373261507999956, 49.334431910000028 ], [ -123.373411211999965, 49.334169893000059 ], [ -123.373864908999934, 49.334186998000106 ], [ -123.373964293999947, 49.334464686000068 ], [ -123.374994797999989, 49.334443290000102 ], [ -123.375202315999928, 49.334389196000082 ], [ -123.375378893999979, 49.33422679600011 ], [ -123.37582078799997, 49.33423399800003 ], [ -123.376166597999912, 49.334466105000097 ], [ -123.376415818999959, 49.334835003000109 ], [ -123.37638980699991, 49.334916201000105 ], [ -123.376114281999918, 49.335032903000055 ], [ -123.376116710999909, 49.335114088000068 ], [ -123.377491709999944, 49.335109790000111 ], [ -123.378165008999986, 49.334891885000033 ], [ -123.378191521999923, 49.334802204000034 ], [ -123.377459612999942, 49.334354997000062 ], [ -123.377497686999973, 49.334092999000049 ], [ -123.37814531399998, 49.334037393000081 ], [ -123.378967304999975, 49.333648609000086 ], [ -123.37940739899993, 49.333647188000086 ], [ -123.379779292999928, 49.333681399000071 ], [ -123.379932210999982, 49.333798207000065 ], [ -123.38071660699994, 49.333759685000068 ], [ -123.380840908999929, 49.333849407000059 ], [ -123.380829484999964, 49.334001799000148 ], [ -123.380581284999934, 49.334182698000113 ], [ -123.379635510999947, 49.33447320100008 ], [ -123.379566399999959, 49.334626987000014 ], [ -123.379705323999957, 49.33476090200007 ], [ -123.381094798999953, 49.334656995000067 ], [ -123.382524213999901, 49.334427704000078 ], [ -123.382826983999976, 49.334417695000056 ], [ -123.382951294999927, 49.334480310000089 ], [ -123.383050104999967, 49.334642689000113 ], [ -123.382984901999947, 49.335065686000107 ], [ -123.382285014999937, 49.335490095000061 ], [ -123.382300405999956, 49.335688108000035 ], [ -123.382548809999932, 49.335759292000077 ], [ -123.385435498999968, 49.335111286000014 ], [ -123.385873376999953, 49.33493889600004 ], [ -123.386038315999883, 49.334991601000056 ], [ -123.386442008999936, 49.335404686000075 ], [ -123.387252708999966, 49.33524939800008 ], [ -123.387885513999947, 49.335255105000044 ], [ -123.388630903999982, 49.335468796000072 ], [ -123.389125190999948, 49.335475913000067 ], [ -123.389317994999928, 49.335467306000098 ], [ -123.390251710999962, 49.335085597000052 ], [ -123.390802393999962, 49.334957511000077 ], [ -123.392337790999989, 49.334232515000046 ], [ -123.392667817999964, 49.334205504000032 ], [ -123.39315428899999, 49.33433214300004 ], [ -123.393384605999969, 49.334392098000123 ], [ -123.39383987899997, 49.334651296000096 ], [ -123.394489087999972, 49.334864894000134 ], [ -123.39503743099999, 49.334854816000046 ], [ -123.394884770999951, 49.337569081000055 ], [ -123.39231616699999, 49.337507151000061 ], [ -123.392305476000018, 49.337697043000084 ], [ -123.39119323499996, 49.337670208000056 ], [ -123.391165456999914, 49.338163369000036 ], [ -123.387560859999951, 49.338076322000099 ], [ -123.387436125999955, 49.340287555000067 ], [ -123.381940231999963, 49.340154604000148 ], [ -123.38196784499992, 49.339666116000075 ], [ -123.381800883999986, 49.339666668000064 ], [ -123.381802970999914, 49.339936514000073 ], [ -123.381390004999943, 49.339937878000107 ], [ -123.381392088999974, 49.340207723000042 ], [ -123.38056615099994, 49.34021044600005 ], [ -123.380570314999943, 49.340750140000125 ], [ -123.379744366999915, 49.340752855000126 ], [ -123.379748519999936, 49.341292549000073 ], [ -123.378559050999954, 49.341296451000055 ], [ -123.378096606999975, 49.341297965000095 ], [ -123.378088337999941, 49.340218579000066 ], [ -123.377675368999988, 49.340219929000042 ], [ -123.377669172999944, 49.33941038800004 ], [ -123.378082134999929, 49.339409038000056 ], [ -123.378078000999935, 49.338869345000049 ], [ -123.378490959999965, 49.338867993000079 ], [ -123.378487747999927, 49.33844926200004 ], [ -123.378399203999948, 49.338447116000069 ], [ -123.378421191999962, 49.338058661000119 ], [ -123.378071799999944, 49.33805980400011 ], [ -123.378069441999955, 49.337751813000082 ], [ -123.37516281799995, 49.33768127800009 ], [ -123.37512621899999, 49.33832706100003 ], [ -123.373336314999946, 49.338283586000095 ], [ -123.373332047999966, 49.338358805000027 ], [ -123.371132570999947, 49.338305342000126 ], [ -123.371098989999936, 49.338896958000099 ], [ -123.368579480999983, 49.338835661000125 ], [ -123.368581974999955, 49.339169869000017 ], [ -123.36734309299996, 49.339173813000031 ], [ -123.367345099999966, 49.339443660000057 ], [ -123.365693247999943, 49.339448898000121 ], [ -123.365697246999929, 49.339988592000033 ], [ -123.366110214999978, 49.339987285000056 ], [ -123.366114218999925, 49.34052697900006 ], [ -123.36652719099996, 49.340525670000048 ], [ -123.366529193999924, 49.340795517000082 ], [ -123.366942169999987, 49.340794207000023 ], [ -123.366948188999942, 49.341603747000129 ], [ -123.366535207999931, 49.341605059000081 ], [ -123.366537211999926, 49.341874905000068 ], [ -123.366124228, 49.341876214000131 ], [ -123.366126229999963, 49.342146061000101 ], [ -123.36571324399992, 49.342147368000141 ], [ -123.365715243999958, 49.342417214000058 ], [ -123.366128233999987, 49.342415907000046 ], [ -123.366132039999911, 49.342928991000072 ], [ -123.36593802599999, 49.342863719000029 ], [ -123.36559246399996, 49.342789292000063 ], [ -123.365314344999888, 49.342735180000069 ], [ -123.365043170999954, 49.342674905000081 ], [ -123.364816825999966, 49.342583225000105 ], [ -123.364677084, 49.342458879000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159423061", "BldgCostT": "107553190", "sL_LossRatio": "0.825918560704655", "sL_AssetLoss": "960470", "sL_BldgLoss": "793270", "sL_StrLoss": "347900", "sL_NStrLoss": "445370", "sL_ContLoss": "167200", "geom_point": "0101000020E6100000F938EC214EC85EC0165E9BF0BFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128536904000015, 49.287001380000056 ], [ -123.129040366999945, 49.286658806000069 ], [ -123.129569988999947, 49.286298399000046 ], [ -123.13100920399998, 49.287206705000052 ], [ -123.130473817, 49.287566016000028 ], [ -123.129948015999972, 49.287918903000111 ], [ -123.128536904000015, 49.287001380000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54061666", "BldgCostT": "28455681", "sL_LossRatio": "0.597361333221109", "sL_AssetLoss": "950480", "sL_BldgLoss": "567780", "sL_StrLoss": "238690", "sL_NStrLoss": "329090", "sL_ContLoss": "382700", "geom_point": "0101000020E610000020862DA835C85EC0350B49A0A0A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126958092, 49.285973099000088 ], [ -123.127523875999955, 49.285633069 ], [ -123.128043102999968, 49.285321002000053 ], [ -123.129569988999947, 49.286298399000046 ], [ -123.129040366999945, 49.286658806000069 ], [ -123.128536904000015, 49.287001380000056 ], [ -123.126958092, 49.285973099000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "422761500", "BldgCostT": "293715000", "sL_LossRatio": "0.878511479739434", "sL_AssetLoss": "1469110", "sL_BldgLoss": "1290630", "sL_StrLoss": "610580", "sL_NStrLoss": "680050", "sL_ContLoss": "178480", "geom_point": "0101000020E6100000BFDD710E47C85EC0534B423B8AA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128043102999968, 49.285321002000053 ], [ -123.128613374999958, 49.284952085000057 ], [ -123.12909690199993, 49.284639295000034 ], [ -123.130633600999957, 49.285613296000122 ], [ -123.130106807999979, 49.28595262100005 ], [ -123.129569988999947, 49.286298399000046 ], [ -123.128043102999968, 49.285321002000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "435551122", "BldgCostT": "300446380", "sL_LossRatio": "0.889852046509954", "sL_AssetLoss": "2777900", "sL_BldgLoss": "2471920", "sL_StrLoss": "1161880", "sL_NStrLoss": "1310040", "sL_ContLoss": "305980", "geom_point": "0101000020E61000008546FB485FC85EC091B1FB0AA9A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129569988999947, 49.286298399000046 ], [ -123.130106807999979, 49.28595262100005 ], [ -123.130633600999957, 49.285613296000122 ], [ -123.132055289999983, 49.286515700000109 ], [ -123.131530018999939, 49.28686267100008 ], [ -123.13100920399998, 49.287206705000052 ], [ -123.129569988999947, 49.286298399000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299315417", "BldgCostT": "204931667", "sL_LossRatio": "0.872340354545994", "sL_AssetLoss": "1498649", "sL_BldgLoss": "1307332", "sL_StrLoss": "620520", "sL_NStrLoss": "686812", "sL_ContLoss": "191317", "geom_point": "0101000020E6100000F9BC03B870C85EC0682E26EC91A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130633600999957, 49.285613296000122 ], [ -123.131195202999919, 49.285243657000088 ], [ -123.131725418999935, 49.284894690000023 ], [ -123.133114711999937, 49.285787302000074 ], [ -123.132574154999986, 49.286158949000061 ], [ -123.132055289999983, 49.286515700000109 ], [ -123.130633600999957, 49.285613296000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258507447", "BldgCostT": "171890269", "sL_LossRatio": "0.800586302534287", "sL_AssetLoss": "1835230", "sL_BldgLoss": "1469260", "sL_StrLoss": "626430", "sL_NStrLoss": "842830", "sL_ContLoss": "365970", "geom_point": "0101000020E61000000FC237A858C85EC060B84AE272A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12909690199993, 49.284639295000034 ], [ -123.129635574999924, 49.284271834000094 ], [ -123.129875985999959, 49.284107828000039 ], [ -123.130197496999983, 49.283888495000085 ], [ -123.131725418999935, 49.284894690000023 ], [ -123.131195202999919, 49.285243657000088 ], [ -123.130633600999957, 49.285613296000122 ], [ -123.12909690199993, 49.284639295000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237254000", "BldgCostT": "160880000", "sL_LossRatio": "0.80276187988316", "sL_AssetLoss": "1684360", "sL_BldgLoss": "1352140", "sL_StrLoss": "583660", "sL_NStrLoss": "768480", "sL_ContLoss": "332220", "geom_point": "0101000020E610000051488D646AC85EC0225FE8955BA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130197496999983, 49.283888495000085 ], [ -123.130714313999974, 49.28354725700008 ], [ -123.13124638, 49.283195890000052 ], [ -123.132796589999927, 49.284197207000055 ], [ -123.132205313999975, 49.284582216000082 ], [ -123.131725418999935, 49.284894690000023 ], [ -123.130197496999983, 49.283888495000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173724000", "BldgCostT": "115620000", "sL_LossRatio": "0.816378296657148", "sL_AssetLoss": "1190600", "sL_BldgLoss": "971980", "sL_StrLoss": "434180", "sL_NStrLoss": "537800", "sL_ContLoss": "218620", "geom_point": "0101000020E6100000A6B8AAEC7BC85EC04FCBF6BE44A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13124638, 49.283195890000052 ], [ -123.131730746999907, 49.282871901000078 ], [ -123.132171104999912, 49.282577295000046 ], [ -123.132325402, 49.282527396000113 ], [ -123.132732498999928, 49.282744385000079 ], [ -123.133885705999958, 49.283519994000081 ], [ -123.133276334999962, 49.283898895000021 ], [ -123.132796589999927, 49.284197207000055 ], [ -123.13124638, 49.283195890000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "507430947", "BldgCostT": "350600269", "sL_LossRatio": "0.835638893069579", "sL_AssetLoss": "3056380", "sL_BldgLoss": "2554030", "sL_StrLoss": "1104450", "sL_NStrLoss": "1449580", "sL_ContLoss": "502350", "geom_point": "0101000020E6100000B64B1B0E8BC85EC05488818D6FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133276334999962, 49.283898895000021 ], [ -123.133885705999958, 49.283519994000081 ], [ -123.135239690999981, 49.284406208000043 ], [ -123.13476177699999, 49.284722067000068 ], [ -123.134718035999967, 49.284750953000064 ], [ -123.134200787999973, 49.285092807000083 ], [ -123.133706311999944, 49.28542201300008 ], [ -123.133493963999939, 49.28555312800011 ], [ -123.133114711999937, 49.285787302000074 ], [ -123.131725418999935, 49.284894690000023 ], [ -123.132205313999975, 49.284582216000082 ], [ -123.132796589999927, 49.284197207000055 ], [ -123.133276334999962, 49.283898895000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89142000", "BldgCostT": "59010000", "sL_LossRatio": "0.751882441833199", "sL_AssetLoss": "767620", "sL_BldgLoss": "577160", "sL_StrLoss": "219360", "sL_NStrLoss": "357800", "sL_ContLoss": "190460", "geom_point": "0101000020E610000091E01D4BA5C85EC0E49C1A604DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133885705999958, 49.283519994000081 ], [ -123.134373936, 49.283183896000033 ], [ -123.134916298999954, 49.282810483000091 ], [ -123.136303688999931, 49.28371199400015 ], [ -123.135818057999984, 49.284028873000096 ], [ -123.135756713999911, 49.28406888500011 ], [ -123.135623228999989, 49.284155990000052 ], [ -123.135239690999981, 49.284406208000043 ], [ -123.133885705999958, 49.283519994000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115381478", "BldgCostT": "72924857", "sL_LossRatio": "0.707020448260806", "sL_AssetLoss": "1099360", "sL_BldgLoss": "777270", "sL_StrLoss": "325950", "sL_NStrLoss": "451320", "sL_ContLoss": "322090", "geom_point": "0101000020E6100000EF53E1118DC85EC00E7980FE2DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132325402, 49.282527396000113 ], [ -123.132263515999981, 49.282439296000049 ], [ -123.132412882999958, 49.282399992000101 ], [ -123.132811250999978, 49.282148296000109 ], [ -123.132838959999944, 49.282130772000038 ], [ -123.133352576, 49.281806206000063 ], [ -123.134916298999954, 49.282810483000091 ], [ -123.134373936, 49.283183896000033 ], [ -123.133885705999958, 49.283519994000081 ], [ -123.132732498999928, 49.282744385000079 ], [ -123.132325402, 49.282527396000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "617872399", "BldgCostT": "420934425", "sL_LossRatio": "0.83552823702925", "sL_AssetLoss": "4619413", "sL_BldgLoss": "3859650", "sL_StrLoss": "1783840", "sL_NStrLoss": "2075810", "sL_ContLoss": "759763", "geom_point": "0101000020E61000009EAB49645DC85EC0955343341DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130672954999952, 49.280749834000069 ], [ -123.131214195999945, 49.280383897000064 ], [ -123.133352576, 49.281806206000063 ], [ -123.132838959999944, 49.282130772000038 ], [ -123.132811250999978, 49.282148296000109 ], [ -123.132412882999958, 49.282399992000101 ], [ -123.132263515999981, 49.282439296000049 ], [ -123.132325402, 49.282527396000113 ], [ -123.132171104999912, 49.282577295000046 ], [ -123.131730746999907, 49.282871901000078 ], [ -123.13124638, 49.283195890000052 ], [ -123.130714313999974, 49.28354725700008 ], [ -123.130197496999983, 49.283888495000085 ], [ -123.12915314899999, 49.283209131000056 ], [ -123.128048024999913, 49.282490204000069 ], [ -123.128593229, 49.282128362000094 ], [ -123.129097104999943, 49.281794000000104 ], [ -123.129585614999954, 49.281473561000041 ], [ -123.1301528, 49.281101495000073 ], [ -123.130672954999952, 49.280749834000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260188947", "BldgCostT": "173045269", "sL_LossRatio": "0.79620808816662", "sL_AssetLoss": "1606050", "sL_BldgLoss": "1278750", "sL_StrLoss": "578540", "sL_NStrLoss": "700210", "sL_ContLoss": "327300", "geom_point": "0101000020E6100000005BDA803AC85EC04BB07AB84BA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126936495999971, 49.283217210000053 ], [ -123.127448825999963, 49.282882091000062 ], [ -123.127583135999899, 49.282794248000116 ], [ -123.128048024999913, 49.282490204000069 ], [ -123.12915314899999, 49.283209131000056 ], [ -123.130197496999983, 49.283888495000085 ], [ -123.129875985999959, 49.284107828000039 ], [ -123.129635574999924, 49.284271834000094 ], [ -123.12909690199993, 49.284639295000034 ], [ -123.126936495999971, 49.283217210000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "397279392", "BldgCostT": "266946255", "sL_LossRatio": "0.835273847902735", "sL_AssetLoss": "2251980", "sL_BldgLoss": "1881020", "sL_StrLoss": "877720", "sL_NStrLoss": "1003300", "sL_ContLoss": "370960", "geom_point": "0101000020E6100000341E11F828C85EC0B07181F462A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12591179199994, 49.283895208000125 ], [ -123.126400061, 49.283572142 ], [ -123.126936495999971, 49.283217210000053 ], [ -123.12909690199993, 49.284639295000034 ], [ -123.128613374999958, 49.284952085000057 ], [ -123.128043102999968, 49.285321002000053 ], [ -123.12591179199994, 49.283895208000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "415554225", "BldgCostT": "265653870", "sL_LossRatio": "0.698253522198289", "sL_AssetLoss": "4206180", "sL_BldgLoss": "2936980", "sL_StrLoss": "1232540", "sL_NStrLoss": "1704440", "sL_ContLoss": "1269200", "geom_point": "0101000020E6100000E1465F7B05C85EC062EDC6ED5DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123359823999962, 49.282918998000135 ], [ -123.124422378999938, 49.282225303000111 ], [ -123.124748211999943, 49.282446495000045 ], [ -123.125150416999944, 49.282986 ], [ -123.125486410999912, 49.283618207000075 ], [ -123.12591179199994, 49.283895208000125 ], [ -123.128043102999968, 49.285321002000053 ], [ -123.127523875999955, 49.285633069 ], [ -123.126958092, 49.285973099000088 ], [ -123.124848301999933, 49.28459919200003 ], [ -123.122803897999987, 49.283281891000101 ], [ -123.123359823999962, 49.282918998000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "357368622", "BldgCostT": "235921380", "sL_LossRatio": "0.738201558061462", "sL_AssetLoss": "1858720", "sL_BldgLoss": "1372110", "sL_StrLoss": "577900", "sL_NStrLoss": "794210", "sL_ContLoss": "486610", "geom_point": "0101000020E6100000A2F95BE912C85EC09FFCAB0129A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125430658999903, 49.281584222000106 ], [ -123.126037888999974, 49.281194701000068 ], [ -123.128048024999913, 49.282490204000069 ], [ -123.127583135999899, 49.282794248000116 ], [ -123.127448825999963, 49.282882091000062 ], [ -123.126936495999971, 49.283217210000053 ], [ -123.126400061, 49.283572142 ], [ -123.12591179199994, 49.283895208000125 ], [ -123.125486410999912, 49.283618207000075 ], [ -123.125150416999944, 49.282986 ], [ -123.124748211999943, 49.282446495000045 ], [ -123.124422378999938, 49.282225303000111 ], [ -123.124968826999918, 49.281880499000124 ], [ -123.125430658999903, 49.281584222000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "265121351", "BldgCostT": "176041238", "sL_LossRatio": "0.703907372359126", "sL_AssetLoss": "1543902", "sL_BldgLoss": "1086764", "sL_StrLoss": "494860", "sL_NStrLoss": "591904", "sL_ContLoss": "457138", "geom_point": "0101000020E6100000570207593BC85EC0CA702CBDF0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128647906999973, 49.279434093000084 ], [ -123.129182791999938, 49.279077892000089 ], [ -123.131214195999945, 49.280383897000064 ], [ -123.130672954999952, 49.280749834000069 ], [ -123.1301528, 49.281101495000073 ], [ -123.129585614999954, 49.281473561000041 ], [ -123.129097104999943, 49.281794000000104 ], [ -123.128593229, 49.282128362000094 ], [ -123.128048024999913, 49.282490204000069 ], [ -123.126037888999974, 49.281194701000068 ], [ -123.126524600999943, 49.280860124000085 ], [ -123.127078592999965, 49.280479287000112 ], [ -123.127232238999952, 49.2803769410001 ], [ -123.127425049999943, 49.280248511000075 ], [ -123.127624716999946, 49.280115492000093 ], [ -123.128625914999972, 49.279448737000031 ], [ -123.128647906999973, 49.279434093000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159787500", "BldgCostT": "107745000", "sL_LossRatio": "0.799352818590234", "sL_AssetLoss": "954910", "sL_BldgLoss": "763310", "sL_StrLoss": "336280", "sL_NStrLoss": "427030", "sL_ContLoss": "191600", "geom_point": "0101000020E6100000F6BB6E1909C95EC0A7D22E2AD2A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140197177999966, 49.271390907000075 ], [ -123.141070621999972, 49.271086103000101 ], [ -123.141308079999988, 49.271353460000043 ], [ -123.141864589999955, 49.271980008000071 ], [ -123.141975080999927, 49.272261201000035 ], [ -123.141991709999942, 49.272548098000094 ], [ -123.14186377299994, 49.272885192000068 ], [ -123.141792401999965, 49.272928290000046 ], [ -123.141674785999925, 49.27294228800006 ], [ -123.140908490999934, 49.272778800000069 ], [ -123.140820687999934, 49.272464800000094 ], [ -123.140197177999966, 49.271390907000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215390540", "BldgCostT": "125780345", "sL_LossRatio": "0.594856572442103", "sL_AssetLoss": "3649473", "sL_BldgLoss": "2170913", "sL_StrLoss": "856703", "sL_NStrLoss": "1314210", "sL_ContLoss": "1478560", "geom_point": "0101000020E610000007D9BC81F4C85EC0A371DA19C7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139837213999954, 49.273027092000035 ], [ -123.13982190899999, 49.272352086000083 ], [ -123.13954421699999, 49.271597201000084 ], [ -123.138991904999941, 49.271048883000098 ], [ -123.138717119999981, 49.271094500000032 ], [ -123.13842870399999, 49.271048885000027 ], [ -123.137768183999981, 49.270798295000084 ], [ -123.137396204999959, 49.270339711000119 ], [ -123.137176797999956, 49.270295498000067 ], [ -123.13693051199999, 49.270601694000064 ], [ -123.137400487999955, 49.27166270900004 ], [ -123.13740040499999, 49.271877796000062 ], [ -123.137044281999977, 49.2726069940001 ], [ -123.136811520999956, 49.272931698000036 ], [ -123.13660581399995, 49.273040004000109 ], [ -123.135451376999981, 49.273185195000089 ], [ -123.134570600999908, 49.272853399000113 ], [ -123.134349790999977, 49.272547212000106 ], [ -123.133730400999923, 49.272250911000128 ], [ -123.133722923000036, 49.272240223000054 ], [ -123.133660928999944, 49.272151620000052 ], [ -123.134550694999973, 49.271558157000072 ], [ -123.135080824999946, 49.271206495000079 ], [ -123.135181874999901, 49.271216392000099 ], [ -123.135165512999947, 49.271280789000102 ], [ -123.136053698999959, 49.27069278400004 ], [ -123.136053502999985, 49.270629783000075 ], [ -123.136000704999958, 49.270594081000091 ], [ -123.13515819099996, 49.270109699000081 ], [ -123.135495989999981, 49.269867393000041 ], [ -123.135536091999967, 49.269836859000129 ], [ -123.135579483999919, 49.269815413000082 ], [ -123.135582250999917, 49.269805663000128 ], [ -123.135589069999952, 49.269797819000054 ], [ -123.135595737999935, 49.269788043000126 ], [ -123.135596518999947, 49.269776248000063 ], [ -123.135586425000014, 49.269751109000076 ], [ -123.135594839999968, 49.269717646000132 ], [ -123.13561616599999, 49.269726219000091 ], [ -123.135644251999977, 49.269737119000077 ], [ -123.135665965000015, 49.269732924000053 ], [ -123.135965002999967, 49.269503291000021 ], [ -123.136610603999927, 49.269061089000054 ], [ -123.13676652499997, 49.269027400000063 ], [ -123.137410587999952, 49.268898595000095 ], [ -123.13753415199993, 49.269205944000106 ], [ -123.137549992999936, 49.269245404000088 ], [ -123.137652420999956, 49.269322905000109 ], [ -123.137104502999932, 49.269895591000072 ], [ -123.137523832999946, 49.269558222000121 ], [ -123.137704942, 49.269361210000085 ], [ -123.137751006999935, 49.269394894000058 ], [ -123.137934250999962, 49.269137243000138 ], [ -123.137974020999962, 49.269081358000051 ], [ -123.137980224999978, 49.269072649000101 ], [ -123.13819175499999, 49.268775155000093 ], [ -123.138224895999883, 49.268833029000128 ], [ -123.138410962999941, 49.269157915000093 ], [ -123.13946217299997, 49.269688019000043 ], [ -123.140417877999951, 49.269705478000027 ], [ -123.140791112999935, 49.269712287000061 ], [ -123.140774903999954, 49.270043389000136 ], [ -123.140790436, 49.270128119000162 ], [ -123.14081288099996, 49.270250597 ], [ -123.140929315, 49.27043480400004 ], [ -123.141079417999933, 49.270564006000022 ], [ -123.141849722999936, 49.270594298000113 ], [ -123.143129498999983, 49.270628100000081 ], [ -123.145483497999962, 49.270666093000095 ], [ -123.145464300999933, 49.271648284000079 ], [ -123.145516303999983, 49.272299109000066 ], [ -123.145393094000028, 49.272537207000049 ], [ -123.145319517999937, 49.272662303000097 ], [ -123.145064787999928, 49.272848294000028 ], [ -123.144191297999939, 49.273176401000072 ], [ -123.143892262999913, 49.273272599000094 ], [ -123.142563922999926, 49.27369987600008 ], [ -123.142545985999931, 49.273705636000066 ], [ -123.141984461999982, 49.273886256000047 ], [ -123.141966683999925, 49.273891990000081 ], [ -123.141900424999974, 49.273913284000038 ], [ -123.138784107999953, 49.274915569000022 ], [ -123.138739293999947, 49.274854313000084 ], [ -123.138370498, 49.274350194000135 ], [ -123.138478889999973, 49.274224902000107 ], [ -123.139275502999922, 49.274052604000154 ], [ -123.139631985999955, 49.273602501000013 ], [ -123.139837213999954, 49.273027092000035 ] ], [ [ -123.141308079999988, 49.271353460000043 ], [ -123.141070621999972, 49.271086103000101 ], [ -123.140197177999966, 49.271390907000075 ], [ -123.140820687999934, 49.272464800000094 ], [ -123.140908490999934, 49.272778800000069 ], [ -123.141674785999925, 49.27294228800006 ], [ -123.141792401999965, 49.272928290000046 ], [ -123.14186377299994, 49.272885192000068 ], [ -123.141991709999942, 49.272548098000094 ], [ -123.141975080999927, 49.272261201000035 ], [ -123.141864589999955, 49.271980008000071 ], [ -123.141308079999988, 49.271353460000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "281878374", "BldgCostT": "172782436", "sL_LossRatio": "0.695033974067352", "sL_AssetLoss": "1235354", "sL_BldgLoss": "858613", "sL_StrLoss": "391650", "sL_NStrLoss": "466963", "sL_ContLoss": "376741", "geom_point": "0101000020E61000000380430BBDC85EC08CB5850834A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137104502999932, 49.269895591000072 ], [ -123.137652420999956, 49.269322905000109 ], [ -123.137549992999936, 49.269245404000088 ], [ -123.13753415199993, 49.269205944000106 ], [ -123.137410587999952, 49.268898595000095 ], [ -123.137299309999946, 49.268699197000089 ], [ -123.136827992999955, 49.26825439900005 ], [ -123.136545585999926, 49.26806590000006 ], [ -123.136133996999931, 49.26781169800006 ], [ -123.135462385999972, 49.267563312000028 ], [ -123.133998958999967, 49.267144268000045 ], [ -123.133746944000038, 49.267072100000064 ], [ -123.133423913999962, 49.26697960000012 ], [ -123.133482595999965, 49.266763216000129 ], [ -123.13357543299999, 49.266666221000094 ], [ -123.133592785999952, 49.266648094000111 ], [ -123.133618710999954, 49.266184911 ], [ -123.134124883999931, 49.26621910100004 ], [ -123.134329893999976, 49.266280404000035 ], [ -123.134527092000027, 49.266246896000027 ], [ -123.134902100999952, 49.26618118600009 ], [ -123.135299408999956, 49.266153899000059 ], [ -123.136062189999919, 49.266148892000047 ], [ -123.138468494999984, 49.26618298500005 ], [ -123.138455402999966, 49.266772585000098 ], [ -123.138451898999989, 49.266874311000073 ], [ -123.138481785999915, 49.267235399000114 ], [ -123.138466473999955, 49.267622422000024 ], [ -123.138457117999977, 49.267858959000066 ], [ -123.138452139999941, 49.267939877000074 ], [ -123.138445448999903, 49.268092836000079 ], [ -123.13837205599998, 49.268190874000013 ], [ -123.138337032999942, 49.26838439199999 ], [ -123.138317880999963, 49.268490258000092 ], [ -123.13819175499999, 49.268775155000093 ], [ -123.137980224999978, 49.269072649000101 ], [ -123.137974020999962, 49.269081358000051 ], [ -123.137934250999962, 49.269137243000138 ], [ -123.137751006999935, 49.269394894000058 ], [ -123.137704942, 49.269361210000085 ], [ -123.137523832999946, 49.269558222000121 ], [ -123.137104502999932, 49.269895591000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241553124", "BldgCostT": "161578351", "sL_LossRatio": "0.843913486294827", "sL_AssetLoss": "1580790", "sL_BldgLoss": "1334050", "sL_StrLoss": "634520", "sL_NStrLoss": "699530", "sL_ContLoss": "246740", "geom_point": "0101000020E610000061B234C7A4C85EC0958974A251A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132991545999971, 49.26726005000009 ], [ -123.133305007999979, 49.267147598000093 ], [ -123.133034224999932, 49.267209947000083 ], [ -123.133031960999944, 49.267157708000106 ], [ -123.133042975999942, 49.267087047000103 ], [ -123.133052350999918, 49.267034815000081 ], [ -123.133057933999936, 49.266990970000052 ], [ -123.13307370699999, 49.266955165000041 ], [ -123.133119383999912, 49.266901209000139 ], [ -123.133423913999962, 49.26697960000012 ], [ -123.133746944000038, 49.267072100000064 ], [ -123.133998958999967, 49.267144268000045 ], [ -123.135462385999972, 49.267563312000028 ], [ -123.136133996999931, 49.26781169800006 ], [ -123.136545585999926, 49.26806590000006 ], [ -123.136827992999955, 49.26825439900005 ], [ -123.137299309999946, 49.268699197000089 ], [ -123.137410587999952, 49.268898595000095 ], [ -123.13676652499997, 49.269027400000063 ], [ -123.136610603999927, 49.269061089000054 ], [ -123.135965002999967, 49.269503291000021 ], [ -123.1357291099999, 49.269362812000075 ], [ -123.135628184000012, 49.269217896000036 ], [ -123.135499516999943, 49.268854113000067 ], [ -123.135269989999983, 49.268676895000091 ], [ -123.135221179999959, 49.268599103000106 ], [ -123.134972895999951, 49.26850421400006 ], [ -123.134505105999921, 49.268448490000011 ], [ -123.134339691999983, 49.268412603000066 ], [ -123.134025994999931, 49.268241305000039 ], [ -123.133559200999969, 49.268191908000126 ], [ -123.133452280999961, 49.268187304000037 ], [ -123.133202710999967, 49.268069909000111 ], [ -123.132985613999949, 49.267803798000031 ], [ -123.132864602, 49.267760988000035 ], [ -123.132853812999912, 49.267557104000026 ], [ -123.132856090999965, 49.267374805000053 ], [ -123.132879090999921, 49.267337372000021 ], [ -123.132927488999954, 49.2672969320001 ], [ -123.132991545999971, 49.26726005000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "577314521", "BldgCostT": "378769105", "sL_LossRatio": "0.733514491332239", "sL_AssetLoss": "26510192", "sL_BldgLoss": "19445610", "sL_StrLoss": "7993780", "sL_NStrLoss": "11451830", "sL_ContLoss": "7064582", "geom_point": "0101000020E6100000ED3D84A746C85EC0EDA5B6F54FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132404811999947, 49.27115819200008 ], [ -123.13212009399993, 49.270957793000086 ], [ -123.131858913999935, 49.270895093000057 ], [ -123.13155480599994, 49.270409409000102 ], [ -123.130727099999916, 49.269781407000075 ], [ -123.130648406999981, 49.269665602000046 ], [ -123.130640076999939, 49.269653346000055 ], [ -123.130507397999949, 49.26945809799999 ], [ -123.130712101999976, 49.268918291000077 ], [ -123.130572887999946, 49.268549403000073 ], [ -123.130669722999968, 49.268387101000073 ], [ -123.132510492, 49.268546612000137 ], [ -123.132916585999979, 49.26867404900004 ], [ -123.13331746099999, 49.268799842000057 ], [ -123.133708680999973, 49.268922599000085 ], [ -123.13390010399999, 49.268851506000047 ], [ -123.133927310999979, 49.268841390000034 ], [ -123.134023278999933, 49.268680492000101 ], [ -123.134017920999938, 49.268603988000088 ], [ -123.134009409999962, 49.268482496000033 ], [ -123.133906482999947, 49.268444523000056 ], [ -123.13378931799997, 49.26840129900004 ], [ -123.133677878999933, 49.268446908000016 ], [ -123.133570189999944, 49.268490997000058 ], [ -123.133335193, 49.268428411000109 ], [ -123.133217168, 49.268291295000083 ], [ -123.132948902999928, 49.267979696000111 ], [ -123.132372321999952, 49.267900003000094 ], [ -123.13205351, 49.267609263000033 ], [ -123.131973295999941, 49.267536123000085 ], [ -123.131780398999936, 49.267360212000042 ], [ -123.131503783999946, 49.267324604000073 ], [ -123.131256796999963, 49.267405795000094 ], [ -123.130886398999962, 49.267630800000049 ], [ -123.130681889999906, 49.267955497000081 ], [ -123.130536380999928, 49.267959567000048 ], [ -123.130020902999959, 49.267974 ], [ -123.129349222999963, 49.268226101000081 ], [ -123.128256818999958, 49.268203490000055 ], [ -123.128201632999989, 49.268202344000017 ], [ -123.128190425999946, 49.268202116000097 ], [ -123.128168807999927, 49.268201669000035 ], [ -123.125636589999942, 49.268149208000104 ], [ -123.124839491999921, 49.267736192000051 ], [ -123.124315993999943, 49.267854414000034 ], [ -123.12422046799999, 49.2679572360001 ], [ -123.124240156, 49.267639665 ], [ -123.123924177000021, 49.267640004000093 ], [ -123.123924853999966, 49.26790986000006 ], [ -123.123512480000016, 49.267910301000022 ], [ -123.123513152999919, 49.268180156000042 ], [ -123.12310077799998, 49.268180596000064 ], [ -123.123101033999944, 49.26828320100006 ], [ -123.122956611999925, 49.268305900000101 ], [ -123.122621016000011, 49.26845096300012 ], [ -123.12135119099996, 49.268452303000153 ], [ -123.12135155299994, 49.268417804000045 ], [ -123.121193285999965, 49.268195674 ], [ -123.121100607999949, 49.267947006000071 ], [ -123.120955311000017, 49.267861660000115 ], [ -123.120791902999926, 49.267632300000074 ], [ -123.120966981999956, 49.267710788000095 ], [ -123.121422287999962, 49.268055416000102 ], [ -123.121501332999912, 49.268069063000041 ], [ -123.121517468999983, 49.268071842000047 ], [ -123.12161259899996, 49.268088317000085 ], [ -123.121774783999982, 49.268088192000079 ], [ -123.121801012, 49.268077315000014 ], [ -123.122125903000011, 49.267942590000082 ], [ -123.122219412000021, 49.267874783000096 ], [ -123.12223735299996, 49.267802434000046 ], [ -123.122239588999918, 49.267793395000091 ], [ -123.12204300599997, 49.267397306000071 ], [ -123.122664308999973, 49.266903986000052 ], [ -123.122744403999945, 49.266743101000024 ], [ -123.122586385999981, 49.266590535000027 ], [ -123.12257848299997, 49.266582890000024 ], [ -123.12251324099995, 49.266583340000111 ], [ -123.12248575299999, 49.266583516000061 ], [ -123.122445097999957, 49.266583783000037 ], [ -123.122163313999962, 49.266697901000057 ], [ -123.122008103999946, 49.266697395000016 ], [ -123.12142080299995, 49.266574505000079 ], [ -123.121109699999948, 49.266606717000094 ], [ -123.120832793999938, 49.266707397000104 ], [ -123.120640182999949, 49.266711296000032 ], [ -123.120335412999907, 49.266531108000031 ], [ -123.120445988999919, 49.26640890600013 ], [ -123.120493997999986, 49.266256086000084 ], [ -123.120524660999934, 49.266077693000078 ], [ -123.120545585999963, 49.265955793000025 ], [ -123.120642354999944, 49.265956731000109 ], [ -123.12134610399994, 49.265963587000087 ], [ -123.121454694999898, 49.265917009000141 ], [ -123.121753981, 49.265920493000088 ], [ -123.124076901999899, 49.265947298000071 ], [ -123.124326632999924, 49.265952583000058 ], [ -123.12653291099997, 49.265999213000079 ], [ -123.128915289999938, 49.266040111000066 ], [ -123.131241459999956, 49.266081216000011 ], [ -123.131370485, 49.266082830000116 ], [ -123.131464019999896, 49.26612584300004 ], [ -123.132100840999968, 49.266158085000072 ], [ -123.133510646999923, 49.26618298500005 ], [ -123.133618710999954, 49.266184911 ], [ -123.133592785999952, 49.266648094000111 ], [ -123.13357543299999, 49.266666221000094 ], [ -123.133482595999965, 49.266763216000129 ], [ -123.133423913999962, 49.26697960000012 ], [ -123.133119383999912, 49.266901209000139 ], [ -123.13307370699999, 49.266955165000041 ], [ -123.133057933999936, 49.266990970000052 ], [ -123.133052350999918, 49.267034815000081 ], [ -123.133042975999942, 49.267087047000103 ], [ -123.133031960999944, 49.267157708000106 ], [ -123.133034224999932, 49.267209947000083 ], [ -123.133305007999979, 49.267147598000093 ], [ -123.132991545999971, 49.26726005000009 ], [ -123.132927488999954, 49.2672969320001 ], [ -123.132879090999921, 49.267337372000021 ], [ -123.132856090999965, 49.267374805000053 ], [ -123.132853812999912, 49.267557104000026 ], [ -123.132864602, 49.267760988000035 ], [ -123.132985613999949, 49.267803798000031 ], [ -123.133202710999967, 49.268069909000111 ], [ -123.133452280999961, 49.268187304000037 ], [ -123.133559200999969, 49.268191908000126 ], [ -123.134025994999931, 49.268241305000039 ], [ -123.134339691999983, 49.268412603000066 ], [ -123.134505105999921, 49.268448490000011 ], [ -123.134972895999951, 49.26850421400006 ], [ -123.135221179999959, 49.268599103000106 ], [ -123.135269989999983, 49.268676895000091 ], [ -123.135499516999943, 49.268854113000067 ], [ -123.135628184000012, 49.269217896000036 ], [ -123.1357291099999, 49.269362812000075 ], [ -123.135965002999967, 49.269503291000021 ], [ -123.135665965000015, 49.269732924000053 ], [ -123.135644251999977, 49.269737119000077 ], [ -123.13561616599999, 49.269726219000091 ], [ -123.135594839999968, 49.269717646000132 ], [ -123.135586425000014, 49.269751109000076 ], [ -123.135596518999947, 49.269776248000063 ], [ -123.135595737999935, 49.269788043000126 ], [ -123.135589069999952, 49.269797819000054 ], [ -123.135582250999917, 49.269805663000128 ], [ -123.135579483999919, 49.269815413000082 ], [ -123.135536091999967, 49.269836859000129 ], [ -123.135495989999981, 49.269867393000041 ], [ -123.13515819099996, 49.270109699000081 ], [ -123.136000704999958, 49.270594081000091 ], [ -123.136053502999985, 49.270629783000075 ], [ -123.136053698999959, 49.27069278400004 ], [ -123.135165512999947, 49.271280789000102 ], [ -123.135181874999901, 49.271216392000099 ], [ -123.135080824999946, 49.271206495000079 ], [ -123.134550694999973, 49.271558157000072 ], [ -123.133660928999944, 49.272151620000052 ], [ -123.133510202999958, 49.271936197000144 ], [ -123.132406843999945, 49.271159622000049 ], [ -123.132406792999987, 49.271159563 ], [ -123.132404811999947, 49.27115819200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "370875811", "BldgCostT": "244173190", "sL_LossRatio": "0.751314805997442", "sL_AssetLoss": "14743620", "sL_BldgLoss": "11077100", "sL_StrLoss": "4896300", "sL_NStrLoss": "6180800", "sL_ContLoss": "3666520", "geom_point": "0101000020E610000057004A4BBEC75EC077076F1733A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120966981999956, 49.267710788000095 ], [ -123.120791902999926, 49.267632300000074 ], [ -123.119521189999915, 49.267612482000018 ], [ -123.119522088999929, 49.267424826000081 ], [ -123.11940118199999, 49.267349301000088 ], [ -123.119364507999975, 49.266679105000094 ], [ -123.119624490999954, 49.266585088000035 ], [ -123.119971584999973, 49.266526801000069 ], [ -123.120335412999907, 49.266531108000031 ], [ -123.120640182999949, 49.266711296000032 ], [ -123.120832793999938, 49.266707397000104 ], [ -123.121109699999948, 49.266606717000094 ], [ -123.12142080299995, 49.266574505000079 ], [ -123.122008103999946, 49.266697395000016 ], [ -123.122163313999962, 49.266697901000057 ], [ -123.122445097999957, 49.266583783000037 ], [ -123.12248575299999, 49.266583516000061 ], [ -123.12251324099995, 49.266583340000111 ], [ -123.12257848299997, 49.266582890000024 ], [ -123.122586385999981, 49.266590535000027 ], [ -123.122744403999945, 49.266743101000024 ], [ -123.122664308999973, 49.266903986000052 ], [ -123.12204300599997, 49.267397306000071 ], [ -123.122239588999918, 49.267793395000091 ], [ -123.12223735299996, 49.267802434000046 ], [ -123.122219412000021, 49.267874783000096 ], [ -123.122125903000011, 49.267942590000082 ], [ -123.121801012, 49.268077315000014 ], [ -123.121774783999982, 49.268088192000079 ], [ -123.12161259899996, 49.268088317000085 ], [ -123.121517468999983, 49.268071842000047 ], [ -123.121501332999912, 49.268069063000041 ], [ -123.121422287999962, 49.268055416000102 ], [ -123.120966981999956, 49.267710788000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240457980", "BldgCostT": "162780815", "sL_LossRatio": "0.783472423155033", "sL_AssetLoss": "3221779", "sL_BldgLoss": "2524175", "sL_StrLoss": "1154850", "sL_NStrLoss": "1369325", "sL_ContLoss": "697604", "geom_point": "0101000020E6100000C363ED8C82C75EC00B7615B528A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117737595, 49.266881514000048 ], [ -123.117531099999951, 49.266821987000121 ], [ -123.117414297999915, 49.266845007000086 ], [ -123.11685758500002, 49.267135494000101 ], [ -123.115294294999956, 49.267951195000073 ], [ -123.11496670799994, 49.26802800400003 ], [ -123.114800022999958, 49.268056904000062 ], [ -123.114798066, 49.267936055000042 ], [ -123.114793788999961, 49.267670303000031 ], [ -123.114789821999963, 49.267396917000056 ], [ -123.11477998399999, 49.266721405000077 ], [ -123.114776384999914, 49.266603288000063 ], [ -123.114905594999954, 49.266535590000089 ], [ -123.114899113, 49.26602200000012 ], [ -123.114891107999981, 49.265642611000061 ], [ -123.114978980999922, 49.265731395000053 ], [ -123.115075610999938, 49.265768202000039 ], [ -123.1155303849999, 49.26581099900006 ], [ -123.117420902999982, 49.265787708000047 ], [ -123.117416820999949, 49.26585330400011 ], [ -123.117415604999934, 49.265918101000075 ], [ -123.11978310399995, 49.265956085000113 ], [ -123.120545585999963, 49.265955793000025 ], [ -123.120524660999934, 49.266077693000078 ], [ -123.120493997999986, 49.266256086000084 ], [ -123.120445988999919, 49.26640890600013 ], [ -123.120335412999907, 49.266531108000031 ], [ -123.119971584999973, 49.266526801000069 ], [ -123.119624490999954, 49.266585088000035 ], [ -123.119364507999975, 49.266679105000094 ], [ -123.11940118199999, 49.267349301000088 ], [ -123.119522088999929, 49.267424826000081 ], [ -123.119521189999915, 49.267612482000018 ], [ -123.119413784999949, 49.267610805000103 ], [ -123.119242100999941, 49.267610812000044 ], [ -123.119108218999955, 49.26764319900014 ], [ -123.118672198999889, 49.267872096000069 ], [ -123.118669716999975, 49.268353902000072 ], [ -123.118461836999955, 49.268543537000028 ], [ -123.11845064799995, 49.268553727000089 ], [ -123.1182255, 49.268759093000057 ], [ -123.118131583999983, 49.268760943000075 ], [ -123.118129210999911, 49.268760987000078 ], [ -123.118019490999984, 49.26871298400004 ], [ -123.117933499999978, 49.268637800000121 ], [ -123.117472311999947, 49.268277813000047 ], [ -123.11746821899996, 49.268166895000043 ], [ -123.117465898999967, 49.267871401000058 ], [ -123.11745368199999, 49.267405393000082 ], [ -123.117552289999963, 49.267202427000036 ], [ -123.117556089999979, 49.267194591000099 ], [ -123.117719312999952, 49.267065687000091 ], [ -123.117889503999933, 49.266980192000076 ], [ -123.117737595, 49.266881514000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "543869508", "BldgCostT": "370318459", "sL_LossRatio": "0.793146368871277", "sL_AssetLoss": "7439560", "sL_BldgLoss": "5900660", "sL_StrLoss": "2744560", "sL_NStrLoss": "3156100", "sL_ContLoss": "1538900", "geom_point": "0101000020E61000006C7D3FD273C75EC0ACB8CC446CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114819969999971, 49.269392300000035 ], [ -123.114805292999989, 49.268346985000022 ], [ -123.114800022999958, 49.268056904000062 ], [ -123.11496670799994, 49.26802800400003 ], [ -123.115294294999956, 49.267951195000073 ], [ -123.11685758500002, 49.267135494000101 ], [ -123.117414297999915, 49.266845007000086 ], [ -123.117531099999951, 49.266821987000121 ], [ -123.117737595, 49.266881514000048 ], [ -123.117889503999933, 49.266980192000076 ], [ -123.117719312999952, 49.267065687000091 ], [ -123.117556089999979, 49.267194591000099 ], [ -123.117552289999963, 49.267202427000036 ], [ -123.11745368199999, 49.267405393000082 ], [ -123.117465898999967, 49.267871401000058 ], [ -123.11746821899996, 49.268166895000043 ], [ -123.117472311999947, 49.268277813000047 ], [ -123.117933499999978, 49.268637800000121 ], [ -123.118019490999984, 49.26871298400004 ], [ -123.118129210999911, 49.268760987000078 ], [ -123.118131583999983, 49.268760943000075 ], [ -123.1182255, 49.268759093000057 ], [ -123.11845064799995, 49.268553727000089 ], [ -123.118461836999955, 49.268543537000028 ], [ -123.118669716999975, 49.268353902000072 ], [ -123.118672198999889, 49.267872096000069 ], [ -123.119108218999955, 49.26764319900014 ], [ -123.119242100999941, 49.267610812000044 ], [ -123.119413784999949, 49.267610805000103 ], [ -123.119521189999915, 49.267612482000018 ], [ -123.120791902999926, 49.267632300000074 ], [ -123.120955311000017, 49.267861660000115 ], [ -123.120673794999931, 49.267696297000043 ], [ -123.119106297999934, 49.26768919799999 ], [ -123.118915023999961, 49.267787502000047 ], [ -123.118805015999925, 49.267976906000072 ], [ -123.118805895999969, 49.268641989000031 ], [ -123.11893058699998, 49.268921092000063 ], [ -123.118847687999903, 49.268921099000082 ], [ -123.118784537999915, 49.269264538000058 ], [ -123.118605098999964, 49.269264723000056 ], [ -123.118409611999979, 49.26914619000005 ], [ -123.118409087999936, 49.268993800000111 ], [ -123.118308890999955, 49.268993802000075 ], [ -123.118147185999987, 49.26899380500015 ], [ -123.118038102999904, 49.269326997000121 ], [ -123.117613875999922, 49.269489395000065 ], [ -123.11760231, 49.269535603000101 ], [ -123.117330716999945, 49.269535879000081 ], [ -123.117331410999952, 49.269828526000055 ], [ -123.117160410999972, 49.27007479700012 ], [ -123.117158014999944, 49.270075767000044 ], [ -123.116781988999961, 49.270076147000132 ], [ -123.116772308999955, 49.270231872000075 ], [ -123.115622779999967, 49.270697099000117 ], [ -123.114960515999911, 49.271048487000037 ], [ -123.114774505999918, 49.271147181000046 ], [ -123.114819969999971, 49.269392300000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60651083", "BldgCostT": "41828333", "sL_LossRatio": "0.753912618193675", "sL_AssetLoss": "858760", "sL_BldgLoss": "647430", "sL_StrLoss": "298890", "sL_NStrLoss": "348540", "sL_ContLoss": "211330", "geom_point": "0101000020E6100000E253219A90BC5EC010E33D20B3A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94700055, 49.2825433430001 ], [ -122.947000599999939, 49.282496852000087 ], [ -122.945044417999924, 49.282441510000048 ], [ -122.945086402999934, 49.281804269000091 ], [ -122.943924517999946, 49.281771381000127 ], [ -122.943958016999957, 49.281263124000112 ], [ -122.943101118999948, 49.28123886100007 ], [ -122.943275770999946, 49.27858954200012 ], [ -122.943156685999938, 49.278586169000071 ], [ -122.943236021999937, 49.277382653000068 ], [ -122.942817346999945, 49.277370795000081 ], [ -122.94135709599999, 49.277329425000048 ], [ -122.941484106999894, 49.275403742000137 ], [ -122.941489690999902, 49.275319067000133 ], [ -122.941549684999956, 49.2753150630001 ], [ -122.942701480999972, 49.275238266000017 ], [ -122.943126095999958, 49.275209504000046 ], [ -122.943922522999983, 49.275213327000095 ], [ -122.94481310799992, 49.275217597000058 ], [ -122.94477608499993, 49.274590502000088 ], [ -122.944745380999962, 49.274514795000059 ], [ -122.944608198999944, 49.274365012000047 ], [ -122.94427550199994, 49.274242109000078 ], [ -122.94345350399999, 49.27420350200007 ], [ -122.943168792999984, 49.274101798000082 ], [ -122.943011895999945, 49.273938805000093 ], [ -122.942978506999907, 49.273862199000064 ], [ -122.942969082999952, 49.273379995000084 ], [ -122.945986527999978, 49.273391205000046 ], [ -122.946012184999987, 49.273391336000053 ], [ -122.946017758999972, 49.273399621000046 ], [ -122.946196227999906, 49.273664097000058 ], [ -122.946294132000034, 49.27395152900003 ], [ -122.946284166999988, 49.275208771000095 ], [ -122.946301284999933, 49.275303854000086 ], [ -122.946372197999906, 49.27537431200011 ], [ -122.946472279999938, 49.275899619000072 ], [ -122.94650262299993, 49.276237409000096 ], [ -122.946579351999972, 49.277091724000044 ], [ -122.946503224999972, 49.277757375000071 ], [ -122.946489402999958, 49.277877988000064 ], [ -122.946472338999939, 49.278310126000164 ], [ -122.946447654999929, 49.279821946000027 ], [ -122.94645476599996, 49.280298688000073 ], [ -122.947373746000025, 49.280308707000124 ], [ -122.949513359999955, 49.280332030000061 ], [ -122.950007345999964, 49.28034416300008 ], [ -122.95119145399994, 49.280374906000041 ], [ -122.9506250699999, 49.280250802000076 ], [ -122.950194023, 49.280076502000085 ], [ -122.95030510199993, 49.279996793000038 ], [ -122.950571702000019, 49.280122303000049 ], [ -122.951039927999958, 49.280255300000036 ], [ -122.95121853199997, 49.280276590000071 ], [ -122.951599227999949, 49.280318864000058 ], [ -122.952724981, 49.280329722000076 ], [ -122.95339168699995, 49.280336161000072 ], [ -122.953391074999928, 49.280408206000054 ], [ -122.95338174199999, 49.281404546000076 ], [ -122.953381162, 49.281466005000034 ], [ -122.953372305999935, 49.282409256000022 ], [ -122.949556989, 49.282384392000111 ], [ -122.949406274999973, 49.282418902000089 ], [ -122.94775118199999, 49.282513309000073 ], [ -122.94700055, 49.2825433430001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22825833", "BldgCostT": "14058333", "sL_LossRatio": "0.743889395702916", "sL_AssetLoss": "127156", "sL_BldgLoss": "94590", "sL_StrLoss": "46320", "sL_NStrLoss": "48270", "sL_ContLoss": "32566", "geom_point": "0101000020E6100000A2F82975E6BB5EC0F9426DC00CA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.936001482999956, 49.280602760000065 ], [ -122.936044803999891, 49.280196944000075 ], [ -122.936232599999983, 49.278752951000129 ], [ -122.936280526999937, 49.278752977000082 ], [ -122.936278789, 49.280102253000045 ], [ -122.937103740999987, 49.280102705000033 ], [ -122.937103397, 49.280372560000032 ], [ -122.937928351999915, 49.280373005000072 ], [ -122.937926924999928, 49.281510553000061 ], [ -122.937925229999905, 49.282860895000049 ], [ -122.935989832999951, 49.282905273000019 ], [ -122.93545208299993, 49.282904605000027 ], [ -122.933898862999939, 49.283041335000092 ], [ -122.933804305999914, 49.281647183000047 ], [ -122.933744053999973, 49.281285477000083 ], [ -122.933661978999936, 49.280792934000097 ], [ -122.934307440999987, 49.280740461000015 ], [ -122.936001482999956, 49.280602760000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.818449254044967", "sL_AssetLoss": "9518", "sL_BldgLoss": "7790", "sL_StrLoss": "4040", "sL_NStrLoss": "3750", "sL_ContLoss": "1728", "geom_point": "0101000020E61000008868F0CE0CBC5EC080E9DDED34A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.937934785999985, 49.275245756000103 ], [ -122.937934974, 49.275096749000099 ], [ -122.936755800999947, 49.275063288000112 ], [ -122.936773720999966, 49.274940211000093 ], [ -122.93825212499999, 49.274817811000041 ], [ -122.938954312999968, 49.274989085000094 ], [ -122.940021600999927, 49.275155927000085 ], [ -122.939584652999926, 49.275143538000052 ], [ -122.939584527999955, 49.275246630000055 ], [ -122.938526275999919, 49.275246071000076 ], [ -122.937934785999985, 49.275245756000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99013166", "BldgCostT": "65786666", "sL_LossRatio": "0.732615291262136", "sL_AssetLoss": "1318400", "sL_BldgLoss": "965880", "sL_StrLoss": "450480", "sL_NStrLoss": "515400", "sL_ContLoss": "352520", "geom_point": "0101000020E6100000114ACAA33CBC5EC0B18410EBE8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.941489690999902, 49.275319067000133 ], [ -122.94152999799999, 49.274707920000125 ], [ -122.941234910000034, 49.274707770000106 ], [ -122.941235689999971, 49.274051782000093 ], [ -122.941119499999928, 49.27389814500004 ], [ -122.940878630999933, 49.273898022000061 ], [ -122.940794207999957, 49.275177829000029 ], [ -122.940419286999941, 49.27516720200002 ], [ -122.940021600999927, 49.275155927000085 ], [ -122.938954312999968, 49.274989085000094 ], [ -122.93825212499999, 49.274817811000041 ], [ -122.936773720999966, 49.274940211000093 ], [ -122.937004641999977, 49.274433081000033 ], [ -122.936982912999909, 49.274353500000075 ], [ -122.936611392999964, 49.272992506000065 ], [ -122.936848839999925, 49.271559177000071 ], [ -122.939675200999929, 49.271545302000035 ], [ -122.939687888999941, 49.271081782000081 ], [ -122.939785997999977, 49.270802614000111 ], [ -122.940141289999957, 49.270416294000043 ], [ -122.940281108999983, 49.27023407400003 ], [ -122.940580293, 49.269844110000072 ], [ -122.940951618999918, 49.269943786000042 ], [ -122.94155290499998, 49.270057200000068 ], [ -122.942738273999979, 49.270134568000053 ], [ -122.944385107999977, 49.270241996000038 ], [ -122.945101998000027, 49.27031101500004 ], [ -122.94516617699999, 49.270317202000079 ], [ -122.945164166, 49.270326231000077 ], [ -122.945070896999965, 49.270741494000056 ], [ -122.945045002999905, 49.271343401000088 ], [ -122.945078738999911, 49.271578326000053 ], [ -122.945112774999984, 49.271815594 ], [ -122.945281107999989, 49.272285225000083 ], [ -122.945460091999905, 49.272635321000074 ], [ -122.946012184999987, 49.273391336000053 ], [ -122.945986527999978, 49.273391205000046 ], [ -122.942969082999952, 49.273379995000084 ], [ -122.942978506999907, 49.273862199000064 ], [ -122.943011895999945, 49.273938805000093 ], [ -122.943168792999984, 49.274101798000082 ], [ -122.94345350399999, 49.27420350200007 ], [ -122.94427550199994, 49.274242109000078 ], [ -122.944608198999944, 49.274365012000047 ], [ -122.944745380999962, 49.274514795000059 ], [ -122.94477608499993, 49.274590502000088 ], [ -122.94481310799992, 49.275217597000058 ], [ -122.943922522999983, 49.275213327000095 ], [ -122.943126095999958, 49.275209504000046 ], [ -122.942701480999972, 49.275238266000017 ], [ -122.941549684999956, 49.2753150630001 ], [ -122.941489690999902, 49.275319067000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277828273", "BldgCostT": "180609159", "sL_LossRatio": "0.743330760273704", "sL_AssetLoss": "1070062", "sL_BldgLoss": "795410", "sL_StrLoss": "413700", "sL_NStrLoss": "381710", "sL_ContLoss": "274652", "geom_point": "0101000020E6100000438577DA16BB5EC0738EE83B4BA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.927686023999982, 49.292303089000022 ], [ -122.927688662999941, 49.292263272000113 ], [ -122.927029244999986, 49.292244507000085 ], [ -122.927047413999915, 49.291970417000158 ], [ -122.925949115999913, 49.291969719000122 ], [ -122.925949519999946, 49.291699864000059 ], [ -122.925868213999962, 49.291699812000054 ], [ -122.92585954499998, 49.291830544000113 ], [ -122.924385269999902, 49.291788559000054 ], [ -122.924381386999954, 49.291847080000139 ], [ -122.923527924999945, 49.291822765000063 ], [ -122.922094290999965, 49.290994608000048 ], [ -122.92140610499996, 49.290697096000045 ], [ -122.920870507999922, 49.29030099900006 ], [ -122.920623315999975, 49.290219892000067 ], [ -122.920349199, 49.289895892000075 ], [ -122.91959289, 49.289562406000144 ], [ -122.919235712999949, 49.289508294000072 ], [ -122.91879649199997, 49.289058395000048 ], [ -122.918576109999918, 49.289013198000063 ], [ -122.9181491, 49.289102707000076 ], [ -122.917723423999959, 49.289561201000055 ], [ -122.917391907999971, 49.289713891000055 ], [ -122.916691095999965, 49.289812388000065 ], [ -122.916305892999944, 49.289947205000054 ], [ -122.914326302999939, 49.289765605000049 ], [ -122.91333462299994, 49.290232705000108 ], [ -122.912427499999978, 49.290358001000108 ], [ -122.91167118899989, 49.290258298000047 ], [ -122.911307135999948, 49.290109900000118 ], [ -122.910941782999885, 49.289960993000157 ], [ -122.909870790999932, 49.289348500000081 ], [ -122.90958204899999, 49.28913204 ], [ -122.909591538999976, 49.288989675000053 ], [ -122.909451570999977, 49.288989565000094 ], [ -122.909453547999988, 49.287910147000019 ], [ -122.909663489999943, 49.28791031100014 ], [ -122.909670368999969, 49.287807114000046 ], [ -122.909765774000022, 49.286375843000087 ], [ -122.912723292999914, 49.286460459000089 ], [ -122.912723847999985, 49.286452115000024 ], [ -122.914251423999929, 49.286495789000128 ], [ -122.914274101999951, 49.286155051000051 ], [ -122.919762140999978, 49.286311775000065 ], [ -122.919675039999959, 49.287622741000042 ], [ -122.920299207999932, 49.287640548000098 ], [ -122.920400657999963, 49.28611330100005 ], [ -122.925888711999946, 49.286269713000081 ], [ -122.925851310999974, 49.286833782000073 ], [ -122.928056670999979, 49.286896557000063 ], [ -122.927939342999977, 49.288667189000115 ], [ -122.930904514999938, 49.288751520000069 ], [ -122.930916226999955, 49.280369026000081 ], [ -122.930733402999977, 49.280368917000096 ], [ -122.930091270999966, 49.280368531000086 ], [ -122.930090940999918, 49.280601231000063 ], [ -122.930090889999946, 49.280638385000074 ], [ -122.929988360999943, 49.280638323000048 ], [ -122.929265927999936, 49.280637883000111 ], [ -122.92926556499998, 49.280892864000123 ], [ -122.929265541999911, 49.280907738000053 ], [ -122.929211789999954, 49.280907705000047 ], [ -122.928440577999964, 49.280907231000079 ], [ -122.928440269999953, 49.2811206310001 ], [ -122.928440187999968, 49.281177086000113 ], [ -122.928190745, 49.281176931000068 ], [ -122.927615218999961, 49.281176572000057 ], [ -122.927615112999916, 49.281249071000047 ], [ -122.92761482399996, 49.28144642700007 ], [ -122.925964875999952, 49.281445382000094 ], [ -122.925965016999953, 49.281350785000022 ], [ -122.925965278999968, 49.281175526000062 ], [ -122.924570719999963, 49.281174625000062 ], [ -122.923902857999934, 49.281174186000037 ], [ -122.92390308, 49.281029414000045 ], [ -122.923903271999947, 49.280904332000098 ], [ -122.923363047999942, 49.280903975000086 ], [ -122.922253342999909, 49.280903233000025 ], [ -122.92225376599994, 49.280633379000044 ], [ -122.921982773999957, 49.280633196000089 ], [ -122.921917935999929, 49.280792162000083 ], [ -122.921256735, 49.280696862000092 ], [ -122.921282926999979, 49.28063272100011 ], [ -122.921016326999933, 49.280632539000059 ], [ -122.921016757999922, 49.280362684000046 ], [ -122.920604279999964, 49.280362401000026 ], [ -122.920603846999981, 49.280632256000018 ], [ -122.918541444999917, 49.280630821000031 ], [ -122.918541001999955, 49.280900676000066 ], [ -122.917303553999886, 49.280899797000089 ], [ -122.917303103, 49.281169652000116 ], [ -122.916065649999965, 49.281168759000089 ], [ -122.916065191999962, 49.281438615000091 ], [ -122.913177784999959, 49.281436482000103 ], [ -122.913178257999959, 49.281166626000051 ], [ -122.912110920999979, 49.281165820000098 ], [ -122.912066921, 49.281826508000101 ], [ -122.906579438999955, 49.281669393000101 ], [ -122.906588172999975, 49.28153848900007 ], [ -122.904807485999967, 49.281487445000025 ], [ -122.904865364999935, 49.280620371000047 ], [ -122.903692168999953, 49.280619399000045 ], [ -122.903692695999922, 49.280349544000039 ], [ -122.903280216999946, 49.280349199000035 ], [ -122.903280746999911, 49.280079345000054 ], [ -122.90286827099996, 49.280078999000047 ], [ -122.902868798999918, 49.279809143000058 ], [ -122.902456326999953, 49.279808797000022 ], [ -122.902457389999981, 49.279269087000038 ], [ -122.902044922999949, 49.279268737000088 ], [ -122.902048663999963, 49.277379752000066 ], [ -122.902461116999987, 49.277380101000055 ], [ -122.902462180999947, 49.276840391000036 ], [ -122.902874628999939, 49.276840738000054 ], [ -122.902875689999973, 49.276301028000042 ], [ -122.903288131999929, 49.276301374000049 ], [ -122.903288659999944, 49.276031519000114 ], [ -122.903701101999943, 49.276031864000053 ], [ -122.903701626, 49.275762009000076 ], [ -122.904114065999934, 49.275762351000076 ], [ -122.904114588999974, 49.275492496000098 ], [ -122.904939464, 49.275493178 ], [ -122.904939982999935, 49.275223322000038 ], [ -122.905352416999989, 49.275223661000069 ], [ -122.90535293399999, 49.274953806000084 ], [ -122.905765364999937, 49.274954143000095 ], [ -122.90576588, 49.274684287000063 ], [ -122.906178309999973, 49.274684623000056 ], [ -122.906179333999887, 49.274144913000079 ], [ -122.907416610999974, 49.274145911000105 ], [ -122.907417621999983, 49.273606200000103 ], [ -122.908242462999965, 49.273606858000072 ], [ -122.908242964999886, 49.273337003000051 ], [ -122.909067803, 49.273337655000084 ], [ -122.909068298999941, 49.273067800000085 ], [ -122.909480715999919, 49.273068124000091 ], [ -122.909481209999939, 49.272798269000091 ], [ -122.90989362399992, 49.272798591 ], [ -122.90989411399994, 49.272528735000073 ], [ -122.911131352999931, 49.272529693000138 ], [ -122.911131835999981, 49.272259838000068 ], [ -122.912369066999958, 49.272260784000096 ], [ -122.912368350999927, 49.272665702000083 ], [ -122.912367155999902, 49.27334020500011 ], [ -122.912779574999917, 49.273340517000058 ], [ -122.912778622999909, 49.273880227000056 ], [ -122.913081955999971, 49.273880455000139 ], [ -122.913085847999966, 49.273821989000105 ], [ -122.918572424999979, 49.273978775000081 ], [ -122.918435247, 49.276043203000043 ], [ -122.918549000999917, 49.276043283000064 ], [ -122.918548555999962, 49.276313139000081 ], [ -122.918961000999943, 49.276313429000069 ], [ -122.918960557999966, 49.276583283000058 ], [ -122.921022789999967, 49.276584712000066 ], [ -122.921022357999959, 49.276854568000097 ], [ -122.92143480799993, 49.276854849000067 ], [ -122.921434378999919, 49.277124704000073 ], [ -122.923496632999971, 49.277126087000035 ], [ -122.923496473999947, 49.277229086 ], [ -122.923496214999915, 49.277395943000109 ], [ -122.923908668999957, 49.277396215000095 ], [ -122.923907838999938, 49.277935925000087 ], [ -122.924320295999976, 49.277936196000063 ], [ -122.924319883999928, 49.278206051000083 ], [ -122.925144802999981, 49.278206589000099 ], [ -122.925144394999975, 49.278476444000134 ], [ -122.92555685699989, 49.278476710000113 ], [ -122.925556449999959, 49.278746565000098 ], [ -122.927618771999917, 49.278747876000075 ], [ -122.927617982999948, 49.279287586000052 ], [ -122.929267858999978, 49.279288608000101 ], [ -122.929268243999928, 49.279018753000059 ], [ -122.931330578999933, 49.279019997000056 ], [ -122.931330951999939, 49.278750141000067 ], [ -122.933584921999909, 49.278751460000066 ], [ -122.936232599999983, 49.278752951000129 ], [ -122.936044803999891, 49.280196944000075 ], [ -122.936001482999956, 49.280602760000065 ], [ -122.934307440999987, 49.280740461000015 ], [ -122.933661978999936, 49.280792934000097 ], [ -122.933744053999973, 49.281285477000083 ], [ -122.933804305999914, 49.281647183000047 ], [ -122.933898862999939, 49.283041335000092 ], [ -122.93545208299993, 49.282904605000027 ], [ -122.935989832999951, 49.282905273000019 ], [ -122.937925229999905, 49.282860895000049 ], [ -122.937921918999962, 49.285500252000141 ], [ -122.938334437999956, 49.28550047300012 ], [ -122.938334100999953, 49.28577032700008 ], [ -122.938746624999951, 49.285770547000091 ], [ -122.938746290999958, 49.286040401000015 ], [ -122.939158815999946, 49.28604062000008 ], [ -122.939158482999972, 49.28631047400004 ], [ -122.941633649999972, 49.286311751000042 ], [ -122.941633329999931, 49.286581605999984 ], [ -122.942209959999971, 49.286581896000058 ], [ -122.945758628999954, 49.286583615999987 ], [ -122.945758333999919, 49.286853471000065 ], [ -122.946583398999934, 49.286853855000096 ], [ -122.946583109999949, 49.287121243000065 ], [ -122.946671784999978, 49.287123751000124 ], [ -122.946995640999916, 49.287123900000026 ], [ -122.946995631, 49.287132909000036 ], [ -122.947288762999932, 49.287141198000079 ], [ -122.94723038699999, 49.287371345000082 ], [ -122.947437289999954, 49.288707031000072 ], [ -122.947435868999918, 49.288720021000096 ], [ -122.947416811, 49.288837595000125 ], [ -122.94740732299995, 49.289260331000037 ], [ -122.947417526999971, 49.28997367000008 ], [ -122.947422776999957, 49.290116987000026 ], [ -122.947446534999941, 49.290260888000063 ], [ -122.947446717999981, 49.29026708700011 ], [ -122.947432321999983, 49.290597174000077 ], [ -122.947383794999894, 49.290613015000048 ], [ -122.946628083999911, 49.290684496000068 ], [ -122.946421897999983, 49.290684599000031 ], [ -122.946201616999957, 49.290585500000056 ], [ -122.94567867799995, 49.290567294000091 ], [ -122.942969993999952, 49.290835790000045 ], [ -122.94086438799998, 49.291338593000042 ], [ -122.939365718999952, 49.291472601000116 ], [ -122.939076331, 49.291541548000076 ], [ -122.93891323, 49.291536924000098 ], [ -122.938937607999904, 49.291167747000067 ], [ -122.938327369999968, 49.29116742300009 ], [ -122.93832703299995, 49.291437277000085 ], [ -122.935851610999947, 49.291435930000034 ], [ -122.935851261999986, 49.29170578400003 ], [ -122.933224773999896, 49.291704299000102 ], [ -122.933197404999959, 49.292118 ], [ -122.932901810999951, 49.292134808000064 ], [ -122.932474204999949, 49.292233295000045 ], [ -122.930947890999946, 49.292160604000138 ], [ -122.929752929999935, 49.292370332000111 ], [ -122.927782414999967, 49.292314283000081 ], [ -122.927686023999982, 49.292303089000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6892417", "BldgCostT": "4281667", "sL_LossRatio": "0.695947121238476", "sL_AssetLoss": "57490", "sL_BldgLoss": "40010", "sL_StrLoss": "19510", "sL_NStrLoss": "20500", "sL_ContLoss": "17480", "geom_point": "0101000020E6100000EAE2E3D155BA5EC0B8DFEBB56AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.908864904999945, 49.267004766000078 ], [ -122.914350660999958, 49.267161769000033 ], [ -122.914111378, 49.270758289000121 ], [ -122.908625197999953, 49.270601275000033 ], [ -122.908864904999945, 49.267004766000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3040000", "BldgCostT": "1600000", "sL_LossRatio": "0.561698549505991", "sL_AssetLoss": "95140", "sL_BldgLoss": "53440", "sL_StrLoss": "7240", "sL_NStrLoss": "46200", "sL_ContLoss": "41700", "geom_point": "0101000020E6100000105A7289A1BC5EC00184B46B67A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947408659999923, 49.286668499000079 ], [ -122.947409034999907, 49.286314524000076 ], [ -122.946996507999984, 49.286314335000085 ], [ -122.94700055, 49.2825433430001 ], [ -122.94775118199999, 49.282513309000073 ], [ -122.947686799999957, 49.28260720800008 ], [ -122.94767544599992, 49.282805201000059 ], [ -122.947611987999935, 49.283911202000091 ], [ -122.947618282999954, 49.28393237300007 ], [ -122.947640113999952, 49.28400569400003 ], [ -122.947724404, 49.284081906000139 ], [ -122.947747646999971, 49.284092755000103 ], [ -122.947988036999973, 49.28420523200009 ], [ -122.947999193999962, 49.284210468000055 ], [ -122.947868618999962, 49.284771986000052 ], [ -122.947814135999977, 49.28482821700004 ], [ -122.94773152099999, 49.284913603000042 ], [ -122.947670405999958, 49.285153312000027 ], [ -122.947665498999967, 49.28524304000009 ], [ -122.947636704999951, 49.285769392000084 ], [ -122.947408659999923, 49.286668499000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8840251", "BldgCostT": "5625001", "sL_LossRatio": "0.69048737390682", "sL_AssetLoss": "89418", "sL_BldgLoss": "61742", "sL_StrLoss": "28252", "sL_NStrLoss": "33490", "sL_ContLoss": "27676", "geom_point": "0101000020E6100000C972AF1F64B95EC04F8A03A6DBA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893167451999915, 49.290371652000026 ], [ -122.893534870999986, 49.290179509000104 ], [ -122.89386939699996, 49.290075061000024 ], [ -122.894139183999968, 49.289990835000062 ], [ -122.894311459999969, 49.289777728000089 ], [ -122.89433169499992, 49.28961983500011 ], [ -122.894638525999966, 49.28722537500007 ], [ -122.894452054999988, 49.286545645000082 ], [ -122.894693669999967, 49.286552596000078 ], [ -122.894755921999888, 49.285623176000058 ], [ -122.894857500999962, 49.285626098000058 ], [ -122.89489314699992, 49.285093877000072 ], [ -122.90038099399996, 49.285251586000086 ], [ -122.90026492799997, 49.286987601000099 ], [ -122.900142215999935, 49.288822849000027 ], [ -122.89943458, 49.288737094000091 ], [ -122.89920131, 49.288781993000093 ], [ -122.898691993999961, 49.28899759800003 ], [ -122.897974486999956, 49.289653396000062 ], [ -122.897053001999922, 49.289814385000106 ], [ -122.896412106999946, 49.290205308000026 ], [ -122.895172397999971, 49.290169665000036 ], [ -122.895161875, 49.290326759000038 ], [ -122.89542203299996, 49.2903269950001 ], [ -122.89542056499999, 49.291021249000075 ], [ -122.895302911999948, 49.291136452000039 ], [ -122.895107657000011, 49.291136275000049 ], [ -122.89509393899999, 49.291341069000097 ], [ -122.895083889999967, 49.291350909000052 ], [ -122.894505817999985, 49.291719403000059 ], [ -122.893679799999987, 49.291916300000061 ], [ -122.893173334999986, 49.291946783000071 ], [ -122.892503064999971, 49.29149276200004 ], [ -122.892448289999919, 49.291460849000075 ], [ -122.892462146999918, 49.291243883000043 ], [ -122.892473504999941, 49.291051601000099 ], [ -122.892676254999941, 49.290743582000083 ], [ -122.892884427999959, 49.290580591000015 ], [ -122.892884614999957, 49.290580438000063 ], [ -122.893167451999915, 49.290371652000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9147833", "BldgCostT": "5573333", "sL_LossRatio": "0.638784501749385", "sL_AssetLoss": "154340", "sL_BldgLoss": "98590", "sL_StrLoss": "48620", "sL_NStrLoss": "49970", "sL_ContLoss": "55750", "geom_point": "0101000020E6100000EE88E00B55B95EC0495DD7D41EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.893677698999966, 49.276069099000033 ], [ -122.893676583999962, 49.275864094000021 ], [ -122.893674322999971, 49.275813844000027 ], [ -122.893644708999901, 49.27515836700006 ], [ -122.893614464999942, 49.274489603000134 ], [ -122.893451017999951, 49.270873926000057 ], [ -122.893430216999974, 49.270413195000053 ], [ -122.893424315999951, 49.270293379000037 ], [ -122.893394092999927, 49.269679789000108 ], [ -122.893311012999945, 49.267637795000056 ], [ -122.893267415999915, 49.266216370000045 ], [ -122.89326302299996, 49.266072511000104 ], [ -122.893251896999928, 49.265710088000077 ], [ -122.893126719999913, 49.262942698000096 ], [ -122.893140504999963, 49.262942802000047 ], [ -122.893803800999962, 49.262946893000098 ], [ -122.895796687999962, 49.26302249 ], [ -122.896407868, 49.263045680000054 ], [ -122.897191042999978, 49.263075366000066 ], [ -122.897935720999911, 49.263103598000022 ], [ -122.898382214, 49.263145191000042 ], [ -122.898768590999907, 49.263223907000061 ], [ -122.899072428999943, 49.263323601000074 ], [ -122.899452701999934, 49.263492212000124 ], [ -122.899885983, 49.263792896000076 ], [ -122.900206414999957, 49.264076908000057 ], [ -122.900323277, 49.264178394000083 ], [ -122.899753286999896, 49.264545795000103 ], [ -122.89942909599992, 49.264811290000068 ], [ -122.899214881999939, 49.265179001000064 ], [ -122.899121908000012, 49.26539971100005 ], [ -122.899085507999956, 49.265943700000022 ], [ -122.89916690799997, 49.266267586000033 ], [ -122.899530503, 49.266727369000051 ], [ -122.899553299999951, 49.266756193000148 ], [ -122.899901217999954, 49.267060802000088 ], [ -122.900274198999952, 49.267276880000047 ], [ -122.900570709999954, 49.267405184 ], [ -122.901039499999939, 49.26754568299999 ], [ -122.901692283999935, 49.267646387000106 ], [ -122.902190186999945, 49.267659791000064 ], [ -122.902774588999989, 49.267591909000046 ], [ -122.903317115, 49.267451603000076 ], [ -122.904084897999923, 49.267147512000136 ], [ -122.904208498999978, 49.267148398000067 ], [ -122.904956033999895, 49.26686821200007 ], [ -122.904955534999928, 49.267127661000089 ], [ -122.904543167999933, 49.267127321000025 ], [ -122.904542647999961, 49.267397177000078 ], [ -122.903717907999919, 49.267396493000092 ], [ -122.903717383999918, 49.267666348000049 ], [ -122.900418410000029, 49.267663552000045 ], [ -122.900418953, 49.267393697000081 ], [ -122.900006583999982, 49.267393341000044 ], [ -122.90000712899996, 49.267123485000063 ], [ -122.898357659999988, 49.267122046000097 ], [ -122.89836209399995, 49.264963201000107 ], [ -122.898774442999922, 49.264963564000034 ], [ -122.898776144999914, 49.264131588000041 ], [ -122.898387616999941, 49.264120420000069 ], [ -122.898400855999952, 49.26392245200001 ], [ -122.897539600999934, 49.263897691000082 ], [ -122.897539111999976, 49.264133365000049 ], [ -122.897560134999978, 49.264140362000042 ], [ -122.89762283599994, 49.264270262000139 ], [ -122.897610438999962, 49.264422826000022 ], [ -122.89795085899999, 49.264423127000065 ], [ -122.897949187999984, 49.26523269300003 ], [ -122.897176776000023, 49.265232009000044 ], [ -122.897124373999972, 49.265285088000041 ], [ -122.897123923999956, 49.265501818000104 ], [ -122.89691059899998, 49.265501627000084 ], [ -122.896866436, 49.265546362000045 ], [ -122.896711234999955, 49.265662212000066 ], [ -122.896711006999951, 49.265771306000019 ], [ -122.896565257999924, 49.265771175000083 ], [ -122.896549734999937, 49.265782762000057 ], [ -122.896298338999955, 49.265920192000102 ], [ -122.896298085999888, 49.266040792000062 ], [ -122.896026837999926, 49.266040548000014 ], [ -122.895631035999898, 49.266154262000043 ], [ -122.895473102999944, 49.266166386000116 ], [ -122.895472799999979, 49.266309905000121 ], [ -122.89464807899999, 49.266309155000059 ], [ -122.89464750499999, 49.26657901100009 ], [ -122.89341041699997, 49.266577876000049 ], [ -122.893409253999977, 49.267117587 ], [ -122.89382162099993, 49.267117966000114 ], [ -122.89381930499998, 49.2681973890001 ], [ -122.89340692899999, 49.268197008000108 ], [ -122.893404602999922, 49.269276430000055 ], [ -122.89422937399999, 49.269277188000032 ], [ -122.894218412999962, 49.274404438000019 ], [ -122.894630838999944, 49.274404814000057 ], [ -122.894628538999939, 49.275484236000111 ], [ -122.894216103999938, 49.275483858000037 ], [ -122.894215525999968, 49.275753713000022 ], [ -122.89380308699999, 49.275753335000054 ], [ -122.893802508999926, 49.276023191000021 ], [ -122.894214948999917, 49.276023568000063 ], [ -122.894213218999951, 49.276833134000171 ], [ -122.893714166999928, 49.276832676000069 ], [ -122.893687355999987, 49.276309219000119 ], [ -122.893681654999966, 49.276167643000086 ], [ -122.893677698999966, 49.276069099000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.77587437544611", "sL_AssetLoss": "1401", "sL_BldgLoss": "1087", "sL_StrLoss": "279", "sL_NStrLoss": "808", "sL_ContLoss": "314", "geom_point": "0101000020E6100000EB3BBF2841BB5EC05A07CDCF09A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924326602999926, 49.273813881000088 ], [ -122.924328139999901, 49.272808945000108 ], [ -122.924755371999979, 49.272809225000096 ], [ -122.925300320999952, 49.273396287000082 ], [ -122.925511295999954, 49.273623597000061 ], [ -122.925620586999983, 49.273715896000041 ], [ -122.92581280399996, 49.273677302000088 ], [ -122.92652902699993, 49.273549901000109 ], [ -122.926838998999969, 49.273537994000044 ], [ -122.928038631000035, 49.273666585000058 ], [ -122.928037911999951, 49.274160593000069 ], [ -122.926820873999972, 49.274159830000023 ], [ -122.926530563999961, 49.27415964600003 ], [ -122.924326074999939, 49.274158222000054 ], [ -122.924326416999975, 49.273935819000066 ], [ -122.924326602999926, 49.273813881000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86500250", "BldgCostT": "50660000", "sL_LossRatio": "0.653202026204828", "sL_AssetLoss": "1766850", "sL_BldgLoss": "1154110", "sL_StrLoss": "489240", "sL_NStrLoss": "664870", "sL_ContLoss": "612740", "geom_point": "0101000020E6100000BFAF043194BB5EC0D5D3FD5275A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.93537296699995, 49.274030216000035 ], [ -122.93547105499999, 49.272545850000071 ], [ -122.935051281999947, 49.272545614000052 ], [ -122.935050926999963, 49.272815469000079 ], [ -122.934226098999929, 49.27281500400003 ], [ -122.934225740000016, 49.273084859000058 ], [ -122.932576070999971, 49.273083908000103 ], [ -122.932576437999955, 49.272814053000076 ], [ -122.930514363, 49.272812831000053 ], [ -122.930514742999918, 49.272542976000103 ], [ -122.930102330999958, 49.272542727000058 ], [ -122.930103473999935, 49.271733160000061 ], [ -122.929278661999916, 49.271732658000069 ], [ -122.929278276999966, 49.272002514000043 ], [ -122.92845345899994, 49.272002006000065 ], [ -122.928452288999978, 49.272811573000084 ], [ -122.927215043999965, 49.272810799000077 ], [ -122.927218617, 49.27038210000007 ], [ -122.926806222999957, 49.270381840000056 ], [ -122.926806622999962, 49.27011198400011 ], [ -122.925981836999981, 49.270111459000113 ], [ -122.925982239999925, 49.269841603000074 ], [ -122.925569849999974, 49.26984133800002 ], [ -122.925570254999926, 49.269571483000014 ], [ -122.924745479999942, 49.269570948000052 ], [ -122.924745891, 49.269301093000131 ], [ -122.923921118999914, 49.269300552000111 ], [ -122.923921533999959, 49.269030697000048 ], [ -122.923096767999979, 49.269030151000045 ], [ -122.923098446, 49.267950729000091 ], [ -122.921448948999981, 49.267949618000081 ], [ -122.921451518999959, 49.266330485000026 ], [ -122.920626796999983, 49.26632992100015 ], [ -122.920626981999973, 49.266214617000031 ], [ -122.927536596999957, 49.266223298000057 ], [ -122.927781937999967, 49.26622338400005 ], [ -122.931616893999973, 49.26622454400006 ], [ -122.932317883999971, 49.266224747000081 ], [ -122.932878710999915, 49.266224905000101 ], [ -122.936234987999981, 49.266250278000037 ], [ -122.936977284999898, 49.266255886000067 ], [ -122.93703160599992, 49.266256303000013 ], [ -122.937018195999983, 49.267041510000119 ], [ -122.93705868699999, 49.26732279000008 ], [ -122.937279904999926, 49.267759698000084 ], [ -122.937594192999967, 49.268160397000038 ], [ -122.937828505999946, 49.268358109000054 ], [ -122.938209974999936, 49.268615691000029 ], [ -122.939694830999912, 49.269431378000036 ], [ -122.94007571199991, 49.269640587000019 ], [ -122.940101725999952, 49.269651081000077 ], [ -122.940580293, 49.269844110000072 ], [ -122.940281108999983, 49.27023407400003 ], [ -122.940141289999957, 49.270416294000043 ], [ -122.939785997999977, 49.270802614000111 ], [ -122.939687888999941, 49.271081782000081 ], [ -122.939675200999929, 49.271545302000035 ], [ -122.936848839999925, 49.271559177000071 ], [ -122.936611392999964, 49.272992506000065 ], [ -122.936982912999909, 49.274353500000075 ], [ -122.937004641999977, 49.274433081000033 ], [ -122.93677605699996, 49.274386578000062 ], [ -122.93536834299999, 49.274100192000049 ], [ -122.93537296699995, 49.274030216000035 ] ], [ [ -122.939590789999983, 49.270119375000085 ], [ -122.939591118999914, 49.269849520000022 ], [ -122.939178727999959, 49.269849303000086 ], [ -122.93917939100001, 49.269309591000081 ], [ -122.93876700499996, 49.269309374000088 ], [ -122.938767338999952, 49.26903951900011 ], [ -122.937530189999961, 49.269038856000066 ], [ -122.937530528999943, 49.26876900000012 ], [ -122.936705766999964, 49.268768552000026 ], [ -122.936704730999963, 49.269578118000055 ], [ -122.936292342999977, 49.26957789199998 ], [ -122.936291647999951, 49.270117604000127 ], [ -122.935879254999932, 49.270117375000083 ], [ -122.935878206, 49.270926942000095 ], [ -122.936290606999975, 49.270927170000043 ], [ -122.936289935999937, 49.271446775000072 ], [ -122.938764271999958, 49.271516989000119 ], [ -122.938765336999936, 49.27065865200013 ], [ -122.939177733999955, 49.270658870000055 ], [ -122.939178396999935, 49.270119159000053 ], [ -122.939590789999983, 49.270119375000085 ] ], [ [ -122.93464421799996, 49.268497548000056 ], [ -122.934644572999957, 49.26822769200006 ], [ -122.934232196999915, 49.268227459000066 ], [ -122.934231837999974, 49.268497314000093 ], [ -122.93464421799996, 49.268497548000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.817989417989418", "sL_AssetLoss": "9450", "sL_BldgLoss": "7730", "sL_StrLoss": "4440", "sL_NStrLoss": "3290", "sL_ContLoss": "1720", "geom_point": "0101000020E6100000C8627A464BBB5EC050B3384AFBA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.925511295999954, 49.273623597000061 ], [ -122.925300320999952, 49.273396287000082 ], [ -122.924755371999979, 49.272809225000096 ], [ -122.92496883699998, 49.272809363000107 ], [ -122.925565384999942, 49.272809749000103 ], [ -122.925564977999926, 49.273079605000106 ], [ -122.928039480999928, 49.273081172000033 ], [ -122.928038745999984, 49.273586475000066 ], [ -122.928038631000035, 49.273666585000058 ], [ -122.926838998999969, 49.273537994000044 ], [ -122.92652902699993, 49.273549901000109 ], [ -122.92581280399996, 49.273677302000088 ], [ -122.925620586999983, 49.273715896000041 ], [ -122.925511295999954, 49.273623597000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29942749", "BldgCostT": "18469999", "sL_LossRatio": "0.702627082972244", "sL_AssetLoss": "403870", "sL_BldgLoss": "283770", "sL_StrLoss": "117440", "sL_NStrLoss": "166330", "sL_ContLoss": "120100", "geom_point": "0101000020E6100000729B0D8511BA5EC09F718687D5A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.899530503, 49.266727369000051 ], [ -122.89916690799997, 49.266267586000033 ], [ -122.899085507999956, 49.265943700000022 ], [ -122.899121908000012, 49.26539971100005 ], [ -122.899214881999939, 49.265179001000064 ], [ -122.89942909599992, 49.264811290000068 ], [ -122.899753286999896, 49.264545795000103 ], [ -122.900323277, 49.264178394000083 ], [ -122.900407327, 49.264133045000094 ], [ -122.900465831999924, 49.264101457000066 ], [ -122.900339251999981, 49.264001425000082 ], [ -122.901690397999957, 49.263351517000096 ], [ -122.903183457999958, 49.26263335800013 ], [ -122.903870613999942, 49.262302809000111 ], [ -122.904252600999939, 49.26211904800001 ], [ -122.90604312, 49.261257685000011 ], [ -122.908663030999946, 49.259997195000068 ], [ -122.908768853999945, 49.260079508000082 ], [ -122.909486413999971, 49.260629778000073 ], [ -122.909594261999985, 49.260679651000039 ], [ -122.909899602999957, 49.260820863000021 ], [ -122.910412470000026, 49.260917537000097 ], [ -122.914384075999962, 49.260942010000143 ], [ -122.914566799999989, 49.260941808000055 ], [ -122.914121097999967, 49.261198003000047 ], [ -122.914037931999943, 49.261197940000095 ], [ -122.914037847999964, 49.261245855000105 ], [ -122.913806890999979, 49.261378609000097 ], [ -122.913482524999949, 49.26153203300008 ], [ -122.913393367999944, 49.261574197000066 ], [ -122.91318549499999, 49.261672491000049 ], [ -122.91308188099994, 49.261698918000036 ], [ -122.912486718999972, 49.261850703000064 ], [ -122.911723098999914, 49.261929794000068 ], [ -122.910935508999955, 49.261892796000069 ], [ -122.910868222999952, 49.26185130699999 ], [ -122.909798611999946, 49.26178010600006 ], [ -122.909158897999959, 49.261792394000025 ], [ -122.908908191999956, 49.261843805000098 ], [ -122.90854709499996, 49.261963092 ], [ -122.90799791799999, 49.262206011000046 ], [ -122.906656551999916, 49.262823304000065 ], [ -122.906450084999989, 49.262918296000088 ], [ -122.906283956999943, 49.262980201000097 ], [ -122.906185203999911, 49.263017012000034 ], [ -122.905480906, 49.263173405000011 ], [ -122.905105944999917, 49.263203098000055 ], [ -122.904762690999945, 49.263230308000061 ], [ -122.904057701999989, 49.263232592000087 ], [ -122.903937540999948, 49.263252060000084 ], [ -122.90367992099999, 49.263293801000074 ], [ -122.90335960099992, 49.263398982000055 ], [ -122.903199803999897, 49.263487184000084 ], [ -122.902904016999926, 49.263740010000063 ], [ -122.902828598999974, 49.263858147000072 ], [ -122.902778202, 49.263937200000022 ], [ -122.902725800999974, 49.264248288000061 ], [ -122.902759608999972, 49.264359203 ], [ -122.902850084999955, 49.264490292000069 ], [ -122.903051503999947, 49.264781985000099 ], [ -122.902767995999952, 49.26497470200011 ], [ -122.902369274999955, 49.265183999000044 ], [ -122.902142818999934, 49.26536670600013 ], [ -122.902027891999964, 49.265543488000013 ], [ -122.9019922, 49.265728997000082 ], [ -122.902046199999958, 49.266009797000109 ], [ -122.902173414999979, 49.266142305000052 ], [ -122.902411516999933, 49.266342799000036 ], [ -122.902514100999952, 49.266389911000026 ], [ -122.902990726999974, 49.266516207000095 ], [ -122.903198903999936, 49.26652571200006 ], [ -122.903534709999974, 49.26649603800012 ], [ -122.903606673999917, 49.266489705 ], [ -122.904479518999921, 49.266176889000121 ], [ -122.906059099999979, 49.26558711400007 ], [ -122.907284808999947, 49.265111502000146 ], [ -122.908046786999961, 49.264914393000076 ], [ -122.908477696999981, 49.264839401000074 ], [ -122.909404502999934, 49.264705581000072 ], [ -122.909837011999954, 49.264647698000012 ], [ -122.910659491999979, 49.264635189000032 ], [ -122.911493608999947, 49.264736606000049 ], [ -122.912567882999952, 49.264904201000064 ], [ -122.912865804999967, 49.264928999000091 ], [ -122.912917524999926, 49.264922936000076 ], [ -122.913267390999962, 49.264881903000074 ], [ -122.913388707999943, 49.264854800000073 ], [ -122.913657695, 49.264694887000118 ], [ -122.913792701999967, 49.264579755000049 ], [ -122.913839702999937, 49.264539691000017 ], [ -122.915037923999989, 49.264910899000043 ], [ -122.915201410999941, 49.264724603000026 ], [ -122.915415691999897, 49.264601892000073 ], [ -122.915487996999957, 49.264485105000084 ], [ -122.915554189999966, 49.264315817000131 ], [ -122.916970815999889, 49.265217099000061 ], [ -122.917346626999972, 49.26570836100008 ], [ -122.917520469999957, 49.26596591100008 ], [ -122.917627813999985, 49.266192997000083 ], [ -122.917578288999962, 49.266210646000069 ], [ -122.918565185999967, 49.266211941000037 ], [ -122.918564992999947, 49.266328487000052 ], [ -122.918152631999988, 49.266328196000089 ], [ -122.918152185999972, 49.26659805100013 ], [ -122.915265644, 49.26659597000004 ], [ -122.915265018999932, 49.266961142000071 ], [ -122.914028913999957, 49.266389063000112 ], [ -122.914029023999916, 49.266325201 ], [ -122.913890705999961, 49.266325098000088 ], [ -122.912942199999961, 49.265886101000035 ], [ -122.912805722999934, 49.265838309000166 ], [ -122.912230582999925, 49.265636893000078 ], [ -122.911499489999926, 49.265472688000038 ], [ -122.911412701999964, 49.265462342000042 ], [ -122.910731837999961, 49.265381073000107 ], [ -122.91073208499995, 49.265243276000049 ], [ -122.90908268, 49.26524199100006 ], [ -122.909082245999969, 49.265477383000132 ], [ -122.908891099999948, 49.265501609000133 ], [ -122.90885829199999, 49.265511669000077 ], [ -122.908257475999974, 49.265511194000041 ], [ -122.908257132999921, 49.265696006000056 ], [ -122.907869996, 49.265814713000118 ], [ -122.90646340399995, 49.266303204000067 ], [ -122.906420491999981, 49.266319289000073 ], [ -122.90578181099994, 49.266318771000101 ], [ -122.905781353999913, 49.266558862000089 ], [ -122.90498373599999, 49.266857829000081 ], [ -122.904956053999953, 49.266857806000125 ], [ -122.904956033999895, 49.26686821200007 ], [ -122.904208498999978, 49.267148398000067 ], [ -122.904084897999923, 49.267147512000136 ], [ -122.903317115, 49.267451603000076 ], [ -122.902774588999989, 49.267591909000046 ], [ -122.902190186999945, 49.267659791000064 ], [ -122.901692283999935, 49.267646387000106 ], [ -122.901039499999939, 49.26754568299999 ], [ -122.900570709999954, 49.267405184 ], [ -122.900274198999952, 49.267276880000047 ], [ -122.899901217999954, 49.267060802000088 ], [ -122.899553299999951, 49.266756193000148 ], [ -122.899530503, 49.266727369000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9025000", "BldgCostT": "4750000", "sL_LossRatio": "0.638059701492537", "sL_AssetLoss": "80400", "sL_BldgLoss": "51300", "sL_StrLoss": "24700", "sL_NStrLoss": "26600", "sL_ContLoss": "29100", "geom_point": "0101000020E6100000E2F91419C0BA5EC0140B3A2965A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.91527535099999, 49.260926279000095 ], [ -122.91712836, 49.26088564400002 ], [ -122.919398654999924, 49.260838980000109 ], [ -122.919398504999947, 49.260931949000067 ], [ -122.915275347999938, 49.260928999000029 ], [ -122.91527535099999, 49.260926279000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145932417", "BldgCostT": "89366667", "sL_LossRatio": "0.689255957559596", "sL_AssetLoss": "2471230", "sL_BldgLoss": "1703310", "sL_StrLoss": "683800", "sL_NStrLoss": "1019510", "sL_ContLoss": "767920", "geom_point": "0101000020E61000009D802578BFBA5EC06489E7CFABA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.903051503999947, 49.264781985000099 ], [ -122.902850084999955, 49.264490292000069 ], [ -122.902759608999972, 49.264359203 ], [ -122.902725800999974, 49.264248288000061 ], [ -122.902778202, 49.263937200000022 ], [ -122.902828598999974, 49.263858147000072 ], [ -122.902904016999926, 49.263740010000063 ], [ -122.903199803999897, 49.263487184000084 ], [ -122.90335960099992, 49.263398982000055 ], [ -122.90367992099999, 49.263293801000074 ], [ -122.903937540999948, 49.263252060000084 ], [ -122.904057701999989, 49.263232592000087 ], [ -122.904762690999945, 49.263230308000061 ], [ -122.905105944999917, 49.263203098000055 ], [ -122.905480906, 49.263173405000011 ], [ -122.906185203999911, 49.263017012000034 ], [ -122.906283956999943, 49.262980201000097 ], [ -122.906450084999989, 49.262918296000088 ], [ -122.906656551999916, 49.262823304000065 ], [ -122.90799791799999, 49.262206011000046 ], [ -122.90854709499996, 49.261963092 ], [ -122.908908191999956, 49.261843805000098 ], [ -122.909158897999959, 49.261792394000025 ], [ -122.909798611999946, 49.26178010600006 ], [ -122.910868222999952, 49.26185130699999 ], [ -122.910935508999955, 49.261892796000069 ], [ -122.911723098999914, 49.261929794000068 ], [ -122.912486718999972, 49.261850703000064 ], [ -122.91308188099994, 49.261698918000036 ], [ -122.91318549499999, 49.261672491000049 ], [ -122.913393367999944, 49.261574197000066 ], [ -122.913482524999949, 49.26153203300008 ], [ -122.913806890999979, 49.261378609000097 ], [ -122.914037847999964, 49.261245855000105 ], [ -122.914036994, 49.2617376520001 ], [ -122.915686284999964, 49.261738867000076 ], [ -122.915685824999926, 49.262008724000083 ], [ -122.916098148999978, 49.262009024000079 ], [ -122.916098605999963, 49.261739167000052 ], [ -122.916923250999943, 49.26173976300008 ], [ -122.916923704999959, 49.26146990700007 ], [ -122.918160664999931, 49.261470791000114 ], [ -122.918160218999958, 49.26174064700006 ], [ -122.918572541999936, 49.261740938000038 ], [ -122.918572097999984, 49.262010794000055 ], [ -122.918984420999905, 49.262011084000086 ], [ -122.918983979999922, 49.26228094 ], [ -122.919396307999989, 49.262281228000084 ], [ -122.919396746999922, 49.262011372000089 ], [ -122.91980907199999, 49.262011659000109 ], [ -122.919809507999972, 49.261741803000049 ], [ -122.921871122999946, 49.261743215000095 ], [ -122.921869418, 49.262822639 ], [ -122.921511097999939, 49.262822396000033 ], [ -122.921456898999963, 49.2629399120001 ], [ -122.92145665699995, 49.263092216000103 ], [ -122.922281326999979, 49.263092772000071 ], [ -122.92228259700002, 49.262283205000088 ], [ -122.922931637999937, 49.262283641000103 ], [ -122.92295642299996, 49.261909994000099 ], [ -122.925187206999979, 49.261973589000085 ], [ -122.925255987999975, 49.260935886000041 ], [ -122.925170925999964, 49.260935831000019 ], [ -122.925171038999935, 49.260861776000134 ], [ -122.92770141499993, 49.260872503000058 ], [ -122.927885983999971, 49.261051595000033 ], [ -122.928086905999962, 49.261337491000056 ], [ -122.928229702999971, 49.261629011000046 ], [ -122.92823090899995, 49.26179740000002 ], [ -122.928165274, 49.261936235000064 ], [ -122.928111080999926, 49.26205079400011 ], [ -122.927695086999933, 49.262585696000066 ], [ -122.92759191, 49.262940404000084 ], [ -122.927565933000025, 49.263814153000069 ], [ -122.927560317999962, 49.264003142 ], [ -122.927541576999957, 49.264633499000112 ], [ -122.926919539999957, 49.26462579600009 ], [ -122.926617483, 49.264622045000067 ], [ -122.926411398999946, 49.264619495000041 ], [ -122.925586005999946, 49.264609245000081 ], [ -122.925517310999979, 49.264608376000112 ], [ -122.925301112999975, 49.264605697000036 ], [ -122.925234952999929, 49.264590901000048 ], [ -122.924827826999959, 49.2644998540001 ], [ -122.924322294999939, 49.264386787000085 ], [ -122.924207299999949, 49.264379910000045 ], [ -122.923625114999979, 49.264394909000146 ], [ -122.923024148999943, 49.264520969000067 ], [ -122.921621508999948, 49.264815206000037 ], [ -122.921324802999933, 49.264834592000064 ], [ -122.920949381999932, 49.264818498000089 ], [ -122.920376178999931, 49.264740000000124 ], [ -122.919048729999957, 49.264562812000044 ], [ -122.917577517999973, 49.264366391000081 ], [ -122.917167134999929, 49.264314101000139 ], [ -122.915955377000031, 49.264159714000073 ], [ -122.915704175999934, 49.264127689000134 ], [ -122.915554325999949, 49.26410860200005 ], [ -122.91557870299999, 49.26390658800009 ], [ -122.915526512999946, 49.263616899000084 ], [ -122.915363499999941, 49.263320302000082 ], [ -122.915127137999903, 49.263158558000022 ], [ -122.914999483999978, 49.26307119400014 ], [ -122.91448251199995, 49.262891605000085 ], [ -122.914468095999922, 49.262889190000145 ], [ -122.913941618999928, 49.262801301000124 ], [ -122.91339211699993, 49.262800898000123 ], [ -122.913378278999943, 49.262800786000042 ], [ -122.912245597999942, 49.262790593000076 ], [ -122.912063382999932, 49.262790494000122 ], [ -122.911444574999933, 49.26279020000004 ], [ -122.910796897999958, 49.26271669000009 ], [ -122.910663881999966, 49.262708082000131 ], [ -122.909480821999921, 49.262631306000095 ], [ -122.90945231099991, 49.26263076100004 ], [ -122.909106169999973, 49.262624198000069 ], [ -122.908891304999912, 49.262654100000056 ], [ -122.908512575999964, 49.262770194000097 ], [ -122.908497595999947, 49.262779533000071 ], [ -122.908258892999982, 49.262927799000067 ], [ -122.908065111999974, 49.263093387000069 ], [ -122.907891585999892, 49.26338749800005 ], [ -122.907939274999976, 49.263537498000048 ], [ -122.907576794999969, 49.263705064000106 ], [ -122.906986686999971, 49.26397779300008 ], [ -122.905744586999944, 49.264636704000083 ], [ -122.904932809999977, 49.264963008000095 ], [ -122.904546608999965, 49.265068104000072 ], [ -122.904108690999976, 49.265103294000049 ], [ -122.903835482999966, 49.265079206000031 ], [ -122.903594592999966, 49.265024585000042 ], [ -122.903341603999976, 49.264911601000094 ], [ -122.903051503999947, 49.264781985000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "493206125", "BldgCostT": "277473103", "sL_LossRatio": "0.601760673106887", "sL_AssetLoss": "7059800", "sL_BldgLoss": "4248310", "sL_StrLoss": "1364030", "sL_NStrLoss": "2884280", "sL_ContLoss": "2811490", "geom_point": "0101000020E6100000BCC4E2BB3DBB5EC0FCF3E0CD1EA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.916970815999889, 49.265217099000061 ], [ -122.915554189999966, 49.264315817000131 ], [ -122.915487996999957, 49.264485105000084 ], [ -122.915415691999897, 49.264601892000073 ], [ -122.915201410999941, 49.264724603000026 ], [ -122.915037923999989, 49.264910899000043 ], [ -122.913839702999937, 49.264539691000017 ], [ -122.91426890799994, 49.263933092000073 ], [ -122.91385344499993, 49.263884769000072 ], [ -122.91381758799993, 49.263880605000047 ], [ -122.912773908999924, 49.263791291000096 ], [ -122.912760291999973, 49.263790026000038 ], [ -122.91171152599999, 49.263691465000122 ], [ -122.911697907999951, 49.263690199000095 ], [ -122.910914513999941, 49.263622875000053 ], [ -122.910880990999956, 49.263619995000084 ], [ -122.909661622999948, 49.263537046000117 ], [ -122.909599413999914, 49.263532807000026 ], [ -122.908447294, 49.263504220000094 ], [ -122.908422502999954, 49.263503604000121 ], [ -122.907939274999976, 49.263537498000048 ], [ -122.907891585999892, 49.26338749800005 ], [ -122.908065111999974, 49.263093387000069 ], [ -122.908258892999982, 49.262927799000067 ], [ -122.908497595999947, 49.262779533000071 ], [ -122.908512575999964, 49.262770194000097 ], [ -122.908891304999912, 49.262654100000056 ], [ -122.909106169999973, 49.262624198000069 ], [ -122.90945231099991, 49.26263076100004 ], [ -122.909480821999921, 49.262631306000095 ], [ -122.910663881999966, 49.262708082000131 ], [ -122.910796897999958, 49.26271669000009 ], [ -122.911444574999933, 49.26279020000004 ], [ -122.912063382999932, 49.262790494000122 ], [ -122.912245597999942, 49.262790593000076 ], [ -122.913378278999943, 49.262800786000042 ], [ -122.91339211699993, 49.262800898000123 ], [ -122.913941618999928, 49.262801301000124 ], [ -122.914468095999922, 49.262889190000145 ], [ -122.91448251199995, 49.262891605000085 ], [ -122.914999483999978, 49.26307119400014 ], [ -122.915127137999903, 49.263158558000022 ], [ -122.915363499999941, 49.263320302000082 ], [ -122.915526512999946, 49.263616899000084 ], [ -122.91557870299999, 49.26390658800009 ], [ -122.915554325999949, 49.26410860200005 ], [ -122.915704175999934, 49.264127689000134 ], [ -122.915955377000031, 49.264159714000073 ], [ -122.917167134999929, 49.264314101000139 ], [ -122.917577517999973, 49.264366391000081 ], [ -122.919048729999957, 49.264562812000044 ], [ -122.920376178999931, 49.264740000000124 ], [ -122.920949381999932, 49.264818498000089 ], [ -122.921324802999933, 49.264834592000064 ], [ -122.921621508999948, 49.264815206000037 ], [ -122.923024148999943, 49.264520969000067 ], [ -122.923625114999979, 49.264394909000146 ], [ -122.924207299999949, 49.264379910000045 ], [ -122.924322294999939, 49.264386787000085 ], [ -122.924827826999959, 49.2644998540001 ], [ -122.925234952999929, 49.264590901000048 ], [ -122.925301112999975, 49.264605697000036 ], [ -122.925517310999979, 49.264608376000112 ], [ -122.925586005999946, 49.264609245000081 ], [ -122.926411398999946, 49.264619495000041 ], [ -122.926617483, 49.264622045000067 ], [ -122.926919539999957, 49.26462579600009 ], [ -122.927541576999957, 49.264633499000112 ], [ -122.927560317999962, 49.264003142 ], [ -122.927565933000025, 49.263814153000069 ], [ -122.92759191, 49.262940404000084 ], [ -122.927695086999933, 49.262585696000066 ], [ -122.928111080999926, 49.26205079400011 ], [ -122.928165274, 49.261936235000064 ], [ -122.92823090899995, 49.26179740000002 ], [ -122.928229702999971, 49.261629011000046 ], [ -122.928086905999962, 49.261337491000056 ], [ -122.927885983999971, 49.261051595000033 ], [ -122.92770141499993, 49.260872503000058 ], [ -122.925171038999935, 49.260861776000134 ], [ -122.925172151999931, 49.260126262000064 ], [ -122.924759842, 49.260125996000099 ], [ -122.92476013699995, 49.259932190000029 ], [ -122.92393553299992, 49.259923517000054 ], [ -122.92393522499999, 49.260125455000029 ], [ -122.923110604999934, 49.260124909000069 ], [ -122.923110185999946, 49.260394765000136 ], [ -122.920224006999945, 49.260392810000091 ], [ -122.920223571999941, 49.260662665000062 ], [ -122.919398944999969, 49.260662092000103 ], [ -122.919398654999924, 49.260838980000109 ], [ -122.91712836, 49.26088564400002 ], [ -122.91527535099999, 49.260926279000095 ], [ -122.915275809999926, 49.260659142000051 ], [ -122.914863496999899, 49.260658839000051 ], [ -122.914863018999952, 49.260935317000119 ], [ -122.914566799999989, 49.260941808000055 ], [ -122.914384075999962, 49.260942010000143 ], [ -122.910412470000026, 49.260917537000097 ], [ -122.909899602999957, 49.260820863000021 ], [ -122.909594261999985, 49.260679651000039 ], [ -122.909486413999971, 49.260629778000073 ], [ -122.908768853999945, 49.260079508000082 ], [ -122.908939207999978, 49.259996996000027 ], [ -122.908840302999948, 49.259913999000027 ], [ -122.910308647999912, 49.25921734300006 ], [ -122.91079755, 49.258910644000089 ], [ -122.911209515999971, 49.258603540000102 ], [ -122.911671219999945, 49.258106871000074 ], [ -122.911892097999925, 49.257772762000059 ], [ -122.911987407999987, 49.257628566000115 ], [ -122.912033627999918, 49.257469924000105 ], [ -122.912089592999948, 49.257278052000046 ], [ -122.912140536999971, 49.257103241000081 ], [ -122.912475582999932, 49.252460790000093 ], [ -122.912604952, 49.252477988000088 ], [ -122.91261839399999, 49.252479810000132 ], [ -122.913574550999954, 49.252608087000034 ], [ -122.918878685999957, 49.253319501000078 ], [ -122.919024386, 49.253338993000085 ], [ -122.924794793999965, 49.254150407000061 ], [ -122.92572869899999, 49.25421580700008 ], [ -122.92712090500001, 49.254247391000099 ], [ -122.927134791999947, 49.254247512000099 ], [ -122.928243947999988, 49.25425590600009 ], [ -122.931081845999955, 49.25425536300002 ], [ -122.934153497999972, 49.254254649000146 ], [ -122.935165920999935, 49.254263270000081 ], [ -122.937404942999962, 49.254282240000073 ], [ -122.937460058999989, 49.254282725000103 ], [ -122.937997571999972, 49.254287269000045 ], [ -122.938100298999984, 49.254291982000069 ], [ -122.938629032, 49.254334697000047 ], [ -122.938656126999916, 49.254336890000019 ], [ -122.939131905999943, 49.254375311000096 ], [ -122.939975577000013, 49.254496524000096 ], [ -122.941103039999945, 49.254730306000035 ], [ -122.941998778999945, 49.254963658000129 ], [ -122.942173978999946, 49.255009288000046 ], [ -122.942925516999978, 49.255254393000016 ], [ -122.942954203999975, 49.255263749000044 ], [ -122.94257693599998, 49.255662857000054 ], [ -122.942453105999988, 49.255890988000104 ], [ -122.942390806999967, 49.256088214000094 ], [ -122.942330595999962, 49.256270154000056 ], [ -122.942227447000022, 49.25633434900007 ], [ -122.941951265999961, 49.25649453700003 ], [ -122.941903101999984, 49.25652343800008 ], [ -122.941282214999944, 49.256944242000017 ], [ -122.940964429999937, 49.257272753000031 ], [ -122.940853180999952, 49.257555184000076 ], [ -122.940754953999942, 49.257992442000138 ], [ -122.940573920999952, 49.258502628000087 ], [ -122.940393748999924, 49.25882161400007 ], [ -122.93986818299993, 49.259478269000077 ], [ -122.939729454999934, 49.259751644000048 ], [ -122.93970135899994, 49.25988827700003 ], [ -122.93972575199993, 49.260562366000066 ], [ -122.939509026999957, 49.260912412000081 ], [ -122.937358804000027, 49.260923342000098 ], [ -122.936998892999966, 49.260925167000039 ], [ -122.936833101999966, 49.2611215680001 ], [ -122.936560712999949, 49.261444188000077 ], [ -122.936469010999929, 49.261626295000063 ], [ -122.93640927699991, 49.261843497000029 ], [ -122.936488388999976, 49.262415108000042 ], [ -122.935544202999949, 49.262523389000073 ], [ -122.935475300999911, 49.262277307 ], [ -122.935470989999942, 49.261800597000104 ], [ -122.935390794999975, 49.261663194000093 ], [ -122.935199995999952, 49.261598418000077 ], [ -122.934184608999928, 49.261579409000035 ], [ -122.933952174999916, 49.261604302000102 ], [ -122.933762388999952, 49.261668296000082 ], [ -122.933421708999958, 49.261897405000077 ], [ -122.933057001999899, 49.262155399000058 ], [ -122.932901088999941, 49.262352807000099 ], [ -122.932861707999947, 49.262678681000068 ], [ -122.932896209999925, 49.262925600000052 ], [ -122.93294720499992, 49.263048696000027 ], [ -122.933166391999947, 49.26316120900006 ], [ -122.933728495999972, 49.263178988000107 ], [ -122.933739901999928, 49.263983697000093 ], [ -122.933046800999975, 49.264451403000088 ], [ -122.932922387999923, 49.264608211000066 ], [ -122.932896702999955, 49.265619095000076 ], [ -122.932878710999915, 49.266224905000101 ], [ -122.932317883999971, 49.266224747000081 ], [ -122.931616893999973, 49.26622454400006 ], [ -122.927781937999967, 49.26622338400005 ], [ -122.927536596999957, 49.266223298000057 ], [ -122.920626981999973, 49.266214617000031 ], [ -122.920628528999927, 49.265250498000093 ], [ -122.919803823999942, 49.265249929000049 ], [ -122.919804262999946, 49.264980074000071 ], [ -122.919391911999952, 49.264979786000062 ], [ -122.919390153999956, 49.26605920900009 ], [ -122.918565437999973, 49.266058631000092 ], [ -122.918565185999967, 49.266211941000037 ], [ -122.917578288999962, 49.266210646000069 ], [ -122.917627813999985, 49.266192997000083 ], [ -122.917520469999957, 49.26596591100008 ], [ -122.917346626999972, 49.26570836100008 ], [ -122.916970815999889, 49.265217099000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37432834", "BldgCostT": "23508334", "sL_LossRatio": "0.684370801612181", "sL_AssetLoss": "558250", "sL_BldgLoss": "382050", "sL_StrLoss": "150610", "sL_NStrLoss": "231440", "sL_ContLoss": "176200", "geom_point": "0101000020E6100000A00CC0CC18BA5EC067635F91E3A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.903051503999947, 49.264781985000099 ], [ -122.903341603999976, 49.264911601000094 ], [ -122.903594592999966, 49.265024585000042 ], [ -122.903835482999966, 49.265079206000031 ], [ -122.904108690999976, 49.265103294000049 ], [ -122.904546608999965, 49.265068104000072 ], [ -122.904932809999977, 49.264963008000095 ], [ -122.905744586999944, 49.264636704000083 ], [ -122.906986686999971, 49.26397779300008 ], [ -122.907576794999969, 49.263705064000106 ], [ -122.907939274999976, 49.263537498000048 ], [ -122.908422502999954, 49.263503604000121 ], [ -122.908447294, 49.263504220000094 ], [ -122.909599413999914, 49.263532807000026 ], [ -122.909661622999948, 49.263537046000117 ], [ -122.910880990999956, 49.263619995000084 ], [ -122.910914513999941, 49.263622875000053 ], [ -122.911697907999951, 49.263690199000095 ], [ -122.91171152599999, 49.263691465000122 ], [ -122.912760291999973, 49.263790026000038 ], [ -122.912773908999924, 49.263791291000096 ], [ -122.91381758799993, 49.263880605000047 ], [ -122.91385344499993, 49.263884769000072 ], [ -122.91426890799994, 49.263933092000073 ], [ -122.913839702999937, 49.264539691000017 ], [ -122.913792701999967, 49.264579755000049 ], [ -122.913657695, 49.264694887000118 ], [ -122.913388707999943, 49.264854800000073 ], [ -122.913267390999962, 49.264881903000074 ], [ -122.912917524999926, 49.264922936000076 ], [ -122.912865804999967, 49.264928999000091 ], [ -122.912567882999952, 49.264904201000064 ], [ -122.911493608999947, 49.264736606000049 ], [ -122.910659491999979, 49.264635189000032 ], [ -122.909837011999954, 49.264647698000012 ], [ -122.909404502999934, 49.264705581000072 ], [ -122.908477696999981, 49.264839401000074 ], [ -122.908046786999961, 49.264914393000076 ], [ -122.907284808999947, 49.265111502000146 ], [ -122.906059099999979, 49.26558711400007 ], [ -122.904479518999921, 49.266176889000121 ], [ -122.903606673999917, 49.266489705 ], [ -122.903534709999974, 49.26649603800012 ], [ -122.903198903999936, 49.26652571200006 ], [ -122.902990726999974, 49.266516207000095 ], [ -122.902514100999952, 49.266389911000026 ], [ -122.902411516999933, 49.266342799000036 ], [ -122.902173414999979, 49.266142305000052 ], [ -122.902046199999958, 49.266009797000109 ], [ -122.9019922, 49.265728997000082 ], [ -122.902027891999964, 49.265543488000013 ], [ -122.902142818999934, 49.26536670600013 ], [ -122.902369274999955, 49.265183999000044 ], [ -122.902767995999952, 49.26497470200011 ], [ -122.903051503999947, 49.264781985000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88520000", "BldgCostT": "58100000", "sL_LossRatio": "0.726882827471884", "sL_AssetLoss": "1499686", "sL_BldgLoss": "1090096", "sL_StrLoss": "475126", "sL_NStrLoss": "614970", "sL_ContLoss": "409590", "geom_point": "0101000020E6100000CFE30F8AD6BB5EC0498EAEB1CFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.932861707999947, 49.262678681000068 ], [ -122.932901088999941, 49.262352807000099 ], [ -122.933057001999899, 49.262155399000058 ], [ -122.933421708999958, 49.261897405000077 ], [ -122.933762388999952, 49.261668296000082 ], [ -122.933952174999916, 49.261604302000102 ], [ -122.934184608999928, 49.261579409000035 ], [ -122.935199995999952, 49.261598418000077 ], [ -122.935390794999975, 49.261663194000093 ], [ -122.935470989999942, 49.261800597000104 ], [ -122.935475300999911, 49.262277307 ], [ -122.935544202999949, 49.262523389000073 ], [ -122.936488388999976, 49.262415108000042 ], [ -122.936774090999975, 49.262959631000058 ], [ -122.93698262, 49.263356991000052 ], [ -122.937009894, 49.26349853300011 ], [ -122.937018405999964, 49.263542605000026 ], [ -122.937018695999896, 49.264224608000056 ], [ -122.93708689, 49.264794986000012 ], [ -122.937060109999933, 49.26550294900008 ], [ -122.937041694999934, 49.265989031000068 ], [ -122.937040008999958, 49.266033971000063 ], [ -122.937037270999923, 49.266105894000042 ], [ -122.93703160599992, 49.266256303000013 ], [ -122.936977284999898, 49.266255886000067 ], [ -122.936234987999981, 49.266250278000037 ], [ -122.932878710999915, 49.266224905000101 ], [ -122.932896702999955, 49.265619095000076 ], [ -122.932922387999923, 49.264608211000066 ], [ -122.933046800999975, 49.264451403000088 ], [ -122.933739901999928, 49.263983697000093 ], [ -122.933728495999972, 49.263178988000107 ], [ -122.933166391999947, 49.26316120900006 ], [ -122.93294720499992, 49.263048696000027 ], [ -122.932896209999925, 49.262925600000052 ], [ -122.932861707999947, 49.262678681000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "387298925", "BldgCostT": "264660126", "sL_LossRatio": "0.848550744212431", "sL_AssetLoss": "2221140", "sL_BldgLoss": "1884750", "sL_StrLoss": "1054700", "sL_NStrLoss": "830050", "sL_ContLoss": "336390", "geom_point": "0101000020E610000022DB5CA9E5C75EC04FB5B33B66954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124692067999959, 49.165738010000069 ], [ -123.12477990099994, 49.165738411000063 ], [ -123.12476363299993, 49.166417257000049 ], [ -123.124763416999912, 49.166426255000033 ], [ -123.124721156999925, 49.168616940000064 ], [ -123.12453606299999, 49.168617403000063 ], [ -123.122084769999944, 49.168616780000015 ], [ -123.12196220099996, 49.167828837000073 ], [ -123.121967855, 49.167651560000103 ], [ -123.121982782999964, 49.167186162000036 ], [ -123.121995725, 49.166844183000137 ], [ -123.122093409999962, 49.166661229000049 ], [ -123.122104751000023, 49.16641197900006 ], [ -123.122123384999909, 49.165734125000043 ], [ -123.12457704799999, 49.165737530000108 ], [ -123.124692067999959, 49.165738010000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282870416", "BldgCostT": "189746666", "sL_LossRatio": "0.795910723203881", "sL_AssetLoss": "5045880", "sL_BldgLoss": "4016070", "sL_StrLoss": "2033260", "sL_NStrLoss": "1982810", "sL_ContLoss": "1029810", "geom_point": "0101000020E610000063D5A54E99C75EC082A216D64F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115612489999975, 49.167112105000108 ], [ -123.115678585999959, 49.166975092000079 ], [ -123.115671307999932, 49.166584889000013 ], [ -123.115663817, 49.166064904000081 ], [ -123.115657251999963, 49.165728654000112 ], [ -123.119333827, 49.165730678000102 ], [ -123.122123384999909, 49.165734125000043 ], [ -123.122104751000023, 49.16641197900006 ], [ -123.122093409999962, 49.166661229000049 ], [ -123.121995725, 49.166844183000137 ], [ -123.121982782999964, 49.167186162000036 ], [ -123.121857003999963, 49.167202631000073 ], [ -123.121111314999936, 49.167179069000021 ], [ -123.119493460999976, 49.167181761000045 ], [ -123.117868787999925, 49.167139179000038 ], [ -123.117544861999988, 49.167211581000096 ], [ -123.116860790999937, 49.167211298000048 ], [ -123.116858779999959, 49.167553593000022 ], [ -123.116359803999956, 49.167551891000095 ], [ -123.115515487999957, 49.167549098000059 ], [ -123.115499495000023, 49.167386511000075 ], [ -123.115612489999975, 49.167112105000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "847110729", "BldgCostT": "565282094", "sL_LossRatio": "0.812886260354084", "sL_AssetLoss": "13009360", "sL_BldgLoss": "10575130", "sL_StrLoss": "6063870", "sL_NStrLoss": "4511260", "sL_ContLoss": "2434230", "geom_point": "0101000020E6100000A35AA88895C75EC09951131A94954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.113990554999944, 49.170096463000043 ], [ -123.113986182999938, 49.168620717000067 ], [ -123.113991191999972, 49.168161249000029 ], [ -123.114007069999957, 49.166704066000115 ], [ -123.114010787999959, 49.166362258000056 ], [ -123.114017691999962, 49.165727958000041 ], [ -123.115657251999963, 49.165728654000112 ], [ -123.115663817, 49.166064904000081 ], [ -123.115671307999932, 49.166584889000013 ], [ -123.115678585999959, 49.166975092000079 ], [ -123.115612489999975, 49.167112105000108 ], [ -123.115499495000023, 49.167386511000075 ], [ -123.115515487999957, 49.167549098000059 ], [ -123.116359803999956, 49.167551891000095 ], [ -123.116858779999959, 49.167553593000022 ], [ -123.116860790999937, 49.167211298000048 ], [ -123.117544861999988, 49.167211581000096 ], [ -123.117868787999925, 49.167139179000038 ], [ -123.119493460999976, 49.167181761000045 ], [ -123.121111314999936, 49.167179069000021 ], [ -123.121857003999963, 49.167202631000073 ], [ -123.121982782999964, 49.167186162000036 ], [ -123.121967855, 49.167651560000103 ], [ -123.12196220099996, 49.167828837000073 ], [ -123.122084769999944, 49.168616780000015 ], [ -123.12453606299999, 49.168617403000063 ], [ -123.124721156999925, 49.168616940000064 ], [ -123.124691632999927, 49.170091769000123 ], [ -123.124689969999935, 49.170185396000093 ], [ -123.12463467299996, 49.17018433300008 ], [ -123.124565313999938, 49.170182987000096 ], [ -123.124566754999961, 49.170138336000058 ], [ -123.124568146999962, 49.17009297200012 ], [ -123.122219308999945, 49.170097799000054 ], [ -123.11933965, 49.170106360000041 ], [ -123.117881062999984, 49.170103370000092 ], [ -123.113990554999944, 49.170096463000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172161310", "BldgCostT": "105673189", "sL_LossRatio": "0.626661301819826", "sL_AssetLoss": "8052420", "sL_BldgLoss": "5046140", "sL_StrLoss": "2145860", "sL_NStrLoss": "2900280", "sL_ContLoss": "3006280", "geom_point": "0101000020E61000003EA90E3D12C75EC0B8B3CF00EA944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.102966234999911, 49.170072487000049 ], [ -123.102433921999989, 49.162821942000065 ], [ -123.102499834999932, 49.160400510000038 ], [ -123.105734410999986, 49.160487521000107 ], [ -123.10571917499999, 49.160732331000133 ], [ -123.107920145, 49.160791481000082 ], [ -123.107925877999946, 49.160699306000048 ], [ -123.11172433599998, 49.160801283000069 ], [ -123.111723698999967, 49.160518622000083 ], [ -123.112135181, 49.160518222000121 ], [ -123.112133166999925, 49.159626111000108 ], [ -123.111869735999932, 49.159624162000043 ], [ -123.111858135999981, 49.159418762 ], [ -123.112465635999925, 49.159419362000065 ], [ -123.112465564, 49.159438457000121 ], [ -123.112544215999975, 49.159438381000101 ], [ -123.11254116100001, 49.158090291000043 ], [ -123.111308582999982, 49.158057222000132 ], [ -123.111292282999969, 49.158319612000085 ], [ -123.105818716999948, 49.158172591000053 ], [ -123.105826416999946, 49.158048871000041 ], [ -123.103488779999964, 49.157985996000079 ], [ -123.103489574999969, 49.158367406000096 ], [ -123.102666646999964, 49.158368141000089 ], [ -123.102668878, 49.159447583 ], [ -123.102525768999911, 49.159447710000094 ], [ -123.102633971999978, 49.155471983000069 ], [ -123.10269571399999, 49.155472103000093 ], [ -123.10837609899994, 49.155483103000087 ], [ -123.111130133999893, 49.155487749000081 ], [ -123.111472983999974, 49.155488321000043 ], [ -123.112926736999952, 49.155490739000122 ], [ -123.114104624999982, 49.155492682 ], [ -123.114098363999958, 49.156549352000098 ], [ -123.114086092999955, 49.158220960000058 ], [ -123.114077825999942, 49.15930618800008 ], [ -123.114050944999931, 49.162828928000089 ], [ -123.114917211999952, 49.162830529000104 ], [ -123.115140585999939, 49.162830988000124 ], [ -123.117027966999942, 49.162834816000014 ], [ -123.119851169999905, 49.16284552300008 ], [ -123.122671681999961, 49.162855197000042 ], [ -123.12446407199991, 49.162831281000066 ], [ -123.12458278299999, 49.162829648000098 ], [ -123.12459669499998, 49.162829370000054 ], [ -123.125069099, 49.162819460000023 ], [ -123.125233540999943, 49.16281600200012 ], [ -123.125319855999976, 49.162814222000108 ], [ -123.125369783999972, 49.162800166000082 ], [ -123.125504024999884, 49.162762376000096 ], [ -123.125538664999951, 49.162815385000023 ], [ -123.125643029999978, 49.162975070000044 ], [ -123.125742491, 49.163074108000046 ], [ -123.125418724999989, 49.163254698000102 ], [ -123.125216913999964, 49.163415895000064 ], [ -123.12516451, 49.163489456000072 ], [ -123.125146266999977, 49.163515044000071 ], [ -123.124868592999974, 49.163904812000091 ], [ -123.124803422999946, 49.164117503000107 ], [ -123.124792810999935, 49.165174810000053 ], [ -123.12477990099994, 49.165738411000063 ], [ -123.124692067999959, 49.165738010000069 ], [ -123.12457704799999, 49.165737530000108 ], [ -123.122123384999909, 49.165734125000043 ], [ -123.119333827, 49.165730678000102 ], [ -123.115657251999963, 49.165728654000112 ], [ -123.114017691999962, 49.165727958000041 ], [ -123.114010787999959, 49.166362258000056 ], [ -123.114007069999957, 49.166704066000115 ], [ -123.113991191999972, 49.168161249000029 ], [ -123.113986182999938, 49.168620717000067 ], [ -123.113990554999944, 49.170096463000043 ], [ -123.113976770999969, 49.170096460000096 ], [ -123.10836409199996, 49.170084400000043 ], [ -123.102966234999911, 49.170072487000049 ] ], [ [ -123.110490281999887, 49.16784058900005 ], [ -123.110523864999919, 49.167300224000094 ], [ -123.11044433, 49.167298090000017 ], [ -123.110504734999935, 49.166326158000032 ], [ -123.110409089999962, 49.166323591000051 ], [ -123.110437224999899, 49.165870868000113 ], [ -123.110307612999947, 49.165867389000027 ], [ -123.110333574999956, 49.1654496680001 ], [ -123.108442496999885, 49.16539889600007 ], [ -123.10844422299999, 49.166188826000038 ], [ -123.10885575099995, 49.166188439000024 ], [ -123.108859532999944, 49.167913786000106 ], [ -123.108870922999984, 49.167914091000085 ], [ -123.108871733999976, 49.167901050000125 ], [ -123.109764053999982, 49.167925006000033 ], [ -123.10977050299999, 49.167821271 ], [ -123.110490281999887, 49.16784058900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156503000", "BldgCostT": "100640000", "sL_LossRatio": "0.798137009634322", "sL_AssetLoss": "939350", "sL_BldgLoss": "749730", "sL_StrLoss": "409090", "sL_NStrLoss": "340640", "sL_ContLoss": "189620", "geom_point": "0101000020E61000004B8E096BC2C75EC02FBED32A9B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119793435999952, 49.159130547000068 ], [ -123.1226422, 49.159122958000061 ], [ -123.122663282999952, 49.16170633200008 ], [ -123.122671681999961, 49.162855197000042 ], [ -123.119851169999905, 49.16284552300008 ], [ -123.119842581999961, 49.162165114000047 ], [ -123.119793435999952, 49.159130547000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135712928", "BldgCostT": "86927070", "sL_LossRatio": "0.70168516880226", "sL_AssetLoss": "2803280", "sL_BldgLoss": "1967020", "sL_StrLoss": "933260", "sL_NStrLoss": "1033760", "sL_ContLoss": "836260", "geom_point": "0101000020E610000017C07BE4A2C75EC07CAAE0434B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120828330999956, 49.155477236000067 ], [ -123.12255584899999, 49.155467560000062 ], [ -123.122567013999912, 49.155907484000068 ], [ -123.122570330999949, 49.156031021000054 ], [ -123.122581084999965, 49.156499751000098 ], [ -123.122590363999947, 49.156792780000067 ], [ -123.122602784999941, 49.157389508000065 ], [ -123.122626353, 49.158426142000032 ], [ -123.1226422, 49.159122958000061 ], [ -123.119793435999952, 49.159130547000068 ], [ -123.119842581999961, 49.162165114000047 ], [ -123.119851169999905, 49.16284552300008 ], [ -123.117027966999942, 49.162834816000014 ], [ -123.117020683999939, 49.162178778000076 ], [ -123.117016447999916, 49.162048044000052 ], [ -123.117011552999955, 49.161691354 ], [ -123.11701073399999, 49.161631667000094 ], [ -123.116982975999974, 49.159912965000053 ], [ -123.116967951999953, 49.159160320000119 ], [ -123.116960398999936, 49.158308783000088 ], [ -123.116942646999959, 49.156587379000072 ], [ -123.116928076999969, 49.155491754000145 ], [ -123.119801321999915, 49.15548399500009 ], [ -123.120828330999956, 49.155477236000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119473084", "BldgCostT": "77403334", "sL_LossRatio": "0.727465873925622", "sL_AssetLoss": "2381610", "sL_BldgLoss": "1732540", "sL_StrLoss": "779020", "sL_NStrLoss": "953520", "sL_ContLoss": "649070", "geom_point": "0101000020E61000004B13C7CB64C75EC09C9FD97D60944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116379896999959, 49.155491509000086 ], [ -123.116928076999969, 49.155491754000145 ], [ -123.116942646999959, 49.156587379000072 ], [ -123.116960398999936, 49.158308783000088 ], [ -123.116967951999953, 49.159160320000119 ], [ -123.116982975999974, 49.159912965000053 ], [ -123.11701073399999, 49.161631667000094 ], [ -123.117011552999955, 49.161691354 ], [ -123.117016447999916, 49.162048044000052 ], [ -123.117020683999939, 49.162178778000076 ], [ -123.117027966999942, 49.162834816000014 ], [ -123.115140585999939, 49.162830988000124 ], [ -123.114917211999952, 49.162830529000104 ], [ -123.114050944999931, 49.162828928000089 ], [ -123.114077825999942, 49.15930618800008 ], [ -123.114086092999955, 49.158220960000058 ], [ -123.114098363999958, 49.156549352000098 ], [ -123.114104624999982, 49.155492682 ], [ -123.116379896999959, 49.155491509000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56302228", "BldgCostT": "36734857", "sL_LossRatio": "0.739242255011463", "sL_AssetLoss": "680440", "sL_BldgLoss": "503010", "sL_StrLoss": "248800", "sL_NStrLoss": "254210", "sL_ContLoss": "177430", "geom_point": "0101000020E61000009445B45FEFC75EC071EB662D22944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12255584899999, 49.155467560000062 ], [ -123.12533969899998, 49.155464485000032 ], [ -123.125364117999965, 49.157330847000082 ], [ -123.125413765999966, 49.159122237000091 ], [ -123.123978623999918, 49.159122645000124 ], [ -123.1226422, 49.159122958000061 ], [ -123.122626353, 49.158426142000032 ], [ -123.122602784999941, 49.157389508000065 ], [ -123.122590363999947, 49.156792780000067 ], [ -123.122581084999965, 49.156499751000098 ], [ -123.122570330999949, 49.156031021000054 ], [ -123.122567013999912, 49.155907484000068 ], [ -123.12255584899999, 49.155467560000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86551667", "BldgCostT": "51376667", "sL_LossRatio": "0.716030392637874", "sL_AssetLoss": "754130", "sL_BldgLoss": "539980", "sL_StrLoss": "276100", "sL_NStrLoss": "263880", "sL_ContLoss": "214150", "geom_point": "0101000020E6100000C152E1F8EFC75EC04E3A88A59A944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123978623999918, 49.159122645000124 ], [ -123.125413765999966, 49.159122237000091 ], [ -123.125396634999944, 49.160840630000038 ], [ -123.125378774999945, 49.162349121000027 ], [ -123.125325724999925, 49.162767812000034 ], [ -123.125319855999976, 49.162814222000108 ], [ -123.125233540999943, 49.16281600200012 ], [ -123.125069099, 49.162819460000023 ], [ -123.12459669499998, 49.162829370000054 ], [ -123.12458278299999, 49.162829648000098 ], [ -123.12446407199991, 49.162831281000066 ], [ -123.122671681999961, 49.162855197000042 ], [ -123.122663282999952, 49.16170633200008 ], [ -123.1226422, 49.159122958000061 ], [ -123.123978623999918, 49.159122645000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75834417", "BldgCostT": "51146667", "sL_LossRatio": "0.713056543970338", "sL_AssetLoss": "1337720", "sL_BldgLoss": "953870", "sL_StrLoss": "421660", "sL_NStrLoss": "532210", "sL_ContLoss": "383850", "geom_point": "0101000020E61000002135A3D5BFB25EC0DA871F10A6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792558847999928, 49.201521141000065 ], [ -122.792564314999979, 49.200647294000056 ], [ -122.792390362, 49.200649176000105 ], [ -122.789790405999952, 49.200677335000066 ], [ -122.789778931999962, 49.200121317 ], [ -122.789776481999979, 49.20000410100009 ], [ -122.789752501999928, 49.198842701000025 ], [ -122.791241398999944, 49.19884200400007 ], [ -122.792554292999938, 49.198825209000098 ], [ -122.794310480000021, 49.198807205000051 ], [ -122.794933476999987, 49.199186319000091 ], [ -122.795339221999882, 49.199797231000097 ], [ -122.795301062999954, 49.200670525000071 ], [ -122.79530287399993, 49.200861369000087 ], [ -122.79531743299998, 49.202409619000029 ], [ -122.795317220999934, 49.20247268300006 ], [ -122.793774347999914, 49.202491802000075 ], [ -122.792559408999978, 49.202506842000098 ], [ -122.792560316999953, 49.202453716000051 ], [ -122.792558847999928, 49.201521141000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87837000", "BldgCostT": "58425000", "sL_LossRatio": "0.693299629569229", "sL_AssetLoss": "1716920", "sL_BldgLoss": "1190340", "sL_StrLoss": "527950", "sL_NStrLoss": "662390", "sL_ContLoss": "526580", "geom_point": "0101000020E6100000EFB2FC4C7FB25EC03B44920FB0994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.786251261999951, 49.202148576000127 ], [ -122.786071741999947, 49.202026110000055 ], [ -122.785995881999966, 49.20207159700005 ], [ -122.785936880999884, 49.202016042000068 ], [ -122.785686664999901, 49.201780366000072 ], [ -122.785573776999939, 49.201550500000074 ], [ -122.78513355299998, 49.200654311000037 ], [ -122.785365535999915, 49.200892867000128 ], [ -122.785597757999966, 49.201131661000069 ], [ -122.785944302999908, 49.201488014000113 ], [ -122.786097289999987, 49.201557436 ], [ -122.786999549999948, 49.201567222000094 ], [ -122.786952909999926, 49.201527103000089 ], [ -122.78695245399993, 49.200782133000075 ], [ -122.786952360999962, 49.200642294000033 ], [ -122.786951785999975, 49.199999261000094 ], [ -122.78695169299999, 49.199918803000124 ], [ -122.786987499999952, 49.198844930000064 ], [ -122.786986983999896, 49.197919612000049 ], [ -122.788379719999924, 49.197937153000062 ], [ -122.788978987999954, 49.197944693000089 ], [ -122.789234691, 49.198016309000067 ], [ -122.789737948999942, 49.198088790000106 ], [ -122.789745407999987, 49.198474857000036 ], [ -122.789752501999928, 49.198842701000025 ], [ -122.789776481999979, 49.20000410100009 ], [ -122.789778931999962, 49.200121317 ], [ -122.789790405999952, 49.200677335000066 ], [ -122.792390362, 49.200649176000105 ], [ -122.792564314999979, 49.200647294000056 ], [ -122.792558847999928, 49.201521141000065 ], [ -122.792560316999953, 49.202453716000051 ], [ -122.792559408999978, 49.202506842000098 ], [ -122.791172487999958, 49.202520531000083 ], [ -122.789801376999918, 49.202504006000062 ], [ -122.788140563999917, 49.202500393000065 ], [ -122.787257612999923, 49.202498464000122 ], [ -122.786963146999966, 49.20247076000004 ], [ -122.786964665999932, 49.202408645000034 ], [ -122.786443972999948, 49.202239023000089 ], [ -122.786251261999951, 49.202148576000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101564750", "BldgCostT": "64415000", "sL_LossRatio": "0.686633872982849", "sL_AssetLoss": "1912970", "sL_BldgLoss": "1313510", "sL_StrLoss": "577680", "sL_NStrLoss": "735830", "sL_ContLoss": "599460", "geom_point": "0101000020E610000021C663ED4CB25EC041EA9F7547994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781487646999906, 49.1988096050001 ], [ -122.781465798999974, 49.198270306000055 ], [ -122.781451177999955, 49.197910210000067 ], [ -122.781448429999926, 49.196999202000093 ], [ -122.781977241999954, 49.196992499000068 ], [ -122.782341011999975, 49.196909586000118 ], [ -122.782554202999961, 49.196803408000051 ], [ -122.782672095999956, 49.196725806000096 ], [ -122.78303799899993, 49.196394407000106 ], [ -122.783288574, 49.196243298000134 ], [ -122.783548088999936, 49.196161786000104 ], [ -122.783815013999984, 49.196111204000012 ], [ -122.784103189999939, 49.196110809000082 ], [ -122.785958275999974, 49.196096999000083 ], [ -122.786399817999964, 49.196093706000049 ], [ -122.786985719999961, 49.196113002000068 ], [ -122.788058350999989, 49.19611866600011 ], [ -122.789319664999965, 49.196134406000056 ], [ -122.789760929999971, 49.196139889000165 ], [ -122.789716775, 49.196990083000109 ], [ -122.78971855899999, 49.197084903000146 ], [ -122.789728305000011, 49.197588093000014 ], [ -122.790002731999934, 49.197563687000113 ], [ -122.791222069999961, 49.197455214000058 ], [ -122.791218793999988, 49.197579909000069 ], [ -122.791236702999939, 49.197975998000032 ], [ -122.791239532999953, 49.198495958000066 ], [ -122.791241398999944, 49.19884200400007 ], [ -122.789752501999928, 49.198842701000025 ], [ -122.789745407999987, 49.198474857000036 ], [ -122.789737948999942, 49.198088790000106 ], [ -122.789234691, 49.198016309000067 ], [ -122.788978987999954, 49.197944693000089 ], [ -122.788379719999924, 49.197937153000062 ], [ -122.786986983999896, 49.197919612000049 ], [ -122.786987499999952, 49.198844930000064 ], [ -122.784930978999952, 49.198848588000025 ], [ -122.78439382, 49.19884955100008 ], [ -122.784341485999931, 49.198773196000104 ], [ -122.784220130999969, 49.198742548000084 ], [ -122.784101046999979, 49.19877773200006 ], [ -122.784054372999947, 49.198857428000068 ], [ -122.78298050299999, 49.198837119000068 ], [ -122.781583647999952, 49.198810680000079 ], [ -122.781487646999906, 49.1988096050001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124138250", "BldgCostT": "83195000", "sL_LossRatio": "0.715841126387856", "sL_AssetLoss": "2158546", "sL_BldgLoss": "1545176", "sL_StrLoss": "702846", "sL_NStrLoss": "842330", "sL_ContLoss": "613370", "geom_point": "0101000020E61000004BD8B79348B25EC0B06B41101C994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.794933476999987, 49.199186319000091 ], [ -122.794310480000021, 49.198807205000051 ], [ -122.792554292999938, 49.198825209000098 ], [ -122.791241398999944, 49.19884200400007 ], [ -122.791239532999953, 49.198495958000066 ], [ -122.791236702999939, 49.197975998000032 ], [ -122.791218793999988, 49.197579909000069 ], [ -122.791222069999961, 49.197455214000058 ], [ -122.790002731999934, 49.197563687000113 ], [ -122.789728305000011, 49.197588093000014 ], [ -122.78971855899999, 49.197084903000146 ], [ -122.789716775, 49.196990083000109 ], [ -122.789760929999971, 49.196139889000165 ], [ -122.789319664999965, 49.196134406000056 ], [ -122.788058350999989, 49.19611866600011 ], [ -122.786985719999961, 49.196113002000068 ], [ -122.786399817999964, 49.196093706000049 ], [ -122.785958275999974, 49.196096999000083 ], [ -122.784103189999939, 49.196110809000082 ], [ -122.783815013999984, 49.196111204000012 ], [ -122.783548088999936, 49.196161786000104 ], [ -122.783288574, 49.196243298000134 ], [ -122.78303799899993, 49.196394407000106 ], [ -122.782672095999956, 49.196725806000096 ], [ -122.782554202999961, 49.196803408000051 ], [ -122.782341011999975, 49.196909586000118 ], [ -122.781977241999954, 49.196992499000068 ], [ -122.781448429999926, 49.196999202000093 ], [ -122.77930655399993, 49.196980245000084 ], [ -122.77863840699996, 49.197110710000089 ], [ -122.778627020999963, 49.19620344300008 ], [ -122.778613677999914, 49.195139465000096 ], [ -122.778343002999961, 49.194689876000055 ], [ -122.777502299999981, 49.194151198000107 ], [ -122.777255684999943, 49.193907690000046 ], [ -122.777235728999955, 49.193879795000079 ], [ -122.777045580999982, 49.193613980000073 ], [ -122.777003941999922, 49.193284774000084 ], [ -122.777122788999961, 49.1927972840001 ], [ -122.777278783999989, 49.19245877 ], [ -122.777353798999954, 49.192295999000109 ], [ -122.77922431599994, 49.192756590000101 ], [ -122.781764883999983, 49.193382091000061 ], [ -122.782264445999914, 49.193501517000072 ], [ -122.783182137999972, 49.19372084700008 ], [ -122.78340198799998, 49.193773417000045 ], [ -122.783475559999957, 49.193791703000038 ], [ -122.786356087999977, 49.194508457000097 ], [ -122.787322897999957, 49.194748991000068 ], [ -122.788424305999968, 49.195090888000102 ], [ -122.78919439699996, 49.195364414000025 ], [ -122.789330037999932, 49.195418779000079 ], [ -122.789757968999979, 49.195587505000056 ], [ -122.789893052999957, 49.195644475000037 ], [ -122.790291797999956, 49.195804292000084 ], [ -122.791473101999927, 49.196341398000051 ], [ -122.792396560999975, 49.19683549900008 ], [ -122.792673179999909, 49.196983494000058 ], [ -122.793243521999926, 49.197365166000097 ], [ -122.794017496999942, 49.197883098000027 ], [ -122.794285684999949, 49.198105350000084 ], [ -122.795101288999945, 49.198781198000056 ], [ -122.795384019999972, 49.199042647000077 ], [ -122.795665778999933, 49.199303211000043 ], [ -122.796405055999955, 49.199986922000036 ], [ -122.796416748999931, 49.199997732000028 ], [ -122.796638130999952, 49.200202468000022 ], [ -122.797309863999914, 49.200823644000131 ], [ -122.797581728999944, 49.201074990000031 ], [ -122.797438133999918, 49.201286049000018 ], [ -122.797172502999942, 49.201676413000079 ], [ -122.797024336999954, 49.202034201000025 ], [ -122.797058332999967, 49.202456880000028 ], [ -122.796543529999937, 49.202459603000143 ], [ -122.795317220999934, 49.20247268300006 ], [ -122.79531743299998, 49.202409619000029 ], [ -122.79530287399993, 49.200861369000087 ], [ -122.795301062999954, 49.200670525000071 ], [ -122.795339221999882, 49.199797231000097 ], [ -122.794933476999987, 49.199186319000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128554917", "BldgCostT": "82766667", "sL_LossRatio": "0.675054792059287", "sL_AssetLoss": "2526826", "sL_BldgLoss": "1705746", "sL_StrLoss": "785486", "sL_NStrLoss": "920260", "sL_ContLoss": "821080", "geom_point": "0101000020E6100000149227A410B25EC0CE112A1F9F994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778670588999958, 49.20061120400009 ], [ -122.778675612999962, 49.200001984 ], [ -122.778677993999963, 49.199713093000106 ], [ -122.778675835999962, 49.199605555000112 ], [ -122.7786594899999, 49.198792696000048 ], [ -122.778655500999946, 49.19847245400004 ], [ -122.778648867999934, 49.197944445000154 ], [ -122.778648168999908, 49.197890461000064 ], [ -122.77863840699996, 49.197110710000089 ], [ -122.77930655399993, 49.196980245000084 ], [ -122.781448429999926, 49.196999202000093 ], [ -122.781451177999955, 49.197910210000067 ], [ -122.781465798999974, 49.198270306000055 ], [ -122.781487646999906, 49.1988096050001 ], [ -122.781583647999952, 49.198810680000079 ], [ -122.78298050299999, 49.198837119000068 ], [ -122.784054372999947, 49.198857428000068 ], [ -122.784101046999979, 49.19877773200006 ], [ -122.784220130999969, 49.198742548000084 ], [ -122.784341485999931, 49.198773196000104 ], [ -122.78439382, 49.19884955100008 ], [ -122.784930978999952, 49.198848588000025 ], [ -122.786987499999952, 49.198844930000064 ], [ -122.78695169299999, 49.199918803000124 ], [ -122.786951785999975, 49.199999261000094 ], [ -122.786952360999962, 49.200642294000033 ], [ -122.78695245399993, 49.200782133000075 ], [ -122.786952909999926, 49.201527103000089 ], [ -122.786999549999948, 49.201567222000094 ], [ -122.786097289999987, 49.201557436 ], [ -122.785944302999908, 49.201488014000113 ], [ -122.785597757999966, 49.201131661000069 ], [ -122.785365535999915, 49.200892867000128 ], [ -122.78513355299998, 49.200654311000037 ], [ -122.785573776999939, 49.201550500000074 ], [ -122.785686664999901, 49.201780366000072 ], [ -122.785936880999884, 49.202016042000068 ], [ -122.785995881999966, 49.20207159700005 ], [ -122.785628247999924, 49.202287695000066 ], [ -122.785381887999932, 49.202377648000059 ], [ -122.785121681999968, 49.202429353000099 ], [ -122.784270101999965, 49.202440876 ], [ -122.783527679999963, 49.202441206000046 ], [ -122.782759668999944, 49.202435938000114 ], [ -122.781570390999931, 49.202427795000055 ], [ -122.780242632999958, 49.202419713000026 ], [ -122.779904611999939, 49.202420354000061 ], [ -122.77868491000001, 49.202422706000092 ], [ -122.77867999599998, 49.201801047000075 ], [ -122.77867155499996, 49.200730638000046 ], [ -122.778670588999958, 49.20061120400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231100500", "BldgCostT": "148755000", "sL_LossRatio": "0.701536024935962", "sL_AssetLoss": "4111652", "sL_BldgLoss": "2884472", "sL_StrLoss": "1281732", "sL_NStrLoss": "1602740", "sL_ContLoss": "1227180", "geom_point": "0101000020E6100000876AE8D19AB25EC01D67C2E5E7984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777665617999943, 49.191767169000144 ], [ -122.778213739999941, 49.190875594000026 ], [ -122.780855396999954, 49.191542426000105 ], [ -122.780946795999967, 49.191565500000095 ], [ -122.781257451999949, 49.191596398000058 ], [ -122.781610480999973, 49.191597969000036 ], [ -122.781720290999942, 49.191598473000106 ], [ -122.782263613999987, 49.191600881000092 ], [ -122.78412667399999, 49.1916091370001 ], [ -122.786941134999921, 49.191600308000012 ], [ -122.789688607999906, 49.191587614000042 ], [ -122.791191497999975, 49.191578346000071 ], [ -122.793120352999964, 49.191559188000085 ], [ -122.793249603, 49.191515287000065 ], [ -122.793946595999969, 49.191514414000075 ], [ -122.795304056999925, 49.191525073000079 ], [ -122.795299460999928, 49.191992066000076 ], [ -122.79528638499994, 49.193313065000076 ], [ -122.795265718999985, 49.194501039000016 ], [ -122.795254877999966, 49.195122264000062 ], [ -122.795364468999949, 49.195363387000093 ], [ -122.79548934499995, 49.195511886000133 ], [ -122.795522979999987, 49.195551881000078 ], [ -122.79558085799999, 49.195595750000081 ], [ -122.795768122999945, 49.195737585000131 ], [ -122.79580667399992, 49.195815312000022 ], [ -122.796525680999977, 49.196033127000057 ], [ -122.79834291499999, 49.196501595000036 ], [ -122.799389817999966, 49.196771565000127 ], [ -122.799996630999914, 49.19692802 ], [ -122.80036110399999, 49.197021982000052 ], [ -122.799996762999953, 49.197549894000062 ], [ -122.799401698999986, 49.198412002000047 ], [ -122.799141720999927, 49.198788701000112 ], [ -122.799139633999985, 49.19886989300003 ], [ -122.799139303999965, 49.198883183000142 ], [ -122.799133340999916, 49.198891472000064 ], [ -122.798870760999947, 49.199255432000058 ], [ -122.798505290999955, 49.199759989000086 ], [ -122.798492969999984, 49.199778217000095 ], [ -122.798340556999904, 49.200002978000036 ], [ -122.797884392999947, 49.2006756930001 ], [ -122.797758860999934, 49.200860836000089 ], [ -122.797723223999952, 49.200913430000064 ], [ -122.797581728999944, 49.201074990000031 ], [ -122.797309863999914, 49.200823644000131 ], [ -122.796638130999952, 49.200202468000022 ], [ -122.796416748999931, 49.199997732000028 ], [ -122.796405055999955, 49.199986922000036 ], [ -122.795665778999933, 49.199303211000043 ], [ -122.795384019999972, 49.199042647000077 ], [ -122.795101288999945, 49.198781198000056 ], [ -122.794285684999949, 49.198105350000084 ], [ -122.794017496999942, 49.197883098000027 ], [ -122.793243521999926, 49.197365166000097 ], [ -122.792673179999909, 49.196983494000058 ], [ -122.792396560999975, 49.19683549900008 ], [ -122.791473101999927, 49.196341398000051 ], [ -122.790291797999956, 49.195804292000084 ], [ -122.789893052999957, 49.195644475000037 ], [ -122.789757968999979, 49.195587505000056 ], [ -122.789330037999932, 49.195418779000079 ], [ -122.78919439699996, 49.195364414000025 ], [ -122.788424305999968, 49.195090888000102 ], [ -122.787322897999957, 49.194748991000068 ], [ -122.786356087999977, 49.194508457000097 ], [ -122.783475559999957, 49.193791703000038 ], [ -122.78340198799998, 49.193773417000045 ], [ -122.783182137999972, 49.19372084700008 ], [ -122.782264445999914, 49.193501517000072 ], [ -122.781764883999983, 49.193382091000061 ], [ -122.77922431599994, 49.192756590000101 ], [ -122.777353798999954, 49.192295999000109 ], [ -122.77758277, 49.191901893000072 ], [ -122.777665617999943, 49.191767169000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247780889", "BldgCostT": "159281940", "sL_LossRatio": "0.714128541561734", "sL_AssetLoss": "3553870", "sL_BldgLoss": "2537920", "sL_StrLoss": "1075600", "sL_NStrLoss": "1462320", "sL_ContLoss": "1015950", "geom_point": "0101000020E61000001E2DC55D16B35EC023B1FF95F0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.80049159399999, 49.193202055000029 ], [ -122.800760994999962, 49.193207295000086 ], [ -122.800760954999959, 49.193216324000062 ], [ -122.800755036999959, 49.194258079000058 ], [ -122.800750311999977, 49.195086516000039 ], [ -122.80074429299998, 49.196139596000087 ], [ -122.800595593999986, 49.196663991000023 ], [ -122.800496350999978, 49.196825146000045 ], [ -122.800456607999962, 49.196889692000084 ], [ -122.80036110399999, 49.197021982000052 ], [ -122.799996630999914, 49.19692802 ], [ -122.799389817999966, 49.196771565000127 ], [ -122.79834291499999, 49.196501595000036 ], [ -122.796525680999977, 49.196033127000057 ], [ -122.79580667399992, 49.195815312000022 ], [ -122.795768122999945, 49.195737585000131 ], [ -122.79558085799999, 49.195595750000081 ], [ -122.795522979999987, 49.195551881000078 ], [ -122.79548934499995, 49.195511886000133 ], [ -122.795364468999949, 49.195363387000093 ], [ -122.795254877999966, 49.195122264000062 ], [ -122.795265718999985, 49.194501039000016 ], [ -122.79528638499994, 49.193313065000076 ], [ -122.798106535, 49.193302300000063 ], [ -122.798707637999897, 49.19326070100005 ], [ -122.799353797999984, 49.193179900000139 ], [ -122.79990266, 49.193190593000061 ], [ -122.799998291999898, 49.193192472000135 ], [ -122.80049159399999, 49.193202055000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299310319", "BldgCostT": "195883974", "sL_LossRatio": "0.721854887407412", "sL_AssetLoss": "3295510", "sL_BldgLoss": "2378880", "sL_StrLoss": "999020", "sL_NStrLoss": "1379860", "sL_ContLoss": "916630", "geom_point": "0101000020E610000080617D2C12B35EC08B0A4A6EA0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795304056999925, 49.191525073000079 ], [ -122.798241540999967, 49.191502489000143 ], [ -122.798357094999972, 49.191501624000068 ], [ -122.79898960599995, 49.191496795000084 ], [ -122.799079100999961, 49.191540525000029 ], [ -122.799129003999951, 49.19156487700004 ], [ -122.80000432199995, 49.191563243000097 ], [ -122.800809787999967, 49.191561696000072 ], [ -122.800760994999962, 49.193207295000086 ], [ -122.80049159399999, 49.193202055000029 ], [ -122.799998291999898, 49.193192472000135 ], [ -122.79990266, 49.193190593000061 ], [ -122.799353797999984, 49.193179900000139 ], [ -122.798707637999897, 49.19326070100005 ], [ -122.798106535, 49.193302300000063 ], [ -122.79528638499994, 49.193313065000076 ], [ -122.795299460999928, 49.191992066000076 ], [ -122.795304056999925, 49.191525073000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126092166", "BldgCostT": "75171666", "sL_LossRatio": "0.650559496033209", "sL_AssetLoss": "2402698", "sL_BldgLoss": "1563098", "sL_StrLoss": "702088", "sL_NStrLoss": "861010", "sL_ContLoss": "839600", "geom_point": "0101000020E6100000DE64021BE3B55EC0ED4989F23F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.837683947999963, 49.175977522000075 ], [ -122.83770399, 49.174734699000034 ], [ -122.836221596, 49.174734413000103 ], [ -122.836217084999987, 49.173853991000065 ], [ -122.83630788499994, 49.173769300000103 ], [ -122.836429705999976, 49.173711598000111 ], [ -122.837815280999948, 49.173745098000069 ], [ -122.838722877999928, 49.173747400000117 ], [ -122.838913498999943, 49.173688093000045 ], [ -122.839041288999951, 49.173563010000137 ], [ -122.839219009999979, 49.172570179000132 ], [ -122.839240407999966, 49.17245069900013 ], [ -122.83937208699993, 49.171783299000033 ], [ -122.840074982999951, 49.171611098000099 ], [ -122.840096524999922, 49.171319186000062 ], [ -122.840127689999946, 49.170896409000036 ], [ -122.840144807999977, 49.170079585000089 ], [ -122.84030051399999, 49.170078641000032 ], [ -122.841413695999975, 49.170071795000105 ], [ -122.841967179999969, 49.170069108000064 ], [ -122.842241590999933, 49.170067760000101 ], [ -122.842632628999951, 49.170065854000057 ], [ -122.843546692999965, 49.170061387000018 ], [ -122.844397218999973, 49.170057506000028 ], [ -122.845741496999963, 49.17005000900015 ], [ -122.845741153999967, 49.170300391000126 ], [ -122.845740721999945, 49.170633217000095 ], [ -122.845740260999904, 49.170948047000131 ], [ -122.845739893999948, 49.171217900000045 ], [ -122.84573957799995, 49.171451779000037 ], [ -122.845735160999979, 49.174649517000049 ], [ -122.845670194999983, 49.175724373000072 ], [ -122.845589409999889, 49.177059911000093 ], [ -122.844184021999965, 49.17705569900005 ], [ -122.843391600999922, 49.177050499000131 ], [ -122.843035619999938, 49.177046612000019 ], [ -122.842119868999958, 49.177036598 ], [ -122.840838783999928, 49.177037796000072 ], [ -122.840689608000019, 49.177037191000096 ], [ -122.839943516999952, 49.177034060000047 ], [ -122.837684477999986, 49.177018198000084 ], [ -122.837683947999963, 49.175977522000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75614333", "BldgCostT": "48518333", "sL_LossRatio": "0.70557513595838", "sL_AssetLoss": "1483910", "sL_BldgLoss": "1047010", "sL_StrLoss": "444020", "sL_NStrLoss": "602990", "sL_ContLoss": "436900", "geom_point": "0101000020E6100000BBB2D9CB95B55EC07E9243DDEA954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.840080876999963, 49.170079964000131 ], [ -122.840144807999977, 49.170079585000089 ], [ -122.840127689999946, 49.170896409000036 ], [ -122.840096524999922, 49.171319186000062 ], [ -122.840074982999951, 49.171611098000099 ], [ -122.83937208699993, 49.171783299000033 ], [ -122.839240407999966, 49.17245069900013 ], [ -122.838056595999959, 49.172451388000098 ], [ -122.835901104999948, 49.172452597000081 ], [ -122.834636609999961, 49.17245419900005 ], [ -122.834656414999955, 49.1700886960001 ], [ -122.837531608999967, 49.170093899000094 ], [ -122.838887183999987, 49.170086475000097 ], [ -122.840080876999963, 49.170079964000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157496584", "BldgCostT": "102363334", "sL_LossRatio": "0.716235853452429", "sL_AssetLoss": "2532420", "sL_BldgLoss": "1813810", "sL_StrLoss": "788010", "sL_NStrLoss": "1025800", "sL_ContLoss": "718610", "geom_point": "0101000020E610000097FEEBFD42B55EC00F75717E37964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833177656, 49.178339018000074 ], [ -122.829063490999971, 49.176764974000058 ], [ -122.82847082699999, 49.176538189000055 ], [ -122.825927213999975, 49.175562247000059 ], [ -122.825587954999918, 49.175432083000061 ], [ -122.824871149, 49.175157060000075 ], [ -122.82486905699993, 49.175156258000072 ], [ -122.824869564999958, 49.175012355000035 ], [ -122.828162366999933, 49.17501730200005 ], [ -122.828158629999962, 49.176096738000048 ], [ -122.831451504999947, 49.176101590000094 ], [ -122.831450589999974, 49.176371450000012 ], [ -122.832685422999987, 49.176373246000118 ], [ -122.83268451399999, 49.176643105000053 ], [ -122.833096127999923, 49.17664370000012 ], [ -122.833095219999933, 49.176913559000049 ], [ -122.833551523999958, 49.176914218000029 ], [ -122.833661820999907, 49.175295214000087 ], [ -122.833512266999946, 49.175294999000087 ], [ -122.833514076999933, 49.174755280000049 ], [ -122.833102479, 49.174754686000064 ], [ -122.833103385999948, 49.174484827000093 ], [ -122.832691790999945, 49.174484232000026 ], [ -122.832694518999972, 49.173674655000113 ], [ -122.833106105999903, 49.173675250000031 ], [ -122.833107014999911, 49.17340539000007 ], [ -122.83269542799998, 49.17340479500011 ], [ -122.83269590899999, 49.173262118000139 ], [ -122.83057670899997, 49.17319975900007 ], [ -122.830590336999975, 49.172999890000042 ], [ -122.830167705999955, 49.172987448000065 ], [ -122.830224050999959, 49.17216121000007 ], [ -122.829409630999962, 49.172137231000093 ], [ -122.829440686999959, 49.171681935000038 ], [ -122.827771129999945, 49.171632759000026 ], [ -122.827770001999966, 49.171649269000035 ], [ -122.823393915999972, 49.171520248000036 ], [ -122.823396394999946, 49.170118397000046 ], [ -122.824194588999916, 49.170120637000075 ], [ -122.825014196999987, 49.170122913000071 ], [ -122.82725397800003, 49.170107489000067 ], [ -122.827541184999987, 49.170105494000019 ], [ -122.830678202999977, 49.170112185000065 ], [ -122.83171273, 49.170106103000123 ], [ -122.83184986899991, 49.170105306000096 ], [ -122.832132510999983, 49.170103631000096 ], [ -122.832329985999962, 49.170102458000066 ], [ -122.832535755, 49.170101225000138 ], [ -122.834656414999955, 49.1700886960001 ], [ -122.834636609999961, 49.17245419900005 ], [ -122.835901104999948, 49.172452597000081 ], [ -122.838056595999959, 49.172451388000098 ], [ -122.839240407999966, 49.17245069900013 ], [ -122.839219009999979, 49.172570179000132 ], [ -122.839041288999951, 49.173563010000137 ], [ -122.838913498999943, 49.173688093000045 ], [ -122.838722877999928, 49.173747400000117 ], [ -122.837815280999948, 49.173745098000069 ], [ -122.836429705999976, 49.173711598000111 ], [ -122.83630788499994, 49.173769300000103 ], [ -122.836217084999987, 49.173853991000065 ], [ -122.836221596, 49.174734413000103 ], [ -122.83770399, 49.174734699000034 ], [ -122.837683947999963, 49.175977522000075 ], [ -122.837684477999986, 49.177018198000084 ], [ -122.834588486999934, 49.176986697000046 ], [ -122.83457912099999, 49.177608102000072 ], [ -122.834535106999979, 49.178858293000097 ], [ -122.833177656, 49.178339018000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196007334", "BldgCostT": "124388334", "sL_LossRatio": "0.698172982426273", "sL_AssetLoss": "2584540", "sL_BldgLoss": "1804456", "sL_StrLoss": "872246", "sL_NStrLoss": "932210", "sL_ContLoss": "780084", "geom_point": "0101000020E61000005707CC8582AE5EC004450C9EB6974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.726805217999981, 49.193712230000045 ], [ -122.726806703999912, 49.193442374000057 ], [ -122.726641737999955, 49.193441983000056 ], [ -122.726569989999973, 49.19308060400008 ], [ -122.726670100999982, 49.192298694000037 ], [ -122.726396289999926, 49.192109293000023 ], [ -122.726248087999934, 49.191721901000044 ], [ -122.72621532, 49.191556212000087 ], [ -122.725966979999939, 49.190300493000045 ], [ -122.726254609999927, 49.190165184000094 ], [ -122.726257808999947, 49.189806307000012 ], [ -122.726176703999926, 49.189698083000046 ], [ -122.725544505999935, 49.189732300000024 ], [ -122.725325416999937, 49.189561402000088 ], [ -122.724862984, 49.188795092000113 ], [ -122.72475550199999, 49.188326592000088 ], [ -122.724538099999947, 49.188182694000083 ], [ -122.724293107999983, 49.187695595000044 ], [ -122.723869305, 49.187272608000058 ], [ -122.72262769299999, 49.18616319900007 ], [ -122.720464901999918, 49.185015287000027 ], [ -122.718562186999989, 49.18433589600005 ], [ -122.716946333999928, 49.18365283600005 ], [ -122.716935837, 49.18342705000002 ], [ -122.716932821999933, 49.18338630300012 ], [ -122.716929103999959, 49.183171638000012 ], [ -122.71691326, 49.182254270000072 ], [ -122.716893886999912, 49.181129644000066 ], [ -122.716890057999976, 49.180909498000055 ], [ -122.716886479999957, 49.180702402000108 ], [ -122.716947999999888, 49.178242745000048 ], [ -122.716969838999944, 49.177367528000026 ], [ -122.716971396999924, 49.177306110000053 ], [ -122.716965437999974, 49.177081386000069 ], [ -122.725800012999926, 49.179413282 ], [ -122.728720459000016, 49.180122571000062 ], [ -122.734767542, 49.181724522000117 ], [ -122.734755559999954, 49.181859921000054 ], [ -122.73474397499993, 49.181946267000129 ], [ -122.734711735999952, 49.182163072000073 ], [ -122.734575717999959, 49.183016291000094 ], [ -122.734440943999957, 49.184045445000031 ], [ -122.734371057999908, 49.184788754000131 ], [ -122.734295946999907, 49.185514775000037 ], [ -122.734162631999979, 49.187113394000043 ], [ -122.734137589999989, 49.187876696000103 ], [ -122.734137307999944, 49.187885659000067 ], [ -122.733964989999933, 49.188754773000063 ], [ -122.733936349999937, 49.18905907400007 ], [ -122.733938565999935, 49.18928559799999 ], [ -122.733997906999946, 49.189525802000041 ], [ -122.734091888999941, 49.189738453000061 ], [ -122.734264895999956, 49.189994101000075 ], [ -122.73439909299999, 49.190166898000136 ], [ -122.734399043999957, 49.190169096000055 ], [ -122.734396544999925, 49.190344672000052 ], [ -122.734380806, 49.191455910000109 ], [ -122.734282107999888, 49.191975563000014 ], [ -122.734283917000013, 49.192920098000037 ], [ -122.733809358999935, 49.192919005000064 ], [ -122.733813425999969, 49.192160775000048 ], [ -122.731981063999982, 49.192105198000014 ], [ -122.731343264999964, 49.192103716000084 ], [ -122.73134336199999, 49.192085848000012 ], [ -122.729665824999984, 49.192034930000126 ], [ -122.729680250999962, 49.191829975000132 ], [ -122.729286040999966, 49.191829053000092 ], [ -122.729283095999975, 49.19236876500004 ], [ -122.729694836999926, 49.192369729000049 ], [ -122.729691895999935, 49.192909442000037 ], [ -122.730103642999893, 49.19291040500012 ], [ -122.730100706999934, 49.193450117000033 ], [ -122.730512457999964, 49.193451079000084 ], [ -122.73050805900003, 49.194260648000082 ], [ -122.730096303, 49.194259687000063 ], [ -122.730090428999929, 49.195339113000031 ], [ -122.729266896999903, 49.195337185000078 ], [ -122.729265423999919, 49.19560704200007 ], [ -122.728853656999945, 49.195606076000061 ], [ -122.728850705999946, 49.196145788000088 ], [ -122.728438932999893, 49.196144820000022 ], [ -122.72843745499992, 49.196414677000107 ], [ -122.72723141099999, 49.196411835000092 ], [ -122.726695340999967, 49.193711970000081 ], [ -122.726805217999981, 49.193712230000045 ] ], [ [ -122.721063070999961, 49.179427932000074 ], [ -122.721097549999953, 49.17893925300006 ], [ -122.720659962999932, 49.178925928000055 ], [ -122.72062547899999, 49.179414607000083 ], [ -122.721063070999961, 49.179427932000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107046417", "BldgCostT": "67931667", "sL_LossRatio": "0.701428727365344", "sL_AssetLoss": "1649020", "sL_BldgLoss": "1156670", "sL_StrLoss": "515470", "sL_NStrLoss": "641200", "sL_ContLoss": "492350", "geom_point": "0101000020E6100000DC95E9D964AE5EC07A884EE858964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.733679001999974, 49.170000052000013 ], [ -122.734804678999964, 49.170001795000111 ], [ -122.734770061999882, 49.171088297000011 ], [ -122.734744850999974, 49.171879755000141 ], [ -122.734727529999986, 49.172422665000099 ], [ -122.734720202999981, 49.172653232000059 ], [ -122.734672617999948, 49.174145890000077 ], [ -122.734647652999939, 49.174928521000034 ], [ -122.734631033999946, 49.175450210000086 ], [ -122.734622407999936, 49.175720116000036 ], [ -122.734616699999918, 49.175899959000056 ], [ -122.734617221999954, 49.176319900000124 ], [ -122.734608201999961, 49.176449330000018 ], [ -122.734581324999965, 49.177026999000077 ], [ -122.734507757999907, 49.178563450000141 ], [ -122.734504148999932, 49.178638987000127 ], [ -122.73451428199995, 49.178928305000056 ], [ -122.734538654999952, 49.179201542000072 ], [ -122.734541827999948, 49.179251393000065 ], [ -122.734546545999933, 49.179322511000088 ], [ -122.734561622999976, 49.179468345000096 ], [ -122.734592881999916, 49.179740771000048 ], [ -122.734629367999958, 49.180015836000081 ], [ -122.734683113999921, 49.180355561000084 ], [ -122.734742446999988, 49.180782758000134 ], [ -122.734769121999975, 49.181010848000071 ], [ -122.7347823059999, 49.181224157000059 ], [ -122.734783902999965, 49.181359511000089 ], [ -122.734783265999951, 49.181474623000035 ], [ -122.734767542, 49.181724522000117 ], [ -122.728720459000016, 49.180122571000062 ], [ -122.725800012999926, 49.179413282 ], [ -122.716965437999974, 49.177081386000069 ], [ -122.715334896999977, 49.176649766000082 ], [ -122.715189468999966, 49.176611991000122 ], [ -122.713585732999945, 49.176189054000083 ], [ -122.712619306999969, 49.175933870000094 ], [ -122.712715561999914, 49.175508994000069 ], [ -122.712812425999985, 49.174859052000066 ], [ -122.712812602, 49.174847193000076 ], [ -122.712688111999938, 49.174648783000109 ], [ -122.712706424999951, 49.173710404000097 ], [ -122.712716531999931, 49.172780734000099 ], [ -122.71272831499995, 49.171701332000119 ], [ -122.712745624999982, 49.170112698000025 ], [ -122.714073945999957, 49.170103189000038 ], [ -122.715144016999943, 49.170095519 ], [ -122.716439744999917, 49.17008622700012 ], [ -122.718222794999988, 49.17007339500006 ], [ -122.718793302, 49.170070415000055 ], [ -122.719767226999949, 49.170065319000031 ], [ -122.722374327999887, 49.170051619000041 ], [ -122.723801241999979, 49.170044109000045 ], [ -122.723926895, 49.170043454000094 ], [ -122.726435269999939, 49.170030173000079 ], [ -122.727779560999977, 49.170023035000092 ], [ -122.729220518999981, 49.17001538500012 ], [ -122.732455911999978, 49.169998092000085 ], [ -122.733679001999974, 49.170000052000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "752109068", "BldgCostT": "416626894", "sL_LossRatio": "0.593861539063546", "sL_AssetLoss": "15282202", "sL_BldgLoss": "9075512", "sL_StrLoss": "3197122", "sL_NStrLoss": "5878390", "sL_ContLoss": "6206690", "geom_point": "0101000020E6100000CFF523C99CAC5EC067D761124F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.678905939999964, 49.184735392000135 ], [ -122.678666295999989, 49.18226880400006 ], [ -122.678653003999955, 49.182093970000103 ], [ -122.678648804999938, 49.181900544000051 ], [ -122.678688684999941, 49.181811107000108 ], [ -122.678987132999978, 49.181142059000116 ], [ -122.679308603999942, 49.180421490000057 ], [ -122.678895606999944, 49.178904112000055 ], [ -122.678373828999938, 49.176986694000078 ], [ -122.678468589999966, 49.175782773000023 ], [ -122.678608554999968, 49.174456322000019 ], [ -122.678677996999966, 49.173798310000052 ], [ -122.679083593999948, 49.170134696000034 ], [ -122.678035519999952, 49.166802421000121 ], [ -122.679011153999951, 49.167059729000066 ], [ -122.679286846999915, 49.167132498000115 ], [ -122.685082788999964, 49.168662496000088 ], [ -122.690121816999962, 49.169992472000061 ], [ -122.690960713999928, 49.170213883000017 ], [ -122.691696679999964, 49.170408071000111 ], [ -122.692008271999924, 49.170490304000054 ], [ -122.692500680999956, 49.170161213000043 ], [ -122.692691491999938, 49.170032555000091 ], [ -122.693101379999945, 49.169756148000083 ], [ -122.694130757999986, 49.169030841000115 ], [ -122.69443893099999, 49.16840051600014 ], [ -122.694787515999934, 49.16712597900009 ], [ -122.694792787999944, 49.167106610000133 ], [ -122.695102218000031, 49.166458297000098 ], [ -122.695664421999965, 49.165599800000081 ], [ -122.695755910999949, 49.165460099000086 ], [ -122.6963101199999, 49.164840008000063 ], [ -122.696563209999965, 49.16460963500009 ], [ -122.697197006999929, 49.164032793000047 ], [ -122.698157828999967, 49.163346924000123 ], [ -122.69885517899999, 49.162849101000035 ], [ -122.699410707999931, 49.162846405000039 ], [ -122.69964492099993, 49.162846050000049 ], [ -122.699789206999938, 49.162845812000121 ], [ -122.699898948999973, 49.162845650000101 ], [ -122.701853225999912, 49.162842645000076 ], [ -122.701865131999938, 49.162842631000053 ], [ -122.70216864, 49.162842160000089 ], [ -122.702305821, 49.162841960000016 ], [ -122.704006598999953, 49.162839310000038 ], [ -122.705348516999962, 49.162837204000077 ], [ -122.706434565, 49.162837615000086 ], [ -122.707819895999961, 49.162838115000035 ], [ -122.709466107999958, 49.162838706000073 ], [ -122.710325587999975, 49.162838988000061 ], [ -122.71059088599999, 49.162837863000085 ], [ -122.712760150999912, 49.162828637000111 ], [ -122.712738691999931, 49.164127073000046 ], [ -122.71272726799999, 49.164819654000041 ], [ -122.71271119, 49.165790007000055 ], [ -122.712716866999969, 49.166502109000135 ], [ -122.71272632299997, 49.16768942500012 ], [ -122.712745624999982, 49.170112698000025 ], [ -122.71272831499995, 49.171701332000119 ], [ -122.712716531999931, 49.172780734000099 ], [ -122.712706424999951, 49.173710404000097 ], [ -122.712688111999938, 49.174648783000109 ], [ -122.712812602, 49.174847193000076 ], [ -122.712812425999985, 49.174859052000066 ], [ -122.712715561999914, 49.175508994000069 ], [ -122.712619306999969, 49.175933870000094 ], [ -122.713585732999945, 49.176189054000083 ], [ -122.715189468999966, 49.176611991000122 ], [ -122.715334896999977, 49.176649766000082 ], [ -122.716965437999974, 49.177081386000069 ], [ -122.716971396999924, 49.177306110000053 ], [ -122.716969838999944, 49.177367528000026 ], [ -122.716947999999888, 49.178242745000048 ], [ -122.716886479999957, 49.180702402000108 ], [ -122.716890057999976, 49.180909498000055 ], [ -122.716893886999912, 49.181129644000066 ], [ -122.71691326, 49.182254270000072 ], [ -122.716929103999959, 49.183171638000012 ], [ -122.716932821999933, 49.18338630300012 ], [ -122.716935837, 49.18342705000002 ], [ -122.716946333999928, 49.18365283600005 ], [ -122.716850691999937, 49.183612404000073 ], [ -122.715810209999958, 49.183276285000026 ], [ -122.71437994599998, 49.182859033000042 ], [ -122.71441607, 49.182348134000044 ], [ -122.713694549999971, 49.182346349000063 ], [ -122.71369766299992, 49.181806635000079 ], [ -122.71328601099998, 49.181805614000048 ], [ -122.713287568999959, 49.181535758000066 ], [ -122.712875917999952, 49.181534734000088 ], [ -122.712880749999925, 49.180699572000087 ], [ -122.712472290000022, 49.180687103000089 ], [ -122.712546016999951, 49.179644891000137 ], [ -122.712488788999934, 49.179644748000065 ], [ -122.712063574999931, 49.179643689000031 ], [ -122.712068271999954, 49.178834118000168 ], [ -122.712548882999911, 49.178835316000033 ], [ -122.71257483899997, 49.17846839700011 ], [ -122.712593552, 49.178203865000036 ], [ -122.712326799999971, 49.178195720000069 ], [ -122.710425796999957, 49.17813766200009 ], [ -122.710413884999952, 49.180179285000115 ], [ -122.710002244999913, 49.18017825200009 ], [ -122.710000712, 49.180440681000093 ], [ -122.709997514999884, 49.180987822000098 ], [ -122.709174223000034, 49.180985752000041 ], [ -122.709168316999978, 49.181993551000048 ], [ -122.708229907999936, 49.181909098000091 ], [ -122.707529692999941, 49.18174530000006 ], [ -122.703741211999954, 49.181924709000107 ], [ -122.700585989999936, 49.182041500000061 ], [ -122.699033000999933, 49.182262292000104 ], [ -122.693172112999946, 49.18272370100005 ], [ -122.69022462399991, 49.183161861 ], [ -122.69022504099999, 49.183095363000056 ], [ -122.688990049999973, 49.183092044000013 ], [ -122.688988460999923, 49.183345596000045 ], [ -122.68709732399995, 49.183626653000054 ], [ -122.686516662999978, 49.183625077000109 ], [ -122.686516107999978, 49.183713025000074 ], [ -122.686330582999972, 49.183740594000035 ], [ -122.681219613999943, 49.184778901000087 ], [ -122.67950099399998, 49.185367013000054 ], [ -122.678836004999965, 49.185650503000033 ], [ -122.678905939999964, 49.184735392000135 ] ], [ [ -122.708167837999909, 49.174506557000058 ], [ -122.708330468999947, 49.172210237000066 ], [ -122.707523083999902, 49.172185549000048 ], [ -122.707506584, 49.172418481000079 ], [ -122.706956604999974, 49.172401661000045 ], [ -122.706951864, 49.172468595000069 ], [ -122.705931647999975, 49.172437387000066 ], [ -122.705930614999986, 49.172611856000074 ], [ -122.706342192999941, 49.172612904000069 ], [ -122.706339, 49.173152618000081 ], [ -122.706750579999948, 49.173153663000072 ], [ -122.706748985999951, 49.173423520000085 ], [ -122.707160569999971, 49.173424565000076 ], [ -122.707155793999974, 49.174234135000084 ], [ -122.70756738499999, 49.174235178000032 ], [ -122.707565793999919, 49.174505035000024 ], [ -122.708167837999909, 49.174506557000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92673895", "BldgCostT": "61556524", "sL_LossRatio": "0.67350921053336", "sL_AssetLoss": "3735940", "sL_BldgLoss": "2516190", "sL_StrLoss": "981840", "sL_NStrLoss": "1534350", "sL_ContLoss": "1219750", "geom_point": "0101000020E6100000A1AC9D30FAAC5EC0008D56DE23944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69059372699995, 49.160616025000103 ], [ -122.690613729999981, 49.159680626000117 ], [ -122.690624292999928, 49.159186617000053 ], [ -122.690625870999924, 49.158645771000103 ], [ -122.690629321999936, 49.157467384000029 ], [ -122.690629544999979, 49.157389361000043 ], [ -122.69063078899994, 49.156963649000041 ], [ -122.690635092999941, 49.15549051200005 ], [ -122.692200846999953, 49.155476171000046 ], [ -122.693641008999919, 49.155462994000125 ], [ -122.696080022999936, 49.155440598000034 ], [ -122.699937494, 49.155424686000075 ], [ -122.701598884999939, 49.155427909000089 ], [ -122.701593017999969, 49.154572763 ], [ -122.701548205999956, 49.148044287000097 ], [ -122.70633026199999, 49.147981724000019 ], [ -122.71238969299999, 49.147902105000064 ], [ -122.712413308999913, 49.149941186000063 ], [ -122.709718084999949, 49.14985881000009 ], [ -122.709752544999944, 49.149371758 ], [ -122.70851896100001, 49.149334033000073 ], [ -122.70851683099994, 49.149364124000016 ], [ -122.70711706899999, 49.149321300000047 ], [ -122.707108178999974, 49.149446858000047 ], [ -122.706606502999975, 49.149431504000084 ], [ -122.706604359999972, 49.149461770000066 ], [ -122.703754830999941, 49.149374521000034 ], [ -122.703705043999946, 49.150076912000017 ], [ -122.7047568939999, 49.150109126000068 ], [ -122.704663168999957, 49.151431750000043 ], [ -122.705981031999954, 49.151472098000035 ], [ -122.705745242, 49.154800538000131 ], [ -122.70644748899997, 49.154802326000102 ], [ -122.70644723799991, 49.154844553000068 ], [ -122.708651474999954, 49.154911987000048 ], [ -122.708823039999984, 49.152488085000115 ], [ -122.7101722, 49.152529338000136 ], [ -122.710185593999981, 49.152340017000057 ], [ -122.712441893999966, 49.152408969000071 ], [ -122.71245241099993, 49.153316994000136 ], [ -122.712243222999945, 49.154374533000052 ], [ -122.71245331599999, 49.154429103000084 ], [ -122.712530794000017, 49.154477407000016 ], [ -122.712554752999935, 49.155349885000092 ], [ -122.712656994, 49.159072160000044 ], [ -122.712732837999923, 49.161833799000114 ], [ -122.712760150999912, 49.162828637000111 ], [ -122.71059088599999, 49.162837863000085 ], [ -122.710325587999975, 49.162838988000061 ], [ -122.709466107999958, 49.162838706000073 ], [ -122.707819895999961, 49.162838115000035 ], [ -122.706434565, 49.162837615000086 ], [ -122.705348516999962, 49.162837204000077 ], [ -122.704006598999953, 49.162839310000038 ], [ -122.702305821, 49.162841960000016 ], [ -122.70216864, 49.162842160000089 ], [ -122.701865131999938, 49.162842631000053 ], [ -122.701853225999912, 49.162842645000076 ], [ -122.699898948999973, 49.162845650000101 ], [ -122.699789206999938, 49.162845812000121 ], [ -122.69964492099993, 49.162846050000049 ], [ -122.699410707999931, 49.162846405000039 ], [ -122.69885517899999, 49.162849101000035 ], [ -122.697998993999946, 49.16284597900011 ], [ -122.697107420999956, 49.162842752000131 ], [ -122.69628443299996, 49.162839744000074 ], [ -122.69522827900002, 49.162835897000036 ], [ -122.694268121999954, 49.162832360000095 ], [ -122.693239412999972, 49.162828573000056 ], [ -122.691977486999946, 49.162823926000094 ], [ -122.690589298999967, 49.162818813000051 ], [ -122.690588865000024, 49.162027850000051 ], [ -122.690588479999988, 49.161327396000111 ], [ -122.690586022999966, 49.160976806000079 ], [ -122.69059372699995, 49.160616025000103 ] ], [ [ -122.708903489999926, 49.160456032000049 ], [ -122.70903237399996, 49.158635252000053 ], [ -122.708447233999962, 49.158617359000104 ], [ -122.708318327999933, 49.160438138000124 ], [ -122.708903489999926, 49.160456032000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114297918", "BldgCostT": "72676668", "sL_LossRatio": "0.678860424357684", "sL_AssetLoss": "2145360", "sL_BldgLoss": "1456400", "sL_StrLoss": "637920", "sL_NStrLoss": "818480", "sL_ContLoss": "688960", "geom_point": "0101000020E61000000284D57910AC5EC0BCA71F9229944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.685082788999964, 49.168662496000088 ], [ -122.679286846999915, 49.167132498000115 ], [ -122.679011153999951, 49.167059729000066 ], [ -122.678035519999952, 49.166802421000121 ], [ -122.67811511799998, 49.166417094000046 ], [ -122.678293831999923, 49.165551860000086 ], [ -122.678913390999966, 49.162880894000068 ], [ -122.67917339499995, 49.159221387000066 ], [ -122.679192377999925, 49.158363123000093 ], [ -122.679214201999955, 49.157375924000043 ], [ -122.679231168999962, 49.156608935000058 ], [ -122.679241003999948, 49.15616408900015 ], [ -122.679247016999966, 49.155619096000109 ], [ -122.679266406999915, 49.154720065000092 ], [ -122.679282903999962, 49.153955483000047 ], [ -122.679286179999934, 49.153802691000124 ], [ -122.679312399999915, 49.152822208000018 ], [ -122.679313880999985, 49.151937297000096 ], [ -122.678832896999921, 49.148241421000073 ], [ -122.679164122999964, 49.148243472000075 ], [ -122.679347326999917, 49.148244596000069 ], [ -122.68101555199992, 49.148232759000052 ], [ -122.687241218999944, 49.14818838800003 ], [ -122.687556568999966, 49.148186131000024 ], [ -122.688913855999942, 49.148176400000054 ], [ -122.689531021999954, 49.148171958000056 ], [ -122.690723423999913, 49.148163398000094 ], [ -122.691560577999894, 49.148154228000088 ], [ -122.693343714999955, 49.148134677000058 ], [ -122.69498921399996, 49.148116588000065 ], [ -122.696484511999955, 49.148100156000055 ], [ -122.698623447999964, 49.148076593000035 ], [ -122.701548205999956, 49.148044287000097 ], [ -122.701593017999969, 49.154572763 ], [ -122.701598884999939, 49.155427909000089 ], [ -122.699937494, 49.155424686000075 ], [ -122.696080022999936, 49.155440598000034 ], [ -122.693641008999919, 49.155462994000125 ], [ -122.692200846999953, 49.155476171000046 ], [ -122.690635092999941, 49.15549051200005 ], [ -122.69063078899994, 49.156963649000041 ], [ -122.690629544999979, 49.157389361000043 ], [ -122.690629321999936, 49.157467384000029 ], [ -122.690625870999924, 49.158645771000103 ], [ -122.690624292999928, 49.159186617000053 ], [ -122.690613729999981, 49.159680626000117 ], [ -122.69059372699995, 49.160616025000103 ], [ -122.690586022999966, 49.160976806000079 ], [ -122.690588479999988, 49.161327396000111 ], [ -122.690588865000024, 49.162027850000051 ], [ -122.690589298999967, 49.162818813000051 ], [ -122.691977486999946, 49.162823926000094 ], [ -122.693239412999972, 49.162828573000056 ], [ -122.694268121999954, 49.162832360000095 ], [ -122.69522827900002, 49.162835897000036 ], [ -122.69628443299996, 49.162839744000074 ], [ -122.697107420999956, 49.162842752000131 ], [ -122.697998993999946, 49.16284597900011 ], [ -122.69885517899999, 49.162849101000035 ], [ -122.698157828999967, 49.163346924000123 ], [ -122.697197006999929, 49.164032793000047 ], [ -122.696563209999965, 49.16460963500009 ], [ -122.6963101199999, 49.164840008000063 ], [ -122.695755910999949, 49.165460099000086 ], [ -122.695664421999965, 49.165599800000081 ], [ -122.695102218000031, 49.166458297000098 ], [ -122.694792787999944, 49.167106610000133 ], [ -122.694787515999934, 49.16712597900009 ], [ -122.69443893099999, 49.16840051600014 ], [ -122.694130757999986, 49.169030841000115 ], [ -122.693101379999945, 49.169756148000083 ], [ -122.692691491999938, 49.170032555000091 ], [ -122.692500680999956, 49.170161213000043 ], [ -122.692008271999924, 49.170490304000054 ], [ -122.691696679999964, 49.170408071000111 ], [ -122.690960713999928, 49.170213883000017 ], [ -122.690121816999962, 49.169992472000061 ], [ -122.685082788999964, 49.168662496000088 ] ], [ [ -122.68669001399995, 49.16716403800006 ], [ -122.686766937, 49.1660848020001 ], [ -122.684981321999913, 49.166079944000046 ], [ -122.684986457999969, 49.165270375000027 ], [ -122.685397972999965, 49.165271497000091 ], [ -122.685399681000021, 49.165001640000057 ], [ -122.685811193999925, 49.16500276100011 ], [ -122.685811442999977, 49.164963436000036 ], [ -122.685084667999973, 49.164941057000078 ], [ -122.685081959999934, 49.164979046000049 ], [ -122.682076720999987, 49.164886459000108 ], [ -122.682064640999926, 49.165055719000122 ], [ -122.681284287999986, 49.165031663000029 ], [ -122.681282820999968, 49.165260212000071 ], [ -122.680696057999938, 49.165258592000065 ], [ -122.680610160999962, 49.166461550000051 ], [ -122.680539781, 49.166459380000056 ], [ -122.680529208999957, 49.166607437000053 ], [ -122.68209721399991, 49.166611763000091 ], [ -122.682098941999925, 49.166341907000024 ], [ -122.68374503699998, 49.1663464270001 ], [ -122.683739879999976, 49.167155997000087 ], [ -122.68415141199992, 49.167157123000088 ], [ -122.684149695, 49.167426980000165 ], [ -122.684561228999911, 49.167428104000123 ], [ -122.684559513999915, 49.167697961000052 ], [ -122.685382584999942, 49.167700206000056 ], [ -122.685386003999938, 49.167160493000083 ], [ -122.68669001399995, 49.16716403800006 ] ], [ [ -122.687203630999974, 49.158497249000057 ], [ -122.687206313999951, 49.158459582000013 ], [ -122.68683911299992, 49.158448279000048 ], [ -122.68689105, 49.157719435000082 ], [ -122.685606649, 49.157715945000049 ], [ -122.685535654999981, 49.158711836000087 ], [ -122.685829524999988, 49.158720885000065 ], [ -122.685844731999936, 49.158507546000109 ], [ -122.687148872999941, 49.158547695000017 ], [ -122.687152579999989, 49.158495677000055 ], [ -122.687203630999974, 49.158497249000057 ] ], [ [ -122.68545950099994, 49.155556650000051 ], [ -122.685463210999927, 49.154970670000104 ], [ -122.682995074999909, 49.154894627000118 ], [ -122.682990891999935, 49.155549900000068 ], [ -122.68257945799995, 49.155548768000081 ], [ -122.682575356999962, 49.156190791000036 ], [ -122.685043557999947, 49.156266843000068 ], [ -122.685048065999965, 49.15555552800005 ], [ -122.68545950099994, 49.155556650000051 ] ], [ [ -122.69558009799999, 49.153155017000095 ], [ -122.695637617, 49.152345584000024 ], [ -122.695353800999953, 49.152344834000104 ], [ -122.695348834999933, 49.153154408000013 ], [ -122.69558009799999, 49.153155017000095 ] ], [ [ -122.681702655999956, 49.151152993000032 ], [ -122.681747144999974, 49.150529524000049 ], [ -122.682664943999953, 49.150557822000081 ], [ -122.682668607999943, 49.150506446000072 ], [ -122.683434321999954, 49.150530048000043 ], [ -122.683434586999908, 49.150488516000095 ], [ -122.68152390799996, 49.150429612000053 ], [ -122.681472792999941, 49.15114590400006 ], [ -122.681702655999956, 49.151152993000032 ] ], [ [ -122.694953989999973, 49.150454746 ], [ -122.694950675999934, 49.150994461000082 ], [ -122.695362072999941, 49.150995547000022 ], [ -122.695358763999934, 49.15153526200001 ], [ -122.695695134999966, 49.15153614900008 ], [ -122.695771819999891, 49.150456904000073 ], [ -122.694953989999973, 49.150454746 ] ], [ [ -122.695777242999924, 49.150380602000091 ], [ -122.69578416899999, 49.150283103000042 ], [ -122.69577784099998, 49.150282909000083 ], [ -122.695777242999924, 49.150380602000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "558334666", "BldgCostT": "349126666", "sL_LossRatio": "0.673096224016437", "sL_AssetLoss": "9938735", "sL_BldgLoss": "6689725", "sL_StrLoss": "2900505", "sL_NStrLoss": "3789220", "sL_ContLoss": "3249010", "geom_point": "0101000020E61000008720086F53AC5EC023623A4240924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.678825707999977, 49.147433912000082 ], [ -122.678799972999983, 49.144539282000032 ], [ -122.678845830999975, 49.140863265000071 ], [ -122.679095076999943, 49.138382422000063 ], [ -122.679189473999955, 49.137848918000067 ], [ -122.679472286999925, 49.136251330000043 ], [ -122.679560473999942, 49.136158662000092 ], [ -122.679574570999989, 49.135673365000095 ], [ -122.679591076999969, 49.134409522000063 ], [ -122.679601541999958, 49.133606032000081 ], [ -122.680686441999967, 49.13361055600005 ], [ -122.681796137999967, 49.1336151860001 ], [ -122.683758998, 49.133626161000095 ], [ -122.68516032699992, 49.133633294000091 ], [ -122.686400593999977, 49.133640443000054 ], [ -122.687354673999934, 49.133645925000067 ], [ -122.687798846999925, 49.133648280000145 ], [ -122.690779144999965, 49.133663930000047 ], [ -122.690775055999964, 49.13443427000005 ], [ -122.690770586999932, 49.13522896700006 ], [ -122.690764205999969, 49.135935264000103 ], [ -122.690758206999959, 49.136558669000046 ], [ -122.69075028899999, 49.137286562000071 ], [ -122.690740700999982, 49.140907988000059 ], [ -122.695773600999985, 49.140826825000026 ], [ -122.701519718000014, 49.140733881000067 ], [ -122.70178946599999, 49.140729509000032 ], [ -122.712431996999968, 49.140556494000116 ], [ -122.712421167999977, 49.142438496000103 ], [ -122.71241340399996, 49.143787797000051 ], [ -122.71238969299999, 49.147902105000064 ], [ -122.70633026199999, 49.147981724000019 ], [ -122.701548205999956, 49.148044287000097 ], [ -122.698623447999964, 49.148076593000035 ], [ -122.696484511999955, 49.148100156000055 ], [ -122.69498921399996, 49.148116588000065 ], [ -122.693343714999955, 49.148134677000058 ], [ -122.691560577999894, 49.148154228000088 ], [ -122.690723423999913, 49.148163398000094 ], [ -122.689531021999954, 49.148171958000056 ], [ -122.688913855999942, 49.148176400000054 ], [ -122.687556568999966, 49.148186131000024 ], [ -122.687241218999944, 49.14818838800003 ], [ -122.68101555199992, 49.148232759000052 ], [ -122.679347326999917, 49.148244596000069 ], [ -122.679164122999964, 49.148243472000075 ], [ -122.678832896999921, 49.148241421000073 ], [ -122.678825707999977, 49.147433912000082 ] ], [ [ -122.696996095999964, 49.144886450000129 ], [ -122.69706679799998, 49.143890876000157 ], [ -122.702537302999957, 49.144058670000099 ], [ -122.702536910000035, 49.144064223000022 ], [ -122.703731861999955, 49.144100838000035 ], [ -122.70370254, 49.14451456600009 ], [ -122.703791882999923, 49.144517303000036 ], [ -122.703799798, 49.144405640000087 ], [ -122.708303855999972, 49.144543528000078 ], [ -122.70833362799999, 49.14412284900007 ], [ -122.708490630999947, 49.144127652000101 ], [ -122.708575117999942, 49.142933787000061 ], [ -122.708162951999924, 49.142932747000096 ], [ -122.708164478999919, 49.142672752000081 ], [ -122.707766235999927, 49.14266056600006 ], [ -122.707751434999949, 49.14286966 ], [ -122.706929460999945, 49.142844506000088 ], [ -122.706927367999981, 49.143199479000074 ], [ -122.705693367999942, 49.143196341000085 ], [ -122.705694964999935, 49.142926483000046 ], [ -122.705283635999976, 49.14292543300008 ], [ -122.705280435999967, 49.143465150000111 ], [ -122.703479071999965, 49.143460538000078 ], [ -122.703451817999976, 49.143845062000011 ], [ -122.697981333999934, 49.143677314000051 ], [ -122.69803045699993, 49.142985387000067 ], [ -122.697796441999941, 49.14297820500007 ], [ -122.697794041999941, 49.143012002000098 ], [ -122.693985036999933, 49.142895028000034 ], [ -122.693812350999949, 49.14532434500007 ], [ -122.694574113000016, 49.145326363000066 ], [ -122.694573291999973, 49.14546004400006 ], [ -122.695409367999986, 49.145485725000164 ], [ -122.695455309999957, 49.144839139000098 ], [ -122.696996095999964, 49.144886450000129 ] ], [ [ -122.681240191999933, 49.138670687000086 ], [ -122.681255553999961, 49.138455370000074 ], [ -122.680980227999925, 49.138446875000099 ], [ -122.681004854, 49.138101754000125 ], [ -122.679400827999956, 49.138052255000048 ], [ -122.679397204999958, 49.138613817000085 ], [ -122.681240191999933, 49.138670687000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1275515383", "BldgCostT": "853254841", "sL_LossRatio": "0.739495553521243", "sL_AssetLoss": "13731090", "sL_BldgLoss": "10154080", "sL_StrLoss": "4673040", "sL_NStrLoss": "5481040", "sL_ContLoss": "3577010", "geom_point": "0101000020E61000009880D379DCAB5EC0BDA7C4D8B68F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.679946768999969, 49.119071785000109 ], [ -122.685400342, 49.119109350000066 ], [ -122.685628840000035, 49.119111093000086 ], [ -122.686053649999934, 49.119114227000068 ], [ -122.686172560000017, 49.119115112000067 ], [ -122.68769827099996, 49.11912042600013 ], [ -122.687854357, 49.119120985000094 ], [ -122.688474936999981, 49.119159027000066 ], [ -122.689352236999952, 49.119343721000071 ], [ -122.689524364999954, 49.11933100800006 ], [ -122.689724816999927, 49.119363318000119 ], [ -122.690210374999964, 49.119354825000123 ], [ -122.69025337, 49.119443578000066 ], [ -122.690386498999928, 49.119618710000061 ], [ -122.690435008999913, 49.119682553000054 ], [ -122.690863354999976, 49.12005442400006 ], [ -122.69093621899998, 49.120224268000079 ], [ -122.690935197999949, 49.120380404000109 ], [ -122.690932221, 49.1208301 ], [ -122.690929777999941, 49.121198861000103 ], [ -122.690923565000034, 49.122136169000029 ], [ -122.690924461999941, 49.12218126000004 ], [ -122.690887282999981, 49.123224578000098 ], [ -122.690872276, 49.123627836000033 ], [ -122.69086109099996, 49.124999074000115 ], [ -122.690859417999889, 49.125889365000106 ], [ -122.69084774199996, 49.126381029000108 ], [ -122.690511784999941, 49.126380685000072 ], [ -122.688659862999941, 49.12637860500007 ], [ -122.687448131999972, 49.126367396000035 ], [ -122.686818432999942, 49.126358836000044 ], [ -122.686346281999988, 49.126352401000098 ], [ -122.686177930999975, 49.126350432000066 ], [ -122.685260691999986, 49.126339676000072 ], [ -122.68390426299996, 49.126340212000038 ], [ -122.682465402999966, 49.126343960000078 ], [ -122.681129282999962, 49.126347434000124 ], [ -122.67978176299998, 49.126338272000119 ], [ -122.679821163999918, 49.124616910000029 ], [ -122.67984192699997, 49.123709626000085 ], [ -122.679919102, 49.120296170000159 ], [ -122.679946768999969, 49.119071785000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "414917291", "BldgCostT": "270315018", "sL_LossRatio": "0.700864324220574", "sL_AssetLoss": "6616730", "sL_BldgLoss": "4637430", "sL_StrLoss": "2112030", "sL_NStrLoss": "2525400", "sL_ContLoss": "1979300", "geom_point": "0101000020E61000003643AA289EAC5EC03F74628BB4904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.696045034999926, 49.126276784000027 ], [ -122.69608885699995, 49.126180795000032 ], [ -122.69623221800002, 49.126149175000073 ], [ -122.696344203999942, 49.126173336000107 ], [ -122.69639845099999, 49.126258818000068 ], [ -122.698328936999971, 49.126238794000095 ], [ -122.701516550999941, 49.126150060000057 ], [ -122.701552960999976, 49.1262160570001 ], [ -122.701639047999961, 49.126258346000057 ], [ -122.701693960999975, 49.126256445000074 ], [ -122.70170792799999, 49.127045373000044 ], [ -122.701695978999936, 49.128099577000086 ], [ -122.701691783999976, 49.128471397000048 ], [ -122.701689676999962, 49.128927123000082 ], [ -122.701685592, 49.129814853000049 ], [ -122.701671554999962, 49.13145482500007 ], [ -122.701667156999989, 49.131968925000123 ], [ -122.701663076999949, 49.132417233000112 ], [ -122.70165318699992, 49.133499565000079 ], [ -122.699797405999931, 49.133531954000063 ], [ -122.698600488999944, 49.133552788 ], [ -122.697027081, 49.133576582000096 ], [ -122.69621083499996, 49.133589366000052 ], [ -122.694228033999977, 49.133620161000096 ], [ -122.693892494999957, 49.133625385000059 ], [ -122.692870007999943, 49.133638053000062 ], [ -122.692828900999956, 49.133638574000017 ], [ -122.692161168, 49.133646840000054 ], [ -122.690779144999965, 49.133663930000047 ], [ -122.690794654999934, 49.132343879000075 ], [ -122.690806087999974, 49.131372374000094 ], [ -122.690814217999986, 49.130679747000073 ], [ -122.690821958999891, 49.130018250000035 ], [ -122.691404947999956, 49.130009159000124 ], [ -122.693167261999974, 49.129986749000047 ], [ -122.693415055999964, 49.129985138000059 ], [ -122.694155186, 49.129980383000031 ], [ -122.695373213999986, 49.129972522000116 ], [ -122.696005558999971, 49.129968424000069 ], [ -122.696196775999979, 49.129967184000066 ], [ -122.696199221999905, 49.129641446000072 ], [ -122.696201918999947, 49.129277073000068 ], [ -122.696214753, 49.128575474000094 ], [ -122.696211434999967, 49.12818418800007 ], [ -122.696208702999954, 49.127869653000054 ], [ -122.696215549999962, 49.127221720000087 ], [ -122.696215899999984, 49.12718949700011 ], [ -122.696204859999924, 49.12637992800007 ], [ -122.696094821999935, 49.126347714000069 ], [ -122.696045034999926, 49.126276784000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "662170667", "BldgCostT": "423811667", "sL_LossRatio": "0.690485672312784", "sL_AssetLoss": "9039840", "sL_BldgLoss": "6241880", "sL_StrLoss": "2812300", "sL_NStrLoss": "3429580", "sL_ContLoss": "2797960", "geom_point": "0101000020E61000007B4C47E719AD5EC038F6A95333914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.70165318699992, 49.133499565000079 ], [ -122.701663076999949, 49.132417233000112 ], [ -122.701667156999989, 49.131968925000123 ], [ -122.701671554999962, 49.13145482500007 ], [ -122.701685592, 49.129814853000049 ], [ -122.701689676999962, 49.128927123000082 ], [ -122.701691783999976, 49.128471397000048 ], [ -122.701695978999936, 49.128099577000086 ], [ -122.70170792799999, 49.127045373000044 ], [ -122.701693960999975, 49.126256445000074 ], [ -122.701639047999961, 49.126258346000057 ], [ -122.701552960999976, 49.1262160570001 ], [ -122.701516550999941, 49.126150060000057 ], [ -122.701548732999981, 49.126082549000095 ], [ -122.70163533099999, 49.126040152000023 ], [ -122.701663775999933, 49.124962330000102 ], [ -122.701661063999893, 49.124768775000106 ], [ -122.701660846999985, 49.124752289000092 ], [ -122.701527447999965, 49.124121874000046 ], [ -122.701660989999979, 49.123725856000114 ], [ -122.701751272, 49.123766489000047 ], [ -122.703441570999985, 49.124524804000082 ], [ -122.704880926999977, 49.125170894000121 ], [ -122.706143696999931, 49.125737652000041 ], [ -122.707042202999958, 49.126203450000105 ], [ -122.708567506999941, 49.126994186000054 ], [ -122.708622212999941, 49.127019374000092 ], [ -122.709735434, 49.127531964000056 ], [ -122.710286844, 49.127785873000064 ], [ -122.71094267899997, 49.128087840000013 ], [ -122.712495669999896, 49.128699439000052 ], [ -122.712623681999915, 49.12874930800016 ], [ -122.71322657199994, 49.128981314000036 ], [ -122.71765934299998, 49.130685581000101 ], [ -122.718115532999946, 49.130861682000081 ], [ -122.719504636999915, 49.131409607000066 ], [ -122.720115035999982, 49.131594926000041 ], [ -122.721965762999957, 49.131931597000111 ], [ -122.72230234599999, 49.132027314000034 ], [ -122.722777999999892, 49.132162590000057 ], [ -122.722828157999942, 49.132176853000018 ], [ -122.723541071999946, 49.132463497000138 ], [ -122.723641011999973, 49.132521647000011 ], [ -122.723646243999937, 49.132524689000086 ], [ -122.724190004999969, 49.132841021000054 ], [ -122.724842084999977, 49.133284288000041 ], [ -122.725165171999933, 49.133503892000107 ], [ -122.723650587999941, 49.13330129700006 ], [ -122.718117154999945, 49.133305632000059 ], [ -122.712509498999921, 49.133311897000041 ], [ -122.712495400999956, 49.135121009000031 ], [ -122.712470885999934, 49.1369612760001 ], [ -122.712462538999915, 49.137733933000092 ], [ -122.712461663999989, 49.137814891000048 ], [ -122.712441407, 49.139685955000118 ], [ -122.712437935999958, 49.140009778000014 ], [ -122.712434695999917, 49.140306648000092 ], [ -122.712431996999968, 49.140556494000116 ], [ -122.70178946599999, 49.140729509000032 ], [ -122.701519718000014, 49.140733881000067 ], [ -122.695773600999985, 49.140826825000026 ], [ -122.690740700999982, 49.140907988000059 ], [ -122.69075028899999, 49.137286562000071 ], [ -122.690758206999959, 49.136558669000046 ], [ -122.690764205999969, 49.135935264000103 ], [ -122.690770586999932, 49.13522896700006 ], [ -122.690775055999964, 49.13443427000005 ], [ -122.690779144999965, 49.133663930000047 ], [ -122.692161168, 49.133646840000054 ], [ -122.692828900999956, 49.133638574000017 ], [ -122.692870007999943, 49.133638053000062 ], [ -122.693892494999957, 49.133625385000059 ], [ -122.694228033999977, 49.133620161000096 ], [ -122.69621083499996, 49.133589366000052 ], [ -122.697027081, 49.133576582000096 ], [ -122.698600488999944, 49.133552788 ], [ -122.699797405999931, 49.133531954000063 ], [ -122.70165318699992, 49.133499565000079 ] ], [ [ -122.706468224999981, 49.130981096000063 ], [ -122.706476842999948, 49.130859363000063 ], [ -122.70633993, 49.130855170000146 ], [ -122.706457634999936, 49.129192484000093 ], [ -122.706012920999925, 49.129178865000114 ], [ -122.706027881999944, 49.128967543000051 ], [ -122.705366494999978, 49.128947286000034 ], [ -122.705363617999978, 49.1294325080001 ], [ -122.705023934999971, 49.129431641000046 ], [ -122.704934204999972, 49.13069861000011 ], [ -122.705011189999937, 49.130700969 ], [ -122.704994547999959, 49.130935963000134 ], [ -122.706468224999981, 49.130981096000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.739376148802502", "sL_AssetLoss": "72902", "sL_BldgLoss": "53902", "sL_StrLoss": "21192", "sL_NStrLoss": "32710", "sL_ContLoss": "19000", "geom_point": "0101000020E6100000CCDDDF8760AD5EC04FFFBC1D1F9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.71642924899993, 49.20805953500011 ], [ -122.716429647999973, 49.207989776000076 ], [ -122.716030207999964, 49.20798879500007 ], [ -122.714783417999982, 49.207767763000049 ], [ -122.71478527, 49.207446009000108 ], [ -122.713549670999925, 49.20744295100009 ], [ -122.713551229999894, 49.207173096000048 ], [ -122.712415433999922, 49.207170275000095 ], [ -122.71190483299992, 49.206986777000054 ], [ -122.711905341999937, 49.206899144000019 ], [ -122.711659280999967, 49.206898530000032 ], [ -122.711555380999954, 49.206861190000083 ], [ -122.711493919999924, 49.206822386000034 ], [ -122.711493978999926, 49.206812479000071 ], [ -122.711477428999927, 49.2068119730001 ], [ -122.710982517000019, 49.206499496000085 ], [ -122.70993981499997, 49.206038007000089 ], [ -122.709312306999934, 49.205623597000077 ], [ -122.705666701999988, 49.204327486000068 ], [ -122.705489701999966, 49.204219307000081 ], [ -122.70532690099999, 49.203894613000088 ], [ -122.704503108999944, 49.203883186000091 ], [ -122.700545603999942, 49.202155612000062 ], [ -122.700409902999922, 49.202103758000071 ], [ -122.70044100299999, 49.201665967000089 ], [ -122.700534288999975, 49.200352723000066 ], [ -122.706011452, 49.200520326000046 ], [ -122.705847227999968, 49.202835984000075 ], [ -122.706163268999958, 49.202836789000116 ], [ -122.706161669999958, 49.203106643000105 ], [ -122.706656273999911, 49.203107901000116 ], [ -122.706676902999973, 49.202816979000055 ], [ -122.71215437699999, 49.20298426900009 ], [ -122.712153938999933, 49.202990460000109 ], [ -122.712638860999974, 49.203005256000019 ], [ -122.712622052999933, 49.203242726000035 ], [ -122.713585942999941, 49.203272131000041 ], [ -122.713519965999978, 49.204204567000026 ], [ -122.713980215999953, 49.204205707000085 ], [ -122.713978658999949, 49.204475562000042 ], [ -122.715214184999965, 49.204478615000077 ], [ -122.715204885999981, 49.206097749000051 ], [ -122.716028594999898, 49.206099777000077 ], [ -122.716022413999923, 49.207179198000112 ], [ -122.717258004999934, 49.207182230000065 ], [ -122.71725646699997, 49.207452085000064 ], [ -122.7184920669999, 49.207455103000065 ], [ -122.718489851999948, 49.207845144000053 ], [ -122.718487470999946, 49.208264669000087 ], [ -122.717793210999929, 49.208262976000086 ], [ -122.716587001, 49.208087499000044 ], [ -122.71642924899993, 49.20805953500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9200250", "BldgCostT": "6345000", "sL_LossRatio": "0.747360810801765", "sL_AssetLoss": "149383", "sL_BldgLoss": "111643", "sL_StrLoss": "46183", "sL_NStrLoss": "65460", "sL_ContLoss": "37740", "geom_point": "0101000020E610000042809910EFAB5EC01A3D0A19C0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.686068714999962, 49.197418218000074 ], [ -122.686070960999956, 49.197386733000052 ], [ -122.68601791299993, 49.197386589000118 ], [ -122.686019620999957, 49.197116734000105 ], [ -122.685607841000021, 49.197115614000062 ], [ -122.685608611999925, 49.196994113000088 ], [ -122.68560955199996, 49.196845759000084 ], [ -122.684836675999946, 49.196843652000062 ], [ -122.683383874999976, 49.196839680000018 ], [ -122.68231704599998, 49.196569606000061 ], [ -122.682317064999935, 49.196566890000021 ], [ -122.682306201, 49.196566860000118 ], [ -122.681494818999965, 49.196361444000097 ], [ -122.681496723999956, 49.196064689000067 ], [ -122.681498712999954, 49.195755056000031 ], [ -122.683145783999962, 49.195759586000094 ], [ -122.683147509999941, 49.19548973200007 ], [ -122.683971040999921, 49.195491987000089 ], [ -122.683976196999964, 49.194682423000032 ], [ -122.683564438999952, 49.194681295000038 ], [ -122.683566160999945, 49.194411439000099 ], [ -122.682742645999923, 49.194409181000047 ], [ -122.682747823999989, 49.193599615000032 ], [ -122.683159573999944, 49.193600745000019 ], [ -122.683161297999916, 49.193330890000098 ], [ -122.683573044999946, 49.193332019000138 ], [ -122.683576486999982, 49.19279230800003 ], [ -122.684399973999973, 49.192794560000067 ], [ -122.684405123999966, 49.191984995000062 ], [ -122.683993386999987, 49.19198386900014 ], [ -122.683995105999927, 49.191714014000041 ], [ -122.683171637999934, 49.191711757000121 ], [ -122.68317400399998, 49.191341173000062 ], [ -122.683176807999956, 49.190902192000102 ], [ -122.684621498999945, 49.190906147000106 ], [ -122.684753214999887, 49.189060294000072 ], [ -122.682365599999954, 49.188986776000043 ], [ -122.682365445, 49.189010943000092 ], [ -122.681542021999945, 49.189008674000036 ], [ -122.681538557999929, 49.189548386000098 ], [ -122.681126839999962, 49.189547249000036 ], [ -122.681115335999905, 49.191337437000115 ], [ -122.681114700999956, 49.191436236000079 ], [ -122.681526431999913, 49.191437373000085 ], [ -122.681519503999965, 49.192516795000067 ], [ -122.681107762999901, 49.192515658000076 ], [ -122.681106026999899, 49.192785513000047 ], [ -122.680202368999957, 49.192783014000028 ], [ -122.680190130999932, 49.192954283000091 ], [ -122.679330819999976, 49.192927796000077 ], [ -122.679206784999977, 49.194663003000144 ], [ -122.678329891999951, 49.194635966000099 ], [ -122.678211794999953, 49.194632324000096 ], [ -122.678211574000017, 49.1946665050001 ], [ -122.677206730999927, 49.194663701000145 ], [ -122.676929499999986, 49.194526095000107 ], [ -122.676053897999964, 49.194281207000088 ], [ -122.674736488999926, 49.194151596000047 ], [ -122.673771330999926, 49.193922513000047 ], [ -122.673854186999975, 49.192765263000069 ], [ -122.673442039999955, 49.192764099000065 ], [ -122.673536989999917, 49.192700306000077 ], [ -122.675353421999887, 49.191985401000132 ], [ -122.675781193999981, 49.191717606000026 ], [ -122.676059794999986, 49.19104249800003 ], [ -122.676557695999918, 49.190522688000051 ], [ -122.677535695999936, 49.189994311000056 ], [ -122.67919991299999, 49.189406093000102 ], [ -122.680494719, 49.188545906000101 ], [ -122.681072908999923, 49.188278096000047 ], [ -122.68537878299999, 49.18681410000007 ], [ -122.689323908999981, 49.185983858000029 ], [ -122.68935475799999, 49.186644683000075 ], [ -122.689321611999986, 49.188415681000031 ], [ -122.688987048999977, 49.188405396000078 ], [ -122.688985432999985, 49.188428084000037 ], [ -122.688544976999978, 49.188414543000071 ], [ -122.688542819999938, 49.188757905000095 ], [ -122.688954530999979, 49.188759015000052 ], [ -122.688953641999959, 49.188900685000114 ], [ -122.689312327999943, 49.188911711000117 ], [ -122.68926474199999, 49.191453925000054 ], [ -122.692643215999937, 49.191466008000077 ], [ -122.692638191999905, 49.192277058000066 ], [ -122.693049930999933, 49.19227815400005 ], [ -122.693044920999938, 49.193087720000072 ], [ -122.692633175999944, 49.193086625000063 ], [ -122.692631502999944, 49.193356481000116 ], [ -122.692219754999911, 49.193355383000032 ], [ -122.692218080999965, 49.193625239000056 ], [ -122.69057107899998, 49.193620839000033 ], [ -122.690574444000021, 49.19308112700007 ], [ -122.69016269899997, 49.193080025000043 ], [ -122.690166068999972, 49.192540313000023 ], [ -122.690005983, 49.192539884000077 ], [ -122.689923268999948, 49.193700799000041 ], [ -122.689911073999909, 49.193871946000087 ], [ -122.688065015999925, 49.193815202000103 ], [ -122.68768762599997, 49.193803598000038 ], [ -122.687682030999952, 49.194692502000109 ], [ -122.688042466999903, 49.194693477000072 ], [ -122.688093788999964, 49.194693615000048 ], [ -122.688092092999938, 49.194963471000058 ], [ -122.688915615999946, 49.194965692000039 ], [ -122.688910539999966, 49.195775258000069 ], [ -122.688498769999939, 49.195774148000069 ], [ -122.68849793899993, 49.195906693000104 ], [ -122.69165820399995, 49.196003796000049 ], [ -122.69165801799997, 49.196006409000105 ], [ -122.694756194999968, 49.196101514000063 ], [ -122.694666456000022, 49.197362740000095 ], [ -122.698738732999942, 49.197487611000057 ], [ -122.698502036000022, 49.200817972000095 ], [ -122.698483126999989, 49.201084017000021 ], [ -122.697943625999969, 49.201067483000088 ], [ -122.696645088999958, 49.200409498000099 ], [ -122.69402787699994, 49.199412595000034 ], [ -122.687258597999971, 49.197630912000086 ], [ -122.686068714999962, 49.197418218000074 ] ], [ [ -122.686895450999941, 49.188837393000036 ], [ -122.686897156999962, 49.188567208000038 ], [ -122.686250544999965, 49.188547316000069 ], [ -122.686231312999922, 49.188816961000086 ], [ -122.686895450999941, 49.188837393000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.732311003497444", "sL_AssetLoss": "37170", "sL_BldgLoss": "27220", "sL_StrLoss": "10130", "sL_NStrLoss": "17090", "sL_ContLoss": "9950", "geom_point": "0101000020E610000008C0AA404EAE5EC01B68DBBC339A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.725490810999972, 49.208011667000108 ], [ -122.725497454999982, 49.206811561000102 ], [ -122.722439852999983, 49.206718599000155 ], [ -122.722463375999951, 49.206385277 ], [ -122.721793054999978, 49.20638366400005 ], [ -122.721794601999989, 49.206107839000019 ], [ -122.721065841999959, 49.206085664000085 ], [ -122.721319727999941, 49.20248923200009 ], [ -122.722278386, 49.202518401000127 ], [ -122.722320919, 49.201915654000125 ], [ -122.724159650999965, 49.201971577000045 ], [ -122.724599683999955, 49.201984955000064 ], [ -122.725337622, 49.204744805000075 ], [ -122.726135191999944, 49.20683420800006 ], [ -122.726805221999911, 49.208014783000088 ], [ -122.726072242, 49.208013046000133 ], [ -122.725490810999972, 49.208011667000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0.712759270898806", "sL_AssetLoss": "15910", "sL_BldgLoss": "11340", "sL_StrLoss": "2520", "sL_NStrLoss": "8820", "sL_ContLoss": "4570", "geom_point": "0101000020E6100000C095AABC36AE5EC0C5984FB145994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.723443478999926, 49.195632712000076 ], [ -122.723746341999956, 49.195641923000068 ], [ -122.723900784999984, 49.196663903000037 ], [ -122.723921684999965, 49.197914297000068 ], [ -122.724123749999976, 49.199257590000066 ], [ -122.723715976, 49.199245189000059 ], [ -122.720126133999884, 49.199135958000092 ], [ -122.7202160099999, 49.197863064000146 ], [ -122.720380056999943, 49.195539489000012 ], [ -122.723443478999926, 49.195632712000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5193417", "BldgCostT": "3581667", "sL_LossRatio": "0.743909348441926", "sL_AssetLoss": "88250", "sL_BldgLoss": "65650", "sL_StrLoss": "27210", "sL_NStrLoss": "38440", "sL_ContLoss": "22600", "geom_point": "0101000020E6100000930864E1B1AD5EC07CFBE72724984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.720321198999969, 49.194976774000054 ], [ -122.720325197999955, 49.194920132000036 ], [ -122.719041456999989, 49.194881039000023 ], [ -122.719119248999959, 49.193779525000124 ], [ -122.719106726999939, 49.193779144000111 ], [ -122.719235056999949, 49.191961942000042 ], [ -122.717908097999967, 49.191921517000026 ], [ -122.717922468999959, 49.19171808800008 ], [ -122.717125382999939, 49.191693798000081 ], [ -122.717312708999941, 49.189042589000096 ], [ -122.714159042999981, 49.188946426000051 ], [ -122.714166024999912, 49.188847694000081 ], [ -122.713684832999931, 49.188833013000057 ], [ -122.713743242999939, 49.188007179000074 ], [ -122.711567109999976, 49.187940760000046 ], [ -122.711576641999955, 49.187806064000107 ], [ -122.710757088999983, 49.187781038000082 ], [ -122.710803867999985, 49.18712024500006 ], [ -122.708091299999978, 49.187037370000127 ], [ -122.708074739, 49.18727112500008 ], [ -122.707297360000013, 49.187247362000029 ], [ -122.702599128999964, 49.187103623000077 ], [ -122.702599388999928, 49.18709997800007 ], [ -122.702597564999934, 49.187099922000129 ], [ -122.702582020999969, 49.187318958000063 ], [ -122.702085784999923, 49.187303763000088 ], [ -122.702084499999941, 49.187321870000062 ], [ -122.700940084999971, 49.187286821000043 ], [ -122.70091796899996, 49.187598298000083 ], [ -122.700881547999984, 49.187597182000061 ], [ -122.700933855999935, 49.185086218000038 ], [ -122.701094217999952, 49.184741508000151 ], [ -122.701213917999979, 49.184733305000101 ], [ -122.702656110999925, 49.184737596000048 ], [ -122.705976101999951, 49.184592297000037 ], [ -122.709652783999928, 49.184808799000031 ], [ -122.711642389999923, 49.185075105000095 ], [ -122.714219003000011, 49.185557898000042 ], [ -122.71477992299999, 49.18572170200013 ], [ -122.716984811999964, 49.186661702000059 ], [ -122.71847530399998, 49.187420790000097 ], [ -122.719815188999959, 49.188225398000121 ], [ -122.720895094999932, 49.189072802000076 ], [ -122.722014897999898, 49.190317602000036 ], [ -122.722735886999914, 49.191273301000109 ], [ -122.723454896999954, 49.192758700000063 ], [ -122.723575606999972, 49.193227286000102 ], [ -122.72373949199995, 49.19338820400003 ], [ -122.723647888999935, 49.194990401000034 ], [ -122.72366118799999, 49.19507841000005 ], [ -122.72340987799997, 49.195070766000065 ], [ -122.720321198999969, 49.194976774000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257939751", "BldgCostT": "167375001", "sL_LossRatio": "0.703127196381846", "sL_AssetLoss": "3877115", "sL_BldgLoss": "2726105", "sL_StrLoss": "1258855", "sL_NStrLoss": "1467250", "sL_ContLoss": "1151010", "geom_point": "0101000020E6100000DC9C9C04E3B05EC09B5ABE4760944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76130062699994, 49.156394009000053 ], [ -122.760999616999982, 49.156326291000042 ], [ -122.760694798999978, 49.156333405000105 ], [ -122.760033017999959, 49.156524306000016 ], [ -122.75979839199999, 49.156546996000024 ], [ -122.759544213, 49.156516806000056 ], [ -122.759313205999973, 49.156446794 ], [ -122.759449527999919, 49.156045407000057 ], [ -122.759392918999964, 49.155480510000061 ], [ -122.759451914999943, 49.155479589000031 ], [ -122.760994697999962, 49.155471965000068 ], [ -122.761652861999977, 49.155468978000115 ], [ -122.764258726999955, 49.155456470000054 ], [ -122.764590355999971, 49.155454853000059 ], [ -122.765012968999969, 49.155453123000044 ], [ -122.765618781999947, 49.155450595000062 ], [ -122.767790530999903, 49.15546722400012 ], [ -122.767802471999943, 49.157366149000097 ], [ -122.767752541999968, 49.159583087000037 ], [ -122.767743690999936, 49.160538902000084 ], [ -122.767728483, 49.161250257000042 ], [ -122.767725868999918, 49.161820566000088 ], [ -122.767712061999987, 49.162807726000104 ], [ -122.764808411999923, 49.162822286000058 ], [ -122.764209742999967, 49.162821922000084 ], [ -122.764127432999956, 49.162821875000091 ], [ -122.763194717999966, 49.162821290000061 ], [ -122.760890359999919, 49.162819753000079 ], [ -122.76018388599995, 49.162819303000063 ], [ -122.760292809999953, 49.161513300000131 ], [ -122.759977123999988, 49.16142000800005 ], [ -122.759683786999972, 49.161260696000085 ], [ -122.759449505999925, 49.1610221070001 ], [ -122.759360305999962, 49.160728292000115 ], [ -122.759343557, 49.160293648000071 ], [ -122.759335237999935, 49.160077906000041 ], [ -122.759324666999973, 49.159803642000028 ], [ -122.759333520999974, 49.15918488500008 ], [ -122.759344969999972, 49.158278764000052 ], [ -122.759346252999947, 49.158176059000027 ], [ -122.759801720000027, 49.158176534000106 ], [ -122.760522517999974, 49.158177203000058 ], [ -122.760741793999983, 49.158177503000061 ], [ -122.761031600999928, 49.158131291000053 ], [ -122.76128908699998, 49.158035399000028 ], [ -122.761383595999945, 49.157957999000104 ], [ -122.761478101999941, 49.157881587000055 ], [ -122.761559098999911, 49.157643408000048 ], [ -122.761567661999919, 49.157078025000111 ], [ -122.761568729999965, 49.157006059000047 ], [ -122.761570086999924, 49.156916118000026 ], [ -122.76157238499999, 49.156762596000092 ], [ -122.761514791999929, 49.156566210000094 ], [ -122.76130062699994, 49.156394009000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112521145", "BldgCostT": "76451524", "sL_LossRatio": "0.711642733568377", "sL_AssetLoss": "1982610", "sL_BldgLoss": "1410910", "sL_StrLoss": "653720", "sL_NStrLoss": "757190", "sL_ContLoss": "571700", "geom_point": "0101000020E6100000E7EDA57C8AB05EC0B9E81A1C5B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756637148999943, 49.156486907000073 ], [ -122.756657760999985, 49.155483727000075 ], [ -122.757939686999975, 49.155481814000041 ], [ -122.759392918999964, 49.155480510000061 ], [ -122.759449527999919, 49.156045407000057 ], [ -122.759313205999973, 49.156446794 ], [ -122.759544213, 49.156516806000056 ], [ -122.75979839199999, 49.156546996000024 ], [ -122.760033017999959, 49.156524306000016 ], [ -122.760694798999978, 49.156333405000105 ], [ -122.760999616999982, 49.156326291000042 ], [ -122.76130062699994, 49.156394009000053 ], [ -122.761514791999929, 49.156566210000094 ], [ -122.76157238499999, 49.156762596000092 ], [ -122.761570086999924, 49.156916118000026 ], [ -122.761568729999965, 49.157006059000047 ], [ -122.761567661999919, 49.157078025000111 ], [ -122.761559098999911, 49.157643408000048 ], [ -122.761478101999941, 49.157881587000055 ], [ -122.761383595999945, 49.157957999000104 ], [ -122.76128908699998, 49.158035399000028 ], [ -122.761031600999928, 49.158131291000053 ], [ -122.760741793999983, 49.158177503000061 ], [ -122.760522517999974, 49.158177203000058 ], [ -122.759801720000027, 49.158176534000106 ], [ -122.759346252999947, 49.158176059000027 ], [ -122.759344969999972, 49.158278764000052 ], [ -122.759333520999974, 49.15918488500008 ], [ -122.759324666999973, 49.159803642000028 ], [ -122.759335237999935, 49.160077906000041 ], [ -122.759343557, 49.160293648000071 ], [ -122.759360305999962, 49.160728292000115 ], [ -122.759449505999925, 49.1610221070001 ], [ -122.759683786999972, 49.161260696000085 ], [ -122.759977123999988, 49.16142000800005 ], [ -122.760292809999953, 49.161513300000131 ], [ -122.76018388599995, 49.162819303000063 ], [ -122.75792704, 49.162831510000046 ], [ -122.756632801999956, 49.162838509000061 ], [ -122.756632058999912, 49.162230956000101 ], [ -122.756631905999939, 49.162114012000046 ], [ -122.75663171399998, 49.161943102000087 ], [ -122.756630610999977, 49.161042615000042 ], [ -122.756628812999978, 49.16059385200009 ], [ -122.756627328999983, 49.160225003000072 ], [ -122.756626318999949, 49.15996386000009 ], [ -122.756621488999926, 49.15916806500006 ], [ -122.756616671999964, 49.158490309000108 ], [ -122.756618325999966, 49.158147120000145 ], [ -122.75661836099999, 49.158143415999987 ], [ -122.756620712999947, 49.157647003000086 ], [ -122.756618008999936, 49.157350493000088 ], [ -122.75662902599997, 49.156937210000066 ], [ -122.756637148999943, 49.156486907000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "852874478", "BldgCostT": "573069857", "sL_LossRatio": "0.836294799470057", "sL_AssetLoss": "3155813", "sL_BldgLoss": "2639190", "sL_StrLoss": "1642046", "sL_NStrLoss": "997144", "sL_ContLoss": "516623", "geom_point": "0101000020E61000001EBBE1CA9BB35EC0E97B70EBAC904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801007022999926, 49.129571349000038 ], [ -122.800995113999946, 49.126361399000082 ], [ -122.801130713999953, 49.126361828000064 ], [ -122.803267504999937, 49.126367695000106 ], [ -122.806582294999927, 49.126376098 ], [ -122.806590140999958, 49.127135487000047 ], [ -122.806592686999963, 49.127382886000078 ], [ -122.809354423999963, 49.127407212000115 ], [ -122.812181906999967, 49.127429692000121 ], [ -122.812174253999956, 49.127819314000178 ], [ -122.81216647799998, 49.128214996000032 ], [ -122.81216571499999, 49.129186396000051 ], [ -122.812166633999979, 49.129375606000053 ], [ -122.812170238999954, 49.130099322000099 ], [ -122.81216671899989, 49.130670934000108 ], [ -122.812164073999938, 49.131098222000055 ], [ -122.812156264999913, 49.132353087000055 ], [ -122.812152398999984, 49.132979579000143 ], [ -122.812146701999922, 49.133742620000085 ], [ -122.808057484999949, 49.133729504 ], [ -122.80666189599998, 49.133720520000047 ], [ -122.80543645600001, 49.1337075490001 ], [ -122.801174145999966, 49.13366200500014 ], [ -122.801027575999967, 49.133661245000077 ], [ -122.801022485999937, 49.132773533000034 ], [ -122.801012192999934, 49.130975542000044 ], [ -122.801007022999926, 49.129571349000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385364000", "BldgCostT": "235820000", "sL_LossRatio": "0.761781597055924", "sL_AssetLoss": "2106739", "sL_BldgLoss": "1604875", "sL_StrLoss": "933067", "sL_NStrLoss": "671808", "sL_ContLoss": "501864", "geom_point": "0101000020E6100000BE41CCA94DB45EC048FAC6009E904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812146701999922, 49.133742620000085 ], [ -122.812152398999984, 49.132979579000143 ], [ -122.812156264999913, 49.132353087000055 ], [ -122.812164073999938, 49.131098222000055 ], [ -122.81216671899989, 49.130670934000108 ], [ -122.812170238999954, 49.130099322000099 ], [ -122.812166633999979, 49.129375606000053 ], [ -122.81216571499999, 49.129186396000051 ], [ -122.81216647799998, 49.128214996000032 ], [ -122.812174253999956, 49.127819314000178 ], [ -122.812181906999967, 49.127429692000121 ], [ -122.809354423999963, 49.127407212000115 ], [ -122.806592686999963, 49.127382886000078 ], [ -122.806590140999958, 49.127135487000047 ], [ -122.806582294999927, 49.126376098 ], [ -122.809355989000011, 49.1263845040001 ], [ -122.811382383999927, 49.126399608000085 ], [ -122.812198619, 49.126405686000084 ], [ -122.812809207, 49.126394253000072 ], [ -122.814954491999941, 49.126353996000027 ], [ -122.815379803999946, 49.126343999 ], [ -122.81685137699999, 49.126313742000036 ], [ -122.81776700399999, 49.126294890000089 ], [ -122.819520177999948, 49.126259290000093 ], [ -122.821288810999988, 49.126239488000088 ], [ -122.823309216, 49.126204601000055 ], [ -122.823320194999951, 49.127187100000121 ], [ -122.823312872999963, 49.127695987000074 ], [ -122.823343637999969, 49.129492764000126 ], [ -122.823360812999979, 49.130907064000034 ], [ -122.823337413999965, 49.133697925000078 ], [ -122.8233363, 49.133774474000042 ], [ -122.822934769999918, 49.133775235000066 ], [ -122.822787232999971, 49.133728517000073 ], [ -122.819484182999972, 49.133746400000078 ], [ -122.819264781999905, 49.133747571000121 ], [ -122.819230268999888, 49.13374774600009 ], [ -122.819154544999932, 49.133746554 ], [ -122.818907925999937, 49.133742488000017 ], [ -122.817858885999939, 49.133725198000029 ], [ -122.816742389999931, 49.133728609000073 ], [ -122.814274704999946, 49.133736158000048 ], [ -122.812146701999922, 49.133742620000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196803833", "BldgCostT": "126053333", "sL_LossRatio": "0.728913612474536", "sL_AssetLoss": "1871717", "sL_BldgLoss": "1364320", "sL_StrLoss": "680470", "sL_NStrLoss": "683850", "sL_ContLoss": "507397", "geom_point": "0101000020E610000001B3A5BBA9B35EC05F4050EAA28F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809231095999962, 49.12440921000006 ], [ -122.809327937999953, 49.123555932000087 ], [ -122.808295872, 49.123551141000114 ], [ -122.807705206999941, 49.123548405000037 ], [ -122.806632918999966, 49.123543602000069 ], [ -122.805082618999947, 49.123536306000055 ], [ -122.804380094999928, 49.123533496000064 ], [ -122.802131413999973, 49.123522482000077 ], [ -122.801115245999981, 49.123518380000121 ], [ -122.800957714999981, 49.123518209000068 ], [ -122.800942964999962, 49.122577015000019 ], [ -122.800952905999949, 49.120370149000088 ], [ -122.80095793299995, 49.119255221000053 ], [ -122.800958624999978, 49.11910100500009 ], [ -122.801065385999962, 49.119102392000073 ], [ -122.812220963999934, 49.119180427000103 ], [ -122.812218762000029, 49.119355971000047 ], [ -122.812217618999966, 49.119444820000098 ], [ -122.812214796999982, 49.119670445000033 ], [ -122.812211519999963, 49.120398240000092 ], [ -122.812209594999956, 49.120821016000065 ], [ -122.81220803399999, 49.121171846000024 ], [ -122.812204508999955, 49.121960794000124 ], [ -122.812204000999898, 49.122807807000072 ], [ -122.81220387399992, 49.123569206000099 ], [ -122.812202251000016, 49.124992895000062 ], [ -122.812201221999942, 49.125647956000094 ], [ -122.812200497999939, 49.125858437 ], [ -122.812198619, 49.126405686000084 ], [ -122.811382383999927, 49.126399608000085 ], [ -122.809355989000011, 49.1263845040001 ], [ -122.806582294999927, 49.126376098 ], [ -122.806592419999959, 49.12589419600004 ], [ -122.806600448999959, 49.125513335000058 ], [ -122.806599530999975, 49.125435438000089 ], [ -122.806592065999922, 49.124769834000084 ], [ -122.806588735999966, 49.124473081000062 ], [ -122.806587890999964, 49.124398299000099 ], [ -122.80769462, 49.124401392000081 ], [ -122.809231095999962, 49.12440921000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "376415833", "BldgCostT": "235618333", "sL_LossRatio": "0.744273318803314", "sL_AssetLoss": "2210137", "sL_BldgLoss": "1644946", "sL_StrLoss": "860608", "sL_NStrLoss": "784338", "sL_ContLoss": "565191", "geom_point": "0101000020E6100000BF2728A855B45EC0C12DABF2B58F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817727804999905, 49.119175025000082 ], [ -122.823274476999984, 49.119167834000052 ], [ -122.823288951999984, 49.121083066000068 ], [ -122.823318291999968, 49.122740157000095 ], [ -122.823307410999945, 49.124004108000079 ], [ -122.823302111999951, 49.125185196000096 ], [ -122.823309216, 49.126204601000055 ], [ -122.821288810999988, 49.126239488000088 ], [ -122.819520177999948, 49.126259290000093 ], [ -122.81776700399999, 49.126294890000089 ], [ -122.81685137699999, 49.126313742000036 ], [ -122.815379803999946, 49.126343999 ], [ -122.814954491999941, 49.126353996000027 ], [ -122.812809207, 49.126394253000072 ], [ -122.812198619, 49.126405686000084 ], [ -122.812200497999939, 49.125858437 ], [ -122.812201221999942, 49.125647956000094 ], [ -122.812202251000016, 49.124992895000062 ], [ -122.81220387399992, 49.123569206000099 ], [ -122.812204000999898, 49.122807807000072 ], [ -122.812204508999955, 49.121960794000124 ], [ -122.81220803399999, 49.121171846000024 ], [ -122.812209594999956, 49.120821016000065 ], [ -122.812211519999963, 49.120398240000092 ], [ -122.812214796999982, 49.119670445000033 ], [ -122.812217618999966, 49.119444820000098 ], [ -122.812218762000029, 49.119355971000047 ], [ -122.812220963999934, 49.119180427000103 ], [ -122.817727804999905, 49.119175025000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145677811", "BldgCostT": "95808190", "sL_LossRatio": "0.840111192464725", "sL_AssetLoss": "805810", "sL_BldgLoss": "676970", "sL_StrLoss": "438640", "sL_NStrLoss": "238330", "sL_ContLoss": "128840", "geom_point": "0101000020E6100000801344BC79B35EC0EAA01A48FA8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808295872, 49.123551141000114 ], [ -122.809327937999953, 49.123555932000087 ], [ -122.809231095999962, 49.12440921000006 ], [ -122.80769462, 49.124401392000081 ], [ -122.806587890999964, 49.124398299000099 ], [ -122.806588735999966, 49.124473081000062 ], [ -122.806592065999922, 49.124769834000084 ], [ -122.806599530999975, 49.125435438000089 ], [ -122.806600448999959, 49.125513335000058 ], [ -122.806592419999959, 49.12589419600004 ], [ -122.806582294999927, 49.126376098 ], [ -122.803267504999937, 49.126367695000106 ], [ -122.801130713999953, 49.126361828000064 ], [ -122.800995113999946, 49.126361399000082 ], [ -122.800957714999981, 49.123518209000068 ], [ -122.801115245999981, 49.123518380000121 ], [ -122.802131413999973, 49.123522482000077 ], [ -122.804380094999928, 49.123533496000064 ], [ -122.805082618999947, 49.123536306000055 ], [ -122.806632918999966, 49.123543602000069 ], [ -122.807705206999941, 49.123548405000037 ], [ -122.808295872, 49.123551141000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "619619136", "BldgCostT": "422667079", "sL_LossRatio": "0.748116552280344", "sL_AssetLoss": "5666470", "sL_BldgLoss": "4239180", "sL_StrLoss": "2089110", "sL_NStrLoss": "2150070", "sL_ContLoss": "1427290", "geom_point": "0101000020E61000009DBFA51006B15EC06AFC789EAE8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.764998417999962, 49.118021601000052 ], [ -122.765019888, 49.116530012000034 ], [ -122.762880652999954, 49.116518309000092 ], [ -122.762620256999966, 49.116516878000013 ], [ -122.762531980999967, 49.116516399000083 ], [ -122.762291439999942, 49.116515264000029 ], [ -122.76129148699998, 49.116510591000136 ], [ -122.760729497999989, 49.116501533000104 ], [ -122.760332297999952, 49.11649509799999 ], [ -122.759038014999959, 49.116474187000037 ], [ -122.759021926999935, 49.115662699000055 ], [ -122.759036274999971, 49.115046147000072 ], [ -122.759038396999955, 49.114954910000058 ], [ -122.759059403999956, 49.114829895000142 ], [ -122.759082685999928, 49.114691304000054 ], [ -122.759224018999987, 49.114433308000116 ], [ -122.759508941999954, 49.114130234000115 ], [ -122.759990203999976, 49.113618369000108 ], [ -122.759408644999951, 49.113392428000104 ], [ -122.759396737999936, 49.11338780500013 ], [ -122.75912968499992, 49.113387865000043 ], [ -122.758503621000031, 49.113389734000094 ], [ -122.757329343999956, 49.113376863000035 ], [ -122.756662782999925, 49.11337025700012 ], [ -122.756556495999959, 49.113362560000049 ], [ -122.75659663099999, 49.111764224000069 ], [ -122.756649981999928, 49.111686539000075 ], [ -122.756651635, 49.111545100000065 ], [ -122.756945849999966, 49.111548565000071 ], [ -122.75813057799995, 49.111548240000097 ], [ -122.758850990999974, 49.111548341000031 ], [ -122.758930042999964, 49.111573262000036 ], [ -122.758987000999923, 49.11157395500009 ], [ -122.759080576999921, 49.111575096000053 ], [ -122.759771912999909, 49.111579715000083 ], [ -122.760367488999975, 49.111582348000169 ], [ -122.760917163999963, 49.111585596000076 ], [ -122.762527834999986, 49.111595132000097 ], [ -122.764971518999971, 49.111610108000072 ], [ -122.765245415999942, 49.111610244000119 ], [ -122.765380181999944, 49.111582773000059 ], [ -122.767247973999986, 49.111585215000119 ], [ -122.767760297999985, 49.111585853000079 ], [ -122.76963076599999, 49.111611446000033 ], [ -122.771339449999957, 49.111619497000113 ], [ -122.772431098999917, 49.111618046000025 ], [ -122.772660797999947, 49.111624037000112 ], [ -122.772927083999889, 49.111595980000097 ], [ -122.774321409999942, 49.111682872000088 ], [ -122.774192278999962, 49.113546136000146 ], [ -122.77164419799999, 49.113469660000135 ], [ -122.771642081999943, 49.113930560000028 ], [ -122.77246426899994, 49.113932184000078 ], [ -122.772458097999959, 49.115281489000068 ], [ -122.771334477999915, 49.115279270000066 ], [ -122.771266511999954, 49.116258999000067 ], [ -122.770553654999972, 49.116237592000047 ], [ -122.770510040999952, 49.116866125000023 ], [ -122.771470494, 49.116894966000096 ], [ -122.771424856999957, 49.117552832000051 ], [ -122.772521097999956, 49.11758574100007 ], [ -122.772430405999955, 49.118893458000059 ], [ -122.770491173999957, 49.118949975000071 ], [ -122.769625666999971, 49.118950475000126 ], [ -122.767782991, 49.118951526000032 ], [ -122.765825229999962, 49.118935923000016 ], [ -122.765554298999973, 49.118990838000038 ], [ -122.764984338, 49.118986358000079 ], [ -122.762387694999973, 49.11896584600008 ], [ -122.762391253999951, 49.118874917000035 ], [ -122.762422998999938, 49.117985558000093 ], [ -122.763550583999972, 49.118001486 ], [ -122.764998417999962, 49.118021601000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.700681154719429", "sL_AssetLoss": "154150", "sL_BldgLoss": "108010", "sL_StrLoss": "45500", "sL_NStrLoss": "62510", "sL_ContLoss": "46140", "geom_point": "0101000020E6100000944889FA70B15EC0752DCED6C98D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771358216999928, 49.107038551000102 ], [ -122.773198228999931, 49.107093794000022 ], [ -122.773094559999919, 49.108589332000086 ], [ -122.77289350099997, 49.108579392000095 ], [ -122.772332913999918, 49.108488189000134 ], [ -122.772099619999921, 49.108271705000028 ], [ -122.771856615, 49.107461403000066 ], [ -122.771515609999966, 49.107119589 ], [ -122.771358216999928, 49.107038551000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "293591145", "BldgCostT": "192046524", "sL_LossRatio": "0.708082585942231", "sL_AssetLoss": "4088444", "sL_BldgLoss": "2894956", "sL_StrLoss": "1362596", "sL_NStrLoss": "1532360", "sL_ContLoss": "1193488", "geom_point": "0101000020E61000002FC9D83BE9B05EC02BEB71BEDC8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756651635, 49.111545100000065 ], [ -122.756651448, 49.109444513000057 ], [ -122.756648693999935, 49.108549190000048 ], [ -122.756647422999947, 49.107241983000037 ], [ -122.756651283999986, 49.106440078000098 ], [ -122.756654978999947, 49.105423668000114 ], [ -122.756655897999977, 49.104899250000145 ], [ -122.756657724999968, 49.104342377000052 ], [ -122.76773893699999, 49.104436914000075 ], [ -122.769213666999931, 49.104449408000058 ], [ -122.76920949299992, 49.105198300000033 ], [ -122.76886521199998, 49.105540096000063 ], [ -122.767890007999938, 49.106185285000059 ], [ -122.767695896999953, 49.106545608000069 ], [ -122.767737607999933, 49.106743610000088 ], [ -122.767914488999949, 49.106896001000138 ], [ -122.76851590299998, 49.107014192000065 ], [ -122.769449406999968, 49.106819109000092 ], [ -122.770024794999983, 49.106783404000055 ], [ -122.770279747999908, 49.106858058000086 ], [ -122.770269494000033, 49.107005849000053 ], [ -122.77080821899996, 49.107022032000053 ], [ -122.771146279999925, 49.107163700000051 ], [ -122.771528201999942, 49.107461394000069 ], [ -122.771895112999957, 49.108271691000084 ], [ -122.77222169, 49.108623513000097 ], [ -122.773029906999966, 49.108760294000049 ], [ -122.773082526999971, 49.108762909000056 ], [ -122.773007834999987, 49.109840330000097 ], [ -122.773003288999973, 49.109905909000112 ], [ -122.774441559999957, 49.109949069000102 ], [ -122.774321409999942, 49.111682872000088 ], [ -122.772927083999889, 49.111595980000097 ], [ -122.772660797999947, 49.111624037000112 ], [ -122.772431098999917, 49.111618046000025 ], [ -122.771339449999957, 49.111619497000113 ], [ -122.76963076599999, 49.111611446000033 ], [ -122.767760297999985, 49.111585853000079 ], [ -122.767247973999986, 49.111585215000119 ], [ -122.765380181999944, 49.111582773000059 ], [ -122.765245415999942, 49.111610244000119 ], [ -122.764971518999971, 49.111610108000072 ], [ -122.762527834999986, 49.111595132000097 ], [ -122.760917163999963, 49.111585596000076 ], [ -122.760367488999975, 49.111582348000169 ], [ -122.759771912999909, 49.111579715000083 ], [ -122.759080576999921, 49.111575096000053 ], [ -122.758987000999923, 49.11157395500009 ], [ -122.758930042999964, 49.111573262000036 ], [ -122.758850990999974, 49.111548341000031 ], [ -122.75813057799995, 49.111548240000097 ], [ -122.756945849999966, 49.111548565000071 ], [ -122.756651635, 49.111545100000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54199312", "BldgCostT": "36023191", "sL_LossRatio": "0.667388034097807", "sL_AssetLoss": "2273460", "sL_BldgLoss": "1517280", "sL_StrLoss": "603280", "sL_NStrLoss": "914000", "sL_ContLoss": "756180", "geom_point": "0101000020E6100000450FD7C588B15EC02F34BECC838D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.768146601999945, 49.106743599000083 ], [ -122.768107592999939, 49.106447292000013 ], [ -122.768218382000015, 49.106267891000137 ], [ -122.768726491999971, 49.105846313000065 ], [ -122.769399413999963, 49.105522998000026 ], [ -122.769523306999957, 49.105362099000047 ], [ -122.769541612999902, 49.104452182000088 ], [ -122.77906811299999, 49.104532271000046 ], [ -122.77917268499999, 49.106615196000043 ], [ -122.776437194999943, 49.10653320800003 ], [ -122.776434278999929, 49.106575302000053 ], [ -122.775713169999932, 49.106553677000115 ], [ -122.775710050999976, 49.106598719000019 ], [ -122.77517249099995, 49.106582596000095 ], [ -122.775169529999957, 49.106625333000054 ], [ -122.773786784999984, 49.106583845000081 ], [ -122.77378477399999, 49.106612866000091 ], [ -122.772666384000019, 49.106579297000032 ], [ -122.772661529999979, 49.106649293000046 ], [ -122.770299154, 49.106578348000014 ], [ -122.770293000999956, 49.106667036000061 ], [ -122.770161186999943, 49.106631105000062 ], [ -122.769285796999952, 49.10660259300009 ], [ -122.768653719999961, 49.106780602000107 ], [ -122.768146601999945, 49.106743599000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128330834", "BldgCostT": "86353334", "sL_LossRatio": "0.73803649299977", "sL_AssetLoss": "1394240", "sL_BldgLoss": "1029000", "sL_StrLoss": "519400", "sL_NStrLoss": "509600", "sL_ContLoss": "365240", "geom_point": "0101000020E610000007A64F82A9B05EC0588A89720E8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.762880652999954, 49.116518309000092 ], [ -122.765019888, 49.116530012000034 ], [ -122.764998417999962, 49.118021601000052 ], [ -122.763550583999972, 49.118001486 ], [ -122.762422998999938, 49.117985558000093 ], [ -122.762391253999951, 49.118874917000035 ], [ -122.762387694999973, 49.11896584600008 ], [ -122.760098131999925, 49.11896189000003 ], [ -122.756611868999983, 49.118955798000094 ], [ -122.756499525999971, 49.118956007000094 ], [ -122.756504486000011, 49.118865151000094 ], [ -122.756535207999974, 49.116695180000107 ], [ -122.756538369999973, 49.116472742000049 ], [ -122.756643776999979, 49.116473221000014 ], [ -122.757931404999908, 49.116472403000017 ], [ -122.759038014999959, 49.116474187000037 ], [ -122.760332297999952, 49.11649509799999 ], [ -122.760729497999989, 49.116501533000104 ], [ -122.76129148699998, 49.116510591000136 ], [ -122.762291439999942, 49.116515264000029 ], [ -122.762531980999967, 49.116516399000083 ], [ -122.762620256999966, 49.116516878000013 ], [ -122.762880652999954, 49.116518309000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61052417", "BldgCostT": "41476667", "sL_LossRatio": "0.732597222222222", "sL_AssetLoss": "720000", "sL_BldgLoss": "527470", "sL_StrLoss": "251330", "sL_NStrLoss": "276140", "sL_ContLoss": "192530", "geom_point": "0101000020E61000009FE3929981B05EC081973A44B38E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756538386, 49.115587831000035 ], [ -122.756556495999959, 49.113362560000049 ], [ -122.756662782999925, 49.11337025700012 ], [ -122.757329343999956, 49.113376863000035 ], [ -122.758503621000031, 49.113389734000094 ], [ -122.75912968499992, 49.113387865000043 ], [ -122.759396737999936, 49.11338780500013 ], [ -122.759408644999951, 49.113392428000104 ], [ -122.759990203999976, 49.113618369000108 ], [ -122.759508941999954, 49.114130234000115 ], [ -122.759224018999987, 49.114433308000116 ], [ -122.759082685999928, 49.114691304000054 ], [ -122.759059403999956, 49.114829895000142 ], [ -122.759038396999955, 49.114954910000058 ], [ -122.759036274999971, 49.115046147000072 ], [ -122.759021926999935, 49.115662699000055 ], [ -122.759038014999959, 49.116474187000037 ], [ -122.757931404999908, 49.116472403000017 ], [ -122.756643776999979, 49.116473221000014 ], [ -122.756538369999973, 49.116472742000049 ], [ -122.756538386, 49.115587831000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392870833", "BldgCostT": "267238333", "sL_LossRatio": "0.858861984839124", "sL_AssetLoss": "1453478", "sL_BldgLoss": "1248337", "sL_StrLoss": "855550", "sL_NStrLoss": "392787", "sL_ContLoss": "205141", "geom_point": "0101000020E61000009E75D7235EA15EC044FABCFB46994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.514152714999952, 49.212055293000063 ], [ -122.51338678799999, 49.211656506000118 ], [ -122.512452910999954, 49.211598090000102 ], [ -122.51190998099996, 49.21150041100001 ], [ -122.511685399999976, 49.211460013000078 ], [ -122.510833908999956, 49.211447201000034 ], [ -122.51068875299994, 49.211469247000117 ], [ -122.509446500999971, 49.211657997000032 ], [ -122.508498902, 49.211716411000126 ], [ -122.508100702999968, 49.211692128000053 ], [ -122.507867297999965, 49.211677896000019 ], [ -122.50683847799999, 49.211457096000046 ], [ -122.505814277999946, 49.211004199000101 ], [ -122.505527691999987, 49.210759308000043 ], [ -122.505448103999939, 49.210596908000063 ], [ -122.505535809999969, 49.209994508000122 ], [ -122.505343899999957, 49.209886190000134 ], [ -122.505014923999951, 49.209893403000109 ], [ -122.503967798999966, 49.21033909600002 ], [ -122.503074899999916, 49.210236600000023 ], [ -122.501798993999927, 49.210185303000038 ], [ -122.501128199999968, 49.209948884000056 ], [ -122.500993140999938, 49.20981143800001 ], [ -122.503573889, 49.209895214000028 ], [ -122.503588706999935, 49.209698400000093 ], [ -122.500792882000013, 49.209607639000119 ], [ -122.500462084999953, 49.209270989000039 ], [ -122.500304709999924, 49.208722693000034 ], [ -122.499921287999925, 49.208531794000095 ], [ -122.498990183, 49.208266903000016 ], [ -122.498950991999919, 49.208069008000102 ], [ -122.499176790999968, 49.207547705000117 ], [ -122.499036114999939, 49.2072006040001 ], [ -122.498961511999966, 49.207016489000075 ], [ -122.498500754999952, 49.206841458000099 ], [ -122.498072882999935, 49.206678893000102 ], [ -122.49732111, 49.206271603000047 ], [ -122.496513791999931, 49.206123504000054 ], [ -122.496104306999911, 49.20595110300011 ], [ -122.495671815, 49.205643764000115 ], [ -122.498570594999961, 49.205716588000122 ], [ -122.499469575999953, 49.205715205000068 ], [ -122.500938305999952, 49.205712921000071 ], [ -122.501456173999969, 49.205712098000085 ], [ -122.501480822999966, 49.204634419000143 ], [ -122.501518195999935, 49.202997406000065 ], [ -122.501524298999939, 49.202730591000034 ], [ -122.50151805599991, 49.202714142000083 ], [ -122.503950633999949, 49.202793111000041 ], [ -122.50393040099999, 49.203061887000075 ], [ -122.507674121, 49.2031833120001 ], [ -122.507661730999985, 49.203348085000101 ], [ -122.509015983999944, 49.20339197700013 ], [ -122.50901471399996, 49.203408868000103 ], [ -122.513316034999932, 49.203548163000043 ], [ -122.513315142999971, 49.203560042000063 ], [ -122.514671389999961, 49.203603927000081 ], [ -122.514617291999983, 49.204324763000088 ], [ -122.515858091999988, 49.20436489800008 ], [ -122.515833312999959, 49.204695195000099 ], [ -122.516038296999938, 49.204701824000026 ], [ -122.516061540999914, 49.204391973000092 ], [ -122.517021481, 49.204423011000102 ], [ -122.517130576999989, 49.202968294000108 ], [ -122.519765075999914, 49.203053432000068 ], [ -122.519774972999954, 49.202921358 ], [ -122.523796385999958, 49.203051192000011 ], [ -122.523805407999944, 49.202930656000049 ], [ -122.526904444999914, 49.203030607000066 ], [ -122.52691178299996, 49.202932479000012 ], [ -122.526453166999914, 49.202917693000046 ], [ -122.526527769999944, 49.201920188000081 ], [ -122.526315935999918, 49.201913358000134 ], [ -122.526278321999897, 49.202416278000044 ], [ -122.520801599999942, 49.202239544000065 ], [ -122.521070958999971, 49.198643577000084 ], [ -122.521190122999926, 49.198647426000015 ], [ -122.521266107999963, 49.197632879000018 ], [ -122.521365947999954, 49.197636103000036 ], [ -122.521494593999975, 49.195918279000082 ], [ -122.526970572999943, 49.196094979000087 ], [ -122.526950808999942, 49.196359297000114 ], [ -122.527616190999964, 49.196380748000117 ], [ -122.527633333, 49.196151429000039 ], [ -122.531195765999939, 49.196266211000051 ], [ -122.531202886999921, 49.195512666000113 ], [ -122.53137288899994, 49.195513357000046 ], [ -122.53137581899999, 49.195474117000067 ], [ -122.531511014000017, 49.195478471000058 ], [ -122.531548656999931, 49.19497434800013 ], [ -122.531207987999949, 49.194972967000119 ], [ -122.531218188999972, 49.193893564000035 ], [ -122.53162923, 49.193895233000042 ], [ -122.531630035999953, 49.193884429000057 ], [ -122.531632480999946, 49.193625385000139 ], [ -122.532455967999965, 49.193628721000053 ], [ -122.532461052999977, 49.19308902100007 ], [ -122.532872789999928, 49.193090686000062 ], [ -122.532882188999963, 49.192092715000065 ], [ -122.528168307999948, 49.191940868000046 ], [ -122.528224607, 49.191187543000069 ], [ -122.525135623999958, 49.191087926000087 ], [ -122.525135039999967, 49.191095738000037 ], [ -122.519659657999952, 49.190918944000096 ], [ -122.519731157999928, 49.189964531000044 ], [ -122.51728268899997, 49.18988538300006 ], [ -122.517276658999918, 49.189965831000038 ], [ -122.516862472999946, 49.189952436000091 ], [ -122.516721041, 49.191838739000048 ], [ -122.515791547999967, 49.191808674000093 ], [ -122.515683977999942, 49.193242859000158 ], [ -122.512585035999948, 49.193142565000066 ], [ -122.51262921799993, 49.191289721000047 ], [ -122.508912906999967, 49.191241540000078 ], [ -122.508981435999956, 49.190329612000056 ], [ -122.508252688999974, 49.190305988000048 ], [ -122.508209841999957, 49.190876047000096 ], [ -122.507568279999973, 49.190855246000119 ], [ -122.507540578999965, 49.191223716000124 ], [ -122.502057244999889, 49.191152323000054 ], [ -122.502087472999932, 49.19075085900004 ], [ -122.501472904999915, 49.190730897000051 ], [ -122.501666292, 49.187525913000073 ], [ -122.501801006999983, 49.187559098000072 ], [ -122.502452230999964, 49.187560282000035 ], [ -122.504153696999978, 49.187563395000041 ], [ -122.508545131999981, 49.187571254000041 ], [ -122.509272570999926, 49.187572557000124 ], [ -122.512446792999981, 49.1875781090001 ], [ -122.51267750699995, 49.187538691000078 ], [ -122.512691508999978, 49.185935741000122 ], [ -122.512696791999957, 49.185333068000041 ], [ -122.512708772999957, 49.183959290000075 ], [ -122.51409825799999, 49.183981098000096 ], [ -122.51416686099999, 49.183982155000052 ], [ -122.514592289999953, 49.183988834000075 ], [ -122.515566612999919, 49.184004106000053 ], [ -122.515623581999989, 49.184005 ], [ -122.516661666999966, 49.183996721000035 ], [ -122.517087219999922, 49.183993337000096 ], [ -122.517554165999982, 49.183989629000088 ], [ -122.518144317999926, 49.183984905000074 ], [ -122.518665910999914, 49.183980734000023 ], [ -122.520160575999967, 49.18396880300007 ], [ -122.520409844999918, 49.183969852000068 ], [ -122.521054762999967, 49.183972561000125 ], [ -122.522083918999954, 49.183976887000057 ], [ -122.529233147999946, 49.184006653000033 ], [ -122.530605337999972, 49.18401231100006 ], [ -122.531318870999925, 49.184015238 ], [ -122.532142197999946, 49.184018625000093 ], [ -122.53270483199999, 49.18402093 ], [ -122.534753484999911, 49.184029303000059 ], [ -122.536738452999899, 49.184027448000087 ], [ -122.537397139999953, 49.184026835000076 ], [ -122.538372912999961, 49.184025887000097 ], [ -122.53849829699999, 49.184068933000063 ], [ -122.538743489999916, 49.184153135000024 ], [ -122.539049303999974, 49.184338703000073 ], [ -122.539934042999931, 49.185941014000086 ], [ -122.539961060999943, 49.185989925000101 ], [ -122.540467362999891, 49.18690674500008 ], [ -122.540645109999986, 49.187228656000109 ], [ -122.540903225999955, 49.187502796000096 ], [ -122.541040938999942, 49.187809107000106 ], [ -122.541076270999909, 49.188071590000064 ], [ -122.540981644999974, 49.188568708000055 ], [ -122.540895176999967, 49.188706239000034 ], [ -122.540445772999988, 49.189420816000037 ], [ -122.540393361999989, 49.189504149000051 ], [ -122.53949368799999, 49.191303717000061 ], [ -122.539276327999971, 49.19169775500005 ], [ -122.538832737999982, 49.192310696000085 ], [ -122.537292087999958, 49.194055412000104 ], [ -122.53706190399997, 49.194345392000116 ], [ -122.536607374999946, 49.194736297000119 ], [ -122.536462447999952, 49.194825444000038 ], [ -122.536173025999986, 49.195003504000042 ], [ -122.535401552999986, 49.195264349000055 ], [ -122.535079012, 49.195412587000135 ], [ -122.534833451999958, 49.195613754000135 ], [ -122.534685477999957, 49.195794625000076 ], [ -122.534584435999946, 49.196045522000134 ], [ -122.534584775999946, 49.196500613000069 ], [ -122.534577665999947, 49.19738712200008 ], [ -122.534567145, 49.197791907000074 ], [ -122.534558719999964, 49.198115594000072 ], [ -122.534546886000015, 49.198572079000051 ], [ -122.534527188999959, 49.199033523000082 ], [ -122.534504684999916, 49.199560207000047 ], [ -122.534512942999953, 49.200004261000046 ], [ -122.534539970999958, 49.201461447 ], [ -122.534553113999962, 49.20216789800002 ], [ -122.534580225999946, 49.203092398000102 ], [ -122.534468996999948, 49.203295194000106 ], [ -122.534682339999947, 49.204033838000079 ], [ -122.534765003999965, 49.20522728100012 ], [ -122.534808677999976, 49.20585806800009 ], [ -122.534815608999978, 49.205958014000018 ], [ -122.534784421999987, 49.206692419000042 ], [ -122.534757896999977, 49.206689210000079 ], [ -122.534344191999978, 49.206666039000041 ], [ -122.533889875999975, 49.206640599000089 ], [ -122.533784044999919, 49.206625264000103 ], [ -122.53473205399996, 49.207636413000067 ], [ -122.533366291999968, 49.207160294000033 ], [ -122.532513992999952, 49.207220089000032 ], [ -122.531236682, 49.207719176000062 ], [ -122.531012092999944, 49.20780691300012 ], [ -122.529962689999977, 49.208477713000022 ], [ -122.529522949999929, 49.208690455000067 ], [ -122.529525584999973, 49.208655201000091 ], [ -122.525304177999914, 49.208519148000079 ], [ -122.525336193999962, 49.208091273000015 ], [ -122.52289738599994, 49.208012597000042 ], [ -122.522305875999919, 49.20799350600003 ], [ -122.522294359999961, 49.208147289000081 ], [ -122.522082829999988, 49.210971655000051 ], [ -122.521615590999943, 49.210956573000026 ], [ -122.521601319999945, 49.211147066000109 ], [ -122.51689929299999, 49.21099517500005 ], [ -122.516858810999949, 49.211534831000073 ], [ -122.516504584999936, 49.2115440050001 ], [ -122.51614083199992, 49.211601468000012 ], [ -122.515954700999941, 49.21163088600008 ], [ -122.515310109000012, 49.211610999000094 ], [ -122.515207106999981, 49.212194909000026 ], [ -122.514906000999957, 49.212229102000023 ], [ -122.514329547999964, 49.212096116000083 ], [ -122.51418209799999, 49.212062084000102 ], [ -122.514152714999952, 49.212055293000063 ] ], [ [ -122.51504839099999, 49.21205235500004 ], [ -122.515051673999949, 49.212008616000062 ], [ -122.514850288999966, 49.212002102000056 ], [ -122.514847006999958, 49.212045842000052 ], [ -122.51504839099999, 49.21205235500004 ] ], [ [ -122.534949190999924, 49.19121004000008 ], [ -122.534951720999914, 49.190940189000088 ], [ -122.534537096999955, 49.190938520000017 ], [ -122.534353062999941, 49.190937778000091 ], [ -122.534346009999965, 49.191032316000104 ], [ -122.533726281999947, 49.191012373000035 ], [ -122.533671645999959, 49.19174461000005 ], [ -122.533708951999984, 49.191744761000031 ], [ -122.533711486999948, 49.191474911000036 ], [ -122.534534935999886, 49.191478233000026 ], [ -122.534537467999883, 49.191208382000099 ], [ -122.534561582999984, 49.191208479000053 ], [ -122.534949190999924, 49.19121004000008 ] ], [ [ -122.53577516299994, 49.190943503 ], [ -122.535782347999955, 49.190175486000065 ], [ -122.535370742999987, 49.190162245000053 ], [ -122.535363441999976, 49.19094184699999 ], [ -122.53577516299994, 49.190943503 ] ], [ [ -122.538270600999923, 49.188254898000018 ], [ -122.538272101999951, 49.188093614000103 ], [ -122.538017808999911, 49.188085440000059 ], [ -122.538065568999954, 49.187444495000115 ], [ -122.537866440999935, 49.187443699000013 ], [ -122.537868955999954, 49.187173847000082 ], [ -122.537457265999976, 49.187172199000059 ], [ -122.537459779999963, 49.186902349000029 ], [ -122.537048093999914, 49.186900699000098 ], [ -122.537053129999947, 49.186360997000087 ], [ -122.53699007799996, 49.186360744000112 ], [ -122.53687783699999, 49.187866564000082 ], [ -122.536870122999957, 49.18786631600004 ], [ -122.536824567999986, 49.188477463000062 ], [ -122.536621726999897, 49.188470940000101 ], [ -122.536621285999942, 49.188518154000079 ], [ -122.536248533, 49.188516657000072 ], [ -122.536164742999944, 49.18964050000006 ], [ -122.536610669999945, 49.189654841000042 ], [ -122.536613725999956, 49.189327705 ], [ -122.537025434, 49.189329357000069 ], [ -122.537030470000033, 49.188789654000097 ], [ -122.537442171999942, 49.18879130400007 ], [ -122.537444687999965, 49.188521453000085 ], [ -122.537856387999966, 49.188523102000012 ], [ -122.537858903, 49.188253251000077 ], [ -122.538270600999923, 49.188254898000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.884436881188119", "sL_AssetLoss": "25856", "sL_BldgLoss": "22868", "sL_StrLoss": "16290", "sL_NStrLoss": "6578", "sL_ContLoss": "2988", "geom_point": "0101000020E61000006365EA64DFA05EC045D35D0285994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.51249345899997, 49.196982482000088 ], [ -122.515024572999934, 49.197064401000134 ], [ -122.51475475499997, 49.200660362000029 ], [ -122.514719733000021, 49.200659229000053 ], [ -122.514631315999949, 49.201837461000117 ], [ -122.512332706999956, 49.201763069000059 ], [ -122.512418972999953, 49.200103596000076 ], [ -122.512421389999957, 49.200003368000083 ], [ -122.512459380999985, 49.198411250000063 ], [ -122.51249345899997, 49.196982482000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.842242990654206", "sL_AssetLoss": "8025", "sL_BldgLoss": "6759", "sL_StrLoss": "4510", "sL_NStrLoss": "2249", "sL_ContLoss": "1266", "geom_point": "0101000020E6100000654C6661B4A15EC08A9B2A4ACF9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.528223893999936, 49.208918680000032 ], [ -122.528999540999976, 49.208943669000128 ], [ -122.527937001999987, 49.209457689 ], [ -122.527934284000011, 49.209458998000102 ], [ -122.525992284999973, 49.210161101000033 ], [ -122.525429903999978, 49.210149699000127 ], [ -122.525334203999975, 49.210108019000138 ], [ -122.525419003999957, 49.208974711000074 ], [ -122.528212971999949, 49.209064774000069 ], [ -122.528223893999936, 49.208918680000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112183583", "BldgCostT": "75158333", "sL_LossRatio": "0.875448100756011", "sL_AssetLoss": "375417.8", "sL_BldgLoss": "328658.8", "sL_StrLoss": "220443.8", "sL_NStrLoss": "108215", "sL_ContLoss": "46759", "geom_point": "0101000020E61000008F4CB83E099F5EC08172DBBE47984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.468462432999942, 49.196831779000064 ], [ -122.468484704, 49.195618096000103 ], [ -122.468489817999952, 49.194736214000066 ], [ -122.468493834999904, 49.194043630000053 ], [ -122.468510702999964, 49.191123708000113 ], [ -122.468524477999949, 49.190490439000037 ], [ -122.468527197999947, 49.190365411000037 ], [ -122.468499059999957, 49.189744858000076 ], [ -122.46847080399999, 49.189121710000059 ], [ -122.46847113199999, 49.189078067000032 ], [ -122.468477022999963, 49.188304463000165 ], [ -122.468482207999898, 49.187620807000044 ], [ -122.468484454999953, 49.187323961000097 ], [ -122.46848916, 49.186703374000139 ], [ -122.468491845999935, 49.186352582000147 ], [ -122.468512479, 49.183635968000019 ], [ -122.468520874999939, 49.182524590000114 ], [ -122.47035132, 49.182528082000054 ], [ -122.471970591999948, 49.182531135000062 ], [ -122.472354857999932, 49.182531837000042 ], [ -122.473137126999958, 49.182533321000115 ], [ -122.479548392999959, 49.1825451 ], [ -122.479539911999964, 49.183979506000057 ], [ -122.480902087999965, 49.183981694000082 ], [ -122.48253534899996, 49.183986732000072 ], [ -122.483015606999984, 49.18398817700011 ], [ -122.483797790999972, 49.183990600000122 ], [ -122.48507396799998, 49.18399447300007 ], [ -122.487818429999933, 49.184002810000074 ], [ -122.488326193999953, 49.184004322000035 ], [ -122.490646398999942, 49.184011300000073 ], [ -122.491386469999924, 49.184009899000031 ], [ -122.49279891499999, 49.184007204000103 ], [ -122.496106739999945, 49.184000822000023 ], [ -122.496788307999964, 49.183999491000073 ], [ -122.49731464599995, 49.18399821900006 ], [ -122.501980400999969, 49.183986646000108 ], [ -122.506837651999916, 49.183974408000097 ], [ -122.508622438999964, 49.18396984300005 ], [ -122.509610825999943, 49.183967298000049 ], [ -122.511270984999939, 49.183963014000092 ], [ -122.512708772999957, 49.183959290000075 ], [ -122.512696791999957, 49.185333068000041 ], [ -122.512691508999978, 49.185935741000122 ], [ -122.51267750699995, 49.187538691000078 ], [ -122.512446792999981, 49.1875781090001 ], [ -122.509272570999926, 49.187572557000124 ], [ -122.508545131999981, 49.187571254000041 ], [ -122.504153696999978, 49.187563395000041 ], [ -122.502452230999964, 49.187560282000035 ], [ -122.501801006999983, 49.187559098000072 ], [ -122.501666292, 49.187525913000073 ], [ -122.501472904999915, 49.190730897000051 ], [ -122.500414263999986, 49.190696503000026 ], [ -122.500388233999971, 49.191042036000042 ], [ -122.499474397999947, 49.191012339000096 ], [ -122.499464039999907, 49.191149810000084 ], [ -122.496131829, 49.191158900000097 ], [ -122.493583984999987, 49.191189499000131 ], [ -122.49350337, 49.191180036000034 ], [ -122.493244009999941, 49.191149609000064 ], [ -122.490448296999915, 49.191159336000055 ], [ -122.490447157999981, 49.191179393 ], [ -122.490050350000033, 49.198331809000081 ], [ -122.489338574999948, 49.198342803000088 ], [ -122.486545135999918, 49.198341440000085 ], [ -122.485213430999963, 49.198340778000038 ], [ -122.482138882999962, 49.198339184000062 ], [ -122.481713244999952, 49.198338940000099 ], [ -122.480683533999965, 49.198338374000052 ], [ -122.479828115999936, 49.198337898000091 ], [ -122.479572060999914, 49.198338892000073 ], [ -122.477086981999918, 49.198348525000078 ], [ -122.476249597999967, 49.198351764000108 ], [ -122.475535881999946, 49.198354504000086 ], [ -122.474767453, 49.198357454000053 ], [ -122.473367321999916, 49.198362845000084 ], [ -122.470649803999905, 49.198373214000085 ], [ -122.4684681, 49.19838150500005 ], [ -122.468448516999942, 49.197591504000115 ], [ -122.468462432999942, 49.196831779000064 ] ], [ [ -122.485462145999989, 49.19715766300007 ], [ -122.485520820999952, 49.196382177000018 ], [ -122.484747239999976, 49.196356933000054 ], [ -122.484688551, 49.197132420000088 ], [ -122.485462145999989, 49.19715766300007 ] ], [ [ -122.477776558999892, 49.196183866000069 ], [ -122.477894267999929, 49.194631522000115 ], [ -122.476856857999962, 49.194597593000076 ], [ -122.477129570999949, 49.191001694000093 ], [ -122.478146818999946, 49.191034964000039 ], [ -122.478233987999943, 49.189885117000159 ], [ -122.483709091999941, 49.190064017000054 ], [ -122.483680867999951, 49.190436899000112 ], [ -122.485107864999918, 49.190483481000072 ], [ -122.485105698999959, 49.190512117000111 ], [ -122.488017204, 49.190607098000086 ], [ -122.488024169999946, 49.189932114000015 ], [ -122.487612459, 49.189930288000028 ], [ -122.487620244999903, 49.189176375000052 ], [ -122.487623605999943, 49.188850894000097 ], [ -122.488858708999913, 49.188856366000017 ], [ -122.488861486999951, 49.188586517000026 ], [ -122.488449789999947, 49.188584694000035 ], [ -122.488458135999934, 49.187775148000036 ], [ -122.488869826999959, 49.187776971000112 ], [ -122.488877749999958, 49.187007943000012 ], [ -122.485809161999953, 49.186907853000093 ], [ -122.485867032999963, 49.18614274600003 ], [ -122.485296491999947, 49.18612412600001 ], [ -122.48528515299995, 49.18627401400007 ], [ -122.484768505000019, 49.186257151000099 ], [ -122.484761318999958, 49.186949131000091 ], [ -122.484656346999941, 49.186948663000074 ], [ -122.484522758999972, 49.188714126000079 ], [ -122.481132027999962, 49.188603389000043 ], [ -122.48113061299999, 49.188622062000036 ], [ -122.481113128999979, 49.18885290700009 ], [ -122.48036962399999, 49.188828612000101 ], [ -122.480288852999934, 49.189894724000027 ], [ -122.474813782999931, 49.189715652000125 ], [ -122.474858566999984, 49.189125461000067 ], [ -122.473138293, 49.189069138000093 ], [ -122.473138224999957, 49.189070038000054 ], [ -122.473277311999965, 49.189074593000072 ], [ -122.473155827999975, 49.190674830000013 ], [ -122.473605775999914, 49.190676881000051 ], [ -122.473614362999939, 49.189867337000173 ], [ -122.474849487999961, 49.189872960000052 ], [ -122.474838063999968, 49.190952353000135 ], [ -122.474426344999969, 49.190950480000033 ], [ -122.474417769999945, 49.191760024000118 ], [ -122.474006047, 49.191758150000119 ], [ -122.474003184999987, 49.1920279980001 ], [ -122.473179733999956, 49.192024245 ], [ -122.473179438999964, 49.192051954000121 ], [ -122.473519687999968, 49.192063094000062 ], [ -122.473417374999926, 49.193410805 ], [ -122.476024285999955, 49.19349613000005 ], [ -122.47584353299996, 49.195878645000057 ], [ -122.476289323999978, 49.195893230000109 ], [ -122.47627101099999, 49.19613462400013 ], [ -122.477776558999892, 49.196183866000069 ] ], [ [ -122.490935580999988, 49.187075017000041 ], [ -122.490931054, 49.187516213000066 ], [ -122.490627884999924, 49.187514876000094 ], [ -122.490519365999944, 49.187514398000054 ], [ -122.490518198999922, 49.187627937000038 ], [ -122.490628355999945, 49.187631526000061 ], [ -122.491400617999943, 49.18765669000004 ], [ -122.491513279999964, 49.186164828000081 ], [ -122.491387354999958, 49.186160726000018 ], [ -122.491377202999914, 49.186295168000122 ], [ -122.491343776999955, 49.186294078000124 ], [ -122.491283942999985, 49.18708636800006 ], [ -122.490935580999988, 49.187075017000041 ] ], [ [ -122.489097476999973, 49.190746451000109 ], [ -122.48905677599997, 49.191284987000039 ], [ -122.48938659, 49.191295738000072 ], [ -122.489427989999939, 49.190747913000038 ], [ -122.489097476999973, 49.190746451000109 ] ], [ [ -122.483896487999928, 49.195865444000056 ], [ -122.483889656000017, 49.195955693 ], [ -122.483970995, 49.195958349000101 ], [ -122.483977825999943, 49.195868100000084 ], [ -122.483896487999928, 49.195865444000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.89829615317056", "sL_AssetLoss": "11386", "sL_BldgLoss": "10228", "sL_StrLoss": "6800", "sL_NStrLoss": "3428", "sL_ContLoss": "1158", "geom_point": "0101000020E6100000CDE38B51B2A05EC0ABEBB37784994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.509548527, 49.196887094000068 ], [ -122.51249345899997, 49.196982482000088 ], [ -122.512459380999985, 49.198411250000063 ], [ -122.512421389999957, 49.200003368000083 ], [ -122.512418972999953, 49.200103596000076 ], [ -122.512332706999956, 49.201763069000059 ], [ -122.509154708, 49.20166013500004 ], [ -122.509424964999965, 49.198064194000068 ], [ -122.509459983999974, 49.198065329000059 ], [ -122.509548527, 49.196887094000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92398833", "BldgCostT": "62778333", "sL_LossRatio": "0.758860001844596", "sL_AssetLoss": "1051721", "sL_BldgLoss": "798109", "sL_StrLoss": "379539", "sL_NStrLoss": "418570", "sL_ContLoss": "253612", "geom_point": "0101000020E61000002F3739F8D99E5EC070E0822A3D9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.46165017099996, 49.215974207000095 ], [ -122.461817986999961, 49.215901490000128 ], [ -122.462673878999979, 49.215660202000045 ], [ -122.462868026999942, 49.215617199000057 ], [ -122.464317576999932, 49.215296003000091 ], [ -122.464522344999935, 49.215224770000063 ], [ -122.465311790000015, 49.21495010600006 ], [ -122.466351304999961, 49.214515609000024 ], [ -122.466758483999911, 49.214306297000086 ], [ -122.468267401999981, 49.213113996000061 ], [ -122.468348704999968, 49.212983283000071 ], [ -122.46843000099993, 49.212817392000012 ], [ -122.468431811999949, 49.212791220000099 ], [ -122.468461312999978, 49.212369592000059 ], [ -122.468441497999933, 49.210499897000091 ], [ -122.468442747999958, 49.21029789300006 ], [ -122.46845565699999, 49.208201987000081 ], [ -122.46845826899991, 49.207779236000114 ], [ -122.468460489999956, 49.207419441000084 ], [ -122.468465596999962, 49.20659184800013 ], [ -122.468471393999963, 49.205648008000125 ], [ -122.468472802999969, 49.204648825000056 ], [ -122.468473650999954, 49.204028184000045 ], [ -122.468474137999976, 49.20368633100005 ], [ -122.46847729299995, 49.201418895000131 ], [ -122.46847589199993, 49.200951673000134 ], [ -122.468472992, 49.199998211000029 ], [ -122.468472361999943, 49.199791579000063 ], [ -122.4684681, 49.19838150500005 ], [ -122.470649803999905, 49.198373214000085 ], [ -122.473367321999916, 49.198362845000084 ], [ -122.474767453, 49.198357454000053 ], [ -122.475535881999946, 49.198354504000086 ], [ -122.476249597999967, 49.198351764000108 ], [ -122.477086981999918, 49.198348525000078 ], [ -122.479572060999914, 49.198338892000073 ], [ -122.479828115999936, 49.198337898000091 ], [ -122.480683533999965, 49.198338374000052 ], [ -122.481713244999952, 49.198338940000099 ], [ -122.482138882999962, 49.198339184000062 ], [ -122.485213430999963, 49.198340778000038 ], [ -122.486545135999918, 49.198341440000085 ], [ -122.489338574999948, 49.198342803000088 ], [ -122.490050350000033, 49.198331809000081 ], [ -122.490447157999981, 49.191179393 ], [ -122.490448296999915, 49.191159336000055 ], [ -122.493244009999941, 49.191149609000064 ], [ -122.49350337, 49.191180036000034 ], [ -122.493583984999987, 49.191189499000131 ], [ -122.496131829, 49.191158900000097 ], [ -122.499464039999907, 49.191149810000084 ], [ -122.499407241999961, 49.191903557000082 ], [ -122.498448313999958, 49.191872386000057 ], [ -122.498386843999953, 49.192687879000083 ], [ -122.492911376, 49.192509726000019 ], [ -122.492914499, 49.192468364000078 ], [ -122.491318070999966, 49.192416369000043 ], [ -122.491305704999959, 49.192580093000082 ], [ -122.491996742999959, 49.192602603000118 ], [ -122.491892535999966, 49.193982480000081 ], [ -122.492482509999945, 49.194001694000058 ], [ -122.492418647999941, 49.194847454000097 ], [ -122.493294536999954, 49.194875974000055 ], [ -122.49312510699994, 49.197120189000039 ], [ -122.49808810799999, 49.197281653000097 ], [ -122.498034905999958, 49.197987307000112 ], [ -122.499201413999913, 49.198025224000091 ], [ -122.499180874999965, 49.198297730000057 ], [ -122.500930570999941, 49.198354579000082 ], [ -122.500667879, 49.201841361000042 ], [ -122.500667676999925, 49.201861343000076 ], [ -122.501079485999981, 49.201863123000088 ], [ -122.501076770999987, 49.20213297300004 ], [ -122.50148858299994, 49.202134751000102 ], [ -122.501487405999939, 49.202251855000057 ], [ -122.501254891999906, 49.202244211000043 ], [ -122.501412091999939, 49.202434903000082 ], [ -122.501483668999953, 49.202623526000067 ], [ -122.501482768999949, 49.202712996000052 ], [ -122.50151805599991, 49.202714142000083 ], [ -122.501524298999939, 49.202730591000034 ], [ -122.501518195999935, 49.202997406000065 ], [ -122.501480822999966, 49.204634419000143 ], [ -122.501456173999969, 49.205712098000085 ], [ -122.500938305999952, 49.205712921000071 ], [ -122.499469575999953, 49.205715205000068 ], [ -122.498570594999961, 49.205716588000122 ], [ -122.495671815, 49.205643764000115 ], [ -122.494958089999955, 49.205136500000116 ], [ -122.494936318999933, 49.204722096000097 ], [ -122.494813184999927, 49.204578190000042 ], [ -122.494802970999956, 49.204577181000097 ], [ -122.494919363999955, 49.203035010000107 ], [ -122.494613089, 49.203025045000096 ], [ -122.494641499999929, 49.202648616000076 ], [ -122.493845884999956, 49.202622725000033 ], [ -122.493886469999921, 49.202085121000046 ], [ -122.49110482299993, 49.201994554000123 ], [ -122.49114440399994, 49.201470650000047 ], [ -122.489565602, 49.201419214000097 ], [ -122.489568666999915, 49.201378672000047 ], [ -122.486905112999978, 49.201291843000085 ], [ -122.486941506999983, 49.200810682000096 ], [ -122.48313701099994, 49.20068654500006 ], [ -122.483223922999983, 49.199538736000093 ], [ -122.483033463000012, 49.199532518000062 ], [ -122.483009920999919, 49.199843430000101 ], [ -122.481339205000026, 49.199788871000031 ], [ -122.481277391999953, 49.200604769000044 ], [ -122.480541955999968, 49.200580745000082 ], [ -122.480539762999982, 49.200609688000085 ], [ -122.47994010799999, 49.200590095000102 ], [ -122.479919151999979, 49.200866602000055 ], [ -122.478146989999971, 49.200808679000026 ], [ -122.478144778999962, 49.20083784400007 ], [ -122.474051893999928, 49.200703957000023 ], [ -122.474003937999939, 49.201335643000021 ], [ -122.472418261999934, 49.201283730000064 ], [ -122.472260079999955, 49.203366254000066 ], [ -122.473462472999969, 49.20340562100013 ], [ -122.473466327999944, 49.203354841000099 ], [ -122.474428064999969, 49.203386319000074 ], [ -122.474432290999943, 49.203330665000053 ], [ -122.475032902999914, 49.203350318000091 ], [ -122.475034667000017, 49.203327080000044 ], [ -122.476271439999948, 49.203367540000087 ], [ -122.476295129999954, 49.203055309000064 ], [ -122.477294360999977, 49.203087988000114 ], [ -122.477296488999983, 49.203059934000109 ], [ -122.477943026999981, 49.203081073000057 ], [ -122.477953668999945, 49.202940749000064 ], [ -122.478646448999982, 49.20296339600003 ], [ -122.478664450999958, 49.202725966000067 ], [ -122.484141067999957, 49.202904839000084 ], [ -122.484123164999957, 49.203141331000026 ], [ -122.485466114999923, 49.203185151000071 ], [ -122.485474355999926, 49.2030762300001 ], [ -122.486303994, 49.20310329200003 ], [ -122.486333941999959, 49.202707450000034 ], [ -122.487119892999928, 49.202733082000059 ], [ -122.487168643999951, 49.202088569000061 ], [ -122.492645217999907, 49.202267011000032 ], [ -122.49259168899998, 49.202975791000071 ], [ -122.493157143999952, 49.202994199000102 ], [ -122.493016549999965, 49.204856048000075 ], [ -122.492132588999951, 49.204845992000045 ], [ -122.491701264999918, 49.204961170000075 ], [ -122.491636688999918, 49.20497840400008 ], [ -122.491512805999918, 49.205112308000011 ], [ -122.491353136999976, 49.205666822000062 ], [ -122.491241315999929, 49.206055096000071 ], [ -122.490024297999966, 49.207049195000103 ], [ -122.490158288999964, 49.207409506000097 ], [ -122.490086914999964, 49.207580403000073 ], [ -122.489992816999973, 49.207652009000093 ], [ -122.489922102999927, 49.207705804000049 ], [ -122.489631311999958, 49.207766997000078 ], [ -122.488890090999917, 49.207797788000086 ], [ -122.488670707999944, 49.207806888000107 ], [ -122.488230088999941, 49.207967804000077 ], [ -122.488077804999961, 49.208101702000114 ], [ -122.487935799999917, 49.208460611000191 ], [ -122.48795699399993, 49.209100099000061 ], [ -122.487858691000028, 49.209261004000091 ], [ -122.487514401999988, 49.209484610000096 ], [ -122.487327185999931, 49.209556665 ], [ -122.486659604999957, 49.209813609000079 ], [ -122.484283690999959, 49.21117938700008 ], [ -122.483009199999969, 49.212163593000092 ], [ -122.482901929999969, 49.212221590000127 ], [ -122.482250892999943, 49.212573709000026 ], [ -122.481528908999962, 49.213208900000119 ], [ -122.481107551999955, 49.213477918000073 ], [ -122.480395688999948, 49.213932393000078 ], [ -122.480112326999958, 49.214227781000055 ], [ -122.479966708999925, 49.214379592000071 ], [ -122.47957940399999, 49.214576206000132 ], [ -122.478642797999939, 49.214869489000108 ], [ -122.478297905999952, 49.21510170900013 ], [ -122.478024067999939, 49.215184166000014 ], [ -122.477829723999946, 49.21524270400004 ], [ -122.477237298999924, 49.215312492000102 ], [ -122.476564695999983, 49.215318190000033 ], [ -122.476531661999971, 49.215312463000082 ], [ -122.475768907, 49.21518000300005 ], [ -122.47495809499999, 49.215283988000053 ], [ -122.474669494999929, 49.215255488 ], [ -122.474075397999982, 49.214898920000081 ], [ -122.47325049299991, 49.214403789000094 ], [ -122.47299140299998, 49.214339695000078 ], [ -122.471629494999945, 49.214584699000085 ], [ -122.469881602999962, 49.215009107000085 ], [ -122.469806143999961, 49.215001646000054 ], [ -122.468729384999961, 49.214895199000047 ], [ -122.467917278999934, 49.214919396000063 ], [ -122.46712009499997, 49.215104502000116 ], [ -122.466759881999948, 49.215318202000049 ], [ -122.466260398999978, 49.215900712000085 ], [ -122.465895204999953, 49.216555809000106 ], [ -122.465400282999951, 49.216652702000054 ], [ -122.465154304999913, 49.216588599000026 ], [ -122.464841216999957, 49.216370695000073 ], [ -122.464786885999928, 49.216191205000058 ], [ -122.46458180499998, 49.216064510000059 ], [ -122.464307915999925, 49.216044493 ], [ -122.463825581999956, 49.216168399000054 ], [ -122.462275103999943, 49.217002024000074 ], [ -122.461934196999948, 49.217185311000065 ], [ -122.461488714, 49.21779490200003 ], [ -122.461289699999952, 49.218333192000074 ], [ -122.460696583999933, 49.218609506000021 ], [ -122.460403992999943, 49.219076705000056 ], [ -122.460032218999984, 49.219232390000066 ], [ -122.46000280399997, 49.219244708000126 ], [ -122.459081892999933, 49.219294595000079 ], [ -122.458722882999922, 49.219509600000031 ], [ -122.458567601, 49.219831503000073 ], [ -122.458364929999945, 49.220013889000015 ], [ -122.457784008999965, 49.22000908800009 ], [ -122.457801678999928, 49.21972219000002 ], [ -122.45847043699996, 49.218981011000039 ], [ -122.458887361999984, 49.218518917000118 ], [ -122.459054125999927, 49.218334096000042 ], [ -122.459213989999938, 49.218124112000105 ], [ -122.459633906999983, 49.217572704000105 ], [ -122.460113901999947, 49.216770213000046 ], [ -122.460233584999955, 49.216639795000034 ], [ -122.460412391999952, 49.216510512000092 ], [ -122.46165017099996, 49.215974207000095 ] ], [ [ -122.476716595999918, 49.208030620000073 ], [ -122.476718991999959, 49.20780362200005 ], [ -122.476050070000014, 49.207781745000048 ], [ -122.47603769100003, 49.207944875000067 ], [ -122.475345538999989, 49.207922234000108 ], [ -122.475342164, 49.207966692000078 ], [ -122.474881542999967, 49.20795162200011 ], [ -122.474877060000011, 49.208010677000061 ], [ -122.476212109999892, 49.208054348000083 ], [ -122.47621515499999, 49.208014221000035 ], [ -122.476716595999918, 49.208030620000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.885146804835924", "sL_AssetLoss": "4632", "sL_BldgLoss": "4100", "sL_StrLoss": "2700", "sL_NStrLoss": "1400", "sL_ContLoss": "532", "geom_point": "0101000020E6100000D86B93EDB0A05EC0171DDA1198984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.510208377999945, 49.193065586000081 ], [ -122.510224907999898, 49.192845562000066 ], [ -122.508795841999984, 49.192799250000043 ], [ -122.508912906999967, 49.191241540000078 ], [ -122.51262921799993, 49.191289721000047 ], [ -122.512585035999948, 49.193142565000066 ], [ -122.510208377999945, 49.193065586000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.862068965517241", "sL_AssetLoss": "2204", "sL_BldgLoss": "1900", "sL_StrLoss": "1340", "sL_NStrLoss": "560", "sL_ContLoss": "304", "geom_point": "0101000020E61000003F1028B44FA05EC0E17D131282984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.502057244999889, 49.191152323000054 ], [ -122.507540578999965, 49.191223716000124 ], [ -122.507494564999945, 49.191835762000039 ], [ -122.502019162999929, 49.191658071000091 ], [ -122.502057244999889, 49.191152323000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108063083", "BldgCostT": "72788333", "sL_LossRatio": "0.76901213704102", "sL_AssetLoss": "1041440", "sL_BldgLoss": "800880", "sL_StrLoss": "401960", "sL_NStrLoss": "398920", "sL_ContLoss": "240560", "geom_point": "0101000020E6100000FF3960B28C9C5EC0501C1FB1069B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.423978774999952, 49.219187534000049 ], [ -122.424007900999982, 49.216805309000065 ], [ -122.42547368699995, 49.216853940000135 ], [ -122.42544649, 49.217207186000046 ], [ -122.427524238999951, 49.217276086 ], [ -122.427514083999966, 49.217408037000048 ], [ -122.427994888999947, 49.217423975000024 ], [ -122.428229147999943, 49.214379082000036 ], [ -122.431220014999965, 49.214478178000078 ], [ -122.431316687999981, 49.213220454000044 ], [ -122.43148902899999, 49.213226161000129 ], [ -122.431535721, 49.21261863500014 ], [ -122.43087405499989, 49.212596720000114 ], [ -122.430918573000014, 49.212017569000075 ], [ -122.430270668999952, 49.211996106000051 ], [ -122.430493570999957, 49.209096628000054 ], [ -122.428892599999969, 49.209043576000084 ], [ -122.429169109999933, 49.205447879000133 ], [ -122.430591166999974, 49.205495003000088 ], [ -122.430715134999986, 49.203882112000052 ], [ -122.43135, 49.203903144 ], [ -122.431358913999986, 49.203787127000041 ], [ -122.431420218999946, 49.203789157000109 ], [ -122.431561043999949, 49.20195642900007 ], [ -122.428850098999987, 49.201866593000027 ], [ -122.426891374999954, 49.20180164100006 ], [ -122.427145, 49.198504855000081 ], [ -122.426852378999953, 49.198495149000074 ], [ -122.426864897999963, 49.198332418000057 ], [ -122.428848508999963, 49.19834420800008 ], [ -122.429496719999989, 49.198346445000013 ], [ -122.430141858999946, 49.198348712000026 ], [ -122.431528151999927, 49.198353516000047 ], [ -122.43250278499994, 49.198356894000042 ], [ -122.433230303999949, 49.198359412000045 ], [ -122.434040162999935, 49.198362208000091 ], [ -122.435317912999949, 49.198366610000086 ], [ -122.435315939999953, 49.198887449000047 ], [ -122.43531168599999, 49.200002768000083 ], [ -122.43526469699998, 49.212408213000074 ], [ -122.435264512999979, 49.212462209000094 ], [ -122.43526310299994, 49.2128319 ], [ -122.437417908999933, 49.212840096000043 ], [ -122.438568288999988, 49.211265910000087 ], [ -122.440328, 49.209408093000036 ], [ -122.440948808999934, 49.208704893000068 ], [ -122.442425494999966, 49.206165399000064 ], [ -122.44248687299995, 49.205990799000034 ], [ -122.442525807999971, 49.205627092000014 ], [ -122.443059574999964, 49.20562720800006 ], [ -122.447964190999926, 49.205628087 ], [ -122.456884036999966, 49.205644423000116 ], [ -122.457495918999939, 49.20564550700005 ], [ -122.458078480999987, 49.205645677000071 ], [ -122.459890586999961, 49.205646239000068 ], [ -122.461208833999962, 49.205646622000067 ], [ -122.461510805999936, 49.205646695 ], [ -122.461521775999955, 49.204643749000091 ], [ -122.461524390999926, 49.204405302000048 ], [ -122.461597495, 49.204149103000169 ], [ -122.461803432999901, 49.203655023000074 ], [ -122.461859522999987, 49.203520503000036 ], [ -122.462000689999982, 49.203324203000079 ], [ -122.462578307999962, 49.202769106000062 ], [ -122.463454193999908, 49.202040330000038 ], [ -122.463743310999959, 49.201799805000064 ], [ -122.46388220299994, 49.201815207000031 ], [ -122.465713629999954, 49.201759779000064 ], [ -122.467410800999957, 49.201708416000081 ], [ -122.467807300999979, 49.201656490000062 ], [ -122.46847729299995, 49.201418895000131 ], [ -122.468474137999976, 49.20368633100005 ], [ -122.468473650999954, 49.204028184000045 ], [ -122.468472802999969, 49.204648825000056 ], [ -122.468471393999963, 49.205648008000125 ], [ -122.468465596999962, 49.20659184800013 ], [ -122.468460489999956, 49.207419441000084 ], [ -122.46845826899991, 49.207779236000114 ], [ -122.46845565699999, 49.208201987000081 ], [ -122.468442747999958, 49.21029789300006 ], [ -122.468441497999933, 49.210499897000091 ], [ -122.468461312999978, 49.212369592000059 ], [ -122.468431811999949, 49.212791220000099 ], [ -122.46843000099993, 49.212817392000012 ], [ -122.468348704999968, 49.212983283000071 ], [ -122.468267401999981, 49.213113996000061 ], [ -122.466758483999911, 49.214306297000086 ], [ -122.466351304999961, 49.214515609000024 ], [ -122.465311790000015, 49.21495010600006 ], [ -122.464522344999935, 49.215224770000063 ], [ -122.464317576999932, 49.215296003000091 ], [ -122.462868026999942, 49.215617199000057 ], [ -122.462673878999979, 49.215660202000045 ], [ -122.461817986999961, 49.215901490000128 ], [ -122.46165017099996, 49.215974207000095 ], [ -122.460412391999952, 49.216510512000092 ], [ -122.460233584999955, 49.216639795000034 ], [ -122.460113901999947, 49.216770213000046 ], [ -122.459633906999983, 49.217572704000105 ], [ -122.459213989999938, 49.218124112000105 ], [ -122.459054125999927, 49.218334096000042 ], [ -122.458887361999984, 49.218518917000118 ], [ -122.45847043699996, 49.218981011000039 ], [ -122.457801678999928, 49.21972219000002 ], [ -122.457784008999965, 49.22000908800009 ], [ -122.457510676999917, 49.220008343000096 ], [ -122.45402734599999, 49.219998641000046 ], [ -122.454199704999894, 49.217742018000067 ], [ -122.455027139999942, 49.217769240000045 ], [ -122.455081306999887, 49.217059837000086 ], [ -122.45551716599999, 49.217074174000096 ], [ -122.45555101099994, 49.21663084700004 ], [ -122.455585051999947, 49.216631967000062 ], [ -122.45567807599997, 49.215413447000067 ], [ -122.45570310799998, 49.21541427000011 ], [ -122.455838467999968, 49.21364104600007 ], [ -122.458863785999938, 49.213740508000107 ], [ -122.458914974999956, 49.213069318000059 ], [ -122.45975632899993, 49.213096964000016 ], [ -122.459788361999969, 49.21267683800005 ], [ -122.46101705299999, 49.212717200000085 ], [ -122.461183625, 49.210531665000119 ], [ -122.464658301, 49.210645730000174 ], [ -122.464685118999938, 49.210293496000126 ], [ -122.464268223999952, 49.210279817000071 ], [ -122.464324776999959, 49.209537099000059 ], [ -122.464243069999966, 49.209534419000072 ], [ -122.464277225, 49.209085850000079 ], [ -122.464135995000021, 49.209081216000051 ], [ -122.464184306999954, 49.208446732000048 ], [ -122.461092927999943, 49.208345237000096 ], [ -122.461126795999959, 49.207900826000113 ], [ -122.459454722999951, 49.207845893000041 ], [ -122.459441319999925, 49.208021675000076 ], [ -122.45818260199998, 49.207980304000095 ], [ -122.458180784999968, 49.208146504000077 ], [ -122.457357067999951, 49.20814263700003 ], [ -122.457354114999987, 49.208412483000075 ], [ -122.456942253999927, 49.208410548000046 ], [ -122.456939298999927, 49.208680394000069 ], [ -122.457351160999977, 49.20868233000003 ], [ -122.4573423, 49.209491869000104 ], [ -122.45675337499992, 49.209489102000077 ], [ -122.457470056999981, 49.209512668000087 ], [ -122.457195713999937, 49.213108415000086 ], [ -122.456890902999959, 49.213098393000074 ], [ -122.456889046999947, 49.213267784000031 ], [ -122.454417640999935, 49.213256136000055 ], [ -122.454420270999933, 49.213017126000089 ], [ -122.453881657999915, 49.212999402000044 ], [ -122.453742812999963, 49.212820095000055 ], [ -122.454007674999971, 49.212452695000067 ], [ -122.453882012999898, 49.211444289000028 ], [ -122.4540110799999, 49.210977199000119 ], [ -122.453724483999949, 49.210796293000023 ], [ -122.45368420699999, 49.210633884000082 ], [ -122.453355298999924, 49.210551311000131 ], [ -122.45238979199999, 49.209853508000045 ], [ -122.451719285999957, 49.209635596000105 ], [ -122.451527410999972, 49.209490292000048 ], [ -122.450241514999945, 49.209124306000028 ], [ -122.449705402999911, 49.209112895000068 ], [ -122.44920932, 49.209353607000082 ], [ -122.44791738799999, 49.209400603000134 ], [ -122.447023716999922, 49.209594306000014 ], [ -122.446585809999974, 49.209511704000072 ], [ -122.446321701999935, 49.209672598000033 ], [ -122.445800197999986, 49.209688301000014 ], [ -122.44505680499995, 49.209863395000056 ], [ -122.444838118999925, 49.209853507000105 ], [ -122.444271097999945, 49.210129787000064 ], [ -122.443454980999917, 49.210783504000084 ], [ -122.442754391999969, 49.210833291000057 ], [ -122.442587802999981, 49.210913090000147 ], [ -122.4423365899999, 49.211290492000039 ], [ -122.442278398999946, 49.211632307000038 ], [ -122.442397977999931, 49.211938498000031 ], [ -122.442285789999985, 49.212216205000075 ], [ -122.442380066999974, 49.2123129 ], [ -122.442378168999952, 49.212337675000093 ], [ -122.440816566999985, 49.212286103000054 ], [ -122.440773232999945, 49.212851412000141 ], [ -122.440510725999928, 49.21284274100006 ], [ -122.440489835999983, 49.213115218000098 ], [ -122.440308248999941, 49.213109219000046 ], [ -122.440284044999913, 49.213424922000051 ], [ -122.439864029999967, 49.213411046 ], [ -122.439837445999956, 49.213757732000069 ], [ -122.43850336, 49.213713645000027 ], [ -122.43849319499999, 49.213846164000074 ], [ -122.438485949999986, 49.213845924000054 ], [ -122.438467313999965, 49.21408889100006 ], [ -122.440205878999961, 49.214146340000099 ], [ -122.439977907999975, 49.217119505000014 ], [ -122.442364879, 49.217198334000102 ], [ -122.442616489999949, 49.213914628000069 ], [ -122.443723956999975, 49.213951184000059 ], [ -122.443802003999949, 49.214067699000047 ], [ -122.445126584999969, 49.214677289000079 ], [ -122.445739697999969, 49.21520991200007 ], [ -122.446034984999926, 49.215715504000052 ], [ -122.44609911399999, 49.21609439000013 ], [ -122.446471592999956, 49.216050204000055 ], [ -122.447197810999967, 49.216225395000059 ], [ -122.447389309999934, 49.216181187000075 ], [ -122.447731117999979, 49.216353606000027 ], [ -122.447939646999913, 49.216116633000091 ], [ -122.447866820999963, 49.217068491000127 ], [ -122.452066232999954, 49.217206831000063 ], [ -122.451853334999925, 49.21999252600007 ], [ -122.447169025999983, 49.219979199000086 ], [ -122.442870794999962, 49.2199667900001 ], [ -122.44092082, 49.219961119000118 ], [ -122.433876149999918, 49.21994029000011 ], [ -122.431378495999965, 49.219932800000052 ], [ -122.428583802999952, 49.219939300000078 ], [ -122.426976179999969, 49.220077098000118 ], [ -122.425071894999945, 49.220253715000062 ], [ -122.424506400999988, 49.220374590000056 ], [ -122.424498807999939, 49.220377009000082 ], [ -122.42431972699994, 49.220006877000081 ], [ -122.423978774999952, 49.219187534000049 ] ], [ [ -122.437596911999904, 49.21770561400006 ], [ -122.437600026999974, 49.217665015000101 ], [ -122.437332718000022, 49.217656178000105 ], [ -122.437329602999981, 49.217696778000104 ], [ -122.437596911999904, 49.21770561400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.795493934142114", "sL_AssetLoss": "5770", "sL_BldgLoss": "4590", "sL_StrLoss": "2300", "sL_NStrLoss": "2290", "sL_ContLoss": "1180", "geom_point": "0101000020E61000001FA9D7902C9B5EC00ACE4B8B9B994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.424310508999923, 49.198317184000125 ], [ -122.42493245699994, 49.198320898000112 ], [ -122.424892362999955, 49.201778753000127 ], [ -122.424245686999953, 49.201775532000099 ], [ -122.424278925999928, 49.200002559000083 ], [ -122.424302362000034, 49.198752384000102 ], [ -122.424310508999923, 49.198317184000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153068667", "BldgCostT": "97571667", "sL_LossRatio": "0.725878701922402", "sL_AssetLoss": "1424260", "sL_BldgLoss": "1033840", "sL_StrLoss": "505180", "sL_NStrLoss": "528660", "sL_ContLoss": "390420", "geom_point": "0101000020E6100000CD7A52A23C9C5EC0AF4BA66DF0984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.43526469699998, 49.212408213000074 ], [ -122.43531168599999, 49.200002768000083 ], [ -122.435315939999953, 49.198887449000047 ], [ -122.435317912999949, 49.198366610000086 ], [ -122.434040162999935, 49.198362208000091 ], [ -122.433230303999949, 49.198359412000045 ], [ -122.43250278499994, 49.198356894000042 ], [ -122.431528151999927, 49.198353516000047 ], [ -122.430141858999946, 49.198348712000026 ], [ -122.429496719999989, 49.198346445000013 ], [ -122.428848508999963, 49.19834420800008 ], [ -122.426864897999963, 49.198332418000057 ], [ -122.427020043999988, 49.196315642000087 ], [ -122.425779744999943, 49.196274492000079 ], [ -122.425772206999952, 49.196925632000124 ], [ -122.425360443999978, 49.196923584000047 ], [ -122.425344813999928, 49.19827281300006 ], [ -122.424933037999921, 49.198270762000099 ], [ -122.42493245699994, 49.198320898000112 ], [ -122.424310508999923, 49.198317184000125 ], [ -122.42378878699999, 49.191102759000046 ], [ -122.423826575999911, 49.190788764000075 ], [ -122.427308144999969, 49.190904317000104 ], [ -122.427377647999933, 49.190000592000032 ], [ -122.427601296999967, 49.190008010000042 ], [ -122.427640896999904, 49.189493057000099 ], [ -122.427635965999926, 49.189492894000132 ], [ -122.427872681999958, 49.186414390000017 ], [ -122.427466005999975, 49.186400899000063 ], [ -122.427402556999979, 49.18722600800011 ], [ -122.426847700999971, 49.18720759900004 ], [ -122.426838538999931, 49.187326721000083 ], [ -122.424253521999901, 49.187240917000018 ], [ -122.424788560999943, 49.182794048000055 ], [ -122.42479242, 49.18276185500013 ], [ -122.424837510999964, 49.182044850000104 ], [ -122.424984816999952, 49.182031605000084 ], [ -122.425157817999946, 49.181988212000086 ], [ -122.42539752, 49.181928092000049 ], [ -122.426536743, 49.180298586000113 ], [ -122.429780687999965, 49.180307092000113 ], [ -122.431043504999963, 49.18029941600004 ], [ -122.430907823999988, 49.181455415000123 ], [ -122.432886211999957, 49.181225606000098 ], [ -122.43459238399997, 49.181250593000094 ], [ -122.434786898999974, 49.181182201000048 ], [ -122.434880291999932, 49.180948287000078 ], [ -122.434810512999945, 49.180534114000039 ], [ -122.434802122999912, 49.180484303000064 ], [ -122.434836905999958, 49.180315998000104 ], [ -122.435010695999921, 49.18023250600006 ], [ -122.435462816999959, 49.180151097000127 ], [ -122.435677099999964, 49.180076089000089 ], [ -122.43586490399997, 49.179917410000115 ], [ -122.435869595999989, 49.179713001000039 ], [ -122.4357915099999, 49.179586899000086 ], [ -122.435376284999947, 49.179437096000044 ], [ -122.435328184999904, 49.179366993000066 ], [ -122.435314077999962, 49.178370699000034 ], [ -122.435251802999971, 49.177752205000075 ], [ -122.43524533099999, 49.17723579900008 ], [ -122.435238306999949, 49.176675602000046 ], [ -122.43682547899999, 49.176674594000097 ], [ -122.443572495999888, 49.176670009000091 ], [ -122.443555407999952, 49.178058309000107 ], [ -122.443451210999982, 49.178434301000038 ], [ -122.44309559299991, 49.178778508000086 ], [ -122.443030991999962, 49.178995408 ], [ -122.443225392, 49.179233386000043 ], [ -122.443348502999939, 49.179311305000084 ], [ -122.44398428699999, 49.17971360300006 ], [ -122.444738695999916, 49.18003260400009 ], [ -122.44588471500002, 49.180517196000089 ], [ -122.446356390999966, 49.180950092000103 ], [ -122.446424891999939, 49.180952302000058 ], [ -122.446427275999952, 49.181312191000096 ], [ -122.446427393999969, 49.181330186000075 ], [ -122.446466766999905, 49.187292950000078 ], [ -122.446471071999909, 49.18794934500005 ], [ -122.446492501999941, 49.19119081000013 ], [ -122.446430000999968, 49.191725909000084 ], [ -122.446412890999952, 49.191872189000051 ], [ -122.446094975999983, 49.192296990000138 ], [ -122.445728986999953, 49.192595791000066 ], [ -122.445224503999938, 49.19278639000008 ], [ -122.444729508999899, 49.193211690000098 ], [ -122.443966202999945, 49.194112113000081 ], [ -122.443756090999926, 49.19443680800012 ], [ -122.443522871999974, 49.194991393000073 ], [ -122.443473288999911, 49.195710805000083 ], [ -122.443351099, 49.196374512000055 ], [ -122.44252109199995, 49.197481798000126 ], [ -122.44235270899992, 49.197798804000051 ], [ -122.442330198999969, 49.197859647000072 ], [ -122.442181383999966, 49.198261796000075 ], [ -122.442175519999921, 49.198374305000094 ], [ -122.453223277999925, 49.19829453500008 ], [ -122.45596936, 49.198305190000021 ], [ -122.458353231999979, 49.198314379000117 ], [ -122.462269681999956, 49.198357279000014 ], [ -122.462249393999969, 49.198623645000097 ], [ -122.463717053999943, 49.198671837000042 ], [ -122.463739780999944, 49.198373345000078 ], [ -122.466990602999957, 49.198408802000053 ], [ -122.4684681, 49.19838150500005 ], [ -122.468472361999943, 49.199791579000063 ], [ -122.468472992, 49.199998211000029 ], [ -122.46847589199993, 49.200951673000134 ], [ -122.46847729299995, 49.201418895000131 ], [ -122.467807300999979, 49.201656490000062 ], [ -122.467410800999957, 49.201708416000081 ], [ -122.465713629999954, 49.201759779000064 ], [ -122.46388220299994, 49.201815207000031 ], [ -122.463743310999959, 49.201799805000064 ], [ -122.463454193999908, 49.202040330000038 ], [ -122.462578307999962, 49.202769106000062 ], [ -122.462000689999982, 49.203324203000079 ], [ -122.461859522999987, 49.203520503000036 ], [ -122.461803432999901, 49.203655023000074 ], [ -122.461597495, 49.204149103000169 ], [ -122.461524390999926, 49.204405302000048 ], [ -122.461521775999955, 49.204643749000091 ], [ -122.461510805999936, 49.205646695 ], [ -122.461208833999962, 49.205646622000067 ], [ -122.459890586999961, 49.205646239000068 ], [ -122.458078480999987, 49.205645677000071 ], [ -122.457495918999939, 49.20564550700005 ], [ -122.456884036999966, 49.205644423000116 ], [ -122.447964190999926, 49.205628087 ], [ -122.443059574999964, 49.20562720800006 ], [ -122.442525807999971, 49.205627092000014 ], [ -122.44248687299995, 49.205990799000034 ], [ -122.442425494999966, 49.206165399000064 ], [ -122.440948808999934, 49.208704893000068 ], [ -122.440328, 49.209408093000036 ], [ -122.438568288999988, 49.211265910000087 ], [ -122.437417908999933, 49.212840096000043 ], [ -122.43526310299994, 49.2128319 ], [ -122.435264512999979, 49.212462209000094 ], [ -122.43526469699998, 49.212408213000074 ] ], [ [ -122.44025761799999, 49.201423440000021 ], [ -122.440296706999916, 49.200913440000107 ], [ -122.438674832999979, 49.200859833000052 ], [ -122.438670762999948, 49.200912899000073 ], [ -122.438835409999982, 49.200918342000115 ], [ -122.438722702999911, 49.202388179000145 ], [ -122.43884270099997, 49.202392146000051 ], [ -122.438785735999943, 49.203135024000026 ], [ -122.439069751999966, 49.203144412000057 ], [ -122.439144287999909, 49.202172311000041 ], [ -122.439803726999941, 49.202194106000022 ], [ -122.439863801999977, 49.201410426000045 ], [ -122.44025761799999, 49.201423440000021 ] ], [ [ -122.439767063999923, 49.196205731000077 ], [ -122.439887561999967, 49.194633594000052 ], [ -122.4379724, 49.194570274000135 ], [ -122.437851836999954, 49.196142409000103 ], [ -122.439767063999923, 49.196205731000077 ] ], [ [ -122.437436356999967, 49.194472216000079 ], [ -122.43746364199994, 49.194116457000064 ], [ -122.432876181000012, 49.193964622000038 ], [ -122.432894589999947, 49.193724891000045 ], [ -122.432581297999931, 49.193714515000117 ], [ -122.432576433999941, 49.193777864 ], [ -122.429387753999919, 49.193672201000076 ], [ -122.429342628999962, 49.194259233000018 ], [ -122.43249888299999, 49.194363823000117 ], [ -122.432503097999955, 49.194308927000073 ], [ -122.437436356999967, 49.194472216000079 ] ], [ [ -122.444470987000017, 49.189694323000033 ], [ -122.444500975999944, 49.189302483000084 ], [ -122.440110042999919, 49.189157427000048 ], [ -122.440385566999964, 49.185561592000084 ], [ -122.441778505999935, 49.185607628000099 ], [ -122.441793316999963, 49.185414226000042 ], [ -122.444887604999977, 49.185516425000081 ], [ -122.444911880999953, 49.185199179000044 ], [ -122.442317474999982, 49.185113497 ], [ -122.442374350999927, 49.184370725000107 ], [ -122.441967708999968, 49.184357289000111 ], [ -122.44220804299999, 49.181218743000066 ], [ -122.439442615999951, 49.181127331000027 ], [ -122.439575923999925, 49.179387603000109 ], [ -122.4392280799999, 49.179376099000052 ], [ -122.439068507999977, 49.18145834400012 ], [ -122.438287805999892, 49.181432522000101 ], [ -122.43819034199997, 49.182703961000072 ], [ -122.438104660999969, 49.182701127 ], [ -122.438069761999927, 49.183156363000073 ], [ -122.437700478999943, 49.183144147000057 ], [ -122.437652680000014, 49.183767571000025 ], [ -122.437191832999972, 49.183752324000082 ], [ -122.437160280999947, 49.18416378000007 ], [ -122.43502210399997, 49.184093014000091 ], [ -122.434982218999934, 49.184612833000109 ], [ -122.434846624999977, 49.184608343000107 ], [ -122.434797146999927, 49.185253135000032 ], [ -122.429322799999966, 49.185071750000056 ], [ -122.429414452999978, 49.183879172000111 ], [ -122.429314373999958, 49.183875854000121 ], [ -122.429413000999901, 49.182592494000083 ], [ -122.429273234999926, 49.182587859000058 ], [ -122.42926987599995, 49.182631577000087 ], [ -122.429101071999924, 49.182625979000072 ], [ -122.429075585999925, 49.182957579000067 ], [ -122.428767662999959, 49.182947367000033 ], [ -122.428719804999986, 49.183569987000034 ], [ -122.428520275999958, 49.183563370000094 ], [ -122.428426162, 49.184787690000078 ], [ -122.428155452999988, 49.18477871100005 ], [ -122.428123372999934, 49.185195996000076 ], [ -122.427985107999945, 49.185191410000066 ], [ -122.427930804999974, 49.185897701000066 ], [ -122.433386893, 49.186078549000065 ], [ -122.433183830999894, 49.188723498000051 ], [ -122.433188763999951, 49.188723661000054 ], [ -122.433160033999968, 49.189097855000092 ], [ -122.434819929999932, 49.189152818000125 ], [ -122.434761720000012, 49.18991129500008 ], [ -122.436990661999957, 49.189985061000051 ], [ -122.437011770999945, 49.189709822000061 ], [ -122.43760423599997, 49.189729421000081 ], [ -122.437611250999979, 49.189637937000086 ], [ -122.441618364999954, 49.189770412000087 ], [ -122.44162878899999, 49.189634334000068 ], [ -122.44243746799998, 49.189661050000097 ], [ -122.442440055999924, 49.189627254000101 ], [ -122.444470987000017, 49.189694323000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159644666", "BldgCostT": "110276666", "sL_LossRatio": "0.814672063707314", "sL_AssetLoss": "1271314", "sL_BldgLoss": "1035704", "sL_StrLoss": "509324", "sL_NStrLoss": "526380", "sL_ContLoss": "235610", "geom_point": "0101000020E6100000A6F99D05E59C5EC0BAB6964DA9974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.442181383999966, 49.198261796000075 ], [ -122.442330198999969, 49.197859647000072 ], [ -122.44235270899992, 49.197798804000051 ], [ -122.44252109199995, 49.197481798000126 ], [ -122.443351099, 49.196374512000055 ], [ -122.443473288999911, 49.195710805000083 ], [ -122.443522871999974, 49.194991393000073 ], [ -122.443756090999926, 49.19443680800012 ], [ -122.443966202999945, 49.194112113000081 ], [ -122.444729508999899, 49.193211690000098 ], [ -122.445224503999938, 49.19278639000008 ], [ -122.445728986999953, 49.192595791000066 ], [ -122.446094975999983, 49.192296990000138 ], [ -122.446412890999952, 49.191872189000051 ], [ -122.446430000999968, 49.191725909000084 ], [ -122.446492501999941, 49.19119081000013 ], [ -122.446471071999909, 49.18794934500005 ], [ -122.446466766999905, 49.187292950000078 ], [ -122.446427393999969, 49.181330186000075 ], [ -122.446427275999952, 49.181312191000096 ], [ -122.446424891999939, 49.180952302000058 ], [ -122.446356390999966, 49.180950092000103 ], [ -122.44588471500002, 49.180517196000089 ], [ -122.444738695999916, 49.18003260400009 ], [ -122.44398428699999, 49.17971360300006 ], [ -122.443348502999939, 49.179311305000084 ], [ -122.443225392, 49.179233386000043 ], [ -122.443030991999962, 49.178995408 ], [ -122.44309559299991, 49.178778508000086 ], [ -122.443451210999982, 49.178434301000038 ], [ -122.443555407999952, 49.178058309000107 ], [ -122.443572495999888, 49.176670009000091 ], [ -122.43682547899999, 49.176674594000097 ], [ -122.435238306999949, 49.176675602000046 ], [ -122.43524533099999, 49.17723579900008 ], [ -122.435251802999971, 49.177752205000075 ], [ -122.435314077999962, 49.178370699000034 ], [ -122.435328184999904, 49.179366993000066 ], [ -122.435376284999947, 49.179437096000044 ], [ -122.4357915099999, 49.179586899000086 ], [ -122.435869595999989, 49.179713001000039 ], [ -122.43586490399997, 49.179917410000115 ], [ -122.435677099999964, 49.180076089000089 ], [ -122.435462816999959, 49.180151097000127 ], [ -122.435010695999921, 49.18023250600006 ], [ -122.434836905999958, 49.180315998000104 ], [ -122.434802122999912, 49.180484303000064 ], [ -122.434810512999945, 49.180534114000039 ], [ -122.434880291999932, 49.180948287000078 ], [ -122.434786898999974, 49.181182201000048 ], [ -122.43459238399997, 49.181250593000094 ], [ -122.432886211999957, 49.181225606000098 ], [ -122.430907823999988, 49.181455415000123 ], [ -122.431043504999963, 49.18029941600004 ], [ -122.429780687999965, 49.180307092000113 ], [ -122.426536743, 49.180298586000113 ], [ -122.42539752, 49.181928092000049 ], [ -122.425157817999946, 49.181988212000086 ], [ -122.424984816999952, 49.182031605000084 ], [ -122.424837510999964, 49.182044850000104 ], [ -122.425102059999958, 49.180301955000047 ], [ -122.425212371999976, 49.180158131000084 ], [ -122.425175484999926, 49.179962151000034 ], [ -122.42486071799999, 49.179252079000051 ], [ -122.424814713, 49.17902810600004 ], [ -122.424786333999975, 49.178961645000065 ], [ -122.424164191999978, 49.178421158000035 ], [ -122.423953946999958, 49.178308995000094 ], [ -122.424436109999988, 49.177874301000081 ], [ -122.424354106999928, 49.177738989000076 ], [ -122.423754955999982, 49.178174583000022 ], [ -122.423562382999933, 49.178035578000106 ], [ -122.424290814999978, 49.177397196000094 ], [ -122.424279508, 49.17714510800009 ], [ -122.423319386999978, 49.177203508000034 ], [ -122.423224623999943, 49.176959902000107 ], [ -122.423534790999895, 49.176386011000034 ], [ -122.424152405999962, 49.176190908000152 ], [ -122.423701598999969, 49.176179490000031 ], [ -122.423815780999945, 49.175757902000058 ], [ -122.42354508399994, 49.175468801000086 ], [ -122.423546598999934, 49.175287911000083 ], [ -122.42375290699999, 49.175181099000028 ], [ -122.423950205, 49.174822197000061 ], [ -122.423832709999886, 49.174219789000134 ], [ -122.423884207999919, 49.17337379300001 ], [ -122.424025191999945, 49.173114607000073 ], [ -122.423945165999967, 49.172756405000044 ], [ -122.423989517999956, 49.172769618000068 ], [ -122.424364579999974, 49.172873522000053 ], [ -122.424803352999945, 49.172995110000144 ], [ -122.42552333299993, 49.173194572000057 ], [ -122.425927959999967, 49.173262512000058 ], [ -122.426190750999965, 49.173306647000068 ], [ -122.426319625999923, 49.173328269000073 ], [ -122.427148344999949, 49.173415251000065 ], [ -122.428950549999954, 49.173400248000107 ], [ -122.432626634000016, 49.17327699100008 ], [ -122.433665822999956, 49.173266353000045 ], [ -122.433963697999943, 49.17329224200008 ], [ -122.434486138999958, 49.17333768200011 ], [ -122.43551168499998, 49.173455280000098 ], [ -122.436210311999972, 49.173535375 ], [ -122.437837457999962, 49.173656824000048 ], [ -122.43806808699999, 49.173670756000064 ], [ -122.442582430999934, 49.173943393000052 ], [ -122.444168885999929, 49.174039172000093 ], [ -122.448126785999932, 49.174248206000087 ], [ -122.448144710999927, 49.174248280000086 ], [ -122.454140110999958, 49.174270872000115 ], [ -122.454918417999949, 49.174273775000103 ], [ -122.455091875999969, 49.17666735100007 ], [ -122.455196116999943, 49.17751114800005 ], [ -122.45522962299998, 49.177782497000116 ], [ -122.45649285399999, 49.177732542000079 ], [ -122.456467223999965, 49.178068633000059 ], [ -122.456239652999969, 49.178061143000086 ], [ -122.456199200999961, 49.17859157000003 ], [ -122.459047954999932, 49.178685296000076 ], [ -122.45905149699999, 49.178638822000018 ], [ -122.461531667999935, 49.178720360000057 ], [ -122.461574020999961, 49.178164182000096 ], [ -122.463919528999966, 49.178241240000027 ], [ -122.463924213999945, 49.178179678000099 ], [ -122.462900860999952, 49.178146064000039 ], [ -122.462919815999953, 49.177897050000063 ], [ -122.457848601999956, 49.177730330000038 ], [ -122.45785253299999, 49.177678757000095 ], [ -122.460268123999938, 49.17758315800009 ], [ -122.46608860399999, 49.177352582000061 ], [ -122.466134396999934, 49.176698799000064 ], [ -122.466339101999949, 49.176702289000062 ], [ -122.466790980999946, 49.176698503000068 ], [ -122.467979408999952, 49.176688505000065 ], [ -122.468405702999974, 49.176639411000096 ], [ -122.468694296999956, 49.176541597000082 ], [ -122.468868810999965, 49.176538392000104 ], [ -122.468543910999969, 49.177166694000043 ], [ -122.468466113999966, 49.177450697000076 ], [ -122.468446193999952, 49.178525196000066 ], [ -122.468449283999988, 49.178573352000086 ], [ -122.468524541999926, 49.179750772000062 ], [ -122.46854143799996, 49.18073962600004 ], [ -122.468546200999953, 49.181017711000052 ], [ -122.468539249999964, 49.181432190000088 ], [ -122.468520874999939, 49.182524590000114 ], [ -122.468512479, 49.183635968000019 ], [ -122.468491845999935, 49.186352582000147 ], [ -122.46848916, 49.186703374000139 ], [ -122.468484454999953, 49.187323961000097 ], [ -122.468482207999898, 49.187620807000044 ], [ -122.468477022999963, 49.188304463000165 ], [ -122.46847113199999, 49.189078067000032 ], [ -122.46847080399999, 49.189121710000059 ], [ -122.468499059999957, 49.189744858000076 ], [ -122.468527197999947, 49.190365411000037 ], [ -122.468524477999949, 49.190490439000037 ], [ -122.468510702999964, 49.191123708000113 ], [ -122.468493834999904, 49.194043630000053 ], [ -122.468489817999952, 49.194736214000066 ], [ -122.468484704, 49.195618096000103 ], [ -122.468462432999942, 49.196831779000064 ], [ -122.468448516999942, 49.197591504000115 ], [ -122.4684681, 49.19838150500005 ], [ -122.466990602999957, 49.198408802000053 ], [ -122.463739780999944, 49.198373345000078 ], [ -122.46386468799993, 49.196732691000065 ], [ -122.465379974999962, 49.196782425000073 ], [ -122.46539633499999, 49.196567427000048 ], [ -122.466178419999977, 49.196593088000057 ], [ -122.466373937999919, 49.194023044000055 ], [ -122.467224703999989, 49.194050951000079 ], [ -122.467279337999983, 49.193332575000056 ], [ -122.463807662999969, 49.193218649000094 ], [ -122.463819694, 49.193060615000036 ], [ -122.462874914999944, 49.193056225000092 ], [ -122.462879401999899, 49.19264176500004 ], [ -122.462363748999962, 49.192624829000074 ], [ -122.462286531999922, 49.193638747000136 ], [ -122.461250110999984, 49.193604700000044 ], [ -122.461164345999961, 49.194730472000089 ], [ -122.460289285999963, 49.194701717000108 ], [ -122.460130418999981, 49.19678639200005 ], [ -122.456860929999934, 49.196678894000115 ], [ -122.45680849399993, 49.197366293000137 ], [ -122.460244511000013, 49.197479262000058 ], [ -122.46019003, 49.198194151000052 ], [ -122.462276884999952, 49.198262710000037 ], [ -122.462269681999956, 49.198357279000014 ], [ -122.458353231999979, 49.198314379000117 ], [ -122.45596936, 49.198305190000021 ], [ -122.453223277999925, 49.19829453500008 ], [ -122.442175519999921, 49.198374305000094 ], [ -122.442181383999966, 49.198261796000075 ] ], [ [ -122.448975364999924, 49.198290142000097 ], [ -122.449232383999956, 49.194928132000065 ], [ -122.449506978, 49.19493718500005 ], [ -122.449562464999957, 49.194211261000113 ], [ -122.449322769999952, 49.194203360000067 ], [ -122.44936977499998, 49.193588417000079 ], [ -122.449359007999988, 49.193588062000067 ], [ -122.449386492999977, 49.193228499000071 ], [ -122.448797439999964, 49.193209078000045 ], [ -122.448697128000035, 49.194521173000119 ], [ -122.447976502999921, 49.194497410000068 ], [ -122.44772806899999, 49.197745988000158 ], [ -122.445345880999966, 49.197667401000047 ], [ -122.44534387899995, 49.19769356400014 ], [ -122.446034146999978, 49.197716342000042 ], [ -122.445997755999954, 49.198191940000065 ], [ -122.448975364999924, 49.198290142000097 ] ], [ [ -122.453934662999927, 49.188933121000055 ], [ -122.453949707999953, 49.188736022000072 ], [ -122.452361226, 49.188683706000091 ], [ -122.452341636000014, 49.188940243000054 ], [ -122.452417152999956, 49.18894273100004 ], [ -122.452421692999934, 49.18888329200005 ], [ -122.453934662999927, 49.188933121000055 ] ], [ [ -122.464897481999955, 49.187272098000065 ], [ -122.464930171999967, 49.18684247900007 ], [ -122.464762992999951, 49.186836992000046 ], [ -122.464837027999977, 49.185864028000083 ], [ -122.464509842999945, 49.185853287000064 ], [ -122.464630190999941, 49.184271732000035 ], [ -122.464444369999967, 49.184265630000027 ], [ -122.464409419999981, 49.184724922000093 ], [ -122.464248053999981, 49.184719624000081 ], [ -122.464083326999983, 49.186884124000109 ], [ -122.461515308999978, 49.186799774000136 ], [ -122.461442867999949, 49.187750885000092 ], [ -122.460997415999927, 49.187736248000121 ], [ -122.460987936999985, 49.187860686000143 ], [ -122.461259479999981, 49.187869610000135 ], [ -122.461225642999935, 49.188313832000077 ], [ -122.46292565, 49.188369681000061 ], [ -122.462930418999989, 49.187929119000039 ], [ -122.46453183899996, 49.187936555000107 ], [ -122.464583188999924, 49.187261781000082 ], [ -122.464897481999955, 49.187272098000065 ] ], [ [ -122.453032599999986, 49.185100908000074 ], [ -122.453146256999958, 49.183612095000093 ], [ -122.454015694999939, 49.183640729000061 ], [ -122.454224164999957, 49.180909013000139 ], [ -122.454293849999928, 49.180911308000113 ], [ -122.454432339999983, 49.179096379000065 ], [ -122.454249914999977, 49.179090372000061 ], [ -122.454248792999962, 49.179105083000124 ], [ -122.450868570999987, 49.178993714000036 ], [ -122.450685575999927, 49.181389463000137 ], [ -122.450368587999932, 49.1813790140001 ], [ -122.450315780999944, 49.182070240000073 ], [ -122.450787006999974, 49.182085774000043 ], [ -122.450711043999974, 49.183080212000071 ], [ -122.450916163999977, 49.183086973000087 ], [ -122.45076463599996, 49.185070621000136 ], [ -122.451278873999925, 49.185087569000054 ], [ -122.451198123999944, 49.186144740000032 ], [ -122.45248029399994, 49.186186986000124 ], [ -122.452564398999982, 49.185085484000091 ], [ -122.453032599999986, 49.185100908000074 ] ], [ [ -122.428127440999972, 49.176816699000085 ], [ -122.428116762999977, 49.176955604000071 ], [ -122.428659175999968, 49.176973599000078 ], [ -122.429843931000022, 49.177012892000093 ], [ -122.429851412999952, 49.176915504000142 ], [ -122.429389106999963, 49.176900173000014 ], [ -122.429409228999987, 49.176638309000104 ], [ -122.42885494399999, 49.176619925000118 ], [ -122.428477000999962, 49.176607388000079 ], [ -122.42847607600001, 49.176687648000062 ], [ -122.428475940999974, 49.176699419000059 ], [ -122.428221734999909, 49.176698161000076 ], [ -122.428212406999961, 49.176819518000045 ], [ -122.428127440999972, 49.176816699000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.557547715442452", "sL_AssetLoss": "34580", "sL_BldgLoss": "19280", "sL_StrLoss": "2580", "sL_NStrLoss": "16700", "sL_ContLoss": "15300", "geom_point": "0101000020E61000001494A2957B9D5EC019490E1A72964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.455196116999943, 49.17751114800005 ], [ -122.455091875999969, 49.17666735100007 ], [ -122.454918417999949, 49.174273775000103 ], [ -122.45498631199996, 49.173958117000048 ], [ -122.455065045999945, 49.173591943000069 ], [ -122.459338382999974, 49.173239903000137 ], [ -122.459708483999975, 49.173232801000061 ], [ -122.460282100999976, 49.173406488000083 ], [ -122.460461407999958, 49.173397998000091 ], [ -122.461491277999954, 49.173249897000112 ], [ -122.461742977999933, 49.173264468000092 ], [ -122.461724697999969, 49.173504564000055 ], [ -122.462746931999959, 49.173538156000106 ], [ -122.46276741399997, 49.173269054000123 ], [ -122.463125192999883, 49.173086094000027 ], [ -122.463428984999908, 49.173024908000066 ], [ -122.464650096999975, 49.172922301000071 ], [ -122.46626002, 49.172779843000043 ], [ -122.466310731999926, 49.173598104000106 ], [ -122.466311718999961, 49.173687287000092 ], [ -122.466311797999978, 49.173696278000115 ], [ -122.46631649399994, 49.174111569000061 ], [ -122.46622792, 49.175762293000091 ], [ -122.465600540999958, 49.175795805000078 ], [ -122.465476013999975, 49.176687498000071 ], [ -122.466134396999934, 49.176698799000064 ], [ -122.46608860399999, 49.177352582000061 ], [ -122.460268123999938, 49.17758315800009 ], [ -122.45785253299999, 49.177678757000095 ], [ -122.457880223999979, 49.177315478000082 ], [ -122.456528048999985, 49.177270983000021 ], [ -122.45649285399999, 49.177732542000079 ], [ -122.45522962299998, 49.177782497000116 ], [ -122.455196116999943, 49.17751114800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148357395", "BldgCostT": "99901524", "sL_LossRatio": "0.767785656523802", "sL_AssetLoss": "1496290", "sL_BldgLoss": "1148830", "sL_StrLoss": "570530", "sL_NStrLoss": "578300", "sL_ContLoss": "347460", "geom_point": "0101000020E61000000F6D846EC49F5EC03FB37FF9BF964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.479539911999964, 49.183979506000057 ], [ -122.479548392999959, 49.1825451 ], [ -122.473137126999958, 49.182533321000115 ], [ -122.472354857999932, 49.182531837000042 ], [ -122.471970591999948, 49.182531135000062 ], [ -122.47035132, 49.182528082000054 ], [ -122.468520874999939, 49.182524590000114 ], [ -122.468539249999964, 49.181432190000088 ], [ -122.468546200999953, 49.181017711000052 ], [ -122.46854143799996, 49.18073962600004 ], [ -122.468524541999926, 49.179750772000062 ], [ -122.468449283999988, 49.178573352000086 ], [ -122.468446193999952, 49.178525196000066 ], [ -122.468466113999966, 49.177450697000076 ], [ -122.468543910999969, 49.177166694000043 ], [ -122.468868810999965, 49.176538392000104 ], [ -122.468694296999956, 49.176541597000082 ], [ -122.468405702999974, 49.176639411000096 ], [ -122.467979408999952, 49.176688505000065 ], [ -122.466790980999946, 49.176698503000068 ], [ -122.466339101999949, 49.176702289000062 ], [ -122.466134396999934, 49.176698799000064 ], [ -122.465476013999975, 49.176687498000071 ], [ -122.465600540999958, 49.175795805000078 ], [ -122.46622792, 49.175762293000091 ], [ -122.46631649399994, 49.174111569000061 ], [ -122.466311797999978, 49.173696278000115 ], [ -122.466311718999961, 49.173687287000092 ], [ -122.466310731999926, 49.173598104000106 ], [ -122.46626002, 49.172779843000043 ], [ -122.467643598999985, 49.172657401000102 ], [ -122.468906900999912, 49.172698692 ], [ -122.469840503999976, 49.172596196000036 ], [ -122.473243305999986, 49.172584805000092 ], [ -122.47516420700002, 49.172503610000042 ], [ -122.47631760899999, 49.17236398900009 ], [ -122.477868320999931, 49.172416704000064 ], [ -122.479352489999911, 49.172117614000044 ], [ -122.480656390999982, 49.172015089000119 ], [ -122.481042574999975, 49.171950777000042 ], [ -122.481036494999941, 49.172031061000034 ], [ -122.481379835999988, 49.172042284000057 ], [ -122.481391158999969, 49.171892724000074 ], [ -122.484547, 49.171367099000051 ], [ -122.487374994999982, 49.171109297000086 ], [ -122.489106891999981, 49.170855800000041 ], [ -122.489502822999981, 49.170755518000078 ], [ -122.490317733999987, 49.170782090000102 ], [ -122.491160250999911, 49.170785804000104 ], [ -122.49117515799999, 49.1705883610001 ], [ -122.491303880999965, 49.170578094000078 ], [ -122.492497997999962, 49.170610801000109 ], [ -122.494776404999939, 49.170476912000034 ], [ -122.496107914999968, 49.1704014970001 ], [ -122.502471410999959, 49.170519710000065 ], [ -122.508015212999936, 49.170471196000044 ], [ -122.511113496999926, 49.170753197000124 ], [ -122.511474637999939, 49.170719531000074 ], [ -122.511409094999976, 49.171592729000096 ], [ -122.511865515999943, 49.171607519000069 ], [ -122.511819225999943, 49.172224294000117 ], [ -122.512490072999981, 49.172227128000081 ], [ -122.512492722999937, 49.171957277000068 ], [ -122.512904283999916, 49.171959014000045 ], [ -122.512906931999979, 49.171689164000092 ], [ -122.513730050999939, 49.171692633000099 ], [ -122.513735336999972, 49.171152931000073 ], [ -122.517439336999956, 49.171168468000054 ], [ -122.517436714999917, 49.171438319000124 ], [ -122.517848272999984, 49.17144003700011 ], [ -122.517845653, 49.171709889000084 ], [ -122.518668772999916, 49.171713322000073 ], [ -122.51866354, 49.172253024000014 ], [ -122.51948667, 49.172256451000081 ], [ -122.519484123000026, 49.17251953100002 ], [ -122.519724512999929, 49.172527303000081 ], [ -122.520631529, 49.172531072000019 ], [ -122.520131027999966, 49.173156861000052 ], [ -122.520090630999931, 49.173206284000067 ], [ -122.518739194999952, 49.17500598100002 ], [ -122.518402305, 49.17543213800014 ], [ -122.517877933999969, 49.176072410000117 ], [ -122.51690084399992, 49.176040804000124 ], [ -122.516860192999971, 49.176583180000044 ], [ -122.512141878999955, 49.176430433000128 ], [ -122.512141227000015, 49.17643912900008 ], [ -122.51693433799997, 49.176594296000076 ], [ -122.51689315299997, 49.177143764000057 ], [ -122.516997707999963, 49.177147146000031 ], [ -122.516673960999952, 49.177542420000087 ], [ -122.522225990999985, 49.179455803000081 ], [ -122.5222866619999, 49.179476709000028 ], [ -122.522247847999935, 49.179995333000065 ], [ -122.523951519999969, 49.180050346000094 ], [ -122.524610146, 49.180277269000022 ], [ -122.528394121999895, 49.181580900000029 ], [ -122.52839136099999, 49.181617864000025 ], [ -122.528512786999968, 49.181621778000107 ], [ -122.532834571999913, 49.183110430000077 ], [ -122.53486658199995, 49.183804418000101 ], [ -122.534753484999911, 49.184029303000059 ], [ -122.53270483199999, 49.18402093 ], [ -122.532142197999946, 49.184018625000093 ], [ -122.531318870999925, 49.184015238 ], [ -122.530605337999972, 49.18401231100006 ], [ -122.529233147999946, 49.184006653000033 ], [ -122.522083918999954, 49.183976887000057 ], [ -122.521054762999967, 49.183972561000125 ], [ -122.520409844999918, 49.183969852000068 ], [ -122.520160575999967, 49.18396880300007 ], [ -122.518665910999914, 49.183980734000023 ], [ -122.518144317999926, 49.183984905000074 ], [ -122.517554165999982, 49.183989629000088 ], [ -122.517087219999922, 49.183993337000096 ], [ -122.516661666999966, 49.183996721000035 ], [ -122.515623581999989, 49.184005 ], [ -122.515566612999919, 49.184004106000053 ], [ -122.514592289999953, 49.183988834000075 ], [ -122.51416686099999, 49.183982155000052 ], [ -122.51409825799999, 49.183981098000096 ], [ -122.512708772999957, 49.183959290000075 ], [ -122.511270984999939, 49.183963014000092 ], [ -122.509610825999943, 49.183967298000049 ], [ -122.508622438999964, 49.18396984300005 ], [ -122.506837651999916, 49.183974408000097 ], [ -122.501980400999969, 49.183986646000108 ], [ -122.49731464599995, 49.18399821900006 ], [ -122.496788307999964, 49.183999491000073 ], [ -122.496106739999945, 49.184000822000023 ], [ -122.49279891499999, 49.184007204000103 ], [ -122.491386469999924, 49.184009899000031 ], [ -122.490646398999942, 49.184011300000073 ], [ -122.488326193999953, 49.184004322000035 ], [ -122.487818429999933, 49.184002810000074 ], [ -122.48507396799998, 49.18399447300007 ], [ -122.483797790999972, 49.183990600000122 ], [ -122.483015606999984, 49.18398817700011 ], [ -122.48253534899996, 49.183986732000072 ], [ -122.480902087999965, 49.183981694000082 ], [ -122.479539911999964, 49.183979506000057 ] ], [ [ -122.485889347999944, 49.181686289000027 ], [ -122.485899344999964, 49.181554112000121 ], [ -122.484247626999959, 49.181500194000087 ], [ -122.48423655299996, 49.181646553000078 ], [ -122.483648473999963, 49.18162735 ], [ -122.483647027999979, 49.181646467000078 ], [ -122.483640857999916, 49.181646266000023 ], [ -122.48363959699999, 49.181662940000123 ], [ -122.483954313999959, 49.181673217000053 ], [ -122.483956416999916, 49.181645432000046 ], [ -122.484464818999967, 49.181662033000045 ], [ -122.484466497999946, 49.181639844000117 ], [ -122.485889347999944, 49.181686289000027 ] ], [ [ -122.521361022999912, 49.181727049000102 ], [ -122.521365604999957, 49.181665837000082 ], [ -122.521029726, 49.181654986000098 ], [ -122.521029045999938, 49.181664064000103 ], [ -122.518295000999927, 49.181575696 ], [ -122.518275723999977, 49.181832947000089 ], [ -122.519472669999985, 49.181871643000093 ], [ -122.519472104, 49.18187919300005 ], [ -122.520718996999932, 49.181919489000045 ], [ -122.520734921999946, 49.181706820000095 ], [ -122.521361022999912, 49.181727049000102 ] ], [ [ -122.475370514999952, 49.180281500000156 ], [ -122.475383150999946, 49.180114920000037 ], [ -122.475387366999897, 49.180115058000091 ], [ -122.475549265999959, 49.177980586000146 ], [ -122.475452726, 49.17797742500008 ], [ -122.475285607, 49.180180673000031 ], [ -122.474795151999942, 49.180164617000074 ], [ -122.474787732, 49.180262422000034 ], [ -122.475370514999952, 49.180281500000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.786100196463654", "sL_AssetLoss": "40720", "sL_BldgLoss": "32010", "sL_StrLoss": "16550", "sL_NStrLoss": "15460", "sL_ContLoss": "8710", "geom_point": "0101000020E6100000C2EE6405F99B5EC00C8065632D964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.433963697999943, 49.17329224200008 ], [ -122.433665822999956, 49.173266353000045 ], [ -122.432626634000016, 49.17327699100008 ], [ -122.428950549999954, 49.173400248000107 ], [ -122.427148344999949, 49.173415251000065 ], [ -122.426319625999923, 49.173328269000073 ], [ -122.426190750999965, 49.173306647000068 ], [ -122.425927959999967, 49.173262512000058 ], [ -122.42552333299993, 49.173194572000057 ], [ -122.424803352999945, 49.172995110000144 ], [ -122.424364579999974, 49.172873522000053 ], [ -122.423989517999956, 49.172769618000068 ], [ -122.423945165999967, 49.172756405000044 ], [ -122.423932586999953, 49.172700103000089 ], [ -122.424056394999951, 49.172629530000094 ], [ -122.424406919999953, 49.172631278000068 ], [ -122.424410049999949, 49.172361431000049 ], [ -122.425644728999941, 49.172367578000063 ], [ -122.425646006999969, 49.172257034000019 ], [ -122.426135303999942, 49.172153186000102 ], [ -122.427053900999965, 49.172094791000077 ], [ -122.427658205999947, 49.17216040600011 ], [ -122.430921597999927, 49.172167489000117 ], [ -122.432155013999974, 49.172371109000075 ], [ -122.434111220999966, 49.172839701000044 ], [ -122.437347713999884, 49.172982103000024 ], [ -122.438061083999955, 49.172957900000078 ], [ -122.439815387999914, 49.173083212000101 ], [ -122.441158579999964, 49.173315401000089 ], [ -122.444652805999951, 49.173583085000125 ], [ -122.450619295999942, 49.173836694000059 ], [ -122.452732791999907, 49.173783993 ], [ -122.455065045999945, 49.173591943000069 ], [ -122.45498631199996, 49.173958117000048 ], [ -122.454918417999949, 49.174273775000103 ], [ -122.454140110999958, 49.174270872000115 ], [ -122.448144710999927, 49.174248280000086 ], [ -122.448126785999932, 49.174248206000087 ], [ -122.444168885999929, 49.174039172000093 ], [ -122.442582430999934, 49.173943393000052 ], [ -122.43806808699999, 49.173670756000064 ], [ -122.437837457999962, 49.173656824000048 ], [ -122.436210311999972, 49.173535375 ], [ -122.43551168499998, 49.173455280000098 ], [ -122.434486138999958, 49.17333768200011 ], [ -122.433963697999943, 49.17329224200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9025000", "BldgCostT": "4750000", "sL_LossRatio": "0.669354838709677", "sL_AssetLoss": "49600", "sL_BldgLoss": "33200", "sL_StrLoss": "15300", "sL_NStrLoss": "17900", "sL_ContLoss": "16400", "geom_point": "0101000020E6100000B0A07AB52DA25EC04730BC2FBA964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.532834571999913, 49.183110430000077 ], [ -122.528512786999968, 49.181621778000107 ], [ -122.532743473999943, 49.181758088000066 ], [ -122.532743219999958, 49.181761501000025 ], [ -122.533798037999958, 49.181795461000085 ], [ -122.533792654999971, 49.181867624000112 ], [ -122.535036366000014, 49.181907652000042 ], [ -122.53504275599991, 49.181225559000033 ], [ -122.53463111399999, 49.181223902000085 ], [ -122.534658944999975, 49.178255540000045 ], [ -122.534247330999932, 49.178253881000096 ], [ -122.534252394999939, 49.177714178000087 ], [ -122.533840782999974, 49.177712518000128 ], [ -122.533843318999956, 49.177442666000026 ], [ -122.532608490999905, 49.177437675000078 ], [ -122.532611032999966, 49.177167824000058 ], [ -122.53247412899999, 49.17716726900003 ], [ -122.532454471999984, 49.177430700000045 ], [ -122.526980672, 49.177254274000056 ], [ -122.527156181999956, 49.174905734000042 ], [ -122.527249407999975, 49.173658154000123 ], [ -122.531027393, 49.17377995300005 ], [ -122.531028299999946, 49.17376778400007 ], [ -122.531374682999967, 49.173833805000065 ], [ -122.532360882999967, 49.173890803000049 ], [ -122.534812108999986, 49.174513197000074 ], [ -122.536275893999971, 49.174770901000045 ], [ -122.536437171999964, 49.174809955000107 ], [ -122.536323429999953, 49.17633607500008 ], [ -122.536278699999954, 49.17693620900009 ], [ -122.534671797999977, 49.176884503000082 ], [ -122.534671595999953, 49.176906283000051 ], [ -122.535083199999974, 49.17690794100006 ], [ -122.535080672, 49.177177792000087 ], [ -122.536468034999928, 49.177183369000012 ], [ -122.536524620999899, 49.176424123000082 ], [ -122.53664123599999, 49.174859369000039 ], [ -122.539369996999966, 49.175520093000081 ], [ -122.540878067999955, 49.175948464000037 ], [ -122.541028325999918, 49.175991144000143 ], [ -122.540682098, 49.176475533000051 ], [ -122.54063334599999, 49.176543801000022 ], [ -122.539952355999944, 49.178139240000064 ], [ -122.539909247999944, 49.178240244000051 ], [ -122.539389888999949, 49.178753305000093 ], [ -122.538822403, 49.179391980000084 ], [ -122.53562902099999, 49.182985427000048 ], [ -122.53486658199995, 49.183804418000101 ], [ -122.532834571999913, 49.183110430000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15933083", "BldgCostT": "10988333", "sL_LossRatio": "0.75575379484243", "sL_AssetLoss": "199086", "sL_BldgLoss": "150460", "sL_StrLoss": "72860", "sL_NStrLoss": "77600", "sL_ContLoss": "48626", "geom_point": "0101000020E6100000FAF55C0951A45EC03502F92B47964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.57048840899995, 49.179909924000079 ], [ -122.569683100999939, 49.17974850500012 ], [ -122.569188702999938, 49.179845388000103 ], [ -122.568929286999918, 49.179737200000019 ], [ -122.568916102999978, 49.179520706000126 ], [ -122.568739007999966, 49.179349785000035 ], [ -122.568465393999958, 49.179258608000062 ], [ -122.568257891999963, 49.179218355000046 ], [ -122.568004706999957, 49.179169235000096 ], [ -122.567848788999967, 49.179139007000096 ], [ -122.567763265999986, 49.179144006000072 ], [ -122.566971404999947, 49.17919031200006 ], [ -122.565245010999917, 49.178795697000105 ], [ -122.565085430999929, 49.178771411000078 ], [ -122.565224686999912, 49.176887381000029 ], [ -122.568504923999939, 49.176991974000032 ], [ -122.568599184999954, 49.175715382000085 ], [ -122.565036972999962, 49.175601793000041 ], [ -122.565139421999959, 49.174215659000076 ], [ -122.564745447999954, 49.174203089000095 ], [ -122.56477481899999, 49.173805735000073 ], [ -122.563390425999941, 49.173761553000091 ], [ -122.563415606999925, 49.173421016000077 ], [ -122.560978362999975, 49.173343191000065 ], [ -122.560981938999959, 49.17329487500006 ], [ -122.560324542999965, 49.173273873000063 ], [ -122.56032570899994, 49.173258105000102 ], [ -122.55963252, 49.17323595500006 ], [ -122.559701244999957, 49.172307527000015 ], [ -122.556346461999951, 49.172200270000125 ], [ -122.556543301999938, 49.169543519000086 ], [ -122.558234763999977, 49.169823933000018 ], [ -122.558874611999926, 49.16993000400003 ], [ -122.564260221999973, 49.170679199000048 ], [ -122.56520710400001, 49.170717606000139 ], [ -122.566155406999911, 49.170697787000094 ], [ -122.568473113999943, 49.170649299000054 ], [ -122.570468052999928, 49.171003029000083 ], [ -122.570467188999984, 49.171014730000081 ], [ -122.570548690999942, 49.171017326000019 ], [ -122.571111280000011, 49.171117072000087 ], [ -122.571097346999935, 49.171305921000055 ], [ -122.571668899, 49.171324124000186 ], [ -122.571666168999982, 49.171361145000034 ], [ -122.572262033999891, 49.171380114000073 ], [ -122.572267880999945, 49.171381703000087 ], [ -122.572257123999989, 49.171527523000115 ], [ -122.572714875999949, 49.171542097000014 ], [ -122.572618915999911, 49.172843364000059 ], [ -122.574221492999953, 49.172894371000012 ], [ -122.57422528599993, 49.172452096000086 ], [ -122.574091600999978, 49.172447842000054 ], [ -122.57413028799999, 49.171922996000035 ], [ -122.575542666999937, 49.172409845000068 ], [ -122.574601355999974, 49.17292932800008 ], [ -122.574308843999972, 49.173145258000041 ], [ -122.573683629999906, 49.173612577000036 ], [ -122.57330197, 49.174248071000093 ], [ -122.573176417999946, 49.174566548000023 ], [ -122.573621734999975, 49.174396046000119 ], [ -122.574428974999961, 49.174749098000042 ], [ -122.575139033999974, 49.175101063000064 ], [ -122.576677842, 49.17606776600006 ], [ -122.576587553999957, 49.177293435000124 ], [ -122.573975601999948, 49.177210356000089 ], [ -122.57394246799997, 49.177659797000068 ], [ -122.57066217199997, 49.177555371000068 ], [ -122.57048840899995, 49.179909924000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261824771", "BldgCostT": "171498697", "sL_LossRatio": "0.724911431780869", "sL_AssetLoss": "2893250", "sL_BldgLoss": "2097350", "sL_StrLoss": "876230", "sL_NStrLoss": "1221120", "sL_ContLoss": "795900", "geom_point": "0101000020E610000087F2D43C2AA55EC0A23881C8A6954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.578913810999978, 49.165940096000092 ], [ -122.579535101999952, 49.165324506000111 ], [ -122.580767484999967, 49.1659079020001 ], [ -122.582002914, 49.166488798000046 ], [ -122.581317215999917, 49.167104990000091 ], [ -122.580868148999983, 49.167522933000015 ], [ -122.580545784999956, 49.167822920000063 ], [ -122.579992195999978, 49.168338090000105 ], [ -122.58222269, 49.169300186000044 ], [ -122.583351675999907, 49.169710105000043 ], [ -122.583881805999951, 49.16990261100009 ], [ -122.584188678999936, 49.170018698000021 ], [ -122.585237710999976, 49.170394388000027 ], [ -122.58651912, 49.17087389200001 ], [ -122.586742186, 49.170955800000101 ], [ -122.587063439999923, 49.171080263000057 ], [ -122.587575611999952, 49.171278704 ], [ -122.58680379499998, 49.172002208000073 ], [ -122.581128167, 49.170986838000026 ], [ -122.581023409999943, 49.170968105000064 ], [ -122.580595742999961, 49.170897974000127 ], [ -122.579250875999946, 49.170677401000013 ], [ -122.578436657999973, 49.170502877000068 ], [ -122.577888748999968, 49.170270975000065 ], [ -122.57676890899991, 49.169740599000107 ], [ -122.576056082999941, 49.16941970000002 ], [ -122.575641704999938, 49.169217191000072 ], [ -122.576794494999959, 49.168182401000095 ], [ -122.577790369999931, 49.167250054000078 ], [ -122.57813451, 49.166927852000128 ], [ -122.579096686999932, 49.166027 ], [ -122.578913810999978, 49.165940096000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128815166", "BldgCostT": "86156666", "sL_LossRatio": "0.736316735935849", "sL_AssetLoss": "1874571", "sL_BldgLoss": "1380278", "sL_StrLoss": "624128", "sL_NStrLoss": "756150", "sL_ContLoss": "494293", "geom_point": "0101000020E6100000CFEE036F4CA55EC092B896E20D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.580767484999967, 49.1659079020001 ], [ -122.579535101999952, 49.165324506000111 ], [ -122.578913810999978, 49.165940096000092 ], [ -122.577995810999965, 49.165500812000104 ], [ -122.576871295999979, 49.164960398000105 ], [ -122.575771216999939, 49.164425312000056 ], [ -122.576047758, 49.164168615000037 ], [ -122.576367312999963, 49.163871992000082 ], [ -122.576903916000035, 49.164126968000112 ], [ -122.577024917999907, 49.164122698000078 ], [ -122.577137353999916, 49.164085730000039 ], [ -122.578749416999926, 49.162584249000041 ], [ -122.580517914999959, 49.162627793000055 ], [ -122.582300803999942, 49.162643019000036 ], [ -122.583356115999933, 49.162655257000097 ], [ -122.58389125299999, 49.162661485000058 ], [ -122.585971308999945, 49.16268560200011 ], [ -122.588988498999925, 49.162735299000126 ], [ -122.588734682000023, 49.163521200000019 ], [ -122.585605318999953, 49.166548106000072 ], [ -122.584441988999956, 49.167653904000083 ], [ -122.584189691999924, 49.167534966000069 ], [ -122.583245086, 49.16708969399999 ], [ -122.582002914, 49.166488798000046 ], [ -122.580767484999967, 49.1659079020001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161867916", "BldgCostT": "106431666", "sL_LossRatio": "0.731117704012294", "sL_AssetLoss": "2251580", "sL_BldgLoss": "1646170", "sL_StrLoss": "718500", "sL_NStrLoss": "927670", "sL_ContLoss": "605410", "geom_point": "0101000020E61000000F1714619EA55EC06FE42E8078954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.580545784999956, 49.167822920000063 ], [ -122.580868148999983, 49.167522933000015 ], [ -122.581317215999917, 49.167104990000091 ], [ -122.582002914, 49.166488798000046 ], [ -122.583245086, 49.16708969399999 ], [ -122.584189691999924, 49.167534966000069 ], [ -122.584441988999956, 49.167653904000083 ], [ -122.585605318999953, 49.166548106000072 ], [ -122.588734682000023, 49.163521200000019 ], [ -122.588988498999925, 49.162735299000126 ], [ -122.59026907799992, 49.162755999000034 ], [ -122.590501517999925, 49.162759333000082 ], [ -122.591022369999962, 49.162766806000079 ], [ -122.592033397999984, 49.162781297000024 ], [ -122.591246511999913, 49.165546385000063 ], [ -122.59080649299996, 49.167114918000074 ], [ -122.592043521999983, 49.167264005000064 ], [ -122.593186402999905, 49.167424589000163 ], [ -122.592849673999922, 49.168333102000176 ], [ -122.592303717, 49.169077478000105 ], [ -122.592285076999985, 49.169102932000023 ], [ -122.59225090799994, 49.169149490000031 ], [ -122.591155313999977, 49.170586390000068 ], [ -122.590963920999954, 49.170765102000125 ], [ -122.590531151999983, 49.171149876000101 ], [ -122.590325698999919, 49.171332493000072 ], [ -122.589314895999962, 49.172210612000129 ], [ -122.588958022000014, 49.172021270000123 ], [ -122.588236373999933, 49.171638393000087 ], [ -122.587575611999952, 49.171278704 ], [ -122.587063439999923, 49.171080263000057 ], [ -122.586742186, 49.170955800000101 ], [ -122.58651912, 49.17087389200001 ], [ -122.585237710999976, 49.170394388000027 ], [ -122.584188678999936, 49.170018698000021 ], [ -122.583881805999951, 49.16990261100009 ], [ -122.583351675999907, 49.169710105000043 ], [ -122.58222269, 49.169300186000044 ], [ -122.579992195999978, 49.168338090000105 ], [ -122.580545784999956, 49.167822920000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9862417", "BldgCostT": "6801667", "sL_LossRatio": "0.753493904252156", "sL_AssetLoss": "134520", "sL_BldgLoss": "101360", "sL_StrLoss": "46270", "sL_NStrLoss": "55090", "sL_ContLoss": "33160", "geom_point": "0101000020E610000021440965E7A35EC0C0EC7D2EC3904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.555952274999953, 49.133309499000106 ], [ -122.555964268999972, 49.133147488000148 ], [ -122.555825951999978, 49.133143059000126 ], [ -122.555956584999976, 49.131378591000079 ], [ -122.554627717999921, 49.131336031000103 ], [ -122.554894053999959, 49.127739589000058 ], [ -122.556020791999941, 49.127775676000084 ], [ -122.556053356999939, 49.127335758000044 ], [ -122.555284925999928, 49.127332802000133 ], [ -122.55529357799999, 49.12636534500006 ], [ -122.559125674, 49.127873161000068 ], [ -122.564736687999968, 49.130080475000035 ], [ -122.566159592999924, 49.130640151000073 ], [ -122.566302698999962, 49.130696427 ], [ -122.568992489999943, 49.131754319000066 ], [ -122.57050178599999, 49.132347877000086 ], [ -122.570753462, 49.13344676600007 ], [ -122.566533913999962, 49.133402249000049 ], [ -122.566136303999912, 49.133398045000028 ], [ -122.564381823999938, 49.133379484000059 ], [ -122.559050312999929, 49.133322901000106 ], [ -122.556458888999941, 49.133311694000085 ], [ -122.555952274999953, 49.133309499000106 ] ], [ [ -122.562459597, 49.130568902000078 ], [ -122.562464456000029, 49.130503146000059 ], [ -122.562376655999955, 49.13050034000004 ], [ -122.56244389599999, 49.129590350000029 ], [ -122.561626572999955, 49.129564224000063 ], [ -122.561465792999968, 49.131739532000054 ], [ -122.56144434399998, 49.131738846000104 ], [ -122.56144067799994, 49.131788433000104 ], [ -122.561890692999967, 49.131802819000079 ], [ -122.561983009999935, 49.130553669000093 ], [ -122.562459597, 49.130568902000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8156250", "BldgCostT": "5625000", "sL_LossRatio": "0.764694062091832", "sL_AssetLoss": "99530", "sL_BldgLoss": "76110", "sL_StrLoss": "36630", "sL_NStrLoss": "39480", "sL_ContLoss": "23420", "geom_point": "0101000020E6100000788DE94B27A35EC00AC80BA754904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.547354886999969, 49.130767839000058 ], [ -122.547363106999924, 49.130657078000091 ], [ -122.546208554, 49.130620009000054 ], [ -122.54639281799993, 49.128137919000046 ], [ -122.544909661999966, 49.128090282000109 ], [ -122.54517673, 49.124493845000124 ], [ -122.547996249, 49.124584389000091 ], [ -122.54800561699993, 49.124458113000046 ], [ -122.549936218999932, 49.124520068000031 ], [ -122.549955175999969, 49.124264422000145 ], [ -122.553400193999934, 49.125620261000073 ], [ -122.553206862999943, 49.128229943000115 ], [ -122.55302477399999, 49.128224107000115 ], [ -122.552823298999954, 49.130943243000104 ], [ -122.547354886999969, 49.130767839000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.757741347905282", "sL_AssetLoss": "16470", "sL_BldgLoss": "12480", "sL_StrLoss": "5910", "sL_NStrLoss": "6570", "sL_ContLoss": "3990", "geom_point": "0101000020E61000001A5E5A1E35A35EC08007693AF9904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.547484025999978, 49.131841821000073 ], [ -122.55295256399998, 49.132017219000069 ], [ -122.55285780299999, 49.133296037000072 ], [ -122.549632228999911, 49.133281895000096 ], [ -122.548028451999954, 49.133274832000097 ], [ -122.547377882999939, 49.133271956000058 ], [ -122.547484025999978, 49.131841821000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.785622593068036", "sL_AssetLoss": "7790", "sL_BldgLoss": "6120", "sL_StrLoss": "2830", "sL_NStrLoss": "3290", "sL_ContLoss": "1670", "geom_point": "0101000020E6100000A799AC5900A35EC03125B3F6CE8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.545638747999988, 49.123894711000077 ], [ -122.545734635999935, 49.122603101000081 ], [ -122.546566927999919, 49.122930731000068 ], [ -122.547286768, 49.123214097000151 ], [ -122.547728724999914, 49.123388067000157 ], [ -122.549315798999913, 49.124012764000064 ], [ -122.545638747999988, 49.123894711000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106531500", "BldgCostT": "70995000", "sL_LossRatio": "0.73914895070836", "sL_AssetLoss": "1258611", "sL_BldgLoss": "930301", "sL_StrLoss": "447560", "sL_NStrLoss": "482741", "sL_ContLoss": "328310", "geom_point": "0101000020E610000091268C033BA15EC0B5496671568F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.525645544999975, 49.132411231000049 ], [ -122.525176272999929, 49.132125710000032 ], [ -122.524306699999897, 49.131621699000029 ], [ -122.523410062999929, 49.130965810000092 ], [ -122.522881081999941, 49.130578835000094 ], [ -122.522857902999945, 49.130561901000071 ], [ -122.52199647899999, 49.130260997000121 ], [ -122.520621279999929, 49.130134707000067 ], [ -122.51975360299997, 49.130055002000077 ], [ -122.519104015999972, 49.129810454000072 ], [ -122.518038301, 49.129409203000087 ], [ -122.516324362999939, 49.128955763000135 ], [ -122.516147592000024, 49.128908990000113 ], [ -122.515415928999928, 49.128569642000087 ], [ -122.514854846999981, 49.128309386000069 ], [ -122.514733312999908, 49.128252996000079 ], [ -122.514736030999941, 49.127654045000071 ], [ -122.514738148, 49.127195281000112 ], [ -122.514743479999936, 49.126025931000086 ], [ -122.514744008999969, 49.125915498000019 ], [ -122.513368554999943, 49.125867509000088 ], [ -122.509339402999942, 49.125726820000082 ], [ -122.505673739, 49.125590362000068 ], [ -122.505600217, 49.12340406100008 ], [ -122.505607285999957, 49.1232795600001 ], [ -122.505635612999967, 49.12277974100008 ], [ -122.505874562, 49.118564935000038 ], [ -122.505673509999937, 49.114908484000075 ], [ -122.513483851000018, 49.114945129000041 ], [ -122.514388236999935, 49.114949349000078 ], [ -122.514958159999964, 49.11495203700008 ], [ -122.514967944999981, 49.114368814000095 ], [ -122.514973380999947, 49.114044968000073 ], [ -122.51497593499991, 49.113892048000068 ], [ -122.514987669999968, 49.113192807000061 ], [ -122.514987839999947, 49.113183757000122 ], [ -122.515013814999918, 49.11133696600006 ], [ -122.514382224999906, 49.111333508000087 ], [ -122.512080364, 49.111320824000089 ], [ -122.511820046999986, 49.111319374000026 ], [ -122.510956790999927, 49.111314584000091 ], [ -122.510175908999983, 49.111310255000085 ], [ -122.508463182999947, 49.111300750000041 ], [ -122.507928799999917, 49.111297763000024 ], [ -122.507216344999932, 49.111293794000034 ], [ -122.505726966999973, 49.111285488000135 ], [ -122.505352961999932, 49.111283390000054 ], [ -122.503078447999954, 49.111270651000019 ], [ -122.49917339299999, 49.111248645000053 ], [ -122.496926309999935, 49.111235920000063 ], [ -122.496309714999967, 49.111232422000072 ], [ -122.495994523999968, 49.111230643000098 ], [ -122.494317570999954, 49.111221090000122 ], [ -122.49271700499996, 49.11119409200014 ], [ -122.492722409999956, 49.11021621600004 ], [ -122.492731038999963, 49.10866004400004 ], [ -122.492734052999964, 49.108111339000097 ], [ -122.492737091, 49.107564278000069 ], [ -122.492738495999916, 49.107301706000101 ], [ -122.492741739999957, 49.106699074000112 ], [ -122.492747234999982, 49.105673597000077 ], [ -122.492754309999896, 49.104351421000125 ], [ -122.492756774999975, 49.103885731000098 ], [ -122.49278472, 49.102351705000039 ], [ -122.492793029999973, 49.102066238000042 ], [ -122.492797707999955, 49.101906012000057 ], [ -122.492800182999972, 49.101818603000019 ], [ -122.493700089999933, 49.102172202000119 ], [ -122.494413747999886, 49.102452625000062 ], [ -122.498328167999915, 49.103990526000075 ], [ -122.498422200999968, 49.10402748300006 ], [ -122.500092680999984, 49.104683702000059 ], [ -122.500347424999973, 49.104783712000014 ], [ -122.500751057999963, 49.104942190000067 ], [ -122.50174555599996, 49.105332643000089 ], [ -122.503080396, 49.105856715000051 ], [ -122.504435568999924, 49.106388737000032 ], [ -122.505572526999956, 49.106835096000069 ], [ -122.50638159099999, 49.107152667000044 ], [ -122.507134408999903, 49.107448174000105 ], [ -122.507026660999927, 49.108883949000102 ], [ -122.50846707699999, 49.108930743000066 ], [ -122.508449783999978, 49.109161266000115 ], [ -122.508726008999972, 49.109170238000054 ], [ -122.508726160999942, 49.109168220000093 ], [ -122.509833516999947, 49.10920417800002 ], [ -122.509835415999959, 49.109178846000106 ], [ -122.510230559999968, 49.109191675000027 ], [ -122.510235737999935, 49.108665456000033 ], [ -122.510607307999948, 49.108811288 ], [ -122.512142111999935, 49.109413635000131 ], [ -122.514969274999913, 49.11052310900007 ], [ -122.515012754999958, 49.110540143000037 ], [ -122.517413663999932, 49.111482223000017 ], [ -122.524116880999941, 49.114111962000081 ], [ -122.524728205999949, 49.114351749000043 ], [ -122.526023886999894, 49.114859986000042 ], [ -122.52708452499995, 49.115275979000089 ], [ -122.527026555999967, 49.116052743000076 ], [ -122.52786570499994, 49.116079845000051 ], [ -122.527764770999937, 49.117432597000082 ], [ -122.527838853999981, 49.11743498900006 ], [ -122.527906973999933, 49.116522004000039 ], [ -122.530472961999976, 49.116604837000082 ], [ -122.533298082999977, 49.117712652000066 ], [ -122.533279066999981, 49.117967914000083 ], [ -122.533656907999926, 49.117980096000068 ], [ -122.533619802999922, 49.118478230000015 ], [ -122.535014059999938, 49.118523170000081 ], [ -122.535024021999902, 49.11838938100005 ], [ -122.536208495999972, 49.118853776000101 ], [ -122.537029591999925, 49.119175690000091 ], [ -122.538204180999983, 49.119638243000125 ], [ -122.538940639999936, 49.119928237000067 ], [ -122.538932503999973, 49.120037626000084 ], [ -122.539243900999963, 49.120047649000114 ], [ -122.541845877999933, 49.121072143000085 ], [ -122.540956700999956, 49.121043543000035 ], [ -122.540759105999911, 49.12370145600007 ], [ -122.540505328999956, 49.123693292000063 ], [ -122.540498631999952, 49.123783356000033 ], [ -122.541000997999959, 49.123799516000055 ], [ -122.540932454999933, 49.124721486000119 ], [ -122.541141648999968, 49.124728215000033 ], [ -122.541049498999911, 49.125967750000065 ], [ -122.54157361199999, 49.125984606000074 ], [ -122.541557625999957, 49.126199655000036 ], [ -122.54254783099999, 49.126203583000112 ], [ -122.542535416999939, 49.127552852000044 ], [ -122.54212422099999, 49.127551222000108 ], [ -122.542121737999977, 49.127821076000089 ], [ -122.541437297999906, 49.127818360000106 ], [ -122.541306255999956, 49.129581025000029 ], [ -122.54104777399999, 49.12957271199999 ], [ -122.540919035999963, 49.131304130000032 ], [ -122.536813040000013, 49.131171999000031 ], [ -122.535450625999886, 49.131128121000074 ], [ -122.535469650999929, 49.130872671000091 ], [ -122.534648014999973, 49.130846201000089 ], [ -122.534652220999959, 49.130789750000119 ], [ -122.532660149999941, 49.130725548000093 ], [ -122.532928178999953, 49.127129156000052 ], [ -122.53334383, 49.127142556000102 ], [ -122.533472273999976, 49.125418704000047 ], [ -122.533401033999951, 49.125329761000046 ], [ -122.533487027999911, 49.125300017000029 ], [ -122.533541432999968, 49.124569791000049 ], [ -122.532682857999973, 49.124542111 ], [ -122.53260778, 49.125549548000059 ], [ -122.52950294199999, 49.125449394000043 ], [ -122.529353852999975, 49.127448021000134 ], [ -122.52806748899998, 49.127406500000063 ], [ -122.527985356999963, 49.128507051000014 ], [ -122.527391485999928, 49.128487876000122 ], [ -122.525901854000011, 49.128439767 ], [ -122.5258431, 49.129226559000188 ], [ -122.527061245999946, 49.129265902000043 ], [ -122.527036864999957, 49.129592505000069 ], [ -122.527492071999987, 49.129607204000074 ], [ -122.527621646999975, 49.129611388000072 ], [ -122.527606866999932, 49.129809412000029 ], [ -122.528181841, 49.129827974000108 ], [ -122.528141162999958, 49.130373031000076 ], [ -122.529950711999959, 49.130431428000087 ], [ -122.52990577099996, 49.131033911000046 ], [ -122.532611055999979, 49.13112115900001 ], [ -122.532531066999951, 49.132194332000033 ], [ -122.533877235999924, 49.132237722000099 ], [ -122.533913881000018, 49.131745894000105 ], [ -122.534848520999944, 49.131776010000074 ], [ -122.534855045999933, 49.131688417000063 ], [ -122.536804079, 49.131751191000049 ], [ -122.540323519999916, 49.131864456000116 ], [ -122.540258962999957, 49.132732483000055 ], [ -122.540270674999974, 49.132732859000029 ], [ -122.54026954899993, 49.132748012000022 ], [ -122.543356967999955, 49.132847277000046 ], [ -122.543326747999984, 49.133253968000126 ], [ -122.538569807999949, 49.133232651000093 ], [ -122.53678133799994, 49.133224605000045 ], [ -122.53634912699998, 49.133222678000031 ], [ -122.53377202199999, 49.133211173000113 ], [ -122.532702818999937, 49.133206357000113 ], [ -122.531948841999949, 49.133202976000113 ], [ -122.531085275999914, 49.133199099000109 ], [ -122.528302554999982, 49.133186512000066 ], [ -122.527813568999974, 49.133184313000079 ], [ -122.527576004999986, 49.133183226000028 ], [ -122.527166783, 49.13318137000001 ], [ -122.526900487999953, 49.133132215000018 ], [ -122.526687190999937, 49.133052330000069 ], [ -122.526654939999972, 49.13303250600012 ], [ -122.525645544999975, 49.132411231000049 ] ], [ [ -122.524072408999956, 49.124775588000084 ], [ -122.52415462799999, 49.12367503500009 ], [ -122.527259334999954, 49.123775342000073 ], [ -122.527408501999943, 49.121776708000048 ], [ -122.528265402, 49.12180437700011 ], [ -122.528294664000015, 49.121412187000011 ], [ -122.527921748999972, 49.121400146000049 ], [ -122.527948352999957, 49.121043623000077 ], [ -122.524172840999981, 49.120921647000038 ], [ -122.52422226499999, 49.120259994000087 ], [ -122.52176864099999, 49.120180654000102 ], [ -122.52176224399993, 49.120266225000059 ], [ -122.518808491999962, 49.120170637000037 ], [ -122.518798626999939, 49.120302496000072 ], [ -122.518545697999954, 49.120294307000059 ], [ -122.51840982799996, 49.12211019500009 ], [ -122.518432021999942, 49.12211091200011 ], [ -122.518316976999984, 49.12364838000007 ], [ -122.518475616, 49.123653516000068 ], [ -122.518454424999945, 49.123936708000038 ], [ -122.518633726999937, 49.123942512000028 ], [ -122.518593642000027, 49.124478252000067 ], [ -122.520163806999975, 49.124529073000133 ], [ -122.520120761999962, 49.125104611000033 ], [ -122.52275206399996, 49.125189725000048 ], [ -122.522786122999946, 49.124734004000096 ], [ -122.524072408999956, 49.124775588000084 ] ], [ [ -122.511772803999975, 49.124554308 ], [ -122.511831521999937, 49.123771095000038 ], [ -122.511711708999954, 49.123767208000061 ], [ -122.511761692999968, 49.123100502000042 ], [ -122.511724949999959, 49.12309931000005 ], [ -122.511729573999929, 49.123037636000056 ], [ -122.51148256499999, 49.123029623000072 ], [ -122.511431218999945, 49.123714464000074 ], [ -122.510616235, 49.123688022000124 ], [ -122.510611009999963, 49.123757692000069 ], [ -122.511024696999954, 49.123771115000068 ], [ -122.510967923999928, 49.124528197000132 ], [ -122.511772803999975, 49.124554308 ] ], [ [ -122.53372736099999, 49.122589846000039 ], [ -122.53363907, 49.123774998000094 ], [ -122.53386385099999, 49.123782244000097 ], [ -122.533865530999918, 49.123759696000029 ], [ -122.533747617999964, 49.123755895000059 ], [ -122.533834227999975, 49.122593291000044 ], [ -122.53372736099999, 49.122589846000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96982084", "BldgCostT": "63408334", "sL_LossRatio": "0.733373702932819", "sL_AssetLoss": "1118003", "sL_BldgLoss": "819914", "sL_StrLoss": "396164", "sL_NStrLoss": "423750", "sL_ContLoss": "298089", "geom_point": "0101000020E6100000A11096EB0CA25EC085400D63FB8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.535059373999943, 49.117914617000082 ], [ -122.535080408999988, 49.117632120000096 ], [ -122.534789333999967, 49.117622739000133 ], [ -122.535057122999945, 49.114026270000082 ], [ -122.535294420999946, 49.114033918000075 ], [ -122.535311214999965, 49.113808334000119 ], [ -122.533744133999988, 49.113757821000085 ], [ -122.533860475, 49.112195735000064 ], [ -122.533419518999935, 49.11218151700006 ], [ -122.533503424999964, 49.111054999 ], [ -122.532410299999967, 49.111050578000096 ], [ -122.532407763999927, 49.111320432000063 ], [ -122.529941395999984, 49.111310415000077 ], [ -122.529943946999964, 49.111040562000049 ], [ -122.529532887999892, 49.111038887000063 ], [ -122.529535438999957, 49.110769033000089 ], [ -122.529434591, 49.110768622000094 ], [ -122.529313110999979, 49.112397664000071 ], [ -122.527763956999962, 49.112347642000039 ], [ -122.527648627999909, 49.113893402000045 ], [ -122.527188807999948, 49.113878550000095 ], [ -122.527121056999988, 49.114786454000075 ], [ -122.52708452499995, 49.115275979000089 ], [ -122.526023886999894, 49.114859986000042 ], [ -122.526028874999966, 49.11436059200004 ], [ -122.526058612999961, 49.111373596000092 ], [ -122.526061768999966, 49.109970951000058 ], [ -122.52606281199995, 49.109518899000072 ], [ -122.526120893999973, 49.107693798000042 ], [ -122.526143596999944, 49.105884804000027 ], [ -122.526156810999979, 49.104001491000126 ], [ -122.530004575999982, 49.103990548000041 ], [ -122.531618497999929, 49.103985886000075 ], [ -122.537089983999934, 49.103984708000105 ], [ -122.537079977999923, 49.105868104000066 ], [ -122.537083701999919, 49.106624661000076 ], [ -122.537087062999916, 49.107308327000133 ], [ -122.537088899999929, 49.107682698000119 ], [ -122.537120512999977, 49.108564308000098 ], [ -122.537109436999955, 49.110042842000048 ], [ -122.537099269999956, 49.111401144000062 ], [ -122.537086126999924, 49.113164207000096 ], [ -122.537076618999961, 49.114432511000039 ], [ -122.53707250799998, 49.114981228000055 ], [ -122.537067190999934, 49.115691830000081 ], [ -122.537053277999959, 49.117555559000081 ], [ -122.537052720999952, 49.117627523000046 ], [ -122.537049011999954, 49.118123597000114 ], [ -122.537044288999965, 49.118444307000026 ], [ -122.537040572999942, 49.118696494000076 ], [ -122.537029591999925, 49.119175690000091 ], [ -122.536208495999972, 49.118853776000101 ], [ -122.535024021999902, 49.11838938100005 ], [ -122.535059373999943, 49.117914617000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.774193548387097", "sL_AssetLoss": "14880", "sL_BldgLoss": "11520", "sL_StrLoss": "5380", "sL_NStrLoss": "6140", "sL_ContLoss": "3360", "geom_point": "0101000020E61000002909268A12A25EC0B67A9807FA8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.531853746, 49.116649385000095 ], [ -122.533373639999951, 49.116698400000047 ], [ -122.533333772999981, 49.11723356000001 ], [ -122.533298082999977, 49.117712652000066 ], [ -122.530472961999976, 49.116604837000082 ], [ -122.531853746, 49.116649385000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140950394", "BldgCostT": "93466523", "sL_LossRatio": "0.733364835438202", "sL_AssetLoss": "1680311", "sL_BldgLoss": "1232281", "sL_StrLoss": "568971", "sL_NStrLoss": "663310", "sL_ContLoss": "448030", "geom_point": "0101000020E6100000A34496F5B0A15EC07F29B82FD28B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.51513917799997, 49.104045893000041 ], [ -122.515114783999962, 49.100750158000018 ], [ -122.51510924899999, 49.100003599000111 ], [ -122.515108294999933, 49.099868686000086 ], [ -122.515100272999987, 49.098789129000032 ], [ -122.515089012000018, 49.097268827000086 ], [ -122.515086226999955, 49.09689103500002 ], [ -122.515084431999952, 49.096648200000111 ], [ -122.515083764999943, 49.096557853000071 ], [ -122.515083159999932, 49.096477288000123 ], [ -122.515075321999973, 49.095415721000116 ], [ -122.5150645499999, 49.093958381000071 ], [ -122.515062286999949, 49.093652572000067 ], [ -122.515061875999947, 49.093598594000106 ], [ -122.515060213999902, 49.093373729000056 ], [ -122.515044762999963, 49.091286568000022 ], [ -122.515040877999951, 49.090764875000026 ], [ -122.515037790999884, 49.090342125000078 ], [ -122.515030408999948, 49.089345595000111 ], [ -122.51503844799997, 49.087805320000037 ], [ -122.515041787000015, 49.087166653000054 ], [ -122.515047081999967, 49.086150177000107 ], [ -122.515051175999943, 49.085367609000073 ], [ -122.515054545999973, 49.084719946000057 ], [ -122.515057885, 49.084081286000085 ], [ -122.515067287999941, 49.082282171 ], [ -122.515068246999945, 49.082099481000036 ], [ -122.51507072199999, 49.081625503000026 ], [ -122.515079494999924, 49.079944509000065 ], [ -122.51737193699995, 49.079857242000074 ], [ -122.519304297999923, 49.079783633000048 ], [ -122.524674953, 49.079578914000052 ], [ -122.525769841999974, 49.079537132000098 ], [ -122.527633077999965, 49.079466018000048 ], [ -122.528085909999945, 49.079448727000027 ], [ -122.52922438899995, 49.079405264000073 ], [ -122.530182840999899, 49.079368647000123 ], [ -122.534360369999931, 49.079208995000037 ], [ -122.53492234, 49.079187507000078 ], [ -122.535767305999954, 49.079155215000114 ], [ -122.536928412999913, 49.079205311000067 ], [ -122.536924925000022, 49.080023906000058 ], [ -122.536922382999933, 49.08061758400008 ], [ -122.536922353999969, 49.080627688000085 ], [ -122.536921278999955, 49.08087844200012 ], [ -122.536917627999969, 49.0817440020001 ], [ -122.53691838899999, 49.081795169000046 ], [ -122.536949201999931, 49.083720274000072 ], [ -122.536952501999963, 49.083926307000056 ], [ -122.537003388999949, 49.085843310000058 ], [ -122.537007187999976, 49.085987183000064 ], [ -122.53701626899999, 49.086329273000104 ], [ -122.537040621999921, 49.087246837000031 ], [ -122.537056174999947, 49.087831699000034 ], [ -122.537068342999987, 49.0882905 ], [ -122.537079090999939, 49.088695315000095 ], [ -122.537088640999954, 49.089055175000041 ], [ -122.53709508299994, 49.089298188000093 ], [ -122.537094761999953, 49.08933513800006 ], [ -122.537090914999965, 49.08973992500011 ], [ -122.537089805999983, 49.089856858000125 ], [ -122.537087237999927, 49.090126696000041 ], [ -122.537085607999984, 49.090297619000047 ], [ -122.537082714999912, 49.090607397000056 ], [ -122.537082018999939, 49.090684390000128 ], [ -122.537079513999942, 49.090963230000071 ], [ -122.53707153, 49.091853753000095 ], [ -122.537061697999945, 49.092951012000043 ], [ -122.537051417000015, 49.093850741000054 ], [ -122.537019396999966, 49.096650400000058 ], [ -122.537029534999945, 49.097673198000059 ], [ -122.537032633999914, 49.097988119000085 ], [ -122.537037107999979, 49.098437834 ], [ -122.537047813999962, 49.099517269000039 ], [ -122.537052602999921, 49.100002965000066 ], [ -122.537055598999984, 49.100305511000094 ], [ -122.537068076999958, 49.102153684000037 ], [ -122.537069844999976, 49.102414619000051 ], [ -122.537072683999952, 49.102836795000051 ], [ -122.53707969199999, 49.103479688000071 ], [ -122.537089983999934, 49.103984708000105 ], [ -122.531618497999929, 49.103985886000075 ], [ -122.530004575999982, 49.103990548000041 ], [ -122.526156810999979, 49.104001491000126 ], [ -122.525318652999928, 49.104004909000054 ], [ -122.52242818799999, 49.104016664 ], [ -122.522113102, 49.104017913000121 ], [ -122.520742891999987, 49.104023468000086 ], [ -122.520359475999967, 49.104025001000139 ], [ -122.519400538999903, 49.104028865000132 ], [ -122.51513917799997, 49.104045893000041 ] ], [ [ -122.520580606999914, 49.101556788000053 ], [ -122.52059360199999, 49.100207517000044 ], [ -122.520182632999962, 49.100205810000041 ], [ -122.520190436999897, 49.09939624700008 ], [ -122.523067172999944, 49.099408168000075 ], [ -122.523069758999924, 49.099138314000079 ], [ -122.523130262, 49.099138563000047 ], [ -122.523170558999965, 49.098598999000053 ], [ -122.523074928999947, 49.098598604000109 ], [ -122.523075895999952, 49.098497799000022 ], [ -122.523004078999946, 49.098495475000021 ], [ -122.523016547999958, 49.098328498000114 ], [ -122.521022748999954, 49.098320243000067 ], [ -122.52103832799996, 49.096701116000062 ], [ -122.522271148999934, 49.096706224000059 ], [ -122.522273736999935, 49.096436369000088 ], [ -122.52308881699993, 49.096439740000115 ], [ -122.523240896999951, 49.094403227000022 ], [ -122.524023960999955, 49.094428558000068 ], [ -122.524024363999956, 49.094423146000096 ], [ -122.52423411599996, 49.094429931000029 ], [ -122.524428692999933, 49.091823348000077 ], [ -122.525059693999978, 49.09184375600011 ], [ -122.525078635999961, 49.091589951000067 ], [ -122.521490354999983, 49.091473854000064 ], [ -122.52149663899992, 49.091389737000057 ], [ -122.521151850999956, 49.091378575000107 ], [ -122.521116932, 49.091845923000086 ], [ -122.518596024999937, 49.091764280000064 ], [ -122.518552258999961, 49.092349620000036 ], [ -122.519848139999979, 49.09239159700013 ], [ -122.519579301999897, 49.095988148000131 ], [ -122.519234773999983, 49.095976989000036 ], [ -122.519023536999939, 49.098802254000134 ], [ -122.518963259999921, 49.098800301000061 ], [ -122.518962767999966, 49.098851408000037 ], [ -122.51886124899994, 49.09885098400008 ], [ -122.518844553999983, 49.099074237000089 ], [ -122.519029783999954, 49.099080237000095 ], [ -122.518951683999944, 49.100124711000085 ], [ -122.518980348999946, 49.10012564000003 ], [ -122.51888165299998, 49.101445499000079 ], [ -122.519407615999967, 49.101462533000081 ], [ -122.519401167999959, 49.101548766000157 ], [ -122.520169446999901, 49.101573643000037 ], [ -122.520169625, 49.101555081000051 ], [ -122.520580606999914, 49.101556788000053 ] ], [ [ -122.531368067999949, 49.090770041000027 ], [ -122.531370263999946, 49.090536618000101 ], [ -122.532019928999929, 49.090539254000085 ], [ -122.532080206999979, 49.089729902000023 ], [ -122.531788766999952, 49.089728720000011 ], [ -122.531796379999946, 49.088919154000088 ], [ -122.532140482999978, 49.088920550000054 ], [ -122.532269733999968, 49.087184924000034 ], [ -122.533045083999966, 49.087209945000041 ], [ -122.53304925399999, 49.086765304000025 ], [ -122.532638393999903, 49.086763642000058 ], [ -122.532638746999964, 49.08672602700004 ], [ -122.53260265499992, 49.086724862000075 ], [ -122.53261531599999, 49.086554823000064 ], [ -122.531723534999969, 49.086526040000052 ], [ -122.531758083999989, 49.08606214800011 ], [ -122.530570622999932, 49.086023810000057 ], [ -122.530832436999958, 49.082509332000043 ], [ -122.526012981999969, 49.082353598000054 ], [ -122.526040859999952, 49.081979866000033 ], [ -122.52499738099999, 49.081946119000108 ], [ -122.524961563999938, 49.082426158000018 ], [ -122.523712338999943, 49.082385743000067 ], [ -122.52369922099993, 49.082561487000092 ], [ -122.520517748999964, 49.082458496000065 ], [ -122.52025277199999, 49.086004861000028 ], [ -122.518778212999962, 49.085957094000044 ], [ -122.518741915999925, 49.086442635000068 ], [ -122.520934439999962, 49.0865136520001 ], [ -122.520889675999967, 49.087112799000082 ], [ -122.523867374999924, 49.087209176000094 ], [ -122.523823035999982, 49.087803157000124 ], [ -122.524745697999947, 49.087833004000117 ], [ -122.524810746999975, 49.086961344000059 ], [ -122.53027393499994, 49.087137905000098 ], [ -122.530174771999896, 49.088468739000099 ], [ -122.530786599999928, 49.088488495000036 ], [ -122.530618415999982, 49.090745840000089 ], [ -122.531368067999949, 49.090770041000027 ] ], [ [ -122.531506883999924, 49.082110492000062 ], [ -122.531481751999962, 49.082447943000069 ], [ -122.53359277, 49.082516077000093 ], [ -122.533641355999947, 49.081863302000059 ], [ -122.533241796999931, 49.081850410000087 ], [ -122.533240668999952, 49.081865559000072 ], [ -122.532337395999917, 49.081836408000051 ], [ -122.532315045999979, 49.082136581000086 ], [ -122.531506883999924, 49.082110492000062 ] ], [ [ -122.5326005, 49.090800854000051 ], [ -122.53260041499999, 49.090809814000089 ], [ -122.533630513999967, 49.0908430490001 ], [ -122.533631180999933, 49.090834107000042 ], [ -122.5326005, 49.090800854000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97360500", "BldgCostT": "64200000", "sL_LossRatio": "0.740365588544086", "sL_AssetLoss": "1024868", "sL_BldgLoss": "758777", "sL_StrLoss": "364937", "sL_NStrLoss": "393840", "sL_ContLoss": "266091", "geom_point": "0101000020E61000000FDCAAB916A05EC07054D93D9A8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.510235737999935, 49.108665456000033 ], [ -122.510237073999988, 49.108529858000104 ], [ -122.509886455999904, 49.108528368000165 ], [ -122.509416797999947, 49.108344035000073 ], [ -122.509420321999983, 49.107986660000044 ], [ -122.508496273999924, 49.107982729000042 ], [ -122.508188405999945, 49.107861889000112 ], [ -122.508189890999958, 49.10771156000002 ], [ -122.50780119699999, 49.107709903000057 ], [ -122.507369490999977, 49.107540450000023 ], [ -122.507370502999905, 49.107438202000019 ], [ -122.507135232999957, 49.107437197000088 ], [ -122.507134408999903, 49.107448174000105 ], [ -122.50638159099999, 49.107152667000044 ], [ -122.505572526999956, 49.106835096000069 ], [ -122.504435568999924, 49.106388737000032 ], [ -122.503080396, 49.105856715000051 ], [ -122.50174555599996, 49.105332643000089 ], [ -122.500751057999963, 49.104942190000067 ], [ -122.500347424999973, 49.104783712000014 ], [ -122.500092680999984, 49.104683702000059 ], [ -122.498422200999968, 49.10402748300006 ], [ -122.498328167999915, 49.103990526000075 ], [ -122.494413747999886, 49.102452625000062 ], [ -122.493700089999933, 49.102172202000119 ], [ -122.492800182999972, 49.101818603000019 ], [ -122.492710849999952, 49.101783601000129 ], [ -122.492437236999976, 49.101676516000062 ], [ -122.492261694999954, 49.101607817000065 ], [ -122.49137733099991, 49.101261612000059 ], [ -122.490716952999904, 49.101003065000086 ], [ -122.490445895999983, 49.100896958000057 ], [ -122.489610207999931, 49.100569803000077 ], [ -122.488290306, 49.100044811000089 ], [ -122.486825548999931, 49.099462185000085 ], [ -122.48806301799999, 49.099461073000057 ], [ -122.487087817999935, 49.099078369000068 ], [ -122.486043681999917, 49.098668597000028 ], [ -122.485985219999947, 49.098645620000063 ], [ -122.485527573999931, 49.098465609000165 ], [ -122.484668948999968, 49.098127899000104 ], [ -122.483856817999936, 49.097808483000108 ], [ -122.481549202999972, 49.096900810000101 ], [ -122.480622099999906, 49.096536124000153 ], [ -122.479070054999937, 49.09592556100008 ], [ -122.478543947999924, 49.095718596000069 ], [ -122.476952068999964, 49.095092312000098 ], [ -122.475561541, 49.094545217000054 ], [ -122.474418914999916, 49.094095621000065 ], [ -122.47419726899993, 49.094008421000048 ], [ -122.470672029, 49.092621233000067 ], [ -122.468247908999913, 49.091667209000072 ], [ -122.468273180999958, 49.091334037000095 ], [ -122.46732195099996, 49.091302768000034 ], [ -122.466348428999964, 49.090919592000056 ], [ -122.466369531999973, 49.09064151900003 ], [ -122.465575624999985, 49.090615407000058 ], [ -122.460222654999924, 49.088508151000035 ], [ -122.460218578999971, 49.088214499000074 ], [ -122.463051794999942, 49.089344392000065 ], [ -122.464782595999935, 49.089348653000073 ], [ -122.465850852999921, 49.08935128300007 ], [ -122.470363508999966, 49.089362212000012 ], [ -122.475767228999928, 49.089357184000093 ], [ -122.478136997999968, 49.089354904000125 ], [ -122.482046062999927, 49.089362276000074 ], [ -122.48194568299999, 49.090690872000025 ], [ -122.480571648999899, 49.090645876000082 ], [ -122.480564329999964, 49.090742705000075 ], [ -122.480086600999982, 49.090727057000073 ], [ -122.480020555999957, 49.091600717000063 ], [ -122.479484112999927, 49.091583143000044 ], [ -122.47946961599996, 49.091774883000035 ], [ -122.480103661999934, 49.09179565400003 ], [ -122.480060560000013, 49.092365811000043 ], [ -122.480437184999928, 49.092378148000137 ], [ -122.480338533999969, 49.093683173000088 ], [ -122.481630963999962, 49.093725497000044 ], [ -122.481727187, 49.092452119000065 ], [ -122.48330190799993, 49.092503666000077 ], [ -122.483329740000016, 49.092135157000065 ], [ -122.488793374999943, 49.092313825000062 ], [ -122.488771050999929, 49.092609866000039 ], [ -122.489466028, 49.09263257200012 ], [ -122.489479672999892, 49.092451606000033 ], [ -122.490852385999972, 49.092496443000066 ], [ -122.491048351999964, 49.089896136000128 ], [ -122.49234034399997, 49.08993832100002 ], [ -122.492344180999922, 49.089561989000053 ], [ -122.492853644999954, 49.089564228000022 ], [ -122.493576818999912, 49.089567402000078 ], [ -122.493572636999957, 49.089978541000129 ], [ -122.496312075999953, 49.090067902000079 ], [ -122.496348849999933, 49.089579175000075 ], [ -122.495984036999971, 49.08956727900005 ], [ -122.49599835399998, 49.089377020000029 ], [ -122.496174782999944, 49.087032358000037 ], [ -122.496117497999961, 49.087030490000068 ], [ -122.496132863999932, 49.086826266000095 ], [ -122.495074973999962, 49.086791762000075 ], [ -122.495155539, 49.085721334000034 ], [ -122.498731793, 49.085724292000101 ], [ -122.499132681999967, 49.08572458900008 ], [ -122.499982087999939, 49.08572689500005 ], [ -122.501691542999978, 49.085731504000101 ], [ -122.501660338, 49.086146899000028 ], [ -122.501717621999973, 49.086148764000022 ], [ -122.50165696599997, 49.086956180000115 ], [ -122.502021759999963, 49.086968058000082 ], [ -122.502015440999983, 49.087052190000129 ], [ -122.504162328999911, 49.087122064000035 ], [ -122.504298314, 49.089363737000085 ], [ -122.504899831999978, 49.089362738000027 ], [ -122.504954613, 49.089362664000106 ], [ -122.511213916999964, 49.089352159000022 ], [ -122.512843928999985, 49.08934937000005 ], [ -122.51351514, 49.089348224000048 ], [ -122.515030408999948, 49.089345595000111 ], [ -122.515037790999884, 49.090342125000078 ], [ -122.515040877999951, 49.090764875000026 ], [ -122.515044762999963, 49.091286568000022 ], [ -122.515060213999902, 49.093373729000056 ], [ -122.515061875999947, 49.093598594000106 ], [ -122.515062286999949, 49.093652572000067 ], [ -122.5150645499999, 49.093958381000071 ], [ -122.515075321999973, 49.095415721000116 ], [ -122.515083159999932, 49.096477288000123 ], [ -122.515083764999943, 49.096557853000071 ], [ -122.515084431999952, 49.096648200000111 ], [ -122.515086226999955, 49.09689103500002 ], [ -122.515089012000018, 49.097268827000086 ], [ -122.515100272999987, 49.098789129000032 ], [ -122.515108294999933, 49.099868686000086 ], [ -122.51510924899999, 49.100003599000111 ], [ -122.515114783999962, 49.100750158000018 ], [ -122.51513917799997, 49.104045893000041 ], [ -122.519400538999903, 49.104028865000132 ], [ -122.520359475999967, 49.104025001000139 ], [ -122.520742891999987, 49.104023468000086 ], [ -122.522113102, 49.104017913000121 ], [ -122.52242818799999, 49.104016664 ], [ -122.525318652999928, 49.104004909000054 ], [ -122.526156810999979, 49.104001491000126 ], [ -122.526143596999944, 49.105884804000027 ], [ -122.526120893999973, 49.107693798000042 ], [ -122.52606281199995, 49.109518899000072 ], [ -122.526061768999966, 49.109970951000058 ], [ -122.526058612999961, 49.111373596000092 ], [ -122.526028874999966, 49.11436059200004 ], [ -122.526023886999894, 49.114859986000042 ], [ -122.524728205999949, 49.114351749000043 ], [ -122.524116880999941, 49.114111962000081 ], [ -122.517413663999932, 49.111482223000017 ], [ -122.515012754999958, 49.110540143000037 ], [ -122.514969274999913, 49.11052310900007 ], [ -122.512142111999935, 49.109413635000131 ], [ -122.510607307999948, 49.108811288 ], [ -122.510235737999935, 49.108665456000033 ] ], [ [ -122.51151070899999, 49.108265388000063 ], [ -122.511614049999977, 49.106886562000028 ], [ -122.509094956999888, 49.106804784000069 ], [ -122.509130240999951, 49.10633430900004 ], [ -122.508203799999933, 49.106304218000055 ], [ -122.508200558999988, 49.106632146000059 ], [ -122.509022601999931, 49.106635644000022 ], [ -122.509019939, 49.106905499000028 ], [ -122.509430962999943, 49.106907245000116 ], [ -122.509422980999943, 49.107716806000077 ], [ -122.510656072999893, 49.107722040000091 ], [ -122.510653419, 49.107991893000076 ], [ -122.511475482999941, 49.107995375000037 ], [ -122.51147283399996, 49.108265228000107 ], [ -122.51151070899999, 49.108265388000063 ] ], [ [ -122.508663839999926, 49.101340918000076 ], [ -122.508667531999919, 49.100966969000083 ], [ -122.507023633999935, 49.100959961000058 ], [ -122.507026306999975, 49.100690107000098 ], [ -122.506615336999985, 49.100688351000059 ], [ -122.506623361, 49.099878790000083 ], [ -122.50908915299999, 49.099889302000108 ], [ -122.509086489999987, 49.10015915500005 ], [ -122.509497457999913, 49.100160902000042 ], [ -122.509494798999967, 49.100430756000016 ], [ -122.51072770899998, 49.100435989000061 ], [ -122.510725055999927, 49.10070584200011 ], [ -122.511136028999914, 49.100707584000084 ], [ -122.511134281999958, 49.100885411000014 ], [ -122.511255611999928, 49.099266452000094 ], [ -122.511787113999944, 49.099283704000037 ], [ -122.511810959999963, 49.098965469000071 ], [ -122.507977306, 49.098840974000076 ], [ -122.508247057999981, 49.095244468000089 ], [ -122.51177435699999, 49.095359019000121 ], [ -122.511800361999931, 49.095011935000123 ], [ -122.509394699, 49.094933822000037 ], [ -122.509495365999939, 49.09359107100007 ], [ -122.50921367499997, 49.093581921000066 ], [ -122.509314810999967, 49.092232919000026 ], [ -122.507870411999988, 49.092185989000043 ], [ -122.507884532999967, 49.091997706000058 ], [ -122.507714698000015, 49.091992187000052 ], [ -122.507678623999965, 49.09247314600001 ], [ -122.504501813000033, 49.092369853000044 ], [ -122.504488399999971, 49.092548523000097 ], [ -122.499024676, 49.09237065300011 ], [ -122.499166798999966, 49.09048041300013 ], [ -122.496487776000023, 49.090393096000184 ], [ -122.496485132999936, 49.090428236000037 ], [ -122.497137255, 49.090449496000119 ], [ -122.497053332999911, 49.091565030000027 ], [ -122.497524509999948, 49.091580390000082 ], [ -122.497253953000026, 49.095176889000079 ], [ -122.494962467999954, 49.095102175000079 ], [ -122.494949121999966, 49.095279447000031 ], [ -122.4961998899999, 49.095320235000031 ], [ -122.496173812999942, 49.095666740000063 ], [ -122.496434202000017, 49.095675230000076 ], [ -122.496385203999935, 49.096326329000064 ], [ -122.497206606999967, 49.096329911000105 ], [ -122.497201153999981, 49.096869617000053 ], [ -122.49761209499998, 49.096871406000048 ], [ -122.497601200999924, 49.097950820000094 ], [ -122.498012148999948, 49.097952608000092 ], [ -122.498009427999975, 49.09822246100002 ], [ -122.498420379999956, 49.098224248000086 ], [ -122.498414939999961, 49.098763955 ], [ -122.498825895999957, 49.098765739000108 ], [ -122.49882368599999, 49.098985251000045 ], [ -122.49943789699995, 49.099005258000012 ], [ -122.499331832999985, 49.100415750000096 ], [ -122.501010728999958, 49.100470421000082 ], [ -122.500996163999943, 49.100664198000054 ], [ -122.502505617999944, 49.100670712000102 ], [ -122.502497526999932, 49.10148027400006 ], [ -122.502908502999929, 49.101482045000076 ], [ -122.502906133999957, 49.101719493000132 ], [ -122.503393529000022, 49.101735350000062 ], [ -122.503435920999891, 49.101170969000073 ], [ -122.508663839999926, 49.101340918000076 ] ], [ [ -122.473833059999947, 49.091833469000079 ], [ -122.473877285999933, 49.091249491000099 ], [ -122.473756956999935, 49.09124554200006 ], [ -122.473712728999885, 49.091829520000033 ], [ -122.473833059999947, 49.091833469000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "554604840", "BldgCostT": "330707119", "sL_LossRatio": "0.644279000354669", "sL_AssetLoss": "6513110", "sL_BldgLoss": "4196260", "sL_StrLoss": "1624730", "sL_NStrLoss": "2571530", "sL_ContLoss": "2316850", "geom_point": "0101000020E61000003F89AD45F09E5EC0857049C4CA8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.492747188999942, 49.11866419400009 ], [ -122.492263394999938, 49.118430300000078 ], [ -122.491358629999965, 49.118415828000096 ], [ -122.48950867799999, 49.118386197000063 ], [ -122.488864400999958, 49.118375868000079 ], [ -122.486643857999937, 49.118340276000026 ], [ -122.486040933999917, 49.118330597000089 ], [ -122.484515484999918, 49.118306091000122 ], [ -122.483738763999938, 49.118288566000125 ], [ -122.48336042899993, 49.118280017000131 ], [ -122.482285235999967, 49.118255751000035 ], [ -122.481025698999986, 49.118227310000073 ], [ -122.479383147999954, 49.118190183000067 ], [ -122.479218848999963, 49.118186452000067 ], [ -122.478821816999982, 49.118177481000039 ], [ -122.477231810999982, 49.118141502000128 ], [ -122.471176313999933, 49.118004290000123 ], [ -122.471164328999947, 49.117307508000088 ], [ -122.471150560999931, 49.116506467000093 ], [ -122.471118882999974, 49.11466237500008 ], [ -122.471112548999912, 49.114293650000057 ], [ -122.471105293999955, 49.113871283000044 ], [ -122.471083356999912, 49.112593750000066 ], [ -122.47107344899996, 49.112018047000063 ], [ -122.471056618999981, 49.111037121000017 ], [ -122.471051818999982, 49.110757293000056 ], [ -122.468759107999958, 49.110750810000113 ], [ -122.467895888999976, 49.110748326000063 ], [ -122.466141956999977, 49.110743305000078 ], [ -122.462004006999976, 49.110731355000077 ], [ -122.460508986999926, 49.110726994000096 ], [ -122.460561904999906, 49.105438914000146 ], [ -122.460559041999929, 49.105380261000064 ], [ -122.46043043499995, 49.103492241000069 ], [ -122.460454207999959, 49.101210633000051 ], [ -122.46174360799999, 49.101253089000103 ], [ -122.462104204999946, 49.101264960000051 ], [ -122.462046222999945, 49.10202786900004 ], [ -122.462097652999944, 49.102029562000034 ], [ -122.461986525999961, 49.103491662000131 ], [ -122.461824298999957, 49.105625914000051 ], [ -122.461023108999967, 49.105599539000082 ], [ -122.461021465999963, 49.105621133000056 ], [ -122.460872512999941, 49.10561622900012 ], [ -122.460822330999932, 49.106276209000093 ], [ -122.460916357999949, 49.10627930400004 ], [ -122.460857917999959, 49.107047873000035 ], [ -122.461778673999945, 49.107078184000073 ], [ -122.461693445999913, 49.108199319000022 ], [ -122.462709612999916, 49.108232762000128 ], [ -122.462631029999969, 49.109266707000103 ], [ -122.463546947999987, 49.109296842000049 ], [ -122.463543234999975, 49.109345702000084 ], [ -122.465172793999969, 49.109399299000053 ], [ -122.465166308999954, 49.109484683000076 ], [ -122.467102931999975, 49.109548348000047 ], [ -122.467093835999947, 49.10966818600005 ], [ -122.467539764999913, 49.109682840000076 ], [ -122.467655180999955, 49.108162125000071 ], [ -122.46854287099994, 49.108191291000018 ], [ -122.468659270999979, 49.106657118000072 ], [ -122.468762895999987, 49.105291244000114 ], [ -122.4706716, 49.105353932000071 ], [ -122.474228018999938, 49.105470647000061 ], [ -122.474138126999947, 49.106657356000071 ], [ -122.47437258699992, 49.106665047000092 ], [ -122.474371670999986, 49.106677138000101 ], [ -122.474400659999915, 49.106678088000074 ], [ -122.47447534299998, 49.105692083000108 ], [ -122.47734511199999, 49.105786170000087 ], [ -122.477364434000023, 49.105530852000136 ], [ -122.478206003999986, 49.105558429000027 ], [ -122.478207443999935, 49.10542101600003 ], [ -122.477796434999931, 49.105419157000014 ], [ -122.477801734999929, 49.104914229000038 ], [ -122.475772570999979, 49.104847717000077 ], [ -122.475769923999962, 49.104882680000053 ], [ -122.470611546999976, 49.104713425000028 ], [ -122.470304863999971, 49.104703354000065 ], [ -122.47037596699991, 49.103765669999987 ], [ -122.46847135799996, 49.103703107000122 ], [ -122.468488149999985, 49.103481758000065 ], [ -122.468558816999959, 49.102550289000064 ], [ -122.465834436999927, 49.102460741000087 ], [ -122.46597433599996, 49.100618010000126 ], [ -122.464816114999948, 49.100579919000069 ], [ -122.46503017799995, 49.097760944000072 ], [ -122.465055820999936, 49.097423250000091 ], [ -122.464565501999971, 49.097407121000074 ], [ -122.464838594999932, 49.093810715000103 ], [ -122.467192113999943, 49.093888115 ], [ -122.467324154999972, 49.092147901000097 ], [ -122.465608159999974, 49.092139969000115 ], [ -122.465611054999897, 49.091870117999989 ], [ -122.464789262999929, 49.091866310000036 ], [ -122.464792164999906, 49.091596458000012 ], [ -122.46438127, 49.091594551000135 ], [ -122.46438417199991, 49.091324700000087 ], [ -122.463562389999979, 49.09132088300003 ], [ -122.46356529699996, 49.091051031000113 ], [ -122.46274351699995, 49.091047209000081 ], [ -122.462723132999955, 49.09293617600008 ], [ -122.462056501999896, 49.09293307100009 ], [ -122.461490418999972, 49.09293043100012 ], [ -122.461493336999965, 49.092660580000022 ], [ -122.461082434000019, 49.092658662000069 ], [ -122.46110756299997, 49.090337027000047 ], [ -122.460261863999975, 49.090309170000054 ], [ -122.460210404999913, 49.089348132000111 ], [ -122.460229573999953, 49.089006246000032 ], [ -122.460222654999924, 49.088508151000035 ], [ -122.465575624999985, 49.090615407000058 ], [ -122.465213742999964, 49.090603503000061 ], [ -122.465211752999892, 49.090788805000031 ], [ -122.465622640999968, 49.090790707000082 ], [ -122.46561974399998, 49.091060560000088 ], [ -122.466337477999929, 49.091063881000096 ], [ -122.466348428999964, 49.090919592000056 ], [ -122.46732195099996, 49.091302768000034 ], [ -122.466850047999912, 49.091287253000111 ], [ -122.466849525000015, 49.091336113000082 ], [ -122.467413282999971, 49.091338714000095 ], [ -122.467670240999951, 49.091439850000043 ], [ -122.467664969999959, 49.091932901000064 ], [ -122.467663968999915, 49.092026411000099 ], [ -122.46792431399993, 49.092034970000043 ], [ -122.468219278999953, 49.092044664000099 ], [ -122.468247908999913, 49.091667209000072 ], [ -122.470672029, 49.092621233000067 ], [ -122.47419726899993, 49.094008421000048 ], [ -122.474418914999916, 49.094095621000065 ], [ -122.475561541, 49.094545217000054 ], [ -122.476952068999964, 49.095092312000098 ], [ -122.478543947999924, 49.095718596000069 ], [ -122.479070054999937, 49.09592556100008 ], [ -122.480622099999906, 49.096536124000153 ], [ -122.481549202999972, 49.096900810000101 ], [ -122.483856817999936, 49.097808483000108 ], [ -122.484668948999968, 49.098127899000104 ], [ -122.485527573999931, 49.098465609000165 ], [ -122.485985219999947, 49.098645620000063 ], [ -122.486043681999917, 49.098668597000028 ], [ -122.487087817999935, 49.099078369000068 ], [ -122.48806301799999, 49.099461073000057 ], [ -122.486825548999931, 49.099462185000085 ], [ -122.488290306, 49.100044811000089 ], [ -122.489610207999931, 49.100569803000077 ], [ -122.490445895999983, 49.100896958000057 ], [ -122.490716952999904, 49.101003065000086 ], [ -122.49137733099991, 49.101261612000059 ], [ -122.492261694999954, 49.101607817000065 ], [ -122.492437236999976, 49.101676516000062 ], [ -122.492710849999952, 49.101783601000129 ], [ -122.492800182999972, 49.101818603000019 ], [ -122.492797707999955, 49.101906012000057 ], [ -122.492793029999973, 49.102066238000042 ], [ -122.49278472, 49.102351705000039 ], [ -122.492756774999975, 49.103885731000098 ], [ -122.492754309999896, 49.104351421000125 ], [ -122.492747234999982, 49.105673597000077 ], [ -122.492741739999957, 49.106699074000112 ], [ -122.492738495999916, 49.107301706000101 ], [ -122.492737091, 49.107564278000069 ], [ -122.492734052999964, 49.108111339000097 ], [ -122.492731038999963, 49.10866004400004 ], [ -122.492722409999956, 49.11021621600004 ], [ -122.49271700499996, 49.11119409200014 ], [ -122.494317570999954, 49.111221090000122 ], [ -122.495994523999968, 49.111230643000098 ], [ -122.496309714999967, 49.111232422000072 ], [ -122.496926309999935, 49.111235920000063 ], [ -122.49917339299999, 49.111248645000053 ], [ -122.503078447999954, 49.111270651000019 ], [ -122.505352961999932, 49.111283390000054 ], [ -122.505726966999973, 49.111285488000135 ], [ -122.507216344999932, 49.111293794000034 ], [ -122.507928799999917, 49.111297763000024 ], [ -122.508463182999947, 49.111300750000041 ], [ -122.510175908999983, 49.111310255000085 ], [ -122.510956790999927, 49.111314584000091 ], [ -122.511820046999986, 49.111319374000026 ], [ -122.512080364, 49.111320824000089 ], [ -122.514382224999906, 49.111333508000087 ], [ -122.515013814999918, 49.11133696600006 ], [ -122.514987839999947, 49.113183757000122 ], [ -122.514987669999968, 49.113192807000061 ], [ -122.51497593499991, 49.113892048000068 ], [ -122.514973380999947, 49.114044968000073 ], [ -122.514967944999981, 49.114368814000095 ], [ -122.514958159999964, 49.11495203700008 ], [ -122.514388236999935, 49.114949349000078 ], [ -122.513483851000018, 49.114945129000041 ], [ -122.505673509999937, 49.114908484000075 ], [ -122.505874562, 49.118564935000038 ], [ -122.503824110999972, 49.118552599000026 ], [ -122.502813812999989, 49.118547762000077 ], [ -122.50192305099992, 49.11854349100004 ], [ -122.501594132999941, 49.118541925000052 ], [ -122.499428966999986, 49.118531529000052 ], [ -122.498250432999967, 49.118525833000028 ], [ -122.496701889999926, 49.118518369000107 ], [ -122.494879273999942, 49.118509534000026 ], [ -122.493785418999963, 49.118504204000047 ], [ -122.493713606999989, 49.118784007000087 ], [ -122.493704535999953, 49.118791815000073 ], [ -122.49360810899995, 49.11887520300008 ], [ -122.493440818999929, 49.118894995000112 ], [ -122.4931375, 49.118830102000096 ], [ -122.492747188999942, 49.11866419400009 ] ], [ [ -122.482383781999943, 49.117238298000146 ], [ -122.482407237999951, 49.116927984000064 ], [ -122.481849334999964, 49.116909730000053 ], [ -122.481849613999927, 49.116906057000058 ], [ -122.481151510999908, 49.116883211000058 ], [ -122.481227099999927, 49.115883568000058 ], [ -122.480814786999986, 49.11587007300011 ], [ -122.480765014, 49.11568619500008 ], [ -122.480354902999949, 49.115557994000028 ], [ -122.480013114, 49.115673399000073 ], [ -122.480308072999904, 49.115853486000105 ], [ -122.479797724999941, 49.115836778000073 ], [ -122.479944998999926, 49.113889800000088 ], [ -122.477081652999942, 49.113796011 ], [ -122.477308358999949, 49.110801033000058 ], [ -122.477353874999963, 49.110199665000046 ], [ -122.478659647999962, 49.110242446000022 ], [ -122.478707735999961, 49.109606857000081 ], [ -122.476595222999919, 49.109537638000035 ], [ -122.47540675399992, 49.109498677000012 ], [ -122.47541965399995, 49.109328347000087 ], [ -122.474847566000037, 49.109309588 ], [ -122.474772885000036, 49.110295588000092 ], [ -122.474338431999954, 49.110281340000085 ], [ -122.474287201999942, 49.11095759800007 ], [ -122.47312585, 49.110919503000019 ], [ -122.473116919999939, 49.111037356000061 ], [ -122.473529189999951, 49.111050881000104 ], [ -122.473459823999974, 49.111966299000123 ], [ -122.474543910999927, 49.112001856000063 ], [ -122.474271459999969, 49.115598184000056 ], [ -122.473267894999978, 49.115565269000086 ], [ -122.473197278999976, 49.116497042000049 ], [ -122.474624987999931, 49.116543866000022 ], [ -122.474614838999955, 49.116677828000064 ], [ -122.479540825999919, 49.116839236000018 ], [ -122.479517731, 49.117144492000065 ], [ -122.482383781999943, 49.117238298000146 ] ], [ [ -122.489346157999975, 49.101431207000097 ], [ -122.489351781999943, 49.100883142000079 ], [ -122.488940808999985, 49.100881323000138 ], [ -122.488943578999937, 49.100611470000032 ], [ -122.488121639999974, 49.100607829000033 ], [ -122.488124413999984, 49.100337976000063 ], [ -122.487713447999965, 49.100336153000065 ], [ -122.487718185999981, 49.099875751000049 ], [ -122.48648565399999, 49.09983546500014 ], [ -122.486472189999958, 49.101140233000081 ], [ -122.48688316599997, 49.101142060000065 ], [ -122.486877600999961, 49.101681766000063 ], [ -122.48728857899998, 49.101683592000064 ], [ -122.487285799999952, 49.101953445000035 ], [ -122.488518744000018, 49.10195891500004 ], [ -122.488516089999976, 49.102217132000064 ], [ -122.489037517999961, 49.102234167000063 ], [ -122.489098688999931, 49.101423123000053 ], [ -122.489346157999975, 49.101431207000097 ] ], [ [ -122.479483784, 49.101285693000058 ], [ -122.479491275999976, 49.100569237000045 ], [ -122.47825837, 49.100563671000025 ], [ -122.478261197999942, 49.100293818000097 ], [ -122.477850230999962, 49.100291960000028 ], [ -122.477855892999969, 49.099752255000041 ], [ -122.47744493, 49.099750396000069 ], [ -122.477447763999947, 49.099480543000034 ], [ -122.476214883999958, 49.099474956000037 ], [ -122.476229975999914, 49.098040749000049 ], [ -122.476231919999989, 49.097855841000097 ], [ -122.476642867999956, 49.097857704000027 ], [ -122.476645703999935, 49.097587851000064 ], [ -122.477878537999956, 49.097593434000018 ], [ -122.477889861, 49.096514023000083 ], [ -122.477478925999932, 49.096512164000046 ], [ -122.47748549, 49.095886793000091 ], [ -122.474701272999937, 49.095795495000104 ], [ -122.474726059999938, 49.09546814400003 ], [ -122.473849938999962, 49.095439399000021 ], [ -122.473708617999989, 49.097305252000112 ], [ -122.472684565999955, 49.097271645000042 ], [ -122.47267328199996, 49.097420577000065 ], [ -122.471197385, 49.097372124000032 ], [ -122.471149752999906, 49.098000511000066 ], [ -122.470703719999946, 49.097985865000034 ], [ -122.470491495999966, 49.097978896 ], [ -122.470483276999943, 49.098087309000057 ], [ -122.470413633999939, 49.099005871000095 ], [ -122.470741070999949, 49.099016623000097 ], [ -122.471571820999912, 49.099043901000094 ], [ -122.471484442999952, 49.100196729000039 ], [ -122.474208701999899, 49.100286134000079 ], [ -122.474180419999954, 49.100659521000104 ], [ -122.476901829999946, 49.100748763000034 ], [ -122.47688128799993, 49.101020180000056 ], [ -122.478039307999921, 49.101058134000034 ], [ -122.478025706000011, 49.101237923000092 ], [ -122.479483784, 49.101285693000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94570250", "BldgCostT": "64220000", "sL_LossRatio": "0.749197695197112", "sL_AssetLoss": "1096840", "sL_BldgLoss": "821750", "sL_StrLoss": "397110", "sL_NStrLoss": "424640", "sL_ContLoss": "275090", "geom_point": "0101000020E610000084826B51139F5EC02E2A03837B904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.468937661999945, 49.147103981000093 ], [ -122.469004540999933, 49.146223209000063 ], [ -122.468772847999944, 49.146215605000165 ], [ -122.469024567999938, 49.142900450000077 ], [ -122.467959624999978, 49.142865491000101 ], [ -122.468077192999914, 49.141317426000114 ], [ -122.467802015999951, 49.141308391000116 ], [ -122.468075115999952, 49.137712222000062 ], [ -122.468570219999975, 49.137728477000024 ], [ -122.468708591, 49.135905932000057 ], [ -122.469732330999989, 49.135939536000087 ], [ -122.469767443999942, 49.135476885000067 ], [ -122.467364564, 49.135397995000119 ], [ -122.467457404999962, 49.134175508000098 ], [ -122.466174497999987, 49.134133367000089 ], [ -122.466221475999987, 49.133514991000055 ], [ -122.465837024999985, 49.133502360000094 ], [ -122.465912491, 49.132509065000086 ], [ -122.465291165999957, 49.132488647000038 ], [ -122.465564408999981, 49.12889243500009 ], [ -122.469014924999968, 49.129005779000053 ], [ -122.469102859999978, 49.127847211000059 ], [ -122.469049490999936, 49.127845460000053 ], [ -122.469077257, 49.127479636000039 ], [ -122.468754903999951, 49.127469052000023 ], [ -122.468768740999963, 49.127286751000064 ], [ -122.467881984999906, 49.127257630000074 ], [ -122.468154996999914, 49.123661382000066 ], [ -122.46904180599995, 49.123690505000084 ], [ -122.469231090999969, 49.12119620100006 ], [ -122.469619799999961, 49.121208965000086 ], [ -122.469677575999967, 49.120447487000035 ], [ -122.467718401999917, 49.120383143000083 ], [ -122.467926178, 49.117645954000047 ], [ -122.467630769, 49.117636249000043 ], [ -122.467825852999951, 49.115066186000064 ], [ -122.467663628999944, 49.115060857000081 ], [ -122.46779753899996, 49.113296603000016 ], [ -122.465110748999962, 49.113208294000032 ], [ -122.465119850999926, 49.113088457000046 ], [ -122.461915855999962, 49.112983059000079 ], [ -122.461758321999966, 49.115055088000162 ], [ -122.461319334999956, 49.115040640000061 ], [ -122.461280130999938, 49.115556198000043 ], [ -122.460878185999903, 49.115542968000092 ], [ -122.460804463999963, 49.116512307000072 ], [ -122.460618519999969, 49.116506186 ], [ -122.460508986999926, 49.110726994000096 ], [ -122.462004006999976, 49.110731355000077 ], [ -122.466141956999977, 49.110743305000078 ], [ -122.467895888999976, 49.110748326000063 ], [ -122.468759107999958, 49.110750810000113 ], [ -122.471051818999982, 49.110757293000056 ], [ -122.471056618999981, 49.111037121000017 ], [ -122.47107344899996, 49.112018047000063 ], [ -122.471083356999912, 49.112593750000066 ], [ -122.471105293999955, 49.113871283000044 ], [ -122.471112548999912, 49.114293650000057 ], [ -122.471118882999974, 49.11466237500008 ], [ -122.471150560999931, 49.116506467000093 ], [ -122.471164328999947, 49.117307508000088 ], [ -122.471176313999933, 49.118004290000123 ], [ -122.477231810999982, 49.118141502000128 ], [ -122.478821816999982, 49.118177481000039 ], [ -122.479218848999963, 49.118186452000067 ], [ -122.479383147999954, 49.118190183000067 ], [ -122.481025698999986, 49.118227310000073 ], [ -122.482285235999967, 49.118255751000035 ], [ -122.48336042899993, 49.118280017000131 ], [ -122.483738763999938, 49.118288566000125 ], [ -122.484515484999918, 49.118306091000122 ], [ -122.486040933999917, 49.118330597000089 ], [ -122.486643857999937, 49.118340276000026 ], [ -122.488864400999958, 49.118375868000079 ], [ -122.48950867799999, 49.118386197000063 ], [ -122.491358629999965, 49.118415828000096 ], [ -122.492263394999938, 49.118430300000078 ], [ -122.492747188999942, 49.11866419400009 ], [ -122.4931375, 49.118830102000096 ], [ -122.493440818999929, 49.118894995000112 ], [ -122.49360810899995, 49.11887520300008 ], [ -122.493704535999953, 49.118791815000073 ], [ -122.493713606999989, 49.118784007000087 ], [ -122.493785418999963, 49.118504204000047 ], [ -122.494879273999942, 49.118509534000026 ], [ -122.496701889999926, 49.118518369000107 ], [ -122.498250432999967, 49.118525833000028 ], [ -122.499428966999986, 49.118531529000052 ], [ -122.501594132999941, 49.118541925000052 ], [ -122.50192305099992, 49.11854349100004 ], [ -122.502813812999989, 49.118547762000077 ], [ -122.503824110999972, 49.118552599000026 ], [ -122.505874562, 49.118564935000038 ], [ -122.505635612999967, 49.12277974100008 ], [ -122.505607285999957, 49.1232795600001 ], [ -122.505600217, 49.12340406100008 ], [ -122.505673739, 49.125590362000068 ], [ -122.509339402999942, 49.125726820000082 ], [ -122.513368554999943, 49.125867509000088 ], [ -122.514744008999969, 49.125915498000019 ], [ -122.514743479999936, 49.126025931000086 ], [ -122.514738148, 49.127195281000112 ], [ -122.514736030999941, 49.127654045000071 ], [ -122.514733312999908, 49.128252996000079 ], [ -122.514777826999961, 49.128940338000056 ], [ -122.514821406999957, 49.130232088000078 ], [ -122.514780242999933, 49.13113024400009 ], [ -122.514687815999949, 49.132372203000074 ], [ -122.514661991999958, 49.133137413000036 ], [ -122.514656205999941, 49.133591912000064 ], [ -122.514302125, 49.133580438000109 ], [ -122.514287060999933, 49.133781459000083 ], [ -122.514653641, 49.133793339000114 ], [ -122.51464992299999, 49.13408540600004 ], [ -122.514638092999959, 49.135010402000027 ], [ -122.514633523999933, 49.136001425000075 ], [ -122.51462839099996, 49.137116824000046 ], [ -122.514624821, 49.137894890000013 ], [ -122.514355384999988, 49.140074788000106 ], [ -122.509212285999951, 49.139794961000064 ], [ -122.506024129999901, 49.139888929000058 ], [ -122.505889532999944, 49.133091290000031 ], [ -122.50529368399999, 49.1330886470001 ], [ -122.505332692999971, 49.132569407000084 ], [ -122.506206977999952, 49.132597809000146 ], [ -122.506261494999961, 49.131871926 ], [ -122.511729881999926, 49.132049417000083 ], [ -122.511719036999921, 49.132194047000041 ], [ -122.513112362999934, 49.132239227000092 ], [ -122.513129621999923, 49.132008969000061 ], [ -122.513007848999933, 49.132005021000118 ], [ -122.513237637, 49.12893928400004 ], [ -122.512834831999953, 49.128926224000089 ], [ -122.512874179999983, 49.12840126800009 ], [ -122.512749460999942, 49.128397224 ], [ -122.512764875999949, 49.128191580000106 ], [ -122.508460124999928, 49.128051911000078 ], [ -122.508516941999943, 49.127294833000072 ], [ -122.505287160999941, 49.127189928000085 ], [ -122.505359679999955, 49.126224491000038 ], [ -122.503091844999972, 49.126150772000059 ], [ -122.503135022, 49.125576312000092 ], [ -122.50135886399994, 49.125518541000091 ], [ -122.501347518999964, 49.125669402000014 ], [ -122.496218045999953, 49.125502398000073 ], [ -122.496044222999899, 49.127810423000057 ], [ -122.495916293000022, 49.127806255000039 ], [ -122.495803251000027, 49.129307041000061 ], [ -122.496855060999977, 49.129341307000075 ], [ -122.496740766999949, 49.130859066 ], [ -122.500885913999937, 49.130994004000094 ], [ -122.500834663, 49.13167535000008 ], [ -122.502335504999962, 49.131724168000048 ], [ -122.502305504, 49.13212319200008 ], [ -122.503890575999961, 49.132174727000056 ], [ -122.503822379999932, 49.133082108000032 ], [ -122.500530127, 49.13306740300002 ], [ -122.498227178999969, 49.133057078000022 ], [ -122.496020224999967, 49.133047134000066 ], [ -122.494950986999953, 49.133042293000074 ], [ -122.492642436999944, 49.133031785000092 ], [ -122.492636397999931, 49.134611509000116 ], [ -122.492629598999898, 49.136400315000046 ], [ -122.493339083999956, 49.137043137000013 ], [ -122.493799691, 49.137460501000064 ], [ -122.494139893999943, 49.137668280000113 ], [ -122.494284497999985, 49.13775661000011 ], [ -122.494453149999956, 49.138189940000061 ], [ -122.495070946999988, 49.139777184000067 ], [ -122.495130778999965, 49.139931006000054 ], [ -122.49507511299997, 49.140124803000113 ], [ -122.494980851999927, 49.140220520000064 ], [ -122.494852397999978, 49.140350902000122 ], [ -122.492649582999931, 49.141547810000098 ], [ -122.492745046999957, 49.140281904000055 ], [ -122.490911528999959, 49.140222110000089 ], [ -122.49097165399999, 49.139425216000078 ], [ -122.490723073999931, 49.139417107000078 ], [ -122.490845915999955, 49.137788942000057 ], [ -122.490213156999957, 49.137768298000033 ], [ -122.490484505000012, 49.134172052000068 ], [ -122.490522054999957, 49.134173277000123 ], [ -122.490581331999977, 49.13338759000009 ], [ -122.49056044799994, 49.133386909000137 ], [ -122.490517840999956, 49.133951639000074 ], [ -122.489058831999955, 49.133904024000131 ], [ -122.488995025999927, 49.134749373000083 ], [ -122.483526408999978, 49.134570728000114 ], [ -122.483677858999982, 49.132567270000024 ], [ -122.481834474999957, 49.132506989000056 ], [ -122.481949536999977, 49.13098556300011 ], [ -122.481803665999948, 49.130980792000059 ], [ -122.482075624999965, 49.127384530000086 ], [ -122.482100561999971, 49.127385346000025 ], [ -122.482120475999977, 49.127121989000081 ], [ -122.481879405999962, 49.127114103000089 ], [ -122.481944560999935, 49.126252484000105 ], [ -122.481737255999988, 49.126245702000084 ], [ -122.48182852199993, 49.125038797000066 ], [ -122.481593324999977, 49.125031102000094 ], [ -122.481735669999949, 49.12314871500012 ], [ -122.481194126999952, 49.123130996000079 ], [ -122.481287494999947, 49.121896389000028 ], [ -122.481179766999972, 49.121892864000074 ], [ -122.481111138999935, 49.122800299000033 ], [ -122.475643954999953, 49.122621249000069 ], [ -122.475759354999965, 49.121097708 ], [ -122.475110421999958, 49.121076437000063 ], [ -122.475043345999936, 49.121961847000122 ], [ -122.474691006999961, 49.121950297000055 ], [ -122.474617377999891, 49.122922067000019 ], [ -122.474745874999911, 49.122926279000048 ], [ -122.474666797999944, 49.123969946000031 ], [ -122.476115992999951, 49.124017447000064 ], [ -122.476072791999954, 49.124587831000099 ], [ -122.479462511999913, 49.124698859000041 ], [ -122.479414430999952, 49.125334277000015 ], [ -122.48172817299999, 49.125409999000098 ], [ -122.48145619899995, 49.129006272000069 ], [ -122.478614579999899, 49.12891326700003 ], [ -122.478445595999943, 49.131145638000064 ], [ -122.47434443899999, 49.13101127600001 ], [ -122.474321537999955, 49.13131343800007 ], [ -122.471876580999918, 49.131233262000123 ], [ -122.471823041999983, 49.131939173000092 ], [ -122.473105893999929, 49.131981247000098 ], [ -122.473033108999942, 49.132941224000028 ], [ -122.475435871999963, 49.133019988000079 ], [ -122.475359504000011, 49.134027879000087 ], [ -122.475436136, 49.134030391000053 ], [ -122.475395629, 49.134564969000081 ], [ -122.47572875799996, 49.134575884000093 ], [ -122.475653675999979, 49.135566836000081 ], [ -122.476134104999929, 49.135582576000076 ], [ -122.476110891999923, 49.135888977000072 ], [ -122.480743763999953, 49.136040654000105 ], [ -122.480471651999935, 49.139636865000085 ], [ -122.47521439, 49.139464731000054 ], [ -122.475133785999958, 49.140528292000099 ], [ -122.47362373499999, 49.140478802000125 ], [ -122.473598164999913, 49.140816040000097 ], [ -122.47555305399996, 49.140880105000065 ], [ -122.475280511999969, 49.14447627600002 ], [ -122.47439045499999, 49.14444711300014 ], [ -122.474349655999916, 49.144985274000064 ], [ -122.477374844999929, 49.145084368000035 ], [ -122.477331116999963, 49.145661634000092 ], [ -122.480048571999959, 49.145750575000065 ], [ -122.480103018999941, 49.145031233000019 ], [ -122.485572851999905, 49.145210050000117 ], [ -122.48542058299995, 49.147224846000043 ], [ -122.483974705999984, 49.147311605000077 ], [ -122.483452338999953, 49.147301887000076 ], [ -122.481902387000019, 49.14727304600008 ], [ -122.472327502999917, 49.147094306000035 ], [ -122.471554096999952, 49.147078902000096 ], [ -122.468937661999945, 49.147103981000093 ] ], [ [ -122.488959004999984, 49.125322986000093 ], [ -122.488716766999943, 49.1285326980001 ], [ -122.487974668999954, 49.128508467000081 ], [ -122.487842926999946, 49.130253515000092 ], [ -122.487487371999947, 49.130241903000112 ], [ -122.487486943999926, 49.130247575000041 ], [ -122.488423919999903, 49.130278171000086 ], [ -122.488531081999923, 49.128858489000017 ], [ -122.490351152999892, 49.128917901000143 ], [ -122.490465582999889, 49.127401032000058 ], [ -122.490593511, 49.127405207000031 ], [ -122.490685151999983, 49.126190330000078 ], [ -122.49060268399991, 49.126187639000072 ], [ -122.490663706999911, 49.125378630000057 ], [ -122.488959004999984, 49.125322986000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.788332472896231", "sL_AssetLoss": "19370", "sL_BldgLoss": "15270", "sL_StrLoss": "7420", "sL_NStrLoss": "7850", "sL_ContLoss": "4100", "geom_point": "0101000020E6100000A6BB6734649F5EC0FDE9B3C191924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.491335180999897, 49.14292079800002 ], [ -122.492562881999987, 49.142960831 ], [ -122.492589710999937, 49.143967462000063 ], [ -122.492596814999942, 49.144233098 ], [ -122.492153317999978, 49.145152297000067 ], [ -122.491803562999948, 49.14684160400008 ], [ -122.48844679299999, 49.147043197000109 ], [ -122.48870775099999, 49.14358713600005 ], [ -122.49062168899998, 49.143649587 ], [ -122.490648289999982, 49.143297082000089 ], [ -122.491305175999969, 49.143318509000053 ], [ -122.491335180999897, 49.14292079800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.81712962962963", "sL_AssetLoss": "12960", "sL_BldgLoss": "10590", "sL_StrLoss": "5730", "sL_NStrLoss": "4860", "sL_ContLoss": "2370", "geom_point": "0101000020E610000007A5FD499B9D5EC0ECA033E51A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.460728302999939, 49.132467662000082 ], [ -122.460602343999938, 49.130233007000072 ], [ -122.461081127999933, 49.130248763000033 ], [ -122.460954016999963, 49.131919600000089 ], [ -122.464741804999903, 49.132044171000061 ], [ -122.464468479999951, 49.135640363000114 ], [ -122.460799777999924, 49.135519712000089 ], [ -122.460730820999942, 49.132512437000095 ], [ -122.460728302999939, 49.132467662000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5500334", "BldgCostT": "3793334", "sL_LossRatio": "0.766965556033484", "sL_AssetLoss": "60446", "sL_BldgLoss": "46360", "sL_StrLoss": "21970", "sL_NStrLoss": "24390", "sL_ContLoss": "14086", "geom_point": "0101000020E6100000CE629C9EBB9F5EC0E8B090F3DD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.500018897999979, 49.150785428000056 ], [ -122.492654605, 49.150060713000144 ], [ -122.492663388999986, 49.148585589000042 ], [ -122.49263757199995, 49.148534082000069 ], [ -122.492510299999978, 49.148280049000057 ], [ -122.492072935999957, 49.14740711400006 ], [ -122.491799486999952, 49.146861301000065 ], [ -122.491803562999948, 49.14684160400008 ], [ -122.492153317999978, 49.145152297000067 ], [ -122.492596814999942, 49.144233098 ], [ -122.492589710999937, 49.143967462000063 ], [ -122.492562881999987, 49.142960831 ], [ -122.496804809999929, 49.143099045000085 ], [ -122.496533897999967, 49.14669525700004 ], [ -122.495876959999919, 49.146673864000022 ], [ -122.49586522599999, 49.146829578000045 ], [ -122.49601867, 49.146834575000064 ], [ -122.495992873999953, 49.147176909000081 ], [ -122.499635564999963, 49.147295480000032 ], [ -122.499541892999972, 49.148539879000069 ], [ -122.499668040999964, 49.148543983000053 ], [ -122.499541913999948, 49.150219481000107 ], [ -122.50429378299998, 49.150373965000036 ], [ -122.504282263999983, 49.150527193000073 ], [ -122.504857724999937, 49.150545888000046 ], [ -122.503808814999971, 49.15099509500007 ], [ -122.502447473999936, 49.151003582000101 ], [ -122.5022492799999, 49.151004794000066 ], [ -122.500018897999979, 49.150785428000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9787583", "BldgCostT": "6278333", "sL_LossRatio": "0.716847663644515", "sL_AssetLoss": "100370", "sL_BldgLoss": "71950", "sL_StrLoss": "33440", "sL_NStrLoss": "38510", "sL_ContLoss": "28420", "geom_point": "0101000020E6100000E2B38E0DD19F5EC08464643D73914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.494453149999956, 49.138189940000061 ], [ -122.494284497999985, 49.13775661000011 ], [ -122.494139893999943, 49.137668280000113 ], [ -122.493799691, 49.137460501000064 ], [ -122.493339083999956, 49.137043137000013 ], [ -122.492629598999898, 49.136400315000046 ], [ -122.492636397999931, 49.134611509000116 ], [ -122.492642436999944, 49.133031785000092 ], [ -122.494950986999953, 49.133042293000074 ], [ -122.496020224999967, 49.133047134000066 ], [ -122.498227178999969, 49.133057078000022 ], [ -122.500530127, 49.13306740300002 ], [ -122.503822379999932, 49.133082108000032 ], [ -122.503620273999957, 49.135771017000081 ], [ -122.498151481999969, 49.135593115000106 ], [ -122.498152888999954, 49.135574405000092 ], [ -122.495904051999901, 49.135501168000097 ], [ -122.495867998, 49.135979748000082 ], [ -122.496463184999968, 49.135999135000098 ], [ -122.496403159999957, 49.136796036000135 ], [ -122.496651725999953, 49.13680413200008 ], [ -122.496545608999952, 49.138212992000028 ], [ -122.498379053999912, 49.138272690000043 ], [ -122.49810829099998, 49.141868933000076 ], [ -122.49263880399991, 49.141690752000073 ], [ -122.492649582999931, 49.141547810000098 ], [ -122.494852397999978, 49.140350902000122 ], [ -122.494980851999927, 49.140220520000064 ], [ -122.49507511299997, 49.140124803000113 ], [ -122.495130778999965, 49.139931006000054 ], [ -122.495070946999988, 49.139777184000067 ], [ -122.494453149999956, 49.138189940000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116644250", "BldgCostT": "76475000", "sL_LossRatio": "0.724856167934997", "sL_AssetLoss": "1288308", "sL_BldgLoss": "933838", "sL_StrLoss": "462098", "sL_NStrLoss": "471740", "sL_ContLoss": "354470", "geom_point": "0101000020E61000006B7F564FDCA15EC074A68E5DBB924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.538157195999958, 49.164818899000075 ], [ -122.538306193999972, 49.162818114000046 ], [ -122.537667246999945, 49.162797563000026 ], [ -122.537646878999965, 49.163071017000043 ], [ -122.537042869999937, 49.163051585000069 ], [ -122.536936029999964, 49.164485730000095 ], [ -122.536466797999978, 49.164470632000125 ], [ -122.5352400099999, 49.164074507000073 ], [ -122.534591283999973, 49.163836487000019 ], [ -122.534003633999973, 49.163620881000078 ], [ -122.533368597999953, 49.163387909000093 ], [ -122.531972201999977, 49.162712105000104 ], [ -122.531740985999932, 49.162563839000057 ], [ -122.531124198999976, 49.162168391000094 ], [ -122.530773202999939, 49.162020087000052 ], [ -122.530649973999971, 49.162018623000101 ], [ -122.529991256999935, 49.162010734000027 ], [ -122.529237632000033, 49.162001697000072 ], [ -122.529276403999987, 49.161482382000095 ], [ -122.52911994, 49.161477336000061 ], [ -122.52908092899996, 49.161999818000041 ], [ -122.52665751499994, 49.16197072300006 ], [ -122.52529979900001, 49.161954403000031 ], [ -122.525307536999946, 49.16172792000004 ], [ -122.525327222999948, 49.161152293000058 ], [ -122.525376097999981, 49.159721878 ], [ -122.525435737999899, 49.157976739000048 ], [ -122.525548201999968, 49.1546868020001 ], [ -122.525667647999953, 49.151149156000017 ], [ -122.525788903999967, 49.147556792000039 ], [ -122.52269533799992, 49.147533600000045 ], [ -122.520555903999963, 49.147517519000168 ], [ -122.517157549999936, 49.147491877000085 ], [ -122.517176568999929, 49.147237944000054 ], [ -122.516628612, 49.147220204000085 ], [ -122.516608572999957, 49.147487725000104 ], [ -122.515906405999928, 49.14748241000013 ], [ -122.514711588999916, 49.147494955000077 ], [ -122.514709412999963, 49.147884788000056 ], [ -122.514704362999979, 49.148802254000074 ], [ -122.51470259599995, 49.149119143000078 ], [ -122.514362505999927, 49.149108127000098 ], [ -122.514361644999951, 49.149196186000012 ], [ -122.513329382, 49.149214893000085 ], [ -122.512184197999915, 49.149130911000022 ], [ -122.509867886999956, 49.149177499000075 ], [ -122.50983648, 49.149183064000106 ], [ -122.509841264, 49.148698176000075 ], [ -122.5098171019999, 49.148697392000024 ], [ -122.50984492799999, 49.148326647000019 ], [ -122.509851519999984, 49.147658482000075 ], [ -122.50989506399999, 49.147658667000051 ], [ -122.510009428999979, 49.146134819000046 ], [ -122.505833921999979, 49.145999293000109 ], [ -122.506104112999964, 49.142403053000073 ], [ -122.507204378999987, 49.142438781000088 ], [ -122.507263643, 49.141649655000094 ], [ -122.505528181999949, 49.141593296000089 ], [ -122.505605390000014, 49.140565705000071 ], [ -122.505497443999928, 49.140562198000033 ], [ -122.505653685, 49.13848264800005 ], [ -122.504444936999931, 49.138443376000119 ], [ -122.504715189999985, 49.134847098000066 ], [ -122.505160485999937, 49.134861567000087 ], [ -122.50529368399999, 49.1330886470001 ], [ -122.505889532999944, 49.133091290000031 ], [ -122.506024129999901, 49.139888929000058 ], [ -122.509212285999951, 49.139794961000064 ], [ -122.514355384999988, 49.140074788000106 ], [ -122.514624821, 49.137894890000013 ], [ -122.51462839099996, 49.137116824000046 ], [ -122.514633523999933, 49.136001425000075 ], [ -122.514638092999959, 49.135010402000027 ], [ -122.51464992299999, 49.13408540600004 ], [ -122.514653641, 49.133793339000114 ], [ -122.514658806999961, 49.133793506000096 ], [ -122.514662349999938, 49.133746235000089 ], [ -122.515126209999949, 49.133761265000054 ], [ -122.515137728999917, 49.133607514000047 ], [ -122.514656205999941, 49.133591912000064 ], [ -122.514661991999958, 49.133137413000036 ], [ -122.514687815999949, 49.132372203000074 ], [ -122.514780242999933, 49.13113024400009 ], [ -122.514821406999957, 49.130232088000078 ], [ -122.514777826999961, 49.128940338000056 ], [ -122.514733312999908, 49.128252996000079 ], [ -122.514854846999981, 49.128309386000069 ], [ -122.515415928999928, 49.128569642000087 ], [ -122.516147592000024, 49.128908990000113 ], [ -122.516324362999939, 49.128955763000135 ], [ -122.518038301, 49.129409203000087 ], [ -122.519104015999972, 49.129810454000072 ], [ -122.51975360299997, 49.130055002000077 ], [ -122.520621279999929, 49.130134707000067 ], [ -122.52199647899999, 49.130260997000121 ], [ -122.522857902999945, 49.130561901000071 ], [ -122.522881081999941, 49.130578835000094 ], [ -122.523410062999929, 49.130965810000092 ], [ -122.524306699999897, 49.131621699000029 ], [ -122.525176272999929, 49.132125710000032 ], [ -122.525645544999975, 49.132411231000049 ], [ -122.526654939999972, 49.13303250600012 ], [ -122.526687190999937, 49.133052330000069 ], [ -122.526900487999953, 49.133132215000018 ], [ -122.527166783, 49.13318137000001 ], [ -122.527576004999986, 49.133183226000028 ], [ -122.527813568999974, 49.133184313000079 ], [ -122.528302554999982, 49.133186512000066 ], [ -122.531085275999914, 49.133199099000109 ], [ -122.531948841999949, 49.133202976000113 ], [ -122.532702818999937, 49.133206357000113 ], [ -122.53377202199999, 49.133211173000113 ], [ -122.53634912699998, 49.133222678000031 ], [ -122.53678133799994, 49.133224605000045 ], [ -122.536779603999946, 49.133707613000091 ], [ -122.537649090999977, 49.133938402000062 ], [ -122.537745228999967, 49.133993464000071 ], [ -122.53894120299999, 49.134678409000095 ], [ -122.539847605999952, 49.134892393 ], [ -122.541272391999925, 49.135120204 ], [ -122.542393206999975, 49.135659197000088 ], [ -122.542700392999947, 49.135951105000053 ], [ -122.543957419999941, 49.137866999000053 ], [ -122.544540269999985, 49.138413901000035 ], [ -122.547818844999981, 49.141021791000071 ], [ -122.547836611999941, 49.141035910000078 ], [ -122.548335089999938, 49.141273317000135 ], [ -122.54867060399999, 49.141433094000057 ], [ -122.548938096999933, 49.141745415000052 ], [ -122.548998464999968, 49.142225112000112 ], [ -122.549028596999946, 49.142464789000037 ], [ -122.549338123, 49.143281307000031 ], [ -122.549918006, 49.14377929100003 ], [ -122.550371105999957, 49.144508513000062 ], [ -122.550484804999911, 49.145210591000051 ], [ -122.550815143999941, 49.145724822000091 ], [ -122.550950605999915, 49.14593569000008 ], [ -122.550886337999913, 49.146159986000015 ], [ -122.550401200999929, 49.147853102000084 ], [ -122.54810170899999, 49.147831262000089 ], [ -122.547772682999906, 49.147828127000018 ], [ -122.54741629199998, 49.147824729000028 ], [ -122.545962759999981, 49.147810893000049 ], [ -122.544893372999951, 49.147800691000121 ], [ -122.544013509999985, 49.147792295000038 ], [ -122.543757418999974, 49.148997393000094 ], [ -122.54370035599996, 49.149265854000127 ], [ -122.543492718999985, 49.150243106000097 ], [ -122.543482804999925, 49.150341711000053 ], [ -122.540458033, 49.150244504000099 ], [ -122.540482376999989, 49.149917286000097 ], [ -122.539278511999925, 49.149878574000113 ], [ -122.539340659999951, 49.149043497000058 ], [ -122.539291291, 49.149041908000044 ], [ -122.539177243999987, 49.150574317000043 ], [ -122.538385051999967, 49.150548834000084 ], [ -122.538241011999929, 49.152483633000038 ], [ -122.533199650999961, 49.152321333000131 ], [ -122.533172672999967, 49.152683176000075 ], [ -122.533623148999965, 49.152697688000082 ], [ -122.533564796999883, 49.15348039600012 ], [ -122.537667657999975, 49.153612483000117 ], [ -122.53756407899999, 49.155003424000029 ], [ -122.538889300999955, 49.155046054000067 ], [ -122.538759652999971, 49.15678760300009 ], [ -122.53900380399989, 49.156795456000047 ], [ -122.538959185999929, 49.157394828000072 ], [ -122.541261752999944, 49.15746885300004 ], [ -122.541418871999923, 49.155356782000077 ], [ -122.541354551999945, 49.155354715000065 ], [ -122.541622050999976, 49.151758438000115 ], [ -122.543393365999961, 49.151815352000042 ], [ -122.543419730999986, 49.152030660000044 ], [ -122.543646899999956, 49.153885414000122 ], [ -122.545195498999988, 49.156002685000018 ], [ -122.545632083999948, 49.156599589000095 ], [ -122.545733995999925, 49.156687798000107 ], [ -122.547451197999948, 49.158173793000053 ], [ -122.547413994999928, 49.158674610000027 ], [ -122.546392206999911, 49.159435707000078 ], [ -122.54589842599998, 49.160103224000054 ], [ -122.545846496999957, 49.160173402000083 ], [ -122.545384580999936, 49.161038198000071 ], [ -122.544608312999983, 49.162426123000053 ], [ -122.544495795, 49.162627309000072 ], [ -122.544134082999904, 49.162789598000096 ], [ -122.542985215999977, 49.162823012000096 ], [ -122.54206259899999, 49.163242218000029 ], [ -122.542013047999944, 49.163922544000044 ], [ -122.54199828499999, 49.164125099000081 ], [ -122.541760196999917, 49.1645428160001 ], [ -122.541631124999967, 49.165115225000079 ], [ -122.541622992999976, 49.165151213000051 ], [ -122.539466017, 49.164973746000086 ], [ -122.539288203999959, 49.164959079000013 ], [ -122.538157195999958, 49.164818899000075 ] ], [ [ -122.54294691299998, 49.162089348000023 ], [ -122.542986473999989, 49.1615573670001 ], [ -122.542633791999933, 49.161555970000066 ], [ -122.542636275999939, 49.161286118000092 ], [ -122.541401849999914, 49.161281222000042 ], [ -122.54139935799999, 49.161551074000037 ], [ -122.540164926999935, 49.161546165000125 ], [ -122.540169626999941, 49.161038594000075 ], [ -122.538537800000014, 49.160986125000129 ], [ -122.538582428000026, 49.160386757000033 ], [ -122.538527464999959, 49.160384989000093 ], [ -122.538411410999942, 49.16194357600007 ], [ -122.538885156000035, 49.161958812000066 ], [ -122.539728229999952, 49.161985919000138 ], [ -122.54294691299998, 49.162089348000023 ] ], [ [ -122.533350888999919, 49.159053774000022 ], [ -122.53335704499996, 49.158971215000058 ], [ -122.532701619999926, 49.15895010100013 ], [ -122.532681134999947, 49.159224781000084 ], [ -122.533127958999941, 49.159239175000039 ], [ -122.533142284999926, 49.15904705500003 ], [ -122.533350888999919, 49.159053774000022 ] ], [ [ -122.531616981999932, 49.157952969000078 ], [ -122.531650966999962, 49.157497411000108 ], [ -122.530692728999952, 49.157466525000054 ], [ -122.530723512999899, 49.157053984000065 ], [ -122.530367858999952, 49.157042518000047 ], [ -122.530367248999966, 49.157050711000075 ], [ -122.528822254999966, 49.157000888000077 ], [ -122.528758051999944, 49.157860793000054 ], [ -122.531616981999932, 49.157952969000078 ] ], [ [ -122.527551246, 49.153346774000063 ], [ -122.527690089999936, 49.151487555000074 ], [ -122.527658544999966, 49.151486537000025 ], [ -122.527519086999931, 49.153353948000117 ], [ -122.527523620999958, 49.153354094000058 ], [ -122.52752423299998, 49.153345902000133 ], [ -122.527551246, 49.153346774000063 ] ], [ [ -122.53124203899992, 49.150213925000074 ], [ -122.531260495999931, 49.149966509000123 ], [ -122.529911864999974, 49.149923025000106 ], [ -122.52991710699996, 49.149852777000092 ], [ -122.529412751999971, 49.149836511000018 ], [ -122.52942453699994, 49.14967861500002 ], [ -122.529341553999927, 49.149675938000051 ], [ -122.529306059999982, 49.150151498000085 ], [ -122.53124203899992, 49.150213925000074 ] ], [ [ -122.547669073999941, 49.144694143 ], [ -122.547673650999968, 49.144632489000024 ], [ -122.547390534999977, 49.144623404000065 ], [ -122.547427415999948, 49.144126611000068 ], [ -122.543615132999932, 49.144004204000098 ], [ -122.543791386999928, 49.141632522000158 ], [ -122.542813151999923, 49.141601090000073 ], [ -122.542878841999965, 49.140717354000117 ], [ -122.541494461999932, 49.140672857000034 ], [ -122.5415188599999, 49.140344745000121 ], [ -122.54073175399995, 49.140319438000084 ], [ -122.540763984999899, 49.139886096000083 ], [ -122.540696878999967, 49.139883937000072 ], [ -122.540754292999935, 49.139111992 ], [ -122.539103571999988, 49.139058898000108 ], [ -122.539179500999978, 49.138038439000113 ], [ -122.538814425999959, 49.138026693000107 ], [ -122.53886763300001, 49.137311661000098 ], [ -122.537494123999977, 49.137267459000107 ], [ -122.537515811999967, 49.136976119000067 ], [ -122.536680813999965, 49.13694923800012 ], [ -122.536713835999961, 49.136505743000015 ], [ -122.536358060999973, 49.136494288000051 ], [ -122.536356643999966, 49.136513325000081 ], [ -122.530887638999928, 49.136337086000076 ], [ -122.530931590999984, 49.135747764000044 ], [ -122.529132912999941, 49.135689741000057 ], [ -122.529155001999968, 49.135393720000103 ], [ -122.527080642999962, 49.135326766000048 ], [ -122.527050790999951, 49.13572659400009 ], [ -122.527357933999951, 49.135736510000115 ], [ -122.527170474999977, 49.13824734500011 ], [ -122.528274857999946, 49.138282993000118 ], [ -122.528197305999925, 49.139321960000082 ], [ -122.529040694999978, 49.139349176000053 ], [ -122.52878240699999, 49.142810009000044 ], [ -122.532112501999933, 49.142917404000094 ], [ -122.531946720999912, 49.145140585000092 ], [ -122.533919576999935, 49.145204161000073 ], [ -122.533914797999913, 49.145268276000117 ], [ -122.5362692, 49.145344099000063 ], [ -122.536267175999924, 49.145371277000081 ], [ -122.537518124999963, 49.145411542000076 ], [ -122.53752047299993, 49.145380020000111 ], [ -122.541659094999915, 49.145513130000033 ], [ -122.541684015999977, 49.145178020000088 ], [ -122.54663425699999, 49.145337024000071 ], [ -122.546684341999963, 49.144662540000056 ], [ -122.547669073999941, 49.144694143 ] ], [ [ -122.519502491999987, 49.143400982000038 ], [ -122.519611380999947, 49.141945943000039 ], [ -122.51585554799999, 49.141824371000013 ], [ -122.515915787999973, 49.141020238000131 ], [ -122.514192350999906, 49.140964407000169 ], [ -122.514151522, 49.141509146000047 ], [ -122.512760402999959, 49.141464062000104 ], [ -122.512628055999926, 49.143229079000079 ], [ -122.511527765999972, 49.143193407000084 ], [ -122.51144663, 49.144275055000051 ], [ -122.513640540999944, 49.144346171000045 ], [ -122.513702440999978, 49.143520440000053 ], [ -122.5141227659999, 49.143534060000036 ], [ -122.514145739999961, 49.143227550000056 ], [ -122.519502491999987, 49.143400982000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875416", "BldgCostT": "4741666", "sL_LossRatio": "0.772783335617377", "sL_AssetLoss": "72970", "sL_BldgLoss": "56390", "sL_StrLoss": "27750", "sL_NStrLoss": "28640", "sL_ContLoss": "16580", "geom_point": "0101000020E6100000E8597B65BF9F5EC00BE6B701828A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.495155539, 49.085721334000034 ], [ -122.495342099999945, 49.083242409000057 ], [ -122.495145868999955, 49.083236008000036 ], [ -122.495063557999927, 49.084329674000038 ], [ -122.494674645, 49.084316986000012 ], [ -122.494600494999958, 49.085302082000076 ], [ -122.492896936999927, 49.085246487000106 ], [ -122.492916622999971, 49.083005602000121 ], [ -122.492918173999897, 49.082825700000129 ], [ -122.49292520099999, 49.082025113000093 ], [ -122.492932514999922, 49.081193200000037 ], [ -122.492927967999947, 49.080568073000038 ], [ -122.492911563999954, 49.078310437 ], [ -122.492907710999958, 49.077779748000097 ], [ -122.49290665499997, 49.077635915000059 ], [ -122.492903195999972, 49.077159719000072 ], [ -122.492902844999961, 49.077111124000091 ], [ -122.497093543999952, 49.077247862000036 ], [ -122.496823036999942, 49.080844441000046 ], [ -122.496388433999954, 49.080830268000035 ], [ -122.496208397, 49.083223362000048 ], [ -122.50080828499992, 49.083373280000053 ], [ -122.500792939999954, 49.083577505000044 ], [ -122.501850760999972, 49.083611953000037 ], [ -122.501691542999978, 49.085731504000101 ], [ -122.499982087999939, 49.08572689500005 ], [ -122.499132681999967, 49.08572458900008 ], [ -122.498731793, 49.085724292000101 ], [ -122.495155539, 49.085721334000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97221000", "BldgCostT": "65370000", "sL_LossRatio": "0.7481872243353", "sL_AssetLoss": "1087145", "sL_BldgLoss": "813388", "sL_StrLoss": "387398", "sL_NStrLoss": "425990", "sL_ContLoss": "273757", "geom_point": "0101000020E61000009FF50048F3A05EC06C18F4948B894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.504298314, 49.089363737000085 ], [ -122.504162328999911, 49.087122064000035 ], [ -122.506728703999926, 49.087205533 ], [ -122.506672885999976, 49.087949595000062 ], [ -122.508257472999972, 49.088001102000128 ], [ -122.508264464999968, 49.087907846000036 ], [ -122.50838756899995, 49.087911846000054 ], [ -122.508435593999963, 49.087271349000098 ], [ -122.5091976, 49.087296109000114 ], [ -122.509221778999986, 49.086973566000033 ], [ -122.509856698, 49.086994193000059 ], [ -122.509977136999979, 49.085387180000055 ], [ -122.512899983999901, 49.08548208400002 ], [ -122.513037409000034, 49.083646750000135 ], [ -122.513322489999965, 49.083656002000083 ], [ -122.513365872999927, 49.083076547000104 ], [ -122.511485607999987, 49.08301550900002 ], [ -122.511540683999954, 49.082280249000107 ], [ -122.510199107999938, 49.082236678000079 ], [ -122.51021079899995, 49.082080674000103 ], [ -122.507802435999977, 49.082002414000101 ], [ -122.507818529999966, 49.081787792000114 ], [ -122.50698175399998, 49.08176058800008 ], [ -122.506928036999923, 49.082476792000115 ], [ -122.501465485999958, 49.082299044000074 ], [ -122.501735642999947, 49.07870246100002 ], [ -122.503257671999918, 49.078752017000042 ], [ -122.503356788999923, 49.077431769000064 ], [ -122.502042306999954, 49.077388973000055 ], [ -122.502102644999951, 49.076585536000032 ], [ -122.501077523999967, 49.076552150000055 ], [ -122.501101102999911, 49.076238279000037 ], [ -122.497795729999936, 49.076130562000095 ], [ -122.497914342999977, 49.0745529880001 ], [ -122.49614407699994, 49.074495256000063 ], [ -122.496099287999968, 49.075090677000041 ], [ -122.492887399999944, 49.074985854000097 ], [ -122.492884939999925, 49.074648288000077 ], [ -122.492882411999986, 49.074298400000067 ], [ -122.492864201999922, 49.071792488000035 ], [ -122.492848538999979, 49.071291125000066 ], [ -122.494329777999965, 49.071339482000077 ], [ -122.494367978999946, 49.07083186100008 ], [ -122.496183943999966, 49.070891119000031 ], [ -122.496284078999949, 49.069559741000077 ], [ -122.496181507999921, 49.069556395000028 ], [ -122.49617678499996, 49.069619190000068 ], [ -122.496030868, 49.069614430000073 ], [ -122.495961527999938, 49.070536293000075 ], [ -122.492821755999927, 49.070433811000036 ], [ -122.492731791, 49.067551804000075 ], [ -122.496533190999955, 49.067502305000097 ], [ -122.497865888999968, 49.067484947000082 ], [ -122.49839547199997, 49.067478051000116 ], [ -122.50099701399995, 49.067444053000116 ], [ -122.503653603999908, 49.067409288000121 ], [ -122.503827915999977, 49.067407004000131 ], [ -122.504201301999956, 49.067401500000088 ], [ -122.50511837, 49.067387988000057 ], [ -122.514278454999911, 49.06725262700008 ], [ -122.514847088999957, 49.067244198000111 ], [ -122.514772647999933, 49.064379944000102 ], [ -122.515566274999983, 49.064603634000051 ], [ -122.516208889999916, 49.064784794000026 ], [ -122.518411297999947, 49.065405609000031 ], [ -122.519430117999946, 49.065626969000071 ], [ -122.519968388, 49.065743956000105 ], [ -122.521102833999933, 49.0659904400001 ], [ -122.52297751899999, 49.066397748000014 ], [ -122.525887776, 49.067029933000057 ], [ -122.526670758999956, 49.06720000900004 ], [ -122.527031215999941, 49.067278297000016 ], [ -122.534068329999968, 49.068797486000072 ], [ -122.534422127999932, 49.068873841000077 ], [ -122.535824966999911, 49.069176632000051 ], [ -122.536400763999922, 49.069300899000069 ], [ -122.536944299999931, 49.069418188000064 ], [ -122.536940057, 49.070299813000112 ], [ -122.53692021099998, 49.074418981000086 ], [ -122.536922703999949, 49.075885875000068 ], [ -122.53692346699998, 49.076335611000069 ], [ -122.53692372299993, 49.076470545000085 ], [ -122.536924007999971, 49.076632447000073 ], [ -122.536925895999957, 49.077738870000097 ], [ -122.536926375999926, 49.078024270000078 ], [ -122.536928412999913, 49.079205311000067 ], [ -122.535767305999954, 49.079155215000114 ], [ -122.53492234, 49.079187507000078 ], [ -122.534360369999931, 49.079208995000037 ], [ -122.530182840999899, 49.079368647000123 ], [ -122.52922438899995, 49.079405264000073 ], [ -122.528085909999945, 49.079448727000027 ], [ -122.527633077999965, 49.079466018000048 ], [ -122.525769841999974, 49.079537132000098 ], [ -122.524674953, 49.079578914000052 ], [ -122.519304297999923, 49.079783633000048 ], [ -122.51737193699995, 49.079857242000074 ], [ -122.515079494999924, 49.079944509000065 ], [ -122.51507072199999, 49.081625503000026 ], [ -122.515068246999945, 49.082099481000036 ], [ -122.515067287999941, 49.082282171 ], [ -122.515057885, 49.084081286000085 ], [ -122.515054545999973, 49.084719946000057 ], [ -122.515051175999943, 49.085367609000073 ], [ -122.515047081999967, 49.086150177000107 ], [ -122.515041787000015, 49.087166653000054 ], [ -122.51503844799997, 49.087805320000037 ], [ -122.515030408999948, 49.089345595000111 ], [ -122.51351514, 49.089348224000048 ], [ -122.512843928999985, 49.08934937000005 ], [ -122.511213916999964, 49.089352159000022 ], [ -122.504954613, 49.089362664000106 ], [ -122.504899831999978, 49.089362738000027 ], [ -122.504298314, 49.089363737000085 ] ], [ [ -122.512863672999956, 49.078561463000057 ], [ -122.512894949999989, 49.07814371000007 ], [ -122.512794754999931, 49.078140457000124 ], [ -122.512809755999939, 49.077940102000063 ], [ -122.511091608999919, 49.077884313000034 ], [ -122.511166841999909, 49.07687993400004 ], [ -122.511143054999962, 49.076879162000075 ], [ -122.511037596999927, 49.07828702500008 ], [ -122.512021261999962, 49.078318968000062 ], [ -122.512005190999943, 49.07853359200007 ], [ -122.512863672999956, 49.078561463000057 ] ], [ [ -122.52184315, 49.076661865000077 ], [ -122.521790866999964, 49.077362009000105 ], [ -122.524223261, 49.077440740000036 ], [ -122.524158121, 49.078313644000048 ], [ -122.524841175999924, 49.078335743000061 ], [ -122.524862643999953, 49.078048019000029 ], [ -122.52495861899996, 49.078051123000066 ], [ -122.52506115599999, 49.076676757000094 ], [ -122.524720582, 49.076665739000077 ], [ -122.52471393899999, 49.07675478100002 ], [ -122.52184315, 49.076661865000077 ] ], [ [ -122.53009093699994, 49.076588507000046 ], [ -122.530101936999969, 49.076440841000085 ], [ -122.52937957099999, 49.076417504000126 ], [ -122.52942833899999, 49.075762977000089 ], [ -122.529385910999963, 49.075761606000107 ], [ -122.529404157999977, 49.075516704000044 ], [ -122.528166020999947, 49.075476694000031 ], [ -122.52808797299997, 49.076523788000053 ], [ -122.53009093699994, 49.076588507000046 ] ], [ [ -122.502788086999942, 49.072687805000051 ], [ -122.502902745999947, 49.071160514000042 ], [ -122.50164136099994, 49.071119436000075 ], [ -122.50156044699996, 49.072196853000044 ], [ -122.499744425999921, 49.072137687000129 ], [ -122.499710621999952, 49.07258756000008 ], [ -122.502788086999942, 49.072687805000051 ] ], [ [ -122.52376541199996, 49.069861532000118 ], [ -122.523593061999975, 49.072171136000122 ], [ -122.523731910999942, 49.072175630000061 ], [ -122.523777046999939, 49.071570773000055 ], [ -122.526352785999933, 49.071654106000011 ], [ -122.526383258999928, 49.071245435000037 ], [ -122.527065138999916, 49.07126748600006 ], [ -122.527073536000017, 49.071154852000049 ], [ -122.532534880999933, 49.0713313030001 ], [ -122.532522374999957, 49.071499309000025 ], [ -122.532781515999929, 49.071507675000142 ], [ -122.532786072999926, 49.071021821000038 ], [ -122.531080967999941, 49.070966764000055 ], [ -122.531241487999964, 49.068811025000159 ], [ -122.53096314699999, 49.068802035000026 ], [ -122.530959950999957, 49.068844953000067 ], [ -122.528367809999949, 49.068761195000015 ], [ -122.528315777999978, 49.069459415000054 ], [ -122.522854668999983, 49.069282749000116 ], [ -122.522875715999959, 49.069000772000066 ], [ -122.52259212, 49.06899159000006 ], [ -122.522530167999918, 49.069821545000146 ], [ -122.52376541199996, 49.069861532000118 ] ], [ [ -122.518318150999946, 49.067681961000083 ], [ -122.518373698999966, 49.066938684000029 ], [ -122.518249944999951, 49.066934672000038 ], [ -122.518214953999944, 49.067402864000044 ], [ -122.518139684999966, 49.067400424000084 ], [ -122.518119124999956, 49.067675509000033 ], [ -122.518318150999946, 49.067681961000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79291417", "BldgCostT": "53451667", "sL_LossRatio": "0.741155751831107", "sL_AssetLoss": "928400", "sL_BldgLoss": "688089", "sL_StrLoss": "322149", "sL_NStrLoss": "365940", "sL_ContLoss": "240311", "geom_point": "0101000020E610000090BA42C432A25EC06BB48783A5874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.525887776, 49.067029933000057 ], [ -122.52297751899999, 49.066397748000014 ], [ -122.521102833999933, 49.0659904400001 ], [ -122.519968388, 49.065743956000105 ], [ -122.519430117999946, 49.065626969000071 ], [ -122.518411297999947, 49.065405609000031 ], [ -122.516208889999916, 49.064784794000026 ], [ -122.515566274999983, 49.064603634000051 ], [ -122.514772647999933, 49.064379944000102 ], [ -122.514745471999959, 49.063057460000081 ], [ -122.514741106999949, 49.062841640000066 ], [ -122.514737761999982, 49.062679786000082 ], [ -122.514721901999948, 49.061906203000063 ], [ -122.514718968999944, 49.061762331000118 ], [ -122.514699997999912, 49.060835893000032 ], [ -122.514680799999894, 49.059899910000063 ], [ -122.517333738999966, 49.059892071000078 ], [ -122.519496899999979, 49.059885617000106 ], [ -122.520222338999986, 49.059883455000026 ], [ -122.523932004999949, 49.059872286000036 ], [ -122.525629367999954, 49.059867135000061 ], [ -122.52572517199998, 49.059866851000059 ], [ -122.525798957999953, 49.059866628000123 ], [ -122.525913792999916, 49.056203282000048 ], [ -122.525881565999967, 49.055154866000102 ], [ -122.525917011999951, 49.052617801000032 ], [ -122.525918406999935, 49.052543891000028 ], [ -122.527697615999898, 49.052540181000033 ], [ -122.529819014999987, 49.052535721000019 ], [ -122.53036643899999, 49.052534570000077 ], [ -122.530804346999957, 49.052533640000014 ], [ -122.53289836, 49.052529191000076 ], [ -122.536912573, 49.052520495000053 ], [ -122.536912667999957, 49.050392405000139 ], [ -122.536912722999915, 49.048818244000074 ], [ -122.536912807999911, 49.047087089000065 ], [ -122.536911092999958, 49.045231999000109 ], [ -122.540020922999958, 49.045232077000087 ], [ -122.539966357999987, 49.045967150000067 ], [ -122.54005894699999, 49.045970135000047 ], [ -122.540030086999977, 49.046358924000117 ], [ -122.540107970999912, 49.046361435000037 ], [ -122.540083956999936, 49.046684946000028 ], [ -122.54424324699994, 49.046818925000096 ], [ -122.544202097999971, 49.047373921000045 ], [ -122.543976550999986, 49.050415792000059 ], [ -122.542278058999969, 49.050361101000114 ], [ -122.542127186999977, 49.052394630000066 ], [ -122.540588175999986, 49.052345051000117 ], [ -122.540386363999986, 49.055063665000027 ], [ -122.539863119999922, 49.055046804000064 ], [ -122.539826836, 49.055535490000103 ], [ -122.540083434999943, 49.055543759000059 ], [ -122.540036754999974, 49.056172480000072 ], [ -122.540212968999967, 49.056178158000101 ], [ -122.540168603999973, 49.056775705000099 ], [ -122.545271829999976, 49.056940025000067 ], [ -122.545241329999925, 49.057351427000064 ], [ -122.547111290999979, 49.057411577000053 ], [ -122.547099531999919, 49.057570280000085 ], [ -122.54739872299993, 49.057579901000082 ], [ -122.547444502999895, 49.056962003000059 ], [ -122.552904261999913, 49.057137422000068 ], [ -122.552881471999939, 49.057445496000099 ], [ -122.554993107999962, 49.057513267000083 ], [ -122.554823918999944, 49.059801721000049 ], [ -122.553786884999965, 49.059790385000071 ], [ -122.551337175999947, 49.059763602000018 ], [ -122.548287993999963, 49.059730134000077 ], [ -122.548175546999985, 49.059728885000055 ], [ -122.548148167999969, 49.059728590000034 ], [ -122.547020209999943, 49.059716196000075 ], [ -122.546600780999981, 49.059720214000052 ], [ -122.546039756999946, 49.059725610000072 ], [ -122.542809810999969, 49.059756489000065 ], [ -122.542545471999986, 49.059750117000114 ], [ -122.54077743499991, 49.059775267000077 ], [ -122.539138143999963, 49.059798561000044 ], [ -122.536909701999917, 49.059832204000038 ], [ -122.536919289999972, 49.061843631000031 ], [ -122.536924953999986, 49.063031039000109 ], [ -122.536929649999962, 49.064020568000025 ], [ -122.536944397999946, 49.067115296000026 ], [ -122.538456752999977, 49.067120132000134 ], [ -122.54256370799996, 49.067133156000068 ], [ -122.54542495099993, 49.067142129000068 ], [ -122.546698063999898, 49.067146094000059 ], [ -122.546889739999969, 49.06714669200008 ], [ -122.548115512999971, 49.067150507000065 ], [ -122.548104414999969, 49.068437162000087 ], [ -122.54810394299993, 49.068493077000063 ], [ -122.548092991999937, 49.069765909000104 ], [ -122.548088475999961, 49.070290186000143 ], [ -122.548078768999972, 49.071414569000027 ], [ -122.548075237999953, 49.071831614000104 ], [ -122.545793991999957, 49.071337112000045 ], [ -122.544002982, 49.070948815000115 ], [ -122.543813799999924, 49.070907811000048 ], [ -122.540175156999936, 49.070118864000101 ], [ -122.537979505999928, 49.069642724000062 ], [ -122.536944299999931, 49.069418188000064 ], [ -122.536400763999922, 49.069300899000069 ], [ -122.535824966999911, 49.069176632000051 ], [ -122.534422127999932, 49.068873841000077 ], [ -122.534068329999968, 49.068797486000072 ], [ -122.527031215999941, 49.067278297000016 ], [ -122.526670758999956, 49.06720000900004 ], [ -122.525887776, 49.067029933000057 ] ], [ [ -122.530378851, 49.064948320000013 ], [ -122.530381892999984, 49.064625455000076 ], [ -122.529560539999977, 49.06462211000008 ], [ -122.529573276999926, 49.06327282800008 ], [ -122.531215935999953, 49.063279511000097 ], [ -122.531208320999951, 49.06408908100007 ], [ -122.530797650999915, 49.064087412000028 ], [ -122.530795929999911, 49.064270053000037 ], [ -122.532438187999901, 49.064323093000027 ], [ -122.53244793, 49.063284509000042 ], [ -122.532979612999895, 49.063286662000102 ], [ -122.533047952999979, 49.062368205 ], [ -122.531914628999971, 49.062331609000083 ], [ -122.531924091999898, 49.062204471000065 ], [ -122.53071035499994, 49.062165265000026 ], [ -122.530708969999949, 49.062183878000027 ], [ -122.529131912999958, 49.062132916000166 ], [ -122.529130803000015, 49.062147817000039 ], [ -122.528205086999932, 49.062117891000106 ], [ -122.52819497199998, 49.062253639000033 ], [ -122.52458745699991, 49.062136945000049 ], [ -122.524587218999926, 49.062140126000017 ], [ -122.522934433999978, 49.062086622000102 ], [ -122.522923057999932, 49.062239066000053 ], [ -122.521442553999975, 49.062191117000054 ], [ -122.521394729999926, 49.062831701000093 ], [ -122.520405174999937, 49.062799641000012 ], [ -122.520402488999949, 49.062835625000105 ], [ -122.51910007599993, 49.062793415000108 ], [ -122.51908724899999, 49.062965126000051 ], [ -122.520101925999981, 49.062998012000051 ], [ -122.520080628999921, 49.063283156000082 ], [ -122.520430829999924, 49.063294504000091 ], [ -122.520422975999978, 49.063399681000114 ], [ -122.52103121599994, 49.063419388000035 ], [ -122.520989877999938, 49.063973011000016 ], [ -122.524068645999989, 49.064072709000037 ], [ -122.524045361999953, 49.06438479500013 ], [ -122.525497014999942, 49.064431772000098 ], [ -122.52549516, 49.06445664600006 ], [ -122.526101294999975, 49.064476255000045 ], [ -122.52608671899999, 49.064671757000049 ], [ -122.52719886899996, 49.064707727000062 ], [ -122.527189245999935, 49.064836830000083 ], [ -122.527816456000025, 49.064857112000013 ], [ -122.52780891899998, 49.064958256000068 ], [ -122.528043578999942, 49.06496584300006 ], [ -122.528045142999972, 49.064944857000057 ], [ -122.528666971999911, 49.064964959000058 ], [ -122.528672319999956, 49.064893172000048 ], [ -122.530378851, 49.064948320000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19682000", "BldgCostT": "13310000", "sL_LossRatio": "0.731897503346877", "sL_AssetLoss": "255462", "sL_BldgLoss": "186972", "sL_StrLoss": "88732", "sL_NStrLoss": "98240", "sL_ContLoss": "68490", "geom_point": "0101000020E6100000424EEB7884A35EC0E7738B4C82864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.555595242999942, 49.056255957000062 ], [ -122.555668806999961, 49.055260652000086 ], [ -122.555647232999931, 49.055259960000114 ], [ -122.555708987999964, 49.054424409000042 ], [ -122.555691987, 49.054423863000054 ], [ -122.555856130999956, 49.052202804000075 ], [ -122.555446514999929, 49.052189663000078 ], [ -122.555536476999961, 49.050972437000027 ], [ -122.555184981999915, 49.050961159000053 ], [ -122.555239593999929, 49.050222254000104 ], [ -122.55420449199994, 49.050189035000102 ], [ -122.554209586999903, 49.05012012600011 ], [ -122.552478675999936, 49.050064554000109 ], [ -122.552476675999984, 49.050091588000065 ], [ -122.547017744999948, 49.049916145000111 ], [ -122.547039833999989, 49.049617977000054 ], [ -122.54610863100001, 49.049588021000062 ], [ -122.546267773999944, 49.047440400000042 ], [ -122.546375156999915, 49.045991144000041 ], [ -122.549428651999932, 49.046089342000101 ], [ -122.549435834999912, 49.045992318000074 ], [ -122.554894315999931, 49.046167640000128 ], [ -122.554892647999964, 49.046190199000065 ], [ -122.555254996999977, 49.046201827000033 ], [ -122.555326855999979, 49.045229467000127 ], [ -122.559542283999946, 49.045227807000117 ], [ -122.559536067999929, 49.045614826000069 ], [ -122.559518380999975, 49.046712201000034 ], [ -122.559511978999936, 49.047107960000098 ], [ -122.559506453999916, 49.047449781000111 ], [ -122.559500839999956, 49.047800568000113 ], [ -122.559498057999917, 49.047971456000042 ], [ -122.559492103999958, 49.048340258000067 ], [ -122.559485428999949, 49.048754010000032 ], [ -122.559483807999968, 49.048855692000117 ], [ -122.55948082, 49.050318952000104 ], [ -122.55946744799995, 49.056885598000093 ], [ -122.559465788999958, 49.057704260000065 ], [ -122.559465700999951, 49.057749227000059 ], [ -122.559464389999917, 49.058396934000051 ], [ -122.55946177, 49.059674254000086 ], [ -122.559461415999976, 49.059852291000055 ], [ -122.557127172999941, 49.059826864000094 ], [ -122.556702896, 49.05982223700007 ], [ -122.555015297999958, 49.059803812000062 ], [ -122.555278326999911, 49.056245790000098 ], [ -122.555595242999942, 49.056255957000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101617333", "BldgCostT": "69553333", "sL_LossRatio": "0.747633632043962", "sL_AssetLoss": "1190115", "sL_BldgLoss": "889770", "sL_StrLoss": "313530", "sL_NStrLoss": "576240", "sL_ContLoss": "300345", "geom_point": "0101000020E61000009FAF382032A35EC05F86B5E768884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.548092991999937, 49.069765909000104 ], [ -122.54810394299993, 49.068493077000063 ], [ -122.548104414999969, 49.068437162000087 ], [ -122.548115512999971, 49.067150507000065 ], [ -122.546889739999969, 49.06714669200008 ], [ -122.546698063999898, 49.067146094000059 ], [ -122.54542495099993, 49.067142129000068 ], [ -122.54256370799996, 49.067133156000068 ], [ -122.538456752999977, 49.067120132000134 ], [ -122.536944397999946, 49.067115296000026 ], [ -122.536929649999962, 49.064020568000025 ], [ -122.536924953999986, 49.063031039000109 ], [ -122.536919289999972, 49.061843631000031 ], [ -122.536909701999917, 49.059832204000038 ], [ -122.539138143999963, 49.059798561000044 ], [ -122.54077743499991, 49.059775267000077 ], [ -122.542545471999986, 49.059750117000114 ], [ -122.542809810999969, 49.059756489000065 ], [ -122.546039756999946, 49.059725610000072 ], [ -122.546600780999981, 49.059720214000052 ], [ -122.547020209999943, 49.059716196000075 ], [ -122.548148167999969, 49.059728590000034 ], [ -122.548175546999985, 49.059728885000055 ], [ -122.548287993999963, 49.059730134000077 ], [ -122.551337175999947, 49.059763602000018 ], [ -122.553786884999965, 49.059790385000071 ], [ -122.554823918999944, 49.059801721000049 ], [ -122.554727180999919, 49.061110101000054 ], [ -122.55412892, 49.061090905000114 ], [ -122.553995251999979, 49.062898313000133 ], [ -122.548534813999964, 49.062722951000119 ], [ -122.548605703999939, 49.061765951000069 ], [ -122.548322465999973, 49.061756847000026 ], [ -122.548361515999957, 49.061229699000116 ], [ -122.543761138999983, 49.06108172800004 ], [ -122.543762135999913, 49.06106829700007 ], [ -122.542208685999981, 49.061018286000099 ], [ -122.542220462999978, 49.060859585000088 ], [ -122.541454062999946, 49.060834903000078 ], [ -122.541431645999964, 49.06113692200006 ], [ -122.54016211899993, 49.061096025000026 ], [ -122.540139506999978, 49.061400553000091 ], [ -122.540034337999955, 49.061397164000049 ], [ -122.540031174999953, 49.06143974900008 ], [ -122.540224291999891, 49.06144597200008 ], [ -122.540128381999949, 49.062737603000059 ], [ -122.543655451999882, 49.062851183000099 ], [ -122.543539935999931, 49.064408376000102 ], [ -122.54366380299993, 49.064408865000097 ], [ -122.54375900899997, 49.063125432000106 ], [ -122.545820282999927, 49.063191754000108 ], [ -122.545835232999963, 49.062990081000052 ], [ -122.55129569199994, 49.063165581000071 ], [ -122.55102944699999, 49.066762373000067 ], [ -122.550380263999969, 49.066741524000065 ], [ -122.550351218999936, 49.067133778000041 ], [ -122.551304543999933, 49.06713748800005 ], [ -122.551302113999952, 49.067407344000053 ], [ -122.55253421399999, 49.0674121280001 ], [ -122.55253179099995, 49.067681985000057 ], [ -122.552886331999929, 49.067683360000053 ], [ -122.553067715999987, 49.06523176300005 ], [ -122.55593042699999, 49.06532360800005 ], [ -122.555948351999973, 49.065081104000136 ], [ -122.55590894099997, 49.065079841000035 ], [ -122.555944821999958, 49.064594437000061 ], [ -122.55588256899992, 49.064592441000052 ], [ -122.555954591, 49.063618111000046 ], [ -122.555780926999901, 49.063612542000058 ], [ -122.555818455999955, 49.063104822000078 ], [ -122.554936126999948, 49.063076521000013 ], [ -122.555174832999953, 49.059847841000071 ], [ -122.555012428999987, 49.059842631000087 ], [ -122.555015297999958, 49.059803812000062 ], [ -122.556702896, 49.05982223700007 ], [ -122.557127172999941, 49.059826864000094 ], [ -122.559461415999976, 49.059852291000055 ], [ -122.559452449999924, 49.060259422000073 ], [ -122.55944336099995, 49.060673212000047 ], [ -122.559436854999916, 49.06097001600002 ], [ -122.559397927999925, 49.062742016000051 ], [ -122.559386661999937, 49.06325470000008 ], [ -122.55934240000002, 49.065269624000067 ], [ -122.55932697599999, 49.06597114800006 ], [ -122.55929973399995, 49.06721241600011 ], [ -122.55929932399999, 49.067230397000081 ], [ -122.559278887999952, 49.068160396000138 ], [ -122.55927226099999, 49.068570477000023 ], [ -122.559253548999934, 49.069730810000031 ], [ -122.55924444299994, 49.070292515000041 ], [ -122.55923983299999, 49.070576316000079 ], [ -122.559222701999929, 49.071637738000049 ], [ -122.559212789999933, 49.07224939000011 ], [ -122.559186102999973, 49.073901492000047 ], [ -122.559177167999934, 49.074355485000098 ], [ -122.557822920999939, 49.073975004000083 ], [ -122.557167097999965, 49.073815172000053 ], [ -122.556541920999962, 49.073662807000055 ], [ -122.556319826999982, 49.073608658000062 ], [ -122.555351356999964, 49.073399925000018 ], [ -122.555240340999902, 49.073375987000119 ], [ -122.55380452799993, 49.073066477000111 ], [ -122.553528980999943, 49.073007074000095 ], [ -122.55106478899999, 49.072475835000091 ], [ -122.551048417999979, 49.072472301000055 ], [ -122.549722780999971, 49.07218648700006 ], [ -122.548497441000038, 49.07192255100005 ], [ -122.548075237999953, 49.071831614000104 ], [ -122.548078768999972, 49.071414569000027 ], [ -122.548088475999961, 49.070290186000143 ], [ -122.548092991999937, 49.069765909000104 ] ], [ [ -122.555741884999961, 49.069583450000074 ], [ -122.555790605999945, 49.068924443000114 ], [ -122.554164007999944, 49.068872268000113 ], [ -122.554160113999899, 49.069307484000021 ], [ -122.554981545999951, 49.069310655000052 ], [ -122.554979135999986, 49.069580512000115 ], [ -122.555741884999961, 49.069583450000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140583333", "BldgCostT": "92328333", "sL_LossRatio": "0.716618378592241", "sL_AssetLoss": "1941128", "sL_BldgLoss": "1391048", "sL_StrLoss": "635748", "sL_NStrLoss": "755300", "sL_ContLoss": "550080", "geom_point": "0101000020E6100000C4F17D50DBA45EC0EF13726B73894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.57306095899996, 49.079278872000032 ], [ -122.57145903899999, 49.078710955000105 ], [ -122.57008735799999, 49.078224618000029 ], [ -122.569998125999945, 49.078192987000101 ], [ -122.565173319999971, 49.076482154000097 ], [ -122.564186697999915, 49.076132276000109 ], [ -122.563944308999979, 49.076046303000034 ], [ -122.560429659999954, 49.074799755000065 ], [ -122.56020853499993, 49.074721315000076 ], [ -122.559177167999934, 49.074355485000098 ], [ -122.559186102999973, 49.073901492000047 ], [ -122.559212789999933, 49.07224939000011 ], [ -122.559222701999929, 49.071637738000049 ], [ -122.55923983299999, 49.070576316000079 ], [ -122.55924444299994, 49.070292515000041 ], [ -122.559253548999934, 49.069730810000031 ], [ -122.55927226099999, 49.068570477000023 ], [ -122.559278887999952, 49.068160396000138 ], [ -122.570086466999925, 49.068152909000062 ], [ -122.570368413999944, 49.068152698000077 ], [ -122.570369642999978, 49.068018437000063 ], [ -122.570375805000012, 49.067345389000046 ], [ -122.570584402999941, 49.065386299000096 ], [ -122.57130969799999, 49.065534703000104 ], [ -122.57307953699997, 49.065534941000074 ], [ -122.574231207999929, 49.065535090000019 ], [ -122.574460885999954, 49.065499535000065 ], [ -122.574598008999942, 49.065478305000056 ], [ -122.574862909999979, 49.065411904 ], [ -122.575165487999982, 49.065251692000089 ], [ -122.575617489999956, 49.065012391000081 ], [ -122.575864793999969, 49.064943690000085 ], [ -122.575886972999925, 49.064940608000022 ], [ -122.576138508999946, 49.064905498000087 ], [ -122.57675382199993, 49.064906347000019 ], [ -122.577068738999941, 49.064906792000109 ], [ -122.58025854, 49.064911156000029 ], [ -122.58163478299997, 49.064913002000026 ], [ -122.581609916999952, 49.06605398199999 ], [ -122.581604645999931, 49.066296745000052 ], [ -122.581598365999952, 49.066584624000022 ], [ -122.581571917999923, 49.067798842000123 ], [ -122.581552639999956, 49.068681583000071 ], [ -122.581551124999976, 49.06875229500006 ], [ -122.581542464, 49.069148210000016 ], [ -122.581533260999947, 49.069571008000025 ], [ -122.581522740999958, 49.070055193000051 ], [ -122.581522044999986, 49.070086421000106 ], [ -122.58146029599996, 49.072917173000114 ], [ -122.581423061999914, 49.074624144000019 ], [ -122.588022122999988, 49.074665069000062 ], [ -122.58877520299994, 49.074669700000058 ], [ -122.589487155999961, 49.074674103000071 ], [ -122.590007433000011, 49.07467730900003 ], [ -122.592482376999925, 49.074692494000097 ], [ -122.592463061999979, 49.07645538700006 ], [ -122.592460270999965, 49.076707278000107 ], [ -122.592443678999956, 49.078218432000078 ], [ -122.592442515999977, 49.078325304000053 ], [ -122.592440435999933, 49.078361540000031 ], [ -122.592652949999916, 49.082004459000089 ], [ -122.590202595999983, 49.081428797000051 ], [ -122.589104232999929, 49.081170743000079 ], [ -122.58834393299999, 49.080992097000035 ], [ -122.588159065999932, 49.080948674000076 ], [ -122.587957758999963, 49.080901366000028 ], [ -122.585695268999956, 49.080369740000087 ], [ -122.585435025999942, 49.080308575000096 ], [ -122.584252228999986, 49.080030618000059 ], [ -122.583465347999947, 49.079845697000032 ], [ -122.583168140999959, 49.079775845 ], [ -122.582602931999986, 49.079643 ], [ -122.582589664999929, 49.079639880000045 ], [ -122.58202354300002, 49.079506826000042 ], [ -122.581379664999986, 49.079355484000075 ], [ -122.581350357999952, 49.081992895000035 ], [ -122.58134787399996, 49.082213381000017 ], [ -122.580280320999975, 49.08183781400006 ], [ -122.573648627999916, 49.079487185000097 ], [ -122.57306095899996, 49.079278872000032 ] ], [ [ -122.58937047199997, 49.077332561000119 ], [ -122.589382262999919, 49.077171543000091 ], [ -122.589084617, 49.077162093000069 ], [ -122.589095543999932, 49.077012852000038 ], [ -122.587754722999961, 49.076970270000054 ], [ -122.587746306, 49.077085157000056 ], [ -122.587073678999971, 49.077063789000121 ], [ -122.58707308, 49.077071972000056 ], [ -122.585470968, 49.07702106000005 ], [ -122.585431679999928, 49.077557000000112 ], [ -122.585894105999955, 49.077571698000071 ], [ -122.585890407, 49.07762217300008 ], [ -122.58636279400001, 49.077637186000075 ], [ -122.586358499999974, 49.07769576 ], [ -122.586837279999898, 49.077710973000052 ], [ -122.586833608999939, 49.07776109000006 ], [ -122.588339730999934, 49.07780893300005 ], [ -122.588313702999983, 49.078164293000071 ], [ -122.588636376999929, 49.078174541000052 ], [ -122.588699601999949, 49.077311259000027 ], [ -122.58937047199997, 49.077332561000119 ] ], [ [ -122.575639697999918, 49.077127788000034 ], [ -122.575663490999943, 49.076804139000046 ], [ -122.575393226999935, 49.076795524000083 ], [ -122.575369431999931, 49.077119173000099 ], [ -122.575639697999918, 49.077127788000034 ] ], [ [ -122.563573497, 49.073121589000039 ], [ -122.563575859999929, 49.072851732000053 ], [ -122.564808096999982, 49.072856385000065 ], [ -122.564810454999972, 49.072586527000084 ], [ -122.56645342899999, 49.072592710000052 ], [ -122.56645108099994, 49.072862568000048 ], [ -122.567272571999951, 49.072865651000058 ], [ -122.567270228999959, 49.073135508000114 ], [ -122.568091723999913, 49.073138585000017 ], [ -122.568090959999935, 49.073226721000083 ], [ -122.56876026499999, 49.073248103000068 ], [ -122.568767139999977, 49.073154765000041 ], [ -122.569757040999932, 49.073186382000053 ], [ -122.56975969899996, 49.073150289000068 ], [ -122.572318539999983, 49.07323197500007 ], [ -122.572327209999941, 49.07311414100009 ], [ -122.571904333999953, 49.073100646000093 ], [ -122.57210764199999, 49.070337794000125 ], [ -122.57051908599999, 49.070287083000068 ], [ -122.570506739999971, 49.070454793000081 ], [ -122.566269150999972, 49.070319402000067 ], [ -122.566267162999978, 49.07034639600009 ], [ -122.562999635999986, 49.07024188400009 ], [ -122.562987832999937, 49.070401874000041 ], [ -122.562775629000015, 49.070395083000058 ], [ -122.562732006999937, 49.070986321000106 ], [ -122.563530624999913, 49.071011876000092 ], [ -122.563375044999958, 49.073120839000126 ], [ -122.563573497, 49.073121589000039 ] ], [ [ -122.577630323999955, 49.069677997000092 ], [ -122.57739146399993, 49.072929253000055 ], [ -122.577993378999949, 49.072948431000036 ], [ -122.578080485999948, 49.071762635000027 ], [ -122.578035842999938, 49.071761212000105 ], [ -122.57817324799997, 49.069890571000016 ], [ -122.578011455999899, 49.069885416000034 ], [ -122.578125665999934, 49.068330513000042 ], [ -122.578107154999913, 49.068329924000096 ], [ -122.578155236, 49.067675300000118 ], [ -122.577487854999958, 49.067654035000054 ], [ -122.577474176999971, 49.067840232000137 ], [ -122.576998572999969, 49.06782507500003 ], [ -122.576978369999949, 49.068100043000101 ], [ -122.57644539599994, 49.068083055000045 ], [ -122.576331231999973, 49.069636595000112 ], [ -122.577630323999955, 49.069677997000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105888333", "BldgCostT": "70818333", "sL_LossRatio": "0.724939706226588", "sL_AssetLoss": "1508033", "sL_BldgLoss": "1093233", "sL_StrLoss": "498043", "sL_NStrLoss": "595190", "sL_ContLoss": "414800", "geom_point": "0101000020E6100000C4301FF7CAA45EC03C014D840D874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.55932697599999, 49.06597114800006 ], [ -122.55934240000002, 49.065269624000067 ], [ -122.559386661999937, 49.06325470000008 ], [ -122.559397927999925, 49.062742016000051 ], [ -122.559436854999916, 49.06097001600002 ], [ -122.55944336099995, 49.060673212000047 ], [ -122.559452449999924, 49.060259422000073 ], [ -122.559461415999976, 49.059852291000055 ], [ -122.55946177, 49.059674254000086 ], [ -122.559464389999917, 49.058396934000051 ], [ -122.559465700999951, 49.057749227000059 ], [ -122.559465788999958, 49.057704260000065 ], [ -122.55946744799995, 49.056885598000093 ], [ -122.55948082, 49.050318952000104 ], [ -122.559483807999968, 49.048855692000117 ], [ -122.559485428999949, 49.048754010000032 ], [ -122.559492103999958, 49.048340258000067 ], [ -122.559498057999917, 49.047971456000042 ], [ -122.559500839999956, 49.047800568000113 ], [ -122.559506453999916, 49.047449781000111 ], [ -122.559511978999936, 49.047107960000098 ], [ -122.559518380999975, 49.046712201000034 ], [ -122.559536067999929, 49.045614826000069 ], [ -122.559542283999946, 49.045227807000117 ], [ -122.560390235999975, 49.045230060000037 ], [ -122.563072304999977, 49.04523715600007 ], [ -122.564563906999965, 49.045241062000123 ], [ -122.565001802999973, 49.045242219000023 ], [ -122.566028142999954, 49.045244885000116 ], [ -122.567204987999972, 49.04524794600011 ], [ -122.568094468999988, 49.045250246000087 ], [ -122.570677009999926, 49.045256893000094 ], [ -122.571885009000013, 49.045258622000112 ], [ -122.57373235499999, 49.045261266000097 ], [ -122.576044981999985, 49.045264509000056 ], [ -122.57641444599993, 49.04526502700007 ], [ -122.577331244999925, 49.045266299000055 ], [ -122.581816689999982, 49.04527240699999 ], [ -122.583174200999977, 49.045284757000033 ], [ -122.585390871999934, 49.045304924000071 ], [ -122.592917334, 49.045372961000091 ], [ -122.595900396, 49.045366247000054 ], [ -122.59700879399999, 49.045363707000057 ], [ -122.599526779999906, 49.045357930000065 ], [ -122.600006088, 49.045356833000078 ], [ -122.600375549999953, 49.045355984000075 ], [ -122.600867917999906, 49.045354818000128 ], [ -122.604003783999943, 49.045347500000034 ], [ -122.604002265999924, 49.045613864000131 ], [ -122.60398270599994, 49.049017094000064 ], [ -122.600003639999954, 49.04899727700009 ], [ -122.598373580999919, 49.048989094000049 ], [ -122.597964159999933, 49.04899145800001 ], [ -122.597115789, 49.048996355000057 ], [ -122.595651484999976, 49.049004759000105 ], [ -122.593900003999977, 49.049014836000026 ], [ -122.593224015000018, 49.049018701000101 ], [ -122.592797297999979, 49.052534791000021 ], [ -122.591140258999957, 49.052522244000031 ], [ -122.591198788999989, 49.051722012000063 ], [ -122.590628435000013, 49.051703902000021 ], [ -122.590836092999936, 49.048865013000089 ], [ -122.590891540999948, 49.048106927000021 ], [ -122.593258448999933, 49.048182065000034 ], [ -122.593263666, 49.048110693000069 ], [ -122.59121708099994, 49.048045727000073 ], [ -122.591302665999976, 49.046875445000055 ], [ -122.589426017999926, 49.046815839 ], [ -122.589422091999921, 49.046869504000057 ], [ -122.588033677999945, 49.04682538400008 ], [ -122.587971277999941, 49.047677837000094 ], [ -122.585068642999943, 49.047585541000082 ], [ -122.58498851799996, 49.04867915600002 ], [ -122.584985113999934, 49.048725606000055 ], [ -122.583920050999922, 49.048691720000051 ], [ -122.583894059999977, 49.049046349 ], [ -122.585141685999957, 49.04908604100013 ], [ -122.584914508999987, 49.052186560000052 ], [ -122.585036878999944, 49.052190453000058 ], [ -122.585015981999945, 49.052475650000062 ], [ -122.581741539999882, 49.052450594000035 ], [ -122.5817359399999, 49.052983684000061 ], [ -122.58172991099994, 49.053559402000126 ], [ -122.581723878999924, 49.054135064000043 ], [ -122.581719453999966, 49.054557845000019 ], [ -122.581707304999938, 49.055718198000108 ], [ -122.581703195999978, 49.056311828000027 ], [ -122.581698574999919, 49.056977475000046 ], [ -122.581697458999912, 49.057139383000028 ], [ -122.581697360999954, 49.057150995000015 ], [ -122.581695774999957, 49.057382264000111 ], [ -122.581694487999954, 49.057562165000029 ], [ -122.581693024999979, 49.057778043000106 ], [ -122.581688903, 49.058371771000054 ], [ -122.581678308, 49.059899394000077 ], [ -122.581674146999958, 49.060377745000082 ], [ -122.58166205699996, 49.061772020000049 ], [ -122.581654087999979, 49.062689553000034 ], [ -122.581639980999952, 49.06431767200008 ], [ -122.581638219999988, 49.064515583000109 ], [ -122.58163478299997, 49.064913002000026 ], [ -122.58025854, 49.064911156000029 ], [ -122.577068738999941, 49.064906792000109 ], [ -122.57675382199993, 49.064906347000019 ], [ -122.576138508999946, 49.064905498000087 ], [ -122.575886972999925, 49.064940608000022 ], [ -122.575864793999969, 49.064943690000085 ], [ -122.575617489999956, 49.065012391000081 ], [ -122.575165487999982, 49.065251692000089 ], [ -122.574862909999979, 49.065411904 ], [ -122.574598008999942, 49.065478305000056 ], [ -122.574460885999954, 49.065499535000065 ], [ -122.574231207999929, 49.065535090000019 ], [ -122.57307953699997, 49.065534941000074 ], [ -122.57130969799999, 49.065534703000104 ], [ -122.570584402999941, 49.065386299000096 ], [ -122.570375805000012, 49.067345389000046 ], [ -122.570369642999978, 49.068018437000063 ], [ -122.570368413999944, 49.068152698000077 ], [ -122.570086466999925, 49.068152909000062 ], [ -122.559278887999952, 49.068160396000138 ], [ -122.55929932399999, 49.067230397000081 ], [ -122.55929973399995, 49.06721241600011 ], [ -122.55932697599999, 49.06597114800006 ] ], [ [ -122.566257524999955, 49.065695702000042 ], [ -122.566303388999927, 49.065073381000104 ], [ -122.567032216999934, 49.065096682000096 ], [ -122.567048182999969, 49.064879983000012 ], [ -122.5670029599999, 49.064878537000041 ], [ -122.567060220999963, 49.064101384000026 ], [ -122.566194879999983, 49.064073718000024 ], [ -122.566278591999946, 49.062937798000036 ], [ -122.563333507, 49.062843589000067 ], [ -122.563325232999986, 49.062955788000046 ], [ -122.562651796999916, 49.06293423400006 ], [ -122.562516680999948, 49.064765688000087 ], [ -122.562557175999956, 49.064766984000059 ], [ -122.562494545, 49.065615892000046 ], [ -122.565299411999945, 49.065705634000103 ], [ -122.565302395999979, 49.065665159000034 ], [ -122.566257524999955, 49.065695702000042 ] ], [ [ -122.578345063999933, 49.055481296000025 ], [ -122.578479736999938, 49.053646994000104 ], [ -122.578362867, 49.053643269000126 ], [ -122.578410251999941, 49.052997843000114 ], [ -122.578282401999957, 49.052993769000061 ], [ -122.578354545999929, 49.052011134000118 ], [ -122.578205060999949, 49.052006370000107 ], [ -122.578441252999966, 49.048789113000076 ], [ -122.578010150999916, 49.048775372000058 ], [ -122.578033475999945, 49.048457683 ], [ -122.578062921999958, 49.048056599000084 ], [ -122.578030795999922, 49.048055575000028 ], [ -122.57805730299998, 49.04769452500004 ], [ -122.576434944999946, 49.047642798000076 ], [ -122.576415721999936, 49.047904516000052 ], [ -122.574167410999976, 49.04783278900004 ], [ -122.574164230999912, 49.0478760700001 ], [ -122.57357791299998, 49.047857357000076 ], [ -122.573576506999956, 49.047876484 ], [ -122.57286928799999, 49.047853908000064 ], [ -122.572837082999968, 49.048291916000039 ], [ -122.572717983999922, 49.04991159900004 ], [ -122.567258998999947, 49.049737184000058 ], [ -122.567378284999961, 49.048117506000054 ], [ -122.567398974999932, 49.047836552000085 ], [ -122.565084838999979, 49.047762531000068 ], [ -122.565090034999955, 49.047692041000111 ], [ -122.563938905999919, 49.047655202000058 ], [ -122.56396382399997, 49.047317165000074 ], [ -122.562676980999967, 49.047275968000143 ], [ -122.562711000999954, 49.046814639000097 ], [ -122.562626482999988, 49.046811933000065 ], [ -122.562541612999965, 49.047962742000067 ], [ -122.562475811999917, 49.048854950000106 ], [ -122.562360316999929, 49.048851251000066 ], [ -122.56235629199989, 49.048905827000077 ], [ -122.562878090999988, 49.048922534000084 ], [ -122.56274724, 49.050696860000052 ], [ -122.563217989999941, 49.050711930000091 ], [ -122.562952734999953, 49.054308823000014 ], [ -122.562639638999954, 49.054298799000101 ], [ -122.562580609999912, 49.055099087000038 ], [ -122.562782575999975, 49.055105553000033 ], [ -122.56274859199999, 49.055566310000131 ], [ -122.562853001999926, 49.05556965300007 ], [ -122.562737636999884, 49.057133754000056 ], [ -122.56665096499998, 49.057258957000094 ], [ -122.566628593999923, 49.057562601000072 ], [ -122.568562338999953, 49.057624417000127 ], [ -122.568580025999964, 49.057384214000074 ], [ -122.569700547999943, 49.057420017000013 ], [ -122.569712486999933, 49.057257841000094 ], [ -122.570402760999968, 49.057279892000061 ], [ -122.570404558999897, 49.057255458000093 ], [ -122.572256529999891, 49.057314595000051 ], [ -122.572257881999946, 49.057296203000128 ], [ -122.573240532999975, 49.057327568000048 ], [ -122.573245242999946, 49.057263526000035 ], [ -122.575203167999931, 49.057325994000053 ], [ -122.575345761999984, 49.055385672000043 ], [ -122.578345063999933, 49.055481296000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110299667", "BldgCostT": "70066667", "sL_LossRatio": "0.683239349295858", "sL_AssetLoss": "1693550", "sL_BldgLoss": "1157100", "sL_StrLoss": "543790", "sL_NStrLoss": "613310", "sL_ContLoss": "536450", "geom_point": "0101000020E61000005450FEAC01A65EC07E68C5BBCC884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.581350357999952, 49.081992895000035 ], [ -122.581379664999986, 49.079355484000075 ], [ -122.58202354300002, 49.079506826000042 ], [ -122.582589664999929, 49.079639880000045 ], [ -122.582602931999986, 49.079643 ], [ -122.583168140999959, 49.079775845 ], [ -122.583465347999947, 49.079845697000032 ], [ -122.584252228999986, 49.080030618000059 ], [ -122.585435025999942, 49.080308575000096 ], [ -122.585695268999956, 49.080369740000087 ], [ -122.587957758999963, 49.080901366000028 ], [ -122.588159065999932, 49.080948674000076 ], [ -122.58834393299999, 49.080992097000035 ], [ -122.589104232999929, 49.081170743000079 ], [ -122.590202595999983, 49.081428797000051 ], [ -122.592652949999916, 49.082004459000089 ], [ -122.592440435999933, 49.078361540000031 ], [ -122.592442515999977, 49.078325304000053 ], [ -122.592443678999956, 49.078218432000078 ], [ -122.592460270999965, 49.076707278000107 ], [ -122.592463061999979, 49.07645538700006 ], [ -122.592482376999925, 49.074692494000097 ], [ -122.590007433000011, 49.07467730900003 ], [ -122.589487155999961, 49.074674103000071 ], [ -122.58877520299994, 49.074669700000058 ], [ -122.588022122999988, 49.074665069000062 ], [ -122.581423061999914, 49.074624144000019 ], [ -122.58146029599996, 49.072917173000114 ], [ -122.581522044999986, 49.070086421000106 ], [ -122.581522740999958, 49.070055193000051 ], [ -122.581533260999947, 49.069571008000025 ], [ -122.581542464, 49.069148210000016 ], [ -122.581551124999976, 49.06875229500006 ], [ -122.581552639999956, 49.068681583000071 ], [ -122.581571917999923, 49.067798842000123 ], [ -122.581598365999952, 49.066584624000022 ], [ -122.581604645999931, 49.066296745000052 ], [ -122.581609916999952, 49.06605398199999 ], [ -122.58163478299997, 49.064913002000026 ], [ -122.581638219999988, 49.064515583000109 ], [ -122.581639980999952, 49.06431767200008 ], [ -122.581654087999979, 49.062689553000034 ], [ -122.58166205699996, 49.061772020000049 ], [ -122.581674146999958, 49.060377745000082 ], [ -122.581678308, 49.059899394000077 ], [ -122.581688903, 49.058371771000054 ], [ -122.581693024999979, 49.057778043000106 ], [ -122.581694487999954, 49.057562165000029 ], [ -122.581695774999957, 49.057382264000111 ], [ -122.581697360999954, 49.057150995000015 ], [ -122.581697458999912, 49.057139383000028 ], [ -122.581698574999919, 49.056977475000046 ], [ -122.581703195999978, 49.056311828000027 ], [ -122.581707304999938, 49.055718198000108 ], [ -122.581719453999966, 49.054557845000019 ], [ -122.581723878999924, 49.054135064000043 ], [ -122.58172991099994, 49.053559402000126 ], [ -122.5817359399999, 49.052983684000061 ], [ -122.581741539999882, 49.052450594000035 ], [ -122.585015981999945, 49.052475650000062 ], [ -122.58498700399997, 49.052871119000045 ], [ -122.585189215999961, 49.052877551000115 ], [ -122.585068510999974, 49.054524884000024 ], [ -122.585083421999926, 49.05452535800007 ], [ -122.585070668999961, 49.0546993950001 ], [ -122.585315580999975, 49.054707184000037 ], [ -122.585327206999963, 49.054548511000114 ], [ -122.588047108999888, 49.054634979000049 ], [ -122.588065103999924, 49.054389177000083 ], [ -122.59352471399994, 49.054562533000066 ], [ -122.59349768, 49.054932366000045 ], [ -122.594810191999954, 49.054974000000115 ], [ -122.594788467999933, 49.055271291000096 ], [ -122.596783640999917, 49.055334549000065 ], [ -122.596520949999913, 49.058931497000039 ], [ -122.595942363999953, 49.058913157000049 ], [ -122.595839699999971, 49.060318509000069 ], [ -122.594924822999957, 49.060289502000039 ], [ -122.59490257799996, 49.060593931000049 ], [ -122.589442257999977, 49.060420646000075 ], [ -122.58954712699996, 49.058987816000069 ], [ -122.589409644999961, 49.05898345 ], [ -122.589412373999892, 49.058946150000068 ], [ -122.588989767999976, 49.05893272600013 ], [ -122.588908004999951, 49.06004967800002 ], [ -122.585133674999966, 49.059929716000049 ], [ -122.585118147999978, 49.060141600000065 ], [ -122.587279588999934, 49.060210315000077 ], [ -122.587196634999941, 49.061342939 ], [ -122.588236824999939, 49.061375992000116 ], [ -122.587973439999985, 49.064972887000138 ], [ -122.587302431999959, 49.064951566000097 ], [ -122.58720088599992, 49.066337900000065 ], [ -122.585614363999952, 49.066287473000017 ], [ -122.585515735999977, 49.067633239000045 ], [ -122.587764930999953, 49.067704722000087 ], [ -122.587501474999939, 49.071301580000089 ], [ -122.584908624999969, 49.07121917000002 ], [ -122.584858900999947, 49.071897441000047 ], [ -122.584694657999961, 49.071892219000105 ], [ -122.584585615999956, 49.073379509000091 ], [ -122.584740662999948, 49.07338443900008 ], [ -122.584749085999974, 49.073269552000099 ], [ -122.585705000999937, 49.073299941000073 ], [ -122.585716453999979, 49.073143675000047 ], [ -122.586504511999948, 49.073168721000023 ], [ -122.586555558999962, 49.072472093000016 ], [ -122.58841153899999, 49.072531058000031 ], [ -122.588631238999966, 49.069530935000095 ], [ -122.594092621999962, 49.069704258000051 ], [ -122.594081354999958, 49.069858370000098 ], [ -122.596287355999976, 49.069928301000076 ], [ -122.59624316699994, 49.070533106000049 ], [ -122.59740355299995, 49.07056987300011 ], [ -122.597367557999974, 49.071062697000059 ], [ -122.600457141000021, 49.0711605280001 ], [ -122.60047349899996, 49.07093637 ], [ -122.600307210999986, 49.070931107 ], [ -122.600376626999932, 49.069979891000052 ], [ -122.597952886999906, 49.069903147000048 ], [ -122.598215529999948, 49.066306257000093 ], [ -122.600185808999981, 49.066368647000068 ], [ -122.60027452099996, 49.065152918000095 ], [ -122.600182961999977, 49.065150021000072 ], [ -122.600445405999949, 49.061553098000076 ], [ -122.600513206999935, 49.061555243000036 ], [ -122.600656905999941, 49.059585496000146 ], [ -122.600778012999953, 49.059589330000115 ], [ -122.600861660999954, 49.05844259800002 ], [ -122.600895078999955, 49.058443656000044 ], [ -122.600904937999971, 49.058308506000124 ], [ -122.600138380999937, 49.05828423700008 ], [ -122.600239718999916, 49.056895226000073 ], [ -122.59979775499994, 49.056881231000048 ], [ -122.600005701, 49.054031032000125 ], [ -122.59944991699993, 49.054013430000111 ], [ -122.599479425999945, 49.053609018000067 ], [ -122.597707582999973, 49.053552885000038 ], [ -122.597708669999946, 49.053537982000115 ], [ -122.596540835999988, 49.053500969000076 ], [ -122.596508071999963, 49.053949612000054 ], [ -122.591048523999973, 49.053776407000093 ], [ -122.591140258999957, 49.052522244000031 ], [ -122.592797297999979, 49.052534791000021 ], [ -122.593224015000018, 49.049018701000101 ], [ -122.593900003999977, 49.049014836000026 ], [ -122.595651484999976, 49.049004759000105 ], [ -122.597115789, 49.048996355000057 ], [ -122.597964159999933, 49.04899145800001 ], [ -122.598373580999919, 49.048989094000049 ], [ -122.600003639999954, 49.04899727700009 ], [ -122.60398270599994, 49.049017094000064 ], [ -122.603970673999967, 49.050849160000041 ], [ -122.603961740000017, 49.05220747200007 ], [ -122.603959000999907, 49.052626992000086 ], [ -122.603928805999928, 49.060409818000032 ], [ -122.603923313999928, 49.061817400000088 ], [ -122.603917080999949, 49.063424817000097 ], [ -122.603913732999956, 49.064288407000056 ], [ -122.603911949999898, 49.064747200000028 ], [ -122.603910739999932, 49.065062028000042 ], [ -122.603910395999947, 49.065151966000052 ], [ -122.603909901999913, 49.065277883000093 ], [ -122.603908731, 49.065574734000059 ], [ -122.603906188999986, 49.066231452000046 ], [ -122.603904391999933, 49.066690224000077 ], [ -122.603903001999981, 49.067050070000086 ], [ -122.603902447999943, 49.067194002000051 ], [ -122.603900110999973, 49.067796560000062 ], [ -122.603899481, 49.067955492000081 ], [ -122.603884802999957, 49.068399468000038 ], [ -122.603880323999988, 49.068534335000074 ], [ -122.603865421999942, 49.068983786000061 ], [ -122.603856480999923, 49.069253545000052 ], [ -122.603851692999953, 49.069397427000119 ], [ -122.603831015999987, 49.070022710000039 ], [ -122.603793718999952, 49.071039995000049 ], [ -122.603762271999969, 49.072833537000093 ], [ -122.603757191999932, 49.073121354000129 ], [ -122.603754543999955, 49.073274223000084 ], [ -122.603728671999974, 49.074748563000078 ], [ -122.603614315999934, 49.081103533000075 ], [ -122.603596683999939, 49.082098261000056 ], [ -122.603587932, 49.082591611000076 ], [ -122.603581898999906, 49.082827032000075 ], [ -122.603580522999948, 49.08288067600008 ], [ -122.603559525999913, 49.083852393000036 ], [ -122.603544140999944, 49.084562222000038 ], [ -122.603507306999973, 49.086419493000072 ], [ -122.60349748799996, 49.087153443000091 ], [ -122.603488904999921, 49.087796911000083 ], [ -122.603435217999959, 49.088120591000042 ], [ -122.603431504999904, 49.089297541000072 ], [ -122.603469040999983, 49.089852997000065 ], [ -122.60348056499997, 49.090066816000103 ], [ -122.603485309999911, 49.090155444000089 ], [ -122.601682490000016, 49.089532444000042 ], [ -122.601251119999986, 49.089383612000098 ], [ -122.59997505299998, 49.088935045000071 ], [ -122.599749442999922, 49.088855747000089 ], [ -122.599607007999964, 49.088743986000075 ], [ -122.599108117999947, 49.08856414500007 ], [ -122.592793942999947, 49.086293839000071 ], [ -122.592623676999892, 49.086232613000085 ], [ -122.58719676, 49.084298427000057 ], [ -122.58531194499993, 49.083626594000087 ], [ -122.585026600999981, 49.083524881000123 ], [ -122.584563588999941, 49.08335981500008 ], [ -122.584089913999932, 49.083190963000042 ], [ -122.58379890099998, 49.083087226000075 ], [ -122.583007340999956, 49.082805028000138 ], [ -122.58134787399996, 49.082213381000017 ], [ -122.581350357999952, 49.081992895000035 ] ], [ [ -122.600409869999964, 49.079447339000062 ], [ -122.600464297999963, 49.078701618000082 ], [ -122.599736114999985, 49.078678572000108 ], [ -122.599998669999977, 49.075081726000086 ], [ -122.600329914999989, 49.07509221000003 ], [ -122.600353981999973, 49.074762439000068 ], [ -122.600098706999944, 49.074754360000043 ], [ -122.600095078999971, 49.074804064000055 ], [ -122.597341655999969, 49.074716880000096 ], [ -122.597217073999957, 49.074712934000082 ], [ -122.597216830999926, 49.074716257000013 ], [ -122.597128520999917, 49.075925133000069 ], [ -122.595318134999928, 49.07586776800008 ], [ -122.595301556999928, 49.076094577000077 ], [ -122.59493678699999, 49.076083014000062 ], [ -122.594707672999974, 49.079217015000012 ], [ -122.59941242099994, 49.079366042000096 ], [ -122.599376632999935, 49.079856208000052 ], [ -122.600112361999962, 49.07987949400011 ], [ -122.600144519999972, 49.079438942000074 ], [ -122.600409869999964, 49.079447339000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95860833", "BldgCostT": "65583333", "sL_LossRatio": "0.741412435511271", "sL_AssetLoss": "1501619", "sL_BldgLoss": "1113319", "sL_StrLoss": "494429", "sL_NStrLoss": "618890", "sL_ContLoss": "388300", "geom_point": "0101000020E61000004FCFE43052A75EC05F6003E0A7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.603762271999969, 49.072833537000093 ], [ -122.603793718999952, 49.071039995000049 ], [ -122.603831015999987, 49.070022710000039 ], [ -122.603851692999953, 49.069397427000119 ], [ -122.603856480999923, 49.069253545000052 ], [ -122.603865421999942, 49.068983786000061 ], [ -122.603880323999988, 49.068534335000074 ], [ -122.603884802999957, 49.068399468000038 ], [ -122.603899481, 49.067955492000081 ], [ -122.603900110999973, 49.067796560000062 ], [ -122.603902447999943, 49.067194002000051 ], [ -122.603903001999981, 49.067050070000086 ], [ -122.603904391999933, 49.066690224000077 ], [ -122.603906188999986, 49.066231452000046 ], [ -122.603908731, 49.065574734000059 ], [ -122.603909901999913, 49.065277883000093 ], [ -122.603910395999947, 49.065151966000052 ], [ -122.603910739999932, 49.065062028000042 ], [ -122.603911949999898, 49.064747200000028 ], [ -122.603913732999956, 49.064288407000056 ], [ -122.603917080999949, 49.063424817000097 ], [ -122.603923313999928, 49.061817400000088 ], [ -122.603928805999928, 49.060409818000032 ], [ -122.603959000999907, 49.052626992000086 ], [ -122.603961740000017, 49.05220747200007 ], [ -122.603970673999967, 49.050849160000041 ], [ -122.60398270599994, 49.049017094000064 ], [ -122.604002265999924, 49.045613864000131 ], [ -122.604003783999943, 49.045347500000034 ], [ -122.603964511999948, 49.043464422000078 ], [ -122.603958352999925, 49.043167483000126 ], [ -122.60394749799994, 49.042647998000099 ], [ -122.603914199999906, 49.041071256000052 ], [ -122.60391250399999, 49.040990329000088 ], [ -122.603910801999945, 49.040909230000047 ], [ -122.603907555999982, 49.040756350000038 ], [ -122.603831428999968, 49.037148610000045 ], [ -122.603699587000023, 49.030900198000055 ], [ -122.614634494999933, 49.031096078000139 ], [ -122.61617943499999, 49.03112367100006 ], [ -122.61758886199999, 49.031148832000099 ], [ -122.61876464700002, 49.031169779000066 ], [ -122.618987567999937, 49.031173751000047 ], [ -122.618890781999951, 49.032508533000062 ], [ -122.61849738899997, 49.032496138000035 ], [ -122.618467348999971, 49.032910370000138 ], [ -122.618840345999928, 49.032922122000066 ], [ -122.618847862999985, 49.032818457000097 ], [ -122.619851296999968, 49.032850068000073 ], [ -122.619863829999986, 49.032677182000029 ], [ -122.620664273, 49.032702391000015 ], [ -122.620664396, 49.032700702000064 ], [ -122.620818722999957, 49.032705562000054 ], [ -122.620846809999975, 49.032318005000022 ], [ -122.621471118, 49.032337661000021 ], [ -122.621552138999945, 49.031219433000032 ], [ -122.621979687999982, 49.03122704200009 ], [ -122.625037007999978, 49.031281407000122 ], [ -122.625033629999933, 49.031812896000069 ], [ -122.625030007999953, 49.032379618000093 ], [ -122.625013690999964, 49.034947294000077 ], [ -122.62500302799999, 49.037834819000118 ], [ -122.62498333399999, 49.043174192000095 ], [ -122.62498129, 49.043731916000141 ], [ -122.624979384999961, 49.044244665000107 ], [ -122.624973796999939, 49.045756491000056 ], [ -122.624959952999973, 49.048832316000123 ], [ -122.6249414, 49.052948005000125 ], [ -122.624900967999949, 49.05673914700008 ], [ -122.624888691999971, 49.057890507000124 ], [ -122.62486391099999, 49.060214510000037 ], [ -122.62483256499992, 49.064875096000023 ], [ -122.624823341999928, 49.066247251000121 ], [ -122.624809604999911, 49.068289180000122 ], [ -122.624804309999959, 49.06908078 ], [ -122.624800485999955, 49.06964750000008 ], [ -122.624799081, 49.069854392000124 ], [ -122.624797514999912, 49.070088274000085 ], [ -122.62479658499997, 49.070223190000085 ], [ -122.624796524999979, 49.070235605000065 ], [ -122.624794022999964, 49.070609978000043 ], [ -122.624790990999941, 49.071059744000124 ], [ -122.6247831969999, 49.072220153000025 ], [ -122.624781372999934, 49.072489974000113 ], [ -122.624770605999956, 49.074091169000035 ], [ -122.624765208999946, 49.074893385000038 ], [ -122.623949150999962, 49.074887856000025 ], [ -122.62374378, 49.074886464 ], [ -122.623469823999926, 49.074884609000087 ], [ -122.621909126999952, 49.074873993000033 ], [ -122.620293545999942, 49.074862953 ], [ -122.619499310999942, 49.074857550000026 ], [ -122.617911102000022, 49.074846664000034 ], [ -122.617431898999882, 49.074843374000082 ], [ -122.617062214999947, 49.074840851000033 ], [ -122.61334269000001, 49.074815297000022 ], [ -122.612188029, 49.07480732500008 ], [ -122.61001101799998, 49.074792273000092 ], [ -122.603728671999974, 49.074748563000078 ], [ -122.603754543999955, 49.073274223000084 ], [ -122.603757191999932, 49.073121354000129 ], [ -122.603762271999969, 49.072833537000093 ] ], [ [ -122.610088357999956, 49.07254500500008 ], [ -122.610102040999948, 49.07235697600003 ], [ -122.609137749999931, 49.072326539000102 ], [ -122.609208159999952, 49.071359200000131 ], [ -122.608704925999945, 49.071343312000096 ], [ -122.608620816, 49.07249868000013 ], [ -122.610088357999956, 49.07254500500008 ] ], [ [ -122.61470874599999, 49.070996 ], [ -122.614663254999954, 49.071622013000074 ], [ -122.616689714999907, 49.071685862000024 ], [ -122.616633711999967, 49.072456959000085 ], [ -122.618991581, 49.072531203000032 ], [ -122.618985619999989, 49.07261331899999 ], [ -122.620135938999979, 49.072649522000056 ], [ -122.620141294999939, 49.072575705000091 ], [ -122.620494414999939, 49.072586816000076 ], [ -122.620546618999981, 49.071867213000061 ], [ -122.620674325999957, 49.07187123100006 ], [ -122.620772383999977, 49.070519415000128 ], [ -122.621075104999989, 49.070528939000106 ], [ -122.621134655, 49.069707868000087 ], [ -122.620972346, 49.069702761000094 ], [ -122.620980606999922, 49.069588864000103 ], [ -122.620427032999956, 49.06957144700003 ], [ -122.620687940999957, 49.065974500000067 ], [ -122.623078695999979, 49.066049699000061 ], [ -122.623095652999964, 49.065815757000067 ], [ -122.623206161999988, 49.065819232000059 ], [ -122.623222073999926, 49.065599686000041 ], [ -122.620382179999922, 49.065510356000104 ], [ -122.620643067999936, 49.061913387000082 ], [ -122.622691608999901, 49.061977832000053 ], [ -122.622707393999988, 49.061760036000123 ], [ -122.622761504999986, 49.06176173800003 ], [ -122.622780483999946, 49.06149987100008 ], [ -122.621506469999957, 49.061459797000047 ], [ -122.621767249, 49.057862802000095 ], [ -122.622844936999968, 49.057896703000075 ], [ -122.622915081999977, 49.056928768000034 ], [ -122.62184536299999, 49.056895119000053 ], [ -122.621979283999934, 49.055047588000079 ], [ -122.621573366999925, 49.055034816000017 ], [ -122.621579353999948, 49.054952218000039 ], [ -122.620508302999895, 49.05491851200005 ], [ -122.620505597999966, 49.054955829000114 ], [ -122.618129385999936, 49.054881011000106 ], [ -122.618123801999928, 49.054957986000076 ], [ -122.61660393699999, 49.054910104000079 ], [ -122.616597641999959, 49.054996823000039 ], [ -122.612654329999941, 49.054872491000047 ], [ -122.612653774999941, 49.054880119000089 ], [ -122.611848266999971, 49.054854703000082 ], [ -122.611844345999941, 49.054908638000057 ], [ -122.61125163699991, 49.054889933000076 ], [ -122.611250820999956, 49.054901153000102 ], [ -122.607741822999984, 49.054790347000051 ], [ -122.60766741799992, 49.055812501000055 ], [ -122.607678770999925, 49.055812860000081 ], [ -122.607649552999987, 49.056214242000131 ], [ -122.607691294999967, 49.056215561000052 ], [ -122.607657777999961, 49.056675992000038 ], [ -122.607792819999958, 49.05668025900011 ], [ -122.607530970999974, 49.060277227000036 ], [ -122.607134187999989, 49.060264691 ], [ -122.607133548999911, 49.060273457000065 ], [ -122.607422253999985, 49.060282578000084 ], [ -122.607160354999948, 49.063879525000083 ], [ -122.60693547399994, 49.063872420000074 ], [ -122.606899571999946, 49.064365430000052 ], [ -122.606230188999945, 49.064344279000068 ], [ -122.606220302999986, 49.064479987000063 ], [ -122.607916497999966, 49.064533576000031 ], [ -122.60765461299998, 49.068130501000091 ], [ -122.60734022599999, 49.068120570000112 ], [ -122.607169923999919, 49.070459106000044 ], [ -122.607076948999932, 49.070456169000067 ], [ -122.607076927999955, 49.070456460000031 ], [ -122.607116590999965, 49.070457713000074 ], [ -122.607089105999975, 49.070835097000135 ], [ -122.60711181399995, 49.070835815000081 ], [ -122.60709714599993, 49.071037212000142 ], [ -122.60746900099997, 49.071048957000123 ], [ -122.607712366999948, 49.06770679100002 ], [ -122.608786732999988, 49.067740720000081 ], [ -122.608823948999941, 49.067229417000064 ], [ -122.610406864999916, 49.06727938500007 ], [ -122.610425796999934, 49.067019155000089 ], [ -122.615886966999938, 49.067191372000089 ], [ -122.615869820999976, 49.06742742700002 ], [ -122.616952744999963, 49.067461544000061 ], [ -122.616691540999966, 49.071058474000075 ], [ -122.61470874599999, 49.070996 ] ], [ [ -122.620667054999899, 49.051203673000025 ], [ -122.620713519999953, 49.050562811000091 ], [ -122.619486003999953, 49.050524166000059 ], [ -122.619439520999919, 49.05116502700006 ], [ -122.620667054999899, 49.051203673000025 ] ], [ [ -122.611215060999882, 49.044874301000085 ], [ -122.611404035999925, 49.042274706000029 ], [ -122.613736353999954, 49.042348309000062 ], [ -122.613838813, 49.040937760000084 ], [ -122.617852458999948, 49.041064305000077 ], [ -122.618081309999965, 49.037909654000046 ], [ -122.618400817999927, 49.037919722000076 ], [ -122.618463396999957, 49.037056941000102 ], [ -122.617140309999925, 49.037015246000095 ], [ -122.617166605999955, 49.036652828000072 ], [ -122.614919853999965, 49.036581988000059 ], [ -122.615150128999957, 49.033410144000101 ], [ -122.612966379999975, 49.033341245000067 ], [ -122.612974591999929, 49.033228193000127 ], [ -122.610297694999957, 49.033143675000076 ], [ -122.610050649999906, 49.036541636000017 ], [ -122.607189881999915, 49.036451237000108 ], [ -122.607134783000021, 49.037208392000068 ], [ -122.607445537999936, 49.037218216000028 ], [ -122.607304631999909, 49.039154558000121 ], [ -122.607657650999982, 49.039165716000099 ], [ -122.607597287999909, 49.039995237000056 ], [ -122.61010771699992, 49.040074553000117 ], [ -122.609846138999913, 49.043671619000087 ], [ -122.608882378999979, 49.043641177000055 ], [ -122.60863627599997, 49.047023939000091 ], [ -122.60739729, 49.046984790000089 ], [ -122.607393212999938, 49.047040812000056 ], [ -122.607590235999979, 49.047047039000041 ], [ -122.607556365999969, 49.047512407000099 ], [ -122.61002974199999, 49.047590540000044 ], [ -122.610229539999963, 49.044843184000115 ], [ -122.611215060999882, 49.044874301000085 ] ], [ [ -122.619264855999987, 49.041552258000067 ], [ -122.619064895999927, 49.044309409000107 ], [ -122.619503795999961, 49.044323232000046 ], [ -122.619514602, 49.044174207000012 ], [ -122.621228215999963, 49.044228159000049 ], [ -122.621417246999954, 49.041620030000047 ], [ -122.619264855999987, 49.041552258000067 ] ], [ [ -122.609722854999944, 49.032925912000117 ], [ -122.609772683999935, 49.032240599000026 ], [ -122.60860310299995, 49.032203644000049 ], [ -122.608553257999915, 49.032888956000136 ], [ -122.609722854999944, 49.032925912000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119185166", "BldgCostT": "76391666", "sL_LossRatio": "0.700403090085568", "sL_AssetLoss": "1717234", "sL_BldgLoss": "1202756", "sL_StrLoss": "516286", "sL_NStrLoss": "686470", "sL_ContLoss": "514478", "geom_point": "0101000020E610000022E640ACCAA85EC08EE3FA56EF874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.624765208999946, 49.074893385000038 ], [ -122.624770605999956, 49.074091169000035 ], [ -122.624781372999934, 49.072489974000113 ], [ -122.6247831969999, 49.072220153000025 ], [ -122.624790990999941, 49.071059744000124 ], [ -122.624794022999964, 49.070609978000043 ], [ -122.624796524999979, 49.070235605000065 ], [ -122.62479658499997, 49.070223190000085 ], [ -122.624797514999912, 49.070088274000085 ], [ -122.624799081, 49.069854392000124 ], [ -122.624800485999955, 49.06964750000008 ], [ -122.624804309999959, 49.06908078 ], [ -122.624809604999911, 49.068289180000122 ], [ -122.624823341999928, 49.066247251000121 ], [ -122.62483256499992, 49.064875096000023 ], [ -122.62486391099999, 49.060214510000037 ], [ -122.624888691999971, 49.057890507000124 ], [ -122.624900967999949, 49.05673914700008 ], [ -122.6249414, 49.052948005000125 ], [ -122.628452233, 49.052925609000113 ], [ -122.628421351999975, 49.0533524780001 ], [ -122.628495255999923, 49.053354798000072 ], [ -122.628325904999912, 49.055695680000049 ], [ -122.628476399999954, 49.055700406000028 ], [ -122.628329680999954, 49.057728359000109 ], [ -122.629411600999973, 49.057762326000038 ], [ -122.629447472, 49.057266386000038 ], [ -122.630819829999908, 49.057309456000041 ], [ -122.630860543999987, 49.056746319000105 ], [ -122.631822488999887, 49.056776498000055 ], [ -122.631833210999929, 49.05662814100009 ], [ -122.632793417999949, 49.056658258000091 ], [ -122.632808481999945, 49.056449765000096 ], [ -122.634456977999946, 49.056501448000041 ], [ -122.634577119999975, 49.054837793000061 ], [ -122.634311147999966, 49.054829456000057 ], [ -122.634451417999969, 49.052887074000111 ], [ -122.636427638, 49.052874306000071 ], [ -122.636450026999952, 49.051291280000086 ], [ -122.637380249999964, 49.05132041900012 ], [ -122.637415559999951, 49.050830988000037 ], [ -122.636583577999943, 49.050804927000108 ], [ -122.636619357, 49.050309117000069 ], [ -122.6366799729999, 49.049469086000073 ], [ -122.636496156999925, 49.049463328000115 ], [ -122.63659899299995, 49.048038236000124 ], [ -122.636496075999901, 49.048035012000071 ], [ -122.636528780999953, 49.045722049000041 ], [ -122.637607926999976, 49.045718787000069 ], [ -122.63814834499999, 49.045717127000025 ], [ -122.638134477, 49.045909417000047 ], [ -122.638161238999913, 49.045910255000145 ], [ -122.638175172999951, 49.045717044000078 ], [ -122.638292225999976, 49.045716685000066 ], [ -122.638908131, 49.045714805000017 ], [ -122.640208054999974, 49.045710843000037 ], [ -122.640358603999928, 49.045710363000104 ], [ -122.641680712999914, 49.045706295000073 ], [ -122.647269178999963, 49.04568989400012 ], [ -122.647290898999969, 49.047643572000048 ], [ -122.647294610999936, 49.047976388000102 ], [ -122.647349686999974, 49.052937995000072 ], [ -122.647342103, 49.054750024000072 ], [ -122.647339286999937, 49.055421591000027 ], [ -122.647340260999925, 49.055586902000073 ], [ -122.647341152999971, 49.055748522000073 ], [ -122.647353457999941, 49.05790749300008 ], [ -122.647366711999979, 49.060232701000047 ], [ -122.64732510599994, 49.061571598000107 ], [ -122.647330981999957, 49.062054440000068 ], [ -122.647338565000013, 49.062675288000051 ], [ -122.647351423999964, 49.06372786400015 ], [ -122.647354169999986, 49.063952835000123 ], [ -122.64736145699996, 49.064546587000109 ], [ -122.647368023999888, 49.065086359000134 ], [ -122.647381956999979, 49.066226336000035 ], [ -122.647384958999979, 49.066471514000014 ], [ -122.647397397999924, 49.06748888900011 ], [ -122.647397827999924, 49.067964654000043 ], [ -122.647399072, 49.069286959000067 ], [ -122.647399816999922, 49.070080109000052 ], [ -122.64742740299998, 49.071844804000065 ], [ -122.647441391999962, 49.072677109000026 ], [ -122.64745860799998, 49.073731183000106 ], [ -122.647474903000017, 49.07464558300007 ], [ -122.646283402999956, 49.074650189000117 ], [ -122.642038831, 49.074666429000047 ], [ -122.641339234999947, 49.074669089000082 ], [ -122.640423068999922, 49.07467256700005 ], [ -122.639013313999897, 49.074677905000044 ], [ -122.63804111099995, 49.074681575000071 ], [ -122.637137331999924, 49.074684986000065 ], [ -122.636372392999931, 49.074687840000109 ], [ -122.632565918999916, 49.074711005000061 ], [ -122.631532829999969, 49.074767610000102 ], [ -122.630694123999902, 49.074813555000034 ], [ -122.62933270099991, 49.074888109000064 ], [ -122.628122202999961, 49.074839507000021 ], [ -122.628092212, 49.074838302000089 ], [ -122.627277641999953, 49.074851796000075 ], [ -122.626319120999952, 49.074867662000017 ], [ -122.625183094999926, 49.074886477000092 ], [ -122.624765208999946, 49.074893385000038 ] ], [ [ -122.635706590000012, 49.070458137000067 ], [ -122.635729914999942, 49.07013513200009 ], [ -122.63296931499994, 49.070048629000027 ], [ -122.632916181999974, 49.070783782000028 ], [ -122.631531195999955, 49.070740357000091 ], [ -122.631522428999958, 49.070861616000094 ], [ -122.628671852999972, 49.070772181000073 ], [ -122.628565935000012, 49.072235777000017 ], [ -122.628670006999982, 49.072239044000057 ], [ -122.628651337999926, 49.072497032000079 ], [ -122.629906280999961, 49.07253641300008 ], [ -122.629850969999922, 49.073300962000076 ], [ -122.631684605999936, 49.073358477000056 ], [ -122.631759938999934, 49.072316586000028 ], [ -122.634097839999981, 49.072389871000077 ], [ -122.634189606999954, 49.071119741000125 ], [ -122.634212827999974, 49.071120469000107 ], [ -122.634263943999898, 49.070412941000058 ], [ -122.635706590000012, 49.070458137000067 ] ], [ [ -122.63876640299992, 49.069863715000082 ], [ -122.638768281999958, 49.069604688000076 ], [ -122.637906373999925, 49.069577712000047 ], [ -122.637909998999973, 49.069527483000087 ], [ -122.637667586999953, 49.069519894000031 ], [ -122.637657809999908, 49.069655371000053 ], [ -122.635972482999961, 49.069602599000092 ], [ -122.635959971999938, 49.069775854000056 ], [ -122.63876640299992, 49.069863715000082 ] ], [ [ -122.636013925999961, 49.06505167200006 ], [ -122.63601901199999, 49.064981223000053 ], [ -122.63412002299998, 49.064921723000047 ], [ -122.634305704999946, 49.062351189000054 ], [ -122.633947112000016, 49.062339950000194 ], [ -122.633946452999922, 49.062349082000075 ], [ -122.631746872999912, 49.062280115000128 ], [ -122.631694397999965, 49.063006035000029 ], [ -122.628152523999916, 49.062894886000073 ], [ -122.628040760999966, 49.064439282000102 ], [ -122.628777825999947, 49.064462421000044 ], [ -122.628745954999971, 49.064902929000077 ], [ -122.630922162999951, 49.064971221000128 ], [ -122.630924684999954, 49.064936344000031 ], [ -122.635889192999954, 49.065091969000029 ], [ -122.63589237799999, 49.065047864000086 ], [ -122.636013925999961, 49.06505167200006 ] ], [ [ -122.637759995999915, 49.060293471000087 ], [ -122.637765998999953, 49.060210281000103 ], [ -122.637048715999967, 49.060187820000124 ], [ -122.637042795999903, 49.060269838000103 ], [ -122.637033667999972, 49.060396312000066 ], [ -122.63607164699999, 49.060366181000099 ], [ -122.636060935999964, 49.060514536000063 ], [ -122.63517169, 49.060486676000096 ], [ -122.635109522999954, 49.061347584000039 ], [ -122.637678131999976, 49.061428038000031 ], [ -122.637759995999915, 49.060293471000087 ] ], [ [ -122.643648234999915, 49.055880067000011 ], [ -122.643760724999964, 49.054318073000033 ], [ -122.64343211399995, 49.054307800000046 ], [ -122.643437719999952, 49.054229960000079 ], [ -122.640100626999967, 49.054125585000151 ], [ -122.6400686699999, 49.054568857000064 ], [ -122.640232699999984, 49.054573990000044 ], [ -122.640155947999972, 49.055638621000121 ], [ -122.640509555, 49.055649685000041 ], [ -122.640500045999971, 49.055781612000104 ], [ -122.643648234999915, 49.055880067000011 ] ], [ [ -122.645015652000012, 49.048535977000078 ], [ -122.64503594699994, 49.048254020000073 ], [ -122.645013604999974, 49.048253321000054 ], [ -122.64499331, 49.048535278000081 ], [ -122.645015652000012, 49.048535977000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.759871931696905", "sL_AssetLoss": "9370", "sL_BldgLoss": "7120", "sL_StrLoss": "3150", "sL_NStrLoss": "3970", "sL_ContLoss": "2250", "geom_point": "0101000020E610000028CED57FABA85EC0B58CD47BAA864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63457090199995, 49.051232392000038 ], [ -122.636450026999952, 49.051291280000086 ], [ -122.636427638, 49.052874306000071 ], [ -122.634451417999969, 49.052887074000111 ], [ -122.63457090199995, 49.051232392000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124635000", "BldgCostT": "81480000", "sL_LossRatio": "0.717608168270641", "sL_AssetLoss": "1875550", "sL_BldgLoss": "1345910", "sL_StrLoss": "609860", "sL_NStrLoss": "736050", "sL_ContLoss": "529640", "geom_point": "0101000020E6100000C15575C1A6A85EC09944076EEE834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.6249414, 49.052948005000125 ], [ -122.624959952999973, 49.048832316000123 ], [ -122.624973796999939, 49.045756491000056 ], [ -122.624979384999961, 49.044244665000107 ], [ -122.62498129, 49.043731916000141 ], [ -122.62498333399999, 49.043174192000095 ], [ -122.62500302799999, 49.037834819000118 ], [ -122.625013690999964, 49.034947294000077 ], [ -122.625030007999953, 49.032379618000093 ], [ -122.625033629999933, 49.031812896000069 ], [ -122.625037007999978, 49.031281407000122 ], [ -122.625047071999958, 49.028664380000066 ], [ -122.625054204, 49.026820308000012 ], [ -122.625069400999962, 49.022871269000042 ], [ -122.625070035999912, 49.022709373000112 ], [ -122.625073911999976, 49.021701897000071 ], [ -122.625088655999932, 49.017878806000077 ], [ -122.62509051699999, 49.017393024000057 ], [ -122.625092903999985, 49.016774116000072 ], [ -122.625107423999921, 49.014973367000081 ], [ -122.625110961999937, 49.014532572000107 ], [ -122.625116411999926, 49.013857939000083 ], [ -122.625122179999934, 49.013138999000041 ], [ -122.625131738999983, 49.012229802000029 ], [ -122.625133246999937, 49.012085863000067 ], [ -122.625136530999953, 49.011771021000079 ], [ -122.625139659999931, 49.011474168000099 ], [ -122.625143227, 49.011132328 ], [ -122.625151620999986, 49.010331755000024 ], [ -122.625160411999943, 49.009494104000069 ], [ -122.626247112999948, 49.009489837000046 ], [ -122.628120474999946, 49.00948245900009 ], [ -122.636087689999911, 49.009450705000127 ], [ -122.636586170999976, 49.009448869000067 ], [ -122.63706461799994, 49.00944713500008 ], [ -122.63919753299993, 49.009439280000024 ], [ -122.646924445999957, 49.009410484000078 ], [ -122.647102199999921, 49.00940980300004 ], [ -122.647037847999968, 49.009892914000041 ], [ -122.647067720999956, 49.010276659000127 ], [ -122.647154648999944, 49.011560629000037 ], [ -122.642879119999975, 49.011426900000089 ], [ -122.642965477999937, 49.010226825000089 ], [ -122.642311719999952, 49.010206362000083 ], [ -122.642259325999959, 49.01093433100008 ], [ -122.63680463899999, 49.010763440000119 ], [ -122.636811331999979, 49.010670592000096 ], [ -122.633871142999965, 49.010578363000079 ], [ -122.633876417999915, 49.010505240000043 ], [ -122.632624546999963, 49.010465946000103 ], [ -122.63258873699999, 49.010962065000079 ], [ -122.628250877999989, 49.010825794 ], [ -122.628175017999922, 49.011875354 ], [ -122.628348020999937, 49.01188079100011 ], [ -122.628229988000029, 49.013513840000023 ], [ -122.628403518999932, 49.013519294000034 ], [ -122.628366571999919, 49.014030485000042 ], [ -122.628605072999974, 49.014037980000111 ], [ -122.628607814999953, 49.014000038000106 ], [ -122.632968572999985, 49.014137004000098 ], [ -122.63298544499996, 49.013903244000055 ], [ -122.638440483999929, 49.014074329000096 ], [ -122.638358139999923, 49.015216990000056 ], [ -122.64086977, 49.015295668000114 ], [ -122.640610699999939, 49.018892948000101 ], [ -122.63992426799993, 49.018871451000052 ], [ -122.63989849099994, 49.019229264000039 ], [ -122.638422406999965, 49.019183024000064 ], [ -122.638394548999912, 49.0195695540001 ], [ -122.639370188, 49.019600119000081 ], [ -122.639120678999944, 49.023062790000075 ], [ -122.639839884999958, 49.023085317000032 ], [ -122.639715141999901, 49.024816651000016 ], [ -122.640074781999971, 49.024827914000085 ], [ -122.639862948999976, 49.027768025000093 ], [ -122.643081659999908, 49.027868767000058 ], [ -122.643084369999912, 49.027831118000023 ], [ -122.642644309000019, 49.027817350000078 ], [ -122.642770559000013, 49.026063689000111 ], [ -122.642593613999949, 49.026058154000147 ], [ -122.642852570999978, 49.022460908000056 ], [ -122.643353001999969, 49.022476566000094 ], [ -122.643512765999901, 49.020256618000062 ], [ -122.643540912999953, 49.020257498000014 ], [ -122.643626226999942, 49.019071917000083 ], [ -122.647271264999944, 49.019185890000117 ], [ -122.647195245999939, 49.019507163000043 ], [ -122.64771912799992, 49.020270489000062 ], [ -122.647138667999954, 49.020628879000064 ], [ -122.647118799999959, 49.020930394000032 ], [ -122.647118850999931, 49.020939403000114 ], [ -122.647120327999986, 49.02126729700008 ], [ -122.647121869, 49.02160918800007 ], [ -122.647122648999968, 49.021780088000156 ], [ -122.647122699999954, 49.021789157000079 ], [ -122.64712939899999, 49.023255583000065 ], [ -122.64713702200001, 49.024937891000036 ], [ -122.64714502799994, 49.026692093000044 ], [ -122.647149977999931, 49.027780435000118 ], [ -122.647156695999954, 49.029255860000063 ], [ -122.64715845299996, 49.029642708000019 ], [ -122.647165606999977, 49.031213405000067 ], [ -122.647206394999955, 49.038443304000054 ], [ -122.647215024999952, 49.039438867000108 ], [ -122.64721563499999, 49.0395108210001 ], [ -122.647222198999913, 49.040266601000084 ], [ -122.647224696999928, 49.04055442700011 ], [ -122.64723787299999, 49.042074831000086 ], [ -122.647269178999963, 49.04568989400012 ], [ -122.641680712999914, 49.045706295000073 ], [ -122.640358603999928, 49.045710363000104 ], [ -122.640208054999974, 49.045710843000037 ], [ -122.638908131, 49.045714805000017 ], [ -122.638292225999976, 49.045716685000066 ], [ -122.638175172999951, 49.045717044000078 ], [ -122.638257523999954, 49.044575162000044 ], [ -122.643669358999929, 49.044744507000068 ], [ -122.643679302999971, 49.044606393000038 ], [ -122.64488375799999, 49.044644046000073 ], [ -122.64489539799996, 49.044482318000114 ], [ -122.644509456999984, 49.044470255000086 ], [ -122.644533136999968, 49.044141285000087 ], [ -122.644487376, 49.04413985500004 ], [ -122.644507653999966, 49.043858152000048 ], [ -122.642232114999956, 49.043786996000065 ], [ -122.642281913999938, 49.043095624000102 ], [ -122.638047347999972, 49.042963080000078 ], [ -122.637963199999959, 49.044129838000067 ], [ -122.636433546999982, 49.04408191900005 ], [ -122.636422559999957, 49.044234193000065 ], [ -122.636925487999974, 49.044249951000033 ], [ -122.636924109999953, 49.044269045000092 ], [ -122.637664262999948, 49.044292231000099 ], [ -122.63765173099992, 49.044465977000044 ], [ -122.638237254999936, 49.044484316000116 ], [ -122.63814834499999, 49.045717127000025 ], [ -122.637607926999976, 49.045718787000069 ], [ -122.636528780999953, 49.045722049000041 ], [ -122.636496075999901, 49.048035012000071 ], [ -122.636155875999961, 49.048024353000095 ], [ -122.636140655999952, 49.04823527000007 ], [ -122.635566965999985, 49.048217292000103 ], [ -122.635564432999942, 49.048252384000058 ], [ -122.635045615999942, 49.048236124000084 ], [ -122.635043711999941, 49.048262496000106 ], [ -122.63368196499999, 49.048219804000048 ], [ -122.633678157999924, 49.048272530000077 ], [ -122.630974408999961, 49.048187714000072 ], [ -122.630931373999942, 49.048783095000012 ], [ -122.628851765, 49.04871781100011 ], [ -122.628838895999976, 49.048895744000049 ], [ -122.628715109999931, 49.048891857000079 ], [ -122.62863072199994, 49.050058549000013 ], [ -122.628511838999884, 49.051702044000066 ], [ -122.628469646999974, 49.051700720000056 ], [ -122.628449668999934, 49.051976894000056 ], [ -122.628519769999926, 49.051979094000053 ], [ -122.628501456999942, 49.052232267000079 ], [ -122.628502386999955, 49.052232296000085 ], [ -122.628452233, 49.052925609000113 ], [ -122.6249414, 49.052948005000125 ] ], [ [ -122.632561713000015, 49.043168780000045 ], [ -122.632734495999941, 49.040776748000098 ], [ -122.632377339999934, 49.04076554300007 ], [ -122.632573099999902, 49.038055386000046 ], [ -122.632406205999956, 49.038050149000078 ], [ -122.632485448999958, 49.036953068000095 ], [ -122.631969797999957, 49.036936887000074 ], [ -122.631961063999967, 49.037057803000074 ], [ -122.631197953999958, 49.037033854000093 ], [ -122.631195831999904, 49.037063223000075 ], [ -122.62992370099991, 49.037023285000075 ], [ -122.62991039, 49.037207454000061 ], [ -122.628200790999969, 49.037153758000031 ], [ -122.628132935999986, 49.038091979000065 ], [ -122.628269328, 49.038096264000025 ], [ -122.628208872, 49.03893220500003 ], [ -122.629521535999913, 49.038973434000106 ], [ -122.629261460999913, 49.042570553000061 ], [ -122.629065622999974, 49.042564404000117 ], [ -122.629013339999943, 49.043287399000057 ], [ -122.630148080999959, 49.043323028000025 ], [ -122.63014048, 49.043428169000094 ], [ -122.631007914999927, 49.043455397000102 ], [ -122.631032097999949, 49.043120783000042 ], [ -122.632561713000015, 49.043168780000045 ] ], [ [ -122.642710113999939, 49.039778930000104 ], [ -122.642680096999982, 49.040195760000117 ], [ -122.643310487999955, 49.040215476000064 ], [ -122.643325673999939, 49.040004571000082 ], [ -122.643375147999947, 49.040006118000122 ], [ -122.643389974999977, 49.039800193000133 ], [ -122.642710113999939, 49.039778930000104 ] ], [ [ -122.643471812999962, 49.032691563000078 ], [ -122.643516266999953, 49.032074009000013 ], [ -122.643245970999928, 49.032065555000074 ], [ -122.643281658999939, 49.031569810000057 ], [ -122.643189575999955, 49.031566929000114 ], [ -122.643109426999899, 49.0326802290001 ], [ -122.643471812999962, 49.032691563000078 ] ], [ [ -122.632792787999932, 49.029891440000014 ], [ -122.632813551999959, 49.029603901000065 ], [ -122.631867577999941, 49.029574214 ], [ -122.63184680899991, 49.029861753000027 ], [ -122.632792787999932, 49.029891440000014 ] ], [ [ -122.63296879699999, 49.025532218000045 ], [ -122.632973167999978, 49.025471687000064 ], [ -122.632629084999934, 49.025460889000115 ], [ -122.632706816999985, 49.024384340000012 ], [ -122.632683054, 49.024383594000042 ], [ -122.63280688099999, 49.02266853800004 ], [ -122.632429449999933, 49.022656691000094 ], [ -122.632620898999974, 49.02000509600002 ], [ -122.632608418999922, 49.020004704000037 ], [ -122.632693112999931, 49.018831582000132 ], [ -122.632425510999923, 49.018823183000102 ], [ -122.632355218999948, 49.0197967450001 ], [ -122.62867673199996, 49.019681215000084 ], [ -122.628631395999903, 49.020308434000086 ], [ -122.628563350999983, 49.02030629500009 ], [ -122.628550592999886, 49.02048281400004 ], [ -122.629523504999923, 49.020513384 ], [ -122.629263532999971, 49.024110607000082 ], [ -122.628944258999923, 49.024100576000123 ], [ -122.628852785999968, 49.025366013000138 ], [ -122.628749980999928, 49.025362783000112 ], [ -122.628713327999947, 49.025869801000042 ], [ -122.631476401999961, 49.025956579000109 ], [ -122.631510359999965, 49.025486443000055 ], [ -122.63296879699999, 49.025532218000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7518250", "BldgCostT": "5185000", "sL_LossRatio": "0.751664567212525", "sL_AssetLoss": "100026", "sL_BldgLoss": "75186", "sL_StrLoss": "34896", "sL_NStrLoss": "40290", "sL_ContLoss": "24840", "geom_point": "0101000020E6100000DA17D87C7FA95EC08A22203643834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64715845299996, 49.029642708000019 ], [ -122.647156695999954, 49.029255860000063 ], [ -122.647149977999931, 49.027780435000118 ], [ -122.64714502799994, 49.026692093000044 ], [ -122.64713702200001, 49.024937891000036 ], [ -122.64712939899999, 49.023255583000065 ], [ -122.647122699999954, 49.021789157000079 ], [ -122.647122648999968, 49.021780088000156 ], [ -122.647121869, 49.02160918800007 ], [ -122.647120327999986, 49.02126729700008 ], [ -122.647118850999931, 49.020939403000114 ], [ -122.647118799999959, 49.020930394000032 ], [ -122.647138667999954, 49.020628879000064 ], [ -122.64771912799992, 49.020270489000062 ], [ -122.647195245999939, 49.019507163000043 ], [ -122.647271264999944, 49.019185890000117 ], [ -122.649081909999907, 49.019242460000086 ], [ -122.648922988, 49.021454454000043 ], [ -122.650065711999972, 49.021490139000029 ], [ -122.64980731799993, 49.025087407000029 ], [ -122.649056260999942, 49.025063954000096 ], [ -122.648938062999946, 49.026708910000131 ], [ -122.649125964999911, 49.026714779000081 ], [ -122.648923868999944, 49.029527212000055 ], [ -122.650590586999968, 49.029579248000026 ], [ -122.650473387999924, 49.031210888000047 ], [ -122.64995718199998, 49.031211289000105 ], [ -122.648233549999929, 49.031212606000089 ], [ -122.647165606999977, 49.031213405000067 ], [ -122.64715845299996, 49.029642708000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199974084", "BldgCostT": "136178334", "sL_LossRatio": "0.732120182070367", "sL_AssetLoss": "3071340", "sL_BldgLoss": "2248590", "sL_StrLoss": "1025060", "sL_NStrLoss": "1223530", "sL_ContLoss": "822750", "geom_point": "0101000020E610000044D62B7685AA5EC0C4490E96B9814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.665044137999942, 49.031132687000117 ], [ -122.665227626999979, 49.028566968000071 ], [ -122.665453323999913, 49.028573981000108 ], [ -122.665627046999987, 49.026144371000136 ], [ -122.665672813999961, 49.02614579300004 ], [ -122.665768601999929, 49.024805997000087 ], [ -122.665310525999956, 49.024791761000046 ], [ -122.665567724, 49.021194455000135 ], [ -122.666636672, 49.021227671000133 ], [ -122.666673821999936, 49.020707846000029 ], [ -122.666492219999938, 49.020702204000045 ], [ -122.666635429999928, 49.018698359000105 ], [ -122.663916352999962, 49.018613840000057 ], [ -122.663952868, 49.018103306000043 ], [ -122.663707362999943, 49.018095672000058 ], [ -122.663706689999913, 49.018105091000074 ], [ -122.660143443999942, 49.017994221000052 ], [ -122.660085382999938, 49.018805077000081 ], [ -122.654629711999945, 49.018635093000078 ], [ -122.654887698999957, 49.015037777000089 ], [ -122.655704982999978, 49.015063259000058 ], [ -122.655752485999955, 49.014400651000116 ], [ -122.655678108999965, 49.014398332000084 ], [ -122.655724587999956, 49.013749998000058 ], [ -122.655517141999979, 49.013743530000056 ], [ -122.655560329999958, 49.013141150000116 ], [ -122.65421823399997, 49.013099298000121 ], [ -122.654375572999982, 49.010905453000099 ], [ -122.650766147999917, 49.01079281200002 ], [ -122.650769692, 49.010743453000053 ], [ -122.648400579999958, 49.01066945200003 ], [ -122.648333905999962, 49.011597483000038 ], [ -122.647154648999944, 49.011560629000037 ], [ -122.647067720999956, 49.010276659000127 ], [ -122.647037847999968, 49.009892914000041 ], [ -122.647102199999921, 49.00940980300004 ], [ -122.646924445999957, 49.009410484000078 ], [ -122.63919753299993, 49.009439280000024 ], [ -122.63706461799994, 49.00944713500008 ], [ -122.636586170999976, 49.009448869000067 ], [ -122.636087689999911, 49.009450705000127 ], [ -122.636086687000017, 49.006363685000032 ], [ -122.636086490999915, 49.005732493000053 ], [ -122.636067216999962, 49.004069401000045 ], [ -122.636057345000026, 49.003214696000093 ], [ -122.636046193999931, 49.002254709000098 ], [ -122.63665178399998, 49.002254040000032 ], [ -122.636911576999921, 49.002253739000089 ], [ -122.637376493, 49.002253227000097 ], [ -122.641570002999956, 49.002248509000061 ], [ -122.644048870999939, 49.002242417000033 ], [ -122.644390534, 49.002241592000139 ], [ -122.644978405999936, 49.00224011900012 ], [ -122.647043794999959, 49.002234997000066 ], [ -122.648970938999966, 49.002235642000073 ], [ -122.649914263999932, 49.002235929000065 ], [ -122.653338123999973, 49.00223694900005 ], [ -122.65316511499995, 49.004648987000074 ], [ -122.651792641999961, 49.004606148000065 ], [ -122.651788559999929, 49.004663020000109 ], [ -122.651071207999948, 49.004640622000089 ], [ -122.650905052, 49.006955434000076 ], [ -122.650832617999953, 49.006953172000074 ], [ -122.650829179999903, 49.007001060000078 ], [ -122.65191411899994, 49.007034933000078 ], [ -122.651924469999983, 49.006890681000101 ], [ -122.65406839799999, 49.006957586000034 ], [ -122.654319765999915, 49.003452230000057 ], [ -122.65977366199999, 49.003622233000073 ], [ -122.659548618999963, 49.006765641000079 ], [ -122.661724585999977, 49.006833390000033 ], [ -122.661630050999946, 49.008154588000053 ], [ -122.665466685, 49.008273934000044 ], [ -122.665472911, 49.007344426000067 ], [ -122.665883123999919, 49.007345616000052 ], [ -122.665884928999958, 49.007075751000066 ], [ -122.665951801999967, 49.007075945000103 ], [ -122.666048202999946, 49.005726881000093 ], [ -122.665483758999969, 49.005725245000107 ], [ -122.665485566999934, 49.005455382000079 ], [ -122.664665174999953, 49.005453 ], [ -122.66466698699999, 49.005183137000067 ], [ -122.663436405999974, 49.005179554000065 ], [ -122.663441862999917, 49.004369963000038 ], [ -122.663031674999942, 49.004368766000042 ], [ -122.663029853999944, 49.004638629000112 ], [ -122.661799286999965, 49.004635029000056 ], [ -122.661804768999971, 49.003825438000021 ], [ -122.662214950999925, 49.003826639000046 ], [ -122.662218601999967, 49.003286913000139 ], [ -122.664679670999973, 49.003294091000051 ], [ -122.66468148199999, 49.00302422700009 ], [ -122.665091656999905, 49.003025419000025 ], [ -122.665093467999966, 49.002755554000061 ], [ -122.665503639999955, 49.002756744000123 ], [ -122.665505447999976, 49.002486880000092 ], [ -122.665584170999949, 49.002487108000018 ], [ -122.66560112, 49.002249925000072 ], [ -122.669346424999972, 49.002230468000079 ], [ -122.671068752999986, 49.002225421000055 ], [ -122.671068211999952, 49.002233006000061 ], [ -122.673358747999927, 49.002239513000049 ], [ -122.67336023499999, 49.002218658000047 ], [ -122.67377388899996, 49.002217432000052 ], [ -122.676084913999929, 49.002210584000096 ], [ -122.677014701999951, 49.002207803000069 ], [ -122.677506894999937, 49.002206335000103 ], [ -122.679930584999937, 49.002199030000085 ], [ -122.68103280399994, 49.002204906000102 ], [ -122.681628635999971, 49.002208088000032 ], [ -122.680596052999988, 49.004337024000066 ], [ -122.679862109999931, 49.005850049000145 ], [ -122.681664376999962, 49.010539419000118 ], [ -122.681194287999929, 49.013086231000038 ], [ -122.680661276999928, 49.015973444000103 ], [ -122.679658084999915, 49.016608398000123 ], [ -122.67966589699995, 49.016784773000033 ], [ -122.679672637999914, 49.016937190000071 ], [ -122.679753004999924, 49.018759581000083 ], [ -122.679658145999923, 49.018756646000021 ], [ -122.679644356999958, 49.018950347000064 ], [ -122.679761576999965, 49.018953975000095 ], [ -122.68004124399998, 49.025294392000013 ], [ -122.679668424999946, 49.025282856000075 ], [ -122.679601882999918, 49.02621748200005 ], [ -122.676556924999957, 49.026123215000084 ], [ -122.676531373999921, 49.026481757000077 ], [ -122.67319498099999, 49.02637836700012 ], [ -122.673150740999915, 49.026998522000042 ], [ -122.676604579999932, 49.027105548000073 ], [ -122.676507675999929, 49.028465291000053 ], [ -122.6801861599999, 49.028579157000117 ], [ -122.680297294999917, 49.03109788600009 ], [ -122.679754001999953, 49.031098786000051 ], [ -122.679576159999939, 49.031099090000069 ], [ -122.678645812999918, 49.031100621000085 ], [ -122.678372207999956, 49.031101048000089 ], [ -122.6761771, 49.031104601000088 ], [ -122.669254716999959, 49.031157691000082 ], [ -122.667579099999898, 49.031166001000017 ], [ -122.66647158899994, 49.031032491000126 ], [ -122.666074253999938, 49.031060406000037 ], [ -122.665802334999924, 49.031079462000037 ], [ -122.665061729999934, 49.031131452000068 ], [ -122.665044137999942, 49.031132687000117 ] ], [ [ -122.676061447, 49.020930338000063 ], [ -122.67613010299999, 49.019966945000057 ], [ -122.672971242999921, 49.019869034000102 ], [ -122.672938286999937, 49.020331061000036 ], [ -122.672627186999989, 49.020321414000072 ], [ -122.672554110999954, 49.021345749000012 ], [ -122.672595404999967, 49.021347029000033 ], [ -122.672628656999962, 49.020880924000046 ], [ -122.674325434, 49.020933533000047 ], [ -122.674329487999927, 49.020876665000053 ], [ -122.676061447, 49.020930338000063 ] ], [ [ -122.677555964999911, 49.014020174000031 ], [ -122.67757843599999, 49.013704656000122 ], [ -122.676633721999906, 49.013675392000067 ], [ -122.676634039999982, 49.013670935000086 ], [ -122.676539621999964, 49.01366801000006 ], [ -122.67651682499999, 49.01398798500005 ], [ -122.677555964999911, 49.014020174000031 ] ], [ [ -122.666852269999978, 49.013197113000082 ], [ -122.666931275, 49.012091360000092 ], [ -122.666990040999934, 49.012093186000065 ], [ -122.667042911999914, 49.011353161000073 ], [ -122.66741394499995, 49.011364690000022 ], [ -122.667559204000014, 49.009331168000081 ], [ -122.667898125999955, 49.009341697000096 ], [ -122.667905350999916, 49.009240533000082 ], [ -122.667101164999963, 49.009238217000096 ], [ -122.66710296399998, 49.008968353000057 ], [ -122.666785565999973, 49.008967437000074 ], [ -122.666671455999932, 49.010564522000038 ], [ -122.666943024999924, 49.010572961000094 ], [ -122.666830242999964, 49.012151494000058 ], [ -122.666868023999911, 49.012152668000034 ], [ -122.666793527, 49.013195288000084 ], [ -122.666852269999978, 49.013197113000082 ] ], [ [ -122.67347021799999, 49.007863680000114 ], [ -122.673213701999956, 49.011461081000064 ], [ -122.672918439999961, 49.011451923000024 ], [ -122.672783165999959, 49.013348619000062 ], [ -122.675041899999968, 49.013418654000112 ], [ -122.675283853999971, 49.010023757000063 ], [ -122.678145106999935, 49.01011240600014 ], [ -122.678169050999927, 49.009776126000098 ], [ -122.67991706, 49.009830247000103 ], [ -122.679960032999986, 49.009226392000109 ], [ -122.67843096199999, 49.009179052000036 ], [ -122.678534763999949, 49.007721026000041 ], [ -122.67850025499996, 49.007719958000095 ], [ -122.678530450999972, 49.007295822000103 ], [ -122.677407142999954, 49.00726103000008 ], [ -122.677415816999925, 49.00713922200007 ], [ -122.67632798399994, 49.007105517000078 ], [ -122.676140168999893, 49.007104991000119 ], [ -122.67613841799999, 49.007374854000012 ], [ -122.67449756900001, 49.007370237000053 ], [ -122.674502847, 49.006560646000068 ], [ -122.67409264099993, 49.006559488000057 ], [ -122.674097924999899, 49.005749896000033 ], [ -122.672462492999912, 49.005745267000123 ], [ -122.672404763999964, 49.006554709000056 ], [ -122.672451820999967, 49.006554842000064 ], [ -122.672448280999987, 49.007094569000067 ], [ -122.673268699999952, 49.007096895000053 ], [ -122.673263724999913, 49.007857275000028 ], [ -122.67347021799999, 49.007863680000114 ] ], [ [ -122.671213025999975, 49.007793651000071 ], [ -122.671214542999962, 49.007563205000068 ], [ -122.668343586999953, 49.007474064000093 ], [ -122.668342600999935, 49.007622579000035 ], [ -122.667111958999939, 49.00761903500014 ], [ -122.667108361, 49.008158763000047 ], [ -122.667982430999984, 49.008161280000081 ], [ -122.668015775999891, 49.00769437400011 ], [ -122.671213025999975, 49.007793651000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.764367816091954", "sL_AssetLoss": "8700", "sL_BldgLoss": "6650", "sL_StrLoss": "2980", "sL_NStrLoss": "3670", "sL_ContLoss": "2050", "geom_point": "0101000020E61000002AEF99DB33AA5EC0093F0665F9834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.656923135999932, 49.030836073000046 ], [ -122.662380241999983, 49.031005937000032 ], [ -122.662368083999951, 49.031175813000083 ], [ -122.660778732999972, 49.031186410000025 ], [ -122.660012574999911, 49.031191513000088 ], [ -122.65924676499999, 49.031196604000051 ], [ -122.657799885, 49.03120618300008 ], [ -122.657682613999953, 49.031193139 ], [ -122.657451300999966, 49.031167389000039 ], [ -122.656911483999949, 49.030998586000173 ], [ -122.656923135999932, 49.030836073000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121149500", "BldgCostT": "80870000", "sL_LossRatio": "0.721370353362082", "sL_AssetLoss": "2164522", "sL_BldgLoss": "1561422", "sL_StrLoss": "670852", "sL_NStrLoss": "890570", "sL_ContLoss": "603100", "geom_point": "0101000020E6100000F1E3DCE47FA75EC025105DEDB4814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.603699587000023, 49.030900198000055 ], [ -122.603603945999936, 49.026838259000058 ], [ -122.603587014999974, 49.026118688000039 ], [ -122.603582120999974, 49.025911661000073 ], [ -122.603569198999978, 49.025362950000066 ], [ -122.603561773999957, 49.025048016000028 ], [ -122.603554366999944, 49.024733103000131 ], [ -122.603549532, 49.024526259000062 ], [ -122.603541460999935, 49.024184360000028 ], [ -122.603522819999938, 49.023392644000104 ], [ -122.603477720999962, 49.021476316000069 ], [ -122.60343196599996, 49.019533188 ], [ -122.603361612999976, 49.016543388000088 ], [ -122.603351037999971, 49.015997689000059 ], [ -122.60332102699999, 49.014450217000089 ], [ -122.603307957999974, 49.01377554100003 ], [ -122.603253871999954, 49.010985998000066 ], [ -122.603232612999975, 49.009888339000071 ], [ -122.603222858999985, 49.009384704000091 ], [ -122.603221393999931, 49.009309105000099 ], [ -122.603195414999945, 49.007711973000049 ], [ -122.603171219999965, 49.006227567000103 ], [ -122.603162684999944, 49.005704398 ], [ -122.603075267999984, 49.002249296000052 ], [ -122.605354939999941, 49.00225082 ], [ -122.609306432, 49.002253303000018 ], [ -122.614638817999932, 49.002256454000076 ], [ -122.615153115999973, 49.00225675100004 ], [ -122.619232870999966, 49.002258953000165 ], [ -122.622815148999948, 49.002260750000055 ], [ -122.625202386, 49.002261902000029 ], [ -122.626561433999882, 49.002261053000097 ], [ -122.627928918999928, 49.002260202000038 ], [ -122.628872454999922, 49.002259576000064 ], [ -122.631675491999943, 49.002257742000097 ], [ -122.636046193999931, 49.002254709000098 ], [ -122.636057345000026, 49.003214696000093 ], [ -122.636067216999962, 49.004069401000045 ], [ -122.636086490999915, 49.005732493000053 ], [ -122.636086687000017, 49.006363685000032 ], [ -122.636087689999911, 49.009450705000127 ], [ -122.628120474999946, 49.00948245900009 ], [ -122.626247112999948, 49.009489837000046 ], [ -122.625160411999943, 49.009494104000069 ], [ -122.625151620999986, 49.010331755000024 ], [ -122.625143227, 49.011132328 ], [ -122.625139659999931, 49.011474168000099 ], [ -122.625136530999953, 49.011771021000079 ], [ -122.625133246999937, 49.012085863000067 ], [ -122.625131738999983, 49.012229802000029 ], [ -122.625122179999934, 49.013138999000041 ], [ -122.625116411999926, 49.013857939000083 ], [ -122.625110961999937, 49.014532572000107 ], [ -122.625107423999921, 49.014973367000081 ], [ -122.625092903999985, 49.016774116000072 ], [ -122.62509051699999, 49.017393024000057 ], [ -122.625088655999932, 49.017878806000077 ], [ -122.625073911999976, 49.021701897000071 ], [ -122.625070035999912, 49.022709373000112 ], [ -122.625069400999962, 49.022871269000042 ], [ -122.625054204, 49.026820308000012 ], [ -122.625047071999958, 49.028664380000066 ], [ -122.625037007999978, 49.031281407000122 ], [ -122.621979687999982, 49.03122704200009 ], [ -122.621552138999945, 49.031219433000032 ], [ -122.621553291999973, 49.031203515000101 ], [ -122.620773399999976, 49.031178959000016 ], [ -122.621034064999947, 49.027581796000085 ], [ -122.621405907999957, 49.027593504000045 ], [ -122.62163181499993, 49.024475200000076 ], [ -122.621648950999926, 49.024475740000064 ], [ -122.62167858899997, 49.024066608000091 ], [ -122.621373257999949, 49.024056993000031 ], [ -122.62155609499996, 49.02153305500007 ], [ -122.621290710999958, 49.0215246980001 ], [ -122.621348113999957, 49.020732291000115 ], [ -122.621087851999945, 49.020724094000059 ], [ -122.621175066999953, 49.019520191000083 ], [ -122.62026534599994, 49.019491536000046 ], [ -122.620210352999919, 49.020250438000069 ], [ -122.619331730999974, 49.02022275500012 ], [ -122.619328917999979, 49.020261559000097 ], [ -122.613873226, 49.020089504000119 ], [ -122.613935488999971, 49.019231886000114 ], [ -122.612097517, 49.019173860000123 ], [ -122.61235878399998, 49.015576650000128 ], [ -122.613967232999968, 49.015627432000024 ], [ -122.61399513299996, 49.015243093000038 ], [ -122.61173284799996, 49.015171661000046 ], [ -122.611790761999899, 49.014374365000094 ], [ -122.611603791999926, 49.014368459000089 ], [ -122.611607104999962, 49.014322856000049 ], [ -122.611062276999988, 49.014305645000071 ], [ -122.611323597999956, 49.010708410000056 ], [ -122.611580519999947, 49.010716527000099 ], [ -122.611665199999919, 49.009550642000136 ], [ -122.6109344649999, 49.009527555000048 ], [ -122.61113494199995, 49.006767711000066 ], [ -122.609464681999981, 49.006714923000104 ], [ -122.609512309999928, 49.00605953400003 ], [ -122.608522279999988, 49.006028232000055 ], [ -122.60849672899991, 49.006379732000084 ], [ -122.60872970399997, 49.006387099000051 ], [ -122.60846820799999, 49.009984352000068 ], [ -122.608381572, 49.009981613000086 ], [ -122.608320448999933, 49.010822353000052 ], [ -122.606835625999963, 49.010775391000031 ], [ -122.60667680099999, 49.012958887000067 ], [ -122.606586890999949, 49.012956043000024 ], [ -122.606502058999965, 49.014122188000087 ], [ -122.606485779999943, 49.014121673000041 ], [ -122.606410076999936, 49.015162258000053 ], [ -122.606970005999941, 49.015179969000087 ], [ -122.606870827999956, 49.016543381000112 ], [ -122.607091785999955, 49.016550370000033 ], [ -122.606830106999951, 49.020147561000044 ], [ -122.606766473999969, 49.020145549000077 ], [ -122.60668847, 49.021217705 ], [ -122.607351563999913, 49.021238675000063 ], [ -122.60731781599999, 49.021702612000077 ], [ -122.607825474999942, 49.021718664000055 ], [ -122.607563823999925, 49.025315829000114 ], [ -122.606963605999965, 49.025296849000078 ], [ -122.606897228999969, 49.026209152000064 ], [ -122.607707755999954, 49.026234780000024 ], [ -122.607540505999921, 49.028533865000064 ], [ -122.612437131999968, 49.028688561000095 ], [ -122.612434900999958, 49.028719284000083 ], [ -122.613693468999941, 49.028759009000026 ], [ -122.613694896999917, 49.028739321000067 ], [ -122.619151599999924, 49.028911382000047 ], [ -122.618987567999937, 49.031173751000047 ], [ -122.61876464700002, 49.031169779000066 ], [ -122.61758886199999, 49.031148832000099 ], [ -122.61617943499999, 49.03112367100006 ], [ -122.614634494999933, 49.031096078000139 ], [ -122.603699587000023, 49.030900198000055 ] ], [ [ -122.617093771999947, 49.010079725000089 ], [ -122.617047128999943, 49.010722920000092 ], [ -122.617129013999943, 49.01072550300011 ], [ -122.617139568999931, 49.010579951000075 ], [ -122.617998991999968, 49.010607053000115 ], [ -122.618003534999929, 49.010544371000066 ], [ -122.61867297799995, 49.01056547700005 ], [ -122.618704503999979, 49.010130514000139 ], [ -122.617093771999947, 49.010079725000089 ] ], [ [ -122.620655205999952, 49.005318244000073 ], [ -122.620689890999941, 49.004839354000062 ], [ -122.619152055999905, 49.004790885000126 ], [ -122.619153703000023, 49.00476815800009 ], [ -122.617320289999938, 49.004710345000078 ], [ -122.617283920999967, 49.005211963000072 ], [ -122.620655205999952, 49.005318244000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136648749", "BldgCostT": "85719999", "sL_LossRatio": "0.707432052760772", "sL_AssetLoss": "1690650", "sL_BldgLoss": "1196020", "sL_StrLoss": "535480", "sL_NStrLoss": "660540", "sL_ContLoss": "494630", "geom_point": "0101000020E61000001E694F4D72A55EC094609246DC814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.581968908999968, 49.030661803000072 ], [ -122.581976085999969, 49.029982831000055 ], [ -122.58200770699996, 49.026998997000128 ], [ -122.582011225999963, 49.026573578000132 ], [ -122.582032943999977, 49.023967320000061 ], [ -122.582153558999906, 49.022321547000033 ], [ -122.582046701999928, 49.022318142000096 ], [ -122.582050515999953, 49.021860024000098 ], [ -122.582059660999903, 49.020762581000028 ], [ -122.582079597999936, 49.018369697000054 ], [ -122.581991508000016, 49.016082782000048 ], [ -122.575615972999969, 49.016064293000134 ], [ -122.573840215999937, 49.016084212000102 ], [ -122.573174848999955, 49.016083443000113 ], [ -122.572784210999899, 49.016083001000048 ], [ -122.572794976999944, 49.015936458000084 ], [ -122.572331854999959, 49.015921661000142 ], [ -122.572322703999959, 49.015921369000104 ], [ -122.572321939999966, 49.015931758000079 ], [ -122.57231086599991, 49.016082465000103 ], [ -122.572174107999942, 49.016082310000101 ], [ -122.571901848999957, 49.016079685000172 ], [ -122.570998174999929, 49.01607095300011 ], [ -122.570684948999954, 49.016067942000078 ], [ -122.568743360999974, 49.016049176000045 ], [ -122.567431020999933, 49.016036497000158 ], [ -122.56297289199992, 49.015993253000048 ], [ -122.560210711999957, 49.015966374000065 ], [ -122.559732590999957, 49.015961702000041 ], [ -122.559739951, 49.013375070000144 ], [ -122.55974230299995, 49.012549283000077 ], [ -122.559748114999962, 49.011369059000067 ], [ -122.559749826999976, 49.011018242000041 ], [ -122.559754900999977, 49.009983822000088 ], [ -122.559758394999903, 49.009273203000078 ], [ -122.559728029999988, 49.009003747000058 ], [ -122.559726875999914, 49.008993385000103 ], [ -122.55932624899999, 49.005436843000034 ], [ -122.559178213999971, 49.004122661000054 ], [ -122.558971309999919, 49.00228540100008 ], [ -122.564706618999978, 49.002280745000071 ], [ -122.564852463999955, 49.002280624000072 ], [ -122.564794101999908, 49.003073335000067 ], [ -122.566950935999927, 49.003142403000027 ], [ -122.566689639999964, 49.00669337300009 ], [ -122.569388868999965, 49.006779748000021 ], [ -122.569250355999912, 49.00866338100014 ], [ -122.569961865999957, 49.00868613800008 ], [ -122.569757294999974, 49.011468354000058 ], [ -122.571244691999965, 49.011515911000082 ], [ -122.571230919999934, 49.011703278000056 ], [ -122.572598276999926, 49.011746979000115 ], [ -122.572693670999939, 49.010448576000073 ], [ -122.573359711999942, 49.010469856000022 ], [ -122.573375054999985, 49.010260991000017 ], [ -122.575369681, 49.010324695000072 ], [ -122.575376173, 49.010236240000054 ], [ -122.577922396999952, 49.010317508000121 ], [ -122.577923815999924, 49.01029816300008 ], [ -122.57610834499999, 49.010240226000079 ], [ -122.576372333999984, 49.006643053000118 ], [ -122.579554204999951, 49.006744579000056 ], [ -122.57956328399996, 49.006620742000081 ], [ -122.577445219, 49.006553171000135 ], [ -122.577472082999975, 49.006186973000084 ], [ -122.576857420999971, 49.006167357000038 ], [ -122.576903073, 49.005545137000105 ], [ -122.57288002099996, 49.005416653000047 ], [ -122.572960034999952, 49.004327328000052 ], [ -122.571354634999949, 49.004276015000052 ], [ -122.57150168599999, 49.00227485200007 ], [ -122.57751751099994, 49.002269276000085 ], [ -122.57792766599999, 49.002268878000088 ], [ -122.57940436799997, 49.002267450000076 ], [ -122.580992102999957, 49.00226590300008 ], [ -122.587983630999929, 49.002234291000079 ], [ -122.587843824999979, 49.004146088000013 ], [ -122.59007385799994, 49.004217017000116 ], [ -122.590219503999919, 49.002224087000073 ], [ -122.59472229099994, 49.002203395000045 ], [ -122.599995362999948, 49.002232464000059 ], [ -122.603075267999984, 49.002249296000052 ], [ -122.603162684999944, 49.005704398 ], [ -122.603171219999965, 49.006227567000103 ], [ -122.603195414999945, 49.007711973000049 ], [ -122.603221393999931, 49.009309105000099 ], [ -122.603222858999985, 49.009384704000091 ], [ -122.603232612999975, 49.009888339000071 ], [ -122.603253871999954, 49.010985998000066 ], [ -122.603307957999974, 49.01377554100003 ], [ -122.60332102699999, 49.014450217000089 ], [ -122.603351037999971, 49.015997689000059 ], [ -122.603361612999976, 49.016543388000088 ], [ -122.60343196599996, 49.019533188 ], [ -122.603477720999962, 49.021476316000069 ], [ -122.603522819999938, 49.023392644000104 ], [ -122.603541460999935, 49.024184360000028 ], [ -122.603549532, 49.024526259000062 ], [ -122.603554366999944, 49.024733103000131 ], [ -122.603561773999957, 49.025048016000028 ], [ -122.603569198999978, 49.025362950000066 ], [ -122.603582120999974, 49.025911661000073 ], [ -122.603587014999974, 49.026118688000039 ], [ -122.603603945999936, 49.026838259000058 ], [ -122.603699587000023, 49.030900198000055 ], [ -122.603450160999941, 49.030892389000059 ], [ -122.60322697699992, 49.030885391000041 ], [ -122.602980730999946, 49.03088455000006 ], [ -122.60272097899994, 49.030865680000012 ], [ -122.602447421999955, 49.030855720000091 ], [ -122.602242236000023, 49.030855017000121 ], [ -122.602037162, 49.030836313000073 ], [ -122.601818372999958, 49.030826578000116 ], [ -122.60155833899999, 49.030834669000036 ], [ -122.601353090999936, 49.030842951000061 ], [ -122.601147970999975, 49.030833257000083 ], [ -122.60088799, 49.030841358000067 ], [ -122.600641790999973, 49.030831501000101 ], [ -122.600354583999973, 49.030821516000103 ], [ -122.600067244999977, 49.03082950500005 ], [ -122.599998847, 49.030829281000088 ], [ -122.599752533999904, 49.030837421000065 ], [ -122.599437692, 49.030863313000097 ], [ -122.599150450999957, 49.03085333600005 ], [ -122.598876946999923, 49.030843377000068 ], [ -122.59830236699996, 49.030841383000052 ], [ -122.597974198999907, 49.030822250000043 ], [ -122.59768692599999, 49.030821245000027 ], [ -122.59741338799995, 49.030811293000106 ], [ -122.597112445999954, 49.030810243000168 ], [ -122.59683880899999, 49.030809290000043 ], [ -122.596565207999916, 49.030808326000098 ], [ -122.596250594999972, 49.030807229000089 ], [ -122.595976991999962, 49.030806262000105 ], [ -122.595689948999976, 49.030814167000067 ], [ -122.595539598999949, 49.030818299000046 ], [ -122.595402082999954, 49.030816726000069 ], [ -122.59283029099997, 49.030787200000098 ], [ -122.581968908999968, 49.030661803000072 ] ], [ [ -122.600191027999969, 49.02817979400001 ], [ -122.600204975999972, 49.027988482000133 ], [ -122.600070335999959, 49.0279842160001 ], [ -122.600159247999954, 49.026764689000153 ], [ -122.599733922999945, 49.026751211000011 ], [ -122.599631048999953, 49.028162050000091 ], [ -122.600191027999969, 49.02817979400001 ] ], [ [ -122.600112372999931, 49.02254782300011 ], [ -122.600159060999886, 49.021907374000115 ], [ -122.600082007999958, 49.021904932 ], [ -122.600103586999978, 49.021608921000052 ], [ -122.598342166999927, 49.021553087000029 ], [ -122.598604506999948, 49.01795592500013 ], [ -122.599392275999932, 49.017980899000108 ], [ -122.599409085000033, 49.017750343000046 ], [ -122.599498660999984, 49.017753183000131 ], [ -122.599500130999957, 49.017733019000026 ], [ -122.597526434999935, 49.017670438000081 ], [ -122.597513104000015, 49.017853194000089 ], [ -122.596738608999942, 49.017828627000064 ], [ -122.596638543, 49.019200012000056 ], [ -122.592827671999956, 49.019079049000098 ], [ -122.592825184999953, 49.019113103000102 ], [ -122.587884608999971, 49.018956080000081 ], [ -122.587832912999914, 49.019662723000096 ], [ -122.585461575999929, 49.019587275000042 ], [ -122.585282227999954, 49.022036968000087 ], [ -122.587637439999966, 49.022111903000059 ], [ -122.587618161999927, 49.022375394000079 ], [ -122.588089740000029, 49.022390392000027 ], [ -122.588051982999929, 49.022906491000057 ], [ -122.58823116699989, 49.022912189000074 ], [ -122.588161893999967, 49.023859094000073 ], [ -122.588355742999937, 49.023865258000058 ], [ -122.588363296999944, 49.023761994000083 ], [ -122.592253654999951, 49.023885627000027 ], [ -122.59227294799993, 49.023621587000036 ], [ -122.592358369999928, 49.023624301000019 ], [ -122.592407178999949, 49.022956288000074 ], [ -122.597275048999933, 49.023110784000039 ], [ -122.597278176999964, 49.023067906000144 ], [ -122.59975383799997, 49.023146394000072 ], [ -122.599798203999981, 49.022537867 ], [ -122.600112372999931, 49.02254782300011 ] ], [ [ -122.564211622999949, 49.015266606000125 ], [ -122.564234966999948, 49.014949690000108 ], [ -122.563278807999964, 49.014919061000043 ], [ -122.563263162999959, 49.015131421000035 ], [ -122.563890483999913, 49.015151517000042 ], [ -122.563882781999936, 49.015256073000053 ], [ -122.564211622999949, 49.015266606000125 ] ], [ [ -122.586837764999956, 49.014797014000074 ], [ -122.586843226999946, 49.014722373000033 ], [ -122.585373297999936, 49.01467559200006 ], [ -122.58533535399999, 49.015193925000105 ], [ -122.585527738999971, 49.015200049000079 ], [ -122.585547702999989, 49.014927300000096 ], [ -122.586398066999976, 49.014954364000097 ], [ -122.58641057599999, 49.014783420000171 ], [ -122.586837764999956, 49.014797014000074 ] ], [ [ -122.59991788399999, 49.01266877800002 ], [ -122.599995338999975, 49.01160607200007 ], [ -122.599783328999976, 49.011599352000111 ], [ -122.599855850999973, 49.010604338000114 ], [ -122.599742788999905, 49.01060075400008 ], [ -122.599819908999962, 49.009542639000088 ], [ -122.598624214, 49.009504727 ], [ -122.598685683000014, 49.008661633 ], [ -122.593330982999959, 49.008491688000099 ], [ -122.59337767699995, 49.007852221000107 ], [ -122.592437890999975, 49.007822367000088 ], [ -122.59268438399998, 49.004447327000094 ], [ -122.592265842999964, 49.004434028000105 ], [ -122.592013826999974, 49.007884256000104 ], [ -122.591615456999961, 49.007871598000108 ], [ -122.59158693099999, 49.008262065000096 ], [ -122.586132743999912, 49.008088598 ], [ -122.586338169999948, 49.005281099000051 ], [ -122.585253021, 49.005246552000045 ], [ -122.585104198999943, 49.007279830000115 ], [ -122.58511992299999, 49.007280331000068 ], [ -122.585051113999967, 49.008220379000079 ], [ -122.585382372999902, 49.008230926000167 ], [ -122.585175022000016, 49.011063728000089 ], [ -122.587134285999952, 49.011126087000065 ], [ -122.586931276999934, 49.013900816000103 ], [ -122.59165266399998, 49.014050938000018 ], [ -122.591659509999914, 49.013957244000039 ], [ -122.594233866999943, 49.014039011000065 ], [ -122.594242306999945, 49.013923407000057 ], [ -122.59651481899999, 49.013995536000103 ], [ -122.596529721999929, 49.013791261000065 ], [ -122.597132565999971, 49.013810387000049 ], [ -122.597153611999886, 49.013521876 ], [ -122.59967464099999, 49.013601821000123 ], [ -122.599743056999927, 49.012663236000058 ], [ -122.59991788399999, 49.01266877800002 ] ], [ [ -122.564315452999963, 49.0111221740001 ], [ -122.564381521999962, 49.010225088000013 ], [ -122.563960499999965, 49.010211601000051 ], [ -122.56389460299998, 49.011106248000097 ], [ -122.564046129999937, 49.011111102000086 ], [ -122.564045949999979, 49.011113542000054 ], [ -122.564315452999963, 49.0111221740001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135759083", "BldgCostT": "84158333", "sL_LossRatio": "0.702506661906644", "sL_AssetLoss": "1568620", "sL_BldgLoss": "1101966", "sL_StrLoss": "494126", "sL_NStrLoss": "607840", "sL_ContLoss": "466654", "geom_point": "0101000020E6100000E246E3B3E9A45EC05CE27D2CAF834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.592906023999959, 49.044361882000103 ], [ -122.592904439000023, 49.044220657000032 ], [ -122.59282297699994, 49.042608135000094 ], [ -122.59277725799997, 49.04213065000009 ], [ -122.596379152999958, 49.042244925000077 ], [ -122.596303408999916, 49.043282317000042 ], [ -122.59823905099995, 49.043343678000028 ], [ -122.598153462999989, 49.04451651500009 ], [ -122.599674927999928, 49.044564721000029 ], [ -122.599713009999917, 49.044042628000049 ], [ -122.60016956699999, 49.044057089000127 ], [ -122.600254951999958, 49.042886338000081 ], [ -122.60040890099999, 49.042891213000118 ], [ -122.600458355999976, 49.042213072000031 ], [ -122.599972260999934, 49.042197676000114 ], [ -122.600234591999964, 49.038600625000058 ], [ -122.601560023999951, 49.038642601000099 ], [ -122.601597928999979, 49.038122610000038 ], [ -122.601484766999974, 49.03811902700005 ], [ -122.601746958999954, 49.034521949000052 ], [ -122.601847108999976, 49.034525121000094 ], [ -122.601860597999959, 49.034340035000071 ], [ -122.601203589999926, 49.034319229000069 ], [ -122.601261194999935, 49.033528968000148 ], [ -122.60017000199997, 49.033494404000059 ], [ -122.600294386999977, 49.031788487 ], [ -122.598920454999956, 49.031744952000054 ], [ -122.598762145999927, 49.033915216000032 ], [ -122.593304934999964, 49.033742121000081 ], [ -122.593338116999988, 49.033287947000083 ], [ -122.592360128999985, 49.033256897000086 ], [ -122.592379498999918, 49.032991867000064 ], [ -122.589378041999979, 49.032896519000069 ], [ -122.589463451999947, 49.031728835000138 ], [ -122.588962050999939, 49.03171289800008 ], [ -122.588959530999929, 49.031747360000089 ], [ -122.588190169999905, 49.031722902000091 ], [ -122.58810775699996, 49.032849177000045 ], [ -122.587345240999966, 49.032824931000093 ], [ -122.58734162799999, 49.032874295000056 ], [ -122.585182471999957, 49.032805612000082 ], [ -122.585134458999974, 49.033461203000108 ], [ -122.585156325999904, 49.033461899000102 ], [ -122.585100925999939, 49.034218340000074 ], [ -122.585347865999935, 49.034226197000066 ], [ -122.585221417999932, 49.035952716000089 ], [ -122.585977950999947, 49.035976785000038 ], [ -122.58582656899992, 49.038044023000054 ], [ -122.581890226000013, 49.03792790500006 ], [ -122.572426733999947, 49.037941417000042 ], [ -122.566105569999976, 49.037949963000052 ], [ -122.56517370899999, 49.037951188000164 ], [ -122.565268163, 49.035637940000065 ], [ -122.566116402999938, 49.035665084000094 ], [ -122.566128142999915, 49.035505691 ], [ -122.567200166999967, 49.035539986000089 ], [ -122.567209404, 49.035414516000067 ], [ -122.571671971999947, 49.035557165000071 ], [ -122.571732658999977, 49.034731823000072 ], [ -122.577189906999934, 49.034906015000047 ], [ -122.577155399999967, 49.035376053000057 ], [ -122.578134081999949, 49.035407263000081 ], [ -122.578191763999925, 49.034621309000038 ], [ -122.576707574999929, 49.034573976000082 ], [ -122.576749324, 49.03400534700004 ], [ -122.575267444999923, 49.033958067000043 ], [ -122.575218634999914, 49.034622584000111 ], [ -122.569761426999932, 49.034448292000057 ], [ -122.569809792999962, 49.033790892000049 ], [ -122.569687766, 49.033786992000053 ], [ -122.569747148999923, 49.032979850000153 ], [ -122.569034895999948, 49.032957080000109 ], [ -122.569018503999928, 49.033179838000123 ], [ -122.565373281999939, 49.033063233000121 ], [ -122.565473170999923, 49.030616386000148 ], [ -122.565224982999922, 49.030622531000049 ], [ -122.565211312999963, 49.030622483000087 ], [ -122.564937695999959, 49.030621464000134 ], [ -122.564664112999978, 49.030620431000088 ], [ -122.564390530999958, 49.030619397000059 ], [ -122.564075884999909, 49.030618209000046 ], [ -122.563473936999955, 49.030615924000081 ], [ -122.563200353999932, 49.030614888000045 ], [ -122.562913067999958, 49.03061381300008 ], [ -122.56285837099999, 49.030613599000098 ], [ -122.562612127999898, 49.030612656000045 ], [ -122.562324840999963, 49.030611579000073 ], [ -122.56203748199998, 49.030619492000092 ], [ -122.561996454999942, 49.03061932400005 ], [ -122.561695480999958, 49.030618176000104 ], [ -122.561367167999919, 49.030616932000036 ], [ -122.561052524999965, 49.030615733000019 ], [ -122.560778906999957, 49.030614701000083 ], [ -122.560505325999927, 49.03061365600005 ], [ -122.560218036999984, 49.030612575000042 ], [ -122.55987598199999, 49.030620264000049 ], [ -122.559632691999951, 49.030604199000024 ], [ -122.559643641999941, 49.028712229000035 ], [ -122.559643810999944, 49.02868525400001 ], [ -122.559649795999988, 49.027648307000092 ], [ -122.559653157999946, 49.027075120000049 ], [ -122.559655447999972, 49.026679325000025 ], [ -122.559657567999949, 49.026310509000091 ], [ -122.559659199999956, 49.026031663000076 ], [ -122.559662669999966, 49.025437963000059 ], [ -122.559664546999912, 49.025114132000049 ], [ -122.559672537999973, 49.023737809000018 ], [ -122.559675179999957, 49.02328188500011 ], [ -122.55967608499995, 49.023171120000072 ], [ -122.559682214999924, 49.022388524000121 ], [ -122.559686568999894, 49.021832265000072 ], [ -122.559686669999962, 49.021821817000067 ], [ -122.559687075999932, 49.021767842000052 ], [ -122.559692301999959, 49.021102163000101 ], [ -122.559692927999976, 49.021021225000041 ], [ -122.559701375999936, 49.019944767000041 ], [ -122.559702682999927, 49.01977985600012 ], [ -122.559713191999933, 49.018439559000036 ], [ -122.559718512999922, 49.017755901000093 ], [ -122.559732590999957, 49.015961702000041 ], [ -122.560210711999957, 49.015966374000065 ], [ -122.56297289199992, 49.015993253000048 ], [ -122.567431020999933, 49.016036497000158 ], [ -122.568743360999974, 49.016049176000045 ], [ -122.570684948999954, 49.016067942000078 ], [ -122.570998174999929, 49.01607095300011 ], [ -122.571901848999957, 49.016079685000172 ], [ -122.572174107999942, 49.016082310000101 ], [ -122.57231086599991, 49.016082465000103 ], [ -122.572283398999957, 49.016456226000074 ], [ -122.57275567899994, 49.016471316000057 ], [ -122.572784210999899, 49.016083001000048 ], [ -122.573174848999955, 49.016083443000113 ], [ -122.573840215999937, 49.016084212000102 ], [ -122.575615972999969, 49.016064293000134 ], [ -122.581991508000016, 49.016082782000048 ], [ -122.582079597999936, 49.018369697000054 ], [ -122.582059660999903, 49.020762581000028 ], [ -122.582050515999953, 49.021860024000098 ], [ -122.582046701999928, 49.022318142000096 ], [ -122.579798343999983, 49.022246491000089 ], [ -122.579847221999984, 49.021579977000094 ], [ -122.579486773999932, 49.021568485000024 ], [ -122.579548545999927, 49.0207262180001 ], [ -122.577106243999978, 49.020648324000064 ], [ -122.577344470999904, 49.017402057000119 ], [ -122.57562889799999, 49.017347307000072 ], [ -122.575422238999934, 49.020162021000026 ], [ -122.573549930999931, 49.020102238000042 ], [ -122.573398238999971, 49.022166930000019 ], [ -122.576520357000021, 49.022266600000101 ], [ -122.576472180999971, 49.022922885000135 ], [ -122.576685691999984, 49.022929697000102 ], [ -122.576545085999967, 49.024845148000061 ], [ -122.576634610999932, 49.024848003000024 ], [ -122.576404836, 49.02797792400002 ], [ -122.577696545999927, 49.028019130000075 ], [ -122.577836992999906, 49.026105346000058 ], [ -122.579947300999891, 49.026172632000062 ], [ -122.580005745999969, 49.025375697000122 ], [ -122.581102398, 49.025410646000104 ], [ -122.581159039999989, 49.024638023000072 ], [ -122.581262878999965, 49.024641331000055 ], [ -122.581311570999972, 49.023977124000119 ], [ -122.582030546999988, 49.024000030000089 ], [ -122.582032943999977, 49.023967320000061 ], [ -122.582011225999963, 49.026573578000132 ], [ -122.58200770699996, 49.026998997000128 ], [ -122.581976085999969, 49.029982831000055 ], [ -122.581968908999968, 49.030661803000072 ], [ -122.59283029099997, 49.030787200000098 ], [ -122.595402082999954, 49.030816726000069 ], [ -122.595539598999949, 49.030818299000046 ], [ -122.595689948999976, 49.030814167000067 ], [ -122.595976991999962, 49.030806262000105 ], [ -122.596250594999972, 49.030807229000089 ], [ -122.596565207999916, 49.030808326000098 ], [ -122.59683880899999, 49.030809290000043 ], [ -122.597112445999954, 49.030810243000168 ], [ -122.59741338799995, 49.030811293000106 ], [ -122.59768692599999, 49.030821245000027 ], [ -122.597974198999907, 49.030822250000043 ], [ -122.59830236699996, 49.030841383000052 ], [ -122.598876946999923, 49.030843377000068 ], [ -122.599150450999957, 49.03085333600005 ], [ -122.599437692, 49.030863313000097 ], [ -122.599752533999904, 49.030837421000065 ], [ -122.599998847, 49.030829281000088 ], [ -122.600067244999977, 49.03082950500005 ], [ -122.600354583999973, 49.030821516000103 ], [ -122.600641790999973, 49.030831501000101 ], [ -122.60088799, 49.030841358000067 ], [ -122.601147970999975, 49.030833257000083 ], [ -122.601353090999936, 49.030842951000061 ], [ -122.60155833899999, 49.030834669000036 ], [ -122.601818372999958, 49.030826578000116 ], [ -122.602037162, 49.030836313000073 ], [ -122.602242236000023, 49.030855017000121 ], [ -122.602447421999955, 49.030855720000091 ], [ -122.60272097899994, 49.030865680000012 ], [ -122.602980730999946, 49.03088455000006 ], [ -122.60322697699992, 49.030885391000041 ], [ -122.603450160999941, 49.030892389000059 ], [ -122.603699587000023, 49.030900198000055 ], [ -122.603831428999968, 49.037148610000045 ], [ -122.603907555999982, 49.040756350000038 ], [ -122.603910801999945, 49.040909230000047 ], [ -122.60391250399999, 49.040990329000088 ], [ -122.603914199999906, 49.041071256000052 ], [ -122.60394749799994, 49.042647998000099 ], [ -122.603958352999925, 49.043167483000126 ], [ -122.603964511999948, 49.043464422000078 ], [ -122.604003783999943, 49.045347500000034 ], [ -122.600867917999906, 49.045354818000128 ], [ -122.600375549999953, 49.045355984000075 ], [ -122.600006088, 49.045356833000078 ], [ -122.599526779999906, 49.045357930000065 ], [ -122.59700879399999, 49.045363707000057 ], [ -122.595900396, 49.045366247000054 ], [ -122.592917334, 49.045372961000091 ], [ -122.592907931999946, 49.044531780000113 ], [ -122.592906023999959, 49.044361882000103 ] ], [ [ -122.565268195999977, 49.024607522000089 ], [ -122.56527318099991, 49.024539859000107 ], [ -122.564411641, 49.024512276000024 ], [ -122.564443334999964, 49.024082059000122 ], [ -122.563540274999951, 49.024053139000017 ], [ -122.563503587999946, 49.024551017000107 ], [ -122.565268195999977, 49.024607522000089 ] ], [ [ -122.57050391199999, 49.022879 ], [ -122.570539469999986, 49.022197436000098 ], [ -122.571055651999956, 49.022213935000082 ], [ -122.571061718999943, 49.022131405000032 ], [ -122.570543778999976, 49.022114850000087 ], [ -122.570552205999945, 49.021953296000042 ], [ -122.570554611999924, 49.021701199000056 ], [ -122.570459786999976, 49.021637110000036 ], [ -122.570172600999953, 49.021689797000072 ], [ -122.570136480999935, 49.022635494000056 ], [ -122.569914912999948, 49.022894697 ], [ -122.569736198, 49.022965892000023 ], [ -122.56974878699999, 49.023136791000127 ], [ -122.569981899999945, 49.023146810000078 ], [ -122.57050391199999, 49.022879 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118818334", "BldgCostT": "78258334", "sL_LossRatio": "0.733762032139069", "sL_AssetLoss": "1499110", "sL_BldgLoss": "1099990", "sL_StrLoss": "513990", "sL_NStrLoss": "586000", "sL_ContLoss": "399120", "geom_point": "0101000020E6100000A1AE83BDA8A35EC051944BE397844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.536911092999958, 49.045231999000109 ], [ -122.536910711999923, 49.042467355000063 ], [ -122.536910680999966, 49.042278473000032 ], [ -122.536910703999965, 49.04219749100006 ], [ -122.536910604999946, 49.041556198000059 ], [ -122.536910743999968, 49.041271058000042 ], [ -122.536911022999931, 49.040767224000092 ], [ -122.536911055999965, 49.040713240000109 ], [ -122.536911163999946, 49.040452386000048 ], [ -122.536912287999925, 49.038257419000075 ], [ -122.536912592999926, 49.037699204000035 ], [ -122.536917713999955, 49.037259196 ], [ -122.536919128999955, 49.037136466000078 ], [ -122.536922524999937, 49.036845396000089 ], [ -122.536924714999955, 49.036656480000055 ], [ -122.53693004299997, 49.036197725000086 ], [ -122.53693318099999, 49.03592788600011 ], [ -122.536952398999972, 49.034272768000108 ], [ -122.536952817999932, 49.034236778000079 ], [ -122.536953156999985, 49.03420977800004 ], [ -122.53695524799997, 49.034029886000091 ], [ -122.536965388999974, 49.033157342000095 ], [ -122.536970584999892, 49.032707628000068 ], [ -122.536974157999936, 49.032401769000053 ], [ -122.536980511999971, 49.031853054000045 ], [ -122.53698355599991, 49.031592187000058 ], [ -122.536995002999959, 49.030606210000016 ], [ -122.537009322999978, 49.029361431000041 ], [ -122.537026621999971, 49.027859207000091 ], [ -122.537034916999957, 49.027139569000099 ], [ -122.53704567199999, 49.026204105000026 ], [ -122.537066471999978, 49.024396072000037 ], [ -122.537079009, 49.023307607000078 ], [ -122.538875732999941, 49.02331202800012 ], [ -122.539053588999977, 49.02331248600013 ], [ -122.541919411999956, 49.023319504000071 ], [ -122.548403684999954, 49.023342590000041 ], [ -122.55400610399991, 49.02325501300006 ], [ -122.559675179999957, 49.02328188500011 ], [ -122.559672537999973, 49.023737809000018 ], [ -122.559664546999912, 49.025114132000049 ], [ -122.559662669999966, 49.025437963000059 ], [ -122.559659199999956, 49.026031663000076 ], [ -122.559657567999949, 49.026310509000091 ], [ -122.559655447999972, 49.026679325000025 ], [ -122.559653157999946, 49.027075120000049 ], [ -122.559649795999988, 49.027648307000092 ], [ -122.559643810999944, 49.02868525400001 ], [ -122.559643641999941, 49.028712229000035 ], [ -122.559632691999951, 49.030604199000024 ], [ -122.55987598199999, 49.030620264000049 ], [ -122.560218036999984, 49.030612575000042 ], [ -122.560505325999927, 49.03061365600005 ], [ -122.560778906999957, 49.030614701000083 ], [ -122.561052524999965, 49.030615733000019 ], [ -122.561367167999919, 49.030616932000036 ], [ -122.561695480999958, 49.030618176000104 ], [ -122.561996454999942, 49.03061932400005 ], [ -122.56203748199998, 49.030619492000092 ], [ -122.562324840999963, 49.030611579000073 ], [ -122.562612127999898, 49.030612656000045 ], [ -122.56285837099999, 49.030613599000098 ], [ -122.562913067999958, 49.03061381300008 ], [ -122.563200353999932, 49.030614888000045 ], [ -122.563473936999955, 49.030615924000081 ], [ -122.564075884999909, 49.030618209000046 ], [ -122.564390530999958, 49.030619397000059 ], [ -122.564664112999978, 49.030620431000088 ], [ -122.564937695999959, 49.030621464000134 ], [ -122.565211312999963, 49.030622483000087 ], [ -122.565224982999922, 49.030622531000049 ], [ -122.565473170999923, 49.030616386000148 ], [ -122.565373281999939, 49.033063233000121 ], [ -122.563736022999962, 49.03301081900004 ], [ -122.56362975699993, 49.03445266400005 ], [ -122.563109254999944, 49.034435996000063 ], [ -122.563023473999976, 49.035599645000055 ], [ -122.563583549999947, 49.035617580000086 ], [ -122.563579353999927, 49.035674506000127 ], [ -122.564555836999915, 49.035705769000039 ], [ -122.564562499999965, 49.03561535300004 ], [ -122.565268163, 49.035637940000065 ], [ -122.56517370899999, 49.037951188000164 ], [ -122.566105569999976, 49.037949963000052 ], [ -122.572426733999947, 49.037941417000042 ], [ -122.581890226000013, 49.03792790500006 ], [ -122.58582656899992, 49.038044023000054 ], [ -122.585714535999955, 49.039573816 ], [ -122.585691383999929, 49.039573079000021 ], [ -122.585639570999959, 49.040280515000113 ], [ -122.585206688999932, 49.040266743000089 ], [ -122.585193423999925, 49.040447827000015 ], [ -122.586195118999939, 49.04047969100003 ], [ -122.586003265999921, 49.043099470000151 ], [ -122.586005426999961, 49.043099538000071 ], [ -122.586012621999927, 49.043001294000085 ], [ -122.586903274999969, 49.043029618 ], [ -122.586907887000024, 49.04296661500014 ], [ -122.589422677999892, 49.04304654900006 ], [ -122.589496333999989, 49.042039775000021 ], [ -122.590920003999926, 49.042085001000068 ], [ -122.590920975999907, 49.042071710000087 ], [ -122.59277725799997, 49.04213065000009 ], [ -122.59282297699994, 49.042608135000094 ], [ -122.592904439000023, 49.044220657000032 ], [ -122.592906023999959, 49.044361882000103 ], [ -122.592907931999946, 49.044531780000113 ], [ -122.592917334, 49.045372961000091 ], [ -122.585390871999934, 49.045304924000071 ], [ -122.583174200999977, 49.045284757000033 ], [ -122.581816689999982, 49.04527240699999 ], [ -122.577331244999925, 49.045266299000055 ], [ -122.57641444599993, 49.04526502700007 ], [ -122.576044981999985, 49.045264509000056 ], [ -122.57373235499999, 49.045261266000097 ], [ -122.571885009000013, 49.045258622000112 ], [ -122.570677009999926, 49.045256893000094 ], [ -122.568094468999988, 49.045250246000087 ], [ -122.567204987999972, 49.04524794600011 ], [ -122.566028142999954, 49.045244885000116 ], [ -122.565001802999973, 49.045242219000023 ], [ -122.564563906999965, 49.045241062000123 ], [ -122.563072304999977, 49.04523715600007 ], [ -122.560390235999975, 49.045230060000037 ], [ -122.559542283999946, 49.045227807000117 ], [ -122.555326855999979, 49.045229467000127 ], [ -122.555448025999922, 49.043589756000095 ], [ -122.555933265999926, 49.04360532700013 ], [ -122.555943094, 49.043472310000062 ], [ -122.555899064999934, 49.04347089700007 ], [ -122.556052763999972, 49.041390557000078 ], [ -122.554644749999966, 49.041345371 ], [ -122.554910571000036, 49.037748426000036 ], [ -122.55606145199998, 49.037785363000054 ], [ -122.55612858799995, 49.036876523000046 ], [ -122.555788567999969, 49.036865613000025 ], [ -122.555824293999976, 49.036381994000052 ], [ -122.55565147799993, 49.036376447000066 ], [ -122.55555581099999, 49.037671349000064 ], [ -122.550098320999936, 49.03749605900002 ], [ -122.550313896999981, 49.034582626000066 ], [ -122.548027727999951, 49.034509113000055 ], [ -122.54807731699999, 49.033839329000067 ], [ -122.547293506999921, 49.033814113000048 ], [ -122.547216317, 49.034856460000071 ], [ -122.544678807999929, 49.034774788000149 ], [ -122.544666717999974, 49.034937921000065 ], [ -122.543142327999988, 49.034888829000082 ], [ -122.542952388999936, 49.037450454000059 ], [ -122.540180065999976, 49.037361118000071 ], [ -122.54012511199997, 49.038101621000067 ], [ -122.540069206999988, 49.038099819000067 ], [ -122.540036323999956, 49.038542887000155 ], [ -122.542646578999921, 49.038627005000123 ], [ -122.542649119999936, 49.038592732000069 ], [ -122.54810671199999, 49.038768401000063 ], [ -122.548014109999883, 49.04001899200005 ], [ -122.548592470999935, 49.040037591000065 ], [ -122.548581214999942, 49.040189614000077 ], [ -122.549966631999936, 49.040234155000114 ], [ -122.549700415999979, 49.043831073000064 ], [ -122.544242227999931, 49.043655488000077 ], [ -122.544242447999977, 49.043652523000034 ], [ -122.541155819999972, 49.043553105000044 ], [ -122.541178466999909, 49.043247903000051 ], [ -122.540172716999933, 49.043215490000151 ], [ -122.540061075999944, 49.044719604000079 ], [ -122.539044562999905, 49.044686834000053 ], [ -122.539036870999951, 49.04479043000007 ], [ -122.54005127799995, 49.044823132000012 ], [ -122.540020922999958, 49.045232077000087 ], [ -122.536911092999958, 49.045231999000109 ] ], [ [ -122.575501320999948, 49.03899099100007 ], [ -122.57547041199993, 49.039411764000107 ], [ -122.57001264299997, 49.03923748600009 ], [ -122.570012799, 49.03923536700011 ], [ -122.569766907999934, 49.039227509000092 ], [ -122.569755178999927, 49.039386902000089 ], [ -122.56825427599999, 49.039338922000042 ], [ -122.568247620999969, 49.039429338000048 ], [ -122.563252100999989, 49.039269494000031 ], [ -122.563193451999936, 49.040065058000032 ], [ -122.562761700999886, 49.040051233000078 ], [ -122.562729140999977, 49.040492808000053 ], [ -122.565447986999985, 49.040579843000039 ], [ -122.565280801999933, 49.042848959000011 ], [ -122.566722586999958, 49.042895085000083 ], [ -122.566923349999954, 49.040169023000011 ], [ -122.572381217, 49.040343459000077 ], [ -122.572297149999898, 49.041486799000083 ], [ -122.572774773999953, 49.041502051000137 ], [ -122.572732050999932, 49.042083163000015 ], [ -122.576281810999987, 49.042196449000109 ], [ -122.576441074999977, 49.040027854000144 ], [ -122.577656586999936, 49.040066617 ], [ -122.57771586899996, 49.039259067000046 ], [ -122.576574284999936, 49.039222660000078 ], [ -122.576588749999956, 49.039025681000076 ], [ -122.575501320999948, 49.03899099100007 ] ], [ [ -122.547234831999944, 49.027884020000045 ], [ -122.547236040999948, 49.027867683000061 ], [ -122.546782789999952, 49.027853097000055 ], [ -122.546908422999977, 49.026156515000018 ], [ -122.546006366999947, 49.026127480000092 ], [ -122.546104070999959, 49.024808314000026 ], [ -122.544546120999925, 49.024758151000135 ], [ -122.54448289199999, 49.025611453000096 ], [ -122.540231951999942, 49.02547446300008 ], [ -122.540184923999945, 49.02610834000005 ], [ -122.541741970999965, 49.026158537000114 ], [ -122.541619203999986, 49.027813927000082 ], [ -122.544615673, 49.027910464000087 ], [ -122.544604773999964, 49.028057537000052 ], [ -122.544980140999954, 49.028069624000082 ], [ -122.544999225999945, 49.027812058000102 ], [ -122.547234831999944, 49.027884020000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101029500", "BldgCostT": "68940000", "sL_LossRatio": "0.758008106781621", "sL_AssetLoss": "1165444", "sL_BldgLoss": "883416", "sL_StrLoss": "422701", "sL_NStrLoss": "460715", "sL_ContLoss": "282028", "geom_point": "0101000020E61000002F013AC4A6A15EC0153DE8C00F854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.514680595999963, 49.058604402000107 ], [ -122.514680367999944, 49.057147065000152 ], [ -122.514680168, 49.055932646000038 ], [ -122.514680002999938, 49.054907089000089 ], [ -122.514679657, 49.052676084000105 ], [ -122.514679606999948, 49.05234326000005 ], [ -122.514679459999954, 49.051425756000079 ], [ -122.514679355999959, 49.050715139000076 ], [ -122.514679188999949, 49.049680729000059 ], [ -122.514679039999976, 49.048736061000085 ], [ -122.514679038999972, 49.048691087000066 ], [ -122.514678904, 49.047917448000106 ], [ -122.51467884, 49.047404735000036 ], [ -122.514678763999939, 49.046909976000109 ], [ -122.514678512999922, 49.045240797000076 ], [ -122.514686196999932, 49.044184339000061 ], [ -122.514695938999921, 49.042844019000043 ], [ -122.514699703999923, 49.042331303000026 ], [ -122.5147055, 49.041530706000117 ], [ -122.514708635999952, 49.041098935999983 ], [ -122.514715189999976, 49.040199377000143 ], [ -122.514716241999963, 49.040055480000099 ], [ -122.514718804999987, 49.039704667000088 ], [ -122.514725292999969, 49.038814123000073 ], [ -122.514731605999955, 49.03794570900002 ], [ -122.514731577999981, 49.03789665700009 ], [ -122.514731392999963, 49.037302525000037 ], [ -122.51473135099998, 49.037212591000092 ], [ -122.51473072499999, 49.035116950000088 ], [ -122.514730626999963, 49.034838097000033 ], [ -122.514730524999905, 49.034505286000041 ], [ -122.514730401999913, 49.034091495000055 ], [ -122.514729879999919, 49.032427274000057 ], [ -122.51472929399992, 49.030585717000065 ], [ -122.514748725999979, 49.027605710000088 ], [ -122.514750110999927, 49.02738982700005 ], [ -122.51475247399999, 49.027030022000126 ], [ -122.514759973999958, 49.025878649000106 ], [ -122.514761977999967, 49.025572784000047 ], [ -122.514763590999976, 49.025320928000028 ], [ -122.514765841999974, 49.024979112000096 ], [ -122.514770714999955, 49.024232466000051 ], [ -122.51477273399999, 49.023917639000103 ], [ -122.514774904999982, 49.023583101000028 ], [ -122.514775036999964, 49.02356513600013 ], [ -122.514775910999958, 49.023431894000105 ], [ -122.514777093999939, 49.023249804000031 ], [ -122.514912806999945, 49.023191097000094 ], [ -122.516116050999969, 49.023200214000042 ], [ -122.517196403999947, 49.023208353000037 ], [ -122.517237444999935, 49.023208676000102 ], [ -122.518413790999929, 49.023217536000082 ], [ -122.520068580999961, 49.023230008000041 ], [ -122.52167939499999, 49.023242097000093 ], [ -122.521728517999975, 49.023240827000102 ], [ -122.525740996999957, 49.02323039700007 ], [ -122.52594450299992, 49.02319639200006 ], [ -122.525955499999966, 49.022828108000077 ], [ -122.525934682999889, 49.021492396000042 ], [ -122.526721034999966, 49.021466446000034 ], [ -122.531461974999942, 49.021309793000079 ], [ -122.53145780399997, 49.021026693000088 ], [ -122.53143808699997, 49.019700905000064 ], [ -122.533124229999984, 49.019689557000042 ], [ -122.533507089999944, 49.019686969000105 ], [ -122.533589146999972, 49.019686420000056 ], [ -122.534464564999951, 49.019680514000079 ], [ -122.537070689999922, 49.019662896000057 ], [ -122.537072396999946, 49.020401894000038 ], [ -122.537079009, 49.023307607000078 ], [ -122.537066471999978, 49.024396072000037 ], [ -122.53704567199999, 49.026204105000026 ], [ -122.537034916999957, 49.027139569000099 ], [ -122.537026621999971, 49.027859207000091 ], [ -122.537009322999978, 49.029361431000041 ], [ -122.536995002999959, 49.030606210000016 ], [ -122.53698355599991, 49.031592187000058 ], [ -122.536980511999971, 49.031853054000045 ], [ -122.536974157999936, 49.032401769000053 ], [ -122.536970584999892, 49.032707628000068 ], [ -122.536965388999974, 49.033157342000095 ], [ -122.53695524799997, 49.034029886000091 ], [ -122.536953156999985, 49.03420977800004 ], [ -122.536952817999932, 49.034236778000079 ], [ -122.536952398999972, 49.034272768000108 ], [ -122.53693318099999, 49.03592788600011 ], [ -122.53693004299997, 49.036197725000086 ], [ -122.536924714999955, 49.036656480000055 ], [ -122.536922524999937, 49.036845396000089 ], [ -122.536919128999955, 49.037136466000078 ], [ -122.536917713999955, 49.037259196 ], [ -122.536912592999926, 49.037699204000035 ], [ -122.536912287999925, 49.038257419000075 ], [ -122.536911163999946, 49.040452386000048 ], [ -122.536911055999965, 49.040713240000109 ], [ -122.536911022999931, 49.040767224000092 ], [ -122.536910743999968, 49.041271058000042 ], [ -122.536910604999946, 49.041556198000059 ], [ -122.536910703999965, 49.04219749100006 ], [ -122.536910680999966, 49.042278473000032 ], [ -122.536910711999923, 49.042467355000063 ], [ -122.536911092999958, 49.045231999000109 ], [ -122.536912807999911, 49.047087089000065 ], [ -122.536912722999915, 49.048818244000074 ], [ -122.536912667999957, 49.050392405000139 ], [ -122.536912573, 49.052520495000053 ], [ -122.53289836, 49.052529191000076 ], [ -122.530804346999957, 49.052533640000014 ], [ -122.53036643899999, 49.052534570000077 ], [ -122.529819014999987, 49.052535721000019 ], [ -122.527697615999898, 49.052540181000033 ], [ -122.525918406999935, 49.052543891000028 ], [ -122.525917011999951, 49.052617801000032 ], [ -122.525881565999967, 49.055154866000102 ], [ -122.525913792999916, 49.056203282000048 ], [ -122.525798957999953, 49.059866628000123 ], [ -122.52572517199998, 49.059866851000059 ], [ -122.525629367999954, 49.059867135000061 ], [ -122.523932004999949, 49.059872286000036 ], [ -122.520222338999986, 49.059883455000026 ], [ -122.519496899999979, 49.059885617000106 ], [ -122.517333738999966, 49.059892071000078 ], [ -122.514680799999894, 49.059899910000063 ], [ -122.514680720999962, 49.059476932000081 ], [ -122.514680595999963, 49.058604402000107 ] ], [ [ -122.52079378699996, 49.057738411000081 ], [ -122.52079795299997, 49.057682617000047 ], [ -122.520529496999984, 49.057673918000063 ], [ -122.520558106999914, 49.057290765000111 ], [ -122.519343179999964, 49.057251388000076 ], [ -122.519611813999944, 49.053654620000074 ], [ -122.520938990999952, 49.053697636000017 ], [ -122.521186430999961, 49.050382849000115 ], [ -122.524034740999966, 49.05047511000005 ], [ -122.52413498199995, 49.049131016000089 ], [ -122.529376974999963, 49.049300615000135 ], [ -122.529384366999949, 49.049201343000028 ], [ -122.533379972999953, 49.049330444000148 ], [ -122.533523141999964, 49.047405512000076 ], [ -122.532963000999942, 49.047387423000011 ], [ -122.53294914699994, 49.047573667000016 ], [ -122.531076996999971, 49.047513185000057 ], [ -122.531015511999954, 49.048339311000028 ], [ -122.525556866, 49.048162777000123 ], [ -122.525603952999958, 49.047531095000124 ], [ -122.52466977399996, 49.047500855000081 ], [ -122.524682796000022, 49.047326209000062 ], [ -122.523811592999962, 49.047298001000087 ], [ -122.523807864999966, 49.04734798800007 ], [ -122.522291056999933, 49.047298860000097 ], [ -122.522210558999959, 49.048377724000069 ], [ -122.519349539999951, 49.04828499700006 ], [ -122.519201142, 49.0502720920001 ], [ -122.518414827999933, 49.050246593000033 ], [ -122.518406360999919, 49.050359927 ], [ -122.519398476, 49.050392097000099 ], [ -122.519129843999977, 49.053988883 ], [ -122.518423220999964, 49.053965970000107 ], [ -122.518372036, 49.054651086000021 ], [ -122.519184046999939, 49.05467741500005 ], [ -122.518967569999973, 49.057575473000028 ], [ -122.519884701999899, 49.057605203000065 ], [ -122.519876972999953, 49.057708700000042 ], [ -122.52079378699996, 49.057738411000081 ] ], [ [ -122.518581825999902, 49.042961242000018 ], [ -122.518631412999952, 49.042297289000096 ], [ -122.518278797999969, 49.042285851000017 ], [ -122.518229205999958, 49.042949805000028 ], [ -122.518581825999902, 49.042961242000018 ] ], [ [ -122.533308936999944, 49.039499813000084 ], [ -122.533362357999977, 49.038781411000066 ], [ -122.531423916000023, 49.038718782000068 ], [ -122.531406904999969, 49.038947429000075 ], [ -122.530872295999956, 49.038930151000045 ], [ -122.530847298999959, 49.039266042000044 ], [ -122.525389715999935, 49.039089497000106 ], [ -122.525393324999953, 49.039041074000082 ], [ -122.524414185999944, 49.039009371000134 ], [ -122.524490265999944, 49.037988872000085 ], [ -122.524156638999983, 49.03797806700009 ], [ -122.524163655000038, 49.037883962000095 ], [ -122.521961167999976, 49.037812609000078 ], [ -122.522056032999956, 49.036541002000014 ], [ -122.521892743999942, 49.036535710000074 ], [ -122.522020523999927, 49.034822863000059 ], [ -122.521460235999939, 49.034804704000102 ], [ -122.521469630999931, 49.034678774000028 ], [ -122.518918054999972, 49.034596036000082 ], [ -122.519065527999913, 49.032620775000076 ], [ -122.517848931999978, 49.032581304000111 ], [ -122.51780403399998, 49.033182475000082 ], [ -122.516605847, 49.033143588 ], [ -122.516602452999948, 49.033189016000058 ], [ -122.516935210999989, 49.033199817000146 ], [ -122.51680070899999, 49.035000222000129 ], [ -122.518432770999979, 49.035053182000098 ], [ -122.518208475999955, 49.03805659800009 ], [ -122.519702511000034, 49.038105056000113 ], [ -122.519656232999978, 49.038724965000057 ], [ -122.519887142999906, 49.038732452000069 ], [ -122.519629593000019, 49.04218227800007 ], [ -122.52356524299999, 49.042309821000053 ], [ -122.52360681499998, 49.041752382000013 ], [ -122.527673388999943, 49.041884016000054 ], [ -122.527832655999944, 49.039745777000029 ], [ -122.528849435999973, 49.039778667000057 ], [ -122.528859617999927, 49.039641902000028 ], [ -122.529187885999974, 49.039652518000082 ], [ -122.529209119999948, 49.039367310000081 ], [ -122.533308936999944, 49.039499813000084 ] ], [ [ -122.533674690999973, 49.02774688000008 ], [ -122.53368664, 49.027586134000131 ], [ -122.531587251999923, 49.027518293000135 ], [ -122.531649695999931, 49.026678756000123 ], [ -122.530966782999926, 49.026656678000087 ], [ -122.53122832, 49.023140719 ], [ -122.529882975999925, 49.023097214000046 ], [ -122.529791925999945, 49.024320812000056 ], [ -122.529627174999987, 49.024315483000059 ], [ -122.529593542999947, 49.024767415000078 ], [ -122.529038109999988, 49.024749448000087 ], [ -122.529036720999926, 49.024768128000048 ], [ -122.524388239999936, 49.024617645000056 ], [ -122.524337059999951, 49.025304340000027 ], [ -122.524057371999987, 49.025295280000115 ], [ -122.52393763299996, 49.026901645000095 ], [ -122.518481521999917, 49.026724745000116 ], [ -122.518587294000014, 49.025307974000064 ], [ -122.518235776999916, 49.025296567000041 ], [ -122.51818009599999, 49.026042322000151 ], [ -122.518221424999965, 49.026043663000095 ], [ -122.518191152999961, 49.02644910700009 ], [ -122.518220649999989, 49.02645006500007 ], [ -122.518078487999958, 49.028353973000058 ], [ -122.518112370999972, 49.028355073000057 ], [ -122.518070294999944, 49.028918553000061 ], [ -122.522325859999953, 49.029056562000044 ], [ -122.522300701999939, 49.029393886000015 ], [ -122.52533603799999, 49.029492218000016 ], [ -122.525346933999941, 49.029345987000099 ], [ -122.526877002999953, 49.029395523000083 ], [ -122.527002258, 49.02771382300007 ], [ -122.530125372999976, 49.027814864000085 ], [ -122.530138935999943, 49.027632598000075 ], [ -122.533674690999973, 49.02774688000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123388833", "BldgCostT": "83148333", "sL_LossRatio": "0.755980756134531", "sL_AssetLoss": "1365630", "sL_BldgLoss": "1032390", "sL_StrLoss": "485880", "sL_NStrLoss": "546510", "sL_ContLoss": "333240", "geom_point": "0101000020E6100000A51E8A7E04A25EC0CAAEEE37DE814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.503584556999897, 49.030112877000121 ], [ -122.503586199999944, 49.029078422000097 ], [ -122.50358731299994, 49.028378220000064 ], [ -122.505704931999944, 49.02844720300002 ], [ -122.505700804999947, 49.028502274000104 ], [ -122.511139746999945, 49.028679259000064 ], [ -122.511065895999963, 49.029666276000043 ], [ -122.511293011999967, 49.029673661000039 ], [ -122.511429679999978, 49.027846947000164 ], [ -122.512614446999976, 49.027885460000114 ], [ -122.512625624999899, 49.027735992 ], [ -122.509602939999951, 49.027637706000093 ], [ -122.509628164, 49.027300724000106 ], [ -122.509252347999933, 49.027288498000097 ], [ -122.509373936999935, 49.025664188000107 ], [ -122.50814421099993, 49.025624173000082 ], [ -122.508336193, 49.023060148000084 ], [ -122.506921505999941, 49.023014098000054 ], [ -122.506902392999919, 49.023269271000046 ], [ -122.507552646999969, 49.023290440000046 ], [ -122.507283258999934, 49.026887347000098 ], [ -122.507078888999985, 49.026880695000074 ], [ -122.506986314999949, 49.028116551000096 ], [ -122.503587905999936, 49.028005865000104 ], [ -122.503589109999979, 49.027243334000026 ], [ -122.50359131499999, 49.025846087000083 ], [ -122.503637633999958, 49.025579842000077 ], [ -122.503695504999911, 49.025247263000097 ], [ -122.503711401999951, 49.025155893000033 ], [ -122.503721288999927, 49.024572268000064 ], [ -122.503699793999971, 49.020367982000032 ], [ -122.50369511699995, 49.020028991000096 ], [ -122.50370915500001, 49.019065622000049 ], [ -122.505600073000011, 49.019127233000091 ], [ -122.50565624, 49.018377580000035 ], [ -122.506515818999929, 49.018405576000056 ], [ -122.506520506999948, 49.018343000000108 ], [ -122.508647157, 49.018412235000028 ], [ -122.508659880000025, 49.018242283000106 ], [ -122.507083426999955, 49.018190965000045 ], [ -122.507188250999945, 49.016791216000101 ], [ -122.505659563, 49.016741430000081 ], [ -122.505677474999956, 49.016502356000039 ], [ -122.503747417999989, 49.01643946800008 ], [ -122.503748991999913, 49.016331409000038 ], [ -122.50824539099996, 49.016170309000145 ], [ -122.510525537999939, 49.016097362000039 ], [ -122.512400858999968, 49.016037356000012 ], [ -122.512564547999929, 49.016032113000044 ], [ -122.512906276999956, 49.016021158000093 ], [ -122.514881792, 49.015957895000078 ], [ -122.514895490999933, 49.013699094000025 ], [ -122.514897584, 49.013357260000106 ], [ -122.514904451999939, 49.012223847000072 ], [ -122.514906801999985, 49.011836494000093 ], [ -122.514882836999988, 49.010650051000098 ], [ -122.514861240999892, 49.009579528000081 ], [ -122.514854777999986, 49.009259430000107 ], [ -122.514841971999928, 49.008625922000093 ], [ -122.514794209999977, 49.006260092000041 ], [ -122.514790572999971, 49.006080047000118 ], [ -122.514777891999969, 49.005450361000037 ], [ -122.51476823199999, 49.004973560000046 ], [ -122.514750449999951, 49.004091912 ], [ -122.51473900099991, 49.003525155000062 ], [ -122.51472302799999, 49.002733437000103 ], [ -122.514714615999964, 49.002315588000066 ], [ -122.51613460499999, 49.002314222000031 ], [ -122.516084749999933, 49.002981884000107 ], [ -122.516380305999988, 49.002991486000042 ], [ -122.516430893999953, 49.002313934000021 ], [ -122.518561170999973, 49.002311844000083 ], [ -122.519094383999942, 49.002311333000115 ], [ -122.520707748999953, 49.002309699000101 ], [ -122.522115978999949, 49.002308268000043 ], [ -122.523168833999932, 49.002307207000094 ], [ -122.523346546999974, 49.002307017000049 ], [ -122.523442277999948, 49.002306920000073 ], [ -122.524194002999977, 49.002306123000075 ], [ -122.525914696999948, 49.00230431300011 ], [ -122.527120113999928, 49.002303032000064 ], [ -122.528022445999952, 49.002302061000165 ], [ -122.53035680399995, 49.002299534000031 ], [ -122.530198736000031, 49.004425060000131 ], [ -122.526247592999951, 49.004297148000013 ], [ -122.526232381999961, 49.004501456000078 ], [ -122.522179639999962, 49.004370102000145 ], [ -122.522075683999958, 49.005764652000039 ], [ -122.521361115, 49.005741477000093 ], [ -122.521261924, 49.007071768000046 ], [ -122.518942895999942, 49.006996522000094 ], [ -122.518896201999908, 49.007622310000023 ], [ -122.519486849999979, 49.007641480000068 ], [ -122.519218470999945, 49.01123850500003 ], [ -122.518841195999983, 49.011226261000076 ], [ -122.518804281999934, 49.011720914000058 ], [ -122.517056457999928, 49.011664172000067 ], [ -122.516982677999948, 49.012652310000071 ], [ -122.518954081999965, 49.012716308000059 ], [ -122.518886316999939, 49.013624343000075 ], [ -122.521427697999954, 49.013706790000114 ], [ -122.521442070999939, 49.013514046000111 ], [ -122.522369795999936, 49.013544128000028 ], [ -122.522537151, 49.011299266000059 ], [ -122.527991474999951, 49.011475964000034 ], [ -122.527854465999937, 49.013316688000046 ], [ -122.529352641999949, 49.013365175000111 ], [ -122.529532586999935, 49.010946533000038 ], [ -122.533504726999936, 49.011074984000096 ], [ -122.533531007999969, 49.010721314000087 ], [ -122.531025966999934, 49.010640323000089 ], [ -122.531038821999957, 49.010467462000065 ], [ -122.530494266999966, 49.010449848000107 ], [ -122.530486190999966, 49.0105584350001 ], [ -122.525031963999979, 49.010381864000117 ], [ -122.525049375999956, 49.010148126000033 ], [ -122.524108544999976, 49.010117640000018 ], [ -122.524376540999953, 49.006520596000087 ], [ -122.529810310999977, 49.006696555000097 ], [ -122.529829525999958, 49.006438227000054 ], [ -122.533451859999943, 49.006555374000101 ], [ -122.533564051999946, 49.005045414000087 ], [ -122.535090633999971, 49.005094747000079 ], [ -122.535100129999961, 49.004966888000105 ], [ -122.53464974799999, 49.004952336000017 ], [ -122.534847147999983, 49.002294498000062 ], [ -122.53683619499995, 49.002292209000139 ], [ -122.537866540999985, 49.002290620000096 ], [ -122.54107978899999, 49.002285654000069 ], [ -122.541476379999949, 49.002285039000107 ], [ -122.548005308999961, 49.002274593000024 ], [ -122.54901927899999, 49.002292794000077 ], [ -122.550678029999972, 49.002291640000102 ], [ -122.55343998799999, 49.002289639 ], [ -122.553576730999964, 49.002289533000159 ], [ -122.556379662999973, 49.002287424000031 ], [ -122.558971309999919, 49.00228540100008 ], [ -122.559178213999971, 49.004122661000054 ], [ -122.55932624899999, 49.005436843000034 ], [ -122.559726875999914, 49.008993385000103 ], [ -122.559728029999988, 49.009003747000058 ], [ -122.559758394999903, 49.009273203000078 ], [ -122.559754900999977, 49.009983822000088 ], [ -122.559749826999976, 49.011018242000041 ], [ -122.559748114999962, 49.011369059000067 ], [ -122.55974230299995, 49.012549283000077 ], [ -122.559739951, 49.013375070000144 ], [ -122.559732590999957, 49.015961702000041 ], [ -122.559718512999922, 49.017755901000093 ], [ -122.559713191999933, 49.018439559000036 ], [ -122.559702682999927, 49.01977985600012 ], [ -122.559701375999936, 49.019944767000041 ], [ -122.559692927999976, 49.021021225000041 ], [ -122.559692301999959, 49.021102163000101 ], [ -122.559687075999932, 49.021767842000052 ], [ -122.559686669999962, 49.021821817000067 ], [ -122.559686568999894, 49.021832265000072 ], [ -122.559682214999924, 49.022388524000121 ], [ -122.55967608499995, 49.023171120000072 ], [ -122.559675179999957, 49.02328188500011 ], [ -122.55400610399991, 49.02325501300006 ], [ -122.548403684999954, 49.023342590000041 ], [ -122.541919411999956, 49.023319504000071 ], [ -122.539053588999977, 49.02331248600013 ], [ -122.538875732999941, 49.02331202800012 ], [ -122.537079009, 49.023307607000078 ], [ -122.537072396999946, 49.020401894000038 ], [ -122.537070689999922, 49.019662896000057 ], [ -122.534464564999951, 49.019680514000079 ], [ -122.533589146999972, 49.019686420000056 ], [ -122.533507089999944, 49.019686969000105 ], [ -122.533124229999984, 49.019689557000042 ], [ -122.53143808699997, 49.019700905000064 ], [ -122.53145780399997, 49.021026693000088 ], [ -122.531461974999942, 49.021309793000079 ], [ -122.526721034999966, 49.021466446000034 ], [ -122.525934682999889, 49.021492396000042 ], [ -122.525955499999966, 49.022828108000077 ], [ -122.52594450299992, 49.02319639200006 ], [ -122.525740996999957, 49.02323039700007 ], [ -122.521728517999975, 49.023240827000102 ], [ -122.52167939499999, 49.023242097000093 ], [ -122.520068580999961, 49.023230008000041 ], [ -122.518413790999929, 49.023217536000082 ], [ -122.517237444999935, 49.023208676000102 ], [ -122.517196403999947, 49.023208353000037 ], [ -122.516116050999969, 49.023200214000042 ], [ -122.514912806999945, 49.023191097000094 ], [ -122.514777093999939, 49.023249804000031 ], [ -122.514775910999958, 49.023431894000105 ], [ -122.514775036999964, 49.02356513600013 ], [ -122.514774904999982, 49.023583101000028 ], [ -122.51477273399999, 49.023917639000103 ], [ -122.514770714999955, 49.024232466000051 ], [ -122.514765841999974, 49.024979112000096 ], [ -122.514763590999976, 49.025320928000028 ], [ -122.514761977999967, 49.025572784000047 ], [ -122.514759973999958, 49.025878649000106 ], [ -122.51475247399999, 49.027030022000126 ], [ -122.514750110999927, 49.02738982700005 ], [ -122.514748725999979, 49.027605710000088 ], [ -122.51472929399992, 49.030585717000065 ], [ -122.510969441999976, 49.030696126000123 ], [ -122.510206511999954, 49.030718531000076 ], [ -122.509740363999938, 49.030732199000106 ], [ -122.509109724999988, 49.030750719000039 ], [ -122.508015062999945, 49.030782802000012 ], [ -122.507686775999943, 49.030792442000106 ], [ -122.503621947999974, 49.030911570000029 ], [ -122.503583298999956, 49.030912706000045 ], [ -122.503583379999952, 49.030859505000116 ], [ -122.503584556999897, 49.030112877000121 ] ], [ [ -122.519937573999968, 49.020185013000059 ], [ -122.520027358999968, 49.01898168300005 ], [ -122.517443663, 49.018897839000019 ], [ -122.517486143, 49.018328915000033 ], [ -122.517251670999926, 49.018321302000032 ], [ -122.517119328999925, 49.020093554 ], [ -122.519937573999968, 49.020185013000059 ] ], [ [ -122.522949774999972, 49.018391781000062 ], [ -122.52293481599996, 49.018592437000088 ], [ -122.524157634999966, 49.018632064000073 ], [ -122.524172589, 49.018431409000108 ], [ -122.522949774999972, 49.018391781000062 ] ], [ [ -122.541848299000023, 49.016922509000025 ], [ -122.541581590999968, 49.020519538000066 ], [ -122.541037365999927, 49.020501993000096 ], [ -122.540934309999955, 49.021891508000095 ], [ -122.544426092999984, 49.022004033000016 ], [ -122.54448931599994, 49.021150725 ], [ -122.549944873999962, 49.021326305000038 ], [ -122.549916015999955, 49.021716420000097 ], [ -122.555204814999939, 49.021886367000036 ], [ -122.555201535999913, 49.021930753000078 ], [ -122.556225690999923, 49.021963633000048 ], [ -122.556250834999972, 49.021623131000126 ], [ -122.556108513999959, 49.021618562000072 ], [ -122.556174135999953, 49.020729870000018 ], [ -122.555575449999978, 49.02071065000009 ], [ -122.555751812999986, 49.018322490000095 ], [ -122.555563895999953, 49.018316456000058 ], [ -122.555573332999941, 49.018188675000012 ], [ -122.553792503999944, 49.01813148200003 ], [ -122.553760874999952, 49.018559549000074 ], [ -122.548305624999955, 49.018384163000057 ], [ -122.548324640999951, 49.018127204000081 ], [ -122.546979895999968, 49.01808392800006 ], [ -122.547246173999937, 49.014486872000106 ], [ -122.547457213999962, 49.014493665 ], [ -122.547513605999939, 49.013731777 ], [ -122.549752862999981, 49.013803827000096 ], [ -122.549808350999953, 49.013053630000108 ], [ -122.554577464999966, 49.013206925000091 ], [ -122.554841637999971, 49.009630041000023 ], [ -122.55580856200001, 49.009661096000059 ], [ -122.555903292999943, 49.008377933000112 ], [ -122.55586461599998, 49.00837669100008 ], [ -122.555948747999963, 49.007237052000107 ], [ -122.555844184999927, 49.007233694000064 ], [ -122.555867441999936, 49.006918661000029 ], [ -122.552009448999968, 49.00679469800005 ], [ -122.551935102999948, 49.007800626000105 ], [ -122.546481118999907, 49.007625143000041 ], [ -122.546535143999947, 49.006895319000066 ], [ -122.544090780999966, 49.006816581000066 ], [ -122.54414287199991, 49.00611333700008 ], [ -122.540593145999964, 49.005998893000019 ], [ -122.540582618999963, 49.006140851000083 ], [ -122.540705380999924, 49.006144811000084 ], [ -122.540438645999956, 49.009741897000083 ], [ -122.54029972, 49.009737416000149 ], [ -122.54022306899995, 49.010770939000039 ], [ -122.540483174999963, 49.010779330000048 ], [ -122.540407242999947, 49.011803191000055 ], [ -122.540789625999977, 49.011815524000014 ], [ -122.540679249999968, 49.013303930000099 ], [ -122.541184303999941, 49.013320218000032 ], [ -122.540919397000025, 49.016892561000112 ], [ -122.541848299000023, 49.016922509000025 ] ], [ [ -122.53487280399996, 49.012704511000074 ], [ -122.534886799, 49.012516117000096 ], [ -122.534883414999982, 49.012516008000034 ], [ -122.534869419999936, 49.012704402000118 ], [ -122.53487280399996, 49.012704511000074 ] ], [ [ -122.555261489999964, 49.013249160000051 ], [ -122.55516395199993, 49.014569923000096 ], [ -122.556060090999893, 49.014598699000061 ], [ -122.556157602999946, 49.013277935000175 ], [ -122.555261489999964, 49.013249160000051 ] ], [ [ -122.516799829999968, 49.0168964860001 ], [ -122.516804391, 49.016835405000123 ], [ -122.516792160999955, 49.016835008000029 ], [ -122.516787599999972, 49.016896089000092 ], [ -122.516799829999968, 49.0168964860001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14459001", "BldgCostT": "9500001", "sL_LossRatio": "0.741385814441795", "sL_AssetLoss": "140495", "sL_BldgLoss": "104161", "sL_StrLoss": "49281", "sL_NStrLoss": "54880", "sL_ContLoss": "36334", "geom_point": "0101000020E61000003E19B9FAB3A05EC0873553298F844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.512704518999925, 49.043664459000091 ], [ -122.512782376999951, 49.042623741000035 ], [ -122.512388422999919, 49.04261094 ], [ -122.512605172999912, 49.039713724000066 ], [ -122.511303463999951, 49.039671420000069 ], [ -122.511424606999924, 49.038052594000071 ], [ -122.511062355999954, 49.038040817000137 ], [ -122.511110767999966, 49.037393920000078 ], [ -122.510781385999977, 49.037383213000098 ], [ -122.510834703999976, 49.036670799000021 ], [ -122.510607421999936, 49.036663409000013 ], [ -122.510853341999962, 49.033377504000079 ], [ -122.507469717, 49.033267434000031 ], [ -122.507473928999971, 49.033211210000076 ], [ -122.505132238999977, 49.033134972000035 ], [ -122.50515337299997, 49.032853016000082 ], [ -122.502878778999943, 49.032778914000097 ], [ -122.502929287999962, 49.032105499000096 ], [ -122.502794716999915, 49.03210111300006 ], [ -122.502805420999977, 49.031958398000015 ], [ -122.499978728999977, 49.031866238000113 ], [ -122.500041773999939, 49.031026362000084 ], [ -122.500912522999954, 49.030998423000028 ], [ -122.502404143, 49.030950541000024 ], [ -122.503583298999956, 49.030912706000045 ], [ -122.503621947999974, 49.030911570000029 ], [ -122.507686775999943, 49.030792442000106 ], [ -122.508015062999945, 49.030782802000012 ], [ -122.509109724999988, 49.030750719000039 ], [ -122.509740363999938, 49.030732199000106 ], [ -122.510206511999954, 49.030718531000076 ], [ -122.510969441999976, 49.030696126000123 ], [ -122.51472929399992, 49.030585717000065 ], [ -122.514729879999919, 49.032427274000057 ], [ -122.514730401999913, 49.034091495000055 ], [ -122.514730524999905, 49.034505286000041 ], [ -122.514730626999963, 49.034838097000033 ], [ -122.51473072499999, 49.035116950000088 ], [ -122.51473135099998, 49.037212591000092 ], [ -122.514731392999963, 49.037302525000037 ], [ -122.514731577999981, 49.03789665700009 ], [ -122.514731605999955, 49.03794570900002 ], [ -122.514725292999969, 49.038814123000073 ], [ -122.514718804999987, 49.039704667000088 ], [ -122.514716241999963, 49.040055480000099 ], [ -122.514715189999976, 49.040199377000143 ], [ -122.514708635999952, 49.041098935999983 ], [ -122.5147055, 49.041530706000117 ], [ -122.514699703999923, 49.042331303000026 ], [ -122.514695938999921, 49.042844019000043 ], [ -122.514686196999932, 49.044184339000061 ], [ -122.514678512999922, 49.045240797000076 ], [ -122.513265721999986, 49.045276857000012 ], [ -122.512321929, 49.045300931000085 ], [ -122.511430834999942, 49.045323645000046 ], [ -122.511557796999938, 49.04362719700007 ], [ -122.512704518999925, 49.043664459000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92220250", "BldgCostT": "61105000", "sL_LossRatio": "0.736956256551593", "sL_AssetLoss": "967322", "sL_BldgLoss": "712874", "sL_StrLoss": "353818", "sL_NStrLoss": "359056", "sL_ContLoss": "254448", "geom_point": "0101000020E6100000FB7486F3BA9E5EC05A445E20D2844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.461585925999941, 49.046085028000086 ], [ -122.461590037999969, 49.045704189000041 ], [ -122.45994797499999, 49.045696517000046 ], [ -122.459956741999946, 49.044886953000074 ], [ -122.459754958999923, 49.044886009000052 ], [ -122.459754239999953, 49.043806534000041 ], [ -122.463252433, 49.043822857000031 ], [ -122.463258242, 49.043283146000093 ], [ -122.464489728999979, 49.043288869000037 ], [ -122.464486829999913, 49.04355872200005 ], [ -122.465307826999904, 49.043562530000052 ], [ -122.465310720999966, 49.043292675000025 ], [ -122.466131713999957, 49.043296476000144 ], [ -122.46614037799999, 49.042486912000129 ], [ -122.465319401000016, 49.042483111000116 ], [ -122.465316507999916, 49.042752965000084 ], [ -122.464085031999957, 49.04274725300008 ], [ -122.464093730999977, 49.0419376890001 ], [ -122.464504215999952, 49.041939595000066 ], [ -122.464510010999945, 49.041399885000054 ], [ -122.464920490999987, 49.04140179000013 ], [ -122.464923384999949, 49.041131935000095 ], [ -122.467200971999944, 49.041142472000068 ], [ -122.467472118, 49.037564414000059 ], [ -122.467544298999954, 49.037566790000028 ], [ -122.467546572999979, 49.037536775000056 ], [ -122.465700928000018, 49.037476010000098 ], [ -122.465958487999941, 49.034078407000017 ], [ -122.461160778999954, 49.033920298000098 ], [ -122.461170480999925, 49.033792496000039 ], [ -122.459747539999952, 49.033745562000064 ], [ -122.459746001, 49.031433185000019 ], [ -122.459746629, 49.031139402000065 ], [ -122.45974797699995, 49.030518739000058 ], [ -122.459748784999988, 49.030140935000126 ], [ -122.459749925, 49.029619148000059 ], [ -122.459751352999945, 49.028962493000023 ], [ -122.459751929999982, 49.028692642000088 ], [ -122.45975269299997, 49.028336997000082 ], [ -122.459544750999896, 49.027225906000126 ], [ -122.459393623999972, 49.026095990000023 ], [ -122.45985401199998, 49.025507987000076 ], [ -122.465727379999961, 49.025528043000058 ], [ -122.467232031999984, 49.025533131000088 ], [ -122.468545130999985, 49.025537523000054 ], [ -122.470681884999962, 49.025544705000165 ], [ -122.470682274999959, 49.02618899000003 ], [ -122.470682685999961, 49.026800660000063 ], [ -122.470683019999981, 49.027367375000033 ], [ -122.470683326999975, 49.027889084 ], [ -122.470683584999946, 49.028284874000114 ], [ -122.4706838099999, 49.028680731000115 ], [ -122.47068481399999, 49.030291005000073 ], [ -122.470685193999941, 49.030893593 ], [ -122.47068550299997, 49.031404209000065 ], [ -122.476568584999939, 49.031363628000044 ], [ -122.477225553999986, 49.031359071000068 ], [ -122.477581413999943, 49.031356593000076 ], [ -122.479141136999928, 49.03134575900004 ], [ -122.481124837999985, 49.031331976000075 ], [ -122.48179549199989, 49.031327297000047 ], [ -122.482725505999909, 49.031322182000046 ], [ -122.483902242999974, 49.031315691000025 ], [ -122.48683043399997, 49.031299452000042 ], [ -122.48803410099994, 49.031292791000105 ], [ -122.491864847999977, 49.03127140800008 ], [ -122.492507406999906, 49.031267812000053 ], [ -122.496111839999941, 49.03115235600005 ], [ -122.496037088999984, 49.032147049000066 ], [ -122.496056111999948, 49.03214767 ], [ -122.496016963000017, 49.032668613000062 ], [ -122.496122841999949, 49.032672070000075 ], [ -122.496031379999948, 49.033889086000038 ], [ -122.496058618999939, 49.033889975000129 ], [ -122.49602763099989, 49.034302314000101 ], [ -122.496155039999948, 49.034306474000068 ], [ -122.496108667999934, 49.034923515000067 ], [ -122.497585928999982, 49.034971738000124 ], [ -122.497315704999949, 49.038568554000086 ], [ -122.496656433999959, 49.038547036000068 ], [ -122.496520571999923, 49.040354868000058 ], [ -122.496069488999964, 49.040340143000066 ], [ -122.496056823999979, 49.040508658000135 ], [ -122.496109923999967, 49.040510392000044 ], [ -122.496085485999984, 49.040835503000054 ], [ -122.496112742999955, 49.040836393000063 ], [ -122.49605876899993, 49.041554456000014 ], [ -122.496151785999956, 49.041557492000095 ], [ -122.496100608999924, 49.042238335000064 ], [ -122.496950399999932, 49.042266074000104 ], [ -122.496887461999918, 49.043103581000011 ], [ -122.499080078999953, 49.043175118000086 ], [ -122.499074221999962, 49.043253099 ], [ -122.500302224999928, 49.043293144000046 ], [ -122.500308675000028, 49.043207224000106 ], [ -122.503896810999962, 49.043324155000036 ], [ -122.504112474999928, 49.040448507000065 ], [ -122.509570136999969, 49.040626133000096 ], [ -122.509327614, 49.043864943000109 ], [ -122.51096268799995, 49.043918104000127 ], [ -122.510856382999961, 49.045338284000145 ], [ -122.51071820199995, 49.045341804000067 ], [ -122.507722305999962, 49.045418120000065 ], [ -122.50525795199998, 49.045480809000047 ], [ -122.503819951999958, 49.045517385000046 ], [ -122.50261541199994, 49.045548005000143 ], [ -122.498494455999932, 49.045652630000092 ], [ -122.497823279999963, 49.045669646000079 ], [ -122.496905587999919, 49.045692916000128 ], [ -122.494934792999942, 49.045742862000047 ], [ -122.492544903999899, 49.045803409000023 ], [ -122.491429516999972, 49.045808799000042 ], [ -122.487364847999942, 49.045828400000097 ], [ -122.484354917999966, 49.045842803000056 ], [ -122.481563500999968, 49.045855001000092 ], [ -122.479264307999927, 49.045868882000029 ], [ -122.47866077799992, 49.045869843000069 ], [ -122.477100705999959, 49.045872256000052 ], [ -122.475130016999955, 49.04587528400004 ], [ -122.47404504299999, 49.045876961000054 ], [ -122.470615235999958, 49.045882311000121 ], [ -122.470128797999962, 49.04589512400009 ], [ -122.466302450999962, 49.045995945000122 ], [ -122.466102824999922, 49.045995022000099 ], [ -122.466105714, 49.045725168000061 ], [ -122.464053131999933, 49.04571565300008 ], [ -122.46405023299998, 49.045985508000065 ], [ -122.463229196999976, 49.04598169300008 ], [ -122.463228171999972, 49.046076851000095 ], [ -122.462384753, 49.046099032 ], [ -122.462362105999915, 49.046100165000077 ], [ -122.461585925999941, 49.046085028000086 ] ], [ [ -122.488413753, 49.043318759000016 ], [ -122.48867183099999, 49.039892732000077 ], [ -122.48936008699998, 49.039915248000078 ], [ -122.48936650399996, 49.039830039000051 ], [ -122.488834031999957, 49.039812620000085 ], [ -122.489104916999949, 49.036215833000014 ], [ -122.490410081999968, 49.036258523000079 ], [ -122.490422657999943, 49.036091463000069 ], [ -122.490395417999949, 49.036090572000077 ], [ -122.490407658999985, 49.035927962000144 ], [ -122.489229988999938, 49.035889442000041 ], [ -122.489381740999988, 49.033874153000077 ], [ -122.489259311999902, 49.033870147000066 ], [ -122.489279563999943, 49.033601196000049 ], [ -122.485905513999953, 49.033490759000067 ], [ -122.485975693999961, 49.03255960900001 ], [ -122.485146900999951, 49.032532465000124 ], [ -122.485071928999957, 49.033526964000082 ], [ -122.484362054999963, 49.033503711000044 ], [ -122.48433142099999, 49.033909981000114 ], [ -122.483700923999919, 49.033889324000071 ], [ -122.483539337999929, 49.036031731000087 ], [ -122.4836608049999, 49.036035712000078 ], [ -122.483640335999937, 49.03630709700009 ], [ -122.487479188999984, 49.036432811000061 ], [ -122.487208175999982, 49.040029594000067 ], [ -122.483831587999958, 49.039919026000128 ], [ -122.48377307600002, 49.040694775000119 ], [ -122.483160519, 49.040674704 ], [ -122.48313087, 49.041067689000045 ], [ -122.477673258999971, 49.040888720000041 ], [ -122.47768217199993, 49.040770755000018 ], [ -122.477123617999936, 49.04075242300005 ], [ -122.477122310999931, 49.04076973400003 ], [ -122.474829194999941, 49.040694442000138 ], [ -122.474785672999985, 49.041269965000012 ], [ -122.474907245999958, 49.041273959000122 ], [ -122.474746633, 49.043397782000056 ], [ -122.475298887999969, 49.043415918000065 ], [ -122.475317588999971, 49.043168619 ], [ -122.480775458999943, 49.043347708000042 ], [ -122.480763705999934, 49.043503380000082 ], [ -122.483200383999971, 49.043583244000047 ], [ -122.483197984999961, 49.04361505 ], [ -122.484225650999988, 49.043648717000046 ], [ -122.484164612999948, 49.044457959000049 ], [ -122.484592929999948, 49.044459873000058 ], [ -122.484582820999904, 49.045438004000033 ], [ -122.484581775, 49.045539295000069 ], [ -122.485813320999952, 49.045544788000036 ], [ -122.485814007, 49.045478318000043 ], [ -122.48581610399999, 49.045274934000133 ], [ -122.488028853999978, 49.04528477100007 ], [ -122.488177559999912, 49.043311030000055 ], [ -122.488413753, 49.043318759000016 ] ], [ [ -122.467436215999967, 49.02806511900009 ], [ -122.467455812999958, 49.027806441000095 ], [ -122.46350144899999, 49.027676177000025 ], [ -122.463502857999984, 49.027657608000055 ], [ -122.462864268999979, 49.02763655800004 ], [ -122.46275060100001, 49.029134996000103 ], [ -122.463706877, 49.029166517000128 ], [ -122.463718945999943, 49.029007399000108 ], [ -122.467190586999919, 49.029121758000024 ], [ -122.46727105299999, 49.028059681000045 ], [ -122.467436215999967, 49.02806511900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3651583", "BldgCostT": "2518333", "sL_LossRatio": "0.796930235368765", "sL_AssetLoss": "33097", "sL_BldgLoss": "26376", "sL_StrLoss": "12126", "sL_NStrLoss": "14250", "sL_ContLoss": "6721", "geom_point": "0101000020E6100000742F49C8B49D5EC08D633D18A5804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.463267778999963, 49.007508825000073 ], [ -122.463329967000021, 49.006688516000104 ], [ -122.463063321999925, 49.006679722000044 ], [ -122.463081918999961, 49.006434417000065 ], [ -122.461191531999972, 49.006372055000021 ], [ -122.46116807099996, 49.006681321000059 ], [ -122.45929893499999, 49.006619627000092 ], [ -122.459141516999949, 49.002556772000126 ], [ -122.463874484999948, 49.002712951 ], [ -122.463863771999982, 49.002854298000045 ], [ -122.464807860999883, 49.002885426000034 ], [ -122.464789273999969, 49.003130732000066 ], [ -122.468789137999977, 49.003262521000082 ], [ -122.46872705, 49.004082837000119 ], [ -122.468993681999933, 49.004091617000078 ], [ -122.468721433999988, 49.007688535000099 ], [ -122.463267778999963, 49.007508825000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4168833", "BldgCostT": "2403333", "sL_LossRatio": "0.614235155328352", "sL_AssetLoss": "50860", "sL_BldgLoss": "31240", "sL_StrLoss": "12300", "sL_NStrLoss": "18940", "sL_ContLoss": "19620", "geom_point": "0101000020E6100000CBF6427D22A05EC0A82B0A817D804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.501046192999951, 49.002297466000115 ], [ -122.504927470999974, 49.00230279400008 ], [ -122.504691763, 49.005449174 ], [ -122.499238231999968, 49.00527129000006 ], [ -122.499461527999927, 49.002295249000092 ], [ -122.501046192999951, 49.002297466000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126504666", "BldgCostT": "82041666", "sL_LossRatio": "0.704119876727084", "sL_AssetLoss": "1552328", "sL_BldgLoss": "1093025", "sL_StrLoss": "513170", "sL_NStrLoss": "579855", "sL_ContLoss": "459303", "geom_point": "0101000020E6100000DC951259169F5EC01EE350E019824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.47068481399999, 49.030291005000073 ], [ -122.4706838099999, 49.028680731000115 ], [ -122.470683584999946, 49.028284874000114 ], [ -122.470683326999975, 49.027889084 ], [ -122.470683019999981, 49.027367375000033 ], [ -122.470682685999961, 49.026800660000063 ], [ -122.470682274999959, 49.02618899000003 ], [ -122.470681884999962, 49.025544705000165 ], [ -122.468545130999985, 49.025537523000054 ], [ -122.467232031999984, 49.025533131000088 ], [ -122.465727379999961, 49.025528043000058 ], [ -122.45985401199998, 49.025507987000076 ], [ -122.459914733999966, 49.024534421000091 ], [ -122.459910663999935, 49.024379400000015 ], [ -122.459714593999962, 49.016898087000143 ], [ -122.459687407999951, 49.016642735000147 ], [ -122.459634852999955, 49.015287030000074 ], [ -122.464554940999932, 49.015449308000022 ], [ -122.46456747299996, 49.01528397800007 ], [ -122.470022041999968, 49.015463620000084 ], [ -122.46999751599999, 49.015787687000078 ], [ -122.470118563000014, 49.015788244000106 ], [ -122.470123727999948, 49.015301640000168 ], [ -122.467738566999955, 49.015223123000041 ], [ -122.467790189999931, 49.014541451000099 ], [ -122.467680009000034, 49.01453782300009 ], [ -122.467730817999964, 49.013866868000022 ], [ -122.464054225000012, 49.013745729000064 ], [ -122.46432686699994, 49.010148857000054 ], [ -122.469780835, 49.010328513000026 ], [ -122.469730058999943, 49.010999473000084 ], [ -122.470018680999928, 49.011008973000131 ], [ -122.470080131999936, 49.010196896000132 ], [ -122.471348854999988, 49.010238644000012 ], [ -122.471498613999955, 49.008258780000062 ], [ -122.469973780999965, 49.00820860200006 ], [ -122.469989745999939, 49.00799760600006 ], [ -122.469159664999964, 49.007970281000084 ], [ -122.469431881999924, 49.004373363000163 ], [ -122.471469562999957, 49.004440430000095 ], [ -122.471472213999945, 49.004190059000102 ], [ -122.472292563999972, 49.004193813000015 ], [ -122.472295415999923, 49.003923956000065 ], [ -122.472705589, 49.003925831000089 ], [ -122.472711286, 49.003386118000101 ], [ -122.473121455999902, 49.003387991000096 ], [ -122.473132841999984, 49.002308563 ], [ -122.473361199999914, 49.00230960600009 ], [ -122.473361305999973, 49.002416473000082 ], [ -122.47336280799999, 49.003907798000078 ], [ -122.473367506999978, 49.004902795000106 ], [ -122.473376099999953, 49.006716310000101 ], [ -122.47336345899997, 49.008221037000055 ], [ -122.479056947999936, 49.008168750000038 ], [ -122.479040909999981, 49.007961686000101 ], [ -122.479466235999922, 49.007975648000048 ], [ -122.479194771999985, 49.011572571000087 ], [ -122.478778811999973, 49.011558916000084 ], [ -122.478773690999958, 49.012049492000109 ], [ -122.47918393199997, 49.012051345000032 ], [ -122.479181115999921, 49.012321202000081 ], [ -122.479591358, 49.012323052000056 ], [ -122.479588546999977, 49.012592909000055 ], [ -122.480409034999965, 49.012596608000102 ], [ -122.480400610999965, 49.013406178000025 ], [ -122.479990358999913, 49.013404330000078 ], [ -122.479987546999894, 49.013674186000088 ], [ -122.48080805499994, 49.013677881000035 ], [ -122.480802441999955, 49.014217594000023 ], [ -122.481212699999901, 49.014219439000044 ], [ -122.481215503999962, 49.013949582000087 ], [ -122.483266784999955, 49.013958786000074 ], [ -122.48326346199994, 49.014279729000116 ], [ -122.487890823999962, 49.014431341000012 ], [ -122.4878444, 49.015047890000076 ], [ -122.488423493999946, 49.015066849000036 ], [ -122.48848806499997, 49.014209152000078 ], [ -122.490892929999944, 49.014287854000074 ], [ -122.49092789, 49.013823136000028 ], [ -122.488869932999933, 49.013755790000069 ], [ -122.489011688999966, 49.011872484000044 ], [ -122.488947950999915, 49.011870397000116 ], [ -122.488953669999944, 49.011794419000069 ], [ -122.487583607999952, 49.011749562000084 ], [ -122.487755886999977, 49.009461476000119 ], [ -122.485499635999929, 49.009387565000047 ], [ -122.485421359999989, 49.010426524000131 ], [ -122.479967321999979, 49.010247662000033 ], [ -122.480238718999942, 49.006650730000061 ], [ -122.485467784000022, 49.006822221000078 ], [ -122.485471779999941, 49.006769170000013 ], [ -122.48278074299995, 49.006680947000078 ], [ -122.482854297999964, 49.005705288000044 ], [ -122.480476822999961, 49.005627289000103 ], [ -122.480557631999929, 49.004556086000065 ], [ -122.479672600999919, 49.004527037000074 ], [ -122.479656040999942, 49.006116344000063 ], [ -122.47924585, 49.006114493000076 ], [ -122.479240220999884, 49.006654207000032 ], [ -122.479097264999936, 49.006653562000132 ], [ -122.479437353999955, 49.002297856000048 ], [ -122.480811705999898, 49.002290089000077 ], [ -122.483786013999989, 49.002302905000072 ], [ -122.48499861699996, 49.002295273000108 ], [ -122.485631794999932, 49.002291288000059 ], [ -122.486100119999975, 49.002290911000031 ], [ -122.488990057999928, 49.00228851300006 ], [ -122.48898225399995, 49.002392218000104 ], [ -122.489255735999961, 49.002401172000077 ], [ -122.489212561, 49.002974957000056 ], [ -122.48960685899999, 49.002987865000101 ], [ -122.489497760999882, 49.004437857000035 ], [ -122.490534005999919, 49.004471773000034 ], [ -122.49061207699998, 49.003433872000052 ], [ -122.491282415999976, 49.003455807000137 ], [ -122.491319575, 49.002961687999985 ], [ -122.492609860999963, 49.003003897000013 ], [ -122.496772806999971, 49.003139974000156 ], [ -122.496732970999972, 49.003670519000075 ], [ -122.497046729999909, 49.003680768000081 ], [ -122.49677664499994, 49.007277759000054 ], [ -122.49433705199999, 49.007198042000049 ], [ -122.494283213999964, 49.007914490000083 ], [ -122.494465484999949, 49.007920448000078 ], [ -122.494457731, 49.008023623 ], [ -122.497574882999984, 49.008125466000124 ], [ -122.497563980999971, 49.008270688000081 ], [ -122.498303489999969, 49.008294837000058 ], [ -122.498327513999968, 49.007974771000072 ], [ -122.499221480999921, 49.008003955000071 ], [ -122.499365475999952, 49.006084991000108 ], [ -122.504819103999978, 49.006262868000157 ], [ -122.504549602999973, 49.009859864000099 ], [ -122.503655595999959, 49.009830724000089 ], [ -122.503592020999974, 49.010678951000088 ], [ -122.503642916999951, 49.010680610000101 ], [ -122.503482181999985, 49.012825077000066 ], [ -122.507559513999951, 49.012957913000065 ], [ -122.50754917799999, 49.013095957000139 ], [ -122.511389815999934, 49.013220939000043 ], [ -122.511430454999939, 49.012677555000089 ], [ -122.510911706999977, 49.012660682000025 ], [ -122.510958230999961, 49.012038668000088 ], [ -122.51023272099998, 49.012015066000096 ], [ -122.510317222999959, 49.010885512000044 ], [ -122.508710637999954, 49.010833228000067 ], [ -122.508979822999891, 49.007236226000074 ], [ -122.510466314999945, 49.007284603000109 ], [ -122.510612191999954, 49.005334254000054 ], [ -122.50975531399996, 49.005306370000042 ], [ -122.509979494999953, 49.002309519000121 ], [ -122.513337932999946, 49.002313855000097 ], [ -122.513843788999964, 49.002314495000057 ], [ -122.514714615999964, 49.002315588000066 ], [ -122.51472302799999, 49.002733437000103 ], [ -122.51473900099991, 49.003525155000062 ], [ -122.514750449999951, 49.004091912 ], [ -122.51476823199999, 49.004973560000046 ], [ -122.514777891999969, 49.005450361000037 ], [ -122.514790572999971, 49.006080047000118 ], [ -122.514794209999977, 49.006260092000041 ], [ -122.514841971999928, 49.008625922000093 ], [ -122.514854777999986, 49.009259430000107 ], [ -122.514861240999892, 49.009579528000081 ], [ -122.514882836999988, 49.010650051000098 ], [ -122.514906801999985, 49.011836494000093 ], [ -122.514904451999939, 49.012223847000072 ], [ -122.514897584, 49.013357260000106 ], [ -122.514895490999933, 49.013699094000025 ], [ -122.514881792, 49.015957895000078 ], [ -122.512906276999956, 49.016021158000093 ], [ -122.512564547999929, 49.016032113000044 ], [ -122.512400858999968, 49.016037356000012 ], [ -122.510525537999939, 49.016097362000039 ], [ -122.50824539099996, 49.016170309000145 ], [ -122.503748991999913, 49.016331409000038 ], [ -122.503747417999989, 49.01643946800008 ], [ -122.50345646699999, 49.016429984000034 ], [ -122.503434337999948, 49.016725170000036 ], [ -122.499271932999974, 49.016589413000126 ], [ -122.499196415999947, 49.017595571000136 ], [ -122.497511566999918, 49.017540572000051 ], [ -122.497509146999903, 49.017572811000043 ], [ -122.496844658999947, 49.017551113000096 ], [ -122.496824053999944, 49.017825449000114 ], [ -122.496840697999957, 49.017825992000084 ], [ -122.49684613, 49.017753664000054 ], [ -122.502301110999966, 49.017931666000145 ], [ -122.502031347999932, 49.021528590000038 ], [ -122.500023694999982, 49.021463111000045 ], [ -122.500018266999945, 49.021535439000047 ], [ -122.497975598999972, 49.021468779000031 ], [ -122.497881747999926, 49.022718587000028 ], [ -122.49636522699997, 49.022669072000099 ], [ -122.496248661999971, 49.024220578000048 ], [ -122.496262917999928, 49.024221044000079 ], [ -122.496218854999967, 49.024807519000099 ], [ -122.496222754999934, 49.024807647000046 ], [ -122.496168209999936, 49.025533605000064 ], [ -122.496267497999966, 49.025536847000119 ], [ -122.495997226999947, 49.029133714000125 ], [ -122.494893138999927, 49.029097653000072 ], [ -122.494882490999885, 49.029239300000057 ], [ -122.49496743399996, 49.029238061000058 ], [ -122.495018934999905, 49.029826561000093 ], [ -122.494838146999911, 49.029829198000073 ], [ -122.494791829999912, 49.030445334000014 ], [ -122.494986547999957, 49.03045169400005 ], [ -122.49496435699993, 49.030746889000092 ], [ -122.496139426, 49.030785265000077 ], [ -122.496111839999941, 49.03115235600005 ], [ -122.492507406999906, 49.031267812000053 ], [ -122.491864847999977, 49.03127140800008 ], [ -122.48803410099994, 49.031292791000105 ], [ -122.48683043399997, 49.031299452000042 ], [ -122.483902242999974, 49.031315691000025 ], [ -122.482725505999909, 49.031322182000046 ], [ -122.48179549199989, 49.031327297000047 ], [ -122.481124837999985, 49.031331976000075 ], [ -122.479141136999928, 49.03134575900004 ], [ -122.477581413999943, 49.031356593000076 ], [ -122.477225553999986, 49.031359071000068 ], [ -122.476568584999939, 49.031363628000044 ], [ -122.47068550299997, 49.031404209000065 ], [ -122.470685193999941, 49.030893593 ], [ -122.47068481399999, 49.030291005000073 ] ], [ [ -122.489197498999943, 49.029992826000139 ], [ -122.48929378599999, 49.028713990000064 ], [ -122.488485502999964, 49.028687541000124 ], [ -122.488540251999922, 49.027960523000075 ], [ -122.487060765999942, 49.02791209500004 ], [ -122.487043909999954, 49.028135832000068 ], [ -122.485631360999946, 49.028089576000127 ], [ -122.485574812999971, 49.028839865000094 ], [ -122.486635855999921, 49.028874613000042 ], [ -122.486628270999958, 49.028975279000051 ], [ -122.488280605999947, 49.029029370000032 ], [ -122.488210475999921, 49.029960527000078 ], [ -122.489197498999943, 49.029992826000139 ] ], [ [ -122.477665302999981, 49.028896105000086 ], [ -122.477711718999927, 49.028281633000041 ], [ -122.478852605999975, 49.028319080000074 ], [ -122.478924321999926, 49.027369360000087 ], [ -122.480212930000036, 49.027411640000089 ], [ -122.480231078999978, 49.027171191000043 ], [ -122.480267764999965, 49.027172395000036 ], [ -122.480486728999978, 49.024271288000072 ], [ -122.480592970999979, 49.024274774000112 ], [ -122.480670678999914, 49.023245090000017 ], [ -122.481506665999945, 49.023272510000062 ], [ -122.481509245999973, 49.02323831000011 ], [ -122.483726308999934, 49.023310997000038 ], [ -122.483777687999918, 49.022629563000066 ], [ -122.484520433999961, 49.022653904000116 ], [ -122.484527462, 49.022560682000055 ], [ -122.487912289999926, 49.022671542000076 ], [ -122.488028198999956, 49.021132362000046 ], [ -122.488843255999882, 49.021159041000082 ], [ -122.488908557999977, 49.020291662000048 ], [ -122.488844731000015, 49.02028957300012 ], [ -122.488936364999972, 49.019072384000054 ], [ -122.488890527999942, 49.019070884000044 ], [ -122.488876190999989, 49.019261315000087 ], [ -122.488591998999979, 49.019252013 ], [ -122.488516730999962, 49.020251721000108 ], [ -122.48306153199999, 49.020073019000115 ], [ -122.483226571999978, 49.017884308000099 ], [ -122.482802314999915, 49.017870398000099 ], [ -122.482646776999957, 49.019932863000072 ], [ -122.480447734999927, 49.019860739000144 ], [ -122.48043119499998, 49.020079917 ], [ -122.479606803999985, 49.020052866000043 ], [ -122.479606059999981, 49.020062736000028 ], [ -122.47834235199997, 49.02002125900006 ], [ -122.478087582999976, 49.023394963000044 ], [ -122.475529411999943, 49.023310954000124 ], [ -122.475289041999943, 49.026491221000065 ], [ -122.47442293099995, 49.026462765000076 ], [ -122.474250226, 49.028746940000062 ], [ -122.47413701, 49.028743220000059 ], [ -122.474114544, 49.029040302000062 ], [ -122.474486911999975, 49.029052538000087 ], [ -122.474484224999955, 49.029088057000074 ], [ -122.475037033999939, 49.029106220000088 ], [ -122.47504728899996, 49.028970571000038 ], [ -122.476021774999964, 49.029002580000082 ], [ -122.476030254, 49.028890395000097 ], [ -122.477348584999945, 49.02893368400008 ], [ -122.477352199999942, 49.028885827000067 ], [ -122.477665302999981, 49.028896105000086 ] ], [ [ -122.466758447999979, 49.023070844000074 ], [ -122.466758570999971, 49.023059233000012 ], [ -122.466348298999904, 49.023057336000065 ], [ -122.466758447999979, 49.023070844000074 ] ], [ [ -122.463069460999961, 49.02268375500006 ], [ -122.463071411, 49.022502397000018 ], [ -122.461840436999964, 49.022496663 ], [ -122.461838855999986, 49.022643178000045 ], [ -122.463069460999961, 49.02268375500006 ] ], [ [ -122.466392130999978, 49.020358849000083 ], [ -122.466456071999971, 49.019514911000073 ], [ -122.464419520999954, 49.019447809000027 ], [ -122.46440642, 49.019620604000032 ], [ -122.462282521999924, 49.019550584000051 ], [ -122.462274020999956, 49.020339731000085 ], [ -122.464325555999963, 49.020349272000082 ], [ -122.464319764999956, 49.020888984000095 ], [ -122.464730075999952, 49.020890889000086 ], [ -122.464727183, 49.021160744000028 ], [ -122.465547810999908, 49.02116454800003 ], [ -122.465556477999939, 49.020354981000089 ], [ -122.466392130999978, 49.020358849000083 ] ], [ [ -122.47174865699999, 49.016335455000032 ], [ -122.47179431, 49.015731951000134 ], [ -122.471659780999971, 49.015727527000081 ], [ -122.471678919999974, 49.015474538000078 ], [ -122.471352868999972, 49.0154638120001 ], [ -122.471343658999942, 49.016333601000071 ], [ -122.47174865699999, 49.016335455000032 ] ], [ [ -122.482350138999934, 49.015395202000065 ], [ -122.482377357999894, 49.015034278000016 ], [ -122.481614552999972, 49.015030854000031 ], [ -122.481611019999932, 49.015370961000031 ], [ -122.482350138999934, 49.015395202000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.775585444118249", "sL_AssetLoss": "29294", "sL_BldgLoss": "22720", "sL_StrLoss": "10410", "sL_NStrLoss": "12310", "sL_ContLoss": "6574", "geom_point": "0101000020E610000066F4E5FD26A05EC02A7E422C51834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.501457470999966, 49.028308796000026 ], [ -122.501458933999942, 49.027714061000069 ], [ -122.501547074999976, 49.027712881000063 ], [ -122.50166385199999, 49.026156328000113 ], [ -122.501217925999939, 49.026141788000089 ], [ -122.501487775999934, 49.022544891000052 ], [ -122.502123714999954, 49.022565626000073 ], [ -122.502389434999927, 49.019022602000099 ], [ -122.50370915500001, 49.019065622000049 ], [ -122.50369511699995, 49.020028991000096 ], [ -122.503699793999971, 49.020367982000032 ], [ -122.503721288999927, 49.024572268000064 ], [ -122.503711401999951, 49.025155893000033 ], [ -122.503695504999911, 49.025247263000097 ], [ -122.503637633999958, 49.025579842000077 ], [ -122.50359131499999, 49.025846087000083 ], [ -122.503589109999979, 49.027243334000026 ], [ -122.503587905999936, 49.028005865000104 ], [ -122.50212645000002, 49.027958232000074 ], [ -122.502125000999953, 49.028330560000036 ], [ -122.50358731299994, 49.028378220000064 ], [ -122.503586199999944, 49.029078422000097 ], [ -122.503584556999897, 49.030112877000121 ], [ -122.503583379999952, 49.030859505000116 ], [ -122.503583298999956, 49.030912706000045 ], [ -122.502404143, 49.030950541000024 ], [ -122.500912522999954, 49.030998423000028 ], [ -122.500041773999939, 49.031026362000084 ], [ -122.50024871, 49.02826937800004 ], [ -122.501457470999966, 49.028308796000026 ] ], [ [ -122.501904706999937, 49.02832337800006 ], [ -122.501909774999888, 49.027951168000108 ], [ -122.501694714999957, 49.027944157000078 ], [ -122.501690059999973, 49.028316380000042 ], [ -122.501904706999937, 49.02832337800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7184750", "BldgCostT": "4955000", "sL_LossRatio": "0.772985480118031", "sL_AssetLoss": "76929", "sL_BldgLoss": "59465", "sL_StrLoss": "29295", "sL_NStrLoss": "30170", "sL_ContLoss": "17464", "geom_point": "0101000020E6100000E917BA4C6C9F5EC067E3B9A5728A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.48913765899999, 49.085123709000051 ], [ -122.489326433999935, 49.082619629000064 ], [ -122.488382987999898, 49.082588795000049 ], [ -122.488654157, 49.078992247 ], [ -122.49147986199992, 49.079084574000078 ], [ -122.49163164299992, 49.077069612000031 ], [ -122.492902844999961, 49.077111124000091 ], [ -122.492903195999972, 49.077159719000072 ], [ -122.49290665499997, 49.077635915000059 ], [ -122.492907710999958, 49.077779748000097 ], [ -122.492911563999954, 49.078310437 ], [ -122.492927967999947, 49.080568073000038 ], [ -122.492932514999922, 49.081193200000037 ], [ -122.49292520099999, 49.082025113000093 ], [ -122.492918173999897, 49.082825700000129 ], [ -122.492916622999971, 49.083005602000121 ], [ -122.492896936999927, 49.085246487000106 ], [ -122.48913765899999, 49.085123709000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95348417", "BldgCostT": "64756667", "sL_LossRatio": "0.747785262335848", "sL_AssetLoss": "1090987", "sL_BldgLoss": "815824", "sL_StrLoss": "406234", "sL_NStrLoss": "409590", "sL_ContLoss": "275163", "geom_point": "0101000020E6100000B5EFF6C54A9E5EC0C14AAA5BE2894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.460218578999971, 49.088214499000074 ], [ -122.460090029999918, 49.086698068 ], [ -122.465383197999984, 49.086872334000063 ], [ -122.465373254999975, 49.087003325000097 ], [ -122.465969388999966, 49.08702293400011 ], [ -122.46597262899999, 49.086980222000065 ], [ -122.467271852999943, 49.087022949000044 ], [ -122.467342787999939, 49.08608791500005 ], [ -122.466959586999948, 49.086075315000073 ], [ -122.467026972999975, 49.08518712500004 ], [ -122.466366420999947, 49.08516540100004 ], [ -122.466498508999948, 49.083424623000042 ], [ -122.464207330999926, 49.083349242000075 ], [ -122.464202358999941, 49.083414722000079 ], [ -122.461626434999943, 49.08332991200011 ], [ -122.461593872, 49.083758484000128 ], [ -122.459835953999971, 49.083700570000069 ], [ -122.45955817399998, 49.080422959 ], [ -122.459569623999954, 49.078781364000044 ], [ -122.459595401999962, 49.078550017000062 ], [ -122.459991195999962, 49.074995587000046 ], [ -122.460829526999959, 49.074992014000017 ], [ -122.468511650999986, 49.074958927000125 ], [ -122.468539045999989, 49.074958807000051 ], [ -122.470887610999966, 49.07494859500008 ], [ -122.47083703, 49.072076552000077 ], [ -122.470833353999964, 49.071869694000057 ], [ -122.470800116999911, 49.069980623000035 ], [ -122.47077838699991, 49.068747996000042 ], [ -122.470776481999906, 49.068105261000035 ], [ -122.470776149999949, 49.067794001000074 ], [ -122.470776026999943, 49.067677071000055 ], [ -122.470775757999917, 49.067452237000026 ], [ -122.47077576599996, 49.067434202000157 ], [ -122.470774146999972, 49.065984576000098 ], [ -122.470773723999955, 49.065612849000075 ], [ -122.470773304999966, 49.065383052000122 ], [ -122.470771040999978, 49.064148900000106 ], [ -122.47184531799995, 49.064148193000079 ], [ -122.471818594999931, 49.064772801000075 ], [ -122.471877105999937, 49.064849609000078 ], [ -122.471980990999938, 49.064886298000083 ], [ -122.475504697999952, 49.06487890000011 ], [ -122.476083026999959, 49.064877712000111 ], [ -122.476060985999979, 49.064137851000027 ], [ -122.476223994999927, 49.063340118000035 ], [ -122.476239132999964, 49.062905205000064 ], [ -122.477368218999928, 49.062902605000069 ], [ -122.477357085999955, 49.063411495000075 ], [ -122.47745755499993, 49.063530204000102 ], [ -122.478117335999983, 49.063817712000073 ], [ -122.47874726699996, 49.064119608000084 ], [ -122.479075076999948, 49.064363817000135 ], [ -122.48034476499997, 49.06498284700011 ], [ -122.48091629299995, 49.065261499000023 ], [ -122.481168692999972, 49.065361787000064 ], [ -122.481410898999954, 49.065416607000067 ], [ -122.481763414999961, 49.065406489000061 ], [ -122.481724381999967, 49.064164899000033 ], [ -122.481702400999936, 49.063423246000049 ], [ -122.481722414999922, 49.062705509000082 ], [ -122.481721003999937, 49.061980689000031 ], [ -122.48269491799999, 49.061972164000096 ], [ -122.486692905999945, 49.061937106000109 ], [ -122.490129553999978, 49.061905949000021 ], [ -122.490280078999888, 49.061904601000045 ], [ -122.491764891999935, 49.061891084000059 ], [ -122.492710040999938, 49.061811384000059 ], [ -122.492726005999955, 49.066021377000062 ], [ -122.492731791, 49.067551804000075 ], [ -122.492821755999927, 49.070433811000036 ], [ -122.490500416999964, 49.070357983000036 ], [ -122.490541271, 49.069815673000072 ], [ -122.490526350999943, 49.069815186 ], [ -122.490591362, 49.068952194000104 ], [ -122.489179558, 49.068906052000081 ], [ -122.489450584999958, 49.065309425000066 ], [ -122.489501480999962, 49.065311089000076 ], [ -122.489579936999988, 49.06426982600005 ], [ -122.489588810999933, 49.064270116000039 ], [ -122.489658413999962, 49.063346306 ], [ -122.489323906000024, 49.063335371000115 ], [ -122.489362306999979, 49.062825728000064 ], [ -122.489311636999957, 49.062824072000112 ], [ -122.489372031999963, 49.062022504000034 ], [ -122.489339385999955, 49.062022359000061 ], [ -122.48933662, 49.062292214000145 ], [ -122.48892596499995, 49.062290396000023 ], [ -122.488923197999938, 49.062560250000011 ], [ -122.482352702999933, 49.06253097000014 ], [ -122.482335886, 49.064150096000049 ], [ -122.48274655299997, 49.064151937000098 ], [ -122.482733528, 49.06540683900004 ], [ -122.483907501999965, 49.065445283000024 ], [ -122.483905215999954, 49.065475562000074 ], [ -122.485734340999954, 49.065535435000101 ], [ -122.48546302499993, 49.069132051000096 ], [ -122.485222618999956, 49.069124183000092 ], [ -122.485160557999961, 49.069946756000078 ], [ -122.483804054999922, 49.069902353000067 ], [ -122.483801002999883, 49.069942789000045 ], [ -122.478340008, 49.069763861000098 ], [ -122.47840753499996, 49.068870579000141 ], [ -122.478175155999978, 49.068862959000036 ], [ -122.478287997999956, 49.06737027300003 ], [ -122.477373899999989, 49.067366138000096 ], [ -122.477376729999932, 49.067096284000066 ], [ -122.476144650999956, 49.067090698000094 ], [ -122.476147487999953, 49.066820845000123 ], [ -122.475736798999918, 49.066818980000079 ], [ -122.475733959, 49.067088835000035 ], [ -122.475600566999944, 49.067088228000102 ], [ -122.475335194999928, 49.070595790000041 ], [ -122.474814130999945, 49.070578689000023 ], [ -122.474800584, 49.070757703000076 ], [ -122.474666630999948, 49.070753306000064 ], [ -122.474529671999946, 49.072563005000063 ], [ -122.474459981999985, 49.07256071700003 ], [ -122.47436533599992, 49.073811204000044 ], [ -122.473068881999964, 49.073768642000083 ], [ -122.473043058999963, 49.074109670000041 ], [ -122.47435558799999, 49.074152761000065 ], [ -122.474083344999912, 49.077749299000097 ], [ -122.474073333999954, 49.077748971000105 ], [ -122.474033170999959, 49.078279500000107 ], [ -122.473116644999948, 49.078249412000069 ], [ -122.473078341999951, 49.078755222000019 ], [ -122.47536113799994, 49.078830146000016 ], [ -122.475088943999964, 49.082426662000032 ], [ -122.474583958999972, 49.082410091 ], [ -122.474508675999985, 49.083404572000042 ], [ -122.474134367, 49.083392289000123 ], [ -122.474065587999945, 49.084300726000073 ], [ -122.474073821, 49.084300996000046 ], [ -122.474055006999961, 49.084549491000061 ], [ -122.474850131999943, 49.084575583000088 ], [ -122.474921153999944, 49.083637329000076 ], [ -122.48038376099997, 49.083816427000052 ], [ -122.480141143999987, 49.087026388000083 ], [ -122.482217394999935, 49.087094386000075 ], [ -122.482046062999927, 49.089362276000074 ], [ -122.478136997999968, 49.089354904000125 ], [ -122.475767228999928, 49.089357184000093 ], [ -122.470363508999966, 49.089362212000012 ], [ -122.465850852999921, 49.08935128300007 ], [ -122.464782595999935, 49.089348653000073 ], [ -122.463051794999942, 49.089344392000065 ], [ -122.460218578999971, 49.088214499000074 ] ], [ [ -122.462257291999947, 49.079690710000094 ], [ -122.462120297999888, 49.079672191000036 ], [ -122.462052297999918, 49.079699302000115 ], [ -122.462185800999976, 49.079871614000133 ], [ -122.462338479999971, 49.079800397000078 ], [ -122.462257291999947, 49.079690710000094 ] ], [ [ -122.467320415999893, 49.077001218000063 ], [ -122.46737722599994, 49.076252178000082 ], [ -122.466864899999933, 49.076235328000102 ], [ -122.466852174999929, 49.076403078000105 ], [ -122.465428452999944, 49.076356239000077 ], [ -122.465424416999923, 49.076409413000064 ], [ -122.464679195999949, 49.076384889000089 ], [ -122.464676687999912, 49.076417931000023 ], [ -122.46293, 49.076360428000037 ], [ -122.462922918999965, 49.07645367300006 ], [ -122.462821420999902, 49.07645033100011 ], [ -122.462790903999959, 49.076852159000062 ], [ -122.467320415999893, 49.077001218000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12130417", "BldgCostT": "6891667", "sL_LossRatio": "0.678910061677253", "sL_AssetLoss": "108630", "sL_BldgLoss": "73750", "sL_StrLoss": "35810", "sL_NStrLoss": "37940", "sL_ContLoss": "34880", "geom_point": "0101000020E6100000E3A3E6276C9F5EC04F35C4C25A894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.490637641999967, 49.074912375000082 ], [ -122.490644257999975, 49.074824574000054 ], [ -122.488923187999973, 49.074768330000012 ], [ -122.489194269, 49.071171737000078 ], [ -122.492848538999979, 49.071291125000066 ], [ -122.492864201999922, 49.071792488000035 ], [ -122.492882411999986, 49.074298400000067 ], [ -122.492884939999925, 49.074648288000077 ], [ -122.492887399999944, 49.074985854000097 ], [ -122.490637641999967, 49.074912375000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135712541", "BldgCostT": "83398048", "sL_LossRatio": "0.723241072369955", "sL_AssetLoss": "1251956", "sL_BldgLoss": "905466", "sL_StrLoss": "436166", "sL_NStrLoss": "469300", "sL_ContLoss": "346490", "geom_point": "0101000020E6100000237A958C4E9E5EC05AA3472103884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.471818594999931, 49.064772801000075 ], [ -122.47184531799995, 49.064148193000079 ], [ -122.470771040999978, 49.064148900000106 ], [ -122.470753804999902, 49.063075704000049 ], [ -122.470749788, 49.062882858000052 ], [ -122.470728555999983, 49.061866494000114 ], [ -122.47072161399997, 49.0615335930001 ], [ -122.470699678999978, 49.0604841970001 ], [ -122.472252891999986, 49.060483008000112 ], [ -122.473716229999951, 49.060470222000028 ], [ -122.474464188999917, 49.060463696000078 ], [ -122.475723902999931, 49.060453609000071 ], [ -122.476237318999935, 49.060449802000022 ], [ -122.47623550699997, 49.061287099000054 ], [ -122.476240095999941, 49.062130899000103 ], [ -122.476239766999981, 49.062402852000062 ], [ -122.476239132999964, 49.062905205000064 ], [ -122.476223994999927, 49.063340118000035 ], [ -122.476060985999979, 49.064137851000027 ], [ -122.476083026999959, 49.064877712000111 ], [ -122.475504697999952, 49.06487890000011 ], [ -122.471980990999938, 49.064886298000083 ], [ -122.471877105999937, 49.064849609000078 ], [ -122.471818594999931, 49.064772801000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72683533", "BldgCostT": "49025546", "sL_LossRatio": "0.768473614723991", "sL_AssetLoss": "765010", "sL_BldgLoss": "587890", "sL_StrLoss": "281010", "sL_NStrLoss": "306880", "sL_ContLoss": "177120", "geom_point": "0101000020E61000001996BBA6B29E5EC02F068B9A1A884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477357085999955, 49.063411495000075 ], [ -122.477368218999928, 49.062902605000069 ], [ -122.476239132999964, 49.062905205000064 ], [ -122.476239766999981, 49.062402852000062 ], [ -122.476240095999941, 49.062130899000103 ], [ -122.478556581999968, 49.062116795000058 ], [ -122.478870211999919, 49.062094599000019 ], [ -122.479249104999951, 49.062006083 ], [ -122.481721003999937, 49.061980689000031 ], [ -122.481722414999922, 49.062705509000082 ], [ -122.481702400999936, 49.063423246000049 ], [ -122.481724381999967, 49.064164899000033 ], [ -122.481763414999961, 49.065406489000061 ], [ -122.481410898999954, 49.065416607000067 ], [ -122.481168692999972, 49.065361787000064 ], [ -122.48091629299995, 49.065261499000023 ], [ -122.48034476499997, 49.06498284700011 ], [ -122.479075076999948, 49.064363817000135 ], [ -122.47874726699996, 49.064119608000084 ], [ -122.478117335999983, 49.063817712000073 ], [ -122.47745755499993, 49.063530204000102 ], [ -122.477357085999955, 49.063411495000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61252728", "BldgCostT": "39619857", "sL_LossRatio": "0.730940616569159", "sL_AssetLoss": "659780", "sL_BldgLoss": "482260", "sL_StrLoss": "231130", "sL_NStrLoss": "251130", "sL_ContLoss": "177520", "geom_point": "0101000020E6100000C459AE0A169F5EC05F62344478864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.47551681799996, 49.054778903000056 ], [ -122.47901319499999, 49.054770087000101 ], [ -122.479016191999946, 49.053951690000083 ], [ -122.479011313999976, 49.053111504000064 ], [ -122.479002018999935, 49.052202594000036 ], [ -122.479001914999913, 49.052193528000089 ], [ -122.478995878999982, 49.051287445000128 ], [ -122.481603119999974, 49.051273764000094 ], [ -122.481590790999974, 49.050385481000035 ], [ -122.481578173999978, 49.049465643000119 ], [ -122.48154956599997, 49.048575909000135 ], [ -122.481559905999958, 49.047714496000019 ], [ -122.481560805999933, 49.047251164000023 ], [ -122.481561019999972, 49.04713426200005 ], [ -122.481561333999977, 49.046981409000061 ], [ -122.481563256999976, 49.045983246000063 ], [ -122.481563500999968, 49.045855001000092 ], [ -122.484354917999966, 49.045842803000056 ], [ -122.487364847999942, 49.045828400000097 ], [ -122.491429516999972, 49.045808799000042 ], [ -122.492544903999899, 49.045803409000023 ], [ -122.492546937999961, 49.045943409000074 ], [ -122.492556427999929, 49.046591110000101 ], [ -122.492562870999961, 49.047031956000048 ], [ -122.492570877999952, 49.047580581000048 ], [ -122.492595845999986, 49.049289688000073 ], [ -122.492597414, 49.049396306000062 ], [ -122.492599553999966, 49.049550478000086 ], [ -122.492648490999983, 49.0530611840001 ], [ -122.492450186999989, 49.053063820000048 ], [ -122.492422830999928, 49.053064198000158 ], [ -122.489589101999954, 49.053101806000022 ], [ -122.486000091999955, 49.0531069950001 ], [ -122.485986380999989, 49.053833094000026 ], [ -122.48527027599999, 49.053839397000019 ], [ -122.485291185999984, 49.054614403000123 ], [ -122.485308910999947, 49.055504615000117 ], [ -122.48384390399994, 49.055536010000061 ], [ -122.48313018, 49.055557154000041 ], [ -122.482400011999985, 49.055578804000085 ], [ -122.481023697999916, 49.055594988000045 ], [ -122.47862848799997, 49.055605711000076 ], [ -122.47552689, 49.055604011000035 ], [ -122.47551681799996, 49.054778903000056 ] ], [ [ -122.486171006999925, 49.050673868000047 ], [ -122.486182129999932, 49.049594447000054 ], [ -122.484950480999942, 49.049588957 ], [ -122.484947695999978, 49.049858813000135 ], [ -122.48453714299994, 49.049856979000076 ], [ -122.484534353999919, 49.050126835000086 ], [ -122.484123800999981, 49.05012500100004 ], [ -122.484118215999985, 49.050664710000078 ], [ -122.483297099999945, 49.050661037000076 ], [ -122.483294303999969, 49.050930893000036 ], [ -122.482473183999971, 49.050927214000112 ], [ -122.482470382999935, 49.051197068000086 ], [ -122.48329150699999, 49.051200748000021 ], [ -122.483283116999957, 49.052010313000068 ], [ -122.482872547999975, 49.052008473000051 ], [ -122.482864151999948, 49.052818038000034 ], [ -122.48368530299993, 49.052821715000057 ], [ -122.48368809699997, 49.052551861000012 ], [ -122.484919819999973, 49.052557364000059 ], [ -122.484922604999937, 49.052287509000045 ], [ -122.485333178999952, 49.052289341000083 ], [ -122.485338750000011, 49.051749630000089 ], [ -122.48574931499999, 49.051751461000023 ], [ -122.485760447999922, 49.050672040000059 ], [ -122.486171006999925, 49.050673868000047 ] ], [ [ -122.490585751999959, 49.048804366000098 ], [ -122.490645862999941, 49.048006041000043 ], [ -122.490358285999932, 49.047996639000075 ], [ -122.490358719999932, 49.047990888000044 ], [ -122.489166644999955, 49.047951907000012 ], [ -122.489242002999944, 49.046951462 ], [ -122.487906561999964, 49.046907777000037 ], [ -122.487947545999958, 49.046363881000048 ], [ -122.487857587999926, 49.046363481000043 ], [ -122.487832643999923, 49.048792181000039 ], [ -122.490585751999959, 49.048804366000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74443166", "BldgCostT": "50396666", "sL_LossRatio": "0.759718810874905", "sL_AssetLoss": "708420", "sL_BldgLoss": "538200", "sL_StrLoss": "278540", "sL_NStrLoss": "259660", "sL_ContLoss": "170220", "geom_point": "0101000020E61000001E5E9D848E9E5EC029132B6175864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.478106388999933, 49.049479742000081 ], [ -122.481578173999978, 49.049465643000119 ], [ -122.481590790999974, 49.050385481000035 ], [ -122.481603119999974, 49.051273764000094 ], [ -122.478995878999982, 49.051287445000128 ], [ -122.473895291999909, 49.051291304000067 ], [ -122.472164684999981, 49.051291189000075 ], [ -122.472176404999942, 49.050414490000023 ], [ -122.474791622999987, 49.050403107000079 ], [ -122.474797989999956, 49.04948660200008 ], [ -122.475536469999923, 49.049490094000063 ], [ -122.478106388999933, 49.049479742000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "500612853", "BldgCostT": "324145088", "sL_LossRatio": "0.735158751128302", "sL_AssetLoss": "7618749", "sL_BldgLoss": "5600990", "sL_StrLoss": "2269860", "sL_NStrLoss": "3331130", "sL_ContLoss": "2017759", "geom_point": "0101000020E61000007F3FF34128CC5EC086F6A2EA15904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.191830897999978, 49.12738649000007 ], [ -123.191842288999936, 49.126716 ], [ -123.191842747999928, 49.126689001000038 ], [ -123.191844588999928, 49.126581329000011 ], [ -123.191845069999928, 49.126551260000078 ], [ -123.191847006000017, 49.126438216000032 ], [ -123.19131828499998, 49.126432757000089 ], [ -123.190304304, 49.126422308000059 ], [ -123.188788700999964, 49.126434899000039 ], [ -123.18719458599999, 49.126432000000108 ], [ -123.185766088999955, 49.126429802000047 ], [ -123.18576591, 49.125187405000084 ], [ -123.18424582399993, 49.125184602000076 ], [ -123.182722980999955, 49.125180791000091 ], [ -123.181201290999951, 49.125180488000105 ], [ -123.181200684999936, 49.125131351000086 ], [ -123.181187602999941, 49.124050499000106 ], [ -123.181188093999964, 49.123882907000088 ], [ -123.180947296999989, 49.123875273000095 ], [ -123.180686514999934, 49.123867001000114 ], [ -123.180276116999948, 49.123790500000013 ], [ -123.179814895999982, 49.123648705000043 ], [ -123.179451766999961, 49.123486962000051 ], [ -123.17927547499994, 49.123408435000037 ], [ -123.17916808499993, 49.123360604000069 ], [ -123.178800195999941, 49.123285207000109 ], [ -123.178496744999933, 49.123231344000096 ], [ -123.178472306999979, 49.123226996000056 ], [ -123.178270382999926, 49.123231573000091 ], [ -123.177624685999916, 49.123246201000036 ], [ -123.176955477000021, 49.123244832000047 ], [ -123.17650587699994, 49.123243891000122 ], [ -123.176149811999977, 49.123242607000066 ], [ -123.175928092999953, 49.123263799 ], [ -123.17571218399999, 49.123344691000099 ], [ -123.175492689999928, 49.123463184000073 ], [ -123.175391791999942, 49.123546205000061 ], [ -123.175340078999938, 49.123653799000067 ], [ -123.17534638099994, 49.124384603000117 ], [ -123.173656793999925, 49.122759980000062 ], [ -123.173363781999939, 49.122478239000095 ], [ -123.173320944999887, 49.122423522000055 ], [ -123.173421864999952, 49.122340583000096 ], [ -123.173768737, 49.122179045000038 ], [ -123.17400321, 49.122069866000082 ], [ -123.174413739000016, 49.121761677000116 ], [ -123.17443061499992, 49.121689565000054 ], [ -123.174811214999963, 49.121759006000033 ], [ -123.174812318999955, 49.122065204000101 ], [ -123.17495659099994, 49.12207843700002 ], [ -123.174956736999945, 49.122119723000075 ], [ -123.174134411999958, 49.122120966000061 ], [ -123.174136301999923, 49.122660690000046 ], [ -123.174445767999956, 49.122660222000086 ], [ -123.174336005, 49.122821486000127 ], [ -123.174501811999917, 49.122965306000012 ], [ -123.175077002999927, 49.123161910000093 ], [ -123.175502213999977, 49.123206003000114 ], [ -123.17593868499992, 49.122378508000054 ], [ -123.17609798899997, 49.122376598000081 ], [ -123.177652998, 49.122698994000139 ], [ -123.17837902, 49.122643402000122 ], [ -123.179462897999898, 49.122848496000074 ], [ -123.180724121999901, 49.123188902000095 ], [ -123.181164805999984, 49.123574904000037 ], [ -123.181505821999977, 49.123412504000044 ], [ -123.181767196999957, 49.123385505000108 ], [ -123.182398413999962, 49.123465200000055 ], [ -123.182602686999971, 49.123492309000099 ], [ -123.182712812999966, 49.123680287000063 ], [ -123.18302811699999, 49.123707305000117 ], [ -123.183069707999934, 49.123634706000061 ], [ -123.185882655999961, 49.124074136000125 ], [ -123.186661589, 49.124195804000145 ], [ -123.186648990999956, 49.124339694000099 ], [ -123.187225699999928, 49.124339706000065 ], [ -123.187814500999963, 49.124436497 ], [ -123.187813902999963, 49.124365303000076 ], [ -123.187952612999979, 49.124373895000112 ], [ -123.187966695999933, 49.124509209000081 ], [ -123.188774300999967, 49.124516292000102 ], [ -123.188775798999984, 49.124597497000153 ], [ -123.188638202999954, 49.124605985000066 ], [ -123.188637993999976, 49.124724194000109 ], [ -123.19017338399999, 49.124729905000045 ], [ -123.191200895999913, 49.124737005000028 ], [ -123.19144668899996, 49.124611710000089 ], [ -123.191944210999949, 49.124630617000051 ], [ -123.192119704000035, 49.124637286000066 ], [ -123.192235632999925, 49.124702674000069 ], [ -123.192235973999985, 49.124790875000066 ], [ -123.192391545999953, 49.12479061500008 ], [ -123.192738502999973, 49.124986310000075 ], [ -123.193149795999886, 49.124986292000081 ], [ -123.19372471199992, 49.12484099000006 ], [ -123.195113966999983, 49.124711035000054 ], [ -123.195114260999944, 49.124786046000075 ], [ -123.196758995999957, 49.124783254000057 ], [ -123.196758701999912, 49.124708745000085 ], [ -123.197465683999965, 49.124727104000087 ], [ -123.199235298999923, 49.124966300000089 ], [ -123.199638753, 49.125144528000106 ], [ -123.199639449999935, 49.125318035000134 ], [ -123.199971407999939, 49.125317461000051 ], [ -123.200622299999949, 49.125863605000085 ], [ -123.200876647999976, 49.126215316000142 ], [ -123.200877373999973, 49.126395339000062 ], [ -123.199643783999974, 49.126397479000047 ], [ -123.199644220999915, 49.126506504000133 ], [ -123.195538701999951, 49.126555690000096 ], [ -123.195513402999936, 49.126718097000037 ], [ -123.1959518099999, 49.127005805000024 ], [ -123.19740480199998, 49.127030010000091 ], [ -123.197831993999941, 49.127101187000058 ], [ -123.197419595999989, 49.127282092000023 ], [ -123.196228000999938, 49.127265003000076 ], [ -123.19570678499997, 49.12733909500011 ], [ -123.195693888999983, 49.127616795000094 ], [ -123.196025606999982, 49.127904482000083 ], [ -123.197067501999953, 49.128019785000113 ], [ -123.195503495999972, 49.128041196000069 ], [ -123.195500893999963, 49.128209029000033 ], [ -123.195493187999929, 49.12870631200007 ], [ -123.195741700999932, 49.129154898000074 ], [ -123.195742264999978, 49.129256443000031 ], [ -123.194518097, 49.129273690000055 ], [ -123.193483015000012, 49.129289904000046 ], [ -123.19337328099999, 49.129291500000065 ], [ -123.192441106999951, 49.12930509800006 ], [ -123.191819889999977, 49.129315893000104 ], [ -123.191820308999965, 49.1283554890001 ], [ -123.191830897999978, 49.12738649000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90094273", "BldgCostT": "59169159", "sL_LossRatio": "0.677890422869896", "sL_AssetLoss": "706151", "sL_BldgLoss": "478693", "sL_StrLoss": "154750", "sL_NStrLoss": "323943", "sL_ContLoss": "227458", "geom_point": "0101000020E6100000CFEDD24467CB5EC0DFD8C3C9438F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.182352248999962, 49.120633439000088 ], [ -123.181564818999959, 49.12049859900003 ], [ -123.181118440999953, 49.120536585000124 ], [ -123.18111827499996, 49.12049104400004 ], [ -123.18013885, 49.120492577000086 ], [ -123.17958990599999, 49.120032884000068 ], [ -123.17820419, 49.119990100000045 ], [ -123.17740808799999, 49.119730913000062 ], [ -123.176640121999938, 49.119624099000063 ], [ -123.175583807999985, 49.119085808000122 ], [ -123.174885933999988, 49.118889851000041 ], [ -123.174876700999917, 49.118214905000094 ], [ -123.174850991999961, 49.118068243000081 ], [ -123.174832082999956, 49.117955847000076 ], [ -123.174722449999933, 49.117632335000046 ], [ -123.174940962999941, 49.11763501500014 ], [ -123.174941550999975, 49.117801937000067 ], [ -123.175757053999959, 49.117800699000036 ], [ -123.176175527999973, 49.117968851000036 ], [ -123.176175885999953, 49.118069923000085 ], [ -123.176426120999963, 49.118069542000072 ], [ -123.176622904999959, 49.11814861100008 ], [ -123.177821804999979, 49.118460414000033 ], [ -123.177822329999941, 49.118607126000065 ], [ -123.178268724999924, 49.118606438000057 ], [ -123.178645124999932, 49.118752493000073 ], [ -123.178645566999961, 49.118875718000012 ], [ -123.178961430999934, 49.118875230000043 ], [ -123.179880265999969, 49.119231755000065 ], [ -123.17988092499999, 49.119413526000123 ], [ -123.18039669099997, 49.119412721000067 ], [ -123.18070355499998, 49.119509 ], [ -123.18070418399995, 49.119682103000095 ], [ -123.181252550999972, 49.119681244000091 ], [ -123.182350020999962, 49.120025556 ], [ -123.182352248999962, 49.120633439000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "371604417", "BldgCostT": "249401667", "sL_LossRatio": "0.812950858006084", "sL_AssetLoss": "2044158", "sL_BldgLoss": "1661800", "sL_StrLoss": "889790", "sL_NStrLoss": "772010", "sL_ContLoss": "382358", "geom_point": "0101000020E61000004DA36E0C66CB5EC01F8F956FE88F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.178270382999926, 49.123231573000091 ], [ -123.178472306999979, 49.123226996000056 ], [ -123.178496744999933, 49.123231344000096 ], [ -123.178800195999941, 49.123285207000109 ], [ -123.17916808499993, 49.123360604000069 ], [ -123.17927547499994, 49.123408435000037 ], [ -123.179451766999961, 49.123486962000051 ], [ -123.179814895999982, 49.123648705000043 ], [ -123.180276116999948, 49.123790500000013 ], [ -123.180686514999934, 49.123867001000114 ], [ -123.180947296999989, 49.123875273000095 ], [ -123.181188093999964, 49.123882907000088 ], [ -123.181187602999941, 49.124050499000106 ], [ -123.181200684999936, 49.125131351000086 ], [ -123.181201290999951, 49.125180488000105 ], [ -123.180731674999919, 49.125178264000098 ], [ -123.178802403999953, 49.125169 ], [ -123.177788994999915, 49.125164354000098 ], [ -123.176921450999913, 49.125160364000074 ], [ -123.176645198999921, 49.125159101000122 ], [ -123.175347702999929, 49.125153094000041 ], [ -123.175347421999959, 49.124978490000089 ], [ -123.175347228999911, 49.124879540000101 ], [ -123.17534638099994, 49.124384603000117 ], [ -123.175340078999938, 49.123653799000067 ], [ -123.175391791999942, 49.123546205000061 ], [ -123.175492689999928, 49.123463184000073 ], [ -123.17571218399999, 49.123344691000099 ], [ -123.175928092999953, 49.123263799 ], [ -123.176149811999977, 49.123242607000066 ], [ -123.17650587699994, 49.123243891000122 ], [ -123.176955477000021, 49.123244832000047 ], [ -123.177624685999916, 49.123246201000036 ], [ -123.178270382999926, 49.123231573000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94447136", "BldgCostT": "59747079", "sL_LossRatio": "0.731698525280154", "sL_AssetLoss": "943230", "sL_BldgLoss": "690160", "sL_StrLoss": "361990", "sL_NStrLoss": "328170", "sL_ContLoss": "253070", "geom_point": "0101000020E610000020F8314959CA5EC020429E55CD8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15888032499997, 49.12185542100012 ], [ -123.160335400999884, 49.121867740000091 ], [ -123.161160297999984, 49.121875512000059 ], [ -123.161993328999955, 49.121883331000049 ], [ -123.162192791999956, 49.12188519500004 ], [ -123.163369793999919, 49.12190010700008 ], [ -123.164550088999988, 49.121926707000092 ], [ -123.164529403999907, 49.122535089000081 ], [ -123.164524237999942, 49.1228269040001 ], [ -123.164514828999984, 49.123357420000055 ], [ -123.164484490999925, 49.125071801000033 ], [ -123.16421044599997, 49.125067654000063 ], [ -123.163859200999951, 49.125062347000117 ], [ -123.158878142, 49.124986949000061 ], [ -123.158879768999952, 49.123995986000047 ], [ -123.15888032499997, 49.12185542100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "987867876", "BldgCostT": "676666649", "sL_LossRatio": "0.853896516149512", "sL_AssetLoss": "5040400", "sL_BldgLoss": "4303980", "sL_StrLoss": "2451460", "sL_NStrLoss": "1852520", "sL_ContLoss": "736420", "geom_point": "0101000020E61000009E8445244ECA5EC0495DAE556D8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158838913999929, 49.117710140000021 ], [ -123.158955943999942, 49.117712713000053 ], [ -123.159010673999944, 49.117713961000028 ], [ -123.159175436999988, 49.117717648000074 ], [ -123.159276476999977, 49.117719896000054 ], [ -123.159329680999974, 49.117737341000094 ], [ -123.160654001999944, 49.118171610000068 ], [ -123.16064004499998, 49.118188360000012 ], [ -123.160590759999963, 49.118247428000117 ], [ -123.160500784, 49.118355367000063 ], [ -123.159732044999899, 49.119277409000063 ], [ -123.159662583999975, 49.119360690000128 ], [ -123.159690282999975, 49.119467797000013 ], [ -123.15971077399999, 49.119481031000113 ], [ -123.159790418999975, 49.119532595000059 ], [ -123.161091130999964, 49.119993152000077 ], [ -123.1612259199999, 49.120040860000081 ], [ -123.161339486, 49.12008107500003 ], [ -123.161401686999952, 49.12010311100007 ], [ -123.161428478999952, 49.120108878000039 ], [ -123.161455394999962, 49.120114691000119 ], [ -123.161980135999954, 49.120227950000093 ], [ -123.163512072999978, 49.120558619000136 ], [ -123.163816327999939, 49.120624278000065 ], [ -123.164368793000037, 49.120743492000052 ], [ -123.164570093999941, 49.120744292000047 ], [ -123.164565903999986, 49.120991813000089 ], [ -123.164557252999927, 49.121504593000061 ], [ -123.164550088999988, 49.121926707000092 ], [ -123.163369793999919, 49.12190010700008 ], [ -123.162192791999956, 49.12188519500004 ], [ -123.161993328999955, 49.121883331000049 ], [ -123.161160297999984, 49.121875512000059 ], [ -123.160335400999884, 49.121867740000091 ], [ -123.15888032499997, 49.12185542100012 ], [ -123.158853864999926, 49.119170021000123 ], [ -123.158847400999974, 49.118535591000054 ], [ -123.158838913999929, 49.117710140000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "373657811", "BldgCostT": "243148190", "sL_LossRatio": "0.7193142767116", "sL_AssetLoss": "4062280", "sL_BldgLoss": "2922056", "sL_StrLoss": "1599549", "sL_NStrLoss": "1322507", "sL_ContLoss": "1140224", "geom_point": "0101000020E6100000BA1CA53BDDC75EC0068442A9E28F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085440799, 49.129977416000045 ], [ -123.083313605999933, 49.128181005000044 ], [ -123.082515697999924, 49.127519117000062 ], [ -123.082353014999967, 49.127384171000081 ], [ -123.080784987999948, 49.126083388000069 ], [ -123.08086877199996, 49.126083266000109 ], [ -123.080972702999986, 49.126083131000023 ], [ -123.081170211, 49.126083666000049 ], [ -123.081526623999977, 49.1260846610001 ], [ -123.081860201999987, 49.126085589000098 ], [ -123.082856210999978, 49.126090581000071 ], [ -123.083171436, 49.126092143000022 ], [ -123.083747191999976, 49.126095008000043 ], [ -123.087132869999905, 49.126111825000088 ], [ -123.092202689999951, 49.126136805000115 ], [ -123.092205308999937, 49.124275503000113 ], [ -123.092218299999942, 49.121638640000086 ], [ -123.092222898999978, 49.120705609000055 ], [ -123.092235973999919, 49.120702799000085 ], [ -123.092947964999965, 49.120551199000026 ], [ -123.093030383999974, 49.120533647000101 ], [ -123.09312922799991, 49.120512603000115 ], [ -123.094550603999963, 49.120209912000114 ], [ -123.095154107999988, 49.120196503000088 ], [ -123.095332727999903, 49.120161861000092 ], [ -123.095643408999962, 49.12010159800009 ], [ -123.095799457999931, 49.120025183000038 ], [ -123.095988418999951, 49.119932640000059 ], [ -123.096579505999927, 49.119643195000023 ], [ -123.09662557099999, 49.119620646000051 ], [ -123.097080210999962, 49.11939799400006 ], [ -123.0974296, 49.11926462200006 ], [ -123.097838084999964, 49.119108673000085 ], [ -123.09876671399995, 49.118754136000057 ], [ -123.09880934099999, 49.118737893000073 ], [ -123.100041944999958, 49.118267295000059 ], [ -123.100056876999957, 49.118261588000095 ], [ -123.10070924899999, 49.118012525000054 ], [ -123.10091642899999, 49.117933421000053 ], [ -123.101023783999935, 49.117892417000078 ], [ -123.101475400999945, 49.117719991000122 ], [ -123.102022651999931, 49.117580419000085 ], [ -123.10264171099999, 49.117422487000063 ], [ -123.102850056999941, 49.117369345000021 ], [ -123.103280298999948, 49.117259587000099 ], [ -123.103843562999941, 49.117001403000131 ], [ -123.104299514999965, 49.116792402000051 ], [ -123.105240599999917, 49.116523201000106 ], [ -123.105497723999974, 49.116516905000083 ], [ -123.106310395999941, 49.116496983000062 ], [ -123.106611626999978, 49.116470158 ], [ -123.107842780999974, 49.11636048400004 ], [ -123.10793700899994, 49.116352089000067 ], [ -123.108089610999954, 49.116338499000044 ], [ -123.108746149999931, 49.116203905000113 ], [ -123.109039498999934, 49.116143752000106 ], [ -123.10920878599994, 49.116109058000177 ], [ -123.10929781599998, 49.116090798000101 ], [ -123.11026454099999, 49.115696138000033 ], [ -123.11047379099989, 49.115610710000041 ], [ -123.11131854199995, 49.115301187000021 ], [ -123.113379201999962, 49.114546136000087 ], [ -123.11346516399999, 49.114514635000084 ], [ -123.114300778999961, 49.114208426000054 ], [ -123.114446307999955, 49.114155100000119 ], [ -123.114458685999963, 49.114151219000078 ], [ -123.116664099999966, 49.113457797000109 ], [ -123.117154401999969, 49.11325739100009 ], [ -123.117470479999923, 49.113084802000031 ], [ -123.117572631999948, 49.11301662100005 ], [ -123.117853297999886, 49.112829300000037 ], [ -123.117968864999966, 49.112736992000109 ], [ -123.118284097999975, 49.112485143000079 ], [ -123.118686235999945, 49.112163905000045 ], [ -123.118838588999964, 49.11204220300008 ], [ -123.120811569999901, 49.111889144000038 ], [ -123.120775392999988, 49.112474046000095 ], [ -123.122303965999919, 49.112472436000083 ], [ -123.12230463, 49.112742299000082 ], [ -123.12243701099996, 49.112742158000088 ], [ -123.12247037499999, 49.112202397000047 ], [ -123.121892220999953, 49.11220300800008 ], [ -123.121891246999937, 49.111805369000066 ], [ -123.130933140999971, 49.111103349000153 ], [ -123.130937428999971, 49.112732831000066 ], [ -123.130526343999989, 49.112733297000062 ], [ -123.130527052999952, 49.113003159000129 ], [ -123.129704876999966, 49.113004085000043 ], [ -123.129705578999989, 49.113273948000014 ], [ -123.128883399999921, 49.113274868000119 ], [ -123.128884097999958, 49.113544731000069 ], [ -123.127864722999945, 49.113545865000056 ], [ -123.127732441999939, 49.115689734000085 ], [ -123.122311520000011, 49.115544815000106 ], [ -123.122311927999988, 49.115710786000143 ], [ -123.120256375999958, 49.11571294600008 ], [ -123.12025893699996, 49.116772741000105 ], [ -123.124652842999964, 49.116890306000045 ], [ -123.124607556999976, 49.117623399000088 ], [ -123.125131071999988, 49.117637394000035 ], [ -123.125128784999902, 49.117674427000104 ], [ -123.125194653999955, 49.117676187000093 ], [ -123.125194455, 49.117596738000096 ], [ -123.12642783099993, 49.11759539400002 ], [ -123.12642851599999, 49.117865257000048 ], [ -123.131362052999961, 49.117859749000068 ], [ -123.131365001999939, 49.118976132000043 ], [ -123.131368468999952, 49.120288508000058 ], [ -123.131779615999918, 49.120288040000048 ], [ -123.131780331999977, 49.120557902000037 ], [ -123.133013782999967, 49.120556487000115 ], [ -123.133014503, 49.120826350000151 ], [ -123.133308076999953, 49.120826010000023 ], [ -123.133391277999962, 49.119475108000167 ], [ -123.134505270999981, 49.119504793000011 ], [ -123.134537517999973, 49.118980992000047 ], [ -123.134540315999956, 49.118935541000106 ], [ -123.133009451999939, 49.118937315000068 ], [ -123.133007286999899, 49.118127727000108 ], [ -123.133449276999926, 49.11812721800009 ], [ -123.133473415999958, 49.117735247000056 ], [ -123.13331881, 49.117731126000116 ], [ -123.133540373999949, 49.114133296000048 ], [ -123.133569415999929, 49.114134071000088 ], [ -123.133650643999886, 49.112814895000064 ], [ -123.135459739999973, 49.112863101000102 ], [ -123.13545716599999, 49.111918026000112 ], [ -123.135868245999973, 49.111917543000111 ], [ -123.135866033999918, 49.111107956000104 ], [ -123.135454961, 49.111108439000098 ], [ -123.135454226999911, 49.110838576000027 ], [ -123.134323752999947, 49.110839897000048 ], [ -123.136795083999971, 49.110647804000031 ], [ -123.136808842999983, 49.110648391000048 ], [ -123.137509140999938, 49.110678768000078 ], [ -123.137512558999944, 49.111915597000063 ], [ -123.137101479999956, 49.111916085000068 ], [ -123.137102224999964, 49.112185947000093 ], [ -123.136783634, 49.112186326000035 ], [ -123.136691143999911, 49.112186435000062 ], [ -123.13669188399993, 49.112456297000158 ], [ -123.13678162099994, 49.112456191000078 ], [ -123.137102967999979, 49.112455810000014 ], [ -123.137103711999913, 49.112725672000074 ], [ -123.137514797999984, 49.112725184000062 ], [ -123.13751533, 49.112917837000126 ], [ -123.139118967999977, 49.112960513000147 ], [ -123.13911696299999, 49.112993127000053 ], [ -123.139159893999988, 49.112993075000098 ], [ -123.139163210999953, 49.11417912600006 ], [ -123.139906414, 49.114198894000076 ], [ -123.139834733999948, 49.115365502000081 ], [ -123.140101378999972, 49.115372593000146 ], [ -123.140008847999979, 49.116878589000081 ], [ -123.140144467999974, 49.11688219600012 ], [ -123.139999648999932, 49.119239178000058 ], [ -123.14000333300001, 49.12054822300005 ], [ -123.139592183999966, 49.120548721000041 ], [ -123.139592940999989, 49.12081858300013 ], [ -123.138903252999981, 49.120819414000081 ], [ -123.138860551, 49.121514065000042 ], [ -123.139975259999915, 49.121543712000054 ], [ -123.139816815999936, 49.124121991000038 ], [ -123.14005101399998, 49.124128218000038 ], [ -123.139918707999982, 49.12628112700002 ], [ -123.140091544999962, 49.12628572200007 ], [ -123.140037618999955, 49.127163211000095 ], [ -123.141666905999926, 49.127206516000101 ], [ -123.141666380999965, 49.127022900000085 ], [ -123.142077585999942, 49.12702239500009 ], [ -123.14207604399999, 49.126482672000094 ], [ -123.143309640999988, 49.126481148000082 ], [ -123.143308863999948, 49.126211286000078 ], [ -123.143720060999968, 49.126210775000096 ], [ -123.143719279999956, 49.125940913000079 ], [ -123.144130474999926, 49.125940401000058 ], [ -123.144129691999964, 49.125670539000033 ], [ -123.144154284999928, 49.125670508000063 ], [ -123.144358877999963, 49.122336284000035 ], [ -123.145353243, 49.122362679000062 ], [ -123.145356916999944, 49.122302792000085 ], [ -123.145230172999902, 49.122299428000133 ], [ -123.145233170999987, 49.122250534000059 ], [ -123.144018831999986, 49.122218297000138 ], [ -123.144076742999943, 49.121274552000038 ], [ -123.143988089999965, 49.121272199000103 ], [ -123.144208845999941, 49.11767436700012 ], [ -123.145305055999984, 49.117703469000048 ], [ -123.145347098999977, 49.117017937000107 ], [ -123.144046653999965, 49.116983411 ], [ -123.144084466999942, 49.11636710100003 ], [ -123.143545973999977, 49.116352800000058 ], [ -123.143553751999917, 49.116226055000055 ], [ -123.142046751999942, 49.116227918000035 ], [ -123.142042898999946, 49.114878607000065 ], [ -123.142454002999926, 49.114878100000034 ], [ -123.142451684999926, 49.114068514000046 ], [ -123.14204058699994, 49.11406902000013 ], [ -123.142038277999987, 49.113259434000106 ], [ -123.142860455999951, 49.113258419000054 ], [ -123.142859683, 49.112988557000129 ], [ -123.143270768999955, 49.112988047000115 ], [ -123.143269991999915, 49.112718184000137 ], [ -123.143681075999964, 49.112717674000059 ], [ -123.143680298999953, 49.112447811000116 ], [ -123.144502462999981, 49.112446786000106 ], [ -123.144501680999952, 49.112176923000078 ], [ -123.144912760999958, 49.112176408000089 ], [ -123.144911188999956, 49.111636683000079 ], [ -123.14450011199996, 49.111637199000015 ], [ -123.144498471999967, 49.111072604000043 ], [ -123.144693116999917, 49.111136205000051 ], [ -123.144931858999939, 49.11119311100007 ], [ -123.145084491999981, 49.111229506000058 ], [ -123.145522619999923, 49.111380540000042 ], [ -123.147293016, 49.111990804000058 ], [ -123.147740598, 49.112105385000106 ], [ -123.147807651999955, 49.112123385000146 ], [ -123.148092608999946, 49.112199840000059 ], [ -123.148508501999956, 49.112311395000091 ], [ -123.148604626999941, 49.11235255400009 ], [ -123.149024649999916, 49.112532394 ], [ -123.149024663999924, 49.112536948000105 ], [ -123.149035988999913, 49.112537248000081 ], [ -123.149717381999963, 49.112828990000018 ], [ -123.151473195999969, 49.113784604000067 ], [ -123.152123801999963, 49.114319802000139 ], [ -123.152462189999966, 49.114496401000082 ], [ -123.152553572999949, 49.114528032000102 ], [ -123.153085381999972, 49.114712152000045 ], [ -123.153606454999988, 49.114892584000152 ], [ -123.153997559999979, 49.115028011000092 ], [ -123.154496746999925, 49.1152178 ], [ -123.155563514999955, 49.115755044000124 ], [ -123.156187609999989, 49.116001497000099 ], [ -123.15620596399999, 49.116008746000034 ], [ -123.156872249999964, 49.116271879000045 ], [ -123.156940735999981, 49.11629890600004 ], [ -123.157214579999973, 49.116407051000131 ], [ -123.15737768399994, 49.116471452 ], [ -123.157531824000017, 49.116532327000066 ], [ -123.158103028999975, 49.116709607000054 ], [ -123.158838913999929, 49.117710140000021 ], [ -123.158847400999974, 49.118535591000054 ], [ -123.158853864999926, 49.119170021000123 ], [ -123.15888032499997, 49.12185542100012 ], [ -123.158879768999952, 49.123995986000047 ], [ -123.158878142, 49.124986949000061 ], [ -123.158882791999957, 49.126257293 ], [ -123.153098596999925, 49.126255802000095 ], [ -123.147803136999968, 49.125980496000125 ], [ -123.147803071999988, 49.126237993000039 ], [ -123.14780286899996, 49.128291434000062 ], [ -123.147802456999969, 49.132357362000029 ], [ -123.147802335000023, 49.133513713000127 ], [ -123.145658307999938, 49.133515430000102 ], [ -123.143764955999984, 49.133517434000048 ], [ -123.142188098999952, 49.133517900000122 ], [ -123.136584800999984, 49.13352389500011 ], [ -123.134900079999937, 49.133517791000031 ], [ -123.130455615999921, 49.133502896000067 ], [ -123.124862717999974, 49.133482724000046 ], [ -123.12187219499998, 49.133471796000038 ], [ -123.1191422039999, 49.133466286000065 ], [ -123.117847889999922, 49.13346229900003 ], [ -123.115635895999986, 49.133455295000019 ], [ -123.114284020999946, 49.133451499000081 ], [ -123.113012998, 49.133446209000148 ], [ -123.11097221199995, 49.133440011000097 ], [ -123.108983262999942, 49.133431314000049 ], [ -123.106926396999981, 49.133422308000043 ], [ -123.103242169999959, 49.133385401000062 ], [ -123.102855509999983, 49.133385166000039 ], [ -123.102726717999985, 49.133385093000065 ], [ -123.09961609500003, 49.13338318600006 ], [ -123.09944469899996, 49.133384795000097 ], [ -123.099284278999932, 49.133430997000104 ], [ -123.096801441999958, 49.133417161000082 ], [ -123.095179737999956, 49.133412135000057 ], [ -123.092134802, 49.133404634 ], [ -123.089168944999969, 49.133439864000117 ], [ -123.088778634999983, 49.133444526000041 ], [ -123.088598661999967, 49.133445073000111 ], [ -123.088360706999978, 49.133445817000066 ], [ -123.087181277999946, 49.133466150000082 ], [ -123.087013874999954, 49.133470621000129 ], [ -123.086880815999962, 49.133473305000059 ], [ -123.086592888999931, 49.133477202000073 ], [ -123.086593692999884, 49.133427694000027 ], [ -123.086604075999944, 49.132776627000034 ], [ -123.086611494999914, 49.132309457000098 ], [ -123.086619085999956, 49.131833717000056 ], [ -123.086554198999963, 49.13144731000007 ], [ -123.08642918799994, 49.131058297000074 ], [ -123.086293305999945, 49.130800605000069 ], [ -123.086058001999973, 49.130532900000112 ], [ -123.085440799, 49.129977416000045 ] ], [ [ -123.10633081499995, 49.12921975200009 ], [ -123.111026838999962, 49.129215333000033 ], [ -123.111084478999913, 49.12828688900008 ], [ -123.111143953999914, 49.128288487000077 ], [ -123.111270705999942, 49.126246608000059 ], [ -123.110824282999957, 49.12624703700007 ], [ -123.110822478999978, 49.125437451000067 ], [ -123.111398060999974, 49.125436897000057 ], [ -123.111448786, 49.124619683000084 ], [ -123.11093615899999, 49.124605916000057 ], [ -123.111159485999949, 49.121008170000039 ], [ -123.111437749999936, 49.12101564400011 ], [ -123.111471402999953, 49.120473376000085 ], [ -123.111934541999943, 49.120485814000041 ], [ -123.112045770999913, 49.118693217000015 ], [ -123.111175233, 49.118669838000123 ], [ -123.111285142999947, 49.116898882000115 ], [ -123.111123538999934, 49.116894541000036 ], [ -123.111146059999925, 49.116531665000089 ], [ -123.110802637999953, 49.116531995000095 ], [ -123.110803238999949, 49.116801858000038 ], [ -123.11012053599994, 49.116802511000074 ], [ -123.110002099999988, 49.118710057000079 ], [ -123.104533191999977, 49.118562963000059 ], [ -123.10454165799996, 49.118426877000054 ], [ -123.104228716999927, 49.118427159000063 ], [ -123.104229283999985, 49.118697022 ], [ -123.103818148999963, 49.11869739100009 ], [ -123.103825470999965, 49.122205602000079 ], [ -123.104236635999882, 49.122205232000077 ], [ -123.104237766999958, 49.122744957000037 ], [ -123.104648934999929, 49.122744585000099 ], [ -123.104649503999923, 49.123014448000113 ], [ -123.105471844999897, 49.123013700000051 ], [ -123.105472417999977, 49.123283561000051 ], [ -123.106705937999919, 49.123282428000053 ], [ -123.106705357999928, 49.123012566000078 ], [ -123.107116527999963, 49.123012185000015 ], [ -123.107115366999949, 49.122472460000019 ], [ -123.108760031999921, 49.122470922000048 ], [ -123.10876121299998, 49.1230106470001 ], [ -123.109172383999947, 49.123010259000061 ], [ -123.109172975999982, 49.123280121000015 ], [ -123.110406495999896, 49.12327894800007 ], [ -123.110408891999924, 49.124358397000051 ], [ -123.109997709999917, 49.124358790000066 ], [ -123.109998305999937, 49.124628652000084 ], [ -123.109587121999965, 49.124629042000073 ], [ -123.109589500999959, 49.125708491000076 ], [ -123.109263442999989, 49.125708800000041 ], [ -123.109162855999926, 49.127328071000107 ], [ -123.109181862999947, 49.12732805200001 ], [ -123.109183639999969, 49.128137639000101 ], [ -123.108361212999981, 49.12813841300003 ], [ -123.108361802, 49.128408275000098 ], [ -123.10645571299996, 49.128410049000124 ], [ -123.10642922599996, 49.128836015000097 ], [ -123.106354800999938, 49.128834013000137 ], [ -123.10633081499995, 49.12921975200009 ] ], [ [ -123.123970170999897, 49.121247184000026 ], [ -123.123971164999972, 49.121646003000123 ], [ -123.122326527999974, 49.121647757000083 ], [ -123.122325444999944, 49.121207522000091 ], [ -123.120617671999938, 49.121161817000072 ], [ -123.120608671999946, 49.121307292000012 ], [ -123.12039724899995, 49.121301632 ], [ -123.120377680999951, 49.121617897000114 ], [ -123.11959737899997, 49.121597003000041 ], [ -123.119563177999979, 49.122149614000058 ], [ -123.11879557499995, 49.122129055000094 ], [ -123.118760376999958, 49.122697632 ], [ -123.118479238999925, 49.122690101000032 ], [ -123.118451887999953, 49.123131839000067 ], [ -123.116787723999963, 49.123087244000068 ], [ -123.11672802799994, 49.124050846000081 ], [ -123.11696236599991, 49.124057127000057 ], [ -123.116944100999945, 49.124351962000063 ], [ -123.119043710999932, 49.124349817000052 ], [ -123.119045002999968, 49.12488954100008 ], [ -123.119456188999919, 49.124889116000055 ], [ -123.119457485999945, 49.125428840000026 ], [ -123.120279866999923, 49.125427986000112 ], [ -123.120280519999966, 49.125697848000129 ], [ -123.121102906999951, 49.125696989000083 ], [ -123.121103562999963, 49.125966850000061 ], [ -123.124393124999969, 49.125963352000063 ], [ -123.124393799999922, 49.126233215000035 ], [ -123.126860982, 49.126230530000072 ], [ -123.126860294999929, 49.125960668000118 ], [ -123.127682683999979, 49.125959762000015 ], [ -123.127681990999946, 49.125689900000104 ], [ -123.128093183999965, 49.125689444000024 ], [ -123.12809040399999, 49.124609996000082 ], [ -123.128501587999935, 49.124609539000055 ], [ -123.128500889999913, 49.124339678000055 ], [ -123.133116688999976, 49.124334449000074 ], [ -123.13319435899993, 49.123073566000102 ], [ -123.133169677999916, 49.123072908000069 ], [ -123.133258207999958, 49.121635656000102 ], [ -123.13178319099994, 49.1216373500001 ], [ -123.13178390599991, 49.121907212000089 ], [ -123.131372744999979, 49.121907681000067 ], [ -123.131374170999933, 49.122447405000059 ], [ -123.12972950799994, 49.122449264000068 ], [ -123.129730210999952, 49.122719126000028 ], [ -123.129319043999899, 49.122719587000084 ], [ -123.129319743999986, 49.12298945 ], [ -123.128908573999951, 49.122989910000101 ], [ -123.128909972999978, 49.123529633000039 ], [ -123.127676448999949, 49.123531005000139 ], [ -123.127675062999913, 49.122991280000086 ], [ -123.127263892999977, 49.12299173400001 ], [ -123.127263201999966, 49.122721872000071 ], [ -123.126852032999977, 49.122722325000055 ], [ -123.126851344999977, 49.122452462000112 ], [ -123.125617846999972, 49.122453811000085 ], [ -123.125616484999952, 49.121914087000086 ], [ -123.124794159999936, 49.121914979000103 ], [ -123.124793482999976, 49.121645117000071 ], [ -123.124382324999971, 49.121645561000015 ], [ -123.124381355999944, 49.121258179000044 ], [ -123.123970170999897, 49.121247184000026 ] ], [ [ -123.131798207999964, 49.127304450000103 ], [ -123.131798925999988, 49.1275743120001 ], [ -123.129742883999981, 49.127576641000097 ], [ -123.129742178999933, 49.127306779000079 ], [ -123.128919766999971, 49.127307700000081 ], [ -123.128920467999976, 49.127577562000084 ], [ -123.126042007999956, 49.12758074000002 ], [ -123.12604474499993, 49.128660187000044 ], [ -123.12563352799998, 49.12866063600012 ], [ -123.12563557299994, 49.12947022000003 ], [ -123.129747812999966, 49.129465673 ], [ -123.129748515999935, 49.129735535000137 ], [ -123.133038325999962, 49.129731790000029 ], [ -123.133037602999963, 49.129461929000087 ], [ -123.13327359699997, 49.129461657000085 ], [ -123.133406598999954, 49.127302603000018 ], [ -123.131798207999964, 49.127304450000103 ] ], [ [ -123.118644761999974, 49.129477616 ], [ -123.118644118999924, 49.12920775500006 ], [ -123.118527713999924, 49.129207874000031 ], [ -123.118511002999966, 49.129477755000025 ], [ -123.118644761999974, 49.129477616 ] ], [ [ -123.15538000799998, 49.120528552000088 ], [ -123.155422714999972, 49.119829785000029 ], [ -123.154083953999987, 49.119794369000068 ], [ -123.15410547, 49.119442455000069 ], [ -123.152680224999955, 49.119404733000088 ], [ -123.152724410999937, 49.11868242100013 ], [ -123.152611565999905, 49.118679433000104 ], [ -123.152689147999951, 49.117411186000027 ], [ -123.151243396999988, 49.117372901000081 ], [ -123.151256823999987, 49.117153504000044 ], [ -123.151033156999929, 49.117147579000068 ], [ -123.15102466799999, 49.117286262000064 ], [ -123.150808755999975, 49.11728054200006 ], [ -123.150713227, 49.118841141000097 ], [ -123.150919889999926, 49.118846616000056 ], [ -123.150885283999955, 49.119411958000029 ], [ -123.151012019999897, 49.11941531500004 ], [ -123.150979810999942, 49.119941517000072 ], [ -123.15133814099994, 49.119951008000037 ], [ -123.151219868999959, 49.121883391000026 ], [ -123.151519640999979, 49.121882998000068 ], [ -123.151518817999914, 49.121613136000072 ], [ -123.152341134999986, 49.121612054000138 ], [ -123.152340308999953, 49.121342192000014 ], [ -123.153573777999938, 49.121340558000021 ], [ -123.153572944999951, 49.121070695000071 ], [ -123.154395253999979, 49.121069599000066 ], [ -123.15439441499997, 49.120799737000063 ], [ -123.155216718999924, 49.120798635000078 ], [ -123.155215876999975, 49.120528773000039 ], [ -123.15538000799998, 49.120528552000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54770333", "BldgCostT": "36773333", "sL_LossRatio": "0.77169322529698", "sL_AssetLoss": "543891", "sL_BldgLoss": "419717", "sL_StrLoss": "231040", "sL_NStrLoss": "188677", "sL_ContLoss": "124174", "geom_point": "0101000020E61000009BA6DFF008C45EC03F004E94299B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059449901, 49.212371492000081 ], [ -123.059439583999961, 49.212165797000033 ], [ -123.059417623999977, 49.212083386000046 ], [ -123.059390813999954, 49.211982794000086 ], [ -123.059380801999964, 49.211945287000049 ], [ -123.059172812999961, 49.211610802000131 ], [ -123.059702090999963, 49.211465801000038 ], [ -123.060094065999962, 49.211418346000094 ], [ -123.060108391999947, 49.211416599000124 ], [ -123.060296813999955, 49.211393796000081 ], [ -123.063679695999966, 49.211455410000042 ], [ -123.063796682999921, 49.211491899000066 ], [ -123.064266310999955, 49.21164455300007 ], [ -123.064694978999938, 49.211783903000068 ], [ -123.065399181999936, 49.212012760000029 ], [ -123.066050379999979, 49.212224395000078 ], [ -123.06605527899994, 49.213233489000075 ], [ -123.066045488000029, 49.213606110000065 ], [ -123.065344864999958, 49.213604048000057 ], [ -123.064710392, 49.213602188000038 ], [ -123.064697622999958, 49.213239593000068 ], [ -123.064687303999918, 49.212947583000073 ], [ -123.064619599999929, 49.212867414000073 ], [ -123.064339403999938, 49.212740796000112 ], [ -123.063407500000011, 49.212438911000035 ], [ -123.062835098999955, 49.212398104000087 ], [ -123.060057541999981, 49.212376295000148 ], [ -123.059449901, 49.212371492000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82402842", "BldgCostT": "53599118", "sL_LossRatio": "0.722306371473294", "sL_AssetLoss": "909099", "sL_BldgLoss": "656648", "sL_StrLoss": "321857", "sL_NStrLoss": "334791", "sL_ContLoss": "252451", "geom_point": "0101000020E61000009E7E7125D2C35EC0AC0BC226FC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056666906999951, 49.211396490000084 ], [ -123.056869303999974, 49.210290205000085 ], [ -123.05691878899998, 49.210019707000079 ], [ -123.057035592999981, 49.209758014000094 ], [ -123.059353814999952, 49.20955558800015 ], [ -123.06006071399996, 49.209595609000083 ], [ -123.060548794999974, 49.209701473000088 ], [ -123.060649512999959, 49.209723308000044 ], [ -123.060912445, 49.209815742000089 ], [ -123.061649251999967, 49.210074763000087 ], [ -123.062130111999977, 49.21024380400015 ], [ -123.06302289599995, 49.210556508000082 ], [ -123.06344151699993, 49.210705116000057 ], [ -123.063481283, 49.210719243000121 ], [ -123.063663095999971, 49.210783798000072 ], [ -123.064143476999945, 49.211129289000048 ], [ -123.064332496999924, 49.211265998000066 ], [ -123.064694978999938, 49.211783903000068 ], [ -123.064266310999955, 49.21164455300007 ], [ -123.063796682999921, 49.211491899000066 ], [ -123.063679695999966, 49.211455410000042 ], [ -123.060296813999955, 49.211393796000081 ], [ -123.060108391999947, 49.211416599000124 ], [ -123.060094065999962, 49.211418346000094 ], [ -123.059702090999963, 49.211465801000038 ], [ -123.059172812999961, 49.211610802000131 ], [ -123.05872119499999, 49.211808408000138 ], [ -123.057876381999932, 49.212450186000105 ], [ -123.057410322999928, 49.212225812000035 ], [ -123.057107977999976, 49.21212290100005 ], [ -123.056523992999985, 49.2120277040001 ], [ -123.056666906999951, 49.211396490000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85261446", "BldgCostT": "52770268", "sL_LossRatio": "0.672517334702989", "sL_AssetLoss": "1012420", "sL_BldgLoss": "680870", "sL_StrLoss": "312560", "sL_NStrLoss": "368310", "sL_ContLoss": "331550", "geom_point": "0101000020E6100000005BB97251C45EC0DBB34A5D709B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.06605527899994, 49.213233489000075 ], [ -123.066050379999979, 49.212224395000078 ], [ -123.066783852999919, 49.212475158000089 ], [ -123.0678625, 49.212843904000053 ], [ -123.068356813999955, 49.213014991000129 ], [ -123.068747311, 49.21319768500009 ], [ -123.069247722999947, 49.213532 ], [ -123.069556490999986, 49.213835898000056 ], [ -123.069961500999938, 49.214333313000111 ], [ -123.070043396999935, 49.214558083000085 ], [ -123.069301048999975, 49.214550736000021 ], [ -123.06853199899993, 49.214543107000061 ], [ -123.068521184999923, 49.215018145000052 ], [ -123.068494101999988, 49.216208605000077 ], [ -123.066708094999981, 49.216185683000035 ], [ -123.065984585999956, 49.216176402000059 ], [ -123.065967615999966, 49.215316506000072 ], [ -123.066021805999981, 49.214502695000149 ], [ -123.066045488000029, 49.213606110000065 ], [ -123.06605527899994, 49.213233489000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111736250", "BldgCostT": "70280000", "sL_LossRatio": "0.727042767221601", "sL_AssetLoss": "1019940", "sL_BldgLoss": "741540", "sL_StrLoss": "388440", "sL_NStrLoss": "353100", "sL_ContLoss": "278400", "geom_point": "0101000020E61000006865255A70C45EC081C51B78B99B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069159096999954, 49.218281291000032 ], [ -123.06889119799996, 49.217920198000058 ], [ -123.067797494999951, 49.21806880000009 ], [ -123.066683461999929, 49.21805727100007 ], [ -123.065932183999976, 49.218049502000028 ], [ -123.065943582, 49.217636818000059 ], [ -123.065956700999948, 49.217162001000084 ], [ -123.065971769000015, 49.216618293000096 ], [ -123.065984585999956, 49.216176402000059 ], [ -123.066708094999981, 49.216185683000035 ], [ -123.068494101999988, 49.216208605000077 ], [ -123.068521184999923, 49.215018145000052 ], [ -123.06853199899993, 49.214543107000061 ], [ -123.069301048999975, 49.214550736000021 ], [ -123.070043396999935, 49.214558083000085 ], [ -123.070660310999969, 49.214564221000103 ], [ -123.071374170999917, 49.214571324000076 ], [ -123.072027992, 49.214577803000076 ], [ -123.072013212999934, 49.215422292000035 ], [ -123.071993139999947, 49.215878723000117 ], [ -123.07197520899993, 49.216286105000023 ], [ -123.071900667999955, 49.216783955000082 ], [ -123.071899282999937, 49.216793010000032 ], [ -123.071719784, 49.217214483000085 ], [ -123.071710803999977, 49.217235612000131 ], [ -123.071628283999971, 49.217367766000095 ], [ -123.071619007999985, 49.217382584000077 ], [ -123.071551030999956, 49.21749137100003 ], [ -123.071533782999978, 49.21751900700005 ], [ -123.071159982999944, 49.217919353000084 ], [ -123.071011217999953, 49.218078706000028 ], [ -123.070468916999943, 49.218501683000106 ], [ -123.070347174999952, 49.21859660300008 ], [ -123.070327288999948, 49.21860665 ], [ -123.069695111999977, 49.218925691 ], [ -123.069473024999951, 49.218704403000039 ], [ -123.069159096999954, 49.218281291000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79174540", "BldgCostT": "52660373", "sL_LossRatio": "0.7791207677283", "sL_AssetLoss": "660963", "sL_BldgLoss": "514970", "sL_StrLoss": "286510", "sL_NStrLoss": "228460", "sL_ContLoss": "145993", "geom_point": "0101000020E6100000BED500C66FC45EC08D2A0D46369B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.066050379999979, 49.212224395000078 ], [ -123.066072213999973, 49.211423195000066 ], [ -123.066092403999932, 49.210625602000043 ], [ -123.066846781999956, 49.21063089600009 ], [ -123.068575803999948, 49.211219309000072 ], [ -123.06889722399994, 49.21145688900004 ], [ -123.06901238399999, 49.211541991000068 ], [ -123.069137096999924, 49.211914688000071 ], [ -123.071326973999987, 49.211951160000062 ], [ -123.072046026999885, 49.211963099000094 ], [ -123.072041208999934, 49.212866506000097 ], [ -123.072036873999977, 49.213212517000038 ], [ -123.072032555999968, 49.21355642200006 ], [ -123.072030286999961, 49.213736401000055 ], [ -123.072027992, 49.214577803000076 ], [ -123.071374170999917, 49.214571324000076 ], [ -123.070660310999969, 49.214564221000103 ], [ -123.070043396999935, 49.214558083000085 ], [ -123.069961500999938, 49.214333313000111 ], [ -123.069556490999986, 49.213835898000056 ], [ -123.069247722999947, 49.213532 ], [ -123.068747311, 49.21319768500009 ], [ -123.068356813999955, 49.213014991000129 ], [ -123.0678625, 49.212843904000053 ], [ -123.066783852999919, 49.212475158000089 ], [ -123.066050379999979, 49.212224395000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60349666", "BldgCostT": "38521666", "sL_LossRatio": "0.719452152138603", "sL_AssetLoss": "709248", "sL_BldgLoss": "510270", "sL_StrLoss": "233770", "sL_NStrLoss": "276500", "sL_ContLoss": "198978", "geom_point": "0101000020E6100000CEA067D438C55EC09F497A9C129C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.08159571499999, 49.21816579600015 ], [ -123.083060795999984, 49.218198201000078 ], [ -123.083059259999956, 49.218606621000077 ], [ -123.08305770500003, 49.219013385000068 ], [ -123.083040962999959, 49.219453629000107 ], [ -123.083034494999964, 49.219623494000082 ], [ -123.083030587999986, 49.219837798000107 ], [ -123.083022811999982, 49.220074037000138 ], [ -123.083007901, 49.22052629500012 ], [ -123.080925957999966, 49.220494914000078 ], [ -123.080228409000014, 49.220484381000091 ], [ -123.080255753999893, 49.220049618000132 ], [ -123.080256903999938, 49.220031112000058 ], [ -123.080229507999945, 49.219746610000058 ], [ -123.080165592999904, 49.219607095000114 ], [ -123.080107485999918, 49.219285707000026 ], [ -123.080076309999967, 49.218571714000113 ], [ -123.080058008, 49.218152087000085 ], [ -123.08159571499999, 49.21816579600015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191168144", "BldgCostT": "127801523", "sL_LossRatio": "0.782316324609929", "sL_AssetLoss": "1801017", "sL_BldgLoss": "1408965", "sL_StrLoss": "658540", "sL_NStrLoss": "750425", "sL_ContLoss": "392052", "geom_point": "0101000020E6100000C12DCC00DFC45EC0B5140CBE1B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079303461999984, 49.218145330000034 ], [ -123.080058008, 49.218152087000085 ], [ -123.080076309999967, 49.218571714000113 ], [ -123.080107485999918, 49.219285707000026 ], [ -123.080165592999904, 49.219607095000114 ], [ -123.079263350999952, 49.219592262000063 ], [ -123.078894620999975, 49.219586193000062 ], [ -123.078533693999958, 49.219584506000103 ], [ -123.077272279999931, 49.219585396000063 ], [ -123.076228093999973, 49.219566249000145 ], [ -123.07614400099996, 49.219564691000066 ], [ -123.076126002999928, 49.22003207900012 ], [ -123.076111397, 49.22041059400005 ], [ -123.07605510099999, 49.221783809000073 ], [ -123.075381162999975, 49.221777332000052 ], [ -123.074670981999972, 49.221770501000037 ], [ -123.073994222999957, 49.22176409900004 ], [ -123.073295096999971, 49.221757500000081 ], [ -123.073343009999959, 49.220388681000074 ], [ -123.073343218000019, 49.21994909900009 ], [ -123.073961508999957, 49.219568600000066 ], [ -123.073975802999897, 49.21901500400007 ], [ -123.073988226000012, 49.218567766000085 ], [ -123.074000703999943, 49.21811928500005 ], [ -123.075500402999964, 49.218124907000039 ], [ -123.076267981999976, 49.218128793000062 ], [ -123.077053597999964, 49.218132802000113 ], [ -123.077778531999982, 49.218135624000055 ], [ -123.078567009999958, 49.218138709000129 ], [ -123.079303461999984, 49.218145330000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67739833", "BldgCostT": "46453333", "sL_LossRatio": "0.735922315048747", "sL_AssetLoss": "1290340", "sL_BldgLoss": "949590", "sL_StrLoss": "419460", "sL_NStrLoss": "530130", "sL_ContLoss": "340750", "geom_point": "0101000020E61000002EF24EB253CA5EC04FF302AA879F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1571386789999, 49.246772202000081 ], [ -123.157975484999966, 49.246361015000041 ], [ -123.158218677999983, 49.246179094000063 ], [ -123.15920268099994, 49.245583502000038 ], [ -123.159874100999943, 49.245338203000138 ], [ -123.160427599999963, 49.245224310000062 ], [ -123.160467903, 49.245216002000099 ], [ -123.160702626999964, 49.245150096000025 ], [ -123.161310292999985, 49.245094094000144 ], [ -123.16231649599996, 49.245098906000067 ], [ -123.163047406999965, 49.245157892000115 ], [ -123.163061196999962, 49.245159005000104 ], [ -123.163268698999957, 49.245112212000102 ], [ -123.163377505999961, 49.2450178080001 ], [ -123.163583811999928, 49.245147596000031 ], [ -123.164035937, 49.245331222000026 ], [ -123.165157288, 49.245786604000074 ], [ -123.165416493999956, 49.246481997000053 ], [ -123.165406896, 49.246645426000043 ], [ -123.165382392999959, 49.247062086000085 ], [ -123.164461505, 49.247076599000131 ], [ -123.16406830399994, 49.247083407000041 ], [ -123.162942298999951, 49.247262693000053 ], [ -123.162746190999911, 49.246987408000024 ], [ -123.162587216999938, 49.246882610000043 ], [ -123.16254819699999, 49.246856885000092 ], [ -123.162154218999987, 49.246720502000095 ], [ -123.161680297999979, 49.246610682000103 ], [ -123.160978810999893, 49.246887488 ], [ -123.160443303999983, 49.247098783000091 ], [ -123.159769527999941, 49.247361271000024 ], [ -123.159191311999948, 49.24758649200006 ], [ -123.158621118, 49.24780845300009 ], [ -123.158044714999917, 49.248032792000068 ], [ -123.15793989, 49.247884105000033 ], [ -123.1571386789999, 49.246772202000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106892834", "BldgCostT": "70828334", "sL_LossRatio": "0.722204624643649", "sL_AssetLoss": "1831060", "sL_BldgLoss": "1322400", "sL_StrLoss": "587350", "sL_NStrLoss": "735050", "sL_ContLoss": "508660", "geom_point": "0101000020E610000055DADAA916CA5EC07C64FF7E299F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154823878999963, 49.245732896000135 ], [ -123.154884381999977, 49.24465678100006 ], [ -123.15489598799999, 49.244450188000087 ], [ -123.154949548999952, 49.243496650000061 ], [ -123.15497501099999, 49.243043697000083 ], [ -123.15469700599999, 49.243055285000054 ], [ -123.153440995000011, 49.243025701000057 ], [ -123.153462057999931, 49.242569369000087 ], [ -123.153482990999947, 49.242116203000116 ], [ -123.153546110999926, 49.241781879000044 ], [ -123.153720360999927, 49.241652777000176 ], [ -123.154452282999969, 49.241110393000106 ], [ -123.154569905999949, 49.241009991000112 ], [ -123.154801676999966, 49.240812132000066 ], [ -123.155278225999965, 49.240405307000053 ], [ -123.15529289499996, 49.240254295000078 ], [ -123.15602432299994, 49.240262795000014 ], [ -123.156617003999898, 49.240269383000047 ], [ -123.157718590999963, 49.240284990000127 ], [ -123.159721821999966, 49.240308901000049 ], [ -123.159703665, 49.240798312000081 ], [ -123.159685976999981, 49.241275393000109 ], [ -123.159668466999932, 49.241743164000084 ], [ -123.159651197999978, 49.242203994000093 ], [ -123.16013819599999, 49.242210488000069 ], [ -123.160172591999967, 49.242367312000091 ], [ -123.160279986999967, 49.242473690000047 ], [ -123.161625222999945, 49.243449438 ], [ -123.162215400999912, 49.243877507 ], [ -123.162635686999977, 49.244122808000029 ], [ -123.162799489999912, 49.244161283000039 ], [ -123.162866166999891, 49.244301676000092 ], [ -123.163022142999964, 49.244630072000064 ], [ -123.16307331099992, 49.244737805000049 ], [ -123.163377505999961, 49.2450178080001 ], [ -123.163268698999957, 49.245112212000102 ], [ -123.163061196999962, 49.245159005000104 ], [ -123.163047406999965, 49.245157892000115 ], [ -123.16231649599996, 49.245098906000067 ], [ -123.161310292999985, 49.245094094000144 ], [ -123.160702626999964, 49.245150096000025 ], [ -123.160467903, 49.245216002000099 ], [ -123.160427599999963, 49.245224310000062 ], [ -123.159874100999943, 49.245338203000138 ], [ -123.15920268099994, 49.245583502000038 ], [ -123.158218677999983, 49.246179094000063 ], [ -123.157975484999966, 49.246361015000041 ], [ -123.1571386789999, 49.246772202000081 ], [ -123.156208196999941, 49.246964698000092 ], [ -123.154756412999987, 49.246946208000118 ], [ -123.154823878999963, 49.245732896000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107715000", "BldgCostT": "75045000", "sL_LossRatio": "0.829497855940141", "sL_AssetLoss": "744149", "sL_BldgLoss": "617270", "sL_StrLoss": "300620", "sL_NStrLoss": "316650", "sL_ContLoss": "126879", "geom_point": "0101000020E61000007F4A6B5F02C55EC09E8D326E2C9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.07953424899992, 49.242507702000083 ], [ -123.08020991299999, 49.242497688000121 ], [ -123.080163720999948, 49.244092304000048 ], [ -123.08014900199997, 49.24460119600009 ], [ -123.079510343, 49.244592044000044 ], [ -123.07887990899998, 49.24458298400004 ], [ -123.078227976999983, 49.244577096000107 ], [ -123.077603481999944, 49.244570992000121 ], [ -123.076941565999974, 49.244559025000036 ], [ -123.076310017999944, 49.244547598000082 ], [ -123.076338393999933, 49.243683599000079 ], [ -123.076359998, 49.243057304000111 ], [ -123.076376603999947, 49.24250920000005 ], [ -123.076964558999975, 49.24250942300003 ], [ -123.07766050399999, 49.242509706000128 ], [ -123.078255943000016, 49.242512872000127 ], [ -123.07894130699998, 49.242516500000121 ], [ -123.07953424899992, 49.242507702000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231194583", "BldgCostT": "157998333", "sL_LossRatio": "0.805385583474374", "sL_AssetLoss": "1843440", "sL_BldgLoss": "1484680", "sL_StrLoss": "699120", "sL_NStrLoss": "785560", "sL_ContLoss": "358760", "geom_point": "0101000020E61000005D8CCB0237C55EC0D102CD4A079F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.082372698999961, 49.240248405000123 ], [ -123.082859921999969, 49.24025260100008 ], [ -123.08284278299999, 49.240646307000091 ], [ -123.082779792999986, 49.242093847 ], [ -123.082761285999965, 49.242518997000083 ], [ -123.082746304999944, 49.24461560800011 ], [ -123.082051577999962, 49.244610344000108 ], [ -123.081357216999962, 49.244605092000043 ], [ -123.080732575999946, 49.244603085000065 ], [ -123.08014900199997, 49.24460119600009 ], [ -123.080163720999948, 49.244092304000048 ], [ -123.08020991299999, 49.242497688000121 ], [ -123.080199995000015, 49.24208558200008 ], [ -123.080165183999895, 49.24063780100002 ], [ -123.0801556, 49.240239692000095 ], [ -123.081244299999952, 49.240242211000051 ], [ -123.08155198299994, 49.240241500000103 ], [ -123.082372698999961, 49.240248405000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64389083", "BldgCostT": "42308333", "sL_LossRatio": "0.730080896856847", "sL_AssetLoss": "736617", "sL_BldgLoss": "537790", "sL_StrLoss": "256140", "sL_NStrLoss": "281650", "sL_ContLoss": "198827", "geom_point": "0101000020E61000008B036C3062C55EC0D1595EA0C19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.085808312999959, 49.247529512000057 ], [ -123.087759699999978, 49.247552512000084 ], [ -123.08774818199997, 49.248061839000101 ], [ -123.087735701999975, 49.248613900000102 ], [ -123.085847298999937, 49.248592609000127 ], [ -123.083892509999927, 49.248578500000093 ], [ -123.083308554999945, 49.248574266000034 ], [ -123.082663902999954, 49.248569601000092 ], [ -123.081908923999947, 49.248563610000126 ], [ -123.080035092999964, 49.24854979200007 ], [ -123.080056445999944, 49.248121754000046 ], [ -123.08007566399999, 49.247736768000081 ], [ -123.080076998999957, 49.247709594000128 ], [ -123.081921396999959, 49.247709989000107 ], [ -123.082681821000037, 49.247717101000035 ], [ -123.083306899999954, 49.247722576000129 ], [ -123.0839144, 49.247727898000058 ], [ -123.083921506999971, 49.247505601000064 ], [ -123.085808312999959, 49.247529512000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111080334", "BldgCostT": "73193334", "sL_LossRatio": "0.752166017328139", "sL_AssetLoss": "1249990", "sL_BldgLoss": "940200", "sL_StrLoss": "477990", "sL_NStrLoss": "462210", "sL_ContLoss": "309790", "geom_point": "0101000020E61000003D49E3E5E3C45EC045139CB8A49F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073433019999982, 49.246399094 ], [ -123.073447296999959, 49.245967815000078 ], [ -123.073466383000024, 49.245391098000013 ], [ -123.07412470899996, 49.245395835000082 ], [ -123.074468143999951, 49.245398313000081 ], [ -123.075539671999977, 49.245406044000084 ], [ -123.075875443999934, 49.245408456000042 ], [ -123.075938069999964, 49.245408912000123 ], [ -123.076270714999978, 49.245411310000023 ], [ -123.076236282999986, 49.246437286000067 ], [ -123.076860023999956, 49.246445769000069 ], [ -123.080108399999915, 49.246489911000033 ], [ -123.080095313999934, 49.246988587000018 ], [ -123.080089657999977, 49.247204390000093 ], [ -123.080080923999901, 49.247538595000051 ], [ -123.080076998999957, 49.247709594000128 ], [ -123.08007566399999, 49.247736768000081 ], [ -123.080056445999944, 49.248121754000046 ], [ -123.080035092999964, 49.24854979200007 ], [ -123.079391702999942, 49.248544577000089 ], [ -123.078088697999945, 49.248534061000022 ], [ -123.076178231999947, 49.248513801000058 ], [ -123.07597097799993, 49.248511797000099 ], [ -123.075586, 49.24850947200013 ], [ -123.0749454799999, 49.248505614000031 ], [ -123.074569036999961, 49.248503652000096 ], [ -123.07383752600002, 49.248499887000079 ], [ -123.073366575999955, 49.248497912000033 ], [ -123.073379672999977, 49.248081503000037 ], [ -123.073386991999925, 49.247848102000063 ], [ -123.073419843999943, 49.246813166000024 ], [ -123.073433019999982, 49.246399094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157397903", "BldgCostT": "104192308", "sL_LossRatio": "0.734200034549463", "sL_AssetLoss": "1169338", "sL_BldgLoss": "858528", "sL_StrLoss": "411818", "sL_NStrLoss": "446710", "sL_ContLoss": "310810", "geom_point": "0101000020E6100000C3F096B3D0C35EC0211E58A7ADA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058134716999959, 49.263651596000045 ], [ -123.05814630499998, 49.263172897000054 ], [ -123.057383461999962, 49.263169518000097 ], [ -123.056569612999937, 49.263165910000048 ], [ -123.056572699999919, 49.262965085000125 ], [ -123.0565913, 49.262131505000099 ], [ -123.05707350099999, 49.262217606000092 ], [ -123.057350258999975, 49.26222401600014 ], [ -123.057396743999945, 49.262225089000026 ], [ -123.058157197999961, 49.262242707000084 ], [ -123.058275419999987, 49.262243261000044 ], [ -123.062030111999917, 49.262260806000029 ], [ -123.06202887299996, 49.262750333000071 ], [ -123.062027723, 49.263211086000119 ], [ -123.062013819999919, 49.263686295000078 ], [ -123.062000675999954, 49.264135411000026 ], [ -123.058122602999944, 49.264153190000094 ], [ -123.058134716999959, 49.263651596000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297508251", "BldgCostT": "204140001", "sL_LossRatio": "0.816402707307563", "sL_AssetLoss": "1172087", "sL_BldgLoss": "956895", "sL_StrLoss": "547820", "sL_NStrLoss": "409075", "sL_ContLoss": "215192", "geom_point": "0101000020E610000067117ACB8FC35EC0EA1240F706A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055513033999929, 49.26202272000009 ], [ -123.055846616999986, 49.262024703000101 ], [ -123.055860143999936, 49.262026651000042 ], [ -123.0565913, 49.262131505000099 ], [ -123.056572699999919, 49.262965085000125 ], [ -123.056569612999937, 49.263165910000048 ], [ -123.05660118400003, 49.263880196000123 ], [ -123.056596988999942, 49.264141315000124 ], [ -123.056585100999953, 49.264784091000074 ], [ -123.056588312999935, 49.264992307000036 ], [ -123.056586213999978, 49.265451594000069 ], [ -123.05658488200001, 49.265739817000117 ], [ -123.05658589, 49.26589749699999 ], [ -123.056587078999939, 49.266342141000052 ], [ -123.056588088999931, 49.266729011000045 ], [ -123.056625138999905, 49.267176987000063 ], [ -123.056631826999961, 49.267257704000095 ], [ -123.05666352, 49.26764079499999 ], [ -123.056642356999973, 49.268151583000098 ], [ -123.056624874999969, 49.268573836000044 ], [ -123.056614447999962, 49.26907714400005 ], [ -123.056607578999959, 49.26940925300007 ], [ -123.056603946999985, 49.269553280000096 ], [ -123.054669838, 49.269610398000054 ], [ -123.054693377999953, 49.269412894000119 ], [ -123.054698542999972, 49.268969676000026 ], [ -123.054704195999989, 49.2684845140001 ], [ -123.054703741999901, 49.268034136000011 ], [ -123.054703295999929, 49.267569296000033 ], [ -123.054705955999964, 49.267152552000049 ], [ -123.054708988999934, 49.266678599000045 ], [ -123.054708533999985, 49.266235103000035 ], [ -123.05470801, 49.26572009700002 ], [ -123.054710495999942, 49.265245638000053 ], [ -123.054713012999983, 49.264776300000122 ], [ -123.054712889999976, 49.26434610000004 ], [ -123.054712798999944, 49.263871 ], [ -123.054713392999929, 49.263428629000053 ], [ -123.054714007999948, 49.262963896000045 ], [ -123.054710054999958, 49.262529003000033 ], [ -123.054705398999957, 49.262017894000117 ], [ -123.054980449999945, 49.262019544000069 ], [ -123.055513033999929, 49.26202272000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159293008", "BldgCostT": "106320855", "sL_LossRatio": "0.729959339603344", "sL_AssetLoss": "1359062", "sL_BldgLoss": "992060", "sL_StrLoss": "463820", "sL_NStrLoss": "528240", "sL_ContLoss": "367002", "geom_point": "0101000020E6100000B7AD98D7B2C35EC0C2A9724E2AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.056642356999973, 49.268151583000098 ], [ -123.05666352, 49.26764079499999 ], [ -123.056631826999961, 49.267257704000095 ], [ -123.056625138999905, 49.267176987000063 ], [ -123.056588088999931, 49.266729011000045 ], [ -123.056587078999939, 49.266342141000052 ], [ -123.05658589, 49.26589749699999 ], [ -123.05658488200001, 49.265739817000117 ], [ -123.056586213999978, 49.265451594000069 ], [ -123.056588312999935, 49.264992307000036 ], [ -123.056585100999953, 49.264784091000074 ], [ -123.056596988999942, 49.264141315000124 ], [ -123.05660118400003, 49.263880196000123 ], [ -123.056569612999937, 49.263165910000048 ], [ -123.057383461999962, 49.263169518000097 ], [ -123.05814630499998, 49.263172897000054 ], [ -123.058134716999959, 49.263651596000045 ], [ -123.058122602999944, 49.264153190000094 ], [ -123.058115011, 49.264551229000091 ], [ -123.05810670799994, 49.264988582000051 ], [ -123.058095812999952, 49.265468791000082 ], [ -123.058086080999942, 49.265897899000059 ], [ -123.058077808999911, 49.266332181000088 ], [ -123.058069511999975, 49.266766708000091 ], [ -123.058057896999941, 49.26725859700008 ], [ -123.05805598299996, 49.267339523000061 ], [ -123.05804749, 49.267698294000049 ], [ -123.059994705999941, 49.267714509 ], [ -123.059982991999945, 49.268175076000077 ], [ -123.059971693999969, 49.268619989000122 ], [ -123.059957542999953, 49.269101378000087 ], [ -123.059945488999972, 49.269510202000149 ], [ -123.058015898999912, 49.269496310000051 ], [ -123.057873087999965, 49.26949512700002 ], [ -123.057689235999959, 49.269555858000047 ], [ -123.056603946999985, 49.269553280000096 ], [ -123.056607578999959, 49.26940925300007 ], [ -123.056614447999962, 49.26907714400005 ], [ -123.056624874999969, 49.268573836000044 ], [ -123.056642356999973, 49.268151583000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166476145", "BldgCostT": "107591524", "sL_LossRatio": "0.714059850208698", "sL_AssetLoss": "1628666", "sL_BldgLoss": "1162965", "sL_StrLoss": "508420", "sL_NStrLoss": "654545", "sL_ContLoss": "465701", "geom_point": "0101000020E610000024918EBCBDC15EC0DF80C79EDA9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.028142791999954, 49.234744593000038 ], [ -123.028143582999945, 49.234130306000111 ], [ -123.027582719999913, 49.234129958000075 ], [ -123.027008188999943, 49.234129599000063 ], [ -123.02592080299992, 49.234129306000114 ], [ -123.025398573999922, 49.234128625000054 ], [ -123.024822499999985, 49.234127889000128 ], [ -123.024835229999951, 49.232981312000057 ], [ -123.024838021999955, 49.232729466000059 ], [ -123.024843501999896, 49.232237616000099 ], [ -123.025077592999978, 49.232226014000027 ], [ -123.025931392999951, 49.232185593000075 ], [ -123.026482, 49.232163005000146 ], [ -123.02814329499995, 49.232098007000111 ], [ -123.029267191999963, 49.232041589000069 ], [ -123.02926499699997, 49.232422331000073 ], [ -123.029264047999987, 49.232584223000053 ], [ -123.029255708999969, 49.234023086000079 ], [ -123.029266591999928, 49.234818789000045 ], [ -123.028738501999925, 49.234768209000066 ], [ -123.02872433899995, 49.234767648000087 ], [ -123.028142791999954, 49.234744593000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "947391561", "BldgCostT": "654083190", "sL_LossRatio": "0.898890070567774", "sL_AssetLoss": "1701910", "sL_BldgLoss": "1529830", "sL_StrLoss": "912380", "sL_NStrLoss": "617450", "sL_ContLoss": "172080", "geom_point": "0101000020E6100000CD86F378B3C15EC07F4402FC099E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.026865185999938, 49.23595443600005 ], [ -123.026193018999919, 49.23564572 ], [ -123.026150536999964, 49.235626341000092 ], [ -123.024812323999953, 49.235015773000065 ], [ -123.024173750999964, 49.234648524000058 ], [ -123.02408940499997, 49.234600023999988 ], [ -123.023611282, 49.234324990000076 ], [ -123.023456091999918, 49.234325295000076 ], [ -123.02347648599999, 49.232294507000049 ], [ -123.023600382999973, 49.232288896000078 ], [ -123.023614202999966, 49.23228832500007 ], [ -123.024843501999896, 49.232237616000099 ], [ -123.024838021999955, 49.232729466000059 ], [ -123.024835229999951, 49.232981312000057 ], [ -123.024822499999985, 49.234127889000128 ], [ -123.025398573999922, 49.234128625000054 ], [ -123.02592080299992, 49.234129306000114 ], [ -123.027008188999943, 49.234129599000063 ], [ -123.027582719999913, 49.234129958000075 ], [ -123.028143582999945, 49.234130306000111 ], [ -123.028142791999954, 49.234744593000038 ], [ -123.02872433899995, 49.234767648000087 ], [ -123.028738501999925, 49.234768209000066 ], [ -123.029266591999928, 49.234818789000045 ], [ -123.029948788999945, 49.23499339800005 ], [ -123.03045599299999, 49.235177712000052 ], [ -123.030450086999949, 49.235527003000101 ], [ -123.030324182999919, 49.235654261000079 ], [ -123.02987039, 49.236112842000118 ], [ -123.029760198999952, 49.236224208000053 ], [ -123.02887781499993, 49.235852995000066 ], [ -123.028801952999927, 49.235923287000041 ], [ -123.028202006, 49.236479314000043 ], [ -123.028137709999953, 49.236538893000095 ], [ -123.02735067899999, 49.236177414000053 ], [ -123.026865185999938, 49.23595443600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18326500", "BldgCostT": "10195000", "sL_LossRatio": "0.629136505906179", "sL_AssetLoss": "206394", "sL_BldgLoss": "129850", "sL_StrLoss": "39570", "sL_NStrLoss": "90280", "sL_ContLoss": "76544", "geom_point": "0101000020E61000003F6B4CC2E4C75EC087E3B7F0D5A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123597975999971, 49.273404203000084 ], [ -123.12268267899999, 49.272832199000085 ], [ -123.121398191999944, 49.271987304000035 ], [ -123.120633487999925, 49.271040026000087 ], [ -123.12063310399995, 49.27088175800003 ], [ -123.122148651999908, 49.27088016600004 ], [ -123.122282836999958, 49.270936913000071 ], [ -123.122283362999951, 49.271149880000074 ], [ -123.123108163999959, 49.271149003000048 ], [ -123.123108834999954, 49.2714188590001 ], [ -123.123933640999908, 49.271417977000041 ], [ -123.123934317999954, 49.27168783200004 ], [ -123.12481068699995, 49.271686888000055 ], [ -123.124902182999946, 49.271767569000104 ], [ -123.125170885999978, 49.271977317000037 ], [ -123.125621410999884, 49.272349010000056 ], [ -123.125813220999987, 49.273031134000078 ], [ -123.125894807999941, 49.273038498000084 ], [ -123.125875134999916, 49.273106440000042 ], [ -123.125854502999985, 49.273177896000092 ], [ -123.125594680999939, 49.273157495000135 ], [ -123.125265584999966, 49.273168324999986 ], [ -123.125171992999952, 49.273171409 ], [ -123.124649498999986, 49.273244894000108 ], [ -123.123736991999962, 49.273489901000069 ], [ -123.123685855999895, 49.273458339000101 ], [ -123.123597975999971, 49.273404203000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "693507523", "BldgCostT": "460449159", "sL_LossRatio": "0.77701095720956", "sL_AssetLoss": "9716890", "sL_BldgLoss": "7550130", "sL_StrLoss": "4044620", "sL_NStrLoss": "3505510", "sL_ContLoss": "2166760", "geom_point": "0101000020E6100000A9ADB7514DC85EC057A2CB1FFCA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133776697999977, 49.276011496000123 ], [ -123.132758885000015, 49.275360198000065 ], [ -123.133671383999982, 49.274758508000097 ], [ -123.133164861999958, 49.274425597000167 ], [ -123.132828659999944, 49.274204607000101 ], [ -123.132744479999957, 49.274149296000111 ], [ -123.132580516999923, 49.274257140000081 ], [ -123.13181631099998, 49.274759614000082 ], [ -123.131081027999969, 49.27524917300007 ], [ -123.130476350999984, 49.275651756000109 ], [ -123.130380405999972, 49.275714038000068 ], [ -123.130281497999945, 49.275651893000067 ], [ -123.13017539799999, 49.275585208000052 ], [ -123.129631486999955, 49.275270806000066 ], [ -123.129409496999969, 49.275127098000056 ], [ -123.129291687999981, 49.275054597000114 ], [ -123.129085590999978, 49.274920285000128 ], [ -123.128558103999964, 49.274585605000027 ], [ -123.128322791999949, 49.274435304000107 ], [ -123.127892107999941, 49.274138826000055 ], [ -123.12740949499999, 49.273806604000107 ], [ -123.127033708999988, 49.273551602000047 ], [ -123.12681675599994, 49.273444052000066 ], [ -123.126597773999919, 49.273335491000083 ], [ -123.126161587999974, 49.273212198000124 ], [ -123.125854502999985, 49.273177896000092 ], [ -123.125875134999916, 49.273106440000042 ], [ -123.125894807999941, 49.273038498000084 ], [ -123.125813220999987, 49.273031134000078 ], [ -123.125621410999884, 49.272349010000056 ], [ -123.125170885999978, 49.271977317000037 ], [ -123.124902182999946, 49.271767569000104 ], [ -123.12481068699995, 49.271686888000055 ], [ -123.125171530999978, 49.271686498000115 ], [ -123.125169483999969, 49.270876933000118 ], [ -123.125581880999917, 49.270876486000134 ], [ -123.125581195999985, 49.270606631000092 ], [ -123.126405987999959, 49.270605731000096 ], [ -123.126405688999924, 49.270488401000136 ], [ -123.12722378399999, 49.270540497000063 ], [ -123.127643446999983, 49.270709194000105 ], [ -123.127643871999979, 49.270874226000124 ], [ -123.127972366999956, 49.270873863000098 ], [ -123.128006200999934, 49.270898411000054 ], [ -123.12805642799999, 49.270934855000064 ], [ -123.128057665999933, 49.271413480000078 ], [ -123.128715090999933, 49.271412749000092 ], [ -123.12922057599998, 49.271779495000033 ], [ -123.129770697999902, 49.271518886000074 ], [ -123.130031205999941, 49.271517507000056 ], [ -123.130120214999963, 49.271614787000061 ], [ -123.130120389999959, 49.271681031000085 ], [ -123.130132106999923, 49.271681018000102 ], [ -123.130045192999944, 49.271788090000072 ], [ -123.130815914999971, 49.272209596000039 ], [ -123.13083010299999, 49.272353513000041 ], [ -123.130680589999912, 49.272470294000101 ], [ -123.130844206999967, 49.272596987000078 ], [ -123.13146340299997, 49.272560006000027 ], [ -123.131821186999943, 49.272775095000057 ], [ -123.132370904000013, 49.272856204000064 ], [ -123.132489389999989, 49.272933013000035 ], [ -123.132508495999957, 49.272945397000093 ], [ -123.132472139999976, 49.272944431000042 ], [ -123.132185773999979, 49.272936823000087 ], [ -123.132186018, 49.273027965000075 ], [ -123.132346195999943, 49.273027782000028 ], [ -123.132540475999917, 49.273027559000063 ], [ -123.132589553999964, 49.273027503000066 ], [ -123.132598468999959, 49.273040134000027 ], [ -123.132599157999934, 49.27329734800005 ], [ -123.132787224999973, 49.273297132000089 ], [ -123.133012013, 49.27345939500001 ], [ -123.133012300999965, 49.273566729000024 ], [ -123.133160468999918, 49.273566558000013 ], [ -123.133295197999985, 49.273663810000087 ], [ -123.13322748, 49.274051095000125 ], [ -123.133324475, 49.27412239500007 ], [ -123.133647706999952, 49.273907293000065 ], [ -123.134093804999964, 49.274193602000075 ], [ -123.13449332199994, 49.274193605000086 ], [ -123.1342325909999, 49.274410007000021 ], [ -123.134548597999952, 49.274418611000051 ], [ -123.134665337999962, 49.274522258000061 ], [ -123.134699406999943, 49.274552505000031 ], [ -123.134733367999914, 49.274732699000026 ], [ -123.134665156999944, 49.274730888000136 ], [ -123.134665655999981, 49.274914092000131 ], [ -123.134767534999952, 49.274913973000011 ], [ -123.13476891599997, 49.274921303000049 ], [ -123.135293280999988, 49.275488193000072 ], [ -123.134950820999919, 49.275721706000091 ], [ -123.135197319999946, 49.275775900000056 ], [ -123.135904905999936, 49.275623901000081 ], [ -123.13590517599998, 49.275722207000058 ], [ -123.13616239699995, 49.275721905000076 ], [ -123.13618709299999, 49.275750736000134 ], [ -123.134216823999964, 49.276384302000061 ], [ -123.134146212999923, 49.276325695000047 ], [ -123.133776697999977, 49.276011496000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24821419", "BldgCostT": "13022625", "sL_LossRatio": "0.592388441568214", "sL_AssetLoss": "531560", "sL_BldgLoss": "314890", "sL_StrLoss": "115090", "sL_NStrLoss": "199800", "sL_ContLoss": "216670", "geom_point": "0101000020E6100000256F7828A7C85EC0F9F4011633A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133879587999957, 49.290467795000019 ], [ -123.134434676999945, 49.290093833000093 ], [ -123.134926589999935, 49.289762411000069 ], [ -123.13652708799998, 49.290777587000065 ], [ -123.136032057999941, 49.291108155000131 ], [ -123.136005087999976, 49.291126149000029 ], [ -123.135476218999941, 49.291479299000045 ], [ -123.133879587999957, 49.290467795000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "401379312", "BldgCostT": "271153191", "sL_LossRatio": "0.769552326216894", "sL_AssetLoss": "2479283", "sL_BldgLoss": "1907938", "sL_StrLoss": "807630", "sL_NStrLoss": "1100308", "sL_ContLoss": "571345", "geom_point": "0101000020E610000037B74AC995C85EC0C309F2374AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132808421, 49.291162599000103 ], [ -123.133879587999957, 49.290467795000019 ], [ -123.135476218999941, 49.291479299000045 ], [ -123.13439839599998, 49.292192908000111 ], [ -123.132808421, 49.291162599000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178031299", "BldgCostT": "116145802", "sL_LossRatio": "0.755513699937641", "sL_AssetLoss": "785770", "sL_BldgLoss": "593660", "sL_StrLoss": "316670", "sL_NStrLoss": "276990", "sL_ContLoss": "192110", "geom_point": "0101000020E6100000CF3B887C5BC85EC05A24D4A9FEA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129344165999925, 49.288294300000075 ], [ -123.129948015999972, 49.287918903000111 ], [ -123.131118497, 49.288661499000114 ], [ -123.132281393999918, 49.289416613000107 ], [ -123.131232901999923, 49.290144385000104 ], [ -123.130033197, 49.289362209000082 ], [ -123.128861581999956, 49.288594294000106 ], [ -123.129344165999925, 49.288294300000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "690072685", "BldgCostT": "471295911", "sL_LossRatio": "0.832494162459114", "sL_AssetLoss": "4274060", "sL_BldgLoss": "3558130", "sL_StrLoss": "1588530", "sL_NStrLoss": "1969600", "sL_ContLoss": "715930", "geom_point": "0101000020E61000009C2963328BC85EC01DB1A248EFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133455412000018, 49.288813681000079 ], [ -123.133340206999918, 49.288787193000097 ], [ -123.133218080999924, 49.288828096000081 ], [ -123.132840647999927, 49.289065240000092 ], [ -123.132281393999918, 49.289416613000107 ], [ -123.131118497, 49.288661499000114 ], [ -123.129948015999972, 49.287918903000111 ], [ -123.130473817, 49.287566016000028 ], [ -123.13100920399998, 49.287206705000052 ], [ -123.131530018999939, 49.28686267100008 ], [ -123.132055289999983, 49.286515700000109 ], [ -123.133214810999903, 49.287279695000066 ], [ -123.134370494, 49.288018287000035 ], [ -123.135977595, 49.28905890000005 ], [ -123.137549393999947, 49.290070600000035 ], [ -123.137057602999903, 49.290410721000107 ], [ -123.1370286099999, 49.290430767000039 ], [ -123.13652708799998, 49.290777587000065 ], [ -123.134926589999935, 49.289762411000069 ], [ -123.134286409999987, 49.289378792000072 ], [ -123.133455412000018, 49.288813681000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227600197", "BldgCostT": "144855269", "sL_LossRatio": "0.699870557441803", "sL_AssetLoss": "1049114", "sL_BldgLoss": "734244", "sL_StrLoss": "334971", "sL_NStrLoss": "399273", "sL_ContLoss": "314870", "geom_point": "0101000020E6100000CA54DB8F8CC75EC05FF70C978BA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.117936820999944, 49.276103093000053 ], [ -123.11803164199992, 49.27603626500008 ], [ -123.118162446999975, 49.276120821000077 ], [ -123.118217634999951, 49.276155431000099 ], [ -123.118973242999942, 49.276628865000099 ], [ -123.119511565999986, 49.276965682000103 ], [ -123.120093897999965, 49.277347788000021 ], [ -123.119081668999939, 49.278018456000062 ], [ -123.11844860799999, 49.278437909000139 ], [ -123.116882198999988, 49.279473295000066 ], [ -123.115952705999987, 49.278840511000084 ], [ -123.11739599699996, 49.277861311000024 ], [ -123.11748950099998, 49.277772809000083 ], [ -123.117074491999986, 49.277494521000058 ], [ -123.116587147999951, 49.277167734000031 ], [ -123.116625040999963, 49.277111096000048 ], [ -123.11790248299998, 49.276212972000032 ], [ -123.117936820999944, 49.276103093000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1330241861", "BldgCostT": "785248905", "sL_LossRatio": "0.640196405621177", "sL_AssetLoss": "8330596.6", "sL_BldgLoss": "5333218", "sL_StrLoss": "2124678", "sL_NStrLoss": "3208540", "sL_ContLoss": "2997378.6", "geom_point": "0101000020E6100000BA507CC68FC75EC0FBE8ECE828A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116882198999988, 49.279473295000066 ], [ -123.11844860799999, 49.278437909000139 ], [ -123.118981812999948, 49.278754390000067 ], [ -123.119062609999943, 49.278802319000071 ], [ -123.11947840699996, 49.279049094000044 ], [ -123.119923421999943, 49.279333387000072 ], [ -123.120414196999974, 49.27964690200006 ], [ -123.120871618999971, 49.279963782000053 ], [ -123.121393202999954, 49.280325081000043 ], [ -123.121909498999969, 49.280651773000052 ], [ -123.122436479, 49.280985195000078 ], [ -123.122742063999937, 49.281177305000043 ], [ -123.123204892999979, 49.281468315000055 ], [ -123.123372995999929, 49.281574004000035 ], [ -123.123838758999966, 49.281863084000065 ], [ -123.124422378999938, 49.282225303000111 ], [ -123.123359823999962, 49.282918998000135 ], [ -123.122803897999987, 49.283281891000101 ], [ -123.122213409000011, 49.283662011000111 ], [ -123.122040265999942, 49.28377347100006 ], [ -123.121665815999975, 49.284014507000101 ], [ -123.121097009999929, 49.284409105000059 ], [ -123.120455779999986, 49.284851016000033 ], [ -123.120017307999916, 49.285153188000017 ], [ -123.119391616999962, 49.285601195000034 ], [ -123.118309270999987, 49.286289227000076 ], [ -123.117889006999917, 49.286556393000062 ], [ -123.116863722999966, 49.285914807000083 ], [ -123.116380542999934, 49.285612680000014 ], [ -123.115844995999936, 49.285277810000053 ], [ -123.115390028999983, 49.284992763000048 ], [ -123.114846284999913, 49.284652098000016 ], [ -123.113830103999973, 49.284019698000129 ], [ -123.112864411999951, 49.283416500000094 ], [ -123.112426104999912, 49.283112674000073 ], [ -123.112376988, 49.283078617000065 ], [ -123.112237228999959, 49.282981753000108 ], [ -123.111922399999926, 49.28276348400005 ], [ -123.112399699999983, 49.282444623000039 ], [ -123.113475383999941, 49.281726010000114 ], [ -123.115205690999986, 49.280576104000069 ], [ -123.116882198999988, 49.279473295000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "675745015", "BldgCostT": "450982636", "sL_LossRatio": "0.817013539259506", "sL_AssetLoss": "2208688", "sL_BldgLoss": "1804528", "sL_StrLoss": "868270", "sL_NStrLoss": "936258", "sL_ContLoss": "404160", "geom_point": "0101000020E61000002191CF8E08C85EC021F9CE5849A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123982573999939, 49.274779309000145 ], [ -123.124853796, 49.274205092000081 ], [ -123.125355661999976, 49.274525243000063 ], [ -123.125829302999961, 49.27482739200007 ], [ -123.126313532999973, 49.275148090000044 ], [ -123.126773001999965, 49.275452405000081 ], [ -123.127169680999884, 49.275703393000121 ], [ -123.127271927999956, 49.275771370000058 ], [ -123.127762286999925, 49.276097508000056 ], [ -123.127010609999942, 49.276603547 ], [ -123.126192121999978, 49.277154590000087 ], [ -123.125690236999958, 49.276827870000048 ], [ -123.125189606000021, 49.2765019080001 ], [ -123.124699596999918, 49.276180687000064 ], [ -123.124257308999987, 49.275890707000073 ], [ -123.123710354999986, 49.275532606000063 ], [ -123.123273473999959, 49.275246598000116 ], [ -123.123982573999939, 49.274779309000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "676099958", "BldgCostT": "462999715", "sL_LossRatio": "0.809683182489756", "sL_AssetLoss": "2173996", "sL_BldgLoss": "1760248", "sL_StrLoss": "859490", "sL_NStrLoss": "900758", "sL_ContLoss": "413748", "geom_point": "0101000020E61000008AB5F1EDFEC75EC0A0CA61DE80A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124132283999955, 49.27597319800001 ], [ -123.124257308999987, 49.275890707000073 ], [ -123.124699596999918, 49.276180687000064 ], [ -123.125189606000021, 49.2765019080001 ], [ -123.125690236999958, 49.276827870000048 ], [ -123.126192121999978, 49.277154590000087 ], [ -123.126766985999978, 49.277526635000065 ], [ -123.127193609999949, 49.277802701000027 ], [ -123.125624200999965, 49.278846305000037 ], [ -123.125140739999978, 49.278540047000078 ], [ -123.124606014999955, 49.278201307000124 ], [ -123.124109163999918, 49.277865961000018 ], [ -123.123614093, 49.277531799000066 ], [ -123.123127706999924, 49.277229660000124 ], [ -123.122664101999987, 49.276941683000089 ], [ -123.123850530999974, 49.276159049000093 ], [ -123.124132283999955, 49.27597319800001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215303062", "BldgCostT": "137513191", "sL_LossRatio": "0.689743997400618", "sL_AssetLoss": "1151043", "sL_BldgLoss": "793925", "sL_StrLoss": "378940", "sL_NStrLoss": "414985", "sL_ContLoss": "357118", "geom_point": "0101000020E6100000D69F0D2B22C85EC060794E82D0A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.126589489999944, 49.279457497000074 ], [ -123.128134608999972, 49.278405990000117 ], [ -123.12866072199995, 49.278743245000079 ], [ -123.129182791999938, 49.279077892000089 ], [ -123.128647906999973, 49.279434093000084 ], [ -123.128625914999972, 49.279448737000031 ], [ -123.127624716999946, 49.280115492000093 ], [ -123.127425049999943, 49.280248511000075 ], [ -123.127232238999952, 49.2803769410001 ], [ -123.127078592999965, 49.280479287000112 ], [ -123.126524600999943, 49.280860124000085 ], [ -123.126037888999974, 49.281194701000068 ], [ -123.124983413, 49.28053610500006 ], [ -123.126589489999944, 49.279457497000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189512228", "BldgCostT": "123729857", "sL_LossRatio": "0.73003929437338", "sL_AssetLoss": "669816", "sL_BldgLoss": "488992", "sL_StrLoss": "222558", "sL_NStrLoss": "266434", "sL_ContLoss": "180824", "geom_point": "0101000020E61000004AC872D81EC85EC083BFD322AAA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125624200999965, 49.278846305000037 ], [ -123.127193609999949, 49.277802701000027 ], [ -123.127723253999989, 49.278142279000058 ], [ -123.128134608999972, 49.278405990000117 ], [ -123.126589489999944, 49.279457497000074 ], [ -123.126111440999978, 49.279154827000056 ], [ -123.125624200999965, 49.278846305000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413463518", "BldgCostT": "263684874", "sL_LossRatio": "0.706023781049285", "sL_AssetLoss": "2093768", "sL_BldgLoss": "1478250", "sL_StrLoss": "654210", "sL_NStrLoss": "824040", "sL_ContLoss": "615518", "geom_point": "0101000020E610000002D2EE2547C85EC02346D8E883A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130370565999939, 49.275720429000053 ], [ -123.130380405999972, 49.275714038000068 ], [ -123.130475674999957, 49.275773314000105 ], [ -123.130611189999954, 49.27580396600009 ], [ -123.130864850999899, 49.275961959000036 ], [ -123.131378628999954, 49.276281900000065 ], [ -123.129722297999976, 49.277355685000039 ], [ -123.130254649999969, 49.277696580000075 ], [ -123.130786303999983, 49.278036991000086 ], [ -123.130288108999963, 49.278359704000081 ], [ -123.130027540999933, 49.278529001000038 ], [ -123.12970346499999, 49.278739587000118 ], [ -123.129182791999938, 49.279077892000089 ], [ -123.12866072199995, 49.278743245000079 ], [ -123.128134608999972, 49.278405990000117 ], [ -123.127723253999989, 49.278142279000058 ], [ -123.127193609999949, 49.277802701000027 ], [ -123.128028863999987, 49.277253451000092 ], [ -123.128786482999914, 49.276755210000054 ], [ -123.129603092999957, 49.276217596000052 ], [ -123.130370565999939, 49.275720429000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104405834", "BldgCostT": "63958334", "sL_LossRatio": "0.675308708257275", "sL_AssetLoss": "1862600", "sL_BldgLoss": "1257830", "sL_StrLoss": "548130", "sL_NStrLoss": "709700", "sL_ContLoss": "604770", "geom_point": "0101000020E610000016F45AE01DAB5EC0C15A8CEC10944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.667873402999987, 49.157343472000065 ], [ -122.667904123999961, 49.156459636000079 ], [ -122.667934181999968, 49.155593867000107 ], [ -122.66795625099995, 49.154642878000068 ], [ -122.667971283999961, 49.153995318000057 ], [ -122.667976865999918, 49.153755072000131 ], [ -122.668017333999941, 49.151946824000071 ], [ -122.668040748999985, 49.150937843000044 ], [ -122.66810290399998, 49.148265590000065 ], [ -122.66813877599995, 49.148265323000054 ], [ -122.668340128999915, 49.148263923000023 ], [ -122.668385814999965, 49.148263580000034 ], [ -122.671140573999978, 49.148245151000026 ], [ -122.672596790999961, 49.148238804000101 ], [ -122.673802694999949, 49.148232707000055 ], [ -122.674433381999933, 49.148229535000077 ], [ -122.675802691999962, 49.148222605000072 ], [ -122.677930051999937, 49.148235831000129 ], [ -122.678492325999954, 49.148239313000033 ], [ -122.678832896999921, 49.148241421000073 ], [ -122.679313880999985, 49.151937297000096 ], [ -122.679312399999915, 49.152822208000018 ], [ -122.679286179999934, 49.153802691000124 ], [ -122.679282903999962, 49.153955483000047 ], [ -122.679266406999915, 49.154720065000092 ], [ -122.679247016999966, 49.155619096000109 ], [ -122.679241003999948, 49.15616408900015 ], [ -122.679231168999962, 49.156608935000058 ], [ -122.679214201999955, 49.157375924000043 ], [ -122.679192377999925, 49.158363123000093 ], [ -122.67917339499995, 49.159221387000066 ], [ -122.678913390999966, 49.162880894000068 ], [ -122.678293831999923, 49.165551860000086 ], [ -122.67811511799998, 49.166417094000046 ], [ -122.678035519999952, 49.166802421000121 ], [ -122.673892482999946, 49.165709651000064 ], [ -122.673810576999955, 49.165688065000019 ], [ -122.672679045999971, 49.165381132000057 ], [ -122.672394077999954, 49.165303824000027 ], [ -122.670750405999954, 49.16485787800007 ], [ -122.670699683, 49.164844123000094 ], [ -122.669390645999954, 49.164488926000075 ], [ -122.668899614999944, 49.164355705000055 ], [ -122.668799878999963, 49.164330101000125 ], [ -122.668731207999954, 49.164312689000027 ], [ -122.668759304999938, 49.16422700900003 ], [ -122.668814898999955, 49.164063845000051 ], [ -122.669023977999942, 49.16315482100002 ], [ -122.668974029999944, 49.163011714000127 ], [ -122.66894377499996, 49.162925076000079 ], [ -122.668824917, 49.16258452200011 ], [ -122.668366139999961, 49.161843273000052 ], [ -122.668335181999979, 49.161793247000034 ], [ -122.668206783999921, 49.161585795000093 ], [ -122.667952704999891, 49.161170682000019 ], [ -122.667915876, 49.16107219800007 ], [ -122.66782800599999, 49.160710794000074 ], [ -122.667766480999944, 49.160172790000075 ], [ -122.667775167999963, 49.15997434100008 ], [ -122.667809107999943, 49.159194507000095 ], [ -122.667873402999987, 49.157343472000065 ] ], [ [ -122.67351834099999, 49.156978870000074 ], [ -122.673518569999928, 49.15694386400002 ], [ -122.672695830999956, 49.156918432000111 ], [ -122.672695325999911, 49.156995108000082 ], [ -122.673038559999966, 49.157005718000036 ], [ -122.673041535999971, 49.156964132000084 ], [ -122.67351834099999, 49.156978870000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89289916", "BldgCostT": "55246666", "sL_LossRatio": "0.671237682062076", "sL_AssetLoss": "1396845", "sL_BldgLoss": "937615", "sL_StrLoss": "413375", "sL_NStrLoss": "524240", "sL_ContLoss": "459230", "geom_point": "0101000020E61000002A98844DD5A95EC081F0DBEF54924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.649718182999919, 49.138313598000103 ], [ -122.661521780999948, 49.13839486800007 ], [ -122.661467689999967, 49.141994656000094 ], [ -122.661417359999973, 49.145340573000077 ], [ -122.661412948999924, 49.145634065000102 ], [ -122.661374687999924, 49.148176904000138 ], [ -122.659048447999908, 49.148149878000062 ], [ -122.65856863599997, 49.148144269000085 ], [ -122.658129748999897, 49.148139176000051 ], [ -122.657403, 49.148130711000093 ], [ -122.656964498999955, 49.148125596000064 ], [ -122.656045689999956, 49.148116395000031 ], [ -122.654455173999935, 49.148100419000031 ], [ -122.653262231999946, 49.148088418000107 ], [ -122.652837220999984, 49.14808415100002 ], [ -122.649494674999929, 49.148050439000038 ], [ -122.648872657999945, 49.14804415800004 ], [ -122.645743326999963, 49.148012479000101 ], [ -122.645770553999981, 49.146544261 ], [ -122.645774070999934, 49.146356150000059 ], [ -122.645786121999905, 49.145707726000076 ], [ -122.645790808999934, 49.14545587800005 ], [ -122.645798485999933, 49.145042121000095 ], [ -122.645832698999982, 49.143200301000086 ], [ -122.645841687999948, 49.142316504000057 ], [ -122.645852011999949, 49.141300063000067 ], [ -122.645857909999961, 49.140721986000095 ], [ -122.645886203999936, 49.138296 ], [ -122.649718182999919, 49.138313598000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316821668", "BldgCostT": "200331668", "sL_LossRatio": "0.70717435681673", "sL_AssetLoss": "3850380", "sL_BldgLoss": "2722890", "sL_StrLoss": "1212030", "sL_NStrLoss": "1510860", "sL_ContLoss": "1127490", "geom_point": "0101000020E61000007E61212918AA5EC0497213F7D0934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.661374687999924, 49.148176904000138 ], [ -122.66810290399998, 49.148265590000065 ], [ -122.668040748999985, 49.150937843000044 ], [ -122.668017333999941, 49.151946824000071 ], [ -122.667976865999918, 49.153755072000131 ], [ -122.667971283999961, 49.153995318000057 ], [ -122.66795625099995, 49.154642878000068 ], [ -122.667934181999968, 49.155593867000107 ], [ -122.667904123999961, 49.156459636000079 ], [ -122.667873402999987, 49.157343472000065 ], [ -122.667809107999943, 49.159194507000095 ], [ -122.667775167999963, 49.15997434100008 ], [ -122.667766480999944, 49.160172790000075 ], [ -122.66782800599999, 49.160710794000074 ], [ -122.667915876, 49.16107219800007 ], [ -122.667952704999891, 49.161170682000019 ], [ -122.668206783999921, 49.161585795000093 ], [ -122.668335181999979, 49.161793247000034 ], [ -122.668366139999961, 49.161843273000052 ], [ -122.668824917, 49.16258452200011 ], [ -122.66894377499996, 49.162925076000079 ], [ -122.668974029999944, 49.163011714000127 ], [ -122.669023977999942, 49.16315482100002 ], [ -122.668814898999955, 49.164063845000051 ], [ -122.668759304999938, 49.16422700900003 ], [ -122.668731207999954, 49.164312689000027 ], [ -122.668654483999916, 49.16429230300011 ], [ -122.668030691999974, 49.164128135000091 ], [ -122.666763749999987, 49.163794678000045 ], [ -122.665000112999977, 49.16333045800009 ], [ -122.663288881999947, 49.162879979000067 ], [ -122.662822857999984, 49.162757315000128 ], [ -122.662721001999927, 49.162730490000108 ], [ -122.662578185000015, 49.162692902000096 ], [ -122.659527406, 49.161870990000054 ], [ -122.657300477999954, 49.161339595000079 ], [ -122.656565599999965, 49.161141085000047 ], [ -122.654847133999937, 49.160676898000091 ], [ -122.654646974999977, 49.160622829000026 ], [ -122.652014000999941, 49.159911548000153 ], [ -122.651570787999958, 49.15979179500011 ], [ -122.647504790999989, 49.158714362000126 ], [ -122.645725094999989, 49.158242704000052 ], [ -122.645724312999903, 49.157778585000152 ], [ -122.645727239999928, 49.157544089000091 ], [ -122.645753554999985, 49.155434719 ], [ -122.645785376999953, 49.152979167000083 ], [ -122.645764615999937, 49.15161330800003 ], [ -122.645743326999963, 49.148012479000101 ], [ -122.648872657999945, 49.14804415800004 ], [ -122.649494674999929, 49.148050439000038 ], [ -122.652837220999984, 49.14808415100002 ], [ -122.653262231999946, 49.148088418000107 ], [ -122.654455173999935, 49.148100419000031 ], [ -122.656045689999956, 49.148116395000031 ], [ -122.656964498999955, 49.148125596000064 ], [ -122.657403, 49.148130711000093 ], [ -122.658129748999897, 49.148139176000051 ], [ -122.65856863599997, 49.148144269000085 ], [ -122.659048447999908, 49.148149878000062 ], [ -122.661374687999924, 49.148176904000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "310186584", "BldgCostT": "200693334", "sL_LossRatio": "0.696866024394328", "sL_AssetLoss": "4969024", "sL_BldgLoss": "3462744", "sL_StrLoss": "1608704", "sL_NStrLoss": "1854040", "sL_ContLoss": "1506280", "geom_point": "0101000020E6100000A3A5D1681BAB5EC0C4FB8A9806924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668121992999957, 49.145781124000059 ], [ -122.668154107999939, 49.141610775000039 ], [ -122.668160175999944, 49.140823149000056 ], [ -122.668170840999892, 49.139440916000133 ], [ -122.668209337999954, 49.134438798000168 ], [ -122.668213464999909, 49.133519743000065 ], [ -122.668292320999939, 49.133520493000077 ], [ -122.668429843999931, 49.133521933000061 ], [ -122.669855000999959, 49.133535495000039 ], [ -122.670319610999968, 49.133539907000078 ], [ -122.670978743999981, 49.133546843000026 ], [ -122.671622907999975, 49.133553598000034 ], [ -122.672303686999967, 49.133560749000047 ], [ -122.674903337999964, 49.133577797000086 ], [ -122.67501925, 49.133578555000092 ], [ -122.676186757999986, 49.13358617800008 ], [ -122.67772480299999, 49.133597651000031 ], [ -122.679498775999932, 49.133605561000103 ], [ -122.679601541999958, 49.133606032000081 ], [ -122.679591076999969, 49.134409522000063 ], [ -122.679574570999989, 49.135673365000095 ], [ -122.679560473999942, 49.136158662000092 ], [ -122.679472286999925, 49.136251330000043 ], [ -122.679189473999955, 49.137848918000067 ], [ -122.679095076999943, 49.138382422000063 ], [ -122.678845830999975, 49.140863265000071 ], [ -122.678799972999983, 49.144539282000032 ], [ -122.678825707999977, 49.147433912000082 ], [ -122.678832896999921, 49.148241421000073 ], [ -122.678492325999954, 49.148239313000033 ], [ -122.677930051999937, 49.148235831000129 ], [ -122.675802691999962, 49.148222605000072 ], [ -122.674433381999933, 49.148229535000077 ], [ -122.673802694999949, 49.148232707000055 ], [ -122.672596790999961, 49.148238804000101 ], [ -122.671140573999978, 49.148245151000026 ], [ -122.668385814999965, 49.148263580000034 ], [ -122.668340128999915, 49.148263923000023 ], [ -122.66813877599995, 49.148265323000054 ], [ -122.66810290399998, 49.148265590000065 ], [ -122.668121992999957, 49.145781124000059 ] ], [ [ -122.676248457999947, 49.142847674000052 ], [ -122.67628702, 49.142308057000058 ], [ -122.676082719999926, 49.142307484000114 ], [ -122.676079203999905, 49.142847199000109 ], [ -122.676248457999947, 49.142847674000052 ] ], [ [ -122.678410200999934, 49.142306747000099 ], [ -122.678417868999986, 49.142199359000074 ], [ -122.678020388999968, 49.142187088000099 ], [ -122.678020431000022, 49.142186501000026 ], [ -122.677076855999957, 49.142157363000095 ], [ -122.677333793999978, 49.138560682000126 ], [ -122.677752258999945, 49.138573606000108 ], [ -122.677752517, 49.138534081000081 ], [ -122.676929928, 49.138531783000118 ], [ -122.676924666999952, 49.139341356000074 ], [ -122.67651336599999, 49.139340205000074 ], [ -122.676511609999977, 49.139610061000027 ], [ -122.676922912999942, 49.139611213000116 ], [ -122.676915895999926, 49.14069064500007 ], [ -122.676504583999957, 49.140689493000117 ], [ -122.676494109999979, 49.142298931000042 ], [ -122.677530516999965, 49.142330941000118 ], [ -122.677534177999974, 49.14227969800001 ], [ -122.678410200999934, 49.142306747000099 ] ], [ [ -122.675277702999907, 49.139606598000064 ], [ -122.675290043999951, 49.137717595000026 ], [ -122.676112616999944, 49.13771990500004 ], [ -122.676116134000011, 49.137180190000066 ], [ -122.675704851, 49.137179035000052 ], [ -122.675706612999932, 49.136909178000103 ], [ -122.675333392999974, 49.136908129000091 ], [ -122.675140543999959, 49.13960621300005 ], [ -122.675277702999907, 49.139606598000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194085583", "BldgCostT": "127333333", "sL_LossRatio": "0.706707454532135", "sL_AssetLoss": "2825677", "sL_BldgLoss": "1996927", "sL_StrLoss": "936537", "sL_NStrLoss": "1060390", "sL_ContLoss": "828750", "geom_point": "0101000020E6100000669CC0538CAA5EC0A24D82F507924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.661508659999967, 49.134720390000041 ], [ -122.661434578999902, 49.133460965000097 ], [ -122.662575898999947, 49.133504563 ], [ -122.663124265999983, 49.133506273000044 ], [ -122.66342038, 49.133507180000073 ], [ -122.663476069999945, 49.133507362000088 ], [ -122.664644406999983, 49.133510972000039 ], [ -122.666590030999956, 49.133514504000061 ], [ -122.666962569999981, 49.13351571500008 ], [ -122.668213464999909, 49.133519743000065 ], [ -122.668209337999954, 49.134438798000168 ], [ -122.668170840999892, 49.139440916000133 ], [ -122.668160175999944, 49.140823149000056 ], [ -122.668154107999939, 49.141610775000039 ], [ -122.668121992999957, 49.145781124000059 ], [ -122.66810290399998, 49.148265590000065 ], [ -122.661374687999924, 49.148176904000138 ], [ -122.661412948999924, 49.145634065000102 ], [ -122.661417359999973, 49.145340573000077 ], [ -122.661467689999967, 49.141994656000094 ], [ -122.661521780999948, 49.13839486800007 ], [ -122.661518236999925, 49.137784634000134 ], [ -122.661512037999941, 49.13671659300006 ], [ -122.661510080999989, 49.136345529000081 ], [ -122.661507793999959, 49.135916234000064 ], [ -122.661508659999967, 49.134720390000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108899166", "BldgCostT": "72891666", "sL_LossRatio": "0.730088927448216", "sL_AssetLoss": "1844200", "sL_BldgLoss": "1346430", "sL_StrLoss": "593580", "sL_NStrLoss": "752850", "sL_ContLoss": "497770", "geom_point": "0101000020E610000094ED85FA04AB5EC079ECC26A07904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.668390369999983, 49.125741869000144 ], [ -122.668440167999947, 49.122643265000114 ], [ -122.668488576999977, 49.122644093000083 ], [ -122.668626265999961, 49.122646334000095 ], [ -122.669355323999952, 49.122681501000109 ], [ -122.66931608799996, 49.124052792000093 ], [ -122.669342208000032, 49.124127505000068 ], [ -122.66946871, 49.124159398000174 ], [ -122.670492896999946, 49.124163129000031 ], [ -122.670787810999983, 49.124164203000078 ], [ -122.670773710999953, 49.124877491000056 ], [ -122.670761998999964, 49.125481800000117 ], [ -122.672935778999957, 49.125508504000038 ], [ -122.673907911999962, 49.125516999000169 ], [ -122.674028908999929, 49.125491888000113 ], [ -122.674105012999945, 49.125424802000111 ], [ -122.674187602999936, 49.125150687000023 ], [ -122.674455890999965, 49.124406498000084 ], [ -122.674631991999931, 49.124434502000057 ], [ -122.675819215999923, 49.124443308000089 ], [ -122.676916103999986, 49.124450097000107 ], [ -122.676910063999927, 49.124812598000133 ], [ -122.67689010299992, 49.126008872000035 ], [ -122.676885172999917, 49.12630288200009 ], [ -122.67494777899999, 49.126284458000036 ], [ -122.673617573999977, 49.126282010000104 ], [ -122.671849, 49.126278685000045 ], [ -122.671369721999923, 49.12627774500001 ], [ -122.670629587999954, 49.126276281000102 ], [ -122.670385903999914, 49.126275810000038 ], [ -122.669752381999928, 49.12627467699999 ], [ -122.668595383999943, 49.126272596000014 ], [ -122.668381458999932, 49.126294841000032 ], [ -122.668390369999983, 49.125741869000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "421281788", "BldgCostT": "252276901", "sL_LossRatio": "0.618931884557355", "sL_AssetLoss": "5978380", "sL_BldgLoss": "3700210", "sL_StrLoss": "1451210", "sL_NStrLoss": "2249000", "sL_ContLoss": "2278170", "geom_point": "0101000020E6100000946569E982AA5EC0E95B3002748F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.660425452999974, 49.126176951000026 ], [ -122.660092406999965, 49.125377169000082 ], [ -122.660039653999931, 49.125252959000129 ], [ -122.65997325099994, 49.124841779000072 ], [ -122.659948247000017, 49.124388605000043 ], [ -122.659953209999955, 49.123998011000069 ], [ -122.659954217999925, 49.123918585000077 ], [ -122.65996, 49.123461643000027 ], [ -122.659943868999932, 49.122597798000072 ], [ -122.660008892999926, 49.120737952000056 ], [ -122.660016028999976, 49.119283659000104 ], [ -122.660109124999977, 49.119131531000114 ], [ -122.660112855999941, 49.118983882000066 ], [ -122.660112418999958, 49.11889464800003 ], [ -122.660167749999957, 49.115165397000034 ], [ -122.660987805999966, 49.115181858 ], [ -122.663119522999978, 49.115224594000033 ], [ -122.663851076999947, 49.115229127000056 ], [ -122.664461305999978, 49.115232911000184 ], [ -122.665928778999955, 49.115264897000031 ], [ -122.666075142999929, 49.115267623000051 ], [ -122.668448078999958, 49.115318644000055 ], [ -122.668447718999928, 49.116318962 ], [ -122.668446216999897, 49.116683895000072 ], [ -122.66844719, 49.116804692000088 ], [ -122.668448296999941, 49.117229192000067 ], [ -122.66844164799997, 49.118948444000054 ], [ -122.668438977999941, 49.119042997000065 ], [ -122.668439550999921, 49.120470652000051 ], [ -122.66843979099994, 49.121117512000055 ], [ -122.66843985, 49.121244291000075 ], [ -122.668440167999947, 49.122643265000114 ], [ -122.668390369999983, 49.125741869000144 ], [ -122.668381458999932, 49.126294841000032 ], [ -122.667336610999953, 49.126211104000092 ], [ -122.665661492999959, 49.126203344000018 ], [ -122.66467125, 49.126198748000043 ], [ -122.664045400999925, 49.126194667000078 ], [ -122.663815283999924, 49.126193827000137 ], [ -122.663151109999959, 49.126189462000085 ], [ -122.662374422999932, 49.126186990000079 ], [ -122.661246729, 49.126181301000024 ], [ -122.660536405999977, 49.126177691000102 ], [ -122.660425452999974, 49.126176951000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127873583", "BldgCostT": "77753333", "sL_LossRatio": "0.672776892609827", "sL_AssetLoss": "1752963", "sL_BldgLoss": "1179353", "sL_StrLoss": "511803", "sL_NStrLoss": "667550", "sL_ContLoss": "573610", "geom_point": "0101000020E61000000D3B1082A3A95EC0BCEFBD6488904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65682784199997, 49.126163010000063 ], [ -122.657220246999927, 49.126164783000043 ], [ -122.65720962599994, 49.126887568000022 ], [ -122.65720299399996, 49.127337309000104 ], [ -122.657191396999949, 49.128119907000091 ], [ -122.657183465999978, 49.128659599000088 ], [ -122.657168898999942, 49.129644505000051 ], [ -122.65496702199999, 49.129637699000114 ], [ -122.653171371, 49.129632117000071 ], [ -122.651600195999919, 49.129627206000045 ], [ -122.651586877999975, 49.130801817000069 ], [ -122.651573321999976, 49.131998178000039 ], [ -122.651557188999959, 49.133423392000068 ], [ -122.649767085999883, 49.133410898000108 ], [ -122.648854407999934, 49.133404620000114 ], [ -122.646962737999957, 49.133391623000072 ], [ -122.645944294999978, 49.133384599000109 ], [ -122.645953304000017, 49.132690094000026 ], [ -122.645961334999924, 49.132071109000094 ], [ -122.645969310999973, 49.131459462000052 ], [ -122.645991586999941, 49.129745284000094 ], [ -122.646017684999933, 49.127654458000059 ], [ -122.646030472999911, 49.126629002000087 ], [ -122.646036910999925, 49.126114010000073 ], [ -122.648796802999982, 49.12612609100011 ], [ -122.651317893999973, 49.126137982000024 ], [ -122.651622392999954, 49.126139353000035 ], [ -122.65385356799996, 49.126149508 ], [ -122.654426128999916, 49.126152090000062 ], [ -122.65555318399997, 49.126157178000028 ], [ -122.655690322999945, 49.126157801000048 ], [ -122.65682784199997, 49.126163010000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86382084", "BldgCostT": "51008334", "sL_LossRatio": "0.619364309038076", "sL_AssetLoss": "1335240", "sL_BldgLoss": "827000", "sL_StrLoss": "378820", "sL_NStrLoss": "448180", "sL_ContLoss": "508240", "geom_point": "0101000020E6100000825936ADF3A95EC0DF9AAE062C8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64846972, 49.114879799000093 ], [ -122.648475722999976, 49.11482531700009 ], [ -122.648481477999923, 49.114772895000065 ], [ -122.649583195000019, 49.114786514000137 ], [ -122.650446430999978, 49.114916155000039 ], [ -122.65161089799993, 49.114950872000065 ], [ -122.654448614999922, 49.115035367000061 ], [ -122.656665850999943, 49.115098935000084 ], [ -122.656788830999986, 49.115102747000101 ], [ -122.656924714999946, 49.115105268000057 ], [ -122.660167749999957, 49.115165397000034 ], [ -122.660112418999958, 49.11889464800003 ], [ -122.660112855999941, 49.118983882000066 ], [ -122.660109124999977, 49.119131531000114 ], [ -122.660016028999976, 49.119283659000104 ], [ -122.660008892999926, 49.120737952000056 ], [ -122.659943868999932, 49.122597798000072 ], [ -122.655678574, 49.122566186000057 ], [ -122.655188381999892, 49.122562646000119 ], [ -122.654401094999969, 49.122556182000082 ], [ -122.653275381999919, 49.122549983000063 ], [ -122.653059098999989, 49.122547805000103 ], [ -122.652582528999943, 49.122544633000047 ], [ -122.651895149999987, 49.122539481000032 ], [ -122.651408967999913, 49.122536949000036 ], [ -122.65143585599999, 49.120796445000082 ], [ -122.651709812999968, 49.120583965000037 ], [ -122.652089114999953, 49.120289746000026 ], [ -122.652265497999963, 49.120152920000059 ], [ -122.652416965999947, 49.120037293000053 ], [ -122.654062917999966, 49.11878046700015 ], [ -122.653925898999944, 49.118742842000124 ], [ -122.653841167999929, 49.118663624000057 ], [ -122.652259835999971, 49.117779209000027 ], [ -122.65059562, 49.116848419000071 ], [ -122.650528851999965, 49.116811060000089 ], [ -122.64941900800001, 49.116190284000034 ], [ -122.647159549999927, 49.114926359000016 ], [ -122.647400349999941, 49.114855472000102 ], [ -122.64846972, 49.114879799000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "831302249", "BldgCostT": "514904999", "sL_LossRatio": "0.688998507082757", "sL_AssetLoss": "8721180", "sL_BldgLoss": "6008880", "sL_StrLoss": "2816110", "sL_NStrLoss": "3192770", "sL_ContLoss": "2712300", "geom_point": "0101000020E6100000C2821C10B8A85EC0217DC5E002914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.624197723999927, 49.14740355000005 ], [ -122.624197204, 49.143785313000102 ], [ -122.626802044999948, 49.143853263000075 ], [ -122.635140479999947, 49.144070394000103 ], [ -122.635133888, 49.142834690000058 ], [ -122.633234402999932, 49.142757305000096 ], [ -122.6330082, 49.142662792000046 ], [ -122.632800863999975, 49.142551816000072 ], [ -122.632797119999964, 49.142549795 ], [ -122.632519214999917, 49.14228070900004 ], [ -122.632399607999943, 49.14175431000006 ], [ -122.63226939599997, 49.140903087000062 ], [ -122.632296393, 49.14071919200007 ], [ -122.631910618999953, 49.140369199000112 ], [ -122.63176391799999, 49.140365115000087 ], [ -122.630052325999912, 49.14031752100005 ], [ -122.629516423999945, 49.140302616000042 ], [ -122.628227678, 49.140266756000081 ], [ -122.627925998999956, 49.140258351000085 ], [ -122.62678128899995, 49.140226493000071 ], [ -122.626283184999949, 49.140159497000091 ], [ -122.624198573999962, 49.140121993000051 ], [ -122.62419693399994, 49.136005157000071 ], [ -122.624196801999943, 49.135652103000041 ], [ -122.622330843, 49.134589811000069 ], [ -122.617470309999945, 49.131822325000094 ], [ -122.61724602399994, 49.131694606000117 ], [ -122.620983084, 49.129143705000047 ], [ -122.622331505999924, 49.128217208000059 ], [ -122.624208097999897, 49.126925631000063 ], [ -122.624595887999988, 49.126658722000059 ], [ -122.624898697999981, 49.126450308000059 ], [ -122.62874088199996, 49.123779797000111 ], [ -122.631821996999932, 49.121656331000111 ], [ -122.632702007999939, 49.121049806000059 ], [ -122.634470062999966, 49.119832604000138 ], [ -122.635303291999932, 49.117729407000077 ], [ -122.636063275999973, 49.116805898000045 ], [ -122.636223950999977, 49.116694189000036 ], [ -122.63666314699999, 49.116388840000113 ], [ -122.63705846699996, 49.116113951000052 ], [ -122.638673108999981, 49.115276651000123 ], [ -122.639536800999949, 49.114881946 ], [ -122.641662377999978, 49.114068082000074 ], [ -122.64414235699995, 49.113172209000034 ], [ -122.644286553999933, 49.113256026000094 ], [ -122.645171415999954, 49.113770509000048 ], [ -122.647159549999927, 49.114926359000016 ], [ -122.64941900800001, 49.116190284000034 ], [ -122.650528851999965, 49.116811060000089 ], [ -122.65059562, 49.116848419000071 ], [ -122.652259835999971, 49.117779209000027 ], [ -122.653841167999929, 49.118663624000057 ], [ -122.653925898999944, 49.118742842000124 ], [ -122.654062917999966, 49.11878046700015 ], [ -122.652416965999947, 49.120037293000053 ], [ -122.652265497999963, 49.120152920000059 ], [ -122.652089114999953, 49.120289746000026 ], [ -122.651709812999968, 49.120583965000037 ], [ -122.65143585599999, 49.120796445000082 ], [ -122.648688801999953, 49.122927139000119 ], [ -122.647817154999956, 49.123628213000089 ], [ -122.646907567999961, 49.124359780000127 ], [ -122.646412812999969, 49.124757694000074 ], [ -122.64639571, 49.124777938000094 ], [ -122.646191117999962, 49.12502029400008 ], [ -122.646045282, 49.125331993000074 ], [ -122.646036910999925, 49.126114010000073 ], [ -122.646030472999911, 49.126629002000087 ], [ -122.646017684999933, 49.127654458000059 ], [ -122.645991586999941, 49.129745284000094 ], [ -122.645969310999973, 49.131459462000052 ], [ -122.645961334999924, 49.132071109000094 ], [ -122.645953304000017, 49.132690094000026 ], [ -122.645944294999978, 49.133384599000109 ], [ -122.645936545, 49.134041008000054 ], [ -122.645921846999968, 49.135282352000054 ], [ -122.645916115999952, 49.135768077000108 ], [ -122.645898792999986, 49.13723427800003 ], [ -122.645886203999936, 49.138296 ], [ -122.645857909999961, 49.140721986000095 ], [ -122.645852011999949, 49.141300063000067 ], [ -122.645841687999948, 49.142316504000057 ], [ -122.645832698999982, 49.143200301000086 ], [ -122.645798485999933, 49.145042121000095 ], [ -122.645790808999934, 49.14545587800005 ], [ -122.645786121999905, 49.145707726000076 ], [ -122.645774070999934, 49.146356150000059 ], [ -122.645770553999981, 49.146544261 ], [ -122.645743326999963, 49.148012479000101 ], [ -122.643532787999931, 49.147935527000058 ], [ -122.643258882999973, 49.147925994000104 ], [ -122.642539598, 49.147901748000066 ], [ -122.642525893999945, 49.147901275000024 ], [ -122.64244523499994, 49.147898562000087 ], [ -122.63979920599995, 49.147826490000092 ], [ -122.638275374999921, 49.147784831000116 ], [ -122.635768147999954, 49.147672216000082 ], [ -122.635145987999948, 49.147655708000059 ], [ -122.63121633499992, 49.147551445000062 ], [ -122.624197723999927, 49.14740355000005 ] ], [ [ -122.641918120999904, 49.145641574000081 ], [ -122.64192012699999, 49.145363026000098 ], [ -122.63986366200001, 49.145298824000072 ], [ -122.639464378999961, 49.145286354000071 ], [ -122.639476310999967, 49.145121233000104 ], [ -122.638631215999951, 49.145094835000094 ], [ -122.638630706999933, 49.145164834000084 ], [ -122.63904205399993, 49.145166120000056 ], [ -122.639040530999964, 49.145375771000054 ], [ -122.639040092999906, 49.145435976000087 ], [ -122.639451442, 49.145437261000012 ], [ -122.639450710999967, 49.145537997000098 ], [ -122.640501879999988, 49.145570824000032 ], [ -122.640501534999927, 49.14557561800008 ], [ -122.641433047999911, 49.145604698000078 ], [ -122.641431481999945, 49.145626386000067 ], [ -122.641918120999904, 49.145641574000081 ] ], [ [ -122.639037130999981, 49.140600887000069 ], [ -122.639099501999951, 49.139737704000012 ], [ -122.638024971000021, 49.139704129000059 ], [ -122.638058941999972, 49.139234133000102 ], [ -122.638039700999968, 49.139233531000066 ], [ -122.638075700999977, 49.138735448000055 ], [ -122.638049630999916, 49.13873463300007 ], [ -122.638107392, 49.137935470000116 ], [ -122.638042281, 49.137933436000019 ], [ -122.638055461999969, 49.13775107000005 ], [ -122.635582610999961, 49.137673760000013 ], [ -122.635545469999983, 49.138187273000042 ], [ -122.636803264999955, 49.138226603000092 ], [ -122.636641343999898, 49.14046594700006 ], [ -122.638596738999979, 49.140527061000071 ], [ -122.638592408999926, 49.140586992000131 ], [ -122.639037130999981, 49.140600887000069 ] ], [ [ -122.630852642999983, 49.136867209000094 ], [ -122.630901881999961, 49.136187383000127 ], [ -122.628192029, 49.136102477000037 ], [ -122.628218648999948, 49.13573524300007 ], [ -122.627338622999972, 49.135707656000086 ], [ -122.627362873999942, 49.135373181000084 ], [ -122.626909788999939, 49.135358975000067 ], [ -122.626832063999984, 49.136430852000061 ], [ -122.627367802000023, 49.136447649000075 ], [ -122.627344921999921, 49.136763219000052 ], [ -122.628820874999974, 49.136767973000097 ], [ -122.62881735799999, 49.137238791000058 ], [ -122.630129231999916, 49.137279895000077 ], [ -122.630160699999934, 49.136845536000124 ], [ -122.630852642999983, 49.136867209000094 ] ], [ [ -122.62572394699994, 49.130565498000102 ], [ -122.625787183999961, 49.129693613000086 ], [ -122.624470764999955, 49.129652306000089 ], [ -122.624462833999971, 49.129761615000106 ], [ -122.624235069999926, 49.129754466000087 ], [ -122.624222032999938, 49.12993412 ], [ -122.623609517999952, 49.129914894000144 ], [ -122.62359352, 49.13013533500002 ], [ -122.623514777999944, 49.130132863000085 ], [ -122.623496627999899, 49.13038293700005 ], [ -122.62334819499992, 49.130378277000048 ], [ -122.62322083399998, 49.130374278000062 ], [ -122.623205129, 49.130590643000112 ], [ -122.622932235999926, 49.130582075000106 ], [ -122.622909233999977, 49.130898949000077 ], [ -122.622293140999929, 49.130879604000057 ], [ -122.62227042499994, 49.131192464000058 ], [ -122.622255001999946, 49.131191980000089 ], [ -122.622085332, 49.133528746000053 ], [ -122.624184282999934, 49.133594641000109 ], [ -122.62437550199995, 49.130959430000075 ], [ -122.624407083999927, 49.130524178000044 ], [ -122.62572394699994, 49.130565498000102 ] ], [ [ -122.639178108999914, 49.126424917000072 ], [ -122.639183105999962, 49.125736434 ], [ -122.63959429099999, 49.125737718000039 ], [ -122.639596246999957, 49.125467861000054 ], [ -122.64082979899996, 49.125471705000059 ], [ -122.640827848999933, 49.125741562000073 ], [ -122.641239035999902, 49.125742841000076 ], [ -122.641236644999964, 49.12607413800005 ], [ -122.642003766999977, 49.126098093000067 ], [ -122.642084279999906, 49.124982490000072 ], [ -122.642331008000028, 49.124990194000112 ], [ -122.642389811999948, 49.124175294000054 ], [ -122.64339629499996, 49.124206713000056 ], [ -122.643422689999966, 49.123840819000129 ], [ -122.644098351999958, 49.123861905000069 ], [ -122.644140692999926, 49.123274835000068 ], [ -122.644715743999896, 49.123292778000057 ], [ -122.644796527999958, 49.122172448000107 ], [ -122.646398081999948, 49.122222404000055 ], [ -122.646405563999934, 49.122118586000113 ], [ -122.647177136000025, 49.122142645000032 ], [ -122.647177231999976, 49.122141304000102 ], [ -122.648717234999964, 49.12218930800001 ], [ -122.648788920999934, 49.121193941000101 ], [ -122.649195647999932, 49.121206615000055 ], [ -122.649252445999949, 49.120417850000102 ], [ -122.649316711999958, 49.120419852000033 ], [ -122.64943032099994, 49.118842004000072 ], [ -122.648517741999939, 49.118813564000021 ], [ -122.648571903999979, 49.118061500000053 ], [ -122.646952834, 49.11801102500003 ], [ -122.646968135999913, 49.117798640000075 ], [ -122.64658253399989, 49.117786616000068 ], [ -122.646598732999976, 49.117561795 ], [ -122.646249636000036, 49.117550907000101 ], [ -122.646289293999985, 49.117000594000103 ], [ -122.644939123999947, 49.116958473000075 ], [ -122.644939358, 49.116955235 ], [ -122.644591476999906, 49.116944379000046 ], [ -122.644588310999936, 49.117387430000086 ], [ -122.643354958999922, 49.117383627000059 ], [ -122.64335689399995, 49.11711376900012 ], [ -122.642534663999953, 49.117111226000119 ], [ -122.642536324999924, 49.116880227000181 ], [ -122.640130956999911, 49.116805092000099 ], [ -122.640113965999916, 49.117040444000118 ], [ -122.641899176999956, 49.117096212000042 ], [ -122.641800888999938, 49.118458271000122 ], [ -122.64211384099994, 49.118459241000032 ], [ -122.642104132999961, 49.119808529000032 ], [ -122.641703536999913, 49.11980728700005 ], [ -122.641639621999929, 49.120692926000089 ], [ -122.636172081999945, 49.120522031000029 ], [ -122.636263991999897, 49.119250550000139 ], [ -122.63572589099995, 49.119248854000013 ], [ -122.635516754999955, 49.12214147 ], [ -122.634570074999957, 49.122111846000067 ], [ -122.634515753999978, 49.12286289200005 ], [ -122.633754697999919, 49.122839072000026 ], [ -122.633631612999949, 49.124540408000087 ], [ -122.633042862999901, 49.12452197700005 ], [ -122.632933567999899, 49.126032321000039 ], [ -122.629957314999956, 49.125939099000057 ], [ -122.629956742, 49.125946992000081 ], [ -122.629257888, 49.12592509100012 ], [ -122.629211846999965, 49.126560609000087 ], [ -122.628443394, 49.126536521000013 ], [ -122.628419131999976, 49.126871327000117 ], [ -122.628395520999987, 49.126870587000049 ], [ -122.62832998, 49.127775016000037 ], [ -122.631400124999914, 49.12787122000006 ], [ -122.631356951999933, 49.128467505000103 ], [ -122.632185272999934, 49.128493446000057 ], [ -122.632338695999977, 49.126373858000086 ], [ -122.634290871999951, 49.126434969000044 ], [ -122.634294616999966, 49.126383204000071 ], [ -122.638456244999986, 49.126513362000075 ], [ -122.638464246999959, 49.126402606000113 ], [ -122.639178108999914, 49.126424917000072 ] ], [ [ -122.636322497999942, 49.118441143000091 ], [ -122.636324209999913, 49.118417454000081 ], [ -122.635643585999929, 49.118396161000113 ], [ -122.635640488999968, 49.118438993000076 ], [ -122.636322497999942, 49.118441143000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.780718336483932", "sL_AssetLoss": "5290", "sL_BldgLoss": "4130", "sL_StrLoss": "2260", "sL_NStrLoss": "1870", "sL_ContLoss": "1160", "geom_point": "0101000020E6100000AA3DD3E821A95EC0F07C2F53CD8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.642080830999973, 49.123046820000077 ], [ -122.64331432299997, 49.123050636000038 ], [ -122.643308513999955, 49.123860209000036 ], [ -122.642075002999945, 49.123856392000086 ], [ -122.642080830999973, 49.123046820000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218860667", "BldgCostT": "146686667", "sL_LossRatio": "0.713078814811619", "sL_AssetLoss": "3708440", "sL_BldgLoss": "2644410", "sL_StrLoss": "1194690", "sL_NStrLoss": "1449720", "sL_ContLoss": "1064030", "geom_point": "0101000020E6100000EF9CB9C920AB5EC0AF623B29DD904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.67490339499993, 49.12993464700002 ], [ -122.677786789999971, 49.129947146000056 ], [ -122.678403969999948, 49.130034695000042 ], [ -122.678522808999944, 49.130001411000109 ], [ -122.678909292999919, 49.130000741000032 ], [ -122.679545559999923, 49.130013172000048 ], [ -122.679547129999918, 49.130087104000062 ], [ -122.679538875999981, 49.130932141000088 ], [ -122.679498775999932, 49.133605561000103 ], [ -122.67772480299999, 49.133597651000031 ], [ -122.676186757999986, 49.13358617800008 ], [ -122.67501925, 49.133578555000092 ], [ -122.674903337999964, 49.133577797000086 ], [ -122.672303686999967, 49.133560749000047 ], [ -122.671622907999975, 49.133553598000034 ], [ -122.670978743999981, 49.133546843000026 ], [ -122.670319610999968, 49.133539907000078 ], [ -122.669855000999959, 49.133535495000039 ], [ -122.668429843999931, 49.133521933000061 ], [ -122.668292320999939, 49.133520493000077 ], [ -122.668213464999909, 49.133519743000065 ], [ -122.668261982000018, 49.13062602300004 ], [ -122.668272103999982, 49.130022322000073 ], [ -122.668278439999952, 49.129876517000092 ], [ -122.668483719999955, 49.129880178000107 ], [ -122.670000987999984, 49.129892916000088 ], [ -122.672058549999932, 49.129910524000152 ], [ -122.672979430999987, 49.129918401000133 ], [ -122.67490339499993, 49.12993464700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142271497", "BldgCostT": "96085087", "sL_LossRatio": "0.717115124002164", "sL_AssetLoss": "2088270", "sL_BldgLoss": "1497530", "sL_StrLoss": "700850", "sL_NStrLoss": "796680", "sL_ContLoss": "590740", "geom_point": "0101000020E6100000CB20D2CA58AB5EC00619124166904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.67490339499993, 49.12993464700002 ], [ -122.674905896999988, 49.129229100000039 ], [ -122.674910912999948, 49.12810369300005 ], [ -122.674964540999923, 49.127315031000052 ], [ -122.674935131999945, 49.126959953000025 ], [ -122.67494777899999, 49.126284458000036 ], [ -122.676885172999917, 49.12630288200009 ], [ -122.678931785999964, 49.126326446000107 ], [ -122.67978176299998, 49.126338272000119 ], [ -122.679750814999963, 49.127443978000073 ], [ -122.679741732999972, 49.127667164000044 ], [ -122.679678882999923, 49.12793904100004 ], [ -122.679577262999899, 49.128378539000046 ], [ -122.679545559999923, 49.130013172000048 ], [ -122.678909292999919, 49.130000741000032 ], [ -122.678522808999944, 49.130001411000109 ], [ -122.678403969999948, 49.130034695000042 ], [ -122.677786789999971, 49.129947146000056 ], [ -122.67490339499993, 49.12993464700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207418303", "BldgCostT": "130518746", "sL_LossRatio": "0.674960043048024", "sL_AssetLoss": "2995724", "sL_BldgLoss": "2021994", "sL_StrLoss": "895834", "sL_NStrLoss": "1126160", "sL_ContLoss": "973730", "geom_point": "0101000020E61000008DCEB70DFCAA5EC00505A56865904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.673617573999977, 49.126282010000104 ], [ -122.67494777899999, 49.126284458000036 ], [ -122.674935131999945, 49.126959953000025 ], [ -122.674964540999923, 49.127315031000052 ], [ -122.674910912999948, 49.12810369300005 ], [ -122.674905896999988, 49.129229100000039 ], [ -122.67490339499993, 49.12993464700002 ], [ -122.672979430999987, 49.129918401000133 ], [ -122.672058549999932, 49.129910524000152 ], [ -122.670000987999984, 49.129892916000088 ], [ -122.668483719999955, 49.129880178000107 ], [ -122.668278439999952, 49.129876517000092 ], [ -122.668381458999932, 49.126294841000032 ], [ -122.668595383999943, 49.126272596000014 ], [ -122.669752381999928, 49.12627467699999 ], [ -122.670385903999914, 49.126275810000038 ], [ -122.670629587999954, 49.126276281000102 ], [ -122.671369721999923, 49.12627774500001 ], [ -122.671849, 49.126278685000045 ], [ -122.673617573999977, 49.126282010000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39691333", "BldgCostT": "23953333", "sL_LossRatio": "0.674585392617398", "sL_AssetLoss": "457481", "sL_BldgLoss": "308610", "sL_StrLoss": "147260", "sL_NStrLoss": "161350", "sL_ContLoss": "148871", "geom_point": "0101000020E610000026CB9C70A7AA5EC0C010285165904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.66460936699994, 49.128170419000064 ], [ -122.664622796999936, 49.127543618000125 ], [ -122.664632191999914, 49.12695364000006 ], [ -122.66467125, 49.126198748000043 ], [ -122.665661492999959, 49.126203344000018 ], [ -122.667336610999953, 49.126211104000092 ], [ -122.668381458999932, 49.126294841000032 ], [ -122.668278439999952, 49.129876517000092 ], [ -122.668272103999982, 49.130022322000073 ], [ -122.667323526999922, 49.129970404000098 ], [ -122.667217695000019, 49.129967902000061 ], [ -122.667077304999978, 49.12996458 ], [ -122.664573286999911, 49.129953601000096 ], [ -122.664600840999952, 49.128591250000078 ], [ -122.66460936699994, 49.128170419000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84396886", "BldgCostT": "55972079", "sL_LossRatio": "0.697230297735833", "sL_AssetLoss": "1396540", "sL_BldgLoss": "973710", "sL_StrLoss": "447480", "sL_NStrLoss": "526230", "sL_ContLoss": "422830", "geom_point": "0101000020E6100000EF3E430FA7AA5EC0A5687AC3DC904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.667217695000019, 49.129967902000061 ], [ -122.667323526999922, 49.129970404000098 ], [ -122.668272103999982, 49.130022322000073 ], [ -122.668261982000018, 49.13062602300004 ], [ -122.668213464999909, 49.133519743000065 ], [ -122.666962569999981, 49.13351571500008 ], [ -122.666590030999956, 49.133514504000061 ], [ -122.664644406999983, 49.133510972000039 ], [ -122.664656291999975, 49.132810227000093 ], [ -122.66465614599997, 49.132620977000037 ], [ -122.664663901, 49.131805693000075 ], [ -122.66466849599999, 49.130251299000122 ], [ -122.664573286999911, 49.129953601000096 ], [ -122.667077304999978, 49.12996458 ], [ -122.667217695000019, 49.129967902000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77654250", "BldgCostT": "51345000", "sL_LossRatio": "0.719196643011864", "sL_AssetLoss": "1103370", "sL_BldgLoss": "793540", "sL_StrLoss": "371870", "sL_NStrLoss": "421670", "sL_ContLoss": "309830", "geom_point": "0101000020E6100000AF45457B40AA5EC072F55B22B4904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657079879999941, 49.133458194000127 ], [ -122.657117188999962, 49.132137299000064 ], [ -122.657134659999954, 49.131295074000036 ], [ -122.657162270999905, 49.129963855000049 ], [ -122.657168898999942, 49.129644505000051 ], [ -122.657183465999978, 49.128659599000088 ], [ -122.657191396999949, 49.128119907000091 ], [ -122.65720299399996, 49.127337309000104 ], [ -122.65720962599994, 49.126887568000022 ], [ -122.657220246999927, 49.126164783000043 ], [ -122.658111974999898, 49.126168169000088 ], [ -122.65941600499994, 49.126172629000067 ], [ -122.660425452999974, 49.126176951000026 ], [ -122.660828866999964, 49.127237551000114 ], [ -122.660901783999932, 49.127329043000039 ], [ -122.660932315999958, 49.127533642000074 ], [ -122.660929107999976, 49.127940889000087 ], [ -122.66093237699998, 49.129900162000055 ], [ -122.6609250599999, 49.130250485000083 ], [ -122.662013613999974, 49.130261709000081 ], [ -122.66466849599999, 49.130251299000122 ], [ -122.664663901, 49.131805693000075 ], [ -122.66465614599997, 49.132620977000037 ], [ -122.664656291999975, 49.132810227000093 ], [ -122.664644406999983, 49.133510972000039 ], [ -122.663476069999945, 49.133507362000088 ], [ -122.66342038, 49.133507180000073 ], [ -122.663124265999983, 49.133506273000044 ], [ -122.662575898999947, 49.133504563 ], [ -122.661434578999902, 49.133460965000097 ], [ -122.66127708599997, 49.133459668000029 ], [ -122.660879703999939, 49.13349779300006 ], [ -122.657079879999941, 49.133458194000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168352667", "BldgCostT": "112981667", "sL_LossRatio": "0.71703434444723", "sL_AssetLoss": "2552960", "sL_BldgLoss": "1830560", "sL_StrLoss": "840100", "sL_NStrLoss": "990460", "sL_ContLoss": "722400", "geom_point": "0101000020E6100000515704206AAA5EC052C0454068904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.664045400999925, 49.126194667000078 ], [ -122.66467125, 49.126198748000043 ], [ -122.664632191999914, 49.12695364000006 ], [ -122.664622796999936, 49.127543618000125 ], [ -122.66460936699994, 49.128170419000064 ], [ -122.664600840999952, 49.128591250000078 ], [ -122.664573286999911, 49.129953601000096 ], [ -122.66466849599999, 49.130251299000122 ], [ -122.662013613999974, 49.130261709000081 ], [ -122.6609250599999, 49.130250485000083 ], [ -122.66093237699998, 49.129900162000055 ], [ -122.660929107999976, 49.127940889000087 ], [ -122.660932315999958, 49.127533642000074 ], [ -122.660901783999932, 49.127329043000039 ], [ -122.660828866999964, 49.127237551000114 ], [ -122.660425452999974, 49.126176951000026 ], [ -122.660536405999977, 49.126177691000102 ], [ -122.661246729, 49.126181301000024 ], [ -122.662374422999932, 49.126186990000079 ], [ -122.663151109999959, 49.126189462000085 ], [ -122.663815283999924, 49.126193827000137 ], [ -122.664045400999925, 49.126194667000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103977416", "BldgCostT": "68291666", "sL_LossRatio": "0.705236783099657", "sL_AssetLoss": "1480680", "sL_BldgLoss": "1044230", "sL_StrLoss": "503000", "sL_NStrLoss": "541230", "sL_ContLoss": "436450", "geom_point": "0101000020E6100000F1A3AF5AF8A95EC0AFA8569908904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.65853092199994, 49.124378808000088 ], [ -122.659948247000017, 49.124388605000043 ], [ -122.65997325099994, 49.124841779000072 ], [ -122.660039653999931, 49.125252959000129 ], [ -122.660092406999965, 49.125377169000082 ], [ -122.660425452999974, 49.126176951000026 ], [ -122.65941600499994, 49.126172629000067 ], [ -122.658111974999898, 49.126168169000088 ], [ -122.657220246999927, 49.126164783000043 ], [ -122.65682784199997, 49.126163010000063 ], [ -122.655690322999945, 49.126157801000048 ], [ -122.65555318399997, 49.126157178000028 ], [ -122.654426128999916, 49.126152090000062 ], [ -122.65385356799996, 49.126149508 ], [ -122.651622392999954, 49.126139353000035 ], [ -122.651610636999948, 49.125674871000037 ], [ -122.651379820999949, 49.125264855000061 ], [ -122.651385910999977, 49.124675275000058 ], [ -122.651389523, 49.124330621000077 ], [ -122.65184147299999, 49.124332977000066 ], [ -122.652525951000015, 49.124340769000099 ], [ -122.652933331, 49.124343543000094 ], [ -122.653268120999954, 49.124345839000021 ], [ -122.653273774999946, 49.124344557000079 ], [ -122.655145569999945, 49.124356770000055 ], [ -122.65853092199994, 49.124378808000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94057584", "BldgCostT": "58238334", "sL_LossRatio": "0.677923597759759", "sL_AssetLoss": "1196300", "sL_BldgLoss": "811000", "sL_StrLoss": "398140", "sL_NStrLoss": "412860", "sL_ContLoss": "385300", "geom_point": "0101000020E61000000F092989F6A95EC0EB3E00A9CD8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.655678574, 49.122566186000057 ], [ -122.659943868999932, 49.122597798000072 ], [ -122.65996, 49.123461643000027 ], [ -122.659954217999925, 49.123918585000077 ], [ -122.659953209999955, 49.123998011000069 ], [ -122.659948247000017, 49.124388605000043 ], [ -122.65853092199994, 49.124378808000088 ], [ -122.655145569999945, 49.124356770000055 ], [ -122.653273774999946, 49.124344557000079 ], [ -122.653268120999954, 49.124345839000021 ], [ -122.652933331, 49.124343543000094 ], [ -122.652525951000015, 49.124340769000099 ], [ -122.65184147299999, 49.124332977000066 ], [ -122.651389523, 49.124330621000077 ], [ -122.651391478999969, 49.123803160000087 ], [ -122.651393129999974, 49.123366463000089 ], [ -122.65139665, 49.123182220000075 ], [ -122.651408967999913, 49.122536949000036 ], [ -122.651895149999987, 49.122539481000032 ], [ -122.652582528999943, 49.122544633000047 ], [ -122.653059098999989, 49.122547805000103 ], [ -122.653275381999919, 49.122549983000063 ], [ -122.654401094999969, 49.122556182000082 ], [ -122.655188381999892, 49.122562646000119 ], [ -122.655678574, 49.122566186000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42929667", "BldgCostT": "29606667", "sL_LossRatio": "0.752592696579922", "sL_AssetLoss": "569870", "sL_BldgLoss": "428880", "sL_StrLoss": "207920", "sL_NStrLoss": "220960", "sL_ContLoss": "140990", "geom_point": "0101000020E6100000971BD2C98EA95EC00C885AE4E88F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.648688801999953, 49.122927139000119 ], [ -122.65143585599999, 49.120796445000082 ], [ -122.651408967999913, 49.122536949000036 ], [ -122.65139665, 49.123182220000075 ], [ -122.651393129999974, 49.123366463000089 ], [ -122.651391478999969, 49.123803160000087 ], [ -122.651389523, 49.124330621000077 ], [ -122.651385910999977, 49.124675275000058 ], [ -122.651379820999949, 49.125264855000061 ], [ -122.651610636999948, 49.125674871000037 ], [ -122.651622392999954, 49.126139353000035 ], [ -122.651317893999973, 49.126137982000024 ], [ -122.648796802999982, 49.12612609100011 ], [ -122.646036910999925, 49.126114010000073 ], [ -122.646045282, 49.125331993000074 ], [ -122.646191117999962, 49.12502029400008 ], [ -122.64639571, 49.124777938000094 ], [ -122.646412812999969, 49.124757694000074 ], [ -122.646907567999961, 49.124359780000127 ], [ -122.647817154999956, 49.123628213000089 ], [ -122.648688801999953, 49.122927139000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175651333", "BldgCostT": "118423333", "sL_LossRatio": "0.783563188339488", "sL_AssetLoss": "1223960", "sL_BldgLoss": "959050", "sL_StrLoss": "493850", "sL_NStrLoss": "465200", "sL_ContLoss": "264910", "geom_point": "0101000020E6100000CF037181789E5EC0EA407B9A38864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.481378616999962, 49.047714349000046 ], [ -122.481559905999958, 49.047714496000019 ], [ -122.48154956599997, 49.048575909000135 ], [ -122.481578173999978, 49.049465643000119 ], [ -122.478106388999933, 49.049479742000081 ], [ -122.475536469999923, 49.049490094000063 ], [ -122.474797989999956, 49.04948660200008 ], [ -122.470645919999967, 49.049488094000111 ], [ -122.470635886999972, 49.047740797000067 ], [ -122.472127398999959, 49.047735810000042 ], [ -122.47817159799996, 49.04771158500008 ], [ -122.481378616999962, 49.047714349000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100326584", "BldgCostT": "66298334", "sL_LossRatio": "0.727556336890662", "sL_AssetLoss": "1064844", "sL_BldgLoss": "774734", "sL_StrLoss": "392974", "sL_NStrLoss": "381760", "sL_ContLoss": "290110", "geom_point": "0101000020E6100000C394613F789E5EC05C329E73FD854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.479264307999927, 49.045868882000029 ], [ -122.481563500999968, 49.045855001000092 ], [ -122.481563256999976, 49.045983246000063 ], [ -122.481561333999977, 49.046981409000061 ], [ -122.481561019999972, 49.04713426200005 ], [ -122.481560805999933, 49.047251164000023 ], [ -122.481559905999958, 49.047714496000019 ], [ -122.481378616999962, 49.047714349000046 ], [ -122.47817159799996, 49.04771158500008 ], [ -122.472127398999959, 49.047735810000042 ], [ -122.470635886999972, 49.047740797000067 ], [ -122.470630414999931, 49.047247693000052 ], [ -122.470615235999958, 49.045882311000121 ], [ -122.47404504299999, 49.045876961000054 ], [ -122.475130016999955, 49.04587528400004 ], [ -122.477100705999959, 49.045872256000052 ], [ -122.47866077799992, 49.045869843000069 ], [ -122.479264307999927, 49.045868882000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81560894", "BldgCostT": "54421523", "sL_LossRatio": "0.792020481170111", "sL_AssetLoss": "756988", "sL_BldgLoss": "599550", "sL_StrLoss": "338310", "sL_NStrLoss": "261240", "sL_ContLoss": "157438", "geom_point": "0101000020E6100000EFA98BCABCCB5EC04AE9C2DD13964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.187901654999962, 49.174722415000069 ], [ -123.187900632999913, 49.174452557000059 ], [ -123.187077442999907, 49.174453894000123 ], [ -123.187076424999958, 49.174184034000064 ], [ -123.185430052999948, 49.174186690000077 ], [ -123.18543106099996, 49.174456549000062 ], [ -123.18463984, 49.17445781600005 ], [ -123.183874486999969, 49.174386396000109 ], [ -123.181871308999987, 49.174262499000086 ], [ -123.181238192999956, 49.174255148000128 ], [ -123.181228315999959, 49.174031400000025 ], [ -123.18123574199997, 49.170131924000046 ], [ -123.182074775999979, 49.170120765000064 ], [ -123.182148194999982, 49.170119797000019 ], [ -123.18240090799999, 49.170089406000137 ], [ -123.182672075999946, 49.170025392000099 ], [ -123.182944497999983, 49.169919891000035 ], [ -123.183148702999958, 49.169785608000097 ], [ -123.183865082999944, 49.170112392000071 ], [ -123.183903311999984, 49.170137745000055 ], [ -123.184099689999954, 49.170268097000069 ], [ -123.184248119999936, 49.170420595000031 ], [ -123.184351122999885, 49.17064400400011 ], [ -123.184345701999945, 49.170846591000029 ], [ -123.184330209999985, 49.171260491000076 ], [ -123.184112098999975, 49.171691687000113 ], [ -123.184403694999901, 49.171767810000077 ], [ -123.18487550499998, 49.171944994000022 ], [ -123.18523817499999, 49.172137401000022 ], [ -123.185447387999943, 49.17228249700004 ], [ -123.185688806999977, 49.172552708000175 ], [ -123.185764196999926, 49.172711413000094 ], [ -123.185810715999978, 49.172916186000052 ], [ -123.186025991999941, 49.174117307000117 ], [ -123.186467613, 49.174070207000071 ], [ -123.187120627999917, 49.174040501000057 ], [ -123.187916397, 49.174076598000049 ], [ -123.188069709, 49.174103103000071 ], [ -123.188079260999942, 49.174275954000088 ], [ -123.188118922999962, 49.174722062000086 ], [ -123.187901654999962, 49.174722415000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87129249", "BldgCostT": "55194999", "sL_LossRatio": "0.695164137970632", "sL_AssetLoss": "1393340", "sL_BldgLoss": "968600", "sL_StrLoss": "455680", "sL_NStrLoss": "512920", "sL_ContLoss": "424740", "geom_point": "0101000020E6100000E1FDE17C64CB5EC00400436619964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.173905715999979, 49.174283539000022 ], [ -123.173905439999913, 49.174204620000062 ], [ -123.173284091999946, 49.174205554000061 ], [ -123.172842784999972, 49.17406170600001 ], [ -123.172566502999956, 49.174046645000018 ], [ -123.172031505999925, 49.174017494000068 ], [ -123.171027912999961, 49.174208918000033 ], [ -123.170652027999935, 49.174209474000101 ], [ -123.170496907999947, 49.174164187 ], [ -123.170442317999957, 49.174130702000063 ], [ -123.170454445999951, 49.173852148000066 ], [ -123.170449498999943, 49.173781138000052 ], [ -123.169978700999962, 49.173577814000105 ], [ -123.171394423, 49.173543008000102 ], [ -123.172129376999948, 49.173529053000067 ], [ -123.172948181999942, 49.173513498000041 ], [ -123.176216313999973, 49.173725409000021 ], [ -123.176219182999944, 49.172977704000083 ], [ -123.176233511999953, 49.171750310000043 ], [ -123.176293084999912, 49.1716482080001 ], [ -123.176404823999945, 49.171570997000124 ], [ -123.176548687999912, 49.171526100000037 ], [ -123.177868495999988, 49.171443597000064 ], [ -123.177956402999925, 49.171418897000152 ], [ -123.17813311, 49.171286602000066 ], [ -123.178172712, 49.171198493000112 ], [ -123.178173252, 49.171156617000129 ], [ -123.178186288999925, 49.170160088000038 ], [ -123.178200078999964, 49.170160140000135 ], [ -123.180072525999961, 49.1701645220001 ], [ -123.180086288, 49.170164378000081 ], [ -123.181056153999961, 49.170154243000106 ], [ -123.181139813999891, 49.170131209000033 ], [ -123.18123574199997, 49.170131924000046 ], [ -123.181228315999959, 49.174031400000025 ], [ -123.181238192999956, 49.174255148000128 ], [ -123.179908385999966, 49.17423969700009 ], [ -123.179263590999938, 49.174239711000013 ], [ -123.178856704999973, 49.174294806000077 ], [ -123.178862636999938, 49.174197050000053 ], [ -123.176374999, 49.174200874000057 ], [ -123.176375520999912, 49.174347394000065 ], [ -123.174544693999906, 49.174328016000118 ], [ -123.173905715999979, 49.174283539000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86805000", "BldgCostT": "59130000", "sL_LossRatio": "0.849314691918604", "sL_AssetLoss": "371044.8", "sL_BldgLoss": "315133.8", "sL_StrLoss": "208611.8", "sL_NStrLoss": "106522", "sL_ContLoss": "55911", "geom_point": "0101000020E6100000270B25B4A1CA5EC0D0E4AC99C6AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.161218804999947, 49.352656694000117 ], [ -123.16032698599993, 49.349963895000045 ], [ -123.160377849, 49.349961583000045 ], [ -123.160404713999966, 49.349960349000114 ], [ -123.160714803999923, 49.349946192000068 ], [ -123.161856189999952, 49.349683479000078 ], [ -123.162776709999918, 49.349471587000075 ], [ -123.16293525399999, 49.349124116000041 ], [ -123.163039013999963, 49.348896697000029 ], [ -123.163191195999914, 49.348770994000098 ], [ -123.163337207999973, 49.348701913000092 ], [ -123.165156703999955, 49.348520893000092 ], [ -123.166741891999962, 49.348366994000052 ], [ -123.166957277, 49.348287999000036 ], [ -123.167026796999977, 49.348209711 ], [ -123.16704479, 49.348139898000049 ], [ -123.166970805999966, 49.347955106000057 ], [ -123.166213807999981, 49.347776816000078 ], [ -123.165692986999943, 49.347583903000029 ], [ -123.165508978, 49.347487206000096 ], [ -123.163715614999944, 49.347107002000044 ], [ -123.163240804999958, 49.346951294000078 ], [ -123.163026103000021, 49.346793485000056 ], [ -123.163006893999977, 49.346657900000061 ], [ -123.163036408999929, 49.346580290000048 ], [ -123.163203492999955, 49.346481091 ], [ -123.163467986999947, 49.346431311000046 ], [ -123.165710196999896, 49.346447810000079 ], [ -123.16643141199998, 49.346379385000049 ], [ -123.166702810999979, 49.346329686000082 ], [ -123.16689310199996, 49.346256382000064 ], [ -123.167029390999943, 49.346165392000039 ], [ -123.167152784999985, 49.346037998000106 ], [ -123.171978236999962, 49.348103720000076 ], [ -123.171192410999979, 49.348547236000066 ], [ -123.170386381999961, 49.348990810000096 ], [ -123.17048083499999, 49.350114467000012 ], [ -123.17052968899992, 49.350695693000063 ], [ -123.169983021999954, 49.350696498000076 ], [ -123.169983952999985, 49.350966348000064 ], [ -123.169570886999907, 49.350966955000054 ], [ -123.169572740999939, 49.351506656 ], [ -123.169159670999974, 49.351507262000041 ], [ -123.169163371999986, 49.35258666500004 ], [ -123.167511051999938, 49.352589072000093 ], [ -123.167510135999933, 49.352319220000012 ], [ -123.165857823999943, 49.352321603000071 ], [ -123.165859111999936, 49.352704728000077 ], [ -123.165127779000017, 49.352701597000134 ], [ -123.164834422999931, 49.352705146000083 ], [ -123.163389502999948, 49.352722686000035 ], [ -123.161218804999947, 49.352656694000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.863060016906171", "sL_AssetLoss": "2366", "sL_BldgLoss": "2042", "sL_StrLoss": "1430", "sL_NStrLoss": "612", "sL_ContLoss": "324", "geom_point": "0101000020E61000006AD708ED6ACB5EC0012B6E7938AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.177842809999959, 49.353894512000103 ], [ -123.177841939999936, 49.353653047000122 ], [ -123.177428850999902, 49.35365368300004 ], [ -123.177427038999937, 49.353150029000105 ], [ -123.177424967999954, 49.352574280000063 ], [ -123.178664206999926, 49.352572371000107 ], [ -123.178665183999954, 49.352842222000049 ], [ -123.179078266999966, 49.352841583000085 ], [ -123.179079244999954, 49.353111433000045 ], [ -123.179492329999945, 49.353110793000035 ], [ -123.179494684999938, 49.353757781000112 ], [ -123.179495275999926, 49.353920344000102 ], [ -123.178105871999961, 49.353922493000042 ], [ -123.177842911999946, 49.353922898000107 ], [ -123.177842809999959, 49.353894512000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115621250", "BldgCostT": "76640000", "sL_LossRatio": "0.779515568738797", "sL_AssetLoss": "264780.6", "sL_BldgLoss": "206400.6", "sL_StrLoss": "97689.6", "sL_NStrLoss": "108711", "sL_ContLoss": "58380", "geom_point": "0101000020E6100000D1FF49AE28CB5EC0CEA313F088AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17205493199998, 49.352582397000035 ], [ -123.172053990999942, 49.352312547000082 ], [ -123.171227835, 49.352313774000088 ], [ -123.171224088, 49.351234370000029 ], [ -123.171637157999967, 49.351233758000092 ], [ -123.171635278999958, 49.350694056000115 ], [ -123.172874472, 49.350692210000034 ], [ -123.172873525999989, 49.35042235800006 ], [ -123.17411271099995, 49.350420499000087 ], [ -123.174111758999928, 49.350150649000085 ], [ -123.17204646199994, 49.350153741000021 ], [ -123.17204740299999, 49.350423592000034 ], [ -123.170808216999916, 49.350425429000026 ], [ -123.170809150999958, 49.35069528000011 ], [ -123.17052968899992, 49.350695693000063 ], [ -123.17048083499999, 49.350114467000012 ], [ -123.170386381999961, 49.348990810000096 ], [ -123.171192410999979, 49.348547236000066 ], [ -123.171978236999962, 49.348103720000076 ], [ -123.167152784999985, 49.346037998000106 ], [ -123.167208715999934, 49.345910706000055 ], [ -123.16722071599996, 49.345782193000083 ], [ -123.167171580999977, 49.3456412950001 ], [ -123.1670376899999, 49.34551268900011 ], [ -123.166882706999942, 49.345459097000102 ], [ -123.166728513999914, 49.345437012000048 ], [ -123.16394349299999, 49.345431511000065 ], [ -123.163959294000023, 49.345218489000075 ], [ -123.164120107999963, 49.344996712000054 ], [ -123.164264798999923, 49.345016698000094 ], [ -123.164901800999985, 49.344929787000112 ], [ -123.165772475999972, 49.344720314000021 ], [ -123.165890594999979, 49.344691902000129 ], [ -123.166596897999938, 49.344620311000121 ], [ -123.167166216999973, 49.344648706000079 ], [ -123.16760598799999, 49.344703505000041 ], [ -123.167715087999966, 49.3446739010001 ], [ -123.16778050399995, 49.344618006000061 ], [ -123.16778289299999, 49.344608558000033 ], [ -123.167801902999955, 49.344533077000037 ], [ -123.167811395999962, 49.344495426000037 ], [ -123.16816960099996, 49.344488602000034 ], [ -123.168833308999979, 49.344391604000087 ], [ -123.169323337999927, 49.34432047500006 ], [ -123.169495624999925, 49.344295470000105 ], [ -123.17011288499998, 49.344237790000115 ], [ -123.172598314999931, 49.344302804000073 ], [ -123.172567840999974, 49.344464093000106 ], [ -123.172662823999957, 49.344554899000094 ], [ -123.172932300999975, 49.3446475000001 ], [ -123.173791794999929, 49.344950004000083 ], [ -123.174397799999966, 49.345048901000034 ], [ -123.175474589999908, 49.345224593000054 ], [ -123.175953182999976, 49.345320808000061 ], [ -123.176279595999958, 49.34542930200012 ], [ -123.176520290999946, 49.345543689000102 ], [ -123.176886711999913, 49.345809889000087 ], [ -123.177264407999971, 49.34592081600001 ], [ -123.177622123999939, 49.345931034000053 ], [ -123.177945984999937, 49.345869687000054 ], [ -123.178348333999978, 49.345793476000111 ], [ -123.178455378999928, 49.345781771000127 ], [ -123.178936621, 49.345729171000137 ], [ -123.179231457999961, 49.34557924000007 ], [ -123.179366317999936, 49.345486094000094 ], [ -123.179397008999899, 49.345045951000031 ], [ -123.180509725999968, 49.345068423000107 ], [ -123.181345457999953, 49.345085289000039 ], [ -123.180542716999952, 49.346064346000063 ], [ -123.180560632999942, 49.346361387000059 ], [ -123.180563348999954, 49.346406440000109 ], [ -123.180592998999913, 49.346898684000045 ], [ -123.180606634999961, 49.347124337000082 ], [ -123.180606704999946, 49.347125889000047 ], [ -123.18071726699999, 49.347560116000103 ], [ -123.179885097999943, 49.347538414000098 ], [ -123.179885733999939, 49.347713137000021 ], [ -123.180298774000022, 49.34771249300011 ], [ -123.180303704999915, 49.349061746000096 ], [ -123.180852988999973, 49.349060889000043 ], [ -123.180850831999919, 49.349066366000045 ], [ -123.1806974, 49.349455885000069 ], [ -123.180581920999913, 49.34962201600009 ], [ -123.180220957999936, 49.350141285000056 ], [ -123.179894588999957, 49.35014179400013 ], [ -123.179895573, 49.350411644000133 ], [ -123.179482511999979, 49.350412286000051 ], [ -123.17948643899993, 49.351491689000035 ], [ -123.178247226999986, 49.351493606000084 ], [ -123.178246251999937, 49.351223755000071 ], [ -123.177007046999947, 49.351225659000072 ], [ -123.177008015999945, 49.351495510000099 ], [ -123.176594944999962, 49.351496142000066 ], [ -123.176595909999946, 49.351765993000143 ], [ -123.175769765, 49.351767252000066 ], [ -123.175770726999957, 49.352037104000068 ], [ -123.174531499999944, 49.352038980000096 ], [ -123.174529591999885, 49.351499279000016 ], [ -123.174116521999977, 49.351499902000064 ], [ -123.174118424999904, 49.352039604000048 ], [ -123.173292275, 49.352040845000069 ], [ -123.173294170999952, 49.352580546000127 ], [ -123.17205493199998, 49.352582397000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770001", "BldgCostT": "2600001", "sL_LossRatio": "0.86897330322752", "sL_AssetLoss": "15058", "sL_BldgLoss": "13085", "sL_StrLoss": "8700", "sL_NStrLoss": "4385", "sL_ContLoss": "1973", "geom_point": "0101000020E6100000BD3F185720CA5EC0ECFECAAD3DAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156824515999944, 49.353007688000098 ], [ -123.157205221999931, 49.352725101000047 ], [ -123.157570176999982, 49.352386938000031 ], [ -123.157669295999966, 49.352295094000063 ], [ -123.15810740699996, 49.352041815000085 ], [ -123.158282809999946, 49.351875279000083 ], [ -123.159301098999919, 49.352507306000042 ], [ -123.15956378599995, 49.352599706000056 ], [ -123.159577270999961, 49.352601493000044 ], [ -123.159900980999964, 49.352644597000058 ], [ -123.159935420999943, 49.35264491500002 ], [ -123.161218804999947, 49.352656694000117 ], [ -123.163389502999948, 49.352722686000035 ], [ -123.164834422999931, 49.352705146000083 ], [ -123.165127779000017, 49.352701597000134 ], [ -123.165859111999936, 49.352704728000077 ], [ -123.165860545999962, 49.35313115600011 ], [ -123.163795122999929, 49.353134101000066 ], [ -123.163796018999989, 49.353403951000075 ], [ -123.160904409999915, 49.353408013000063 ], [ -123.160903529999956, 49.353138161000082 ], [ -123.158838106999923, 49.353141019000098 ], [ -123.158837235999982, 49.352871168000085 ], [ -123.158011071999965, 49.352872300000051 ], [ -123.158011936999984, 49.353142150000053 ], [ -123.157598851999978, 49.3531427140001 ], [ -123.157599714999961, 49.353412566000038 ], [ -123.157186626999987, 49.353413129000046 ], [ -123.157187486999987, 49.353682978000101 ], [ -123.156361306999898, 49.353684100000073 ], [ -123.156362161999965, 49.353953950000061 ], [ -123.15515095799999, 49.35395558200009 ], [ -123.155122917999932, 49.353964745000049 ], [ -123.155123736999911, 49.354225471000063 ], [ -123.154278709999971, 49.354226602000097 ], [ -123.153885283999912, 49.354493261000123 ], [ -123.153886136999972, 49.354766829000042 ], [ -123.153473040000023, 49.354767378000048 ], [ -123.153473877999929, 49.355037229000111 ], [ -123.152647677999937, 49.355038323000052 ], [ -123.152649347999898, 49.35557802400006 ], [ -123.15223624299999, 49.355578570000063 ], [ -123.15223707499996, 49.355848420000022 ], [ -123.151842183999946, 49.355848940000023 ], [ -123.151753107, 49.355724137000045 ], [ -123.151694012999926, 49.355641302000087 ], [ -123.151353550999886, 49.355406886000075 ], [ -123.151428244999977, 49.355394023000066 ], [ -123.151738284999965, 49.355340616000042 ], [ -123.151909002999943, 49.355251506000052 ], [ -123.152098993999971, 49.354846705000099 ], [ -123.152208786, 49.354696503000071 ], [ -123.152324404999959, 49.35460770800006 ], [ -123.152849898999975, 49.354455799000085 ], [ -123.15293553399999, 49.354403004000083 ], [ -123.153054393, 49.354329709000069 ], [ -123.153132472999971, 49.354223696000084 ], [ -123.153169108999961, 49.35401028800004 ], [ -123.15363021899995, 49.353853095000026 ], [ -123.154245995999972, 49.353687406000063 ], [ -123.155171590999927, 49.353519905000113 ], [ -123.156450504999924, 49.353158200000074 ], [ -123.156824515999944, 49.353007688000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "293314751", "BldgCostT": "196180001", "sL_LossRatio": "0.82725013729311", "sL_AssetLoss": "697413", "sL_BldgLoss": "576935", "sL_StrLoss": "332457", "sL_NStrLoss": "244478", "sL_ContLoss": "120478", "geom_point": "0101000020E61000003F0BA5A39ACB5EC0616E522C92AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.188937204999888, 49.38100770800007 ], [ -123.188957507999945, 49.380673546000018 ], [ -123.188004492999966, 49.380648784000087 ], [ -123.18817190799993, 49.377894125000061 ], [ -123.187557226999957, 49.377878148000022 ], [ -123.187479282999959, 49.379160431000109 ], [ -123.186455070999955, 49.379133804000013 ], [ -123.186444249999951, 49.379311756000028 ], [ -123.180944320999942, 49.379168602000071 ], [ -123.180957077999963, 49.378959245 ], [ -123.180561061999981, 49.378948926000056 ], [ -123.180542307999957, 49.379256700000028 ], [ -123.175042402999978, 49.379113245000063 ], [ -123.175220774999914, 49.376191665000079 ], [ -123.175208990999963, 49.376191357000032 ], [ -123.175223428999971, 49.37595486900009 ], [ -123.171315066999938, 49.375852755000032 ], [ -123.171315622999884, 49.375843664000051 ], [ -123.168196656, 49.375762073000089 ], [ -123.168203237999975, 49.375654513000065 ], [ -123.16747903699995, 49.375635555000045 ], [ -123.16769918199995, 49.372039061000059 ], [ -123.168081501999936, 49.372049071000042 ], [ -123.168170944999957, 49.370587469000057 ], [ -123.168627564999952, 49.370599421000072 ], [ -123.168652047999956, 49.370199279000055 ], [ -123.170618388999955, 49.37025072600003 ], [ -123.170745878999938, 49.368165425000036 ], [ -123.17152554099998, 49.368185814000114 ], [ -123.171557375999953, 49.367664943000058 ], [ -123.17217069899999, 49.367680978000067 ], [ -123.172215188999942, 49.366952857000051 ], [ -123.173333183999944, 49.366982078000021 ], [ -123.173353460999948, 49.366650084000071 ], [ -123.176016778999895, 49.366719648000043 ], [ -123.176078003999976, 49.365716248000091 ], [ -123.179088986999915, 49.365794814 ], [ -123.179132016, 49.365088821000064 ], [ -123.181647813999959, 49.365154401000105 ], [ -123.181772022999951, 49.363114579000069 ], [ -123.183595895999929, 49.363162087000042 ], [ -123.183608556999943, 49.362954023000029 ], [ -123.183630323999949, 49.362954591000054 ], [ -123.183661683999901, 49.362439224000042 ], [ -123.189159632999946, 49.362582244000073 ], [ -123.189141377999974, 49.362882849000087 ], [ -123.189109816999988, 49.363402544000074 ], [ -123.189090753999935, 49.36371641900012 ], [ -123.189916328, 49.363737871000112 ], [ -123.191329257999939, 49.363774570000025 ], [ -123.191359603999928, 49.364455585000059 ], [ -123.190264373999966, 49.380484180000103 ], [ -123.190226292999952, 49.381041189000058 ], [ -123.188937204999888, 49.38100770800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.882", "sL_AssetLoss": "5000", "sL_BldgLoss": "4410", "sL_StrLoss": "2840", "sL_NStrLoss": "1570", "sL_ContLoss": "590", "geom_point": "0101000020E6100000B22891E9F5CB5EC040713AA848AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185012315999984, 49.354167773000057 ], [ -123.185091834999923, 49.352860002000064 ], [ -123.190509861999928, 49.354301271000082 ], [ -123.190509288999976, 49.354310727000076 ], [ -123.185012315999984, 49.354167773000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104981166", "BldgCostT": "70926666", "sL_LossRatio": "0.867918817966414", "sL_AssetLoss": "386588", "sL_BldgLoss": "335527", "sL_StrLoss": "221812", "sL_NStrLoss": "113715", "sL_ContLoss": "51061", "geom_point": "0101000020E61000005BB7BDB4D3C95EC0769B683E04AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147495506999945, 49.351599308000061 ], [ -123.147446923999937, 49.351485745000055 ], [ -123.14730992199992, 49.351165369000078 ], [ -123.147216734999986, 49.350947563000098 ], [ -123.147232452999916, 49.350939493000027 ], [ -123.148554482999955, 49.350259998000077 ], [ -123.149380792999978, 49.349835303000113 ], [ -123.149644305999956, 49.34966839500008 ], [ -123.150131814999938, 49.349239989000061 ], [ -123.15028492, 49.349323301000055 ], [ -123.150542308999945, 49.3493453070001 ], [ -123.151470594999935, 49.349021296000018 ], [ -123.151693289, 49.348980293000075 ], [ -123.151972703999917, 49.348979584000098 ], [ -123.153915296999969, 49.349484588000124 ], [ -123.154587712999927, 49.349538305000124 ], [ -123.155432417999975, 49.349544400000077 ], [ -123.156259985999924, 49.349498496000123 ], [ -123.157470807, 49.349431297000073 ], [ -123.158498881999918, 49.34947639500011 ], [ -123.158825990999958, 49.349528197000083 ], [ -123.159763458999976, 49.349820020000081 ], [ -123.160090078999986, 49.349921695000063 ], [ -123.16032698599993, 49.349963895000045 ], [ -123.161218804999947, 49.352656694000117 ], [ -123.159935420999943, 49.35264491500002 ], [ -123.159900980999964, 49.352644597000058 ], [ -123.159577270999961, 49.352601493000044 ], [ -123.15956378599995, 49.352599706000056 ], [ -123.159301098999919, 49.352507306000042 ], [ -123.158282809999946, 49.351875279000083 ], [ -123.15810740699996, 49.352041815000085 ], [ -123.157669295999966, 49.352295094000063 ], [ -123.157570176999982, 49.352386938000031 ], [ -123.157205221999931, 49.352725101000047 ], [ -123.156824515999944, 49.353007688000098 ], [ -123.156450504999924, 49.353158200000074 ], [ -123.155171590999927, 49.353519905000113 ], [ -123.154245995999972, 49.353687406000063 ], [ -123.15363021899995, 49.353853095000026 ], [ -123.153169108999961, 49.35401028800004 ], [ -123.153132472999971, 49.354223696000084 ], [ -123.153054393, 49.354329709000069 ], [ -123.15293553399999, 49.354403004000083 ], [ -123.152849898999975, 49.354455799000085 ], [ -123.152324404999959, 49.35460770800006 ], [ -123.152208786, 49.354696503000071 ], [ -123.152098993999971, 49.354846705000099 ], [ -123.151909002999943, 49.355251506000052 ], [ -123.151738284999965, 49.355340616000042 ], [ -123.151428244999977, 49.355394023000066 ], [ -123.151353550999886, 49.355406886000075 ], [ -123.15106591599999, 49.355208820000094 ], [ -123.150781807999977, 49.355013197000027 ], [ -123.149830801999926, 49.354545996000184 ], [ -123.149119448999954, 49.354355898000058 ], [ -123.149058009999962, 49.354339490000093 ], [ -123.148967154000019, 49.35428148600009 ], [ -123.148567396999965, 49.35402620700004 ], [ -123.148313104999971, 49.353863808000057 ], [ -123.148311333, 49.353855381000066 ], [ -123.148296390999946, 49.353783391000121 ], [ -123.14827000399994, 49.353656426000065 ], [ -123.148168578999943, 49.353168456000027 ], [ -123.148118923999931, 49.352929603000064 ], [ -123.147597627999943, 49.352078711000033 ], [ -123.147570302999895, 49.352034167000063 ], [ -123.147523779, 49.351958200000105 ], [ -123.147495506999945, 49.351599308000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174854166", "BldgCostT": "120846666", "sL_LossRatio": "0.834310336189188", "sL_AssetLoss": "1197540", "sL_BldgLoss": "999120", "sL_StrLoss": "468400", "sL_NStrLoss": "530720", "sL_ContLoss": "198420", "geom_point": "0101000020E61000005CEA62CB59B75EC0C4BDE070F29E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.862244988999976, 49.242760904000072 ], [ -122.862238862999916, 49.242148542000045 ], [ -122.862237885999917, 49.242054417000098 ], [ -122.86223798899999, 49.24170670200003 ], [ -122.862255200000021, 49.241290890000037 ], [ -122.862254281999967, 49.240795401000099 ], [ -122.865051889999918, 49.240813709000065 ], [ -122.866656323000015, 49.240825453000056 ], [ -122.867454013000014, 49.240831299000021 ], [ -122.867556372999985, 49.24079999600005 ], [ -122.867590401999934, 49.241719891000045 ], [ -122.86760359099999, 49.242685206000061 ], [ -122.867049811999905, 49.242648399000089 ], [ -122.865087908999968, 49.242618400000019 ], [ -122.865092307999973, 49.242818496000076 ], [ -122.864397488999955, 49.242811380000049 ], [ -122.862318586999933, 49.242790109000033 ], [ -122.862244988999976, 49.242760904000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122372720", "BldgCostT": "75775413", "sL_LossRatio": "0.684109384679571", "sL_AssetLoss": "1581940", "sL_BldgLoss": "1082220", "sL_StrLoss": "504220", "sL_NStrLoss": "578000", "sL_ContLoss": "499720", "geom_point": "0101000020E61000005DA0615A69B75EC033D9F477A19E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.868674574999957, 49.237437001000046 ], [ -122.869235504999949, 49.237326183000043 ], [ -122.869229589999961, 49.237921503000059 ], [ -122.869220904000017, 49.238865394000115 ], [ -122.86921632499994, 49.239748200000086 ], [ -122.86753050399993, 49.239739789000119 ], [ -122.867540075999955, 49.240065300000012 ], [ -122.867548309000014, 49.240411504000086 ], [ -122.867556372999985, 49.24079999600005 ], [ -122.867454013000014, 49.240831299000021 ], [ -122.866656323000015, 49.240825453000056 ], [ -122.865051889999918, 49.240813709000065 ], [ -122.862254281999967, 49.240795401000099 ], [ -122.862262289999947, 49.240536208000016 ], [ -122.86225916399998, 49.240340362000033 ], [ -122.86224922400001, 49.239713295000101 ], [ -122.862244216999912, 49.238772608000048 ], [ -122.862617230999959, 49.238692530000073 ], [ -122.864734691999956, 49.238237941000087 ], [ -122.864849914, 49.238213203000043 ], [ -122.865045017999947, 49.238172009000031 ], [ -122.86618919599999, 49.237938459000091 ], [ -122.867509601999984, 49.237668902000046 ], [ -122.868389209999947, 49.237494400000102 ], [ -122.868674574999957, 49.237437001000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104543267", "BldgCostT": "66530229", "sL_LossRatio": "0.711674119681064", "sL_AssetLoss": "1370810", "sL_BldgLoss": "975570", "sL_StrLoss": "451410", "sL_NStrLoss": "524160", "sL_ContLoss": "395240", "geom_point": "0101000020E6100000E8682CCC08B75EC041003EB2189F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861006387999964, 49.240524909000072 ], [ -122.862262289999947, 49.240536208000016 ], [ -122.862254281999967, 49.240795401000099 ], [ -122.862255200000021, 49.241290890000037 ], [ -122.86223798899999, 49.24170670200003 ], [ -122.862237885999917, 49.242054417000098 ], [ -122.862238862999916, 49.242148542000045 ], [ -122.862244988999976, 49.242760904000072 ], [ -122.862224576999921, 49.243530602000142 ], [ -122.862228342999941, 49.243956630000099 ], [ -122.86223251399997, 49.244429895000138 ], [ -122.862223872999948, 49.244847570000033 ], [ -122.86222170799999, 49.24495390400007 ], [ -122.860963488999957, 49.244956108000089 ], [ -122.857286897000023, 49.244995806000105 ], [ -122.857283992999925, 49.244491302000036 ], [ -122.857292, 49.243906798000111 ], [ -122.857299398999942, 49.243696190000037 ], [ -122.857304611999965, 49.243348257000065 ], [ -122.857306519999923, 49.243222257000085 ], [ -122.857312725999947, 49.242809201 ], [ -122.857318898999907, 49.24168319300005 ], [ -122.858021000999898, 49.241678514000078 ], [ -122.8580236, 49.241275789000042 ], [ -122.859780892999979, 49.24128380100003 ], [ -122.859776778999972, 49.240532294000076 ], [ -122.861006387999964, 49.240524909000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209013718", "BldgCostT": "138890411", "sL_LossRatio": "0.727556816276715", "sL_AssetLoss": "1491210", "sL_BldgLoss": "1084940", "sL_StrLoss": "451450", "sL_NStrLoss": "633490", "sL_ContLoss": "406270", "geom_point": "0101000020E6100000789F6E03EBB65EC0367179E6C49E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856565202999917, 49.241679310000038 ], [ -122.856566217999898, 49.241299984000072 ], [ -122.85482928499999, 49.241294396000043 ], [ -122.852701390999954, 49.241287410000055 ], [ -122.852531833999961, 49.241286857000098 ], [ -122.85242648099991, 49.241286500000065 ], [ -122.852427985999938, 49.241245733000056 ], [ -122.852450706999932, 49.240625893000079 ], [ -122.854179604999928, 49.240587189000045 ], [ -122.854832514999913, 49.240436894000041 ], [ -122.857318197, 49.239767893000042 ], [ -122.858944090999955, 49.239342312000112 ], [ -122.859773019999949, 49.239208805000032 ], [ -122.861026699999982, 49.239006487000026 ], [ -122.862244216999912, 49.238772608000048 ], [ -122.86224922400001, 49.239713295000101 ], [ -122.86225916399998, 49.240340362000033 ], [ -122.862262289999947, 49.240536208000016 ], [ -122.861006387999964, 49.240524909000072 ], [ -122.859776778999972, 49.240532294000076 ], [ -122.859780892999979, 49.24128380100003 ], [ -122.8580236, 49.241275789000042 ], [ -122.858021000999898, 49.241678514000078 ], [ -122.857318898999907, 49.24168319300005 ], [ -122.856565202999917, 49.241679310000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56742249", "BldgCostT": "35184999", "sL_LossRatio": "0.719855314171847", "sL_AssetLoss": "461690", "sL_BldgLoss": "332350", "sL_StrLoss": "179220", "sL_NStrLoss": "153130", "sL_ContLoss": "129340", "geom_point": "0101000020E6100000E4130DAD69B25EC00E745036A3A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.787559019999932, 49.312657603000048 ], [ -122.787357983999939, 49.312440800000104 ], [ -122.78718368399997, 49.312316696000046 ], [ -122.786871198999947, 49.312122805000101 ], [ -122.786243212999963, 49.311736502000052 ], [ -122.786068294999922, 49.311580903000099 ], [ -122.7858912089999, 49.311357604000072 ], [ -122.785839602999914, 49.311268697000081 ], [ -122.785803412999897, 49.311199194000082 ], [ -122.785748620999968, 49.311093906000075 ], [ -122.785709477999944, 49.310764800000065 ], [ -122.785741295999969, 49.310246905000064 ], [ -122.785922407999976, 49.309420794000125 ], [ -122.78669289699998, 49.307593392000086 ], [ -122.786974513999937, 49.307299903000079 ], [ -122.787443816999939, 49.306938188000096 ], [ -122.78795836599997, 49.306674637000086 ], [ -122.788216726999934, 49.306542310000047 ], [ -122.788275129999946, 49.306527046000063 ], [ -122.78880499199991, 49.306388699000117 ], [ -122.788845588999934, 49.306382670000062 ], [ -122.789793306999982, 49.307348313000084 ], [ -122.790058482999925, 49.30799402000013 ], [ -122.789731124999946, 49.307993425000106 ], [ -122.789733422999916, 49.307453720000133 ], [ -122.788908018999919, 49.307452215000112 ], [ -122.788910323999957, 49.306912512000075 ], [ -122.788497627999917, 49.306911756000019 ], [ -122.788493008, 49.307991166000086 ], [ -122.789318417999965, 49.307992673000101 ], [ -122.789305760999966, 49.310961046000109 ], [ -122.788893031000015, 49.310960293000029 ], [ -122.78888957099997, 49.311769849000065 ], [ -122.788476832999919, 49.311769094000105 ], [ -122.788474523999966, 49.3123087990001 ], [ -122.788061780999953, 49.31230804300003 ], [ -122.788060516999934, 49.31260249700005 ], [ -122.788601372999949, 49.312618577000094 ], [ -122.787839450999982, 49.313201484000075 ], [ -122.787559019999932, 49.312657603000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110162583", "BldgCostT": "74028333", "sL_LossRatio": "0.755983740980452", "sL_AssetLoss": "1038439", "sL_BldgLoss": "785043", "sL_StrLoss": "411963", "sL_NStrLoss": "373080", "sL_ContLoss": "253396", "geom_point": "0101000020E6100000A758DA4E40B25EC069C3DD303CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782450542000021, 49.315535865000072 ], [ -122.782269903999989, 49.315357913000064 ], [ -122.782271658999932, 49.314960003000067 ], [ -122.781853340999987, 49.31494754200007 ], [ -122.779511257999957, 49.312640097000056 ], [ -122.779377763999918, 49.312535727000068 ], [ -122.779433395999945, 49.311735415000058 ], [ -122.781179059999914, 49.311324027000055 ], [ -122.78146217199999, 49.311332463000099 ], [ -122.78146250399999, 49.311257227000091 ], [ -122.781634629999971, 49.31121666100011 ], [ -122.781970465, 49.311217295000056 ], [ -122.781976097999959, 49.311136184000091 ], [ -122.782111973000013, 49.311104161000095 ], [ -122.784538817999959, 49.311481303000058 ], [ -122.7858912089999, 49.311357604000072 ], [ -122.786068294999922, 49.311580903000099 ], [ -122.786243212999963, 49.311736502000052 ], [ -122.786871198999947, 49.312122805000101 ], [ -122.78718368399997, 49.312316696000046 ], [ -122.787357983999939, 49.312440800000104 ], [ -122.787559019999932, 49.312657603000048 ], [ -122.787839450999982, 49.313201484000075 ], [ -122.788207702999941, 49.313915611000027 ], [ -122.788416816000023, 49.314272205000051 ], [ -122.788934277999928, 49.314883094000031 ], [ -122.789871506999972, 49.315848705000072 ], [ -122.790494509999974, 49.31660589800007 ], [ -122.790774582999973, 49.31707009400003 ], [ -122.789985114999965, 49.317978487000104 ], [ -122.786799096999957, 49.317972653 ], [ -122.786802590999983, 49.317163098 ], [ -122.785564243999929, 49.317160807000121 ], [ -122.785567758999932, 49.316351252000125 ], [ -122.784742205999962, 49.316349717000037 ], [ -122.784743262999967, 49.316107216000013 ], [ -122.782980134999917, 49.316054725000086 ], [ -122.783016091, 49.315536928 ], [ -122.782450542000021, 49.315535865000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.767058823529412", "sL_AssetLoss": "12750", "sL_BldgLoss": "9780", "sL_StrLoss": "5160", "sL_NStrLoss": "4620", "sL_ContLoss": "2970", "geom_point": "0101000020E6100000E7012CF2EBB15EC0CA70B866DDA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779465540999979, 49.311272950000081 ], [ -122.781179059999914, 49.311324027000055 ], [ -122.779433395999945, 49.311735415000058 ], [ -122.779465540999979, 49.311272950000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87932418", "BldgCostT": "57781668", "sL_LossRatio": "0.730197028096156", "sL_AssetLoss": "788720", "sL_BldgLoss": "575921", "sL_StrLoss": "290074", "sL_NStrLoss": "285847", "sL_ContLoss": "212799", "geom_point": "0101000020E6100000D5F0042D2AB25EC05FD540908FA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.784538817999959, 49.311481303000058 ], [ -122.782111973000013, 49.311104161000095 ], [ -122.781976097999959, 49.311136184000091 ], [ -122.782007944999961, 49.310677657000106 ], [ -122.781877800999936, 49.310677412000089 ], [ -122.78187899299995, 49.31040756000003 ], [ -122.781466265999981, 49.310406781000076 ], [ -122.781468652999962, 49.309867076000081 ], [ -122.781055930999955, 49.309866295000113 ], [ -122.781057126999912, 49.309596443000025 ], [ -122.780231687999944, 49.309594877000052 ], [ -122.780233571999943, 49.30917147600006 ], [ -122.780918684, 49.309044791000126 ], [ -122.78288688399999, 49.30728099000001 ], [ -122.782962708999918, 49.307140007000079 ], [ -122.78300390599999, 49.306943006000111 ], [ -122.782907021999918, 49.306556395000079 ], [ -122.783570798999904, 49.306444601000109 ], [ -122.784229903999943, 49.306281384000052 ], [ -122.784464580999924, 49.306545107000048 ], [ -122.784876779999976, 49.306849197000112 ], [ -122.785059447999984, 49.306947304000047 ], [ -122.785169784999979, 49.307006607000034 ], [ -122.786042097999911, 49.307342677000044 ], [ -122.78669289699998, 49.307593392000086 ], [ -122.785922407999976, 49.309420794000125 ], [ -122.785741295999969, 49.310246905000064 ], [ -122.785709477999944, 49.310764800000065 ], [ -122.785748620999968, 49.311093906000075 ], [ -122.785803412999897, 49.311199194000082 ], [ -122.785839602999914, 49.311268697000081 ], [ -122.7858912089999, 49.311357604000072 ], [ -122.784538817999959, 49.311481303000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131176583", "BldgCostT": "80678333", "sL_LossRatio": "0.718525879408794", "sL_AssetLoss": "1042547", "sL_BldgLoss": "749097", "sL_StrLoss": "381797", "sL_NStrLoss": "367300", "sL_ContLoss": "293450", "geom_point": "0101000020E61000003FFE5E4CEBB15EC02FA381ED1AA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77628712399995, 49.307694146000067 ], [ -122.774776608999986, 49.303859889000073 ], [ -122.777628291, 49.303367893000093 ], [ -122.778944611999989, 49.303410401000029 ], [ -122.780193599999933, 49.303407094000043 ], [ -122.781837309999972, 49.303402086000055 ], [ -122.781847192999919, 49.304191491 ], [ -122.782489008999946, 49.304197208000105 ], [ -122.782887104999972, 49.304226993000043 ], [ -122.784082295999909, 49.304325718000079 ], [ -122.783873409999956, 49.305254604000012 ], [ -122.783936289999986, 49.305754602000071 ], [ -122.784029184999937, 49.305982598000071 ], [ -122.784229903999943, 49.306281384000052 ], [ -122.783570798999904, 49.306444601000109 ], [ -122.782907021999918, 49.306556395000079 ], [ -122.78300390599999, 49.306943006000111 ], [ -122.782962708999918, 49.307140007000079 ], [ -122.78288688399999, 49.30728099000001 ], [ -122.780918684, 49.309044791000126 ], [ -122.780233571999943, 49.30917147600006 ], [ -122.780238890999954, 49.307975765000045 ], [ -122.779826186, 49.307974979000029 ], [ -122.779844220999948, 49.303927198000046 ], [ -122.778942281999946, 49.303925476000046 ], [ -122.778926689999963, 49.304149775000084 ], [ -122.778791837999904, 49.304145753000107 ], [ -122.778760409999961, 49.304597878000031 ], [ -122.778087646999921, 49.304577809000186 ], [ -122.778032823999965, 49.30536629400013 ], [ -122.776949143999943, 49.305333958000126 ], [ -122.776945772999923, 49.306080476000083 ], [ -122.776533083999979, 49.306079677000078 ], [ -122.77653186400002, 49.30634953000002 ], [ -122.776380688999907, 49.306349238000038 ], [ -122.77628712399995, 49.307694146000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.774021352313167", "sL_AssetLoss": "5620", "sL_BldgLoss": "4350", "sL_StrLoss": "2340", "sL_NStrLoss": "2010", "sL_ContLoss": "1270", "geom_point": "0101000020E61000000910AA79B3B15EC0809401356FA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.776317627999944, 49.307771573000117 ], [ -122.776741566999959, 49.307784225000027 ], [ -122.776678696999923, 49.308687998000089 ], [ -122.776317627999944, 49.307771573000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135309250", "BldgCostT": "91315000", "sL_LossRatio": "0.806412295400112", "sL_AssetLoss": "845064", "sL_BldgLoss": "681470", "sL_StrLoss": "378870", "sL_NStrLoss": "302600", "sL_ContLoss": "163594", "geom_point": "0101000020E6100000FC8FF93EE4B55EC066E9E9A7288E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.839681830999936, 49.111456706000055 ], [ -122.837245912999947, 49.109494553000047 ], [ -122.837429946999961, 49.109466619000081 ], [ -122.837555981999969, 49.109566766000086 ], [ -122.837707876999929, 49.109507166000121 ], [ -122.838679205999952, 49.109523212000049 ], [ -122.838690744999923, 49.109532027000064 ], [ -122.838883512999942, 49.109679706000037 ], [ -122.83905608299996, 49.109599159000062 ], [ -122.839273449999908, 49.109544281000076 ], [ -122.839445711999971, 49.109528608000119 ], [ -122.840741795000014, 49.109540573000054 ], [ -122.843551952999945, 49.109560037000044 ], [ -122.845416647999954, 49.109567895000048 ], [ -122.845451504999943, 49.109518460000047 ], [ -122.845530833999959, 49.109499168000106 ], [ -122.845605921999919, 49.109522998000081 ], [ -122.845635316999946, 49.109574319000146 ], [ -122.845599034999964, 49.109624627000066 ], [ -122.845521093999935, 49.109643058000088 ], [ -122.845510382999976, 49.109962631000087 ], [ -122.84547171499996, 49.111786222000063 ], [ -122.845392474999983, 49.111803708000089 ], [ -122.845354970999949, 49.111852172000042 ], [ -122.841646203999929, 49.111853231000048 ], [ -122.840900003999963, 49.111850231000098 ], [ -122.840390649, 49.111848774000073 ], [ -122.840167423999915, 49.11184851100009 ], [ -122.839681830999936, 49.111456706000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69949333", "BldgCostT": "45823333", "sL_LossRatio": "0.790300998093138", "sL_AssetLoss": "573193", "sL_BldgLoss": "452995", "sL_StrLoss": "257222", "sL_NStrLoss": "195773", "sL_ContLoss": "120198", "geom_point": "0101000020E61000001F05CA9EABB55EC0E677ABF8D08D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.837555981999969, 49.109566766000086 ], [ -122.837429946999961, 49.109466619000081 ], [ -122.837245912999947, 49.109494553000047 ], [ -122.835904403999933, 49.108378263000063 ], [ -122.834768014999952, 49.107457917000055 ], [ -122.83456090199995, 49.107290159000129 ], [ -122.834004963, 49.106839907000079 ], [ -122.832640143000035, 49.105734450000121 ], [ -122.831995120999949, 49.105211987000061 ], [ -122.83235373, 49.105214438000068 ], [ -122.833317193999974, 49.105242831000126 ], [ -122.833817341000014, 49.105257560000041 ], [ -122.834360150999913, 49.105330305000116 ], [ -122.834858947999962, 49.105445914000029 ], [ -122.83529331699999, 49.10558307100009 ], [ -122.835862191, 49.105835893000069 ], [ -122.838362784999958, 49.107386392000109 ], [ -122.839045036999934, 49.107704699000088 ], [ -122.839807693999944, 49.107968622000044 ], [ -122.840777643999914, 49.108164726000119 ], [ -122.841285845999948, 49.108222639000111 ], [ -122.841534563999957, 49.108250964000085 ], [ -122.845555282999925, 49.10824914700008 ], [ -122.845530833999959, 49.109499168000106 ], [ -122.845451504999943, 49.109518460000047 ], [ -122.845416647999954, 49.109567895000048 ], [ -122.843551952999945, 49.109560037000044 ], [ -122.840741795000014, 49.109540573000054 ], [ -122.839445711999971, 49.109528608000119 ], [ -122.839273449999908, 49.109544281000076 ], [ -122.83905608299996, 49.109599159000062 ], [ -122.838883512999942, 49.109679706000037 ], [ -122.838690744999923, 49.109532027000064 ], [ -122.838679205999952, 49.109523212000049 ], [ -122.837707876999929, 49.109507166000121 ], [ -122.837555981999969, 49.109566766000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100875916", "BldgCostT": "66886666", "sL_LossRatio": "0.723794511545482", "sL_AssetLoss": "1695122", "sL_BldgLoss": "1226920", "sL_StrLoss": "553530", "sL_NStrLoss": "673390", "sL_ContLoss": "468202", "geom_point": "0101000020E6100000ED6279DB75B55EC03C4FC810F88C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.834360150999913, 49.105330305000116 ], [ -122.833817341000014, 49.105257560000041 ], [ -122.833317193999974, 49.105242831000126 ], [ -122.83235373, 49.105214438000068 ], [ -122.831995120999949, 49.105211987000061 ], [ -122.83112549199997, 49.104509619000041 ], [ -122.830511342999955, 49.104076990000053 ], [ -122.829811783999972, 49.103551736000099 ], [ -122.829512447999932, 49.103397363000028 ], [ -122.828531307, 49.102891304000082 ], [ -122.827453722999948, 49.102528792000058 ], [ -122.826590497999945, 49.102336598000093 ], [ -122.826474823999888, 49.102318521000036 ], [ -122.825909013999933, 49.10222998600004 ], [ -122.82462161699999, 49.10209374700004 ], [ -122.82319763699995, 49.101892186000086 ], [ -122.82216585899999, 49.101621979000065 ], [ -122.822044618999939, 49.101574893000091 ], [ -122.821281483999911, 49.101278634000046 ], [ -122.82059334899995, 49.100929362000059 ], [ -122.819964483999968, 49.100514257000015 ], [ -122.819526925, 49.100144490000062 ], [ -122.819013523999928, 49.099603035000044 ], [ -122.818771355999957, 49.099214096 ], [ -122.81859345299992, 49.098928300000082 ], [ -122.818687948999951, 49.098931096000058 ], [ -122.819068339999944, 49.098942354000023 ], [ -122.819034208999966, 49.099441936000062 ], [ -122.81938192099993, 49.099442481000068 ], [ -122.819381245999963, 49.099628354000089 ], [ -122.82163059, 49.099694888000016 ], [ -122.821626186999964, 49.099759400000075 ], [ -122.823237937999977, 49.099807046000066 ], [ -122.823200822999951, 49.100351022000019 ], [ -122.823742655, 49.100367034000037 ], [ -122.823727153999968, 49.100594259000061 ], [ -122.824866027999946, 49.100627906000028 ], [ -122.824835873999973, 49.101070068000041 ], [ -122.824926056999942, 49.101070205000092 ], [ -122.825011334999942, 49.101017063000072 ], [ -122.825541298999923, 49.100948482000049 ], [ -122.825541815999927, 49.10080127400002 ], [ -122.826817596999945, 49.100803195000076 ], [ -122.82882963499992, 49.100708462000078 ], [ -122.829097671999975, 49.100806593000087 ], [ -122.829651677999948, 49.100807410000087 ], [ -122.829650987999955, 49.101009163000036 ], [ -122.829837785999956, 49.101077549000081 ], [ -122.830472731999961, 49.101078484000084 ], [ -122.830472200999935, 49.101234107000039 ], [ -122.830493834999984, 49.101239962000086 ], [ -122.832527205999938, 49.101221093000042 ], [ -122.832527674999966, 49.101081483000073 ], [ -122.834607010999932, 49.101084482000104 ], [ -122.834721551999962, 49.099399647000055 ], [ -122.834521584999933, 49.099393759000044 ], [ -122.834533044999887, 49.099225175000065 ], [ -122.833663764999983, 49.09919957200006 ], [ -122.833651085999989, 49.099386034000077 ], [ -122.828185360999925, 49.099224891000098 ], [ -122.828272030999926, 49.09795259800007 ], [ -122.8265476499999, 49.097901701000126 ], [ -122.826514341999911, 49.098390411000047 ], [ -122.824516937999988, 49.098331420000051 ], [ -122.824506764999967, 49.098480559000045 ], [ -122.819796883999928, 49.098341312000116 ], [ -122.819796802999988, 49.098363673000144 ], [ -122.819385835999967, 49.098363030000066 ], [ -122.819384857999964, 49.098632893000037 ], [ -122.818973889999967, 49.098632248000051 ], [ -122.81897290799999, 49.098902112000147 ], [ -122.818669572999951, 49.098901635000097 ], [ -122.8185767639999, 49.098901490000081 ], [ -122.81852371599993, 49.098816271000018 ], [ -122.818510845, 49.098779687000047 ], [ -122.818247490999937, 49.098029516000054 ], [ -122.8181607, 49.097255576000116 ], [ -122.818274665999965, 49.097250845000033 ], [ -122.81901921099994, 49.097215193000075 ], [ -122.821837002999985, 49.09704808400005 ], [ -122.82556227299996, 49.096827028000092 ], [ -122.830617787, 49.096526808000114 ], [ -122.832056733999963, 49.096441343000102 ], [ -122.834057671999958, 49.096322410000013 ], [ -122.83807312, 49.096083674000056 ], [ -122.840621193999979, 49.095932096000084 ], [ -122.842985724999949, 49.095791371000089 ], [ -122.844005425999953, 49.095730669000062 ], [ -122.84410918199994, 49.095724512000096 ], [ -122.845492123999932, 49.09557606000007 ], [ -122.845587321999957, 49.095994046000015 ], [ -122.845594691999949, 49.096026413000089 ], [ -122.845754357999951, 49.098144031000068 ], [ -122.844169718999964, 49.09809751800001 ], [ -122.844225993999927, 49.097267210000069 ], [ -122.842997025999949, 49.097231121000114 ], [ -122.842921499999932, 49.098345013 ], [ -122.84007511599998, 49.098261373000071 ], [ -122.840001416999954, 49.099347316000014 ], [ -122.840201384999915, 49.099353195000042 ], [ -122.839991793999957, 49.102441389000042 ], [ -122.841565133999921, 49.102443559000108 ], [ -122.841564275999986, 49.10271342100009 ], [ -122.84320828599999, 49.102715666000087 ], [ -122.843209134999981, 49.102445804000126 ], [ -122.846079033999914, 49.102449667000037 ], [ -122.846123090999953, 49.103033992000093 ], [ -122.845991062999985, 49.103611660000077 ], [ -122.845976003999979, 49.103677504000039 ], [ -122.845970700999942, 49.103692291000129 ], [ -122.84570867399998, 49.10441840700004 ], [ -122.84562895699996, 49.105087411000085 ], [ -122.845612023999976, 49.105229407000074 ], [ -122.845557179999943, 49.108160888 ], [ -122.845555282999925, 49.10824914700008 ], [ -122.841534563999957, 49.108250964000085 ], [ -122.841285845999948, 49.108222639000111 ], [ -122.840777643999914, 49.108164726000119 ], [ -122.839807693999944, 49.107968622000044 ], [ -122.839045036999934, 49.107704699000088 ], [ -122.838362784999958, 49.107386392000109 ], [ -122.835862191, 49.105835893000069 ], [ -122.83529331699999, 49.10558307100009 ], [ -122.834858947999962, 49.105445914000029 ], [ -122.834360150999913, 49.105330305000116 ] ], [ [ -122.839508393999921, 49.1029804450001 ], [ -122.83950853199994, 49.102937280000013 ], [ -122.839142125999942, 49.102926507000113 ], [ -122.839367949999939, 49.102980250000037 ], [ -122.839508393999921, 49.1029804450001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "448192590", "BldgCostT": "308369590", "sL_LossRatio": "0.88504152725183", "sL_AssetLoss": "1339168.8", "sL_BldgLoss": "1185220", "sL_StrLoss": "688700", "sL_NStrLoss": "496520", "sL_ContLoss": "153948.8", "geom_point": "0101000020E610000041D286478BB45EC0F142A5D787924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817639921999927, 49.148445558000091 ], [ -122.817909240999981, 49.147154261 ], [ -122.8178661379999, 49.147784256000129 ], [ -122.819206126999958, 49.14782387300005 ], [ -122.819206403999942, 49.147747659000068 ], [ -122.818795028999958, 49.147747014000103 ], [ -122.818796012999911, 49.147477153000075 ], [ -122.818384641999941, 49.147476507000157 ], [ -122.818386759999896, 49.146897060000114 ], [ -122.817965480999973, 49.146884603000068 ], [ -122.81805912199998, 49.146435602000047 ], [ -122.818712522999974, 49.143302434000056 ], [ -122.818774971999986, 49.143304280000038 ], [ -122.818618780999941, 49.145587844 ], [ -122.819625613999904, 49.145589419000025 ], [ -122.819626593999971, 49.145319560000061 ], [ -122.821135726999927, 49.145321908000049 ], [ -122.821191050999957, 49.144512407000043 ], [ -122.820863575999951, 49.144511900000076 ], [ -122.820862602999924, 49.144781760000029 ], [ -122.819217201999933, 49.144779196000052 ], [ -122.819218184999897, 49.144509335000073 ], [ -122.818806836999912, 49.144508690000109 ], [ -122.818812991999948, 49.142820629000063 ], [ -122.819189757999965, 49.141013735000094 ], [ -122.820741143999967, 49.141012716000027 ], [ -122.82126206399991, 49.141010094000052 ], [ -122.823397696999947, 49.14100199100011 ], [ -122.823400396999887, 49.141504864000069 ], [ -122.82340046299997, 49.141553640000033 ], [ -122.823400552999942, 49.141607613000104 ], [ -122.823401874999931, 49.14234560000007 ], [ -122.823400435999986, 49.1427875030001 ], [ -122.823398996999941, 49.14323039700006 ], [ -122.8234024059999, 49.143471117000104 ], [ -122.823404459999949, 49.143614912000075 ], [ -122.823410956999936, 49.144073636000073 ], [ -122.823415505999947, 49.144393209000015 ], [ -122.823423313999925, 49.145082798000011 ], [ -122.823417946999967, 49.145567047000029 ], [ -122.823416639999905, 49.145684032000084 ], [ -122.823413743999978, 49.145944859000053 ], [ -122.823411898999979, 49.14611228600004 ], [ -122.82343381299998, 49.148239498000059 ], [ -122.823133671999969, 49.148234768000073 ], [ -122.822253593999932, 49.148220896000048 ], [ -122.82204624699996, 49.148156589000038 ], [ -122.821651900999925, 49.148142733000093 ], [ -122.817639921999927, 49.148445558000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115780635", "BldgCostT": "74947078", "sL_LossRatio": "0.762799388483098", "sL_AssetLoss": "883050", "sL_BldgLoss": "673590", "sL_StrLoss": "361030", "sL_NStrLoss": "312560", "sL_ContLoss": "209460", "geom_point": "0101000020E61000001F9D6F1B38B45EC061D100209F924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812362906999951, 49.144645707000095 ], [ -122.813233052999976, 49.144639968000035 ], [ -122.813928698999973, 49.144635395000094 ], [ -122.815290184999938, 49.144627912000018 ], [ -122.81598491699998, 49.144730483000096 ], [ -122.816165185999949, 49.144658295000049 ], [ -122.8163319989999, 49.144524503000078 ], [ -122.81640490599996, 49.144359906000034 ], [ -122.816349296999974, 49.14233000900002 ], [ -122.817307394999943, 49.142327715000135 ], [ -122.817239511999958, 49.141676904000036 ], [ -122.817171210999959, 49.141012601000078 ], [ -122.819189757999965, 49.141013735000094 ], [ -122.818812991999948, 49.142820629000063 ], [ -122.818813725, 49.142619668000066 ], [ -122.818402392999928, 49.142619022000126 ], [ -122.818401407999929, 49.142888883000083 ], [ -122.81814071300002, 49.142888472000081 ], [ -122.818113607000015, 49.143284725000157 ], [ -122.818712522999974, 49.143302434000056 ], [ -122.81805912199998, 49.146435602000047 ], [ -122.817965480999973, 49.146884603000068 ], [ -122.817927767999947, 49.146883488000114 ], [ -122.817909240999981, 49.147154261 ], [ -122.817639921999927, 49.148445558000091 ], [ -122.815535805999929, 49.148383694000074 ], [ -122.812437906999904, 49.147955402000093 ], [ -122.81243717299995, 49.147001494000101 ], [ -122.812430014999933, 49.14677314300004 ], [ -122.812428291999964, 49.146719215000111 ], [ -122.812427733000021, 49.146701205000035 ], [ -122.812415514999913, 49.146314179000044 ], [ -122.812414953, 49.146295996000092 ], [ -122.812412968, 49.146233058000071 ], [ -122.812362906999951, 49.144645707000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172118667", "BldgCostT": "116576667", "sL_LossRatio": "0.869601559444353", "sL_AssetLoss": "634072", "sL_BldgLoss": "551390", "sL_StrLoss": "363400", "sL_NStrLoss": "187990", "sL_ContLoss": "82682", "geom_point": "0101000020E610000061F85F1921B45EC0E7E4FB9845924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.812362906999951, 49.144645707000095 ], [ -122.81229078899996, 49.142472978000058 ], [ -122.812243477999971, 49.141048702000091 ], [ -122.813850486999939, 49.14103509100002 ], [ -122.814939950999985, 49.141028456000114 ], [ -122.815220815999979, 49.14102674 ], [ -122.815667107999971, 49.141023994000058 ], [ -122.817171210999959, 49.141012601000078 ], [ -122.817239511999958, 49.141676904000036 ], [ -122.817307394999943, 49.142327715000135 ], [ -122.816349296999974, 49.14233000900002 ], [ -122.81640490599996, 49.144359906000034 ], [ -122.8163319989999, 49.144524503000078 ], [ -122.816165185999949, 49.144658295000049 ], [ -122.81598491699998, 49.144730483000096 ], [ -122.815290184999938, 49.144627912000018 ], [ -122.813928698999973, 49.144635395000094 ], [ -122.813233052999976, 49.144639968000035 ], [ -122.812362906999951, 49.144645707000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131588167", "BldgCostT": "82206667", "sL_LossRatio": "0.813084246970571", "sL_AssetLoss": "693200", "sL_BldgLoss": "563630", "sL_StrLoss": "352680", "sL_NStrLoss": "210950", "sL_ContLoss": "129570", "geom_point": "0101000020E6100000DF9C63A3A0B35EC0B14D9E707E924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801166656999953, 49.147995463000029 ], [ -122.801131763999962, 49.146016550000049 ], [ -122.80111229699996, 49.144909952000042 ], [ -122.801110402999925, 49.144802008000092 ], [ -122.801108472999957, 49.144694076000079 ], [ -122.80108995099999, 49.143641559000045 ], [ -122.801089472999962, 49.143614567000078 ], [ -122.801088366999977, 49.143551709000086 ], [ -122.801082329999957, 49.143210061000083 ], [ -122.801081391999929, 49.14315610000007 ], [ -122.801081243999988, 49.143146236000128 ], [ -122.801077260999961, 49.142922246000083 ], [ -122.801075695999941, 49.14283241900003 ], [ -122.80107475299998, 49.142778344000121 ], [ -122.801044601999976, 49.141065968000085 ], [ -122.801178732999972, 49.141068145000119 ], [ -122.802031027999988, 49.141067394000096 ], [ -122.802590349999903, 49.141066876000068 ], [ -122.804128907999925, 49.141071155000105 ], [ -122.805634899999959, 49.141075309000058 ], [ -122.807489814999954, 49.141063700000089 ], [ -122.808113109999937, 49.141067794000044 ], [ -122.810279148999939, 49.141056292000073 ], [ -122.812243477999971, 49.141048702000091 ], [ -122.81229078899996, 49.142472978000058 ], [ -122.812362906999951, 49.144645707000095 ], [ -122.812412968, 49.146233058000071 ], [ -122.812414953, 49.146295996000092 ], [ -122.812415514999913, 49.146314179000044 ], [ -122.812427733000021, 49.146701205000035 ], [ -122.812428291999964, 49.146719215000111 ], [ -122.812430014999933, 49.14677314300004 ], [ -122.81243717299995, 49.147001494000101 ], [ -122.812437906999904, 49.147955402000093 ], [ -122.81013342599999, 49.147951285000055 ], [ -122.810170944999967, 49.147404250000122 ], [ -122.810157433999976, 49.147403850000146 ], [ -122.810157206999975, 49.147463274000081 ], [ -122.807688976999955, 49.147459189000109 ], [ -122.807687057999942, 49.14795479900009 ], [ -122.806871698999927, 49.147981642000083 ], [ -122.806014429999905, 49.147996112000079 ], [ -122.80562686899998, 49.147995460000104 ], [ -122.805626374999946, 49.148002661000064 ], [ -122.801283307999981, 49.148075850000048 ], [ -122.801168105999935, 49.148077773000097 ], [ -122.801166656999953, 49.147995463000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237537750", "BldgCostT": "157575000", "sL_LossRatio": "0.803668233791863", "sL_AssetLoss": "1722900", "sL_BldgLoss": "1384640", "sL_StrLoss": "797350", "sL_NStrLoss": "587290", "sL_ContLoss": "338260", "geom_point": "0101000020E61000007E887040C9B35EC0BF79DC7DAF8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800958021, 49.118693482000076 ], [ -122.800958107999975, 49.118677752000075 ], [ -122.801059195999954, 49.118693988000111 ], [ -122.801849601999919, 49.118693187000133 ], [ -122.80234686199999, 49.118692648000042 ], [ -122.805922972999895, 49.118632090000091 ], [ -122.806555896999967, 49.118484713000072 ], [ -122.806578328999962, 49.117411757000092 ], [ -122.806584863999916, 49.116777572000032 ], [ -122.806590852999932, 49.115572051000115 ], [ -122.80658963899999, 49.114478996000095 ], [ -122.806588599999927, 49.113529166000035 ], [ -122.806585858999966, 49.112410802000014 ], [ -122.806583392999968, 49.111748410000054 ], [ -122.806591167999926, 49.110736683 ], [ -122.80662771, 49.109864588000043 ], [ -122.808727016999939, 49.10988636900003 ], [ -122.809609218000034, 49.109895591000075 ], [ -122.811163001999915, 49.109911781000058 ], [ -122.812272890999978, 49.109923069000118 ], [ -122.812269199999932, 49.110916879000051 ], [ -122.812263932999954, 49.111793513000094 ], [ -122.81226106299999, 49.112775647000056 ], [ -122.81225751, 49.113687455000033 ], [ -122.812251583999924, 49.114813683000129 ], [ -122.812252206999986, 49.115424648000079 ], [ -122.81223989199999, 49.116721339000101 ], [ -122.812238116999978, 49.116910166000018 ], [ -122.81222357199999, 49.119082290000044 ], [ -122.812220963999934, 49.119180427000103 ], [ -122.801065385999962, 49.119102392000073 ], [ -122.800958624999978, 49.11910100500009 ], [ -122.800956555999974, 49.119031567000086 ], [ -122.800957354, 49.118850480000091 ], [ -122.800958021, 49.118693482000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141348083", "BldgCostT": "83528333", "sL_LossRatio": "0.715987171761699", "sL_AssetLoss": "989068", "sL_BldgLoss": "708160", "sL_StrLoss": "327430", "sL_NStrLoss": "380730", "sL_ContLoss": "280908", "geom_point": "0101000020E61000008CFD6D686DB35EC01FC19505F68E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.800958107999975, 49.118677752000075 ], [ -122.800967080999953, 49.116646626000076 ], [ -122.800967737999954, 49.116070421000103 ], [ -122.800968482999949, 49.115377746000036 ], [ -122.80096943099997, 49.114559724000081 ], [ -122.801076235, 49.114560192000035 ], [ -122.80201682799999, 49.114565648000081 ], [ -122.802365988999952, 49.114626494000028 ], [ -122.803587478999958, 49.115128689000102 ], [ -122.803724105999933, 49.115193667000064 ], [ -122.804108738999929, 49.115376667000064 ], [ -122.804366896999937, 49.115546550000076 ], [ -122.804674356999968, 49.115656610000045 ], [ -122.805026734999927, 49.115731046000086 ], [ -122.805518131999975, 49.115735740000105 ], [ -122.806200437999962, 49.115573072000068 ], [ -122.806590852999932, 49.115572051000115 ], [ -122.806584863999916, 49.116777572000032 ], [ -122.806578328999962, 49.117411757000092 ], [ -122.806555896999967, 49.118484713000072 ], [ -122.805922972999895, 49.118632090000091 ], [ -122.80234686199999, 49.118692648000042 ], [ -122.801849601999919, 49.118693187000133 ], [ -122.801059195999954, 49.118693988000111 ], [ -122.800958107999975, 49.118677752000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143722167", "BldgCostT": "97886667", "sL_LossRatio": "0.825767245156497", "sL_AssetLoss": "1049860", "sL_BldgLoss": "866940", "sL_StrLoss": "533620", "sL_NStrLoss": "333320", "sL_ContLoss": "182920", "geom_point": "0101000020E61000000E1B0A4474B35EC0D9623397868E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802365988999952, 49.114626494000028 ], [ -122.80201682799999, 49.114565648000081 ], [ -122.801076235, 49.114560192000035 ], [ -122.80096943099997, 49.114559724000081 ], [ -122.800924584, 49.111725266000114 ], [ -122.80105464799999, 49.111725535000083 ], [ -122.804680284, 49.111739619000069 ], [ -122.80629461599996, 49.111747073000039 ], [ -122.806583392999968, 49.111748410000054 ], [ -122.806585858999966, 49.112410802000014 ], [ -122.806588599999927, 49.113529166000035 ], [ -122.80658963899999, 49.114478996000095 ], [ -122.806590852999932, 49.115572051000115 ], [ -122.806200437999962, 49.115573072000068 ], [ -122.805518131999975, 49.115735740000105 ], [ -122.805026734999927, 49.115731046000086 ], [ -122.804674356999968, 49.115656610000045 ], [ -122.804366896999937, 49.115546550000076 ], [ -122.804108738999929, 49.115376667000064 ], [ -122.803724105999933, 49.115193667000064 ], [ -122.803587478999958, 49.115128689000102 ], [ -122.802365988999952, 49.114626494000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84541250", "BldgCostT": "55370000", "sL_LossRatio": "0.758777308443475", "sL_AssetLoss": "770595", "sL_BldgLoss": "584710", "sL_StrLoss": "288150", "sL_NStrLoss": "296560", "sL_ContLoss": "185885", "geom_point": "0101000020E6100000AFADB751CDB35EC0B151ADF0F48D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806652632999914, 49.109281399000054 ], [ -122.806788903999916, 49.107754446000101 ], [ -122.807431291999947, 49.108032134000091 ], [ -122.807947107999922, 49.108139428000051 ], [ -122.808543694999955, 49.10822559900005 ], [ -122.809377903999973, 49.108242198000013 ], [ -122.810999265999968, 49.108254558000048 ], [ -122.81227966099999, 49.108264310000067 ], [ -122.812274427999938, 49.109580692000065 ], [ -122.812272890999978, 49.109923069000118 ], [ -122.811163001999915, 49.109911781000058 ], [ -122.809609218000034, 49.109895591000075 ], [ -122.808727016999939, 49.10988636900003 ], [ -122.80662771, 49.109864588000043 ], [ -122.806652632999914, 49.109281399000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231028084", "BldgCostT": "146208334", "sL_LossRatio": "0.788275640631511", "sL_AssetLoss": "1463790", "sL_BldgLoss": "1153870", "sL_StrLoss": "667980", "sL_NStrLoss": "485890", "sL_ContLoss": "309920", "geom_point": "0101000020E6100000BCD37C1975B35EC0ACFEDEF9078E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.804403708999985, 49.106791452 ], [ -122.804843052999928, 49.106475594000031 ], [ -122.80611114599999, 49.107309010000066 ], [ -122.806788903999916, 49.107754446000101 ], [ -122.806652632999914, 49.109281399000054 ], [ -122.80662771, 49.109864588000043 ], [ -122.806591167999926, 49.110736683 ], [ -122.806583392999968, 49.111748410000054 ], [ -122.80629461599996, 49.111747073000039 ], [ -122.804680284, 49.111739619000069 ], [ -122.80105464799999, 49.111725535000083 ], [ -122.800924584, 49.111725266000114 ], [ -122.800937446999953, 49.110394313000029 ], [ -122.800938202999987, 49.110313374000086 ], [ -122.800942051999968, 49.109916559000105 ], [ -122.800943342999929, 49.109781242000047 ], [ -122.800948126000023, 49.109287930000058 ], [ -122.800954843999961, 49.108594767000071 ], [ -122.800964063, 49.108460770000136 ], [ -122.801098277999984, 49.108460264000023 ], [ -122.80171035099994, 49.108461350000127 ], [ -122.802280100999937, 49.108400807000073 ], [ -122.802804279, 49.108246065000152 ], [ -122.803324485999966, 49.10798940100004 ], [ -122.803433853999977, 49.107899597 ], [ -122.803550121999976, 49.107804114 ], [ -122.803716363999939, 49.107667645000099 ], [ -122.80418793299998, 49.107002222000091 ], [ -122.804403708999985, 49.106791452 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115496000", "BldgCostT": "77705000", "sL_LossRatio": "0.722242944745846", "sL_AssetLoss": "1742602", "sL_BldgLoss": "1258582", "sL_StrLoss": "593162", "sL_NStrLoss": "665420", "sL_ContLoss": "484020", "geom_point": "0101000020E61000008A9D3AA0F6B05EC0BFDA519CA3994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.762730519999977, 49.198865703000116 ], [ -122.762725420999956, 49.197757309000067 ], [ -122.763561797999927, 49.19776620600004 ], [ -122.764266395, 49.197755799000085 ], [ -122.76543219899996, 49.197743999000082 ], [ -122.765671412, 49.197716905000071 ], [ -122.765966220999971, 49.197622197000115 ], [ -122.765368896999959, 49.19855391600003 ], [ -122.765290302, 49.198856089000124 ], [ -122.765507856999989, 49.198854694000033 ], [ -122.766043296999911, 49.198851259000051 ], [ -122.76744339699998, 49.198842256000056 ], [ -122.767514195, 49.198841802000047 ], [ -122.767517245999926, 49.199602146000117 ], [ -122.767518900999903, 49.200006930000015 ], [ -122.767521495999958, 49.200648491000052 ], [ -122.767489298, 49.201564811000082 ], [ -122.767485180999955, 49.202510696000097 ], [ -122.76593, 49.202517199000091 ], [ -122.763318391, 49.202502931000019 ], [ -122.76264480899998, 49.202520919000094 ], [ -122.762657910999906, 49.202072987000022 ], [ -122.762813904999945, 49.201843390000121 ], [ -122.76300490499996, 49.201622991000043 ], [ -122.763092081999901, 49.201454413000093 ], [ -122.763123018999977, 49.201207604000039 ], [ -122.763116798999988, 49.20011621700008 ], [ -122.763076129999959, 49.200006259000055 ], [ -122.763003594999986, 49.19981010500004 ], [ -122.76283519199994, 49.199588795000089 ], [ -122.76278799499994, 49.199458508000035 ], [ -122.762730519999977, 49.198865703000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103815283", "BldgCostT": "69395546", "sL_LossRatio": "0.734565810449119", "sL_AssetLoss": "1086484", "sL_BldgLoss": "798094", "sL_StrLoss": "393720", "sL_NStrLoss": "404374", "sL_ContLoss": "288390", "geom_point": "0101000020E6100000428C08ADA4B05EC01F7E61A6AB994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.758879822999972, 49.202457910000092 ], [ -122.75888132299994, 49.202149293000012 ], [ -122.758469499999961, 49.202148432000058 ], [ -122.758470812999988, 49.201878575000073 ], [ -122.758058992, 49.20187771300003 ], [ -122.758061624999954, 49.201338000000135 ], [ -122.757649807999883, 49.201337137000046 ], [ -122.757651125999985, 49.201067280000075 ], [ -122.757239311999967, 49.201066415000071 ], [ -122.757239425999927, 49.201043165000087 ], [ -122.756645309999897, 49.201025282000096 ], [ -122.756635030999945, 49.20086594600015 ], [ -122.756636873, 49.200517201000082 ], [ -122.756604754999941, 49.199327962000041 ], [ -122.75658698699999, 49.199302595000077 ], [ -122.756553977999957, 49.19919292800008 ], [ -122.756525708999959, 49.199099005000043 ], [ -122.756526188999956, 49.198896298000079 ], [ -122.757298155999976, 49.19889250300006 ], [ -122.762730519999977, 49.198865703000116 ], [ -122.76278799499994, 49.199458508000035 ], [ -122.76283519199994, 49.199588795000089 ], [ -122.763003594999986, 49.19981010500004 ], [ -122.763076129999959, 49.200006259000055 ], [ -122.763116798999988, 49.20011621700008 ], [ -122.763123018999977, 49.201207604000039 ], [ -122.763092081999901, 49.201454413000093 ], [ -122.76300490499996, 49.201622991000043 ], [ -122.762813904999945, 49.201843390000121 ], [ -122.762657910999906, 49.202072987000022 ], [ -122.76264480899998, 49.202520919000094 ], [ -122.759961703, 49.202520798000123 ], [ -122.758879822999972, 49.202457910000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81113667", "BldgCostT": "54731667", "sL_LossRatio": "0.720322967112701", "sL_AssetLoss": "1185260", "sL_BldgLoss": "853770", "sL_StrLoss": "404770", "sL_NStrLoss": "449000", "sL_ContLoss": "331490", "geom_point": "0101000020E610000025EB68038DB05EC04927124C35994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.756504799999917, 49.194426488000055 ], [ -122.756503085999924, 49.19422695500004 ], [ -122.756498100999977, 49.193638797000062 ], [ -122.757777079999968, 49.193654241000054 ], [ -122.758245882999944, 49.193659895000046 ], [ -122.758533273999944, 49.193691007000062 ], [ -122.758559006999974, 49.194501898000055 ], [ -122.758559676999965, 49.194826193000019 ], [ -122.758583850999941, 49.194878678000066 ], [ -122.758660995999932, 49.195046393000048 ], [ -122.75886732, 49.195275187000092 ], [ -122.758022303999923, 49.195685009000066 ], [ -122.757873406999963, 49.195851697000087 ], [ -122.757825610999944, 49.196006990000086 ], [ -122.757828888999981, 49.196083709000085 ], [ -122.757849758999953, 49.196569023000066 ], [ -122.757860956999934, 49.196829675000046 ], [ -122.757864411999947, 49.196910084000116 ], [ -122.75786480499994, 49.19691910600006 ], [ -122.757994298999932, 49.197265387000066 ], [ -122.758204683999935, 49.197495193000044 ], [ -122.758450501999945, 49.197610700000098 ], [ -122.758566874999957, 49.197650481 ], [ -122.758745298999926, 49.197711504000054 ], [ -122.759071206999977, 49.197760988000027 ], [ -122.759395288999926, 49.197757204 ], [ -122.760352692999902, 49.19774179300012 ], [ -122.760576892999921, 49.197714297000054 ], [ -122.760749703999963, 49.197656492000171 ], [ -122.760867887999922, 49.197570136000095 ], [ -122.761202208999933, 49.197325891000027 ], [ -122.761488590999932, 49.197193906000052 ], [ -122.76186752699995, 49.197466603000116 ], [ -122.762231481999919, 49.197618102000057 ], [ -122.762725420999956, 49.197757309000067 ], [ -122.762730519999977, 49.198865703000116 ], [ -122.757298155999976, 49.19889250300006 ], [ -122.756526188999956, 49.198896298000079 ], [ -122.75650720799996, 49.196934512000041 ], [ -122.756501995999884, 49.196394919000085 ], [ -122.75649335199995, 49.195504284000073 ], [ -122.756490594999889, 49.195219901000051 ], [ -122.756504799999917, 49.194426488000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102603833", "BldgCostT": "69023333", "sL_LossRatio": "0.723887463452473", "sL_AssetLoss": "1675900", "sL_BldgLoss": "1213163", "sL_StrLoss": "582973", "sL_NStrLoss": "630190", "sL_ContLoss": "462737", "geom_point": "0101000020E610000091BDC6AA58B75EC0C6D4443C65854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.864851291999969, 49.038518785000051 ], [ -122.867472899999953, 49.038522954000065 ], [ -122.867465065999966, 49.039860989000054 ], [ -122.867444336999981, 49.042530580000054 ], [ -122.867402156999958, 49.04387871200008 ], [ -122.867396701999922, 49.04405399900002 ], [ -122.86739988199993, 49.04429162400006 ], [ -122.867413241999969, 49.045281227000018 ], [ -122.867420003999939, 49.045783097000076 ], [ -122.864604309999933, 49.045760390000048 ], [ -122.862705615, 49.045768006000102 ], [ -122.862050889, 49.045764191000011 ], [ -122.862221072999958, 49.038499690000059 ], [ -122.862651867999958, 49.038498402000094 ], [ -122.86404531399991, 49.038517503000065 ], [ -122.864851291999969, 49.038518785000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227534061", "BldgCostT": "154298190", "sL_LossRatio": "0.762709107596255", "sL_AssetLoss": "2649832", "sL_BldgLoss": "2021051", "sL_StrLoss": "1079222", "sL_NStrLoss": "941829", "sL_ContLoss": "628781", "geom_point": "0101000020E610000002FCBF8F8FB65EC0686BD0D97A854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843082104999979, 49.04261809200009 ], [ -122.844693707, 49.041537157000093 ], [ -122.845192557999937, 49.041197629000074 ], [ -122.845355747, 49.041008690000076 ], [ -122.845422678999938, 49.040868267000043 ], [ -122.845457417999938, 49.040658397000115 ], [ -122.845445681999948, 49.039376557000054 ], [ -122.845445605999927, 49.039367570000095 ], [ -122.845438176999949, 49.038476939000162 ], [ -122.846728834999936, 49.03848119200007 ], [ -122.847508695999977, 49.038483745000114 ], [ -122.849656291999935, 49.038490767000063 ], [ -122.850965242999919, 49.038495049000055 ], [ -122.85096591099996, 49.038504004000067 ], [ -122.850988915999977, 49.038792204000153 ], [ -122.851136900999947, 49.039192212000017 ], [ -122.851489020999963, 49.039749506000128 ], [ -122.851565620999963, 49.03997170700012 ], [ -122.85159150899996, 49.040661894000081 ], [ -122.851593198999964, 49.040692536 ], [ -122.851620486999977, 49.041183606000104 ], [ -122.85176260799993, 49.041348186000036 ], [ -122.851946782999946, 49.041475204000079 ], [ -122.852271801999933, 49.041563209000046 ], [ -122.853232589999934, 49.041563530000069 ], [ -122.853765000999957, 49.041563687000078 ], [ -122.853930459999972, 49.041563783000086 ], [ -122.854421381999927, 49.041563992000121 ], [ -122.85477988099997, 49.041520410000082 ], [ -122.855288607999952, 49.041275792000121 ], [ -122.855508113999946, 49.04102268700008 ], [ -122.855582202999969, 49.040694084000073 ], [ -122.85558620599997, 49.040112861000068 ], [ -122.855588873999963, 49.039722800000042 ], [ -122.855588389999966, 49.039567805000019 ], [ -122.855675244999972, 49.039294455000082 ], [ -122.85575857799995, 49.039032103000096 ], [ -122.855748217000013, 49.038691740000118 ], [ -122.855744616, 49.038574647000083 ], [ -122.855742402999937, 49.038501703000101 ], [ -122.857763394999935, 49.038500505000066 ], [ -122.857760929, 49.038604741000078 ], [ -122.857735996999921, 49.039657684000069 ], [ -122.85727482599999, 49.040231800000043 ], [ -122.857177904999915, 49.040554286000024 ], [ -122.857160194999892, 49.040857498000079 ], [ -122.857215796999952, 49.041045699000023 ], [ -122.857341983999945, 49.04124310300012 ], [ -122.857509289999939, 49.041398501000053 ], [ -122.85778990199999, 49.041596902000101 ], [ -122.858084178999931, 49.041755997000031 ], [ -122.858501, 49.041820382000076 ], [ -122.858817396999967, 49.041832392000039 ], [ -122.859113779999944, 49.041751078000033 ], [ -122.859203396999931, 49.041726491000055 ], [ -122.859239175999946, 49.041709578000045 ], [ -122.859508410999979, 49.041582291000033 ], [ -122.859758427999935, 49.041396530000057 ], [ -122.85983519899996, 49.04133948700008 ], [ -122.859908804999947, 49.041059601000015 ], [ -122.859912996999952, 49.040549594000026 ], [ -122.859930459999973, 49.039478610000074 ], [ -122.859942884999938, 49.039070743000096 ], [ -122.859860548999947, 49.038790776000013 ], [ -122.859855077999981, 49.038506742000038 ], [ -122.862221072999958, 49.038499690000059 ], [ -122.862050889, 49.045764191000011 ], [ -122.861126681999949, 49.045758800000115 ], [ -122.856427409999966, 49.045783504000035 ], [ -122.855118390999962, 49.045785696000053 ], [ -122.85498536599999, 49.045785030000083 ], [ -122.852326782999924, 49.04577148900006 ], [ -122.850965805999948, 49.04577491000002 ], [ -122.847089469999958, 49.045756980000107 ], [ -122.845461594999961, 49.045749410000077 ], [ -122.844475911999965, 49.045747932000054 ], [ -122.84143798499997, 49.045743358000053 ], [ -122.841329215999949, 49.04574318800006 ], [ -122.841319798999962, 49.045478910000057 ], [ -122.841189218999929, 49.045184902000081 ], [ -122.841059385000023, 49.044880895000148 ], [ -122.841066696, 49.044308904000054 ], [ -122.841104562999988, 49.04416927300008 ], [ -122.841154190999973, 49.043986093000072 ], [ -122.841183190999956, 49.043952854000054 ], [ -122.84129058799999, 49.043829698000074 ], [ -122.84140648199994, 49.043748447000041 ], [ -122.842096090999974, 49.043265003000016 ], [ -122.842115656999937, 49.043252174000038 ], [ -122.843082104999979, 49.04261809200009 ] ], [ [ -122.84914511599996, 49.042387049000126 ], [ -122.849145456999949, 49.042273771000104 ], [ -122.850787472999983, 49.042275906000036 ], [ -122.850786998999979, 49.04243522700007 ], [ -122.852018411999978, 49.042471344000091 ], [ -122.852019786999946, 49.042007625000103 ], [ -122.851198782999958, 49.042006570000126 ], [ -122.8512003929999, 49.041466838000055 ], [ -122.850789896999984, 49.041466308000089 ], [ -122.850790414999906, 49.041292895000012 ], [ -122.849315187999977, 49.041249607000118 ], [ -122.849344382999973, 49.040817579000134 ], [ -122.84788956499996, 49.040774869000046 ], [ -122.847949544999921, 49.039887657000065 ], [ -122.84722759499995, 49.039866454000069 ], [ -122.847265710999935, 49.039302765000102 ], [ -122.847083506999965, 49.039302523000067 ], [ -122.846954865999962, 49.041204781000097 ], [ -122.846275272999961, 49.04118481800009 ], [ -122.84627525499999, 49.041190516000071 ], [ -122.845864759999984, 49.041189969000087 ], [ -122.845863092999949, 49.041729700000097 ], [ -122.845452592999919, 49.041729151000041 ], [ -122.84545175699999, 49.041999017000059 ], [ -122.847914766999963, 49.042002289000031 ], [ -122.847913944999959, 49.042272155000028 ], [ -122.848324448999932, 49.042272695000129 ], [ -122.848324174999931, 49.042362949000022 ], [ -122.84914511599996, 49.042387049000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154848000", "BldgCostT": "104790000", "sL_LossRatio": "0.82489085329602", "sL_AssetLoss": "1165633", "sL_BldgLoss": "961520", "sL_StrLoss": "592490", "sL_NStrLoss": "369030", "sL_ContLoss": "204113", "geom_point": "0101000020E6100000712C7B54B4B55EC09719B29156854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845292724999965, 49.038477164000021 ], [ -122.845438176999949, 49.038476939000162 ], [ -122.845445605999927, 49.039367570000095 ], [ -122.845445681999948, 49.039376557000054 ], [ -122.845457417999938, 49.040658397000115 ], [ -122.845422678999938, 49.040868267000043 ], [ -122.845355747, 49.041008690000076 ], [ -122.845192557999937, 49.041197629000074 ], [ -122.844693707, 49.041537157000093 ], [ -122.843082104999979, 49.04261809200009 ], [ -122.842115656999937, 49.043252174000038 ], [ -122.842096090999974, 49.043265003000016 ], [ -122.84140648199994, 49.043748447000041 ], [ -122.84129058799999, 49.043829698000074 ], [ -122.841183190999956, 49.043952854000054 ], [ -122.841154190999973, 49.043986093000072 ], [ -122.841104562999988, 49.04416927300008 ], [ -122.841066696, 49.044308904000054 ], [ -122.841059385000023, 49.044880895000148 ], [ -122.841189218999929, 49.045184902000081 ], [ -122.841319798999962, 49.045478910000057 ], [ -122.841329215999949, 49.04574318800006 ], [ -122.839913804000034, 49.045743012000067 ], [ -122.839576860999941, 49.045742968000113 ], [ -122.837089683999949, 49.045742796000106 ], [ -122.834385231999974, 49.045733302000045 ], [ -122.834400079999938, 49.043220006000119 ], [ -122.834405202999903, 49.042351416 ], [ -122.834407018999983, 49.042049900000045 ], [ -122.834404537999916, 49.041568400000124 ], [ -122.834403282999958, 49.041325025000084 ], [ -122.834399800999961, 49.040650827000071 ], [ -122.834399091999913, 49.040514894000118 ], [ -122.834389282999922, 49.039499745000064 ], [ -122.834387996999936, 49.039368315000061 ], [ -122.8343857499999, 49.039148313000055 ], [ -122.834378604, 49.038439693000036 ], [ -122.836015532999966, 49.038449549000134 ], [ -122.837888725999917, 49.038460784000101 ], [ -122.839052355999982, 49.038467751000049 ], [ -122.840600417999894, 49.038477003000018 ], [ -122.841741783999936, 49.038482705000014 ], [ -122.842338190999968, 49.03848177 ], [ -122.842718358999946, 49.038481186000084 ], [ -122.843938445999967, 49.038479284000125 ], [ -122.844636336999898, 49.038478211000026 ], [ -122.845292724999965, 49.038477164000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "291959750", "BldgCostT": "198155000", "sL_LossRatio": "0.754287224879975", "sL_AssetLoss": "3518010", "sL_BldgLoss": "2653590", "sL_StrLoss": "1252710", "sL_NStrLoss": "1400880", "sL_ContLoss": "864420", "geom_point": "0101000020E6100000CB03703771B45EC0DFB1960AC3934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821890318999976, 49.153076712 ], [ -122.823387902999954, 49.153084909000093 ], [ -122.823374007999988, 49.154031498000066 ], [ -122.823347093999971, 49.155549004000086 ], [ -122.823025335999944, 49.155547279000096 ], [ -122.8218047299999, 49.155540755000054 ], [ -122.818142823999935, 49.155521096 ], [ -122.817569799999902, 49.155517986000085 ], [ -122.814814688999888, 49.155513104000079 ], [ -122.814834490999914, 49.155044192000105 ], [ -122.814850318999973, 49.153793101000133 ], [ -122.816351687999955, 49.153787104000109 ], [ -122.817570297999964, 49.153767208000026 ], [ -122.817572818999963, 49.153069888000125 ], [ -122.819075081000022, 49.153071091000101 ], [ -122.819715555999949, 49.153072381000086 ], [ -122.820963542999934, 49.153074871000051 ], [ -122.821347498999899, 49.153075629000092 ], [ -122.821890318999976, 49.153076712 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169754814", "BldgCostT": "112479149", "sL_LossRatio": "0.713601621130168", "sL_AssetLoss": "2595720", "sL_BldgLoss": "1852310", "sL_StrLoss": "830310", "sL_NStrLoss": "1022000", "sL_ContLoss": "743410", "geom_point": "0101000020E6100000629380C183B45EC04E8B3C4149934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817639921999927, 49.148445558000091 ], [ -122.821651900999925, 49.148142733000093 ], [ -122.82204624699996, 49.148156589000038 ], [ -122.822253593999932, 49.148220896000048 ], [ -122.823133671999969, 49.148234768000073 ], [ -122.82343381299998, 49.148239498000059 ], [ -122.823418192999895, 49.149741013000046 ], [ -122.823416428999977, 49.149910246000097 ], [ -122.823414169999936, 49.15012784100005 ], [ -122.823412043999923, 49.150332740000088 ], [ -122.823409585999968, 49.150568610000072 ], [ -122.823405993999927, 49.15091480800006 ], [ -122.823391103999981, 49.152376792000098 ], [ -122.823387902999954, 49.153084909000093 ], [ -122.821890318999976, 49.153076712 ], [ -122.821347498999899, 49.153075629000092 ], [ -122.820963542999934, 49.153074871000051 ], [ -122.819715555999949, 49.153072381000086 ], [ -122.819075081000022, 49.153071091000101 ], [ -122.817572818999963, 49.153069888000125 ], [ -122.817601403999959, 49.151851603000061 ], [ -122.817619175999951, 49.150849311000115 ], [ -122.817625813999911, 49.150592692000089 ], [ -122.817654503999933, 49.149561343000045 ], [ -122.817655812999988, 49.149514096000125 ], [ -122.817661411999978, 49.149231289000085 ], [ -122.817639921999927, 49.148445558000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145031031", "BldgCostT": "85648603", "sL_LossRatio": "0.640114848512893", "sL_AssetLoss": "2668907", "sL_BldgLoss": "1708407", "sL_StrLoss": "708797", "sL_NStrLoss": "999610", "sL_ContLoss": "960500", "geom_point": "0101000020E61000006A44F66224B45EC00F6A01D265934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.811519485999952, 49.150508955000134 ], [ -122.811743842999974, 49.150141074000032 ], [ -122.81179283699997, 49.150068162000068 ], [ -122.811791448999927, 49.150434428000111 ], [ -122.812614241999981, 49.150435766000051 ], [ -122.812615259999987, 49.150165906000097 ], [ -122.813026653999955, 49.150166573000028 ], [ -122.813027668999965, 49.149896713000032 ], [ -122.813850452999986, 49.149898042000039 ], [ -122.813852981999986, 49.149222825000059 ], [ -122.812374398999921, 49.149179039000074 ], [ -122.812431296999932, 49.149087796000082 ], [ -122.812556445999945, 49.148827089000143 ], [ -122.81260218599999, 49.148646859000081 ], [ -122.812577102999981, 49.148405679000049 ], [ -122.812437906999904, 49.147955402000093 ], [ -122.815535805999929, 49.148383694000074 ], [ -122.817639921999927, 49.148445558000091 ], [ -122.817661411999978, 49.149231289000085 ], [ -122.817655812999988, 49.149514096000125 ], [ -122.817654503999933, 49.149561343000045 ], [ -122.817625813999911, 49.150592692000089 ], [ -122.817619175999951, 49.150849311000115 ], [ -122.817601403999959, 49.151851603000061 ], [ -122.817572818999963, 49.153069888000125 ], [ -122.817570297999964, 49.153767208000026 ], [ -122.816351687999955, 49.153787104000109 ], [ -122.814850318999973, 49.153793101000133 ], [ -122.814834490999914, 49.155044192000105 ], [ -122.814814688999888, 49.155513104000079 ], [ -122.813768134999947, 49.15551326900006 ], [ -122.812426709999926, 49.155513502000105 ], [ -122.812487499999918, 49.153925906000076 ], [ -122.812467187999971, 49.153328545000079 ], [ -122.812123419, 49.152627223000138 ], [ -122.811689809999933, 49.152066445000067 ], [ -122.811398022, 49.151231797000086 ], [ -122.811408804999985, 49.150732857000037 ], [ -122.811519485999952, 49.150508955000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56380833", "BldgCostT": "38883333", "sL_LossRatio": "0.735886531088365", "sL_AssetLoss": "1222467", "sL_BldgLoss": "899597", "sL_StrLoss": "379407", "sL_NStrLoss": "520190", "sL_ContLoss": "322870", "geom_point": "0101000020E6100000025B044AB3B35EC0214D279F3F934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809442205999943, 49.151999297000053 ], [ -122.80955088099995, 49.151969681000011 ], [ -122.809886401999933, 49.151878206000028 ], [ -122.810639772999977, 49.151886097000023 ], [ -122.810923800999902, 49.151781890000038 ], [ -122.81112508399994, 49.151605801000116 ], [ -122.811156893999936, 49.151401298000067 ], [ -122.81108189899993, 49.151035088000135 ], [ -122.811051448999976, 49.15050380800006 ], [ -122.811031984999943, 49.150165007000041 ], [ -122.811007158999928, 49.150043721000053 ], [ -122.810942600999937, 49.149728882000062 ], [ -122.810807998999934, 49.149573595000092 ], [ -122.810597895999976, 49.149439413000081 ], [ -122.810329098999901, 49.149380991000072 ], [ -122.809611979999914, 49.149384905000012 ], [ -122.80925289399994, 49.149423812000052 ], [ -122.808623792999953, 49.149644007000056 ], [ -122.808243691, 49.149450707000057 ], [ -122.807841482999933, 49.149358593000073 ], [ -122.807405217999957, 49.1493447080001 ], [ -122.806774913999959, 49.149423517000116 ], [ -122.806147105999926, 49.149502009000074 ], [ -122.805392400999978, 49.14958106800001 ], [ -122.805141987999946, 49.14960729900006 ], [ -122.804904978999943, 49.149666101000015 ], [ -122.804493914999966, 49.149863787000093 ], [ -122.804210014999953, 49.15016539700008 ], [ -122.804162485999939, 49.150298195000069 ], [ -122.803497306999944, 49.150144177000108 ], [ -122.803168397999954, 49.15010376500009 ], [ -122.80131359399995, 49.150107235000107 ], [ -122.80120386399993, 49.150108478000043 ], [ -122.801190757999962, 49.149363006000023 ], [ -122.801189130999944, 49.149272937000077 ], [ -122.801170618999905, 49.148220309000131 ], [ -122.801169202000011, 49.148139356000051 ], [ -122.801168105999935, 49.148077773000097 ], [ -122.801283307999981, 49.148075850000048 ], [ -122.805626374999946, 49.148002661000064 ], [ -122.80560833599999, 49.148265291000023 ], [ -122.806040330999934, 49.148266018000115 ], [ -122.80603927699994, 49.148535877000022 ], [ -122.806450657999946, 49.148536568000083 ], [ -122.806449605999944, 49.148806428000022 ], [ -122.808506519, 49.148809857000096 ], [ -122.808505478999962, 49.149079716000145 ], [ -122.808916864999972, 49.149080398000123 ], [ -122.808917902999937, 49.148810538000092 ], [ -122.810074358999955, 49.148812446000086 ], [ -122.81013342599999, 49.147951285000055 ], [ -122.812437906999904, 49.147955402000093 ], [ -122.812577102999981, 49.148405679000049 ], [ -122.81260218599999, 49.148646859000081 ], [ -122.812556445999945, 49.148827089000143 ], [ -122.812431296999932, 49.149087796000082 ], [ -122.812374398999921, 49.149179039000074 ], [ -122.811384925999917, 49.149149724000068 ], [ -122.811384149999967, 49.149354317000061 ], [ -122.811795537999956, 49.149354988000049 ], [ -122.81179283699997, 49.150068162000068 ], [ -122.811743842999974, 49.150141074000032 ], [ -122.811519485999952, 49.150508955000134 ], [ -122.811408804999985, 49.150732857000037 ], [ -122.811398022, 49.151231797000086 ], [ -122.811689809999933, 49.152066445000067 ], [ -122.812123419, 49.152627223000138 ], [ -122.812467187999971, 49.153328545000079 ], [ -122.812487499999918, 49.153925906000076 ], [ -122.812426709999926, 49.155513502000105 ], [ -122.810922488999921, 49.155519389000112 ], [ -122.810942296999926, 49.155063955000095 ], [ -122.810962271999955, 49.154605760000067 ], [ -122.810965397999979, 49.154533983000121 ], [ -122.81094250299999, 49.154308092000072 ], [ -122.810839865999981, 49.154065400000057 ], [ -122.810179292999962, 49.153104203000062 ], [ -122.809974683999911, 49.152797495000065 ], [ -122.809519200999887, 49.152114698000055 ], [ -122.809442205999943, 49.151999297000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122546666", "BldgCostT": "76076666", "sL_LossRatio": "0.6815296269823", "sL_AssetLoss": "1650860", "sL_BldgLoss": "1125110", "sL_StrLoss": "495260", "sL_NStrLoss": "629850", "sL_ContLoss": "525750", "geom_point": "0101000020E6100000C0D07EFF41B25EC05FDDB1D8A6944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782055713, 49.158876318000068 ], [ -122.78217087299997, 49.15869773400005 ], [ -122.783373729999965, 49.159163675000059 ], [ -122.7837636309999, 49.159314688000059 ], [ -122.784211549999938, 49.159488187000086 ], [ -122.784917854999918, 49.159761743000061 ], [ -122.785185778999917, 49.159865500000087 ], [ -122.785891874999919, 49.160138225000019 ], [ -122.787141272999918, 49.160620790000095 ], [ -122.788325433999958, 49.161078132000085 ], [ -122.790192134999984, 49.161799015000049 ], [ -122.790181593999932, 49.162297599000077 ], [ -122.790174431999958, 49.162636809000098 ], [ -122.790171001999937, 49.162800358000013 ], [ -122.788649297999925, 49.162797299000069 ], [ -122.787433318999888, 49.162795297000059 ], [ -122.785190017000019, 49.162777890000037 ], [ -122.782508147999948, 49.162766463000068 ], [ -122.782026515000013, 49.162764386000056 ], [ -122.782016774999988, 49.162013553000065 ], [ -122.782022666999978, 49.161373979000075 ], [ -122.782023358999979, 49.161324429000032 ], [ -122.782023184999915, 49.160930686000029 ], [ -122.78201702399997, 49.160227666000068 ], [ -122.78201530099993, 49.159697782000094 ], [ -122.782007726999936, 49.159074016000069 ], [ -122.782055713, 49.158876318000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295214540", "BldgCostT": "194890017", "sL_LossRatio": "0.74290450595268", "sL_AssetLoss": "3384190", "sL_BldgLoss": "2514130", "sL_StrLoss": "1108060", "sL_NStrLoss": "1406070", "sL_ContLoss": "870060", "geom_point": "0101000020E6100000B80E4FC8F1B15EC0F8AD39B486944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.778915412999964, 49.159085150000081 ], [ -122.778904793, 49.158882092000091 ], [ -122.77887889199998, 49.158455439000065 ], [ -122.778812569, 49.157363740000051 ], [ -122.77881307399997, 49.157303995000099 ], [ -122.779889414999928, 49.157789711000135 ], [ -122.78217087299997, 49.15869773400005 ], [ -122.782055713, 49.158876318000068 ], [ -122.782007726999936, 49.159074016000069 ], [ -122.78201530099993, 49.159697782000094 ], [ -122.78201702399997, 49.160227666000068 ], [ -122.782023184999915, 49.160930686000029 ], [ -122.782023358999979, 49.161324429000032 ], [ -122.782022666999978, 49.161373979000075 ], [ -122.782016774999988, 49.162013553000065 ], [ -122.782026515000013, 49.162764386000056 ], [ -122.77986070299994, 49.162754549000105 ], [ -122.778863093999945, 49.162749995000091 ], [ -122.778875230999972, 49.161898075000082 ], [ -122.778883458999928, 49.161322484000095 ], [ -122.778889627999916, 49.160890733 ], [ -122.778899008999943, 49.160233196000036 ], [ -122.778914275999966, 49.159163982000102 ], [ -122.778915412999964, 49.159085150000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95198333", "BldgCostT": "62558333", "sL_LossRatio": "0.686274027976582", "sL_AssetLoss": "1627790", "sL_BldgLoss": "1117110", "sL_StrLoss": "503710", "sL_NStrLoss": "613400", "sL_ContLoss": "510680", "geom_point": "0101000020E61000006BA2959C8FB15EC0059EEF65AA944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777328301999916, 49.159078194000138 ], [ -122.778915412999964, 49.159085150000081 ], [ -122.778914275999966, 49.159163982000102 ], [ -122.778899008999943, 49.160233196000036 ], [ -122.778889627999916, 49.160890733 ], [ -122.778883458999928, 49.161322484000095 ], [ -122.778875230999972, 49.161898075000082 ], [ -122.778863093999945, 49.162749995000091 ], [ -122.777684091999959, 49.162747214000042 ], [ -122.776017603999946, 49.16275579500013 ], [ -122.774250406999968, 49.162765184000136 ], [ -122.773205901999944, 49.162770710000053 ], [ -122.771095940999899, 49.16278494100002 ], [ -122.770615927000023, 49.162788177000074 ], [ -122.767712061999987, 49.162807726000104 ], [ -122.767725868999918, 49.161820566000088 ], [ -122.767728483, 49.161250257000042 ], [ -122.769050911999969, 49.161199899000067 ], [ -122.770369491999986, 49.16122501500012 ], [ -122.772085210999975, 49.161236788000025 ], [ -122.773199975999901, 49.161235998000087 ], [ -122.773221242999966, 49.160501898000057 ], [ -122.773222612999973, 49.160455490000111 ], [ -122.774394184999935, 49.160424798000093 ], [ -122.775454660999984, 49.160418301000064 ], [ -122.775728938999961, 49.160416612000034 ], [ -122.775783807999929, 49.160416271000059 ], [ -122.775992101000014, 49.160414995000103 ], [ -122.776006979, 49.159073797000097 ], [ -122.777328301999916, 49.159078194000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164380207", "BldgCostT": "102401684", "sL_LossRatio": "0.684662843703947", "sL_AssetLoss": "2619260", "sL_BldgLoss": "1793310", "sL_StrLoss": "741850", "sL_NStrLoss": "1051460", "sL_ContLoss": "825950", "geom_point": "0101000020E6100000E869EAE9A1B15EC05D4FADBE3A944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77331446599996, 49.155477090000083 ], [ -122.773441682999959, 49.155283568000044 ], [ -122.774692527999932, 49.155768881000022 ], [ -122.776167038999986, 49.156339680000066 ], [ -122.776740034999975, 49.156561494000137 ], [ -122.778167665999931, 49.157114105000076 ], [ -122.77881307399997, 49.157303995000099 ], [ -122.778812569, 49.157363740000051 ], [ -122.77887889199998, 49.158455439000065 ], [ -122.778904793, 49.158882092000091 ], [ -122.778915412999964, 49.159085150000081 ], [ -122.777328301999916, 49.159078194000138 ], [ -122.776006979, 49.159073797000097 ], [ -122.775992101000014, 49.160414995000103 ], [ -122.775783807999929, 49.160416271000059 ], [ -122.775728938999961, 49.160416612000034 ], [ -122.775454660999984, 49.160418301000064 ], [ -122.774394184999935, 49.160424798000093 ], [ -122.773222612999973, 49.160455490000111 ], [ -122.773254197999947, 49.159072401000074 ], [ -122.773292983999966, 49.15736689300013 ], [ -122.773293554999938, 49.157317624000093 ], [ -122.773303473999974, 49.15644504400008 ], [ -122.77331446599996, 49.155477090000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96085250", "BldgCostT": "64115000", "sL_LossRatio": "0.697388503049978", "sL_AssetLoss": "2011490", "sL_BldgLoss": "1402790", "sL_StrLoss": "621790", "sL_NStrLoss": "781000", "sL_ContLoss": "608700", "geom_point": "0101000020E6100000D4D5151A25B55EC0FF1511499D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823396394999946, 49.170118397000046 ], [ -122.823401705999942, 49.168675990000096 ], [ -122.824107509999934, 49.168681512000042 ], [ -122.824835875999895, 49.168765493000095 ], [ -122.824923815999981, 49.168775640000064 ], [ -122.824937410999979, 49.168777205000055 ], [ -122.825999516999957, 49.169147304000084 ], [ -122.8263519, 49.169154135000099 ], [ -122.826536295999986, 49.169157711000082 ], [ -122.826946588999959, 49.169073390000072 ], [ -122.827315388999963, 49.168893200000085 ], [ -122.827500408999953, 49.168694095000035 ], [ -122.829939791999976, 49.168713704000048 ], [ -122.830368830999959, 49.168657003000064 ], [ -122.830672006, 49.168534388000069 ], [ -122.830871415999937, 49.16842489400009 ], [ -122.831062383999935, 49.168230371000092 ], [ -122.831468084999983, 49.16781719500004 ], [ -122.831579687999977, 49.16760871000006 ], [ -122.831657793999938, 49.167307402000063 ], [ -122.831791211, 49.166497691000089 ], [ -122.832888406000038, 49.16649389600007 ], [ -122.833467152999958, 49.166485354000017 ], [ -122.833782141999947, 49.166480697000068 ], [ -122.834642398999904, 49.166468002000038 ], [ -122.834630614999952, 49.167397325000124 ], [ -122.834620388999952, 49.168201823000082 ], [ -122.834617464999923, 49.169090146000087 ], [ -122.834616704999945, 49.169201845 ], [ -122.834653936999956, 49.169664296000114 ], [ -122.834656414999955, 49.1700886960001 ], [ -122.832535755, 49.170101225000138 ], [ -122.832329985999962, 49.170102458000066 ], [ -122.832132510999983, 49.170103631000096 ], [ -122.83184986899991, 49.170105306000096 ], [ -122.83171273, 49.170106103000123 ], [ -122.830678202999977, 49.170112185000065 ], [ -122.827541184999987, 49.170105494000019 ], [ -122.82725397800003, 49.170107489000067 ], [ -122.825014196999987, 49.170122913000071 ], [ -122.824194588999916, 49.170120637000075 ], [ -122.823396394999946, 49.170118397000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166478637", "BldgCostT": "112397080", "sL_LossRatio": "0.72807508950268", "sL_AssetLoss": "2695450", "sL_BldgLoss": "1962490", "sL_StrLoss": "871840", "sL_NStrLoss": "1090650", "sL_ContLoss": "732960", "geom_point": "0101000020E6100000E3C7FC2F19B55EC01C4A58E137954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82823649499997, 49.165442393000049 ], [ -122.827874304999909, 49.165083911000103 ], [ -122.82773648099996, 49.164833007000063 ], [ -122.827736147999985, 49.164805667000074 ], [ -122.827718274999953, 49.163429217000058 ], [ -122.827711295999976, 49.162890511000036 ], [ -122.82807457899996, 49.162888649000159 ], [ -122.828584078999981, 49.162886004000072 ], [ -122.829062193999945, 49.162883545000113 ], [ -122.829761671999975, 49.16287993100012 ], [ -122.830022426999946, 49.162878571000114 ], [ -122.830965986999928, 49.162873703000066 ], [ -122.830977423999968, 49.163711101000047 ], [ -122.830984006999984, 49.163829929000016 ], [ -122.830995893999969, 49.164043307000064 ], [ -122.831241086999967, 49.164529799 ], [ -122.83124508899999, 49.164712030000103 ], [ -122.831248812999917, 49.164882927000043 ], [ -122.831255116999927, 49.165170001000064 ], [ -122.831310570999946, 49.165584952000081 ], [ -122.831312288000035, 49.165597793000067 ], [ -122.831533089999951, 49.165958494000122 ], [ -122.831612996000018, 49.166125464000125 ], [ -122.831791211, 49.166497691000089 ], [ -122.831657793999938, 49.167307402000063 ], [ -122.831579687999977, 49.16760871000006 ], [ -122.831468084999983, 49.16781719500004 ], [ -122.831062383999935, 49.168230371000092 ], [ -122.830871415999937, 49.16842489400009 ], [ -122.830672006, 49.168534388000069 ], [ -122.830368830999959, 49.168657003000064 ], [ -122.829939791999976, 49.168713704000048 ], [ -122.827500408999953, 49.168694095000035 ], [ -122.82820588599999, 49.16786080900004 ], [ -122.828368312999942, 49.167629489000028 ], [ -122.828368511999898, 49.167445686000121 ], [ -122.828388377999943, 49.166531696000071 ], [ -122.828366375999934, 49.166075009000103 ], [ -122.828360314999898, 49.165948904000103 ], [ -122.828347481999984, 49.165683503000075 ], [ -122.82823649499997, 49.165442393000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163811142", "BldgCostT": "105511521", "sL_LossRatio": "0.685965829891502", "sL_AssetLoss": "3881170", "sL_BldgLoss": "2662350", "sL_StrLoss": "1129000", "sL_NStrLoss": "1533350", "sL_ContLoss": "1218820", "geom_point": "0101000020E6100000E110269C88C85EC09E2F1FDEAD924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130799902999954, 49.144999083000116 ], [ -123.130809108999969, 49.144455601000089 ], [ -123.12907509199999, 49.144443608000103 ], [ -123.129093898999969, 49.143583710000058 ], [ -123.133124088999921, 49.143601310000172 ], [ -123.13374109399993, 49.143603966000072 ], [ -123.13515279799999, 49.14361009100007 ], [ -123.136693679999951, 49.143619596000072 ], [ -123.136682211999954, 49.145965195000059 ], [ -123.13667768899991, 49.147198327000048 ], [ -123.136673714, 49.148285596000044 ], [ -123.134571786999942, 49.148259415000069 ], [ -123.130931086999965, 49.148231798000076 ], [ -123.129038102999957, 49.148217409000075 ], [ -123.129048089999927, 49.147388790000065 ], [ -123.130534986999933, 49.147387895000065 ], [ -123.130744598999939, 49.146656611 ], [ -123.130701411999937, 49.146467094000116 ], [ -123.130587709999986, 49.146245196000095 ], [ -123.130573020999975, 49.146233676000101 ], [ -123.130378591999943, 49.146081093000127 ], [ -123.13079670799999, 49.145189494000086 ], [ -123.130799902999954, 49.144999083000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212831227", "BldgCostT": "144024856", "sL_LossRatio": "0.730897132085788", "sL_AssetLoss": "4352815", "sL_BldgLoss": "3181460", "sL_StrLoss": "1358680", "sL_NStrLoss": "1822780", "sL_ContLoss": "1171355", "geom_point": "0101000020E6100000A104A2CC2BC85EC0D4CB638BAC924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12514328499999, 49.144743116000079 ], [ -123.125172713999959, 49.143576386000092 ], [ -123.128360802999964, 49.143584007000101 ], [ -123.129093898999969, 49.143583710000058 ], [ -123.12907509199999, 49.144443608000103 ], [ -123.130809108999969, 49.144455601000089 ], [ -123.130799902999954, 49.144999083000116 ], [ -123.13079670799999, 49.145189494000086 ], [ -123.130378591999943, 49.146081093000127 ], [ -123.130573020999975, 49.146233676000101 ], [ -123.130587709999986, 49.146245196000095 ], [ -123.130701411999937, 49.146467094000116 ], [ -123.130744598999939, 49.146656611 ], [ -123.130534986999933, 49.147387895000065 ], [ -123.129048089999927, 49.147388790000065 ], [ -123.129038102999957, 49.148217409000075 ], [ -123.126904990999947, 49.148209102000088 ], [ -123.125163706999913, 49.148201286000102 ], [ -123.125141184999933, 49.146699210000101 ], [ -123.125123617999947, 49.145524600000023 ], [ -123.125141478999936, 49.144815093000048 ], [ -123.12514328499999, 49.144743116000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177353583", "BldgCostT": "121338333", "sL_LossRatio": "0.879767078962962", "sL_AssetLoss": "644682", "sL_BldgLoss": "567170", "sL_StrLoss": "394760", "sL_NStrLoss": "172410", "sL_ContLoss": "77512", "geom_point": "0101000020E6100000814FCEAB15B45EC09FC32931D7914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.813220255999951, 49.137336102000049 ], [ -122.814844987999933, 49.137359312000058 ], [ -122.815315993999917, 49.137384907000133 ], [ -122.815530204999931, 49.137418297000096 ], [ -122.815821291999967, 49.137510699000067 ], [ -122.816374073999938, 49.137844677000061 ], [ -122.816687123999898, 49.138033794000087 ], [ -122.816880091999963, 49.138178195000073 ], [ -122.817076382, 49.138452594000135 ], [ -122.817178201999965, 49.138768189000125 ], [ -122.817177407999921, 49.139781001000088 ], [ -122.817173494, 49.140278291000087 ], [ -122.817171210999959, 49.141012601000078 ], [ -122.815667107999971, 49.141023994000058 ], [ -122.815220815999979, 49.14102674 ], [ -122.814939950999985, 49.141028456000114 ], [ -122.813850486999939, 49.14103509100002 ], [ -122.812243477999971, 49.141048702000091 ], [ -122.810279148999939, 49.141056292000073 ], [ -122.810247873, 49.140573304000014 ], [ -122.81012855799996, 49.140294931000021 ], [ -122.810075238999971, 49.13969322 ], [ -122.810160607999933, 49.139347953000055 ], [ -122.810286577999975, 49.138949803000045 ], [ -122.810245023999983, 49.13855660400003 ], [ -122.810349414999976, 49.138556903000072 ], [ -122.812158987999979, 49.138562003000104 ], [ -122.812142702999921, 49.137320704000039 ], [ -122.813220255999951, 49.137336102000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263512811", "BldgCostT": "171118190", "sL_LossRatio": "0.774632274306847", "sL_AssetLoss": "1304437", "sL_BldgLoss": "1010459", "sL_StrLoss": "579839", "sL_NStrLoss": "430620", "sL_ContLoss": "293978", "geom_point": "0101000020E6100000B6924E0BBBB35EC05FFE5C978E914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808057484999949, 49.133729504 ], [ -122.812146701999922, 49.133742620000085 ], [ -122.812167200999951, 49.135542690000136 ], [ -122.812142702999921, 49.137320704000039 ], [ -122.812158987999979, 49.138562003000104 ], [ -122.810349414999976, 49.138556903000072 ], [ -122.810245023999983, 49.13855660400003 ], [ -122.810286577999975, 49.138949803000045 ], [ -122.810160607999933, 49.139347953000055 ], [ -122.810075238999971, 49.13969322 ], [ -122.81012855799996, 49.140294931000021 ], [ -122.810247873, 49.140573304000014 ], [ -122.810279148999939, 49.141056292000073 ], [ -122.808113109999937, 49.141067794000044 ], [ -122.807489814999954, 49.141063700000089 ], [ -122.805634899999959, 49.141075309000058 ], [ -122.805684420999953, 49.14041360000008 ], [ -122.805670383999967, 49.14007890500006 ], [ -122.805614386999977, 49.139876299000029 ], [ -122.80530629799992, 49.139534612000055 ], [ -122.805036093999902, 49.139318396000043 ], [ -122.804818878999981, 49.139148898000045 ], [ -122.804618190999975, 49.138937494000068 ], [ -122.804468917999969, 49.138716803000108 ], [ -122.804028441999947, 49.137687475000099 ], [ -122.803955312999946, 49.137516608000119 ], [ -122.80389220499994, 49.137239012000109 ], [ -122.804104901999949, 49.136914609000058 ], [ -122.804373502999979, 49.136695489000118 ], [ -122.804570536999961, 49.136567927000058 ], [ -122.805020215999946, 49.136276790000061 ], [ -122.805102852999951, 49.136212993000115 ], [ -122.805316885, 49.136047693000059 ], [ -122.805563401999976, 49.135729807000097 ], [ -122.805661325999949, 49.135501102 ], [ -122.805693392999956, 49.135054203000038 ], [ -122.805621696999935, 49.134781799000109 ], [ -122.805432278999959, 49.134346270000101 ], [ -122.80543645600001, 49.1337075490001 ], [ -122.80666189599998, 49.133720520000047 ], [ -122.808057484999949, 49.133729504 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114068250", "BldgCostT": "77490000", "sL_LossRatio": "0.706631624087669", "sL_AssetLoss": "2355230", "sL_BldgLoss": "1664280", "sL_StrLoss": "735670", "sL_NStrLoss": "928610", "sL_ContLoss": "690950", "geom_point": "0101000020E61000002489FC65FDAF5EC0753F763045924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.753895678999953, 49.148184070000184 ], [ -122.753793347999974, 49.148167904000069 ], [ -122.753659998999922, 49.148167100000094 ], [ -122.75275209899992, 49.148161715000079 ], [ -122.751550376999944, 49.148156075 ], [ -122.750717207999969, 49.148153460000032 ], [ -122.749573006999952, 49.148148636000073 ], [ -122.747933709, 49.148136332000043 ], [ -122.746781704999989, 49.148127665000082 ], [ -122.745922064999988, 49.148121180000082 ], [ -122.74321718, 49.148105251000118 ], [ -122.742408182999966, 49.148100449000026 ], [ -122.739073018999989, 49.148080650000097 ], [ -122.739144918999983, 49.147055204000033 ], [ -122.74228122399991, 49.147150201 ], [ -122.742284187999985, 49.147107880000114 ], [ -122.742494789, 49.14711425600013 ], [ -122.742580844999949, 49.145885584000041 ], [ -122.744435197999962, 49.14594170500007 ], [ -122.744639759000037, 49.143019178000074 ], [ -122.744360174999912, 49.143018560000066 ], [ -122.744363078999967, 49.142453800000034 ], [ -122.744365725999955, 49.141939123000057 ], [ -122.745143737999911, 49.141940843000043 ], [ -122.745161876999987, 49.141681634000108 ], [ -122.745189699999969, 49.141682476000042 ], [ -122.745191139999946, 49.141401223000017 ], [ -122.745602461999951, 49.141402130000074 ], [ -122.745603842999955, 49.141132271000068 ], [ -122.745192525, 49.141131364000024 ], [ -122.745193908000019, 49.140861505000032 ], [ -122.744403119999973, 49.140859757000058 ], [ -122.744433693999923, 49.140804990000035 ], [ -122.744117809999977, 49.140767910000108 ], [ -122.743940213999934, 49.140713797000068 ], [ -122.742953003999943, 49.140738009000096 ], [ -122.74313037899999, 49.140856194000094 ], [ -122.743156371999973, 49.140856991000092 ], [ -122.741903386999965, 49.140854197000095 ], [ -122.741901985999945, 49.141124055000077 ], [ -122.741346707, 49.141122814 ], [ -122.740668034999942, 49.14112129100004 ], [ -122.740669441999927, 49.140851431000137 ], [ -122.740258126999976, 49.140850507000074 ], [ -122.740259212999945, 49.140642911000107 ], [ -122.740259537999961, 49.140580648000082 ], [ -122.740117398999956, 49.14058032800007 ], [ -122.739436911999974, 49.140578795000117 ], [ -122.739438475999975, 49.14028071300006 ], [ -122.739442570999969, 49.139499359000069 ], [ -122.73985387599997, 49.139500286000064 ], [ -122.739855286999912, 49.139230427000022 ], [ -122.740677890999933, 49.139232277000126 ], [ -122.740679297999975, 49.138962418000077 ], [ -122.741090597999928, 49.13896334000006 ], [ -122.741092002999935, 49.138693482000058 ], [ -122.741914596999919, 49.138695323000078 ], [ -122.741915998999943, 49.138425463000068 ], [ -122.74232729299996, 49.138426383000052 ], [ -122.74232869299999, 49.138156523000049 ], [ -122.749731964999967, 49.138172807000096 ], [ -122.749733323999962, 49.13790294700005 ], [ -122.75137848699994, 49.137906502000085 ], [ -122.751379836999917, 49.137636642000125 ], [ -122.751791124999897, 49.137637527000045 ], [ -122.751792472999966, 49.137367668000145 ], [ -122.75220375899994, 49.137368551000129 ], [ -122.752205104999973, 49.137098692000102 ], [ -122.752812544999969, 49.137099994 ], [ -122.752919606999967, 49.13556620500011 ], [ -122.756480488999927, 49.135673627000138 ], [ -122.756520886999965, 49.139806496000062 ], [ -122.756304717999953, 49.139806040000074 ], [ -122.756303394999946, 49.140075900000092 ], [ -122.756523524999977, 49.140076364000052 ], [ -122.756531429999924, 49.140884905000043 ], [ -122.756537453999925, 49.141502061000082 ], [ -122.756546369999938, 49.1424140170001 ], [ -122.75655630199995, 49.143430436000109 ], [ -122.756566775999929, 49.144504806000057 ], [ -122.756565607999946, 49.144788835000057 ], [ -122.756564410999957, 49.145076682000095 ], [ -122.756564174999966, 49.145131901000113 ], [ -122.7565646, 49.145256390000057 ], [ -122.756565457999955, 49.145508299000049 ], [ -122.756566996999936, 49.145967067000107 ], [ -122.756569204999977, 49.146631365000111 ], [ -122.756668177999956, 49.147079565000084 ], [ -122.756692920999981, 49.147314573000074 ], [ -122.756661238999982, 49.147471077000048 ], [ -122.756642730999957, 49.147562678000064 ], [ -122.756477193999956, 49.147911819000036 ], [ -122.756431854999917, 49.148011374000092 ], [ -122.756247901999927, 49.148351512000069 ], [ -122.756169053999898, 49.148497257000074 ], [ -122.756118117, 49.148834534000095 ], [ -122.756139473999951, 49.149059554000061 ], [ -122.75622579399996, 49.149295537000029 ], [ -122.756004115999971, 49.149349238000056 ], [ -122.755606581, 49.149290383000036 ], [ -122.755328335999977, 49.149191885000072 ], [ -122.75507275199999, 49.149024677000021 ], [ -122.754635977999939, 49.148506910000059 ], [ -122.754422264999945, 49.148328346000035 ], [ -122.754391134999977, 49.148317847000065 ], [ -122.754082133999987, 49.148213546000079 ], [ -122.753895678999953, 49.148184070000184 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.70497253541486", "sL_AssetLoss": "207540", "sL_BldgLoss": "146310", "sL_StrLoss": "59510", "sL_NStrLoss": "86800", "sL_ContLoss": "61230", "geom_point": "0101000020E6100000D56E1EFB17AF5EC05BDB0C1EC3924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.73467347899998, 49.148053481 ], [ -122.73463957, 49.144959577000094 ], [ -122.736946394999933, 49.145029558000097 ], [ -122.73675763199995, 49.147719931000083 ], [ -122.73799132399995, 49.14775733700003 ], [ -122.737969106999969, 49.148074074000128 ], [ -122.735126830999917, 49.148057089000091 ], [ -122.734895356999957, 49.148055710000037 ], [ -122.73467347899998, 49.148053481 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26311417", "BldgCostT": "16671667", "sL_LossRatio": "0.649522957662493", "sL_AssetLoss": "1073280", "sL_BldgLoss": "697120", "sL_StrLoss": "301720", "sL_NStrLoss": "395400", "sL_ContLoss": "376160", "geom_point": "0101000020E6100000C7E2D45A1AAF5EC0E11FBE65B1914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734612590999944, 49.142497766000069 ], [ -122.734564658999915, 49.138124376000121 ], [ -122.734581881999944, 49.13678506300004 ], [ -122.734619537999947, 49.133856977000036 ], [ -122.738025075999985, 49.133960300000105 ], [ -122.737772852999925, 49.137557149000088 ], [ -122.736968198999946, 49.137532746000041 ], [ -122.736855417999919, 49.139140490000052 ], [ -122.736803585999979, 49.139879329000067 ], [ -122.737107273999968, 49.139888540000115 ], [ -122.737096707999939, 49.140039163000019 ], [ -122.736414095999947, 49.140552910000061 ], [ -122.735422401999969, 49.141477203000136 ], [ -122.735379202999937, 49.14165660400009 ], [ -122.736316101999989, 49.141002908000083 ], [ -122.737081297999964, 49.140258848000023 ], [ -122.736854947999973, 49.143485355000053 ], [ -122.734622672999976, 49.143417631000062 ], [ -122.734612590999944, 49.142497766000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307706052", "BldgCostT": "201288745", "sL_LossRatio": "0.702181730225426", "sL_AssetLoss": "2848519", "sL_BldgLoss": "2000178", "sL_StrLoss": "888308", "sL_NStrLoss": "1111870", "sL_ContLoss": "848341", "geom_point": "0101000020E610000080B67AF300B05EC0FD7DA42DD38F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734672996000015, 49.12970124600016 ], [ -122.734704495999921, 49.127249278000136 ], [ -122.734737442999972, 49.12630296800009 ], [ -122.73473997499994, 49.126231014000084 ], [ -122.734752608999926, 49.125867419000016 ], [ -122.73483939599997, 49.123374872000042 ], [ -122.734845163999978, 49.121505762000034 ], [ -122.734846122999969, 49.121189800000053 ], [ -122.734853735999977, 49.120242018000098 ], [ -122.734862949, 49.118802259000077 ], [ -122.735045062999944, 49.118803292000116 ], [ -122.738004957000015, 49.118827331000062 ], [ -122.739289332999959, 49.118834741000079 ], [ -122.742325143999949, 49.118850150000092 ], [ -122.745974184999923, 49.118872337000028 ], [ -122.745994896999918, 49.119692988000054 ], [ -122.74600462599993, 49.120102397000011 ], [ -122.746115421999946, 49.120222003000052 ], [ -122.745935857999953, 49.121575502000013 ], [ -122.745899789999925, 49.122522389000032 ], [ -122.75076355, 49.122518376000066 ], [ -122.750928019999947, 49.122518229000086 ], [ -122.751558572999954, 49.122517692000066 ], [ -122.752052036999928, 49.122517259000091 ], [ -122.756544741999974, 49.122513248000104 ], [ -122.756545740999954, 49.120240314000043 ], [ -122.75654582199995, 49.120100056000062 ], [ -122.756544372999954, 49.119197069000037 ], [ -122.756604250999914, 49.119104247000109 ], [ -122.756611868999983, 49.118955798000094 ], [ -122.760098131999925, 49.11896189000003 ], [ -122.762387694999973, 49.11896584600008 ], [ -122.764984338, 49.118986358000079 ], [ -122.765554298999973, 49.118990838000038 ], [ -122.765825229999962, 49.118935923000016 ], [ -122.767782991, 49.118951526000032 ], [ -122.769625666999971, 49.118950475000126 ], [ -122.770491173999957, 49.118949975000071 ], [ -122.772430405999955, 49.118893458000059 ], [ -122.772329398999887, 49.120349838000038 ], [ -122.771651118999898, 49.121164135000107 ], [ -122.770682070999925, 49.121135039000087 ], [ -122.770599824999977, 49.122320197000164 ], [ -122.766259014999918, 49.122189761000129 ], [ -122.766258564999973, 49.122285547000104 ], [ -122.764613915999945, 49.122282206000065 ], [ -122.764615192999983, 49.122012345000066 ], [ -122.7637928729999, 49.122010666000037 ], [ -122.763794153999982, 49.121740805000023 ], [ -122.762971838999988, 49.12173912 ], [ -122.762966694999989, 49.12281856200007 ], [ -122.761733195999952, 49.122816023000091 ], [ -122.761731902999898, 49.123085884000091 ], [ -122.760344083999911, 49.123083012000052 ], [ -122.760199864999962, 49.125154450000068 ], [ -122.761488270999934, 49.12519325400006 ], [ -122.761237908999988, 49.128790206000119 ], [ -122.758373709999958, 49.128703923000053 ], [ -122.758352504999948, 49.129008275000018 ], [ -122.75648833599999, 49.128952077000044 ], [ -122.752883566999969, 49.128843313000075 ], [ -122.752885767999942, 49.128811786 ], [ -122.752180544999973, 49.128790494000057 ], [ -122.75237174899992, 49.12605118700008 ], [ -122.752196715, 49.126045902000058 ], [ -122.752289279999971, 49.124719715000026 ], [ -122.750628940999889, 49.124669563000026 ], [ -122.750635967, 49.1245689490001 ], [ -122.749983926, 49.124549247000111 ], [ -122.750010421999974, 49.124169881000071 ], [ -122.748725877999945, 49.124131056000103 ], [ -122.748723645000013, 49.124163022000083 ], [ -122.748001959999925, 49.124141202000082 ], [ -122.747969039999987, 49.124612239000029 ], [ -122.747227689999988, 49.124589820000075 ], [ -122.74719783099999, 49.125016957000064 ], [ -122.741986408999963, 49.124859213000079 ], [ -122.741986029999978, 49.124932486000056 ], [ -122.742397212999975, 49.124933404000053 ], [ -122.742393018999948, 49.12574298400007 ], [ -122.741159448999923, 49.125740226000126 ], [ -122.741160852999911, 49.125470365000126 ], [ -122.740749665999942, 49.12546944200006 ], [ -122.740753886000022, 49.124659863000026 ], [ -122.741742660999989, 49.124662079000124 ], [ -122.741748024999964, 49.124585463000088 ], [ -122.740485074999981, 49.124547194000066 ], [ -122.740516675999984, 49.124096046000034 ], [ -122.739940482999884, 49.124078582000038 ], [ -122.739962286999969, 49.123767376000096 ], [ -122.739936186999927, 49.12376658400013 ], [ -122.739934346, 49.124118294000063 ], [ -122.740345523999935, 49.124119219000093 ], [ -122.740339887999966, 49.12519865900002 ], [ -122.738695145999927, 49.125194948000079 ], [ -122.738696563999937, 49.124925089000044 ], [ -122.738417688999945, 49.124924457000141 ], [ -122.738324569999961, 49.126252906000083 ], [ -122.73842228699999, 49.126255869000026 ], [ -122.738383204999977, 49.126813420000083 ], [ -122.738686637999976, 49.126814107000122 ], [ -122.738683800999979, 49.127353826000039 ], [ -122.739095003999978, 49.127354756000031 ], [ -122.73909358799996, 49.127624616000055 ], [ -122.741149615999973, 49.12762924400004 ], [ -122.741145400999983, 49.128438823000053 ], [ -122.738269716999952, 49.128432341000092 ], [ -122.73821492899998, 49.129213863000118 ], [ -122.73825507399999, 49.12921508100009 ], [ -122.738002895999927, 49.132811957000108 ], [ -122.734634295999953, 49.132709752000018 ], [ -122.734672996000015, 49.12970124600016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135545333", "BldgCostT": "82493333", "sL_LossRatio": "0.68303668925562", "sL_AssetLoss": "1231723", "sL_BldgLoss": "841312", "sL_StrLoss": "397935", "sL_NStrLoss": "443377", "sL_ContLoss": "390411", "geom_point": "0101000020E6100000147FD25814B05EC0BF7C158D738F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.745974184999923, 49.118872337000028 ], [ -122.748271492999947, 49.118870626000025 ], [ -122.751181513999938, 49.118902704000021 ], [ -122.756499525999971, 49.118956007000094 ], [ -122.756611868999983, 49.118955798000094 ], [ -122.756604250999914, 49.119104247000109 ], [ -122.756544372999954, 49.119197069000037 ], [ -122.75654582199995, 49.120100056000062 ], [ -122.756545740999954, 49.120240314000043 ], [ -122.756544741999974, 49.122513248000104 ], [ -122.752052036999928, 49.122517259000091 ], [ -122.751558572999954, 49.122517692000066 ], [ -122.750928019999947, 49.122518229000086 ], [ -122.75076355, 49.122518376000066 ], [ -122.745899789999925, 49.122522389000032 ], [ -122.745935857999953, 49.121575502000013 ], [ -122.746115421999946, 49.120222003000052 ], [ -122.74600462599993, 49.120102397000011 ], [ -122.745994896999918, 49.119692988000054 ], [ -122.745974184999923, 49.118872337000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "383673303", "BldgCostT": "255833746", "sL_LossRatio": "0.823516590397788", "sL_AssetLoss": "1825996", "sL_BldgLoss": "1503738", "sL_StrLoss": "899820", "sL_NStrLoss": "603918", "sL_ContLoss": "322258", "geom_point": "0101000020E6100000C277D5E297B35EC08F85119069884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801132261999967, 49.06836032000006 ], [ -122.80113781899999, 49.067457731000118 ], [ -122.801138440999978, 49.067359815000081 ], [ -122.80124108399994, 49.067359273000051 ], [ -122.803276929999967, 49.067369451000069 ], [ -122.803475710999948, 49.063659087000062 ], [ -122.802263338, 49.063648881000113 ], [ -122.801658206999946, 49.063734506000038 ], [ -122.801250952999951, 49.063727776000043 ], [ -122.801138759999972, 49.063728036000043 ], [ -122.801122213, 49.061616971000063 ], [ -122.801124243999979, 49.061547637000089 ], [ -122.801133796999949, 49.060112121000103 ], [ -122.801133827999976, 49.060104902000063 ], [ -122.801133957999966, 49.060090933 ], [ -122.80123938199992, 49.060109155000092 ], [ -122.801804959999984, 49.060113475000072 ], [ -122.802456217999989, 49.060118398000064 ], [ -122.802700443999925, 49.060162018000021 ], [ -122.802710405999917, 49.060163789000093 ], [ -122.802711583999923, 49.06016442600005 ], [ -122.802733980999975, 49.060176267000053 ], [ -122.803687453999956, 49.060374934000087 ], [ -122.803689079999955, 49.060374978000084 ], [ -122.804929601999945, 49.061277906000029 ], [ -122.804986807999953, 49.061322008000054 ], [ -122.805032282999917, 49.061356698000033 ], [ -122.810237504, 49.065159408000042 ], [ -122.812450771999949, 49.066776139000055 ], [ -122.814794531999979, 49.068487981000011 ], [ -122.815101618999947, 49.068712268000105 ], [ -122.813641502999985, 49.068702896000097 ], [ -122.813568344999936, 49.068708004000115 ], [ -122.8135756839999, 49.0686006890001 ], [ -122.812100892999965, 49.068556929000088 ], [ -122.812099936999985, 49.068810523000067 ], [ -122.810478514999915, 49.068923701000067 ], [ -122.807630719999963, 49.068523501000087 ], [ -122.806331819999969, 49.068529204000086 ], [ -122.80597380599994, 49.068610398000075 ], [ -122.805508418999977, 49.068842501000091 ], [ -122.804998479999966, 49.069480599 ], [ -122.804683289999957, 49.069551790000055 ], [ -122.803451084999949, 49.069846593000072 ], [ -122.80154588399995, 49.070068804000044 ], [ -122.801224285999936, 49.070076387000015 ], [ -122.801121628999951, 49.070078804000069 ], [ -122.801132261999967, 49.06836032000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66984583", "BldgCostT": "40678333", "sL_LossRatio": "0.737428085144731", "sL_AssetLoss": "488251", "sL_BldgLoss": "360050", "sL_StrLoss": "183030", "sL_NStrLoss": "177020", "sL_ContLoss": "128201", "geom_point": "0101000020E6100000DB43DA4A58B35EC08E65FA2562884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802263338, 49.063648881000113 ], [ -122.803475710999948, 49.063659087000062 ], [ -122.803276929999967, 49.067369451000069 ], [ -122.80124108399994, 49.067359273000051 ], [ -122.801138440999978, 49.067359815000081 ], [ -122.801138672999969, 49.064753473000067 ], [ -122.801138759999972, 49.063728036000043 ], [ -122.801250952999951, 49.063727776000043 ], [ -122.801658206999946, 49.063734506000038 ], [ -122.802263338, 49.063648881000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171202416", "BldgCostT": "108291666", "sL_LossRatio": "0.765864668332842", "sL_AssetLoss": "1238365", "sL_BldgLoss": "948420", "sL_StrLoss": "536830", "sL_NStrLoss": "411590", "sL_ContLoss": "289945", "geom_point": "0101000020E61000007EE77A4FE3B25EC0ACFCBEC10F894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790143808000025, 49.070109410000036 ], [ -122.791552012999944, 49.070095546000054 ], [ -122.792731795999913, 49.070083899000068 ], [ -122.794089182999983, 49.070082993000092 ], [ -122.794765385999938, 49.070099590000027 ], [ -122.795064602999929, 49.070047211000023 ], [ -122.79545021399997, 49.069852393000076 ], [ -122.795501748999982, 49.069794150000106 ], [ -122.795660793999943, 49.06961438900003 ], [ -122.795724702999948, 49.069381978000081 ], [ -122.79573659499998, 49.068811007000086 ], [ -122.795718479999934, 49.067343301000058 ], [ -122.796314346999921, 49.06734498600008 ], [ -122.797464263999927, 49.067348220000049 ], [ -122.79788681, 49.067349405000108 ], [ -122.798422959000021, 49.067351908000035 ], [ -122.799264333999957, 49.067353552000014 ], [ -122.799791556999935, 49.067354905000094 ], [ -122.799993503999971, 49.067355447000082 ], [ -122.800078274, 49.067356172000117 ], [ -122.800092025999987, 49.067356220000107 ], [ -122.801138440999978, 49.067359815000081 ], [ -122.80113781899999, 49.067457731000118 ], [ -122.801132261999967, 49.06836032000006 ], [ -122.801121628999951, 49.070078804000069 ], [ -122.800820699, 49.070085896000094 ], [ -122.799711411999965, 49.070345090000096 ], [ -122.798544086999968, 49.07095461100009 ], [ -122.797573569999912, 49.07165742900002 ], [ -122.797700949999964, 49.069804211000076 ], [ -122.79740043, 49.069795252000112 ], [ -122.797407228999958, 49.069696322000127 ], [ -122.797154470999885, 49.069688786000036 ], [ -122.797151953999929, 49.06972540700005 ], [ -122.796488748999963, 49.069705630000072 ], [ -122.796487591999949, 49.069989133000036 ], [ -122.796076859999971, 49.069988408 ], [ -122.79607583899994, 49.070237742000067 ], [ -122.796368817999948, 49.070246480000044 ], [ -122.796223969999971, 49.072352920000093 ], [ -122.796019802999936, 49.072451487000052 ], [ -122.795004297000034, 49.073125086000076 ], [ -122.793617899999958, 49.073797295000126 ], [ -122.79312229099996, 49.074156206000062 ], [ -122.792849094999951, 49.074416899 ], [ -122.792862524999947, 49.074645887000017 ], [ -122.792820073999906, 49.074645852000103 ], [ -122.792628378, 49.074645705000144 ], [ -122.78999973, 49.074643405000032 ], [ -122.79002885199999, 49.073661109000106 ], [ -122.790033554999951, 49.073502341000079 ], [ -122.790069048999939, 49.072305884000116 ], [ -122.79007520099999, 49.072097988000152 ], [ -122.790111743999901, 49.071038363000063 ], [ -122.790123882, 49.070687157000023 ], [ -122.790125419999981, 49.070642211000077 ], [ -122.790139080999964, 49.070246586000046 ], [ -122.790143808000025, 49.070109410000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209759167", "BldgCostT": "136086667", "sL_LossRatio": "0.834547602516654", "sL_AssetLoss": "1211291", "sL_BldgLoss": "1010880", "sL_StrLoss": "664900", "sL_NStrLoss": "345980", "sL_ContLoss": "200411", "geom_point": "0101000020E61000006270839022B35EC0EC3BE0362A884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79835861399999, 49.064458952000074 ], [ -122.798354583999966, 49.063727098000086 ], [ -122.796345745999957, 49.063732959000049 ], [ -122.796338152999937, 49.063375721000099 ], [ -122.79632800499999, 49.062896096000038 ], [ -122.796328133999907, 49.062863207000056 ], [ -122.796328470999953, 49.062764263000062 ], [ -122.79632951699999, 49.06247709700002 ], [ -122.796376094999985, 49.062356016000081 ], [ -122.796468314999942, 49.062248786000055 ], [ -122.796783652999977, 49.062042862000077 ], [ -122.79700549099999, 49.061897989000087 ], [ -122.796350473999937, 49.061594591000059 ], [ -122.796861383999939, 49.06092940300011 ], [ -122.797344084999921, 49.060673503000075 ], [ -122.797460378999986, 49.060613802000027 ], [ -122.7981992199999, 49.060214123000037 ], [ -122.798640405999933, 49.060105615000047 ], [ -122.799811224999985, 49.060108989000099 ], [ -122.79999021499998, 49.060072353000102 ], [ -122.800114993999983, 49.060046792000072 ], [ -122.800344365999976, 49.059954514000047 ], [ -122.801133957999966, 49.060090933 ], [ -122.801133827999976, 49.060104902000063 ], [ -122.801133796999949, 49.060112121000103 ], [ -122.801124243999979, 49.061547637000089 ], [ -122.801122213, 49.061616971000063 ], [ -122.801138759999972, 49.063728036000043 ], [ -122.801138672999969, 49.064753473000067 ], [ -122.801138440999978, 49.067359815000081 ], [ -122.800092025999987, 49.067356220000107 ], [ -122.800078274, 49.067356172000117 ], [ -122.799993503999971, 49.067355447000082 ], [ -122.799791556999935, 49.067354905000094 ], [ -122.799264333999957, 49.067353552000014 ], [ -122.798422959000021, 49.067351908000035 ], [ -122.79788681, 49.067349405000108 ], [ -122.797464263999927, 49.067348220000049 ], [ -122.796314346999921, 49.06734498600008 ], [ -122.795718479999934, 49.067343301000058 ], [ -122.795701288999922, 49.066896697000047 ], [ -122.79575149599998, 49.066704507000054 ], [ -122.795879996999986, 49.066527213000064 ], [ -122.796086922999962, 49.066362995000098 ], [ -122.796428572999972, 49.066200960000089 ], [ -122.797833581999939, 49.065534690000028 ], [ -122.797848910999946, 49.065524657000026 ], [ -122.798117305999952, 49.065348497000102 ], [ -122.798174923999937, 49.065274241000061 ], [ -122.79823289899997, 49.065199602000085 ], [ -122.798361214999929, 49.064924990000094 ], [ -122.79835861399999, 49.064458952000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129983500", "BldgCostT": "89380000", "sL_LossRatio": "0.861138141717354", "sL_AssetLoss": "877606", "sL_BldgLoss": "755740", "sL_StrLoss": "498773", "sL_NStrLoss": "256967", "sL_ContLoss": "121866", "geom_point": "0101000020E610000041C9891B9CB25EC058866155F7884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793749718999948, 49.067361202000029 ], [ -122.795718479999934, 49.067343301000058 ], [ -122.79573659499998, 49.068811007000086 ], [ -122.795724702999948, 49.069381978000081 ], [ -122.795660793999943, 49.06961438900003 ], [ -122.795501748999982, 49.069794150000106 ], [ -122.79545021399997, 49.069852393000076 ], [ -122.795064602999929, 49.070047211000023 ], [ -122.794765385999938, 49.070099590000027 ], [ -122.794089182999983, 49.070082993000092 ], [ -122.792731795999913, 49.070083899000068 ], [ -122.791552012999944, 49.070095546000054 ], [ -122.790143808000025, 49.070109410000036 ], [ -122.790139080999964, 49.070246586000046 ], [ -122.790125419999981, 49.070642211000077 ], [ -122.790123882, 49.070687157000023 ], [ -122.790111743999901, 49.071038363000063 ], [ -122.79007520099999, 49.072097988000152 ], [ -122.790069048999939, 49.072305884000116 ], [ -122.790033554999951, 49.073502341000079 ], [ -122.79002885199999, 49.073661109000106 ], [ -122.78999973, 49.074643405000032 ], [ -122.787652554999966, 49.074647141000085 ], [ -122.787655951999952, 49.073982183000076 ], [ -122.78760676399996, 49.073722961000101 ], [ -122.787545080999962, 49.073704904000088 ], [ -122.787520534999913, 49.073663606000125 ], [ -122.787545338999934, 49.073622005000097 ], [ -122.787608005999957, 49.073605858000114 ], [ -122.787446206999988, 49.073253162000086 ], [ -122.78737352899999, 49.073017586000056 ], [ -122.78737553399999, 49.07288597800008 ], [ -122.787392852999943, 49.071744778000017 ], [ -122.787438294000012, 49.071045904000073 ], [ -122.787952191999921, 49.070042894000046 ], [ -122.788007492999895, 49.069875196000083 ], [ -122.787894590999926, 49.069290505000083 ], [ -122.78779539599995, 49.068883792000044 ], [ -122.787825705999978, 49.06864228600007 ], [ -122.787979613999966, 49.068395505000069 ], [ -122.788310721999963, 49.068176486000084 ], [ -122.788514007999964, 49.068046490000057 ], [ -122.788651134999952, 49.067882965000102 ], [ -122.788706830999899, 49.067757072000084 ], [ -122.788732211999942, 49.06769974900007 ], [ -122.788736808999943, 49.067434034000016 ], [ -122.78880380399994, 49.067415306000072 ], [ -122.788834275999974, 49.067370253000043 ], [ -122.789222340999984, 49.067371009000034 ], [ -122.790218759999917, 49.067372898000052 ], [ -122.7918993, 49.067369009000053 ], [ -122.792238190999953, 49.067355698000092 ], [ -122.793749718999948, 49.067361202000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142381000", "BldgCostT": "97930000", "sL_LossRatio": "0.85356849448227", "sL_AssetLoss": "956734", "sL_BldgLoss": "816638", "sL_StrLoss": "533486", "sL_NStrLoss": "283152", "sL_ContLoss": "140096", "geom_point": "0101000020E61000009DE5051A24B25EC0D879E1EF13894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779118486999906, 49.074608795000088 ], [ -122.779142542000017, 49.071055226000048 ], [ -122.779150625999975, 49.069731603000029 ], [ -122.779145897, 49.067324395000085 ], [ -122.781145523999967, 49.067339675000049 ], [ -122.781242400999986, 49.067340398000034 ], [ -122.782131395999897, 49.067346297000022 ], [ -122.784216749, 49.067364595000065 ], [ -122.784725685999931, 49.067365404000043 ], [ -122.785389099999932, 49.067368147000103 ], [ -122.785786065999943, 49.067368326000128 ], [ -122.787260812999961, 49.067369175000131 ], [ -122.787346751999934, 49.06736927200005 ], [ -122.788639924000023, 49.067370771000135 ], [ -122.788669652999886, 49.067415819000139 ], [ -122.788736808999943, 49.067434034000016 ], [ -122.788732211999942, 49.06769974900007 ], [ -122.788706830999899, 49.067757072000084 ], [ -122.788651134999952, 49.067882965000102 ], [ -122.788514007999964, 49.068046490000057 ], [ -122.788310721999963, 49.068176486000084 ], [ -122.787979613999966, 49.068395505000069 ], [ -122.787825705999978, 49.06864228600007 ], [ -122.78779539599995, 49.068883792000044 ], [ -122.787894590999926, 49.069290505000083 ], [ -122.788007492999895, 49.069875196000083 ], [ -122.787952191999921, 49.070042894000046 ], [ -122.787438294000012, 49.071045904000073 ], [ -122.787392852999943, 49.071744778000017 ], [ -122.78737553399999, 49.07288597800008 ], [ -122.78737352899999, 49.073017586000056 ], [ -122.787446206999988, 49.073253162000086 ], [ -122.787608005999957, 49.073605858000114 ], [ -122.787545338999934, 49.073622005000097 ], [ -122.787520534999913, 49.073663606000125 ], [ -122.787545080999962, 49.073704904000088 ], [ -122.78760676399996, 49.073722961000101 ], [ -122.787655951999952, 49.073982183000076 ], [ -122.787652554999966, 49.074647141000085 ], [ -122.782895089999897, 49.074625865000023 ], [ -122.779118486999906, 49.074608795000088 ] ], [ [ -122.78333416599996, 49.072272467000097 ], [ -122.783334810999946, 49.072124117000016 ], [ -122.78292406099996, 49.072123345000108 ], [ -122.782922884999948, 49.072393208000065 ], [ -122.78295713599999, 49.072393273000117 ], [ -122.782966238999947, 49.072261449000109 ], [ -122.78333416599996, 49.072272467000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74471250", "BldgCostT": "49125000", "sL_LossRatio": "0.687922429031923", "sL_AssetLoss": "1538720", "sL_BldgLoss": "1058520", "sL_StrLoss": "469180", "sL_NStrLoss": "589340", "sL_ContLoss": "480200", "geom_point": "0101000020E6100000D1C8195010B55EC0C169E299A7934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82654981, 49.15240869400008 ], [ -122.826207101999984, 49.152348998000093 ], [ -122.825231010999971, 49.152351785000107 ], [ -122.824545428999912, 49.152361104000114 ], [ -122.823391103999981, 49.152376792000098 ], [ -122.823405993999927, 49.15091480800006 ], [ -122.823409585999968, 49.150568610000072 ], [ -122.823412043999923, 49.150332740000088 ], [ -122.826195164999888, 49.151184448000059 ], [ -122.827825574999906, 49.151618652000089 ], [ -122.829715815999961, 49.152269125000025 ], [ -122.833140962999948, 49.153254623000066 ], [ -122.834451411999979, 49.153579541000084 ], [ -122.83454292199994, 49.153602214000074 ], [ -122.83454766299991, 49.15446883700006 ], [ -122.834554613999927, 49.155514242000088 ], [ -122.833023663999981, 49.155515646000076 ], [ -122.832721944999932, 49.155515924000071 ], [ -122.832310492999937, 49.155516285000076 ], [ -122.831642835999915, 49.155516883000104 ], [ -122.829156100999981, 49.155516261000102 ], [ -122.828958808999957, 49.155516199000026 ], [ -122.826243094999938, 49.155537112000076 ], [ -122.826271406, 49.154638859000066 ], [ -122.82629009599998, 49.154045402000044 ], [ -122.826302385999924, 49.153694400000063 ], [ -122.826304490999945, 49.153633205000084 ], [ -122.82641831, 49.153372484000073 ], [ -122.826632192999966, 49.153150001000071 ], [ -122.826963411999913, 49.152956994000064 ], [ -122.827208385999981, 49.152882193000018 ], [ -122.827043203999921, 49.152651196000079 ], [ -122.826785774999962, 49.152505793000039 ], [ -122.82654981, 49.15240869400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85496918", "BldgCostT": "58491668", "sL_LossRatio": "0.723691327879323", "sL_AssetLoss": "1636105", "sL_BldgLoss": "1184035", "sL_StrLoss": "519265", "sL_NStrLoss": "664770", "sL_ContLoss": "452070", "geom_point": "0101000020E61000007BDA23CC1BB55EC0173A9FCF3A934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823412043999923, 49.150332740000088 ], [ -122.823414169999936, 49.15012784100005 ], [ -122.823416428999977, 49.149910246000097 ], [ -122.823418192999895, 49.149741013000046 ], [ -122.82343381299998, 49.148239498000059 ], [ -122.824870402999977, 49.148236794000127 ], [ -122.825134997999939, 49.148235595000081 ], [ -122.825136407999977, 49.148235861000039 ], [ -122.829493497999977, 49.148220546000033 ], [ -122.831784726, 49.148190616000065 ], [ -122.832511299999965, 49.148179990000095 ], [ -122.834145538999948, 49.14819582900008 ], [ -122.834565908999934, 49.148199900000122 ], [ -122.834573397, 49.149256992000069 ], [ -122.834574351999933, 49.14941564 ], [ -122.834575022999985, 49.149532621000013 ], [ -122.834576435999949, 49.149766558000081 ], [ -122.834577287999934, 49.149910467000062 ], [ -122.83457775299999, 49.149991424000071 ], [ -122.834584068999973, 49.151054048000063 ], [ -122.834588848999957, 49.151487593000077 ], [ -122.834523550999947, 49.151601015000075 ], [ -122.834535596999928, 49.152269930000031 ], [ -122.83454292199994, 49.153602214000074 ], [ -122.834451411999979, 49.153579541000084 ], [ -122.833140962999948, 49.153254623000066 ], [ -122.829715815999961, 49.152269125000025 ], [ -122.827825574999906, 49.151618652000089 ], [ -122.826195164999888, 49.151184448000059 ], [ -122.823412043999923, 49.150332740000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.758269018743109", "sL_AssetLoss": "36280", "sL_BldgLoss": "27510", "sL_StrLoss": "13900", "sL_NStrLoss": "13610", "sL_ContLoss": "8770", "geom_point": "0101000020E61000000C25EE0C2EA75EC049FB17EF64954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.612125517, 49.168017111999987 ], [ -122.612127624999985, 49.167747257000073 ], [ -122.611716092999927, 49.167745875000044 ], [ -122.611718201999935, 49.167476019000041 ], [ -122.611306671999941, 49.167474636000058 ], [ -122.611308783999945, 49.167204781000059 ], [ -122.610897254999927, 49.167203395000115 ], [ -122.610903599999958, 49.166393832000075 ], [ -122.612961206999927, 49.166400746000051 ], [ -122.612954896999909, 49.167210310000016 ], [ -122.613366424999967, 49.167211688000116 ], [ -122.613360120999957, 49.16802125300012 ], [ -122.612125517, 49.168017111999987 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12178750", "BldgCostT": "6925000", "sL_LossRatio": "0.646060796481031", "sL_AssetLoss": "127310", "sL_BldgLoss": "82250", "sL_StrLoss": "39930", "sL_NStrLoss": "42320", "sL_ContLoss": "45060", "geom_point": "0101000020E6100000D6176C9734A65EC0FF64639081954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.595242496999958, 49.168398991000061 ], [ -122.594930081999948, 49.168064301000094 ], [ -122.594755707999951, 49.167668401000057 ], [ -122.594786694999982, 49.167084496000058 ], [ -122.594951686999963, 49.167021792000043 ], [ -122.595087988000017, 49.167094393000063 ], [ -122.59531939299994, 49.167444811000038 ], [ -122.595989209999942, 49.167797991000029 ], [ -122.596905984999964, 49.16791050300003 ], [ -122.597524988999908, 49.167876304000096 ], [ -122.598761085999953, 49.167582898000049 ], [ -122.599373628999928, 49.167270371000086 ], [ -122.599363601999954, 49.168513266000076 ], [ -122.599301792999952, 49.168513051000076 ], [ -122.599262300999925, 49.168475890000089 ], [ -122.598576592999947, 49.16831070000012 ], [ -122.597685782999932, 49.168299292000029 ], [ -122.59633849, 49.168663903000024 ], [ -122.595761985999928, 49.168643991000074 ], [ -122.595242496999958, 49.168398991000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7515834", "BldgCostT": "5183334", "sL_LossRatio": "0.748097798518819", "sL_AssetLoss": "98570", "sL_BldgLoss": "73740", "sL_StrLoss": "35580", "sL_NStrLoss": "38160", "sL_ContLoss": "24830", "geom_point": "0101000020E610000069622E673EA65EC0BB0386F6FB944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.596413184999918, 49.162805739000085 ], [ -122.599234552999917, 49.162817770000153 ], [ -122.599055322999973, 49.165267678000042 ], [ -122.598821421999943, 49.165173205 ], [ -122.596628198999909, 49.165012214000079 ], [ -122.596327976999973, 49.164948195000129 ], [ -122.596121520999986, 49.164812904000037 ], [ -122.59571639, 49.164226100000121 ], [ -122.595691408999983, 49.163794609000057 ], [ -122.595733396999918, 49.163606598000094 ], [ -122.596321158999942, 49.162805357000117 ], [ -122.596413184999918, 49.162805739000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4961250", "BldgCostT": "2925000", "sL_LossRatio": "0.602705497156643", "sL_AssetLoss": "116060", "sL_BldgLoss": "69950", "sL_StrLoss": "16050", "sL_NStrLoss": "53900", "sL_ContLoss": "46110", "geom_point": "0101000020E61000002509A10727A65EC023A0A103BB954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.594465806999949, 49.169511310000104 ], [ -122.594975702999974, 49.169260684000101 ], [ -122.595853181999985, 49.169264894000086 ], [ -122.59698989599994, 49.169538388000042 ], [ -122.597552322999931, 49.169522701000041 ], [ -122.598122221999958, 49.169344662000078 ], [ -122.59812025, 49.169588391000019 ], [ -122.597708702999967, 49.169586958000068 ], [ -122.597706516999949, 49.169856812000063 ], [ -122.597294967999986, 49.169855377000033 ], [ -122.597290588999982, 49.170395086000028 ], [ -122.596434508999948, 49.170392097000089 ], [ -122.595914395999912, 49.170128004000098 ], [ -122.594434512999896, 49.169871706000038 ], [ -122.594368408999941, 49.169682209000044 ], [ -122.594465806999949, 49.169511310000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "363607811", "BldgCostT": "236968190", "sL_LossRatio": "0.707083463277467", "sL_AssetLoss": "4675086", "sL_BldgLoss": "3305676", "sL_StrLoss": "1574546", "sL_NStrLoss": "1731130", "sL_ContLoss": "1369410", "geom_point": "0101000020E6100000A7FAF0873AA75EC0B6C59868CE954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.599383861999968, 49.176466316000116 ], [ -122.599436064999963, 49.175752905000131 ], [ -122.599589195999968, 49.175757742000037 ], [ -122.599670216999982, 49.174650408000055 ], [ -122.602029375999948, 49.174724889000125 ], [ -122.602275395, 49.171359761000076 ], [ -122.602689674999937, 49.171372835000078 ], [ -122.60292244599998, 49.168188067000088 ], [ -122.60304761799999, 49.168192017000052 ], [ -122.603201953999942, 49.166080067000024 ], [ -122.603321681999944, 49.16608384600007 ], [ -122.603409911999961, 49.164876369000105 ], [ -122.60455698, 49.164912559000079 ], [ -122.604603496999957, 49.164275697000043 ], [ -122.605266161999964, 49.164296598000114 ], [ -122.605285786999957, 49.164027865000023 ], [ -122.602793279999929, 49.16394922900011 ], [ -122.602874836999931, 49.162833196000093 ], [ -122.604204607000014, 49.162838802000046 ], [ -122.604683982999958, 49.162834697000072 ], [ -122.605713437999967, 49.162825925000043 ], [ -122.606969281999937, 49.162815203000022 ], [ -122.608305589999986, 49.162795699000092 ], [ -122.609252218000023, 49.162781865000049 ], [ -122.609827955999918, 49.162773454000103 ], [ -122.612940768999962, 49.162727894000085 ], [ -122.614141681999953, 49.162710294000057 ], [ -122.619823960999909, 49.162261913000108 ], [ -122.620651295999963, 49.162196591000082 ], [ -122.622221909999908, 49.162048933000044 ], [ -122.622943097999922, 49.161981089000101 ], [ -122.624053215999965, 49.161913208000016 ], [ -122.624049606999989, 49.162999931000094 ], [ -122.624047188999967, 49.163733286000117 ], [ -122.624045364999972, 49.1640883580001 ], [ -122.624041107999957, 49.164915903000136 ], [ -122.62403391099997, 49.166314708000058 ], [ -122.624022321999973, 49.167795841000029 ], [ -122.624020366999929, 49.168352129000041 ], [ -122.624019798999882, 49.168514203000015 ], [ -122.62401827599993, 49.168954865000053 ], [ -122.624015854, 49.169638466000038 ], [ -122.624014959999954, 49.169898886000034 ], [ -122.624013395999938, 49.17036709100006 ], [ -122.62401241299996, 49.170670197000042 ], [ -122.624007987999946, 49.171486495000089 ], [ -122.624005222999969, 49.171860252000059 ], [ -122.624002094, 49.172285588000115 ], [ -122.623999575999974, 49.172732813000025 ], [ -122.623997817999978, 49.173043301000106 ], [ -122.624017692999956, 49.173864016000088 ], [ -122.62399011199993, 49.174999489000065 ], [ -122.62398939, 49.175350479000031 ], [ -122.623989062999897, 49.175512358000063 ], [ -122.623988210000022, 49.175931197000068 ], [ -122.623989194999965, 49.176937789000064 ], [ -122.623695552999948, 49.176939402000116 ], [ -122.620141399999923, 49.17694233000006 ], [ -122.619137266999957, 49.17694326400003 ], [ -122.617002476, 49.176945442000083 ], [ -122.613722888, 49.176948720000041 ], [ -122.612529175999967, 49.176949879000077 ], [ -122.611609935999951, 49.176950785000074 ], [ -122.610855215999891, 49.17695151200008 ], [ -122.610100530999929, 49.1769522210001 ], [ -122.607107009999964, 49.17695503200013 ], [ -122.600429690999988, 49.17695621700004 ], [ -122.60000505499994, 49.177006998000131 ], [ -122.599887205999892, 49.177021088000082 ], [ -122.599290313999958, 49.177212201000025 ], [ -122.597878024999915, 49.17795427500009 ], [ -122.597551613999912, 49.17804668400003 ], [ -122.597081415999952, 49.178061559000099 ], [ -122.596938938999983, 49.178265239000055 ], [ -122.59687774299999, 49.178445317000033 ], [ -122.596909523999969, 49.178667101000023 ], [ -122.596748043999924, 49.178426287000029 ], [ -122.596427471999945, 49.17794818700002 ], [ -122.59644958899996, 49.177948265000047 ], [ -122.596459754999941, 49.177809457000066 ], [ -122.59656464499993, 49.176377238000065 ], [ -122.599383861999968, 49.176466316000116 ] ], [ [ -122.605261743000014, 49.176019680000081 ], [ -122.60531846399999, 49.175243144000071 ], [ -122.605113773999932, 49.175236689000023 ], [ -122.605057048999953, 49.176013226000059 ], [ -122.605261743000014, 49.176019680000081 ] ], [ [ -122.616190321, 49.174569755000078 ], [ -122.616190802999967, 49.174507366000093 ], [ -122.615367624999948, 49.174504628000136 ], [ -122.615373896999955, 49.173695064000114 ], [ -122.6157854799999, 49.17369643400005 ], [ -122.615793834, 49.172617017000086 ], [ -122.615382259999976, 49.172615647000079 ], [ -122.615384349999943, 49.172345793000083 ], [ -122.614972780999906, 49.172344422000059 ], [ -122.61497487299998, 49.172074568000077 ], [ -122.614974472999933, 49.172074566000077 ], [ -122.614971919999959, 49.172109622000036 ], [ -122.614712352999959, 49.172101461000032 ], [ -122.614519024999964, 49.174755580000117 ], [ -122.615400965999982, 49.17478330800008 ], [ -122.615418284999947, 49.174545488000042 ], [ -122.616190321, 49.174569755000078 ] ], [ [ -122.620720513999956, 49.171014136000146 ], [ -122.620739457999932, 49.170753556000122 ], [ -122.620437610999957, 49.170744081000038 ], [ -122.620508317999921, 49.169771627000081 ], [ -122.620475072999966, 49.169770584000041 ], [ -122.620504555999901, 49.169365064000012 ], [ -122.619934699999931, 49.16934717300007 ], [ -122.619930222999969, 49.169932092000067 ], [ -122.620341773999925, 49.169933445 ], [ -122.620333520999949, 49.171012864000033 ], [ -122.620720513999956, 49.171014136000146 ] ], [ [ -122.615856469999983, 49.16452138300015 ], [ -122.615854381999938, 49.164791237000081 ], [ -122.616265889999937, 49.164792606000098 ], [ -122.616267975999946, 49.164522751000064 ], [ -122.615856469999983, 49.16452138300015 ], [ -122.615859380999964, 49.164145048000101 ], [ -122.61529948699993, 49.164127444000037 ], [ -122.615285595999978, 49.164318237000074 ], [ -122.613894086999963, 49.164274472000081 ], [ -122.613894035999948, 49.164275171000014 ], [ -122.612332013999904, 49.164226022000044 ], [ -122.612329172, 49.164265008000086 ], [ -122.610757215999968, 49.164215524000092 ], [ -122.610700147999964, 49.164998246000067 ], [ -122.610037471999959, 49.164977378000096 ], [ -122.609813782999979, 49.168044558000119 ], [ -122.609632212999898, 49.168038840000044 ], [ -122.60960799599999, 49.168370867000171 ], [ -122.6097582399999, 49.168375599000107 ], [ -122.609760761999937, 49.168341034000093 ], [ -122.615233823999972, 49.168513257000036 ], [ -122.61521024699999, 49.168837016000033 ], [ -122.615411525999988, 49.168837686000074 ], [ -122.615405254, 49.169647249000086 ], [ -122.615816803000016, 49.169648619000021 ], [ -122.615818889999915, 49.169378765000133 ], [ -122.616230436999956, 49.169380133000068 ], [ -122.616232522999894, 49.169110279000058 ], [ -122.617055609999966, 49.169113011000064 ], [ -122.61706809899999, 49.167493884000116 ], [ -122.615421975999965, 49.167488414000054 ], [ -122.615430335999974, 49.166408996000023 ], [ -122.6166649, 49.166413100000085 ], [ -122.616662816999934, 49.166682955000084 ], [ -122.617897388999936, 49.16668704600005 ], [ -122.617903618999918, 49.165877483000031 ], [ -122.618315135999964, 49.165878843000087 ], [ -122.618319285000013, 49.165339134000114 ], [ -122.617907770999935, 49.165337773000019 ], [ -122.617909847999982, 49.165067918000091 ], [ -122.616675315999927, 49.165063827000047 ], [ -122.616671148999927, 49.165603536000035 ], [ -122.615848118999978, 49.16560080199999 ], [ -122.615846032999954, 49.165870656000081 ], [ -122.614611479999951, 49.165866543000064 ], [ -122.614613574999936, 49.165596688000051 ], [ -122.613790545999947, 49.165593938000072 ], [ -122.613798940999985, 49.164514520000075 ], [ -122.615856469999983, 49.16452138300015 ] ], [ [ -122.618710075999957, 49.168039040000096 ], [ -122.61870178699999, 49.169118458000078 ], [ -122.619810419999951, 49.1691221130001 ], [ -122.619908516999956, 49.167773130000057 ], [ -122.619535213999953, 49.167771900000055 ], [ -122.619533146999913, 49.16804175500009 ], [ -122.618710075999957, 49.168039040000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3342250", "BldgCostT": "2305000", "sL_LossRatio": "0.769831746112799", "sL_AssetLoss": "39167", "sL_BldgLoss": "30152", "sL_StrLoss": "14132", "sL_NStrLoss": "16020", "sL_ContLoss": "9015", "geom_point": "0101000020E6100000DC4490F728A65EC09DF6949C93944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.596359190999934, 49.162753511000076 ], [ -122.597138795999953, 49.161326390000092 ], [ -122.597114704999967, 49.160930503 ], [ -122.596883006999988, 49.160793687000108 ], [ -122.596566596999978, 49.160802307000026 ], [ -122.595754799999966, 49.16105149 ], [ -122.59439761099999, 49.161037293000078 ], [ -122.593165683, 49.16060999399999 ], [ -122.592224376999951, 49.160121497000048 ], [ -122.591087491999957, 49.159875112000122 ], [ -122.590909814000014, 49.159892193000097 ], [ -122.590494894999892, 49.159818947000119 ], [ -122.589701070999979, 49.159688858000109 ], [ -122.589742401999956, 49.159645846000089 ], [ -122.590621887999973, 49.1587307940001 ], [ -122.590658930999894, 49.158497852000039 ], [ -122.591626493999939, 49.158501278000116 ], [ -122.591625725999947, 49.158594551000093 ], [ -122.593213324999979, 49.158644817000081 ], [ -122.593144351999925, 49.159586084000047 ], [ -122.59367493799995, 49.15958795300002 ], [ -122.593679352999942, 49.159048244000111 ], [ -122.594913731999966, 49.159052580000029 ], [ -122.59490933, 49.159592288000063 ], [ -122.596555184999886, 49.159598050000135 ], [ -122.596548608999939, 49.160407614000114 ], [ -122.59737155099999, 49.160410486000075 ], [ -122.59736936399996, 49.160680340000106 ], [ -122.599015256, 49.160686067000071 ], [ -122.599017435999912, 49.16041621300009 ], [ -122.600663320999956, 49.160421916000139 ], [ -122.60066115199993, 49.160691771000081 ], [ -122.601072624, 49.16069319300005 ], [ -122.601063953999983, 49.16177261100011 ], [ -122.601475435999959, 49.161774030000096 ], [ -122.601468939999947, 49.162583595000122 ], [ -122.601057450999946, 49.162582173000025 ], [ -122.60105549599993, 49.162825501000093 ], [ -122.60098064099995, 49.162825183000074 ], [ -122.600006771999958, 49.162821051000094 ], [ -122.599821030999962, 49.162820262 ], [ -122.599822984999932, 49.162577902000045 ], [ -122.599252246, 49.162575923000098 ], [ -122.599234552999917, 49.162817770000153 ], [ -122.596413184999918, 49.162805739000085 ], [ -122.596321158999942, 49.162805357000117 ], [ -122.596359190999934, 49.162753511000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73604000", "BldgCostT": "48080000", "sL_LossRatio": "0.722116929669152", "sL_AssetLoss": "970840", "sL_BldgLoss": "701060", "sL_StrLoss": "319960", "sL_NStrLoss": "381100", "sL_ContLoss": "269780", "geom_point": "0101000020E6100000255F9E0801A75EC0BA7440D0D9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.602874836999931, 49.162833196000093 ], [ -122.602878511999961, 49.16278291200009 ], [ -122.602257732999945, 49.162763318000138 ], [ -122.602339148999974, 49.161649355000044 ], [ -122.601713584999942, 49.161629605 ], [ -122.601867604999953, 49.159522475000088 ], [ -122.601269798999951, 49.159503599000047 ], [ -122.601412890999924, 49.157546150000037 ], [ -122.600733399999967, 49.157524691000049 ], [ -122.600861991999949, 49.155765819000088 ], [ -122.600047085999918, 49.155740077000139 ], [ -122.600229066999958, 49.153251292000114 ], [ -122.599620723999976, 49.153232072000066 ], [ -122.59962876899999, 49.153122056000036 ], [ -122.596096516999935, 49.153010385000066 ], [ -122.596091688999962, 49.153076333000087 ], [ -122.591601781999955, 49.152934217000038 ], [ -122.591563927, 49.153450642000074 ], [ -122.590914802, 49.15343008000012 ], [ -122.590912497999952, 49.153234706000106 ], [ -122.59093490199993, 49.152779403000075 ], [ -122.591067990999974, 49.152618873000065 ], [ -122.59134249, 49.15228769400008 ], [ -122.59229168899995, 49.151584650000117 ], [ -122.593567727999982, 49.150639466000051 ], [ -122.594476492999917, 49.149966287000076 ], [ -122.596201004999912, 49.148355511000013 ], [ -122.598610014999934, 49.14649501100007 ], [ -122.599789116999901, 49.145459799000037 ], [ -122.60002881099993, 49.145230243000071 ], [ -122.600759818999904, 49.144530167000013 ], [ -122.601008002999919, 49.144292484000076 ], [ -122.601495707999987, 49.144483692000101 ], [ -122.603514010999973, 49.145274895000099 ], [ -122.603994395999919, 49.145463217000035 ], [ -122.605225616000013, 49.145945816000044 ], [ -122.607437589999961, 49.146812797000024 ], [ -122.608280758999939, 49.147143264000128 ], [ -122.608710478999981, 49.147311661000067 ], [ -122.610404645999964, 49.147975604000038 ], [ -122.610228505999913, 49.147970056000105 ], [ -122.610131246999984, 49.149304305000037 ], [ -122.604660462999945, 49.149131817000068 ], [ -122.604674884999937, 49.14893428500006 ], [ -122.600783838999945, 49.148811435000013 ], [ -122.600750265999963, 49.149270732000026 ], [ -122.599951587999925, 49.149245497000088 ], [ -122.599931015999957, 49.14952686500002 ], [ -122.600157109999913, 49.149534009000021 ], [ -122.600149064999968, 49.149644025000029 ], [ -122.605354533999943, 49.149808370000123 ], [ -122.605316105999989, 49.150334768000086 ], [ -122.609987905, 49.150482049000082 ], [ -122.609958129999924, 49.150890486000058 ], [ -122.613082422999966, 49.150988868000063 ], [ -122.613027314999911, 49.151745442000085 ], [ -122.613955339999976, 49.151774647000074 ], [ -122.613927106999981, 49.15216234800009 ], [ -122.615102222999965, 49.152199318000022 ], [ -122.615084294999988, 49.152445587000088 ], [ -122.61780749899998, 49.152531211000039 ], [ -122.617933619999974, 49.150797201000053 ], [ -122.618569291999933, 49.151005517000065 ], [ -122.620135787999928, 49.15146290400002 ], [ -122.621985539999955, 49.151953253000052 ], [ -122.62224292499999, 49.152021472000051 ], [ -122.62394502699999, 49.152472652 ], [ -122.624109087999969, 49.152741099000117 ], [ -122.624107812999938, 49.153887869000116 ], [ -122.62410684, 49.154733415000045 ], [ -122.624105830999966, 49.155623925000022 ], [ -122.624103877999929, 49.157325196000087 ], [ -122.624081359999948, 49.159365933000103 ], [ -122.624078481999959, 49.159626794000125 ], [ -122.62406963599993, 49.160427307000141 ], [ -122.624053215999965, 49.161913208000016 ], [ -122.622943097999922, 49.161981089000101 ], [ -122.622221909999908, 49.162048933000044 ], [ -122.620651295999963, 49.162196591000082 ], [ -122.619823960999909, 49.162261913000108 ], [ -122.614141681999953, 49.162710294000057 ], [ -122.612940768999962, 49.162727894000085 ], [ -122.609827955999918, 49.162773454000103 ], [ -122.609252218000023, 49.162781865000049 ], [ -122.608305589999986, 49.162795699000092 ], [ -122.606969281999937, 49.162815203000022 ], [ -122.605713437999967, 49.162825925000043 ], [ -122.604683982999958, 49.162834697000072 ], [ -122.604204607000014, 49.162838802000046 ], [ -122.602874836999931, 49.162833196000093 ] ], [ [ -122.616358130999927, 49.157697234000075 ], [ -122.616397964999948, 49.157149893000089 ], [ -122.613477001, 49.157058020000122 ], [ -122.61343713399998, 49.15760536100003 ], [ -122.616358130999927, 49.157697234000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.752476642095873", "sL_AssetLoss": "21299", "sL_BldgLoss": "16027", "sL_StrLoss": "6977", "sL_NStrLoss": "9050", "sL_ContLoss": "5272", "geom_point": "0101000020E61000009CF4633843A65EC020C5CE4E65954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.59690313499999, 49.167425257000097 ], [ -122.596905325999941, 49.167155403000031 ], [ -122.597316853999956, 49.167156838000054 ], [ -122.597321229999977, 49.166617131000059 ], [ -122.597732750999953, 49.166618565000086 ], [ -122.597734937999974, 49.166348710000101 ], [ -122.598662941999947, 49.16635194100008 ], [ -122.598428213999938, 49.166412298000083 ], [ -122.597671111999958, 49.166788208000064 ], [ -122.597654297999924, 49.167048907000037 ], [ -122.597858595999952, 49.167184188000064 ], [ -122.598160005999915, 49.167212702000093 ], [ -122.598421499999958, 49.167141409000081 ], [ -122.599379364999919, 49.166559380000052 ], [ -122.5993757479999, 49.167007928000068 ], [ -122.59857148899998, 49.167384991000077 ], [ -122.597444312999968, 49.167678405000039 ], [ -122.596565794999961, 49.167746690000108 ], [ -122.596298824999963, 49.167693008000136 ], [ -122.596489413999919, 49.167693674000155 ], [ -122.596491605999944, 49.16742381900012 ], [ -122.59690313499999, 49.167425257000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65810667", "BldgCostT": "45386667", "sL_LossRatio": "0.772546518607443", "sL_AssetLoss": "799680", "sL_BldgLoss": "617790", "sL_StrLoss": "291440", "sL_NStrLoss": "326350", "sL_ContLoss": "181890", "geom_point": "0101000020E6100000096A74DEF1A55EC0F0F219F535954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.591223591999935, 49.173258811000018 ], [ -122.590820986999972, 49.173037734000054 ], [ -122.590527454000011, 49.172876512000066 ], [ -122.589675198999942, 49.172408499000035 ], [ -122.589314895999962, 49.172210612000129 ], [ -122.590325698999919, 49.171332493000072 ], [ -122.590531151999983, 49.171149876000101 ], [ -122.590963920999954, 49.170765102000125 ], [ -122.591155313999977, 49.170586390000068 ], [ -122.59225090799994, 49.169149490000031 ], [ -122.592285076999985, 49.169102932000023 ], [ -122.592303717, 49.169077478000105 ], [ -122.592849673999922, 49.168333102000176 ], [ -122.593186402999905, 49.167424589000163 ], [ -122.592043521999983, 49.167264005000064 ], [ -122.59080649299996, 49.167114918000074 ], [ -122.591246511999913, 49.165546385000063 ], [ -122.592033397999984, 49.162781297000024 ], [ -122.591022369999962, 49.162766806000079 ], [ -122.590501517999925, 49.162759333000082 ], [ -122.59026907799992, 49.162755999000034 ], [ -122.588988498999925, 49.162735299000126 ], [ -122.585971308999945, 49.16268560200011 ], [ -122.586256868999939, 49.162411412000083 ], [ -122.587123995999889, 49.161578790000149 ], [ -122.587343198999932, 49.161368311000068 ], [ -122.587639024999987, 49.161161057000044 ], [ -122.589316498999921, 49.159985863000067 ], [ -122.589596623999952, 49.159789601000064 ], [ -122.589619880999962, 49.159773300000069 ], [ -122.589627618999899, 49.159765267000118 ], [ -122.589701070999979, 49.159688858000109 ], [ -122.590494894999892, 49.159818947000119 ], [ -122.590909814000014, 49.159892193000097 ], [ -122.591511105999956, 49.160127197000044 ], [ -122.592072922999975, 49.160246805000071 ], [ -122.592850293999916, 49.160654187000041 ], [ -122.594477793999928, 49.161191109000058 ], [ -122.595438913999956, 49.161212502000076 ], [ -122.596619416999957, 49.160973203000054 ], [ -122.596975713999981, 49.16097460600006 ], [ -122.596987687999913, 49.161208207000129 ], [ -122.596540987999958, 49.162123996000062 ], [ -122.595969536999945, 49.162803839000098 ], [ -122.595446814999946, 49.163425692 ], [ -122.595456107999937, 49.164063691000067 ], [ -122.595848581999959, 49.164821392000114 ], [ -122.596052881, 49.164956699000058 ], [ -122.596599994999906, 49.165120501000025 ], [ -122.598216410999981, 49.165270941000074 ], [ -122.597332169999959, 49.165267861000061 ], [ -122.597329981999934, 49.16553771500007 ], [ -122.596506955000024, 49.165534841000074 ], [ -122.596504762, 49.165804696000073 ], [ -122.596093246999942, 49.165803257000043 ], [ -122.596091616999914, 49.166003655000033 ], [ -122.596407761999913, 49.166013652000117 ], [ -122.596284997999959, 49.167690228000048 ], [ -122.595702093999961, 49.167573014000013 ], [ -122.595484806999963, 49.1674376980001 ], [ -122.595049075999967, 49.166850897000131 ], [ -122.594554905999956, 49.166857994000104 ], [ -122.594443192999947, 49.167064501000048 ], [ -122.594520696999979, 49.167693993000071 ], [ -122.594709509999987, 49.16809140000003 ], [ -122.595486803999975, 49.168723695000011 ], [ -122.595775489999966, 49.168796396000126 ], [ -122.59640539899999, 49.168762205000057 ], [ -122.597794193999931, 49.168416092000072 ], [ -122.598727297999943, 49.168474493000097 ], [ -122.598951608999968, 49.16856797400002 ], [ -122.598949882999989, 49.168781691000085 ], [ -122.598538342999973, 49.168780261000045 ], [ -122.59853631299994, 49.169031321 ], [ -122.59722399499999, 49.169394487000076 ], [ -122.596606791999989, 49.169366107000023 ], [ -122.596073822999927, 49.169166704000062 ], [ -122.595785516999939, 49.169138200000091 ], [ -122.5948668179999, 49.169170899000115 ], [ -122.594397804999986, 49.169358897000109 ], [ -122.594162291999965, 49.169680788000065 ], [ -122.594201110999933, 49.169905799000084 ], [ -122.594392407999976, 49.170059701000056 ], [ -122.594665908999943, 49.170132288000062 ], [ -122.595571176999954, 49.170145093000031 ], [ -122.596077402999981, 49.170353005000038 ], [ -122.596142304999901, 49.170391075000047 ], [ -122.595232821999943, 49.170387891000068 ], [ -122.595233602999954, 49.170292020000041 ], [ -122.594860682000018, 49.170280225000027 ], [ -122.594765770999985, 49.171575712000077 ], [ -122.591108339999934, 49.171459964000064 ], [ -122.591106175999968, 49.171722661000047 ], [ -122.590694610999947, 49.171721203000068 ], [ -122.590690161999987, 49.172260910000013 ], [ -122.591101730999966, 49.172262367000073 ], [ -122.59109728599995, 49.172802074000124 ], [ -122.591920433, 49.17280498500002 ], [ -122.591918213999961, 49.173074839000066 ], [ -122.593152940999985, 49.17307919600006 ], [ -122.593155153999973, 49.172809343000033 ], [ -122.594389872999926, 49.172813686000097 ], [ -122.594385463999942, 49.173353393000042 ], [ -122.594797041999982, 49.173354838000066 ], [ -122.594790433999933, 49.174164398000059 ], [ -122.593967265999964, 49.174161507000072 ], [ -122.593965057999924, 49.174431361000046 ], [ -122.593351076999909, 49.174429201000088 ], [ -122.592725658999939, 49.174084880000073 ], [ -122.592334069999936, 49.173869738000064 ], [ -122.592001893999935, 49.173686185000051 ], [ -122.591223591999935, 49.173258811000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154467416", "BldgCostT": "105056666", "sL_LossRatio": "0.735428381228043", "sL_AssetLoss": "1916774", "sL_BldgLoss": "1409650", "sL_StrLoss": "684330", "sL_NStrLoss": "725320", "sL_ContLoss": "507124", "geom_point": "0101000020E61000002C13A87218A55EC01404EA2862954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.584897204999933, 49.175947506000057 ], [ -122.584898870999922, 49.175748435000038 ], [ -122.584609494999967, 49.175747396000133 ], [ -122.584372715999947, 49.1755827060001 ], [ -122.58424052099997, 49.175509921000057 ], [ -122.584078395999981, 49.175420655000067 ], [ -122.584080195999917, 49.175205768000119 ], [ -122.583685541999955, 49.175204346000044 ], [ -122.58366868199991, 49.175195063000061 ], [ -122.583670867999956, 49.174934431000054 ], [ -122.583259276999954, 49.174932947000045 ], [ -122.58326154199996, 49.17466309300012 ], [ -122.582849953, 49.17466160700009 ], [ -122.582852221999957, 49.174391755000052 ], [ -122.582440634999969, 49.174390267000057 ], [ -122.582442904999979, 49.174120414000136 ], [ -122.581898575999929, 49.174118445000104 ], [ -122.581621291999966, 49.173932995 ], [ -122.581622010999922, 49.173847581000125 ], [ -122.581492881999949, 49.173847113000107 ], [ -122.581247196999954, 49.173682794000044 ], [ -122.580802393999932, 49.173424304000072 ], [ -122.580803405999973, 49.173304890000097 ], [ -122.580595622999951, 49.17330414 ], [ -122.580392811999943, 49.173186276000074 ], [ -122.580393826, 49.173067069000076 ], [ -122.580175784999966, 49.173060150000083 ], [ -122.580079364999932, 49.173004114000058 ], [ -122.579813690999941, 49.172849699000018 ], [ -122.579133628999941, 49.172478259000094 ], [ -122.57694537899998, 49.171282993000077 ], [ -122.576830104999956, 49.171237129000062 ], [ -122.576193985999936, 49.170983989000057 ], [ -122.574799994, 49.17025898800005 ], [ -122.574265747999902, 49.170085180000029 ], [ -122.574268882999931, 49.170042648000056 ], [ -122.574074369999948, 49.170041935 ], [ -122.573976615999939, 49.170021376000122 ], [ -122.573834821999981, 49.169991550000105 ], [ -122.573836715999974, 49.169771192000056 ], [ -122.572590696999953, 49.169766587000069 ], [ -122.572190945000017, 49.169716608000087 ], [ -122.572195177, 49.169225399000041 ], [ -122.571783634999946, 49.16922387400011 ], [ -122.571785961999979, 49.168954022000065 ], [ -122.570962880999986, 49.168950966000047 ], [ -122.57096521299998, 49.168681114000073 ], [ -122.56973059799999, 49.168676520000133 ], [ -122.569732936999984, 49.168406667000092 ], [ -122.568909864999938, 49.168403597000115 ], [ -122.56890517899997, 49.168943302000045 ], [ -122.568082099999955, 49.168940228000103 ], [ -122.568079750999914, 49.16921008 ], [ -122.566845124999972, 49.169205456000064 ], [ -122.566852187, 49.168395898000085 ], [ -122.567263722999925, 49.168397441000074 ], [ -122.567273128999958, 49.167318029000057 ], [ -122.567480992999947, 49.167318807000058 ], [ -122.568919235999914, 49.167324186000052 ], [ -122.56892157799993, 49.167054332000099 ], [ -122.569744628999914, 49.167057402000061 ], [ -122.569749304999917, 49.166517696000057 ], [ -122.570084564999931, 49.166518944000053 ], [ -122.570237179999964, 49.164450567000038 ], [ -122.570579099999961, 49.164461461000073 ], [ -122.570598980999961, 49.164191974000076 ], [ -122.570958326999985, 49.16420342300006 ], [ -122.570980880999969, 49.163897682000069 ], [ -122.572883040999955, 49.16395826300004 ], [ -122.573024600999958, 49.162038027000087 ], [ -122.577604245999979, 49.162183742000096 ], [ -122.577604934999954, 49.162182961000042 ], [ -122.577605311999946, 49.162182686000079 ], [ -122.57760721399994, 49.161959054000128 ], [ -122.577909387999952, 49.161960159000095 ], [ -122.578019383999958, 49.161879662000089 ], [ -122.578023281999947, 49.161420852000056 ], [ -122.579669195999955, 49.161426855000045 ], [ -122.579678330999982, 49.160347439000084 ], [ -122.58091274, 49.160351927000093 ], [ -122.580908185999974, 49.160891634000102 ], [ -122.582142608, 49.160896107000021 ], [ -122.582144877999937, 49.160626253000018 ], [ -122.582256498, 49.160626657000122 ], [ -122.582346971999982, 49.159395945000071 ], [ -122.583389373999978, 49.159429040000141 ], [ -122.583392874999987, 49.15901159100008 ], [ -122.583804334999954, 49.15901307400005 ], [ -122.583806595999988, 49.158743220000069 ], [ -122.585040963999987, 49.158747662000039 ], [ -122.585038712, 49.159017516000105 ], [ -122.586273087, 49.159021946000109 ], [ -122.586275333999978, 49.158752092000014 ], [ -122.587509703999984, 49.158756507000071 ], [ -122.587507464999973, 49.159026361000045 ], [ -122.58770072899992, 49.159027053000031 ], [ -122.587741505999944, 49.158471471000077 ], [ -122.590391644999954, 49.158555462000045 ], [ -122.590392127999948, 49.158496906000018 ], [ -122.590658930999894, 49.158497852000039 ], [ -122.590621887999973, 49.1587307940001 ], [ -122.589742401999956, 49.159645846000089 ], [ -122.589701070999979, 49.159688858000109 ], [ -122.589627618999899, 49.159765267000118 ], [ -122.589619880999962, 49.159773300000069 ], [ -122.589596623999952, 49.159789601000064 ], [ -122.589316498999921, 49.159985863000067 ], [ -122.587639024999987, 49.161161057000044 ], [ -122.587343198999932, 49.161368311000068 ], [ -122.587123995999889, 49.161578790000149 ], [ -122.586256868999939, 49.162411412000083 ], [ -122.585971308999945, 49.16268560200011 ], [ -122.58389125299999, 49.162661485000058 ], [ -122.583356115999933, 49.162655257000097 ], [ -122.582300803999942, 49.162643019000036 ], [ -122.580517914999959, 49.162627793000055 ], [ -122.578749416999926, 49.162584249000041 ], [ -122.577137353999916, 49.164085730000039 ], [ -122.577024917999907, 49.164122698000078 ], [ -122.576903916000035, 49.164126968000112 ], [ -122.576367312999963, 49.163871992000082 ], [ -122.576047758, 49.164168615000037 ], [ -122.575771216999939, 49.164425312000056 ], [ -122.576871295999979, 49.164960398000105 ], [ -122.577995810999965, 49.165500812000104 ], [ -122.578913810999978, 49.165940096000092 ], [ -122.579096686999932, 49.166027 ], [ -122.57813451, 49.166927852000128 ], [ -122.577790369999931, 49.167250054000078 ], [ -122.576794494999959, 49.168182401000095 ], [ -122.575641704999938, 49.169217191000072 ], [ -122.576056082999941, 49.16941970000002 ], [ -122.57676890899991, 49.169740599000107 ], [ -122.577888748999968, 49.170270975000065 ], [ -122.578436657999973, 49.170502877000068 ], [ -122.579250875999946, 49.170677401000013 ], [ -122.580595742999961, 49.170897974000127 ], [ -122.581023409999943, 49.170968105000064 ], [ -122.581128167, 49.170986838000026 ], [ -122.58680379499998, 49.172002208000073 ], [ -122.587575611999952, 49.171278704 ], [ -122.588236373999933, 49.171638393000087 ], [ -122.588958022000014, 49.172021270000123 ], [ -122.589314895999962, 49.172210612000129 ], [ -122.589675198999942, 49.172408499000035 ], [ -122.590527454000011, 49.172876512000066 ], [ -122.590820986999972, 49.173037734000054 ], [ -122.591223591999935, 49.173258811000018 ], [ -122.592001893999935, 49.173686185000051 ], [ -122.592334069999936, 49.173869738000064 ], [ -122.592725658999939, 49.174084880000073 ], [ -122.593351076999909, 49.174429201000088 ], [ -122.591907122999956, 49.1744241070001 ], [ -122.591909341999923, 49.174154254 ], [ -122.591895944999962, 49.174154207000093 ], [ -122.591547002999988, 49.174152973000083 ], [ -122.591086171999976, 49.174151341000034 ], [ -122.591088394999986, 49.173881489000031 ], [ -122.588618901999979, 49.173872718000091 ], [ -122.588616664999975, 49.17414257100004 ], [ -122.587793496999893, 49.17413963700016 ], [ -122.58779125699999, 49.174409489000055 ], [ -122.587379668999986, 49.174408019000047 ], [ -122.587372940999927, 49.175217580000016 ], [ -122.586961347999988, 49.175216108000072 ], [ -122.586954610999967, 49.176025668000122 ], [ -122.584999503999967, 49.176018658000096 ], [ -122.584897204999933, 49.175947506000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11732918", "BldgCostT": "8091668", "sL_LossRatio": "0.75343021953405", "sL_AssetLoss": "142848", "sL_BldgLoss": "107626", "sL_StrLoss": "53706", "sL_NStrLoss": "53920", "sL_ContLoss": "35222", "geom_point": "0101000020E61000006A7032DC06A35EC00EBA6BA64E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.541403098999936, 49.16567825000007 ], [ -122.541470572999955, 49.165516508000053 ], [ -122.541863177999943, 49.165546256000098 ], [ -122.550445782999958, 49.165876529000052 ], [ -122.550300555999968, 49.167833401000117 ], [ -122.550087276999975, 49.167836494000042 ], [ -122.548128390999977, 49.16753171000007 ], [ -122.546404562999953, 49.166915646000035 ], [ -122.546091911999937, 49.166803905000108 ], [ -122.54541794699999, 49.166621158000062 ], [ -122.54383350099998, 49.166191509 ], [ -122.541403098999936, 49.16567825000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.75733517431826", "sL_AssetLoss": "28970", "sL_BldgLoss": "21940", "sL_StrLoss": "11150", "sL_NStrLoss": "10790", "sL_ContLoss": "7030", "geom_point": "0101000020E610000022D62CE15AA45EC093DAB4E7EC934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.568558357999962, 49.153299687000121 ], [ -122.568595101999932, 49.153300859000055 ], [ -122.568329677999927, 49.156897193000127 ], [ -122.566996855999918, 49.156854686000074 ], [ -122.567516423999905, 49.156154428000072 ], [ -122.567834193999943, 49.155607158000038 ], [ -122.56818635800002, 49.154502105000105 ], [ -122.56837496199995, 49.153521819000041 ], [ -122.568415584999954, 49.153304065000086 ], [ -122.568558357999962, 49.153299687000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.755803955288048", "sL_AssetLoss": "34890", "sL_BldgLoss": "26370", "sL_StrLoss": "11960", "sL_NStrLoss": "14410", "sL_ContLoss": "8520", "geom_point": "0101000020E6100000BC13A232F4A35EC05270460783954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.561500092, 49.168617465000068 ], [ -122.561502228999984, 49.168375707000088 ], [ -122.560679157999985, 49.168372579000028 ], [ -122.560686321, 49.167563020000046 ], [ -122.562743962999917, 49.167570830000145 ], [ -122.56273445699999, 49.16865024100013 ], [ -122.561685041999922, 49.168646263000028 ], [ -122.561500092, 49.168617465000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31670501", "BldgCostT": "21370001", "sL_LossRatio": "0.743908595648363", "sL_AssetLoss": "360508", "sL_BldgLoss": "268185", "sL_StrLoss": "130105", "sL_NStrLoss": "138080", "sL_ContLoss": "92323", "geom_point": "0101000020E61000006672732228A55EC0A712965FA3934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.574168510999982, 49.154479291000079 ], [ -122.574285159999974, 49.152896047000112 ], [ -122.573830245999915, 49.152881565000072 ], [ -122.573828276999933, 49.15290827200004 ], [ -122.572180375999935, 49.152855793000057 ], [ -122.5732262099999, 49.152628807000035 ], [ -122.57325363399994, 49.152626027000103 ], [ -122.576417955999943, 49.152305811000083 ], [ -122.576545382999939, 49.152292908000071 ], [ -122.577531610999969, 49.152273350000065 ], [ -122.577715105999928, 49.152269696000126 ], [ -122.57870788399994, 49.152471592000104 ], [ -122.579146523999938, 49.152493798000094 ], [ -122.580908395999984, 49.152583001000053 ], [ -122.581586981, 49.152340495000033 ], [ -122.581879488999959, 49.15252010600004 ], [ -122.582044352999944, 49.152581540000035 ], [ -122.5822892, 49.152672789000071 ], [ -122.58292478700001, 49.152829090000061 ], [ -122.58363941099995, 49.152955389000063 ], [ -122.586475509999914, 49.153110307000091 ], [ -122.587065888999973, 49.153061394000083 ], [ -122.587512218999933, 49.152985456000053 ], [ -122.587608866999929, 49.152969018000078 ], [ -122.58787810299999, 49.152923196000096 ], [ -122.588308433999956, 49.152902246000075 ], [ -122.588561898999956, 49.152889888000075 ], [ -122.588683195999963, 49.152896086000077 ], [ -122.58926259699993, 49.152925590000052 ], [ -122.59023058299999, 49.153106952000101 ], [ -122.590912497999952, 49.153234706000106 ], [ -122.590914802, 49.15343008000012 ], [ -122.58948202, 49.15338468100007 ], [ -122.589428877, 49.154109192000099 ], [ -122.585280419999904, 49.153977636000036 ], [ -122.585279400999923, 49.153991492000038 ], [ -122.583320206999971, 49.15392930700002 ], [ -122.583315522999939, 49.153993040000067 ], [ -122.579696837999961, 49.153878087000038 ], [ -122.579639811000021, 49.154653326000073 ], [ -122.574168510999982, 49.154479291000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.760736196319018", "sL_AssetLoss": "16300", "sL_BldgLoss": "12400", "sL_StrLoss": "5940", "sL_NStrLoss": "6460", "sL_ContLoss": "3900", "geom_point": "0101000020E61000003B60ECF7A3A35EC0AB07AB353D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.557212175999936, 49.165624209000057 ], [ -122.557823645, 49.165528166000094 ], [ -122.557820570999965, 49.16587346600005 ], [ -122.557817638999921, 49.166202763000044 ], [ -122.555760053999904, 49.166194866000112 ], [ -122.555763531999958, 49.165806149000048 ], [ -122.556601764000021, 49.165700876000088 ], [ -122.557212175999936, 49.165624209000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73881500", "BldgCostT": "47750000", "sL_LossRatio": "0.705333978702807", "sL_AssetLoss": "929700", "sL_BldgLoss": "655749", "sL_StrLoss": "302909", "sL_NStrLoss": "352840", "sL_ContLoss": "273951", "geom_point": "0101000020E6100000F1FB61F886A35EC03FAA82CD10924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.54370035599996, 49.149265854000127 ], [ -122.543757418999974, 49.148997393000094 ], [ -122.544013509999985, 49.147792295000038 ], [ -122.544893372999951, 49.147800691000121 ], [ -122.545962759999981, 49.147810893000049 ], [ -122.54741629199998, 49.147824729000028 ], [ -122.547772682999906, 49.147828127000018 ], [ -122.54810170899999, 49.147831262000089 ], [ -122.550401200999929, 49.147853102000084 ], [ -122.550886337999913, 49.146159986000015 ], [ -122.550950605999915, 49.14593569000008 ], [ -122.550815143999941, 49.145724822000091 ], [ -122.550484804999911, 49.145210591000051 ], [ -122.550371105999957, 49.144508513000062 ], [ -122.549918006, 49.14377929100003 ], [ -122.549338123, 49.143281307000031 ], [ -122.549028596999946, 49.142464789000037 ], [ -122.548998464999968, 49.142225112000112 ], [ -122.548938096999933, 49.141745415000052 ], [ -122.54867060399999, 49.141433094000057 ], [ -122.548335089999938, 49.141273317000135 ], [ -122.547836611999941, 49.141035910000078 ], [ -122.547818844999981, 49.141021791000071 ], [ -122.544540269999985, 49.138413901000035 ], [ -122.543957419999941, 49.137866999000053 ], [ -122.542700392999947, 49.135951105000053 ], [ -122.542393206999975, 49.135659197000088 ], [ -122.541272391999925, 49.135120204 ], [ -122.539847605999952, 49.134892393 ], [ -122.53894120299999, 49.134678409000095 ], [ -122.537745228999967, 49.133993464000071 ], [ -122.537649090999977, 49.133938402000062 ], [ -122.536779603999946, 49.133707613000091 ], [ -122.53678133799994, 49.133224605000045 ], [ -122.538569807999949, 49.133232651000093 ], [ -122.543326747999984, 49.133253968000126 ], [ -122.543320874999935, 49.133333008000129 ], [ -122.546041504999934, 49.133420407000074 ], [ -122.545904214999922, 49.135269363000106 ], [ -122.546898589999898, 49.135301289000083 ], [ -122.546812893999956, 49.13645565800006 ], [ -122.551426701999972, 49.136603672000042 ], [ -122.551235887999937, 49.139177246000017 ], [ -122.553812378999979, 49.139259815000081 ], [ -122.553545893999939, 49.142856191000057 ], [ -122.553288948999949, 49.142847960000068 ], [ -122.55311057599999, 49.145254684000051 ], [ -122.554195035999911, 49.145289422000147 ], [ -122.554181564999951, 49.145471222000069 ], [ -122.555114603999982, 49.145501100000018 ], [ -122.555159385999929, 49.144896545000073 ], [ -122.555489836000035, 49.144907125000067 ], [ -122.555506826999988, 49.144677721000107 ], [ -122.555450526999934, 49.144675918000104 ], [ -122.555507920999943, 49.143901008000064 ], [ -122.554101927999952, 49.143855985000059 ], [ -122.554368375999914, 49.14025961400008 ], [ -122.555141775, 49.140284382000075 ], [ -122.555203487999961, 49.139451131000058 ], [ -122.555817238999936, 49.139470783000128 ], [ -122.555912429999978, 49.138185245000017 ], [ -122.555915976999955, 49.138185358000037 ], [ -122.555923228999987, 49.138087406000047 ], [ -122.555633840999917, 49.138078141000022 ], [ -122.555825175999956, 49.135494158000014 ], [ -122.555790604999956, 49.135493051000026 ], [ -122.555952274999953, 49.133309499000106 ], [ -122.556458888999941, 49.133311694000085 ], [ -122.559050312999929, 49.133322901000106 ], [ -122.564381823999938, 49.133379484000059 ], [ -122.566136303999912, 49.133398045000028 ], [ -122.566533913999962, 49.133402249000049 ], [ -122.570753462, 49.13344676600007 ], [ -122.57050178599999, 49.132347877000086 ], [ -122.573251817999946, 49.133429284000066 ], [ -122.573236027999911, 49.133643627000012 ], [ -122.573135649999969, 49.135006240000031 ], [ -122.569149129999957, 49.134879163000093 ], [ -122.569146182999972, 49.134919137000097 ], [ -122.568282962999902, 49.134891601000106 ], [ -122.568232682999962, 49.135573157000067 ], [ -122.566500243999982, 49.135517873000083 ], [ -122.56649751099998, 49.135554899000084 ], [ -122.563571457999956, 49.13546146100007 ], [ -122.563566190999936, 49.135532770000069 ], [ -122.562369856999936, 49.135494544 ], [ -122.562226416, 49.13743543200011 ], [ -122.562534547, 49.13744527900009 ], [ -122.56226874599993, 49.141041686000101 ], [ -122.561222303999969, 49.141008242000041 ], [ -122.561155504999974, 49.141911699000012 ], [ -122.562356930999925, 49.141950096000102 ], [ -122.562285227999979, 49.142920168000046 ], [ -122.562501985999972, 49.1429270940001 ], [ -122.562236150999965, 49.146523470000041 ], [ -122.562220969999956, 49.14652298500009 ], [ -122.562215322999947, 49.146599368000075 ], [ -122.562313619999927, 49.146602508000079 ], [ -122.562047748999959, 49.150198865000114 ], [ -122.558809659999909, 49.150095358000073 ], [ -122.556577039, 49.150023934000025 ], [ -122.556623287999955, 49.149399371000079 ], [ -122.554749412999968, 49.149339388000072 ], [ -122.55476753, 49.149094863000116 ], [ -122.554358715999967, 49.149081773000013 ], [ -122.55428352899996, 49.150096453000032 ], [ -122.548812859999941, 49.149921128000081 ], [ -122.548856534999942, 49.149332663000024 ], [ -122.547510822999953, 49.149289493000012 ], [ -122.547441057999933, 49.150229117000087 ], [ -122.54594647, 49.150181151000055 ], [ -122.545928708999952, 49.150420253000064 ], [ -122.543482804999925, 49.150341711000053 ], [ -122.543492718999985, 49.150243106000097 ], [ -122.54370035599996, 49.149265854000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82584083", "BldgCostT": "54068333", "sL_LossRatio": "0.710515501214421", "sL_AssetLoss": "1138814", "sL_BldgLoss": "809145", "sL_StrLoss": "372105", "sL_NStrLoss": "437040", "sL_ContLoss": "329669", "geom_point": "0101000020E61000008F328FBA65A55EC091E8E1DBA6924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.568357204999984, 49.152733942000033 ], [ -122.568486459, 49.150982504000076 ], [ -122.568064203999953, 49.150969038000028 ], [ -122.568329612999946, 49.147372671000063 ], [ -122.573800055999968, 49.147547005000106 ], [ -122.573671010999959, 49.149298458000096 ], [ -122.573842515999914, 49.149303919000083 ], [ -122.573844482999917, 49.149277211000076 ], [ -122.57799684099993, 49.149409346000027 ], [ -122.578181541, 49.146899308000052 ], [ -122.578811051999978, 49.146919326000038 ], [ -122.579026868999932, 49.143985520000101 ], [ -122.579276735999883, 49.143993465000094 ], [ -122.579293256999946, 49.143768841000067 ], [ -122.578919146999979, 49.143756946000032 ], [ -122.578937158999921, 49.143512074000064 ], [ -122.577907225999965, 49.143479320000026 ], [ -122.578171832999914, 49.139882887000049 ], [ -122.57902844799996, 49.13991013100005 ], [ -122.579133146999979, 49.138486591000031 ], [ -122.579040619999958, 49.138486255000075 ], [ -122.579045191999953, 49.137946545000069 ], [ -122.577811338999965, 49.137942039000038 ], [ -122.577818431999987, 49.137106906000092 ], [ -122.573047049999943, 49.136955008000079 ], [ -122.573289925, 49.133658169000057 ], [ -122.573305236999929, 49.133450289000066 ], [ -122.574051748999963, 49.133743822000085 ], [ -122.574145833999978, 49.133780824000034 ], [ -122.578290003999953, 49.135410163000138 ], [ -122.578472016999939, 49.135481695000124 ], [ -122.580188574999951, 49.136143247000042 ], [ -122.580212217999986, 49.136152354000082 ], [ -122.580848838999927, 49.136397691000099 ], [ -122.58131218799997, 49.136576238000046 ], [ -122.581324008999957, 49.136580790000053 ], [ -122.582722349, 49.137135344000107 ], [ -122.582745839, 49.137144647000085 ], [ -122.583793412999981, 49.137560052000048 ], [ -122.584947901999968, 49.138017873000109 ], [ -122.585041783999955, 49.138055086000087 ], [ -122.586052166999949, 49.138455703000041 ], [ -122.586749497999932, 49.138732211000118 ], [ -122.587037620999965, 49.138844578000068 ], [ -122.588719705999949, 49.139500702000099 ], [ -122.589798805999962, 49.139921578000077 ], [ -122.590089749999933, 49.140035062000067 ], [ -122.590443486999945, 49.14017303100011 ], [ -122.594683178999958, 49.1418264590001 ], [ -122.59526811299996, 49.142054546000075 ], [ -122.595664313999947, 49.142209040000111 ], [ -122.599268455999976, 49.143614321000072 ], [ -122.599980275999911, 49.143891820000185 ], [ -122.601008002999919, 49.144292484000076 ], [ -122.600759818999904, 49.144530167000013 ], [ -122.60002881099993, 49.145230243000071 ], [ -122.599789116999901, 49.145459799000037 ], [ -122.598610014999934, 49.14649501100007 ], [ -122.596201004999912, 49.148355511000013 ], [ -122.594476492999917, 49.149966287000076 ], [ -122.593567727999982, 49.150639466000051 ], [ -122.59229168899995, 49.151584650000117 ], [ -122.59134249, 49.15228769400008 ], [ -122.591067990999974, 49.152618873000065 ], [ -122.59093490199993, 49.152779403000075 ], [ -122.590912497999952, 49.153234706000106 ], [ -122.59023058299999, 49.153106952000101 ], [ -122.58926259699993, 49.152925590000052 ], [ -122.588683195999963, 49.152896086000077 ], [ -122.588561898999956, 49.152889888000075 ], [ -122.588308433999956, 49.152902246000075 ], [ -122.58787810299999, 49.152923196000096 ], [ -122.587608866999929, 49.152969018000078 ], [ -122.587512218999933, 49.152985456000053 ], [ -122.587065888999973, 49.153061394000083 ], [ -122.586475509999914, 49.153110307000091 ], [ -122.58363941099995, 49.152955389000063 ], [ -122.58292478700001, 49.152829090000061 ], [ -122.5822892, 49.152672789000071 ], [ -122.582044352999944, 49.152581540000035 ], [ -122.581879488999959, 49.15252010600004 ], [ -122.581586981, 49.152340495000033 ], [ -122.580908395999984, 49.152583001000053 ], [ -122.579146523999938, 49.152493798000094 ], [ -122.57870788399994, 49.152471592000104 ], [ -122.577715105999928, 49.152269696000126 ], [ -122.577531610999969, 49.152273350000065 ], [ -122.576545382999939, 49.152292908000071 ], [ -122.576417955999943, 49.152305811000083 ], [ -122.57325363399994, 49.152626027000103 ], [ -122.5732262099999, 49.152628807000035 ], [ -122.572180375999935, 49.152855793000057 ], [ -122.568357204999984, 49.152733942000033 ] ], [ [ -122.586309355999958, 49.150326464000024 ], [ -122.586312342000014, 49.150285799000166 ], [ -122.586230095, 49.150283190000032 ], [ -122.586227110000024, 49.150323855000053 ], [ -122.586309355999958, 49.150326464000024 ] ], [ [ -122.59083873899999, 49.149822908000054 ], [ -122.590954479999965, 49.148244133000105 ], [ -122.590888035999967, 49.148243898000054 ], [ -122.590885814999979, 49.148513753000053 ], [ -122.590112690999902, 49.148511011000025 ], [ -122.590095138, 49.14852484900009 ], [ -122.590012750999961, 49.149648390000081 ], [ -122.589348129999962, 49.149627326000044 ], [ -122.589337275, 49.149775327000079 ], [ -122.59083873899999, 49.149822908000054 ] ], [ [ -122.586668733999929, 49.145301562000107 ], [ -122.586609330999977, 49.145260170000022 ], [ -122.586387678000037, 49.145259377000102 ], [ -122.586412383999956, 49.142290976000034 ], [ -122.585178422999931, 49.142286549000062 ], [ -122.585180673999957, 49.142016695000066 ], [ -122.585104422999947, 49.14201642000009 ], [ -122.585032360999961, 49.142997861000012 ], [ -122.585083759999961, 49.142999492000087 ], [ -122.584938935999958, 49.144971809000047 ], [ -122.585042583999964, 49.144975099000064 ], [ -122.58499177, 49.145667099000015 ], [ -122.587617673999915, 49.14575041299999 ], [ -122.587620398999931, 49.14542219200009 ], [ -122.587232034999943, 49.145328762000084 ], [ -122.586668733999929, 49.145301562000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19087501", "BldgCostT": "12900001", "sL_LossRatio": "0.72899926953981", "sL_AssetLoss": "301180", "sL_BldgLoss": "219560", "sL_StrLoss": "105790", "sL_NStrLoss": "113770", "sL_ContLoss": "81620", "geom_point": "0101000020E6100000FAD1CB830FA35EC06930364279944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.54199828499999, 49.164125099000081 ], [ -122.542013047999944, 49.163922544000044 ], [ -122.54206259899999, 49.163242218000029 ], [ -122.542985215999977, 49.162823012000096 ], [ -122.544134082999904, 49.162789598000096 ], [ -122.544495795, 49.162627309000072 ], [ -122.544608312999983, 49.162426123000053 ], [ -122.545384580999936, 49.161038198000071 ], [ -122.545846496999957, 49.160173402000083 ], [ -122.54589842599998, 49.160103224000054 ], [ -122.546392206999911, 49.159435707000078 ], [ -122.547413994999928, 49.158674610000027 ], [ -122.547451197999948, 49.158173793000053 ], [ -122.545733995999925, 49.156687798000107 ], [ -122.545632083999948, 49.156599589000095 ], [ -122.545195498999988, 49.156002685000018 ], [ -122.543646899999956, 49.153885414000122 ], [ -122.543419730999986, 49.152030660000044 ], [ -122.543393365999961, 49.151815352000042 ], [ -122.54709290800001, 49.151934128000107 ], [ -122.547048677999953, 49.152529740000013 ], [ -122.547322435999902, 49.152538523000061 ], [ -122.547055373999925, 49.156134810000061 ], [ -122.546845916000038, 49.156128089000056 ], [ -122.546808892999977, 49.156626560000063 ], [ -122.551133356999927, 49.156765233000101 ], [ -122.551107450999936, 49.157114471000106 ], [ -122.554493961999967, 49.157222945000036 ], [ -122.554227425999969, 49.160819223000061 ], [ -122.550897001999957, 49.160712547000088 ], [ -122.550788161999947, 49.162179502000093 ], [ -122.549333825999895, 49.162132887000055 ], [ -122.549189902999913, 49.164071736000047 ], [ -122.546777064999972, 49.16399435400006 ], [ -122.546760879, 49.164212244000062 ], [ -122.549493631999923, 49.164299881000019 ], [ -122.549494933999981, 49.164208661000082 ], [ -122.549765134999944, 49.164205961000036 ], [ -122.549763696999946, 49.164308539000018 ], [ -122.550560245999989, 49.164334068000109 ], [ -122.550472040999935, 49.165522686000102 ], [ -122.550445782999958, 49.165876529000052 ], [ -122.541863177999943, 49.165546256000098 ], [ -122.541470572999955, 49.165516508000053 ], [ -122.541622992999976, 49.165151213000051 ], [ -122.541631124999967, 49.165115225000079 ], [ -122.541760196999917, 49.1645428160001 ], [ -122.54199828499999, 49.164125099000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15762167", "BldgCostT": "10606667", "sL_LossRatio": "0.72201581027668", "sL_AssetLoss": "253000", "sL_BldgLoss": "182670", "sL_StrLoss": "85450", "sL_NStrLoss": "97220", "sL_ContLoss": "70330", "geom_point": "0101000020E61000003782F9D0EAA35EC097757B20E4934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.558559648999932, 49.15378966400003 ], [ -122.558637104999917, 49.152743152000063 ], [ -122.558734389999969, 49.152746263000019 ], [ -122.56094538399995, 49.152816946000023 ], [ -122.560950711999965, 49.152744908000038 ], [ -122.562488250999962, 49.152794035000028 ], [ -122.562506259999935, 49.152550444000042 ], [ -122.567977287999966, 49.152725073000099 ], [ -122.56793634, 49.1532798510001 ], [ -122.568558357999962, 49.153299687000121 ], [ -122.568415584999954, 49.153304065000086 ], [ -122.56837496199995, 49.153521819000041 ], [ -122.56818635800002, 49.154502105000105 ], [ -122.567834193999943, 49.155607158000038 ], [ -122.567516423999905, 49.156154428000072 ], [ -122.566996855999918, 49.156854686000074 ], [ -122.563258656999949, 49.156735375000032 ], [ -122.563184016999941, 49.157745115000054 ], [ -122.560053833000012, 49.157645109000065 ], [ -122.559984135000022, 49.158587090000026 ], [ -122.55861016099999, 49.158543165000019 ], [ -122.554512446999951, 49.158412058000096 ], [ -122.554778945999914, 49.154815766000119 ], [ -122.556015791999968, 49.154855355000109 ], [ -122.556100553999968, 49.153710994000015 ], [ -122.558559648999932, 49.15378966400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.763732129420617", "sL_AssetLoss": "39870", "sL_BldgLoss": "30450", "sL_StrLoss": "14000", "sL_NStrLoss": "16450", "sL_ContLoss": "9420", "geom_point": "0101000020E610000027E0F0E532A35EC0C0E93CAE36914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.547804889999966, 49.135939379000014 ], [ -122.547809274999963, 49.135457230000014 ], [ -122.547217092999972, 49.135438223000051 ], [ -122.547377882999939, 49.133271956000058 ], [ -122.548028451999954, 49.133274832000097 ], [ -122.549632228999911, 49.133281895000096 ], [ -122.55285780299999, 49.133296037000072 ], [ -122.552686053999935, 49.13561363300002 ], [ -122.549453902999971, 49.135509999000071 ], [ -122.549449953999968, 49.135945811000063 ], [ -122.547804889999966, 49.135939379000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.750656167979003", "sL_AssetLoss": "7620", "sL_BldgLoss": "5720", "sL_StrLoss": "2820", "sL_NStrLoss": "2900", "sL_ContLoss": "1900", "geom_point": "0101000020E61000003AD232B5D9A45EC0105839B448964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.574428974999961, 49.174749098000042 ], [ -122.573621734999975, 49.174396046000119 ], [ -122.573176417999946, 49.174566548000023 ], [ -122.57330197, 49.174248071000093 ], [ -122.573683629999906, 49.173612577000036 ], [ -122.574308843999972, 49.173145258000041 ], [ -122.574601355999974, 49.17292932800008 ], [ -122.575542666999937, 49.172409845000068 ], [ -122.575864289999942, 49.172520713000033 ], [ -122.57656550599998, 49.172931064000096 ], [ -122.57586771299998, 49.17290887200005 ], [ -122.575864622999916, 49.173270691000042 ], [ -122.576226752999958, 49.173282208000046 ], [ -122.576197715999967, 49.17367637300007 ], [ -122.576272729999971, 49.173678758000108 ], [ -122.576276060999973, 49.173288367000083 ], [ -122.57718176599991, 49.173291687000095 ], [ -122.57750917099996, 49.173483275000102 ], [ -122.577508494999933, 49.173562745000062 ], [ -122.577645836999977, 49.173563247000047 ], [ -122.577918723999915, 49.1737229290001 ], [ -122.577917778999989, 49.17383410200005 ], [ -122.578119027999918, 49.173834837000086 ], [ -122.578328547999973, 49.173931278000119 ], [ -122.578322483999955, 49.174645165000051 ], [ -122.576783045999917, 49.17463953300004 ], [ -122.576677842, 49.17606776600006 ], [ -122.575139033999974, 49.175101063000064 ], [ -122.574428974999961, 49.174749098000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.731459330143541", "sL_AssetLoss": "16720", "sL_BldgLoss": "12230", "sL_StrLoss": "4920", "sL_NStrLoss": "7310", "sL_ContLoss": "4490", "geom_point": "0101000020E610000011699FB7C6A05EC02019FE152A934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.510647664999937, 49.150360489000093 ], [ -122.510650321999975, 49.15009063600013 ], [ -122.510238943, 49.150088891000102 ], [ -122.510241601999923, 49.149819040000104 ], [ -122.509830222999966, 49.14981729400008 ], [ -122.50983648, 49.149183064000106 ], [ -122.509867886999956, 49.149177499000075 ], [ -122.512184197999915, 49.149130911000022 ], [ -122.513329382, 49.149214893000085 ], [ -122.514361644999951, 49.149196186000012 ], [ -122.51435275099999, 49.150106267000147 ], [ -122.51352998899992, 49.150102803000017 ], [ -122.513527345999933, 49.150372656000116 ], [ -122.510647664999937, 49.150360489000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14055417", "BldgCostT": "9221667", "sL_LossRatio": "0.738754454235064", "sL_AssetLoss": "134142", "sL_BldgLoss": "99098", "sL_StrLoss": "46178", "sL_NStrLoss": "52920", "sL_ContLoss": "35044", "geom_point": "0101000020E61000005170CA3F279E5EC09156C6D07B934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.469186862999933, 49.157552285000115 ], [ -122.469317452999945, 49.155832730000064 ], [ -122.468221080999953, 49.155796753000018 ], [ -122.468153504999989, 49.156686314000062 ], [ -122.464862802999932, 49.156578264000125 ], [ -122.464862564999976, 49.156581393000103 ], [ -122.464200541999929, 49.156559644000062 ], [ -122.464184049, 49.156776508000114 ], [ -122.463448886, 49.15675235100008 ], [ -122.463448217999883, 49.156761126000049 ], [ -122.461209545999964, 49.156687533000088 ], [ -122.461206302, 49.156620207000046 ], [ -122.461200591999926, 49.156501132000102 ], [ -122.461141203999929, 49.154440074000036 ], [ -122.461173167999974, 49.151558936000036 ], [ -122.463771149999943, 49.15164434800009 ], [ -122.463729419999979, 49.152193037000067 ], [ -122.46422846699997, 49.152209438000078 ], [ -122.464172112999918, 49.152950511000093 ], [ -122.46446105499993, 49.152960005000111 ], [ -122.464705379999927, 49.149746675000067 ], [ -122.46605908, 49.149791145000073 ], [ -122.466213030999981, 49.147765406000126 ], [ -122.468880785, 49.147852993000029 ], [ -122.468937661999945, 49.147103981000093 ], [ -122.471554096999952, 49.147078902000096 ], [ -122.472327502999917, 49.147094306000035 ], [ -122.481902387000019, 49.14727304600008 ], [ -122.483452338999953, 49.147301887000076 ], [ -122.483974705999984, 49.147311605000077 ], [ -122.48542058299995, 49.147224846000043 ], [ -122.485301059999955, 49.148806222000069 ], [ -122.482287988999971, 49.148707756000128 ], [ -122.482233570999952, 49.149427094000075 ], [ -122.476763255000023, 49.149248109000048 ], [ -122.476806992999968, 49.148670847000112 ], [ -122.47559536599999, 49.148631166000058 ], [ -122.475514283999928, 49.14970093000003 ], [ -122.475715591999943, 49.149707524000029 ], [ -122.475595562999928, 49.151291120000117 ], [ -122.476270170999953, 49.151313214000062 ], [ -122.476091320999984, 49.153673103000109 ], [ -122.477724765999952, 49.153726581000086 ], [ -122.477452316999944, 49.157322687000018 ], [ -122.47469598099994, 49.157232430000143 ], [ -122.474658125999952, 49.157731654000017 ], [ -122.473140433, 49.157681926000102 ], [ -122.469186862999933, 49.157552285000115 ] ], [ [ -122.470624031999932, 49.153447682000021 ], [ -122.470646897, 49.15314644700004 ], [ -122.470223474999941, 49.153132559000063 ], [ -122.470200606999953, 49.153433794000144 ], [ -122.470624031999932, 49.153447682000021 ] ], [ [ -122.47003854399992, 49.152251335000074 ], [ -122.470041630999916, 49.152210674000095 ], [ -122.470002382999979, 49.152209386 ], [ -122.469999295999983, 49.152250048000091 ], [ -122.47003854399992, 49.152251335000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.776762774764488", "sL_AssetLoss": "31527", "sL_BldgLoss": "24489", "sL_StrLoss": "12259", "sL_NStrLoss": "12230", "sL_ContLoss": "7038", "geom_point": "0101000020E61000007220E2EE059E5EC0AB8C90CB49954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.461326309999961, 49.167320621000023 ], [ -122.461308521999939, 49.165309613000069 ], [ -122.461329204999956, 49.165135741000014 ], [ -122.461397255999913, 49.164564005000123 ], [ -122.463362206999989, 49.164628587000067 ], [ -122.463362403999966, 49.164625986000054 ], [ -122.46883447499998, 49.164805648000041 ], [ -122.468800793999961, 49.165249023000044 ], [ -122.469592327999948, 49.165274988000064 ], [ -122.469593515999975, 49.165259338000055 ], [ -122.470101713999952, 49.165276005000074 ], [ -122.470103395999914, 49.165253851000109 ], [ -122.470171580999974, 49.165256086000063 ], [ -122.470179810999923, 49.164484621000014 ], [ -122.47182580099998, 49.164492162000109 ], [ -122.471817304999945, 49.16529093200009 ], [ -122.473647439999979, 49.165350905000032 ], [ -122.476164945999969, 49.165433354000101 ], [ -122.476156488999933, 49.165544914000066 ], [ -122.47725051499998, 49.165580726 ], [ -122.477226822999967, 49.165893353000094 ], [ -122.477971009999948, 49.165917706000123 ], [ -122.477840629999946, 49.167638321 ], [ -122.477067012999967, 49.167743904000062 ], [ -122.474403600999921, 49.167813706000047 ], [ -122.468041096999954, 49.167631397000086 ], [ -122.465064092999967, 49.167671290000087 ], [ -122.46133791799997, 49.1675766890001 ], [ -122.461326309999961, 49.167320621000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36448084", "BldgCostT": "24663334", "sL_LossRatio": "0.703376353805722", "sL_AssetLoss": "896085", "sL_BldgLoss": "630285", "sL_StrLoss": "257025", "sL_NStrLoss": "373260", "sL_ContLoss": "265800", "geom_point": "0101000020E6100000DE868BBB85A05EC0EF848F6F0C944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.49221547799999, 49.165620587000049 ], [ -122.492308224999974, 49.164391546000076 ], [ -122.488643510999964, 49.164272054000016 ], [ -122.488681981999932, 49.164045202000089 ], [ -122.488636285999974, 49.161944916000081 ], [ -122.488608460999956, 49.160665954000066 ], [ -122.490382612999952, 49.160723822000094 ], [ -122.490468885999945, 49.159581026000076 ], [ -122.492163105, 49.15963626000012 ], [ -122.492172520999972, 49.159511466000048 ], [ -122.492629019999967, 49.159526344000042 ], [ -122.496849214999941, 49.159663795000071 ], [ -122.496864633999962, 49.159459180000098 ], [ -122.499561003999972, 49.159546913000035 ], [ -122.499561919999977, 49.159534745000094 ], [ -122.501532085999926, 49.159598807000108 ], [ -122.501557755999954, 49.159257692000082 ], [ -122.507029342999942, 49.159435415000083 ], [ -122.507016140999937, 49.159611121000069 ], [ -122.507935235999952, 49.159640947000113 ], [ -122.50818695199996, 49.15628964400004 ], [ -122.509539489999966, 49.1563335210001 ], [ -122.509542547999914, 49.1562927780001 ], [ -122.508532024999965, 49.156288482000043 ], [ -122.508536115999974, 49.155874827000112 ], [ -122.507703683999949, 49.155847816000104 ], [ -122.507804245999964, 49.154508976000031 ], [ -122.507810692, 49.154423163000068 ], [ -122.507618269, 49.154416919000028 ], [ -122.507656960999952, 49.15390178900001 ], [ -122.506336516000019, 49.153858928000098 ], [ -122.506286213999942, 49.154528357000075 ], [ -122.506201989999937, 49.155649197000081 ], [ -122.505010496999887, 49.155610508000095 ], [ -122.504883728999985, 49.157296825000039 ], [ -122.499412400999958, 49.157118992000065 ], [ -122.499426388999964, 49.156933206000133 ], [ -122.496479710999935, 49.156837316000122 ], [ -122.496499236999966, 49.156578196000147 ], [ -122.494978475, 49.156528675000054 ], [ -122.495098538999969, 49.154936022000051 ], [ -122.49282419799999, 49.154861923000055 ], [ -122.492836386999954, 49.154700320000103 ], [ -122.492913548999951, 49.153677379000044 ], [ -122.492633083999948, 49.153668238000094 ], [ -122.48912464199999, 49.153553827000067 ], [ -122.489295332999973, 49.151293234000043 ], [ -122.488591725, 49.151270275000073 ], [ -122.488550996999962, 49.150236089000025 ], [ -122.488509354, 49.150302622000019 ], [ -122.48870822399999, 49.14766904800009 ], [ -122.490467840999912, 49.147726459000069 ], [ -122.490503739999951, 49.147250785000026 ], [ -122.488436210999964, 49.147183326000082 ], [ -122.48844679299999, 49.147043197000109 ], [ -122.491803562999948, 49.14684160400008 ], [ -122.491799486999952, 49.146861301000065 ], [ -122.492072935999957, 49.14740711400006 ], [ -122.492510299999978, 49.148280049000057 ], [ -122.49263757199995, 49.148534082000069 ], [ -122.492663388999986, 49.148585589000042 ], [ -122.492654605, 49.150060713000144 ], [ -122.500018897999979, 49.150785428000056 ], [ -122.5022492799999, 49.151004794000066 ], [ -122.502447473999936, 49.151003582000101 ], [ -122.503808814999971, 49.15099509500007 ], [ -122.504857724999937, 49.150545888000046 ], [ -122.505944996999986, 49.150581200000047 ], [ -122.505970479999959, 49.150242073000079 ], [ -122.511441022999975, 49.150419574000054 ], [ -122.511430277, 49.150562819000058 ], [ -122.512735780999947, 49.150605137000092 ], [ -122.512748994999953, 49.150428937000115 ], [ -122.514636453999984, 49.150490091000037 ], [ -122.518219586999962, 49.150606094000075 ], [ -122.51815103099996, 49.151521643000045 ], [ -122.519561095999961, 49.151567260000029 ], [ -122.519519263999925, 49.152126118000098 ], [ -122.52212047099999, 49.152210222000107 ], [ -122.522273823999939, 49.150159866000152 ], [ -122.523817920999974, 49.150209762000074 ], [ -122.523856725999948, 49.14969067500008 ], [ -122.523608547999928, 49.149682656000053 ], [ -122.523620039999983, 49.149528942000067 ], [ -122.51901419799999, 49.149380035000092 ], [ -122.519069282999951, 49.148644188000041 ], [ -122.517076076999956, 49.148579686000033 ], [ -122.517157549999936, 49.147491877000085 ], [ -122.520555903999963, 49.147517519000168 ], [ -122.52269533799992, 49.147533600000045 ], [ -122.525788903999967, 49.147556792000039 ], [ -122.525667647999953, 49.151149156000017 ], [ -122.525548201999968, 49.1546868020001 ], [ -122.525435737999899, 49.157976739000048 ], [ -122.525376097999981, 49.159721878 ], [ -122.525327222999948, 49.161152293000058 ], [ -122.525307536999946, 49.16172792000004 ], [ -122.52529979900001, 49.161954403000031 ], [ -122.52665751499994, 49.16197072300006 ], [ -122.52908092899996, 49.161999818000041 ], [ -122.529011008999944, 49.162936254000059 ], [ -122.52586729699999, 49.162890195000024 ], [ -122.522149182999968, 49.163232803000042 ], [ -122.522202126999915, 49.162525121000051 ], [ -122.52108306599996, 49.162488956000068 ], [ -122.521096784999926, 49.162305632000034 ], [ -122.519295914999987, 49.162247409000052 ], [ -122.519316463999985, 49.161972970000129 ], [ -122.518401800999982, 49.161943386000075 ], [ -122.51841287299996, 49.161795554000101 ], [ -122.51843294899993, 49.16152750300008 ], [ -122.517367026999963, 49.161493018000122 ], [ -122.517346206999946, 49.161770912000108 ], [ -122.517202548999961, 49.163688409 ], [ -122.515678997999913, 49.163828687000027 ], [ -122.510874380999923, 49.164005343000063 ], [ -122.510924110999937, 49.163342791000041 ], [ -122.509316139999953, 49.163290655000068 ], [ -122.509256468000018, 49.164085278000051 ], [ -122.506031421999964, 49.164337205000031 ], [ -122.503746659999976, 49.16440844400006 ], [ -122.503831648999935, 49.163278457000068 ], [ -122.502066560999936, 49.163221108000045 ], [ -122.502065645999977, 49.163233276000064 ], [ -122.497891296999981, 49.163097533000105 ], [ -122.497740658999973, 49.165096960000021 ], [ -122.494278103999946, 49.165436684000063 ], [ -122.493687899999969, 49.165551996000083 ], [ -122.493069806999983, 49.165584795000051 ], [ -122.49275591599995, 49.165529196000129 ], [ -122.49221547799999, 49.165620587000049 ] ], [ [ -122.511882875999945, 49.161479507000074 ], [ -122.51192824499999, 49.160874847000045 ], [ -122.514222490999956, 49.16094917700012 ], [ -122.517283823999918, 49.161048282000067 ], [ -122.517342679999956, 49.16026263400007 ], [ -122.514248419999944, 49.160162462000052 ], [ -122.513705139999928, 49.160144865000056 ], [ -122.513821980999964, 49.158586755000073 ], [ -122.513539733999977, 49.158577611000105 ], [ -122.513386658999949, 49.160618710000044 ], [ -122.511410535, 49.160554675000078 ], [ -122.511342446999919, 49.161461991000124 ], [ -122.511882875999945, 49.161479507000074 ] ], [ [ -122.523247812999955, 49.157630112000092 ], [ -122.523261338999959, 49.157449240000048 ], [ -122.523229955999938, 49.157448226000085 ], [ -122.523331861999964, 49.156085490000066 ], [ -122.521839335999957, 49.156037262000034 ], [ -122.521759701999912, 49.157101718000071 ], [ -122.5194236299999, 49.157026190000067 ], [ -122.519354287999988, 49.157952407000082 ], [ -122.522282062999977, 49.158047057000026 ], [ -122.522315506999988, 49.157599989000033 ], [ -122.523247812999955, 49.157630112000092 ] ], [ [ -122.52511782199997, 49.153904296000071 ], [ -122.52512137299999, 49.153856786000105 ], [ -122.524425505999915, 49.153834313000097 ], [ -122.52442195499998, 49.153881824000095 ], [ -122.52511782199997, 49.153904296000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4267834", "BldgCostT": "2943334", "sL_LossRatio": "0.775638383005553", "sL_AssetLoss": "41237", "sL_BldgLoss": "31985", "sL_StrLoss": "15325", "sL_NStrLoss": "16660", "sL_ContLoss": "9252", "geom_point": "0101000020E6100000AD585760639E5EC0ED76A497A4944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.47187583299997, 49.164516439000089 ], [ -122.47191117399997, 49.16405080500008 ], [ -122.47152454799999, 49.164038131000055 ], [ -122.471587386999957, 49.163210301000021 ], [ -122.46921102099995, 49.163132371000053 ], [ -122.469484139999963, 49.159536319000011 ], [ -122.469953635999957, 49.159551720000074 ], [ -122.47006209599999, 49.158123329000027 ], [ -122.473186956999939, 49.158225780000066 ], [ -122.475533428999967, 49.158302651000056 ], [ -122.475525063999939, 49.158412985000041 ], [ -122.478396235999966, 49.158506975000044 ], [ -122.478391732999938, 49.158566441000083 ], [ -122.479134913999971, 49.15859075700012 ], [ -122.479058553999906, 49.159598983000137 ], [ -122.47978485499999, 49.159622742000089 ], [ -122.479776010999956, 49.159739538000025 ], [ -122.480766026999945, 49.159771916000082 ], [ -122.48060508399999, 49.161897855000042 ], [ -122.48049377699999, 49.163367996000098 ], [ -122.477456067999981, 49.16326862100005 ], [ -122.477347923999943, 49.164695669 ], [ -122.473614094999945, 49.16457340300007 ], [ -122.47187583299997, 49.164516439000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6568500", "BldgCostT": "4530000", "sL_LossRatio": "0.762301110593542", "sL_AssetLoss": "81578", "sL_BldgLoss": "62187", "sL_StrLoss": "29137", "sL_NStrLoss": "33050", "sL_ContLoss": "19391", "geom_point": "0101000020E610000013916986F7A55EC0877CA73428974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.589791280000028, 49.181424464000074 ], [ -122.589797900999969, 49.180623441000051 ], [ -122.589386261999948, 49.180621977000072 ], [ -122.589392960999987, 49.17981241800009 ], [ -122.588981328999964, 49.179810954000089 ], [ -122.588985799999975, 49.17927124800007 ], [ -122.588574172, 49.179269783000045 ], [ -122.588578644999984, 49.178730076000058 ], [ -122.588167022999954, 49.178728608000036 ], [ -122.588173738999927, 49.177919050000099 ], [ -122.587762123999966, 49.177917582000084 ], [ -122.587764365999959, 49.177647728000117 ], [ -122.587352751999958, 49.177646258000074 ], [ -122.587359481999954, 49.176836699000013 ], [ -122.587771087999968, 49.176838168000053 ], [ -122.587772292999972, 49.176693220000068 ], [ -122.588197134999945, 49.176569827000044 ], [ -122.588596538999951, 49.176571251000091 ], [ -122.588597841999956, 49.176413963000137 ], [ -122.588871513999919, 49.176302369000091 ], [ -122.589421977999962, 49.176304327000075 ], [ -122.589423858999979, 49.176077139000057 ], [ -122.589487203999951, 49.176051308000069 ], [ -122.589634861999969, 49.176035222000067 ], [ -122.589930596999977, 49.176036273000065 ], [ -122.59073379099999, 49.176155302000112 ], [ -122.59100881499991, 49.17612819600005 ], [ -122.591212291999952, 49.176040818000061 ], [ -122.591893811999952, 49.176043227000108 ], [ -122.591896030999948, 49.175773375000055 ], [ -122.59230763, 49.175774828000065 ], [ -122.592309243999949, 49.175578292000104 ], [ -122.592719312999989, 49.175506419000037 ], [ -122.593133036999987, 49.175507877000058 ], [ -122.593133643999963, 49.175433798 ], [ -122.594185087999961, 49.175249500000099 ], [ -122.594208316999982, 49.175241800000023 ], [ -122.59437003, 49.175242368000113 ], [ -122.594367824999949, 49.175512222000087 ], [ -122.594742962999959, 49.175513538000075 ], [ -122.594755441999965, 49.175531477000042 ], [ -122.594778998999985, 49.175565327000065 ], [ -122.594775014999939, 49.17605337300013 ], [ -122.595119469999972, 49.176054582000056 ], [ -122.595185837999978, 49.176149954000032 ], [ -122.595182214999966, 49.176594523000034 ], [ -122.595495987000021, 49.1765956220001 ], [ -122.595592689999975, 49.176734578000094 ], [ -122.595589421999961, 49.177135672000055 ], [ -122.595872515999957, 49.177136664000081 ], [ -122.595999548999913, 49.17731919800012 ], [ -122.595996637999932, 49.17767682000008 ], [ -122.596246107999931, 49.17767769200011 ], [ -122.596406314, 49.177916632000084 ], [ -122.596406058999946, 49.177948113000042 ], [ -122.596427471999945, 49.17794818700002 ], [ -122.596748043999924, 49.178426287000029 ], [ -122.596909523999969, 49.178667101000023 ], [ -122.596932488999968, 49.178698569000019 ], [ -122.599463387999961, 49.182160007000078 ], [ -122.599542953999944, 49.182268831000059 ], [ -122.600017622999971, 49.182917960000054 ], [ -122.600207688999959, 49.1831778990001 ], [ -122.599948312999942, 49.183258773000055 ], [ -122.598272121999941, 49.183781385000096 ], [ -122.597545504999971, 49.184007923000145 ], [ -122.596892177999948, 49.184211603000044 ], [ -122.595661900999929, 49.184595149000131 ], [ -122.593255360999962, 49.18534531200001 ], [ -122.590284034, 49.188648571 ], [ -122.590249207999975, 49.188369311000024 ], [ -122.590158003999989, 49.186056394000055 ], [ -122.589264129999904, 49.181407769000046 ], [ -122.589791280000028, 49.181424464000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "585573088", "BldgCostT": "338014326", "sL_LossRatio": "0.639177469835599", "sL_AssetLoss": "7195651", "sL_BldgLoss": "4599298", "sL_StrLoss": "1606138", "sL_NStrLoss": "2993160", "sL_ContLoss": "2596353", "geom_point": "0101000020E61000008472309B40C85EC04E99831C6B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121982691999946, 49.195977321000072 ], [ -123.12072748699994, 49.194628494000057 ], [ -123.119734615999946, 49.193561506000052 ], [ -123.119727479999966, 49.193553802000068 ], [ -123.119299451999979, 49.193092678000035 ], [ -123.118298393999979, 49.192014202000053 ], [ -123.118120511, 49.191829290000058 ], [ -123.118248205, 49.191805706000075 ], [ -123.118788807000016, 49.191669704000098 ], [ -123.12027799199997, 49.191102383000057 ], [ -123.120655277, 49.190989007000084 ], [ -123.121022449999913, 49.190939040000096 ], [ -123.121053682999943, 49.19093479100006 ], [ -123.121129498999963, 49.190934034000065 ], [ -123.121379274999953, 49.190931541000026 ], [ -123.122305389999951, 49.190922291000078 ], [ -123.123630086999981, 49.190926481000112 ], [ -123.124096692999927, 49.190927935000083 ], [ -123.124369285999975, 49.190928803000126 ], [ -123.124480976999948, 49.190928989000071 ], [ -123.124550300999942, 49.190929107000102 ], [ -123.12455954, 49.190868886000018 ], [ -123.124584888999948, 49.190703898000102 ], [ -123.124738366999935, 49.190363148000095 ], [ -123.124800260999933, 49.190225699000052 ], [ -123.124863388, 49.190085511000106 ], [ -123.124867893999962, 49.190075503000145 ], [ -123.124868439999958, 49.189839666000054 ], [ -123.124872966999945, 49.187912803000039 ], [ -123.12487330099999, 49.187771287000032 ], [ -123.12484238499998, 49.187006593000064 ], [ -123.124651690999926, 49.186143903000072 ], [ -123.124637422999967, 49.184667910000051 ], [ -123.126263360999928, 49.184672244000069 ], [ -123.12699861, 49.184674203000036 ], [ -123.1281436, 49.184677716000081 ], [ -123.129996073, 49.184682165000012 ], [ -123.130892881999941, 49.184684293000039 ], [ -123.132463107999953, 49.184685560000098 ], [ -123.132737654999929, 49.184685471000058 ], [ -123.133440875999966, 49.184685205000065 ], [ -123.135000321999911, 49.184684617000087 ], [ -123.13646882499998, 49.184622778000055 ], [ -123.136515510999956, 49.184368950000064 ], [ -123.136555422999891, 49.184152143000034 ], [ -123.136570291999988, 49.183802455000077 ], [ -123.136681195999955, 49.183810566000069 ], [ -123.137775525999984, 49.183890798000043 ], [ -123.13798373899999, 49.183902078000067 ], [ -123.13900214899995, 49.183957210000138 ], [ -123.139089323999954, 49.183971286 ], [ -123.139399648000023, 49.183963679000037 ], [ -123.139243398999952, 49.184180690000083 ], [ -123.138791694999895, 49.184830101000067 ], [ -123.13841907399997, 49.185337309000047 ], [ -123.138387964999964, 49.185379667000134 ], [ -123.13831034499999, 49.185485335000124 ], [ -123.138203682999958, 49.185630503000027 ], [ -123.137944699999977, 49.186251509000023 ], [ -123.137181343999941, 49.187452404000062 ], [ -123.13607238899999, 49.18919677100007 ], [ -123.135621483999927, 49.189905996000036 ], [ -123.135230015999937, 49.19039132500005 ], [ -123.134815001999968, 49.190905793000056 ], [ -123.134659245999927, 49.191302506000049 ], [ -123.134652300999988, 49.19132019400012 ], [ -123.134653015000012, 49.191323355000122 ], [ -123.134653119999911, 49.191323756000031 ], [ -123.134655356999971, 49.191333791000083 ], [ -123.134721393999897, 49.191626392000067 ], [ -123.134516367999964, 49.191988337000055 ], [ -123.134461593999987, 49.192085015000011 ], [ -123.134471921999975, 49.192171047000066 ], [ -123.134475611999946, 49.192201794 ], [ -123.134614357000018, 49.192315746000119 ], [ -123.134793113999976, 49.192462495000029 ], [ -123.134751103999974, 49.192695989000121 ], [ -123.134642574999972, 49.192835532000061 ], [ -123.134291810999912, 49.193286472000111 ], [ -123.134218184999924, 49.193381104000103 ], [ -123.134136706000035, 49.193893801000044 ], [ -123.134220895999988, 49.194333900000117 ], [ -123.133401281999951, 49.195513101000088 ], [ -123.133420130999937, 49.195690972000087 ], [ -123.133443215999961, 49.195909002000093 ], [ -123.133046603999986, 49.196206696000097 ], [ -123.132875297999959, 49.196140262000107 ], [ -123.13260591, 49.196035805000029 ], [ -123.13245559399995, 49.196081400000025 ], [ -123.131496121999959, 49.196685199000108 ], [ -123.130371484999955, 49.197028499000083 ], [ -123.129835106000016, 49.197010002000049 ], [ -123.129725410999939, 49.196938689000085 ], [ -123.129738691999975, 49.196732198000113 ], [ -123.130293541999933, 49.195964529000101 ], [ -123.130349598999956, 49.195886945000055 ], [ -123.130435492999965, 49.195768098 ], [ -123.1298316, 49.195463299000103 ], [ -123.129544412999934, 49.195454696000063 ], [ -123.128543696999927, 49.196183913000063 ], [ -123.128749703999915, 49.196498711000103 ], [ -123.128613198, 49.196688091000091 ], [ -123.128146706999928, 49.196985799000167 ], [ -123.125404481000018, 49.197978395000092 ], [ -123.125074590999972, 49.19801400200005 ], [ -123.12437678799995, 49.198401025000123 ], [ -123.124281874999909, 49.198453666000034 ], [ -123.124071317999892, 49.198226593000115 ], [ -123.124064146999956, 49.198218902000072 ], [ -123.122797524999925, 49.196854860000045 ], [ -123.121982691999946, 49.195977321000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104777162", "BldgCostT": "70609078", "sL_LossRatio": "0.726075267685211", "sL_AssetLoss": "1662307", "sL_BldgLoss": "1206960", "sL_StrLoss": "521180", "sL_NStrLoss": "685780", "sL_ContLoss": "455347", "geom_point": "0101000020E6100000BF42F6AC71C75EC01CEA663513984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116412000999929, 49.190450402000103 ], [ -123.114563716999982, 49.189236974000025 ], [ -123.11383431899999, 49.188758068000027 ], [ -123.111741567999914, 49.187383968000091 ], [ -123.109357858999942, 49.185795818000024 ], [ -123.107525955999989, 49.184577317000048 ], [ -123.107627501999985, 49.184577865000023 ], [ -123.107820730999947, 49.1845789220001 ], [ -123.108162781999937, 49.184583953000114 ], [ -123.109903387999964, 49.184609609000049 ], [ -123.112567664999958, 49.184629189000049 ], [ -123.113974796999926, 49.184639493000091 ], [ -123.113965211999954, 49.18589859500009 ], [ -123.113963825999946, 49.186080177000129 ], [ -123.11395809899993, 49.186835815000073 ], [ -123.113953270999929, 49.187474510000122 ], [ -123.113949994999984, 49.187909812000022 ], [ -123.114139896999959, 49.187910629000072 ], [ -123.114872792999961, 49.187913816000076 ], [ -123.114868773999959, 49.188130205000064 ], [ -123.114858191999957, 49.188700800000042 ], [ -123.114950424, 49.1889176090001 ], [ -123.11508303, 49.189046928000032 ], [ -123.11509388199994, 49.18905749700005 ], [ -123.116823484999941, 49.190183893000047 ], [ -123.116837206999932, 49.190183862000055 ], [ -123.121373820999921, 49.190173205000107 ], [ -123.121376800999926, 49.18926250200014 ], [ -123.123902093999959, 49.189280416000024 ], [ -123.123906303999931, 49.188370693000088 ], [ -123.123907834999926, 49.188075961000017 ], [ -123.123909101, 49.187837514000108 ], [ -123.124081812999961, 49.187744526000046 ], [ -123.124670488999939, 49.187767702000059 ], [ -123.12487330099999, 49.187771287000032 ], [ -123.124872966999945, 49.187912803000039 ], [ -123.124868439999958, 49.189839666000054 ], [ -123.124867893999962, 49.190075503000145 ], [ -123.124863388, 49.190085511000106 ], [ -123.124800260999933, 49.190225699000052 ], [ -123.124738366999935, 49.190363148000095 ], [ -123.124584888999948, 49.190703898000102 ], [ -123.12455954, 49.190868886000018 ], [ -123.124550300999942, 49.190929107000102 ], [ -123.124480976999948, 49.190928989000071 ], [ -123.124369285999975, 49.190928803000126 ], [ -123.124096692999927, 49.190927935000083 ], [ -123.123630086999981, 49.190926481000112 ], [ -123.122305389999951, 49.190922291000078 ], [ -123.121379274999953, 49.190931541000026 ], [ -123.121129498999963, 49.190934034000065 ], [ -123.121053682999943, 49.19093479100006 ], [ -123.121022449999913, 49.190939040000096 ], [ -123.120655277, 49.190989007000084 ], [ -123.12027799199997, 49.191102383000057 ], [ -123.118788807000016, 49.191669704000098 ], [ -123.118248205, 49.191805706000075 ], [ -123.118120511, 49.191829290000058 ], [ -123.117380814999933, 49.191106900000086 ], [ -123.117072407999984, 49.19089789900007 ], [ -123.116538420999944, 49.190536055000081 ], [ -123.116412000999929, 49.190450402000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155408000", "BldgCostT": "106655000", "sL_LossRatio": "0.794542323486555", "sL_AssetLoss": "2264700", "sL_BldgLoss": "1799400", "sL_StrLoss": "871700", "sL_NStrLoss": "927700", "sL_ContLoss": "465300", "geom_point": "0101000020E61000001895B3FBBEC75EC020B867E94C964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114001978999966, 49.177039676000092 ], [ -123.113992057999923, 49.17074292800001 ], [ -123.113991492999958, 49.170383113000085 ], [ -123.113991209999966, 49.170196499000042 ], [ -123.113990554999944, 49.170096463000043 ], [ -123.117881062999984, 49.170103370000092 ], [ -123.11933965, 49.170106360000041 ], [ -123.122219308999945, 49.170097799000054 ], [ -123.124568146999962, 49.17009297200012 ], [ -123.124566754999961, 49.170138336000058 ], [ -123.124565313999938, 49.170182987000096 ], [ -123.12463467299996, 49.17018433300008 ], [ -123.124689969999935, 49.170185396000093 ], [ -123.124680819999952, 49.172070688000069 ], [ -123.124672811000025, 49.173721712000031 ], [ -123.124672660999977, 49.173799326000101 ], [ -123.124672398999948, 49.173949585000109 ], [ -123.126023414999921, 49.173946271000013 ], [ -123.126034059999967, 49.173946238000035 ], [ -123.126171276, 49.173945875000108 ], [ -123.128007522999937, 49.173941310000068 ], [ -123.128682985999944, 49.173903490000122 ], [ -123.12871319599995, 49.177277986000021 ], [ -123.12871632199996, 49.177320979000058 ], [ -123.12871910299999, 49.177359194000061 ], [ -123.124654893999931, 49.177335493000072 ], [ -123.124655186, 49.17729853400003 ], [ -123.124655523999976, 49.177258906000127 ], [ -123.124471795999966, 49.177259399000043 ], [ -123.116395714999911, 49.177230008000059 ], [ -123.114016054000018, 49.177239650000026 ], [ -123.114002301999932, 49.177239692000072 ], [ -123.114001978999966, 49.177039676000092 ] ], [ [ -123.118751141999979, 49.174004644000071 ], [ -123.118747270999989, 49.172385485000049 ], [ -123.119158850999952, 49.172385062000068 ], [ -123.119156558, 49.171430033000014 ], [ -123.118545878999953, 49.171413693000019 ], [ -123.118602720999959, 49.170496611000083 ], [ -123.117096496999963, 49.1704981480001 ], [ -123.117095859999935, 49.170228288 ], [ -123.116684298999942, 49.170228704000117 ], [ -123.116684233999962, 49.170201084000034 ], [ -123.11668400399999, 49.170103221 ], [ -123.116272448999908, 49.170106218000065 ], [ -123.116272669999944, 49.170200388000033 ], [ -123.116272736999932, 49.170229120000101 ], [ -123.11609598599992, 49.170229297000063 ], [ -123.116046391999973, 49.171028760000105 ], [ -123.115612217999981, 49.171017131000035 ], [ -123.115570210999977, 49.17169417000008 ], [ -123.114629810999958, 49.171668976000056 ], [ -123.11463209899992, 49.172659504000094 ], [ -123.115043679999957, 49.172659094000082 ], [ -123.11504552699995, 49.173456077000104 ], [ -123.11784856, 49.173531136000115 ], [ -123.11765180699993, 49.176704374000025 ], [ -123.118345982999983, 49.176703663000097 ], [ -123.118339550999949, 49.174005066000078 ], [ -123.118751141999979, 49.174004644000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "971280249", "BldgCostT": "649089014", "sL_LossRatio": "0.819745388802234", "sL_AssetLoss": "5867456", "sL_BldgLoss": "4809820", "sL_StrLoss": "2643420", "sL_NStrLoss": "2166400", "sL_ContLoss": "1057636", "geom_point": "0101000020E6100000784A59E9A2C75EC096827E11FA964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124471795999966, 49.177259399000043 ], [ -123.124655523999976, 49.177258906000127 ], [ -123.124655186, 49.17729853400003 ], [ -123.124654893999931, 49.177335493000072 ], [ -123.124654097999922, 49.17883358500012 ], [ -123.124657817999932, 49.179328189000032 ], [ -123.124662889999968, 49.180851673000028 ], [ -123.124665884999928, 49.181737271000024 ], [ -123.124665917999963, 49.181746299000089 ], [ -123.124539077999927, 49.181748667000086 ], [ -123.124523684999957, 49.181748936000133 ], [ -123.124466812999955, 49.181749996000065 ], [ -123.123795187, 49.181767208000075 ], [ -123.122586408999894, 49.181767679000124 ], [ -123.118315010999964, 49.181769247000119 ], [ -123.113985588999952, 49.181770597000067 ], [ -123.113986654999934, 49.181024685000025 ], [ -123.113987761999951, 49.180296049000077 ], [ -123.113988521999985, 49.179780673000039 ], [ -123.113995598, 49.178849379000049 ], [ -123.114002884999977, 49.177339699000086 ], [ -123.114002795999937, 49.177318445000076 ], [ -123.114002301999932, 49.177239692000072 ], [ -123.114016054000018, 49.177239650000026 ], [ -123.116395714999911, 49.177230008000059 ], [ -123.124471795999966, 49.177259399000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121400668", "BldgCostT": "71951668", "sL_LossRatio": "0.65317673694637", "sL_AssetLoss": "2544120", "sL_BldgLoss": "1661760", "sL_StrLoss": "720740", "sL_NStrLoss": "941020", "sL_ContLoss": "882360", "geom_point": "0101000020E61000002A1F408E7FC65EC0332DCACF3A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.110998900999974, 49.178679803000072 ], [ -123.109938487, 49.178642402000058 ], [ -123.109394408999918, 49.178636784000069 ], [ -123.109125388999956, 49.178597098000068 ], [ -123.108964798000031, 49.178527435000056 ], [ -123.108618897999975, 49.17837738500004 ], [ -123.108368298999935, 49.178268700000068 ], [ -123.108360884999954, 49.17732979700007 ], [ -123.105340012999974, 49.177287404000019 ], [ -123.104402981999954, 49.177205499000081 ], [ -123.103637613999936, 49.177165086000102 ], [ -123.102934017999956, 49.177167789000109 ], [ -123.102936713999952, 49.177080492000108 ], [ -123.102452049999982, 49.177078413000068 ], [ -123.097078983999907, 49.177055093000085 ], [ -123.096555193, 49.177054514000069 ], [ -123.096656402999926, 49.177124802000023 ], [ -123.096341199999955, 49.177122585000056 ], [ -123.096237185999939, 49.177053164000014 ], [ -123.095671376999988, 49.176672156000087 ], [ -123.095629483999957, 49.176644338000109 ], [ -123.093431911999943, 49.175184751000096 ], [ -123.092178800999989, 49.174349189000061 ], [ -123.091832311999909, 49.174123590000086 ], [ -123.089069487999922, 49.172283209000106 ], [ -123.089009224999941, 49.17224113300005 ], [ -123.087975188, 49.171519388 ], [ -123.08788505199999, 49.171447700000094 ], [ -123.087563783999926, 49.171192104000014 ], [ -123.0874424, 49.171063915000069 ], [ -123.08728350599999, 49.17089620100009 ], [ -123.086898783999942, 49.170361500000126 ], [ -123.08697711, 49.17036127700004 ], [ -123.087140090999966, 49.170360796000047 ], [ -123.087470923999916, 49.1703575760001 ], [ -123.087653217, 49.170355807000071 ], [ -123.090364449999981, 49.170353854000084 ], [ -123.090379656999986, 49.170353858000048 ], [ -123.090868505999936, 49.170353483000049 ], [ -123.091643159999975, 49.170352827000045 ], [ -123.092879327999981, 49.170339351000059 ], [ -123.093973112999961, 49.170256253000076 ], [ -123.095199087999944, 49.170164115000098 ], [ -123.102966527999968, 49.170177889000037 ], [ -123.10296649799993, 49.170159593000136 ], [ -123.102966234999911, 49.170072487000049 ], [ -123.10836409199996, 49.170084400000043 ], [ -123.113976770999969, 49.170096460000096 ], [ -123.113990554999944, 49.170096463000043 ], [ -123.113991209999966, 49.170196499000042 ], [ -123.113991492999958, 49.170383113000085 ], [ -123.113992057999923, 49.17074292800001 ], [ -123.114001978999966, 49.177039676000092 ], [ -123.114002301999932, 49.177239692000072 ], [ -123.114002795999937, 49.177318445000076 ], [ -123.114002884999977, 49.177339699000086 ], [ -123.113995598, 49.178849379000049 ], [ -123.113988521999985, 49.179780673000039 ], [ -123.11320458599999, 49.179773185000052 ], [ -123.113023018999968, 49.179826894000023 ], [ -123.112733112999962, 49.179967699000038 ], [ -123.11249181, 49.179762747000076 ], [ -123.112231585, 49.17954169000005 ], [ -123.112025204999895, 49.179177605000049 ], [ -123.111868706999985, 49.178982391000055 ], [ -123.111594797999913, 49.178821999000057 ], [ -123.111345511, 49.178729709000088 ], [ -123.110998900999974, 49.178679803000072 ] ], [ [ -123.113398584999956, 49.173200443000049 ], [ -123.113395503999953, 49.171851143000026 ], [ -123.11298392899999, 49.171851547000053 ], [ -123.112983420999939, 49.171627918000105 ], [ -123.112708190999939, 49.171620538000077 ], [ -123.112703395999972, 49.171697739000116 ], [ -123.110661205000028, 49.171642962000085 ], [ -123.110661108999949, 49.171644490000048 ], [ -123.110035824999912, 49.171627710000081 ], [ -123.110035084999978, 49.171639605000095 ], [ -123.108859863999967, 49.171608058000054 ], [ -123.108854939999958, 49.171687234000068 ], [ -123.106592367999966, 49.171626461000059 ], [ -123.106591345999902, 49.17164288900009 ], [ -123.106065039000029, 49.171628746000145 ], [ -123.106062626999915, 49.171667502000027 ], [ -123.104322371999913, 49.171620718000035 ], [ -123.104319255999954, 49.17167074400006 ], [ -123.103629844999901, 49.17165220200004 ], [ -123.103622034999916, 49.171777561000034 ], [ -123.103105920999923, 49.171763677000037 ], [ -123.103106121999957, 49.171860789000036 ], [ -123.103517697999933, 49.171860420000058 ], [ -123.103519384999984, 49.17267 ], [ -123.103107804, 49.172670369000109 ], [ -123.103108363999937, 49.17294022800013 ], [ -123.102993947999948, 49.17294033000006 ], [ -123.10269677899997, 49.172940596000039 ], [ -123.102698453999921, 49.173750175000109 ], [ -123.103001987999903, 49.173749904000012 ], [ -123.103110045999969, 49.173749808000096 ], [ -123.103110605999973, 49.174019668000028 ], [ -123.103522199999986, 49.174019300000083 ], [ -123.103524449999938, 49.175098739000084 ], [ -123.10434765399999, 49.175097998000098 ], [ -123.104348222999974, 49.175367858000108 ], [ -123.105171430999988, 49.17536711200011 ], [ -123.105172001999932, 49.175636972000113 ], [ -123.10558360899995, 49.175636596000089 ], [ -123.105584183999923, 49.175906456000099 ], [ -123.106407400999927, 49.175905699000062 ], [ -123.106407979000011, 49.176175559000093 ], [ -123.107231200999962, 49.176174797000066 ], [ -123.10723178399995, 49.176444657000083 ], [ -123.107643396999961, 49.176444274000104 ], [ -123.107643982999932, 49.176714135000012 ], [ -123.10887882899999, 49.176712977000101 ], [ -123.108879421000026, 49.17698283700004 ], [ -123.110525892999974, 49.176981273000138 ], [ -123.110524690999966, 49.176441553000068 ], [ -123.110936301999971, 49.176441158000081 ], [ -123.110933890999959, 49.175361719000065 ], [ -123.111757099999949, 49.175360926000032 ], [ -123.111756491999969, 49.175091066000029 ], [ -123.112168093999941, 49.175090667000099 ], [ -123.112167484999972, 49.174820808000042 ], [ -123.112283963999957, 49.174820694000054 ], [ -123.112373183, 49.173384450000135 ], [ -123.112987453999935, 49.173400921000102 ], [ -123.112986999000015, 49.173200847000011 ], [ -123.113398584999956, 49.173200443000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82956166", "BldgCostT": "57001666", "sL_LossRatio": "0.746179523861927", "sL_AssetLoss": "1363050", "sL_BldgLoss": "1017080", "sL_StrLoss": "441870", "sL_NStrLoss": "575210", "sL_ContLoss": "345970", "geom_point": "0101000020E610000066BC101F96AB5EC0E3ABD3379F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.680158688999967, 49.214411897000033 ], [ -122.683825405999983, 49.214389598000025 ], [ -122.683826289999914, 49.214760889000061 ], [ -122.683828493999954, 49.215249314000069 ], [ -122.683793182999949, 49.217185406000084 ], [ -122.68082801099996, 49.217184314000107 ], [ -122.678260705999932, 49.217207002000031 ], [ -122.678254192999972, 49.216319300000045 ], [ -122.678253420999937, 49.215563303000089 ], [ -122.678256689999913, 49.21442259800007 ], [ -122.680158688999967, 49.214411897000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111191561", "BldgCostT": "73438190", "sL_LossRatio": "0.704229202124916", "sL_AssetLoss": "1938900", "sL_BldgLoss": "1365430", "sL_StrLoss": "589520", "sL_NStrLoss": "775910", "sL_ContLoss": "573470", "geom_point": "0101000020E6100000CBA67E39CEAB5EC0EC06C02EF99B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.68715787, 49.217165477000094 ], [ -122.689593472999945, 49.217142118000098 ], [ -122.689591782999926, 49.217358307000026 ], [ -122.68955088, 49.217450752000076 ], [ -122.68954828499993, 49.218147112000018 ], [ -122.689545021999933, 49.219034611000055 ], [ -122.68944479699995, 49.219034480000062 ], [ -122.688170929999956, 49.219032935000079 ], [ -122.686753957999926, 49.21903623200005 ], [ -122.68378167899999, 49.219036707000114 ], [ -122.683774088999925, 49.219720405000032 ], [ -122.681943796999988, 49.219724389000064 ], [ -122.68193303399994, 49.220249596000038 ], [ -122.681917695999942, 49.22099601700009 ], [ -122.681903406999979, 49.221692012000105 ], [ -122.681919606999912, 49.221849201000055 ], [ -122.680844065999949, 49.221849592000119 ], [ -122.680789686999958, 49.221849597000116 ], [ -122.680778695999962, 49.220773410000092 ], [ -122.680808117999973, 49.218038807 ], [ -122.68082801099996, 49.217184314000107 ], [ -122.683793182999949, 49.217185406000084 ], [ -122.68715787, 49.217165477000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "373638083", "BldgCostT": "244522348", "sL_LossRatio": "0.723947940554546", "sL_AssetLoss": "3021930", "sL_BldgLoss": "2187720", "sL_StrLoss": "981780", "sL_NStrLoss": "1205940", "sL_ContLoss": "834210", "geom_point": "0101000020E6100000C09017CAF0C85EC0CA4D16EFAEA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138110027999957, 49.285584803000063 ], [ -123.138670602999966, 49.285223100000046 ], [ -123.140236417, 49.286241802000106 ], [ -123.140346924999946, 49.286313484000082 ], [ -123.141822312999963, 49.287270101000118 ], [ -123.14136107899995, 49.287572193000059 ], [ -123.14077388699998, 49.287956597000083 ], [ -123.139321795999948, 49.287031798000051 ], [ -123.139176499999962, 49.286981199000138 ], [ -123.139093417999945, 49.286900578000022 ], [ -123.137571197999975, 49.285932491000068 ], [ -123.138110027999957, 49.285584803000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "526277148", "BldgCostT": "348179747", "sL_LossRatio": "0.791483396513307", "sL_AssetLoss": "3041048", "sL_BldgLoss": "2406939", "sL_StrLoss": "1116790", "sL_NStrLoss": "1290149", "sL_ContLoss": "634109", "geom_point": "0101000020E6100000DE15860AC6C85EC0419550B0B5A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.135888413999922, 49.285497719000062 ], [ -123.136379607999956, 49.28515339800007 ], [ -123.137571197999975, 49.285932491000068 ], [ -123.139093417999945, 49.286900578000022 ], [ -123.139176499999962, 49.286981199000138 ], [ -123.13903789599999, 49.287020708000121 ], [ -123.138679133999972, 49.287258557000023 ], [ -123.138638802999964, 49.28728528800012 ], [ -123.138120792999956, 49.287628688000076 ], [ -123.137547579999989, 49.288010849000088 ], [ -123.137065703999951, 49.288332100000041 ], [ -123.135466476999937, 49.287297094000039 ], [ -123.135984591999943, 49.286965582000057 ], [ -123.136536885999959, 49.286612202000114 ], [ -123.135376910999952, 49.285856297000073 ], [ -123.135872071999984, 49.28550919000002 ], [ -123.135888413999922, 49.285497719000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5076667", "BldgCostT": "3291667", "sL_LossRatio": "0.664144779263208", "sL_AssetLoss": "46526", "sL_BldgLoss": "30900", "sL_StrLoss": "12620", "sL_NStrLoss": "18280", "sL_ContLoss": "15626", "geom_point": "0101000020E6100000E9354599F0B85EC0098BE5F18FA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.886316497999957, 49.324405554000137 ], [ -122.886418350999961, 49.322890279000035 ], [ -122.891870127999979, 49.323047243000119 ], [ -122.892045761999896, 49.320429508000082 ], [ -122.894085675999932, 49.320488169000065 ], [ -122.894687708999982, 49.321020299000075 ], [ -122.895017790999987, 49.321841295000134 ], [ -122.895019142999971, 49.32201204200004 ], [ -122.895021704, 49.322336899000049 ], [ -122.895129203999929, 49.322621897000012 ], [ -122.895332393, 49.322791709000072 ], [ -122.895628419999966, 49.32294137800006 ], [ -122.895276162999934, 49.323186983000014 ], [ -122.895100133999932, 49.32337601100005 ], [ -122.894712246, 49.32384971000004 ], [ -122.894676465999936, 49.32393279000005 ], [ -122.894551031999981, 49.324292984000103 ], [ -122.894385700000015, 49.324467757000043 ], [ -122.894277197999884, 49.324691801000128 ], [ -122.894249963999968, 49.32482986300009 ], [ -122.893990095, 49.325290894000084 ], [ -122.893698846999968, 49.32545394800006 ], [ -122.891770188999942, 49.325398487000051 ], [ -122.891862192999923, 49.32402735100014 ], [ -122.891844991999946, 49.324026856000046 ], [ -122.891669332999953, 49.326644577000096 ], [ -122.88982298699996, 49.326591450000194 ], [ -122.889721236999961, 49.328106721000069 ], [ -122.884228351, 49.327948480000074 ], [ -122.884470246999953, 49.324352336000096 ], [ -122.886316497999957, 49.324405554000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9641250", "BldgCostT": "5175000", "sL_LossRatio": "0.781594803975272", "sL_AssetLoss": "12779", "sL_BldgLoss": "9988", "sL_StrLoss": "4740", "sL_NStrLoss": "5248", "sL_ContLoss": "2791", "geom_point": "0101000020E6100000F25597F848BB5EC0AE5FF23788A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.925282284, 49.306890678000116 ], [ -122.928294437999952, 49.30697638200013 ], [ -122.927982693999951, 49.307783316000034 ], [ -122.927954986999964, 49.308304896000088 ], [ -122.928352702999945, 49.308943999000107 ], [ -122.928185705999979, 49.309492385000034 ], [ -122.927622295999967, 49.309977997000054 ], [ -122.927580314999958, 49.310247597000043 ], [ -122.927638744999911, 49.310499081000067 ], [ -122.926160502999963, 49.310522341000144 ], [ -122.923109956999966, 49.310549807000122 ], [ -122.923142890999927, 49.31005383400003 ], [ -122.924792267999976, 49.310100804000044 ], [ -122.924905213999949, 49.308398872000083 ], [ -122.924970284999986, 49.308400725000098 ], [ -122.924990626999914, 49.308094173000015 ], [ -122.925202029000019, 49.308100192000026 ], [ -122.925282284, 49.306890678000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5804834", "BldgCostT": "4003334", "sL_LossRatio": "0.852758102597124", "sL_AssetLoss": "27954", "sL_BldgLoss": "23838", "sL_StrLoss": "15820", "sL_NStrLoss": "8018", "sL_ContLoss": "4116", "geom_point": "0101000020E6100000A0125B6A12BB5EC0C59CD2874FA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926262039999941, 49.306423150000079 ], [ -122.92647193, 49.303258556000117 ], [ -122.924418871999976, 49.30320011000002 ], [ -122.924456713999916, 49.302629881000023 ], [ -122.924046593999918, 49.302618201000037 ], [ -122.924150098999959, 49.301058653000062 ], [ -122.922419933999919, 49.301009362000045 ], [ -122.922478599999977, 49.30012586600003 ], [ -122.921382949999938, 49.30009463699999 ], [ -122.921440446999966, 49.299229028000077 ], [ -122.918899915999958, 49.299156573000062 ], [ -122.91897226599994, 49.298068208000061 ], [ -122.917852346999936, 49.298036249000077 ], [ -122.917947848999972, 49.296600041000048 ], [ -122.91665809399997, 49.296563221000063 ], [ -122.916878193999977, 49.293254257000079 ], [ -122.916932202999959, 49.293266793000051 ], [ -122.917289990999933, 49.29315909300005 ], [ -122.91778609, 49.29314141100015 ], [ -122.918501282, 49.293240901000047 ], [ -122.920287810999966, 49.29389878900006 ], [ -122.920740810999959, 49.294348906000053 ], [ -122.920876896999943, 49.294627797000054 ], [ -122.921096983999931, 49.295428491000038 ], [ -122.921589409999967, 49.296580100000085 ], [ -122.921890809999979, 49.29695830600005 ], [ -122.922688993999884, 49.297543499000028 ], [ -122.923650490999947, 49.297660896000089 ], [ -122.924256198999956, 49.298012288000066 ], [ -122.924765187999967, 49.298138610000116 ], [ -122.92539738499994, 49.297779107000117 ], [ -122.926305978999935, 49.297554693000095 ], [ -122.927363612999926, 49.297987091000067 ], [ -122.927170907999979, 49.298274886000051 ], [ -122.92666290499993, 49.298445408000084 ], [ -122.926083789999964, 49.298832 ], [ -122.925931411999898, 49.299290508000041 ], [ -122.926027091999984, 49.29992041000002 ], [ -122.926315216999953, 49.30019029900005 ], [ -122.927044504999955, 49.30059560300009 ], [ -122.92759421599996, 49.301171694000054 ], [ -122.927825785999957, 49.301981391000034 ], [ -122.928415617999974, 49.302989097000086 ], [ -122.928662305000017, 49.303753887000013 ], [ -122.929157511999961, 49.304140895000074 ], [ -122.929239692999943, 49.30448281200011 ], [ -122.929017996999974, 49.305598214000014 ], [ -122.928499809999934, 49.306486809000063 ], [ -122.926262039999941, 49.306423150000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28004977", "BldgCostT": "18429856", "sL_LossRatio": "0.731955423091875", "sL_AssetLoss": "308680", "sL_BldgLoss": "225940", "sL_StrLoss": "108500", "sL_NStrLoss": "117440", "sL_ContLoss": "82740", "geom_point": "0101000020E6100000818BB20A5DB85EC0B7F7BA560CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885428643, 49.315858043000098 ], [ -122.885531049999926, 49.31433465900006 ], [ -122.88463941, 49.31433377200004 ], [ -122.884639876999955, 49.314134175000035 ], [ -122.884640040999955, 49.314063919000084 ], [ -122.882989005999931, 49.314062260000078 ], [ -122.882990284999948, 49.313522553000041 ], [ -122.882164775999954, 49.313521714000039 ], [ -122.88216542, 49.313251862000101 ], [ -122.880927163999928, 49.31325059200006 ], [ -122.880929764999934, 49.312171180000043 ], [ -122.880517023, 49.312170753000025 ], [ -122.880518327999965, 49.311631047000041 ], [ -122.880105588999953, 49.311630619 ], [ -122.880109643999944, 49.309960178000061 ], [ -122.878039437999959, 49.309900362000064 ], [ -122.878195713999943, 49.307580812000062 ], [ -122.878051889999981, 49.307580661000053 ], [ -122.878052184999888, 49.30746067800002 ], [ -122.877561542999985, 49.30744649600009 ], [ -122.877554178999958, 49.307555773000061 ], [ -122.873510884000012, 49.307438810000072 ], [ -122.873487366999967, 49.306054494000151 ], [ -122.87348320299999, 49.305785347000025 ], [ -122.871133584999953, 49.30575676900002 ], [ -122.871151313999974, 49.305494185000029 ], [ -122.871047850999986, 49.305491189000044 ], [ -122.871115058999976, 49.304495804000076 ], [ -122.869960973999923, 49.304462362000081 ], [ -122.869962650999966, 49.304437538000073 ], [ -122.86707067499999, 49.30435368600007 ], [ -122.867162638999957, 49.302993321000031 ], [ -122.865592105999937, 49.302947751000019 ], [ -122.865605734999974, 49.302746235000029 ], [ -122.86497869699997, 49.302728035000065 ], [ -122.865021475, 49.302095650000091 ], [ -122.864860325, 49.302090973000126 ], [ -122.86485937499998, 49.302438756000043 ], [ -122.864746391999986, 49.302438623000114 ], [ -122.864763268000019, 49.301706614000068 ], [ -122.86483489699998, 49.301596006000111 ], [ -122.864825383999957, 49.301228196000082 ], [ -122.864834010999985, 49.300348306000046 ], [ -122.864676286999924, 49.300078002000049 ], [ -122.864739538999928, 49.299984852000108 ], [ -122.864841218999942, 49.299835097 ], [ -122.864850285000017, 49.299192091000094 ], [ -122.864899273999981, 49.298687544000103 ], [ -122.864904793999969, 49.298630702000047 ], [ -122.864851676999976, 49.298495071000083 ], [ -122.864826295999961, 49.298430194000062 ], [ -122.864725279000012, 49.298305926000133 ], [ -122.864697872999983, 49.297852602000034 ], [ -122.864708540999942, 49.297681938000082 ], [ -122.864710402999933, 49.297650487000112 ], [ -122.865181408999931, 49.297967385000057 ], [ -122.866006117999959, 49.298328002000083 ], [ -122.86623939299993, 49.29828329700004 ], [ -122.866255075999931, 49.297923695000073 ], [ -122.866503621999968, 49.297527999000117 ], [ -122.866523321999978, 49.297515767000057 ], [ -122.866523211999933, 49.297556421000088 ], [ -122.867488207999912, 49.297584419000067 ], [ -122.868104871999961, 49.297585124000122 ], [ -122.868263194999926, 49.297737009000095 ], [ -122.868455498999964, 49.297791295000081 ], [ -122.868768694999986, 49.298727110000108 ], [ -122.869441915999943, 49.299447596000036 ], [ -122.869619693999965, 49.299996312000054 ], [ -122.870235116999964, 49.300707501000026 ], [ -122.871087184999951, 49.301554202000069 ], [ -122.871924502999903, 49.301788995000031 ], [ -122.871966604999955, 49.301716994000053 ], [ -122.872228509999928, 49.301708289000082 ], [ -122.87266880199995, 49.301475013000065 ], [ -122.873108601999931, 49.301376598000097 ], [ -122.873810893999973, 49.301566111000092 ], [ -122.874168300999941, 49.301566590000043 ], [ -122.874746594999962, 49.301378405 ], [ -122.87504740299994, 49.301810485000054 ], [ -122.87523901499992, 49.301900494000073 ], [ -122.875831001999956, 49.301865194000115 ], [ -122.876189892999946, 49.301640788000022 ], [ -122.876918006999986, 49.30167740400006 ], [ -122.877441619999956, 49.301381201000069 ], [ -122.877827792999966, 49.301030907000083 ], [ -122.877898215999963, 49.300599096000028 ], [ -122.879068109999935, 49.300429397000109 ], [ -122.881460480999948, 49.300764795000106 ], [ -122.881528903999978, 49.30038699600005 ], [ -122.88178335, 49.300428292000035 ], [ -122.881783014999897, 49.300568325 ], [ -122.882252328, 49.300568804000093 ], [ -122.882276602999923, 49.30050834200005 ], [ -122.88258818599995, 49.300558908 ], [ -122.882532105999957, 49.300855688000091 ], [ -122.883343201999963, 49.300883590000048 ], [ -122.884017302999965, 49.30110919800007 ], [ -122.884870497999941, 49.301074101000047 ], [ -122.885958601999903, 49.300715288000092 ], [ -122.886593214999934, 49.299609603000107 ], [ -122.88689570199989, 49.299276800000044 ], [ -122.887323400999946, 49.299178512000069 ], [ -122.889165701, 49.299054291000104 ], [ -122.889814202999986, 49.298740191000064 ], [ -122.890089903999979, 49.298344486000119 ], [ -122.89069488, 49.298012198000045 ], [ -122.894182954000016, 49.29679433200009 ], [ -122.894164333999981, 49.297072219000079 ], [ -122.894995143999964, 49.297072977 ], [ -122.894992850999955, 49.298152393000073 ], [ -122.894580223999967, 49.298152017000049 ], [ -122.894579072999989, 49.298691726000108 ], [ -122.894166442999989, 49.298691349000102 ], [ -122.89416470899998, 49.299500911000081 ], [ -122.894001591999981, 49.299500761000054 ], [ -122.893998192999973, 49.299551497000067 ], [ -122.893751978, 49.299544415000085 ], [ -122.89375033099995, 49.300310093000107 ], [ -122.893337688000017, 49.300309713000068 ], [ -122.893337104999929, 49.300579567000078 ], [ -122.892924458999943, 49.300579186000043 ], [ -122.892923873999962, 49.300849040000173 ], [ -122.891612101999939, 49.300847818000072 ], [ -122.891574499999948, 49.301408450000103 ], [ -122.891120243999978, 49.301395374000016 ], [ -122.891117982999944, 49.301429062000068 ], [ -122.890225120999972, 49.301403354000122 ], [ -122.890198468000037, 49.301800582000041 ], [ -122.888149749999982, 49.301741569000114 ], [ -122.887963781999972, 49.304511036000051 ], [ -122.887963529999979, 49.304622298000076 ], [ -122.888376210000018, 49.304622697000077 ], [ -122.888375599999918, 49.304892552000076 ], [ -122.888788281999965, 49.304892948000017 ], [ -122.888787674999918, 49.305162802000083 ], [ -122.889200358000011, 49.305163199000084 ], [ -122.889199752999943, 49.305433052000076 ], [ -122.889612439999951, 49.30543344700002 ], [ -122.889610029, 49.306512862000062 ], [ -122.890022724999966, 49.30651325500002 ], [ -122.890020922999966, 49.307322816000045 ], [ -122.889608219999957, 49.307322423000087 ], [ -122.889607616999939, 49.307592276000051 ], [ -122.88919491299994, 49.307591882000096 ], [ -122.889194307999958, 49.30786173399999 ], [ -122.887956185999926, 49.307860541000124 ], [ -122.887955575999953, 49.30813039500007 ], [ -122.887394612999969, 49.308129850000029 ], [ -122.887331961999948, 49.309062532000105 ], [ -122.886814441999917, 49.309047617000026 ], [ -122.88680185, 49.30923504400004 ], [ -122.885476842999978, 49.30919684600012 ], [ -122.885476817999972, 49.309207381000057 ], [ -122.883587562999963, 49.309205494000025 ], [ -122.883530164999954, 49.310058921000135 ], [ -122.882998522999912, 49.310043581000066 ], [ -122.882997313999937, 49.310554167000049 ], [ -122.88341004499992, 49.310554584000094 ], [ -122.883408769999903, 49.311094291000067 ], [ -122.883821504, 49.311094707000059 ], [ -122.883820868999962, 49.311364560000108 ], [ -122.885471813999985, 49.311366209000056 ], [ -122.885469937000025, 49.312175767000078 ], [ -122.884644451999961, 49.312174946000013 ], [ -122.884643190999938, 49.31271465300005 ], [ -122.885055937999951, 49.312715065000049 ], [ -122.88505531, 49.312984918000083 ], [ -122.885621740999937, 49.312985480000037 ], [ -122.885670382999947, 49.312261831000072 ], [ -122.891161414999942, 49.312420001000085 ], [ -122.891058070999975, 49.313960153000117 ], [ -122.891046938999978, 49.313962445000108 ], [ -122.890035520999945, 49.314130589000101 ], [ -122.890060011999978, 49.314140410000071 ], [ -122.889947912999929, 49.314266695000065 ], [ -122.890017533000034, 49.314406998000038 ], [ -122.89005089599999, 49.314474186000048 ], [ -122.890082408999945, 49.314763299000042 ], [ -122.890059293999954, 49.314884870000071 ], [ -122.890001491999925, 49.315188888000115 ], [ -122.889725994999964, 49.315981852000078 ], [ -122.885428643, 49.315858043000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.809808033553799", "sL_AssetLoss": "12398", "sL_BldgLoss": "10040", "sL_StrLoss": "5810", "sL_NStrLoss": "4230", "sL_ContLoss": "2358", "geom_point": "0101000020E6100000356C295A58B95EC038C347A306AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89679372399999, 49.328415943000074 ], [ -122.896967946999965, 49.325815444000071 ], [ -122.900061389, 49.326132401000066 ], [ -122.900952968999917, 49.326422339000032 ], [ -122.900912302999927, 49.326473107000027 ], [ -122.899602510999941, 49.32754230000004 ], [ -122.898832581999955, 49.327892603000045 ], [ -122.898160071999882, 49.328472173000129 ], [ -122.897820822999961, 49.328462435000127 ], [ -122.897799348999939, 49.328783037000079 ], [ -122.897164417999946, 49.3293301960001 ], [ -122.896281705, 49.329824202000033 ], [ -122.895876919, 49.330172174000054 ], [ -122.894692476999964, 49.330171455000063 ], [ -122.89049864799992, 49.330168803000042 ], [ -122.890502575999975, 49.330110298000093 ], [ -122.890712846000014, 49.330116348000026 ], [ -122.890739487999923, 49.329719502000088 ], [ -122.89164588499996, 49.329745577000068 ], [ -122.891700093999958, 49.328937824 ], [ -122.892047881999943, 49.328947827000043 ], [ -122.892069495999976, 49.328625733000123 ], [ -122.892305864999983, 49.328632530000078 ], [ -122.892329005999969, 49.328287637000109 ], [ -122.89679372399999, 49.328415943000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.826345685691101", "sL_AssetLoss": "7394", "sL_BldgLoss": "6110", "sL_StrLoss": "3620", "sL_NStrLoss": "2490", "sL_ContLoss": "1284", "geom_point": "0101000020E61000008D6B118B37B85EC021448D9D4BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.877659259999959, 49.313339504000076 ], [ -122.876047926999917, 49.313258528000098 ], [ -122.875059785999966, 49.31337478000011 ], [ -122.875096677999977, 49.312827776000098 ], [ -122.876153720999937, 49.312858349000074 ], [ -122.880587740999957, 49.312986483000088 ], [ -122.880498600999928, 49.314310459000069 ], [ -122.880345602999924, 49.316582681000071 ], [ -122.87485411599999, 49.316423962000087 ], [ -122.874902489999926, 49.315706832000089 ], [ -122.876385186000036, 49.315674298000019 ], [ -122.877667134999967, 49.315599135000049 ], [ -122.877775193999966, 49.314618550000013 ], [ -122.877815893999951, 49.314312231000052 ], [ -122.877659259999959, 49.313339504000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.846607669616519", "sL_AssetLoss": "2712", "sL_BldgLoss": "2296", "sL_StrLoss": "1540", "sL_NStrLoss": "756", "sL_ContLoss": "416", "geom_point": "0101000020E6100000946976D56ABA5EC068989836B5A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911985959999967, 49.294218337000082 ], [ -122.912076650999936, 49.293374756000055 ], [ -122.91246289899999, 49.293335301000084 ], [ -122.913329420999972, 49.293587799000093 ], [ -122.913988709999941, 49.293624386000069 ], [ -122.914348318999899, 49.293599261000061 ], [ -122.914217486, 49.295564617000061 ], [ -122.913559766999967, 49.295545819000033 ], [ -122.913558958999914, 49.295557933000097 ], [ -122.910929212999989, 49.295482735000149 ], [ -122.911087066999954, 49.2942084170001 ], [ -122.911985959999967, 49.294218337000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.881818181818182", "sL_AssetLoss": "2420", "sL_BldgLoss": "2134", "sL_StrLoss": "1390", "sL_NStrLoss": "744", "sL_ContLoss": "286", "geom_point": "0101000020E61000006D3F11723BB95EC0A9A04731E5A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.89496245399999, 49.312454639000094 ], [ -122.894963027999921, 49.312184785000035 ], [ -122.893724798, 49.312183653000027 ], [ -122.893725379, 49.311913800000099 ], [ -122.892074413999921, 49.311912270000093 ], [ -122.892076182999958, 49.311102710000114 ], [ -122.895378055999956, 49.311105746000052 ], [ -122.89537748399999, 49.311375599000066 ], [ -122.895790220999928, 49.311375972000071 ], [ -122.895789651999948, 49.311645825000085 ], [ -122.89620239, 49.31164619700013 ], [ -122.896200690999962, 49.312455757000073 ], [ -122.89496245399999, 49.312454639000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76864561", "BldgCostT": "52413190", "sL_LossRatio": "0.839351221650555", "sL_AssetLoss": "433430", "sL_BldgLoss": "363800", "sL_StrLoss": "159430", "sL_NStrLoss": "204370", "sL_ContLoss": "69630", "geom_point": "0101000020E6100000C8D15E750BB95EC08B5221A241A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.890172399999955, 49.291939991000028 ], [ -122.889570998999929, 49.291695629000088 ], [ -122.88966384099993, 49.29031193700007 ], [ -122.89005339699996, 49.290359615000042 ], [ -122.89087201699999, 49.290390392000063 ], [ -122.891675500999952, 49.290361288000106 ], [ -122.892285217999969, 49.290288696000118 ], [ -122.892997480999952, 49.290163308000096 ], [ -122.893732175999929, 49.289970093000079 ], [ -122.89400411299999, 49.289879795000019 ], [ -122.894311459999969, 49.289777728000089 ], [ -122.894139183999968, 49.289990835000062 ], [ -122.89386939699996, 49.290075061000024 ], [ -122.893534870999986, 49.290179509000104 ], [ -122.893167451999915, 49.290371652000026 ], [ -122.892884614999957, 49.290580438000063 ], [ -122.892884427999959, 49.290580591000015 ], [ -122.892676254999941, 49.290743582000083 ], [ -122.892473504999941, 49.291051601000099 ], [ -122.892462146999918, 49.291243883000043 ], [ -122.892448289999919, 49.291460849000075 ], [ -122.892503064999971, 49.29149276200004 ], [ -122.893173334999986, 49.291946783000071 ], [ -122.892648021999946, 49.291978399000072 ], [ -122.891177488999958, 49.291841994000087 ], [ -122.890172399999955, 49.291939991000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168316446", "BldgCostT": "95942299", "sL_LossRatio": "0.608938797212537", "sL_AssetLoss": "4250460", "sL_BldgLoss": "2588270", "sL_StrLoss": "912290", "sL_NStrLoss": "1675980", "sL_ContLoss": "1662190", "geom_point": "0101000020E6100000168AF9C152B75EC0871C6D4530A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.871491172, 49.291210734000082 ], [ -122.871491427999928, 49.291112426000041 ], [ -122.871188516999979, 49.291112089000087 ], [ -122.870852598999974, 49.291002601000088 ], [ -122.870666771999979, 49.290928630000025 ], [ -122.870666998, 49.290841650000111 ], [ -122.87044765, 49.29084140500003 ], [ -122.870254636, 49.290764572000057 ], [ -122.870255141999962, 49.290571335000024 ], [ -122.869842579999954, 49.290570870000103 ], [ -122.869843291, 49.29030101700004 ], [ -122.869018169999961, 49.290300085000077 ], [ -122.86901888599999, 49.290030230000099 ], [ -122.868193769999948, 49.290029292000035 ], [ -122.868195207, 49.289489584000101 ], [ -122.867482316999912, 49.289488768000055 ], [ -122.867370341999901, 49.289399169000099 ], [ -122.867371549999959, 49.288948932000061 ], [ -122.866958999999895, 49.288948457000082 ], [ -122.866960409999962, 49.288424654000032 ], [ -122.866122093999977, 49.288400323000097 ], [ -122.865634714999942, 49.28801030800004 ], [ -122.865538309, 49.287911203000128 ], [ -122.865827614999915, 49.287749603000066 ], [ -122.865401901999931, 49.287488292000035 ], [ -122.865224896999933, 49.287209304000044 ], [ -122.862020251999965, 49.284701629000068 ], [ -122.862020466000033, 49.284624984000075 ], [ -122.861922161999985, 49.284624866000065 ], [ -122.861608637999893, 49.284379509000104 ], [ -122.861608709, 49.284354636000039 ], [ -122.861576806999921, 49.284354598000071 ], [ -122.861197031999936, 49.284057387000118 ], [ -122.861199226999929, 49.283274724000094 ], [ -122.861611728999947, 49.283275218000064 ], [ -122.861612484999966, 49.283005364000054 ], [ -122.861199985999946, 49.283004870000127 ], [ -122.86120074199998, 49.282735015000128 ], [ -122.86037575, 49.282734021000081 ], [ -122.860377859, 49.281986331000084 ], [ -122.862518485999956, 49.281395094000061 ], [ -122.862202017999948, 49.281196694000144 ], [ -122.861542991999954, 49.280881093000076 ], [ -122.861460613999938, 49.280728090000096 ], [ -122.861516116999923, 49.280593502000045 ], [ -122.862053197999956, 49.28017131100011 ], [ -122.861669115, 49.279855805000068 ], [ -122.859568807999935, 49.279106698000071 ], [ -122.858428079999968, 49.278952498000102 ], [ -122.85811137899999, 49.279239997000062 ], [ -122.858329308999913, 49.279599889000089 ], [ -122.858192195999948, 49.27979768700007 ], [ -122.858341788999923, 49.280328511000064 ], [ -122.858346064, 49.280666216000071 ], [ -122.858319185999946, 49.280665434000063 ], [ -122.858318676999929, 49.280842530000015 ], [ -122.857493715999965, 49.280841515000049 ], [ -122.85749293799995, 49.281111369000065 ], [ -122.854609424, 49.281107777000102 ], [ -122.854600562999977, 49.281238405000053 ], [ -122.85430038, 49.281229658000058 ], [ -122.854146391999933, 49.281034016 ], [ -122.854078803999954, 49.280485286000058 ], [ -122.853679712999934, 49.28046670600002 ], [ -122.853613090999929, 49.281209626000127 ], [ -122.853028521999988, 49.281192585000056 ], [ -122.852647112999975, 49.280771291000086 ], [ -122.851410511000026, 49.280562686000067 ], [ -122.851507896999919, 49.280140087000063 ], [ -122.851109308999966, 49.280139803000047 ], [ -122.851012984999969, 49.280292304000085 ], [ -122.850941195999951, 49.281299795000088 ], [ -122.850775999999883, 49.281632503000075 ], [ -122.850554386999988, 49.281883890000053 ], [ -122.85001839, 49.281883193000077 ], [ -122.849729401, 49.281837908000085 ], [ -122.849360107999985, 49.281558491000091 ], [ -122.848659814999976, 49.281269794000103 ], [ -122.848481185999944, 49.280990694000053 ], [ -122.848426513999954, 49.280657992000059 ], [ -122.848124396999964, 49.280450699000085 ], [ -122.846655717999965, 49.280016802000091 ], [ -122.845459909999974, 49.279916203 ], [ -122.84514046, 49.280068215 ], [ -122.845506584999939, 49.278852863000118 ], [ -122.845523364999949, 49.279396780000063 ], [ -122.846409084999934, 49.279545856000084 ], [ -122.846603005999896, 49.279555668000079 ], [ -122.847799194999979, 49.279345509000095 ], [ -122.850337188999958, 49.280063700000049 ], [ -122.852280677999929, 49.279639297000053 ], [ -122.852483702999947, 49.27956419 ], [ -122.852546100999916, 49.279515498000144 ], [ -122.852565205999909, 49.279435916000047 ], [ -122.85240689699999, 49.278872798000059 ], [ -122.852716503999929, 49.278872742000011 ], [ -122.852771524, 49.278872735000014 ], [ -122.854207081999959, 49.278872534000115 ], [ -122.85434490599998, 49.278872494000019 ], [ -122.85451328399995, 49.278841405000023 ], [ -122.854617707999978, 49.278761496000079 ], [ -122.854648609999956, 49.278717695000061 ], [ -122.854803184, 49.278498488000068 ], [ -122.854630593999943, 49.27776109600012 ], [ -122.856583797, 49.277778310000045 ], [ -122.856590490999977, 49.277274 ], [ -122.85662059899991, 49.27672900600006 ], [ -122.856623815, 49.276134489000086 ], [ -122.856618694999895, 49.275642512000069 ], [ -122.857901116, 49.275636863000074 ], [ -122.858447246999944, 49.27563447000005 ], [ -122.858619218999962, 49.276136801000135 ], [ -122.861731005, 49.276112886000121 ], [ -122.864203980999932, 49.27608481000005 ], [ -122.866129602999962, 49.276042505000099 ], [ -122.866761355999927, 49.276129943000079 ], [ -122.866773704999943, 49.276639538000026 ], [ -122.866792206999946, 49.276874299000127 ], [ -122.86672411799999, 49.277007440000048 ], [ -122.866730914999948, 49.277063937000037 ], [ -122.86674167699999, 49.27715366500005 ], [ -122.866807451999961, 49.277701756000056 ], [ -122.866808516, 49.27771075800004 ], [ -122.866814707999978, 49.278107316000053 ], [ -122.866796589999964, 49.278261286000031 ], [ -122.866786060999942, 49.278351036000061 ], [ -122.866704879999972, 49.279041018000044 ], [ -122.866685503999975, 49.279571980000171 ], [ -122.866665914999913, 49.280371383000116 ], [ -122.866741856999951, 49.281941778000018 ], [ -122.86676622499999, 49.282445295000045 ], [ -122.86686538, 49.283215700000085 ], [ -122.867058436999926, 49.284672477000086 ], [ -122.867197698999945, 49.285723411000056 ], [ -122.867388202999962, 49.286300989000061 ], [ -122.867505500999926, 49.286660203000075 ], [ -122.867753899999968, 49.287093508000105 ], [ -122.868381009999965, 49.2878836800001 ], [ -122.86897400399999, 49.288466704000037 ], [ -122.869620291999965, 49.288933100000051 ], [ -122.87049048399993, 49.289442108000031 ], [ -122.87217939, 49.290225192000065 ], [ -122.872925002999978, 49.290544988000072 ], [ -122.873833894999933, 49.290868596000109 ], [ -122.874689978999953, 49.291078003000102 ], [ -122.875625094999975, 49.291217701000058 ], [ -122.87632941, 49.291272292000087 ], [ -122.876524408999927, 49.291272318000075 ], [ -122.877536352000021, 49.291272495000023 ], [ -122.87755019599993, 49.291272496000012 ], [ -122.87868568099999, 49.291152203000102 ], [ -122.879965098999961, 49.290873910000116 ], [ -122.88167518599991, 49.290385507000103 ], [ -122.882160182999939, 49.290267109000055 ], [ -122.883158397999964, 49.290101296000039 ], [ -122.885451801999963, 49.289974700000045 ], [ -122.886391136999976, 49.28997920900008 ], [ -122.886344896999944, 49.290667648000117 ], [ -122.886344459999975, 49.290858133000029 ], [ -122.888407284999985, 49.290860143000046 ], [ -122.888406674999956, 49.291129998000024 ], [ -122.88881924399999, 49.291130396000014 ], [ -122.888818182999955, 49.291601761000059 ], [ -122.887779300999952, 49.291775885000035 ], [ -122.887697913999929, 49.291632004000107 ], [ -122.887340307999935, 49.291505701000034 ], [ -122.886351303999973, 49.291441711000068 ], [ -122.885745586999931, 49.291198189000056 ], [ -122.884962108999986, 49.291170486000034 ], [ -122.884672792999979, 49.291179092000071 ], [ -122.884094294999954, 49.291655300000038 ], [ -122.883778708999898, 49.291798984000131 ], [ -122.880242681, 49.291840196000116 ], [ -122.877807987999972, 49.292089601000107 ], [ -122.873504684999986, 49.292192794000158 ], [ -122.873215811999913, 49.292093591000054 ], [ -122.872762814999987, 49.291625189000058 ], [ -122.871491172, 49.291210734000082 ] ], [ [ -122.864907690999985, 49.284761688000096 ], [ -122.86491043200003, 49.283758144000089 ], [ -122.863260537999963, 49.283710215000056 ], [ -122.863257761999961, 49.284713758000095 ], [ -122.864907690999985, 49.284761688000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1134875929", "BldgCostT": "768058027", "sL_LossRatio": "0.78123249188022", "sL_AssetLoss": "10031060", "sL_BldgLoss": "7836590", "sL_StrLoss": "3579230", "sL_NStrLoss": "4257360", "sL_ContLoss": "2194470", "geom_point": "0101000020E61000001CAB4A114FB55EC0C38886BDB7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82729209799993, 49.277937442000116 ], [ -122.827455427999922, 49.277358476000124 ], [ -122.828007900999978, 49.277103191000045 ], [ -122.82817474899997, 49.277026095000103 ], [ -122.828366978999966, 49.276937271000115 ], [ -122.828801637999945, 49.276981509000031 ], [ -122.829808629999945, 49.277219817000059 ], [ -122.829949854999967, 49.277491976000128 ], [ -122.830371443999951, 49.277277486000045 ], [ -122.833464952999975, 49.277711927000063 ], [ -122.834770578999922, 49.277895249000075 ], [ -122.835813942999906, 49.27798709000006 ], [ -122.838988326999981, 49.278081690000064 ], [ -122.841351188999951, 49.278107577000078 ], [ -122.84134533199996, 49.278156836000079 ], [ -122.841356091999941, 49.278270704000072 ], [ -122.84135287499997, 49.278821909000058 ], [ -122.841063476999977, 49.278826947000042 ], [ -122.840331794999955, 49.278839756000139 ], [ -122.840166585999967, 49.278884476000023 ], [ -122.839807975, 49.278902806000104 ], [ -122.83953950899992, 49.27896970400009 ], [ -122.839211002999946, 49.279110534000054 ], [ -122.838860826999948, 49.279348031000055 ], [ -122.838057809999924, 49.280199253000106 ], [ -122.837896356999948, 49.28030584000004 ], [ -122.837689357, 49.280442491000073 ], [ -122.837261300999955, 49.280592125000062 ], [ -122.836747675999959, 49.280666254000053 ], [ -122.835054234999944, 49.280634292000059 ], [ -122.83321147, 49.280599482000106 ], [ -122.83195308099998, 49.280577748000063 ], [ -122.831345695999985, 49.280567251000043 ], [ -122.83045744899999, 49.280565287000087 ], [ -122.82902311499997, 49.280562104000097 ], [ -122.828777452999987, 49.28058154900004 ], [ -122.828258883999965, 49.280622541000071 ], [ -122.827541434999944, 49.280761807 ], [ -122.827374434, 49.280832577000119 ], [ -122.827341605999976, 49.280769454000087 ], [ -122.827127891999979, 49.280377597000054 ], [ -122.827111111999926, 49.280160900000084 ], [ -122.827052215999984, 49.279916826000097 ], [ -122.827099256999958, 49.279329941000064 ], [ -122.827344086999972, 49.27852364400011 ], [ -122.82726372800002, 49.278142361000079 ], [ -122.82729209799993, 49.277937442000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "541367177", "BldgCostT": "368937069", "sL_LossRatio": "0.798775490433519", "sL_AssetLoss": "5161250", "sL_BldgLoss": "4122680", "sL_StrLoss": "1965680", "sL_NStrLoss": "2157000", "sL_ContLoss": "1038570", "geom_point": "0101000020E6100000629490DD7FB55EC031E055A47CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833464952999975, 49.277711927000063 ], [ -122.830371443999951, 49.277277486000045 ], [ -122.829949854999967, 49.277491976000128 ], [ -122.829808629999945, 49.277219817000059 ], [ -122.828801637999945, 49.276981509000031 ], [ -122.828366978999966, 49.276937271000115 ], [ -122.828450437999962, 49.276898713000044 ], [ -122.828684134999889, 49.276790728 ], [ -122.829033657999929, 49.276629219000036 ], [ -122.829369263999979, 49.276504827000068 ], [ -122.829831838999979, 49.276453553000053 ], [ -122.830673936999972, 49.276499902000133 ], [ -122.83229049, 49.276625668000079 ], [ -122.832738285999966, 49.276660507000038 ], [ -122.83298767099997, 49.276631780000052 ], [ -122.833378638999989, 49.276662175000126 ], [ -122.834844048999969, 49.27667814200008 ], [ -122.837043982999916, 49.276664306000107 ], [ -122.838262640999972, 49.27664592100006 ], [ -122.840150632999979, 49.276617416000121 ], [ -122.841392707999916, 49.276623092000094 ], [ -122.84137611199999, 49.277190190000056 ], [ -122.841375899999946, 49.277899210000101 ], [ -122.841351188999951, 49.278107577000078 ], [ -122.838988326999981, 49.278081690000064 ], [ -122.835813942999906, 49.27798709000006 ], [ -122.834770578999922, 49.277895249000075 ], [ -122.833464952999975, 49.277711927000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "689490853", "BldgCostT": "415613054", "sL_LossRatio": "0.644247729768733", "sL_AssetLoss": "11627670", "sL_BldgLoss": "7491100", "sL_StrLoss": "2836280", "sL_NStrLoss": "4654820", "sL_ContLoss": "4136570", "geom_point": "0101000020E610000054489D463BB65EC0D296227592A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.837689331999954, 49.282434527000092 ], [ -122.837690217000031, 49.282164672000064 ], [ -122.837451802999951, 49.282164338000072 ], [ -122.837410898999948, 49.281623496000122 ], [ -122.837279912999918, 49.281499138000072 ], [ -122.837280388999929, 49.281354530000087 ], [ -122.837035396999966, 49.281354185000041 ], [ -122.836868052999975, 49.281308767000056 ], [ -122.836868792999937, 49.28108409400005 ], [ -122.8368496, 49.281084067000045 ], [ -122.83683488399997, 49.281299764000039 ], [ -122.836531419999943, 49.281217402000024 ], [ -122.836022989999947, 49.2811895070001 ], [ -122.835688858999944, 49.281470722000087 ], [ -122.835299492999951, 49.2810348430001 ], [ -122.835281535000021, 49.281005504000085 ], [ -122.835054234999944, 49.280634292000059 ], [ -122.836747675999959, 49.280666254000053 ], [ -122.837261300999955, 49.280592125000062 ], [ -122.837689357, 49.280442491000073 ], [ -122.837896356999948, 49.28030584000004 ], [ -122.838057809999924, 49.280199253000106 ], [ -122.838860826999948, 49.279348031000055 ], [ -122.839211002999946, 49.279110534000054 ], [ -122.83953950899992, 49.27896970400009 ], [ -122.839807975, 49.278902806000104 ], [ -122.840166585999967, 49.278884476000023 ], [ -122.840331794999955, 49.278839756000139 ], [ -122.841063476999977, 49.278826947000042 ], [ -122.84135287499997, 49.278821909000058 ], [ -122.841356091999941, 49.278270704000072 ], [ -122.84134533199996, 49.278156836000079 ], [ -122.841351188999951, 49.278107577000078 ], [ -122.841375899999946, 49.277899210000101 ], [ -122.84137611199999, 49.277190190000056 ], [ -122.841392707999916, 49.276623092000094 ], [ -122.845378402999984, 49.27664330200006 ], [ -122.845391182999947, 49.276091506000128 ], [ -122.845414695, 49.275604787000127 ], [ -122.847868059999925, 49.275603473000039 ], [ -122.847890761999906, 49.275107771000123 ], [ -122.847905177999976, 49.274632547000095 ], [ -122.847925889999914, 49.274124992000047 ], [ -122.850208557999977, 49.274126810000105 ], [ -122.852494186999976, 49.274143991000116 ], [ -122.852478881999943, 49.274633597000104 ], [ -122.853442387999948, 49.274652709000037 ], [ -122.854049497999981, 49.274665025000068 ], [ -122.854667889999988, 49.274677590000053 ], [ -122.85468042799999, 49.27514189800015 ], [ -122.855716694999941, 49.275157773000089 ], [ -122.855986087999966, 49.275161917000062 ], [ -122.856655452000027, 49.275126388000089 ], [ -122.856618694999895, 49.275642512000069 ], [ -122.856623815, 49.276134489000086 ], [ -122.85662059899991, 49.27672900600006 ], [ -122.856590490999977, 49.277274 ], [ -122.856583797, 49.277778310000045 ], [ -122.854630593999943, 49.27776109600012 ], [ -122.854803184, 49.278498488000068 ], [ -122.854648609999956, 49.278717695000061 ], [ -122.854617707999978, 49.278761496000079 ], [ -122.85451328399995, 49.278841405000023 ], [ -122.85434490599998, 49.278872494000019 ], [ -122.854207081999959, 49.278872534000115 ], [ -122.852771524, 49.278872735000014 ], [ -122.852716503999929, 49.278872742000011 ], [ -122.85240689699999, 49.278872798000059 ], [ -122.852565205999909, 49.279435916000047 ], [ -122.852546100999916, 49.279515498000144 ], [ -122.852483702999947, 49.27956419 ], [ -122.852280677999929, 49.279639297000053 ], [ -122.850337188999958, 49.280063700000049 ], [ -122.847799194999979, 49.279345509000095 ], [ -122.846603005999896, 49.279555668000079 ], [ -122.846409084999934, 49.279545856000084 ], [ -122.845523364999949, 49.279396780000063 ], [ -122.845506584999939, 49.278852863000118 ], [ -122.84514046, 49.280068215 ], [ -122.842952720999946, 49.281109203000071 ], [ -122.842484792999983, 49.281243605000022 ], [ -122.841734818999981, 49.281236494000034 ], [ -122.84173638799993, 49.281213472000047 ], [ -122.841405738999953, 49.281203797000018 ], [ -122.84140564399999, 49.281233371000035 ], [ -122.841399592999949, 49.281233313000058 ], [ -122.84118594099999, 49.281359963000028 ], [ -122.840580267999897, 49.281359129000045 ], [ -122.840579566999949, 49.281576485000059 ], [ -122.840414436999964, 49.28162875600006 ], [ -122.840166910999983, 49.281628414000103 ], [ -122.840166656999941, 49.281707188 ], [ -122.840078481, 49.281735100000063 ], [ -122.838619063999943, 49.282435828000132 ], [ -122.837689331999954, 49.282434527000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "281862167", "BldgCostT": "193321667", "sL_LossRatio": "0.805294469000119", "sL_AssetLoss": "2092750", "sL_BldgLoss": "1685280", "sL_StrLoss": "773190", "sL_NStrLoss": "912090", "sL_ContLoss": "407470", "geom_point": "0101000020E610000082440BB7D9C45EC0A4E42882B0AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075156089999936, 49.335084307000095 ], [ -123.075188485999959, 49.334158398000056 ], [ -123.073606211999959, 49.334136303000065 ], [ -123.073629889999964, 49.333216399000044 ], [ -123.072868001999922, 49.333212008000054 ], [ -123.072150667999978, 49.333284446000079 ], [ -123.072006329, 49.333282339000043 ], [ -123.072003199999955, 49.332443374000036 ], [ -123.072002711999971, 49.332316716000086 ], [ -123.072200653999985, 49.332319386000094 ], [ -123.073563396999987, 49.332331070000059 ], [ -123.0736497, 49.332331561000089 ], [ -123.07367726199999, 49.332331708000041 ], [ -123.075250130999947, 49.332340467000044 ], [ -123.075340501999918, 49.332340967000064 ], [ -123.078338665999951, 49.332357588000072 ], [ -123.078327314999981, 49.333235397000117 ], [ -123.078311894999942, 49.334200489000075 ], [ -123.078301996999954, 49.335120696000082 ], [ -123.075156089999936, 49.335084307000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177885311", "BldgCostT": "119713190", "sL_LossRatio": "0.779263232225458", "sL_AssetLoss": "1260370", "sL_BldgLoss": "982160", "sL_StrLoss": "426490", "sL_NStrLoss": "555670", "sL_ContLoss": "278210", "geom_point": "0101000020E6100000FEA7F2A8BEC45EC004763E34DAAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.0720103029999, 49.335657511000058 ], [ -123.07204533799991, 49.334123714000079 ], [ -123.072060615999959, 49.333468431000021 ], [ -123.072003383999956, 49.333372314000059 ], [ -123.072006329, 49.333282339000043 ], [ -123.072150667999978, 49.333284446000079 ], [ -123.072868001999922, 49.333212008000054 ], [ -123.073629889999964, 49.333216399000044 ], [ -123.073606211999959, 49.334136303000065 ], [ -123.075188485999959, 49.334158398000056 ], [ -123.075156089999936, 49.335084307000095 ], [ -123.078301996999954, 49.335120696000082 ], [ -123.078293483, 49.335647402000134 ], [ -123.077095974999978, 49.33564953700008 ], [ -123.075138091999975, 49.335653010000073 ], [ -123.0720103029999, 49.335657511000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62830833", "BldgCostT": "42363333", "sL_LossRatio": "0.741378568354612", "sL_AssetLoss": "836520", "sL_BldgLoss": "620178", "sL_StrLoss": "276618", "sL_NStrLoss": "343560", "sL_ContLoss": "216342", "geom_point": "0101000020E61000001FBEC8DBFCA55EC08CC181981D9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.590755601999916, 49.228548586000109 ], [ -122.590672909999924, 49.228540492000022 ], [ -122.590318499999952, 49.228542808000022 ], [ -122.590320432999974, 49.228155428000015 ], [ -122.590321289999949, 49.227981505000052 ], [ -122.590321906999975, 49.227281409000035 ], [ -122.590329100999952, 49.226472498000071 ], [ -122.591536809999951, 49.226481783000118 ], [ -122.592660404999918, 49.226476801000032 ], [ -122.59387239599999, 49.226483598000115 ], [ -122.59387157099999, 49.226624994000076 ], [ -122.598346888999927, 49.226677989000059 ], [ -122.598336993999951, 49.227656295000131 ], [ -122.59732730899999, 49.227650824000051 ], [ -122.59385539699997, 49.227631902000049 ], [ -122.593858794999946, 49.227978901000021 ], [ -122.593832391999953, 49.228694498000074 ], [ -122.593831848999955, 49.22874131500005 ], [ -122.593831000999955, 49.228813325000061 ], [ -122.593830671999953, 49.228842474000039 ], [ -122.593826416999946, 49.229206099000066 ], [ -122.593621876999961, 49.229129297000092 ], [ -122.59293217799997, 49.228947093000095 ], [ -122.591491008999981, 49.22862038600001 ], [ -122.590755601999916, 49.228548586000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87959499", "BldgCostT": "60189999", "sL_LossRatio": "0.756791367152151", "sL_AssetLoss": "1171340", "sL_BldgLoss": "886460", "sL_StrLoss": "413010", "sL_NStrLoss": "473450", "sL_ContLoss": "284880", "geom_point": "0101000020E6100000A24A6283A4A55EC073541CA4339D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.585015706999968, 49.229972613000022 ], [ -122.585003007999958, 49.229025102000087 ], [ -122.585022341999903, 49.228343344000045 ], [ -122.585022785999968, 49.228327397000044 ], [ -122.58502887899999, 49.227777992000021 ], [ -122.587643130999979, 49.227773502000012 ], [ -122.588106598999971, 49.22777270299999 ], [ -122.588512298999959, 49.227708006000057 ], [ -122.589350800999952, 49.227415591000089 ], [ -122.588976812999988, 49.226899105000015 ], [ -122.588989989999945, 49.226383195000018 ], [ -122.588973419999917, 49.225675398000085 ], [ -122.58896789, 49.22490919800002 ], [ -122.588985195, 49.224673709000072 ], [ -122.590321078, 49.224675402000109 ], [ -122.590329100999952, 49.226472498000071 ], [ -122.590321906999975, 49.227281409000035 ], [ -122.590321289999949, 49.227981505000052 ], [ -122.590320432999974, 49.228155428000015 ], [ -122.590318499999952, 49.228542808000022 ], [ -122.590320287999987, 49.228767039000097 ], [ -122.590325567999912, 49.229432535000122 ], [ -122.590327600999899, 49.229689292000053 ], [ -122.589853262999924, 49.229785230000076 ], [ -122.589333793999927, 49.229890309000027 ], [ -122.589117085999987, 49.229904202000057 ], [ -122.588144398999972, 49.229854494000101 ], [ -122.587593009999978, 49.229883885000014 ], [ -122.586934104999983, 49.229973889000114 ], [ -122.586759656999973, 49.229973785000062 ], [ -122.58519384099999, 49.229972730000028 ], [ -122.585015706999968, 49.229972613000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "583672417", "BldgCostT": "403446667", "sL_LossRatio": "0.873918306954221", "sL_AssetLoss": "4460600", "sL_BldgLoss": "3898200", "sL_StrLoss": "1827520", "sL_NStrLoss": "2070680", "sL_ContLoss": "562400", "geom_point": "0101000020E61000009DCC2513BFA65EC07FF63327759C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.605977686999935, 49.220494701000099 ], [ -122.607010104999944, 49.22049569200005 ], [ -122.607014504999981, 49.22146898900008 ], [ -122.607007908999918, 49.222216696000054 ], [ -122.60700378300001, 49.222761711000068 ], [ -122.606994000999975, 49.223050229000094 ], [ -122.606987617999948, 49.223237919000063 ], [ -122.606984863999955, 49.223319971000123 ], [ -122.60695620499996, 49.224164093000063 ], [ -122.604716452, 49.224145642000053 ], [ -122.603778091999942, 49.224137908000067 ], [ -122.603836285999989, 49.221859104000011 ], [ -122.603864003999888, 49.220486710000102 ], [ -122.604509002999976, 49.220490804000157 ], [ -122.605977686999935, 49.220494701000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "510012931", "BldgCostT": "334253953", "sL_LossRatio": "0.77477834526044", "sL_AssetLoss": "4011870", "sL_BldgLoss": "3108310", "sL_StrLoss": "1425740", "sL_NStrLoss": "1682570", "sL_ContLoss": "903560", "geom_point": "0101000020E6100000BE9ED8D85FA65EC0E377BBDA619C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.601368119999989, 49.223586744000066 ], [ -122.60136888699995, 49.222349884000089 ], [ -122.600007298999913, 49.222343004000024 ], [ -122.599993286999933, 49.222342999000084 ], [ -122.597755703999937, 49.222341416000091 ], [ -122.595779798999956, 49.222324898000046 ], [ -122.593965809999958, 49.222309095000135 ], [ -122.593995388999929, 49.221381888000089 ], [ -122.5940096, 49.220439814000095 ], [ -122.597837595999948, 49.220418303000081 ], [ -122.598386586999951, 49.220421225000074 ], [ -122.598846298999945, 49.220424307000037 ], [ -122.599257978999916, 49.220427082000114 ], [ -122.599377622999938, 49.220428359000039 ], [ -122.599995618999941, 49.220434908000058 ], [ -122.600376064999949, 49.220438919000081 ], [ -122.601380693999928, 49.220462500000068 ], [ -122.601689595999915, 49.22046318800011 ], [ -122.603024007, 49.220482791000052 ], [ -122.603864003999888, 49.220486710000102 ], [ -122.603836285999989, 49.221859104000011 ], [ -122.603778091999942, 49.224137908000067 ], [ -122.602849549, 49.224126703000138 ], [ -122.601367818, 49.224108788000109 ], [ -122.60136786, 49.224020240000108 ], [ -122.601368119999989, 49.223586744000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "581305807", "BldgCostT": "378547958", "sL_LossRatio": "0.693236606030106", "sL_AssetLoss": "4212530", "sL_BldgLoss": "2920280", "sL_StrLoss": "1319770", "sL_NStrLoss": "1600510", "sL_ContLoss": "1292250", "geom_point": "0101000020E6100000878FCCD931C55EC01906FA7EC9A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080794307999909, 49.311666895000023 ], [ -123.079470533999981, 49.311034837000093 ], [ -123.078651903999955, 49.311860314000057 ], [ -123.075571802999931, 49.310546590000087 ], [ -123.076403030999955, 49.309729644000079 ], [ -123.076625453999952, 49.30971240000008 ], [ -123.076854050999927, 49.309485252000073 ], [ -123.076983377999923, 49.309295670000076 ], [ -123.076753967999977, 49.307944111000076 ], [ -123.076739301999964, 49.30768989000012 ], [ -123.078015298999972, 49.308210786000132 ], [ -123.077906202999941, 49.308471399000069 ], [ -123.080521590999965, 49.30951398900006 ], [ -123.080412794999944, 49.309820204000061 ], [ -123.080825314999956, 49.309989606000066 ], [ -123.080729696, 49.310080812000074 ], [ -123.08094849699998, 49.310187598000013 ], [ -123.081264801999978, 49.309881409000091 ], [ -123.081508714, 49.309972365000107 ], [ -123.081554900999933, 49.309989587000082 ], [ -123.081506661, 49.310038616000099 ], [ -123.08128019199998, 49.310268791000055 ], [ -123.081458098999946, 49.310339995000085 ], [ -123.081498580999906, 49.310299194000045 ], [ -123.082144898999942, 49.309647785000102 ], [ -123.082284088999955, 49.309683406 ], [ -123.082420205999981, 49.309521092000075 ], [ -123.082985779999944, 49.309763198000063 ], [ -123.083410480999973, 49.309331693000061 ], [ -123.083686494999981, 49.309457005000077 ], [ -123.08396169599996, 49.309269012000073 ], [ -123.08411310399994, 49.309321706000048 ], [ -123.084250296999926, 49.309402903000091 ], [ -123.0841139, 49.309646393000051 ], [ -123.084320124999962, 49.309744706000046 ], [ -123.083935109999956, 49.310167687000046 ], [ -123.084595410999938, 49.310446801000055 ], [ -123.08419709599994, 49.310824211000067 ], [ -123.084692901999944, 49.311039309000144 ], [ -123.08479011699994, 49.311309894000061 ], [ -123.085216905999928, 49.31143519600009 ], [ -123.085822798, 49.311345506000137 ], [ -123.086122422999949, 49.311482475000062 ], [ -123.086255659999964, 49.312722815000022 ], [ -123.086169034999983, 49.313294309000149 ], [ -123.08614900799995, 49.313511987000012 ], [ -123.085662913999968, 49.313740191000065 ], [ -123.084193574999958, 49.313112169000114 ], [ -123.084133510999933, 49.313086493000128 ], [ -123.083718133999966, 49.312908695000068 ], [ -123.082584013999949, 49.312423188000039 ], [ -123.080966976999974, 49.311739874000061 ], [ -123.080794307999909, 49.311666895000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "526562329", "BldgCostT": "336139521", "sL_LossRatio": "0.735811797930259", "sL_AssetLoss": "4764751", "sL_BldgLoss": "3505960", "sL_StrLoss": "1585610", "sL_NStrLoss": "1920350", "sL_ContLoss": "1258791", "geom_point": "0101000020E6100000616F94824FC55EC0618642DB1CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.078651903999955, 49.311860314000057 ], [ -123.079470533999981, 49.311034837000093 ], [ -123.080794307999909, 49.311666895000023 ], [ -123.080966976999974, 49.311739874000061 ], [ -123.082584013999949, 49.312423188000039 ], [ -123.083718133999966, 49.312908695000068 ], [ -123.084133510999933, 49.313086493000128 ], [ -123.084193574999958, 49.313112169000114 ], [ -123.085662913999968, 49.313740191000065 ], [ -123.08570711599999, 49.313759393000041 ], [ -123.085830273999974, 49.313912781000042 ], [ -123.085934108999979, 49.314042092000136 ], [ -123.085936174999986, 49.31470948900003 ], [ -123.085926796999956, 49.314967805000016 ], [ -123.08587282299996, 49.316154309000069 ], [ -123.08400931099996, 49.315343898000123 ], [ -123.084858116999939, 49.314510201000118 ], [ -123.083365887999932, 49.313853907000059 ], [ -123.081814678999976, 49.31317520000006 ], [ -123.080266807999948, 49.312530781000127 ], [ -123.080252660000014, 49.312524933000056 ], [ -123.078651903999955, 49.311860314000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240121676", "BldgCostT": "164555127", "sL_LossRatio": "0.789276012961717", "sL_AssetLoss": "1144910", "sL_BldgLoss": "903650", "sL_StrLoss": "484610", "sL_NStrLoss": "419040", "sL_ContLoss": "241260", "geom_point": "0101000020E610000033E155DEA7B25EC041386E4ADC834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79418540099999, 49.029268191000057 ], [ -122.795662796999949, 49.029256393000054 ], [ -122.795673225999948, 49.030198510000112 ], [ -122.795655982999961, 49.031085698 ], [ -122.795382472999933, 49.031085581000163 ], [ -122.792895701999939, 49.031084406000069 ], [ -122.791633990999969, 49.031080791000086 ], [ -122.791446675999921, 49.031080235000054 ], [ -122.790160473999919, 49.031076539000033 ], [ -122.788703813999959, 49.031085210000057 ], [ -122.787281909999976, 49.031085908000136 ], [ -122.787367898999932, 49.030928102000125 ], [ -122.787385018999913, 49.029211704000026 ], [ -122.788743494999935, 49.029218114000095 ], [ -122.79017919899999, 49.029216006000034 ], [ -122.79082925199999, 49.029223902000062 ], [ -122.791102737999935, 49.029227205000083 ], [ -122.791647593, 49.029233815000104 ], [ -122.791921057999971, 49.029237529000021 ], [ -122.792214350999956, 49.029241500000118 ], [ -122.79418540099999, 49.029268191000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118291250", "BldgCostT": "79220000", "sL_LossRatio": "0.790938072693952", "sL_AssetLoss": "1047680", "sL_BldgLoss": "828650", "sL_StrLoss": "455750", "sL_NStrLoss": "372900", "sL_ContLoss": "219030", "geom_point": "0101000020E6100000BF22117DABB25EC08F8CB4D896834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788740694999944, 49.027471402000067 ], [ -122.788737006999952, 49.025640007000035 ], [ -122.790219610999941, 49.025648292000035 ], [ -122.790184694999965, 49.026552988000027 ], [ -122.790182898999944, 49.027473989000072 ], [ -122.795692909999929, 49.027524209000021 ], [ -122.79568800699991, 49.028391987000084 ], [ -122.795662796999949, 49.029256393000054 ], [ -122.79418540099999, 49.029268191000057 ], [ -122.792214350999956, 49.029241500000118 ], [ -122.791921057999971, 49.029237529000021 ], [ -122.791647593, 49.029233815000104 ], [ -122.791102737999935, 49.029227205000083 ], [ -122.79082925199999, 49.029223902000062 ], [ -122.79017919899999, 49.029216006000034 ], [ -122.788743494999935, 49.029218114000095 ], [ -122.788725510999939, 49.028347905000075 ], [ -122.788740694999944, 49.027471402000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180745501", "BldgCostT": "114600001", "sL_LossRatio": "0.711880012874155", "sL_AssetLoss": "1941875", "sL_BldgLoss": "1382382", "sL_StrLoss": "693322", "sL_NStrLoss": "689060", "sL_ContLoss": "559493", "geom_point": "0101000020E61000001F99BB5434A45EC02F958EA46A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.566032340999982, 49.217137405000095 ], [ -122.566042981999956, 49.216754387000037 ], [ -122.565296921999945, 49.216747099000024 ], [ -122.564873094999953, 49.216742962000104 ], [ -122.564857235999938, 49.216742803000074 ], [ -122.563923426999978, 49.216733676000068 ], [ -122.56124810399993, 49.21670961000008 ], [ -122.561347810999933, 49.216475804 ], [ -122.561654095000023, 49.216196298000078 ], [ -122.56244370899999, 49.215644206000057 ], [ -122.562971610999924, 49.21527510300006 ], [ -122.563137312999942, 49.215131700000015 ], [ -122.563280879, 49.214897407000137 ], [ -122.563375207999982, 49.214588695000074 ], [ -122.563349982999981, 49.214390506000015 ], [ -122.562808809999964, 49.213152197000099 ], [ -122.562856607999933, 49.212933011000075 ], [ -122.563019307, 49.212683095000052 ], [ -122.563456916999925, 49.212204190000065 ], [ -122.563759496, 49.211910960000083 ], [ -122.56388103599997, 49.211793133000093 ], [ -122.564098690999913, 49.211582198000066 ], [ -122.565300113999939, 49.210401065000056 ], [ -122.565349591, 49.210352411000017 ], [ -122.565531632999949, 49.210044554000021 ], [ -122.566240109999939, 49.210023889000084 ], [ -122.56656454099999, 49.210027692000054 ], [ -122.566866881999928, 49.210031241000053 ], [ -122.567916878999938, 49.210032242000082 ], [ -122.567934178999948, 49.210688800000142 ], [ -122.567906922999939, 49.210794151000051 ], [ -122.56788048599999, 49.210896204000065 ], [ -122.567753303999964, 49.211074990000057 ], [ -122.567875302999951, 49.21118979700006 ], [ -122.567931409999986, 49.211322205000073 ], [ -122.567927144999913, 49.2118642820001 ], [ -122.56792410599999, 49.212256388000121 ], [ -122.567921212999977, 49.212332097000065 ], [ -122.567938109999943, 49.212788566 ], [ -122.567942390999946, 49.213033225000117 ], [ -122.568043396999926, 49.21474661500006 ], [ -122.56804337799997, 49.214755621000108 ], [ -122.568041604999976, 49.215495199000067 ], [ -122.56803842699999, 49.216058305000097 ], [ -122.56803177099998, 49.216704147000051 ], [ -122.56803127199997, 49.2167492250001 ], [ -122.568043276999987, 49.216995619000102 ], [ -122.568056780999939, 49.217307480000095 ], [ -122.568083217999956, 49.217918857000043 ], [ -122.568106638999978, 49.218460154000148 ], [ -122.567177462999908, 49.21845961300005 ], [ -122.566229977999967, 49.218459108000047 ], [ -122.566035001, 49.218459005000092 ], [ -122.566019805999971, 49.217587199000029 ], [ -122.566032340999982, 49.217137405000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112620867", "BldgCostT": "74943880", "sL_LossRatio": "0.733138837889724", "sL_AssetLoss": "1192830", "sL_BldgLoss": "874510", "sL_StrLoss": "430100", "sL_NStrLoss": "444410", "sL_ContLoss": "318320", "geom_point": "0101000020E610000031D1523F50A45EC02FA699EE759A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.566123481999952, 49.204899959000038 ], [ -122.566491486999922, 49.204154733000053 ], [ -122.566945329999939, 49.204186419000024 ], [ -122.567321685999929, 49.204212723000104 ], [ -122.568038074999961, 49.204250862000038 ], [ -122.568978446999921, 49.204303347000078 ], [ -122.569526974999945, 49.204310001000096 ], [ -122.57000348499993, 49.204176476000086 ], [ -122.570274737999952, 49.204536566000115 ], [ -122.570716899999923, 49.20486783700003 ], [ -122.57074449, 49.204958829000127 ], [ -122.570714843999966, 49.205044395000094 ], [ -122.570188690999927, 49.205385388000096 ], [ -122.569658279999913, 49.205728099000083 ], [ -122.569557305999965, 49.205795108000117 ], [ -122.569356016999947, 49.205825705000095 ], [ -122.569196021999957, 49.205825403000091 ], [ -122.568395297999956, 49.205823883000029 ], [ -122.568338777999955, 49.205835249000053 ], [ -122.568166877999943, 49.205869802000066 ], [ -122.568016458999963, 49.205936195000127 ], [ -122.567837287999964, 49.206094489000115 ], [ -122.567841318999967, 49.206820033000028 ], [ -122.567843989999957, 49.207526597000069 ], [ -122.567871123999936, 49.208199713000042 ], [ -122.567874527999919, 49.208283624000032 ], [ -122.567916878999938, 49.210032242000082 ], [ -122.566866881999928, 49.210031241000053 ], [ -122.56656454099999, 49.210027692000054 ], [ -122.566240109999939, 49.210023889000084 ], [ -122.565531632999949, 49.210044554000021 ], [ -122.56566155299997, 49.209772963000034 ], [ -122.565720453999944, 49.208694506000064 ], [ -122.565742615999952, 49.208288678000038 ], [ -122.565743127999966, 49.2082796770001 ], [ -122.565845042999953, 49.206684266000082 ], [ -122.565909508999979, 49.205675169000081 ], [ -122.565934527999929, 49.205283225000045 ], [ -122.566123481999952, 49.204899959000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "384406417", "BldgCostT": "245121667", "sL_LossRatio": "0.710319036393656", "sL_AssetLoss": "4086399", "sL_BldgLoss": "2902647", "sL_StrLoss": "1434877", "sL_NStrLoss": "1467770", "sL_ContLoss": "1183752", "geom_point": "0101000020E6100000F466E45EE6A35EC0A5B60EEDE79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556844261999942, 49.21305822900009 ], [ -122.55680457699999, 49.211857056000021 ], [ -122.556749086, 49.210176074000096 ], [ -122.55673608499994, 49.20968958000006 ], [ -122.556701845999982, 49.208406563000089 ], [ -122.55665565299995, 49.206715448000075 ], [ -122.556670667999967, 49.205828298000078 ], [ -122.558981961999933, 49.205831607000107 ], [ -122.559077888, 49.205831742000086 ], [ -122.559683115999974, 49.205832609000041 ], [ -122.560119415999964, 49.205778982000034 ], [ -122.560733646999921, 49.205595634000083 ], [ -122.560940499999944, 49.205533890000041 ], [ -122.56135058199996, 49.205371295000084 ], [ -122.56265189599992, 49.204572068000061 ], [ -122.563266928999951, 49.204329467000036 ], [ -122.563926773999953, 49.20416668100011 ], [ -122.564729968999927, 49.204088659000064 ], [ -122.566491486999922, 49.204154733000053 ], [ -122.566123481999952, 49.204899959000038 ], [ -122.565934527999929, 49.205283225000045 ], [ -122.565909508999979, 49.205675169000081 ], [ -122.565845042999953, 49.206684266000082 ], [ -122.565743127999966, 49.2082796770001 ], [ -122.565742615999952, 49.208288678000038 ], [ -122.565720453999944, 49.208694506000064 ], [ -122.56566155299997, 49.209772963000034 ], [ -122.565531632999949, 49.210044554000021 ], [ -122.565349591, 49.210352411000017 ], [ -122.565300113999939, 49.210401065000056 ], [ -122.564098690999913, 49.211582198000066 ], [ -122.56388103599997, 49.211793133000093 ], [ -122.563759496, 49.211910960000083 ], [ -122.563456916999925, 49.212204190000065 ], [ -122.563019307, 49.212683095000052 ], [ -122.562856607999933, 49.212933011000075 ], [ -122.562808809999964, 49.213152197000099 ], [ -122.563349982999981, 49.214390506000015 ], [ -122.563375207999982, 49.214588695000074 ], [ -122.563280879, 49.214897407000137 ], [ -122.563137312999942, 49.215131700000015 ], [ -122.562971610999924, 49.21527510300006 ], [ -122.56244370899999, 49.215644206000057 ], [ -122.561654095000023, 49.216196298000078 ], [ -122.561347810999933, 49.216475804 ], [ -122.56124810399993, 49.21670961000008 ], [ -122.558969694999973, 49.216701801000106 ], [ -122.556963010999951, 49.21669535500012 ], [ -122.556844261999942, 49.21305822900009 ] ], [ [ -122.561118084999947, 49.211821820000125 ], [ -122.561120241999916, 49.211578074000059 ], [ -122.560438912000023, 49.211556327000032 ], [ -122.56041525699996, 49.211875679000116 ], [ -122.560513914999916, 49.211878828000067 ], [ -122.560454452999934, 49.212681579000026 ], [ -122.56056876299999, 49.212685227000065 ], [ -122.560552918999988, 49.212899109000055 ], [ -122.560696626, 49.212899657000023 ], [ -122.560706188999987, 49.211820254000017 ], [ -122.561118084999947, 49.211821820000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77910667", "BldgCostT": "48846667", "sL_LossRatio": "0.674631948008824", "sL_AssetLoss": "921541", "sL_BldgLoss": "621701", "sL_StrLoss": "292861", "sL_NStrLoss": "328840", "sL_ContLoss": "299840", "geom_point": "0101000020E610000011E3E3B0C7A45EC07F2DB7CD379A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.57094543599996, 49.203538732000055 ], [ -122.571413797999952, 49.203385120000043 ], [ -122.572114190999969, 49.203286655000106 ], [ -122.572692649999951, 49.203259117000073 ], [ -122.573036280999972, 49.203252018000072 ], [ -122.573419707999932, 49.203301152000066 ], [ -122.574092646999986, 49.203481163000077 ], [ -122.574362102999928, 49.203512252000131 ], [ -122.575196498999972, 49.203494623000125 ], [ -122.575719851999963, 49.203488722000017 ], [ -122.575789208999979, 49.203497005000017 ], [ -122.576874952999916, 49.203626366000073 ], [ -122.577452254999912, 49.203577135000103 ], [ -122.578167585999935, 49.20349892200003 ], [ -122.578295330999978, 49.203441688000069 ], [ -122.579430303, 49.203367799000091 ], [ -122.579594337999964, 49.203332120000034 ], [ -122.579827817999899, 49.203281291000053 ], [ -122.579882831999925, 49.203373141000029 ], [ -122.579423347999949, 49.203462213000144 ], [ -122.579236527999981, 49.203949177000027 ], [ -122.57924777799991, 49.204019831000068 ], [ -122.57936606899996, 49.204458506 ], [ -122.579428888999956, 49.204691516000068 ], [ -122.579461386999981, 49.204998317000076 ], [ -122.579465275999937, 49.205035126000091 ], [ -122.57936427599999, 49.205288705000051 ], [ -122.579042801999933, 49.205740783000117 ], [ -122.578692820999947, 49.205777422000025 ], [ -122.578416137999966, 49.205863257000026 ], [ -122.577988087999984, 49.206083964000108 ], [ -122.577712940999973, 49.20635845200011 ], [ -122.577015418999977, 49.20632962400007 ], [ -122.570152231999913, 49.206054715000029 ], [ -122.568997347000035, 49.205968888000079 ], [ -122.568016458999963, 49.205936195000127 ], [ -122.568166877999943, 49.205869802000066 ], [ -122.568338777999955, 49.205835249000053 ], [ -122.568395297999956, 49.205823883000029 ], [ -122.569196021999957, 49.205825403000091 ], [ -122.569356016999947, 49.205825705000095 ], [ -122.569557305999965, 49.205795108000117 ], [ -122.569658279999913, 49.205728099000083 ], [ -122.570188690999927, 49.205385388000096 ], [ -122.570714843999966, 49.205044395000094 ], [ -122.57074449, 49.204958829000127 ], [ -122.570716899999923, 49.20486783700003 ], [ -122.570274737999952, 49.204536566000115 ], [ -122.57000348499993, 49.204176476000086 ], [ -122.57094543599996, 49.203538732000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163992000", "BldgCostT": "106995000", "sL_LossRatio": "0.713245408204547", "sL_AssetLoss": "2101030", "sL_BldgLoss": "1498550", "sL_StrLoss": "728950", "sL_NStrLoss": "769600", "sL_ContLoss": "602480", "geom_point": "0101000020E6100000317460F7E5A35EC0B1D9F414F7994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556670667999967, 49.205828298000078 ], [ -122.556659387999971, 49.20209268600005 ], [ -122.556677708000024, 49.200217112000054 ], [ -122.556685785999932, 49.20000197100007 ], [ -122.556698981999958, 49.199651885000037 ], [ -122.55885903299999, 49.199597456000049 ], [ -122.55993493699999, 49.199653442000049 ], [ -122.560459088999949, 49.199765697000039 ], [ -122.56087907299991, 49.200006212000112 ], [ -122.561272779999939, 49.200305324000084 ], [ -122.561727622999939, 49.201075917 ], [ -122.56192118199999, 49.20122355700012 ], [ -122.562472090999961, 49.201438488000058 ], [ -122.563574810999967, 49.201357331000047 ], [ -122.563872698999944, 49.201335402000034 ], [ -122.56432099899996, 49.201397379000092 ], [ -122.565569745999966, 49.201904608000092 ], [ -122.566640017999987, 49.202339328000029 ], [ -122.566901901999984, 49.202445685000036 ], [ -122.56704637199999, 49.202577989000055 ], [ -122.567162899999957, 49.20268470700006 ], [ -122.567909066999974, 49.20348803500012 ], [ -122.568505989999935, 49.20395493000013 ], [ -122.56882677, 49.204089541000101 ], [ -122.568979261999971, 49.204199730000077 ], [ -122.568978446999921, 49.204303347000078 ], [ -122.568038074999961, 49.204250862000038 ], [ -122.567321685999929, 49.204212723000104 ], [ -122.566945329999939, 49.204186419000024 ], [ -122.566491486999922, 49.204154733000053 ], [ -122.564729968999927, 49.204088659000064 ], [ -122.563926773999953, 49.20416668100011 ], [ -122.563266928999951, 49.204329467000036 ], [ -122.56265189599992, 49.204572068000061 ], [ -122.56135058199996, 49.205371295000084 ], [ -122.560940499999944, 49.205533890000041 ], [ -122.560733646999921, 49.205595634000083 ], [ -122.560119415999964, 49.205778982000034 ], [ -122.559683115999974, 49.205832609000041 ], [ -122.559077888, 49.205831742000086 ], [ -122.558981961999933, 49.205831607000107 ], [ -122.556670667999967, 49.205828298000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44494417", "BldgCostT": "28266667", "sL_LossRatio": "0.703559004658748", "sL_AssetLoss": "488114", "sL_BldgLoss": "343417", "sL_StrLoss": "164527", "sL_NStrLoss": "178890", "sL_ContLoss": "144697", "geom_point": "0101000020E6100000A6ED1D3D57A45EC0A037F49AC7994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.56882677, 49.204089541000101 ], [ -122.568505989999935, 49.20395493000013 ], [ -122.567909066999974, 49.20348803500012 ], [ -122.567162899999957, 49.20268470700006 ], [ -122.56704637199999, 49.202577989000055 ], [ -122.566901901999984, 49.202445685000036 ], [ -122.566640017999987, 49.202339328000029 ], [ -122.565569745999966, 49.201904608000092 ], [ -122.56432099899996, 49.201397379000092 ], [ -122.563872698999944, 49.201335402000034 ], [ -122.563574810999967, 49.201357331000047 ], [ -122.562472090999961, 49.201438488000058 ], [ -122.56192118199999, 49.20122355700012 ], [ -122.561727622999939, 49.201075917 ], [ -122.561272779999939, 49.200305324000084 ], [ -122.56087907299991, 49.200006212000112 ], [ -122.560459088999949, 49.199765697000039 ], [ -122.55993493699999, 49.199653442000049 ], [ -122.55885903299999, 49.199597456000049 ], [ -122.556698981999958, 49.199651885000037 ], [ -122.556701127999972, 49.199381228000021 ], [ -122.556702546999986, 49.199201314000078 ], [ -122.556702614999963, 49.199193 ], [ -122.556733800999893, 49.199201790000082 ], [ -122.55736720000003, 49.199203185000087 ], [ -122.557752689999987, 49.198926902000068 ], [ -122.558015895999986, 49.198595102000127 ], [ -122.55829271199994, 49.198523908000055 ], [ -122.559168996999958, 49.198572287000111 ], [ -122.559418091999959, 49.198474005000058 ], [ -122.55975050099994, 49.198098092000116 ], [ -122.560039391999922, 49.198062508000064 ], [ -122.560707795999946, 49.198452687000092 ], [ -122.560878450999923, 49.198484484000076 ], [ -122.560851472999971, 49.198848850000076 ], [ -122.560717384999961, 49.198911294000027 ], [ -122.560565405999952, 49.199063691000084 ], [ -122.560468313999962, 49.1992602 ], [ -122.560673399999942, 49.199386987000032 ], [ -122.56122736199994, 49.199473526000112 ], [ -122.561225547999967, 49.199678530000028 ], [ -122.561637342, 49.199680093000055 ], [ -122.561634956999953, 49.199949945000043 ], [ -122.562046754999983, 49.199951506000048 ], [ -122.56204545599995, 49.200098697000044 ], [ -122.56257537599997, 49.200115607000029 ], [ -122.562446686999976, 49.200671594000013 ], [ -122.562579592999953, 49.201094609000044 ], [ -122.563046505999978, 49.201168691000078 ], [ -122.56371990599996, 49.201090288000024 ], [ -122.566630504999964, 49.201029093000102 ], [ -122.56717888299994, 49.20094079100005 ], [ -122.567950287999963, 49.200682990000125 ], [ -122.568335193999957, 49.20068439900006 ], [ -122.568320104999913, 49.200792712000052 ], [ -122.56757470300002, 49.201365205000094 ], [ -122.567562728999945, 49.201392998000095 ], [ -122.56683422899999, 49.2013697840001 ], [ -122.566798106999912, 49.201858447000035 ], [ -122.567383640999978, 49.201860641000103 ], [ -122.56738128799995, 49.202130492000052 ], [ -122.567408143999984, 49.202130593000085 ], [ -122.567724802999976, 49.203057210000047 ], [ -122.568445902999926, 49.203716612000129 ], [ -122.569074393999955, 49.203988606000038 ], [ -122.569747792, 49.204000011000055 ], [ -122.569981098, 49.203928809000068 ], [ -122.570271588999958, 49.203669609000066 ], [ -122.571196800999985, 49.203132585000041 ], [ -122.571925714999978, 49.202928998000118 ], [ -122.572914399999917, 49.202941796000033 ], [ -122.575890984999944, 49.203258006000077 ], [ -122.576151791000015, 49.203277894000074 ], [ -122.57654900799993, 49.203161110000089 ], [ -122.576921782999989, 49.20294749100006 ], [ -122.577393000999976, 49.202579990000075 ], [ -122.578015785, 49.201862204000086 ], [ -122.578374891999914, 49.201638608000103 ], [ -122.578940866999986, 49.201572757000079 ], [ -122.57895137099996, 49.201590978000105 ], [ -122.579003517999951, 49.201681633000078 ], [ -122.579777881999988, 49.203027396000067 ], [ -122.579758117000011, 49.203165546000051 ], [ -122.579827817999899, 49.203281291000053 ], [ -122.579594337999964, 49.203332120000034 ], [ -122.579430303, 49.203367799000091 ], [ -122.578295330999978, 49.203441688000069 ], [ -122.578167585999935, 49.20349892200003 ], [ -122.577452254999912, 49.203577135000103 ], [ -122.576874952999916, 49.203626366000073 ], [ -122.575789208999979, 49.203497005000017 ], [ -122.575719851999963, 49.203488722000017 ], [ -122.575196498999972, 49.203494623000125 ], [ -122.574362102999928, 49.203512252000131 ], [ -122.574092646999986, 49.203481163000077 ], [ -122.573419707999932, 49.203301152000066 ], [ -122.573036280999972, 49.203252018000072 ], [ -122.572692649999951, 49.203259117000073 ], [ -122.572114190999969, 49.203286655000106 ], [ -122.571413797999952, 49.203385120000043 ], [ -122.57094543599996, 49.203538732000055 ], [ -122.57000348499993, 49.204176476000086 ], [ -122.569526974999945, 49.204310001000096 ], [ -122.568978446999921, 49.204303347000078 ], [ -122.568979261999971, 49.204199730000077 ], [ -122.56882677, 49.204089541000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128985250", "BldgCostT": "85270000", "sL_LossRatio": "0.73712143106728", "sL_AssetLoss": "1456703", "sL_BldgLoss": "1073767", "sL_StrLoss": "535287", "sL_NStrLoss": "538480", "sL_ContLoss": "382936", "geom_point": "0101000020E6100000CF3DC15134A45EC05B3D379F80994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.567850908999958, 49.202679695 ], [ -122.567862772999931, 49.202132295000062 ], [ -122.567886136999974, 49.202132383000077 ], [ -122.56793881000003, 49.201419586000036 ], [ -122.568609997999928, 49.200702888000116 ], [ -122.568637315999979, 49.200506402000045 ], [ -122.568475109999952, 49.200388203000024 ], [ -122.568186504, 49.200359707000167 ], [ -122.567250312999988, 49.200717201000096 ], [ -122.566728391999931, 49.200831105000134 ], [ -122.564421503999966, 49.200832486000145 ], [ -122.56290898, 49.200970699000045 ], [ -122.562732080999979, 49.200843898000095 ], [ -122.562720994999893, 49.200627489000063 ], [ -122.562841877999972, 49.200124111000058 ], [ -122.564509044, 49.200177290000113 ], [ -122.564485308999934, 49.200498172000088 ], [ -122.566688496999987, 49.200568411000063 ], [ -122.566732791999939, 49.199969181 ], [ -122.564517537999947, 49.199960849000028 ], [ -122.564519906, 49.199690997000111 ], [ -122.563696315999962, 49.199687889000103 ], [ -122.563698689999967, 49.199418039000072 ], [ -122.563286896999955, 49.199416482000082 ], [ -122.563298776999943, 49.198067226000084 ], [ -122.56371055799994, 49.198068781000124 ], [ -122.563711204999933, 49.197995318000089 ], [ -122.56092126099999, 49.19790628300013 ], [ -122.560890795999953, 49.198317761000048 ], [ -122.560765282999938, 49.198290297000021 ], [ -122.560218309999939, 49.197919992000017 ], [ -122.559766100000019, 49.197944190000051 ], [ -122.559185200999934, 49.198409994000038 ], [ -122.558911086999956, 49.19847260100012 ], [ -122.558637187999977, 49.198362992000057 ], [ -122.558045607999986, 49.198405709000063 ], [ -122.557798217999988, 49.198531004000138 ], [ -122.557313785999966, 49.198988196000073 ], [ -122.556818081999964, 49.199030906000132 ], [ -122.556704080999936, 49.19900812400008 ], [ -122.55670434399994, 49.198976432000102 ], [ -122.556708827999984, 49.198409598000069 ], [ -122.55671504799993, 49.197618196000057 ], [ -122.556716675999951, 49.19741127900005 ], [ -122.556720130999935, 49.196978860000051 ], [ -122.556738206999952, 49.196142729000066 ], [ -122.556750014, 49.195598696000062 ], [ -122.557868540999934, 49.19522694500008 ], [ -122.557913120999928, 49.195138993000171 ], [ -122.557862481999933, 49.19478502100003 ], [ -122.557889458999924, 49.194569607000126 ], [ -122.558058055999965, 49.194423612000094 ], [ -122.558227115999969, 49.19432717500009 ], [ -122.55830186899999, 49.194304734000113 ], [ -122.558387146999962, 49.194279115 ], [ -122.558558182999917, 49.194285496000141 ], [ -122.55868525399994, 49.194312719000074 ], [ -122.558933709, 49.194365981000033 ], [ -122.559974911999916, 49.194721839000081 ], [ -122.560575989999933, 49.194943812000119 ], [ -122.56058828399992, 49.194947834000104 ], [ -122.562833291999979, 49.195686305000045 ], [ -122.562848685999967, 49.196386093000058 ], [ -122.562951092999981, 49.196579503000123 ], [ -122.563296707999939, 49.196971706000063 ], [ -122.563473512, 49.197122390000033 ], [ -122.563741095999944, 49.197270611000143 ], [ -122.564124598999982, 49.197410812000072 ], [ -122.565054672999949, 49.197563993000145 ], [ -122.565309900999978, 49.197582908000065 ], [ -122.5655584, 49.197562887000046 ], [ -122.565998610999941, 49.197419187000015 ], [ -122.566703207999979, 49.198171609000106 ], [ -122.567161907999974, 49.198464698000102 ], [ -122.567332574999909, 49.198531400000057 ], [ -122.568187102999943, 49.198891195000058 ], [ -122.57058963799993, 49.200011422000024 ], [ -122.5706679, 49.200047911000084 ], [ -122.571232106999915, 49.200348451000089 ], [ -122.571715001999934, 49.200605684000131 ], [ -122.573011790999956, 49.201445397000086 ], [ -122.573238951999954, 49.201572113000061 ], [ -122.573571981000015, 49.201757913000066 ], [ -122.573919108999959, 49.201833789000098 ], [ -122.574345190999949, 49.201824778000081 ], [ -122.575054841999943, 49.201704960000086 ], [ -122.575238805999916, 49.201673878000115 ], [ -122.575802847999952, 49.201559767000084 ], [ -122.577065522999959, 49.201304256000107 ], [ -122.577136337999946, 49.201289945000049 ], [ -122.578287960999916, 49.201111750000123 ], [ -122.578643958999976, 49.201056659000066 ], [ -122.578810201999914, 49.201345637000095 ], [ -122.57884665, 49.201408973000106 ], [ -122.578443982999929, 49.201486305000053 ], [ -122.578004587999942, 49.20157459700004 ], [ -122.577686494999966, 49.201825208000038 ], [ -122.576925810999953, 49.202641304000053 ], [ -122.576567293999943, 49.202856296000043 ], [ -122.576071815, 49.203007296000081 ], [ -122.575096219999963, 49.202994503000092 ], [ -122.573395709999929, 49.202736698000052 ], [ -122.571734005999971, 49.202756604000101 ], [ -122.57100638199995, 49.202961692000031 ], [ -122.569790803000032, 49.203757900000014 ], [ -122.569556204999984, 49.203846207000026 ], [ -122.569227889, 49.203844695000114 ], [ -122.568817304999968, 49.2036552920001 ], [ -122.568162313999949, 49.203166802000084 ], [ -122.567850908999958, 49.202679695 ] ], [ [ -122.568242988999941, 49.20257968300011 ], [ -122.568270622999961, 49.202205691000074 ], [ -122.568204309999899, 49.202203578000088 ], [ -122.568201046999945, 49.202578347000092 ], [ -122.568242988999941, 49.20257968300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "490601166", "BldgCostT": "332661666", "sL_LossRatio": "0.874579539083925", "sL_AssetLoss": "1055984", "sL_BldgLoss": "923542", "sL_StrLoss": "517866", "sL_NStrLoss": "405676", "sL_ContLoss": "132442", "geom_point": "0101000020E61000001FD7A7989ACF5EC09C76BD76E1A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.24620136, 49.252351105000038 ], [ -123.246652414999929, 49.252040170000065 ], [ -123.247006624, 49.252250063000126 ], [ -123.247686094999892, 49.252742055000056 ], [ -123.248184108999965, 49.253122267000094 ], [ -123.248759480999936, 49.253632305000096 ], [ -123.249645687999973, 49.25441329300002 ], [ -123.249749897999919, 49.25450870100007 ], [ -123.248197787999942, 49.255344612000044 ], [ -123.248178283999962, 49.255419800000034 ], [ -123.24805569599998, 49.255471591000052 ], [ -123.24831911199999, 49.255777307000109 ], [ -123.248415713999961, 49.255816708000033 ], [ -123.249131689, 49.25671220800011 ], [ -123.249785671, 49.257519839000047 ], [ -123.25005961, 49.257858093000067 ], [ -123.250583512999967, 49.258520007000122 ], [ -123.250499225999988, 49.258548274000105 ], [ -123.249672589999989, 49.258825507000047 ], [ -123.249317398999935, 49.258944362000094 ], [ -123.248812181999966, 49.259113390000088 ], [ -123.248129212999942, 49.259327456000079 ], [ -123.248005892999984, 49.259368434000059 ], [ -123.247934592999954, 49.259412566000094 ], [ -123.24776689399999, 49.259461425000048 ], [ -123.247539791999927, 49.259538490000054 ], [ -123.246876663999927, 49.259764771000093 ], [ -123.245975782999892, 49.260085840000059 ], [ -123.245768096999967, 49.260159773000055 ], [ -123.244765288999986, 49.260507962000062 ], [ -123.244296739, 49.260671470000013 ], [ -123.241602257999915, 49.261611535000036 ], [ -123.241427054999946, 49.261670113000072 ], [ -123.241379596999963, 49.261613966000091 ], [ -123.241298419999964, 49.261522470000088 ], [ -123.240152809999941, 49.260230687000103 ], [ -123.239060108, 49.258996714000041 ], [ -123.238837280999974, 49.258745548000022 ], [ -123.238576079999973, 49.258451128000061 ], [ -123.237928364999959, 49.257719676000121 ], [ -123.237733073999948, 49.2574991440001 ], [ -123.237655935999953, 49.257410699000076 ], [ -123.236494557999919, 49.256039825000137 ], [ -123.23635703399999, 49.255950731000063 ], [ -123.236484356999966, 49.255934196000091 ], [ -123.236593006999925, 49.255885636000052 ], [ -123.236665943999967, 49.255814549000085 ], [ -123.236691557999961, 49.255730536000037 ], [ -123.236800841999937, 49.255647768000067 ], [ -123.237188010999958, 49.255465834000042 ], [ -123.237679803999981, 49.25530278800008 ], [ -123.238276892999963, 49.255170366000044 ], [ -123.23894212099999, 49.254977529000065 ], [ -123.239739198999985, 49.254669184000115 ], [ -123.24095519499997, 49.254243607000085 ], [ -123.241148801999913, 49.254175597000049 ], [ -123.242074615999954, 49.253849803000087 ], [ -123.242086726999943, 49.253845542000057 ], [ -123.245406119999956, 49.252676666000077 ], [ -123.245910024999958, 49.252469763000143 ], [ -123.24620136, 49.252351105000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "558852691", "BldgCostT": "378474345", "sL_LossRatio": "0.733510944327247", "sL_AssetLoss": "1929310", "sL_BldgLoss": "1415170", "sL_StrLoss": "624150", "sL_NStrLoss": "791020", "sL_ContLoss": "514140", "geom_point": "0101000020E6100000C120659B46CF5EC06495468A50A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.239134010999962, 49.262417593000059 ], [ -123.239174731999967, 49.262138895000191 ], [ -123.239184913999964, 49.26206938800005 ], [ -123.23906929199994, 49.261726895000081 ], [ -123.2389334099999, 49.261448696000066 ], [ -123.238839673999976, 49.26136080100013 ], [ -123.23816268299997, 49.260734599000031 ], [ -123.237982040999952, 49.260568525000039 ], [ -123.237930922, 49.260521491000091 ], [ -123.23736691, 49.259751406000078 ], [ -123.237224609999913, 49.259603610000063 ], [ -123.236935606999936, 49.259497204000155 ], [ -123.236552092999958, 49.259454908000052 ], [ -123.236057613999918, 49.259524196000037 ], [ -123.235551664999917, 49.259643614000012 ], [ -123.235231498999966, 49.259719192000013 ], [ -123.234841826999912, 49.259873142000032 ], [ -123.234487932999969, 49.260079901000118 ], [ -123.234372216999986, 49.260147522000054 ], [ -123.233971589999911, 49.260530850000073 ], [ -123.233876903999928, 49.260668030000033 ], [ -123.233834184999935, 49.260808361000045 ], [ -123.233244394999971, 49.260347755000119 ], [ -123.23383164699996, 49.260039710000129 ], [ -123.234093998999924, 49.25994885700009 ], [ -123.236511892999928, 49.25920693700008 ], [ -123.236476215999943, 49.259161592000055 ], [ -123.236471218999924, 49.25915213900003 ], [ -123.235946509999948, 49.258161306000034 ], [ -123.23650440099999, 49.257955465000059 ], [ -123.23675687299999, 49.257862323000097 ], [ -123.237733073999948, 49.2574991440001 ], [ -123.237928364999959, 49.257719676000121 ], [ -123.238576079999973, 49.258451128000061 ], [ -123.238837280999974, 49.258745548000022 ], [ -123.239060108, 49.258996714000041 ], [ -123.240152809999941, 49.260230687000103 ], [ -123.241298419999964, 49.261522470000088 ], [ -123.241379596999963, 49.261613966000091 ], [ -123.241427054999946, 49.261670113000072 ], [ -123.242207015999938, 49.262546862000107 ], [ -123.241115897999947, 49.262930291000103 ], [ -123.239453309999988, 49.262475300000105 ], [ -123.239134010999962, 49.262417593000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364997406", "BldgCostT": "247622694", "sL_LossRatio": "0.76150413157765", "sL_AssetLoss": "3691326", "sL_BldgLoss": "2810960", "sL_StrLoss": "1441550", "sL_NStrLoss": "1369410", "sL_ContLoss": "880366", "geom_point": "0101000020E61000006B19E3A21EA35EC0DA143C4340984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.541076270999909, 49.188071590000064 ], [ -122.541236896999962, 49.187701853000064 ], [ -122.541612969999989, 49.187718457000123 ], [ -122.542898160999982, 49.187742577000101 ], [ -122.54490050199999, 49.187661757000065 ], [ -122.545936630999933, 49.187473302000157 ], [ -122.546289632999972, 49.187431466000128 ], [ -122.546517890999937, 49.187433050000031 ], [ -122.547453010999945, 49.187439492000102 ], [ -122.547973624999926, 49.187443086000073 ], [ -122.549014453999987, 49.187450319000085 ], [ -122.549346901999911, 49.187452469000078 ], [ -122.550108769999923, 49.187457436000123 ], [ -122.551089603999969, 49.187464810000058 ], [ -122.552173582999956, 49.187472928000048 ], [ -122.552460490000016, 49.187475087000117 ], [ -122.5546159, 49.187493584000087 ], [ -122.55686769499999, 49.187489914000054 ], [ -122.556855372999948, 49.189489189000049 ], [ -122.556841866999932, 49.191355961000042 ], [ -122.550249725999933, 49.191324357000042 ], [ -122.55006592299999, 49.191323855000128 ], [ -122.549116668999957, 49.191319591000038 ], [ -122.547643506999933, 49.19131292400003 ], [ -122.547497100999976, 49.191312729000046 ], [ -122.545358736, 49.191309892000028 ], [ -122.544521569999958, 49.191308765000088 ], [ -122.542482026999934, 49.191305966000044 ], [ -122.540990447999889, 49.191306736000065 ], [ -122.53949368799999, 49.191303717000061 ], [ -122.540393361999989, 49.189504149000051 ], [ -122.540445772999988, 49.189420816000037 ], [ -122.540895176999967, 49.188706239000034 ], [ -122.540981644999974, 49.188568708000055 ], [ -122.541076270999909, 49.188071590000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "263658500", "BldgCostT": "179810000", "sL_LossRatio": "0.744376586904016", "sL_AssetLoss": "2940474", "sL_BldgLoss": "2188820", "sL_StrLoss": "1129220", "sL_NStrLoss": "1059600", "sL_ContLoss": "751654", "geom_point": "0101000020E6100000F1CFA14600A35EC0C182A8B964974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.541040938999942, 49.187809107000106 ], [ -122.540903225999955, 49.187502796000096 ], [ -122.540645109999986, 49.187228656000109 ], [ -122.540467362999891, 49.18690674500008 ], [ -122.539961060999943, 49.185989925000101 ], [ -122.539934042999931, 49.185941014000086 ], [ -122.539049303999974, 49.184338703000073 ], [ -122.538743489999916, 49.184153135000024 ], [ -122.53849829699999, 49.184068933000063 ], [ -122.538372912999961, 49.184025887000097 ], [ -122.537397139999953, 49.184026835000076 ], [ -122.536738452999899, 49.184027448000087 ], [ -122.534753484999911, 49.184029303000059 ], [ -122.53486658199995, 49.183804418000101 ], [ -122.53562902099999, 49.182985427000048 ], [ -122.538822403, 49.179391980000084 ], [ -122.539389888999949, 49.178753305000093 ], [ -122.539909247999944, 49.178240244000051 ], [ -122.539952355999944, 49.178139240000064 ], [ -122.54063334599999, 49.176543801000022 ], [ -122.540682098, 49.176475533000051 ], [ -122.541028325999918, 49.175991144000143 ], [ -122.541395698, 49.176095489000062 ], [ -122.542570599999962, 49.176549809000086 ], [ -122.543816808999949, 49.176922889000075 ], [ -122.54517068799997, 49.177432796000126 ], [ -122.54770060599999, 49.178234591000027 ], [ -122.550574904999962, 49.179036410000059 ], [ -122.554787610999981, 49.180662891000097 ], [ -122.556590371999931, 49.181223903000038 ], [ -122.55659981, 49.181405245000086 ], [ -122.556843991999969, 49.181774896000086 ], [ -122.556830189999943, 49.183213555000123 ], [ -122.55682910599991, 49.183327112000022 ], [ -122.556869299999946, 49.18495048300008 ], [ -122.556868, 49.187024259000097 ], [ -122.556867749999952, 49.187371076000019 ], [ -122.55686769499999, 49.187489914000054 ], [ -122.5546159, 49.187493584000087 ], [ -122.552460490000016, 49.187475087000117 ], [ -122.552173582999956, 49.187472928000048 ], [ -122.551089603999969, 49.187464810000058 ], [ -122.550108769999923, 49.187457436000123 ], [ -122.549346901999911, 49.187452469000078 ], [ -122.549014453999987, 49.187450319000085 ], [ -122.547973624999926, 49.187443086000073 ], [ -122.547453010999945, 49.187439492000102 ], [ -122.546517890999937, 49.187433050000031 ], [ -122.546289632999972, 49.187431466000128 ], [ -122.545936630999933, 49.187473302000157 ], [ -122.54490050199999, 49.187661757000065 ], [ -122.542898160999982, 49.187742577000101 ], [ -122.541612969999989, 49.187718457000123 ], [ -122.541236896999962, 49.187701853000064 ], [ -122.541076270999909, 49.188071590000064 ], [ -122.541040938999942, 49.187809107000106 ] ], [ [ -122.545737866, 49.184809742000041 ], [ -122.545862251999964, 49.183136580000024 ], [ -122.542976801999941, 49.183043986000087 ], [ -122.543031319999969, 49.182311208000066 ], [ -122.54072080899999, 49.182237007000033 ], [ -122.54054770499998, 49.184562041000113 ], [ -122.542009676999953, 49.184608997000083 ], [ -122.542013249999982, 49.184221886000095 ], [ -122.543248246999951, 49.18422677500007 ], [ -122.543244362999971, 49.184648637000109 ], [ -122.543760449999937, 49.184665202000105 ], [ -122.543716489999966, 49.185256153000047 ], [ -122.544885183999938, 49.185293655000024 ], [ -122.544887483999943, 49.185042830000064 ], [ -122.544916612999884, 49.185042945000092 ], [ -122.544935868, 49.184784013000112 ], [ -122.545737866, 49.184809742000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "543243417", "BldgCostT": "344666667", "sL_LossRatio": "0.649792777695123", "sL_AssetLoss": "22919830", "sL_BldgLoss": "14893140", "sL_StrLoss": "6088400", "sL_NStrLoss": "8804740", "sL_ContLoss": "8026690", "geom_point": "0101000020E61000003BEB4AD3F9B15EC083EF0E3AB29D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781016263999945, 49.22936844600013 ], [ -122.781269712, 49.229302595000028 ], [ -122.782476890999988, 49.228921409000115 ], [ -122.78563444599996, 49.227861971000046 ], [ -122.78671079499999, 49.227500796000079 ], [ -122.787693501999954, 49.22724800400006 ], [ -122.788966693999967, 49.226984087000083 ], [ -122.789824099999962, 49.226854698000125 ], [ -122.791262305, 49.226766 ], [ -122.792027407, 49.226759889000029 ], [ -122.793142409999959, 49.226818289000057 ], [ -122.795661600999921, 49.227158991000131 ], [ -122.79561559299998, 49.227288290000104 ], [ -122.794498672999978, 49.230837320000035 ], [ -122.793739873999982, 49.232340968000074 ], [ -122.793458356, 49.232221792000068 ], [ -122.793333409999931, 49.232102751000092 ], [ -122.793767402999947, 49.230888546000116 ], [ -122.793796873999952, 49.230521833000111 ], [ -122.793755139, 49.230211555000068 ], [ -122.79351267599999, 49.229666485000038 ], [ -122.793153895999964, 49.22927469900003 ], [ -122.792919322999964, 49.229451494000067 ], [ -122.79279344299999, 49.229583801000054 ], [ -122.792660000999916, 49.230262794000069 ], [ -122.79167840099997, 49.231910296000095 ], [ -122.791452501999956, 49.232058515000084 ], [ -122.791188894999962, 49.232137999000031 ], [ -122.790728618999964, 49.232142401000068 ], [ -122.790503494999982, 49.232081588000028 ], [ -122.790344294999969, 49.231980507000074 ], [ -122.78997519, 49.231580302000118 ], [ -122.790493595999934, 49.231429909000134 ], [ -122.790697397999935, 49.231342303000076 ], [ -122.790854720999931, 49.231211800000061 ], [ -122.791077420999926, 49.230870702000054 ], [ -122.791526407999982, 49.230096609000071 ], [ -122.791543609999948, 49.22994579100002 ], [ -122.791495103000031, 49.229793896000061 ], [ -122.79134329399993, 49.229606386000107 ], [ -122.791109611999943, 49.229471500000102 ], [ -122.790677604999971, 49.229345198000068 ], [ -122.790421486999918, 49.229275399000109 ], [ -122.790061510999962, 49.229219589000088 ], [ -122.789717777999925, 49.229226498000081 ], [ -122.7893456799999, 49.229306393000066 ], [ -122.789087703999954, 49.229423102000069 ], [ -122.788888809999946, 49.229599109000041 ], [ -122.788499309999949, 49.230128095000055 ], [ -122.787310092999974, 49.22975299600008 ], [ -122.786626480999985, 49.229572296000136 ], [ -122.786203880999949, 49.229508305000095 ], [ -122.785810894999941, 49.229552515000186 ], [ -122.785484503999982, 49.229646297000045 ], [ -122.784673708999918, 49.229854593000027 ], [ -122.78436900599992, 49.229991495000085 ], [ -122.784121819999982, 49.230190388000089 ], [ -122.783737688999963, 49.230819611000115 ], [ -122.783750701999963, 49.230948796000099 ], [ -122.78405139099999, 49.231067695000021 ], [ -122.784525192999979, 49.231205213000038 ], [ -122.784791595999977, 49.231323992000085 ], [ -122.784965211000014, 49.231434601000032 ], [ -122.785479013, 49.231867101000027 ], [ -122.78476390199999, 49.232120507000012 ], [ -122.783574590999962, 49.232289096000024 ], [ -122.78205305799996, 49.232504793000018 ], [ -122.781959890999985, 49.232518006000085 ], [ -122.780549491999977, 49.232757894000038 ], [ -122.779947148999938, 49.232995821000053 ], [ -122.779864707999934, 49.233028385000047 ], [ -122.779666724000023, 49.2331514010001 ], [ -122.779349394999926, 49.233330217000137 ], [ -122.77904119899992, 49.233597590999985 ], [ -122.778320889999932, 49.234538303000043 ], [ -122.777718495999977, 49.235342917000033 ], [ -122.777301381999976, 49.23591412800004 ], [ -122.777255599999989, 49.235976784000123 ], [ -122.777021245999904, 49.236233666000082 ], [ -122.776917325999975, 49.236347575000103 ], [ -122.776588209999929, 49.236708304000075 ], [ -122.776031787999926, 49.237285401000101 ], [ -122.774961004999952, 49.238386788000071 ], [ -122.77476580099993, 49.238511645000138 ], [ -122.774406683999956, 49.238741343000108 ], [ -122.773517273999957, 49.239310209000088 ], [ -122.77329954199999, 49.239449482000026 ], [ -122.773081098999953, 49.239589201000065 ], [ -122.772829982999951, 49.239416790000071 ], [ -122.772316894999946, 49.239064501000087 ], [ -122.772033893999975, 49.238749693000038 ], [ -122.771930843999897, 49.238536028000098 ], [ -122.771766300999971, 49.238194799000063 ], [ -122.771638218999954, 49.237764804000072 ], [ -122.771515177999959, 49.237085397000023 ], [ -122.771324788999934, 49.236447197000061 ], [ -122.771067806999966, 49.23615300299999 ], [ -122.770404599999949, 49.235520498000092 ], [ -122.769993803999967, 49.235109007000091 ], [ -122.769489001999915, 49.234608300000055 ], [ -122.769381182999979, 49.234480709000103 ], [ -122.770102220999945, 49.234045501000054 ], [ -122.770842895999962, 49.233504596000046 ], [ -122.771307862999947, 49.233126811000083 ], [ -122.772037430999973, 49.232533953000051 ], [ -122.772270350999946, 49.232344731000062 ], [ -122.773637188999956, 49.231233995000068 ], [ -122.77416760499996, 49.230887254000045 ], [ -122.774250006999978, 49.230833396000079 ], [ -122.774636522999913, 49.230645905000074 ], [ -122.775002296999915, 49.230519909000044 ], [ -122.775270209, 49.2304584990001 ], [ -122.778319921, 49.230001907000073 ], [ -122.779646299999939, 49.22972438200005 ], [ -122.781016263999945, 49.22936844600013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46161417", "BldgCostT": "31571667", "sL_LossRatio": "0.6808170981463", "sL_AssetLoss": "1904300", "sL_BldgLoss": "1296480", "sL_StrLoss": "530570", "sL_NStrLoss": "765910", "sL_ContLoss": "607820", "geom_point": "0101000020E61000000B25178C1FB25EC0C4FD91335E9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795415679999977, 49.23082478800012 ], [ -122.795416793999919, 49.23055493300005 ], [ -122.795004733999946, 49.230554203000089 ], [ -122.795003616999963, 49.230824058000131 ], [ -122.795415679999977, 49.23082478800012 ], [ -122.79540676499991, 49.232983635000039 ], [ -122.793758440999952, 49.232980705000081 ], [ -122.793757318999937, 49.233250560000052 ], [ -122.793345234999961, 49.233249823000079 ], [ -122.793344109999921, 49.23351968000005 ], [ -122.793162682999977, 49.233519355000119 ], [ -122.793739873999982, 49.232340968000074 ], [ -122.794498672999978, 49.230837320000035 ], [ -122.79561559299998, 49.227288290000104 ], [ -122.795661600999921, 49.227158991000131 ], [ -122.793142409999959, 49.226818289000057 ], [ -122.792027407, 49.226759889000029 ], [ -122.791262305, 49.226766 ], [ -122.789824099999962, 49.226854698000125 ], [ -122.788966693999967, 49.226984087000083 ], [ -122.787693501999954, 49.22724800400006 ], [ -122.78671079499999, 49.227500796000079 ], [ -122.78563444599996, 49.227861971000046 ], [ -122.782476890999988, 49.228921409000115 ], [ -122.781269712, 49.229302595000028 ], [ -122.781016263999945, 49.22936844600013 ], [ -122.779646299999939, 49.22972438200005 ], [ -122.778319921, 49.230001907000073 ], [ -122.775270209, 49.2304584990001 ], [ -122.775002296999915, 49.230519909000044 ], [ -122.774636522999913, 49.230645905000074 ], [ -122.774250006999978, 49.230833396000079 ], [ -122.77416760499996, 49.230887254000045 ], [ -122.773637188999956, 49.231233995000068 ], [ -122.772270350999946, 49.232344731000062 ], [ -122.772037430999973, 49.232533953000051 ], [ -122.771307862999947, 49.233126811000083 ], [ -122.770842895999962, 49.233504596000046 ], [ -122.770102220999945, 49.234045501000054 ], [ -122.769381182999979, 49.234480709000103 ], [ -122.769117615000013, 49.234242187000071 ], [ -122.768957841999935, 49.23407158400002 ], [ -122.768757704999942, 49.233988098000097 ], [ -122.769054974999946, 49.233282392000078 ], [ -122.769502411999937, 49.232312833000044 ], [ -122.770529490999962, 49.231641008000032 ], [ -122.771412387999973, 49.231192397000022 ], [ -122.771522288999961, 49.230994397000138 ], [ -122.771742314999969, 49.231021501000086 ], [ -122.771975405999939, 49.230851992000083 ], [ -122.772500609999966, 49.230240994000042 ], [ -122.773635257999928, 49.229281263000068 ], [ -122.773995235999948, 49.229292035000135 ], [ -122.773995812999942, 49.229165721000037 ], [ -122.774407861999947, 49.229166527000054 ], [ -122.774409012999968, 49.228913607000052 ], [ -122.774449518999944, 49.228896750000033 ], [ -122.774821136999932, 49.228897475000096 ], [ -122.774821821999979, 49.228746847000089 ], [ -122.775205723999932, 49.228628366000137 ], [ -122.775646450999943, 49.228629223000027 ], [ -122.775647072999917, 49.228492153000033 ], [ -122.776074626999915, 49.228360196000075 ], [ -122.777707882999906, 49.228363350000016 ], [ -122.777709036, 49.228106371000123 ], [ -122.777765604999956, 49.228093603000055 ], [ -122.778533173000014, 49.228095077000042 ], [ -122.778533893999949, 49.227934088000033 ], [ -122.779436532999981, 49.227826948000079 ], [ -122.78018253099999, 49.227828369000079 ], [ -122.780182930999956, 49.227738347000098 ], [ -122.782278991999959, 49.227489505000086 ], [ -122.783723125, 49.227114905000114 ], [ -122.786855500999962, 49.226939689000062 ], [ -122.790207205999948, 49.226486788000074 ], [ -122.793765416999975, 49.226412794000105 ], [ -122.795427695999976, 49.226154987000079 ], [ -122.795716787999979, 49.225994001000096 ], [ -122.79594811, 49.225968287000086 ], [ -122.796259779999929, 49.225968836000064 ], [ -122.79625645299997, 49.226778405000047 ], [ -122.798316598999946, 49.22678202 ], [ -122.798313303999976, 49.227591588000038 ], [ -122.797945935999948, 49.227590947000081 ], [ -122.797901267999933, 49.227590869000039 ], [ -122.797899066999946, 49.228130581000066 ], [ -122.796662944999952, 49.228128412000054 ], [ -122.796651869999948, 49.230826971000063 ], [ -122.795415679999977, 49.23082478800012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.731838565022422", "sL_AssetLoss": "11150", "sL_BldgLoss": "8160", "sL_StrLoss": "3750", "sL_NStrLoss": "4410", "sL_ContLoss": "2990", "geom_point": "0101000020E6100000C533705928B25EC090D0E000C49B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.783114038999955, 49.217039577 ], [ -122.783115596999934, 49.216683467000053 ], [ -122.783781601999934, 49.216805007000062 ], [ -122.784883591999971, 49.21704288700009 ], [ -122.783114038999955, 49.217039577 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.718426501035197", "sL_AssetLoss": "14490", "sL_BldgLoss": "10410", "sL_StrLoss": "4550", "sL_NStrLoss": "5860", "sL_ContLoss": "4080", "geom_point": "0101000020E61000005FBEEDF034B15EC0EAB854849F9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.768943005999944, 49.215652892000044 ], [ -122.769526365000033, 49.215593229000042 ], [ -122.769524780999987, 49.215933829000022 ], [ -122.767877027999972, 49.215930529000055 ], [ -122.767877449999943, 49.215840277000034 ], [ -122.768943005999944, 49.215652892000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.733608479504737", "sL_AssetLoss": "31983", "sL_BldgLoss": "23463", "sL_StrLoss": "10573", "sL_NStrLoss": "12890", "sL_ContLoss": "8520", "geom_point": "0101000020E6100000EDF7400231B35EC061EB0896D99D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799117683999953, 49.232450432000114 ], [ -122.800765989999945, 49.232453287000126 ], [ -122.800763178999915, 49.233152132000079 ], [ -122.800153987999934, 49.234071377000056 ], [ -122.799111118, 49.234069568000109 ], [ -122.799117683999953, 49.232450432000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.72984441301273", "sL_AssetLoss": "35350", "sL_BldgLoss": "25800", "sL_StrLoss": "11900", "sL_NStrLoss": "13900", "sL_ContLoss": "9550", "geom_point": "0101000020E6100000E332B086B2B25EC097D1E184369E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793030612999942, 49.233788976000056 ], [ -122.793342984999953, 49.233789536000153 ], [ -122.793338480999978, 49.234868958000035 ], [ -122.792926385, 49.234868221000035 ], [ -122.792925255999975, 49.235138076000069 ], [ -122.792513156999917, 49.235137337000126 ], [ -122.792509766999942, 49.235946904000116 ], [ -122.792097660999943, 49.235946163000087 ], [ -122.792094263999942, 49.236755730000056 ], [ -122.791682150999947, 49.236754987000083 ], [ -122.791677610999955, 49.237834410000112 ], [ -122.7912654899999, 49.237833666000093 ], [ -122.791263215999919, 49.238373376000048 ], [ -122.790491914999961, 49.238371981000085 ], [ -122.791086229, 49.237734455000123 ], [ -122.791091979999919, 49.237722867000059 ], [ -122.792125203999916, 49.23563728700006 ], [ -122.793030612999942, 49.233788976000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24492917", "BldgCostT": "16891667", "sL_LossRatio": "0.728687267148806", "sL_AssetLoss": "456300", "sL_BldgLoss": "332500", "sL_StrLoss": "151200", "sL_NStrLoss": "181300", "sL_ContLoss": "123800", "geom_point": "0101000020E6100000F0AEABB036B25EC015928ACE4B9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.782020085999974, 49.224006336000066 ], [ -122.782030212, 49.223860259000084 ], [ -122.78147967699999, 49.223843823000081 ], [ -122.781728984999987, 49.220247347000083 ], [ -122.782275972999983, 49.220263677 ], [ -122.782277103999931, 49.220006446000085 ], [ -122.783513021999923, 49.22000876900006 ], [ -122.783515379999983, 49.219469057000047 ], [ -122.783927347999935, 49.219469829000111 ], [ -122.783933228999913, 49.218120547000062 ], [ -122.785581057999963, 49.218123617000089 ], [ -122.785579889999909, 49.218393473000127 ], [ -122.786815767999911, 49.218395760000099 ], [ -122.78681460899999, 49.218665618000045 ], [ -122.787638531999946, 49.218667135000054 ], [ -122.787633906999972, 49.219746561000086 ], [ -122.78722193599999, 49.21974580300013 ], [ -122.787220777999934, 49.220015659000047 ], [ -122.786808805999954, 49.220014900000109 ], [ -122.786807152999984, 49.220398849000048 ], [ -122.787208781999979, 49.220410821000044 ], [ -122.787198674999914, 49.220556900000126 ], [ -122.787749170999959, 49.220573306000041 ], [ -122.787731675999908, 49.220826174000109 ], [ -122.788453240999957, 49.220827497000052 ], [ -122.788452350999989, 49.221035897000071 ], [ -122.787193291, 49.221849593000123 ], [ -122.786930116999898, 49.222154403000069 ], [ -122.785732694999936, 49.222872213000102 ], [ -122.785526913999931, 49.222862209000112 ], [ -122.78523960099993, 49.22269130500009 ], [ -122.785018703, 49.222745392000071 ], [ -122.785044794999962, 49.223006090000055 ], [ -122.784852712999978, 49.223149892000023 ], [ -122.784067482999916, 49.223444702000087 ], [ -122.783916200999968, 49.223597093000066 ], [ -122.782872216, 49.224031772000032 ], [ -122.782020085999974, 49.224006336000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.711192277589356", "sL_AssetLoss": "38330", "sL_BldgLoss": "27260", "sL_StrLoss": "11600", "sL_NStrLoss": "15660", "sL_ContLoss": "11070", "geom_point": "0101000020E610000022B8FC4DC9B25EC05BBABC184E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792920742999982, 49.236217498000073 ], [ -122.794157066999958, 49.236219708000071 ], [ -122.794152582, 49.237299130000068 ], [ -122.792916231999982, 49.237296921000031 ], [ -122.792920742999982, 49.236217498000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.745498199279712", "sL_AssetLoss": "8330", "sL_BldgLoss": "6210", "sL_StrLoss": "3000", "sL_NStrLoss": "3210", "sL_ContLoss": "2120", "geom_point": "0101000020E6100000C77EDC9F87B25EC07ACF3758EE9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78846360599999, 49.218398790000094 ], [ -122.788466093999929, 49.217816123000098 ], [ -122.788994693999939, 49.217930203000094 ], [ -122.791669824999985, 49.218404618000122 ], [ -122.78846360599999, 49.218398790000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35278500", "BldgCostT": "24330000", "sL_LossRatio": "0.729965371486315", "sL_AssetLoss": "649176", "sL_BldgLoss": "473876", "sL_StrLoss": "216546", "sL_NStrLoss": "257330", "sL_ContLoss": "175300", "geom_point": "0101000020E61000003C80879A4FB35EC0EBB86D21409D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79995683199995, 49.228737990000084 ], [ -122.799957090999925, 49.22867387900002 ], [ -122.798720954999936, 49.228671732000038 ], [ -122.798724933999921, 49.227692108000035 ], [ -122.798727531999958, 49.227052595000032 ], [ -122.799679822999948, 49.227054250000023 ], [ -122.799784083999953, 49.225541802000066 ], [ -122.800980980999952, 49.225408701000035 ], [ -122.802284499999956, 49.225330389000057 ], [ -122.804415095999957, 49.225145202000064 ], [ -122.80483879499999, 49.225397293000057 ], [ -122.805666507999987, 49.226381488000079 ], [ -122.80561306, 49.227158242000087 ], [ -122.805593344999949, 49.227444746000074 ], [ -122.805145711999941, 49.227431482000014 ], [ -122.805144227999975, 49.227453057000048 ], [ -122.804906502000023, 49.227446012000023 ], [ -122.804903759999945, 49.228142623000082 ], [ -122.802431515999899, 49.228138421000011 ], [ -122.802430438999963, 49.228408277000106 ], [ -122.802018396000037, 49.228407572000037 ], [ -122.802017317999955, 49.228677428000069 ], [ -122.801193228, 49.228676013000033 ], [ -122.801192830999938, 49.228774670000071 ], [ -122.802538173999935, 49.228814580000062 ], [ -122.802581792999931, 49.228181275000054 ], [ -122.805904943999934, 49.228279783000048 ], [ -122.805830900000032, 49.228368192000076 ], [ -122.803640102999964, 49.229893500000109 ], [ -122.80280000399992, 49.230665491000138 ], [ -122.802220021999972, 49.231591201000043 ], [ -122.801470035999913, 49.232386722000086 ], [ -122.798519584999923, 49.232299154000081 ], [ -122.798767618999989, 49.22870268500008 ], [ -122.79995683199995, 49.228737990000084 ] ], [ [ -122.799962538999949, 49.227324598000045 ], [ -122.800865044999938, 49.227326158000082 ], [ -122.799962640999951, 49.227299375000058 ], [ -122.799962538999949, 49.227324598000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "424726101", "BldgCostT": "283373563", "sL_LossRatio": "0.834969886825464", "sL_AssetLoss": "1129406", "sL_BldgLoss": "943020", "sL_StrLoss": "523060", "sL_NStrLoss": "419960", "sL_ContLoss": "186386", "geom_point": "0101000020E6100000BC3E7B4770C85EC02F76144A53A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.131314203999949, 49.291940696000019 ], [ -123.131199610999928, 49.291904389000088 ], [ -123.131076816999922, 49.291934407000063 ], [ -123.130611902999973, 49.292183289000029 ], [ -123.130428973999955, 49.292140601000028 ], [ -123.129298397999975, 49.291418786000122 ], [ -123.129561309999957, 49.291245542000063 ], [ -123.12981859300001, 49.291075990000088 ], [ -123.130597302999917, 49.290575189000059 ], [ -123.131232901999923, 49.290144385000104 ], [ -123.132808421, 49.291162599000103 ], [ -123.13439839599998, 49.292192908000111 ], [ -123.133718800999972, 49.292623388000045 ], [ -123.133440861999944, 49.292812879000053 ], [ -123.133094488999944, 49.293049 ], [ -123.133075907999967, 49.293037418000011 ], [ -123.131314203999949, 49.291940696000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239331666", "BldgCostT": "150230681", "sL_LossRatio": "0.713715923898879", "sL_AssetLoss": "959250", "sL_BldgLoss": "684632", "sL_StrLoss": "355180", "sL_NStrLoss": "329452", "sL_ContLoss": "274618", "geom_point": "0101000020E610000042928BF744C85EC0C0138ADF5AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127893879999959, 49.292899893000104 ], [ -123.127550270999905, 49.29272299100009 ], [ -123.127326683999925, 49.29286626500005 ], [ -123.12713283199993, 49.292785533000085 ], [ -123.127100954999918, 49.29269453400007 ], [ -123.127400998999988, 49.292505880000128 ], [ -123.128205895999912, 49.291973045000091 ], [ -123.128294402999941, 49.291914431000116 ], [ -123.126641174999946, 49.290863213000144 ], [ -123.126717582999916, 49.290754824000068 ], [ -123.126602373999916, 49.290638129000044 ], [ -123.12642080900001, 49.290508904000085 ], [ -123.126389600999943, 49.290483250000122 ], [ -123.126204706999985, 49.290389903000097 ], [ -123.126463591999979, 49.290214025000076 ], [ -123.126632323999942, 49.290099436000041 ], [ -123.126792983999948, 49.28999029800012 ], [ -123.126870285999942, 49.28994045000011 ], [ -123.127447312999976, 49.289568202000076 ], [ -123.129019497999963, 49.290039604000157 ], [ -123.128498335999922, 49.290400006 ], [ -123.128394796999913, 49.290471586000088 ], [ -123.129246800999923, 49.290696900000121 ], [ -123.12981859300001, 49.291075990000088 ], [ -123.129561309999957, 49.291245542000063 ], [ -123.129298397999975, 49.291418786000122 ], [ -123.130428973999955, 49.292140601000028 ], [ -123.130611902999973, 49.292183289000029 ], [ -123.131076816999922, 49.291934407000063 ], [ -123.131199610999928, 49.291904389000088 ], [ -123.131314203999949, 49.291940696000019 ], [ -123.133075907999967, 49.293037418000011 ], [ -123.133094488999944, 49.293049 ], [ -123.132780299999936, 49.293262704000057 ], [ -123.132513291999913, 49.293444306000076 ], [ -123.132573517999958, 49.29347537899999 ], [ -123.132452863999944, 49.293566377000033 ], [ -123.132439380999969, 49.293576548000019 ], [ -123.132309732999971, 49.293535104000085 ], [ -123.132234331999939, 49.293521890000079 ], [ -123.132063767999981, 49.293586954000055 ], [ -123.131699618999932, 49.293338629000047 ], [ -123.131430980999966, 49.29315543600007 ], [ -123.131341059999926, 49.293211398000047 ], [ -123.131277497999989, 49.293250955000083 ], [ -123.131092322999976, 49.293123137000087 ], [ -123.130634753999971, 49.292807256000081 ], [ -123.130526998999926, 49.292880169000071 ], [ -123.129498578999957, 49.293576036000026 ], [ -123.128717140999981, 49.293159682000038 ], [ -123.127893879999959, 49.292899893000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "326721832", "BldgCostT": "208642445", "sL_LossRatio": "0.786054784141772", "sL_AssetLoss": "900151", "sL_BldgLoss": "707568", "sL_StrLoss": "379100", "sL_NStrLoss": "328468", "sL_ContLoss": "192583", "geom_point": "0101000020E61000001DE2FD5D04CA5EC051586FF598A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155410342999971, 49.261215806000017 ], [ -123.155419780999964, 49.261035899000113 ], [ -123.157729606000018, 49.26111480600013 ], [ -123.157715185999933, 49.261575592 ], [ -123.157701198, 49.262029227000049 ], [ -123.157687402999983, 49.262476404000033 ], [ -123.157670827999979, 49.26292269000006 ], [ -123.157670484999926, 49.262931797000057 ], [ -123.157656016999951, 49.263414252000096 ], [ -123.157641385999966, 49.263900209000113 ], [ -123.15529878699999, 49.263861008000092 ], [ -123.155317224999976, 49.263363983000033 ], [ -123.155334488999969, 49.2628980900001 ], [ -123.155352014999949, 49.262432896000043 ], [ -123.155364169, 49.262005792000068 ], [ -123.155394984999973, 49.261508104000043 ], [ -123.155410342999971, 49.261215806000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "294326842", "BldgCostT": "190681793", "sL_LossRatio": "0.74619924836374", "sL_AssetLoss": "1250871", "sL_BldgLoss": "933399", "sL_StrLoss": "389710", "sL_NStrLoss": "543689", "sL_ContLoss": "317472", "geom_point": "0101000020E6100000214E8292DDC95EC0EC84D9FCA6A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152974011999987, 49.262861098000094 ], [ -123.153001386999904, 49.261943982000069 ], [ -123.153643710999944, 49.261952807000029 ], [ -123.154305824999952, 49.261989233000115 ], [ -123.155364169, 49.262005792000068 ], [ -123.155352014999949, 49.262432896000043 ], [ -123.155334488999969, 49.2628980900001 ], [ -123.155317224999976, 49.263363983000033 ], [ -123.15529878699999, 49.263861008000092 ], [ -123.152938396999929, 49.263821193000034 ], [ -123.152956874, 49.263322443000028 ], [ -123.152974011999987, 49.262861098000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "428953047", "BldgCostT": "287108831", "sL_LossRatio": "0.732071327161291", "sL_AssetLoss": "1664387", "sL_BldgLoss": "1218450", "sL_StrLoss": "525060", "sL_NStrLoss": "693390", "sL_ContLoss": "445937", "geom_point": "0101000020E6100000BEF0170EDFC95EC01517804669A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154305824999952, 49.261989233000115 ], [ -123.153643710999944, 49.261952807000029 ], [ -123.153001386999904, 49.261943982000069 ], [ -123.153060498999977, 49.261003398000085 ], [ -123.153078054999966, 49.2605440970001 ], [ -123.153096976999933, 49.260049602000031 ], [ -123.15547038899993, 49.260099591000049 ], [ -123.155445602999961, 49.260558576000101 ], [ -123.155419780999964, 49.261035899000113 ], [ -123.155410342999971, 49.261215806000017 ], [ -123.155394984999973, 49.261508104000043 ], [ -123.155364169, 49.262005792000068 ], [ -123.154305824999952, 49.261989233000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "607502634", "BldgCostT": "404941093", "sL_LossRatio": "0.754185411735379", "sL_AssetLoss": "2631581", "sL_BldgLoss": "1984700", "sL_StrLoss": "950640", "sL_NStrLoss": "1034060", "sL_ContLoss": "646881", "geom_point": "0101000020E610000046973060AAC95EC0E6EE74C67BA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150574929999891, 49.262824806000047 ], [ -123.150603979999985, 49.261904117000064 ], [ -123.14821329099999, 49.261866188000035 ], [ -123.148232098999955, 49.261413090000069 ], [ -123.148250203999936, 49.260976285 ], [ -123.148269925999941, 49.260441473000057 ], [ -123.148287283999935, 49.259969396000024 ], [ -123.150671701999926, 49.260018909000102 ], [ -123.15247175599994, 49.260041700000066 ], [ -123.153096976999933, 49.260049602000031 ], [ -123.153078054999966, 49.2605440970001 ], [ -123.153060498999977, 49.261003398000085 ], [ -123.153001386999904, 49.261943982000069 ], [ -123.152974011999987, 49.262861098000094 ], [ -123.152956874, 49.263322443000028 ], [ -123.152938396999929, 49.263821193000034 ], [ -123.152346992999966, 49.263811594000089 ], [ -123.15054359599992, 49.263782302000081 ], [ -123.150560581999926, 49.263262962000077 ], [ -123.150574414999952, 49.262840188000062 ], [ -123.150574929999891, 49.262824806000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408883916", "BldgCostT": "279476666", "sL_LossRatio": "0.790503650948823", "sL_AssetLoss": "2833510", "sL_BldgLoss": "2239900", "sL_StrLoss": "1001430", "sL_NStrLoss": "1238470", "sL_ContLoss": "593610", "geom_point": "0101000020E61000007653D2DC2DA65EC07CD53520639B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.594608250999968, 49.214471056000065 ], [ -122.596321459999928, 49.214525181000056 ], [ -122.596321324999934, 49.214527019000087 ], [ -122.596521520999957, 49.214373064000092 ], [ -122.596523662999985, 49.214109795000077 ], [ -122.596862319999943, 49.214110978000058 ], [ -122.596936042999985, 49.214054283000031 ], [ -122.596937856999929, 49.213831234000054 ], [ -122.596716279999953, 49.213824237000033 ], [ -122.596794097999961, 49.21276248700012 ], [ -122.596534694999917, 49.212754294000085 ], [ -122.596532449, 49.213030388000092 ], [ -122.595708633999948, 49.213027509000028 ], [ -122.595706433999965, 49.213297359000087 ], [ -122.595294521999961, 49.213295917000067 ], [ -122.59529011799999, 49.213835622000069 ], [ -122.594729708999964, 49.213833657000116 ], [ -122.594889210999952, 49.212996580000059 ], [ -122.59490797699999, 49.21262769500008 ], [ -122.594786292999956, 49.212228308000071 ], [ -122.594559881999913, 49.211384891000129 ], [ -122.594573786999931, 49.210632892000028 ], [ -122.595272692999984, 49.210555899000092 ], [ -122.595588611, 49.210552283000069 ], [ -122.595955591999925, 49.210601816000093 ], [ -122.596346691999941, 49.210697906000043 ], [ -122.596648091999896, 49.210818289000052 ], [ -122.59689916499994, 49.210971010000016 ], [ -122.59709351199993, 49.21108919300007 ], [ -122.597358605, 49.211367896000077 ], [ -122.597526858999956, 49.211701051000034 ], [ -122.597708679999968, 49.212061103000046 ], [ -122.597877946999958, 49.212282447000064 ], [ -122.597925386, 49.212344508000044 ], [ -122.598360981, 49.212581802000031 ], [ -122.59898430899996, 49.212693395000016 ], [ -122.598980711999957, 49.213716908000038 ], [ -122.598918503999982, 49.215409889000064 ], [ -122.598928709999967, 49.215793659000035 ], [ -122.598933510999956, 49.21597359800009 ], [ -122.598932406999921, 49.216118604 ], [ -122.59711372, 49.21611530900001 ], [ -122.596735685999946, 49.21615919200007 ], [ -122.59640640799995, 49.216363201000064 ], [ -122.596258526999947, 49.216601006000111 ], [ -122.596248290999966, 49.216964703000016 ], [ -122.596262292999981, 49.217003996000102 ], [ -122.596301798999932, 49.217115098000107 ], [ -122.594116885999966, 49.217049611000071 ], [ -122.594467956999964, 49.215207285000112 ], [ -122.594608250999968, 49.214471056000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123813472", "BldgCostT": "75158933", "sL_LossRatio": "0.657559566433481", "sL_AssetLoss": "1633890", "sL_BldgLoss": "1074380", "sL_StrLoss": "425120", "sL_NStrLoss": "649260", "sL_ContLoss": "559510", "geom_point": "0101000020E6100000DEC21CD2E2A55EC055E5490C619B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.588238868999937, 49.21427754500013 ], [ -122.588259351999966, 49.214256572000082 ], [ -122.58849116, 49.21401971800006 ], [ -122.58852948399999, 49.212993652000108 ], [ -122.588693298999928, 49.212314906000053 ], [ -122.588752405999983, 49.212070756000109 ], [ -122.590367561999955, 49.212080091000047 ], [ -122.590381887999911, 49.212080161000138 ], [ -122.590527914999939, 49.212080998000033 ], [ -122.590642331999959, 49.212060729000058 ], [ -122.591041430999951, 49.211990024000073 ], [ -122.591498697999953, 49.211908997000144 ], [ -122.591888983, 49.21177259500007 ], [ -122.592069092999978, 49.211665936000031 ], [ -122.593201992999951, 49.210995004000054 ], [ -122.593757503999882, 49.210776491000054 ], [ -122.593770862999975, 49.210774136000119 ], [ -122.594573786999931, 49.210632892000028 ], [ -122.594559881999913, 49.211384891000129 ], [ -122.594786292999956, 49.212228308000071 ], [ -122.59490797699999, 49.21262769500008 ], [ -122.594889210999952, 49.212996580000059 ], [ -122.594729708999964, 49.213833657000116 ], [ -122.594466288999939, 49.213832732000085 ], [ -122.594464080999899, 49.21410258300007 ], [ -122.594052163999962, 49.21410113700005 ], [ -122.594049278999975, 49.214453391000113 ], [ -122.594608250999968, 49.214471056000065 ], [ -122.594467956999964, 49.215207285000112 ], [ -122.594116885999966, 49.217049611000071 ], [ -122.593349977999978, 49.216949703000111 ], [ -122.592519298999918, 49.216762999000117 ], [ -122.591856456999921, 49.216574164000043 ], [ -122.591637185999971, 49.216511708000063 ], [ -122.590379634, 49.215969985000122 ], [ -122.58980289899992, 49.215654387000022 ], [ -122.589175211999972, 49.215229011000119 ], [ -122.588740780999899, 49.214789037000052 ], [ -122.588238868999937, 49.21427754500013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98927000", "BldgCostT": "63890000", "sL_LossRatio": "0.692093339374717", "sL_AssetLoss": "441400", "sL_BldgLoss": "305490", "sL_StrLoss": "113460", "sL_NStrLoss": "192030", "sL_ContLoss": "135910", "geom_point": "0101000020E61000005BDFF21E08C85EC0514EEE561AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.125873285999944, 49.290458503000067 ], [ -123.125112112999958, 49.290364405000055 ], [ -123.124772286999985, 49.290369812000066 ], [ -123.123845092999943, 49.290647705000076 ], [ -123.12338851399997, 49.290450901000042 ], [ -123.123917630999955, 49.290075884000039 ], [ -123.124045544999944, 49.289992833000049 ], [ -123.12414837599998, 49.289926057000059 ], [ -123.124162191999986, 49.289917107000072 ], [ -123.124747873999979, 49.289536836000174 ], [ -123.124757665999965, 49.289530491000058 ], [ -123.124894387999944, 49.289441697 ], [ -123.125570088999893, 49.289030017000037 ], [ -123.125799691999973, 49.288873085000056 ], [ -123.126187494999968, 49.289204106000092 ], [ -123.127447312999976, 49.289568202000076 ], [ -123.126870285999942, 49.28994045000011 ], [ -123.126792983999948, 49.28999029800012 ], [ -123.126632323999942, 49.290099436000041 ], [ -123.126463591999979, 49.290214025000076 ], [ -123.126204706999985, 49.290389903000097 ], [ -123.126389600999943, 49.290483250000122 ], [ -123.12642080900001, 49.290508904000085 ], [ -123.126602373999916, 49.290638129000044 ], [ -123.126717582999916, 49.290754824000068 ], [ -123.126493184999973, 49.290613698000072 ], [ -123.126285205999963, 49.290544682000082 ], [ -123.126260191999961, 49.29053640300009 ], [ -123.125873285999944, 49.290458503000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "558123658", "BldgCostT": "368159987", "sL_LossRatio": "0.729558484416427", "sL_AssetLoss": "2084807.5", "sL_BldgLoss": "1520989", "sL_StrLoss": "611193", "sL_NStrLoss": "909796", "sL_ContLoss": "563818.5", "geom_point": "0101000020E61000002B5A6719B5C75EC0EDCEE2DEDFA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124894387999944, 49.289441697 ], [ -123.122760047999989, 49.288794867000021 ], [ -123.122189387, 49.289150380000073 ], [ -123.122105634999912, 49.289202538000083 ], [ -123.122073707999974, 49.289222436000095 ], [ -123.121242117999984, 49.288957063000097 ], [ -123.119098014999949, 49.288379289000055 ], [ -123.116194220999972, 49.287664096000057 ], [ -123.11642081899997, 49.287519012000068 ], [ -123.116959997999984, 49.287173806000091 ], [ -123.117889006999917, 49.286556393000062 ], [ -123.118427798999974, 49.286844596000037 ], [ -123.118814099999938, 49.28697831800006 ], [ -123.119488094999923, 49.287211609000053 ], [ -123.120435616999941, 49.287491702000061 ], [ -123.123384578999946, 49.288364803000078 ], [ -123.125570088999893, 49.289030017000037 ], [ -123.124894387999944, 49.289441697 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29971416", "BldgCostT": "16776666", "sL_LossRatio": "0.710330031213935", "sL_AssetLoss": "129109", "sL_BldgLoss": "91710", "sL_StrLoss": "45580", "sL_NStrLoss": "46130", "sL_ContLoss": "37399", "geom_point": "0101000020E610000089356455E7C75EC0CAD37FF70AA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122073707999974, 49.289222436000095 ], [ -123.122105634999912, 49.289202538000083 ], [ -123.122189387, 49.289150380000073 ], [ -123.122760047999989, 49.288794867000021 ], [ -123.124894387999944, 49.289441697 ], [ -123.124757665999965, 49.289530491000058 ], [ -123.124747873999979, 49.289536836000174 ], [ -123.124162191999986, 49.289917107000072 ], [ -123.12414837599998, 49.289926057000059 ], [ -123.124045544999944, 49.289992833000049 ], [ -123.123917630999955, 49.290075884000039 ], [ -123.123687668999935, 49.289945106000033 ], [ -123.123342758999968, 49.289748942000109 ], [ -123.122705330999949, 49.289454545000119 ], [ -123.122335849999928, 49.289318760000043 ], [ -123.122073707999974, 49.289222436000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "320599333", "BldgCostT": "216373333", "sL_LossRatio": "0.823019376589684", "sL_AssetLoss": "669158", "sL_BldgLoss": "550730", "sL_StrLoss": "314340", "sL_NStrLoss": "236390", "sL_ContLoss": "118428", "geom_point": "0101000020E6100000AA2F091FA3C75EC00AFA5E850CA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122106838999954, 49.290754328000034 ], [ -123.121436193999898, 49.290405156000077 ], [ -123.120795685999937, 49.290214341000059 ], [ -123.120103147999885, 49.290008021000148 ], [ -123.118993782999979, 49.289866926000094 ], [ -123.118258576999949, 49.290096401 ], [ -123.117926263999948, 49.29033615600008 ], [ -123.117633548999947, 49.290547349000036 ], [ -123.116809374999946, 49.290184368000105 ], [ -123.116634769999919, 49.290107478000046 ], [ -123.115913200999955, 49.289888922000074 ], [ -123.11593698499999, 49.289506589000027 ], [ -123.11490277899999, 49.289507621000077 ], [ -123.114900900999913, 49.288699302000069 ], [ -123.114902882999985, 49.288698057000033 ], [ -123.115725989999945, 49.288697235000036 ], [ -123.115725358999939, 49.28842738000008 ], [ -123.115333168999939, 49.28842777300008 ], [ -123.115438538, 49.288361585000082 ], [ -123.115824041999986, 49.288288268000073 ], [ -123.115768881999912, 49.288268808000105 ], [ -123.115640191999915, 49.288195102000017 ], [ -123.115483287999922, 49.28810980300004 ], [ -123.115708162999937, 49.287968825000057 ], [ -123.116100815999957, 49.287722661000075 ], [ -123.116194220999972, 49.287664096000057 ], [ -123.119098014999949, 49.288379289000055 ], [ -123.121242117999984, 49.288957063000097 ], [ -123.122073707999974, 49.289222436000095 ], [ -123.122335849999928, 49.289318760000043 ], [ -123.122705330999949, 49.289454545000119 ], [ -123.123342758999968, 49.289748942000109 ], [ -123.123687668999935, 49.289945106000033 ], [ -123.123917630999955, 49.290075884000039 ], [ -123.12338851399997, 49.290450901000042 ], [ -123.123845092999943, 49.290647705000076 ], [ -123.124772286999985, 49.290369812000066 ], [ -123.125112112999958, 49.290364405000055 ], [ -123.125873285999944, 49.290458503000067 ], [ -123.126260191999961, 49.29053640300009 ], [ -123.126285205999963, 49.290544682000082 ], [ -123.126493184999973, 49.290613698000072 ], [ -123.126717582999916, 49.290754824000068 ], [ -123.126641174999946, 49.290863213000144 ], [ -123.126429176999977, 49.290728407000067 ], [ -123.125834534999967, 49.290574374000052 ], [ -123.125226047999945, 49.29049018000002 ], [ -123.124414862999927, 49.290644152 ], [ -123.124021696999975, 49.29086609600008 ], [ -123.123375556999946, 49.291230882000058 ], [ -123.123500883999924, 49.29127988900013 ], [ -123.123544537999933, 49.291385346 ], [ -123.123401048999966, 49.291435576 ], [ -123.123284004999917, 49.291448691000106 ], [ -123.122598884999888, 49.291010511000088 ], [ -123.122106838999954, 49.290754328000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188004833", "BldgCostT": "125768333", "sL_LossRatio": "0.733643653810091", "sL_AssetLoss": "2154332", "sL_BldgLoss": "1580512", "sL_StrLoss": "788072", "sL_NStrLoss": "792440", "sL_ContLoss": "573820", "geom_point": "0101000020E61000006CAC71F4C0A45EC0D4717818459F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.575386582999926, 49.249223985000043 ], [ -122.575470512999942, 49.248086928000141 ], [ -122.574227433999951, 49.248047449000097 ], [ -122.574268417999988, 49.247492396000055 ], [ -122.573580407999941, 49.247489858000108 ], [ -122.573578083999934, 49.247759708000054 ], [ -122.572341498999975, 49.247755137000048 ], [ -122.572348490999971, 49.24694558900012 ], [ -122.573172868, 49.246948638000063 ], [ -122.573177519999959, 49.246408939000048 ], [ -122.572353151999948, 49.246405890000119 ], [ -122.572357247999946, 49.245931613000018 ], [ -122.571945167999914, 49.245918514000046 ], [ -122.571936303999948, 49.246944063000051 ], [ -122.571524114999988, 49.246942535000073 ], [ -122.571521779999912, 49.247212384000058 ], [ -122.571109588999917, 49.247210855000077 ], [ -122.571107251999962, 49.247480704000068 ], [ -122.570695058999902, 49.247479172000084 ], [ -122.570692718999908, 49.247749021000068 ], [ -122.570280523999912, 49.247747489000055 ], [ -122.57027818200001, 49.248017338000167 ], [ -122.56862939399997, 49.248011194000128 ], [ -122.568631744999934, 49.247741345000122 ], [ -122.568181419999974, 49.247739663000054 ], [ -122.568204897000015, 49.247611380000087 ], [ -122.568290157999968, 49.246671149000107 ], [ -122.568298417999969, 49.245441764000091 ], [ -122.568371461999917, 49.244707555000033 ], [ -122.568351562999936, 49.244029300000101 ], [ -122.568357980999963, 49.243448360000045 ], [ -122.568376606999934, 49.241759383000037 ], [ -122.568377597999927, 49.240946581000074 ], [ -122.568423378999967, 49.24022109600002 ], [ -122.568481105999979, 49.239305513 ], [ -122.568485195999955, 49.239240822000035 ], [ -122.568540705999979, 49.238369287000133 ], [ -122.568564359999968, 49.23799630900011 ], [ -122.569340783999962, 49.2382165940001 ], [ -122.570420608999925, 49.238831893000047 ], [ -122.570976589999987, 49.239635109000098 ], [ -122.571017781999942, 49.239729669000113 ], [ -122.57144748199994, 49.240716102000157 ], [ -122.57176260699994, 49.240969586000112 ], [ -122.572938995999934, 49.241351296000069 ], [ -122.575645392999917, 49.241423888000021 ], [ -122.576222601000012, 49.241354112000096 ], [ -122.57692602, 49.241123401000024 ], [ -122.577657285999962, 49.240694699000102 ], [ -122.57823871399998, 49.240174894000091 ], [ -122.578573992999978, 49.239474209000051 ], [ -122.578781690999961, 49.239375915000103 ], [ -122.579575819999931, 49.239308932000071 ], [ -122.579589968999983, 49.239539713000042 ], [ -122.579596010999921, 49.239638472000102 ], [ -122.579616529999939, 49.239973734000046 ], [ -122.579716504999979, 49.241682046000079 ], [ -122.579736287999978, 49.242020264000075 ], [ -122.579761650999927, 49.242581492000049 ], [ -122.579768972999958, 49.242743542000092 ], [ -122.579774658999938, 49.242869659000043 ], [ -122.579788506999961, 49.243176208000065 ], [ -122.579807389999985, 49.243490929000053 ], [ -122.579864141999934, 49.244434943000073 ], [ -122.579919876999952, 49.245362790000108 ], [ -122.580037041999958, 49.247043612000056 ], [ -122.580075403999956, 49.247593773000098 ], [ -122.580198289999899, 49.24935699600006 ], [ -122.577628077, 49.249323931000056 ], [ -122.576239528999935, 49.249277994000025 ], [ -122.575386582999926, 49.249223985000043 ] ], [ [ -122.569052167999956, 49.246797585000131 ], [ -122.569050985999965, 49.246933335000051 ], [ -122.569463173999978, 49.246934873000036 ], [ -122.569465519999966, 49.24666502300002 ], [ -122.570289890999931, 49.246668092000071 ], [ -122.570294574999963, 49.24612839400001 ], [ -122.56988239399999, 49.246126859000086 ], [ -122.569884770999948, 49.245852999000128 ], [ -122.569539441999922, 49.245842014000054 ], [ -122.569060614999927, 49.245826781000069 ], [ -122.569052167999956, 49.246797585000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18419833", "BldgCostT": "12703333", "sL_LossRatio": "0.915084805343176", "sL_AssetLoss": "45516", "sL_BldgLoss": "41651", "sL_StrLoss": "31990", "sL_NStrLoss": "9661", "sL_ContLoss": "3865", "geom_point": "0101000020E610000029183A1B17A35EC036D85041B09F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.548034661999935, 49.246281473000067 ], [ -122.54804176, 49.245503765000116 ], [ -122.54969046, 49.245510203000073 ], [ -122.549682965999978, 49.246334221000076 ], [ -122.551194290999959, 49.246382565000026 ], [ -122.551010546999919, 49.248854377000043 ], [ -122.545476579999928, 49.249372912000105 ], [ -122.54571229199999, 49.246207109000139 ], [ -122.548034661999935, 49.246281473000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.841332378223496", "sL_AssetLoss": "2792", "sL_BldgLoss": "2349", "sL_StrLoss": "1560", "sL_NStrLoss": "789", "sL_ContLoss": "443", "geom_point": "0101000020E61000002FF3C24252A25EC001A87F9C729F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.536090170999955, 49.246192016000116 ], [ -122.536012419999977, 49.244916362000048 ], [ -122.536093758999968, 49.244916688000082 ], [ -122.536091229999926, 49.245186537000031 ], [ -122.53650340199999, 49.245188192000086 ], [ -122.536493298000025, 49.246267583000083 ], [ -122.536092190999966, 49.246265974000089 ], [ -122.536090170999955, 49.246192016000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "362385583", "BldgCostT": "241138333", "sL_LossRatio": "0.789297749824703", "sL_AssetLoss": "2353150", "sL_BldgLoss": "1857336", "sL_StrLoss": "1063171", "sL_NStrLoss": "794165", "sL_ContLoss": "495814", "geom_point": "0101000020E61000009E20DA5C6FA35EC03F0D4A5EBE9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.567395160999951, 49.247736722000077 ], [ -122.567402233999942, 49.246927174000071 ], [ -122.563692544999981, 49.246913223000035 ], [ -122.563690166999976, 49.247183073000052 ], [ -122.56245359699993, 49.247178396000024 ], [ -122.562458758999966, 49.2465942910001 ], [ -122.562463136999924, 49.246099 ], [ -122.562050954999961, 49.246097438000099 ], [ -122.562046603999988, 49.246589407000037 ], [ -122.562043794999965, 49.24690698400012 ], [ -122.561631606999953, 49.246905422000047 ], [ -122.561629217999965, 49.247175270000106 ], [ -122.560212294999985, 49.247169885000083 ], [ -122.55998046099991, 49.247169002000106 ], [ -122.559985255999948, 49.246629304000066 ], [ -122.559573071999949, 49.246627734000072 ], [ -122.559575471999921, 49.246357885000123 ], [ -122.55916328899994, 49.246356313000085 ], [ -122.559165691999937, 49.246086464000022 ], [ -122.558753510999935, 49.246084891000059 ], [ -122.558748700999928, 49.246624588000053 ], [ -122.557686320999949, 49.246620526000051 ], [ -122.557099963000013, 49.246618280000106 ], [ -122.55710237599996, 49.246348431000136 ], [ -122.556690193999913, 49.246346850000073 ], [ -122.556704687999954, 49.244727756000067 ], [ -122.557116856999954, 49.244729337000059 ], [ -122.55711927099992, 49.244459488000111 ], [ -122.557531436999938, 49.244461068000071 ], [ -122.557534488999977, 49.244119556000072 ], [ -122.55729805499999, 49.24411200800003 ], [ -122.557352294999987, 49.243380948000123 ], [ -122.557128922999979, 49.243380092000052 ], [ -122.55712651, 49.243649942000026 ], [ -122.555065710999926, 49.243642023000092 ], [ -122.555068135999988, 49.243372174000051 ], [ -122.554655977999943, 49.243370586000125 ], [ -122.554662129999926, 49.242686428000091 ], [ -122.554661130999989, 49.242699877000113 ], [ -122.549179552999988, 49.24252459500007 ], [ -122.549227521999924, 49.241879576000066 ], [ -122.548821083999925, 49.241866568000077 ], [ -122.548670655999956, 49.243889019000093 ], [ -122.545027280999932, 49.2437723480001 ], [ -122.543188960999956, 49.243713434000036 ], [ -122.543199816999959, 49.243567696000113 ], [ -122.54193682499999, 49.243527201000077 ], [ -122.541955168999905, 49.243281054000128 ], [ -122.54091439699998, 49.243247673000056 ], [ -122.540864140999957, 49.243921807000042 ], [ -122.535919789, 49.243763088000058 ], [ -122.535847453999935, 49.242873621000101 ], [ -122.535766920999919, 49.242171366000036 ], [ -122.535747774999919, 49.242069555000029 ], [ -122.535729823999958, 49.241983993000062 ], [ -122.535708995999926, 49.240740665000018 ], [ -122.536084918000014, 49.240422291000087 ], [ -122.53678873299998, 49.239753816000047 ], [ -122.538459854999971, 49.238342227000018 ], [ -122.539264200999966, 49.237667904000041 ], [ -122.540066876999902, 49.237034045 ], [ -122.540697245, 49.236464056000095 ], [ -122.54101983799994, 49.236134667000073 ], [ -122.541613396999935, 49.235044460000083 ], [ -122.54406966599997, 49.235001739000097 ], [ -122.546258913999964, 49.234963604000043 ], [ -122.547122883999933, 49.234795696000091 ], [ -122.549600079999891, 49.235060669000056 ], [ -122.54983770299999, 49.235096190000093 ], [ -122.550047539000019, 49.235129832000041 ], [ -122.551674410999965, 49.235311097000164 ], [ -122.551720786999951, 49.235218882000098 ], [ -122.552318668999973, 49.234029908000139 ], [ -122.55235460599999, 49.233958399000059 ], [ -122.5524979, 49.233737740000045 ], [ -122.55272842499997, 49.233382899000041 ], [ -122.553047197999959, 49.23313990600009 ], [ -122.553329288999976, 49.232965891000063 ], [ -122.55364041599999, 49.232826295000088 ], [ -122.554232309999989, 49.232641606000051 ], [ -122.554906903999893, 49.232563983000055 ], [ -122.555634899000012, 49.232599008000101 ], [ -122.55601921, 49.232658099000055 ], [ -122.556375606999907, 49.232759595000054 ], [ -122.556647309999946, 49.232892694 ], [ -122.55707051, 49.233241402000061 ], [ -122.557253503999945, 49.233551810000044 ], [ -122.55737201399991, 49.234879288000116 ], [ -122.559665030999952, 49.234907924000034 ], [ -122.559793503999984, 49.234987889000138 ], [ -122.56038070299995, 49.235511992000156 ], [ -122.560539491999961, 49.23607890500012 ], [ -122.56078480799999, 49.236422111000174 ], [ -122.561520879999932, 49.236990394000102 ], [ -122.561795608999972, 49.237137056000073 ], [ -122.562286502999953, 49.23739910000009 ], [ -122.563576985999987, 49.23743040100014 ], [ -122.563901922999932, 49.237364326000041 ], [ -122.564361300999963, 49.237270907000067 ], [ -122.565269287999968, 49.237221091000052 ], [ -122.566901213, 49.237524406000084 ], [ -122.567824256999941, 49.237786319000044 ], [ -122.568564359999968, 49.23799630900011 ], [ -122.568540705999979, 49.238369287000133 ], [ -122.568485195999955, 49.239240822000035 ], [ -122.568481105999979, 49.239305513 ], [ -122.568423378999967, 49.24022109600002 ], [ -122.568377597999927, 49.240946581000074 ], [ -122.568376606999934, 49.241759383000037 ], [ -122.568357980999963, 49.243448360000045 ], [ -122.568351562999936, 49.244029300000101 ], [ -122.568371461999917, 49.244707555000033 ], [ -122.568298417999969, 49.245441764000091 ], [ -122.568290157999968, 49.246671149000107 ], [ -122.568204897000015, 49.247611380000087 ], [ -122.568181419999974, 49.247739663000054 ], [ -122.567395160999951, 49.247736722000077 ] ], [ [ -122.559175300999968, 49.245007069000039 ], [ -122.559176441999966, 49.244878875000026 ], [ -122.558764374999953, 49.244865726000029 ], [ -122.558763128999885, 49.2450054950001 ], [ -122.559175300999968, 49.245007069000039 ] ], [ [ -122.549799207999953, 49.238293492000061 ], [ -122.549824814999965, 49.237949071000095 ], [ -122.547961292999986, 49.237889423000091 ], [ -122.547909426000018, 49.238586652000123 ], [ -122.546694811999899, 49.238547758000038 ], [ -122.54596586599996, 49.238524408000025 ], [ -122.545959474999947, 49.238610275000042 ], [ -122.546688315999958, 49.238633622000123 ], [ -122.54734175599999, 49.238654548000092 ], [ -122.547310963999948, 49.239068398000057 ], [ -122.548234720999943, 49.239097973000078 ], [ -122.54829813299996, 49.238245449 ], [ -122.549799207999953, 49.238293492000061 ] ], [ [ -122.551971289999969, 49.237796825000018 ], [ -122.551986632999942, 49.237590332000082 ], [ -122.5517160429999, 49.237581678000083 ], [ -122.551709928999941, 49.23766396300006 ], [ -122.551101600999971, 49.237644506 ], [ -122.551092369999978, 49.237768714 ], [ -122.551971289999969, 49.237796825000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392124774", "BldgCostT": "254933775", "sL_LossRatio": "0.747865293429794", "sL_AssetLoss": "6225680", "sL_BldgLoss": "4655970", "sL_StrLoss": "2237860", "sL_NStrLoss": "2418110", "sL_ContLoss": "1569710", "geom_point": "0101000020E610000069A718AD04C75EC0618B8B4048A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109373892999926, 49.277236015000035 ], [ -123.108960579, 49.276811498000072 ], [ -123.108908281999973, 49.276833241000119 ], [ -123.108888112999949, 49.276841612000084 ], [ -123.108708091, 49.276916399000136 ], [ -123.108119793999919, 49.277072704000062 ], [ -123.107677715999912, 49.27713289000009 ], [ -123.107675307999941, 49.277215716000072 ], [ -123.106415610999946, 49.277209007000081 ], [ -123.103752898999971, 49.277157407000082 ], [ -123.103154309999965, 49.277145205000039 ], [ -123.102918411999937, 49.277140398000014 ], [ -123.10213900799999, 49.277123097000057 ], [ -123.102138600999965, 49.276975407000045 ], [ -123.102138279999934, 49.276804209000019 ], [ -123.102073489999952, 49.276081914000137 ], [ -123.102042405999953, 49.275765805000091 ], [ -123.101996972, 49.275326833000072 ], [ -123.10197311599994, 49.275027152000078 ], [ -123.101970047999941, 49.274988329000088 ], [ -123.101951736999951, 49.274907682000048 ], [ -123.101821160999961, 49.274388148000128 ], [ -123.101726141999961, 49.274009897000077 ], [ -123.10163654099992, 49.273971489000083 ], [ -123.101635689999966, 49.273381516000086 ], [ -123.101635199999947, 49.273046395000051 ], [ -123.101631383, 49.273012821000059 ], [ -123.101621889999961, 49.272929819000112 ], [ -123.101835436999949, 49.272988784000084 ], [ -123.101992001999946, 49.273032017000084 ], [ -123.102341059999958, 49.272864848000054 ], [ -123.102925796, 49.272696689000021 ], [ -123.102926390999954, 49.272921713000073 ], [ -123.10304960299996, 49.273065596000038 ], [ -123.103392308999929, 49.273065595000112 ], [ -123.103914684999936, 49.272930305000102 ], [ -123.104217490999943, 49.272965903000085 ], [ -123.104383584999965, 49.273072703000061 ], [ -123.104329709999945, 49.273631007000084 ], [ -123.104149593999949, 49.27374781500005 ], [ -123.103820877999951, 49.273757795000058 ], [ -123.103696418999945, 49.273918703000021 ], [ -123.103630690999964, 49.274800295000084 ], [ -123.103467503999923, 49.275385591000024 ], [ -123.103578016999933, 49.275548008000115 ], [ -123.106779187999905, 49.27558070500006 ], [ -123.107027982999966, 49.27550810200006 ], [ -123.107027851999987, 49.275482709000116 ], [ -123.107033881999953, 49.275482704000041 ], [ -123.107034465999945, 49.275752558000136 ], [ -123.107446904999946, 49.275752175000022 ], [ -123.107446317999958, 49.27548232100002 ], [ -123.10868362899997, 49.275481163000045 ], [ -123.108681849999954, 49.274671598000054 ], [ -123.109506709999962, 49.274670819000029 ], [ -123.109505798999962, 49.274259669000109 ], [ -123.109719194999968, 49.274335988000104 ], [ -123.110021309999965, 49.274346004000044 ], [ -123.110233388999958, 49.274130418000063 ], [ -123.111155216999975, 49.274129534000039 ], [ -123.111154611999979, 49.27385967900009 ], [ -123.111567032999972, 49.273859281000036 ], [ -123.111566425999939, 49.273589426000093 ], [ -123.111978845999928, 49.273589028000075 ], [ -123.111978281999953, 49.273339831000051 ], [ -123.112082206999929, 49.273425897000074 ], [ -123.112095614999987, 49.273319059000059 ], [ -123.112390653999967, 49.273318771000078 ], [ -123.112390108999989, 49.273078653000091 ], [ -123.112449799999951, 49.273048858000045 ], [ -123.113214872999933, 49.273048111000101 ], [ -123.113214687999971, 49.272967373 ], [ -123.113731711999961, 49.272928888000102 ], [ -123.114737287999972, 49.27258362400007 ], [ -123.114721907999979, 49.273177214000093 ], [ -123.114711361999952, 49.273391315000083 ], [ -123.11483195199996, 49.273352191000122 ], [ -123.11489209799997, 49.273533960000144 ], [ -123.114814073999952, 49.273860643000049 ], [ -123.114874872999962, 49.274031598000128 ], [ -123.11501701899999, 49.274176817000068 ], [ -123.115365997999987, 49.274486113000066 ], [ -123.115980206999922, 49.274885290000057 ], [ -123.116905792999887, 49.27544689100008 ], [ -123.117084497999926, 49.275555190000041 ], [ -123.116272435999974, 49.276083993000114 ], [ -123.115575086999939, 49.276538093000056 ], [ -123.114176694, 49.277449717000046 ], [ -123.11396380599993, 49.277588492000056 ], [ -123.112733749999933, 49.278395619000015 ], [ -123.112254502999974, 49.278710130000078 ], [ -123.111742588999974, 49.2783902030001 ], [ -123.110779400999931, 49.277792477000105 ], [ -123.110675896999979, 49.277755467000098 ], [ -123.110135245999956, 49.277569322000083 ], [ -123.109682998000011, 49.277413602000095 ], [ -123.109373892999926, 49.277236015000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59010999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1041208808", "BldgCostT": "704218277", "sL_LossRatio": "0.797902539834437", "sL_AssetLoss": "2553946", "sL_BldgLoss": "2037800", "sL_StrLoss": "1062410", "sL_NStrLoss": "975390", "sL_ContLoss": "516146", "geom_point": "0101000020E6100000C0B35E88ECC65EC097680B00BCA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.104910117999935, 49.279288914000055 ], [ -123.104464696999983, 49.279226586000107 ], [ -123.102544385999934, 49.279211100000083 ], [ -123.102155010999965, 49.279286204000066 ], [ -123.10211920799999, 49.279044710000058 ], [ -123.102118603999941, 49.278580307000034 ], [ -123.102117509999985, 49.277734753000111 ], [ -123.102117414999967, 49.277643998000023 ], [ -123.102119533999925, 49.277609835000092 ], [ -123.102120643999953, 49.277591832000041 ], [ -123.102125998999924, 49.277506490000086 ], [ -123.10212771099998, 49.277325511000058 ], [ -123.10213900799999, 49.277123097000057 ], [ -123.102918411999937, 49.277140398000014 ], [ -123.103154309999965, 49.277145205000039 ], [ -123.103752898999971, 49.277157407000082 ], [ -123.106415610999946, 49.277209007000081 ], [ -123.107675307999941, 49.277215716000072 ], [ -123.107677715999912, 49.27713289000009 ], [ -123.108119793999919, 49.277072704000062 ], [ -123.108708091, 49.276916399000136 ], [ -123.108888112999949, 49.276841612000084 ], [ -123.108908281999973, 49.276833241000119 ], [ -123.108960579, 49.276811498000072 ], [ -123.109373892999926, 49.277236015000035 ], [ -123.109682998000011, 49.277413602000095 ], [ -123.110135245999956, 49.277569322000083 ], [ -123.110675896999979, 49.277755467000098 ], [ -123.110779400999931, 49.277792477000105 ], [ -123.111742588999974, 49.2783902030001 ], [ -123.112254502999974, 49.278710130000078 ], [ -123.113277386999982, 49.27932120400007 ], [ -123.11425600199999, 49.279937305000054 ], [ -123.112507507999936, 49.281092099000013 ], [ -123.111425710999953, 49.281808844000125 ], [ -123.110956395, 49.282119799000021 ], [ -123.110066314999955, 49.281560905000056 ], [ -123.109758006999982, 49.281458101000077 ], [ -123.108458989999946, 49.28122060500008 ], [ -123.107583602999952, 49.281065705000088 ], [ -123.106212538999955, 49.280820237000036 ], [ -123.105595219999941, 49.280709737000123 ], [ -123.105774154, 49.280277952000112 ], [ -123.105849217999946, 49.280096847000053 ], [ -123.10611310799996, 49.279457191000077 ], [ -123.105039185999914, 49.279306981000026 ], [ -123.104910117999935, 49.279288914000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104615539", "BldgCostT": "67403047", "sL_LossRatio": "0.769524466237614", "sL_AssetLoss": "783120", "sL_BldgLoss": "602630", "sL_StrLoss": "334820", "sL_NStrLoss": "267810", "sL_ContLoss": "180490", "geom_point": "0101000020E61000002BB8B30A76C65EC065B145B951A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099836225999979, 49.275311114000061 ], [ -123.099850502999928, 49.274932305000043 ], [ -123.09997398099992, 49.274935649000057 ], [ -123.099994559000024, 49.274936177000029 ], [ -123.100135899999927, 49.274939073000091 ], [ -123.100253134999946, 49.274976447000093 ], [ -123.100399268999922, 49.274977463000049 ], [ -123.101018523999954, 49.274981737000147 ], [ -123.101374799999974, 49.274984205000052 ], [ -123.101417349999949, 49.274984511000106 ], [ -123.101970047999941, 49.274988329000088 ], [ -123.10197311599994, 49.275027152000078 ], [ -123.101996972, 49.275326833000072 ], [ -123.102042405999953, 49.275765805000091 ], [ -123.102073489999952, 49.276081914000137 ], [ -123.102138279999934, 49.276804209000019 ], [ -123.102138600999965, 49.276975407000045 ], [ -123.101789853999946, 49.276932331000062 ], [ -123.101299908999977, 49.276871813000049 ], [ -123.101187532999958, 49.276862864000087 ], [ -123.09992980199999, 49.276762910000087 ], [ -123.099781688999897, 49.276758006000087 ], [ -123.099809734999937, 49.276014705000065 ], [ -123.099830590999943, 49.275460857000105 ], [ -123.099836225999979, 49.275311114000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "710944027", "BldgCostT": "482808689", "sL_LossRatio": "0.771058138103639", "sL_AssetLoss": "6580710", "sL_BldgLoss": "5074110", "sL_StrLoss": "2443440", "sL_NStrLoss": "2630670", "sL_ContLoss": "1506600", "geom_point": "0101000020E6100000D8AE21BC26B55EC0BFFA3E3D32A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.833213998999966, 49.28494988400012 ], [ -122.831763762999927, 49.284458125000093 ], [ -122.831610056, 49.284405981000148 ], [ -122.831578299999961, 49.284395210000092 ], [ -122.831283615999936, 49.284295274000037 ], [ -122.831027110999912, 49.284208274000093 ], [ -122.830672087999915, 49.284087910000039 ], [ -122.830232308999939, 49.284025407000051 ], [ -122.830267082999967, 49.284160693000054 ], [ -122.830019414999981, 49.284526404000118 ], [ -122.829819289999989, 49.284638499000067 ], [ -122.829308324999943, 49.285478509000015 ], [ -122.829184380999948, 49.285379305000042 ], [ -122.828882591999928, 49.285068587000076 ], [ -122.828747509, 49.28487369500008 ], [ -122.828602190999973, 49.284746915000085 ], [ -122.82837672299999, 49.284184090000103 ], [ -122.828373228999965, 49.284175319000084 ], [ -122.827076497999883, 49.284342627000129 ], [ -122.826761872999953, 49.284380378000051 ], [ -122.826594226999987, 49.284400502000068 ], [ -122.826009711999973, 49.284403190000063 ], [ -122.825703244999886, 49.284362606000116 ], [ -122.825288949999916, 49.284290067000093 ], [ -122.824758203, 49.28411139300006 ], [ -122.824129359999944, 49.283867193000127 ], [ -122.823279927999963, 49.283537284000076 ], [ -122.824954299999959, 49.282311819000064 ], [ -122.826623957999971, 49.281153749000062 ], [ -122.82721074599999, 49.280902606000069 ], [ -122.827374434, 49.280832577000119 ], [ -122.827541434999944, 49.280761807 ], [ -122.828258883999965, 49.280622541000071 ], [ -122.828777452999987, 49.28058154900004 ], [ -122.82902311499997, 49.280562104000097 ], [ -122.83045744899999, 49.280565287000087 ], [ -122.831345695999985, 49.280567251000043 ], [ -122.83195308099998, 49.280577748000063 ], [ -122.83321147, 49.280599482000106 ], [ -122.835054234999944, 49.280634292000059 ], [ -122.835281535000021, 49.281005504000085 ], [ -122.835299492999951, 49.2810348430001 ], [ -122.835688858999944, 49.281470722000087 ], [ -122.835361310999929, 49.281746392000095 ], [ -122.83530559, 49.282159989000029 ], [ -122.835607821999986, 49.282313605000077 ], [ -122.835660905999958, 49.282718300000106 ], [ -122.836038114999951, 49.282806374000089 ], [ -122.836036715999981, 49.283228279000127 ], [ -122.834969191999903, 49.283940611000062 ], [ -122.834872007999962, 49.284084700000051 ], [ -122.835208045999977, 49.284328536000018 ], [ -122.835207173999919, 49.284589856000089 ], [ -122.835315906999938, 49.284590011000027 ], [ -122.835459696000015, 49.28513770700004 ], [ -122.835574689999987, 49.285278302000073 ], [ -122.835570397999959, 49.285281536000099 ], [ -122.835519205999958, 49.285375710000046 ], [ -122.835420524999961, 49.285717266000141 ], [ -122.835418034999989, 49.285725897000134 ], [ -122.834711006999939, 49.285875701000094 ], [ -122.834336283999932, 49.285464705000074 ], [ -122.833818000999941, 49.285164009000077 ], [ -122.833213998999966, 49.28494988400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91254751", "BldgCostT": "62700001", "sL_LossRatio": "0.77616325349157", "sL_AssetLoss": "690950", "sL_BldgLoss": "536290", "sL_StrLoss": "213170", "sL_NStrLoss": "323120", "sL_ContLoss": "154660", "geom_point": "0101000020E6100000C50D9E8DC5B45EC026F3B83DFBA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82378007599999, 49.281211103000025 ], [ -122.823768760999926, 49.280996796000089 ], [ -122.822942081999884, 49.280985113000028 ], [ -122.822783912999952, 49.281116682000068 ], [ -122.822552893999912, 49.281308793000107 ], [ -122.821936315999935, 49.281661802 ], [ -122.821924538999937, 49.281114884000047 ], [ -122.821921492999948, 49.28097490800009 ], [ -122.821865680999949, 49.280485831000071 ], [ -122.823775446999917, 49.28049791900002 ], [ -122.823793334999948, 49.280497545000038 ], [ -122.825082006999978, 49.280506629000051 ], [ -122.826317183999905, 49.280514111000066 ], [ -122.82667840299996, 49.280518385000022 ], [ -122.827145224999953, 49.280855313000117 ], [ -122.82721074599999, 49.280902606000069 ], [ -122.826623957999971, 49.281153749000062 ], [ -122.824954299999959, 49.282311819000064 ], [ -122.824877545999982, 49.282268122000097 ], [ -122.824458661999955, 49.282015407000088 ], [ -122.824238650999959, 49.281882686000088 ], [ -122.824008978999984, 49.281702886000097 ], [ -122.823788497999942, 49.281371188000023 ], [ -122.823783862999917, 49.281283088000123 ], [ -122.82378007599999, 49.281211103000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194100917", "BldgCostT": "129196667", "sL_LossRatio": "0.80537041960414", "sL_AssetLoss": "1090790", "sL_BldgLoss": "878490", "sL_StrLoss": "385870", "sL_NStrLoss": "492620", "sL_ContLoss": "212300", "geom_point": "0101000020E61000003FE4B18FA3B45EC061FE9FFD27A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.820943209999925, 49.281932941 ], [ -122.821166474999984, 49.280570313000105 ], [ -122.821865680999949, 49.280485831000071 ], [ -122.821921492999948, 49.28097490800009 ], [ -122.821924538999937, 49.281114884000047 ], [ -122.821936315999935, 49.281661802 ], [ -122.822552893999912, 49.281308793000107 ], [ -122.822783912999952, 49.281116682000068 ], [ -122.822942081999884, 49.280985113000028 ], [ -122.823768760999926, 49.280996796000089 ], [ -122.82378007599999, 49.281211103000025 ], [ -122.823783862999917, 49.281283088000123 ], [ -122.823788497999942, 49.281371188000023 ], [ -122.824008978999984, 49.281702886000097 ], [ -122.824238650999959, 49.281882686000088 ], [ -122.824458661999955, 49.282015407000088 ], [ -122.824877545999982, 49.282268122000097 ], [ -122.824954299999959, 49.282311819000064 ], [ -122.823279927999963, 49.283537284000076 ], [ -122.822286863999949, 49.284189285000075 ], [ -122.822080921999984, 49.284324496000067 ], [ -122.821630064999951, 49.284544537000109 ], [ -122.82161748599998, 49.284548395000094 ], [ -122.821520027999924, 49.284578521000057 ], [ -122.821409346999957, 49.284612759000069 ], [ -122.821388145999961, 49.284534030000053 ], [ -122.821075181, 49.283371922000072 ], [ -122.821010362999957, 49.282482686000073 ], [ -122.820943209999925, 49.281932941 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121429833", "BldgCostT": "81648333", "sL_LossRatio": "0.756034002321744", "sL_AssetLoss": "1361907", "sL_BldgLoss": "1029648", "sL_StrLoss": "478738", "sL_NStrLoss": "550910", "sL_ContLoss": "332259", "geom_point": "0101000020E6100000BE80FB8DB8B45EC04528AE11DEA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821145971999925, 49.287084685000139 ], [ -122.821409346999957, 49.284612759000069 ], [ -122.821520027999924, 49.284578521000057 ], [ -122.82161748599998, 49.284548395000094 ], [ -122.821630064999951, 49.284544537000109 ], [ -122.822080921999984, 49.284324496000067 ], [ -122.822286863999949, 49.284189285000075 ], [ -122.823279927999963, 49.283537284000076 ], [ -122.824129359999944, 49.283867193000127 ], [ -122.824758203, 49.28411139300006 ], [ -122.825288949999916, 49.284290067000093 ], [ -122.825703244999886, 49.284362606000116 ], [ -122.826009711999973, 49.284403190000063 ], [ -122.826594226999987, 49.284400502000068 ], [ -122.826761872999953, 49.284380378000051 ], [ -122.827076497999883, 49.284342627000129 ], [ -122.827136115999963, 49.284518368000093 ], [ -122.827491713999962, 49.285566509000056 ], [ -122.827534685999964, 49.285782205000089 ], [ -122.827467499999969, 49.285961314000076 ], [ -122.827319503999902, 49.28611459800009 ], [ -122.827210324999925, 49.286172414000099 ], [ -122.827084208999906, 49.286239207000122 ], [ -122.82678899299998, 49.286293599000068 ], [ -122.826050915999971, 49.286271894000066 ], [ -122.825449106999926, 49.286267696000081 ], [ -122.825131307999953, 49.286310608000107 ], [ -122.824751897999974, 49.286511109000052 ], [ -122.824720906999957, 49.286562428000082 ], [ -122.824627906, 49.286716511000066 ], [ -122.824541423999989, 49.287337302 ], [ -122.82710150099993, 49.287491916000064 ], [ -122.827884317, 49.287543701000118 ], [ -122.82813615699996, 49.287558622000113 ], [ -122.828216984999955, 49.287563404000082 ], [ -122.828333994999966, 49.287583769000065 ], [ -122.828460898999978, 49.287605860000021 ], [ -122.828634078999954, 49.287635994 ], [ -122.828702693999958, 49.287696828000016 ], [ -122.828771238999977, 49.287757628000072 ], [ -122.828867384999953, 49.287842920000102 ], [ -122.829019910999946, 49.288186090000053 ], [ -122.828940394999961, 49.288343194000042 ], [ -122.828836698999964, 49.288452714000101 ], [ -122.828672020999988, 49.288549705000065 ], [ -122.82843281699999, 49.288629199000056 ], [ -122.82759990299999, 49.288746998000136 ], [ -122.827349325999947, 49.288797922000107 ], [ -122.827142580999976, 49.28883989900006 ], [ -122.824542012999984, 49.28920676400007 ], [ -122.824352384999969, 49.289233498000094 ], [ -122.82381242699995, 49.289321578000049 ], [ -122.823491714999975, 49.289373896000086 ], [ -122.823314639999978, 49.28945293400006 ], [ -122.823220924999987, 49.289494798000064 ], [ -122.823048618999948, 49.2896014 ], [ -122.82279039699992, 49.289878509000097 ], [ -122.822713411999985, 49.290099699000059 ], [ -122.82275410699998, 49.290448604000098 ], [ -122.823065090999989, 49.290764892000013 ], [ -122.823809679999968, 49.291234593000063 ], [ -122.824025189999958, 49.291459796000019 ], [ -122.824164686999936, 49.291671097000027 ], [ -122.824215406999926, 49.291995093000033 ], [ -122.824114923, 49.292297601000087 ], [ -122.823921478999964, 49.292532391000037 ], [ -122.82338379399999, 49.292895807000036 ], [ -122.822339786999962, 49.293584008000103 ], [ -122.822040201999968, 49.293802215000078 ], [ -122.821823085999981, 49.294061598000084 ], [ -122.821694404999931, 49.294714503000129 ], [ -122.821525101999924, 49.29489870500008 ], [ -122.821470563999952, 49.294944523000026 ], [ -122.821167059999965, 49.294958768000065 ], [ -122.82109827799998, 49.294651790000081 ], [ -122.821339705999961, 49.290186717000068 ], [ -122.82139409199999, 49.289181158000062 ], [ -122.821344880999945, 49.288706888000064 ], [ -122.821350464999952, 49.288660117000113 ], [ -122.821145971999925, 49.287084685000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92275584", "BldgCostT": "63638334", "sL_LossRatio": "0.856609160541303", "sL_AssetLoss": "601733", "sL_BldgLoss": "515450", "sL_StrLoss": "336490", "sL_NStrLoss": "178960", "sL_ContLoss": "86283", "geom_point": "0101000020E610000026F4A74BCEB25EC0B1A2C4B65E884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.79023521, 49.063718144000042 ], [ -122.792878284999986, 49.063721409000031 ], [ -122.792902606999945, 49.06376539700009 ], [ -122.79296689799996, 49.063785330000059 ], [ -122.793032311999951, 49.063769267000055 ], [ -122.79306261, 49.063726917000068 ], [ -122.793125607999954, 49.06372704100005 ], [ -122.79327616599997, 49.063727301000014 ], [ -122.793344622999939, 49.063727447000097 ], [ -122.794453374999989, 49.063729486000049 ], [ -122.794713555, 49.063729979000087 ], [ -122.796345745999957, 49.063732959000049 ], [ -122.798354583999966, 49.063727098000086 ], [ -122.79835861399999, 49.064458952000074 ], [ -122.798361214999929, 49.064924990000094 ], [ -122.79823289899997, 49.065199602000085 ], [ -122.798174923999937, 49.065274241000061 ], [ -122.798117305999952, 49.065348497000102 ], [ -122.797848910999946, 49.065524657000026 ], [ -122.797833581999939, 49.065534690000028 ], [ -122.796428572999972, 49.066200960000089 ], [ -122.796086922999962, 49.066362995000098 ], [ -122.795879996999986, 49.066527213000064 ], [ -122.79575149599998, 49.066704507000054 ], [ -122.795701288999922, 49.066896697000047 ], [ -122.795718479999934, 49.067343301000058 ], [ -122.793749718999948, 49.067361202000029 ], [ -122.792238190999953, 49.067355698000092 ], [ -122.7918993, 49.067369009000053 ], [ -122.790218759999917, 49.067372898000052 ], [ -122.79021670799996, 49.065516401000103 ], [ -122.79021729399993, 49.065367700000067 ], [ -122.79023521, 49.063718144000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65278167", "BldgCostT": "44336667", "sL_LossRatio": "0.803245778611632", "sL_AssetLoss": "533000", "sL_BldgLoss": "428130", "sL_StrLoss": "248700", "sL_NStrLoss": "179430", "sL_ContLoss": "104870", "geom_point": "0101000020E6100000E567D94933B25EC0DAC665FD62884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779145897, 49.067324395000085 ], [ -122.779115217999987, 49.066799005000092 ], [ -122.779045544999988, 49.066228909000081 ], [ -122.779108120999979, 49.061293234000054 ], [ -122.779120186999975, 49.0609665980001 ], [ -122.779167786999949, 49.061465496000032 ], [ -122.779173355999959, 49.061482164000111 ], [ -122.779292487999925, 49.061838702000017 ], [ -122.77947719, 49.062135310000016 ], [ -122.779673393999971, 49.062364684000023 ], [ -122.779741084999955, 49.062420005 ], [ -122.779938921999957, 49.062581706000039 ], [ -122.780305487, 49.062820703000085 ], [ -122.780398991999931, 49.062878368000028 ], [ -122.781394786999968, 49.063492541000137 ], [ -122.781765994999944, 49.063721499000053 ], [ -122.782043709999982, 49.063999308000071 ], [ -122.78219199499992, 49.064230007000049 ], [ -122.782263909999969, 49.064476290000101 ], [ -122.783145792999932, 49.064484685000117 ], [ -122.783402782999957, 49.064484370000109 ], [ -122.783460490999971, 49.064484301000107 ], [ -122.784161189999935, 49.064402509000097 ], [ -122.784553115999955, 49.064401352000075 ], [ -122.78525872299997, 49.064399313000067 ], [ -122.785888816999886, 49.064409190000092 ], [ -122.786280995999959, 49.064355099000068 ], [ -122.786670794999935, 49.06425861100012 ], [ -122.787348195, 49.0639184180001 ], [ -122.787957914999964, 49.063748291000074 ], [ -122.788526110999953, 49.063734213000011 ], [ -122.788715751999973, 49.063729511000119 ], [ -122.788868080999919, 49.063728351000108 ], [ -122.789306284999938, 49.06372511000005 ], [ -122.79023521, 49.063718144000042 ], [ -122.79021729399993, 49.065367700000067 ], [ -122.79021670799996, 49.065516401000103 ], [ -122.790218759999917, 49.067372898000052 ], [ -122.789222340999984, 49.067371009000034 ], [ -122.788834275999974, 49.067370253000043 ], [ -122.78880380399994, 49.067415306000072 ], [ -122.788736808999943, 49.067434034000016 ], [ -122.788669652999886, 49.067415819000139 ], [ -122.788639924000023, 49.067370771000135 ], [ -122.787346751999934, 49.06736927200005 ], [ -122.787260812999961, 49.067369175000131 ], [ -122.785786065999943, 49.067368326000128 ], [ -122.785389099999932, 49.067368147000103 ], [ -122.784725685999931, 49.067365404000043 ], [ -122.784216749, 49.067364595000065 ], [ -122.782131395999897, 49.067346297000022 ], [ -122.781242400999986, 49.067340398000034 ], [ -122.781145523999967, 49.067339675000049 ], [ -122.779145897, 49.067324395000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182390167", "BldgCostT": "114351667", "sL_LossRatio": "0.772679278006267", "sL_AssetLoss": "1282338", "sL_BldgLoss": "990836", "sL_StrLoss": "563624", "sL_NStrLoss": "427212", "sL_ContLoss": "291502", "geom_point": "0101000020E6100000BD9AE1ABC2B25EC0809F2FC5EE874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.788715751999973, 49.063729511000119 ], [ -122.7887347879999, 49.063412894000038 ], [ -122.788759316999958, 49.063308257000045 ], [ -122.788791015999948, 49.063172996000063 ], [ -122.788946290999888, 49.062905507000082 ], [ -122.789223700999926, 49.062652394000061 ], [ -122.78924662899999, 49.062637399000018 ], [ -122.789779586999927, 49.062288798000012 ], [ -122.79002090099999, 49.062061703000062 ], [ -122.790205791999966, 49.061801303000031 ], [ -122.79025119, 49.061499885000103 ], [ -122.790248294999969, 49.061320017000085 ], [ -122.790240889999964, 49.060864232 ], [ -122.790239149999977, 49.060756308000066 ], [ -122.790231107999958, 49.060261506000131 ], [ -122.790229517999961, 49.060162569000077 ], [ -122.790228545999923, 49.060100533000082 ], [ -122.79091282899999, 49.060102550000103 ], [ -122.792141338, 49.060106094000062 ], [ -122.793031171999942, 49.060108669000044 ], [ -122.794235698999941, 49.060112175000043 ], [ -122.795910318999944, 49.060117001000073 ], [ -122.79610587699996, 49.060176903000041 ], [ -122.796453769, 49.060230597000093 ], [ -122.796948115999911, 49.060403890000025 ], [ -122.797344084999921, 49.060673503000075 ], [ -122.796861383999939, 49.06092940300011 ], [ -122.796350473999937, 49.061594591000059 ], [ -122.79700549099999, 49.061897989000087 ], [ -122.796783652999977, 49.062042862000077 ], [ -122.796468314999942, 49.062248786000055 ], [ -122.796376094999985, 49.062356016000081 ], [ -122.79632951699999, 49.06247709700002 ], [ -122.796328470999953, 49.062764263000062 ], [ -122.796328133999907, 49.062863207000056 ], [ -122.79632800499999, 49.062896096000038 ], [ -122.796338152999937, 49.063375721000099 ], [ -122.796345745999957, 49.063732959000049 ], [ -122.794713555, 49.063729979000087 ], [ -122.794453374999989, 49.063729486000049 ], [ -122.793344622999939, 49.063727447000097 ], [ -122.79327616599997, 49.063727301000014 ], [ -122.793125607999954, 49.06372704100005 ], [ -122.79306261, 49.063726917000068 ], [ -122.793032311999951, 49.063769267000055 ], [ -122.79296689799996, 49.063785330000059 ], [ -122.792902606999945, 49.06376539700009 ], [ -122.792878284999986, 49.063721409000031 ], [ -122.79023521, 49.063718144000042 ], [ -122.789306284999938, 49.06372511000005 ], [ -122.788868080999919, 49.063728351000108 ], [ -122.788715751999973, 49.063729511000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52445749", "BldgCostT": "32539999", "sL_LossRatio": "0.787393958222276", "sL_AssetLoss": "283261", "sL_BldgLoss": "223038", "sL_StrLoss": "130506", "sL_NStrLoss": "92532", "sL_ContLoss": "60223", "geom_point": "0101000020E61000001A4B05D338B25EC0501FDCF8EE874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779120186999975, 49.0609665980001 ], [ -122.779145872999948, 49.060100370000086 ], [ -122.780684280999978, 49.060100345000166 ], [ -122.781067614999984, 49.060100338000083 ], [ -122.781943587999947, 49.060100301 ], [ -122.782888112999927, 49.06010025500008 ], [ -122.783339839999883, 49.06010021200008 ], [ -122.783818871999955, 49.060100187000018 ], [ -122.784268324999971, 49.060100172000062 ], [ -122.78624161499998, 49.060100014000056 ], [ -122.78726831699997, 49.060099932000149 ], [ -122.788005491999954, 49.060099878000116 ], [ -122.789376260999958, 49.060100297000133 ], [ -122.790211297999974, 49.060100535000082 ], [ -122.790228545999923, 49.060100533000082 ], [ -122.790229517999961, 49.060162569000077 ], [ -122.790231107999958, 49.060261506000131 ], [ -122.790239149999977, 49.060756308000066 ], [ -122.790240889999964, 49.060864232 ], [ -122.790248294999969, 49.061320017000085 ], [ -122.79025119, 49.061499885000103 ], [ -122.790205791999966, 49.061801303000031 ], [ -122.79002090099999, 49.062061703000062 ], [ -122.789779586999927, 49.062288798000012 ], [ -122.78924662899999, 49.062637399000018 ], [ -122.789223700999926, 49.062652394000061 ], [ -122.788946290999888, 49.062905507000082 ], [ -122.788791015999948, 49.063172996000063 ], [ -122.788759316999958, 49.063308257000045 ], [ -122.7887347879999, 49.063412894000038 ], [ -122.788715751999973, 49.063729511000119 ], [ -122.788526110999953, 49.063734213000011 ], [ -122.787957914999964, 49.063748291000074 ], [ -122.787348195, 49.0639184180001 ], [ -122.786670794999935, 49.06425861100012 ], [ -122.786280995999959, 49.064355099000068 ], [ -122.785888816999886, 49.064409190000092 ], [ -122.78525872299997, 49.064399313000067 ], [ -122.784553115999955, 49.064401352000075 ], [ -122.784161189999935, 49.064402509000097 ], [ -122.783460490999971, 49.064484301000107 ], [ -122.783402782999957, 49.064484370000109 ], [ -122.783145792999932, 49.064484685000117 ], [ -122.782263909999969, 49.064476290000101 ], [ -122.78219199499992, 49.064230007000049 ], [ -122.782043709999982, 49.063999308000071 ], [ -122.781765994999944, 49.063721499000053 ], [ -122.781394786999968, 49.063492541000137 ], [ -122.780398991999931, 49.062878368000028 ], [ -122.780305487, 49.062820703000085 ], [ -122.779938921999957, 49.062581706000039 ], [ -122.779741084999955, 49.062420005 ], [ -122.779673393999971, 49.062364684000023 ], [ -122.77947719, 49.062135310000016 ], [ -122.779292487999925, 49.061838702000017 ], [ -122.779173355999959, 49.061482164000111 ], [ -122.779167786999949, 49.061465496000032 ], [ -122.779120186999975, 49.0609665980001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104640417", "BldgCostT": "70691667", "sL_LossRatio": "0.724062863697638", "sL_AssetLoss": "2388660", "sL_BldgLoss": "1729540", "sL_StrLoss": "726220", "sL_NStrLoss": "1003320", "sL_ContLoss": "659120", "geom_point": "0101000020E6100000EF09E95B2CCD5EC0CF812725EB9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.220068180999931, 49.239126364000086 ], [ -123.209441879999943, 49.235470420000127 ], [ -123.209397383999899, 49.23545512800009 ], [ -123.20856628199999, 49.235052721000102 ], [ -123.208537253999978, 49.235083853000098 ], [ -123.208443881, 49.235183925000044 ], [ -123.208321597999927, 49.235315002000078 ], [ -123.208155267, 49.235434919000049 ], [ -123.207830807999926, 49.235668888000134 ], [ -123.207455797999927, 49.235899702000097 ], [ -123.207417958999912, 49.235931830000013 ], [ -123.207194242999975, 49.236121739000083 ], [ -123.207166493999949, 49.2361452990001 ], [ -123.205910308999975, 49.23694330600005 ], [ -123.205490087999962, 49.237218804000051 ], [ -123.205314017999967, 49.237338545000064 ], [ -123.205223605999919, 49.237312805000052 ], [ -123.19999547899998, 49.235860563000081 ], [ -123.199672406999952, 49.235770792000039 ], [ -123.198434423999956, 49.235427539000142 ], [ -123.198434405999961, 49.235423091000058 ], [ -123.198418479999972, 49.235423119000103 ], [ -123.197081197000031, 49.235052310000128 ], [ -123.197080106, 49.234919824000038 ], [ -123.197063649999976, 49.232936362000018 ], [ -123.19703750099994, 49.232911905000023 ], [ -123.196897889999931, 49.232676792000113 ], [ -123.196913747999972, 49.232456784000135 ], [ -123.196948259999928, 49.231977384000039 ], [ -123.196977775999983, 49.231567471000055 ], [ -123.196990751999977, 49.231387553000097 ], [ -123.196995906999945, 49.231315762000079 ], [ -123.196998484999966, 49.231279865000083 ], [ -123.197043213999933, 49.230658841000057 ], [ -123.197049180999898, 49.230575968000053 ], [ -123.197050358999903, 49.230559679000081 ], [ -123.197085015999917, 49.230078506000012 ], [ -123.19708809799999, 49.22997368000005 ], [ -123.197136612999984, 49.228336893000041 ], [ -123.198390103999884, 49.228356 ], [ -123.199143599999957, 49.2283799840001 ], [ -123.19968738199999, 49.228490496000127 ], [ -123.199997198999966, 49.228615487000106 ], [ -123.200155103999961, 49.22867919 ], [ -123.202996194999969, 49.229847404000047 ], [ -123.203960691999953, 49.230242618000034 ], [ -123.203817079999936, 49.230667597000078 ], [ -123.206591186999944, 49.231233330000059 ], [ -123.206916219, 49.231169102000088 ], [ -123.207261866999943, 49.230820009000126 ], [ -123.207366232999973, 49.23081982100004 ], [ -123.208307853999941, 49.231367277000082 ], [ -123.208308948999957, 49.231627699000072 ], [ -123.208721017999963, 49.231626954000021 ], [ -123.208722154999961, 49.231896811000077 ], [ -123.209134226999936, 49.231896065000051 ], [ -123.209135367000016, 49.232165921000082 ], [ -123.20954744099997, 49.232165175000041 ], [ -123.209548581999968, 49.232435030000076 ], [ -123.210142635999944, 49.23243395100009 ], [ -123.210255170999957, 49.232499371000102 ], [ -123.210786129999974, 49.232742897000023 ], [ -123.210787106999973, 49.232972493000048 ], [ -123.211199187999938, 49.232971740000089 ], [ -123.211199700999956, 49.233092343000088 ], [ -123.211568866999983, 49.233101889000061 ], [ -123.213676420999946, 49.234068439000048 ], [ -123.213677489999924, 49.234316471000028 ], [ -123.214215117, 49.234315476000091 ], [ -123.214880152999982, 49.234620446000122 ], [ -123.215327946999963, 49.234793934000045 ], [ -123.215328205, 49.234853122000075 ], [ -123.215479987999984, 49.23485283800008 ], [ -123.215740742999955, 49.234953861000079 ], [ -123.215741475999906, 49.235122209000053 ], [ -123.216173199999915, 49.235121401000072 ], [ -123.216566341999908, 49.235273708000065 ], [ -123.216566851999943, 49.235390522000074 ], [ -123.21686642099999, 49.235389960000063 ], [ -123.217800940999894, 49.235751987000064 ], [ -123.21780476, 49.235753748000079 ], [ -123.217805527999985, 49.23592790800005 ], [ -123.218181123999955, 49.23592720000002 ], [ -123.218217706999965, 49.235944060000087 ], [ -123.218220009999953, 49.23646684200007 ], [ -123.218632119999967, 49.236466062000076 ], [ -123.218633311999923, 49.236735918000065 ], [ -123.219045423, 49.236735137000018 ], [ -123.219046615000011, 49.237004992000095 ], [ -123.219458730999975, 49.23700421100007 ], [ -123.219459924999953, 49.237274066000047 ], [ -123.219872040999974, 49.237273283000093 ], [ -123.219874437, 49.237812992000045 ], [ -123.220286557999984, 49.23781220799999 ], [ -123.220290941999963, 49.238797931000079 ], [ -123.220068180999931, 49.239126364000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.89192434704293", "sL_AssetLoss": "3331", "sL_BldgLoss": "2971", "sL_StrLoss": "2120", "sL_NStrLoss": "851", "sL_ContLoss": "360", "geom_point": "0101000020E61000005C95C0BD9DCD5EC00F320374E39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.213676420999946, 49.234068439000048 ], [ -123.211568866999983, 49.233101889000061 ], [ -123.212207409999934, 49.233118398000073 ], [ -123.212200120999938, 49.233239764000125 ], [ -123.212848669999985, 49.233238571000058 ], [ -123.212848894999951, 49.233290952000047 ], [ -123.212927392999958, 49.233292980000073 ], [ -123.212914465999958, 49.23350830600004 ], [ -123.213261914000014, 49.233507666000094 ], [ -123.21326307599999, 49.23377752200004 ], [ -123.213675162999934, 49.233776760000069 ], [ -123.213676420999946, 49.234068439000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86919584", "BldgCostT": "58318334", "sL_LossRatio": "0.723713431019622", "sL_AssetLoss": "1676455", "sL_BldgLoss": "1213273", "sL_StrLoss": "528382", "sL_NStrLoss": "684891", "sL_ContLoss": "463182", "geom_point": "0101000020E6100000309DF77BB9CC5EC0CFA686AAD69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.206591186999944, 49.231233330000059 ], [ -123.203817079999936, 49.230667597000078 ], [ -123.203960691999953, 49.230242618000034 ], [ -123.202996194999969, 49.229847404000047 ], [ -123.200155103999961, 49.22867919 ], [ -123.199997198999966, 49.228615487000106 ], [ -123.19968738199999, 49.228490496000127 ], [ -123.199143599999957, 49.2283799840001 ], [ -123.198390103999884, 49.228356 ], [ -123.198417295999946, 49.227358614000146 ], [ -123.198489307000017, 49.227235306000125 ], [ -123.198044620999966, 49.226711207000037 ], [ -123.197941784999927, 49.226641015000048 ], [ -123.1974524, 49.226493203000125 ], [ -123.196842799999956, 49.226314283000058 ], [ -123.19659569699995, 49.226261272000073 ], [ -123.19647969199994, 49.226236389000071 ], [ -123.196438717999968, 49.226227766000065 ], [ -123.195137811999984, 49.225953790000055 ], [ -123.194340322999935, 49.225818606000082 ], [ -123.193013421, 49.225697026000034 ], [ -123.191869616999952, 49.225592204000066 ], [ -123.19124949699993, 49.225561930000111 ], [ -123.191097060999965, 49.225554513000112 ], [ -123.191343844999963, 49.220899179000078 ], [ -123.192424581999916, 49.220922392 ], [ -123.192608834999959, 49.220990449000098 ], [ -123.192609380999954, 49.221130477000038 ], [ -123.192986240999957, 49.221129849000079 ], [ -123.193249817999984, 49.221227203000069 ], [ -123.195294091999955, 49.22123289400011 ], [ -123.197142551999889, 49.221465638000041 ], [ -123.197143335999954, 49.2216625450001 ], [ -123.198313731999946, 49.221660542000045 ], [ -123.198813619999939, 49.221811103000057 ], [ -123.19911598, 49.22210739900008 ], [ -123.199500004999933, 49.221980589000069 ], [ -123.200118391999979, 49.221970695000024 ], [ -123.200901589999944, 49.22215011400003 ], [ -123.20126584399999, 49.222305619000061 ], [ -123.201266491999917, 49.222465010000036 ], [ -123.20163769, 49.222464362000025 ], [ -123.201678557999912, 49.22248180800004 ], [ -123.201682193999943, 49.22337555700004 ], [ -123.201674882999967, 49.223389194000099 ], [ -123.201682362, 49.223416656000069 ], [ -123.201683975999984, 49.223813573000051 ], [ -123.200859966999971, 49.223815008000024 ], [ -123.200861060999927, 49.224084864000091 ], [ -123.202097082999927, 49.224082708000012 ], [ -123.202098962999941, 49.224543626000077 ], [ -123.203515931999945, 49.224580389000032 ], [ -123.203638941999898, 49.224662798000033 ], [ -123.2035506599999, 49.226128657000032 ], [ -123.205428924999964, 49.226177356000107 ], [ -123.205863412000014, 49.226575104000098 ], [ -123.20601741099992, 49.226925508000107 ], [ -123.205990308999958, 49.227375486000113 ], [ -123.205826823000024, 49.227735902000077 ], [ -123.206257882999964, 49.228580401000066 ], [ -123.20640830499994, 49.22870719800008 ], [ -123.206697215999924, 49.228751303000109 ], [ -123.207109295999913, 49.228939287000159 ], [ -123.207164317999954, 49.228978886000078 ], [ -123.207113482999958, 49.229823971000059 ], [ -123.204592576999957, 49.229758648000029 ], [ -123.204595862999923, 49.230554903 ], [ -123.205007923999986, 49.230554173 ], [ -123.205009040999954, 49.230824029000118 ], [ -123.207261866999943, 49.230820009000126 ], [ -123.206916219, 49.231169102000088 ], [ -123.206591186999944, 49.231233330000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35816250", "BldgCostT": "21225000", "sL_LossRatio": "0.618606524365687", "sL_AssetLoss": "1241500", "sL_BldgLoss": "768000", "sL_StrLoss": "340100", "sL_NStrLoss": "427900", "sL_ContLoss": "473500", "geom_point": "0101000020E61000008B008669C8C75EC07E1D17595BA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120273807999979, 49.323954198000088 ], [ -123.120098312999943, 49.323956977000122 ], [ -123.120083674999961, 49.323957195000091 ], [ -123.120102016999937, 49.323342689000036 ], [ -123.120110833999931, 49.3230462080001 ], [ -123.120136852999963, 49.322173519000089 ], [ -123.121136460999963, 49.322179441000102 ], [ -123.123454042999967, 49.322204245000094 ], [ -123.123232, 49.32265978700007 ], [ -123.122941740999963, 49.323255188000132 ], [ -123.122737480999902, 49.323753286000091 ], [ -123.122567277, 49.324168372000017 ], [ -123.12250981899993, 49.324229898000119 ], [ -123.122419606999955, 49.324323102000022 ], [ -123.122384876999931, 49.324358968000134 ], [ -123.122008912999931, 49.324250298000074 ], [ -123.121846874999903, 49.324203442000055 ], [ -123.12128188599999, 49.324040082000046 ], [ -123.12103625499995, 49.323969080000047 ], [ -123.120976224999964, 49.323967936000081 ], [ -123.120273807999979, 49.323954198000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237417833", "BldgCostT": "154103333", "sL_LossRatio": "0.687183297297749", "sL_AssetLoss": "4791560", "sL_BldgLoss": "3292680", "sL_StrLoss": "1478050", "sL_NStrLoss": "1814630", "sL_ContLoss": "1498880", "geom_point": "0101000020E6100000425B21EE22C85EC0FDAB2AA8E6A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.123232, 49.32265978700007 ], [ -123.123454042999967, 49.322204245000094 ], [ -123.121136460999963, 49.322179441000102 ], [ -123.120136852999963, 49.322173519000089 ], [ -123.120146709999943, 49.319919246000062 ], [ -123.12015274499997, 49.318542098000115 ], [ -123.120131616999956, 49.318485105000043 ], [ -123.120598057, 49.317715161000066 ], [ -123.120610491999955, 49.317694591000063 ], [ -123.121297823999896, 49.317380993 ], [ -123.122804511999931, 49.316021017000033 ], [ -123.122829262999929, 49.316002409000092 ], [ -123.123017823999959, 49.315821463000091 ], [ -123.123064089999957, 49.315769071000034 ], [ -123.123146184999939, 49.315676224000114 ], [ -123.123234153999974, 49.315576655000044 ], [ -123.123288324, 49.315519250000072 ], [ -123.123363508999986, 49.315439497000114 ], [ -123.123403273999926, 49.315388534000135 ], [ -123.12360857799996, 49.3151250310001 ], [ -123.125930548, 49.312917210000087 ], [ -123.125985236999924, 49.312863403000094 ], [ -123.126369784999923, 49.31299899000004 ], [ -123.126892610999946, 49.313024590000097 ], [ -123.127551997999959, 49.312610207000056 ], [ -123.127689843999974, 49.312707926000044 ], [ -123.127640042999957, 49.313511298 ], [ -123.128114801999985, 49.313510772000086 ], [ -123.128580053999926, 49.313716603000117 ], [ -123.128580217999911, 49.313780108000074 ], [ -123.128723239999943, 49.313779950000111 ], [ -123.128780082, 49.313805098000117 ], [ -123.129166813999987, 49.314228092000135 ], [ -123.129407304999944, 49.31438023400009 ], [ -123.129407851999986, 49.314588746000119 ], [ -123.129767084999969, 49.314588343000025 ], [ -123.130915385999984, 49.315160896000087 ], [ -123.131893886999961, 49.315538408000108 ], [ -123.132733203999933, 49.31567220500002 ], [ -123.132748617999937, 49.315681424000111 ], [ -123.133078978999933, 49.315878792000078 ], [ -123.133148810999955, 49.316382899000082 ], [ -123.132682616999915, 49.316795904000074 ], [ -123.132643112, 49.317426886000135 ], [ -123.132382288999906, 49.317839896000066 ], [ -123.132491677999965, 49.317966599000094 ], [ -123.132753188999985, 49.318029296000169 ], [ -123.133441493999911, 49.317848400000123 ], [ -123.133647984, 49.317865492000109 ], [ -123.133814591999936, 49.31812618900009 ], [ -123.133760296, 49.318648804000105 ], [ -123.133898914999946, 49.318747102000074 ], [ -123.134104309999927, 49.318747101000163 ], [ -123.134474703999928, 49.318341187000101 ], [ -123.134456215999947, 49.317854512000039 ], [ -123.135587226999959, 49.318708177000069 ], [ -123.134416514999955, 49.319958527000047 ], [ -123.134380755999956, 49.319996717000016 ], [ -123.133308429999971, 49.321141935000043 ], [ -123.133032502, 49.321436584000018 ], [ -123.13281022299995, 49.321679251000035 ], [ -123.131122081999976, 49.323522210000135 ], [ -123.130870730999959, 49.323796981000044 ], [ -123.130525902999921, 49.324173988000084 ], [ -123.130506793999942, 49.324194853000051 ], [ -123.130344593999951, 49.324370678000136 ], [ -123.129680215999954, 49.325147403000116 ], [ -123.129029545999941, 49.326015454000114 ], [ -123.128957412999966, 49.326111705000088 ], [ -123.128943623999959, 49.326131877000108 ], [ -123.128896902999969, 49.326200185000097 ], [ -123.128883955, 49.326196693000107 ], [ -123.128457209999965, 49.326081295000058 ], [ -123.128040392999978, 49.325962975000039 ], [ -123.127888784999953, 49.325919944000098 ], [ -123.127088810999908, 49.325692823000061 ], [ -123.126616008999974, 49.325558611000098 ], [ -123.125907635999951, 49.325357205000046 ], [ -123.125405176999948, 49.325214342000031 ], [ -123.125190091999968, 49.325153198000116 ], [ -123.124365290999904, 49.324918706000048 ], [ -123.12242433099999, 49.324370140000021 ], [ -123.122384876999931, 49.324358968000134 ], [ -123.122419606999955, 49.324323102000022 ], [ -123.12250981899993, 49.324229898000119 ], [ -123.122567277, 49.324168372000017 ], [ -123.122737480999902, 49.323753286000091 ], [ -123.122941740999963, 49.323255188000132 ], [ -123.123232, 49.32265978700007 ] ], [ [ -123.131860358999944, 49.320522755000084 ], [ -123.131893772999959, 49.319983010000037 ], [ -123.131486031999941, 49.319983475000079 ], [ -123.131485312999985, 49.319713622000094 ], [ -123.131072508999935, 49.31971409100003 ], [ -123.131071791999929, 49.319444238000088 ], [ -123.130246184999976, 49.319445172000115 ], [ -123.13024547299996, 49.319175319000124 ], [ -123.129832670999988, 49.319175783000077 ], [ -123.129831962999944, 49.318905930000057 ], [ -123.129816827999946, 49.318905947000097 ], [ -123.129749953999948, 49.319985437000113 ], [ -123.130247607999962, 49.319984878000064 ], [ -123.130248318999975, 49.32025473100007 ], [ -123.131073939999951, 49.320253797000078 ], [ -123.1310746569999, 49.320523650000013 ], [ -123.131860358999944, 49.320522755000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.76507212017814", "sL_AssetLoss": "45133", "sL_BldgLoss": "34530", "sL_StrLoss": "16960", "sL_NStrLoss": "17570", "sL_ContLoss": "10603", "geom_point": "0101000020E61000002B265F9E48C55EC0E6749B68BE864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079702777999955, 49.053327213000088 ], [ -123.079704341999957, 49.05107788 ], [ -123.082046707999893, 49.051141556000026 ], [ -123.082014881999896, 49.051649992000115 ], [ -123.085368521999939, 49.051741070000027 ], [ -123.085320084999964, 49.052515763000059 ], [ -123.086045643999967, 49.052535454000108 ], [ -123.085960866999983, 49.053891619000069 ], [ -123.07970240399996, 49.053881400000101 ], [ -123.079702777999955, 49.053327213000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41277417", "BldgCostT": "27731667", "sL_LossRatio": "0.810689602005725", "sL_AssetLoss": "298346", "sL_BldgLoss": "241866", "sL_StrLoss": "140526", "sL_NStrLoss": "101340", "sL_ContLoss": "56480", "geom_point": "0101000020E61000009F87C1992BC65EC0EBE70B29D8844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100907912999929, 49.047182357000068 ], [ -123.100952882999948, 49.046459168000062 ], [ -123.100607847999981, 49.046449851 ], [ -123.100635684999972, 49.046002214000097 ], [ -123.100433269999911, 49.045996748000071 ], [ -123.10044717, 49.045773237000084 ], [ -123.100006567, 49.045761337 ], [ -123.100023703999923, 49.045485828000054 ], [ -123.09955716799999, 49.045473226000126 ], [ -123.099570599999964, 49.045257324000076 ], [ -123.099166866999937, 49.045246417000115 ], [ -123.099181040999937, 49.045018612000092 ], [ -123.097162810999976, 49.044964064000041 ], [ -123.097220480999965, 49.044037787000072 ], [ -123.097053162999899, 49.044033264000127 ], [ -123.097082843999942, 49.043556556000105 ], [ -123.096316965999961, 49.043535846000061 ], [ -123.09635383199999, 49.042943884000096 ], [ -123.095804784999984, 49.042929033000085 ], [ -123.095816242999916, 49.042745073000155 ], [ -123.094789959999929, 49.042717307000032 ], [ -123.094878665999929, 49.041293611000071 ], [ -123.094623539999958, 49.041286707000033 ], [ -123.09464884099999, 49.040880654000055 ], [ -123.093707832999925, 49.040855184000108 ], [ -123.093786546999979, 49.039592265000095 ], [ -123.093536003999958, 49.039585482000092 ], [ -123.093667436999922, 49.037476750000067 ], [ -123.093387350999976, 49.0374769760001 ], [ -123.093386846, 49.037207110000104 ], [ -123.09297638399994, 49.037207441000128 ], [ -123.092975879999955, 49.036937575000088 ], [ -123.091744496000018, 49.036938561000056 ], [ -123.091745488999962, 49.03747829400011 ], [ -123.09215595299996, 49.037477967000029 ], [ -123.092157450999963, 49.038287566000108 ], [ -123.090515560999933, 49.038288865000041 ], [ -123.090510174999949, 49.035320334000083 ], [ -123.088457933999962, 49.035321926000101 ], [ -123.088458891999963, 49.035861659000034 ], [ -123.087227534999968, 49.035862596000072 ], [ -123.087227062999901, 49.035592730000118 ], [ -123.085995712999974, 49.035593653000049 ], [ -123.085996176999956, 49.035863520000127 ], [ -123.08476482, 49.035864431000093 ], [ -123.084765278999981, 49.036134298000093 ], [ -123.084354823999959, 49.036134598000025 ], [ -123.084355280999887, 49.036404465000054 ], [ -123.083534366999984, 49.036405062 ], [ -123.083534818999908, 49.036674929000107 ], [ -123.083124359999928, 49.036675225000138 ], [ -123.083124809999944, 49.036945092000025 ], [ -123.082714347999982, 49.036945387000117 ], [ -123.08271479699998, 49.037215253000035 ], [ -123.081893867999923, 49.037215838000073 ], [ -123.08189431199996, 49.037485705000101 ], [ -123.08148384499998, 49.037485995000075 ], [ -123.081483932999987, 49.037539423000148 ], [ -123.082131175999976, 49.03755701700009 ], [ -123.081906010999916, 49.041155167000092 ], [ -123.079711281999948, 49.041095490000075 ], [ -123.079713135999924, 49.038428537000044 ], [ -123.079701911999976, 49.037516392000072 ], [ -123.090959193999964, 49.032110243000034 ], [ -123.090959311999981, 49.032110115000087 ], [ -123.091276677999971, 49.031957747000078 ], [ -123.091362776999958, 49.03191638200007 ], [ -123.095425943999928, 49.029964460000038 ], [ -123.097209391999968, 49.029107595000063 ], [ -123.097418347999934, 49.029007701000069 ], [ -123.098120893999976, 49.0286717930001 ], [ -123.098382661999949, 49.028523783000018 ], [ -123.100646894999926, 49.027243308000102 ], [ -123.100876221999954, 49.027081578000043 ], [ -123.101574507999885, 49.026589200000082 ], [ -123.101574681999921, 49.026675379000103 ], [ -123.101985058999986, 49.026675017000017 ], [ -123.10198557399994, 49.026926746000107 ], [ -123.10171616599996, 49.028024591000047 ], [ -123.10157742899996, 49.028024712000025 ], [ -123.101578461999949, 49.028531912000048 ], [ -123.10155683899994, 49.028564466000049 ], [ -123.101284752999945, 49.028564705000058 ], [ -123.101256682999974, 49.02901635300001 ], [ -123.10080196199999, 49.029700916000117 ], [ -123.100194932999926, 49.029684518000131 ], [ -123.100096701999945, 49.031264412000034 ], [ -123.100894540999931, 49.031263718000048 ], [ -123.101049067999924, 49.032073184000083 ], [ -123.100046357999986, 49.032074058000084 ], [ -123.100032441999957, 49.032297852000056 ], [ -123.099888143, 49.032293953000064 ], [ -123.099851461999918, 49.032883827 ], [ -123.100356036999941, 49.032883390000073 ], [ -123.100356581, 49.033154292000084 ], [ -123.100240819999954, 49.033241604000075 ], [ -123.099187494999953, 49.03344090600006 ], [ -123.098968911999975, 49.033503595000077 ], [ -123.098682500999985, 49.03426838600015 ], [ -123.098109398999924, 49.035097309000044 ], [ -123.09804360199999, 49.035879203000064 ], [ -123.098249223999971, 49.036329203000037 ], [ -123.098264016999977, 49.036635394000029 ], [ -123.098496689999948, 49.036985794000053 ], [ -123.098770413999958, 49.037200901000105 ], [ -123.099071792999979, 49.037273506000048 ], [ -123.099400490999983, 49.037596795000034 ], [ -123.09940159099996, 49.037300513000034 ], [ -123.098688793999912, 49.036950195000038 ], [ -123.098303406999946, 49.03581651000011 ], [ -123.098315704999919, 49.035195583000089 ], [ -123.098820600999915, 49.034583205000025 ], [ -123.099050682999987, 49.033674495000128 ], [ -123.099324390999968, 49.033557693000013 ], [ -123.100117689999976, 49.0335307 ], [ -123.100092296999932, 49.033691609000115 ], [ -123.099297813999968, 49.033962198000012 ], [ -123.099203803999927, 49.034826686000052 ], [ -123.099533387999955, 49.034999102000015 ], [ -123.099452881999966, 49.036293454000038 ], [ -123.099593453999958, 49.036297253000093 ], [ -123.099529882999917, 49.037319337000071 ], [ -123.100066800999983, 49.037333842000074 ], [ -123.100036018999987, 49.037828814000115 ], [ -123.100307120999943, 49.037836137000077 ], [ -123.10028758199995, 49.038150350000137 ], [ -123.100553431999927, 49.038157531000138 ], [ -123.100532950999963, 49.038486911000049 ], [ -123.100548553999914, 49.038487332000066 ], [ -123.100522604999981, 49.038904650000056 ], [ -123.100577476999916, 49.038906133000076 ], [ -123.100543479999914, 49.039452891000082 ], [ -123.10148847899994, 49.039478410000179 ], [ -123.101451681999947, 49.040070377000106 ], [ -123.102000697, 49.040085198000078 ], [ -123.101971067999941, 49.040561910000051 ], [ -123.102736898999964, 49.040582580000013 ], [ -123.102712576000016, 49.040974036000115 ], [ -123.103225205999976, 49.040987869000055 ], [ -123.103199412, 49.041403063000089 ], [ -123.104055101999933, 49.041426148 ], [ -123.104033523999988, 49.041773591000059 ], [ -123.104850594999974, 49.041795628000017 ], [ -123.104837189999969, 49.042011532000103 ], [ -123.105240894999909, 49.042022418000059 ], [ -123.105223789999954, 49.042297929000092 ], [ -123.10569029499996, 49.042310506000021 ], [ -123.105676419999952, 49.042534019000087 ], [ -123.106116994999951, 49.042545896000028 ], [ -123.106089211999929, 49.042993538000133 ], [ -123.106291614999989, 49.04299899300009 ], [ -123.106266683999962, 49.043400697000074 ], [ -123.106926415999965, 49.043418477000031 ], [ -123.10677070199992, 49.045927879000018 ], [ -123.106703134999933, 49.047016646000039 ], [ -123.106388392999961, 49.047008164000026 ], [ -123.106368440999972, 49.047329654000059 ], [ -123.100907912999929, 49.047182357000068 ] ], [ [ -123.094003135999955, 49.035993875000067 ], [ -123.094011526999935, 49.035859232000099 ], [ -123.094003148999931, 49.035859005000056 ], [ -123.094080627999972, 49.034615632000119 ], [ -123.092971496999951, 49.034585599000053 ], [ -123.092974370999983, 49.036127976000103 ], [ -123.0937515359999, 49.03612734700004 ], [ -123.093760263999968, 49.035987300000052 ], [ -123.094003135999955, 49.035993875000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.741477668011688", "sL_AssetLoss": "71870", "sL_BldgLoss": "53290", "sL_StrLoss": "23980", "sL_NStrLoss": "29310", "sL_ContLoss": "18580", "geom_point": "0101000020E6100000609314DC78C65EC078E7F5CCB7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.099562022999933, 49.054375500000049 ], [ -123.099496164999948, 49.052884053000113 ], [ -123.098122451999956, 49.052879123000011 ], [ -123.098255855999952, 49.050736052000033 ], [ -123.103716789999979, 49.050883482000053 ], [ -123.103591586999968, 49.052898630000151 ], [ -123.103493225999927, 49.054481603000035 ], [ -123.099562022999933, 49.054375500000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.787204058624577", "sL_AssetLoss": "35480", "sL_BldgLoss": "27930", "sL_StrLoss": "15300", "sL_NStrLoss": "12630", "sL_ContLoss": "7550", "geom_point": "0101000020E61000000A91808FC9C55EC0DBAF336CB1864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.087201044999986, 49.053893600000116 ], [ -123.087291099999931, 49.052452389000102 ], [ -123.088332851999937, 49.052480641000024 ], [ -123.088433844999912, 49.050863713000069 ], [ -123.09389476199999, 49.051011643000038 ], [ -123.093785928999978, 49.052757378000059 ], [ -123.093600909, 49.052712225000043 ], [ -123.090818383999974, 49.052897298000083 ], [ -123.090817383999976, 49.053899306000062 ], [ -123.090414634999945, 49.053898668000016 ], [ -123.087201044999986, 49.053893600000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21223833", "BldgCostT": "14373333", "sL_LossRatio": "0.715463338994314", "sL_AssetLoss": "338575", "sL_BldgLoss": "242238", "sL_StrLoss": "123658", "sL_NStrLoss": "118580", "sL_ContLoss": "96337", "geom_point": "0101000020E6100000E5ED4AC357C75EC0B89F4264C7864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109947302999942, 49.056393603000082 ], [ -123.109949203, 49.056030929000066 ], [ -123.107374420999946, 49.056015783000127 ], [ -123.107362628000018, 49.055455047000095 ], [ -123.102757066999956, 49.055476781000053 ], [ -123.102781131999947, 49.056052621000099 ], [ -123.101053956, 49.056050004000049 ], [ -123.101080167999953, 49.055628535000054 ], [ -123.102554856999944, 49.055668332000032 ], [ -123.102592739999963, 49.055058871000064 ], [ -123.106482678999939, 49.055163749000037 ], [ -123.106574055999943, 49.053691664000084 ], [ -123.10783403799995, 49.053725604000128 ], [ -123.107855078999961, 49.053386481000103 ], [ -123.107377452999984, 49.05338692600008 ], [ -123.107376429999988, 49.052911963000049 ], [ -123.10737513, 49.052307464000066 ], [ -123.107517328999961, 49.052307332000112 ], [ -123.10771897099994, 49.049057378000079 ], [ -123.110001504999985, 49.049118835000044 ], [ -123.113179738999975, 49.049204327000027 ], [ -123.112987901999972, 49.05230210600007 ], [ -123.114765701999957, 49.052300351000049 ], [ -123.114766275999983, 49.052548870000074 ], [ -123.114802823999952, 49.051958359000089 ], [ -123.11534133, 49.051972826000046 ], [ -123.115366622999971, 49.051564072000119 ], [ -123.115877567999945, 49.051577796000053 ], [ -123.115896617999979, 49.051269883000032 ], [ -123.117638886999885, 49.051316663000058 ], [ -123.117748314999929, 49.049546779000075 ], [ -123.117757549999979, 49.049397424000041 ], [ -123.119946677999948, 49.049456161000101 ], [ -123.120404602999926, 49.049721090000027 ], [ -123.121802078999963, 49.049890600000062 ], [ -123.121867719999955, 49.049886479000051 ], [ -123.122356219999958, 49.050176150000084 ], [ -123.122459961999937, 49.050237671000069 ], [ -123.122578701999927, 49.050308079000068 ], [ -123.12382043299999, 49.051044323000085 ], [ -123.123981390999958, 49.051254903000071 ], [ -123.124749713999975, 49.051695006000102 ], [ -123.125290341999985, 49.0518711980001 ], [ -123.12517335599992, 49.053768176000084 ], [ -123.12121898299992, 49.053662244000108 ], [ -123.121135464999924, 49.055014570000012 ], [ -123.120624479999947, 49.055000872000036 ], [ -123.120605459999936, 49.055308783000079 ], [ -123.120066913999892, 49.055294343000071 ], [ -123.120041659999941, 49.055703096000059 ], [ -123.116182691999967, 49.055599542000046 ], [ -123.116127611999971, 49.056489827000121 ], [ -123.114584511999951, 49.056465843000041 ], [ -123.109947302999942, 49.056393603000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.776840625549113", "sL_AssetLoss": "56910", "sL_BldgLoss": "44210", "sL_StrLoss": "22770", "sL_NStrLoss": "21440", "sL_ContLoss": "12700", "geom_point": "0101000020E6100000D626E35234C55EC04F9F70B807864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.079709397999949, 49.043806680000081 ], [ -123.083135225999925, 49.043899808000056 ], [ -123.082910108999926, 49.047497924000041 ], [ -123.082906623999961, 49.047497830000026 ], [ -123.082715470999972, 49.05055262000009 ], [ -123.079704763999942, 49.050470784000034 ], [ -123.079709397999949, 49.043806680000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148127500", "BldgCostT": "100945000", "sL_LossRatio": "0.76344368261218", "sL_AssetLoss": "1283893", "sL_BldgLoss": "980180", "sL_StrLoss": "475950", "sL_NStrLoss": "504230", "sL_ContLoss": "303713", "geom_point": "0101000020E61000008F63E25E32C65EC0FEF0C1A542834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.090959193999964, 49.032110243000034 ], [ -123.090834719, 49.027224068000123 ], [ -123.091316250999952, 49.027223688000049 ], [ -123.091316953999936, 49.02760719 ], [ -123.093384058999902, 49.027663193000109 ], [ -123.093336489999956, 49.02842650000008 ], [ -123.093358506999976, 49.028427095000019 ], [ -123.093315875999977, 49.029111158000077 ], [ -123.093371693999927, 49.029111113000106 ], [ -123.093371188999953, 49.028841246000063 ], [ -123.094602371999969, 49.02884024300009 ], [ -123.094601860999944, 49.028570377000051 ], [ -123.094796704999979, 49.028570217000023 ], [ -123.094797839999927, 49.028552003000122 ], [ -123.095422642999964, 49.028568914000125 ], [ -123.095420579999953, 49.027490234000027 ], [ -123.095830963999973, 49.027489894000105 ], [ -123.095830444999962, 49.027220027000077 ], [ -123.095900978999921, 49.027219969000079 ], [ -123.095968191999972, 49.02614044500006 ], [ -123.094186882999907, 49.02614191200005 ], [ -123.094187392999942, 49.026411778000124 ], [ -123.091314770999972, 49.026414088000081 ], [ -123.091315263999917, 49.026683953000045 ], [ -123.090820970999943, 49.026684345000049 ], [ -123.090807609999942, 49.02615980500007 ], [ -123.090813899999944, 49.025510284000077 ], [ -123.090809683999936, 49.02542459600015 ], [ -123.090808813999942, 49.025374093000067 ], [ -123.090828818999952, 49.024723191000113 ], [ -123.093634258999941, 49.024649780000047 ], [ -123.096808039999956, 49.024630413000054 ], [ -123.09736575799991, 49.024666346000117 ], [ -123.099306186, 49.024581318000074 ], [ -123.099636929999946, 49.024570049000019 ], [ -123.100263885999965, 49.024634123000098 ], [ -123.100496841000037, 49.024640660000067 ], [ -123.100556753999939, 49.024173334000096 ], [ -123.100479995999976, 49.023662378000054 ], [ -123.100311017999914, 49.023455757000121 ], [ -123.100076869999896, 49.023175031000093 ], [ -123.099898727999971, 49.022697606000101 ], [ -123.099649630999949, 49.022310925000035 ], [ -123.099158302999982, 49.021780508000063 ], [ -123.098593183999952, 49.021308560000136 ], [ -123.098074326999921, 49.020950930000012 ], [ -123.097808384999951, 49.02084673500012 ], [ -123.097237115999988, 49.02062961500009 ], [ -123.096610564999978, 49.020238273000075 ], [ -123.095874544999972, 49.01980489200011 ], [ -123.09546698199999, 49.01949757400007 ], [ -123.094894051999944, 49.018878308000069 ], [ -123.094180842999947, 49.018501211000078 ], [ -123.093215751999963, 49.018147943000038 ], [ -123.09312562299999, 49.01791961 ], [ -123.09305489799999, 49.017800003000069 ], [ -123.093029946999977, 49.01773530000002 ], [ -123.093023264999914, 49.017717867000073 ], [ -123.094063015999907, 49.017651334000035 ], [ -123.095543494999944, 49.01755660200007 ], [ -123.096660931999978, 49.017722240000062 ], [ -123.096859703999925, 49.018006809000056 ], [ -123.097127935999978, 49.018331270000054 ], [ -123.097580879999967, 49.018879128000059 ], [ -123.09801129, 49.019399689000082 ], [ -123.09944900799999, 49.020684300000028 ], [ -123.1002176099999, 49.021197004000115 ], [ -123.100245692999962, 49.021592907000056 ], [ -123.100669789999969, 49.022051515000051 ], [ -123.101903410999967, 49.022850494000039 ], [ -123.102450886999975, 49.023102606000052 ], [ -123.103024778999952, 49.023244992000038 ], [ -123.103903997999979, 49.023255868000035 ], [ -123.10445901099996, 49.023500715000125 ], [ -123.104893226999963, 49.023566989000102 ], [ -123.105261483999982, 49.023548660000053 ], [ -123.105262379999942, 49.023973401000063 ], [ -123.104852025999961, 49.023973775000051 ], [ -123.104852663999978, 49.024277358000163 ], [ -123.104517397, 49.024513813000098 ], [ -123.104442800999934, 49.024513880000072 ], [ -123.10444291, 49.024566346000057 ], [ -123.104134257999988, 49.024784026000063 ], [ -123.104033004000016, 49.024784118000078 ], [ -123.104033152999989, 49.024855332000129 ], [ -123.102601654999901, 49.025864869000046 ], [ -123.102393774999925, 49.025865054000107 ], [ -123.10239407499995, 49.026011256000032 ], [ -123.102250043, 49.026112827000091 ], [ -123.10221848899999, 49.02613507600006 ], [ -123.101573582999933, 49.026135645000082 ], [ -123.101574507999885, 49.026589200000082 ], [ -123.100876221999954, 49.027081578000043 ], [ -123.100646894999926, 49.027243308000102 ], [ -123.098382661999949, 49.028523783000018 ], [ -123.098120893999976, 49.0286717930001 ], [ -123.097418347999934, 49.029007701000069 ], [ -123.097209391999968, 49.029107595000063 ], [ -123.095425943999928, 49.029964460000038 ], [ -123.091362776999958, 49.03191638200007 ], [ -123.091276677999971, 49.031957747000078 ], [ -123.090959311999981, 49.032110115000087 ], [ -123.090959193999964, 49.032110243000034 ] ], [ [ -123.101163152, 49.026106377000133 ], [ -123.101162448, 49.025759011000027 ], [ -123.099110488999969, 49.025703565000114 ], [ -123.099110814999932, 49.02586791900012 ], [ -123.098290073999962, 49.025868622000068 ], [ -123.098290389999931, 49.026028742000079 ], [ -123.101163152, 49.026106377000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182465947", "BldgCostT": "120450269", "sL_LossRatio": "0.738611731704207", "sL_AssetLoss": "1803830", "sL_BldgLoss": "1332330", "sL_StrLoss": "576050", "sL_NStrLoss": "756280", "sL_ContLoss": "471500", "geom_point": "0101000020E61000003C3A2A0E52B25EC0BDE676ABBEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.786549897999961, 49.279817602000051 ], [ -122.786579360999966, 49.279648423000026 ], [ -122.785903544999911, 49.279671403000116 ], [ -122.78585798499995, 49.279672958000084 ], [ -122.785656422999949, 49.279660321000051 ], [ -122.78511179299997, 49.279626191000041 ], [ -122.784280136999925, 49.279574058000087 ], [ -122.78430850899997, 49.27894054100009 ], [ -122.784322475999886, 49.27862791400004 ], [ -122.784106795, 49.278616171000074 ], [ -122.783947918999928, 49.278477518000081 ], [ -122.78403749099999, 49.278514939000061 ], [ -122.784327442999952, 49.278516366000105 ], [ -122.785502851999965, 49.278522723000073 ], [ -122.785731640000023, 49.278523942 ], [ -122.787352928999951, 49.278532593000115 ], [ -122.787640249999953, 49.278584806000048 ], [ -122.788176900999957, 49.278682322000051 ], [ -122.788094065999985, 49.278846017000021 ], [ -122.787675684999968, 49.279673002000045 ], [ -122.787611550999941, 49.279799745000105 ], [ -122.787482577, 49.280054230000076 ], [ -122.787253788999976, 49.280505620000056 ], [ -122.786656319999963, 49.280490315000073 ], [ -122.786144367999967, 49.280477180000105 ], [ -122.786299842999981, 49.280281864000102 ], [ -122.786436875999968, 49.28004780800017 ], [ -122.786549897999961, 49.279817602000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "576531219", "BldgCostT": "388154427", "sL_LossRatio": "0.780476362528872", "sL_AssetLoss": "5286310", "sL_BldgLoss": "4125840", "sL_StrLoss": "1887270", "sL_NStrLoss": "2238570", "sL_ContLoss": "1160470", "geom_point": "0101000020E6100000B963B874EBB15EC077A155DA20A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.781761783999968, 49.287459699000053 ], [ -122.78184300199996, 49.287161207000104 ], [ -122.781835888999964, 49.28688620300003 ], [ -122.781815507999951, 49.28622979900009 ], [ -122.780662494999916, 49.286244901000046 ], [ -122.780261391999943, 49.286239302000112 ], [ -122.779943286999966, 49.286208189000078 ], [ -122.779567204999964, 49.286140189000086 ], [ -122.778481501, 49.285739314000047 ], [ -122.778480190999957, 49.286213203000081 ], [ -122.777231698, 49.286216407000033 ], [ -122.776042312999962, 49.286220608000129 ], [ -122.774450791999953, 49.286213595000092 ], [ -122.774191705999968, 49.286144592000085 ], [ -122.77332248, 49.286252372000021 ], [ -122.773324395999964, 49.285834312000091 ], [ -122.773736915999919, 49.285835121000098 ], [ -122.773739387999953, 49.285295414000089 ], [ -122.774151901999915, 49.285296221000074 ], [ -122.774154145999915, 49.284805197000011 ], [ -122.774423919999947, 49.284487186000028 ], [ -122.774568108999915, 49.284487468000123 ], [ -122.774568888999966, 49.284316295000067 ], [ -122.774652461999963, 49.284217777000023 ], [ -122.774981847000035, 49.284218418000052 ], [ -122.774983624999891, 49.283827390000063 ], [ -122.77510953899997, 49.283678957000078 ], [ -122.775396804999929, 49.283679516000099 ], [ -122.775398029999977, 49.283409662000111 ], [ -122.77581053199998, 49.28341046300006 ], [ -122.775812977999962, 49.282870756000058 ], [ -122.776225473999929, 49.282871556000039 ], [ -122.776227786999982, 49.28236066000008 ], [ -122.776480702999962, 49.282062485000083 ], [ -122.776641627999965, 49.28206279500008 ], [ -122.776643296999978, 49.281692806000059 ], [ -122.776776703999971, 49.281153690000096 ], [ -122.776649135999904, 49.280400078000071 ], [ -122.776657469, 49.278554702000044 ], [ -122.77830730899997, 49.278557880000037 ], [ -122.778301260999982, 49.279907146 ], [ -122.778713732999947, 49.279907937000097 ], [ -122.77871856199998, 49.27882852300008 ], [ -122.77954348599999, 49.278830101000032 ], [ -122.779544688999977, 49.27856024700003 ], [ -122.778719769999896, 49.278558670000081 ], [ -122.778720819999975, 49.278323773000061 ], [ -122.782041228999944, 49.278423018000076 ], [ -122.782083245999971, 49.278423300000014 ], [ -122.783947918999928, 49.278477518000081 ], [ -122.784106795, 49.278616171000074 ], [ -122.784322475999886, 49.27862791400004 ], [ -122.78430850899997, 49.27894054100009 ], [ -122.784280136999925, 49.279574058000087 ], [ -122.78511179299997, 49.279626191000041 ], [ -122.785656422999949, 49.279660321000051 ], [ -122.78585798499995, 49.279672958000084 ], [ -122.785903544999911, 49.279671403000116 ], [ -122.786579360999966, 49.279648423000026 ], [ -122.786549897999961, 49.279817602000051 ], [ -122.786436875999968, 49.28004780800017 ], [ -122.786299842999981, 49.280281864000102 ], [ -122.786144367999967, 49.280477180000105 ], [ -122.786656319999963, 49.280490315000073 ], [ -122.787253788999976, 49.280505620000056 ], [ -122.786711892999904, 49.281574749000114 ], [ -122.785846009999929, 49.28137510500008 ], [ -122.784201700999944, 49.281360414000055 ], [ -122.784141049999931, 49.281368057000108 ], [ -122.783947887999958, 49.281392416000038 ], [ -122.783702095999956, 49.281467107000054 ], [ -122.783549174999905, 49.281551699000083 ], [ -122.783371517999939, 49.281696005000114 ], [ -122.783278486999947, 49.281848203000024 ], [ -122.783200593999965, 49.282316986000119 ], [ -122.782453965999977, 49.282302417000047 ], [ -122.781879985999936, 49.282291202000096 ], [ -122.78056334899999, 49.282293057000061 ], [ -122.779170289999939, 49.282295009000073 ], [ -122.778470695999971, 49.282293998000128 ], [ -122.778470703999929, 49.282302982000083 ], [ -122.778470621999986, 49.283126490000086 ], [ -122.77847049399999, 49.284711112000068 ], [ -122.778630972999963, 49.285010332000056 ], [ -122.778631438999923, 49.285011131000047 ], [ -122.778640905999964, 49.285028801000124 ], [ -122.778954987999938, 49.285315607000072 ], [ -122.779270487999923, 49.285503405000092 ], [ -122.779720696, 49.285671793000049 ], [ -122.780305710999983, 49.285759501000022 ], [ -122.783176406999971, 49.285736106000115 ], [ -122.784374110999948, 49.28573894400003 ], [ -122.784688341999967, 49.285739703000068 ], [ -122.783765949999975, 49.287506375000078 ], [ -122.783567507999976, 49.287886487000051 ], [ -122.781761783999968, 49.287459699000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "674312333", "BldgCostT": "452618333", "sL_LossRatio": "0.719448431167354", "sL_AssetLoss": "10444390", "sL_BldgLoss": "7514200", "sL_StrLoss": "3421970", "sL_NStrLoss": "4092230", "sL_ContLoss": "2930190", "geom_point": "0101000020E61000001F722B6B78AC5EC0B6CAE1CDF98F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.69084774199996, 49.126381029000108 ], [ -122.690859417999889, 49.125889365000106 ], [ -122.69086109099996, 49.124999074000115 ], [ -122.690872276, 49.123627836000033 ], [ -122.690887282999981, 49.123224578000098 ], [ -122.690924461999941, 49.12218126000004 ], [ -122.690923565000034, 49.122136169000029 ], [ -122.690929777999941, 49.121198861000103 ], [ -122.690932221, 49.1208301 ], [ -122.690935197999949, 49.120380404000109 ], [ -122.69093621899998, 49.120224268000079 ], [ -122.690863354999976, 49.12005442400006 ], [ -122.690435008999913, 49.119682553000054 ], [ -122.690386498999928, 49.119618710000061 ], [ -122.69025337, 49.119443578000066 ], [ -122.690656023999978, 49.119319307000097 ], [ -122.690763182999916, 49.119286226000028 ], [ -122.691272139999967, 49.119063982000057 ], [ -122.691590219999938, 49.119214356000036 ], [ -122.692613894, 49.119671019000087 ], [ -122.699488412999969, 49.122737303000079 ], [ -122.701330931999962, 49.123575679000083 ], [ -122.701660989999979, 49.123725856000114 ], [ -122.701527447999965, 49.124121874000046 ], [ -122.701660846999985, 49.124752289000092 ], [ -122.701661063999893, 49.124768775000106 ], [ -122.701663775999933, 49.124962330000102 ], [ -122.70163533099999, 49.126040152000023 ], [ -122.701548732999981, 49.126082549000095 ], [ -122.701516550999941, 49.126150060000057 ], [ -122.698328936999971, 49.126238794000095 ], [ -122.69639845099999, 49.126258818000068 ], [ -122.696344203999942, 49.126173336000107 ], [ -122.69623221800002, 49.126149175000073 ], [ -122.69608885699995, 49.126180795000032 ], [ -122.696045034999926, 49.126276784000027 ], [ -122.696094821999935, 49.126347714000069 ], [ -122.696204859999924, 49.12637992800007 ], [ -122.696215899999984, 49.12718949700011 ], [ -122.696215549999962, 49.127221720000087 ], [ -122.696208702999954, 49.127869653000054 ], [ -122.696211434999967, 49.12818418800007 ], [ -122.696214753, 49.128575474000094 ], [ -122.696201918999947, 49.129277073000068 ], [ -122.696199221999905, 49.129641446000072 ], [ -122.696196775999979, 49.129967184000066 ], [ -122.696005558999971, 49.129968424000069 ], [ -122.695373213999986, 49.129972522000116 ], [ -122.694155186, 49.129980383000031 ], [ -122.693415055999964, 49.129985138000059 ], [ -122.693167261999974, 49.129986749000047 ], [ -122.691404947999956, 49.130009159000124 ], [ -122.690821958999891, 49.130018250000035 ], [ -122.6908294079999, 49.129258790000087 ], [ -122.690836557999944, 49.128426349000101 ], [ -122.690837409999986, 49.127836111000107 ], [ -122.690842523999919, 49.127147788000045 ], [ -122.69084439699995, 49.126874639000029 ], [ -122.69084774199996, 49.126381029000108 ] ], [ [ -122.695289990999925, 49.123877151000073 ], [ -122.695290890999956, 49.123864487000063 ], [ -122.694363018999979, 49.123835971000112 ], [ -122.694386427000012, 49.123506482000089 ], [ -122.694296979999976, 49.123503732000067 ], [ -122.694295547999943, 49.123736608000037 ], [ -122.694046780999955, 49.123735949000064 ], [ -122.694039479999944, 49.123838717000105 ], [ -122.695289990999925, 49.123877151000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "542321228", "BldgCostT": "363984857", "sL_LossRatio": "0.721294248998446", "sL_AssetLoss": "8222220", "sL_BldgLoss": "5930640", "sL_StrLoss": "2791980", "sL_NStrLoss": "3138660", "sL_ContLoss": "2291580", "geom_point": "0101000020E61000009D6C3467DAAB5EC0FE909F09A4904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.690511784999941, 49.126380685000072 ], [ -122.69084774199996, 49.126381029000108 ], [ -122.69084439699995, 49.126874639000029 ], [ -122.690842523999919, 49.127147788000045 ], [ -122.690837409999986, 49.127836111000107 ], [ -122.690836557999944, 49.128426349000101 ], [ -122.6908294079999, 49.129258790000087 ], [ -122.690821958999891, 49.130018250000035 ], [ -122.690814217999986, 49.130679747000073 ], [ -122.690806087999974, 49.131372374000094 ], [ -122.690794654999934, 49.132343879000075 ], [ -122.690779144999965, 49.133663930000047 ], [ -122.687798846999925, 49.133648280000145 ], [ -122.687354673999934, 49.133645925000067 ], [ -122.686400593999977, 49.133640443000054 ], [ -122.68516032699992, 49.133633294000091 ], [ -122.683758998, 49.133626161000095 ], [ -122.681796137999967, 49.1336151860001 ], [ -122.680686441999967, 49.13361055600005 ], [ -122.679601541999958, 49.133606032000081 ], [ -122.679498775999932, 49.133605561000103 ], [ -122.679538875999981, 49.130932141000088 ], [ -122.679547129999918, 49.130087104000062 ], [ -122.679545559999923, 49.130013172000048 ], [ -122.679577262999899, 49.128378539000046 ], [ -122.679678882999923, 49.12793904100004 ], [ -122.679741732999972, 49.127667164000044 ], [ -122.679750814999963, 49.127443978000073 ], [ -122.67978176299998, 49.126338272000119 ], [ -122.681129282999962, 49.126347434000124 ], [ -122.682465402999966, 49.126343960000078 ], [ -122.68390426299996, 49.126340212000038 ], [ -122.685260691999986, 49.126339676000072 ], [ -122.686177930999975, 49.126350432000066 ], [ -122.686346281999988, 49.126352401000098 ], [ -122.686818432999942, 49.126358836000044 ], [ -122.687448131999972, 49.126367396000035 ], [ -122.688659862999941, 49.12637860500007 ], [ -122.690511784999941, 49.126380685000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219949668", "BldgCostT": "145111668", "sL_LossRatio": "0.807046106952461", "sL_AssetLoss": "1633810", "sL_BldgLoss": "1318560", "sL_StrLoss": "764490", "sL_NStrLoss": "554070", "sL_ContLoss": "315250", "geom_point": "0101000020E61000004C4652FB82B15EC034DD80093B874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77644139599991, 49.052819437000061 ], [ -122.779213527999971, 49.052807091000041 ], [ -122.779209360999928, 49.053287676000089 ], [ -122.779197047999943, 49.054708883000053 ], [ -122.779182708999926, 49.05636056500002 ], [ -122.779177171999919, 49.05692175500014 ], [ -122.779166732999954, 49.057983152000055 ], [ -122.779163833999959, 49.058279981000076 ], [ -122.779145872999948, 49.060100370000086 ], [ -122.776180783999962, 49.060120122000065 ], [ -122.768036136999967, 49.060173944000056 ], [ -122.768043673999941, 49.057835495000056 ], [ -122.768051615999951, 49.056387064000042 ], [ -122.768054068999987, 49.055937307000079 ], [ -122.768056647, 49.055467949000104 ], [ -122.768057125999988, 49.055378018000063 ], [ -122.768060072999901, 49.054839838000106 ], [ -122.768060898999977, 49.054688095000131 ], [ -122.768065242999981, 49.052909194000051 ], [ -122.769478792999962, 49.052889530000073 ], [ -122.77038874299997, 49.052876880000078 ], [ -122.77222344799999, 49.052851325000105 ], [ -122.772239892999934, 49.05285093600002 ], [ -122.773606294999965, 49.052832521000063 ], [ -122.77644139599991, 49.052819437000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53682083", "BldgCostT": "36758333", "sL_LossRatio": "0.787716716639191", "sL_AssetLoss": "451915", "sL_BldgLoss": "355981", "sL_StrLoss": "201050", "sL_NStrLoss": "154931", "sL_ContLoss": "95934", "geom_point": "0101000020E6100000220BEABED0B05EC0065AD31F0E874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.766964240999968, 49.049313046000044 ], [ -122.768087521000012, 49.049313090000048 ], [ -122.76808141599993, 49.050297156000035 ], [ -122.768076145999927, 49.051142705000053 ], [ -122.768066114999954, 49.052761913000076 ], [ -122.768065242999981, 49.052909194000051 ], [ -122.768060898999977, 49.054688095000131 ], [ -122.768060072999901, 49.054839838000106 ], [ -122.768057125999988, 49.055378018000063 ], [ -122.768056647, 49.055467949000104 ], [ -122.768054068999987, 49.055937307000079 ], [ -122.768051615999951, 49.056387064000042 ], [ -122.768043673999941, 49.057835495000056 ], [ -122.768036136999967, 49.060173944000056 ], [ -122.766364913999965, 49.060193554000108 ], [ -122.76570755100002, 49.060201260000042 ], [ -122.761506800999953, 49.060250513000035 ], [ -122.756860680999964, 49.060304796000018 ], [ -122.756852150999975, 49.058711603000049 ], [ -122.756851598999958, 49.058608408000076 ], [ -122.756857794999988, 49.058172354000064 ], [ -122.756867492999945, 49.057488802000151 ], [ -122.75687107499999, 49.057236888000091 ], [ -122.756873690999981, 49.057051703000099 ], [ -122.756893058999978, 49.05648198299999 ], [ -122.756913776999966, 49.055871060000108 ], [ -122.756928383999963, 49.055440199000088 ], [ -122.756931548999887, 49.054942904000058 ], [ -122.756936524999929, 49.054151309000105 ], [ -122.756938439999971, 49.053845465000038 ], [ -122.756943818999957, 49.052997395000055 ], [ -122.75694714299999, 49.052163230000069 ], [ -122.756950008999951, 49.051453790000075 ], [ -122.758996697999947, 49.051427303 ], [ -122.760392907000025, 49.051413598000067 ], [ -122.760688800999972, 49.051366605000055 ], [ -122.76076691099999, 49.051325702000078 ], [ -122.760849008999941, 49.051285797000098 ], [ -122.76100541299999, 49.051141801000043 ], [ -122.761059522999972, 49.050913699000041 ], [ -122.761052120999935, 49.049308404000087 ], [ -122.762481094999899, 49.049312710000017 ], [ -122.76540406, 49.049312933000074 ], [ -122.766964240999968, 49.049313046000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "519766122", "BldgCostT": "338938705", "sL_LossRatio": "0.795270238869783", "sL_AssetLoss": "3442880", "sL_BldgLoss": "2738020", "sL_StrLoss": "1603100", "sL_NStrLoss": "1134920", "sL_ContLoss": "704860", "geom_point": "0101000020E6100000D77DC6A691B15EC04B4BE63750864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.76809104499992, 49.048902926000046 ], [ -122.768093503, 49.04861509200002 ], [ -122.768103286999946, 49.047476355000072 ], [ -122.76810442399993, 49.047346739000076 ], [ -122.768109567999915, 49.046753036000077 ], [ -122.768110914999966, 49.04659495700006 ], [ -122.768116118999927, 49.045988450000067 ], [ -122.768119500999916, 49.045597374000089 ], [ -122.77003241299991, 49.045596647000046 ], [ -122.770958813999968, 49.045596301000096 ], [ -122.773488531999959, 49.045602055000117 ], [ -122.773642499999966, 49.045630112000012 ], [ -122.773852655999946, 49.045630002000074 ], [ -122.775322045999985, 49.045629226000102 ], [ -122.776662823999942, 49.045616912000085 ], [ -122.779183992999933, 49.045593724000049 ], [ -122.779181042999966, 49.046823819000089 ], [ -122.77917650899991, 49.047124982000057 ], [ -122.779169639999978, 49.047583218000106 ], [ -122.779211690999915, 49.047667394000044 ], [ -122.779212032999951, 49.047835830000139 ], [ -122.779213081999956, 49.048321687000097 ], [ -122.779214112999966, 49.04879828 ], [ -122.779214763999931, 49.049097151000169 ], [ -122.779214994, 49.049203173000095 ], [ -122.7793687899999, 49.049203533000096 ], [ -122.780101497999937, 49.049205315000016 ], [ -122.780880884999959, 49.049207185000121 ], [ -122.782381311, 49.049210768000115 ], [ -122.783357480999925, 49.049213099000042 ], [ -122.784671375999949, 49.049216210000026 ], [ -122.784603433999976, 49.050994084000074 ], [ -122.780783314999937, 49.050966603000042 ], [ -122.780509682999963, 49.050964639000014 ], [ -122.780125971999936, 49.050961868000059 ], [ -122.779873417999951, 49.050960052000065 ], [ -122.779221126999957, 49.050955328000107 ], [ -122.779215833999956, 49.052243978000035 ], [ -122.779213974999948, 49.052693769000065 ], [ -122.779213527999971, 49.052807091000041 ], [ -122.77644139599991, 49.052819437000061 ], [ -122.773606294999965, 49.052832521000063 ], [ -122.772239892999934, 49.05285093600002 ], [ -122.77222344799999, 49.052851325000105 ], [ -122.77038874299997, 49.052876880000078 ], [ -122.769478792999962, 49.052889530000073 ], [ -122.768065242999981, 49.052909194000051 ], [ -122.768066114999954, 49.052761913000076 ], [ -122.768076145999927, 49.051142705000053 ], [ -122.76808141599993, 49.050297156000035 ], [ -122.768087521000012, 49.049313090000048 ], [ -122.76809104499992, 49.048902926000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141454417", "BldgCostT": "88326667", "sL_LossRatio": "0.719580213466367", "sL_AssetLoss": "1326579", "sL_BldgLoss": "954580", "sL_StrLoss": "472160", "sL_NStrLoss": "482420", "sL_ContLoss": "371999", "geom_point": "0101000020E61000003749349A3FB15EC07598B367E4844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.768119500999916, 49.045597374000089 ], [ -122.768114418, 49.044700051000063 ], [ -122.768109003999939, 49.043736887000051 ], [ -122.768082597999921, 49.042874490000038 ], [ -122.768124547999918, 49.042133077000045 ], [ -122.768161311999975, 49.038345505000109 ], [ -122.767850166999935, 49.038347377000086 ], [ -122.767248027, 49.038351005000024 ], [ -122.767083706, 49.038351996000095 ], [ -122.765714947, 49.038360197000038 ], [ -122.765454840999936, 49.038361777000034 ], [ -122.764296690999913, 49.038368708000043 ], [ -122.76412800599999, 49.038368828000024 ], [ -122.761514429999977, 49.03837078800003 ], [ -122.760155903999973, 49.038371785000045 ], [ -122.759174651999956, 49.038380021000123 ], [ -122.757070487999954, 49.038397590000123 ], [ -122.757076865999963, 49.037419809000049 ], [ -122.757084421999977, 49.036259423000054 ], [ -122.757088993999957, 49.035557770000068 ], [ -122.757094492999926, 49.03471040900012 ], [ -122.757107214999962, 49.033524766000056 ], [ -122.757133677999974, 49.031059701000039 ], [ -122.76096137199994, 49.03106113800002 ], [ -122.761700120999976, 49.031061403000109 ], [ -122.762069398999984, 49.031061523000119 ], [ -122.762808254000021, 49.031061801000114 ], [ -122.763971132999984, 49.031062184000085 ], [ -122.76462779699996, 49.031062390000081 ], [ -122.765325431999941, 49.031062606000098 ], [ -122.765681112, 49.031062726000116 ], [ -122.765913699999928, 49.031062811000062 ], [ -122.767076577999902, 49.031063156000073 ], [ -122.767541699999981, 49.031063306000092 ], [ -122.767863500999951, 49.031063385000074 ], [ -122.767979559999958, 49.031063681000063 ], [ -122.768855112999987, 49.031065701000081 ], [ -122.769158021999928, 49.031066348000138 ], [ -122.769166065999954, 49.031073667000122 ], [ -122.77749297, 49.038594066 ], [ -122.779400457999941, 49.040316337000014 ], [ -122.781715099999985, 49.04240602600008 ], [ -122.78515251499995, 49.045508899000069 ], [ -122.785191376999961, 49.045543993000052 ], [ -122.785259853999946, 49.045601903 ], [ -122.784184511, 49.045599364000104 ], [ -122.782767092999947, 49.045595739000063 ], [ -122.780856563999919, 49.045594349000091 ], [ -122.779284420999915, 49.045593432000082 ], [ -122.779263332999903, 49.045593431000029 ], [ -122.779183992999933, 49.045593724000049 ], [ -122.776662823999942, 49.045616912000085 ], [ -122.775322045999985, 49.045629226000102 ], [ -122.773852655999946, 49.045630002000074 ], [ -122.773642499999966, 49.045630112000012 ], [ -122.773488531999959, 49.045602055000117 ], [ -122.770958813999968, 49.045596301000096 ], [ -122.77003241299991, 49.045596647000046 ], [ -122.768119500999916, 49.045597374000089 ] ], [ [ -122.775692250999924, 49.043233850000092 ], [ -122.775771909999946, 49.042082046000054 ], [ -122.774466084999958, 49.042042817000073 ], [ -122.774489366999944, 49.041706306000023 ], [ -122.77440650199999, 49.041703815000048 ], [ -122.774430895, 49.041351230000018 ], [ -122.774197351999973, 49.041344212000077 ], [ -122.774191745999971, 49.041425247000113 ], [ -122.773616295999943, 49.04140795100006 ], [ -122.773614149999901, 49.041880458000023 ], [ -122.77197215399994, 49.041877225000093 ], [ -122.771974524999948, 49.041358593000055 ], [ -122.771935209999981, 49.041357411000078 ], [ -122.771861859999959, 49.042416741000117 ], [ -122.771969686999967, 49.042416954000018 ], [ -122.771967558999947, 49.0428824500001 ], [ -122.772788467999945, 49.042907132000053 ], [ -122.772789464999931, 49.042688438000049 ], [ -122.774431486999958, 49.042691659000056 ], [ -122.774430267999961, 49.042961522000105 ], [ -122.774840774999987, 49.04296232500009 ], [ -122.774839609999958, 49.043220537000124 ], [ -122.775254414999935, 49.043232998000043 ], [ -122.775692250999924, 49.043233850000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186657417", "BldgCostT": "121991667", "sL_LossRatio": "0.704776474157985", "sL_AssetLoss": "1581920", "sL_BldgLoss": "1114900", "sL_StrLoss": "480630", "sL_NStrLoss": "634270", "sL_ContLoss": "467020", "geom_point": "0101000020E6100000FFF92AB73CC75EC0CF733C4D03A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.112507507999936, 49.281092099000013 ], [ -123.11425600199999, 49.279937305000054 ], [ -123.115205690999986, 49.280576104000069 ], [ -123.113475383999941, 49.281726010000114 ], [ -123.112399699999983, 49.282444623000039 ], [ -123.111922399999926, 49.28276348400005 ], [ -123.110956395, 49.282119799000021 ], [ -123.111425710999953, 49.281808844000125 ], [ -123.112507507999936, 49.281092099000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "425174619", "BldgCostT": "256449126", "sL_LossRatio": "0.696234451430797", "sL_AssetLoss": "1581496", "sL_BldgLoss": "1101092", "sL_StrLoss": "545800", "sL_NStrLoss": "555292", "sL_ContLoss": "480404", "geom_point": "0101000020E610000098D708CC5CC75EC08B7CA00DA7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114176694, 49.277449717000046 ], [ -123.115575086999939, 49.276538093000056 ], [ -123.11600551399998, 49.276805878000033 ], [ -123.116587147999951, 49.277167734000031 ], [ -123.117074491999986, 49.277494521000058 ], [ -123.11748950099998, 49.277772809000083 ], [ -123.11739599699996, 49.277861311000024 ], [ -123.115952705999987, 49.278840511000084 ], [ -123.116882198999988, 49.279473295000066 ], [ -123.115205690999986, 49.280576104000069 ], [ -123.11425600199999, 49.279937305000054 ], [ -123.113277386999982, 49.27932120400007 ], [ -123.112254502999974, 49.278710130000078 ], [ -123.112733749999933, 49.278395619000015 ], [ -123.11396380599993, 49.277588492000056 ], [ -123.114176694, 49.277449717000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114641418", "BldgCostT": "73546668", "sL_LossRatio": "0.721703761682087", "sL_AssetLoss": "1494810", "sL_BldgLoss": "1078810", "sL_StrLoss": "471080", "sL_NStrLoss": "607730", "sL_ContLoss": "416000", "geom_point": "0101000020E61000003108C5B9FABF5EC076114B6FA4A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.999612742999886, 49.271510204000087 ], [ -122.999630795999934, 49.271024497000091 ], [ -122.99895011199996, 49.2710325910001 ], [ -122.998270396999928, 49.271131691000015 ], [ -122.997720589999943, 49.271261497000104 ], [ -122.997217088999903, 49.270929496000107 ], [ -122.99619719199994, 49.270256996000022 ], [ -122.99595958799992, 49.270171104000148 ], [ -122.996257405999927, 49.269686828000047 ], [ -122.996530897999946, 49.269242089000109 ], [ -122.996831938999918, 49.26879575700012 ], [ -122.997154068999947, 49.268318123000071 ], [ -122.997457087999948, 49.267903177000058 ], [ -123.000198825000012, 49.26967920000007 ], [ -123.003077038999919, 49.269536694000138 ], [ -123.003078196999937, 49.269765148000083 ], [ -123.00308023099997, 49.270167346000029 ], [ -123.003080588999978, 49.270176371000055 ], [ -123.003098340999912, 49.270601761000037 ], [ -123.003116882999976, 49.271046603000045 ], [ -123.003123318999911, 49.271483196000126 ], [ -123.003130104999968, 49.271947787000059 ], [ -123.002291186999983, 49.271958699000017 ], [ -123.001635812999936, 49.27195448800007 ], [ -123.00093821199998, 49.271949984000123 ], [ -123.000832900999939, 49.272219104000072 ], [ -123.000593688999956, 49.272560104000107 ], [ -123.00033150899999, 49.27283209600013 ], [ -122.999998313999981, 49.273074407000117 ], [ -122.999841185999969, 49.273188705000081 ], [ -122.999179821000013, 49.27359910100008 ], [ -122.998808815999979, 49.273768888000085 ], [ -122.998388599999956, 49.273400680000073 ], [ -122.997988204999942, 49.273049809000064 ], [ -122.998967205999961, 49.272489694000093 ], [ -122.999322899999981, 49.272195109000059 ], [ -122.999525794999954, 49.271904392000081 ], [ -122.99960659, 49.271675990000055 ], [ -122.999612742999886, 49.271510204000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152508999", "BldgCostT": "100074999", "sL_LossRatio": "0.740907629053367", "sL_AssetLoss": "2017983", "sL_BldgLoss": "1495139", "sL_StrLoss": "668929", "sL_NStrLoss": "826210", "sL_ContLoss": "522844", "geom_point": "0101000020E6100000D5138696AFBF5EC0B9D8599995A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.99602129099999, 49.273256300000114 ], [ -122.995835792999941, 49.272824092000057 ], [ -122.992155703999956, 49.272826097000063 ], [ -122.992159578000013, 49.27235541400011 ], [ -122.992167366999979, 49.271419950000094 ], [ -122.992173223999899, 49.270709336000017 ], [ -122.992174409999961, 49.27056542700015 ], [ -122.992178197999962, 49.270106402000103 ], [ -122.992178840999955, 49.269647949000039 ], [ -122.992179478999958, 49.269216189000055 ], [ -122.992179500999953, 49.26919569800004 ], [ -122.992184622999972, 49.268739358000062 ], [ -122.992189592999949, 49.268298804000032 ], [ -122.992193879999974, 49.267998897000055 ], [ -122.992195813999928, 49.267857875000125 ], [ -122.992201953999981, 49.26740913500003 ], [ -122.992207313999984, 49.266886780000057 ], [ -122.997626569999909, 49.266962051000107 ], [ -122.997625312999972, 49.267406108000046 ], [ -122.997648510999966, 49.267641872000091 ], [ -122.997457087999948, 49.267903177000058 ], [ -122.997154068999947, 49.268318123000071 ], [ -122.996831938999918, 49.26879575700012 ], [ -122.996530897999946, 49.269242089000109 ], [ -122.996257405999927, 49.269686828000047 ], [ -122.99595958799992, 49.270171104000148 ], [ -122.99619719199994, 49.270256996000022 ], [ -122.997217088999903, 49.270929496000107 ], [ -122.997720589999943, 49.271261497000104 ], [ -122.998270396999928, 49.271131691000015 ], [ -122.99895011199996, 49.2710325910001 ], [ -122.999630795999934, 49.271024497000091 ], [ -122.999612742999886, 49.271510204000087 ], [ -122.99960659, 49.271675990000055 ], [ -122.999525794999954, 49.271904392000081 ], [ -122.999322899999981, 49.272195109000059 ], [ -122.998967205999961, 49.272489694000093 ], [ -122.997988204999942, 49.273049809000064 ], [ -122.996439804999937, 49.273639906000035 ], [ -122.996208286999916, 49.27369209500003 ], [ -122.99602129099999, 49.273256300000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "472019478", "BldgCostT": "321364857", "sL_LossRatio": "0.791273237355857", "sL_AssetLoss": "2680490", "sL_BldgLoss": "2121000", "sL_StrLoss": "943300", "sL_NStrLoss": "1177700", "sL_ContLoss": "559490", "geom_point": "0101000020E61000001F0E09E7ECBF5EC0F2620F8A39A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.997625312999972, 49.267406108000046 ], [ -122.997626569999909, 49.266962051000107 ], [ -122.992207313999984, 49.266886780000057 ], [ -122.992215666999968, 49.266074528000068 ], [ -122.992217801999942, 49.265495638000083 ], [ -122.99221811699999, 49.265405644000062 ], [ -122.992218677999986, 49.26524406500004 ], [ -122.992224286999942, 49.265157732000013 ], [ -122.99303266, 49.265340628000097 ], [ -122.995043589999938, 49.265797328000062 ], [ -122.995193673999921, 49.265831406000103 ], [ -122.996516805999931, 49.266064603000082 ], [ -122.997631562999956, 49.266205537000118 ], [ -123.000000265999972, 49.266308369000114 ], [ -123.000344404999964, 49.266323306000054 ], [ -123.003110387999953, 49.26636230700008 ], [ -123.003107492999945, 49.266449596000022 ], [ -123.003091087999934, 49.267129294000078 ], [ -123.003082092999989, 49.26748151400011 ], [ -123.003067671999986, 49.26804382100007 ], [ -123.003077038999919, 49.269536694000138 ], [ -123.000198825000012, 49.26967920000007 ], [ -122.997457087999948, 49.267903177000058 ], [ -122.997648510999966, 49.267641872000091 ], [ -122.997625312999972, 49.267406108000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "602539272", "BldgCostT": "390788173", "sL_LossRatio": "0.703789928431771", "sL_AssetLoss": "8689610", "sL_BldgLoss": "6115660", "sL_StrLoss": "2737360", "sL_NStrLoss": "3378300", "sL_ContLoss": "2573950", "geom_point": "0101000020E6100000D5445F07AFBF5EC07D2C8559CBA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.98660119499999, 49.266060202000041 ], [ -122.986905982999971, 49.265112097000021 ], [ -122.986960507999967, 49.265013590000059 ], [ -122.987436912999954, 49.264193655000042 ], [ -122.988358579999954, 49.263266335000068 ], [ -122.986879998999939, 49.262720587000054 ], [ -122.986170239999979, 49.262437756000111 ], [ -122.985735012999911, 49.261989600000106 ], [ -122.985597678999909, 49.261841850000103 ], [ -122.986454637999913, 49.261834574000069 ], [ -122.986796605, 49.261854438000036 ], [ -122.990366760999947, 49.261816813000067 ], [ -122.990722357999971, 49.261836399000032 ], [ -122.992029571999979, 49.261843639000134 ], [ -122.992036803999937, 49.261843829000057 ], [ -122.997692216999951, 49.262026670000125 ], [ -122.999903469999964, 49.262062372000074 ], [ -123.001199401999941, 49.262174416000043 ], [ -123.00289077399998, 49.262171466000019 ], [ -123.003228151999949, 49.262306602000073 ], [ -123.003223694999974, 49.262397932000049 ], [ -123.003182395999971, 49.263250380000059 ], [ -123.003169801999931, 49.263510723000117 ], [ -123.003125656999899, 49.264423288000081 ], [ -123.003125203999957, 49.264432303000021 ], [ -123.003110387999953, 49.26636230700008 ], [ -123.000344404999964, 49.266323306000054 ], [ -123.000000265999972, 49.266308369000114 ], [ -122.997631562999956, 49.266205537000118 ], [ -122.996516805999931, 49.266064603000082 ], [ -122.995193673999921, 49.265831406000103 ], [ -122.995043589999938, 49.265797328000062 ], [ -122.99303266, 49.265340628000097 ], [ -122.992224286999942, 49.265157732000013 ], [ -122.992218677999986, 49.26524406500004 ], [ -122.99221811699999, 49.265405644000062 ], [ -122.992217801999942, 49.265495638000083 ], [ -122.99193339299994, 49.265406396000081 ], [ -122.98902440099999, 49.265348703000079 ], [ -122.988813985999982, 49.265414889000063 ], [ -122.988701404999958, 49.265519791000081 ], [ -122.988693278999946, 49.266279000000118 ], [ -122.988937296999893, 49.266838906000032 ], [ -122.988911609999931, 49.267192207000029 ], [ -122.987386681999936, 49.267188298000121 ], [ -122.986901901999929, 49.266521452000077 ], [ -122.986684211999929, 49.266221991000158 ], [ -122.986630524999953, 49.266117371000057 ], [ -122.98660119499999, 49.266060202000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35764061", "BldgCostT": "19498190", "sL_LossRatio": "0.618175362379381", "sL_AssetLoss": "478780", "sL_BldgLoss": "295970", "sL_StrLoss": "84130", "sL_NStrLoss": "211840", "sL_ContLoss": "182810", "geom_point": "0101000020E6100000DE2D3D580ECF5EC0671EAFF6E69F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.230719417999978, 49.256951702000038 ], [ -123.230735524999957, 49.256681813000071 ], [ -123.230677554999914, 49.256681929000116 ], [ -123.230676296999917, 49.256412075000107 ], [ -123.230264023999979, 49.256412897000132 ], [ -123.230260256999912, 49.255603334000064 ], [ -123.229847987999946, 49.255604156000103 ], [ -123.229842977999965, 49.254524738000079 ], [ -123.229430716999929, 49.254525558000054 ], [ -123.229423213999965, 49.252906432000088 ], [ -123.229835457999982, 49.252905612000085 ], [ -123.229830447999944, 49.251826194000117 ], [ -123.229418211, 49.251827013000124 ], [ -123.229413208999986, 49.250747595000043 ], [ -123.22900098199996, 49.250748414000036 ], [ -123.228993491999958, 49.249129286000112 ], [ -123.22858127799995, 49.249130102000088 ], [ -123.228577538999915, 49.248320538 ], [ -123.228165331999932, 49.248321352000048 ], [ -123.228165105999906, 49.248272328000098 ], [ -123.226442079999984, 49.248228041000118 ], [ -123.226617437999934, 49.245293677000106 ], [ -123.22581853599999, 49.245273133000069 ], [ -123.22585442099998, 49.244672780000059 ], [ -123.225413942999978, 49.244661451000077 ], [ -123.225296153999977, 49.244658421000118 ], [ -123.22531693599997, 49.244310822000045 ], [ -123.225508361999957, 49.241108581000091 ], [ -123.225511199999943, 49.241061104000082 ], [ -123.230211255999905, 49.24118190300004 ], [ -123.230985100999959, 49.241366379000048 ], [ -123.230959089999942, 49.241802382000031 ], [ -123.231517323999967, 49.241816712000052 ], [ -123.231400564999944, 49.243774150000114 ], [ -123.231395340999981, 49.243861743000117 ], [ -123.231560200999965, 49.243865974000059 ], [ -123.233808568999919, 49.243923656000064 ], [ -123.233750011, 49.244906166000042 ], [ -123.233745327999955, 49.24498473900006 ], [ -123.233973527, 49.244990591000061 ], [ -123.236037653999944, 49.245043501000033 ], [ -123.23598802099994, 49.245876924000079 ], [ -123.236810078999966, 49.245875242000068 ], [ -123.236812685999979, 49.246420490000062 ], [ -123.236813951999949, 49.246684806000083 ], [ -123.235939799000036, 49.246686595000014 ], [ -123.235882863999933, 49.24764256300012 ], [ -123.236801085999943, 49.247666088000052 ], [ -123.236789481999949, 49.247860983000109 ], [ -123.238233048, 49.247897951000105 ], [ -123.238161082999952, 49.249107233000061 ], [ -123.238886717999961, 49.249125808000045 ], [ -123.238885336999928, 49.248839398000015 ], [ -123.239297547999968, 49.248838546000101 ], [ -123.239294940999955, 49.248298837000057 ], [ -123.238882732999926, 49.248299690000152 ], [ -123.238879965999971, 49.247726479000036 ], [ -123.238877523999975, 49.247220271000081 ], [ -123.24011412, 49.247217708000036 ], [ -123.240115428999928, 49.247487562000089 ], [ -123.240939829999931, 49.247485846000068 ], [ -123.240941142999972, 49.247755701000138 ], [ -123.241353346999944, 49.247754841000095 ], [ -123.241354661999964, 49.248024695000055 ], [ -123.241766866999924, 49.24802383300004 ], [ -123.241769500999965, 49.248563541000138 ], [ -123.242181710999944, 49.24856267900001 ], [ -123.242184350999963, 49.249102387000057 ], [ -123.243420993999933, 49.249099787000091 ], [ -123.243422319999951, 49.249369643000072 ], [ -123.243834536999927, 49.249368773000029 ], [ -123.243838522999951, 49.250178335000101 ], [ -123.244662968999961, 49.250176593000035 ], [ -123.24466666, 49.250923419000102 ], [ -123.244666969999969, 49.250986155000064 ], [ -123.243018051999954, 49.250989636000085 ], [ -123.243017061, 49.250788050000054 ], [ -123.242876801999955, 49.253148789000093 ], [ -123.243440896999957, 49.253147602000055 ], [ -123.2434382429999, 49.252607893000082 ], [ -123.243850485999957, 49.252607024000042 ], [ -123.243849154999978, 49.252337170000075 ], [ -123.244618063999923, 49.25233554400009 ], [ -123.244674242999977, 49.251389401000097 ], [ -123.245081250999974, 49.251399795000047 ], [ -123.245080023999989, 49.251151759000038 ], [ -123.245079198999946, 49.250985282 ], [ -123.246315887999955, 49.250982652000069 ], [ -123.24631723, 49.251252506000107 ], [ -123.246729462999966, 49.25125162700003 ], [ -123.246730409999927, 49.251441895000085 ], [ -123.250159224999962, 49.251529345000087 ], [ -123.250039000999934, 49.253558125000026 ], [ -123.250039581999957, 49.253673223000114 ], [ -123.251688589, 49.253669643000137 ], [ -123.251691334999947, 49.254209350000032 ], [ -123.252103589999948, 49.254208452000128 ], [ -123.252110461999933, 49.255557721000045 ], [ -123.251806184999978, 49.255558385000043 ], [ -123.251790199999945, 49.255828277000042 ], [ -123.252111835999969, 49.255827575000076 ], [ -123.252113210999951, 49.2560974290001 ], [ -123.252525481999953, 49.256096528000079 ], [ -123.252528024999918, 49.256594961000104 ], [ -123.252490616999964, 49.256583397000014 ], [ -123.252092090999938, 49.256470592000078 ], [ -123.25196783199999, 49.256413014000024 ], [ -123.25190500099994, 49.256383888000045 ], [ -123.251681721999987, 49.256235000000117 ], [ -123.249749897999919, 49.25450870100007 ], [ -123.249645687999973, 49.25441329300002 ], [ -123.248759480999936, 49.253632305000096 ], [ -123.248184108999965, 49.253122267000094 ], [ -123.247686094999892, 49.252742055000056 ], [ -123.247006624, 49.252250063000126 ], [ -123.246652414999929, 49.252040170000065 ], [ -123.24620136, 49.252351105000038 ], [ -123.245910024999958, 49.252469763000143 ], [ -123.245406119999956, 49.252676666000077 ], [ -123.242086726999943, 49.253845542000057 ], [ -123.242074615999954, 49.253849803000087 ], [ -123.241148801999913, 49.254175597000049 ], [ -123.24095519499997, 49.254243607000085 ], [ -123.239739198999985, 49.254669184000115 ], [ -123.23894212099999, 49.254977529000065 ], [ -123.238276892999963, 49.255170366000044 ], [ -123.237679803999981, 49.25530278800008 ], [ -123.237188010999958, 49.255465834000042 ], [ -123.236800841999937, 49.255647768000067 ], [ -123.236691557999961, 49.255730536000037 ], [ -123.236665943999967, 49.255814549000085 ], [ -123.236593006999925, 49.255885636000052 ], [ -123.236484356999966, 49.255934196000091 ], [ -123.23635703399999, 49.255950731000063 ], [ -123.236230234999965, 49.255934877000108 ], [ -123.236119110999979, 49.255887001000055 ], [ -123.236047787, 49.255815838000025 ], [ -123.236022621999922, 49.255731416000096 ], [ -123.236045409999988, 49.255648252000036 ], [ -123.236028923999953, 49.255464081000085 ], [ -123.23563840099996, 49.254987509000024 ], [ -123.235491447999934, 49.254804192000059 ], [ -123.235373793999926, 49.254657428000051 ], [ -123.235113659999939, 49.254332955000081 ], [ -123.234633613999947, 49.253734118000089 ], [ -123.233783397999943, 49.252560335000055 ], [ -123.232976697999902, 49.25275310500011 ], [ -123.230036774, 49.253159548000063 ], [ -123.23009649899997, 49.253352961000068 ], [ -123.23042004499996, 49.254400631000102 ], [ -123.23097524399995, 49.255845190000059 ], [ -123.231122401999983, 49.25614080000009 ], [ -123.231272385999915, 49.256320279000064 ], [ -123.231526118999966, 49.256395244000046 ], [ -123.232135465999974, 49.257172678000067 ], [ -123.232230672999989, 49.257294180000031 ], [ -123.230997567999935, 49.257725490000134 ], [ -123.230844870999988, 49.257761022000103 ], [ -123.230682585999944, 49.257761347000049 ], [ -123.23068114299997, 49.25745158400008 ], [ -123.230678812999955, 49.25695178300009 ], [ -123.230719417999978, 49.256951702000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17497244", "BldgCostT": "9884076", "sL_LossRatio": "0.682583241858763", "sL_AssetLoss": "109320", "sL_BldgLoss": "74620", "sL_StrLoss": "39470", "sL_NStrLoss": "35150", "sL_ContLoss": "34700", "geom_point": "0101000020E6100000FA53DB3493D05EC0393E20F127A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.258243301999968, 49.267916998000025 ], [ -123.25732298299998, 49.26679929800008 ], [ -123.256631667999926, 49.265959818000091 ], [ -123.256207916999955, 49.265445189000076 ], [ -123.255509463999942, 49.264595066000027 ], [ -123.255096877999947, 49.26409289700014 ], [ -123.255863082999923, 49.263796291000141 ], [ -123.255920085999946, 49.263730526000053 ], [ -123.255982885999956, 49.263658077000052 ], [ -123.256116646999942, 49.2635037370001 ], [ -123.256327479999925, 49.263426335000091 ], [ -123.256430513999973, 49.263390358000017 ], [ -123.256574061999956, 49.263340319000079 ], [ -123.256631724, 49.26332019700007 ], [ -123.258183523999961, 49.262779063000032 ], [ -123.258494266999946, 49.262670685000103 ], [ -123.258592332999982, 49.262406699000096 ], [ -123.258634085999944, 49.262292045000088 ], [ -123.258650536999937, 49.262234215000021 ], [ -123.258637696999983, 49.262100149000055 ], [ -123.258631000999969, 49.262030174000053 ], [ -123.258563443999947, 49.261895166000038 ], [ -123.258446889999988, 49.261775129000036 ], [ -123.258116088999955, 49.261570032000058 ], [ -123.257986528999979, 49.261489701000123 ], [ -123.257843980999965, 49.261401330000048 ], [ -123.257785595999934, 49.261333115000085 ], [ -123.25771551299999, 49.261251265000055 ], [ -123.257669297999968, 49.261143899000025 ], [ -123.257552461999978, 49.260872441000039 ], [ -123.257371845999941, 49.260628255000078 ], [ -123.25720103899998, 49.260491432999984 ], [ -123.257093083, 49.260416696000071 ], [ -123.256672892999944, 49.260252912000091 ], [ -123.256052407999988, 49.26006059499999 ], [ -123.25578320299995, 49.259968195000056 ], [ -123.25526680899999, 49.259710996000088 ], [ -123.255079011999953, 49.259565700000046 ], [ -123.254766483999944, 49.259206511000045 ], [ -123.254629079999958, 49.258862759000117 ], [ -123.254573709999931, 49.258709769000035 ], [ -123.254322804999973, 49.258016339000086 ], [ -123.25713566899999, 49.25808787900008 ], [ -123.257092214999915, 49.258822932000015 ], [ -123.257495000999981, 49.258833170000074 ], [ -123.257479283999942, 49.25909908100013 ], [ -123.257769807999949, 49.259106464000091 ], [ -123.257677233999985, 49.260672718000087 ], [ -123.25790892, 49.26067220000003 ], [ -123.25791165599999, 49.261197218000085 ], [ -123.259533673999925, 49.261238423000101 ], [ -123.259463032999918, 49.262434308000053 ], [ -123.261924916999988, 49.262496802000115 ], [ -123.261938003999916, 49.262512106 ], [ -123.261926192999951, 49.2626588890001 ], [ -123.262148791999905, 49.262982211000086 ], [ -123.262629409999988, 49.263143109000083 ], [ -123.26290983799997, 49.263308967000071 ], [ -123.262980467999967, 49.26335072800002 ], [ -123.263402487999912, 49.263600309000026 ], [ -123.264395405999934, 49.264370798000108 ], [ -123.264488026999942, 49.26438733200014 ], [ -123.26494640699994, 49.264469093000059 ], [ -123.265350227999974, 49.264335924000143 ], [ -123.265353643999944, 49.264973048000087 ], [ -123.264297972999984, 49.264975467000106 ], [ -123.264228243999966, 49.266157874000044 ], [ -123.262311508, 49.266109269000054 ], [ -123.262256087999944, 49.267048337000155 ], [ -123.26240692199994, 49.267052162000091 ], [ -123.262194617999938, 49.270649411000086 ], [ -123.261180985999914, 49.270623695000019 ], [ -123.261130315999978, 49.271481826000105 ], [ -123.26085999899999, 49.271630014000095 ], [ -123.260269285, 49.271694108000084 ], [ -123.260091809999921, 49.271783798000072 ], [ -123.259995810999968, 49.271991696000057 ], [ -123.258584709000033, 49.27274088900004 ], [ -123.258241889999923, 49.273002896000044 ], [ -123.258046251999957, 49.273185492000096 ], [ -123.25779180699999, 49.273179029000076 ], [ -123.257776541999974, 49.273437219000073 ], [ -123.257698099999971, 49.273510431000048 ], [ -123.254354228999915, 49.273425426000138 ], [ -123.25432808399998, 49.273867095000114 ], [ -123.253853396999972, 49.273855019000045 ], [ -123.2538536499999, 49.273904142000077 ], [ -123.253441228999975, 49.273905048000081 ], [ -123.253442612999891, 49.274174900000069 ], [ -123.252706652999947, 49.2741765110001 ], [ -123.253668102999939, 49.273771989000061 ], [ -123.254120956999941, 49.273270178000111 ], [ -123.254223381999964, 49.27297917800005 ], [ -123.254228877999978, 49.272654193000093 ], [ -123.254070350999939, 49.271200997000108 ], [ -123.254220192999966, 49.271106622000026 ], [ -123.254420021999962, 49.270980227000024 ], [ -123.254517327999935, 49.270868306000082 ], [ -123.254938259999989, 49.270650250000038 ], [ -123.257174006999961, 49.26953758300003 ], [ -123.258200980999931, 49.269026399000012 ], [ -123.258832900999948, 49.26863271400007 ], [ -123.258243301999968, 49.267916998000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16502707", "BldgCostT": "7151684", "sL_LossRatio": "0.657850964737192", "sL_AssetLoss": "60120", "sL_BldgLoss": "39550", "sL_StrLoss": "13460", "sL_NStrLoss": "26090", "sL_ContLoss": "20570", "geom_point": "0101000020E61000008E9834A1E4CF5EC0C35E30D183A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.245219572999972, 49.279319905000108 ], [ -123.245218235999943, 49.279050052000059 ], [ -123.244805770999946, 49.279050926000103 ], [ -123.244803981999951, 49.278689316000076 ], [ -123.2456360899999, 49.278321053000127 ], [ -123.246844297999985, 49.277786287000019 ], [ -123.247642694999925, 49.27748420900015 ], [ -123.248661682999966, 49.277100393000111 ], [ -123.249072528999974, 49.276939697000074 ], [ -123.249419991999929, 49.276755806000047 ], [ -123.249784899999938, 49.276465208000069 ], [ -123.250530227999917, 49.275527702000048 ], [ -123.250834299999923, 49.275382311000044 ], [ -123.251458898999942, 49.275275801000141 ], [ -123.251649693999951, 49.275209510000067 ], [ -123.251790601, 49.275127486000031 ], [ -123.251990010999933, 49.274846079000127 ], [ -123.252305479999976, 49.274345296000035 ], [ -123.25265789099997, 49.274197027000085 ], [ -123.252656036999937, 49.274228334000043 ], [ -123.252618023999943, 49.274227367000016 ], [ -123.252623277999959, 49.275256118000115 ], [ -123.25221084699993, 49.275257019000037 ], [ -123.252213599999919, 49.275796725000063 ], [ -123.250976291, 49.275799419000101 ], [ -123.25097766, 49.276069272000086 ], [ -123.250152783999937, 49.276071061000025 ], [ -123.250155510999917, 49.276610766 ], [ -123.24974307, 49.276611659000068 ], [ -123.2497444319999, 49.276881511000035 ], [ -123.24933198599993, 49.276882402000105 ], [ -123.24933470699996, 49.277422109000035 ], [ -123.248922256999919, 49.27742299700008 ], [ -123.248924971999884, 49.277962703000085 ], [ -123.248512519999935, 49.277963591000095 ], [ -123.248513874999972, 49.278233444000087 ], [ -123.248101417999962, 49.278234330000039 ], [ -123.248102772999914, 49.278504183000088 ], [ -123.247690312999907, 49.27850506700004 ], [ -123.247691664999962, 49.278774920000089 ], [ -123.247279203999966, 49.278775805000066 ], [ -123.24728055199995, 49.279045657000012 ], [ -123.246455625999943, 49.27904742000009 ], [ -123.24645697099993, 49.279317273000089 ], [ -123.245219572999972, 49.279319905000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69344000", "BldgCostT": "48320000", "sL_LossRatio": "0.952935921383903", "sL_AssetLoss": "246260", "sL_BldgLoss": "234670", "sL_StrLoss": "150890", "sL_NStrLoss": "83780", "sL_ContLoss": "11590", "geom_point": "0101000020E6100000EACF3C8876CD5EC0E7AEA1AB5F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.21947307899994, 49.240242474000055 ], [ -123.219471882000022, 49.239972619000056 ], [ -123.218235466999943, 49.239974961000094 ], [ -123.218233888999976, 49.239616679000044 ], [ -123.218229521999902, 49.23862568400012 ], [ -123.217405265999929, 49.238627238000063 ], [ -123.217404081999945, 49.238357383000029 ], [ -123.21657983099999, 49.238358931000022 ], [ -123.216578651999924, 49.23808907600003 ], [ -123.215754404999927, 49.238090618000051 ], [ -123.215753229999976, 49.237820763000059 ], [ -123.215341108999951, 49.237821532000055 ], [ -123.215339935000017, 49.237551677000091 ], [ -123.214515697999929, 49.23755321000008 ], [ -123.214514528999956, 49.237283355000017 ], [ -123.213690295999982, 49.237284882000125 ], [ -123.213689131999942, 49.237015027000069 ], [ -123.212864902999954, 49.237016548000042 ], [ -123.212863743999975, 49.236746693000086 ], [ -123.212720016999953, 49.236746958 ], [ -123.212711408999951, 49.236890315000089 ], [ -123.207506281999898, 49.23675566400005 ], [ -123.207506285999955, 49.2367564400001 ], [ -123.207094173999963, 49.236757180000041 ], [ -123.207097556999926, 49.237566747000102 ], [ -123.20627332, 49.237568221000096 ], [ -123.20627342399996, 49.237593048000065 ], [ -123.206274443999959, 49.23783807700007 ], [ -123.204625958999941, 49.237841009000114 ], [ -123.204624843999937, 49.237571152000086 ], [ -123.204212723999973, 49.237571883000037 ], [ -123.204211612999956, 49.237302027000048 ], [ -123.203799494999913, 49.237302754000034 ], [ -123.203798384999942, 49.237032899000049 ], [ -123.202974153999918, 49.237034350000066 ], [ -123.202975260999935, 49.237304206000026 ], [ -123.201738910999936, 49.237306371000052 ], [ -123.201735613999958, 49.236496804000076 ], [ -123.200499281999953, 49.236498957000038 ], [ -123.200498189999962, 49.236229101000092 ], [ -123.198849757999966, 49.236231951000107 ], [ -123.198847591999936, 49.235692239000052 ], [ -123.198435487000012, 49.235692947000132 ], [ -123.198434423999956, 49.235427539000142 ], [ -123.199672406999952, 49.235770792000039 ], [ -123.19999547899998, 49.235860563000081 ], [ -123.205223605999919, 49.237312805000052 ], [ -123.205314017999967, 49.237338545000064 ], [ -123.205490087999962, 49.237218804000051 ], [ -123.205910308999975, 49.23694330600005 ], [ -123.207166493999949, 49.2361452990001 ], [ -123.207194242999975, 49.236121739000083 ], [ -123.207417958999912, 49.235931830000013 ], [ -123.207455797999927, 49.235899702000097 ], [ -123.207830807999926, 49.235668888000134 ], [ -123.208155267, 49.235434919000049 ], [ -123.208321597999927, 49.235315002000078 ], [ -123.208443881, 49.235183925000044 ], [ -123.208537253999978, 49.235083853000098 ], [ -123.20856628199999, 49.235052721000102 ], [ -123.209397383999899, 49.23545512800009 ], [ -123.209441879999943, 49.235470420000127 ], [ -123.220068180999931, 49.239126364000086 ], [ -123.220290941999963, 49.238797931000079 ], [ -123.220292557999983, 49.23916148400005 ], [ -123.220704690999966, 49.239160698000084 ], [ -123.220705892999916, 49.239430552000037 ], [ -123.221118025999957, 49.239429764000128 ], [ -123.221120619999922, 49.24001040800011 ], [ -123.221121642999918, 49.240239330000072 ], [ -123.21947307899994, 49.240242474000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2441500", "BldgCostT": "1420000", "sL_LossRatio": "0.745119305856833", "sL_AssetLoss": "18440", "sL_BldgLoss": "13740", "sL_StrLoss": "9540", "sL_NStrLoss": "4200", "sL_ContLoss": "4700", "geom_point": "0101000020E6100000402F3FE46BCD5EC09E7A83B304A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.203215492999988, 49.258267207000053 ], [ -123.20322244399992, 49.258182165000058 ], [ -123.203226376999979, 49.258133297000015 ], [ -123.203236287999957, 49.257968731000048 ], [ -123.203207123999931, 49.257825953000122 ], [ -123.203022044999955, 49.256920171000104 ], [ -123.202923587999962, 49.256694421000105 ], [ -123.201818002, 49.25671497700003 ], [ -123.201816986999987, 49.2564660910001 ], [ -123.202823187999954, 49.256464329000082 ], [ -123.20387836899999, 49.256462471000141 ], [ -123.203882814999986, 49.257541891000088 ], [ -123.205119670999977, 49.257539702 ], [ -123.205120788999977, 49.257809557000023 ], [ -123.211305101999969, 49.25779841100006 ], [ -123.211303948999941, 49.257528556000132 ], [ -123.212540804999961, 49.257526287000061 ], [ -123.212541963999954, 49.257796142000082 ], [ -123.213778823999959, 49.257793860000042 ], [ -123.213779990999925, 49.258063715000048 ], [ -123.218727463999983, 49.258054454000089 ], [ -123.218729606999958, 49.25853941900003 ], [ -123.215388317999924, 49.258512700000033 ], [ -123.215374555999915, 49.258512342000095 ], [ -123.212335400999976, 49.258436606000053 ], [ -123.212321658999926, 49.258436329000091 ], [ -123.209324148999926, 49.258374878000033 ], [ -123.209310406999975, 49.258374599000021 ], [ -123.206285444999963, 49.258313395000073 ], [ -123.206271684999962, 49.258313094000108 ], [ -123.203229266, 49.258267417000049 ], [ -123.203215492999988, 49.258267207000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68071000", "BldgCostT": "47650000", "sL_LossRatio": "0.957527906343588", "sL_AssetLoss": "110190", "sL_BldgLoss": "105510", "sL_StrLoss": "69140", "sL_NStrLoss": "36370", "sL_ContLoss": "4680", "geom_point": "0101000020E6100000230B7F23CDCC5EC0879C84F3A59F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.201382753999937, 49.251069712000124 ], [ -123.201380557999983, 49.250530002000069 ], [ -123.199882229999972, 49.250532606000085 ], [ -123.199844100999954, 49.251164489000075 ], [ -123.196775880999951, 49.251084808 ], [ -123.196761000999985, 49.250240767000101 ], [ -123.19883218299999, 49.250149790000108 ], [ -123.199116187999934, 49.250064388000062 ], [ -123.200011106999952, 49.250054020000093 ], [ -123.200555006999977, 49.250047706000025 ], [ -123.201054188999976, 49.249958574000097 ], [ -123.20401322399999, 49.249430273000051 ], [ -123.204318694, 49.24935087900009 ], [ -123.20460680399999, 49.24912777400008 ], [ -123.203173606999925, 49.2484124080001 ], [ -123.201215306, 49.247434800000065 ], [ -123.200200458999959, 49.246937146000086 ], [ -123.199989318999968, 49.246833605000056 ], [ -123.199894725999954, 49.246787228000109 ], [ -123.199778182, 49.246730062000083 ], [ -123.199047970999985, 49.246371993000068 ], [ -123.198913196999968, 49.246305911000078 ], [ -123.198343230999953, 49.246283248000083 ], [ -123.196752780999986, 49.246219994000057 ], [ -123.196763570999963, 49.24577844300007 ], [ -123.196776084999968, 49.245265808000042 ], [ -123.196769699999948, 49.24482457199999 ], [ -123.196762281999924, 49.244313397000035 ], [ -123.196767737999934, 49.243880464000057 ], [ -123.196774201999972, 49.243365288000099 ], [ -123.196779630999941, 49.242926939000014 ], [ -123.196780054999962, 49.242891623000077 ], [ -123.196785910999921, 49.242421605000061 ], [ -123.196792300999917, 49.241964474000021 ], [ -123.196799184999946, 49.241474398 ], [ -123.196799777999971, 49.241028791000119 ], [ -123.196800398999969, 49.240544886000045 ], [ -123.196810672999931, 49.239578691000126 ], [ -123.196816371999887, 49.239112675000037 ], [ -123.196822120999983, 49.2386394910001 ], [ -123.197622925999951, 49.238613446000031 ], [ -123.197651123999918, 49.245679016000096 ], [ -123.19929987099998, 49.245676183000036 ], [ -123.199300956999977, 49.245946039000046 ], [ -123.199713145999937, 49.24594532700003 ], [ -123.199714232999938, 49.246215182000107 ], [ -123.200538615999974, 49.246213754000024 ], [ -123.200539708999898, 49.24648360900003 ], [ -123.200951900999911, 49.246482893000071 ], [ -123.20095299799999, 49.24675274900008 ], [ -123.20136519299993, 49.246752030000074 ], [ -123.201366290999914, 49.247021885000095 ], [ -123.20219068599999, 49.247020446000072 ], [ -123.20219178799999, 49.247290301000099 ], [ -123.202603986999918, 49.247289579000025 ], [ -123.202605093000017, 49.247559434000095 ], [ -123.203429494999966, 49.247557985000071 ], [ -123.203431713999947, 49.248097696000109 ], [ -123.204256127999926, 49.248096241000013 ], [ -123.204257242, 49.248366096000062 ], [ -123.204669449999969, 49.248365366 ], [ -123.204670565999919, 49.248635222000125 ], [ -123.205082777999976, 49.248634491000089 ], [ -123.205088366999973, 49.249983766000057 ], [ -123.204676143999961, 49.249984497000128 ], [ -123.20467725899999, 49.25025435200012 ], [ -123.203852809999944, 49.250255809000073 ], [ -123.203853919999958, 49.250525665000048 ], [ -123.20344169399999, 49.25052639200004 ], [ -123.203442801999955, 49.250796247000054 ], [ -123.203030573999939, 49.250796971000057 ], [ -123.203032786999955, 49.25133668200008 ], [ -123.202620553000017, 49.251337405000086 ], [ -123.202622762999965, 49.25187711500012 ], [ -123.201581646999941, 49.2518789370001 ], [ -123.200973808999933, 49.251879996000113 ], [ -123.200970520999988, 49.251070430000013 ], [ -123.201382753999937, 49.251069712000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "292095417", "BldgCostT": "201401667", "sL_LossRatio": "0.88374486586316", "sL_AssetLoss": "519805", "sL_BldgLoss": "459375", "sL_StrLoss": "266170", "sL_NStrLoss": "193205", "sL_ContLoss": "60430", "geom_point": "0101000020E61000001936B15DEDCE5EC0D9173336B2A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.232862483999952, 49.25436962900006 ], [ -123.234633613999947, 49.253734118000089 ], [ -123.235113659999939, 49.254332955000081 ], [ -123.235373793999926, 49.254657428000051 ], [ -123.235491447999934, 49.254804192000059 ], [ -123.23563840099996, 49.254987509000024 ], [ -123.236028923999953, 49.255464081000085 ], [ -123.236045409999988, 49.255648252000036 ], [ -123.236022621999922, 49.255731416000096 ], [ -123.236047787, 49.255815838000025 ], [ -123.236119110999979, 49.255887001000055 ], [ -123.235866299999898, 49.255934574000037 ], [ -123.235309869, 49.256115382000068 ], [ -123.23423741199997, 49.256463848000074 ], [ -123.232719346999929, 49.257114870000059 ], [ -123.232230672999989, 49.257294180000031 ], [ -123.232135465999974, 49.257172678000067 ], [ -123.231526118999966, 49.256395244000046 ], [ -123.231272385999915, 49.256320279000064 ], [ -123.231122401999983, 49.25614080000009 ], [ -123.23097524399995, 49.255845190000059 ], [ -123.23042004499996, 49.254400631000102 ], [ -123.23235926199996, 49.254447683000102 ], [ -123.23242679499999, 49.254437211000074 ], [ -123.232614467999937, 49.254408093000031 ], [ -123.232862483999952, 49.25436962900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160171166", "BldgCostT": "109241666", "sL_LossRatio": "0.879180086801731", "sL_AssetLoss": "335938", "sL_BldgLoss": "295350", "sL_StrLoss": "176010", "sL_NStrLoss": "119340", "sL_ContLoss": "40588", "geom_point": "0101000020E6100000FE069A8DDDCE5EC006602CA175A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.233783397999943, 49.252560335000055 ], [ -123.234633613999947, 49.253734118000089 ], [ -123.232862483999952, 49.25436962900006 ], [ -123.232614467999937, 49.254408093000031 ], [ -123.23242679499999, 49.254437211000074 ], [ -123.23235926199996, 49.254447683000102 ], [ -123.23042004499996, 49.254400631000102 ], [ -123.23009649899997, 49.253352961000068 ], [ -123.230036774, 49.253159548000063 ], [ -123.232976697999902, 49.25275310500011 ], [ -123.233783397999943, 49.252560335000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131602668", "BldgCostT": "84241668", "sL_LossRatio": "0.749366422521696", "sL_AssetLoss": "516906", "sL_BldgLoss": "387352", "sL_StrLoss": "203260", "sL_NStrLoss": "184092", "sL_ContLoss": "129554", "geom_point": "0101000020E6100000E3A71F719BCE5EC0F2F03BD98FA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.234102951999972, 49.264894428000076 ], [ -123.233136878999971, 49.264231976000048 ], [ -123.23212241199991, 49.263851983000059 ], [ -123.231392213999982, 49.263703574000054 ], [ -123.230748985, 49.263616798000022 ], [ -123.230627145999932, 49.263619825000077 ], [ -123.230277680999976, 49.263628461000089 ], [ -123.229947743999972, 49.26363664900002 ], [ -123.215902008999976, 49.263983228 ], [ -123.215240331999965, 49.263999495000071 ], [ -123.21524483899999, 49.263855519000046 ], [ -123.215255106999976, 49.263448323 ], [ -123.215266786999933, 49.262986922000053 ], [ -123.215289015999986, 49.262090409000088 ], [ -123.215300809999988, 49.261639800000076 ], [ -123.21530645199995, 49.261423997000094 ], [ -123.215312384999919, 49.261196592000076 ], [ -123.215355621999933, 49.260293401000055 ], [ -123.215362014, 49.259849858000045 ], [ -123.215368723999987, 49.259388603000062 ], [ -123.215388317999924, 49.258512700000033 ], [ -123.218729606999958, 49.25853941900003 ], [ -123.218731040999913, 49.258864017000128 ], [ -123.215844969000031, 49.258869445000059 ], [ -123.215857914, 49.261837843000073 ], [ -123.216270235999986, 49.261837072000091 ], [ -123.216271414999952, 49.262106927000076 ], [ -123.218745352999932, 49.262102268000021 ], [ -123.218744159999986, 49.261832415000114 ], [ -123.224516649999927, 49.261821342000069 ], [ -123.22451787199999, 49.262091195000039 ], [ -123.227404130999929, 49.262085550000066 ], [ -123.227405371999922, 49.262355405000022 ], [ -123.227445559999978, 49.262355326000034 ], [ -123.227499662999961, 49.261450010000061 ], [ -123.229504254999966, 49.261501495000054 ], [ -123.229615078999984, 49.259645557000042 ], [ -123.230837943999973, 49.25967694600007 ], [ -123.230913296999958, 49.258414385000059 ], [ -123.231328906999948, 49.258425050000014 ], [ -123.231333784999975, 49.258343295000024 ], [ -123.231509910999975, 49.258347814000025 ], [ -123.231509795999969, 49.258323334000046 ], [ -123.23150842099993, 49.258029551000035 ], [ -123.231258511999954, 49.258030051000055 ], [ -123.231096132999966, 49.2580303760001 ], [ -123.231095241999981, 49.257839490000023 ], [ -123.231094871999943, 49.25776052300008 ], [ -123.2310277, 49.257760657000098 ], [ -123.230844870999988, 49.257761022000103 ], [ -123.230997567999935, 49.257725490000134 ], [ -123.232230672999989, 49.257294180000031 ], [ -123.232456825999961, 49.257551587000115 ], [ -123.232781199999962, 49.257920795000068 ], [ -123.233004898, 49.258130984000061 ], [ -123.233294377999954, 49.258342791000075 ], [ -123.23355922199994, 49.258509052000129 ], [ -123.233154665999933, 49.258843631000012 ], [ -123.233552532999965, 49.259081718000047 ], [ -123.233978328999939, 49.258735958000038 ], [ -123.234582701999983, 49.258344337000082 ], [ -123.234961522000035, 49.258256766000045 ], [ -123.235369260999903, 49.258214081000119 ], [ -123.235474998999976, 49.258052893000112 ], [ -123.23569728899993, 49.258009904000062 ], [ -123.235863821999956, 49.258051106000067 ], [ -123.235946509999948, 49.258161306000034 ], [ -123.236471218999924, 49.25915213900003 ], [ -123.236476215999943, 49.259161592000055 ], [ -123.236511892999928, 49.25920693700008 ], [ -123.234093998999924, 49.25994885700009 ], [ -123.23383164699996, 49.260039710000129 ], [ -123.233244394999971, 49.260347755000119 ], [ -123.233834184999935, 49.260808361000045 ], [ -123.23386289099993, 49.260972117000101 ], [ -123.234219921999966, 49.261431509000062 ], [ -123.234265177999958, 49.26148971600005 ], [ -123.234292948999951, 49.261525491000093 ], [ -123.234364276999898, 49.261617240000071 ], [ -123.234420554999986, 49.261687131000059 ], [ -123.234844543999927, 49.262201479000055 ], [ -123.23538323299999, 49.262856408000111 ], [ -123.235852591999929, 49.26342700500004 ], [ -123.235943264999932, 49.263394933 ], [ -123.23629559699998, 49.263270268000035 ], [ -123.236645398999926, 49.263146490000082 ], [ -123.237111200999962, 49.262982809000071 ], [ -123.237314608999952, 49.262981705000065 ], [ -123.23732442799999, 49.263000177000045 ], [ -123.237565409999917, 49.263452901000086 ], [ -123.237827859999982, 49.263681411000043 ], [ -123.237872291999963, 49.26372008600007 ], [ -123.238273515999964, 49.264133901000086 ], [ -123.237830305999964, 49.264355796000117 ], [ -123.237408184999936, 49.26445579300011 ], [ -123.23705942, 49.264362542000057 ], [ -123.237444140999983, 49.26469049300006 ], [ -123.23789992199994, 49.265078991000024 ], [ -123.237771903999899, 49.265418117000131 ], [ -123.237626408000025, 49.265589906000088 ], [ -123.237908088999944, 49.2659339920001 ], [ -123.237376447999935, 49.266121467000168 ], [ -123.236988966, 49.266258117000078 ], [ -123.236764446999985, 49.266337937000117 ], [ -123.235514627999976, 49.265755606000091 ], [ -123.234102951999972, 49.264894428000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168764145", "BldgCostT": "113506524", "sL_LossRatio": "0.754038256167209", "sL_AssetLoss": "1954247", "sL_BldgLoss": "1473577", "sL_StrLoss": "670097", "sL_NStrLoss": "803480", "sL_ContLoss": "480670", "geom_point": "0101000020E6100000CB0E220095B45EC05ABD8942C7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.823768344999934, 49.276705857000138 ], [ -122.817364438999959, 49.276481764000039 ], [ -122.816354328999964, 49.276466284000072 ], [ -122.816304593999945, 49.275932887000053 ], [ -122.816218132999964, 49.275349390000024 ], [ -122.816140526999916, 49.274672405000047 ], [ -122.815692775999963, 49.274052756000046 ], [ -122.815713371999934, 49.273508610000064 ], [ -122.816537961, 49.273227790000114 ], [ -122.817321215, 49.273229031000085 ], [ -122.817340048999966, 49.27295462200005 ], [ -122.819575887999946, 49.272193112000089 ], [ -122.819532819999949, 49.271776897000073 ], [ -122.822911136999934, 49.271876407000029 ], [ -122.822836368999944, 49.272967763000089 ], [ -122.823698215999983, 49.272969080000067 ], [ -122.823699178999959, 49.272699226000071 ], [ -122.824111590999976, 49.272699855000027 ], [ -122.824112549999953, 49.27243 ], [ -122.824524960999938, 49.272430627000077 ], [ -122.824528788999928, 49.271351209000038 ], [ -122.82411638799999, 49.271350582000139 ], [ -122.824123101999973, 49.269461601000089 ], [ -122.823710716999983, 49.269460973000101 ], [ -122.823711678999942, 49.26919111800008 ], [ -122.823299295999959, 49.269190488000064 ], [ -122.823302185999978, 49.26838092400002 ], [ -122.823714563999928, 49.268381554000072 ], [ -122.823717446999979, 49.267571990000064 ], [ -122.824129816999928, 49.267572619000148 ], [ -122.824131735999941, 49.267032910000069 ], [ -122.8245441, 49.267033537000074 ], [ -122.824548885999931, 49.265684262000093 ], [ -122.824136530999979, 49.265683636000077 ], [ -122.824138449999907, 49.265143926000079 ], [ -122.823726100999963, 49.265143297000087 ], [ -122.823728021999969, 49.264603589000032 ], [ -122.823315677, 49.264602958000076 ], [ -122.823316640999963, 49.264333104000116 ], [ -122.820430243999908, 49.264328654000124 ], [ -122.820429264, 49.264598509000052 ], [ -122.819370038999978, 49.264596858000061 ], [ -122.819315739999951, 49.265388706000095 ], [ -122.818870544999982, 49.265375581000065 ], [ -122.818641374999984, 49.263160078000034 ], [ -122.824180455999979, 49.263191897000056 ], [ -122.82470609399995, 49.263194903000084 ], [ -122.824683114999942, 49.264033 ], [ -122.824672490999959, 49.264749800000089 ], [ -122.824753224999981, 49.264975609000018 ], [ -122.825679206999951, 49.266503681000067 ], [ -122.825731709999914, 49.266699904000049 ], [ -122.825685909999962, 49.266907505000063 ], [ -122.825456722999945, 49.267285511000104 ], [ -122.8248849899999, 49.268128987000118 ], [ -122.82471870099999, 49.268489892000076 ], [ -122.824733905999935, 49.268769589000023 ], [ -122.824877818999951, 49.269036897000063 ], [ -122.825096493999951, 49.269234293000061 ], [ -122.825349225999929, 49.269377796000036 ], [ -122.825106573999975, 49.26968859700002 ], [ -122.825030811999923, 49.269892694000063 ], [ -122.825124307999985, 49.270093695000071 ], [ -122.825245692999886, 49.270226091000026 ], [ -122.825262303999978, 49.270386011000021 ], [ -122.825411106999951, 49.270720993000026 ], [ -122.82543250099998, 49.27091079800006 ], [ -122.82536659199999, 49.271110699000069 ], [ -122.825130621999961, 49.271767696000033 ], [ -122.825137481999931, 49.271848097000067 ], [ -122.825190813999953, 49.27193158300004 ], [ -122.825266401999926, 49.271972593000051 ], [ -122.825459996999896, 49.272015191000044 ], [ -122.827475, 49.271989786000042 ], [ -122.828025225999951, 49.271922204000106 ], [ -122.829432499999953, 49.271540084000073 ], [ -122.829237783999972, 49.272277596000038 ], [ -122.829087681999951, 49.272482192000084 ], [ -122.828916790999983, 49.272610509000117 ], [ -122.828714497999954, 49.272715394000045 ], [ -122.828404800999962, 49.27276221000011 ], [ -122.827045304999913, 49.272787090000051 ], [ -122.826076002, 49.272752284000013 ], [ -122.82536679199994, 49.272774605000045 ], [ -122.82471869299999, 49.272845709000094 ], [ -122.824242485999946, 49.272942686000057 ], [ -122.823913179999977, 49.273126189000074 ], [ -122.823737847999936, 49.273345583000037 ], [ -122.82393666199998, 49.273749671000104 ], [ -122.824003186999974, 49.274684914000034 ], [ -122.823779221, 49.274845004000078 ], [ -122.823827489999985, 49.275724799000031 ], [ -122.82390757899995, 49.276524508000136 ], [ -122.823916950999958, 49.276706111000131 ], [ -122.823768344999934, 49.276705857000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110459707", "BldgCostT": "75354714", "sL_LossRatio": "0.765066072526122", "sL_AssetLoss": "1301600", "sL_BldgLoss": "995810", "sL_StrLoss": "459110", "sL_NStrLoss": "536700", "sL_ContLoss": "305790", "geom_point": "0101000020E61000005A6DBC4323B45EC0F365EDDF0AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.816279766999941, 49.271608244000049 ], [ -122.816280767999956, 49.271338389000043 ], [ -122.815595287999969, 49.271337297000152 ], [ -122.815573874999956, 49.270943519000113 ], [ -122.81556472799997, 49.270849049000041 ], [ -122.814638206999945, 49.270844987 ], [ -122.814664608999948, 49.270420599000026 ], [ -122.814623484999984, 49.2698788020001 ], [ -122.81449791699994, 49.269586792000041 ], [ -122.813990568999955, 49.26888347500001 ], [ -122.813984708999911, 49.268875292000125 ], [ -122.813801683999898, 49.268618507000014 ], [ -122.813798881999944, 49.26827970100004 ], [ -122.812002132999936, 49.268269865000072 ], [ -122.811739931999981, 49.268226094000063 ], [ -122.811437961999928, 49.268181134000024 ], [ -122.81090274, 49.267931073000064 ], [ -122.810742285999979, 49.267806526000079 ], [ -122.810666740999963, 49.267645728000041 ], [ -122.81065331899994, 49.267241717000019 ], [ -122.810589933999964, 49.267064170000054 ], [ -122.81051979099999, 49.266985521 ], [ -122.810481386999939, 49.266959511000067 ], [ -122.81021253899999, 49.266777351000016 ], [ -122.810498646999989, 49.266654354000096 ], [ -122.810606629999967, 49.26658273900005 ], [ -122.811402706999971, 49.26423590900005 ], [ -122.811727013999985, 49.263816703000053 ], [ -122.81236411399999, 49.263963399000033 ], [ -122.813038089, 49.264132005000121 ], [ -122.813329017999962, 49.264158603000119 ], [ -122.813926792999979, 49.264097017000061 ], [ -122.813731079, 49.263705601000048 ], [ -122.813731514, 49.263183476000123 ], [ -122.813733093999971, 49.261275904000115 ], [ -122.813785675999952, 49.261209902000111 ], [ -122.813886213999979, 49.261186790000089 ], [ -122.815155094999938, 49.261176496000118 ], [ -122.815166889999929, 49.262845292000058 ], [ -122.81523640099995, 49.263033807000028 ], [ -122.81535100799999, 49.263192427000057 ], [ -122.815491217000016, 49.26338640500007 ], [ -122.815932789999948, 49.263198502000073 ], [ -122.815950504999932, 49.263197488000046 ], [ -122.81603809399995, 49.263192447000037 ], [ -122.816450123999985, 49.263168787000033 ], [ -122.817584541999935, 49.26315537200005 ], [ -122.817790663999929, 49.263155139000041 ], [ -122.818132826999957, 49.263157117000048 ], [ -122.818641374999984, 49.263160078000034 ], [ -122.818870544999982, 49.265375581000065 ], [ -122.818777038999897, 49.265372825000043 ], [ -122.818776919999962, 49.265405498000121 ], [ -122.818141361999949, 49.265404498000116 ], [ -122.818057935, 49.265457862000098 ], [ -122.817951688999955, 49.265547609000095 ], [ -122.817951223999913, 49.265674056000059 ], [ -122.817802273000012, 49.265673821000043 ], [ -122.817707635999952, 49.265753762000017 ], [ -122.81753785399998, 49.265949181000025 ], [ -122.817536880999981, 49.266213114000088 ], [ -122.817390213999914, 49.266212883000101 ], [ -122.817380734999972, 49.26623136200007 ], [ -122.817273635000035, 49.266293963000088 ], [ -122.816717035999943, 49.266364862000096 ], [ -122.816711594999944, 49.26636514300008 ], [ -122.816711164999987, 49.266481663000057 ], [ -122.815185298999936, 49.266479233000048 ], [ -122.81506112299995, 49.266639714000036 ], [ -122.815058696999955, 49.267288599000061 ], [ -122.81464633099999, 49.267287938000074 ], [ -122.81464026499999, 49.268907065000057 ], [ -122.81505264599997, 49.268907726000101 ], [ -122.815049620999929, 49.26971728900002 ], [ -122.815874394999952, 49.269718607000137 ], [ -122.815872384999963, 49.270258316000124 ], [ -122.816284778, 49.270258972000114 ], [ -122.816283774999931, 49.270528826000074 ], [ -122.816336499999949, 49.270528910000039 ], [ -122.816398134999972, 49.270466662000061 ], [ -122.816570079999948, 49.270529281000037 ], [ -122.818345747, 49.270532086000131 ], [ -122.818345145, 49.270695856 ], [ -122.818490133999958, 49.270780562000027 ], [ -122.818529234999971, 49.270877862000084 ], [ -122.818441535999966, 49.271222662000056 ], [ -122.818342930999904, 49.271298725000072 ], [ -122.818342774999962, 49.271341649000092 ], [ -122.818287398999956, 49.271341562000075 ], [ -122.818206633999964, 49.271403862000049 ], [ -122.817932434999975, 49.271487662000041 ], [ -122.817929832999965, 49.271487697000104 ], [ -122.817929379999953, 49.271610855000077 ], [ -122.816279766999941, 49.271608244000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.78430316091954", "sL_AssetLoss": "55680", "sL_BldgLoss": "43670", "sL_StrLoss": "20520", "sL_NStrLoss": "23150", "sL_ContLoss": "12010", "geom_point": "0101000020E61000007C7114E65EB45EC0457F0D2DD7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.817425137999976, 49.271714759000147 ], [ -122.819532819999949, 49.271776897000073 ], [ -122.819575887999946, 49.272193112000089 ], [ -122.817340048999966, 49.27295462200005 ], [ -122.817425137999976, 49.271714759000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.773154362416107", "sL_AssetLoss": "7450", "sL_BldgLoss": "5760", "sL_StrLoss": "2680", "sL_NStrLoss": "3080", "sL_ContLoss": "1690", "geom_point": "0101000020E61000003C9F431139B45EC0E4C74E2EFCA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.815698026999911, 49.273226452000067 ], [ -122.816537961, 49.273227790000114 ], [ -122.815713371999934, 49.273508610000064 ], [ -122.815698026999911, 49.273226452000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98415978", "BldgCostT": "61624857", "sL_LossRatio": "0.708171346943204", "sL_AssetLoss": "1106060", "sL_BldgLoss": "783280", "sL_StrLoss": "369370", "sL_NStrLoss": "413910", "sL_ContLoss": "322780", "geom_point": "0101000020E6100000733BB8646AB45EC00127C2237D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.815702003999959, 49.245703988000038 ], [ -122.815693154999948, 49.244274443000151 ], [ -122.815691275999939, 49.243969437000032 ], [ -122.815691204999965, 49.243960385000051 ], [ -122.81575861099999, 49.242917293000069 ], [ -122.815714089999972, 49.242786299000045 ], [ -122.815765987999967, 49.242368911000014 ], [ -122.81584540599999, 49.242172998000115 ], [ -122.815968583999975, 49.241978511000134 ], [ -122.816252903999924, 49.24173908900007 ], [ -122.816318841999959, 49.241705604000089 ], [ -122.81637009, 49.241679562000037 ], [ -122.816731505999911, 49.241496024000043 ], [ -122.816742413999989, 49.241490500000097 ], [ -122.816661739999958, 49.243747938000091 ], [ -122.816849727999966, 49.243706797000058 ], [ -122.817364716999975, 49.243594026000018 ], [ -122.817496894, 49.243565089000043 ], [ -122.818856882999938, 49.243557702000032 ], [ -122.818855932999938, 49.243817084000085 ], [ -122.81844376199993, 49.243816437000135 ], [ -122.818438815999926, 49.245165715000034 ], [ -122.817813872999963, 49.245164731000102 ], [ -122.817776864999985, 49.2457043880001 ], [ -122.820497773999989, 49.245708646000047 ], [ -122.82049875199999, 49.245438791 ], [ -122.820910936999937, 49.245439431000108 ], [ -122.820912889999974, 49.244899719000038 ], [ -122.820500707999884, 49.244899080000017 ], [ -122.820501687, 49.244629224000043 ], [ -122.820089508999928, 49.244628583000065 ], [ -122.820092449999947, 49.243819016000046 ], [ -122.819268105999925, 49.243817730000018 ], [ -122.819269064, 49.243555457000099 ], [ -122.820251987999939, 49.24355007100008 ], [ -122.821621508999982, 49.243542608000041 ], [ -122.822187590999974, 49.243559196000056 ], [ -122.822530684999933, 49.243602703000121 ], [ -122.82288670199992, 49.243678911000046 ], [ -122.823345594, 49.243836605000112 ], [ -122.823955120999969, 49.244223003000087 ], [ -122.824309706999912, 49.244661387000065 ], [ -122.824408499999961, 49.244962515000047 ], [ -122.824417214999926, 49.245397898000064 ], [ -122.82315318399999, 49.245403107000108 ], [ -122.823147809999952, 49.245639747000084 ], [ -122.823132687999987, 49.246305218000039 ], [ -122.821959434999911, 49.246303450000056 ], [ -122.820942213999913, 49.246301904000063 ], [ -122.820938670999936, 49.246455052000087 ], [ -122.820922788999923, 49.247146406000091 ], [ -122.820907224999956, 49.247814404000046 ], [ -122.820904700999961, 49.247912012000043 ], [ -122.82088491399999, 49.248681293000082 ], [ -122.820878860999954, 49.248874060000034 ], [ -122.820872194999964, 49.249087292000112 ], [ -122.819517427000022, 49.249089746000017 ], [ -122.818827981999931, 49.249090998000028 ], [ -122.81687903699995, 49.249078919000091 ], [ -122.816862990999979, 49.249078803000046 ], [ -122.816123474, 49.249074219000136 ], [ -122.815734601, 49.24907181100005 ], [ -122.815724788999958, 49.248699292000069 ], [ -122.815697582999931, 49.247669691000063 ], [ -122.815700984999964, 49.246166539000036 ], [ -122.815702003999959, 49.245703988000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96057168", "BldgCostT": "64036668", "sL_LossRatio": "0.745996310118531", "sL_AssetLoss": "1187030", "sL_BldgLoss": "885520", "sL_StrLoss": "419620", "sL_NStrLoss": "465900", "sL_ContLoss": "301510", "geom_point": "0101000020E61000009A7E91E9B3B35EC007502191159F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.811094663999967, 49.225454332000062 ], [ -122.811094519, 49.225492228000036 ], [ -122.811089518999935, 49.226803615000051 ], [ -122.811501548999914, 49.2268042870001 ], [ -122.811497441999961, 49.227883713000054 ], [ -122.813145599, 49.227886391000027 ], [ -122.813144581999936, 49.228156247000072 ], [ -122.814792747, 49.22815890100005 ], [ -122.814796780999984, 49.227079476000078 ], [ -122.814384747999924, 49.227078814000045 ], [ -122.814386771999935, 49.226539101000128 ], [ -122.813974742999946, 49.226538438000027 ], [ -122.813975755999948, 49.226268581000092 ], [ -122.813563728999966, 49.226267917000037 ], [ -122.813564745999955, 49.225998061000041 ], [ -122.812740698999903, 49.225996729000059 ], [ -122.812741718999973, 49.22572687200006 ], [ -122.811505654999962, 49.225724861000103 ], [ -122.81150668199993, 49.225455005000086 ], [ -122.811266267999883, 49.225454613000075 ], [ -122.811094663999967, 49.225454332000062 ], [ -122.81109769399994, 49.224659238000072 ], [ -122.811200215999946, 49.224652405000064 ], [ -122.811252422999971, 49.224645015000085 ], [ -122.812745796999963, 49.22464744600012 ], [ -122.812746606999937, 49.224433531000102 ], [ -122.813137352999917, 49.224378223000073 ], [ -122.813158826999981, 49.224378256000087 ], [ -122.813158838999954, 49.224375181000028 ], [ -122.814087678999954, 49.224243699000098 ], [ -122.814702965999984, 49.224079726000113 ], [ -122.815593268999933, 49.223842452000049 ], [ -122.815632892999929, 49.223842515000072 ], [ -122.815632934999954, 49.223831881000088 ], [ -122.816818889, 49.223515800000023 ], [ -122.816797844999925, 49.223643946000017 ], [ -122.816780575999957, 49.224036288000015 ], [ -122.8171725399999, 49.225013043000068 ], [ -122.817188599999938, 49.225629695000052 ], [ -122.817050903999956, 49.22585034100009 ], [ -122.817007820999962, 49.225919403000034 ], [ -122.81741343399996, 49.226998812000041 ], [ -122.817281559999969, 49.22700435900002 ], [ -122.816860353999985, 49.22687066300012 ], [ -122.816676680999947, 49.226850902000109 ], [ -122.816814021999946, 49.237413090000132 ], [ -122.816777964999957, 49.23846049900002 ], [ -122.816774653999971, 49.23855598800003 ], [ -122.816766275999939, 49.238799176000093 ], [ -122.816299494999924, 49.239218227000023 ], [ -122.816210807999965, 49.239803759000068 ], [ -122.816471650999958, 49.240631593000025 ], [ -122.816742413999989, 49.241490500000097 ], [ -122.816731505999911, 49.241496024000043 ], [ -122.81637009, 49.241679562000037 ], [ -122.816318841999959, 49.241705604000089 ], [ -122.816252903999924, 49.24173908900007 ], [ -122.815968583999975, 49.241978511000134 ], [ -122.81584540599999, 49.242172998000115 ], [ -122.815765987999967, 49.242368911000014 ], [ -122.815714089999972, 49.242786299000045 ], [ -122.815641705999951, 49.242920199000025 ], [ -122.815544218999918, 49.243954334000072 ], [ -122.815540523999957, 49.243993809000088 ], [ -122.815346213999973, 49.244024102000068 ], [ -122.81533227099996, 49.244029338000125 ], [ -122.81506838899999, 49.244128497000119 ], [ -122.814788011999894, 49.244313104000092 ], [ -122.813572891999968, 49.245406896000063 ], [ -122.812804911999976, 49.245907603000077 ], [ -122.811391591999922, 49.24682899 ], [ -122.81080052499999, 49.247274605 ], [ -122.810324106999971, 49.247711001000106 ], [ -122.810061281999964, 49.248037397000068 ], [ -122.809878946999916, 49.248328941000061 ], [ -122.809607515999957, 49.248762951000053 ], [ -122.808765074999926, 49.250109761000033 ], [ -122.808582919999978, 49.250401004000032 ], [ -122.80848100299994, 49.250803399000119 ], [ -122.808482751999918, 49.250852043000108 ], [ -122.80849370599995, 49.251157794000065 ], [ -122.808444886999965, 49.25150858900011 ], [ -122.808322478999955, 49.251909497000064 ], [ -122.808136685999926, 49.252254503000096 ], [ -122.807455010999945, 49.252937883000108 ], [ -122.80730160399996, 49.253210006000081 ], [ -122.807216805999985, 49.253603912000067 ], [ -122.80772118099999, 49.253641292000097 ], [ -122.808221192999937, 49.253781413000112 ], [ -122.808658700999985, 49.254051098000055 ], [ -122.808882844999971, 49.254357902000081 ], [ -122.808978920999962, 49.254489410000076 ], [ -122.809458879999951, 49.255800004000093 ], [ -122.808238109999962, 49.256011600000171 ], [ -122.808088830999978, 49.255845097000112 ], [ -122.807958108999941, 49.255488903000071 ], [ -122.807623597999935, 49.255259195000043 ], [ -122.807210504999958, 49.255132610000018 ], [ -122.806771889999965, 49.255179012000056 ], [ -122.806466891999989, 49.255317806000043 ], [ -122.806305171999938, 49.255412095000032 ], [ -122.805416, 49.256255111 ], [ -122.80487071200001, 49.257031800000092 ], [ -122.804342190999975, 49.257923400000088 ], [ -122.804374494999962, 49.258410814000143 ], [ -122.804518814999938, 49.258650192000076 ], [ -122.805294597999989, 49.259314696000047 ], [ -122.805043332999986, 49.259453145000045 ], [ -122.803785094999967, 49.260146505000115 ], [ -122.803453486999956, 49.260213295000035 ], [ -122.803094078999962, 49.260184603000091 ], [ -122.80281570599999, 49.260057502000102 ], [ -122.802731395999956, 49.259964910000029 ], [ -122.802504022999969, 49.259720149000032 ], [ -122.802233894999944, 49.259429388000086 ], [ -122.801782555999978, 49.259835800000104 ], [ -122.801521892999915, 49.260070515000038 ], [ -122.80121090099999, 49.260416077000059 ], [ -122.801134135, 49.260501400000081 ], [ -122.797930451999974, 49.260305957000071 ], [ -122.797710002999949, 49.260292522000043 ], [ -122.797709001999948, 49.260292491000023 ], [ -122.797395091999988, 49.260298098000078 ], [ -122.79627621399996, 49.260383531000052 ], [ -122.796229718999896, 49.260384022000054 ], [ -122.797159599999972, 49.259665201000075 ], [ -122.797393490999951, 49.259270710000095 ], [ -122.79764920599996, 49.257570209000058 ], [ -122.797375690999957, 49.25719281100011 ], [ -122.797359608999926, 49.257126230000033 ], [ -122.797419323999975, 49.256261243000061 ], [ -122.79791779599999, 49.25552929400007 ], [ -122.798010803999887, 49.254959789000054 ], [ -122.798292568999898, 49.254968153000043 ], [ -122.798302665999984, 49.254821847000066 ], [ -122.798375869000012, 49.2548240200001 ], [ -122.79848194499999, 49.253286847000098 ], [ -122.799445283999916, 49.253315434000037 ], [ -122.799450579999984, 49.252008338000103 ], [ -122.799102790999939, 49.251998018000045 ], [ -122.799225555999968, 49.250218491000098 ], [ -122.799350883999978, 49.248401655000066 ], [ -122.800438684999904, 49.248433930000047 ], [ -122.800497284999906, 49.247584080000109 ], [ -122.800688574999953, 49.247589755000092 ], [ -122.800701486999955, 49.247402485000073 ], [ -122.800986075999944, 49.247410926000029 ], [ -122.80101099399999, 49.247049491000013 ], [ -122.801134487, 49.247053154000113 ], [ -122.801147897999925, 49.246858594000088 ], [ -122.801332257999945, 49.246864062000064 ], [ -122.801347102999927, 49.246648699000012 ], [ -122.80151700899999, 49.246653737 ], [ -122.801528551000018, 49.246486299000075 ], [ -122.801871693999942, 49.246422893000087 ], [ -122.802558501999926, 49.246109587 ], [ -122.803000812999954, 49.245633893000118 ], [ -122.80307151699995, 49.245310598000131 ], [ -122.802949485999974, 49.245022898000094 ], [ -122.802625490999958, 49.24464317700005 ], [ -122.802660791999955, 49.244130823000098 ], [ -122.802779883000014, 49.244134354000025 ], [ -122.802785018999913, 49.242844576000032 ], [ -122.803104183999906, 49.242711884000087 ], [ -122.805258522999949, 49.242715535000045 ], [ -122.805257460999925, 49.242985390000044 ], [ -122.80566962599994, 49.242986084000059 ], [ -122.805673214999985, 49.242071033000116 ], [ -122.805872703999938, 49.242049200000118 ], [ -122.806230493000015, 49.241907597000065 ], [ -122.806498171999934, 49.241908045000116 ], [ -122.806498586999936, 49.241801491000025 ], [ -122.806754511999927, 49.241700201000107 ], [ -122.806987589999935, 49.241485198000127 ], [ -122.807140886999917, 49.240837203000062 ], [ -122.807306598999972, 49.240784508000104 ], [ -122.807334095999963, 49.240774494000071 ], [ -122.807376189999957, 49.240765998000022 ], [ -122.806951889999965, 49.240397089000126 ], [ -122.806917055, 49.240183233000067 ], [ -122.806917691999942, 49.240019745000026 ], [ -122.808154110999936, 49.240021805000026 ], [ -122.808153064999942, 49.240291661000064 ], [ -122.811450203000021, 49.24029708900008 ], [ -122.811452257, 49.239757378000014 ], [ -122.811864394999972, 49.239758050000063 ], [ -122.811869519999959, 49.238408771000074 ], [ -122.811457393999916, 49.238408099000019 ], [ -122.811458422, 49.238138243000037 ], [ -122.811046297999923, 49.238137570000092 ], [ -122.81104732599999, 49.237867714000039 ], [ -122.810223083, 49.237866364000134 ], [ -122.810232385999896, 49.235437660000024 ], [ -122.81146869199992, 49.235439684000063 ], [ -122.811466637999928, 49.23597939600004 ], [ -122.811878744999945, 49.235980067000042 ], [ -122.811877719999984, 49.236249924000106 ], [ -122.81228982799999, 49.23625059400004 ], [ -122.812288805999941, 49.2365204500001 ], [ -122.813937247999974, 49.236523117000033 ], [ -122.813938261999937, 49.236253261000073 ], [ -122.81476248, 49.236254586000072 ], [ -122.814763488999972, 49.235984730000062 ], [ -122.815175595999946, 49.235985390000074 ], [ -122.815176601999951, 49.235715533000082 ], [ -122.815588706999961, 49.235716192000048 ], [ -122.815593729999989, 49.234366912000091 ], [ -122.815181636999938, 49.234366253000097 ], [ -122.8151896899999, 49.232207404000029 ], [ -122.814777613999951, 49.23220674500002 ], [ -122.814779632999958, 49.231667033000079 ], [ -122.813955491999963, 49.231665708 ], [ -122.813956505999982, 49.231395851000045 ], [ -122.81272030099997, 49.231393854000018 ], [ -122.812719280999929, 49.231663710000113 ], [ -122.811218333999975, 49.231661267000042 ], [ -122.811148465999935, 49.232678297000035 ], [ -122.810865459999945, 49.23266992600005 ], [ -122.810842099999931, 49.233009941000027 ], [ -122.811065853999949, 49.233010307000029 ], [ -122.811060707999957, 49.23435958700005 ], [ -122.80941233599999, 49.23435687900011 ], [ -122.809415722999944, 49.233476736000092 ], [ -122.805325773000035, 49.233355631000059 ], [ -122.805346028999949, 49.23306131500005 ], [ -122.805079780999961, 49.233053426000041 ], [ -122.805142289999964, 49.232145263000028 ], [ -122.80402493599999, 49.232112147000116 ], [ -122.804000862999942, 49.232461771000018 ], [ -122.803650552999969, 49.232451387000019 ], [ -122.803650525999927, 49.232458226000119 ], [ -122.80323845, 49.232457525000072 ], [ -122.803237377, 49.232727381000132 ], [ -122.802001143, 49.232725268000081 ], [ -122.80200243099992, 49.23240251400005 ], [ -122.801905076999901, 49.232399627000063 ], [ -122.80229175, 49.231965637 ], [ -122.802576949999931, 49.232103208000062 ], [ -122.802916338999978, 49.232266057000054 ], [ -122.804787134999927, 49.230336928000114 ], [ -122.804949810999972, 49.230169192000119 ], [ -122.804517111999971, 49.229912228000082 ], [ -122.804303354999917, 49.229785444000086 ], [ -122.805704678, 49.229150098000034 ], [ -122.806227197999974, 49.228584700000042 ], [ -122.806503916999972, 49.228513500000112 ], [ -122.806601542999914, 49.228300419000036 ], [ -122.808062599999957, 49.228343688000109 ], [ -122.808057505999955, 49.228417765000124 ], [ -122.808611086999974, 49.22841868200009 ], [ -122.808614213999974, 49.227609113000042 ], [ -122.808202176999941, 49.227608430000018 ], [ -122.808204265999933, 49.227068718000034 ], [ -122.806968168999902, 49.227066659000066 ], [ -122.80696922199999, 49.226796803000077 ], [ -122.80678804199998, 49.226796500000034 ], [ -122.806557190999939, 49.226796114000052 ], [ -122.806560351999934, 49.22598654500009 ], [ -122.807796420999978, 49.225988608000058 ], [ -122.80779851299998, 49.225448895000071 ], [ -122.808210532999937, 49.225449579000014 ], [ -122.808212621999957, 49.224909867000058 ], [ -122.809448663999945, 49.224911913000064 ], [ -122.809446587999929, 49.225451625000048 ], [ -122.811094663999967, 49.225454332000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.760303687635575", "sL_AssetLoss": "18440", "sL_BldgLoss": "14020", "sL_StrLoss": "6220", "sL_NStrLoss": "7800", "sL_ContLoss": "4420", "geom_point": "0101000020E6100000E2410EA5D1B35EC0D32357FB859C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808630444999949, 49.223405976000045 ], [ -122.808630888, 49.223291411000069 ], [ -122.806982885999957, 49.223288670000144 ], [ -122.806985180999959, 49.222699435000024 ], [ -122.807074496, 49.222675595000098 ], [ -122.808821090999984, 49.222426411000114 ], [ -122.809046261999981, 49.22241643600011 ], [ -122.809046007999953, 49.222482524000021 ], [ -122.809458002, 49.222483204000071 ], [ -122.80945832899999, 49.222398179000031 ], [ -122.81232330499995, 49.222271203000012 ], [ -122.81234279100002, 49.222268799000084 ], [ -122.812340202999977, 49.22295216 ], [ -122.811942277999933, 49.223026992000079 ], [ -122.810691922999979, 49.22302494900007 ], [ -122.81069101599995, 49.223262290000051 ], [ -122.810519588999938, 49.223294525000057 ], [ -122.810278890999925, 49.223294130000049 ], [ -122.810278715999985, 49.223339818000092 ], [ -122.809955486999939, 49.22340059600004 ], [ -122.808630444999949, 49.223405976000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.732758620689655", "sL_AssetLoss": "10440", "sL_BldgLoss": "7650", "sL_StrLoss": "3660", "sL_NStrLoss": "3990", "sL_ContLoss": "2790", "geom_point": "0101000020E6100000C10214FA4BB35EC05B845ABA1F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.801163985999949, 49.235962123000014 ], [ -122.80116506899999, 49.235692268000093 ], [ -122.800340861, 49.235690846000104 ], [ -122.800344018999979, 49.234907768 ], [ -122.800570903999983, 49.234611812 ], [ -122.801581495999955, 49.234613553000081 ], [ -122.801580414999975, 49.234883408000037 ], [ -122.801992512999945, 49.234884116000039 ], [ -122.801991433999945, 49.235153972000056 ], [ -122.80281563299998, 49.23515538099999 ], [ -122.80281241099999, 49.235964949000085 ], [ -122.801163985999949, 49.235962123000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.746317512274959", "sL_AssetLoss": "12220", "sL_BldgLoss": "9120", "sL_StrLoss": "3860", "sL_NStrLoss": "5260", "sL_ContLoss": "3100", "geom_point": "0101000020E6100000654BFB8B05B35EC021B30EA210A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.796573189999904, 49.249986710000044 ], [ -122.797809857999979, 49.249988882000068 ], [ -122.797808778999979, 49.250253084000057 ], [ -122.797805447999977, 49.251068302000085 ], [ -122.796903243999949, 49.251066720000061 ], [ -122.796658640999951, 49.250799594000057 ], [ -122.79657024699999, 49.25070306100011 ], [ -122.796573189999904, 49.249986710000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124120749", "BldgCostT": "80184999", "sL_LossRatio": "0.709791003392284", "sL_AssetLoss": "1630170", "sL_BldgLoss": "1157080", "sL_StrLoss": "553980", "sL_NStrLoss": "603100", "sL_ContLoss": "473090", "geom_point": "0101000020E6100000C4F3A5F9DBB45EC0BA469947DDA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81751458699992, 49.261872231000055 ], [ -122.816735391999941, 49.260746400000102 ], [ -122.816440794999934, 49.26032071500002 ], [ -122.81605343199999, 49.259558839000121 ], [ -122.815974207999915, 49.259328335000113 ], [ -122.815825682999943, 49.258896157000088 ], [ -122.815769452999973, 49.258732431000048 ], [ -122.815747042999973, 49.258607966000071 ], [ -122.815657135999984, 49.258107520000081 ], [ -122.815635474999951, 49.256961892000021 ], [ -122.815623730999945, 49.256341205000098 ], [ -122.815612909, 49.255768291000024 ], [ -122.81559376, 49.253615140000072 ], [ -122.815581592999948, 49.252247272000126 ], [ -122.815575740999961, 49.251589995000046 ], [ -122.815575403999958, 49.251551799000026 ], [ -122.815763499999974, 49.251553807000086 ], [ -122.815734601, 49.24907181100005 ], [ -122.816123474, 49.249074219000136 ], [ -122.816862990999979, 49.249078803000046 ], [ -122.81687903699995, 49.249078919000091 ], [ -122.818827981999931, 49.249090998000028 ], [ -122.819517427000022, 49.249089746000017 ], [ -122.820872194999964, 49.249087292000112 ], [ -122.822238086999945, 49.249080936000048 ], [ -122.824134288999986, 49.249072077000044 ], [ -122.824410308999973, 49.249070808000063 ], [ -122.824407355999952, 49.249545473000126 ], [ -122.824405585999955, 49.249822911000081 ], [ -122.824401817999956, 49.249977801000043 ], [ -122.824403404999956, 49.250917496000085 ], [ -122.828700385999952, 49.250915005000131 ], [ -122.830654740999933, 49.250914296000111 ], [ -122.832785698999956, 49.250913510000011 ], [ -122.834056407999981, 49.250912002000106 ], [ -122.835314978, 49.250907497000114 ], [ -122.8354877, 49.25087199200005 ], [ -122.835447835999943, 49.252607091000073 ], [ -122.835421391999958, 49.253757509000067 ], [ -122.835415379, 49.254329159000058 ], [ -122.83539855399999, 49.255930304000096 ], [ -122.835397586999974, 49.256019908000077 ], [ -122.835438398999969, 49.256227397000096 ], [ -122.835821306999918, 49.256554793000127 ], [ -122.835914584999927, 49.256818794000139 ], [ -122.835914891999934, 49.257661195000047 ], [ -122.835882203999986, 49.261605199000073 ], [ -122.837046477999934, 49.261615996000089 ], [ -122.838388109999968, 49.26162738900009 ], [ -122.840834695999931, 49.261633290000077 ], [ -122.840827274999953, 49.262488893000103 ], [ -122.840831504, 49.263375496000087 ], [ -122.83812391599993, 49.26334750200008 ], [ -122.837297291999946, 49.263338605000044 ], [ -122.836984199999975, 49.263335699000024 ], [ -122.83505186, 49.263317038000011 ], [ -122.83441649299999, 49.26331090300004 ], [ -122.832083477999944, 49.263278380000081 ], [ -122.830209201999978, 49.263252196000074 ], [ -122.82470609399995, 49.263194903000084 ], [ -122.824180455999979, 49.263191897000056 ], [ -122.818641374999984, 49.263160078000034 ], [ -122.818132826999957, 49.263157117000048 ], [ -122.817790663999929, 49.263155139000041 ], [ -122.817584541999935, 49.26315537200005 ], [ -122.817609474999941, 49.262451615000074 ], [ -122.81751458699992, 49.261872231000055 ] ], [ [ -122.829643593999918, 49.256983392000087 ], [ -122.829260507999962, 49.25690219500008 ], [ -122.8288195799999, 49.256982000000122 ], [ -122.828282799999926, 49.257205601000095 ], [ -122.827787195999974, 49.257645715000116 ], [ -122.82763489899996, 49.257906296000023 ], [ -122.827606705, 49.25823960000006 ], [ -122.827701815999916, 49.258366300000041 ], [ -122.828128608000014, 49.258447498000081 ], [ -122.828513781999945, 49.258339297000063 ], [ -122.828844491999988, 49.25781801100004 ], [ -122.82969839399999, 49.257271105000036 ], [ -122.829754780999977, 49.257108799000079 ], [ -122.829643593999918, 49.256983392000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102779333", "BldgCostT": "69203333", "sL_LossRatio": "0.755113429160925", "sL_AssetLoss": "1225743", "sL_BldgLoss": "925575", "sL_StrLoss": "437925", "sL_NStrLoss": "487650", "sL_ContLoss": "300168", "geom_point": "0101000020E6100000F4EF5DF7D4B35EC0F3EE3CAF80A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.807213580999985, 49.261376900000123 ], [ -122.806723792999975, 49.261346186000033 ], [ -122.806286087999965, 49.261417008000059 ], [ -122.805959503999929, 49.261571284000098 ], [ -122.805317614999964, 49.261973906000023 ], [ -122.804571883999955, 49.262725700000033 ], [ -122.804232684999988, 49.262104895000064 ], [ -122.80317880299998, 49.261169082000059 ], [ -122.80233091099997, 49.262745804000147 ], [ -122.802488779999948, 49.262961738000058 ], [ -122.802320146999975, 49.26296074900003 ], [ -122.802316645999937, 49.262960710000044 ], [ -122.800516492999975, 49.26309471800004 ], [ -122.800474692999899, 49.26300341400011 ], [ -122.800578101999946, 49.262699285000039 ], [ -122.801143787999962, 49.262067387000116 ], [ -122.801169397999971, 49.261596096000076 ], [ -122.80119980799995, 49.261355508000058 ], [ -122.80143712399996, 49.261022002000097 ], [ -122.801542986999948, 49.260961195000057 ], [ -122.802105070999971, 49.260489996000075 ], [ -122.8048498199999, 49.26023747400005 ], [ -122.80507178000002, 49.260217062000088 ], [ -122.807767676999944, 49.260603367000051 ], [ -122.81334292299999, 49.26049888500004 ], [ -122.81513263199993, 49.260465312000079 ], [ -122.815176503999936, 49.260465860000124 ], [ -122.816735391999941, 49.260746400000102 ], [ -122.81751458699992, 49.261872231000055 ], [ -122.817609474999941, 49.262451615000074 ], [ -122.817584541999935, 49.26315537200005 ], [ -122.816450123999985, 49.263168787000033 ], [ -122.81603809399995, 49.263192447000037 ], [ -122.815950504999932, 49.263197488000046 ], [ -122.815932789999948, 49.263198502000073 ], [ -122.815491217000016, 49.26338640500007 ], [ -122.81535100799999, 49.263192427000057 ], [ -122.81523640099995, 49.263033807000028 ], [ -122.815166889999929, 49.262845292000058 ], [ -122.815155094999938, 49.261176496000118 ], [ -122.813886213999979, 49.261186790000089 ], [ -122.813785675999952, 49.261209902000111 ], [ -122.813733093999971, 49.261275904000115 ], [ -122.813731514, 49.263183476000123 ], [ -122.813731079, 49.263705601000048 ], [ -122.813926792999979, 49.264097017000061 ], [ -122.813329017999962, 49.264158603000119 ], [ -122.813038089, 49.264132005000121 ], [ -122.81236411399999, 49.263963399000033 ], [ -122.811727013999985, 49.263816703000053 ], [ -122.811362213999971, 49.263686096000107 ], [ -122.811135298999986, 49.263528911000115 ], [ -122.81097281299995, 49.263354806000116 ], [ -122.810808912999988, 49.263174326000083 ], [ -122.810606202999949, 49.262951102000059 ], [ -122.810102617999988, 49.262561501000157 ], [ -122.809722288, 49.262258291000066 ], [ -122.809325819999913, 49.262029495000043 ], [ -122.807213580999985, 49.261376900000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217262311", "BldgCostT": "141108190", "sL_LossRatio": "0.755708036413158", "sL_AssetLoss": "1792429", "sL_BldgLoss": "1354553", "sL_StrLoss": "639683", "sL_NStrLoss": "714870", "sL_ContLoss": "437876", "geom_point": "0101000020E610000020459DB947B35EC090E9F9682BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799193292999959, 49.268688894000071 ], [ -122.799396788999942, 49.268628299000071 ], [ -122.79952641899996, 49.268502409000043 ], [ -122.799520002999927, 49.268376111000038 ], [ -122.799291485999944, 49.26820258500004 ], [ -122.799175894999962, 49.26808569500006 ], [ -122.79909799699999, 49.267821169000037 ], [ -122.799092413999972, 49.2678020990001 ], [ -122.799105585999939, 49.267271898000104 ], [ -122.799134899999956, 49.265652893000023 ], [ -122.799156384999947, 49.265272917000111 ], [ -122.799197212999943, 49.264551086000097 ], [ -122.799802690999925, 49.264537603000086 ], [ -122.800015756999954, 49.264254210000033 ], [ -122.800486489999955, 49.263628093000072 ], [ -122.800507651999979, 49.263251862000104 ], [ -122.800512734999941, 49.263161703 ], [ -122.800516492999975, 49.26309471800004 ], [ -122.802316645999937, 49.262960710000044 ], [ -122.802320146999975, 49.26296074900003 ], [ -122.802488779999948, 49.262961738000058 ], [ -122.802583135999939, 49.263090799000075 ], [ -122.802622570999944, 49.263144727000039 ], [ -122.802647317999956, 49.263178606000061 ], [ -122.802997094999952, 49.264103407000071 ], [ -122.803176217999962, 49.264236705 ], [ -122.803395291999891, 49.264287294000013 ], [ -122.802821897999976, 49.265230697000014 ], [ -122.802700810999951, 49.265551394000084 ], [ -122.80264170599996, 49.267246091000111 ], [ -122.802701808999942, 49.267470406000029 ], [ -122.802930517999968, 49.267801502000033 ], [ -122.803215489999957, 49.268092798000019 ], [ -122.803164190999908, 49.270830009000122 ], [ -122.801874393999967, 49.270801699000131 ], [ -122.801816903999978, 49.27081990100006 ], [ -122.80154138599994, 49.270907191000056 ], [ -122.801413901999979, 49.2708102080001 ], [ -122.799989722999896, 49.269726531000089 ], [ -122.799837506999921, 49.269610702000143 ], [ -122.799404610999957, 49.269151908 ], [ -122.799324325999947, 49.268940392000069 ], [ -122.799285985, 49.268839394000096 ], [ -122.799193292999959, 49.268688894000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116103167", "BldgCostT": "78421667", "sL_LossRatio": "0.73559184981196", "sL_AssetLoss": "1310890", "sL_BldgLoss": "964280", "sL_StrLoss": "469260", "sL_NStrLoss": "495020", "sL_ContLoss": "346610", "geom_point": "0101000020E6100000A5E0F08288B15EC0E78CCD339BA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771474882999911, 49.303928197000104 ], [ -122.770223223999963, 49.303773004000043 ], [ -122.770194873999969, 49.303765425000066 ], [ -122.771218690999916, 49.303762600000056 ], [ -122.771402506999948, 49.303828499000083 ], [ -122.772284891999959, 49.30383712400004 ], [ -122.772434599999912, 49.303838593000101 ], [ -122.772463185999953, 49.303112405000064 ], [ -122.772481501999934, 49.302672398000013 ], [ -122.77134691399999, 49.302652888000054 ], [ -122.770704982999973, 49.302648194000028 ], [ -122.770727392999945, 49.301971388000055 ], [ -122.77073313799994, 49.301856173000076 ], [ -122.770762102999925, 49.301275995000026 ], [ -122.770725687, 49.301166790000146 ], [ -122.770340515000015, 49.300439097000037 ], [ -122.77034059099995, 49.300240910000113 ], [ -122.770354346999966, 49.300240870000017 ], [ -122.77258100799996, 49.300235900000125 ], [ -122.77259095399998, 49.300008035000097 ], [ -122.772597096999988, 49.299866997000045 ], [ -122.774138211999968, 49.299893203000067 ], [ -122.774729600999976, 49.299792834000058 ], [ -122.775185318999959, 49.299588418000063 ], [ -122.775708752999961, 49.299179834000022 ], [ -122.775972323999923, 49.299028231000079 ], [ -122.776203346000017, 49.298929726 ], [ -122.77660446299997, 49.298836250000136 ], [ -122.777022895999934, 49.298771318000128 ], [ -122.777369070999953, 49.298775295000098 ], [ -122.7777257599999, 49.298826485000049 ], [ -122.778057865999955, 49.298916562000038 ], [ -122.778023077999933, 49.298979163000098 ], [ -122.777734209999963, 49.299497900000063 ], [ -122.777380167999922, 49.300003691000086 ], [ -122.775967592999947, 49.302021595000092 ], [ -122.775353855999953, 49.30296896600003 ], [ -122.775006588999972, 49.303504914000015 ], [ -122.774776608999986, 49.303859889000073 ], [ -122.774548297999942, 49.304208292000098 ], [ -122.774502019999929, 49.304278873000023 ], [ -122.774450808999973, 49.304357060000022 ], [ -122.774332029999982, 49.304538343000019 ], [ -122.77414261699991, 49.304827411000119 ], [ -122.77283821099995, 49.304862878000044 ], [ -122.772805115999915, 49.304785595000084 ], [ -122.772339322, 49.30434270000012 ], [ -122.771474882999911, 49.303928197000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13840333", "BldgCostT": "9073333", "sL_LossRatio": "0.746860601680369", "sL_AssetLoss": "110690", "sL_BldgLoss": "82670", "sL_StrLoss": "43510", "sL_NStrLoss": "39160", "sL_ContLoss": "28020", "geom_point": "0101000020E6100000B7CDB7B202B25EC0D7611AC0BAAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78583658899997, 49.349543685000043 ], [ -122.785423533999932, 49.349542919000058 ], [ -122.78542236, 49.349812769000067 ], [ -122.785835415999955, 49.349813535000081 ], [ -122.78583658899997, 49.349543685000043 ], [ -122.787488800999938, 49.349546735000047 ], [ -122.787488126, 49.349703524000105 ], [ -122.787485314999969, 49.350356284000092 ], [ -122.787072254999927, 49.350355524000058 ], [ -122.78707109, 49.350625375000057 ], [ -122.786658027, 49.350624613000072 ], [ -122.786656860000036, 49.350894464000113 ], [ -122.785830731999951, 49.350892936000044 ], [ -122.785829558999978, 49.351162786000081 ], [ -122.78500342599996, 49.351161252000047 ], [ -122.785002788999947, 49.351307483000049 ], [ -122.783350564999921, 49.351292978000153 ], [ -122.783351156999956, 49.35115816700003 ], [ -122.78252502399999, 49.351156615000036 ], [ -122.782526214999962, 49.350886766000066 ], [ -122.781287019999965, 49.350884428000086 ], [ -122.781288216999911, 49.350614578000027 ], [ -122.780274748999958, 49.350612656000123 ], [ -122.780267198000018, 49.350721214000089 ], [ -122.781251261999955, 49.350750516000083 ], [ -122.781214848999923, 49.351274190000019 ], [ -122.777088177999929, 49.351237769000129 ], [ -122.775645115999978, 49.351224971000093 ], [ -122.774676801999931, 49.351132131000092 ], [ -122.774679922999951, 49.350448518000071 ], [ -122.774680454999896, 49.350332034000083 ], [ -122.774787700999966, 49.350332244000086 ], [ -122.774814341999956, 49.349949846000115 ], [ -122.777986256999938, 49.350044426000125 ], [ -122.777987361999976, 49.34979872800016 ], [ -122.778400417999976, 49.349799521000129 ], [ -122.778401629999934, 49.349529671000035 ], [ -122.778814682999965, 49.349530462000097 ], [ -122.77881589199994, 49.349260612000059 ], [ -122.77716369, 49.349257438000052 ], [ -122.777164908999936, 49.348987588000099 ], [ -122.776751860000033, 49.34898679200009 ], [ -122.77675796399997, 49.347637541000068 ], [ -122.777171000999971, 49.347638339000106 ], [ -122.777172220999915, 49.347368488000093 ], [ -122.778411325999983, 49.347370870000091 ], [ -122.778407688999948, 49.348180420000062 ], [ -122.781712023999958, 49.348186708000036 ], [ -122.781710829999938, 49.348456558000045 ], [ -122.782536917999934, 49.348458116000096 ], [ -122.782535728999946, 49.348727965000045 ], [ -122.783361821999932, 49.348729516000041 ], [ -122.783363007999966, 49.348459666000103 ], [ -122.783776050999904, 49.348460439000036 ], [ -122.783778415999933, 49.347920738000035 ], [ -122.782952336999983, 49.347919190000013 ], [ -122.782954710999945, 49.347379490000058 ], [ -122.782128640999971, 49.347377936000015 ], [ -122.782129832999928, 49.347108087000016 ], [ -122.7817168, 49.34710730700008 ], [ -122.781721574999921, 49.346027906000138 ], [ -122.782960646999953, 49.346030240000083 ], [ -122.782958271999931, 49.34656994000003 ], [ -122.783371299999928, 49.346570714000059 ], [ -122.783368930999956, 49.347110415000088 ], [ -122.784608030999919, 49.347112730000063 ], [ -122.784606851999982, 49.347382581000026 ], [ -122.785432922999945, 49.347384117000097 ], [ -122.785431749999972, 49.347653967000042 ], [ -122.785844786999931, 49.347654734000123 ], [ -122.78583658899997, 49.349543685000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86531500", "BldgCostT": "54100000", "sL_LossRatio": "0.717336018486245", "sL_AssetLoss": "774630", "sL_BldgLoss": "555670", "sL_StrLoss": "276490", "sL_NStrLoss": "279180", "sL_ContLoss": "218960", "geom_point": "0101000020E610000081BBDCF58CB15EC085DA888AE5A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78102961899998, 49.315803035000059 ], [ -122.780204076999922, 49.315801468000103 ], [ -122.780200474999916, 49.316611023000128 ], [ -122.778549362999968, 49.316607871000066 ], [ -122.778550573999937, 49.316338020000025 ], [ -122.776073920999977, 49.316333247000081 ], [ -122.776072696999918, 49.316603099000091 ], [ -122.77483436499989, 49.316600693000069 ], [ -122.774829443999948, 49.317680099000043 ], [ -122.77441665799995, 49.317679294000065 ], [ -122.774414192000037, 49.318218997000052 ], [ -122.774826982999954, 49.318219802000108 ], [ -122.774825752999902, 49.318489653000036 ], [ -122.77565134, 49.318491259000069 ], [ -122.775650112999941, 49.3187611110001 ], [ -122.776062908999933, 49.318761911000053 ], [ -122.776054344999949, 49.32065087200003 ], [ -122.777705590999958, 49.320654059000049 ], [ -122.777709234999961, 49.319844504000088 ], [ -122.778122039999985, 49.319845298000118 ], [ -122.778123250999968, 49.319575446000087 ], [ -122.779361658999946, 49.319577817000102 ], [ -122.779360453999971, 49.319847669000062 ], [ -122.779773258999967, 49.31984845600001 ], [ -122.779769648999945, 49.320658010000052 ], [ -122.779356837, 49.320657223000076 ], [ -122.779353219999919, 49.321466777000111 ], [ -122.779766038999981, 49.321467565 ], [ -122.77976483599997, 49.321737415000015 ], [ -122.781416118999971, 49.321740551000048 ], [ -122.781412534999916, 49.322550105000126 ], [ -122.780999707999953, 49.322549322000029 ], [ -122.780996115999983, 49.32335887700004 ], [ -122.780170448999982, 49.323357310000084 ], [ -122.780169246999918, 49.323627160000079 ], [ -122.778930738, 49.323624798000047 ], [ -122.778928322999917, 49.324164501000062 ], [ -122.77727695899992, 49.32416133100002 ], [ -122.777275741999986, 49.324431182000097 ], [ -122.776862898, 49.324430385000014 ], [ -122.776861679, 49.324700237000087 ], [ -122.776035988000018, 49.324698639000083 ], [ -122.776033540999947, 49.325238341000045 ], [ -122.775620691999933, 49.325237541000071 ], [ -122.775617011999927, 49.326047095000042 ], [ -122.775204156999934, 49.326046292000036 ], [ -122.775201698999965, 49.326585994000084 ], [ -122.776440281999925, 49.326588396000034 ], [ -122.776441503999976, 49.326318545000071 ], [ -122.778092938999947, 49.326321729000036 ], [ -122.778089300999937, 49.327131282000082 ], [ -122.778502166999914, 49.327132074000076 ], [ -122.778496112999918, 49.328481329000027 ], [ -122.777257481999953, 49.328478948000047 ], [ -122.777256265999981, 49.328748800000085 ], [ -122.776843386999928, 49.328748003000058 ], [ -122.776833627999906, 49.330906810000094 ], [ -122.776420731999963, 49.330906013000067 ], [ -122.77641951, 49.331175863000077 ], [ -122.776006607999975, 49.331175064000021 ], [ -122.776005383999916, 49.331444916000166 ], [ -122.775765881999973, 49.33144445100006 ], [ -122.77575691199992, 49.331573275000068 ], [ -122.773098014999931, 49.331493910000042 ], [ -122.772991482999942, 49.333022738000096 ], [ -122.772956529999973, 49.333021694000131 ], [ -122.772936596999912, 49.333307739000091 ], [ -122.772726160999966, 49.333301455000026 ], [ -122.772698508999923, 49.333698244000097 ], [ -122.768437754000033, 49.333570919000081 ], [ -122.767205366999974, 49.333534060000012 ], [ -122.767245242999962, 49.332962847000054 ], [ -122.767569298999959, 49.332929391000086 ], [ -122.767941317999899, 49.332920800000032 ], [ -122.76840869699997, 49.332822607000089 ], [ -122.768768385, 49.332653102000037 ], [ -122.769278598999932, 49.33229420400005 ], [ -122.769348705999931, 49.332141786000079 ], [ -122.769556286999943, 49.33197089400003 ], [ -122.76955853199999, 49.331963867000056 ], [ -122.769765587000023, 49.331314295000027 ], [ -122.769869053999955, 49.331201734000068 ], [ -122.770499681, 49.330515579000085 ], [ -122.770532004999922, 49.330480396000041 ], [ -122.770624464999969, 49.330379776000093 ], [ -122.770664803999949, 49.330335892000093 ], [ -122.770782827999966, 49.33022240500005 ], [ -122.772111942999956, 49.32894793800007 ], [ -122.77278102299999, 49.328306365000081 ], [ -122.772912240999972, 49.328119551000043 ], [ -122.772919903999963, 49.328106725000055 ], [ -122.772903543000027, 49.32788474900007 ], [ -122.773544195999946, 49.327903879000104 ], [ -122.773545305, 49.327662175000064 ], [ -122.773132433999962, 49.327661365000054 ], [ -122.773136154, 49.326851812000051 ], [ -122.773549016999951, 49.326852622000082 ], [ -122.773553966999941, 49.325773217000098 ], [ -122.771690064999959, 49.325769551000093 ], [ -122.771665588999966, 49.325721779000098 ], [ -122.771563006999941, 49.325504757000047 ], [ -122.77125382599999, 49.325100218000088 ], [ -122.771080339999983, 49.325013992000102 ], [ -122.771081845999916, 49.324688933000097 ], [ -122.771494690999958, 49.324689750000054 ], [ -122.771495940999927, 49.324419899000105 ], [ -122.771908782999901, 49.324420715000016 ], [ -122.771912522999983, 49.323611161000038 ], [ -122.772325358999979, 49.323611976000052 ], [ -122.772326602999925, 49.323342125000089 ], [ -122.77315227, 49.32334374800007 ], [ -122.773155988999946, 49.322534195000053 ], [ -122.772743161999983, 49.32253338300012 ], [ -122.772744403999965, 49.322263532000107 ], [ -122.771505929999961, 49.322261090000033 ], [ -122.771507177, 49.321991239000027 ], [ -122.771094354999946, 49.321990422000056 ], [ -122.771096856999961, 49.321450721000033 ], [ -122.770688587999985, 49.321449911000059 ], [ -122.770705380999956, 49.32136770100005 ], [ -122.7708854099999, 49.320990211000044 ], [ -122.770847953999933, 49.32064066600001 ], [ -122.771100608999959, 49.32064116600003 ], [ -122.771103111999963, 49.320101464000082 ], [ -122.771515916999974, 49.320102281000111 ], [ -122.771518413999928, 49.319562578000074 ], [ -122.771105611999957, 49.319561761000088 ], [ -122.771111864999952, 49.318212504000044 ], [ -122.769460700999971, 49.318209223000132 ], [ -122.769463219999977, 49.317669519000084 ], [ -122.769050433999894, 49.317668696000048 ], [ -122.769053630999935, 49.316984926000082 ], [ -122.768195424999945, 49.316959256000047 ], [ -122.768075449999955, 49.316753520000084 ], [ -122.767738378, 49.316281829000054 ], [ -122.767707453999918, 49.316178542000031 ], [ -122.767688326999945, 49.316132440000068 ], [ -122.767565088999973, 49.315828702000061 ], [ -122.767539046999929, 49.315461979000055 ], [ -122.767541584999947, 49.315433007000124 ], [ -122.768286479999944, 49.314958699000066 ], [ -122.768423145999947, 49.314805498000055 ], [ -122.769040461999964, 49.314260562000129 ], [ -122.769760165999955, 49.313546120000105 ], [ -122.76991639799995, 49.313379302000094 ], [ -122.769963154999985, 49.313352852000037 ], [ -122.770308870999912, 49.313353539000026 ], [ -122.770309786, 49.313156834000075 ], [ -122.770438682999938, 49.313083943000066 ], [ -122.770722872999926, 49.313084507000035 ], [ -122.77072362399997, 49.312922809000085 ], [ -122.770868475999976, 49.31284089300005 ], [ -122.770890115999975, 49.312814986000042 ], [ -122.771532270999955, 49.31281625700008 ], [ -122.771962364000018, 49.312817106000097 ], [ -122.771961116999975, 49.313086958000092 ], [ -122.772786613, 49.313088583000123 ], [ -122.77278785499999, 49.312818732000025 ], [ -122.773200600999957, 49.312819542000121 ], [ -122.77320431699998, 49.312009987000152 ], [ -122.772327014999959, 49.312008262000042 ], [ -122.771667932999932, 49.312006962000069 ], [ -122.771737996999946, 49.311947261000036 ], [ -122.771835649999929, 49.311443957000051 ], [ -122.77184386499999, 49.311379166000044 ], [ -122.771930981999915, 49.311056146000041 ], [ -122.771951906999902, 49.310620611000068 ], [ -122.771941502999951, 49.310126404000073 ], [ -122.771818688999957, 49.309838701000096 ], [ -122.77170022199999, 49.309635684000057 ], [ -122.771443533999971, 49.309195777000092 ], [ -122.771406368999976, 49.30913208200009 ], [ -122.771395857999977, 49.309088997000089 ], [ -122.77119110599989, 49.308433195000106 ], [ -122.771376464999918, 49.308096269000039 ], [ -122.77138116299993, 49.308090080000071 ], [ -122.771746792999949, 49.30760689800011 ], [ -122.771885992999927, 49.307399377000138 ], [ -122.772023817, 49.307193900000108 ], [ -122.772355111999943, 49.306933305000072 ], [ -122.772658411999885, 49.306520303000077 ], [ -122.772911089999965, 49.305773992000098 ], [ -122.77295508899999, 49.305135900000032 ], [ -122.77283821099995, 49.304862878000044 ], [ -122.77414261699991, 49.304827411000119 ], [ -122.774332029999982, 49.304538343000019 ], [ -122.774450808999973, 49.304357060000022 ], [ -122.774502019999929, 49.304278873000023 ], [ -122.774548297999942, 49.304208292000098 ], [ -122.774776608999986, 49.303859889000073 ], [ -122.77628712399995, 49.307694146000067 ], [ -122.776284786999966, 49.307727729000106 ], [ -122.776149, 49.307723676000137 ], [ -122.776146024999946, 49.30776645000001 ], [ -122.776317627999944, 49.307771573000117 ], [ -122.776678696999923, 49.308687998000089 ], [ -122.776653631999949, 49.309048308000101 ], [ -122.77682079, 49.309048631000032 ], [ -122.776931110999953, 49.309328623000106 ], [ -122.776927499999942, 49.310128255000095 ], [ -122.776578548999979, 49.310127581000124 ], [ -122.7765103399999, 49.311107993000128 ], [ -122.776508672999981, 49.311476716000108 ], [ -122.776095938, 49.311475918000049 ], [ -122.776094714999942, 49.311745769000083 ], [ -122.774443767, 49.311742559000081 ], [ -122.774444998999968, 49.311472707000036 ], [ -122.77403226499996, 49.311471901000083 ], [ -122.774029794999976, 49.312011604000055 ], [ -122.774855275, 49.312013216 ], [ -122.774846664000023, 49.313902178000056 ], [ -122.775672174999926, 49.3139037830001 ], [ -122.775669722999965, 49.31444348600013 ], [ -122.776082483999943, 49.314444286000061 ], [ -122.776084929999968, 49.313904582000106 ], [ -122.777735949999951, 49.313907770000107 ], [ -122.777731092999929, 49.314987176000102 ], [ -122.778143857999979, 49.314987969000043 ], [ -122.778141433999963, 49.315527673000126 ], [ -122.778966969999942, 49.315529254000111 ], [ -122.778969385999943, 49.31498955100011 ], [ -122.779382149999918, 49.314990339000104 ], [ -122.77938267099999, 49.314873909000013 ], [ -122.779215567999984, 49.31486892700012 ], [ -122.779377763999918, 49.312535727000068 ], [ -122.779511257999957, 49.312640097000056 ], [ -122.781853340999987, 49.31494754200007 ], [ -122.781033518999976, 49.31492311500012 ], [ -122.78102961899998, 49.315803035000059 ] ], [ [ -122.774383374999971, 49.324965279000111 ], [ -122.774382140999933, 49.325235130000088 ], [ -122.774794991999968, 49.325235936000098 ], [ -122.774796222999939, 49.324966084000046 ], [ -122.774383374999971, 49.324965279000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.789738164506744", "sL_AssetLoss": "37810", "sL_BldgLoss": "29860", "sL_StrLoss": "16930", "sL_NStrLoss": "12930", "sL_ContLoss": "7950", "geom_point": "0101000020E6100000EB8B6B197CB15EC02CB9ABD358AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.770616114999939, 49.336771342000127 ], [ -122.775582714000038, 49.336919631000065 ], [ -122.775332302, 49.340515461000123 ], [ -122.772490659999946, 49.340430645000076 ], [ -122.770377566999969, 49.340367526000058 ], [ -122.77028690499999, 49.340283984000081 ], [ -122.77061399499999, 49.339800946000032 ], [ -122.77093778699999, 49.339322708000068 ], [ -122.771255199000024, 49.339188797000084 ], [ -122.771450120999958, 49.338963806000045 ], [ -122.771536499999982, 49.338208898000104 ], [ -122.77131720199999, 49.33795539300008 ], [ -122.770892217999943, 49.337325905000114 ], [ -122.770313831999914, 49.336905394000055 ], [ -122.770108578999924, 49.336756175000062 ], [ -122.770616114999939, 49.336771342000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.777580071174377", "sL_AssetLoss": "5620", "sL_BldgLoss": "4370", "sL_StrLoss": "2380", "sL_NStrLoss": "1990", "sL_ContLoss": "1250", "geom_point": "0101000020E6100000DEF2681503B25EC024C852358BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.78102961899998, 49.315803035000059 ], [ -122.782267931999954, 49.315805375000096 ], [ -122.78226317399999, 49.316884782000074 ], [ -122.781850393999974, 49.316884003000013 ], [ -122.781846818999952, 49.317693558000016 ], [ -122.780608456999943, 49.317691214000021 ], [ -122.780613252999942, 49.316611808000062 ], [ -122.781026028999946, 49.316612590000062 ], [ -122.78102961899998, 49.315803035000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35982167", "BldgCostT": "23131667", "sL_LossRatio": "0.72494693971204", "sL_AssetLoss": "348660", "sL_BldgLoss": "252760", "sL_StrLoss": "124700", "sL_NStrLoss": "128060", "sL_ContLoss": "95900", "geom_point": "0101000020E61000002EC6E14877B35EC027611189E3A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.795879351999986, 49.318258900000053 ], [ -122.795880466999947, 49.317989049000104 ], [ -122.795765492, 49.317988846000056 ], [ -122.795540402999933, 49.316823294000109 ], [ -122.795474301999917, 49.316306887000145 ], [ -122.795511203999936, 49.315953101000098 ], [ -122.795624119999957, 49.315672692000057 ], [ -122.795847820999981, 49.315421698000058 ], [ -122.796157998999902, 49.315173200000082 ], [ -122.796512905999947, 49.314953989000024 ], [ -122.798070606999957, 49.314210188000104 ], [ -122.798919301999916, 49.313711865000109 ], [ -122.800059157999954, 49.312681829000063 ], [ -122.800530183999982, 49.312256150000032 ], [ -122.801454063999984, 49.311465553000104 ], [ -122.801697216, 49.3111313160001 ], [ -122.801870343999951, 49.310775200000123 ], [ -122.801940862000023, 49.310451177000111 ], [ -122.801970656999956, 49.307568452000105 ], [ -122.80200899499999, 49.307331755000085 ], [ -122.802085301, 49.307194294000062 ], [ -122.802213138999932, 49.306963953000079 ], [ -122.802478193999917, 49.306690741000097 ], [ -122.802778619999941, 49.306482516000095 ], [ -122.802944173999961, 49.306400263000128 ], [ -122.802943108999926, 49.30666743700003 ], [ -122.802530412999928, 49.306666732000117 ], [ -122.80252717799999, 49.307476289000128 ], [ -122.802939879999926, 49.307476993000179 ], [ -122.802934498999917, 49.308826255000064 ], [ -122.803759925999913, 49.308827660000077 ], [ -122.80376421299998, 49.307748251000078 ], [ -122.804176916999936, 49.307748950000047 ], [ -122.804180123999913, 49.306939393000093 ], [ -122.805418217999915, 49.306941485000017 ], [ -122.805417153999954, 49.307211337000091 ], [ -122.806655254999924, 49.307213414000088 ], [ -122.806657366999957, 49.30667371000002 ], [ -122.804593887999943, 49.306670240000109 ], [ -122.804594956999892, 49.306400387000025 ], [ -122.804182263999976, 49.306399688000113 ], [ -122.804183831999978, 49.306003880000048 ], [ -122.805224256999949, 49.305719802000098 ], [ -122.807824704, 49.30689356300006 ], [ -122.807894672999964, 49.306876461000073 ], [ -122.807894404999971, 49.306945628000044 ], [ -122.809545193999938, 49.306948359000074 ], [ -122.809547028999972, 49.306472564000117 ], [ -122.809900469999931, 49.306386168000131 ], [ -122.809918584999977, 49.306381939000083 ], [ -122.810003475999935, 49.30639023300008 ], [ -122.81053077099989, 49.306710688000095 ], [ -122.810925531999914, 49.306950626000045 ], [ -122.809957893999979, 49.306949039000074 ], [ -122.809954778999938, 49.307758597000046 ], [ -122.809129370999983, 49.307757236000029 ], [ -122.809128327999929, 49.308027088000095 ], [ -122.809541035, 49.308027769000041 ], [ -122.809539992999987, 49.30829762200004 ], [ -122.809952703999983, 49.308298301000015 ], [ -122.809951664999971, 49.308568154000113 ], [ -122.810364377999974, 49.308568832000034 ], [ -122.810362305999917, 49.309108537000036 ], [ -122.812425885999986, 49.309111905000051 ], [ -122.812424859999965, 49.309381757000054 ], [ -122.812837577999986, 49.309382427000074 ], [ -122.81283655699994, 49.309652279000076 ], [ -122.813249276999969, 49.309652946 ], [ -122.813246216999985, 49.310462504000022 ], [ -122.812420761999931, 49.310461167000092 ], [ -122.812418711999953, 49.311000872000101 ], [ -122.812005980999942, 49.31100020100007 ], [ -122.812004955999939, 49.311270053000065 ], [ -122.809941285999969, 49.311266679000056 ], [ -122.809940247999975, 49.311536531000129 ], [ -122.809114774999941, 49.31153517000007 ], [ -122.809112689999978, 49.3120748750001 ], [ -122.808699947999955, 49.312074192000104 ], [ -122.80869890299999, 49.31234404500001 ], [ -122.807460674999959, 49.312341988000057 ], [ -122.807461725999985, 49.312072136000062 ], [ -122.806636245999954, 49.31207075800009 ], [ -122.806637300999967, 49.31180090500002 ], [ -122.805811825999925, 49.311799521000118 ], [ -122.805810764999961, 49.312069374000039 ], [ -122.80539802499996, 49.312068679000028 ], [ -122.80539483599992, 49.312878237000064 ], [ -122.804982086999971, 49.312877541000042 ], [ -122.804981022999939, 49.313147393000051 ], [ -122.805806520999951, 49.313148783000081 ], [ -122.805802278999977, 49.314228192000044 ], [ -122.804564004000014, 49.314226104000106 ], [ -122.804560798999944, 49.315035661000096 ], [ -122.80167144399995, 49.315030738000125 ], [ -122.801668192999898, 49.315840295000022 ], [ -122.800429877999974, 49.31583816300013 ], [ -122.800427695999971, 49.316377867000071 ], [ -122.800014921999932, 49.316377153000069 ], [ -122.800012734999896, 49.316916857000095 ], [ -122.799599954999977, 49.316916143000128 ], [ -122.799597763999927, 49.317455847000055 ], [ -122.798359407999897, 49.317453693000076 ], [ -122.798360510999956, 49.317183840000062 ], [ -122.797534943999935, 49.317182398000078 ], [ -122.797532732, 49.317722102000054 ], [ -122.79711994499999, 49.317721378000023 ], [ -122.79711772899999, 49.318261081000053 ], [ -122.795879351999986, 49.318258900000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.78158844765343", "sL_AssetLoss": "5540", "sL_BldgLoss": "4330", "sL_StrLoss": "2390", "sL_NStrLoss": "1940", "sL_ContLoss": "1210", "geom_point": "0101000020E6100000BCC43F09FFB15EC0015C1CD7B7A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.780573689999969, 49.325516904000061 ], [ -122.781812246999934, 49.325519249000109 ], [ -122.78180867, 49.32632880200002 ], [ -122.780570091999948, 49.326326457000093 ], [ -122.780573689999969, 49.325516904000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.738286479250335", "sL_AssetLoss": "14940", "sL_BldgLoss": "11030", "sL_StrLoss": "5720", "sL_NStrLoss": "5310", "sL_ContLoss": "3910", "geom_point": "0101000020E61000006D4BECF3BBB15EC0D3DDF1FDBFA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77647936799994, 49.317953155000026 ], [ -122.7777177359999, 49.317955544000057 ], [ -122.777714092999972, 49.318765099000068 ], [ -122.776475707, 49.318762710000044 ], [ -122.77647936799994, 49.317953155000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5286917", "BldgCostT": "3436667", "sL_LossRatio": "0.678434287129939", "sL_AssetLoss": "80730", "sL_BldgLoss": "54770", "sL_StrLoss": "21060", "sL_NStrLoss": "33710", "sL_ContLoss": "25960", "geom_point": "0101000020E61000002F7480BBC7B25EC02F0ED36300A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.793797365999964, 49.322572863000104 ], [ -122.793798491999922, 49.322303012000056 ], [ -122.792972841999983, 49.32230153600009 ], [ -122.792975103999964, 49.321761833000103 ], [ -122.792149461999884, 49.321760352000105 ], [ -122.792151732999969, 49.321220648000093 ], [ -122.791738916999961, 49.321219904000088 ], [ -122.79174005499999, 49.320950053000018 ], [ -122.791327239999973, 49.32094930900012 ], [ -122.79132952099998, 49.320409605000116 ], [ -122.79009109199994, 49.320407363000072 ], [ -122.790096826, 49.31905810500006 ], [ -122.790509623999966, 49.319058854000062 ], [ -122.790514202999958, 49.317979446000066 ], [ -122.789985114999965, 49.317978487000104 ], [ -122.790774582999973, 49.31707009400003 ], [ -122.791137193999987, 49.317833010000079 ], [ -122.791776388999921, 49.319529388000099 ], [ -122.792178897999975, 49.320192595000044 ], [ -122.792854299999973, 49.320630573000059 ], [ -122.793096084999945, 49.32055590900007 ], [ -122.793201503999967, 49.320523909000023 ], [ -122.793549656999957, 49.320335192000073 ], [ -122.793693219999952, 49.320257398000109 ], [ -122.795244904999961, 49.318966588000073 ], [ -122.795418830999949, 49.318797794000041 ], [ -122.79711551099993, 49.318800785000107 ], [ -122.797112186999982, 49.319610340000082 ], [ -122.796699381999957, 49.319609614000107 ], [ -122.796698271999929, 49.319879466000074 ], [ -122.796285466999961, 49.319878739000067 ], [ -122.796284351999958, 49.320148591000141 ], [ -122.795871544999926, 49.320147864000056 ], [ -122.795870429999979, 49.320417715000119 ], [ -122.795044809999965, 49.320416253000104 ], [ -122.79504145, 49.321225809000062 ], [ -122.795454267, 49.321226540000055 ], [ -122.795453149999929, 49.321496391000089 ], [ -122.795865967999973, 49.321497121000036 ], [ -122.795862620999969, 49.322306676000053 ], [ -122.795036968999966, 49.322305215 ], [ -122.795035849999962, 49.322575067000102 ], [ -122.793797365999964, 49.322572863000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142812833", "BldgCostT": "95543333", "sL_LossRatio": "0.770898342634708", "sL_AssetLoss": "1445306", "sL_BldgLoss": "1114184", "sL_StrLoss": "541414", "sL_NStrLoss": "572770", "sL_ContLoss": "331122", "geom_point": "0101000020E61000000436A5C447B45EC0910FF6FD86A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.81736700499999, 49.295492573000061 ], [ -122.815897102999926, 49.29500220700006 ], [ -122.815767474999959, 49.294970590000041 ], [ -122.815697109999988, 49.294953445000026 ], [ -122.815402262999925, 49.294881518000068 ], [ -122.814724696999974, 49.294716304000104 ], [ -122.814381707999985, 49.29465140100011 ], [ -122.81320720799998, 49.294429205000071 ], [ -122.813591518999957, 49.293888709000072 ], [ -122.813663909999931, 49.293786911000062 ], [ -122.813694992999928, 49.29353370300003 ], [ -122.813659391999963, 49.293392105000116 ], [ -122.813548242999929, 49.293219296000053 ], [ -122.813526513999989, 49.293185498000071 ], [ -122.813306994999962, 49.293017799000111 ], [ -122.813479998999966, 49.292860709000095 ], [ -122.8135491, 49.292696096000071 ], [ -122.813578293999967, 49.292171794000062 ], [ -122.813544486999959, 49.29208340200006 ], [ -122.813433205999928, 49.292041396000101 ], [ -122.813083899999924, 49.292022995000103 ], [ -122.812754519999928, 49.291954696000118 ], [ -122.812329530999961, 49.291797100000046 ], [ -122.811240891999987, 49.291393800000044 ], [ -122.81152201499998, 49.291084096000098 ], [ -122.81201028699995, 49.29074089700002 ], [ -122.812512386999941, 49.290536812000092 ], [ -122.813126186999966, 49.290408102000157 ], [ -122.813791011999982, 49.290396995000087 ], [ -122.814884940999946, 49.29040357800006 ], [ -122.815529588999979, 49.290407444000046 ], [ -122.816473592999941, 49.290413106000109 ], [ -122.817357096999928, 49.290400383000069 ], [ -122.818053693999914, 49.290326403000059 ], [ -122.818711498999932, 49.29019708800007 ], [ -122.818974902999969, 49.290766106000071 ], [ -122.819019395999959, 49.29101970600005 ], [ -122.818954330999972, 49.291486206000094 ], [ -122.818764308999931, 49.291992311000044 ], [ -122.81868312499995, 49.292414198000053 ], [ -122.818794510999965, 49.29285350800005 ], [ -122.819176492999958, 49.293438593000111 ], [ -122.819133298999972, 49.293667110000044 ], [ -122.819005617999949, 49.293824508000128 ], [ -122.818985690000019, 49.293840075000091 ], [ -122.818508683999966, 49.294213495000101 ], [ -122.818334590999925, 49.294346185000094 ], [ -122.818233817, 49.294512601000108 ], [ -122.818289007999908, 49.294798846000035 ], [ -122.818299693999947, 49.294854185000098 ], [ -122.818490593999968, 49.295038102000014 ], [ -122.818657751999964, 49.295121498000078 ], [ -122.818801688999912, 49.295193290000064 ], [ -122.819168784999988, 49.295253593000076 ], [ -122.820241191999941, 49.295253700000082 ], [ -122.820534615999975, 49.295307397000052 ], [ -122.820852509999938, 49.29546360400014 ], [ -122.821470563999952, 49.294944523000026 ], [ -122.822830534, 49.294947013000069 ], [ -122.822812037999938, 49.29543655700008 ], [ -122.822774207999956, 49.296437496000131 ], [ -122.822767240999937, 49.296621740000077 ], [ -122.822750893999924, 49.297054500000129 ], [ -122.822456814999924, 49.297052096000101 ], [ -122.821849613000012, 49.296963093000059 ], [ -122.821208306999978, 49.296790184000038 ], [ -122.820999206999915, 49.2967185380001 ], [ -122.820632340999907, 49.296592772000103 ], [ -122.819443086999982, 49.296185109000149 ], [ -122.81736700499999, 49.295492573000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231275206", "BldgCostT": "155224714", "sL_LossRatio": "0.771389739627454", "sL_AssetLoss": "2148460", "sL_BldgLoss": "1657300", "sL_StrLoss": "795710", "sL_NStrLoss": "861590", "sL_ContLoss": "491160", "geom_point": "0101000020E6100000C1B19198DEB45EC0BCCD65B41FA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822750893999924, 49.297054500000129 ], [ -122.822767240999937, 49.296621740000077 ], [ -122.822774207999956, 49.296437496000131 ], [ -122.822812037999938, 49.29543655700008 ], [ -122.822830534, 49.294947013000069 ], [ -122.821470563999952, 49.294944523000026 ], [ -122.821525101999924, 49.29489870500008 ], [ -122.821694404999931, 49.294714503000129 ], [ -122.821823085999981, 49.294061598000084 ], [ -122.822040201999968, 49.293802215000078 ], [ -122.822339786999962, 49.293584008000103 ], [ -122.82338379399999, 49.292895807000036 ], [ -122.823921478999964, 49.292532391000037 ], [ -122.824114923, 49.292297601000087 ], [ -122.824215406999926, 49.291995093000033 ], [ -122.824164686999936, 49.291671097000027 ], [ -122.824025189999958, 49.291459796000019 ], [ -122.823809679999968, 49.291234593000063 ], [ -122.823065090999989, 49.290764892000013 ], [ -122.82275410699998, 49.290448604000098 ], [ -122.822713411999985, 49.290099699000059 ], [ -122.82279039699992, 49.289878509000097 ], [ -122.823048618999948, 49.2896014 ], [ -122.823220924999987, 49.289494798000064 ], [ -122.823314639999978, 49.28945293400006 ], [ -122.823491714999975, 49.289373896000086 ], [ -122.82381242699995, 49.289321578000049 ], [ -122.824352384999969, 49.289233498000094 ], [ -122.824542012999984, 49.28920676400007 ], [ -122.827142580999976, 49.28883989900006 ], [ -122.827349325999947, 49.288797922000107 ], [ -122.82759990299999, 49.288746998000136 ], [ -122.82843281699999, 49.288629199000056 ], [ -122.828672020999988, 49.288549705000065 ], [ -122.828836698999964, 49.288452714000101 ], [ -122.828940394999961, 49.288343194000042 ], [ -122.829019910999946, 49.288186090000053 ], [ -122.828867384999953, 49.287842920000102 ], [ -122.828771238999977, 49.287757628000072 ], [ -122.828702693999958, 49.287696828000016 ], [ -122.828634078999954, 49.287635994 ], [ -122.828460898999978, 49.287605860000021 ], [ -122.828333994999966, 49.287583769000065 ], [ -122.828216984999955, 49.287563404000082 ], [ -122.82813615699996, 49.287558622000113 ], [ -122.827884317, 49.287543701000118 ], [ -122.82710150099993, 49.287491916000064 ], [ -122.824541423999989, 49.287337302 ], [ -122.824627906, 49.286716511000066 ], [ -122.824720906999957, 49.286562428000082 ], [ -122.824751897999974, 49.286511109000052 ], [ -122.825131307999953, 49.286310608000107 ], [ -122.825449106999926, 49.286267696000081 ], [ -122.826050915999971, 49.286271894000066 ], [ -122.82678899299998, 49.286293599000068 ], [ -122.827084208999906, 49.286239207000122 ], [ -122.827210324999925, 49.286172414000099 ], [ -122.827319503999902, 49.28611459800009 ], [ -122.827467499999969, 49.285961314000076 ], [ -122.827534685999964, 49.285782205000089 ], [ -122.827491713999962, 49.285566509000056 ], [ -122.827136115999963, 49.284518368000093 ], [ -122.827076497999883, 49.284342627000129 ], [ -122.828373228999965, 49.284175319000084 ], [ -122.82837672299999, 49.284184090000103 ], [ -122.828602190999973, 49.284746915000085 ], [ -122.828747509, 49.28487369500008 ], [ -122.828882591999928, 49.285068587000076 ], [ -122.829184380999948, 49.285379305000042 ], [ -122.829308324999943, 49.285478509000015 ], [ -122.829499783999907, 49.2856317970001 ], [ -122.829679677999977, 49.28573109700006 ], [ -122.830017619999964, 49.285917590000032 ], [ -122.829984303999964, 49.286038710000057 ], [ -122.830092412999988, 49.286317903000082 ], [ -122.830316638999989, 49.286517741000104 ], [ -122.830250398999937, 49.286515795000085 ], [ -122.830249623999961, 49.28674152200005 ], [ -122.830496303999951, 49.286741884000051 ], [ -122.830573783999981, 49.286893200000087 ], [ -122.830572067999967, 49.287032480000093 ], [ -122.830562272999941, 49.287821401000116 ], [ -122.83024591899995, 49.287820937000063 ], [ -122.83024406599999, 49.288360644000079 ], [ -122.83003854899999, 49.288360342000047 ], [ -122.829976535999918, 49.289037962000066 ], [ -122.829828571999911, 49.289217527000126 ], [ -122.829827037999962, 49.289663271000101 ], [ -122.829516722000022, 49.289780101000126 ], [ -122.828588100999966, 49.290028870000057 ], [ -122.828588280999895, 49.289977331000053 ], [ -122.827763166999915, 49.289976104000118 ], [ -122.827762225999962, 49.290245957000074 ], [ -122.82652455, 49.290244106000053 ], [ -122.826524980999949, 49.290121221000113 ], [ -122.82638653599993, 49.290136362000055 ], [ -122.826275736, 49.289981462000092 ], [ -122.826054345999964, 49.28997354400007 ], [ -122.825700383999958, 49.289973010000026 ], [ -122.82569943199999, 49.290242865000053 ], [ -122.825286873999971, 49.290242242000026 ], [ -122.825285919999942, 49.290512094000078 ], [ -122.826111041999965, 49.290513339000015 ], [ -122.826105346999924, 49.292132461000065 ], [ -122.825692771999968, 49.292131840000124 ], [ -122.825691820999936, 49.292401692000098 ], [ -122.8253142249999, 49.292401123000054 ], [ -122.825279081999923, 49.292447190000097 ], [ -122.825277336999989, 49.292940776000073 ], [ -122.82490297599999, 49.292940210000012 ], [ -122.824864576999957, 49.292990543000059 ], [ -122.824862844999956, 49.293479859000087 ], [ -122.824491716999887, 49.293479295000047 ], [ -122.82445283499996, 49.293530263000065 ], [ -122.824450067999962, 49.293532950000092 ], [ -122.824449300999959, 49.293749087000045 ], [ -122.824275794999949, 49.293748823000044 ], [ -122.824036334999988, 49.294243963000035 ], [ -122.824034941999955, 49.29424597800007 ], [ -122.824032869999925, 49.29482787200007 ], [ -122.823648108999961, 49.294827285000075 ], [ -122.823623834999964, 49.294857062000041 ], [ -122.823620160999937, 49.29485849400011 ], [ -122.823613531999968, 49.296716217000011 ], [ -122.823200919999977, 49.29671558600004 ], [ -122.823199953999946, 49.296985439000061 ], [ -122.823817546000015, 49.296986382000043 ], [ -122.823807108999986, 49.297064085000052 ], [ -122.823739722999946, 49.297565842000047 ], [ -122.823629286999946, 49.29838799900007 ], [ -122.823330512999917, 49.29911168400011 ], [ -122.823295291999926, 49.299196998000035 ], [ -122.823161631999952, 49.299278168000079 ], [ -122.822750893999924, 49.297054500000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151685487", "BldgCostT": "81252289", "sL_LossRatio": "0.586814724465757", "sL_AssetLoss": "3230270", "sL_BldgLoss": "1895570", "sL_StrLoss": "563800", "sL_NStrLoss": "1331770", "sL_ContLoss": "1334700", "geom_point": "0101000020E61000009D2F71DC90C85EC0B6170B2256A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133308429999971, 49.321141935000043 ], [ -123.134380755999956, 49.319996717000016 ], [ -123.136738943999958, 49.321106582 ], [ -123.137630620999985, 49.320142585000092 ], [ -123.13763207599996, 49.320641296000062 ], [ -123.137756887999984, 49.320883399000088 ], [ -123.13844530199998, 49.321125485000074 ], [ -123.138679120999939, 49.32062140500009 ], [ -123.139682800999964, 49.320619892000131 ], [ -123.139743967999962, 49.320602892000068 ], [ -123.139745183999977, 49.321032863000049 ], [ -123.139518412, 49.321132703000032 ], [ -123.139231583999958, 49.321376199000071 ], [ -123.138957317999896, 49.321655299000113 ], [ -123.137870898999907, 49.321998599000068 ], [ -123.137389795999923, 49.322341805000079 ], [ -123.13618008399996, 49.322855998000122 ], [ -123.134598922999928, 49.323397205000013 ], [ -123.133923790999916, 49.323523899000129 ], [ -123.133374588, 49.32382160800011 ], [ -123.132908408, 49.324261609000089 ], [ -123.1328176009999, 49.324377292000058 ], [ -123.13203178899991, 49.325378203000099 ], [ -123.131243830999935, 49.326747941000079 ], [ -123.130789286999956, 49.32664185900007 ], [ -123.12967293, 49.326381294000022 ], [ -123.128896902999969, 49.326200185000097 ], [ -123.128943623999959, 49.326131877000108 ], [ -123.128957412999966, 49.326111705000088 ], [ -123.129029545999941, 49.326015454000114 ], [ -123.129680215999954, 49.325147403000116 ], [ -123.130344593999951, 49.324370678000136 ], [ -123.130506793999942, 49.324194853000051 ], [ -123.130525902999921, 49.324173988000084 ], [ -123.130870730999959, 49.323796981000044 ], [ -123.131122081999976, 49.323522210000135 ], [ -123.13281022299995, 49.321679251000035 ], [ -123.133032502, 49.321436584000018 ], [ -123.133308429999971, 49.321141935000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "544096338", "BldgCostT": "324611356", "sL_LossRatio": "0.640893647051333", "sL_AssetLoss": "11307820", "sL_BldgLoss": "7247110", "sL_StrLoss": "2603290", "sL_NStrLoss": "4643820", "sL_ContLoss": "4060710", "geom_point": "0101000020E6100000AAF0703303C95EC05DA570148BA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133546673999916, 49.324671846000129 ], [ -123.13475250299993, 49.32413490900008 ], [ -123.136759782999974, 49.323385798000039 ], [ -123.138299579999938, 49.323140796000125 ], [ -123.139015887999946, 49.322914306000051 ], [ -123.139674002999953, 49.322455787000138 ], [ -123.139893699999973, 49.321995713000057 ], [ -123.140194582999982, 49.321735098000055 ], [ -123.14110159099998, 49.321445995000012 ], [ -123.142060157999964, 49.321457948000088 ], [ -123.143043495, 49.32147018800007 ], [ -123.143702588999986, 49.321587007000119 ], [ -123.145205313999952, 49.322296195000092 ], [ -123.145592090999941, 49.322411597000027 ], [ -123.146072707999963, 49.322438701000074 ], [ -123.146289668999913, 49.322335659000053 ], [ -123.146741562, 49.322501144000093 ], [ -123.147989127999935, 49.32292688800004 ], [ -123.147949652999912, 49.322973392000115 ], [ -123.147541583999967, 49.323468865000088 ], [ -123.147363998999964, 49.323685498000074 ], [ -123.147354481999983, 49.323697147000061 ], [ -123.147132513999964, 49.323973148000071 ], [ -123.146508174999923, 49.324772580000058 ], [ -123.146036782999914, 49.325376145000071 ], [ -123.145717229999931, 49.325785254000024 ], [ -123.145203808999923, 49.326576822000028 ], [ -123.145167212999937, 49.326650707000056 ], [ -123.145136499999964, 49.326712758000056 ], [ -123.145135919999973, 49.326712758000056 ], [ -123.144790732999951, 49.326715808000117 ], [ -123.144183055999946, 49.326744865000059 ], [ -123.144045705999929, 49.326751427000069 ], [ -123.143268508999981, 49.326788584000035 ], [ -123.143113167999971, 49.326796016000102 ], [ -123.142581954999969, 49.326821402000078 ], [ -123.142000614999986, 49.326849191000079 ], [ -123.141062500999936, 49.326894047000096 ], [ -123.139314989999917, 49.326977542000115 ], [ -123.139240525999952, 49.326981080000053 ], [ -123.137778972999939, 49.32705091000004 ], [ -123.137586818999949, 49.326991823000107 ], [ -123.134900648999974, 49.32616578700005 ], [ -123.1327280499999, 49.325650022000104 ], [ -123.133418788000014, 49.324728795000091 ], [ -123.133546673999916, 49.324671846000129 ] ], [ [ -123.143795804999954, 49.324826177000041 ], [ -123.143862360999904, 49.323746681000074 ], [ -123.143468431999935, 49.323747170000054 ], [ -123.143467647999969, 49.323477319000034 ], [ -123.142229137999948, 49.323478848000015 ], [ -123.142228359999962, 49.323208996000062 ], [ -123.141815525999988, 49.323209503000022 ], [ -123.14181475, 49.322939651000127 ], [ -123.141401917999929, 49.322940157000112 ], [ -123.141401144999946, 49.322670304000034 ], [ -123.140575484999914, 49.322671312000047 ], [ -123.140576252999935, 49.322941164000099 ], [ -123.139750586999966, 49.322942165 ], [ -123.139752114999965, 49.32348187000008 ], [ -123.140577788999963, 49.323480869000072 ], [ -123.140578556999955, 49.323750722000078 ], [ -123.141404236999932, 49.323749714000087 ], [ -123.141405007999964, 49.3240195670001 ], [ -123.142230691999941, 49.32401855400007 ], [ -123.142232247, 49.324558258000103 ], [ -123.143470782999955, 49.324556728000033 ], [ -123.143471566999963, 49.324826580000035 ], [ -123.143795804999954, 49.324826177000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159987000", "BldgCostT": "107850000", "sL_LossRatio": "0.843933757350294", "sL_AssetLoss": "1666600", "sL_BldgLoss": "1406500", "sL_StrLoss": "683700", "sL_NStrLoss": "722800", "sL_ContLoss": "260100", "geom_point": "0101000020E61000000B32978E18C95EC08D38CF9EECA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145135919999973, 49.326712758000056 ], [ -123.145136499999964, 49.326712758000056 ], [ -123.144196020999985, 49.327931586000034 ], [ -123.143559130999975, 49.328844296000064 ], [ -123.142814579999978, 49.328608238000079 ], [ -123.141878064999943, 49.328334417000057 ], [ -123.140528708999966, 49.327947712000103 ], [ -123.137778972999939, 49.32705091000004 ], [ -123.139240525999952, 49.326981080000053 ], [ -123.139314989999917, 49.326977542000115 ], [ -123.141062500999936, 49.326894047000096 ], [ -123.142000614999986, 49.326849191000079 ], [ -123.142581954999969, 49.326821402000078 ], [ -123.143113167999971, 49.326796016000102 ], [ -123.143268508999981, 49.326788584000035 ], [ -123.144045705999929, 49.326751427000069 ], [ -123.144183055999946, 49.326744865000059 ], [ -123.144790732999951, 49.326715808000117 ], [ -123.145135919999973, 49.326712758000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70839751", "BldgCostT": "48855001", "sL_LossRatio": "0.774335925500784", "sL_AssetLoss": "618530", "sL_BldgLoss": "478950", "sL_StrLoss": "130740", "sL_NStrLoss": "348210", "sL_ContLoss": "139580", "geom_point": "0101000020E6100000012BA824829E5EC0D9ED2F92A8804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.47336345899997, 49.008221037000055 ], [ -122.473376099999953, 49.006716310000101 ], [ -122.473558580000017, 49.006717974 ], [ -122.473831929999918, 49.006720448000102 ], [ -122.474134091999957, 49.006723198000074 ], [ -122.474653209999985, 49.006726694000065 ], [ -122.475318917999957, 49.006653105000055 ], [ -122.476169104999911, 49.006652189000064 ], [ -122.476168496999946, 49.00611851300004 ], [ -122.476166380000024, 49.004535388000086 ], [ -122.476166270999897, 49.003903492000099 ], [ -122.474068195, 49.003905698000089 ], [ -122.47390307799995, 49.003906190000066 ], [ -122.47362932899992, 49.003907019000096 ], [ -122.47336280799999, 49.003907798000078 ], [ -122.473361305999973, 49.002416473000082 ], [ -122.473361199999914, 49.00230960600009 ], [ -122.476583448999989, 49.002324271000127 ], [ -122.476584998999897, 49.002303741000091 ], [ -122.476990696999906, 49.002303928000096 ], [ -122.478257803999966, 49.002304496000072 ], [ -122.479437353999955, 49.002297856000048 ], [ -122.479097264999936, 49.006653562000132 ], [ -122.478830025999912, 49.006652356000053 ], [ -122.478824393999929, 49.007192069000091 ], [ -122.478604369999942, 49.00719107500008 ], [ -122.478602235999944, 49.007424761000088 ], [ -122.478483323, 49.007424114000059 ], [ -122.478444221999965, 49.007942094000079 ], [ -122.479040909999981, 49.007961686000101 ], [ -122.479056947999936, 49.008168750000038 ], [ -122.47336345899997, 49.008221037000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14823833", "BldgCostT": "10223333", "sL_LossRatio": "0.775814803533354", "sL_AssetLoss": "131320", "sL_BldgLoss": "101880", "sL_StrLoss": "38250", "sL_NStrLoss": "63630", "sL_ContLoss": "29440", "geom_point": "0101000020E6100000EEC4937A629E5EC072951F9FAD804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.47336280799999, 49.003907798000078 ], [ -122.47362932899992, 49.003907019000096 ], [ -122.47390307799995, 49.003906190000066 ], [ -122.474068195, 49.003905698000089 ], [ -122.476166270999897, 49.003903492000099 ], [ -122.476166380000024, 49.004535388000086 ], [ -122.476168496999946, 49.00611851300004 ], [ -122.476169104999911, 49.006652189000064 ], [ -122.475318917999957, 49.006653105000055 ], [ -122.474653209999985, 49.006726694000065 ], [ -122.474134091999957, 49.006723198000074 ], [ -122.473831929999918, 49.006720448000102 ], [ -122.473558580000017, 49.006717974 ], [ -122.473376099999953, 49.006716310000101 ], [ -122.473367506999978, 49.004902795000106 ], [ -122.47336280799999, 49.003907798000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "260630002", "BldgCostT": "173600002", "sL_LossRatio": "0.788942206374733", "sL_AssetLoss": "1774694", "sL_BldgLoss": "1400131", "sL_StrLoss": "806980", "sL_NStrLoss": "593151", "sL_ContLoss": "374563", "geom_point": "0101000020E6100000C82CDF865ADA5EC01670198142574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.423714701999984, 48.692194708000038 ], [ -123.423210587999932, 48.692114898000057 ], [ -123.422857973999911, 48.692332794000052 ], [ -123.421978479999922, 48.692596301000066 ], [ -123.421940988999907, 48.693037804000035 ], [ -123.421642218999949, 48.693110399000012 ], [ -123.421544814999919, 48.692831299000076 ], [ -123.42094561499999, 48.692744403000134 ], [ -123.420604718999954, 48.692520803000058 ], [ -123.420132377999934, 48.691334493000085 ], [ -123.419572571999979, 48.690618271000055 ], [ -123.420353789, 48.690637196000118 ], [ -123.420465087999958, 48.688608862000081 ], [ -123.420445127999983, 48.688608934000086 ], [ -123.420064353999962, 48.688855469000046 ], [ -123.420064559999958, 48.688880208000086 ], [ -123.420025927999987, 48.688880349000065 ], [ -123.419658908999963, 48.689117972000084 ], [ -123.419665913999921, 48.689961196000169 ], [ -123.419258292, 48.689962681000019 ], [ -123.4192605329999, 48.690232556000041 ], [ -123.419137577999919, 48.690233003000067 ], [ -123.419066136999959, 48.690395461000087 ], [ -123.418727737999944, 48.690343462000065 ], [ -123.417628313999927, 48.690352789000016 ], [ -123.417129165999967, 48.690256715000046 ], [ -123.416809008999934, 48.690195090000024 ], [ -123.41599870399989, 48.690144162000088 ], [ -123.415998618999964, 48.690133794000069 ], [ -123.415436731999975, 48.690013061000037 ], [ -123.415390534999958, 48.69000220100002 ], [ -123.415312815, 48.689976972000125 ], [ -123.415283654999953, 48.689977076000105 ], [ -123.415162989999914, 48.689948711000021 ], [ -123.414834895999931, 48.68994160500008 ], [ -123.414774276999978, 48.689959473000044 ], [ -123.414773191999956, 48.689827404000027 ], [ -123.414627836999912, 48.68979146200013 ], [ -123.414508037999965, 48.689729861000053 ], [ -123.414442043999941, 48.68971022300007 ], [ -123.414422841999937, 48.689710293000076 ], [ -123.414406865999979, 48.69000074500012 ], [ -123.413786793999918, 48.689720811000029 ], [ -123.413513388, 48.68934339900003 ], [ -123.412844313999983, 48.689094191000038 ], [ -123.41175809799995, 48.689107006000057 ], [ -123.411231089999916, 48.689368992000041 ], [ -123.410781590999974, 48.689388995000122 ], [ -123.410134392999979, 48.688356399000035 ], [ -123.409848900999961, 48.688249585000065 ], [ -123.409223820999927, 48.688271002000064 ], [ -123.408423583999976, 48.688453301000088 ], [ -123.408412041999981, 48.688452740000102 ], [ -123.408071102999941, 48.688436209000074 ], [ -123.407813885999957, 48.687043290000105 ], [ -123.407392400999981, 48.686917994000034 ], [ -123.406877715999912, 48.686983507000114 ], [ -123.405495399999978, 48.687500505000074 ], [ -123.404911101999971, 48.687466299000029 ], [ -123.40331490599999, 48.688434802000081 ], [ -123.40306732099999, 48.688184104000086 ], [ -123.40291750699997, 48.688148509 ], [ -123.40278361699994, 48.688364996000111 ], [ -123.40258069799998, 48.688473197000086 ], [ -123.402556109999935, 48.68869818600006 ], [ -123.402105000999981, 48.688322186000072 ], [ -123.401787412999965, 48.687775404000128 ], [ -123.400900994999944, 48.685502290000109 ], [ -123.400935794999967, 48.684917 ], [ -123.401572678999941, 48.684726095000059 ], [ -123.402077079999941, 48.684760297000039 ], [ -123.402703795999969, 48.685153415000052 ], [ -123.402991108999984, 48.685216084000075 ], [ -123.403098390999958, 48.685116396000083 ], [ -123.403068292999976, 48.684765998000096 ], [ -123.402615990999948, 48.684388609000123 ], [ -123.402682802999962, 48.684127992000121 ], [ -123.403033303999933, 48.68366789700007 ], [ -123.403082995999938, 48.683299106000035 ], [ -123.403261505999964, 48.683326109000099 ], [ -123.403438280999964, 48.68354969600005 ], [ -123.404094604999955, 48.683988387000099 ], [ -123.404492096999931, 48.68444558900007 ], [ -123.405170298999963, 48.684298903000041 ], [ -123.405399614999951, 48.684145000000122 ], [ -123.405403330999917, 48.683498630000066 ], [ -123.405405714999972, 48.683084006000115 ], [ -123.405185816999975, 48.682733696000113 ], [ -123.404324686000024, 48.682089907000012 ], [ -123.403022498, 48.680610193000099 ], [ -123.401559607999914, 48.679687300000069 ], [ -123.400279617999985, 48.679197299000045 ], [ -123.399636593999929, 48.678669007000025 ], [ -123.399266685999947, 48.67822030300011 ], [ -123.399088805999924, 48.678184703000078 ], [ -123.39904699399996, 48.6779069890001 ], [ -123.398485911999984, 48.677341597000115 ], [ -123.397150811999921, 48.676868795000154 ], [ -123.397053499999942, 48.676582489000026 ], [ -123.396246911999953, 48.675927397000116 ], [ -123.396431598999982, 48.675225202 ], [ -123.396291814999955, 48.674911899000058 ], [ -123.39638630599994, 48.674685384000021 ], [ -123.396901918000012, 48.674540202000045 ], [ -123.39724148, 48.674709700000065 ], [ -123.398082597999959, 48.674545897000066 ], [ -123.399197987999941, 48.67482079600012 ], [ -123.399501010999927, 48.675269399000044 ], [ -123.399852485999958, 48.674953196000097 ], [ -123.400054133999973, 48.675020939000035 ], [ -123.400301981999974, 48.675104202000121 ], [ -123.400696313999944, 48.675138293000089 ], [ -123.401305612999963, 48.675047193000061 ], [ -123.401590404999965, 48.674901893000076 ], [ -123.40146590199997, 48.674614209 ], [ -123.402105797000019, 48.67471959000008 ], [ -123.40210247899995, 48.674513097000066 ], [ -123.402416702999929, 48.674503087000062 ], [ -123.402441824, 48.674377804000095 ], [ -123.402657916999956, 48.6742952070001 ], [ -123.403514302999909, 48.674265296000094 ], [ -123.404289222999935, 48.674487503000115 ], [ -123.404933289999974, 48.674961702000068 ], [ -123.405651689999956, 48.674968895000056 ], [ -123.40596609899994, 48.675129795000018 ], [ -123.406512520999954, 48.675612601000125 ], [ -123.406989201, 48.675728002000092 ], [ -123.408048419999957, 48.675589800000111 ], [ -123.408673403999913, 48.675587001000046 ], [ -123.408875705999947, 48.675505797000035 ], [ -123.409091080999971, 48.67531639900011 ], [ -123.409434009999927, 48.674760455000047 ], [ -123.410514478999957, 48.674786739000055 ], [ -123.410479578999954, 48.675420541000086 ], [ -123.411394740999924, 48.675417277000065 ], [ -123.411399135999929, 48.675957030000035 ], [ -123.411412336999945, 48.675956984000088 ], [ -123.411407200999932, 48.676162390000073 ], [ -123.41177660699999, 48.676395889000062 ], [ -123.411810691, 48.676451823000022 ], [ -123.411811045999954, 48.676495327000097 ], [ -123.411837145, 48.676495234000093 ], [ -123.412038703999897, 48.676826000000126 ], [ -123.412222502999924, 48.676977189000127 ], [ -123.412227367999932, 48.677573377000073 ], [ -123.412634891999957, 48.677571918000091 ], [ -123.412637095999955, 48.677841795000084 ], [ -123.412869011999959, 48.677840963000044 ], [ -123.413047838999958, 48.678233858000027 ], [ -123.413053446999953, 48.678919841000088 ], [ -123.413211980999932, 48.678919272000016 ], [ -123.413237892999973, 48.679035015000068 ], [ -123.413050799999965, 48.679376803000039 ], [ -123.412988591999962, 48.679972113000083 ], [ -123.412811184999939, 48.679999207000051 ], [ -123.412672311000023, 48.681349290000114 ], [ -123.413246314999967, 48.681617104000061 ], [ -123.414008020999987, 48.681847805000046 ], [ -123.414239894999923, 48.681793695000088 ], [ -123.414496193, 48.681585710000085 ], [ -123.414495689999939, 48.681485989000102 ], [ -123.415172392999949, 48.681241093000025 ], [ -123.415360806999928, 48.680979000000129 ], [ -123.41683509899994, 48.680343801000063 ], [ -123.416834308999952, 48.680200007000067 ], [ -123.417009187999923, 48.680110292000101 ], [ -123.417967163999919, 48.679692682000038 ], [ -123.418094000999972, 48.679637387000028 ], [ -123.418554502999896, 48.679564790000057 ], [ -123.419055308999958, 48.679355402000084 ], [ -123.420746587999957, 48.678449589000103 ], [ -123.423155507, 48.677407109000093 ], [ -123.423830397999922, 48.676855894000028 ], [ -123.423784201999936, 48.676324686000036 ], [ -123.423960909999892, 48.676287690000052 ], [ -123.424953878999972, 48.676383094000073 ], [ -123.424910203999943, 48.676168005000122 ], [ -123.424611686999953, 48.67615100900008 ], [ -123.423572799999988, 48.675326295000055 ], [ -123.422917099999964, 48.674987411000153 ], [ -123.422523193999908, 48.674907589000064 ], [ -123.421926988999957, 48.675144005000099 ], [ -123.421942312999988, 48.67529639400005 ], [ -123.42218828599999, 48.675430297000055 ], [ -123.422949598999978, 48.675508611000076 ], [ -123.423099178999962, 48.675634 ], [ -123.422788499999953, 48.675887495000026 ], [ -123.422862803999948, 48.676660810000051 ], [ -123.422702414999904, 48.676904402000105 ], [ -123.42229628799997, 48.677076706000022 ], [ -123.421673303999938, 48.677169292000052 ], [ -123.420016299999986, 48.677166402000054 ], [ -123.41978439599994, 48.677239103000097 ], [ -123.41934897799996, 48.677186396000046 ], [ -123.418928108999964, 48.677026788000049 ], [ -123.418315707999938, 48.677082383000119 ], [ -123.417978389999945, 48.677325905000046 ], [ -123.417738593999928, 48.677777404000111 ], [ -123.417730364999983, 48.677782722000124 ], [ -123.417119398999915, 48.677767904000142 ], [ -123.417122762999952, 48.678175345000128 ], [ -123.416713263999938, 48.67843995100003 ], [ -123.416142903999969, 48.678808491000012 ], [ -123.41596601900001, 48.678808506000038 ], [ -123.415026987999951, 48.678362805000027 ], [ -123.415025218999972, 48.67816480500008 ], [ -123.415452659999943, 48.677395571000041 ], [ -123.415640900999946, 48.677056802000045 ], [ -123.415624698999977, 48.676741987000057 ], [ -123.415174499999949, 48.676472792000055 ], [ -123.414438908999927, 48.676242088000031 ], [ -123.414176506999965, 48.675883189000082 ], [ -123.413510195999947, 48.675678103000052 ], [ -123.413453279999899, 48.675552793000115 ], [ -123.413943120999932, 48.675559905000114 ], [ -123.414321389999913, 48.675171104000178 ], [ -123.414565484999954, 48.675215303000058 ], [ -123.41499099, 48.675690896000063 ], [ -123.415397910999914, 48.675681003000051 ], [ -123.416263010999955, 48.6751553920001 ], [ -123.416344117999984, 48.674993104000059 ], [ -123.416299984999981, 48.674696791 ], [ -123.416042303999973, 48.67466120100007 ], [ -123.416026486999911, 48.674535897000062 ], [ -123.416270208999919, 48.674390606000046 ], [ -123.416528881999966, 48.674353599000085 ], [ -123.416732008999986, 48.674397799000069 ], [ -123.417116718999964, 48.674783699000045 ], [ -123.417282490999952, 48.675242290000028 ], [ -123.417460480999949, 48.675430297000055 ], [ -123.417693117999974, 48.675609804000025 ], [ -123.418129113999896, 48.675769297000052 ], [ -123.419336901999941, 48.675702297000072 ], [ -123.420313698999962, 48.675356304000054 ], [ -123.42047560899999, 48.675247996000081 ], [ -123.420890599999922, 48.674508810000155 ], [ -123.420849709, 48.672881010000019 ], [ -123.420557787999897, 48.672252893000092 ], [ -123.420857601999955, 48.672349691000129 ], [ -123.421263876999959, 48.672106195000048 ], [ -123.421900487999949, 48.671878308000068 ], [ -123.421533611999934, 48.671871202000105 ], [ -123.420236300999989, 48.671083610000089 ], [ -123.419773698, 48.671040906000023 ], [ -123.418944188999888, 48.67082730100001 ], [ -123.417931187999912, 48.671533689000064 ], [ -123.417509794999958, 48.671516612000069 ], [ -123.41727840099999, 48.671428313000014 ], [ -123.417033621999963, 48.67150090300003 ], [ -123.417103297999986, 48.671607690000016 ], [ -123.417347306999943, 48.671651907000083 ], [ -123.41813829299997, 48.672036394000038 ], [ -123.418576300999959, 48.672322710000039 ], [ -123.418603581999932, 48.672439500000095 ], [ -123.418428506999987, 48.67250359400002 ], [ -123.416729394999962, 48.672536288000096 ], [ -123.416621604999975, 48.672554789000067 ], [ -123.416581982999944, 48.672671603000033 ], [ -123.41612140499997, 48.672852485000078 ], [ -123.415632393999957, 48.672855312000131 ], [ -123.415319184999959, 48.67265879100006 ], [ -123.415263304999925, 48.672423790000032 ], [ -123.415301220999979, 48.672127605000064 ], [ -123.415542902999988, 48.671874102000061 ], [ -123.415409094999958, 48.670552398000083 ], [ -123.415268458999918, 48.670187801000061 ], [ -123.415228921999969, 48.67008530300005 ], [ -123.414902105999957, 48.669763400000122 ], [ -123.41468271199993, 48.669736298000068 ], [ -123.414140398999962, 48.66984599200007 ], [ -123.414071812999921, 48.669205864000105 ], [ -123.417582559999971, 48.669022335000122 ], [ -123.417681392999924, 48.669394589000063 ], [ -123.417878894, 48.670144876000052 ], [ -123.418002712, 48.67028579400003 ], [ -123.41827301899994, 48.67042759700005 ], [ -123.42021750899994, 48.67082810300014 ], [ -123.421798838999962, 48.671450211000071 ], [ -123.422429673999886, 48.671698379000141 ], [ -123.422455676999959, 48.671708635000108 ], [ -123.422627141999953, 48.671776131000072 ], [ -123.423136034999928, 48.672067895000076 ], [ -123.423569678999982, 48.672446158000092 ], [ -123.423790187999941, 48.672753482000083 ], [ -123.423943109999968, 48.673081710000076 ], [ -123.424074662999942, 48.673948440000039 ], [ -123.424156064999963, 48.674616562000026 ], [ -123.424345180999978, 48.675026796000083 ], [ -123.424895714999963, 48.67536334400009 ], [ -123.424986975999929, 48.675419097000038 ], [ -123.425316492999954, 48.675544258000031 ], [ -123.426098942999928, 48.675919252000021 ], [ -123.42645822899999, 48.675997326000143 ], [ -123.4268694299999, 48.67596761300009 ], [ -123.427372639999959, 48.675797123000095 ], [ -123.427430502000021, 48.675777517000057 ], [ -123.42733222, 48.67582556100006 ], [ -123.425974876999987, 48.676489215000061 ], [ -123.425812470999958, 48.676568563000046 ], [ -123.420554889999892, 48.679098092000061 ], [ -123.41997866399997, 48.679375312000097 ], [ -123.418914445999988, 48.679887259000047 ], [ -123.418114994999954, 48.680271828000059 ], [ -123.415986239999981, 48.681364981000065 ], [ -123.414891243999975, 48.682036099000044 ], [ -123.414334670999935, 48.682363316000121 ], [ -123.412512841999941, 48.683619803000028 ], [ -123.412603099999941, 48.683680598000102 ], [ -123.412741157999932, 48.683771416000106 ], [ -123.412750994999939, 48.683777900000059 ], [ -123.412981049000024, 48.683886555000079 ], [ -123.413024749, 48.683907195000124 ], [ -123.41319153299996, 48.683983287000032 ], [ -123.413447439999914, 48.684016594000077 ], [ -123.414577820999924, 48.683985496000112 ], [ -123.41483929099995, 48.684041405000066 ], [ -123.41505468099993, 48.684145800000053 ], [ -123.415570403999979, 48.684610794000065 ], [ -123.416547313999928, 48.685597209000072 ], [ -123.41679951699993, 48.685896308000089 ], [ -123.41756309199998, 48.686763917000107 ], [ -123.418289094, 48.687304399000041 ], [ -123.418831413999925, 48.687608704000091 ], [ -123.41979739599999, 48.68800338000004 ], [ -123.42071657599999, 48.688343717000045 ], [ -123.420632991000019, 48.688453500000044 ], [ -123.421058803, 48.688463811000055 ], [ -123.421263, 48.688526156000066 ], [ -123.422191314999964, 48.688809609000138 ], [ -123.422893719999948, 48.689113207000041 ], [ -123.423153389999953, 48.689263012000133 ], [ -123.423361906999943, 48.689383295000063 ], [ -123.423969657999976, 48.68985227000011 ], [ -123.424051223999967, 48.689915217000099 ], [ -123.424310906999949, 48.690115589000108 ], [ -123.42477150199997, 48.690326010000035 ], [ -123.425030770999967, 48.690435253000011 ], [ -123.427059077999928, 48.691289959000059 ], [ -123.427094996, 48.69130509899999 ], [ -123.427440404999956, 48.69151448900007 ], [ -123.427557520999983, 48.691601493000114 ], [ -123.427801600999942, 48.691782800000034 ], [ -123.428089990000018, 48.692090891000113 ], [ -123.427841069999985, 48.692276027000105 ], [ -123.42720710199994, 48.692747463000011 ], [ -123.427061696999971, 48.692855603000076 ], [ -123.426938224999958, 48.693054603000114 ], [ -123.426833714999987, 48.693352208000086 ], [ -123.426997076999953, 48.693987092000093 ], [ -123.426363072999919, 48.694905790000121 ], [ -123.426263087999985, 48.694883604000076 ], [ -123.425471016999921, 48.694328097000088 ], [ -123.424321612999933, 48.693252894000068 ], [ -123.42401660199998, 48.692724488000046 ], [ -123.423905188999967, 48.692282997000092 ], [ -123.423714701999984, 48.692194708000038 ] ], [ [ -123.420778610999932, 48.67673280700005 ], [ -123.420780955999973, 48.677014416000098 ], [ -123.421419248999925, 48.677029876000041 ], [ -123.42143567, 48.6767304050001 ], [ -123.420778610999932, 48.67673280700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128817584", "BldgCostT": "86608334", "sL_LossRatio": "0.815442797160792", "sL_AssetLoss": "655267.3", "sL_BldgLoss": "534333", "sL_StrLoss": "344807", "sL_NStrLoss": "189526", "sL_ContLoss": "120934.3", "geom_point": "0101000020E610000013AC600A45DB5EC0A4F8323076574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.423261811999964, 48.688517133000083 ], [ -123.423297338999973, 48.688405762000109 ], [ -123.423188442999944, 48.687519354000052 ], [ -123.422906557999923, 48.687520390000032 ], [ -123.422905404999966, 48.687382639000091 ], [ -123.42127501, 48.687390224000055 ], [ -123.421278397999984, 48.687796239000072 ], [ -123.420961495999961, 48.687797398000086 ], [ -123.420873263999979, 48.68809451700006 ], [ -123.420875289999984, 48.688337480000051 ], [ -123.420720893999928, 48.688338045000108 ], [ -123.42071657599999, 48.688343717000045 ], [ -123.41979739599999, 48.68800338000004 ], [ -123.418831413999925, 48.687608704000091 ], [ -123.418289094, 48.687304399000041 ], [ -123.41756309199998, 48.686763917000107 ], [ -123.41679951699993, 48.685896308000089 ], [ -123.416547313999928, 48.685597209000072 ], [ -123.415570403999979, 48.684610794000065 ], [ -123.41505468099993, 48.684145800000053 ], [ -123.41483929099995, 48.684041405000066 ], [ -123.414577820999924, 48.683985496000112 ], [ -123.413447439999914, 48.684016594000077 ], [ -123.41319153299996, 48.683983287000032 ], [ -123.413024749, 48.683907195000124 ], [ -123.412981049000024, 48.683886555000079 ], [ -123.412750994999939, 48.683777900000059 ], [ -123.412741157999932, 48.683771416000106 ], [ -123.412603099999941, 48.683680598000102 ], [ -123.412512841999941, 48.683619803000028 ], [ -123.414334670999935, 48.682363316000121 ], [ -123.414891243999975, 48.682036099000044 ], [ -123.415986239999981, 48.681364981000065 ], [ -123.418114994999954, 48.680271828000059 ], [ -123.418914445999988, 48.679887259000047 ], [ -123.41997866399997, 48.679375312000097 ], [ -123.420554889999892, 48.679098092000061 ], [ -123.425812470999958, 48.676568563000046 ], [ -123.425974876999987, 48.676489215000061 ], [ -123.42733222, 48.67582556100006 ], [ -123.427430502000021, 48.675777517000057 ], [ -123.427682298999983, 48.675579860000056 ], [ -123.427691296999981, 48.675572812000013 ], [ -123.427756825999936, 48.675618210000096 ], [ -123.427821998999946, 48.675663385000092 ], [ -123.427813099999952, 48.675670340000117 ], [ -123.427564095999927, 48.675864515000086 ], [ -123.427180880999984, 48.676224807000068 ], [ -123.42711610500001, 48.67631788500006 ], [ -123.427102602999966, 48.676416713000044 ], [ -123.427132389999912, 48.676516593000088 ], [ -123.427206288999983, 48.67657880400003 ], [ -123.427359956999965, 48.676644487 ], [ -123.427391798999963, 48.67665810700003 ], [ -123.428753827999941, 48.676878497000125 ], [ -123.429584979999959, 48.676984199000046 ], [ -123.429951822999911, 48.677023517000059 ], [ -123.430421030999966, 48.677073782000072 ], [ -123.433027608999936, 48.677057341000094 ], [ -123.432942992, 48.678607373000048 ], [ -123.432679585999963, 48.678601022000038 ], [ -123.432651371999953, 48.679117790000099 ], [ -123.434768622999954, 48.679109819000047 ], [ -123.434881226999977, 48.677045608000043 ], [ -123.436286835, 48.677036690000087 ], [ -123.436257852999972, 48.677669705 ], [ -123.435926410999983, 48.67989088300007 ], [ -123.435926582999983, 48.680383996000053 ], [ -123.435982499999966, 48.680678320000013 ], [ -123.436027178999964, 48.680778705000087 ], [ -123.436109420999983, 48.680963496000118 ], [ -123.436622920999923, 48.681496007000113 ], [ -123.437313809999964, 48.681936308000076 ], [ -123.437548579999927, 48.682021025000076 ], [ -123.437620946999957, 48.682047163000028 ], [ -123.437585958999961, 48.68265057100006 ], [ -123.437578267999939, 48.682681956000089 ], [ -123.437587577999949, 48.682684074000058 ], [ -123.437659218999926, 48.682700055000041 ], [ -123.437720466000016, 48.682748480000036 ], [ -123.437775018, 48.682812701000081 ], [ -123.437785301999895, 48.682866065000042 ], [ -123.437703293999917, 48.682933324000061 ], [ -123.4376194099999, 48.68297458200005 ], [ -123.437614153999931, 48.682998062000124 ], [ -123.437611986999954, 48.683025805000106 ], [ -123.437884014999938, 48.684244104000129 ], [ -123.437277596999962, 48.685213809000039 ], [ -123.437278402999979, 48.685897099000059 ], [ -123.43729779399996, 48.687856291000109 ], [ -123.436651182999952, 48.688392406000069 ], [ -123.436442708999948, 48.688534306000122 ], [ -123.435876801999981, 48.688884791000099 ], [ -123.4356745799999, 48.688984493000063 ], [ -123.435468198999928, 48.689038207000053 ], [ -123.435231114999951, 48.689032393000041 ], [ -123.434864889999943, 48.688980402000105 ], [ -123.434447905999889, 48.688963999000073 ], [ -123.434270092999924, 48.688990395000118 ], [ -123.434101301999959, 48.68905029700003 ], [ -123.433814112999968, 48.68926599100007 ], [ -123.433347499999968, 48.689486389000095 ], [ -123.433017491999976, 48.689517211000066 ], [ -123.43263939799999, 48.689483791000086 ], [ -123.432192593999957, 48.689344093000045 ], [ -123.431786095999954, 48.689189974000044 ], [ -123.43177379399998, 48.689185280000039 ], [ -123.431024707999981, 48.689164507 ], [ -123.430425583999948, 48.689078910000056 ], [ -123.430026299999895, 48.689087310000055 ], [ -123.429804066999964, 48.689169714000016 ], [ -123.429599721999963, 48.689245533000111 ], [ -123.429426717999974, 48.688860955000038 ], [ -123.42893628899995, 48.688538835000038 ], [ -123.42875930799994, 48.688917021000123 ], [ -123.426491923999905, 48.688764807000112 ], [ -123.425946410999956, 48.688693094000058 ], [ -123.425577270999923, 48.688544391000043 ], [ -123.425366308, 48.688507804000082 ], [ -123.424617009999935, 48.688514899000097 ], [ -123.425006708999973, 48.689920614000144 ], [ -123.425005246999916, 48.689925456000076 ], [ -123.42495030299996, 48.690109404000111 ], [ -123.42477150199997, 48.690326010000035 ], [ -123.424310906999949, 48.690115589000108 ], [ -123.424051223999967, 48.689915217000099 ], [ -123.423969657999976, 48.68985227000011 ], [ -123.423361906999943, 48.689383295000063 ], [ -123.423153389999953, 48.689263012000133 ], [ -123.422893719999948, 48.689113207000041 ], [ -123.422191314999964, 48.688809609000138 ], [ -123.421263, 48.688526156000066 ], [ -123.421058803, 48.688463811000055 ], [ -123.423261811999964, 48.688517133000083 ] ], [ [ -123.435551550999932, 48.68855281400004 ], [ -123.435551171, 48.688508778000063 ], [ -123.435548768000032, 48.688552825000073 ], [ -123.435551550999932, 48.68855281400004 ] ], [ [ -123.437259137999973, 48.68522966200009 ], [ -123.437285916999954, 48.68515598000009 ], [ -123.436681051999969, 48.68514142300004 ], [ -123.436705984999932, 48.68468409500008 ], [ -123.435455634999926, 48.684653992000051 ], [ -123.435551201999928, 48.682901875000042 ], [ -123.434147492999969, 48.682868063000072 ], [ -123.434249377999905, 48.681000969000095 ], [ -123.433448644999899, 48.681003985000125 ], [ -123.433444012999956, 48.680464234000027 ], [ -123.433036467999926, 48.680465766000054 ], [ -123.433031840999917, 48.679926015000063 ], [ -123.432624299999972, 48.679927546000016 ], [ -123.432619187999947, 48.67933068200005 ], [ -123.431966834999969, 48.679314952000048 ], [ -123.431966793999905, 48.679315694000088 ], [ -123.431663077999943, 48.679308369000132 ], [ -123.431574267999949, 48.68093429900005 ], [ -123.426926096999964, 48.680822086000028 ], [ -123.426927838999944, 48.681028335000043 ], [ -123.426520287999921, 48.681029844000086 ], [ -123.426522567999911, 48.681299720000069 ], [ -123.42570746199999, 48.68130273600007 ], [ -123.425712010999959, 48.681842487000068 ], [ -123.426119567999947, 48.681840981000114 ], [ -123.426121844999955, 48.682110857000055 ], [ -123.426529404999954, 48.682109348000054 ], [ -123.426536069999969, 48.682898783 ], [ -123.430269638999931, 48.682988942000087 ], [ -123.430229164999972, 48.683729479000121 ], [ -123.431627335999906, 48.683763208000109 ], [ -123.43152276, 48.685677524000056 ], [ -123.432197630999951, 48.685693798000024 ], [ -123.432156715999966, 48.686442918000125 ], [ -123.43565925199999, 48.686527310000017 ], [ -123.435563492999989, 48.688282885000078 ], [ -123.435956832, 48.68828139700004 ], [ -123.435954501999959, 48.688011521000121 ], [ -123.436362108999944, 48.688009979000071 ], [ -123.436343454999971, 48.685850976000047 ], [ -123.436751043999934, 48.68584943200004 ], [ -123.43674871099995, 48.685579556000086 ], [ -123.43715629899998, 48.68557801000005 ], [ -123.437153961999954, 48.685308135000064 ], [ -123.437263232999925, 48.685307720000054 ], [ -123.437259137999973, 48.68522966200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127182417", "BldgCostT": "82631667", "sL_LossRatio": "0.807621579324298", "sL_AssetLoss": "162811.4", "sL_BldgLoss": "131490", "sL_StrLoss": "74860", "sL_NStrLoss": "56630", "sL_ContLoss": "31321.4", "geom_point": "0101000020E61000001D6EE96679DA5EC044588E6F73554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.409427144999967, 48.666265966000083 ], [ -123.409465763999904, 48.666154840000054 ], [ -123.409478674999917, 48.666063392000083 ], [ -123.409823752999955, 48.665822452000086 ], [ -123.410026262999949, 48.665681059000057 ], [ -123.41010405399993, 48.665497569000067 ], [ -123.410098517999955, 48.665435195000079 ], [ -123.410525315, 48.665615002999985 ], [ -123.411499274999954, 48.666053370000085 ], [ -123.41181260799999, 48.666125896000032 ], [ -123.412106123999948, 48.666164564000056 ], [ -123.412462067999982, 48.666163293000075 ], [ -123.412655436999941, 48.666162609000011 ], [ -123.413947967999931, 48.666159739000086 ], [ -123.416787996999957, 48.666153873 ], [ -123.417054277999938, 48.667099384000025 ], [ -123.417126180999944, 48.667354691000149 ], [ -123.417247484999919, 48.667788528000109 ], [ -123.417282909999969, 48.667919929000099 ], [ -123.417318441, 48.668051673000051 ], [ -123.417547673999977, 48.668891059000096 ], [ -123.41755678799997, 48.66892534300014 ], [ -123.417582559999971, 48.669022335000122 ], [ -123.414071812999921, 48.669205864000105 ], [ -123.414037390999951, 48.668884589000101 ], [ -123.413449916999951, 48.668346296000074 ], [ -123.412972575999959, 48.668105595000057 ], [ -123.412062710999962, 48.668027309000095 ], [ -123.411274602, 48.668173992000099 ], [ -123.410518801999956, 48.668689493000038 ], [ -123.410539502999939, 48.669491402000048 ], [ -123.410104602999951, 48.669653692000075 ], [ -123.4098887899999, 48.669646595000131 ], [ -123.409642183999921, 48.669502793000092 ], [ -123.409196189999989, 48.669747705000141 ], [ -123.408992507999969, 48.669693606000081 ], [ -123.408841380999917, 48.669559702000079 ], [ -123.408811905000036, 48.669290485000055 ], [ -123.408822504999961, 48.668840500000087 ], [ -123.408955917999904, 48.668614004000069 ], [ -123.40948390799997, 48.668387583000069 ], [ -123.410054894, 48.668403298000058 ], [ -123.410325591999978, 48.66833059700005 ], [ -123.411569603999908, 48.667534498000059 ], [ -123.411730216, 48.667309506000038 ], [ -123.41176490899997, 48.6666615070001 ], [ -123.410869886999961, 48.666691391000043 ], [ -123.409902292999973, 48.666470587000063 ], [ -123.409427144999967, 48.666265966000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188763250", "BldgCostT": "112765000", "sL_LossRatio": "0.727296379897315", "sL_AssetLoss": "995469", "sL_BldgLoss": "724001", "sL_StrLoss": "384300", "sL_NStrLoss": "339701", "sL_ContLoss": "271468", "geom_point": "0101000020E6100000211807974EDA5EC0218337FF0A554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40969363399995, 48.665305560000029 ], [ -123.408885910999913, 48.665046899000089 ], [ -123.40693031399999, 48.664408793000106 ], [ -123.406870599999962, 48.664384797000075 ], [ -123.406316000999965, 48.664114395000112 ], [ -123.404434817999942, 48.662843494000121 ], [ -123.40412590499993, 48.662592503000035 ], [ -123.405756647999951, 48.662593115000078 ], [ -123.40675240099992, 48.662593493000081 ], [ -123.407959587000022, 48.662586792000077 ], [ -123.408072089999948, 48.662588603000096 ], [ -123.409113495999961, 48.662587911000131 ], [ -123.410201096999941, 48.66258731000007 ], [ -123.41016567599992, 48.663402192000042 ], [ -123.411412397, 48.663418106000059 ], [ -123.411383976999971, 48.664303600000075 ], [ -123.411376690999958, 48.664682003000038 ], [ -123.411407501999975, 48.664813388000034 ], [ -123.411515584999947, 48.664944096000077 ], [ -123.4116587, 48.665053905000065 ], [ -123.411833620999971, 48.665128510000038 ], [ -123.412022481999969, 48.665170898000085 ], [ -123.412433274999955, 48.665147604000083 ], [ -123.412895830999958, 48.665024300000042 ], [ -123.413908586000019, 48.664754294000033 ], [ -123.4141245859999, 48.664649597000107 ], [ -123.414235375999965, 48.664528255000093 ], [ -123.414297698999974, 48.664459996000083 ], [ -123.41431741299999, 48.6638809 ], [ -123.414362887999928, 48.663841406000103 ], [ -123.415583654000031, 48.66383588300004 ], [ -123.41680018299995, 48.663832971000048 ], [ -123.416798898999957, 48.664079672000049 ], [ -123.416797618999951, 48.664322549000154 ], [ -123.416787996999957, 48.666153873 ], [ -123.413947967999931, 48.666159739000086 ], [ -123.412655436999941, 48.666162609000011 ], [ -123.412462067999982, 48.666163293000075 ], [ -123.412106123999948, 48.666164564000056 ], [ -123.41181260799999, 48.666125896000032 ], [ -123.411499274999954, 48.666053370000085 ], [ -123.410525315, 48.665615002999985 ], [ -123.410098517999955, 48.665435195000079 ], [ -123.40969363399995, 48.665305560000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118895334", "BldgCostT": "75743334", "sL_LossRatio": "0.756724500778945", "sL_AssetLoss": "768347", "sL_BldgLoss": "581427", "sL_StrLoss": "307800", "sL_NStrLoss": "273627", "sL_ContLoss": "186920", "geom_point": "0101000020E61000002B798F7569DA5EC0923DDFA2D5544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.411383976999971, 48.664303600000075 ], [ -123.411412397, 48.663418106000059 ], [ -123.41016567599992, 48.663402192000042 ], [ -123.410201096999941, 48.66258731000007 ], [ -123.410197210999982, 48.66221490100002 ], [ -123.41012990199998, 48.661909511000104 ], [ -123.409902484999932, 48.661409908000145 ], [ -123.409868789999962, 48.661061985000032 ], [ -123.409907496999935, 48.660851193000028 ], [ -123.410117698999983, 48.660357803000103 ], [ -123.411166885999975, 48.660363498000038 ], [ -123.41258759099999, 48.66036919800009 ], [ -123.41278499199997, 48.660405511000057 ], [ -123.413009809999949, 48.660532705000044 ], [ -123.413313191999961, 48.660909592000117 ], [ -123.413338911999958, 48.661009397000079 ], [ -123.41327798199994, 48.661179210000036 ], [ -123.412946295999973, 48.661490296000061 ], [ -123.41238131599999, 48.662024598000066 ], [ -123.412364296999982, 48.66258130000007 ], [ -123.415350808000014, 48.662570005000113 ], [ -123.416259293999985, 48.662571281000112 ], [ -123.416315562999898, 48.662583553000033 ], [ -123.416404012000015, 48.662602815000078 ], [ -123.41661068099998, 48.662716006000068 ], [ -123.416755269999939, 48.662871815000074 ], [ -123.416799968999925, 48.662997320000073 ], [ -123.4168030599999, 48.663484168000089 ], [ -123.41680018299995, 48.663832971000048 ], [ -123.415583654000031, 48.66383588300004 ], [ -123.414362887999928, 48.663841406000103 ], [ -123.41431741299999, 48.6638809 ], [ -123.414297698999974, 48.664459996000083 ], [ -123.414235375999965, 48.664528255000093 ], [ -123.4141245859999, 48.664649597000107 ], [ -123.413908586000019, 48.664754294000033 ], [ -123.412895830999958, 48.665024300000042 ], [ -123.412433274999955, 48.665147604000083 ], [ -123.412022481999969, 48.665170898000085 ], [ -123.411833620999971, 48.665128510000038 ], [ -123.4116587, 48.665053905000065 ], [ -123.411515584999947, 48.664944096000077 ], [ -123.411407501999975, 48.664813388000034 ], [ -123.411376690999958, 48.664682003000038 ], [ -123.411383976999971, 48.664303600000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151710584", "BldgCostT": "100888334", "sL_LossRatio": "0.806631540793116", "sL_AssetLoss": "951815", "sL_BldgLoss": "767764", "sL_StrLoss": "445660", "sL_NStrLoss": "322104", "sL_ContLoss": "184051", "geom_point": "0101000020E61000003374799406DA5EC0856601878E544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40816311, 48.658721793000034 ], [ -123.410155994999982, 48.658727091000088 ], [ -123.410143717999958, 48.659934713000077 ], [ -123.410117698999983, 48.660357803000103 ], [ -123.409907496999935, 48.660851193000028 ], [ -123.409868789999962, 48.661061985000032 ], [ -123.409902484999932, 48.661409908000145 ], [ -123.41012990199998, 48.661909511000104 ], [ -123.410197210999982, 48.66221490100002 ], [ -123.410201096999941, 48.66258731000007 ], [ -123.409113495999961, 48.662587911000131 ], [ -123.408072089999948, 48.662588603000096 ], [ -123.407959587000022, 48.662586792000077 ], [ -123.40675240099992, 48.662593493000081 ], [ -123.405756647999951, 48.662593115000078 ], [ -123.40412590499993, 48.662592503000035 ], [ -123.403018505999981, 48.66083920800002 ], [ -123.402962474999981, 48.660503389000084 ], [ -123.402970284999938, 48.659944699000071 ], [ -123.402958525999949, 48.658732901000079 ], [ -123.404101787999963, 48.658728288000077 ], [ -123.405746201999989, 48.658709799000057 ], [ -123.407051396, 48.658719087000065 ], [ -123.407979810000015, 48.658726399000081 ], [ -123.40816311, 48.658721793000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200058969", "BldgCostT": "134955412", "sL_LossRatio": "0.748112893124375", "sL_AssetLoss": "1092148", "sL_BldgLoss": "817050", "sL_StrLoss": "404870", "sL_NStrLoss": "412180", "sL_ContLoss": "275098", "geom_point": "0101000020E61000001D6093F30DDA5EC0B33FED4320544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.408623791999958, 48.65532999800007 ], [ -123.410173507999986, 48.655329895000087 ], [ -123.410159509, 48.656199507000018 ], [ -123.410150293999962, 48.657057401000031 ], [ -123.410164996999967, 48.65789788700004 ], [ -123.410155994999982, 48.658727091000088 ], [ -123.40816311, 48.658721793000034 ], [ -123.407979810000015, 48.658726399000081 ], [ -123.407051396, 48.658719087000065 ], [ -123.405746201999989, 48.658709799000057 ], [ -123.404101787999963, 48.658728288000077 ], [ -123.402958525999949, 48.658732901000079 ], [ -123.402953209999964, 48.65816660600013 ], [ -123.402947701999906, 48.657897900000137 ], [ -123.402942613999969, 48.657055799000076 ], [ -123.405784488999984, 48.657056613000044 ], [ -123.405777599999965, 48.656198192000026 ], [ -123.40578980399999, 48.65533759800006 ], [ -123.406281983999961, 48.655336093000145 ], [ -123.407484789999927, 48.655332004000044 ], [ -123.408027894999989, 48.65533105500009 ], [ -123.408623791999958, 48.65532999800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132002113", "BldgCostT": "81966935", "sL_LossRatio": "0.846163358585947", "sL_AssetLoss": "314568.1", "sL_BldgLoss": "266176", "sL_StrLoss": "180966", "sL_NStrLoss": "85210", "sL_ContLoss": "48392.1", "geom_point": "0101000020E610000088A94FCDC0D95EC0573B0EACF8534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.400300687999959, 48.655339683000079 ], [ -123.400295918999987, 48.654970840000097 ], [ -123.40028583899999, 48.654197270000026 ], [ -123.400273211999945, 48.653224302000105 ], [ -123.401445365, 48.653220078000118 ], [ -123.402300407999945, 48.653216996000054 ], [ -123.402359085999962, 48.653823312000064 ], [ -123.402742506999942, 48.654417692000067 ], [ -123.402851680999945, 48.654725092000021 ], [ -123.402901596999968, 48.655343801000114 ], [ -123.403815118999944, 48.655341849000116 ], [ -123.404086230999951, 48.655341279000055 ], [ -123.40578980399999, 48.65533759800006 ], [ -123.405777599999965, 48.656198192000026 ], [ -123.405784488999984, 48.657056613000044 ], [ -123.402942613999969, 48.657055799000076 ], [ -123.402947701999906, 48.657897900000137 ], [ -123.402953209999964, 48.65816660600013 ], [ -123.402958525999949, 48.658732901000079 ], [ -123.402697719999964, 48.658734142000114 ], [ -123.401950810999949, 48.658737678000094 ], [ -123.401923661999945, 48.658737809000044 ], [ -123.401204043999925, 48.658741217000092 ], [ -123.400826508999927, 48.658742999000062 ], [ -123.400825076000032, 48.658080402000067 ], [ -123.40059440499999, 48.657054301000116 ], [ -123.400301596999967, 48.655409191000075 ], [ -123.40030115899998, 48.655375482000061 ], [ -123.400300687999959, 48.655339683000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71782844", "BldgCostT": "45173518", "sL_LossRatio": "0.755988659358022", "sL_AssetLoss": "461772.8", "sL_BldgLoss": "349095", "sL_StrLoss": "162530", "sL_NStrLoss": "186565", "sL_ContLoss": "112677.8", "geom_point": "0101000020E6100000B6DA68A5F5D95EC0436E5D9CBE534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.402300407999945, 48.653216996000054 ], [ -123.403714403999942, 48.653218084000102 ], [ -123.406287311999932, 48.653224107000014 ], [ -123.407493211999963, 48.653211098000035 ], [ -123.408638718999953, 48.653214704000028 ], [ -123.408631347999943, 48.654258065000064 ], [ -123.408623791999958, 48.65532999800007 ], [ -123.408027894999989, 48.65533105500009 ], [ -123.407484789999927, 48.655332004000044 ], [ -123.406281983999961, 48.655336093000145 ], [ -123.40578980399999, 48.65533759800006 ], [ -123.404086230999951, 48.655341279000055 ], [ -123.403815118999944, 48.655341849000116 ], [ -123.402901596999968, 48.655343801000114 ], [ -123.402851680999945, 48.654725092000021 ], [ -123.402742506999942, 48.654417692000067 ], [ -123.402359085999962, 48.653823312000064 ], [ -123.402300407999945, 48.653216996000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "652706076", "BldgCostT": "436559978", "sL_LossRatio": "0.794636492017935", "sL_AssetLoss": "1618754", "sL_BldgLoss": "1286321", "sL_StrLoss": "616541", "sL_NStrLoss": "669780", "sL_ContLoss": "332433", "geom_point": "0101000020E6100000F0E4B97CF3D95EC04773FA935B534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40663773199995, 48.64885019300003 ], [ -123.406931003999972, 48.648850496000072 ], [ -123.406980698999973, 48.64892819 ], [ -123.406989588000016, 48.64894209900006 ], [ -123.40701771599997, 48.648981083000088 ], [ -123.408181063000015, 48.650593786000037 ], [ -123.410059404999984, 48.653166625000104 ], [ -123.409648507999933, 48.653218489000011 ], [ -123.408638718999953, 48.653214704000028 ], [ -123.407493211999963, 48.653211098000035 ], [ -123.406287311999932, 48.653224107000014 ], [ -123.403714403999942, 48.653218084000102 ], [ -123.402300407999945, 48.653216996000054 ], [ -123.402313388999929, 48.652244611000043 ], [ -123.402316900999949, 48.650218198000076 ], [ -123.402356188999974, 48.648966105000042 ], [ -123.402357043999956, 48.648901246 ], [ -123.403719621000022, 48.648897549000125 ], [ -123.404953735999939, 48.648865197000127 ], [ -123.405537414999941, 48.64884989500009 ], [ -123.406155611999964, 48.648849695000123 ], [ -123.40663773199995, 48.64885019300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "281967429", "BldgCostT": "175247042", "sL_LossRatio": "0.655926167779419", "sL_AssetLoss": "1310864", "sL_BldgLoss": "859830", "sL_StrLoss": "354174", "sL_NStrLoss": "505656", "sL_ContLoss": "451034", "geom_point": "0101000020E61000007F0B0CD5A4D95EC023DAD83656534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.401601162999967, 48.648904411000089 ], [ -123.402357043999956, 48.648901246 ], [ -123.402356188999974, 48.648966105000042 ], [ -123.402316900999949, 48.650218198000076 ], [ -123.402313388999929, 48.652244611000043 ], [ -123.402300407999945, 48.653216996000054 ], [ -123.401445365, 48.653220078000118 ], [ -123.400273211999945, 48.653224302000105 ], [ -123.400006046999948, 48.653224180000073 ], [ -123.399029989999946, 48.653223698000062 ], [ -123.399045975999968, 48.65170963300006 ], [ -123.39905137599996, 48.651193205000055 ], [ -123.39904679199995, 48.6502221900001 ], [ -123.39905409499994, 48.64893769500005 ], [ -123.39999939099999, 48.648937176000047 ], [ -123.400314784000017, 48.648936984000088 ], [ -123.400588810999935, 48.648933790000093 ], [ -123.400657993, 48.648908414000097 ], [ -123.401601162999967, 48.648904411000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "411066945", "BldgCostT": "266299830", "sL_LossRatio": "0.700009069273118", "sL_AssetLoss": "378200.1", "sL_BldgLoss": "264743.5", "sL_StrLoss": "142319", "sL_NStrLoss": "122424.5", "sL_ContLoss": "113456.6", "geom_point": "0101000020E6100000EC31263769D95EC0A29FEC3D47534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.396950181999898, 48.652319445000089 ], [ -123.396949728999957, 48.652261775000042 ], [ -123.396862614999961, 48.652259644000011 ], [ -123.396806620999968, 48.652221404000038 ], [ -123.396503507, 48.651457996000062 ], [ -123.395944605999944, 48.651351207000125 ], [ -123.395818605, 48.65080291200011 ], [ -123.395547282999942, 48.65075019300005 ], [ -123.395383522999921, 48.650597800000099 ], [ -123.395068885999962, 48.65048239800003 ], [ -123.394417412999957, 48.650412594000066 ], [ -123.393594599, 48.649263288000057 ], [ -123.39347141099995, 48.649219188000082 ], [ -123.393604801999928, 48.648967107000018 ], [ -123.393720155999958, 48.648920319000077 ], [ -123.393839392999951, 48.648915117000115 ], [ -123.394239694999897, 48.648898378000041 ], [ -123.39433985699999, 48.648876495000081 ], [ -123.395074332999968, 48.648930553000099 ], [ -123.395319901999983, 48.648927508000014 ], [ -123.396562394999933, 48.648937186000069 ], [ -123.397762599999922, 48.648928689000115 ], [ -123.39905409499994, 48.64893769500005 ], [ -123.39904679199995, 48.6502221900001 ], [ -123.39905137599996, 48.651193205000055 ], [ -123.399045975999968, 48.65170963300006 ], [ -123.399029989999946, 48.653223698000062 ], [ -123.397785488999929, 48.653222106000065 ], [ -123.397271273999962, 48.653218548000055 ], [ -123.396982572999931, 48.653216632000102 ], [ -123.397124506999916, 48.65290359800013 ], [ -123.397121595999963, 48.652436504000065 ], [ -123.396950181999898, 48.652319445000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "670368711", "BldgCostT": "429264178", "sL_LossRatio": "0.68858588928935", "sL_AssetLoss": "580330.8", "sL_BldgLoss": "399607.6", "sL_StrLoss": "196623.6", "sL_NStrLoss": "202984", "sL_ContLoss": "180723.2", "geom_point": "0101000020E6100000BF72D5C07FD95EC095AC1764C7524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.399060212000037, 48.644490778000019 ], [ -123.400295339999929, 48.64448053900005 ], [ -123.400296911999988, 48.645630001000072 ], [ -123.400303289999954, 48.646790317000089 ], [ -123.400307584999936, 48.647645018000112 ], [ -123.400314784000017, 48.648936984000088 ], [ -123.39999939099999, 48.648937176000047 ], [ -123.39905409499994, 48.64893769500005 ], [ -123.397762599999922, 48.648928689000115 ], [ -123.396562394999933, 48.648937186000069 ], [ -123.39655228899997, 48.64764971600011 ], [ -123.396548094999929, 48.646795911000041 ], [ -123.396546793, 48.646721005000074 ], [ -123.396542411999988, 48.64562380300007 ], [ -123.396561691999949, 48.645078885000032 ], [ -123.396479895999946, 48.644965969000033 ], [ -123.396167489999982, 48.644854660000142 ], [ -123.396513893999938, 48.644620657000125 ], [ -123.396586867999957, 48.644596433000032 ], [ -123.39672376399993, 48.644550966000075 ], [ -123.397060984999939, 48.64450783100007 ], [ -123.397765062999937, 48.644501564000045 ], [ -123.397817722999946, 48.644501099000131 ], [ -123.399000276999928, 48.644491283000036 ], [ -123.399060212000037, 48.644490778000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "324950130", "BldgCostT": "204890170", "sL_LossRatio": "0.715543490139014", "sL_AssetLoss": "869335", "sL_BldgLoss": "622047", "sL_StrLoss": "290401", "sL_NStrLoss": "331646", "sL_ContLoss": "247288", "geom_point": "0101000020E610000011BFFFE29BD95EC0809632993F524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393720155999958, 48.648920319000077 ], [ -123.393875309999956, 48.648857389000128 ], [ -123.393997595999949, 48.648695010000111 ], [ -123.39394031099999, 48.648407403000078 ], [ -123.393585400999925, 48.648283506000034 ], [ -123.393489299999928, 48.648166701000079 ], [ -123.393585180999963, 48.646601780000083 ], [ -123.393647018999943, 48.64660156900009 ], [ -123.393643533999949, 48.646153818000052 ], [ -123.394353584999976, 48.64564440300007 ], [ -123.395650695999976, 48.64490239800007 ], [ -123.398133490999939, 48.642897112000036 ], [ -123.39929189899999, 48.641803300000042 ], [ -123.400097629999962, 48.640911736000149 ], [ -123.400525805999933, 48.640910247000143 ], [ -123.400522099999932, 48.640442030000088 ], [ -123.400831613999955, 48.640099525000039 ], [ -123.400926618999947, 48.640099194000136 ], [ -123.400925794999978, 48.639995303000042 ], [ -123.401135000999915, 48.639763795000093 ], [ -123.401630911999931, 48.63928708200006 ], [ -123.401640968, 48.639287047000074 ], [ -123.401641529999907, 48.639276874000068 ], [ -123.403182380999965, 48.637795599000057 ], [ -123.403292111999974, 48.637661959000084 ], [ -123.403350585999945, 48.637661754000042 ], [ -123.403350023999906, 48.637591430000043 ], [ -123.405143383999956, 48.635407219000058 ], [ -123.405338768999954, 48.635497463000036 ], [ -123.40539325499999, 48.63550167300005 ], [ -123.405783591000016, 48.635531992000089 ], [ -123.40476410499997, 48.636645801000029 ], [ -123.404066026999914, 48.637372130000067 ], [ -123.403391011999986, 48.638074486000029 ], [ -123.403728561999984, 48.638076724000058 ], [ -123.405419077999937, 48.638087894000051 ], [ -123.40596735099993, 48.63808245600007 ], [ -123.406265934999951, 48.638079490000059 ], [ -123.407047796999947, 48.638071687000021 ], [ -123.406944801999984, 48.638711004000101 ], [ -123.40670258899999, 48.639417298000126 ], [ -123.406594417999969, 48.639534605000058 ], [ -123.406442724999948, 48.63963180800009 ], [ -123.40622469600001, 48.639701395000074 ], [ -123.405408402999981, 48.639708514000098 ], [ -123.405390009999962, 48.64127120800002 ], [ -123.40448479199992, 48.641268093000086 ], [ -123.403658392999944, 48.641261395000079 ], [ -123.402840794, 48.641291088000123 ], [ -123.401230418999944, 48.641294099000085 ], [ -123.400396692999934, 48.641296299000096 ], [ -123.40036720499999, 48.641412692000117 ], [ -123.400320824999952, 48.643392499000115 ], [ -123.400311938999963, 48.643770215000053 ], [ -123.400295339999929, 48.64448053900005 ], [ -123.399060212000037, 48.644490778000019 ], [ -123.399000276999928, 48.644491283000036 ], [ -123.397817722999946, 48.644501099000131 ], [ -123.397765062999937, 48.644501564000045 ], [ -123.397060984999939, 48.64450783100007 ], [ -123.39672376399993, 48.644550966000075 ], [ -123.396586867999957, 48.644596433000032 ], [ -123.396513893999938, 48.644620657000125 ], [ -123.396167489999982, 48.644854660000142 ], [ -123.396479895999946, 48.644965969000033 ], [ -123.396561691999949, 48.645078885000032 ], [ -123.396542411999988, 48.64562380300007 ], [ -123.396546793, 48.646721005000074 ], [ -123.396548094999929, 48.646795911000041 ], [ -123.39655228899997, 48.64764971600011 ], [ -123.396562394999933, 48.648937186000069 ], [ -123.395319901999983, 48.648927508000014 ], [ -123.395074332999968, 48.648930553000099 ], [ -123.39433985699999, 48.648876495000081 ], [ -123.394239694999897, 48.648898378000041 ], [ -123.393839392999951, 48.648915117000115 ], [ -123.393720155999958, 48.648920319000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "381724053", "BldgCostT": "234511405", "sL_LossRatio": "0.736453904808356", "sL_AssetLoss": "2034678.6", "sL_BldgLoss": "1498447", "sL_StrLoss": "710325", "sL_NStrLoss": "788122", "sL_ContLoss": "536231.6", "geom_point": "0101000020E610000080E0BFB3DCD95EC08616EAFA4F524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.406944801999984, 48.638711004000101 ], [ -123.407047796999947, 48.638071687000021 ], [ -123.406265934999951, 48.638079490000059 ], [ -123.40596735099993, 48.63808245600007 ], [ -123.405419077999937, 48.638087894000051 ], [ -123.403728561999984, 48.638076724000058 ], [ -123.403391011999986, 48.638074486000029 ], [ -123.404066026999914, 48.637372130000067 ], [ -123.40476410499997, 48.636645801000029 ], [ -123.405783591000016, 48.635531992000089 ], [ -123.409608066999951, 48.635483711000063 ], [ -123.408466537, 48.637825820000081 ], [ -123.40700296199999, 48.640828246000098 ], [ -123.406979161999942, 48.640877065000062 ], [ -123.40676858499998, 48.641308727000059 ], [ -123.40653944799999, 48.641778428000059 ], [ -123.405696527999979, 48.643506295000151 ], [ -123.405438392999912, 48.644031802000022 ], [ -123.405351829, 48.644265711000116 ], [ -123.405251650999929, 48.644536442000103 ], [ -123.40517090299997, 48.644754614000085 ], [ -123.405129234999919, 48.645256113000052 ], [ -123.405118518, 48.645385298000029 ], [ -123.405145179999948, 48.645716132000139 ], [ -123.405149094999956, 48.645764610000157 ], [ -123.405335496999925, 48.646390305000132 ], [ -123.40544947799999, 48.646587045000111 ], [ -123.405729688999941, 48.647070633000077 ], [ -123.405894980999932, 48.647355893000068 ], [ -123.406931003999972, 48.648850496000072 ], [ -123.40663773199995, 48.64885019300003 ], [ -123.406155611999964, 48.648849695000123 ], [ -123.405537414999941, 48.64884989500009 ], [ -123.404953735999939, 48.648865197000127 ], [ -123.403719621000022, 48.648897549000125 ], [ -123.402357043999956, 48.648901246 ], [ -123.401601162999967, 48.648904411000089 ], [ -123.400657993, 48.648908414000097 ], [ -123.400588810999935, 48.648933790000093 ], [ -123.400314784000017, 48.648936984000088 ], [ -123.400307584999936, 48.647645018000112 ], [ -123.400303289999954, 48.646790317000089 ], [ -123.400296911999988, 48.645630001000072 ], [ -123.400295339999929, 48.64448053900005 ], [ -123.400311938999963, 48.643770215000053 ], [ -123.400320824999952, 48.643392499000115 ], [ -123.40036720499999, 48.641412692000117 ], [ -123.400396692999934, 48.641296299000096 ], [ -123.401230418999944, 48.641294099000085 ], [ -123.402840794, 48.641291088000123 ], [ -123.403658392999944, 48.641261395000079 ], [ -123.40448479199992, 48.641268093000086 ], [ -123.405390009999962, 48.64127120800002 ], [ -123.405408402999981, 48.639708514000098 ], [ -123.40622469600001, 48.639701395000074 ], [ -123.406442724999948, 48.63963180800009 ], [ -123.406594417999969, 48.639534605000058 ], [ -123.40670258899999, 48.639417298000126 ], [ -123.406944801999984, 48.638711004000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98603560", "BldgCostT": "61093189", "sL_LossRatio": "0.679393914788336", "sL_AssetLoss": "812823", "sL_BldgLoss": "552227", "sL_StrLoss": "240577", "sL_NStrLoss": "311650", "sL_ContLoss": "260596", "geom_point": "0101000020E610000095B45D995EDA5EC0E3884A5D11534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.408181063000015, 48.650593786000037 ], [ -123.40701771599997, 48.648981083000088 ], [ -123.406989588000016, 48.64894209900006 ], [ -123.406980698999973, 48.64892819 ], [ -123.406931003999972, 48.648850496000072 ], [ -123.407058593999935, 48.648850503000041 ], [ -123.407151876999933, 48.648850497000112 ], [ -123.408212768999974, 48.648857382000102 ], [ -123.408509777999953, 48.648859288000025 ], [ -123.409333239999938, 48.64887300400008 ], [ -123.409575980999989, 48.648132478 ], [ -123.409562760000014, 48.647954573000071 ], [ -123.409480611, 48.647772264000011 ], [ -123.40928775899999, 48.647581887000044 ], [ -123.408964837, 48.647414449000081 ], [ -123.406940619999915, 48.647076682000034 ], [ -123.406777185999943, 48.647016742000048 ], [ -123.406645627999964, 48.646968511000118 ], [ -123.40640549299998, 48.646824749000068 ], [ -123.406234223999959, 48.646660999000041 ], [ -123.406111027999955, 48.646461495000068 ], [ -123.405704672999946, 48.645595162000085 ], [ -123.405664498999954, 48.645389558 ], [ -123.405707943, 48.645167049000051 ], [ -123.405854841999925, 48.644936248000079 ], [ -123.406068687999905, 48.644745828000012 ], [ -123.40615415799999, 48.64470078000015 ], [ -123.406356277999919, 48.644594198000092 ], [ -123.40678051899998, 48.644496351000079 ], [ -123.40701, 48.644495386000074 ], [ -123.407473324999984, 48.644493410000059 ], [ -123.410813600999973, 48.644487299000062 ], [ -123.411503716, 48.644479577 ], [ -123.412643962999951, 48.64446679000006 ], [ -123.412772011999934, 48.644465355000072 ], [ -123.412773481, 48.64464541400006 ], [ -123.411551706999916, 48.644649786000066 ], [ -123.411553901999952, 48.644919664000078 ], [ -123.411146641999935, 48.644921117000059 ], [ -123.411148835999981, 48.645190996000053 ], [ -123.411556099, 48.64518954199999 ], [ -123.411558294999949, 48.645459420000044 ], [ -123.413187353999945, 48.645453588000088 ], [ -123.41319176199994, 48.645993344000082 ], [ -123.414006301, 48.645990418000082 ], [ -123.414008509, 48.646260297000097 ], [ -123.415230322999932, 48.646255898000028 ], [ -123.415232537999913, 48.646525777000065 ], [ -123.416047084999946, 48.646522838000109 ], [ -123.416031544999939, 48.644633692000134 ], [ -123.415624287999918, 48.644635162000064 ], [ -123.415622628999927, 48.644433355000018 ], [ -123.41606459299993, 48.644428387000097 ], [ -123.416774599999911, 48.644420407000077 ], [ -123.416808087999982, 48.645169413000147 ], [ -123.41679328699999, 48.645759499000079 ], [ -123.416896627999989, 48.645820814000061 ], [ -123.416825350999957, 48.650272890000039 ], [ -123.416818405999919, 48.650289996000062 ], [ -123.416781089999958, 48.650549604000012 ], [ -123.41681899699995, 48.650670737000056 ], [ -123.416838792999968, 48.650734006000071 ], [ -123.416835337999927, 48.65175478700008 ], [ -123.416830691999934, 48.653116989000054 ], [ -123.416830272999945, 48.653235295000101 ], [ -123.41239797899999, 48.653215990000042 ], [ -123.411193953999913, 48.653202833000137 ], [ -123.411054011999951, 48.653201305000039 ], [ -123.410257363999932, 48.653173527000021 ], [ -123.410059404999984, 48.653166625000104 ], [ -123.408181063000015, 48.650593786000037 ] ], [ [ -123.415659772999916, 48.648953209000076 ], [ -123.415650900999978, 48.647873698000069 ], [ -123.414836332999954, 48.647876635000053 ], [ -123.414834119, 48.647606756000087 ], [ -123.414019554999939, 48.647609687000063 ], [ -123.41401734599999, 48.647339810000105 ], [ -123.412795506999927, 48.647344195000052 ], [ -123.412793305, 48.647074316000023 ], [ -123.411978749999932, 48.647077233000076 ], [ -123.411976550999938, 48.646807355000085 ], [ -123.411162, 48.646810265000092 ], [ -123.411157610999979, 48.646270509000061 ], [ -123.410343069999954, 48.646273413000081 ], [ -123.410345258999939, 48.646543291000079 ], [ -123.409937984999914, 48.646544742000053 ], [ -123.409953296999973, 48.648433889000046 ], [ -123.410767874999962, 48.648430987000076 ], [ -123.410770065999913, 48.648700865000066 ], [ -123.412806521000036, 48.648693585000039 ], [ -123.41280872399993, 48.648963463000037 ], [ -123.413623308999973, 48.648960541000051 ], [ -123.413625516, 48.649230418000094 ], [ -123.414032811999988, 48.649228955000105 ], [ -123.414035021999936, 48.649498833000081 ], [ -123.414442318999974, 48.649497369000102 ], [ -123.414437894999963, 48.648957612000103 ], [ -123.415659772999916, 48.648953209000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154549916", "BldgCostT": "98456666", "sL_LossRatio": "0.759881188161005", "sL_AssetLoss": "938627", "sL_BldgLoss": "713245", "sL_StrLoss": "394238", "sL_NStrLoss": "319007", "sL_ContLoss": "225382", "geom_point": "0101000020E61000004B349B097EDA5EC012A4296D37524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.410813600999973, 48.644487299000062 ], [ -123.41084520299999, 48.644183405000042 ], [ -123.410823788999977, 48.643933088 ], [ -123.410637712, 48.643323692000124 ], [ -123.410633403999952, 48.642908900000066 ], [ -123.410620115999961, 48.642485805000014 ], [ -123.41062250499999, 48.642476169000041 ], [ -123.410657710999985, 48.642334404000067 ], [ -123.410679287999983, 48.642247496000074 ], [ -123.410802480999934, 48.642102597000125 ], [ -123.410843992999943, 48.641963005000051 ], [ -123.410855312999942, 48.641289898000082 ], [ -123.411650485999971, 48.641298399000036 ], [ -123.411707206999907, 48.640637190000049 ], [ -123.411881607999959, 48.640372789000054 ], [ -123.412289197999939, 48.640159106000112 ], [ -123.414973306999968, 48.640148686000025 ], [ -123.416183813999979, 48.640121295000114 ], [ -123.416943705999969, 48.640105492000089 ], [ -123.417502083999977, 48.640130769000024 ], [ -123.417408866999907, 48.640347553000026 ], [ -123.417387384999969, 48.640400650000167 ], [ -123.4173260099999, 48.64055227700004 ], [ -123.417021584999986, 48.641304485000049 ], [ -123.417007907999917, 48.641362398000133 ], [ -123.416746312999976, 48.64246798900011 ], [ -123.416660811999918, 48.642790410000018 ], [ -123.416620995999935, 48.643145487000105 ], [ -123.416667803999985, 48.643725408000087 ], [ -123.41675657899998, 48.644303029000071 ], [ -123.416774599999911, 48.644420407000077 ], [ -123.41606459299993, 48.644428387000097 ], [ -123.415622628999927, 48.644433355000018 ], [ -123.415622539999944, 48.644422600000084 ], [ -123.413943737999958, 48.644420561000111 ], [ -123.413947337999957, 48.644371315000107 ], [ -123.412771280999962, 48.644375535000151 ], [ -123.412772011999934, 48.644465355000072 ], [ -123.412643962999951, 48.64446679000006 ], [ -123.411503716, 48.644479577 ], [ -123.410813600999973, 48.644487299000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152885727", "BldgCostT": "97664856", "sL_LossRatio": "0.798471537248029", "sL_AssetLoss": "718133.3", "sL_BldgLoss": "573409", "sL_StrLoss": "339333", "sL_NStrLoss": "234076", "sL_ContLoss": "144724.3", "geom_point": "0101000020E6100000A9174BAA99DA5EC073687850DC504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.417190932999986, 48.635664595000073 ], [ -123.417094159999962, 48.635388067000072 ], [ -123.410806663999935, 48.635468432000067 ], [ -123.409784071999965, 48.635481450000022 ], [ -123.409608066999951, 48.635483711000063 ], [ -123.405783591000016, 48.635531992000089 ], [ -123.40646904, 48.63480934600009 ], [ -123.406739879999975, 48.634523774000051 ], [ -123.40700658499999, 48.634242629000099 ], [ -123.407013783999943, 48.634235002000061 ], [ -123.40713466399994, 48.634149627000099 ], [ -123.407154506999959, 48.634135600000043 ], [ -123.407174348999959, 48.634121571000044 ], [ -123.407377593999954, 48.633977990000076 ], [ -123.407604973999966, 48.633841711000045 ], [ -123.407891704999912, 48.633669825000027 ], [ -123.408302597999963, 48.63342349100003 ], [ -123.408752105999952, 48.633060394000033 ], [ -123.409825578, 48.632022806000172 ], [ -123.410126300999977, 48.631556815000046 ], [ -123.410170388999944, 48.63146352899999 ], [ -123.41025121399997, 48.631292486000113 ], [ -123.410267419999926, 48.631258204000048 ], [ -123.410482839999972, 48.630609537000097 ], [ -123.410686509999934, 48.629996410000111 ], [ -123.412038246999899, 48.629982437000045 ], [ -123.412132034999928, 48.629981909000072 ], [ -123.412245641999931, 48.629981186000045 ], [ -123.413376503999984, 48.629992474000069 ], [ -123.416439188999931, 48.629988498000074 ], [ -123.416347896999923, 48.629848317000103 ], [ -123.416115156999979, 48.629282416000102 ], [ -123.415998911999949, 48.628999698000015 ], [ -123.415929410999951, 48.62871628800012 ], [ -123.41564680099999, 48.627564003000025 ], [ -123.415036414, 48.62456518300008 ], [ -123.416556385999954, 48.624568793000051 ], [ -123.417328300999955, 48.624575820000096 ], [ -123.418545106999915, 48.624573810000051 ], [ -123.4190015, 48.625196097000085 ], [ -123.419825004999964, 48.62636279400008 ], [ -123.420013409999967, 48.626757692000112 ], [ -123.420119501999949, 48.627293998000027 ], [ -123.42019893599999, 48.628128064000094 ], [ -123.420375812999964, 48.629984909000065 ], [ -123.420429601999942, 48.630537890000099 ], [ -123.420429289999973, 48.63087935100004 ], [ -123.420427586999907, 48.632749206000085 ], [ -123.422792392999952, 48.632747892000097 ], [ -123.423004249999977, 48.63364277900012 ], [ -123.420514119999922, 48.633643761 ], [ -123.420771040999966, 48.634321587000045 ], [ -123.420805261999988, 48.634637043000083 ], [ -123.42072830599993, 48.634854244000067 ], [ -123.420612205999987, 48.634981575000097 ], [ -123.420519232999951, 48.635083542000146 ], [ -123.420370504999966, 48.635077235000047 ], [ -123.420234405999963, 48.635112695000011 ], [ -123.420174581999959, 48.635190575000081 ], [ -123.420163626999937, 48.635291272000082 ], [ -123.420266466999948, 48.635368594000091 ], [ -123.420092245999967, 48.635569691000114 ], [ -123.419543103, 48.636203481000031 ], [ -123.418696690999951, 48.637180366000123 ], [ -123.418382671999936, 48.637790249 ], [ -123.417960066999939, 48.638947414000071 ], [ -123.417999359999925, 48.638403046000128 ], [ -123.41795369099999, 48.638075535000034 ], [ -123.417785782999914, 48.637380914000126 ], [ -123.417724645999925, 48.637202485000046 ], [ -123.417510071999985, 48.636576416000047 ], [ -123.417190932999986, 48.635664595000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207397167", "BldgCostT": "136226667", "sL_LossRatio": "0.799023253704261", "sL_AssetLoss": "1148629.9", "sL_BldgLoss": "917782", "sL_StrLoss": "540964", "sL_NStrLoss": "376818", "sL_ContLoss": "230847.9", "geom_point": "0101000020E6100000FE37C36871DA5EC0A4828239974F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.407341211999949, 48.624872297000053 ], [ -123.40658369399992, 48.62359761500003 ], [ -123.406141280999933, 48.6225636980001 ], [ -123.405922318999927, 48.622384201000116 ], [ -123.405548015999912, 48.621370205000105 ], [ -123.405151661999966, 48.621045476000063 ], [ -123.405253594999948, 48.621047964000105 ], [ -123.405252586999922, 48.620922098000072 ], [ -123.405002146999934, 48.620922979000099 ], [ -123.404946514999921, 48.620877400000069 ], [ -123.40484383499998, 48.620712898000093 ], [ -123.404843360999976, 48.620653650000094 ], [ -123.404806932999918, 48.620653778000047 ], [ -123.404134582999973, 48.619576591000083 ], [ -123.404834728999958, 48.619574132000068 ], [ -123.404832568999936, 48.619304252000099 ], [ -123.404425514999971, 48.619305681000071 ], [ -123.404423359999925, 48.61903580300006 ], [ -123.403748777999922, 48.619038169000092 ], [ -123.403012915999938, 48.618319500000098 ], [ -123.402231089999958, 48.617080396000084 ], [ -123.400741194, 48.615710404000041 ], [ -123.400215692999936, 48.614605190000113 ], [ -123.398469185999915, 48.612143596000067 ], [ -123.398502377999975, 48.61212488300005 ], [ -123.398528374999898, 48.612123377000053 ], [ -123.39899539799994, 48.612113953000055 ], [ -123.400003613999914, 48.612100402000095 ], [ -123.399948704999971, 48.612309086000032 ], [ -123.39993482, 48.612439506000023 ], [ -123.400072124999937, 48.612660224000074 ], [ -123.400212221999979, 48.612885278000107 ], [ -123.400869921999941, 48.613706445000084 ], [ -123.402224435999969, 48.615427205000067 ], [ -123.403157911999983, 48.615474344000127 ], [ -123.40347808300001, 48.615564212000031 ], [ -123.403751394999958, 48.615766496000077 ], [ -123.404095969999958, 48.616076950000057 ], [ -123.406466012999928, 48.619090525000146 ], [ -123.406467672999909, 48.619092612000031 ], [ -123.406631269999949, 48.619097232000065 ], [ -123.406626284999959, 48.619090852000035 ], [ -123.404846972999934, 48.616811076 ], [ -123.404281079999976, 48.61608596000012 ], [ -123.404085219999942, 48.615731386000093 ], [ -123.404110326999927, 48.615570626000057 ], [ -123.404251315999943, 48.615470391 ], [ -123.404924686999948, 48.615468815000042 ], [ -123.406012639999986, 48.615465599000061 ], [ -123.40775491, 48.615512587000119 ], [ -123.40950208799994, 48.615517298000107 ], [ -123.411404777999948, 48.615527589000116 ], [ -123.411652794999952, 48.615995213000062 ], [ -123.412021427999946, 48.616362109000079 ], [ -123.412963814999927, 48.616961991000053 ], [ -123.41375310599993, 48.617389599000077 ], [ -123.413768182999959, 48.617472982000059 ], [ -123.414029589999956, 48.618918103000063 ], [ -123.414110600999976, 48.619046207000075 ], [ -123.414308416999972, 48.619120504000051 ], [ -123.414558112999913, 48.619117939000056 ], [ -123.416578886999943, 48.619097199000095 ], [ -123.416508987, 48.618666404000109 ], [ -123.416545899999946, 48.617499798000047 ], [ -123.420173165, 48.617536524000045 ], [ -123.420443993999982, 48.617538608000139 ], [ -123.423210088999966, 48.617567799 ], [ -123.424184700999916, 48.617581502000114 ], [ -123.424174007999937, 48.619436492000077 ], [ -123.424146605999951, 48.619566602000063 ], [ -123.42369980299999, 48.620378806000076 ], [ -123.423629372999969, 48.620674594000022 ], [ -123.423758285999966, 48.621215893000077 ], [ -123.423930813999974, 48.621479805000078 ], [ -123.424936509, 48.622364096000119 ], [ -123.425044508999974, 48.622545301000052 ], [ -123.425092004999954, 48.622839413000079 ], [ -123.424993285999932, 48.623158810000035 ], [ -123.424761998999941, 48.623424609000097 ], [ -123.42464982099996, 48.623494010000094 ], [ -123.424274385, 48.623817602000017 ], [ -123.424051874999947, 48.624143902000093 ], [ -123.423980420999968, 48.624410801000096 ], [ -123.423960496999896, 48.625196487000082 ], [ -123.422976610999939, 48.625196052000099 ], [ -123.42282642299989, 48.625196004000081 ], [ -123.422080987999934, 48.625196027000058 ], [ -123.4190015, 48.625196097000085 ], [ -123.418545106999915, 48.624573810000051 ], [ -123.417328300999955, 48.624575820000096 ], [ -123.416556385999954, 48.624568793000051 ], [ -123.415036414, 48.62456518300008 ], [ -123.41564680099999, 48.627564003000025 ], [ -123.415929410999951, 48.62871628800012 ], [ -123.415998911999949, 48.628999698000015 ], [ -123.416115156999979, 48.629282416000102 ], [ -123.416347896999923, 48.629848317000103 ], [ -123.416439188999931, 48.629988498000074 ], [ -123.413376503999984, 48.629992474000069 ], [ -123.412245641999931, 48.629981186000045 ], [ -123.412132034999928, 48.629981909000072 ], [ -123.412038246999899, 48.629982437000045 ], [ -123.410686509999934, 48.629996410000111 ], [ -123.410482839999972, 48.630609537000097 ], [ -123.410267419999926, 48.631258204000048 ], [ -123.41025121399997, 48.631292486000113 ], [ -123.410170388999944, 48.63146352899999 ], [ -123.410126300999977, 48.631556815000046 ], [ -123.409825578, 48.632022806000172 ], [ -123.408752105999952, 48.633060394000033 ], [ -123.408302597999963, 48.63342349100003 ], [ -123.407891704999912, 48.633669825000027 ], [ -123.407604973999966, 48.633841711000045 ], [ -123.407377593999954, 48.633977990000076 ], [ -123.407174348999959, 48.634121571000044 ], [ -123.407154506999959, 48.634135600000043 ], [ -123.40713466399994, 48.634149627000099 ], [ -123.407013783999943, 48.634235002000061 ], [ -123.40700658499999, 48.634242629000099 ], [ -123.406739879999975, 48.634523774000051 ], [ -123.40646904, 48.63480934600009 ], [ -123.405783591000016, 48.635531992000089 ], [ -123.40539325499999, 48.63550167300005 ], [ -123.405338768999954, 48.635497463000036 ], [ -123.405143383999956, 48.635407219000058 ], [ -123.406085800999946, 48.634259311000037 ], [ -123.406545998999889, 48.633960192000067 ], [ -123.40689850699999, 48.633887503000061 ], [ -123.407138407999938, 48.633481583000084 ], [ -123.408352290999943, 48.632433411000115 ], [ -123.409023212999898, 48.631667188000037 ], [ -123.409237601999919, 48.631171604000045 ], [ -123.409867000999952, 48.630242990000056 ], [ -123.410225598999929, 48.629287305000048 ], [ -123.410287205, 48.62831599500003 ], [ -123.410121206999946, 48.628101009000019 ], [ -123.409937487999969, 48.627210891000061 ], [ -123.409396298999965, 48.625763906000046 ], [ -123.409191187999937, 48.625486095000142 ], [ -123.408903905999949, 48.62531668400009 ], [ -123.407831207999934, 48.625067398000056 ], [ -123.407341211999949, 48.624872297000053 ] ], [ [ -123.407277067999928, 48.619565521000048 ], [ -123.407274896999951, 48.619295642000068 ], [ -123.406867842999972, 48.619297080000067 ], [ -123.406870011999928, 48.619566960000014 ], [ -123.407277067999928, 48.619565521000048 ], [ -123.407281587999975, 48.620127442000069 ], [ -123.407283582999952, 48.620375159000119 ], [ -123.407475895999966, 48.620374479000056 ], [ -123.408097706999968, 48.620372278000048 ], [ -123.408103119999979, 48.621043495000038 ], [ -123.410938862999956, 48.621112575000062 ], [ -123.410924036999972, 48.621382191000066 ], [ -123.411050527999919, 48.621385271000065 ], [ -123.411067131999971, 48.621083308000038 ], [ -123.412882051999929, 48.621127478000055 ], [ -123.412884460999962, 48.621083652000017 ], [ -123.413426196999964, 48.621096831000081 ], [ -123.413486603999957, 48.619997173000058 ], [ -123.412572292, 48.619974930000069 ], [ -123.412577599999949, 48.620626204000125 ], [ -123.410542273999937, 48.620633476000094 ], [ -123.410533519999959, 48.619553959000058 ], [ -123.40890529499994, 48.619559751000089 ], [ -123.408903114999973, 48.619289871000035 ], [ -123.408496058999972, 48.619291317000091 ], [ -123.408498238999982, 48.619561197000102 ], [ -123.407277067999928, 48.619565521000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116872584", "BldgCostT": "78713334", "sL_LossRatio": "0.802360814176071", "sL_AssetLoss": "715177", "sL_BldgLoss": "573830", "sL_StrLoss": "327076", "sL_NStrLoss": "246754", "sL_ContLoss": "141347", "geom_point": "0101000020E6100000DEEEE53E39DA5EC06E1AC2CEA04E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.402224435999969, 48.615427205000067 ], [ -123.400869921999941, 48.613706445000084 ], [ -123.400212221999979, 48.612885278000107 ], [ -123.400072124999937, 48.612660224000074 ], [ -123.39993482, 48.612439506000023 ], [ -123.399948704999971, 48.612309086000032 ], [ -123.400003613999914, 48.612100402000095 ], [ -123.400409495999924, 48.612108492000111 ], [ -123.40102148299998, 48.612138796000139 ], [ -123.401182221999974, 48.612126796000091 ], [ -123.404432683999943, 48.6118840990001 ], [ -123.406347705999949, 48.611874811000064 ], [ -123.408347078999952, 48.61186509500002 ], [ -123.418104209999925, 48.611949052000099 ], [ -123.418065664999986, 48.611983214000141 ], [ -123.417802898999952, 48.612215890000066 ], [ -123.417516400999943, 48.612376690000097 ], [ -123.417377803999941, 48.612432988000123 ], [ -123.4170067109999, 48.612583654000098 ], [ -123.416825083, 48.61265740400011 ], [ -123.416471492999946, 48.612856098000051 ], [ -123.416270705999949, 48.613010783000071 ], [ -123.416078691999971, 48.613300904000035 ], [ -123.416054874999986, 48.613390309000067 ], [ -123.415911406999953, 48.613928802000082 ], [ -123.415830287999952, 48.614223499 ], [ -123.415843980999909, 48.614589799000115 ], [ -123.41625160199996, 48.615432691000052 ], [ -123.416411895999957, 48.615843207000054 ], [ -123.416406208999945, 48.616712997000043 ], [ -123.416553193999988, 48.617293601000036 ], [ -123.416545899999946, 48.617499798000047 ], [ -123.416508987, 48.618666404000109 ], [ -123.416578886999943, 48.619097199000095 ], [ -123.414558112999913, 48.619117939000056 ], [ -123.414308416999972, 48.619120504000051 ], [ -123.414110600999976, 48.619046207000075 ], [ -123.414029589999956, 48.618918103000063 ], [ -123.413768182999959, 48.617472982000059 ], [ -123.41375310599993, 48.617389599000077 ], [ -123.412963814999927, 48.616961991000053 ], [ -123.412021427999946, 48.616362109000079 ], [ -123.411652794999952, 48.615995213000062 ], [ -123.411404777999948, 48.615527589000116 ], [ -123.40950208799994, 48.615517298000107 ], [ -123.40775491, 48.615512587000119 ], [ -123.406012639999986, 48.615465599000061 ], [ -123.404924686999948, 48.615468815000042 ], [ -123.404251315999943, 48.615470391 ], [ -123.404110326999927, 48.615570626000057 ], [ -123.404085219999942, 48.615731386000093 ], [ -123.404281079999976, 48.61608596000012 ], [ -123.404846972999934, 48.616811076 ], [ -123.406626284999959, 48.619090852000035 ], [ -123.406631269999949, 48.619097232000065 ], [ -123.406467672999909, 48.619092612000031 ], [ -123.406466012999928, 48.619090525000146 ], [ -123.404095969999958, 48.616076950000057 ], [ -123.403751394999958, 48.615766496000077 ], [ -123.40347808300001, 48.615564212000031 ], [ -123.403157911999983, 48.615474344000127 ], [ -123.402224435999969, 48.615427205000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155640500", "BldgCostT": "103445000", "sL_LossRatio": "0.905430775641736", "sL_AssetLoss": "296847.1", "sL_BldgLoss": "268774.5", "sL_StrLoss": "208855.5", "sL_NStrLoss": "59919", "sL_ContLoss": "28072.6", "geom_point": "0101000020E610000042CED28007DB5EC081BEFC67B04E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.42490980599996, 48.617772992000035 ], [ -123.424184700999916, 48.617581502000114 ], [ -123.423210088999966, 48.617567799 ], [ -123.420443993999982, 48.617538608000139 ], [ -123.420173165, 48.617536524000045 ], [ -123.416545899999946, 48.617499798000047 ], [ -123.416553193999988, 48.617293601000036 ], [ -123.416406208999945, 48.616712997000043 ], [ -123.416411895999957, 48.615843207000054 ], [ -123.41625160199996, 48.615432691000052 ], [ -123.415843980999909, 48.614589799000115 ], [ -123.415830287999952, 48.614223499 ], [ -123.415911406999953, 48.613928802000082 ], [ -123.416054874999986, 48.613390309000067 ], [ -123.416078691999971, 48.613300904000035 ], [ -123.416270705999949, 48.613010783000071 ], [ -123.416471492999946, 48.612856098000051 ], [ -123.416825083, 48.61265740400011 ], [ -123.4170067109999, 48.612583654000098 ], [ -123.417377803999941, 48.612432988000123 ], [ -123.417516400999943, 48.612376690000097 ], [ -123.417802898999952, 48.612215890000066 ], [ -123.418065664999986, 48.611983214000141 ], [ -123.418104209999925, 48.611949052000099 ], [ -123.424175336999923, 48.612178775000125 ], [ -123.430249400999983, 48.612076699000035 ], [ -123.430393419999916, 48.612148659000091 ], [ -123.431462518999979, 48.612682904000025 ], [ -123.43188158699995, 48.612771492000036 ], [ -123.43258730099997, 48.612723610000103 ], [ -123.433119986999898, 48.612965494000058 ], [ -123.432500405999988, 48.613570798000083 ], [ -123.431052006999963, 48.614124507000028 ], [ -123.430862496, 48.6139981910001 ], [ -123.430588291999953, 48.613883405000088 ], [ -123.430142799999913, 48.613831105000102 ], [ -123.429842301999898, 48.613876204000078 ], [ -123.429716934999959, 48.613896384000022 ], [ -123.429067718999988, 48.614000913000019 ], [ -123.428975880999985, 48.61401570800011 ], [ -123.428459697999969, 48.613917507000089 ], [ -123.428344765999981, 48.613855844000035 ], [ -123.42801099699993, 48.613676816000087 ], [ -123.427816388999972, 48.613344911000112 ], [ -123.427691616999965, 48.612976706000097 ], [ -123.427473685000024, 48.612725291000061 ], [ -123.426996800999987, 48.612528997000119 ], [ -123.425572189999954, 48.612596408000073 ], [ -123.424691491999909, 48.612699401000086 ], [ -123.424299904999927, 48.61279990400007 ], [ -123.42369019799996, 48.613125892000056 ], [ -123.423422198999987, 48.613567501000027 ], [ -123.422861603999948, 48.614405896000072 ], [ -123.423990593, 48.614888499000052 ], [ -123.424738797999964, 48.61505531500012 ], [ -123.426231784999942, 48.615249292000087 ], [ -123.426831420999918, 48.615507204000032 ], [ -123.42702170699998, 48.61566778800006 ], [ -123.427405985999911, 48.616072813000152 ], [ -123.427466081999981, 48.616584519000078 ], [ -123.427472884999986, 48.617600706000104 ], [ -123.426719811999973, 48.617598684000065 ], [ -123.425940917, 48.61759790000005 ], [ -123.425237178999964, 48.617780994000022 ], [ -123.42490980599996, 48.617772992000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138981916", "BldgCostT": "90691666", "sL_LossRatio": "0.926225758449004", "sL_AssetLoss": "212495.17", "sL_BldgLoss": "196818.5", "sL_StrLoss": "161003", "sL_NStrLoss": "35815.5", "sL_ContLoss": "15676.67", "geom_point": "0101000020E61000004F750AEA82DB5EC06F43BDC7B64E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.427405985999911, 48.616072813000152 ], [ -123.42702170699998, 48.61566778800006 ], [ -123.426831420999918, 48.615507204000032 ], [ -123.426231784999942, 48.615249292000087 ], [ -123.424738797999964, 48.61505531500012 ], [ -123.423990593, 48.614888499000052 ], [ -123.422861603999948, 48.614405896000072 ], [ -123.423422198999987, 48.613567501000027 ], [ -123.42369019799996, 48.613125892000056 ], [ -123.424299904999927, 48.61279990400007 ], [ -123.424691491999909, 48.612699401000086 ], [ -123.425572189999954, 48.612596408000073 ], [ -123.426996800999987, 48.612528997000119 ], [ -123.427473685000024, 48.612725291000061 ], [ -123.427691616999965, 48.612976706000097 ], [ -123.427816388999972, 48.613344911000112 ], [ -123.42801099699993, 48.613676816000087 ], [ -123.428344765999981, 48.613855844000035 ], [ -123.428459697999969, 48.613917507000089 ], [ -123.428975880999985, 48.61401570800011 ], [ -123.429067718999988, 48.614000913000019 ], [ -123.429716934999959, 48.613896384000022 ], [ -123.429842301999898, 48.613876204000078 ], [ -123.430142799999913, 48.613831105000102 ], [ -123.430588291999953, 48.613883405000088 ], [ -123.430862496, 48.6139981910001 ], [ -123.431052006999963, 48.614124507000028 ], [ -123.432500405999988, 48.613570798000083 ], [ -123.433119986999898, 48.612965494000058 ], [ -123.43359150399999, 48.612639703000099 ], [ -123.433876412999922, 48.61255639600008 ], [ -123.434306801999981, 48.612560827000031 ], [ -123.43452631699995, 48.612563109000106 ], [ -123.434975610000023, 48.612769607000111 ], [ -123.435261689999933, 48.613291066000109 ], [ -123.435437684999982, 48.613611892000044 ], [ -123.43565111099997, 48.613996593000067 ], [ -123.435636094999936, 48.614221611000055 ], [ -123.43550569199999, 48.614502416000079 ], [ -123.435462399999935, 48.614848508000073 ], [ -123.43557001299996, 48.615436102000054 ], [ -123.435598591999948, 48.615581108000072 ], [ -123.435548203999971, 48.615810601000064 ], [ -123.435343721999971, 48.616082497000022 ], [ -123.435151197999986, 48.61626079600012 ], [ -123.434720292999913, 48.616411807000055 ], [ -123.434317200999942, 48.616475110000053 ], [ -123.433830915999962, 48.616449802000069 ], [ -123.433208860999969, 48.616337228000077 ], [ -123.432865570999951, 48.616275104000117 ], [ -123.432290910999939, 48.61617109500002 ], [ -123.43209139899993, 48.616675605000061 ], [ -123.432148207999987, 48.616999698 ], [ -123.43247791499999, 48.617462914000029 ], [ -123.432112692999979, 48.617601910000062 ], [ -123.431705898999937, 48.617657889000036 ], [ -123.430612590999942, 48.617634211000087 ], [ -123.430484531999966, 48.617633329000043 ], [ -123.429955243000038, 48.6176297660001 ], [ -123.429806004999961, 48.617628756000052 ], [ -123.429100355999978, 48.617623993000095 ], [ -123.428953712999942, 48.61762298200005 ], [ -123.427472884999986, 48.617600706000104 ], [ -123.427466081999981, 48.616584519000078 ], [ -123.427405985999911, 48.616072813000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202583417", "BldgCostT": "134956667", "sL_LossRatio": "0.871608172864581", "sL_AssetLoss": "369279.58", "sL_BldgLoss": "321867.1", "sL_StrLoss": "250729.1", "sL_NStrLoss": "71138", "sL_ContLoss": "47412.48", "geom_point": "0101000020E6100000404307769FDB5EC0152E710510504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.420375812999964, 48.629984909000065 ], [ -123.42019893599999, 48.628128064000094 ], [ -123.420119501999949, 48.627293998000027 ], [ -123.420013409999967, 48.626757692000112 ], [ -123.419825004999964, 48.62636279400008 ], [ -123.4190015, 48.625196097000085 ], [ -123.422080987999934, 48.625196027000058 ], [ -123.42282642299989, 48.625196004000081 ], [ -123.422976610999939, 48.625196052000099 ], [ -123.423960496999896, 48.625196487000082 ], [ -123.423980420999968, 48.624410801000096 ], [ -123.424051874999947, 48.624143902000093 ], [ -123.424274385, 48.623817602000017 ], [ -123.42464982099996, 48.623494010000094 ], [ -123.424761998999941, 48.623424609000097 ], [ -123.424993285999932, 48.623158810000035 ], [ -123.425092004999954, 48.622839413000079 ], [ -123.425044508999974, 48.622545301000052 ], [ -123.424936509, 48.622364096000119 ], [ -123.423930813999974, 48.621479805000078 ], [ -123.423758285999966, 48.621215893000077 ], [ -123.423629372999969, 48.620674594000022 ], [ -123.42369980299999, 48.620378806000076 ], [ -123.424146605999951, 48.619566602000063 ], [ -123.424174007999937, 48.619436492000077 ], [ -123.424184700999916, 48.617581502000114 ], [ -123.42490980599996, 48.617772992000035 ], [ -123.425237178999964, 48.617780994000022 ], [ -123.425940917, 48.61759790000005 ], [ -123.426719811999973, 48.617598684000065 ], [ -123.427472884999986, 48.617600706000104 ], [ -123.428953712999942, 48.61762298200005 ], [ -123.428936908999958, 48.619171381000051 ], [ -123.428915314999983, 48.619217467000013 ], [ -123.428867111999949, 48.619320363000092 ], [ -123.428852586999966, 48.619351396000056 ], [ -123.428699383999941, 48.619500996000042 ], [ -123.428591414999985, 48.619568692000072 ], [ -123.428286199999945, 48.619675796000124 ], [ -123.427819605999915, 48.61973480600011 ], [ -123.426488800999962, 48.619866702000074 ], [ -123.42673888799996, 48.620670599000107 ], [ -123.427397819999968, 48.621505107000075 ], [ -123.427752685999948, 48.621828295000093 ], [ -123.428134286999949, 48.622034091000103 ], [ -123.428923283999922, 48.622273985000028 ], [ -123.429969485999933, 48.622342611000093 ], [ -123.43010383099994, 48.622341097000074 ], [ -123.431325185999967, 48.622327494000032 ], [ -123.431624212999907, 48.622260795000066 ], [ -123.431689792999961, 48.622236292000011 ], [ -123.431732264999965, 48.622220404000124 ], [ -123.431862112999951, 48.622171897000115 ], [ -123.431958195000021, 48.622099393000092 ], [ -123.432076492999968, 48.621917501000027 ], [ -123.432514211999916, 48.62159270300004 ], [ -123.43275898499999, 48.621517234000073 ], [ -123.43294822299994, 48.6214588980001 ], [ -123.43333601099998, 48.621378093000068 ], [ -123.43363150199994, 48.62122749300007 ], [ -123.433678793999945, 48.62117909300008 ], [ -123.433836516999989, 48.621020592000022 ], [ -123.433935114999926, 48.620802094000041 ], [ -123.43393308899999, 48.620366598000039 ], [ -123.433914712, 48.619561087000058 ], [ -123.433981516999978, 48.619279695000039 ], [ -123.434173910999988, 48.619054391000084 ], [ -123.43457510799999, 48.618826998000031 ], [ -123.435023394999973, 48.619103789000121 ], [ -123.435280218999964, 48.619139688000082 ], [ -123.435436673999945, 48.61913422000007 ], [ -123.435477015999979, 48.619132807000035 ], [ -123.435646597999963, 48.619103488000043 ], [ -123.435935501999907, 48.618897705000087 ], [ -123.435978740999943, 48.618848336000035 ], [ -123.436149318999966, 48.618653497000054 ], [ -123.436748807999933, 48.617968904000108 ], [ -123.437396980999949, 48.617385097000103 ], [ -123.438053590999957, 48.616893305000112 ], [ -123.438583414999968, 48.616618498000108 ], [ -123.438804519999934, 48.616549748000111 ], [ -123.439813604999955, 48.616236014000016 ], [ -123.43981804399999, 48.616746974000108 ], [ -123.439411009999958, 48.616748528000109 ], [ -123.439413353999939, 48.617018407000145 ], [ -123.439006318999986, 48.617019960000057 ], [ -123.43900865899991, 48.617289838000076 ], [ -123.438601621999908, 48.617291388000055 ], [ -123.43860396099997, 48.617561267000092 ], [ -123.438196920999985, 48.617562817000092 ], [ -123.438199258999987, 48.617832695000104 ], [ -123.437792215999977, 48.617834243000054 ], [ -123.437794548999989, 48.618104122000069 ], [ -123.43738750599999, 48.618105668000112 ], [ -123.437392170999971, 48.618645425000061 ], [ -123.436985121999939, 48.618646971000075 ], [ -123.436987451999954, 48.618916849000115 ], [ -123.436580402999965, 48.618918393000094 ], [ -123.436589710999925, 48.619997907000084 ], [ -123.43618265299996, 48.619999449 ], [ -123.436203581999933, 48.622428356000086 ], [ -123.43661066099996, 48.622426813000047 ], [ -123.43661298799999, 48.622696691000044 ], [ -123.437020067999939, 48.622695147000073 ], [ -123.437020831000012, 48.622783603000123 ], [ -123.439525012999937, 48.622843926000051 ], [ -123.43950420699997, 48.623226506000044 ], [ -123.44032670899999, 48.62324630700008 ], [ -123.44013231199996, 48.626821754000034 ], [ -123.440750241999979, 48.626836625000074 ], [ -123.440832818, 48.625317550000069 ], [ -123.443858651999932, 48.625390319000111 ], [ -123.444144818999959, 48.630013905000119 ], [ -123.443659090999972, 48.63004899 ], [ -123.443196486999966, 48.630082424000086 ], [ -123.442940445999923, 48.630082010000123 ], [ -123.442221439999955, 48.630080810000017 ], [ -123.440565527999965, 48.630078051000027 ], [ -123.440008948999946, 48.630077105000083 ], [ -123.439289771999952, 48.630075888000057 ], [ -123.438678947999961, 48.6300748620001 ], [ -123.437103833999942, 48.630072184000092 ], [ -123.436631846999916, 48.630071372000025 ], [ -123.436302214999913, 48.630067335000092 ], [ -123.435406549, 48.630056354000018 ], [ -123.434673705999941, 48.630047373000068 ], [ -123.43054763399999, 48.629996683000101 ], [ -123.430046603999969, 48.629990888000123 ], [ -123.427861338999946, 48.629989621000036 ], [ -123.427345650999925, 48.629989306 ], [ -123.426897783999905, 48.629989039000108 ], [ -123.424468392999955, 48.629987544000109 ], [ -123.420375812999964, 48.629984909000065 ] ], [ [ -123.434543385999959, 48.628630116000124 ], [ -123.43466039799992, 48.626482803000059 ], [ -123.434730838999954, 48.626484502000039 ], [ -123.43473900799998, 48.626334561000135 ], [ -123.433916456999924, 48.626314718000124 ], [ -123.43409841699993, 48.622976085000133 ], [ -123.432544489999913, 48.622981931000048 ], [ -123.432542184999974, 48.622712052000111 ], [ -123.431765711999958, 48.62271496600011 ], [ -123.431355238999956, 48.622809362000076 ], [ -123.431321828999984, 48.622820618000063 ], [ -123.431323240999959, 48.622986511000136 ], [ -123.430831255999962, 48.622988352000071 ], [ -123.430511434999971, 48.623266948000079 ], [ -123.430536620999959, 48.626228099000095 ], [ -123.430328457999934, 48.626228877000088 ], [ -123.430236737999934, 48.626331261000125 ], [ -123.429316106, 48.62632825 ], [ -123.429319871999908, 48.626772416000065 ], [ -123.428098532999968, 48.626776962000086 ], [ -123.42810081499999, 48.627046840000034 ], [ -123.427693699999907, 48.627048352000074 ], [ -123.427695979999967, 48.627318231000103 ], [ -123.425334707999951, 48.627326975000038 ], [ -123.425325240999911, 48.627500086000055 ], [ -123.427060050999927, 48.627542068000047 ], [ -123.4270521709999, 48.627686254000039 ], [ -123.428314085999972, 48.62771677500006 ], [ -123.428318183999949, 48.627641750000059 ], [ -123.428975162999961, 48.627657634000101 ], [ -123.428992073999964, 48.62734796700002 ], [ -123.434404876999935, 48.627478675000091 ], [ -123.434342389999969, 48.628625267000061 ], [ -123.434543385999959, 48.628630116000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85931500", "BldgCostT": "58000000", "sL_LossRatio": "0.829791386760594", "sL_AssetLoss": "220312", "sL_BldgLoss": "182813", "sL_StrLoss": "75502", "sL_NStrLoss": "107311", "sL_ContLoss": "37499", "geom_point": "0101000020E61000003402B70FB5D95EC0374BB0D5714B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.399658252999956, 48.58121200400015 ], [ -123.399792555999966, 48.581237387000058 ], [ -123.400304314, 48.581334122000037 ], [ -123.400233623999952, 48.582615547000046 ], [ -123.400878526, 48.582613304000084 ], [ -123.40088279299999, 48.583153067000069 ], [ -123.402103088, 48.583148811000072 ], [ -123.402104850999976, 48.583371152000062 ], [ -123.403442555999973, 48.583403852000089 ], [ -123.403439690999974, 48.583584602 ], [ -123.403445273999964, 48.584042532000119 ], [ -123.403468124999947, 48.585922659000055 ], [ -123.40346879399999, 48.585978908000115 ], [ -123.403468379999978, 48.586318521000074 ], [ -123.40346763399999, 48.586912382000072 ], [ -123.40346695, 48.58745224200014 ], [ -123.40346578599997, 48.588368894000055 ], [ -123.40346691, 48.588477623000095 ], [ -123.403477093999982, 48.589494146000028 ], [ -123.403483721999976, 48.590150872000088 ], [ -123.403485217999943, 48.590300501000122 ], [ -123.403485231999966, 48.590321814000035 ], [ -123.403486975999954, 48.591248458000045 ], [ -123.403487298999977, 48.591418485000062 ], [ -123.403495104999948, 48.592111978000119 ], [ -123.403502151999987, 48.592741671000034 ], [ -123.403503895999961, 48.592894624000053 ], [ -123.403505298999931, 48.593020577000068 ], [ -123.403506766999897, 48.593151784000028 ], [ -123.403500298999958, 48.593326641000075 ], [ -123.403498329999977, 48.593380573000069 ], [ -123.403492659999984, 48.593533385000072 ], [ -123.403484352999939, 48.593758395000066 ], [ -123.403470751999961, 48.594125466000079 ], [ -123.40128063499999, 48.594134345000057 ], [ -123.400217631999936, 48.594138639000079 ], [ -123.399769317999983, 48.594140467000059 ], [ -123.399620922999958, 48.594141149000102 ], [ -123.399281848999948, 48.594142690000083 ], [ -123.398280845, 48.594147296000088 ], [ -123.398156135999926, 48.594147586000076 ], [ -123.398114268, 48.59414773200006 ], [ -123.398694390999978, 48.592960158000025 ], [ -123.400939377999947, 48.588344995000064 ], [ -123.401165670999944, 48.587678879000102 ], [ -123.401275355999985, 48.58711356700006 ], [ -123.40131889599999, 48.586323958000065 ], [ -123.401273343999947, 48.585652991000082 ], [ -123.401119523999981, 48.58490722800007 ], [ -123.400558631999928, 48.583417639000075 ], [ -123.400003114999919, 48.582056847000032 ], [ -123.399658252999956, 48.58121200400015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.965920523138833", "sL_AssetLoss": "7952", "sL_BldgLoss": "7681", "sL_StrLoss": "6630", "sL_NStrLoss": "1051", "sL_ContLoss": "271", "geom_point": "0101000020E610000097B66E390DD85EC06EF628D8D64B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.374927163999985, 48.593698605000071 ], [ -123.37491573299999, 48.592153675000091 ], [ -123.374550404000018, 48.592144651000048 ], [ -123.374556058999985, 48.59204316600011 ], [ -123.374432276999983, 48.592040108000106 ], [ -123.3766854, 48.592049992000106 ], [ -123.377224695999942, 48.591733813000083 ], [ -123.377427293999958, 48.591382008000053 ], [ -123.377547889999946, 48.591381990000073 ], [ -123.37754959699997, 48.591515912000027 ], [ -123.377209716999943, 48.59195392900007 ], [ -123.376877699999966, 48.592381804000105 ], [ -123.375229406999935, 48.593341699000042 ], [ -123.374927163999985, 48.593698605000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "286674228", "BldgCostT": "196294857", "sL_LossRatio": "0.913577647076597", "sL_AssetLoss": "867100.9", "sL_BldgLoss": "792164", "sL_StrLoss": "608606", "sL_NStrLoss": "183558", "sL_ContLoss": "74936.9", "geom_point": "0101000020E6100000CF7E7ABFD3D85EC05F91A9CC5E4B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393115974999915, 48.593913708000066 ], [ -123.393102930999987, 48.593907683000111 ], [ -123.392638841999926, 48.593899127000036 ], [ -123.392638349999956, 48.593899160000021 ], [ -123.392634789999974, 48.593885796000059 ], [ -123.392766671999937, 48.593752730000055 ], [ -123.392822491999979, 48.593696407000039 ], [ -123.393636376999964, 48.593541098000046 ], [ -123.39463308299996, 48.592934396000068 ], [ -123.394660883999919, 48.592834692000046 ], [ -123.393524409999941, 48.593226386000033 ], [ -123.393050703999904, 48.593281911000112 ], [ -123.392821287999979, 48.593417207000059 ], [ -123.392591833999958, 48.593672140000052 ], [ -123.392377046999968, 48.593910781000019 ], [ -123.392093453999976, 48.593915526000082 ], [ -123.390877527999962, 48.594048806000039 ], [ -123.390666892999903, 48.593874402000047 ], [ -123.390163006999941, 48.593615206000074 ], [ -123.389729718999959, 48.593445706000097 ], [ -123.38793481, 48.593055490000026 ], [ -123.38543189399999, 48.591913192000021 ], [ -123.38511230499995, 48.591853175000026 ], [ -123.383407298999927, 48.591533001000101 ], [ -123.381833290999964, 48.591403397000157 ], [ -123.381199558999981, 48.591379132000107 ], [ -123.379676405999987, 48.591320810000063 ], [ -123.378321218999986, 48.591396302000085 ], [ -123.377859102999935, 48.591110008000015 ], [ -123.375956296, 48.590531801000161 ], [ -123.375110297999953, 48.589932192000063 ], [ -123.374020393, 48.589422311000078 ], [ -123.372862715999986, 48.589275368000088 ], [ -123.372853507999963, 48.589274207000052 ], [ -123.373190187999938, 48.590585903000019 ], [ -123.373489301999939, 48.590863595000044 ], [ -123.373587491999928, 48.591186913000165 ], [ -123.374310110999943, 48.591850587000039 ], [ -123.37440630899999, 48.592039466000102 ], [ -123.374032792999984, 48.59203023700006 ], [ -123.374041408999958, 48.591875649000038 ], [ -123.37358318599999, 48.591864325000039 ], [ -123.373595699999939, 48.591639823000015 ], [ -123.372959976999965, 48.591624110000055 ], [ -123.37302313899994, 48.590491285000041 ], [ -123.372493926999937, 48.590478201000039 ], [ -123.372496601999927, 48.590430246000018 ], [ -123.371920893999928, 48.590416010000105 ], [ -123.371558892999943, 48.59005179600009 ], [ -123.370927514999934, 48.589261406000027 ], [ -123.370433600999945, 48.588327090000057 ], [ -123.370215114999922, 48.588203198000087 ], [ -123.36991649499997, 48.58821318800004 ], [ -123.369793609999988, 48.58813200400008 ], [ -123.370257853999959, 48.587274382 ], [ -123.370276994999955, 48.587239009000037 ], [ -123.37050061299999, 48.586325385000066 ], [ -123.374067819999979, 48.58641360300004 ], [ -123.374139081999957, 48.58513479200009 ], [ -123.379546884999939, 48.585268300000052 ], [ -123.379423218999989, 48.587492038000107 ], [ -123.381390577999952, 48.587540540000113 ], [ -123.381390555999943, 48.587537496000067 ], [ -123.382588981999959, 48.587533521000125 ], [ -123.382629754, 48.586799505000087 ], [ -123.383826052999922, 48.586828966000084 ], [ -123.383825226999974, 48.586719741000131 ], [ -123.384232020999988, 48.586718384000079 ], [ -123.384229974999968, 48.58644850200011 ], [ -123.384636765999957, 48.586447143000079 ], [ -123.384628574999951, 48.585367617000045 ], [ -123.386662488999917, 48.5853608050001 ], [ -123.386664547999985, 48.585630687000027 ], [ -123.388528037999905, 48.585624414000101 ], [ -123.388698471999959, 48.585623840000054 ], [ -123.388700541999967, 48.585893721000097 ], [ -123.389514115999987, 48.585890972000058 ], [ -123.389518263999889, 48.586430736000082 ], [ -123.389925054999949, 48.586429358000103 ], [ -123.389927612999912, 48.586761764000052 ], [ -123.390214981999932, 48.586768823000035 ], [ -123.39019224499999, 48.587179348000056 ], [ -123.392563523999968, 48.587237563000045 ], [ -123.39254013599998, 48.587660200000101 ], [ -123.396127522999947, 48.587748170000069 ], [ -123.396112081999945, 48.588027575000076 ], [ -123.396853182999934, 48.58802502300005 ], [ -123.396844728999895, 48.586945497000066 ], [ -123.397251523999927, 48.586944095000035 ], [ -123.397243062999962, 48.585864568000055 ], [ -123.396836275999945, 48.585865971000075 ], [ -123.396826166, 48.584574589000034 ], [ -123.394386788999938, 48.5845147960001 ], [ -123.394473061999989, 48.582954453000134 ], [ -123.396228601999951, 48.58290762500009 ], [ -123.396491598999972, 48.582783845000087 ], [ -123.396952366999926, 48.582555165000052 ], [ -123.397351028999978, 48.582357278000082 ], [ -123.398022898999969, 48.58202377300011 ], [ -123.398149360999952, 48.581961018000079 ], [ -123.399658252999956, 48.58121200400015 ], [ -123.400003114999919, 48.582056847000032 ], [ -123.400558631999928, 48.583417639000075 ], [ -123.401119523999981, 48.58490722800007 ], [ -123.401273343999947, 48.585652991000082 ], [ -123.40131889599999, 48.586323958000065 ], [ -123.401275355999985, 48.58711356700006 ], [ -123.401165670999944, 48.587678879000102 ], [ -123.400939377999947, 48.588344995000064 ], [ -123.398694390999978, 48.592960158000025 ], [ -123.398114268, 48.59414773200006 ], [ -123.39750494599997, 48.594148132000079 ], [ -123.39665177599997, 48.594149792000024 ], [ -123.396096539999959, 48.594151490000087 ], [ -123.394654275999955, 48.594154927000034 ], [ -123.393723093999967, 48.594147418000077 ], [ -123.393493502999917, 48.594087685000083 ], [ -123.393458940999949, 48.594071764000034 ], [ -123.393115974999915, 48.593913708000066 ] ], [ [ -123.396867757, 48.589886386000053 ], [ -123.396861633999933, 48.589104549000062 ], [ -123.396052412999936, 48.589107335000058 ], [ -123.396010519999962, 48.589865381999985 ], [ -123.396867757, 48.589886386000053 ] ], [ [ -123.399873518999982, 48.586395243000013 ], [ -123.399995613999963, 48.584182434000063 ], [ -123.399820462999941, 48.584178148000021 ], [ -123.399794576999952, 48.584647274000034 ], [ -123.398453628999931, 48.5846144490001 ], [ -123.398463422999967, 48.585860352000076 ], [ -123.39887020799992, 48.585858944000108 ], [ -123.398874454999913, 48.5863987070001 ], [ -123.399873518999982, 48.586395243000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120825917", "BldgCostT": "80941667", "sL_LossRatio": "0.815643087547136", "sL_AssetLoss": "550275", "sL_BldgLoss": "448828", "sL_StrLoss": "286737", "sL_NStrLoss": "162091", "sL_ContLoss": "101447", "geom_point": "0101000020E6100000BEEF294A93D95EC081B3A558FF474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.396921417999963, 48.563708254000069 ], [ -123.395676877999946, 48.561741087000023 ], [ -123.395547561999976, 48.561508247000027 ], [ -123.395473838999962, 48.561375469000133 ], [ -123.395469039999952, 48.561367045000125 ], [ -123.394839964999974, 48.560259958000131 ], [ -123.394324490999949, 48.559152845 ], [ -123.394124414999979, 48.558723104000165 ], [ -123.394034421999919, 48.558529838 ], [ -123.393701094999969, 48.5575296600001 ], [ -123.39388887899996, 48.557638171000086 ], [ -123.3942495, 48.55769841100004 ], [ -123.394346937, 48.558334658000049 ], [ -123.395052578999966, 48.559325689000055 ], [ -123.395263312999973, 48.559625702000076 ], [ -123.395615139999975, 48.559553190000081 ], [ -123.396325973999964, 48.559543595000058 ], [ -123.397430629999945, 48.5595327690001 ], [ -123.397432212999917, 48.559970083000032 ], [ -123.397348399999942, 48.561439491000051 ], [ -123.397420791999963, 48.561598990000029 ], [ -123.397667706, 48.561782683000061 ], [ -123.397837697999975, 48.561840897000081 ], [ -123.398369618999979, 48.561888201000087 ], [ -123.400003743999932, 48.561889856000093 ], [ -123.40074959599994, 48.561890591000036 ], [ -123.401032592999982, 48.561789322000067 ], [ -123.401278396999913, 48.561576304000042 ], [ -123.401310489999915, 48.561362499000069 ], [ -123.401273401999958, 48.561127193000083 ], [ -123.401283206999963, 48.560262808000111 ], [ -123.40355089199997, 48.560286689000108 ], [ -123.403549883999929, 48.560696757000102 ], [ -123.403546879999951, 48.56192019700007 ], [ -123.403546602999967, 48.562035715000064 ], [ -123.40354639199991, 48.562118054000088 ], [ -123.403544865999905, 48.562682164000066 ], [ -123.403538221999895, 48.565136964000025 ], [ -123.402144414999938, 48.565137995000107 ], [ -123.40060429, 48.565139097000042 ], [ -123.400002231999935, 48.565143386000024 ], [ -123.399890914999972, 48.565144210000092 ], [ -123.399366669999964, 48.565129573000057 ], [ -123.39903331, 48.565064616000051 ], [ -123.398260063999928, 48.564657977000131 ], [ -123.397285894999982, 48.563968727000045 ], [ -123.396921417999963, 48.563708254000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192596918", "BldgCostT": "123516668", "sL_LossRatio": "0.835562369176295", "sL_AssetLoss": "617195.1", "sL_BldgLoss": "515705", "sL_StrLoss": "351517", "sL_NStrLoss": "164188", "sL_ContLoss": "101490.1", "geom_point": "0101000020E6100000A4214F3775D95EC09C4772B773474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.397432212999917, 48.559970083000032 ], [ -123.397430629999945, 48.5595327690001 ], [ -123.396325973999964, 48.559543595000058 ], [ -123.395615139999975, 48.559553190000081 ], [ -123.395263312999973, 48.559625702000076 ], [ -123.395052578999966, 48.559325689000055 ], [ -123.394346937, 48.558334658000049 ], [ -123.3942495, 48.55769841100004 ], [ -123.39388887899996, 48.557638171000086 ], [ -123.393701094999969, 48.5575296600001 ], [ -123.393420968999948, 48.556689106000043 ], [ -123.39339034399994, 48.556597200000098 ], [ -123.392714107999964, 48.554293183000055 ], [ -123.392775178999955, 48.554293102000052 ], [ -123.392815833999961, 48.554293031000029 ], [ -123.392885874999976, 48.554292907000118 ], [ -123.392978394999886, 48.554292181000051 ], [ -123.394083707, 48.554283500000103 ], [ -123.394197912999942, 48.554283298000065 ], [ -123.395355588999934, 48.554281408000122 ], [ -123.395524707000021, 48.554281 ], [ -123.395600754000014, 48.554670574000085 ], [ -123.39574985099992, 48.555434122000072 ], [ -123.39576045699999, 48.555488341000064 ], [ -123.39579890600001, 48.55568529300006 ], [ -123.395805099999905, 48.556036556 ], [ -123.395814289999976, 48.55655839700011 ], [ -123.396302718999976, 48.556565343000095 ], [ -123.396686307999985, 48.556570789000027 ], [ -123.397696773999954, 48.556475592000062 ], [ -123.398382909999896, 48.556472612000015 ], [ -123.399297795, 48.556467988000065 ], [ -123.399757719999968, 48.556466136000068 ], [ -123.399771253000011, 48.556466088000107 ], [ -123.400001640999974, 48.556465169000049 ], [ -123.400910899999971, 48.556461498000068 ], [ -123.40095639899999, 48.556690687000113 ], [ -123.401124696999901, 48.556927402000078 ], [ -123.401301275999927, 48.557061592000117 ], [ -123.401874983999974, 48.55730639700004 ], [ -123.4021622, 48.557446006000085 ], [ -123.402306505999988, 48.558069805000102 ], [ -123.402281212999981, 48.558235389000089 ], [ -123.402249309999959, 48.558444402000106 ], [ -123.401958732999958, 48.559052204000125 ], [ -123.40189595399994, 48.559133879000051 ], [ -123.401441312999964, 48.559725695000097 ], [ -123.401332020000027, 48.559941203000072 ], [ -123.401283206999963, 48.560262808000111 ], [ -123.401273401999958, 48.561127193000083 ], [ -123.401310489999915, 48.561362499000069 ], [ -123.401278396999913, 48.561576304000042 ], [ -123.401032592999982, 48.561789322000067 ], [ -123.40074959599994, 48.561890591000036 ], [ -123.400003743999932, 48.561889856000093 ], [ -123.398369618999979, 48.561888201000087 ], [ -123.397837697999975, 48.561840897000081 ], [ -123.397667706, 48.561782683000061 ], [ -123.397420791999963, 48.561598990000029 ], [ -123.397348399999942, 48.561439491000051 ], [ -123.397432212999917, 48.559970083000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167908583", "BldgCostT": "110588333", "sL_LossRatio": "0.841238916901159", "sL_AssetLoss": "686980.7", "sL_BldgLoss": "577914.9", "sL_StrLoss": "378994", "sL_NStrLoss": "198920.9", "sL_ContLoss": "109065.8", "geom_point": "0101000020E61000003D4D97AC67D95EC0D3EF35E3B8464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.401617483999985, 48.55436720300002 ], [ -123.401386920999954, 48.554329993000117 ], [ -123.401373151999977, 48.554329806000098 ], [ -123.4007961, 48.554321793 ], [ -123.399996775999966, 48.554308901000127 ], [ -123.399549899999968, 48.554301673000055 ], [ -123.3990619, 48.554293783000055 ], [ -123.398967540999934, 48.554292960000105 ], [ -123.397509513999978, 48.5542801060001 ], [ -123.397218826999918, 48.554277507000108 ], [ -123.395524707000021, 48.554281 ], [ -123.395355588999934, 48.554281408000122 ], [ -123.394197912999942, 48.554283298000065 ], [ -123.394083707, 48.554283500000103 ], [ -123.392978394999886, 48.554292181000051 ], [ -123.392885874999976, 48.554292907000118 ], [ -123.392815833999961, 48.554293031000029 ], [ -123.392775178999955, 48.554293102000052 ], [ -123.392714107999964, 48.554293183000055 ], [ -123.392490985, 48.554291830000111 ], [ -123.391979707999923, 48.55428870100009 ], [ -123.391759086999969, 48.55428750099999 ], [ -123.39090039, 48.554282898000082 ], [ -123.390573397999944, 48.554202688000032 ], [ -123.389991099999975, 48.55384579800004 ], [ -123.389985350999979, 48.553393574000047 ], [ -123.38997387900001, 48.552493958000106 ], [ -123.38996577099999, 48.551855253000127 ], [ -123.389962423999961, 48.551594368000032 ], [ -123.389956459999922, 48.551126568000043 ], [ -123.3899506059999, 48.550665697000049 ], [ -123.392124097999925, 48.550625296000113 ], [ -123.392260472999951, 48.550624774000013 ], [ -123.392385026999989, 48.550624297000134 ], [ -123.396684375999953, 48.550467828000066 ], [ -123.396684753999978, 48.550467809000089 ], [ -123.4007697159999, 48.550676875000057 ], [ -123.403524392999941, 48.550694714000088 ], [ -123.403518508000033, 48.552384355000079 ], [ -123.40351729299999, 48.552726281000012 ], [ -123.403511983999977, 48.554237707000063 ], [ -123.403506690999961, 48.556076896000043 ], [ -123.40288478699992, 48.555454903000054 ], [ -123.401791998999954, 48.554466088000012 ], [ -123.401617483999985, 48.55436720300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149798917", "BldgCostT": "96891667", "sL_LossRatio": "0.824506241064933", "sL_AssetLoss": "633249.3", "sL_BldgLoss": "522118", "sL_StrLoss": "328203", "sL_NStrLoss": "193915", "sL_ContLoss": "111131.3", "geom_point": "0101000020E610000023AFA5B2AED85EC0AE201F5717454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.384761620999925, 48.549294998000029 ], [ -123.38475477599998, 48.548392318000012 ], [ -123.385974235999925, 48.548388236000036 ], [ -123.385974946999966, 48.548481714000076 ], [ -123.386156131999911, 48.548486175000072 ], [ -123.3861571299999, 48.548468172000085 ], [ -123.386355729999963, 48.548473062000063 ], [ -123.386401694999947, 48.547643626000053 ], [ -123.384762127000016, 48.547603247000012 ], [ -123.384927911999966, 48.544613271000046 ], [ -123.384319680999951, 48.544615303000064 ], [ -123.384317659999937, 48.544348467000098 ], [ -123.384208725999912, 48.544345782000043 ], [ -123.383911182999938, 48.544346775000136 ], [ -123.383909142, 48.54407689100006 ], [ -123.383502689999929, 48.544078246000069 ], [ -123.383500650999963, 48.543808362000078 ], [ -123.383094199999931, 48.543809716000048 ], [ -123.383092163999962, 48.543539831000032 ], [ -123.382793957999979, 48.543540823000058 ], [ -123.382682097999961, 48.543061212000048 ], [ -123.382677578, 48.542461647000081 ], [ -123.382542369999911, 48.542462096000101 ], [ -123.382443921999979, 48.542039958000075 ], [ -123.381812701999962, 48.541053098000063 ], [ -123.381158815999981, 48.540164203000046 ], [ -123.380946305999927, 48.539728893000074 ], [ -123.38059328199995, 48.53926489200007 ], [ -123.381447454, 48.539008229000096 ], [ -123.381275668999976, 48.538740717000103 ], [ -123.380577642, 48.53767215800012 ], [ -123.379769239999959, 48.536593664000115 ], [ -123.379386502, 48.53591248900009 ], [ -123.379287187999978, 48.535697541000054 ], [ -123.379136615999968, 48.535371641000097 ], [ -123.378590439999954, 48.534277398000029 ], [ -123.378361333, 48.533818333000127 ], [ -123.378105918999978, 48.533306591000077 ], [ -123.377790512999937, 48.532777697000093 ], [ -123.377355299999977, 48.532383687000042 ], [ -123.377555636999929, 48.532281474000065 ], [ -123.378563113, 48.531767385000137 ], [ -123.379121688999973, 48.531482343000057 ], [ -123.37929680499991, 48.5313929960001 ], [ -123.379696421999967, 48.531163978000095 ], [ -123.379844299999945, 48.53107918600012 ], [ -123.380657700999933, 48.530795282000064 ], [ -123.381202585999972, 48.530605098000073 ], [ -123.381596079999937, 48.530579589000055 ], [ -123.383205385999986, 48.530637203000083 ], [ -123.383621810999941, 48.530652110000034 ], [ -123.3844543299999, 48.530686207 ], [ -123.3851161199999, 48.530707420000084 ], [ -123.385482342999978, 48.530719148000102 ], [ -123.38624104899999, 48.530743431000076 ], [ -123.387747883999936, 48.530791700000123 ], [ -123.38782428899999, 48.530793567000082 ], [ -123.387936912999947, 48.530796308000056 ], [ -123.388071000999929, 48.531611081000058 ], [ -123.38806759699996, 48.531672556000061 ], [ -123.388081173999964, 48.531672890000102 ], [ -123.388257702999951, 48.532745507000094 ], [ -123.38847218699999, 48.53366040500002 ], [ -123.388482005999919, 48.533702185000067 ], [ -123.388518700999924, 48.53373513400004 ], [ -123.388541905999929, 48.533755986000074 ], [ -123.38857232, 48.533783316000083 ], [ -123.388838121999967, 48.53402196400009 ], [ -123.389708120999956, 48.534803163000035 ], [ -123.389802513999911, 48.534887903000055 ], [ -123.389966301999948, 48.535104696000062 ], [ -123.390007712999989, 48.535230529000096 ], [ -123.390053121999955, 48.535368394000045 ], [ -123.390124111999967, 48.535775240000042 ], [ -123.390215384999976, 48.536298303000066 ], [ -123.390347890000015, 48.537129311000122 ], [ -123.390332881999896, 48.537277732000071 ], [ -123.390232568999949, 48.537380743000021 ], [ -123.389637578999952, 48.537501346000141 ], [ -123.389491301999954, 48.537578904000057 ], [ -123.389424311999974, 48.53768995100004 ], [ -123.389393159999969, 48.537885741000025 ], [ -123.389948541999956, 48.541683594000041 ], [ -123.390170263999948, 48.542662804000081 ], [ -123.390724457999923, 48.544258794000022 ], [ -123.39055091299997, 48.544290596000067 ], [ -123.390757912999945, 48.544861242000124 ], [ -123.390820886999933, 48.545034798000096 ], [ -123.391163401999933, 48.546251414000039 ], [ -123.391938156999984, 48.549599510000085 ], [ -123.392006310999932, 48.549893903000104 ], [ -123.392124097999925, 48.550625296000113 ], [ -123.3899506059999, 48.550665697000049 ], [ -123.389535622999958, 48.55066982000011 ], [ -123.38870878199999, 48.550678019000095 ], [ -123.388342848999955, 48.550681647000062 ], [ -123.387543929999978, 48.55068955200008 ], [ -123.38563950299995, 48.550708395000086 ], [ -123.384465420999959, 48.550706237000078 ], [ -123.384132564999931, 48.549279500000111 ], [ -123.384761620999925, 48.549294998000029 ] ], [ [ -123.38425295799999, 48.535800684000044 ], [ -123.384185297999949, 48.535709353000087 ], [ -123.3838458809999, 48.535710485000074 ], [ -123.383841342999986, 48.535110358000118 ], [ -123.383723865999926, 48.534901219000098 ], [ -123.383433380999961, 48.534902186000075 ], [ -123.38343245599998, 48.534779711000049 ], [ -123.383333822999987, 48.534777279000103 ], [ -123.383277, 48.535801749000093 ], [ -123.38425314899996, 48.535825812000105 ], [ -123.38425295799999, 48.535800684000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.855061908230153", "sL_AssetLoss": "2746", "sL_BldgLoss": "2348", "sL_StrLoss": "1610", "sL_NStrLoss": "738", "sL_ContLoss": "398", "geom_point": "0101000020E6100000BBC20EA56ED75EC0D0CDA38746464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.365243388999886, 48.548455867 ], [ -123.366869340999955, 48.548450698000103 ], [ -123.366875191999981, 48.549260350000061 ], [ -123.366468699, 48.549261645000144 ], [ -123.36647259599998, 48.549801414000065 ], [ -123.365569029999961, 48.549804286000047 ], [ -123.365638377999986, 48.549631297000097 ], [ -123.365702278999919, 48.549208298000075 ], [ -123.365620485999926, 48.548876490000048 ], [ -123.365245750000028, 48.548784014000042 ], [ -123.365243388999886, 48.548455867 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139473916", "BldgCostT": "94981666", "sL_LossRatio": "0.956954433351199", "sL_AssetLoss": "180263.86", "sL_BldgLoss": "172504.3", "sL_StrLoss": "146606.4", "sL_NStrLoss": "25897.9", "sL_ContLoss": "7759.56", "geom_point": "0101000020E610000023DEE800D4D75EC06F2D72D30F454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.371344653999984, 48.550055694000037 ], [ -123.371418498999944, 48.548730812000066 ], [ -123.372884062999958, 48.548767089000066 ], [ -123.37297794700001, 48.547081621000125 ], [ -123.370517878999948, 48.547089562000096 ], [ -123.370513937999974, 48.546549793000061 ], [ -123.370107466, 48.546551102000159 ], [ -123.37010352899992, 48.546011333000052 ], [ -123.369697060999911, 48.546012638 ], [ -123.369695095999987, 48.545742755000056 ], [ -123.369288629999915, 48.545744059000057 ], [ -123.369288402999985, 48.545712777000126 ], [ -123.365503208999968, 48.545618906000058 ], [ -123.365394068999962, 48.547572731000052 ], [ -123.36389341499995, 48.547535479000068 ], [ -123.363849004999949, 48.547469385000049 ], [ -123.363387781999947, 48.547452297000049 ], [ -123.36328960099999, 48.547074896000012 ], [ -123.362390903999966, 48.546520809000057 ], [ -123.362343906999939, 48.545558084000106 ], [ -123.361988177999962, 48.545172098000094 ], [ -123.361902387999962, 48.544390197000034 ], [ -123.361926906999969, 48.544119593000033 ], [ -123.362087694999943, 48.543965805000063 ], [ -123.362166586999962, 48.543642503000058 ], [ -123.362120391999923, 48.542859204000123 ], [ -123.361930320999988, 48.542798001000087 ], [ -123.361485608999942, 48.542870608000037 ], [ -123.361159890999915, 48.542809397000092 ], [ -123.361157901999945, 48.542584300000065 ], [ -123.361617687999924, 48.542474691000066 ], [ -123.361963281999977, 48.542174153000076 ], [ -123.362115605999961, 48.542041705000017 ], [ -123.362514202999947, 48.540960684000069 ], [ -123.362522852999945, 48.540788238000033 ], [ -123.364375678999934, 48.540834261000072 ], [ -123.364372288999945, 48.540361910000115 ], [ -123.363965863999937, 48.540363195000047 ], [ -123.363963929999926, 48.540093311000057 ], [ -123.362744667999962, 48.54009715900002 ], [ -123.362744348999939, 48.540052616000025 ], [ -123.363034107000018, 48.539734485000082 ], [ -123.36323371099999, 48.539374187000121 ], [ -123.363970213999949, 48.538112296000101 ], [ -123.364266500999946, 48.537770512000051 ], [ -123.365012086999954, 48.535896198000067 ], [ -123.365049576999965, 48.535500296000073 ], [ -123.365476201999968, 48.534563206000087 ], [ -123.36568689399995, 48.533627493000068 ], [ -123.366128962999966, 48.532799391000083 ], [ -123.366204317999987, 48.532799150000109 ], [ -123.366329402999938, 48.532528861000081 ], [ -123.366273281999938, 48.53252903900011 ], [ -123.366514101999954, 48.532077904000062 ], [ -123.36648699599999, 48.531951213000092 ], [ -123.365957778999956, 48.531862897000046 ], [ -123.365936204999926, 48.531785793000076 ], [ -123.365933788999911, 48.531450554000095 ], [ -123.365833874999922, 48.5314508720001 ], [ -123.365627783999983, 48.531197802000136 ], [ -123.365611484999974, 48.530901501000088 ], [ -123.365719799999937, 48.53079330200012 ], [ -123.36558038, 48.530361792000051 ], [ -123.365756190999917, 48.530163797000064 ], [ -123.365778811999945, 48.529623996000105 ], [ -123.365513383999954, 48.529499387000094 ], [ -123.365511898999955, 48.529292765000072 ], [ -123.365390573999889, 48.5292931500001 ], [ -123.365164301999968, 48.528860589000011 ], [ -123.365175318999931, 48.528573001000083 ], [ -123.365483179999941, 48.5281855980001 ], [ -123.365444961999941, 48.528111597000077 ], [ -123.365448537999939, 48.527977761000074 ], [ -123.36543407299996, 48.527943555000043 ], [ -123.365358300999929, 48.52794379500007 ], [ -123.365222787, 48.527681400000105 ], [ -123.365395337999928, 48.52713400300005 ], [ -123.365496359999952, 48.527133683000017 ], [ -123.365494417999955, 48.526863798000058 ], [ -123.365454983999925, 48.52686392300015 ], [ -123.365085840999939, 48.526550421000088 ], [ -123.365082682, 48.526110801000101 ], [ -123.365794824999952, 48.524153604000048 ], [ -123.366268394999949, 48.522451714000098 ], [ -123.366396387999927, 48.52140779100003 ], [ -123.366443602999979, 48.520292589000043 ], [ -123.366391513999943, 48.519408960000121 ], [ -123.366615759999931, 48.51939846500003 ], [ -123.366689814999958, 48.519393170000093 ], [ -123.366724810999955, 48.519727287000059 ], [ -123.366814656999935, 48.520584850000049 ], [ -123.366757079999971, 48.520889024000049 ], [ -123.366810620999956, 48.520914292000043 ], [ -123.366707445999964, 48.521661600000137 ], [ -123.366635772999985, 48.521955996000052 ], [ -123.366619119999939, 48.52207544100002 ], [ -123.366291969999921, 48.523523133000076 ], [ -123.366043884999939, 48.524279237000052 ], [ -123.365793921999924, 48.525517383000086 ], [ -123.365659529999988, 48.526028022000062 ], [ -123.365873486999973, 48.526026608000066 ], [ -123.366215396999976, 48.526030588 ], [ -123.367313996999968, 48.526042493 ], [ -123.368377404999961, 48.526055412000055 ], [ -123.368450457999941, 48.526667049000046 ], [ -123.368462201999961, 48.526765292000071 ], [ -123.36861590299999, 48.527039607000113 ], [ -123.369159585999938, 48.527596331000112 ], [ -123.369694185999933, 48.528143812000103 ], [ -123.370022206999963, 48.528372901000054 ], [ -123.370101628000015, 48.528403750000081 ], [ -123.370274993999928, 48.528471113000066 ], [ -123.371039908999961, 48.528551394000075 ], [ -123.372188122999916, 48.528646497000068 ], [ -123.3730896799999, 48.528602090000057 ], [ -123.373525393999969, 48.529277494000034 ], [ -123.374004171999928, 48.529853351000057 ], [ -123.374114701999929, 48.529986314000055 ], [ -123.374148063999939, 48.530034827000058 ], [ -123.374596554999982, 48.530687 ], [ -123.375090515999943, 48.531405297000127 ], [ -123.375279200999927, 48.53157664900008 ], [ -123.375356991999965, 48.53164729100007 ], [ -123.375696487999974, 48.531815189000078 ], [ -123.376884105999977, 48.532175483000039 ], [ -123.377355299999977, 48.532383687000042 ], [ -123.377790512999937, 48.532777697000093 ], [ -123.378105918999978, 48.533306591000077 ], [ -123.378361333, 48.533818333000127 ], [ -123.378590439999954, 48.534277398000029 ], [ -123.379136615999968, 48.535371641000097 ], [ -123.379287187999978, 48.535697541000054 ], [ -123.379386502, 48.53591248900009 ], [ -123.379769239999959, 48.536593664000115 ], [ -123.380577642, 48.53767215800012 ], [ -123.381275668999976, 48.538740717000103 ], [ -123.381447454, 48.539008229000096 ], [ -123.38059328199995, 48.53926489200007 ], [ -123.380946305999927, 48.539728893000074 ], [ -123.381158815999981, 48.540164203000046 ], [ -123.381812701999962, 48.541053098000063 ], [ -123.382443921999979, 48.542039958000075 ], [ -123.382542369999911, 48.542462096000101 ], [ -123.382271137999979, 48.54246299700003 ], [ -123.382270574999936, 48.542388232000135 ], [ -123.38217174199994, 48.542385794000069 ], [ -123.382194247999962, 48.541980263000049 ], [ -123.380073491999951, 48.541927940000072 ], [ -123.380125087999886, 48.540998991000045 ], [ -123.379360821999953, 48.540980125000026 ], [ -123.379392270999972, 48.540414061000014 ], [ -123.378191158999954, 48.540384399000054 ], [ -123.378194681000011, 48.540857116000041 ], [ -123.377788254999942, 48.540858449000055 ], [ -123.377790262999966, 48.541128333000088 ], [ -123.377383832999953, 48.541129667000064 ], [ -123.377385840999978, 48.54139955100009 ], [ -123.376289481999947, 48.541403140000085 ], [ -123.376166546999954, 48.541403541000101 ], [ -123.376158624, 48.540334174000066 ], [ -123.374505584999937, 48.540293299000076 ], [ -123.374585548999988, 48.538856572000057 ], [ -123.372458997999956, 48.53880394900002 ], [ -123.372472336999962, 48.538564456000074 ], [ -123.372069911999958, 48.538554493000028 ], [ -123.372042063999956, 48.539054395000107 ], [ -123.370458947999936, 48.539015186000029 ], [ -123.370460755999929, 48.539262916000091 ], [ -123.3708671699999, 48.53926160800011 ], [ -123.370871112999964, 48.539801377000053 ], [ -123.37127753, 48.539800067000044 ], [ -123.371283450999897, 48.540609720000056 ], [ -123.370064176999961, 48.540613646000061 ], [ -123.370062209999972, 48.540343762000084 ], [ -123.369655786999957, 48.540345067000032 ], [ -123.369653821999975, 48.540075182000095 ], [ -123.369247401999928, 48.540076487000093 ], [ -123.369245438999926, 48.539806602000098 ], [ -123.368839019999939, 48.539807905000039 ], [ -123.36883706, 48.53953802000013 ], [ -123.368430642999982, 48.539539322000081 ], [ -123.368428683999966, 48.539269437000051 ], [ -123.368022270999958, 48.539270737000116 ], [ -123.368020314999967, 48.539000852000072 ], [ -123.367207488999981, 48.539003447 ], [ -123.367206989999943, 48.53893457100007 ], [ -123.366639578000019, 48.538920495000106 ], [ -123.366649913999979, 48.538735334000073 ], [ -123.365986306999901, 48.538737445000024 ], [ -123.365992144999979, 48.539547099000075 ], [ -123.365585728000013, 48.539548391000032 ], [ -123.365595443999908, 48.540897814000132 ], [ -123.366001873999934, 48.540896522000061 ], [ -123.366003817999967, 48.541166407000063 ], [ -123.366410247999923, 48.541165115000112 ], [ -123.366416091999895, 48.541974768000031 ], [ -123.365684107999982, 48.541977095000085 ], [ -123.36568295299999, 48.541997796000082 ], [ -123.366822906999957, 48.54202608100011 ], [ -123.366820575999938, 48.541703589000136 ], [ -123.368039878, 48.541699698000052 ], [ -123.368041834999957, 48.541969582000092 ], [ -123.368448270999977, 48.541968283000074 ], [ -123.368448981999947, 48.542066406000103 ], [ -123.368983405999984, 48.54207965500003 ], [ -123.36898234899995, 48.542098612000075 ], [ -123.370294160999904, 48.542131119000047 ], [ -123.370258422999939, 48.542772148000054 ], [ -123.371299242999953, 48.542768795000029 ], [ -123.371301216999953, 48.543038680000031 ], [ -123.372520550999951, 48.543034740000081 ], [ -123.37252253199992, 48.543304625000111 ], [ -123.374554762999978, 48.543298032000088 ], [ -123.374552770999941, 48.543028147000037 ], [ -123.375597352999975, 48.543024744000014 ], [ -123.375642391, 48.542215296000066 ], [ -123.376300855999887, 48.542231573000059 ], [ -123.381045278999977, 48.542348737000118 ], [ -123.380873829999942, 48.545436426000094 ], [ -123.381074106999975, 48.545435763000093 ], [ -123.381072079999953, 48.545165878000084 ], [ -123.382291462999888, 48.545161836000034 ], [ -123.382297561000016, 48.54597148800007 ], [ -123.382704027999964, 48.54597013799999 ], [ -123.382714202999921, 48.547319556000033 ], [ -123.381494767999953, 48.547323604000056 ], [ -123.381502882999939, 48.548403139000094 ], [ -123.380484311999965, 48.548406509000124 ], [ -123.380440879999966, 48.549188474000125 ], [ -123.384132564999931, 48.549279500000111 ], [ -123.384465420999959, 48.550706237000078 ], [ -123.38070090799999, 48.550699250000029 ], [ -123.377855739, 48.550693864000081 ], [ -123.37630606099999, 48.550690931000055 ], [ -123.369322994999948, 48.550466916000069 ], [ -123.369320048999896, 48.550062205000131 ], [ -123.371344653999984, 48.550055694000037 ] ], [ [ -123.381088291, 48.547324950000103 ], [ -123.381084237999914, 48.546785182000043 ], [ -123.379458341999964, 48.546790552000083 ], [ -123.379456323999975, 48.546520668000049 ], [ -123.378643381999893, 48.546523344000072 ], [ -123.378638700999915, 48.545895893000043 ], [ -123.378479655999939, 48.545891965000102 ], [ -123.378391328999925, 48.547481041000012 ], [ -123.378418879999927, 48.547481721000068 ], [ -123.378409710999946, 48.547646685000075 ], [ -123.380278071999967, 48.547692807000097 ], [ -123.380275333999975, 48.547327637000073 ], [ -123.381088291, 48.547324950000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "305935229", "BldgCostT": "197609858", "sL_LossRatio": "0.920351134513449", "sL_AssetLoss": "501429.49", "sL_BldgLoss": "461491.2", "sL_StrLoss": "364834.2", "sL_NStrLoss": "96657", "sL_ContLoss": "39938.29", "geom_point": "0101000020E6100000BF1691B41DD85EC0742F1FFF3B434840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.374596554999982, 48.530687 ], [ -123.374148063999939, 48.530034827000058 ], [ -123.374114701999929, 48.529986314000055 ], [ -123.374004171999928, 48.529853351000057 ], [ -123.373525393999969, 48.529277494000034 ], [ -123.3730896799999, 48.528602090000057 ], [ -123.372813832999924, 48.527853118000095 ], [ -123.372705590999956, 48.527559307000082 ], [ -123.37270781499997, 48.527478144000085 ], [ -123.37274559199993, 48.526088799000057 ], [ -123.372682687999941, 48.525179211000122 ], [ -123.372496649999974, 48.524580181000061 ], [ -123.372137265999953, 48.523423074000114 ], [ -123.37202843399993, 48.523072733000021 ], [ -123.372025679, 48.523063899000128 ], [ -123.371995232999922, 48.522974232000124 ], [ -123.371924608999947, 48.52276653400007 ], [ -123.371450682, 48.521372504000041 ], [ -123.370889952999946, 48.520533958000065 ], [ -123.370779274999933, 48.5203685030001 ], [ -123.370051401999959, 48.519236910000068 ], [ -123.369305094999945, 48.518219383000073 ], [ -123.369688594999928, 48.518105308000067 ], [ -123.369910003999934, 48.518136086000062 ], [ -123.370313380999946, 48.518338473000057 ], [ -123.371426315999884, 48.518896799000125 ], [ -123.37157742299992, 48.518986093000066 ], [ -123.372233915999985, 48.519373992000084 ], [ -123.372356389999979, 48.519359009000027 ], [ -123.372413589999894, 48.519302715000045 ], [ -123.372414475999918, 48.519247102000072 ], [ -123.372426589999947, 48.518486092000018 ], [ -123.372484377999982, 48.518273790000094 ], [ -123.372580411999976, 48.51815179000009 ], [ -123.372721699999914, 48.518042491000067 ], [ -123.372940897999982, 48.517966791000084 ], [ -123.37313150199995, 48.517942685000058 ], [ -123.37409541199996, 48.517942208000072 ], [ -123.376756598999975, 48.517978300000053 ], [ -123.37818384699996, 48.518009062000083 ], [ -123.378185135999942, 48.519591547000068 ], [ -123.37817533399999, 48.520002261000073 ], [ -123.378158342999953, 48.520714050000059 ], [ -123.378152559999961, 48.520956759000057 ], [ -123.378165925999895, 48.521012680000062 ], [ -123.378204118000014, 48.521172646000053 ], [ -123.378577802, 48.521498464000011 ], [ -123.378959783999932, 48.521831508000105 ], [ -123.379293014999945, 48.52213730800004 ], [ -123.37936918599992, 48.522298802000094 ], [ -123.379356867999945, 48.523055859000053 ], [ -123.379343467999931, 48.523372435000056 ], [ -123.379300379999947, 48.524388904000041 ], [ -123.37866432499996, 48.524352444000016 ], [ -123.378056402999945, 48.524317600000117 ], [ -123.377980500999968, 48.524539393000047 ], [ -123.3779564969999, 48.52618879900006 ], [ -123.380059101999947, 48.526236287000138 ], [ -123.38076266799996, 48.526252655000121 ], [ -123.381987394999953, 48.526281095000037 ], [ -123.384075550999967, 48.526346165000056 ], [ -123.384080827999938, 48.52637622100012 ], [ -123.384274271999985, 48.527484491000052 ], [ -123.384409088999973, 48.528256903000091 ], [ -123.384453648000019, 48.528870335000107 ], [ -123.384526411999985, 48.529871986000053 ], [ -123.3844543299999, 48.530686207 ], [ -123.383621810999941, 48.530652110000034 ], [ -123.383205385999986, 48.530637203000083 ], [ -123.381596079999937, 48.530579589000055 ], [ -123.381202585999972, 48.530605098000073 ], [ -123.380657700999933, 48.530795282000064 ], [ -123.379844299999945, 48.53107918600012 ], [ -123.379696421999967, 48.531163978000095 ], [ -123.37929680499991, 48.5313929960001 ], [ -123.379121688999973, 48.531482343000057 ], [ -123.378563113, 48.531767385000137 ], [ -123.377555636999929, 48.532281474000065 ], [ -123.377355299999977, 48.532383687000042 ], [ -123.376884105999977, 48.532175483000039 ], [ -123.375696487999974, 48.531815189000078 ], [ -123.375356991999965, 48.53164729100007 ], [ -123.375279200999927, 48.53157664900008 ], [ -123.375090515999943, 48.531405297000127 ], [ -123.374596554999982, 48.530687 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199602250", "BldgCostT": "127195000", "sL_LossRatio": "0.873554954855111", "sL_AssetLoss": "379871.35", "sL_BldgLoss": "331838.5", "sL_StrLoss": "238498.5", "sL_NStrLoss": "93340", "sL_ContLoss": "48032.85", "geom_point": "0101000020E610000079476BB180D85EC05CDFB873FE424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.384526411999985, 48.529871986000053 ], [ -123.384453648000019, 48.528870335000107 ], [ -123.384409088999973, 48.528256903000091 ], [ -123.384274271999985, 48.527484491000052 ], [ -123.384080827999938, 48.52637622100012 ], [ -123.384075550999967, 48.526346165000056 ], [ -123.381987394999953, 48.526281095000037 ], [ -123.38076266799996, 48.526252655000121 ], [ -123.380059101999947, 48.526236287000138 ], [ -123.3779564969999, 48.52618879900006 ], [ -123.377980500999968, 48.524539393000047 ], [ -123.378056402999945, 48.524317600000117 ], [ -123.37866432499996, 48.524352444000016 ], [ -123.379300379999947, 48.524388904000041 ], [ -123.379343467999931, 48.523372435000056 ], [ -123.379356867999945, 48.523055859000053 ], [ -123.37936918599992, 48.522298802000094 ], [ -123.379293014999945, 48.52213730800004 ], [ -123.378959783999932, 48.521831508000105 ], [ -123.378577802, 48.521498464000011 ], [ -123.378204118000014, 48.521172646000053 ], [ -123.378165925999895, 48.521012680000062 ], [ -123.378152559999961, 48.520956759000057 ], [ -123.378158342999953, 48.520714050000059 ], [ -123.37817533399999, 48.520002261000073 ], [ -123.378185135999942, 48.519591547000068 ], [ -123.37818384699996, 48.518009062000083 ], [ -123.380223465999961, 48.518039600000058 ], [ -123.382510083999961, 48.518078020000061 ], [ -123.385059397999939, 48.518131898000071 ], [ -123.385061431999986, 48.518140816000027 ], [ -123.385666387999962, 48.520817588000121 ], [ -123.385682787999912, 48.520903703000059 ], [ -123.385930134999967, 48.522204592000051 ], [ -123.38593651099994, 48.522238101000056 ], [ -123.385997375999963, 48.522485758000094 ], [ -123.386001734, 48.522503462000024 ], [ -123.386148309999982, 48.52309990500008 ], [ -123.386300720999955, 48.523643705000026 ], [ -123.38636874299999, 48.523636044000035 ], [ -123.386491198999977, 48.523622307000103 ], [ -123.38666869099994, 48.524322689000023 ], [ -123.386750296999949, 48.525071295000025 ], [ -123.386720016999931, 48.526571810000036 ], [ -123.386771605999982, 48.526978570000097 ], [ -123.386624137999888, 48.526974938000087 ], [ -123.386624200999961, 48.526983429000097 ], [ -123.386794806999987, 48.527603877000075 ], [ -123.386901540999958, 48.527603518000099 ], [ -123.386936483999975, 48.527740314000035 ], [ -123.387038672999921, 48.528052491000061 ], [ -123.38704210899999, 48.528503215000043 ], [ -123.387108997999945, 48.52874646100004 ], [ -123.387165543999984, 48.52895208800004 ], [ -123.387173219999937, 48.528952062000066 ], [ -123.387332976999957, 48.528951524000036 ], [ -123.387454700999967, 48.529323361000131 ], [ -123.387458038999966, 48.529760777000043 ], [ -123.38759774499999, 48.529760307000096 ], [ -123.387936912999947, 48.530796308000056 ], [ -123.38782428899999, 48.530793567000082 ], [ -123.387747883999936, 48.530791700000123 ], [ -123.38624104899999, 48.530743431000076 ], [ -123.385482342999978, 48.530719148000102 ], [ -123.3851161199999, 48.530707420000084 ], [ -123.3844543299999, 48.530686207 ], [ -123.384526411999985, 48.529871986000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134713584", "BldgCostT": "89543334", "sL_LossRatio": "0.84648432404791", "sL_AssetLoss": "462290.9", "sL_BldgLoss": "391322", "sL_StrLoss": "267570", "sL_NStrLoss": "123752", "sL_ContLoss": "70968.9", "geom_point": "0101000020E610000094FD2DE029D85EC07189652B16424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.369910003999934, 48.518136086000062 ], [ -123.369688594999928, 48.518105308000067 ], [ -123.369305094999945, 48.518219383000073 ], [ -123.369012500999958, 48.517818095000038 ], [ -123.368647009999947, 48.517220196000046 ], [ -123.369169674999966, 48.517229809000114 ], [ -123.369919179999954, 48.517243588000063 ], [ -123.370493665999959, 48.517121707000122 ], [ -123.37121037899999, 48.51687619900013 ], [ -123.37160585399999, 48.516715519000051 ], [ -123.371716595999942, 48.516670527000088 ], [ -123.371800032999914, 48.516604960000116 ], [ -123.371821715999943, 48.516541740000079 ], [ -123.37183715499998, 48.516496790000119 ], [ -123.371825681999951, 48.51631666400003 ], [ -123.371825114999979, 48.516307656000116 ], [ -123.371813332999935, 48.516122889000044 ], [ -123.371679968999928, 48.515799501000032 ], [ -123.371777451999932, 48.514096825000081 ], [ -123.372275845999965, 48.514135317000033 ], [ -123.372551409999929, 48.514156584000034 ], [ -123.372923897999939, 48.514166698000075 ], [ -123.374152998999946, 48.514185409000042 ], [ -123.375296722999934, 48.514199568000087 ], [ -123.375388984999972, 48.514200698000096 ], [ -123.376499380999945, 48.514214593000048 ], [ -123.376892546999926, 48.514219310000023 ], [ -123.377769200000017, 48.514229804000131 ], [ -123.377897616, 48.514231097000035 ], [ -123.37853740599995, 48.514239815000046 ], [ -123.378543176999955, 48.514239900000085 ], [ -123.378924621999943, 48.51424438500009 ], [ -123.379227857999979, 48.514247975000075 ], [ -123.379642584999957, 48.514252867000081 ], [ -123.380153513999986, 48.514258926000089 ], [ -123.380847824999933, 48.514265018000039 ], [ -123.381399229999943, 48.514269860000063 ], [ -123.381616812999937, 48.514270731000046 ], [ -123.383765438999944, 48.514283152000054 ], [ -123.384044959999969, 48.514287400000065 ], [ -123.384236820999988, 48.514290302000042 ], [ -123.384311391, 48.514638694000034 ], [ -123.384499921, 48.515519156000096 ], [ -123.385059397999939, 48.518131898000071 ], [ -123.382510083999961, 48.518078020000061 ], [ -123.380223465999961, 48.518039600000058 ], [ -123.37818384699996, 48.518009062000083 ], [ -123.376756598999975, 48.517978300000053 ], [ -123.37409541199996, 48.517942208000072 ], [ -123.37313150199995, 48.517942685000058 ], [ -123.372940897999982, 48.517966791000084 ], [ -123.372721699999914, 48.518042491000067 ], [ -123.372580411999976, 48.51815179000009 ], [ -123.372484377999982, 48.518273790000094 ], [ -123.372426589999947, 48.518486092000018 ], [ -123.372414475999918, 48.519247102000072 ], [ -123.372413589999894, 48.519302715000045 ], [ -123.372356389999979, 48.519359009000027 ], [ -123.372233915999985, 48.519373992000084 ], [ -123.37157742299992, 48.518986093000066 ], [ -123.371426315999884, 48.518896799000125 ], [ -123.370313380999946, 48.518338473000057 ], [ -123.369910003999934, 48.518136086000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144254584", "BldgCostT": "93648334", "sL_LossRatio": "0.884265048287398", "sL_AssetLoss": "358132.78", "sL_BldgLoss": "316684.3", "sL_StrLoss": "217457.4", "sL_NStrLoss": "99226.9", "sL_ContLoss": "41448.48", "geom_point": "0101000020E6100000F727D0AB6AD75EC07C9518782C424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.366724810999955, 48.519727287000059 ], [ -123.366689814999958, 48.519393170000093 ], [ -123.366615759999931, 48.51939846500003 ], [ -123.366391513999943, 48.519408960000121 ], [ -123.366320606999949, 48.518206085000038 ], [ -123.366071381999959, 48.51747690000014 ], [ -123.365417700999956, 48.516199464000159 ], [ -123.365416757999952, 48.516068377000124 ], [ -123.365350730999936, 48.516068587000063 ], [ -123.364669997999911, 48.514738195000035 ], [ -123.364185189999944, 48.514274972000102 ], [ -123.364184274999928, 48.514147339000075 ], [ -123.364038437999938, 48.513989861000077 ], [ -123.363926287999931, 48.513913963000029 ], [ -123.363776385000023, 48.513914437000039 ], [ -123.363775651999973, 48.513812019000113 ], [ -123.363688237999924, 48.5137528610001 ], [ -123.362878638999945, 48.513751361000061 ], [ -123.36272813799998, 48.513729561000112 ], [ -123.362494904999934, 48.51364858700007 ], [ -123.362262909999941, 48.513649318000056 ], [ -123.362149270999936, 48.513601446000045 ], [ -123.362148466999955, 48.513488706000018 ], [ -123.362002019999977, 48.51338024600004 ], [ -123.361626980999986, 48.513381425000027 ], [ -123.361220090999922, 48.513210013000105 ], [ -123.360926335, 48.512998647000117 ], [ -123.360925234999911, 48.512843844000052 ], [ -123.360712117999952, 48.51284451100004 ], [ -123.360518035999988, 48.512704860000078 ], [ -123.360516470000022, 48.512484094000044 ], [ -123.360185737999984, 48.512318461000106 ], [ -123.360168401999886, 48.512306430000116 ], [ -123.36010900299999, 48.512306616000039 ], [ -123.360108707999956, 48.512264998000077 ], [ -123.359781287999951, 48.512037749000108 ], [ -123.3597008939999, 48.512037999000043 ], [ -123.359700496999977, 48.51198167400004 ], [ -123.359491382999963, 48.511836534000082 ], [ -123.360014199999966, 48.51180300200005 ], [ -123.362043218999972, 48.511848899000043 ], [ -123.36240021299993, 48.512160806000082 ], [ -123.362760692, 48.512357128000147 ], [ -123.362970909999945, 48.51247160900008 ], [ -123.363313448999961, 48.512598092000154 ], [ -123.36343180099999, 48.512641807000072 ], [ -123.364298797999979, 48.51289778600006 ], [ -123.36467581, 48.513119010000032 ], [ -123.364788480999934, 48.513036199000105 ], [ -123.364845213999942, 48.511826608000057 ], [ -123.364891867999944, 48.511717795000088 ], [ -123.365042894999974, 48.511554710000027 ], [ -123.365056509999988, 48.5114323970001 ], [ -123.365160891999949, 48.510603604000089 ], [ -123.366235186000011, 48.510607806000102 ], [ -123.366409504999979, 48.511772615000041 ], [ -123.366607416999955, 48.512707101000039 ], [ -123.366691791999983, 48.512905970000062 ], [ -123.367206667999966, 48.51411905700008 ], [ -123.367667206999954, 48.515204086000018 ], [ -123.368269391999959, 48.516282106000048 ], [ -123.36835553899999, 48.516496141000104 ], [ -123.368608220999974, 48.517123822000045 ], [ -123.368647009999947, 48.517220196000046 ], [ -123.369012500999958, 48.517818095000038 ], [ -123.369305094999945, 48.518219383000073 ], [ -123.368649795999929, 48.518381590000075 ], [ -123.368508709999915, 48.518367309000112 ], [ -123.36705919799999, 48.518008617000127 ], [ -123.36717551299995, 48.519729196000121 ], [ -123.36724015399993, 48.521387737000119 ], [ -123.367258921999962, 48.521868202000128 ], [ -123.367276531999934, 48.521930817000154 ], [ -123.36757489699994, 48.522989602000074 ], [ -123.36778184399995, 48.523591456000105 ], [ -123.36789480499999, 48.523919993000057 ], [ -123.36791811199997, 48.523978495000094 ], [ -123.368175906999937, 48.524625711000063 ], [ -123.368384579999926, 48.525310989000033 ], [ -123.368387300999956, 48.525319893000074 ], [ -123.368377404999961, 48.526055412000055 ], [ -123.367313996999968, 48.526042493 ], [ -123.366215396999976, 48.526030588 ], [ -123.365873486999973, 48.526026608000066 ], [ -123.365659529999988, 48.526028022000062 ], [ -123.365793921999924, 48.525517383000086 ], [ -123.366043884999939, 48.524279237000052 ], [ -123.366291969999921, 48.523523133000076 ], [ -123.366619119999939, 48.52207544100002 ], [ -123.366635772999985, 48.521955996000052 ], [ -123.366707445999964, 48.521661600000137 ], [ -123.366810620999956, 48.520914292000043 ], [ -123.366757079999971, 48.520889024000049 ], [ -123.366814656999935, 48.520584850000049 ], [ -123.366724810999955, 48.519727287000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198493228", "BldgCostT": "123809857", "sL_LossRatio": "0.863345215141215", "sL_AssetLoss": "326325.2", "sL_BldgLoss": "281731.3", "sL_StrLoss": "205291.6", "sL_NStrLoss": "76439.7", "sL_ContLoss": "44593.9", "geom_point": "0101000020E610000001FBC7C6ACD75EC00B20091C05434840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36717551299995, 48.519729196000121 ], [ -123.36705919799999, 48.518008617000127 ], [ -123.368508709999915, 48.518367309000112 ], [ -123.368649795999929, 48.518381590000075 ], [ -123.369305094999945, 48.518219383000073 ], [ -123.370051401999959, 48.519236910000068 ], [ -123.370779274999933, 48.5203685030001 ], [ -123.370889952999946, 48.520533958000065 ], [ -123.371450682, 48.521372504000041 ], [ -123.371924608999947, 48.52276653400007 ], [ -123.371995232999922, 48.522974232000124 ], [ -123.372025679, 48.523063899000128 ], [ -123.37202843399993, 48.523072733000021 ], [ -123.372137265999953, 48.523423074000114 ], [ -123.372496649999974, 48.524580181000061 ], [ -123.372682687999941, 48.525179211000122 ], [ -123.37274559199993, 48.526088799000057 ], [ -123.37270781499997, 48.527478144000085 ], [ -123.372705590999956, 48.527559307000082 ], [ -123.372813832999924, 48.527853118000095 ], [ -123.3730896799999, 48.528602090000057 ], [ -123.372188122999916, 48.528646497000068 ], [ -123.371039908999961, 48.528551394000075 ], [ -123.370274993999928, 48.528471113000066 ], [ -123.370101628000015, 48.528403750000081 ], [ -123.370022206999963, 48.528372901000054 ], [ -123.369694185999933, 48.528143812000103 ], [ -123.369159585999938, 48.527596331000112 ], [ -123.36861590299999, 48.527039607000113 ], [ -123.368462201999961, 48.526765292000071 ], [ -123.368450457999941, 48.526667049000046 ], [ -123.368377404999961, 48.526055412000055 ], [ -123.368387300999956, 48.525319893000074 ], [ -123.368384579999926, 48.525310989000033 ], [ -123.368175906999937, 48.524625711000063 ], [ -123.36791811199997, 48.523978495000094 ], [ -123.36789480499999, 48.523919993000057 ], [ -123.36778184399995, 48.523591456000105 ], [ -123.36757489699994, 48.522989602000074 ], [ -123.367276531999934, 48.521930817000154 ], [ -123.367258921999962, 48.521868202000128 ], [ -123.36724015399993, 48.521387737000119 ], [ -123.36717551299995, 48.519729196000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140877084", "BldgCostT": "94658334", "sL_LossRatio": "0.939615293593363", "sL_AssetLoss": "191880.87", "sL_BldgLoss": "180294.2", "sL_StrLoss": "147683.4", "sL_NStrLoss": "32610.8", "sL_ContLoss": "11586.67", "geom_point": "0101000020E61000004062A2DE9FD65EC064E77E98CE404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.359467937999966, 48.511820262000178 ], [ -123.359405798999887, 48.511769030000046 ], [ -123.359292789, 48.511769382000111 ], [ -123.359292124999925, 48.511675308000129 ], [ -123.359136939, 48.511547361000034 ], [ -123.359066850999909, 48.511500194000043 ], [ -123.358884688999922, 48.511500762000047 ], [ -123.358883814999956, 48.511377014000054 ], [ -123.358667665000027, 48.511231547000058 ], [ -123.358476591999946, 48.511232142000054 ], [ -123.358475818999963, 48.511122555000057 ], [ -123.358174037999959, 48.510963191000066 ], [ -123.358032371999983, 48.51096363300006 ], [ -123.357660851999967, 48.510757446000085 ], [ -123.357660412999962, 48.510694896000118 ], [ -123.357548772999962, 48.510695243000093 ], [ -123.357253067, 48.510531129000078 ], [ -123.357252682999928, 48.510476637000082 ], [ -123.357238337999945, 48.510469061000087 ], [ -123.35717942699992, 48.510426498000122 ], [ -123.357065177999957, 48.510426852000059 ], [ -123.356845283999931, 48.510304810000044 ], [ -123.356844439, 48.510184469000087 ], [ -123.356807468999975, 48.510157759000073 ], [ -123.356581590999966, 48.510158459000081 ], [ -123.356437504999988, 48.510078490000112 ], [ -123.356436179999918, 48.509889498000085 ], [ -123.35643551699999, 48.509889019000084 ], [ -123.356166868999964, 48.509889850000079 ], [ -123.354880215999955, 48.508884704000067 ], [ -123.353684104, 48.508411791000043 ], [ -123.353043694999926, 48.507793710000058 ], [ -123.351154284999936, 48.506764006000019 ], [ -123.350218403999918, 48.506335408000105 ], [ -123.348722276999922, 48.505493699000084 ], [ -123.347081101999905, 48.505094905000135 ], [ -123.346144402999954, 48.504737405000057 ], [ -123.345752551999951, 48.504511520000108 ], [ -123.344202584999948, 48.503617992000066 ], [ -123.34377310099994, 48.503338012 ], [ -123.343982257999983, 48.502971696 ], [ -123.344045361999974, 48.502466252000033 ], [ -123.34568936699999, 48.502161498000063 ], [ -123.347334082999936, 48.502278898000029 ], [ -123.351048993999953, 48.50225833000011 ], [ -123.352625614999951, 48.502237378000068 ], [ -123.354817994999962, 48.502809708000079 ], [ -123.354252165999952, 48.503718069000065 ], [ -123.354162169999967, 48.5039006720001 ], [ -123.354146800999942, 48.504632497000053 ], [ -123.35426429799999, 48.505069093000053 ], [ -123.35439861299993, 48.505349283000051 ], [ -123.354648094999959, 48.505595411000073 ], [ -123.355137612999954, 48.506078297000037 ], [ -123.355777997999894, 48.506540602000022 ], [ -123.356199986999925, 48.50677086000011 ], [ -123.356528305999973, 48.506950006000061 ], [ -123.357016084999941, 48.507216200000087 ], [ -123.357315006999926, 48.507430084000056 ], [ -123.357729707999979, 48.508060795000098 ], [ -123.35797619, 48.508317595000136 ], [ -123.35843850099999, 48.50867989500005 ], [ -123.358831386999938, 48.50849399100008 ], [ -123.359312007999947, 48.508044299000034 ], [ -123.359419416999955, 48.508107385000109 ], [ -123.359658003999954, 48.50818999800002 ], [ -123.360355911999974, 48.508351589000029 ], [ -123.361080600999983, 48.50851659600005 ], [ -123.361291679, 48.508535400000042 ], [ -123.361667005999919, 48.508519484000047 ], [ -123.362125413999948, 48.508419983000046 ], [ -123.362345302999969, 48.508596794000034 ], [ -123.362854530999968, 48.508869098000034 ], [ -123.362678595999981, 48.509284097000013 ], [ -123.362651291999939, 48.509675605000048 ], [ -123.362648393999962, 48.50989648500007 ], [ -123.362592510999932, 48.510051100000155 ], [ -123.362470401999929, 48.510178796000027 ], [ -123.362069413999905, 48.51041410900006 ], [ -123.361591691999962, 48.510543790000042 ], [ -123.361809993999913, 48.51106409300008 ], [ -123.361915025999963, 48.511417560000098 ], [ -123.362043218999972, 48.511848899000043 ], [ -123.360014199999966, 48.51180300200005 ], [ -123.359491382999963, 48.511836534000082 ], [ -123.359467937999966, 48.511820262000178 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140904083", "BldgCostT": "95288333", "sL_LossRatio": "0.961035741723445", "sL_AssetLoss": "154505.7", "sL_BldgLoss": "148485.5", "sL_StrLoss": "131433.8", "sL_NStrLoss": "17051.7", "sL_ContLoss": "6020.2", "geom_point": "0101000020E6100000208EBFFEF5D65EC047E261B1B8404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.357729707999979, 48.508060795000098 ], [ -123.357315006999926, 48.507430084000056 ], [ -123.357016084999941, 48.507216200000087 ], [ -123.356528305999973, 48.506950006000061 ], [ -123.356199986999925, 48.50677086000011 ], [ -123.355777997999894, 48.506540602000022 ], [ -123.355137612999954, 48.506078297000037 ], [ -123.354648094999959, 48.505595411000073 ], [ -123.35439861299993, 48.505349283000051 ], [ -123.35426429799999, 48.505069093000053 ], [ -123.354146800999942, 48.504632497000053 ], [ -123.354162169999967, 48.5039006720001 ], [ -123.354252165999952, 48.503718069000065 ], [ -123.355509765999969, 48.503534660000085 ], [ -123.355935474999953, 48.503472554000084 ], [ -123.356324278999963, 48.503415818000093 ], [ -123.35648001399997, 48.503393106000104 ], [ -123.357387593999988, 48.503224132000113 ], [ -123.357483797999976, 48.503206195000097 ], [ -123.357995725, 48.503067503000068 ], [ -123.358134483999933, 48.503006842000111 ], [ -123.35969960300001, 48.502322702000065 ], [ -123.360350995999951, 48.502999884000062 ], [ -123.360521706000029, 48.503283685000049 ], [ -123.360524090999945, 48.503772502000082 ], [ -123.360356687999953, 48.504639300000079 ], [ -123.36070759399999, 48.504598508000043 ], [ -123.361525200999921, 48.504600802000034 ], [ -123.361799010999931, 48.504658989000092 ], [ -123.362270798999944, 48.504849290000045 ], [ -123.362591395999971, 48.505158404000063 ], [ -123.36268811099994, 48.505363701000071 ], [ -123.3626841009999, 48.505555687000026 ], [ -123.362665990999986, 48.506485803000025 ], [ -123.362663455999979, 48.506998491000076 ], [ -123.36266129099999, 48.507439702000077 ], [ -123.362658607999904, 48.507899490000064 ], [ -123.362389800999964, 48.508235403000121 ], [ -123.362125413999948, 48.508419983000046 ], [ -123.361667005999919, 48.508519484000047 ], [ -123.361291679, 48.508535400000042 ], [ -123.361080600999983, 48.50851659600005 ], [ -123.360355911999974, 48.508351589000029 ], [ -123.359658003999954, 48.50818999800002 ], [ -123.359419416999955, 48.508107385000109 ], [ -123.359312007999947, 48.508044299000034 ], [ -123.358831386999938, 48.50849399100008 ], [ -123.35843850099999, 48.50867989500005 ], [ -123.35797619, 48.508317595000136 ], [ -123.357729707999979, 48.508060795000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "366665166", "BldgCostT": "244581666", "sL_LossRatio": "0.774224299665191", "sL_AssetLoss": "2462001", "sL_BldgLoss": "1906141", "sL_StrLoss": "1012746", "sL_NStrLoss": "893395", "sL_ContLoss": "555860", "geom_point": "0101000020E6100000FE16329131D85EC043AD07FEFD3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.371083988999928, 48.495870707000066 ], [ -123.370830397999939, 48.495861703000116 ], [ -123.37040349599999, 48.495884409000112 ], [ -123.370028405, 48.495269205000085 ], [ -123.36986691599999, 48.495086593000053 ], [ -123.369697570999932, 48.494905316000072 ], [ -123.369622098999969, 48.494824489000102 ], [ -123.369423198999968, 48.494683406000043 ], [ -123.369126601999966, 48.494599404000049 ], [ -123.36875789, 48.494619984000074 ], [ -123.36835620199993, 48.494602795000112 ], [ -123.368017099999975, 48.494529505000024 ], [ -123.368137396999956, 48.494187992000064 ], [ -123.368313374999929, 48.493916399000064 ], [ -123.368632880999925, 48.493710698000058 ], [ -123.369337214, 48.493365602000097 ], [ -123.3703083179999, 48.492911798000129 ], [ -123.371700796999974, 48.492557699000052 ], [ -123.372111103999899, 48.492394684000054 ], [ -123.372472074999962, 48.492169787000059 ], [ -123.372598203999985, 48.492091209000151 ], [ -123.372770184999965, 48.491890806000079 ], [ -123.372889479999955, 48.491688105000073 ], [ -123.372951701999938, 48.491494005000106 ], [ -123.372970610999971, 48.491085855000044 ], [ -123.372972179999962, 48.49105180400003 ], [ -123.372682981999901, 48.490130297000057 ], [ -123.372687190999969, 48.490078832000094 ], [ -123.372704308999957, 48.48986840599999 ], [ -123.372724473999966, 48.489815318000097 ], [ -123.372788214999943, 48.489647692000084 ], [ -123.37296781699996, 48.489455596000077 ], [ -123.373188190999912, 48.489306010000121 ], [ -123.37363488699999, 48.489096101000044 ], [ -123.374004577999955, 48.489008798000057 ], [ -123.374038141999961, 48.48900105700011 ], [ -123.374932497999978, 48.488794599000101 ], [ -123.375985009999951, 48.488452807000087 ], [ -123.376277482999924, 48.488422139000072 ], [ -123.376939005999972, 48.48835279400005 ], [ -123.377865546999956, 48.488267004000114 ], [ -123.378167998999956, 48.488239012000115 ], [ -123.378610293999927, 48.48813271800006 ], [ -123.379016100999948, 48.487929004000129 ], [ -123.37930193699998, 48.48769767400006 ], [ -123.379772893999927, 48.487316512000056 ], [ -123.380090577999951, 48.487141299 ], [ -123.380314506999966, 48.487074699000111 ], [ -123.38081850199994, 48.487001488000047 ], [ -123.381104968, 48.486963544000091 ], [ -123.381753482999898, 48.486877609000061 ], [ -123.381739190999951, 48.486706375000075 ], [ -123.38173319500001, 48.486634495000075 ], [ -123.38189131099999, 48.486340899000112 ], [ -123.381929491999983, 48.486308528000045 ], [ -123.38241859099999, 48.485894008000116 ], [ -123.382883661999969, 48.486096301000018 ], [ -123.383550476999972, 48.486386393000053 ], [ -123.383893406999988, 48.486508546000074 ], [ -123.384293316999944, 48.486651003000119 ], [ -123.38463019199996, 48.486770988000053 ], [ -123.384430116999951, 48.487505491000029 ], [ -123.384401296999926, 48.487903307000082 ], [ -123.384426922999978, 48.488296196000086 ], [ -123.384626600999979, 48.488982798000059 ], [ -123.384988685999957, 48.489815033000056 ], [ -123.385026203000038, 48.489901241000048 ], [ -123.385222294999934, 48.490351902000036 ], [ -123.385622521999935, 48.491283162000087 ], [ -123.38605628899991, 48.492292534000093 ], [ -123.38595318299997, 48.492890197000051 ], [ -123.385709893999916, 48.492965390000094 ], [ -123.385265206999932, 48.493236586000066 ], [ -123.385047182000037, 48.493465699000048 ], [ -123.38478148899999, 48.493846895000047 ], [ -123.384466491999959, 48.494167302000115 ], [ -123.384090695999944, 48.494438514000052 ], [ -123.383679607, 48.494614989000077 ], [ -123.380954614999951, 48.495388101000117 ], [ -123.380191514000032, 48.495552305000089 ], [ -123.378094982, 48.49588190000005 ], [ -123.377227674999943, 48.496048901000115 ], [ -123.376895113999979, 48.496145656000074 ], [ -123.376513518999943, 48.496256697000071 ], [ -123.376142236999925, 48.496434101000105 ], [ -123.375728166999977, 48.496631969000063 ], [ -123.375691693999954, 48.496649411000121 ], [ -123.37483076800001, 48.496765793000073 ], [ -123.374434987999933, 48.496819310000078 ], [ -123.373894483999933, 48.496891594 ], [ -123.373703708999955, 48.496969803000042 ], [ -123.373584096999977, 48.49707961400005 ], [ -123.37298227799999, 48.496879503000052 ], [ -123.372910092999945, 48.496855496000066 ], [ -123.372822515999957, 48.496803701000083 ], [ -123.37277702399993, 48.496777570000098 ], [ -123.371696406999931, 48.496156405000121 ], [ -123.371083988999928, 48.495870707000066 ] ], [ [ -123.383111757999941, 48.492260304000077 ], [ -123.383107691999925, 48.491720531000091 ], [ -123.382701657999945, 48.49172188200005 ], [ -123.382697595999957, 48.491182109000079 ], [ -123.382291566999967, 48.491183458000059 ], [ -123.382295624999955, 48.491723231000044 ], [ -123.380671490999973, 48.49172861300012 ], [ -123.380665429999965, 48.49091895300004 ], [ -123.381883510999899, 48.490914919000083 ], [ -123.381871352999951, 48.489295600000112 ], [ -123.381465337999913, 48.489296947000085 ], [ -123.381463313999944, 48.489027059000101 ], [ -123.380245276999958, 48.489031090000054 ], [ -123.380247294999904, 48.489300977000028 ], [ -123.377405193999948, 48.489310331000134 ], [ -123.377409198999928, 48.489850104000048 ], [ -123.377003181999925, 48.489851435000041 ], [ -123.37700518199992, 48.4901213220001 ], [ -123.376193140999987, 48.490123978000099 ], [ -123.37619713199993, 48.490663752000067 ], [ -123.375791106999955, 48.49066507800007 ], [ -123.375795096, 48.491204851000056 ], [ -123.375389066999958, 48.491206176000041 ], [ -123.375391058999924, 48.49147606200011 ], [ -123.374985025999948, 48.491477387000067 ], [ -123.37498900699994, 48.492017159000021 ], [ -123.375395042999969, 48.492015836000029 ], [ -123.375399027999933, 48.492555608000075 ], [ -123.375805068999938, 48.492554284000079 ], [ -123.375813044999987, 48.493633830000043 ], [ -123.375406996, 48.493635155000071 ], [ -123.375408988999965, 48.493905042000094 ], [ -123.375002937999966, 48.493906365000058 ], [ -123.37500492699999, 48.494176251000034 ], [ -123.374598874999933, 48.49417757400002 ], [ -123.374599650999954, 48.494282769000108 ], [ -123.374871485999961, 48.494446579000083 ], [ -123.375819030999963, 48.494443490000045 ], [ -123.37582102499999, 48.494713376000085 ], [ -123.377039197999963, 48.494709393000058 ], [ -123.377035194999948, 48.49416961900004 ], [ -123.378659407999947, 48.494164288000057 ], [ -123.378657397999973, 48.493894401 ], [ -123.37906345, 48.493893065000059 ], [ -123.379061437999951, 48.493623178000099 ], [ -123.379467485999967, 48.493621840000067 ], [ -123.379463458, 48.493082067000067 ], [ -123.379869502999938, 48.493080729000027 ], [ -123.379867486999956, 48.492810842000047 ], [ -123.382303741000015, 48.492802776000083 ], [ -123.382301711999958, 48.492532890000064 ], [ -123.382707751999973, 48.492531541000105 ], [ -123.382705720999979, 48.492261654000067 ], [ -123.383111757999941, 48.492260304000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "387507449", "BldgCostT": "250964486", "sL_LossRatio": "0.81080690310604", "sL_AssetLoss": "221322.98", "sL_BldgLoss": "179450.2", "sL_StrLoss": "132755.6", "sL_NStrLoss": "46694.6", "sL_ContLoss": "41872.78", "geom_point": "0101000020E6100000054E44BFF6D85EC00543AA496C3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.385288795999941, 48.497496881000117 ], [ -123.386139484999944, 48.495261808000073 ], [ -123.38649127799999, 48.494276806000059 ], [ -123.386535125999913, 48.493679994000104 ], [ -123.386379698999932, 48.493045006000095 ], [ -123.38632221499995, 48.492911227000079 ], [ -123.38605628899991, 48.492292534000093 ], [ -123.385622521999935, 48.491283162000087 ], [ -123.385222294999934, 48.490351902000036 ], [ -123.385344488999976, 48.490001621000083 ], [ -123.385777678999929, 48.488759564000134 ], [ -123.386190985999946, 48.488012558000079 ], [ -123.386575070999982, 48.48758720700004 ], [ -123.386726204999917, 48.487834384000017 ], [ -123.386728670999972, 48.488036721000071 ], [ -123.386729856999949, 48.488134758000079 ], [ -123.38661821299999, 48.488443097000051 ], [ -123.386007544999956, 48.489541659000118 ], [ -123.385946867999976, 48.489881034000106 ], [ -123.386049174999954, 48.490351546000056 ], [ -123.386388868999987, 48.491199389000066 ], [ -123.386672406999963, 48.491907038000093 ], [ -123.38699305199998, 48.492346945000094 ], [ -123.388299997000033, 48.494140110000053 ], [ -123.388700905999912, 48.494953398000057 ], [ -123.388995877999903, 48.494554896000082 ], [ -123.389851251999929, 48.493062875000099 ], [ -123.391701613999942, 48.493516899000021 ], [ -123.392823915999926, 48.493794291000022 ], [ -123.395383315999936, 48.494452306000028 ], [ -123.396560085999951, 48.494772394000115 ], [ -123.397941905999986, 48.495148996000111 ], [ -123.397737751999912, 48.495234034000113 ], [ -123.396009814999971, 48.49595370300004 ], [ -123.395746185999911, 48.496127595000132 ], [ -123.395526435999983, 48.496375209000114 ], [ -123.394707862999923, 48.497297477000117 ], [ -123.393868821999945, 48.498242824000037 ], [ -123.393276649999976, 48.49804260000009 ], [ -123.391985111999972, 48.497605888000059 ], [ -123.391439048999928, 48.497364342000019 ], [ -123.391026101999969, 48.497182851000012 ], [ -123.39096277299997, 48.497155146000054 ], [ -123.39089681099999, 48.497126464000111 ], [ -123.39058060499994, 48.496931143000033 ], [ -123.39020646099999, 48.496536903000113 ], [ -123.389950925999941, 48.496270899000145 ], [ -123.389072453, 48.49776416200006 ], [ -123.388929471999987, 48.497980347000109 ], [ -123.388790804999957, 48.498190026000053 ], [ -123.388346523999985, 48.498721916000036 ], [ -123.38806828299991, 48.499037880000053 ], [ -123.388049324999898, 48.499061218000143 ], [ -123.388000099999957, 48.49912186900012 ], [ -123.386744902999936, 48.499021486000046 ], [ -123.385820407999915, 48.498950893000064 ], [ -123.385565717999938, 48.498933161000117 ], [ -123.385279293999957, 48.498913188000138 ], [ -123.384988518999975, 48.498892500000125 ], [ -123.384995819999986, 48.498784504000078 ], [ -123.385098889999981, 48.498118905000133 ], [ -123.385288795999941, 48.497496881000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "399177040", "BldgCostT": "251036011", "sL_LossRatio": "0.760552918124943", "sL_AssetLoss": "363860.02", "sL_BldgLoss": "276734.8", "sL_StrLoss": "181487.5", "sL_NStrLoss": "95247.3", "sL_ContLoss": "87125.22", "geom_point": "0101000020E61000001015168116D95EC09BEB4EB9BA3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.386575070999982, 48.48758720700004 ], [ -123.386809081999985, 48.487444942000103 ], [ -123.386934269999983, 48.487368800000084 ], [ -123.386987690999931, 48.487327510000128 ], [ -123.387357807999933, 48.487041107000081 ], [ -123.38761940900001, 48.486707591000041 ], [ -123.388835507999929, 48.486996393000041 ], [ -123.390070198999936, 48.487268390000068 ], [ -123.391131785999946, 48.487517296000128 ], [ -123.392875898999961, 48.487910107000076 ], [ -123.395181288999964, 48.488413099000105 ], [ -123.39544510099995, 48.488469802000054 ], [ -123.395876765999972, 48.488562603000034 ], [ -123.396060141999968, 48.4886020410001 ], [ -123.396398148999964, 48.488674693000071 ], [ -123.39873298699996, 48.489176608000079 ], [ -123.400000024999912, 48.489452989000078 ], [ -123.401317598999967, 48.489740401000091 ], [ -123.400757673999962, 48.490634700000093 ], [ -123.400523998999958, 48.491000487000107 ], [ -123.400428295999973, 48.491328161000091 ], [ -123.400374199999987, 48.491513513000079 ], [ -123.400307327999968, 48.491687424000077 ], [ -123.400260084999957, 48.491810316000105 ], [ -123.400230750999953, 48.491886599000075 ], [ -123.400192909999973, 48.491985093000096 ], [ -123.399996704, 48.491937032000109 ], [ -123.397673508999958, 48.491367988000057 ], [ -123.396197585, 48.491006393000063 ], [ -123.394453896999934, 48.490579207000053 ], [ -123.394057156999963, 48.491235196000055 ], [ -123.394005549999932, 48.49132055700003 ], [ -123.393643601999926, 48.491918999000056 ], [ -123.392582483999959, 48.491682816000043 ], [ -123.391911510999961, 48.49150129300007 ], [ -123.390936514, 48.491223104000056 ], [ -123.390483060999941, 48.491991784000135 ], [ -123.38999842199999, 48.492813318000053 ], [ -123.389851251999929, 48.493062875000099 ], [ -123.388995877999903, 48.494554896000082 ], [ -123.388700905999912, 48.494953398000057 ], [ -123.388299997000033, 48.494140110000053 ], [ -123.38699305199998, 48.492346945000094 ], [ -123.386672406999963, 48.491907038000093 ], [ -123.386388868999987, 48.491199389000066 ], [ -123.386049174999954, 48.490351546000056 ], [ -123.385946867999976, 48.489881034000106 ], [ -123.386007544999956, 48.489541659000118 ], [ -123.38661821299999, 48.488443097000051 ], [ -123.386729856999949, 48.488134758000079 ], [ -123.386728670999972, 48.488036721000071 ], [ -123.386726204999917, 48.487834384000017 ], [ -123.386575070999982, 48.48758720700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156101834", "BldgCostT": "100858334", "sL_LossRatio": "0.914295350410316", "sL_AssetLoss": "183535.55", "sL_BldgLoss": "167805.7", "sL_StrLoss": "134917.8", "sL_NStrLoss": "32887.9", "sL_ContLoss": "15729.85", "geom_point": "0101000020E610000023D1F5F14ED95EC00E9535A0143F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.390483060999941, 48.491991784000135 ], [ -123.390936514, 48.491223104000056 ], [ -123.391911510999961, 48.49150129300007 ], [ -123.392582483999959, 48.491682816000043 ], [ -123.393643601999926, 48.491918999000056 ], [ -123.394005549999932, 48.49132055700003 ], [ -123.394057156999963, 48.491235196000055 ], [ -123.394453896999934, 48.490579207000053 ], [ -123.396197585, 48.491006393000063 ], [ -123.397673508999958, 48.491367988000057 ], [ -123.399996704, 48.491937032000109 ], [ -123.400192909999973, 48.491985093000096 ], [ -123.399994911999897, 48.492218907000087 ], [ -123.399708790999981, 48.492556694000079 ], [ -123.39966939899989, 48.492680672000056 ], [ -123.399575682999952, 48.49297570800006 ], [ -123.39954108299996, 48.493084551000123 ], [ -123.399517498999955, 48.493158795000035 ], [ -123.39946963099996, 48.493377415000069 ], [ -123.399462460000024, 48.493410164000117 ], [ -123.399340704999958, 48.493965988000063 ], [ -123.399201593, 48.494282705000082 ], [ -123.398969087999944, 48.494603399000049 ], [ -123.398633222999962, 48.494863905000074 ], [ -123.398502082999954, 48.494917979000064 ], [ -123.397941905999986, 48.495148996000111 ], [ -123.396560085999951, 48.494772394000115 ], [ -123.395383315999936, 48.494452306000028 ], [ -123.392823915999926, 48.493794291000022 ], [ -123.391701613999942, 48.493516899000021 ], [ -123.389851251999929, 48.493062875000099 ], [ -123.38999842199999, 48.492813318000053 ], [ -123.390483060999941, 48.491991784000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112047333", "BldgCostT": "74358333", "sL_LossRatio": "0.714623089252715", "sL_AssetLoss": "1664532", "sL_BldgLoss": "1189513", "sL_StrLoss": "533340", "sL_NStrLoss": "656173", "sL_ContLoss": "475019", "geom_point": "0101000020E61000001F3CB8E031DA5EC034430D5319404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.415136026999917, 48.510699060000022 ], [ -123.415003711999958, 48.51064699900008 ], [ -123.414967865999984, 48.510647436000042 ], [ -123.414831895999967, 48.510649087000104 ], [ -123.414728274999945, 48.51066459000009 ], [ -123.414479067999963, 48.510773986000054 ], [ -123.414307564, 48.510565384000067 ], [ -123.414276288999957, 48.51052741000008 ], [ -123.41393678899999, 48.510309898000081 ], [ -123.413350109999968, 48.510040393000061 ], [ -123.412480165999938, 48.509462890000108 ], [ -123.412098891999932, 48.509317401000047 ], [ -123.410879189999946, 48.509006406 ], [ -123.410496915999943, 48.508830191000094 ], [ -123.4101528, 48.508573811000083 ], [ -123.409967696999956, 48.508479963000113 ], [ -123.409766218999891, 48.508377803000094 ], [ -123.40938081799996, 48.508207377000083 ], [ -123.408794981999947, 48.507948293000034 ], [ -123.408784926999942, 48.507941441000078 ], [ -123.407963609999982, 48.507381244000072 ], [ -123.407906528999959, 48.507342284000046 ], [ -123.407634319999943, 48.50697617600008 ], [ -123.407516310999966, 48.506817423 ], [ -123.40744088299995, 48.50671598800016 ], [ -123.40738262799999, 48.506479718000044 ], [ -123.407346885999942, 48.506334922000072 ], [ -123.407292713999979, 48.505722302000066 ], [ -123.407423180999942, 48.505142090000021 ], [ -123.407407506999974, 48.504936085000097 ], [ -123.407362903999939, 48.504813281000118 ], [ -123.40722518299998, 48.504614297000039 ], [ -123.406413597999929, 48.503888406000065 ], [ -123.40609948399999, 48.503529095000019 ], [ -123.405570508, 48.503000402000062 ], [ -123.405374898999924, 48.502869286000056 ], [ -123.405120707999941, 48.502700803000032 ], [ -123.404226593999937, 48.502247913000062 ], [ -123.402784971999921, 48.501696604000145 ], [ -123.402349818999966, 48.501530192000089 ], [ -123.40199727, 48.50133887100003 ], [ -123.401812120999949, 48.501238368000024 ], [ -123.401782599999947, 48.5012223620001 ], [ -123.40138931, 48.501008892000051 ], [ -123.40137756099999, 48.50100442600008 ], [ -123.401164336999926, 48.50092311000008 ], [ -123.40055540199991, 48.500690882000072 ], [ -123.400359189999946, 48.500642107000068 ], [ -123.399994181999929, 48.5005512930001 ], [ -123.399376940999929, 48.500397728000102 ], [ -123.399075704999987, 48.500322795000102 ], [ -123.398276507999967, 48.500037197000076 ], [ -123.398212304999944, 48.500002607000035 ], [ -123.398031108999987, 48.499904997000044 ], [ -123.397620721999971, 48.499628897000065 ], [ -123.397450880999912, 48.499537204000021 ], [ -123.39717450699996, 48.49938800500005 ], [ -123.397125848999949, 48.499367127 ], [ -123.396914643999978, 48.499276510000072 ], [ -123.396122744999914, 48.498936745000066 ], [ -123.395944107999981, 48.498860108000081 ], [ -123.394912997999981, 48.498493923000098 ], [ -123.393868821999945, 48.498242824000037 ], [ -123.394707862999923, 48.497297477000117 ], [ -123.395526435999983, 48.496375209000114 ], [ -123.395746185999911, 48.496127595000132 ], [ -123.396009814999971, 48.49595370300004 ], [ -123.397737751999912, 48.495234034000113 ], [ -123.397941905999986, 48.495148996000111 ], [ -123.398502082999954, 48.494917979000064 ], [ -123.398633222999962, 48.494863905000074 ], [ -123.398969087999944, 48.494603399000049 ], [ -123.399201593, 48.494282705000082 ], [ -123.399340704999958, 48.493965988000063 ], [ -123.399462460000024, 48.493410164000117 ], [ -123.39946963099996, 48.493377415000069 ], [ -123.399517498999955, 48.493158795000035 ], [ -123.39954108299996, 48.493084551000123 ], [ -123.399575682999952, 48.49297570800006 ], [ -123.39966939899989, 48.492680672000056 ], [ -123.399708790999981, 48.492556694000079 ], [ -123.399994911999897, 48.492218907000087 ], [ -123.400192909999973, 48.491985093000096 ], [ -123.400230750999953, 48.491886599000075 ], [ -123.400260084999957, 48.491810316000105 ], [ -123.400307327999968, 48.491687424000077 ], [ -123.400374199999987, 48.491513513000079 ], [ -123.400428295999973, 48.491328161000091 ], [ -123.400523998999958, 48.491000487000107 ], [ -123.400757673999962, 48.490634700000093 ], [ -123.401317598999967, 48.489740401000091 ], [ -123.402592177999978, 48.490023495000059 ], [ -123.403051386999934, 48.490125497000037 ], [ -123.408654514999952, 48.491371180000066 ], [ -123.407804609, 48.492581212000097 ], [ -123.406532319999897, 48.494667014000115 ], [ -123.406094490999948, 48.495219843000065 ], [ -123.406075637999962, 48.495243677000069 ], [ -123.411194640999952, 48.496625347000077 ], [ -123.41138583, 48.496674572000131 ], [ -123.410751871999977, 48.496659094000087 ], [ -123.41068749899992, 48.497832974000048 ], [ -123.411986277999944, 48.497828332000026 ], [ -123.411995026999946, 48.498907872000046 ], [ -123.41280720599994, 48.498904962000047 ], [ -123.41280282299999, 48.49836519200003 ], [ -123.414021077999934, 48.498360817000041 ], [ -123.414023275999952, 48.498630701000089 ], [ -123.414429362999897, 48.498629240000042 ], [ -123.414432427999969, 48.499005142000065 ], [ -123.416280317999934, 48.499050181000037 ], [ -123.416276045999965, 48.499128241000044 ], [ -123.416328882999935, 48.499129529000079 ], [ -123.416333560999988, 48.49904405700002 ], [ -123.417093720999929, 48.499062575000039 ], [ -123.417143271999919, 48.498156728000019 ], [ -123.418174360999942, 48.498422122000129 ], [ -123.41926069699997, 48.498717705000026 ], [ -123.419258901999967, 48.498754185000088 ], [ -123.419235036, 48.499231422 ], [ -123.419217309999951, 48.499586787000098 ], [ -123.419220649999943, 48.499798204000044 ], [ -123.419223962, 48.500005172000087 ], [ -123.419229386999987, 48.500347049000055 ], [ -123.419234128999975, 48.500646282000069 ], [ -123.419235129999947, 48.500709312000062 ], [ -123.419237118999931, 48.500834967000031 ], [ -123.421375519, 48.500894505000126 ], [ -123.421836189999965, 48.500995807000052 ], [ -123.422699779999903, 48.501267500000104 ], [ -123.422912296999968, 48.501385399000043 ], [ -123.422288943999945, 48.502274882000087 ], [ -123.42145401399992, 48.503466200000105 ], [ -123.422027382999914, 48.503631601000059 ], [ -123.420691714999961, 48.505940783000035 ], [ -123.420503115999949, 48.506350993000112 ], [ -123.42005740499998, 48.506840608000076 ], [ -123.419452496999966, 48.50801610200007 ], [ -123.419138412000024, 48.508520595000029 ], [ -123.418669975999961, 48.50912992700006 ], [ -123.418351215999948, 48.509544593000022 ], [ -123.418349305999968, 48.5095535620001 ], [ -123.418123306999945, 48.510621093000083 ], [ -123.417966994999944, 48.510958068 ], [ -123.417092181999948, 48.512199167000055 ], [ -123.416686062999972, 48.512062146000112 ], [ -123.416479060999961, 48.511893013000133 ], [ -123.416011675999968, 48.511287838000051 ], [ -123.415974680999952, 48.511239935000042 ], [ -123.415801286999923, 48.511015391000079 ], [ -123.415638791999982, 48.510896912000071 ], [ -123.415588982999935, 48.510877294000139 ], [ -123.415136026999917, 48.510699060000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146737751", "BldgCostT": "92155001", "sL_LossRatio": "0.951017669806575", "sL_AssetLoss": "154820.993", "sL_BldgLoss": "147237.5", "sL_StrLoss": "121573.4", "sL_NStrLoss": "25664.1", "sL_ContLoss": "7583.493", "geom_point": "0101000020E6100000DEEAEE119CD95EC0D5B57206313E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.396663896999925, 48.487080698000049 ], [ -123.397093167999969, 48.485615099000057 ], [ -123.398258592999952, 48.485648193000046 ], [ -123.398329868999923, 48.485246289000088 ], [ -123.398338981, 48.485194798000109 ], [ -123.398288997999927, 48.484924899000077 ], [ -123.398243315999977, 48.484840547000033 ], [ -123.398157807999922, 48.484682710000058 ], [ -123.397813793999944, 48.484354193000037 ], [ -123.399212189999943, 48.483908803000091 ], [ -123.39933419599997, 48.483853192000048 ], [ -123.399605197999932, 48.483469411000016 ], [ -123.399809471999959, 48.483120898000031 ], [ -123.39983689099995, 48.482990793000063 ], [ -123.399266894999954, 48.481885705000082 ], [ -123.399123085, 48.481748803000066 ], [ -123.398741616000024, 48.481660996000137 ], [ -123.399185601999989, 48.480835012000099 ], [ -123.400009794999946, 48.480691314000133 ], [ -123.400037980999954, 48.48068639800006 ], [ -123.400806001999925, 48.482024498000108 ], [ -123.401411292999938, 48.48300420000006 ], [ -123.401701839999959, 48.483258444000079 ], [ -123.40220442499999, 48.483698289000074 ], [ -123.402474597999941, 48.483934701000067 ], [ -123.40264482, 48.484150178000064 ], [ -123.40266268799995, 48.484172789000169 ], [ -123.402690381999946, 48.484480093000059 ], [ -123.402585534999929, 48.484790449000094 ], [ -123.40253390399999, 48.4849432870001 ], [ -123.402519599999962, 48.485202694000087 ], [ -123.40272939099999, 48.485662293000132 ], [ -123.403259498999887, 48.486586882000068 ], [ -123.403045897999931, 48.486811602000067 ], [ -123.402643338999951, 48.48736738700007 ], [ -123.40242532299996, 48.487668349000074 ], [ -123.40192599, 48.488357687000111 ], [ -123.40166052299999, 48.488835401000124 ], [ -123.40165568099999, 48.488848102000063 ], [ -123.401317598999967, 48.489740401000091 ], [ -123.400000024999912, 48.489452989000078 ], [ -123.39873298699996, 48.489176608000079 ], [ -123.398765099999963, 48.489034903000118 ], [ -123.398705556, 48.488877025000122 ], [ -123.398702605999986, 48.488869194000067 ], [ -123.397932117999972, 48.488338202000072 ], [ -123.397794098999924, 48.488195009000101 ], [ -123.397697474999944, 48.487989390000088 ], [ -123.397692493999926, 48.487978791000089 ], [ -123.397685991999964, 48.487777595000068 ], [ -123.397748909999962, 48.487445509000075 ], [ -123.397154337999964, 48.487350937000038 ], [ -123.396810073999973, 48.48729619500002 ], [ -123.396673371999924, 48.487202699000058 ], [ -123.396663896999925, 48.487080698000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240985751", "BldgCostT": "148315001", "sL_LossRatio": "0.86503688922588", "sL_AssetLoss": "459966.28", "sL_BldgLoss": "397887.8", "sL_StrLoss": "287573.1", "sL_NStrLoss": "110314.7", "sL_ContLoss": "62078.48", "geom_point": "0101000020E61000008769A67BDDD95EC043C49448A23D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.39927329899993, 48.47754858800004 ], [ -123.39957049500002, 48.477524310000028 ], [ -123.400038170999935, 48.477637014000038 ], [ -123.400070398999958, 48.477644781000102 ], [ -123.400712683999984, 48.477877007000117 ], [ -123.401878408999949, 48.478170687000038 ], [ -123.402395895999973, 48.478299433000061 ], [ -123.403084297999953, 48.478470701000042 ], [ -123.40358162899993, 48.478590338000025 ], [ -123.404262150999955, 48.478754055000138 ], [ -123.404424105999965, 48.478793004000039 ], [ -123.405422068999968, 48.479037642000044 ], [ -123.405483960999973, 48.479052814000021 ], [ -123.406160702999898, 48.479218700000054 ], [ -123.40647158099999, 48.479295977000099 ], [ -123.406777271999928, 48.479371998000133 ], [ -123.40679645099999, 48.479376762000093 ], [ -123.406827872999983, 48.479384555000088 ], [ -123.409781346999978, 48.480118832000059 ], [ -123.409285088, 48.481039977000108 ], [ -123.408852183999926, 48.481863491000091 ], [ -123.408082557999961, 48.482536101000036 ], [ -123.407749860999985, 48.482826851000027 ], [ -123.407500111, 48.483045091000044 ], [ -123.407006109999912, 48.483679284000068 ], [ -123.406861185999972, 48.483865330000086 ], [ -123.406766108999989, 48.48398738900007 ], [ -123.406052896999981, 48.484676 ], [ -123.405372010999912, 48.485267091000047 ], [ -123.40518691299998, 48.485389711000053 ], [ -123.405081810999917, 48.485459310000039 ], [ -123.403459009999921, 48.486422298000107 ], [ -123.403259498999887, 48.486586882000068 ], [ -123.40272939099999, 48.485662293000132 ], [ -123.402519599999962, 48.485202694000087 ], [ -123.40253390399999, 48.4849432870001 ], [ -123.402585534999929, 48.484790449000094 ], [ -123.402690381999946, 48.484480093000059 ], [ -123.40266268799995, 48.484172789000169 ], [ -123.40264482, 48.484150178000064 ], [ -123.402474597999941, 48.483934701000067 ], [ -123.40220442499999, 48.483698289000074 ], [ -123.401701839999959, 48.483258444000079 ], [ -123.401411292999938, 48.48300420000006 ], [ -123.400806001999925, 48.482024498000108 ], [ -123.400037980999954, 48.48068639800006 ], [ -123.399985170999955, 48.480553831000044 ], [ -123.399691522999959, 48.479816808000045 ], [ -123.399478986999966, 48.479014390000046 ], [ -123.39942523299996, 48.478736410000081 ], [ -123.399389596999967, 48.478552400000069 ], [ -123.39937529099997, 48.478196892000085 ], [ -123.399366788999913, 48.477985489000041 ], [ -123.399353123999944, 48.477921579000089 ], [ -123.39927329899993, 48.47754858800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289057337", "BldgCostT": "185577839", "sL_LossRatio": "0.835937937325525", "sL_AssetLoss": "349067.78", "sL_BldgLoss": "291799", "sL_StrLoss": "212689.6", "sL_NStrLoss": "79109.4", "sL_ContLoss": "57268.78", "geom_point": "0101000020E6100000C9197A594DD95EC01707C00D6B3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.397340094999933, 48.476894285000043 ], [ -123.39884858799999, 48.476725695000027 ], [ -123.399133170999974, 48.477277125000072 ], [ -123.39927329899993, 48.47754858800004 ], [ -123.399353123999944, 48.477921579000089 ], [ -123.399366788999913, 48.477985489000041 ], [ -123.39937529099997, 48.478196892000085 ], [ -123.399389596999967, 48.478552400000069 ], [ -123.39942523299996, 48.478736410000081 ], [ -123.399478986999966, 48.479014390000046 ], [ -123.399691522999959, 48.479816808000045 ], [ -123.399985170999955, 48.480553831000044 ], [ -123.400037980999954, 48.48068639800006 ], [ -123.400009794999946, 48.480691314000133 ], [ -123.399185601999989, 48.480835012000099 ], [ -123.398741616000024, 48.481660996000137 ], [ -123.39859099399996, 48.481968410000064 ], [ -123.398429988999951, 48.482169103000082 ], [ -123.398056721, 48.48232489800008 ], [ -123.396447789999968, 48.482790408000035 ], [ -123.396094094999967, 48.483081116000093 ], [ -123.396036732999903, 48.483067252000069 ], [ -123.395843262999975, 48.483020549000109 ], [ -123.39556500299993, 48.482953372000047 ], [ -123.39476360899998, 48.482759890000125 ], [ -123.391981315999914, 48.482091810000092 ], [ -123.390314888999924, 48.481690108000045 ], [ -123.390897435999975, 48.48056554900004 ], [ -123.391201243999973, 48.479979072000091 ], [ -123.391482830999948, 48.47943552700012 ], [ -123.391504903999945, 48.479392905000033 ], [ -123.391245188999932, 48.478469498000059 ], [ -123.391014695999971, 48.477653994 ], [ -123.394990611999958, 48.477174701000109 ], [ -123.396911229999944, 48.476945491000095 ], [ -123.397340094999933, 48.476894285000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146032001", "BldgCostT": "96325001", "sL_LossRatio": "0.921879621432198", "sL_AssetLoss": "200762.98", "sL_BldgLoss": "185079.3", "sL_StrLoss": "149939.6", "sL_NStrLoss": "35139.7", "sL_ContLoss": "15683.68", "geom_point": "0101000020E6100000BE9DE00F3DD95EC04A8E4460133E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.391811981999936, 48.485597094000099 ], [ -123.39075778299997, 48.485337601000069 ], [ -123.389139713999967, 48.48495660800004 ], [ -123.389099407999964, 48.484947104000057 ], [ -123.38901015499999, 48.48492609900007 ], [ -123.388627984999971, 48.484836108000117 ], [ -123.38915950799999, 48.483836278000062 ], [ -123.389191162999964, 48.483776747000029 ], [ -123.389671285999967, 48.482873502000039 ], [ -123.389696719999947, 48.482826760000087 ], [ -123.390314888999924, 48.481690108000045 ], [ -123.391981315999914, 48.482091810000092 ], [ -123.39476360899998, 48.482759890000125 ], [ -123.39556500299993, 48.482953372000047 ], [ -123.395843262999975, 48.483020549000109 ], [ -123.396036732999903, 48.483067252000069 ], [ -123.396094094999967, 48.483081116000093 ], [ -123.396447789999968, 48.482790408000035 ], [ -123.398056721, 48.48232489800008 ], [ -123.398429988999951, 48.482169103000082 ], [ -123.39859099399996, 48.481968410000064 ], [ -123.398741616000024, 48.481660996000137 ], [ -123.399123085, 48.481748803000066 ], [ -123.399266894999954, 48.481885705000082 ], [ -123.39983689099995, 48.482990793000063 ], [ -123.399809471999959, 48.483120898000031 ], [ -123.399605197999932, 48.483469411000016 ], [ -123.39933419599997, 48.483853192000048 ], [ -123.399212189999943, 48.483908803000091 ], [ -123.397813793999944, 48.484354193000037 ], [ -123.398157807999922, 48.484682710000058 ], [ -123.398243315999977, 48.484840547000033 ], [ -123.398288997999927, 48.484924899000077 ], [ -123.398338981, 48.485194798000109 ], [ -123.398329868999923, 48.485246289000088 ], [ -123.398258592999952, 48.485648193000046 ], [ -123.397093167999969, 48.485615099000057 ], [ -123.396663896999925, 48.487080698000049 ], [ -123.396673371999924, 48.487202699000058 ], [ -123.396810073999973, 48.48729619500002 ], [ -123.397154337999964, 48.487350937000038 ], [ -123.397748909999962, 48.487445509000075 ], [ -123.397685991999964, 48.487777595000068 ], [ -123.397692493999926, 48.487978791000089 ], [ -123.397697474999944, 48.487989390000088 ], [ -123.397794098999924, 48.488195009000101 ], [ -123.397932117999972, 48.488338202000072 ], [ -123.398702605999986, 48.488869194000067 ], [ -123.398705556, 48.488877025000122 ], [ -123.398765099999963, 48.489034903000118 ], [ -123.39873298699996, 48.489176608000079 ], [ -123.396398148999964, 48.488674693000071 ], [ -123.396060141999968, 48.4886020410001 ], [ -123.395876765999972, 48.488562603000034 ], [ -123.39544510099995, 48.488469802000054 ], [ -123.395181288999964, 48.488413099000105 ], [ -123.392875898999961, 48.487910107000076 ], [ -123.391131785999946, 48.487517296000128 ], [ -123.39150541, 48.486794289000095 ], [ -123.392000008, 48.485838910000076 ], [ -123.391964985999934, 48.485689310000055 ], [ -123.391811981999936, 48.485597094000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141150184", "BldgCostT": "91215858", "sL_LossRatio": "0.738924542542633", "sL_AssetLoss": "340638.3", "sL_BldgLoss": "251706", "sL_StrLoss": "130656", "sL_NStrLoss": "121050", "sL_ContLoss": "88932.3", "geom_point": "0101000020E6100000C7D812EAD0D85EC0357EA7EA1A3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.38463019199996, 48.486770988000053 ], [ -123.386346500999963, 48.483709596000033 ], [ -123.386415929999941, 48.483587323000037 ], [ -123.386590497999947, 48.483279984000127 ], [ -123.386828005, 48.482650211000077 ], [ -123.386872617999956, 48.482185097000098 ], [ -123.386865186999955, 48.482125216000036 ], [ -123.38681659699995, 48.48173280200006 ], [ -123.386511500999987, 48.480899311000087 ], [ -123.386460668999959, 48.480787288000087 ], [ -123.386732266999971, 48.480846761000059 ], [ -123.387244419999931, 48.480958907000129 ], [ -123.390314888999924, 48.481690108000045 ], [ -123.389696719999947, 48.482826760000087 ], [ -123.389671285999967, 48.482873502000039 ], [ -123.389191162999964, 48.483776747000029 ], [ -123.38915950799999, 48.483836278000062 ], [ -123.388627984999971, 48.484836108000117 ], [ -123.38901015499999, 48.48492609900007 ], [ -123.389099407999964, 48.484947104000057 ], [ -123.389139713999967, 48.48495660800004 ], [ -123.39075778299997, 48.485337601000069 ], [ -123.391811981999936, 48.485597094000099 ], [ -123.391964985999934, 48.485689310000055 ], [ -123.392000008, 48.485838910000076 ], [ -123.39150541, 48.486794289000095 ], [ -123.391131785999946, 48.487517296000128 ], [ -123.390070198999936, 48.487268390000068 ], [ -123.388835507999929, 48.486996393000041 ], [ -123.38761940900001, 48.486707591000041 ], [ -123.387357807999933, 48.487041107000081 ], [ -123.386987690999931, 48.487327510000128 ], [ -123.386934269999983, 48.487368800000084 ], [ -123.386809081999985, 48.487444942000103 ], [ -123.386575070999982, 48.48758720700004 ], [ -123.386190985999946, 48.488012558000079 ], [ -123.385777678999929, 48.488759564000134 ], [ -123.385344488999976, 48.490001621000083 ], [ -123.385222294999934, 48.490351902000036 ], [ -123.385026203000038, 48.489901241000048 ], [ -123.384988685999957, 48.489815033000056 ], [ -123.384626600999979, 48.488982798000059 ], [ -123.384426922999978, 48.488296196000086 ], [ -123.384401296999926, 48.487903307000082 ], [ -123.384430116999951, 48.487505491000029 ], [ -123.38463019199996, 48.486770988000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147684417", "BldgCostT": "91856667", "sL_LossRatio": "0.877520501976923", "sL_AssetLoss": "234050.6", "sL_BldgLoss": "205384.2", "sL_StrLoss": "149592.4", "sL_NStrLoss": "55791.8", "sL_ContLoss": "28666.4", "geom_point": "0101000020E61000007D3228688DD85EC0ECF72FD6D83D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.379530507999903, 48.482310382000087 ], [ -123.380912517999903, 48.482065106000093 ], [ -123.38137308200001, 48.481870805000057 ], [ -123.382120618999977, 48.481594409000124 ], [ -123.382335316999956, 48.482156104000104 ], [ -123.382976282999977, 48.482070894000103 ], [ -123.383177605999947, 48.482095703000027 ], [ -123.383613902999954, 48.482119998000051 ], [ -123.385105507999967, 48.481895284000124 ], [ -123.385386491999967, 48.481773300000086 ], [ -123.385499488999969, 48.48156241600001 ], [ -123.385350779999968, 48.481247605000064 ], [ -123.385285364999945, 48.48116245100006 ], [ -123.385105111999948, 48.480927795000063 ], [ -123.384912005999936, 48.480754390000087 ], [ -123.384473102999934, 48.480459509000106 ], [ -123.384303808999931, 48.480347094000102 ], [ -123.384073897999954, 48.480106994 ], [ -123.38376528199997, 48.479508690000017 ], [ -123.383888778999946, 48.479424295000065 ], [ -123.385350590999906, 48.479054606 ], [ -123.384830994999945, 48.478191513000141 ], [ -123.385262503999982, 48.478147785000097 ], [ -123.386460668999959, 48.480787288000087 ], [ -123.386511500999987, 48.480899311000087 ], [ -123.38681659699995, 48.48173280200006 ], [ -123.386865186999955, 48.482125216000036 ], [ -123.386872617999956, 48.482185097000098 ], [ -123.386828005, 48.482650211000077 ], [ -123.386590497999947, 48.483279984000127 ], [ -123.386415929999941, 48.483587323000037 ], [ -123.386346500999963, 48.483709596000033 ], [ -123.38463019199996, 48.486770988000053 ], [ -123.384293316999944, 48.486651003000119 ], [ -123.383893406999988, 48.486508546000074 ], [ -123.383550476999972, 48.486386393000053 ], [ -123.382883661999969, 48.486096301000018 ], [ -123.38241859099999, 48.485894008000116 ], [ -123.380476194, 48.484331103000073 ], [ -123.38001131599999, 48.483929875000086 ], [ -123.380003001999981, 48.483922720000123 ], [ -123.379725388999972, 48.48361831000004 ], [ -123.379397565999952, 48.483162485000044 ], [ -123.378891390999968, 48.482458700000095 ], [ -123.379530507999903, 48.482310382000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222274001", "BldgCostT": "132805001", "sL_LossRatio": "0.882809213215242", "sL_AssetLoss": "200138.6", "sL_BldgLoss": "176684.2", "sL_StrLoss": "132528.2", "sL_NStrLoss": "44156", "sL_ContLoss": "23454.4", "geom_point": "0101000020E61000005D2A359C6ED85EC0144979B5753D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.378500212999967, 48.481825556000068 ], [ -123.378272816, 48.481422380000055 ], [ -123.378049612999959, 48.481026678000013 ], [ -123.377231794999943, 48.479748611000026 ], [ -123.378150685999913, 48.479498091000032 ], [ -123.378243217999966, 48.479472892000118 ], [ -123.378736162999985, 48.479338636000051 ], [ -123.379201200999915, 48.479211955000025 ], [ -123.379334292999943, 48.479175710000071 ], [ -123.379366103999985, 48.479170837000034 ], [ -123.380044346999966, 48.479067054000062 ], [ -123.380222489999966, 48.479039801000035 ], [ -123.380962104999952, 48.47892506300014 ], [ -123.38155563699999, 48.478832962000077 ], [ -123.3818371, 48.478789305000085 ], [ -123.381790078999984, 48.478319809000041 ], [ -123.381737090999948, 48.477790494000025 ], [ -123.38272721599995, 48.477611687000078 ], [ -123.383415296999971, 48.477487399000026 ], [ -123.384084307999956, 48.477187412000077 ], [ -123.38443329099999, 48.477104089000065 ], [ -123.384830994999945, 48.478191513000141 ], [ -123.385350590999906, 48.479054606 ], [ -123.383888778999946, 48.479424295000065 ], [ -123.38376528199997, 48.479508690000017 ], [ -123.384073897999954, 48.480106994 ], [ -123.384303808999931, 48.480347094000102 ], [ -123.384473102999934, 48.480459509000106 ], [ -123.384912005999936, 48.480754390000087 ], [ -123.385105111999948, 48.480927795000063 ], [ -123.385285364999945, 48.48116245100006 ], [ -123.385350779999968, 48.481247605000064 ], [ -123.385499488999969, 48.48156241600001 ], [ -123.385386491999967, 48.481773300000086 ], [ -123.385105507999967, 48.481895284000124 ], [ -123.383613902999954, 48.482119998000051 ], [ -123.383177605999947, 48.482095703000027 ], [ -123.382976282999977, 48.482070894000103 ], [ -123.382335316999956, 48.482156104000104 ], [ -123.382120618999977, 48.481594409000124 ], [ -123.38137308200001, 48.481870805000057 ], [ -123.380912517999903, 48.482065106000093 ], [ -123.379530507999903, 48.482310382000087 ], [ -123.378891390999968, 48.482458700000095 ], [ -123.378734681999973, 48.48224120200009 ], [ -123.378500212999967, 48.481825556000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107222999", "BldgCostT": "70349999", "sL_LossRatio": "0.832546203153947", "sL_AssetLoss": "193381.82", "sL_BldgLoss": "160999.3", "sL_StrLoss": "123759", "sL_NStrLoss": "37240.3", "sL_ContLoss": "32382.52", "geom_point": "0101000020E6100000FFC4543CA6D75EC093F79242303D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368293202999922, 48.479076085000038 ], [ -123.3680412, 48.479041010000124 ], [ -123.36744940199992, 48.479116482000038 ], [ -123.364984286999942, 48.479431306000087 ], [ -123.36388120099997, 48.479519309000075 ], [ -123.363719018999959, 48.478939893000096 ], [ -123.36370523299999, 48.478890815000035 ], [ -123.363426122999954, 48.47789560100005 ], [ -123.363380560999985, 48.477733586000078 ], [ -123.363346677999971, 48.477612983000064 ], [ -123.366908110999987, 48.477148089000089 ], [ -123.368232816, 48.476965891000106 ], [ -123.369623009999913, 48.476774633000019 ], [ -123.370739711999974, 48.476620996000086 ], [ -123.370857984999986, 48.476607687000069 ], [ -123.372290806999956, 48.476417798000057 ], [ -123.372614863, 48.47636181100011 ], [ -123.373024623999953, 48.476291004000139 ], [ -123.37339552, 48.476226902000072 ], [ -123.374334782999966, 48.476994198000085 ], [ -123.375375509999969, 48.477835595000087 ], [ -123.375427970999951, 48.477877982000102 ], [ -123.375926040999929, 48.478280665000078 ], [ -123.376258924999931, 48.478538708000045 ], [ -123.37474040699999, 48.478810395000032 ], [ -123.374033589999939, 48.478889399000124 ], [ -123.373984978999914, 48.478883254000046 ], [ -123.373695594999973, 48.478846699000059 ], [ -123.373514288999942, 48.478535603000054 ], [ -123.373259611000023, 48.478256985 ], [ -123.372485403999917, 48.478370854000097 ], [ -123.371753397999896, 48.478478503000048 ], [ -123.371830980999945, 48.478905104000077 ], [ -123.37177681899999, 48.479029097000144 ], [ -123.371449089999913, 48.479286989000101 ], [ -123.371324288999986, 48.479345193000093 ], [ -123.369189210999963, 48.479650182000057 ], [ -123.368918909999962, 48.479653503000087 ], [ -123.368779312999905, 48.479613003000075 ], [ -123.3686774, 48.479527494000081 ], [ -123.368414095999952, 48.479137699000077 ], [ -123.368293202999922, 48.479076085000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177004922", "BldgCostT": "116818584", "sL_LossRatio": "0.876207166809899", "sL_AssetLoss": "170794.54", "sL_BldgLoss": "149651.4", "sL_StrLoss": "104400", "sL_NStrLoss": "45251.4", "sL_ContLoss": "21143.14", "geom_point": "0101000020E61000006B905A72A6D75EC095DCEE06CD3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.369793056999967, 48.472104984000048 ], [ -123.370273625999943, 48.472085360000079 ], [ -123.370265902999975, 48.472199661000097 ], [ -123.370304268999959, 48.472845379000056 ], [ -123.370319126999959, 48.473136102000133 ], [ -123.370183477999916, 48.473268001000044 ], [ -123.37072905899997, 48.473583601000072 ], [ -123.371482158, 48.474249767000124 ], [ -123.371883657999902, 48.474689661000113 ], [ -123.372183600999946, 48.475018311000056 ], [ -123.372455988999917, 48.475342492000024 ], [ -123.372605430999926, 48.475513740000061 ], [ -123.372861537999952, 48.475807196000034 ], [ -123.372892784999976, 48.475843008000034 ], [ -123.37339552, 48.476226902000072 ], [ -123.373024623999953, 48.476291004000139 ], [ -123.372614863, 48.47636181100011 ], [ -123.372290806999956, 48.476417798000057 ], [ -123.370857984999986, 48.476607687000069 ], [ -123.370739711999974, 48.476620996000086 ], [ -123.369623009999913, 48.476774633000019 ], [ -123.368232816, 48.476965891000106 ], [ -123.366908110999987, 48.477148089000089 ], [ -123.366606892999982, 48.476178410000088 ], [ -123.366308803999942, 48.475226004000014 ], [ -123.367768604999981, 48.474964705000041 ], [ -123.368575611, 48.47482036800011 ], [ -123.368732276999964, 48.474792337000061 ], [ -123.368449005999935, 48.474413491000121 ], [ -123.368298479999979, 48.47388129800003 ], [ -123.3681386899999, 48.473316386000093 ], [ -123.368012299999975, 48.472966089000131 ], [ -123.367826979999933, 48.472414199000106 ], [ -123.368371797999956, 48.47225910700007 ], [ -123.36947565199992, 48.472202616000089 ], [ -123.369793056999967, 48.472104984000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162403083", "BldgCostT": "106878333", "sL_LossRatio": "0.842913495458139", "sL_AssetLoss": "128813.93", "sL_BldgLoss": "108579", "sL_StrLoss": "76623.8", "sL_NStrLoss": "31955.2", "sL_ContLoss": "20234.93", "geom_point": "0101000020E6100000476BA19E5DD75EC057163BD0793C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.365317087999983, 48.474553918000097 ], [ -123.364316409999958, 48.473897787000055 ], [ -123.363938612999945, 48.473649406000042 ], [ -123.36305295699999, 48.473061981000114 ], [ -123.361715680999964, 48.472170221000063 ], [ -123.361611158999921, 48.471986373000099 ], [ -123.361590415999956, 48.471906869000101 ], [ -123.36148687, 48.471510267000021 ], [ -123.361205067999919, 48.470430639000064 ], [ -123.36172732199999, 48.470368835000095 ], [ -123.363608453999987, 48.470146393000107 ], [ -123.364594294999947, 48.470029806000078 ], [ -123.364934488999907, 48.470274600000089 ], [ -123.366125876999916, 48.470962467000106 ], [ -123.368371797999956, 48.47225910700007 ], [ -123.367826979999933, 48.472414199000106 ], [ -123.368012299999975, 48.472966089000131 ], [ -123.3681386899999, 48.473316386000093 ], [ -123.368298479999979, 48.47388129800003 ], [ -123.368449005999935, 48.474413491000121 ], [ -123.368732276999964, 48.474792337000061 ], [ -123.368575611, 48.47482036800011 ], [ -123.367768604999981, 48.474964705000041 ], [ -123.366308803999942, 48.475226004000014 ], [ -123.365317087999983, 48.474553918000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "571000771", "BldgCostT": "388844157", "sL_LossRatio": "0.87721547845477", "sL_AssetLoss": "168217.05", "sL_BldgLoss": "147562.6", "sL_StrLoss": "80735.3", "sL_NStrLoss": "66827.3", "sL_ContLoss": "20654.45", "geom_point": "0101000020E6100000B9D01086A8D75EC041CB5FC6393C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368371797999956, 48.47225910700007 ], [ -123.366125876999916, 48.470962467000106 ], [ -123.364934488999907, 48.470274600000089 ], [ -123.364594294999947, 48.470029806000078 ], [ -123.366159556999946, 48.469836324000028 ], [ -123.367576460999913, 48.46966115900009 ], [ -123.367886696999932, 48.469622812000054 ], [ -123.368698298999902, 48.469522456000028 ], [ -123.369754697999952, 48.469391827000024 ], [ -123.37101970099999, 48.469235410000095 ], [ -123.371917188999987, 48.469123488000029 ], [ -123.373245876999988, 48.468957795000065 ], [ -123.373796589999969, 48.470951100000079 ], [ -123.373799010999974, 48.470959906000118 ], [ -123.372573693999939, 48.471089091000053 ], [ -123.372333033999922, 48.471123119000012 ], [ -123.371250767000021, 48.471276141000082 ], [ -123.37092928399997, 48.471321597000127 ], [ -123.370547483999957, 48.471411273000108 ], [ -123.370404661999899, 48.471405079000107 ], [ -123.370273625999943, 48.472085360000079 ], [ -123.369793056999967, 48.472104984000048 ], [ -123.36947565199992, 48.472202616000089 ], [ -123.368371797999956, 48.47225910700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "244287440", "BldgCostT": "160471782", "sL_LossRatio": "0.853759573294711", "sL_AssetLoss": "192552.57", "sL_BldgLoss": "164393.6", "sL_StrLoss": "110437.2", "sL_NStrLoss": "53956.4", "sL_ContLoss": "28158.97", "geom_point": "0101000020E6100000A8F55EDF7BD75EC03E97DA39EA3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.362980684999911, 48.468016591000044 ], [ -123.363245008999925, 48.467926703000053 ], [ -123.36343067899999, 48.467550841000033 ], [ -123.363549513999956, 48.467310298000079 ], [ -123.363719392999911, 48.467091169000135 ], [ -123.363789603999933, 48.467000591000094 ], [ -123.364024389999912, 48.466859500000055 ], [ -123.364432810999944, 48.466678510000101 ], [ -123.365242683999966, 48.466491191000031 ], [ -123.366358458999983, 48.466221055000098 ], [ -123.366536304999954, 48.466177980000019 ], [ -123.367176003999958, 48.46608839400011 ], [ -123.368358680999947, 48.466262091000083 ], [ -123.368674011999957, 48.466226594000034 ], [ -123.368834398999951, 48.466377602000094 ], [ -123.369379754999969, 48.466770677000085 ], [ -123.369454994999927, 48.466824895000038 ], [ -123.36966219, 48.467007407000068 ], [ -123.370272402999959, 48.467544982000028 ], [ -123.370327763999981, 48.467641023000127 ], [ -123.370483161, 48.467910540000098 ], [ -123.370742901999989, 48.468360996000108 ], [ -123.370888507999936, 48.468608096000075 ], [ -123.37101970099999, 48.469235410000095 ], [ -123.369754697999952, 48.469391827000024 ], [ -123.368698298999902, 48.469522456000028 ], [ -123.367886696999932, 48.469622812000054 ], [ -123.367576460999913, 48.46966115900009 ], [ -123.366159556999946, 48.469836324000028 ], [ -123.364594294999947, 48.470029806000078 ], [ -123.362980684999911, 48.468016591000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120947668", "BldgCostT": "77546668", "sL_LossRatio": "0.828657502485406", "sL_AssetLoss": "232557.6", "sL_BldgLoss": "192710.6", "sL_StrLoss": "142855.8", "sL_NStrLoss": "49854.8", "sL_ContLoss": "39847", "geom_point": "0101000020E61000007E93A5F749D75EC014D9BDCB7B3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.361649004999975, 48.46639909100012 ], [ -123.36065761899999, 48.465170485000037 ], [ -123.360559404999961, 48.465066207000142 ], [ -123.359713123999981, 48.464067603000103 ], [ -123.359554699999961, 48.463833689000133 ], [ -123.359486679999989, 48.463648898000066 ], [ -123.359482895, 48.463427899000081 ], [ -123.35952744399998, 48.463315537000078 ], [ -123.359734303999943, 48.462793906000044 ], [ -123.361619893999958, 48.46280348800012 ], [ -123.361779505999905, 48.462804293000055 ], [ -123.364522000999912, 48.462851789000091 ], [ -123.365962605999982, 48.462856102000053 ], [ -123.367368669999962, 48.462866040000073 ], [ -123.367944079999987, 48.462870107000057 ], [ -123.367876670999948, 48.46332153000013 ], [ -123.36784720199995, 48.463518793000055 ], [ -123.367538588999977, 48.464331695000062 ], [ -123.367530105, 48.464365545000121 ], [ -123.367466016999927, 48.464620966000062 ], [ -123.36742050099997, 48.464802197000033 ], [ -123.367414657000026, 48.464907164000053 ], [ -123.367412513999952, 48.464946283000081 ], [ -123.367414186999909, 48.464951744000125 ], [ -123.367481093999942, 48.465168997000056 ], [ -123.367925983999953, 48.465563421000091 ], [ -123.368674011999957, 48.466226594000034 ], [ -123.368358680999947, 48.466262091000083 ], [ -123.367176003999958, 48.46608839400011 ], [ -123.366536304999954, 48.466177980000019 ], [ -123.366358458999983, 48.466221055000098 ], [ -123.365242683999966, 48.466491191000031 ], [ -123.364432810999944, 48.466678510000101 ], [ -123.364024389999912, 48.466859500000055 ], [ -123.363789603999933, 48.467000591000094 ], [ -123.363719392999911, 48.467091169000135 ], [ -123.363549513999956, 48.467310298000079 ], [ -123.36343067899999, 48.467550841000033 ], [ -123.363245008999925, 48.467926703000053 ], [ -123.362980684999911, 48.468016591000044 ], [ -123.362905409999911, 48.467925142000098 ], [ -123.362197862999949, 48.467065800000022 ], [ -123.361649004999975, 48.46639909100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171913000", "BldgCostT": "110740000", "sL_LossRatio": "0.891119853871013", "sL_AssetLoss": "113872", "sL_BldgLoss": "101473.6", "sL_StrLoss": "76701.9", "sL_NStrLoss": "24771.7", "sL_ContLoss": "12398.4", "geom_point": "0101000020E61000006368D9E648D75EC022090432223B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36030059699999, 48.461479692000047 ], [ -123.360569215999959, 48.46082899300005 ], [ -123.361229605999981, 48.460851784000148 ], [ -123.361466084999975, 48.460837628000078 ], [ -123.361994993999986, 48.460805913000115 ], [ -123.362941010999918, 48.460815005000015 ], [ -123.363401508999985, 48.460838189000114 ], [ -123.363828187999928, 48.460936315000119 ], [ -123.364419995999967, 48.461145798000118 ], [ -123.365204206999948, 48.461442208000101 ], [ -123.3655403899999, 48.461516393000068 ], [ -123.366952854999965, 48.461552726000043 ], [ -123.367546686999972, 48.461568004000064 ], [ -123.368401087, 48.461546057000085 ], [ -123.368563513999959, 48.461541906000072 ], [ -123.368188602999908, 48.462285497000039 ], [ -123.368439646999903, 48.462417916000078 ], [ -123.368114505999969, 48.462598396000047 ], [ -123.368017, 48.462699693000076 ], [ -123.367944079999987, 48.462870107000057 ], [ -123.367368669999962, 48.462866040000073 ], [ -123.365962605999982, 48.462856102000053 ], [ -123.364522000999912, 48.462851789000091 ], [ -123.361779505999905, 48.462804293000055 ], [ -123.361619893999958, 48.46280348800012 ], [ -123.359734303999943, 48.462793906000044 ], [ -123.36030059699999, 48.461479692000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155073220", "BldgCostT": "99120413", "sL_LossRatio": "0.81688939869776", "sL_AssetLoss": "269382", "sL_BldgLoss": "220055.3", "sL_StrLoss": "158604", "sL_NStrLoss": "61451.3", "sL_ContLoss": "49326.7", "geom_point": "0101000020E6100000D635DDFC10D75EC05F8CD4BDC63A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.363401508999985, 48.460838189000114 ], [ -123.362941010999918, 48.460815005000015 ], [ -123.361994993999986, 48.460805913000115 ], [ -123.361466084999975, 48.460837628000078 ], [ -123.361229605999981, 48.460851784000148 ], [ -123.360569215999959, 48.46082899300005 ], [ -123.360604882999922, 48.460626109000032 ], [ -123.359493803999968, 48.460754719000079 ], [ -123.358745708999976, 48.460841301000109 ], [ -123.358191004999966, 48.460895519000061 ], [ -123.357436915999955, 48.460969207000097 ], [ -123.357143942999969, 48.460188096000053 ], [ -123.357072595999981, 48.459997890000132 ], [ -123.356997610999912, 48.459817503000124 ], [ -123.356707011999944, 48.459629901000078 ], [ -123.356632383999923, 48.459468410000113 ], [ -123.356524503999964, 48.458910207000073 ], [ -123.356563986999973, 48.458686586000056 ], [ -123.356148685999941, 48.457905305000047 ], [ -123.35663121099995, 48.457871298000107 ], [ -123.357911991999956, 48.457759901 ], [ -123.359103616999946, 48.457660574000087 ], [ -123.359853089999945, 48.457598097000051 ], [ -123.360511656999947, 48.457527033000098 ], [ -123.361174476, 48.45745548500004 ], [ -123.362059112999958, 48.457359998000101 ], [ -123.363297003999961, 48.457194283000049 ], [ -123.363533392999955, 48.458039697000082 ], [ -123.363762693, 48.45889040200003 ], [ -123.363925416999919, 48.459455157000079 ], [ -123.363963224999978, 48.459586430000073 ], [ -123.364294417999943, 48.460736004000083 ], [ -123.364419995999967, 48.461145798000118 ], [ -123.363828187999928, 48.460936315000119 ], [ -123.363401508999985, 48.460838189000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159816417", "BldgCostT": "97481667", "sL_LossRatio": "0.943051110051042", "sL_AssetLoss": "130871.91", "sL_BldgLoss": "123418.9", "sL_StrLoss": "93581.8", "sL_NStrLoss": "29837.1", "sL_ContLoss": "7453.01", "geom_point": "0101000020E61000006FB7FA3D73D75EC01E53C1F2B13A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.367819837999946, 48.45659687800002 ], [ -123.369186468999928, 48.456416344000083 ], [ -123.369388770999947, 48.45656564800003 ], [ -123.369600337999941, 48.4568639740001 ], [ -123.369496562999956, 48.457027119000024 ], [ -123.369402072999975, 48.457175593000066 ], [ -123.369316417999926, 48.457307807000113 ], [ -123.369004871999948, 48.457846452000112 ], [ -123.368935385999919, 48.457966591000066 ], [ -123.368819689999967, 48.458227007000083 ], [ -123.368726986999974, 48.458848694000096 ], [ -123.368712388999981, 48.459110814000113 ], [ -123.368703386999968, 48.459588489000026 ], [ -123.36875750099999, 48.459950589000123 ], [ -123.368886600999986, 48.460298309 ], [ -123.366149202999964, 48.46059820800015 ], [ -123.364294417999943, 48.460736004000083 ], [ -123.363963224999978, 48.459586430000073 ], [ -123.363925416999919, 48.459455157000079 ], [ -123.363762693, 48.45889040200003 ], [ -123.363533392999955, 48.458039697000082 ], [ -123.363297003999961, 48.457194283000049 ], [ -123.366820731999965, 48.456728863000123 ], [ -123.367819837999946, 48.45659687800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215828979", "BldgCostT": "146799858", "sL_LossRatio": "0.900714695440522", "sL_AssetLoss": "129006", "sL_BldgLoss": "116197.6", "sL_StrLoss": "81781.6", "sL_NStrLoss": "34416", "sL_ContLoss": "12808.4", "geom_point": "0101000020E6100000590CBA317BD75EC0EB2C82184B3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.363028691999901, 48.456268697000091 ], [ -123.365395097999937, 48.456129095000087 ], [ -123.365520516999979, 48.4560600840001 ], [ -123.365572191999917, 48.456004599000046 ], [ -123.36559311299996, 48.455847306000067 ], [ -123.365079289999969, 48.455279897000018 ], [ -123.366790619999961, 48.45441889100001 ], [ -123.365951611999975, 48.453726206000063 ], [ -123.365189587999978, 48.453057997000052 ], [ -123.365598768999945, 48.452869434000021 ], [ -123.36603068, 48.452670400000031 ], [ -123.366245419999956, 48.452572003000036 ], [ -123.366919687999953, 48.45319119400007 ], [ -123.36961192699999, 48.455420756000116 ], [ -123.370040469999964, 48.455775655000068 ], [ -123.370317770999989, 48.456005275000059 ], [ -123.370849229999934, 48.455844411000058 ], [ -123.370449417999978, 48.456018381000099 ], [ -123.370251151999938, 48.456104659000076 ], [ -123.370153268999971, 48.456147262000101 ], [ -123.369600337999941, 48.4568639740001 ], [ -123.369388770999947, 48.45656564800003 ], [ -123.369186468999928, 48.456416344000083 ], [ -123.367819837999946, 48.45659687800002 ], [ -123.366820731999965, 48.456728863000123 ], [ -123.363297003999961, 48.457194283000049 ], [ -123.363028691999901, 48.456268697000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113002999", "BldgCostT": "70999999", "sL_LossRatio": "0.85550469234298", "sL_AssetLoss": "158302.58", "sL_BldgLoss": "135428.6", "sL_StrLoss": "102775.7", "sL_NStrLoss": "32652.9", "sL_ContLoss": "22873.98", "geom_point": "0101000020E6100000A18E7D7F39D75EC0E1CA2C844D3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36375899899997, 48.453751889000046 ], [ -123.365189587999978, 48.453057997000052 ], [ -123.365951611999975, 48.453726206000063 ], [ -123.366790619999961, 48.45441889100001 ], [ -123.365079289999969, 48.455279897000018 ], [ -123.36559311299996, 48.455847306000067 ], [ -123.365572191999917, 48.456004599000046 ], [ -123.365520516999979, 48.4560600840001 ], [ -123.365395097999937, 48.456129095000087 ], [ -123.363028691999901, 48.456268697000091 ], [ -123.363297003999961, 48.457194283000049 ], [ -123.362059112999958, 48.457359998000101 ], [ -123.361174476, 48.45745548500004 ], [ -123.360511656999947, 48.457527033000098 ], [ -123.359853089999945, 48.457598097000051 ], [ -123.359769420999939, 48.457310977000041 ], [ -123.359598211999966, 48.456723385000068 ], [ -123.359458814999968, 48.456247393000098 ], [ -123.35938820299998, 48.456012988000019 ], [ -123.359450284999966, 48.455721395000118 ], [ -123.360129011999945, 48.45543891100003 ], [ -123.362129376999988, 48.454503140000014 ], [ -123.3621946199999, 48.454472621000093 ], [ -123.362495393999964, 48.454331911000125 ], [ -123.363480188999944, 48.453879879000063 ], [ -123.36375899899997, 48.453751889000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "544580720", "BldgCostT": "372415413", "sL_LossRatio": "0.773557354926671", "sL_AssetLoss": "150836.65", "sL_BldgLoss": "116680.8", "sL_StrLoss": "59941.4", "sL_NStrLoss": "56739.4", "sL_ContLoss": "34155.85", "geom_point": "0101000020E6100000D9966C022DD75EC05E4F843F093A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360575717999936, 48.452638305000121 ], [ -123.360729714999977, 48.452211912000081 ], [ -123.360879104999952, 48.451798190000083 ], [ -123.362848217999982, 48.452122305000053 ], [ -123.36603068, 48.452670400000031 ], [ -123.365598768999945, 48.452869434000021 ], [ -123.365189587999978, 48.453057997000052 ], [ -123.36375899899997, 48.453751889000046 ], [ -123.363480188999944, 48.453879879000063 ], [ -123.362495393999964, 48.454331911000125 ], [ -123.3621946199999, 48.454472621000093 ], [ -123.362129376999988, 48.454503140000014 ], [ -123.360129011999945, 48.45543891100003 ], [ -123.359450284999966, 48.455721395000118 ], [ -123.360113101999929, 48.453905636000108 ], [ -123.360510896999969, 48.452815788000059 ], [ -123.360575717999936, 48.452638305000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "264785259", "BldgCostT": "179550785", "sL_LossRatio": "0.813877081792938", "sL_AssetLoss": "120301.95", "sL_BldgLoss": "97911", "sL_StrLoss": "60622.3", "sL_NStrLoss": "37288.7", "sL_ContLoss": "22390.95", "geom_point": "0101000020E61000001F72D0B105D75EC06105E88CE2394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360541020999918, 48.449124974000071 ], [ -123.361890463999984, 48.44896469300005 ], [ -123.36187162, 48.44910852800006 ], [ -123.361380051999959, 48.450440766000035 ], [ -123.360879104999952, 48.451798190000083 ], [ -123.360729714999977, 48.452211912000081 ], [ -123.360575717999936, 48.452638305000121 ], [ -123.360510896999969, 48.452815788000059 ], [ -123.360113101999929, 48.453905636000108 ], [ -123.359450284999966, 48.455721395000118 ], [ -123.359217798999936, 48.455726401000028 ], [ -123.359028689999917, 48.455656792000042 ], [ -123.357951672999931, 48.454924061000071 ], [ -123.357601912999911, 48.454686104000096 ], [ -123.357744408999935, 48.454599493000075 ], [ -123.358051955999898, 48.453791828000114 ], [ -123.358206598, 48.453385673000099 ], [ -123.35854802599998, 48.452488970000026 ], [ -123.358639982999989, 48.452247402000062 ], [ -123.358901622999923, 48.451527955000088 ], [ -123.359443890999927, 48.450116910000126 ], [ -123.359555200000031, 48.44982721700007 ], [ -123.359794091999973, 48.449205564000096 ], [ -123.360541020999918, 48.449124974000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343338144", "BldgCostT": "229510538", "sL_LossRatio": "0.716999543658202", "sL_AssetLoss": "166322.7", "sL_BldgLoss": "119253.3", "sL_StrLoss": "59450.4", "sL_NStrLoss": "59802.9", "sL_ContLoss": "47069.4", "geom_point": "0101000020E610000009718B7D32D75EC0571995EDA6394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360879104999952, 48.451798190000083 ], [ -123.361380051999959, 48.450440766000035 ], [ -123.36187162, 48.44910852800006 ], [ -123.361890463999984, 48.44896469300005 ], [ -123.363328146999933, 48.448794892000059 ], [ -123.364017080999986, 48.448713747000099 ], [ -123.36378896599993, 48.449488125000116 ], [ -123.363365178999942, 48.450687121000058 ], [ -123.363154179, 48.45128401000008 ], [ -123.362848217999982, 48.452122305000053 ], [ -123.360879104999952, 48.451798190000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "412098780", "BldgCostT": "281258602", "sL_LossRatio": "0.765730771474148", "sL_AssetLoss": "164415.49", "sL_BldgLoss": "125898", "sL_StrLoss": "72365.3", "sL_NStrLoss": "53532.7", "sL_ContLoss": "38517.49", "geom_point": "0101000020E6100000829D62D560D75EC0E992DD71AF394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.365405817999928, 48.448549897000085 ], [ -123.366587913999922, 48.448412487000041 ], [ -123.367490311999987, 48.451987899000095 ], [ -123.366835892999973, 48.452294953000063 ], [ -123.36635776899999, 48.452519281000043 ], [ -123.366245419999956, 48.452572003000036 ], [ -123.36603068, 48.452670400000031 ], [ -123.362848217999982, 48.452122305000053 ], [ -123.363154179, 48.45128401000008 ], [ -123.363365178999942, 48.450687121000058 ], [ -123.36378896599993, 48.449488125000116 ], [ -123.364017080999986, 48.448713747000099 ], [ -123.364232521999938, 48.448688266000048 ], [ -123.364930249999958, 48.448605703000069 ], [ -123.365405817999928, 48.448549897000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113794166", "BldgCostT": "73781666", "sL_LossRatio": "0.801530259842948", "sL_AssetLoss": "193410.29", "sL_BldgLoss": "155024.2", "sL_StrLoss": "114554", "sL_NStrLoss": "40470.2", "sL_ContLoss": "38386.09", "geom_point": "0101000020E61000004F0A5EBA2AD75EC0A6EEC2BD4F394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.358888135999976, 48.449304724000115 ], [ -123.358121233999952, 48.446650544000079 ], [ -123.358831234999954, 48.44656331700007 ], [ -123.359799787999961, 48.446444390000046 ], [ -123.36029872599994, 48.446383646000129 ], [ -123.361152092999987, 48.446279712000027 ], [ -123.36231479199995, 48.446125590000108 ], [ -123.36279311199999, 48.447713899000057 ], [ -123.363464877999945, 48.447601596000048 ], [ -123.363885291999935, 48.447373092000078 ], [ -123.364921579999944, 48.446701787000052 ], [ -123.365201604999982, 48.446594292000107 ], [ -123.3660551899999, 48.446464913000021 ], [ -123.366587913999922, 48.448412487000041 ], [ -123.365405817999928, 48.448549897000085 ], [ -123.364930249999958, 48.448605703000069 ], [ -123.364232521999938, 48.448688266000048 ], [ -123.364017080999986, 48.448713747000099 ], [ -123.363328146999933, 48.448794892000059 ], [ -123.361890463999984, 48.44896469300005 ], [ -123.360541020999918, 48.449124974000071 ], [ -123.359794091999973, 48.449205564000096 ], [ -123.359287367999912, 48.449261020000144 ], [ -123.358888135999976, 48.449304724000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225625227", "BldgCostT": "129982516", "sL_LossRatio": "0.685744907730142", "sL_AssetLoss": "354852.07", "sL_BldgLoss": "243338", "sL_StrLoss": "156085.3", "sL_NStrLoss": "87252.7", "sL_ContLoss": "111514.07", "geom_point": "0101000020E6100000D3BFB1885DD75EC01B0BD848F1384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.366587913999922, 48.448412487000041 ], [ -123.3660551899999, 48.446464913000021 ], [ -123.365201604999982, 48.446594292000107 ], [ -123.364921579999944, 48.446701787000052 ], [ -123.363885291999935, 48.447373092000078 ], [ -123.363464877999945, 48.447601596000048 ], [ -123.36279311199999, 48.447713899000057 ], [ -123.36231479199995, 48.446125590000108 ], [ -123.361152092999987, 48.446279712000027 ], [ -123.36029872599994, 48.446383646000129 ], [ -123.359799787999961, 48.446444390000046 ], [ -123.358831234999954, 48.44656331700007 ], [ -123.358121233999952, 48.446650544000079 ], [ -123.357982845999956, 48.446170405000082 ], [ -123.357440602999958, 48.44428889900005 ], [ -123.35776960199999, 48.444247485000098 ], [ -123.358444159999962, 48.444161589000061 ], [ -123.359119522999961, 48.444075602000119 ], [ -123.358718986999989, 48.442667801000027 ], [ -123.359389250999953, 48.442589374000107 ], [ -123.360053202999964, 48.442511696000089 ], [ -123.361447910999971, 48.442334505000055 ], [ -123.364042575999946, 48.441992573000043 ], [ -123.364210882999885, 48.441970408000032 ], [ -123.364339165999979, 48.441953537000117 ], [ -123.364452902, 48.441938599000025 ], [ -123.3655127899999, 48.441786401000066 ], [ -123.365614607999973, 48.441775393000043 ], [ -123.36649909499999, 48.44167109100011 ], [ -123.366954709999931, 48.4416121060001 ], [ -123.368543769999974, 48.441406291000128 ], [ -123.368752390999973, 48.441774542000132 ], [ -123.36877973899999, 48.441822845000026 ], [ -123.36929349699993, 48.442729890000074 ], [ -123.36929848599999, 48.442738355000117 ], [ -123.369677012999901, 48.443380588000089 ], [ -123.370260195999947, 48.444397903000066 ], [ -123.370627983999952, 48.445017489000072 ], [ -123.370668682999977, 48.445086115000151 ], [ -123.371100519999942, 48.445786395000027 ], [ -123.371147905999948, 48.445863253000063 ], [ -123.371547729999989, 48.446511579000102 ], [ -123.371699083999886, 48.446757032000114 ], [ -123.372045576999952, 48.447318897000116 ], [ -123.372309170999984, 48.447749268000081 ], [ -123.371308910000025, 48.447865035000049 ], [ -123.369761760999921, 48.448044042000063 ], [ -123.368134005999934, 48.448233598000087 ], [ -123.368010431999934, 48.44824761200006 ], [ -123.367873190999916, 48.448263187000073 ], [ -123.366587913999922, 48.448412487000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111671584", "BldgCostT": "73593334", "sL_LossRatio": "0.935340616989722", "sL_AssetLoss": "136079.09", "sL_BldgLoss": "127280.3", "sL_StrLoss": "103835", "sL_NStrLoss": "23445.3", "sL_ContLoss": "8798.79", "geom_point": "0101000020E6100000AA783C90A9D65EC01F0C024C15394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.35737653599989, 48.449468101000058 ], [ -123.356653211999955, 48.446832144000034 ], [ -123.355966561999978, 48.446921423000077 ], [ -123.355124314999941, 48.447024366000079 ], [ -123.354869708999942, 48.447055475000042 ], [ -123.353723386999945, 48.447205414000067 ], [ -123.352972992999966, 48.447299410000035 ], [ -123.349767211999904, 48.447706205000031 ], [ -123.34966578699999, 48.447347385000022 ], [ -123.349571080999951, 48.446941898000048 ], [ -123.34941109099999, 48.446256186000042 ], [ -123.349375384999945, 48.446098397000092 ], [ -123.349184595999958, 48.445288303000069 ], [ -123.349658274999953, 48.44522756700006 ], [ -123.351009192999982, 48.445054414000047 ], [ -123.35098079699992, 48.444718199000107 ], [ -123.351180395999947, 48.444533181000047 ], [ -123.351201506, 48.444513595000075 ], [ -123.351429274999987, 48.444473776000116 ], [ -123.351638963999989, 48.444437096000051 ], [ -123.351842510999944, 48.444299692000115 ], [ -123.351763874999961, 48.444237645000058 ], [ -123.351653707999958, 48.444150708000052 ], [ -123.351459290999969, 48.443598389000144 ], [ -123.352989498999989, 48.443404787000134 ], [ -123.35473271099994, 48.443184204000026 ], [ -123.354952054999927, 48.444040144 ], [ -123.355027717999931, 48.444335323000068 ], [ -123.355097208999936, 48.444606381000028 ], [ -123.355287306999941, 48.444586784000094 ], [ -123.356463497999968, 48.444431315000081 ], [ -123.357440602999958, 48.44428889900005 ], [ -123.357982845999956, 48.446170405000082 ], [ -123.358121233999952, 48.446650544000079 ], [ -123.358888135999976, 48.449304724000115 ], [ -123.357635917000025, 48.449440317000033 ], [ -123.35737653599989, 48.449468101000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131297667", "BldgCostT": "86186667", "sL_LossRatio": "0.91489186295447", "sL_AssetLoss": "190438.9", "sL_BldgLoss": "174231", "sL_StrLoss": "139704", "sL_NStrLoss": "34527", "sL_ContLoss": "16207.9", "geom_point": "0101000020E6100000BFA032BCA1D65EC0862162186A394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.355966561999978, 48.446921423000077 ], [ -123.356653211999955, 48.446832144000034 ], [ -123.35737653599989, 48.449468101000058 ], [ -123.355677700999962, 48.449651006000067 ], [ -123.35545886700001, 48.449674566000098 ], [ -123.354871956999901, 48.44973860300005 ], [ -123.354455861999924, 48.449783972000041 ], [ -123.353954639999969, 48.449838641000028 ], [ -123.352310491999944, 48.450017888000083 ], [ -123.351182356999942, 48.450328706000079 ], [ -123.351030997999928, 48.450229400000119 ], [ -123.35085064899998, 48.450091994000111 ], [ -123.350651699999943, 48.449940405000099 ], [ -123.350451409999948, 48.449732486000073 ], [ -123.35029127699994, 48.449385797000033 ], [ -123.350068098999927, 48.448550605000044 ], [ -123.349767211999904, 48.447706205000031 ], [ -123.352972992999966, 48.447299410000035 ], [ -123.353723386999945, 48.447205414000067 ], [ -123.354869708999942, 48.447055475000042 ], [ -123.355124314999941, 48.447024366000079 ], [ -123.355966561999978, 48.446921423000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189710167", "BldgCostT": "125766667", "sL_LossRatio": "0.827700545556213", "sL_AssetLoss": "174937.06", "sL_BldgLoss": "144795.5", "sL_StrLoss": "108373.2", "sL_NStrLoss": "36422.3", "sL_ContLoss": "30141.56", "geom_point": "0101000020E610000040AE26B243D65EC0A397B5A039394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.348143045999976, 48.450225716000048 ], [ -123.348144087999941, 48.448442508000021 ], [ -123.34692678699993, 48.448441745000089 ], [ -123.346785179999983, 48.44843254400012 ], [ -123.34596451199999, 48.44837929000002 ], [ -123.346455091999971, 48.448259840000148 ], [ -123.347112694999936, 48.447885013000104 ], [ -123.346974699, 48.447913994000068 ], [ -123.344229506999952, 48.44783349700004 ], [ -123.34467149299995, 48.447053712000042 ], [ -123.344755705999916, 48.446924102000082 ], [ -123.345240012999966, 48.446416809000056 ], [ -123.345384628999938, 48.446265305000139 ], [ -123.345556097000014, 48.446085689000071 ], [ -123.346440294, 48.445123095000014 ], [ -123.34670410699999, 48.444871799000111 ], [ -123.347180914999939, 48.444360708000026 ], [ -123.347844076999962, 48.443679265000078 ], [ -123.348079614999918, 48.443499414000087 ], [ -123.348636219999918, 48.443322105000078 ], [ -123.348768558999964, 48.443796722000044 ], [ -123.348869032999971, 48.444156922000055 ], [ -123.349184595999958, 48.445288303000069 ], [ -123.349375384999945, 48.446098397000092 ], [ -123.34941109099999, 48.446256186000042 ], [ -123.349571080999951, 48.446941898000048 ], [ -123.34966578699999, 48.447347385000022 ], [ -123.349767211999904, 48.447706205000031 ], [ -123.350068098999927, 48.448550605000044 ], [ -123.35029127699994, 48.449385797000033 ], [ -123.350451409999948, 48.449732486000073 ], [ -123.350651699999943, 48.449940405000099 ], [ -123.35085064899998, 48.450091994000111 ], [ -123.351030997999928, 48.450229400000119 ], [ -123.350484297999955, 48.450203999000152 ], [ -123.349532115000017, 48.450311789000047 ], [ -123.348787497000018, 48.450396111000025 ], [ -123.348092677999887, 48.450477519000046 ], [ -123.348143045999976, 48.450225716000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214908136", "BldgCostT": "140032079", "sL_LossRatio": "0.85305859050239", "sL_AssetLoss": "424591", "sL_BldgLoss": "362201", "sL_StrLoss": "227897", "sL_NStrLoss": "134304", "sL_ContLoss": "62390", "geom_point": "0101000020E6100000BFD3AE53F6D55EC0CFCAB4051D394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.343944403999942, 48.448343083000047 ], [ -123.342627899999968, 48.448300999000068 ], [ -123.341733555999966, 48.448278560000034 ], [ -123.341527893999967, 48.448273411000052 ], [ -123.341535796999906, 48.447964301000077 ], [ -123.341292109999955, 48.447618200000065 ], [ -123.340988900999946, 48.447235961000047 ], [ -123.340668101999967, 48.446831487000082 ], [ -123.340377425000014, 48.446463279000071 ], [ -123.340059493999902, 48.446060490000107 ], [ -123.339761587999973, 48.445683140000057 ], [ -123.339442079999955, 48.445278500000107 ], [ -123.342582720999928, 48.444182303000098 ], [ -123.343086312999944, 48.444804511000015 ], [ -123.34421699499994, 48.444404518000056 ], [ -123.345523208999964, 48.443953886000095 ], [ -123.34620460799999, 48.444822635000016 ], [ -123.346440294, 48.445123095000014 ], [ -123.345556097000014, 48.446085689000071 ], [ -123.345384628999938, 48.446265305000139 ], [ -123.345240012999966, 48.446416809000056 ], [ -123.344755705999916, 48.446924102000082 ], [ -123.34467149299995, 48.447053712000042 ], [ -123.344229506999952, 48.44783349700004 ], [ -123.346974699, 48.447913994000068 ], [ -123.347112694999936, 48.447885013000104 ], [ -123.346455091999971, 48.448259840000148 ], [ -123.34596451199999, 48.44837929000002 ], [ -123.343944403999942, 48.448343083000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219135478", "BldgCostT": "149264857", "sL_LossRatio": "0.878925128073093", "sL_AssetLoss": "123665.71", "sL_BldgLoss": "108692.9", "sL_StrLoss": "79249.2", "sL_NStrLoss": "29443.7", "sL_ContLoss": "14972.81", "geom_point": "0101000020E610000083FBF12C3BD65EC08FB84B0BAC384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34620460799999, 48.444822635000016 ], [ -123.345523208999964, 48.443953886000095 ], [ -123.34421699499994, 48.444404518000056 ], [ -123.343086312999944, 48.444804511000015 ], [ -123.342582720999928, 48.444182303000098 ], [ -123.344950797999971, 48.443331690000065 ], [ -123.346131790999934, 48.442490195000062 ], [ -123.346849092999918, 48.442889603000026 ], [ -123.347144202999957, 48.442319792000056 ], [ -123.347249278999954, 48.441096003000055 ], [ -123.347897786999951, 48.441085193000099 ], [ -123.348226573, 48.441025327000055 ], [ -123.34868525399996, 48.440941794000018 ], [ -123.349299640999917, 48.440829927000038 ], [ -123.34982955599996, 48.440731758000062 ], [ -123.349877511999949, 48.440722866000108 ], [ -123.349914925999954, 48.440715926000102 ], [ -123.350089374999968, 48.440683600000071 ], [ -123.350174760999934, 48.440667790000106 ], [ -123.351679540999925, 48.440388971000068 ], [ -123.35164879899996, 48.440455835000066 ], [ -123.351658954999948, 48.440563394000037 ], [ -123.3509131, 48.441180520000032 ], [ -123.349692701999956, 48.44219700200005 ], [ -123.348989904999968, 48.442791698000043 ], [ -123.348636219999918, 48.443322105000078 ], [ -123.348079614999918, 48.443499414000087 ], [ -123.347844076999962, 48.443679265000078 ], [ -123.347180914999939, 48.444360708000026 ], [ -123.34670410699999, 48.444871799000111 ], [ -123.346440294, 48.445123095000014 ], [ -123.34620460799999, 48.444822635000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325093135", "BldgCostT": "213047078", "sL_LossRatio": "0.745164580078499", "sL_AssetLoss": "181346.918", "sL_BldgLoss": "135133.3", "sL_StrLoss": "85353.4", "sL_NStrLoss": "49779.9", "sL_ContLoss": "46213.618", "geom_point": "0101000020E6100000E45BDDB909D65EC03F783760A1384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.341246503000022, 48.4425010920001 ], [ -123.342555618999967, 48.441988682000066 ], [ -123.342788099999908, 48.441897695000087 ], [ -123.343343005999955, 48.441669144000073 ], [ -123.344259614999956, 48.441291600000078 ], [ -123.344791889999939, 48.441113813000065 ], [ -123.346050771999941, 48.441104695 ], [ -123.347249278999954, 48.441096003000055 ], [ -123.347144202999957, 48.442319792000056 ], [ -123.346849092999918, 48.442889603000026 ], [ -123.346131790999934, 48.442490195000062 ], [ -123.344950797999971, 48.443331690000065 ], [ -123.342582720999928, 48.444182303000098 ], [ -123.342077877999913, 48.443533804000062 ], [ -123.342003309999882, 48.443444512000021 ], [ -123.341246503000022, 48.4425010920001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152213637", "BldgCostT": "96692080", "sL_LossRatio": "0.764330028226832", "sL_AssetLoss": "122326.87", "sL_BldgLoss": "93498.1", "sL_StrLoss": "60439.1", "sL_NStrLoss": "33059", "sL_ContLoss": "28828.77", "geom_point": "0101000020E6100000D68093D04AD65EC05E0E4F0A4E384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.344762389999985, 48.440148108000109 ], [ -123.344826299000019, 48.439659996000103 ], [ -123.345168701999938, 48.43957121300005 ], [ -123.345481691999922, 48.438995605000102 ], [ -123.346338984999988, 48.439171374000082 ], [ -123.34777669099995, 48.4394660930001 ], [ -123.347777665999928, 48.439457149000106 ], [ -123.347873302999943, 48.438586587000074 ], [ -123.348724588999929, 48.438736901 ], [ -123.34931270499996, 48.438670410000057 ], [ -123.350614117999982, 48.438495598000031 ], [ -123.351530617, 48.438348899000076 ], [ -123.351881779999943, 48.438363480000142 ], [ -123.351880178999977, 48.438379641000033 ], [ -123.351713044999897, 48.440053340000105 ], [ -123.351679540999925, 48.440388971000068 ], [ -123.350174760999934, 48.440667790000106 ], [ -123.350089374999968, 48.440683600000071 ], [ -123.349914925999954, 48.440715926000102 ], [ -123.349877511999949, 48.440722866000108 ], [ -123.34982955599996, 48.440731758000062 ], [ -123.349299640999917, 48.440829927000038 ], [ -123.34868525399996, 48.440941794000018 ], [ -123.348226573, 48.441025327000055 ], [ -123.347897786999951, 48.441085193000099 ], [ -123.347249278999954, 48.441096003000055 ], [ -123.346050771999941, 48.441104695 ], [ -123.344791889999939, 48.441113813000065 ], [ -123.344259614999956, 48.441291600000078 ], [ -123.344445491999963, 48.440624401000072 ], [ -123.344696302999978, 48.44029259400002 ], [ -123.344762389999985, 48.440148108000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141499760", "BldgCostT": "90075402", "sL_LossRatio": "0.861303830540179", "sL_AssetLoss": "177775.71", "sL_BldgLoss": "153118.9", "sL_StrLoss": "116441.4", "sL_NStrLoss": "36677.5", "sL_ContLoss": "24656.81", "geom_point": "0101000020E61000006B252299E1D55EC0816196C932384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.337232998999951, 48.440044706000059 ], [ -123.337202271999928, 48.439894293000044 ], [ -123.337209112999957, 48.439735783000046 ], [ -123.337280388999929, 48.438077301000099 ], [ -123.338481515999945, 48.438078585000078 ], [ -123.339732406999957, 48.438105481000093 ], [ -123.340862713999954, 48.438142010000092 ], [ -123.34226641399999, 48.438139408000126 ], [ -123.343564685999979, 48.438116002000065 ], [ -123.344851889999973, 48.438123092000069 ], [ -123.345928097999931, 48.438184293000049 ], [ -123.347873302999943, 48.438586587000074 ], [ -123.347777665999928, 48.439457149000106 ], [ -123.34777669099995, 48.4394660930001 ], [ -123.346338984999988, 48.439171374000082 ], [ -123.345481691999922, 48.438995605000102 ], [ -123.345168701999938, 48.43957121300005 ], [ -123.344826299000019, 48.439659996000103 ], [ -123.344762389999985, 48.440148108000109 ], [ -123.344226193999944, 48.44013200200007 ], [ -123.343472998, 48.440108599000062 ], [ -123.342154187999967, 48.440087210000122 ], [ -123.340841290999919, 48.440081304000088 ], [ -123.339665004, 48.440071607000078 ], [ -123.338997131000013, 48.440066507000097 ], [ -123.33842668099993, 48.44005850000007 ], [ -123.33744450899998, 48.440047138000033 ], [ -123.337232998999951, 48.440044706000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220745031", "BldgCostT": "151948603", "sL_LossRatio": "0.966154570798567", "sL_AssetLoss": "139527.26", "sL_BldgLoss": "134804.9", "sL_StrLoss": "100462.7", "sL_NStrLoss": "34342.2", "sL_ContLoss": "4722.36", "geom_point": "0101000020E6100000DED73F5734D65EC08C55ACAFE8374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.344919715999978, 48.43621739200011 ], [ -123.34499151299994, 48.434507588000038 ], [ -123.346309585999975, 48.434586589000105 ], [ -123.347650910999974, 48.434659904000043 ], [ -123.346901209999885, 48.43623551000006 ], [ -123.348102517999934, 48.436256605000047 ], [ -123.349523497999911, 48.436283212000028 ], [ -123.349394134999955, 48.437748159000066 ], [ -123.34931270499996, 48.438670410000057 ], [ -123.348724588999929, 48.438736901 ], [ -123.347873302999943, 48.438586587000074 ], [ -123.345928097999931, 48.438184293000049 ], [ -123.344851889999973, 48.438123092000069 ], [ -123.344883653999887, 48.437230719000048 ], [ -123.344919715999978, 48.43621739200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126867311", "BldgCostT": "81538190", "sL_LossRatio": "0.852859183384562", "sL_AssetLoss": "171370.26", "sL_BldgLoss": "146154.7", "sL_StrLoss": "111147.3", "sL_NStrLoss": "35007.4", "sL_ContLoss": "25215.56", "geom_point": "0101000020E61000002A2D33D7EFD55EC0726D5E8BCC374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342296754999921, 48.43696050300008 ], [ -123.342316503999911, 48.436192694000077 ], [ -123.340947010999983, 48.43616279100015 ], [ -123.339760198999912, 48.436148405000047 ], [ -123.339817179999926, 48.434247804000123 ], [ -123.340997711999975, 48.434301800000043 ], [ -123.342321005999935, 48.434359400000062 ], [ -123.342926507999934, 48.434390892000124 ], [ -123.343649018999884, 48.43442970900005 ], [ -123.34499151299994, 48.434507588000038 ], [ -123.344919715999978, 48.43621739200011 ], [ -123.344883653999887, 48.437230719000048 ], [ -123.344851889999973, 48.438123092000069 ], [ -123.343564685999979, 48.438116002000065 ], [ -123.34226641399999, 48.438139408000126 ], [ -123.34227267299994, 48.437896154000072 ], [ -123.342289084999891, 48.437257459000051 ], [ -123.342296754999921, 48.43696050300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102454417", "BldgCostT": "68766667", "sL_LossRatio": "0.893714834840535", "sL_AssetLoss": "168579.5", "sL_BldgLoss": "150662", "sL_StrLoss": "119615", "sL_NStrLoss": "31047", "sL_ContLoss": "17917.5", "geom_point": "0101000020E61000000F2A1ED5B8D55EC00B9797F4DE374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.337280388999929, 48.438077301000099 ], [ -123.337347382999951, 48.436119301000105 ], [ -123.337408188999973, 48.434128695000062 ], [ -123.33830290899999, 48.434178197000072 ], [ -123.33858289099993, 48.434189793000044 ], [ -123.339615278999958, 48.434238297000086 ], [ -123.339817179999926, 48.434247804000123 ], [ -123.339760198999912, 48.436148405000047 ], [ -123.340947010999983, 48.43616279100015 ], [ -123.342316503999911, 48.436192694000077 ], [ -123.342296754999921, 48.43696050300008 ], [ -123.342289084999891, 48.437257459000051 ], [ -123.34227267299994, 48.437896154000072 ], [ -123.34226641399999, 48.438139408000126 ], [ -123.340862713999954, 48.438142010000092 ], [ -123.339732406999957, 48.438105481000093 ], [ -123.338481515999945, 48.438078585000078 ], [ -123.337280388999929, 48.438077301000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160977083", "BldgCostT": "110753333", "sL_LossRatio": "0.896532211501915", "sL_AssetLoss": "153781.87", "sL_BldgLoss": "137870.4", "sL_StrLoss": "105176.2", "sL_NStrLoss": "32694.2", "sL_ContLoss": "15911.47", "geom_point": "0101000020E6100000A41B938BD2D55EC0712B94B769374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.33830290899999, 48.434178197000072 ], [ -123.3383841939999, 48.432662486000083 ], [ -123.339724610999966, 48.432703408000123 ], [ -123.339791484999978, 48.431785669000064 ], [ -123.339831103, 48.431242403000041 ], [ -123.340498043, 48.431261793000012 ], [ -123.342110620999946, 48.431308698000088 ], [ -123.343099998999918, 48.431351495000072 ], [ -123.343069190999955, 48.432019908000029 ], [ -123.343030889999966, 48.432772903000092 ], [ -123.342978095999939, 48.433592192000035 ], [ -123.342926507999934, 48.434390892000124 ], [ -123.342321005999935, 48.434359400000062 ], [ -123.340997711999975, 48.434301800000043 ], [ -123.339817179999926, 48.434247804000123 ], [ -123.339615278999958, 48.434238297000086 ], [ -123.33858289099993, 48.434189793000044 ], [ -123.33830290899999, 48.434178197000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248413166", "BldgCostT": "165506666", "sL_LossRatio": "0.871857909123257", "sL_AssetLoss": "156057.31", "sL_BldgLoss": "136059.8", "sL_StrLoss": "100022", "sL_NStrLoss": "36037.8", "sL_ContLoss": "19997.51", "geom_point": "0101000020E610000009AF98CF01D65EC0DF9B3AEA43374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342230817999962, 48.429480996000102 ], [ -123.345175393999952, 48.429548494000088 ], [ -123.345139796999931, 48.430471994000087 ], [ -123.345116097999949, 48.431375085000077 ], [ -123.345076682999931, 48.432075705000031 ], [ -123.345039507999957, 48.432811587000096 ], [ -123.345022591, 48.433640788000091 ], [ -123.34499151299994, 48.434507588000038 ], [ -123.343649018999884, 48.43442970900005 ], [ -123.342926507999934, 48.434390892000124 ], [ -123.342978095999939, 48.433592192000035 ], [ -123.343030889999966, 48.432772903000092 ], [ -123.343069190999955, 48.432019908000029 ], [ -123.343099998999918, 48.431351495000072 ], [ -123.342110620999946, 48.431308698000088 ], [ -123.342181695999955, 48.430402308000033 ], [ -123.342230817999962, 48.429480996000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220243053", "BldgCostT": "147683746", "sL_LossRatio": "0.77424668463148", "sL_AssetLoss": "160840.34", "sL_BldgLoss": "124530.1", "sL_StrLoss": "77385", "sL_NStrLoss": "47145.1", "sL_ContLoss": "36310.24", "geom_point": "0101000020E610000002A2D5662FD65EC03EAB81BD74374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.345076682999931, 48.432075705000031 ], [ -123.345116097999949, 48.431375085000077 ], [ -123.345523481999948, 48.431401492000091 ], [ -123.346454419999944, 48.431476198000027 ], [ -123.347579283999949, 48.431558502000023 ], [ -123.34746472199997, 48.432517907000047 ], [ -123.347435182999959, 48.432876098000065 ], [ -123.347401603, 48.433282906000059 ], [ -123.347342810000015, 48.433728691000063 ], [ -123.347890289999967, 48.433831708000099 ], [ -123.349417306999953, 48.433915902000074 ], [ -123.349392977999955, 48.434277910000105 ], [ -123.349309578999978, 48.434801500000042 ], [ -123.347650910999974, 48.434659904000043 ], [ -123.346309585999975, 48.434586589000105 ], [ -123.34499151299994, 48.434507588000038 ], [ -123.345022591, 48.433640788000091 ], [ -123.345039507999957, 48.432811587000096 ], [ -123.345076682999931, 48.432075705000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271189977", "BldgCostT": "174568871", "sL_LossRatio": "0.904509829532726", "sL_AssetLoss": "143243.33", "sL_BldgLoss": "129565", "sL_StrLoss": "91671", "sL_NStrLoss": "37894", "sL_ContLoss": "13678.33", "geom_point": "0101000020E6100000FE37BBF768D65EC0631B4D6871374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34746472199997, 48.432517907000047 ], [ -123.347579283999949, 48.431558502000023 ], [ -123.349759014999904, 48.431719491000123 ], [ -123.350827373999948, 48.431797704000047 ], [ -123.35158642799999, 48.43184825800013 ], [ -123.352669312, 48.431920389000084 ], [ -123.352576905, 48.432727904000103 ], [ -123.352467683999961, 48.433592796000042 ], [ -123.352360601999976, 48.4344450030001 ], [ -123.352295103999921, 48.434988080000046 ], [ -123.350984085, 48.434903909000113 ], [ -123.349309578999978, 48.434801500000042 ], [ -123.349392977999955, 48.434277910000105 ], [ -123.349417306999953, 48.433915902000074 ], [ -123.347890289999967, 48.433831708000099 ], [ -123.347342810000015, 48.433728691000063 ], [ -123.347401603, 48.433282906000059 ], [ -123.347435182999959, 48.432876098000065 ], [ -123.34746472199997, 48.432517907000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121470324", "BldgCostT": "71375564", "sL_LossRatio": "0.716797785941947", "sL_AssetLoss": "216594.14", "sL_BldgLoss": "155254.2", "sL_StrLoss": "106679.1", "sL_NStrLoss": "48575.1", "sL_ContLoss": "61339.94", "geom_point": "0101000020E6100000C8C1D8E756D65EC06A56F97512374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.345175393999952, 48.429548494000088 ], [ -123.34529269899997, 48.428660495000067 ], [ -123.346829400999979, 48.428737802000079 ], [ -123.348960079999983, 48.428862422000101 ], [ -123.349445320999948, 48.428890813000066 ], [ -123.350114990999984, 48.428883214000045 ], [ -123.352124494999913, 48.428998395000107 ], [ -123.353034987999976, 48.429075299000075 ], [ -123.352968198999946, 48.429545301000132 ], [ -123.352858111999936, 48.430475904000083 ], [ -123.352669312, 48.431920389000084 ], [ -123.35158642799999, 48.43184825800013 ], [ -123.350827373999948, 48.431797704000047 ], [ -123.349759014999904, 48.431719491000123 ], [ -123.347579283999949, 48.431558502000023 ], [ -123.346454419999944, 48.431476198000027 ], [ -123.345523481999948, 48.431401492000091 ], [ -123.345116097999949, 48.431375085000077 ], [ -123.345139796999931, 48.430471994000087 ], [ -123.345175393999952, 48.429548494000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "366401605", "BldgCostT": "244867491", "sL_LossRatio": "0.797274495514193", "sL_AssetLoss": "172426.06", "sL_BldgLoss": "137470.9", "sL_StrLoss": "82229.7", "sL_NStrLoss": "55241.2", "sL_ContLoss": "34955.16", "geom_point": "0101000020E6100000D6353045BBD65EC0DFA93E5F4C374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.352858111999936, 48.430475904000083 ], [ -123.352968198999946, 48.429545301000132 ], [ -123.355870304999925, 48.429721491000066 ], [ -123.355741687999952, 48.430621894000105 ], [ -123.355624790999968, 48.431385498000083 ], [ -123.357916349999982, 48.431514025000091 ], [ -123.358523688999952, 48.4315480960001 ], [ -123.358424489999933, 48.432285113000042 ], [ -123.358311893999897, 48.433093898000074 ], [ -123.358198017999911, 48.433923509000117 ], [ -123.357621403999971, 48.433887794000043 ], [ -123.356628389999983, 48.433826295000053 ], [ -123.355317396999936, 48.433745097000092 ], [ -123.352467683999961, 48.433592796000042 ], [ -123.352576905, 48.432727904000103 ], [ -123.352669312, 48.431920389000084 ], [ -123.352858111999936, 48.430475904000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156117364", "BldgCostT": "98366936", "sL_LossRatio": "0.783189855160944", "sL_AssetLoss": "101061.83", "sL_BldgLoss": "79150.6", "sL_StrLoss": "49749.9", "sL_NStrLoss": "29400.7", "sL_ContLoss": "21911.23", "geom_point": "0101000020E6100000C8CB1620BCD65EC00B00A7DA9B374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.352360601999976, 48.4344450030001 ], [ -123.352467683999961, 48.433592796000042 ], [ -123.355317396999936, 48.433745097000092 ], [ -123.356628389999983, 48.433826295000053 ], [ -123.357621403999971, 48.433887794000043 ], [ -123.358198017999911, 48.433923509000117 ], [ -123.358104190999939, 48.434581157000089 ], [ -123.358076012999931, 48.434778885000064 ], [ -123.358006408999955, 48.435300304000101 ], [ -123.357544223999966, 48.435269384 ], [ -123.356565103999955, 48.435203899000072 ], [ -123.355800306999953, 48.435172991000059 ], [ -123.355151677999984, 48.435138800000118 ], [ -123.354570906999967, 48.435100010000063 ], [ -123.353968145999929, 48.435073398000085 ], [ -123.353392990999936, 48.435047997000069 ], [ -123.352295103999921, 48.434988080000046 ], [ -123.352360601999976, 48.4344450030001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191321455", "BldgCostT": "122729713", "sL_LossRatio": "0.835571305944095", "sL_AssetLoss": "165227.67", "sL_BldgLoss": "138059.5", "sL_StrLoss": "100864.5", "sL_NStrLoss": "37195", "sL_ContLoss": "27168.17", "geom_point": "0101000020E610000077A82913C8D65EC0EB303F9ADE374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.354279493999968, 48.438065992000091 ], [ -123.353392990999936, 48.435047997000069 ], [ -123.353968145999929, 48.435073398000085 ], [ -123.354570906999967, 48.435100010000063 ], [ -123.355151677999984, 48.435138800000118 ], [ -123.355800306999953, 48.435172991000059 ], [ -123.356565103999955, 48.435203899000072 ], [ -123.357544223999966, 48.435269384 ], [ -123.358006408999955, 48.435300304000101 ], [ -123.35862899299994, 48.437514390000032 ], [ -123.357989178999929, 48.43759672700007 ], [ -123.357279195999965, 48.437688099000049 ], [ -123.356549322999939, 48.43777999600006 ], [ -123.355954093999969, 48.437853495000091 ], [ -123.355366682999929, 48.437930795000057 ], [ -123.354630204999978, 48.438020591000075 ], [ -123.354279493999968, 48.438065992000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307834894", "BldgCostT": "210531523", "sL_LossRatio": "0.786052515526809", "sL_AssetLoss": "108844", "sL_BldgLoss": "85557.1", "sL_StrLoss": "41345.2", "sL_NStrLoss": "44211.9", "sL_ContLoss": "23286.9", "geom_point": "0101000020E6100000E19BF917F9D65EC0EAD77325C4374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.358104190999939, 48.434581157000089 ], [ -123.358198017999911, 48.433923509000117 ], [ -123.359403449999931, 48.433985555000035 ], [ -123.359726719999969, 48.43400219300004 ], [ -123.359483394999984, 48.435386695000076 ], [ -123.360032177999955, 48.437328497000095 ], [ -123.359355992999966, 48.437418086000044 ], [ -123.359202750999884, 48.4374383890001 ], [ -123.35862899299994, 48.437514390000032 ], [ -123.358006408999955, 48.435300304000101 ], [ -123.358076012999931, 48.434778885000064 ], [ -123.358104190999939, 48.434581157000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "440324835", "BldgCostT": "305413335", "sL_LossRatio": "0.82981044553502", "sL_AssetLoss": "103745.38", "sL_BldgLoss": "86089", "sL_StrLoss": "46576.4", "sL_NStrLoss": "39512.6", "sL_ContLoss": "17656.38", "geom_point": "0101000020E61000009674624918D75EC0B3FA1B9BBA374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360032177999955, 48.437328497000095 ], [ -123.359483394999984, 48.435386695000076 ], [ -123.359726719999969, 48.43400219300004 ], [ -123.361180383999965, 48.434069098000123 ], [ -123.362424494, 48.434114820000062 ], [ -123.362445137999927, 48.434163459 ], [ -123.362514206999947, 48.434325986000012 ], [ -123.362613798000012, 48.434839797000102 ], [ -123.362633312999947, 48.435577895000051 ], [ -123.361033819999975, 48.435463195000075 ], [ -123.361428610999951, 48.437118900000065 ], [ -123.360032177999955, 48.437328497000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222046530", "BldgCostT": "142373602", "sL_LossRatio": "0.866345591172456", "sL_AssetLoss": "56427.02", "sL_BldgLoss": "48885.3", "sL_StrLoss": "25950.4", "sL_NStrLoss": "22934.9", "sL_ContLoss": "7541.72", "geom_point": "0101000020E6100000778C02AF1CD75EC03F6C7DEC09384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.361428610999951, 48.437118900000065 ], [ -123.361033819999975, 48.435463195000075 ], [ -123.362633312999947, 48.435577895000051 ], [ -123.362583896999951, 48.436415414000102 ], [ -123.36266199899994, 48.436955834000038 ], [ -123.362666708999953, 48.436988290000087 ], [ -123.362910618999976, 48.437889459000068 ], [ -123.363192599999977, 48.438931292000099 ], [ -123.36203741199995, 48.439075599000041 ], [ -123.36062660799999, 48.439252413000091 ], [ -123.359975189999915, 48.439334466000048 ], [ -123.359882184999961, 48.439346178000044 ], [ -123.35918041299999, 48.439434605000081 ], [ -123.35862899299994, 48.437514390000032 ], [ -123.359202750999884, 48.4374383890001 ], [ -123.359355992999966, 48.437418086000044 ], [ -123.360032177999955, 48.437328497000095 ], [ -123.361428610999951, 48.437118900000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "492147578", "BldgCostT": "321696757", "sL_LossRatio": "0.571827162590713", "sL_AssetLoss": "275081.721", "sL_BldgLoss": "157299.2", "sL_StrLoss": "46558.3", "sL_NStrLoss": "110740.9", "sL_ContLoss": "117782.521", "geom_point": "0101000020E6100000B080F7655BD75EC0D90B79C21A384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.362130076999918, 48.433421794000047 ], [ -123.362363794999936, 48.433393306000021 ], [ -123.362618797999986, 48.434047206000074 ], [ -123.364603507999917, 48.434152490000095 ], [ -123.365028913999964, 48.434970212000074 ], [ -123.365452929999933, 48.435715801000086 ], [ -123.36582370099994, 48.436399500000107 ], [ -123.366024225, 48.436754706000023 ], [ -123.366119031999972, 48.436922701000093 ], [ -123.36692559, 48.438351401000034 ], [ -123.366985351000011, 48.438441258000061 ], [ -123.36697959899999, 48.438544814000096 ], [ -123.367264525999957, 48.439109702000074 ], [ -123.367268865999975, 48.439118341000025 ], [ -123.368345200999912, 48.441049930000098 ], [ -123.368373358, 48.441100419000136 ], [ -123.368539091999978, 48.441397832000057 ], [ -123.368543769999974, 48.441406291000128 ], [ -123.366954709999931, 48.4416121060001 ], [ -123.36649909499999, 48.44167109100011 ], [ -123.365614607999973, 48.441775393000043 ], [ -123.3655127899999, 48.441786401000066 ], [ -123.364452902, 48.441938599000025 ], [ -123.364339165999979, 48.441953537000117 ], [ -123.364210882999885, 48.441970408000032 ], [ -123.363970886999965, 48.441554111000059 ], [ -123.363936923999987, 48.441439654000121 ], [ -123.363496243999961, 48.439954539000013 ], [ -123.36343856799999, 48.439760202000066 ], [ -123.363192599999977, 48.438931292000099 ], [ -123.362910618999976, 48.437889459000068 ], [ -123.362666708999953, 48.436988290000087 ], [ -123.36266199899994, 48.436955834000038 ], [ -123.362583896999951, 48.436415414000102 ], [ -123.362633312999947, 48.435577895000051 ], [ -123.362613798000012, 48.434839797000102 ], [ -123.362514206999947, 48.434325986000012 ], [ -123.362445137999927, 48.434163459 ], [ -123.362424494, 48.434114820000062 ], [ -123.362130076999918, 48.433421794000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202450206", "BldgCostT": "132159714", "sL_LossRatio": "0.700863985891654", "sL_AssetLoss": "119758.9", "sL_BldgLoss": "83934.7", "sL_StrLoss": "51806.3", "sL_NStrLoss": "32128.4", "sL_ContLoss": "35824.2", "geom_point": "0101000020E6100000A2F99D0525D75EC0FCC53A8F69384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36203741199995, 48.439075599000041 ], [ -123.363192599999977, 48.438931292000099 ], [ -123.36343856799999, 48.439760202000066 ], [ -123.363496243999961, 48.439954539000013 ], [ -123.363936923999987, 48.441439654000121 ], [ -123.363970886999965, 48.441554111000059 ], [ -123.364210882999885, 48.441970408000032 ], [ -123.364042575999946, 48.441992573000043 ], [ -123.361447910999971, 48.442334505000055 ], [ -123.360053202999964, 48.442511696000089 ], [ -123.359660087999913, 48.441127690000016 ], [ -123.359601919999974, 48.440923014000127 ], [ -123.359410277999984, 48.440248307000019 ], [ -123.35918041299999, 48.439434605000081 ], [ -123.359882184999961, 48.439346178000044 ], [ -123.359975189999915, 48.439334466000048 ], [ -123.36062660799999, 48.439252413000091 ], [ -123.36203741199995, 48.439075599000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "477472667", "BldgCostT": "324901667", "sL_LossRatio": "0.759377019900016", "sL_AssetLoss": "153720.48", "sL_BldgLoss": "116731.8", "sL_StrLoss": "59893.5", "sL_NStrLoss": "56838.3", "sL_ContLoss": "36988.68", "geom_point": "0101000020E61000000282C66DF0D65EC0F844AE066E384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.358718986999989, 48.442667801000027 ], [ -123.358277, 48.441158010000095 ], [ -123.356924488999937, 48.441328892000101 ], [ -123.356518808999965, 48.43977400800005 ], [ -123.357846818000013, 48.439605102000016 ], [ -123.358467495999932, 48.439525748000079 ], [ -123.35918041299999, 48.439434605000081 ], [ -123.359410277999984, 48.440248307000019 ], [ -123.359601919999974, 48.440923014000127 ], [ -123.359660087999913, 48.441127690000016 ], [ -123.360053202999964, 48.442511696000089 ], [ -123.359389250999953, 48.442589374000107 ], [ -123.358718986999989, 48.442667801000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "349571166", "BldgCostT": "220510415", "sL_LossRatio": "0.715017641926624", "sL_AssetLoss": "184463.98", "sL_BldgLoss": "131895", "sL_StrLoss": "84281.9", "sL_NStrLoss": "47613.1", "sL_ContLoss": "52568.98", "geom_point": "0101000020E610000068A98272D7D65EC0DF833A5928384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.357989178999929, 48.43759672700007 ], [ -123.35862899299994, 48.437514390000032 ], [ -123.35918041299999, 48.439434605000081 ], [ -123.358467495999932, 48.439525748000079 ], [ -123.357846818000013, 48.439605102000016 ], [ -123.356518808999965, 48.43977400800005 ], [ -123.355780329999988, 48.439869911000052 ], [ -123.355162, 48.439950208 ], [ -123.354630204999978, 48.438020591000075 ], [ -123.355366682999929, 48.437930795000057 ], [ -123.355954093999969, 48.437853495000091 ], [ -123.356549322999939, 48.43777999600006 ], [ -123.357279195999965, 48.437688099000049 ], [ -123.357989178999929, 48.43759672700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247021643", "BldgCostT": "165821522", "sL_LossRatio": "0.906799956617446", "sL_AssetLoss": "185512.36", "sL_BldgLoss": "168222.6", "sL_StrLoss": "121086", "sL_NStrLoss": "47136.6", "sL_ContLoss": "17289.76", "geom_point": "0101000020E610000081B5A482CED65EC0808DDAB39D384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.354277002999979, 48.441655102000063 ], [ -123.354027403999936, 48.440882301000102 ], [ -123.353813476999974, 48.440122155000083 ], [ -123.354455131999885, 48.440039899000034 ], [ -123.355162, 48.439950208 ], [ -123.355780329999988, 48.439869911000052 ], [ -123.356518808999965, 48.43977400800005 ], [ -123.356924488999937, 48.441328892000101 ], [ -123.358277, 48.441158010000095 ], [ -123.358718986999989, 48.442667801000027 ], [ -123.359119522999961, 48.444075602000119 ], [ -123.358444159999962, 48.444161589000061 ], [ -123.35776960199999, 48.444247485000098 ], [ -123.357440602999958, 48.44428889900005 ], [ -123.356463497999968, 48.444431315000081 ], [ -123.355287306999941, 48.444586784000094 ], [ -123.355097208999936, 48.444606381000028 ], [ -123.355027717999931, 48.444335323000068 ], [ -123.354952054999927, 48.444040144 ], [ -123.35473271099994, 48.443184204000026 ], [ -123.354630318999966, 48.442834443000073 ], [ -123.35451167899997, 48.442429305000083 ], [ -123.354377980999914, 48.441988178000123 ], [ -123.354277002999979, 48.441655102000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156271054", "BldgCostT": "103673747", "sL_LossRatio": "0.882278474406565", "sL_AssetLoss": "134130.1", "sL_BldgLoss": "118340.1", "sL_StrLoss": "89100.9", "sL_NStrLoss": "29239.2", "sL_ContLoss": "15790", "geom_point": "0101000020E6100000393BAD369AD65EC09488001213384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.351899928999956, 48.438182009000037 ], [ -123.35200228799998, 48.437156803000057 ], [ -123.352085642999953, 48.43704167500011 ], [ -123.352121306999919, 48.436404984000049 ], [ -123.352295103999921, 48.434988080000046 ], [ -123.353392990999936, 48.435047997000069 ], [ -123.354279493999968, 48.438065992000091 ], [ -123.354630204999978, 48.438020591000075 ], [ -123.355162, 48.439950208 ], [ -123.354455131999885, 48.440039899000034 ], [ -123.353813476999974, 48.440122155000083 ], [ -123.351811450999932, 48.440371513000073 ], [ -123.351679540999925, 48.440388971000068 ], [ -123.351713044999897, 48.440053340000105 ], [ -123.351880178999977, 48.438379641000033 ], [ -123.351881779999943, 48.438363480000142 ], [ -123.351899928999956, 48.438182009000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120962372", "BldgCostT": "78273705", "sL_LossRatio": "0.866948127053696", "sL_AssetLoss": "160898.9", "sL_BldgLoss": "139491", "sL_StrLoss": "105549", "sL_NStrLoss": "33942", "sL_ContLoss": "21407.9", "geom_point": "0101000020E6100000D57DB6C480D65EC0312ABA3FA8384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.351811450999932, 48.440371513000073 ], [ -123.353813476999974, 48.440122155000083 ], [ -123.354027403999936, 48.440882301000102 ], [ -123.354277002999979, 48.441655102000063 ], [ -123.354377980999914, 48.441988178000123 ], [ -123.35451167899997, 48.442429305000083 ], [ -123.354630318999966, 48.442834443000073 ], [ -123.35473271099994, 48.443184204000026 ], [ -123.352989498999989, 48.443404787000134 ], [ -123.351459290999969, 48.443598389000144 ], [ -123.351653707999958, 48.444150708000052 ], [ -123.351763874999961, 48.444237645000058 ], [ -123.351842510999944, 48.444299692000115 ], [ -123.351638963999989, 48.444437096000051 ], [ -123.351429274999987, 48.444473776000116 ], [ -123.351201506, 48.444513595000075 ], [ -123.351180395999947, 48.444533181000047 ], [ -123.35098079699992, 48.444718199000107 ], [ -123.351009192999982, 48.445054414000047 ], [ -123.349658274999953, 48.44522756700006 ], [ -123.349184595999958, 48.445288303000069 ], [ -123.348869032999971, 48.444156922000055 ], [ -123.348768558999964, 48.443796722000044 ], [ -123.348636219999918, 48.443322105000078 ], [ -123.348989904999968, 48.442791698000043 ], [ -123.349692701999956, 48.44219700200005 ], [ -123.3509131, 48.441180520000032 ], [ -123.351658954999948, 48.440563394000037 ], [ -123.35164879899996, 48.440455835000066 ], [ -123.351679540999925, 48.440388971000068 ], [ -123.351811450999932, 48.440371513000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90032145", "BldgCostT": "58786524", "sL_LossRatio": "0.897138960208466", "sL_AssetLoss": "120050.41", "sL_BldgLoss": "107701.9", "sL_StrLoss": "84637.2", "sL_NStrLoss": "23064.7", "sL_ContLoss": "12348.51", "geom_point": "0101000020E61000002DCDEF2C68D65EC0344BD1E3DA374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34931270499996, 48.438670410000057 ], [ -123.349394134999955, 48.437748159000066 ], [ -123.349523497999911, 48.436283212000028 ], [ -123.348102517999934, 48.436256605000047 ], [ -123.346901209999885, 48.43623551000006 ], [ -123.347650910999974, 48.434659904000043 ], [ -123.349309578999978, 48.434801500000042 ], [ -123.350984085, 48.434903909000113 ], [ -123.352295103999921, 48.434988080000046 ], [ -123.352121306999919, 48.436404984000049 ], [ -123.352085642999953, 48.43704167500011 ], [ -123.35200228799998, 48.437156803000057 ], [ -123.351899928999956, 48.438182009000037 ], [ -123.351881779999943, 48.438363480000142 ], [ -123.351530617, 48.438348899000076 ], [ -123.350614117999982, 48.438495598000031 ], [ -123.34931270499996, 48.438670410000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "946308572", "BldgCostT": "560227662", "sL_LossRatio": "0.581168908656628", "sL_AssetLoss": "701828.15", "sL_BldgLoss": "407880.7", "sL_StrLoss": "188226.3", "sL_NStrLoss": "219654.4", "sL_ContLoss": "293947.45", "geom_point": "0101000020E61000005DEC9CEA79D75EC0B75F162447374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36968770499999, 48.433834599000079 ], [ -123.369104704000037, 48.433602408000077 ], [ -123.36861870499996, 48.43375758300008 ], [ -123.368609395999925, 48.434143528000092 ], [ -123.368498830999954, 48.434210499000073 ], [ -123.368124578999982, 48.434386021000087 ], [ -123.367267602999931, 48.434293585000013 ], [ -123.366690103999971, 48.434243202000111 ], [ -123.364603507999917, 48.434152490000095 ], [ -123.362618797999986, 48.434047206000074 ], [ -123.362363794999936, 48.433393306000021 ], [ -123.362130076999918, 48.433421794000047 ], [ -123.362424494, 48.434114820000062 ], [ -123.361180383999965, 48.434069098000123 ], [ -123.359726719999969, 48.43400219300004 ], [ -123.359403449999931, 48.433985555000035 ], [ -123.358198017999911, 48.433923509000117 ], [ -123.358311893999897, 48.433093898000074 ], [ -123.358424489999933, 48.432285113000042 ], [ -123.361405694, 48.432425300000062 ], [ -123.361748477999939, 48.432427311000062 ], [ -123.361586110999937, 48.431974295000039 ], [ -123.361795305999948, 48.431972306000084 ], [ -123.364563499999946, 48.431939386000032 ], [ -123.367172277999899, 48.431885194000131 ], [ -123.367137703999944, 48.431051998000093 ], [ -123.367107091999983, 48.430195413000071 ], [ -123.367074309999936, 48.429380286000047 ], [ -123.367038206999922, 48.428525304000026 ], [ -123.36705309300001, 48.428256989000054 ], [ -123.367259889999943, 48.427500090000095 ], [ -123.369408877999916, 48.4277447670001 ], [ -123.369559415, 48.42776188800012 ], [ -123.370045897999958, 48.4278695940001 ], [ -123.370388697999942, 48.427965757000059 ], [ -123.371068885999975, 48.428156587000053 ], [ -123.371198072999974, 48.428141303000089 ], [ -123.371188807999886, 48.428261609000032 ], [ -123.371010594999987, 48.428452519000118 ], [ -123.370986698999928, 48.428478097000095 ], [ -123.370921696000011, 48.428801414000105 ], [ -123.370990877999958, 48.428990793000047 ], [ -123.37122089499999, 48.429089101000073 ], [ -123.371348600999951, 48.429987786000083 ], [ -123.37094461699995, 48.430222802000081 ], [ -123.370961592999933, 48.430574515000089 ], [ -123.371408883, 48.430733994000079 ], [ -123.371390500999937, 48.431823587000132 ], [ -123.371121887999919, 48.43204000100009 ], [ -123.371572287999982, 48.432641098000062 ], [ -123.371847488999919, 48.433522590000052 ], [ -123.371824922999949, 48.434125102000046 ], [ -123.371479008999984, 48.434674795000134 ], [ -123.371288012999941, 48.434674806000061 ], [ -123.370746507999954, 48.434434109000058 ], [ -123.36968770499999, 48.433834599000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "651412416", "BldgCostT": "428274431", "sL_LossRatio": "0.77493932989816", "sL_AssetLoss": "327459.48", "sL_BldgLoss": "253761.23", "sL_StrLoss": "167133.13", "sL_NStrLoss": "86628.1", "sL_ContLoss": "73698.25", "geom_point": "0101000020E6100000BDB0FA6528D75EC03E0D07F824374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.355741687999952, 48.430621894000105 ], [ -123.355870304999925, 48.429721491000066 ], [ -123.357900370999928, 48.429839001000097 ], [ -123.358220385999971, 48.429857501000086 ], [ -123.358747318, 48.429888001000059 ], [ -123.358972243999986, 48.429902881 ], [ -123.359107002999949, 48.429911792000048 ], [ -123.35924055199996, 48.429920614000046 ], [ -123.35937536199998, 48.429929536000067 ], [ -123.361702407999971, 48.430083390000043 ], [ -123.361783705999969, 48.429410069 ], [ -123.3617952, 48.429314714000107 ], [ -123.361966691999925, 48.429336087000095 ], [ -123.36249454699994, 48.42942138800003 ], [ -123.362666095999927, 48.429449090000062 ], [ -123.364461712999969, 48.429408108000096 ], [ -123.367074309999936, 48.429380286000047 ], [ -123.367107091999983, 48.430195413000071 ], [ -123.367137703999944, 48.431051998000093 ], [ -123.367172277999899, 48.431885194000131 ], [ -123.364563499999946, 48.431939386000032 ], [ -123.361795305999948, 48.431972306000084 ], [ -123.361586110999937, 48.431974295000039 ], [ -123.361748477999939, 48.432427311000062 ], [ -123.361405694, 48.432425300000062 ], [ -123.358424489999933, 48.432285113000042 ], [ -123.358523688999952, 48.4315480960001 ], [ -123.357916349999982, 48.431514025000091 ], [ -123.355624790999968, 48.431385498000083 ], [ -123.355741687999952, 48.430621894000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417178075", "BldgCostT": "234503923", "sL_LossRatio": "0.634500778065004", "sL_AssetLoss": "532796.1", "sL_BldgLoss": "338059.54", "sL_StrLoss": "209779.94", "sL_NStrLoss": "128279.6", "sL_ContLoss": "194736.56", "geom_point": "0101000020E6100000FE10D19E41D75EC0BCF3DB7CC8364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.35899730199999, 48.427831526000077 ], [ -123.359018176999953, 48.427646506000052 ], [ -123.358988499999938, 48.42750331000007 ], [ -123.360456810999906, 48.42761930500015 ], [ -123.361624908999929, 48.427723198000052 ], [ -123.361838001999928, 48.426853804000068 ], [ -123.362066805999973, 48.425968506000082 ], [ -123.364871987999962, 48.426281800000048 ], [ -123.366267215999954, 48.42642749100002 ], [ -123.36603460799995, 48.427356883000115 ], [ -123.367259889999943, 48.427500090000095 ], [ -123.36705309300001, 48.428256989000054 ], [ -123.367038206999922, 48.428525304000026 ], [ -123.367074309999936, 48.429380286000047 ], [ -123.364461712999969, 48.429408108000096 ], [ -123.362666095999927, 48.429449090000062 ], [ -123.36249454699994, 48.42942138800003 ], [ -123.361966691999925, 48.429336087000095 ], [ -123.3617952, 48.429314714000107 ], [ -123.359283195999978, 48.429136588000055 ], [ -123.358854294999915, 48.429011402000064 ], [ -123.358915802999974, 48.428514195000027 ], [ -123.358958186, 48.428118491000099 ], [ -123.358978292999964, 48.427999911000079 ], [ -123.35899730199999, 48.427831526000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "456752781", "BldgCostT": "311773603", "sL_LossRatio": "0.774040178184061", "sL_AssetLoss": "111213.09", "sL_BldgLoss": "86083.4", "sL_StrLoss": "43820.9", "sL_NStrLoss": "42262.5", "sL_ContLoss": "25129.69", "geom_point": "0101000020E610000055C433B2F5D65EC08DE33402F9364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.355870304999925, 48.429721491000066 ], [ -123.35598569699999, 48.428839708000083 ], [ -123.358385383000012, 48.428983336000023 ], [ -123.358854294999915, 48.429011402000064 ], [ -123.359283195999978, 48.429136588000055 ], [ -123.3617952, 48.429314714000107 ], [ -123.361783705999969, 48.429410069 ], [ -123.361702407999971, 48.430083390000043 ], [ -123.35937536199998, 48.429929536000067 ], [ -123.35924055199996, 48.429920614000046 ], [ -123.359107002999949, 48.429911792000048 ], [ -123.358972243999986, 48.429902881 ], [ -123.358747318, 48.429888001000059 ], [ -123.358220385999971, 48.429857501000086 ], [ -123.357900370999928, 48.429839001000097 ], [ -123.355870304999925, 48.429721491000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "508954706", "BldgCostT": "329066054", "sL_LossRatio": "0.710977360554596", "sL_AssetLoss": "230159.79", "sL_BldgLoss": "163638.4", "sL_StrLoss": "93818.9", "sL_NStrLoss": "69819.5", "sL_ContLoss": "66521.39", "geom_point": "0101000020E6100000F157F091C3D65EC0BA7A45BFCF364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.353034987999976, 48.429075299000075 ], [ -123.353090811999905, 48.428633011000088 ], [ -123.353112310999975, 48.428490981000053 ], [ -123.353155099, 48.428135912000059 ], [ -123.353186904999973, 48.427881394000067 ], [ -123.353200484999974, 48.427758204000042 ], [ -123.353273697999953, 48.427148590000108 ], [ -123.353288103999944, 48.426795503000108 ], [ -123.356114693, 48.427088891000082 ], [ -123.358120481999919, 48.427319667000084 ], [ -123.35863122399995, 48.427378436000019 ], [ -123.358660424, 48.427381781000086 ], [ -123.358977011999968, 48.427418198000076 ], [ -123.358988499999938, 48.42750331000007 ], [ -123.359018176999953, 48.427646506000052 ], [ -123.35899730199999, 48.427831526000077 ], [ -123.358978292999964, 48.427999911000079 ], [ -123.358958186, 48.428118491000099 ], [ -123.358915802999974, 48.428514195000027 ], [ -123.358854294999915, 48.429011402000064 ], [ -123.358385383000012, 48.428983336000023 ], [ -123.35598569699999, 48.428839708000083 ], [ -123.355870304999925, 48.429721491000066 ], [ -123.352968198999946, 48.429545301000132 ], [ -123.353034987999976, 48.429075299000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123896071", "BldgCostT": "66266650", "sL_LossRatio": "0.537197857034796", "sL_AssetLoss": "141910.097", "sL_BldgLoss": "76233.8", "sL_StrLoss": "39774.4", "sL_NStrLoss": "36459.4", "sL_ContLoss": "65676.297", "geom_point": "0101000020E6100000A1DBE8EFE7D65EC0A86332A878364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.356740482999925, 48.424509896000082 ], [ -123.356896282999983, 48.423726491000124 ], [ -123.359168879, 48.423958261000053 ], [ -123.35971760399994, 48.424014197000083 ], [ -123.359509106999937, 48.424824314000077 ], [ -123.359276904999916, 48.425671590000064 ], [ -123.359065219999962, 48.426563702000102 ], [ -123.35892871199998, 48.427196098000138 ], [ -123.358977011999968, 48.427418198000076 ], [ -123.358660424, 48.427381781000086 ], [ -123.35863122399995, 48.427378436000019 ], [ -123.358120481999919, 48.427319667000084 ], [ -123.356114693, 48.427088891000082 ], [ -123.356311590999908, 48.426269509000043 ], [ -123.356541519999922, 48.425366206000049 ], [ -123.356740482999925, 48.424509896000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269521608", "BldgCostT": "165346036", "sL_LossRatio": "0.569328262653819", "sL_AssetLoss": "151409.03", "sL_BldgLoss": "86201.44", "sL_StrLoss": "45218.54", "sL_NStrLoss": "40982.9", "sL_ContLoss": "65207.59", "geom_point": "0101000020E6100000AACAB6BAB9D65EC021E73F9C6E364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.353861190999979, 48.424197218000046 ], [ -123.354053988999951, 48.423403893000057 ], [ -123.356896282999983, 48.423726491000124 ], [ -123.356740482999925, 48.424509896000082 ], [ -123.356541519999922, 48.425366206000049 ], [ -123.356311590999908, 48.426269509000043 ], [ -123.356114693, 48.427088891000082 ], [ -123.353288103999944, 48.426795503000108 ], [ -123.353452699999977, 48.425951889000125 ], [ -123.353650483999957, 48.425070305000048 ], [ -123.353861190999979, 48.424197218000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "358329895", "BldgCostT": "236906524", "sL_LossRatio": "0.802509424884735", "sL_AssetLoss": "136850.48", "sL_BldgLoss": "109823.8", "sL_StrLoss": "65395.3", "sL_NStrLoss": "44428.5", "sL_ContLoss": "27026.68", "geom_point": "0101000020E6100000A89910CE82D65EC0EB043DCC45364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34962330899999, 48.423739512000083 ], [ -123.349781811999918, 48.422958808 ], [ -123.35062070099994, 48.42303568700008 ], [ -123.352011570999963, 48.423184872000043 ], [ -123.354053988999951, 48.423403893000057 ], [ -123.353861190999979, 48.424197218000046 ], [ -123.353650483999957, 48.425070305000048 ], [ -123.349965895999915, 48.424656187000053 ], [ -123.349409189999989, 48.424622408000118 ], [ -123.34962330899999, 48.423739512000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "276361328", "BldgCostT": "183286094", "sL_LossRatio": "0.764790751592417", "sL_AssetLoss": "131198.37", "sL_BldgLoss": "100339.3", "sL_StrLoss": "53914.4", "sL_NStrLoss": "46424.9", "sL_ContLoss": "30859.07", "geom_point": "0101000020E6100000BF3BAE1D77D65EC03F9E33F57C364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.347469001999983, 48.424575598000047 ], [ -123.349409189999989, 48.424622408000118 ], [ -123.349965895999915, 48.424656187000053 ], [ -123.353650483999957, 48.425070305000048 ], [ -123.353452699999977, 48.425951889000125 ], [ -123.353288103999944, 48.426795503000108 ], [ -123.353273697999953, 48.427148590000108 ], [ -123.351720096999941, 48.427062909000135 ], [ -123.350404209999965, 48.427020890000072 ], [ -123.350522105999943, 48.426481006000088 ], [ -123.350545699999913, 48.426373392000137 ], [ -123.350719994999977, 48.425669797000069 ], [ -123.347337605999925, 48.425474203000093 ], [ -123.347469001999983, 48.424575598000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "460901669", "BldgCostT": "318041669", "sL_LossRatio": "0.944894393382398", "sL_AssetLoss": "123176.94", "sL_BldgLoss": "116389.2", "sL_StrLoss": "68194.3", "sL_NStrLoss": "48194.9", "sL_ContLoss": "6787.74", "geom_point": "0101000020E61000004B285D5D82D65EC0F3787B8CC9364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350273911999949, 48.427588505000095 ], [ -123.350404209999965, 48.427020890000072 ], [ -123.351720096999941, 48.427062909000135 ], [ -123.353273697999953, 48.427148590000108 ], [ -123.353200484999974, 48.427758204000042 ], [ -123.353186904999973, 48.427881394000067 ], [ -123.353155099, 48.428135912000059 ], [ -123.353112310999975, 48.428490981000053 ], [ -123.353090811999905, 48.428633011000088 ], [ -123.353034987999976, 48.429075299000075 ], [ -123.352124494999913, 48.428998395000107 ], [ -123.350114990999984, 48.428883214000045 ], [ -123.350145582999943, 48.428673801000045 ], [ -123.350184299999938, 48.428343801000018 ], [ -123.350232184999982, 48.427995098000046 ], [ -123.350273911999949, 48.427588505000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250141417", "BldgCostT": "170706667", "sL_LossRatio": "0.870792114889093", "sL_AssetLoss": "110994", "sL_BldgLoss": "96652.7", "sL_StrLoss": "65327.5", "sL_NStrLoss": "31325.2", "sL_ContLoss": "14341.3", "geom_point": "0101000020E61000009F1ABB8651D65EC08D1902FCAA364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.347157896999974, 48.426921587000102 ], [ -123.347249493999982, 48.426179907000112 ], [ -123.350545699999913, 48.426373392000137 ], [ -123.350522105999943, 48.426481006000088 ], [ -123.350404209999965, 48.427020890000072 ], [ -123.350273911999949, 48.427588505000095 ], [ -123.350232184999982, 48.427995098000046 ], [ -123.348614971999979, 48.427911059000053 ], [ -123.348346118999956, 48.427897081 ], [ -123.346952099999939, 48.427824605000083 ], [ -123.347034005999916, 48.426918490000148 ], [ -123.347157896999974, 48.426921587000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250956478", "BldgCostT": "171914857", "sL_LossRatio": "0.861755949763417", "sL_AssetLoss": "90961.6", "sL_BldgLoss": "78386.7", "sL_StrLoss": "46270", "sL_NStrLoss": "32116.7", "sL_ContLoss": "12574.9", "geom_point": "0101000020E6100000A10EC8B137D65EC0EA34DAC3C1364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.345347997999923, 48.426835703000044 ], [ -123.345398107999969, 48.426110890000103 ], [ -123.347249493999982, 48.426179907000112 ], [ -123.347157896999974, 48.426921587000102 ], [ -123.347034005999916, 48.426918490000148 ], [ -123.346952099999939, 48.427824605000083 ], [ -123.348346118999956, 48.427897081 ], [ -123.348614971999979, 48.427911059000053 ], [ -123.350232184999982, 48.427995098000046 ], [ -123.350184299999938, 48.428343801000018 ], [ -123.350145582999943, 48.428673801000045 ], [ -123.350114990999984, 48.428883214000045 ], [ -123.349445320999948, 48.428890813000066 ], [ -123.348960079999983, 48.428862422000101 ], [ -123.346829400999979, 48.428737802000079 ], [ -123.34529269899997, 48.428660495000067 ], [ -123.345307800999976, 48.42774369000005 ], [ -123.345347997999923, 48.426835703000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407327834", "BldgCostT": "277393334", "sL_LossRatio": "0.812209538271944", "sL_AssetLoss": "118942.09", "sL_BldgLoss": "96605.9", "sL_StrLoss": "54825.4", "sL_NStrLoss": "41780.5", "sL_ContLoss": "22336.19", "geom_point": "0101000020E6100000CA6BDBE63CD65EC06CBE00B15B364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.348365810999923, 48.423067702000012 ], [ -123.349781811999918, 48.422958808 ], [ -123.34962330899999, 48.423739512000083 ], [ -123.349409189999989, 48.424622408000118 ], [ -123.347469001999983, 48.424575598000047 ], [ -123.347337605999925, 48.425474203000093 ], [ -123.350719994999977, 48.425669797000069 ], [ -123.350545699999913, 48.426373392000137 ], [ -123.347249493999982, 48.426179907000112 ], [ -123.345398107999969, 48.426110890000103 ], [ -123.345455503999986, 48.425447694000034 ], [ -123.345550097999933, 48.424507706000071 ], [ -123.34383160699997, 48.424212086000125 ], [ -123.344877806999989, 48.42384150500002 ], [ -123.345615912999975, 48.423575900000074 ], [ -123.346177088999923, 48.42340958900013 ], [ -123.346906308999905, 48.423229487000057 ], [ -123.348365810999923, 48.423067702000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "410987583", "BldgCostT": "276737348", "sL_LossRatio": "0.6352140089016", "sL_AssetLoss": "165096.17", "sL_BldgLoss": "104871.4", "sL_StrLoss": "50479.8", "sL_NStrLoss": "54391.6", "sL_ContLoss": "60224.77", "geom_point": "0101000020E6100000294C74D004D65EC05458565878364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.343053294999933, 48.424449494000051 ], [ -123.34383160699997, 48.424212086000125 ], [ -123.345550097999933, 48.424507706000071 ], [ -123.345455503999986, 48.425447694000034 ], [ -123.345398107999969, 48.426110890000103 ], [ -123.345347997999923, 48.426835703000044 ], [ -123.343687186, 48.426783195000027 ], [ -123.342985120999955, 48.42675022100007 ], [ -123.342614640999955, 48.426732822000119 ], [ -123.342859235999924, 48.426270003000134 ], [ -123.342984590999933, 48.426104496000086 ], [ -123.342693613999927, 48.426045494000022 ], [ -123.342680388999952, 48.426042786000089 ], [ -123.342529625999987, 48.425892905000119 ], [ -123.342549816999934, 48.425005093000074 ], [ -123.342492914999923, 48.424624900000055 ], [ -123.343053294999933, 48.424449494000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316883030", "BldgCostT": "204283602", "sL_LossRatio": "0.744082430109248", "sL_AssetLoss": "208515.07", "sL_BldgLoss": "155152.4", "sL_StrLoss": "93429.9", "sL_NStrLoss": "61722.5", "sL_ContLoss": "53362.67", "geom_point": "0101000020E610000088FE6531D0D55EC0680FE63C84364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.340187620999984, 48.426561717000062 ], [ -123.339950008999921, 48.426537810000056 ], [ -123.339882247999967, 48.426538287000028 ], [ -123.339247259999951, 48.426543042000091 ], [ -123.338147895999953, 48.426551191000044 ], [ -123.338043381, 48.426082306000097 ], [ -123.339363795999958, 48.425564406000071 ], [ -123.339957292999912, 48.425399009000031 ], [ -123.341062044999944, 48.425096833000069 ], [ -123.341186498999946, 48.425062798000084 ], [ -123.34125527899999, 48.425039233000042 ], [ -123.34208899599993, 48.424753603000163 ], [ -123.342492914999923, 48.424624900000055 ], [ -123.342549816999934, 48.425005093000074 ], [ -123.342529625999987, 48.425892905000119 ], [ -123.342680388999952, 48.426042786000089 ], [ -123.342693613999927, 48.426045494000022 ], [ -123.342984590999933, 48.426104496000086 ], [ -123.342859235999924, 48.426270003000134 ], [ -123.342614640999955, 48.426732822000119 ], [ -123.341995696999945, 48.426701944000087 ], [ -123.341548060999912, 48.426681636000083 ], [ -123.34123931799995, 48.426667608000052 ], [ -123.34093954, 48.426637424000049 ], [ -123.340187620999984, 48.426561717000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241054947", "BldgCostT": "163325269", "sL_LossRatio": "0.900576100084284", "sL_AssetLoss": "183605.25", "sL_BldgLoss": "165350.5", "sL_StrLoss": "121646.8", "sL_NStrLoss": "43703.7", "sL_ContLoss": "18254.75", "geom_point": "0101000020E6100000B56D7274ECD55EC0846E30B3D3364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342922026999972, 48.426905602000033 ], [ -123.343687186, 48.426783195000027 ], [ -123.345347997999923, 48.426835703000044 ], [ -123.345307800999976, 48.42774369000005 ], [ -123.34529269899997, 48.428660495000067 ], [ -123.345175393999952, 48.429548494000088 ], [ -123.342230817999962, 48.429480996000102 ], [ -123.340402728999948, 48.429451793000069 ], [ -123.338972321999961, 48.429428899000122 ], [ -123.339078895999961, 48.428829089000082 ], [ -123.338839391999954, 48.428554406000032 ], [ -123.338675173999974, 48.428402387000041 ], [ -123.340348396999929, 48.427822934000041 ], [ -123.341088447999965, 48.427566601000109 ], [ -123.341333885999958, 48.427481602000114 ], [ -123.341410907999929, 48.427455513000019 ], [ -123.341491714999918, 48.427428153000037 ], [ -123.34196111599995, 48.427269187 ], [ -123.34231180899998, 48.427127387000048 ], [ -123.342839195999971, 48.426935702 ], [ -123.342922026999972, 48.426905602000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182169720", "BldgCostT": "119660413", "sL_LossRatio": "0.862858810810299", "sL_AssetLoss": "168898.2", "sL_BldgLoss": "145735.3", "sL_StrLoss": "108573.1", "sL_NStrLoss": "37162.2", "sL_ContLoss": "23162.9", "geom_point": "0101000020E6100000D6719926AED55EC0146756001D374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.339724610999966, 48.432703408000123 ], [ -123.3383841939999, 48.432662486000083 ], [ -123.337016315999989, 48.432629891 ], [ -123.337105908999945, 48.431182914000054 ], [ -123.336359552999923, 48.431166554000043 ], [ -123.335717704000032, 48.431152488000109 ], [ -123.335760614999955, 48.430247206000097 ], [ -123.33580398399999, 48.429427694000061 ], [ -123.33607911, 48.429335405000089 ], [ -123.337392131999977, 48.428863541000062 ], [ -123.338675173999974, 48.428402387000041 ], [ -123.338839391999954, 48.428554406000032 ], [ -123.339078895999961, 48.428829089000082 ], [ -123.338972321999961, 48.429428899000122 ], [ -123.340402728999948, 48.429451793000069 ], [ -123.342230817999962, 48.429480996000102 ], [ -123.342181695999955, 48.430402308000033 ], [ -123.342110620999946, 48.431308698000088 ], [ -123.340498043, 48.431261793000012 ], [ -123.339831103, 48.431242403000041 ], [ -123.339791484999978, 48.431785669000064 ], [ -123.339724610999966, 48.432703408000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "368351500", "BldgCostT": "254470000", "sL_LossRatio": "0.755498714586201", "sL_AssetLoss": "154036", "sL_BldgLoss": "116374", "sL_StrLoss": "52355", "sL_NStrLoss": "64019", "sL_ContLoss": "37662", "geom_point": "0101000020E6100000B4B12B904DD55EC02E6595A9B4364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.332350801999937, 48.426463906000031 ], [ -123.332947812999961, 48.426477084000027 ], [ -123.33425478499997, 48.426510006000143 ], [ -123.334237397999985, 48.427943497000037 ], [ -123.33347631499997, 48.428232798000096 ], [ -123.33295117899992, 48.428402603000059 ], [ -123.332232914999949, 48.428388086000012 ], [ -123.331582795999978, 48.428381609000013 ], [ -123.331597615999954, 48.426446700000028 ], [ -123.332350801999937, 48.426463906000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218208471", "BldgCostT": "140815414", "sL_LossRatio": "0.687837432896977", "sL_AssetLoss": "134921.27", "sL_BldgLoss": "92803.9", "sL_StrLoss": "48581", "sL_NStrLoss": "44222.9", "sL_ContLoss": "42117.37", "geom_point": "0101000020E610000002CE21C222D55EC061EB845DB5364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.331303689999984, 48.426442003000069 ], [ -123.331597615999954, 48.426446700000028 ], [ -123.331582795999978, 48.428381609000013 ], [ -123.330225079999948, 48.428387090000072 ], [ -123.328918175999917, 48.428374895000019 ], [ -123.328881294999945, 48.426448511000089 ], [ -123.329232112999946, 48.426448407000052 ], [ -123.330228396, 48.426439206000083 ], [ -123.331303689999984, 48.426442003000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242393363", "BldgCostT": "156463275", "sL_LossRatio": "0.782543759643313", "sL_AssetLoss": "156876.85", "sL_BldgLoss": "122763", "sL_StrLoss": "86490.4", "sL_NStrLoss": "36272.6", "sL_ContLoss": "34113.85", "geom_point": "0101000020E6100000A779008B3CD55EC0228CFBC9F7364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.330065307999973, 48.429783599000054 ], [ -123.330163, 48.429558791000041 ], [ -123.32891798199995, 48.430099203000019 ], [ -123.328918175999917, 48.428374895000019 ], [ -123.330225079999948, 48.428387090000072 ], [ -123.331582795999978, 48.428381609000013 ], [ -123.332232914999949, 48.428388086000012 ], [ -123.33295117899992, 48.428402603000059 ], [ -123.33347631499997, 48.428232798000096 ], [ -123.335138886999985, 48.429666111000103 ], [ -123.333622681999969, 48.430254799000117 ], [ -123.333194840999951, 48.430426574000094 ], [ -123.332555391999918, 48.430683313000046 ], [ -123.33251000199995, 48.431010381000128 ], [ -123.332460193999964, 48.431055206000117 ], [ -123.332376312999926, 48.431059393000027 ], [ -123.331855598999965, 48.430936191000121 ], [ -123.331391589999981, 48.430910104000141 ], [ -123.330065307999973, 48.429783599000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "336215917", "BldgCostT": "222666667", "sL_LossRatio": "0.807503042390865", "sL_AssetLoss": "221018.61", "sL_BldgLoss": "178473.2", "sL_StrLoss": "112143", "sL_NStrLoss": "66330.2", "sL_ContLoss": "42545.41", "geom_point": "0101000020E61000002ABEB21CF2D45EC03482F886E3364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.328163515999933, 48.426448396000033 ], [ -123.328881294999945, 48.426448511000089 ], [ -123.328918175999917, 48.428374895000019 ], [ -123.32891798199995, 48.430099203000019 ], [ -123.328375815999948, 48.43033351 ], [ -123.327756218999966, 48.430766992000081 ], [ -123.327264675999956, 48.431059404000074 ], [ -123.326762288999987, 48.431233397000035 ], [ -123.325674576999972, 48.431497195000141 ], [ -123.325619503999945, 48.431326295000062 ], [ -123.325619903999936, 48.430197190000065 ], [ -123.325606519999894, 48.428406704000096 ], [ -123.326175474999971, 48.428413898000109 ], [ -123.326183912999937, 48.42801066700018 ], [ -123.326216480999946, 48.426447108000026 ], [ -123.326533837999946, 48.426447254000017 ], [ -123.327053119999945, 48.426447504000052 ], [ -123.327148664999967, 48.426447462000056 ], [ -123.327582014999948, 48.426447302000064 ], [ -123.328163515999933, 48.426448396000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137820268", "BldgCostT": "85319244", "sL_LossRatio": "0.779608872192418", "sL_AssetLoss": "234854.69", "sL_BldgLoss": "183094.8", "sL_StrLoss": "131823.4", "sL_NStrLoss": "51271.4", "sL_ContLoss": "51759.89", "geom_point": "0101000020E6100000E875736DBFD45EC0FFEB1ED1EB364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.325852205000032, 48.426446905000034 ], [ -123.326216480999946, 48.426447108000026 ], [ -123.326183912999937, 48.42801066700018 ], [ -123.326175474999971, 48.428413898000109 ], [ -123.325606519999894, 48.428406704000096 ], [ -123.325619903999936, 48.430197190000065 ], [ -123.325619503999945, 48.431326295000062 ], [ -123.325674576999972, 48.431497195000141 ], [ -123.325543144999955, 48.431524150000023 ], [ -123.323943406999888, 48.431852086000056 ], [ -123.322417898999973, 48.432172515000026 ], [ -123.322510009999988, 48.430474779000122 ], [ -123.322540780999987, 48.430169009000032 ], [ -123.32254960599991, 48.429775989000085 ], [ -123.322601501999912, 48.429001690000092 ], [ -123.322640010999976, 48.428416506000104 ], [ -123.322649384999963, 48.42815520100001 ], [ -123.322648412999968, 48.427266891000095 ], [ -123.322724658999988, 48.426444509000056 ], [ -123.323133881000018, 48.426443271000061 ], [ -123.323457494999943, 48.426442290000082 ], [ -123.323808021999952, 48.426446707000089 ], [ -123.324662191999934, 48.426445698000087 ], [ -123.324945603999979, 48.426445598000036 ], [ -123.325852205000032, 48.426446905000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83717261", "BldgCostT": "51800403", "sL_LossRatio": "0.854781236504613", "sL_AssetLoss": "126246.84", "sL_BldgLoss": "107913.43", "sL_StrLoss": "87068.93", "sL_NStrLoss": "20844.5", "sL_ContLoss": "18333.41", "geom_point": "0101000020E610000077DAE06582D45EC001773D24BE364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.319183799999948, 48.42892519400003 ], [ -123.31922218699999, 48.428510396000085 ], [ -123.31860689199999, 48.428509217000034 ], [ -123.318026127999971, 48.428565514000105 ], [ -123.31808801199999, 48.42702340400006 ], [ -123.318105276999972, 48.426527798000066 ], [ -123.319336113999938, 48.426500284000021 ], [ -123.319687898, 48.426497681000072 ], [ -123.319957503999902, 48.42649567700014 ], [ -123.320349484999952, 48.426492774000025 ], [ -123.320712984999957, 48.426490101000113 ], [ -123.322724658999988, 48.426444509000056 ], [ -123.322648412999968, 48.427266891000095 ], [ -123.322649384999963, 48.42815520100001 ], [ -123.322640010999976, 48.428416506000104 ], [ -123.322601501999912, 48.429001690000092 ], [ -123.319183799999948, 48.42892519400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "580940205", "BldgCostT": "400037038", "sL_LossRatio": "0.934205115552266", "sL_AssetLoss": "206703", "sL_BldgLoss": "193103", "sL_StrLoss": "119079", "sL_NStrLoss": "74024", "sL_ContLoss": "13600", "geom_point": "0101000020E6100000B638190B79D45EC0F15534CE8D374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.319480483999882, 48.435783893000121 ], [ -123.319556383999952, 48.434277997000088 ], [ -123.31888661699999, 48.43431060400016 ], [ -123.318733791999961, 48.434362697000019 ], [ -123.31681229699997, 48.435286202000022 ], [ -123.316596989999951, 48.435347511000074 ], [ -123.31652690199995, 48.435035502000062 ], [ -123.31637799399999, 48.434377802000057 ], [ -123.316356693000017, 48.434278088000063 ], [ -123.316199895999901, 48.433593195000071 ], [ -123.316578485999969, 48.433604602000038 ], [ -123.316963188999949, 48.433531389000095 ], [ -123.318002993999983, 48.432995904000066 ], [ -123.318520288999963, 48.43277270600008 ], [ -123.318917885999923, 48.432662905 ], [ -123.31962671, 48.432538303000044 ], [ -123.319903401999937, 48.432489413000013 ], [ -123.320131375999935, 48.432468281000148 ], [ -123.32092090899999, 48.432395213000063 ], [ -123.321440089999939, 48.432352391000052 ], [ -123.322417898999973, 48.432172515000026 ], [ -123.3223824949999, 48.432951300000127 ], [ -123.322362819999967, 48.433383986000131 ], [ -123.322355314000021, 48.433541951000066 ], [ -123.322246384999943, 48.435844901000038 ], [ -123.321544770999978, 48.435828043000093 ], [ -123.320839328999909, 48.435811100000087 ], [ -123.32016583099994, 48.435797601000047 ], [ -123.31989523599999, 48.435792193000083 ], [ -123.319480483999882, 48.435783893000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "256729334", "BldgCostT": "174283334", "sL_LossRatio": "0.88656694169587", "sL_AssetLoss": "279746.05", "sL_BldgLoss": "248013.6", "sL_StrLoss": "175304", "sL_NStrLoss": "72709.6", "sL_ContLoss": "31732.45", "geom_point": "0101000020E61000006AAB50AC6CD45EC0327846F8EA374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.316783068999911, 48.436169398000104 ], [ -123.316596989999951, 48.435347511000074 ], [ -123.31681229699997, 48.435286202000022 ], [ -123.318733791999961, 48.434362697000019 ], [ -123.31888661699999, 48.43431060400016 ], [ -123.319556383999952, 48.434277997000088 ], [ -123.319480483999882, 48.435783893000121 ], [ -123.31989523599999, 48.435792193000083 ], [ -123.32016583099994, 48.435797601000047 ], [ -123.320839328999909, 48.435811100000087 ], [ -123.321544770999978, 48.435828043000093 ], [ -123.322246384999943, 48.435844901000038 ], [ -123.322209792999956, 48.436753009000036 ], [ -123.32216578799995, 48.437696109000079 ], [ -123.322117899999938, 48.43854259300015 ], [ -123.321957095999892, 48.438570114000051 ], [ -123.318778302999959, 48.4384807120001 ], [ -123.315650416999944, 48.438398696 ], [ -123.316007605999971, 48.437813502000097 ], [ -123.316131564999921, 48.437608963000073 ], [ -123.316637402999959, 48.436774308000132 ], [ -123.31684302499994, 48.436434105000068 ], [ -123.316783068999911, 48.436169398000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180852251", "BldgCostT": "119470001", "sL_LossRatio": "0.835426205948215", "sL_AssetLoss": "418882", "sL_BldgLoss": "349945", "sL_StrLoss": "197009", "sL_NStrLoss": "152936", "sL_ContLoss": "68937", "geom_point": "0101000020E61000006A5D7A660FD45EC0B3D428C1EE374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.315338302999976, 48.43505400100009 ], [ -123.31652690199995, 48.435035502000062 ], [ -123.316596989999951, 48.435347511000074 ], [ -123.316783068999911, 48.436169398000104 ], [ -123.31684302499994, 48.436434105000068 ], [ -123.316637402999959, 48.436774308000132 ], [ -123.316131564999921, 48.437608963000073 ], [ -123.316007605999971, 48.437813502000097 ], [ -123.315729380999983, 48.437839795000123 ], [ -123.315687944999979, 48.437852998000018 ], [ -123.314803001999934, 48.438134610000084 ], [ -123.31428331799998, 48.438184599000039 ], [ -123.3127726929999, 48.438166101000029 ], [ -123.312243227999929, 48.438166404000079 ], [ -123.312135073999968, 48.438166460000076 ], [ -123.311080440999973, 48.438167057000086 ], [ -123.309944715999904, 48.438167660000047 ], [ -123.309887103999984, 48.43816770200003 ], [ -123.309452388999944, 48.438122417000081 ], [ -123.30865680099997, 48.437847802000064 ], [ -123.308314077999938, 48.437728198000116 ], [ -123.308684796999955, 48.437262398000072 ], [ -123.310353661999969, 48.43692887800006 ], [ -123.310366592999983, 48.436926308000075 ], [ -123.31205370399999, 48.43656960400002 ], [ -123.312581410999897, 48.436495571000187 ], [ -123.312679497999952, 48.436481795000098 ], [ -123.312925396999972, 48.436477211000117 ], [ -123.314181198999933, 48.436464008000037 ], [ -123.314191593999951, 48.435045693000042 ], [ -123.315338302999976, 48.43505400100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151920918", "BldgCostT": "100966668", "sL_LossRatio": "0.77799603711017", "sL_AssetLoss": "204547.7", "sL_BldgLoss": "159137.3", "sL_StrLoss": "98433.7", "sL_NStrLoss": "60703.6", "sL_ContLoss": "45410.4", "geom_point": "0101000020E61000005F7BD1E403D45EC0B4E33C52B3374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.311261084999956, 48.434249802000075 ], [ -123.312007092999963, 48.43359059000008 ], [ -123.313223389999933, 48.433964212000049 ], [ -123.313551515999976, 48.433771398000125 ], [ -123.314537698999956, 48.433419408000134 ], [ -123.314631874, 48.433406914000074 ], [ -123.314948400999967, 48.433364895000075 ], [ -123.315418316, 48.433406598000069 ], [ -123.315803091999939, 48.433498473000029 ], [ -123.316199895999901, 48.433593195000071 ], [ -123.316356693000017, 48.434278088000063 ], [ -123.31637799399999, 48.434377802000057 ], [ -123.31652690199995, 48.435035502000062 ], [ -123.315338302999976, 48.43505400100009 ], [ -123.314191593999951, 48.435045693000042 ], [ -123.314181198999933, 48.436464008000037 ], [ -123.312925396999972, 48.436477211000117 ], [ -123.312679497999952, 48.436481795000098 ], [ -123.312581410999897, 48.436495571000187 ], [ -123.31205370399999, 48.43656960400002 ], [ -123.310366592999983, 48.436926308000075 ], [ -123.310353661999969, 48.43692887800006 ], [ -123.308684796999955, 48.437262398000072 ], [ -123.31025562799999, 48.43515321000006 ], [ -123.310645638999944, 48.434658600000063 ], [ -123.31067740899999, 48.434618285000134 ], [ -123.311006289999952, 48.434387704000066 ], [ -123.311261084999956, 48.434249802000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99645084", "BldgCostT": "64298334", "sL_LossRatio": "0.957137216238159", "sL_AssetLoss": "121814.3", "sL_BldgLoss": "116593", "sL_StrLoss": "93570", "sL_NStrLoss": "23023", "sL_ContLoss": "5221.3", "geom_point": "0101000020E610000027DE7D65D0D35EC0B43354DE71374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.306228306999969, 48.432881884000103 ], [ -123.306855397999982, 48.431988805000103 ], [ -123.308512496999953, 48.432511609000052 ], [ -123.309635796999984, 48.432858497000069 ], [ -123.310785711999984, 48.431029893000073 ], [ -123.311889505999943, 48.431314982000117 ], [ -123.312771208999948, 48.431550451000071 ], [ -123.313245669000011, 48.431677170000036 ], [ -123.313359698999932, 48.431707619000065 ], [ -123.313129515999961, 48.431887609000114 ], [ -123.312826009999981, 48.432348098000055 ], [ -123.31265343299999, 48.432609910000153 ], [ -123.312007092999963, 48.43359059000008 ], [ -123.311261084999956, 48.434249802000075 ], [ -123.311006289999952, 48.434387704000066 ], [ -123.31067740899999, 48.434618285000134 ], [ -123.310645638999944, 48.434658600000063 ], [ -123.31025562799999, 48.43515321000006 ], [ -123.309656451999956, 48.434990114000115 ], [ -123.309031601999891, 48.434820001000105 ], [ -123.307968500999905, 48.434529606000098 ], [ -123.305592099999956, 48.433792812000057 ], [ -123.306228306999969, 48.432881884000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "312134886", "BldgCostT": "206607079", "sL_LossRatio": "0.865966922436859", "sL_AssetLoss": "248220.22", "sL_BldgLoss": "214950.5", "sL_StrLoss": "156650.2", "sL_NStrLoss": "58300.3", "sL_ContLoss": "33269.72", "geom_point": "0101000020E6100000583DCBB9F5D35EC04397FDDBE1364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.309485609999967, 48.426438004 ], [ -123.309741815, 48.426321899000122 ], [ -123.310123892999954, 48.42631810500005 ], [ -123.310350505999935, 48.42634279200017 ], [ -123.310716512999932, 48.426385504000038 ], [ -123.31118127699996, 48.426397301000144 ], [ -123.311643591999967, 48.426407208000121 ], [ -123.31202469599999, 48.426415492000025 ], [ -123.312875280999904, 48.426433990000127 ], [ -123.312991195, 48.426436905000102 ], [ -123.314105087999934, 48.426471508000134 ], [ -123.315473605999912, 48.426490901000129 ], [ -123.31545542, 48.426929597000012 ], [ -123.315452199999967, 48.426986291000098 ], [ -123.315431862999944, 48.42742881900007 ], [ -123.315412002999935, 48.427860107000143 ], [ -123.315273346, 48.429470882000025 ], [ -123.31512281599997, 48.429626705000068 ], [ -123.314786919999946, 48.429889571000103 ], [ -123.314422211999968, 48.430175003000038 ], [ -123.314308004999987, 48.430264379000079 ], [ -123.313653713999898, 48.431260171000126 ], [ -123.313359698999932, 48.431707619000065 ], [ -123.313245669000011, 48.431677170000036 ], [ -123.312771208999948, 48.431550451000071 ], [ -123.311889505999943, 48.431314982000117 ], [ -123.310785711999984, 48.431029893000073 ], [ -123.309615183999966, 48.430729594000141 ], [ -123.308399624999979, 48.43041299300009 ], [ -123.307600688999912, 48.430204897000067 ], [ -123.307705506999952, 48.429905493000078 ], [ -123.307769427999958, 48.429680631000039 ], [ -123.307879305999975, 48.429293995000137 ], [ -123.307973894, 48.428982504000039 ], [ -123.308011810999986, 48.428625405000034 ], [ -123.308873204999941, 48.428615787000084 ], [ -123.309035297999969, 48.428471094000017 ], [ -123.309064597999935, 48.427718803000047 ], [ -123.30909237799996, 48.42723070400011 ], [ -123.309225450999932, 48.426962484000057 ], [ -123.309485609999967, 48.426438004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204894751", "BldgCostT": "142770001", "sL_LossRatio": "0.929043810495467", "sL_AssetLoss": "149846.97", "sL_BldgLoss": "139214.4", "sL_StrLoss": "98703", "sL_NStrLoss": "40511.4", "sL_ContLoss": "10632.57", "geom_point": "0101000020E610000031CA4CCCA7D35EC0719989D816374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.304213104, 48.431570094000037 ], [ -123.304033976999975, 48.431085794000055 ], [ -123.304138387999927, 48.430356595000049 ], [ -123.304379919999946, 48.430175799000082 ], [ -123.304633009999932, 48.42959899500007 ], [ -123.304996856999978, 48.429338522000108 ], [ -123.305179223999986, 48.429338037000022 ], [ -123.305179175999967, 48.429330245000074 ], [ -123.306307581999974, 48.429342594000033 ], [ -123.30657738799998, 48.429215803000041 ], [ -123.306386911999979, 48.428992199000064 ], [ -123.307099695999938, 48.428126299000091 ], [ -123.307161044999944, 48.427983286000043 ], [ -123.307198788000036, 48.427983185000109 ], [ -123.307198263999908, 48.4278965170001 ], [ -123.307285395999941, 48.427693396000059 ], [ -123.30759508899996, 48.427476895000105 ], [ -123.307524009999966, 48.426893009000075 ], [ -123.307190863999892, 48.42666845400008 ], [ -123.30718939099998, 48.426424170000089 ], [ -123.307341972999922, 48.426433466000049 ], [ -123.30768431499996, 48.426516565000036 ], [ -123.309289799999959, 48.426369009000076 ], [ -123.309485609999967, 48.426438004 ], [ -123.309225450999932, 48.426962484000057 ], [ -123.30909237799996, 48.42723070400011 ], [ -123.309064597999935, 48.427718803000047 ], [ -123.309035297999969, 48.428471094000017 ], [ -123.308873204999941, 48.428615787000084 ], [ -123.308011810999986, 48.428625405000034 ], [ -123.307973894, 48.428982504000039 ], [ -123.307879305999975, 48.429293995000137 ], [ -123.307769427999958, 48.429680631000039 ], [ -123.307705506999952, 48.429905493000078 ], [ -123.307600688999912, 48.430204897000067 ], [ -123.308399624999979, 48.43041299300009 ], [ -123.309615183999966, 48.430729594000141 ], [ -123.310785711999984, 48.431029893000073 ], [ -123.309635796999984, 48.432858497000069 ], [ -123.308512496999953, 48.432511609000052 ], [ -123.306855397999982, 48.431988805000103 ], [ -123.306489745999968, 48.431880642000081 ], [ -123.30573139399999, 48.43165630700004 ], [ -123.305123581999979, 48.431476706000069 ], [ -123.304779279999963, 48.431361496000079 ], [ -123.304798399999967, 48.431593439000082 ], [ -123.304744231999962, 48.431908190000037 ], [ -123.304645447999945, 48.432297707000075 ], [ -123.304258561999944, 48.432949691000054 ], [ -123.304255505999905, 48.43295483300011 ], [ -123.303344204999931, 48.434329884000121 ], [ -123.30328180099994, 48.434477105000042 ], [ -123.302393490999947, 48.435735992000055 ], [ -123.302025099999952, 48.435592353000075 ], [ -123.301982219999942, 48.435575952000072 ], [ -123.302517504999912, 48.43501089300004 ], [ -123.303429602, 48.43379469800005 ], [ -123.303910595999952, 48.432903086000103 ], [ -123.304202792999959, 48.431993 ], [ -123.304213104, 48.431570094000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216570417", "BldgCostT": "145541667", "sL_LossRatio": "0.812297308239185", "sL_AssetLoss": "133506.29", "sL_BldgLoss": "108446.8", "sL_StrLoss": "70871", "sL_NStrLoss": "37575.8", "sL_ContLoss": "25059.49", "geom_point": "0101000020E6100000C3BFE855D1D35EC07150679368364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307604097999942, 48.426423608000029 ], [ -123.307521986999944, 48.426206892000046 ], [ -123.307504090999942, 48.426073962000046 ], [ -123.307479298999951, 48.425890097000021 ], [ -123.307438799999886, 48.425583409000097 ], [ -123.307282209, 48.425205108000078 ], [ -123.30707570599999, 48.42492208700002 ], [ -123.306762882999948, 48.424609291000124 ], [ -123.306399102999976, 48.424363786000107 ], [ -123.306027312999944, 48.424187493000041 ], [ -123.30597732699999, 48.424180932000056 ], [ -123.305602801999939, 48.424131597000056 ], [ -123.306010316999945, 48.423867779000069 ], [ -123.30647141299994, 48.423569305000051 ], [ -123.307102695999944, 48.423189714000138 ], [ -123.307330576999959, 48.423052700000085 ], [ -123.308790425999973, 48.424072898000112 ], [ -123.30863343499999, 48.424343609000069 ], [ -123.309466909999941, 48.424205494000063 ], [ -123.30974447399997, 48.424259397000156 ], [ -123.310377488999961, 48.42427999900012 ], [ -123.311674674999949, 48.424293091000031 ], [ -123.311676933999976, 48.424091974000063 ], [ -123.312900020999933, 48.424029555000097 ], [ -123.31290179399997, 48.424258497000054 ], [ -123.312875280999904, 48.426433990000127 ], [ -123.31202469599999, 48.426415492000025 ], [ -123.311643591999967, 48.426407208000121 ], [ -123.31118127699996, 48.426397301000144 ], [ -123.310716512999932, 48.426385504000038 ], [ -123.310350505999935, 48.42634279200017 ], [ -123.310123892999954, 48.42631810500005 ], [ -123.309741815, 48.426321899000122 ], [ -123.309485609999967, 48.426438004 ], [ -123.309289799999959, 48.426369009000076 ], [ -123.30768431499996, 48.426516565000036 ], [ -123.307604097999942, 48.426423608000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130766083", "BldgCostT": "88768333", "sL_LossRatio": "0.966357400478218", "sL_AssetLoss": "157551.44", "sL_BldgLoss": "152251", "sL_StrLoss": "127310.3", "sL_NStrLoss": "24940.7", "sL_ContLoss": "5300.44", "geom_point": "0101000020E6100000B170ED9FC2D35EC04F4B0FB701364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.30863343499999, 48.424343609000069 ], [ -123.308790425999973, 48.424072898000112 ], [ -123.307330576999959, 48.423052700000085 ], [ -123.307102695999944, 48.423189714000138 ], [ -123.30647141299994, 48.423569305000051 ], [ -123.305045000999925, 48.422507492000086 ], [ -123.304180396999968, 48.421865005000065 ], [ -123.303294396999945, 48.42119399900011 ], [ -123.303259938999972, 48.421127762000076 ], [ -123.3031789, 48.420971884000082 ], [ -123.303195404999954, 48.420611600000051 ], [ -123.303192506999949, 48.420142609000024 ], [ -123.304832007999948, 48.420184306000074 ], [ -123.305213022999936, 48.420185611000107 ], [ -123.305649393999929, 48.420187093000088 ], [ -123.306009613999962, 48.420187294000115 ], [ -123.30711859899999, 48.420189110000102 ], [ -123.307790303999965, 48.420190206000044 ], [ -123.30860462599999, 48.420176536000042 ], [ -123.309030001999986, 48.420169397000109 ], [ -123.309452605999979, 48.42018730300002 ], [ -123.310434318999967, 48.420196096000012 ], [ -123.31090346299996, 48.420199397000012 ], [ -123.311347336999972, 48.420202500000073 ], [ -123.31166150199999, 48.420204700000085 ], [ -123.312911707999945, 48.420212104000072 ], [ -123.312898198999946, 48.421111018000083 ], [ -123.312891311, 48.421569900000108 ], [ -123.312884495999967, 48.422021419000018 ], [ -123.312900020999933, 48.424029555000097 ], [ -123.311676933999976, 48.424091974000063 ], [ -123.311674674999949, 48.424293091000031 ], [ -123.310377488999961, 48.42427999900012 ], [ -123.30974447399997, 48.424259397000156 ], [ -123.309466909999941, 48.424205494000063 ], [ -123.30863343499999, 48.424343609000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241467000", "BldgCostT": "158730000", "sL_LossRatio": "0.786716759234778", "sL_AssetLoss": "271864.68", "sL_BldgLoss": "213880.5", "sL_StrLoss": "157848", "sL_NStrLoss": "56032.5", "sL_ContLoss": "57984.18", "geom_point": "0101000020E610000061E796EB27D45EC0C2264B1022364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.314105087999934, 48.426471508000134 ], [ -123.312991195, 48.426436905000102 ], [ -123.312875280999904, 48.426433990000127 ], [ -123.31290179399997, 48.424258497000054 ], [ -123.312900020999933, 48.424029555000097 ], [ -123.312884495999967, 48.422021419000018 ], [ -123.312891311, 48.421569900000108 ], [ -123.312898198999946, 48.421111018000083 ], [ -123.312911707999945, 48.420212104000072 ], [ -123.314163095999973, 48.42022311500007 ], [ -123.314763511999956, 48.420223008000079 ], [ -123.315914111999916, 48.420226885000083 ], [ -123.317153792999989, 48.420229506000105 ], [ -123.31778509899999, 48.420231109000035 ], [ -123.318389394999883, 48.42023290700012 ], [ -123.318413690999961, 48.420674036000037 ], [ -123.318441896999914, 48.421186487000092 ], [ -123.318459208999954, 48.421528513000055 ], [ -123.31847331799996, 48.421807380000061 ], [ -123.31848391599999, 48.422016388000046 ], [ -123.317143975999954, 48.422019395000078 ], [ -123.315906492999929, 48.422024092000079 ], [ -123.315904111999927, 48.422497360000172 ], [ -123.315901705999948, 48.422974220000114 ], [ -123.31589726599999, 48.423855845000027 ], [ -123.315897021999916, 48.423900814000035 ], [ -123.315895299999937, 48.424242383000085 ], [ -123.315892320999978, 48.425055804000102 ], [ -123.315889210999956, 48.425420998000078 ], [ -123.315884776999965, 48.426496799000098 ], [ -123.315473605999912, 48.426490901000129 ], [ -123.314105087999934, 48.426471508000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259956416", "BldgCostT": "171701666", "sL_LossRatio": "0.839392814869912", "sL_AssetLoss": "172247.96", "sL_BldgLoss": "144583.7", "sL_StrLoss": "101128.8", "sL_NStrLoss": "43454.9", "sL_ContLoss": "27664.26", "geom_point": "0101000020E6100000A84DBDEA58D45EC0AAB858EE58364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.315895299999937, 48.424242383000085 ], [ -123.315897021999916, 48.423900814000035 ], [ -123.31589726599999, 48.423855845000027 ], [ -123.315901705999948, 48.422974220000114 ], [ -123.315904111999927, 48.422497360000172 ], [ -123.315906492999929, 48.422024092000079 ], [ -123.317143975999954, 48.422019395000078 ], [ -123.31848391599999, 48.422016388000046 ], [ -123.31850966199994, 48.422509221000091 ], [ -123.318527609999975, 48.422851545000121 ], [ -123.31859721599993, 48.424181900000093 ], [ -123.319795788999983, 48.424150991000076 ], [ -123.32064761299999, 48.424166192000037 ], [ -123.320673096999954, 48.425145406000119 ], [ -123.320712984999957, 48.426490101000113 ], [ -123.320349484999952, 48.426492774000025 ], [ -123.319957503999902, 48.42649567700014 ], [ -123.319687898, 48.426497681000072 ], [ -123.319336113999938, 48.426500284000021 ], [ -123.318105276999972, 48.426527798000066 ], [ -123.317962599999987, 48.426526046000042 ], [ -123.317105896999976, 48.426515497000061 ], [ -123.316855408999913, 48.426512410000036 ], [ -123.315884776999965, 48.426496799000098 ], [ -123.315889210999956, 48.425420998000078 ], [ -123.315892320999978, 48.425055804000102 ], [ -123.315895299999937, 48.424242383000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277327260", "BldgCostT": "183245786", "sL_LossRatio": "0.723288271307602", "sL_AssetLoss": "229195.2", "sL_BldgLoss": "165774.2", "sL_StrLoss": "100301", "sL_NStrLoss": "65473.2", "sL_ContLoss": "63421", "geom_point": "0101000020E6100000574874C789D45EC05CED067621364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.320673096999954, 48.425145406000119 ], [ -123.32064761299999, 48.424166192000037 ], [ -123.319795788999983, 48.424150991000076 ], [ -123.31859721599993, 48.424181900000093 ], [ -123.318527609999975, 48.422851545000121 ], [ -123.31850966199994, 48.422509221000091 ], [ -123.31848391599999, 48.422016388000046 ], [ -123.31847331799996, 48.421807380000061 ], [ -123.318459208999954, 48.421528513000055 ], [ -123.318441896999914, 48.421186487000092 ], [ -123.318413690999961, 48.420674036000037 ], [ -123.318389394999883, 48.42023290700012 ], [ -123.319783624999985, 48.420235074000061 ], [ -123.319871978999984, 48.420235197000075 ], [ -123.321447498999987, 48.420287697000077 ], [ -123.322695229999908, 48.42029915299999 ], [ -123.322915578000021, 48.421355712000064 ], [ -123.322842176999956, 48.424201888000027 ], [ -123.322882935999971, 48.425027971000105 ], [ -123.322735614999957, 48.426084049000032 ], [ -123.322724658999988, 48.426444509000056 ], [ -123.320712984999957, 48.426490101000113 ], [ -123.320673096999954, 48.425145406000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197329978", "BldgCostT": "134654857", "sL_LossRatio": "0.88136060400791", "sL_AssetLoss": "192282.25", "sL_BldgLoss": "169470", "sL_StrLoss": "128558", "sL_NStrLoss": "40912", "sL_ContLoss": "22812.25", "geom_point": "0101000020E610000056A24F58E0D45EC07DD976DA1A364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.322842176999956, 48.424201888000027 ], [ -123.322915578000021, 48.421355712000064 ], [ -123.323109028999951, 48.421274916000137 ], [ -123.323367596999901, 48.42099736600003 ], [ -123.323376765999981, 48.420787460000064 ], [ -123.324125285999941, 48.420791105000042 ], [ -123.324206809000017, 48.420791434000073 ], [ -123.324980499, 48.420794600000072 ], [ -123.325490595999938, 48.420804131000047 ], [ -123.32578767399994, 48.420809651000035 ], [ -123.325923890999945, 48.420812190000049 ], [ -123.326410622999916, 48.420985898000069 ], [ -123.326990220999974, 48.421201677000063 ], [ -123.327595789999961, 48.421427090000115 ], [ -123.328140172999952, 48.421630228000033 ], [ -123.328676684999948, 48.421830392000082 ], [ -123.32928099499999, 48.422046817000066 ], [ -123.330390506999905, 48.422468906000105 ], [ -123.33011761899995, 48.422786700000131 ], [ -123.330082493999939, 48.422930092000094 ], [ -123.330095485999962, 48.423240263000061 ], [ -123.330135409999968, 48.424192199000046 ], [ -123.329567180999959, 48.424194606000114 ], [ -123.329096216999986, 48.424196606000088 ], [ -123.328880299999952, 48.424196612000102 ], [ -123.328081402999899, 48.42419900800013 ], [ -123.32766229, 48.424190194000062 ], [ -123.32690439799994, 48.424184590000088 ], [ -123.32662150699997, 48.424175602000055 ], [ -123.325744395999905, 48.424177801000035 ], [ -123.325066381999974, 48.424189588000033 ], [ -123.324539595999966, 48.424199691000091 ], [ -123.324310243999946, 48.42420022600011 ], [ -123.323708946999943, 48.424192245000022 ], [ -123.323341756999952, 48.424195591000078 ], [ -123.322842176999956, 48.424201888000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "357213539", "BldgCostT": "236804387", "sL_LossRatio": "0.84660483829058", "sL_AssetLoss": "223406.59", "sL_BldgLoss": "189137.1", "sL_StrLoss": "139332.8", "sL_NStrLoss": "49804.3", "sL_ContLoss": "34269.49", "geom_point": "0101000020E6100000826BA45BE5D45EC068EEE00E71364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.325744395999905, 48.424177801000035 ], [ -123.32662150699997, 48.424175602000055 ], [ -123.32690439799994, 48.424184590000088 ], [ -123.32766229, 48.424190194000062 ], [ -123.328081402999899, 48.42419900800013 ], [ -123.328880299999952, 48.424196612000102 ], [ -123.329096216999986, 48.424196606000088 ], [ -123.329567180999959, 48.424194606000114 ], [ -123.330135409999968, 48.424192199000046 ], [ -123.33014848000002, 48.424556900000098 ], [ -123.330173982999924, 48.425156943000026 ], [ -123.330228396, 48.426439206000083 ], [ -123.329232112999946, 48.426448407000052 ], [ -123.328881294999945, 48.426448511000089 ], [ -123.328163515999933, 48.426448396000033 ], [ -123.327582014999948, 48.426447302000064 ], [ -123.327148664999967, 48.426447462000056 ], [ -123.327053119999945, 48.426447504000052 ], [ -123.326533837999946, 48.426447254000017 ], [ -123.326216480999946, 48.426447108000026 ], [ -123.325852205000032, 48.426446905000034 ], [ -123.324945603999979, 48.426445598000036 ], [ -123.324662191999934, 48.426445698000087 ], [ -123.323808021999952, 48.426446707000089 ], [ -123.323457494999943, 48.426442290000082 ], [ -123.323133881000018, 48.426443271000061 ], [ -123.322724658999988, 48.426444509000056 ], [ -123.322735614999957, 48.426084049000032 ], [ -123.322882935999971, 48.425027971000105 ], [ -123.322842176999956, 48.424201888000027 ], [ -123.323341756999952, 48.424195591000078 ], [ -123.323708946999943, 48.424192245000022 ], [ -123.324310243999946, 48.42420022600011 ], [ -123.324539595999966, 48.424199691000091 ], [ -123.325066381999974, 48.424189588000033 ], [ -123.325744395999905, 48.424177801000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "444944884", "BldgCostT": "290253753", "sL_LossRatio": "0.828434076810129", "sL_AssetLoss": "186416.04", "sL_BldgLoss": "154433.4", "sL_StrLoss": "104947.5", "sL_NStrLoss": "49485.9", "sL_ContLoss": "31982.64", "geom_point": "0101000020E61000001C5A854948D55EC0E0BB8BFF54364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.330228396, 48.426439206000083 ], [ -123.330173982999924, 48.425156943000026 ], [ -123.33014848000002, 48.424556900000098 ], [ -123.330135409999968, 48.424192199000046 ], [ -123.330095485999962, 48.423240263000061 ], [ -123.330082493999939, 48.422930092000094 ], [ -123.33011761899995, 48.422786700000131 ], [ -123.330390506999905, 48.422468906000105 ], [ -123.330622900999927, 48.422199697000046 ], [ -123.332207088999951, 48.422338796000084 ], [ -123.332523860999984, 48.422385377000133 ], [ -123.332540311999978, 48.422387802000046 ], [ -123.333439583999962, 48.422780205000066 ], [ -123.333957592000019, 48.422399106000043 ], [ -123.33495259099999, 48.423345899000061 ], [ -123.33535381199999, 48.424199190000067 ], [ -123.335300809999978, 48.424420608000062 ], [ -123.335067812999981, 48.4246537000001 ], [ -123.335056276000017, 48.424888484000149 ], [ -123.335032745999953, 48.425368555000041 ], [ -123.335022724999959, 48.425573404000062 ], [ -123.334809892999928, 48.425829605000075 ], [ -123.334819301999929, 48.425998493000044 ], [ -123.33482954199998, 48.426014798000104 ], [ -123.334962911999952, 48.426227497000049 ], [ -123.334942595999934, 48.426515594000122 ], [ -123.33425478499997, 48.426510006000143 ], [ -123.332947812999961, 48.426477084000027 ], [ -123.332350801999937, 48.426463906000031 ], [ -123.331597615999954, 48.426446700000028 ], [ -123.331303689999984, 48.426442003000069 ], [ -123.330228396, 48.426439206000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143536499", "BldgCostT": "96074999", "sL_LossRatio": "0.900094726880578", "sL_AssetLoss": "194865.49", "sL_BldgLoss": "175397.4", "sL_StrLoss": "137746.6", "sL_NStrLoss": "37650.8", "sL_ContLoss": "19468.09", "geom_point": "0101000020E610000004096A5B01D55EC01050C86BB1354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.326410622999916, 48.420985898000069 ], [ -123.325923890999945, 48.420812190000049 ], [ -123.32578767399994, 48.420809651000035 ], [ -123.325490595999938, 48.420804131000047 ], [ -123.324980499, 48.420794600000072 ], [ -123.324206809000017, 48.420791434000073 ], [ -123.324125285999941, 48.420791105000042 ], [ -123.323376765999981, 48.420787460000064 ], [ -123.323367596999901, 48.42099736600003 ], [ -123.323109028999951, 48.421274916000137 ], [ -123.322915578000021, 48.421355712000064 ], [ -123.322695229999908, 48.42029915299999 ], [ -123.3231014, 48.418549301000063 ], [ -123.323828468999949, 48.419072014000029 ], [ -123.32398550399995, 48.419184890000103 ], [ -123.324352620999917, 48.418870901000069 ], [ -123.324365033999968, 48.418860301000066 ], [ -123.324518197999978, 48.418729302000052 ], [ -123.324530611999975, 48.418718701000074 ], [ -123.324738296999939, 48.418541102000049 ], [ -123.32499320699992, 48.418423091000065 ], [ -123.32512467399999, 48.418363286000051 ], [ -123.325559603, 48.418258793000057 ], [ -123.326519203999979, 48.418156802000034 ], [ -123.326713695999956, 48.418128395000089 ], [ -123.327249207999927, 48.417914588000016 ], [ -123.327329809999966, 48.417848982000052 ], [ -123.327401709999918, 48.417771499000011 ], [ -123.327541199, 48.417092300000036 ], [ -123.327545988999987, 48.416769497000118 ], [ -123.329018961000017, 48.416760577000055 ], [ -123.330281399999976, 48.416752899000066 ], [ -123.33106211799999, 48.416664396000158 ], [ -123.331496806999922, 48.417590694000104 ], [ -123.331936390999942, 48.418526193000076 ], [ -123.332373323999988, 48.419486800000101 ], [ -123.332034703, 48.420419788000117 ], [ -123.3319367799999, 48.420604954000083 ], [ -123.33184591399997, 48.420776693000079 ], [ -123.331041027999959, 48.4217132140001 ], [ -123.330622900999927, 48.422199697000046 ], [ -123.330390506999905, 48.422468906000105 ], [ -123.32928099499999, 48.422046817000066 ], [ -123.328676684999948, 48.421830392000082 ], [ -123.328140172999952, 48.421630228000033 ], [ -123.327595789999961, 48.421427090000115 ], [ -123.326990220999974, 48.421201677000063 ], [ -123.326410622999916, 48.420985898000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103230166", "BldgCostT": "70696666", "sL_LossRatio": "0.924656953774443", "sL_AssetLoss": "128379.2", "sL_BldgLoss": "118706.72", "sL_StrLoss": "99721.62", "sL_NStrLoss": "18985.1", "sL_ContLoss": "9672.48", "geom_point": "0101000020E61000007CDC22F66AD55EC05EC2CA36AA354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.336192909999937, 48.416295784000042 ], [ -123.337537223999917, 48.416212402000014 ], [ -123.337649594999959, 48.417186495000045 ], [ -123.337766150999968, 48.418215687000071 ], [ -123.337781193999959, 48.418348704000067 ], [ -123.337806226999987, 48.4185504000001 ], [ -123.33810329899994, 48.419073790000049 ], [ -123.338249182999945, 48.419315042000029 ], [ -123.338637702999947, 48.41995749700002 ], [ -123.336426531999962, 48.420570514000104 ], [ -123.33640099899999, 48.42057761500012 ], [ -123.33595990399999, 48.420719793000032 ], [ -123.335914675999959, 48.420734667000069 ], [ -123.33588071799997, 48.420745842000088 ], [ -123.335847404999953, 48.420756786000048 ], [ -123.335501409999964, 48.420870577000045 ], [ -123.335318018999942, 48.420930898000101 ], [ -123.335067493999986, 48.421187097000043 ], [ -123.33477928799999, 48.42144129800004 ], [ -123.334489801999936, 48.421790304000076 ], [ -123.333957592000019, 48.422399106000043 ], [ -123.333439583999962, 48.422780205000066 ], [ -123.332540311999978, 48.422387802000046 ], [ -123.332523860999984, 48.422385377000133 ], [ -123.332207088999951, 48.422338796000084 ], [ -123.330622900999927, 48.422199697000046 ], [ -123.331041027999959, 48.4217132140001 ], [ -123.33184591399997, 48.420776693000079 ], [ -123.3319367799999, 48.420604954000083 ], [ -123.332034703, 48.420419788000117 ], [ -123.332373323999988, 48.419486800000101 ], [ -123.331936390999942, 48.418526193000076 ], [ -123.331496806999922, 48.417590694000104 ], [ -123.3355297199999, 48.416407197000133 ], [ -123.336192909999937, 48.416295784000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148171083", "BldgCostT": "99738333", "sL_LossRatio": "0.957589874758604", "sL_AssetLoss": "107240.9", "sL_BldgLoss": "102692.8", "sL_StrLoss": "78165", "sL_NStrLoss": "24527.8", "sL_ContLoss": "4548.1", "geom_point": "0101000020E6100000C48DCF2263D55EC00F8973BB34354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.332161198999984, 48.414994794000094 ], [ -123.332416915999929, 48.414887586000063 ], [ -123.332516175999928, 48.414800795000147 ], [ -123.332689894999973, 48.414973816000078 ], [ -123.332772194999961, 48.414996602 ], [ -123.33288048799993, 48.414990393000018 ], [ -123.337221279999966, 48.413674698000129 ], [ -123.337304297999978, 48.414476805000028 ], [ -123.337334394999942, 48.414781392000052 ], [ -123.337422686999929, 48.415345496000029 ], [ -123.337537223999917, 48.416212402000014 ], [ -123.336192909999937, 48.416295784000042 ], [ -123.3355297199999, 48.416407197000133 ], [ -123.331496806999922, 48.417590694000104 ], [ -123.33106211799999, 48.416664396000158 ], [ -123.330458897, 48.415472202000103 ], [ -123.331564492999988, 48.415170883000016 ], [ -123.332161198999984, 48.414994794000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163583917", "BldgCostT": "107031667", "sL_LossRatio": "0.879796788589959", "sL_AssetLoss": "255135.28", "sL_BldgLoss": "224467.2", "sL_StrLoss": "177418", "sL_NStrLoss": "47049.2", "sL_ContLoss": "30668.08", "geom_point": "0101000020E610000075067FBF58D55EC0C41B150FDA344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.330458897, 48.415472202000103 ], [ -123.33045649799999, 48.413195007000049 ], [ -123.33080591, 48.413194809000061 ], [ -123.330818308999966, 48.411564502000026 ], [ -123.331385899999972, 48.411234296000046 ], [ -123.331571390999954, 48.411126295000052 ], [ -123.332252594999943, 48.41086380200008 ], [ -123.332805716999957, 48.410861586000053 ], [ -123.333930000999942, 48.410850198000077 ], [ -123.335086790999952, 48.410858609000073 ], [ -123.336306202999964, 48.410882087000054 ], [ -123.336330875999977, 48.411640295000026 ], [ -123.33634848699991, 48.412286397000081 ], [ -123.33707360899993, 48.412201005000078 ], [ -123.337221279999966, 48.413674698000129 ], [ -123.33288048799993, 48.414990393000018 ], [ -123.332772194999961, 48.414996602 ], [ -123.332689894999973, 48.414973816000078 ], [ -123.332516175999928, 48.414800795000147 ], [ -123.332416915999929, 48.414887586000063 ], [ -123.332161198999984, 48.414994794000094 ], [ -123.331564492999988, 48.415170883000016 ], [ -123.330458897, 48.415472202000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "374604286", "BldgCostT": "243155051", "sL_LossRatio": "0.824787266645744", "sL_AssetLoss": "276503.42", "sL_BldgLoss": "228056.5", "sL_StrLoss": "167352.3", "sL_NStrLoss": "60704.2", "sL_ContLoss": "48446.92", "geom_point": "0101000020E61000006CB1BA59ECD45EC078A4F11320354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.323394991999962, 48.414004190000064 ], [ -123.323482188999918, 48.413178400000064 ], [ -123.326089371999927, 48.413400799000087 ], [ -123.327425094999967, 48.413226687000147 ], [ -123.327125745999965, 48.412795728000035 ], [ -123.326534391999971, 48.411944313000077 ], [ -123.326609676999951, 48.411614293000113 ], [ -123.326676852999981, 48.411235495000035 ], [ -123.327715489999932, 48.411534300000071 ], [ -123.32845919199994, 48.411594105000042 ], [ -123.329134397999908, 48.411493000000114 ], [ -123.329205563999949, 48.411473855000104 ], [ -123.330216827999934, 48.411443798000093 ], [ -123.330816401999982, 48.411335412000028 ], [ -123.331385899999972, 48.411234296000046 ], [ -123.330818308999966, 48.411564502000026 ], [ -123.33080591, 48.413194809000061 ], [ -123.33045649799999, 48.413195007000049 ], [ -123.330458897, 48.415472202000103 ], [ -123.33106211799999, 48.416664396000158 ], [ -123.330281399999976, 48.416752899000066 ], [ -123.329018961000017, 48.416760577000055 ], [ -123.327545988999987, 48.416769497000118 ], [ -123.327541199, 48.417092300000036 ], [ -123.327401709999918, 48.417771499000011 ], [ -123.327329809999966, 48.417848982000052 ], [ -123.327249207999927, 48.417914588000016 ], [ -123.326713695999956, 48.418128395000089 ], [ -123.326519203999979, 48.418156802000034 ], [ -123.325559603, 48.418258793000057 ], [ -123.32512467399999, 48.418363286000051 ], [ -123.32499320699992, 48.418423091000065 ], [ -123.324738296999939, 48.418541102000049 ], [ -123.324530611999975, 48.418718701000074 ], [ -123.324518197999978, 48.418729302000052 ], [ -123.324365033999968, 48.418860301000066 ], [ -123.324352620999917, 48.418870901000069 ], [ -123.32398550399995, 48.419184890000103 ], [ -123.323828468999949, 48.419072014000029 ], [ -123.3231014, 48.418549301000063 ], [ -123.323161482999964, 48.415579194000081 ], [ -123.323324913999969, 48.415028700000107 ], [ -123.323394991999962, 48.414004190000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115118584", "BldgCostT": "79128334", "sL_LossRatio": "0.966528897714977", "sL_AssetLoss": "145417.38", "sL_BldgLoss": "140550.1", "sL_StrLoss": "118897.5", "sL_NStrLoss": "21652.6", "sL_ContLoss": "4867.28", "geom_point": "0101000020E61000004EC6A5E890D45EC0DDCC53E3C6344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.318092399999941, 48.415048685000045 ], [ -123.31819490399999, 48.41388418300005 ], [ -123.318245010999988, 48.413547299000136 ], [ -123.318348581999956, 48.413384896 ], [ -123.318811915999945, 48.413064704000135 ], [ -123.318577991999973, 48.412924680000046 ], [ -123.318077417999945, 48.412625012000078 ], [ -123.317141810999928, 48.412067302 ], [ -123.31816309499996, 48.411304111000057 ], [ -123.318300996999938, 48.411178602000099 ], [ -123.318383389999951, 48.411033701000029 ], [ -123.318336384999938, 48.410554492000095 ], [ -123.318213001999979, 48.410232094000129 ], [ -123.318056804999955, 48.410013502000027 ], [ -123.317757593999929, 48.409819191000068 ], [ -123.317663035999914, 48.409696860000075 ], [ -123.317638221, 48.409664704000079 ], [ -123.317626698999931, 48.409511111000079 ], [ -123.317784214999904, 48.40935089500001 ], [ -123.31954267799992, 48.4085250790001 ], [ -123.319606304999979, 48.408495190000139 ], [ -123.319804789999964, 48.408468700000064 ], [ -123.319986512999918, 48.40852289900009 ], [ -123.320457606, 48.408944286000057 ], [ -123.320725157999931, 48.409188339000082 ], [ -123.320801320999976, 48.409257806000021 ], [ -123.320909690999954, 48.40941662000008 ], [ -123.320942513999924, 48.409552696000148 ], [ -123.32108963499995, 48.410194099000051 ], [ -123.32119481499997, 48.410336499000046 ], [ -123.321381924999983, 48.410438596000034 ], [ -123.322168054999963, 48.410729101000044 ], [ -123.322370447999972, 48.410776608000091 ], [ -123.322658815999915, 48.410756786 ], [ -123.323206219999946, 48.410665200000047 ], [ -123.323589201999965, 48.410642394000014 ], [ -123.32393801299996, 48.410724298000034 ], [ -123.324891406999896, 48.411229995000014 ], [ -123.326534391999971, 48.411944313000077 ], [ -123.327125745999965, 48.412795728000035 ], [ -123.327425094999967, 48.413226687000147 ], [ -123.326089371999927, 48.413400799000087 ], [ -123.323482188999918, 48.413178400000064 ], [ -123.323394991999962, 48.414004190000064 ], [ -123.323324913999969, 48.415028700000107 ], [ -123.323161482999964, 48.415579194000081 ], [ -123.322376806999941, 48.415311290000055 ], [ -123.321725795999924, 48.415015294000028 ], [ -123.320495403999942, 48.414111183000024 ], [ -123.320329694999913, 48.414251309000058 ], [ -123.32029810899995, 48.41452278100008 ], [ -123.320268557999952, 48.415099032000064 ], [ -123.320246012, 48.415538799000032 ], [ -123.319659267999967, 48.415539154000072 ], [ -123.318053822999943, 48.415540096000029 ], [ -123.318092399999941, 48.415048685000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97440083", "BldgCostT": "66728333", "sL_LossRatio": "0.956306678309899", "sL_AssetLoss": "126597.15", "sL_BldgLoss": "121065.7", "sL_StrLoss": "99170", "sL_NStrLoss": "21895.7", "sL_ContLoss": "5531.45", "geom_point": "0101000020E6100000696A5D9383D45EC0F91DBBF276354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31778509899999, 48.420231109000035 ], [ -123.317831212999948, 48.419298791000109 ], [ -123.317836990000018, 48.419196211000106 ], [ -123.317855712999958, 48.418819591000059 ], [ -123.317903804999929, 48.417947902000044 ], [ -123.317976676999976, 48.416613198000029 ], [ -123.318033189999966, 48.41580739900008 ], [ -123.318053822999943, 48.415540096000029 ], [ -123.319659267999967, 48.415539154000072 ], [ -123.320246012, 48.415538799000032 ], [ -123.320268557999952, 48.415099032000064 ], [ -123.32029810899995, 48.41452278100008 ], [ -123.320329694999913, 48.414251309000058 ], [ -123.320495403999942, 48.414111183000024 ], [ -123.321725795999924, 48.415015294000028 ], [ -123.322376806999941, 48.415311290000055 ], [ -123.323161482999964, 48.415579194000081 ], [ -123.3231014, 48.418549301000063 ], [ -123.322695229999908, 48.42029915299999 ], [ -123.321447498999987, 48.420287697000077 ], [ -123.319871978999984, 48.420235197000075 ], [ -123.319783624999985, 48.420235074000061 ], [ -123.318389394999883, 48.42023290700012 ], [ -123.31778509899999, 48.420231109000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103934749", "BldgCostT": "70204999", "sL_LossRatio": "0.962887515701801", "sL_AssetLoss": "126259.4", "sL_BldgLoss": "121573.6", "sL_StrLoss": "100553.3", "sL_NStrLoss": "21020.3", "sL_ContLoss": "4685.8", "geom_point": "0101000020E61000005C02959636D45EC0DAFF639510354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.316627505999975, 48.412051587000057 ], [ -123.316920005999918, 48.412007589000034 ], [ -123.317141810999928, 48.412067302 ], [ -123.318077417999945, 48.412625012000078 ], [ -123.318577991999973, 48.412924680000046 ], [ -123.318811915999945, 48.413064704000135 ], [ -123.318348581999956, 48.413384896 ], [ -123.318245010999988, 48.413547299000136 ], [ -123.31819490399999, 48.41388418300005 ], [ -123.318092399999941, 48.415048685000045 ], [ -123.318053822999943, 48.415540096000029 ], [ -123.318033189999966, 48.41580739900008 ], [ -123.317976676999976, 48.416613198000029 ], [ -123.31612232400002, 48.416604901 ], [ -123.314975916999956, 48.416600197000079 ], [ -123.313130795999911, 48.416594004000039 ], [ -123.313341609999981, 48.413190307000107 ], [ -123.31419460199993, 48.413063095000012 ], [ -123.315197902999941, 48.412807202000096 ], [ -123.31552419799999, 48.412691002000045 ], [ -123.316389570999959, 48.412189492000081 ], [ -123.316627505999975, 48.412051587000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150086575", "BldgCostT": "97017904", "sL_LossRatio": "0.879084172910391", "sL_AssetLoss": "203217.4", "sL_BldgLoss": "178645.2", "sL_StrLoss": "137979", "sL_NStrLoss": "40666.2", "sL_ContLoss": "24572.2", "geom_point": "0101000020E6100000B496EA7E25D45EC06BDA285F8E354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31612232400002, 48.416604901 ], [ -123.317976676999976, 48.416613198000029 ], [ -123.317903804999929, 48.417947902000044 ], [ -123.317855712999958, 48.418819591000059 ], [ -123.317836990000018, 48.419196211000106 ], [ -123.317831212999948, 48.419298791000109 ], [ -123.31778509899999, 48.420231109000035 ], [ -123.317153792999989, 48.420229506000105 ], [ -123.315914111999916, 48.420226885000083 ], [ -123.314763511999956, 48.420223008000079 ], [ -123.314163095999973, 48.42022311500007 ], [ -123.312911707999945, 48.420212104000072 ], [ -123.31166150199999, 48.420204700000085 ], [ -123.311642372999955, 48.419401496000035 ], [ -123.311679506999923, 48.418802468000138 ], [ -123.311691191999941, 48.418613699000076 ], [ -123.311716688999979, 48.418028398000025 ], [ -123.31172127799999, 48.417922552000022 ], [ -123.311726506999946, 48.417802907000102 ], [ -123.311735826999922, 48.417407638000071 ], [ -123.311755222999949, 48.416586107000022 ], [ -123.313130795999911, 48.416594004000039 ], [ -123.314975916999956, 48.416600197000079 ], [ -123.31612232400002, 48.416604901 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126362832", "BldgCostT": "84673332", "sL_LossRatio": "0.967856094214915", "sL_AssetLoss": "144676.88", "sL_BldgLoss": "140026.4", "sL_StrLoss": "119711", "sL_NStrLoss": "20315.4", "sL_ContLoss": "4650.48", "geom_point": "0101000020E61000008FCA8FF0E4D35EC0DE59268946354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.309612538999986, 48.41735888200003 ], [ -123.309650007999934, 48.416550598000086 ], [ -123.30798290599995, 48.416521789000051 ], [ -123.308020604999967, 48.415124844000061 ], [ -123.308933132, 48.414853127000079 ], [ -123.30980574799996, 48.414075670000074 ], [ -123.309811451999906, 48.413984921000086 ], [ -123.309822775999976, 48.413804936000041 ], [ -123.309860617999959, 48.413203693000064 ], [ -123.310689085999954, 48.413269887000077 ], [ -123.311979275999988, 48.413306304000045 ], [ -123.313341609999981, 48.413190307000107 ], [ -123.313130795999911, 48.416594004000039 ], [ -123.311755222999949, 48.416586107000022 ], [ -123.311735826999922, 48.417407638000071 ], [ -123.311726506999946, 48.417802907000102 ], [ -123.31172127799999, 48.417922552000022 ], [ -123.311716688999979, 48.418028398000025 ], [ -123.311691191999941, 48.418613699000076 ], [ -123.311679506999923, 48.418802468000138 ], [ -123.311642372999955, 48.419401496000035 ], [ -123.31166150199999, 48.420204700000085 ], [ -123.311347336999972, 48.420202500000073 ], [ -123.31090346299996, 48.420199397000012 ], [ -123.310434318999967, 48.420196096000012 ], [ -123.309452605999979, 48.42018730300002 ], [ -123.309494598999947, 48.419994507000055 ], [ -123.309513196999887, 48.419430417000051 ], [ -123.309552786000026, 48.418616095000047 ], [ -123.309579139999983, 48.418070074000063 ], [ -123.309582151999948, 48.418006849000051 ], [ -123.309590403999948, 48.417836089000062 ], [ -123.309612538999986, 48.41735888200003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225382749", "BldgCostT": "151539999", "sL_LossRatio": "0.892704953386941", "sL_AssetLoss": "223499.6", "sL_BldgLoss": "199519.2", "sL_StrLoss": "155694.2", "sL_NStrLoss": "43825", "sL_ContLoss": "23980.4", "geom_point": "0101000020E61000009FF77B399ED35EC02FBD81F28C354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.303192506999949, 48.420142609000024 ], [ -123.303191700999932, 48.419985649000068 ], [ -123.303190000999948, 48.419642001000092 ], [ -123.303207601999972, 48.419373430000064 ], [ -123.303220595999974, 48.419175586000094 ], [ -123.303691991999969, 48.418597803000054 ], [ -123.30369694599996, 48.418346902000053 ], [ -123.30373468699996, 48.416429903000086 ], [ -123.304151301999966, 48.416439456000028 ], [ -123.30481522099997, 48.416454700000074 ], [ -123.306022309999918, 48.416483590000048 ], [ -123.306760125999972, 48.416497968000037 ], [ -123.30798290599995, 48.416521789000051 ], [ -123.309650007999934, 48.416550598000086 ], [ -123.309612538999986, 48.41735888200003 ], [ -123.309590403999948, 48.417836089000062 ], [ -123.309582151999948, 48.418006849000051 ], [ -123.309579139999983, 48.418070074000063 ], [ -123.309552786000026, 48.418616095000047 ], [ -123.309513196999887, 48.419430417000051 ], [ -123.309494598999947, 48.419994507000055 ], [ -123.309452605999979, 48.42018730300002 ], [ -123.309030001999986, 48.420169397000109 ], [ -123.30860462599999, 48.420176536000042 ], [ -123.307790303999965, 48.420190206000044 ], [ -123.30711859899999, 48.420189110000102 ], [ -123.306009613999962, 48.420187294000115 ], [ -123.305649393999929, 48.420187093000088 ], [ -123.305213022999936, 48.420185611000107 ], [ -123.304832007999948, 48.420184306000074 ], [ -123.303192506999949, 48.420142609000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64796999", "BldgCostT": "44159999", "sL_LossRatio": "0.968574692547348", "sL_AssetLoss": "90678.19", "sL_BldgLoss": "87828.6", "sL_StrLoss": "76008", "sL_NStrLoss": "11820.6", "sL_ContLoss": "2849.59", "geom_point": "0101000020E610000031BB82C83DD35EC0DFA689882C354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.298869215999943, 48.42036599200005 ], [ -123.298751901999978, 48.420223212000145 ], [ -123.298549621999911, 48.420234137000101 ], [ -123.297825160999977, 48.420273297000122 ], [ -123.297711698999933, 48.420278342000103 ], [ -123.29753194199999, 48.420250727000088 ], [ -123.297629601999972, 48.420089508000039 ], [ -123.298048393999977, 48.41981889200008 ], [ -123.297707203999948, 48.419559699000096 ], [ -123.297518913999966, 48.419595307000044 ], [ -123.297235109, 48.419442901000082 ], [ -123.296964608999986, 48.419552596000081 ], [ -123.296789178999973, 48.419471395000066 ], [ -123.296801003000013, 48.419308984000104 ], [ -123.29729838899999, 48.418930199000073 ], [ -123.296700199999961, 48.418374786000051 ], [ -123.296597800999947, 48.418174793000063 ], [ -123.296596927999971, 48.418024845000097 ], [ -123.29652112399998, 48.418025040000074 ], [ -123.296248813999981, 48.417493196000052 ], [ -123.296258193999947, 48.416692810000022 ], [ -123.296380500999987, 48.416576009000018 ], [ -123.296182247999965, 48.416436889000039 ], [ -123.296181354999973, 48.416283188000065 ], [ -123.29617472299995, 48.416276701000051 ], [ -123.296172516999917, 48.415784096000102 ], [ -123.296050176, 48.415667296000088 ], [ -123.296001957999962, 48.415474757000041 ], [ -123.296028314999987, 48.415327345000094 ], [ -123.29596508199991, 48.41532750700005 ], [ -123.295939985999951, 48.415227297000094 ], [ -123.295951404999954, 48.41479569300003 ], [ -123.296149412999966, 48.41415630500007 ], [ -123.29580899199999, 48.413607892000172 ], [ -123.295171001999933, 48.413142202000067 ], [ -123.294913794999928, 48.413098111000096 ], [ -123.294670880999945, 48.413251901000145 ], [ -123.294469199999966, 48.413251896000098 ], [ -123.294209509999973, 48.413036787000124 ], [ -123.2941016, 48.412811799000067 ], [ -123.293830402999916, 48.41272208700012 ], [ -123.29382889099999, 48.41240729200009 ], [ -123.293691801999941, 48.412246402000029 ], [ -123.293813204999978, 48.411967194000042 ], [ -123.29372930999989, 48.411562795000037 ], [ -123.293986003, 48.411480207000039 ], [ -123.294420208999966, 48.411803499000072 ], [ -123.294946714999966, 48.411801997000083 ], [ -123.295066994999942, 48.411568494000051 ], [ -123.295268302999901, 48.411423186000114 ], [ -123.295320409999974, 48.411108405000078 ], [ -123.295455986999968, 48.411045807000029 ], [ -123.29576809799994, 48.411233812000042 ], [ -123.295972106999926, 48.411638203000081 ], [ -123.296134781999953, 48.411609794000086 ], [ -123.296390490999926, 48.411339188000099 ], [ -123.296606487999966, 48.411347707000068 ], [ -123.296742705999975, 48.41151010100009 ], [ -123.297019431999942, 48.411467867000098 ], [ -123.297014952999973, 48.411546254000037 ], [ -123.297513377999948, 48.411544965000125 ], [ -123.297932504999949, 48.411705186000034 ], [ -123.298244985999929, 48.412045606000035 ], [ -123.298435297999916, 48.412054104000028 ], [ -123.299229091999962, 48.411539998000087 ], [ -123.299917189999988, 48.411322102000021 ], [ -123.299895551999953, 48.411268883000041 ], [ -123.300206250999949, 48.41126807200007 ], [ -123.300204661999942, 48.410998181000153 ], [ -123.300249055999984, 48.410998064000104 ], [ -123.300306692000035, 48.411068596000071 ], [ -123.300363517, 48.411347696000071 ], [ -123.30068760599994, 48.41144599200009 ], [ -123.300997100999922, 48.41127359300004 ], [ -123.30094230899999, 48.411013009000079 ], [ -123.301303686, 48.410661204000071 ], [ -123.30149339699993, 48.410634209000072 ], [ -123.301941190999969, 48.410741005000027 ], [ -123.302844819, 48.410521704000082 ], [ -123.303152219999944, 48.41009009800009 ], [ -123.303147037999963, 48.410036649000084 ], [ -123.30327972299996, 48.410371599000058 ], [ -123.303425600999944, 48.41056340100004 ], [ -123.304244308999927, 48.410494084000049 ], [ -123.305089916999947, 48.410471396000027 ], [ -123.305093294999935, 48.410578888000039 ], [ -123.304854917999933, 48.410902898000117 ], [ -123.302766083999984, 48.411412399000014 ], [ -123.303151434999947, 48.412242581000051 ], [ -123.30324310599994, 48.412440090000075 ], [ -123.303959013999958, 48.413014808000042 ], [ -123.304222387999957, 48.413316413000082 ], [ -123.304288038999985, 48.413484033000053 ], [ -123.304304802999965, 48.413526794000056 ], [ -123.304291185999915, 48.413717698000013 ], [ -123.304438509999983, 48.413736772000114 ], [ -123.305053529999924, 48.413743102000112 ], [ -123.30574623699998, 48.413750240000077 ], [ -123.305904793999929, 48.413768924000046 ], [ -123.305990110999943, 48.413778998000076 ], [ -123.30623531399999, 48.413844844000081 ], [ -123.306664734999956, 48.413960206000091 ], [ -123.306824160999938, 48.41400303700005 ], [ -123.307110153999972, 48.41407987300002 ], [ -123.307293108999943, 48.414203256000064 ], [ -123.307366190999971, 48.414252575000077 ], [ -123.307649275999921, 48.414443500000047 ], [ -123.307986502999981, 48.414918353000047 ], [ -123.308020604999967, 48.415124844000061 ], [ -123.30798290599995, 48.416521789000051 ], [ -123.306760125999972, 48.416497968000037 ], [ -123.306022309999918, 48.416483590000048 ], [ -123.30481522099997, 48.416454700000074 ], [ -123.304151301999966, 48.416439456000028 ], [ -123.30373468699996, 48.416429903000086 ], [ -123.30369694599996, 48.418346902000053 ], [ -123.303691991999969, 48.418597803000054 ], [ -123.303220595999974, 48.419175586000094 ], [ -123.303207601999972, 48.419373430000064 ], [ -123.303190000999948, 48.419642001000092 ], [ -123.303191700999932, 48.419985649000068 ], [ -123.303192506999949, 48.420142609000024 ], [ -123.303195404999954, 48.420611600000051 ], [ -123.30169014199997, 48.420575537000047 ], [ -123.301404798999954, 48.4205687050001 ], [ -123.300880493999898, 48.420631090000029 ], [ -123.30015521199999, 48.420644994000114 ], [ -123.300157444999925, 48.420839294000082 ], [ -123.300158603999932, 48.420940011000077 ], [ -123.2996333899999, 48.420734494 ], [ -123.299264096999977, 48.420657501000086 ], [ -123.298869215999943, 48.42036599200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13158750", "BldgCostT": "9075000", "sL_LossRatio": "0.934272534064981", "sL_AssetLoss": "28137.4", "sL_BldgLoss": "26288", "sL_StrLoss": "20460", "sL_NStrLoss": "5828", "sL_ContLoss": "1849.4", "geom_point": "0101000020E6100000C32FAB668CD35EC0F309B0FAE9324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.303520807999959, 48.396917605000098 ], [ -123.303763006999972, 48.396844992000069 ], [ -123.303827912999964, 48.396574403000074 ], [ -123.304355585999957, 48.39648320200007 ], [ -123.304543901999978, 48.396356485000119 ], [ -123.303932012999937, 48.395603096000059 ], [ -123.303916008999948, 48.395225708000055 ], [ -123.304465593, 48.394576196000109 ], [ -123.30467958, 48.394449496000057 ], [ -123.304991092999956, 48.394485095000029 ], [ -123.30568351, 48.394861091000081 ], [ -123.306064096999975, 48.39526409100003 ], [ -123.306795789, 48.395748290000022 ], [ -123.306863880999956, 48.395927798000088 ], [ -123.307230317999981, 48.395990506000039 ], [ -123.307500707999978, 48.396187007000073 ], [ -123.307665927999921, 48.396410274000026 ], [ -123.30763557, 48.396943908000125 ], [ -123.307795752999979, 48.396943481000044 ], [ -123.307804382999905, 48.397041498000107 ], [ -123.307684920000014, 48.397671001000042 ], [ -123.307602419999924, 48.397753689000048 ], [ -123.307589495999963, 48.397753724000047 ], [ -123.307588717999963, 48.397767423000133 ], [ -123.307161998999945, 48.398195110000138 ], [ -123.307163714999959, 48.398472898000094 ], [ -123.30670479, 48.398636605000078 ], [ -123.306922908, 48.398951402000073 ], [ -123.306073502999979, 48.399231998000104 ], [ -123.30572628499999, 48.399800192000022 ], [ -123.305781615999976, 48.400169100000021 ], [ -123.306122277999961, 48.400446798000132 ], [ -123.306123618999933, 48.400688905000059 ], [ -123.306438400999951, 48.401291397000094 ], [ -123.306431308999947, 48.401365516000105 ], [ -123.304488869999943, 48.401316046000069 ], [ -123.304639419999916, 48.401224403000057 ], [ -123.304488475999932, 48.400594895000076 ], [ -123.304511280999989, 48.400199001000033 ], [ -123.304375807000014, 48.399929788000044 ], [ -123.303698903999972, 48.39987710000004 ], [ -123.303644896999955, 48.399724711000061 ], [ -123.303804893999967, 48.399354397000053 ], [ -123.30354588799996, 48.399058203000045 ], [ -123.303463687999923, 48.398734906000065 ], [ -123.303516185999982, 48.398591094000054 ], [ -123.304082402999967, 48.398310490000028 ], [ -123.303825008999951, 48.398095396000052 ], [ -123.30409101399999, 48.397599804000073 ], [ -123.303888895999975, 48.397447397000121 ], [ -123.303792401999942, 48.397232396000049 ], [ -123.303481812, 48.397169695000066 ], [ -123.303520807999959, 48.396917605000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127470689", "BldgCostT": "85015825", "sL_LossRatio": "0.884992481627266", "sL_AssetLoss": "90737.72", "sL_BldgLoss": "80302.2", "sL_StrLoss": "57801.2", "sL_NStrLoss": "22501", "sL_ContLoss": "10435.52", "geom_point": "0101000020E6100000BCDD57275FD35EC03BAB70911C364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.306307094000019, 48.424439015000097 ], [ -123.30569738, 48.424315093000061 ], [ -123.305358799999937, 48.424343607000061 ], [ -123.30524418899995, 48.424479740000031 ], [ -123.305150138999963, 48.424479989000098 ], [ -123.30515080099994, 48.424590663000053 ], [ -123.305130987999974, 48.424614197000103 ], [ -123.304861710999944, 48.424659786000113 ], [ -123.304775577999948, 48.424750877000101 ], [ -123.304746249999965, 48.424750954000103 ], [ -123.304746435999931, 48.424781700000054 ], [ -123.304538507999951, 48.425001599000055 ], [ -123.304412109999973, 48.425021735000065 ], [ -123.303827402999929, 48.425023280000104 ], [ -123.303809210999972, 48.425004392000091 ], [ -123.303484300999955, 48.424914684000093 ], [ -123.303846280999949, 48.424554399000051 ], [ -123.303912908999948, 48.42430228300006 ], [ -123.30311330399999, 48.423899306000102 ], [ -123.302694107999969, 48.423999005000091 ], [ -123.302681986, 48.424107197000055 ], [ -123.302143580999896, 48.424504596000119 ], [ -123.301643314999964, 48.424658406000148 ], [ -123.300916906999973, 48.425138298000078 ], [ -123.300693308999954, 48.425115894000044 ], [ -123.300692810999948, 48.425031514000047 ], [ -123.30052366399994, 48.425031956000019 ], [ -123.300286404999923, 48.424879776000132 ], [ -123.300284009999956, 48.424473218000045 ], [ -123.300581876, 48.424222116000095 ], [ -123.300688034999951, 48.424221838000022 ], [ -123.300687510999978, 48.424133064000088 ], [ -123.301407494999964, 48.4235260990001 ], [ -123.301796588999963, 48.423101704000096 ], [ -123.30181008299995, 48.422976395000099 ], [ -123.301552997999963, 48.422796903000098 ], [ -123.301133379999939, 48.422959299000098 ], [ -123.30093100199997, 48.422825386000056 ], [ -123.300806908999959, 48.422645985000038 ], [ -123.301021395999925, 48.422321197000024 ], [ -123.30084469800002, 48.42207059400009 ], [ -123.300588084999973, 48.421926693000088 ], [ -123.300235646999909, 48.422088076000108 ], [ -123.300012424999977, 48.422082383000046 ], [ -123.299258312999939, 48.421166195000119 ], [ -123.298728104999952, 48.420717601000064 ], [ -123.29840462699994, 48.420753204000064 ], [ -123.298229206999949, 48.420996707000029 ], [ -123.298081693999961, 48.421006711000118 ], [ -123.297928899999974, 48.420485413000051 ], [ -123.297767595, 48.420431294000068 ], [ -123.297550406999932, 48.420512495000089 ], [ -123.29748209499995, 48.420333014000029 ], [ -123.29753194199999, 48.420250727000088 ], [ -123.297711698999933, 48.420278342000103 ], [ -123.297825160999977, 48.420273297000122 ], [ -123.298549621999911, 48.420234137000101 ], [ -123.298751901999978, 48.420223212000145 ], [ -123.298869215999943, 48.42036599200005 ], [ -123.299264096999977, 48.420657501000086 ], [ -123.2996333899999, 48.420734494 ], [ -123.300158603999932, 48.420940011000077 ], [ -123.300157444999925, 48.420839294000082 ], [ -123.30015521199999, 48.420644994000114 ], [ -123.300880493999898, 48.420631090000029 ], [ -123.301404798999954, 48.4205687050001 ], [ -123.30169014199997, 48.420575537000047 ], [ -123.303195404999954, 48.420611600000051 ], [ -123.3031789, 48.420971884000082 ], [ -123.303259938999972, 48.421127762000076 ], [ -123.303294396999945, 48.42119399900011 ], [ -123.304180396999968, 48.421865005000065 ], [ -123.305045000999925, 48.422507492000086 ], [ -123.30647141299994, 48.423569305000051 ], [ -123.306010316999945, 48.423867779000069 ], [ -123.305602801999939, 48.424131597000056 ], [ -123.30597732699999, 48.424180932000056 ], [ -123.306027312999944, 48.424187493000041 ], [ -123.306399102999976, 48.424363786000107 ], [ -123.306762882999948, 48.424609291000124 ], [ -123.30707570599999, 48.42492208700002 ], [ -123.307282209, 48.425205108000078 ], [ -123.307438799999886, 48.425583409000097 ], [ -123.307479298999951, 48.425890097000021 ], [ -123.307504090999942, 48.426073962000046 ], [ -123.307521986999944, 48.426206892000046 ], [ -123.307604097999942, 48.426423608000029 ], [ -123.30768431499996, 48.426516565000036 ], [ -123.307341972999922, 48.426433466000049 ], [ -123.30718939099998, 48.426424170000089 ], [ -123.307188581999966, 48.426289818000015 ], [ -123.307049138999957, 48.42627366100006 ], [ -123.30711, 48.426104896000034 ], [ -123.307276395999935, 48.426047009000122 ], [ -123.307259078999934, 48.425696594000101 ], [ -123.307040803999968, 48.425104210000029 ], [ -123.306307094000019, 48.424439015000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185755500", "BldgCostT": "128340000", "sL_LossRatio": "0.959057019882425", "sL_AssetLoss": "176296.4", "sL_BldgLoss": "169078.3", "sL_StrLoss": "135797.4", "sL_NStrLoss": "33280.9", "sL_ContLoss": "7218.1", "geom_point": "0101000020E6100000E17B90AF0ED35EC06EC1BDF8C3384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.299642806999927, 48.453355144000049 ], [ -123.299548018999985, 48.453242784000061 ], [ -123.29954318299994, 48.453327438000052 ], [ -123.299272368999979, 48.453320534000035 ], [ -123.299271789999921, 48.453319208000025 ], [ -123.298931486999933, 48.452933205000079 ], [ -123.29842880299999, 48.452538706000084 ], [ -123.298062285999947, 48.452369192000056 ], [ -123.297289296999978, 48.452208292000073 ], [ -123.2968849, 48.452326507000109 ], [ -123.296859296999983, 48.452578591000091 ], [ -123.296684498999952, 48.452605585000114 ], [ -123.29657459699996, 48.452255314000091 ], [ -123.296316500999964, 48.452040187000144 ], [ -123.29619358099994, 48.452121396000074 ], [ -123.295949600999961, 48.451977596000049 ], [ -123.295544302999943, 48.452122804000105 ], [ -123.295325797, 48.451584507000049 ], [ -123.295337590999964, 48.451242700000066 ], [ -123.295483200999954, 48.45091791300014 ], [ -123.295982209999977, 48.450620303000065 ], [ -123.295804903999965, 48.450322586000027 ], [ -123.29545248399991, 48.450063395000058 ], [ -123.294299594, 48.449741503000084 ], [ -123.293813499999914, 48.44974300100008 ], [ -123.29316275599993, 48.44988132000001 ], [ -123.293149627999966, 48.449881353000102 ], [ -123.29314471, 48.449885156000072 ], [ -123.29286879299994, 48.449943802000057 ], [ -123.292692582999948, 48.450097595000031 ], [ -123.29270700499994, 48.450222889000088 ], [ -123.292829100999967, 48.450426210000032 ], [ -123.292827038999988, 48.450458861000115 ], [ -123.292981436999966, 48.450757761000048 ], [ -123.293052938999935, 48.451003562000054 ], [ -123.292966537999973, 48.451070661000117 ], [ -123.29274849899997, 48.451251084000042 ], [ -123.292697251, 48.451282701000039 ], [ -123.292592037999924, 48.451298761000025 ], [ -123.292426874999975, 48.451192833000093 ], [ -123.292388499999959, 48.451024794000091 ], [ -123.292368502999977, 48.451009102000079 ], [ -123.29232093899995, 48.450857861000074 ], [ -123.292100322999929, 48.45069370600006 ], [ -123.291967025999924, 48.450694044000059 ], [ -123.291885798999928, 48.450630301000039 ], [ -123.2918153899999, 48.450413795 ], [ -123.291989823999984, 48.450197304000042 ], [ -123.29178789, 48.450054893000065 ], [ -123.291609195999968, 48.449748708000072 ], [ -123.291851901999976, 48.449613403000058 ], [ -123.29179600599997, 48.449361299000032 ], [ -123.292121284999936, 48.449271596000052 ], [ -123.292226877999951, 48.449099194000084 ], [ -123.292133594999925, 48.449009497000098 ], [ -123.291508690999976, 48.4488671 ], [ -123.291320318999965, 48.448741701000088 ], [ -123.291223476999946, 48.448643495000098 ], [ -123.29126280499996, 48.448382811000059 ], [ -123.291424697999929, 48.448085200000072 ], [ -123.291572614999964, 48.448012601000073 ], [ -123.292113081999943, 48.448002603000113 ], [ -123.292425789999953, 48.448172090000043 ], [ -123.292708310999913, 48.448082299000063 ], [ -123.293207217999949, 48.447693502000071 ], [ -123.293352578999944, 48.447270501000098 ], [ -123.293243579999938, 48.447028399000033 ], [ -123.292944693000024, 48.44685748800007 ], [ -123.292754901999956, 48.44685889900007 ], [ -123.292708069999975, 48.446882505000119 ], [ -123.292706776, 48.446657126000083 ], [ -123.292669036999911, 48.446592019000029 ], [ -123.292662482999901, 48.446568686000077 ], [ -123.292705714999968, 48.446472460000038 ], [ -123.292703597999918, 48.44610396000008 ], [ -123.292486615999977, 48.446104511000087 ], [ -123.29229684499991, 48.445916814000064 ], [ -123.292296375999939, 48.445835100000103 ], [ -123.292214437999945, 48.445835309000138 ], [ -123.29216801299998, 48.445789389000083 ], [ -123.291828912999947, 48.445745207000066 ], [ -123.291754966999918, 48.445836475000128 ], [ -123.291427423999934, 48.445837305000104 ], [ -123.2915181799999, 48.445503092000067 ], [ -123.291910205999983, 48.445420506000104 ], [ -123.292070096999979, 48.445097197000038 ], [ -123.291770498999938, 48.444773896000058 ], [ -123.291622396999983, 48.444773911000077 ], [ -123.291284516999951, 48.445027396000079 ], [ -123.291161909999957, 48.444819500000079 ], [ -123.291073309999945, 48.44477938500011 ], [ -123.291071917999915, 48.444535716000132 ], [ -123.291106908999964, 48.444514695000109 ], [ -123.291268805999948, 48.444648611000041 ], [ -123.29143141899999, 48.444612995000071 ], [ -123.291390378999949, 48.444379396000024 ], [ -123.291617905999928, 48.444152991000074 ], [ -123.291495189999949, 48.444073205000066 ], [ -123.29125262499997, 48.444073203000066 ], [ -123.291236787999978, 48.443829699000062 ], [ -123.291061696999975, 48.443641690000092 ], [ -123.290695295999967, 48.443607497000045 ], [ -123.290694814999981, 48.443436592000047 ], [ -123.291086189999987, 48.443479307000096 ], [ -123.291247006999924, 48.443264198000044 ], [ -123.29065779799997, 48.443054130000043 ], [ -123.290655208999979, 48.44260051600007 ], [ -123.290867929999976, 48.44259997800004 ], [ -123.290918905999945, 48.442678908000076 ], [ -123.29144781399998, 48.442812807000081 ], [ -123.291638308999921, 48.442938101000017 ], [ -123.291812504999953, 48.442875387000136 ], [ -123.291894701, 48.44277569400014 ], [ -123.291702421999943, 48.4423357000001 ], [ -123.291983790999893, 48.4420650980001 ], [ -123.29192859699999, 48.441822886000082 ], [ -123.291948036999884, 48.441787558000051 ], [ -123.29243875399996, 48.441786312000076 ], [ -123.292642436999941, 48.441421661000035 ], [ -123.29267657099993, 48.441400058000063 ], [ -123.292676091999923, 48.441316781000069 ], [ -123.293263992999982, 48.441351503000057 ], [ -123.293465721999979, 48.441125102000093 ], [ -123.292875086, 48.440705622000124 ], [ -123.29307821499998, 48.440705105000127 ], [ -123.293076954999961, 48.440486205000127 ], [ -123.293059897999925, 48.440435256000043 ], [ -123.292694807999951, 48.440436185000102 ], [ -123.292670632999915, 48.440366483000091 ], [ -123.29266802299999, 48.439912003000046 ], [ -123.292730191999951, 48.439921613000067 ], [ -123.29283788399999, 48.439858994000048 ], [ -123.292686794999923, 48.439633912000062 ], [ -123.292917101999976, 48.439534192000018 ], [ -123.292738986999964, 48.439373309000104 ], [ -123.292819803999961, 48.439265109000118 ], [ -123.292765304999961, 48.439156807000074 ], [ -123.292256840999983, 48.438944312000046 ], [ -123.292256116, 48.438817929000081 ], [ -123.292232797999986, 48.438817988000082 ], [ -123.292451906999929, 48.438510208000082 ], [ -123.291848138999924, 48.438406696000108 ], [ -123.291845721999934, 48.437984665000116 ], [ -123.291902109, 48.437940915000063 ], [ -123.292095307999958, 48.437790983000056 ], [ -123.292946280999985, 48.437789593000026 ], [ -123.293192291999915, 48.437959101000104 ], [ -123.293676809999951, 48.437832296000131 ], [ -123.294134789999987, 48.437597297000053 ], [ -123.294675105999957, 48.437470607000058 ], [ -123.294917981999959, 48.437298202000072 ], [ -123.295279996999952, 48.436821095000035 ], [ -123.295896768, 48.437106302000089 ], [ -123.295897249999925, 48.437189251000063 ], [ -123.296075164999962, 48.437188794000065 ], [ -123.296228705999951, 48.437259791000031 ], [ -123.296303527999967, 48.437304349000073 ], [ -123.29630442200002, 48.437458100000043 ], [ -123.296560600999953, 48.437457439000042 ], [ -123.29711757299999, 48.437789116000076 ], [ -123.297118779999934, 48.437995790000109 ], [ -123.29746314799999, 48.437994901000131 ], [ -123.297776014999954, 48.438181207000063 ], [ -123.298411012999964, 48.438152792000047 ], [ -123.299260610999937, 48.437872189000068 ], [ -123.300015702999985, 48.437383691000015 ], [ -123.301200614999942, 48.436400999000078 ], [ -123.301982219999942, 48.435575952000072 ], [ -123.302025099999952, 48.435592353000075 ], [ -123.302393490999947, 48.435735992000055 ], [ -123.303502606999928, 48.436098364000102 ], [ -123.303731694999939, 48.436173191000087 ], [ -123.30323354899997, 48.436841553000086 ], [ -123.3024705699999, 48.437865124000076 ], [ -123.302435383999963, 48.437912307000012 ], [ -123.301982608999978, 48.438444607000058 ], [ -123.30170431099999, 48.438662007000083 ], [ -123.301397097999981, 48.438841808000099 ], [ -123.301083507999948, 48.438967309000127 ], [ -123.30187651199995, 48.439947893000038 ], [ -123.302127101999986, 48.440167999000067 ], [ -123.302399397999963, 48.440317509000096 ], [ -123.303256708999982, 48.440596290000059 ], [ -123.304378301999975, 48.440999082000111 ], [ -123.304568466999967, 48.441059972000097 ], [ -123.304738634999978, 48.441114433000031 ], [ -123.304990690999901, 48.441195099000041 ], [ -123.305257500999971, 48.441250582000066 ], [ -123.305645993999946, 48.441421012000099 ], [ -123.307243382999957, 48.442838698000045 ], [ -123.30774660899999, 48.443285294000063 ], [ -123.306731577999926, 48.443806892000104 ], [ -123.30511749199999, 48.444607204000107 ], [ -123.304792693999957, 48.444810905000033 ], [ -123.304713697999929, 48.445011812000104 ], [ -123.30288858599998, 48.444683100000098 ], [ -123.300767795999988, 48.444262004000066 ], [ -123.300139902, 48.444146789000044 ], [ -123.299362616999957, 48.44409540000008 ], [ -123.298584298999941, 48.444134186000035 ], [ -123.298285935999914, 48.444184867000075 ], [ -123.297166690999958, 48.444374905000082 ], [ -123.296686983999948, 48.444502398000047 ], [ -123.295976697999933, 48.444765589000077 ], [ -123.295566557999905, 48.445136320000131 ], [ -123.295485697999979, 48.445209387000055 ], [ -123.29582518700002, 48.445763710000094 ], [ -123.29609399899995, 48.446444210000031 ], [ -123.296293396999957, 48.44777320300004 ], [ -123.29633709, 48.448567011000129 ], [ -123.296238912999954, 48.449079500000025 ], [ -123.296036307999969, 48.44962440400009 ], [ -123.295860901999944, 48.449905792000045 ], [ -123.296533872999973, 48.450234683000048 ], [ -123.298027791999942, 48.450964803000041 ], [ -123.299411871999936, 48.451709328000071 ], [ -123.299435775999925, 48.451722193000073 ], [ -123.299872785999966, 48.452012897000053 ], [ -123.300148460999935, 48.452320187000026 ], [ -123.300237119999977, 48.452418999000081 ], [ -123.300297626999964, 48.452525164000086 ], [ -123.300568389999967, 48.453000101000057 ], [ -123.30076000399994, 48.453546015000029 ], [ -123.3007537, 48.454555886000023 ], [ -123.300497801999967, 48.456647890000035 ], [ -123.300292902, 48.456595799000056 ], [ -123.299757388999979, 48.456325113000155 ], [ -123.299527703999956, 48.45631760800007 ], [ -123.29899801199997, 48.4560547970001 ], [ -123.298707334999946, 48.455911833000059 ], [ -123.298838501999953, 48.455794400000045 ], [ -123.298975530999954, 48.455534154000105 ], [ -123.299202706999964, 48.455533564000049 ], [ -123.29924946199999, 48.455464026000108 ], [ -123.299248283999958, 48.455263551000016 ], [ -123.299384493999952, 48.455263196000047 ], [ -123.299634836999985, 48.454890861000102 ], [ -123.299651576999935, 48.454845782000056 ], [ -123.299642806999927, 48.453355144000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207929866", "BldgCostT": "136387894", "sL_LossRatio": "0.849514043764865", "sL_AssetLoss": "486052", "sL_BldgLoss": "412908", "sL_StrLoss": "241300", "sL_NStrLoss": "171608", "sL_ContLoss": "73144", "geom_point": "0101000020E610000042A2E0947FD35EC04CA675E128384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.30323354899997, 48.436841553000086 ], [ -123.303731694999939, 48.436173191000087 ], [ -123.304892197999976, 48.436554493000045 ], [ -123.306016594999932, 48.436930304000072 ], [ -123.307152112999944, 48.43732439900004 ], [ -123.308276201999945, 48.437715045000097 ], [ -123.308314077999938, 48.437728198000116 ], [ -123.308239821999905, 48.437823703000099 ], [ -123.308017728999985, 48.438111873000025 ], [ -123.307866032999954, 48.438308743000071 ], [ -123.307533, 48.438740897000116 ], [ -123.307200537, 48.439171330000171 ], [ -123.306918094999958, 48.439537021000028 ], [ -123.306862805999955, 48.439607696000081 ], [ -123.306527678999927, 48.440054367000073 ], [ -123.306205508999966, 48.440483806000074 ], [ -123.30586849499997, 48.44093729400003 ], [ -123.305837194999981, 48.440979388000102 ], [ -123.305592979999957, 48.441167107000069 ], [ -123.305257500999971, 48.441250582000066 ], [ -123.304990690999901, 48.441195099000041 ], [ -123.304738634999978, 48.441114433000031 ], [ -123.304568466999967, 48.441059972000097 ], [ -123.304378301999975, 48.440999082000111 ], [ -123.303256708999982, 48.440596290000059 ], [ -123.302399397999963, 48.440317509000096 ], [ -123.302127101999986, 48.440167999000067 ], [ -123.30187651199995, 48.439947893000038 ], [ -123.301083507999948, 48.438967309000127 ], [ -123.301397097999981, 48.438841808000099 ], [ -123.30170431099999, 48.438662007000083 ], [ -123.301982608999978, 48.438444607000058 ], [ -123.302435383999963, 48.437912307000012 ], [ -123.3024705699999, 48.437865124000076 ], [ -123.30323354899997, 48.436841553000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147056563", "BldgCostT": "93599148", "sL_LossRatio": "0.824364523912495", "sL_AssetLoss": "325611.78", "sL_BldgLoss": "268422.8", "sL_StrLoss": "189369", "sL_NStrLoss": "79053.8", "sL_ContLoss": "57188.98", "geom_point": "0101000020E6100000423292DA97D35EC0A116205DAE374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.304798399999967, 48.431593439000082 ], [ -123.304779279999963, 48.431361496000079 ], [ -123.305123581999979, 48.431476706000069 ], [ -123.30573139399999, 48.43165630700004 ], [ -123.306489745999968, 48.431880642000081 ], [ -123.306855397999982, 48.431988805000103 ], [ -123.306228306999969, 48.432881884000103 ], [ -123.305592099999956, 48.433792812000057 ], [ -123.307968500999905, 48.434529606000098 ], [ -123.309031601999891, 48.434820001000105 ], [ -123.309656451999956, 48.434990114000115 ], [ -123.31025562799999, 48.43515321000006 ], [ -123.308684796999955, 48.437262398000072 ], [ -123.308314077999938, 48.437728198000116 ], [ -123.308276201999945, 48.437715045000097 ], [ -123.307152112999944, 48.43732439900004 ], [ -123.306016594999932, 48.436930304000072 ], [ -123.304892197999976, 48.436554493000045 ], [ -123.303731694999939, 48.436173191000087 ], [ -123.303502606999928, 48.436098364000102 ], [ -123.302393490999947, 48.435735992000055 ], [ -123.30328180099994, 48.434477105000042 ], [ -123.303344204999931, 48.434329884000121 ], [ -123.304255505999905, 48.43295483300011 ], [ -123.304258561999944, 48.432949691000054 ], [ -123.304645447999945, 48.432297707000075 ], [ -123.304744231999962, 48.431908190000037 ], [ -123.304798399999967, 48.431593439000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133651334", "BldgCostT": "88753334", "sL_LossRatio": "0.888467630356931", "sL_AssetLoss": "407350.8", "sL_BldgLoss": "361918", "sL_StrLoss": "242036", "sL_NStrLoss": "119882", "sL_ContLoss": "45432.8", "geom_point": "0101000020E61000002BFB534FCBD35EC05FA20FD05C384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307866032999954, 48.438308743000071 ], [ -123.308017728999985, 48.438111873000025 ], [ -123.308239821999905, 48.437823703000099 ], [ -123.308314077999938, 48.437728198000116 ], [ -123.30865680099997, 48.437847802000064 ], [ -123.309452388999944, 48.438122417000081 ], [ -123.309887103999984, 48.43816770200003 ], [ -123.309944715999904, 48.438167660000047 ], [ -123.311080440999973, 48.438167057000086 ], [ -123.312135073999968, 48.438166460000076 ], [ -123.312243227999929, 48.438166404000079 ], [ -123.3127726929999, 48.438166101000029 ], [ -123.312679698999915, 48.439042994000026 ], [ -123.3125891, 48.439900212000076 ], [ -123.312496803999935, 48.440763605000065 ], [ -123.312480751999942, 48.440920637000083 ], [ -123.312025016999939, 48.441157390000086 ], [ -123.311431320999972, 48.441448629000057 ], [ -123.310890603999923, 48.441713900000103 ], [ -123.310372654999981, 48.441983991000029 ], [ -123.309850101999984, 48.442256514000071 ], [ -123.30932972699992, 48.442518436000029 ], [ -123.308823198999917, 48.442773408000058 ], [ -123.30826197, 48.443040242000059 ], [ -123.30774660899999, 48.443285294000063 ], [ -123.307243382999957, 48.442838698000045 ], [ -123.305645993999946, 48.441421012000099 ], [ -123.305257500999971, 48.441250582000066 ], [ -123.305592979999957, 48.441167107000069 ], [ -123.305837194999981, 48.440979388000102 ], [ -123.30586849499997, 48.44093729400003 ], [ -123.306205508999966, 48.440483806000074 ], [ -123.306527678999927, 48.440054367000073 ], [ -123.306862805999955, 48.439607696000081 ], [ -123.306918094999958, 48.439537021000028 ], [ -123.307200537, 48.439171330000171 ], [ -123.307533, 48.438740897000116 ], [ -123.307866032999954, 48.438308743000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142239083", "BldgCostT": "92258333", "sL_LossRatio": "0.875153310567117", "sL_AssetLoss": "398455.9", "sL_BldgLoss": "348710", "sL_StrLoss": "228956", "sL_NStrLoss": "119754", "sL_ContLoss": "49745.9", "geom_point": "0101000020E61000009F01898149D45EC06F0755304B384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.312402000999938, 48.441648606000058 ], [ -123.31242080699991, 48.44150750700009 ], [ -123.312025016999939, 48.441157390000086 ], [ -123.312480751999942, 48.440920637000083 ], [ -123.312496803999935, 48.440763605000065 ], [ -123.3125891, 48.439900212000076 ], [ -123.312679698999915, 48.439042994000026 ], [ -123.3127726929999, 48.438166101000029 ], [ -123.31428331799998, 48.438184599000039 ], [ -123.314803001999934, 48.438134610000084 ], [ -123.315687944999979, 48.437852998000018 ], [ -123.315729380999983, 48.437839795000123 ], [ -123.316007605999971, 48.437813502000097 ], [ -123.315650416999944, 48.438398696 ], [ -123.318778302999959, 48.4384807120001 ], [ -123.321957095999892, 48.438570114000051 ], [ -123.322117899999938, 48.43854259300015 ], [ -123.322116279999989, 48.4386543520001 ], [ -123.322104992, 48.439437812000079 ], [ -123.322030581999954, 48.440274591000033 ], [ -123.321988317999939, 48.441116792000123 ], [ -123.318860602999948, 48.441051115000043 ], [ -123.317481918999974, 48.441006733000059 ], [ -123.315186713999964, 48.440932807000102 ], [ -123.314995307999979, 48.441259805000129 ], [ -123.314567411999974, 48.441688197000069 ], [ -123.314038761999882, 48.441659686000015 ], [ -123.313934992000014, 48.4416540900001 ], [ -123.312402000999938, 48.441648606000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133186251", "BldgCostT": "87905001", "sL_LossRatio": "0.879215920601724", "sL_AssetLoss": "420059.5", "sL_BldgLoss": "369323", "sL_StrLoss": "245361", "sL_NStrLoss": "123962", "sL_ContLoss": "50736.5", "geom_point": "0101000020E61000008455E5102BD45EC0F1EB6E3BC0384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.310842292999965, 48.445695104000016 ], [ -123.312228583999953, 48.443035693000127 ], [ -123.312262789999963, 48.442910305000055 ], [ -123.312285562999975, 48.442703913000074 ], [ -123.31237996599998, 48.441848558000125 ], [ -123.312402000999938, 48.441648606000058 ], [ -123.313934992000014, 48.4416540900001 ], [ -123.314038761999882, 48.441659686000015 ], [ -123.314567411999974, 48.441688197000069 ], [ -123.314995307999979, 48.441259805000129 ], [ -123.315186713999964, 48.440932807000102 ], [ -123.317481918999974, 48.441006733000059 ], [ -123.318860602999948, 48.441051115000043 ], [ -123.318884720999975, 48.441887802000068 ], [ -123.319050707999949, 48.443125588000072 ], [ -123.318975329999901, 48.443552100000026 ], [ -123.318779899999953, 48.44409280400005 ], [ -123.317522283999907, 48.443775909000081 ], [ -123.317184600999923, 48.44430489000009 ], [ -123.316574889999941, 48.444844002000167 ], [ -123.316285502999975, 48.445043186000142 ], [ -123.315835599, 48.445264494000057 ], [ -123.315614408999963, 48.445403215000155 ], [ -123.315537604999946, 48.44561498400008 ], [ -123.315534585999941, 48.445859300000087 ], [ -123.315292474999964, 48.445850804 ], [ -123.314684239999963, 48.445829502000016 ], [ -123.313439326999926, 48.445785873 ], [ -123.312647514, 48.445758105000017 ], [ -123.311369662999965, 48.445713508000082 ], [ -123.310842292999965, 48.445695104000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127599638", "BldgCostT": "83410599", "sL_LossRatio": "0.791051816997453", "sL_AssetLoss": "498157", "sL_BldgLoss": "394068", "sL_StrLoss": "241796", "sL_NStrLoss": "152272", "sL_ContLoss": "104089", "geom_point": "0101000020E6100000AAEF575C77D45EC0AF795DD8FD384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.318860602999948, 48.441051115000043 ], [ -123.321988317999939, 48.441116792000123 ], [ -123.321957726000022, 48.441967303000133 ], [ -123.321910495999973, 48.442800308000066 ], [ -123.321877120999915, 48.443627297000091 ], [ -123.321853509999968, 48.444449211000062 ], [ -123.32184701199999, 48.444574025000072 ], [ -123.321808398999963, 48.445316502000033 ], [ -123.321793520999975, 48.446103395000073 ], [ -123.32177795699999, 48.446497105000084 ], [ -123.321721259, 48.446854598000115 ], [ -123.321532522, 48.447170298000103 ], [ -123.321527418999963, 48.447178856000114 ], [ -123.321400042999954, 48.447292768000032 ], [ -123.321082261999919, 48.447577014000096 ], [ -123.321069532999914, 48.447588425000127 ], [ -123.320723188999949, 48.447842136000133 ], [ -123.320388666999975, 48.448087206000046 ], [ -123.319661028, 48.448620290000065 ], [ -123.318792046999945, 48.449256837000064 ], [ -123.318745618999927, 48.449290850000061 ], [ -123.318197550999969, 48.449552030000042 ], [ -123.317537996999974, 48.449756313000101 ], [ -123.317341388, 48.449865799000037 ], [ -123.317019885999954, 48.44958530100007 ], [ -123.31719526099999, 48.449194665000022 ], [ -123.317307282999934, 48.448945094000067 ], [ -123.317398414999957, 48.448575906000038 ], [ -123.31758872599994, 48.447591985000059 ], [ -123.317641086999956, 48.447321317000053 ], [ -123.317693393999917, 48.446826594000129 ], [ -123.317486595999966, 48.446260387000073 ], [ -123.317456910999951, 48.445927807000039 ], [ -123.31746352, 48.445693500000132 ], [ -123.317619017, 48.445449511000099 ], [ -123.318404225000037, 48.444696503000046 ], [ -123.318779899999953, 48.44409280400005 ], [ -123.318975329999901, 48.443552100000026 ], [ -123.319050707999949, 48.443125588000072 ], [ -123.318884720999975, 48.441887802000068 ], [ -123.318860602999948, 48.441051115000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223659442", "BldgCostT": "146414346", "sL_LossRatio": "0.838786936022641", "sL_AssetLoss": "567511.7", "sL_BldgLoss": "476021.4", "sL_StrLoss": "277158", "sL_NStrLoss": "198863.4", "sL_ContLoss": "91490.3", "geom_point": "0101000020E61000009DA59529C3D45EC0FC936BE9D5384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.324678394999921, 48.442020703000019 ], [ -123.327410712999935, 48.442085200000044 ], [ -123.327228499999961, 48.442921096000134 ], [ -123.327021218999931, 48.443770794000052 ], [ -123.32684762299999, 48.444571703000072 ], [ -123.326675396000013, 48.445421406000072 ], [ -123.32652888599992, 48.446149998000124 ], [ -123.326071743999975, 48.446147840000094 ], [ -123.32515213299996, 48.4461435360001 ], [ -123.324423692, 48.446140107000076 ], [ -123.322353394999979, 48.446111215000045 ], [ -123.321793520999975, 48.446103395000073 ], [ -123.321808398999963, 48.445316502000033 ], [ -123.32184701199999, 48.444574025000072 ], [ -123.321853509999968, 48.444449211000062 ], [ -123.321877120999915, 48.443627297000091 ], [ -123.321910495999973, 48.442800308000066 ], [ -123.321957726000022, 48.441967303000133 ], [ -123.324678394999921, 48.442020703000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268038250", "BldgCostT": "173500000", "sL_LossRatio": "0.846078609664959", "sL_AssetLoss": "575723.1", "sL_BldgLoss": "487107", "sL_StrLoss": "300289", "sL_NStrLoss": "186818", "sL_ContLoss": "88616.1", "geom_point": "0101000020E610000041220248CCD45EC0723867024D384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.32216578799995, 48.437696109000079 ], [ -123.324912500999957, 48.437741195000079 ], [ -123.328309019999963, 48.437845012000032 ], [ -123.328117689999914, 48.438770809000076 ], [ -123.327953903000022, 48.439567500000123 ], [ -123.327777495999953, 48.440419812000123 ], [ -123.327588707999936, 48.441276303000102 ], [ -123.327410712999935, 48.442085200000044 ], [ -123.324678394999921, 48.442020703000019 ], [ -123.321957726000022, 48.441967303000133 ], [ -123.321988317999939, 48.441116792000123 ], [ -123.322030581999954, 48.440274591000033 ], [ -123.322104992, 48.439437812000079 ], [ -123.322116279999989, 48.4386543520001 ], [ -123.322117899999938, 48.43854259300015 ], [ -123.32216578799995, 48.437696109000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108084229", "BldgCostT": "70084858", "sL_LossRatio": "0.825894526167989", "sL_AssetLoss": "365643.3", "sL_BldgLoss": "301982.8", "sL_StrLoss": "184648.8", "sL_NStrLoss": "117334", "sL_ContLoss": "63660.5", "geom_point": "0101000020E61000003842FD361DD55EC0C1766A0DA9384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.327953903000022, 48.439567500000123 ], [ -123.328117689999914, 48.438770809000076 ], [ -123.329069913999916, 48.43881578400002 ], [ -123.330990749999941, 48.438906525000057 ], [ -123.332542200999953, 48.438979798000098 ], [ -123.333008688999925, 48.438945219000075 ], [ -123.332597595999943, 48.439983997000084 ], [ -123.332554676999948, 48.441987657000119 ], [ -123.332517025999934, 48.443683924000084 ], [ -123.332465224999964, 48.445989442 ], [ -123.331876775999945, 48.446107203000096 ], [ -123.331398090999969, 48.446169984000022 ], [ -123.330737020999905, 48.446164100000026 ], [ -123.329511910999955, 48.44615399600017 ], [ -123.328371301999979, 48.446152298000051 ], [ -123.327163317999961, 48.446150702000068 ], [ -123.32652888599992, 48.446149998000124 ], [ -123.326675396000013, 48.445421406000072 ], [ -123.32684762299999, 48.444571703000072 ], [ -123.327021218999931, 48.443770794000052 ], [ -123.327228499999961, 48.442921096000134 ], [ -123.327410712999935, 48.442085200000044 ], [ -123.327588707999936, 48.441276303000102 ], [ -123.327777495999953, 48.440419812000123 ], [ -123.327953903000022, 48.439567500000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145986584", "BldgCostT": "97468334", "sL_LossRatio": "0.879796579103355", "sL_AssetLoss": "83255.95", "sL_BldgLoss": "73248.3", "sL_StrLoss": "58783.1", "sL_NStrLoss": "14465.2", "sL_ContLoss": "10007.65", "geom_point": "0101000020E6100000569E160F31D55EC07C31184C11384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.332597595999943, 48.439983997000084 ], [ -123.333008688999925, 48.438945219000075 ], [ -123.332542200999953, 48.438979798000098 ], [ -123.330990749999941, 48.438906525000057 ], [ -123.329069913999916, 48.43881578400002 ], [ -123.328117689999914, 48.438770809000076 ], [ -123.328309019999963, 48.437845012000032 ], [ -123.328498010999937, 48.436864009000047 ], [ -123.332553599999969, 48.436934693000069 ], [ -123.333634918999905, 48.437089549000142 ], [ -123.333609572999961, 48.438025495000076 ], [ -123.333532378999948, 48.439992203000017 ], [ -123.333199116999978, 48.439989275000052 ], [ -123.332597595999943, 48.439983997000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88964614", "BldgCostT": "57446936", "sL_LossRatio": "0.822845837603704", "sL_AssetLoss": "336329.1", "sL_BldgLoss": "276747", "sL_StrLoss": "178790", "sL_NStrLoss": "97957", "sL_ContLoss": "59582.1", "geom_point": "0101000020E61000008D9FAE6A60D55EC010AA5825A6384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.334883599, 48.440012706000047 ], [ -123.335847795999911, 48.440027898000032 ], [ -123.335832408, 48.440469390000089 ], [ -123.335817375999966, 48.441237395 ], [ -123.335793193999933, 48.442003300000074 ], [ -123.335745812999932, 48.443753502000028 ], [ -123.334752009999946, 48.443737487000107 ], [ -123.334707705999961, 48.445096286000073 ], [ -123.334658068999929, 48.445116986000087 ], [ -123.333295022999934, 48.445684789000097 ], [ -123.332634097000025, 48.445927437000073 ], [ -123.332465224999964, 48.445989442 ], [ -123.332517025999934, 48.443683924000084 ], [ -123.332554676999948, 48.441987657000119 ], [ -123.332597595999943, 48.439983997000084 ], [ -123.333199116999978, 48.439989275000052 ], [ -123.333532378999948, 48.439992203000017 ], [ -123.333794507999954, 48.439996165000132 ], [ -123.334883599, 48.440012706000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156842735", "BldgCostT": "100673083", "sL_LossRatio": "0.906885848969011", "sL_AssetLoss": "198430.376", "sL_BldgLoss": "179953.7", "sL_StrLoss": "142620.7", "sL_NStrLoss": "37333", "sL_ContLoss": "18476.676", "geom_point": "0101000020E6100000DF815BF37AD55EC0F7240BF3F9374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.333634918999905, 48.437089549000142 ], [ -123.333662990000022, 48.436050004000052 ], [ -123.334307711999926, 48.436104094000022 ], [ -123.335019980999945, 48.436108501000071 ], [ -123.335030484999891, 48.434849439000139 ], [ -123.335037510999925, 48.434003204000142 ], [ -123.335594508, 48.434033508000077 ], [ -123.33573006599994, 48.434040945000071 ], [ -123.336260395999929, 48.434070099000117 ], [ -123.33693478699999, 48.434100490000048 ], [ -123.337408188999973, 48.434128695000062 ], [ -123.337347382999951, 48.436119301000105 ], [ -123.337280388999929, 48.438077301000099 ], [ -123.337209112999957, 48.439735783000046 ], [ -123.337202271999928, 48.439894293000044 ], [ -123.337232998999951, 48.440044706000059 ], [ -123.336362923999943, 48.44003416400006 ], [ -123.335847795999911, 48.440027898000032 ], [ -123.334883599, 48.440012706000047 ], [ -123.333794507999954, 48.439996165000132 ], [ -123.333532378999948, 48.439992203000017 ], [ -123.333609572999961, 48.438025495000076 ], [ -123.333634918999905, 48.437089549000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274622689", "BldgCostT": "180660825", "sL_LossRatio": "0.801674101334931", "sL_AssetLoss": "501546.7", "sL_BldgLoss": "402077", "sL_StrLoss": "242178", "sL_NStrLoss": "159899", "sL_ContLoss": "99469.7", "geom_point": "0101000020E6100000D6EBDCD5A7D55EC09766A861AA384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.338856519999965, 48.444531490000088 ], [ -123.338235277999928, 48.443696995000046 ], [ -123.336623913999929, 48.444340091000079 ], [ -123.335733109000017, 48.444698206000162 ], [ -123.335745812999932, 48.443753502000028 ], [ -123.335793193999933, 48.442003300000074 ], [ -123.335817375999966, 48.441237395 ], [ -123.335832408, 48.440469390000089 ], [ -123.335847795999911, 48.440027898000032 ], [ -123.336362923999943, 48.44003416400006 ], [ -123.337232998999951, 48.440044706000059 ], [ -123.33744450899998, 48.440047138000033 ], [ -123.33842668099993, 48.44005850000007 ], [ -123.338997131000013, 48.440066507000097 ], [ -123.338988746999931, 48.440406887000059 ], [ -123.338974199999967, 48.441001087000132 ], [ -123.338962985999942, 48.441512204000091 ], [ -123.338950103999977, 48.442028610000072 ], [ -123.339255503999979, 48.442359091000078 ], [ -123.339882207999963, 48.443046713000079 ], [ -123.341246503000022, 48.4425010920001 ], [ -123.342003309999882, 48.443444512000021 ], [ -123.342077877999913, 48.443533804000062 ], [ -123.342582720999928, 48.444182303000098 ], [ -123.339442079999955, 48.445278500000107 ], [ -123.338856519999965, 48.444531490000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77416417", "BldgCostT": "48291667", "sL_LossRatio": "0.93357983086224", "sL_AssetLoss": "104871.91", "sL_BldgLoss": "97906.3", "sL_StrLoss": "74208.3", "sL_NStrLoss": "23698", "sL_ContLoss": "6965.61", "geom_point": "0101000020E61000002998EFE8D8D55EC0EFCD7F7A79384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342154187999967, 48.440087210000122 ], [ -123.343472998, 48.440108599000062 ], [ -123.344226193999944, 48.44013200200007 ], [ -123.344762389999985, 48.440148108000109 ], [ -123.344696302999978, 48.44029259400002 ], [ -123.344445491999963, 48.440624401000072 ], [ -123.344259614999956, 48.441291600000078 ], [ -123.343343005999955, 48.441669144000073 ], [ -123.342788099999908, 48.441897695000087 ], [ -123.342555618999967, 48.441988682000066 ], [ -123.341246503000022, 48.4425010920001 ], [ -123.339882207999963, 48.443046713000079 ], [ -123.339255503999979, 48.442359091000078 ], [ -123.338950103999977, 48.442028610000072 ], [ -123.338962985999942, 48.441512204000091 ], [ -123.338974199999967, 48.441001087000132 ], [ -123.338988746999931, 48.440406887000059 ], [ -123.338997131000013, 48.440066507000097 ], [ -123.339665004, 48.440071607000078 ], [ -123.340841290999919, 48.440081304000088 ], [ -123.342154187999967, 48.440087210000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146984168", "BldgCostT": "97026668", "sL_LossRatio": "0.813847119947763", "sL_AssetLoss": "320081", "sL_BldgLoss": "260497", "sL_StrLoss": "149016", "sL_NStrLoss": "111481", "sL_ContLoss": "59584", "geom_point": "0101000020E6100000A1B8BACE8CD55EC0F3ADEEDC24394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.334707705999961, 48.445096286000073 ], [ -123.334752009999946, 48.443737487000107 ], [ -123.335745812999932, 48.443753502000028 ], [ -123.335733109000017, 48.444698206000162 ], [ -123.336623913999929, 48.444340091000079 ], [ -123.338235277999928, 48.443696995000046 ], [ -123.338856519999965, 48.444531490000088 ], [ -123.339442079999955, 48.445278500000107 ], [ -123.339761587999973, 48.445683140000057 ], [ -123.340059493999902, 48.446060490000107 ], [ -123.340377425000014, 48.446463279000071 ], [ -123.340668101999967, 48.446831487000082 ], [ -123.340988900999946, 48.447235961000047 ], [ -123.341292109999955, 48.447618200000065 ], [ -123.341535796999906, 48.447964301000077 ], [ -123.341527893999967, 48.448273411000052 ], [ -123.340311913999983, 48.44824470700005 ], [ -123.339549298999913, 48.448233371000107 ], [ -123.339135066999944, 48.448227196000026 ], [ -123.338558584999987, 48.448218637000089 ], [ -123.338445424999961, 48.448216956000067 ], [ -123.337989540999985, 48.448210172000117 ], [ -123.33678890299997, 48.448192288000044 ], [ -123.335588897999941, 48.448166589000095 ], [ -123.33441349899995, 48.448159601000093 ], [ -123.33427951699997, 48.448158484000068 ], [ -123.333189723999965, 48.448149483000094 ], [ -123.332475281999962, 48.448143817000059 ], [ -123.332465224999964, 48.445989442 ], [ -123.332634097000025, 48.445927437000073 ], [ -123.333295022999934, 48.445684789000097 ], [ -123.334658068999929, 48.445116986000087 ], [ -123.334707705999961, 48.445096286000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112558228", "BldgCostT": "69401197", "sL_LossRatio": "0.823592458681546", "sL_AssetLoss": "334578.1", "sL_BldgLoss": "275556", "sL_StrLoss": "174035", "sL_NStrLoss": "101521", "sL_ContLoss": "59022.1", "geom_point": "0101000020E610000082D50E35C0D55EC09DEFA67C84394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.340413362, 48.450661583000112 ], [ -123.340282308999974, 48.450617498000092 ], [ -123.337905792999933, 48.450580296000062 ], [ -123.336727314999948, 48.45057870000003 ], [ -123.336701778999952, 48.450432796000023 ], [ -123.336721575999945, 48.44979338400006 ], [ -123.336733726999967, 48.449400754000095 ], [ -123.336738006999951, 48.449262297000054 ], [ -123.336738311999909, 48.448946692000057 ], [ -123.336753063999979, 48.448726493000045 ], [ -123.33678890299997, 48.448192288000044 ], [ -123.337989540999985, 48.448210172000117 ], [ -123.338445424999961, 48.448216956000067 ], [ -123.338558584999987, 48.448218637000089 ], [ -123.339135066999944, 48.448227196000026 ], [ -123.339549298999913, 48.448233371000107 ], [ -123.340311913999983, 48.44824470700005 ], [ -123.341527893999967, 48.448273411000052 ], [ -123.341733555999966, 48.448278560000034 ], [ -123.342627899999968, 48.448300999000068 ], [ -123.343944403999942, 48.448343083000047 ], [ -123.343754576999942, 48.448654586000117 ], [ -123.343584504999953, 48.44893370900008 ], [ -123.343143190999967, 48.449388896000066 ], [ -123.343026335999966, 48.449474228000092 ], [ -123.342353662999983, 48.449965387000077 ], [ -123.342226349999947, 48.450058346000027 ], [ -123.341962234999954, 48.450251192000039 ], [ -123.341467888999958, 48.450612100000122 ], [ -123.341312776999956, 48.450728992000165 ], [ -123.340514193999951, 48.450695511000092 ], [ -123.340413362, 48.450661583000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79304418", "BldgCostT": "50746668", "sL_LossRatio": "0.848735651815681", "sL_AssetLoss": "252932.7", "sL_BldgLoss": "214673", "sL_StrLoss": "149510", "sL_NStrLoss": "65163", "sL_ContLoss": "38259.7", "geom_point": "0101000020E6100000C21889B76BD55EC0A4DF8D1EA2394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.333077405, 48.452819785000059 ], [ -123.333137306999987, 48.450562299000062 ], [ -123.333156378999959, 48.449684322000103 ], [ -123.333189723999965, 48.448149483000094 ], [ -123.33427951699997, 48.448158484000068 ], [ -123.33441349899995, 48.448159601000093 ], [ -123.335588897999941, 48.448166589000095 ], [ -123.33678890299997, 48.448192288000044 ], [ -123.336753063999979, 48.448726493000045 ], [ -123.336738311999909, 48.448946692000057 ], [ -123.336738006999951, 48.449262297000054 ], [ -123.336733726999967, 48.449400754000095 ], [ -123.336721575999945, 48.44979338400006 ], [ -123.336701778999952, 48.450432796000023 ], [ -123.336727314999948, 48.45057870000003 ], [ -123.335522511999955, 48.450590791000124 ], [ -123.335445501999942, 48.452841499000101 ], [ -123.334387118999956, 48.452841909000092 ], [ -123.333809997999978, 48.452757114000093 ], [ -123.333456595999976, 48.452822088000097 ], [ -123.333077405, 48.452819785000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172933001", "BldgCostT": "110725001", "sL_LossRatio": "0.831423158932601", "sL_AssetLoss": "290069.5", "sL_BldgLoss": "241170.5", "sL_StrLoss": "170606.9", "sL_NStrLoss": "70563.6", "sL_ContLoss": "48899", "geom_point": "0101000020E6100000DFFE439783D55EC08FCE96FF523A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.333055909999956, 48.454300903000025 ], [ -123.333077405, 48.452819785000059 ], [ -123.333456595999976, 48.452822088000097 ], [ -123.333809997999978, 48.452757114000093 ], [ -123.334387118999956, 48.452841909000092 ], [ -123.335445501999942, 48.452841499000101 ], [ -123.336713499999988, 48.452859889000059 ], [ -123.337158696999936, 48.45286569700005 ], [ -123.33743869499996, 48.452927708000068 ], [ -123.337126883999957, 48.453095696000055 ], [ -123.337058207, 48.453163400000086 ], [ -123.337025394999912, 48.453266303000056 ], [ -123.337130207999962, 48.453372686000122 ], [ -123.337307175999968, 48.453465497000082 ], [ -123.337514597999927, 48.453522092000121 ], [ -123.337793513999941, 48.453531788000092 ], [ -123.337806520999962, 48.453529305000082 ], [ -123.33860870299999, 48.453375988000055 ], [ -123.339069596999934, 48.453287913000096 ], [ -123.339661285999981, 48.453280199000069 ], [ -123.340077186999963, 48.453326810000036 ], [ -123.339796569999976, 48.454383242000077 ], [ -123.339669630999964, 48.454861050000055 ], [ -123.3395839, 48.45518379200012 ], [ -123.339322138999961, 48.456293526000067 ], [ -123.339169118999948, 48.456942268000084 ], [ -123.339078479999927, 48.457326408000057 ], [ -123.338998230999934, 48.45756170300011 ], [ -123.338848780999967, 48.457999695000069 ], [ -123.338709589999937, 48.458410113000085 ], [ -123.335919415999939, 48.458446398000092 ], [ -123.335257186999982, 48.458456797000061 ], [ -123.332973599999946, 48.458486794000073 ], [ -123.33301056, 48.457374594000079 ], [ -123.333025388999971, 48.45692440199999 ], [ -123.333045494999965, 48.456208007000107 ], [ -123.33303808299992, 48.455981401000059 ], [ -123.333062387999973, 48.455072107000085 ], [ -123.333055909999956, 48.454300903000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180879667", "BldgCostT": "118146667", "sL_LossRatio": "0.88952778786007", "sL_AssetLoss": "471123", "sL_BldgLoss": "419077", "sL_StrLoss": "287640", "sL_NStrLoss": "131437", "sL_ContLoss": "52046", "geom_point": "0101000020E6100000B0984B8928D55EC0EF39B01C213A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.331963513999966, 48.450550807000099 ], [ -123.333137306999987, 48.450562299000062 ], [ -123.333077405, 48.452819785000059 ], [ -123.333055909999956, 48.454300903000025 ], [ -123.333062387999973, 48.455072107000085 ], [ -123.33303808299992, 48.455981401000059 ], [ -123.333045494999965, 48.456208007000107 ], [ -123.333025388999971, 48.45692440199999 ], [ -123.331811803999955, 48.456895603000092 ], [ -123.328800496999989, 48.456855787000087 ], [ -123.328634515999937, 48.456926491 ], [ -123.328130817999934, 48.455973202000102 ], [ -123.328092785999971, 48.455897999000122 ], [ -123.327663147999942, 48.455047576000055 ], [ -123.326876507999955, 48.453490489000067 ], [ -123.326696990999977, 48.453202802000071 ], [ -123.326549888999978, 48.452819416000132 ], [ -123.327493987999944, 48.452819809000033 ], [ -123.328878708, 48.452820399000068 ], [ -123.330737280000037, 48.452804202000031 ], [ -123.330773088999976, 48.450545096000084 ], [ -123.331963513999966, 48.450550807000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "641934811", "BldgCostT": "427097205", "sL_LossRatio": "0.817890093918885", "sL_AssetLoss": "942078.9", "sL_BldgLoss": "770517", "sL_StrLoss": "384550", "sL_NStrLoss": "385967", "sL_ContLoss": "171561.9", "geom_point": "0101000020E61000002F8BDBCB2AD55EC001C33DBFBD3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.331005465999979, 48.460606919000028 ], [ -123.330331584999954, 48.460393354000082 ], [ -123.329110116999942, 48.460385111000022 ], [ -123.326380404999952, 48.460493907000078 ], [ -123.329457914, 48.458578604000053 ], [ -123.329149306999938, 48.457898997 ], [ -123.328634515999937, 48.456926491 ], [ -123.328800496999989, 48.456855787000087 ], [ -123.331811803999955, 48.456895603000092 ], [ -123.333025388999971, 48.45692440199999 ], [ -123.33301056, 48.457374594000079 ], [ -123.332973599999946, 48.458486794000073 ], [ -123.332970696999965, 48.459200051999986 ], [ -123.332970442999965, 48.459269944 ], [ -123.332966192999962, 48.46031809400008 ], [ -123.33295839000003, 48.461268387000146 ], [ -123.331968684999964, 48.460933273000059 ], [ -123.33153073899993, 48.460784891000095 ], [ -123.331005465999979, 48.460606919000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99102387", "BldgCostT": "64112080", "sL_LossRatio": "0.954981315173813", "sL_AssetLoss": "119016.36", "sL_BldgLoss": "113658.4", "sL_StrLoss": "91563", "sL_NStrLoss": "22095.4", "sL_ContLoss": "5357.96", "geom_point": "0101000020E6100000EE4FFB10C8D45EC084E67CA9863A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.323645216999978, 48.460606100000049 ], [ -123.322492401999938, 48.460576089000071 ], [ -123.321518911999974, 48.460551491000039 ], [ -123.320933088999979, 48.460476293000077 ], [ -123.321020865999984, 48.457645170000049 ], [ -123.321202385999968, 48.455512132000145 ], [ -123.321477912999924, 48.454008787000049 ], [ -123.322328923999947, 48.454047405000047 ], [ -123.322690487999949, 48.454052086000026 ], [ -123.323749102999926, 48.454074311000049 ], [ -123.323929777999936, 48.453910200000017 ], [ -123.324111286999951, 48.453709202000056 ], [ -123.324306907999983, 48.453569906000062 ], [ -123.324603820999982, 48.453452007000067 ], [ -123.324968743999989, 48.453458183000087 ], [ -123.326105502999951, 48.453477452000072 ], [ -123.326213611999918, 48.453479275000099 ], [ -123.326876507999955, 48.453490489000067 ], [ -123.327663147999942, 48.455047576000055 ], [ -123.328092785999971, 48.455897999000122 ], [ -123.328130817999934, 48.455973202000102 ], [ -123.328634515999937, 48.456926491 ], [ -123.329149306999938, 48.457898997 ], [ -123.329457914, 48.458578604000053 ], [ -123.326380404999952, 48.460493907000078 ], [ -123.324741832999948, 48.46056111300004 ], [ -123.324039378999913, 48.460589927000079 ], [ -123.323645216999978, 48.460606100000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "337070405", "BldgCostT": "224101926", "sL_LossRatio": "0.824319573023613", "sL_AssetLoss": "532713.3", "sL_BldgLoss": "439126", "sL_StrLoss": "264745", "sL_NStrLoss": "174381", "sL_ContLoss": "93587.3", "geom_point": "0101000020E610000016309AF817D55EC03EBB943E1D3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.328962202999946, 48.462881992000085 ], [ -123.328983997999927, 48.462185509000079 ], [ -123.32660561699997, 48.462218405000058 ], [ -123.324786707999948, 48.462169812000127 ], [ -123.324844892999963, 48.461429106000018 ], [ -123.323555087999921, 48.46143259100009 ], [ -123.323645216999978, 48.460606100000049 ], [ -123.324039378999913, 48.460589927000079 ], [ -123.324741832999948, 48.46056111300004 ], [ -123.326380404999952, 48.460493907000078 ], [ -123.329110116999942, 48.460385111000022 ], [ -123.330331584999954, 48.460393354000082 ], [ -123.331005465999979, 48.460606919000028 ], [ -123.33153073899993, 48.460784891000095 ], [ -123.331968684999964, 48.460933273000059 ], [ -123.33295839000003, 48.461268387000146 ], [ -123.334946212999938, 48.461959588000099 ], [ -123.335041480999934, 48.461993605000067 ], [ -123.334570989999946, 48.462626501000059 ], [ -123.334422294999953, 48.462845501000096 ], [ -123.334387192999927, 48.462894191000046 ], [ -123.333992208999945, 48.462929396000071 ], [ -123.33287181299994, 48.462923688000103 ], [ -123.332853292999943, 48.463633908000098 ], [ -123.331409321999928, 48.463617305000163 ], [ -123.328921404999917, 48.463604198000084 ], [ -123.328962202999946, 48.462881992000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252881448", "BldgCostT": "170800270", "sL_LossRatio": "0.852041277290143", "sL_AssetLoss": "485894.3", "sL_BldgLoss": "414002", "sL_StrLoss": "245625", "sL_NStrLoss": "168377", "sL_ContLoss": "71892.3", "geom_point": "0101000020E6100000A15A6522FCD45EC012857DD85E3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.324733690999977, 48.463558999000071 ], [ -123.324777783999977, 48.462853086000031 ], [ -123.324786119999942, 48.462228398000136 ], [ -123.324786707999948, 48.462169812000127 ], [ -123.32660561699997, 48.462218405000058 ], [ -123.328983997999927, 48.462185509000079 ], [ -123.328962202999946, 48.462881992000085 ], [ -123.328921404999917, 48.463604198000084 ], [ -123.331409321999928, 48.463617305000163 ], [ -123.332853292999943, 48.463633908000098 ], [ -123.33283780699999, 48.464146601000031 ], [ -123.332822517999901, 48.464992093000028 ], [ -123.331337101, 48.464992496000072 ], [ -123.33047069499996, 48.464982409000072 ], [ -123.328850985999935, 48.464968692000092 ], [ -123.327197611999935, 48.464954 ], [ -123.323934021999946, 48.46492399900005 ], [ -123.323904214999985, 48.464758188000125 ], [ -123.323906807999961, 48.463567898000043 ], [ -123.324733690999977, 48.463558999000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120802500", "BldgCostT": "78660000", "sL_LossRatio": "0.850369950389795", "sL_AssetLoss": "352750", "sL_BldgLoss": "299968", "sL_StrLoss": "201393", "sL_NStrLoss": "98575", "sL_ContLoss": "52782", "geom_point": "0101000020E6100000ECFA58030CD55EC0CF4B5170A93B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.330410624999971, 48.46731200500016 ], [ -123.329800690999917, 48.467280399000018 ], [ -123.327212690999914, 48.467265695000087 ], [ -123.326958996999977, 48.467214202000072 ], [ -123.32664039, 48.467093412000089 ], [ -123.325745480999927, 48.466630805000044 ], [ -123.325156593999935, 48.466347186000114 ], [ -123.323993995999913, 48.466320503000077 ], [ -123.323934021999946, 48.46492399900005 ], [ -123.327197611999935, 48.464954 ], [ -123.328850985999935, 48.464968692000092 ], [ -123.33047069499996, 48.464982409000072 ], [ -123.331337101, 48.464992496000072 ], [ -123.332822517999901, 48.464992093000028 ], [ -123.332778514000012, 48.466370705000074 ], [ -123.332755189999943, 48.467740795000033 ], [ -123.331375013999917, 48.467739389000037 ], [ -123.330989725999956, 48.467699102000068 ], [ -123.330686293999946, 48.467571508000042 ], [ -123.330410624999971, 48.46731200500016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146797751", "BldgCostT": "96310001", "sL_LossRatio": "0.711701954913515", "sL_AssetLoss": "432315.8", "sL_BldgLoss": "307680", "sL_StrLoss": "156465", "sL_NStrLoss": "151215", "sL_ContLoss": "124635.8", "geom_point": "0101000020E6100000819D0F8DF6D45EC0B4CB4B59E13B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.323993995999913, 48.466320503000077 ], [ -123.325156593999935, 48.466347186000114 ], [ -123.325745480999927, 48.466630805000044 ], [ -123.32664039, 48.467093412000089 ], [ -123.326958996999977, 48.467214202000072 ], [ -123.327212690999914, 48.467265695000087 ], [ -123.329800690999917, 48.467280399000018 ], [ -123.330410624999971, 48.46731200500016 ], [ -123.330686293999946, 48.467571508000042 ], [ -123.330989725999956, 48.467699102000068 ], [ -123.331375013999917, 48.467739389000037 ], [ -123.332755189999943, 48.467740795000033 ], [ -123.33273410799994, 48.468592395 ], [ -123.332733925999932, 48.468629110000109 ], [ -123.332733694999931, 48.468671815000015 ], [ -123.330826194999986, 48.468657108000052 ], [ -123.330744204999988, 48.468626185000048 ], [ -123.330260663999965, 48.468625125000045 ], [ -123.328701221999964, 48.468621609000152 ], [ -123.324585213999939, 48.468591696000011 ], [ -123.324405514999967, 48.468592606000108 ], [ -123.323858647999899, 48.46859715300004 ], [ -123.323794295999974, 48.468463508000056 ], [ -123.323759320999912, 48.468247083000037 ], [ -123.323780361, 48.467718302000037 ], [ -123.323797888999977, 48.467278699000055 ], [ -123.323993995999913, 48.466320503000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118686893", "BldgCostT": "79496522", "sL_LossRatio": "0.858842202961973", "sL_AssetLoss": "446054", "sL_BldgLoss": "383090", "sL_StrLoss": "254640", "sL_NStrLoss": "128450", "sL_ContLoss": "62964", "geom_point": "0101000020E6100000FEAAE99BF0D45EC05C596808433C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.3251257, 48.472021297000026 ], [ -123.325129579999981, 48.471737301000118 ], [ -123.325132411999974, 48.470900595000089 ], [ -123.325111002999975, 48.470325590000101 ], [ -123.324861307999953, 48.470035203000087 ], [ -123.324658500999959, 48.469777615000062 ], [ -123.324600593999918, 48.469511906000065 ], [ -123.323027221999936, 48.469488402000081 ], [ -123.323009788999954, 48.468604190000114 ], [ -123.323669747999972, 48.468598709000112 ], [ -123.32376656, 48.468597900000084 ], [ -123.323858647999899, 48.46859715300004 ], [ -123.324405514999967, 48.468592606000108 ], [ -123.324585213999939, 48.468591696000011 ], [ -123.328701221999964, 48.468621609000152 ], [ -123.328622997999929, 48.469525897000089 ], [ -123.328588304999954, 48.46985418900011 ], [ -123.32851870599994, 48.470010305000095 ], [ -123.329730505999976, 48.470266192000089 ], [ -123.329893805999987, 48.47034069800003 ], [ -123.329960201999938, 48.470432597000119 ], [ -123.33000271799996, 48.470564408000044 ], [ -123.329970700999979, 48.472086706 ], [ -123.331246896999957, 48.472112515000028 ], [ -123.331225815999957, 48.472892014000109 ], [ -123.33000320299999, 48.472897290000027 ], [ -123.327623014, 48.472880598000138 ], [ -123.326544, 48.472877708000041 ], [ -123.325125693999951, 48.472879804000087 ], [ -123.3251257, 48.472021297000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330352780", "BldgCostT": "218313602", "sL_LossRatio": "0.708942690354168", "sL_AssetLoss": "227598.51", "sL_BldgLoss": "161354.3", "sL_StrLoss": "98264.8", "sL_NStrLoss": "63089.5", "sL_ContLoss": "66244.21", "geom_point": "0101000020E610000026E82FF448D55EC0A1C629DF583C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.332547015999978, 48.4746567010001 ], [ -123.332611222999986, 48.47292240000008 ], [ -123.331225815999957, 48.472892014000109 ], [ -123.331246896999957, 48.472112515000028 ], [ -123.329970700999979, 48.472086706 ], [ -123.33000271799996, 48.470564408000044 ], [ -123.329960201999938, 48.470432597000119 ], [ -123.329893805999987, 48.47034069800003 ], [ -123.329730505999976, 48.470266192000089 ], [ -123.32851870599994, 48.470010305000095 ], [ -123.328588304999954, 48.46985418900011 ], [ -123.328622997999929, 48.469525897000089 ], [ -123.328701221999964, 48.468621609000152 ], [ -123.330260663999965, 48.468625125000045 ], [ -123.330744204999988, 48.468626185000048 ], [ -123.330826194999986, 48.468657108000052 ], [ -123.332733694999931, 48.468671815000015 ], [ -123.335318703000013, 48.468691698 ], [ -123.335120341999982, 48.469502010000049 ], [ -123.334862503999958, 48.470555104000034 ], [ -123.334810722999975, 48.470874805000065 ], [ -123.334876797999982, 48.471378714000139 ], [ -123.334866882999904, 48.471674307000164 ], [ -123.334512710999931, 48.472826868000077 ], [ -123.334436800000034, 48.473073798000023 ], [ -123.334430205, 48.473358587000071 ], [ -123.33449681799999, 48.47363710200004 ], [ -123.334796295, 48.474194688000097 ], [ -123.335325912999949, 48.475078301000039 ], [ -123.335070114999937, 48.47525489700007 ], [ -123.334799400999941, 48.475671898000094 ], [ -123.334572388999931, 48.475864592000029 ], [ -123.334411334999956, 48.47593800700006 ], [ -123.334375602999927, 48.475954290000111 ], [ -123.334122810999972, 48.476005693000047 ], [ -123.332814601999985, 48.476017786000085 ], [ -123.332762513999967, 48.475841680000073 ], [ -123.332759926000023, 48.475832877000094 ], [ -123.332628611999965, 48.475389103000026 ], [ -123.332547015999978, 48.4746567010001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109016978", "BldgCostT": "71199857", "sL_LossRatio": "0.830999056521332", "sL_AssetLoss": "382202.6", "sL_BldgLoss": "317610", "sL_StrLoss": "200812", "sL_NStrLoss": "116798", "sL_ContLoss": "64592.6", "geom_point": "0101000020E61000003434C78713D55EC00FC17119B73C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.327455712999935, 48.475074006000035 ], [ -123.327310414999928, 48.475016197000059 ], [ -123.326495785999938, 48.475018196000086 ], [ -123.326263895999901, 48.475010488000045 ], [ -123.326044911999972, 48.474990605000109 ], [ -123.325892984999925, 48.474928993000077 ], [ -123.325830194999924, 48.474846285000098 ], [ -123.325794369999954, 48.474598955000012 ], [ -123.325728189999921, 48.474142099000034 ], [ -123.32548146799995, 48.473754879000097 ], [ -123.325148893999938, 48.473233007000054 ], [ -123.325125693999951, 48.472879804000087 ], [ -123.326544, 48.472877708000041 ], [ -123.327623014, 48.472880598000138 ], [ -123.33000320299999, 48.472897290000027 ], [ -123.331225815999957, 48.472892014000109 ], [ -123.332611222999986, 48.47292240000008 ], [ -123.332547015999978, 48.4746567010001 ], [ -123.332628611999965, 48.475389103000026 ], [ -123.332759926000023, 48.475832877000094 ], [ -123.332762513999967, 48.475841680000073 ], [ -123.332814601999985, 48.476017786000085 ], [ -123.328381109999967, 48.476026106000099 ], [ -123.327546489999918, 48.476023100000084 ], [ -123.327561195999962, 48.475191192000075 ], [ -123.327455712999935, 48.475074006000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94579533", "BldgCostT": "61705546", "sL_LossRatio": "0.823194939980897", "sL_AssetLoss": "359935.4", "sL_BldgLoss": "296297", "sL_StrLoss": "188885", "sL_NStrLoss": "107412", "sL_ContLoss": "63638.4", "geom_point": "0101000020E61000001E1716F5ACD45EC023E2BE1FC83C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.318556893999954, 48.47491499300007 ], [ -123.31880308399991, 48.475026801000077 ], [ -123.320228486999923, 48.475020388000125 ], [ -123.321046183999925, 48.475011311000038 ], [ -123.32107389199993, 48.474640505000082 ], [ -123.321003212999969, 48.474291486000041 ], [ -123.320772081999948, 48.474007978000067 ], [ -123.320711680999963, 48.47388287400004 ], [ -123.320747553, 48.473202953000033 ], [ -123.322934894999989, 48.473214889000104 ], [ -123.32345597299998, 48.473219149000087 ], [ -123.325148893999938, 48.473233007000054 ], [ -123.32548146799995, 48.473754879000097 ], [ -123.325728189999921, 48.474142099000034 ], [ -123.325794369999954, 48.474598955000012 ], [ -123.325830194999924, 48.474846285000098 ], [ -123.325892984999925, 48.474928993000077 ], [ -123.326044911999972, 48.474990605000109 ], [ -123.326263895999901, 48.475010488000045 ], [ -123.326495785999938, 48.475018196000086 ], [ -123.327310414999928, 48.475016197000059 ], [ -123.327455712999935, 48.475074006000035 ], [ -123.327561195999962, 48.475191192000075 ], [ -123.327546489999918, 48.476023100000084 ], [ -123.32677717199999, 48.476027025000064 ], [ -123.326121106999935, 48.476030391000066 ], [ -123.325126645999944, 48.476025249000038 ], [ -123.32476133199999, 48.476023370000071 ], [ -123.324592420999977, 48.47602249600007 ], [ -123.324322497999958, 48.476021107000093 ], [ -123.32304230499993, 48.476014891000091 ], [ -123.322198384, 48.476020680000033 ], [ -123.320204692999965, 48.476034302000059 ], [ -123.318213414999917, 48.476017305 ], [ -123.318257977999949, 48.475064389000117 ], [ -123.318556893999954, 48.47491499300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142747227", "BldgCostT": "86099856", "sL_LossRatio": "0.762893650154816", "sL_AssetLoss": "471592.6", "sL_BldgLoss": "359775", "sL_StrLoss": "195946", "sL_NStrLoss": "163829", "sL_ContLoss": "111817.6", "geom_point": "0101000020E6100000DFFEE8DD90D45EC0BF17CA4F4B3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31943217599995, 48.472224620000063 ], [ -123.31916178100002, 48.472181709000104 ], [ -123.318562627999967, 48.472196304000086 ], [ -123.317223487999911, 48.472231868000044 ], [ -123.316130430999976, 48.472262798000038 ], [ -123.315786777999946, 48.472154908000086 ], [ -123.316929780999914, 48.471155 ], [ -123.317392696999917, 48.470750011000121 ], [ -123.318894522, 48.469398048000109 ], [ -123.31931701900001, 48.469017696 ], [ -123.319426122999971, 48.468808490000065 ], [ -123.319463495999955, 48.468577695000135 ], [ -123.323009788999954, 48.468604190000114 ], [ -123.323027221999936, 48.469488402000081 ], [ -123.324600593999918, 48.469511906000065 ], [ -123.324658500999959, 48.469777615000062 ], [ -123.324861307999953, 48.470035203000087 ], [ -123.325111002999975, 48.470325590000101 ], [ -123.325132411999974, 48.470900595000089 ], [ -123.325129579999981, 48.471737301000118 ], [ -123.3251257, 48.472021297000026 ], [ -123.325125693999951, 48.472879804000087 ], [ -123.325148893999938, 48.473233007000054 ], [ -123.32345597299998, 48.473219149000087 ], [ -123.322934894999989, 48.473214889000104 ], [ -123.320747553, 48.473202953000033 ], [ -123.320399638999959, 48.473193253000076 ], [ -123.320108244999972, 48.473092094000059 ], [ -123.319936706999968, 48.472925445000065 ], [ -123.31991387, 48.472864595000097 ], [ -123.31976538399999, 48.472469313000076 ], [ -123.31962251799996, 48.472321430000086 ], [ -123.31943217599995, 48.472224620000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144406803", "BldgCostT": "91523746", "sL_LossRatio": "0.857189464281202", "sL_AssetLoss": "403678.2", "sL_BldgLoss": "346028.7", "sL_StrLoss": "223456.7", "sL_NStrLoss": "122572", "sL_ContLoss": "57649.5", "geom_point": "0101000020E61000007902ED5045D45EC0213041D3B33C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.312147600999964, 48.475339707000074 ], [ -123.31293628099999, 48.47465989600007 ], [ -123.313770887999908, 48.47392539500003 ], [ -123.313877730999963, 48.473831580000194 ], [ -123.315546622999932, 48.47236584400008 ], [ -123.315786777999946, 48.472154908000086 ], [ -123.316130430999976, 48.472262798000038 ], [ -123.317223487999911, 48.472231868000044 ], [ -123.318562627999967, 48.472196304000086 ], [ -123.31916178100002, 48.472181709000104 ], [ -123.31943217599995, 48.472224620000063 ], [ -123.31962251799996, 48.472321430000086 ], [ -123.31976538399999, 48.472469313000076 ], [ -123.31991387, 48.472864595000097 ], [ -123.319936706999968, 48.472925445000065 ], [ -123.320108244999972, 48.473092094000059 ], [ -123.320399638999959, 48.473193253000076 ], [ -123.320747553, 48.473202953000033 ], [ -123.320711680999963, 48.47388287400004 ], [ -123.320772081999948, 48.474007978000067 ], [ -123.321003212999969, 48.474291486000041 ], [ -123.32107389199993, 48.474640505000082 ], [ -123.321046183999925, 48.475011311000038 ], [ -123.320228486999923, 48.475020388000125 ], [ -123.31880308399991, 48.475026801000077 ], [ -123.318556893999954, 48.47491499300007 ], [ -123.318257977999949, 48.475064389000117 ], [ -123.318213414999917, 48.476017305 ], [ -123.316006764999941, 48.476015829000048 ], [ -123.314193650999954, 48.476014615000054 ], [ -123.313456312999961, 48.476014106000072 ], [ -123.312094979999941, 48.476009301 ], [ -123.311660811999943, 48.475759288000049 ], [ -123.312147600999964, 48.475339707000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97188583", "BldgCostT": "64078333", "sL_LossRatio": "0.862539616938442", "sL_AssetLoss": "327132.8", "sL_BldgLoss": "282165", "sL_StrLoss": "183000", "sL_NStrLoss": "99165", "sL_ContLoss": "44967.8", "geom_point": "0101000020E6100000842327976FD45EC04F7C316B143D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.313438986999984, 48.477077702000017 ], [ -123.313456312999961, 48.476014106000072 ], [ -123.314193650999954, 48.476014615000054 ], [ -123.316006764999941, 48.476015829000048 ], [ -123.318213414999917, 48.476017305 ], [ -123.320204692999965, 48.476034302000059 ], [ -123.322198384, 48.476020680000033 ], [ -123.32304230499993, 48.476014891000091 ], [ -123.323038209999979, 48.476994185000159 ], [ -123.32303580899999, 48.477473268000089 ], [ -123.323033727999956, 48.477895810000078 ], [ -123.323033507999952, 48.477941131000101 ], [ -123.323031515999972, 48.478340715000066 ], [ -123.323029496999965, 48.478743397000081 ], [ -123.320100307999951, 48.478732502000135 ], [ -123.318883597999928, 48.478726108000089 ], [ -123.317701619000019, 48.478725894000071 ], [ -123.317688798999924, 48.476881505000073 ], [ -123.317172281999959, 48.4768674950001 ], [ -123.316364501999928, 48.476892108000058 ], [ -123.313941106, 48.477060685000083 ], [ -123.313438986999984, 48.477077702000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123306499", "BldgCostT": "79129999", "sL_LossRatio": "0.779158528866731", "sL_AssetLoss": "464191.8", "sL_BldgLoss": "361679", "sL_StrLoss": "212006", "sL_NStrLoss": "149673", "sL_ContLoss": "102512.8", "geom_point": "0101000020E6100000DD59F44E05D45EC07F48090B383D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.308083162999978, 48.478816669000018 ], [ -123.30973297599995, 48.477410912000011 ], [ -123.31010158, 48.47709679700008 ], [ -123.310645740999945, 48.476629876000075 ], [ -123.310943683999966, 48.47637419700014 ], [ -123.31137251799997, 48.47600810600003 ], [ -123.311660811999943, 48.475759288000049 ], [ -123.312094979999941, 48.476009301 ], [ -123.313456312999961, 48.476014106000072 ], [ -123.313438986999984, 48.477077702000017 ], [ -123.313941106, 48.477060685000083 ], [ -123.316364501999928, 48.476892108000058 ], [ -123.317172281999959, 48.4768674950001 ], [ -123.317688798999924, 48.476881505000073 ], [ -123.317701619000019, 48.478725894000071 ], [ -123.316506918999949, 48.47871370700009 ], [ -123.315405494999965, 48.478674103000046 ], [ -123.31521930699995, 48.478741507000073 ], [ -123.315085697999947, 48.478882405000142 ], [ -123.314879998999928, 48.479245099000117 ], [ -123.314427218999981, 48.480011001000015 ], [ -123.313956499999975, 48.480804301 ], [ -123.312771914, 48.480494800000052 ], [ -123.312256894999976, 48.480357343000122 ], [ -123.31162029599993, 48.480187398000076 ], [ -123.311090957999966, 48.480046098000081 ], [ -123.31061763699995, 48.479919734000099 ], [ -123.308990293999912, 48.479485298000085 ], [ -123.307730699999979, 48.479117003000091 ], [ -123.308083162999978, 48.478816669000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144935479", "BldgCostT": "93289858", "sL_LossRatio": "0.814507587671734", "sL_AssetLoss": "521088.7", "sL_BldgLoss": "424430.7", "sL_StrLoss": "264217.7", "sL_NStrLoss": "160213", "sL_ContLoss": "96658", "geom_point": "0101000020E610000017A97A436BD45EC06416FC917D3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31521930699995, 48.478741507000073 ], [ -123.315405494999965, 48.478674103000046 ], [ -123.316506918999949, 48.47871370700009 ], [ -123.317701619000019, 48.478725894000071 ], [ -123.318883597999928, 48.478726108000089 ], [ -123.320100307999951, 48.478732502000135 ], [ -123.323029496999965, 48.478743397000081 ], [ -123.323016893999977, 48.479514109000085 ], [ -123.323004810999976, 48.480753687000025 ], [ -123.322944704999898, 48.480907290000061 ], [ -123.322370179999893, 48.481807149000119 ], [ -123.322280612000014, 48.481947395000127 ], [ -123.321723059999925, 48.482917107000112 ], [ -123.31752822899989, 48.481780299000022 ], [ -123.316929710999958, 48.481614609000076 ], [ -123.313956499999975, 48.480804301 ], [ -123.314427218999981, 48.480011001000015 ], [ -123.314879998999928, 48.479245099000117 ], [ -123.315085697999947, 48.478882405000142 ], [ -123.31521930699995, 48.478741507000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91330583", "BldgCostT": "62513333", "sL_LossRatio": "0.853183421581005", "sL_AssetLoss": "384297.2", "sL_BldgLoss": "327876", "sL_StrLoss": "209540", "sL_NStrLoss": "118336", "sL_ContLoss": "56421.2", "geom_point": "0101000020E6100000BC19EA8743D45EC07BFF1F27CC3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.312332924000017, 48.481229404000025 ], [ -123.312771914, 48.480494800000052 ], [ -123.313956499999975, 48.480804301 ], [ -123.316929710999958, 48.481614609000076 ], [ -123.31752822899989, 48.481780299000022 ], [ -123.321723059999925, 48.482917107000112 ], [ -123.320912653000022, 48.484296148000027 ], [ -123.32041528299996, 48.485061784000017 ], [ -123.319232589999942, 48.484738800000102 ], [ -123.319132896999946, 48.484709191000029 ], [ -123.318959012999969, 48.484663964000092 ], [ -123.318246302999938, 48.484478513000077 ], [ -123.315490398999884, 48.483764010000094 ], [ -123.31406939699994, 48.483451214000134 ], [ -123.313181612999983, 48.483219391000027 ], [ -123.312373181999973, 48.48299149100005 ], [ -123.312165907999884, 48.482834800000035 ], [ -123.311952683999905, 48.482380298000059 ], [ -123.311918992999949, 48.482188290000089 ], [ -123.311957011999965, 48.481995405000134 ], [ -123.312332924000017, 48.481229404000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125562417", "BldgCostT": "79256667", "sL_LossRatio": "0.844974301963896", "sL_AssetLoss": "290275.1", "sL_BldgLoss": "245275", "sL_StrLoss": "174614", "sL_NStrLoss": "70661", "sL_ContLoss": "45000.1", "geom_point": "0101000020E610000084DB46A83ED45EC0D1135CCD363E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.312596986999978, 48.487605209000073 ], [ -123.312044723999975, 48.486982505000121 ], [ -123.311327329, 48.486247399000035 ], [ -123.311134426999971, 48.48612260200008 ], [ -123.311548619999925, 48.485849107 ], [ -123.31170414499995, 48.485798915000039 ], [ -123.31186333199993, 48.48580290200011 ], [ -123.313605221, 48.486269118000095 ], [ -123.313865235999955, 48.486235106000059 ], [ -123.313963628999943, 48.486167309000052 ], [ -123.315490398999884, 48.483764010000094 ], [ -123.318246302999938, 48.484478513000077 ], [ -123.318959012999969, 48.484663964000092 ], [ -123.319132896999946, 48.484709191000029 ], [ -123.319232589999942, 48.484738800000102 ], [ -123.32041528299996, 48.485061784000017 ], [ -123.319806490999966, 48.486051900000042 ], [ -123.319236188999952, 48.487031209000065 ], [ -123.31869949499999, 48.487869791000051 ], [ -123.31793851, 48.487781089000102 ], [ -123.316255077999983, 48.487329998000085 ], [ -123.316015691999979, 48.487619703000114 ], [ -123.315888381999955, 48.487696699000061 ], [ -123.315730593999959, 48.487738708000023 ], [ -123.315554791999915, 48.487742399000119 ], [ -123.313855800999946, 48.487278205000109 ], [ -123.313596189999913, 48.487258091000051 ], [ -123.313341512999955, 48.487294906000088 ], [ -123.312596986999978, 48.487605209000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "221004336", "BldgCostT": "144723336", "sL_LossRatio": "0.80719384720795", "sL_AssetLoss": "781706.9", "sL_BldgLoss": "630989", "sL_StrLoss": "395417", "sL_NStrLoss": "235572", "sL_ContLoss": "150717.9", "geom_point": "0101000020E61000005F0474FCA3D45EC069DA41FC2E3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.322370179999893, 48.481807149000119 ], [ -123.322944704999898, 48.480907290000061 ], [ -123.32464770699994, 48.481367806000073 ], [ -123.325392778999941, 48.481570495000035 ], [ -123.326390934999935, 48.481828946000086 ], [ -123.327081691999965, 48.482007810000049 ], [ -123.327333907999972, 48.482073093000054 ], [ -123.326780274999976, 48.482999663000037 ], [ -123.326481982999951, 48.483496209000108 ], [ -123.326128317999917, 48.484087856000059 ], [ -123.32542621599994, 48.48522620500006 ], [ -123.32495620899999, 48.485987152000085 ], [ -123.323765899, 48.487919302000122 ], [ -123.323337793999926, 48.488631704000042 ], [ -123.3225205049999, 48.489939384000124 ], [ -123.322459461999983, 48.490039776000046 ], [ -123.322051203999976, 48.490711111000088 ], [ -123.318739697999945, 48.489827601000073 ], [ -123.318419938999938, 48.489731253000052 ], [ -123.318272373999974, 48.489686780000063 ], [ -123.317736802999931, 48.489525409000102 ], [ -123.317595409999981, 48.489278299000063 ], [ -123.317839206999935, 48.489149211000054 ], [ -123.318118818999963, 48.488865008000076 ], [ -123.31869949499999, 48.487869791000051 ], [ -123.319236188999952, 48.487031209000065 ], [ -123.319806490999966, 48.486051900000042 ], [ -123.32041528299996, 48.485061784000017 ], [ -123.320912653000022, 48.484296148000027 ], [ -123.321723059999925, 48.482917107000112 ], [ -123.322280612000014, 48.481947395000127 ], [ -123.322370179999893, 48.481807149000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81428917", "BldgCostT": "55476667", "sL_LossRatio": "0.854653084732593", "sL_AssetLoss": "322771.9", "sL_BldgLoss": "275858", "sL_StrLoss": "178309", "sL_NStrLoss": "97549", "sL_ContLoss": "46913.9", "geom_point": "0101000020E610000071ABEF1540D45EC0C09FF1AFAB3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.317796763999951, 48.491055706000026 ], [ -123.316957409999972, 48.490830292000098 ], [ -123.31657201299997, 48.491477006000068 ], [ -123.315933943999937, 48.491311768000045 ], [ -123.315248410999985, 48.491134200000033 ], [ -123.31414001, 48.490833796000118 ], [ -123.313803301999968, 48.490744091000103 ], [ -123.313338737999956, 48.490622098000117 ], [ -123.312709006999953, 48.490456715000093 ], [ -123.311996899999954, 48.490268206000117 ], [ -123.312438112999985, 48.489566084000082 ], [ -123.312874411999971, 48.489022583000072 ], [ -123.31300738799996, 48.488821303000115 ], [ -123.313298797999977, 48.488330005000122 ], [ -123.313085092999955, 48.488192008000027 ], [ -123.312596986999978, 48.487605209000073 ], [ -123.313341512999955, 48.487294906000088 ], [ -123.313596189999913, 48.487258091000051 ], [ -123.313855800999946, 48.487278205000109 ], [ -123.315554791999915, 48.487742399000119 ], [ -123.315730593999959, 48.487738708000023 ], [ -123.315888381999955, 48.487696699000061 ], [ -123.316015691999979, 48.487619703000114 ], [ -123.316255077999983, 48.487329998000085 ], [ -123.31793851, 48.487781089000102 ], [ -123.31869949499999, 48.487869791000051 ], [ -123.318118818999963, 48.488865008000076 ], [ -123.317839206999935, 48.489149211000054 ], [ -123.317595409999981, 48.489278299000063 ], [ -123.317736802999931, 48.489525409000102 ], [ -123.318272373999974, 48.489686780000063 ], [ -123.318419938999938, 48.489731253000052 ], [ -123.318739697999945, 48.489827601000073 ], [ -123.322051203999976, 48.490711111000088 ], [ -123.321292715999917, 48.491944198000034 ], [ -123.321287612999967, 48.491952495000099 ], [ -123.319781288999962, 48.491591609000146 ], [ -123.318481197999972, 48.491239508000064 ], [ -123.317796763999951, 48.491055706000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111009251", "BldgCostT": "73405001", "sL_LossRatio": "0.908628849693002", "sL_AssetLoss": "230253.75", "sL_BldgLoss": "209215.2", "sL_StrLoss": "156063.5", "sL_NStrLoss": "53151.7", "sL_ContLoss": "21038.55", "geom_point": "0101000020E6100000E3E390C3D6D35EC0EECFB0DEC93E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307394920999982, 48.487458084000068 ], [ -123.307736381999959, 48.486482690000081 ], [ -123.309915797999935, 48.487071885000084 ], [ -123.310012705999924, 48.487149195 ], [ -123.309984892, 48.487282 ], [ -123.309593090999954, 48.487921304000061 ], [ -123.3100574, 48.488071907000091 ], [ -123.31300738799996, 48.488821303000115 ], [ -123.312874411999971, 48.489022583000072 ], [ -123.312438112999985, 48.489566084000082 ], [ -123.311996899999954, 48.490268206000117 ], [ -123.312709006999953, 48.490456715000093 ], [ -123.313338737999956, 48.490622098000117 ], [ -123.313803301999968, 48.490744091000103 ], [ -123.312470307999916, 48.492823187000042 ], [ -123.311733796999974, 48.49394070200006 ], [ -123.310805482999967, 48.493678200000069 ], [ -123.30991708099999, 48.49349959400012 ], [ -123.308887506999923, 48.4933093920001 ], [ -123.307752361000013, 48.493003341000062 ], [ -123.307004499999906, 48.492801697000026 ], [ -123.306695992999934, 48.492595514000058 ], [ -123.306753321999963, 48.492498660000074 ], [ -123.308620407999953, 48.48934389500004 ], [ -123.308158026999962, 48.489229991000144 ], [ -123.307894196999982, 48.489164996000092 ], [ -123.307881956999935, 48.489161138000036 ], [ -123.3073434249999, 48.488991406000096 ], [ -123.307255272999981, 48.488948999000058 ], [ -123.307119798, 48.488883783000091 ], [ -123.307027478999942, 48.488726294000159 ], [ -123.30701819399999, 48.488533991 ], [ -123.30705767799999, 48.488421245000055 ], [ -123.307394920999982, 48.487458084000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99344083", "BldgCostT": "66778333", "sL_LossRatio": "0.856207010585668", "sL_AssetLoss": "361658.8", "sL_BldgLoss": "309654.8", "sL_StrLoss": "217930.8", "sL_NStrLoss": "91724", "sL_ContLoss": "52004", "geom_point": "0101000020E610000071F6C6F7E2D35EC051BB78A2183E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307736381999959, 48.486482690000081 ], [ -123.308134388999989, 48.485306987000044 ], [ -123.306566018999945, 48.484877639000032 ], [ -123.306435699999923, 48.484691912000066 ], [ -123.305741406999928, 48.483702412000085 ], [ -123.305659784999975, 48.483593937000073 ], [ -123.307405611999954, 48.48311352000006 ], [ -123.307581974999948, 48.483099909000046 ], [ -123.307895793999947, 48.483163815000069 ], [ -123.308178817999973, 48.483175515000049 ], [ -123.308842489999961, 48.483075096000036 ], [ -123.309541212999974, 48.482903502000092 ], [ -123.309911614999933, 48.482829009000035 ], [ -123.310321692999949, 48.482839396000031 ], [ -123.310581994, 48.482893808 ], [ -123.311264784999977, 48.483120308000139 ], [ -123.311626183999977, 48.483132197000032 ], [ -123.311898288999899, 48.483026391000088 ], [ -123.312165907999884, 48.482834800000035 ], [ -123.312373181999973, 48.48299149100005 ], [ -123.313181612999983, 48.483219391000027 ], [ -123.31406939699994, 48.483451214000134 ], [ -123.315490398999884, 48.483764010000094 ], [ -123.313963628999943, 48.486167309000052 ], [ -123.313865235999955, 48.486235106000059 ], [ -123.313605221, 48.486269118000095 ], [ -123.31186333199993, 48.48580290200011 ], [ -123.31170414499995, 48.485798915000039 ], [ -123.311548619999925, 48.485849107 ], [ -123.311134426999971, 48.48612260200008 ], [ -123.311327329, 48.486247399000035 ], [ -123.312044723999975, 48.486982505000121 ], [ -123.312596986999978, 48.487605209000073 ], [ -123.313085092999955, 48.488192008000027 ], [ -123.313298797999977, 48.488330005000122 ], [ -123.31300738799996, 48.488821303000115 ], [ -123.3100574, 48.488071907000091 ], [ -123.309593090999954, 48.487921304000061 ], [ -123.309984892, 48.487282 ], [ -123.310012705999924, 48.487149195 ], [ -123.309915797999935, 48.487071885000084 ], [ -123.307736381999959, 48.486482690000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187434583", "BldgCostT": "119638333", "sL_LossRatio": "0.898967363710715", "sL_AssetLoss": "237629.65", "sL_BldgLoss": "213621.3", "sL_StrLoss": "164557.7", "sL_NStrLoss": "49063.6", "sL_ContLoss": "24008.35", "geom_point": "0101000020E610000083E37D458CD35EC0010208E59E3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307060587999956, 48.49578910500005 ], [ -123.306951300999984, 48.49570788800002 ], [ -123.306776291999967, 48.49575350300011 ], [ -123.305635617999968, 48.495099808000077 ], [ -123.305362712999951, 48.494857705000094 ], [ -123.305037713999951, 48.494759398000085 ], [ -123.304914312, 48.494390489000068 ], [ -123.30429428599993, 48.493416648000064 ], [ -123.304011195999976, 48.492972 ], [ -123.30391420899997, 48.492415108000053 ], [ -123.303654197999947, 48.49200070300008 ], [ -123.303650791999985, 48.491335612000086 ], [ -123.303891998999944, 48.491019396000048 ], [ -123.303642995999951, 48.490274496000033 ], [ -123.303345479999962, 48.490122199000048 ], [ -123.302979595999957, 48.490086491000113 ], [ -123.30256008899994, 48.490186209000093 ], [ -123.302236111999932, 48.49041269700006 ], [ -123.301872286999938, 48.490377094000159 ], [ -123.301768983999963, 48.490319326000076 ], [ -123.301802699999953, 48.489729223000069 ], [ -123.30188719899995, 48.489731374000051 ], [ -123.301884420999926, 48.489263282000124 ], [ -123.301493912999945, 48.489264306000045 ], [ -123.301497917999939, 48.489109497000037 ], [ -123.301254702, 48.489011298000015 ], [ -123.301071045999976, 48.48903903300009 ], [ -123.301070787999947, 48.48899552100012 ], [ -123.300794732999918, 48.488996241000095 ], [ -123.300793182999925, 48.488995596000066 ], [ -123.300764708, 48.488996321000108 ], [ -123.300664773999955, 48.488996582000063 ], [ -123.300658389999938, 48.487917026000041 ], [ -123.301470404999975, 48.487914902000028 ], [ -123.301468805999946, 48.487645013000083 ], [ -123.301549832999953, 48.487644801000073 ], [ -123.301874809999944, 48.487643948000063 ], [ -123.301874405999939, 48.487576107000059 ], [ -123.302341192999961, 48.487524394000104 ], [ -123.302421183999911, 48.487102728000096 ], [ -123.302683605999931, 48.487102039000028 ], [ -123.302682571999966, 48.486928292000066 ], [ -123.302783990999956, 48.486912011000051 ], [ -123.302678792999956, 48.486293363000058 ], [ -123.302678787999966, 48.486292372000101 ], [ -123.302678623999967, 48.486292373 ], [ -123.302588303999954, 48.48576119700008 ], [ -123.302682391999966, 48.485509098000115 ], [ -123.302526200999964, 48.485213200000047 ], [ -123.302672362999957, 48.48521281700004 ], [ -123.302669151999964, 48.484673039 ], [ -123.302263171999925, 48.484674105000067 ], [ -123.302261567999921, 48.484404216000087 ], [ -123.302121827999912, 48.484404583000092 ], [ -123.302848823999966, 48.48348921300007 ], [ -123.302877422, 48.483442007000107 ], [ -123.303081425999892, 48.48326552700005 ], [ -123.303089641999946, 48.483258418000027 ], [ -123.303232987999976, 48.48313445400008 ], [ -123.304178353999959, 48.482316791000081 ], [ -123.304629611999957, 48.481926509000033 ], [ -123.305659784999975, 48.483593937000073 ], [ -123.305741406999928, 48.483702412000085 ], [ -123.306435699999923, 48.484691912000066 ], [ -123.306566018999945, 48.484877639000032 ], [ -123.308134388999989, 48.485306987000044 ], [ -123.307736381999959, 48.486482690000081 ], [ -123.307394920999982, 48.487458084000068 ], [ -123.30705767799999, 48.488421245000055 ], [ -123.30701819399999, 48.488533991 ], [ -123.307027478999942, 48.488726294000159 ], [ -123.307119798, 48.488883783000091 ], [ -123.307255272999981, 48.488948999000058 ], [ -123.3073434249999, 48.488991406000096 ], [ -123.307881956999935, 48.489161138000036 ], [ -123.307894196999982, 48.489164996000092 ], [ -123.308158026999962, 48.489229991000144 ], [ -123.308620407999953, 48.48934389500004 ], [ -123.306753321999963, 48.492498660000074 ], [ -123.306695992999934, 48.492595514000058 ], [ -123.307004499999906, 48.492801697000026 ], [ -123.307752361000013, 48.493003341000062 ], [ -123.308887506999923, 48.4933093920001 ], [ -123.30991708099999, 48.49349959400012 ], [ -123.310805482999967, 48.493678200000069 ], [ -123.311733796999974, 48.49394070200006 ], [ -123.311237523999935, 48.494743342000085 ], [ -123.311231736999929, 48.494742161000012 ], [ -123.310140236999985, 48.494680561000038 ], [ -123.309631897999978, 48.494688060000087 ], [ -123.30963325099998, 48.494910449000017 ], [ -123.308465262999917, 48.49491358500007 ], [ -123.308449831999965, 48.49518428800009 ], [ -123.30818853699999, 48.495177655000134 ], [ -123.30818733299995, 48.495198804000083 ], [ -123.308017185, 48.49512110800012 ], [ -123.307504401999935, 48.495266393000087 ], [ -123.307383588999969, 48.495410194000037 ], [ -123.307525604999967, 48.495931576000082 ], [ -123.307061646999955, 48.495919794000024 ], [ -123.307060587999956, 48.49578910500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208963501", "BldgCostT": "134385001", "sL_LossRatio": "0.904642973808917", "sL_AssetLoss": "247042.1", "sL_BldgLoss": "223484.9", "sL_StrLoss": "176718.5", "sL_NStrLoss": "46766.4", "sL_ContLoss": "23557.2", "geom_point": "0101000020E610000095C6C3D687D35EC03FD55BE24C3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.301855589999931, 48.484405282000111 ], [ -123.301845979999925, 48.482785947000103 ], [ -123.301482899999954, 48.482786899000061 ], [ -123.301473494999968, 48.482623709000038 ], [ -123.301606312, 48.482173601000042 ], [ -123.30196979599998, 48.482073892000045 ], [ -123.301971076999934, 48.481947198000071 ], [ -123.301713684999982, 48.482019796000024 ], [ -123.301630788999915, 48.481948596000052 ], [ -123.30212760799995, 48.481299210000046 ], [ -123.3020322899999, 48.48112830300002 ], [ -123.301559713999922, 48.481129592000073 ], [ -123.301616541999977, 48.48013485000012 ], [ -123.30162, 48.480131289 ], [ -123.301618062, 48.480108226000098 ], [ -123.301640978999956, 48.479707076000061 ], [ -123.301926115999919, 48.479177106000094 ], [ -123.302425405999927, 48.478798286000078 ], [ -123.302993400999952, 48.478643006000063 ], [ -123.303208209000033, 48.478489185000058 ], [ -123.303149946999923, 48.477982330000053 ], [ -123.303441259999914, 48.477989742000098 ], [ -123.30343281799999, 48.476574226000018 ], [ -123.303026901999957, 48.476575296000078 ], [ -123.303025294999927, 48.47630540600003 ], [ -123.302619381999975, 48.476306475000079 ], [ -123.302617776, 48.476036585000088 ], [ -123.301805953000013, 48.476038717000066 ], [ -123.301804351999948, 48.475768827000081 ], [ -123.301608803999969, 48.475769340000049 ], [ -123.301398440999904, 48.475769890000073 ], [ -123.301399751999938, 48.475991213000128 ], [ -123.301399972999917, 48.476028165000081 ], [ -123.301374008999957, 48.47602361800007 ], [ -123.30100160899994, 48.475958399000049 ], [ -123.300915902999947, 48.476041047000052 ], [ -123.300182304999979, 48.476042963000069 ], [ -123.300180744, 48.475778164000097 ], [ -123.300180712999975, 48.475773073000049 ], [ -123.299806583999924, 48.475774048000048 ], [ -123.299774709999966, 48.47575820200008 ], [ -123.29977321399997, 48.475504241000159 ], [ -123.299367305999979, 48.47550529800008 ], [ -123.299365717999962, 48.475235408000096 ], [ -123.298959811999936, 48.475236463000059 ], [ -123.29895806799999, 48.474939374000051 ], [ -123.299234686999924, 48.474568403000077 ], [ -123.299073094999954, 48.474486172000113 ], [ -123.303141807999964, 48.470720204000017 ], [ -123.30308868199999, 48.471956995000042 ], [ -123.303157696999961, 48.472618797000024 ], [ -123.303239579999939, 48.472918758000056 ], [ -123.303270517, 48.473032013000086 ], [ -123.30347689499996, 48.473297009000063 ], [ -123.303521171999989, 48.473359321000032 ], [ -123.303980703999926, 48.474005984000016 ], [ -123.30400283199999, 48.474083396000076 ], [ -123.304160897, 48.47463550500008 ], [ -123.304313404, 48.474794011000078 ], [ -123.304343213999942, 48.47482501000011 ], [ -123.304999509999973, 48.475253802000069 ], [ -123.30527655099992, 48.475543147000018 ], [ -123.305396019999961, 48.475667906000048 ], [ -123.30553090599993, 48.47586849500005 ], [ -123.305652049999949, 48.476048610000085 ], [ -123.305897134999938, 48.4764129920001 ], [ -123.306307405, 48.477023005000035 ], [ -123.306433283999979, 48.477330780000095 ], [ -123.306865775999981, 48.478388306000085 ], [ -123.306980380999946, 48.478668490000132 ], [ -123.30707595399997, 48.478902222000073 ], [ -123.307086281999958, 48.478927503000101 ], [ -123.30713154899999, 48.479027183000028 ], [ -123.307333512999918, 48.47947209900007 ], [ -123.307730699999979, 48.479117003000091 ], [ -123.308990293999912, 48.479485298000085 ], [ -123.31061763699995, 48.479919734000099 ], [ -123.311090957999966, 48.480046098000081 ], [ -123.31162029599993, 48.480187398000076 ], [ -123.312256894999976, 48.480357343000122 ], [ -123.312771914, 48.480494800000052 ], [ -123.312332924000017, 48.481229404000025 ], [ -123.311957011999965, 48.481995405000134 ], [ -123.311918992999949, 48.482188290000089 ], [ -123.311952683999905, 48.482380298000059 ], [ -123.312165907999884, 48.482834800000035 ], [ -123.311898288999899, 48.483026391000088 ], [ -123.311626183999977, 48.483132197000032 ], [ -123.311264784999977, 48.483120308000139 ], [ -123.310581994, 48.482893808 ], [ -123.310321692999949, 48.482839396000031 ], [ -123.309911614999933, 48.482829009000035 ], [ -123.309541212999974, 48.482903502000092 ], [ -123.308842489999961, 48.483075096000036 ], [ -123.308178817999973, 48.483175515000049 ], [ -123.307895793999947, 48.483163815000069 ], [ -123.307581974999948, 48.483099909000046 ], [ -123.307405611999954, 48.48311352000006 ], [ -123.305659784999975, 48.483593937000073 ], [ -123.304629611999957, 48.481926509000033 ], [ -123.304178353999959, 48.482316791000081 ], [ -123.303232987999976, 48.48313445400008 ], [ -123.303089641999946, 48.483258418000027 ], [ -123.303081425999892, 48.48326552700005 ], [ -123.302877422, 48.483442007000107 ], [ -123.302848823999966, 48.48348921300007 ], [ -123.302121827999912, 48.484404583000092 ], [ -123.301855589999931, 48.484405282000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175841083", "BldgCostT": "117643333", "sL_LossRatio": "0.878101692889803", "sL_AssetLoss": "511457.39", "sL_BldgLoss": "449111.6", "sL_StrLoss": "316303.1", "sL_NStrLoss": "132808.5", "sL_ContLoss": "62345.79", "geom_point": "0101000020E61000002CD592AFC0D35EC02F152BD5CB3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307020900999959, 48.472753086000132 ], [ -123.307765494999941, 48.472106497000055 ], [ -123.307986614999933, 48.472018401000078 ], [ -123.308639723999974, 48.472291102000064 ], [ -123.308907687, 48.47232759900006 ], [ -123.309117809000014, 48.472314890000042 ], [ -123.309728004999968, 48.472223988000074 ], [ -123.309855001999964, 48.472175794000059 ], [ -123.310103776999952, 48.471958501000131 ], [ -123.310456688999977, 48.472139461000047 ], [ -123.310780906000033, 48.472305714000079 ], [ -123.311791905999925, 48.472815603000036 ], [ -123.313615906999956, 48.473754703000125 ], [ -123.313770887999908, 48.47392539500003 ], [ -123.31293628099999, 48.47465989600007 ], [ -123.312147600999964, 48.475339707000074 ], [ -123.311660811999943, 48.475759288000049 ], [ -123.31137251799997, 48.47600810600003 ], [ -123.310943683999966, 48.47637419700014 ], [ -123.310645740999945, 48.476629876000075 ], [ -123.31010158, 48.47709679700008 ], [ -123.30973297599995, 48.477410912000011 ], [ -123.308083162999978, 48.478816669000018 ], [ -123.307730699999979, 48.479117003000091 ], [ -123.307333512999918, 48.47947209900007 ], [ -123.30713154899999, 48.479027183000028 ], [ -123.307086281999958, 48.478927503000101 ], [ -123.30707595399997, 48.478902222000073 ], [ -123.306980380999946, 48.478668490000132 ], [ -123.306865775999981, 48.478388306000085 ], [ -123.306433283999979, 48.477330780000095 ], [ -123.306307405, 48.477023005000035 ], [ -123.305897134999938, 48.4764129920001 ], [ -123.305652049999949, 48.476048610000085 ], [ -123.30553090599993, 48.47586849500005 ], [ -123.305396019999961, 48.475667906000048 ], [ -123.30527655099992, 48.475543147000018 ], [ -123.304999509999973, 48.475253802000069 ], [ -123.304343213999942, 48.47482501000011 ], [ -123.304313404, 48.474794011000078 ], [ -123.304160897, 48.47463550500008 ], [ -123.30400283199999, 48.474083396000076 ], [ -123.303980703999926, 48.474005984000016 ], [ -123.304454483999905, 48.473916091000042 ], [ -123.305079815999974, 48.473372916000066 ], [ -123.30548337399992, 48.473002288000067 ], [ -123.305671296999932, 48.472829716000057 ], [ -123.306273572999956, 48.472843359000095 ], [ -123.30662899399999, 48.47285140900005 ], [ -123.306850809999929, 48.472822807000085 ], [ -123.307020900999959, 48.472753086000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122353417", "BldgCostT": "76596667", "sL_LossRatio": "0.845093113705114", "sL_AssetLoss": "316559.2", "sL_BldgLoss": "267522", "sL_StrLoss": "177345", "sL_NStrLoss": "90177", "sL_ContLoss": "49037.2", "geom_point": "0101000020E6100000B6BC6A4CA5D35EC01B4ADC195C3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.30308868199999, 48.471956995000042 ], [ -123.303141807999964, 48.470720204000017 ], [ -123.303835001999943, 48.470169697000117 ], [ -123.304951612999929, 48.469228704000045 ], [ -123.30769478, 48.470704263000115 ], [ -123.308323930999933, 48.471042660000087 ], [ -123.308713691999941, 48.471252301000114 ], [ -123.30933380299993, 48.470726990000067 ], [ -123.309753201999939, 48.47035889100011 ], [ -123.309919799999989, 48.470279200000043 ], [ -123.310120690999966, 48.470261814000082 ], [ -123.310306176999958, 48.470323290000081 ], [ -123.310836717999919, 48.470613599000039 ], [ -123.310855346999958, 48.470619125000027 ], [ -123.311463624999959, 48.470799108000072 ], [ -123.311806097, 48.470965891000056 ], [ -123.3123113, 48.471211887000088 ], [ -123.312836011999963, 48.47148491100014 ], [ -123.313005088999944, 48.471669598000105 ], [ -123.312867907999987, 48.471873498999983 ], [ -123.311791905999925, 48.472815603000036 ], [ -123.310780906000033, 48.472305714000079 ], [ -123.310456688999977, 48.472139461000047 ], [ -123.310103776999952, 48.471958501000131 ], [ -123.309855001999964, 48.472175794000059 ], [ -123.309728004999968, 48.472223988000074 ], [ -123.309117809000014, 48.472314890000042 ], [ -123.308907687, 48.47232759900006 ], [ -123.308639723999974, 48.472291102000064 ], [ -123.307986614999933, 48.472018401000078 ], [ -123.307765494999941, 48.472106497000055 ], [ -123.307020900999959, 48.472753086000132 ], [ -123.306850809999929, 48.472822807000085 ], [ -123.30662899399999, 48.47285140900005 ], [ -123.306273572999956, 48.472843359000095 ], [ -123.305671296999932, 48.472829716000057 ], [ -123.30548337399992, 48.473002288000067 ], [ -123.305079815999974, 48.473372916000066 ], [ -123.304454483999905, 48.473916091000042 ], [ -123.303980703999926, 48.474005984000016 ], [ -123.303521171999989, 48.473359321000032 ], [ -123.30347689499996, 48.473297009000063 ], [ -123.303270517, 48.473032013000086 ], [ -123.303239579999939, 48.472918758000056 ], [ -123.303157696999961, 48.472618797000024 ], [ -123.30308868199999, 48.471956995000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121333166", "BldgCostT": "73931666", "sL_LossRatio": "0.815417018165271", "sL_AssetLoss": "302395.7", "sL_BldgLoss": "246578.6", "sL_StrLoss": "155095.6", "sL_NStrLoss": "91483", "sL_ContLoss": "55817.1", "geom_point": "0101000020E61000005FCD11640AD45EC00A4EA7E9F13B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.310306176999958, 48.470323290000081 ], [ -123.310120690999966, 48.470261814000082 ], [ -123.309919799999989, 48.470279200000043 ], [ -123.309753201999939, 48.47035889100011 ], [ -123.30933380299993, 48.470726990000067 ], [ -123.308713691999941, 48.471252301000114 ], [ -123.308323930999933, 48.471042660000087 ], [ -123.30769478, 48.470704263000115 ], [ -123.304951612999929, 48.469228704000045 ], [ -123.305748040999973, 48.468550097000019 ], [ -123.306031376999925, 48.468308664000091 ], [ -123.306087181999928, 48.468261055000042 ], [ -123.306240491999986, 48.468129684000083 ], [ -123.306305686999949, 48.468099768000059 ], [ -123.307697604999987, 48.466970044000043 ], [ -123.307863233999939, 48.46683626400003 ], [ -123.30836615500003, 48.466423407000043 ], [ -123.309312158999944, 48.465652942000069 ], [ -123.309531686999932, 48.465473650000035 ], [ -123.309672501999913, 48.465419507000071 ], [ -123.309887078999921, 48.465397907000089 ], [ -123.310127958999942, 48.465211514000089 ], [ -123.310383307, 48.465013846000055 ], [ -123.312464233999961, 48.463403139000036 ], [ -123.315504350999959, 48.464723623000033 ], [ -123.317506902999952, 48.465635852000098 ], [ -123.320258345999918, 48.467030331000025 ], [ -123.320562453999955, 48.467219721000049 ], [ -123.320471100999939, 48.467408293000084 ], [ -123.320422141999984, 48.467461415000059 ], [ -123.320365182999964, 48.467523203000077 ], [ -123.320219325999943, 48.467681506000091 ], [ -123.319567514999974, 48.468172695000128 ], [ -123.319477112999948, 48.468409395000037 ], [ -123.319463495999955, 48.468577695000135 ], [ -123.319426122999971, 48.468808490000065 ], [ -123.31931701900001, 48.469017696 ], [ -123.318894522, 48.469398048000109 ], [ -123.317392696999917, 48.470750011000121 ], [ -123.316929780999914, 48.471155 ], [ -123.315786777999946, 48.472154908000086 ], [ -123.315546622999932, 48.47236584400008 ], [ -123.313877730999963, 48.473831580000194 ], [ -123.313770887999908, 48.47392539500003 ], [ -123.313615906999956, 48.473754703000125 ], [ -123.311791905999925, 48.472815603000036 ], [ -123.312867907999987, 48.471873498999983 ], [ -123.313005088999944, 48.471669598000105 ], [ -123.312836011999963, 48.47148491100014 ], [ -123.3123113, 48.471211887000088 ], [ -123.311806097, 48.470965891000056 ], [ -123.311463624999959, 48.470799108000072 ], [ -123.310855346999958, 48.470619125000027 ], [ -123.310836717999919, 48.470613599000039 ], [ -123.310306176999958, 48.470323290000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193571791", "BldgCostT": "119537551", "sL_LossRatio": "0.766638419608286", "sL_AssetLoss": "689039.3", "sL_BldgLoss": "528244", "sL_StrLoss": "316213", "sL_NStrLoss": "212031", "sL_ContLoss": "160795.3", "geom_point": "0101000020E6100000B9ECEEA600D35EC0216D57A6673B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.29243083099999, 48.462132405000062 ], [ -123.293025184999962, 48.461657998000113 ], [ -123.293565887999989, 48.461929700000013 ], [ -123.293713682999964, 48.461966801000045 ], [ -123.294758498999926, 48.461925916000048 ], [ -123.295463411999989, 48.46183109800004 ], [ -123.296643086999893, 48.461509501000087 ], [ -123.297124820999926, 48.461326093000018 ], [ -123.29760249399996, 48.461001986000099 ], [ -123.298183556999916, 48.461325785000056 ], [ -123.299069375000016, 48.461819391000098 ], [ -123.299314195999955, 48.461954580000082 ], [ -123.300206603999939, 48.462454387000051 ], [ -123.30049094099995, 48.462615258000078 ], [ -123.300762741, 48.462769031000072 ], [ -123.301004474999928, 48.462905793000076 ], [ -123.301171597999968, 48.46300035400008 ], [ -123.30175720599999, 48.463331727000138 ], [ -123.302106923999986, 48.463529605000112 ], [ -123.302521427999949, 48.463764146000109 ], [ -123.302686751999914, 48.46385766200008 ], [ -123.30219690399997, 48.46427811100007 ], [ -123.301911292999989, 48.464525091000034 ], [ -123.301725655999974, 48.464676015000101 ], [ -123.301561169999971, 48.464809749000054 ], [ -123.301221203999916, 48.465086135000035 ], [ -123.301061604, 48.4652159010001 ], [ -123.301001094999947, 48.465262892000084 ], [ -123.300257930999976, 48.465840288000059 ], [ -123.300013108999963, 48.466030499000077 ], [ -123.298941917999954, 48.466890428000042 ], [ -123.297819189000023, 48.467791714000036 ], [ -123.29604703699998, 48.466780537000083 ], [ -123.295415400999929, 48.466420092000135 ], [ -123.294185402, 48.465733093000019 ], [ -123.293084090999969, 48.46510711100008 ], [ -123.292841211999928, 48.46497700400009 ], [ -123.2921616499999, 48.464612991000116 ], [ -123.291920689000023, 48.464483944000072 ], [ -123.292782381999956, 48.463773705000094 ], [ -123.291230611999964, 48.462929603000056 ], [ -123.291052887999953, 48.462778112000073 ], [ -123.29103931399996, 48.462662294000047 ], [ -123.291085772999935, 48.46255799500009 ], [ -123.291469487999933, 48.462295493000084 ], [ -123.291641316999943, 48.462242999000097 ], [ -123.292019995999951, 48.462232894000095 ], [ -123.292315902999988, 48.462181787000134 ], [ -123.29243083099999, 48.462132405000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124461084", "BldgCostT": "81473334", "sL_LossRatio": "0.859777887151925", "sL_AssetLoss": "369089.86", "sL_BldgLoss": "317335.3", "sL_StrLoss": "217205.2", "sL_NStrLoss": "100130.1", "sL_ContLoss": "51754.56", "geom_point": "0101000020E61000006DD8E718ADD25EC03FDB9BC6933A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.287792583999945, 48.459423792000074 ], [ -123.287631070999964, 48.459292503000015 ], [ -123.287321704999954, 48.459041110000065 ], [ -123.28672727899999, 48.458768901000106 ], [ -123.28689669699996, 48.458563986000058 ], [ -123.28738348899995, 48.458152613000102 ], [ -123.287395490999984, 48.458133695000129 ], [ -123.287772417999975, 48.457540296000097 ], [ -123.287799190999976, 48.457378696000063 ], [ -123.287581613999961, 48.457099905000092 ], [ -123.287078106999985, 48.45665050200008 ], [ -123.286739587999961, 48.456409092000051 ], [ -123.286590505999982, 48.456184395000051 ], [ -123.286356004999973, 48.455635495000102 ], [ -123.285962117999986, 48.455206006000076 ], [ -123.285532417999931, 48.454883898000112 ], [ -123.285113103999919, 48.4547558800001 ], [ -123.284887293999972, 48.454711313000139 ], [ -123.284290022999969, 48.454593339000077 ], [ -123.28362861, 48.454462691000117 ], [ -123.283143389, 48.45428340900002 ], [ -123.282847583999967, 48.454074693000067 ], [ -123.282446132999951, 48.453628701000135 ], [ -123.28215210499998, 48.45330200100004 ], [ -123.281919301999949, 48.453124709000058 ], [ -123.28179332299996, 48.453038504000084 ], [ -123.281659168999951, 48.452763888000121 ], [ -123.281545702999921, 48.452531597000139 ], [ -123.281385408999967, 48.45233809300003 ], [ -123.281048288999969, 48.452141905000083 ], [ -123.280104871999981, 48.451926508000092 ], [ -123.278946044999927, 48.451535999000029 ], [ -123.278632891999919, 48.451456318000034 ], [ -123.278094502999977, 48.451319308000031 ], [ -123.278255740999967, 48.450816650000043 ], [ -123.278436398999958, 48.450774374000062 ], [ -123.278035435999982, 48.450373886000087 ], [ -123.27850463799993, 48.450406762000107 ], [ -123.278528345999945, 48.450406475000058 ], [ -123.27852777, 48.450301100000054 ], [ -123.279020889999941, 48.450284213000081 ], [ -123.279329035999965, 48.450185624000063 ], [ -123.280663459999971, 48.45018237700009 ], [ -123.280954695999966, 48.450252809000055 ], [ -123.281146619999973, 48.450386704000067 ], [ -123.281068111999971, 48.45086379400005 ], [ -123.281527260999951, 48.451395786000077 ], [ -123.281556294999945, 48.451443828000031 ], [ -123.281558583999981, 48.451618691000114 ], [ -123.281720691999951, 48.451825202000116 ], [ -123.282594171999932, 48.451972490000081 ], [ -123.282594734999975, 48.452074148000072 ], [ -123.282522303999926, 48.452416197000048 ], [ -123.283120797999956, 48.452954587000086 ], [ -123.283229575999911, 48.452937496000033 ], [ -123.283359092999916, 48.452699095000099 ], [ -123.283361891999974, 48.452693899000089 ], [ -123.283365795999927, 48.452693316000136 ], [ -123.283409599, 48.452686707000034 ], [ -123.283410399999923, 48.452830603000024 ], [ -123.283461237999958, 48.45284156200011 ], [ -123.283528389999944, 48.452874300000047 ], [ -123.283736229999988, 48.452873789000108 ], [ -123.283816727999977, 48.452937227000149 ], [ -123.283817448999969, 48.453066893000042 ], [ -123.283919014999967, 48.453143232000066 ], [ -123.284077630999946, 48.45314284100003 ], [ -123.284224254, 48.45325839 ], [ -123.284224892999958, 48.453373142000054 ], [ -123.284367236999955, 48.453480132000031 ], [ -123.28434191799991, 48.453672400000073 ], [ -123.283979709999954, 48.454212104000085 ], [ -123.285446346999962, 48.454129860000101 ], [ -123.28544684799999, 48.454219032000061 ], [ -123.285852584999958, 48.454218024000106 ], [ -123.285853510999956, 48.454382957000071 ], [ -123.286193537999935, 48.454361161000087 ], [ -123.286438336999979, 48.454452561000032 ], [ -123.286498180999985, 48.454486314000071 ], [ -123.28666558099998, 48.454485897000019 ], [ -123.286666116, 48.454580765000117 ], [ -123.286968037999927, 48.454712062000134 ], [ -123.287111836999898, 48.454735615000089 ], [ -123.287161296999955, 48.454897191000029 ], [ -123.287001803999942, 48.45513219 ], [ -123.28721315199999, 48.455208807000112 ], [ -123.287218237999966, 48.455249061000046 ], [ -123.28725051, 48.455294122000033 ], [ -123.287295335999929, 48.455294009000106 ], [ -123.287484641, 48.455826287000065 ], [ -123.287484796999976, 48.455853856000047 ], [ -123.287499522999923, 48.455868130000034 ], [ -123.287547275999941, 48.456002396000088 ], [ -123.287627299999912, 48.456012286000039 ], [ -123.287644062999902, 48.45596947500011 ], [ -123.288153637999969, 48.456095761000078 ], [ -123.288163025999921, 48.456101525000065 ], [ -123.288259033000017, 48.456101284000155 ], [ -123.288279017999955, 48.456127696000102 ], [ -123.288197182999966, 48.456307098000067 ], [ -123.288023104, 48.45632568700006 ], [ -123.287995513999945, 48.456398296000017 ], [ -123.288090806999946, 48.456667510000031 ], [ -123.288472093999971, 48.456899595000031 ], [ -123.288526170999972, 48.457330511000102 ], [ -123.288328936999932, 48.457571062000049 ], [ -123.28830651, 48.457655164000137 ], [ -123.288308728999965, 48.458046865000092 ], [ -123.288154988999963, 48.458260699000057 ], [ -123.28799718, 48.458261095000111 ], [ -123.28792033699996, 48.458356661000067 ], [ -123.287905185999961, 48.458441400000041 ], [ -123.287905692999942, 48.458531218000111 ], [ -123.28796059299998, 48.458531080000171 ], [ -123.287832088999949, 48.458709812000045 ], [ -123.288442995000011, 48.45909579900011 ], [ -123.288714111, 48.459188593000107 ], [ -123.289067100999929, 48.459309410000131 ], [ -123.2902438199999, 48.459379200000079 ], [ -123.290730704999945, 48.459369207000066 ], [ -123.29225928699999, 48.459121393000011 ], [ -123.293433388999929, 48.458866495000031 ], [ -123.294513380999916, 48.458504695000094 ], [ -123.295525083999948, 48.458087403000043 ], [ -123.296334175999959, 48.457627394000063 ], [ -123.296688906999947, 48.457429334000054 ], [ -123.296826391999943, 48.457428978000031 ], [ -123.296825947999977, 48.457352816000046 ], [ -123.297548278999926, 48.456949497000046 ], [ -123.298222617999954, 48.456345791000011 ], [ -123.298443117999938, 48.45634521900017 ], [ -123.298441969999971, 48.456149410000116 ], [ -123.298707334999946, 48.455911833000059 ], [ -123.29899801199997, 48.4560547970001 ], [ -123.299527703999956, 48.45631760800007 ], [ -123.299757388999979, 48.456325113000155 ], [ -123.300292902, 48.456595799000056 ], [ -123.300497801999967, 48.456647890000035 ], [ -123.300460456999957, 48.456770109000047 ], [ -123.300442661999952, 48.456828413000046 ], [ -123.300381576999911, 48.45702819200006 ], [ -123.300200693999955, 48.457901110000101 ], [ -123.300184419999965, 48.457944046000122 ], [ -123.30004995099992, 48.458299401000055 ], [ -123.299943083999921, 48.458581696000117 ], [ -123.299742792999922, 48.45894450400003 ], [ -123.299400086999967, 48.459460598000057 ], [ -123.298852, 48.459954409000105 ], [ -123.298564067, 48.460195687000116 ], [ -123.298432191999936, 48.460306197000108 ], [ -123.298271252999911, 48.460441159 ], [ -123.29760249399996, 48.461001986000099 ], [ -123.297124820999926, 48.461326093000018 ], [ -123.296643086999893, 48.461509501000087 ], [ -123.295463411999989, 48.46183109800004 ], [ -123.294758498999926, 48.461925916000048 ], [ -123.293713682999964, 48.461966801000045 ], [ -123.293565887999989, 48.461929700000013 ], [ -123.293025184999962, 48.461657998000113 ], [ -123.292466485999967, 48.461365308000133 ], [ -123.292156166999945, 48.461202726000039 ], [ -123.291394598999943, 48.460803757000107 ], [ -123.290936803999955, 48.460563886000067 ], [ -123.290729225999939, 48.460488414000068 ], [ -123.29061671, 48.46044749900009 ], [ -123.290428, 48.460396515000042 ], [ -123.29037213499997, 48.460381435000023 ], [ -123.290173907999957, 48.46032788900002 ], [ -123.28943063399997, 48.460073446000088 ], [ -123.289012478999908, 48.459930297000092 ], [ -123.288559272999976, 48.459763915000089 ], [ -123.288067003999942, 48.459583189000114 ], [ -123.28803053199999, 48.459575344000022 ], [ -123.28782959099999, 48.459532116000048 ], [ -123.287792583999945, 48.459423792000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168201917", "BldgCostT": "112261667", "sL_LossRatio": "0.95001594270697", "sL_AssetLoss": "217246.67", "sL_BldgLoss": "206387.8", "sL_StrLoss": "172675.6", "sL_NStrLoss": "33712.2", "sL_ContLoss": "10858.87", "geom_point": "0101000020E6100000ADA5E3DE7AD25EC0BFD04CC5803B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.284867489999968, 48.465376592000041 ], [ -123.284696329000028, 48.465370382000117 ], [ -123.284135532999983, 48.465423648000105 ], [ -123.283789235999947, 48.465410263000116 ], [ -123.28350811199999, 48.465366988000078 ], [ -123.283259649999962, 48.4652731400001 ], [ -123.283092739999987, 48.465146216000065 ], [ -123.283050405999958, 48.464990033000063 ], [ -123.283129577999915, 48.464505077000119 ], [ -123.283070392999917, 48.464289844000064 ], [ -123.283060542999976, 48.464275841000138 ], [ -123.281865666999934, 48.462578883000027 ], [ -123.282995309999933, 48.461909725000048 ], [ -123.283074181999979, 48.461863018000081 ], [ -123.283962591999952, 48.461336689000127 ], [ -123.284935422999965, 48.460669075000041 ], [ -123.285740681, 48.461107261000052 ], [ -123.286211902999952, 48.461366420000104 ], [ -123.286827229999972, 48.461703236000048 ], [ -123.28772779300003, 48.462199687000066 ], [ -123.287789504, 48.462230205000012 ], [ -123.290173907999957, 48.46032788900002 ], [ -123.29037213499997, 48.460381435000023 ], [ -123.290428, 48.460396515000042 ], [ -123.29061671, 48.46044749900009 ], [ -123.290729225999939, 48.460488414000068 ], [ -123.290936803999955, 48.460563886000067 ], [ -123.291394598999943, 48.460803757000107 ], [ -123.292156166999945, 48.461202726000039 ], [ -123.292466485999967, 48.461365308000133 ], [ -123.293025184999962, 48.461657998000113 ], [ -123.29243083099999, 48.462132405000062 ], [ -123.292315902999988, 48.462181787000134 ], [ -123.292019995999951, 48.462232894000095 ], [ -123.291641316999943, 48.462242999000097 ], [ -123.291469487999933, 48.462295493000084 ], [ -123.291085772999935, 48.46255799500009 ], [ -123.29103931399996, 48.462662294000047 ], [ -123.291052887999953, 48.462778112000073 ], [ -123.291230611999964, 48.462929603000056 ], [ -123.292782381999956, 48.463773705000094 ], [ -123.291920689000023, 48.464483944000072 ], [ -123.2921616499999, 48.464612991000116 ], [ -123.292841211999928, 48.46497700400009 ], [ -123.293084090999969, 48.46510711100008 ], [ -123.294185402, 48.465733093000019 ], [ -123.294004706999942, 48.465939506000062 ], [ -123.293970046999931, 48.466122817000056 ], [ -123.293895577999933, 48.466516881000075 ], [ -123.293863364999964, 48.466687374000081 ], [ -123.293834256999943, 48.466841320000121 ], [ -123.293748912999931, 48.467292895000128 ], [ -123.293788606999968, 48.467413430000093 ], [ -123.29385821299999, 48.46762480100012 ], [ -123.294004904999966, 48.467892786000036 ], [ -123.294021293999904, 48.468007689000068 ], [ -123.293954805999959, 48.468132302000065 ], [ -123.293160538, 48.468803914000063 ], [ -123.292761201999923, 48.469141611000069 ], [ -123.292749910999959, 48.46915270300007 ], [ -123.292160098999943, 48.469732191000062 ], [ -123.29175398, 48.469983395000092 ], [ -123.291304814999947, 48.470116194000148 ], [ -123.290914198999971, 48.470167504000067 ], [ -123.290440697999955, 48.470110309000077 ], [ -123.289921500999966, 48.469862591000044 ], [ -123.289284195999954, 48.469388082000101 ], [ -123.289041104999953, 48.469129400000043 ], [ -123.288788403999888, 48.468543103000094 ], [ -123.288745696999953, 48.468182199000118 ], [ -123.28864069899997, 48.467822404000046 ], [ -123.28845148, 48.467659700000056 ], [ -123.288149291999986, 48.467607810000061 ], [ -123.28780746699999, 48.467515193000104 ], [ -123.28758361199999, 48.467345295000086 ], [ -123.287368794999963, 48.467089104000067 ], [ -123.287166080999924, 48.466926108000109 ], [ -123.286956416999971, 48.466815311000076 ], [ -123.286780349999972, 48.466773148000065 ], [ -123.286729544999957, 48.466760969000092 ], [ -123.286703313999936, 48.466754695000077 ], [ -123.286342512999965, 48.466733696000098 ], [ -123.286018790999947, 48.466609986000037 ], [ -123.285752783999953, 48.466374111000057 ], [ -123.28540504099999, 48.465774518000025 ], [ -123.285047249999963, 48.465444311000105 ], [ -123.284867489999968, 48.465376592000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268912439", "BldgCostT": "180869267", "sL_LossRatio": "0.854036540132249", "sL_AssetLoss": "216167.8", "sL_BldgLoss": "184615.2", "sL_StrLoss": "133318", "sL_NStrLoss": "51297.2", "sL_ContLoss": "31552.6", "geom_point": "0101000020E61000004A33D57A1CD25EC0FF9652FAB63A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.282111041999926, 48.459533050000047 ], [ -123.28177702, 48.459424806000108 ], [ -123.281267885999924, 48.459707500000093 ], [ -123.28087840699996, 48.459789489000038 ], [ -123.280745640999967, 48.459771775000043 ], [ -123.280460292999948, 48.459733717000084 ], [ -123.280438087999954, 48.459722566000082 ], [ -123.280340906999982, 48.459673794000103 ], [ -123.280096709999967, 48.459477851000123 ], [ -123.280005293000016, 48.459404504000098 ], [ -123.279757306999954, 48.459255693000038 ], [ -123.2794065, 48.459133887000064 ], [ -123.279098021999957, 48.459121493000062 ], [ -123.27852172299994, 48.459258194000064 ], [ -123.277942004999957, 48.45938309900005 ], [ -123.277544289999966, 48.459500662000082 ], [ -123.277422689, 48.459536601000131 ], [ -123.27729755699994, 48.459551354000055 ], [ -123.27683998400002, 48.459605292000049 ], [ -123.27681361499998, 48.459608415000119 ], [ -123.276523314999935, 48.45960819500015 ], [ -123.276258884999947, 48.459580602000045 ], [ -123.276061909999967, 48.459485385000043 ], [ -123.275929914999935, 48.459362100000106 ], [ -123.2758715, 48.459203590000165 ], [ -123.275839001999913, 48.458947603000084 ], [ -123.275892703999901, 48.458718989000047 ], [ -123.27610108, 48.458405997000099 ], [ -123.27629075599999, 48.45827816200002 ], [ -123.276490306999946, 48.45814370300009 ], [ -123.276915895999963, 48.458021110000047 ], [ -123.278192120999989, 48.457780321000044 ], [ -123.278220677999911, 48.457774930000035 ], [ -123.278417484, 48.457737800000068 ], [ -123.278493105999928, 48.457721379000112 ], [ -123.27890021199994, 48.457632910000029 ], [ -123.279102684999927, 48.457633612000095 ], [ -123.27910661699994, 48.45742450000013 ], [ -123.279258866999953, 48.457159893000075 ], [ -123.279426206999972, 48.456869090000112 ], [ -123.279629101999959, 48.456675012000041 ], [ -123.279633090999965, 48.456440606000029 ], [ -123.279634695999931, 48.456296390000055 ], [ -123.279272701999929, 48.455900199000027 ], [ -123.279510204999937, 48.455761106000068 ], [ -123.280443011999964, 48.45503649500008 ], [ -123.283059887999954, 48.456441113000047 ], [ -123.285693485999928, 48.457931703000021 ], [ -123.286587797999985, 48.45840168100009 ], [ -123.28689669699996, 48.458563986000058 ], [ -123.28672727899999, 48.458768901000106 ], [ -123.287321704999954, 48.459041110000065 ], [ -123.287631070999964, 48.459292503000015 ], [ -123.287792583999945, 48.459423792000074 ], [ -123.28782959099999, 48.459532116000048 ], [ -123.28803053199999, 48.459575344000022 ], [ -123.288067003999942, 48.459583189000114 ], [ -123.288559272999976, 48.459763915000089 ], [ -123.289012478999908, 48.459930297000092 ], [ -123.28943063399997, 48.460073446000088 ], [ -123.290173907999957, 48.46032788900002 ], [ -123.287789504, 48.462230205000012 ], [ -123.28772779300003, 48.462199687000066 ], [ -123.286827229999972, 48.461703236000048 ], [ -123.286211902999952, 48.461366420000104 ], [ -123.285740681, 48.461107261000052 ], [ -123.284935422999965, 48.460669075000041 ], [ -123.284563110999954, 48.460450292000061 ], [ -123.284028129999939, 48.460190437000101 ], [ -123.283973292999946, 48.460163804000096 ], [ -123.283557619999954, 48.460019402000043 ], [ -123.28280440399999, 48.459757708000076 ], [ -123.282228835999888, 48.45957120800005 ], [ -123.282111041999926, 48.459533050000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228925501", "BldgCostT": "157110001", "sL_LossRatio": "0.911082193455773", "sL_AssetLoss": "155637.33", "sL_BldgLoss": "141798.4", "sL_StrLoss": "102617", "sL_NStrLoss": "39181.4", "sL_ContLoss": "13838.93", "geom_point": "0101000020E6100000B56087D6AFD15EC0013D05A7DB3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.27698159099999, 48.464397586000068 ], [ -123.276980657999928, 48.464225808000037 ], [ -123.276574837999988, 48.464226784000047 ], [ -123.276573371999987, 48.463956893000031 ], [ -123.276167555, 48.463957869000104 ], [ -123.27616608999989, 48.463687977000077 ], [ -123.275760276999947, 48.463688950000083 ], [ -123.275758814999918, 48.463419060000106 ], [ -123.275560434999974, 48.463419535000142 ], [ -123.275350111999927, 48.462885403000051 ], [ -123.275348310999945, 48.462552671000054 ], [ -123.275232437999975, 48.46244696100009 ], [ -123.275115934999931, 48.462341022000018 ], [ -123.274980463999938, 48.462341345000041 ], [ -123.274961697999913, 48.462142086000064 ], [ -123.274649578999984, 48.461989693000099 ], [ -123.274529014, 48.461888352000102 ], [ -123.274244402999969, 48.461533420000102 ], [ -123.27412539399991, 48.461533702000047 ], [ -123.274124586999932, 48.461383996000087 ], [ -123.27412348899999, 48.461382627000027 ], [ -123.274011738999945, 48.461243261000106 ], [ -123.274002938, 48.460918061000029 ], [ -123.274122054999964, 48.460913781000073 ], [ -123.274121033999975, 48.460724030000115 ], [ -123.273846534999947, 48.460724685000031 ], [ -123.273713935999965, 48.460481969000107 ], [ -123.273710889999961, 48.459915324000121 ], [ -123.27337519299995, 48.459916122000074 ], [ -123.273304764, 48.459852598000104 ], [ -123.273303656999971, 48.459646398000075 ], [ -123.272492092999926, 48.459648322000135 ], [ -123.272490648999906, 48.459378432000086 ], [ -123.272110632999983, 48.459379331000022 ], [ -123.272084562999964, 48.459322363000091 ], [ -123.272083426999984, 48.459109500000039 ], [ -123.27197088199992, 48.459109766000019 ], [ -123.271676526999926, 48.458899966000025 ], [ -123.2716765119999, 48.458897281000098 ], [ -123.271665781999943, 48.458892309000113 ], [ -123.271269197999956, 48.458609644000049 ], [ -123.271269004999937, 48.458573597000154 ], [ -123.270999991999972, 48.458302374000034 ], [ -123.27086178499999, 48.458302699000072 ], [ -123.270861056999976, 48.4581658520001 ], [ -123.270661865999941, 48.458033275000041 ], [ -123.27049613, 48.45803366500013 ], [ -123.270454358, 48.457992089000101 ], [ -123.27045384199999, 48.45789481900006 ], [ -123.270257790999921, 48.457764330000067 ], [ -123.270225597999968, 48.457764405000034 ], [ -123.27004643099994, 48.457586080000119 ], [ -123.2700464159999, 48.457583343000117 ], [ -123.270028895999957, 48.457544232000096 ], [ -123.269973833000037, 48.457421307000054 ], [ -123.269980278999924, 48.457100947000093 ], [ -123.269994337999961, 48.456989461000056 ], [ -123.269982843999955, 48.456973411000028 ], [ -123.269983585999952, 48.456936601000031 ], [ -123.269480401999971, 48.456667489000075 ], [ -123.269228647999924, 48.456405567000076 ], [ -123.269228286000029, 48.456337158000096 ], [ -123.269016336999968, 48.456166161000084 ], [ -123.269008990999964, 48.456147889000114 ], [ -123.268879091999921, 48.456148193000061 ], [ -123.268821342, 48.456112854000018 ], [ -123.26882044300001, 48.455942792 ], [ -123.268827190999929, 48.455922609000112 ], [ -123.268820276999932, 48.455911141000122 ], [ -123.268820103999971, 48.455878436 ], [ -123.268800582999972, 48.455878482000074 ], [ -123.26874560899995, 48.455787308 ], [ -123.268487888999957, 48.455670509000115 ], [ -123.268299310999936, 48.455645154000067 ], [ -123.26816142899996, 48.455610078000092 ], [ -123.268078888, 48.455610271000047 ], [ -123.268007008999973, 48.455578327000062 ], [ -123.268006928999966, 48.455563242000039 ], [ -123.26766811799996, 48.455341332000067 ], [ -123.267474765999964, 48.455341782000055 ], [ -123.267390899999953, 48.455304509000086 ], [ -123.26701261599996, 48.455341501000085 ], [ -123.26700985799999, 48.455342862000109 ], [ -123.26681149199996, 48.455343321000065 ], [ -123.266788541999958, 48.455348645000065 ], [ -123.266789080999942, 48.455451747000083 ], [ -123.266498619999965, 48.455595003000049 ], [ -123.266298736999943, 48.455614404000038 ], [ -123.265631778999989, 48.455615945000076 ], [ -123.265572611999957, 48.455603566000114 ], [ -123.265571345999959, 48.455360776000134 ], [ -123.265569937999985, 48.455359461000107 ], [ -123.265506736999924, 48.455250261000067 ], [ -123.265567037999944, 48.454833561000015 ], [ -123.265556753999974, 48.454806435000116 ], [ -123.26516271, 48.454807342999985 ], [ -123.265158446999976, 48.453988345000013 ], [ -123.265165198999966, 48.453987114000086 ], [ -123.265226435999921, 48.453720586000031 ], [ -123.265530977999958, 48.453708348000056 ], [ -123.265841598999927, 48.4536965960001 ], [ -123.266196604999934, 48.45372109900007 ], [ -123.266051795999942, 48.454776988000106 ], [ -123.267999694999943, 48.45464418500007 ], [ -123.268625094999962, 48.454873212000102 ], [ -123.270210491999961, 48.455053789000083 ], [ -123.270782391999887, 48.455671909000145 ], [ -123.271292113999948, 48.456034902000098 ], [ -123.27157271499999, 48.456132296000099 ], [ -123.271799891999976, 48.456288793000169 ], [ -123.271910004999967, 48.456440407000052 ], [ -123.272107884999954, 48.456520390000101 ], [ -123.274437580999987, 48.458266701000106 ], [ -123.274720786999964, 48.458389512000089 ], [ -123.274983696999982, 48.458443099000135 ], [ -123.277863790999916, 48.456145411000115 ], [ -123.277965622999915, 48.456159700000093 ], [ -123.278148502999912, 48.456125605000103 ], [ -123.278322606999922, 48.456032688000036 ], [ -123.278524608999973, 48.455995499000132 ], [ -123.278801022999971, 48.456002598000104 ], [ -123.27902778, 48.455979605000046 ], [ -123.279272701999929, 48.455900199000027 ], [ -123.279634695999931, 48.456296390000055 ], [ -123.279633090999965, 48.456440606000029 ], [ -123.279629101999959, 48.456675012000041 ], [ -123.279426206999972, 48.456869090000112 ], [ -123.279258866999953, 48.457159893000075 ], [ -123.27910661699994, 48.45742450000013 ], [ -123.279102684999927, 48.457633612000095 ], [ -123.27890021199994, 48.457632910000029 ], [ -123.278493105999928, 48.457721379000112 ], [ -123.278417484, 48.457737800000068 ], [ -123.278220677999911, 48.457774930000035 ], [ -123.278192120999989, 48.457780321000044 ], [ -123.276915895999963, 48.458021110000047 ], [ -123.276490306999946, 48.45814370300009 ], [ -123.27629075599999, 48.45827816200002 ], [ -123.27610108, 48.458405997000099 ], [ -123.275892703999901, 48.458718989000047 ], [ -123.275839001999913, 48.458947603000084 ], [ -123.2758715, 48.459203590000165 ], [ -123.275929914999935, 48.459362100000106 ], [ -123.276061909999967, 48.459485385000043 ], [ -123.276258884999947, 48.459580602000045 ], [ -123.276523314999935, 48.45960819500015 ], [ -123.27681361499998, 48.459608415000119 ], [ -123.27683998400002, 48.459605292000049 ], [ -123.27729755699994, 48.459551354000055 ], [ -123.277422689, 48.459536601000131 ], [ -123.277544289999966, 48.459500662000082 ], [ -123.277942004999957, 48.45938309900005 ], [ -123.27852172299994, 48.459258194000064 ], [ -123.279098021999957, 48.459121493000062 ], [ -123.2794065, 48.459133887000064 ], [ -123.279757306999954, 48.459255693000038 ], [ -123.280005293000016, 48.459404504000098 ], [ -123.280096709999967, 48.459477851000123 ], [ -123.280340906999982, 48.459673794000103 ], [ -123.280438087999954, 48.459722566000082 ], [ -123.280460292999948, 48.459733717000084 ], [ -123.280745640999967, 48.459771775000043 ], [ -123.28087840699996, 48.459789489000038 ], [ -123.281267885999924, 48.459707500000093 ], [ -123.28177702, 48.459424806000108 ], [ -123.282111041999926, 48.459533050000047 ], [ -123.282228835999888, 48.45957120800005 ], [ -123.28280440399999, 48.459757708000076 ], [ -123.283557619999954, 48.460019402000043 ], [ -123.283973292999946, 48.460163804000096 ], [ -123.284028129999939, 48.460190437000101 ], [ -123.284563110999954, 48.460450292000061 ], [ -123.284935422999965, 48.460669075000041 ], [ -123.283962591999952, 48.461336689000127 ], [ -123.283074181999979, 48.461863018000081 ], [ -123.282995309999933, 48.461909725000048 ], [ -123.281865666999934, 48.462578883000027 ], [ -123.281764821999928, 48.46263933700002 ], [ -123.281732919999968, 48.462658448000049 ], [ -123.281103505, 48.463035511000086 ], [ -123.280965670999962, 48.463097007000052 ], [ -123.280672997999943, 48.463227603000107 ], [ -123.280482503, 48.463312586000022 ], [ -123.280177718999965, 48.463565390000021 ], [ -123.279854547999946, 48.463848975000111 ], [ -123.279852013999971, 48.463851244000068 ], [ -123.27974628599999, 48.463858299000066 ], [ -123.279551913999967, 48.463949698000064 ], [ -123.279355593, 48.463950175000072 ], [ -123.27930523699996, 48.463959661000032 ], [ -123.279009354999971, 48.464149072000041 ], [ -123.279011227999945, 48.464490798000128 ], [ -123.278798963, 48.464491313000103 ], [ -123.278756537999968, 48.46457086100002 ], [ -123.27860660599994, 48.464710840000073 ], [ -123.278606883999913, 48.464761671000069 ], [ -123.27811270699999, 48.4647628660001 ], [ -123.278085597999933, 48.464744213000102 ], [ -123.277084586999948, 48.464440802000041 ], [ -123.27698159099999, 48.464397586000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116997584", "BldgCostT": "75058334", "sL_LossRatio": "0.960241801963356", "sL_AssetLoss": "109680.499", "sL_BldgLoss": "105319.8", "sL_StrLoss": "86894.9", "sL_NStrLoss": "18424.9", "sL_ContLoss": "4360.699", "geom_point": "0101000020E6100000DE28C302A9D15EC043CC789D053A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.274448191999937, 48.451877592000066 ], [ -123.274149690999963, 48.451833793000063 ], [ -123.273788100999951, 48.451923692000051 ], [ -123.27258530899995, 48.452880296000096 ], [ -123.272215407999951, 48.45318460300016 ], [ -123.271140988999917, 48.454092095000092 ], [ -123.268506018999929, 48.453888874000071 ], [ -123.268103185999934, 48.453857797000083 ], [ -123.268066892999968, 48.454439412000106 ], [ -123.267999694999943, 48.45464418500007 ], [ -123.266051795999942, 48.454776988000106 ], [ -123.266196604999934, 48.45372109900007 ], [ -123.265841598999927, 48.4536965960001 ], [ -123.265530977999958, 48.453708348000056 ], [ -123.265226435999921, 48.453720586000031 ], [ -123.265231306999979, 48.453699382000053 ], [ -123.265156742, 48.453661107000087 ], [ -123.265152593999971, 48.452864390000073 ], [ -123.265388328999933, 48.452647667000058 ], [ -123.265987679999967, 48.452646283000028 ], [ -123.266188338999939, 48.45254966100007 ], [ -123.266348436999948, 48.45243936100006 ], [ -123.266367366999958, 48.452400259000044 ], [ -123.266364392999961, 48.451831940000062 ], [ -123.266966585, 48.451689891000079 ], [ -123.267073794999988, 48.451598700000133 ], [ -123.266923812999934, 48.451419295000029 ], [ -123.266679520999929, 48.45131240000012 ], [ -123.266362625999989, 48.45149413100004 ], [ -123.266361590999963, 48.451295945000069 ], [ -123.265955873999971, 48.451296884000037 ], [ -123.265953376999946, 48.450818655000063 ], [ -123.265973708999979, 48.450818202000107 ], [ -123.266207524999942, 48.450486617000131 ], [ -123.267574483999965, 48.450483448000014 ], [ -123.267573724999949, 48.450339325000137 ], [ -123.267716585999935, 48.450238595000023 ], [ -123.268026880999955, 48.450445100000096 ], [ -123.268190101999963, 48.450309806000114 ], [ -123.268648992999928, 48.450435106000064 ], [ -123.268791441999895, 48.450448683000076 ], [ -123.268791610999969, 48.450480611000089 ], [ -123.268958632999912, 48.450480221000092 ], [ -123.268959528999957, 48.450464701000037 ], [ -123.269665690999915, 48.450531996000031 ], [ -123.270556098999961, 48.450430888000085 ], [ -123.270678309999965, 48.450358193000049 ], [ -123.270783707999925, 48.449952292000027 ], [ -123.27140590199997, 48.449807094000114 ], [ -123.271581014999967, 48.449852591000045 ], [ -123.272120984999944, 48.449697402000069 ], [ -123.272244890999957, 48.449797105000073 ], [ -123.272150391999944, 48.450049191000076 ], [ -123.272030390999973, 48.450147390000055 ], [ -123.271746112999935, 48.450148896000087 ], [ -123.271425208999943, 48.450815389000134 ], [ -123.271426584999958, 48.451076007000061 ], [ -123.272062416000011, 48.451316693000066 ], [ -123.2731705899999, 48.450936489000128 ], [ -123.273778599999957, 48.450899399000093 ], [ -123.274089198999931, 48.451043305000049 ], [ -123.274090699999959, 48.451285395000099 ], [ -123.274240701999958, 48.451348094000139 ], [ -123.274469495999952, 48.45125831000005 ], [ -123.274475802999987, 48.451258682000031 ], [ -123.274475900999946, 48.451276879000062 ], [ -123.274773080000017, 48.451276170000057 ], [ -123.275050717999974, 48.451292502000044 ], [ -123.274917079999952, 48.451005931000047 ], [ -123.275248716999954, 48.451005137000067 ], [ -123.275285835999966, 48.450998081000144 ], [ -123.275285150999963, 48.450871521000124 ], [ -123.275536322999955, 48.45100340400009 ], [ -123.275711704999978, 48.450993392000065 ], [ -123.275737995999989, 48.450912291000108 ], [ -123.275494709, 48.450759893000082 ], [ -123.275467612999961, 48.450616005000029 ], [ -123.27572237, 48.450464215000039 ], [ -123.276620582999954, 48.450462061000096 ], [ -123.277075138, 48.450392562000026 ], [ -123.277733937999955, 48.450352761 ], [ -123.278035435999982, 48.450373886000087 ], [ -123.278436398999958, 48.450774374000062 ], [ -123.278255740999967, 48.450816650000043 ], [ -123.278094502999977, 48.451319308000031 ], [ -123.278632891999919, 48.451456318000034 ], [ -123.278946044999927, 48.451535999000029 ], [ -123.280104871999981, 48.451926508000092 ], [ -123.281048288999969, 48.452141905000083 ], [ -123.281385408999967, 48.45233809300003 ], [ -123.281545702999921, 48.452531597000139 ], [ -123.281659168999951, 48.452763888000121 ], [ -123.28179332299996, 48.453038504000084 ], [ -123.281919301999949, 48.453124709000058 ], [ -123.28215210499998, 48.45330200100004 ], [ -123.282446132999951, 48.453628701000135 ], [ -123.282847583999967, 48.454074693000067 ], [ -123.283143389, 48.45428340900002 ], [ -123.28362861, 48.454462691000117 ], [ -123.284290022999969, 48.454593339000077 ], [ -123.284887293999972, 48.454711313000139 ], [ -123.285113103999919, 48.4547558800001 ], [ -123.285532417999931, 48.454883898000112 ], [ -123.285962117999986, 48.455206006000076 ], [ -123.286356004999973, 48.455635495000102 ], [ -123.286590505999982, 48.456184395000051 ], [ -123.286739587999961, 48.456409092000051 ], [ -123.287078106999985, 48.45665050200008 ], [ -123.287581613999961, 48.457099905000092 ], [ -123.287799190999976, 48.457378696000063 ], [ -123.287772417999975, 48.457540296000097 ], [ -123.287395490999984, 48.458133695000129 ], [ -123.28738348899995, 48.458152613000102 ], [ -123.28689669699996, 48.458563986000058 ], [ -123.286587797999985, 48.45840168100009 ], [ -123.285693485999928, 48.457931703000021 ], [ -123.283059887999954, 48.456441113000047 ], [ -123.280443011999964, 48.45503649500008 ], [ -123.279925921999933, 48.454755397000078 ], [ -123.279179003999943, 48.454360203000093 ], [ -123.278415519999939, 48.453950091000074 ], [ -123.275124663999947, 48.452204314000014 ], [ -123.274448191999937, 48.451877592000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56335583", "BldgCostT": "38588333", "sL_LossRatio": "0.961541489769978", "sL_AssetLoss": "76840.99", "sL_BldgLoss": "73885.8", "sL_StrLoss": "61925.9", "sL_NStrLoss": "11959.9", "sL_ContLoss": "2955.19", "geom_point": "0101000020E61000003AE02D6F92D15EC021A644123D3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.271292113999948, 48.456034902000098 ], [ -123.270782391999887, 48.455671909000145 ], [ -123.270210491999961, 48.455053789000083 ], [ -123.268625094999962, 48.454873212000102 ], [ -123.267999694999943, 48.45464418500007 ], [ -123.268066892999968, 48.454439412000106 ], [ -123.268103185999934, 48.453857797000083 ], [ -123.268506018999929, 48.453888874000071 ], [ -123.271140988999917, 48.454092095000092 ], [ -123.272215407999951, 48.45318460300016 ], [ -123.27258530899995, 48.452880296000096 ], [ -123.273788100999951, 48.451923692000051 ], [ -123.274149690999963, 48.451833793000063 ], [ -123.274448191999937, 48.451877592000066 ], [ -123.275124663999947, 48.452204314000014 ], [ -123.278415519999939, 48.453950091000074 ], [ -123.279179003999943, 48.454360203000093 ], [ -123.279925921999933, 48.454755397000078 ], [ -123.280443011999964, 48.45503649500008 ], [ -123.279510204999937, 48.455761106000068 ], [ -123.279272701999929, 48.455900199000027 ], [ -123.27902778, 48.455979605000046 ], [ -123.278801022999971, 48.456002598000104 ], [ -123.278524608999973, 48.455995499000132 ], [ -123.278322606999922, 48.456032688000036 ], [ -123.278148502999912, 48.456125605000103 ], [ -123.277965622999915, 48.456159700000093 ], [ -123.277863790999916, 48.456145411000115 ], [ -123.274983696999982, 48.458443099000135 ], [ -123.274720786999964, 48.458389512000089 ], [ -123.274437580999987, 48.458266701000106 ], [ -123.272107884999954, 48.456520390000101 ], [ -123.271910004999967, 48.456440407000052 ], [ -123.271799891999976, 48.456288793000169 ], [ -123.27157271499999, 48.456132296000099 ], [ -123.271292113999948, 48.456034902000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149097834", "BldgCostT": "99668334", "sL_LossRatio": "0.926627795759805", "sL_AssetLoss": "236819.79", "sL_BldgLoss": "219443.8", "sL_StrLoss": "171525.1", "sL_NStrLoss": "47918.7", "sL_ContLoss": "17375.99", "geom_point": "0101000020E6100000CB4B8AD12BD45EC0C104666C85344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.305904793999929, 48.413768924000046 ], [ -123.30574623699998, 48.413750240000077 ], [ -123.305053529999924, 48.413743102000112 ], [ -123.304438509999983, 48.413736772000114 ], [ -123.304291185999915, 48.413717698000013 ], [ -123.304304802999965, 48.413526794000056 ], [ -123.304288038999985, 48.413484033000053 ], [ -123.304222387999957, 48.413316413000082 ], [ -123.303959013999958, 48.413014808000042 ], [ -123.30324310599994, 48.412440090000075 ], [ -123.303151434999947, 48.412242581000051 ], [ -123.302766083999984, 48.411412399000014 ], [ -123.304854917999933, 48.410902898000117 ], [ -123.305093294999935, 48.410578888000039 ], [ -123.305089916999947, 48.410471396000027 ], [ -123.304244308999927, 48.410494084000049 ], [ -123.303425600999944, 48.41056340100004 ], [ -123.30327972299996, 48.410371599000058 ], [ -123.303147037999963, 48.410036649000084 ], [ -123.30310941299993, 48.409648605000029 ], [ -123.303514591999914, 48.409503394000076 ], [ -123.304001709999937, 48.409601601000119 ], [ -123.304853704999942, 48.409940612000085 ], [ -123.306468887000023, 48.410926110000077 ], [ -123.306724809999935, 48.410845004000087 ], [ -123.306839271999976, 48.410710782000052 ], [ -123.307451492000013, 48.410709149000112 ], [ -123.307211796999979, 48.410870596000095 ], [ -123.307185589999946, 48.411050090000053 ], [ -123.307503919999959, 48.411338873000012 ], [ -123.307504199999983, 48.411385402000093 ], [ -123.307556681999969, 48.411386737000029 ], [ -123.30770049799996, 48.411517203000074 ], [ -123.308474593999918, 48.411955794000107 ], [ -123.308434094999939, 48.412126704000087 ], [ -123.308651622999903, 48.412351801000078 ], [ -123.308708208, 48.412558290000057 ], [ -123.309345004999983, 48.412996905000121 ], [ -123.309946877999934, 48.413073422000103 ], [ -123.309947230999924, 48.413131522000107 ], [ -123.310352640999966, 48.413130430000109 ], [ -123.310352608999892, 48.413125002000122 ], [ -123.310387198999976, 48.41312939900007 ], [ -123.312062420999979, 48.413152205000053 ], [ -123.313128982999956, 48.413049592000043 ], [ -123.313299915999963, 48.413020201000087 ], [ -123.314561311999952, 48.412803295000103 ], [ -123.31563900399999, 48.412404499000104 ], [ -123.315961217, 48.412133897000054 ], [ -123.316015094999969, 48.411863291000074 ], [ -123.315890300999953, 48.41157558900003 ], [ -123.316633994999918, 48.411376206000085 ], [ -123.316942192999988, 48.411176792000063 ], [ -123.317089408999948, 48.410970303000099 ], [ -123.317386813999974, 48.410887698000089 ], [ -123.317481207999933, 48.41077090400011 ], [ -123.316988304999967, 48.409988990000038 ], [ -123.316819153, 48.409884642000108 ], [ -123.316819084999949, 48.409874047000066 ], [ -123.316802049999964, 48.409874093000077 ], [ -123.31641220299997, 48.409633604000064 ], [ -123.316412025999938, 48.409605270000029 ], [ -123.31636647599997, 48.409605395000057 ], [ -123.316005256999929, 48.409382562000062 ], [ -123.316004971999988, 48.409336492000072 ], [ -123.315930908, 48.409336696000018 ], [ -123.31575550299999, 48.409228488000117 ], [ -123.315817522999964, 48.409083653000096 ], [ -123.316060505999971, 48.408516392000102 ], [ -123.316385205999936, 48.408299900000046 ], [ -123.316474375000013, 48.408303841000055 ], [ -123.316964420999966, 48.408325499000057 ], [ -123.31718108699999, 48.408234391000072 ], [ -123.317641891999969, 48.408322700000049 ], [ -123.317979711999925, 48.408295591000055 ], [ -123.31814020899999, 48.408150408000076 ], [ -123.318017018999981, 48.407827101000052 ], [ -123.318191909999939, 48.407664695000058 ], [ -123.31822961599994, 48.407458193000146 ], [ -123.318302390999975, 48.407440881000134 ], [ -123.318425457999965, 48.40744054200011 ], [ -123.318425276999946, 48.407411648000071 ], [ -123.318498997999967, 48.407394112000112 ], [ -123.318728261999922, 48.407169807000074 ], [ -123.319260495999984, 48.407168331000079 ], [ -123.320014612999969, 48.407516601000104 ], [ -123.32021749799999, 48.407452503000108 ], [ -123.320403412999937, 48.407227506000091 ], [ -123.320510019000011, 48.406794501000078 ], [ -123.321061508999975, 48.406334492000042 ], [ -123.321112285999959, 48.405992705000067 ], [ -123.321287509999976, 48.40576769800002 ], [ -123.321543595999984, 48.405649401000097 ], [ -123.322043493999956, 48.405675099000113 ], [ -123.322161820999924, 48.405717437000085 ], [ -123.322692190999987, 48.40590720700007 ], [ -123.322875536999945, 48.406016895000079 ], [ -123.322875928999949, 48.406078654000055 ], [ -123.322978288999963, 48.406078367000106 ], [ -123.323139800999954, 48.406174993000079 ], [ -123.323399282999944, 48.406525293000058 ], [ -123.323941507999947, 48.406865703000072 ], [ -123.324097893999962, 48.407004471000079 ], [ -123.324098303999918, 48.407068954000138 ], [ -123.32422581499999, 48.407154446000071 ], [ -123.324266778999942, 48.407154331000129 ], [ -123.32487812, 48.407696790000067 ], [ -123.324962297999917, 48.407771500000081 ], [ -123.325368009000016, 48.40798658900011 ], [ -123.32539519700002, 48.40811190700002 ], [ -123.32508699199991, 48.408311312000137 ], [ -123.325115103999948, 48.408500691000064 ], [ -123.32489828599995, 48.408636001000026 ], [ -123.325002355999942, 48.408871927000085 ], [ -123.324971737999959, 48.408940261000097 ], [ -123.325007936999953, 48.409157361000034 ], [ -123.324946538999896, 48.409196761000089 ], [ -123.324922688999933, 48.40921150100008 ], [ -123.324923676999958, 48.409366534000128 ], [ -123.324702809999934, 48.409490504000111 ], [ -123.324593210999964, 48.409392299000082 ], [ -123.32443208200003, 48.409410804000082 ], [ -123.324150388999968, 48.40974400300005 ], [ -123.324151710999942, 48.40997899700006 ], [ -123.324639410999907, 48.410372086000088 ], [ -123.325670991999985, 48.410946105000093 ], [ -123.326676852999981, 48.411235495000035 ], [ -123.326609676999951, 48.411614293000113 ], [ -123.326534391999971, 48.411944313000077 ], [ -123.324891406999896, 48.411229995000014 ], [ -123.32393801299996, 48.410724298000034 ], [ -123.323589201999965, 48.410642394000014 ], [ -123.323206219999946, 48.410665200000047 ], [ -123.322658815999915, 48.410756786 ], [ -123.322370447999972, 48.410776608000091 ], [ -123.322168054999963, 48.410729101000044 ], [ -123.321381924999983, 48.410438596000034 ], [ -123.32119481499997, 48.410336499000046 ], [ -123.32108963499995, 48.410194099000051 ], [ -123.320942513999924, 48.409552696000148 ], [ -123.320909690999954, 48.40941662000008 ], [ -123.320801320999976, 48.409257806000021 ], [ -123.320725157999931, 48.409188339000082 ], [ -123.320457606, 48.408944286000057 ], [ -123.319986512999918, 48.40852289900009 ], [ -123.319804789999964, 48.408468700000064 ], [ -123.319606304999979, 48.408495190000139 ], [ -123.31954267799992, 48.4085250790001 ], [ -123.317784214999904, 48.40935089500001 ], [ -123.317626698999931, 48.409511111000079 ], [ -123.317638221, 48.409664704000079 ], [ -123.317663035999914, 48.409696860000075 ], [ -123.317757593999929, 48.409819191000068 ], [ -123.318056804999955, 48.410013502000027 ], [ -123.318213001999979, 48.410232094000129 ], [ -123.318336384999938, 48.410554492000095 ], [ -123.318383389999951, 48.411033701000029 ], [ -123.318300996999938, 48.411178602000099 ], [ -123.31816309499996, 48.411304111000057 ], [ -123.317141810999928, 48.412067302 ], [ -123.316920005999918, 48.412007589000034 ], [ -123.316627505999975, 48.412051587000057 ], [ -123.316389570999959, 48.412189492000081 ], [ -123.31552419799999, 48.412691002000045 ], [ -123.315197902999941, 48.412807202000096 ], [ -123.31419460199993, 48.413063095000012 ], [ -123.313341609999981, 48.413190307000107 ], [ -123.311979275999988, 48.413306304000045 ], [ -123.310689085999954, 48.413269887000077 ], [ -123.309860617999959, 48.413203693000064 ], [ -123.309822775999976, 48.413804936000041 ], [ -123.309811451999906, 48.413984921000086 ], [ -123.30980574799996, 48.414075670000074 ], [ -123.308933132, 48.414853127000079 ], [ -123.308020604999967, 48.415124844000061 ], [ -123.307986502999981, 48.414918353000047 ], [ -123.307649275999921, 48.414443500000047 ], [ -123.307366190999971, 48.414252575000077 ], [ -123.307293108999943, 48.414203256000064 ], [ -123.307110153999972, 48.41407987300002 ], [ -123.306824160999938, 48.41400303700005 ], [ -123.306664734999956, 48.413960206000091 ], [ -123.30623531399999, 48.413844844000081 ], [ -123.305990110999943, 48.413778998000076 ], [ -123.305904793999929, 48.413768924000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56090833", "BldgCostT": "38683333", "sL_LossRatio": "0.960138474280544", "sL_AssetLoss": "81522.72", "sL_BldgLoss": "78273.1", "sL_StrLoss": "64818.3", "sL_NStrLoss": "13454.8", "sL_ContLoss": "3249.62", "geom_point": "0101000020E6100000FF4EA445C7D25EC07B7D52921A3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.29895505199994, 48.474426104000031 ], [ -123.298953470999948, 48.474156906000047 ], [ -123.298556838999943, 48.474157935000022 ], [ -123.298547363999944, 48.474122231000074 ], [ -123.298546761999958, 48.474019742000117 ], [ -123.298741895999939, 48.473723806000059 ], [ -123.298698706999957, 48.473427610000066 ], [ -123.298542890999926, 48.473359787000064 ], [ -123.298542822999977, 48.473348290000054 ], [ -123.298516634999956, 48.473348359000056 ], [ -123.298135955999953, 48.473182656000048 ], [ -123.298135351999946, 48.47307945300004 ], [ -123.297323575999911, 48.473081553000057 ], [ -123.297320422000013, 48.472541773000074 ], [ -123.296986302, 48.472542636000071 ], [ -123.296914946999905, 48.472612956000091 ], [ -123.296916111999934, 48.472812711000145 ], [ -123.296711710999929, 48.4728132380001 ], [ -123.296511371999955, 48.473010662000057 ], [ -123.296511798999944, 48.473083647000102 ], [ -123.29643711599999, 48.473083839000083 ], [ -123.296107793999965, 48.473408367000033 ], [ -123.296109050999945, 48.473624471000065 ], [ -123.295887915999913, 48.473625040000101 ], [ -123.295686982999939, 48.473823042000049 ], [ -123.295615636999941, 48.473836716000108 ], [ -123.295424137999973, 48.473852461000021 ], [ -123.294992835999921, 48.473627338000014 ], [ -123.294949348, 48.47362744900007 ], [ -123.294891211999939, 48.473599811000071 ], [ -123.294891063999955, 48.473574216000081 ], [ -123.294478294999948, 48.473358761000071 ], [ -123.294384682999947, 48.47335900100002 ], [ -123.294077177999924, 48.473212807000031 ], [ -123.294076810999968, 48.473149193000026 ], [ -123.293963761, 48.473090183000103 ], [ -123.292905604999945, 48.473092881000035 ], [ -123.292858710999965, 48.473077163000077 ], [ -123.29285778900001, 48.472916948000062 ], [ -123.292850136999931, 48.472868861000059 ], [ -123.292777369999953, 48.472823313000042 ], [ -123.292045475999913, 48.472825172000071 ], [ -123.29203773099999, 48.471475723 ], [ -123.292849482999912, 48.471473661000083 ], [ -123.292847144999911, 48.471067464000072 ], [ -123.292840937999969, 48.471062461000102 ], [ -123.292565237999952, 48.47099076100006 ], [ -123.292232237999926, 48.471026761000054 ], [ -123.292035550999955, 48.471095785000053 ], [ -123.292036181999919, 48.471205833000035 ], [ -123.291719672999974, 48.471206636000012 ], [ -123.291646937999957, 48.471232162000035 ], [ -123.290553738999961, 48.471250561000026 ], [ -123.290451194999932, 48.47120984400005 ], [ -123.29000681399998, 48.471210965000054 ], [ -123.2900059299999, 48.471055557000057 ], [ -123.289860236999942, 48.471013060000104 ], [ -123.289499014999976, 48.470942350000087 ], [ -123.288809457999918, 48.470944083000077 ], [ -123.288644605999963, 48.470844086000049 ], [ -123.28838095499998, 48.47079771700006 ], [ -123.28837873099998, 48.470405374000016 ], [ -123.287308362999937, 48.470408052000082 ], [ -123.287160591999964, 48.47031279100004 ], [ -123.28715503899997, 48.469328859000051 ], [ -123.286749179999973, 48.46932987100012 ], [ -123.286745504999942, 48.468677630000073 ], [ -123.286522702999918, 48.468520753000099 ], [ -123.286338766, 48.468521211000073 ], [ -123.28633830699998, 48.46843981500011 ], [ -123.286192137999961, 48.468397861000085 ], [ -123.286045070999975, 48.468252047000085 ], [ -123.285931395999953, 48.468252330000141 ], [ -123.285930736999973, 48.46813477400012 ], [ -123.285863202999934, 48.467982605 ], [ -123.285525632999978, 48.467983443000065 ], [ -123.28552402, 48.467981099000099 ], [ -123.285522518999954, 48.467713557000089 ], [ -123.28534029399998, 48.467714008000065 ], [ -123.285258710000022, 48.467595408000065 ], [ -123.28511590799998, 48.467578153000048 ], [ -123.28511590899997, 48.467577989000056 ], [ -123.285113919999901, 48.467577912000081 ], [ -123.284893695000022, 48.467551303000107 ], [ -123.28479359799999, 48.467618321000039 ], [ -123.284710429999919, 48.467644688000057 ], [ -123.28471059499999, 48.467673896000086 ], [ -123.284648121999922, 48.467715723000019 ], [ -123.284113346999931, 48.467717044000089 ], [ -123.283987785999926, 48.467689406000027 ], [ -123.283929297999961, 48.467717498000106 ], [ -123.283089224999955, 48.467719568000049 ], [ -123.283087436999921, 48.467718683000086 ], [ -123.283085942999932, 48.467449681000097 ], [ -123.282802989999965, 48.467450377000027 ], [ -123.282781696999947, 48.467413113000134 ], [ -123.282273501999924, 48.467316025000052 ], [ -123.282271260999948, 48.466911894000106 ], [ -123.281833173999942, 48.466912968000074 ], [ -123.281791304999928, 48.46683919900007 ], [ -123.28145893199995, 48.46679633800003 ], [ -123.281455104999949, 48.466104212000076 ], [ -123.28267260399997, 48.466101227000074 ], [ -123.282674878999956, 48.466510843000016 ], [ -123.283129808999959, 48.466639892000053 ], [ -123.284377489999912, 48.46663681600009 ], [ -123.284632938999934, 48.466555861000117 ], [ -123.284704062999978, 48.466506304000049 ], [ -123.284702365999976, 48.466202951000142 ], [ -123.284537990000032, 48.466096631 ], [ -123.284295936999939, 48.466097229000063 ], [ -123.284295476999944, 48.466014953000091 ], [ -123.283807736999947, 48.465863061000114 ], [ -123.283618265, 48.465829007000067 ], [ -123.281859443000016, 48.465833327000055 ], [ -123.281854959999961, 48.465023657000138 ], [ -123.281449133999914, 48.465024649000057 ], [ -123.281444657999941, 48.464214978000051 ], [ -123.280706528999971, 48.464216782000065 ], [ -123.280632505999904, 48.464123171000026 ], [ -123.280631532999948, 48.463947070000053 ], [ -123.28049351599999, 48.463947406000052 ], [ -123.280450104999915, 48.4638925100001 ], [ -123.280300818999933, 48.463821302000106 ], [ -123.279852013999971, 48.463851244000068 ], [ -123.279854547999946, 48.463848975000111 ], [ -123.280177718999965, 48.463565390000021 ], [ -123.280482503, 48.463312586000022 ], [ -123.280672997999943, 48.463227603000107 ], [ -123.280965670999962, 48.463097007000052 ], [ -123.281103505, 48.463035511000086 ], [ -123.281732919999968, 48.462658448000049 ], [ -123.281764821999928, 48.46263933700002 ], [ -123.281865666999934, 48.462578883000027 ], [ -123.283060542999976, 48.464275841000138 ], [ -123.283070392999917, 48.464289844000064 ], [ -123.283129577999915, 48.464505077000119 ], [ -123.283050405999958, 48.464990033000063 ], [ -123.283092739999987, 48.465146216000065 ], [ -123.283259649999962, 48.4652731400001 ], [ -123.28350811199999, 48.465366988000078 ], [ -123.283789235999947, 48.465410263000116 ], [ -123.284135532999983, 48.465423648000105 ], [ -123.284696329000028, 48.465370382000117 ], [ -123.284867489999968, 48.465376592000041 ], [ -123.285047249999963, 48.465444311000105 ], [ -123.28540504099999, 48.465774518000025 ], [ -123.285752783999953, 48.466374111000057 ], [ -123.286018790999947, 48.466609986000037 ], [ -123.286342512999965, 48.466733696000098 ], [ -123.286703313999936, 48.466754695000077 ], [ -123.286729544999957, 48.466760969000092 ], [ -123.286780349999972, 48.466773148000065 ], [ -123.286956416999971, 48.466815311000076 ], [ -123.287166080999924, 48.466926108000109 ], [ -123.287368794999963, 48.467089104000067 ], [ -123.28758361199999, 48.467345295000086 ], [ -123.28780746699999, 48.467515193000104 ], [ -123.288149291999986, 48.467607810000061 ], [ -123.28845148, 48.467659700000056 ], [ -123.28864069899997, 48.467822404000046 ], [ -123.288745696999953, 48.468182199000118 ], [ -123.288788403999888, 48.468543103000094 ], [ -123.289041104999953, 48.469129400000043 ], [ -123.289284195999954, 48.469388082000101 ], [ -123.289921500999966, 48.469862591000044 ], [ -123.290440697999955, 48.470110309000077 ], [ -123.290914198999971, 48.470167504000067 ], [ -123.291304814999947, 48.470116194000148 ], [ -123.29175398, 48.469983395000092 ], [ -123.292160098999943, 48.469732191000062 ], [ -123.292749910999959, 48.46915270300007 ], [ -123.292761201999923, 48.469141611000069 ], [ -123.293160538, 48.468803914000063 ], [ -123.293954805999959, 48.468132302000065 ], [ -123.294021293999904, 48.468007689000068 ], [ -123.294004904999966, 48.467892786000036 ], [ -123.29385821299999, 48.46762480100012 ], [ -123.293788606999968, 48.467413430000093 ], [ -123.293748912999931, 48.467292895000128 ], [ -123.293834256999943, 48.466841320000121 ], [ -123.293863364999964, 48.466687374000081 ], [ -123.293895577999933, 48.466516881000075 ], [ -123.293970046999931, 48.466122817000056 ], [ -123.294004706999942, 48.465939506000062 ], [ -123.294185402, 48.465733093000019 ], [ -123.295415400999929, 48.466420092000135 ], [ -123.29604703699998, 48.466780537000083 ], [ -123.297819189000023, 48.467791714000036 ], [ -123.300548356999954, 48.469293364000066 ], [ -123.30054836599993, 48.469294663000106 ], [ -123.300550710999971, 48.469294657000042 ], [ -123.300955546999887, 48.469517393000068 ], [ -123.300955820999931, 48.469563493000038 ], [ -123.301038940999945, 48.469563276 ], [ -123.301284090999928, 48.469698150000113 ], [ -123.301362738999927, 48.469741423000116 ], [ -123.301363277999926, 48.469832321000048 ], [ -123.301527173999943, 48.469831891000148 ], [ -123.301769935999985, 48.469965454000054 ], [ -123.301770739999981, 48.470101147000058 ], [ -123.302015404999921, 48.470100505000097 ], [ -123.303141807999964, 48.470720204000017 ], [ -123.299073094999954, 48.474486172000113 ], [ -123.29895505199994, 48.474426104000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241324916", "BldgCostT": "156971666", "sL_LossRatio": "0.817916599863359", "sL_AssetLoss": "380969.16", "sL_BldgLoss": "311601", "sL_StrLoss": "200145.3", "sL_NStrLoss": "111455.7", "sL_ContLoss": "69368.16", "geom_point": "0101000020E61000001F320652B9D55EC01C18261169344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.33886268199997, 48.41236049900008 ], [ -123.337713693999902, 48.41221259100012 ], [ -123.33707360899993, 48.412201005000078 ], [ -123.33634848699991, 48.412286397000081 ], [ -123.336330875999977, 48.411640295000026 ], [ -123.336306202999964, 48.410882087000054 ], [ -123.335086790999952, 48.410858609000073 ], [ -123.333930000999942, 48.410850198000077 ], [ -123.332805716999957, 48.410861586000053 ], [ -123.332252594999943, 48.41086380200008 ], [ -123.331571390999954, 48.411126295000052 ], [ -123.331385899999972, 48.411234296000046 ], [ -123.330816401999982, 48.411335412000028 ], [ -123.330216827999934, 48.411443798000093 ], [ -123.329205563999949, 48.411473855000104 ], [ -123.32960578099997, 48.411366197000071 ], [ -123.329766514999974, 48.41127440200006 ], [ -123.330238997, 48.411004512000069 ], [ -123.330534592999982, 48.41074239300012 ], [ -123.330572696, 48.410337898000108 ], [ -123.330205614999954, 48.410006095 ], [ -123.329933994999976, 48.409953406000035 ], [ -123.32979128499997, 48.409824211000135 ], [ -123.32978962599995, 48.409567705 ], [ -123.32953158399998, 48.409568445000104 ], [ -123.32967160599992, 48.409125892000084 ], [ -123.33010992799997, 48.408801323000041 ], [ -123.330116382999947, 48.408796569000074 ], [ -123.330257296999946, 48.408692199000079 ], [ -123.330587080999948, 48.408448002000092 ], [ -123.332152805999954, 48.40810189300003 ], [ -123.332686405999965, 48.408106996000065 ], [ -123.332908113, 48.408109097000043 ], [ -123.333572498999956, 48.408260009000095 ], [ -123.334646222999979, 48.408337629000059 ], [ -123.334646699999922, 48.408410463000052 ], [ -123.33511066299999, 48.408440605000038 ], [ -123.335330475, 48.408501859000062 ], [ -123.335885543999964, 48.408656527000069 ], [ -123.336022637, 48.408739982000029 ], [ -123.336183360999911, 48.408739512000103 ], [ -123.33621057799995, 48.40874709500013 ], [ -123.336270652999929, 48.408779679000119 ], [ -123.336271349999961, 48.408885350000062 ], [ -123.336022811999896, 48.409044790000038 ], [ -123.336051703999971, 48.409368092000129 ], [ -123.336163507999956, 48.409404887000015 ], [ -123.336540714999927, 48.409529007000081 ], [ -123.336618669999922, 48.409590544000068 ], [ -123.336913779999989, 48.409823401000075 ], [ -123.337165206999956, 48.410021806000039 ], [ -123.337856185999968, 48.410262509000091 ], [ -123.338883091999961, 48.410322300000146 ], [ -123.340039336999965, 48.410210804000023 ], [ -123.340611710999909, 48.410155600000095 ], [ -123.342121998999957, 48.409746889000104 ], [ -123.344188534999972, 48.408897626000062 ], [ -123.344300657999966, 48.408851545000097 ], [ -123.344562709999963, 48.408743861000062 ], [ -123.345275514999955, 48.40845089000009 ], [ -123.345650418999952, 48.408223816000067 ], [ -123.348347428999944, 48.406590168000051 ], [ -123.348695733999975, 48.406379188000038 ], [ -123.348962294999964, 48.406217701000045 ], [ -123.349177609999941, 48.40598269700012 ], [ -123.348944998999968, 48.405524100000086 ], [ -123.349140210999948, 48.404669589000022 ], [ -123.349003306999975, 48.404354786000091 ], [ -123.348527307999944, 48.403941810000056 ], [ -123.348323207999925, 48.40361 ], [ -123.348575553999979, 48.403148808000076 ], [ -123.34864350399999, 48.403024588000086 ], [ -123.348913179999968, 48.402897894000091 ], [ -123.349107735999937, 48.402909618000123 ], [ -123.349197005999912, 48.40291499400012 ], [ -123.349548304999985, 48.403021798000054 ], [ -123.349766574999961, 48.40324539300012 ], [ -123.35001760399993, 48.404352002000095 ], [ -123.350398202999926, 48.404836204000055 ], [ -123.350914988999961, 48.405249203000075 ], [ -123.351497910999967, 48.405559316000108 ], [ -123.351082976000015, 48.406035705000086 ], [ -123.350013621999977, 48.405817806000051 ], [ -123.349775405999978, 48.405807291000066 ], [ -123.34959659699993, 48.405846095000065 ], [ -123.349063087999966, 48.4064612990001 ], [ -123.348876611999955, 48.406611803000054 ], [ -123.348556579999979, 48.407918701000106 ], [ -123.348051594999944, 48.408169390000111 ], [ -123.34660318200001, 48.40895921200007 ], [ -123.344397593999929, 48.410118607000072 ], [ -123.3443785219999, 48.410531202000108 ], [ -123.34433291, 48.410791606000053 ], [ -123.343515297999929, 48.411900196 ], [ -123.34321660199997, 48.412102792000084 ], [ -123.342955301999964, 48.411951983000066 ], [ -123.34268250299999, 48.411836912000076 ], [ -123.342445689999977, 48.411778704000071 ], [ -123.342140700999977, 48.411757515000033 ], [ -123.341876708999933, 48.411775192000071 ], [ -123.341299117999966, 48.41192391000002 ], [ -123.33997679699992, 48.412266806000034 ], [ -123.339853620999989, 48.412297889000087 ], [ -123.339215990999961, 48.412363090000042 ], [ -123.33886268199997, 48.41236049900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227289260", "BldgCostT": "149290786", "sL_LossRatio": "0.798133184059023", "sL_AssetLoss": "257030.16", "sL_BldgLoss": "205144.3", "sL_StrLoss": "145963", "sL_NStrLoss": "59181.3", "sL_ContLoss": "51885.86", "geom_point": "0101000020E6100000A6B252B5DBD55EC08AE41B9F03354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.341181294999956, 48.414499399000057 ], [ -123.339925082999926, 48.414457004000084 ], [ -123.337304297999978, 48.414476805000028 ], [ -123.337221279999966, 48.413674698000129 ], [ -123.33707360899993, 48.412201005000078 ], [ -123.337713693999902, 48.41221259100012 ], [ -123.33886268199997, 48.41236049900008 ], [ -123.339215990999961, 48.412363090000042 ], [ -123.339853620999989, 48.412297889000087 ], [ -123.33997679699992, 48.412266806000034 ], [ -123.341299117999966, 48.41192391000002 ], [ -123.341876708999933, 48.411775192000071 ], [ -123.342140700999977, 48.411757515000033 ], [ -123.342445689999977, 48.411778704000071 ], [ -123.34268250299999, 48.411836912000076 ], [ -123.342955301999964, 48.411951983000066 ], [ -123.342798810999952, 48.41216899700003 ], [ -123.342737209999953, 48.412904297000118 ], [ -123.342793184999934, 48.413036504000061 ], [ -123.343854500999939, 48.413834198000103 ], [ -123.344168180999972, 48.414056349000127 ], [ -123.344600502, 48.414362501000056 ], [ -123.345182856999941, 48.414811496 ], [ -123.345696984999961, 48.415207896000062 ], [ -123.345214391999917, 48.416763216000049 ], [ -123.345039696999976, 48.416871594000035 ], [ -123.344790997999937, 48.416759799000054 ], [ -123.344456479999948, 48.416687397000089 ], [ -123.344018001999984, 48.416641186000035 ], [ -123.341246736, 48.416336250000029 ], [ -123.341099189999952, 48.416320009000096 ], [ -123.341146818999974, 48.415353495000041 ], [ -123.341181294999956, 48.414499399000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223919456", "BldgCostT": "142945238", "sL_LossRatio": "0.81912124823996", "sL_AssetLoss": "189715.125", "sL_BldgLoss": "155399.69", "sL_StrLoss": "108633.19", "sL_NStrLoss": "46766.5", "sL_ContLoss": "34315.435", "geom_point": "0101000020E610000039CA1BDC2DD65EC02C0D1DB7EF344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342798810999952, 48.41216899700003 ], [ -123.342955301999964, 48.411951983000066 ], [ -123.34321660199997, 48.412102792000084 ], [ -123.343515297999929, 48.411900196 ], [ -123.34433291, 48.410791606000053 ], [ -123.34611861499999, 48.410987003000109 ], [ -123.347338193, 48.411125814000094 ], [ -123.348539482999939, 48.411255103000087 ], [ -123.349795995999898, 48.411387608000055 ], [ -123.349559194999983, 48.412170794000119 ], [ -123.34936059599994, 48.412899003000035 ], [ -123.349273882999981, 48.413291909000051 ], [ -123.34917269499999, 48.413725791000026 ], [ -123.349063593999929, 48.414228117000071 ], [ -123.348803600999986, 48.415256905000042 ], [ -123.348571212999971, 48.416274696000173 ], [ -123.348365381999926, 48.417105593000016 ], [ -123.345214391999917, 48.416763216000049 ], [ -123.345696984999961, 48.415207896000062 ], [ -123.345182856999941, 48.414811496 ], [ -123.344600502, 48.414362501000056 ], [ -123.344168180999972, 48.414056349000127 ], [ -123.343854500999939, 48.413834198000103 ], [ -123.342793184999934, 48.413036504000061 ], [ -123.342737209999953, 48.412904297000118 ], [ -123.342798810999952, 48.41216899700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "410537277", "BldgCostT": "278263524", "sL_LossRatio": "0.897054221064775", "sL_AssetLoss": "218872.5", "sL_BldgLoss": "196340.5", "sL_StrLoss": "136172.8", "sL_NStrLoss": "60167.7", "sL_ContLoss": "22532", "geom_point": "0101000020E6100000BE579C20E0D55EC096F91E6073354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.338637702999947, 48.41995749700002 ], [ -123.338249182999945, 48.419315042000029 ], [ -123.33810329899994, 48.419073790000049 ], [ -123.337806226999987, 48.4185504000001 ], [ -123.337781193999959, 48.418348704000067 ], [ -123.337766150999968, 48.418215687000071 ], [ -123.337649594999959, 48.417186495000045 ], [ -123.337537223999917, 48.416212402000014 ], [ -123.337422686999929, 48.415345496000029 ], [ -123.337334394999942, 48.414781392000052 ], [ -123.337304297999978, 48.414476805000028 ], [ -123.339925082999926, 48.414457004000084 ], [ -123.341181294999956, 48.414499399000057 ], [ -123.341146818999974, 48.415353495000041 ], [ -123.341099189999952, 48.416320009000096 ], [ -123.341246736, 48.416336250000029 ], [ -123.344018001999984, 48.416641186000035 ], [ -123.344456479999948, 48.416687397000089 ], [ -123.344790997999937, 48.416759799000054 ], [ -123.345039696999976, 48.416871594000035 ], [ -123.345214391999917, 48.416763216000049 ], [ -123.348365381999926, 48.417105593000016 ], [ -123.348170801999942, 48.417930408000061 ], [ -123.347904700999919, 48.418897706000116 ], [ -123.347267801999934, 48.418828609000037 ], [ -123.34717976499999, 48.418806229000083 ], [ -123.346862102000031, 48.418725501000033 ], [ -123.346533704999914, 48.418568489000087 ], [ -123.345337416999897, 48.419379905000035 ], [ -123.34516179099991, 48.419623492000099 ], [ -123.345110682999987, 48.419885500000099 ], [ -123.344786707999944, 48.419769189000071 ], [ -123.343565508000012, 48.419580704000097 ], [ -123.3425023, 48.419847093000023 ], [ -123.341787315999966, 48.419967208000088 ], [ -123.340989676999968, 48.419996700000119 ], [ -123.3398136859999, 48.419964495000109 ], [ -123.339703658999952, 48.419964484000062 ], [ -123.339446872999986, 48.419964490000083 ], [ -123.33927410699998, 48.41996449600002 ], [ -123.339135508, 48.419962978000086 ], [ -123.338637702999947, 48.41995749700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241143667", "BldgCostT": "162381667", "sL_LossRatio": "0.937377864535942", "sL_AssetLoss": "118554.325", "sL_BldgLoss": "111130.2", "sL_StrLoss": "85764.3", "sL_NStrLoss": "25365.9", "sL_ContLoss": "7424.125", "geom_point": "0101000020E61000000B86C6555DD65EC0B50BCD759A354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.348571212999971, 48.416274696000173 ], [ -123.348803600999986, 48.415256905000042 ], [ -123.349631513999981, 48.415817004000068 ], [ -123.350242503999965, 48.416179500000084 ], [ -123.350829608999973, 48.416415115000127 ], [ -123.350127505, 48.419122907000016 ], [ -123.351546492999915, 48.419272987000113 ], [ -123.351355382999955, 48.4200826040001 ], [ -123.351172510999945, 48.420892407000096 ], [ -123.350989010999939, 48.421469495000096 ], [ -123.350425801999947, 48.421215504000088 ], [ -123.349597490999926, 48.421071211000111 ], [ -123.34872074299993, 48.420974089000069 ], [ -123.347472313999972, 48.420835794000048 ], [ -123.34772400599995, 48.419714793 ], [ -123.347773455999956, 48.419491127000072 ], [ -123.347904700999919, 48.418897706000116 ], [ -123.348170801999942, 48.417930408000061 ], [ -123.348365381999926, 48.417105593000016 ], [ -123.348571212999971, 48.416274696000173 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247786558", "BldgCostT": "163648007", "sL_LossRatio": "0.803870235960917", "sL_AssetLoss": "131869.169", "sL_BldgLoss": "106005.7", "sL_StrLoss": "62758.7", "sL_NStrLoss": "43247", "sL_ContLoss": "25863.469", "geom_point": "0101000020E610000021B427791CD65EC0FFF2C98AE1354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.3425023, 48.419847093000023 ], [ -123.343565508000012, 48.419580704000097 ], [ -123.344786707999944, 48.419769189000071 ], [ -123.345110682999987, 48.419885500000099 ], [ -123.34516179099991, 48.419623492000099 ], [ -123.345337416999897, 48.419379905000035 ], [ -123.346533704999914, 48.418568489000087 ], [ -123.346862102000031, 48.418725501000033 ], [ -123.34717976499999, 48.418806229000083 ], [ -123.347267801999934, 48.418828609000037 ], [ -123.347904700999919, 48.418897706000116 ], [ -123.347773455999956, 48.419491127000072 ], [ -123.34772400599995, 48.419714793 ], [ -123.347472313999972, 48.420835794000048 ], [ -123.347099519999972, 48.422358703000086 ], [ -123.347066593999926, 48.422488601000119 ], [ -123.346992311999927, 48.42283191500011 ], [ -123.346906308999905, 48.423229487000057 ], [ -123.346177088999923, 48.42340958900013 ], [ -123.345615912999975, 48.423575900000074 ], [ -123.344877806999989, 48.42384150500002 ], [ -123.344662911999961, 48.423583604000079 ], [ -123.344759511999911, 48.423378605000032 ], [ -123.344810629000023, 48.423219746000044 ], [ -123.344850402999953, 48.423096072000142 ], [ -123.344852837999966, 48.423088497000073 ], [ -123.344906872999971, 48.42292060700008 ], [ -123.344909307999984, 48.422913032000068 ], [ -123.345249703999954, 48.42185501400008 ], [ -123.345163912999951, 48.421749209000055 ], [ -123.344872001999946, 48.421702038000021 ], [ -123.344272119999914, 48.421605101000083 ], [ -123.342419305999954, 48.421373690000109 ], [ -123.342462994999948, 48.420547804000094 ], [ -123.3425023, 48.419847093000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "371515289", "BldgCostT": "248100372", "sL_LossRatio": "0.819972389906606", "sL_AssetLoss": "172632.52", "sL_BldgLoss": "141553.9", "sL_StrLoss": "96470.7", "sL_NStrLoss": "45083.2", "sL_ContLoss": "31078.62", "geom_point": "0101000020E6100000FE34174D61D65EC01F087F750B364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.346906308999905, 48.423229487000057 ], [ -123.346992311999927, 48.42283191500011 ], [ -123.347066593999926, 48.422488601000119 ], [ -123.347099519999972, 48.422358703000086 ], [ -123.347472313999972, 48.420835794000048 ], [ -123.34872074299993, 48.420974089000069 ], [ -123.349597490999926, 48.421071211000111 ], [ -123.350425801999947, 48.421215504000088 ], [ -123.350989010999939, 48.421469495000096 ], [ -123.351598435999975, 48.421724007000165 ], [ -123.35157878899993, 48.422622286000077 ], [ -123.352139954999956, 48.422685700000017 ], [ -123.354171682999961, 48.422915310000079 ], [ -123.354053988999951, 48.423403893000057 ], [ -123.352011570999963, 48.423184872000043 ], [ -123.35062070099994, 48.42303568700008 ], [ -123.349781811999918, 48.422958808 ], [ -123.348365810999923, 48.423067702000012 ], [ -123.346906308999905, 48.423229487000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190567802", "BldgCostT": "126668745", "sL_LossRatio": "0.709245118199963", "sL_AssetLoss": "119101.56", "sL_BldgLoss": "84472.2", "sL_StrLoss": "45557.4", "sL_NStrLoss": "38914.8", "sL_ContLoss": "34629.36", "geom_point": "0101000020E61000009519805795D65EC07FD19AF6FF354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350989010999939, 48.421469495000096 ], [ -123.351172510999945, 48.420892407000096 ], [ -123.354568322999938, 48.421276705000054 ], [ -123.354369917999975, 48.422098704000049 ], [ -123.354171682999961, 48.422915310000079 ], [ -123.352139954999956, 48.422685700000017 ], [ -123.35157878899993, 48.422622286000077 ], [ -123.351598435999975, 48.421724007000165 ], [ -123.350989010999939, 48.421469495000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364744000", "BldgCostT": "243235000", "sL_LossRatio": "0.705543128056796", "sL_AssetLoss": "182145.35", "sL_BldgLoss": "128511.4", "sL_StrLoss": "59138.4", "sL_NStrLoss": "69373", "sL_ContLoss": "53633.95", "geom_point": "0101000020E61000001898776AA8D65EC0835451BCCA354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.351172510999945, 48.420892407000096 ], [ -123.351355382999955, 48.4200826040001 ], [ -123.351546492999915, 48.419272987000113 ], [ -123.353021689999935, 48.419429799000092 ], [ -123.354966312, 48.419636304000058 ], [ -123.356732701999988, 48.419831404000085 ], [ -123.357846403999929, 48.419954402000087 ], [ -123.357712705999958, 48.420512003000034 ], [ -123.35765950899993, 48.420763203000071 ], [ -123.356673061999913, 48.420659514000093 ], [ -123.354767792999965, 48.420459217000023 ], [ -123.354568322999938, 48.421276705000054 ], [ -123.351172510999945, 48.420892407000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "730880457", "BldgCostT": "494312478", "sL_LossRatio": "0.810697213332592", "sL_AssetLoss": "286835.45", "sL_BldgLoss": "232536.7", "sL_StrLoss": "124639.8", "sL_NStrLoss": "107896.9", "sL_ContLoss": "54298.75", "geom_point": "0101000020E6100000159E9640C6D65EC01E80D3DC06364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.354568322999938, 48.421276705000054 ], [ -123.354767792999965, 48.420459217000023 ], [ -123.356673061999913, 48.420659514000093 ], [ -123.35765950899993, 48.420763203000071 ], [ -123.357504706999947, 48.421408593000095 ], [ -123.357448801999936, 48.421637195000066 ], [ -123.357278191999924, 48.422276002000082 ], [ -123.357239104, 48.422421093000054 ], [ -123.357027886999973, 48.423230213000046 ], [ -123.356896282999983, 48.423726491000124 ], [ -123.354053988999951, 48.423403893000057 ], [ -123.354171682999961, 48.422915310000079 ], [ -123.354369917999975, 48.422098704000049 ], [ -123.354568322999938, 48.421276705000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "498434924", "BldgCostT": "333914859", "sL_LossRatio": "0.640702250277165", "sL_AssetLoss": "176212.96", "sL_BldgLoss": "112900.04", "sL_StrLoss": "56780.94", "sL_NStrLoss": "56119.1", "sL_ContLoss": "63312.92", "geom_point": "0101000020E6100000FAC740E0F9D65EC098BA11D4F8354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.357504706999947, 48.421408593000095 ], [ -123.35765950899993, 48.420763203000071 ], [ -123.357712705999958, 48.420512003000034 ], [ -123.357846403999929, 48.419954402000087 ], [ -123.3580266069999, 48.419142704000073 ], [ -123.358306565999911, 48.419244706000029 ], [ -123.359835288999975, 48.419801656000125 ], [ -123.359937197999926, 48.419838794000079 ], [ -123.360280008999922, 48.419980811000102 ], [ -123.360289412999975, 48.419969419000054 ], [ -123.360459405999933, 48.419764393000086 ], [ -123.360532098999954, 48.419937192000127 ], [ -123.360548701999932, 48.41997670300001 ], [ -123.36095609099999, 48.420227341000015 ], [ -123.360976520999941, 48.420239896000055 ], [ -123.362580799999989, 48.420866106000076 ], [ -123.362225104999965, 48.420953704000105 ], [ -123.361760390999962, 48.420898946000079 ], [ -123.361574988999962, 48.420877108000056 ], [ -123.36149564499999, 48.420888992000087 ], [ -123.361203595999925, 48.420932788000052 ], [ -123.36049939900002, 48.421247090000115 ], [ -123.360393531999975, 48.421601951000142 ], [ -123.360353295, 48.421736709000058 ], [ -123.36012682399999, 48.422362401000086 ], [ -123.360060313999924, 48.422588005000115 ], [ -123.359918806999971, 48.423189597000025 ], [ -123.359846390000016, 48.423518799000064 ], [ -123.35971760399994, 48.424014197000083 ], [ -123.359168879, 48.423958261000053 ], [ -123.356896282999983, 48.423726491000124 ], [ -123.357027886999973, 48.423230213000046 ], [ -123.357239104, 48.422421093000054 ], [ -123.357278191999924, 48.422276002000082 ], [ -123.357448801999936, 48.421637195000066 ], [ -123.357504706999947, 48.421408593000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "404993039", "BldgCostT": "275643047", "sL_LossRatio": "0.864695339359536", "sL_AssetLoss": "156892.6", "sL_BldgLoss": "135664.3", "sL_StrLoss": "79477.7", "sL_NStrLoss": "56186.6", "sL_ContLoss": "21228.3", "geom_point": "0101000020E61000005D2E343AD4D65EC0DF2E871F94354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.355360686999973, 48.418011997000036 ], [ -123.355560178999923, 48.417217891000107 ], [ -123.358447112, 48.417531706000091 ], [ -123.358259408999984, 48.418332408000076 ], [ -123.3580266069999, 48.419142704000073 ], [ -123.357846403999929, 48.419954402000087 ], [ -123.356732701999988, 48.419831404000085 ], [ -123.354966312, 48.419636304000058 ], [ -123.355162408999931, 48.418831300000072 ], [ -123.355360686999973, 48.418011997000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199680803", "BldgCostT": "131398746", "sL_LossRatio": "0.777569631670611", "sL_AssetLoss": "94148.61", "sL_BldgLoss": "73207.1", "sL_StrLoss": "40125.9", "sL_NStrLoss": "33081.2", "sL_ContLoss": "20941.51", "geom_point": "0101000020E610000083F1C3D6E6D65EC0AD27FC4A4E354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.355681094999966, 48.416743909000054 ], [ -123.355785811, 48.416319886000068 ], [ -123.355903309999988, 48.415906182000121 ], [ -123.356103797999964, 48.4154558050001 ], [ -123.359313112999985, 48.415792906000043 ], [ -123.360572795999971, 48.415821611000062 ], [ -123.360533959999955, 48.416663442000072 ], [ -123.360527796999946, 48.416797197000051 ], [ -123.36024489499998, 48.416717998000131 ], [ -123.359873201999974, 48.41668170100013 ], [ -123.359293501999957, 48.416675304000123 ], [ -123.359284980999959, 48.416756301000063 ], [ -123.359182399999924, 48.416853800000077 ], [ -123.358673990999961, 48.417188391000067 ], [ -123.358527296999981, 48.417351506000067 ], [ -123.358447112, 48.417531706000091 ], [ -123.355560178999923, 48.417217891000107 ], [ -123.355681094999966, 48.416743909000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "368469697", "BldgCostT": "254265269", "sL_LossRatio": "0.840499681689345", "sL_AssetLoss": "94640.25", "sL_BldgLoss": "79545.1", "sL_StrLoss": "39269.7", "sL_NStrLoss": "40275.4", "sL_ContLoss": "15095.15", "geom_point": "0101000020E6100000EE98780FA9D65EC04EBE7E2D54354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.352249916999966, 48.416346100000041 ], [ -123.35245919099998, 48.415500005000105 ], [ -123.353663189999963, 48.415631107000124 ], [ -123.354610478999959, 48.41574669700001 ], [ -123.355903309999988, 48.415906182000121 ], [ -123.355785811, 48.416319886000068 ], [ -123.355681094999966, 48.416743909000054 ], [ -123.355560178999923, 48.417217891000107 ], [ -123.355360686999973, 48.418011997000036 ], [ -123.355141981999935, 48.417990291000066 ], [ -123.354642385999924, 48.417876793000033 ], [ -123.354087811999975, 48.417663608000083 ], [ -123.353507915999941, 48.417441692000075 ], [ -123.352117290999928, 48.416907298000055 ], [ -123.352249916999966, 48.416346100000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "693240465", "BldgCostT": "463770143", "sL_LossRatio": "0.846205510922018", "sL_AssetLoss": "225581.49", "sL_BldgLoss": "190888.3", "sL_StrLoss": "108482.9", "sL_NStrLoss": "82405.4", "sL_ContLoss": "34693.19", "geom_point": "0101000020E6100000FEA67F6287D65EC0E877BC2429354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.349631513999981, 48.415817004000068 ], [ -123.348803600999986, 48.415256905000042 ], [ -123.349063593999929, 48.414228117000071 ], [ -123.352732584999913, 48.414591393000116 ], [ -123.353941307999932, 48.41473438900006 ], [ -123.356293610999913, 48.415029395000076 ], [ -123.356103797999964, 48.4154558050001 ], [ -123.355903309999988, 48.415906182000121 ], [ -123.354610478999959, 48.41574669700001 ], [ -123.353663189999963, 48.415631107000124 ], [ -123.35245919099998, 48.415500005000105 ], [ -123.352249916999966, 48.416346100000041 ], [ -123.352117290999928, 48.416907298000055 ], [ -123.350829608999973, 48.416415115000127 ], [ -123.350242503999965, 48.416179500000084 ], [ -123.349631513999981, 48.415817004000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238246063", "BldgCostT": "153537206", "sL_LossRatio": "0.813035215467542", "sL_AssetLoss": "136605.03", "sL_BldgLoss": "111064.7", "sL_StrLoss": "69079.6", "sL_NStrLoss": "41985.1", "sL_ContLoss": "25540.33", "geom_point": "0101000020E6100000C919E5F490D65EC0EDA023038A354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350127505, 48.419122907000016 ], [ -123.350829608999973, 48.416415115000127 ], [ -123.352117290999928, 48.416907298000055 ], [ -123.353507915999941, 48.417441692000075 ], [ -123.354087811999975, 48.417663608000083 ], [ -123.354642385999924, 48.417876793000033 ], [ -123.355141981999935, 48.417990291000066 ], [ -123.355360686999973, 48.418011997000036 ], [ -123.355162408999931, 48.418831300000072 ], [ -123.354966312, 48.419636304000058 ], [ -123.353021689999935, 48.419429799000092 ], [ -123.351546492999915, 48.419272987000113 ], [ -123.350127505, 48.419122907000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316557311", "BldgCostT": "213519530", "sL_LossRatio": "0.869842105871209", "sL_AssetLoss": "191638.918", "sL_BldgLoss": "166695.6", "sL_StrLoss": "121731.8", "sL_NStrLoss": "44963.8", "sL_ContLoss": "24943.318", "geom_point": "0101000020E6100000399A5C8CC1D65EC04326F974E9344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.352732584999913, 48.414591393000116 ], [ -123.35294019899996, 48.413654188000109 ], [ -123.353129717999963, 48.412725492000078 ], [ -123.353381711999958, 48.411789406000089 ], [ -123.354570686999935, 48.411921894000066 ], [ -123.357370118999967, 48.412227199000043 ], [ -123.357288096999952, 48.412802398000089 ], [ -123.357927501999924, 48.412802095000096 ], [ -123.359400611999973, 48.412823488000072 ], [ -123.359367810999942, 48.413895006000111 ], [ -123.356846895999951, 48.413794213000109 ], [ -123.356723008999936, 48.414079702000031 ], [ -123.356490182999934, 48.414576198000091 ], [ -123.356293610999913, 48.415029395000076 ], [ -123.353941307999932, 48.41473438900006 ], [ -123.352732584999913, 48.414591393000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178753539", "BldgCostT": "120415372", "sL_LossRatio": "0.93739699009803", "sL_AssetLoss": "154384.43", "sL_BldgLoss": "144719.5", "sL_StrLoss": "112144", "sL_NStrLoss": "32575.5", "sL_ContLoss": "9664.93", "geom_point": "0101000020E61000004D73AFBC79D65EC0E641CDD2C6344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.349795995999898, 48.411387608000055 ], [ -123.350245803999911, 48.409498682000077 ], [ -123.35137338, 48.409642296000094 ], [ -123.35239330099995, 48.409759804000068 ], [ -123.351920197999931, 48.411632910000066 ], [ -123.353381711999958, 48.411789406000089 ], [ -123.353129717999963, 48.412725492000078 ], [ -123.35294019899996, 48.413654188000109 ], [ -123.352732584999913, 48.414591393000116 ], [ -123.349063593999929, 48.414228117000071 ], [ -123.34917269499999, 48.413725791000026 ], [ -123.349273882999981, 48.413291909000051 ], [ -123.34936059599994, 48.412899003000035 ], [ -123.349559194999983, 48.412170794000119 ], [ -123.349795995999898, 48.411387608000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130804251", "BldgCostT": "81365001", "sL_LossRatio": "0.915597148383541", "sL_AssetLoss": "135503.917", "sL_BldgLoss": "124067", "sL_StrLoss": "99675.8", "sL_NStrLoss": "24391.2", "sL_ContLoss": "11436.917", "geom_point": "0101000020E61000000F943E21B9D65EC0DF05C6D187344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.351920197999931, 48.411632910000066 ], [ -123.35239330099995, 48.409759804000068 ], [ -123.352623798999943, 48.409786290000056 ], [ -123.352929691999989, 48.409823897000109 ], [ -123.353840115999944, 48.409935798000078 ], [ -123.353895691999938, 48.409716242000094 ], [ -123.353940474999959, 48.409539279000107 ], [ -123.354489408999925, 48.407370900000053 ], [ -123.355509115999936, 48.407634499000025 ], [ -123.355144296999967, 48.409093582000068 ], [ -123.35620271699996, 48.409222001000046 ], [ -123.357725704999936, 48.409410609000119 ], [ -123.357615900999974, 48.410411602000089 ], [ -123.357506417999971, 48.411228800000103 ], [ -123.357495588999925, 48.411309602000046 ], [ -123.35738229599994, 48.412138134000067 ], [ -123.357370118999967, 48.412227199000043 ], [ -123.354570686999935, 48.411921894000066 ], [ -123.353381711999958, 48.411789406000089 ], [ -123.351920197999931, 48.411632910000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "366731336", "BldgCostT": "241833194", "sL_LossRatio": "0.858042087293387", "sL_AssetLoss": "221014.45", "sL_BldgLoss": "189639.7", "sL_StrLoss": "119944", "sL_NStrLoss": "69695.7", "sL_ContLoss": "31374.75", "geom_point": "0101000020E61000006019232BA2D65EC0FDF4D02539344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350550019999943, 48.4081607070001 ], [ -123.350788509999958, 48.407273787000044 ], [ -123.350963179999951, 48.406633408000062 ], [ -123.351082976000015, 48.406035705000086 ], [ -123.351497910999967, 48.405559316000108 ], [ -123.351905584999912, 48.405776190000047 ], [ -123.354193801999912, 48.406650699000174 ], [ -123.354449498999912, 48.406726031000083 ], [ -123.354529105999987, 48.406749473000097 ], [ -123.354530852999943, 48.406749979000082 ], [ -123.355644210999941, 48.40707790900013 ], [ -123.356874795999929, 48.407273002000082 ], [ -123.357340112999964, 48.407289427000137 ], [ -123.357340371999939, 48.407326267000016 ], [ -123.357745732999945, 48.407325008000086 ], [ -123.357745583999971, 48.407303738000081 ], [ -123.358104596999951, 48.407316409000053 ], [ -123.358140419999941, 48.407317670000111 ], [ -123.358274627999918, 48.40732240800007 ], [ -123.357899167999946, 48.407874558000067 ], [ -123.357880135999935, 48.408043113000161 ], [ -123.357861885, 48.408204805000018 ], [ -123.357725704999936, 48.409410609000119 ], [ -123.35620271699996, 48.409222001000046 ], [ -123.355144296999967, 48.409093582000068 ], [ -123.355509115999936, 48.407634499000025 ], [ -123.354489408999925, 48.407370900000053 ], [ -123.353940474999959, 48.409539279000107 ], [ -123.353895691999938, 48.409716242000094 ], [ -123.353840115999944, 48.409935798000078 ], [ -123.352929691999989, 48.409823897000109 ], [ -123.352623798999943, 48.409786290000056 ], [ -123.35239330099995, 48.409759804000068 ], [ -123.35137338, 48.409642296000094 ], [ -123.350245803999911, 48.409498682000077 ], [ -123.350550019999943, 48.4081607070001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144694834", "BldgCostT": "94743334", "sL_LossRatio": "0.897341641247578", "sL_AssetLoss": "189867.15", "sL_BldgLoss": "170375.7", "sL_StrLoss": "138914", "sL_NStrLoss": "31461.7", "sL_ContLoss": "19491.45", "geom_point": "0101000020E6100000B5FA2B7D4BD65EC09CBFB63C5E344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34959659699993, 48.405846095000065 ], [ -123.349775405999978, 48.405807291000066 ], [ -123.350013621999977, 48.405817806000051 ], [ -123.351082976000015, 48.406035705000086 ], [ -123.350963179999951, 48.406633408000062 ], [ -123.350788509999958, 48.407273787000044 ], [ -123.350550019999943, 48.4081607070001 ], [ -123.350245803999911, 48.409498682000077 ], [ -123.349795995999898, 48.411387608000055 ], [ -123.348539482999939, 48.411255103000087 ], [ -123.347338193, 48.411125814000094 ], [ -123.34611861499999, 48.410987003000109 ], [ -123.34433291, 48.410791606000053 ], [ -123.3443785219999, 48.410531202000108 ], [ -123.344397593999929, 48.410118607000072 ], [ -123.34660318200001, 48.40895921200007 ], [ -123.348051594999944, 48.408169390000111 ], [ -123.348556579999979, 48.407918701000106 ], [ -123.348876611999955, 48.406611803000054 ], [ -123.349063087999966, 48.4064612990001 ], [ -123.34959659699993, 48.405846095000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200464469", "BldgCostT": "132485412", "sL_LossRatio": "0.797337965585951", "sL_AssetLoss": "98399.93", "sL_BldgLoss": "78458", "sL_StrLoss": "52410.7", "sL_NStrLoss": "26047.3", "sL_ContLoss": "19941.93", "geom_point": "0101000020E61000004C0A030138D75EC083464D47C2344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360533959999955, 48.416663442000072 ], [ -123.360572795999971, 48.415821611000062 ], [ -123.359313112999985, 48.415792906000043 ], [ -123.356103797999964, 48.4154558050001 ], [ -123.356293610999913, 48.415029395000076 ], [ -123.356490182999934, 48.414576198000091 ], [ -123.356723008999936, 48.414079702000031 ], [ -123.356846895999951, 48.413794213000109 ], [ -123.359367810999942, 48.413895006000111 ], [ -123.359400611999973, 48.412823488000072 ], [ -123.357927501999924, 48.412802095000096 ], [ -123.357288096999952, 48.412802398000089 ], [ -123.357370118999967, 48.412227199000043 ], [ -123.35738229599994, 48.412138134000067 ], [ -123.357495588999925, 48.411309602000046 ], [ -123.357506417999971, 48.411228800000103 ], [ -123.357615900999974, 48.410411602000089 ], [ -123.357725704999936, 48.409410609000119 ], [ -123.357861885, 48.408204805000018 ], [ -123.357880135999935, 48.408043113000161 ], [ -123.357899167999946, 48.407874558000067 ], [ -123.358274627999918, 48.40732240800007 ], [ -123.360145381, 48.407388400000087 ], [ -123.362915213999912, 48.40725309900003 ], [ -123.363576204999958, 48.407099298000034 ], [ -123.363703059999963, 48.407036436000048 ], [ -123.36504032, 48.407032200000046 ], [ -123.365040842999974, 48.407105257000119 ], [ -123.364778675999972, 48.40724739500007 ], [ -123.364834790999964, 48.407436808000064 ], [ -123.365119213999961, 48.407624793000132 ], [ -123.365390608, 48.407696002000122 ], [ -123.365565406999963, 48.407650508000089 ], [ -123.365644516999964, 48.40746100700008 ], [ -123.365873893999961, 48.407369897000059 ], [ -123.365896228999986, 48.407385346000076 ], [ -123.36626077199999, 48.407637278000067 ], [ -123.366262213, 48.407838008000027 ], [ -123.366482017999971, 48.407837308000126 ], [ -123.366568596999969, 48.40800648800009 ], [ -123.366668884999967, 48.408018358000099 ], [ -123.366671458999974, 48.408376499000042 ], [ -123.367076828999956, 48.408375206000066 ], [ -123.367078771999971, 48.408645096000058 ], [ -123.368294889999945, 48.408641211000067 ], [ -123.368292939999961, 48.408371320000057 ], [ -123.368698310999932, 48.408370021000081 ], [ -123.36869826399996, 48.408363689000097 ], [ -123.368990308999983, 48.408493604000071 ], [ -123.369530093999984, 48.408275697000057 ], [ -123.369619219999919, 48.408287930000029 ], [ -123.36925039399999, 48.408768801000079 ], [ -123.369175374999941, 48.409317099000134 ], [ -123.369064420999948, 48.409671869000093 ], [ -123.369045801, 48.409731388000061 ], [ -123.369000212999936, 48.40984990100003 ], [ -123.368907000999982, 48.410092295000048 ], [ -123.368767878999947, 48.410459495000048 ], [ -123.368722677999983, 48.410568400000081 ], [ -123.368646774999988, 48.410753435000096 ], [ -123.36847580099996, 48.411170112000029 ], [ -123.368312404999983, 48.411568298000105 ], [ -123.367831295999963, 48.412458212000139 ], [ -123.367646801999953, 48.412763582000011 ], [ -123.366937081999978, 48.413938357000092 ], [ -123.366531212000012, 48.414610101000093 ], [ -123.36621213699999, 48.415155156000068 ], [ -123.365957302999945, 48.415590493000096 ], [ -123.36585340799995, 48.415881091000031 ], [ -123.365805204999987, 48.416189191000079 ], [ -123.36575969799999, 48.417393808000107 ], [ -123.365616884999909, 48.418505801000144 ], [ -123.365551785999969, 48.418710662000066 ], [ -123.365517077, 48.418819899000034 ], [ -123.365202855999954, 48.419156570000084 ], [ -123.364587892999964, 48.418911288000061 ], [ -123.363268858999945, 48.418323803000064 ], [ -123.362138195999975, 48.417842911000079 ], [ -123.362386794999978, 48.417569499000116 ], [ -123.36113692099994, 48.417050265000029 ], [ -123.360708884999966, 48.416872440000084 ], [ -123.360527796999946, 48.416797197000051 ], [ -123.360533959999955, 48.416663442000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202009529", "BldgCostT": "132983601", "sL_LossRatio": "0.726011644941127", "sL_AssetLoss": "95232.77", "sL_BldgLoss": "69140.1", "sL_StrLoss": "41791.7", "sL_NStrLoss": "27348.4", "sL_ContLoss": "26092.67", "geom_point": "0101000020E61000001E057FC789D75EC07E606CC60E354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.367646801999953, 48.412763582000011 ], [ -123.367831295999963, 48.412458212000139 ], [ -123.369129595999965, 48.413074799000142 ], [ -123.368453288999959, 48.414126693000121 ], [ -123.36842009599998, 48.414238594000061 ], [ -123.36846002099999, 48.414420001000089 ], [ -123.368645086999948, 48.414510317000087 ], [ -123.36907993399997, 48.414625989000079 ], [ -123.369482584999901, 48.414733103000032 ], [ -123.369579903999977, 48.414801306000079 ], [ -123.369243023999928, 48.415325575000054 ], [ -123.369077902999905, 48.415582495000102 ], [ -123.369065499999948, 48.415684094000042 ], [ -123.368635027999957, 48.415714390000097 ], [ -123.368289512, 48.415738697000037 ], [ -123.367685584999919, 48.415783983000082 ], [ -123.367178698999936, 48.415821994000112 ], [ -123.36585340799995, 48.415881091000031 ], [ -123.365957302999945, 48.415590493000096 ], [ -123.36621213699999, 48.415155156000068 ], [ -123.366531212000012, 48.414610101000093 ], [ -123.366937081999978, 48.413938357000092 ], [ -123.367646801999953, 48.412763582000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29739833", "BldgCostT": "17093333", "sL_LossRatio": "0.930936124779866", "sL_AssetLoss": "25382.3", "sL_BldgLoss": "23629.3", "sL_StrLoss": "19206.2", "sL_NStrLoss": "4423.1", "sL_ContLoss": "1753", "geom_point": "0101000020E6100000C178D51C83D75EC0F35B091751354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368635027999957, 48.415714390000097 ], [ -123.369065499999948, 48.415684094000042 ], [ -123.368869989999951, 48.417185298000028 ], [ -123.368328612999946, 48.417221553000047 ], [ -123.368260697999972, 48.417226102000072 ], [ -123.368018220999915, 48.41724234300009 ], [ -123.367724163999981, 48.417262068000063 ], [ -123.36575969799999, 48.417393808000107 ], [ -123.365805204999987, 48.416189191000079 ], [ -123.36585340799995, 48.415881091000031 ], [ -123.367178698999936, 48.415821994000112 ], [ -123.367685584999919, 48.415783983000082 ], [ -123.368289512, 48.415738697000037 ], [ -123.368635027999957, 48.415714390000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "392552750", "BldgCostT": "252831814", "sL_LossRatio": "0.736473529276772", "sL_AssetLoss": "186828.575", "sL_BldgLoss": "137594.3", "sL_StrLoss": "90838.6", "sL_NStrLoss": "46755.7", "sL_ContLoss": "49234.275", "geom_point": "0101000020E610000001E9EE7CB7D75EC09AB598C89A354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368869989999951, 48.417185298000028 ], [ -123.369065499999948, 48.415684094000042 ], [ -123.369715447999937, 48.415637806000099 ], [ -123.370032495999951, 48.415615195 ], [ -123.3708693199999, 48.415557608000093 ], [ -123.372389997999989, 48.415452788000067 ], [ -123.372326245999929, 48.415575452000098 ], [ -123.372238101999955, 48.415745027000135 ], [ -123.371565299999958, 48.417039406000036 ], [ -123.372068569999939, 48.417020040000054 ], [ -123.373018593999973, 48.416983505000047 ], [ -123.372412895999943, 48.418075913000088 ], [ -123.372622091999958, 48.418123494000092 ], [ -123.37632879, 48.419566408000051 ], [ -123.375591588999953, 48.42023350900007 ], [ -123.374871597999942, 48.420931704000161 ], [ -123.374353721999952, 48.4214335120001 ], [ -123.37415009299994, 48.421630812000039 ], [ -123.373297719, 48.421398726000049 ], [ -123.370924601999917, 48.420752594000056 ], [ -123.370775276999922, 48.420742654000023 ], [ -123.36901547399998, 48.42062553100002 ], [ -123.368935298999943, 48.420620211000035 ], [ -123.368528337999948, 48.420588220000049 ], [ -123.368012511999979, 48.420547703000125 ], [ -123.366328990999989, 48.420228908000055 ], [ -123.366172207999966, 48.419532406000037 ], [ -123.36606248599999, 48.419368487000099 ], [ -123.365742484999899, 48.418890394000073 ], [ -123.365616884999909, 48.418505801000144 ], [ -123.36575969799999, 48.417393808000107 ], [ -123.367724163999981, 48.417262068000063 ], [ -123.368018220999915, 48.41724234300009 ], [ -123.368260697999972, 48.417226102000072 ], [ -123.368328612999946, 48.417221553000047 ], [ -123.368869989999951, 48.417185298000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "454000319", "BldgCostT": "313946649", "sL_LossRatio": "0.887527981333485", "sL_AssetLoss": "116868.09", "sL_BldgLoss": "103723.7", "sL_StrLoss": "53473.4", "sL_NStrLoss": "50250.3", "sL_ContLoss": "13144.39", "geom_point": "0101000020E61000000A2528B8B7D75EC02020048912354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368453288999959, 48.414126693000121 ], [ -123.369129595999965, 48.413074799000142 ], [ -123.370341297, 48.413650617000023 ], [ -123.371208697999947, 48.414061691000022 ], [ -123.372227484999968, 48.41454240900002 ], [ -123.373239285999944, 48.415025697000033 ], [ -123.373913504999962, 48.415346311000071 ], [ -123.372389997999989, 48.415452788000067 ], [ -123.3708693199999, 48.415557608000093 ], [ -123.370032495999951, 48.415615195 ], [ -123.369715447999937, 48.415637806000099 ], [ -123.369065499999948, 48.415684094000042 ], [ -123.369077902999905, 48.415582495000102 ], [ -123.369243023999928, 48.415325575000054 ], [ -123.369579903999977, 48.414801306000079 ], [ -123.369482584999901, 48.414733103000032 ], [ -123.36907993399997, 48.414625989000079 ], [ -123.368645086999948, 48.414510317000087 ], [ -123.36846002099999, 48.414420001000089 ], [ -123.36842009599998, 48.414238594000061 ], [ -123.368453288999959, 48.414126693000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "436433479", "BldgCostT": "297649858", "sL_LossRatio": "0.791339292343142", "sL_AssetLoss": "229785.38", "sL_BldgLoss": "181838.2", "sL_StrLoss": "107685.9", "sL_NStrLoss": "74152.3", "sL_ContLoss": "47947.18", "geom_point": "0101000020E610000029F280ECD4D75EC0FDBC66E2EB344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.370339418999919, 48.411985703000049 ], [ -123.370844294999969, 48.411566321000095 ], [ -123.371989187999972, 48.412104308000018 ], [ -123.372865913999931, 48.412518298000087 ], [ -123.373906901999973, 48.413010410000048 ], [ -123.374892812999974, 48.413475012000085 ], [ -123.375623693999984, 48.413819604000032 ], [ -123.373913504999962, 48.415346311000071 ], [ -123.373239285999944, 48.415025697000033 ], [ -123.372227484999968, 48.41454240900002 ], [ -123.371208697999947, 48.414061691000022 ], [ -123.370341297, 48.413650617000023 ], [ -123.369129595999965, 48.413074799000142 ], [ -123.369897016999971, 48.412349894000037 ], [ -123.370339418999919, 48.411985703000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "368959834", "BldgCostT": "255153334", "sL_LossRatio": "0.734090231017142", "sL_AssetLoss": "136885.08", "sL_BldgLoss": "100486", "sL_StrLoss": "41380.6", "sL_NStrLoss": "59105.4", "sL_ContLoss": "36399.08", "geom_point": "0101000020E6100000CAE17240FBD75EC09F4A59C8D4344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.374892812999974, 48.413475012000085 ], [ -123.373906901999973, 48.413010410000048 ], [ -123.372865913999931, 48.412518298000087 ], [ -123.373785706999968, 48.411670906000055 ], [ -123.37655360699992, 48.412958798 ], [ -123.375623693999984, 48.413819604000032 ], [ -123.374892812999974, 48.413475012000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105058166", "BldgCostT": "70211666", "sL_LossRatio": "0.911871093986532", "sL_AssetLoss": "62755.8", "sL_BldgLoss": "57225.2", "sL_StrLoss": "41714.2", "sL_NStrLoss": "15511", "sL_ContLoss": "5530.6", "geom_point": "0101000020E61000007C2BD8670AD85EC027412C599D344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37655360699992, 48.412958798 ], [ -123.373785706999968, 48.411670906000055 ], [ -123.372865913999931, 48.412518298000087 ], [ -123.371989187999972, 48.412104308000018 ], [ -123.372677202999924, 48.411471990000038 ], [ -123.373963501999953, 48.410290996000121 ], [ -123.374756297999923, 48.409738406000066 ], [ -123.375184571999938, 48.409158746000102 ], [ -123.375276307999954, 48.409158446000021 ], [ -123.375810777999959, 48.409202039000064 ], [ -123.37653607699994, 48.409261193000098 ], [ -123.376589250999942, 48.40937190000006 ], [ -123.37661818699992, 48.40943208900007 ], [ -123.376649062999903, 48.409452392000034 ], [ -123.376834991999957, 48.40957460700011 ], [ -123.377220780999963, 48.409654452000069 ], [ -123.377223054999959, 48.409961772000067 ], [ -123.377560323999958, 48.409960666000046 ], [ -123.37758257899992, 48.409986198000084 ], [ -123.378287791999924, 48.410433400000095 ], [ -123.378444074999962, 48.410614452000111 ], [ -123.378444285999976, 48.410642898000049 ], [ -123.378344597999927, 48.410928993000027 ], [ -123.378108427999948, 48.411038454000064 ], [ -123.378041821999929, 48.411038672000082 ], [ -123.378042047999941, 48.411069218000108 ], [ -123.377924642, 48.411123633000066 ], [ -123.377914410999978, 48.411128391000041 ], [ -123.37791609699994, 48.411235187000095 ], [ -123.378135570999987, 48.411462179000061 ], [ -123.37816424199994, 48.411491841000029 ], [ -123.377593699999963, 48.411994788000101 ], [ -123.37759310200002, 48.411995295000047 ], [ -123.376939011999966, 48.412601309000053 ], [ -123.37655360699992, 48.412958798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201388789", "BldgCostT": "126785372", "sL_LossRatio": "0.829170153817085", "sL_AssetLoss": "151472.77", "sL_BldgLoss": "125596.7", "sL_StrLoss": "88768.9", "sL_NStrLoss": "36827.8", "sL_ContLoss": "25876.07", "geom_point": "0101000020E6100000FF0B0C723AD85EC056AE6CF6F2344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.375623693999984, 48.413819604000032 ], [ -123.37655360699992, 48.412958798 ], [ -123.376939011999966, 48.412601309000053 ], [ -123.37759310200002, 48.411995295000047 ], [ -123.377593699999963, 48.411994788000101 ], [ -123.37816424199994, 48.411491841000029 ], [ -123.37845279899993, 48.411790287000052 ], [ -123.378453221999962, 48.41184701100007 ], [ -123.378507475999967, 48.411846832000016 ], [ -123.379017797999936, 48.412374594000056 ], [ -123.379957415999982, 48.412832909000045 ], [ -123.38008265299996, 48.412893993000047 ], [ -123.380082855999916, 48.412921227000069 ], [ -123.380138113999976, 48.412921044000036 ], [ -123.380933640999913, 48.413309056000102 ], [ -123.381303352, 48.413489383000048 ], [ -123.381305126999933, 48.413726874000055 ], [ -123.381373605999983, 48.413726646000036 ], [ -123.381334210999981, 48.413785189000059 ], [ -123.380114684999953, 48.41492177100006 ], [ -123.379364193999933, 48.415621198000089 ], [ -123.378322290999932, 48.415120188000103 ], [ -123.377862419999929, 48.414898599000075 ], [ -123.377218589999941, 48.414589597000045 ], [ -123.376371814999942, 48.414180779000077 ], [ -123.375623693999984, 48.413819604000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228096886", "BldgCostT": "157327079", "sL_LossRatio": "0.731493218149524", "sL_AssetLoss": "99088", "sL_BldgLoss": "72482.2", "sL_StrLoss": "33481.2", "sL_NStrLoss": "39001", "sL_ContLoss": "26605.8", "geom_point": "0101000020E610000060042A6F09D85EC0508F2BFD1D354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.373913504999962, 48.415346311000071 ], [ -123.375623693999984, 48.413819604000032 ], [ -123.376371814999942, 48.414180779000077 ], [ -123.377218589999941, 48.414589597000045 ], [ -123.37556790099994, 48.41613859500012 ], [ -123.373913504999962, 48.415346311000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "375240124", "BldgCostT": "250283351", "sL_LossRatio": "0.799059261910093", "sL_AssetLoss": "161235.1", "sL_BldgLoss": "128836.4", "sL_StrLoss": "71105.7", "sL_NStrLoss": "57730.7", "sL_ContLoss": "32398.7", "geom_point": "0101000020E6100000618684F72ED85EC03FDFA2D541354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37556790099994, 48.41613859500012 ], [ -123.377218589999941, 48.414589597000045 ], [ -123.377862419999929, 48.414898599000075 ], [ -123.378322290999932, 48.415120188000103 ], [ -123.379364193999933, 48.415621198000089 ], [ -123.380152398999925, 48.416004199000035 ], [ -123.379823797999975, 48.416334190000107 ], [ -123.379698416999986, 48.416450800000035 ], [ -123.379165300999929, 48.416946493000083 ], [ -123.378515400999973, 48.417550914000081 ], [ -123.378296558999949, 48.417446119000068 ], [ -123.377694918999921, 48.417158028000088 ], [ -123.377476081999973, 48.417053231000111 ], [ -123.377450141999944, 48.417040795000048 ], [ -123.376658475999989, 48.416661698000041 ], [ -123.376048795999978, 48.416369272000111 ], [ -123.37556790099994, 48.41613859500012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "443430470", "BldgCostT": "307240413", "sL_LossRatio": "0.747436344785314", "sL_AssetLoss": "126127.53", "sL_BldgLoss": "94272.3", "sL_StrLoss": "50218", "sL_NStrLoss": "44054.3", "sL_ContLoss": "31855.23", "geom_point": "0101000020E61000008920F01BFAD75EC03F29BC998B354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.372412895999943, 48.418075913000088 ], [ -123.373018593999973, 48.416983505000047 ], [ -123.374734226999976, 48.417768254000066 ], [ -123.375953796999966, 48.418326106000094 ], [ -123.377088816999915, 48.418877303000087 ], [ -123.37632879, 48.419566408000051 ], [ -123.372622091999958, 48.418123494000092 ], [ -123.372412895999943, 48.418075913000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "472083841", "BldgCostT": "314996890", "sL_LossRatio": "0.853815591144922", "sL_AssetLoss": "171518.77", "sL_BldgLoss": "146445.4", "sL_StrLoss": "93817.9", "sL_NStrLoss": "52627.5", "sL_ContLoss": "25073.37", "geom_point": "0101000020E610000042D7095840D85EC09F5A2A2DAB354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.377811315, 48.418205296000089 ], [ -123.378515400999973, 48.417550914000081 ], [ -123.379292558, 48.41792535000009 ], [ -123.380709251999988, 48.418607897000086 ], [ -123.381508602999958, 48.418992995000124 ], [ -123.380837608999983, 48.419634807000136 ], [ -123.380084008999987, 48.420333101000026 ], [ -123.379341496999984, 48.421022587000024 ], [ -123.37632879, 48.419566408000051 ], [ -123.377088816999915, 48.418877303000087 ], [ -123.377811315, 48.418205296000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148293364", "BldgCostT": "95996936", "sL_LossRatio": "0.793866395055465", "sL_AssetLoss": "114526.45", "sL_BldgLoss": "90918.7", "sL_StrLoss": "60025.8", "sL_NStrLoss": "30892.9", "sL_ContLoss": "23607.75", "geom_point": "0101000020E61000001E4473B663D85EC03D5741CAD7354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.380837608999983, 48.419634807000136 ], [ -123.381508602999958, 48.418992995000124 ], [ -123.383392108999914, 48.419914393000106 ], [ -123.382689996999929, 48.420535511000061 ], [ -123.382193992999987, 48.420965187000022 ], [ -123.381914097999953, 48.421221598000045 ], [ -123.381408698999977, 48.42166737700007 ], [ -123.381145306999898, 48.421899694000039 ], [ -123.380991062999925, 48.422018789000063 ], [ -123.38097901299993, 48.422028105000088 ], [ -123.3787031, 48.421758007000086 ], [ -123.378594881999973, 48.421714816000083 ], [ -123.379341496999984, 48.421022587000024 ], [ -123.380084008999987, 48.420333101000026 ], [ -123.380837608999983, 48.419634807000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228155767", "BldgCostT": "151465229", "sL_LossRatio": "0.799046101721253", "sL_AssetLoss": "100132.27", "sL_BldgLoss": "80010.3", "sL_StrLoss": "57510.3", "sL_NStrLoss": "22500", "sL_ContLoss": "20121.97", "geom_point": "0101000020E6100000E67D047A38D85EC09D85B86A05364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37651893499995, 48.424408426000127 ], [ -123.376517901999947, 48.424268602000062 ], [ -123.37600168299997, 48.424270289000077 ], [ -123.375888908999968, 48.424188387000086 ], [ -123.375765508999919, 48.423783884000095 ], [ -123.376046196999965, 48.423440710000094 ], [ -123.375720001999937, 48.423100312000017 ], [ -123.375698199999988, 48.423089659000048 ], [ -123.375696962999911, 48.42292180400004 ], [ -123.375356941999939, 48.422922913000058 ], [ -123.37487761099996, 48.422688699000034 ], [ -123.374392997999948, 48.422870988000128 ], [ -123.374457590999953, 48.422925844000083 ], [ -123.3742109499999, 48.422926646000093 ], [ -123.374074163999978, 48.422810354000092 ], [ -123.374071059999963, 48.422387308000069 ], [ -123.373989505999972, 48.42238757200009 ], [ -123.373945938999924, 48.422419560000066 ], [ -123.373893034999981, 48.422387886000131 ], [ -123.373578453999968, 48.42238890800008 ], [ -123.373250988999985, 48.422110494000023 ], [ -123.37132577899996, 48.421305792000041 ], [ -123.370859350999979, 48.421245315000178 ], [ -123.370924601999917, 48.420752594000056 ], [ -123.373297719, 48.421398726000049 ], [ -123.37415009299994, 48.421630812000039 ], [ -123.374353721999952, 48.4214335120001 ], [ -123.374871597999942, 48.420931704000161 ], [ -123.375591588999953, 48.42023350900007 ], [ -123.37632879, 48.419566408000051 ], [ -123.379341496999984, 48.421022587000024 ], [ -123.378594881999973, 48.421714816000083 ], [ -123.3787031, 48.421758007000086 ], [ -123.38097901299993, 48.422028105000088 ], [ -123.380991062999925, 48.422018789000063 ], [ -123.381145306999898, 48.421899694000039 ], [ -123.381408698999977, 48.42166737700007 ], [ -123.381914097999953, 48.421221598000045 ], [ -123.382193992999987, 48.420965187000022 ], [ -123.384392303999988, 48.422028605000094 ], [ -123.384593711999969, 48.421849580000128 ], [ -123.385337096999962, 48.422021286000117 ], [ -123.386561052999923, 48.422800923000111 ], [ -123.386695102999965, 48.422886308000017 ], [ -123.387493483999961, 48.423582959000065 ], [ -123.386266600999988, 48.423578797000111 ], [ -123.385532792999967, 48.423329594000037 ], [ -123.385078111, 48.423735504000035 ], [ -123.385322414999962, 48.423842305000065 ], [ -123.385254209999957, 48.423896392000088 ], [ -123.384861590999975, 48.423826599000044 ], [ -123.3854265, 48.423283994 ], [ -123.383353096999883, 48.422589014000089 ], [ -123.38229661099993, 48.42247650800001 ], [ -123.381850589999885, 48.422549094000026 ], [ -123.382039008999982, 48.422315508000054 ], [ -123.381970912999989, 48.42221589800009 ], [ -123.381458790999929, 48.422317010000143 ], [ -123.38066359499993, 48.422849600000085 ], [ -123.380173922999958, 48.422411005000058 ], [ -123.380067205, 48.422420891000058 ], [ -123.380000611999947, 48.422600392000042 ], [ -123.37933671899999, 48.422576202000073 ], [ -123.379335198999954, 48.422278509000094 ], [ -123.378708580999927, 48.422824800000065 ], [ -123.37845101799995, 48.42304934000007 ], [ -123.378289464999952, 48.423045340000087 ], [ -123.378313208999927, 48.422616980000029 ], [ -123.378326710999957, 48.422373395000136 ], [ -123.378125873, 48.422374055000098 ], [ -123.37812694900002, 48.422519075000025 ], [ -123.37813187899999, 48.423183724000118 ], [ -123.377726390999939, 48.423185056000072 ], [ -123.377732839999965, 48.424055238000079 ], [ -123.377444710999981, 48.424309402000105 ], [ -123.377256194, 48.424382096000095 ], [ -123.37651893499995, 48.424408426000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "332595166", "BldgCostT": "215188616", "sL_LossRatio": "0.679793510792881", "sL_AssetLoss": "192081.71", "sL_BldgLoss": "130575.9", "sL_StrLoss": "66660.5", "sL_NStrLoss": "63915.4", "sL_ContLoss": "61505.81", "geom_point": "0101000020E61000003C89837CB7D85EC0B912A91F8A354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.385337096999962, 48.422021286000117 ], [ -123.384593711999969, 48.421849580000128 ], [ -123.384392303999988, 48.422028605000094 ], [ -123.382193992999987, 48.420965187000022 ], [ -123.382689996999929, 48.420535511000061 ], [ -123.383392108999914, 48.419914393000106 ], [ -123.384246292999975, 48.419131113000063 ], [ -123.382269505999915, 48.418211012000064 ], [ -123.383105518999926, 48.417413793000058 ], [ -123.384724200999955, 48.415902609000071 ], [ -123.384590497999966, 48.415759500000014 ], [ -123.383876601999987, 48.415302698000076 ], [ -123.382977911999902, 48.414721289000056 ], [ -123.382145005999973, 48.414173208000101 ], [ -123.381334210999981, 48.413785189000059 ], [ -123.381373605999983, 48.413726646000036 ], [ -123.381775855999933, 48.413725312000089 ], [ -123.382199865999951, 48.413983386000034 ], [ -123.383097469999925, 48.414529691000027 ], [ -123.383301221999957, 48.414653685000047 ], [ -123.383700704999981, 48.414896809000012 ], [ -123.384444911999964, 48.415029304000051 ], [ -123.385268212999989, 48.414935301000114 ], [ -123.385426024999958, 48.414987122000092 ], [ -123.386424587999926, 48.414751482000092 ], [ -123.386681603999989, 48.414698891000107 ], [ -123.38670833899999, 48.414681141000081 ], [ -123.386951073999967, 48.414520127000124 ], [ -123.386995726999899, 48.414442719000064 ], [ -123.387109097999911, 48.414412151000064 ], [ -123.387204506999979, 48.414510727000042 ], [ -123.387320444999929, 48.414785910000091 ], [ -123.388000049, 48.414752211000128 ], [ -123.387998289, 48.414784086000054 ], [ -123.388230545999974, 48.414783303000029 ], [ -123.3882329, 48.414740662000085 ], [ -123.388673240999964, 48.41471882400004 ], [ -123.389015781999987, 48.414727275000089 ], [ -123.389015587999936, 48.414701844000035 ], [ -123.391439144999964, 48.414581607000116 ], [ -123.391447990999936, 48.414678745000124 ], [ -123.391448822999962, 48.414787268000104 ], [ -123.391457893000037, 48.414787492000059 ], [ -123.391503139999926, 48.415284432000107 ], [ -123.388253575999926, 48.415462232000074 ], [ -123.388200591999961, 48.41624802200009 ], [ -123.391438342999948, 48.416074525000063 ], [ -123.391384468999902, 48.416840231000059 ], [ -123.388073401999918, 48.416999203000103 ], [ -123.388158553, 48.417387725000033 ], [ -123.388070495999955, 48.417423113000027 ], [ -123.387855012, 48.417589998000103 ], [ -123.388290402999985, 48.417813588000108 ], [ -123.388318275999936, 48.418128393000053 ], [ -123.387901106999891, 48.418309189000098 ], [ -123.386348216999977, 48.418512898000081 ], [ -123.386284103999941, 48.418765011000055 ], [ -123.38614911699996, 48.418856096000056 ], [ -123.386243777999979, 48.418954393000107 ], [ -123.386540692, 48.418971497000079 ], [ -123.387001996999956, 48.419176593000067 ], [ -123.38746249699993, 48.419229312000091 ], [ -123.387438195999962, 48.419552603000035 ], [ -123.387587083999932, 48.419660792000109 ], [ -123.388249493999936, 48.419720615000067 ], [ -123.388649457999989, 48.419858125000104 ], [ -123.388653967999929, 48.420449702000042 ], [ -123.388248502999915, 48.420451072000091 ], [ -123.388249335, 48.420560406000114 ], [ -123.388489992999979, 48.420566343000111 ], [ -123.386682509999957, 48.421624804 ], [ -123.386943191999961, 48.421893993000026 ], [ -123.38774201599999, 48.42231410100004 ], [ -123.387947822999976, 48.422537702000085 ], [ -123.388021303999935, 48.423239889000094 ], [ -123.387536822999934, 48.42358310500007 ], [ -123.387493483999961, 48.423582959000065 ], [ -123.386695102999965, 48.422886308000017 ], [ -123.386561052999923, 48.422800923000111 ], [ -123.385337096999962, 48.422021286000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "341857328", "BldgCostT": "228178419", "sL_LossRatio": "0.754733763794463", "sL_AssetLoss": "207851.52", "sL_BldgLoss": "156872.56", "sL_StrLoss": "96661.26", "sL_NStrLoss": "60211.3", "sL_ContLoss": "50978.96", "geom_point": "0101000020E6100000C226BE1C6ED85EC04251FB0857354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.380114684999953, 48.41492177100006 ], [ -123.381334210999981, 48.413785189000059 ], [ -123.382145005999973, 48.414173208000101 ], [ -123.382977911999902, 48.414721289000056 ], [ -123.383876601999987, 48.415302698000076 ], [ -123.384590497999966, 48.415759500000014 ], [ -123.384724200999955, 48.415902609000071 ], [ -123.383105518999926, 48.417413793000058 ], [ -123.382269505999915, 48.418211012000064 ], [ -123.384246292999975, 48.419131113000063 ], [ -123.383392108999914, 48.419914393000106 ], [ -123.381508602999958, 48.418992995000124 ], [ -123.380709251999988, 48.418607897000086 ], [ -123.379292558, 48.41792535000009 ], [ -123.378515400999973, 48.417550914000081 ], [ -123.379165300999929, 48.416946493000083 ], [ -123.379698416999986, 48.416450800000035 ], [ -123.379823797999975, 48.416334190000107 ], [ -123.380152398999925, 48.416004199000035 ], [ -123.379364193999933, 48.415621198000089 ], [ -123.380114684999953, 48.41492177100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418728270", "BldgCostT": "284269630", "sL_LossRatio": "0.790297918789769", "sL_AssetLoss": "469445.751", "sL_BldgLoss": "371002", "sL_StrLoss": "165218", "sL_NStrLoss": "205784", "sL_ContLoss": "98443.751", "geom_point": "0101000020E6100000FFE4396C6CD95EC03E3387C5A4364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.394798646999959, 48.428525675000053 ], [ -123.39520417499989, 48.428524283000094 ], [ -123.39520379599999, 48.428475179000031 ], [ -123.395537079999954, 48.428539302000075 ], [ -123.396359606999937, 48.428465293000038 ], [ -123.397033279, 48.428066495000131 ], [ -123.39765671399999, 48.428200399000062 ], [ -123.397911708, 48.428153395000074 ], [ -123.39805850799999, 48.427946883000061 ], [ -123.398178107999911, 48.427559497000132 ], [ -123.398160407999939, 48.427158757000058 ], [ -123.398144706000011, 48.426803211000163 ], [ -123.397707901999965, 48.426354595000092 ], [ -123.397126996999972, 48.426141015000084 ], [ -123.39669350299999, 48.426071190000165 ], [ -123.395817796999935, 48.426397303000073 ], [ -123.395329004999923, 48.426381704000079 ], [ -123.395059394999947, 48.426328988000108 ], [ -123.394529187999964, 48.425988592000046 ], [ -123.394958387999907, 48.425501492000116 ], [ -123.395647989999958, 48.425588412000124 ], [ -123.395795599999985, 48.42553430000001 ], [ -123.395793315999953, 48.425065704000083 ], [ -123.39569721499997, 48.424940407000072 ], [ -123.395236594999972, 48.424862013000066 ], [ -123.394656683999983, 48.42491759100011 ], [ -123.3947074, 48.424611403000029 ], [ -123.39462602, 48.424413401000066 ], [ -123.394434209999943, 48.42426099699999 ], [ -123.394150909999951, 48.424235390000021 ], [ -123.39404011699996, 48.423849393000118 ], [ -123.394254013999927, 48.423704193000113 ], [ -123.395199401999932, 48.423511893000047 ], [ -123.395348617999957, 48.423422199000093 ], [ -123.395510790999964, 48.423474900000059 ], [ -123.39559458799999, 48.423789596000091 ], [ -123.395839583999958, 48.424067290000039 ], [ -123.396272803999921, 48.424174106000052 ], [ -123.396569797999959, 48.424172687000073 ], [ -123.396786281999965, 48.424055896000027 ], [ -123.397179309999956, 48.424198390000136 ], [ -123.397447801999959, 48.424161296000136 ], [ -123.397664784999932, 48.424303704000074 ], [ -123.397952592999943, 48.424500999000045 ], [ -123.39849128499999, 48.42410301300005 ], [ -123.39858398, 48.424114706000111 ], [ -123.399297889999943, 48.42420491100011 ], [ -123.399533890999948, 48.424230596000029 ], [ -123.40000284599995, 48.424291689000079 ], [ -123.400668475999964, 48.424378398000115 ], [ -123.400613890999935, 48.424560353000039 ], [ -123.400511582999968, 48.424901189000089 ], [ -123.400107396999886, 48.426242195000043 ], [ -123.400636506999888, 48.426311107000046 ], [ -123.40001166899998, 48.426683077000064 ], [ -123.399450903999977, 48.427016909000081 ], [ -123.399146096, 48.427976713000092 ], [ -123.399075483999951, 48.428198999000145 ], [ -123.399015583, 48.428358908000078 ], [ -123.398985391999943, 48.428439401000048 ], [ -123.398980809999927, 48.428572699000057 ], [ -123.399038113999978, 48.428682293000122 ], [ -123.399111209999916, 48.428769768000059 ], [ -123.39941289399998, 48.429130685000089 ], [ -123.398104, 48.429621601000051 ], [ -123.39690476399997, 48.430072327000104 ], [ -123.395725799999937, 48.430515414000119 ], [ -123.395418354999933, 48.43063073900003 ], [ -123.394961107999933, 48.430802299000064 ], [ -123.394947008999949, 48.430850652000075 ], [ -123.394902895999962, 48.431001987000066 ], [ -123.39456832899999, 48.430998338000023 ], [ -123.394444400999987, 48.430996999000044 ], [ -123.394299694, 48.430952893000104 ], [ -123.394242127, 48.429067375000095 ], [ -123.394397293999958, 48.429066842000069 ], [ -123.394395205999956, 48.428796954000042 ], [ -123.394800736999969, 48.428795563000101 ], [ -123.394798646999959, 48.428525675000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145377834", "BldgCostT": "97793334", "sL_LossRatio": "0.793091414872298", "sL_AssetLoss": "462219.1", "sL_BldgLoss": "366582", "sL_StrLoss": "189959", "sL_NStrLoss": "176623", "sL_ContLoss": "95637.1", "geom_point": "0101000020E6100000D33FC1C5CAD95EC024C522E156364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40001166899998, 48.426683077000064 ], [ -123.400636506999888, 48.426311107000046 ], [ -123.400107396999886, 48.426242195000043 ], [ -123.400511582999968, 48.424901189000089 ], [ -123.400613890999935, 48.424560353000039 ], [ -123.400668475999964, 48.424378398000115 ], [ -123.40000284599995, 48.424291689000079 ], [ -123.399533890999948, 48.424230596000029 ], [ -123.398750049999975, 48.422557298000115 ], [ -123.398629058999987, 48.422299032000126 ], [ -123.398580012999943, 48.422194310000101 ], [ -123.398525563999954, 48.422073026000099 ], [ -123.398474033999904, 48.421958240000066 ], [ -123.398374912999913, 48.421737451000126 ], [ -123.400323862999969, 48.422108067000053 ], [ -123.400248184999967, 48.422158596000024 ], [ -123.400541714999946, 48.42234169700005 ], [ -123.400834011999947, 48.422472404000111 ], [ -123.401200303999985, 48.422557996000108 ], [ -123.40404637599994, 48.422937191000123 ], [ -123.405179389999944, 48.423096659000059 ], [ -123.406078007999938, 48.423223137000065 ], [ -123.406726378999949, 48.423314384 ], [ -123.408145062999921, 48.423514019000073 ], [ -123.408678674999933, 48.423589097000097 ], [ -123.40842178099993, 48.424462000000112 ], [ -123.408155715999939, 48.425378106000046 ], [ -123.407749782999957, 48.425321779000051 ], [ -123.406831143999938, 48.425194287000103 ], [ -123.406600098999931, 48.42516222600004 ], [ -123.406223927000028, 48.425110016000104 ], [ -123.405709314999982, 48.425038598000043 ], [ -123.405071688999925, 48.424659499000029 ], [ -123.404962914999913, 48.424997348000034 ], [ -123.404904522999985, 48.42517864300001 ], [ -123.404814713999926, 48.42545760800008 ], [ -123.40456639599995, 48.426196492000074 ], [ -123.404336297, 48.426799496000108 ], [ -123.402374304999952, 48.426532304 ], [ -123.402213507999974, 48.426512105000057 ], [ -123.399999671999964, 48.427702221000075 ], [ -123.399075483999951, 48.428198999000145 ], [ -123.399146096, 48.427976713000092 ], [ -123.399450903999977, 48.427016909000081 ], [ -123.40001166899998, 48.426683077000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232065728", "BldgCostT": "158259857", "sL_LossRatio": "0.851923952370735", "sL_AssetLoss": "770375.1", "sL_BldgLoss": "656301", "sL_StrLoss": "334893", "sL_NStrLoss": "321408", "sL_ContLoss": "114074.1", "geom_point": "0101000020E6100000A10825A3B5D95EC0746010C3D4364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.399999671999964, 48.427702221000075 ], [ -123.402213507999974, 48.426512105000057 ], [ -123.402374304999952, 48.426532304 ], [ -123.404336297, 48.426799496000108 ], [ -123.404082991999957, 48.427604905000088 ], [ -123.403860901999963, 48.428406596000059 ], [ -123.403611995999967, 48.42913009300004 ], [ -123.403329088999953, 48.429170895 ], [ -123.403246478999975, 48.429201594000077 ], [ -123.40310597699991, 48.429253801000037 ], [ -123.40240604, 48.429635852000061 ], [ -123.40204202699999, 48.429834552000081 ], [ -123.401972299999969, 48.429872590000073 ], [ -123.400613077999964, 48.430592292000078 ], [ -123.400008004999975, 48.429840605000102 ], [ -123.400000851999948, 48.429832074000103 ], [ -123.39941289399998, 48.429130685000089 ], [ -123.399111209999916, 48.428769768000059 ], [ -123.399038113999978, 48.428682293000122 ], [ -123.398980809999927, 48.428572699000057 ], [ -123.398985391999943, 48.428439401000048 ], [ -123.399015583, 48.428358908000078 ], [ -123.399075483999951, 48.428198999000145 ], [ -123.399999671999964, 48.427702221000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "482668790", "BldgCostT": "331973047", "sL_LossRatio": "0.844597153873081", "sL_AssetLoss": "192199.44", "sL_BldgLoss": "162331.1", "sL_StrLoss": "94074.7", "sL_NStrLoss": "68256.4", "sL_ContLoss": "29868.34", "geom_point": "0101000020E6100000B84C09D2D6D95EC00344EB5522374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.403611995999967, 48.42913009300004 ], [ -123.404292923999947, 48.429140503000092 ], [ -123.405857434999945, 48.429414506000107 ], [ -123.406854906999939, 48.429589210000088 ], [ -123.406555482999948, 48.430127505000044 ], [ -123.405930206999955, 48.430776802000025 ], [ -123.405483485999966, 48.431121996000059 ], [ -123.405335517999958, 48.431238305000065 ], [ -123.404717285999936, 48.431806702000124 ], [ -123.40406657699999, 48.432846103000045 ], [ -123.403977816999955, 48.432987904000093 ], [ -123.40353208499999, 48.432993194000062 ], [ -123.402478582999905, 48.43212600099999 ], [ -123.402009199999952, 48.431740091000044 ], [ -123.400613077999964, 48.430592292000078 ], [ -123.401972299999969, 48.429872590000073 ], [ -123.40204202699999, 48.429834552000081 ], [ -123.40240604, 48.429635852000061 ], [ -123.40310597699991, 48.429253801000037 ], [ -123.403246478999975, 48.429201594000077 ], [ -123.403329088999953, 48.429170895 ], [ -123.403611995999967, 48.42913009300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163078720", "BldgCostT": "108525413", "sL_LossRatio": "0.838512078330769", "sL_AssetLoss": "606147.5", "sL_BldgLoss": "508262", "sL_StrLoss": "272213", "sL_NStrLoss": "236049", "sL_ContLoss": "97885.5", "geom_point": "0101000020E6100000BF2B485424DA5EC071C68BE0DA364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.407979584999936, 48.429699690000106 ], [ -123.407865648999987, 48.429686089000029 ], [ -123.407756841999955, 48.429701477000094 ], [ -123.406854906999939, 48.429589210000088 ], [ -123.405857434999945, 48.429414506000107 ], [ -123.404292923999947, 48.429140503000092 ], [ -123.403611995999967, 48.42913009300004 ], [ -123.403860901999963, 48.428406596000059 ], [ -123.404082991999957, 48.427604905000088 ], [ -123.404336297, 48.426799496000108 ], [ -123.405058136999926, 48.426898861000076 ], [ -123.407605205999957, 48.427249397000033 ], [ -123.408665386999942, 48.427403384000058 ], [ -123.409130004999966, 48.427468896000065 ], [ -123.410393481, 48.427630497000095 ], [ -123.410425167999961, 48.427634564000115 ], [ -123.41225991499999, 48.427870090000056 ], [ -123.412460689999961, 48.427895962000072 ], [ -123.413598415999928, 48.428042503000029 ], [ -123.413032677999979, 48.429011693000049 ], [ -123.412496089999962, 48.4298912960001 ], [ -123.412446782999979, 48.430126410000071 ], [ -123.412438538999979, 48.430171382000069 ], [ -123.410820577, 48.430107390000039 ], [ -123.409803063999931, 48.42998461500008 ], [ -123.409789728999968, 48.42998297500008 ], [ -123.409363094999946, 48.429929369000035 ], [ -123.407963159999966, 48.429753406000088 ], [ -123.407979584999936, 48.429699690000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "347291447", "BldgCostT": "237535269", "sL_LossRatio": "0.823422466716688", "sL_AssetLoss": "189652.1", "sL_BldgLoss": "156163.8", "sL_StrLoss": "101823.3", "sL_NStrLoss": "54340.5", "sL_ContLoss": "33488.3", "geom_point": "0101000020E61000002136DC702DDA5EC0CE6672BD2F374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405930206999955, 48.430776802000025 ], [ -123.406555482999948, 48.430127505000044 ], [ -123.406854906999939, 48.429589210000088 ], [ -123.407756841999955, 48.429701477000094 ], [ -123.407865648999987, 48.429686089000029 ], [ -123.407979584999936, 48.429699690000106 ], [ -123.407963159999966, 48.429753406000088 ], [ -123.409363094999946, 48.429929369000035 ], [ -123.409789728999968, 48.42998297500008 ], [ -123.409803063999931, 48.42998461500008 ], [ -123.410820577, 48.430107390000039 ], [ -123.412438538999979, 48.430171382000069 ], [ -123.413649295, 48.430196391000017 ], [ -123.414786438999954, 48.430143130000083 ], [ -123.415632507999959, 48.430029287000053 ], [ -123.415601106999986, 48.430530797000067 ], [ -123.415447795999938, 48.430520712000067 ], [ -123.414874100999938, 48.430747506000074 ], [ -123.413251897999928, 48.431048791000094 ], [ -123.412458403, 48.431198008000095 ], [ -123.412401353999925, 48.431329808000022 ], [ -123.412319285999928, 48.431519296000054 ], [ -123.412073719999967, 48.431741391000081 ], [ -123.411646714999947, 48.431901404000072 ], [ -123.411190976999947, 48.431967787000133 ], [ -123.410214914000036, 48.431952089000049 ], [ -123.408314005999955, 48.432140885000095 ], [ -123.407795490999973, 48.432245501000054 ], [ -123.406514585999957, 48.432669509000043 ], [ -123.405367831999982, 48.432902936000083 ], [ -123.404982693999926, 48.432981324000089 ], [ -123.404893403999921, 48.432999502000051 ], [ -123.404819045999915, 48.432998549000089 ], [ -123.404656894999988, 48.432996494000065 ], [ -123.404224173, 48.432991013000077 ], [ -123.403977816999955, 48.432987904000093 ], [ -123.40406657699999, 48.432846103000045 ], [ -123.404717285999936, 48.431806702000124 ], [ -123.405335517999958, 48.431238305000065 ], [ -123.405483485999966, 48.431121996000059 ], [ -123.405930206999955, 48.430776802000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152124220", "BldgCostT": "102390413", "sL_LossRatio": "0.876700503163667", "sL_AssetLoss": "126032.55", "sL_BldgLoss": "110492.8", "sL_StrLoss": "81737.4", "sL_NStrLoss": "28755.4", "sL_ContLoss": "15539.75", "geom_point": "0101000020E61000003CC680B20ADA5EC08FE9851298374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.402866597999946, 48.436070107000084 ], [ -123.402946569999955, 48.435837240000112 ], [ -123.402978997, 48.43574279200007 ], [ -123.403237816999962, 48.434943680000082 ], [ -123.403351790999935, 48.434591691000094 ], [ -123.40359330099993, 48.433845995000063 ], [ -123.40378300799992, 48.433422619000055 ], [ -123.403977816999955, 48.432987904000093 ], [ -123.404224173, 48.432991013000077 ], [ -123.404656894999988, 48.432996494000065 ], [ -123.404819045999915, 48.432998549000089 ], [ -123.404893403999921, 48.432999502000051 ], [ -123.404982693999926, 48.432981324000089 ], [ -123.405367831999982, 48.432902936000083 ], [ -123.406514585999957, 48.432669509000043 ], [ -123.407795490999973, 48.432245501000054 ], [ -123.408314005999955, 48.432140885000095 ], [ -123.410214914000036, 48.431952089000049 ], [ -123.411190976999947, 48.431967787000133 ], [ -123.411151830000023, 48.432515063 ], [ -123.411150597999921, 48.432532295000058 ], [ -123.410915513999967, 48.433007203000116 ], [ -123.41078755599996, 48.433261856000051 ], [ -123.410509622999939, 48.433815205000023 ], [ -123.410062893000017, 48.434653707000088 ], [ -123.409792481999958, 48.434908690000022 ], [ -123.409145404999961, 48.435265287000078 ], [ -123.407794291999963, 48.436106893000066 ], [ -123.406728596000022, 48.436567802000056 ], [ -123.406160508999932, 48.436788404000026 ], [ -123.405673313999955, 48.436862100000106 ], [ -123.405246200999983, 48.436849780000038 ], [ -123.404928793, 48.436780688000077 ], [ -123.404184889999954, 48.436514490000064 ], [ -123.402866597999946, 48.436070107000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237315501", "BldgCostT": "161180001", "sL_LossRatio": "0.96669181411523", "sL_AssetLoss": "119150.59", "sL_BldgLoss": "115181.9", "sL_StrLoss": "86753", "sL_NStrLoss": "28428.9", "sL_ContLoss": "3968.69", "geom_point": "0101000020E6100000A1BE556C86DA5EC0AFA39A2791374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.412458403, 48.431198008000095 ], [ -123.413251897999928, 48.431048791000094 ], [ -123.413268712999937, 48.431677683000053 ], [ -123.413375908999981, 48.431765998000095 ], [ -123.413500141999918, 48.43185123700011 ], [ -123.414266036999905, 48.432376612000049 ], [ -123.4144255099999, 48.432486008000062 ], [ -123.415027160999941, 48.432891404000038 ], [ -123.415571616999955, 48.432921605000033 ], [ -123.41717471299998, 48.433095996000084 ], [ -123.417616913999964, 48.433660340000081 ], [ -123.41781299599991, 48.433910610000133 ], [ -123.417845564999951, 48.434013735000057 ], [ -123.417915379999954, 48.434234998000122 ], [ -123.417893316999979, 48.434466205 ], [ -123.417891338999965, 48.434470182000126 ], [ -123.417853569999963, 48.434546659000063 ], [ -123.417760093000012, 48.434735839000048 ], [ -123.417107394999917, 48.436056813000043 ], [ -123.417091310999936, 48.436228585000066 ], [ -123.417160003999967, 48.436452996000071 ], [ -123.417268004999926, 48.43659990900008 ], [ -123.414320610999965, 48.436922097000064 ], [ -123.413916507999943, 48.435303385000104 ], [ -123.413534114999933, 48.435288705000048 ], [ -123.413314492999973, 48.43523188800004 ], [ -123.411745902999911, 48.434156502000071 ], [ -123.411369288999964, 48.43401028800011 ], [ -123.410509622999939, 48.433815205000023 ], [ -123.41078755599996, 48.433261856000051 ], [ -123.410915513999967, 48.433007203000116 ], [ -123.411150597999921, 48.432532295000058 ], [ -123.411151830000023, 48.432515063 ], [ -123.411190976999947, 48.431967787000133 ], [ -123.411646714999947, 48.431901404000072 ], [ -123.412073719999967, 48.431741391000081 ], [ -123.412319285999928, 48.431519296000054 ], [ -123.412401353999925, 48.431329808000022 ], [ -123.412458403, 48.431198008000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117136917", "BldgCostT": "77396667", "sL_LossRatio": "0.932843513137907", "sL_AssetLoss": "151538.6", "sL_BldgLoss": "141361.8", "sL_StrLoss": "113782.8", "sL_NStrLoss": "27579", "sL_ContLoss": "10176.8", "geom_point": "0101000020E6100000BC1AF23237DA5EC02B2E9EACDE374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405277614999946, 48.437792672000121 ], [ -123.403461345999972, 48.437278389000042 ], [ -123.403233827999955, 48.437287114000071 ], [ -123.402568359999947, 48.436934119000099 ], [ -123.40261469099994, 48.436798790000061 ], [ -123.402866597999946, 48.436070107000084 ], [ -123.404184889999954, 48.436514490000064 ], [ -123.404928793, 48.436780688000077 ], [ -123.405246200999983, 48.436849780000038 ], [ -123.405673313999955, 48.436862100000106 ], [ -123.406160508999932, 48.436788404000026 ], [ -123.406728596000022, 48.436567802000056 ], [ -123.407794291999963, 48.436106893000066 ], [ -123.409145404999961, 48.435265287000078 ], [ -123.409792481999958, 48.434908690000022 ], [ -123.410062893000017, 48.434653707000088 ], [ -123.410509622999939, 48.433815205000023 ], [ -123.411369288999964, 48.43401028800011 ], [ -123.411745902999911, 48.434156502000071 ], [ -123.413314492999973, 48.43523188800004 ], [ -123.413534114999933, 48.435288705000048 ], [ -123.413916507999943, 48.435303385000104 ], [ -123.414320610999965, 48.436922097000064 ], [ -123.413591582999985, 48.436999891000085 ], [ -123.413712182999959, 48.437499233000075 ], [ -123.413724492999975, 48.437550302000069 ], [ -123.410549192999909, 48.437896710000118 ], [ -123.408934085999974, 48.43807572800003 ], [ -123.406720252999961, 48.43804988100004 ], [ -123.405277614999946, 48.437792672000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11229000", "BldgCostT": "5910000", "sL_LossRatio": "0.500579734736009", "sL_AssetLoss": "35361", "sL_BldgLoss": "17701", "sL_StrLoss": "2741", "sL_NStrLoss": "14960", "sL_ContLoss": "17660", "geom_point": "0101000020E61000003EC8704410DB5EC004B938E89A374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.429178878, 48.439477970000063 ], [ -123.428737395999946, 48.439066562000107 ], [ -123.428146522999953, 48.438652733 ], [ -123.427419557999926, 48.438320085000051 ], [ -123.426309881999941, 48.437940932000068 ], [ -123.425375189999912, 48.437726481000034 ], [ -123.425307990999954, 48.437709204000029 ], [ -123.424410444999921, 48.437573139000058 ], [ -123.424382665999957, 48.437568451000097 ], [ -123.420670124999987, 48.437372625000108 ], [ -123.418540208999985, 48.437103517000025 ], [ -123.417435891, 48.437173009000013 ], [ -123.416502978999958, 48.43718193100009 ], [ -123.415894006, 48.437239514000133 ], [ -123.413724492999975, 48.437550302000069 ], [ -123.413712182999959, 48.437499233000075 ], [ -123.413591582999985, 48.436999891000085 ], [ -123.414320610999965, 48.436922097000064 ], [ -123.417268004999926, 48.43659990900008 ], [ -123.417160003999967, 48.436452996000071 ], [ -123.417091310999936, 48.436228585000066 ], [ -123.417107394999917, 48.436056813000043 ], [ -123.417760093000012, 48.434735839000048 ], [ -123.417853569999963, 48.434546659000063 ], [ -123.417891338999965, 48.434470182000126 ], [ -123.417893316999979, 48.434466205 ], [ -123.417915379999954, 48.434234998000122 ], [ -123.417845564999951, 48.434013735000057 ], [ -123.41781299599991, 48.433910610000133 ], [ -123.417616913999964, 48.433660340000081 ], [ -123.41717471299998, 48.433095996000084 ], [ -123.417030222999955, 48.432897253000064 ], [ -123.416879710000018, 48.432690187000077 ], [ -123.416878103, 48.432102203000056 ], [ -123.418226213999944, 48.432126099000136 ], [ -123.41822751799999, 48.430321598000099 ], [ -123.418209236999942, 48.429841439000036 ], [ -123.41904649, 48.429828504000135 ], [ -123.419161396999982, 48.429825889000085 ], [ -123.420392006999947, 48.429775591000087 ], [ -123.421722413999973, 48.429627708000041 ], [ -123.423057195999931, 48.429472598000118 ], [ -123.424498700999905, 48.429316481000086 ], [ -123.424464323999928, 48.429948301000174 ], [ -123.42444681399995, 48.430270201000077 ], [ -123.42683942599993, 48.430171207000058 ], [ -123.427017133, 48.430459399000064 ], [ -123.427485269999963, 48.431099118000077 ], [ -123.427300095999939, 48.43138629200012 ], [ -123.42705619899999, 48.431333588000015 ], [ -123.426908883999957, 48.431523093000052 ], [ -123.42657218, 48.431614192000033 ], [ -123.426305599, 48.431956011000082 ], [ -123.426415694999903, 48.432208101000079 ], [ -123.426091997999933, 48.432478693000093 ], [ -123.42518809799995, 48.432680913000077 ], [ -123.425290112999946, 48.432796308000043 ], [ -123.425172198999974, 48.432898808000068 ], [ -123.426397344999941, 48.433679112000114 ], [ -123.426643696999918, 48.433836002000106 ], [ -123.426517504999978, 48.433934199000078 ], [ -123.425971722999961, 48.433589629000082 ], [ -123.424997096999988, 48.432974303000101 ], [ -123.42477440499998, 48.433054085000101 ], [ -123.424470925, 48.43276210300008 ], [ -123.424419948999969, 48.43278 ], [ -123.424284406999931, 48.432827601000078 ], [ -123.425375601, 48.434011204000107 ], [ -123.42399009199994, 48.433279092000078 ], [ -123.423883211999936, 48.433351700000067 ], [ -123.423474587, 48.433136711000067 ], [ -123.423595800999948, 48.433046989000147 ], [ -123.423336315999961, 48.432569906000012 ], [ -123.422835594999952, 48.432662405000038 ], [ -123.422389895999956, 48.432609704000065 ], [ -123.422199993, 48.432475914000072 ], [ -123.422170704999957, 48.432250807000045 ], [ -123.422020612999916, 48.432188207000131 ], [ -123.421144302999949, 48.432453088000081 ], [ -123.42041529899997, 48.432572702000101 ], [ -123.420250194999966, 48.433804605000056 ], [ -123.420345600999923, 48.43393139000009 ], [ -123.420873711999931, 48.43398269900014 ], [ -123.421481004999976, 48.433872996000055 ], [ -123.422157891999987, 48.433915694000099 ], [ -123.422578790999978, 48.434120788000037 ], [ -123.423267583999987, 48.434253293000033 ], [ -123.42342000099994, 48.434495388000045 ], [ -123.423920399999957, 48.434700501000044 ], [ -123.423991313999949, 48.434898407000105 ], [ -123.423869693999976, 48.43508791500004 ], [ -123.423520190999923, 48.435160514000074 ], [ -123.423422086999949, 48.434954008000076 ], [ -123.423328388999934, 48.434945400000082 ], [ -123.422858996999963, 48.435325700000064 ], [ -123.422888498999924, 48.435730192000065 ], [ -123.42328081099997, 48.435701707000071 ], [ -123.42353890199999, 48.435800010000023 ], [ -123.423794692999934, 48.435725892000036 ], [ -123.424510404000017, 48.435724488000055 ], [ -123.428251818999968, 48.435413859000079 ], [ -123.42871988, 48.435425226000127 ], [ -123.428756279999973, 48.43571739900009 ], [ -123.427096894999977, 48.436271398 ], [ -123.4271402899999, 48.436560498000091 ], [ -123.429779105999927, 48.436966141000028 ], [ -123.429775252999931, 48.437037035000074 ], [ -123.430229319999953, 48.437035337000083 ], [ -123.43096463099999, 48.437148336000071 ], [ -123.430965934999932, 48.437302477000102 ], [ -123.431238175999951, 48.437301457000039 ], [ -123.431123083999964, 48.437461996000074 ], [ -123.431206183999961, 48.437642896000064 ], [ -123.431640905999984, 48.437820903000038 ], [ -123.431990476999928, 48.437711197000041 ], [ -123.432033596999943, 48.437909186000127 ], [ -123.431603687999882, 48.438306608000033 ], [ -123.431041698999962, 48.43907279900003 ], [ -123.431051943999961, 48.439179456000062 ], [ -123.43107290499999, 48.439397498000069 ], [ -123.431735835999945, 48.439363735000057 ], [ -123.430538304999928, 48.439563066000069 ], [ -123.429515360999972, 48.440026067000069 ], [ -123.42938049199995, 48.439755798000107 ], [ -123.429178878, 48.439477970000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307153132", "BldgCostT": "203762166", "sL_LossRatio": "0.766798167756573", "sL_AssetLoss": "165833.86", "sL_BldgLoss": "127161.1", "sL_StrLoss": "77756.2", "sL_NStrLoss": "49404.9", "sL_ContLoss": "38672.76", "geom_point": "0101000020E6100000C5FDF5A7A0DA5EC049D490C038374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.414874100999938, 48.430747506000074 ], [ -123.415447795999938, 48.430520712000067 ], [ -123.415601106999986, 48.430530797000067 ], [ -123.415632507999959, 48.430029287000053 ], [ -123.415797709999978, 48.430017687000088 ], [ -123.416957755999974, 48.429905693000116 ], [ -123.417279778999941, 48.429886408000122 ], [ -123.417341751999942, 48.42986356400008 ], [ -123.418209236999942, 48.429841439000036 ], [ -123.41822751799999, 48.430321598000099 ], [ -123.418226213999944, 48.432126099000136 ], [ -123.416878103, 48.432102203000056 ], [ -123.416879710000018, 48.432690187000077 ], [ -123.417030222999955, 48.432897253000064 ], [ -123.41717471299998, 48.433095996000084 ], [ -123.415571616999955, 48.432921605000033 ], [ -123.415027160999941, 48.432891404000038 ], [ -123.4144255099999, 48.432486008000062 ], [ -123.414266036999905, 48.432376612000049 ], [ -123.413500141999918, 48.43185123700011 ], [ -123.413375908999981, 48.431765998000095 ], [ -123.413268712999937, 48.431677683000053 ], [ -123.413251897999928, 48.431048791000094 ], [ -123.414874100999938, 48.430747506000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "472489290", "BldgCostT": "314733047", "sL_LossRatio": "0.778666331505945", "sL_AssetLoss": "1258699.6", "sL_BldgLoss": "980107", "sL_StrLoss": "457111", "sL_NStrLoss": "522996", "sL_ContLoss": "278592.6", "geom_point": "0101000020E6100000941DD964A6DA5EC062E6EA43EE364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.413032677999979, 48.429011693000049 ], [ -123.413598415999928, 48.428042503000029 ], [ -123.415010788999936, 48.428246597000047 ], [ -123.415887086999959, 48.428258910000082 ], [ -123.417012788, 48.428276507000078 ], [ -123.41821370299995, 48.428302185000042 ], [ -123.41909918199994, 48.428319295000037 ], [ -123.420436579999944, 48.428340096000071 ], [ -123.42043159, 48.428703384000038 ], [ -123.420426278, 48.428847551000075 ], [ -123.420392006999947, 48.429775591000087 ], [ -123.419161396999982, 48.429825889000085 ], [ -123.41904649, 48.429828504000135 ], [ -123.418209236999942, 48.429841439000036 ], [ -123.417341751999942, 48.42986356400008 ], [ -123.417279778999941, 48.429886408000122 ], [ -123.416957755999974, 48.429905693000116 ], [ -123.415797709999978, 48.430017687000088 ], [ -123.415632507999959, 48.430029287000053 ], [ -123.414786438999954, 48.430143130000083 ], [ -123.413649295, 48.430196391000017 ], [ -123.412438538999979, 48.430171382000069 ], [ -123.412446782999979, 48.430126410000071 ], [ -123.412496089999962, 48.4298912960001 ], [ -123.413032677999979, 48.429011693000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153840500", "BldgCostT": "98000000", "sL_LossRatio": "0.802448564846054", "sL_AssetLoss": "616655.1", "sL_BldgLoss": "494834", "sL_StrLoss": "291020", "sL_NStrLoss": "203814", "sL_ContLoss": "121821.1", "geom_point": "0101000020E6100000429747697CDA5EC081BCC39297364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.410278217999945, 48.425670794000084 ], [ -123.410560599999926, 48.424751587000067 ], [ -123.415158194999961, 48.425376991000029 ], [ -123.415454413999953, 48.424871761000119 ], [ -123.415668527999969, 48.424506600000086 ], [ -123.415867326999958, 48.424590274000103 ], [ -123.416454266999963, 48.424837358000069 ], [ -123.416643588999946, 48.424917071000024 ], [ -123.417260412999951, 48.425176708000052 ], [ -123.417281798999966, 48.425228704000105 ], [ -123.417288711999987, 48.425276582000087 ], [ -123.417132207999927, 48.4255323020001 ], [ -123.417073887999962, 48.425627608000148 ], [ -123.417069028999933, 48.425858149000085 ], [ -123.41706319099994, 48.426133435000047 ], [ -123.417035503999941, 48.427441099000099 ], [ -123.417012788, 48.428276507000078 ], [ -123.415887086999959, 48.428258910000082 ], [ -123.415010788999936, 48.428246597000047 ], [ -123.413598415999928, 48.428042503000029 ], [ -123.412460689999961, 48.427895962000072 ], [ -123.41225991499999, 48.427870090000056 ], [ -123.410425167999961, 48.427634564000115 ], [ -123.410393481, 48.427630497000095 ], [ -123.410695579999953, 48.426598091000059 ], [ -123.410020893999942, 48.426501402000071 ], [ -123.410278217999945, 48.425670794000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218349970", "BldgCostT": "144525413", "sL_LossRatio": "0.802842958710722", "sL_AssetLoss": "594788.8", "sL_BldgLoss": "477522", "sL_StrLoss": "252430", "sL_NStrLoss": "225092", "sL_ContLoss": "117266.8", "geom_point": "0101000020E610000083C4872319DA5EC0BC5CB34B8A364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.404814713999926, 48.42545760800008 ], [ -123.404904522999985, 48.42517864300001 ], [ -123.404962914999913, 48.424997348000034 ], [ -123.405071688999925, 48.424659499000029 ], [ -123.405709314999982, 48.425038598000043 ], [ -123.406223927000028, 48.425110016000104 ], [ -123.406600098999931, 48.42516222600004 ], [ -123.406831143999938, 48.425194287000103 ], [ -123.407749782999957, 48.425321779000051 ], [ -123.408155715999939, 48.425378106000046 ], [ -123.40842178099993, 48.424462000000112 ], [ -123.409442889, 48.424600261000087 ], [ -123.410560599999926, 48.424751587000067 ], [ -123.410278217999945, 48.425670794000084 ], [ -123.410020893999942, 48.426501402000071 ], [ -123.410695579999953, 48.426598091000059 ], [ -123.410393481, 48.427630497000095 ], [ -123.409130004999966, 48.427468896000065 ], [ -123.408665386999942, 48.427403384000058 ], [ -123.407605205999957, 48.427249397000033 ], [ -123.405058136999926, 48.426898861000076 ], [ -123.404336297, 48.426799496000108 ], [ -123.40456639599995, 48.426196492000074 ], [ -123.404814713999926, 48.42545760800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132019053", "BldgCostT": "86558746", "sL_LossRatio": "0.887993965463052", "sL_AssetLoss": "278397.5", "sL_BldgLoss": "247215.3", "sL_StrLoss": "180536", "sL_NStrLoss": "66679.3", "sL_ContLoss": "31182.2", "geom_point": "0101000020E6100000AB7AC8AD2CDA5EC024593D1611364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405175833999948, 48.419223065000097 ], [ -123.405187113999915, 48.41918656600005 ], [ -123.405772902999985, 48.419255033000127 ], [ -123.40633470899995, 48.419342743000058 ], [ -123.409172674999951, 48.419867661000062 ], [ -123.409112919999956, 48.420007164000062 ], [ -123.408956103999969, 48.420373343000044 ], [ -123.408782848999962, 48.420777969000028 ], [ -123.408691341999926, 48.421068808000058 ], [ -123.40862832699996, 48.421480312000071 ], [ -123.409318987999981, 48.421580174000077 ], [ -123.40946391599999, 48.42160035700001 ], [ -123.409853219999917, 48.421654578000073 ], [ -123.41032176199991, 48.421712325000058 ], [ -123.41131389499995, 48.421834599000114 ], [ -123.411449001, 48.42185589700005 ], [ -123.413339407999899, 48.42214072200013 ], [ -123.413628681999924, 48.422184290000118 ], [ -123.413643708, 48.422281099000024 ], [ -123.414522873999914, 48.42315737400007 ], [ -123.414702991999945, 48.423336912000138 ], [ -123.415743322999958, 48.424372307000048 ], [ -123.415668527999969, 48.424506600000086 ], [ -123.415454413999953, 48.424871761000119 ], [ -123.415158194999961, 48.425376991000029 ], [ -123.410560599999926, 48.424751587000067 ], [ -123.409442889, 48.424600261000087 ], [ -123.40842178099993, 48.424462000000112 ], [ -123.408678674999933, 48.423589097000097 ], [ -123.408145062999921, 48.423514019000073 ], [ -123.406726378999949, 48.423314384 ], [ -123.406078007999938, 48.423223137000065 ], [ -123.405179389999944, 48.423096659000059 ], [ -123.40404637599994, 48.422937191000123 ], [ -123.404395883999911, 48.421854602000124 ], [ -123.403789596999971, 48.421766708000085 ], [ -123.403493891999972, 48.421622285000119 ], [ -123.40249119799995, 48.420596694000039 ], [ -123.402434697999936, 48.420470903000073 ], [ -123.40247941299998, 48.420319603000074 ], [ -123.402619024999979, 48.42023460000005 ], [ -123.405018198999926, 48.419732508000067 ], [ -123.405175833999948, 48.419223065000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158132803", "BldgCostT": "101928746", "sL_LossRatio": "0.861084085783909", "sL_AssetLoss": "341140.9", "sL_BldgLoss": "293751", "sL_StrLoss": "217995", "sL_NStrLoss": "75756", "sL_ContLoss": "47389.9", "geom_point": "0101000020E6100000DC431DB1B1DB5EC0A13CEB0190394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.440360495, 48.45231470000008 ], [ -123.438904431, 48.451457150000053 ], [ -123.438284289999942, 48.45089388400001 ], [ -123.437808707999963, 48.450652450000035 ], [ -123.43725184499999, 48.450465839000067 ], [ -123.436626467999972, 48.45039840600009 ], [ -123.436075181999954, 48.450432858000056 ], [ -123.43576436499994, 48.450488442000065 ], [ -123.43543470699997, 48.450575477000072 ], [ -123.435426007999922, 48.450577765000041 ], [ -123.43525045299999, 48.450624096000091 ], [ -123.435248069999929, 48.450624723000033 ], [ -123.434889447999936, 48.451036756000065 ], [ -123.434783031999984, 48.451159031000046 ], [ -123.434651234999961, 48.451348820000106 ], [ -123.434623824999974, 48.451555556000088 ], [ -123.434749358999952, 48.45190397600004 ], [ -123.434703300999942, 48.45245468300007 ], [ -123.434605404999942, 48.45264170500009 ], [ -123.434289113999952, 48.452549299000069 ], [ -123.434190424999926, 48.452538227000069 ], [ -123.434001975999976, 48.452517094000058 ], [ -123.433635801999912, 48.452523591000052 ], [ -123.432386175999937, 48.452644646000053 ], [ -123.431767005999973, 48.452704594000053 ], [ -123.430900680999969, 48.452708590000043 ], [ -123.430803953999927, 48.452709025000082 ], [ -123.430738329999954, 48.452709335000087 ], [ -123.430687017999958, 48.452709565000106 ], [ -123.430686642999945, 48.452707542000027 ], [ -123.430649336999949, 48.452557242000054 ], [ -123.430594160999973, 48.452401571000095 ], [ -123.430555, 48.452301764000062 ], [ -123.430493998999935, 48.45219929900005 ], [ -123.430371327999964, 48.452215405000061 ], [ -123.430256791999966, 48.452349691000087 ], [ -123.429953919999889, 48.452457694000067 ], [ -123.429589793999966, 48.452450697000117 ], [ -123.429084498999913, 48.452384306000027 ], [ -123.429239033999949, 48.451975088000047 ], [ -123.42922075199999, 48.451666246000087 ], [ -123.429073913999943, 48.451263205000039 ], [ -123.42905112699998, 48.451185987000017 ], [ -123.428970089999936, 48.450938757000117 ], [ -123.428822612999909, 48.450671868000022 ], [ -123.428615623, 48.45045673500006 ], [ -123.428378069999937, 48.450282347000019 ], [ -123.428269106999949, 48.450227887000089 ], [ -123.428125762999983, 48.450156276000094 ], [ -123.427854140999941, 48.450062206000027 ], [ -123.427457682999901, 48.449980439000065 ], [ -123.427157256999948, 48.449919043000079 ], [ -123.426134422999894, 48.449713847000034 ], [ -123.425818605999922, 48.449712480000045 ], [ -123.425896634999944, 48.449613304000145 ], [ -123.426077692999925, 48.449383206000078 ], [ -123.426079655999956, 48.449380663000078 ], [ -123.426225765999945, 48.449028021000068 ], [ -123.426292795999984, 48.448614823000057 ], [ -123.426307196999986, 48.448225593000139 ], [ -123.426313855999936, 48.448142817000054 ], [ -123.426328214999941, 48.447963948000051 ], [ -123.426399599999954, 48.447075404000067 ], [ -123.426533291999945, 48.446677411000081 ], [ -123.42660349899991, 48.446552799000109 ], [ -123.427061581, 48.446518894000086 ], [ -123.429272989999959, 48.446485105000065 ], [ -123.430036590999961, 48.446489942000063 ], [ -123.430075899999906, 48.446490215000104 ], [ -123.430419984999929, 48.446492193000083 ], [ -123.430468513999983, 48.446476869000044 ], [ -123.430605392999922, 48.446433601000088 ], [ -123.43042518599999, 48.446221806000025 ], [ -123.434186992999983, 48.446464884000122 ], [ -123.434959691999893, 48.446514782000087 ], [ -123.43452840099998, 48.44663531200009 ], [ -123.434519686999948, 48.447237806000047 ], [ -123.434128704999964, 48.447553999000036 ], [ -123.433007384999954, 48.447576704000063 ], [ -123.432537083999961, 48.447830291000031 ], [ -123.432474099, 48.448397106000129 ], [ -123.43345658199992, 48.449463799000036 ], [ -123.433722856999921, 48.449936830000134 ], [ -123.433745193, 48.449976508000105 ], [ -123.434368211999981, 48.450225807000031 ], [ -123.434802207999937, 48.450170201000056 ], [ -123.435365185999956, 48.44979849000007 ], [ -123.435457405999898, 48.449537908000082 ], [ -123.436522406999956, 48.449137700000058 ], [ -123.437322393, 48.449297216000055 ], [ -123.438131884999947, 48.449069306000055 ], [ -123.438514903999959, 48.449435285000092 ], [ -123.438838193999985, 48.449525092 ], [ -123.439066981999943, 48.449335594000026 ], [ -123.439173221999937, 48.448948305000023 ], [ -123.439347605999913, 48.448811502000126 ], [ -123.439521624999927, 48.448793004000059 ], [ -123.439658922999968, 48.448855701000085 ], [ -123.439687995999975, 48.449243106000033 ], [ -123.43939419499999, 48.449657506000086 ], [ -123.439544219999917, 48.449801400000084 ], [ -123.439815402999955, 48.449881086000083 ], [ -123.43983480199995, 48.450464999000083 ], [ -123.439700407, 48.450673 ], [ -123.439851693999984, 48.450887994000098 ], [ -123.440650995999988, 48.451056114000018 ], [ -123.440680495999942, 48.451343798000018 ], [ -123.440762697999972, 48.451379405000083 ], [ -123.441139103999973, 48.451179985000138 ], [ -123.441244481999917, 48.451197243000109 ], [ -123.441239020999902, 48.451298116000032 ], [ -123.44146946199993, 48.451297233000069 ], [ -123.441628306, 48.451412102000106 ], [ -123.44195191299994, 48.451402189000127 ], [ -123.442040189999986, 48.451453739000044 ], [ -123.44204115699992, 48.451564934 ], [ -123.442229371999929, 48.451564210000107 ], [ -123.44232011099993, 48.451617197000104 ], [ -123.442484215999954, 48.451894902000035 ], [ -123.442729400999937, 48.452055886000061 ], [ -123.442859563999932, 48.452026360000048 ], [ -123.443184483999971, 48.452216088000071 ], [ -123.442725875999912, 48.452757804000044 ], [ -123.441961502999945, 48.453611402000071 ], [ -123.441731681999912, 48.453468698000094 ], [ -123.440652722999971, 48.453046825000115 ], [ -123.44007260399999, 48.452819985000133 ], [ -123.440360495, 48.45231470000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12812061", "BldgCostT": "6743190", "sL_LossRatio": "0.594621513944223", "sL_AssetLoss": "70280", "sL_BldgLoss": "41790", "sL_StrLoss": "19050", "sL_NStrLoss": "22740", "sL_ContLoss": "28490", "geom_point": "0101000020E61000009179473A81DB5EC09D6CA04CE5384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.426802734999939, 48.446240264000018 ], [ -123.426684758999954, 48.445791921000115 ], [ -123.426609402999944, 48.441676158000114 ], [ -123.427618985999942, 48.441608798000068 ], [ -123.429442451999989, 48.441999980000048 ], [ -123.429555228, 48.441996468000049 ], [ -123.430482027999986, 48.441977091000105 ], [ -123.431656106999952, 48.441952556000032 ], [ -123.431245100999902, 48.442230301000087 ], [ -123.430816217999947, 48.442798503000098 ], [ -123.430686005999917, 48.443267098 ], [ -123.430715087999957, 48.44361740700004 ], [ -123.430965010999969, 48.444372305000037 ], [ -123.431386791999969, 48.444568794000105 ], [ -123.432075702999953, 48.444484794000076 ], [ -123.43271470699996, 48.444860785000039 ], [ -123.433200815999939, 48.444840800000087 ], [ -123.433446418999964, 48.445074398000038 ], [ -123.433543202999914, 48.445316505000108 ], [ -123.433800589, 48.445423292 ], [ -123.434017521999976, 48.44542330500007 ], [ -123.434134358000023, 48.44537511900004 ], [ -123.434393798999963, 48.445268095000081 ], [ -123.434708101999959, 48.445545809000087 ], [ -123.43489690199999, 48.445608494000084 ], [ -123.435641492999935, 48.445587098000082 ], [ -123.435645571999942, 48.445592468000058 ], [ -123.435605325999944, 48.446334357000069 ], [ -123.434959691999893, 48.446514782000087 ], [ -123.434186992999983, 48.446464884000122 ], [ -123.43042518599999, 48.446221806000025 ], [ -123.430605392999922, 48.446433601000088 ], [ -123.430468513999983, 48.446476869000044 ], [ -123.430419984999929, 48.446492193000083 ], [ -123.430075899999906, 48.446490215000104 ], [ -123.430036590999961, 48.446489942000063 ], [ -123.429272989999959, 48.446485105000065 ], [ -123.427061581, 48.446518894000086 ], [ -123.42660349899991, 48.446552799000109 ], [ -123.426802734999939, 48.446240264000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122135395", "BldgCostT": "81896524", "sL_LossRatio": "0.85075941795037", "sL_AssetLoss": "251758.6", "sL_BldgLoss": "214186", "sL_StrLoss": "93013", "sL_NStrLoss": "121173", "sL_ContLoss": "37572.6", "geom_point": "0101000020E610000013BCE7E100DB5EC06C96DB2878394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.418603406999935, 48.44773610200015 ], [ -123.418959100999984, 48.446783390000135 ], [ -123.41929085699995, 48.446924414000115 ], [ -123.41962530899994, 48.447066594000063 ], [ -123.420188117999942, 48.447314788000014 ], [ -123.420280498999944, 48.447353095000146 ], [ -123.420752407999927, 48.447562100000042 ], [ -123.421324093999971, 48.447819515000099 ], [ -123.421619333999971, 48.447951879000144 ], [ -123.421735425999955, 48.448003920000062 ], [ -123.422595710999957, 48.448389706000064 ], [ -123.425896634999944, 48.449613304000145 ], [ -123.425818605999922, 48.449712480000045 ], [ -123.425510723999977, 48.450086438 ], [ -123.425279378999946, 48.450368489 ], [ -123.424750533999983, 48.451031946000107 ], [ -123.424267632, 48.4507767220001 ], [ -123.423648261999972, 48.450450556000057 ], [ -123.422790104999976, 48.450170868000093 ], [ -123.422430260999974, 48.450091090000022 ], [ -123.42220991899994, 48.450042241000126 ], [ -123.420870006999934, 48.449784208000054 ], [ -123.420577389999949, 48.44965529400011 ], [ -123.420249401999968, 48.44940749100008 ], [ -123.419902569999934, 48.449145893000072 ], [ -123.419830585999975, 48.449091613000114 ], [ -123.419245699999962, 48.448679591000015 ], [ -123.418902381999928, 48.448538701000111 ], [ -123.41834989499999, 48.448421489000069 ], [ -123.418515089999971, 48.447968405000026 ], [ -123.418603406999935, 48.44773610200015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "442285083", "BldgCostT": "278238333", "sL_LossRatio": "0.780196749059081", "sL_AssetLoss": "1857493", "sL_BldgLoss": "1449210", "sL_StrLoss": "795524", "sL_NStrLoss": "653686", "sL_ContLoss": "408283", "geom_point": "0101000020E610000038220F4C47DA5EC06A2EDDA83E394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.422704983999949, 48.451087396000119 ], [ -123.4225956, 48.451043288000044 ], [ -123.422271798999972, 48.451115913000081 ], [ -123.421932786999918, 48.450964901000056 ], [ -123.420622195999925, 48.451113091000117 ], [ -123.418881601999956, 48.451677012000054 ], [ -123.418724932999964, 48.451578369000103 ], [ -123.418735111999965, 48.451391977000057 ], [ -123.418715969999965, 48.451382267000085 ], [ -123.418507688999952, 48.451383025000055 ], [ -123.41850675699996, 48.451269670000066 ], [ -123.418230856999955, 48.451114136000065 ], [ -123.417989017999943, 48.451115014000088 ], [ -123.417958815999981, 48.451095999000131 ], [ -123.41769330599999, 48.451024703000016 ], [ -123.417692249999902, 48.450896022000023 ], [ -123.417329838999976, 48.450870261 ], [ -123.417169136999931, 48.450848094000094 ], [ -123.417037389999948, 48.450848572000048 ], [ -123.416834200999972, 48.450794009000049 ], [ -123.41647415499996, 48.450781037000063 ], [ -123.416473829999916, 48.450741245000088 ], [ -123.415711307999942, 48.450583474000013 ], [ -123.415435826999968, 48.450584469000013 ], [ -123.415032885999949, 48.450503502000096 ], [ -123.414031828999939, 48.449794246000067 ], [ -123.414031711999925, 48.449779843000066 ], [ -123.414011604999956, 48.449779916000161 ], [ -123.41364391499999, 48.449519397000138 ], [ -123.413623818999937, 48.44951091500014 ], [ -123.413622296999975, 48.449323643000113 ], [ -123.413562838999937, 48.44929466100011 ], [ -123.413140138999921, 48.449309961000061 ], [ -123.412809415999959, 48.449244445 ], [ -123.411134412999957, 48.449250441000061 ], [ -123.410924291999947, 48.449187513000048 ], [ -123.410362240999987, 48.449112122000052 ], [ -123.409745612999956, 48.449029407000054 ], [ -123.409352478999949, 48.448805797000055 ], [ -123.409093590999944, 48.448518102000037 ], [ -123.407936210999978, 48.447677891000083 ], [ -123.407833597, 48.447122343000011 ], [ -123.407836332999977, 48.447103013000053 ], [ -123.407830030999946, 48.447103036000073 ], [ -123.407751800999989, 48.446679499000076 ], [ -123.407361089999981, 48.446851798000083 ], [ -123.406794098999953, 48.446888885000092 ], [ -123.406269092999963, 48.447143788000112 ], [ -123.405513398999972, 48.447290486000021 ], [ -123.404903480999948, 48.447283397000078 ], [ -123.40349628, 48.446972892000055 ], [ -123.402616582999897, 48.446913105000114 ], [ -123.401504110999937, 48.446458698000114 ], [ -123.401190591999935, 48.446216606000092 ], [ -123.40070251799996, 48.446173906000084 ], [ -123.400444711999924, 48.446245495000085 ], [ -123.400451539999935, 48.44614342200007 ], [ -123.400426093999911, 48.446093904000087 ], [ -123.400533248999963, 48.445899120000107 ], [ -123.400687734999977, 48.445618286000105 ], [ -123.400826465999955, 48.445366147000087 ], [ -123.400886856999975, 48.445256393000136 ], [ -123.401336485999948, 48.444439 ], [ -123.401492703999935, 48.443928790000044 ], [ -123.401703505999961, 48.443236912000025 ], [ -123.401764988999957, 48.443051709000031 ], [ -123.402136979999952, 48.441857009000024 ], [ -123.40327908799999, 48.442263766000067 ], [ -123.403447610999976, 48.442323790000096 ], [ -123.404118812999954, 48.442807290000083 ], [ -123.405269845, 48.443379276000016 ], [ -123.405479657999962, 48.443293390000136 ], [ -123.405830897999934, 48.443459804000035 ], [ -123.406501647999917, 48.443781024000046 ], [ -123.407132848999979, 48.444085056000048 ], [ -123.407675951999963, 48.444346348000082 ], [ -123.408447811999935, 48.444719613000117 ], [ -123.409398493999959, 48.445179304000092 ], [ -123.410167776999941, 48.44555069700008 ], [ -123.411094906999963, 48.445997204 ], [ -123.41198324199999, 48.446416020000086 ], [ -123.412355054999935, 48.446591321000064 ], [ -123.412437183999955, 48.446630026000065 ], [ -123.41267660699998, 48.446742910000133 ], [ -123.414149174999949, 48.447413715000053 ], [ -123.414276688999948, 48.447471794000087 ], [ -123.414543, 48.447549519000106 ], [ -123.414748934999977, 48.447609627000048 ], [ -123.416276312999983, 48.448055408000073 ], [ -123.417219166999956, 48.448290375000084 ], [ -123.417378990999978, 48.448330201000047 ], [ -123.417690491999963, 48.448360404000077 ], [ -123.41834989499999, 48.448421489000069 ], [ -123.418902381999928, 48.448538701000111 ], [ -123.419245699999962, 48.448679591000015 ], [ -123.419830585999975, 48.449091613000114 ], [ -123.419902569999934, 48.449145893000072 ], [ -123.420249401999968, 48.44940749100008 ], [ -123.420577389999949, 48.44965529400011 ], [ -123.420870006999934, 48.449784208000054 ], [ -123.42220991899994, 48.450042241000126 ], [ -123.422430260999974, 48.450091090000022 ], [ -123.422790104999976, 48.450170868000093 ], [ -123.423648261999972, 48.450450556000057 ], [ -123.424267632, 48.4507767220001 ], [ -123.424750533999983, 48.451031946000107 ], [ -123.424467227999983, 48.451275736000049 ], [ -123.423713998999972, 48.451721796000051 ], [ -123.423557470999967, 48.451814111000026 ], [ -123.423317489999988, 48.451534609000078 ], [ -123.422704983999949, 48.451087396000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140296000", "BldgCostT": "90445000", "sL_LossRatio": "0.929395881482544", "sL_AssetLoss": "164813.19", "sL_BldgLoss": "153176.7", "sL_StrLoss": "122448.9", "sL_NStrLoss": "30727.8", "sL_ContLoss": "11636.49", "geom_point": "0101000020E61000003E15EC960FDA5EC01414E556B1394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.4030459, 48.450421784000078 ], [ -123.403445181, 48.450073410000066 ], [ -123.404652402999929, 48.44902008300005 ], [ -123.404241481999961, 48.448877685000106 ], [ -123.404036390999977, 48.448806616000049 ], [ -123.403768575999948, 48.448691920000037 ], [ -123.402819100999977, 48.448285301000041 ], [ -123.402474801999929, 48.448164197000082 ], [ -123.402317318999977, 48.448123975000051 ], [ -123.40074821099995, 48.447723202000084 ], [ -123.400716435999968, 48.447722597000109 ], [ -123.400420609999969, 48.447716990000131 ], [ -123.400475204999964, 48.447483901000119 ], [ -123.400482195, 48.447283010000021 ], [ -123.400303619999988, 48.446573109000035 ], [ -123.400288385999929, 48.446512600000077 ], [ -123.40041961299994, 48.446565215000071 ], [ -123.40042544399995, 48.446508032000089 ], [ -123.400626697999968, 48.446596890000123 ], [ -123.400857698999985, 48.446910208000077 ], [ -123.401076309999922, 48.447035496000083 ], [ -123.403296499999954, 48.447449996000024 ], [ -123.403514101999946, 48.447639393000067 ], [ -123.403735417999911, 48.448321601000103 ], [ -123.40385559399999, 48.448407686000067 ], [ -123.403472324999939, 48.448398291000096 ], [ -123.403472778999941, 48.448455538000083 ], [ -123.403476415999975, 48.448467858000065 ], [ -123.403937338999981, 48.448466241000119 ], [ -123.404184798999907, 48.44864349900007 ], [ -123.405025195999926, 48.44888418700009 ], [ -123.405702112999933, 48.448989598000075 ], [ -123.406877797999968, 48.44895819000002 ], [ -123.40731218400002, 48.449019495000087 ], [ -123.408757614999914, 48.449795196000046 ], [ -123.408757641999927, 48.449798697000105 ], [ -123.408764096999931, 48.449798673000032 ], [ -123.408928294999924, 48.449886789000118 ], [ -123.409943992999942, 48.450198687000068 ], [ -123.410567578999959, 48.4502043950001 ], [ -123.411055496999921, 48.4503467870001 ], [ -123.411853811999947, 48.450343995000033 ], [ -123.412243397999958, 48.450279913000053 ], [ -123.412890902999919, 48.449962286000172 ], [ -123.413486514999974, 48.449960903000054 ], [ -123.414371506999899, 48.450668695000026 ], [ -123.415259661999983, 48.451107134000026 ], [ -123.415259806999984, 48.451124894000024 ], [ -123.415295379999975, 48.451124766000127 ], [ -123.415511177999946, 48.451231293000042 ], [ -123.415966747999903, 48.451398423000072 ], [ -123.415691501999959, 48.451542612000011 ], [ -123.415399401999977, 48.451454396000074 ], [ -123.414454889999917, 48.451025488000063 ], [ -123.413934507999969, 48.450716998000075 ], [ -123.413666478999957, 48.450495818000078 ], [ -123.413583189999983, 48.45042709200002 ], [ -123.413275474999949, 48.450301497000034 ], [ -123.412899090999986, 48.450272390000045 ], [ -123.41256101499998, 48.450333588000042 ], [ -123.41210197, 48.450531548000072 ], [ -123.412056378999949, 48.450551193000081 ], [ -123.411765486999954, 48.450637002000072 ], [ -123.411766801999988, 48.450811083000097 ], [ -123.409748988, 48.452749193000038 ], [ -123.409293959999957, 48.453211735000068 ], [ -123.408655152999984, 48.453861060000072 ], [ -123.408240695999936, 48.454282289000076 ], [ -123.407904215999935, 48.454214595000053 ], [ -123.407647206999954, 48.454096383000078 ], [ -123.406882434999957, 48.453744624000088 ], [ -123.406446482999982, 48.453544092000094 ], [ -123.406632006, 48.453338495000033 ], [ -123.407017856, 48.452966367000023 ], [ -123.407366103999934, 48.452630505000087 ], [ -123.406125088999914, 48.45199601000008 ], [ -123.405887245999935, 48.451874342000103 ], [ -123.405316553999967, 48.451582441000077 ], [ -123.405041813999944, 48.451441900000106 ], [ -123.404155592000023, 48.450987290000128 ], [ -123.4030459, 48.450421784000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "286575494", "BldgCostT": "194999076", "sL_LossRatio": "0.886684037121406", "sL_AssetLoss": "248721.18", "sL_BldgLoss": "220537.1", "sL_StrLoss": "161261.4", "sL_NStrLoss": "59275.7", "sL_ContLoss": "28184.08", "geom_point": "0101000020E61000001ECE78326ADA5EC0B4BAF7CB023A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.41256101499998, 48.450333588000042 ], [ -123.412899090999986, 48.450272390000045 ], [ -123.413275474999949, 48.450301497000034 ], [ -123.413583189999983, 48.45042709200002 ], [ -123.413666478999957, 48.450495818000078 ], [ -123.413934507999969, 48.450716998000075 ], [ -123.414454889999917, 48.451025488000063 ], [ -123.415399401999977, 48.451454396000074 ], [ -123.415691501999959, 48.451542612000011 ], [ -123.416229894999901, 48.45169559300011 ], [ -123.417186389000037, 48.45210211000002 ], [ -123.416481230999963, 48.452809118000054 ], [ -123.415970989999906, 48.453320630000107 ], [ -123.413625597, 48.455671902000063 ], [ -123.413592, 48.4557432020001 ], [ -123.41360951899999, 48.455842804000099 ], [ -123.41405178399998, 48.456098892000028 ], [ -123.413453307999944, 48.456377402000015 ], [ -123.41197617899995, 48.455698740000116 ], [ -123.41192558600001, 48.455675495000023 ], [ -123.411610983999964, 48.455627190000079 ], [ -123.41155452199996, 48.455617688000103 ], [ -123.411372907999947, 48.45558708300009 ], [ -123.410903057999974, 48.455379748000013 ], [ -123.410276211999928, 48.455103093000055 ], [ -123.409708103999932, 48.454850313000051 ], [ -123.408512002999927, 48.454333209000019 ], [ -123.408240695999936, 48.454282289000076 ], [ -123.408655152999984, 48.453861060000072 ], [ -123.409293959999957, 48.453211735000068 ], [ -123.409748988, 48.452749193000038 ], [ -123.411766801999988, 48.450811083000097 ], [ -123.411765486999954, 48.450637002000072 ], [ -123.412056378999949, 48.450551193000081 ], [ -123.41210197, 48.450531548000072 ], [ -123.41256101499998, 48.450333588000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127340168", "BldgCostT": "82926668", "sL_LossRatio": "0.96396563449175", "sL_AssetLoss": "135739.59", "sL_BldgLoss": "130848.3", "sL_StrLoss": "108026", "sL_NStrLoss": "22822.3", "sL_ContLoss": "4891.29", "geom_point": "0101000020E6100000731751A821DA5EC04F0F7EA0643A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40590459799995, 48.454046601000044 ], [ -123.406446482999982, 48.453544092000094 ], [ -123.406882434999957, 48.453744624000088 ], [ -123.407647206999954, 48.454096383000078 ], [ -123.407904215999935, 48.454214595000053 ], [ -123.408240695999936, 48.454282289000076 ], [ -123.408512002999927, 48.454333209000019 ], [ -123.409708103999932, 48.454850313000051 ], [ -123.410276211999928, 48.455103093000055 ], [ -123.410903057999974, 48.455379748000013 ], [ -123.411372907999947, 48.45558708300009 ], [ -123.41155452199996, 48.455617688000103 ], [ -123.411610983999964, 48.455627190000079 ], [ -123.41192558600001, 48.455675495000023 ], [ -123.41197617899995, 48.455698740000116 ], [ -123.413453307999944, 48.456377402000015 ], [ -123.412319719999942, 48.457041323000048 ], [ -123.411047186999951, 48.457786617000139 ], [ -123.41048407699999, 48.458058694000037 ], [ -123.410009793999947, 48.458214001000044 ], [ -123.409921275999935, 48.458235301000066 ], [ -123.409907158999971, 48.458238690000051 ], [ -123.40922721, 48.458402206000116 ], [ -123.409144149000014, 48.458421541000064 ], [ -123.408970592999978, 48.458461953000032 ], [ -123.408827258999949, 48.458495338000091 ], [ -123.408647794999951, 48.458409294000077 ], [ -123.408510315999962, 48.458366354000063 ], [ -123.408497129999972, 48.458362267000076 ], [ -123.408400561999954, 48.458332124000087 ], [ -123.408246112999961, 48.458283893000036 ], [ -123.408235289999951, 48.458280501000083 ], [ -123.4081513499999, 48.45825429700006 ], [ -123.408010895999965, 48.458210448000067 ], [ -123.407840423999914, 48.458157224000082 ], [ -123.407097017999959, 48.457925104 ], [ -123.406909812999956, 48.457829425000057 ], [ -123.406848337999946, 48.45779802400007 ], [ -123.406842907999987, 48.457795227000055 ], [ -123.405889996, 48.457308273000095 ], [ -123.405328860999973, 48.457021470000015 ], [ -123.405311688999987, 48.457012696000085 ], [ -123.405307639999947, 48.457010625000059 ], [ -123.405279979999975, 48.456996499000084 ], [ -123.405250062, 48.456990910000094 ], [ -123.40472439199999, 48.456892509000056 ], [ -123.404704905999921, 48.456878299000053 ], [ -123.40403577299999, 48.456024949000067 ], [ -123.40401909399999, 48.456008156000095 ], [ -123.404116038, 48.455836684000118 ], [ -123.404111682999954, 48.455792691000035 ], [ -123.404379018999961, 48.455522399000102 ], [ -123.40452936699991, 48.455377856000069 ], [ -123.405124498999939, 48.454805689000139 ], [ -123.405164920999951, 48.454767505000071 ], [ -123.405349886999929, 48.454587240000066 ], [ -123.40590459799995, 48.454046601000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129665999", "BldgCostT": "86159999", "sL_LossRatio": "0.80346881258612", "sL_AssetLoss": "760202.5", "sL_BldgLoss": "610799", "sL_StrLoss": "351800", "sL_NStrLoss": "258999", "sL_ContLoss": "149403.5", "geom_point": "0101000020E6100000CDDEEFA3DCD95EC0A03715A9B03B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.400014711999972, 48.4654430920001 ], [ -123.399870493999941, 48.465380174000124 ], [ -123.398792573999955, 48.464909788000064 ], [ -123.398700498999958, 48.464869593000067 ], [ -123.39885266499999, 48.464769540000098 ], [ -123.399097492999914, 48.464608530000135 ], [ -123.399485197999965, 48.464353513000034 ], [ -123.399566823, 48.464299846000081 ], [ -123.39973002, 48.464192500000138 ], [ -123.400002005999966, 48.464013584000028 ], [ -123.400273841999962, 48.463834808000058 ], [ -123.400670379999966, 48.463574012000088 ], [ -123.40075721599996, 48.463516893000083 ], [ -123.401048154999955, 48.463275917000026 ], [ -123.401065056999983, 48.463261938000059 ], [ -123.40097611399996, 48.463711695000029 ], [ -123.403476011999942, 48.464782892000102 ], [ -123.405210386999968, 48.465536006000072 ], [ -123.405265417, 48.465546002000103 ], [ -123.405353395999924, 48.465562014000049 ], [ -123.405510885999931, 48.465547891000064 ], [ -123.405972110999969, 48.465441148000124 ], [ -123.406427190999949, 48.465335798000091 ], [ -123.40676978599997, 48.465344194000082 ], [ -123.406948344999961, 48.465381841000067 ], [ -123.407567997999948, 48.465512490000052 ], [ -123.40807423699998, 48.465648986000048 ], [ -123.408756395999944, 48.465832908000088 ], [ -123.408539065999932, 48.46627391500008 ], [ -123.408160695999953, 48.467139406000072 ], [ -123.407647676999915, 48.46807359400006 ], [ -123.40724896699993, 48.468844071000028 ], [ -123.407159700999941, 48.469016606000075 ], [ -123.404943272999915, 48.468465360000053 ], [ -123.404446435, 48.46834178000006 ], [ -123.404328686, 48.468312511000079 ], [ -123.403429853999981, 48.468028665000112 ], [ -123.403415400999933, 48.468024098000079 ], [ -123.401975782999955, 48.467386501000149 ], [ -123.401220483999964, 48.467050500000077 ], [ -123.401488985999904, 48.466783899000063 ], [ -123.40117539799995, 48.466397498000056 ], [ -123.400781200999987, 48.46597750700009 ], [ -123.400609657999922, 48.465831894000068 ], [ -123.400521891999958, 48.46575738500006 ], [ -123.40011713299999, 48.46549562800007 ], [ -123.400079810999955, 48.465471508000135 ], [ -123.400014711999972, 48.4654430920001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111177749", "BldgCostT": "72839999", "sL_LossRatio": "0.923983308938383", "sL_AssetLoss": "170479.27", "sL_BldgLoss": "157520", "sL_StrLoss": "124048.1", "sL_NStrLoss": "33471.9", "sL_ContLoss": "12959.27", "geom_point": "0101000020E610000021C012DD6DD95EC0D1BB04E9DA3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.398269094999975, 48.465145856000049 ], [ -123.398700498999958, 48.464869593000067 ], [ -123.398792573999955, 48.464909788000064 ], [ -123.399870493999941, 48.465380174000124 ], [ -123.400014711999972, 48.4654430920001 ], [ -123.400079810999955, 48.465471508000135 ], [ -123.40011713299999, 48.46549562800007 ], [ -123.400521891999958, 48.46575738500006 ], [ -123.400609657999922, 48.465831894000068 ], [ -123.400781200999987, 48.46597750700009 ], [ -123.40117539799995, 48.466397498000056 ], [ -123.401488985999904, 48.466783899000063 ], [ -123.401220483999964, 48.467050500000077 ], [ -123.400994484999956, 48.467282429000129 ], [ -123.400910820999982, 48.467368253000082 ], [ -123.400480607999938, 48.467809697000085 ], [ -123.400015700999944, 48.468278886000071 ], [ -123.399803165999941, 48.468493373000094 ], [ -123.398986278, 48.469317695000079 ], [ -123.398223999, 48.470089805000036 ], [ -123.397438506999961, 48.470865905000082 ], [ -123.39716929299999, 48.47099719200007 ], [ -123.396721009, 48.470529 ], [ -123.395533095999909, 48.46948989800007 ], [ -123.394975309999921, 48.46900191400011 ], [ -123.394165478999952, 48.468258803000083 ], [ -123.393786015999964, 48.467915815000069 ], [ -123.392459098999936, 48.466706392000084 ], [ -123.392067298, 48.466513699000082 ], [ -123.393014799999932, 48.466468144000054 ], [ -123.39420033199994, 48.466411142000069 ], [ -123.394201175999939, 48.466411101000027 ], [ -123.39495061300002, 48.466346182000031 ], [ -123.395112030999925, 48.466332210000132 ], [ -123.39523307799999, 48.466321737000087 ], [ -123.395248436999964, 48.466320411 ], [ -123.395393910999957, 48.466307800000045 ], [ -123.395526011999934, 48.466238904000114 ], [ -123.396023500999945, 48.466155585000052 ], [ -123.396901808999957, 48.465900282000085 ], [ -123.39752188099996, 48.465624301000034 ], [ -123.397821182999976, 48.465432659000072 ], [ -123.398269094999975, 48.465145856000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95135751", "BldgCostT": "63665001", "sL_LossRatio": "0.843944042822988", "sL_AssetLoss": "431058.2", "sL_BldgLoss": "363789", "sL_StrLoss": "221755", "sL_NStrLoss": "142034", "sL_ContLoss": "67269.2", "geom_point": "0101000020E61000007362077CDBD95EC06FABACAF263C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.407100469999975, 48.472757539000099 ], [ -123.406044196, 48.472534094000054 ], [ -123.405373589999954, 48.47263549000013 ], [ -123.404762687999934, 48.472231146000091 ], [ -123.40445383399999, 48.472112201000087 ], [ -123.404443181999937, 48.472108104000078 ], [ -123.403776320999953, 48.471851218000111 ], [ -123.40228485499992, 48.471445073000055 ], [ -123.401782421999926, 48.471306602000098 ], [ -123.401617207999948, 48.471296321000096 ], [ -123.400883501999942, 48.471286785000117 ], [ -123.39998217899992, 48.470884652000095 ], [ -123.399347814999913, 48.470601608000052 ], [ -123.398223999, 48.470089805000036 ], [ -123.398986278, 48.469317695000079 ], [ -123.399803165999941, 48.468493373000094 ], [ -123.400015700999944, 48.468278886000071 ], [ -123.400480607999938, 48.467809697000085 ], [ -123.400910820999982, 48.467368253000082 ], [ -123.400994484999956, 48.467282429000129 ], [ -123.401220483999964, 48.467050500000077 ], [ -123.401975782999955, 48.467386501000149 ], [ -123.403415400999933, 48.468024098000079 ], [ -123.403429853999981, 48.468028665000112 ], [ -123.404328686, 48.468312511000079 ], [ -123.404446435, 48.46834178000006 ], [ -123.404943272999915, 48.468465360000053 ], [ -123.407159700999941, 48.469016606000075 ], [ -123.40724896699993, 48.468844071000028 ], [ -123.407647676999915, 48.46807359400006 ], [ -123.40808742899999, 48.46817035300009 ], [ -123.409086583999951, 48.468390177000067 ], [ -123.40974120099996, 48.46853420000015 ], [ -123.409315839999977, 48.469383056 ], [ -123.409309107999931, 48.469396497000041 ], [ -123.409083101999954, 48.469724691000089 ], [ -123.408804109999949, 48.469937001000062 ], [ -123.408473112999943, 48.470135397 ], [ -123.407963992999953, 48.470479987000019 ], [ -123.407821940999938, 48.470639911000042 ], [ -123.40780821499996, 48.470655373000056 ], [ -123.407805597000021, 48.470658296000117 ], [ -123.407800967999918, 48.470667803000069 ], [ -123.407729582999977, 48.470814199000081 ], [ -123.407741409, 48.47126270100005 ], [ -123.407631594999927, 48.471738811000073 ], [ -123.407618565999911, 48.471933392000025 ], [ -123.407593918999908, 48.472301497000011 ], [ -123.407464679999975, 48.472611635000113 ], [ -123.407379301999981, 48.472816499000047 ], [ -123.407100469999975, 48.472757539000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132472084", "BldgCostT": "79863334", "sL_LossRatio": "0.731962750452041", "sL_AssetLoss": "661334.2", "sL_BldgLoss": "484072", "sL_StrLoss": "268063", "sL_NStrLoss": "216009", "sL_ContLoss": "177262.2", "geom_point": "0101000020E6100000E10ABD38D0D95EC00161C0F5D53C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.39927329899993, 48.47754858800004 ], [ -123.399133170999974, 48.477277125000072 ], [ -123.39884858799999, 48.476725695000027 ], [ -123.39839896, 48.475865246000062 ], [ -123.398194425999947, 48.475434641000042 ], [ -123.398114729999975, 48.475017915000109 ], [ -123.397945925999949, 48.474650314000016 ], [ -123.397712101999971, 48.474362 ], [ -123.3977055899999, 48.47435399300015 ], [ -123.39742259, 48.474121695000164 ], [ -123.396882582999964, 48.473797291000039 ], [ -123.396753903, 48.473683207000064 ], [ -123.396605213999976, 48.473488404000122 ], [ -123.396555804999963, 48.473306789000105 ], [ -123.396600714999934, 48.473154689000104 ], [ -123.39664163799992, 48.473096337000072 ], [ -123.396703306999939, 48.473008403000108 ], [ -123.397326103999916, 48.472367196000022 ], [ -123.397435553999955, 48.472199699000086 ], [ -123.397457278000019, 48.472166470000033 ], [ -123.397510491999967, 48.472085014000101 ], [ -123.397512941999935, 48.471968090000061 ], [ -123.397517195999967, 48.471765897000076 ], [ -123.39716929299999, 48.47099719200007 ], [ -123.397438506999961, 48.470865905000082 ], [ -123.398223999, 48.470089805000036 ], [ -123.399347814999913, 48.470601608000052 ], [ -123.39998217899992, 48.470884652000095 ], [ -123.400883501999942, 48.471286785000117 ], [ -123.401617207999948, 48.471296321000096 ], [ -123.401782421999926, 48.471306602000098 ], [ -123.40228485499992, 48.471445073000055 ], [ -123.403776320999953, 48.471851218000111 ], [ -123.404443181999937, 48.472108104000078 ], [ -123.40445383399999, 48.472112201000087 ], [ -123.404762687999934, 48.472231146000091 ], [ -123.405373589999954, 48.47263549000013 ], [ -123.406044196, 48.472534094000054 ], [ -123.40651907699997, 48.47314192300005 ], [ -123.407202395999903, 48.474016559000042 ], [ -123.407446182999962, 48.474328605000053 ], [ -123.407733586999939, 48.47468542100011 ], [ -123.408042075999987, 48.475068415000116 ], [ -123.40837820199998, 48.475485692000092 ], [ -123.408784811999965, 48.476000584000111 ], [ -123.40892084599993, 48.476170471000025 ], [ -123.409142715999963, 48.476447464000024 ], [ -123.409256291999924, 48.476589311000019 ], [ -123.409301862999939, 48.476646560000049 ], [ -123.409531058999931, 48.476934707000034 ], [ -123.409673312000038, 48.477113466000155 ], [ -123.410458408999929, 48.47811732400011 ], [ -123.410685512000015, 48.4784096120001 ], [ -123.410472259999935, 48.478801176000026 ], [ -123.410319282999978, 48.479078757000082 ], [ -123.410257037999926, 48.479203475000112 ], [ -123.409781346999978, 48.480118832000059 ], [ -123.406827872999983, 48.479384555000088 ], [ -123.40679645099999, 48.479376762000093 ], [ -123.406777271999928, 48.479371998000133 ], [ -123.40647158099999, 48.479295977000099 ], [ -123.406160702999898, 48.479218700000054 ], [ -123.405483960999973, 48.479052814000021 ], [ -123.405422068999968, 48.479037642000044 ], [ -123.404424105999965, 48.478793004000039 ], [ -123.404262150999955, 48.478754055000138 ], [ -123.40358162899993, 48.478590338000025 ], [ -123.403084297999953, 48.478470701000042 ], [ -123.402395895999973, 48.478299433000061 ], [ -123.401878408999949, 48.478170687000038 ], [ -123.400712683999984, 48.477877007000117 ], [ -123.400070398999958, 48.477644781000102 ], [ -123.400038170999935, 48.477637014000038 ], [ -123.39957049500002, 48.477524310000028 ], [ -123.39927329899993, 48.47754858800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144775418", "BldgCostT": "90936668", "sL_LossRatio": "0.881974074394273", "sL_AssetLoss": "164018.54", "sL_BldgLoss": "144660.1", "sL_StrLoss": "109940.7", "sL_NStrLoss": "34719.4", "sL_ContLoss": "19358.44", "geom_point": "0101000020E61000001636246A39D95EC024BDCA35E03C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.390258503999945, 48.475009599000074 ], [ -123.390012675000023, 48.474153197000149 ], [ -123.393837206999976, 48.473672006000058 ], [ -123.39419649599995, 48.473572595000071 ], [ -123.394562895999968, 48.47366370800011 ], [ -123.395111587999921, 48.473755595000092 ], [ -123.395247528999946, 48.473824219000129 ], [ -123.395387500999945, 48.473894891000086 ], [ -123.395483429999942, 48.474013288000059 ], [ -123.395574699999955, 48.474125899000093 ], [ -123.395632693999971, 48.474348210000059 ], [ -123.396853801999953, 48.474197891000102 ], [ -123.39742259, 48.474121695000164 ], [ -123.3977055899999, 48.47435399300015 ], [ -123.397712101999971, 48.474362 ], [ -123.397945925999949, 48.474650314000016 ], [ -123.398114729999975, 48.475017915000109 ], [ -123.398194425999947, 48.475434641000042 ], [ -123.39839896, 48.475865246000062 ], [ -123.39884858799999, 48.476725695000027 ], [ -123.397340094999933, 48.476894285000043 ], [ -123.396911229999944, 48.476945491000095 ], [ -123.394990611999958, 48.477174701000109 ], [ -123.391014695999971, 48.477653994 ], [ -123.390730424999958, 48.476662300000037 ], [ -123.390473486999966, 48.47576330100005 ], [ -123.390258503999945, 48.475009599000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129492001", "BldgCostT": "84915001", "sL_LossRatio": "0.893321769790041", "sL_AssetLoss": "176082.13", "sL_BldgLoss": "157298", "sL_StrLoss": "122773", "sL_NStrLoss": "34525", "sL_ContLoss": "18784.13", "geom_point": "0101000020E61000003C145F6930D95EC0C6B281F0783C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.394562895999968, 48.47366370800011 ], [ -123.39419649599995, 48.473572595000071 ], [ -123.393837206999976, 48.473672006000058 ], [ -123.390012675000023, 48.474153197000149 ], [ -123.38975789199999, 48.473265012000063 ], [ -123.389517816999955, 48.472403319000072 ], [ -123.389272697, 48.471535195000051 ], [ -123.393266921999896, 48.471033901000034 ], [ -123.395261939999926, 48.470795051000074 ], [ -123.396260502999922, 48.470675492000083 ], [ -123.396520006999978, 48.470623312000029 ], [ -123.396721009, 48.470529 ], [ -123.39716929299999, 48.47099719200007 ], [ -123.397517195999967, 48.471765897000076 ], [ -123.397512941999935, 48.471968090000061 ], [ -123.397510491999967, 48.472085014000101 ], [ -123.397457278000019, 48.472166470000033 ], [ -123.397435553999955, 48.472199699000086 ], [ -123.397326103999916, 48.472367196000022 ], [ -123.396703306999939, 48.473008403000108 ], [ -123.39664163799992, 48.473096337000072 ], [ -123.396600714999934, 48.473154689000104 ], [ -123.396555804999963, 48.473306789000105 ], [ -123.396605213999976, 48.473488404000122 ], [ -123.396753903, 48.473683207000064 ], [ -123.396882582999964, 48.473797291000039 ], [ -123.39742259, 48.474121695000164 ], [ -123.396853801999953, 48.474197891000102 ], [ -123.395632693999971, 48.474348210000059 ], [ -123.395574699999955, 48.474125899000093 ], [ -123.395483429999942, 48.474013288000059 ], [ -123.395387500999945, 48.473894891000086 ], [ -123.395247528999946, 48.473824219000129 ], [ -123.395111587999921, 48.473755595000092 ], [ -123.394562895999968, 48.47366370800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223370749", "BldgCostT": "138484999", "sL_LossRatio": "0.863431362616943", "sL_AssetLoss": "350814.22", "sL_BldgLoss": "302904", "sL_StrLoss": "218402", "sL_NStrLoss": "84502", "sL_ContLoss": "47910.22", "geom_point": "0101000020E6100000E8D96ADECAD85EC09DF6EE0BBF3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.385262503999982, 48.478147785000097 ], [ -123.385215730999931, 48.478044684000089 ], [ -123.384217571999926, 48.475845562000032 ], [ -123.383929859999952, 48.47521152500007 ], [ -123.383838858999979, 48.475011028000047 ], [ -123.383322466999942, 48.47387319400007 ], [ -123.383249006999947, 48.473711310000049 ], [ -123.382681506, 48.472203112000066 ], [ -123.382126478999979, 48.47047725200008 ], [ -123.382393599999915, 48.470479007000016 ], [ -123.382670109999978, 48.470480827000046 ], [ -123.383186006999949, 48.470484193000082 ], [ -123.383916565999954, 48.47038685700003 ], [ -123.384945975999969, 48.470258961000106 ], [ -123.385133860999971, 48.47023203300003 ], [ -123.38760290399992, 48.469909707000049 ], [ -123.388784902999973, 48.469781007000066 ], [ -123.389761047999968, 48.469658962000025 ], [ -123.392773381999916, 48.469282298000088 ], [ -123.393266921999896, 48.471033901000034 ], [ -123.389272697, 48.471535195000051 ], [ -123.389517816999955, 48.472403319000072 ], [ -123.38975789199999, 48.473265012000063 ], [ -123.390012675000023, 48.474153197000149 ], [ -123.385901522, 48.474664991000061 ], [ -123.38612051299999, 48.475515401000109 ], [ -123.38687129, 48.478056905000123 ], [ -123.386944487999969, 48.478150713000034 ], [ -123.388057111999942, 48.478011300000063 ], [ -123.391014695999971, 48.477653994 ], [ -123.391245188999932, 48.478469498000059 ], [ -123.391504903999945, 48.479392905000033 ], [ -123.391482830999948, 48.47943552700012 ], [ -123.391201243999973, 48.479979072000091 ], [ -123.390897435999975, 48.48056554900004 ], [ -123.390314888999924, 48.481690108000045 ], [ -123.387244419999931, 48.480958907000129 ], [ -123.386732266999971, 48.480846761000059 ], [ -123.386460668999959, 48.480787288000087 ], [ -123.385262503999982, 48.478147785000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95563334", "BldgCostT": "63463334", "sL_LossRatio": "0.920359098702207", "sL_AssetLoss": "180229", "sL_BldgLoss": "165875.4", "sL_StrLoss": "122720.4", "sL_NStrLoss": "43155", "sL_ContLoss": "14353.6", "geom_point": "0101000020E6100000219D1E67DCD85EC0C56D97AAF23C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.385901522, 48.474664991000061 ], [ -123.390012675000023, 48.474153197000149 ], [ -123.390258503999945, 48.475009599000074 ], [ -123.390473486999966, 48.47576330100005 ], [ -123.390730424999958, 48.476662300000037 ], [ -123.391014695999971, 48.477653994 ], [ -123.388057111999942, 48.478011300000063 ], [ -123.386944487999969, 48.478150713000034 ], [ -123.38687129, 48.478056905000123 ], [ -123.38612051299999, 48.475515401000109 ], [ -123.385901522, 48.474664991000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144917552", "BldgCostT": "91343745", "sL_LossRatio": "0.925671918794749", "sL_AssetLoss": "158088.3", "sL_BldgLoss": "146337.9", "sL_StrLoss": "117191.9", "sL_NStrLoss": "29146", "sL_ContLoss": "11750.4", "geom_point": "0101000020E610000022E183F00BD95EC0CF066874EA3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393266921999896, 48.471033901000034 ], [ -123.392773381999916, 48.469282298000088 ], [ -123.389761047999968, 48.469658962000025 ], [ -123.388784902999973, 48.469781007000066 ], [ -123.388407451999967, 48.468473196000069 ], [ -123.388236170999932, 48.467858479000078 ], [ -123.388141148, 48.467496040000078 ], [ -123.388004202, 48.466973590000052 ], [ -123.387986841000014, 48.466899826000017 ], [ -123.387976889999962, 48.466857497000014 ], [ -123.387936980999925, 48.466719379000075 ], [ -123.387874803999949, 48.466504480000076 ], [ -123.387835745999936, 48.466369350000093 ], [ -123.387648086999917, 48.465720396000059 ], [ -123.387310155999927, 48.464383758000075 ], [ -123.388233374, 48.464871218000049 ], [ -123.388433287999987, 48.46497676300006 ], [ -123.389764911999976, 48.465535381000088 ], [ -123.390203355999944, 48.465716204000039 ], [ -123.390834399999918, 48.465976517000129 ], [ -123.391020480999941, 48.466057479000021 ], [ -123.391866887999981, 48.466425794 ], [ -123.391974600999987, 48.46647305199999 ], [ -123.392067298, 48.466513699000082 ], [ -123.392459098999936, 48.466706392000084 ], [ -123.393786015999964, 48.467915815000069 ], [ -123.394165478999952, 48.468258803000083 ], [ -123.394975309999921, 48.46900191400011 ], [ -123.395533095999909, 48.46948989800007 ], [ -123.396721009, 48.470529 ], [ -123.396520006999978, 48.470623312000029 ], [ -123.396260502999922, 48.470675492000083 ], [ -123.395261939999926, 48.470795051000074 ], [ -123.393266921999896, 48.471033901000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158616001", "BldgCostT": "102330001", "sL_LossRatio": "0.838990922591729", "sL_AssetLoss": "346982.3", "sL_BldgLoss": "291115", "sL_StrLoss": "204226", "sL_NStrLoss": "86889", "sL_ContLoss": "55867.3", "geom_point": "0101000020E6100000875E46B19CD85EC00A20AD18CB3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.380236460999953, 48.464513794000069 ], [ -123.380185528999988, 48.46437437000003 ], [ -123.380531321999968, 48.464422946000084 ], [ -123.381216707999954, 48.464519206000041 ], [ -123.381344092999939, 48.464412307000067 ], [ -123.381481305999912, 48.464372405000027 ], [ -123.381586364999961, 48.464358834000052 ], [ -123.382667226999942, 48.464219388000039 ], [ -123.383172802999937, 48.463747790000141 ], [ -123.383224069999969, 48.464064703000098 ], [ -123.383286966999947, 48.464124897000069 ], [ -123.383382590999986, 48.46412899700011 ], [ -123.383500218999956, 48.464116386000072 ], [ -123.38645800799999, 48.463799139000095 ], [ -123.386789844999953, 48.464025545000034 ], [ -123.387310155999927, 48.464383758000075 ], [ -123.387648086999917, 48.465720396000059 ], [ -123.387835745999936, 48.466369350000093 ], [ -123.387874803999949, 48.466504480000076 ], [ -123.387936980999925, 48.466719379000075 ], [ -123.387976889999962, 48.466857497000014 ], [ -123.387986841000014, 48.466899826000017 ], [ -123.388004202, 48.466973590000052 ], [ -123.388141148, 48.467496040000078 ], [ -123.388236170999932, 48.467858479000078 ], [ -123.388407451999967, 48.468473196000069 ], [ -123.388784902999973, 48.469781007000066 ], [ -123.38760290399992, 48.469909707000049 ], [ -123.385133860999971, 48.47023203300003 ], [ -123.384945975999969, 48.470258961000106 ], [ -123.383916565999954, 48.47038685700003 ], [ -123.383186006999949, 48.470484193000082 ], [ -123.382670109999978, 48.470480827000046 ], [ -123.382393599999915, 48.470479007000016 ], [ -123.382126478999979, 48.47047725200008 ], [ -123.381800184999975, 48.469462602000085 ], [ -123.381421293999949, 48.468082295000087 ], [ -123.38139570199999, 48.467989107000037 ], [ -123.381391218999951, 48.46797474600006 ], [ -123.38138523799995, 48.467955737000132 ], [ -123.38138248599995, 48.467946904000065 ], [ -123.381377132999944, 48.467929854000069 ], [ -123.381346388999987, 48.467831785000072 ], [ -123.381330711999965, 48.467772805000081 ], [ -123.381306307, 48.467685660000022 ], [ -123.38124897199998, 48.46748077200013 ], [ -123.381067963999968, 48.466834314000046 ], [ -123.381039908999952, 48.466733997000105 ], [ -123.380829073999934, 48.46614941000005 ], [ -123.380806875999909, 48.466087849000061 ], [ -123.380536355999936, 48.465337639000147 ], [ -123.380521457999961, 48.46529633300004 ], [ -123.380452300999949, 48.465104500000095 ], [ -123.380236460999953, 48.464513794000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182287144", "BldgCostT": "122646523", "sL_LossRatio": "0.955464304879843", "sL_AssetLoss": "158133.38", "sL_BldgLoss": "151090.8", "sL_StrLoss": "116860.5", "sL_NStrLoss": "34230.3", "sL_ContLoss": "7042.58", "geom_point": "0101000020E610000077A7B6CC10D95EC04BA8F11C5B3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.387310155999927, 48.464383758000075 ], [ -123.386789844999953, 48.464025545000034 ], [ -123.38645800799999, 48.463799139000095 ], [ -123.386124525999932, 48.463558839000022 ], [ -123.38608645, 48.463531401000068 ], [ -123.38584250299999, 48.463355592000084 ], [ -123.386206005999952, 48.462936290000052 ], [ -123.386638789999935, 48.463118301000073 ], [ -123.386803716999907, 48.463164694000099 ], [ -123.386952188999928, 48.463164801000069 ], [ -123.389123304999984, 48.462850388000078 ], [ -123.390921012999982, 48.46257270800006 ], [ -123.391011460999906, 48.462561755000088 ], [ -123.392240998999952, 48.462413107000053 ], [ -123.393560395999941, 48.462213909000056 ], [ -123.394435607999981, 48.462086601000081 ], [ -123.394007994, 48.461320395000051 ], [ -123.394688613, 48.46121988700002 ], [ -123.394828620999988, 48.461498408000033 ], [ -123.395458791999914, 48.462337193000032 ], [ -123.396735507999949, 48.463795091000065 ], [ -123.396420622999955, 48.464046202000098 ], [ -123.396214501999978, 48.464287755000022 ], [ -123.396095781999932, 48.464426898000056 ], [ -123.395898585999973, 48.464696196000084 ], [ -123.395693884999957, 48.464858912000061 ], [ -123.39536680799992, 48.464962597000095 ], [ -123.395345590999952, 48.464444980000088 ], [ -123.39534261299994, 48.46437140200004 ], [ -123.395200195999905, 48.464310192000077 ], [ -123.393573487999944, 48.46437569799999 ], [ -123.393556884999924, 48.464725201000078 ], [ -123.393280214999976, 48.46472290100008 ], [ -123.392906782999944, 48.464760611000074 ], [ -123.392552990999903, 48.464832995000059 ], [ -123.392123689999892, 48.465002802000072 ], [ -123.39189624, 48.465133345000069 ], [ -123.391722107999982, 48.465233292000079 ], [ -123.391430579999962, 48.465400600000102 ], [ -123.391050609, 48.465729381000102 ], [ -123.390834399999918, 48.465976517000129 ], [ -123.390203355999944, 48.465716204000039 ], [ -123.389764911999976, 48.465535381000088 ], [ -123.388433287999987, 48.46497676300006 ], [ -123.388233374, 48.464871218000049 ], [ -123.387310155999927, 48.464383758000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45133166", "BldgCostT": "27476666", "sL_LossRatio": "0.775030531348968", "sL_AssetLoss": "96622", "sL_BldgLoss": "74885", "sL_StrLoss": "46214", "sL_NStrLoss": "28671", "sL_ContLoss": "21737", "geom_point": "0101000020E61000000B15771743D95EC01CA3F11B913B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.392123689999892, 48.465002802000072 ], [ -123.392552990999903, 48.464832995000059 ], [ -123.392906782999944, 48.464760611000074 ], [ -123.393280214999976, 48.46472290100008 ], [ -123.393556884999924, 48.464725201000078 ], [ -123.393573487999944, 48.46437569799999 ], [ -123.395200195999905, 48.464310192000077 ], [ -123.39534261299994, 48.46437140200004 ], [ -123.395345590999952, 48.464444980000088 ], [ -123.39536680799992, 48.464962597000095 ], [ -123.395693884999957, 48.464858912000061 ], [ -123.395898585999973, 48.464696196000084 ], [ -123.396095781999932, 48.464426898000056 ], [ -123.396214501999978, 48.464287755000022 ], [ -123.396420622999955, 48.464046202000098 ], [ -123.396735507999949, 48.463795091000065 ], [ -123.397209715999921, 48.464182802000032 ], [ -123.397586908999969, 48.464395884000041 ], [ -123.398323052999942, 48.464709041000049 ], [ -123.398700498999958, 48.464869593000067 ], [ -123.398269094999975, 48.465145856000049 ], [ -123.397821182999976, 48.465432659000072 ], [ -123.39752188099996, 48.465624301000034 ], [ -123.396901808999957, 48.465900282000085 ], [ -123.396023500999945, 48.466155585000052 ], [ -123.395526011999934, 48.466238904000114 ], [ -123.395393910999957, 48.466307800000045 ], [ -123.395248436999964, 48.466320411 ], [ -123.39523307799999, 48.466321737000087 ], [ -123.395112030999925, 48.466332210000132 ], [ -123.39495061300002, 48.466346182000031 ], [ -123.394201175999939, 48.466411101000027 ], [ -123.39420033199994, 48.466411142000069 ], [ -123.393014799999932, 48.466468144000054 ], [ -123.392067298, 48.466513699000082 ], [ -123.391974600999987, 48.46647305199999 ], [ -123.391866887999981, 48.466425794 ], [ -123.391020480999941, 48.466057479000021 ], [ -123.390834399999918, 48.465976517000129 ], [ -123.391050609, 48.465729381000102 ], [ -123.391430579999962, 48.465400600000102 ], [ -123.391722107999982, 48.465233292000079 ], [ -123.39189624, 48.465133345000069 ], [ -123.392123689999892, 48.465002802000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92812250", "BldgCostT": "57080000", "sL_LossRatio": "0.755311060782711", "sL_AssetLoss": "223863", "sL_BldgLoss": "169086.2", "sL_StrLoss": "100077", "sL_NStrLoss": "69009.2", "sL_ContLoss": "54776.8", "geom_point": "0101000020E6100000B7239BCCF4D85EC01F55C9D7503A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.387785102999956, 48.454716790000077 ], [ -123.388070514999953, 48.453632705000061 ], [ -123.390009200999927, 48.454046615000067 ], [ -123.39126098, 48.452868193000043 ], [ -123.391841998999922, 48.453176490000068 ], [ -123.39196970899999, 48.453185910000059 ], [ -123.392311928999959, 48.453401947000067 ], [ -123.392321995999936, 48.453408295000017 ], [ -123.392746203999963, 48.453721806000019 ], [ -123.393154880999973, 48.454143907000038 ], [ -123.39307762199995, 48.454223193000082 ], [ -123.393125700999974, 48.454305525000095 ], [ -123.392988819999971, 48.454461808000055 ], [ -123.392789263999973, 48.454810902000069 ], [ -123.392764688999989, 48.454853929000151 ], [ -123.392609063999927, 48.455301011000138 ], [ -123.39254717599999, 48.455322014000068 ], [ -123.392307629999948, 48.45587071200007 ], [ -123.391815329999986, 48.456481241000077 ], [ -123.391687352999952, 48.45663997300003 ], [ -123.391097006999985, 48.457330608000056 ], [ -123.390441786999986, 48.458046690000096 ], [ -123.390404709999956, 48.458091267000022 ], [ -123.390356493999974, 48.458149206000066 ], [ -123.389675247999932, 48.457991747000086 ], [ -123.386536832999965, 48.457269643000046 ], [ -123.386603198, 48.457202005000035 ], [ -123.386678592999914, 48.457125207000082 ], [ -123.38706098099999, 48.456386199000121 ], [ -123.387446492999956, 48.455640001000077 ], [ -123.38768219399999, 48.455113792000098 ], [ -123.387785102999956, 48.454716790000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232534772", "BldgCostT": "156254158", "sL_LossRatio": "0.905355518416457", "sL_AssetLoss": "181886.78", "sL_BldgLoss": "164672.2", "sL_StrLoss": "116101.7", "sL_NStrLoss": "48570.5", "sL_ContLoss": "17214.58", "geom_point": "0101000020E6100000614914B5CFD85EC0BF3576AAF8394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.384501195999945, 48.45401900500012 ], [ -123.385019779999979, 48.452942493000094 ], [ -123.384937114, 48.452925089000111 ], [ -123.387249712999946, 48.450774603000127 ], [ -123.388125500999934, 48.451219997000123 ], [ -123.388663890999965, 48.451493001000145 ], [ -123.389116881999925, 48.451724198000072 ], [ -123.389734001999983, 48.452039713000069 ], [ -123.390193393999979, 48.452276507000064 ], [ -123.39126098, 48.452868193000043 ], [ -123.390009200999927, 48.454046615000067 ], [ -123.388070514999953, 48.453632705000061 ], [ -123.387785102999956, 48.454716790000077 ], [ -123.384501195999945, 48.45401900500012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248182052", "BldgCostT": "167558745", "sL_LossRatio": "0.881499783255852", "sL_AssetLoss": "194791.88", "sL_BldgLoss": "171709", "sL_StrLoss": "121415.1", "sL_NStrLoss": "50293.9", "sL_ContLoss": "23082.88", "geom_point": "0101000020E610000028E55BA38ED85EC096D2CF48C2394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.381317498999948, 48.448932789000075 ], [ -123.382127805999986, 48.448195282000071 ], [ -123.382427407999913, 48.448342505 ], [ -123.383052015999965, 48.448655912000085 ], [ -123.383391388999911, 48.448826196000098 ], [ -123.383660578999979, 48.448961798000056 ], [ -123.384629815999944, 48.449450184000092 ], [ -123.385249784999957, 48.449762196000101 ], [ -123.385814514999964, 48.450046596000085 ], [ -123.386196691999956, 48.450239113000094 ], [ -123.386987328999965, 48.450641159000071 ], [ -123.387249712999946, 48.450774603000127 ], [ -123.384937114, 48.452925089000111 ], [ -123.385019779999979, 48.452942493000094 ], [ -123.384501195999945, 48.45401900500012 ], [ -123.38153231599992, 48.453388410000116 ], [ -123.381224498999956, 48.452073209000083 ], [ -123.381463219999929, 48.452027693000048 ], [ -123.381900417999987, 48.451906597000054 ], [ -123.381911615999968, 48.451903503000104 ], [ -123.38201931, 48.451834274000056 ], [ -123.382223703999927, 48.451702884000014 ], [ -123.381812790999959, 48.451492500000064 ], [ -123.381677307999922, 48.451381008000077 ], [ -123.381649619999962, 48.450978996000117 ], [ -123.381681699999945, 48.450838212000107 ], [ -123.381779002999949, 48.450714403000028 ], [ -123.382571816, 48.449976512000056 ], [ -123.380972014999941, 48.449247095000082 ], [ -123.381317498999948, 48.448932789000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "280795521", "BldgCostT": "184924157", "sL_LossRatio": "0.754621188258822", "sL_AssetLoss": "174866.28", "sL_BldgLoss": "131957.8", "sL_StrLoss": "90172.8", "sL_NStrLoss": "41785", "sL_ContLoss": "42908.48", "geom_point": "0101000020E61000009ACB88030FD95EC04A88356CC6394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.387304489000016, 48.450638911000055 ], [ -123.38946921599991, 48.448719203000032 ], [ -123.390408801999953, 48.449182396000083 ], [ -123.391410189999988, 48.44967599800006 ], [ -123.392498207999949, 48.450214104000075 ], [ -123.393581688999944, 48.450762001000058 ], [ -123.394696794999902, 48.451298900000054 ], [ -123.395787674999923, 48.451836993000015 ], [ -123.395824712999939, 48.451855498000036 ], [ -123.395873044000027, 48.451879705000096 ], [ -123.39512625699993, 48.45253448200004 ], [ -123.393908097999926, 48.453602475000032 ], [ -123.39320473699992, 48.454219099000113 ], [ -123.393125700999974, 48.454305525000095 ], [ -123.39307762199995, 48.454223193000082 ], [ -123.393154880999973, 48.454143907000038 ], [ -123.392746203999963, 48.453721806000019 ], [ -123.392321995999936, 48.453408295000017 ], [ -123.392311928999959, 48.453401947000067 ], [ -123.39196970899999, 48.453185910000059 ], [ -123.391841998999922, 48.453176490000068 ], [ -123.39126098, 48.452868193000043 ], [ -123.390193393999979, 48.452276507000064 ], [ -123.389734001999983, 48.452039713000069 ], [ -123.389116881999925, 48.451724198000072 ], [ -123.388663890999965, 48.451493001000145 ], [ -123.388125500999934, 48.451219997000123 ], [ -123.387249712999946, 48.450774603000127 ], [ -123.387304489000016, 48.450638911000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "296769531", "BldgCostT": "199258603", "sL_LossRatio": "0.850781200759322", "sL_AssetLoss": "231801.49", "sL_BldgLoss": "197212.35", "sL_StrLoss": "141735.45", "sL_NStrLoss": "55476.9", "sL_ContLoss": "34589.14", "geom_point": "0101000020E6100000E2A310F1E4D85EC0973BBF6A5D394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.384629815999944, 48.449450184000092 ], [ -123.386854610999961, 48.447422 ], [ -123.388062490999943, 48.446252405000116 ], [ -123.388188001999978, 48.446130998000044 ], [ -123.388503010999955, 48.445825355000061 ], [ -123.388827010999961, 48.445511 ], [ -123.390522386999962, 48.446341888000113 ], [ -123.391565704999962, 48.446857187000063 ], [ -123.392519486999944, 48.447331595000023 ], [ -123.393513102999975, 48.44779520000008 ], [ -123.391410189999988, 48.44967599800006 ], [ -123.390408801999953, 48.449182396000083 ], [ -123.38946921599991, 48.448719203000032 ], [ -123.387304489000016, 48.450638911000055 ], [ -123.387249712999946, 48.450774603000127 ], [ -123.386987328999965, 48.450641159000071 ], [ -123.386196691999956, 48.450239113000094 ], [ -123.385814514999964, 48.450046596000085 ], [ -123.385249784999957, 48.449762196000101 ], [ -123.384629815999944, 48.449450184000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240628683", "BldgCostT": "154539570", "sL_LossRatio": "0.797581770794227", "sL_AssetLoss": "243991.76", "sL_BldgLoss": "194603.38", "sL_StrLoss": "144337.68", "sL_NStrLoss": "50265.7", "sL_ContLoss": "49388.38", "geom_point": "0101000020E61000009870AE8254D95EC04942D06E80394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.391410189999988, 48.44967599800006 ], [ -123.393513102999975, 48.44779520000008 ], [ -123.394602478999971, 48.448333307000055 ], [ -123.396106482999983, 48.446955412000065 ], [ -123.397445495999975, 48.447323794000049 ], [ -123.398477686999925, 48.447607935000072 ], [ -123.398776589999926, 48.447690204000061 ], [ -123.398917464, 48.447706881000023 ], [ -123.399141393999955, 48.447733404000097 ], [ -123.399471438999925, 48.447729152000115 ], [ -123.399999056999945, 48.447722398000053 ], [ -123.400420609999969, 48.447716990000131 ], [ -123.400327702999988, 48.447883388000079 ], [ -123.400010541999919, 48.44818806300006 ], [ -123.400002796999971, 48.448195511000094 ], [ -123.399514393999965, 48.448632592000131 ], [ -123.398740297999922, 48.449306202000052 ], [ -123.397953597999987, 48.449987510000071 ], [ -123.397128524999985, 48.45070400200008 ], [ -123.396667604999905, 48.451105689000045 ], [ -123.396668182999974, 48.451144509000073 ], [ -123.396347329999969, 48.451441187000079 ], [ -123.396329152999911, 48.451458014000153 ], [ -123.395916482, 48.451839568000025 ], [ -123.395873044000027, 48.451879705000096 ], [ -123.395824712999939, 48.451855498000036 ], [ -123.395787674999923, 48.451836993000015 ], [ -123.394696794999902, 48.451298900000054 ], [ -123.393581688999944, 48.450762001000058 ], [ -123.392498207999949, 48.450214104000075 ], [ -123.391410189999988, 48.44967599800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "435628924", "BldgCostT": "295440125", "sL_LossRatio": "0.789011795449867", "sL_AssetLoss": "176164.54", "sL_BldgLoss": "138995.9", "sL_StrLoss": "75406.8", "sL_NStrLoss": "63589.1", "sL_ContLoss": "37168.64", "geom_point": "0101000020E6100000FE807A121CD95EC0DE89D4AC1A394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.3892331, 48.445117339000049 ], [ -123.390479887999945, 48.443908704000073 ], [ -123.390735099999986, 48.443955609000078 ], [ -123.391025107999951, 48.444057407000081 ], [ -123.392235801999959, 48.44486460400006 ], [ -123.393109992999896, 48.445436196000102 ], [ -123.393978320999935, 48.446016602000093 ], [ -123.394797540999932, 48.446534555000042 ], [ -123.394871791999975, 48.446581497000061 ], [ -123.396106482999983, 48.446955412000065 ], [ -123.394602478999971, 48.448333307000055 ], [ -123.393513102999975, 48.44779520000008 ], [ -123.392519486999944, 48.447331595000023 ], [ -123.391565704999962, 48.446857187000063 ], [ -123.390522386999962, 48.446341888000113 ], [ -123.388827010999961, 48.445511 ], [ -123.3892331, 48.445117339000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207602355", "BldgCostT": "132791506", "sL_LossRatio": "0.690347562224757", "sL_AssetLoss": "146538.94", "sL_BldgLoss": "101162.8", "sL_StrLoss": "48367", "sL_NStrLoss": "52795.8", "sL_ContLoss": "45376.14", "geom_point": "0101000020E61000005DC3FB604FD95EC0CCDD6B310D394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.398776589999926, 48.447690204000061 ], [ -123.398477686999925, 48.447607935000072 ], [ -123.397445495999975, 48.447323794000049 ], [ -123.396106482999983, 48.446955412000065 ], [ -123.394871791999975, 48.446581497000061 ], [ -123.394797540999932, 48.446534555000042 ], [ -123.393978320999935, 48.446016602000093 ], [ -123.393109992999896, 48.445436196000102 ], [ -123.392235801999959, 48.44486460400006 ], [ -123.391025107999951, 48.444057407000081 ], [ -123.390735099999986, 48.443955609000078 ], [ -123.390479887999945, 48.443908704000073 ], [ -123.39116180399995, 48.443316783000036 ], [ -123.391472501999971, 48.442944268000133 ], [ -123.391573298999944, 48.442869914000056 ], [ -123.393250177999931, 48.444120197000082 ], [ -123.394416991999961, 48.444521810000012 ], [ -123.394705138999953, 48.444449846000062 ], [ -123.395069271999915, 48.444448595000082 ], [ -123.395166736999968, 48.444429862000064 ], [ -123.395204379999953, 48.444448132000105 ], [ -123.395304782999958, 48.444447787000108 ], [ -123.395309100999924, 48.444464798000084 ], [ -123.395173294999907, 48.444627205000067 ], [ -123.394918806999968, 48.444735483000102 ], [ -123.394904702999952, 48.444862211000135 ], [ -123.395165095999957, 48.4453379 ], [ -123.39557410799992, 48.445669688000102 ], [ -123.396779501999944, 48.445961704000055 ], [ -123.396962377999941, 48.445989275000024 ], [ -123.396962940999984, 48.446061452000066 ], [ -123.397054903999987, 48.446061135000036 ], [ -123.397058065999929, 48.446003700000112 ], [ -123.398243392999973, 48.4461823950001 ], [ -123.398527314999939, 48.446306398000075 ], [ -123.398705297999967, 48.446585508000091 ], [ -123.399016890999988, 48.44672791500011 ], [ -123.399570213999965, 48.446564107000071 ], [ -123.399811991999968, 48.446374695000031 ], [ -123.400299150999984, 48.446452731000065 ], [ -123.400300784999899, 48.446452993000058 ], [ -123.40042544399995, 48.446508032000089 ], [ -123.40041961299994, 48.446565215000071 ], [ -123.400288385999929, 48.446512600000077 ], [ -123.400303619999988, 48.446573109000035 ], [ -123.400482195, 48.447283010000021 ], [ -123.400475204999964, 48.447483901000119 ], [ -123.400420609999969, 48.447716990000131 ], [ -123.399999056999945, 48.447722398000053 ], [ -123.399471438999925, 48.447729152000115 ], [ -123.399141393999955, 48.447733404000097 ], [ -123.398917464, 48.447706881000023 ], [ -123.398776589999926, 48.447690204000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175566387", "BldgCostT": "112352080", "sL_LossRatio": "0.745165144875253", "sL_AssetLoss": "201730.45", "sL_BldgLoss": "150322.5", "sL_StrLoss": "87617", "sL_NStrLoss": "62705.5", "sL_ContLoss": "51407.95", "geom_point": "0101000020E6100000376AB6D975D95EC0DFA857C2C1384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.400080987999971, 48.446238011000105 ], [ -123.399904191999923, 48.446004407000125 ], [ -123.399674889999957, 48.446051408000095 ], [ -123.398779388, 48.445604208000063 ], [ -123.39850390399999, 48.444930587000052 ], [ -123.398673409999958, 48.444362306000073 ], [ -123.398670594999913, 48.44388659800012 ], [ -123.398534309999931, 48.443711105000091 ], [ -123.398384189999902, 48.443517794000101 ], [ -123.39815975, 48.443473277000045 ], [ -123.398159380999928, 48.44342607600003 ], [ -123.398076837999909, 48.443403561000046 ], [ -123.397015655999951, 48.443414095000087 ], [ -123.396694019999927, 48.443411610000034 ], [ -123.395948979999957, 48.44340585100008 ], [ -123.39583963799997, 48.443369961000073 ], [ -123.39572481, 48.443366762000089 ], [ -123.395460100999955, 48.443367672000051 ], [ -123.394985099999971, 48.442972286000092 ], [ -123.394504894999955, 48.442966688000105 ], [ -123.394504687999969, 48.442939874000096 ], [ -123.39422272199999, 48.442909527000097 ], [ -123.392696507, 48.442359887000073 ], [ -123.392261533999914, 48.442338191000083 ], [ -123.392597963999961, 48.44207587800009 ], [ -123.392822713, 48.441931990000114 ], [ -123.393213707999962, 48.441230094000069 ], [ -123.394532058999971, 48.441552909000073 ], [ -123.39568978899996, 48.441827615000122 ], [ -123.397303500999911, 48.442205408000099 ], [ -123.398107039999957, 48.442399282000082 ], [ -123.398684802999981, 48.442538711000047 ], [ -123.399390977999971, 48.442706226000041 ], [ -123.400003569999953, 48.442851567000062 ], [ -123.400796529999923, 48.443039704000029 ], [ -123.401284717999886, 48.443145860000136 ], [ -123.401703505999961, 48.443236912000025 ], [ -123.401492703999935, 48.443928790000044 ], [ -123.401336485999948, 48.444439 ], [ -123.400886856999975, 48.445256393000136 ], [ -123.400826465999955, 48.445366147000087 ], [ -123.400687734999977, 48.445618286000105 ], [ -123.400533248999963, 48.445899120000107 ], [ -123.400426093999911, 48.446093904000087 ], [ -123.400451539999935, 48.44614342200007 ], [ -123.400444711999924, 48.446245495000085 ], [ -123.40037951, 48.446263601000069 ], [ -123.400344669999967, 48.446260615000057 ], [ -123.400080987999971, 48.446238011000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "335111168", "BldgCostT": "227706668", "sL_LossRatio": "0.750461305082537", "sL_AssetLoss": "166424.57", "sL_BldgLoss": "124895.2", "sL_StrLoss": "62346.8", "sL_NStrLoss": "62548.4", "sL_ContLoss": "41529.37", "geom_point": "0101000020E610000021D7D16153D95EC0411569A872384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393213707999962, 48.441230094000069 ], [ -123.393999545999961, 48.439803862000083 ], [ -123.394715127999973, 48.440044189000048 ], [ -123.395189596999927, 48.440153282000026 ], [ -123.395821892999933, 48.44023919600005 ], [ -123.397094702999951, 48.440409312000043 ], [ -123.39815751299993, 48.44059330100005 ], [ -123.397742897999933, 48.441382089000079 ], [ -123.397303500999911, 48.442205408000099 ], [ -123.39568978899996, 48.441827615000122 ], [ -123.394532058999971, 48.441552909000073 ], [ -123.393213707999962, 48.441230094000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248043031", "BldgCostT": "164198603", "sL_LossRatio": "0.865622603067732", "sL_AssetLoss": "351230.2", "sL_BldgLoss": "304032.8", "sL_StrLoss": "184714.8", "sL_NStrLoss": "119318", "sL_ContLoss": "47197.4", "geom_point": "0101000020E61000009EBA867493D95EC0CADD4B6D6B384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.400956684, 48.438818758000068 ], [ -123.401923988999968, 48.438806396000061 ], [ -123.401716200999942, 48.439445191000047 ], [ -123.401426656999931, 48.440309621000019 ], [ -123.401070294999897, 48.441373616000099 ], [ -123.402136979999952, 48.441857009000024 ], [ -123.401764988999957, 48.443051709000031 ], [ -123.401703505999961, 48.443236912000025 ], [ -123.401284717999886, 48.443145860000136 ], [ -123.400796529999923, 48.443039704000029 ], [ -123.400003569999953, 48.442851567000062 ], [ -123.399390977999971, 48.442706226000041 ], [ -123.398684802999981, 48.442538711000047 ], [ -123.398107039999957, 48.442399282000082 ], [ -123.397303500999911, 48.442205408000099 ], [ -123.397742897999933, 48.441382089000079 ], [ -123.39815751299993, 48.44059330100005 ], [ -123.397094702999951, 48.440409312000043 ], [ -123.39705369699999, 48.438873518000044 ], [ -123.397127991999966, 48.438872609000057 ], [ -123.399080988999955, 48.43884480700013 ], [ -123.399767074999957, 48.438835206000086 ], [ -123.399996847999915, 48.43883200500008 ], [ -123.400835509000018, 48.438820304000018 ], [ -123.400956684, 48.438818758000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167165033", "BldgCostT": "108179561", "sL_LossRatio": "0.724639734780993", "sL_AssetLoss": "741002.7", "sL_BldgLoss": "536960", "sL_StrLoss": "241034", "sL_NStrLoss": "295926", "sL_ContLoss": "204042.7", "geom_point": "0101000020E6100000D769ABCC73D95EC017C6477216384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.398957616999908, 48.435789192000044 ], [ -123.399061299999985, 48.435787965000074 ], [ -123.402568359999947, 48.436934119000099 ], [ -123.402452313999945, 48.437272801000098 ], [ -123.402195708999955, 48.438014102000118 ], [ -123.402155491999963, 48.438131200000036 ], [ -123.401923988999968, 48.438806396000061 ], [ -123.400956684, 48.438818758000068 ], [ -123.400835509000018, 48.438820304000018 ], [ -123.399996847999915, 48.43883200500008 ], [ -123.399767074999957, 48.438835206000086 ], [ -123.399080988999955, 48.43884480700013 ], [ -123.397127991999966, 48.438872609000057 ], [ -123.39705369699999, 48.438873518000044 ], [ -123.397094702999951, 48.440409312000043 ], [ -123.395821892999933, 48.44023919600005 ], [ -123.395189596999927, 48.440153282000026 ], [ -123.394715127999973, 48.440044189000048 ], [ -123.393999545999961, 48.439803862000083 ], [ -123.393066102999967, 48.439477008000054 ], [ -123.39321800299993, 48.438925184000055 ], [ -123.393268911999911, 48.438735295000058 ], [ -123.393422210999958, 48.438181801000077 ], [ -123.393597908999936, 48.437542200000053 ], [ -123.393643888999932, 48.437391796000092 ], [ -123.395760801999955, 48.437353708000124 ], [ -123.397036772, 48.437334054000132 ], [ -123.397676099999956, 48.43732420300006 ], [ -123.3990061199999, 48.437311800000074 ], [ -123.398957616999908, 48.435789192000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "403140567", "BldgCostT": "260702102", "sL_LossRatio": "0.798827962251665", "sL_AssetLoss": "1231291.4", "sL_BldgLoss": "983590", "sL_StrLoss": "458120", "sL_NStrLoss": "525470", "sL_ContLoss": "247701.4", "geom_point": "0101000020E6100000C2EA98EB5BD95EC0285826D3D3374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.394207070999954, 48.434926309000055 ], [ -123.394283423999966, 48.434286835000108 ], [ -123.398702356999976, 48.435583967000071 ], [ -123.398885840999952, 48.435637816000089 ], [ -123.39888711499999, 48.435672099000065 ], [ -123.398887472999959, 48.435672757000134 ], [ -123.398957616999908, 48.435789192000044 ], [ -123.3990061199999, 48.437311800000074 ], [ -123.397676099999956, 48.43732420300006 ], [ -123.397036772, 48.437334054000132 ], [ -123.395760801999955, 48.437353708000124 ], [ -123.393643888999932, 48.437391796000092 ], [ -123.393850471999897, 48.436630391000065 ], [ -123.393947602999958, 48.43624049300012 ], [ -123.394054188999988, 48.435897703000066 ], [ -123.394166567, 48.43548690300009 ], [ -123.394207070999954, 48.434926309000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94722084", "BldgCostT": "59753334", "sL_LossRatio": "0.784324928990349", "sL_AssetLoss": "472541.4", "sL_BldgLoss": "370626", "sL_StrLoss": "205600", "sL_NStrLoss": "165026", "sL_ContLoss": "101915.4", "geom_point": "0101000020E6100000BF4AA1A012D95EC0E356EF0D91374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.391831289999971, 48.43563379700003 ], [ -123.39184209599992, 48.43489909900007 ], [ -123.391253610999982, 48.434925197000034 ], [ -123.389497729999974, 48.434929699000037 ], [ -123.38878980899996, 48.434943811000103 ], [ -123.388948781999972, 48.432528202000121 ], [ -123.390201106999911, 48.432569086000036 ], [ -123.390514419999931, 48.432579293000074 ], [ -123.390977416999931, 48.432594402000056 ], [ -123.391743773999977, 48.432619590000122 ], [ -123.392766189999961, 48.432750301000048 ], [ -123.39350289399999, 48.432850497000061 ], [ -123.39373739399997, 48.432880601000072 ], [ -123.394199783999952, 48.432937094000074 ], [ -123.394309986999986, 48.432946113000114 ], [ -123.394283423999966, 48.434286835000108 ], [ -123.394207070999954, 48.434926309000055 ], [ -123.394166567, 48.43548690300009 ], [ -123.394054188999988, 48.435897703000066 ], [ -123.393819190999935, 48.435974003000133 ], [ -123.393519881999936, 48.436092007000063 ], [ -123.392286805999902, 48.436354703000092 ], [ -123.392054720999951, 48.435864702000131 ], [ -123.391913905999928, 48.435775587000073 ], [ -123.391831289999971, 48.43563379700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174954685", "BldgCostT": "116906897", "sL_LossRatio": "0.893917664380627", "sL_AssetLoss": "205222.48", "sL_BldgLoss": "183452", "sL_StrLoss": "129388", "sL_NStrLoss": "54064", "sL_ContLoss": "21770.48", "geom_point": "0101000020E61000004962203A0AD95EC0DF7FF99EF0374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.389768701999969, 48.438160288000105 ], [ -123.389363415999966, 48.437817453000079 ], [ -123.389147313999956, 48.437634586000037 ], [ -123.388843229999964, 48.437337650000067 ], [ -123.388633777999985, 48.437133099000036 ], [ -123.388411767, 48.436911413000118 ], [ -123.387908604999922, 48.436409084000054 ], [ -123.389474298999943, 48.43603738300007 ], [ -123.391245107999978, 48.435667107000064 ], [ -123.391253610999982, 48.434925197000034 ], [ -123.39184209599992, 48.43489909900007 ], [ -123.391831289999971, 48.43563379700003 ], [ -123.391913905999928, 48.435775587000073 ], [ -123.392054720999951, 48.435864702000131 ], [ -123.392286805999902, 48.436354703000092 ], [ -123.393519881999936, 48.436092007000063 ], [ -123.393819190999935, 48.435974003000133 ], [ -123.394054188999988, 48.435897703000066 ], [ -123.393947602999958, 48.43624049300012 ], [ -123.393850471999897, 48.436630391000065 ], [ -123.393643888999932, 48.437391796000092 ], [ -123.393597908999936, 48.437542200000053 ], [ -123.393422210999958, 48.438181801000077 ], [ -123.393268911999911, 48.438735295000058 ], [ -123.391299292999975, 48.438059998000064 ], [ -123.390771586999975, 48.438696315000136 ], [ -123.39050949499989, 48.438604191000096 ], [ -123.390178913999947, 48.438480602000034 ], [ -123.389768701999969, 48.438160288000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80033643", "BldgCostT": "52311522", "sL_LossRatio": "0.902754253212196", "sL_AssetLoss": "161385.67", "sL_BldgLoss": "145691.6", "sL_StrLoss": "112223", "sL_NStrLoss": "33468.6", "sL_ContLoss": "15694.07", "geom_point": "0101000020E6100000A06F2CA4D3D85EC021959481A4374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.386054284999972, 48.435578802000094 ], [ -123.386024100999947, 48.434685311000045 ], [ -123.386010830999936, 48.434243101000042 ], [ -123.386012103999988, 48.433779601000012 ], [ -123.385996294999984, 48.432868388000074 ], [ -123.38686637699999, 48.432873587000081 ], [ -123.38715621099999, 48.43280680700007 ], [ -123.388001786999922, 48.432572489000115 ], [ -123.388108078999949, 48.432552496000064 ], [ -123.388333129, 48.432511200000043 ], [ -123.388862794999937, 48.432521599000047 ], [ -123.388948781999972, 48.432528202000121 ], [ -123.38878980899996, 48.434943811000103 ], [ -123.389497729999974, 48.434929699000037 ], [ -123.391253610999982, 48.434925197000034 ], [ -123.391245107999978, 48.435667107000064 ], [ -123.389474298999943, 48.43603738300007 ], [ -123.387908604999922, 48.436409084000054 ], [ -123.387242313999977, 48.436499097000166 ], [ -123.386071394999945, 48.43649011200003 ], [ -123.386054284999972, 48.435578802000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251855616", "BldgCostT": "160873879", "sL_LossRatio": "0.735408471806112", "sL_AssetLoss": "254112.52", "sL_BldgLoss": "186876.5", "sL_StrLoss": "128909.5", "sL_NStrLoss": "57967", "sL_ContLoss": "67236.02", "geom_point": "0101000020E6100000802CE15CC5D85EC0983EEFBE11384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.392159395, 48.442312878000038 ], [ -123.392160138999941, 48.442299383000041 ], [ -123.39214563199999, 48.442299432 ], [ -123.392065225999914, 48.442220872000114 ], [ -123.392064837999982, 48.44217040400008 ], [ -123.391971914999957, 48.442129704000116 ], [ -123.391813893999981, 48.441975312000032 ], [ -123.391250622999948, 48.441790605000058 ], [ -123.391250290999935, 48.44174714900003 ], [ -123.390863647999964, 48.441494107000061 ], [ -123.39072164, 48.441494590000097 ], [ -123.390591910999902, 48.441404200000115 ], [ -123.390516118999955, 48.441301915000047 ], [ -123.390346092999934, 48.441072390000073 ], [ -123.390027407000019, 48.440970469000042 ], [ -123.390027226, 48.440946690000082 ], [ -123.389890737999934, 48.440857361000099 ], [ -123.389676658999988, 48.440688446000109 ], [ -123.389619612999965, 48.440688638000047 ], [ -123.389619264999951, 48.440643160000057 ], [ -123.389410087999934, 48.440478110000079 ], [ -123.389352698999957, 48.440283392 ], [ -123.388987983999954, 48.440231657000041 ], [ -123.388776951999915, 48.44015169700009 ], [ -123.388638325999949, 48.440152166000104 ], [ -123.388120005999937, 48.439910200000071 ], [ -123.387994887, 48.439324890000059 ], [ -123.387776285999976, 48.439199601000041 ], [ -123.387735996999965, 48.439074204000029 ], [ -123.38726120299999, 48.438931803000024 ], [ -123.387171963999961, 48.438868877000068 ], [ -123.387168828999933, 48.438456341000098 ], [ -123.387256086999955, 48.438383509000147 ], [ -123.387167428999987, 48.43827215400011 ], [ -123.387165344999957, 48.437997966000061 ], [ -123.386949708999964, 48.437998691000082 ], [ -123.38694200399999, 48.437989012000102 ], [ -123.386353460999942, 48.437911766000084 ], [ -123.386352088999899, 48.437730804000083 ], [ -123.385540883999937, 48.437733524000109 ], [ -123.385542237999928, 48.437912639000096 ], [ -123.385351843999928, 48.438004053000057 ], [ -123.38513732, 48.438004771000138 ], [ -123.385138089999941, 48.43810668400009 ], [ -123.384902695, 48.438219704000048 ], [ -123.384851528999917, 48.438275624000035 ], [ -123.383922538999926, 48.438278726000121 ], [ -123.383920503999974, 48.43800883600003 ], [ -123.382818990999908, 48.438012506000042 ], [ -123.382789890999945, 48.437795292000011 ], [ -123.382701452, 48.437714953000054 ], [ -123.382699633999934, 48.437473113000074 ], [ -123.382436193, 48.437473989000082 ], [ -123.382394808999948, 48.437436394000059 ], [ -123.382293484999977, 48.437401451000028 ], [ -123.38229200899994, 48.437204572000049 ], [ -123.381886409999979, 48.437205918000117 ], [ -123.381884387999946, 48.436936029000073 ], [ -123.381073193999924, 48.436938718000121 ], [ -123.381071173999942, 48.436668830000109 ], [ -123.380653857999917, 48.436670210000081 ], [ -123.380388590999956, 48.436526306000133 ], [ -123.380258718999968, 48.436501732000082 ], [ -123.380257969999931, 48.436401623000116 ], [ -123.380017260999949, 48.436402418000092 ], [ -123.379884913999945, 48.436294206000099 ], [ -123.379851162999969, 48.436239982000117 ], [ -123.37984835599994, 48.435863185000109 ], [ -123.379617111999977, 48.435863948000112 ], [ -123.379440650999939, 48.435580435000084 ], [ -123.379438945999965, 48.435351308000094 ], [ -123.379591704999939, 48.434845705000079 ], [ -123.379519698999928, 48.434441306000053 ], [ -123.379431355999898, 48.434332114000014 ], [ -123.379430708999905, 48.434245188000105 ], [ -123.379361213999985, 48.434245417000106 ], [ -123.379267707999929, 48.434129845000051 ], [ -123.379296035000024, 48.434123821000135 ], [ -123.379384531999946, 48.434104995000055 ], [ -123.37940589399993, 48.434100459000078 ], [ -123.379568741999933, 48.434065824000086 ], [ -123.37960833299999, 48.434057414000023 ], [ -123.379918307999972, 48.433991492000153 ], [ -123.380623136999958, 48.433813237000052 ], [ -123.381713115999958, 48.434405637000069 ], [ -123.382175692999951, 48.434703821 ], [ -123.38283498599999, 48.435373014000035 ], [ -123.383066394999972, 48.435507711000071 ], [ -123.383368594999951, 48.435582796000119 ], [ -123.383377003999939, 48.436478505000018 ], [ -123.384836982999943, 48.436482091000059 ], [ -123.386071394999945, 48.43649011200003 ], [ -123.387242313999977, 48.436499097000166 ], [ -123.387908604999922, 48.436409084000054 ], [ -123.388411767, 48.436911413000118 ], [ -123.388633777999985, 48.437133099000036 ], [ -123.388843229999964, 48.437337650000067 ], [ -123.389147313999956, 48.437634586000037 ], [ -123.389363415999966, 48.437817453000079 ], [ -123.389768701999969, 48.438160288000105 ], [ -123.390178913999947, 48.438480602000034 ], [ -123.39050949499989, 48.438604191000096 ], [ -123.390771586999975, 48.438696315000136 ], [ -123.391299292999975, 48.438059998000064 ], [ -123.393268911999911, 48.438735295000058 ], [ -123.39321800299993, 48.438925184000055 ], [ -123.393066102999967, 48.439477008000054 ], [ -123.393999545999961, 48.439803862000083 ], [ -123.393213707999962, 48.441230094000069 ], [ -123.392822713, 48.441931990000114 ], [ -123.392597963999961, 48.44207587800009 ], [ -123.392261533999914, 48.442338191000083 ], [ -123.392181200999943, 48.44233418500005 ], [ -123.392159395, 48.442312878000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248160146", "BldgCostT": "163597865", "sL_LossRatio": "0.791574116774781", "sL_AssetLoss": "192814.92", "sL_BldgLoss": "152627.3", "sL_StrLoss": "99718.5", "sL_NStrLoss": "52908.8", "sL_ContLoss": "40187.62", "geom_point": "0101000020E610000022252CE094D85EC0B8476FB88F374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.383170987000014, 48.432153790000037 ], [ -123.384294712999946, 48.431281599000059 ], [ -123.384720287999954, 48.431272192000058 ], [ -123.384730008999938, 48.432147199000035 ], [ -123.385977914999941, 48.432152799000022 ], [ -123.385996294999984, 48.432868388000074 ], [ -123.386012103999988, 48.433779601000012 ], [ -123.386010830999936, 48.434243101000042 ], [ -123.386024100999947, 48.434685311000045 ], [ -123.386054284999972, 48.435578802000094 ], [ -123.386071394999945, 48.43649011200003 ], [ -123.384836982999943, 48.436482091000059 ], [ -123.383377003999939, 48.436478505000018 ], [ -123.383368594999951, 48.435582796000119 ], [ -123.383066394999972, 48.435507711000071 ], [ -123.38283498599999, 48.435373014000035 ], [ -123.382175692999951, 48.434703821 ], [ -123.381713115999958, 48.434405637000069 ], [ -123.380623136999958, 48.433813237000052 ], [ -123.381402528999942, 48.433507010000042 ], [ -123.382291402999897, 48.432857107000096 ], [ -123.383170987000014, 48.432153790000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "310075780", "BldgCostT": "197253602", "sL_LossRatio": "0.751122518414173", "sL_AssetLoss": "1047087.5", "sL_BldgLoss": "786491", "sL_StrLoss": "381835", "sL_NStrLoss": "404656", "sL_ContLoss": "260596.5", "geom_point": "0101000020E6100000D3A73C57E7D85EC0BFDDA2FE40374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.385996294999984, 48.432868388000074 ], [ -123.385977914999941, 48.432152799000022 ], [ -123.384730008999938, 48.432147199000035 ], [ -123.384720287999954, 48.431272192000058 ], [ -123.384294712999946, 48.431281599000059 ], [ -123.384612996999948, 48.430986700000084 ], [ -123.384718575, 48.43088889600007 ], [ -123.384722569999937, 48.430402047 ], [ -123.385948709999965, 48.430409805000117 ], [ -123.387142818999934, 48.430436501000038 ], [ -123.387824220999931, 48.430484895000042 ], [ -123.388225614999925, 48.430520217000023 ], [ -123.388523148999923, 48.430546390000139 ], [ -123.388821980999964, 48.430572706000142 ], [ -123.390427518999957, 48.430797099000124 ], [ -123.390976416999976, 48.4308756020001 ], [ -123.392075187999964, 48.431040586000037 ], [ -123.392705302999943, 48.431212088000066 ], [ -123.392897501999983, 48.431274605000077 ], [ -123.393403946999911, 48.431450733000119 ], [ -123.393570081999925, 48.431508493000045 ], [ -123.394290527999942, 48.431782308000081 ], [ -123.394309986999986, 48.432946113000114 ], [ -123.394199783999952, 48.432937094000074 ], [ -123.39373739399997, 48.432880601000072 ], [ -123.39350289399999, 48.432850497000061 ], [ -123.392766189999961, 48.432750301000048 ], [ -123.391743773999977, 48.432619590000122 ], [ -123.390977416999931, 48.432594402000056 ], [ -123.390514419999931, 48.432579293000074 ], [ -123.390201106999911, 48.432569086000036 ], [ -123.388948781999972, 48.432528202000121 ], [ -123.388862794999937, 48.432521599000047 ], [ -123.388333129, 48.432511200000043 ], [ -123.388108078999949, 48.432552496000064 ], [ -123.388001786999922, 48.432572489000115 ], [ -123.38715621099999, 48.43280680700007 ], [ -123.38686637699999, 48.432873587000081 ], [ -123.385996294999984, 48.432868388000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "393834978", "BldgCostT": "266838872", "sL_LossRatio": "0.765655351842186", "sL_AssetLoss": "798551.2", "sL_BldgLoss": "611415", "sL_StrLoss": "231191", "sL_NStrLoss": "380224", "sL_ContLoss": "187136.2", "geom_point": "0101000020E6100000130D5A61DDD85EC023FDA477FD364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.387412710999925, 48.428164305000074 ], [ -123.387560508999968, 48.428127395000061 ], [ -123.388752199999928, 48.428350959000042 ], [ -123.388800990999925, 48.428434907000046 ], [ -123.388792104999979, 48.429451910000104 ], [ -123.3900052899999, 48.429522407000086 ], [ -123.390257601999977, 48.429596199000045 ], [ -123.390374699999967, 48.429747896000094 ], [ -123.390407696999944, 48.429957891000122 ], [ -123.390427518999957, 48.430797099000124 ], [ -123.388821980999964, 48.430572706000142 ], [ -123.388523148999923, 48.430546390000139 ], [ -123.388225614999925, 48.430520217000023 ], [ -123.387824220999931, 48.430484895000042 ], [ -123.387142818999934, 48.430436501000038 ], [ -123.387141706999927, 48.430277815000082 ], [ -123.387128317999924, 48.428306103000061 ], [ -123.387412710999925, 48.428164305000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212289750", "BldgCostT": "148815000", "sL_LossRatio": "0.89749436917183", "sL_AssetLoss": "285038", "sL_BldgLoss": "255820", "sL_StrLoss": "111050", "sL_NStrLoss": "144770", "sL_ContLoss": "29218", "geom_point": "0101000020E6100000FF756EDA0CD95EC0DA89F5BA03374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.390427518999957, 48.430797099000124 ], [ -123.390407696999944, 48.429957891000122 ], [ -123.390374699999967, 48.429747896000094 ], [ -123.390257601999977, 48.429596199000045 ], [ -123.3900052899999, 48.429522407000086 ], [ -123.388792104999979, 48.429451910000104 ], [ -123.388800990999925, 48.428434907000046 ], [ -123.388752199999928, 48.428350959000042 ], [ -123.387560508999968, 48.428127395000061 ], [ -123.387412710999925, 48.428164305000074 ], [ -123.387128317999924, 48.428306103000061 ], [ -123.387130810999977, 48.428016702000029 ], [ -123.387002447999919, 48.427891438000053 ], [ -123.38699795899997, 48.427841759000067 ], [ -123.387146518999927, 48.427741986000086 ], [ -123.387646361999913, 48.42774030300005 ], [ -123.387798982999968, 48.42783720000007 ], [ -123.388351713999953, 48.427773101000106 ], [ -123.388853692999987, 48.428040915000039 ], [ -123.389030417999962, 48.428058 ], [ -123.389232610999954, 48.427958298000092 ], [ -123.389406420999947, 48.42762500200007 ], [ -123.389662795999982, 48.427579391000137 ], [ -123.389907009999916, 48.427704790000107 ], [ -123.389907983999947, 48.427812994000107 ], [ -123.389520320999949, 48.428452498000084 ], [ -123.389885382, 48.428415402000027 ], [ -123.390112224999939, 48.428534962000057 ], [ -123.390223292999977, 48.428593500000055 ], [ -123.390389347999985, 48.428795957000112 ], [ -123.390393350999943, 48.428810600000112 ], [ -123.390401332999943, 48.428810573000057 ], [ -123.390414813999939, 48.428827007000059 ], [ -123.390337894999945, 48.429232897000126 ], [ -123.390649389999979, 48.429554792000033 ], [ -123.39128621899998, 48.429589002000043 ], [ -123.391451775999926, 48.430020497000051 ], [ -123.391803382999939, 48.430171492000092 ], [ -123.392763181999939, 48.430141599000116 ], [ -123.392898787999968, 48.430060399000055 ], [ -123.393057513, 48.429727094000093 ], [ -123.39345807799999, 48.429609850000134 ], [ -123.393590394999961, 48.429609398000046 ], [ -123.393590099999983, 48.42957120700008 ], [ -123.393772586999901, 48.429517793000059 ], [ -123.393796306999946, 48.429338797000142 ], [ -123.393993846999976, 48.429338121000065 ], [ -123.393991760999981, 48.42906823300013 ], [ -123.394242127, 48.429067375000095 ], [ -123.394299694, 48.430952893000104 ], [ -123.394290527999942, 48.431782308000081 ], [ -123.393570081999925, 48.431508493000045 ], [ -123.393403946999911, 48.431450733000119 ], [ -123.392897501999983, 48.431274605000077 ], [ -123.392705302999943, 48.431212088000066 ], [ -123.392075187999964, 48.431040586000037 ], [ -123.390976416999976, 48.4308756020001 ], [ -123.390427518999957, 48.430797099000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150478302", "BldgCostT": "96978745", "sL_LossRatio": "0.735832451756466", "sL_AssetLoss": "657912", "sL_BldgLoss": "484113", "sL_StrLoss": "207805", "sL_NStrLoss": "276308", "sL_ContLoss": "173799", "geom_point": "0101000020E6100000283D578470D95EC081948E2823374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.394290527999942, 48.431782308000081 ], [ -123.394299694, 48.430952893000104 ], [ -123.394444400999987, 48.430996999000044 ], [ -123.39456832899999, 48.430998338000023 ], [ -123.394902895999962, 48.431001987000066 ], [ -123.394947008999949, 48.430850652000075 ], [ -123.394961107999933, 48.430802299000064 ], [ -123.395418354999933, 48.43063073900003 ], [ -123.395725799999937, 48.430515414000119 ], [ -123.39690476399997, 48.430072327000104 ], [ -123.398104, 48.429621601000051 ], [ -123.39941289399998, 48.429130685000089 ], [ -123.400000851999948, 48.429832074000103 ], [ -123.400008004999975, 48.429840605000102 ], [ -123.400613077999964, 48.430592292000078 ], [ -123.399987384999974, 48.430866829000124 ], [ -123.399347892999984, 48.431147402000057 ], [ -123.397810298999929, 48.431648904000014 ], [ -123.395335892, 48.432034391000087 ], [ -123.39484659699994, 48.431974588000095 ], [ -123.394290527999942, 48.431782308000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "357775389", "BldgCostT": "223051481", "sL_LossRatio": "0.700643411010837", "sL_AssetLoss": "1372684", "sL_BldgLoss": "961762", "sL_StrLoss": "431695", "sL_NStrLoss": "530067", "sL_ContLoss": "410922", "geom_point": "0101000020E6100000FBEE13308FD95EC0D83E377681374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.402568359999947, 48.436934119000099 ], [ -123.399061299999985, 48.435787965000074 ], [ -123.398957616999908, 48.435789192000044 ], [ -123.398887472999959, 48.435672757000134 ], [ -123.39888711499999, 48.435672099000065 ], [ -123.398885840999952, 48.435637816000089 ], [ -123.398702356999976, 48.435583967000071 ], [ -123.394283423999966, 48.434286835000108 ], [ -123.394309986999986, 48.432946113000114 ], [ -123.394290527999942, 48.431782308000081 ], [ -123.39484659699994, 48.431974588000095 ], [ -123.395335892, 48.432034391000087 ], [ -123.397810298999929, 48.431648904000014 ], [ -123.399347892999984, 48.431147402000057 ], [ -123.399987384999974, 48.430866829000124 ], [ -123.400613077999964, 48.430592292000078 ], [ -123.402009199999952, 48.431740091000044 ], [ -123.402478582999905, 48.43212600099999 ], [ -123.40353208499999, 48.432993194000062 ], [ -123.403977816999955, 48.432987904000093 ], [ -123.40378300799992, 48.433422619000055 ], [ -123.40359330099993, 48.433845995000063 ], [ -123.403351790999935, 48.434591691000094 ], [ -123.403237816999962, 48.434943680000082 ], [ -123.402978997, 48.43574279200007 ], [ -123.402946569999955, 48.435837240000112 ], [ -123.402866597999946, 48.436070107000084 ], [ -123.40261469099994, 48.436798790000061 ], [ -123.402568359999947, 48.436934119000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "474780821", "BldgCostT": "323616650", "sL_LossRatio": "0.821330155216329", "sL_AssetLoss": "104900.69", "sL_BldgLoss": "86158.1", "sL_StrLoss": "61057.6", "sL_NStrLoss": "25100.5", "sL_ContLoss": "18742.59", "geom_point": "0101000020E6100000E6C8DB5B5BD85EC02AE28D2FCE364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.380177386999947, 48.429874827000084 ], [ -123.377448683999958, 48.428444644000116 ], [ -123.374898588999912, 48.42814970300001 ], [ -123.374586705999931, 48.427910174000019 ], [ -123.374422580999976, 48.427784101000107 ], [ -123.374255504999965, 48.427655796000138 ], [ -123.374058486, 48.427605802000087 ], [ -123.373811506999971, 48.427608709000069 ], [ -123.372788898999957, 48.427951395000086 ], [ -123.373049284999965, 48.427687697000103 ], [ -123.373589085999967, 48.427444097000091 ], [ -123.374150894999957, 48.426905972000029 ], [ -123.374509812999975, 48.426914874000097 ], [ -123.374507238999954, 48.426564642000116 ], [ -123.37520918499996, 48.425892254000111 ], [ -123.375313334999944, 48.425891914000012 ], [ -123.375312785999967, 48.425817420000058 ], [ -123.375626928999935, 48.42562099500006 ], [ -123.376277549999926, 48.425618870000072 ], [ -123.376792095999946, 48.425715088000075 ], [ -123.37857850799999, 48.425834792000103 ], [ -123.379214705999971, 48.425994296000056 ], [ -123.379904201999935, 48.426055511000058 ], [ -123.380066882999955, 48.42613669800005 ], [ -123.380324006999956, 48.426108209000049 ], [ -123.380588126999953, 48.426299826000161 ], [ -123.380588981999935, 48.426414380000018 ], [ -123.380745314999928, 48.426413861000093 ], [ -123.381274107999943, 48.426797487000023 ], [ -123.381339021999935, 48.426805641000058 ], [ -123.381808924999959, 48.4268646680001 ], [ -123.381811587999948, 48.427220017000096 ], [ -123.382141608999973, 48.427218922000044 ], [ -123.382442304999969, 48.427558106000085 ], [ -123.38343048899999, 48.42758230500008 ], [ -123.383728315999932, 48.427707603000059 ], [ -123.383842939999965, 48.427712048000032 ], [ -123.383843248999966, 48.427753051000082 ], [ -123.384208804999901, 48.427751831000101 ], [ -123.384248886999899, 48.427766974000072 ], [ -123.384250806999916, 48.428021586000078 ], [ -123.384546642999936, 48.428020599000043 ], [ -123.38456980899997, 48.428055105000041 ], [ -123.38440798, 48.42823600200007 ], [ -123.384358283, 48.428650404000052 ], [ -123.384670600999954, 48.428945194000036 ], [ -123.384912399999962, 48.428774288000064 ], [ -123.385407399999963, 48.428160504000132 ], [ -123.38569139599997, 48.427998106000054 ], [ -123.385975499999986, 48.42801521100008 ], [ -123.386301084999957, 48.428184694000059 ], [ -123.38650219199998, 48.428174711000118 ], [ -123.38699795899997, 48.427841759000067 ], [ -123.387002447999919, 48.427891438000053 ], [ -123.387130810999977, 48.428016702000029 ], [ -123.387128317999924, 48.428306103000061 ], [ -123.387141706999927, 48.430277815000082 ], [ -123.387142818999934, 48.430436501000038 ], [ -123.385948709999965, 48.430409805000117 ], [ -123.384722569999937, 48.430402047 ], [ -123.381549931, 48.430406588000103 ], [ -123.381234604999946, 48.430374439000055 ], [ -123.380935922999967, 48.4302858900001 ], [ -123.380177386999947, 48.429874827000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1200019527", "BldgCostT": "743683668", "sL_LossRatio": "0.532491282618449", "sL_AssetLoss": "801427.58", "sL_BldgLoss": "426753.2", "sL_StrLoss": "170100.3", "sL_NStrLoss": "256652.9", "sL_ContLoss": "374674.38", "geom_point": "0101000020E6100000A388352AEAD75EC053A570140B384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.378899145999966, 48.442760617000019 ], [ -123.376670937999947, 48.44192505300002 ], [ -123.376648730999975, 48.441916746000025 ], [ -123.376562779999972, 48.44188484900009 ], [ -123.376551031999952, 48.441880358000105 ], [ -123.376244071999963, 48.441762919000077 ], [ -123.375193130999961, 48.441360874000118 ], [ -123.374717767999954, 48.441179017000131 ], [ -123.373522701, 48.440729089000072 ], [ -123.372860395999922, 48.440479107000037 ], [ -123.370616089999928, 48.439577598000049 ], [ -123.370476900999961, 48.439240401000099 ], [ -123.370163014999918, 48.438454406000119 ], [ -123.3698148, 48.437677406000041 ], [ -123.367424684999961, 48.438114007000074 ], [ -123.367361188999922, 48.437266534000059 ], [ -123.367313855999953, 48.438043611000076 ], [ -123.367255042999972, 48.4381305140001 ], [ -123.367034058999934, 48.438293679000012 ], [ -123.366999806999956, 48.438351446000084 ], [ -123.36692559, 48.438351401000034 ], [ -123.366119031999972, 48.436922701000093 ], [ -123.366024225, 48.436754706000023 ], [ -123.36582370099994, 48.436399500000107 ], [ -123.365452929999933, 48.435715801000086 ], [ -123.365028913999964, 48.434970212000074 ], [ -123.364603507999917, 48.434152490000095 ], [ -123.366690103999971, 48.434243202000111 ], [ -123.367267602999931, 48.434293585000013 ], [ -123.368124578999982, 48.434386021000087 ], [ -123.368498830999954, 48.434210499000073 ], [ -123.368609395999925, 48.434143528000092 ], [ -123.368608293999969, 48.434189187000136 ], [ -123.369556605999904, 48.434501088000083 ], [ -123.370563409999988, 48.435379798000014 ], [ -123.371120289999908, 48.435693092000086 ], [ -123.37147232400001, 48.435583501000096 ], [ -123.371672510999986, 48.435285799000106 ], [ -123.372008812999937, 48.435140600000118 ], [ -123.372344211999959, 48.434861392000158 ], [ -123.37283031, 48.434661985000062 ], [ -123.373164598999921, 48.434318802000092 ], [ -123.373637404999968, 48.434200598000103 ], [ -123.37440781599993, 48.43413510700006 ], [ -123.37535138299998, 48.433744802000035 ], [ -123.376432097999938, 48.433750512000131 ], [ -123.377402183999919, 48.434164548000133 ], [ -123.377404861999963, 48.434525945000111 ], [ -123.377412825999954, 48.43560130200008 ], [ -123.377791723999977, 48.43560005900008 ], [ -123.377920503, 48.435697399000027 ], [ -123.37777550899996, 48.4361389090001 ], [ -123.377827967999949, 48.436409628000014 ], [ -123.377824415999925, 48.436409640000129 ], [ -123.377836421999973, 48.438028974000048 ], [ -123.376214, 48.438034289000036 ], [ -123.376215854999941, 48.438285407000073 ], [ -123.375803307999959, 48.438159903000084 ], [ -123.374842895999933, 48.438109991000083 ], [ -123.374668002999925, 48.43815558800005 ], [ -123.37464040399999, 48.438272394000059 ], [ -123.374805499000018, 48.438514494000103 ], [ -123.375604007, 48.43858429900007 ], [ -123.3762011099999, 48.439085604000127 ], [ -123.376609115999926, 48.439246493000084 ], [ -123.376973508999939, 48.439236590000043 ], [ -123.377422611999989, 48.439109915000145 ], [ -123.377718822999967, 48.439108943000086 ], [ -123.377844428999964, 48.439108531000095 ], [ -123.377844162999949, 48.439072608000053 ], [ -123.37784355899997, 48.438991177000034 ], [ -123.378619499999928, 48.438772301000093 ], [ -123.378984363999948, 48.438564991000106 ], [ -123.379402033999966, 48.438563614000074 ], [ -123.379692206999948, 48.439191005000055 ], [ -123.379448307999937, 48.439336286000056 ], [ -123.379469005999923, 48.439387856000117 ], [ -123.379470036999933, 48.439526187000084 ], [ -123.379485376999966, 48.439562939000083 ], [ -123.379450190999989, 48.439578414000017 ], [ -123.379603541, 48.439846025000044 ], [ -123.379743726999976, 48.440181860000081 ], [ -123.379795890999972, 48.440181689000042 ], [ -123.380382200999932, 48.441204808000066 ], [ -123.380698663999965, 48.441098069000056 ], [ -123.380702354000022, 48.441591816000042 ], [ -123.380536488999923, 48.441798614000078 ], [ -123.380319184999962, 48.441799334000066 ], [ -123.380304227999929, 48.442069279000059 ], [ -123.380319436999969, 48.442069229000083 ], [ -123.380226817999954, 48.442184703000052 ], [ -123.379917912999986, 48.442429706000041 ], [ -123.379985677999912, 48.44250089600007 ], [ -123.380418881999958, 48.442472398000092 ], [ -123.38103939, 48.442299994000081 ], [ -123.381414881999959, 48.441813002000124 ], [ -123.381589298999984, 48.44171330400011 ], [ -123.382909422999916, 48.441261462000092 ], [ -123.382903912999936, 48.441272992000087 ], [ -123.382800990999911, 48.441448515000097 ], [ -123.382791333999947, 48.441466122000094 ], [ -123.382719584999904, 48.441596658000073 ], [ -123.381900404999939, 48.443087367000047 ], [ -123.380727669999914, 48.443059261000045 ], [ -123.380245452999972, 48.442980508000083 ], [ -123.379882374999937, 48.442921223000099 ], [ -123.379481049999967, 48.442855668000092 ], [ -123.379239003999942, 48.44281613000004 ], [ -123.37914344799999, 48.442800510000048 ], [ -123.378899145999966, 48.442760617000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "485433711", "BldgCostT": "317776518", "sL_LossRatio": "0.54357923944579", "sL_AssetLoss": "250128.39", "sL_BldgLoss": "135964.6", "sL_StrLoss": "57416.9", "sL_NStrLoss": "78547.7", "sL_ContLoss": "114163.79", "geom_point": "0101000020E6100000BC3BB544B8D75EC04147B41562384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368943398999974, 48.441817612000037 ], [ -123.368697506999936, 48.441384896000052 ], [ -123.368543769999974, 48.441406291000128 ], [ -123.368539091999978, 48.441397832000057 ], [ -123.368373358, 48.441100419000136 ], [ -123.368345200999912, 48.441049930000098 ], [ -123.367268865999975, 48.439118341000025 ], [ -123.367264525999957, 48.439109702000074 ], [ -123.36697959899999, 48.438544814000096 ], [ -123.366985351000011, 48.438441258000061 ], [ -123.36692559, 48.438351401000034 ], [ -123.366999806999956, 48.438351446000084 ], [ -123.367034058999934, 48.438293679000012 ], [ -123.367255042999972, 48.4381305140001 ], [ -123.367313855999953, 48.438043611000076 ], [ -123.367361188999922, 48.437266534000059 ], [ -123.367424684999961, 48.438114007000074 ], [ -123.3698148, 48.437677406000041 ], [ -123.370163014999918, 48.438454406000119 ], [ -123.370476900999961, 48.439240401000099 ], [ -123.370616089999928, 48.439577598000049 ], [ -123.372860395999922, 48.440479107000037 ], [ -123.373522701, 48.440729089000072 ], [ -123.374717767999954, 48.441179017000131 ], [ -123.375193130999961, 48.441360874000118 ], [ -123.376244071999963, 48.441762919000077 ], [ -123.375432402999934, 48.441993898000121 ], [ -123.374262471999955, 48.442145328000024 ], [ -123.373791213999965, 48.442206331000129 ], [ -123.37352638599998, 48.44224059600004 ], [ -123.372731693999981, 48.442333698000027 ], [ -123.372207800999988, 48.442399130000069 ], [ -123.371058407999953, 48.442542723000088 ], [ -123.370563816999947, 48.442604487000068 ], [ -123.369235706999973, 48.441949308000176 ], [ -123.368943398999974, 48.441817612000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "825206928", "BldgCostT": "531278144", "sL_LossRatio": "0.625785495132272", "sL_AssetLoss": "488877.95", "sL_BldgLoss": "305932.73", "sL_StrLoss": "128511.33", "sL_NStrLoss": "177421.4", "sL_ContLoss": "182945.22", "geom_point": "0101000020E61000004EF2448CEED75EC03E324DE0EF384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36929349699993, 48.442729890000074 ], [ -123.36877973899999, 48.441822845000026 ], [ -123.368752390999973, 48.441774542000132 ], [ -123.368543769999974, 48.441406291000128 ], [ -123.368697506999936, 48.441384896000052 ], [ -123.368943398999974, 48.441817612000037 ], [ -123.369235706999973, 48.441949308000176 ], [ -123.370563816999947, 48.442604487000068 ], [ -123.371058407999953, 48.442542723000088 ], [ -123.372207800999988, 48.442399130000069 ], [ -123.372731693999981, 48.442333698000027 ], [ -123.37352638599998, 48.44224059600004 ], [ -123.373791213999965, 48.442206331000129 ], [ -123.374262471999955, 48.442145328000024 ], [ -123.375432402999934, 48.441993898000121 ], [ -123.376244071999963, 48.441762919000077 ], [ -123.376551031999952, 48.441880358000105 ], [ -123.376562779999972, 48.44188484900009 ], [ -123.376648730999975, 48.441916746000025 ], [ -123.375317144999926, 48.443146258000091 ], [ -123.37810278799999, 48.444464192000083 ], [ -123.378140480999946, 48.444563507000048 ], [ -123.378091504999986, 48.444668713000041 ], [ -123.376903305999946, 48.445647399000094 ], [ -123.377583514999984, 48.445966405000085 ], [ -123.378086840999984, 48.446211075000107 ], [ -123.378259431999979, 48.446294942000087 ], [ -123.378399135, 48.446362858000057 ], [ -123.378803297999966, 48.446559306000026 ], [ -123.37962471499999, 48.446959297000049 ], [ -123.376846909999955, 48.447224171000094 ], [ -123.375654083000015, 48.44736200300008 ], [ -123.37246410799996, 48.447730561000064 ], [ -123.372309170999984, 48.447749268000081 ], [ -123.372045576999952, 48.447318897000116 ], [ -123.371699083999886, 48.446757032000114 ], [ -123.371547729999989, 48.446511579000102 ], [ -123.371147905999948, 48.445863253000063 ], [ -123.371100519999942, 48.445786395000027 ], [ -123.370668682999977, 48.445086115000151 ], [ -123.370627983999952, 48.445017489000072 ], [ -123.370260195999947, 48.444397903000066 ], [ -123.369677012999901, 48.443380588000089 ], [ -123.36929848599999, 48.442738355000117 ], [ -123.36929349699993, 48.442729890000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "560704372", "BldgCostT": "381101380", "sL_LossRatio": "0.81888612167053", "sL_AssetLoss": "236723.88", "sL_BldgLoss": "193849.9", "sL_StrLoss": "98032.5", "sL_NStrLoss": "95817.4", "sL_ContLoss": "42873.98", "geom_point": "0101000020E610000003A3279F3DD85EC0F46FB09ADB384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.378803297999966, 48.446559306000026 ], [ -123.378399135, 48.446362858000057 ], [ -123.378259431999979, 48.446294942000087 ], [ -123.378086840999984, 48.446211075000107 ], [ -123.377583514999984, 48.445966405000085 ], [ -123.376903305999946, 48.445647399000094 ], [ -123.378091504999986, 48.444668713000041 ], [ -123.378140480999946, 48.444563507000048 ], [ -123.37810278799999, 48.444464192000083 ], [ -123.375317144999926, 48.443146258000091 ], [ -123.376648730999975, 48.441916746000025 ], [ -123.376670937999947, 48.44192505300002 ], [ -123.378899145999966, 48.442760617000019 ], [ -123.37914344799999, 48.442800510000048 ], [ -123.379239003999942, 48.44281613000004 ], [ -123.379481049999967, 48.442855668000092 ], [ -123.379882374999937, 48.442921223000099 ], [ -123.380245452999972, 48.442980508000083 ], [ -123.380727669999914, 48.443059261000045 ], [ -123.381900404999939, 48.443087367000047 ], [ -123.380432687, 48.445581489000055 ], [ -123.37962471499999, 48.446959297000049 ], [ -123.378803297999966, 48.446559306000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129347645", "BldgCostT": "83931524", "sL_LossRatio": "0.715484561755289", "sL_AssetLoss": "69261.76", "sL_BldgLoss": "49555.72", "sL_StrLoss": "32257.42", "sL_NStrLoss": "17298.3", "sL_ContLoss": "19706.04", "geom_point": "0101000020E6100000A29938036DD85EC08A8F7120FF384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37962471499999, 48.446959297000049 ], [ -123.380432687, 48.445581489000055 ], [ -123.381900404999939, 48.443087367000047 ], [ -123.38261657299995, 48.443096881000066 ], [ -123.383169490999961, 48.443153347000113 ], [ -123.383863391999952, 48.443224191000084 ], [ -123.382047402999959, 48.446037989000118 ], [ -123.382336113999912, 48.446139901000024 ], [ -123.381250511999951, 48.447754300000042 ], [ -123.37962471499999, 48.446959297000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102701667", "BldgCostT": "66356667", "sL_LossRatio": "0.952802289063311", "sL_AssetLoss": "135374.15", "sL_BldgLoss": "128984.8", "sL_StrLoss": "107660", "sL_NStrLoss": "21324.8", "sL_ContLoss": "6389.35", "geom_point": "0101000020E610000043272A9F8ED85EC060FFD89815394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.382047402999959, 48.446037989000118 ], [ -123.383863391999952, 48.443224191000084 ], [ -123.384519766, 48.443295848000069 ], [ -123.385070915999961, 48.443356001000062 ], [ -123.386011672999985, 48.443448044000078 ], [ -123.38622732899999, 48.443469139000115 ], [ -123.386265679999894, 48.443472892000052 ], [ -123.386210014999961, 48.44369880900004 ], [ -123.38590719799997, 48.444098005000079 ], [ -123.385288650999925, 48.444852483000069 ], [ -123.384845285999958, 48.445393315000082 ], [ -123.384244098999957, 48.446126611000068 ], [ -123.385431782999959, 48.446715005000073 ], [ -123.383391388999911, 48.448826196000098 ], [ -123.383052015999965, 48.448655912000085 ], [ -123.382427407999913, 48.448342505 ], [ -123.382127805999986, 48.448195282000071 ], [ -123.381579566999946, 48.447919727000055 ], [ -123.381250511999951, 48.447754300000042 ], [ -123.382336113999912, 48.446139901000024 ], [ -123.382047402999959, 48.446037989000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295967288", "BldgCostT": "194305371", "sL_LossRatio": "0.833756385613128", "sL_AssetLoss": "228163.29", "sL_BldgLoss": "190232.6", "sL_StrLoss": "131688.3", "sL_NStrLoss": "58544.3", "sL_ContLoss": "37930.69", "geom_point": "0101000020E61000000720091CC5D85EC0822C45D107394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.386210014999961, 48.44369880900004 ], [ -123.386265679999894, 48.443472892000052 ], [ -123.386996240999977, 48.443540295000055 ], [ -123.387263411, 48.443564951000027 ], [ -123.387717953999967, 48.443606883000037 ], [ -123.387867807999967, 48.443620688000046 ], [ -123.38915389600001, 48.442378183000116 ], [ -123.39116180399995, 48.443316783000036 ], [ -123.390479887999945, 48.443908704000073 ], [ -123.3892331, 48.445117339000049 ], [ -123.388827010999961, 48.445511 ], [ -123.388503010999955, 48.445825355000061 ], [ -123.388188001999978, 48.446130998000044 ], [ -123.388062490999943, 48.446252405000116 ], [ -123.386854610999961, 48.447422 ], [ -123.384629815999944, 48.449450184000092 ], [ -123.383660578999979, 48.448961798000056 ], [ -123.383391388999911, 48.448826196000098 ], [ -123.385431782999959, 48.446715005000073 ], [ -123.384244098999957, 48.446126611000068 ], [ -123.384845285999958, 48.445393315000082 ], [ -123.385288650999925, 48.444852483000069 ], [ -123.38590719799997, 48.444098005000079 ], [ -123.386210014999961, 48.44369880900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "846882666", "BldgCostT": "580130681", "sL_LossRatio": "0.81206965187195", "sL_AssetLoss": "242480.432", "sL_BldgLoss": "196911", "sL_StrLoss": "94797.8", "sL_NStrLoss": "102113.2", "sL_ContLoss": "45569.432", "geom_point": "0101000020E61000005E190944BAD85EC05D241E3799384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.386265679999894, 48.443472892000052 ], [ -123.38622732899999, 48.443469139000115 ], [ -123.386011672999985, 48.443448044000078 ], [ -123.385070915999961, 48.443356001000062 ], [ -123.384519766, 48.443295848000069 ], [ -123.383863391999952, 48.443224191000084 ], [ -123.383169490999961, 48.443153347000113 ], [ -123.38261657299995, 48.443096881000066 ], [ -123.381900404999939, 48.443087367000047 ], [ -123.382719584999904, 48.441596658000073 ], [ -123.382791333999947, 48.441466122000094 ], [ -123.382800990999911, 48.441448515000097 ], [ -123.382903912999936, 48.441272992000087 ], [ -123.382909422999916, 48.441261462000092 ], [ -123.383077466999964, 48.441203943000033 ], [ -123.383133209999968, 48.441191973000066 ], [ -123.383133155999957, 48.441184881000027 ], [ -123.383262222, 48.441140704000098 ], [ -123.383844205999964, 48.441129294000106 ], [ -123.384156205999957, 48.441344395000058 ], [ -123.384950610999965, 48.440999696000041 ], [ -123.385052787999911, 48.44097390600006 ], [ -123.385159762999976, 48.44097354800008 ], [ -123.385159562999903, 48.44094695399999 ], [ -123.385706485999947, 48.440808904000058 ], [ -123.387546215999947, 48.440678363000124 ], [ -123.38754002599994, 48.440695662000103 ], [ -123.387717880999915, 48.440695063000071 ], [ -123.388403419000014, 48.440782509000073 ], [ -123.388404373999961, 48.440907936000087 ], [ -123.388502238999976, 48.44090156100004 ], [ -123.388517696999912, 48.440962260000056 ], [ -123.388810419999942, 48.440961271000035 ], [ -123.388812075999965, 48.441178159000039 ], [ -123.388822046999948, 48.441231128000034 ], [ -123.389218110999977, 48.441229789000033 ], [ -123.38922017299997, 48.441499677000067 ], [ -123.38933447099997, 48.441499291000056 ], [ -123.389466137999946, 48.441410361000123 ], [ -123.389584725999896, 48.441498444000054 ], [ -123.389611134999882, 48.441498354000068 ], [ -123.389702103, 48.441596490000094 ], [ -123.38993504799997, 48.441751217000032 ], [ -123.390033886999916, 48.441816861000078 ], [ -123.390034004999947, 48.44183215100005 ], [ -123.390308164999936, 48.442035783000108 ], [ -123.390363239999971, 48.442035596000089 ], [ -123.390441608999936, 48.442087644 ], [ -123.390441972999895, 48.442135168000071 ], [ -123.390525437999912, 48.442197162000127 ], [ -123.390692663999971, 48.442304374000116 ], [ -123.390767562999926, 48.442304121000106 ], [ -123.390849335, 48.442358426000105 ], [ -123.390849691999904, 48.442405047000136 ], [ -123.391111424999934, 48.442572847000115 ], [ -123.39117189399991, 48.442572641000019 ], [ -123.391196807999975, 48.442589189000131 ], [ -123.391257101999926, 48.442634146000074 ], [ -123.391257348999915, 48.442666400000043 ], [ -123.391530187999976, 48.442841319000046 ], [ -123.391534926999981, 48.442841303000087 ], [ -123.391573298999944, 48.442869914000056 ], [ -123.391472501999971, 48.442944268000133 ], [ -123.39116180399995, 48.443316783000036 ], [ -123.38915389600001, 48.442378183000116 ], [ -123.387867807999967, 48.443620688000046 ], [ -123.387717953999967, 48.443606883000037 ], [ -123.387263411, 48.443564951000027 ], [ -123.386996240999977, 48.443540295000055 ], [ -123.386265679999894, 48.443472892000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "627895080", "BldgCostT": "400550043", "sL_LossRatio": "0.610043638394608", "sL_AssetLoss": "309211.65", "sL_BldgLoss": "188632.6", "sL_StrLoss": "86572.7", "sL_NStrLoss": "102059.9", "sL_ContLoss": "120579.05", "geom_point": "0101000020E61000006BF3814FB9D75EC0D307C4B1CF394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.371308910000025, 48.447865035000049 ], [ -123.372309170999984, 48.447749268000081 ], [ -123.372634188999896, 48.44826503300002 ], [ -123.37293411899995, 48.44874590600012 ], [ -123.373289, 48.449282299000075 ], [ -123.374230321999931, 48.450806174000085 ], [ -123.374411117999955, 48.451121983000064 ], [ -123.374712393999985, 48.451648311000021 ], [ -123.374718374999986, 48.451658751000068 ], [ -123.37516558599998, 48.452439930000011 ], [ -123.375353600999929, 48.452773722000082 ], [ -123.37501796, 48.452934046000152 ], [ -123.374483674999937, 48.453901033000122 ], [ -123.374246954999975, 48.454103490000051 ], [ -123.374077803999953, 48.454231861000089 ], [ -123.373955607000013, 48.45424506100003 ], [ -123.372850866999954, 48.454810137000038 ], [ -123.372047128999952, 48.455182487000059 ], [ -123.370805790999967, 48.455775715000037 ], [ -123.370849229999934, 48.455844411000058 ], [ -123.370317770999989, 48.456005275000059 ], [ -123.370040469999964, 48.455775655000068 ], [ -123.36961192699999, 48.455420756000116 ], [ -123.366919687999953, 48.45319119400007 ], [ -123.366245419999956, 48.452572003000036 ], [ -123.36635776899999, 48.452519281000043 ], [ -123.366835892999973, 48.452294953000063 ], [ -123.367490311999987, 48.451987899000095 ], [ -123.366587913999922, 48.448412487000041 ], [ -123.367873190999916, 48.448263187000073 ], [ -123.368010431999934, 48.44824761200006 ], [ -123.368134005999934, 48.448233598000087 ], [ -123.369761760999921, 48.448044042000063 ], [ -123.371308910000025, 48.447865035000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "577151478", "BldgCostT": "375434397", "sL_LossRatio": "0.696253257123815", "sL_AssetLoss": "245838.06", "sL_BldgLoss": "171165.55", "sL_StrLoss": "82772.25", "sL_NStrLoss": "88393.3", "sL_ContLoss": "74672.51", "geom_point": "0101000020E6100000C14947F7FBD75EC0FF9E5036823A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37501796, 48.452934046000152 ], [ -123.375353600999929, 48.452773722000082 ], [ -123.3755135, 48.453054559000051 ], [ -123.375835067999958, 48.453633345000107 ], [ -123.37607528, 48.453999992000021 ], [ -123.376377283999929, 48.454347404000053 ], [ -123.376843840999967, 48.45471983500007 ], [ -123.376520689999978, 48.455073696000106 ], [ -123.37661931699995, 48.45535540300007 ], [ -123.377212175999972, 48.455894835000066 ], [ -123.377339313999926, 48.456123663000092 ], [ -123.377396519999976, 48.456224392000109 ], [ -123.377472687999969, 48.456358497000025 ], [ -123.377647644999968, 48.456664792000062 ], [ -123.377738755999957, 48.456824242000074 ], [ -123.377833217999935, 48.45698959900011 ], [ -123.377979602999915, 48.457198805000075 ], [ -123.378284923999928, 48.45748779900007 ], [ -123.378547017999921, 48.457690360000122 ], [ -123.377971990999981, 48.458066210000034 ], [ -123.377991902999966, 48.458087701000082 ], [ -123.378300595999946, 48.458421503000054 ], [ -123.378516899999923, 48.458902988000048 ], [ -123.378655908999946, 48.459303405000099 ], [ -123.378659007999914, 48.459312288000056 ], [ -123.379069605999959, 48.460502803000068 ], [ -123.379203532999966, 48.460862008000056 ], [ -123.378982595999943, 48.460799602000066 ], [ -123.378865936999901, 48.460766632000023 ], [ -123.374755500999967, 48.459605190000111 ], [ -123.374616263999954, 48.459539882000108 ], [ -123.372677207, 48.458630252000091 ], [ -123.371955030999956, 48.458291448000104 ], [ -123.371159194999976, 48.457918089000074 ], [ -123.369402072999975, 48.457175593000066 ], [ -123.369496562999956, 48.457027119000024 ], [ -123.369600337999941, 48.4568639740001 ], [ -123.370153268999971, 48.456147262000101 ], [ -123.370251151999938, 48.456104659000076 ], [ -123.370449417999978, 48.456018381000099 ], [ -123.370849229999934, 48.455844411000058 ], [ -123.370805790999967, 48.455775715000037 ], [ -123.372047128999952, 48.455182487000059 ], [ -123.372850866999954, 48.454810137000038 ], [ -123.373955607000013, 48.45424506100003 ], [ -123.374077803999953, 48.454231861000089 ], [ -123.374246954999975, 48.454103490000051 ], [ -123.374483674999937, 48.453901033000122 ], [ -123.37501796, 48.452934046000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154383481", "BldgCostT": "100336772", "sL_LossRatio": "0.901036840295574", "sL_AssetLoss": "214954.03", "sL_BldgLoss": "193681.5", "sL_StrLoss": "153043.8", "sL_NStrLoss": "40637.7", "sL_ContLoss": "21272.53", "geom_point": "0101000020E6100000B866AF679DD85EC00A65FA880C3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.380185528999988, 48.46437437000003 ], [ -123.379622846999951, 48.462834425000125 ], [ -123.37949123899989, 48.462474148000041 ], [ -123.379438207999954, 48.462329011000087 ], [ -123.37934994799997, 48.462088092000073 ], [ -123.379326691999907, 48.462024523000025 ], [ -123.379096294999925, 48.461395583000069 ], [ -123.379060305999928, 48.46129730400002 ], [ -123.378865936999901, 48.460766632000023 ], [ -123.378982595999943, 48.460799602000066 ], [ -123.379203532999966, 48.460862008000056 ], [ -123.379664734999935, 48.46099231600008 ], [ -123.37974790899996, 48.460980404000104 ], [ -123.380547092999961, 48.460519491000071 ], [ -123.38245761099995, 48.461984290000018 ], [ -123.383447325999967, 48.461473105000017 ], [ -123.384799394999959, 48.460658900000048 ], [ -123.385475811999939, 48.45941489400014 ], [ -123.385886195999902, 48.458660298000062 ], [ -123.386258323, 48.457912892000053 ], [ -123.386376309999946, 48.457707494000047 ], [ -123.386536832999965, 48.457269643000046 ], [ -123.389675247999932, 48.457991747000086 ], [ -123.390356493999974, 48.458149206000066 ], [ -123.390070665999986, 48.458481215000063 ], [ -123.389792395999947, 48.458804415000081 ], [ -123.389226893999975, 48.45946050100013 ], [ -123.388609694999957, 48.460171189000022 ], [ -123.387881504999896, 48.461009908000094 ], [ -123.387140398999918, 48.461861886000065 ], [ -123.386206005999952, 48.462936290000052 ], [ -123.38584250299999, 48.463355592000084 ], [ -123.38608645, 48.463531401000068 ], [ -123.386124525999932, 48.463558839000022 ], [ -123.38645800799999, 48.463799139000095 ], [ -123.383500218999956, 48.464116386000072 ], [ -123.383382590999986, 48.46412899700011 ], [ -123.383286966999947, 48.464124897000069 ], [ -123.383224069999969, 48.464064703000098 ], [ -123.383172802999937, 48.463747790000141 ], [ -123.382667226999942, 48.464219388000039 ], [ -123.381586364999961, 48.464358834000052 ], [ -123.381481305999912, 48.464372405000027 ], [ -123.381344092999939, 48.464412307000067 ], [ -123.381216707999954, 48.464519206000041 ], [ -123.380531321999968, 48.464422946000084 ], [ -123.380185528999988, 48.46437437000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140519418", "BldgCostT": "90046668", "sL_LossRatio": "0.852520959448726", "sL_AssetLoss": "412832.9", "sL_BldgLoss": "351948.7", "sL_StrLoss": "231690.1", "sL_NStrLoss": "120258.6", "sL_ContLoss": "60884.2", "geom_point": "0101000020E610000097F20F32FBD75EC00B361A65A23B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.367538588999977, 48.464331695000062 ], [ -123.36784720199995, 48.463518793000055 ], [ -123.367876670999948, 48.46332153000013 ], [ -123.367944079999987, 48.462870107000057 ], [ -123.368547060999902, 48.463394400000041 ], [ -123.370127196999974, 48.464102804000049 ], [ -123.370422189999928, 48.464106104000095 ], [ -123.370546666999928, 48.464082570000073 ], [ -123.370573064000027, 48.464077574000065 ], [ -123.372953978999959, 48.463627332000016 ], [ -123.37410875799999, 48.463408942000136 ], [ -123.37546039399993, 48.46315330700002 ], [ -123.375545366, 48.463154772000102 ], [ -123.375610157999986, 48.463155882000102 ], [ -123.377852183999906, 48.462925502000132 ], [ -123.379348990999972, 48.462720011000059 ], [ -123.379438207999954, 48.462329011000087 ], [ -123.37949123899989, 48.462474148000041 ], [ -123.379622846999951, 48.462834425000125 ], [ -123.380185528999988, 48.46437437000003 ], [ -123.380236460999953, 48.464513794000069 ], [ -123.380452300999949, 48.465104500000095 ], [ -123.380521457999961, 48.46529633300004 ], [ -123.380536355999936, 48.465337639000147 ], [ -123.380806875999909, 48.466087849000061 ], [ -123.380829073999934, 48.46614941000005 ], [ -123.381039908999952, 48.466733997000105 ], [ -123.381067963999968, 48.466834314000046 ], [ -123.38124897199998, 48.46748077200013 ], [ -123.381306307, 48.467685660000022 ], [ -123.381330711999965, 48.467772805000081 ], [ -123.381346388999987, 48.467831785000072 ], [ -123.381234700999983, 48.467847997000028 ], [ -123.380229489999948, 48.468001418000028 ], [ -123.379864810999919, 48.468057074000093 ], [ -123.37894661199995, 48.468197192000055 ], [ -123.377598506999931, 48.468398286000067 ], [ -123.37749428599993, 48.468449899000042 ], [ -123.377199296999919, 48.468484903000075 ], [ -123.37494291900002, 48.468754827000062 ], [ -123.373245876999988, 48.468957795000065 ], [ -123.371917188999987, 48.469123488000029 ], [ -123.37101970099999, 48.469235410000095 ], [ -123.370888507999936, 48.468608096000075 ], [ -123.370742901999989, 48.468360996000108 ], [ -123.370483161, 48.467910540000098 ], [ -123.370327763999981, 48.467641023000127 ], [ -123.370272402999959, 48.467544982000028 ], [ -123.36966219, 48.467007407000068 ], [ -123.369454994999927, 48.466824895000038 ], [ -123.369379754999969, 48.466770677000085 ], [ -123.368834398999951, 48.466377602000094 ], [ -123.368674011999957, 48.466226594000034 ], [ -123.367925983999953, 48.465563421000091 ], [ -123.367481093999942, 48.465168997000056 ], [ -123.367414186999909, 48.464951744000125 ], [ -123.367412513999952, 48.464946283000081 ], [ -123.367414657000026, 48.464907164000053 ], [ -123.36742050099997, 48.464802197000033 ], [ -123.367466016999927, 48.464620966000062 ], [ -123.367530105, 48.464365545000121 ], [ -123.367538588999977, 48.464331695000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149212416", "BldgCostT": "93411666", "sL_LossRatio": "0.855617832500545", "sL_AssetLoss": "359094.9", "sL_BldgLoss": "307248", "sL_StrLoss": "202019", "sL_NStrLoss": "105229", "sL_ContLoss": "51846.9", "geom_point": "0101000020E6100000DD9CC583D4D75EC0535F4478073B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368188602999908, 48.462285497000039 ], [ -123.368563513999959, 48.461541906000072 ], [ -123.368401087, 48.461546057000085 ], [ -123.367546686999972, 48.461568004000064 ], [ -123.366952854999965, 48.461552726000043 ], [ -123.3655403899999, 48.461516393000068 ], [ -123.365204206999948, 48.461442208000101 ], [ -123.364419995999967, 48.461145798000118 ], [ -123.364294417999943, 48.460736004000083 ], [ -123.366149202999964, 48.46059820800015 ], [ -123.368886600999986, 48.460298309 ], [ -123.36875750099999, 48.459950589000123 ], [ -123.368703386999968, 48.459588489000026 ], [ -123.368712388999981, 48.459110814000113 ], [ -123.368726986999974, 48.458848694000096 ], [ -123.368819689999967, 48.458227007000083 ], [ -123.368935385999919, 48.457966591000066 ], [ -123.369004871999948, 48.457846452000112 ], [ -123.369316417999926, 48.457307807000113 ], [ -123.369402072999975, 48.457175593000066 ], [ -123.371159194999976, 48.457918089000074 ], [ -123.371955030999956, 48.458291448000104 ], [ -123.372677207, 48.458630252000091 ], [ -123.374616263999954, 48.459539882000108 ], [ -123.374755500999967, 48.459605190000111 ], [ -123.378865936999901, 48.460766632000023 ], [ -123.379060305999928, 48.46129730400002 ], [ -123.379096294999925, 48.461395583000069 ], [ -123.379326691999907, 48.462024523000025 ], [ -123.37934994799997, 48.462088092000073 ], [ -123.379438207999954, 48.462329011000087 ], [ -123.379348990999972, 48.462720011000059 ], [ -123.377852183999906, 48.462925502000132 ], [ -123.375610157999986, 48.463155882000102 ], [ -123.375545366, 48.463154772000102 ], [ -123.37546039399993, 48.46315330700002 ], [ -123.37410875799999, 48.463408942000136 ], [ -123.372953978999959, 48.463627332000016 ], [ -123.370573064000027, 48.464077574000065 ], [ -123.370546666999928, 48.464082570000073 ], [ -123.370422189999928, 48.464106104000095 ], [ -123.370127196999974, 48.464102804000049 ], [ -123.368547060999902, 48.463394400000041 ], [ -123.367944079999987, 48.462870107000057 ], [ -123.368017, 48.462699693000076 ], [ -123.368114505999969, 48.462598396000047 ], [ -123.368439646999903, 48.462417916000078 ], [ -123.368188602999908, 48.462285497000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2517769028", "BldgCostT": "1534890492", "sL_LossRatio": "0.581785998941457", "sL_AssetLoss": "1662745.308", "sL_BldgLoss": "967361.94", "sL_StrLoss": "447498.74", "sL_NStrLoss": "519863.2", "sL_ContLoss": "695383.368", "geom_point": "0101000020E6100000F8DA31B773D75EC02E44BB8E61364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.364871987999962, 48.426281800000048 ], [ -123.362066805999973, 48.425968506000082 ], [ -123.361838001999928, 48.426853804000068 ], [ -123.361624908999929, 48.427723198000052 ], [ -123.360456810999906, 48.42761930500015 ], [ -123.358988499999938, 48.42750331000007 ], [ -123.358977011999968, 48.427418198000076 ], [ -123.35892871199998, 48.427196098000138 ], [ -123.359065219999962, 48.426563702000102 ], [ -123.359276904999916, 48.425671590000064 ], [ -123.359509106999937, 48.424824314000077 ], [ -123.362265104999963, 48.425122986000112 ], [ -123.36248519399993, 48.424322196000112 ], [ -123.365333896999985, 48.424652017000028 ], [ -123.365514705999914, 48.423948591000034 ], [ -123.365556783999935, 48.423798097000066 ], [ -123.36570831100002, 48.423259004000101 ], [ -123.365779397999916, 48.423024397000106 ], [ -123.366007207999985, 48.422204893000043 ], [ -123.366328990999989, 48.420228908000055 ], [ -123.368012511999979, 48.420547703000125 ], [ -123.368528337999948, 48.420588220000049 ], [ -123.368935298999943, 48.420620211000035 ], [ -123.36901547399998, 48.42062553100002 ], [ -123.370775276999922, 48.420742654000023 ], [ -123.370924601999917, 48.420752594000056 ], [ -123.370859350999979, 48.421245315000178 ], [ -123.370853087999961, 48.42124450299999 ], [ -123.370512417999947, 48.420958295000098 ], [ -123.369498283999931, 48.420879891000034 ], [ -123.36947341299998, 48.420988189000063 ], [ -123.369188601999923, 48.420998088000026 ], [ -123.36881871699994, 48.422151796000023 ], [ -123.368766002, 48.422420886000054 ], [ -123.368901907999927, 48.422573300000089 ], [ -123.369267910999952, 48.422644498000089 ], [ -123.369416706999971, 48.422500703000054 ], [ -123.371298582999955, 48.423097405000121 ], [ -123.371205110999952, 48.423205694000067 ], [ -123.37039351699994, 48.422946500000059 ], [ -123.370082783, 48.423110294000047 ], [ -123.370476396999919, 48.42326981300004 ], [ -123.370330502999963, 48.423694207000047 ], [ -123.37094091299997, 48.423989003000038 ], [ -123.371009207, 48.424095798000103 ], [ -123.370809016999885, 48.424349304 ], [ -123.370309682999959, 48.424476103000046 ], [ -123.370379796999885, 48.424773707000035 ], [ -123.37054069, 48.424799394000082 ], [ -123.370680586, 48.425347694000031 ], [ -123.370884193999956, 48.425410413000108 ], [ -123.371009503999957, 48.426012796000087 ], [ -123.371171587999967, 48.426084008000018 ], [ -123.371299290999943, 48.426803191000069 ], [ -123.371164490999917, 48.426857398000074 ], [ -123.371274796999913, 48.427145015000093 ], [ -123.371198072999974, 48.428141303000089 ], [ -123.371068885999975, 48.428156587000053 ], [ -123.370388697999942, 48.427965757000059 ], [ -123.370045897999958, 48.4278695940001 ], [ -123.369559415, 48.42776188800012 ], [ -123.369408877999916, 48.4277447670001 ], [ -123.367259889999943, 48.427500090000095 ], [ -123.36603460799995, 48.427356883000115 ], [ -123.366267215999954, 48.42642749100002 ], [ -123.364871987999962, 48.426281800000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "763266285", "BldgCostT": "466545391", "sL_LossRatio": "0.719196652684618", "sL_AssetLoss": "494721.713", "sL_BldgLoss": "355802.2", "sL_StrLoss": "248969.5", "sL_NStrLoss": "106832.7", "sL_ContLoss": "138919.513", "geom_point": "0101000020E61000003F78E5613ED75EC041F34AA313364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.359509106999937, 48.424824314000077 ], [ -123.35971760399994, 48.424014197000083 ], [ -123.359846390000016, 48.423518799000064 ], [ -123.359918806999971, 48.423189597000025 ], [ -123.360060313999924, 48.422588005000115 ], [ -123.36012682399999, 48.422362401000086 ], [ -123.360353295, 48.421736709000058 ], [ -123.360393531999975, 48.421601951000142 ], [ -123.36049939900002, 48.421247090000115 ], [ -123.361203595999925, 48.420932788000052 ], [ -123.36149564499999, 48.420888992000087 ], [ -123.361574988999962, 48.420877108000056 ], [ -123.361760390999962, 48.420898946000079 ], [ -123.362225104999965, 48.420953704000105 ], [ -123.362580799999989, 48.420866106000076 ], [ -123.363082920999943, 48.421126598000107 ], [ -123.363227714999965, 48.420926395000023 ], [ -123.36384749199999, 48.420527910000096 ], [ -123.364153172000016, 48.420241111000038 ], [ -123.364353592999933, 48.420053102000104 ], [ -123.364545116999977, 48.41987338900001 ], [ -123.36460474299993, 48.419808396000079 ], [ -123.364841868999974, 48.419550025000078 ], [ -123.365202855999954, 48.419156570000084 ], [ -123.365517077, 48.418819899000034 ], [ -123.365551785999969, 48.418710662000066 ], [ -123.365616884999909, 48.418505801000144 ], [ -123.365742484999899, 48.418890394000073 ], [ -123.36606248599999, 48.419368487000099 ], [ -123.366172207999966, 48.419532406000037 ], [ -123.366328990999989, 48.420228908000055 ], [ -123.366007207999985, 48.422204893000043 ], [ -123.365779397999916, 48.423024397000106 ], [ -123.36570831100002, 48.423259004000101 ], [ -123.365556783999935, 48.423798097000066 ], [ -123.365514705999914, 48.423948591000034 ], [ -123.365333896999985, 48.424652017000028 ], [ -123.36248519399993, 48.424322196000112 ], [ -123.362265104999963, 48.425122986000112 ], [ -123.359509106999937, 48.424824314000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216476250", "BldgCostT": "149550000", "sL_LossRatio": "0.862215652592637", "sL_AssetLoss": "518344.8", "sL_BldgLoss": "446925", "sL_StrLoss": "259198", "sL_NStrLoss": "187727", "sL_ContLoss": "71419.8", "geom_point": "0101000020E61000005D9FFEF502DA5EC0FCEE98B23A384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.402195708999955, 48.438014102000118 ], [ -123.402452313999945, 48.437272801000098 ], [ -123.402568359999947, 48.436934119000099 ], [ -123.403233827999955, 48.437287114000071 ], [ -123.403461345999972, 48.437278389000042 ], [ -123.405277614999946, 48.437792672000121 ], [ -123.406720252999961, 48.43804988100004 ], [ -123.408934085999974, 48.43807572800003 ], [ -123.410549192999909, 48.437896710000118 ], [ -123.413724492999975, 48.437550302000069 ], [ -123.413824912999985, 48.43796599500012 ], [ -123.414198919999961, 48.438859855000011 ], [ -123.413957227999973, 48.438936786000077 ], [ -123.41393329, 48.438944414000076 ], [ -123.41343967499995, 48.43915950000013 ], [ -123.41315019399994, 48.439320213000094 ], [ -123.412998401999957, 48.439456304000053 ], [ -123.41295106099993, 48.439515585000045 ], [ -123.411937376999958, 48.439570547000102 ], [ -123.41105483699999, 48.439631893000062 ], [ -123.405079698999927, 48.44004708600005 ], [ -123.405099785999965, 48.442126370000054 ], [ -123.402136979999952, 48.441857009000024 ], [ -123.401070294999897, 48.441373616000099 ], [ -123.401426656999931, 48.440309621000019 ], [ -123.401716200999942, 48.439445191000047 ], [ -123.401923988999968, 48.438806396000061 ], [ -123.402155491999963, 48.438131200000036 ], [ -123.402195708999955, 48.438014102000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139600667", "BldgCostT": "86281667", "sL_LossRatio": "0.911368853352744", "sL_AssetLoss": "160132.42", "sL_BldgLoss": "145939.7", "sL_StrLoss": "114974.4", "sL_NStrLoss": "30965.3", "sL_ContLoss": "14192.72", "geom_point": "0101000020E610000048FC0FB887DA5EC08148AF9B8C384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405830897999934, 48.443459804000035 ], [ -123.405479657999962, 48.443293390000136 ], [ -123.405269845, 48.443379276000016 ], [ -123.404118812999954, 48.442807290000083 ], [ -123.403447610999976, 48.442323790000096 ], [ -123.40327908799999, 48.442263766000067 ], [ -123.402136979999952, 48.441857009000024 ], [ -123.405099785999965, 48.442126370000054 ], [ -123.405079698999927, 48.44004708600005 ], [ -123.41105483699999, 48.439631893000062 ], [ -123.411937376999958, 48.439570547000102 ], [ -123.41295106099993, 48.439515585000045 ], [ -123.412998401999957, 48.439456304000053 ], [ -123.41315019399994, 48.439320213000094 ], [ -123.41343967499995, 48.43915950000013 ], [ -123.41393329, 48.438944414000076 ], [ -123.413957227999973, 48.438936786000077 ], [ -123.414198919999961, 48.438859855000011 ], [ -123.413824912999985, 48.43796599500012 ], [ -123.413724492999975, 48.437550302000069 ], [ -123.415894006, 48.437239514000133 ], [ -123.416502978999958, 48.43718193100009 ], [ -123.417435891, 48.437173009000013 ], [ -123.418540208999985, 48.437103517000025 ], [ -123.419118042999983, 48.437278733000014 ], [ -123.419319376999937, 48.437339800000061 ], [ -123.41917239899999, 48.4382272020001 ], [ -123.420335643, 48.438540136000029 ], [ -123.420831019, 48.438673396000098 ], [ -123.421375285999957, 48.439112307000073 ], [ -123.422214890999939, 48.439678305000037 ], [ -123.420658098999965, 48.440853291000103 ], [ -123.420590890999932, 48.441170001000096 ], [ -123.420704716, 48.441557803000059 ], [ -123.421356819999971, 48.441603500000099 ], [ -123.422118882999925, 48.441538113 ], [ -123.423886494999977, 48.440381795000128 ], [ -123.424940374999935, 48.439616591000068 ], [ -123.425816576, 48.440259510000075 ], [ -123.425925314000011, 48.440339257000062 ], [ -123.426296591999971, 48.440611687000107 ], [ -123.426539179999935, 48.44079169900003 ], [ -123.426982686999978, 48.441126126000057 ], [ -123.421985772999975, 48.443131023000099 ], [ -123.421631995999959, 48.443272941000032 ], [ -123.415974947999956, 48.4452483520001 ], [ -123.415353929000034, 48.445771101000034 ], [ -123.414453559999941, 48.445837862000097 ], [ -123.412355054999935, 48.446591321000064 ], [ -123.41198324199999, 48.446416020000086 ], [ -123.411094906999963, 48.445997204 ], [ -123.410167776999941, 48.44555069700008 ], [ -123.409398493999959, 48.445179304000092 ], [ -123.408447811999935, 48.444719613000117 ], [ -123.407675951999963, 48.444346348000082 ], [ -123.407132848999979, 48.444085056000048 ], [ -123.406501647999917, 48.443781024000046 ], [ -123.405830897999934, 48.443459804000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66493635", "BldgCostT": "42832078", "sL_LossRatio": "0.871280020580914", "sL_AssetLoss": "159293.22", "sL_BldgLoss": "138789", "sL_StrLoss": "99668", "sL_NStrLoss": "39121", "sL_ContLoss": "20504.22", "geom_point": "0101000020E6100000AA67201A06DB5EC0C5AE9BEF33384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.419118042999983, 48.437278733000014 ], [ -123.418540208999985, 48.437103517000025 ], [ -123.420670124999987, 48.437372625000108 ], [ -123.424382665999957, 48.437568451000097 ], [ -123.424410444999921, 48.437573139000058 ], [ -123.425307990999954, 48.437709204000029 ], [ -123.425375189999912, 48.437726481000034 ], [ -123.425060583999979, 48.437906095000059 ], [ -123.423941290999906, 48.438311694000049 ], [ -123.423502401999912, 48.43851480900004 ], [ -123.424248656999964, 48.439086603000071 ], [ -123.42448808799999, 48.439270026000081 ], [ -123.424940374999935, 48.439616591000068 ], [ -123.423886494999977, 48.440381795000128 ], [ -123.422118882999925, 48.441538113 ], [ -123.421356819999971, 48.441603500000099 ], [ -123.420704716, 48.441557803000059 ], [ -123.420590890999932, 48.441170001000096 ], [ -123.420658098999965, 48.440853291000103 ], [ -123.422214890999939, 48.439678305000037 ], [ -123.421375285999957, 48.439112307000073 ], [ -123.420831019, 48.438673396000098 ], [ -123.420335643, 48.438540136000029 ], [ -123.41917239899999, 48.4382272020001 ], [ -123.419319376999937, 48.437339800000061 ], [ -123.419118042999983, 48.437278733000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66371165", "BldgCostT": "42936665", "sL_LossRatio": "0.840126708358506", "sL_AssetLoss": "153107.5", "sL_BldgLoss": "128629.7", "sL_StrLoss": "88185", "sL_NStrLoss": "40444.7", "sL_ContLoss": "24477.8", "geom_point": "0101000020E610000061E974074EDB5EC0C166BAB63B384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.424940374999935, 48.439616591000068 ], [ -123.42448808799999, 48.439270026000081 ], [ -123.424248656999964, 48.439086603000071 ], [ -123.423502401999912, 48.43851480900004 ], [ -123.423941290999906, 48.438311694000049 ], [ -123.425060583999979, 48.437906095000059 ], [ -123.425375189999912, 48.437726481000034 ], [ -123.426309881999941, 48.437940932000068 ], [ -123.427419557999926, 48.438320085000051 ], [ -123.428146522999953, 48.438652733 ], [ -123.428737395999946, 48.439066562000107 ], [ -123.429178878, 48.439477970000063 ], [ -123.42938049199995, 48.439755798000107 ], [ -123.429515360999972, 48.440026067000069 ], [ -123.428897642999942, 48.440305642000062 ], [ -123.426982686999978, 48.441126126000057 ], [ -123.426539179999935, 48.44079169900003 ], [ -123.426296591999971, 48.440611687000107 ], [ -123.425925314000011, 48.440339257000062 ], [ -123.425816576, 48.440259510000075 ], [ -123.424940374999935, 48.439616591000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193213303", "BldgCostT": "129858746", "sL_LossRatio": "0.84161358833743", "sL_AssetLoss": "224446.59", "sL_BldgLoss": "188897.3", "sL_StrLoss": "134873", "sL_NStrLoss": "54024.3", "sL_ContLoss": "35549.29", "geom_point": "0101000020E6100000CA9000C19ED95EC0726CF3B59D394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.397953597999987, 48.449987510000071 ], [ -123.398740297999922, 48.449306202000052 ], [ -123.399514393999965, 48.448632592000131 ], [ -123.400002796999971, 48.448195511000094 ], [ -123.400010541999919, 48.44818806300006 ], [ -123.400327702999988, 48.447883388000079 ], [ -123.400420609999969, 48.447716990000131 ], [ -123.400716435999968, 48.447722597000109 ], [ -123.40074821099995, 48.447723202000084 ], [ -123.402317318999977, 48.448123975000051 ], [ -123.402474801999929, 48.448164197000082 ], [ -123.402819100999977, 48.448285301000041 ], [ -123.403768575999948, 48.448691920000037 ], [ -123.404036390999977, 48.448806616000049 ], [ -123.404241481999961, 48.448877685000106 ], [ -123.404652402999929, 48.44902008300005 ], [ -123.403445181, 48.450073410000066 ], [ -123.4030459, 48.450421784000078 ], [ -123.402403912999944, 48.45009219300006 ], [ -123.401622603999968, 48.4507746130001 ], [ -123.400828799999886, 48.451463088 ], [ -123.400020492999957, 48.452168191000105 ], [ -123.399978284, 48.452204772000037 ], [ -123.399199763999917, 48.452879441000071 ], [ -123.396714093999933, 48.451609995000091 ], [ -123.396329152999911, 48.451458014000153 ], [ -123.396347329999969, 48.451441187000079 ], [ -123.396668182999974, 48.451144509000073 ], [ -123.396667604999905, 48.451105689000045 ], [ -123.397128524999985, 48.45070400200008 ], [ -123.397953597999987, 48.449987510000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171213000", "BldgCostT": "110040000", "sL_LossRatio": "0.922200382231335", "sL_AssetLoss": "195802.89", "sL_BldgLoss": "180569.5", "sL_StrLoss": "142921.1", "sL_NStrLoss": "37648.4", "sL_ContLoss": "15233.39", "geom_point": "0101000020E6100000330EDC1ED0D95EC00E594015F5394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.401622603999968, 48.4507746130001 ], [ -123.402403912999944, 48.45009219300006 ], [ -123.4030459, 48.450421784000078 ], [ -123.404155592000023, 48.450987290000128 ], [ -123.405041813999944, 48.451441900000106 ], [ -123.405316553999967, 48.451582441000077 ], [ -123.405887245999935, 48.451874342000103 ], [ -123.406125088999914, 48.45199601000008 ], [ -123.407366103999934, 48.452630505000087 ], [ -123.407017856, 48.452966367000023 ], [ -123.406632006, 48.453338495000033 ], [ -123.406446482999982, 48.453544092000094 ], [ -123.40590459799995, 48.454046601000044 ], [ -123.405349886999929, 48.454587240000066 ], [ -123.405164920999951, 48.454767505000071 ], [ -123.405124498999939, 48.454805689000139 ], [ -123.40452936699991, 48.455377856000069 ], [ -123.404379018999961, 48.455522399000102 ], [ -123.39999113199994, 48.453283310000124 ], [ -123.399199763999917, 48.452879441000071 ], [ -123.399978284, 48.452204772000037 ], [ -123.400020492999957, 48.452168191000105 ], [ -123.400828799999886, 48.451463088 ], [ -123.401622603999968, 48.4507746130001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "335166418", "BldgCostT": "215276668", "sL_LossRatio": "0.829007236491112", "sL_AssetLoss": "1201853.2", "sL_BldgLoss": "996345", "sL_StrLoss": "656448", "sL_NStrLoss": "339897", "sL_ContLoss": "205508.2", "geom_point": "0101000020E6100000E80A4B764BDA5EC0292AC166293C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40651907699997, 48.47314192300005 ], [ -123.406044196, 48.472534094000054 ], [ -123.407100469999975, 48.472757539000099 ], [ -123.407379301999981, 48.472816499000047 ], [ -123.407464679999975, 48.472611635000113 ], [ -123.407593918999908, 48.472301497000011 ], [ -123.407618565999911, 48.471933392000025 ], [ -123.407631594999927, 48.471738811000073 ], [ -123.407741409, 48.47126270100005 ], [ -123.407729582999977, 48.470814199000081 ], [ -123.407800967999918, 48.470667803000069 ], [ -123.407805597000021, 48.470658296000117 ], [ -123.40780821499996, 48.470655373000056 ], [ -123.407821940999938, 48.470639911000042 ], [ -123.407963992999953, 48.470479987000019 ], [ -123.408473112999943, 48.470135397 ], [ -123.408804109999949, 48.469937001000062 ], [ -123.409083101999954, 48.469724691000089 ], [ -123.409309107999931, 48.469396497000041 ], [ -123.409315839999977, 48.469383056 ], [ -123.40974120099996, 48.46853420000015 ], [ -123.409086583999951, 48.468390177000067 ], [ -123.40808742899999, 48.46817035300009 ], [ -123.407647676999915, 48.46807359400006 ], [ -123.408160695999953, 48.467139406000072 ], [ -123.408539065999932, 48.46627391500008 ], [ -123.408756395999944, 48.465832908000088 ], [ -123.408815400999956, 48.465717111000068 ], [ -123.40933402099995, 48.464631403000077 ], [ -123.40977360899997, 48.463707111000119 ], [ -123.410103579999927, 48.464017207000069 ], [ -123.410260599999901, 48.464060700000061 ], [ -123.410665202999965, 48.464068807000046 ], [ -123.411067283999955, 48.464123706000095 ], [ -123.41146590299995, 48.464316485000062 ], [ -123.411633703999925, 48.464432387000031 ], [ -123.411866605999947, 48.464075604000122 ], [ -123.411982707999982, 48.463607799000052 ], [ -123.412424389999899, 48.463414118000067 ], [ -123.413871795999938, 48.464322990000042 ], [ -123.414038085999934, 48.464407981000086 ], [ -123.414177864999914, 48.464479248000032 ], [ -123.414399884999952, 48.464592866000046 ], [ -123.414927187999965, 48.464876203000109 ], [ -123.415252519999939, 48.465051006000124 ], [ -123.415685450999945, 48.465284342000103 ], [ -123.415835221999913, 48.465333937000047 ], [ -123.415791672999987, 48.46558717700001 ], [ -123.415672531999945, 48.46588904900009 ], [ -123.41538451699995, 48.466217467000057 ], [ -123.414962160999949, 48.466632444000055 ], [ -123.414278520999943, 48.467304140000095 ], [ -123.41405995799991, 48.467596392000097 ], [ -123.413992230999909, 48.46779763100006 ], [ -123.414016797999977, 48.468086707000076 ], [ -123.41408421899996, 48.468880160000076 ], [ -123.41406567599995, 48.468996916000037 ], [ -123.413992333999914, 48.469103329000085 ], [ -123.413855220999935, 48.469191118000055 ], [ -123.413281373999951, 48.469558492000012 ], [ -123.412881833, 48.469991009000097 ], [ -123.412635385999977, 48.470257803000024 ], [ -123.412031156999959, 48.471188042000065 ], [ -123.411937747999957, 48.471331875000018 ], [ -123.41191795499995, 48.471429807000099 ], [ -123.41177097299996, 48.472157401000082 ], [ -123.411841839999951, 48.472490954000136 ], [ -123.411910332999952, 48.472578259000045 ], [ -123.412747001999918, 48.473644737000058 ], [ -123.412765405999949, 48.474097865000068 ], [ -123.412594813999959, 48.474574294000085 ], [ -123.41260600599999, 48.47469090500006 ], [ -123.412664566999965, 48.474780706000033 ], [ -123.412864246999931, 48.474956907000028 ], [ -123.41207675599999, 48.475648241000094 ], [ -123.41132017399994, 48.476589192000077 ], [ -123.411076603999973, 48.477065685000056 ], [ -123.410959989999938, 48.477960951000107 ], [ -123.410890173999945, 48.478076469000015 ], [ -123.410742618999947, 48.478316682000084 ], [ -123.410685512000015, 48.4784096120001 ], [ -123.410458408999929, 48.47811732400011 ], [ -123.409673312000038, 48.477113466000155 ], [ -123.409531058999931, 48.476934707000034 ], [ -123.409301862999939, 48.476646560000049 ], [ -123.409256291999924, 48.476589311000019 ], [ -123.409142715999963, 48.476447464000024 ], [ -123.40892084599993, 48.476170471000025 ], [ -123.408784811999965, 48.476000584000111 ], [ -123.40837820199998, 48.475485692000092 ], [ -123.408042075999987, 48.475068415000116 ], [ -123.407733586999939, 48.47468542100011 ], [ -123.407446182999962, 48.474328605000053 ], [ -123.407202395999903, 48.474016559000042 ], [ -123.40651907699997, 48.47314192300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282999000", "BldgCostT": "183450000", "sL_LossRatio": "0.880942855168958", "sL_AssetLoss": "232751.76", "sL_BldgLoss": "205041", "sL_StrLoss": "165391.4", "sL_NStrLoss": "39649.6", "sL_ContLoss": "27710.76", "geom_point": "0101000020E61000003FA8403DA8DA5EC0F501EC69283C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.414967633999964, 48.474232742000027 ], [ -123.414539336999937, 48.473717325000095 ], [ -123.414231757999971, 48.473784666 ], [ -123.413947575999927, 48.473794873000067 ], [ -123.413828806999902, 48.473780873000067 ], [ -123.41370602799995, 48.473766419000071 ], [ -123.413125155999978, 48.473644950000022 ], [ -123.412747001999918, 48.473644737000058 ], [ -123.411910332999952, 48.472578259000045 ], [ -123.411841839999951, 48.472490954000136 ], [ -123.41177097299996, 48.472157401000082 ], [ -123.41191795499995, 48.471429807000099 ], [ -123.411937747999957, 48.471331875000018 ], [ -123.412031156999959, 48.471188042000065 ], [ -123.412635385999977, 48.470257803000024 ], [ -123.412881833, 48.469991009000097 ], [ -123.413281373999951, 48.469558492000012 ], [ -123.413855220999935, 48.469191118000055 ], [ -123.413992333999914, 48.469103329000085 ], [ -123.41406567599995, 48.468996916000037 ], [ -123.41408421899996, 48.468880160000076 ], [ -123.414016797999977, 48.468086707000076 ], [ -123.413992230999909, 48.46779763100006 ], [ -123.41405995799991, 48.467596392000097 ], [ -123.414278520999943, 48.467304140000095 ], [ -123.414962160999949, 48.466632444000055 ], [ -123.41538451699995, 48.466217467000057 ], [ -123.415672531999945, 48.46588904900009 ], [ -123.415791672999987, 48.46558717700001 ], [ -123.415835221999913, 48.465333937000047 ], [ -123.416186389999964, 48.465407406000061 ], [ -123.417345011999913, 48.465554700000048 ], [ -123.41860437099993, 48.465567071000109 ], [ -123.418708098, 48.465568104000113 ], [ -123.419429094999956, 48.465619914000051 ], [ -123.420287995, 48.465767096000057 ], [ -123.418934546999949, 48.469413756000037 ], [ -123.419291437999945, 48.469500559000075 ], [ -123.419891021999931, 48.469633610000116 ], [ -123.420015733999946, 48.469183942 ], [ -123.420514602999972, 48.469209997000078 ], [ -123.42294232099999, 48.469341205 ], [ -123.422542715999967, 48.46993289200001 ], [ -123.421494893, 48.470223290000057 ], [ -123.42048450499999, 48.470503290000067 ], [ -123.420011118, 48.470714505000061 ], [ -123.419675317999975, 48.470928096000073 ], [ -123.419344276999965, 48.471228399000061 ], [ -123.419223609999946, 48.471402553000082 ], [ -123.419124301999958, 48.471545902000059 ], [ -123.418995404999947, 48.471790160000104 ], [ -123.418818244999926, 48.472125956000085 ], [ -123.418710056999885, 48.472331128000107 ], [ -123.41846346600002, 48.472790917000026 ], [ -123.418185872999956, 48.473308566000128 ], [ -123.418120535999932, 48.473430417000088 ], [ -123.417882841999955, 48.473702362000047 ], [ -123.417557660999989, 48.473918966000078 ], [ -123.417518928999968, 48.473934625000098 ], [ -123.41720409, 48.474061848000112 ], [ -123.416930925000017, 48.474118304000051 ], [ -123.416455507999956, 48.474167125000086 ], [ -123.416306558999977, 48.474173695000033 ], [ -123.415699434999937, 48.474200484000029 ], [ -123.415537864999948, 48.474207599000096 ], [ -123.414967633999964, 48.474232742000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130421085", "BldgCostT": "85633335", "sL_LossRatio": "0.866852584334194", "sL_AssetLoss": "260337.46", "sL_BldgLoss": "225674.2", "sL_StrLoss": "169233.4", "sL_NStrLoss": "56440.8", "sL_ContLoss": "34663.26", "geom_point": "0101000020E6100000D59F2E39CBDA5EC0519ABCB7D83C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.412594813999959, 48.474574294000085 ], [ -123.412765405999949, 48.474097865000068 ], [ -123.412747001999918, 48.473644737000058 ], [ -123.413125155999978, 48.473644950000022 ], [ -123.41370602799995, 48.473766419000071 ], [ -123.413828806999902, 48.473780873000067 ], [ -123.413947575999927, 48.473794873000067 ], [ -123.414231757999971, 48.473784666 ], [ -123.414539336999937, 48.473717325000095 ], [ -123.414967633999964, 48.474232742000027 ], [ -123.415537864999948, 48.474207599000096 ], [ -123.415699434999937, 48.474200484000029 ], [ -123.416306558999977, 48.474173695000033 ], [ -123.416455507999956, 48.474167125000086 ], [ -123.416930925000017, 48.474118304000051 ], [ -123.41720409, 48.474061848000112 ], [ -123.417518928999968, 48.473934625000098 ], [ -123.417557660999989, 48.473918966000078 ], [ -123.417882841999955, 48.473702362000047 ], [ -123.418120535999932, 48.473430417000088 ], [ -123.418185872999956, 48.473308566000128 ], [ -123.41846346600002, 48.472790917000026 ], [ -123.418710056999885, 48.472331128000107 ], [ -123.418818244999926, 48.472125956000085 ], [ -123.418995404999947, 48.471790160000104 ], [ -123.419124301999958, 48.471545902000059 ], [ -123.419223609999946, 48.471402553000082 ], [ -123.419344276999965, 48.471228399000061 ], [ -123.419675317999975, 48.470928096000073 ], [ -123.420011118, 48.470714505000061 ], [ -123.42048450499999, 48.470503290000067 ], [ -123.421494893, 48.470223290000057 ], [ -123.422542715999967, 48.46993289200001 ], [ -123.422726096999938, 48.470384688000145 ], [ -123.422697785999958, 48.470682845000084 ], [ -123.42268788899996, 48.470786819000118 ], [ -123.42245879699999, 48.471978319000101 ], [ -123.422391119999958, 48.472330356000022 ], [ -123.422266609999923, 48.472977842000034 ], [ -123.422207885999953, 48.473283303000052 ], [ -123.422148925999977, 48.473589927000027 ], [ -123.422095271999964, 48.473868867000128 ], [ -123.422005005999921, 48.474338281000016 ], [ -123.421887532999932, 48.474949182000046 ], [ -123.42184877899993, 48.475150600000049 ], [ -123.421694216000034, 48.475994712000045 ], [ -123.421620154999985, 48.476398990000057 ], [ -123.421592175999976, 48.476551864000037 ], [ -123.421293530999947, 48.47818238000005 ], [ -123.421206289999972, 48.478658663000026 ], [ -123.421031088999953, 48.479614989000041 ], [ -123.41968379799998, 48.479502794000126 ], [ -123.418357687999958, 48.479396604000037 ], [ -123.41690244099999, 48.479282691000066 ], [ -123.415099688999987, 48.479111650000021 ], [ -123.41498355, 48.479100634000062 ], [ -123.415721897999987, 48.477528906000067 ], [ -123.414401806999962, 48.477217202000062 ], [ -123.414807695999926, 48.476463310000042 ], [ -123.415212160999914, 48.475613835000082 ], [ -123.414647585999916, 48.475483935000049 ], [ -123.413941002999962, 48.475321336000057 ], [ -123.413794207999899, 48.475288904000116 ], [ -123.413091897999934, 48.475115754000058 ], [ -123.412864246999931, 48.474956907000028 ], [ -123.412664566999965, 48.474780706000033 ], [ -123.41260600599999, 48.47469090500006 ], [ -123.412594813999959, 48.474574294000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215296719", "BldgCostT": "134040412", "sL_LossRatio": "0.80160465198036", "sL_AssetLoss": "768017", "sL_BldgLoss": "615646", "sL_StrLoss": "374841", "sL_NStrLoss": "240805", "sL_ContLoss": "152371", "geom_point": "0101000020E61000001EF6C5EF37DB5EC0CB3C90278F3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.418934546999949, 48.469413756000037 ], [ -123.420287995, 48.465767096000057 ], [ -123.42102126899999, 48.464453433000067 ], [ -123.421110212999963, 48.46411159400008 ], [ -123.42115581799996, 48.464018152000058 ], [ -123.421300026999972, 48.463722572000137 ], [ -123.421328867999947, 48.463594144000105 ], [ -123.421765913999977, 48.463588107000099 ], [ -123.421794391999953, 48.463587710000112 ], [ -123.423795117999973, 48.463391194000053 ], [ -123.424119508, 48.463398294000079 ], [ -123.42436281499999, 48.463496597000137 ], [ -123.425027407999934, 48.463520786000068 ], [ -123.425707807999942, 48.462962097000087 ], [ -123.425907525999904, 48.462961359000047 ], [ -123.425906281999914, 48.462812531000075 ], [ -123.42620544499999, 48.462690362000089 ], [ -123.426311068999922, 48.462689970000078 ], [ -123.426310712000017, 48.462647372000092 ], [ -123.427275914999925, 48.46225319600007 ], [ -123.427380683999971, 48.462146213000032 ], [ -123.42740149199993, 48.462146136000072 ], [ -123.427523305999955, 48.462070837000127 ], [ -123.427522721999964, 48.462001174000065 ], [ -123.427744504999964, 48.461774700000078 ], [ -123.428054714, 48.461729102000128 ], [ -123.427951899999982, 48.46060400600004 ], [ -123.427841900999965, 48.460505706000056 ], [ -123.427723620999984, 48.460536817000097 ], [ -123.427712571999976, 48.460525612000062 ], [ -123.42751033699993, 48.460526363000028 ], [ -123.42750957799997, 48.460436237000145 ], [ -123.427910724999919, 48.460136102000035 ], [ -123.428185097999943, 48.459908410000018 ], [ -123.4287930079999, 48.460025910000077 ], [ -123.42881937599995, 48.460376199000059 ], [ -123.428832205999939, 48.460546251000032 ], [ -123.428870514, 48.461060003000107 ], [ -123.428881378, 48.461205720000052 ], [ -123.428930704999942, 48.461366538000078 ], [ -123.429014509999959, 48.461488499000026 ], [ -123.429177812999939, 48.461588945000067 ], [ -123.429934147, 48.46179680400008 ], [ -123.430106424999963, 48.461844134000089 ], [ -123.430626021999913, 48.461973026000095 ], [ -123.431293618, 48.462334592000069 ], [ -123.431743266999931, 48.462548355000109 ], [ -123.431835054999937, 48.462592012000059 ], [ -123.431660194999921, 48.462918791000064 ], [ -123.431345491999934, 48.463435296000036 ], [ -123.431320682999953, 48.463476011000104 ], [ -123.431128222999931, 48.463803904000066 ], [ -123.431088501999909, 48.463871594000103 ], [ -123.431034380999947, 48.463966074000091 ], [ -123.430985613999937, 48.464051248000089 ], [ -123.430890837000021, 48.46421932300013 ], [ -123.43076739299994, 48.464438189000141 ], [ -123.430430206999944, 48.465052204000102 ], [ -123.430410429999981, 48.465075623000068 ], [ -123.430366762999981, 48.465127268000103 ], [ -123.430220558999977, 48.465300358000015 ], [ -123.430106896999973, 48.465434906 ], [ -123.430038461, 48.465496839000096 ], [ -123.429442307, 48.466036410000072 ], [ -123.428824570999936, 48.466475165000091 ], [ -123.428751182999989, 48.46652730400006 ], [ -123.427576670999954, 48.467066931000062 ], [ -123.427460969999984, 48.467083949000099 ], [ -123.427170934999964, 48.467198863000071 ], [ -123.42664476399996, 48.467407386000055 ], [ -123.426260220999922, 48.467559757000075 ], [ -123.425570028999942, 48.467834258000117 ], [ -123.425171744999915, 48.467993989000057 ], [ -123.424350985999979, 48.468323115000061 ], [ -123.423956207999979, 48.468529013000101 ], [ -123.423784740999935, 48.468215212000089 ], [ -123.423547334999952, 48.467780594000082 ], [ -123.423264647999986, 48.467937832000132 ], [ -123.42294232099999, 48.469341205 ], [ -123.420514602999972, 48.469209997000078 ], [ -123.420015733999946, 48.469183942 ], [ -123.419891021999931, 48.469633610000116 ], [ -123.419291437999945, 48.469500559000075 ], [ -123.418934546999949, 48.469413756000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178912917", "BldgCostT": "114656667", "sL_LossRatio": "0.796736995044326", "sL_AssetLoss": "731767.2", "sL_BldgLoss": "583026", "sL_StrLoss": "368685", "sL_NStrLoss": "214341", "sL_ContLoss": "148741.2", "geom_point": "0101000020E6100000D9E1D848CCDB5EC026FD29FA683B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.427859411000014, 48.470725338000086 ], [ -123.426840496999972, 48.468758109000049 ], [ -123.424613333000011, 48.469792446000071 ], [ -123.424480788999958, 48.469559007000079 ], [ -123.423956207999979, 48.468529013000101 ], [ -123.424350985999979, 48.468323115000061 ], [ -123.425171744999915, 48.467993989000057 ], [ -123.425570028999942, 48.467834258000117 ], [ -123.426260220999922, 48.467559757000075 ], [ -123.42664476399996, 48.467407386000055 ], [ -123.427170934999964, 48.467198863000071 ], [ -123.427460969999984, 48.467083949000099 ], [ -123.427576670999954, 48.467066931000062 ], [ -123.428751182999989, 48.46652730400006 ], [ -123.428824570999936, 48.466475165000091 ], [ -123.429442307, 48.466036410000072 ], [ -123.430038461, 48.465496839000096 ], [ -123.430106896999973, 48.465434906 ], [ -123.430220558999977, 48.465300358000015 ], [ -123.430366762999981, 48.465127268000103 ], [ -123.430410429999981, 48.465075623000068 ], [ -123.430430206999944, 48.465052204000102 ], [ -123.43076739299994, 48.464438189000141 ], [ -123.430890837000021, 48.46421932300013 ], [ -123.430985613999937, 48.464051248000089 ], [ -123.431034380999947, 48.463966074000091 ], [ -123.431088501999909, 48.463871594000103 ], [ -123.431128222999931, 48.463803904000066 ], [ -123.431320682999953, 48.463476011000104 ], [ -123.431345491999934, 48.463435296000036 ], [ -123.431660194999921, 48.462918791000064 ], [ -123.431835054999937, 48.462592012000059 ], [ -123.431960753999974, 48.462357082000054 ], [ -123.432056335999945, 48.462337765000065 ], [ -123.432113225999927, 48.462285031000071 ], [ -123.432110027999897, 48.4622191220001 ], [ -123.432058719999944, 48.462170100000051 ], [ -123.432404912999971, 48.461464305000071 ], [ -123.432404154999958, 48.461403874000048 ], [ -123.432431655999963, 48.461298133000057 ], [ -123.432586111, 48.460705177000136 ], [ -123.432613763999925, 48.460599088000045 ], [ -123.432625850999955, 48.460552604000092 ], [ -123.432734258999972, 48.460372211000085 ], [ -123.43302033599997, 48.460077011000102 ], [ -123.433403369999965, 48.459737326000067 ], [ -123.43364470099999, 48.459519526000079 ], [ -123.43382485099994, 48.459359796000108 ], [ -123.434398712999922, 48.458886704000086 ], [ -123.434528435999979, 48.458826249000033 ], [ -123.434937548999955, 48.458635568000027 ], [ -123.43566428299999, 48.458330337000127 ], [ -123.436004753999939, 48.458191198000087 ], [ -123.436087809999961, 48.458157258000043 ], [ -123.43625799299997, 48.458087707000089 ], [ -123.43632357499996, 48.458123566000047 ], [ -123.436410176999971, 48.458119343000092 ], [ -123.436498888999921, 48.458251341000086 ], [ -123.437189503999946, 48.458437579000091 ], [ -123.437484664999914, 48.458557639000169 ], [ -123.437914044999943, 48.45873227700006 ], [ -123.437943806999911, 48.458744388000063 ], [ -123.439285281999972, 48.45908906800009 ], [ -123.440159407999928, 48.4593136330001 ], [ -123.440210224999987, 48.459326671000035 ], [ -123.440396594, 48.459408183000086 ], [ -123.440456846999979, 48.459434530000067 ], [ -123.440648260000017, 48.459589745000045 ], [ -123.440698643999951, 48.459680416000012 ], [ -123.440759015999902, 48.459789005000161 ], [ -123.440788785, 48.460062054000041 ], [ -123.44120376799999, 48.460101767000019 ], [ -123.441922107, 48.460376211000018 ], [ -123.441538043999984, 48.460806862000091 ], [ -123.441393102999896, 48.46096938600008 ], [ -123.44042610799994, 48.461946896000022 ], [ -123.440119701999905, 48.462367902000068 ], [ -123.440338159999953, 48.462606166000107 ], [ -123.44062241, 48.462782765000036 ], [ -123.440600596999928, 48.462826342000071 ], [ -123.440605010999974, 48.463006295000056 ], [ -123.440654103999961, 48.463271688000091 ], [ -123.440706532999926, 48.463392269000074 ], [ -123.44073217299993, 48.463451207000091 ], [ -123.440894498999953, 48.4636444940001 ], [ -123.441111032999984, 48.463785741000081 ], [ -123.441622267999961, 48.464119246000095 ], [ -123.441868516999989, 48.464359632000054 ], [ -123.442093985000014, 48.464809640000077 ], [ -123.440418964999935, 48.465080889000092 ], [ -123.440340305999896, 48.465093650000036 ], [ -123.43971001099996, 48.46519570700012 ], [ -123.439392405999968, 48.465274592000107 ], [ -123.438995001999928, 48.465431815000073 ], [ -123.438688316, 48.465609285000028 ], [ -123.438459049999921, 48.465778667000116 ], [ -123.43780783399994, 48.466457244000033 ], [ -123.437801295, 48.466463535000116 ], [ -123.437186782999945, 48.466122009000124 ], [ -123.435623442999969, 48.466397913000058 ], [ -123.433675572, 48.467679236000073 ], [ -123.43165667, 48.468739559000035 ], [ -123.430453920999923, 48.469364233000093 ], [ -123.427859411000014, 48.470725338000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "549021020", "BldgCostT": "356966755", "sL_LossRatio": "0.782805949567094", "sL_AssetLoss": "1594193.3", "sL_BldgLoss": "1247944", "sL_StrLoss": "682297", "sL_NStrLoss": "565647", "sL_ContLoss": "346249.3", "geom_point": "0101000020E610000001ED48D48FDB5EC03B34434F6F3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.42881937599995, 48.460376199000059 ], [ -123.4287930079999, 48.460025910000077 ], [ -123.428185097999943, 48.459908410000018 ], [ -123.427910724999919, 48.460136102000035 ], [ -123.42750957799997, 48.460436237000145 ], [ -123.42750859399996, 48.460318737000065 ], [ -123.427429638, 48.460238661000091 ], [ -123.427307767999963, 48.459987326000075 ], [ -123.427100025999934, 48.4599880970001 ], [ -123.42709776199996, 48.459718211000023 ], [ -123.426837833999983, 48.459719175000053 ], [ -123.426753188999953, 48.459601405000072 ], [ -123.426812605999928, 48.458709788000107 ], [ -123.427066092999937, 48.45836801500014 ], [ -123.427050905999977, 48.458107383000019 ], [ -123.427066054999912, 48.45809895900009 ], [ -123.427084177999973, 48.458098893000098 ], [ -123.427084093999923, 48.458088929000084 ], [ -123.427554647999983, 48.457827251000076 ], [ -123.428079703999941, 48.457825299000092 ], [ -123.428672991999989, 48.458028991000099 ], [ -123.428895007, 48.458667087000066 ], [ -123.429743808999973, 48.459841996000115 ], [ -123.429815788, 48.460336192000057 ], [ -123.430842218999913, 48.460233698000074 ], [ -123.430869492999975, 48.460179588000088 ], [ -123.430243208999926, 48.459740883000052 ], [ -123.430079104999919, 48.459463196000044 ], [ -123.429642204999965, 48.45914128900008 ], [ -123.428818596999946, 48.457633107000049 ], [ -123.429087785999926, 48.457352490000069 ], [ -123.429179707999964, 48.456949846000064 ], [ -123.429217181999903, 48.456785701000101 ], [ -123.429352293999955, 48.456613397000126 ], [ -123.429344131999969, 48.456471114000038 ], [ -123.429505095999957, 48.456470513000049 ], [ -123.429500541999985, 48.455930741000074 ], [ -123.429712103999947, 48.455929950000012 ], [ -123.42985979099997, 48.456072197 ], [ -123.430336792999981, 48.456339907000071 ], [ -123.432394799999884, 48.456584897000013 ], [ -123.432584584999972, 48.456602001000093 ], [ -123.432610008999944, 48.456466685000123 ], [ -123.432825006, 48.456367004000086 ], [ -123.431955300999931, 48.45591118500014 ], [ -123.431528253999929, 48.455803149000083 ], [ -123.431526982999955, 48.455653265000052 ], [ -123.431121239999982, 48.455654786000053 ], [ -123.431118954999988, 48.455384899000151 ], [ -123.430713213000018, 48.45538641900005 ], [ -123.430710929999975, 48.455116532000098 ], [ -123.430233996999945, 48.455118316000068 ], [ -123.430067508999926, 48.454838807000094 ], [ -123.430180521999972, 48.454289840000101 ], [ -123.430197103999959, 48.454209287000026 ], [ -123.430106727999927, 48.454039211000122 ], [ -123.430215101999977, 48.454038807000074 ], [ -123.430296068999908, 48.454038504000025 ], [ -123.430293788999961, 48.453768617000023 ], [ -123.430203753999976, 48.453768954000061 ], [ -123.429888059999939, 48.45377013300012 ], [ -123.429885781999957, 48.453500247000058 ], [ -123.429831961999952, 48.453500448000078 ], [ -123.429850292999944, 48.453156810000095 ], [ -123.429686392999955, 48.453139714000066 ], [ -123.429008573, 48.453773415000057 ], [ -123.428841353999985, 48.453774039000074 ], [ -123.428730338999955, 48.453863261000038 ], [ -123.42867173, 48.453876297000086 ], [ -123.428671794999971, 48.453883857000065 ], [ -123.428116037999956, 48.454046634000093 ], [ -123.427902343999975, 48.454047428000109 ], [ -123.42786176099996, 48.454056456000046 ], [ -123.42786230199998, 48.454120950000124 ], [ -123.427653197999945, 48.45418219400009 ], [ -123.42812019099992, 48.455025409000086 ], [ -123.428287252999951, 48.45517777200007 ], [ -123.428330137999964, 48.455384061000068 ], [ -123.428279036999953, 48.455427823000043 ], [ -123.428279742999933, 48.455511812000118 ], [ -123.428219685999963, 48.455619301000112 ], [ -123.42807138799995, 48.455637805000087 ], [ -123.427799814999972, 48.455441192000066 ], [ -123.427420319999939, 48.455451201000102 ], [ -123.42728244599999, 48.455669103000027 ], [ -123.427266135999972, 48.455669163000081 ], [ -123.427065681999977, 48.455893727000067 ], [ -123.427066658999976, 48.456010138000124 ], [ -123.426940897999941, 48.456208889000074 ], [ -123.426937704999958, 48.456210171000059 ], [ -123.426774988999938, 48.456210775000031 ], [ -123.426663322999971, 48.456299403000067 ], [ -123.426663498999943, 48.456320343000101 ], [ -123.426259699999932, 48.456482579000102 ], [ -123.426146085999989, 48.456483001000016 ], [ -123.426008538999952, 48.456522161000038 ], [ -123.425910138999953, 48.45659336100011 ], [ -123.425698237999981, 48.456859861000076 ], [ -123.425489437999886, 48.457006061000101 ], [ -123.425105936999927, 48.457138262000072 ], [ -123.424864938999974, 48.457364361000067 ], [ -123.424652537999961, 48.457650961000127 ], [ -123.424598838999884, 48.457867161000074 ], [ -123.424600395999946, 48.457935170000013 ], [ -123.424587993999978, 48.457963498000062 ], [ -123.424583904999949, 48.459149899000145 ], [ -123.424541742999963, 48.459187879000091 ], [ -123.424476420999895, 48.459188120000078 ], [ -123.424468037999958, 48.459222361000066 ], [ -123.424256355999916, 48.459403641000065 ], [ -123.424031094999975, 48.459404788000029 ], [ -123.423885117999959, 48.45949504500004 ], [ -123.423711737999952, 48.459542961000132 ], [ -123.423656137999956, 48.459590561000063 ], [ -123.423579638999939, 48.459754261000064 ], [ -123.423667015999953, 48.459935840000099 ], [ -123.423634406999966, 48.460314891000067 ], [ -123.423556499999933, 48.46051516100006 ], [ -123.423453657999971, 48.460679362000128 ], [ -123.423454474, 48.460777426000064 ], [ -123.423441296, 48.460811301000028 ], [ -123.423354501999938, 48.460811620000079 ], [ -123.423106938, 48.461029361000044 ], [ -123.422976476999921, 48.4610403020001 ], [ -123.422785781999906, 48.460947193000067 ], [ -123.422223639999928, 48.460940150000077 ], [ -123.42221848399997, 48.460939995999986 ], [ -123.421973994999988, 48.460833310000112 ], [ -123.421946403, 48.460707998000025 ], [ -123.421702413999952, 48.460618195000045 ], [ -123.421701983999952, 48.460570033000039 ], [ -123.421828003999948, 48.460381226000017 ], [ -123.42182652299995, 48.460202641000095 ], [ -123.421986167999975, 48.460006962000094 ], [ -123.422078025999951, 48.46000662400008 ], [ -123.422139338999941, 48.459914762000082 ], [ -123.422229522999942, 48.459865794000045 ], [ -123.422228447999913, 48.459736178000128 ], [ -123.422469869999972, 48.459735292000126 ], [ -123.422494237999942, 48.459722061000086 ], [ -123.422503654999957, 48.459718404000036 ], [ -123.422709919999974, 48.4597067 ], [ -123.423046206999928, 48.45954301000009 ], [ -123.42358227599999, 48.459037394000106 ], [ -123.423553601999956, 48.458766787000087 ], [ -123.423375588999988, 48.4586158050001 ], [ -123.423079194999929, 48.458615808000054 ], [ -123.422904719, 48.458674809000122 ], [ -123.422813037999958, 48.458565660000041 ], [ -123.422924337999987, 48.458221761000125 ], [ -123.423026238999938, 48.458077083000077 ], [ -123.423024302999977, 48.457843992000114 ], [ -123.423640744999943, 48.457841725000051 ], [ -123.42371923799999, 48.457809162000096 ], [ -123.424081438999963, 48.457564362000028 ], [ -123.424337137999942, 48.456756461000083 ], [ -123.424821039000022, 48.45647286100008 ], [ -123.425187537999946, 48.45629626100002 ], [ -123.425318238, 48.455896362000011 ], [ -123.425339815999948, 48.455743681000101 ], [ -123.425415190999985, 48.455583164000167 ], [ -123.425439872999931, 48.455561499000055 ], [ -123.425439619999935, 48.455531142000012 ], [ -123.425461097999943, 48.455485403000097 ], [ -123.42556508899996, 48.455405570000089 ], [ -123.42561774699999, 48.455405376000037 ], [ -123.425842672999977, 48.455207953000127 ], [ -123.425842541999955, 48.455192570000115 ], [ -123.426119693999965, 48.454979802000075 ], [ -123.426238421999983, 48.454736203000138 ], [ -123.426182221999966, 48.454600902 ], [ -123.425680519999958, 48.45422499900009 ], [ -123.425026793999919, 48.453921595000089 ], [ -123.425020290999925, 48.453904915000038 ], [ -123.42502019899996, 48.453893925000045 ], [ -123.425014058, 48.453888930000133 ], [ -123.424890182999917, 48.453571199000045 ], [ -123.424609665, 48.453319265000111 ], [ -123.424609086999965, 48.453249941000074 ], [ -123.424532787999965, 48.45325022300009 ], [ -123.424262304999914, 48.453007298000074 ], [ -123.424132758999946, 48.452715876000106 ], [ -123.423919111999965, 48.452235299000044 ], [ -123.423557470999967, 48.451814111000026 ], [ -123.423713998999972, 48.451721796000051 ], [ -123.424467227999983, 48.451275736000049 ], [ -123.424750533999983, 48.451031946000107 ], [ -123.425955237, 48.451889040000069 ], [ -123.426170839999912, 48.452044868000023 ], [ -123.42634919899993, 48.452155682000068 ], [ -123.42663309799994, 48.45233198600004 ], [ -123.427112286999915, 48.452480706000117 ], [ -123.428542664999938, 48.452606031000052 ], [ -123.42875012599994, 48.452624204000045 ], [ -123.429450060999955, 48.452674437000042 ], [ -123.429984578999921, 48.452712810000051 ], [ -123.430508512, 48.45271038500006 ], [ -123.430687017999958, 48.452709565000106 ], [ -123.430738329999954, 48.452709335000087 ], [ -123.430803953999927, 48.452709025000082 ], [ -123.430900680999969, 48.452708590000043 ], [ -123.431767005999973, 48.452704594000053 ], [ -123.432386175999937, 48.452644646000053 ], [ -123.433635801999912, 48.452523591000052 ], [ -123.434001975999976, 48.452517094000058 ], [ -123.434190424999926, 48.452538227000069 ], [ -123.434289113999952, 48.452549299000069 ], [ -123.434605404999942, 48.45264170500009 ], [ -123.435035674999952, 48.452797287000038 ], [ -123.435675040999968, 48.453067678000117 ], [ -123.435924568999937, 48.453173200000045 ], [ -123.436166702999969, 48.453275611 ], [ -123.437054503999946, 48.453608209 ], [ -123.437617001999953, 48.453790387000012 ], [ -123.437433082999974, 48.454020391000014 ], [ -123.436803199999986, 48.454557006000059 ], [ -123.435729607, 48.455733077000012 ], [ -123.436665520999938, 48.456149805000088 ], [ -123.43828458199999, 48.457240395000035 ], [ -123.436920047999976, 48.457680818000057 ], [ -123.436713641999987, 48.457830305000101 ], [ -123.436632585, 48.457889040000076 ], [ -123.436456274999955, 48.458016753000074 ], [ -123.436463932999956, 48.458074671000119 ], [ -123.436410176999971, 48.458119343000092 ], [ -123.43632357499996, 48.458123566000047 ], [ -123.43625799299997, 48.458087707000089 ], [ -123.436087809999961, 48.458157258000043 ], [ -123.436004753999939, 48.458191198000087 ], [ -123.43566428299999, 48.458330337000127 ], [ -123.434937548999955, 48.458635568000027 ], [ -123.434528435999979, 48.458826249000033 ], [ -123.434398712999922, 48.458886704000086 ], [ -123.43382485099994, 48.459359796000108 ], [ -123.43364470099999, 48.459519526000079 ], [ -123.433403369999965, 48.459737326000067 ], [ -123.43302033599997, 48.460077011000102 ], [ -123.432734258999972, 48.460372211000085 ], [ -123.432625850999955, 48.460552604000092 ], [ -123.432613763999925, 48.460599088000045 ], [ -123.432586111, 48.460705177000136 ], [ -123.432431655999963, 48.461298133000057 ], [ -123.432404154999958, 48.461403874000048 ], [ -123.432404912999971, 48.461464305000071 ], [ -123.432058719999944, 48.462170100000051 ], [ -123.432110027999897, 48.4622191220001 ], [ -123.432113225999927, 48.462285031000071 ], [ -123.432056335999945, 48.462337765000065 ], [ -123.431960753999974, 48.462357082000054 ], [ -123.431835054999937, 48.462592012000059 ], [ -123.431743266999931, 48.462548355000109 ], [ -123.431293618, 48.462334592000069 ], [ -123.430626021999913, 48.461973026000095 ], [ -123.430106424999963, 48.461844134000089 ], [ -123.429934147, 48.46179680400008 ], [ -123.429177812999939, 48.461588945000067 ], [ -123.429014509999959, 48.461488499000026 ], [ -123.428930704999942, 48.461366538000078 ], [ -123.428881378, 48.461205720000052 ], [ -123.428870514, 48.461060003000107 ], [ -123.428832205999939, 48.460546251000032 ], [ -123.42881937599995, 48.460376199000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42299479", "BldgCostT": "24844858", "sL_LossRatio": "0.76584193480706", "sL_AssetLoss": "126780.6", "sL_BldgLoss": "97093.9", "sL_StrLoss": "60522", "sL_NStrLoss": "36571.9", "sL_ContLoss": "29686.7", "geom_point": "0101000020E6100000E3736A3E59DB5EC0CEDB09DDC2394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.427112286999915, 48.452480706000117 ], [ -123.42663309799994, 48.45233198600004 ], [ -123.42634919899993, 48.452155682000068 ], [ -123.426170839999912, 48.452044868000023 ], [ -123.425955237, 48.451889040000069 ], [ -123.424750533999983, 48.451031946000107 ], [ -123.425279378999946, 48.450368489 ], [ -123.425510723999977, 48.450086438 ], [ -123.425818605999922, 48.449712480000045 ], [ -123.426134422999894, 48.449713847000034 ], [ -123.427157256999948, 48.449919043000079 ], [ -123.427457682999901, 48.449980439000065 ], [ -123.427854140999941, 48.450062206000027 ], [ -123.428125762999983, 48.450156276000094 ], [ -123.428269106999949, 48.450227887000089 ], [ -123.428378069999937, 48.450282347000019 ], [ -123.428615623, 48.45045673500006 ], [ -123.428822612999909, 48.450671868000022 ], [ -123.428970089999936, 48.450938757000117 ], [ -123.42905112699998, 48.451185987000017 ], [ -123.429073913999943, 48.451263205000039 ], [ -123.42922075199999, 48.451666246000087 ], [ -123.429239033999949, 48.451975088000047 ], [ -123.429084498999913, 48.452384306000027 ], [ -123.429589793999966, 48.452450697000117 ], [ -123.429953919999889, 48.452457694000067 ], [ -123.430256791999966, 48.452349691000087 ], [ -123.430371327999964, 48.452215405000061 ], [ -123.430493998999935, 48.45219929900005 ], [ -123.430555, 48.452301764000062 ], [ -123.430594160999973, 48.452401571000095 ], [ -123.430649336999949, 48.452557242000054 ], [ -123.430686642999945, 48.452707542000027 ], [ -123.430687017999958, 48.452709565000106 ], [ -123.430508512, 48.45271038500006 ], [ -123.429984578999921, 48.452712810000051 ], [ -123.429450060999955, 48.452674437000042 ], [ -123.42875012599994, 48.452624204000045 ], [ -123.428542664999938, 48.452606031000052 ], [ -123.427112286999915, 48.452480706000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176783186", "BldgCostT": "106122854", "sL_LossRatio": "0.719303354919511", "sL_AssetLoss": "838854.7", "sL_BldgLoss": "603391", "sL_StrLoss": "319984", "sL_NStrLoss": "283407", "sL_ContLoss": "235463.7", "geom_point": "0101000020E6100000C6B4E48E0ADC5EC0E87B265E123A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.436075181999954, 48.450432858000056 ], [ -123.436626467999972, 48.45039840600009 ], [ -123.43725184499999, 48.450465839000067 ], [ -123.437808707999963, 48.450652450000035 ], [ -123.438284289999942, 48.45089388400001 ], [ -123.438904431, 48.451457150000053 ], [ -123.440360495, 48.45231470000008 ], [ -123.44007260399999, 48.452819985000133 ], [ -123.440652722999971, 48.453046825000115 ], [ -123.441731681999912, 48.453468698000094 ], [ -123.441961502999945, 48.453611402000071 ], [ -123.441639218999967, 48.453980995000094 ], [ -123.441249100999968, 48.454428300000068 ], [ -123.440254711999955, 48.45551338600005 ], [ -123.440472297999918, 48.455664587000086 ], [ -123.44061510899995, 48.455763796000042 ], [ -123.441051514000023, 48.456008808000078 ], [ -123.440279321999981, 48.456679945000118 ], [ -123.439964107999927, 48.456816598000024 ], [ -123.439475477999935, 48.456939153000079 ], [ -123.438899656999965, 48.457084805000086 ], [ -123.43828458199999, 48.457240395000035 ], [ -123.436665520999938, 48.456149805000088 ], [ -123.435729607, 48.455733077000012 ], [ -123.436803199999986, 48.454557006000059 ], [ -123.437433082999974, 48.454020391000014 ], [ -123.437617001999953, 48.453790387000012 ], [ -123.437054503999946, 48.453608209 ], [ -123.436166702999969, 48.453275611 ], [ -123.435924568999937, 48.453173200000045 ], [ -123.435675040999968, 48.453067678000117 ], [ -123.435035674999952, 48.452797287000038 ], [ -123.434605404999942, 48.45264170500009 ], [ -123.434703300999942, 48.45245468300007 ], [ -123.434749358999952, 48.45190397600004 ], [ -123.434623824999974, 48.451555556000088 ], [ -123.434651234999961, 48.451348820000106 ], [ -123.434783031999984, 48.451159031000046 ], [ -123.434889447999936, 48.451036756000065 ], [ -123.435248069999929, 48.450624723000033 ], [ -123.43525045299999, 48.450624096000091 ], [ -123.435426007999922, 48.450577765000041 ], [ -123.43543470699997, 48.450575477000072 ], [ -123.43576436499994, 48.450488442000065 ], [ -123.436075181999954, 48.450432858000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70133917", "BldgCostT": "44451667", "sL_LossRatio": "0.850365985360586", "sL_AssetLoss": "212508.5", "sL_BldgLoss": "180710", "sL_StrLoss": "118860", "sL_NStrLoss": "61850", "sL_ContLoss": "31798.5", "geom_point": "0101000020E61000004D4453D133DC5EC09BF25B53A43A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.440279321999981, 48.456679945000118 ], [ -123.441051514000023, 48.456008808000078 ], [ -123.442406738999978, 48.456787917000028 ], [ -123.442934293999897, 48.457091209000033 ], [ -123.443203403999959, 48.457281698000024 ], [ -123.443390001999902, 48.457526001000069 ], [ -123.443580602999972, 48.457922010000082 ], [ -123.443898879999935, 48.458401308000063 ], [ -123.44357150699993, 48.458589096000047 ], [ -123.44288318699995, 48.459282992000091 ], [ -123.442353564999934, 48.459885442 ], [ -123.442256267999952, 48.459996104000098 ], [ -123.442174535999925, 48.460089059000126 ], [ -123.44215688099996, 48.460109154000079 ], [ -123.441922107, 48.460376211000018 ], [ -123.44120376799999, 48.460101767000019 ], [ -123.440788785, 48.460062054000041 ], [ -123.440759015999902, 48.459789005000161 ], [ -123.440698643999951, 48.459680416000012 ], [ -123.440648260000017, 48.459589745000045 ], [ -123.440456846999979, 48.459434530000067 ], [ -123.440396594, 48.459408183000086 ], [ -123.440210224999987, 48.459326671000035 ], [ -123.440159407999928, 48.4593136330001 ], [ -123.439285281999972, 48.45908906800009 ], [ -123.437943806999911, 48.458744388000063 ], [ -123.437914044999943, 48.45873227700006 ], [ -123.437484664999914, 48.458557639000169 ], [ -123.437189503999946, 48.458437579000091 ], [ -123.436498888999921, 48.458251341000086 ], [ -123.436410176999971, 48.458119343000092 ], [ -123.436463932999956, 48.458074671000119 ], [ -123.436456274999955, 48.458016753000074 ], [ -123.436632585, 48.457889040000076 ], [ -123.436713641999987, 48.457830305000101 ], [ -123.436920047999976, 48.457680818000057 ], [ -123.43828458199999, 48.457240395000035 ], [ -123.438899656999965, 48.457084805000086 ], [ -123.439475477999935, 48.456939153000079 ], [ -123.439964107999927, 48.456816598000024 ], [ -123.440279321999981, 48.456679945000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3798917", "BldgCostT": "2146667", "sL_LossRatio": "0.606476779063723", "sL_AssetLoss": "41940.6", "sL_BldgLoss": "25436", "sL_StrLoss": "10529", "sL_NStrLoss": "14907", "sL_ContLoss": "16504.6", "geom_point": "0101000020E6100000A2A5C03C83DC5EC066902F5FE63A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.442093985000014, 48.464809640000077 ], [ -123.441868516999989, 48.464359632000054 ], [ -123.441622267999961, 48.464119246000095 ], [ -123.441111032999984, 48.463785741000081 ], [ -123.440894498999953, 48.4636444940001 ], [ -123.44073217299993, 48.463451207000091 ], [ -123.440706532999926, 48.463392269000074 ], [ -123.440654103999961, 48.463271688000091 ], [ -123.440605010999974, 48.463006295000056 ], [ -123.440600596999928, 48.462826342000071 ], [ -123.44062241, 48.462782765000036 ], [ -123.440338159999953, 48.462606166000107 ], [ -123.440119701999905, 48.462367902000068 ], [ -123.44042610799994, 48.461946896000022 ], [ -123.441393102999896, 48.46096938600008 ], [ -123.441538043999984, 48.460806862000091 ], [ -123.441922107, 48.460376211000018 ], [ -123.44215688099996, 48.460109154000079 ], [ -123.442174535999925, 48.460089059000126 ], [ -123.442256267999952, 48.459996104000098 ], [ -123.442353564999934, 48.459885442 ], [ -123.44288318699995, 48.459282992000091 ], [ -123.44357150699993, 48.458589096000047 ], [ -123.443898879999935, 48.458401308000063 ], [ -123.443580602999972, 48.457922010000082 ], [ -123.443390001999902, 48.457526001000069 ], [ -123.443203403999959, 48.457281698000024 ], [ -123.442934293999897, 48.457091209000033 ], [ -123.442406738999978, 48.456787917000028 ], [ -123.441051514000023, 48.456008808000078 ], [ -123.44061510899995, 48.455763796000042 ], [ -123.440472297999918, 48.455664587000086 ], [ -123.440254711999955, 48.45551338600005 ], [ -123.441249100999968, 48.454428300000068 ], [ -123.441639218999967, 48.453980995000094 ], [ -123.441961502999945, 48.453611402000071 ], [ -123.442151703999969, 48.453833404000051 ], [ -123.442446579999952, 48.454177597000111 ], [ -123.442984576999976, 48.454388995000016 ], [ -123.443485395999971, 48.454591335000039 ], [ -123.444349402999975, 48.454940401000073 ], [ -123.445380314000019, 48.453849885000118 ], [ -123.44568042499999, 48.453592880000109 ], [ -123.446335652999977, 48.453875097000044 ], [ -123.446911305999947, 48.454123003000099 ], [ -123.446928884999977, 48.454173004000019 ], [ -123.446898106, 48.454242590000028 ], [ -123.446625905999923, 48.454483216000035 ], [ -123.445804309999914, 48.455372301000061 ], [ -123.445628379, 48.455429398000064 ], [ -123.445566760999924, 48.455651666000037 ], [ -123.445532813999961, 48.45577420899999 ], [ -123.445218476999955, 48.456035460000074 ], [ -123.445130024999941, 48.456109002000055 ], [ -123.444930993999932, 48.456418017000033 ], [ -123.446464196999969, 48.456901294000069 ], [ -123.446766794999945, 48.457223294000052 ], [ -123.447512917999944, 48.457983399000064 ], [ -123.447905001999956, 48.458171417000152 ], [ -123.447968989999964, 48.458281242000062 ], [ -123.44802489099996, 48.458377214000059 ], [ -123.44800531099996, 48.458489508000063 ], [ -123.447871375999938, 48.458593498000035 ], [ -123.447702501999956, 48.458646305000052 ], [ -123.44677921499999, 48.458743100000063 ], [ -123.446474914999968, 48.458878208 ], [ -123.44631221299997, 48.459015886000017 ], [ -123.446305810999917, 48.459023851000062 ], [ -123.446132598999895, 48.459240024000025 ], [ -123.445903916999953, 48.459525406000104 ], [ -123.446240493999966, 48.45959209600008 ], [ -123.446436299999931, 48.459603947000062 ], [ -123.446661813999953, 48.45961760400008 ], [ -123.4470420899999, 48.459609729000057 ], [ -123.447868806999949, 48.459592585000081 ], [ -123.44855479899995, 48.459615384000152 ], [ -123.448859469999931, 48.459710330000036 ], [ -123.449636996999942, 48.459952584000106 ], [ -123.450180153999966, 48.460077413000086 ], [ -123.451146139999963, 48.460299422000105 ], [ -123.451964193999927, 48.460487399000051 ], [ -123.452991947999948, 48.460658177000013 ], [ -123.453968621999977, 48.460824145000039 ], [ -123.455231225999938, 48.460143902000013 ], [ -123.45556288, 48.459965305000019 ], [ -123.455651180999936, 48.45991773 ], [ -123.455802520999939, 48.460040399000043 ], [ -123.455561407999966, 48.460171373000072 ], [ -123.455139394999946, 48.460400618000094 ], [ -123.454993112999972, 48.460480086000125 ], [ -123.454390809999907, 48.460807234000114 ], [ -123.454231690999976, 48.460930899000083 ], [ -123.453524151999957, 48.461480737000024 ], [ -123.453369065999965, 48.461602361000118 ], [ -123.453264853999912, 48.46168191400006 ], [ -123.452480780999949, 48.461748695000018 ], [ -123.45226090599999, 48.461895795 ], [ -123.451980947999971, 48.462039439000115 ], [ -123.451830555999905, 48.462116618000032 ], [ -123.451617988999956, 48.462225708000112 ], [ -123.450544214999937, 48.462608407000104 ], [ -123.44977362799996, 48.462767202000066 ], [ -123.449165119999975, 48.462892604000089 ], [ -123.448833291999932, 48.462959509000058 ], [ -123.448203595, 48.463194106000032 ], [ -123.447872301999965, 48.463424758000016 ], [ -123.44771541199998, 48.463534011000029 ], [ -123.447659987999913, 48.463580137000058 ], [ -123.447335683999967, 48.463850053000073 ], [ -123.446927799999955, 48.464189506000061 ], [ -123.446480120999979, 48.464539647000045 ], [ -123.446436405999975, 48.464573828000098 ], [ -123.446108719999955, 48.464830082000098 ], [ -123.446088938999949, 48.464845578000045 ], [ -123.44586604099996, 48.464722984000062 ], [ -123.445557803999975, 48.464604632000047 ], [ -123.445164274999968, 48.46451581000013 ], [ -123.444737948999915, 48.464483886000082 ], [ -123.444515786999929, 48.464496710000034 ], [ -123.444297721999959, 48.46450934000007 ], [ -123.444014915999958, 48.464547887000066 ], [ -123.442093985000014, 48.464809640000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57033637", "BldgCostT": "37782080", "sL_LossRatio": "0.912592430254537", "sL_AssetLoss": "71182.05", "sL_BldgLoss": "64960.2", "sL_StrLoss": "54988.5", "sL_NStrLoss": "9971.7", "sL_ContLoss": "6221.85", "geom_point": "0101000020E61000008F675DC473DD5EC0FC2BF912093A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.459046489999963, 48.455869891000049 ], [ -123.458855607999951, 48.455726082000069 ], [ -123.458464585999963, 48.455718995000034 ], [ -123.458394109, 48.455493896000085 ], [ -123.457174583999915, 48.455147795000101 ], [ -123.456695006999965, 48.454682091000095 ], [ -123.45649248700002, 48.454646500000116 ], [ -123.456040889999912, 48.454118102000024 ], [ -123.456003127999978, 48.453884568000063 ], [ -123.45610290499998, 48.453847900000028 ], [ -123.462413005999977, 48.451213154000065 ], [ -123.462207122, 48.451025163000097 ], [ -123.462100086999939, 48.4509404000001 ], [ -123.461740995999918, 48.450656008000138 ], [ -123.461487026999933, 48.450510465000086 ], [ -123.462053996999913, 48.450382538000035 ], [ -123.464059788999975, 48.450711804000044 ], [ -123.464203616999939, 48.450735410000057 ], [ -123.463452564999926, 48.451990991000109 ], [ -123.462210462000016, 48.453728700000056 ], [ -123.461551591999935, 48.454459510000078 ], [ -123.46095270899994, 48.454977198000122 ], [ -123.460415510999937, 48.455352106000127 ], [ -123.460164709999972, 48.455496598000146 ], [ -123.459409414999982, 48.455986202000119 ], [ -123.459246879999938, 48.456140076000075 ], [ -123.459243857999951, 48.456142936000049 ], [ -123.459133083999987, 48.456076578000086 ], [ -123.459087714999953, 48.456049399000015 ], [ -123.459069994999979, 48.455972237000047 ], [ -123.459046489999963, 48.455869891000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242466250", "BldgCostT": "160330000", "sL_LossRatio": "0.821136522657894", "sL_AssetLoss": "532946.7", "sL_BldgLoss": "437622", "sL_StrLoss": "297288", "sL_NStrLoss": "140334", "sL_ContLoss": "95324.7", "geom_point": "0101000020E610000002B6943DD3DC5EC0DE6A5A52833A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.449636996999942, 48.459952584000106 ], [ -123.448859469999931, 48.459710330000036 ], [ -123.44855479899995, 48.459615384000152 ], [ -123.447868806999949, 48.459592585000081 ], [ -123.4470420899999, 48.459609729000057 ], [ -123.446661813999953, 48.45961760400008 ], [ -123.446436299999931, 48.459603947000062 ], [ -123.446240493999966, 48.45959209600008 ], [ -123.445903916999953, 48.459525406000104 ], [ -123.446132598999895, 48.459240024000025 ], [ -123.446305810999917, 48.459023851000062 ], [ -123.44631221299997, 48.459015886000017 ], [ -123.446474914999968, 48.458878208 ], [ -123.44677921499999, 48.458743100000063 ], [ -123.447702501999956, 48.458646305000052 ], [ -123.447871375999938, 48.458593498000035 ], [ -123.44800531099996, 48.458489508000063 ], [ -123.44802489099996, 48.458377214000059 ], [ -123.447968989999964, 48.458281242000062 ], [ -123.447905001999956, 48.458171417000152 ], [ -123.447512917999944, 48.457983399000064 ], [ -123.446766794999945, 48.457223294000052 ], [ -123.446464196999969, 48.456901294000069 ], [ -123.444930993999932, 48.456418017000033 ], [ -123.445130024999941, 48.456109002000055 ], [ -123.445218476999955, 48.456035460000074 ], [ -123.445532813999961, 48.45577420899999 ], [ -123.445566760999924, 48.455651666000037 ], [ -123.445628379, 48.455429398000064 ], [ -123.445804309999914, 48.455372301000061 ], [ -123.446625905999923, 48.454483216000035 ], [ -123.446898106, 48.454242590000028 ], [ -123.446928884999977, 48.454173004000019 ], [ -123.446911305999947, 48.454123003000099 ], [ -123.446335652999977, 48.453875097000044 ], [ -123.44568042499999, 48.453592880000109 ], [ -123.445380314000019, 48.453849885000118 ], [ -123.444349402999975, 48.454940401000073 ], [ -123.443485395999971, 48.454591335000039 ], [ -123.442984576999976, 48.454388995000016 ], [ -123.442446579999952, 48.454177597000111 ], [ -123.442151703999969, 48.453833404000051 ], [ -123.441961502999945, 48.453611402000071 ], [ -123.442725875999912, 48.452757804000044 ], [ -123.443184483999971, 48.452216088000071 ], [ -123.442859563999932, 48.452026360000048 ], [ -123.443093388999927, 48.45197330700011 ], [ -123.443259669999946, 48.451719250000153 ], [ -123.443260635999962, 48.451830139000023 ], [ -123.443630943999906, 48.451828711000111 ], [ -123.443709837999918, 48.451772861000109 ], [ -123.443969538999951, 48.451759660000107 ], [ -123.44425703899995, 48.45184706100013 ], [ -123.44416945899999, 48.452035542000019 ], [ -123.444081113999943, 48.452087191000103 ], [ -123.444095703999949, 48.452270722000094 ], [ -123.444077116999978, 48.452407150000042 ], [ -123.444081188999974, 48.452873901000082 ], [ -123.4439954, 48.452906887000026 ], [ -123.443901903, 48.452907247000105 ], [ -123.443886337999942, 48.452930761000061 ], [ -123.443841780999918, 48.452965954000014 ], [ -123.443549099999984, 48.453078488000081 ], [ -123.443522390999973, 48.45321820700007 ], [ -123.44340013899992, 48.45331476100008 ], [ -123.443274422999934, 48.45341413400012 ], [ -123.44327497099998, 48.45347706300003 ], [ -123.442958089999976, 48.453575507000068 ], [ -123.44296119299996, 48.453809115000084 ], [ -123.443220504999942, 48.454078297000123 ], [ -123.443557606999931, 48.454122393000027 ], [ -123.443814295999971, 48.453977094000045 ], [ -123.444862570999987, 48.453173433000103 ], [ -123.444895272999986, 48.45317330600011 ], [ -123.444895028999966, 48.453145308000046 ], [ -123.445330906, 48.452612798000061 ], [ -123.445586906999949, 48.452431900000136 ], [ -123.445869695999974, 48.452421902000019 ], [ -123.446060689999939, 48.452528699000091 ], [ -123.446573598999962, 48.452400486000037 ], [ -123.44666909099999, 48.452634105000087 ], [ -123.446552609999912, 48.453175291000058 ], [ -123.446648405999952, 48.453290707000086 ], [ -123.447183192999915, 48.452614194000049 ], [ -123.447324865, 48.452623741000082 ], [ -123.447324866999949, 48.452624098000044 ], [ -123.44732988, 48.45262407900001 ], [ -123.447563284999944, 48.452639807 ], [ -123.44773276599993, 48.452870508000018 ], [ -123.447734257999954, 48.453040122000061 ], [ -123.447744838999967, 48.453053160000096 ], [ -123.447735033999962, 48.453128344000056 ], [ -123.447736703999936, 48.453318348000089 ], [ -123.447298818999911, 48.453441596000033 ], [ -123.447233108999981, 48.453756407000121 ], [ -123.447298081999975, 48.453814604000087 ], [ -123.447643292999899, 48.454123806000091 ], [ -123.448170103999956, 48.454203593000116 ], [ -123.448319398999971, 48.454039798000103 ], [ -123.448349921999977, 48.453928935000079 ], [ -123.448353247999989, 48.453927021000013 ], [ -123.448353929999925, 48.453914377000075 ], [ -123.448462890999934, 48.45351860800011 ], [ -123.449004112999972, 48.453569807000086 ], [ -123.449159178999977, 48.454388695000034 ], [ -123.449448087999954, 48.454971210000039 ], [ -123.449412299999935, 48.455323009000018 ], [ -123.449521485999966, 48.455466902000069 ], [ -123.449280615999939, 48.455691902000076 ], [ -123.449362693999959, 48.455808706000063 ], [ -123.449729582999979, 48.45599669300006 ], [ -123.450134891999966, 48.456012314000084 ], [ -123.450679687999951, 48.456406793000063 ], [ -123.451085716999941, 48.456458107000024 ], [ -123.451136462999926, 48.456516904000097 ], [ -123.451604410999963, 48.45705909400008 ], [ -123.451997393999974, 48.457147391000014 ], [ -123.453287889999956, 48.457835305000067 ], [ -123.453602512999964, 48.458112991000043 ], [ -123.454566409999984, 48.458496185000044 ], [ -123.455080493999958, 48.458494692000045 ], [ -123.45525685299998, 48.458422604000049 ], [ -123.45565880299992, 48.458258299000086 ], [ -123.455995898, 48.457986312000116 ], [ -123.45586619, 48.457160300000048 ], [ -123.455595000999935, 48.45710609200006 ], [ -123.455525106, 48.456953689000045 ], [ -123.455763296, 48.456314304000095 ], [ -123.456004919999927, 48.456124903000081 ], [ -123.456276088999942, 48.456204602000113 ], [ -123.45649610399991, 48.456500783000081 ], [ -123.456779705999921, 48.456570606000057 ], [ -123.457200701999966, 48.456552113000029 ], [ -123.457873482999943, 48.456341304000077 ], [ -123.458848802999967, 48.45635559400003 ], [ -123.458923623999965, 48.456371167000057 ], [ -123.459054548000012, 48.456398417000095 ], [ -123.459050903999966, 48.456404051000057 ], [ -123.459006580999926, 48.456472494000103 ], [ -123.458895004999945, 48.456715110000047 ], [ -123.458659588, 48.457327128000031 ], [ -123.458338893999951, 48.458142707000064 ], [ -123.458172801, 48.458395700000096 ], [ -123.457946578999923, 48.458734817000078 ], [ -123.457587614999966, 48.459051152000086 ], [ -123.457531296999932, 48.459100792000065 ], [ -123.456906038999975, 48.459480773000031 ], [ -123.456583428999963, 48.459644365000059 ], [ -123.455802520999939, 48.460040399000043 ], [ -123.455651180999936, 48.45991773 ], [ -123.45556288, 48.459965305000019 ], [ -123.455231225999938, 48.460143902000013 ], [ -123.453968621999977, 48.460824145000039 ], [ -123.452991947999948, 48.460658177000013 ], [ -123.451964193999927, 48.460487399000051 ], [ -123.451146139999963, 48.460299422000105 ], [ -123.450180153999966, 48.460077413000086 ], [ -123.449636996999942, 48.459952584000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176579501", "BldgCostT": "113575001", "sL_LossRatio": "0.819262173298517", "sL_AssetLoss": "120918.069", "sL_BldgLoss": "99063.6", "sL_StrLoss": "68171.4", "sL_NStrLoss": "30892.2", "sL_ContLoss": "21854.469", "geom_point": "0101000020E61000005ECD101A43DD5EC0034EA69FAA384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.453274823999919, 48.450251401000017 ], [ -123.453057396999952, 48.450109005000051 ], [ -123.45251810299996, 48.45018300600001 ], [ -123.451269205999935, 48.449656089000079 ], [ -123.450931798999989, 48.449774300000136 ], [ -123.450566599999917, 48.449722987000015 ], [ -123.449912008999917, 48.449211684000076 ], [ -123.450125923000016, 48.448941103000067 ], [ -123.449893498999955, 48.448501113000169 ], [ -123.450133814999958, 48.448303099000093 ], [ -123.450443295999975, 48.448184897000097 ], [ -123.450411708, 48.447599497000084 ], [ -123.449947605999967, 48.447052583000115 ], [ -123.450010701999943, 48.446683802000067 ], [ -123.450402286999946, 48.446403207000024 ], [ -123.45101061299999, 48.44646440500005 ], [ -123.451238711999977, 48.446283590000114 ], [ -123.451209714999948, 48.446112697000054 ], [ -123.450787209999959, 48.445582901000066 ], [ -123.450434505999951, 48.445458895000073 ], [ -123.449656109999964, 48.44467849800003 ], [ -123.450027822, 48.443976305000028 ], [ -123.450565607999977, 48.443640199000072 ], [ -123.451052994999912, 48.443665899000052 ], [ -123.451188519000013, 48.443584705000077 ], [ -123.451196103999962, 48.443116090000025 ], [ -123.450978685999971, 48.442973705000064 ], [ -123.450964308999943, 48.442748703000071 ], [ -123.450786396999945, 48.442560702000037 ], [ -123.450866395999967, 48.442379796000075 ], [ -123.451014502999939, 48.442423998000038 ], [ -123.451068313999954, 48.442361296000158 ], [ -123.450713306999916, 48.442020896 ], [ -123.450939495999975, 48.441479687000061 ], [ -123.450922393999946, 48.441137896000043 ], [ -123.450605594999928, 48.440464200000051 ], [ -123.449968197999965, 48.440269088000086 ], [ -123.449849404999938, 48.440531190000037 ], [ -123.450093387999956, 48.440583893000024 ], [ -123.45003939, 48.440683606000043 ], [ -123.449646793999989, 48.440558190000026 ], [ -123.449899693999939, 48.44016230700008 ], [ -123.448354692999928, 48.439709409000045 ], [ -123.448277089, 48.439857576000101 ], [ -123.44675579299999, 48.439409616000056 ], [ -123.44698241399999, 48.439075455000108 ], [ -123.447477785999922, 48.438344997000087 ], [ -123.447245699999939, 48.438165599000037 ], [ -123.447134295999916, 48.437779588000112 ], [ -123.446713798999923, 48.43767280600008 ], [ -123.446723533999915, 48.437479616000161 ], [ -123.446786295999971, 48.437481130000052 ], [ -123.446784199999982, 48.437242150000081 ], [ -123.448000985999954, 48.437237419000056 ], [ -123.448003387999961, 48.437510467000095 ], [ -123.450773714999968, 48.437577192000049 ], [ -123.450769669999914, 48.437652229000015 ], [ -123.451249639999943, 48.437663782000108 ], [ -123.451244967999955, 48.43713617500007 ], [ -123.448374408999953, 48.43706704699999 ], [ -123.44839308899995, 48.436720881000028 ], [ -123.448076630999964, 48.436713255 ], [ -123.448122209999951, 48.436435194000104 ], [ -123.448364807999923, 48.436200194000094 ], [ -123.448969102999968, 48.435882609000089 ], [ -123.449277477999914, 48.435611994000077 ], [ -123.449301091999956, 48.435134910000038 ], [ -123.449568507999928, 48.434710407000104 ], [ -123.449471983999928, 48.434622104000077 ], [ -123.448905009999919, 48.434696185000035 ], [ -123.448863292999988, 48.434506800000094 ], [ -123.449101995999953, 48.434083789000027 ], [ -123.449130911999987, 48.433914993000052 ], [ -123.449139282999937, 48.433866210000048 ], [ -123.449166904999956, 48.43370489300009 ], [ -123.449001180999943, 48.43328339400005 ], [ -123.448782704999971, 48.433095401000053 ], [ -123.448298418999983, 48.433303305000031 ], [ -123.448217582000012, 48.433276293000105 ], [ -123.448551974999987, 48.432942995000047 ], [ -123.44889929499999, 48.432374689000014 ], [ -123.448912387999968, 48.432312091000014 ], [ -123.448721306999971, 48.432312087000128 ], [ -123.448712293999947, 48.432301525000071 ], [ -123.448768747999949, 48.432302885000041 ], [ -123.448766934999966, 48.43209724900008 ], [ -123.448814392999921, 48.432024415000107 ], [ -123.448768700999949, 48.431803538000096 ], [ -123.44876814099996, 48.431800775000077 ], [ -123.448764155999925, 48.431781514000143 ], [ -123.448758457999958, 48.431134473000078 ], [ -123.448982897999926, 48.431203987000032 ], [ -123.451128389999937, 48.430746902000053 ], [ -123.451992591999925, 48.430652905000102 ], [ -123.452822322999978, 48.430925576000014 ], [ -123.45283337799998, 48.430929199000055 ], [ -123.453214021999941, 48.431251004000053 ], [ -123.453485014999927, 48.431330796000054 ], [ -123.453945219999966, 48.431329405000106 ], [ -123.45401107, 48.43131697200009 ], [ -123.454579690999978, 48.431209705000086 ], [ -123.455216114999971, 48.431387797000042 ], [ -123.455744303999907, 48.4314204900001 ], [ -123.45680997599996, 48.431103648 ], [ -123.456759495, 48.43128587500005 ], [ -123.456662776999906, 48.431635097000019 ], [ -123.45674347799999, 48.431967104000073 ], [ -123.457260697999942, 48.432561193000055 ], [ -123.457307902999929, 48.43276248700009 ], [ -123.457275200999959, 48.432944808000045 ], [ -123.457099316999944, 48.433129898000047 ], [ -123.456622510999978, 48.433388086000086 ], [ -123.455688204, 48.433974295000098 ], [ -123.455378932999935, 48.434132920000074 ], [ -123.455249705999933, 48.434199206000137 ], [ -123.455124564999934, 48.434236988000087 ], [ -123.456347546999922, 48.434874817000093 ], [ -123.456630245, 48.435468241000095 ], [ -123.457181987999931, 48.435783089000076 ], [ -123.456956406999964, 48.435785798000026 ], [ -123.45676351900002, 48.435860494000103 ], [ -123.45641399799996, 48.436136191000088 ], [ -123.455884702999981, 48.435941283000062 ], [ -123.455352949999948, 48.435838911000118 ], [ -123.455076602999966, 48.435785681000056 ], [ -123.454377192999914, 48.435693202000138 ], [ -123.454235772999979, 48.435711481000084 ], [ -123.454101307999963, 48.435728886000099 ], [ -123.453879110999964, 48.435795684000055 ], [ -123.45366068, 48.435967672000061 ], [ -123.453526780999965, 48.436073107000013 ], [ -123.45351912599989, 48.436215394000051 ], [ -123.453601889999902, 48.436382404000071 ], [ -123.454758902999927, 48.436874586000023 ], [ -123.45504210199999, 48.436953603000056 ], [ -123.45499899, 48.43772989800005 ], [ -123.455786394999961, 48.437741726000098 ], [ -123.456503785999971, 48.437752492000101 ], [ -123.457225450999957, 48.437689568000053 ], [ -123.4583844799999, 48.437588496000068 ], [ -123.459605893999949, 48.437511390000054 ], [ -123.459956292999905, 48.437544989000138 ], [ -123.461276094000013, 48.437896796000153 ], [ -123.461496726999883, 48.437232096000109 ], [ -123.463502304999935, 48.43778059300012 ], [ -123.46397922499996, 48.437909918000038 ], [ -123.464633009999929, 48.438087195000101 ], [ -123.464897212999972, 48.438244987000054 ], [ -123.465148803999952, 48.43846029000013 ], [ -123.465387478999915, 48.438766836000113 ], [ -123.465594491999965, 48.439032690000111 ], [ -123.466607906999968, 48.438681896000077 ], [ -123.466983807999981, 48.438542992000123 ], [ -123.467603909, 48.437849906000075 ], [ -123.466994013999937, 48.437596302 ], [ -123.466891389999901, 48.437496494000086 ], [ -123.466850600999919, 48.437376506000106 ], [ -123.466873884999984, 48.437243610000166 ], [ -123.467197106999961, 48.436827502000078 ], [ -123.46888731899999, 48.437521701000065 ], [ -123.469143976999959, 48.437692795000025 ], [ -123.469420288, 48.437951901000069 ], [ -123.469642414999953, 48.438340503000049 ], [ -123.468610609000024, 48.438581907000057 ], [ -123.468611783999975, 48.438685596000028 ], [ -123.469212838999965, 48.439100748000072 ], [ -123.469202416999934, 48.439106462000076 ], [ -123.468530394999917, 48.439474489000091 ], [ -123.467914913999948, 48.439854684000096 ], [ -123.467283505999944, 48.44038069000004 ], [ -123.467077505999939, 48.440470197000089 ], [ -123.467027791999925, 48.440491806000068 ], [ -123.466832118999946, 48.440579949000018 ], [ -123.46664750699999, 48.440663109000056 ], [ -123.466531077999974, 48.441660578000082 ], [ -123.46646462699999, 48.44222946200005 ], [ -123.466455511999925, 48.442307786000121 ], [ -123.466542799999928, 48.443559948000015 ], [ -123.466554713000022, 48.443730397000124 ], [ -123.466543126000019, 48.443759804000074 ], [ -123.466396910999947, 48.444130600000051 ], [ -123.466346562999888, 48.444440511000053 ], [ -123.466427106999944, 48.4446498390001 ], [ -123.466576130999954, 48.444815714000093 ], [ -123.466868903999966, 48.444843476000038 ], [ -123.46700540399992, 48.444815177000095 ], [ -123.467343229999983, 48.44443008800004 ], [ -123.4677104149999, 48.444109647000104 ], [ -123.467926556999956, 48.443921004000082 ], [ -123.468785154, 48.442959523000098 ], [ -123.468963108999944, 48.442960156000034 ], [ -123.467782453999973, 48.444239571000082 ], [ -123.467503210999965, 48.44454211300009 ], [ -123.46733216299998, 48.444827352000082 ], [ -123.467132694000014, 48.445159966000091 ], [ -123.466848941999928, 48.445719488000123 ], [ -123.466844628999951, 48.445728072000051 ], [ -123.466473600999961, 48.44646366300001 ], [ -123.466284970999979, 48.446837568000056 ], [ -123.466168860999929, 48.447067814000057 ], [ -123.466086283999914, 48.447231517000034 ], [ -123.464948963999916, 48.449486597000018 ], [ -123.464659662999935, 48.449972945000127 ], [ -123.46439544899998, 48.450414665000018 ], [ -123.464357384999914, 48.450478292000085 ], [ -123.464203616999939, 48.450735410000057 ], [ -123.464059788999975, 48.450711804000044 ], [ -123.462053996999913, 48.450382538000035 ], [ -123.461487026999933, 48.450510465000086 ], [ -123.461740995999918, 48.450656008000138 ], [ -123.462100086999939, 48.4509404000001 ], [ -123.462207122, 48.451025163000097 ], [ -123.462413005999977, 48.451213154000065 ], [ -123.45610290499998, 48.453847900000028 ], [ -123.456003127999978, 48.453884568000063 ], [ -123.455827190999941, 48.452796514000092 ], [ -123.455703813999961, 48.452562906000061 ], [ -123.454349518999962, 48.452308001000048 ], [ -123.453861300999947, 48.45229089 ], [ -123.453711176999946, 48.45218409500005 ], [ -123.453668314999973, 48.451779598000066 ], [ -123.453261200999989, 48.451645709000033 ], [ -123.453271909999984, 48.451303903000074 ], [ -123.452983379999949, 48.450900893000096 ], [ -123.453020305999985, 48.450440810000053 ], [ -123.453274823999919, 48.450251401000017 ] ], [ [ -123.460313571999976, 48.444206119000043 ], [ -123.460400580999973, 48.442586397000056 ], [ -123.459811961999932, 48.442588750000013 ], [ -123.459816833999952, 48.443128523000034 ], [ -123.459005550999947, 48.443131761000053 ], [ -123.459007983999953, 48.443401648000076 ], [ -123.45860233799999, 48.443403264000082 ], [ -123.458604768999962, 48.443673150000102 ], [ -123.459416060999942, 48.443669914000061 ], [ -123.459423362999971, 48.444479572000063 ], [ -123.460234667999927, 48.444476330000022 ], [ -123.460232230999978, 48.44420644500012 ], [ -123.460313571999976, 48.444206119000043 ] ], [ [ -123.458189410999978, 48.442595222000058 ], [ -123.45818698399999, 48.44232533600011 ], [ -123.45859262, 48.44232372000009 ], [ -123.45859019000001, 48.442053834 ], [ -123.458995823999942, 48.442052217000032 ], [ -123.458983665999966, 48.440702786000038 ], [ -123.455333058999926, 48.44071728800008 ], [ -123.455330647999943, 48.440447402000068 ], [ -123.45451940699995, 48.440450609000095 ], [ -123.454516997999974, 48.440180723 ], [ -123.45370576099999, 48.440183924000102 ], [ -123.453703357, 48.439914038000097 ], [ -123.453467092000011, 48.439914969000036 ], [ -123.453445745999957, 48.440311294 ], [ -123.45436134599997, 48.440333306000078 ], [ -123.454253247999986, 48.4423409300001 ], [ -123.454536260999959, 48.442339813000046 ], [ -123.45453867, 48.442609699000066 ], [ -123.456566859999938, 48.442601670000066 ], [ -123.456569277999975, 48.442871557000061 ], [ -123.457786198999912, 48.442866722000119 ], [ -123.457783774999953, 48.442596835000089 ], [ -123.458189410999978, 48.442595222000058 ] ], [ [ -123.460618357000016, 48.442045735000107 ], [ -123.460620873999972, 48.442323962000046 ], [ -123.460630541999976, 48.442143965000049 ], [ -123.464894804000025, 48.442246123000103 ], [ -123.464920948999975, 48.441758536000044 ], [ -123.464672227999969, 48.441759541000067 ], [ -123.464669765999972, 48.441489654000108 ], [ -123.464264136999944, 48.441491291000084 ], [ -123.464261677999943, 48.441221406000111 ], [ -123.463044797999956, 48.441226309000072 ], [ -123.463042344999977, 48.440956422000127 ], [ -123.462636719999949, 48.440958053000038 ], [ -123.46264162199995, 48.441497826000109 ], [ -123.461830363999965, 48.441501084000045 ], [ -123.461835257999937, 48.442040856000041 ], [ -123.460618357000016, 48.442045735000107 ] ], [ [ -123.458973940999968, 48.439623242000081 ], [ -123.458969076999907, 48.439083469000096 ], [ -123.458563467999966, 48.43908508599999 ], [ -123.458561038999932, 48.438815200000114 ], [ -123.458155431999899, 48.438816815000052 ], [ -123.45815057799993, 48.43827704299999 ], [ -123.457339369999943, 48.438280270000128 ], [ -123.457341793999959, 48.438550156000055 ], [ -123.455719368999965, 48.438556592000033 ], [ -123.455716955999975, 48.438286706000092 ], [ -123.453688936, 48.438294718000051 ], [ -123.45369134, 48.438564605000046 ], [ -123.454096946, 48.43856300600001 ], [ -123.454099351999929, 48.438832892000057 ], [ -123.454504959999923, 48.438831292000081 ], [ -123.45450736699999, 48.439101178000087 ], [ -123.454912978, 48.4390995750001 ], [ -123.454915387999961, 48.439369461000076 ], [ -123.455726610999974, 48.439366251000067 ], [ -123.455729025999972, 48.439636138000012 ], [ -123.458973940999968, 48.439623242000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48024501", "BldgCostT": "30965001", "sL_LossRatio": "0.897579241973453", "sL_AssetLoss": "56668.2", "sL_BldgLoss": "50864.2", "sL_StrLoss": "39254", "sL_NStrLoss": "11610.2", "sL_ContLoss": "5804", "geom_point": "0101000020E6100000FF9C61EE43DD5EC029D0C4C7E9374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.459956292999905, 48.437544989000138 ], [ -123.459605893999949, 48.437511390000054 ], [ -123.4583844799999, 48.437588496000068 ], [ -123.457225450999957, 48.437689568000053 ], [ -123.456503785999971, 48.437752492000101 ], [ -123.455786394999961, 48.437741726000098 ], [ -123.45499899, 48.43772989800005 ], [ -123.45504210199999, 48.436953603000056 ], [ -123.454758902999927, 48.436874586000023 ], [ -123.453601889999902, 48.436382404000071 ], [ -123.45351912599989, 48.436215394000051 ], [ -123.453526780999965, 48.436073107000013 ], [ -123.45366068, 48.435967672000061 ], [ -123.453879110999964, 48.435795684000055 ], [ -123.454101307999963, 48.435728886000099 ], [ -123.454235772999979, 48.435711481000084 ], [ -123.454377192999914, 48.435693202000138 ], [ -123.455076602999966, 48.435785681000056 ], [ -123.455352949999948, 48.435838911000118 ], [ -123.455884702999981, 48.435941283000062 ], [ -123.45641399799996, 48.436136191000088 ], [ -123.45676351900002, 48.435860494000103 ], [ -123.456956406999964, 48.435785798000026 ], [ -123.457181987999931, 48.435783089000076 ], [ -123.457427152, 48.435858232000093 ], [ -123.457867119999904, 48.435993057000111 ], [ -123.457938717999966, 48.436014999000037 ], [ -123.4585212759999, 48.436184187000038 ], [ -123.458749014999981, 48.43625030200009 ], [ -123.459038908999943, 48.436334505000026 ], [ -123.459885298999978, 48.436580202000066 ], [ -123.460856200999942, 48.436971407000073 ], [ -123.461220838999935, 48.437119806000112 ], [ -123.461496726999883, 48.437232096000109 ], [ -123.461276094000013, 48.437896796000153 ], [ -123.459956292999905, 48.437544989000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69068499", "BldgCostT": "46689999", "sL_LossRatio": "0.9593091949073", "sL_AssetLoss": "90561", "sL_BldgLoss": "86876", "sL_StrLoss": "70914", "sL_NStrLoss": "15962", "sL_ContLoss": "3685", "geom_point": "0101000020E610000011B712D3A8DD5EC00CE71A66E8374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.463502304999935, 48.43778059300012 ], [ -123.461496726999883, 48.437232096000109 ], [ -123.461220838999935, 48.437119806000112 ], [ -123.460856200999942, 48.436971407000073 ], [ -123.461211990999985, 48.436577800000087 ], [ -123.459523788999945, 48.435924093000011 ], [ -123.460418413999903, 48.434720003000045 ], [ -123.46067330599999, 48.434547611000042 ], [ -123.460981502999985, 48.434410694000086 ], [ -123.461232810999903, 48.434356294000068 ], [ -123.461502007999954, 48.434369099000065 ], [ -123.461717384999986, 48.434453604000062 ], [ -123.461900255999936, 48.434580511000043 ], [ -123.462729579999959, 48.435155993000109 ], [ -123.46234509, 48.435616015000093 ], [ -123.462162789999965, 48.435834112000087 ], [ -123.461979213999953, 48.436038000000103 ], [ -123.461664491999926, 48.436318090000036 ], [ -123.46171603, 48.436350853000079 ], [ -123.461960809999965, 48.436506409000117 ], [ -123.462204618999948, 48.43659422100005 ], [ -123.46235528699998, 48.436648500000096 ], [ -123.462669496999936, 48.436734452000039 ], [ -123.463249597999933, 48.436893136000023 ], [ -123.463908684000032, 48.437073395000063 ], [ -123.464966991999958, 48.43734488900008 ], [ -123.46536450499994, 48.437482500000016 ], [ -123.466251698999926, 48.436464005000069 ], [ -123.467197106999961, 48.436827502000078 ], [ -123.466873884999984, 48.437243610000166 ], [ -123.466850600999919, 48.437376506000106 ], [ -123.466891389999901, 48.437496494000086 ], [ -123.466994013999937, 48.437596302 ], [ -123.467603909, 48.437849906000075 ], [ -123.466983807999981, 48.438542992000123 ], [ -123.466607906999968, 48.438681896000077 ], [ -123.465594491999965, 48.439032690000111 ], [ -123.465387478999915, 48.438766836000113 ], [ -123.465148803999952, 48.43846029000013 ], [ -123.464897212999972, 48.438244987000054 ], [ -123.464633009999929, 48.438087195000101 ], [ -123.46397922499996, 48.437909918000038 ], [ -123.463502304999935, 48.43778059300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6593333", "BldgCostT": "4283333", "sL_LossRatio": "0.953067974240401", "sL_AssetLoss": "13439.65", "sL_BldgLoss": "12808.9", "sL_StrLoss": "10481", "sL_NStrLoss": "2327.9", "sL_ContLoss": "630.75", "geom_point": "0101000020E6100000573D478191DE5EC0CF94C6FD81364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.478336963999979, 48.42820874300007 ], [ -123.47833443199994, 48.427938857000129 ], [ -123.478269065999953, 48.427939129000059 ], [ -123.478258954999973, 48.428128738000062 ], [ -123.47423608599992, 48.428032845000111 ], [ -123.474365598999924, 48.427701907000049 ], [ -123.47484601599993, 48.427052498000108 ], [ -123.474841892999947, 48.426710704000044 ], [ -123.474382077999977, 48.425209492000135 ], [ -123.473877603999952, 48.424636987000063 ], [ -123.473757453999909, 48.424414328000033 ], [ -123.473840790999958, 48.424416317000109 ], [ -123.473838584999925, 48.424178905000105 ], [ -123.473630879999973, 48.424179761000076 ], [ -123.473516308999962, 48.423967432000062 ], [ -123.477943304999911, 48.425060688 ], [ -123.478014285999961, 48.425196021000033 ], [ -123.478064515999947, 48.425291803000079 ], [ -123.478563411999943, 48.425395059000103 ], [ -123.478664997999928, 48.425416101000089 ], [ -123.47867992099998, 48.425380645000061 ], [ -123.478716547999966, 48.425293696000047 ], [ -123.479082003999949, 48.424426005000043 ], [ -123.479216694999934, 48.424000808000081 ], [ -123.479489611999938, 48.423258856000132 ], [ -123.479785243999942, 48.422445268000068 ], [ -123.479814429999976, 48.422364734000048 ], [ -123.480315073999989, 48.420983460000052 ], [ -123.480470897999979, 48.420768049000053 ], [ -123.480471494999961, 48.420768242000101 ], [ -123.48177064199993, 48.421177104 ], [ -123.481109385999972, 48.421179872000131 ], [ -123.48111448, 48.421719644000106 ], [ -123.480709009999956, 48.421721338000062 ], [ -123.480719189999974, 48.422800883000015 ], [ -123.48031371099999, 48.422802576 ], [ -123.480323882999954, 48.423882121000112 ], [ -123.479918395999931, 48.423883813 ], [ -123.479926016999983, 48.424693472000129 ], [ -123.479520523999938, 48.42469516200002 ], [ -123.479523061999956, 48.424965047000043 ], [ -123.479428024999933, 48.424965444000051 ], [ -123.479399250999933, 48.425505356000073 ], [ -123.479933640999946, 48.425503129000042 ], [ -123.479936180999971, 48.425773015000047 ], [ -123.480747185999959, 48.425769630000048 ], [ -123.480757368999932, 48.426849173000122 ], [ -123.479946346999938, 48.426852559000082 ], [ -123.479959053999963, 48.428201989000137 ], [ -123.478336963999979, 48.42820874300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210816689", "BldgCostT": "140605825", "sL_LossRatio": "0.805827046605367", "sL_AssetLoss": "448868.9", "sL_BldgLoss": "361710.7", "sL_StrLoss": "180303.7", "sL_NStrLoss": "181407", "sL_ContLoss": "87158.2", "geom_point": "0101000020E610000041060B8A53DE5EC0CBA0807199374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.469143976999959, 48.437692795000025 ], [ -123.46888731899999, 48.437521701000065 ], [ -123.467197106999961, 48.436827502000078 ], [ -123.466251698999926, 48.436464005000069 ], [ -123.46536450499994, 48.437482500000016 ], [ -123.464966991999958, 48.43734488900008 ], [ -123.463908684000032, 48.437073395000063 ], [ -123.463249597999933, 48.436893136000023 ], [ -123.462669496999936, 48.436734452000039 ], [ -123.46235528699998, 48.436648500000096 ], [ -123.462204618999948, 48.43659422100005 ], [ -123.461960809999965, 48.436506409000117 ], [ -123.46171603, 48.436350853000079 ], [ -123.461664491999926, 48.436318090000036 ], [ -123.461979213999953, 48.436038000000103 ], [ -123.462162789999965, 48.435834112000087 ], [ -123.46234509, 48.435616015000093 ], [ -123.462729579999959, 48.435155993000109 ], [ -123.461900255999936, 48.434580511000043 ], [ -123.461717384999986, 48.434453604000062 ], [ -123.461502007999954, 48.434369099000065 ], [ -123.461232810999903, 48.434356294000068 ], [ -123.460981502999985, 48.434410694000086 ], [ -123.46067330599999, 48.434547611000042 ], [ -123.460418413999903, 48.434720003000045 ], [ -123.459523788999945, 48.435924093000011 ], [ -123.461211990999985, 48.436577800000087 ], [ -123.460856200999942, 48.436971407000073 ], [ -123.459885298999978, 48.436580202000066 ], [ -123.459038908999943, 48.436334505000026 ], [ -123.458749014999981, 48.43625030200009 ], [ -123.4585212759999, 48.436184187000038 ], [ -123.457938717999966, 48.436014999000037 ], [ -123.457867119999904, 48.435993057000111 ], [ -123.457427152, 48.435858232000093 ], [ -123.457181987999931, 48.435783089000076 ], [ -123.456630245, 48.435468241000095 ], [ -123.456347546999922, 48.434874817000093 ], [ -123.455124564999934, 48.434236988000087 ], [ -123.455249705999933, 48.434199206000137 ], [ -123.455378932999935, 48.434132920000074 ], [ -123.455688204, 48.433974295000098 ], [ -123.456622510999978, 48.433388086000086 ], [ -123.457099316999944, 48.433129898000047 ], [ -123.457275200999959, 48.432944808000045 ], [ -123.457307902999929, 48.43276248700009 ], [ -123.457260697999942, 48.432561193000055 ], [ -123.45674347799999, 48.431967104000073 ], [ -123.456662776999906, 48.431635097000019 ], [ -123.456759495, 48.43128587500005 ], [ -123.45680997599996, 48.431103648 ], [ -123.456970584999965, 48.431055894000046 ], [ -123.457128984999969, 48.432000193000142 ], [ -123.457712304999973, 48.432294998000074 ], [ -123.458443397999986, 48.432435991000048 ], [ -123.458673494999957, 48.432578406000161 ], [ -123.459132480999926, 48.432487301000037 ], [ -123.459715001999911, 48.432530008000064 ], [ -123.460441186999944, 48.432077096000107 ], [ -123.460806507999962, 48.432238003000059 ], [ -123.461198276999966, 48.432136897000049 ], [ -123.461444370999956, 48.432136054000068 ], [ -123.46136170399997, 48.433675981000043 ], [ -123.462164994999924, 48.433672757000089 ], [ -123.462165681999949, 48.433748689000062 ], [ -123.46222413699995, 48.433760761000038 ], [ -123.462653438999936, 48.433940691000032 ], [ -123.46338414799996, 48.43393775000002 ], [ -123.46338169499991, 48.433667865000082 ], [ -123.465815092999918, 48.433658040000061 ], [ -123.465817558999944, 48.433927926000102 ], [ -123.466223127999982, 48.433926283000027 ], [ -123.466225589999908, 48.434195466000084 ], [ -123.466250707999933, 48.434196068000077 ], [ -123.467036737999976, 48.434192881000087 ], [ -123.467036939999929, 48.434214877000066 ], [ -123.468719360999899, 48.434255109000048 ], [ -123.468668406999939, 48.435206958000087 ], [ -123.46866894899992, 48.435265829000045 ], [ -123.469074527999965, 48.435264176000032 ], [ -123.46907701299989, 48.435534062000087 ], [ -123.470293754999929, 48.435529097000078 ], [ -123.470278809999968, 48.433909781000025 ], [ -123.469873240999945, 48.433911437000091 ], [ -123.46987040499998, 48.433603793000046 ], [ -123.464631616999952, 48.433478486000084 ], [ -123.46471399, 48.431942089000046 ], [ -123.465089192999926, 48.431752400000022 ], [ -123.465649790000015, 48.431138500000067 ], [ -123.466133709999909, 48.430820895000082 ], [ -123.467645388000022, 48.430500508000094 ], [ -123.469183183999974, 48.430061802000068 ], [ -123.469749910999965, 48.430068902000095 ], [ -123.470686809999947, 48.43033529800006 ], [ -123.470996709999952, 48.430333790000127 ], [ -123.471549612999979, 48.430214198000101 ], [ -123.471806750999917, 48.430104415000109 ], [ -123.471805651999929, 48.430124984 ], [ -123.47267746599999, 48.430121405000136 ], [ -123.473082709, 48.430119740000087 ], [ -123.473089377999926, 48.430838140000027 ], [ -123.473972079999967, 48.430859202000086 ], [ -123.474018280999985, 48.429994255000089 ], [ -123.474592381999955, 48.430007950000061 ], [ -123.474911930999966, 48.430015572000052 ], [ -123.474930762999961, 48.429662877000069 ], [ -123.478303207999943, 48.429743251000112 ], [ -123.478373594999965, 48.428423157000061 ], [ -123.483763770999957, 48.42855139600011 ], [ -123.483572086, 48.43215389500007 ], [ -123.481535013999959, 48.432105464000045 ], [ -123.481447490999983, 48.433748842000028 ], [ -123.481038117999958, 48.433739105000058 ], [ -123.481015395999975, 48.434165651000093 ], [ -123.477792339999922, 48.434088930000073 ], [ -123.477767389999954, 48.43455673000004 ], [ -123.476773973999983, 48.434533063000075 ], [ -123.476775468999961, 48.434692736000031 ], [ -123.47636989499992, 48.434694415000052 ], [ -123.476372419, 48.434964301000036 ], [ -123.477183569999966, 48.434960940000082 ], [ -123.477198733999927, 48.436580255000081 ], [ -123.47760432299998, 48.43657857200003 ], [ -123.477606852999912, 48.4368484580001 ], [ -123.478117384999948, 48.436846338000102 ], [ -123.478129254999885, 48.436623777000122 ], [ -123.478639672999961, 48.436635931000133 ], [ -123.478643236999957, 48.436569089000045 ], [ -123.478827940999949, 48.436573487000068 ], [ -123.478918884999956, 48.436573109000044 ], [ -123.47895466199995, 48.435902095000159 ], [ -123.482060273999977, 48.435975985 ], [ -123.482055585999916, 48.435480426000062 ], [ -123.482461164999947, 48.43547872800012 ], [ -123.482458609999981, 48.435208841000119 ], [ -123.482864186999947, 48.435207141000099 ], [ -123.482861629999945, 48.434937255000129 ], [ -123.483267206999955, 48.434935553000031 ], [ -123.483264645999952, 48.434665667000012 ], [ -123.484481366999944, 48.434660551000078 ], [ -123.484478799999962, 48.434390665000087 ], [ -123.485289941999966, 48.434387248000085 ], [ -123.485284800999978, 48.433847476000061 ], [ -123.485690368999954, 48.433845766000033 ], [ -123.485682651999952, 48.433036110000032 ], [ -123.486088211999984, 48.433034397000057 ], [ -123.486083061999963, 48.432494626000107 ], [ -123.486488617999953, 48.43249291300009 ], [ -123.486480890999985, 48.431683256000049 ], [ -123.486886438999989, 48.431681541000074 ], [ -123.486878703999977, 48.430871884000119 ], [ -123.48728424699999, 48.430870168000069 ], [ -123.487279084999898, 48.430330396000024 ], [ -123.487684625000014, 48.430328679000098 ], [ -123.487676877999959, 48.429519022000129 ], [ -123.488082407999954, 48.429517303000111 ], [ -123.488077239999953, 48.428977532000069 ], [ -123.48848276799994, 48.428975810000061 ], [ -123.488475966999943, 48.428266205000057 ], [ -123.487202754999956, 48.428235995000072 ], [ -123.487320919999917, 48.426011875000064 ], [ -123.484804777999926, 48.426022503000056 ], [ -123.48479194399999, 48.424673073000051 ], [ -123.487392626999934, 48.424662087000058 ], [ -123.487394146999947, 48.424633466000081 ], [ -123.488035789999955, 48.424648693000094 ], [ -123.488030725000016, 48.424119590000068 ], [ -123.487625236000014, 48.42412130800011 ], [ -123.487620072999974, 48.423581537000047 ], [ -123.487214588999947, 48.423583254000086 ], [ -123.487212007999958, 48.423313369000063 ], [ -123.486806525999924, 48.423315084000052 ], [ -123.486801369999924, 48.422775313000059 ], [ -123.486395892999965, 48.42277702700013 ], [ -123.486394508999965, 48.422632122000024 ], [ -123.487718773999973, 48.423048781000055 ], [ -123.487771146999989, 48.42312168100009 ], [ -123.487828745999948, 48.423201853000094 ], [ -123.487920846999955, 48.423338106000031 ], [ -123.488101445999973, 48.423605117000115 ], [ -123.48814504099991, 48.423696007000046 ], [ -123.488423584999964, 48.424276128000038 ], [ -123.488547237, 48.424533695000051 ], [ -123.488770733999942, 48.424847402000111 ], [ -123.489164177999953, 48.425238187000069 ], [ -123.489660659999956, 48.425621716000094 ], [ -123.490022557999936, 48.425901279000122 ], [ -123.490168589999925, 48.426014062000043 ], [ -123.490234582, 48.426058451000102 ], [ -123.490582875, 48.426292615000058 ], [ -123.490296582999946, 48.426906295000052 ], [ -123.4901634299999, 48.427139128000064 ], [ -123.489919646999979, 48.427565336000079 ], [ -123.489340924999965, 48.428577048000051 ], [ -123.48815200199995, 48.430655385000058 ], [ -123.487765186999923, 48.431332497000056 ], [ -123.487073707999983, 48.432537984000128 ], [ -123.486622815999937, 48.433329804000095 ], [ -123.486296393999979, 48.433961382000057 ], [ -123.485970402999939, 48.434509208000108 ], [ -123.483786691999939, 48.4380147010001 ], [ -123.483656383999929, 48.438207079000108 ], [ -123.481564016999968, 48.438782630000098 ], [ -123.480817592999969, 48.438987941000086 ], [ -123.480668364999971, 48.439028999000115 ], [ -123.480382970999969, 48.439107508000063 ], [ -123.479295526999962, 48.439406604000062 ], [ -123.478715662999974, 48.439547605000016 ], [ -123.47727870599999, 48.439897007000084 ], [ -123.47691969099999, 48.439983666000039 ], [ -123.476446080999949, 48.440098 ], [ -123.475746129999962, 48.44026924700006 ], [ -123.475283421999961, 48.440382439000061 ], [ -123.47509917699989, 48.440427488000083 ], [ -123.47441108699999, 48.440549994 ], [ -123.473746467999931, 48.440611704000098 ], [ -123.471806826999966, 48.440717801000069 ], [ -123.47122725, 48.440879813000095 ], [ -123.471215700999906, 48.440884680000067 ], [ -123.470699866999936, 48.441101673000041 ], [ -123.470464906999936, 48.441254775000054 ], [ -123.47017656599995, 48.441549069000089 ], [ -123.470157871999916, 48.44164601700011 ], [ -123.469686847999981, 48.442175804000087 ], [ -123.468963108999944, 48.442960156000034 ], [ -123.468785154, 48.442959523000098 ], [ -123.467926556999956, 48.443921004000082 ], [ -123.4677104149999, 48.444109647000104 ], [ -123.467343229999983, 48.44443008800004 ], [ -123.46700540399992, 48.444815177000095 ], [ -123.466868903999966, 48.444843476000038 ], [ -123.466576130999954, 48.444815714000093 ], [ -123.466427106999944, 48.4446498390001 ], [ -123.466346562999888, 48.444440511000053 ], [ -123.466396910999947, 48.444130600000051 ], [ -123.466543126000019, 48.443759804000074 ], [ -123.466554713000022, 48.443730397000124 ], [ -123.466542799999928, 48.443559948000015 ], [ -123.466455511999925, 48.442307786000121 ], [ -123.46646462699999, 48.44222946200005 ], [ -123.466531077999974, 48.441660578000082 ], [ -123.46664750699999, 48.440663109000056 ], [ -123.466832118999946, 48.440579949000018 ], [ -123.467027791999925, 48.440491806000068 ], [ -123.467077505999939, 48.440470197000089 ], [ -123.467283505999944, 48.44038069000004 ], [ -123.467914913999948, 48.439854684000096 ], [ -123.468530394999917, 48.439474489000091 ], [ -123.469202416999934, 48.439106462000076 ], [ -123.469212838999965, 48.439100748000072 ], [ -123.468611783999975, 48.438685596000028 ], [ -123.468610609000024, 48.438581907000057 ], [ -123.469642414999953, 48.438340503000049 ], [ -123.469420288, 48.437951901000069 ], [ -123.469143976999959, 48.437692795000025 ] ], [ [ -123.468681359999948, 48.436615259000064 ], [ -123.468678878, 48.436345373000066 ], [ -123.468607447999943, 48.436345664000015 ], [ -123.468595387999983, 48.436570931000098 ], [ -123.468666834999951, 48.436615318000044 ], [ -123.468681359999948, 48.436615259000064 ], [ -123.46868144599992, 48.436624394000049 ], [ -123.468936037999967, 48.43678256200014 ], [ -123.469157836999969, 48.436883214000098 ], [ -123.469495025999962, 48.436881839000129 ], [ -123.469497409, 48.437140343000131 ], [ -123.469624637999971, 48.437239460000079 ], [ -123.469825624999885, 48.437420281000115 ], [ -123.469905595999975, 48.437419954000077 ], [ -123.46990626799996, 48.437492834000103 ], [ -123.470008339999964, 48.437584661000088 ], [ -123.470061567999934, 48.437647979000111 ], [ -123.470381552999953, 48.437655623000119 ], [ -123.470386407999953, 48.437564891000065 ], [ -123.470910800999945, 48.437577416000067 ], [ -123.470962760999939, 48.436605945000075 ], [ -123.468681359999948, 48.436615259000064 ] ], [ [ -123.48844139199997, 48.424658316 ], [ -123.488441384999931, 48.424657640000127 ], [ -123.488417231999961, 48.424657743000047 ], [ -123.48844139199997, 48.424658316 ] ], [ [ -123.472327680999982, 48.436170492000052 ], [ -123.472326663, 48.43606056300009 ], [ -123.471515491999966, 48.43606388900011 ], [ -123.471516298999973, 48.436151123000108 ], [ -123.472327680999982, 48.436170492000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145661584", "BldgCostT": "89673334", "sL_LossRatio": "0.854934539326633", "sL_AssetLoss": "318542.4", "sL_BldgLoss": "272332.9", "sL_StrLoss": "192991.9", "sL_NStrLoss": "79341", "sL_ContLoss": "46209.5", "geom_point": "0101000020E610000042E9DA30ADDE5EC0B883EFA2D4384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.464948963999916, 48.449486597000018 ], [ -123.466086283999914, 48.447231517000034 ], [ -123.466168860999929, 48.447067814000057 ], [ -123.466284970999979, 48.446837568000056 ], [ -123.466473600999961, 48.44646366300001 ], [ -123.466844628999951, 48.445728072000051 ], [ -123.466848941999928, 48.445719488000123 ], [ -123.467132694000014, 48.445159966000091 ], [ -123.46733216299998, 48.444827352000082 ], [ -123.467503210999965, 48.44454211300009 ], [ -123.467782453999973, 48.444239571000082 ], [ -123.468963108999944, 48.442960156000034 ], [ -123.469686847999981, 48.442175804000087 ], [ -123.470157871999916, 48.44164601700011 ], [ -123.47017656599995, 48.441549069000089 ], [ -123.470464906999936, 48.441254775000054 ], [ -123.470699866999936, 48.441101673000041 ], [ -123.471215700999906, 48.440884680000067 ], [ -123.47122725, 48.440879813000095 ], [ -123.471806826999966, 48.440717801000069 ], [ -123.473746467999931, 48.440611704000098 ], [ -123.47441108699999, 48.440549994 ], [ -123.47509917699989, 48.440427488000083 ], [ -123.475283421999961, 48.440382439000061 ], [ -123.475746129999962, 48.44026924700006 ], [ -123.476446080999949, 48.440098 ], [ -123.47691969099999, 48.439983666000039 ], [ -123.47727870599999, 48.439897007000084 ], [ -123.477421299999932, 48.440209593000056 ], [ -123.478073511999966, 48.440331933000039 ], [ -123.482136791999949, 48.441093909000045 ], [ -123.483039585999933, 48.441263187000089 ], [ -123.483931505999934, 48.441430404000066 ], [ -123.484772400999972, 48.441505403000065 ], [ -123.485553090999971, 48.44151940800004 ], [ -123.485690929, 48.44151200200006 ], [ -123.486310998999926, 48.441478803000116 ], [ -123.487098078999921, 48.441347798000102 ], [ -123.487313720999907, 48.441352904000105 ], [ -123.487326863999982, 48.441355422000086 ], [ -123.488024504999927, 48.441489694 ], [ -123.488462912999978, 48.441493799000071 ], [ -123.48941709899999, 48.441315306000043 ], [ -123.489820790999929, 48.441286087000037 ], [ -123.490167125999989, 48.441321296000105 ], [ -123.490737301, 48.44143670000004 ], [ -123.49087058399999, 48.441214496000065 ], [ -123.491019587, 48.44107639700011 ], [ -123.49123161699994, 48.440972306000035 ], [ -123.493344889999904, 48.44056790700008 ], [ -123.493759687999983, 48.441501109000015 ], [ -123.494086682999949, 48.442284296000103 ], [ -123.494577287999974, 48.443468191000086 ], [ -123.494707793, 48.443602914000053 ], [ -123.494895343999985, 48.443705662000049 ], [ -123.495411437999934, 48.443815527000076 ], [ -123.495638746999987, 48.443863924 ], [ -123.496794025, 48.443966969000023 ], [ -123.497196128999974, 48.444136047000079 ], [ -123.497031566999951, 48.444272865000066 ], [ -123.496937307999985, 48.444310871000013 ], [ -123.496908630999954, 48.444322424000049 ], [ -123.496871311999911, 48.444476446000081 ], [ -123.495061844999981, 48.444640397000107 ], [ -123.494293012999918, 48.444898263000063 ], [ -123.493832828999984, 48.445088228000024 ], [ -123.491635920999968, 48.445625116000066 ], [ -123.49173220699997, 48.446012293000088 ], [ -123.491439978999935, 48.446049599000055 ], [ -123.491471580999985, 48.445834790000042 ], [ -123.491457108999938, 48.445700029000115 ], [ -123.491208465999961, 48.445628109000069 ], [ -123.490531410999949, 48.445650243000053 ], [ -123.490543244999941, 48.44552993500011 ], [ -123.488624154999968, 48.445037899000042 ], [ -123.487692101999968, 48.444798895000112 ], [ -123.487126189999969, 48.444554832000115 ], [ -123.486827641999952, 48.444994335000061 ], [ -123.487039485999901, 48.445423384000037 ], [ -123.486957397999959, 48.445470459000056 ], [ -123.486654026999958, 48.445648106000085 ], [ -123.486559240999952, 48.446217214000043 ], [ -123.484702403999961, 48.445906954000151 ], [ -123.484223910999958, 48.445827008000023 ], [ -123.48256920099999, 48.445546900000117 ], [ -123.481434867999937, 48.445380178000029 ], [ -123.480734914999942, 48.445267968000067 ], [ -123.480070626999947, 48.44651460200005 ], [ -123.47969714599995, 48.447458823000034 ], [ -123.479696908999983, 48.447458907000048 ], [ -123.479575579999945, 48.447473029000079 ], [ -123.478984573999981, 48.447618892000044 ], [ -123.47888594699999, 48.447494648000031 ], [ -123.478330605999986, 48.446794900000093 ], [ -123.478121600999913, 48.446354801000098 ], [ -123.477972102999942, 48.446265103000044 ], [ -123.477431688999971, 48.44618670300008 ], [ -123.47708090799992, 48.446232284000047 ], [ -123.476503588999918, 48.446739291000085 ], [ -123.475978294999962, 48.447046892000046 ], [ -123.474642602999978, 48.447348894000065 ], [ -123.473821444999956, 48.447399673000078 ], [ -123.472615496999978, 48.447474207000063 ], [ -123.472287506999947, 48.447160890000042 ], [ -123.471855200999954, 48.447037012000067 ], [ -123.471313815999935, 48.447110994000091 ], [ -123.47088512199997, 48.44741870200005 ], [ -123.470219495, 48.447304702000032 ], [ -123.46982979399999, 48.447450006000025 ], [ -123.469457994, 48.448288913000127 ], [ -123.468933680999939, 48.448469700000039 ], [ -123.468397113999913, 48.449039405000072 ], [ -123.468081994999963, 48.449160591000087 ], [ -123.468651761999979, 48.447802035000016 ], [ -123.46848106799996, 48.447554785000044 ], [ -123.467807611999973, 48.448081793000071 ], [ -123.466379915999966, 48.449197200000057 ], [ -123.465636038999918, 48.449778358000053 ], [ -123.464659662999935, 48.449972945000127 ], [ -123.464948963999916, 48.449486597000018 ] ], [ [ -123.487567094, 48.442734405000067 ], [ -123.487849505, 48.442570705000072 ], [ -123.488107808999985, 48.442606290000043 ], [ -123.488295706999963, 48.442460985000011 ], [ -123.488538205999944, 48.442523686000158 ], [ -123.488701, 48.44241398600014 ], [ -123.488673115999973, 48.442351306000099 ], [ -123.487885307999989, 48.442112083999987 ], [ -123.48745560499999, 48.44224880600008 ], [ -123.48698169, 48.44223309700007 ], [ -123.486600381999935, 48.442099192000114 ], [ -123.48659861199998, 48.441874188000028 ], [ -123.486518505, 48.44183858500007 ], [ -123.486151308999951, 48.441812991000106 ], [ -123.485920306999915, 48.441679110000081 ], [ -123.485541698999924, 48.441617906000033 ], [ -123.483973219999953, 48.441616399000061 ], [ -123.483744004999906, 48.441689103000058 ], [ -123.483364708999929, 48.441636395000025 ], [ -123.483270783999913, 48.441709002000067 ], [ -123.483433792999932, 48.441834298000067 ], [ -123.483882396999931, 48.441966786000101 ], [ -123.483774106999988, 48.442075001000092 ], [ -123.483844087999927, 48.442164805000104 ], [ -123.485627901000015, 48.442238808000099 ], [ -123.487567094, 48.442734405000067 ] ], [ [ -123.476757119999888, 48.440602400000131 ], [ -123.476580993999917, 48.440576800000031 ], [ -123.476392513999912, 48.440756200000123 ], [ -123.476449397999914, 48.440882986000098 ], [ -123.47663710099998, 48.440881485000077 ], [ -123.476785614999955, 48.440700699000047 ], [ -123.476757119999888, 48.440602400000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343277169", "BldgCostT": "227826669", "sL_LossRatio": "0.868586431704682", "sL_AssetLoss": "579498", "sL_BldgLoss": "503344.1", "sL_StrLoss": "318410.1", "sL_NStrLoss": "184934", "sL_ContLoss": "76153.9", "geom_point": "0101000020E610000004CE4B8BDBDE5EC05AD5DD6554394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.469457994, 48.448288913000127 ], [ -123.46982979399999, 48.447450006000025 ], [ -123.470219495, 48.447304702000032 ], [ -123.47088512199997, 48.44741870200005 ], [ -123.471313815999935, 48.447110994000091 ], [ -123.471855200999954, 48.447037012000067 ], [ -123.472287506999947, 48.447160890000042 ], [ -123.472615496999978, 48.447474207000063 ], [ -123.473821444999956, 48.447399673000078 ], [ -123.474642602999978, 48.447348894000065 ], [ -123.475978294999962, 48.447046892000046 ], [ -123.476503588999918, 48.446739291000085 ], [ -123.47708090799992, 48.446232284000047 ], [ -123.477431688999971, 48.44618670300008 ], [ -123.477972102999942, 48.446265103000044 ], [ -123.478121600999913, 48.446354801000098 ], [ -123.478330605999986, 48.446794900000093 ], [ -123.47888594699999, 48.447494648000031 ], [ -123.478984573999981, 48.447618892000044 ], [ -123.479575579999945, 48.447473029000079 ], [ -123.479696908999983, 48.447458907000048 ], [ -123.47969714599995, 48.447458823000034 ], [ -123.480070626999947, 48.44651460200005 ], [ -123.480734914999942, 48.445267968000067 ], [ -123.481434867999937, 48.445380178000029 ], [ -123.48256920099999, 48.445546900000117 ], [ -123.484223910999958, 48.445827008000023 ], [ -123.484702403999961, 48.445906954000151 ], [ -123.486559240999952, 48.446217214000043 ], [ -123.486654026999958, 48.445648106000085 ], [ -123.486957397999959, 48.445470459000056 ], [ -123.487039485999901, 48.445423384000037 ], [ -123.486827641999952, 48.444994335000061 ], [ -123.487126189999969, 48.444554832000115 ], [ -123.487692101999968, 48.444798895000112 ], [ -123.488624154999968, 48.445037899000042 ], [ -123.490543244999941, 48.44552993500011 ], [ -123.490531410999949, 48.445650243000053 ], [ -123.490303471999965, 48.445645523000039 ], [ -123.490271303999947, 48.445639518000092 ], [ -123.489770002999961, 48.445623194000063 ], [ -123.489570509999936, 48.445652539000072 ], [ -123.489548307999954, 48.445655799000036 ], [ -123.489408116999968, 48.445754306000062 ], [ -123.489352781999969, 48.44591992400008 ], [ -123.48922668299997, 48.446297392000091 ], [ -123.489224704999984, 48.446412799000036 ], [ -123.490336169000031, 48.446458165000138 ], [ -123.49064830599994, 48.446470908000038 ], [ -123.491303289999962, 48.446540492000103 ], [ -123.492676487999958, 48.446683889000056 ], [ -123.493503484999948, 48.446843218 ], [ -123.49386981, 48.44693489300009 ], [ -123.49449320199993, 48.44709121600004 ], [ -123.495398795999932, 48.447373025 ], [ -123.495465232999933, 48.447393726000065 ], [ -123.495373493999963, 48.447683409000028 ], [ -123.49526838, 48.447699252000106 ], [ -123.494885784999937, 48.44770729200004 ], [ -123.494597012999961, 48.447680700000078 ], [ -123.49381810899996, 48.447836581000075 ], [ -123.493239490999926, 48.447952408000035 ], [ -123.491819608999961, 48.448217873000054 ], [ -123.491793623999939, 48.448222731000058 ], [ -123.490983215999918, 48.44837423600007 ], [ -123.48937337299995, 48.448675649000045 ], [ -123.488144904999928, 48.448905665000055 ], [ -123.487165696999952, 48.449089006000065 ], [ -123.485749493999919, 48.449372803000074 ], [ -123.485429371999885, 48.449543122000115 ], [ -123.485343897999925, 48.4495885850001 ], [ -123.485150402999977, 48.449691326000114 ], [ -123.484791002999913, 48.449882090000095 ], [ -123.48413117299999, 48.450182006000077 ], [ -123.483406420000023, 48.450433506000152 ], [ -123.482955843999918, 48.450529202000105 ], [ -123.482435416999962, 48.450593489 ], [ -123.48212659099994, 48.450594653000088 ], [ -123.481551079999988, 48.450596820000037 ], [ -123.480803404999946, 48.450511685 ], [ -123.480249610999948, 48.450448636000083 ], [ -123.480053727999916, 48.450451187000034 ], [ -123.479550579999952, 48.450520362000056 ], [ -123.479263948999957, 48.450503620000163 ], [ -123.479102929999925, 48.450472031000132 ], [ -123.478406311999962, 48.450335325000083 ], [ -123.47805843699993, 48.44982209100003 ], [ -123.477965889999979, 48.44948171100004 ], [ -123.477847488999885, 48.449297720000096 ], [ -123.477241106999927, 48.448771921000088 ], [ -123.475998186999959, 48.447957805000044 ], [ -123.475367132999935, 48.447955810000039 ], [ -123.474182067999948, 48.447952039000036 ], [ -123.471750893999953, 48.448830409000074 ], [ -123.471355205999913, 48.449035563000095 ], [ -123.471025875999928, 48.449262159000071 ], [ -123.46997139799997, 48.450301020000111 ], [ -123.469905099999977, 48.450354042000122 ], [ -123.469635957999955, 48.450569300000105 ], [ -123.469576358999973, 48.450616986000099 ], [ -123.469513458999984, 48.450667293 ], [ -123.469482034999942, 48.450692424000188 ], [ -123.469028101999953, 48.450976432000076 ], [ -123.468164248999955, 48.449882138000113 ], [ -123.468047954999975, 48.449601965000085 ], [ -123.468081994999963, 48.449160591000087 ], [ -123.468397113999913, 48.449039405000072 ], [ -123.468933680999939, 48.448469700000039 ], [ -123.469457994, 48.448288913000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "256037334", "BldgCostT": "164618334", "sL_LossRatio": "0.824791054931656", "sL_AssetLoss": "630345.1", "sL_BldgLoss": "519903", "sL_StrLoss": "361047", "sL_NStrLoss": "158856", "sL_ContLoss": "110442.1", "geom_point": "0101000020E6100000A0257E7B4DDF5EC0CAB072E4D8394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.48599747199999, 48.451672874000046 ], [ -123.48617325399999, 48.451304440000094 ], [ -123.486165763999978, 48.451180258000058 ], [ -123.486145281999967, 48.450839402000099 ], [ -123.48565470199999, 48.449962096000021 ], [ -123.485648093999941, 48.449954156000068 ], [ -123.485605860999939, 48.449903391000085 ], [ -123.485343897999925, 48.4495885850001 ], [ -123.485429371999885, 48.449543122000115 ], [ -123.485749493999919, 48.449372803000074 ], [ -123.487165696999952, 48.449089006000065 ], [ -123.488144904999928, 48.448905665000055 ], [ -123.48937337299995, 48.448675649000045 ], [ -123.490983215999918, 48.44837423600007 ], [ -123.491793623999939, 48.448222731000058 ], [ -123.491819608999961, 48.448217873000054 ], [ -123.493239490999926, 48.447952408000035 ], [ -123.493720300999939, 48.449119814000063 ], [ -123.493706020999952, 48.449388207000062 ], [ -123.492642793999892, 48.449584001000119 ], [ -123.492078395999926, 48.449713201000158 ], [ -123.49202512, 48.449725405000081 ], [ -123.491754551999961, 48.449803161 ], [ -123.491667874999962, 48.449828064000044 ], [ -123.491605965999938, 48.44984586300005 ], [ -123.491367182999966, 48.449914475000099 ], [ -123.491382674999954, 48.449938198000019 ], [ -123.491452055999943, 48.45004453400005 ], [ -123.491482094999967, 48.450165159000129 ], [ -123.491455778999949, 48.450236968000048 ], [ -123.491439481000015, 48.450281385000025 ], [ -123.491333125999972, 48.450378062000077 ], [ -123.490933646999963, 48.450529099000057 ], [ -123.490794556999944, 48.45065655100008 ], [ -123.490581202999977, 48.451065379000127 ], [ -123.490544664999959, 48.451186206000038 ], [ -123.490510801000013, 48.451298164000093 ], [ -123.490509524999965, 48.451449638000064 ], [ -123.490593284999989, 48.4517022960001 ], [ -123.491436817999926, 48.451654693000073 ], [ -123.491788974999949, 48.451707198000079 ], [ -123.491823997999958, 48.452370816000055 ], [ -123.491899109999977, 48.452735899000068 ], [ -123.491893009999956, 48.453055887000048 ], [ -123.491770009000035, 48.45359219400008 ], [ -123.491054315999961, 48.454283084000082 ], [ -123.49062448299992, 48.454787440000089 ], [ -123.490502909999947, 48.454930094000083 ], [ -123.490219087999918, 48.45506319900008 ], [ -123.489964217999969, 48.45528710300011 ], [ -123.489695101999928, 48.455905600000065 ], [ -123.489418196999935, 48.456238997000106 ], [ -123.489188597999927, 48.456749299000066 ], [ -123.488778676999942, 48.456586294000054 ], [ -123.486893090999956, 48.456045707000115 ], [ -123.486618307999919, 48.455958888000048 ], [ -123.486630518999974, 48.455937943000094 ], [ -123.48711154899992, 48.455111257000063 ], [ -123.486266800999914, 48.452844089000038 ], [ -123.486036242999958, 48.452103737000066 ], [ -123.485990574999931, 48.451718505000059 ], [ -123.485992446999902, 48.45168338200007 ], [ -123.48599747199999, 48.451672874000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243164076", "BldgCostT": "153078872", "sL_LossRatio": "0.696443621861157", "sL_AssetLoss": "635126.5", "sL_BldgLoss": "442329.8", "sL_StrLoss": "255389.8", "sL_NStrLoss": "186940", "sL_ContLoss": "192796.7", "geom_point": "0101000020E61000007B3835C8CBDF5EC0C1FE4696A7394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.496701812999945, 48.453609703000076 ], [ -123.496112490999934, 48.453471304000111 ], [ -123.495928321999898, 48.453507606000095 ], [ -123.49567073499999, 48.453521491000103 ], [ -123.495479910999933, 48.453531254000083 ], [ -123.49541939099997, 48.453380116000098 ], [ -123.495268706999966, 48.452529822000088 ], [ -123.49526718499996, 48.452074917000111 ], [ -123.495264600999988, 48.451307887000056 ], [ -123.495166871, 48.450349745000103 ], [ -123.495016101999951, 48.450387144000075 ], [ -123.494922817999964, 48.450446787000018 ], [ -123.494844421, 48.450423634000138 ], [ -123.49478327199995, 48.450405601000057 ], [ -123.49389890399999, 48.450612819000121 ], [ -123.493664995999922, 48.450619906000099 ], [ -123.493692354999922, 48.449798496000035 ], [ -123.493706020999952, 48.449388207000062 ], [ -123.493720300999939, 48.449119814000063 ], [ -123.493239490999926, 48.447952408000035 ], [ -123.49381810899996, 48.447836581000075 ], [ -123.494597012999961, 48.447680700000078 ], [ -123.494885784999937, 48.44770729200004 ], [ -123.49526838, 48.447699252000106 ], [ -123.495373493999963, 48.447683409000028 ], [ -123.495465232999933, 48.447393726000065 ], [ -123.495627691, 48.44746161000009 ], [ -123.498446906999959, 48.448592195000067 ], [ -123.499377501999973, 48.448990197000086 ], [ -123.499666805999965, 48.449112157000087 ], [ -123.499864695, 48.449195599000035 ], [ -123.500000475999954, 48.449234957000023 ], [ -123.500118614999948, 48.44926919200006 ], [ -123.500636332999946, 48.449358083000028 ], [ -123.498499657999943, 48.452875790000093 ], [ -123.49843834899994, 48.452886055000093 ], [ -123.498405370999976, 48.452923138000052 ], [ -123.498420717000016, 48.452965001000038 ], [ -123.497984283999969, 48.453864523000021 ], [ -123.497804197999955, 48.454156011000052 ], [ -123.496701812999945, 48.453609703000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223922501", "BldgCostT": "146005001", "sL_LossRatio": "0.831535957119441", "sL_AssetLoss": "519358.9", "sL_BldgLoss": "431865.6", "sL_StrLoss": "310238.3", "sL_NStrLoss": "121627.3", "sL_ContLoss": "87493.3", "geom_point": "0101000020E6100000EAEF3A559DDF5EC08ACB0BF22B3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.489695101999928, 48.455905600000065 ], [ -123.489964217999969, 48.45528710300011 ], [ -123.490219087999918, 48.45506319900008 ], [ -123.490502909999947, 48.454930094000083 ], [ -123.49062448299992, 48.454787440000089 ], [ -123.491054315999961, 48.454283084000082 ], [ -123.491770009000035, 48.45359219400008 ], [ -123.491893009999956, 48.453055887000048 ], [ -123.491899109999977, 48.452735899000068 ], [ -123.491823997999958, 48.452370816000055 ], [ -123.491788974999949, 48.451707198000079 ], [ -123.491436817999926, 48.451654693000073 ], [ -123.490593284999989, 48.4517022960001 ], [ -123.490509524999965, 48.451449638000064 ], [ -123.490510801000013, 48.451298164000093 ], [ -123.490544664999959, 48.451186206000038 ], [ -123.490581202999977, 48.451065379000127 ], [ -123.490794556999944, 48.45065655100008 ], [ -123.490933646999963, 48.450529099000057 ], [ -123.491333125999972, 48.450378062000077 ], [ -123.491439481000015, 48.450281385000025 ], [ -123.491455778999949, 48.450236968000048 ], [ -123.491482094999967, 48.450165159000129 ], [ -123.491452055999943, 48.45004453400005 ], [ -123.491382674999954, 48.449938198000019 ], [ -123.491367182999966, 48.449914475000099 ], [ -123.491605965999938, 48.44984586300005 ], [ -123.491667874999962, 48.449828064000044 ], [ -123.491754551999961, 48.449803161 ], [ -123.49202512, 48.449725405000081 ], [ -123.492078395999926, 48.449713201000158 ], [ -123.492642793999892, 48.449584001000119 ], [ -123.493706020999952, 48.449388207000062 ], [ -123.493692354999922, 48.449798496000035 ], [ -123.493664995999922, 48.450619906000099 ], [ -123.49389890399999, 48.450612819000121 ], [ -123.49478327199995, 48.450405601000057 ], [ -123.494844421, 48.450423634000138 ], [ -123.494922817999964, 48.450446787000018 ], [ -123.495016101999951, 48.450387144000075 ], [ -123.495166871, 48.450349745000103 ], [ -123.495264600999988, 48.451307887000056 ], [ -123.49526718499996, 48.452074917000111 ], [ -123.495268706999966, 48.452529822000088 ], [ -123.49541939099997, 48.453380116000098 ], [ -123.495479910999933, 48.453531254000083 ], [ -123.49567073499999, 48.453521491000103 ], [ -123.495928321999898, 48.453507606000095 ], [ -123.496112490999934, 48.453471304000111 ], [ -123.496701812999945, 48.453609703000076 ], [ -123.497804197999955, 48.454156011000052 ], [ -123.497984283999969, 48.453864523000021 ], [ -123.49912740900001, 48.454151212000049 ], [ -123.500328896999974, 48.454457308000087 ], [ -123.500108197999964, 48.454867121000106 ], [ -123.499445613999939, 48.456097399000022 ], [ -123.499083700999947, 48.45620161500004 ], [ -123.498805484999963, 48.456228406000015 ], [ -123.498060806999888, 48.456339859000124 ], [ -123.497710256999937, 48.456315309000026 ], [ -123.497354264999942, 48.456182775000052 ], [ -123.496829732999956, 48.455801832000091 ], [ -123.49664359499999, 48.455754418000055 ], [ -123.496881873999968, 48.456276456000083 ], [ -123.496928929999953, 48.456379483000113 ], [ -123.497020993999953, 48.45658119800008 ], [ -123.497051526999911, 48.45666446000012 ], [ -123.49708941699997, 48.456767703000018 ], [ -123.497162496999962, 48.456967813000112 ], [ -123.49531551099993, 48.457226199000061 ], [ -123.494046176999973, 48.457510004000071 ], [ -123.494010795999941, 48.457522543000053 ], [ -123.49318222, 48.457816011000027 ], [ -123.492084790999954, 48.458396797000063 ], [ -123.491909325999984, 48.458510715000052 ], [ -123.491737364999949, 48.458622318000039 ], [ -123.491489092999942, 48.458506273000083 ], [ -123.491240021999943, 48.458236202000101 ], [ -123.491190105999948, 48.458134005000019 ], [ -123.490847157999951, 48.457908845000098 ], [ -123.490802595999966, 48.457879597000122 ], [ -123.49059639699999, 48.457619491000102 ], [ -123.490454952, 48.457525302000121 ], [ -123.490093465999948, 48.457284607000062 ], [ -123.489883112999962, 48.457144493000079 ], [ -123.489188597999927, 48.456749299000066 ], [ -123.489418196999935, 48.456238997000106 ], [ -123.489695101999928, 48.455905600000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "567794640", "BldgCostT": "377286610", "sL_LossRatio": "0.766766898245709", "sL_AssetLoss": "747635.3", "sL_BldgLoss": "573262", "sL_StrLoss": "355115", "sL_NStrLoss": "218147", "sL_ContLoss": "174373.3", "geom_point": "0101000020E6100000146259BC1AE05EC03DFB351FF8394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.496928929999953, 48.456379483000113 ], [ -123.496881873999968, 48.456276456000083 ], [ -123.49664359499999, 48.455754418000055 ], [ -123.496829732999956, 48.455801832000091 ], [ -123.497354264999942, 48.456182775000052 ], [ -123.497710256999937, 48.456315309000026 ], [ -123.498060806999888, 48.456339859000124 ], [ -123.498805484999963, 48.456228406000015 ], [ -123.499083700999947, 48.45620161500004 ], [ -123.499445613999939, 48.456097399000022 ], [ -123.500108197999964, 48.454867121000106 ], [ -123.500328896999974, 48.454457308000087 ], [ -123.49912740900001, 48.454151212000049 ], [ -123.497984283999969, 48.453864523000021 ], [ -123.498420717000016, 48.452965001000038 ], [ -123.498405370999976, 48.452923138000052 ], [ -123.49843834899994, 48.452886055000093 ], [ -123.498499657999943, 48.452875790000093 ], [ -123.500636332999946, 48.449358083000028 ], [ -123.501212598999956, 48.449443534000117 ], [ -123.502826225, 48.449682744000029 ], [ -123.503471705999928, 48.449778400000078 ], [ -123.503495288999929, 48.449786394000064 ], [ -123.503866912999925, 48.449912195000103 ], [ -123.504596506, 48.450206216000069 ], [ -123.505018303999989, 48.450335074000087 ], [ -123.505165361999943, 48.450380011000078 ], [ -123.505703093999927, 48.450544302000033 ], [ -123.505196144999942, 48.451067457000114 ], [ -123.505186312999967, 48.451077602000126 ], [ -123.50444060300002, 48.452319438000096 ], [ -123.504111807999919, 48.452867040000115 ], [ -123.503823921999953, 48.453346446000104 ], [ -123.503595218, 48.45372728300007 ], [ -123.503840718999982, 48.453768211000082 ], [ -123.504206793999941, 48.453829193000033 ], [ -123.505304014000018, 48.454014596 ], [ -123.505685430999904, 48.45409027800013 ], [ -123.505938617, 48.454140506000087 ], [ -123.505880919999967, 48.454156327000121 ], [ -123.505490602999942, 48.454263396000044 ], [ -123.505233181999941, 48.454352573000044 ], [ -123.504506116999949, 48.454604508000102 ], [ -123.503953479999964, 48.45484210300004 ], [ -123.501710204999981, 48.455932612000055 ], [ -123.500769584999915, 48.456284692000089 ], [ -123.499865080999953, 48.456538299000044 ], [ -123.499438231999989, 48.456622872000018 ], [ -123.498766806999981, 48.456755900000125 ], [ -123.497711254999942, 48.456894287000104 ], [ -123.49733273599999, 48.456943926000051 ], [ -123.49729858799999, 48.456948407000091 ], [ -123.497162496999962, 48.456967813000112 ], [ -123.49708941699997, 48.456767703000018 ], [ -123.497051526999911, 48.45666446000012 ], [ -123.497020993999953, 48.45658119800008 ], [ -123.496928929999953, 48.456379483000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "721733720", "BldgCostT": "456949410", "sL_LossRatio": "0.681595867436651", "sL_AssetLoss": "1567027.4", "sL_BldgLoss": "1068079.4", "sL_StrLoss": "547950.4", "sL_NStrLoss": "520129", "sL_ContLoss": "498948", "geom_point": "0101000020E61000003D32F2263DE05EC0B0D4473B49394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.500118614999948, 48.44926919200006 ], [ -123.500000475999954, 48.449234957000023 ], [ -123.499864695, 48.449195599000035 ], [ -123.499666805999965, 48.449112157000087 ], [ -123.499377501999973, 48.448990197000086 ], [ -123.498446906999959, 48.448592195000067 ], [ -123.495627691, 48.44746161000009 ], [ -123.495701646999933, 48.447315508000088 ], [ -123.495808574999984, 48.447104264000096 ], [ -123.496219936999978, 48.447033729000047 ], [ -123.498502699999946, 48.446611184000126 ], [ -123.498762579999919, 48.446563075000022 ], [ -123.500583267999914, 48.446226031000087 ], [ -123.502410961999942, 48.445865174000062 ], [ -123.502548641999979, 48.445773117000066 ], [ -123.502585841, 48.445723216000104 ], [ -123.502585127999964, 48.445558181000067 ], [ -123.502887308999945, 48.445637463000018 ], [ -123.502791454999951, 48.445791196000108 ], [ -123.502638462999982, 48.446030154000105 ], [ -123.502934389999922, 48.445793655000067 ], [ -123.503277913999952, 48.445729614000143 ], [ -123.507600179999926, 48.444876558 ], [ -123.508426339999957, 48.444720083000036 ], [ -123.50908092799996, 48.444771542000105 ], [ -123.508960848999948, 48.444974709000107 ], [ -123.508901608999949, 48.445074911000056 ], [ -123.508492715999978, 48.445766698000071 ], [ -123.50975508099998, 48.446090406000089 ], [ -123.508943422999977, 48.447446105000097 ], [ -123.508551891, 48.448099993000014 ], [ -123.50755069399996, 48.449731092000015 ], [ -123.506360101999945, 48.449400997000076 ], [ -123.505703093999927, 48.450544302000033 ], [ -123.505165361999943, 48.450380011000078 ], [ -123.505018303999989, 48.450335074000087 ], [ -123.504596506, 48.450206216000069 ], [ -123.503866912999925, 48.449912195000103 ], [ -123.503495288999929, 48.449786394000064 ], [ -123.503471705999928, 48.449778400000078 ], [ -123.502826225, 48.449682744000029 ], [ -123.501212598999956, 48.449443534000117 ], [ -123.500636332999946, 48.449358083000028 ], [ -123.500118614999948, 48.44926919200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194526415", "BldgCostT": "122447384", "sL_LossRatio": "0.815971668644783", "sL_AssetLoss": "677412", "sL_BldgLoss": "552749", "sL_StrLoss": "286308", "sL_NStrLoss": "266441", "sL_ContLoss": "124663", "geom_point": "0101000020E6100000DA4FC5AEA9E05EC03D26725E6F394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.505703093999927, 48.450544302000033 ], [ -123.506360101999945, 48.449400997000076 ], [ -123.50755069399996, 48.449731092000015 ], [ -123.508551891, 48.448099993000014 ], [ -123.508943422999977, 48.447446105000097 ], [ -123.50975508099998, 48.446090406000089 ], [ -123.510992482999981, 48.446405298000073 ], [ -123.514527007999916, 48.447337802000035 ], [ -123.51420819, 48.447702714000165 ], [ -123.51364857799993, 48.448475268000045 ], [ -123.51342659699999, 48.448781701000051 ], [ -123.513103, 48.449415288000097 ], [ -123.513013800999929, 48.449674705000056 ], [ -123.51304709899992, 48.449810683000059 ], [ -123.512478240999926, 48.449937960000085 ], [ -123.511872462, 48.450073465000131 ], [ -123.51099983899995, 48.45026487300003 ], [ -123.509343222999959, 48.450629904000017 ], [ -123.508626297999925, 48.450786189000041 ], [ -123.507993918, 48.450926399000146 ], [ -123.507627636, 48.450961059000058 ], [ -123.507176468999916, 48.450941427000117 ], [ -123.506661669999929, 48.450848236000034 ], [ -123.505703093999927, 48.450544302000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254462396", "BldgCostT": "171446525", "sL_LossRatio": "0.844595621624324", "sL_AssetLoss": "601972.1", "sL_BldgLoss": "508423", "sL_StrLoss": "308396", "sL_NStrLoss": "200027", "sL_ContLoss": "93549.1", "geom_point": "0101000020E61000002897855DF1E05EC0AA5DFB7E41394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.513013800999929, 48.449674705000056 ], [ -123.513103, 48.449415288000097 ], [ -123.51342659699999, 48.448781701000051 ], [ -123.51364857799993, 48.448475268000045 ], [ -123.51420819, 48.447702714000165 ], [ -123.514527007999916, 48.447337802000035 ], [ -123.510992482999981, 48.446405298000073 ], [ -123.50975508099998, 48.446090406000089 ], [ -123.508492715999978, 48.445766698000071 ], [ -123.508901608999949, 48.445074911000056 ], [ -123.508960848999948, 48.444974709000107 ], [ -123.50908092799996, 48.444771542000105 ], [ -123.509769655999946, 48.444918492000028 ], [ -123.510223136, 48.444816442000054 ], [ -123.510488986999931, 48.444817279000063 ], [ -123.510881902999984, 48.44491667800007 ], [ -123.51344689699999, 48.445572981000062 ], [ -123.514145032999934, 48.445746269000075 ], [ -123.515458703999983, 48.446072851000061 ], [ -123.518008496999968, 48.446738605000043 ], [ -123.518958667999968, 48.44698082300004 ], [ -123.51950023199997, 48.447118884000126 ], [ -123.519049313999943, 48.447918106000067 ], [ -123.518851411999933, 48.448268702000107 ], [ -123.518580904999979, 48.448741207000047 ], [ -123.518390475999951, 48.449081630000052 ], [ -123.518059607999959, 48.449673102000084 ], [ -123.515949386999964, 48.449549051000119 ], [ -123.515692056999953, 48.44953393600013 ], [ -123.515123287999941, 48.44950049800012 ], [ -123.514687789999968, 48.44949029900004 ], [ -123.514671461999967, 48.449492754000083 ], [ -123.514157191, 48.449569891000117 ], [ -123.513232882999944, 48.449770401000144 ], [ -123.51304709899992, 48.449810683000059 ], [ -123.513013800999929, 48.449674705000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163595833", "BldgCostT": "102477348", "sL_LossRatio": "0.852397674579489", "sL_AssetLoss": "267562.79", "sL_BldgLoss": "228069.9", "sL_StrLoss": "158210.6", "sL_NStrLoss": "69859.3", "sL_ContLoss": "39492.89", "geom_point": "0101000020E610000096798AA01AE15EC05EFD22B2D9394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.516290981999958, 48.451795576000059 ], [ -123.516285509999975, 48.45125580900001 ], [ -123.515474103999964, 48.451259447000048 ], [ -123.515476834999959, 48.451529330000028 ], [ -123.515882540999939, 48.451527512000013 ], [ -123.515885274999931, 48.45179739600006 ], [ -123.516290981999958, 48.451795576000059 ], [ -123.516299190999959, 48.452605226000095 ], [ -123.515893476999963, 48.452607046000018 ], [ -123.515904413, 48.453686579000092 ], [ -123.516715857999898, 48.453682938000021 ], [ -123.516718737999923, 48.453966704000038 ], [ -123.516721630999953, 48.454251843000044 ], [ -123.514411580999976, 48.453589355000133 ], [ -123.512766730999928, 48.453164836000099 ], [ -123.512207977999978, 48.453059736000057 ], [ -123.511623395999933, 48.453009917000053 ], [ -123.511137831999974, 48.453002136000073 ], [ -123.510534157, 48.453058287000083 ], [ -123.509949427999942, 48.453164452000038 ], [ -123.509005613999989, 48.453373977000048 ], [ -123.508321300999967, 48.453545015000053 ], [ -123.506651224, 48.453962425000064 ], [ -123.506138490999902, 48.454090547000128 ], [ -123.505938617, 48.454140506000087 ], [ -123.505685430999904, 48.45409027800013 ], [ -123.505304014000018, 48.454014596 ], [ -123.504206793999941, 48.453829193000033 ], [ -123.503840718999982, 48.453768211000082 ], [ -123.503595218, 48.45372728300007 ], [ -123.503823921999953, 48.453346446000104 ], [ -123.504111807999919, 48.452867040000115 ], [ -123.50444060300002, 48.452319438000096 ], [ -123.505186312999967, 48.451077602000126 ], [ -123.505196144999942, 48.451067457000114 ], [ -123.505703093999927, 48.450544302000033 ], [ -123.506661669999929, 48.450848236000034 ], [ -123.507176468999916, 48.450941427000117 ], [ -123.507627636, 48.450961059000058 ], [ -123.507993918, 48.450926399000146 ], [ -123.508626297999925, 48.450786189000041 ], [ -123.509343222999959, 48.450629904000017 ], [ -123.51099983899995, 48.45026487300003 ], [ -123.511872462, 48.450073465000131 ], [ -123.512478240999926, 48.449937960000085 ], [ -123.51304709899992, 48.449810683000059 ], [ -123.513232882999944, 48.449770401000144 ], [ -123.514157191, 48.449569891000117 ], [ -123.514671461999967, 48.449492754000083 ], [ -123.514687789999968, 48.44949029900004 ], [ -123.515123287999941, 48.44950049800012 ], [ -123.515692056999953, 48.44953393600013 ], [ -123.515949386999964, 48.449549051000119 ], [ -123.518059607999959, 48.449673102000084 ], [ -123.518312503999979, 48.449689814000067 ], [ -123.518847764999961, 48.449656304000044 ], [ -123.519172405999953, 48.449635998000133 ], [ -123.519379722999957, 48.449609511000084 ], [ -123.519739117, 48.44956360200009 ], [ -123.520044887999944, 48.449483559000043 ], [ -123.52082027599999, 48.44928059300009 ], [ -123.521301906999952, 48.44915659600008 ], [ -123.521844013999925, 48.449115192000072 ], [ -123.522233822999979, 48.449146806000037 ], [ -123.522726209999959, 48.449281890000023 ], [ -123.523432493, 48.449532794000078 ], [ -123.524754215999934, 48.449760297000125 ], [ -123.525024749999957, 48.449851908000028 ], [ -123.525283404999954, 48.449939496000113 ], [ -123.526645921999943, 48.450477058000082 ], [ -123.526728898999949, 48.450509799000052 ], [ -123.527222395999956, 48.450752989000051 ], [ -123.527637406999986, 48.451026009000017 ], [ -123.528540135999904, 48.451963389000063 ], [ -123.528792301999914, 48.452225190000014 ], [ -123.528459200999947, 48.452709708000057 ], [ -123.528151709999946, 48.452729585000078 ], [ -123.527870694999976, 48.453250596000046 ], [ -123.527821893999942, 48.453485711000042 ], [ -123.526925327999948, 48.454174795000093 ], [ -123.526838823999981, 48.454203523000089 ], [ -123.526838605999956, 48.454203632000031 ], [ -123.526614032999959, 48.454278303000088 ], [ -123.52668953899996, 48.453568761000113 ], [ -123.52685528799995, 48.453286663000064 ], [ -123.52685343899995, 48.45310791000005 ], [ -123.525650581999983, 48.453079821000117 ], [ -123.52556966399996, 48.454625548000109 ], [ -123.524815685999982, 48.454876229000043 ], [ -123.523933804999942, 48.455114420000022 ], [ -123.523384591999928, 48.455204478000113 ], [ -123.522908481999977, 48.455282530000041 ], [ -123.522147648999962, 48.455323328000077 ], [ -123.521971026999935, 48.455317185000091 ], [ -123.521355308999915, 48.455295790000037 ], [ -123.52044760499993, 48.455151001000033 ], [ -123.520146453999971, 48.455070256000099 ], [ -123.52017987899994, 48.454433174000087 ], [ -123.52026374699993, 48.452834561 ], [ -123.519918805999936, 48.452826486000077 ], [ -123.519953789999988, 48.452159725000108 ], [ -123.519717036999936, 48.452154182000058 ], [ -123.519750833, 48.45151010700004 ], [ -123.519128183999968, 48.451512917000045 ], [ -123.519130934999964, 48.451782800000096 ], [ -123.51888244300001, 48.451783920000047 ], [ -123.518727000999945, 48.451958617000045 ], [ -123.518733473999973, 48.452594280000049 ], [ -123.518470926999896, 48.452595462000048 ], [ -123.518453518999976, 48.452595541000036 ], [ -123.517110619, 48.452601582000092 ], [ -123.517102398999938, 48.451791934000042 ], [ -123.516290981999958, 48.451795576000059 ] ], [ [ -123.526992449999952, 48.451480653000019 ], [ -123.526922011999901, 48.452826975000043 ], [ -123.527087948999977, 48.452826214000069 ], [ -123.527206637999981, 48.452586661000069 ], [ -123.527233645999971, 48.452077444000061 ], [ -123.527238282999946, 48.451988806 ], [ -123.527073738999945, 48.451533761000064 ], [ -123.526992449999952, 48.451480653000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9509584", "BldgCostT": "6558334", "sL_LossRatio": "0.948392348525671", "sL_AssetLoss": "12210.98", "sL_BldgLoss": "11580.8", "sL_StrLoss": "8753.1", "sL_NStrLoss": "2827.7", "sL_ContLoss": "630.18", "geom_point": "0101000020E61000009EFDFD39F7E15EC029DD23BC393A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.535410271999936, 48.456566335000083 ], [ -123.535409568999953, 48.456499576000091 ], [ -123.532893569999942, 48.456441017000067 ], [ -123.532927314999966, 48.455794550000029 ], [ -123.532371489999932, 48.455781605 ], [ -123.532401215000036, 48.455212239000026 ], [ -123.532378322999975, 48.455211706000085 ], [ -123.532380516999979, 48.455169699000116 ], [ -123.527078338999928, 48.455046068000058 ], [ -123.52712561700001, 48.454142413000064 ], [ -123.526668865999966, 48.454274259000023 ], [ -123.526612737999969, 48.454290461 ], [ -123.526614032999959, 48.454278303000088 ], [ -123.526838605999956, 48.454203632000031 ], [ -123.526838823999981, 48.454203523000089 ], [ -123.526925327999948, 48.454174795000093 ], [ -123.527405429999973, 48.454015177 ], [ -123.528231060999957, 48.453792779000011 ], [ -123.528689297999961, 48.453729527000107 ], [ -123.529389777999967, 48.453707097000063 ], [ -123.530028318999925, 48.453758062000148 ], [ -123.530496076999952, 48.453848318000034 ], [ -123.531089512999969, 48.454039774000087 ], [ -123.531854833999944, 48.45437770000008 ], [ -123.534157474, 48.455703021000069 ], [ -123.535564499999936, 48.456512802000084 ], [ -123.535655538999947, 48.456565194000163 ], [ -123.535410271999936, 48.456566335000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2300667", "BldgCostT": "1586667", "sL_LossRatio": "0.942137869903824", "sL_AssetLoss": "2109.67", "sL_BldgLoss": "1987.6", "sL_StrLoss": "1375.9", "sL_NStrLoss": "611.7", "sL_ContLoss": "122.07", "geom_point": "0101000020E61000007099B25788E25EC02C674A46293B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.538721902999967, 48.462758474000111 ], [ -123.53871904799999, 48.462488592000071 ], [ -123.538313255999967, 48.462490491000096 ], [ -123.538304694999937, 48.461680844000064 ], [ -123.54073940399995, 48.461669431000082 ], [ -123.540750870999929, 48.462748958000077 ], [ -123.538721902999967, 48.462758474000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2300667", "BldgCostT": "1586667", "sL_LossRatio": "0.956284063095004", "sL_AssetLoss": "1519.423", "sL_BldgLoss": "1453", "sL_StrLoss": "1046.2", "sL_NStrLoss": "406.8", "sL_ContLoss": "66.423", "geom_point": "0101000020E6100000B384EFDC7FE15EC040248D1B483A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.520125436999962, 48.455470831000113 ], [ -123.520141916999989, 48.45515673700006 ], [ -123.520146453999971, 48.455070256000099 ], [ -123.52044760499993, 48.455151001000033 ], [ -123.521355308999915, 48.455295790000037 ], [ -123.521971026999935, 48.455317185000091 ], [ -123.522147648999962, 48.455323328000077 ], [ -123.522908481999977, 48.455282530000041 ], [ -123.523384591999928, 48.455204478000113 ], [ -123.523933804999942, 48.455114420000022 ], [ -123.524815685999982, 48.454876229000043 ], [ -123.52556966399996, 48.454625548000109 ], [ -123.525566176999973, 48.454692151000053 ], [ -123.525515732999978, 48.455655693000054 ], [ -123.522025668999945, 48.455574118000115 ], [ -123.52067283099997, 48.455542467000065 ], [ -123.520122354999955, 48.455529583000043 ], [ -123.520125436999962, 48.455470831000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268056167", "BldgCostT": "165241667", "sL_LossRatio": "0.936655003865222", "sL_AssetLoss": "155903.08", "sL_BldgLoss": "146027.4", "sL_StrLoss": "115231.5", "sL_NStrLoss": "30795.9", "sL_ContLoss": "9875.68", "geom_point": "0101000020E610000002468755F6E05EC0343C4041F33A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.510468660999891, 48.465578754000099 ], [ -123.510448150999977, 48.465148160000062 ], [ -123.510652341999986, 48.464783262000033 ], [ -123.51065323899995, 48.464714461000071 ], [ -123.509368192999915, 48.464503298000075 ], [ -123.50935731, 48.46437590400005 ], [ -123.509401686, 48.464251605000086 ], [ -123.509668210999962, 48.463984698000019 ], [ -123.509149005999944, 48.463717292000112 ], [ -123.508976192999981, 48.463537395000131 ], [ -123.508887899999976, 48.463418997000048 ], [ -123.508834486999945, 48.463228393000044 ], [ -123.508830912999926, 48.463040799000105 ], [ -123.508931814999954, 48.462741103000042 ], [ -123.508954228999926, 48.462545903 ], [ -123.508907793999938, 48.462351001000094 ], [ -123.508776911999959, 48.462144119000136 ], [ -123.508579207999915, 48.461975315000082 ], [ -123.50818709499994, 48.461806525000064 ], [ -123.508351492999935, 48.461633602000056 ], [ -123.508598691999921, 48.461478009000075 ], [ -123.508725805999987, 48.46141792100012 ], [ -123.509052902999898, 48.461263317000075 ], [ -123.509216617999968, 48.461178806000163 ], [ -123.509649891999985, 48.460821998 ], [ -123.509968741999927, 48.460675619 ], [ -123.510026688999972, 48.460589977000012 ], [ -123.510091871999961, 48.460377110000074 ], [ -123.510052663999957, 48.45960679000008 ], [ -123.50891425499999, 48.458109875000048 ], [ -123.5088674499999, 48.458048356000106 ], [ -123.509439053999984, 48.457572668000097 ], [ -123.509281481999935, 48.457129836000043 ], [ -123.509148218999883, 48.45694366200005 ], [ -123.508942778999966, 48.45687120200008 ], [ -123.508285407999935, 48.456741232000084 ], [ -123.508090582999955, 48.456646468000059 ], [ -123.50800960699999, 48.456518316000064 ], [ -123.507894794999942, 48.455699618000047 ], [ -123.507797402999984, 48.455370020000089 ], [ -123.507440827999943, 48.454818397000039 ], [ -123.507245701, 48.454516604000098 ], [ -123.506541494999937, 48.454226787000067 ], [ -123.505938617, 48.454140506000087 ], [ -123.506138490999902, 48.454090547000128 ], [ -123.506651224, 48.453962425000064 ], [ -123.508321300999967, 48.453545015000053 ], [ -123.509005613999989, 48.453373977000048 ], [ -123.509949427999942, 48.453164452000038 ], [ -123.510534157, 48.453058287000083 ], [ -123.511137831999974, 48.453002136000073 ], [ -123.511623395999933, 48.453009917000053 ], [ -123.512207977999978, 48.453059736000057 ], [ -123.512766730999928, 48.453164836000099 ], [ -123.514411580999976, 48.453589355000133 ], [ -123.516721630999953, 48.454251843000044 ], [ -123.516723945, 48.454479880000122 ], [ -123.516724073999953, 48.45449258700004 ], [ -123.515912614999962, 48.454496228000018 ], [ -123.515918083999949, 48.455035995000053 ], [ -123.51551235, 48.455037813000061 ], [ -123.515515084999947, 48.455307696000069 ], [ -123.515400359999973, 48.455308209000144 ], [ -123.515331174999986, 48.455308519000077 ], [ -123.51531509199998, 48.455614484000101 ], [ -123.515537526999964, 48.455619700000035 ], [ -123.517264839999939, 48.455660193000078 ], [ -123.517191047000011, 48.457064967000122 ], [ -123.517185181999949, 48.45717661700008 ], [ -123.517179654999964, 48.457281833000145 ], [ -123.517408430999978, 48.457287194000102 ], [ -123.517392009999938, 48.457599823000045 ], [ -123.517714839999911, 48.457607388000042 ], [ -123.51761805299995, 48.45945013100004 ], [ -123.519330991999965, 48.459490250000052 ], [ -123.519311419999923, 48.459863114000015 ], [ -123.521143948999935, 48.459906004000089 ], [ -123.521114739999973, 48.460462871000047 ], [ -123.523290406999962, 48.460513749000022 ], [ -123.523170005999987, 48.462811056000113 ], [ -123.525089578999953, 48.462855909000076 ], [ -123.52497232199994, 48.465094744000098 ], [ -123.516027184999984, 48.465800773000083 ], [ -123.516024757999944, 48.465561428000093 ], [ -123.515618940999957, 48.465563247000048 ], [ -123.515621670999934, 48.46583276100008 ], [ -123.514586934999969, 48.465914377000104 ], [ -123.513948965999958, 48.466414266000093 ], [ -123.513120031999946, 48.466898883000098 ], [ -123.512605663999921, 48.467306990000083 ], [ -123.512461183999932, 48.467307208000094 ], [ -123.512356328999914, 48.46737507100007 ], [ -123.511834358999977, 48.46715813900007 ], [ -123.511597938999955, 48.466889430000087 ], [ -123.511378262999941, 48.466639767000046 ], [ -123.511216949999934, 48.466574664000099 ], [ -123.511072332, 48.466551443000107 ], [ -123.511095300999941, 48.466320235000069 ], [ -123.510992279999954, 48.466148302000107 ], [ -123.510583734999969, 48.46577801900002 ], [ -123.510468660999891, 48.465578754000099 ] ], [ [ -123.517978016999933, 48.465012864000059 ], [ -123.518007943000015, 48.464443098000146 ], [ -123.515096121999989, 48.464374855000088 ], [ -123.515076080999975, 48.464755994000043 ], [ -123.515204927999918, 48.464755417000013 ], [ -123.515202196999937, 48.464485533000136 ], [ -123.516419623999951, 48.464480078000044 ], [ -123.516422360999954, 48.464749960000105 ], [ -123.517233984000015, 48.464746315000134 ], [ -123.517236724999975, 48.465016198000157 ], [ -123.517978016999933, 48.465012864000059 ] ], [ [ -123.515005599999981, 48.460373301000075 ], [ -123.514908312999964, 48.460193790000062 ], [ -123.514420102999921, 48.459926108000033 ], [ -123.51392698699999, 48.459316494000063 ], [ -123.514005093999927, 48.459127106000025 ], [ -123.51336438499996, 48.458671299000031 ], [ -123.513307988999941, 48.458429198000069 ], [ -123.513442706999953, 48.458212708000097 ], [ -123.513157111999988, 48.458087395000064 ], [ -123.513045485999939, 48.45783680100002 ], [ -123.512985696000015, 48.457261391000038 ], [ -123.512821089999989, 48.457109004000124 ], [ -123.51280361699996, 48.456560705000136 ], [ -123.512517319999958, 48.45639970400002 ], [ -123.512058203999985, 48.456527890000068 ], [ -123.511465706999971, 48.456818389000048 ], [ -123.511291795999938, 48.45688109400011 ], [ -123.511318198000012, 48.456935189000063 ], [ -123.511671086999925, 48.457033508000066 ], [ -123.511699019, 48.457140298000091 ], [ -123.511551502999964, 48.457212986000094 ], [ -123.510645514999979, 48.45727130400013 ], [ -123.510430602999989, 48.45743368800008 ], [ -123.510418998999967, 48.45756050600005 ], [ -123.5105421199999, 48.457784100000055 ], [ -123.511019511999947, 48.4581330070001 ], [ -123.511499595999965, 48.458679892000113 ], [ -123.51200819499999, 48.459505911000043 ], [ -123.51198240899997, 48.459649789 ], [ -123.512487799, 48.460123996000029 ], [ -123.514154116999947, 48.460529903000037 ], [ -123.515296092999961, 48.460965699000013 ], [ -123.51538791099992, 48.460623891000097 ], [ -123.515005599999981, 48.460373301000075 ] ], [ [ -123.51225430199996, 48.453841511000057 ], [ -123.512252906999905, 48.453702889000056 ], [ -123.511441460999947, 48.453706499000127 ], [ -123.511442624999987, 48.4538224470001 ], [ -123.51225430199996, 48.453841511000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3528417", "BldgCostT": "1961667", "sL_LossRatio": "0.841256428985519", "sL_AssetLoss": "995.297", "sL_BldgLoss": "837.3", "sL_StrLoss": "430", "sL_NStrLoss": "407.3", "sL_ContLoss": "157.997", "geom_point": "0101000020E61000000910EC9505E25EC03AF217E5DF3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.53097803899999, 48.459555719000051 ], [ -123.532195345999952, 48.459550095000033 ], [ -123.532203807999949, 48.460359742000037 ], [ -123.530986483999968, 48.460365366000062 ], [ -123.53097803899999, 48.459555719000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802834", "BldgCostT": "1243334", "sL_LossRatio": "0.881200057591246", "sL_AssetLoss": "5556.4", "sL_BldgLoss": "4896.3", "sL_StrLoss": "2845.3", "sL_NStrLoss": "2051", "sL_ContLoss": "660.1", "geom_point": "0101000020E6100000C24D258778E25EC0DFFC446DB43A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.538279011999947, 48.459251908000127 ], [ -123.538270451999921, 48.458442260000055 ], [ -123.537864693999978, 48.458444157000059 ], [ -123.537861841999984, 48.458174276000122 ], [ -123.537456085999978, 48.458176172000051 ], [ -123.537450387999982, 48.457636408000084 ], [ -123.537044634999972, 48.457638302000099 ], [ -123.537041885999969, 48.457377614000045 ], [ -123.537190770999942, 48.457469386000064 ], [ -123.537368650999923, 48.457579027000065 ], [ -123.537666294999909, 48.457748233000061 ], [ -123.537801404999954, 48.457823522000119 ], [ -123.538171103999929, 48.458034990000087 ], [ -123.539318276999921, 48.458712185000088 ], [ -123.539459539999939, 48.458795582000086 ], [ -123.540133230999984, 48.459193252 ], [ -123.540238250999963, 48.459242727000074 ], [ -123.538279011999947, 48.459251908000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "309048227", "BldgCostT": "191929856", "sL_LossRatio": "0.83841483329002", "sL_AssetLoss": "167638.494", "sL_BldgLoss": "140550.6", "sL_StrLoss": "118264.7", "sL_NStrLoss": "22285.9", "sL_ContLoss": "27087.894", "geom_point": "0101000020E61000001653D8FB43E05EC06CD57D19EF3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.50861758399995, 48.467420046000022 ], [ -123.508518783999975, 48.46696302200008 ], [ -123.507971121999958, 48.467054208000029 ], [ -123.507939778999969, 48.46705939900005 ], [ -123.507632868999963, 48.46706571600005 ], [ -123.507471015999954, 48.467052009000064 ], [ -123.507220176999951, 48.467030813000108 ], [ -123.506866576999968, 48.466951200000096 ], [ -123.506520606999956, 48.466829503000035 ], [ -123.506466457999949, 48.466799399000095 ], [ -123.506229382999933, 48.466667498000042 ], [ -123.506141217999982, 48.466610989000124 ], [ -123.505762271, 48.466368186000068 ], [ -123.505612905999968, 48.466272506000024 ], [ -123.505107486999989, 48.465949100000103 ], [ -123.504698472999962, 48.465687395000081 ], [ -123.504126394999915, 48.465322297000043 ], [ -123.503006273999986, 48.464594306 ], [ -123.502762736999941, 48.464496043000111 ], [ -123.502693012999913, 48.464467916000061 ], [ -123.502313796999914, 48.464411200000072 ], [ -123.502222336999978, 48.464415076000051 ], [ -123.50130348499999, 48.464453939000052 ], [ -123.500762831999936, 48.464476798000128 ], [ -123.50030152, 48.464496306000044 ], [ -123.499952198999893, 48.464260368000083 ], [ -123.499851488999951, 48.464192342000075 ], [ -123.499536005999971, 48.463979256000073 ], [ -123.499441084999944, 48.463915150000091 ], [ -123.499084823999937, 48.463579436000053 ], [ -123.498944693999988, 48.46334438499999 ], [ -123.498758904999974, 48.462900863000108 ], [ -123.498630033999959, 48.462784190000072 ], [ -123.498535193999928, 48.462586297000037 ], [ -123.498395628999972, 48.462297919000022 ], [ -123.49831001799997, 48.462121112000055 ], [ -123.498028294999969, 48.461704175000129 ], [ -123.497859831999932, 48.461456428000112 ], [ -123.497745734999967, 48.461288622000033 ], [ -123.497735519999949, 48.461273581000071 ], [ -123.497403, 48.460784551000117 ], [ -123.49729300599999, 48.460622792000052 ], [ -123.497190073999946, 48.460399438000067 ], [ -123.49713110199994, 48.459983252000036 ], [ -123.497251734999949, 48.459513633000029 ], [ -123.49733564499995, 48.459186917000061 ], [ -123.497428747999905, 48.458824383000085 ], [ -123.49745869900002, 48.458513996000114 ], [ -123.497453691999951, 48.458302872000068 ], [ -123.497344389999981, 48.457612290000064 ], [ -123.49725052699992, 48.457267722000047 ], [ -123.497194093999923, 48.457060493000093 ], [ -123.497162496999962, 48.456967813000112 ], [ -123.49729858799999, 48.456948407000091 ], [ -123.49733273599999, 48.456943926000051 ], [ -123.497711254999942, 48.456894287000104 ], [ -123.498766806999981, 48.456755900000125 ], [ -123.499438231999989, 48.456622872000018 ], [ -123.499865080999953, 48.456538299000044 ], [ -123.500769584999915, 48.456284692000089 ], [ -123.501710204999981, 48.455932612000055 ], [ -123.503953479999964, 48.45484210300004 ], [ -123.504506116999949, 48.454604508000102 ], [ -123.505233181999941, 48.454352573000044 ], [ -123.505490602999942, 48.454263396000044 ], [ -123.505880919999967, 48.454156327000121 ], [ -123.505938617, 48.454140506000087 ], [ -123.506541494999937, 48.454226787000067 ], [ -123.507245701, 48.454516604000098 ], [ -123.507440827999943, 48.454818397000039 ], [ -123.507797402999984, 48.455370020000089 ], [ -123.507894794999942, 48.455699618000047 ], [ -123.50800960699999, 48.456518316000064 ], [ -123.508090582999955, 48.456646468000059 ], [ -123.508285407999935, 48.456741232000084 ], [ -123.508942778999966, 48.45687120200008 ], [ -123.509148218999883, 48.45694366200005 ], [ -123.509281481999935, 48.457129836000043 ], [ -123.509439053999984, 48.457572668000097 ], [ -123.5088674499999, 48.458048356000106 ], [ -123.50891425499999, 48.458109875000048 ], [ -123.510052663999957, 48.45960679000008 ], [ -123.510091871999961, 48.460377110000074 ], [ -123.510026688999972, 48.460589977000012 ], [ -123.509968741999927, 48.460675619 ], [ -123.509649891999985, 48.460821998 ], [ -123.509216617999968, 48.461178806000163 ], [ -123.509052902999898, 48.461263317000075 ], [ -123.508725805999987, 48.46141792100012 ], [ -123.508598691999921, 48.461478009000075 ], [ -123.508351492999935, 48.461633602000056 ], [ -123.50818709499994, 48.461806525000064 ], [ -123.508579207999915, 48.461975315000082 ], [ -123.508776911999959, 48.462144119000136 ], [ -123.508907793999938, 48.462351001000094 ], [ -123.508954228999926, 48.462545903 ], [ -123.508931814999954, 48.462741103000042 ], [ -123.508830912999926, 48.463040799000105 ], [ -123.508834486999945, 48.463228393000044 ], [ -123.508887899999976, 48.463418997000048 ], [ -123.508976192999981, 48.463537395000131 ], [ -123.509149005999944, 48.463717292000112 ], [ -123.509668210999962, 48.463984698000019 ], [ -123.509401686, 48.464251605000086 ], [ -123.50935731, 48.46437590400005 ], [ -123.509368192999915, 48.464503298000075 ], [ -123.509698022999942, 48.465110702000082 ], [ -123.50973839000001, 48.465291985000121 ], [ -123.509715286999921, 48.46547360700005 ], [ -123.50939482099993, 48.466483191000115 ], [ -123.50935077499993, 48.466669955000022 ], [ -123.509203486999951, 48.467294711000086 ], [ -123.509086005999933, 48.467422711000069 ], [ -123.508914993999966, 48.467515189000018 ], [ -123.508867157999987, 48.467522428000102 ], [ -123.508646879999958, 48.46755569900003 ], [ -123.50861758399995, 48.467420046000022 ] ], [ [ -123.50463242499994, 48.462643099000076 ], [ -123.504624399999926, 48.461833450000029 ], [ -123.50381282299999, 48.461837005000071 ], [ -123.503804809999934, 48.461027355000091 ], [ -123.502587463999959, 48.461032677000091 ], [ -123.502579471999965, 48.460223027000048 ], [ -123.504202573999976, 48.460215928000046 ], [ -123.504207919999942, 48.460755695000039 ], [ -123.504862815999942, 48.460752824000053 ], [ -123.504948331999955, 48.459133077000082 ], [ -123.504191883999937, 48.459136394000076 ], [ -123.504194555999931, 48.459406278000131 ], [ -123.503383017999923, 48.459409830000048 ], [ -123.503385685999945, 48.459679713000085 ], [ -123.502574142999961, 48.459683260000126 ], [ -123.502576807999958, 48.45995314400006 ], [ -123.502541714999964, 48.459953297000098 ], [ -123.502369358999928, 48.463214586000028 ], [ -123.503826796999974, 48.463248930000084 ], [ -123.503826177999883, 48.463186422000021 ], [ -123.504231975999957, 48.463184645000077 ], [ -123.50422663199997, 48.462644878000084 ], [ -123.50463242499994, 48.462643099000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203961728", "BldgCostT": "133314857", "sL_LossRatio": "0.888909467701209", "sL_AssetLoss": "206879.448", "sL_BldgLoss": "183897.1", "sL_StrLoss": "153807.4", "sL_NStrLoss": "30089.7", "sL_ContLoss": "22982.348", "geom_point": "0101000020E61000003E46CBE4C8DF5EC0233EF349593B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.499012143999934, 48.468875187000059 ], [ -123.499006852, 48.468335421000049 ], [ -123.49860101199999, 48.468337180000034 ], [ -123.498603655999887, 48.468607063000036 ], [ -123.498197813000033, 48.468608821000032 ], [ -123.498197885, 48.468616087000051 ], [ -123.498097757999986, 48.468544249000047 ], [ -123.498020782999902, 48.468491601000146 ], [ -123.497945359999903, 48.468475036000072 ], [ -123.497820317999953, 48.468438367000061 ], [ -123.497641389999984, 48.468399212000065 ], [ -123.497100301999964, 48.468416209000111 ], [ -123.496508476999963, 48.468511701000061 ], [ -123.495213888999928, 48.468720599000086 ], [ -123.494648293999944, 48.468743304000029 ], [ -123.494310617999986, 48.46874431300013 ], [ -123.49374540299999, 48.468656105000029 ], [ -123.492689432999924, 48.468248808000105 ], [ -123.492916381999919, 48.467992686000052 ], [ -123.493158321999914, 48.467864383000048 ], [ -123.493352659999928, 48.467761338000081 ], [ -123.49368108500002, 48.467527488000094 ], [ -123.49379, 48.467449963 ], [ -123.493827000999943, 48.467423598000046 ], [ -123.49401230499997, 48.466908596000039 ], [ -123.49414551299999, 48.466548487000111 ], [ -123.494626997999887, 48.465246888000152 ], [ -123.494635697999939, 48.465109085000101 ], [ -123.494592208999961, 48.464962 ], [ -123.494386796999891, 48.464760605000102 ], [ -123.494881295999946, 48.464743299000105 ], [ -123.495043203999984, 48.464737602000135 ], [ -123.49517814699999, 48.464732888000071 ], [ -123.495462137999965, 48.464722946000023 ], [ -123.496186, 48.464697612000045 ], [ -123.49550118499991, 48.464166587000101 ], [ -123.495052902999987, 48.463784501000106 ], [ -123.494778709999963, 48.463557089000084 ], [ -123.494665693999963, 48.463371299000123 ], [ -123.494563708999948, 48.462749397000081 ], [ -123.494124287999909, 48.461894214000033 ], [ -123.493915091999952, 48.461739496000128 ], [ -123.493300234999964, 48.461474227000096 ], [ -123.493269600999938, 48.461460984000098 ], [ -123.49315331599999, 48.46133831 ], [ -123.492907889999955, 48.461076397000085 ], [ -123.492229701999975, 48.460677101000066 ], [ -123.492053099999978, 48.460470015000112 ], [ -123.491955394999948, 48.459892387000082 ], [ -123.4918595, 48.45933380000011 ], [ -123.491899208999897, 48.459019089 ], [ -123.491904484999935, 48.458752805000081 ], [ -123.491909325999984, 48.458510715000052 ], [ -123.492084790999954, 48.458396797000063 ], [ -123.49318222, 48.457816011000027 ], [ -123.494010795999941, 48.457522543000053 ], [ -123.494046176999973, 48.457510004000071 ], [ -123.49531551099993, 48.457226199000061 ], [ -123.497162496999962, 48.456967813000112 ], [ -123.497194093999923, 48.457060493000093 ], [ -123.49725052699992, 48.457267722000047 ], [ -123.497344389999981, 48.457612290000064 ], [ -123.497453691999951, 48.458302872000068 ], [ -123.49745869900002, 48.458513996000114 ], [ -123.497428747999905, 48.458824383000085 ], [ -123.49733564499995, 48.459186917000061 ], [ -123.497251734999949, 48.459513633000029 ], [ -123.49713110199994, 48.459983252000036 ], [ -123.497190073999946, 48.460399438000067 ], [ -123.49729300599999, 48.460622792000052 ], [ -123.497403, 48.460784551000117 ], [ -123.497735519999949, 48.461273581000071 ], [ -123.497745734999967, 48.461288622000033 ], [ -123.497859831999932, 48.461456428000112 ], [ -123.498028294999969, 48.461704175000129 ], [ -123.49831001799997, 48.462121112000055 ], [ -123.498395628999972, 48.462297919000022 ], [ -123.498535193999928, 48.462586297000037 ], [ -123.498630033999959, 48.462784190000072 ], [ -123.498758904999974, 48.462900863000108 ], [ -123.498944693999988, 48.46334438499999 ], [ -123.499084823999937, 48.463579436000053 ], [ -123.499441084999944, 48.463915150000091 ], [ -123.499536005999971, 48.463979256000073 ], [ -123.499851488999951, 48.464192342000075 ], [ -123.499952198999893, 48.464260368000083 ], [ -123.50030152, 48.464496306000044 ], [ -123.500541440999939, 48.464692853000038 ], [ -123.500648299999938, 48.464780394000023 ], [ -123.500826493999966, 48.465088499000075 ], [ -123.500834020999918, 48.465106641000048 ], [ -123.500918058999972, 48.465308908000068 ], [ -123.501195420999963, 48.465976351000137 ], [ -123.501361034999931, 48.466395110000065 ], [ -123.501471789999982, 48.466675082000044 ], [ -123.501532742, 48.4668291750001 ], [ -123.501611203999943, 48.467027563000045 ], [ -123.501847021999978, 48.46762377600006 ], [ -123.501857527999931, 48.467736711000029 ], [ -123.501875397999939, 48.467929173000115 ], [ -123.501698816999948, 48.468765442000105 ], [ -123.500907889999937, 48.468859495000132 ], [ -123.500295990999945, 48.469016407000048 ], [ -123.500165858999978, 48.469057460000045 ], [ -123.500075714999937, 48.469104502000079 ], [ -123.499972540999948, 48.469159338000061 ], [ -123.499854187999958, 48.469232986000058 ], [ -123.499760430999942, 48.469264261000014 ], [ -123.499669567999959, 48.469282153000059 ], [ -123.499545616999953, 48.469282086000135 ], [ -123.499445205999919, 48.46927667100001 ], [ -123.499287575999958, 48.46926469000006 ], [ -123.499173012999933, 48.469240490000111 ], [ -123.499031526999914, 48.469208941000076 ], [ -123.498912365999971, 48.469161047000043 ], [ -123.498828057999958, 48.469108071000029 ], [ -123.498742100999905, 48.469054202000095 ], [ -123.49860688399994, 48.468936646000024 ], [ -123.498606299999949, 48.468876946000059 ], [ -123.499012143999934, 48.468875187000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98389334", "BldgCostT": "62203334", "sL_LossRatio": "0.945938034496065", "sL_AssetLoss": "111197.03", "sL_BldgLoss": "105185.5", "sL_StrLoss": "85582.1", "sL_NStrLoss": "19603.4", "sL_ContLoss": "6011.53", "geom_point": "0101000020E6100000D310A7F656DF5EC06D7AD488AE3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.485338874999968, 48.464983586000052 ], [ -123.486407066999959, 48.465387631000091 ], [ -123.487762001999968, 48.465859816000091 ], [ -123.48797318699998, 48.465900005000059 ], [ -123.488211908, 48.46590560700006 ], [ -123.488834094999916, 48.465798154000062 ], [ -123.489704201999956, 48.465647905000068 ], [ -123.490140303999937, 48.465572587000068 ], [ -123.490649205999944, 48.465524291000087 ], [ -123.49125531299994, 48.465502494000141 ], [ -123.491703574999988, 48.4654518050001 ], [ -123.492699186000024, 48.465138197000037 ], [ -123.493827102999916, 48.46479869900007 ], [ -123.494386796999891, 48.464760605000102 ], [ -123.494592208999961, 48.464962 ], [ -123.494635697999939, 48.465109085000101 ], [ -123.494626997999887, 48.465246888000152 ], [ -123.49414551299999, 48.466548487000111 ], [ -123.49401230499997, 48.466908596000039 ], [ -123.49337488399999, 48.466833096000059 ], [ -123.493060417999956, 48.466833226000048 ], [ -123.49297498599999, 48.466833252000036 ], [ -123.491876009999942, 48.466833710000124 ], [ -123.49148930799997, 48.466894004000075 ], [ -123.490875121999977, 48.467195087000057 ], [ -123.49062010499992, 48.467292689000054 ], [ -123.489883669, 48.467456223000021 ], [ -123.489827485999982, 48.467468708000048 ], [ -123.489675639999987, 48.467492493000037 ], [ -123.489217480999926, 48.467564296000091 ], [ -123.488870278999954, 48.467567792000033 ], [ -123.488174708999921, 48.467494482000092 ], [ -123.487265206999936, 48.46740530500005 ], [ -123.487081159999903, 48.467374193000062 ], [ -123.486582687999956, 48.467289909000051 ], [ -123.486259271999984, 48.467210661000088 ], [ -123.48594286299999, 48.467133173000015 ], [ -123.485614146999978, 48.467017155000029 ], [ -123.485447810000025, 48.466914135000067 ], [ -123.48528864799998, 48.466815557000054 ], [ -123.485042783999972, 48.466588814000076 ], [ -123.484891577999946, 48.466334543000116 ], [ -123.484819724999966, 48.466086672000088 ], [ -123.48495475899999, 48.465452358000114 ], [ -123.484994770999947, 48.465374302000065 ], [ -123.485091848999971, 48.46518510900006 ], [ -123.485179305999949, 48.465115048000079 ], [ -123.485338874999968, 48.464983586000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "243934500", "BldgCostT": "160500000", "sL_LossRatio": "0.911307665537363", "sL_AssetLoss": "132925.58", "sL_BldgLoss": "121136.1", "sL_StrLoss": "99654.8", "sL_NStrLoss": "21481.3", "sL_ContLoss": "11789.48", "geom_point": "0101000020E61000004382E31160DF5EC09544B425443B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.491737364999949, 48.458622318000039 ], [ -123.491909325999984, 48.458510715000052 ], [ -123.491904484999935, 48.458752805000081 ], [ -123.491899208999897, 48.459019089 ], [ -123.4918595, 48.45933380000011 ], [ -123.491955394999948, 48.459892387000082 ], [ -123.492053099999978, 48.460470015000112 ], [ -123.492229701999975, 48.460677101000066 ], [ -123.492907889999955, 48.461076397000085 ], [ -123.49315331599999, 48.46133831 ], [ -123.493269600999938, 48.461460984000098 ], [ -123.493300234999964, 48.461474227000096 ], [ -123.493915091999952, 48.461739496000128 ], [ -123.494124287999909, 48.461894214000033 ], [ -123.494563708999948, 48.462749397000081 ], [ -123.494665693999963, 48.463371299000123 ], [ -123.494778709999963, 48.463557089000084 ], [ -123.495052902999987, 48.463784501000106 ], [ -123.49550118499991, 48.464166587000101 ], [ -123.496186, 48.464697612000045 ], [ -123.495462137999965, 48.464722946000023 ], [ -123.49517814699999, 48.464732888000071 ], [ -123.495043203999984, 48.464737602000135 ], [ -123.494881295999946, 48.464743299000105 ], [ -123.494386796999891, 48.464760605000102 ], [ -123.493827102999916, 48.46479869900007 ], [ -123.492699186000024, 48.465138197000037 ], [ -123.491703574999988, 48.4654518050001 ], [ -123.49125531299994, 48.465502494000141 ], [ -123.490649205999944, 48.465524291000087 ], [ -123.490140303999937, 48.465572587000068 ], [ -123.489704201999956, 48.465647905000068 ], [ -123.488834094999916, 48.465798154000062 ], [ -123.488211908, 48.46590560700006 ], [ -123.48797318699998, 48.465900005000059 ], [ -123.487762001999968, 48.465859816000091 ], [ -123.486407066999959, 48.465387631000091 ], [ -123.485338874999968, 48.464983586000052 ], [ -123.485746091999943, 48.464664111000062 ], [ -123.485852841999957, 48.464530060000129 ], [ -123.485909616999962, 48.464458789000069 ], [ -123.485992949999968, 48.464211896000073 ], [ -123.485997544999933, 48.464074945000085 ], [ -123.4859325499999, 48.4639516700001 ], [ -123.485782903999933, 48.463794852000071 ], [ -123.485536387999971, 48.463530200000037 ], [ -123.48511467099999, 48.462985346000025 ], [ -123.489015437999939, 48.460389071000122 ], [ -123.489829204, 48.459860904000045 ], [ -123.490497972999933, 48.459426829000044 ], [ -123.490723336999906, 48.459280526000072 ], [ -123.490833455999933, 48.459209072000036 ], [ -123.491737364999949, 48.458622318000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129125583", "BldgCostT": "82398333", "sL_LossRatio": "0.900734061563532", "sL_AssetLoss": "85457.41", "sL_BldgLoss": "76974.4", "sL_StrLoss": "67172.9", "sL_NStrLoss": "9801.5", "sL_ContLoss": "8483.01", "geom_point": "0101000020E61000004302DBFB33E05EC08043C9609C3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.50329228699999, 48.477450097000052 ], [ -123.503535715999973, 48.475581632000036 ], [ -123.501309085999949, 48.475566270000073 ], [ -123.499897045999901, 48.47554153500009 ], [ -123.499889346999936, 48.475541400000068 ], [ -123.499884803999947, 48.475078976000077 ], [ -123.497449438, 48.475089527000129 ], [ -123.497428332, 48.472930462000107 ], [ -123.497834209999951, 48.472928708000083 ], [ -123.497823648999912, 48.471849175000074 ], [ -123.498229517999945, 48.471847419000035 ], [ -123.498205737999953, 48.469418470000114 ], [ -123.498611587999932, 48.469416712000083 ], [ -123.49860688399994, 48.468936646000024 ], [ -123.498742100999905, 48.469054202000095 ], [ -123.498828057999958, 48.469108071000029 ], [ -123.498912365999971, 48.469161047000043 ], [ -123.499031526999914, 48.469208941000076 ], [ -123.499173012999933, 48.469240490000111 ], [ -123.499287575999958, 48.46926469000006 ], [ -123.499445205999919, 48.46927667100001 ], [ -123.499545616999953, 48.469282086000135 ], [ -123.499669567999959, 48.469282153000059 ], [ -123.499760430999942, 48.469264261000014 ], [ -123.499854187999958, 48.469232986000058 ], [ -123.499972540999948, 48.469159338000061 ], [ -123.500075714999937, 48.469104502000079 ], [ -123.500165858999978, 48.469057460000045 ], [ -123.500295990999945, 48.469016407000048 ], [ -123.500907889999937, 48.468859495000132 ], [ -123.501698816999948, 48.468765442000105 ], [ -123.501662966999902, 48.469137002000146 ], [ -123.501757919999974, 48.469384495000092 ], [ -123.501897325999977, 48.469557299000016 ], [ -123.502095729999965, 48.469712568000084 ], [ -123.50270599299995, 48.470021814000056 ], [ -123.502982082999921, 48.470163566000053 ], [ -123.503743054999973, 48.470551356000058 ], [ -123.50496909599994, 48.471176084000085 ], [ -123.505354697000016, 48.471392553000044 ], [ -123.506436990999958, 48.47226582800009 ], [ -123.506988103, 48.472710482000053 ], [ -123.507431835999967, 48.473003152000103 ], [ -123.507982504999958, 48.473367762000059 ], [ -123.508172789999918, 48.473523721000028 ], [ -123.508180760999949, 48.473544067000041 ], [ -123.508414393999985, 48.474141637000066 ], [ -123.508541607999987, 48.474341201000072 ], [ -123.508805078999956, 48.474543942000061 ], [ -123.50906130099996, 48.474806955000069 ], [ -123.509182804999966, 48.475140727000102 ], [ -123.509377490999938, 48.475465613000026 ], [ -123.509383905000021, 48.475476368000074 ], [ -123.509810374999958, 48.475969688000063 ], [ -123.510051025999971, 48.476171978000089 ], [ -123.510151512999954, 48.476256432000064 ], [ -123.510224201999947, 48.476317546000111 ], [ -123.51042206799994, 48.476535895000097 ], [ -123.510467882999933, 48.476760539000054 ], [ -123.510488585999923, 48.476862073000099 ], [ -123.510479833999966, 48.477092441000124 ], [ -123.50329228699999, 48.477450097000052 ] ], [ [ -123.504910374999923, 48.474787144000068 ], [ -123.504978333999958, 48.473500307000037 ], [ -123.504334036, 48.473485137000139 ], [ -123.5043389399999, 48.473979966000051 ], [ -123.503933054999891, 48.47398174400012 ], [ -123.503938399, 48.474521510000073 ], [ -123.504344288999903, 48.474519731000079 ], [ -123.504346964999939, 48.474789614000052 ], [ -123.504910374999923, 48.474787144000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109919916", "BldgCostT": "69261666", "sL_LossRatio": "0.873014718552717", "sL_AssetLoss": "71496.16", "sL_BldgLoss": "62417.2", "sL_StrLoss": "52354.5", "sL_NStrLoss": "10062.7", "sL_ContLoss": "9078.96", "geom_point": "0101000020E6100000B682E0D05FDF5EC0FF97D66C063C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.492544741999964, 48.471601993000085 ], [ -123.492539515999979, 48.471062226000107 ], [ -123.490104339999931, 48.471072622000094 ], [ -123.490106939999947, 48.471342505000067 ], [ -123.488483477999949, 48.471349407000105 ], [ -123.488480887999955, 48.471079523000071 ], [ -123.486045709999971, 48.471089832000047 ], [ -123.486048286999946, 48.471359717000091 ], [ -123.4848306899999, 48.471364852000114 ], [ -123.484825546999957, 48.470825084000083 ], [ -123.484419686999928, 48.47082679400004 ], [ -123.484401705, 48.468937607000086 ], [ -123.486025089999941, 48.468930763000138 ], [ -123.48602251299998, 48.468660880000051 ], [ -123.48724004499995, 48.468655731000077 ], [ -123.48723746099995, 48.468385848000089 ], [ -123.486019934999931, 48.468390996000046 ], [ -123.486018653999935, 48.468256760000038 ], [ -123.485717138999945, 48.468194262000068 ], [ -123.485543820999951, 48.468123111000068 ], [ -123.485205678999975, 48.468124537000058 ], [ -123.485204336999971, 48.467983742000051 ], [ -123.485185137999963, 48.467975861000092 ], [ -123.48501997399994, 48.467855425000067 ], [ -123.484797268999984, 48.467856363000081 ], [ -123.484789555999896, 48.467046711000137 ], [ -123.484383725999976, 48.467048420000083 ], [ -123.484373451999915, 48.465968884000056 ], [ -123.484184682999924, 48.465969678000086 ], [ -123.484210618999924, 48.465450465000067 ], [ -123.484071544999921, 48.465522317000094 ], [ -123.483962304, 48.465410427000059 ], [ -123.48395736599997, 48.464891056000113 ], [ -123.483551550999948, 48.464892761000058 ], [ -123.483548987999967, 48.464622877000068 ], [ -123.483194858, 48.464624365000127 ], [ -123.483142666999953, 48.464570905000087 ], [ -123.483139537999989, 48.464241203000064 ], [ -123.483232471999955, 48.46419686900002 ], [ -123.48381535099999, 48.463850025000106 ], [ -123.48511467099999, 48.462985346000025 ], [ -123.485536387999971, 48.463530200000037 ], [ -123.485782903999933, 48.463794852000071 ], [ -123.4859325499999, 48.4639516700001 ], [ -123.485997544999933, 48.464074945000085 ], [ -123.485992949999968, 48.464211896000073 ], [ -123.485909616999962, 48.464458789000069 ], [ -123.485852841999957, 48.464530060000129 ], [ -123.485746091999943, 48.464664111000062 ], [ -123.485338874999968, 48.464983586000052 ], [ -123.485179305999949, 48.465115048000079 ], [ -123.485091848999971, 48.46518510900006 ], [ -123.484994770999947, 48.465374302000065 ], [ -123.48495475899999, 48.465452358000114 ], [ -123.484819724999966, 48.466086672000088 ], [ -123.484891577999946, 48.466334543000116 ], [ -123.485042783999972, 48.466588814000076 ], [ -123.48528864799998, 48.466815557000054 ], [ -123.485447810000025, 48.466914135000067 ], [ -123.485614146999978, 48.467017155000029 ], [ -123.48594286299999, 48.467133173000015 ], [ -123.486259271999984, 48.467210661000088 ], [ -123.486582687999956, 48.467289909000051 ], [ -123.487081159999903, 48.467374193000062 ], [ -123.487265206999936, 48.46740530500005 ], [ -123.488174708999921, 48.467494482000092 ], [ -123.488870278999954, 48.467567792000033 ], [ -123.489217480999926, 48.467564296000091 ], [ -123.489675639999987, 48.467492493000037 ], [ -123.489827485999982, 48.467468708000048 ], [ -123.489883669, 48.467456223000021 ], [ -123.49062010499992, 48.467292689000054 ], [ -123.490875121999977, 48.467195087000057 ], [ -123.49148930799997, 48.466894004000075 ], [ -123.491876009999942, 48.466833710000124 ], [ -123.49297498599999, 48.466833252000036 ], [ -123.493060417999956, 48.466833226000048 ], [ -123.49337488399999, 48.466833096000059 ], [ -123.49401230499997, 48.466908596000039 ], [ -123.493827000999943, 48.467423598000046 ], [ -123.49379, 48.467449963 ], [ -123.49368108500002, 48.467527488000094 ], [ -123.493352659999928, 48.467761338000081 ], [ -123.493158321999914, 48.467864383000048 ], [ -123.492916381999919, 48.467992686000052 ], [ -123.492689432999924, 48.468248808000105 ], [ -123.49374540299999, 48.468656105000029 ], [ -123.494310617999986, 48.46874431300013 ], [ -123.494648293999944, 48.468743304000029 ], [ -123.495213888999928, 48.468720599000086 ], [ -123.496508476999963, 48.468511701000061 ], [ -123.497100301999964, 48.468416209000111 ], [ -123.497641389999984, 48.468399212000065 ], [ -123.497820317999953, 48.468438367000061 ], [ -123.497945359999903, 48.468475036000072 ], [ -123.498020782999902, 48.468491601000146 ], [ -123.498097757999986, 48.468544249000047 ], [ -123.498197885, 48.468616087000051 ], [ -123.498200454999903, 48.468878704000069 ], [ -123.497388764, 48.468882214000111 ], [ -123.497394038999943, 48.469421981000096 ], [ -123.497799889999911, 48.469420226000118 ], [ -123.49781308899999, 48.470769643000025 ], [ -123.497407227999972, 48.470771397000128 ], [ -123.497409865999884, 48.471041280000073 ], [ -123.496192279999889, 48.471046535000042 ], [ -123.496194910999961, 48.471316420000029 ], [ -123.494977317999883, 48.471321662000072 ], [ -123.494979941999958, 48.471591546000091 ], [ -123.492544741999964, 48.471601993000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "471215312", "BldgCostT": "307968191", "sL_LossRatio": "0.944030237401214", "sL_AssetLoss": "364424.969", "sL_BldgLoss": "344028.19", "sL_StrLoss": "299433.99", "sL_NStrLoss": "44594.2", "sL_ContLoss": "20396.779", "geom_point": "0101000020E6100000C8AE4180C8DE5EC03D96A054353A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.486358727999971, 48.461372299000054 ], [ -123.487170298999914, 48.461368866000051 ], [ -123.487170236999987, 48.461362356000066 ], [ -123.486358448999979, 48.461343100000128 ], [ -123.486358727999971, 48.461372299000054 ], [ -123.48553710499999, 48.461375768000046 ], [ -123.485461337999951, 48.461436361000082 ], [ -123.485143905999919, 48.46164351300007 ], [ -123.485146512999933, 48.461917205000084 ], [ -123.483390465999932, 48.461924594000024 ], [ -123.483312437999984, 48.461963661000041 ], [ -123.483118509999926, 48.462025600000104 ], [ -123.483120123999981, 48.462195624000096 ], [ -123.481091159999934, 48.462204124000046 ], [ -123.481088608999968, 48.461934239000044 ], [ -123.48068281800002, 48.461935934000088 ], [ -123.480680271, 48.461666050000098 ], [ -123.480274482999974, 48.461667745000064 ], [ -123.480271936999912, 48.46139785900003 ], [ -123.479866149999935, 48.461399552000053 ], [ -123.479853430999981, 48.460050131000074 ], [ -123.480259205999985, 48.460048438000101 ], [ -123.48025411499999, 48.459508670000076 ], [ -123.480659885999955, 48.459506976000043 ], [ -123.48064459899993, 48.457887669000058 ], [ -123.481050356999944, 48.457885974000064 ], [ -123.481047806000035, 48.457616089000055 ], [ -123.482265074999972, 48.457610994000049 ], [ -123.482262519999949, 48.457341110000073 ], [ -123.483479780999986, 48.45733600300008 ], [ -123.483477217999962, 48.457066118000085 ], [ -123.484288721999945, 48.457062707000034 ], [ -123.484275885999949, 48.455713284000097 ], [ -123.483464404999935, 48.455716696000088 ], [ -123.483461842999958, 48.455446811000108 ], [ -123.482650364999969, 48.455450218000088 ], [ -123.482647806999964, 48.455180333000072 ], [ -123.482242070999945, 48.455182034000103 ], [ -123.482237867999984, 48.454738421000094 ], [ -123.479950227999936, 48.454684028000088 ], [ -123.47999634300001, 48.453819098000139 ], [ -123.476238147999979, 48.453729632000062 ], [ -123.47624573, 48.453587632000058 ], [ -123.476140873999924, 48.453588066000101 ], [ -123.476148444, 48.454397721000113 ], [ -123.475742713999963, 48.454399400000092 ], [ -123.475750277999907, 48.455209053000011 ], [ -123.47534454, 48.455210730000019 ], [ -123.47534706, 48.45548061500007 ], [ -123.474129842999957, 48.45548563600007 ], [ -123.474122302999916, 48.454675981000015 ], [ -123.473310835999911, 48.454679322000075 ], [ -123.473308327999945, 48.45440943600002 ], [ -123.472984486, 48.454410768000102 ], [ -123.472901800999978, 48.454325363000052 ], [ -123.472897583999952, 48.453871334000027 ], [ -123.472491856999937, 48.453873002000122 ], [ -123.472492127999928, 48.453902219000064 ], [ -123.471419727999958, 48.452794507000043 ], [ -123.471039874999974, 48.452250162000077 ], [ -123.470486828999967, 48.451495917000031 ], [ -123.469028101999953, 48.450976432000076 ], [ -123.469482034999942, 48.450692424000188 ], [ -123.469513458999984, 48.450667293 ], [ -123.469576358999973, 48.450616986000099 ], [ -123.469635957999955, 48.450569300000105 ], [ -123.469905099999977, 48.450354042000122 ], [ -123.46997139799997, 48.450301020000111 ], [ -123.471025875999928, 48.449262159000071 ], [ -123.471355205999913, 48.449035563000095 ], [ -123.471750893999953, 48.448830409000074 ], [ -123.474182067999948, 48.447952039000036 ], [ -123.475367132999935, 48.447955810000039 ], [ -123.475998186999959, 48.447957805000044 ], [ -123.477241106999927, 48.448771921000088 ], [ -123.477847488999885, 48.449297720000096 ], [ -123.477965889999979, 48.44948171100004 ], [ -123.47805843699993, 48.44982209100003 ], [ -123.478406311999962, 48.450335325000083 ], [ -123.479102929999925, 48.450472031000132 ], [ -123.479263948999957, 48.450503620000163 ], [ -123.479550579999952, 48.450520362000056 ], [ -123.480053727999916, 48.450451187000034 ], [ -123.480249610999948, 48.450448636000083 ], [ -123.480803404999946, 48.450511685 ], [ -123.481551079999988, 48.450596820000037 ], [ -123.48212659099994, 48.450594653000088 ], [ -123.482435416999962, 48.450593489 ], [ -123.482955843999918, 48.450529202000105 ], [ -123.483406420000023, 48.450433506000152 ], [ -123.48413117299999, 48.450182006000077 ], [ -123.484791002999913, 48.449882090000095 ], [ -123.485150402999977, 48.449691326000114 ], [ -123.485343897999925, 48.4495885850001 ], [ -123.485605860999939, 48.449903391000085 ], [ -123.485648093999941, 48.449954156000068 ], [ -123.48565470199999, 48.449962096000021 ], [ -123.486145281999967, 48.450839402000099 ], [ -123.486165763999978, 48.451180258000058 ], [ -123.48617325399999, 48.451304440000094 ], [ -123.48599747199999, 48.451672874000046 ], [ -123.485992446999902, 48.45168338200007 ], [ -123.485990574999931, 48.451718505000059 ], [ -123.486036242999958, 48.452103737000066 ], [ -123.486266800999914, 48.452844089000038 ], [ -123.48711154899992, 48.455111257000063 ], [ -123.486630518999974, 48.455937943000094 ], [ -123.486618307999919, 48.455958888000048 ], [ -123.486893090999956, 48.456045707000115 ], [ -123.488778676999942, 48.456586294000054 ], [ -123.489188597999927, 48.456749299000066 ], [ -123.489883112999962, 48.457144493000079 ], [ -123.490093465999948, 48.457284607000062 ], [ -123.490454952, 48.457525302000121 ], [ -123.49059639699999, 48.457619491000102 ], [ -123.490802595999966, 48.457879597000122 ], [ -123.490847157999951, 48.457908845000098 ], [ -123.491190105999948, 48.458134005000019 ], [ -123.491240021999943, 48.458236202000101 ], [ -123.491489092999942, 48.458506273000083 ], [ -123.491737364999949, 48.458622318000039 ], [ -123.490833455999933, 48.459209072000036 ], [ -123.490723336999906, 48.459280526000072 ], [ -123.490497972999933, 48.459426829000044 ], [ -123.489829204, 48.459860904000045 ], [ -123.489015437999939, 48.460389071000122 ], [ -123.48511467099999, 48.462985346000025 ], [ -123.48381535099999, 48.463850025000106 ], [ -123.483232471999955, 48.46419686900002 ], [ -123.483139537999989, 48.464241203000064 ], [ -123.483135491999931, 48.463814930000126 ], [ -123.483541296999974, 48.463813225000095 ], [ -123.483538732999989, 48.463543340000058 ], [ -123.483944536999971, 48.463541635000084 ], [ -123.483941970999979, 48.463271751000065 ], [ -123.484347771999978, 48.463270044000076 ], [ -123.484345204999968, 48.463000159000025 ], [ -123.484751002999985, 48.462998451000047 ], [ -123.484748434, 48.462728567000056 ], [ -123.485154229000017, 48.462726857000114 ], [ -123.485151657999964, 48.462456973000066 ], [ -123.485557451999966, 48.462455263000074 ], [ -123.485554877999931, 48.4621853780001 ], [ -123.485960671000029, 48.462183665000097 ], [ -123.485958093999926, 48.461913781000121 ], [ -123.486363884999946, 48.461912067000071 ], [ -123.486358727999971, 48.461372299000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111644166", "BldgCostT": "75996666", "sL_LossRatio": "0.91113013827805", "sL_AssetLoss": "265118", "sL_BldgLoss": "241557", "sL_StrLoss": "189784", "sL_NStrLoss": "51773", "sL_ContLoss": "23561", "geom_point": "0101000020E6100000E4DF912531DD5EC02C9AB5B165484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.459974723999949, 48.567544806000051 ], [ -123.459682485, 48.567518004000156 ], [ -123.459467918999934, 48.567532697000026 ], [ -123.459406124999973, 48.567535729000085 ], [ -123.458851908999947, 48.567562990000084 ], [ -123.458692271999908, 48.56753685800004 ], [ -123.458626610999943, 48.567526109 ], [ -123.458545368, 48.567493803000062 ], [ -123.458288693999961, 48.567391799000042 ], [ -123.458067087999936, 48.567235897000046 ], [ -123.458032588000023, 48.567071886000093 ], [ -123.457523300999966, 48.566981306000102 ], [ -123.456949801999912, 48.567050503000054 ], [ -123.456888881999987, 48.567074518000084 ], [ -123.456861658999955, 48.56708279300009 ], [ -123.456765607999955, 48.567125045000061 ], [ -123.456682022999985, 48.5671853650001 ], [ -123.456610922, 48.567263774000025 ], [ -123.456463519999943, 48.567453301000121 ], [ -123.456396233999953, 48.567507524000114 ], [ -123.456193816000024, 48.567607288 ], [ -123.456058667999955, 48.567652807000059 ], [ -123.45592337, 48.5676803200001 ], [ -123.45577428199999, 48.56768093500007 ], [ -123.455611536, 48.567672574000049 ], [ -123.455299600999965, 48.567655820000049 ], [ -123.455204579999972, 48.567638183000078 ], [ -123.454864730999986, 48.567531575000082 ], [ -123.454728609999933, 48.567469144000043 ], [ -123.454537396999967, 48.567307968000087 ], [ -123.45425076799998, 48.567084193 ], [ -123.453924311999927, 48.56695952100003 ], [ -123.453747949, 48.566942228000066 ], [ -123.45346616099998, 48.56697735100002 ], [ -123.453316889999925, 48.56698468000009 ], [ -123.452953587999929, 48.567002496000029 ], [ -123.452853549999958, 48.567002504000094 ], [ -123.452745073999921, 48.56700251200008 ], [ -123.45267730299993, 48.56700252500017 ], [ -123.452663761999958, 48.567002523000021 ], [ -123.451891331999917, 48.567002588000086 ], [ -123.451037330999924, 48.567002660000064 ], [ -123.447222594999985, 48.567002899000073 ], [ -123.447230077999947, 48.566241205000019 ], [ -123.447974517999953, 48.566238403000057 ], [ -123.448277625999935, 48.566218969000019 ], [ -123.448304567999955, 48.566217245000054 ], [ -123.448741696999946, 48.5661892030001 ], [ -123.449783119999978, 48.565950006000072 ], [ -123.450381618, 48.565667794000021 ], [ -123.450656347999967, 48.565522230000091 ], [ -123.452320701999966, 48.564640506000096 ], [ -123.453057886999886, 48.56417389700011 ], [ -123.453252490999944, 48.564050692000073 ], [ -123.453340074999957, 48.563991883000021 ], [ -123.454820817999988, 48.562997403000104 ], [ -123.455056199999916, 48.562921895000052 ], [ -123.455361976999939, 48.56289680200009 ], [ -123.455730490999954, 48.562907369000051 ], [ -123.456317203999959, 48.56292419600009 ], [ -123.457037456999984, 48.562946253000099 ], [ -123.457395203, 48.562957187000066 ], [ -123.458512810999963, 48.562909108000021 ], [ -123.45864231199999, 48.563143004000018 ], [ -123.458975091999932, 48.563319612000065 ], [ -123.459178848999926, 48.563427836000045 ], [ -123.459481499999981, 48.56358858800013 ], [ -123.459851185999952, 48.563935575000116 ], [ -123.460116998999936, 48.563850010000095 ], [ -123.460275301999928, 48.56397458599999 ], [ -123.460918076999974, 48.564853599000095 ], [ -123.461379006999948, 48.565465998000029 ], [ -123.462064511999941, 48.566582316000037 ], [ -123.462361382999958, 48.567435690000131 ], [ -123.462397883999955, 48.567540662000113 ], [ -123.462414922, 48.567589617000117 ], [ -123.462216020999946, 48.567638943000084 ], [ -123.461999631999902, 48.567762717000072 ], [ -123.46161872499998, 48.568201664000064 ], [ -123.461520004999969, 48.568250717000026 ], [ -123.461369630999968, 48.568278672000062 ], [ -123.461214922999943, 48.568262351000037 ], [ -123.461054185999956, 48.568231541000038 ], [ -123.460879920999901, 48.568150745000061 ], [ -123.460522503999968, 48.567826635000053 ], [ -123.460145588999964, 48.567587699000093 ], [ -123.459974723999949, 48.567544806000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156086978", "BldgCostT": "101394857", "sL_LossRatio": "0.88060974837997", "sL_AssetLoss": "355380.69", "sL_BldgLoss": "312951.7", "sL_StrLoss": "221188.6", "sL_NStrLoss": "91763.1", "sL_ContLoss": "42428.99", "geom_point": "0101000020E610000081632A58BEDC5EC015633F0FDE484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.442364892999976, 48.572483889000111 ], [ -123.442093537999966, 48.572146806000042 ], [ -123.442028897999961, 48.572066481000014 ], [ -123.441685510999946, 48.571535310000087 ], [ -123.44157951299999, 48.571194595000094 ], [ -123.441490805999976, 48.570635296000056 ], [ -123.441429347999971, 48.570226034000029 ], [ -123.441419197999949, 48.570158505000045 ], [ -123.441397500999983, 48.568888495000095 ], [ -123.441259393999985, 48.568414611999977 ], [ -123.441071185999974, 48.568042196000093 ], [ -123.440696515999946, 48.567591398000111 ], [ -123.438525485999946, 48.56518319000007 ], [ -123.442709997999927, 48.565199303000071 ], [ -123.443231896999933, 48.565231703000052 ], [ -123.443739190999949, 48.565359403000137 ], [ -123.444219296999961, 48.565563795000116 ], [ -123.444384536999934, 48.565620749000033 ], [ -123.444916699999936, 48.565804210000088 ], [ -123.445582980999916, 48.565994199000102 ], [ -123.44653748199994, 48.566160512000096 ], [ -123.447230077999947, 48.566241205000019 ], [ -123.447222594999985, 48.567002899000073 ], [ -123.451037330999924, 48.567002660000064 ], [ -123.451891331999917, 48.567002588000086 ], [ -123.452663761999958, 48.567002523000021 ], [ -123.45267730299993, 48.56700252500017 ], [ -123.452745073999921, 48.56700251200008 ], [ -123.452853549999958, 48.567002504000094 ], [ -123.452953587999929, 48.567002496000029 ], [ -123.453316889999925, 48.56698468000009 ], [ -123.45346616099998, 48.56697735100002 ], [ -123.453747949, 48.566942228000066 ], [ -123.453924311999927, 48.56695952100003 ], [ -123.45425076799998, 48.567084193 ], [ -123.454537396999967, 48.567307968000087 ], [ -123.454728609999933, 48.567469144000043 ], [ -123.454864730999986, 48.567531575000082 ], [ -123.455204579999972, 48.567638183000078 ], [ -123.455299600999965, 48.567655820000049 ], [ -123.455611536, 48.567672574000049 ], [ -123.45577428199999, 48.56768093500007 ], [ -123.45592337, 48.5676803200001 ], [ -123.456058667999955, 48.567652807000059 ], [ -123.456193816000024, 48.567607288 ], [ -123.456396233999953, 48.567507524000114 ], [ -123.456463519999943, 48.567453301000121 ], [ -123.456610922, 48.567263774000025 ], [ -123.456682022999985, 48.5671853650001 ], [ -123.456765607999955, 48.567125045000061 ], [ -123.456861658999955, 48.56708279300009 ], [ -123.456888881999987, 48.567074518000084 ], [ -123.456949801999912, 48.567050503000054 ], [ -123.457523300999966, 48.566981306000102 ], [ -123.458032588000023, 48.567071886000093 ], [ -123.458067087999936, 48.567235897000046 ], [ -123.458288693999961, 48.567391799000042 ], [ -123.458545368, 48.567493803000062 ], [ -123.458626610999943, 48.567526109 ], [ -123.458692271999908, 48.56753685800004 ], [ -123.458851908999947, 48.567562990000084 ], [ -123.459406124999973, 48.567535729000085 ], [ -123.459467918999934, 48.567532697000026 ], [ -123.459682485, 48.567518004000156 ], [ -123.459974723999949, 48.567544806000051 ], [ -123.460145588999964, 48.567587699000093 ], [ -123.460522503999968, 48.567826635000053 ], [ -123.460879920999901, 48.568150745000061 ], [ -123.461054185999956, 48.568231541000038 ], [ -123.461214922999943, 48.568262351000037 ], [ -123.460804404999934, 48.568504708000013 ], [ -123.460774619999967, 48.568522281000028 ], [ -123.460716584999943, 48.568546222000087 ], [ -123.460423086, 48.568667151000092 ], [ -123.460154297999935, 48.568732859000136 ], [ -123.459721975999969, 48.568794636000128 ], [ -123.458739133999927, 48.568827021000068 ], [ -123.457943114, 48.568832311000051 ], [ -123.457935201999959, 48.56960692600012 ], [ -123.457931352999964, 48.569984728000051 ], [ -123.457930257999962, 48.570092662000064 ], [ -123.457927306, 48.57038080800006 ], [ -123.457936283999928, 48.570541720000108 ], [ -123.457951382999966, 48.570812403000033 ], [ -123.457968922999925, 48.570988587000059 ], [ -123.458010094999963, 48.571755911000047 ], [ -123.458016916999966, 48.572432196000115 ], [ -123.456416003999919, 48.572429095000068 ], [ -123.45156190099999, 48.572471413000109 ], [ -123.450388381999943, 48.572472091000058 ], [ -123.44883488, 48.572468998000026 ], [ -123.444151282999883, 48.572484495000012 ], [ -123.443855606999961, 48.572472903000097 ], [ -123.442364892999976, 48.572483889000111 ] ], [ [ -123.451201232999921, 48.569472424 ], [ -123.451200399999962, 48.569378670000091 ], [ -123.450716576999952, 48.569367059000015 ], [ -123.450652380999927, 48.570554132000105 ], [ -123.450804175999934, 48.570553538000112 ], [ -123.45079458, 48.569474017000118 ], [ -123.451201232999921, 48.569472424 ] ], [ [ -123.443900482999979, 48.56687051200003 ], [ -123.443901505999946, 48.566851642000081 ], [ -123.44386084099996, 48.566850663000068 ], [ -123.443859817999936, 48.566869533000023 ], [ -123.443900482999979, 48.56687051200003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267237001", "BldgCostT": "176985001", "sL_LossRatio": "0.853028816169181", "sL_AssetLoss": "372433.96", "sL_BldgLoss": "317696.9", "sL_StrLoss": "194372.9", "sL_NStrLoss": "123324", "sL_ContLoss": "54737.06", "geom_point": "0101000020E610000006818561BADC5EC0D6E3184566494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.443759313, 48.57417269000009 ], [ -123.443459597999947, 48.573833688000015 ], [ -123.442364892999976, 48.572483889000111 ], [ -123.443855606999961, 48.572472903000097 ], [ -123.444151282999883, 48.572484495000012 ], [ -123.44883488, 48.572468998000026 ], [ -123.450388381999943, 48.572472091000058 ], [ -123.45156190099999, 48.572471413000109 ], [ -123.456416003999919, 48.572429095000068 ], [ -123.456422913999972, 48.572803406000041 ], [ -123.456374196999931, 48.572953702000056 ], [ -123.456262406999898, 48.573043884000128 ], [ -123.456109891, 48.573112303000073 ], [ -123.455904373999914, 48.573131805000095 ], [ -123.455280319999972, 48.573110499000059 ], [ -123.455007187999954, 48.57315530699999 ], [ -123.454787504999928, 48.573264595000097 ], [ -123.454610413999916, 48.573409999000013 ], [ -123.454485187999964, 48.573674691000093 ], [ -123.454485990999927, 48.573794544000044 ], [ -123.454488878999939, 48.574232001000063 ], [ -123.454355451999945, 48.574232546000054 ], [ -123.449179609999945, 48.574253397000085 ], [ -123.449123898999915, 48.574230339000088 ], [ -123.449052472999981, 48.574200794000042 ], [ -123.448922770999985, 48.574046189000121 ], [ -123.448383159999935, 48.574257236000093 ], [ -123.447602267999969, 48.574562612000058 ], [ -123.445310034999949, 48.575277452000101 ], [ -123.444144664999939, 48.574479480000072 ], [ -123.443759313, 48.57417269000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214113122", "BldgCostT": "137661380", "sL_LossRatio": "0.753550404959881", "sL_AssetLoss": "381815.6", "sL_BldgLoss": "287717.3", "sL_StrLoss": "169510.3", "sL_NStrLoss": "118207", "sL_ContLoss": "94098.3", "geom_point": "0101000020E6100000A2A1A1DAFBDC5EC021FB942196494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.448383159999935, 48.574257236000093 ], [ -123.448922770999985, 48.574046189000121 ], [ -123.449052472999981, 48.574200794000042 ], [ -123.449123898999915, 48.574230339000088 ], [ -123.449179609999945, 48.574253397000085 ], [ -123.454355451999945, 48.574232546000054 ], [ -123.454488878999939, 48.574232001000063 ], [ -123.454485990999927, 48.573794544000044 ], [ -123.454485187999964, 48.573674691000093 ], [ -123.454610413999916, 48.573409999000013 ], [ -123.454787504999928, 48.573264595000097 ], [ -123.455007187999954, 48.57315530699999 ], [ -123.455280319999972, 48.573110499000059 ], [ -123.455904373999914, 48.573131805000095 ], [ -123.456109891, 48.573112303000073 ], [ -123.456262406999898, 48.573043884000128 ], [ -123.456374196999931, 48.572953702000056 ], [ -123.456422913999972, 48.572803406000041 ], [ -123.456416003999919, 48.572429095000068 ], [ -123.458016916999966, 48.572432196000115 ], [ -123.458019815999961, 48.573132795000056 ], [ -123.458027067999922, 48.573339610000083 ], [ -123.458043135999958, 48.573798219000089 ], [ -123.458057098999987, 48.574197514000062 ], [ -123.458056592999938, 48.574248520000069 ], [ -123.458039012999933, 48.576039002000059 ], [ -123.455798726999902, 48.576043060000124 ], [ -123.450678016999959, 48.576076267000062 ], [ -123.449868125999984, 48.576085669000086 ], [ -123.449698857999977, 48.57608701200008 ], [ -123.449051546999925, 48.576093121000021 ], [ -123.448737749999935, 48.576164921000043 ], [ -123.44821741, 48.576400364000051 ], [ -123.447970211999973, 48.576441303000124 ], [ -123.447418293999988, 48.576460483000098 ], [ -123.447285146999903, 48.576544728000023 ], [ -123.447203908999967, 48.576595084000111 ], [ -123.44554726599992, 48.575470684000088 ], [ -123.445462587999927, 48.575384783000061 ], [ -123.445310034999949, 48.575277452000101 ], [ -123.447602267999969, 48.574562612000058 ], [ -123.448383159999935, 48.574257236000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "426476993", "BldgCostT": "291219075", "sL_LossRatio": "0.7985379115932", "sL_AssetLoss": "623628.5", "sL_BldgLoss": "497991", "sL_StrLoss": "287684", "sL_NStrLoss": "210307", "sL_ContLoss": "125637.5", "geom_point": "0101000020E6100000BEC90B5D07DD5EC09FF86A47F1494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.450255292999941, 48.578561633000042 ], [ -123.450130904999952, 48.57848382200013 ], [ -123.449973830999966, 48.578460211000063 ], [ -123.449214888999975, 48.578027259000052 ], [ -123.44907950399994, 48.578027620000107 ], [ -123.44898419899998, 48.57796313000005 ], [ -123.448983917999968, 48.577918041000061 ], [ -123.448982304999959, 48.577872935000045 ], [ -123.44740976599995, 48.576742970000055 ], [ -123.447203908999967, 48.576595084000111 ], [ -123.447285146999903, 48.576544728000023 ], [ -123.447418293999988, 48.576460483000098 ], [ -123.447970211999973, 48.576441303000124 ], [ -123.44821741, 48.576400364000051 ], [ -123.448737749999935, 48.576164921000043 ], [ -123.449051546999925, 48.576093121000021 ], [ -123.449698857999977, 48.57608701200008 ], [ -123.449868125999984, 48.576085669000086 ], [ -123.450678016999959, 48.576076267000062 ], [ -123.455798726999902, 48.576043060000124 ], [ -123.458039012999933, 48.576039002000059 ], [ -123.458420708999981, 48.576038210000043 ], [ -123.458422652, 48.576956032000091 ], [ -123.458422603999949, 48.577884609000101 ], [ -123.45652490499999, 48.577886083000081 ], [ -123.45651589, 48.578429485000072 ], [ -123.456596603999913, 48.578614494000107 ], [ -123.456692394999962, 48.578670782000046 ], [ -123.456930208999893, 48.578703598000111 ], [ -123.458425407999968, 48.57871138900007 ], [ -123.458482947999983, 48.579620576000096 ], [ -123.454105471, 48.57962626000004 ], [ -123.452068346999923, 48.579628825000022 ], [ -123.451907139999918, 48.579629020000048 ], [ -123.45177625399999, 48.579670973000106 ], [ -123.45120102599999, 48.579219901000037 ], [ -123.450255292999941, 48.578561633000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211579749", "BldgCostT": "135369999", "sL_LossRatio": "0.859206335234704", "sL_AssetLoss": "486245.6", "sL_BldgLoss": "417785.3", "sL_StrLoss": "293302.3", "sL_NStrLoss": "124483", "sL_ContLoss": "68460.3", "geom_point": "0101000020E61000003DFA909E7FDD5EC08D1A0AA79E494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.458422652, 48.576956032000091 ], [ -123.458420708999981, 48.576038210000043 ], [ -123.458039012999933, 48.576039002000059 ], [ -123.458056592999938, 48.574248520000069 ], [ -123.458057098999987, 48.574197514000062 ], [ -123.458043135999958, 48.573798219000089 ], [ -123.458027067999922, 48.573339610000083 ], [ -123.458019815999961, 48.573132795000056 ], [ -123.458016916999966, 48.572432196000115 ], [ -123.458010094999963, 48.571755911000047 ], [ -123.459836288999952, 48.571747294000062 ], [ -123.46029739599993, 48.571803400000057 ], [ -123.461313929999946, 48.571792894000076 ], [ -123.462000595999939, 48.571765693000067 ], [ -123.462033289999951, 48.57191250700005 ], [ -123.461966794999967, 48.572041608000092 ], [ -123.461972998999926, 48.572178810000068 ], [ -123.462126120999969, 48.572352004000074 ], [ -123.462047899999931, 48.572420407000067 ], [ -123.461944454999937, 48.572421762000012 ], [ -123.461619021999937, 48.572426062000012 ], [ -123.460906223999984, 48.572435492000125 ], [ -123.460930296999933, 48.572541612000038 ], [ -123.461197608999925, 48.572804879000039 ], [ -123.461370938999963, 48.573051098000072 ], [ -123.461458345999944, 48.573175167000073 ], [ -123.461530807999935, 48.573278090000017 ], [ -123.461760371999958, 48.573463321000148 ], [ -123.462013292999956, 48.573667405000052 ], [ -123.462396722999969, 48.573829032000077 ], [ -123.462502885, 48.573873793000104 ], [ -123.462729889999963, 48.574056796000065 ], [ -123.462863321999947, 48.574219599000095 ], [ -123.463049708999989, 48.574351099000069 ], [ -123.463327487999919, 48.574420895000024 ], [ -123.463818120999917, 48.574465938000053 ], [ -123.463885104999974, 48.574472099000047 ], [ -123.464095709999967, 48.574531192000052 ], [ -123.464243878999937, 48.5746699910001 ], [ -123.464468786999944, 48.575017902000091 ], [ -123.464759989999948, 48.575694690000041 ], [ -123.464860614999978, 48.576038793000109 ], [ -123.464800993999972, 48.576391698000101 ], [ -123.464568094999933, 48.57674499400008 ], [ -123.464183720999969, 48.577219186000065 ], [ -123.464173778999935, 48.577231400000052 ], [ -123.46376378299999, 48.577883394000018 ], [ -123.463729308999987, 48.577883394000018 ], [ -123.462904305999956, 48.577883596000042 ], [ -123.462578114999943, 48.577882991000067 ], [ -123.460595095999949, 48.577884309000105 ], [ -123.458422603999949, 48.577884609000101 ], [ -123.458422652, 48.576956032000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159123866", "BldgCostT": "108063879", "sL_LossRatio": "0.802649642373481", "sL_AssetLoss": "323130.4", "sL_BldgLoss": "259360.5", "sL_StrLoss": "154451.5", "sL_NStrLoss": "104909", "sL_ContLoss": "63769.9", "geom_point": "0101000020E6100000BD6298769EDD5EC0EC0B00D9144A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.458482947999983, 48.579620576000096 ], [ -123.458425407999968, 48.57871138900007 ], [ -123.456930208999893, 48.578703598000111 ], [ -123.456692394999962, 48.578670782000046 ], [ -123.456596603999913, 48.578614494000107 ], [ -123.45651589, 48.578429485000072 ], [ -123.45652490499999, 48.577886083000081 ], [ -123.458422603999949, 48.577884609000101 ], [ -123.460595095999949, 48.577884309000105 ], [ -123.462578114999943, 48.577882991000067 ], [ -123.462904305999956, 48.577883596000042 ], [ -123.463729308999987, 48.577883394000018 ], [ -123.46376378299999, 48.577883394000018 ], [ -123.465261498999936, 48.577882839000033 ], [ -123.465884830999954, 48.577882600000088 ], [ -123.466541396999901, 48.578132598000138 ], [ -123.466977877999909, 48.578246698000029 ], [ -123.467475567999941, 48.578254069000074 ], [ -123.468255853999892, 48.578645011000091 ], [ -123.468427975999958, 48.57879247400011 ], [ -123.468504401, 48.578932230000085 ], [ -123.46850787299995, 48.579069348000054 ], [ -123.468623253999937, 48.579112659000074 ], [ -123.46860569899998, 48.579716297000047 ], [ -123.46701381499993, 48.579705443000115 ], [ -123.466964409999918, 48.579705096000019 ], [ -123.46685089, 48.579703508000108 ], [ -123.466389071999942, 48.57969705300011 ], [ -123.466138574999917, 48.579693533000103 ], [ -123.465864811999921, 48.579689686000023 ], [ -123.465465799999919, 48.579633293000015 ], [ -123.465128870999962, 48.579629904000065 ], [ -123.464156298999981, 48.579620106000078 ], [ -123.462775575999984, 48.579619184000087 ], [ -123.462603731999977, 48.579619079000047 ], [ -123.462186345999896, 48.579618710000055 ], [ -123.460765650999932, 48.579617548000087 ], [ -123.460491737999973, 48.579617912000039 ], [ -123.458482947999983, 48.579620576000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112188123", "BldgCostT": "75786381", "sL_LossRatio": "0.859092445278642", "sL_AssetLoss": "266273.09", "sL_BldgLoss": "228753.2", "sL_StrLoss": "159017", "sL_NStrLoss": "69736.2", "sL_ContLoss": "37519.89", "geom_point": "0101000020E61000003D2263DE38DD5EC08F26CDD5C54A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.455382724999978, 48.590434052000042 ], [ -123.455539118999965, 48.587537931000035 ], [ -123.45420976099993, 48.587543183000051 ], [ -123.454205805999948, 48.587101741000041 ], [ -123.453263481999912, 48.587079160000023 ], [ -123.453263427999971, 48.587080156000127 ], [ -123.452671292999952, 48.587065962000032 ], [ -123.452670005999977, 48.587089770000098 ], [ -123.447261788999967, 48.586959982000096 ], [ -123.447444217999944, 48.583592206000084 ], [ -123.446176882999964, 48.583561752000058 ], [ -123.446056170999938, 48.585789136000088 ], [ -123.444328055999947, 48.585747585000014 ], [ -123.444327983999926, 48.58332999100007 ], [ -123.444359982999984, 48.581428182000124 ], [ -123.442024883999949, 48.581376137000063 ], [ -123.442034248999903, 48.581203581000082 ], [ -123.441359127999959, 48.58118732400002 ], [ -123.441358431, 48.581200166000016 ], [ -123.441229592999946, 48.581197063000104 ], [ -123.44120403, 48.579714234000058 ], [ -123.444388897999943, 48.57970991300003 ], [ -123.445966482999964, 48.579698304 ], [ -123.447025967999977, 48.579705692000054 ], [ -123.44758481799991, 48.57971073300007 ], [ -123.449727160999927, 48.579730070000046 ], [ -123.450703325999939, 48.579738869000053 ], [ -123.451177780999942, 48.579743161000074 ], [ -123.45153801599993, 48.579746389000071 ], [ -123.45177625399999, 48.579670973000106 ], [ -123.451907139999918, 48.579629020000048 ], [ -123.452068346999923, 48.579628825000022 ], [ -123.454105471, 48.57962626000004 ], [ -123.458482947999983, 48.579620576000096 ], [ -123.460491737999973, 48.579617912000039 ], [ -123.460765650999932, 48.579617548000087 ], [ -123.462186345999896, 48.579618710000055 ], [ -123.462603731999977, 48.579619079000047 ], [ -123.462775575999984, 48.579619184000087 ], [ -123.464156298999981, 48.579620106000078 ], [ -123.465128870999962, 48.579629904000065 ], [ -123.465465799999919, 48.579633293000015 ], [ -123.465864811999921, 48.579689686000023 ], [ -123.466138574999917, 48.579693533000103 ], [ -123.466389071999942, 48.57969705300011 ], [ -123.46685089, 48.579703508000108 ], [ -123.466964409999918, 48.579705096000019 ], [ -123.46701381499993, 48.579705443000115 ], [ -123.46860569899998, 48.579716297000047 ], [ -123.46877639399996, 48.57972036400011 ], [ -123.46921409199993, 48.579730818000066 ], [ -123.469873311999933, 48.579755852000098 ], [ -123.469902800999975, 48.579796097000077 ], [ -123.470018566999954, 48.579761361000067 ], [ -123.470209740999948, 48.579768611000077 ], [ -123.470336502999956, 48.579857296000036 ], [ -123.470226723999971, 48.579935146000039 ], [ -123.470004788999915, 48.579928205000066 ], [ -123.470006300999941, 48.580091454000048 ], [ -123.469864501999893, 48.580192009000093 ], [ -123.469865034999927, 48.580193360000074 ], [ -123.467160081999964, 48.580204366000054 ], [ -123.467161061999946, 48.580310866000076 ], [ -123.467945137999891, 48.580329555000084 ], [ -123.467908525999988, 48.581010994000074 ], [ -123.46838777399995, 48.581009046000069 ], [ -123.468390267999894, 48.581278925000085 ], [ -123.468797011999982, 48.581277270000129 ], [ -123.468801120999956, 48.581721391000023 ], [ -123.468605908999947, 48.581915303000066 ], [ -123.468271131999927, 48.582089079000077 ], [ -123.467850510999952, 48.582090787000013 ], [ -123.467838537999938, 48.582313624000072 ], [ -123.467730692999979, 48.58236960400005 ], [ -123.46744528, 48.582423694000113 ], [ -123.467051482999977, 48.582326904000062 ], [ -123.466630297999941, 48.582336898000101 ], [ -123.465930300999929, 48.582808296000046 ], [ -123.465786706999964, 48.583474801000108 ], [ -123.465829718999913, 48.585021502000131 ], [ -123.466089298, 48.585371885000072 ], [ -123.466285199999945, 48.586009888000099 ], [ -123.46683460599999, 48.58669920100003 ], [ -123.466863901999957, 48.586897207000092 ], [ -123.466648489999955, 48.587123591000086 ], [ -123.466129107999947, 48.588285807000076 ], [ -123.465632399999919, 48.588737313000102 ], [ -123.46550281199994, 48.589305499000105 ], [ -123.465352302999918, 48.589368209000114 ], [ -123.465121800999952, 48.589342505000076 ], [ -123.464946105, 48.589433706000101 ], [ -123.464979506999924, 48.589936384000076 ], [ -123.464642306999977, 48.590217002000031 ], [ -123.464791899999966, 48.590315286000141 ], [ -123.464907638999989, 48.590323557000083 ], [ -123.464301090999953, 48.590309085000037 ], [ -123.46429806399999, 48.590365323000043 ], [ -123.465505189999945, 48.590394120000077 ], [ -123.465855429999948, 48.590503419000072 ], [ -123.463388260999977, 48.590678936000145 ], [ -123.462784700999975, 48.590701597000063 ], [ -123.461979486999965, 48.590708445000118 ], [ -123.45336129899999, 48.590710854000065 ], [ -123.453378854000036, 48.59038605100011 ], [ -123.455382724999978, 48.590434052000042 ] ], [ [ -123.454777344999968, 48.586731276000165 ], [ -123.45481025499997, 48.586121974000065 ], [ -123.454309112999908, 48.586109969000056 ], [ -123.454275439999961, 48.586733257000034 ], [ -123.454777344999968, 48.586731276000165 ] ], [ [ -123.445435609999933, 48.582168022000069 ], [ -123.445445548999984, 48.581984668000118 ], [ -123.444987272999967, 48.581973649000069 ], [ -123.444977330999933, 48.582157002000017 ], [ -123.445435609999933, 48.582168022000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3533167", "BldgCostT": "2436667", "sL_LossRatio": "0.833177307620296", "sL_AssetLoss": "14420.7", "sL_BldgLoss": "12015", "sL_StrLoss": "6903", "sL_NStrLoss": "5112", "sL_ContLoss": "2405.7", "geom_point": "0101000020E6100000691F02797CDC5EC06388944D564B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.44432809099996, 48.586947906000056 ], [ -123.444328065999912, 48.586082247000064 ], [ -123.444919828999915, 48.586096478000108 ], [ -123.44488080399999, 48.586816199000012 ], [ -123.446305322999962, 48.586850444000042 ], [ -123.446110131999959, 48.590451920000056 ], [ -123.443791324999921, 48.59039616800009 ], [ -123.443774152999964, 48.590712715000038 ], [ -123.443707489999952, 48.590712724000113 ], [ -123.44432809099996, 48.586947906000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139958250", "BldgCostT": "94785000", "sL_LossRatio": "0.887877091345055", "sL_AssetLoss": "343481.1", "sL_BldgLoss": "304969", "sL_StrLoss": "231885", "sL_NStrLoss": "73084", "sL_ContLoss": "38512.1", "geom_point": "0101000020E610000043A0FA07D1DB5EC08FE801A048454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.448660278999938, 48.558059660000083 ], [ -123.448656278999948, 48.557607206000107 ], [ -123.44784316399999, 48.557610372000077 ], [ -123.447840780999968, 48.55734049000008 ], [ -123.447434227999935, 48.557342071000079 ], [ -123.44742823, 48.556661885000018 ], [ -123.446486761999935, 48.556639250000039 ], [ -123.446532537999985, 48.555793912000098 ], [ -123.444574265999989, 48.555746802000066 ], [ -123.444576517999934, 48.556003689000114 ], [ -123.444175008999977, 48.556005239000086 ], [ -123.444169200999966, 48.554491198000079 ], [ -123.443443663999957, 48.55447915000012 ], [ -123.443452044999958, 48.554324559000115 ], [ -123.442932364999962, 48.554312045000053 ], [ -123.442923771999943, 48.554470514000144 ], [ -123.438624197999971, 48.554398999000085 ], [ -123.436647220999987, 48.554421875000102 ], [ -123.431664803, 48.554479338000093 ], [ -123.431700919999955, 48.55428590000011 ], [ -123.431825518, 48.553612711000071 ], [ -123.431533585999929, 48.552812194000111 ], [ -123.431609915999957, 48.552155891000062 ], [ -123.431571504999908, 48.55176043300002 ], [ -123.431505889999983, 48.551085012000065 ], [ -123.430380893999939, 48.549263588000024 ], [ -123.430156088999951, 48.548571994000049 ], [ -123.429885455999951, 48.548035359000039 ], [ -123.429798373999972, 48.547862794000132 ], [ -123.42954221699999, 48.547507124000063 ], [ -123.429359495999933, 48.547253472000136 ], [ -123.429282783999952, 48.547147003000063 ], [ -123.429238608999967, 48.547090084000068 ], [ -123.429245834999975, 48.546940026000129 ], [ -123.429255862999938, 48.546732320000068 ], [ -123.429259889999983, 48.546648801000096 ], [ -123.429459865999959, 48.546054268000013 ], [ -123.429550503999963, 48.545784893000111 ], [ -123.429384597999942, 48.545353502000133 ], [ -123.429151502999929, 48.544968026000085 ], [ -123.42900507, 48.544725894000074 ], [ -123.428918129999929, 48.544582097000031 ], [ -123.42873053999989, 48.54386983200002 ], [ -123.428581921999978, 48.543305398000072 ], [ -123.427730924999963, 48.541995503000095 ], [ -123.427467904999986, 48.541412096000144 ], [ -123.427420801999972, 48.540736519000092 ], [ -123.427562605, 48.539674210000094 ], [ -123.426837094999911, 48.538867708000076 ], [ -123.426032181999986, 48.538349607000043 ], [ -123.425800803999934, 48.538080690000122 ], [ -123.425077605999945, 48.537578100000061 ], [ -123.424762706999957, 48.53720260900009 ], [ -123.424185772999962, 48.535954267000065 ], [ -123.42301416, 48.535319036000011 ], [ -123.422537814999956, 48.534978375000023 ], [ -123.422167647999927, 48.534575372000106 ], [ -123.421283990999967, 48.534165295000051 ], [ -123.420736980999891, 48.533609219 ], [ -123.419940752999977, 48.532961427000025 ], [ -123.419387990999951, 48.532435856000127 ], [ -123.419339555999983, 48.532308362000066 ], [ -123.418708285999912, 48.530647601000048 ], [ -123.418211616999884, 48.529641898000072 ], [ -123.417763475999919, 48.52925682700009 ], [ -123.417714249999975, 48.529235154000084 ], [ -123.417344922, 48.529072625000076 ], [ -123.417505832999979, 48.529063630000074 ], [ -123.417933841999954, 48.529039696000098 ], [ -123.418693112999975, 48.528997234 ], [ -123.418775085999982, 48.528997832000037 ], [ -123.41977718, 48.52900519100006 ], [ -123.424817225999959, 48.529042070000102 ], [ -123.425914085999963, 48.52905008200009 ], [ -123.426713276999962, 48.52905590000006 ], [ -123.426957263999967, 48.529057672000093 ], [ -123.427992285999935, 48.529065208000183 ], [ -123.428583229999958, 48.529075433000081 ], [ -123.430218478999933, 48.529103798000016 ], [ -123.430542894999931, 48.528982789000089 ], [ -123.430710106999953, 48.528768583000108 ], [ -123.430829222999989, 48.52727659600005 ], [ -123.430834302000022, 48.527023582000027 ], [ -123.430836858999911, 48.526897930000118 ], [ -123.430843609999968, 48.526564609000111 ], [ -123.430854186999952, 48.526421812000095 ], [ -123.430896169000036, 48.525855609000075 ], [ -123.431011404999964, 48.524301102000095 ], [ -123.43105499499994, 48.524171395000081 ], [ -123.431137615999958, 48.524094901000119 ], [ -123.431262881999913, 48.524188958000096 ], [ -123.432100691, 48.52481783200006 ], [ -123.432520305999944, 48.525132830000075 ], [ -123.432698456000011, 48.5252665450001 ], [ -123.433227783999953, 48.525663874000045 ], [ -123.433510801999901, 48.525876294000099 ], [ -123.434784199999967, 48.526577005000092 ], [ -123.434825470999954, 48.526597362000068 ], [ -123.435821333999939, 48.527088842000062 ], [ -123.43592719899999, 48.527141085000096 ], [ -123.43656938099997, 48.52751459300007 ], [ -123.436990690999949, 48.527849403000069 ], [ -123.437768790999911, 48.528684099000031 ], [ -123.437944892999951, 48.528961844000037 ], [ -123.438042809999956, 48.529116286000061 ], [ -123.438148488999943, 48.529286603000052 ], [ -123.438217273999925, 48.529613511000058 ], [ -123.438503180999987, 48.530972202000036 ], [ -123.438512914999961, 48.531865006000046 ], [ -123.438483608999931, 48.532154608000042 ], [ -123.438368305, 48.532485501000032 ], [ -123.437957491999953, 48.533127399000115 ], [ -123.437710687999967, 48.533886905000038 ], [ -123.437461051999904, 48.534909049000092 ], [ -123.437413415999913, 48.535104183000051 ], [ -123.437235204, 48.535645382000048 ], [ -123.437400199999971, 48.535670095000057 ], [ -123.437758212999981, 48.53587619000011 ], [ -123.437792788999943, 48.535933668000091 ], [ -123.437934373999923, 48.536168896000056 ], [ -123.437939176999947, 48.536403505000052 ], [ -123.437689685999899, 48.536938406000068 ], [ -123.43768094099994, 48.537048533000089 ], [ -123.437670993999987, 48.537173560000085 ], [ -123.437661040999942, 48.537299114000049 ], [ -123.43763421499996, 48.537636799000069 ], [ -123.43763836799998, 48.537669518000044 ], [ -123.437744212999988, 48.538500501 ], [ -123.437923502999922, 48.539033996000043 ], [ -123.438108585999984, 48.539435211000047 ], [ -123.438455002999959, 48.539980005000103 ], [ -123.438495311999958, 48.540084685000096 ], [ -123.439050201999947, 48.540645743 ], [ -123.439153004999952, 48.540749706000106 ], [ -123.43965102099996, 48.541167505000089 ], [ -123.444517443, 48.544182772000049 ], [ -123.445498072999953, 48.544790287000041 ], [ -123.446872628999955, 48.545641814000071 ], [ -123.44736272599998, 48.545945419000134 ], [ -123.447453090999957, 48.546001412000066 ], [ -123.44780849299994, 48.546300966000061 ], [ -123.448022285999954, 48.546481193000076 ], [ -123.448369290999963, 48.546943007000074 ], [ -123.448573900999961, 48.547486211000134 ], [ -123.448612188, 48.547827908000066 ], [ -123.448594598999989, 48.548179089000072 ], [ -123.448451498999958, 48.548625797000049 ], [ -123.448446405999917, 48.548641688000032 ], [ -123.447176889999966, 48.551118448000132 ], [ -123.446954584999901, 48.551552127000022 ], [ -123.446595217999985, 48.552253179000054 ], [ -123.446546428999966, 48.552579293000086 ], [ -123.446548490999987, 48.55279213700004 ], [ -123.446550934999919, 48.553045508000061 ], [ -123.446851392999974, 48.554567413000044 ], [ -123.4470219829999, 48.554911651000097 ], [ -123.447036790999917, 48.554941535000104 ], [ -123.447053472999983, 48.554963160000064 ], [ -123.447169467, 48.555113533000096 ], [ -123.447359139999918, 48.555359515000056 ], [ -123.44784118699999, 48.555776799000128 ], [ -123.44813617699999, 48.555949958000035 ], [ -123.449057644999968, 48.55649087800002 ], [ -123.449712732999956, 48.556875420000054 ], [ -123.451235397999966, 48.557769159000074 ], [ -123.451286007999911, 48.557798856000062 ], [ -123.451595448999953, 48.557980471000043 ], [ -123.451676793999965, 48.558028227000058 ], [ -123.448660278999938, 48.558059660000083 ] ], [ [ -123.4360122399999, 48.553043548000048 ], [ -123.436054958999989, 48.552257812000036 ], [ -123.435600095, 48.552259533000012 ], [ -123.435598774999917, 48.552105823000019 ], [ -123.435467514999942, 48.552102653000055 ], [ -123.435463694999981, 48.55217290000008 ], [ -123.434831136999946, 48.552157619000099 ], [ -123.434814632999988, 48.552461024000067 ], [ -123.435084393999944, 48.55246754100007 ], [ -123.435054323999935, 48.553020411000077 ], [ -123.4360122399999, 48.553043548000048 ] ], [ [ -123.43190404799999, 48.541625975000073 ], [ -123.431941507999966, 48.540937906000089 ], [ -123.431916748999939, 48.540937999000064 ], [ -123.431879324999926, 48.541625377000116 ], [ -123.43190404799999, 48.541625975000073 ] ], [ [ -123.432364571999955, 48.538815597000038 ], [ -123.432398598, 48.538190458000109 ], [ -123.43069976299995, 48.538149349000072 ], [ -123.430698021999973, 48.538181324000071 ], [ -123.431027794999963, 48.538189306000127 ], [ -123.43096949000001, 48.539259943000083 ], [ -123.431327246999928, 48.539268601000074 ], [ -123.431295004, 48.539860765000128 ], [ -123.431835823999918, 48.539858738000092 ], [ -123.431837670999982, 48.540075869000084 ], [ -123.43194177399999, 48.540078388000062 ], [ -123.431939058999944, 48.540128242000037 ], [ -123.431985594999944, 48.540128067000097 ], [ -123.432057447999981, 48.538808167000099 ], [ -123.432364571999955, 48.538815597000038 ] ], [ [ -123.434632912999973, 48.531405994000131 ], [ -123.434634297999963, 48.531380520000063 ], [ -123.432727816999915, 48.531334416000107 ], [ -123.432702562999964, 48.531798531000092 ], [ -123.43175166499995, 48.531775523000078 ], [ -123.431743733999966, 48.531921221000047 ], [ -123.433910200999932, 48.531973627000077 ], [ -123.433941980999947, 48.531389290000057 ], [ -123.434632912999973, 48.531405994000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133549749", "BldgCostT": "86364999", "sL_LossRatio": "0.899717895676091", "sL_AssetLoss": "301696.9", "sL_BldgLoss": "271442.1", "sL_StrLoss": "204531.8", "sL_NStrLoss": "66910.3", "sL_ContLoss": "30254.8", "geom_point": "0101000020E6100000286CED1A40DA5EC072916BD8A9454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.42982970499996, 48.554484643000052 ], [ -123.429830942, 48.550485412000164 ], [ -123.424761818999926, 48.550557025000074 ], [ -123.424858244999939, 48.548791096000052 ], [ -123.424594823999968, 48.548792068000061 ], [ -123.424597082999952, 48.549061950000109 ], [ -123.423377612999957, 48.549066441000093 ], [ -123.423375360999941, 48.548796559000031 ], [ -123.422968872999959, 48.548798052000066 ], [ -123.42296437499999, 48.548258288000042 ], [ -123.422805235999959, 48.548258873000066 ], [ -123.422753686999968, 48.54920222000009 ], [ -123.422816950999973, 48.549203755000029 ], [ -123.422741443999939, 48.550585499000128 ], [ -123.41720689, 48.550663305000086 ], [ -123.414793784999958, 48.550663449000076 ], [ -123.41312690599996, 48.55066352700009 ], [ -123.413059130999969, 48.550663524000093 ], [ -123.412408892999949, 48.550663546000081 ], [ -123.412381787999962, 48.550663542000088 ], [ -123.411717741999979, 48.55066359200007 ], [ -123.410445717999949, 48.55066359900006 ], [ -123.408702522999974, 48.550662494000036 ], [ -123.403524392999941, 48.550694714000088 ], [ -123.4007697159999, 48.550676875000057 ], [ -123.396684753999978, 48.550467809000089 ], [ -123.396684375999953, 48.550467828000066 ], [ -123.392385026999989, 48.550624297000134 ], [ -123.392260472999951, 48.550624774000013 ], [ -123.392124097999925, 48.550625296000113 ], [ -123.392006310999932, 48.549893903000104 ], [ -123.391938156999984, 48.549599510000085 ], [ -123.391163401999933, 48.546251414000039 ], [ -123.390820886999933, 48.545034798000096 ], [ -123.390757912999945, 48.544861242000124 ], [ -123.39055091299997, 48.544290596000067 ], [ -123.390724457999923, 48.544258794000022 ], [ -123.390170263999948, 48.542662804000081 ], [ -123.389948541999956, 48.541683594000041 ], [ -123.389393159999969, 48.537885741000025 ], [ -123.389424311999974, 48.53768995100004 ], [ -123.389491301999954, 48.537578904000057 ], [ -123.389637578999952, 48.537501346000141 ], [ -123.390232568999949, 48.537380743000021 ], [ -123.390332881999896, 48.537277732000071 ], [ -123.390347890000015, 48.537129311000122 ], [ -123.390215384999976, 48.536298303000066 ], [ -123.391719124999938, 48.536303904000064 ], [ -123.395847617999948, 48.536319126000087 ], [ -123.397012393999944, 48.536323412000073 ], [ -123.39735101399998, 48.536324645000015 ], [ -123.398077894, 48.536327299000092 ], [ -123.400006276999932, 48.5363354690001 ], [ -123.401458109, 48.536341596000092 ], [ -123.402066747999953, 48.536358932000034 ], [ -123.403284060999979, 48.536393577000091 ], [ -123.403710390999962, 48.536405708000068 ], [ -123.404326293999986, 48.536465585000016 ], [ -123.404466384999964, 48.536479206000074 ], [ -123.40462687599998, 48.536529356000074 ], [ -123.405120489999916, 48.536683601000057 ], [ -123.405674704999939, 48.537009105000109 ], [ -123.406342786, 48.537574592000119 ], [ -123.406416150999974, 48.537706793000048 ], [ -123.406409054999969, 48.537835857000111 ], [ -123.405559504999985, 48.537815094000074 ], [ -123.40555492499999, 48.537898378000115 ], [ -123.405171889999906, 48.5378890140001 ], [ -123.405112373999913, 48.538970992 ], [ -123.405717172, 48.538985776000089 ], [ -123.405687175999986, 48.539531204000127 ], [ -123.407373137999969, 48.539572398000061 ], [ -123.407675094999917, 48.539737684000052 ], [ -123.408257805999952, 48.539889000000137 ], [ -123.40832461499997, 48.539891126000057 ], [ -123.408486046999954, 48.539896264000092 ], [ -123.408622278999971, 48.539900598000031 ], [ -123.408831731999939, 48.539869764000052 ], [ -123.408990500999892, 48.539846405000048 ], [ -123.40925884399995, 48.53985492000006 ], [ -123.409368505999964, 48.539858388000042 ], [ -123.409598613999947, 48.539928898000042 ], [ -123.41012974299997, 48.540260662000023 ], [ -123.410143928999929, 48.540269504 ], [ -123.411544513999957, 48.540822094000099 ], [ -123.411965118, 48.540847693000032 ], [ -123.41207408, 48.540769936000103 ], [ -123.412205786999934, 48.54067590100005 ], [ -123.412215691999961, 48.540126193000063 ], [ -123.41235172599994, 48.53996449600001 ], [ -123.4126749119999, 48.539891183000115 ], [ -123.412795728, 48.539888717000117 ], [ -123.413526684999937, 48.539873655000058 ], [ -123.413777098999958, 48.539868507000115 ], [ -123.414244954999958, 48.539868075000122 ], [ -123.417345106999932, 48.539865205000069 ], [ -123.417358239999942, 48.538999454000084 ], [ -123.41736998, 48.538224901000085 ], [ -123.41762968099998, 48.538193482000047 ], [ -123.41802188299998, 48.538146025000074 ], [ -123.418319874999952, 48.538109970000107 ], [ -123.419126177999914, 48.538012397000095 ], [ -123.421304622999955, 48.537698392000102 ], [ -123.424762706999957, 48.53720260900009 ], [ -123.425077605999945, 48.537578100000061 ], [ -123.425800803999934, 48.538080690000122 ], [ -123.426032181999986, 48.538349607000043 ], [ -123.426837094999911, 48.538867708000076 ], [ -123.427562605, 48.539674210000094 ], [ -123.427420801999972, 48.540736519000092 ], [ -123.427467904999986, 48.541412096000144 ], [ -123.427730924999963, 48.541995503000095 ], [ -123.428581921999978, 48.543305398000072 ], [ -123.42873053999989, 48.54386983200002 ], [ -123.428918129999929, 48.544582097000031 ], [ -123.42900507, 48.544725894000074 ], [ -123.429151502999929, 48.544968026000085 ], [ -123.429384597999942, 48.545353502000133 ], [ -123.429550503999963, 48.545784893000111 ], [ -123.429459865999959, 48.546054268000013 ], [ -123.429259889999983, 48.546648801000096 ], [ -123.429255862999938, 48.546732320000068 ], [ -123.429245834999975, 48.546940026000129 ], [ -123.429238608999967, 48.547090084000068 ], [ -123.429282783999952, 48.547147003000063 ], [ -123.429359495999933, 48.547253472000136 ], [ -123.42954221699999, 48.547507124000063 ], [ -123.429798373999972, 48.547862794000132 ], [ -123.429885455999951, 48.548035359000039 ], [ -123.430156088999951, 48.548571994000049 ], [ -123.430380893999939, 48.549263588000024 ], [ -123.431505889999983, 48.551085012000065 ], [ -123.431571504999908, 48.55176043300002 ], [ -123.431609915999957, 48.552155891000062 ], [ -123.431533585999929, 48.552812194000111 ], [ -123.431825518, 48.553612711000071 ], [ -123.431700919999955, 48.55428590000011 ], [ -123.431664803, 48.554479338000093 ], [ -123.42982970499996, 48.554484643000052 ] ], [ [ -123.400259462999955, 48.547799679000015 ], [ -123.400372316999906, 48.545752212000089 ], [ -123.401201974999978, 48.545772526000093 ], [ -123.401210090999925, 48.545625232000049 ], [ -123.406613440999934, 48.545757371000072 ], [ -123.406575162999943, 48.546453526000079 ], [ -123.40672847899998, 48.546457271000044 ], [ -123.406694441999917, 48.547076314 ], [ -123.407657016999963, 48.547099824000021 ], [ -123.407686582999972, 48.546561894 ], [ -123.408308210999962, 48.546577072000076 ], [ -123.408389135999982, 48.545104307000017 ], [ -123.408481513999931, 48.545106562000122 ], [ -123.40850834799997, 48.544618170000049 ], [ -123.408205467999949, 48.544610775000102 ], [ -123.408234817000022, 48.544076648000114 ], [ -123.407965389999973, 48.544070070000025 ], [ -123.407984278999933, 48.543726352000093 ], [ -123.404813799999943, 48.543648889000103 ], [ -123.404843058999944, 48.543117096000096 ], [ -123.404392415999936, 48.543106078000093 ], [ -123.404422428999922, 48.542560654000063 ], [ -123.400116097, 48.542455268000033 ], [ -123.400117455999961, 48.542430623000058 ], [ -123.398938356999949, 48.542401737000056 ], [ -123.39895275399999, 48.542140661000083 ], [ -123.396824198, 48.542088482000075 ], [ -123.39692228199999, 48.540311108000033 ], [ -123.396706229999936, 48.540305810000056 ], [ -123.396583924999959, 48.542521883000084 ], [ -123.395684255999967, 48.542499814000081 ], [ -123.395685718999957, 48.542687565000016 ], [ -123.39527927799999, 48.54268896100006 ], [ -123.395283480999979, 48.543228729000134 ], [ -123.393657701999985, 48.543234299000098 ], [ -123.393651619999972, 48.542449925000021 ], [ -123.392838566999941, 48.542429958000056 ], [ -123.392843690999939, 48.543092097000127 ], [ -123.393064581999937, 48.543097522000096 ], [ -123.393054258999939, 48.543284297000078 ], [ -123.394727533999941, 48.543325378000105 ], [ -123.394681743999925, 48.544154410000083 ], [ -123.394802679999913, 48.544157378000094 ], [ -123.394749522999959, 48.545119796000094 ], [ -123.395704654, 48.545116518000064 ], [ -123.395708859999985, 48.545656284000145 ], [ -123.396115325999943, 48.545654886000079 ], [ -123.39611953799999, 48.546194653 ], [ -123.396932473999939, 48.546191853000082 ], [ -123.396936695999941, 48.546731621000049 ], [ -123.398156112999942, 48.546727410000088 ], [ -123.398158230999954, 48.546997292000064 ], [ -123.398564703999909, 48.546995886000047 ], [ -123.398573182999939, 48.548075419000021 ], [ -123.399386148999923, 48.548072602000055 ], [ -123.399387451999957, 48.548238141000127 ], [ -123.400200599999948, 48.548258057000098 ], [ -123.40019698699993, 48.547799896000079 ], [ -123.400259462999955, 48.547799679000015 ] ], [ [ -123.415532207999931, 48.541903875000067 ], [ -123.415493243999919, 48.542614991000043 ], [ -123.415667121999917, 48.542619224000084 ], [ -123.415662204999961, 48.542708972000106 ], [ -123.416220300999953, 48.542722559000048 ], [ -123.416264168999959, 48.541921694000038 ], [ -123.415532207999931, 48.541903875000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130137666", "BldgCostT": "85746666", "sL_LossRatio": "0.947104362515719", "sL_AssetLoss": "183228.91", "sL_BldgLoss": "173536.9", "sL_StrLoss": "142378.5", "sL_NStrLoss": "31158.4", "sL_ContLoss": "9692.01", "geom_point": "0101000020E61000002B562ED005DB5EC0BE35FAE29C424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.417331200999953, 48.526532402000043 ], [ -123.41729547199999, 48.52613420200003 ], [ -123.417289194999938, 48.526064314000031 ], [ -123.417250868999957, 48.526036510000104 ], [ -123.417031702999935, 48.525877693000062 ], [ -123.415652096, 48.525731049000044 ], [ -123.415633686999982, 48.525729093000024 ], [ -123.414662993999926, 48.525430502000042 ], [ -123.413924209999948, 48.525169011000067 ], [ -123.413365298999963, 48.524882205000075 ], [ -123.412765402999966, 48.524308596000019 ], [ -123.412107873999929, 48.523600989000059 ], [ -123.411369795, 48.522613693000018 ], [ -123.4110968049999, 48.522291402000114 ], [ -123.410874716999956, 48.521805404000055 ], [ -123.410789098999956, 48.52112259000009 ], [ -123.410999713999956, 48.520437896000047 ], [ -123.410942397999975, 48.520078597000058 ], [ -123.410654986999958, 48.519575703000015 ], [ -123.409820005999933, 48.518605811 ], [ -123.409683378999915, 48.51818769700003 ], [ -123.409625382999948, 48.517816606000032 ], [ -123.40976972599999, 48.517231409000026 ], [ -123.40991579099996, 48.516834591000077 ], [ -123.410029486, 48.516370914000021 ], [ -123.410386105999962, 48.514916481000057 ], [ -123.410880497999983, 48.514060309000058 ], [ -123.411693510999967, 48.512274997000112 ], [ -123.411743681999937, 48.511852404000109 ], [ -123.411692196999951, 48.511582399000112 ], [ -123.41151820399989, 48.511231090000116 ], [ -123.411519498999937, 48.511035388000018 ], [ -123.411772992999971, 48.510601605000026 ], [ -123.411803001999942, 48.510399400000054 ], [ -123.41174960699999, 48.510215107000093 ], [ -123.411627813999971, 48.510046191000107 ], [ -123.410887695999918, 48.509295090000059 ], [ -123.410879189999946, 48.509006406 ], [ -123.412098891999932, 48.509317401000047 ], [ -123.412480165999938, 48.509462890000108 ], [ -123.413350109999968, 48.510040393000061 ], [ -123.41393678899999, 48.510309898000081 ], [ -123.414276288999957, 48.51052741000008 ], [ -123.414307564, 48.510565384000067 ], [ -123.414479067999963, 48.510773986000054 ], [ -123.414728274999945, 48.51066459000009 ], [ -123.414831895999967, 48.510649087000104 ], [ -123.414967865999984, 48.510647436000042 ], [ -123.415003711999958, 48.51064699900008 ], [ -123.415136026999917, 48.510699060000022 ], [ -123.415588982999935, 48.510877294000139 ], [ -123.415638791999982, 48.510896912000071 ], [ -123.415801286999923, 48.511015391000079 ], [ -123.415974680999952, 48.511239935000042 ], [ -123.416011675999968, 48.511287838000051 ], [ -123.416479060999961, 48.511893013000133 ], [ -123.416686062999972, 48.512062146000112 ], [ -123.417092181999948, 48.512199167000055 ], [ -123.4175005, 48.512272181000128 ], [ -123.417773893999936, 48.512388868000109 ], [ -123.418100501999945, 48.512595182000091 ], [ -123.418317089999945, 48.512836682000106 ], [ -123.418875717999953, 48.513175786000026 ], [ -123.419676007999939, 48.513398193000093 ], [ -123.420868572999936, 48.513464984000109 ], [ -123.4217375899999, 48.513615104000095 ], [ -123.424256684999975, 48.513650995000091 ], [ -123.424525412999969, 48.513687234000066 ], [ -123.42472888399999, 48.513731457000119 ], [ -123.424918930000032, 48.513784737000051 ], [ -123.425190541999953, 48.513882693000021 ], [ -123.425475802999955, 48.513989589000047 ], [ -123.42574733899994, 48.514078559000019 ], [ -123.425951048999963, 48.514149785000029 ], [ -123.426018909999982, 48.514167517 ], [ -123.426050499999945, 48.514237368000124 ], [ -123.426061310999913, 48.51426135800007 ], [ -123.426087921999908, 48.51432019900011 ], [ -123.42621128699993, 48.514499671000067 ], [ -123.426307437999952, 48.5146612570001 ], [ -123.426403633999897, 48.514831836000042 ], [ -123.426472475999987, 48.514966532000088 ], [ -123.426527452999977, 48.51506530000006 ], [ -123.426541318999952, 48.515101224000048 ], [ -123.42674509299999, 48.515181411000114 ], [ -123.426948884999945, 48.515261620000089 ], [ -123.427139438999973, 48.515377880000116 ], [ -123.427202960999949, 48.515416623000128 ], [ -123.427329972000038, 48.515494119000046 ], [ -123.427520386999944, 48.515592379000054 ], [ -123.42771087899996, 48.515699621000074 ], [ -123.428037664, 48.515914324000107 ], [ -123.428161212999953, 48.51611178400001 ], [ -123.428298208999962, 48.516300207000057 ], [ -123.428421667999885, 48.516488662000022 ], [ -123.42850418099999, 48.516641303000043 ], [ -123.428600281999948, 48.516793870000065 ], [ -123.428873001999989, 48.517017786000082 ], [ -123.428901891999899, 48.517233577000084 ], [ -123.428795392999945, 48.517449888000115 ], [ -123.428688893999933, 48.517666198 ], [ -123.428554905999945, 48.517837630000066 ], [ -123.428434566999925, 48.518018002000105 ], [ -123.42836805499995, 48.518162190000119 ], [ -123.428505231999907, 48.518368604000067 ], [ -123.428750508999897, 48.518547629000118 ], [ -123.429089245999975, 48.518573356000054 ], [ -123.429333003999957, 48.518572440000035 ], [ -123.42957676599994, 48.518571524000045 ], [ -123.429834046999986, 48.518570556000064 ], [ -123.430104966999977, 48.51857856200008 ], [ -123.43022711799992, 48.518614094000043 ], [ -123.430417534999961, 48.518712327000109 ], [ -123.430512642999943, 48.51874796100001 ], [ -123.430812207999935, 48.51885461600007 ], [ -123.430961680999971, 48.518880903000131 ], [ -123.431056358, 48.518898554000025 ], [ -123.431137391999926, 48.518898336000099 ], [ -123.431353297, 48.518870777000146 ], [ -123.431556186999927, 48.518843030000077 ], [ -123.431786013999925, 48.51879716300008 ], [ -123.432029442999934, 48.518760285000056 ], [ -123.43225926799991, 48.518714418000066 ], [ -123.432516648999979, 48.518722448000105 ], [ -123.432773993999959, 48.518730488000116 ], [ -123.433017676999953, 48.518720581000032 ], [ -123.433261339999945, 48.518710648000038 ], [ -123.433532339999928, 48.518727630000079 ], [ -123.433803304999984, 48.518744621000103 ], [ -123.434087904999956, 48.51877053100003 ], [ -123.434372506999949, 48.518796440000138 ], [ -123.434453998999913, 48.518823118000057 ], [ -123.434765618999975, 48.518839947000039 ], [ -123.434901108999895, 48.518848424000062 ], [ -123.435090774999964, 48.518856689000096 ], [ -123.435388820999947, 48.518873558000074 ], [ -123.435673377999962, 48.518890468000031 ], [ -123.435971421999966, 48.518907336000062 ], [ -123.436214384999957, 48.518954695000104 ], [ -123.436335682999939, 48.518974895000099 ], [ -123.437220092999965, 48.519145008000066 ], [ -123.437887204999925, 48.519357714000101 ], [ -123.438782197999942, 48.519879706 ], [ -123.438905414999951, 48.520025996000044 ], [ -123.438782897999943, 48.52053791 ], [ -123.438875985999957, 48.520990103000052 ], [ -123.438950135999931, 48.521162798000063 ], [ -123.438981627999937, 48.521236104000131 ], [ -123.439118014999934, 48.521386641000085 ], [ -123.439311267999983, 48.521599925000046 ], [ -123.439491901999943, 48.521799289000114 ], [ -123.439296596999981, 48.521958715000046 ], [ -123.439288598999937, 48.522090095000067 ], [ -123.439250936999954, 48.52271008000011 ], [ -123.439248259999928, 48.522754558000024 ], [ -123.439208888999943, 48.523401901000113 ], [ -123.43912289599993, 48.523482217000044 ], [ -123.439083656999969, 48.523518850000102 ], [ -123.438978208999956, 48.523617305000123 ], [ -123.43849609199998, 48.523831001000076 ], [ -123.434850054999984, 48.523888993000142 ], [ -123.43484962399999, 48.523889002000018 ], [ -123.434849191999973, 48.523889011000087 ], [ -123.433386601999985, 48.523875599000085 ], [ -123.431545194999941, 48.523858691000115 ], [ -123.431243285999969, 48.523991103000085 ], [ -123.431053301999924, 48.524028898000012 ], [ -123.431137615999958, 48.524094901000119 ], [ -123.43105499499994, 48.524171395000081 ], [ -123.431011404999964, 48.524301102000095 ], [ -123.430896169000036, 48.525855609000075 ], [ -123.430854186999952, 48.526421812000095 ], [ -123.430843609999968, 48.526564609000111 ], [ -123.430836858999911, 48.526897930000118 ], [ -123.430834302000022, 48.527023582000027 ], [ -123.430829222999989, 48.52727659600005 ], [ -123.430710106999953, 48.528768583000108 ], [ -123.430542894999931, 48.528982789000089 ], [ -123.430218478999933, 48.529103798000016 ], [ -123.428583229999958, 48.529075433000081 ], [ -123.427992285999935, 48.529065208000183 ], [ -123.426957263999967, 48.529057672000093 ], [ -123.426713276999962, 48.52905590000006 ], [ -123.425914085999963, 48.52905008200009 ], [ -123.424817225999959, 48.529042070000102 ], [ -123.41977718, 48.52900519100006 ], [ -123.418775085999982, 48.528997832000037 ], [ -123.418693112999975, 48.528997234 ], [ -123.417933841999954, 48.529039696000098 ], [ -123.417505832999979, 48.529063630000074 ], [ -123.417344922, 48.529072625000076 ], [ -123.417331122999926, 48.528960096000048 ], [ -123.417094401999918, 48.527028795000078 ], [ -123.417331200999953, 48.526532402000043 ] ], [ [ -123.425189419999953, 48.522846640000061 ], [ -123.425193197999974, 48.522777399000113 ], [ -123.425064781999978, 48.522774283000068 ], [ -123.425115047999924, 48.521853023000034 ], [ -123.423777391999963, 48.521820551000104 ], [ -123.423815286999982, 48.52112636500005 ], [ -123.422581948999948, 48.521096411000045 ], [ -123.422480770999982, 48.522948910000011 ], [ -123.417079985999976, 48.5228175720001 ], [ -123.417151686999972, 48.521507527000082 ], [ -123.415834549999886, 48.521475455000058 ], [ -123.415839702999946, 48.522104793000032 ], [ -123.415632615, 48.522105539000044 ], [ -123.415623734999912, 48.52226770100004 ], [ -123.415888907999971, 48.522274160000045 ], [ -123.415851853000021, 48.522950838000149 ], [ -123.416874314, 48.522975735000038 ], [ -123.41685826799997, 48.523268872000131 ], [ -123.419590933999942, 48.523335365000086 ], [ -123.419537589999948, 48.524310892000059 ], [ -123.420719851999934, 48.524339638000058 ], [ -123.420650565999921, 48.525607233000059 ], [ -123.420675628999959, 48.525607842000049 ], [ -123.420649285999914, 48.526089781000032 ], [ -123.420923148999975, 48.526096438000117 ], [ -123.420903421999924, 48.52645736000008 ], [ -123.42196278599998, 48.526483103000068 ], [ -123.422010371999988, 48.525612080000087 ], [ -123.422013294999914, 48.525612150000043 ], [ -123.422075331999949, 48.524476578000083 ], [ -123.423321502999954, 48.524506847000154 ], [ -123.423329187999954, 48.524366108000059 ], [ -123.424382745999978, 48.524391687000012 ], [ -123.42446802799999, 48.522829131000059 ], [ -123.425189419999953, 48.522846640000061 ] ], [ [ -123.430614748999986, 48.520165559000091 ], [ -123.430535022999976, 48.521629891000103 ], [ -123.430893117999958, 48.52163856200012 ], [ -123.430869989999962, 48.522063421000041 ], [ -123.430900643999962, 48.522064163000032 ], [ -123.43089586499994, 48.522151956000052 ], [ -123.431279074999921, 48.522161235000105 ], [ -123.431278114999955, 48.5220479910001 ], [ -123.431684387999965, 48.522046468000013 ], [ -123.431682093999967, 48.521776584000065 ], [ -123.431717314999943, 48.52177645200004 ], [ -123.431727308999882, 48.521592805000076 ], [ -123.432086888999933, 48.52160150800011 ], [ -123.43207918399996, 48.520695527000107 ], [ -123.4325098, 48.520693909000087 ], [ -123.43253601399999, 48.520212070000042 ], [ -123.430614748999986, 48.520165559000091 ] ], [ [ -123.413962754999943, 48.519059037000027 ], [ -123.413963063999958, 48.519053396000068 ], [ -123.41393039300003, 48.519052599000105 ], [ -123.413999420999971, 48.517792821000036 ], [ -123.413707933999945, 48.51778571500008 ], [ -123.413700546, 48.517920540000013 ], [ -123.413268690999928, 48.517910012000051 ], [ -123.413206723999934, 48.519040606000061 ], [ -123.413962754999943, 48.519059037000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118416417", "BldgCostT": "76781667", "sL_LossRatio": "0.753364552004125", "sL_AssetLoss": "1006449", "sL_BldgLoss": "758223", "sL_StrLoss": "402213", "sL_NStrLoss": "356010", "sL_ContLoss": "248226", "geom_point": "0101000020E6100000E1358EDC03D95EC06120F8AD10404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393226491999926, 48.503118925000081 ], [ -123.390935064999923, 48.502895658000078 ], [ -123.390879995999939, 48.502932088000115 ], [ -123.390719990999983, 48.502966892000074 ], [ -123.390555907999953, 48.502952089000061 ], [ -123.389857979999988, 48.50274279500011 ], [ -123.389138185999968, 48.502415801000026 ], [ -123.388048993999945, 48.502220400000041 ], [ -123.387604414999927, 48.502243683000103 ], [ -123.387476849999956, 48.502219461000024 ], [ -123.385926029999908, 48.501924632000055 ], [ -123.385999558999927, 48.501621675000131 ], [ -123.38610518099992, 48.501422303 ], [ -123.386606946999933, 48.500805279000097 ], [ -123.386646012999947, 48.500758451000138 ], [ -123.387042042999951, 48.500275365000107 ], [ -123.387276702999941, 48.49998917500006 ], [ -123.387388030999915, 48.499853395000102 ], [ -123.387662255999942, 48.49953733500007 ], [ -123.388000099999957, 48.49912186900012 ], [ -123.388049324999898, 48.499061218000143 ], [ -123.38806828299991, 48.499037880000053 ], [ -123.388346523999985, 48.498721916000036 ], [ -123.388790804999957, 48.498190026000053 ], [ -123.388929471999987, 48.497980347000109 ], [ -123.389072453, 48.49776416200006 ], [ -123.389950925999941, 48.496270899000145 ], [ -123.39020646099999, 48.496536903000113 ], [ -123.39058060499994, 48.496931143000033 ], [ -123.39089681099999, 48.497126464000111 ], [ -123.39096277299997, 48.497155146000054 ], [ -123.391026101999969, 48.497182851000012 ], [ -123.391439048999928, 48.497364342000019 ], [ -123.391985111999972, 48.497605888000059 ], [ -123.393276649999976, 48.49804260000009 ], [ -123.393868821999945, 48.498242824000037 ], [ -123.393594904999958, 48.498371746 ], [ -123.392503623999957, 48.49888555000004 ], [ -123.393378370999983, 48.500027867000057 ], [ -123.393558434999989, 48.500266719000109 ], [ -123.394073833999968, 48.500901618000114 ], [ -123.39434038899995, 48.501229996000077 ], [ -123.3945047, 48.501397172000075 ], [ -123.39480618499999, 48.501703993000042 ], [ -123.395263383999946, 48.502228278000111 ], [ -123.395629814999964, 48.502648489000116 ], [ -123.396246911999953, 48.503515792000066 ], [ -123.393226491999926, 48.503118925000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150941417", "BldgCostT": "99181667", "sL_LossRatio": "0.941684601345491", "sL_AssetLoss": "196774.27", "sL_BldgLoss": "185299.3", "sL_StrLoss": "149177.5", "sL_NStrLoss": "36121.8", "sL_ContLoss": "11474.97", "geom_point": "0101000020E6100000DEDEE29FA1DB5EC09070738D43414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.417092181999948, 48.512199167000055 ], [ -123.417966994999944, 48.510958068 ], [ -123.418123306999945, 48.510621093000083 ], [ -123.418349305999968, 48.5095535620001 ], [ -123.418351215999948, 48.509544593000022 ], [ -123.418669975999961, 48.50912992700006 ], [ -123.419138412000024, 48.508520595000029 ], [ -123.419452496999966, 48.50801610200007 ], [ -123.42005740499998, 48.506840608000076 ], [ -123.420503115999949, 48.506350993000112 ], [ -123.420691714999961, 48.505940783000035 ], [ -123.422027382999914, 48.503631601000059 ], [ -123.42145401399992, 48.503466200000105 ], [ -123.422288943999945, 48.502274882000087 ], [ -123.422912296999968, 48.501385399000043 ], [ -123.422699779999903, 48.501267500000104 ], [ -123.421836189999965, 48.500995807000052 ], [ -123.421375519, 48.500894505000126 ], [ -123.419237118999931, 48.500834967000031 ], [ -123.419235129999947, 48.500709312000062 ], [ -123.419234128999975, 48.500646282000069 ], [ -123.419229386999987, 48.500347049000055 ], [ -123.419223962, 48.500005172000087 ], [ -123.419220649999943, 48.499798204000044 ], [ -123.419217309999951, 48.499586787000098 ], [ -123.419235036, 48.499231422 ], [ -123.419258901999967, 48.498754185000088 ], [ -123.41926069699997, 48.498717705000026 ], [ -123.419703991999967, 48.498766416000052 ], [ -123.422428403999973, 48.499514851000121 ], [ -123.42427798199995, 48.500022915000116 ], [ -123.425987987, 48.500492588000064 ], [ -123.427165791999968, 48.500776298000062 ], [ -123.427463695999947, 48.500765493000088 ], [ -123.427389307999988, 48.501299318000044 ], [ -123.426712066999968, 48.501840311000052 ], [ -123.425869227999982, 48.502513561000036 ], [ -123.425983621999933, 48.503098820000034 ], [ -123.428279687999975, 48.503255069000019 ], [ -123.428120755999913, 48.506172573000107 ], [ -123.431707877999941, 48.506259496000112 ], [ -123.431698668999957, 48.506428760000077 ], [ -123.435308158999931, 48.506516102000049 ], [ -123.435161598, 48.509213722000034 ], [ -123.435355417999958, 48.509218408000024 ], [ -123.435220573999985, 48.511700254000075 ], [ -123.435687490999968, 48.511711544000057 ], [ -123.435861365999969, 48.50851066600007 ], [ -123.43625402, 48.508520157000092 ], [ -123.436264760999961, 48.508322375000013 ], [ -123.43660978, 48.508330714000117 ], [ -123.436775808999968, 48.505272979000061 ], [ -123.43925932799999, 48.505332970000076 ], [ -123.439258907999942, 48.505284489000083 ], [ -123.438852768999951, 48.505286039000069 ], [ -123.438848530999977, 48.504795019000092 ], [ -123.437479409999966, 48.504761949000063 ], [ -123.437472068999952, 48.504897198000094 ], [ -123.432073306999953, 48.504766620000026 ], [ -123.432141236999968, 48.50351773400012 ], [ -123.438947717999923, 48.503980366000064 ], [ -123.44262029699992, 48.503948767000033 ], [ -123.444758360999941, 48.504021944000058 ], [ -123.444653101999933, 48.504255792000052 ], [ -123.444581800999984, 48.504499319000026 ], [ -123.444592815999968, 48.504561180000053 ], [ -123.44460193399999, 48.504612202000033 ], [ -123.444603622, 48.504621597000025 ], [ -123.444823904999907, 48.50496950399999 ], [ -123.444850709999955, 48.505224407000043 ], [ -123.444806601999929, 48.505539895000076 ], [ -123.444814512999969, 48.505548363000088 ], [ -123.445058322999941, 48.505809206000066 ], [ -123.445075663999944, 48.50582084100008 ], [ -123.445257812999955, 48.505943006000038 ], [ -123.445545491999951, 48.50604640100007 ], [ -123.445742567999901, 48.506151176000024 ], [ -123.446140605999972, 48.506362799000016 ], [ -123.44665868299991, 48.506779201 ], [ -123.447080089999957, 48.506908302000063 ], [ -123.447622090999957, 48.50703231000012 ], [ -123.447909397999965, 48.507192507000127 ], [ -123.448081824999988, 48.507855967000062 ], [ -123.447083821999925, 48.507831950000124 ], [ -123.447038654, 48.508667152000022 ], [ -123.44630952599999, 48.508649599000151 ], [ -123.446185502999953, 48.508468795000098 ], [ -123.445858592999954, 48.508361988000082 ], [ -123.445339698999987, 48.507806605000091 ], [ -123.445224402999912, 48.507041808000068 ], [ -123.445061702999979, 48.506889397000108 ], [ -123.444791513999917, 48.506899306000051 ], [ -123.444535594999977, 48.507161402000023 ], [ -123.443817378999967, 48.50704749300003 ], [ -123.443329290999898, 48.507084503000101 ], [ -123.442907884999926, 48.506914995000045 ], [ -123.44252860499995, 48.506890788000085 ], [ -123.442327904999956, 48.50708021 ], [ -123.442654113999978, 48.507320905000043 ], [ -123.44257520799999, 48.50747468400003 ], [ -123.442251808999984, 48.507763797000088 ], [ -123.441805990999924, 48.507827898000087 ], [ -123.441683397999952, 48.507739588000085 ], [ -123.441854890999963, 48.507261106000065 ], [ -123.44182409499993, 48.506631598000077 ], [ -123.441605596999949, 48.506479203000076 ], [ -123.441267914999941, 48.506553293000124 ], [ -123.44115960699996, 48.506680001000078 ], [ -123.441044795999929, 48.507444796000115 ], [ -123.44048490099999, 48.508409003000111 ], [ -123.440501996999899, 48.508796391000054 ], [ -123.44035641499994, 48.509219402000078 ], [ -123.439604407, 48.509959986000055 ], [ -123.439664599999958, 48.51074191000005 ], [ -123.439534789999982, 48.511399788000119 ], [ -123.438906795999969, 48.51229278800006 ], [ -123.438516806999971, 48.51264459300009 ], [ -123.437911804999885, 48.512970697000071 ], [ -123.437336088, 48.513773992000083 ], [ -123.43754179299999, 48.51423259700001 ], [ -123.437093099999913, 48.515492998000077 ], [ -123.43678329, 48.51579210799999 ], [ -123.435464997999972, 48.51663381300007 ], [ -123.434465698999972, 48.516961392000034 ], [ -123.434237806999988, 48.517167904000054 ], [ -123.434184694999914, 48.517303198000086 ], [ -123.434756781999965, 48.517760393000081 ], [ -123.435989895999938, 48.517954113000059 ], [ -123.436354106, 48.517808790000068 ], [ -123.436736207999928, 48.518005306000092 ], [ -123.436792185999977, 48.518292995000131 ], [ -123.437173699999988, 48.518498094000023 ], [ -123.437499188999979, 48.518640492000031 ], [ -123.438190311999918, 48.518683305000074 ], [ -123.43891161, 48.519138990000087 ], [ -123.439196878999937, 48.519147498000066 ], [ -123.439441507, 48.519262905000048 ], [ -123.43975929, 48.520115999000062 ], [ -123.439547892999883, 48.520711289000083 ], [ -123.439806789999963, 48.5207284110001 ], [ -123.440077017999954, 48.520637307000129 ], [ -123.440073412999979, 48.520403707000078 ], [ -123.440573096999984, 48.520202886000064 ], [ -123.440853298999969, 48.519788391000098 ], [ -123.441111405999933, 48.519670202000022 ], [ -123.441338603999952, 48.519372597000014 ], [ -123.441227395999945, 48.519139012000082 ], [ -123.441279679999965, 48.51896810000008 ], [ -123.441618707999964, 48.51889548300003 ], [ -123.441737, 48.518470995000079 ], [ -123.441667400999961, 48.518354295000037 ], [ -123.441896002999925, 48.51818339900008 ], [ -123.441977002000016, 48.517966893000057 ], [ -123.441971180999985, 48.517489800000078 ], [ -123.441740990999918, 48.51730180600007 ], [ -123.442143797999904, 48.516950012000059 ], [ -123.442290692999961, 48.516679401000026 ], [ -123.44215312199999, 48.516454402000114 ], [ -123.443271288999966, 48.515812002000089 ], [ -123.443390988, 48.515639692000022 ], [ -123.443647586999944, 48.515594097000076 ], [ -123.444118607999954, 48.515169700000101 ], [ -123.444659773999973, 48.51518539500006 ], [ -123.444836087999988, 48.515266600000139 ], [ -123.44504188800002, 48.51554430100002 ], [ -123.445368903999963, 48.515632605000086 ], [ -123.44607219999989, 48.51566530400013 ], [ -123.446707286999981, 48.515483095000029 ], [ -123.447190312999979, 48.51487920600006 ], [ -123.447062610000017, 48.514249708000087 ], [ -123.447247495999932, 48.513781101000113 ], [ -123.447229505999985, 48.513376594000128 ], [ -123.447579294999954, 48.513023393000012 ], [ -123.447939703999921, 48.512375400000096 ], [ -123.448003484999987, 48.511933904000067 ], [ -123.447893099999945, 48.511817104000023 ], [ -123.447637201999925, 48.511791505000112 ], [ -123.447257313999899, 48.511882695000054 ], [ -123.446910298999981, 48.512334093000085 ], [ -123.446733975999933, 48.512415293000103 ], [ -123.446342607999966, 48.512408207000064 ], [ -123.445485202999961, 48.511998005000081 ], [ -123.444856487, 48.511298706000048 ], [ -123.444907378999986, 48.510857197000064 ], [ -123.445159704999966, 48.510380108000092 ], [ -123.445414218999986, 48.510072497000088 ], [ -123.445804117999927, 48.509801896000063 ], [ -123.445801291999928, 48.509360415000039 ], [ -123.445853307, 48.509301885000063 ], [ -123.448230192999958, 48.509359093000022 ], [ -123.448229655999967, 48.509298298000026 ], [ -123.447823484999986, 48.50929987899999 ], [ -123.447818728999948, 48.508760113000115 ], [ -123.447412562999929, 48.508761692000093 ], [ -123.447405436999972, 48.507952041000095 ], [ -123.448106084999893, 48.507949317000026 ], [ -123.44817349899995, 48.508208707000094 ], [ -123.448317500999977, 48.508394306000056 ], [ -123.448420197999951, 48.50862038300005 ], [ -123.448707157999962, 48.508948414000038 ], [ -123.448850411999956, 48.509112203 ], [ -123.44909219799996, 48.509264994000077 ], [ -123.449134475999969, 48.509279377000041 ], [ -123.449296160999921, 48.509334363000121 ], [ -123.449662918999977, 48.509459106000058 ], [ -123.4500010899999, 48.50970430400011 ], [ -123.450103912999907, 48.509852902000063 ], [ -123.450153291999953, 48.510063207000073 ], [ -123.450122148999952, 48.510332982000051 ], [ -123.450107665999951, 48.510458246000084 ], [ -123.450077189999959, 48.510722325000096 ], [ -123.449792454999965, 48.511436311000132 ], [ -123.44975668099994, 48.511526102000062 ], [ -123.449623095, 48.511639032000083 ], [ -123.449564696999943, 48.511688434000085 ], [ -123.449205723999953, 48.511991961000078 ], [ -123.449154783999987, 48.51203500300003 ], [ -123.449090982999962, 48.512088976000058 ], [ -123.448775028999961, 48.512708025000023 ], [ -123.448733978999883, 48.513442781000045 ], [ -123.448303736999975, 48.514600868000073 ], [ -123.44816130000001, 48.514984349000031 ], [ -123.447914818999976, 48.515367945000058 ], [ -123.447685394999922, 48.515586034000073 ], [ -123.446942748, 48.516020787000102 ], [ -123.446012705999976, 48.51642036600002 ], [ -123.445459542999927, 48.516575678000038 ], [ -123.445255742999933, 48.516595098000067 ], [ -123.444470568000014, 48.51649053100008 ], [ -123.443861209999966, 48.516510105000059 ], [ -123.443585190999926, 48.516564787000029 ], [ -123.443400678999964, 48.51660269399999 ], [ -123.443198610999929, 48.516764603000084 ], [ -123.442806917999945, 48.518253452000053 ], [ -123.442781262000011, 48.518350940000069 ], [ -123.44277164499999, 48.518387389000033 ], [ -123.442721413999962, 48.518578417000072 ], [ -123.442687610999911, 48.518706835000053 ], [ -123.442606903999931, 48.519013564000062 ], [ -123.442582453999975, 48.51910650500006 ], [ -123.442570819999943, 48.51915070900008 ], [ -123.442556697999962, 48.519204409000103 ], [ -123.442548935999966, 48.519210936 ], [ -123.442144597999942, 48.519550591000097 ], [ -123.441475890999968, 48.520159342000127 ], [ -123.44100167699996, 48.520591009000064 ], [ -123.43984107499999, 48.521647440000088 ], [ -123.43978529499995, 48.521698192000059 ], [ -123.439491901999943, 48.521799289000114 ], [ -123.439311267999983, 48.521599925000046 ], [ -123.439118014999934, 48.521386641000085 ], [ -123.438981627999937, 48.521236104000131 ], [ -123.438950135999931, 48.521162798000063 ], [ -123.438875985999957, 48.520990103000052 ], [ -123.438782897999943, 48.52053791 ], [ -123.438905414999951, 48.520025996000044 ], [ -123.438782197999942, 48.519879706 ], [ -123.437887204999925, 48.519357714000101 ], [ -123.437220092999965, 48.519145008000066 ], [ -123.436335682999939, 48.518974895000099 ], [ -123.436214384999957, 48.518954695000104 ], [ -123.435971421999966, 48.518907336000062 ], [ -123.435673377999962, 48.518890468000031 ], [ -123.435388820999947, 48.518873558000074 ], [ -123.435090774999964, 48.518856689000096 ], [ -123.434901108999895, 48.518848424000062 ], [ -123.434765618999975, 48.518839947000039 ], [ -123.434453998999913, 48.518823118000057 ], [ -123.434372506999949, 48.518796440000138 ], [ -123.434087904999956, 48.51877053100003 ], [ -123.433803304999984, 48.518744621000103 ], [ -123.433532339999928, 48.518727630000079 ], [ -123.433261339999945, 48.518710648000038 ], [ -123.433017676999953, 48.518720581000032 ], [ -123.432773993999959, 48.518730488000116 ], [ -123.432516648999979, 48.518722448000105 ], [ -123.43225926799991, 48.518714418000066 ], [ -123.432029442999934, 48.518760285000056 ], [ -123.431786013999925, 48.51879716300008 ], [ -123.431556186999927, 48.518843030000077 ], [ -123.431353297, 48.518870777000146 ], [ -123.431137391999926, 48.518898336000099 ], [ -123.431056358, 48.518898554000025 ], [ -123.430961680999971, 48.518880903000131 ], [ -123.430812207999935, 48.51885461600007 ], [ -123.430512642999943, 48.51874796100001 ], [ -123.430417534999961, 48.518712327000109 ], [ -123.43022711799992, 48.518614094000043 ], [ -123.430104966999977, 48.51857856200008 ], [ -123.429834046999986, 48.518570556000064 ], [ -123.42957676599994, 48.518571524000045 ], [ -123.429333003999957, 48.518572440000035 ], [ -123.429089245999975, 48.518573356000054 ], [ -123.428750508999897, 48.518547629000118 ], [ -123.428505231999907, 48.518368604000067 ], [ -123.42836805499995, 48.518162190000119 ], [ -123.428434566999925, 48.518018002000105 ], [ -123.428554905999945, 48.517837630000066 ], [ -123.428688893999933, 48.517666198 ], [ -123.428795392999945, 48.517449888000115 ], [ -123.428901891999899, 48.517233577000084 ], [ -123.428873001999989, 48.517017786000082 ], [ -123.428600281999948, 48.516793870000065 ], [ -123.42850418099999, 48.516641303000043 ], [ -123.428421667999885, 48.516488662000022 ], [ -123.428298208999962, 48.516300207000057 ], [ -123.428161212999953, 48.51611178400001 ], [ -123.428037664, 48.515914324000107 ], [ -123.42771087899996, 48.515699621000074 ], [ -123.427520386999944, 48.515592379000054 ], [ -123.427329972000038, 48.515494119000046 ], [ -123.427202960999949, 48.515416623000128 ], [ -123.427139438999973, 48.515377880000116 ], [ -123.426948884999945, 48.515261620000089 ], [ -123.42674509299999, 48.515181411000114 ], [ -123.426541318999952, 48.515101224000048 ], [ -123.426527452999977, 48.51506530000006 ], [ -123.426472475999987, 48.514966532000088 ], [ -123.426403633999897, 48.514831836000042 ], [ -123.426307437999952, 48.5146612570001 ], [ -123.42621128699993, 48.514499671000067 ], [ -123.426087921999908, 48.51432019900011 ], [ -123.426061310999913, 48.51426135800007 ], [ -123.426050499999945, 48.514237368000124 ], [ -123.426018909999982, 48.514167517 ], [ -123.425951048999963, 48.514149785000029 ], [ -123.42574733899994, 48.514078559000019 ], [ -123.425475802999955, 48.513989589000047 ], [ -123.425190541999953, 48.513882693000021 ], [ -123.424918930000032, 48.513784737000051 ], [ -123.42472888399999, 48.513731457000119 ], [ -123.424525412999969, 48.513687234000066 ], [ -123.424256684999975, 48.513650995000091 ], [ -123.4217375899999, 48.513615104000095 ], [ -123.420868572999936, 48.513464984000109 ], [ -123.419676007999939, 48.513398193000093 ], [ -123.418875717999953, 48.513175786000026 ], [ -123.418317089999945, 48.512836682000106 ], [ -123.418100501999945, 48.512595182000091 ], [ -123.417773893999936, 48.512388868000109 ], [ -123.4175005, 48.512272181000128 ], [ -123.417092181999948, 48.512199167000055 ] ], [ [ -123.431400610999944, 48.513836239000099 ], [ -123.431302946999949, 48.515630851000047 ], [ -123.431713818, 48.515640799000018 ], [ -123.431811467, 48.513846187000098 ], [ -123.431400610999944, 48.513836239000099 ] ], [ [ -123.419508354999948, 48.51209832200005 ], [ -123.419548983999903, 48.511355132000119 ], [ -123.419117182999926, 48.511344627000057 ], [ -123.419076546999932, 48.512087816000069 ], [ -123.419508354999948, 48.51209832200005 ] ], [ [ -123.44054018199995, 48.50536388700008 ], [ -123.440544753999944, 48.505279576000042 ], [ -123.440477324999932, 48.505279834000049 ], [ -123.440478039999945, 48.505362388000023 ], [ -123.44054018199995, 48.50536388700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.97780261637213", "sL_AssetLoss": "1843.01", "sL_BldgLoss": "1802.1", "sL_StrLoss": "1595", "sL_NStrLoss": "207.1", "sL_ContLoss": "40.91", "geom_point": "0101000020E6100000DC9F074E28DD5EC0C5349912453F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.455844776999953, 48.496383670000107 ], [ -123.455867292, 48.495965786000092 ], [ -123.454394249999893, 48.49593043400008 ], [ -123.454582346000038, 48.492441025000062 ], [ -123.454588418999919, 48.492328375000106 ], [ -123.45666182599993, 48.49237813000012 ], [ -123.456503205999965, 48.493505984000066 ], [ -123.456623386999951, 48.494795688000075 ], [ -123.45677341699998, 48.496405946000081 ], [ -123.455844776999953, 48.496383670000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "242839917", "BldgCostT": "154211667", "sL_LossRatio": "0.921940382209568", "sL_AssetLoss": "245718.6", "sL_BldgLoss": "226537.9", "sL_StrLoss": "187327.5", "sL_NStrLoss": "39210.4", "sL_ContLoss": "19180.7", "geom_point": "0101000020E6100000598A57380DDC5EC07CE905239F3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.438947717999923, 48.503980366000064 ], [ -123.432141236999968, 48.50351773400012 ], [ -123.432147670999882, 48.503399424000072 ], [ -123.431159755999943, 48.503375500000054 ], [ -123.431200446999981, 48.502627647000061 ], [ -123.430302935999975, 48.502605904000042 ], [ -123.430283277999976, 48.502967081000079 ], [ -123.428185902999985, 48.50291624000004 ], [ -123.428178318999969, 48.503055458000098 ], [ -123.4282904129999, 48.503058176000096 ], [ -123.428279687999975, 48.503255069000019 ], [ -123.425983621999933, 48.503098820000034 ], [ -123.425869227999982, 48.502513561000036 ], [ -123.426712066999968, 48.501840311000052 ], [ -123.427389307999988, 48.501299318000044 ], [ -123.427463695999947, 48.500765493000088 ], [ -123.427165791999968, 48.500776298000062 ], [ -123.425987987, 48.500492588000064 ], [ -123.42427798199995, 48.500022915000116 ], [ -123.422428403999973, 48.499514851000121 ], [ -123.419703991999967, 48.498766416000052 ], [ -123.41926069699997, 48.498717705000026 ], [ -123.419276512999957, 48.498459453000102 ], [ -123.419289920999958, 48.498240642000034 ], [ -123.419367634999929, 48.496971245000047 ], [ -123.419396788999933, 48.496494909000113 ], [ -123.419420906999946, 48.496101444000018 ], [ -123.419430920999957, 48.495938001000127 ], [ -123.419484912999948, 48.495056162000047 ], [ -123.419486915000022, 48.495023602000103 ], [ -123.419533207999947, 48.494251106000064 ], [ -123.419541601000034, 48.493702087000088 ], [ -123.419620069999965, 48.492512908000037 ], [ -123.419620251999987, 48.492501385000033 ], [ -123.419646162999967, 48.492105500000044 ], [ -123.419647309000013, 48.492088001000042 ], [ -123.419673796999916, 48.491603504000111 ], [ -123.419591697999962, 48.491230555000129 ], [ -123.419513566999939, 48.490875569000096 ], [ -123.419502770999969, 48.490826591000072 ], [ -123.418978289999956, 48.489991487000026 ], [ -123.418785653999933, 48.489807734000102 ], [ -123.418304149999969, 48.489348369000119 ], [ -123.417309076999956, 48.488692943000018 ], [ -123.417041816000022, 48.488516911000062 ], [ -123.416216012999982, 48.487930515000102 ], [ -123.415946583, 48.487620070000041 ], [ -123.415630542999978, 48.487100205000111 ], [ -123.415513685999926, 48.486716832000106 ], [ -123.4155206699999, 48.486619594000068 ], [ -123.415536581999973, 48.486397275000094 ], [ -123.416163064999949, 48.486447930000104 ], [ -123.416594475, 48.486482805000051 ], [ -123.417314514999973, 48.486540995000077 ], [ -123.41793204399994, 48.486590925000087 ], [ -123.418108210999932, 48.485642109000068 ], [ -123.418267652999958, 48.484801679000036 ], [ -123.41831383799996, 48.48396414899999 ], [ -123.420161811999918, 48.484028848000044 ], [ -123.423710802999949, 48.48439789500005 ], [ -123.425309227999946, 48.484524632000024 ], [ -123.427234900999906, 48.484677294000072 ], [ -123.428206362999944, 48.484769097000047 ], [ -123.428518383999943, 48.484798598000047 ], [ -123.429698396999925, 48.484836292000189 ], [ -123.430911643999977, 48.484954680000058 ], [ -123.43219136899998, 48.485079539000054 ], [ -123.432818392999977, 48.485140707000085 ], [ -123.433115585999928, 48.485169700000064 ], [ -123.434312334999944, 48.485246227000111 ], [ -123.434432196999964, 48.485253904000054 ], [ -123.434868184, 48.48518510600011 ], [ -123.435229894999964, 48.485042413000116 ], [ -123.436178625999958, 48.484424342000146 ], [ -123.436322294999954, 48.484330773000053 ], [ -123.436704579999969, 48.484081693000057 ], [ -123.436886682999926, 48.483761503000075 ], [ -123.43688989199994, 48.483520824000067 ], [ -123.436890194999961, 48.483498203000124 ], [ -123.436499341999934, 48.482406550000071 ], [ -123.436350578999949, 48.481991097000098 ], [ -123.436195310999935, 48.481815993000048 ], [ -123.43613949899995, 48.481788235000096 ], [ -123.435974394999946, 48.481706107000058 ], [ -123.43527313, 48.481483652000044 ], [ -123.435131077999984, 48.481438595000057 ], [ -123.434830110999926, 48.481259987000065 ], [ -123.43459500199999, 48.481012589000017 ], [ -123.434451295999978, 48.480774713000073 ], [ -123.43441981699999, 48.480607096000035 ], [ -123.434434393999965, 48.480339704000095 ], [ -123.434606625999933, 48.479427350000087 ], [ -123.434705495999978, 48.478903481000067 ], [ -123.434702913999971, 48.478644105000036 ], [ -123.434699184999928, 48.478273900000069 ], [ -123.43480320899999, 48.478049188000099 ], [ -123.434980511, 48.477819084000025 ], [ -123.435499417999935, 48.477292402000032 ], [ -123.435731497999981, 48.476973408000084 ], [ -123.435870992999966, 48.476643106000019 ], [ -123.43595884599992, 48.476029656 ], [ -123.435997097, 48.475762489000076 ], [ -123.435983584999931, 48.475589103000104 ], [ -123.435755804999985, 48.475231895000036 ], [ -123.435929287999926, 48.475145897000097 ], [ -123.43604638699999, 48.475028793000014 ], [ -123.436703171999966, 48.474075299000084 ], [ -123.437359347999973, 48.473629472000049 ], [ -123.437547058999954, 48.473581792000076 ], [ -123.438014889999977, 48.472874424000025 ], [ -123.438266597, 48.472691139000105 ], [ -123.438494399999968, 48.472578542000072 ], [ -123.439188967999939, 48.472235240000074 ], [ -123.439419781999973, 48.472121176000023 ], [ -123.439599097999988, 48.472012478000075 ], [ -123.440901740999934, 48.471222796000042 ], [ -123.441468257999944, 48.470879365000052 ], [ -123.441837056999958, 48.470447989000093 ], [ -123.442321781999951, 48.469881044000068 ], [ -123.44323185699993, 48.468919138000061 ], [ -123.443350246999984, 48.468794027000065 ], [ -123.443592998999975, 48.46827772000011 ], [ -123.443617279999913, 48.468226078000058 ], [ -123.443837992999974, 48.467530704000048 ], [ -123.44408447799999, 48.466753990000065 ], [ -123.444281899999936, 48.466374615000099 ], [ -123.448865922999985, 48.468274804000082 ], [ -123.449012681999946, 48.468335658000079 ], [ -123.452261787999973, 48.465436006000111 ], [ -123.453848390999937, 48.46438240800012 ], [ -123.453931794999946, 48.464670104000064 ], [ -123.453800188999949, 48.465038992000139 ], [ -123.453760324999962, 48.465523431000094 ], [ -123.45375050899996, 48.465642801000037 ], [ -123.453970606999988, 48.465983190000038 ], [ -123.454556387999943, 48.466440407000036 ], [ -123.454709198000018, 48.466826395000133 ], [ -123.454681357999974, 48.467010123000058 ], [ -123.454680957999983, 48.467012862000082 ], [ -123.454680769999982, 48.467013922000035 ], [ -123.454579816999967, 48.467680895000065 ], [ -123.454124994999972, 48.468106714000065 ], [ -123.454121777999944, 48.468157429000051 ], [ -123.453549089999939, 48.468143669000042 ], [ -123.453554878999967, 48.468793406000074 ], [ -123.453149033, 48.468795005000096 ], [ -123.453151434999981, 48.469064891000073 ], [ -123.45274558700001, 48.469066488000081 ], [ -123.452750388, 48.469606258000049 ], [ -123.453156240999959, 48.469604660000087 ], [ -123.453158643999927, 48.46987454600005 ], [ -123.453564498999967, 48.469872947000056 ], [ -123.45356931, 48.470412716000034 ], [ -123.454381029999965, 48.470409515 ], [ -123.454388259999945, 48.47121917000004 ], [ -123.455199990999972, 48.47121596300007 ], [ -123.455204818999945, 48.471755732000084 ], [ -123.455610688999968, 48.471754126000064 ], [ -123.45562277099998, 48.473103550000125 ], [ -123.456840413999885, 48.473098723000128 ], [ -123.456837991000015, 48.472828838000041 ], [ -123.457308128999941, 48.472826971000096 ], [ -123.457222136999988, 48.473636996000025 ], [ -123.456845259999938, 48.473638492000084 ], [ -123.456847683999939, 48.473908377000058 ], [ -123.456035907999947, 48.473911596000065 ], [ -123.456038325999899, 48.474181481000116 ], [ -123.454008877999954, 48.474189504000059 ], [ -123.454006469999968, 48.473919619000078 ], [ -123.452382918999916, 48.473926012000071 ], [ -123.452380519999906, 48.473656127000048 ], [ -123.451568746999925, 48.473659315000113 ], [ -123.451571143999956, 48.473929200000036 ], [ -123.450759365999943, 48.473932382000029 ], [ -123.45076414899998, 48.474472152000061 ], [ -123.450358254999955, 48.47447374100004 ], [ -123.450365421, 48.475283395000083 ], [ -123.449147725999936, 48.475288154000083 ], [ -123.44916202, 48.476907463000046 ], [ -123.448756107999927, 48.476909047000049 ], [ -123.44875848699999, 48.477178931000033 ], [ -123.447540744999969, 48.477183673000098 ], [ -123.447538370999936, 48.476913788000068 ], [ -123.447132458999988, 48.476915365000117 ], [ -123.447137202999954, 48.477455135000078 ], [ -123.447543119999978, 48.477453557000089 ], [ -123.447550240999959, 48.478263212000037 ], [ -123.44701790699996, 48.478265281000112 ], [ -123.446859734999961, 48.481191842000122 ], [ -123.444327791999967, 48.481130828000111 ], [ -123.44433585699997, 48.482054180000056 ], [ -123.443929903999916, 48.482055747000054 ], [ -123.443932823999916, 48.482390407000018 ], [ -123.447145301999939, 48.482467820000117 ], [ -123.446950606999934, 48.48606992400012 ], [ -123.446295798999984, 48.48605415300009 ], [ -123.441553969, 48.485939824000127 ], [ -123.441561746999952, 48.485796238000098 ], [ -123.441533124999964, 48.485795547000073 ], [ -123.441523277999963, 48.485977319 ], [ -123.441943800999979, 48.485987467000115 ], [ -123.441817503999943, 48.488319247000135 ], [ -123.446019994999986, 48.488420567000105 ], [ -123.445893926999986, 48.490751691000142 ], [ -123.446209459, 48.490759291000053 ], [ -123.446789204999931, 48.490773253000079 ], [ -123.446784200999929, 48.490865825000135 ], [ -123.447352485999943, 48.490879508000077 ], [ -123.447447946999944, 48.489113341000092 ], [ -123.447455785, 48.488968334000084 ], [ -123.447486414999929, 48.488401588000066 ], [ -123.452883349999951, 48.488531385000087 ], [ -123.452737228, 48.491240586000025 ], [ -123.452689066999966, 48.492133465000087 ], [ -123.450057795999967, 48.492070216000059 ], [ -123.449923989999917, 48.49454812400009 ], [ -123.44777097799999, 48.494496324000089 ], [ -123.447728844999943, 48.49527588100009 ], [ -123.451664498999889, 48.495370538000032 ], [ -123.451643922999935, 48.495751813000055 ], [ -123.451637499999947, 48.495753489000094 ], [ -123.451095693999946, 48.495764899000015 ], [ -123.450366216999967, 48.495928704000043 ], [ -123.450084483999916, 48.496109491000077 ], [ -123.4494896, 48.49631890300013 ], [ -123.449315395999946, 48.496481203000052 ], [ -123.449209211999985, 48.496689209000046 ], [ -123.44934399399996, 48.496760396000099 ], [ -123.449156080999956, 48.496887093000041 ], [ -123.449143923999941, 48.497003901000056 ], [ -123.449647589999955, 48.497227488000128 ], [ -123.450755492, 48.497196208000062 ], [ -123.451546552999972, 48.497555968000064 ], [ -123.45149435899998, 48.49852301100001 ], [ -123.451590009999947, 48.498525309000044 ], [ -123.451592998999928, 48.498469921000108 ], [ -123.456991095999939, 48.498599507000094 ], [ -123.456797083999959, 48.50220153300004 ], [ -123.45649778899994, 48.502194355000022 ], [ -123.456445115999912, 48.503172078000048 ], [ -123.457395196999954, 48.503194859000068 ], [ -123.457508920999956, 48.501083074000107 ], [ -123.458013738999952, 48.50109517400012 ], [ -123.458083632999958, 48.499796923000076 ], [ -123.457398632999968, 48.499780501000011 ], [ -123.457496812999949, 48.497957217000078 ], [ -123.459084461999964, 48.498629274000074 ], [ -123.459035677999921, 48.49885886600002 ], [ -123.459033044999956, 48.498872212000087 ], [ -123.459032010999948, 48.498878154000046 ], [ -123.458132336999967, 48.50379269200004 ], [ -123.45631367499999, 48.503971706000115 ], [ -123.450995072, 48.503994985000119 ], [ -123.45101420899999, 48.503640524000076 ], [ -123.448944795999935, 48.503590768 ], [ -123.448949467999967, 48.503504302000103 ], [ -123.446783695999954, 48.503452185000029 ], [ -123.44675334899992, 48.504013360000016 ], [ -123.444758360999941, 48.504021944000058 ], [ -123.44262029699992, 48.503948767000033 ], [ -123.438947717999923, 48.503980366000064 ] ], [ [ -123.439293659999962, 48.503395108000063 ], [ -123.439393610999943, 48.501552231000119 ], [ -123.4414782599999, 48.50160254400005 ], [ -123.441485832999916, 48.501462782000047 ], [ -123.441584496999923, 48.501465163000049 ], [ -123.441616893999935, 48.500867303000092 ], [ -123.43994012899999, 48.500826839000062 ], [ -123.43995718, 48.500512366000066 ], [ -123.439114966999952, 48.50049203100005 ], [ -123.439076901999925, 48.50119384000007 ], [ -123.439107804999949, 48.501194586000047 ], [ -123.438988379999927, 48.503396272000067 ], [ -123.439293659999962, 48.503395108000063 ] ], [ [ -123.450095487999988, 48.499030189000052 ], [ -123.45010037699997, 48.498939646000089 ], [ -123.448792710999939, 48.498908196000109 ], [ -123.448787817999957, 48.49899873700015 ], [ -123.450095487999988, 48.499030189000052 ] ], [ [ -123.442189660999958, 48.497274406000066 ], [ -123.442288111999943, 48.495456877000045 ], [ -123.440497469999968, 48.495413669000058 ], [ -123.440687972999925, 48.491898756000097 ], [ -123.440427874999926, 48.4918924770001 ], [ -123.440554250999966, 48.489560713000074 ], [ -123.439052832999934, 48.489524457000115 ], [ -123.438971063999972, 48.491032304000043 ], [ -123.438528461999951, 48.491021612000125 ], [ -123.438459907999956, 48.4922854920001 ], [ -123.438628795999961, 48.492289572000082 ], [ -123.438624629999978, 48.492366373000088 ], [ -123.440407436999962, 48.492409426000123 ], [ -123.440212186999958, 48.496011458000098 ], [ -123.438636370999959, 48.495973406000061 ], [ -123.438597592999955, 48.496688278000114 ], [ -123.439557523999937, 48.496711461000054 ], [ -123.439547529999942, 48.496895756000058 ], [ -123.440180812999955, 48.496911046000044 ], [ -123.440163764999951, 48.497225519000018 ], [ -123.442189660999958, 48.497274406000066 ] ], [ [ -123.442753786999916, 48.495464405000043 ], [ -123.442864199000013, 48.495544106000111 ], [ -123.442966976999912, 48.494914595000076 ], [ -123.44280240099998, 48.494725202000055 ], [ -123.442753786999916, 48.495464405000043 ] ], [ [ -123.443100984999916, 48.494869002000037 ], [ -123.443109189999959, 48.495650889000089 ], [ -123.443231695999927, 48.495713608000109 ], [ -123.44331198299993, 48.495667993000104 ], [ -123.443265079999918, 48.495011500000025 ], [ -123.443100984999916, 48.494869002000037 ] ], [ [ -123.443441286, 48.495074102000089 ], [ -123.44356529699995, 48.495145291000092 ], [ -123.444173615999929, 48.495152494000124 ], [ -123.444417200999951, 48.495250711000082 ], [ -123.444513199999932, 48.495340500000069 ], [ -123.444446474999921, 48.495421596000014 ], [ -123.444187800999899, 48.495341907000046 ], [ -123.444258580999985, 48.495611092000026 ], [ -123.444677922999972, 48.495492802000093 ], [ -123.444745282999946, 48.49542880100006 ], [ -123.444633713000016, 48.495222304000031 ], [ -123.444335582999926, 48.495044192000059 ], [ -123.443969501999945, 48.495008598000055 ], [ -123.443441286, 48.495074102000089 ] ], [ [ -123.443540702999897, 48.495541289000066 ], [ -123.44347191899999, 48.495434498000115 ], [ -123.443390104999963, 48.495452989000064 ], [ -123.443392289999935, 48.495703590000062 ], [ -123.443473891999972, 48.495722096000101 ], [ -123.443540702999897, 48.495541289000066 ] ], [ [ -123.44336981, 48.496055403000142 ], [ -123.443612800999958, 48.496062497 ], [ -123.443422791999978, 48.495938602000066 ], [ -123.443299608999936, 48.49594719600006 ], [ -123.44336981, 48.496055403000142 ] ], [ [ -123.444296286999972, 48.477523240000018 ], [ -123.444293431999967, 48.47719625400002 ], [ -123.442263857999961, 48.477204069999985 ], [ -123.44226151299992, 48.476934185000118 ], [ -123.441017698999943, 48.476938959000037 ], [ -123.440966119, 48.47789112500007 ], [ -123.441634504999953, 48.477907260000116 ], [ -123.441658747999895, 48.477459611 ], [ -123.444296286999972, 48.477523240000018 ] ], [ [ -123.450320042999977, 48.470155581000043 ], [ -123.450725899999952, 48.470153993000089 ], [ -123.4507211199999, 48.469614222000125 ], [ -123.450315265999976, 48.469615811000075 ], [ -123.450320042999977, 48.470155581000043 ], [ -123.449508327999965, 48.470158754000067 ], [ -123.449515478999928, 48.470968410000026 ], [ -123.449109613999923, 48.470969994000122 ], [ -123.449114376999916, 48.47150976500005 ], [ -123.449926114, 48.471506594000125 ], [ -123.449935658999948, 48.472586134000032 ], [ -123.451153290999969, 48.472581368000078 ], [ -123.451148505999981, 48.472041598000025 ], [ -123.453177869999948, 48.472033625000108 ], [ -123.453175466999937, 48.47176374 ], [ -123.453987207999972, 48.471760541000059 ], [ -123.453984799999915, 48.471490656000135 ], [ -123.452767194, 48.471495453000074 ], [ -123.452764792999986, 48.471225568000094 ], [ -123.452358926999935, 48.47122716400002 ], [ -123.452356526999949, 48.470957278000128 ], [ -123.450327206999987, 48.470965237000087 ], [ -123.450320042999977, 48.470155581000043 ] ], [ [ -123.449097705999961, 48.469620568 ], [ -123.44909532399997, 48.469350683000073 ], [ -123.448995997999972, 48.469351071000034 ], [ -123.448981423999939, 48.469621023000045 ], [ -123.449097705999961, 48.469620568 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137895499", "BldgCostT": "91099999", "sL_LossRatio": "0.942453842668719", "sL_AssetLoss": "190788.76", "sL_BldgLoss": "179809.6", "sL_StrLoss": "149566.4", "sL_NStrLoss": "30243.2", "sL_ContLoss": "10979.16", "geom_point": "0101000020E610000022436D9FBEDC5EC0D182821809444840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.45488388499993, 48.559048203000067 ], [ -123.454284874999956, 48.558721499000107 ], [ -123.454124025999974, 48.558678918000076 ], [ -123.452350738999911, 48.558209306000087 ], [ -123.452241150999924, 48.55817987800009 ], [ -123.451676793999965, 48.558028227000058 ], [ -123.451595448999953, 48.557980471000043 ], [ -123.451286007999911, 48.557798856000062 ], [ -123.451235397999966, 48.557769159000074 ], [ -123.449712732999956, 48.556875420000054 ], [ -123.449057644999968, 48.55649087800002 ], [ -123.44813617699999, 48.555949958000035 ], [ -123.44784118699999, 48.555776799000128 ], [ -123.447359139999918, 48.555359515000056 ], [ -123.447169467, 48.555113533000096 ], [ -123.447053472999983, 48.554963160000064 ], [ -123.447036790999917, 48.554941535000104 ], [ -123.4470219829999, 48.554911651000097 ], [ -123.446851392999974, 48.554567413000044 ], [ -123.446550934999919, 48.553045508000061 ], [ -123.446548490999987, 48.55279213700004 ], [ -123.446546428999966, 48.552579293000086 ], [ -123.446595217999985, 48.552253179000054 ], [ -123.446954584999901, 48.551552127000022 ], [ -123.447176889999966, 48.551118448000132 ], [ -123.448446405999917, 48.548641688000032 ], [ -123.448451498999958, 48.548625797000049 ], [ -123.448594598999989, 48.548179089000072 ], [ -123.448612188, 48.547827908000066 ], [ -123.448573900999961, 48.547486211000134 ], [ -123.448369290999963, 48.546943007000074 ], [ -123.448022285999954, 48.546481193000076 ], [ -123.44780849299994, 48.546300966000061 ], [ -123.447453090999957, 48.546001412000066 ], [ -123.44736272599998, 48.545945419000134 ], [ -123.446872628999955, 48.545641814000071 ], [ -123.445498072999953, 48.544790287000041 ], [ -123.444517443, 48.544182772000049 ], [ -123.43965102099996, 48.541167505000089 ], [ -123.439153004999952, 48.540749706000106 ], [ -123.439050201999947, 48.540645743 ], [ -123.438495311999958, 48.540084685000096 ], [ -123.438455002999959, 48.539980005000103 ], [ -123.438108585999984, 48.539435211000047 ], [ -123.437923502999922, 48.539033996000043 ], [ -123.437744212999988, 48.538500501 ], [ -123.43763836799998, 48.537669518000044 ], [ -123.43763421499996, 48.537636799000069 ], [ -123.437661040999942, 48.537299114000049 ], [ -123.437670993999987, 48.537173560000085 ], [ -123.43768094099994, 48.537048533000089 ], [ -123.437689685999899, 48.536938406000068 ], [ -123.437939176999947, 48.536403505000052 ], [ -123.437934373999923, 48.536168896000056 ], [ -123.437792788999943, 48.535933668000091 ], [ -123.437758212999981, 48.53587619000011 ], [ -123.437400199999971, 48.535670095000057 ], [ -123.437235204, 48.535645382000048 ], [ -123.437413415999913, 48.535104183000051 ], [ -123.437461051999904, 48.534909049000092 ], [ -123.437710687999967, 48.533886905000038 ], [ -123.437957491999953, 48.533127399000115 ], [ -123.438368305, 48.532485501000032 ], [ -123.438483608999931, 48.532154608000042 ], [ -123.438512914999961, 48.531865006000046 ], [ -123.438503180999987, 48.530972202000036 ], [ -123.438217273999925, 48.529613511000058 ], [ -123.438148488999943, 48.529286603000052 ], [ -123.438042809999956, 48.529116286000061 ], [ -123.437944892999951, 48.528961844000037 ], [ -123.437768790999911, 48.528684099000031 ], [ -123.436990690999949, 48.527849403000069 ], [ -123.43656938099997, 48.52751459300007 ], [ -123.43592719899999, 48.527141085000096 ], [ -123.435821333999939, 48.527088842000062 ], [ -123.434825470999954, 48.526597362000068 ], [ -123.434784199999967, 48.526577005000092 ], [ -123.433510801999901, 48.525876294000099 ], [ -123.433227783999953, 48.525663874000045 ], [ -123.432698456000011, 48.5252665450001 ], [ -123.432520305999944, 48.525132830000075 ], [ -123.432100691, 48.52481783200006 ], [ -123.431262881999913, 48.524188958000096 ], [ -123.431137615999958, 48.524094901000119 ], [ -123.431053301999924, 48.524028898000012 ], [ -123.431243285999969, 48.523991103000085 ], [ -123.431545194999941, 48.523858691000115 ], [ -123.433386601999985, 48.523875599000085 ], [ -123.434849191999973, 48.523889011000087 ], [ -123.43484962399999, 48.523889002000018 ], [ -123.434850054999984, 48.523888993000142 ], [ -123.43849609199998, 48.523831001000076 ], [ -123.438978208999956, 48.523617305000123 ], [ -123.439083656999969, 48.523518850000102 ], [ -123.43912289599993, 48.523482217000044 ], [ -123.439208888999943, 48.523401901000113 ], [ -123.439248259999928, 48.522754558000024 ], [ -123.439250936999954, 48.52271008000011 ], [ -123.439288598999937, 48.522090095000067 ], [ -123.439296596999981, 48.521958715000046 ], [ -123.439491901999943, 48.521799289000114 ], [ -123.43978529499995, 48.521698192000059 ], [ -123.43984107499999, 48.521647440000088 ], [ -123.44100167699996, 48.520591009000064 ], [ -123.441475890999968, 48.520159342000127 ], [ -123.442144597999942, 48.519550591000097 ], [ -123.442548935999966, 48.519210936 ], [ -123.442556697999962, 48.519204409000103 ], [ -123.442570819999943, 48.51915070900008 ], [ -123.442582453999975, 48.51910650500006 ], [ -123.442606903999931, 48.519013564000062 ], [ -123.442687610999911, 48.518706835000053 ], [ -123.442721413999962, 48.518578417000072 ], [ -123.44277164499999, 48.518387389000033 ], [ -123.442781262000011, 48.518350940000069 ], [ -123.442806917999945, 48.518253452000053 ], [ -123.443198610999929, 48.516764603000084 ], [ -123.443400678999964, 48.51660269399999 ], [ -123.443585190999926, 48.516564787000029 ], [ -123.443861209999966, 48.516510105000059 ], [ -123.444470568000014, 48.51649053100008 ], [ -123.445255742999933, 48.516595098000067 ], [ -123.445459542999927, 48.516575678000038 ], [ -123.446012705999976, 48.51642036600002 ], [ -123.446942748, 48.516020787000102 ], [ -123.447685394999922, 48.515586034000073 ], [ -123.447914818999976, 48.515367945000058 ], [ -123.44816130000001, 48.514984349000031 ], [ -123.448303736999975, 48.514600868000073 ], [ -123.448733978999883, 48.513442781000045 ], [ -123.448775028999961, 48.512708025000023 ], [ -123.449090982999962, 48.512088976000058 ], [ -123.449154783999987, 48.51203500300003 ], [ -123.449205723999953, 48.511991961000078 ], [ -123.449564696999943, 48.511688434000085 ], [ -123.449623095, 48.511639032000083 ], [ -123.44975668099994, 48.511526102000062 ], [ -123.449792454999965, 48.511436311000132 ], [ -123.450077189999959, 48.510722325000096 ], [ -123.450107665999951, 48.510458246000084 ], [ -123.450122148999952, 48.510332982000051 ], [ -123.450153291999953, 48.510063207000073 ], [ -123.450103912999907, 48.509852902000063 ], [ -123.4500010899999, 48.50970430400011 ], [ -123.449662918999977, 48.509459106000058 ], [ -123.449296160999921, 48.509334363000121 ], [ -123.449134475999969, 48.509279377000041 ], [ -123.44909219799996, 48.509264994000077 ], [ -123.448850411999956, 48.509112203 ], [ -123.448707157999962, 48.508948414000038 ], [ -123.448420197999951, 48.50862038300005 ], [ -123.448317500999977, 48.508394306000056 ], [ -123.44817349899995, 48.508208707000094 ], [ -123.448106084999893, 48.507949317000026 ], [ -123.449030074999939, 48.507945716000101 ], [ -123.449034842999964, 48.508485482000054 ], [ -123.449441006999933, 48.50848389800008 ], [ -123.449443393999985, 48.508753780000035 ], [ -123.449849559999919, 48.508752194000088 ], [ -123.449851948999935, 48.509022078000086 ], [ -123.450258116999962, 48.509020490000111 ], [ -123.450260508000014, 48.509290373000056 ], [ -123.45066667699993, 48.509288784000034 ], [ -123.45066189299996, 48.508749017000113 ], [ -123.451068058999908, 48.508747426000099 ], [ -123.451065661999962, 48.508477543 ], [ -123.451471825999988, 48.508475951000037 ], [ -123.451469427999896, 48.508206067000039 ], [ -123.452992237000032, 48.508200085000105 ], [ -123.453034448999944, 48.507417684000089 ], [ -123.453308272999962, 48.507424259000054 ], [ -123.453320823999917, 48.507191594000048 ], [ -123.451756887999977, 48.507154032000074 ], [ -123.45189244, 48.504642693000029 ], [ -123.451282971999916, 48.504628049000118 ], [ -123.451104773999958, 48.507928654000096 ], [ -123.448081824999988, 48.507855967000062 ], [ -123.447909397999965, 48.507192507000127 ], [ -123.447622090999957, 48.50703231000012 ], [ -123.447080089999957, 48.506908302000063 ], [ -123.44665868299991, 48.506779201 ], [ -123.446140605999972, 48.506362799000016 ], [ -123.445742567999901, 48.506151176000024 ], [ -123.445545491999951, 48.50604640100007 ], [ -123.445257812999955, 48.505943006000038 ], [ -123.445075663999944, 48.50582084100008 ], [ -123.445058322999941, 48.505809206000066 ], [ -123.444814512999969, 48.505548363000088 ], [ -123.444806601999929, 48.505539895000076 ], [ -123.444850709999955, 48.505224407000043 ], [ -123.444823904999907, 48.50496950399999 ], [ -123.444603622, 48.504621597000025 ], [ -123.44460193399999, 48.504612202000033 ], [ -123.444592815999968, 48.504561180000053 ], [ -123.444581800999984, 48.504499319000026 ], [ -123.444653101999933, 48.504255792000052 ], [ -123.444758360999941, 48.504021944000058 ], [ -123.44675334899992, 48.504013360000016 ], [ -123.446742330999939, 48.504217068000081 ], [ -123.450977579999943, 48.504318943000101 ], [ -123.450995072, 48.503994985000119 ], [ -123.45631367499999, 48.503971706000115 ], [ -123.458132336999967, 48.50379269200004 ], [ -123.458152179999985, 48.505072289000076 ], [ -123.45818003, 48.506868498000102 ], [ -123.458186601999955, 48.50729169699999 ], [ -123.458300966999971, 48.514669612000048 ], [ -123.45864418799998, 48.5146433580001 ], [ -123.458632153999929, 48.514866848000032 ], [ -123.453232193999924, 48.514737348000097 ], [ -123.453295140999927, 48.513570687000019 ], [ -123.452922651999927, 48.513561744000107 ], [ -123.452958092999978, 48.512904948000049 ], [ -123.452866289, 48.512902744000073 ], [ -123.452967734999959, 48.511022714000134 ], [ -123.45284010099995, 48.511019649000026 ], [ -123.452904842999928, 48.509819784000101 ], [ -123.452702336999948, 48.509820581000099 ], [ -123.45269753, 48.509280815000132 ], [ -123.452291358999943, 48.509282411000086 ], [ -123.452293760999964, 48.509552294000052 ], [ -123.451887589999956, 48.509553890000099 ], [ -123.451892387999962, 48.510093656000024 ], [ -123.45148621099996, 48.51009524900013 ], [ -123.451493404999937, 48.51090489900011 ], [ -123.451221501999953, 48.51090596500007 ], [ -123.45107209, 48.513672936000091 ], [ -123.450928880999967, 48.513669496000041 ], [ -123.450914697999934, 48.51393214100009 ], [ -123.450875074999928, 48.513931189000118 ], [ -123.450868448999927, 48.514053891000088 ], [ -123.451730003999913, 48.514074590000043 ], [ -123.451535528999955, 48.517676513000083 ], [ -123.451230224999904, 48.517669178000077 ], [ -123.451169775999915, 48.518788518000044 ], [ -123.450182311999981, 48.518764791000102 ], [ -123.450176840999944, 48.518866043000038 ], [ -123.448423295999973, 48.518823884000057 ], [ -123.44841597599995, 48.518959285000065 ], [ -123.447114034999942, 48.518927966000099 ], [ -123.447014369999962, 48.520770390000109 ], [ -123.447431357999932, 48.520780423000069 ], [ -123.447417249999887, 48.521041283000088 ], [ -123.448934921999964, 48.521077785000088 ], [ -123.448821123999906, 48.523182875000089 ], [ -123.449233236999973, 48.523192783000084 ], [ -123.449131575, 48.52507350800002 ], [ -123.452569529999963, 48.525156101000121 ], [ -123.452558476999968, 48.525360829000064 ], [ -123.453772598999976, 48.525389970000013 ], [ -123.453637305999948, 48.527897185000015 ], [ -123.455511087999952, 48.527942131000067 ], [ -123.45548906099999, 48.528350572000114 ], [ -123.457687934999939, 48.528403275000109 ], [ -123.457493853999907, 48.532005122000072 ], [ -123.453681681999953, 48.53191372400007 ], [ -123.453660137999918, 48.532312905000069 ], [ -123.454683978999967, 48.532337466000051 ], [ -123.454613931999972, 48.533635826000108 ], [ -123.456122028999957, 48.533671985000069 ], [ -123.456183739999943, 48.53252743900007 ], [ -123.461585743999976, 48.532656785000015 ], [ -123.46153844, 48.53353599400004 ], [ -123.462260398999987, 48.533533097000038 ], [ -123.462262854999935, 48.533802979000036 ], [ -123.462669219999952, 48.533801346000061 ], [ -123.462671678999982, 48.534071228000059 ], [ -123.463078046999954, 48.534069594000087 ], [ -123.463080507999948, 48.534339476000071 ], [ -123.463486877999983, 48.53433784 ], [ -123.46350412299995, 48.536227010000125 ], [ -123.463097737999988, 48.536228646000033 ], [ -123.463100200999989, 48.536498528000145 ], [ -123.462693813, 48.536500162000074 ], [ -123.462696270999956, 48.536770043000061 ], [ -123.462289881999979, 48.53677167600005 ], [ -123.462292339999934, 48.537041557000123 ], [ -123.461885947999974, 48.53704318900003 ], [ -123.461903134999943, 48.538932359000071 ], [ -123.461496727999958, 48.538933988000018 ], [ -123.461501634999948, 48.539473751000052 ], [ -123.460282401999919, 48.539478632000105 ], [ -123.46027995399993, 48.539208750000071 ], [ -123.459873545999983, 48.539210375000017 ], [ -123.45987110099999, 48.538940494 ], [ -123.459464693999934, 48.538942117000033 ], [ -123.459462251, 48.538672235000057 ], [ -123.459055846999888, 48.538673856000067 ], [ -123.459033498999972, 48.53620217700005 ], [ -123.457963536999927, 48.536176556000115 ], [ -123.457901863999922, 48.537321096 ], [ -123.45249933699999, 48.537191563000093 ], [ -123.452569445999956, 48.535893213000122 ], [ -123.450091927, 48.535833719000046 ], [ -123.450068195999918, 48.536272791000044 ], [ -123.445621991999957, 48.536165878000062 ], [ -123.44562314699999, 48.536297612000062 ], [ -123.446842306999898, 48.536292886000084 ], [ -123.446854184999921, 48.537642297000033 ], [ -123.447260579999977, 48.53764071900008 ], [ -123.447281303999958, 48.539992943000065 ], [ -123.4472819799999, 48.540069657000046 ], [ -123.446875561999903, 48.540071235000021 ], [ -123.44687793899999, 48.540341116000072 ], [ -123.446065099999913, 48.540344268000091 ], [ -123.446067473000014, 48.540614150000074 ], [ -123.445661049999941, 48.54061572300003 ], [ -123.44566341899997, 48.540885606000131 ], [ -123.445256995999983, 48.540887179000116 ], [ -123.445266464999932, 48.541966706000082 ], [ -123.44607932699995, 48.541963559000116 ], [ -123.446081699999965, 48.542233442000054 ], [ -123.448520303999885, 48.542223968000023 ], [ -123.448517918999968, 48.541954085000043 ], [ -123.450143645999972, 48.541947740000047 ], [ -123.450141251999952, 48.541677859000089 ], [ -123.451360541, 48.541673085000106 ], [ -123.45136773899999, 48.542482730000081 ], [ -123.451774175999958, 48.542481136000035 ], [ -123.451783784, 48.543560662000111 ], [ -123.452190227999978, 48.543559067000054 ], [ -123.452197439999964, 48.544368711000054 ], [ -123.451790988999932, 48.544370306000069 ], [ -123.451793390999981, 48.544640189000042 ], [ -123.452606296999974, 48.544636995000062 ], [ -123.452613516999989, 48.545446640000073 ], [ -123.45098767899999, 48.545453020000103 ], [ -123.450985279999941, 48.54518313800002 ], [ -123.45057882399999, 48.545184730000052 ], [ -123.450574032999938, 48.544644967000124 ], [ -123.450167578999981, 48.5446465570001 ], [ -123.450169971999941, 48.544916438000016 ], [ -123.448544149999947, 48.544922784000079 ], [ -123.448545356999944, 48.545059242000029 ], [ -123.449406728999946, 48.545079941000033 ], [ -123.449358071999981, 48.545979721000037 ], [ -123.449596073999942, 48.545985439000113 ], [ -123.449587431999987, 48.546145280000111 ], [ -123.451773807, 48.546197783000054 ], [ -123.451712125999919, 48.547339416000085 ], [ -123.451817413999919, 48.547339003000083 ], [ -123.45182103599997, 48.54774577000007 ], [ -123.456879017999967, 48.547867053000054 ], [ -123.456770888999927, 48.549872327000109 ], [ -123.461743664999986, 48.549991331000101 ], [ -123.461740387999953, 48.550052227000059 ], [ -123.462292149999925, 48.550065417000013 ], [ -123.462290087999989, 48.550103730000053 ], [ -123.463342913999924, 48.550128889000099 ], [ -123.463297175999969, 48.550979252000033 ], [ -123.463328165999926, 48.550979992000045 ], [ -123.46319967, 48.553368814000038 ], [ -123.462677108999955, 48.553014266000062 ], [ -123.461642929999925, 48.552152250000084 ], [ -123.46056877099997, 48.551161442000058 ], [ -123.458327649999916, 48.551213947000058 ], [ -123.457762180999936, 48.551218544000037 ], [ -123.457807771, 48.552627162000078 ], [ -123.457896101999935, 48.553602940000104 ], [ -123.458109846999918, 48.555964213000017 ], [ -123.458223750999977, 48.557222508000045 ], [ -123.454800967, 48.557140522000104 ], [ -123.454758725999966, 48.557923106000096 ], [ -123.457749887999967, 48.557994758000042 ], [ -123.457702502999965, 48.558873635000033 ], [ -123.457104877999882, 48.558796095000091 ], [ -123.45595520699996, 48.559071001000113 ], [ -123.455169584999936, 48.559100891000064 ], [ -123.45488388499993, 48.559048203000067 ] ], [ [ -123.451325528999988, 48.55050879000008 ], [ -123.451350877999985, 48.550039740000102 ], [ -123.451028447999974, 48.550041005000132 ], [ -123.451026184999961, 48.549786237000077 ], [ -123.450186539999891, 48.549766075000036 ], [ -123.450169061999958, 48.550089346000114 ], [ -123.449402671999962, 48.5500709370001 ], [ -123.449404852999947, 48.550317243000045 ], [ -123.449330684999964, 48.550317533000062 ], [ -123.44932426, 48.550436332000089 ], [ -123.450157118999954, 48.550456337000092 ], [ -123.450155801, 48.55048070400008 ], [ -123.451325528999988, 48.55050879000008 ] ], [ [ -123.443125216999974, 48.535397841000055 ], [ -123.44326610499995, 48.532798123000056 ], [ -123.443154206999978, 48.532798553000063 ], [ -123.443163627999979, 48.533878084000072 ], [ -123.441944525999986, 48.533882770000062 ], [ -123.441932781999967, 48.532533358000094 ], [ -123.442339138999984, 48.532531797000054 ], [ -123.442333816999962, 48.531920800000087 ], [ -123.44180265599999, 48.531907997000125 ], [ -123.441853074999983, 48.530978110000028 ], [ -123.44110637599999, 48.530960108000045 ], [ -123.441115380999975, 48.531996709000062 ], [ -123.440302674999941, 48.531999820000067 ], [ -123.44030501599994, 48.532269703000054 ], [ -123.440186739999945, 48.532270156000088 ], [ -123.440063504999898, 48.534541442000041 ], [ -123.439918296999934, 48.534537940000057 ], [ -123.439919703999919, 48.534700199000071 ], [ -123.440732451999949, 48.534697091000062 ], [ -123.440738033999978, 48.535340303000034 ], [ -123.443125216999974, 48.535397841000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "0.961989515955028", "sL_AssetLoss": "6442.17", "sL_BldgLoss": "6197.3", "sL_StrLoss": "5220", "sL_NStrLoss": "977.3", "sL_ContLoss": "244.87", "geom_point": "0101000020E6100000F693B576F0DC5EC07AAE4A7DB4424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.450085815999969, 48.519208648000067 ], [ -123.455486278999928, 48.519338307000048 ], [ -123.45529206799992, 48.522940205000104 ], [ -123.454275476999968, 48.522915819000069 ], [ -123.454267832999918, 48.523057530000102 ], [ -123.448866948, 48.52292781000007 ], [ -123.449061648999944, 48.519325924000057 ], [ -123.450078158999958, 48.519350360000082 ], [ -123.450085815999969, 48.519208648000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139630418", "BldgCostT": "89796668", "sL_LossRatio": "0.744207376484926", "sL_AssetLoss": "70149.13", "sL_BldgLoss": "52205.5", "sL_StrLoss": "35712", "sL_NStrLoss": "16493.5", "sL_ContLoss": "17943.63", "geom_point": "0101000020E6100000A04EDC9E1EE35EC02432DE1C4F3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.549573798999958, 48.476478569000051 ], [ -123.551961498999944, 48.476533741000083 ], [ -123.551774816999938, 48.480136071000182 ], [ -123.550996415999975, 48.480118090000047 ], [ -123.550922459999967, 48.481544587000037 ], [ -123.550019443999958, 48.481523720000077 ], [ -123.545780416999932, 48.48142566500011 ], [ -123.545526059999958, 48.481419776000081 ], [ -123.545544768999974, 48.481059695000077 ], [ -123.545621203999971, 48.479588630000059 ], [ -123.54571322299995, 48.477817465000037 ], [ -123.54649158299999, 48.477835485000121 ], [ -123.54656566599999, 48.476408982000088 ], [ -123.549573798999958, 48.476478569000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3656250", "BldgCostT": "2025000", "sL_LossRatio": "0.427717505584624", "sL_AssetLoss": "22732.06", "sL_BldgLoss": "9722.9", "sL_StrLoss": "1374", "sL_NStrLoss": "8348.9", "sL_ContLoss": "13009.16", "geom_point": "0101000020E61000007CF654359EE45EC033D926B2E23A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.571557706999954, 48.459631237000075 ], [ -123.572441505999919, 48.459626844000034 ], [ -123.57260351099994, 48.459697482000088 ], [ -123.572777111999969, 48.459812302000032 ], [ -123.57278411599998, 48.460434826000053 ], [ -123.572061254999966, 48.460438421000084 ], [ -123.571566796999932, 48.460440878000028 ], [ -123.571560246999951, 48.459857521000117 ], [ -123.571557706999954, 48.459631237000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47526583", "BldgCostT": "27673333", "sL_LossRatio": "0.805221667344056", "sL_AssetLoss": "39760.48", "sL_BldgLoss": "32016", "sL_StrLoss": "24100.8", "sL_NStrLoss": "7915.2", "sL_ContLoss": "7744.48", "geom_point": "0101000020E61000006E03FBD832E35EC0EF709E5EE73D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.551333788999969, 48.484990696000033 ], [ -123.551145315, 48.484982190000053 ], [ -123.549534716999915, 48.485099001000016 ], [ -123.54919968199999, 48.48544219700004 ], [ -123.549274085999969, 48.485890808000079 ], [ -123.549179498999962, 48.485946399000035 ], [ -123.548906518, 48.485883705000042 ], [ -123.548698, 48.485336792000091 ], [ -123.548345304999941, 48.485167308 ], [ -123.547799694, 48.484764303000084 ], [ -123.547790270999911, 48.484691381000104 ], [ -123.547710094999942, 48.484072100000049 ], [ -123.547767528999984, 48.483796175000116 ], [ -123.546945576999974, 48.483650793000066 ], [ -123.547033541999923, 48.481956911000069 ], [ -123.550297641999947, 48.482032390000072 ], [ -123.552430007999973, 48.482081644000111 ], [ -123.552388639999918, 48.482880025000071 ], [ -123.552683846999955, 48.482886841000045 ], [ -123.552572230999914, 48.485041054000057 ], [ -123.552497195999976, 48.486489133000106 ], [ -123.552328719999963, 48.486485244000072 ], [ -123.55228320199997, 48.48634559000007 ], [ -123.552268197999965, 48.486299613000071 ], [ -123.552306616, 48.486093102000048 ], [ -123.552236482999888, 48.485952109000053 ], [ -123.552127906999885, 48.485733917000069 ], [ -123.552043015, 48.485563293000105 ], [ -123.55197554199998, 48.485492415000095 ], [ -123.551633394999953, 48.485133103000059 ], [ -123.551333788999969, 48.484990696000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.994056991923604", "sL_AssetLoss": "1968.7", "sL_BldgLoss": "1957", "sL_StrLoss": "1810", "sL_NStrLoss": "147", "sL_ContLoss": "11.7", "geom_point": "0101000020E6100000B75BF52DB1E45EC020796B892A3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.573195965999957, 48.460972567000077 ], [ -123.573678259999923, 48.460970164000102 ], [ -123.573723120999915, 48.461116012000069 ], [ -123.573830213999884, 48.461446841000033 ], [ -123.573825023999945, 48.461555155000035 ], [ -123.573800656999964, 48.461977948000069 ], [ -123.573783501999969, 48.462275322000032 ], [ -123.573517470999931, 48.462880363000046 ], [ -123.573168313999986, 48.463251599000039 ], [ -123.572736875999979, 48.46350622100001 ], [ -123.572413481999959, 48.463562037000067 ], [ -123.572408686999935, 48.46313564800009 ], [ -123.572814481999941, 48.463133629000019 ], [ -123.572811443999925, 48.462863749000057 ], [ -123.573217235999948, 48.462861728000121 ], [ -123.573197020999942, 48.46106642800008 ], [ -123.573195965999957, 48.460972567000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.908273381294964", "sL_AssetLoss": "3336", "sL_BldgLoss": "3030", "sL_StrLoss": "2370", "sL_NStrLoss": "660", "sL_ContLoss": "306", "geom_point": "0101000020E61000009307F90B03E35EC034B9BD49783B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.54644645799999, 48.46407153300003 ], [ -123.547663868000015, 48.464065746000117 ], [ -123.547675483999981, 48.465145270000036 ], [ -123.546458046999959, 48.465151058000053 ], [ -123.54644645799999, 48.46407153300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99724136", "BldgCostT": "60857079", "sL_LossRatio": "0.900285350146059", "sL_AssetLoss": "177326", "sL_BldgLoss": "159644", "sL_StrLoss": "125356", "sL_NStrLoss": "34288", "sL_ContLoss": "17682", "geom_point": "0101000020E6100000558B3ED557E35EC0EA0CCED8FE3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.547982720999983, 48.463301694000108 ], [ -123.547995511999929, 48.463055158000124 ], [ -123.546323375999975, 48.463016451000129 ], [ -123.546329922999959, 48.462890359000021 ], [ -123.545849765999932, 48.462879239000117 ], [ -123.545859391999969, 48.462693887000128 ], [ -123.54531705799991, 48.46268132600008 ], [ -123.54532475399999, 48.462533166000064 ], [ -123.544705145999956, 48.462518810000063 ], [ -123.544716139999949, 48.46230721400007 ], [ -123.544335843999974, 48.462298401000041 ], [ -123.544397470999982, 48.461112396000068 ], [ -123.542762571999944, 48.461120117000142 ], [ -123.542756816999955, 48.460580353000033 ], [ -123.541945264999981, 48.46058417800004 ], [ -123.541942392999914, 48.460314296000043 ], [ -123.541659511999967, 48.460315627000135 ], [ -123.541557304999984, 48.459818589000058 ], [ -123.54233341299999, 48.460110845000052 ], [ -123.542876588999917, 48.460270959000098 ], [ -123.543403355999942, 48.460227641000102 ], [ -123.543593195999989, 48.460107594000114 ], [ -123.543835115999968, 48.460050983000073 ], [ -123.544153117999883, 48.46004197700006 ], [ -123.544709939000015, 48.460026188000086 ], [ -123.545877308999977, 48.460035197000089 ], [ -123.545987960999952, 48.460046719000111 ], [ -123.546344627999986, 48.460083872000027 ], [ -123.546884677999984, 48.46021361100005 ], [ -123.547327351999911, 48.460268948000049 ], [ -123.548132545999962, 48.460284862000044 ], [ -123.548311348999931, 48.460091537000032 ], [ -123.548490375999961, 48.460101994000119 ], [ -123.54963253299999, 48.459946279000057 ], [ -123.550396807999931, 48.459839477000074 ], [ -123.55045568299991, 48.459823201000098 ], [ -123.550623852999976, 48.459776697000066 ], [ -123.55073379699995, 48.459746297000038 ], [ -123.550790470999971, 48.459719170000042 ], [ -123.551120022999939, 48.459561402000162 ], [ -123.551572690999933, 48.459294098000065 ], [ -123.551817007999944, 48.459216807000118 ], [ -123.552064700999949, 48.459177400000094 ], [ -123.552424519999988, 48.459138002000032 ], [ -123.552514344, 48.45913907100006 ], [ -123.552833435999958, 48.459142918000055 ], [ -123.553182824999965, 48.459224911000014 ], [ -123.553607514999982, 48.459393401000078 ], [ -123.554498998, 48.459620494000028 ], [ -123.555125798999981, 48.45976839700009 ], [ -123.555350493999939, 48.459757414000158 ], [ -123.555553085999961, 48.459677287000034 ], [ -123.555858834999952, 48.459497987000162 ], [ -123.556057749999965, 48.459381332000113 ], [ -123.556144909999944, 48.459330211000086 ], [ -123.556536493999957, 48.459014689000107 ], [ -123.556658989999974, 48.458838994000097 ], [ -123.557024396999978, 48.458750298000034 ], [ -123.557032196999913, 48.458748410000069 ], [ -123.557113851999972, 48.458739004000044 ], [ -123.557555094999941, 48.458688305000173 ], [ -123.557919945999956, 48.458719270000053 ], [ -123.55835760099994, 48.45875640700006 ], [ -123.55839977699999, 48.458763708000035 ], [ -123.559334417999978, 48.458925903000107 ], [ -123.55954579199998, 48.458935812000107 ], [ -123.560166652999953, 48.458964876 ], [ -123.560735103999946, 48.458991508000082 ], [ -123.560939927999954, 48.45897296200009 ], [ -123.561211191999988, 48.458948408000055 ], [ -123.561419684000029, 48.458929467000118 ], [ -123.56143360599998, 48.458928194000066 ], [ -123.561903085999944, 48.458944984000041 ], [ -123.563421938999937, 48.459078326000025 ], [ -123.564249337999968, 48.459255162 ], [ -123.564253904999958, 48.459667278000033 ], [ -123.563546779999967, 48.459670743000039 ], [ -123.563510289999925, 48.460378544000029 ], [ -123.558985311999933, 48.460274394000123 ], [ -123.558993744999967, 48.461042425000059 ], [ -123.558290701999951, 48.461045838000068 ], [ -123.554869988999883, 48.461062381000012 ], [ -123.554865054999979, 48.461157748000069 ], [ -123.554852005999948, 48.461409954000047 ], [ -123.553483085999915, 48.46137835600004 ], [ -123.553377059999931, 48.463426384000094 ], [ -123.551850247999965, 48.463391119000093 ], [ -123.551632027999958, 48.463386078000077 ], [ -123.547982720999983, 48.463301694000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.970619849516302", "sL_AssetLoss": "2791", "sL_BldgLoss": "2709", "sL_StrLoss": "2340", "sL_NStrLoss": "369", "sL_ContLoss": "82", "geom_point": "0101000020E6100000C0200AE213E35EC0EAD7EFEC9F3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.547272573, 48.46541708200008 ], [ -123.548895830000021, 48.46540935200008 ], [ -123.548904559, 48.466218996000109 ], [ -123.547281277999957, 48.46622672600008 ], [ -123.547272573, 48.46541708200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30192585", "BldgCostT": "19348335", "sL_LossRatio": "0.976645815299056", "sL_AssetLoss": "29607.97", "sL_BldgLoss": "28916.5", "sL_StrLoss": "25755", "sL_NStrLoss": "3161.5", "sL_ContLoss": "691.47", "geom_point": "0101000020E610000001A42E006AE35EC06A1361A2C5404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.549683393999928, 48.507669811000028 ], [ -123.550786914999961, 48.507043201000059 ], [ -123.551193308999984, 48.507068792000041 ], [ -123.551626790999975, 48.506959215000101 ], [ -123.551788696999949, 48.506876587000043 ], [ -123.551853595999944, 48.506687089000117 ], [ -123.551756113999929, 48.506355296000045 ], [ -123.551550789999965, 48.506194395000136 ], [ -123.551813878999937, 48.505500796000064 ], [ -123.55134839, 48.504962401000121 ], [ -123.551137278999946, 48.504415498000107 ], [ -123.55152672199999, 48.50407090100007 ], [ -123.55155570699992, 48.503771107000041 ], [ -123.55477370899996, 48.503845347000073 ], [ -123.554757528999929, 48.504157735000099 ], [ -123.555097480999947, 48.504165571000051 ], [ -123.55601058399999, 48.504186615000052 ], [ -123.555996984, 48.504449336000036 ], [ -123.555161586999944, 48.504435293000057 ], [ -123.555410508999984, 48.504794494000059 ], [ -123.555953309999907, 48.505292991000054 ], [ -123.555824102, 48.507788785000045 ], [ -123.554883842999985, 48.507767115000036 ], [ -123.554878265999889, 48.50787477600003 ], [ -123.55402694499999, 48.507890632000127 ], [ -123.548697118999883, 48.507989735000137 ], [ -123.547946200999903, 48.508216831 ], [ -123.548090696, 48.50810991400003 ], [ -123.549048399999947, 48.507726791000017 ], [ -123.549683393999928, 48.507669811000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418997168", "BldgCostT": "277311668", "sL_LossRatio": "0.901856755979336", "sL_AssetLoss": "200281.03", "sL_BldgLoss": "180624.8", "sL_StrLoss": "149902.4", "sL_NStrLoss": "30722.4", "sL_ContLoss": "19656.23", "geom_point": "0101000020E6100000DF81AE3BA5E25EC0B1878B16FF3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.533215981999945, 48.497189315000057 ], [ -123.532502106999956, 48.494290097 ], [ -123.531948396999979, 48.490457308000096 ], [ -123.532028099999977, 48.490459164000079 ], [ -123.532063801999954, 48.489775968000124 ], [ -123.537461122000011, 48.489901462 ], [ -123.537434736999941, 48.490407469000075 ], [ -123.539994160999953, 48.490466882000064 ], [ -123.540070728999922, 48.488996862000128 ], [ -123.540352760999966, 48.489003405000126 ], [ -123.540366330999987, 48.488742868000031 ], [ -123.540706254999947, 48.488750754000066 ], [ -123.540724035999929, 48.488409276000063 ], [ -123.542132321999972, 48.488441933000068 ], [ -123.542149995999978, 48.488102311000034 ], [ -123.54380721299998, 48.488140716000103 ], [ -123.543938963999935, 48.485607147000024 ], [ -123.54448395699994, 48.485619771000067 ], [ -123.544544402, 48.484457058000089 ], [ -123.546277988999947, 48.484497197000046 ], [ -123.546199176999934, 48.484694405 ], [ -123.54605069299997, 48.484880827000097 ], [ -123.545796089999925, 48.485447923000059 ], [ -123.545454396999929, 48.486034590000074 ], [ -123.544578646999923, 48.487060609000032 ], [ -123.545718396999973, 48.487220503000096 ], [ -123.548345465999986, 48.4871085360001 ], [ -123.548366299999913, 48.487164087000053 ], [ -123.548485204999963, 48.48745032000005 ], [ -123.548824807999978, 48.488267806000046 ], [ -123.548898601999937, 48.488375661000099 ], [ -123.54891176199996, 48.488394894000066 ], [ -123.549177512999961, 48.488783301000041 ], [ -123.549148920999954, 48.489334306000096 ], [ -123.547491656999952, 48.489295985000055 ], [ -123.54743776799998, 48.490333721000127 ], [ -123.55057123899995, 48.490406155000073 ], [ -123.55062591799999, 48.4908328040001 ], [ -123.550320684999974, 48.491446698000104 ], [ -123.549811719000019, 48.491826901000088 ], [ -123.549962481999955, 48.491996400000033 ], [ -123.549243079999911, 48.493115793000101 ], [ -123.549398108999981, 48.493780907 ], [ -123.549119200999911, 48.494124203000098 ], [ -123.548693647, 48.494340288000032 ], [ -123.548350781999915, 48.494514396000085 ], [ -123.54835307899999, 48.494594011000125 ], [ -123.548371891999963, 48.495243593000041 ], [ -123.548148429999983, 48.495835026000059 ], [ -123.543376234999982, 48.495724578000114 ], [ -123.54338443099999, 48.495567030000103 ], [ -123.541238582999952, 48.495517296000038 ], [ -123.541227260999975, 48.495734781000067 ], [ -123.535829263999972, 48.495609480000105 ], [ -123.535914357999957, 48.493978732000123 ], [ -123.534839925999947, 48.493953758000067 ], [ -123.534866338999905, 48.493447755000012 ], [ -123.533183426999969, 48.493408616000053 ], [ -123.533173006999945, 48.49360810400011 ], [ -123.534671144999933, 48.493642946000065 ], [ -123.53452662299999, 48.496411141000038 ], [ -123.536057258999946, 48.496446717000012 ], [ -123.535949717999983, 48.498507642000092 ], [ -123.534969572999927, 48.498619078000033 ], [ -123.533606200999941, 48.498774038000107 ], [ -123.533450984999945, 48.49814370800005 ], [ -123.533215981999945, 48.497189315000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "510872666", "BldgCostT": "340301666", "sL_LossRatio": "0.769246507150342", "sL_AssetLoss": "247809.12", "sL_BldgLoss": "190626.3", "sL_StrLoss": "150493.3", "sL_NStrLoss": "40133", "sL_ContLoss": "57182.82", "geom_point": "0101000020E610000057A823571CE15EC077B16134483C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.52468373799995, 48.478701073000096 ], [ -123.524692217999984, 48.475502664000089 ], [ -123.524693131999953, 48.47515694300008 ], [ -123.524609014999967, 48.475080003000102 ], [ -123.52437824, 48.474868966000024 ], [ -123.522643066999962, 48.47499866000004 ], [ -123.521545877999984, 48.475041544000142 ], [ -123.521373336999957, 48.475048283000078 ], [ -123.520062904999961, 48.475101092000067 ], [ -123.519924953999947, 48.475084420000016 ], [ -123.519192893999943, 48.474996 ], [ -123.519043710999981, 48.474977986000049 ], [ -123.515950253999904, 48.474991182000018 ], [ -123.515832371999949, 48.475000143000024 ], [ -123.513187057999943, 48.47520133900008 ], [ -123.513095904999943, 48.475208258000116 ], [ -123.510667053999939, 48.475547534000086 ], [ -123.510623757999937, 48.475553626000114 ], [ -123.509940642999979, 48.475505384000016 ], [ -123.509377490999938, 48.475465613000026 ], [ -123.509182804999966, 48.475140727000102 ], [ -123.50906130099996, 48.474806955000069 ], [ -123.508805078999956, 48.474543942000061 ], [ -123.508541607999987, 48.474341201000072 ], [ -123.508414393999985, 48.474141637000066 ], [ -123.508180760999949, 48.473544067000041 ], [ -123.508172789999918, 48.473523721000028 ], [ -123.507982504999958, 48.473367762000059 ], [ -123.507431835999967, 48.473003152000103 ], [ -123.506988103, 48.472710482000053 ], [ -123.506436990999958, 48.47226582800009 ], [ -123.505354697000016, 48.471392553000044 ], [ -123.50496909599994, 48.471176084000085 ], [ -123.503743054999973, 48.470551356000058 ], [ -123.502982082999921, 48.470163566000053 ], [ -123.50270599299995, 48.470021814000056 ], [ -123.502095729999965, 48.469712568000084 ], [ -123.501897325999977, 48.469557299000016 ], [ -123.501757919999974, 48.469384495000092 ], [ -123.501662966999902, 48.469137002000146 ], [ -123.501698816999948, 48.468765442000105 ], [ -123.501875397999939, 48.467929173000115 ], [ -123.501857527999931, 48.467736711000029 ], [ -123.501847021999978, 48.46762377600006 ], [ -123.501611203999943, 48.467027563000045 ], [ -123.501532742, 48.4668291750001 ], [ -123.501471789999982, 48.466675082000044 ], [ -123.501361034999931, 48.466395110000065 ], [ -123.501195420999963, 48.465976351000137 ], [ -123.500918058999972, 48.465308908000068 ], [ -123.500834020999918, 48.465106641000048 ], [ -123.500826493999966, 48.465088499000075 ], [ -123.500648299999938, 48.464780394000023 ], [ -123.500541440999939, 48.464692853000038 ], [ -123.50030152, 48.464496306000044 ], [ -123.500762831999936, 48.464476798000128 ], [ -123.50130348499999, 48.464453939000052 ], [ -123.502222336999978, 48.464415076000051 ], [ -123.502313796999914, 48.464411200000072 ], [ -123.502693012999913, 48.464467916000061 ], [ -123.502762736999941, 48.464496043000111 ], [ -123.503006273999986, 48.464594306 ], [ -123.504126394999915, 48.465322297000043 ], [ -123.504698472999962, 48.465687395000081 ], [ -123.505107486999989, 48.465949100000103 ], [ -123.505612905999968, 48.466272506000024 ], [ -123.505762271, 48.466368186000068 ], [ -123.506141217999982, 48.466610989000124 ], [ -123.506229382999933, 48.466667498000042 ], [ -123.506466457999949, 48.466799399000095 ], [ -123.506520606999956, 48.466829503000035 ], [ -123.506866576999968, 48.466951200000096 ], [ -123.507220176999951, 48.467030813000108 ], [ -123.507471015999954, 48.467052009000064 ], [ -123.507632868999963, 48.46706571600005 ], [ -123.507939778999969, 48.46705939900005 ], [ -123.507971121999958, 48.467054208000029 ], [ -123.508518783999975, 48.46696302200008 ], [ -123.50861758399995, 48.467420046000022 ], [ -123.508646879999958, 48.46755569900003 ], [ -123.508867157999987, 48.467522428000102 ], [ -123.508914993999966, 48.467515189000018 ], [ -123.509086005999933, 48.467422711000069 ], [ -123.509203486999951, 48.467294711000086 ], [ -123.50935077499993, 48.466669955000022 ], [ -123.50939482099993, 48.466483191000115 ], [ -123.509715286999921, 48.46547360700005 ], [ -123.50973839000001, 48.465291985000121 ], [ -123.509698022999942, 48.465110702000082 ], [ -123.509368192999915, 48.464503298000075 ], [ -123.51065323899995, 48.464714461000071 ], [ -123.510652341999986, 48.464783262000033 ], [ -123.510448150999977, 48.465148160000062 ], [ -123.510468660999891, 48.465578754000099 ], [ -123.510583734999969, 48.46577801900002 ], [ -123.510992279999954, 48.466148302000107 ], [ -123.511095300999941, 48.466320235000069 ], [ -123.511072332, 48.466551443000107 ], [ -123.511216949999934, 48.466574664000099 ], [ -123.511378262999941, 48.466639767000046 ], [ -123.511597938999955, 48.466889430000087 ], [ -123.511834358999977, 48.46715813900007 ], [ -123.512356328999914, 48.46737507100007 ], [ -123.512461183999932, 48.467307208000094 ], [ -123.512605663999921, 48.467306990000083 ], [ -123.513120031999946, 48.466898883000098 ], [ -123.513948965999958, 48.466414266000093 ], [ -123.514586934999969, 48.465914377000104 ], [ -123.515621670999934, 48.46583276100008 ], [ -123.515624408999912, 48.466103013000051 ], [ -123.515218586999964, 48.466104830000056 ], [ -123.515221317999988, 48.466374713000079 ], [ -123.51481549499999, 48.466376529000094 ], [ -123.514829143999961, 48.467725942000079 ], [ -123.51442331, 48.467727757000041 ], [ -123.514431492999961, 48.468537405000085 ], [ -123.514025650999912, 48.468539218000075 ], [ -123.514028377999963, 48.468809101000097 ], [ -123.51362253399999, 48.468810912000109 ], [ -123.513625256999944, 48.4690807960001 ], [ -123.514436947999982, 48.469077171000087 ], [ -123.514439676999984, 48.469347053000043 ], [ -123.514845523999924, 48.469345239000106 ], [ -123.514848253999915, 48.469615121000089 ], [ -123.515254102999961, 48.469613304000056 ], [ -123.515265032999935, 48.470692834000104 ], [ -123.51485917499997, 48.47069465000007 ], [ -123.514864635999913, 48.471234415000083 ], [ -123.514458772999944, 48.471236230000052 ], [ -123.51446423000003, 48.471775995000073 ], [ -123.514058361999986, 48.471777810000106 ], [ -123.514066540999963, 48.472587457000074 ], [ -123.513660669, 48.472589268 ], [ -123.513677012999935, 48.474208562000086 ], [ -123.51448878699992, 48.474204937000053 ], [ -123.514496972999936, 48.475014585000018 ], [ -123.514902865999971, 48.475012769000067 ], [ -123.514900133999987, 48.47474288600003 ], [ -123.515306024999944, 48.474741070000022 ], [ -123.515303292999945, 48.474471188000024 ], [ -123.515709179999988, 48.474469369000069 ], [ -123.515703709999968, 48.473929605000066 ], [ -123.516515477999931, 48.473925964000067 ], [ -123.516512738999978, 48.473656083000101 ], [ -123.516918620999888, 48.473654261000036 ], [ -123.516896689999953, 48.471495202000014 ], [ -123.517302554999972, 48.471493378000083 ], [ -123.517297067999976, 48.470953614000059 ], [ -123.518108787999978, 48.470949963000173 ], [ -123.518106041999957, 48.470680080000086 ], [ -123.518917756999926, 48.470676423000107 ], [ -123.518906750999975, 48.46959689400007 ], [ -123.519312600000021, 48.469595063000043 ], [ -123.519309844999967, 48.469325181000094 ], [ -123.519715692999938, 48.469323349 ], [ -123.519712935999948, 48.469053467000066 ], [ -123.520118780999951, 48.469051634000095 ], [ -123.520116022999943, 48.468781750000105 ], [ -123.522956920999917, 48.468768877000123 ], [ -123.522952301999922, 48.46831932400007 ], [ -123.517984526999911, 48.468203090000074 ], [ -123.518004215999966, 48.467828259000044 ], [ -123.517830343999904, 48.467824187000076 ], [ -123.517921296999972, 48.466092699000058 ], [ -123.516841874999955, 48.466097552000058 ], [ -123.516839131999987, 48.465827670000117 ], [ -123.516027494999918, 48.465831312000034 ], [ -123.516027184999984, 48.465800773000083 ], [ -123.52497232199994, 48.465094744000098 ], [ -123.524900903999963, 48.466458273000079 ], [ -123.524708231999981, 48.466453773000119 ], [ -123.524686336999977, 48.466871742000066 ], [ -123.524966646999928, 48.466870464000102 ], [ -123.524963863999972, 48.466600581000144 ], [ -123.526181338999947, 48.466595022000064 ], [ -123.526184129999933, 48.466864904000012 ], [ -123.526589955999924, 48.466863048000093 ], [ -123.526592748999974, 48.467132930000041 ], [ -123.526998576999958, 48.467131072000022 ], [ -123.527004166999944, 48.467670837000121 ], [ -123.52741, 48.467668978000049 ], [ -123.527415592999972, 48.468208742000058 ], [ -123.527821429999989, 48.468206881000086 ], [ -123.52782423099994, 48.468476764000066 ], [ -123.528230068999946, 48.468474901000071 ], [ -123.52823567199998, 48.469014666000092 ], [ -123.528641516000036, 48.469012802000044 ], [ -123.528652727999926, 48.470092330000071 ], [ -123.529464432999973, 48.470088599000107 ], [ -123.529472856999973, 48.470898244000068 ], [ -123.529188439000023, 48.470899553000059 ], [ -123.529066997999948, 48.470900111000063 ], [ -123.529069804999921, 48.471169993000025 ], [ -123.52926779199997, 48.471169082000074 ], [ -123.529475665999911, 48.471168126000066 ], [ -123.529484088999979, 48.471977772000031 ], [ -123.529078221999939, 48.471979638000057 ], [ -123.52908102799995, 48.47224952000014 ], [ -123.528675156999924, 48.472251385000035 ], [ -123.528677959999953, 48.472521266000065 ], [ -123.528272088999969, 48.472523130000127 ], [ -123.528274889999949, 48.472793013000057 ], [ -123.527463141999959, 48.472796736000092 ], [ -123.527477128999962, 48.474146144000045 ], [ -123.528694784999956, 48.47414055800003 ], [ -123.528697588999961, 48.474410439000053 ], [ -123.529103475999946, 48.474408574000044 ], [ -123.529109086999966, 48.474948338000033 ], [ -123.529514978999927, 48.474946471000081 ], [ -123.529517787999922, 48.475216352000075 ], [ -123.529923680999957, 48.475214484000155 ], [ -123.529926491999987, 48.475484366000082 ], [ -123.530738283999966, 48.475480625000074 ], [ -123.530735467999975, 48.475210744000059 ], [ -123.531547253999946, 48.475206998000012 ], [ -123.53154443699999, 48.474937116000021 ], [ -123.531950326999947, 48.474935241000018 ], [ -123.531947505999952, 48.474665359000014 ], [ -123.532353393999955, 48.474663483000015 ], [ -123.532350570999981, 48.474393600000091 ], [ -123.535191776999966, 48.474380424000039 ], [ -123.535192934999898, 48.474490453000065 ], [ -123.535193894, 48.474581736000054 ], [ -123.535200292999903, 48.475190069000114 ], [ -123.534794399999939, 48.475191956000053 ], [ -123.534797237999953, 48.475461837000125 ], [ -123.533173655999988, 48.475469370000063 ], [ -123.533176483999924, 48.475739251000071 ], [ -123.532770585999913, 48.475741130000053 ], [ -123.532773412999958, 48.476011012000122 ], [ -123.532367512999926, 48.47601289000005 ], [ -123.532370336999961, 48.476282772000047 ], [ -123.531964433999974, 48.47628464800011 ], [ -123.531967255999945, 48.476554530000016 ], [ -123.532373158999945, 48.476552653000077 ], [ -123.532375982999909, 48.47682253500011 ], [ -123.532781888999949, 48.476820656000029 ], [ -123.532779063999925, 48.476550775000121 ], [ -123.534808583999919, 48.476541363000095 ], [ -123.534817092999987, 48.477351007000053 ], [ -123.53400527300002, 48.477354776000027 ], [ -123.534008104999955, 48.477624656000039 ], [ -123.533196279999942, 48.477628421000098 ], [ -123.533199107999906, 48.477898302000071 ], [ -123.53238728, 48.477902060000055 ], [ -123.532390102999955, 48.478171941000063 ], [ -123.531172353, 48.478177569000074 ], [ -123.531166716999977, 48.477637805000022 ], [ -123.530760803999954, 48.477639677000113 ], [ -123.530757989, 48.477369795000087 ], [ -123.530352078999954, 48.477371668000082 ], [ -123.530343639999955, 48.47656202400006 ], [ -123.529531831999961, 48.476565761000067 ], [ -123.529540256999951, 48.477375405000032 ], [ -123.527916613999977, 48.477382864000049 ], [ -123.527905413999946, 48.476303338000079 ], [ -123.527499510999988, 48.476305198000027 ], [ -123.527491118999976, 48.475495553000016 ], [ -123.52708522199994, 48.475497413000078 ], [ -123.527082427000011, 48.475227531000058 ], [ -123.526676531999939, 48.475229389000098 ], [ -123.52669608699992, 48.477118561000133 ], [ -123.527101997999964, 48.477116703000029 ], [ -123.527104792999964, 48.477386585000083 ], [ -123.527510703999923, 48.477384725000029 ], [ -123.527521894999936, 48.478464252000038 ], [ -123.526710056999917, 48.4784679690001 ], [ -123.526712849999939, 48.478737852000066 ], [ -123.525995991999963, 48.478741130000039 ], [ -123.525901006999973, 48.47874156300005 ], [ -123.525902435999953, 48.47887982900005 ], [ -123.525701323999968, 48.478761066000111 ], [ -123.52468373799995, 48.478701073000096 ] ], [ [ -123.525030678999926, 48.473077753000091 ], [ -123.525436556999921, 48.473075900000055 ], [ -123.525433770999925, 48.472806018000057 ], [ -123.525839643999944, 48.472804164000053 ], [ -123.525834067999966, 48.472264401000096 ], [ -123.52664580699999, 48.47226068900008 ], [ -123.52664301499999, 48.471990807000083 ], [ -123.527048883999967, 48.471988949000021 ], [ -123.527046086999945, 48.47171906800007 ], [ -123.527451952999954, 48.471717208000037 ], [ -123.527446358999896, 48.471177444 ], [ -123.526634635999969, 48.471181161000032 ], [ -123.526631843999922, 48.470911279000063 ], [ -123.526225982999946, 48.470913136000028 ], [ -123.52622319299995, 48.470643254 ], [ -123.52581733699995, 48.470645108000028 ], [ -123.525814548999904, 48.470375226000066 ], [ -123.525408692999974, 48.470377080000027 ], [ -123.52540312, 48.469837316000032 ], [ -123.524997268999954, 48.469839168000128 ], [ -123.52500005399996, 48.470109050000147 ], [ -123.524188347999925, 48.470112750000062 ], [ -123.524191126999966, 48.470382631000078 ], [ -123.523379415999912, 48.470386326000039 ], [ -123.523382191999971, 48.470656208000065 ], [ -123.522976333999907, 48.470658053000086 ], [ -123.522979107999987, 48.470927935000113 ], [ -123.522573248999976, 48.470929778000091 ], [ -123.522576019999946, 48.471199660000103 ], [ -123.523387741999954, 48.471195972000061 ], [ -123.52339051899996, 48.471465855000083 ], [ -123.523796381999958, 48.47146400800009 ], [ -123.523799160999943, 48.471733889000092 ], [ -123.524610892999974, 48.47173019300002 ], [ -123.524613673999966, 48.472000076000029 ], [ -123.525019543, 48.471998224000089 ], [ -123.525030678999926, 48.473077753000091 ], [ -123.523813049999916, 48.473083300000042 ], [ -123.523810270999959, 48.472813418000044 ], [ -123.52340439699999, 48.472815264000097 ], [ -123.523415499999928, 48.473894793000085 ], [ -123.523821383999945, 48.473892946000035 ], [ -123.523818605999949, 48.473623064 ], [ -123.524224486999955, 48.473621216000076 ], [ -123.52422170599999, 48.473351334000014 ], [ -123.52503346499995, 48.473347634000042 ], [ -123.525030678999926, 48.473077753000091 ] ], [ [ -123.511655309999966, 48.474986297000058 ], [ -123.511653007999911, 48.474757367000052 ], [ -123.511247117999943, 48.474759171000088 ], [ -123.511244404999957, 48.474489289000083 ], [ -123.511026577999957, 48.474490256000067 ], [ -123.511001253999922, 48.474970940000034 ], [ -123.511655309999966, 48.474986297000058 ] ], [ [ -123.510816843999976, 48.472332031000057 ], [ -123.510789753999916, 48.46963320400009 ], [ -123.510383903999966, 48.469635005000058 ], [ -123.51038661099993, 48.469904887000084 ], [ -123.509980758, 48.469906686000115 ], [ -123.509996985999948, 48.471525983000042 ], [ -123.509591119999953, 48.471527781000106 ], [ -123.509593821999971, 48.471797663000068 ], [ -123.509116558999963, 48.471799775000065 ], [ -123.509108366999939, 48.4719551580001 ], [ -123.510460154999976, 48.471986920000084 ], [ -123.510441882999984, 48.472333694000021 ], [ -123.510816843999976, 48.472332031000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128412083", "BldgCostT": "88088333", "sL_LossRatio": "0.937752696602707", "sL_AssetLoss": "247381.64", "sL_BldgLoss": "231982.8", "sL_StrLoss": "188514.2", "sL_NStrLoss": "43468.6", "sL_ContLoss": "15398.84", "geom_point": "0101000020E6100000F50D86199EE35EC0AAED0D5B863A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.553265521999947, 48.458931964000058 ], [ -123.553195144999947, 48.458022345000074 ], [ -123.553194328999922, 48.458013301000072 ], [ -123.553167808999959, 48.457715095000047 ], [ -123.553141653999958, 48.457392066000075 ], [ -123.553134096999941, 48.457298689000019 ], [ -123.55297260699993, 48.457288584 ], [ -123.552890655999946, 48.456311043000056 ], [ -123.552849905999949, 48.455825068000053 ], [ -123.552783600999959, 48.454628786000114 ], [ -123.552884527999936, 48.454374134000041 ], [ -123.552992881999941, 48.454289167000063 ], [ -123.555011560999972, 48.454561609000102 ], [ -123.556645985000017, 48.454996589000068 ], [ -123.558144683999899, 48.455710314000058 ], [ -123.561688047999951, 48.458213519000033 ], [ -123.562314783999923, 48.458529467000027 ], [ -123.563880814999933, 48.458944445000064 ], [ -123.564246185999977, 48.458970749000081 ], [ -123.564249337999968, 48.459255162 ], [ -123.563421938999937, 48.459078326000025 ], [ -123.561903085999944, 48.458944984000041 ], [ -123.56143360599998, 48.458928194000066 ], [ -123.561419684000029, 48.458929467000118 ], [ -123.561211191999988, 48.458948408000055 ], [ -123.560939927999954, 48.45897296200009 ], [ -123.560735103999946, 48.458991508000082 ], [ -123.560166652999953, 48.458964876 ], [ -123.55954579199998, 48.458935812000107 ], [ -123.559334417999978, 48.458925903000107 ], [ -123.55839977699999, 48.458763708000035 ], [ -123.55835760099994, 48.45875640700006 ], [ -123.557919945999956, 48.458719270000053 ], [ -123.557555094999941, 48.458688305000173 ], [ -123.557113851999972, 48.458739004000044 ], [ -123.557032196999913, 48.458748410000069 ], [ -123.557024396999978, 48.458750298000034 ], [ -123.556658989999974, 48.458838994000097 ], [ -123.556536493999957, 48.459014689000107 ], [ -123.556144909999944, 48.459330211000086 ], [ -123.556057749999965, 48.459381332000113 ], [ -123.555858834999952, 48.459497987000162 ], [ -123.555553085999961, 48.459677287000034 ], [ -123.555350493999939, 48.459757414000158 ], [ -123.555125798999981, 48.45976839700009 ], [ -123.554498998, 48.459620494000028 ], [ -123.553607514999982, 48.459393401000078 ], [ -123.553182824999965, 48.459224911000014 ], [ -123.553211532999953, 48.459010074000105 ], [ -123.553265521999947, 48.458931964000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130477478", "BldgCostT": "84204857", "sL_LossRatio": "0.81830859260439", "sL_AssetLoss": "514873", "sL_BldgLoss": "421325", "sL_StrLoss": "261690", "sL_NStrLoss": "159635", "sL_ContLoss": "93548", "geom_point": "0101000020E61000004057B66A32E35EC0AF857205883A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.54963253299999, 48.459946279000057 ], [ -123.549353203999928, 48.459032706000094 ], [ -123.54881491499998, 48.459102298000104 ], [ -123.548352911999984, 48.459108802000053 ], [ -123.5478408, 48.459012105000113 ], [ -123.547443698, 48.458860502000078 ], [ -123.547139083000019, 48.458693801000074 ], [ -123.546792902, 48.458391891000069 ], [ -123.546570698999972, 48.458017006000063 ], [ -123.546563277999937, 48.457924314000131 ], [ -123.546543707999916, 48.457679206000087 ], [ -123.546616813999947, 48.457364388000052 ], [ -123.547474704, 48.455790903000036 ], [ -123.54784038599999, 48.455115905000092 ], [ -123.548013101999913, 48.454935988000017 ], [ -123.54811415599994, 48.454869023000086 ], [ -123.548256416999948, 48.454774806000039 ], [ -123.548586987999983, 48.454646294000035 ], [ -123.548962700999965, 48.454561190000028 ], [ -123.549362890999973, 48.454549709000098 ], [ -123.549736804999966, 48.454601607000058 ], [ -123.550082114999924, 48.454710607000031 ], [ -123.550480807999961, 48.45496329300002 ], [ -123.551051699999945, 48.455409293000073 ], [ -123.551238898999941, 48.455521791000088 ], [ -123.551758001999985, 48.455715974000121 ], [ -123.552270297999925, 48.455807172000036 ], [ -123.552849905999949, 48.455825068000053 ], [ -123.552890655999946, 48.456311043000056 ], [ -123.55297260699993, 48.457288584 ], [ -123.553134096999941, 48.457298689000019 ], [ -123.553141653999958, 48.457392066000075 ], [ -123.553167808999959, 48.457715095000047 ], [ -123.553194328999922, 48.458013301000072 ], [ -123.553195144999947, 48.458022345000074 ], [ -123.553265521999947, 48.458931964000058 ], [ -123.553211532999953, 48.459010074000105 ], [ -123.553182824999965, 48.459224911000014 ], [ -123.552833435999958, 48.459142918000055 ], [ -123.552514344, 48.45913907100006 ], [ -123.552424519999988, 48.459138002000032 ], [ -123.552064700999949, 48.459177400000094 ], [ -123.551817007999944, 48.459216807000118 ], [ -123.551572690999933, 48.459294098000065 ], [ -123.551120022999939, 48.459561402000162 ], [ -123.550790470999971, 48.459719170000042 ], [ -123.55073379699995, 48.459746297000038 ], [ -123.550623852999976, 48.459776697000066 ], [ -123.55045568299991, 48.459823201000098 ], [ -123.550396807999931, 48.459839477000074 ], [ -123.54963253299999, 48.459946279000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103383252", "BldgCostT": "67615002", "sL_LossRatio": "0.969608471916848", "sL_AssetLoss": "89575.95", "sL_BldgLoss": "86853.6", "sL_StrLoss": "75883.9", "sL_NStrLoss": "10969.7", "sL_ContLoss": "2722.35", "geom_point": "0101000020E61000001656434549E45EC0F0591114C3364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.56505124099999, 48.432890333000095 ], [ -123.565092174999933, 48.432095333000085 ], [ -123.563947548999977, 48.432069006000084 ], [ -123.564002950999964, 48.430993461000135 ], [ -123.563139284999963, 48.430973588000057 ], [ -123.563257643, 48.428676466000098 ], [ -123.561050144999939, 48.428625639000053 ], [ -123.561198048999955, 48.425757388000108 ], [ -123.561227171, 48.425192606000074 ], [ -123.561235917000019, 48.425022981000062 ], [ -123.5617118099999, 48.425033942000013 ], [ -123.561796084999941, 48.423399089000036 ], [ -123.565271847999924, 48.423479083000089 ], [ -123.565295751999884, 48.423014690000102 ], [ -123.566146144, 48.423257606000035 ], [ -123.571500478999937, 48.424726115000112 ], [ -123.571694081999965, 48.424822573 ], [ -123.571681701999921, 48.425063733000101 ], [ -123.571957726999969, 48.425070063000099 ], [ -123.571929342999937, 48.425622962000084 ], [ -123.572578536999984, 48.425637849000047 ], [ -123.572546757999987, 48.426257042000053 ], [ -123.573035157999968, 48.42626823900013 ], [ -123.573019627999884, 48.426570875000074 ], [ -123.572910954999941, 48.428688587000082 ], [ -123.572960901999934, 48.428689732000038 ], [ -123.571628290999939, 48.430019757000068 ], [ -123.570184217999966, 48.431460933000089 ], [ -123.569809443999944, 48.431834993000102 ], [ -123.56939037399998, 48.432359008000013 ], [ -123.571014425999948, 48.4322875370001 ], [ -123.571001152999912, 48.432545947000108 ], [ -123.570466841999959, 48.432533689000088 ], [ -123.57044215799999, 48.43301416000007 ], [ -123.56680672499999, 48.432930686000063 ], [ -123.56505124099999, 48.432890333000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287667", "BldgCostT": "3646667", "sL_LossRatio": "0.965678268549099", "sL_AssetLoss": "8265.9", "sL_BldgLoss": "7982.2", "sL_StrLoss": "6713.4", "sL_NStrLoss": "1268.8", "sL_ContLoss": "283.7", "geom_point": "0101000020E61000001E98480EFDE15EC0752F41576C384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.527432906999977, 48.442290792000108 ], [ -123.52793598, 48.441959891000089 ], [ -123.528453852999974, 48.441671225000029 ], [ -123.528546284999919, 48.44161971500008 ], [ -123.528925649999962, 48.441342956000028 ], [ -123.52900371199999, 48.441285989000079 ], [ -123.529356119999989, 48.441027993000056 ], [ -123.529806880999928, 48.440697984000053 ], [ -123.529883522999953, 48.440641910000089 ], [ -123.530018929999983, 48.440504390000044 ], [ -123.53042361699994, 48.440267513000023 ], [ -123.530752211999939, 48.440195028000069 ], [ -123.531222577999984, 48.440091233000054 ], [ -123.531535397999974, 48.440022202000065 ], [ -123.531872096999976, 48.43992641200002 ], [ -123.532188798999968, 48.439836308000032 ], [ -123.53267704699999, 48.439557322000049 ], [ -123.533128513999955, 48.439414507000052 ], [ -123.533201499999947, 48.439380068000077 ], [ -123.533203522999955, 48.439573141000025 ], [ -123.533609130999963, 48.439571262000108 ], [ -123.533617610999926, 48.440380911000034 ], [ -123.533211994999988, 48.440382791000111 ], [ -123.53321764499999, 48.440922557000064 ], [ -123.531189544999947, 48.440931937000052 ], [ -123.531194739999947, 48.441430139000069 ], [ -123.531195172999958, 48.441471702000037 ], [ -123.530383923999977, 48.44147544500008 ], [ -123.530386733999961, 48.441745327000056 ], [ -123.529981105999951, 48.441747196000087 ], [ -123.529983900999952, 48.44201574900012 ], [ -123.529966097999989, 48.442017161000159 ], [ -123.529172655999943, 48.442020812000138 ], [ -123.529173085999943, 48.442062261000075 ], [ -123.528957373999944, 48.442062790000087 ], [ -123.528524906, 48.442048490000026 ], [ -123.52817258399989, 48.442019770000023 ], [ -123.528104153999948, 48.44204842200002 ], [ -123.527100495999932, 48.442468804000086 ], [ -123.527194288999951, 48.442418584000094 ], [ -123.527432906999977, 48.442290792000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20269584", "BldgCostT": "12008334", "sL_LossRatio": "0.97348237242341", "sL_AssetLoss": "9178.8", "sL_BldgLoss": "8935.4", "sL_StrLoss": "7862.5", "sL_NStrLoss": "1072.9", "sL_ContLoss": "243.4", "geom_point": "0101000020E6100000B194FAEC9FE35EC0A9ADC7331E3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.553414959999941, 48.453906673000105 ], [ -123.553602340999959, 48.453540067000091 ], [ -123.553707834999955, 48.453333669000131 ], [ -123.553939166999939, 48.45296999800005 ], [ -123.555253437999966, 48.452963664000102 ], [ -123.555256378999957, 48.453233546000099 ], [ -123.556473529999948, 48.453227667000064 ], [ -123.556476479, 48.453497548000094 ], [ -123.55728791599999, 48.453493622000025 ], [ -123.557290867999939, 48.453763504000094 ], [ -123.557696588999974, 48.453761538000087 ], [ -123.557687722999944, 48.452951894000087 ], [ -123.559310578999927, 48.452944019000078 ], [ -123.559316506999949, 48.453483781000031 ], [ -123.559543216999955, 48.453482679000025 ], [ -123.559714061999969, 48.453481849000056 ], [ -123.558630448999949, 48.455018727000073 ], [ -123.558223838999936, 48.455625542000114 ], [ -123.558144683999899, 48.455710314000058 ], [ -123.556645985000017, 48.454996589000068 ], [ -123.555011560999972, 48.454561609000102 ], [ -123.552992881999941, 48.454289167000063 ], [ -123.553414959999941, 48.453906673000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77513667", "BldgCostT": "48386667", "sL_LossRatio": "0.760635272508405", "sL_AssetLoss": "95416.69", "sL_BldgLoss": "72577.3", "sL_StrLoss": "51734.8", "sL_NStrLoss": "20842.5", "sL_ContLoss": "22839.39", "geom_point": "0101000020E6100000838D36B717E35EC025609E42EC384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.553451493999887, 48.449078900000075 ], [ -123.55332998199998, 48.448819107000055 ], [ -123.553177514999931, 48.448662302000116 ], [ -123.552767295999928, 48.448365546000012 ], [ -123.552681811999932, 48.448303698000075 ], [ -123.55261179199999, 48.44822090400006 ], [ -123.55255809099998, 48.447824795000031 ], [ -123.55142588199999, 48.447534415000099 ], [ -123.548730107999944, 48.446239396000131 ], [ -123.547483488999944, 48.445735294000094 ], [ -123.546085098, 48.444983407000123 ], [ -123.545633406999968, 48.444792593000074 ], [ -123.545113503999943, 48.444537097000136 ], [ -123.544564303999948, 48.444327802000025 ], [ -123.544096497999988, 48.444186212 ], [ -123.543476703999957, 48.444036509000071 ], [ -123.542154098999916, 48.44388050000007 ], [ -123.541550900999937, 48.443861266000106 ], [ -123.54155135699996, 48.443852500000055 ], [ -123.541311404999945, 48.443853628000113 ], [ -123.541012817999942, 48.443844105000011 ], [ -123.540933068999948, 48.4438554070001 ], [ -123.539862968999969, 48.443860431000061 ], [ -123.539738642999978, 48.443826218000041 ], [ -123.539736151999961, 48.443591130000122 ], [ -123.539330510999974, 48.443593031000049 ], [ -123.539327653999962, 48.443323149000094 ], [ -123.538922015, 48.443325050000105 ], [ -123.53891345, 48.442515402000033 ], [ -123.539319081999977, 48.442513501000043 ], [ -123.53931051, 48.441703853000021 ], [ -123.541338637999928, 48.441694330000061 ], [ -123.54134150699997, 48.441964213000041 ], [ -123.541649618999969, 48.441962763000092 ], [ -123.541653561999908, 48.441886953000022 ], [ -123.543775094999958, 48.441936176000091 ], [ -123.543766628999961, 48.441143090000033 ], [ -123.545389114, 48.441135413000147 ], [ -123.545392001999986, 48.441405295000052 ], [ -123.547420116999916, 48.44139566500013 ], [ -123.547423016999971, 48.441665547000049 ], [ -123.548234267999959, 48.441661686000096 ], [ -123.548237171999943, 48.441931568000044 ], [ -123.548642797999889, 48.441929634000061 ], [ -123.548645704999956, 48.442199517000077 ], [ -123.549051332999966, 48.442197583000038 ], [ -123.549062191999965, 48.44320508900006 ], [ -123.550173097999931, 48.443230791000083 ], [ -123.55013716699996, 48.44392419600009 ], [ -123.553196430999932, 48.443994914 ], [ -123.553078335999942, 48.44627667600011 ], [ -123.555213922999954, 48.446325989000066 ], [ -123.555989067999917, 48.446343878000079 ], [ -123.55627278299994, 48.44648870200011 ], [ -123.55657341099996, 48.446757803000075 ], [ -123.556671405999978, 48.447216401000048 ], [ -123.556445794999902, 48.44747850800006 ], [ -123.555905308999954, 48.44765079000009 ], [ -123.555704691999907, 48.447814597000075 ], [ -123.555379686000023, 48.447734800000028 ], [ -123.55495571799996, 48.448636406000077 ], [ -123.555123207999927, 48.449005209000113 ], [ -123.554974978999894, 48.449067896000081 ], [ -123.554728711999985, 48.44888990500003 ], [ -123.554634115999946, 48.448908405000033 ], [ -123.554526115999977, 48.448916898000057 ], [ -123.554794398999945, 48.449798507000089 ], [ -123.555122270999945, 48.450548213000019 ], [ -123.553264431999963, 48.450505319000115 ], [ -123.553264793999958, 48.450469500000096 ], [ -123.553466405999984, 48.449522904000112 ], [ -123.553484205999908, 48.449230299000128 ], [ -123.553451493999887, 48.449078900000075 ] ], [ [ -123.547439155999896, 48.443167519000028 ], [ -123.547434618999944, 48.442745078 ], [ -123.547007299999933, 48.442747109000052 ], [ -123.547000918999942, 48.442870095000032 ], [ -123.54732778199994, 48.442877664000044 ], [ -123.547312896999955, 48.443164594000116 ], [ -123.547439155999896, 48.443167519000028 ] ], [ [ -123.544586592999906, 48.441954992 ], [ -123.544586526, 48.441948902000036 ], [ -123.544368408999944, 48.441949934000071 ], [ -123.544586592999906, 48.441954992 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307336085", "BldgCostT": "205128335", "sL_LossRatio": "0.889539736656478", "sL_AssetLoss": "680480", "sL_BldgLoss": "605314", "sL_StrLoss": "444441", "sL_NStrLoss": "160873", "sL_ContLoss": "75166", "geom_point": "0101000020E6100000E90ECE4C95E25EC0775AD0DE0D364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.537696022999938, 48.431915497000013 ], [ -123.538126625999922, 48.431054140000057 ], [ -123.537811714000014, 48.431114899000107 ], [ -123.537662290999961, 48.43115935600013 ], [ -123.537586877999928, 48.43118179400004 ], [ -123.537203194, 48.431218 ], [ -123.536785796999965, 48.431201011000077 ], [ -123.536559301999958, 48.431197596000068 ], [ -123.536334208999932, 48.431192303000032 ], [ -123.536080010999925, 48.431229692000088 ], [ -123.535175889999934, 48.431540493000028 ], [ -123.535011998999948, 48.431320301 ], [ -123.534505289, 48.431023510000038 ], [ -123.53431990899999, 48.43080099600013 ], [ -123.534650081999985, 48.43067969600002 ], [ -123.535042519999962, 48.429699606000028 ], [ -123.535082846999899, 48.42959797700005 ], [ -123.535337598999959, 48.428956298000031 ], [ -123.53547098099996, 48.428653870000083 ], [ -123.536009239999913, 48.427433455000042 ], [ -123.536168214, 48.427072950000102 ], [ -123.536634200999984, 48.42601627900013 ], [ -123.536683897999978, 48.42590358500015 ], [ -123.535035261999965, 48.425589337000062 ], [ -123.534817455, 48.425547830000077 ], [ -123.53386431399997, 48.425366148000052 ], [ -123.533003623999903, 48.425202049000077 ], [ -123.533178563999968, 48.424822857000024 ], [ -123.532586884999944, 48.424708091000078 ], [ -123.532687681999946, 48.424457027000052 ], [ -123.532706978999983, 48.423725275000024 ], [ -123.532927685999965, 48.422700605000045 ], [ -123.532988815999914, 48.421994163000129 ], [ -123.532990391999945, 48.421685859000057 ], [ -123.532992921999934, 48.42119298300004 ], [ -123.532995028999949, 48.42077732000012 ], [ -123.533000356999963, 48.419734727000098 ], [ -123.53300073399997, 48.419662932000108 ], [ -123.533003459999975, 48.419126924000075 ], [ -123.533039215999978, 48.418319263000079 ], [ -123.533090875999946, 48.417152195000043 ], [ -123.533102282999934, 48.416894697000011 ], [ -123.533098195999969, 48.416146096000034 ], [ -123.533077389000013, 48.415246139000011 ], [ -123.533069481999931, 48.414904220000068 ], [ -123.533048061, 48.413977532000061 ], [ -123.53304349299999, 48.413780404000128 ], [ -123.533058988, 48.413716124000061 ], [ -123.533136483999925, 48.413394801000081 ], [ -123.533444695999947, 48.413122400000049 ], [ -123.53373887, 48.412982841000066 ], [ -123.533882227999982, 48.412914833000066 ], [ -123.534011710999948, 48.412853391000112 ], [ -123.534878347999964, 48.412451564000023 ], [ -123.536191944000038, 48.411779673000048 ], [ -123.536250677999988, 48.411757835000081 ], [ -123.537487533999979, 48.411297618000035 ], [ -123.537994860999945, 48.411056883000093 ], [ -123.538161565999985, 48.410977758000115 ], [ -123.538652450999948, 48.410744805000029 ], [ -123.538951702999938, 48.410602797000116 ], [ -123.539112401999944, 48.41052651600009 ], [ -123.539288427999978, 48.410383618000047 ], [ -123.539635047999951, 48.410020160000037 ], [ -123.540069688999921, 48.409339334000038 ], [ -123.540138091999921, 48.409232147000061 ], [ -123.540166212999907, 48.409190429000013 ], [ -123.541159572999931, 48.40919769400012 ], [ -123.543553005999982, 48.409215144000051 ], [ -123.543253862999961, 48.409844273 ], [ -123.542465802, 48.411463600000012 ], [ -123.542348388999926, 48.411460874000078 ], [ -123.542334199999914, 48.411734008000096 ], [ -123.541364299999941, 48.413726792000048 ], [ -123.540920743999934, 48.415095005000147 ], [ -123.539127038999965, 48.415053317000059 ], [ -123.539123040999982, 48.415130186000084 ], [ -123.536990092999957, 48.415080574000136 ], [ -123.536924277999944, 48.416344715 ], [ -123.537825859999899, 48.416340505000058 ], [ -123.537837246999942, 48.417420041000106 ], [ -123.536877607999884, 48.417424522000076 ], [ -123.536835437999969, 48.41823441100005 ], [ -123.537034909999974, 48.41823348 ], [ -123.537035068999927, 48.418248627000025 ], [ -123.538694248999931, 48.418287220000146 ], [ -123.538687640999953, 48.418414222000045 ], [ -123.53939643199999, 48.418430701000041 ], [ -123.539373040999962, 48.41888039600012 ], [ -123.539940638999937, 48.418893589000049 ], [ -123.539913969999986, 48.419406413000097 ], [ -123.544791897000025, 48.419519663000067 ], [ -123.544708886999928, 48.421118957000054 ], [ -123.544639307999972, 48.422459400000051 ], [ -123.54465977699999, 48.422459875000051 ], [ -123.544643206, 48.422779100000106 ], [ -123.544563669999903, 48.42431124800008 ], [ -123.54801726599996, 48.424391292000038 ], [ -123.548006555999947, 48.424597908000116 ], [ -123.548039718000027, 48.424598676000109 ], [ -123.548041061999967, 48.424572755000035 ], [ -123.550638457999952, 48.424632880000061 ], [ -123.55308811, 48.424689526000037 ], [ -123.553430984999977, 48.42469745000006 ], [ -123.553244620999948, 48.428300096000022 ], [ -123.551895408999897, 48.428268909000018 ], [ -123.551894066, 48.428294830000056 ], [ -123.549830405999955, 48.428247093000017 ], [ -123.549803012000012, 48.42877588100005 ], [ -123.548627862, 48.428748679000115 ], [ -123.548617073999964, 48.428956808000052 ], [ -123.544870413999917, 48.428869997000106 ], [ -123.544845547999955, 48.429349 ], [ -123.544345130999929, 48.429337395000097 ], [ -123.544281890999954, 48.430555310000081 ], [ -123.543812432999985, 48.430544421000029 ], [ -123.543811272999989, 48.430566721000034 ], [ -123.543390091999925, 48.430556950000032 ], [ -123.543388758999967, 48.430582632000025 ], [ -123.53878612599999, 48.43047574600012 ], [ -123.538793574999929, 48.431180313000098 ], [ -123.538388032999976, 48.431182211000092 ], [ -123.53839088399998, 48.431452095000083 ], [ -123.537985338999974, 48.431453992000044 ], [ -123.53798543100001, 48.431462746000086 ], [ -123.53809963799992, 48.4315814610001 ], [ -123.538103638999957, 48.431669861000046 ], [ -123.537696022999938, 48.431915497000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1898750", "BldgCostT": "1100000", "sL_LossRatio": "0.425982989131308", "sL_AssetLoss": "8716.78", "sL_BldgLoss": "3713.2", "sL_StrLoss": "715", "sL_NStrLoss": "2998.2", "sL_ContLoss": "5003.58", "geom_point": "0101000020E6100000CDF097FD97E35EC05AF2363EAC394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.55564148299996, 48.451342417000077 ], [ -123.555638462999966, 48.451065579000087 ], [ -123.555714406999925, 48.451080283000067 ], [ -123.555942193999925, 48.45102479300003 ], [ -123.555950694, 48.450449402000125 ], [ -123.555715282999984, 48.449990792000079 ], [ -123.555144591999962, 48.449705902000041 ], [ -123.555262710999969, 48.449480892000096 ], [ -123.555736708999945, 48.449577788000042 ], [ -123.556227903999968, 48.449962308000096 ], [ -123.556392503999945, 48.450177386000043 ], [ -123.556207086999962, 48.450448002000101 ], [ -123.556747704999935, 48.450445108000032 ], [ -123.556876849, 48.450588694000032 ], [ -123.556850402999956, 48.450588084000067 ], [ -123.556858586999979, 48.451336534000077 ], [ -123.55564148299996, 48.451342417000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161447167", "BldgCostT": "96846667", "sL_LossRatio": "0.878020701668755", "sL_AssetLoss": "277077.18", "sL_BldgLoss": "243279.5", "sL_StrLoss": "165979.5", "sL_NStrLoss": "77300", "sL_ContLoss": "33797.68", "geom_point": "0101000020E6100000AAB3420DF6E15EC07372AF61C0374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.526099087999938, 48.433604796000068 ], [ -123.526542197999902, 48.433620595000114 ], [ -123.526979196999932, 48.433522593000113 ], [ -123.529550501999921, 48.432499582000098 ], [ -123.530132026, 48.433223697000138 ], [ -123.530335505999943, 48.433359196000062 ], [ -123.53057450699994, 48.433407185000092 ], [ -123.530776998999954, 48.433405586000042 ], [ -123.531040413999975, 48.433348602000066 ], [ -123.531440785, 48.433173105000066 ], [ -123.53166628799994, 48.433041303 ], [ -123.531813017, 48.432893202000045 ], [ -123.531999625, 48.432602699000057 ], [ -123.532196986999935, 48.432439611000092 ], [ -123.532291204999979, 48.432399930000031 ], [ -123.532515704999966, 48.43230539700005 ], [ -123.533043514999946, 48.432250085000064 ], [ -123.53328240699993, 48.432222299000138 ], [ -123.533961779, 48.431975692000073 ], [ -123.535175889999934, 48.431540493000028 ], [ -123.536080010999925, 48.431229692000088 ], [ -123.536334208999932, 48.431192303000032 ], [ -123.536559301999958, 48.431197596000068 ], [ -123.536785796999965, 48.431201011000077 ], [ -123.537203194, 48.431218 ], [ -123.537586877999928, 48.43118179400004 ], [ -123.537662290999961, 48.43115935600013 ], [ -123.537811714000014, 48.431114899000107 ], [ -123.538126625999922, 48.431054140000057 ], [ -123.537696022999938, 48.431915497000013 ], [ -123.537645138999963, 48.431946161000013 ], [ -123.537585246999981, 48.431972773000041 ], [ -123.53758548899999, 48.431995653000058 ], [ -123.537533203999928, 48.431995897000085 ], [ -123.53718157, 48.43215214100006 ], [ -123.537182784999956, 48.43226743000011 ], [ -123.536919329999961, 48.432268660000055 ], [ -123.536777889999911, 48.432331507000065 ], [ -123.536780076999918, 48.432539207000026 ], [ -123.536374524999928, 48.432541098000037 ], [ -123.536377364999979, 48.43281098100001 ], [ -123.535691560999965, 48.432814176000093 ], [ -123.535163138999948, 48.433048952000028 ], [ -123.53516353299996, 48.433086529000072 ], [ -123.535077662999953, 48.433086928000122 ], [ -123.535074437999924, 48.433088361000102 ], [ -123.534759036999972, 48.433189391000042 ], [ -123.534760807999987, 48.433358298000051 ], [ -123.534292582999967, 48.433360472000082 ], [ -123.533955337999984, 48.433506561000087 ], [ -123.533951216999981, 48.433507937000101 ], [ -123.533952516999975, 48.433631948 ], [ -123.533574430999948, 48.433633701000119 ], [ -123.533547049999981, 48.433642841000044 ], [ -123.533549778999941, 48.43390371200006 ], [ -123.532754426999972, 48.433907397000063 ], [ -123.532738705999975, 48.433912644000131 ], [ -123.532741472999973, 48.434177354000028 ], [ -123.531934410999966, 48.43418108700007 ], [ -123.531930353999911, 48.434182441000054 ], [ -123.531933157999916, 48.434450989000027 ], [ -123.531527589999925, 48.434452863000139 ], [ -123.53153040499997, 48.434722746 ], [ -123.529908120999977, 48.434730228000049 ], [ -123.529905314999951, 48.434460345000062 ], [ -123.529499746999988, 48.434462212000078 ], [ -123.529496941999966, 48.434192328000101 ], [ -123.528685809, 48.43419605800004 ], [ -123.528683007999945, 48.433926174000177 ], [ -123.528380012999946, 48.433927566000165 ], [ -123.52787387599993, 48.434122533000114 ], [ -123.527874674999978, 48.434199782000029 ], [ -123.527670907999934, 48.434200717000117 ], [ -123.527469901999936, 48.434278144000082 ], [ -123.527483076999957, 48.435551060000066 ], [ -123.529510963999911, 48.435541746000055 ], [ -123.529519377999947, 48.436351397000074 ], [ -123.528302625999984, 48.436356989000089 ], [ -123.528305424999985, 48.43662687300008 ], [ -123.527899838999957, 48.436628734000045 ], [ -123.527902634999961, 48.436898617000118 ], [ -123.527497046999926, 48.436900477000094 ], [ -123.527502634999919, 48.437440244000086 ], [ -123.527908226999926, 48.437438384000068 ], [ -123.527911022999945, 48.43770826800003 ], [ -123.528316618999924, 48.437706407000043 ], [ -123.52832221499996, 48.438246173000039 ], [ -123.528727813, 48.438244311000084 ], [ -123.528730614999958, 48.438514194000099 ], [ -123.52954181699999, 48.438510464000103 ], [ -123.529533401999956, 48.437700814000017 ], [ -123.529938997999949, 48.437698947000058 ], [ -123.529936188999955, 48.437429063000181 ], [ -123.53115296699994, 48.437423453000044 ], [ -123.531155779999949, 48.43769333700007 ], [ -123.531966968999939, 48.437689591000058 ], [ -123.53196133299997, 48.437149824000102 ], [ -123.533178103999916, 48.437144192000069 ], [ -123.53318375099991, 48.437683958000093 ], [ -123.533589346, 48.437682078000087 ], [ -123.533597823999941, 48.438491728000024 ], [ -123.533192223999947, 48.438493609000041 ], [ -123.533201499999947, 48.439380068000077 ], [ -123.533128513999955, 48.439414507000052 ], [ -123.53267704699999, 48.439557322000049 ], [ -123.532188798999968, 48.439836308000032 ], [ -123.531872096999976, 48.43992641200002 ], [ -123.531535397999974, 48.440022202000065 ], [ -123.531222577999984, 48.440091233000054 ], [ -123.530752211999939, 48.440195028000069 ], [ -123.53042361699994, 48.440267513000023 ], [ -123.530018929999983, 48.440504390000044 ], [ -123.529842354, 48.440278697000039 ], [ -123.529746979999985, 48.440156291000072 ], [ -123.529332603999961, 48.439821996 ], [ -123.529191725999965, 48.439711520000095 ], [ -123.528911749999921, 48.439491998000037 ], [ -123.528600085999969, 48.439247635000065 ], [ -123.527470758999982, 48.438340280000112 ], [ -123.527304980999986, 48.438193876000092 ], [ -123.52709540499994, 48.438008716000056 ], [ -123.52685113599992, 48.437658699000032 ], [ -123.526706481999966, 48.437451440000117 ], [ -123.526628385999985, 48.437339537000071 ], [ -123.525751308999986, 48.435919558000137 ], [ -123.52568760199992, 48.435796328 ], [ -123.525299343000015, 48.435195729000064 ], [ -123.525137992999973, 48.434797887000087 ], [ -123.525260561999957, 48.434647453 ], [ -123.52535866700002, 48.434526229000078 ], [ -123.525377135999975, 48.434503097000118 ], [ -123.525917501999956, 48.433825998000032 ], [ -123.526099087999938, 48.433604796000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290922667", "BldgCostT": "182136667", "sL_LossRatio": "0.817194594183311", "sL_AssetLoss": "688680.4", "sL_BldgLoss": "562785.9", "sL_StrLoss": "386358.9", "sL_NStrLoss": "176427", "sL_ContLoss": "125894.5", "geom_point": "0101000020E610000040A2E80508E25EC00B822B2CFA364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.525405917999962, 48.432721130000111 ], [ -123.526127383999977, 48.432213181000058 ], [ -123.52671285699995, 48.431803039000016 ], [ -123.526795588999946, 48.431743653000062 ], [ -123.527201347999963, 48.431454335000112 ], [ -123.527668751999926, 48.431121100000048 ], [ -123.527762882, 48.431049364000074 ], [ -123.528670421999891, 48.430414070000062 ], [ -123.528915255999962, 48.430170010000083 ], [ -123.529120941999977, 48.429848373000084 ], [ -123.529682769999937, 48.428650435000065 ], [ -123.529994888999965, 48.428005324000068 ], [ -123.53006543199993, 48.427859511000115 ], [ -123.530130539999973, 48.427723629000148 ], [ -123.530256536999914, 48.427460717000073 ], [ -123.530327387999989, 48.427312866000122 ], [ -123.530584303999902, 48.426785022000089 ], [ -123.530744856999917, 48.426449385000069 ], [ -123.530991965999974, 48.426019386000071 ], [ -123.531366716, 48.425693100000053 ], [ -123.532027378999913, 48.425271734000034 ], [ -123.532261583999954, 48.425092449000019 ], [ -123.532586884999944, 48.424708091000078 ], [ -123.533178563999968, 48.424822857000024 ], [ -123.533003623999903, 48.425202049000077 ], [ -123.53386431399997, 48.425366148000052 ], [ -123.534817455, 48.425547830000077 ], [ -123.535035261999965, 48.425589337000062 ], [ -123.536683897999978, 48.42590358500015 ], [ -123.536634200999984, 48.42601627900013 ], [ -123.536168214, 48.427072950000102 ], [ -123.536009239999913, 48.427433455000042 ], [ -123.53547098099996, 48.428653870000083 ], [ -123.535337598999959, 48.428956298000031 ], [ -123.535082846999899, 48.42959797700005 ], [ -123.535042519999962, 48.429699606000028 ], [ -123.534650081999985, 48.43067969600002 ], [ -123.53431990899999, 48.43080099600013 ], [ -123.534505289, 48.431023510000038 ], [ -123.535011998999948, 48.431320301 ], [ -123.535175889999934, 48.431540493000028 ], [ -123.533961779, 48.431975692000073 ], [ -123.53328240699993, 48.432222299000138 ], [ -123.533043514999946, 48.432250085000064 ], [ -123.532515704999966, 48.43230539700005 ], [ -123.532291204999979, 48.432399930000031 ], [ -123.532196986999935, 48.432439611000092 ], [ -123.531999625, 48.432602699000057 ], [ -123.531813017, 48.432893202000045 ], [ -123.53166628799994, 48.433041303 ], [ -123.531440785, 48.433173105000066 ], [ -123.531040413999975, 48.433348602000066 ], [ -123.530776998999954, 48.433405586000042 ], [ -123.53057450699994, 48.433407185000092 ], [ -123.530335505999943, 48.433359196000062 ], [ -123.530132026, 48.433223697000138 ], [ -123.529550501999921, 48.432499582000098 ], [ -123.526979196999932, 48.433522593000113 ], [ -123.526542197999902, 48.433620595000114 ], [ -123.526099087999938, 48.433604796000068 ], [ -123.525830671999955, 48.43354884900009 ], [ -123.525738701999941, 48.433529701000062 ], [ -123.525168754999967, 48.43326603800007 ], [ -123.52484547200001, 48.433116519000073 ], [ -123.52515083699997, 48.432901826000034 ], [ -123.525405917999962, 48.432721130000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "371899032", "BldgCostT": "250742618", "sL_LossRatio": "0.817040101257033", "sL_AssetLoss": "524210.5", "sL_BldgLoss": "428301", "sL_StrLoss": "296270", "sL_NStrLoss": "132031", "sL_ContLoss": "95909.5", "geom_point": "0101000020E6100000BEA2EFC95EE15EC0C30C1A1B36374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.515225690999955, 48.433916495000041 ], [ -123.516896683999903, 48.431209895000045 ], [ -123.517170435999958, 48.43080151300007 ], [ -123.517588125999964, 48.430186325000072 ], [ -123.517650393999958, 48.430094612000076 ], [ -123.51781822699995, 48.429847311000053 ], [ -123.518065066999952, 48.429952291000134 ], [ -123.518342038999975, 48.430021900000057 ], [ -123.518638045999936, 48.430037861000102 ], [ -123.519003799999965, 48.430010373000044 ], [ -123.520151996999971, 48.429727953000082 ], [ -123.521023258999975, 48.429346666000107 ], [ -123.521157312999932, 48.429288017000097 ], [ -123.521330315999961, 48.429179339000051 ], [ -123.521922693999926, 48.428766677000063 ], [ -123.522142403999908, 48.428693362000018 ], [ -123.522402674999967, 48.428669684000035 ], [ -123.523054982999923, 48.428709299000111 ], [ -123.523291398999959, 48.428724324000129 ], [ -123.523684319000012, 48.428749281000115 ], [ -123.523938095999981, 48.428849902000124 ], [ -123.524199796999966, 48.42903186000013 ], [ -123.524589339999949, 48.429451270000058 ], [ -123.525136878999973, 48.429791404000099 ], [ -123.525652828999938, 48.430116355000045 ], [ -123.526056342999979, 48.430295319000031 ], [ -123.527256550999965, 48.430823813000096 ], [ -123.527410843999945, 48.430892340000128 ], [ -123.527762882, 48.431049364000074 ], [ -123.527668751999926, 48.431121100000048 ], [ -123.527201347999963, 48.431454335000112 ], [ -123.526795588999946, 48.431743653000062 ], [ -123.52671285699995, 48.431803039000016 ], [ -123.526127383999977, 48.432213181000058 ], [ -123.525405917999962, 48.432721130000111 ], [ -123.52515083699997, 48.432901826000034 ], [ -123.52484547200001, 48.433116519000073 ], [ -123.52432519599995, 48.432951046000021 ], [ -123.524142028999961, 48.432892692000102 ], [ -123.52209600899999, 48.432668987000042 ], [ -123.521337298, 48.432650278000075 ], [ -123.520940212999989, 48.432708703000095 ], [ -123.520806621999938, 48.432745270000105 ], [ -123.520347771999951, 48.432870835000116 ], [ -123.52017319, 48.432918631000121 ], [ -123.519759510999961, 48.433031859 ], [ -123.519231715999922, 48.433176300000113 ], [ -123.518674192999953, 48.433283198000012 ], [ -123.518023718999984, 48.43338880000001 ], [ -123.517767615999958, 48.433460312000179 ], [ -123.516966149999988, 48.433823453000052 ], [ -123.516726821999967, 48.433931901000093 ], [ -123.516667639999966, 48.433945066000106 ], [ -123.516415503999909, 48.434001193000071 ], [ -123.516055891999898, 48.434037905000054 ], [ -123.515690508999953, 48.434006800000141 ], [ -123.515225690999955, 48.433916495000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "303895833", "BldgCostT": "193968333", "sL_LossRatio": "0.796882259763402", "sL_AssetLoss": "1293731.9", "sL_BldgLoss": "1030952", "sL_StrLoss": "628304", "sL_NStrLoss": "402648", "sL_ContLoss": "262779.9", "geom_point": "0101000020E61000006251CF8A41E15EC0E172E58102384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.521666789999983, 48.440806095 ], [ -123.521025355999953, 48.440388341000151 ], [ -123.520890464000018, 48.440300467000078 ], [ -123.51943517299999, 48.43935258100008 ], [ -123.518779339000019, 48.438925390000058 ], [ -123.518579307, 48.43879509500011 ], [ -123.518283998999948, 48.438636715000072 ], [ -123.517890392999931, 48.438499393000029 ], [ -123.517174932, 48.438352161000068 ], [ -123.516738203999964, 48.438262281000107 ], [ -123.516733267999939, 48.438270630000012 ], [ -123.516183016, 48.439197893000106 ], [ -123.51609952199999, 48.439339254000089 ], [ -123.515671911, 48.440063297000087 ], [ -123.513938090999943, 48.439619548000053 ], [ -123.513887500999928, 48.439606614000112 ], [ -123.513597298999954, 48.439607013000114 ], [ -123.513420683999982, 48.439706606000072 ], [ -123.51340475399995, 48.439734039000037 ], [ -123.512882101999978, 48.440633601000052 ], [ -123.512363521999973, 48.440497479 ], [ -123.511648052999959, 48.440309708 ], [ -123.510790747, 48.440059609000052 ], [ -123.510590971999946, 48.439932275000032 ], [ -123.510449360999957, 48.439802713000098 ], [ -123.51028796199995, 48.439484193000055 ], [ -123.510134665999956, 48.439192039000048 ], [ -123.509954627999932, 48.439022799000071 ], [ -123.50950776599997, 48.438795877000082 ], [ -123.507320019999952, 48.438331492000088 ], [ -123.507118841999898, 48.43828879900007 ], [ -123.507229670999905, 48.437758624000011 ], [ -123.511276735999928, 48.436873260000041 ], [ -123.513827529999944, 48.436474878000105 ], [ -123.514132290999939, 48.435924087 ], [ -123.514271106999956, 48.435673197000042 ], [ -123.514566875999918, 48.435138693000148 ], [ -123.514654293999953, 48.434980715000094 ], [ -123.515225690999955, 48.433916495000041 ], [ -123.515690508999953, 48.434006800000141 ], [ -123.516055891999898, 48.434037905000054 ], [ -123.516415503999909, 48.434001193000071 ], [ -123.516667639999966, 48.433945066000106 ], [ -123.516726821999967, 48.433931901000093 ], [ -123.516966149999988, 48.433823453000052 ], [ -123.517767615999958, 48.433460312000179 ], [ -123.518023718999984, 48.43338880000001 ], [ -123.518674192999953, 48.433283198000012 ], [ -123.519231715999922, 48.433176300000113 ], [ -123.519759510999961, 48.433031859 ], [ -123.52017319, 48.432918631000121 ], [ -123.520347771999951, 48.432870835000116 ], [ -123.520806621999938, 48.432745270000105 ], [ -123.520940212999989, 48.432708703000095 ], [ -123.521337298, 48.432650278000075 ], [ -123.52209600899999, 48.432668987000042 ], [ -123.524142028999961, 48.432892692000102 ], [ -123.52432519599995, 48.432951046000021 ], [ -123.52484547200001, 48.433116519000073 ], [ -123.525168754999967, 48.43326603800007 ], [ -123.525738701999941, 48.433529701000062 ], [ -123.525830671999955, 48.43354884900009 ], [ -123.526099087999938, 48.433604796000068 ], [ -123.525917501999956, 48.433825998000032 ], [ -123.525377135999975, 48.434503097000118 ], [ -123.52535866700002, 48.434526229000078 ], [ -123.525260561999957, 48.434647453 ], [ -123.525137992999973, 48.434797887000087 ], [ -123.525299343000015, 48.435195729000064 ], [ -123.52568760199992, 48.435796328 ], [ -123.525751308999986, 48.435919558000137 ], [ -123.526628385999985, 48.437339537000071 ], [ -123.526706481999966, 48.437451440000117 ], [ -123.52685113599992, 48.437658699000032 ], [ -123.52709540499994, 48.438008716000056 ], [ -123.527304980999986, 48.438193876000092 ], [ -123.527470758999982, 48.438340280000112 ], [ -123.528600085999969, 48.439247635000065 ], [ -123.528911749999921, 48.439491998000037 ], [ -123.529191725999965, 48.439711520000095 ], [ -123.529332603999961, 48.439821996 ], [ -123.529746979999985, 48.440156291000072 ], [ -123.529842354, 48.440278697000039 ], [ -123.530018929999983, 48.440504390000044 ], [ -123.529883522999953, 48.440641910000089 ], [ -123.529806880999928, 48.440697984000053 ], [ -123.529356119999989, 48.441027993000056 ], [ -123.52900371199999, 48.441285989000079 ], [ -123.528925649999962, 48.441342956000028 ], [ -123.528546284999919, 48.44161971500008 ], [ -123.528453852999974, 48.441671225000029 ], [ -123.52793598, 48.441959891000089 ], [ -123.527432906999977, 48.442290792000108 ], [ -123.527194288999951, 48.442418584000094 ], [ -123.527100495999932, 48.442468804000086 ], [ -123.527053807999948, 48.442493795000139 ], [ -123.527019370999966, 48.442507151000072 ], [ -123.526879518, 48.442561332000061 ], [ -123.526713512999919, 48.442625697000089 ], [ -123.526387413999942, 48.4426424010001 ], [ -123.526099783999882, 48.442617392000088 ], [ -123.52562161699997, 48.442575803000068 ], [ -123.525049473999957, 48.442496729000062 ], [ -123.524683320999898, 48.442446124000114 ], [ -123.524600591999899, 48.442434716000108 ], [ -123.524224396999927, 48.442324015000096 ], [ -123.524082877999916, 48.442240987000098 ], [ -123.523816676999971, 48.442084864000087 ], [ -123.523586720999972, 48.441949979000043 ], [ -123.523435928, 48.441861551000052 ], [ -123.523211005999926, 48.441729602000045 ], [ -123.521666789999983, 48.440806095 ] ], [ [ -123.525102456999932, 48.440689977000055 ], [ -123.525099673999947, 48.440420093000085 ], [ -123.525248096999988, 48.440419415000115 ], [ -123.525255600999913, 48.440427188000115 ], [ -123.525336506999935, 48.440454308000035 ], [ -123.525381544999959, 48.440418806000054 ], [ -123.525505290999931, 48.440418242000128 ], [ -123.525504298000016, 48.44032204600007 ], [ -123.525578695999911, 48.440263401000017 ], [ -123.525849293999968, 48.440289108000094 ], [ -123.525955510999964, 48.4400370070001 ], [ -123.526651901, 48.439475798000089 ], [ -123.526222689999912, 48.438488909000036 ], [ -123.525895197999958, 48.438148500000104 ], [ -123.525068301999966, 48.437376041000071 ], [ -123.525066206999924, 48.437172665000048 ], [ -123.52504383899999, 48.437117160000085 ], [ -123.524839957999959, 48.43691262600008 ], [ -123.52452981299993, 48.436914041000094 ], [ -123.524271205999966, 48.436769783000052 ], [ -123.523392105999932, 48.436543808000103 ], [ -123.523160434999966, 48.436380482000118 ], [ -123.523103429999949, 48.43638074100005 ], [ -123.523029340999983, 48.436313738000095 ], [ -123.523029075999986, 48.436287873000033 ], [ -123.522900538999963, 48.436197254000049 ], [ -123.522587223999935, 48.435913905000113 ], [ -123.522586777999976, 48.435913679000038 ], [ -123.522545138999973, 48.435875861000113 ], [ -123.522517973999967, 48.435843608000035 ], [ -123.522449559, 48.435843918000046 ], [ -123.522212081999967, 48.435723186000139 ], [ -123.522210565999927, 48.43557510700002 ], [ -123.521923380999965, 48.435576410000095 ], [ -123.521804362999944, 48.435515899000059 ], [ -123.521802222999909, 48.435307062000049 ], [ -123.521397210999964, 48.435308898000038 ], [ -123.521396645, 48.43530861000005 ], [ -123.521395289999973, 48.43517624000004 ], [ -123.521210837999959, 48.435147961 ], [ -123.521079438999891, 48.435090461000115 ], [ -123.520974855, 48.435094164000056 ], [ -123.520886817999951, 48.435049404000047 ], [ -123.520494804999942, 48.434978194000109 ], [ -123.519400814999926, 48.435065107000078 ], [ -123.518901687000024, 48.43522890600012 ], [ -123.518605811, 48.435419709000072 ], [ -123.518567708999953, 48.435554998000043 ], [ -123.51869048099995, 48.435734394000065 ], [ -123.518571605999938, 48.435886800000084 ], [ -123.517744816999951, 48.435872607000107 ], [ -123.517448992999974, 48.436000804000038 ], [ -123.517410185999921, 48.436126105000056 ], [ -123.518162376999982, 48.436340339000033 ], [ -123.518162988999947, 48.436400421000023 ], [ -123.51817324299995, 48.436403046000081 ], [ -123.518379294999988, 48.436402118000018 ], [ -123.518590202999945, 48.436462186000036 ], [ -123.519663894999937, 48.437006293000067 ], [ -123.520060549, 48.437465791000079 ], [ -123.52006361699992, 48.437474104000046 ], [ -123.520067710000021, 48.437474086000059 ], [ -123.520203574999954, 48.43763147300006 ], [ -123.520205225999959, 48.437793196000072 ], [ -123.520320238999957, 48.437952261000049 ], [ -123.520418676999924, 48.438012292000025 ], [ -123.520531876999954, 48.438011780000075 ], [ -123.520608107999976, 48.438100085000059 ], [ -123.52061399199999, 48.43810168800006 ], [ -123.520614299000016, 48.4381315850001 ], [ -123.520694937999949, 48.438180760000066 ], [ -123.520892539999963, 48.438247061000069 ], [ -123.52119220499999, 48.438259133000081 ], [ -123.521910393999931, 48.438454688000022 ], [ -123.522414586000011, 48.438937502000101 ], [ -123.523425461999977, 48.438808343000119 ], [ -123.523447554999933, 48.438808242000079 ], [ -123.523752588999983, 48.438877707000131 ], [ -123.52386812099995, 48.438995611000053 ], [ -123.52387015, 48.439192944000084 ], [ -123.524108982999948, 48.439345025000087 ], [ -123.524210055999902, 48.439344565000106 ], [ -123.524243789999971, 48.439378990000087 ], [ -123.524278054999982, 48.439414488000054 ], [ -123.524278823999964, 48.4394891970001 ], [ -123.524349437999931, 48.439530161000036 ], [ -123.524416545999927, 48.439613519000027 ], [ -123.524469937999967, 48.439613276000109 ], [ -123.524688055999917, 48.43983924100008 ], [ -123.524694373999935, 48.440452624000017 ], [ -123.524747595999941, 48.440691595000054 ], [ -123.525102456999932, 48.440689977000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168307916", "BldgCostT": "110261666", "sL_LossRatio": "0.859082015004001", "sL_AssetLoss": "504932", "sL_BldgLoss": "433778", "sL_StrLoss": "237322", "sL_NStrLoss": "196456", "sL_ContLoss": "71154", "geom_point": "0101000020E61000003F51A77625E15EC07F755D115F384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.512882101999978, 48.440633601000052 ], [ -123.51340475399995, 48.439734039000037 ], [ -123.513420683999982, 48.439706606000072 ], [ -123.513597298999954, 48.439607013000114 ], [ -123.513887500999928, 48.439606614000112 ], [ -123.513938090999943, 48.439619548000053 ], [ -123.515671911, 48.440063297000087 ], [ -123.51609952199999, 48.439339254000089 ], [ -123.516183016, 48.439197893000106 ], [ -123.516733267999939, 48.438270630000012 ], [ -123.516738203999964, 48.438262281000107 ], [ -123.517174932, 48.438352161000068 ], [ -123.517890392999931, 48.438499393000029 ], [ -123.518283998999948, 48.438636715000072 ], [ -123.518579307, 48.43879509500011 ], [ -123.518779339000019, 48.438925390000058 ], [ -123.51943517299999, 48.43935258100008 ], [ -123.520890464000018, 48.440300467000078 ], [ -123.521025355999953, 48.440388341000151 ], [ -123.521666789999983, 48.440806095 ], [ -123.523211005999926, 48.441729602000045 ], [ -123.523045591999988, 48.441845594000029 ], [ -123.522563417999905, 48.441904703 ], [ -123.521736414999936, 48.441898806000125 ], [ -123.521523935999966, 48.441882245000045 ], [ -123.520893700999977, 48.441833109000143 ], [ -123.520643392999943, 48.44180711100006 ], [ -123.517731114999961, 48.441504726000041 ], [ -123.5169809, 48.441426807000013 ], [ -123.515017507999971, 48.441166092000053 ], [ -123.513977896999961, 48.440916305 ], [ -123.512882101999978, 48.440633601000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "278775395", "BldgCostT": "182601524", "sL_LossRatio": "0.823618107066405", "sL_AssetLoss": "1073735.5", "sL_BldgLoss": "884348", "sL_StrLoss": "576827", "sL_NStrLoss": "307521", "sL_ContLoss": "189387.5", "geom_point": "0101000020E61000004602607E5FE05EC03D680AF890374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.502871434999946, 48.437965992000102 ], [ -123.501137523999915, 48.43752743700005 ], [ -123.500461309999977, 48.437351898000031 ], [ -123.499905734999913, 48.437204658000049 ], [ -123.499030603999941, 48.436972699000172 ], [ -123.499946826, 48.435391902000092 ], [ -123.50066069199994, 48.434160194000107 ], [ -123.500913520999916, 48.433724004000112 ], [ -123.500901884999948, 48.433662398000081 ], [ -123.500847710999935, 48.433614206000051 ], [ -123.49882008699997, 48.433094692000054 ], [ -123.49711601099996, 48.432657692000141 ], [ -123.497016112000011, 48.432590135000019 ], [ -123.496903702999958, 48.432514119000047 ], [ -123.49682029399996, 48.432457700000029 ], [ -123.497071568999928, 48.43237195600004 ], [ -123.497445578999958, 48.432244356000055 ], [ -123.498421711999981, 48.431818598000078 ], [ -123.498743879999907, 48.431678068000053 ], [ -123.499146802999974, 48.431477852000036 ], [ -123.499776296999954, 48.431165010000079 ], [ -123.500005336999891, 48.431044173000082 ], [ -123.501505875999953, 48.430229039000103 ], [ -123.50211962499999, 48.429895634000033 ], [ -123.502650260999985, 48.429709779000106 ], [ -123.502753259999963, 48.429675221000068 ], [ -123.503085601999928, 48.429579531000066 ], [ -123.503112256999927, 48.429571854000116 ], [ -123.503696852999937, 48.42948825400002 ], [ -123.504538234, 48.429524321000073 ], [ -123.505165317999911, 48.429658117000095 ], [ -123.50551590799995, 48.429789924000033 ], [ -123.50647704899994, 48.430422059000115 ], [ -123.506946507999942, 48.430730809000075 ], [ -123.507780815999951, 48.431134909000043 ], [ -123.50830789199992, 48.431390196000024 ], [ -123.50848946699999, 48.431478145000021 ], [ -123.508552383, 48.431508619000084 ], [ -123.50916055199994, 48.431803155000068 ], [ -123.509568809999948, 48.432000908000113 ], [ -123.509967535999948, 48.432208085000049 ], [ -123.511035802999956, 48.432763089000062 ], [ -123.51388020899995, 48.433662211000062 ], [ -123.514318279999927, 48.433745005000048 ], [ -123.514618404999965, 48.433801714000012 ], [ -123.515225690999955, 48.433916495000041 ], [ -123.514654293999953, 48.434980715000094 ], [ -123.514566875999918, 48.435138693000148 ], [ -123.514271106999956, 48.435673197000042 ], [ -123.514132290999939, 48.435924087 ], [ -123.513827529999944, 48.436474878000105 ], [ -123.511276735999928, 48.436873260000041 ], [ -123.507229670999905, 48.437758624000011 ], [ -123.50466814100001, 48.437663654000119 ], [ -123.50448418299996, 48.437656831000062 ], [ -123.503496374999926, 48.437915088000075 ], [ -123.50338597399994, 48.437976442000043 ], [ -123.503237141999961, 48.438059146000107 ], [ -123.502871434999946, 48.437965992000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162786916", "BldgCostT": "108196666", "sL_LossRatio": "0.870334528166667", "sL_AssetLoss": "270196.68", "sL_BldgLoss": "235161.5", "sL_StrLoss": "186952", "sL_NStrLoss": "48209.5", "sL_ContLoss": "35035.18", "geom_point": "0101000020E6100000E3B47E65ABE05EC0C014717CE5364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.50647704899994, 48.430422059000115 ], [ -123.50551590799995, 48.429789924000033 ], [ -123.505165317999911, 48.429658117000095 ], [ -123.504538234, 48.429524321000073 ], [ -123.504867439999984, 48.42929492600009 ], [ -123.505411708999986, 48.429028221000095 ], [ -123.505513337999957, 48.428868306000027 ], [ -123.505535335999966, 48.428655110000115 ], [ -123.505334628999933, 48.428240122000048 ], [ -123.505289902999962, 48.427986509000114 ], [ -123.505432780999939, 48.427017796000037 ], [ -123.505511215999931, 48.426861800000111 ], [ -123.505960293999976, 48.425968811000075 ], [ -123.506374089999937, 48.425028998000059 ], [ -123.506701082999896, 48.424841106000017 ], [ -123.507679255999975, 48.423984710000042 ], [ -123.507794416999928, 48.423883902000043 ], [ -123.50794282899993, 48.423679126000103 ], [ -123.507992242999975, 48.423432242000047 ], [ -123.507911922999952, 48.423036275000101 ], [ -123.508489876999974, 48.422436696 ], [ -123.508593872999981, 48.422383238000101 ], [ -123.508743039999942, 48.422368705000039 ], [ -123.508886405999974, 48.422412657000073 ], [ -123.509001197999936, 48.422487503000077 ], [ -123.509844109999932, 48.42327097000009 ], [ -123.509925945999953, 48.423346994000056 ], [ -123.51008002199994, 48.423443493000065 ], [ -123.51028787199995, 48.423518720000096 ], [ -123.510904758999956, 48.42366579100014 ], [ -123.511064689999955, 48.423702907000106 ], [ -123.511227203999951, 48.423768059000082 ], [ -123.511359902999956, 48.42386134700012 ], [ -123.511467205, 48.424001825000104 ], [ -123.511517575000013, 48.424147303000041 ], [ -123.511505002999954, 48.424309320000106 ], [ -123.51140486299991, 48.424468391000048 ], [ -123.511249020999955, 48.4246099040001 ], [ -123.511054980999972, 48.424733396000136 ], [ -123.510034027999936, 48.425086309000044 ], [ -123.509838774999977, 48.425207085000068 ], [ -123.50971294599999, 48.425342092000051 ], [ -123.50964807299998, 48.425498359000102 ], [ -123.509641065999958, 48.425708305000029 ], [ -123.509678976999965, 48.425885038000082 ], [ -123.50979621599997, 48.426092495000098 ], [ -123.510252593999965, 48.42649550200013 ], [ -123.510495984999949, 48.426639191000042 ], [ -123.510793470999957, 48.42672916600003 ], [ -123.51105505699999, 48.4267578440001 ], [ -123.51127576, 48.426743187000056 ], [ -123.511448672999975, 48.426661582000058 ], [ -123.511567368999948, 48.426508378000037 ], [ -123.51174924799993, 48.426025703000072 ], [ -123.511860339999956, 48.425818973000027 ], [ -123.511923898999967, 48.425700693000074 ], [ -123.511927249999957, 48.425694434000071 ], [ -123.512063168999987, 48.425573192000023 ], [ -123.51229453799999, 48.42550919300006 ], [ -123.512611464999964, 48.425511211000057 ], [ -123.511650595999953, 48.42843246100005 ], [ -123.511384355999922, 48.428673938000031 ], [ -123.517230865999963, 48.430106701000042 ], [ -123.517588125999964, 48.430186325000072 ], [ -123.517170435999958, 48.43080151300007 ], [ -123.516896683999903, 48.431209895000045 ], [ -123.515225690999955, 48.433916495000041 ], [ -123.514618404999965, 48.433801714000012 ], [ -123.514318279999927, 48.433745005000048 ], [ -123.51388020899995, 48.433662211000062 ], [ -123.511035802999956, 48.432763089000062 ], [ -123.509967535999948, 48.432208085000049 ], [ -123.509568809999948, 48.432000908000113 ], [ -123.50916055199994, 48.431803155000068 ], [ -123.508552383, 48.431508619000084 ], [ -123.50848946699999, 48.431478145000021 ], [ -123.50830789199992, 48.431390196000024 ], [ -123.507780815999951, 48.431134909000043 ], [ -123.506946507999942, 48.430730809000075 ], [ -123.50647704899994, 48.430422059000115 ] ], [ [ -123.513230754999967, 48.429947682000119 ], [ -123.513230508, 48.429923073000083 ], [ -123.50998532899996, 48.429846805000032 ], [ -123.509986481999974, 48.429962106000033 ], [ -123.51039201599994, 48.42996030600009 ], [ -123.51039471899999, 48.430230191000113 ], [ -123.512422400999966, 48.430221180000082 ], [ -123.512419686999962, 48.429951295000116 ], [ -123.513230754999967, 48.429947682000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208725667", "BldgCostT": "132456667", "sL_LossRatio": "0.833435301106042", "sL_AssetLoss": "730623", "sL_BldgLoss": "608927", "sL_StrLoss": "378659", "sL_NStrLoss": "230268", "sL_ContLoss": "121696", "geom_point": "0101000020E61000000C806E1E7DDF5EC09DF0017022374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.490296582999946, 48.426906295000052 ], [ -123.490582875, 48.426292615000058 ], [ -123.49111281099999, 48.426679405000051 ], [ -123.4913718009999, 48.426916365000096 ], [ -123.491780646999956, 48.427290396000018 ], [ -123.491878641999975, 48.427372578000124 ], [ -123.492746878999966, 48.42810052100004 ], [ -123.493067918999927, 48.428361362000061 ], [ -123.493454516999975, 48.428675501000029 ], [ -123.493499311, 48.428734195000096 ], [ -123.494501150999952, 48.430047028000089 ], [ -123.494818276999979, 48.430462599000045 ], [ -123.495020903999958, 48.430840685000064 ], [ -123.49517117299996, 48.431234270000047 ], [ -123.495266190999956, 48.431483095000054 ], [ -123.495378482999968, 48.431783407000054 ], [ -123.495520705999965, 48.43223220200008 ], [ -123.495634296999981, 48.432434679000075 ], [ -123.495690051999944, 48.432605367000086 ], [ -123.495745941999971, 48.432794062000013 ], [ -123.49576008299999, 48.432856977000078 ], [ -123.494642748999951, 48.433507245000065 ], [ -123.494262284999976, 48.433749810000073 ], [ -123.493948777999975, 48.433859650000031 ], [ -123.492697590999967, 48.434298005000066 ], [ -123.492609215999948, 48.434184105000121 ], [ -123.491753586999948, 48.433728297000108 ], [ -123.489485895999962, 48.433156099000044 ], [ -123.489785724999976, 48.4326334410001 ], [ -123.490177401999944, 48.431950589000053 ], [ -123.490568403999987, 48.431269988000018 ], [ -123.489326177999928, 48.430954706000058 ], [ -123.48815200199995, 48.430655385000058 ], [ -123.489340924999965, 48.428577048000051 ], [ -123.489919646999979, 48.427565336000079 ], [ -123.4901634299999, 48.427139128000064 ], [ -123.490296582999946, 48.426906295000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "476065450", "BldgCostT": "322080759", "sL_LossRatio": "0.809505329269338", "sL_AssetLoss": "1375986", "sL_BldgLoss": "1113868", "sL_StrLoss": "612580", "sL_NStrLoss": "501288", "sL_ContLoss": "262118", "geom_point": "0101000020E610000082184C4F5ADF5EC0BF675EEDAC374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.483786691999939, 48.4380147010001 ], [ -123.485970402999939, 48.434509208000108 ], [ -123.486296393999979, 48.433961382000057 ], [ -123.486622815999937, 48.433329804000095 ], [ -123.487073707999983, 48.432537984000128 ], [ -123.487765186999923, 48.431332497000056 ], [ -123.48815200199995, 48.430655385000058 ], [ -123.489326177999928, 48.430954706000058 ], [ -123.490568403999987, 48.431269988000018 ], [ -123.490177401999944, 48.431950589000053 ], [ -123.489785724999976, 48.4326334410001 ], [ -123.489485895999962, 48.433156099000044 ], [ -123.491753586999948, 48.433728297000108 ], [ -123.492609215999948, 48.434184105000121 ], [ -123.492697590999967, 48.434298005000066 ], [ -123.493948777999975, 48.433859650000031 ], [ -123.494262284999976, 48.433749810000073 ], [ -123.494642748999951, 48.433507245000065 ], [ -123.49576008299999, 48.432856977000078 ], [ -123.495791079999933, 48.43311419900003 ], [ -123.495795657999906, 48.433210583000111 ], [ -123.495806419999965, 48.433436493000073 ], [ -123.49540631, 48.434137585000073 ], [ -123.495410007999936, 48.434245898000029 ], [ -123.495429713999968, 48.4351995070001 ], [ -123.495356624999914, 48.435432308000074 ], [ -123.495058004, 48.435973500000102 ], [ -123.494935800999926, 48.436141897000056 ], [ -123.494556571, 48.436490217000021 ], [ -123.494335716999913, 48.436693100000113 ], [ -123.493820018999941, 48.437588999000177 ], [ -123.492792988999938, 48.437334694000043 ], [ -123.492303642999985, 48.437203814000078 ], [ -123.492071805999984, 48.437141804000134 ], [ -123.491886776999976, 48.437119392000056 ], [ -123.491710803999965, 48.437129585000093 ], [ -123.491514811999977, 48.437220368000091 ], [ -123.491503286999958, 48.437225696000077 ], [ -123.48997777699995, 48.437947024000081 ], [ -123.489806274999964, 48.437924914000071 ], [ -123.489531475999911, 48.437661425000066 ], [ -123.488737585999914, 48.436905863000035 ], [ -123.488027095999911, 48.436232546000028 ], [ -123.487472969999928, 48.43657483599999 ], [ -123.486701594999914, 48.437051411000091 ], [ -123.486638631999966, 48.437083214000097 ], [ -123.486144103999905, 48.437333095000014 ], [ -123.485578403999938, 48.437565791000118 ], [ -123.485151183999932, 48.437733293000036 ], [ -123.484494506999965, 48.437976510000084 ], [ -123.48393998099999, 48.438129058000108 ], [ -123.483656383999929, 48.438207079000108 ], [ -123.483786691999939, 48.4380147010001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150820918", "BldgCostT": "94016668", "sL_LossRatio": "0.798109049177349", "sL_AssetLoss": "631914.9", "sL_BldgLoss": "504337", "sL_StrLoss": "283215", "sL_NStrLoss": "221122", "sL_ContLoss": "127577.9", "geom_point": "0101000020E6100000031634EBD4DF5EC0DC00CF6ABF374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.49590689199999, 48.432762619000115 ], [ -123.49682029399996, 48.432457700000029 ], [ -123.496903702999958, 48.432514119000047 ], [ -123.497016112000011, 48.432590135000019 ], [ -123.49711601099996, 48.432657692000141 ], [ -123.49882008699997, 48.433094692000054 ], [ -123.500847710999935, 48.433614206000051 ], [ -123.500901884999948, 48.433662398000081 ], [ -123.500913520999916, 48.433724004000112 ], [ -123.50066069199994, 48.434160194000107 ], [ -123.499946826, 48.435391902000092 ], [ -123.499030603999941, 48.436972699000172 ], [ -123.498599513999963, 48.437717390000024 ], [ -123.498042921999968, 48.438678900000085 ], [ -123.496994198999957, 48.438401710000072 ], [ -123.495815427999958, 48.438107803999976 ], [ -123.495650190999967, 48.438067805000102 ], [ -123.494770582999962, 48.437832409000116 ], [ -123.494568193999967, 48.437782490000089 ], [ -123.493820018999941, 48.437588999000177 ], [ -123.494335716999913, 48.436693100000113 ], [ -123.494556571, 48.436490217000021 ], [ -123.494935800999926, 48.436141897000056 ], [ -123.495058004, 48.435973500000102 ], [ -123.495356624999914, 48.435432308000074 ], [ -123.495429713999968, 48.4351995070001 ], [ -123.495410007999936, 48.434245898000029 ], [ -123.49540631, 48.434137585000073 ], [ -123.495806419999965, 48.433436493000073 ], [ -123.495795657999906, 48.433210583000111 ], [ -123.495791079999933, 48.43311419900003 ], [ -123.49576008299999, 48.432856977000078 ], [ -123.49590689199999, 48.432762619000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194288251", "BldgCostT": "125265001", "sL_LossRatio": "0.797875278869648", "sL_AssetLoss": "894235", "sL_BldgLoss": "713488", "sL_StrLoss": "421129", "sL_NStrLoss": "292359", "sL_ContLoss": "180747", "geom_point": "0101000020E610000061491C2658DF5EC00FDB81003A384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.483039585999933, 48.441263187000089 ], [ -123.482136791999949, 48.441093909000045 ], [ -123.478073511999966, 48.440331933000039 ], [ -123.477421299999932, 48.440209593000056 ], [ -123.47727870599999, 48.439897007000084 ], [ -123.478715662999974, 48.439547605000016 ], [ -123.479295526999962, 48.439406604000062 ], [ -123.480382970999969, 48.439107508000063 ], [ -123.480668364999971, 48.439028999000115 ], [ -123.480817592999969, 48.438987941000086 ], [ -123.481564016999968, 48.438782630000098 ], [ -123.483656383999929, 48.438207079000108 ], [ -123.48393998099999, 48.438129058000108 ], [ -123.484494506999965, 48.437976510000084 ], [ -123.485151183999932, 48.437733293000036 ], [ -123.485578403999938, 48.437565791000118 ], [ -123.486144103999905, 48.437333095000014 ], [ -123.486638631999966, 48.437083214000097 ], [ -123.486701594999914, 48.437051411000091 ], [ -123.487472969999928, 48.43657483599999 ], [ -123.488027095999911, 48.436232546000028 ], [ -123.488737585999914, 48.436905863000035 ], [ -123.489531475999911, 48.437661425000066 ], [ -123.489806274999964, 48.437924914000071 ], [ -123.48997777699995, 48.437947024000081 ], [ -123.491503286999958, 48.437225696000077 ], [ -123.491514811999977, 48.437220368000091 ], [ -123.491710803999965, 48.437129585000093 ], [ -123.491886776999976, 48.437119392000056 ], [ -123.492071805999984, 48.437141804000134 ], [ -123.492303642999985, 48.437203814000078 ], [ -123.492792988999938, 48.437334694000043 ], [ -123.493820018999941, 48.437588999000177 ], [ -123.494568193999967, 48.437782490000089 ], [ -123.494770582999962, 48.437832409000116 ], [ -123.495650190999967, 48.438067805000102 ], [ -123.495815427999958, 48.438107803999976 ], [ -123.496994198999957, 48.438401710000072 ], [ -123.498042921999968, 48.438678900000085 ], [ -123.498599513999963, 48.437717390000024 ], [ -123.499030603999941, 48.436972699000172 ], [ -123.499905734999913, 48.437204658000049 ], [ -123.500461309999977, 48.437351898000031 ], [ -123.501137523999915, 48.43752743700005 ], [ -123.502871434999946, 48.437965992000102 ], [ -123.503237141999961, 48.438059146000107 ], [ -123.50204326799999, 48.438264953000036 ], [ -123.502074412999917, 48.438798395000092 ], [ -123.501450479999932, 48.43893340000006 ], [ -123.500998381999963, 48.439188801000114 ], [ -123.500752274999968, 48.439121601000025 ], [ -123.500537290999929, 48.439104798000045 ], [ -123.499852813999979, 48.439238409000069 ], [ -123.499276195999968, 48.439346505000074 ], [ -123.499018997999926, 48.439488292000142 ], [ -123.498702803999905, 48.440031802000064 ], [ -123.498300617999945, 48.440695893000097 ], [ -123.49785124499999, 48.440578266000031 ], [ -123.497062589999956, 48.440371800000086 ], [ -123.496274054999958, 48.440165521000161 ], [ -123.496114900999927, 48.4401239070001 ], [ -123.495800290999981, 48.440125509000083 ], [ -123.495429040999937, 48.440172419000127 ], [ -123.495415816999937, 48.44017410200015 ], [ -123.493344889999904, 48.44056790700008 ], [ -123.49123161699994, 48.440972306000035 ], [ -123.491019587, 48.44107639700011 ], [ -123.49087058399999, 48.441214496000065 ], [ -123.490737301, 48.44143670000004 ], [ -123.490167125999989, 48.441321296000105 ], [ -123.489820790999929, 48.441286087000037 ], [ -123.48941709899999, 48.441315306000043 ], [ -123.488462912999978, 48.441493799000071 ], [ -123.488024504999927, 48.441489694 ], [ -123.487326863999982, 48.441355422000086 ], [ -123.487313720999907, 48.441352904000105 ], [ -123.487098078999921, 48.441347798000102 ], [ -123.486310998999926, 48.441478803000116 ], [ -123.485690929, 48.44151200200006 ], [ -123.485553090999971, 48.44151940800004 ], [ -123.484772400999972, 48.441505403000065 ], [ -123.483931505999934, 48.441430404000066 ], [ -123.483039585999933, 48.441263187000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100668000", "BldgCostT": "68745000", "sL_LossRatio": "0.837737865882512", "sL_AssetLoss": "473376", "sL_BldgLoss": "396565", "sL_StrLoss": "245890", "sL_NStrLoss": "150675", "sL_ContLoss": "76811", "geom_point": "0101000020E61000000CD3D60CD9DF5EC0695E821183384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.493759687999983, 48.441501109000015 ], [ -123.493344889999904, 48.44056790700008 ], [ -123.495415816999937, 48.44017410200015 ], [ -123.495429040999937, 48.440172419000127 ], [ -123.495800290999981, 48.440125509000083 ], [ -123.496114900999927, 48.4401239070001 ], [ -123.496274054999958, 48.440165521000161 ], [ -123.497062589999956, 48.440371800000086 ], [ -123.49785124499999, 48.440578266000031 ], [ -123.498300617999945, 48.440695893000097 ], [ -123.498702803999905, 48.440031802000064 ], [ -123.499018997999926, 48.439488292000142 ], [ -123.499276195999968, 48.439346505000074 ], [ -123.499852813999979, 48.439238409000069 ], [ -123.500537290999929, 48.439104798000045 ], [ -123.500752274999968, 48.439121601000025 ], [ -123.500998381999963, 48.439188801000114 ], [ -123.501450479999932, 48.43893340000006 ], [ -123.502074412999917, 48.438798395000092 ], [ -123.501344535999948, 48.439859184000078 ], [ -123.502490935999973, 48.439971602000043 ], [ -123.502395312999965, 48.440227267000125 ], [ -123.502012696999955, 48.440777409000063 ], [ -123.500919822999947, 48.441191998000058 ], [ -123.50122883599991, 48.441261860000118 ], [ -123.501042668999958, 48.441383188000017 ], [ -123.500311272999966, 48.441761508000127 ], [ -123.500310853999906, 48.441761748000026 ], [ -123.499613939999989, 48.4421222080001 ], [ -123.499171947999983, 48.442216411000025 ], [ -123.498932161999974, 48.442240966000085 ], [ -123.499448569000023, 48.442503228000128 ], [ -123.499454885999924, 48.442506403000053 ], [ -123.499839798999943, 48.442568259000033 ], [ -123.499383842999947, 48.442688186000062 ], [ -123.498378885999969, 48.443239782000077 ], [ -123.498368500999973, 48.443245488000052 ], [ -123.498100767999929, 48.443393956000136 ], [ -123.497629944999957, 48.443780176000111 ], [ -123.497629776999986, 48.443780295000103 ], [ -123.497324918999965, 48.444030409000057 ], [ -123.497196128999974, 48.444136047000079 ], [ -123.496794025, 48.443966969000023 ], [ -123.495638746999987, 48.443863924 ], [ -123.495411437999934, 48.443815527000076 ], [ -123.494895343999985, 48.443705662000049 ], [ -123.494707793, 48.443602914000053 ], [ -123.494577287999974, 48.443468191000086 ], [ -123.494086682999949, 48.442284296000103 ], [ -123.493759687999983, 48.441501109000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "536068294", "BldgCostT": "341026167", "sL_LossRatio": "0.73320921210259", "sL_AssetLoss": "990434.91", "sL_BldgLoss": "726196", "sL_StrLoss": "322854", "sL_NStrLoss": "403342", "sL_ContLoss": "264238.91", "geom_point": "0101000020E61000000D5F3F2731E05EC0D1181118AD384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.48922668299997, 48.446297392000091 ], [ -123.489352781999969, 48.44591992400008 ], [ -123.489408116999968, 48.445754306000062 ], [ -123.489548307999954, 48.445655799000036 ], [ -123.489570509999936, 48.445652539000072 ], [ -123.489770002999961, 48.445623194000063 ], [ -123.490271303999947, 48.445639518000092 ], [ -123.490303471999965, 48.445645523000039 ], [ -123.490531410999949, 48.445650243000053 ], [ -123.491208465999961, 48.445628109000069 ], [ -123.491457108999938, 48.445700029000115 ], [ -123.491471580999985, 48.445834790000042 ], [ -123.491439978999935, 48.446049599000055 ], [ -123.49173220699997, 48.446012293000088 ], [ -123.491635920999968, 48.445625116000066 ], [ -123.493832828999984, 48.445088228000024 ], [ -123.494293012999918, 48.444898263000063 ], [ -123.495061844999981, 48.444640397000107 ], [ -123.496871311999911, 48.444476446000081 ], [ -123.496908630999954, 48.444322424000049 ], [ -123.496937307999985, 48.444310871000013 ], [ -123.497031566999951, 48.444272865000066 ], [ -123.497196128999974, 48.444136047000079 ], [ -123.497324918999965, 48.444030409000057 ], [ -123.497629776999986, 48.443780295000103 ], [ -123.497629944999957, 48.443780176000111 ], [ -123.498100767999929, 48.443393956000136 ], [ -123.498368500999973, 48.443245488000052 ], [ -123.498378885999969, 48.443239782000077 ], [ -123.499383842999947, 48.442688186000062 ], [ -123.499839798999943, 48.442568259000033 ], [ -123.499454885999924, 48.442506403000053 ], [ -123.499448569000023, 48.442503228000128 ], [ -123.498932161999974, 48.442240966000085 ], [ -123.499171947999983, 48.442216411000025 ], [ -123.499613939999989, 48.4421222080001 ], [ -123.500310853999906, 48.441761748000026 ], [ -123.500311272999966, 48.441761508000127 ], [ -123.501042668999958, 48.441383188000017 ], [ -123.50122883599991, 48.441261860000118 ], [ -123.500919822999947, 48.441191998000058 ], [ -123.502012696999955, 48.440777409000063 ], [ -123.502395312999965, 48.440227267000125 ], [ -123.502490935999973, 48.439971602000043 ], [ -123.501344535999948, 48.439859184000078 ], [ -123.502074412999917, 48.438798395000092 ], [ -123.50204326799999, 48.438264953000036 ], [ -123.503237141999961, 48.438059146000107 ], [ -123.50338597399994, 48.437976442000043 ], [ -123.503496374999926, 48.437915088000075 ], [ -123.50448418299996, 48.437656831000062 ], [ -123.50466814100001, 48.437663654000119 ], [ -123.507229670999905, 48.437758624000011 ], [ -123.507118841999898, 48.43828879900007 ], [ -123.507320019999952, 48.438331492000088 ], [ -123.50950776599997, 48.438795877000082 ], [ -123.509954627999932, 48.439022799000071 ], [ -123.510134665999956, 48.439192039000048 ], [ -123.51028796199995, 48.439484193000055 ], [ -123.510449360999957, 48.439802713000098 ], [ -123.510590971999946, 48.439932275000032 ], [ -123.510790747, 48.440059609000052 ], [ -123.511648052999959, 48.440309708 ], [ -123.51111435599995, 48.441218720000037 ], [ -123.510988563999945, 48.441429474000095 ], [ -123.510704232999942, 48.441907944000079 ], [ -123.510597733999987, 48.442111024000027 ], [ -123.510565528999933, 48.442172402000111 ], [ -123.510396681, 48.442494052000058 ], [ -123.510200188999988, 48.442868167000071 ], [ -123.510142501999894, 48.442977085000038 ], [ -123.51012098299995, 48.443017710000049 ], [ -123.510012889999956, 48.443221745000073 ], [ -123.509789577999967, 48.443643005000126 ], [ -123.50908092799996, 48.444771542000105 ], [ -123.508426339999957, 48.444720083000036 ], [ -123.507600179999926, 48.444876558 ], [ -123.503277913999952, 48.445729614000143 ], [ -123.502934389999922, 48.445793655000067 ], [ -123.502638462999982, 48.446030154000105 ], [ -123.502791454999951, 48.445791196000108 ], [ -123.502887308999945, 48.445637463000018 ], [ -123.502585127999964, 48.445558181000067 ], [ -123.502585841, 48.445723216000104 ], [ -123.502548641999979, 48.445773117000066 ], [ -123.502410961999942, 48.445865174000062 ], [ -123.500583267999914, 48.446226031000087 ], [ -123.498762579999919, 48.446563075000022 ], [ -123.498502699999946, 48.446611184000126 ], [ -123.496219936999978, 48.447033729000047 ], [ -123.495808574999984, 48.447104264000096 ], [ -123.495701646999933, 48.447315508000088 ], [ -123.495627691, 48.44746161000009 ], [ -123.495465232999933, 48.447393726000065 ], [ -123.495398795999932, 48.447373025 ], [ -123.49449320199993, 48.44709121600004 ], [ -123.49386981, 48.44693489300009 ], [ -123.493503484999948, 48.446843218 ], [ -123.492676487999958, 48.446683889000056 ], [ -123.491303289999962, 48.446540492000103 ], [ -123.49064830599994, 48.446470908000038 ], [ -123.490336169000031, 48.446458165000138 ], [ -123.489224704999984, 48.446412799000036 ], [ -123.48922668299997, 48.446297392000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77300500", "BldgCostT": "51160000", "sL_LossRatio": "0.823873753956281", "sL_AssetLoss": "338070", "sL_BldgLoss": "278527", "sL_StrLoss": "170991", "sL_NStrLoss": "107536", "sL_ContLoss": "59543", "geom_point": "0101000020E61000005DF63D4D5ADF5EC0AE5E341A2F364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.487175431, 48.421862561000104 ], [ -123.487604704999967, 48.421070162000092 ], [ -123.492865113999969, 48.422306802000044 ], [ -123.492255705999952, 48.423389265000019 ], [ -123.492011452999961, 48.423823125000041 ], [ -123.491653940999981, 48.424458194000039 ], [ -123.491331071, 48.425031600000096 ], [ -123.490792820999943, 48.425844002000076 ], [ -123.490582875, 48.426292615000058 ], [ -123.490234582, 48.426058451000102 ], [ -123.490168589999925, 48.426014062000043 ], [ -123.490022557999936, 48.425901279000122 ], [ -123.489660659999956, 48.425621716000094 ], [ -123.489164177999953, 48.425238187000069 ], [ -123.488770733999942, 48.424847402000111 ], [ -123.488547237, 48.424533695000051 ], [ -123.488423584999964, 48.424276128000038 ], [ -123.48814504099991, 48.423696007000046 ], [ -123.488101445999973, 48.423605117000115 ], [ -123.487920846999955, 48.423338106000031 ], [ -123.487828745999948, 48.423201853000094 ], [ -123.487771146999989, 48.42312168100009 ], [ -123.487718773999973, 48.423048781000055 ], [ -123.487279788999984, 48.422437652000035 ], [ -123.48697253499995, 48.421948815000114 ], [ -123.487175431, 48.421862561000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113201000", "BldgCostT": "73340000", "sL_LossRatio": "0.761949161763352", "sL_AssetLoss": "597385", "sL_BldgLoss": "455177", "sL_StrLoss": "258610", "sL_NStrLoss": "196567", "sL_ContLoss": "142208", "geom_point": "0101000020E61000008805A5053BDF5EC09F2633DED6354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.486392085999938, 48.422378012000067 ], [ -123.485827453999946, 48.422239636000043 ], [ -123.485174319999942, 48.42224239100004 ], [ -123.485172767000023, 48.422079184000047 ], [ -123.485064138, 48.422052561000072 ], [ -123.484787538, 48.422021560000069 ], [ -123.484860058999956, 48.421973819000065 ], [ -123.484360806999973, 48.421975922000051 ], [ -123.48435824299996, 48.42170603600006 ], [ -123.48346337, 48.42170979900007 ], [ -123.483140857, 48.421608308000017 ], [ -123.483139274999942, 48.421441263000084 ], [ -123.482617000999966, 48.421443455000073 ], [ -123.482327464999969, 48.421352338000091 ], [ -123.482325783999926, 48.421174779000111 ], [ -123.48177064199993, 48.421177104 ], [ -123.480471494999961, 48.420768242000101 ], [ -123.480470897999979, 48.420768049000053 ], [ -123.480817859999931, 48.420788039000044 ], [ -123.481077125999946, 48.420732894000032 ], [ -123.481840768000012, 48.420376811000082 ], [ -123.482055539999976, 48.420345834000045 ], [ -123.483046415999922, 48.420484853000055 ], [ -123.483810965999908, 48.420313646000061 ], [ -123.484421271999977, 48.420176666000017 ], [ -123.485340462999929, 48.419964032000095 ], [ -123.485147947999977, 48.419759986000052 ], [ -123.484378867999979, 48.418944705000051 ], [ -123.484921190999941, 48.418969312000087 ], [ -123.485667921999948, 48.419163043000061 ], [ -123.488265112999926, 48.419836906000107 ], [ -123.488966403999925, 48.418492710000088 ], [ -123.490434405999935, 48.418843196000104 ], [ -123.491857199999913, 48.419180801000053 ], [ -123.4932186, 48.419506097000117 ], [ -123.492291904999945, 48.421236300000039 ], [ -123.492877924999959, 48.42137820900011 ], [ -123.49318421599996, 48.421504494000011 ], [ -123.49339710799994, 48.421764796000041 ], [ -123.49310228899999, 48.421904807000068 ], [ -123.493030119999958, 48.422027188000065 ], [ -123.492865113999969, 48.422306802000044 ], [ -123.487604704999967, 48.421070162000092 ], [ -123.487175431, 48.421862561000104 ], [ -123.48697253499995, 48.421948815000114 ], [ -123.487279788999984, 48.422437652000035 ], [ -123.487718773999973, 48.423048781000055 ], [ -123.486394508999965, 48.422632122000024 ], [ -123.486392085999938, 48.422378012000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92061499", "BldgCostT": "61159999", "sL_LossRatio": "0.851612900430763", "sL_AssetLoss": "230823.3", "sL_BldgLoss": "196572.1", "sL_StrLoss": "135235.1", "sL_NStrLoss": "61337", "sL_ContLoss": "34251.2", "geom_point": "0101000020E610000071F8BDB0E9DE5EC05FF1796A9A354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.479533401999987, 48.420386802000074 ], [ -123.47924427199996, 48.42024706100004 ], [ -123.478524681999929, 48.419899300000083 ], [ -123.47740759499996, 48.419394695000086 ], [ -123.478524793999952, 48.41799829200005 ], [ -123.47895521599996, 48.418200691000074 ], [ -123.479010468999945, 48.418242744000111 ], [ -123.479844474999965, 48.418877446000067 ], [ -123.480207208999985, 48.418196208000026 ], [ -123.480701965999984, 48.417168131000054 ], [ -123.480847323999924, 48.416865971000114 ], [ -123.480995200999956, 48.416877871000089 ], [ -123.481325502999937, 48.416904389000116 ], [ -123.48149486899996, 48.416892283000031 ], [ -123.48160317899999, 48.416884552000099 ], [ -123.481619284999951, 48.416883402000067 ], [ -123.482734012999941, 48.416595238000134 ], [ -123.482910271999955, 48.416578687000033 ], [ -123.482988118999955, 48.416839359000079 ], [ -123.483190339999965, 48.41714625600013 ], [ -123.483462328999934, 48.417105778000128 ], [ -123.484354908999975, 48.41711168300003 ], [ -123.484668307, 48.417179586000053 ], [ -123.485756576999961, 48.417465192000044 ], [ -123.486876211999942, 48.417718992000097 ], [ -123.487759008999944, 48.417945220000021 ], [ -123.487970103999899, 48.417999287000093 ], [ -123.489083505999986, 48.418270110000051 ], [ -123.488966403999925, 48.418492710000088 ], [ -123.488265112999926, 48.419836906000107 ], [ -123.485667921999948, 48.419163043000061 ], [ -123.484921190999941, 48.418969312000087 ], [ -123.484378867999979, 48.418944705000051 ], [ -123.485147947999977, 48.419759986000052 ], [ -123.485340462999929, 48.419964032000095 ], [ -123.484421271999977, 48.420176666000017 ], [ -123.483810965999908, 48.420313646000061 ], [ -123.483046415999922, 48.420484853000055 ], [ -123.482055539999976, 48.420345834000045 ], [ -123.481840768000012, 48.420376811000082 ], [ -123.481077125999946, 48.420732894000032 ], [ -123.480817859999931, 48.420788039000044 ], [ -123.480470897999979, 48.420768049000053 ], [ -123.480219187999964, 48.420706171000091 ], [ -123.479533401999987, 48.420386802000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121811084", "BldgCostT": "74953334", "sL_LossRatio": "0.832350047762301", "sL_AssetLoss": "350695", "sL_BldgLoss": "291901", "sL_StrLoss": "178836", "sL_NStrLoss": "113065", "sL_ContLoss": "58794", "geom_point": "0101000020E61000009FC7FE0584DF5EC021D4F30B82354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.490427495999981, 48.415997891000053 ], [ -123.490519696999954, 48.41583779900003 ], [ -123.49482521500002, 48.416651737000052 ], [ -123.495580707999977, 48.417187599000073 ], [ -123.495419609999914, 48.41748620100001 ], [ -123.495405729, 48.417511955000094 ], [ -123.495342890999964, 48.417628402000041 ], [ -123.495113879999934, 48.418054004000119 ], [ -123.494939206999959, 48.418424099000021 ], [ -123.494825598999967, 48.418532404000111 ], [ -123.493806395999968, 48.420505691000095 ], [ -123.493408883999948, 48.421261894000097 ], [ -123.49318421599996, 48.421504494000011 ], [ -123.492877924999959, 48.42137820900011 ], [ -123.492291904999945, 48.421236300000039 ], [ -123.4932186, 48.419506097000117 ], [ -123.491857199999913, 48.419180801000053 ], [ -123.490434405999935, 48.418843196000104 ], [ -123.488966403999925, 48.418492710000088 ], [ -123.489083505999986, 48.418270110000051 ], [ -123.489357285999958, 48.417745482 ], [ -123.489469419999978, 48.417530710000079 ], [ -123.489855125999924, 48.416794999000018 ], [ -123.490089585999925, 48.416341589000126 ], [ -123.490306391999965, 48.416068997000131 ], [ -123.490427495999981, 48.415997891000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114640666", "BldgCostT": "74146666", "sL_LossRatio": "0.89070127901144", "sL_AssetLoss": "256971.9", "sL_BldgLoss": "228885.2", "sL_StrLoss": "168819.7", "sL_NStrLoss": "60065.5", "sL_ContLoss": "28086.7", "geom_point": "0101000020E610000001C3C1F7E1DF5EC0C4E5EC5BB5354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.493806395999968, 48.420505691000095 ], [ -123.494825598999967, 48.418532404000111 ], [ -123.494939206999959, 48.418424099000021 ], [ -123.495113879999934, 48.418054004000119 ], [ -123.495342890999964, 48.417628402000041 ], [ -123.496663482999963, 48.417959893000074 ], [ -123.496916796999983, 48.418194088000085 ], [ -123.497736506999985, 48.417821205000095 ], [ -123.49795952699999, 48.417811998000118 ], [ -123.498142075999922, 48.417855098000047 ], [ -123.498301583999961, 48.417924695000067 ], [ -123.499045504999941, 48.418704297000055 ], [ -123.499250199999935, 48.418837199000031 ], [ -123.500038823999958, 48.419052397000051 ], [ -123.500238015999969, 48.418727992000051 ], [ -123.500355398999929, 48.418626099000051 ], [ -123.500544006999959, 48.418553892000084 ], [ -123.501460721999962, 48.418436700000022 ], [ -123.501610414999931, 48.418744100000012 ], [ -123.502018217999947, 48.419149668000074 ], [ -123.502308900999964, 48.419438702000022 ], [ -123.502522517, 48.419737796000049 ], [ -123.502674203999973, 48.420058802000071 ], [ -123.502760899999927, 48.420382701000108 ], [ -123.50279889499997, 48.420736188000063 ], [ -123.502767699999936, 48.421199886000075 ], [ -123.50170097699997, 48.421090897000042 ], [ -123.501182504999974, 48.421150804000078 ], [ -123.500630482999952, 48.421130510000069 ], [ -123.50009777899993, 48.42092229500004 ], [ -123.499242176999985, 48.420417807000099 ], [ -123.499020002999899, 48.42033500100014 ], [ -123.498639598999929, 48.420207012000041 ], [ -123.497945585999972, 48.420064312000143 ], [ -123.495407008999933, 48.419575981000023 ], [ -123.495535206999975, 48.41998299300014 ], [ -123.495514412999967, 48.420223294000031 ], [ -123.495430384999963, 48.420484603000055 ], [ -123.495112708999898, 48.420955887000069 ], [ -123.494986313999931, 48.421100806000034 ], [ -123.494721604999938, 48.421311006000074 ], [ -123.494345798999973, 48.421478792000109 ], [ -123.49339710799994, 48.421764796000041 ], [ -123.49318421599996, 48.421504494000011 ], [ -123.493408883999948, 48.421261894000097 ], [ -123.493806395999968, 48.420505691000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "425585835", "BldgCostT": "284338335", "sL_LossRatio": "0.942668147060409", "sL_AssetLoss": "388968.59", "sL_BldgLoss": "366668.3", "sL_StrLoss": "320373", "sL_NStrLoss": "46295.3", "sL_ContLoss": "22300.29", "geom_point": "0101000020E61000003920CE0566E15EC037EDCD35ED354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.523054982999923, 48.428709299000111 ], [ -123.522402674999967, 48.428669684000035 ], [ -123.522142403999908, 48.428693362000018 ], [ -123.521922693999926, 48.428766677000063 ], [ -123.521330315999961, 48.429179339000051 ], [ -123.521157312999932, 48.429288017000097 ], [ -123.521023258999975, 48.429346666000107 ], [ -123.520151996999971, 48.429727953000082 ], [ -123.519003799999965, 48.430010373000044 ], [ -123.518638045999936, 48.430037861000102 ], [ -123.518342038999975, 48.430021900000057 ], [ -123.518065066999952, 48.429952291000134 ], [ -123.51781822699995, 48.429847311000053 ], [ -123.517650393999958, 48.430094612000076 ], [ -123.517588125999964, 48.430186325000072 ], [ -123.517230865999963, 48.430106701000042 ], [ -123.511384355999922, 48.428673938000031 ], [ -123.511650595999953, 48.42843246100005 ], [ -123.512611464999964, 48.425511211000057 ], [ -123.512904996999936, 48.424909432000092 ], [ -123.512905104999973, 48.424909188000065 ], [ -123.512905183, 48.424909016000043 ], [ -123.514317543999965, 48.422396006000056 ], [ -123.514766670999961, 48.421596796000109 ], [ -123.514697902999899, 48.421474655000068 ], [ -123.514473368999973, 48.421172149000057 ], [ -123.514421800999983, 48.420972901000027 ], [ -123.514718788999957, 48.420681103000156 ], [ -123.51485340699999, 48.420212667000044 ], [ -123.514817872999942, 48.419828269000085 ], [ -123.514816316999941, 48.419764972000031 ], [ -123.515087661999985, 48.418989306000093 ], [ -123.515140471999985, 48.418794769000087 ], [ -123.515684402999952, 48.418285727000082 ], [ -123.515704865999965, 48.417541047000093 ], [ -123.515636617999959, 48.417573309000034 ], [ -123.515559437999954, 48.417603111000105 ], [ -123.515494899999979, 48.417624023000045 ], [ -123.515429881999964, 48.417637525000011 ], [ -123.515346117999968, 48.417647390000113 ], [ -123.515279478, 48.417635165000043 ], [ -123.515218067999982, 48.417628868000051 ], [ -123.515173095999955, 48.417620854000106 ], [ -123.515124653000015, 48.417605580000092 ], [ -123.514973658999963, 48.417541965000112 ], [ -123.51493503899998, 48.417492216000042 ], [ -123.514546911999972, 48.417667931000061 ], [ -123.51438373699996, 48.417754815000066 ], [ -123.514280019999916, 48.417822887000057 ], [ -123.514202488999956, 48.417828251000081 ], [ -123.513840179999974, 48.417724141000058 ], [ -123.51380671099993, 48.417675709000072 ], [ -123.513789546999988, 48.417333045000106 ], [ -123.512556375, 48.416474457000035 ], [ -123.511460689, 48.415389626000049 ], [ -123.511319504999918, 48.41527908800002 ], [ -123.511318955999954, 48.41522797400004 ], [ -123.51129640299996, 48.41512034700002 ], [ -123.511273638999967, 48.415050601000118 ], [ -123.511270746999941, 48.415005586000085 ], [ -123.511271279999974, 48.414927709000075 ], [ -123.511278396999984, 48.414869449000129 ], [ -123.511291259999908, 48.414803569000036 ], [ -123.511298681999946, 48.414691755000128 ], [ -123.511197367999955, 48.414595334000097 ], [ -123.51123756799997, 48.414418578000081 ], [ -123.511696104999942, 48.413291496000035 ], [ -123.512868736999962, 48.413866536000114 ], [ -123.513067496999923, 48.413964015000069 ], [ -123.513261042999972, 48.414030180000111 ], [ -123.513378904999968, 48.414070500000086 ], [ -123.513639202999954, 48.414121691000055 ], [ -123.513943763999919, 48.414127239000038 ], [ -123.513985483999974, 48.414127995000094 ], [ -123.51430949399996, 48.414072512000125 ], [ -123.514577996999961, 48.413967902000081 ], [ -123.514763013, 48.413835193000082 ], [ -123.515021596999972, 48.413534689000073 ], [ -123.515162393999944, 48.413225168000089 ], [ -123.51530369999989, 48.412914501000039 ], [ -123.515554, 48.412591288000037 ], [ -123.515752102999897, 48.412414692000034 ], [ -123.515889347, 48.412329621000083 ], [ -123.51611290699995, 48.412191049000064 ], [ -123.516502098999965, 48.411949785000019 ], [ -123.516751446999962, 48.41170447800009 ], [ -123.516792183999911, 48.411664396000056 ], [ -123.516931189999923, 48.411457589000065 ], [ -123.517504272999986, 48.411615291000061 ], [ -123.51825217399994, 48.411780369000077 ], [ -123.518546905999983, 48.411845404000118 ], [ -123.518681601999944, 48.411899905000055 ], [ -123.519643575999936, 48.412483147000081 ], [ -123.519903890999956, 48.412640999000082 ], [ -123.520290712999937, 48.412851092000103 ], [ -123.520368074999951, 48.412884407000028 ], [ -123.521037318, 48.413172503000084 ], [ -123.521444809999963, 48.413427399000078 ], [ -123.521638342999964, 48.413564185000062 ], [ -123.521808994999944, 48.413684800000134 ], [ -123.521938409999947, 48.413742641000105 ], [ -123.522675778999897, 48.414072291000139 ], [ -123.523196822, 48.414305197000132 ], [ -123.523338914999954, 48.414345060000095 ], [ -123.523438614999947, 48.414373037000061 ], [ -123.524020878, 48.414536391000134 ], [ -123.52443797799999, 48.414604771000079 ], [ -123.524681586999947, 48.414644702000032 ], [ -123.525612127999921, 48.414655175000057 ], [ -123.526518150999934, 48.414665346000113 ], [ -123.526707253999945, 48.414667485000138 ], [ -123.527128282999954, 48.414672204000098 ], [ -123.528141055999924, 48.414922281000045 ], [ -123.528289347999959, 48.414958875000089 ], [ -123.529701190999901, 48.415307464000072 ], [ -123.533098195999969, 48.416146096000034 ], [ -123.533102282999934, 48.416894697000011 ], [ -123.533090875999946, 48.417152195000043 ], [ -123.533039215999978, 48.418319263000079 ], [ -123.533003459999975, 48.419126924000075 ], [ -123.53300073399997, 48.419662932000108 ], [ -123.533000356999963, 48.419734727000098 ], [ -123.532995028999949, 48.42077732000012 ], [ -123.532992921999934, 48.42119298300004 ], [ -123.532990391999945, 48.421685859000057 ], [ -123.532988815999914, 48.421994163000129 ], [ -123.532927685999965, 48.422700605000045 ], [ -123.532706978999983, 48.423725275000024 ], [ -123.532687681999946, 48.424457027000052 ], [ -123.532586884999944, 48.424708091000078 ], [ -123.532261583999954, 48.425092449000019 ], [ -123.532027378999913, 48.425271734000034 ], [ -123.531366716, 48.425693100000053 ], [ -123.530991965999974, 48.426019386000071 ], [ -123.530744856999917, 48.426449385000069 ], [ -123.530584303999902, 48.426785022000089 ], [ -123.530327387999989, 48.427312866000122 ], [ -123.530256536999914, 48.427460717000073 ], [ -123.530130539999973, 48.427723629000148 ], [ -123.53006543199993, 48.427859511000115 ], [ -123.529994888999965, 48.428005324000068 ], [ -123.529682769999937, 48.428650435000065 ], [ -123.529120941999977, 48.429848373000084 ], [ -123.528915255999962, 48.430170010000083 ], [ -123.528670421999891, 48.430414070000062 ], [ -123.527762882, 48.431049364000074 ], [ -123.527410843999945, 48.430892340000128 ], [ -123.527256550999965, 48.430823813000096 ], [ -123.526056342999979, 48.430295319000031 ], [ -123.525652828999938, 48.430116355000045 ], [ -123.525136878999973, 48.429791404000099 ], [ -123.524589339999949, 48.429451270000058 ], [ -123.524199796999966, 48.42903186000013 ], [ -123.523938095999981, 48.428849902000124 ], [ -123.523684319000012, 48.428749281000115 ], [ -123.523291398999959, 48.428724324000129 ], [ -123.523054982999923, 48.428709299000111 ] ], [ [ -123.522135900999942, 48.428288238000064 ], [ -123.522127607999906, 48.427478586000078 ], [ -123.523749659999964, 48.427471215000054 ], [ -123.52375520799994, 48.428010983000036 ], [ -123.52416072599999, 48.428009137000039 ], [ -123.524162193, 48.428151795000055 ], [ -123.52456832199999, 48.428209386000098 ], [ -123.524566243999956, 48.428007289000064 ], [ -123.524888050999962, 48.428005821000092 ], [ -123.524962160999934, 48.4265896960001 ], [ -123.525865696, 48.426610814000128 ], [ -123.525973331999936, 48.424553114000062 ], [ -123.527775207999966, 48.424595207000038 ], [ -123.527765671999958, 48.423674310000067 ], [ -123.528171155999971, 48.423672449000016 ], [ -123.528165561999941, 48.42313268099999 ], [ -123.528571041999939, 48.423130819000122 ], [ -123.52856544399999, 48.422591050000086 ], [ -123.528853428999952, 48.422589728000077 ], [ -123.528967942999941, 48.420397675000089 ], [ -123.529040132999981, 48.420399359000044 ], [ -123.529103914999951, 48.419178277000093 ], [ -123.528317, 48.419159906000068 ], [ -123.528385843999956, 48.417842303000107 ], [ -123.52702743299993, 48.417810576000079 ], [ -123.527033272999958, 48.417698868000109 ], [ -123.526686526, 48.41769076700006 ], [ -123.526693149999971, 48.417564061000171 ], [ -123.526273619, 48.417554257000042 ], [ -123.526284101999977, 48.417353802000093 ], [ -123.52566971, 48.41733944200007 ], [ -123.525692786, 48.416898257000128 ], [ -123.522865695999897, 48.416832135000149 ], [ -123.52271641899992, 48.419682733000087 ], [ -123.523698783999976, 48.419705718000053 ], [ -123.523651745, 48.420604253000093 ], [ -123.523949328999933, 48.420611214000097 ], [ -123.523912863999939, 48.421307842000047 ], [ -123.524005766999963, 48.421310015000088 ], [ -123.523817173999959, 48.424912631000019 ], [ -123.52224647499996, 48.424875881000084 ], [ -123.522189069999968, 48.42597166600013 ], [ -123.520401924999959, 48.425929826000079 ], [ -123.520364934, 48.426635409000063 ], [ -123.520263676999917, 48.426633038000091 ], [ -123.520240052999952, 48.427083611000079 ], [ -123.520123402999971, 48.427080880000105 ], [ -123.520105866999955, 48.427415313000047 ], [ -123.517105241999985, 48.42734498800008 ], [ -123.517093256999942, 48.427573288000076 ], [ -123.517033270999931, 48.427571881000077 ], [ -123.516970682999954, 48.428764028000032 ], [ -123.517209158999933, 48.428850281000102 ], [ -123.517680659999911, 48.428848162000122 ], [ -123.517683305999967, 48.429108658000061 ], [ -123.517696895999933, 48.42911798500004 ], [ -123.518088926999965, 48.429116220000033 ], [ -123.518091671999969, 48.429386105000091 ], [ -123.518902731, 48.429382450000034 ], [ -123.518899981999965, 48.429112566000107 ], [ -123.519510075999918, 48.429109814000078 ], [ -123.519530638999925, 48.42899466100004 ], [ -123.519708679999937, 48.428877921000037 ], [ -123.519708284000018, 48.428839022000062 ], [ -123.519768420999966, 48.428838750000054 ], [ -123.519916338999948, 48.428741761 ], [ -123.520112310999963, 48.428690475000046 ], [ -123.520111053999955, 48.428567305000058 ], [ -123.520770259999949, 48.428564324000092 ], [ -123.521326666999983, 48.42846852000006 ], [ -123.521324860999982, 48.42829191600007 ], [ -123.522135900999942, 48.428288238000064 ] ], [ [ -123.52116172499997, 48.416776021000075 ], [ -123.521164223999946, 48.416728329000094 ], [ -123.520535657999972, 48.416713608000137 ], [ -123.520562476999913, 48.416201899000107 ], [ -123.518926631999989, 48.416163568000115 ], [ -123.518955271999985, 48.415617467000089 ], [ -123.518762646999974, 48.415618337000133 ], [ -123.518768137999956, 48.416158106000132 ], [ -123.518362712999988, 48.416159933000102 ], [ -123.518368311999964, 48.416710567000074 ], [ -123.52116172499997, 48.416776021000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247908584", "BldgCostT": "155353334", "sL_LossRatio": "0.896740539173293", "sL_AssetLoss": "181900.33", "sL_BldgLoss": "163117.4", "sL_StrLoss": "135707.3", "sL_NStrLoss": "27410.1", "sL_ContLoss": "18782.93", "geom_point": "0101000020E6100000819F6970B8E15EC0DFB3222886344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.528141055999924, 48.414922281000045 ], [ -123.527128282999954, 48.414672204000098 ], [ -123.526707253999945, 48.414667485000138 ], [ -123.526518150999934, 48.414665346000113 ], [ -123.525612127999921, 48.414655175000057 ], [ -123.524681586999947, 48.414644702000032 ], [ -123.52443797799999, 48.414604771000079 ], [ -123.524020878, 48.414536391000134 ], [ -123.523438614999947, 48.414373037000061 ], [ -123.523338914999954, 48.414345060000095 ], [ -123.523196822, 48.414305197000132 ], [ -123.522675778999897, 48.414072291000139 ], [ -123.521938409999947, 48.413742641000105 ], [ -123.521808994999944, 48.413684800000134 ], [ -123.521638342999964, 48.413564185000062 ], [ -123.521444809999963, 48.413427399000078 ], [ -123.521037318, 48.413172503000084 ], [ -123.520368074999951, 48.412884407000028 ], [ -123.520290712999937, 48.412851092000103 ], [ -123.519903890999956, 48.412640999000082 ], [ -123.519643575999936, 48.412483147000081 ], [ -123.518681601999944, 48.411899905000055 ], [ -123.518546905999983, 48.411845404000118 ], [ -123.51825217399994, 48.411780369000077 ], [ -123.517504272999986, 48.411615291000061 ], [ -123.516931189999923, 48.411457589000065 ], [ -123.516792183999911, 48.411664396000056 ], [ -123.516751446999962, 48.41170447800009 ], [ -123.516502098999965, 48.411949785000019 ], [ -123.51611290699995, 48.412191049000064 ], [ -123.515889347, 48.412329621000083 ], [ -123.515752102999897, 48.412414692000034 ], [ -123.515554, 48.412591288000037 ], [ -123.51530369999989, 48.412914501000039 ], [ -123.515162393999944, 48.413225168000089 ], [ -123.515021596999972, 48.413534689000073 ], [ -123.514763013, 48.413835193000082 ], [ -123.514577996999961, 48.413967902000081 ], [ -123.51430949399996, 48.414072512000125 ], [ -123.513985483999974, 48.414127995000094 ], [ -123.513943763999919, 48.414127239000038 ], [ -123.513639202999954, 48.414121691000055 ], [ -123.513378904999968, 48.414070500000086 ], [ -123.513261042999972, 48.414030180000111 ], [ -123.513067496999923, 48.413964015000069 ], [ -123.512868736999962, 48.413866536000114 ], [ -123.511696104999942, 48.413291496000035 ], [ -123.511934270999944, 48.412970034000118 ], [ -123.512847196999957, 48.413054050000014 ], [ -123.513900395999926, 48.410511726000081 ], [ -123.514775662999909, 48.408867198000088 ], [ -123.518471540999926, 48.408953924000116 ], [ -123.518404663999917, 48.410229047000016 ], [ -123.519397095, 48.410252313000036 ], [ -123.519430109999959, 48.409622606000092 ], [ -123.51970543199999, 48.409629058000064 ], [ -123.519740734999914, 48.408955611000117 ], [ -123.519768595999949, 48.408956264000047 ], [ -123.519794059, 48.408470510000029 ], [ -123.520499977, 48.408487052000055 ], [ -123.520615847999963, 48.406275824000033 ], [ -123.521098669999944, 48.406287135000127 ], [ -123.521150480999964, 48.405298134000141 ], [ -123.521590916999941, 48.405308450000071 ], [ -123.52161118199993, 48.40492154400004 ], [ -123.525903007999915, 48.405021974000071 ], [ -123.526963767999987, 48.405717859000049 ], [ -123.526946120999966, 48.406055536000025 ], [ -123.527498184999914, 48.406068436000133 ], [ -123.528920669999977, 48.407001547000064 ], [ -123.529090227999987, 48.406707004000069 ], [ -123.52910117499998, 48.406706037000099 ], [ -123.529095253999969, 48.406819404 ], [ -123.52931491799994, 48.406824533000062 ], [ -123.529314046999929, 48.406841230000069 ], [ -123.529874698999905, 48.406854317000089 ], [ -123.529856602999956, 48.407200962000111 ], [ -123.530838121999977, 48.407196437000053 ], [ -123.530838500999963, 48.407232876000108 ], [ -123.531764153999973, 48.407254469000037 ], [ -123.531753322999919, 48.4074621090001 ], [ -123.532056992999969, 48.407460705000133 ], [ -123.532051361999919, 48.40692093600007 ], [ -123.532456711999956, 48.406919060000106 ], [ -123.532453894999904, 48.406649175000048 ], [ -123.53271214899992, 48.406647981000049 ], [ -123.532724912999981, 48.406403203000167 ], [ -123.533553814999919, 48.406538751000113 ], [ -123.534497363999918, 48.406862121000074 ], [ -123.535507458999959, 48.406995216000077 ], [ -123.536065367999967, 48.407134958000029 ], [ -123.538082542999916, 48.407899208000124 ], [ -123.539323748999962, 48.408236902000098 ], [ -123.53956767599999, 48.408327820000096 ], [ -123.539793456999973, 48.408468166000063 ], [ -123.539908521999948, 48.408558955000068 ], [ -123.540166212999907, 48.409190429000013 ], [ -123.540138091999921, 48.409232147000061 ], [ -123.540069688999921, 48.409339334000038 ], [ -123.539635047999951, 48.410020160000037 ], [ -123.539288427999978, 48.410383618000047 ], [ -123.539112401999944, 48.41052651600009 ], [ -123.538951702999938, 48.410602797000116 ], [ -123.538652450999948, 48.410744805000029 ], [ -123.538161565999985, 48.410977758000115 ], [ -123.537994860999945, 48.411056883000093 ], [ -123.537487533999979, 48.411297618000035 ], [ -123.536250677999988, 48.411757835000081 ], [ -123.536191944000038, 48.411779673000048 ], [ -123.534878347999964, 48.412451564000023 ], [ -123.534011710999948, 48.412853391000112 ], [ -123.533882227999982, 48.412914833000066 ], [ -123.53373887, 48.412982841000066 ], [ -123.533444695999947, 48.413122400000049 ], [ -123.533136483999925, 48.413394801000081 ], [ -123.533058988, 48.413716124000061 ], [ -123.53304349299999, 48.413780404000128 ], [ -123.533048061, 48.413977532000061 ], [ -123.533069481999931, 48.414904220000068 ], [ -123.533077389000013, 48.415246139000011 ], [ -123.533098195999969, 48.416146096000034 ], [ -123.529701190999901, 48.415307464000072 ], [ -123.528289347999959, 48.414958875000089 ], [ -123.528141055999924, 48.414922281000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10922084", "BldgCostT": "6058334", "sL_LossRatio": "0.966800937776842", "sL_AssetLoss": "2043.13", "sL_BldgLoss": "1975.3", "sL_StrLoss": "1767.2", "sL_NStrLoss": "208.1", "sL_ContLoss": "67.83", "geom_point": "0101000020E6100000E17C2C7537E15EC0227C9C27A6334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.517833963999919, 48.404016925000093 ], [ -123.517828484999967, 48.403477153000054 ], [ -123.51764349599992, 48.403477986000091 ], [ -123.518027904999954, 48.402755501000058 ], [ -123.520665311999934, 48.403421985000129 ], [ -123.520668499999928, 48.403734234000048 ], [ -123.520263175, 48.403736067000082 ], [ -123.520265927, 48.40400595300013 ], [ -123.517833963999919, 48.404016925000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417125000", "BldgCostT": "262325000", "sL_LossRatio": "0.85929619272718", "sL_AssetLoss": "1058159", "sL_BldgLoss": "909272", "sL_StrLoss": "623128", "sL_NStrLoss": "286144", "sL_ContLoss": "148887", "geom_point": "0101000020E610000007C389E026DF5EC0795380DE8A344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.469054789999973, 48.420591897000051 ], [ -123.469078435999975, 48.420149957000028 ], [ -123.468935457000029, 48.420150540000122 ], [ -123.468933829, 48.419973698000092 ], [ -123.469986394999978, 48.418965802000102 ], [ -123.470884403999946, 48.417983406000133 ], [ -123.470942805999968, 48.417983166000027 ], [ -123.470942223999913, 48.417920151000018 ], [ -123.471874911, 48.41689976 ], [ -123.47214913199997, 48.416898636000084 ], [ -123.472146392999932, 48.416602739000034 ], [ -123.472589382999914, 48.416118068000031 ], [ -123.473238280999979, 48.415408092000114 ], [ -123.475044719999943, 48.413592304000076 ], [ -123.475678600999913, 48.412844272000072 ], [ -123.475760354999977, 48.412846222000084 ], [ -123.475759446, 48.412748867000097 ], [ -123.476144955999956, 48.412293918000074 ], [ -123.47616061199993, 48.412293853000065 ], [ -123.476160442999984, 48.412275641000086 ], [ -123.476374458999885, 48.412023071000085 ], [ -123.476563485999947, 48.41202228800006 ], [ -123.476561431999954, 48.411802413000032 ], [ -123.476795890999981, 48.411525710000042 ], [ -123.47968020899998, 48.407734504000061 ], [ -123.480864185999948, 48.406606448000119 ], [ -123.480971906999955, 48.406605997000057 ], [ -123.480970951999964, 48.406504721000047 ], [ -123.481206383999933, 48.406280400000121 ], [ -123.48162757799993, 48.405793562000021 ], [ -123.481774959999939, 48.405792945000087 ], [ -123.481773375999978, 48.405625039000043 ], [ -123.482096274999932, 48.405251803000027 ], [ -123.482175202999926, 48.405251473000135 ], [ -123.482174352999948, 48.405161553000084 ], [ -123.48256496, 48.40471004400009 ], [ -123.482575434999944, 48.404710000000151 ], [ -123.482575321999946, 48.404698065000076 ], [ -123.483331798999956, 48.403823610000074 ], [ -123.483683959999965, 48.403355857000122 ], [ -123.483778640999944, 48.403355459000068 ], [ -123.483777468999961, 48.403231653000034 ], [ -123.48449931, 48.402272836000051 ], [ -123.484579035999957, 48.402272500000095 ], [ -123.484578044999949, 48.402168249000063 ], [ -123.484744984999963, 48.401946496000036 ], [ -123.4852234949999, 48.401099113000029 ], [ -123.485816557999925, 48.400350488000043 ], [ -123.486529351999963, 48.400483265000048 ], [ -123.487239302, 48.400759552000125 ], [ -123.488290409999976, 48.40091610200011 ], [ -123.48893461899992, 48.400465103000023 ], [ -123.489666992999986, 48.400130801000081 ], [ -123.48986440399996, 48.40004558600009 ], [ -123.490122387999989, 48.399934196000068 ], [ -123.491143186999921, 48.399247815000081 ], [ -123.492060682999949, 48.398854691000082 ], [ -123.493629100999968, 48.398393193000054 ], [ -123.494283595, 48.398255406000018 ], [ -123.49455508799997, 48.398169797 ], [ -123.49565410299999, 48.398092119000111 ], [ -123.495754196999954, 48.398156622000073 ], [ -123.495834044999953, 48.398208056000016 ], [ -123.496010051999988, 48.398321475000103 ], [ -123.49611292799996, 48.39849256300004 ], [ -123.49549478499992, 48.398529876000048 ], [ -123.494664169999936, 48.39858001200006 ], [ -123.493740920999969, 48.398724985000051 ], [ -123.492789656999946, 48.398966661000067 ], [ -123.492048707999984, 48.39923317200001 ], [ -123.491096620999954, 48.399693067000136 ], [ -123.490630096999922, 48.400005429000046 ], [ -123.490422776999978, 48.400144214000093 ], [ -123.489920425999927, 48.400565202000031 ], [ -123.489892626999946, 48.400592951000114 ], [ -123.489476112999967, 48.401009107000036 ], [ -123.489122071999958, 48.401497474000116 ], [ -123.489061488999951, 48.401580986000077 ], [ -123.488386619999986, 48.402834196000093 ], [ -123.487550573999954, 48.404386694000053 ], [ -123.489296467, 48.404801991000021 ], [ -123.489811730999975, 48.404924563000094 ], [ -123.49443589399999, 48.406024389000045 ], [ -123.495200844999957, 48.406146196000059 ], [ -123.495774978000014, 48.406203989000119 ], [ -123.496414721999955, 48.40622001200007 ], [ -123.497400222999943, 48.406225441000039 ], [ -123.498472831999891, 48.406231313000056 ], [ -123.499643685, 48.406237746000031 ], [ -123.500194655999948, 48.406275098000059 ], [ -123.501208460999948, 48.406409065000098 ], [ -123.501672777999957, 48.406503894000089 ], [ -123.500697908999911, 48.408159998000023 ], [ -123.500215051999973, 48.408952114000073 ], [ -123.500004146999942, 48.409321620000036 ], [ -123.499997962999913, 48.409332517000038 ], [ -123.49977222399994, 48.409728005000083 ], [ -123.499735400999953, 48.409938983000075 ], [ -123.499725198999982, 48.410360791000087 ], [ -123.499647810999974, 48.410626798000102 ], [ -123.499564081999921, 48.410751504000054 ], [ -123.499474988999978, 48.410884301000031 ], [ -123.49892691699992, 48.411347444000064 ], [ -123.498874997999948, 48.411391290000083 ], [ -123.498614896, 48.411851428000062 ], [ -123.498559575999963, 48.411949298000046 ], [ -123.498502773999974, 48.412031106000065 ], [ -123.498317416999939, 48.412297916000036 ], [ -123.498036895, 48.412701698000021 ], [ -123.497715313999933, 48.412942012000066 ], [ -123.496950205999951, 48.413101609000108 ], [ -123.496674496999944, 48.413215 ], [ -123.496151007999984, 48.413497490000083 ], [ -123.496046750999966, 48.413574964000084 ], [ -123.49605374599993, 48.413442798000062 ], [ -123.494944213999943, 48.413416544000022 ], [ -123.495065041999936, 48.41113448100004 ], [ -123.494798302999968, 48.41113562800011 ], [ -123.494800920999936, 48.411405514000066 ], [ -123.493990146999977, 48.41140899800007 ], [ -123.49399276099993, 48.411678883000071 ], [ -123.493181979999946, 48.411682362000072 ], [ -123.493184589999885, 48.411952248000055 ], [ -123.492779198999983, 48.411953985000082 ], [ -123.492787022999977, 48.412763643000126 ], [ -123.492381623999918, 48.412765378000131 ], [ -123.492384229999942, 48.413035265000062 ], [ -123.491978828999933, 48.41303699900002 ], [ -123.491981432999921, 48.413306885000111 ], [ -123.49157603, 48.413308618000016 ], [ -123.491581232999948, 48.413848390000084 ], [ -123.486310935999981, 48.413870786000054 ], [ -123.486315273999963, 48.414325732000115 ], [ -123.486693575999936, 48.414408961000071 ], [ -123.48753232099989, 48.414405411000068 ], [ -123.487534121999886, 48.414593885000059 ], [ -123.487897202999974, 48.414673762000085 ], [ -123.488751141999913, 48.414670138000062 ], [ -123.48875315, 48.414879711000076 ], [ -123.488997401999981, 48.414938989000106 ], [ -123.489564561999927, 48.414936578000052 ], [ -123.489565908999978, 48.415076957000096 ], [ -123.490090387999942, 48.41520423500004 ], [ -123.49078340599999, 48.415201282000055 ], [ -123.490785057, 48.415372812000058 ], [ -123.491183387999939, 48.415469473000023 ], [ -123.491596843999957, 48.415467707000062 ], [ -123.491597829999947, 48.415570040000027 ], [ -123.492276405, 48.415734699000033 ], [ -123.492815711999924, 48.415732390000116 ], [ -123.492817001999981, 48.415865872000012 ], [ -123.49336944, 48.415999915000093 ], [ -123.494034593999956, 48.415997060000045 ], [ -123.494036188999942, 48.416161689000027 ], [ -123.494462487999925, 48.416265119000052 ], [ -123.494848059999953, 48.416263462000074 ], [ -123.494832346999914, 48.4146441460001 ], [ -123.495078465999967, 48.414643087000087 ], [ -123.495067698999904, 48.414673392000026 ], [ -123.495015392999989, 48.414820597000102 ], [ -123.495080594999962, 48.4151676070001 ], [ -123.495499003999953, 48.41582670300005 ], [ -123.49579378599995, 48.416295409000043 ], [ -123.495838401999933, 48.416473194000112 ], [ -123.495800836999976, 48.416732738000093 ], [ -123.495789401999943, 48.416812005000082 ], [ -123.495580707999977, 48.417187599000073 ], [ -123.49482521500002, 48.416651737000052 ], [ -123.490519696999954, 48.41583779900003 ], [ -123.490427495999981, 48.415997891000053 ], [ -123.490306391999965, 48.416068997000131 ], [ -123.490089585999925, 48.416341589000126 ], [ -123.489855125999924, 48.416794999000018 ], [ -123.489469419999978, 48.417530710000079 ], [ -123.489357285999958, 48.417745482 ], [ -123.489083505999986, 48.418270110000051 ], [ -123.487970103999899, 48.417999287000093 ], [ -123.487759008999944, 48.417945220000021 ], [ -123.486876211999942, 48.417718992000097 ], [ -123.485756576999961, 48.417465192000044 ], [ -123.484668307, 48.417179586000053 ], [ -123.484354908999975, 48.41711168300003 ], [ -123.483462328999934, 48.417105778000128 ], [ -123.483190339999965, 48.41714625600013 ], [ -123.482988118999955, 48.416839359000079 ], [ -123.482910271999955, 48.416578687000033 ], [ -123.482734012999941, 48.416595238000134 ], [ -123.481619284999951, 48.416883402000067 ], [ -123.48160317899999, 48.416884552000099 ], [ -123.48149486899996, 48.416892283000031 ], [ -123.481325502999937, 48.416904389000116 ], [ -123.480995200999956, 48.416877871000089 ], [ -123.480847323999924, 48.416865971000114 ], [ -123.480701965999984, 48.417168131000054 ], [ -123.480207208999985, 48.418196208000026 ], [ -123.479844474999965, 48.418877446000067 ], [ -123.479010468999945, 48.418242744000111 ], [ -123.47895521599996, 48.418200691000074 ], [ -123.478524793999952, 48.41799829200005 ], [ -123.477685468999951, 48.417612351000109 ], [ -123.477184490999917, 48.417381999000057 ], [ -123.475395680999952, 48.416524163000112 ], [ -123.473843006999957, 48.415792703000058 ], [ -123.473261885999989, 48.416344298000062 ], [ -123.472963310999944, 48.416605883000074 ], [ -123.47246721499999, 48.417129690000088 ], [ -123.47087009, 48.418870799000082 ], [ -123.47066644399996, 48.41906388500017 ], [ -123.470547327999924, 48.419064373000026 ], [ -123.470548354999963, 48.419175849000062 ], [ -123.469054789999973, 48.420591897000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5425500", "BldgCostT": "3270000", "sL_LossRatio": "0.968930242499741", "sL_AssetLoss": "2994.23", "sL_BldgLoss": "2901.2", "sL_StrLoss": "2474.3", "sL_NStrLoss": "426.9", "sL_ContLoss": "93.03", "geom_point": "0101000020E6100000643A958847DD5EC049547FEFFC364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.459163507999946, 48.428181521000035 ], [ -123.460001222999963, 48.428201621000021 ], [ -123.459998335999927, 48.428255371000077 ], [ -123.459325838999945, 48.428721811000095 ], [ -123.457135890999908, 48.430240604000076 ], [ -123.457021112999897, 48.430391059000016 ], [ -123.456999408999962, 48.430419503000032 ], [ -123.456985253999903, 48.430470506000106 ], [ -123.456983587999943, 48.430476528000071 ], [ -123.456574882999959, 48.430517595000055 ], [ -123.455023392999948, 48.430964805000073 ], [ -123.454670695999965, 48.430903490000041 ], [ -123.45495259, 48.430659998000124 ], [ -123.456098997999945, 48.430222800000124 ], [ -123.457562988999982, 48.429308405 ], [ -123.458825899999951, 48.428385497000065 ], [ -123.459163507999946, 48.428181521000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141964501", "BldgCostT": "91065001", "sL_LossRatio": "0.91177865121668", "sL_AssetLoss": "156177.05", "sL_BldgLoss": "142398.9", "sL_StrLoss": "112577", "sL_NStrLoss": "29821.9", "sL_ContLoss": "13778.15", "geom_point": "0101000020E610000081CF626B6EDE5EC011DBFE11DD354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.47279849499995, 48.417731014000026 ], [ -123.472592717999987, 48.41740770300003 ], [ -123.472003303999941, 48.417806491000057 ], [ -123.470799646999922, 48.419063340000065 ], [ -123.47066644399996, 48.41906388500017 ], [ -123.47087009, 48.418870799000082 ], [ -123.47246721499999, 48.417129690000088 ], [ -123.472963310999944, 48.416605883000074 ], [ -123.473261885999989, 48.416344298000062 ], [ -123.473843006999957, 48.415792703000058 ], [ -123.475395680999952, 48.416524163000112 ], [ -123.477184490999917, 48.417381999000057 ], [ -123.477685468999951, 48.417612351000109 ], [ -123.478524793999952, 48.41799829200005 ], [ -123.47740759499996, 48.419394695000086 ], [ -123.478524681999929, 48.419899300000083 ], [ -123.47924427199996, 48.42024706100004 ], [ -123.479533401999987, 48.420386802000074 ], [ -123.480219187999964, 48.420706171000091 ], [ -123.480470897999979, 48.420768049000053 ], [ -123.480315073999989, 48.420983460000052 ], [ -123.479814429999976, 48.422364734000048 ], [ -123.479785243999942, 48.422445268000068 ], [ -123.479489611999938, 48.423258856000132 ], [ -123.479216694999934, 48.424000808000081 ], [ -123.479082003999949, 48.424426005000043 ], [ -123.478716547999966, 48.425293696000047 ], [ -123.47867992099998, 48.425380645000061 ], [ -123.478664997999928, 48.425416101000089 ], [ -123.478563411999943, 48.425395059000103 ], [ -123.478064515999947, 48.425291803000079 ], [ -123.478014285999961, 48.425196021000033 ], [ -123.477943304999911, 48.425060688 ], [ -123.473516308999962, 48.423967432000062 ], [ -123.473451109999957, 48.42384660500008 ], [ -123.472932687999929, 48.423407894000043 ], [ -123.472037887999988, 48.42301480600009 ], [ -123.471629990999958, 48.422747109000071 ], [ -123.471397908999933, 48.422541994000063 ], [ -123.471203793999933, 48.422110496000037 ], [ -123.471080684999961, 48.42033869500009 ], [ -123.471756106000029, 48.418923092000085 ], [ -123.472816099999946, 48.418064308000048 ], [ -123.47279849499995, 48.417731014000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.868773062730627", "sL_AssetLoss": "4336", "sL_BldgLoss": "3767", "sL_StrLoss": "2790", "sL_NStrLoss": "977", "sL_ContLoss": "569", "geom_point": "0101000020E6100000B3F5047010DE5EC06636E1C1C3354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.469054789999973, 48.420591897000051 ], [ -123.470548354999963, 48.419175849000062 ], [ -123.470549029999972, 48.419248856000152 ], [ -123.470620345000015, 48.419250561000062 ], [ -123.469606816999914, 48.420308803000104 ], [ -123.469042009999953, 48.42083075500009 ], [ -123.469054789999973, 48.420591897000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.916495691423882", "sL_AssetLoss": "4874", "sL_BldgLoss": "4467", "sL_StrLoss": "3188", "sL_NStrLoss": "1279", "sL_ContLoss": "407", "geom_point": "0101000020E6100000F38687725ADD5EC04DC38DE7F5364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.459325838999945, 48.428721811000095 ], [ -123.459998335999927, 48.428255371000077 ], [ -123.459975237999942, 48.428685442000081 ], [ -123.458794803999965, 48.429529190000061 ], [ -123.458162287999954, 48.42975559300001 ], [ -123.457411689999958, 48.43043351200005 ], [ -123.456983587999943, 48.430476528000071 ], [ -123.456985253999903, 48.430470506000106 ], [ -123.456999408999962, 48.430419503000032 ], [ -123.457021112999897, 48.430391059000016 ], [ -123.457135890999908, 48.430240604000076 ], [ -123.459325838999945, 48.428721811000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50999584", "BldgCostT": "34908334", "sL_LossRatio": "0.959194053059273", "sL_AssetLoss": "78843.9", "sL_BldgLoss": "75626.6", "sL_StrLoss": "65240.6", "sL_NStrLoss": "10386", "sL_ContLoss": "3217.3", "geom_point": "0101000020E6100000AEDADA677ADD5EC05ADCD2ACE44F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.445948337999951, 48.630015592000113 ], [ -123.445556227999987, 48.629996704000106 ], [ -123.444554151999981, 48.629984335000138 ], [ -123.444254971999953, 48.630005952000062 ], [ -123.444144818999959, 48.630013905000119 ], [ -123.443858651999932, 48.625390319000111 ], [ -123.446245420999958, 48.625447657000024 ], [ -123.446138761, 48.627413918000073 ], [ -123.448933642000014, 48.62748099099999 ], [ -123.448800559999981, 48.629936804000081 ], [ -123.452328133999956, 48.629923007000173 ], [ -123.452449026999929, 48.627689042000092 ], [ -123.453060598999969, 48.627703689000079 ], [ -123.453060601999965, 48.627703658000073 ], [ -123.454531672999963, 48.627738875000084 ], [ -123.454535450999984, 48.62766902400012 ], [ -123.454469934, 48.627667456000054 ], [ -123.454505398999927, 48.6270115290001 ], [ -123.454322566999977, 48.627007154000054 ], [ -123.454517281999969, 48.623405880000057 ], [ -123.45493866399994, 48.623415965000085 ], [ -123.45493641299997, 48.623165545000084 ], [ -123.455343496999944, 48.623163936000033 ], [ -123.455338641999916, 48.622624180000095 ], [ -123.455745719999953, 48.622622571000072 ], [ -123.455740859999977, 48.622082815000063 ], [ -123.457369156999974, 48.622076360000058 ], [ -123.457381787999964, 48.623474405000074 ], [ -123.457415493999946, 48.623475210000066 ], [ -123.457419066999989, 48.623409051000067 ], [ -123.459346003999926, 48.623455103000076 ], [ -123.459442882999952, 48.621659695000027 ], [ -123.460108466999898, 48.621675594000095 ], [ -123.460175620999948, 48.620430610000057 ], [ -123.462062438999936, 48.620475658000075 ], [ -123.462154635999923, 48.61876505400005 ], [ -123.46287666299996, 48.618782282000062 ], [ -123.462918047999949, 48.618014170000109 ], [ -123.463513077999906, 48.618028365000036 ], [ -123.463565174999971, 48.617061182000064 ], [ -123.464622356999925, 48.617086395000086 ], [ -123.464678289999981, 48.616047516000066 ], [ -123.466878124999965, 48.616003739000071 ], [ -123.470030145999971, 48.615869908000057 ], [ -123.471417915999936, 48.61587395800003 ], [ -123.47142297, 48.615884282000131 ], [ -123.471435067999934, 48.615909087000063 ], [ -123.471450345999983, 48.615940307000159 ], [ -123.471543915999973, 48.616131787000072 ], [ -123.471539735999954, 48.616543553000049 ], [ -123.471535232999955, 48.616988884000072 ], [ -123.471531298999977, 48.617375496000101 ], [ -123.471183036999932, 48.618972619000033 ], [ -123.471148607999908, 48.619005986000097 ], [ -123.471058308999915, 48.619518701000047 ], [ -123.471042634999961, 48.619547266000026 ], [ -123.470189531999949, 48.619526973000077 ], [ -123.470114920999933, 48.620915684000124 ], [ -123.469181603999971, 48.621928493000077 ], [ -123.469157222999939, 48.621988548000076 ], [ -123.468885483999884, 48.621982080000116 ], [ -123.468867395999922, 48.622318565000093 ], [ -123.468262017999905, 48.622304154000062 ], [ -123.468239793999913, 48.622717479000045 ], [ -123.467768677999942, 48.622706262000101 ], [ -123.467744597999939, 48.623153989000066 ], [ -123.467387595999966, 48.62314548800002 ], [ -123.46736510599996, 48.623563597000079 ], [ -123.466404172999944, 48.623540710000064 ], [ -123.466370467999951, 48.624167062000055 ], [ -123.466947482999913, 48.624180807000144 ], [ -123.46689715899997, 48.6251161530001 ], [ -123.466528695999983, 48.625808010000078 ], [ -123.466233809999949, 48.626034493000098 ], [ -123.465800483999985, 48.626161193000023 ], [ -123.465260909999969, 48.626460289000107 ], [ -123.46518469199999, 48.627064197000081 ], [ -123.46482241199999, 48.627451497000045 ], [ -123.464787092999984, 48.628055414000059 ], [ -123.464748195999945, 48.628334611000128 ], [ -123.464424393999977, 48.628677787000072 ], [ -123.464471101999962, 48.629099395000082 ], [ -123.465743657999937, 48.630075401000049 ], [ -123.46477628299999, 48.630068901000065 ], [ -123.463698183999938, 48.630084692000054 ], [ -123.463648889999888, 48.630119595000082 ], [ -123.458080716999945, 48.630049691000117 ], [ -123.457258179999911, 48.630045820000063 ], [ -123.456253823999944, 48.630041074000061 ], [ -123.455127533, 48.630035737000064 ], [ -123.454516871999957, 48.630032856000078 ], [ -123.454069061999917, 48.630030740000066 ], [ -123.45187620800003, 48.630020258000066 ], [ -123.451075204999967, 48.630048869000085 ], [ -123.449666333999971, 48.630217033000058 ], [ -123.448974676999939, 48.630227478000116 ], [ -123.446525265, 48.630043392000083 ], [ -123.445948337999951, 48.630015592000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60165835", "BldgCostT": "35918335", "sL_LossRatio": "0.74146630187789", "sL_AssetLoss": "241601", "sL_BldgLoss": "179139", "sL_StrLoss": "99322", "sL_NStrLoss": "79817", "sL_ContLoss": "62462", "geom_point": "0101000020E61000000B9099F2BEDC5EC09467B9C72D564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.434881226999977, 48.677045608000043 ], [ -123.434955357999939, 48.67568656100012 ], [ -123.436890550999948, 48.675733163000039 ], [ -123.43707856199994, 48.672283402000062 ], [ -123.442496556999984, 48.672413689000095 ], [ -123.4423077599999, 48.675885211000036 ], [ -123.443185440999969, 48.675906291000111 ], [ -123.44317301699999, 48.674489755000089 ], [ -123.443580513999962, 48.674488186000119 ], [ -123.443578143999957, 48.674218311000125 ], [ -123.443895853999933, 48.674217087000045 ], [ -123.443896684999942, 48.674201776000054 ], [ -123.444446165999949, 48.674214966000115 ], [ -123.445163980999951, 48.674212194000127 ], [ -123.445164235999968, 48.674207507000098 ], [ -123.445230136999925, 48.674209088000019 ], [ -123.445253956999963, 48.673770607000044 ], [ -123.446215331999966, 48.673793671000055 ], [ -123.446219721999952, 48.673712830000078 ], [ -123.451637905999974, 48.67384265200009 ], [ -123.451605814999979, 48.674434880000092 ], [ -123.45205972499997, 48.674445744000074 ], [ -123.45197209, 48.67606320900002 ], [ -123.452462468999926, 48.676074943000032 ], [ -123.45246424299998, 48.676042191000064 ], [ -123.452514083999972, 48.676043384000096 ], [ -123.452689613999951, 48.672802887000074 ], [ -123.45562155399989, 48.672872994000109 ], [ -123.455634587999924, 48.672632092000136 ], [ -123.45299540399995, 48.672568989000084 ], [ -123.453025000999929, 48.672022469000119 ], [ -123.452931159999977, 48.672022836000096 ], [ -123.45292390399996, 48.671213212000083 ], [ -123.453068857999966, 48.671212640000128 ], [ -123.453190408999973, 48.668967987000016 ], [ -123.455482593999932, 48.669022798000078 ], [ -123.455563615999921, 48.66752511100001 ], [ -123.4549328799999, 48.667510034000045 ], [ -123.454920860999934, 48.66773216600015 ], [ -123.453561786999899, 48.667699666000082 ], [ -123.453553213999911, 48.667858 ], [ -123.448135712999914, 48.667728274000098 ], [ -123.448163995999906, 48.667206969000105 ], [ -123.448118342999919, 48.667205875000057 ], [ -123.448173148999956, 48.666195682000094 ], [ -123.456812374999956, 48.666224211000035 ], [ -123.456818754, 48.666226678000072 ], [ -123.457165416999914, 48.666360698000062 ], [ -123.457400311999947, 48.666480788000072 ], [ -123.457587393999916, 48.666631294000084 ], [ -123.457726405999935, 48.666820304000083 ], [ -123.457797890999942, 48.667028508000115 ], [ -123.457815538999967, 48.667373016000056 ], [ -123.457845389999974, 48.66795629300006 ], [ -123.45784243, 48.671939293000065 ], [ -123.457841290999937, 48.673425004000116 ], [ -123.457767495999946, 48.677099232000096 ], [ -123.454953516999979, 48.67709126900008 ], [ -123.445785586999975, 48.67706487100002 ], [ -123.44449336, 48.677061083000112 ], [ -123.438746797999912, 48.677044091000042 ], [ -123.436286835, 48.677036690000087 ], [ -123.434881226999977, 48.677045608000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222417750", "BldgCostT": "147675000", "sL_LossRatio": "0.842405914206696", "sL_AssetLoss": "883486.2", "sL_BldgLoss": "744254", "sL_StrLoss": "445605", "sL_NStrLoss": "298649", "sL_ContLoss": "139232.2", "geom_point": "0101000020E61000007F66DEE496DB5EC01EAA189DE2544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.427756825999936, 48.675618210000096 ], [ -123.427691296999981, 48.675572812000013 ], [ -123.427682298999983, 48.675579860000056 ], [ -123.427430502000021, 48.675777517000057 ], [ -123.427372639999959, 48.675797123000095 ], [ -123.4268694299999, 48.67596761300009 ], [ -123.42645822899999, 48.675997326000143 ], [ -123.426098942999928, 48.675919252000021 ], [ -123.425316492999954, 48.675544258000031 ], [ -123.424986975999929, 48.675419097000038 ], [ -123.424895714999963, 48.67536334400009 ], [ -123.424345180999978, 48.675026796000083 ], [ -123.424156064999963, 48.674616562000026 ], [ -123.424074662999942, 48.673948440000039 ], [ -123.423943109999968, 48.673081710000076 ], [ -123.423790187999941, 48.672753482000083 ], [ -123.423569678999982, 48.672446158000092 ], [ -123.423136034999928, 48.672067895000076 ], [ -123.422627141999953, 48.671776131000072 ], [ -123.422455676999959, 48.671708635000108 ], [ -123.422429673999886, 48.671698379000141 ], [ -123.421798838999962, 48.671450211000071 ], [ -123.42021750899994, 48.67082810300014 ], [ -123.41827301899994, 48.67042759700005 ], [ -123.418002712, 48.67028579400003 ], [ -123.417878894, 48.670144876000052 ], [ -123.417681392999924, 48.669394589000063 ], [ -123.417582559999971, 48.669022335000122 ], [ -123.41755678799997, 48.66892534300014 ], [ -123.417547673999977, 48.668891059000096 ], [ -123.417318441, 48.668051673000051 ], [ -123.417282909999969, 48.667919929000099 ], [ -123.417247484999919, 48.667788528000109 ], [ -123.417126180999944, 48.667354691000149 ], [ -123.417054277999938, 48.667099384000025 ], [ -123.416787996999957, 48.666153873 ], [ -123.416797618999951, 48.664322549000154 ], [ -123.416798898999957, 48.664079672000049 ], [ -123.41680018299995, 48.663832971000048 ], [ -123.4168030599999, 48.663484168000089 ], [ -123.416804836999972, 48.662513367000074 ], [ -123.416807523999978, 48.662217763000086 ], [ -123.416813081999948, 48.661696861000088 ], [ -123.416808924999941, 48.66140199100002 ], [ -123.416813991999945, 48.659806226000093 ], [ -123.416816438999916, 48.659043067000063 ], [ -123.416817135999949, 48.658709554000019 ], [ -123.416823775999887, 48.657057343000083 ], [ -123.416832514999939, 48.655342102000048 ], [ -123.416832171999914, 48.655033793000079 ], [ -123.416986805999983, 48.655030807000081 ], [ -123.425434101999926, 48.653427505000117 ], [ -123.425560078999979, 48.654864896000078 ], [ -123.434531403999941, 48.655044626000112 ], [ -123.43648513, 48.655072023000045 ], [ -123.436485229999931, 48.655083551000061 ], [ -123.436892568999923, 48.655082006000072 ], [ -123.436892532999977, 48.655077731000127 ], [ -123.44463779199999, 48.655185960000075 ], [ -123.444660317999961, 48.654847367000087 ], [ -123.444567454999941, 48.654413710000021 ], [ -123.44554540199999, 48.654442504000066 ], [ -123.445776109999912, 48.655388027000093 ], [ -123.446190494999925, 48.65683486900015 ], [ -123.446203509, 48.656880303000094 ], [ -123.446674119999926, 48.658028293000029 ], [ -123.446883886999956, 48.658533614000078 ], [ -123.447288994999909, 48.659063408000065 ], [ -123.448374602999976, 48.659747509000169 ], [ -123.448981995999986, 48.660174005000087 ], [ -123.449685607, 48.6606758980001 ], [ -123.450164088999983, 48.661178610000043 ], [ -123.450385795000031, 48.661466100000069 ], [ -123.450623709999903, 48.662580499000057 ], [ -123.450647798999952, 48.662609031000081 ], [ -123.450730315999976, 48.662706684000057 ], [ -123.450656788999979, 48.66270625500006 ], [ -123.447890627999968, 48.662690140000073 ], [ -123.446850577999925, 48.662684082000062 ], [ -123.444206784999949, 48.662668596000096 ], [ -123.444125887999988, 48.662668094000011 ], [ -123.444048203999913, 48.666181813000037 ], [ -123.447470984999981, 48.66619333200007 ], [ -123.447401048999964, 48.667482052000075 ], [ -123.445875079999908, 48.667445450000066 ], [ -123.445872688999941, 48.667489489000069 ], [ -123.445239037999954, 48.667474285000047 ], [ -123.445099898999985, 48.670035800000029 ], [ -123.439682170999944, 48.669905645000085 ], [ -123.439811778999967, 48.667524644000039 ], [ -123.438002153999932, 48.667481108000096 ], [ -123.438005014999987, 48.667428592000078 ], [ -123.437553834999932, 48.66741773400004 ], [ -123.437543064999886, 48.667615393000034 ], [ -123.435840585999969, 48.667574399000024 ], [ -123.435828207999975, 48.667801435000051 ], [ -123.433340331999915, 48.667741481000078 ], [ -123.433334611999967, 48.667846296000043 ], [ -123.431115405999975, 48.667792767000051 ], [ -123.43111250799997, 48.667845824000104 ], [ -123.431420994999939, 48.667853268000059 ], [ -123.431413744999972, 48.667986011000046 ], [ -123.43231467, 48.668007745000097 ], [ -123.432118073, 48.671608713000182 ], [ -123.427375655999967, 48.671494223000067 ], [ -123.427321842999959, 48.671492923000123 ], [ -123.427257962999946, 48.672660688000065 ], [ -123.427672116999972, 48.672659150000108 ], [ -123.427669833, 48.672389274000139 ], [ -123.428325795999967, 48.672386837000069 ], [ -123.428892274999967, 48.672384729000029 ], [ -123.428894565999911, 48.672654605000034 ], [ -123.43052449799994, 48.672648526000017 ], [ -123.430542892999952, 48.674807535000035 ], [ -123.430135392999972, 48.674809058000065 ], [ -123.430136278999896, 48.674913099000101 ], [ -123.432588475999964, 48.674972258000011 ], [ -123.432587335999983, 48.674993130000054 ], [ -123.433139555999915, 48.675006444000111 ], [ -123.433027608999936, 48.677057341000094 ], [ -123.430421030999966, 48.677073782000072 ], [ -123.429951822999911, 48.677023517000059 ], [ -123.429584979999959, 48.676984199000046 ], [ -123.428753827999941, 48.676878497000125 ], [ -123.427391798999963, 48.67665810700003 ], [ -123.427359956999965, 48.676644487 ], [ -123.427206288999983, 48.67657880400003 ], [ -123.427132389999912, 48.676516593000088 ], [ -123.427102602999966, 48.676416713000044 ], [ -123.42711610500001, 48.67631788500006 ], [ -123.427180880999984, 48.676224807000068 ], [ -123.427564095999927, 48.675864515000086 ], [ -123.427813099999952, 48.675670340000117 ], [ -123.427821998999946, 48.675663385000092 ], [ -123.427756825999936, 48.675618210000096 ] ], [ [ -123.425879212999988, 48.669994411000033 ], [ -123.425929294999918, 48.669079337000014 ], [ -123.425620801999955, 48.669071878000075 ], [ -123.425653311999938, 48.668477937000084 ], [ -123.425437798999951, 48.66847272600009 ], [ -123.425421248999939, 48.668775087000029 ], [ -123.424085672999922, 48.668742778000123 ], [ -123.421519491999959, 48.668680655000124 ], [ -123.4215072759999, 48.668903484000033 ], [ -123.423565614999973, 48.668895934000041 ], [ -123.423571820999925, 48.669636335000085 ], [ -123.423722282999975, 48.669639976000028 ], [ -123.423712607999931, 48.669816609000051 ], [ -123.42402088399993, 48.669824070000082 ], [ -123.424014025999895, 48.669949296000013 ], [ -123.425573382999985, 48.669987016000078 ], [ -123.425879212999988, 48.669994411000033 ] ], [ [ -123.430301690999926, 48.660673795000044 ], [ -123.430307862999896, 48.660560798000056 ], [ -123.430055910999968, 48.660554714000106 ], [ -123.430054977999973, 48.660571798000056 ], [ -123.427909357999908, 48.660519970000074 ], [ -123.427763830999979, 48.663181447000035 ], [ -123.424473200999941, 48.663101877000081 ], [ -123.424473037999974, 48.663304262000111 ], [ -123.423926127999962, 48.663298156000018 ], [ -123.423927648999907, 48.663479656000085 ], [ -123.424523238999939, 48.663477561000057 ], [ -123.424524537999943, 48.663666361000061 ], [ -123.423929231999963, 48.663668456000082 ], [ -123.423932634999943, 48.664074052000032 ], [ -123.425220898999953, 48.664105221000092 ], [ -123.42521894, 48.664141008000108 ], [ -123.425284397999974, 48.664142591000072 ], [ -123.425290286999925, 48.664034989000044 ], [ -123.427282448999918, 48.664083156000061 ], [ -123.427285407999932, 48.664029036000066 ], [ -123.428297277, 48.664053488000043 ], [ -123.428477742999974, 48.660752356000103 ], [ -123.430170890999989, 48.660793249000079 ], [ -123.430177579999963, 48.660670798000098 ], [ -123.430301690999926, 48.660673795000044 ] ], [ [ -123.421469835000011, 48.661886607000071 ], [ -123.421469331999972, 48.661826327000064 ], [ -123.420246859999963, 48.661796705000093 ], [ -123.420247644999961, 48.661891072000088 ], [ -123.421469835000011, 48.661886607000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "283670261", "BldgCostT": "166419938", "sL_LossRatio": "0.644944007048798", "sL_AssetLoss": "1874021.6", "sL_BldgLoss": "1208639", "sL_StrLoss": "491714", "sL_NStrLoss": "716925", "sL_ContLoss": "665382.6", "geom_point": "0101000020E61000003FE2D22976DA5EC0FFFF833824544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.416315562999898, 48.662583553000033 ], [ -123.416259293999985, 48.662571281000112 ], [ -123.415350808000014, 48.662570005000113 ], [ -123.412364296999982, 48.66258130000007 ], [ -123.41238131599999, 48.662024598000066 ], [ -123.412946295999973, 48.661490296000061 ], [ -123.41327798199994, 48.661179210000036 ], [ -123.413338911999958, 48.661009397000079 ], [ -123.413313191999961, 48.660909592000117 ], [ -123.413009809999949, 48.660532705000044 ], [ -123.41278499199997, 48.660405511000057 ], [ -123.41258759099999, 48.66036919800009 ], [ -123.411166885999975, 48.660363498000038 ], [ -123.410117698999983, 48.660357803000103 ], [ -123.410143717999958, 48.659934713000077 ], [ -123.410155994999982, 48.658727091000088 ], [ -123.410164996999967, 48.65789788700004 ], [ -123.410150293999962, 48.657057401000031 ], [ -123.410159509, 48.656199507000018 ], [ -123.410173507999986, 48.655329895000087 ], [ -123.408623791999958, 48.65532999800007 ], [ -123.408631347999943, 48.654258065000064 ], [ -123.408638718999953, 48.653214704000028 ], [ -123.409648507999933, 48.653218489000011 ], [ -123.410059404999984, 48.653166625000104 ], [ -123.410257363999932, 48.653173527000021 ], [ -123.411054011999951, 48.653201305000039 ], [ -123.411193953999913, 48.653202833000137 ], [ -123.41239797899999, 48.653215990000042 ], [ -123.416830272999945, 48.653235295000101 ], [ -123.416830747999967, 48.653661885000076 ], [ -123.416831491999943, 48.654372597000069 ], [ -123.416832171999914, 48.655033793000079 ], [ -123.416832514999939, 48.655342102000048 ], [ -123.416823775999887, 48.657057343000083 ], [ -123.416817135999949, 48.658709554000019 ], [ -123.416816438999916, 48.659043067000063 ], [ -123.416813991999945, 48.659806226000093 ], [ -123.416808924999941, 48.66140199100002 ], [ -123.416813081999948, 48.661696861000088 ], [ -123.416807523999978, 48.662217763000086 ], [ -123.416804836999972, 48.662513367000074 ], [ -123.4168030599999, 48.663484168000089 ], [ -123.416799968999925, 48.662997320000073 ], [ -123.416755269999939, 48.662871815000074 ], [ -123.41661068099998, 48.662716006000068 ], [ -123.416404012000015, 48.662602815000078 ], [ -123.416315562999898, 48.662583553000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19590834", "BldgCostT": "12983334", "sL_LossRatio": "0.821347187186436", "sL_AssetLoss": "106637", "sL_BldgLoss": "87586", "sL_StrLoss": "58400", "sL_NStrLoss": "29186", "sL_ContLoss": "19051", "geom_point": "0101000020E6100000581864C3C1DC5EC061E41BC011554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.444048203999913, 48.666181813000037 ], [ -123.444125887999988, 48.662668094000011 ], [ -123.444206784999949, 48.662668596000096 ], [ -123.446850577999925, 48.662684082000062 ], [ -123.447890627999968, 48.662690140000073 ], [ -123.450656788999979, 48.66270625500006 ], [ -123.450730315999976, 48.662706684000057 ], [ -123.45111389299997, 48.66256217500009 ], [ -123.451321595999929, 48.662851689000021 ], [ -123.452072020999964, 48.663190698000022 ], [ -123.452740406999965, 48.663619302000015 ], [ -123.453464108999938, 48.663922696000014 ], [ -123.453684513999988, 48.664227502000088 ], [ -123.454263480999927, 48.664646064000067 ], [ -123.455256620999961, 48.665363999000128 ], [ -123.456618306999971, 48.665925092000123 ], [ -123.457012599999985, 48.66597780200005 ], [ -123.457759782999943, 48.665983501000092 ], [ -123.458030319999978, 48.665943114000079 ], [ -123.4581341499999, 48.666310501000041 ], [ -123.456812374999956, 48.666224211000035 ], [ -123.448173148999956, 48.666195682000094 ], [ -123.448227292999945, 48.66519766699999 ], [ -123.447998358999968, 48.665192178000083 ], [ -123.448014636999986, 48.664892134000084 ], [ -123.447624064999928, 48.664882770000105 ], [ -123.447634744999959, 48.664685937000094 ], [ -123.447552890999972, 48.664683975000081 ], [ -123.447470984999981, 48.66619333200007 ], [ -123.444048203999913, 48.666181813000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.863574725807472", "sL_AssetLoss": "14232.7", "sL_BldgLoss": "12291", "sL_StrLoss": "8110", "sL_NStrLoss": "4181", "sL_ContLoss": "1941.7", "geom_point": "0101000020E610000050ACAE9EAEDC5EC04ECF1EDC5B544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.445776109999912, 48.655388027000093 ], [ -123.446101768999966, 48.655354627000115 ], [ -123.446260905999935, 48.655629484000038 ], [ -123.446668297, 48.657282999000124 ], [ -123.44723510599999, 48.658486496000087 ], [ -123.4477582009999, 48.659068989000033 ], [ -123.448520398999932, 48.659480599000069 ], [ -123.449777790999946, 48.660347913000081 ], [ -123.4506832899999, 48.661406099 ], [ -123.450909802999888, 48.662277696000103 ], [ -123.45111389299997, 48.66256217500009 ], [ -123.450730315999976, 48.662706684000057 ], [ -123.450647798999952, 48.662609031000081 ], [ -123.450623709999903, 48.662580499000057 ], [ -123.450385795000031, 48.661466100000069 ], [ -123.450164088999983, 48.661178610000043 ], [ -123.449685607, 48.6606758980001 ], [ -123.448981995999986, 48.660174005000087 ], [ -123.448374602999976, 48.659747509000169 ], [ -123.447288994999909, 48.659063408000065 ], [ -123.446883886999956, 48.658533614000078 ], [ -123.446674119999926, 48.658028293000029 ], [ -123.446203509, 48.656880303000094 ], [ -123.446190494999925, 48.65683486900015 ], [ -123.445776109999912, 48.655388027000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168536834", "BldgCostT": "114553334", "sL_LossRatio": "0.894154954890301", "sL_AssetLoss": "490482.1", "sL_BldgLoss": "438567", "sL_StrLoss": "317141", "sL_NStrLoss": "121426", "sL_ContLoss": "51915.1", "geom_point": "0101000020E610000093BCD79C45DE5EC0FF63C68011574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.457803786999975, 48.696900902000081 ], [ -123.457805504999953, 48.695716606000126 ], [ -123.45874418599999, 48.695671410000024 ], [ -123.459561832999967, 48.695490556000038 ], [ -123.460657212999976, 48.695248300000102 ], [ -123.461979215999961, 48.695317600000074 ], [ -123.46269411900002, 48.695374907000037 ], [ -123.463862089999935, 48.695468549000111 ], [ -123.464566511, 48.695524991000077 ], [ -123.464698887999958, 48.695535603000067 ], [ -123.465233465999972, 48.695568897 ], [ -123.467088620999931, 48.695684403000065 ], [ -123.467339911999943, 48.695679596000076 ], [ -123.470040795, 48.695239009000062 ], [ -123.470520041999961, 48.695161384000109 ], [ -123.474034983, 48.694591997000025 ], [ -123.474792998999931, 48.694475595000085 ], [ -123.475806105999979, 48.694258082000012 ], [ -123.47589227099999, 48.694232779000046 ], [ -123.477359813999939, 48.693801807000057 ], [ -123.47959891299999, 48.692986800000099 ], [ -123.479937585999977, 48.692793800000082 ], [ -123.480177116999926, 48.692597719000048 ], [ -123.480339799999925, 48.692475829000045 ], [ -123.480419022999968, 48.692422714000031 ], [ -123.480427036999941, 48.692422682000064 ], [ -123.480426987999962, 48.692417375000041 ], [ -123.480528845999942, 48.692349083000074 ], [ -123.48062333499999, 48.692285722000051 ], [ -123.48070437, 48.692231398000096 ], [ -123.480856939999967, 48.692151003000113 ], [ -123.480953721999938, 48.692150600000062 ], [ -123.480992855999943, 48.692150436000112 ], [ -123.481238422999965, 48.692010763000077 ], [ -123.481238158999943, 48.691982998000086 ], [ -123.481326761999938, 48.691949926000071 ], [ -123.481556876999889, 48.691858991000117 ], [ -123.481854755, 48.691749793999989 ], [ -123.48201654799999, 48.691614175000019 ], [ -123.48209635799995, 48.691433933000035 ], [ -123.482094541999942, 48.691245023000128 ], [ -123.482093083999928, 48.691092071000071 ], [ -123.481969017999987, 48.690903687000066 ], [ -123.4816197009999, 48.69071302600004 ], [ -123.481295611999897, 48.690618491000052 ], [ -123.481225006999978, 48.690603039000045 ], [ -123.481224916999949, 48.690593555000092 ], [ -123.480997206999959, 48.690553185000056 ], [ -123.480034991999958, 48.690342597000075 ], [ -123.478752298999936, 48.69015515899999 ], [ -123.477951733999987, 48.690013204000074 ], [ -123.477950404999945, 48.690037970000077 ], [ -123.477642809999921, 48.689993017000091 ], [ -123.47666021699996, 48.689872170000115 ], [ -123.474802983999922, 48.689643740000101 ], [ -123.474583200999945, 48.689616687000147 ], [ -123.474204196999935, 48.68952390200009 ], [ -123.474090739999937, 48.689471194000106 ], [ -123.473682700999959, 48.689281698000066 ], [ -123.473204303, 48.688958336000034 ], [ -123.472788481999942, 48.68867728500009 ], [ -123.472380606999963, 48.688316082000036 ], [ -123.472066711, 48.687972398000106 ], [ -123.471904608999964, 48.687707184000026 ], [ -123.47181709399996, 48.687441901000071 ], [ -123.471496437999946, 48.686490195000083 ], [ -123.471391501999975, 48.6861787120001 ], [ -123.4713404929999, 48.686027279 ], [ -123.470978287999912, 48.684952195000037 ], [ -123.470894607999924, 48.684591399000126 ], [ -123.470911401999942, 48.684422630000078 ], [ -123.470926997999968, 48.684265907000103 ], [ -123.471691102999941, 48.683528696000025 ], [ -123.472115212999981, 48.682905994000059 ], [ -123.472185105999941, 48.682565105000087 ], [ -123.472185894999939, 48.682348808000064 ], [ -123.472127785999959, 48.682092298000057 ], [ -123.471866301999981, 48.681430788000064 ], [ -123.471662709999933, 48.68110508800001 ], [ -123.471347812, 48.680780299000055 ], [ -123.471317015999944, 48.680703288000124 ], [ -123.471288279999939, 48.680631319000071 ], [ -123.471272496999987, 48.680591915000086 ], [ -123.471277219999976, 48.679549630000068 ], [ -123.471279799999976, 48.678973822000103 ], [ -123.471280214999979, 48.678884001000092 ], [ -123.471421519999978, 48.678884898000028 ], [ -123.472236477, 48.678889962000035 ], [ -123.472724305999961, 48.678893017000036 ], [ -123.472997304999978, 48.678861592000011 ], [ -123.473226796999967, 48.678756205000063 ], [ -123.474089299999989, 48.67822947800007 ], [ -123.474394101999962, 48.678109590000062 ], [ -123.474891810999978, 48.678061092000092 ], [ -123.475636989999927, 48.678076908000016 ], [ -123.475949106999934, 48.678124895000032 ], [ -123.476148303999977, 48.67823060200007 ], [ -123.476446722, 48.678482801000051 ], [ -123.476727378999925, 48.678864394000072 ], [ -123.47695860099999, 48.678927599000069 ], [ -123.477953891999945, 48.678934110000036 ], [ -123.480787895999924, 48.678951591000022 ], [ -123.481510215999961, 48.678964194000073 ], [ -123.48223278599994, 48.679149788000061 ], [ -123.482652198999958, 48.678965896000129 ], [ -123.483464177999977, 48.678493891000102 ], [ -123.485337810999937, 48.677143705000077 ], [ -123.485327916999935, 48.676946902000068 ], [ -123.48524850699999, 48.676859389000136 ], [ -123.484878195999926, 48.676656886000032 ], [ -123.482035515999968, 48.675361099000071 ], [ -123.48165549399999, 48.675189263000078 ], [ -123.48123828699994, 48.675000600000025 ], [ -123.481113820999937, 48.67489401000006 ], [ -123.480418972999971, 48.673507403000031 ], [ -123.480426081999951, 48.671857097000085 ], [ -123.480394303999944, 48.671741879000081 ], [ -123.480283992999944, 48.671674405000068 ], [ -123.477648096999957, 48.670498688000102 ], [ -123.47748409899998, 48.670370488000053 ], [ -123.477201897999976, 48.669893210000033 ], [ -123.474121135999923, 48.669873259000042 ], [ -123.472805289999926, 48.669864694000054 ], [ -123.47245618, 48.669815736000018 ], [ -123.472126884999909, 48.669769553000066 ], [ -123.472112608999979, 48.669759006000085 ], [ -123.470955894, 48.669731502000026 ], [ -123.47043877499999, 48.66930909400002 ], [ -123.470419518999975, 48.668030401000109 ], [ -123.470287792999954, 48.667905612000041 ], [ -123.460874556999926, 48.667944103000053 ], [ -123.457845389999974, 48.66795629300006 ], [ -123.457815538999967, 48.667373016000056 ], [ -123.457797890999942, 48.667028508000115 ], [ -123.457726405999935, 48.666820304000083 ], [ -123.457587393999916, 48.666631294000084 ], [ -123.457400311999947, 48.666480788000072 ], [ -123.457165416999914, 48.666360698000062 ], [ -123.456818754, 48.666226678000072 ], [ -123.456812374999956, 48.666224211000035 ], [ -123.4581341499999, 48.666310501000041 ], [ -123.458030319999978, 48.665943114000079 ], [ -123.459428483999943, 48.665734292000067 ], [ -123.460107305999912, 48.665731389000037 ], [ -123.46059808199999, 48.665811205000054 ], [ -123.46155009899995, 48.666148702 ], [ -123.461915576999914, 48.66617333300006 ], [ -123.462691614999954, 48.666225608000076 ], [ -123.46344921299999, 48.665933697000099 ], [ -123.465454995999934, 48.665440915000033 ], [ -123.466746615999952, 48.665560504000055 ], [ -123.46714039499993, 48.665532102000086 ], [ -123.46749351499993, 48.665450905000043 ], [ -123.468034, 48.665168908000119 ], [ -123.469147113999924, 48.665056397000058 ], [ -123.46985241599999, 48.664358912000104 ], [ -123.469887407999963, 48.664324305000029 ], [ -123.470156021999955, 48.664162004000104 ], [ -123.470510382999962, 48.664160496000108 ], [ -123.471383722999974, 48.664679003000032 ], [ -123.47237779299995, 48.664962401000018 ], [ -123.47278618899999, 48.664979511000119 ], [ -123.473373901999977, 48.665443812000014 ], [ -123.47335050099997, 48.665592851999989 ], [ -123.473308882999973, 48.665858191000076 ], [ -123.473611212999941, 48.666234197000094 ], [ -123.473559504, 48.666487691000079 ], [ -123.473221486999961, 48.666695600000025 ], [ -123.473101712999977, 48.666966186000103 ], [ -123.472220891999925, 48.666960496000051 ], [ -123.47205800399999, 48.667014684000087 ], [ -123.471922191999923, 48.667141401000066 ], [ -123.471871911999983, 48.667474708 ], [ -123.472216698999986, 48.668094206000021 ], [ -123.472532494999939, 48.668443113000087 ], [ -123.473312786999927, 48.669007099000098 ], [ -123.474307386999953, 48.669353208000082 ], [ -123.474631791999968, 48.669351806000037 ], [ -123.475038205999923, 48.669044190000115 ], [ -123.475457492999951, 48.668953007 ], [ -123.476896496999984, 48.668974407000078 ], [ -123.477073391999937, 48.668866109000064 ], [ -123.477218588999946, 48.66842460000003 ], [ -123.477406612999957, 48.668252287 ], [ -123.477609192999964, 48.668215297000081 ], [ -123.478236793999912, 48.668312094000044 ], [ -123.478591099999932, 48.668490087000073 ], [ -123.47852881299994, 48.669075505000137 ], [ -123.477838386999949, 48.669393107000133 ], [ -123.477869999999896, 48.669816086000054 ], [ -123.478525801999965, 48.670244796000063 ], [ -123.479195697999927, 48.670429817000105 ], [ -123.479190619999954, 48.67052458000007 ], [ -123.479284773999936, 48.670566780000094 ], [ -123.479623080999914, 48.670565373000109 ], [ -123.479812531999954, 48.670650137000074 ], [ -123.479813982999985, 48.670802939000055 ], [ -123.479893456999974, 48.670834132000017 ], [ -123.480220724999967, 48.6708327690001 ], [ -123.480775113999968, 48.671080804000091 ], [ -123.481039783999947, 48.671155612000135 ], [ -123.481040186999962, 48.671198109000066 ], [ -123.481529638999916, 48.671320061000046 ], [ -123.481672571999965, 48.671366477000035 ], [ -123.481746734999959, 48.671366167000038 ], [ -123.481857246999979, 48.671417340000055 ], [ -123.481857334999958, 48.671426475 ], [ -123.48192309199996, 48.671447828000041 ], [ -123.48215392899999, 48.671554717000085 ], [ -123.482310137999917, 48.671649661000075 ], [ -123.482537238, 48.672045662000095 ], [ -123.482544660999935, 48.672176193000041 ], [ -123.482497587999916, 48.67226139200006 ], [ -123.48226629899996, 48.672307008000089 ], [ -123.481574095999974, 48.672247199000033 ], [ -123.481262499999914, 48.672428102000104 ], [ -123.48118935299999, 48.67255134600002 ], [ -123.481129137999986, 48.67259326100006 ], [ -123.481055863, 48.672844701000024 ], [ -123.481059522999942, 48.673229070000033 ], [ -123.481184579999947, 48.673432205000026 ], [ -123.481205237999944, 48.673465762000028 ], [ -123.481265924999946, 48.673507259000054 ], [ -123.481343408999962, 48.673642893000086 ], [ -123.481518890999951, 48.673731211000089 ], [ -123.481958082999967, 48.673764022000057 ], [ -123.48196823799999, 48.673770961000116 ], [ -123.481898838999925, 48.673882761000065 ], [ -123.481651437999986, 48.674080961000101 ], [ -123.48161283799999, 48.674172961000068 ], [ -123.481608970999929, 48.674335478000145 ], [ -123.481804241999967, 48.674334662000106 ], [ -123.481886082999935, 48.67444112000004 ], [ -123.481887637999989, 48.674604198000083 ], [ -123.482011054999973, 48.674603681000058 ], [ -123.482113304999942, 48.674736684000017 ], [ -123.482591795999966, 48.674968893000027 ], [ -123.483570957999959, 48.675144200000091 ], [ -123.483672869999936, 48.675213830000082 ], [ -123.483749449999962, 48.675310954000032 ], [ -123.483756738999944, 48.675324262000068 ], [ -123.483735911999972, 48.675406107000128 ], [ -123.483824182999911, 48.675405736000066 ], [ -123.483900792999975, 48.675502898000069 ], [ -123.484678100999986, 48.675886105000124 ], [ -123.485161470999955, 48.67603470100002 ], [ -123.485162437999946, 48.676135580000086 ], [ -123.485174838999924, 48.6761384610001 ], [ -123.48561053799996, 48.676179162000011 ], [ -123.485715046999985, 48.676207434000027 ], [ -123.485978166999985, 48.676206324000141 ], [ -123.485978910999975, 48.676283631000089 ], [ -123.486274464999923, 48.676474959000089 ], [ -123.48628069199998, 48.676474933000058 ], [ -123.48638879799995, 48.676528933000057 ], [ -123.486388991999917, 48.676549099000034 ], [ -123.486420138999932, 48.676569261000139 ], [ -123.48678113699998, 48.676693562 ], [ -123.486857995999955, 48.6767423800001 ], [ -123.486918885999927, 48.676742122000064 ], [ -123.487121256999927, 48.676725157000121 ], [ -123.487797687999944, 48.676863107 ], [ -123.488123124999902, 48.676885111000026 ], [ -123.488395538999924, 48.676907262000036 ], [ -123.488722118999959, 48.67696664700005 ], [ -123.488887107, 48.677146502000049 ], [ -123.488841497999928, 48.677183404000125 ], [ -123.488788437999958, 48.677220661000071 ], [ -123.488452483999978, 48.677261530000074 ], [ -123.488250791000013, 48.677266112000055 ], [ -123.48689520799995, 48.677488295000103 ], [ -123.486709982999955, 48.677552660000075 ], [ -123.486700939999935, 48.677552698000085 ], [ -123.486684661999931, 48.677561458000127 ], [ -123.485593122999916, 48.677940749000101 ], [ -123.485587320999926, 48.677941607 ], [ -123.485587330999977, 48.677942762000107 ], [ -123.485378579999917, 48.678015298000076 ], [ -123.48468343399999, 48.678640743000088 ], [ -123.484674553, 48.678640780000137 ], [ -123.484567138999935, 48.678723061 ], [ -123.48438183899999, 48.678861762000111 ], [ -123.484373665999954, 48.678876331000048 ], [ -123.484374073999945, 48.678919075000053 ], [ -123.484192983999918, 48.67908200300014 ], [ -123.483423410999976, 48.679588992000049 ], [ -123.483167053999978, 48.679828966000073 ], [ -123.4831601879999, 48.679834251000109 ], [ -123.483160198999926, 48.679835384000079 ], [ -123.482987237999978, 48.679997291000042 ], [ -123.482896812999982, 48.679997670000041 ], [ -123.482755028999975, 48.680084910000041 ], [ -123.482755540999946, 48.680138406000012 ], [ -123.48250613, 48.680269192000019 ], [ -123.482455175999974, 48.680269406000065 ], [ -123.482349853999949, 48.680334209000065 ], [ -123.482350013999977, 48.680351055000123 ], [ -123.482249612, 48.680403703000138 ], [ -123.481449996999913, 48.680623011000087 ], [ -123.481099100999955, 48.680849395000052 ], [ -123.480799110999911, 48.680842308000067 ], [ -123.480531984999971, 48.680688525000058 ], [ -123.480475337999934, 48.680632462000098 ], [ -123.480358501999945, 48.680548051000137 ], [ -123.480334805999931, 48.680548151000082 ], [ -123.480313794999972, 48.68051646200005 ], [ -123.480313788, 48.680515748000076 ], [ -123.480312892999947, 48.680515100000044 ], [ -123.480018994999966, 48.680071815000062 ], [ -123.479919893999963, 48.679694391000069 ], [ -123.479768519999979, 48.679631703000062 ], [ -123.4791449, 48.679624588000102 ], [ -123.478561481999975, 48.679727096000072 ], [ -123.478381604999967, 48.679403884000109 ], [ -123.47817618699996, 48.679341193 ], [ -123.478047497999967, 48.679348580000131 ], [ -123.477158889999941, 48.679399596000074 ], [ -123.476765589999928, 48.679527807000092 ], [ -123.476361006999966, 48.679755432000029 ], [ -123.476236637999989, 48.679808462000054 ], [ -123.476231578999943, 48.679814115000077 ], [ -123.47623171199993, 48.679828174000143 ], [ -123.474915087999989, 48.680568895000086 ], [ -123.474206794999972, 48.680491907000061 ], [ -123.474071981999913, 48.680546102000051 ], [ -123.474004712999914, 48.681114140000034 ], [ -123.473931658999945, 48.681114440000037 ], [ -123.473928537999925, 48.681189961000065 ], [ -123.473985273, 48.681278294000109 ], [ -123.473970790999928, 48.681400591000049 ], [ -123.474208845999939, 48.681416022000079 ], [ -123.474209638000019, 48.681500312000033 ], [ -123.474253837, 48.681534862000049 ], [ -123.474587908999951, 48.681585984000016 ], [ -123.474789397, 48.681730996000077 ], [ -123.475100775999948, 48.681602796000092 ], [ -123.47530560499996, 48.681692594000054 ], [ -123.475553510999958, 48.681961691000097 ], [ -123.475774781, 48.682418892000108 ], [ -123.475825584999896, 48.682995825000084 ], [ -123.475744301999924, 48.682996161000055 ], [ -123.475674276999925, 48.683109685000048 ], [ -123.475387710999982, 48.683122502000067 ], [ -123.47476738099999, 48.683692100000016 ], [ -123.474212608999977, 48.683954199000027 ], [ -123.473872596000021, 48.683982706000045 ], [ -123.473684986999928, 48.684109393000028 ], [ -123.473646385, 48.684166584000067 ], [ -123.47355040299999, 48.68430878700007 ], [ -123.473461898, 48.684902713000071 ], [ -123.473108786999916, 48.685110690000059 ], [ -123.473073702999926, 48.685533694000114 ], [ -123.473226605, 48.685892585000126 ], [ -123.473214811, 48.686163108000166 ], [ -123.473201308999961, 48.68627990700007 ], [ -123.473625988999956, 48.686620293 ], [ -123.474522514999961, 48.687929200000063 ], [ -123.474876689, 48.688171308000086 ], [ -123.475299892999899, 48.688305199000133 ], [ -123.47672148599996, 48.688540551000138 ], [ -123.476721669999961, 48.688560051000117 ], [ -123.476790337999944, 48.688559562000073 ], [ -123.476867637999945, 48.688624661000041 ], [ -123.477182638999949, 48.688644062000037 ], [ -123.477222024999932, 48.688657623000026 ], [ -123.477423637999919, 48.688656788000074 ], [ -123.477519112999985, 48.688672592000067 ], [ -123.477946838999941, 48.688802555000017 ], [ -123.477947066999945, 48.688826615000053 ], [ -123.47829713099999, 48.688923048000063 ], [ -123.47834278299996, 48.688922858000105 ], [ -123.478764446999946, 48.689050975000079 ], [ -123.478764631999979, 48.68907048400014 ], [ -123.478948737999971, 48.68912866200008 ], [ -123.47900273599997, 48.689123375000037 ], [ -123.479126887999939, 48.689161095000074 ], [ -123.479366825999989, 48.689087725000022 ], [ -123.47976373799996, 48.689048862000107 ], [ -123.480332695999962, 48.689184465000096 ], [ -123.480433170999959, 48.68918404500009 ], [ -123.481276286999986, 48.689440290000036 ], [ -123.481439094999956, 48.689386108000065 ], [ -123.48150535399999, 48.689157671 ], [ -123.481618172999944, 48.689085314000117 ], [ -123.48161731, 48.688994759000117 ], [ -123.481651880999948, 48.688980198000053 ], [ -123.481895897999905, 48.688987408000067 ], [ -123.483456097999948, 48.688683993000083 ], [ -123.484060894999942, 48.68876703100009 ], [ -123.484061240999893, 48.688802968000061 ], [ -123.484089537999949, 48.688809062000175 ], [ -123.484358438999934, 48.688897725000047 ], [ -123.484469770999937, 48.688897256000054 ], [ -123.484470276999943, 48.688949947000069 ], [ -123.485080337999975, 48.689241261000042 ], [ -123.48511513899993, 48.689309861000027 ], [ -123.485118538999984, 48.689418361000065 ], [ -123.484911803999964, 48.689660681000106 ], [ -123.484852199999949, 48.689703694000109 ], [ -123.484723697999954, 48.690415794000103 ], [ -123.484494087999977, 48.690578204000097 ], [ -123.484018310999943, 48.690733388000076 ], [ -123.483589904, 48.691266096000099 ], [ -123.48351075, 48.69187001300007 ], [ -123.483495297, 48.691870078000036 ], [ -123.483420237999951, 48.691931462000099 ], [ -123.483454250999955, 48.692301073000095 ], [ -123.483422949999948, 48.692539875000072 ], [ -123.483392139000017, 48.692598062000059 ], [ -123.483306859999942, 48.692670856000035 ], [ -123.483044905999989, 48.69278580200011 ], [ -123.482213701999939, 48.693150521000113 ], [ -123.48196418699996, 48.693260001000084 ], [ -123.481042805999934, 48.693480684000072 ], [ -123.479839186, 48.69405179400006 ], [ -123.478673611999966, 48.694426403000101 ], [ -123.478616939999966, 48.694458220000101 ], [ -123.478510237999927, 48.694499062000041 ], [ -123.478409015999887, 48.694560841000119 ], [ -123.478409148999958, 48.694574878 ], [ -123.4783817429999, 48.69459026500008 ], [ -123.478360662999961, 48.69459035200007 ], [ -123.478120519999905, 48.694736919000043 ], [ -123.478092584999928, 48.694752602000086 ], [ -123.477539394999894, 48.69494110200008 ], [ -123.47719006799997, 48.694991349000041 ], [ -123.47719071399996, 48.695059913000136 ], [ -123.47707720399994, 48.695098591000068 ], [ -123.476574391999947, 48.695110007000032 ], [ -123.476539062999947, 48.695152361000069 ], [ -123.476509836999981, 48.695164962000078 ], [ -123.47639733799997, 48.695300362000069 ], [ -123.476377747999948, 48.695312917000109 ], [ -123.47637805399998, 48.695345385000039 ], [ -123.476371202999971, 48.695353599000107 ], [ -123.476233463999947, 48.695408817000079 ], [ -123.47622807599997, 48.69540884000007 ], [ -123.476219169999922, 48.695414547000098 ], [ -123.476198507999953, 48.695422830000069 ], [ -123.476155117999966, 48.695435192000041 ], [ -123.475611516999933, 48.695454696000105 ], [ -123.473779103999945, 48.695750894000078 ], [ -123.472408694999928, 48.69577370600004 ], [ -123.471798107999973, 48.695911888000126 ], [ -123.471320494999958, 48.695823613000066 ], [ -123.469884715999981, 48.6963519050001 ], [ -123.468367656999959, 48.696520599000053 ], [ -123.468314371999966, 48.69652081600001 ], [ -123.468239780999951, 48.696534818000096 ], [ -123.467373799999962, 48.696631103000044 ], [ -123.465186901999942, 48.696685202000047 ], [ -123.464427491, 48.696841909000092 ], [ -123.462604521999964, 48.696759300000082 ], [ -123.461759794999935, 48.696555594000053 ], [ -123.461242696999989, 48.696475896000102 ], [ -123.460283185999941, 48.696911703000033 ], [ -123.459942594999987, 48.696985691000059 ], [ -123.458340399999926, 48.697081090000054 ], [ -123.457933987999951, 48.69719079700014 ], [ -123.457806055999981, 48.697179492000053 ], [ -123.457805906, 48.697163399000019 ], [ -123.457803786999975, 48.696900902000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200642249", "BldgCostT": "133634999", "sL_LossRatio": "0.825120902498129", "sL_AssetLoss": "1075432.7", "sL_BldgLoss": "887362", "sL_StrLoss": "547385", "sL_NStrLoss": "339977", "sL_ContLoss": "188070.7", "geom_point": "0101000020E6100000C224E00008DE5EC01F97A38D44564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.457766599999957, 48.678897507000102 ], [ -123.457767495999946, 48.677099232000096 ], [ -123.457841290999937, 48.673425004000116 ], [ -123.45784243, 48.671939293000065 ], [ -123.457845389999974, 48.66795629300006 ], [ -123.460874556999926, 48.667944103000053 ], [ -123.470287792999954, 48.667905612000041 ], [ -123.470419518999975, 48.668030401000109 ], [ -123.47043877499999, 48.66930909400002 ], [ -123.470955894, 48.669731502000026 ], [ -123.472112608999979, 48.669759006000085 ], [ -123.472126884999909, 48.669769553000066 ], [ -123.47245618, 48.669815736000018 ], [ -123.472805289999926, 48.669864694000054 ], [ -123.474121135999923, 48.669873259000042 ], [ -123.477201897999976, 48.669893210000033 ], [ -123.47748409899998, 48.670370488000053 ], [ -123.477648096999957, 48.670498688000102 ], [ -123.480283992999944, 48.671674405000068 ], [ -123.480394303999944, 48.671741879000081 ], [ -123.480426081999951, 48.671857097000085 ], [ -123.480418972999971, 48.673507403000031 ], [ -123.481113820999937, 48.67489401000006 ], [ -123.48123828699994, 48.675000600000025 ], [ -123.48165549399999, 48.675189263000078 ], [ -123.482035515999968, 48.675361099000071 ], [ -123.484878195999926, 48.676656886000032 ], [ -123.48524850699999, 48.676859389000136 ], [ -123.485327916999935, 48.676946902000068 ], [ -123.485337810999937, 48.677143705000077 ], [ -123.483464177999977, 48.678493891000102 ], [ -123.482652198999958, 48.678965896000129 ], [ -123.48223278599994, 48.679149788000061 ], [ -123.481510215999961, 48.678964194000073 ], [ -123.480787895999924, 48.678951591000022 ], [ -123.477953891999945, 48.678934110000036 ], [ -123.47695860099999, 48.678927599000069 ], [ -123.476727378999925, 48.678864394000072 ], [ -123.476446722, 48.678482801000051 ], [ -123.476148303999977, 48.67823060200007 ], [ -123.475949106999934, 48.678124895000032 ], [ -123.475636989999927, 48.678076908000016 ], [ -123.474891810999978, 48.678061092000092 ], [ -123.474394101999962, 48.678109590000062 ], [ -123.474089299999989, 48.67822947800007 ], [ -123.473226796999967, 48.678756205000063 ], [ -123.472997304999978, 48.678861592000011 ], [ -123.472724305999961, 48.678893017000036 ], [ -123.472236477, 48.678889962000035 ], [ -123.471421519999978, 48.678884898000028 ], [ -123.471280214999979, 48.678884001000092 ], [ -123.471190316999966, 48.678884086000025 ], [ -123.46994047499993, 48.678885424000015 ], [ -123.462944306999958, 48.678892534000056 ], [ -123.460920201999954, 48.678894495000037 ], [ -123.457766599999957, 48.678897507000102 ] ], [ [ -123.465200162999949, 48.676831874000101 ], [ -123.465194606999916, 48.676228510000058 ], [ -123.461538231999924, 48.676141403000074 ], [ -123.461500157, 48.676846761000057 ], [ -123.465200162999949, 48.676831874000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124143750", "BldgCostT": "84825000", "sL_LossRatio": "0.817234137751862", "sL_AssetLoss": "720553.6", "sL_BldgLoss": "588861", "sL_StrLoss": "368136", "sL_NStrLoss": "220725", "sL_ContLoss": "131692.6", "geom_point": "0101000020E6100000445B7CA7D5DD5EC09F98DCC507584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.457805504999953, 48.695716606000126 ], [ -123.45780939799999, 48.694163582000051 ], [ -123.457813812, 48.692426694000098 ], [ -123.457814598999931, 48.691657904000067 ], [ -123.457862697999943, 48.690768490000089 ], [ -123.457815086999972, 48.687960403000083 ], [ -123.45779889, 48.686931496000135 ], [ -123.45780091, 48.68668413100005 ], [ -123.457804406999983, 48.686261343000119 ], [ -123.457804639999935, 48.686234377000062 ], [ -123.457806111999929, 48.686052854000131 ], [ -123.457806196999954, 48.686043804000064 ], [ -123.457804201999949, 48.685784484000067 ], [ -123.457793188999958, 48.684351604000078 ], [ -123.457771183, 48.68255100100005 ], [ -123.457768312999974, 48.680748097000041 ], [ -123.457766599999957, 48.678897507000102 ], [ -123.460920201999954, 48.678894495000037 ], [ -123.462944306999958, 48.678892534000056 ], [ -123.46994047499993, 48.678885424000015 ], [ -123.471190316999966, 48.678884086000025 ], [ -123.471280214999979, 48.678884001000092 ], [ -123.471279799999976, 48.678973822000103 ], [ -123.471277219999976, 48.679549630000068 ], [ -123.471272496999987, 48.680591915000086 ], [ -123.471288279999939, 48.680631319000071 ], [ -123.471317015999944, 48.680703288000124 ], [ -123.471347812, 48.680780299000055 ], [ -123.471662709999933, 48.68110508800001 ], [ -123.471866301999981, 48.681430788000064 ], [ -123.472127785999959, 48.682092298000057 ], [ -123.472185894999939, 48.682348808000064 ], [ -123.472185105999941, 48.682565105000087 ], [ -123.472115212999981, 48.682905994000059 ], [ -123.471691102999941, 48.683528696000025 ], [ -123.470926997999968, 48.684265907000103 ], [ -123.470911401999942, 48.684422630000078 ], [ -123.470894607999924, 48.684591399000126 ], [ -123.470978287999912, 48.684952195000037 ], [ -123.4713404929999, 48.686027279 ], [ -123.471391501999975, 48.6861787120001 ], [ -123.471496437999946, 48.686490195000083 ], [ -123.47181709399996, 48.687441901000071 ], [ -123.471904608999964, 48.687707184000026 ], [ -123.472066711, 48.687972398000106 ], [ -123.472380606999963, 48.688316082000036 ], [ -123.472788481999942, 48.68867728500009 ], [ -123.473204303, 48.688958336000034 ], [ -123.473682700999959, 48.689281698000066 ], [ -123.474090739999937, 48.689471194000106 ], [ -123.474204196999935, 48.68952390200009 ], [ -123.474583200999945, 48.689616687000147 ], [ -123.474802983999922, 48.689643740000101 ], [ -123.47666021699996, 48.689872170000115 ], [ -123.477642809999921, 48.689993017000091 ], [ -123.477950404999945, 48.690037970000077 ], [ -123.47787981499999, 48.691353739000121 ], [ -123.477970980999899, 48.691353360000036 ], [ -123.477972376999929, 48.691500758000075 ], [ -123.478294537999929, 48.691608362000103 ], [ -123.478318706999929, 48.691621801000089 ], [ -123.47838116899996, 48.69162154200005 ], [ -123.478381502999952, 48.691656719 ], [ -123.478800465999925, 48.691889684000103 ], [ -123.479198995999951, 48.691888027000083 ], [ -123.479202146, 48.692219915000102 ], [ -123.47930063799997, 48.692414462000094 ], [ -123.479311618999986, 48.692427328000086 ], [ -123.480419022999968, 48.692422714000031 ], [ -123.480339799999925, 48.692475829000045 ], [ -123.480177116999926, 48.692597719000048 ], [ -123.479937585999977, 48.692793800000082 ], [ -123.47959891299999, 48.692986800000099 ], [ -123.477359813999939, 48.693801807000057 ], [ -123.47589227099999, 48.694232779000046 ], [ -123.475806105999979, 48.694258082000012 ], [ -123.474792998999931, 48.694475595000085 ], [ -123.474034983, 48.694591997000025 ], [ -123.470520041999961, 48.695161384000109 ], [ -123.470040795, 48.695239009000062 ], [ -123.467339911999943, 48.695679596000076 ], [ -123.467088620999931, 48.695684403000065 ], [ -123.465233465999972, 48.695568897 ], [ -123.464698887999958, 48.695535603000067 ], [ -123.464566511, 48.695524991000077 ], [ -123.463862089999935, 48.695468549000111 ], [ -123.46269411900002, 48.695374907000037 ], [ -123.461979215999961, 48.695317600000074 ], [ -123.460657212999976, 48.695248300000102 ], [ -123.459561832999967, 48.695490556000038 ], [ -123.45874418599999, 48.695671410000024 ], [ -123.457805504999953, 48.695716606000126 ] ], [ [ -123.464775938999978, 48.692577762000056 ], [ -123.464651558999918, 48.692487385000042 ], [ -123.464529068, 48.692487880000108 ], [ -123.464528238999947, 48.69239777800005 ], [ -123.464298937999899, 48.692231162000091 ], [ -123.464307737999974, 48.692118761000081 ], [ -123.464523455999938, 48.691877952000013 ], [ -123.464521618999925, 48.691678258000081 ], [ -123.464702997999922, 48.691677526000021 ], [ -123.464926959999943, 48.691427508000125 ], [ -123.464924284999967, 48.691136865 ], [ -123.465188265, 48.691135800000083 ], [ -123.465230938, 48.691088162000014 ], [ -123.465329764999922, 48.690901936000103 ], [ -123.465329426999958, 48.690865345000084 ], [ -123.465349225999901, 48.690865265000035 ], [ -123.465447137, 48.690680761000039 ], [ -123.465588036999961, 48.69062596100008 ], [ -123.466590937999953, 48.69080546200005 ], [ -123.466920656999946, 48.690858907000049 ], [ -123.466959938999977, 48.690858748000046 ], [ -123.46696, 48.690865285 ], [ -123.46706843799997, 48.690882861000063 ], [ -123.467031237999933, 48.691163661000097 ], [ -123.467081137999983, 48.69160606100008 ], [ -123.467163596, 48.691667575000054 ], [ -123.46738293, 48.691666686000119 ], [ -123.467511137999949, 48.691638761 ], [ -123.467555238, 48.691574961000086 ], [ -123.467781380999952, 48.691523295000131 ], [ -123.467780193999971, 48.691395189000083 ], [ -123.468352257999982, 48.691392865000068 ], [ -123.468401576999938, 48.691381597000031 ], [ -123.468502735999948, 48.689503064000071 ], [ -123.46817031199997, 48.68950441500003 ], [ -123.468166613, 48.689105378000093 ], [ -123.467736463999984, 48.689095152000114 ], [ -123.467727365, 48.689264087000041 ], [ -123.466945020999916, 48.689245484000018 ], [ -123.466949958000015, 48.689779251000068 ], [ -123.4657271, 48.68978420200007 ], [ -123.465721864, 48.689216387000094 ], [ -123.465232320000013, 48.689204737000075 ], [ -123.465148945999971, 48.690751046000067 ], [ -123.46369748799998, 48.690716493000124 ], [ -123.463701393999926, 48.691141793000071 ], [ -123.463417616999934, 48.691142935000066 ], [ -123.463317236999941, 48.693003207000046 ], [ -123.463507888999942, 48.693031763000128 ], [ -123.464580437999956, 48.693027441000048 ], [ -123.464891438, 48.692820062000116 ], [ -123.464887938999979, 48.692711561000067 ], [ -123.46478083800001, 48.692625961000019 ], [ -123.464775938999978, 48.692577762000056 ] ], [ [ -123.45977550799995, 48.689757044000011 ], [ -123.459900399999981, 48.68744558700012 ], [ -123.45992334, 48.687021007000091 ], [ -123.45999506699999, 48.687022718000051 ], [ -123.459993389999923, 48.686838511000154 ], [ -123.461216176999955, 48.686833622000094 ], [ -123.461218168999949, 48.687051881000102 ], [ -123.462418259999964, 48.687080481000073 ], [ -123.46249938599999, 48.685577390000077 ], [ -123.45978708200002, 48.685512731000117 ], [ -123.459890403999907, 48.683600309000099 ], [ -123.459556326999987, 48.683601642000028 ], [ -123.459558781999988, 48.683871517000071 ], [ -123.459151209999916, 48.683873142000081 ], [ -123.459165931999934, 48.685492389000053 ], [ -123.458966949999962, 48.685493183000055 ], [ -123.45896463899993, 48.686572730000044 ], [ -123.459175744999925, 48.686571888000024 ], [ -123.459178197999975, 48.686841763000075 ], [ -123.459585793999977, 48.686840138000058 ], [ -123.459590451999958, 48.687352071000099 ], [ -123.459593160999987, 48.687649761000081 ], [ -123.458962325999963, 48.687652275000126 ], [ -123.458961170999913, 48.688192049000058 ], [ -123.459190467999974, 48.688191135000089 ], [ -123.459195374000032, 48.688730884000044 ], [ -123.459602984999933, 48.688729258000087 ], [ -123.459610353999921, 48.689538882000058 ], [ -123.459074842999968, 48.689541017000046 ], [ -123.459068197999898, 48.689663987000102 ], [ -123.459529459999956, 48.689674990000093 ], [ -123.459525347999914, 48.689751077000118 ], [ -123.45977550799995, 48.689757044000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127606894", "BldgCostT": "86121523", "sL_LossRatio": "0.774677608053354", "sL_AssetLoss": "1210328", "sL_BldgLoss": "937614", "sL_StrLoss": "476864", "sL_NStrLoss": "460750", "sL_ContLoss": "272714", "geom_point": "0101000020E61000008F7CD247A8DC5EC0BFC5F5B54F574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.443985685999934, 48.687842989000046 ], [ -123.443921576000022, 48.685903491000047 ], [ -123.440194512999938, 48.685881652000091 ], [ -123.439452774999936, 48.685877299000097 ], [ -123.43825230499999, 48.685900688000103 ], [ -123.437278402999979, 48.685897099000059 ], [ -123.437277596999962, 48.685213809000039 ], [ -123.437884014999938, 48.684244104000129 ], [ -123.437611986999954, 48.683025805000106 ], [ -123.437614153999931, 48.682998062000124 ], [ -123.4376194099999, 48.68297458200005 ], [ -123.437703293999917, 48.682933324000061 ], [ -123.437785301999895, 48.682866065000042 ], [ -123.437775018, 48.682812701000081 ], [ -123.437720466000016, 48.682748480000036 ], [ -123.437659218999926, 48.682700055000041 ], [ -123.437587577999949, 48.682684074000058 ], [ -123.437578267999939, 48.682681956000089 ], [ -123.437585958999961, 48.68265057100006 ], [ -123.437620946999957, 48.682047163000028 ], [ -123.437548579999927, 48.682021025000076 ], [ -123.437313809999964, 48.681936308000076 ], [ -123.436622920999923, 48.681496007000113 ], [ -123.436109420999983, 48.680963496000118 ], [ -123.436027178999964, 48.680778705000087 ], [ -123.435982499999966, 48.680678320000013 ], [ -123.435926582999983, 48.680383996000053 ], [ -123.435926410999983, 48.67989088300007 ], [ -123.436257852999972, 48.677669705 ], [ -123.436286835, 48.677036690000087 ], [ -123.438746797999912, 48.677044091000042 ], [ -123.44449336, 48.677061083000112 ], [ -123.445785586999975, 48.67706487100002 ], [ -123.454953516999979, 48.67709126900008 ], [ -123.457767495999946, 48.677099232000096 ], [ -123.457766599999957, 48.678897507000102 ], [ -123.457768312999974, 48.680748097000041 ], [ -123.457771183, 48.68255100100005 ], [ -123.457793188999958, 48.684351604000078 ], [ -123.457804201999949, 48.685784484000067 ], [ -123.457806196999954, 48.686043804000064 ], [ -123.457806111999929, 48.686052854000131 ], [ -123.457804639999935, 48.686234377000062 ], [ -123.457804406999983, 48.686261343000119 ], [ -123.45780091, 48.68668413100005 ], [ -123.45779889, 48.686931496000135 ], [ -123.457815086999972, 48.687960403000083 ], [ -123.456408951999933, 48.687947445000077 ], [ -123.455234601999933, 48.687936612000051 ], [ -123.454165503999945, 48.687911090000064 ], [ -123.452522123999955, 48.687795205000114 ], [ -123.452257169999939, 48.687787262000057 ], [ -123.451760802999971, 48.687772391000095 ], [ -123.451592684000033, 48.687819806000114 ], [ -123.450712709999905, 48.687864011000073 ], [ -123.449126480999951, 48.68786529700003 ], [ -123.448381288999897, 48.687871809000058 ], [ -123.444969605999944, 48.687837797000064 ], [ -123.443985685999934, 48.687842989000046 ] ], [ [ -123.441651078999968, 48.680702948000061 ], [ -123.441667060999919, 48.680409207000025 ], [ -123.439710253999934, 48.680362177000063 ], [ -123.439676592999945, 48.68098038400008 ], [ -123.439969439999956, 48.680979266000087 ], [ -123.439967090999914, 48.680709391000029 ], [ -123.441651078999968, 48.680702948000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149687084", "BldgCostT": "102208334", "sL_LossRatio": "0.851240867604657", "sL_AssetLoss": "738032", "sL_BldgLoss": "628243", "sL_StrLoss": "417010", "sL_NStrLoss": "211233", "sL_ContLoss": "109789", "geom_point": "0101000020E6100000F2427C5896DC5EC094B188FEDC584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.445026808999913, 48.699067906000067 ], [ -123.44403212, 48.698810106000131 ], [ -123.442890403999968, 48.69883290100006 ], [ -123.442105516999959, 48.699160504000062 ], [ -123.441807307999923, 48.699206110000041 ], [ -123.440651002999957, 48.69920179700005 ], [ -123.439196499, 48.699045104000106 ], [ -123.437752506999985, 48.698627799000029 ], [ -123.437453201999944, 48.698485223000034 ], [ -123.435842399999942, 48.697717790000091 ], [ -123.435037611999917, 48.697549707000043 ], [ -123.434149850999972, 48.69725556900007 ], [ -123.434186128999954, 48.696590989000057 ], [ -123.434226866999921, 48.695844681000075 ], [ -123.433983726999926, 48.695845597000059 ], [ -123.433986046999962, 48.696115472000074 ], [ -123.433542541999913, 48.696117142000084 ], [ -123.433311337999939, 48.696273961000045 ], [ -123.433020065999955, 48.696119108000055 ], [ -123.432963066999932, 48.696119322000087 ], [ -123.432784257999955, 48.696119993000117 ], [ -123.432752869999945, 48.696694661000073 ], [ -123.431985519999927, 48.696383305000076 ], [ -123.431058893999975, 48.696287913000106 ], [ -123.429888116999962, 48.696039998000032 ], [ -123.429137415999961, 48.695655495000054 ], [ -123.428553697999988, 48.695631304000102 ], [ -123.427693084999959, 48.695067300000076 ], [ -123.426821515999961, 48.695007506000096 ], [ -123.426363072999919, 48.694905790000121 ], [ -123.426997076999953, 48.693987092000093 ], [ -123.426833714999987, 48.693352208000086 ], [ -123.426938224999958, 48.693054603000114 ], [ -123.427061696999971, 48.692855603000076 ], [ -123.42720710199994, 48.692747463000011 ], [ -123.427841069999985, 48.692276027000105 ], [ -123.428089990000018, 48.692090891000113 ], [ -123.428343418999987, 48.693238107000127 ], [ -123.428584908999966, 48.693658729000092 ], [ -123.428632105999966, 48.693740914000088 ], [ -123.429008785999926, 48.694097006000021 ], [ -123.429443521999957, 48.69433639800009 ], [ -123.430088882999939, 48.694568407000084 ], [ -123.430350111999971, 48.694681005000064 ], [ -123.430574208999985, 48.694253795000073 ], [ -123.430815823999964, 48.694104506000059 ], [ -123.431080380999944, 48.694054094000045 ], [ -123.43136072599999, 48.69406540300016 ], [ -123.43186390399994, 48.694192913000087 ], [ -123.43234550699998, 48.694245102000131 ], [ -123.434922295999982, 48.694144895000072 ], [ -123.435627589999939, 48.694150203000099 ], [ -123.435954547000023, 48.694181939000039 ], [ -123.43662001699991, 48.694246490000118 ], [ -123.437258105999959, 48.694308392000025 ], [ -123.437862491999951, 48.694296806000054 ], [ -123.439366407999941, 48.694064399000084 ], [ -123.439904790999918, 48.694045792000068 ], [ -123.440227984999964, 48.694065206000111 ], [ -123.441520978999961, 48.694192793000049 ], [ -123.441810102999938, 48.694190711000047 ], [ -123.442230182999978, 48.694125995000014 ], [ -123.442621703, 48.693989304000127 ], [ -123.442851697000023, 48.693875891000118 ], [ -123.443193376999929, 48.693581200000089 ], [ -123.445260189999885, 48.694500595000086 ], [ -123.445695803999982, 48.694599395000054 ], [ -123.446061132999958, 48.694597756000078 ], [ -123.44607580399996, 48.694597689 ], [ -123.446420387999979, 48.69454920200009 ], [ -123.446724483999972, 48.694446501000051 ], [ -123.446983807999956, 48.694294100000064 ], [ -123.44718358199999, 48.69411230000005 ], [ -123.447523688999951, 48.693546188000028 ], [ -123.447357529999962, 48.693483699000112 ], [ -123.447109792999981, 48.693274009000042 ], [ -123.446916916999939, 48.693026896000035 ], [ -123.446436984999977, 48.692545789000079 ], [ -123.446227291999961, 48.692234315000043 ], [ -123.447880591999976, 48.692096390000103 ], [ -123.448143408999982, 48.692054889000062 ], [ -123.448340320999975, 48.691976701000094 ], [ -123.448474981999979, 48.691869909000062 ], [ -123.448546914999966, 48.691745400000116 ], [ -123.448515, 48.691208378000077 ], [ -123.448274090999945, 48.691145796000129 ], [ -123.44816151699996, 48.691046695000054 ], [ -123.447397798999958, 48.690117997000144 ], [ -123.447242886999945, 48.68982309900008 ], [ -123.447138583999973, 48.689444703000092 ], [ -123.447177819999965, 48.689148199000059 ], [ -123.447442491999965, 48.688645215000058 ], [ -123.447654511999957, 48.688438498000096 ], [ -123.448318795999981, 48.68812269400005 ], [ -123.448391019999974, 48.687993701000053 ], [ -123.448381288999897, 48.687871809000058 ], [ -123.449126480999951, 48.68786529700003 ], [ -123.450712709999905, 48.687864011000073 ], [ -123.451592684000033, 48.687819806000114 ], [ -123.451760802999971, 48.687772391000095 ], [ -123.452257169999939, 48.687787262000057 ], [ -123.452522123999955, 48.687795205000114 ], [ -123.454165503999945, 48.687911090000064 ], [ -123.455234601999933, 48.687936612000051 ], [ -123.456408951999933, 48.687947445000077 ], [ -123.457815086999972, 48.687960403000083 ], [ -123.457862697999943, 48.690768490000089 ], [ -123.457814598999931, 48.691657904000067 ], [ -123.457813812, 48.692426694000098 ], [ -123.45780939799999, 48.694163582000051 ], [ -123.457805504999953, 48.695716606000126 ], [ -123.457803786999975, 48.696900902000081 ], [ -123.457805906, 48.697163399000019 ], [ -123.457806055999981, 48.697179492000053 ], [ -123.457159998999984, 48.697122391000065 ], [ -123.456035703999959, 48.697203715000057 ], [ -123.455906237999912, 48.697198961000034 ], [ -123.455881443999942, 48.697200144000064 ], [ -123.454915911999962, 48.697122389000072 ], [ -123.45403340199999, 48.697152290000076 ], [ -123.452758490999898, 48.697364592000021 ], [ -123.451712822999923, 48.697422901 ], [ -123.451405967999975, 48.697465158000028 ], [ -123.451275037999935, 48.697474361000104 ], [ -123.450901043000016, 48.697534688000125 ], [ -123.450233523999927, 48.697626605000053 ], [ -123.450021991999932, 48.697745751000085 ], [ -123.449932337999954, 48.697781162000133 ], [ -123.449900841999963, 48.697806752000098 ], [ -123.449900905999954, 48.697813952000075 ], [ -123.447082699999925, 48.699401208000133 ], [ -123.445669283999948, 48.699371305000092 ], [ -123.445026808999913, 48.699067906000067 ] ], [ [ -123.450760103999954, 48.693082342000011 ], [ -123.450789381999925, 48.692542460000084 ], [ -123.450268871999981, 48.692544496000089 ], [ -123.44973803799995, 48.692632862000046 ], [ -123.449447011999979, 48.692624653000095 ], [ -123.449448727999965, 48.692817582000075 ], [ -123.450671662, 48.692812804000084 ], [ -123.45067407, 48.693082679000028 ], [ -123.450760103999954, 48.693082342000011 ] ], [ [ -123.453406148999946, 48.690373118000075 ], [ -123.453420771999973, 48.69010317700009 ], [ -123.453258507999934, 48.690103816000033 ], [ -123.453243883999932, 48.690373757000046 ], [ -123.453406148999946, 48.690373118000075 ] ], [ [ -123.453675321999924, 48.68903324900004 ], [ -123.453690517999959, 48.688752695000062 ], [ -123.453331622999926, 48.688754108000097 ], [ -123.453302378, 48.689293991000085 ], [ -123.453464639999979, 48.689293352000114 ], [ -123.453478981999965, 48.689028556000054 ], [ -123.453675321999924, 48.68903324900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109015417", "BldgCostT": "72501667", "sL_LossRatio": "0.800203849170784", "sL_AssetLoss": "625953", "sL_BldgLoss": "500890", "sL_StrLoss": "304577", "sL_NStrLoss": "196313", "sL_ContLoss": "125063", "geom_point": "0101000020E61000004CAAD7A909DC5EC00F67659866584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.429008785999926, 48.694097006000021 ], [ -123.428632105999966, 48.693740914000088 ], [ -123.428584908999966, 48.693658729000092 ], [ -123.428343418999987, 48.693238107000127 ], [ -123.428089990000018, 48.692090891000113 ], [ -123.427801600999942, 48.691782800000034 ], [ -123.427557520999983, 48.691601493000114 ], [ -123.427440404999956, 48.69151448900007 ], [ -123.427094996, 48.69130509899999 ], [ -123.427059077999928, 48.691289959000059 ], [ -123.425030770999967, 48.690435253000011 ], [ -123.42477150199997, 48.690326010000035 ], [ -123.42495030299996, 48.690109404000111 ], [ -123.425005246999916, 48.689925456000076 ], [ -123.425006708999973, 48.689920614000144 ], [ -123.424617009999935, 48.688514899000097 ], [ -123.425366308, 48.688507804000082 ], [ -123.425577270999923, 48.688544391000043 ], [ -123.425946410999956, 48.688693094000058 ], [ -123.426491923999905, 48.688764807000112 ], [ -123.42875930799994, 48.688917021000123 ], [ -123.42893628899995, 48.688538835000038 ], [ -123.429426717999974, 48.688860955000038 ], [ -123.429599721999963, 48.689245533000111 ], [ -123.429804066999964, 48.689169714000016 ], [ -123.430026299999895, 48.689087310000055 ], [ -123.430425583999948, 48.689078910000056 ], [ -123.431024707999981, 48.689164507 ], [ -123.43177379399998, 48.689185280000039 ], [ -123.431786095999954, 48.689189974000044 ], [ -123.432192593999957, 48.689344093000045 ], [ -123.43263939799999, 48.689483791000086 ], [ -123.433017491999976, 48.689517211000066 ], [ -123.433347499999968, 48.689486389000095 ], [ -123.433814112999968, 48.68926599100007 ], [ -123.434101301999959, 48.68905029700003 ], [ -123.434270092999924, 48.688990395000118 ], [ -123.434447905999889, 48.688963999000073 ], [ -123.434864889999943, 48.688980402000105 ], [ -123.435231114999951, 48.689032393000041 ], [ -123.435468198999928, 48.689038207000053 ], [ -123.4356745799999, 48.688984493000063 ], [ -123.435876801999981, 48.688884791000099 ], [ -123.436442708999948, 48.688534306000122 ], [ -123.436651182999952, 48.688392406000069 ], [ -123.43729779399996, 48.687856291000109 ], [ -123.437278402999979, 48.685897099000059 ], [ -123.43825230499999, 48.685900688000103 ], [ -123.439452774999936, 48.685877299000097 ], [ -123.440194512999938, 48.685881652000091 ], [ -123.443921576000022, 48.685903491000047 ], [ -123.443985685999934, 48.687842989000046 ], [ -123.444969605999944, 48.687837797000064 ], [ -123.448381288999897, 48.687871809000058 ], [ -123.448391019999974, 48.687993701000053 ], [ -123.448318795999981, 48.68812269400005 ], [ -123.447654511999957, 48.688438498000096 ], [ -123.447442491999965, 48.688645215000058 ], [ -123.447177819999965, 48.689148199000059 ], [ -123.447138583999973, 48.689444703000092 ], [ -123.447242886999945, 48.68982309900008 ], [ -123.447397798999958, 48.690117997000144 ], [ -123.44816151699996, 48.691046695000054 ], [ -123.448274090999945, 48.691145796000129 ], [ -123.448515, 48.691208378000077 ], [ -123.448546914999966, 48.691745400000116 ], [ -123.448474981999979, 48.691869909000062 ], [ -123.448340320999975, 48.691976701000094 ], [ -123.448143408999982, 48.692054889000062 ], [ -123.447880591999976, 48.692096390000103 ], [ -123.446227291999961, 48.692234315000043 ], [ -123.446436984999977, 48.692545789000079 ], [ -123.446916916999939, 48.693026896000035 ], [ -123.447109792999981, 48.693274009000042 ], [ -123.447357529999962, 48.693483699000112 ], [ -123.447523688999951, 48.693546188000028 ], [ -123.44718358199999, 48.69411230000005 ], [ -123.446983807999956, 48.694294100000064 ], [ -123.446724483999972, 48.694446501000051 ], [ -123.446420387999979, 48.69454920200009 ], [ -123.44607580399996, 48.694597689 ], [ -123.446061132999958, 48.694597756000078 ], [ -123.445695803999982, 48.694599395000054 ], [ -123.445260189999885, 48.694500595000086 ], [ -123.443193376999929, 48.693581200000089 ], [ -123.442851697000023, 48.693875891000118 ], [ -123.442621703, 48.693989304000127 ], [ -123.442230182999978, 48.694125995000014 ], [ -123.441810102999938, 48.694190711000047 ], [ -123.441520978999961, 48.694192793000049 ], [ -123.440227984999964, 48.694065206000111 ], [ -123.439904790999918, 48.694045792000068 ], [ -123.439366407999941, 48.694064399000084 ], [ -123.437862491999951, 48.694296806000054 ], [ -123.437258105999959, 48.694308392000025 ], [ -123.43662001699991, 48.694246490000118 ], [ -123.435954547000023, 48.694181939000039 ], [ -123.435627589999939, 48.694150203000099 ], [ -123.434922295999982, 48.694144895000072 ], [ -123.43234550699998, 48.694245102000131 ], [ -123.43186390399994, 48.694192913000087 ], [ -123.43136072599999, 48.69406540300016 ], [ -123.431080380999944, 48.694054094000045 ], [ -123.430815823999964, 48.694104506000059 ], [ -123.430574208999985, 48.694253795000073 ], [ -123.430350111999971, 48.694681005000064 ], [ -123.430088882999939, 48.694568407000084 ], [ -123.429443521999957, 48.69433639800009 ], [ -123.429008785999926, 48.694097006000021 ] ], [ [ -123.436072041999935, 48.692329222000104 ], [ -123.436204736999969, 48.692208062000105 ], [ -123.436397991999954, 48.69216250900007 ], [ -123.436397089999986, 48.692058107000072 ], [ -123.43762000699995, 48.692053468000026 ], [ -123.437617667999945, 48.691783594000078 ], [ -123.439655850999941, 48.691775833000094 ], [ -123.439658199999926, 48.692045709000119 ], [ -123.44047347799993, 48.692042594000078 ], [ -123.440475831999947, 48.692312469000051 ], [ -123.441291114999942, 48.692309349 ], [ -123.441288757, 48.692039475000065 ], [ -123.442462561999932, 48.692034973000069 ], [ -123.442477248999978, 48.691765032000035 ], [ -123.440878760999908, 48.691771160000094 ], [ -123.440876404999955, 48.691501285000058 ], [ -123.440468770999942, 48.691502843000109 ], [ -123.440467461999958, 48.691352791000106 ], [ -123.439565572, 48.691236410000023 ], [ -123.438428253999987, 48.69124074300003 ], [ -123.43842701799997, 48.691098385000025 ], [ -123.437908437999937, 48.691049662000076 ], [ -123.437552995999951, 48.690974188000048 ], [ -123.437203021999963, 48.690975516000044 ], [ -123.437202165999935, 48.690876857000077 ], [ -123.43704173799992, 48.690767062000113 ], [ -123.43700798699993, 48.690706372000065 ], [ -123.436793055999942, 48.690707187000072 ], [ -123.436789653999966, 48.690313760000024 ], [ -123.436708450999916, 48.690167740000042 ], [ -123.435065407999957, 48.690173956000095 ], [ -123.434751157, 48.69027845500004 ], [ -123.434752592, 48.690445021000116 ], [ -123.434244489999941, 48.690446937000068 ], [ -123.43393820499999, 48.690548784000086 ], [ -123.433946614999954, 48.691527595000139 ], [ -123.431610763999956, 48.691536369000062 ], [ -123.431566545999885, 48.69234567200008 ], [ -123.431915354999973, 48.692343575000116 ], [ -123.431913057999978, 48.692075004000024 ], [ -123.433135975999903, 48.692070414000035 ], [ -123.433138255999921, 48.692336211000089 ], [ -123.433677237999959, 48.692332962000123 ], [ -123.433760937999963, 48.692386061000022 ], [ -123.433771286999956, 48.692607791000064 ], [ -123.433955893999922, 48.692607096000131 ], [ -123.433962192999971, 48.693340088000099 ], [ -123.435508736999921, 48.693345361000091 ], [ -123.435592552999964, 48.693306401000129 ], [ -123.435588794999944, 48.692870817000056 ], [ -123.4358278099999, 48.692869914000063 ], [ -123.435987336999915, 48.692406562000016 ], [ -123.43599240499999, 48.692401935000099 ], [ -123.435991781, 48.692329526000066 ], [ -123.436072041999935, 48.692329222000104 ] ], [ [ -123.444125610999933, 48.690139385000073 ], [ -123.444120863999956, 48.689599635000064 ], [ -123.443812919999957, 48.689600822000095 ], [ -123.44381483799998, 48.689732361000075 ], [ -123.44389503799998, 48.689926062000076 ], [ -123.44392446099998, 48.690140160000041 ], [ -123.444125610999933, 48.690139385000073 ], [ -123.444131244999966, 48.690780058000037 ], [ -123.444538973999954, 48.690789842000115 ], [ -123.444537984999954, 48.690677563000044 ], [ -123.444945612999931, 48.690675989000049 ], [ -123.444943234999968, 48.690406114000048 ], [ -123.444535608999942, 48.690407688000128 ], [ -123.44453323499998, 48.690137812000025 ], [ -123.444125610999933, 48.690139385000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167677311", "BldgCostT": "104078190", "sL_LossRatio": "0.75188155098755", "sL_AssetLoss": "129932.7", "sL_BldgLoss": "97694", "sL_StrLoss": "65619.4", "sL_NStrLoss": "32074.6", "sL_ContLoss": "32238.7", "geom_point": "0101000020E6100000015C902DCBD75EC0EA24DF9572344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.369175374999941, 48.409317099000134 ], [ -123.36925039399999, 48.408768801000079 ], [ -123.369619219999919, 48.408287930000029 ], [ -123.371003391, 48.408477896000143 ], [ -123.371015645999975, 48.408483830000101 ], [ -123.371098010999958, 48.408523679 ], [ -123.371965889999956, 48.408943606000022 ], [ -123.37262969599999, 48.409084606000057 ], [ -123.373778090999963, 48.409036201000063 ], [ -123.374378873999902, 48.409085219000069 ], [ -123.374379433999962, 48.409161369000067 ], [ -123.375184571999938, 48.409158746000102 ], [ -123.374756297999923, 48.409738406000066 ], [ -123.373963501999953, 48.410290996000121 ], [ -123.372677202999924, 48.411471990000038 ], [ -123.372040337999977, 48.41117056700012 ], [ -123.371976304000029, 48.411140248000045 ], [ -123.371008078999964, 48.410681994000079 ], [ -123.370666840999974, 48.410512838000045 ], [ -123.370303179, 48.410332605000058 ], [ -123.368907000999982, 48.410092295000048 ], [ -123.369000212999936, 48.40984990100003 ], [ -123.369045801, 48.409731388000061 ], [ -123.369064420999948, 48.409671869000093 ], [ -123.369175374999941, 48.409317099000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "453166061", "BldgCostT": "312808190", "sL_LossRatio": "0.751513614331002", "sL_AssetLoss": "119541.68", "sL_BldgLoss": "89837.2", "sL_StrLoss": "47776.5", "sL_NStrLoss": "42060.7", "sL_ContLoss": "29704.48", "geom_point": "0101000020E610000057EA79D4ABD75EC0018B36A6AB344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368312404999983, 48.411568298000105 ], [ -123.36847580099996, 48.411170112000029 ], [ -123.368646774999988, 48.410753435000096 ], [ -123.368722677999983, 48.410568400000081 ], [ -123.368767878999947, 48.410459495000048 ], [ -123.368907000999982, 48.410092295000048 ], [ -123.370303179, 48.410332605000058 ], [ -123.370666840999974, 48.410512838000045 ], [ -123.371008078999964, 48.410681994000079 ], [ -123.371976304000029, 48.411140248000045 ], [ -123.372040337999977, 48.41117056700012 ], [ -123.372677202999924, 48.411471990000038 ], [ -123.371989187999972, 48.412104308000018 ], [ -123.370844294999969, 48.411566321000095 ], [ -123.370339418999919, 48.411985703000049 ], [ -123.369897016999971, 48.412349894000037 ], [ -123.369129595999965, 48.413074799000142 ], [ -123.367831295999963, 48.412458212000139 ], [ -123.368312404999983, 48.411568298000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "400061083", "BldgCostT": "276568333", "sL_LossRatio": "0.917877984028594", "sL_AssetLoss": "131952.07", "sL_BldgLoss": "121115.9", "sL_StrLoss": "75367", "sL_NStrLoss": "45748.9", "sL_ContLoss": "10836.17", "geom_point": "0101000020E61000001C4DB2FEE4D55EC05C98E8A009364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.339703658999952, 48.419964484000062 ], [ -123.3398136859999, 48.419964495000109 ], [ -123.340989676999968, 48.419996700000119 ], [ -123.341787315999966, 48.419967208000088 ], [ -123.3425023, 48.419847093000023 ], [ -123.342462994999948, 48.420547804000094 ], [ -123.342419305999954, 48.421373690000109 ], [ -123.344272119999914, 48.421605101000083 ], [ -123.344872001999946, 48.421702038000021 ], [ -123.345163912999951, 48.421749209000055 ], [ -123.345249703999954, 48.42185501400008 ], [ -123.344909307999984, 48.422913032000068 ], [ -123.344906872999971, 48.42292060700008 ], [ -123.344852837999966, 48.423088497000073 ], [ -123.344850402999953, 48.423096072000142 ], [ -123.344810629000023, 48.423219746000044 ], [ -123.344759511999911, 48.423378605000032 ], [ -123.344662911999961, 48.423583604000079 ], [ -123.344877806999989, 48.42384150500002 ], [ -123.34383160699997, 48.424212086000125 ], [ -123.343053294999933, 48.424449494000051 ], [ -123.342492914999923, 48.424624900000055 ], [ -123.34208899599993, 48.424753603000163 ], [ -123.341566214999915, 48.424228374000052 ], [ -123.341251206999942, 48.423911902000022 ], [ -123.340945614999953, 48.423612003000059 ], [ -123.340700280999954, 48.423272197000124 ], [ -123.340678197999978, 48.422057697000071 ], [ -123.340614715999948, 48.421747692000046 ], [ -123.339160216, 48.421508293000031 ], [ -123.338936997999951, 48.421424201000015 ], [ -123.338930047999938, 48.421199576000078 ], [ -123.338922540999988, 48.420956772000117 ], [ -123.338903495999944, 48.420340190000033 ], [ -123.338864705999981, 48.420238188000063 ], [ -123.338637702999947, 48.41995749700002 ], [ -123.339135508, 48.419962978000086 ], [ -123.33927410699998, 48.41996449600002 ], [ -123.339446872999986, 48.419964490000083 ], [ -123.339703658999952, 48.419964484000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55339667", "BldgCostT": "33511667", "sL_LossRatio": "0.81620269618363", "sL_AssetLoss": "69546.45", "sL_BldgLoss": "56764", "sL_StrLoss": "43115", "sL_NStrLoss": "13649", "sL_ContLoss": "12782.45", "geom_point": "0101000020E61000007DCC4065BCD55EC04129AD0142364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.338932369999924, 48.421639729000113 ], [ -123.338936997999951, 48.421424201000015 ], [ -123.339160216, 48.421508293000031 ], [ -123.340614715999948, 48.421747692000046 ], [ -123.340678197999978, 48.422057697000071 ], [ -123.340700280999954, 48.423272197000124 ], [ -123.340945614999953, 48.423612003000059 ], [ -123.341251206999942, 48.423911902000022 ], [ -123.341566214999915, 48.424228374000052 ], [ -123.34208899599993, 48.424753603000163 ], [ -123.34125527899999, 48.425039233000042 ], [ -123.341186498999946, 48.425062798000084 ], [ -123.341062044999944, 48.425096833000069 ], [ -123.339957292999912, 48.425399009000031 ], [ -123.339363795999958, 48.425564406000071 ], [ -123.338043381, 48.426082306000097 ], [ -123.338020385999926, 48.425072052000054 ], [ -123.338019517999939, 48.425034757000049 ], [ -123.338018316, 48.424980310000066 ], [ -123.338012317999983, 48.424717007000083 ], [ -123.338020001999922, 48.423813600000074 ], [ -123.3377481039999, 48.4237787920001 ], [ -123.337584603999957, 48.42373409800004 ], [ -123.337325892, 48.423416400000065 ], [ -123.338932110999949, 48.423357579000069 ], [ -123.338957619, 48.422783803000073 ], [ -123.338916875999971, 48.422357096000056 ], [ -123.338932369999924, 48.421639729000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183138145", "BldgCostT": "118106524", "sL_LossRatio": "0.85520680789035", "sL_AssetLoss": "148181", "sL_BldgLoss": "126725.4", "sL_StrLoss": "90825.4", "sL_NStrLoss": "35900", "sL_ContLoss": "21455.6", "geom_point": "0101000020E6100000E1D28CA08CD55EC01F35FD442B364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.333957592000019, 48.422399106000043 ], [ -123.334489801999936, 48.421790304000076 ], [ -123.33477928799999, 48.42144129800004 ], [ -123.335067493999986, 48.421187097000043 ], [ -123.335318018999942, 48.420930898000101 ], [ -123.335501409999964, 48.420870577000045 ], [ -123.335847404999953, 48.420756786000048 ], [ -123.33588071799997, 48.420745842000088 ], [ -123.335914675999959, 48.420734667000069 ], [ -123.33595990399999, 48.420719793000032 ], [ -123.33640099899999, 48.42057761500012 ], [ -123.336426531999962, 48.420570514000104 ], [ -123.338637702999947, 48.41995749700002 ], [ -123.338864705999981, 48.420238188000063 ], [ -123.338903495999944, 48.420340190000033 ], [ -123.338922540999988, 48.420956772000117 ], [ -123.338930047999938, 48.421199576000078 ], [ -123.338936997999951, 48.421424201000015 ], [ -123.338932369999924, 48.421639729000113 ], [ -123.338916875999971, 48.422357096000056 ], [ -123.338957619, 48.422783803000073 ], [ -123.338932110999949, 48.423357579000069 ], [ -123.337325892, 48.423416400000065 ], [ -123.337584603999957, 48.42373409800004 ], [ -123.3377481039999, 48.4237787920001 ], [ -123.338020001999922, 48.423813600000074 ], [ -123.338012317999983, 48.424717007000083 ], [ -123.338018316, 48.424980310000066 ], [ -123.338019517999939, 48.425034757000049 ], [ -123.338020385999926, 48.425072052000054 ], [ -123.338043381, 48.426082306000097 ], [ -123.337973848, 48.426111149000107 ], [ -123.337381620999906, 48.426356731000084 ], [ -123.337018300999915, 48.426507409000116 ], [ -123.335740790999964, 48.426526690000053 ], [ -123.334942595999934, 48.426515594000122 ], [ -123.334962911999952, 48.426227497000049 ], [ -123.33482954199998, 48.426014798000104 ], [ -123.334819301999929, 48.425998493000044 ], [ -123.334809892999928, 48.425829605000075 ], [ -123.335022724999959, 48.425573404000062 ], [ -123.335032745999953, 48.425368555000041 ], [ -123.335056276000017, 48.424888484000149 ], [ -123.335067812999981, 48.4246537000001 ], [ -123.335300809999978, 48.424420608000062 ], [ -123.33535381199999, 48.424199190000067 ], [ -123.33495259099999, 48.423345899000061 ], [ -123.333957592000019, 48.422399106000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.960400494993813", "sL_AssetLoss": "888.9", "sL_BldgLoss": "853.7", "sL_StrLoss": "756", "sL_NStrLoss": "97.7", "sL_ContLoss": "35.2", "geom_point": "0101000020E61000004E5FAEC943D65EC0C0611E09663F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.347768690999928, 48.495026265000085 ], [ -123.348170721999935, 48.495036321000036 ], [ -123.347722897999986, 48.495841546000079 ], [ -123.347768690999928, 48.495026265000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35835500", "BldgCostT": "23240000", "sL_LossRatio": "0.951411659700434", "sL_AssetLoss": "46361.74", "sL_BldgLoss": "44109.1", "sL_StrLoss": "35968.8", "sL_NStrLoss": "8140.3", "sL_ContLoss": "2252.64", "geom_point": "0101000020E6100000A58CEA3AF5D55EC0F22FEEAB17404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.341459025999924, 48.498949123000024 ], [ -123.345780248999915, 48.499057371000063 ], [ -123.345772542999953, 48.499069927000065 ], [ -123.344408, 48.50169582400008 ], [ -123.344045361999974, 48.502466252000033 ], [ -123.343982257999983, 48.502971696 ], [ -123.34377310099994, 48.503338012 ], [ -123.342802103999986, 48.502704997000123 ], [ -123.341864897999955, 48.502312005000185 ], [ -123.340736120999949, 48.501460299000072 ], [ -123.340712755999988, 48.501420488000058 ], [ -123.340764465999911, 48.500502410000045 ], [ -123.341367714999961, 48.500517536000075 ], [ -123.341371867999925, 48.500443781000108 ], [ -123.341426896999963, 48.499466524000049 ], [ -123.34142988799999, 48.499466598000041 ], [ -123.341459025999924, 48.498949123000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14625667", "BldgCostT": "10086667", "sL_LossRatio": "0.957726894197718", "sL_AssetLoss": "23343.92", "sL_BldgLoss": "22357.1", "sL_StrLoss": "18486", "sL_NStrLoss": "3871.1", "sL_ContLoss": "986.82", "geom_point": "0101000020E6100000BE7A47539ED65EC02976762AC73E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.35143675099999, 48.489938064000043 ], [ -123.355398310999959, 48.489300001000103 ], [ -123.355910345999973, 48.489315969000117 ], [ -123.355660359999931, 48.490542942000047 ], [ -123.351322868999929, 48.491968538000087 ], [ -123.35143675099999, 48.489938064000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.946452100019246", "sL_AssetLoss": "6754.7", "sL_BldgLoss": "6393", "sL_StrLoss": "5023", "sL_NStrLoss": "1370", "sL_ContLoss": "361.7", "geom_point": "0101000020E61000004A021E624DD55EC08372D34DFF3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.332196824999954, 48.492935895000045 ], [ -123.333428927999989, 48.490177863000063 ], [ -123.333864189999971, 48.490254538000109 ], [ -123.333743961, 48.490254887000084 ], [ -123.333563106999947, 48.490611047000137 ], [ -123.333569625999957, 48.49160485700002 ], [ -123.333163590999959, 48.491606032000078 ], [ -123.333168895999961, 48.492415696000101 ], [ -123.332762854999928, 48.492416871000088 ], [ -123.332770029999935, 48.493513606000128 ], [ -123.332771684999955, 48.493766310000076 ], [ -123.332038372999961, 48.493768427000091 ], [ -123.332088037999966, 48.493676570000048 ], [ -123.331953504999944, 48.493297184000056 ], [ -123.332196824999954, 48.492935895000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86995417", "BldgCostT": "54891667", "sL_LossRatio": "0.873852153779153", "sL_AssetLoss": "105303.74", "sL_BldgLoss": "92019.9", "sL_StrLoss": "70218.6", "sL_NStrLoss": "21801.3", "sL_ContLoss": "13283.84", "geom_point": "0101000020E6100000CE30EF50D8D55EC0EFC92EDE303E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.337856066999947, 48.489141559000089 ], [ -123.337417484999889, 48.486639911000033 ], [ -123.336981681999958, 48.484636197000036 ], [ -123.336869270999927, 48.484119295000021 ], [ -123.33704916399995, 48.484114792000078 ], [ -123.337715766999963, 48.484104470000041 ], [ -123.339340615999902, 48.484135397000102 ], [ -123.33966121099995, 48.484990988000071 ], [ -123.339886002999918, 48.485628804000079 ], [ -123.340393989999967, 48.485580207000062 ], [ -123.34091057599997, 48.485642798000143 ], [ -123.341765902999953, 48.485808488000053 ], [ -123.342043609999976, 48.485795578000079 ], [ -123.34237617699992, 48.485718291000069 ], [ -123.342583885999915, 48.485627899000079 ], [ -123.342784402999968, 48.485475197000056 ], [ -123.343516896999944, 48.484101203000122 ], [ -123.343671815999983, 48.483701105000058 ], [ -123.343667497999959, 48.483489107000047 ], [ -123.343578910999952, 48.483238899000078 ], [ -123.343650117999942, 48.482934099000083 ], [ -123.343944671999964, 48.482211090000121 ], [ -123.344233136999989, 48.482223765000036 ], [ -123.344803108999926, 48.482248809000033 ], [ -123.346199489999961, 48.482231498000054 ], [ -123.346468762999947, 48.482452132000091 ], [ -123.346543535, 48.483303287000076 ], [ -123.346567806999971, 48.483463346000043 ], [ -123.347120902999947, 48.48549339100002 ], [ -123.344559737999958, 48.485429267000036 ], [ -123.344649590999936, 48.483831078000087 ], [ -123.344480088999973, 48.483826831 ], [ -123.344483197, 48.484285597000081 ], [ -123.344077220999978, 48.484286811000061 ], [ -123.344082697999923, 48.485096475000084 ], [ -123.34367671499993, 48.485097687000064 ], [ -123.343680361999986, 48.485637463000103 ], [ -123.343349335999946, 48.485638451000042 ], [ -123.343275444999918, 48.485797195000039 ], [ -123.343281659999917, 48.486718227000061 ], [ -123.342875664999951, 48.486719437000062 ], [ -123.342879303999965, 48.487259211999984 ], [ -123.342473302999935, 48.487260420000105 ], [ -123.342475120999936, 48.487530309000086 ], [ -123.341257115999966, 48.487533926000019 ], [ -123.34125530399993, 48.487264038 ], [ -123.34084930599991, 48.487265241000038 ], [ -123.340852922999915, 48.487805017000028 ], [ -123.340460476999951, 48.487806178000049 ], [ -123.340446917999955, 48.487806218000095 ], [ -123.340447119999936, 48.487836386000026 ], [ -123.340448725999948, 48.488076106000044 ], [ -123.340290880999945, 48.48807657300005 ], [ -123.340250241999968, 48.48807669300006 ], [ -123.340044536999969, 48.488349320000047 ], [ -123.340044842999973, 48.488395046000086 ], [ -123.340051740999968, 48.48942674500006 ], [ -123.339177572999944, 48.489429324000049 ], [ -123.339145807999927, 48.489429418000071 ], [ -123.338835871999962, 48.489758020000053 ], [ -123.338836118999964, 48.489794968000126 ], [ -123.338839084, 48.49024 ], [ -123.338433060999989, 48.490241195000102 ], [ -123.33843485599999, 48.490511082000118 ], [ -123.338172960999927, 48.490511853000037 ], [ -123.338124707999896, 48.490511994000073 ], [ -123.338078236999962, 48.490561261000103 ], [ -123.338012943999971, 48.490543007000078 ], [ -123.338047005999925, 48.490259988000055 ], [ -123.337878318999984, 48.489272007000174 ], [ -123.337856066999947, 48.489141559000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.958330992377849", "sL_AssetLoss": "2669.85", "sL_BldgLoss": "2558.6", "sL_StrLoss": "2118", "sL_NStrLoss": "440.6", "sL_ContLoss": "111.25", "geom_point": "0101000020E610000079CC40653CD65EC0A5841E396B3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.347116452999941, 48.488466526000089 ], [ -123.34725567299995, 48.485988006000049 ], [ -123.347936632999989, 48.488487046000039 ], [ -123.347116452999941, 48.488466526000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100573501", "BldgCostT": "66630001", "sL_LossRatio": "0.943492115972913", "sL_AssetLoss": "132837.57", "sL_BldgLoss": "125331.2", "sL_StrLoss": "101840", "sL_NStrLoss": "23491.2", "sL_ContLoss": "7506.37", "geom_point": "0101000020E6100000FC4002B172D55EC02211B7960B3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.335160977, 48.482023992000109 ], [ -123.336521519999948, 48.4820202860001 ], [ -123.336569981999901, 48.482191031000063 ], [ -123.336513051999972, 48.482290611000145 ], [ -123.336869270999927, 48.484119295000021 ], [ -123.336981681999958, 48.484636197000036 ], [ -123.337417484999889, 48.486639911000033 ], [ -123.33484787899999, 48.486854007000019 ], [ -123.33426496, 48.486693881000072 ], [ -123.334160408999963, 48.48666518000006 ], [ -123.332336203999944, 48.486164089000091 ], [ -123.332795896999926, 48.485392015000095 ], [ -123.333261787999916, 48.484604806000114 ], [ -123.33371049699997, 48.483837007000083 ], [ -123.333015920999912, 48.483648206000119 ], [ -123.333281495999955, 48.483203989000032 ], [ -123.333573594999947, 48.48298321700004 ], [ -123.334302885999989, 48.482938397000034 ], [ -123.334582409999925, 48.482868797000066 ], [ -123.334809915, 48.482739305000088 ], [ -123.334966864999942, 48.482535561000141 ], [ -123.334989203999953, 48.482506601000132 ], [ -123.335114914999963, 48.482241894000026 ], [ -123.335160977, 48.482023992000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130188166", "BldgCostT": "83416666", "sL_LossRatio": "0.933731921111212", "sL_AssetLoss": "184096.63", "sL_BldgLoss": "171896.9", "sL_StrLoss": "134616", "sL_NStrLoss": "37280.9", "sL_ContLoss": "12199.73", "geom_point": "0101000020E61000002490650361D55EC0E16C6381693E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.32939908899999, 48.487215511000052 ], [ -123.329883995999921, 48.486405413000071 ], [ -123.33004070199999, 48.486142400000105 ], [ -123.330244097999952, 48.48561474200006 ], [ -123.330308047999921, 48.485631549000047 ], [ -123.332336203999944, 48.486164089000091 ], [ -123.334160408999963, 48.48666518000006 ], [ -123.33426496, 48.486693881000072 ], [ -123.33484787899999, 48.486854007000019 ], [ -123.337417484999889, 48.486639911000033 ], [ -123.337856066999947, 48.489141559000089 ], [ -123.336567587999951, 48.48922911300015 ], [ -123.335803984999984, 48.489304603000086 ], [ -123.33529146699999, 48.48940900499999 ], [ -123.335122991999924, 48.489402001000073 ], [ -123.334690508999955, 48.489284703000081 ], [ -123.333702011999947, 48.489011889000018 ], [ -123.333231104999967, 48.488858515000047 ], [ -123.333152120999941, 48.488773502000079 ], [ -123.333126690999933, 48.488673685000066 ], [ -123.333365088999969, 48.488278402000084 ], [ -123.331389192999964, 48.487740909000131 ], [ -123.32939908899999, 48.487215511000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111163250", "BldgCostT": "72065000", "sL_LossRatio": "0.795269739012566", "sL_AssetLoss": "412839.8", "sL_BldgLoss": "328319", "sL_StrLoss": "198983", "sL_NStrLoss": "129336", "sL_ContLoss": "84520.8", "geom_point": "0101000020E6100000760CB87C1ED55EC0D3D4AA44F63D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.330244097999952, 48.48561474200006 ], [ -123.330190194999886, 48.485600594000054 ], [ -123.329453795999925, 48.485172592000055 ], [ -123.329087414999933, 48.484962309000089 ], [ -123.328424710999968, 48.484760794000039 ], [ -123.327149796999947, 48.484370592000069 ], [ -123.326128317999917, 48.484087856000059 ], [ -123.326481982999951, 48.483496209000108 ], [ -123.326780274999976, 48.482999663000037 ], [ -123.327333907999972, 48.482073093000054 ], [ -123.32769448499999, 48.482173693000064 ], [ -123.330340871999965, 48.48291179600011 ], [ -123.331758598999969, 48.48330719700008 ], [ -123.333015920999912, 48.483648206000119 ], [ -123.33371049699997, 48.483837007000083 ], [ -123.333261787999916, 48.484604806000114 ], [ -123.332795896999926, 48.485392015000095 ], [ -123.332336203999944, 48.486164089000091 ], [ -123.330308047999921, 48.485631549000047 ], [ -123.330244097999952, 48.48561474200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106719334", "BldgCostT": "72918334", "sL_LossRatio": "0.849565997028841", "sL_AssetLoss": "458407", "sL_BldgLoss": "389447", "sL_StrLoss": "243807", "sL_NStrLoss": "145640", "sL_ContLoss": "68960", "geom_point": "0101000020E6100000B0BBABE404D55EC0D172A0875A3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.32542621599994, 48.48522620500006 ], [ -123.326128317999917, 48.484087856000059 ], [ -123.327149796999947, 48.484370592000069 ], [ -123.328424710999968, 48.484760794000039 ], [ -123.329087414999933, 48.484962309000089 ], [ -123.329453795999925, 48.485172592000055 ], [ -123.330190194999886, 48.485600594000054 ], [ -123.330244097999952, 48.48561474200006 ], [ -123.33004070199999, 48.486142400000105 ], [ -123.329883995999921, 48.486405413000071 ], [ -123.32939908899999, 48.487215511000052 ], [ -123.331389192999964, 48.487740909000131 ], [ -123.330920991999932, 48.488495593000081 ], [ -123.330104520999967, 48.489864602000118 ], [ -123.330002911999955, 48.490037004000051 ], [ -123.329656507999971, 48.490619810000133 ], [ -123.328090218999961, 48.490196204000057 ], [ -123.327931409999934, 48.490113702000023 ], [ -123.327873902999954, 48.490006799000071 ], [ -123.327813588999945, 48.48956790000004 ], [ -123.327708996999917, 48.489267705000053 ], [ -123.327532898999905, 48.489060388000112 ], [ -123.327463803999976, 48.488945899000107 ], [ -123.327472426999947, 48.488792798000077 ], [ -123.327496714999981, 48.488756616000082 ], [ -123.328239581999952, 48.487650702000082 ], [ -123.328356508999974, 48.487446299000013 ], [ -123.328356282999948, 48.487020589000046 ], [ -123.328302885999932, 48.486912914000044 ], [ -123.326041419999939, 48.486290506000095 ], [ -123.32495620899999, 48.485987152000085 ], [ -123.32542621599994, 48.48522620500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148668667", "BldgCostT": "97401667", "sL_LossRatio": "0.850443540214832", "sL_AssetLoss": "500315.4", "sL_BldgLoss": "425490", "sL_StrLoss": "273657", "sL_NStrLoss": "151833", "sL_ContLoss": "74825.4", "geom_point": "0101000020E61000009E18D4AFDBD45EC0AE1BCE80A33E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.323765899, 48.487919302000122 ], [ -123.32495620899999, 48.485987152000085 ], [ -123.326041419999939, 48.486290506000095 ], [ -123.328302885999932, 48.486912914000044 ], [ -123.328356282999948, 48.487020589000046 ], [ -123.328356508999974, 48.487446299000013 ], [ -123.328239581999952, 48.487650702000082 ], [ -123.327496714999981, 48.488756616000082 ], [ -123.327472426999947, 48.488792798000077 ], [ -123.327463803999976, 48.488945899000107 ], [ -123.327532898999905, 48.489060388000112 ], [ -123.327708996999917, 48.489267705000053 ], [ -123.327813588999945, 48.48956790000004 ], [ -123.327873902999954, 48.490006799000071 ], [ -123.327931409999934, 48.490113702000023 ], [ -123.328090218999961, 48.490196204000057 ], [ -123.329656507999971, 48.490619810000133 ], [ -123.329227809999935, 48.491343905000086 ], [ -123.328566891000023, 48.492397580000095 ], [ -123.327807897999932, 48.492200905000026 ], [ -123.327244825999983, 48.492045805000039 ], [ -123.325768294999975, 48.491639093000067 ], [ -123.325026746999953, 48.491457710000105 ], [ -123.32431301799997, 48.491283103000058 ], [ -123.322823912999937, 48.490904703000041 ], [ -123.322051203999976, 48.490711111000088 ], [ -123.322459461999983, 48.490039776000046 ], [ -123.3225205049999, 48.489939384000124 ], [ -123.323337793999926, 48.488631704000042 ], [ -123.323765899, 48.487919302000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109001416", "BldgCostT": "74701666", "sL_LossRatio": "0.928851141761163", "sL_AssetLoss": "222345.1", "sL_BldgLoss": "206525.5", "sL_StrLoss": "160410.4", "sL_NStrLoss": "46115.1", "sL_ContLoss": "15819.6", "geom_point": "0101000020E61000002F20BC8F46D55EC02B9CF6F7C63E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.329656507999971, 48.490619810000133 ], [ -123.330002911999955, 48.490037004000051 ], [ -123.330104520999967, 48.489864602000118 ], [ -123.330920991999932, 48.488495593000081 ], [ -123.331389192999964, 48.487740909000131 ], [ -123.333365088999969, 48.488278402000084 ], [ -123.333126690999933, 48.488673685000066 ], [ -123.333152120999941, 48.488773502000079 ], [ -123.333231104999967, 48.488858515000047 ], [ -123.333702011999947, 48.489011889000018 ], [ -123.334690508999955, 48.489284703000081 ], [ -123.335122991999924, 48.489402001000073 ], [ -123.33529146699999, 48.48940900499999 ], [ -123.335803984999984, 48.489304603000086 ], [ -123.336567587999951, 48.48922911300015 ], [ -123.337856066999947, 48.489141559000089 ], [ -123.337878318999984, 48.489272007000174 ], [ -123.338047005999925, 48.490259988000055 ], [ -123.338012943999971, 48.490543007000078 ], [ -123.337904316999953, 48.490512642000034 ], [ -123.336404725999969, 48.490517034000064 ], [ -123.336402940999932, 48.490247146000058 ], [ -123.335996917999921, 48.490248331000032 ], [ -123.335995138, 48.48997890600004 ], [ -123.33599350399993, 48.489978449 ], [ -123.33558911399993, 48.489979628000128 ], [ -123.335590894999925, 48.490249517000066 ], [ -123.333864189999971, 48.490254538000109 ], [ -123.333428927999989, 48.490177863000063 ], [ -123.332196824999954, 48.492935895000045 ], [ -123.331953504999944, 48.493297184000056 ], [ -123.331302307999948, 48.493127485000095 ], [ -123.330495392999936, 48.492916915000116 ], [ -123.328566891000023, 48.492397580000095 ], [ -123.329227809999935, 48.491343905000086 ], [ -123.329656507999971, 48.490619810000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136467418", "BldgCostT": "90431668", "sL_LossRatio": "0.852025801198056", "sL_AssetLoss": "506937.7", "sL_BldgLoss": "431924", "sL_StrLoss": "274426", "sL_NStrLoss": "157498", "sL_ContLoss": "75013.7", "geom_point": "0101000020E6100000844270018DD45EC09B7573AF1B3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.313808236999975, 48.495267661000121 ], [ -123.313331024, 48.495170335000054 ], [ -123.312883407999919, 48.495171552000102 ], [ -123.312882837999965, 48.495078926000069 ], [ -123.312025134999899, 48.494903990000154 ], [ -123.3112575, 48.494906067000031 ], [ -123.311256525999923, 48.494747217000167 ], [ -123.311237523999935, 48.494743342000085 ], [ -123.311733796999974, 48.49394070200006 ], [ -123.312470307999916, 48.492823187000042 ], [ -123.313803301999968, 48.490744091000103 ], [ -123.31414001, 48.490833796000118 ], [ -123.315248410999985, 48.491134200000033 ], [ -123.315933943999937, 48.491311768000045 ], [ -123.31657201299997, 48.491477006000068 ], [ -123.316957409999972, 48.490830292000098 ], [ -123.317796763999951, 48.491055706000026 ], [ -123.318481197999972, 48.491239508000064 ], [ -123.319781288999962, 48.491591609000146 ], [ -123.321287612999967, 48.491952495000099 ], [ -123.321292715999917, 48.491944198000034 ], [ -123.322051203999976, 48.490711111000088 ], [ -123.322823912999937, 48.490904703000041 ], [ -123.32431301799997, 48.491283103000058 ], [ -123.325026746999953, 48.491457710000105 ], [ -123.325768294999975, 48.491639093000067 ], [ -123.327244825999983, 48.492045805000039 ], [ -123.327807897999932, 48.492200905000026 ], [ -123.328566891000023, 48.492397580000095 ], [ -123.330495392999936, 48.492916915000116 ], [ -123.331302307999948, 48.493127485000095 ], [ -123.331953504999944, 48.493297184000056 ], [ -123.332088037999966, 48.493676570000048 ], [ -123.332038372999961, 48.493768427000091 ], [ -123.331959579999975, 48.493768655000061 ], [ -123.331960519999924, 48.493912423000047 ], [ -123.331746068999919, 48.494309056000063 ], [ -123.331312215999972, 48.494310306000109 ], [ -123.331152580999955, 48.494554767000103 ], [ -123.33115806099994, 48.495396557000113 ], [ -123.331015276999977, 48.495660624000017 ], [ -123.329535510999932, 48.495664869000038 ], [ -123.329533761999954, 48.495394981000025 ], [ -123.329127695999915, 48.495396144000054 ], [ -123.329124699999966, 48.494933053000082 ], [ -123.328893144999967, 48.494857029000052 ], [ -123.328312080999979, 48.49485868700004 ], [ -123.328310834999968, 48.49466584000011 ], [ -123.328078210999976, 48.494589461000025 ], [ -123.326280043999958, 48.494594572000047 ], [ -123.326276581999977, 48.494054797000096 ], [ -123.326229354999938, 48.494054931000065 ], [ -123.325464470999961, 48.494057096000034 ], [ -123.32546274399999, 48.493787208000128 ], [ -123.325056692, 48.493788355000085 ], [ -123.325055343999963, 48.493577584000064 ], [ -123.324893305, 48.493518924000043 ], [ -123.323836815999968, 48.493521901000079 ], [ -123.323835096999986, 48.493252013000046 ], [ -123.323023, 48.493254295000035 ], [ -123.323021303999909, 48.492987381000077 ], [ -123.323009006999925, 48.492984441000033 ], [ -123.320692223999984, 48.492990919000071 ], [ -123.320585007999952, 48.492991218000078 ], [ -123.320583378999942, 48.492732842000137 ], [ -123.320486137, 48.492732261000072 ], [ -123.320001437999949, 48.492786461000065 ], [ -123.319771954999965, 48.492840748000077 ], [ -123.31977291499993, 48.492993477000063 ], [ -123.319118649999893, 48.492995293000014 ], [ -123.318931501999927, 48.493039563000075 ], [ -123.318882996999918, 48.493893862000142 ], [ -123.31675600599999, 48.494250888000053 ], [ -123.31587790099999, 48.494612697000093 ], [ -123.315427467999911, 48.494950682000116 ], [ -123.314100048999975, 48.494917065000017 ], [ -123.314101599999958, 48.495168235000072 ], [ -123.313924403, 48.495168719000056 ], [ -123.313887736999931, 48.495232561000059 ], [ -123.313808236999975, 48.495267661000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "426163715", "BldgCostT": "278610667", "sL_LossRatio": "0.795740469013789", "sL_AssetLoss": "1003049.4", "sL_BldgLoss": "798167", "sL_StrLoss": "434578", "sL_NStrLoss": "363589", "sL_ContLoss": "204882.4", "geom_point": "0101000020E6100000453CC9EB3BD55EC05D724F36693D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.334411334999956, 48.47593800700006 ], [ -123.334572388999931, 48.475864592000029 ], [ -123.334322413999956, 48.476225292000052 ], [ -123.333879393999922, 48.476775092 ], [ -123.333365085999944, 48.477105699000028 ], [ -123.334242315000012, 48.478195502000119 ], [ -123.335128898, 48.479241201 ], [ -123.335466883999985, 48.479761898000099 ], [ -123.335985709999974, 48.48057568600008 ], [ -123.336245734999949, 48.481042191000064 ], [ -123.336521519999948, 48.4820202860001 ], [ -123.335160977, 48.482023992000109 ], [ -123.335114914999963, 48.482241894000026 ], [ -123.334989203999953, 48.482506601000132 ], [ -123.334966864999942, 48.482535561000141 ], [ -123.334809915, 48.482739305000088 ], [ -123.334582409999925, 48.482868797000066 ], [ -123.334302885999989, 48.482938397000034 ], [ -123.333573594999947, 48.48298321700004 ], [ -123.333281495999955, 48.483203989000032 ], [ -123.333015920999912, 48.483648206000119 ], [ -123.331758598999969, 48.48330719700008 ], [ -123.330340871999965, 48.48291179600011 ], [ -123.32769448499999, 48.482173693000064 ], [ -123.327333907999972, 48.482073093000054 ], [ -123.327865062999962, 48.48133674200006 ], [ -123.327995868999921, 48.481155360000081 ], [ -123.328314503999962, 48.480713590000036 ], [ -123.328777185999968, 48.480367286000075 ], [ -123.328958889999953, 48.480331291000041 ], [ -123.328349299999914, 48.477376191000097 ], [ -123.328381109999967, 48.476026106000099 ], [ -123.332814601999985, 48.476017786000085 ], [ -123.334122810999972, 48.476005693000047 ], [ -123.334375602999927, 48.475954290000111 ], [ -123.334411334999956, 48.47593800700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120017250", "BldgCostT": "77085000", "sL_LossRatio": "0.857562530857071", "sL_AssetLoss": "407119", "sL_BldgLoss": "349130", "sL_StrLoss": "227010", "sL_NStrLoss": "122120", "sL_ContLoss": "57989", "geom_point": "0101000020E61000004052E15BDAD45EC0CF703DE9483D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.327546489999918, 48.476023100000084 ], [ -123.328381109999967, 48.476026106000099 ], [ -123.328349299999914, 48.477376191000097 ], [ -123.328958889999953, 48.480331291000041 ], [ -123.328777185999968, 48.480367286000075 ], [ -123.328314503999962, 48.480713590000036 ], [ -123.327995868999921, 48.481155360000081 ], [ -123.327865062999962, 48.48133674200006 ], [ -123.327333907999972, 48.482073093000054 ], [ -123.327081691999965, 48.482007810000049 ], [ -123.326390934999935, 48.481828946000086 ], [ -123.325392778999941, 48.481570495000035 ], [ -123.32464770699994, 48.481367806000073 ], [ -123.322944704999898, 48.480907290000061 ], [ -123.323004810999976, 48.480753687000025 ], [ -123.323016893999977, 48.479514109000085 ], [ -123.323029496999965, 48.478743397000081 ], [ -123.323031515999972, 48.478340715000066 ], [ -123.323033507999952, 48.477941131000101 ], [ -123.323033727999956, 48.477895810000078 ], [ -123.32303580899999, 48.477473268000089 ], [ -123.323038209999979, 48.476994185000159 ], [ -123.32304230499993, 48.476014891000091 ], [ -123.324322497999958, 48.476021107000093 ], [ -123.324592420999977, 48.47602249600007 ], [ -123.32476133199999, 48.476023370000071 ], [ -123.325126645999944, 48.476025249000038 ], [ -123.326121106999935, 48.476030391000066 ], [ -123.32677717199999, 48.476027025000064 ], [ -123.327546489999918, 48.476023100000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132809251", "BldgCostT": "84810001", "sL_LossRatio": "0.899110644738549", "sL_AssetLoss": "204471.72", "sL_BldgLoss": "183842.7", "sL_StrLoss": "136782.7", "sL_NStrLoss": "47060", "sL_ContLoss": "20629.02", "geom_point": "0101000020E61000006BBF085C8FD55EC0B491E3354C3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.339256503999977, 48.482261054000077 ], [ -123.33857132199995, 48.482083492000079 ], [ -123.337809098999983, 48.482064411000074 ], [ -123.336521519999948, 48.4820202860001 ], [ -123.336245734999949, 48.481042191000064 ], [ -123.335985709999974, 48.48057568600008 ], [ -123.335466883999985, 48.479761898000099 ], [ -123.335128898, 48.479241201 ], [ -123.334242315000012, 48.478195502000119 ], [ -123.333365085999944, 48.477105699000028 ], [ -123.333879393999922, 48.476775092 ], [ -123.334322413999956, 48.476225292000052 ], [ -123.334572388999931, 48.475864592000029 ], [ -123.334799400999941, 48.475671898000094 ], [ -123.335070114999937, 48.47525489700007 ], [ -123.335325912999949, 48.475078301000039 ], [ -123.335381814999934, 48.475165286000028 ], [ -123.335532092999955, 48.475291635000055 ], [ -123.335918211999982, 48.475616189000107 ], [ -123.336275019999931, 48.47591119900008 ], [ -123.336938643999943, 48.476459837000078 ], [ -123.336995794999936, 48.476507103000102 ], [ -123.337591611999969, 48.47693689700008 ], [ -123.339847687999978, 48.47944821300004 ], [ -123.339916819999985, 48.479565303000065 ], [ -123.339922799999968, 48.479673700000049 ], [ -123.339743814999949, 48.480333798000117 ], [ -123.339689442999955, 48.480548777000109 ], [ -123.339256503999977, 48.482261054000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92460249", "BldgCostT": "61794999", "sL_LossRatio": "0.899936920784008", "sL_AssetLoss": "127966.08", "sL_BldgLoss": "115161.4", "sL_StrLoss": "91414", "sL_NStrLoss": "23747.4", "sL_ContLoss": "12804.68", "geom_point": "0101000020E61000008FA25215E8D55EC006DD3553673D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.339256503999977, 48.482261054000077 ], [ -123.339689442999955, 48.480548777000109 ], [ -123.339743814999949, 48.480333798000117 ], [ -123.339922799999968, 48.479673700000049 ], [ -123.339916819999985, 48.479565303000065 ], [ -123.339847687999978, 48.47944821300004 ], [ -123.337591611999969, 48.47693689700008 ], [ -123.338795780999988, 48.476779599000061 ], [ -123.33903869, 48.476752939000072 ], [ -123.339210391, 48.476734112000081 ], [ -123.339462102999974, 48.476773811000051 ], [ -123.339629491999943, 48.476847403000065 ], [ -123.339673002999973, 48.47688779200012 ], [ -123.340078800999919, 48.477264491000042 ], [ -123.340405314999956, 48.477415195000091 ], [ -123.341028004999885, 48.477510101000057 ], [ -123.341237728999971, 48.477512795000059 ], [ -123.3417596, 48.477519487000087 ], [ -123.342807653999927, 48.477519225000094 ], [ -123.343647991999916, 48.477519008000051 ], [ -123.344011885, 48.477528120000095 ], [ -123.344791794999978, 48.477547711000071 ], [ -123.345042084999989, 48.477948917000013 ], [ -123.346199489999961, 48.482231498000054 ], [ -123.344803108999926, 48.482248809000033 ], [ -123.344233136999989, 48.482223765000036 ], [ -123.343944671999964, 48.482211090000121 ], [ -123.342798900999981, 48.482166984000038 ], [ -123.342226990999961, 48.48200839000009 ], [ -123.34201078299999, 48.482009297000083 ], [ -123.341658511999952, 48.482083493000054 ], [ -123.341560819000023, 48.482104058000033 ], [ -123.34143657, 48.482130190000071 ], [ -123.341376863999955, 48.482128825000053 ], [ -123.340613605999934, 48.482111302000149 ], [ -123.340575071999965, 48.482071224000101 ], [ -123.340514078999931, 48.482007792000097 ], [ -123.340492388999948, 48.481912604000087 ], [ -123.339256503999977, 48.482261054000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134887585", "BldgCostT": "85658335", "sL_LossRatio": "0.955001659074155", "sL_AssetLoss": "152946.75", "sL_BldgLoss": "146064.4", "sL_StrLoss": "118493", "sL_NStrLoss": "27571.4", "sL_ContLoss": "6882.35", "geom_point": "0101000020E6100000421A3EB7CAD55EC0C0C870E1E53D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34091057599997, 48.485642798000143 ], [ -123.340393989999967, 48.485580207000062 ], [ -123.339886002999918, 48.485628804000079 ], [ -123.33966121099995, 48.484990988000071 ], [ -123.339340615999902, 48.484135397000102 ], [ -123.337715766999963, 48.484104470000041 ], [ -123.33704916399995, 48.484114792000078 ], [ -123.336869270999927, 48.484119295000021 ], [ -123.336513051999972, 48.482290611000145 ], [ -123.336569981999901, 48.482191031000063 ], [ -123.336521519999948, 48.4820202860001 ], [ -123.337809098999983, 48.482064411000074 ], [ -123.33857132199995, 48.482083492000079 ], [ -123.339256503999977, 48.482261054000077 ], [ -123.340492388999948, 48.481912604000087 ], [ -123.340514078999931, 48.482007792000097 ], [ -123.340575071999965, 48.482071224000101 ], [ -123.340613605999934, 48.482111302000149 ], [ -123.341376863999955, 48.482128825000053 ], [ -123.34143657, 48.482130190000071 ], [ -123.341560819000023, 48.482104058000033 ], [ -123.341658511999952, 48.482083493000054 ], [ -123.34201078299999, 48.482009297000083 ], [ -123.342226990999961, 48.48200839000009 ], [ -123.342798900999981, 48.482166984000038 ], [ -123.343944671999964, 48.482211090000121 ], [ -123.343650117999942, 48.482934099000083 ], [ -123.343578910999952, 48.483238899000078 ], [ -123.343667497999959, 48.483489107000047 ], [ -123.343671815999983, 48.483701105000058 ], [ -123.343516896999944, 48.484101203000122 ], [ -123.342784402999968, 48.485475197000056 ], [ -123.342583885999915, 48.485627899000079 ], [ -123.34237617699992, 48.485718291000069 ], [ -123.342043609999976, 48.485795578000079 ], [ -123.341765902999953, 48.485808488000053 ], [ -123.34091057599997, 48.485642798000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112627751", "BldgCostT": "71365001", "sL_LossRatio": "0.955225408314991", "sL_AssetLoss": "127983.3", "sL_BldgLoss": "122252.9", "sL_StrLoss": "98855.9", "sL_NStrLoss": "23397", "sL_ContLoss": "5730.4", "geom_point": "0101000020E6100000F6B43F272FD75EC0BCD4EF5FAC3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.362480997999938, 48.474621317000064 ], [ -123.362349002999935, 48.474180690000026 ], [ -123.360823808999911, 48.474404189000047 ], [ -123.35997138299993, 48.474506102000134 ], [ -123.359751877999926, 48.474532346000061 ], [ -123.359606796999941, 48.474549702000104 ], [ -123.359608708999971, 48.474521566000142 ], [ -123.359611690999898, 48.474476725000052 ], [ -123.35961589799993, 48.474413963000075 ], [ -123.358971887999985, 48.473987529000048 ], [ -123.358883697999943, 48.473929120000044 ], [ -123.358707008999943, 48.473515539000125 ], [ -123.358616453999943, 48.473286435000055 ], [ -123.358605636999982, 48.473259138000124 ], [ -123.358537814999963, 48.473087495000115 ], [ -123.358454561, 48.473006072000054 ], [ -123.358472556999928, 48.472756731000061 ], [ -123.358420114999973, 48.472414548000074 ], [ -123.35820653899999, 48.472007339000093 ], [ -123.358031989999944, 48.471674469000078 ], [ -123.358042289999958, 48.471515107000087 ], [ -123.357909615999944, 48.471109625000103 ], [ -123.357979309999948, 48.470998640000055 ], [ -123.35813617599996, 48.470970990000104 ], [ -123.35735887, 48.47093627800006 ], [ -123.357417301999931, 48.470928586000085 ], [ -123.357917196999935, 48.470862889000031 ], [ -123.3591172599999, 48.470705122000027 ], [ -123.359307236999911, 48.470680150000057 ], [ -123.361205067999919, 48.470430639000064 ], [ -123.36148687, 48.471510267000021 ], [ -123.361590415999956, 48.471906869000101 ], [ -123.361611158999921, 48.471986373000099 ], [ -123.361715680999964, 48.472170221000063 ], [ -123.36305295699999, 48.473061981000114 ], [ -123.363938612999945, 48.473649406000042 ], [ -123.364316409999958, 48.473897787000055 ], [ -123.365317087999983, 48.474553918000097 ], [ -123.366308803999942, 48.475226004000014 ], [ -123.366606892999982, 48.476178410000088 ], [ -123.366908110999987, 48.477148089000089 ], [ -123.363346677999971, 48.477612983000064 ], [ -123.363073413999956, 48.476640597000042 ], [ -123.362779810999953, 48.475681087000119 ], [ -123.362570707999964, 48.474925592000091 ], [ -123.362480997999938, 48.474621317000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226163553", "BldgCostT": "140288746", "sL_LossRatio": "0.903119042576865", "sL_AssetLoss": "232372.91", "sL_BldgLoss": "209860.4", "sL_StrLoss": "161694.9", "sL_NStrLoss": "48165.5", "sL_ContLoss": "22512.51", "geom_point": "0101000020E61000009BAEDD2CD4D65EC0FD5FAE450B3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350172659999913, 48.468651334000043 ], [ -123.349872712999925, 48.467613886000031 ], [ -123.349827659999946, 48.467454041000053 ], [ -123.349740493999917, 48.467154276000059 ], [ -123.349708748999944, 48.467046180000118 ], [ -123.34974023099997, 48.466918011000082 ], [ -123.350310026, 48.467184762000088 ], [ -123.351141455999979, 48.467577986000052 ], [ -123.351367914999983, 48.467681919000121 ], [ -123.351720612999927, 48.467846797000064 ], [ -123.351851717, 48.467749002000062 ], [ -123.352284839999967, 48.46768451 ], [ -123.352878480999934, 48.467596131000029 ], [ -123.354787807999955, 48.467332914000096 ], [ -123.354955328999893, 48.467309832000055 ], [ -123.355495590999965, 48.467235847999987 ], [ -123.356720354999965, 48.467068014000056 ], [ -123.357668387000018, 48.466946497000066 ], [ -123.35778964799999, 48.466931249000027 ], [ -123.358087303, 48.466893805000069 ], [ -123.358481399999931, 48.466839417000102 ], [ -123.358845279999983, 48.466789205000069 ], [ -123.360043010999945, 48.466623305000027 ], [ -123.361649004999975, 48.46639909100012 ], [ -123.362197862999949, 48.467065800000022 ], [ -123.362905409999911, 48.467925142000098 ], [ -123.362980684999911, 48.468016591000044 ], [ -123.364594294999947, 48.470029806000078 ], [ -123.363608453999987, 48.470146393000107 ], [ -123.36172732199999, 48.470368835000095 ], [ -123.361205067999919, 48.470430639000064 ], [ -123.359307236999911, 48.470680150000057 ], [ -123.3591172599999, 48.470705122000027 ], [ -123.357917196999935, 48.470862889000031 ], [ -123.357417301999931, 48.470928586000085 ], [ -123.35735887, 48.47093627800006 ], [ -123.356985405000032, 48.470986008000111 ], [ -123.356674416999965, 48.471027410000062 ], [ -123.35642816699999, 48.471085021000142 ], [ -123.355089723999967, 48.471398173000111 ], [ -123.354002372999915, 48.471550325000138 ], [ -123.353979628, 48.471553507000046 ], [ -123.352918559000017, 48.47170197800007 ], [ -123.35261647699997, 48.471742204000066 ], [ -123.352478208999912, 48.471799182000048 ], [ -123.351175662999978, 48.471978541000112 ], [ -123.351159820999925, 48.471929827000039 ], [ -123.351143419, 48.471879450000088 ], [ -123.350928474999975, 48.471183288000077 ], [ -123.350774705999982, 48.470709081000038 ], [ -123.350709706, 48.470508695000049 ], [ -123.350598523999935, 48.470124245000108 ], [ -123.35045023899994, 48.469611390000097 ], [ -123.35031544, 48.469145212000065 ], [ -123.350172659999913, 48.468651334000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "367256725", "BldgCostT": "245078438", "sL_LossRatio": "0.811016648603683", "sL_AssetLoss": "287355.63", "sL_BldgLoss": "233050.2", "sL_StrLoss": "152618.2", "sL_NStrLoss": "80432", "sL_ContLoss": "54305.43", "geom_point": "0101000020E6100000DEA3FD30BED65EC05FE1C0589D3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.357455597999902, 48.463894050000057 ], [ -123.359486679999989, 48.463648898000066 ], [ -123.359554699999961, 48.463833689000133 ], [ -123.359713123999981, 48.464067603000103 ], [ -123.360559404999961, 48.465066207000142 ], [ -123.36065761899999, 48.465170485000037 ], [ -123.361649004999975, 48.46639909100012 ], [ -123.360043010999945, 48.466623305000027 ], [ -123.358845279999983, 48.466789205000069 ], [ -123.358481399999931, 48.466839417000102 ], [ -123.358087303, 48.466893805000069 ], [ -123.35778964799999, 48.466931249000027 ], [ -123.357668387000018, 48.466946497000066 ], [ -123.356720354999965, 48.467068014000056 ], [ -123.355495590999965, 48.467235847999987 ], [ -123.354955328999893, 48.467309832000055 ], [ -123.354787807999955, 48.467332914000096 ], [ -123.352878480999934, 48.467596131000029 ], [ -123.352284839999967, 48.46768451 ], [ -123.351851717, 48.467749002000062 ], [ -123.351720612999927, 48.467846797000064 ], [ -123.351367914999983, 48.467681919000121 ], [ -123.351141455999979, 48.467577986000052 ], [ -123.350310026, 48.467184762000088 ], [ -123.34974023099997, 48.466918011000082 ], [ -123.349916709999945, 48.46634799800006 ], [ -123.350065327999957, 48.465697894000058 ], [ -123.350127013999895, 48.464838298000075 ], [ -123.350903293999963, 48.464734848 ], [ -123.350983006999954, 48.464724238000024 ], [ -123.352209645999963, 48.464560783000053 ], [ -123.35320451099993, 48.464428192000092 ], [ -123.353639127999969, 48.464368332000092 ], [ -123.354606181999912, 48.464235102000067 ], [ -123.355330523999967, 48.464149267000074 ], [ -123.355894885999973, 48.464082406000102 ], [ -123.357455597999902, 48.463894050000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156068917", "BldgCostT": "106446667", "sL_LossRatio": "0.931828077860596", "sL_AssetLoss": "125566.725", "sL_BldgLoss": "117006.6", "sL_StrLoss": "88110.8", "sL_NStrLoss": "28895.8", "sL_ContLoss": "8560.125", "geom_point": "0101000020E61000001DC121AFA2D65EC061224A204A3B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350127013999895, 48.464838298000075 ], [ -123.350255905999987, 48.462972089000068 ], [ -123.350134888999918, 48.462047502000082 ], [ -123.352095678999959, 48.461803399000104 ], [ -123.35238359500002, 48.461773715000071 ], [ -123.352856314999926, 48.4617249940001 ], [ -123.354035986999946, 48.461587699000084 ], [ -123.354779062999953, 48.461571525000082 ], [ -123.355097287999953, 48.46156460100012 ], [ -123.355221696999976, 48.46190987800005 ], [ -123.355317090999989, 48.462414994000042 ], [ -123.35557169, 48.463201382000143 ], [ -123.355601398999951, 48.463293192000101 ], [ -123.35577461499993, 48.46327228300003 ], [ -123.356894836999928, 48.463136965000047 ], [ -123.3576777, 48.46304238400009 ], [ -123.358905586, 48.462894017000075 ], [ -123.359734303999943, 48.462793906000044 ], [ -123.35952744399998, 48.463315537000078 ], [ -123.359482895, 48.463427899000081 ], [ -123.359486679999989, 48.463648898000066 ], [ -123.357455597999902, 48.463894050000057 ], [ -123.355894885999973, 48.464082406000102 ], [ -123.355330523999967, 48.464149267000074 ], [ -123.354606181999912, 48.464235102000067 ], [ -123.353639127999969, 48.464368332000092 ], [ -123.35320451099993, 48.464428192000092 ], [ -123.352209645999963, 48.464560783000053 ], [ -123.350983006999954, 48.464724238000024 ], [ -123.350903293999963, 48.464734848 ], [ -123.350127013999895, 48.464838298000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152328000", "BldgCostT": "96510000", "sL_LossRatio": "0.90264167024072", "sL_AssetLoss": "181912.94", "sL_BldgLoss": "164202.2", "sL_StrLoss": "127995", "sL_NStrLoss": "36207.2", "sL_ContLoss": "17710.74", "geom_point": "0101000020E61000006C79CCDDBAD65EC03C449A80F83A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350134888999918, 48.462047502000082 ], [ -123.350174212999931, 48.461739920000099 ], [ -123.350175783999973, 48.461727499000055 ], [ -123.350219044999932, 48.461636736000038 ], [ -123.350452724999926, 48.461146476000081 ], [ -123.350479830999987, 48.461089572000077 ], [ -123.35072369, 48.460577911 ], [ -123.350840200999968, 48.459751203000046 ], [ -123.35093679699996, 48.458895108000029 ], [ -123.352286809999896, 48.458954684000069 ], [ -123.352676989999964, 48.458971895000076 ], [ -123.352933604999933, 48.45889810900006 ], [ -123.352989219999955, 48.458851129000095 ], [ -123.353325291999937, 48.458567494000128 ], [ -123.353894512999943, 48.458086994000041 ], [ -123.356148685999941, 48.457905305000047 ], [ -123.356563986999973, 48.458686586000056 ], [ -123.356524503999964, 48.458910207000073 ], [ -123.356632383999923, 48.459468410000113 ], [ -123.356707011999944, 48.459629901000078 ], [ -123.356997610999912, 48.459817503000124 ], [ -123.357072595999981, 48.459997890000132 ], [ -123.357143942999969, 48.460188096000053 ], [ -123.357436915999955, 48.460969207000097 ], [ -123.358191004999966, 48.460895519000061 ], [ -123.358745708999976, 48.460841301000109 ], [ -123.359493803999968, 48.460754719000079 ], [ -123.360604882999922, 48.460626109000032 ], [ -123.360569215999959, 48.46082899300005 ], [ -123.36030059699999, 48.461479692000047 ], [ -123.359734303999943, 48.462793906000044 ], [ -123.358905586, 48.462894017000075 ], [ -123.3576777, 48.46304238400009 ], [ -123.356894836999928, 48.463136965000047 ], [ -123.35577461499993, 48.46327228300003 ], [ -123.355601398999951, 48.463293192000101 ], [ -123.35557169, 48.463201382000143 ], [ -123.355317090999989, 48.462414994000042 ], [ -123.355221696999976, 48.46190987800005 ], [ -123.355097287999953, 48.46156460100012 ], [ -123.354779062999953, 48.461571525000082 ], [ -123.354035986999946, 48.461587699000084 ], [ -123.352856314999926, 48.4617249940001 ], [ -123.35238359500002, 48.461773715000071 ], [ -123.352095678999959, 48.461803399000104 ], [ -123.350134888999918, 48.462047502000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "336160499", "BldgCostT": "230954999", "sL_LossRatio": "0.887085026998771", "sL_AssetLoss": "260322.96", "sL_BldgLoss": "230928.6", "sL_StrLoss": "160602", "sL_NStrLoss": "70326.6", "sL_ContLoss": "29394.36", "geom_point": "0101000020E610000022A36F773BD65EC0B43C7A89523B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.34983689799999, 48.460699850000026 ], [ -123.35072369, 48.460577911 ], [ -123.350479830999987, 48.461089572000077 ], [ -123.350452724999926, 48.461146476000081 ], [ -123.350219044999932, 48.461636736000038 ], [ -123.350175783999973, 48.461727499000055 ], [ -123.350174212999931, 48.461739920000099 ], [ -123.350134888999918, 48.462047502000082 ], [ -123.350255905999987, 48.462972089000068 ], [ -123.350127013999895, 48.464838298000075 ], [ -123.350065327999957, 48.465697894000058 ], [ -123.349916709999945, 48.46634799800006 ], [ -123.34974023099997, 48.466918011000082 ], [ -123.348822865999963, 48.466588470000062 ], [ -123.348581845999917, 48.466503983000074 ], [ -123.348462192999989, 48.466457833000035 ], [ -123.347583548, 48.466118905 ], [ -123.347431868999934, 48.466060387000049 ], [ -123.345912849999962, 48.465503837000064 ], [ -123.345191122999893, 48.465302273000127 ], [ -123.344558850999988, 48.465125736000076 ], [ -123.344490241999964, 48.465106570000067 ], [ -123.344397696999934, 48.464818422000107 ], [ -123.344380557999955, 48.464764962000103 ], [ -123.344344302999986, 48.464651993000103 ], [ -123.344280159999954, 48.46442346000002 ], [ -123.343986484999903, 48.463377003000069 ], [ -123.343820897999976, 48.462839894000098 ], [ -123.343465617999968, 48.461593701000012 ], [ -123.344046903999981, 48.461534290000046 ], [ -123.344948179999946, 48.461353988000042 ], [ -123.346013085999985, 48.461218399000103 ], [ -123.346474040999937, 48.461156831000082 ], [ -123.346923869999955, 48.461096777000101 ], [ -123.34784980100001, 48.46097308700012 ], [ -123.34983689799999, 48.460699850000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200393208", "BldgCostT": "125870700", "sL_LossRatio": "0.810473648698616", "sL_AssetLoss": "279639.32", "sL_BldgLoss": "226640.3", "sL_StrLoss": "168716.3", "sL_NStrLoss": "57924", "sL_ContLoss": "52999.02", "geom_point": "0101000020E61000007BB6F426CED55EC047115301FB3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.339322138999961, 48.456293526000067 ], [ -123.3395839, 48.45518379200012 ], [ -123.340743088, 48.455217407000141 ], [ -123.340741548, 48.455553111000022 ], [ -123.340735950999914, 48.456766287000015 ], [ -123.340731389000013, 48.457752905000071 ], [ -123.340769615999989, 48.458825203000089 ], [ -123.342094696999979, 48.458863013000027 ], [ -123.342458686999947, 48.459054389000059 ], [ -123.342753041999913, 48.459209169000097 ], [ -123.342869401999977, 48.460390177000122 ], [ -123.343406548999937, 48.460978278000056 ], [ -123.343436152999956, 48.461014005000045 ], [ -123.343465617999968, 48.461593701000012 ], [ -123.343820897999976, 48.462839894000098 ], [ -123.343986484999903, 48.463377003000069 ], [ -123.344280159999954, 48.46442346000002 ], [ -123.344344302999986, 48.464651993000103 ], [ -123.344380557999955, 48.464764962000103 ], [ -123.344397696999934, 48.464818422000107 ], [ -123.344490241999964, 48.465106570000067 ], [ -123.344161746999987, 48.465018075000124 ], [ -123.342982315999933, 48.464451098000069 ], [ -123.342248182999953, 48.464034096000105 ], [ -123.341759821999958, 48.463737700000102 ], [ -123.341383606999969, 48.46358399300005 ], [ -123.341163713999947, 48.463560530000059 ], [ -123.339869492999966, 48.463422486000105 ], [ -123.339519673999959, 48.463364681 ], [ -123.3391229, 48.463299107000132 ], [ -123.338949056999965, 48.463257074000133 ], [ -123.338789887999965, 48.46321860300003 ], [ -123.33841451499994, 48.463119680000077 ], [ -123.338385383999977, 48.463112013000121 ], [ -123.337576225999925, 48.46285468700011 ], [ -123.33698449699996, 48.462666491000071 ], [ -123.337727996999959, 48.461598499000047 ], [ -123.33791439499997, 48.461260497000097 ], [ -123.338067198999937, 48.46071284100006 ], [ -123.338187949999949, 48.460279997000036 ], [ -123.3383406559999, 48.459732609000113 ], [ -123.338541047000021, 48.459014315000033 ], [ -123.338709589999937, 48.458410113000085 ], [ -123.338848780999967, 48.457999695000069 ], [ -123.338998230999934, 48.45756170300011 ], [ -123.339078479999927, 48.457326408000057 ], [ -123.339169118999948, 48.456942268000084 ], [ -123.339322138999961, 48.456293526000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "469717855", "BldgCostT": "312712491", "sL_LossRatio": "0.731633524955113", "sL_AssetLoss": "404233.8", "sL_BldgLoss": "295751", "sL_StrLoss": "148759", "sL_NStrLoss": "146992", "sL_ContLoss": "108482.8", "geom_point": "0101000020E6100000E698C1527CD55EC0E138AE4EE73A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.335919415999939, 48.458446398000092 ], [ -123.338709589999937, 48.458410113000085 ], [ -123.338541047000021, 48.459014315000033 ], [ -123.3383406559999, 48.459732609000113 ], [ -123.338187949999949, 48.460279997000036 ], [ -123.338067198999937, 48.46071284100006 ], [ -123.33791439499997, 48.461260497000097 ], [ -123.337727996999959, 48.461598499000047 ], [ -123.33698449699996, 48.462666491000071 ], [ -123.33658561499999, 48.462528366000072 ], [ -123.335041480999934, 48.461993605000067 ], [ -123.334946212999938, 48.461959588000099 ], [ -123.33295839000003, 48.461268387000146 ], [ -123.332966192999962, 48.46031809400008 ], [ -123.332970442999965, 48.459269944 ], [ -123.332970696999965, 48.459200051999986 ], [ -123.332973599999946, 48.458486794000073 ], [ -123.335257186999982, 48.458456797000061 ], [ -123.335919415999939, 48.458446398000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "285115584", "BldgCostT": "182977349", "sL_LossRatio": "0.812232911479233", "sL_AssetLoss": "466512", "sL_BldgLoss": "378916.4", "sL_StrLoss": "229272", "sL_NStrLoss": "149644.4", "sL_ContLoss": "87595.6", "geom_point": "0101000020E610000042B88FFD68D55EC09DEF4BC3913B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.334570989999946, 48.462626501000059 ], [ -123.335041480999934, 48.461993605000067 ], [ -123.33658561499999, 48.462528366000072 ], [ -123.33698449699996, 48.462666491000071 ], [ -123.336612948999942, 48.463619999000059 ], [ -123.336468252999907, 48.463991394000097 ], [ -123.336405094000014, 48.464153402000115 ], [ -123.33630076899999, 48.4646647450001 ], [ -123.336231631, 48.465003901000081 ], [ -123.336135123999924, 48.465470402000065 ], [ -123.335532705999967, 48.467771885000069 ], [ -123.335344306999957, 48.468597705000029 ], [ -123.335330552999963, 48.468648146000085 ], [ -123.335318703000013, 48.468691698 ], [ -123.332733694999931, 48.468671815000015 ], [ -123.332733925999932, 48.468629110000109 ], [ -123.33273410799994, 48.468592395 ], [ -123.332755189999943, 48.467740795000033 ], [ -123.332778514000012, 48.466370705000074 ], [ -123.332822517999901, 48.464992093000028 ], [ -123.33283780699999, 48.464146601000031 ], [ -123.332853292999943, 48.463633908000098 ], [ -123.33287181299994, 48.462923688000103 ], [ -123.333992208999945, 48.462929396000071 ], [ -123.334387192999927, 48.462894191000046 ], [ -123.334422294999953, 48.462845501000096 ], [ -123.334570989999946, 48.462626501000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "419483000", "BldgCostT": "288785000", "sL_LossRatio": "0.939944562922531", "sL_AssetLoss": "262495.8", "sL_BldgLoss": "246731.5", "sL_StrLoss": "179494", "sL_NStrLoss": "67237.5", "sL_ContLoss": "15764.3", "geom_point": "0101000020E61000001D2C495CCFD55EC001149F12C23B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342498354999947, 48.469905423000029 ], [ -123.34118360699992, 48.468914796000114 ], [ -123.341150609999914, 48.468947673000031 ], [ -123.341119197999888, 48.468978990000025 ], [ -123.340794389999971, 48.468822110000104 ], [ -123.340430720999947, 48.468734502000046 ], [ -123.339660506999948, 48.46869260600004 ], [ -123.338696098999947, 48.468692413000028 ], [ -123.33706601499992, 48.468692091000094 ], [ -123.335318703000013, 48.468691698 ], [ -123.335330552999963, 48.468648146000085 ], [ -123.335344306999957, 48.468597705000029 ], [ -123.335532705999967, 48.467771885000069 ], [ -123.336135123999924, 48.465470402000065 ], [ -123.336231631, 48.465003901000081 ], [ -123.33630076899999, 48.4646647450001 ], [ -123.336405094000014, 48.464153402000115 ], [ -123.336468252999907, 48.463991394000097 ], [ -123.336612948999942, 48.463619999000059 ], [ -123.33698449699996, 48.462666491000071 ], [ -123.337576225999925, 48.46285468700011 ], [ -123.338385383999977, 48.463112013000121 ], [ -123.33841451499994, 48.463119680000077 ], [ -123.338789887999965, 48.46321860300003 ], [ -123.338949056999965, 48.463257074000133 ], [ -123.3391229, 48.463299107000132 ], [ -123.339519673999959, 48.463364681 ], [ -123.339869492999966, 48.463422486000105 ], [ -123.341163713999947, 48.463560530000059 ], [ -123.341383606999969, 48.46358399300005 ], [ -123.341759821999958, 48.463737700000102 ], [ -123.342248182999953, 48.464034096000105 ], [ -123.342982315999933, 48.464451098000069 ], [ -123.344161746999987, 48.465018075000124 ], [ -123.344490241999964, 48.465106570000067 ], [ -123.344610875999976, 48.465311798000123 ], [ -123.344690055999962, 48.465446568000104 ], [ -123.344696523999971, 48.465457561000079 ], [ -123.344705936999929, 48.465473587000048 ], [ -123.344785438999907, 48.465548018000028 ], [ -123.34479633699999, 48.465558208000161 ], [ -123.345190881999955, 48.46592761200008 ], [ -123.345425533999929, 48.466265773000025 ], [ -123.345433656999973, 48.466277512000076 ], [ -123.345453216999957, 48.466305718000108 ], [ -123.345469592999919, 48.466321954000051 ], [ -123.345493172999937, 48.466345395000062 ], [ -123.345529036999949, 48.466381004000048 ], [ -123.34554916, 48.466400994 ], [ -123.345520995999919, 48.466424972000077 ], [ -123.345116962999967, 48.466768806000097 ], [ -123.344397573999942, 48.467380965000117 ], [ -123.343889782, 48.467813072000062 ], [ -123.34370469, 48.467981591000104 ], [ -123.343122195999939, 48.468206773000077 ], [ -123.342587407999957, 48.46827818700006 ], [ -123.343076296999953, 48.469598908000073 ], [ -123.343865665999914, 48.469488464000051 ], [ -123.345186210999913, 48.469303691000036 ], [ -123.346682292999915, 48.469115799000086 ], [ -123.346727358999942, 48.46964103800007 ], [ -123.346833309999965, 48.470876193000024 ], [ -123.346857749999984, 48.471884060000036 ], [ -123.345286022999957, 48.471612899000029 ], [ -123.344649705999927, 48.471400394000071 ], [ -123.344510062999973, 48.471321143000132 ], [ -123.34429794499999, 48.471200798999988 ], [ -123.343972989999926, 48.471016411000093 ], [ -123.343868642999951, 48.470937778000128 ], [ -123.342498354999947, 48.469905423000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179735887", "BldgCostT": "118272080", "sL_LossRatio": "0.896495993786307", "sL_AssetLoss": "157432.94", "sL_BldgLoss": "141138", "sL_StrLoss": "110744", "sL_NStrLoss": "30394", "sL_ContLoss": "16294.94", "geom_point": "0101000020E6100000E9678024CFD55EC07FA4D299453C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.342593210999937, 48.474106498000047 ], [ -123.342368513999986, 48.473322603000064 ], [ -123.342111131999985, 48.473535550000051 ], [ -123.341230465999956, 48.473624724000139 ], [ -123.341176112999918, 48.473319801000116 ], [ -123.340807158999951, 48.472251570000033 ], [ -123.340635992, 48.471756096000092 ], [ -123.340225014999959, 48.470588808000045 ], [ -123.339651104999987, 48.470587903000123 ], [ -123.338983897999952, 48.470587402000014 ], [ -123.337964000999989, 48.470568115000013 ], [ -123.336886203999981, 48.470521196000092 ], [ -123.335956720999889, 48.470573254000087 ], [ -123.335897217999943, 48.470576596000065 ], [ -123.334862503999958, 48.470555104000034 ], [ -123.335120341999982, 48.469502010000049 ], [ -123.335318703000013, 48.468691698 ], [ -123.33706601499992, 48.468692091000094 ], [ -123.338696098999947, 48.468692413000028 ], [ -123.339660506999948, 48.46869260600004 ], [ -123.340430720999947, 48.468734502000046 ], [ -123.340794389999971, 48.468822110000104 ], [ -123.341119197999888, 48.468978990000025 ], [ -123.341150609999914, 48.468947673000031 ], [ -123.34118360699992, 48.468914796000114 ], [ -123.342498354999947, 48.469905423000029 ], [ -123.343868642999951, 48.470937778000128 ], [ -123.343972989999926, 48.471016411000093 ], [ -123.34429794499999, 48.471200798999988 ], [ -123.344510062999973, 48.471321143000132 ], [ -123.344649705999927, 48.471400394000071 ], [ -123.345286022999957, 48.471612899000029 ], [ -123.346857749999984, 48.471884060000036 ], [ -123.346854896999972, 48.471955421000068 ], [ -123.346854542999907, 48.471965134000129 ], [ -123.346861624999946, 48.472156002000055 ], [ -123.34686207299994, 48.472168108000091 ], [ -123.346868745000023, 48.472346915000109 ], [ -123.346869065999911, 48.472355949000104 ], [ -123.344673952999969, 48.472650875000056 ], [ -123.34445856, 48.472680533000066 ], [ -123.343802905999965, 48.472768793000093 ], [ -123.343597522999943, 48.472906185000106 ], [ -123.34359240299996, 48.472909596000079 ], [ -123.343591642999925, 48.47291249200002 ], [ -123.343551112999975, 48.473068199000089 ], [ -123.343556091999943, 48.47308567200011 ], [ -123.343707574999897, 48.473617794000106 ], [ -123.343840992, 48.474086302000018 ], [ -123.342593210999937, 48.474106498000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145632500", "BldgCostT": "91205000", "sL_LossRatio": "0.836439222023319", "sL_AssetLoss": "163619.3", "sL_BldgLoss": "136857.6", "sL_StrLoss": "104333.4", "sL_NStrLoss": "32524.2", "sL_ContLoss": "26761.7", "geom_point": "0101000020E610000037A668FE3BD65EC05F171B46033C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.346727358999942, 48.46964103800007 ], [ -123.346682292999915, 48.469115799000086 ], [ -123.345186210999913, 48.469303691000036 ], [ -123.343865665999914, 48.469488464000051 ], [ -123.343076296999953, 48.469598908000073 ], [ -123.342587407999957, 48.46827818700006 ], [ -123.343122195999939, 48.468206773000077 ], [ -123.34370469, 48.467981591000104 ], [ -123.343889782, 48.467813072000062 ], [ -123.344397573999942, 48.467380965000117 ], [ -123.345116962999967, 48.466768806000097 ], [ -123.345520995999919, 48.466424972000077 ], [ -123.34554916, 48.466400994 ], [ -123.345529036999949, 48.466381004000048 ], [ -123.345493172999937, 48.466345395000062 ], [ -123.345469592999919, 48.466321954000051 ], [ -123.345453216999957, 48.466305718000108 ], [ -123.345433656999973, 48.466277512000076 ], [ -123.345425533999929, 48.466265773000025 ], [ -123.345190881999955, 48.46592761200008 ], [ -123.34479633699999, 48.465558208000161 ], [ -123.344785438999907, 48.465548018000028 ], [ -123.344705936999929, 48.465473587000048 ], [ -123.344696523999971, 48.465457561000079 ], [ -123.344690055999962, 48.465446568000104 ], [ -123.344610875999976, 48.465311798000123 ], [ -123.344490241999964, 48.465106570000067 ], [ -123.344558850999988, 48.465125736000076 ], [ -123.345191122999893, 48.465302273000127 ], [ -123.345912849999962, 48.465503837000064 ], [ -123.347431868999934, 48.466060387000049 ], [ -123.347583548, 48.466118905 ], [ -123.348462192999989, 48.466457833000035 ], [ -123.348581845999917, 48.466503983000074 ], [ -123.348822865999963, 48.466588470000062 ], [ -123.34974023099997, 48.466918011000082 ], [ -123.349708748999944, 48.467046180000118 ], [ -123.349740493999917, 48.467154276000059 ], [ -123.349827659999946, 48.467454041000053 ], [ -123.349872712999925, 48.467613886000031 ], [ -123.350172659999913, 48.468651334000043 ], [ -123.35031544, 48.469145212000065 ], [ -123.35045023899994, 48.469611390000097 ], [ -123.350598523999935, 48.470124245000108 ], [ -123.350709706, 48.470508695000049 ], [ -123.350774705999982, 48.470709081000038 ], [ -123.350928474999975, 48.471183288000077 ], [ -123.351143419, 48.471879450000088 ], [ -123.349171381999952, 48.472076099000077 ], [ -123.348955146999941, 48.472097649000013 ], [ -123.348685074999977, 48.472124566000048 ], [ -123.34808152399998, 48.472097748000103 ], [ -123.346936694999954, 48.471897860000126 ], [ -123.346857749999984, 48.471884060000036 ], [ -123.346833309999965, 48.470876193000024 ], [ -123.346727358999942, 48.46964103800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127454000", "BldgCostT": "82040000", "sL_LossRatio": "0.908624873657913", "sL_AssetLoss": "167798.4", "sL_BldgLoss": "152465.8", "sL_StrLoss": "123495.8", "sL_NStrLoss": "28970", "sL_ContLoss": "15332.6", "geom_point": "0101000020E610000024CD1FD39AD55EC03F7D3EA97A3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.335956720999889, 48.470573254000087 ], [ -123.336886203999981, 48.470521196000092 ], [ -123.337964000999989, 48.470568115000013 ], [ -123.338983897999952, 48.470587402000014 ], [ -123.339651104999987, 48.470587903000123 ], [ -123.340225014999959, 48.470588808000045 ], [ -123.340635992, 48.471756096000092 ], [ -123.340807158999951, 48.472251570000033 ], [ -123.341176112999918, 48.473319801000116 ], [ -123.341230465999956, 48.473624724000139 ], [ -123.34012947, 48.473847945000102 ], [ -123.33978862, 48.473940985000112 ], [ -123.337221643999925, 48.474308393000058 ], [ -123.336274313999937, 48.474571904000051 ], [ -123.335850107999974, 48.474717204000044 ], [ -123.335325912999949, 48.475078301000039 ], [ -123.334796295, 48.474194688000097 ], [ -123.33449681799999, 48.47363710200004 ], [ -123.334430205, 48.473358587000071 ], [ -123.334436800000034, 48.473073798000023 ], [ -123.334512710999931, 48.472826868000077 ], [ -123.334866882999904, 48.471674307000164 ], [ -123.334876797999982, 48.471378714000139 ], [ -123.334810722999975, 48.470874805000065 ], [ -123.334862503999958, 48.470555104000034 ], [ -123.335897217999943, 48.470576596000065 ], [ -123.335956720999889, 48.470573254000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "303669074", "BldgCostT": "201934466", "sL_LossRatio": "0.877928663171188", "sL_AssetLoss": "237808.16", "sL_BldgLoss": "208778.6", "sL_StrLoss": "147758", "sL_NStrLoss": "61020.6", "sL_ContLoss": "29029.56", "geom_point": "0101000020E6100000DFFDBF24B4D65EC00E76AB636C3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.350896016999926, 48.456226597000075 ], [ -123.350881092999956, 48.455482200000112 ], [ -123.350821811999936, 48.454563591000095 ], [ -123.351079891999916, 48.454511508000074 ], [ -123.353400779, 48.454413496000065 ], [ -123.354375697999956, 48.454628086000071 ], [ -123.355056011999977, 48.454702789000052 ], [ -123.355147486999954, 48.454698434000115 ], [ -123.355539293, 48.454679692000056 ], [ -123.35584909, 48.454527262000042 ], [ -123.35589331599999, 48.454505492000045 ], [ -123.355987952999953, 48.454442542000074 ], [ -123.356622507999987, 48.45402050399999 ], [ -123.356801095999955, 48.454141822000125 ], [ -123.35729227099992, 48.454475490000036 ], [ -123.357601912999911, 48.454686104000096 ], [ -123.357951672999931, 48.454924061000071 ], [ -123.359028689999917, 48.455656792000042 ], [ -123.359217798999936, 48.455726401000028 ], [ -123.359450284999966, 48.455721395000118 ], [ -123.35938820299998, 48.456012988000019 ], [ -123.359458814999968, 48.456247393000098 ], [ -123.359598211999966, 48.456723385000068 ], [ -123.359769420999939, 48.457310977000041 ], [ -123.359853089999945, 48.457598097000051 ], [ -123.359103616999946, 48.457660574000087 ], [ -123.357911991999956, 48.457759901 ], [ -123.35663121099995, 48.457871298000107 ], [ -123.356148685999941, 48.457905305000047 ], [ -123.353894512999943, 48.458086994000041 ], [ -123.353325291999937, 48.458567494000128 ], [ -123.352989219999955, 48.458851129000095 ], [ -123.352933604999933, 48.45889810900006 ], [ -123.352676989999964, 48.458971895000076 ], [ -123.352286809999896, 48.458954684000069 ], [ -123.35093679699996, 48.458895108000029 ], [ -123.350943563999948, 48.458363913000021 ], [ -123.350947877999928, 48.458023304000079 ], [ -123.350912889999961, 48.457154001000085 ], [ -123.350906492999982, 48.456803488000041 ], [ -123.350896016999926, 48.456226597000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "297932198", "BldgCostT": "192255270", "sL_LossRatio": "0.796717281995162", "sL_AssetLoss": "377260.55", "sL_BldgLoss": "300570", "sL_StrLoss": "211842", "sL_NStrLoss": "88728", "sL_ContLoss": "76690.55", "geom_point": "0101000020E610000057BCD395B6D65EC0696EB7EADB394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.354375697999956, 48.454628086000071 ], [ -123.353400779, 48.454413496000065 ], [ -123.351079891999916, 48.454511508000074 ], [ -123.350821811999936, 48.454563591000095 ], [ -123.350577518999941, 48.454064310000099 ], [ -123.350523910999982, 48.453954692000053 ], [ -123.350438418999957, 48.453697296000044 ], [ -123.35044747499991, 48.453535196000132 ], [ -123.350469409999974, 48.453397929000062 ], [ -123.350520215999978, 48.453079910000113 ], [ -123.350610888999952, 48.452696647000025 ], [ -123.350704303000015, 48.4523017060001 ], [ -123.35083490599996, 48.451416694000024 ], [ -123.350890059999983, 48.451082721000034 ], [ -123.351030997999928, 48.450229400000119 ], [ -123.351182356999942, 48.450328706000079 ], [ -123.352310491999944, 48.450017888000083 ], [ -123.353954639999969, 48.449838641000028 ], [ -123.354455861999924, 48.449783972000041 ], [ -123.354871956999901, 48.44973860300005 ], [ -123.35545886700001, 48.449674566000098 ], [ -123.355677700999962, 48.449651006000067 ], [ -123.35737653599989, 48.449468101000058 ], [ -123.357635917000025, 48.449440317000033 ], [ -123.358888135999976, 48.449304724000115 ], [ -123.359287367999912, 48.449261020000144 ], [ -123.359794091999973, 48.449205564000096 ], [ -123.359555200000031, 48.44982721700007 ], [ -123.359443890999927, 48.450116910000126 ], [ -123.358901622999923, 48.451527955000088 ], [ -123.358639982999989, 48.452247402000062 ], [ -123.35854802599998, 48.452488970000026 ], [ -123.358206598, 48.453385673000099 ], [ -123.358051955999898, 48.453791828000114 ], [ -123.357744408999935, 48.454599493000075 ], [ -123.357601912999911, 48.454686104000096 ], [ -123.35729227099992, 48.454475490000036 ], [ -123.356801095999955, 48.454141822000125 ], [ -123.356622507999987, 48.45402050399999 ], [ -123.355987952999953, 48.454442542000074 ], [ -123.35589331599999, 48.454505492000045 ], [ -123.35584909, 48.454527262000042 ], [ -123.355539293, 48.454679692000056 ], [ -123.355147486999954, 48.454698434000115 ], [ -123.355056011999977, 48.454702789000052 ], [ -123.354375697999956, 48.454628086000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102399667", "BldgCostT": "70356667", "sL_LossRatio": "0.949163662602969", "sL_AssetLoss": "164915.5", "sL_BldgLoss": "156531.8", "sL_StrLoss": "129652.3", "sL_NStrLoss": "26879.5", "sL_ContLoss": "8383.7", "geom_point": "0101000020E61000007E0E4D5571D45EC0FA3CCAB10A3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.315485899999928, 48.458767406000064 ], [ -123.315787390999986, 48.458213300000111 ], [ -123.315814810999925, 48.458040789000059 ], [ -123.316373397999925, 48.458070310000046 ], [ -123.317040385999974, 48.458166516000063 ], [ -123.318499491999916, 48.45855519800012 ], [ -123.318972105999975, 48.458720398000125 ], [ -123.319249708999934, 48.458849185000062 ], [ -123.319738790999949, 48.458320490000041 ], [ -123.319840309999933, 48.458126498000127 ], [ -123.319844786, 48.457928188000025 ], [ -123.319799503999946, 48.457726895000079 ], [ -123.319390305999889, 48.45713209300007 ], [ -123.318994106, 48.456691995000043 ], [ -123.319298884999967, 48.456649193000032 ], [ -123.31948440499994, 48.456593407000064 ], [ -123.319733191999916, 48.456443712000031 ], [ -123.320139877999935, 48.456342192000101 ], [ -123.320327810999984, 48.456195386000026 ], [ -123.320309207, 48.455999294000044 ], [ -123.320190996999898, 48.455728619000055 ], [ -123.32013478499999, 48.455599903000071 ], [ -123.319882216999986, 48.455291400000142 ], [ -123.319569291999969, 48.454856892000066 ], [ -123.319469992999956, 48.454584797000059 ], [ -123.319486902, 48.454191999000066 ], [ -123.319612776999918, 48.453757790000068 ], [ -123.319829984999942, 48.453236704000119 ], [ -123.318813692, 48.453016111000167 ], [ -123.318492617999979, 48.453013383000105 ], [ -123.317860517999947, 48.45292259000005 ], [ -123.317443310999963, 48.452828097000079 ], [ -123.316926822999974, 48.452723100000064 ], [ -123.316302233, 48.452659869000037 ], [ -123.316130789999946, 48.452642504000053 ], [ -123.315459599999926, 48.452528085000061 ], [ -123.316305590999917, 48.450894705000053 ], [ -123.316571402999926, 48.450421686000013 ], [ -123.316864008, 48.450142306000082 ], [ -123.317341388, 48.449865799000037 ], [ -123.317537996999974, 48.449756313000101 ], [ -123.318197550999969, 48.449552030000042 ], [ -123.318745618999927, 48.449290850000061 ], [ -123.318792046999945, 48.449256837000064 ], [ -123.319661028, 48.448620290000065 ], [ -123.320388666999975, 48.448087206000046 ], [ -123.320723188999949, 48.447842136000133 ], [ -123.321069532999914, 48.447588425000127 ], [ -123.321082261999919, 48.447577014000096 ], [ -123.321400042999954, 48.447292768000032 ], [ -123.321512476999914, 48.448557566000041 ], [ -123.321507615999948, 48.448590302000049 ], [ -123.321717874999962, 48.449843874000067 ], [ -123.321734475999932, 48.449884990000108 ], [ -123.321522199999919, 48.453611756000043 ], [ -123.321477912999924, 48.454008787000049 ], [ -123.321202385999968, 48.455512132000145 ], [ -123.321020865999984, 48.457645170000049 ], [ -123.320933088999979, 48.460476293000077 ], [ -123.320750539999921, 48.460415835000106 ], [ -123.319606398999952, 48.460036895000044 ], [ -123.319058101999985, 48.459867983000024 ], [ -123.319003246999984, 48.45985109700009 ], [ -123.317389069999976, 48.459353786000044 ], [ -123.315485899999928, 48.458767406000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158481584", "BldgCostT": "97363334", "sL_LossRatio": "0.800044337115782", "sL_AssetLoss": "338317", "sL_BldgLoss": "270668.6", "sL_StrLoss": "175984", "sL_NStrLoss": "94684.6", "sL_ContLoss": "67648.4", "geom_point": "0101000020E610000041AF81A5A1D45EC001F94464793B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.320899378999911, 48.461404203000058 ], [ -123.320933088999979, 48.460476293000077 ], [ -123.321518911999974, 48.460551491000039 ], [ -123.322492401999938, 48.460576089000071 ], [ -123.323645216999978, 48.460606100000049 ], [ -123.323555087999921, 48.46143259100009 ], [ -123.324844892999963, 48.461429106000018 ], [ -123.324786707999948, 48.462169812000127 ], [ -123.324786119999942, 48.462228398000136 ], [ -123.324777783999977, 48.462853086000031 ], [ -123.324733690999977, 48.463558999000071 ], [ -123.323906807999961, 48.463567898000043 ], [ -123.323904214999985, 48.464758188000125 ], [ -123.323934021999946, 48.46492399900005 ], [ -123.323993995999913, 48.466320503000077 ], [ -123.323797888999977, 48.467278699000055 ], [ -123.323780361, 48.467718302000037 ], [ -123.323759320999912, 48.468247083000037 ], [ -123.323794295999974, 48.468463508000056 ], [ -123.323858647999899, 48.46859715300004 ], [ -123.32376656, 48.468597900000084 ], [ -123.323669747999972, 48.468598709000112 ], [ -123.323009788999954, 48.468604190000114 ], [ -123.319463495999955, 48.468577695000135 ], [ -123.319477112999948, 48.468409395000037 ], [ -123.319567514999974, 48.468172695000128 ], [ -123.320219325999943, 48.467681506000091 ], [ -123.320365182999964, 48.467523203000077 ], [ -123.320422141999984, 48.467461415000059 ], [ -123.320471100999939, 48.467408293000084 ], [ -123.320562453999955, 48.467219721000049 ], [ -123.320605711999974, 48.467130395000034 ], [ -123.320615417999974, 48.466764250000047 ], [ -123.320644807999926, 48.465656104000047 ], [ -123.320697699000021, 48.465008493000063 ], [ -123.320709472999951, 48.464864507000058 ], [ -123.320746188999976, 48.46441509800006 ], [ -123.320782697999974, 48.463534006 ], [ -123.320812670999928, 48.4629769350001 ], [ -123.32085809199998, 48.462131802000073 ], [ -123.320899378999911, 48.461404203000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98352417", "BldgCostT": "67301667", "sL_LossRatio": "0.956353587270746", "sL_AssetLoss": "156251.1", "sL_BldgLoss": "149431.3", "sL_StrLoss": "124018.9", "sL_NStrLoss": "25412.4", "sL_ContLoss": "6819.8", "geom_point": "0101000020E6100000D467FFEA4ED45EC08A2B99294E3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.315048006999916, 48.453308493000073 ], [ -123.315459599999926, 48.452528085000061 ], [ -123.316130789999946, 48.452642504000053 ], [ -123.316302233, 48.452659869000037 ], [ -123.316926822999974, 48.452723100000064 ], [ -123.317443310999963, 48.452828097000079 ], [ -123.317860517999947, 48.45292259000005 ], [ -123.318492617999979, 48.453013383000105 ], [ -123.318813692, 48.453016111000167 ], [ -123.319829984999942, 48.453236704000119 ], [ -123.319612776999918, 48.453757790000068 ], [ -123.319486902, 48.454191999000066 ], [ -123.319469992999956, 48.454584797000059 ], [ -123.319569291999969, 48.454856892000066 ], [ -123.319882216999986, 48.455291400000142 ], [ -123.32013478499999, 48.455599903000071 ], [ -123.320190996999898, 48.455728619000055 ], [ -123.320309207, 48.455999294000044 ], [ -123.320327810999984, 48.456195386000026 ], [ -123.320139877999935, 48.456342192000101 ], [ -123.319733191999916, 48.456443712000031 ], [ -123.31948440499994, 48.456593407000064 ], [ -123.319298884999967, 48.456649193000032 ], [ -123.318994106, 48.456691995000043 ], [ -123.319390305999889, 48.45713209300007 ], [ -123.319799503999946, 48.457726895000079 ], [ -123.319844786, 48.457928188000025 ], [ -123.319840309999933, 48.458126498000127 ], [ -123.319738790999949, 48.458320490000041 ], [ -123.319249708999934, 48.458849185000062 ], [ -123.318972105999975, 48.458720398000125 ], [ -123.318499491999916, 48.45855519800012 ], [ -123.317040385999974, 48.458166516000063 ], [ -123.316373397999925, 48.458070310000046 ], [ -123.315814810999925, 48.458040789000059 ], [ -123.315758278999965, 48.457656100000129 ], [ -123.315695583999954, 48.457523797000064 ], [ -123.31560149699996, 48.457326612000095 ], [ -123.315402081999935, 48.457058200000034 ], [ -123.31533814099997, 48.456972338000107 ], [ -123.315058841999928, 48.456597363000142 ], [ -123.314585401999921, 48.455961702000089 ], [ -123.314364821000012, 48.455519597000034 ], [ -123.314278412999926, 48.455090783000053 ], [ -123.314371304999923, 48.454621592000052 ], [ -123.314429443999984, 48.454508761000078 ], [ -123.315048006999916, 48.453308493000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142997415", "BldgCostT": "93046665", "sL_LossRatio": "0.838521425038344", "sL_AssetLoss": "481166", "sL_BldgLoss": "403468", "sL_StrLoss": "258013", "sL_NStrLoss": "145455", "sL_ContLoss": "77698", "geom_point": "0101000020E6100000A2A4D99FF8D35EC0EC87640A4E3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.314287531999952, 48.459541776000073 ], [ -123.314285864999974, 48.459271885000092 ], [ -123.31347430999989, 48.459274098000023 ], [ -123.313467662999983, 48.458194539000012 ], [ -123.313061893999958, 48.458195643000117 ], [ -123.313060727999968, 48.458005844000127 ], [ -123.313060232999987, 48.457925753000048 ], [ -123.31280788299999, 48.45792644000008 ], [ -123.31265446699993, 48.457926856000036 ], [ -123.312654166999963, 48.457878167000104 ], [ -123.312652809999946, 48.457656967000027 ], [ -123.311955846, 48.457658858000066 ], [ -123.311841280999914, 48.457659169000081 ], [ -123.311841057999956, 48.457622808000011 ], [ -123.311839626999983, 48.457389279000019 ], [ -123.311103820999961, 48.45739127000008 ], [ -123.311028101999938, 48.457391475000108 ], [ -123.311029750000017, 48.457661365000043 ], [ -123.309812455999946, 48.457664648000076 ], [ -123.309809171999987, 48.457124868000072 ], [ -123.308477374999967, 48.457128445000116 ], [ -123.308403212999977, 48.458430605000061 ], [ -123.306164775999932, 48.458373711000043 ], [ -123.306165439, 48.458484091000031 ], [ -123.305759667999951, 48.458485170000039 ], [ -123.305766870999946, 48.459684616000146 ], [ -123.305793537999961, 48.45970766100006 ], [ -123.305954337999978, 48.459785961000101 ], [ -123.306000236999978, 48.459870862000081 ], [ -123.305982706999927, 48.459880480000038 ], [ -123.302394476999964, 48.457717973000037 ], [ -123.300442661999952, 48.456828413000046 ], [ -123.300460456999957, 48.456770109000047 ], [ -123.300497801999967, 48.456647890000035 ], [ -123.301770791999942, 48.454807296000041 ], [ -123.302082059999975, 48.454388361000049 ], [ -123.302260705999927, 48.454147901000077 ], [ -123.302632402999961, 48.453857087000074 ], [ -123.303769479, 48.45308861500007 ], [ -123.304151838999985, 48.452830169000066 ], [ -123.305734953999917, 48.45176016400012 ], [ -123.30592809699999, 48.451629619000101 ], [ -123.306066447999982, 48.451539043000075 ], [ -123.307246296999963, 48.450766690000151 ], [ -123.307682861999965, 48.450473756000065 ], [ -123.307931982999889, 48.450306561000104 ], [ -123.308197895999967, 48.45012810300009 ], [ -123.308518534999962, 48.449761155000054 ], [ -123.308652794999929, 48.449607500000141 ], [ -123.308886500999961, 48.449130988000057 ], [ -123.309514092999947, 48.44811350500003 ], [ -123.31013683499999, 48.446975571000046 ], [ -123.310164899999933, 48.446924295000073 ], [ -123.310250003999926, 48.446769910000057 ], [ -123.310557804, 48.44621133400009 ], [ -123.310842292999965, 48.445695104000016 ], [ -123.311369662999965, 48.445713508000082 ], [ -123.312647514, 48.445758105000017 ], [ -123.313439326999926, 48.445785873 ], [ -123.314684239999963, 48.445829502000016 ], [ -123.315292474999964, 48.445850804 ], [ -123.315534585999941, 48.445859300000087 ], [ -123.315537604999946, 48.44561498400008 ], [ -123.315614408999963, 48.445403215000155 ], [ -123.315835599, 48.445264494000057 ], [ -123.316285502999975, 48.445043186000142 ], [ -123.316574889999941, 48.444844002000167 ], [ -123.317184600999923, 48.44430489000009 ], [ -123.317522283999907, 48.443775909000081 ], [ -123.318779899999953, 48.44409280400005 ], [ -123.318404225000037, 48.444696503000046 ], [ -123.317619017, 48.445449511000099 ], [ -123.31746352, 48.445693500000132 ], [ -123.317456910999951, 48.445927807000039 ], [ -123.317486595999966, 48.446260387000073 ], [ -123.317693393999917, 48.446826594000129 ], [ -123.317641086999956, 48.447321317000053 ], [ -123.31758872599994, 48.447591985000059 ], [ -123.317398414999957, 48.448575906000038 ], [ -123.317307282999934, 48.448945094000067 ], [ -123.31719526099999, 48.449194665000022 ], [ -123.317019885999954, 48.44958530100007 ], [ -123.317341388, 48.449865799000037 ], [ -123.316864008, 48.450142306000082 ], [ -123.316571402999926, 48.450421686000013 ], [ -123.316305590999917, 48.450894705000053 ], [ -123.315459599999926, 48.452528085000061 ], [ -123.315048006999916, 48.453308493000073 ], [ -123.314429443999984, 48.454508761000078 ], [ -123.314371304999923, 48.454621592000052 ], [ -123.314278412999926, 48.455090783000053 ], [ -123.314364821000012, 48.455519597000034 ], [ -123.314585401999921, 48.455961702000089 ], [ -123.315058841999928, 48.456597363000142 ], [ -123.31533814099997, 48.456972338000107 ], [ -123.315402081999935, 48.457058200000034 ], [ -123.31560149699996, 48.457326612000095 ], [ -123.315695583999954, 48.457523797000064 ], [ -123.315758278999965, 48.457656100000129 ], [ -123.315814810999925, 48.458040789000059 ], [ -123.315787390999986, 48.458213300000111 ], [ -123.315485899999928, 48.458767406000064 ], [ -123.317389069999976, 48.459353786000044 ], [ -123.319003246999984, 48.45985109700009 ], [ -123.319058101999985, 48.459867983000024 ], [ -123.319606398999952, 48.460036895000044 ], [ -123.320750539999921, 48.460415835000106 ], [ -123.320933088999979, 48.460476293000077 ], [ -123.320899378999911, 48.461404203000058 ], [ -123.32085809199998, 48.462131802000073 ], [ -123.320812670999928, 48.4629769350001 ], [ -123.320782697999974, 48.463534006 ], [ -123.320746188999976, 48.46441509800006 ], [ -123.320709472999951, 48.464864507000058 ], [ -123.320697699000021, 48.465008493000063 ], [ -123.320644807999926, 48.465656104000047 ], [ -123.320615417999974, 48.466764250000047 ], [ -123.320605711999974, 48.467130395000034 ], [ -123.320562453999955, 48.467219721000049 ], [ -123.320258345999918, 48.467030331000025 ], [ -123.317506902999952, 48.465635852000098 ], [ -123.315504350999959, 48.464723623000033 ], [ -123.312464233999961, 48.463403139000036 ], [ -123.308902346999915, 48.461395992000142 ], [ -123.307301957999968, 48.46064021799999 ], [ -123.308613156999968, 48.460636708000067 ], [ -123.3086115199999, 48.460366818000082 ], [ -123.309828878999966, 48.460363548000025 ], [ -123.30982723699999, 48.460093658000055 ], [ -123.313479295999983, 48.460083768000125 ], [ -123.31347763399998, 48.459813879000151 ], [ -123.313883414999964, 48.45981277300006 ], [ -123.313881750999968, 48.459542883000097 ], [ -123.314287531999952, 48.459541776000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100837917", "BldgCostT": "69071667", "sL_LossRatio": "0.921231803040458", "sL_AssetLoss": "232782.02", "sL_BldgLoss": "214446.2", "sL_StrLoss": "158437.4", "sL_NStrLoss": "56008.8", "sL_ContLoss": "18335.82", "geom_point": "0101000020E6100000DB982A5AB1D35EC0AF3D9A871F394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.305699488999906, 48.449978908000034 ], [ -123.304527289999953, 48.449867903 ], [ -123.30404499699992, 48.450040503000061 ], [ -123.303729174999916, 48.450250696000069 ], [ -123.303500516, 48.450592009000069 ], [ -123.3034695099999, 48.449833705000081 ], [ -123.303344904999946, 48.449579884000109 ], [ -123.303056188999918, 48.448440711000067 ], [ -123.3031162, 48.447980485000066 ], [ -123.303317353999915, 48.447649818000045 ], [ -123.30334420599992, 48.44760568100002 ], [ -123.303644522999932, 48.447286006000063 ], [ -123.30390130899994, 48.447161799000092 ], [ -123.304234707999939, 48.446949287000109 ], [ -123.304411, 48.44669949300004 ], [ -123.30477439199997, 48.445889908000048 ], [ -123.304713697999929, 48.445011812000104 ], [ -123.304792693999957, 48.444810905000033 ], [ -123.30511749199999, 48.444607204000107 ], [ -123.306731577999926, 48.443806892000104 ], [ -123.30774660899999, 48.443285294000063 ], [ -123.30826197, 48.443040242000059 ], [ -123.308823198999917, 48.442773408000058 ], [ -123.30932972699992, 48.442518436000029 ], [ -123.309850101999984, 48.442256514000071 ], [ -123.310372654999981, 48.441983991000029 ], [ -123.310890603999923, 48.441713900000103 ], [ -123.311431320999972, 48.441448629000057 ], [ -123.312025016999939, 48.441157390000086 ], [ -123.31242080699991, 48.44150750700009 ], [ -123.312402000999938, 48.441648606000058 ], [ -123.31237996599998, 48.441848558000125 ], [ -123.312285562999975, 48.442703913000074 ], [ -123.312262789999963, 48.442910305000055 ], [ -123.312228583999953, 48.443035693000127 ], [ -123.310842292999965, 48.445695104000016 ], [ -123.310557804, 48.44621133400009 ], [ -123.310250003999926, 48.446769910000057 ], [ -123.310164899999933, 48.446924295000073 ], [ -123.31013683499999, 48.446975571000046 ], [ -123.309514092999947, 48.44811350500003 ], [ -123.308886500999961, 48.449130988000057 ], [ -123.308652794999929, 48.449607500000141 ], [ -123.308518534999962, 48.449761155000054 ], [ -123.308197895999967, 48.45012810300009 ], [ -123.307931982999889, 48.450306561000104 ], [ -123.307682861999965, 48.450473756000065 ], [ -123.307246296999963, 48.450766690000151 ], [ -123.306786794999979, 48.450443005000125 ], [ -123.306315700999946, 48.450181203000064 ], [ -123.305699488999906, 48.449978908000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140150469", "BldgCostT": "89910412", "sL_LossRatio": "0.755120749095673", "sL_AssetLoss": "212063.7", "sL_BldgLoss": "160133.7", "sL_StrLoss": "112600.9", "sL_NStrLoss": "47532.8", "sL_ContLoss": "51930", "geom_point": "0101000020E61000003540278C3FD35EC04C1DF4D771394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.298027791999942, 48.450964803000041 ], [ -123.296533872999973, 48.450234683000048 ], [ -123.295860901999944, 48.449905792000045 ], [ -123.296036307999969, 48.44962440400009 ], [ -123.296238912999954, 48.449079500000025 ], [ -123.29633709, 48.448567011000129 ], [ -123.296293396999957, 48.44777320300004 ], [ -123.29609399899995, 48.446444210000031 ], [ -123.29582518700002, 48.445763710000094 ], [ -123.295485697999979, 48.445209387000055 ], [ -123.295566557999905, 48.445136320000131 ], [ -123.295976697999933, 48.444765589000077 ], [ -123.296686983999948, 48.444502398000047 ], [ -123.297166690999958, 48.444374905000082 ], [ -123.298285935999914, 48.444184867000075 ], [ -123.298584298999941, 48.444134186000035 ], [ -123.299362616999957, 48.44409540000008 ], [ -123.300139902, 48.444146789000044 ], [ -123.300767795999988, 48.444262004000066 ], [ -123.30288858599998, 48.444683100000098 ], [ -123.304713697999929, 48.445011812000104 ], [ -123.30477439199997, 48.445889908000048 ], [ -123.304411, 48.44669949300004 ], [ -123.304234707999939, 48.446949287000109 ], [ -123.30390130899994, 48.447161799000092 ], [ -123.303644522999932, 48.447286006000063 ], [ -123.30334420599992, 48.44760568100002 ], [ -123.303317353999915, 48.447649818000045 ], [ -123.3031162, 48.447980485000066 ], [ -123.303056188999918, 48.448440711000067 ], [ -123.303344904999946, 48.449579884000109 ], [ -123.3034695099999, 48.449833705000081 ], [ -123.303500516, 48.450592009000069 ], [ -123.303729174999916, 48.450250696000069 ], [ -123.30404499699992, 48.450040503000061 ], [ -123.304527289999953, 48.449867903 ], [ -123.305699488999906, 48.449978908000034 ], [ -123.306315700999946, 48.450181203000064 ], [ -123.306786794999979, 48.450443005000125 ], [ -123.307246296999963, 48.450766690000151 ], [ -123.306066447999982, 48.451539043000075 ], [ -123.30592809699999, 48.451629619000101 ], [ -123.305734953999917, 48.45176016400012 ], [ -123.304151838999985, 48.452830169000066 ], [ -123.303769479, 48.45308861500007 ], [ -123.302632402999961, 48.453857087000074 ], [ -123.302260705999927, 48.454147901000077 ], [ -123.302082059999975, 48.454388361000049 ], [ -123.301770791999942, 48.454807296000041 ], [ -123.300497801999967, 48.456647890000035 ], [ -123.3007537, 48.454555886000023 ], [ -123.30076000399994, 48.453546015000029 ], [ -123.300568389999967, 48.453000101000057 ], [ -123.300297626999964, 48.452525164000086 ], [ -123.300237119999977, 48.452418999000081 ], [ -123.300148460999935, 48.452320187000026 ], [ -123.299872785999966, 48.452012897000053 ], [ -123.299435775999925, 48.451722193000073 ], [ -123.299411871999936, 48.451709328000071 ], [ -123.298027791999942, 48.450964803000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152881750", "BldgCostT": "99595000", "sL_LossRatio": "0.89250492124367", "sL_AssetLoss": "273863.7", "sL_BldgLoss": "244424.7", "sL_StrLoss": "181174.7", "sL_NStrLoss": "63250", "sL_ContLoss": "29439", "geom_point": "0101000020E61000004094BB11CED45EC04CFB7A19A0394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.321522199999919, 48.453611756000043 ], [ -123.321734475999932, 48.449884990000108 ], [ -123.321717874999962, 48.449843874000067 ], [ -123.321507615999948, 48.448590302000049 ], [ -123.321512476999914, 48.448557566000041 ], [ -123.321400042999954, 48.447292768000032 ], [ -123.321527418999963, 48.447178856000114 ], [ -123.321532522, 48.447170298000103 ], [ -123.321721259, 48.446854598000115 ], [ -123.32177795699999, 48.446497105000084 ], [ -123.321793520999975, 48.446103395000073 ], [ -123.322353394999979, 48.446111215000045 ], [ -123.324423692, 48.446140107000076 ], [ -123.32515213299996, 48.4461435360001 ], [ -123.326071743999975, 48.446147840000094 ], [ -123.32652888599992, 48.446149998000124 ], [ -123.327163317999961, 48.446150702000068 ], [ -123.327108904999989, 48.448068397000085 ], [ -123.327147811999936, 48.448120707000072 ], [ -123.327434686999936, 48.448513996000074 ], [ -123.327433793999973, 48.448887288000087 ], [ -123.327424229999963, 48.449508759000025 ], [ -123.327419597999963, 48.449807716000059 ], [ -123.327388008999947, 48.450604995000035 ], [ -123.328501100999972, 48.450616796000098 ], [ -123.329616805999962, 48.450581795000062 ], [ -123.330773088999976, 48.450545096000084 ], [ -123.330737280000037, 48.452804202000031 ], [ -123.328878708, 48.452820399000068 ], [ -123.327493987999944, 48.452819809000033 ], [ -123.326549888999978, 48.452819416000132 ], [ -123.326696990999977, 48.453202802000071 ], [ -123.326876507999955, 48.453490489000067 ], [ -123.326213611999918, 48.453479275000099 ], [ -123.326105502999951, 48.453477452000072 ], [ -123.324968743999989, 48.453458183000087 ], [ -123.324603820999982, 48.453452007000067 ], [ -123.324306907999983, 48.453569906000062 ], [ -123.324111286999951, 48.453709202000056 ], [ -123.323929777999936, 48.453910200000017 ], [ -123.323749102999926, 48.454074311000049 ], [ -123.322690487999949, 48.454052086000026 ], [ -123.322328923999947, 48.454047405000047 ], [ -123.321477912999924, 48.454008787000049 ], [ -123.321522199999919, 48.453611756000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172226334", "BldgCostT": "113468334", "sL_LossRatio": "0.873310419160176", "sL_AssetLoss": "510659.2", "sL_BldgLoss": "445964", "sL_StrLoss": "296833", "sL_NStrLoss": "149131", "sL_ContLoss": "64695.2", "geom_point": "0101000020E61000007EC18FE61FD55EC0AFA5362765394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.327108904999989, 48.448068397000085 ], [ -123.327163317999961, 48.446150702000068 ], [ -123.328371301999979, 48.446152298000051 ], [ -123.329511910999955, 48.44615399600017 ], [ -123.330737020999905, 48.446164100000026 ], [ -123.331398090999969, 48.446169984000022 ], [ -123.331876775999945, 48.446107203000096 ], [ -123.332465224999964, 48.445989442 ], [ -123.332475281999962, 48.448143817000059 ], [ -123.333189723999965, 48.448149483000094 ], [ -123.333156378999959, 48.449684322000103 ], [ -123.333137306999987, 48.450562299000062 ], [ -123.331963513999966, 48.450550807000099 ], [ -123.330773088999976, 48.450545096000084 ], [ -123.329616805999962, 48.450581795000062 ], [ -123.328501100999972, 48.450616796000098 ], [ -123.327388008999947, 48.450604995000035 ], [ -123.327419597999963, 48.449807716000059 ], [ -123.327424229999963, 48.449508759000025 ], [ -123.327433793999973, 48.448887288000087 ], [ -123.327434686999936, 48.448513996000074 ], [ -123.327147811999936, 48.448120707000072 ], [ -123.327108904999989, 48.448068397000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150463728", "BldgCostT": "97474857", "sL_LossRatio": "0.890528344978327", "sL_AssetLoss": "200380.82", "sL_BldgLoss": "178444.8", "sL_StrLoss": "140912.8", "sL_NStrLoss": "37532", "sL_ContLoss": "21936.02", "geom_point": "0101000020E6100000DDCB3A0C3BD55EC053CA08FBB8374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.333634918999905, 48.437089549000142 ], [ -123.332553599999969, 48.436934693000069 ], [ -123.328498010999937, 48.436864009000047 ], [ -123.328703311999973, 48.435929498000043 ], [ -123.328856715999947, 48.435198403000136 ], [ -123.328961885999888, 48.434693875000079 ], [ -123.329012093999921, 48.434452907000065 ], [ -123.329192800999948, 48.433643997000061 ], [ -123.330210332999926, 48.433710160000068 ], [ -123.331225187999962, 48.433776139000102 ], [ -123.332535909999962, 48.433861330000092 ], [ -123.333333868999915, 48.433913187000044 ], [ -123.333771095, 48.433941609000073 ], [ -123.334337510999916, 48.433972093000108 ], [ -123.335037510999925, 48.434003204000142 ], [ -123.335030484999891, 48.434849439000139 ], [ -123.335019980999945, 48.436108501000071 ], [ -123.334307711999926, 48.436104094000022 ], [ -123.333662990000022, 48.436050004000052 ], [ -123.333634918999905, 48.437089549000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154953962", "BldgCostT": "93794193", "sL_LossRatio": "0.896544471883028", "sL_AssetLoss": "138458.72", "sL_BldgLoss": "124134.4", "sL_StrLoss": "93857.7", "sL_NStrLoss": "30276.7", "sL_ContLoss": "14324.32", "geom_point": "0101000020E61000007FCF1F05D5D45EC0DFF4575DC1374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.32216578799995, 48.437696109000079 ], [ -123.322209792999956, 48.436753009000036 ], [ -123.322246384999943, 48.435844901000038 ], [ -123.322355314000021, 48.433541951000066 ], [ -123.323751847, 48.43338345800003 ], [ -123.323884614999912, 48.43336840600012 ], [ -123.32449655, 48.433391026000017 ], [ -123.325508881999937, 48.433433235000081 ], [ -123.328108114999964, 48.43361480100009 ], [ -123.329192800999948, 48.433643997000061 ], [ -123.329012093999921, 48.434452907000065 ], [ -123.328961885999888, 48.434693875000079 ], [ -123.328856715999947, 48.435198403000136 ], [ -123.328703311999973, 48.435929498000043 ], [ -123.328498010999937, 48.436864009000047 ], [ -123.328309019999963, 48.437845012000032 ], [ -123.324912500999957, 48.437741195000079 ], [ -123.32216578799995, 48.437696109000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253284076", "BldgCostT": "166397408", "sL_LossRatio": "0.744233902194998", "sL_AssetLoss": "230722.76", "sL_BldgLoss": "171711.7", "sL_StrLoss": "106238", "sL_NStrLoss": "65473.7", "sL_ContLoss": "59011.06", "geom_point": "0101000020E6100000FE3F34B108D55EC008C3158A53374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.32449655, 48.433391026000017 ], [ -123.323884614999912, 48.43336840600012 ], [ -123.323751847, 48.43338345800003 ], [ -123.322355314000021, 48.433541951000066 ], [ -123.322362819999967, 48.433383986000131 ], [ -123.3223824949999, 48.432951300000127 ], [ -123.322417898999973, 48.432172515000026 ], [ -123.323943406999888, 48.431852086000056 ], [ -123.325543144999955, 48.431524150000023 ], [ -123.325674576999972, 48.431497195000141 ], [ -123.326762288999987, 48.431233397000035 ], [ -123.327264675999956, 48.431059404000074 ], [ -123.327756218999966, 48.430766992000081 ], [ -123.328375815999948, 48.43033351 ], [ -123.32891798199995, 48.430099203000019 ], [ -123.330163, 48.429558791000041 ], [ -123.330065307999973, 48.429783599000054 ], [ -123.331391589999981, 48.430910104000141 ], [ -123.331855598999965, 48.430936191000121 ], [ -123.332376312999926, 48.431059393000027 ], [ -123.332460193999964, 48.431055206000117 ], [ -123.33251000199995, 48.431010381000128 ], [ -123.332555391999918, 48.430683313000046 ], [ -123.333194840999951, 48.430426574000094 ], [ -123.333622681999969, 48.430254799000117 ], [ -123.333249090999985, 48.430514991000052 ], [ -123.333076417999962, 48.430730169000057 ], [ -123.333028498999951, 48.430789900000079 ], [ -123.332940706999963, 48.431078101 ], [ -123.332865300999984, 48.431696602000059 ], [ -123.332969403000021, 48.432195289000099 ], [ -123.333142795999962, 48.432471989000085 ], [ -123.333669303999926, 48.433186008000057 ], [ -123.333753515999959, 48.433486599000055 ], [ -123.333771095, 48.433941609000073 ], [ -123.333333868999915, 48.433913187000044 ], [ -123.332535909999962, 48.433861330000092 ], [ -123.331225187999962, 48.433776139000102 ], [ -123.330210332999926, 48.433710160000068 ], [ -123.329192800999948, 48.433643997000061 ], [ -123.328108114999964, 48.43361480100009 ], [ -123.325508881999937, 48.433433235000081 ], [ -123.32449655, 48.433391026000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187731053", "BldgCostT": "125998746", "sL_LossRatio": "0.921753145500394", "sL_AssetLoss": "162284.99", "sL_BldgLoss": "149586.7", "sL_StrLoss": "118071.9", "sL_NStrLoss": "31514.8", "sL_ContLoss": "12698.29", "geom_point": "0101000020E610000061EBB69776D55EC08DA084DB52374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.333669303999926, 48.433186008000057 ], [ -123.333142795999962, 48.432471989000085 ], [ -123.332969403000021, 48.432195289000099 ], [ -123.332865300999984, 48.431696602000059 ], [ -123.332940706999963, 48.431078101 ], [ -123.333028498999951, 48.430789900000079 ], [ -123.333076417999962, 48.430730169000057 ], [ -123.333249090999985, 48.430514991000052 ], [ -123.333622681999969, 48.430254799000117 ], [ -123.335138886999985, 48.429666111000103 ], [ -123.33580398399999, 48.429427694000061 ], [ -123.335760614999955, 48.430247206000097 ], [ -123.335717704000032, 48.431152488000109 ], [ -123.336359552999923, 48.431166554000043 ], [ -123.337105908999945, 48.431182914000054 ], [ -123.337016315999989, 48.432629891 ], [ -123.3383841939999, 48.432662486000083 ], [ -123.33830290899999, 48.434178197000072 ], [ -123.337408188999973, 48.434128695000062 ], [ -123.33693478699999, 48.434100490000048 ], [ -123.336260395999929, 48.434070099000117 ], [ -123.33573006599994, 48.434040945000071 ], [ -123.335594508, 48.434033508000077 ], [ -123.335037510999925, 48.434003204000142 ], [ -123.334337510999916, 48.433972093000108 ], [ -123.333771095, 48.433941609000073 ], [ -123.333753515999959, 48.433486599000055 ], [ -123.333669303999926, 48.433186008000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83816333", "BldgCostT": "51473333", "sL_LossRatio": "0.868349360986265", "sL_AssetLoss": "159308", "sL_BldgLoss": "138335", "sL_StrLoss": "98982", "sL_NStrLoss": "39353", "sL_ContLoss": "20973", "geom_point": "0101000020E6100000E20C41E58AD95EC03F9E8EAEEF534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.400006046999948, 48.653224180000073 ], [ -123.400273211999945, 48.653224302000105 ], [ -123.40028583899999, 48.654197270000026 ], [ -123.400295918999987, 48.654970840000097 ], [ -123.400300687999959, 48.655339683000079 ], [ -123.40030115899998, 48.655375482000061 ], [ -123.400301596999967, 48.655409191000075 ], [ -123.40059440499999, 48.657054301000116 ], [ -123.400825076000032, 48.658080402000067 ], [ -123.400003630999933, 48.658093248000107 ], [ -123.397765008999897, 48.658128210000037 ], [ -123.397756121000015, 48.657920700000069 ], [ -123.397763300999927, 48.657054609000113 ], [ -123.397764684999956, 48.656122516000067 ], [ -123.397763727999958, 48.654914504000011 ], [ -123.397785488999929, 48.653222106000065 ], [ -123.399029989999946, 48.653223698000062 ], [ -123.400006046999948, 48.653224180000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222807895", "BldgCostT": "148616524", "sL_LossRatio": "0.911523449320913", "sL_AssetLoss": "311451.45", "sL_BldgLoss": "283895.3", "sL_StrLoss": "203752", "sL_NStrLoss": "80143.3", "sL_ContLoss": "27556.15", "geom_point": "0101000020E61000009D96FD5F5AD95EC0BCCC3CFB42544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393409238999979, 48.662544462000071 ], [ -123.39334121899995, 48.662525860000073 ], [ -123.39287239399998, 48.662527460000014 ], [ -123.392513262999984, 48.662091642000121 ], [ -123.392492827999945, 48.661765755000069 ], [ -123.392508394999979, 48.661561916000082 ], [ -123.392540163999911, 48.661417405000094 ], [ -123.392539758999959, 48.661365441000036 ], [ -123.393148199000024, 48.660168511000087 ], [ -123.393133204999941, 48.659870786000077 ], [ -123.392919873999958, 48.659737149000065 ], [ -123.392814037000022, 48.65955716100008 ], [ -123.392932661999964, 48.659499681000092 ], [ -123.392932273999932, 48.659449794000111 ], [ -123.393522914999977, 48.65941080500005 ], [ -123.39406509299998, 48.659130204000036 ], [ -123.395132930999949, 48.657878974000027 ], [ -123.39523557699999, 48.657758696000037 ], [ -123.395246093999987, 48.657543713000102 ], [ -123.395137694999946, 48.657418291000077 ], [ -123.394700291999982, 48.657176206000031 ], [ -123.394543804999955, 48.657140027000082 ], [ -123.394543679999956, 48.657124042000078 ], [ -123.394475665999948, 48.657124275000115 ], [ -123.394238310999981, 48.65706940000004 ], [ -123.394169596999973, 48.656979702000072 ], [ -123.394446796999944, 48.655981299000061 ], [ -123.395107411999973, 48.655321901 ], [ -123.395291592999982, 48.654565606000133 ], [ -123.395764515999986, 48.65420390000007 ], [ -123.396197694999927, 48.654148294000059 ], [ -123.396480911999916, 48.65399449800011 ], [ -123.396777096999955, 48.653669790000073 ], [ -123.396982572999931, 48.653216632000102 ], [ -123.397271273999962, 48.653218548000055 ], [ -123.397785488999929, 48.653222106000065 ], [ -123.397763727999958, 48.654914504000011 ], [ -123.397764684999956, 48.656122516000067 ], [ -123.397763300999927, 48.657054609000113 ], [ -123.397756121000015, 48.657920700000069 ], [ -123.397765008999897, 48.658128210000037 ], [ -123.400003630999933, 48.658093248000107 ], [ -123.400825076000032, 48.658080402000067 ], [ -123.400826508999927, 48.658742999000062 ], [ -123.40082680299993, 48.659399296000117 ], [ -123.400000759999941, 48.659399693000125 ], [ -123.397750199999962, 48.659400694000091 ], [ -123.397751623999966, 48.659718109000046 ], [ -123.397751796999927, 48.659860515000041 ], [ -123.397818433999973, 48.660065570000029 ], [ -123.397843966999972, 48.660171236000096 ], [ -123.397838335999907, 48.660214881000051 ], [ -123.397838221999947, 48.660328299000092 ], [ -123.397821092999948, 48.660323708000135 ], [ -123.397182389999912, 48.660253897000068 ], [ -123.397066669999958, 48.660353997000065 ], [ -123.397013267999981, 48.660354181000166 ], [ -123.397013626999978, 48.660399880000021 ], [ -123.396753419999968, 48.660624962000036 ], [ -123.39660799899994, 48.66062546300013 ], [ -123.396608975999925, 48.660749905000031 ], [ -123.39644016499993, 48.660895926000087 ], [ -123.396100029999985, 48.660897095000038 ], [ -123.395930036999971, 48.660978561000036 ], [ -123.395796368, 48.661029895000098 ], [ -123.395797449999975, 48.661168021000066 ], [ -123.395450224999976, 48.661169213000107 ], [ -123.395390327999948, 48.661203917000115 ], [ -123.395392044999952, 48.661423442000057 ], [ -123.395359024999948, 48.661438905000061 ], [ -123.39535843099999, 48.66143941400005 ], [ -123.395010580999966, 48.661440607000017 ], [ -123.394985086999952, 48.661480606000104 ], [ -123.394986882999888, 48.661710574000026 ], [ -123.39483817899999, 48.661711084000032 ], [ -123.394591967999958, 48.662097351000114 ], [ -123.394333295999971, 48.662319391000075 ], [ -123.394293184999981, 48.662345651000088 ], [ -123.393643428999965, 48.662524829000041 ], [ -123.393603172999988, 48.662524966000078 ], [ -123.393409238999979, 48.662544462000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258110753", "BldgCostT": "166034861", "sL_LossRatio": "0.841055154398703", "sL_AssetLoss": "435248.15", "sL_BldgLoss": "366067.7", "sL_StrLoss": "244987.7", "sL_NStrLoss": "121080", "sL_ContLoss": "69180.45", "geom_point": "0101000020E610000005E95BACC9D95EC0DE6DD57D19554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.403006409999946, 48.668464502000155 ], [ -123.402828396999965, 48.668257993000061 ], [ -123.402631750999987, 48.668271245000057 ], [ -123.402492136999967, 48.668207262000053 ], [ -123.402188938, 48.668203861000066 ], [ -123.401965069999932, 48.668282623 ], [ -123.401965874999917, 48.668383832000153 ], [ -123.401797528999964, 48.668434146000045 ], [ -123.400351475999983, 48.668439181000075 ], [ -123.399928194999916, 48.668336399000069 ], [ -123.399928032999966, 48.668316066000067 ], [ -123.399533037999959, 48.66818976200004 ], [ -123.399505497999968, 48.668172233000107 ], [ -123.399491998999963, 48.668172279000089 ], [ -123.399350009999978, 48.668045791000047 ], [ -123.399110274999941, 48.667956710000077 ], [ -123.399109988999939, 48.667920502000115 ], [ -123.399083760999972, 48.667903811000052 ], [ -123.398662222999945, 48.667905270000098 ], [ -123.398294708999913, 48.667874309000048 ], [ -123.398293843999937, 48.667764503000029 ], [ -123.398066537999981, 48.667678961 ], [ -123.397904425999926, 48.667638005000136 ], [ -123.397776425999922, 48.667638447000066 ], [ -123.39775670100002, 48.667628501000053 ], [ -123.397564584999984, 48.667305197000083 ], [ -123.397475220999922, 48.667292592000109 ], [ -123.397473159999976, 48.667030545000038 ], [ -123.3975488949999, 48.667034596000079 ], [ -123.397710894999989, 48.66696341500009 ], [ -123.397803935999889, 48.666828696000074 ], [ -123.39781659199997, 48.666828653000103 ], [ -123.397824688999947, 48.666798649000064 ], [ -123.398060085999958, 48.666457802000082 ], [ -123.398638997999967, 48.665898106000093 ], [ -123.399193987999979, 48.665599011000019 ], [ -123.400511305999913, 48.665387828000128 ], [ -123.400719868, 48.66540429300003 ], [ -123.40071947399997, 48.665354455000092 ], [ -123.400917605999908, 48.665322689000106 ], [ -123.402400309999976, 48.665785597000088 ], [ -123.403051593999976, 48.665621810000125 ], [ -123.403576304999959, 48.665151783000063 ], [ -123.403801193, 48.664413988 ], [ -123.403780014999967, 48.663334504000055 ], [ -123.403191989999982, 48.662779105000091 ], [ -123.403159234999947, 48.662663878000068 ], [ -123.403051502999958, 48.662284890000123 ], [ -123.402640616999946, 48.661755004000035 ], [ -123.40120540099997, 48.660652689000138 ], [ -123.40094760399991, 48.660573001000088 ], [ -123.400345312999917, 48.660161406000036 ], [ -123.399369208999985, 48.660201201000106 ], [ -123.399030191999955, 48.660436216000086 ], [ -123.398938853999951, 48.660617414000093 ], [ -123.398629562999972, 48.660618484000096 ], [ -123.398448216999967, 48.660491796000024 ], [ -123.397838221999947, 48.660328299000092 ], [ -123.397838335999907, 48.660214881000051 ], [ -123.397843966999972, 48.660171236000096 ], [ -123.397818433999973, 48.660065570000029 ], [ -123.397751796999927, 48.659860515000041 ], [ -123.397751623999966, 48.659718109000046 ], [ -123.397750199999962, 48.659400694000091 ], [ -123.400000759999941, 48.659399693000125 ], [ -123.40082680299993, 48.659399296000117 ], [ -123.400826508999927, 48.658742999000062 ], [ -123.401204043999925, 48.658741217000092 ], [ -123.401923661999945, 48.658737809000044 ], [ -123.401950810999949, 48.658737678000094 ], [ -123.402697719999964, 48.658734142000114 ], [ -123.402958525999949, 48.658732901000079 ], [ -123.402970284999938, 48.659944699000071 ], [ -123.402962474999981, 48.660503389000084 ], [ -123.403018505999981, 48.66083920800002 ], [ -123.40412590499993, 48.662592503000035 ], [ -123.404434817999942, 48.662843494000121 ], [ -123.406316000999965, 48.664114395000112 ], [ -123.406870599999962, 48.664384797000075 ], [ -123.40693031399999, 48.664408793000106 ], [ -123.408885910999913, 48.665046899000089 ], [ -123.40969363399995, 48.665305560000029 ], [ -123.410098517999955, 48.665435195000079 ], [ -123.41010405399993, 48.665497569000067 ], [ -123.410026262999949, 48.665681059000057 ], [ -123.409823752999955, 48.665822452000086 ], [ -123.409478674999917, 48.666063392000083 ], [ -123.409465763999904, 48.666154840000054 ], [ -123.409427144999967, 48.666265966000083 ], [ -123.409072191999911, 48.666113103000058 ], [ -123.409029911999966, 48.665996301000114 ], [ -123.40917701399998, 48.665798390000056 ], [ -123.409014602999918, 48.665673088000105 ], [ -123.407835908999957, 48.666054705000093 ], [ -123.407754790999917, 48.666235591000039 ], [ -123.406930800999959, 48.666786811000044 ], [ -123.406307295999966, 48.666887894000062 ], [ -123.406117098999985, 48.666825202000098 ], [ -123.405778502999951, 48.66697049900008 ], [ -123.405695323999936, 48.66687220500004 ], [ -123.40484299299996, 48.667100103000102 ], [ -123.404870197999969, 48.667216907000039 ], [ -123.404043123999969, 48.66747180300009 ], [ -123.40421041399999, 48.667830700000117 ], [ -123.404159293999953, 48.667824025000073 ], [ -123.40393768699991, 48.667795089000101 ], [ -123.403802913, 48.667867791000077 ], [ -123.403791900000016, 48.668255095000113 ], [ -123.404043041999955, 48.66869617800009 ], [ -123.403997488, 48.668696337000057 ], [ -123.404211037999957, 48.669046261000084 ], [ -123.404297505999949, 48.669246219000051 ], [ -123.404289517, 48.669387405000094 ], [ -123.40415401099996, 48.669450100000091 ], [ -123.403977757999954, 48.669428867000072 ], [ -123.403952837999967, 48.66941686200007 ], [ -123.403327736999969, 48.669196861000053 ], [ -123.403149937999942, 48.669034162000081 ], [ -123.40316033699996, 48.668632661000096 ], [ -123.403008434999904, 48.668504386000031 ], [ -123.403006409999946, 48.668464502000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "643157164", "BldgCostT": "437091754", "sL_LossRatio": "0.80798221754722", "sL_AssetLoss": "191087.25", "sL_BldgLoss": "154395.1", "sL_StrLoss": "86225", "sL_NStrLoss": "68170.1", "sL_ContLoss": "36692.15", "geom_point": "0101000020E6100000C62F636D00D85EC01AF950FD5E354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.374734226999976, 48.417768254000066 ], [ -123.373018593999973, 48.416983505000047 ], [ -123.372068569999939, 48.417020040000054 ], [ -123.371565299999958, 48.417039406000036 ], [ -123.372238101999955, 48.415745027000135 ], [ -123.372326245999929, 48.415575452000098 ], [ -123.372389997999989, 48.415452788000067 ], [ -123.373913504999962, 48.415346311000071 ], [ -123.37556790099994, 48.41613859500012 ], [ -123.376048795999978, 48.416369272000111 ], [ -123.376658475999989, 48.416661698000041 ], [ -123.377450141999944, 48.417040795000048 ], [ -123.377476081999973, 48.417053231000111 ], [ -123.377694918999921, 48.417158028000088 ], [ -123.378296558999949, 48.417446119000068 ], [ -123.378515400999973, 48.417550914000081 ], [ -123.377811315, 48.418205296000089 ], [ -123.377088816999915, 48.418877303000087 ], [ -123.375953796999966, 48.418326106000094 ], [ -123.374734226999976, 48.417768254000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "493182299", "BldgCostT": "324531158", "sL_LossRatio": "0.750695148463034", "sL_AssetLoss": "174869.12", "sL_BldgLoss": "131273.4", "sL_StrLoss": "72534.9", "sL_NStrLoss": "58738.5", "sL_ContLoss": "43595.72", "geom_point": "0101000020E61000005683DF0220D75EC018EC964F9C354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360532098999954, 48.419937192000127 ], [ -123.360459405999933, 48.419764393000086 ], [ -123.360289412999975, 48.419969419000054 ], [ -123.360280008999922, 48.419980811000102 ], [ -123.359937197999926, 48.419838794000079 ], [ -123.359835288999975, 48.419801656000125 ], [ -123.358306565999911, 48.419244706000029 ], [ -123.3580266069999, 48.419142704000073 ], [ -123.358259408999984, 48.418332408000076 ], [ -123.358447112, 48.417531706000091 ], [ -123.358527296999981, 48.417351506000067 ], [ -123.358673990999961, 48.417188391000067 ], [ -123.359182399999924, 48.416853800000077 ], [ -123.359284980999959, 48.416756301000063 ], [ -123.359293501999957, 48.416675304000123 ], [ -123.359873201999974, 48.41668170100013 ], [ -123.36024489499998, 48.416717998000131 ], [ -123.360527796999946, 48.416797197000051 ], [ -123.360708884999966, 48.416872440000084 ], [ -123.36113692099994, 48.417050265000029 ], [ -123.362386794999978, 48.417569499000116 ], [ -123.362138195999975, 48.417842911000079 ], [ -123.363268858999945, 48.418323803000064 ], [ -123.364587892999964, 48.418911288000061 ], [ -123.365202855999954, 48.419156570000084 ], [ -123.364841868999974, 48.419550025000078 ], [ -123.36460474299993, 48.419808396000079 ], [ -123.364545116999977, 48.41987338900001 ], [ -123.364353592999933, 48.420053102000104 ], [ -123.364153172000016, 48.420241111000038 ], [ -123.36384749199999, 48.420527910000096 ], [ -123.363227714999965, 48.420926395000023 ], [ -123.363082920999943, 48.421126598000107 ], [ -123.362580799999989, 48.420866106000076 ], [ -123.360976520999941, 48.420239896000055 ], [ -123.36095609099999, 48.420227341000015 ], [ -123.360548701999932, 48.41997670300001 ], [ -123.360532098999954, 48.419937192000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "609318605", "BldgCostT": "394472589", "sL_LossRatio": "0.70770800064051", "sL_AssetLoss": "296576.13", "sL_BldgLoss": "209889.3", "sL_StrLoss": "108366.8", "sL_NStrLoss": "101522.5", "sL_ContLoss": "86686.83", "geom_point": "0101000020E6100000597B1A2897D55EC023B3C55EBD364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.335740790999964, 48.426526690000053 ], [ -123.337018300999915, 48.426507409000116 ], [ -123.337381620999906, 48.426356731000084 ], [ -123.337973848, 48.426111149000107 ], [ -123.338043381, 48.426082306000097 ], [ -123.338147895999953, 48.426551191000044 ], [ -123.339247259999951, 48.426543042000091 ], [ -123.339882247999967, 48.426538287000028 ], [ -123.339950008999921, 48.426537810000056 ], [ -123.340187620999984, 48.426561717000062 ], [ -123.34093954, 48.426637424000049 ], [ -123.34123931799995, 48.426667608000052 ], [ -123.341548060999912, 48.426681636000083 ], [ -123.341995696999945, 48.426701944000087 ], [ -123.342614640999955, 48.426732822000119 ], [ -123.342985120999955, 48.42675022100007 ], [ -123.343687186, 48.426783195000027 ], [ -123.342922026999972, 48.426905602000033 ], [ -123.342839195999971, 48.426935702 ], [ -123.34231180899998, 48.427127387000048 ], [ -123.34196111599995, 48.427269187 ], [ -123.341491714999918, 48.427428153000037 ], [ -123.341410907999929, 48.427455513000019 ], [ -123.341333885999958, 48.427481602000114 ], [ -123.341088447999965, 48.427566601000109 ], [ -123.340348396999929, 48.427822934000041 ], [ -123.338675173999974, 48.428402387000041 ], [ -123.337392131999977, 48.428863541000062 ], [ -123.33607911, 48.429335405000089 ], [ -123.33580398399999, 48.429427694000061 ], [ -123.335138886999985, 48.429666111000103 ], [ -123.33347631499997, 48.428232798000096 ], [ -123.334237397999985, 48.427943497000037 ], [ -123.33425478499997, 48.426510006000143 ], [ -123.334942595999934, 48.426515594000122 ], [ -123.335740790999964, 48.426526690000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "382868271", "BldgCostT": "246130615", "sL_LossRatio": "0.787570232890569", "sL_AssetLoss": "370096.009", "sL_BldgLoss": "291476.6", "sL_StrLoss": "193582.3", "sL_NStrLoss": "97894.3", "sL_ContLoss": "78619.409", "geom_point": "0101000020E61000000232C87E52D45EC0E6DA8B261F374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.312007092999963, 48.43359059000008 ], [ -123.31265343299999, 48.432609910000153 ], [ -123.312826009999981, 48.432348098000055 ], [ -123.313129515999961, 48.431887609000114 ], [ -123.313359698999932, 48.431707619000065 ], [ -123.313653713999898, 48.431260171000126 ], [ -123.314308004999987, 48.430264379000079 ], [ -123.314422211999968, 48.430175003000038 ], [ -123.314786919999946, 48.429889571000103 ], [ -123.31512281599997, 48.429626705000068 ], [ -123.315273346, 48.429470882000025 ], [ -123.315412002999935, 48.427860107000143 ], [ -123.315431862999944, 48.42742881900007 ], [ -123.315452199999967, 48.426986291000098 ], [ -123.31545542, 48.426929597000012 ], [ -123.315473605999912, 48.426490901000129 ], [ -123.315884776999965, 48.426496799000098 ], [ -123.316855408999913, 48.426512410000036 ], [ -123.317105896999976, 48.426515497000061 ], [ -123.317962599999987, 48.426526046000042 ], [ -123.318105276999972, 48.426527798000066 ], [ -123.31808801199999, 48.42702340400006 ], [ -123.318026127999971, 48.428565514000105 ], [ -123.31860689199999, 48.428509217000034 ], [ -123.31922218699999, 48.428510396000085 ], [ -123.319183799999948, 48.42892519400003 ], [ -123.322601501999912, 48.429001690000092 ], [ -123.32254960599991, 48.429775989000085 ], [ -123.322540780999987, 48.430169009000032 ], [ -123.322510009999988, 48.430474779000122 ], [ -123.322417898999973, 48.432172515000026 ], [ -123.321440089999939, 48.432352391000052 ], [ -123.32092090899999, 48.432395213000063 ], [ -123.320131375999935, 48.432468281000148 ], [ -123.319903401999937, 48.432489413000013 ], [ -123.31962671, 48.432538303000044 ], [ -123.318917885999923, 48.432662905 ], [ -123.318520288999963, 48.43277270600008 ], [ -123.318002993999983, 48.432995904000066 ], [ -123.316963188999949, 48.433531389000095 ], [ -123.316578485999969, 48.433604602000038 ], [ -123.316199895999901, 48.433593195000071 ], [ -123.315803091999939, 48.433498473000029 ], [ -123.315418316, 48.433406598000069 ], [ -123.314948400999967, 48.433364895000075 ], [ -123.314631874, 48.433406914000074 ], [ -123.314537698999956, 48.433419408000134 ], [ -123.313551515999976, 48.433771398000125 ], [ -123.313223389999933, 48.433964212000049 ], [ -123.312007092999963, 48.43359059000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.912099276111686", "sL_AssetLoss": "1934", "sL_BldgLoss": "1764", "sL_StrLoss": "1240", "sL_NStrLoss": "524", "sL_ContLoss": "170", "geom_point": "0101000020E610000026F3972FD2DB5EC01A7264CC7A364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.434970313999941, 48.425680901000092 ], [ -123.43476678899999, 48.425555603000085 ], [ -123.434498204999983, 48.42563680500011 ], [ -123.433874307999957, 48.425595490000063 ], [ -123.433815118000012, 48.425474107000113 ], [ -123.435047974999947, 48.425503984000073 ], [ -123.435172987999977, 48.425635404000076 ], [ -123.435429700999947, 48.425688094000044 ], [ -123.435161383999983, 48.425904591000062 ], [ -123.434986919999972, 48.425868902000047 ], [ -123.434970313999941, 48.425680901000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "409072917", "BldgCostT": "269801667", "sL_LossRatio": "0.824137924445744", "sL_AssetLoss": "387285.66", "sL_BldgLoss": "319176.8", "sL_StrLoss": "234625.2", "sL_NStrLoss": "84551.6", "sL_ContLoss": "68108.86", "geom_point": "0101000020E6100000C21DA99DE5DA5EC038B054387E364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.434118683999912, 48.433636602000057 ], [ -123.433565279999982, 48.432091299000035 ], [ -123.433793807999933, 48.432027200000107 ], [ -123.432588720999931, 48.431753800000145 ], [ -123.432178108999892, 48.432591209000101 ], [ -123.432692296999988, 48.43270659300002 ], [ -123.432505920999944, 48.433039805000078 ], [ -123.43102374799993, 48.432484222 ], [ -123.430924873000023, 48.432447158000052 ], [ -123.43092306199992, 48.432233006000047 ], [ -123.431554396999957, 48.432450187000029 ], [ -123.431741484999932, 48.432350503000059 ], [ -123.431861797999915, 48.432115496000065 ], [ -123.431521716999967, 48.43193749400011 ], [ -123.43169599299992, 48.431577189000102 ], [ -123.431356507, 48.431434802000119 ], [ -123.43119480699994, 48.431443302000034 ], [ -123.431057195999969, 48.431282401000011 ], [ -123.431191411999947, 48.431155588000074 ], [ -123.430308388999961, 48.43067281 ], [ -123.430065315, 48.430611596000119 ], [ -123.429025516999971, 48.430803804000092 ], [ -123.428186207999943, 48.430752609000109 ], [ -123.427486508999976, 48.431097197000071 ], [ -123.427485269999963, 48.431099118000077 ], [ -123.427017133, 48.430459399000064 ], [ -123.42683942599993, 48.430171207000058 ], [ -123.42444681399995, 48.430270201000077 ], [ -123.424464323999928, 48.429948301000174 ], [ -123.424498700999905, 48.429316481000086 ], [ -123.423057195999931, 48.429472598000118 ], [ -123.421722413999973, 48.429627708000041 ], [ -123.420392006999947, 48.429775591000087 ], [ -123.420426278, 48.428847551000075 ], [ -123.42043159, 48.428703384000038 ], [ -123.420436579999944, 48.428340096000071 ], [ -123.41909918199994, 48.428319295000037 ], [ -123.41821370299995, 48.428302185000042 ], [ -123.417012788, 48.428276507000078 ], [ -123.417035503999941, 48.427441099000099 ], [ -123.41706319099994, 48.426133435000047 ], [ -123.417069028999933, 48.425858149000085 ], [ -123.417073887999962, 48.425627608000148 ], [ -123.417132207999927, 48.4255323020001 ], [ -123.417288711999987, 48.425276582000087 ], [ -123.417281798999966, 48.425228704000105 ], [ -123.417260412999951, 48.425176708000052 ], [ -123.416643588999946, 48.424917071000024 ], [ -123.416454266999963, 48.424837358000069 ], [ -123.415867326999958, 48.424590274000103 ], [ -123.415668527999969, 48.424506600000086 ], [ -123.415743322999958, 48.424372307000048 ], [ -123.414702991999945, 48.423336912000138 ], [ -123.414522873999914, 48.42315737400007 ], [ -123.413643708, 48.422281099000024 ], [ -123.413628681999924, 48.422184290000118 ], [ -123.413339407999899, 48.42214072200013 ], [ -123.411449001, 48.42185589700005 ], [ -123.41131389499995, 48.421834599000114 ], [ -123.41032176199991, 48.421712325000058 ], [ -123.409853219999917, 48.421654578000073 ], [ -123.40946391599999, 48.42160035700001 ], [ -123.409318987999981, 48.421580174000077 ], [ -123.40862832699996, 48.421480312000071 ], [ -123.408691341999926, 48.421068808000058 ], [ -123.408782848999962, 48.420777969000028 ], [ -123.408956103999969, 48.420373343000044 ], [ -123.409112919999956, 48.420007164000062 ], [ -123.409172674999951, 48.419867661000062 ], [ -123.40633470899995, 48.419342743000058 ], [ -123.405772902999985, 48.419255033000127 ], [ -123.405187113999915, 48.41918656600005 ], [ -123.405175833999948, 48.419223065000097 ], [ -123.405018198999926, 48.419732508000067 ], [ -123.402619024999979, 48.42023460000005 ], [ -123.40247941299998, 48.420319603000074 ], [ -123.402434697999936, 48.420470903000073 ], [ -123.40249119799995, 48.420596694000039 ], [ -123.403493891999972, 48.421622285000119 ], [ -123.403789596999971, 48.421766708000085 ], [ -123.404395883999911, 48.421854602000124 ], [ -123.40404637599994, 48.422937191000123 ], [ -123.401200303999985, 48.422557996000108 ], [ -123.400834011999947, 48.422472404000111 ], [ -123.400541714999946, 48.42234169700005 ], [ -123.400248184999967, 48.422158596000024 ], [ -123.400323862999969, 48.422108067000053 ], [ -123.398374912999913, 48.421737451000126 ], [ -123.398474033999904, 48.421958240000066 ], [ -123.398525563999954, 48.422073026000099 ], [ -123.398580012999943, 48.422194310000101 ], [ -123.398629058999987, 48.422299032000126 ], [ -123.398750049999975, 48.422557298000115 ], [ -123.399533890999948, 48.424230596000029 ], [ -123.399297889999943, 48.42420491100011 ], [ -123.39858398, 48.424114706000111 ], [ -123.39849128499999, 48.42410301300005 ], [ -123.397952592999943, 48.424500999000045 ], [ -123.397664784999932, 48.424303704000074 ], [ -123.398123498999936, 48.42396050200005 ], [ -123.397842523999898, 48.423754424000037 ], [ -123.397403002999951, 48.423432093000073 ], [ -123.397710092999887, 48.423061804000064 ], [ -123.397707992999983, 48.422882393000044 ], [ -123.396974706999956, 48.422309807000083 ], [ -123.397135587999955, 48.422200201000074 ], [ -123.39699929399994, 48.42193100700009 ], [ -123.397158513999969, 48.421670395000035 ], [ -123.396368205999977, 48.420781707000103 ], [ -123.396379305999957, 48.420520988000135 ], [ -123.396634311999975, 48.420294590000047 ], [ -123.396552805999974, 48.420115086000052 ], [ -123.39672711499999, 48.420015392000053 ], [ -123.396589204999913, 48.419800410000057 ], [ -123.396929598999975, 48.419746550000106 ], [ -123.397048113999972, 48.419727790000159 ], [ -123.397140800999978, 48.419313289000115 ], [ -123.397289202999929, 48.419232099000048 ], [ -123.397463810999966, 48.419249189000055 ], [ -123.39757240099999, 48.419122497000082 ], [ -123.397855198999977, 48.419093998000058 ], [ -123.398005594, 48.419210788000036 ], [ -123.39874930699996, 48.41930760600011 ], [ -123.399103778999944, 48.419900094000084 ], [ -123.399095892999924, 48.420404296000136 ], [ -123.399271900999949, 48.42042988700004 ], [ -123.399862707999887, 48.420113692000051 ], [ -123.40043019399999, 48.41994000799999 ], [ -123.400927732999932, 48.419942671000108 ], [ -123.401497681999956, 48.419945698000035 ], [ -123.40168610299996, 48.419891507000131 ], [ -123.401764199999988, 48.419531201000076 ], [ -123.40193969299996, 48.419502702000102 ], [ -123.402156599999927, 48.41963801000005 ], [ -123.402589294999956, 48.419518403000048 ], [ -123.403021020999944, 48.419616706000077 ], [ -123.403371475999933, 48.419479894000055 ], [ -123.403868611999926, 48.41901989200003 ], [ -123.403595196999945, 48.4186880950001 ], [ -123.403809494999933, 48.418282214000065 ], [ -123.403429693999968, 48.418256591000073 ], [ -123.403764606999957, 48.417904802000081 ], [ -123.40464332399992, 48.417891903000076 ], [ -123.40476590599998, 48.41800870600013 ], [ -123.405456409999914, 48.418005891000064 ], [ -123.405363390999938, 48.418322093000079 ], [ -123.40563658699989, 48.418328274000032 ], [ -123.406053688999947, 48.418337710000046 ], [ -123.406374714999941, 48.418075690000101 ], [ -123.406727184999951, 48.41813690500009 ], [ -123.407415200999978, 48.417881987000108 ], [ -123.4075551009999, 48.417892611000113 ], [ -123.407996609999927, 48.417926103000092 ], [ -123.408331513999954, 48.41775379700006 ], [ -123.408506398999975, 48.41751028800013 ], [ -123.408383592999968, 48.417276693000048 ], [ -123.408433612999957, 48.41697899600004 ], [ -123.408652968999945, 48.416762899000027 ], [ -123.408661981999927, 48.416753999000058 ], [ -123.408905405999974, 48.416734101000024 ], [ -123.409217094999974, 48.416949106000033 ], [ -123.409501200999927, 48.41692210300004 ], [ -123.409588225000022, 48.416868434000065 ], [ -123.409914465999989, 48.416867273000079 ], [ -123.409952684999922, 48.416898157000091 ], [ -123.41011668099999, 48.417030651000061 ], [ -123.410117971999966, 48.417191103000057 ], [ -123.410160912999956, 48.417192153000137 ], [ -123.410207708999977, 48.417386384000032 ], [ -123.410494102999948, 48.417674009000045 ], [ -123.410621385999917, 48.418357707000091 ], [ -123.410812991999933, 48.418572708000113 ], [ -123.411141336999961, 48.418562948000108 ], [ -123.411081889999963, 48.41964916300001 ], [ -123.411023989999961, 48.419659414000058 ], [ -123.410765403999932, 48.419543992000037 ], [ -123.410577603999982, 48.419652284000122 ], [ -123.410668627999939, 48.420056911000053 ], [ -123.41074549899993, 48.420398605000095 ], [ -123.411247699999933, 48.420757492000114 ], [ -123.411899623999929, 48.420952605000139 ], [ -123.412182998, 48.42093408800006 ], [ -123.412438315999964, 48.420805906000147 ], [ -123.41250686199993, 48.420636562000041 ], [ -123.412578550999953, 48.420636305000102 ], [ -123.412577678999966, 48.420528797000031 ], [ -123.412786800999953, 48.420426994000053 ], [ -123.412936703999947, 48.420508192000092 ], [ -123.412897587999964, 48.420831504000056 ], [ -123.413034805, 48.420875707000036 ], [ -123.41342440499993, 48.420613583000055 ], [ -123.413543381999929, 48.420344402000076 ], [ -123.41370407899997, 48.420253297000095 ], [ -123.413681297999972, 48.420092552000042 ], [ -123.413836540999924, 48.420091994000067 ], [ -123.413890537999947, 48.420068861000097 ], [ -123.414265572999952, 48.420090450000046 ], [ -123.414542036999961, 48.420089455000017 ], [ -123.41456672299995, 48.420089365000138 ], [ -123.414601657, 48.420110270000038 ], [ -123.414602465999948, 48.420209557000071 ], [ -123.41461023799998, 48.420217461000114 ], [ -123.414620144999986, 48.42035907000006 ], [ -123.415009144999928, 48.420357667000076 ], [ -123.415019841999978, 48.42167172900006 ], [ -123.414851616999954, 48.421760102000107 ], [ -123.415021330999963, 48.421854684000081 ], [ -123.415021520999986, 48.421877925000082 ], [ -123.414896078999973, 48.422255695000075 ], [ -123.415736608999936, 48.422359694000065 ], [ -123.415922517999959, 48.422035003000119 ], [ -123.416011486999977, 48.421973428000101 ], [ -123.416238755999956, 48.421972606000033 ], [ -123.416237483999936, 48.421817012000055 ], [ -123.416403495999958, 48.421702113000038 ], [ -123.416691707999973, 48.421701070000026 ], [ -123.416695415999982, 48.421633188000079 ], [ -123.416756205999931, 48.42161908700006 ], [ -123.416958797999939, 48.421419696000022 ], [ -123.417498394999939, 48.421399814000104 ], [ -123.417929712, 48.421245993000049 ], [ -123.418269104000018, 48.421388410000048 ], [ -123.418985490999901, 48.421367011000058 ], [ -123.419785696999952, 48.421653308000067 ], [ -123.419977197999984, 48.421930995000018 ], [ -123.420164614999933, 48.421948100000037 ], [ -123.420153385999981, 48.422073408000095 ], [ -123.419925208, 48.422254305000102 ], [ -123.419681687999955, 48.422274199000121 ], [ -123.41945300899998, 48.422400999000025 ], [ -123.419306510999917, 48.422742786000107 ], [ -123.418905098, 48.423113084000128 ], [ -123.418406515999919, 48.423249802000115 ], [ -123.418096980999934, 48.423547501 ], [ -123.41868752699996, 48.423901539000106 ], [ -123.418688649999964, 48.424038349000057 ], [ -123.418768838999966, 48.424084761000124 ], [ -123.418808144999943, 48.424122455000081 ], [ -123.419054533999926, 48.424121558000074 ], [ -123.419095037999966, 48.424145839000055 ], [ -123.419097122999986, 48.424399582000063 ], [ -123.419251538999944, 48.424547661000084 ], [ -123.419342737999926, 48.424757461000063 ], [ -123.419337637999959, 48.424958060000108 ], [ -123.419198574999925, 48.425352243000127 ], [ -123.419154097999964, 48.425389009000085 ], [ -123.419179239999963, 48.425407047000057 ], [ -123.419155736999983, 48.42547366100014 ], [ -123.419177697999913, 48.425925652000025 ], [ -123.419091696999928, 48.42602700700008 ], [ -123.41918649199999, 48.426143799000073 ], [ -123.419390108999963, 48.426206497000074 ], [ -123.419707043999935, 48.426008455000144 ], [ -123.420489903999936, 48.426005596000095 ], [ -123.420430911999929, 48.426148102000049 ], [ -123.420607118999953, 48.426283403000127 ], [ -123.420730397999975, 48.426181283000048 ], [ -123.420902884, 48.42603840000006 ], [ -123.42159939599992, 48.425731640000066 ], [ -123.421696531999984, 48.425731285000055 ], [ -123.421819103999937, 48.42577499100009 ], [ -123.421780099, 48.426054103000077 ], [ -123.421985093999965, 48.426188012000054 ], [ -123.422403412999955, 48.426078303000033 ], [ -123.422822685999947, 48.426076891000086 ], [ -123.422902306999944, 48.426058410000067 ], [ -123.42283291699998, 48.425843295000121 ], [ -123.422885371999925, 48.425726922000109 ], [ -123.422996390999955, 48.425726514000104 ], [ -123.423161640999965, 48.425537136000102 ], [ -123.423160528999944, 48.425403288000027 ], [ -123.423993481999958, 48.425251727000095 ], [ -123.424271634999926, 48.425201121000043 ], [ -123.42437523599996, 48.42518226200005 ], [ -123.424375749999982, 48.425244124000095 ], [ -123.424515137999919, 48.42527676100012 ], [ -123.424731090999927, 48.425450228000031 ], [ -123.424779935999965, 48.425450047000062 ], [ -123.424790819999913, 48.425457397000073 ], [ -123.425189352999908, 48.425552820000057 ], [ -123.425190278999978, 48.425663692000036 ], [ -123.425240636999959, 48.425682161000097 ], [ -123.425275038, 48.425750761000067 ], [ -123.425344938999913, 48.425847861000186 ], [ -123.425360338999965, 48.425987696000085 ], [ -123.425494533999938, 48.425987200000108 ], [ -123.425598672999982, 48.42600838900011 ], [ -123.425599432999903, 48.426099279000084 ], [ -123.425581106999957, 48.426175206000089 ], [ -123.425600159999973, 48.426186486000084 ], [ -123.425602071999961, 48.426415468000137 ], [ -123.425782437999928, 48.426434661000044 ], [ -123.42581356, 48.426525812000087 ], [ -123.425963489999972, 48.426525258000012 ], [ -123.425910296, 48.426767604000048 ], [ -123.426111589999934, 48.426739099000031 ], [ -123.426219100999958, 48.426478493000104 ], [ -123.426554709999976, 48.426279100000109 ], [ -123.427079701999958, 48.426159501000107 ], [ -123.428108293999969, 48.426264906000029 ], [ -123.42922129599998, 48.426827398000071 ], [ -123.430061687999952, 48.426994104000116 ], [ -123.430243647999973, 48.427410864000052 ], [ -123.430281792999963, 48.427498190000051 ], [ -123.430770289999941, 48.427793097000105 ], [ -123.431922407999977, 48.428013783000104 ], [ -123.432127191999882, 48.428210411000123 ], [ -123.432436388999974, 48.428191813000112 ], [ -123.432706007999982, 48.428046607000063 ], [ -123.432713565999961, 48.42800108800008 ], [ -123.432835987999951, 48.427263300000057 ], [ -123.433021617999884, 48.427001196000042 ], [ -123.433211387999947, 48.426937091000127 ], [ -123.433629303999922, 48.426945687000078 ], [ -123.434188200000023, 48.427365787000063 ], [ -123.434864404999985, 48.42741709000012 ], [ -123.434890586, 48.427433922000056 ], [ -123.435380617999954, 48.427748903000115 ], [ -123.435921512999968, 48.427800193000074 ], [ -123.436460609999983, 48.427528199000051 ], [ -123.436839078999967, 48.427545198000082 ], [ -123.43737020199994, 48.42796539400014 ], [ -123.437195521999925, 48.428208906000073 ], [ -123.437569726999982, 48.428978023000106 ], [ -123.437663286999978, 48.42917030700012 ], [ -123.437689697999929, 48.429379446000063 ], [ -123.437721199999928, 48.429628909000101 ], [ -123.437492404999915, 48.429818310000059 ], [ -123.437468097999954, 48.429999200000061 ], [ -123.437984612999983, 48.430294003000078 ], [ -123.438403106999942, 48.430363810000131 ], [ -123.438677118, 48.430632895000031 ], [ -123.439408691999986, 48.430809511000071 ], [ -123.439345903999978, 48.431449008000072 ], [ -123.439049780999966, 48.431602795000067 ], [ -123.438388790999952, 48.431749513000113 ], [ -123.438268993999984, 48.431866307000035 ], [ -123.438418792, 48.432010104000064 ], [ -123.438876989, 48.431971699000044 ], [ -123.438985408999912, 48.432079885000043 ], [ -123.438947004999946, 48.432215187000054 ], [ -123.438799389999929, 48.432287895000059 ], [ -123.43869510499999, 48.432675198000069 ], [ -123.438545984999948, 48.432765006000075 ], [ -123.438222399999944, 48.432793494000087 ], [ -123.437665504000023, 48.43257130900006 ], [ -123.437110288, 48.432518606000052 ], [ -123.436827976999936, 48.432601194000021 ], [ -123.436479305999953, 48.432881807000115 ], [ -123.43611471899996, 48.432972905000064 ], [ -123.435071216, 48.432760705000106 ], [ -123.435015693999944, 48.432635408000145 ], [ -123.434475201999945, 48.432682398000054 ], [ -123.433988897999924, 48.432567003000059 ], [ -123.434361511999967, 48.43359959500004 ], [ -123.434118683999912, 48.433636602000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "0.943999780651146", "sL_AssetLoss": "4376.59", "sL_BldgLoss": "4131.5", "sL_StrLoss": "3309.9", "sL_NStrLoss": "821.6", "sL_ContLoss": "245.09", "geom_point": "0101000020E6100000F8D43DF455E25EC0FD91757A56394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.535730833999949, 48.448467973000092 ], [ -123.535719477999962, 48.447388443000122 ], [ -123.536936491999981, 48.447382770000033 ], [ -123.53693933699995, 48.447652653 ], [ -123.537345011999889, 48.447650760000073 ], [ -123.537353551999985, 48.448460408000066 ], [ -123.535730833999949, 48.448467973000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12770834", "BldgCostT": "7333334", "sL_LossRatio": "0.877577412170415", "sL_AssetLoss": "13919", "sL_BldgLoss": "12215", "sL_StrLoss": "7854", "sL_NStrLoss": "4361", "sL_ContLoss": "1704", "geom_point": "0101000020E61000002A5DFA9724E25EC0C25F9BA632394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.532879217999934, 48.447348089000151 ], [ -123.532876953999946, 48.447131744000096 ], [ -123.532471285999932, 48.447133622000123 ], [ -123.53246282100001, 48.446323973000041 ], [ -123.534085472999948, 48.446316454000041 ], [ -123.534088303, 48.446586337000063 ], [ -123.534493966999946, 48.446584454000067 ], [ -123.53450246499996, 48.447394102000018 ], [ -123.532980511999966, 48.447401160000027 ], [ -123.53295458799991, 48.447381607000068 ], [ -123.532879217999934, 48.447348089000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59869750", "BldgCostT": "38110000", "sL_LossRatio": "0.783993268599634", "sL_AssetLoss": "80791.51", "sL_BldgLoss": "63340", "sL_StrLoss": "46527.3", "sL_NStrLoss": "16812.7", "sL_ContLoss": "17451.51", "geom_point": "0101000020E6100000C34A585DFFE25EC012C768BA2A394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.551520506999935, 48.450465024000032 ], [ -123.551546814999966, 48.449957101000066 ], [ -123.551435334999965, 48.449954524000141 ], [ -123.551551591999925, 48.447709967000044 ], [ -123.546583095999949, 48.447595003000096 ], [ -123.546616865999951, 48.44694429600009 ], [ -123.543058307999928, 48.446861813000041 ], [ -123.543083028999973, 48.446386143000012 ], [ -123.54174849099995, 48.446355179000093 ], [ -123.54179311199999, 48.445497061000069 ], [ -123.541466231999934, 48.44548947400007 ], [ -123.541550900999937, 48.443861266000106 ], [ -123.542154098999916, 48.44388050000007 ], [ -123.543476703999957, 48.444036509000071 ], [ -123.544096497999988, 48.444186212 ], [ -123.544564303999948, 48.444327802000025 ], [ -123.545113503999943, 48.444537097000136 ], [ -123.545633406999968, 48.444792593000074 ], [ -123.546085098, 48.444983407000123 ], [ -123.547483488999944, 48.445735294000094 ], [ -123.548730107999944, 48.446239396000131 ], [ -123.55142588199999, 48.447534415000099 ], [ -123.55255809099998, 48.447824795000031 ], [ -123.55261179199999, 48.44822090400006 ], [ -123.552681811999932, 48.448303698000075 ], [ -123.552767295999928, 48.448365546000012 ], [ -123.553177514999931, 48.448662302000116 ], [ -123.55332998199998, 48.448819107000055 ], [ -123.553451493999887, 48.449078900000075 ], [ -123.553484205999908, 48.449230299000128 ], [ -123.553466405999984, 48.449522904000112 ], [ -123.553264793999958, 48.450469500000096 ], [ -123.553264431999963, 48.450505319000115 ], [ -123.551520506999935, 48.450465024000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "581434719", "BldgCostT": "372855412", "sL_LossRatio": "0.874202550432942", "sL_AssetLoss": "1067105.1", "sL_BldgLoss": "932866", "sL_StrLoss": "694385", "sL_NStrLoss": "238481", "sL_ContLoss": "134239.1", "geom_point": "0101000020E6100000BFBEA46B05E25EC098A79D0EA2394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.54233341299999, 48.460110845000052 ], [ -123.541557304999984, 48.459818589000058 ], [ -123.541531220999943, 48.459808766000023 ], [ -123.541528005999908, 48.459506560000079 ], [ -123.540805515999963, 48.459509957000122 ], [ -123.540716019999948, 48.459467797000087 ], [ -123.540713604999922, 48.459240494000056 ], [ -123.540238250999963, 48.459242727000074 ], [ -123.540133230999984, 48.459193252 ], [ -123.539459539999939, 48.458795582000086 ], [ -123.539318276999921, 48.458712185000088 ], [ -123.538171103999929, 48.458034990000087 ], [ -123.537801404999954, 48.457823522000119 ], [ -123.537666294999909, 48.457748233000061 ], [ -123.537368650999923, 48.457579027000065 ], [ -123.537190770999942, 48.457469386000064 ], [ -123.537041885999969, 48.457377614000045 ], [ -123.537041787999954, 48.457368419000076 ], [ -123.537027079, 48.457368488000064 ], [ -123.536684533999932, 48.457157346000045 ], [ -123.536225239999965, 48.456893041000114 ], [ -123.53622460299999, 48.456832439000038 ], [ -123.536120770999943, 48.456832923 ], [ -123.535817001999959, 48.456658111000124 ], [ -123.53581601499999, 48.456564446000087 ], [ -123.535655538999947, 48.456565194000163 ], [ -123.535564499999936, 48.456512802000084 ], [ -123.534157474, 48.455703021000069 ], [ -123.531854833999944, 48.45437770000008 ], [ -123.531089512999969, 48.454039774000087 ], [ -123.530496076999952, 48.453848318000034 ], [ -123.530028318999925, 48.453758062000148 ], [ -123.529389777999967, 48.453707097000063 ], [ -123.528689297999961, 48.453729527000107 ], [ -123.528231060999957, 48.453792779000011 ], [ -123.527405429999973, 48.454015177 ], [ -123.526925327999948, 48.454174795000093 ], [ -123.527821893999942, 48.453485711000042 ], [ -123.527870694999976, 48.453250596000046 ], [ -123.528151709999946, 48.452729585000078 ], [ -123.528459200999947, 48.452709708000057 ], [ -123.528792301999914, 48.452225190000014 ], [ -123.528540135999904, 48.451963389000063 ], [ -123.527637406999986, 48.451026009000017 ], [ -123.527222395999956, 48.450752989000051 ], [ -123.526728898999949, 48.450509799000052 ], [ -123.526645921999943, 48.450477058000082 ], [ -123.525283404999954, 48.449939496000113 ], [ -123.525024749999957, 48.449851908000028 ], [ -123.524754215999934, 48.449760297000125 ], [ -123.523432493, 48.449532794000078 ], [ -123.522726209999959, 48.449281890000023 ], [ -123.522233822999979, 48.449146806000037 ], [ -123.521844013999925, 48.449115192000072 ], [ -123.521301906999952, 48.44915659600008 ], [ -123.52082027599999, 48.44928059300009 ], [ -123.520044887999944, 48.449483559000043 ], [ -123.519739117, 48.44956360200009 ], [ -123.519379722999957, 48.449609511000084 ], [ -123.519172405999953, 48.449635998000133 ], [ -123.518847764999961, 48.449656304000044 ], [ -123.518312503999979, 48.449689814000067 ], [ -123.518059607999959, 48.449673102000084 ], [ -123.518390475999951, 48.449081630000052 ], [ -123.518580904999979, 48.448741207000047 ], [ -123.518851411999933, 48.448268702000107 ], [ -123.519049313999943, 48.447918106000067 ], [ -123.51950023199997, 48.447118884000126 ], [ -123.518958667999968, 48.44698082300004 ], [ -123.518008496999968, 48.446738605000043 ], [ -123.515458703999983, 48.446072851000061 ], [ -123.514145032999934, 48.445746269000075 ], [ -123.51344689699999, 48.445572981000062 ], [ -123.510881902999984, 48.44491667800007 ], [ -123.510488986999931, 48.444817279000063 ], [ -123.510223136, 48.444816442000054 ], [ -123.509769655999946, 48.444918492000028 ], [ -123.50908092799996, 48.444771542000105 ], [ -123.509789577999967, 48.443643005000126 ], [ -123.510012889999956, 48.443221745000073 ], [ -123.51012098299995, 48.443017710000049 ], [ -123.510142501999894, 48.442977085000038 ], [ -123.510200188999988, 48.442868167000071 ], [ -123.510396681, 48.442494052000058 ], [ -123.510565528999933, 48.442172402000111 ], [ -123.510597733999987, 48.442111024000027 ], [ -123.510704232999942, 48.441907944000079 ], [ -123.510988563999945, 48.441429474000095 ], [ -123.51111435599995, 48.441218720000037 ], [ -123.511648052999959, 48.440309708 ], [ -123.512363521999973, 48.440497479 ], [ -123.512882101999978, 48.440633601000052 ], [ -123.513977896999961, 48.440916305 ], [ -123.515017507999971, 48.441166092000053 ], [ -123.5169809, 48.441426807000013 ], [ -123.517731114999961, 48.441504726000041 ], [ -123.520643392999943, 48.44180711100006 ], [ -123.520893700999977, 48.441833109000143 ], [ -123.521523935999966, 48.441882245000045 ], [ -123.521736414999936, 48.441898806000125 ], [ -123.522563417999905, 48.441904703 ], [ -123.523045591999988, 48.441845594000029 ], [ -123.523211005999926, 48.441729602000045 ], [ -123.523435928, 48.441861551000052 ], [ -123.523586720999972, 48.441949979000043 ], [ -123.523816676999971, 48.442084864000087 ], [ -123.524082877999916, 48.442240987000098 ], [ -123.524224396999927, 48.442324015000096 ], [ -123.524600591999899, 48.442434716000108 ], [ -123.524683320999898, 48.442446124000114 ], [ -123.525049473999957, 48.442496729000062 ], [ -123.52562161699997, 48.442575803000068 ], [ -123.526099783999882, 48.442617392000088 ], [ -123.526387413999942, 48.4426424010001 ], [ -123.526713512999919, 48.442625697000089 ], [ -123.526879518, 48.442561332000061 ], [ -123.527019370999966, 48.442507151000072 ], [ -123.527053807999948, 48.442493795000139 ], [ -123.527100495999932, 48.442468804000086 ], [ -123.528104153999948, 48.44204842200002 ], [ -123.52817258399989, 48.442019770000023 ], [ -123.528524906, 48.442048490000026 ], [ -123.528957373999944, 48.442062790000087 ], [ -123.529173085999943, 48.442062261000075 ], [ -123.529175459999976, 48.442290695000104 ], [ -123.52958109199993, 48.442288830000031 ], [ -123.529589507999958, 48.443098479000128 ], [ -123.530400782999919, 48.44309474300011 ], [ -123.530403593999921, 48.443364626000054 ], [ -123.531620510999943, 48.443359011000055 ], [ -123.531617694999937, 48.443089128000068 ], [ -123.53283460599999, 48.443083500000114 ], [ -123.532842787999968, 48.44386563200009 ], [ -123.532843075999963, 48.443893149000111 ], [ -123.532437433, 48.443895027000025 ], [ -123.532440252999905, 48.444164910000097 ], [ -123.531628961999928, 48.444168661000091 ], [ -123.531631778999966, 48.444438544000022 ], [ -123.531598641999935, 48.444438697000116 ], [ -123.529498663999945, 48.444448378000118 ], [ -123.529197887999914, 48.44444976200009 ], [ -123.52919657899993, 48.444323636000057 ], [ -123.529195084999969, 48.444179879000053 ], [ -123.528789438999922, 48.444181743000101 ], [ -123.528789532999951, 48.444190798000122 ], [ -123.528792240999977, 48.444451627000056 ], [ -123.528386591999961, 48.444453489000068 ], [ -123.528389391999923, 48.44472337200007 ], [ -123.528795042999946, 48.4447215100001 ], [ -123.528806736999925, 48.445848020000106 ], [ -123.528339907999936, 48.445846288000105 ], [ -123.528275291999933, 48.445964509000092 ], [ -123.528330820999955, 48.446073121000019 ], [ -123.528253634999913, 48.446073475000063 ], [ -123.528237556999954, 48.446380991000069 ], [ -123.52758380799996, 48.445850611000097 ], [ -123.527240504999924, 48.445437600000048 ], [ -123.52721119499995, 48.445241001000099 ], [ -123.527449505999954, 48.444555983000029 ], [ -123.527108891999887, 48.444422091000092 ], [ -123.526350103999931, 48.44429109400005 ], [ -123.526282812999938, 48.444318191000065 ], [ -123.526422691999954, 48.444766806000146 ], [ -123.525754111999959, 48.445427592000073 ], [ -123.525578105999941, 48.445409111000117 ], [ -123.525033604999948, 48.445105688000162 ], [ -123.52453171799999, 48.445027402000029 ], [ -123.524075377999949, 48.445290896000095 ], [ -123.522928903999968, 48.445655507000069 ], [ -123.522337876, 48.445928894000097 ], [ -123.521732718999914, 48.446263606000073 ], [ -123.521302810999984, 48.446625392000044 ], [ -123.521078308999932, 48.447120996000102 ], [ -123.521095784999957, 48.44756249200006 ], [ -123.52136980100002, 48.44775899400004 ], [ -123.52231901, 48.448024009000171 ], [ -123.522576609999987, 48.448167797000075 ], [ -123.523287006999908, 48.448938296000108 ], [ -123.526786882999929, 48.449911006000121 ], [ -123.527067011999961, 48.450055402000075 ], [ -123.527066754999964, 48.450060327000124 ], [ -123.527159625999971, 48.45010314000006 ], [ -123.527480407, 48.450268487000095 ], [ -123.527683800999981, 48.450302692000051 ], [ -123.528088293999986, 48.45017590100008 ], [ -123.528548697999938, 48.450262799000029 ], [ -123.528579895999968, 48.450739900000045 ], [ -123.528705818999924, 48.451017599000103 ], [ -123.528925409999914, 48.451359484000122 ], [ -123.529251818999967, 48.451528906000128 ], [ -123.529764616999913, 48.451444895000044 ], [ -123.530356887000025, 48.451091708000014 ], [ -123.530381997999925, 48.450974895000094 ], [ -123.529781594000013, 48.450383905000102 ], [ -123.529821026999969, 48.450275605000094 ], [ -123.530009998999915, 48.450319803000035 ], [ -123.53179440699995, 48.451517494000051 ], [ -123.533384412999965, 48.45223819500012 ], [ -123.535122105999946, 48.452886200000087 ], [ -123.535409078999976, 48.453163898000057 ], [ -123.535424094999939, 48.453307790000061 ], [ -123.535412514, 48.453497193000032 ], [ -123.535063698, 48.453867507000034 ], [ -123.535229096999984, 48.453974301000137 ], [ -123.53585188299995, 48.454206393000106 ], [ -123.536855200999966, 48.454371688 ], [ -123.537138699999986, 48.454334604000074 ], [ -123.53803958499999, 48.453746407000047 ], [ -123.538484377999978, 48.453653793000136 ], [ -123.538397194999931, 48.453195290000025 ], [ -123.538274793999975, 48.453069887 ], [ -123.538368510999987, 48.452953091000055 ], [ -123.538843310999965, 48.453004405000073 ], [ -123.539328214999969, 48.45285770600006 ], [ -123.539180078999948, 48.452634290000098 ], [ -123.539426319999947, 48.452640009000042 ], [ -123.53941625, 48.451689507000054 ], [ -123.539010544999911, 48.451691408000059 ], [ -123.538999119999971, 48.450611878000061 ], [ -123.539810512999978, 48.450608076000023 ], [ -123.539807652999983, 48.4503381930001 ], [ -123.54021334699992, 48.450336289000091 ], [ -123.540210485, 48.450066407000101 ], [ -123.541427559999974, 48.450060688000043 ], [ -123.541430429999949, 48.450330570000062 ], [ -123.542241819999958, 48.450326749000098 ], [ -123.542244692999958, 48.450596632000035 ], [ -123.542650388999945, 48.450594719000058 ], [ -123.542653264999984, 48.450864602000095 ], [ -123.543464660999959, 48.450860773000102 ], [ -123.543467540999956, 48.45113065500005 ], [ -123.544684642999968, 48.451124901000107 ], [ -123.544687528999987, 48.451394783000126 ], [ -123.545093231999928, 48.451392862000027 ], [ -123.545096119999982, 48.451662744000053 ], [ -123.545907528999948, 48.451658899000066 ], [ -123.545910423999914, 48.451928780000053 ], [ -123.54672183699995, 48.451924929000043 ], [ -123.546724732999948, 48.452194810000059 ], [ -123.54794186, 48.452189022000084 ], [ -123.547950572999966, 48.45299866800012 ], [ -123.549167716999989, 48.452992866000102 ], [ -123.549170627999956, 48.453262748000022 ], [ -123.549576344999934, 48.453260810000074 ], [ -123.549582168999976, 48.453800574000063 ], [ -123.551205054999983, 48.453792813000049 ], [ -123.551207976999976, 48.45406269500009 ], [ -123.552830868999948, 48.454054910000096 ], [ -123.552827939999986, 48.453785028000098 ], [ -123.553233660999979, 48.453783079000068 ], [ -123.553224864999905, 48.45297343400005 ], [ -123.553939166999939, 48.45296999800005 ], [ -123.553707834999955, 48.453333669000131 ], [ -123.553602340999959, 48.453540067000091 ], [ -123.553414959999941, 48.453906673000105 ], [ -123.552992881999941, 48.454289167000063 ], [ -123.552884527999936, 48.454374134000041 ], [ -123.552783600999959, 48.454628786000114 ], [ -123.552849905999949, 48.455825068000053 ], [ -123.552270297999925, 48.455807172000036 ], [ -123.551758001999985, 48.455715974000121 ], [ -123.551238898999941, 48.455521791000088 ], [ -123.551051699999945, 48.455409293000073 ], [ -123.550480807999961, 48.45496329300002 ], [ -123.550082114999924, 48.454710607000031 ], [ -123.549736804999966, 48.454601607000058 ], [ -123.549362890999973, 48.454549709000098 ], [ -123.548962700999965, 48.454561190000028 ], [ -123.548586987999983, 48.454646294000035 ], [ -123.548256416999948, 48.454774806000039 ], [ -123.54811415599994, 48.454869023000086 ], [ -123.548013101999913, 48.454935988000017 ], [ -123.54784038599999, 48.455115905000092 ], [ -123.547474704, 48.455790903000036 ], [ -123.546616813999947, 48.457364388000052 ], [ -123.546543707999916, 48.457679206000087 ], [ -123.546563277999937, 48.457924314000131 ], [ -123.546570698999972, 48.458017006000063 ], [ -123.546792902, 48.458391891000069 ], [ -123.547139083000019, 48.458693801000074 ], [ -123.547443698, 48.458860502000078 ], [ -123.5478408, 48.459012105000113 ], [ -123.548352911999984, 48.459108802000053 ], [ -123.54881491499998, 48.459102298000104 ], [ -123.549353203999928, 48.459032706000094 ], [ -123.54963253299999, 48.459946279000057 ], [ -123.548490375999961, 48.460101994000119 ], [ -123.548311348999931, 48.460091537000032 ], [ -123.548132545999962, 48.460284862000044 ], [ -123.547327351999911, 48.460268948000049 ], [ -123.546884677999984, 48.46021361100005 ], [ -123.546344627999986, 48.460083872000027 ], [ -123.545987960999952, 48.460046719000111 ], [ -123.545877308999977, 48.460035197000089 ], [ -123.544709939000015, 48.460026188000086 ], [ -123.544153117999883, 48.46004197700006 ], [ -123.543835115999968, 48.460050983000073 ], [ -123.543593195999989, 48.460107594000114 ], [ -123.543403355999942, 48.460227641000102 ], [ -123.542876588999917, 48.460270959000098 ], [ -123.54233341299999, 48.460110845000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59338668", "BldgCostT": "36061668", "sL_LossRatio": "0.782823118960527", "sL_AssetLoss": "95848.6", "sL_BldgLoss": "75032.5", "sL_StrLoss": "52620.8", "sL_NStrLoss": "22411.7", "sL_ContLoss": "20816.1", "geom_point": "0101000020E61000003437AD4E6DD85EC02C14B7448D3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37849750099997, 48.497710585000029 ], [ -123.37808818699996, 48.497658099000034 ], [ -123.377677551999938, 48.497658842000085 ], [ -123.375574596999954, 48.497662687000066 ], [ -123.375017816999915, 48.497663289000123 ], [ -123.373354286999984, 48.49766449600007 ], [ -123.373382050999936, 48.497589298000037 ], [ -123.373398789999925, 48.497543910000047 ], [ -123.373439856999966, 48.497441056000135 ], [ -123.373584096999977, 48.49707961400005 ], [ -123.373703708999955, 48.496969803000042 ], [ -123.373894483999933, 48.496891594 ], [ -123.374434987999933, 48.496819310000078 ], [ -123.37483076800001, 48.496765793000073 ], [ -123.375691693999954, 48.496649411000121 ], [ -123.375728166999977, 48.496631969000063 ], [ -123.376142236999925, 48.496434101000105 ], [ -123.376513518999943, 48.496256697000071 ], [ -123.376895113999979, 48.496145656000074 ], [ -123.377227674999943, 48.496048901000115 ], [ -123.378094982, 48.49588190000005 ], [ -123.380191514000032, 48.495552305000089 ], [ -123.380954614999951, 48.495388101000117 ], [ -123.383679607, 48.494614989000077 ], [ -123.384090695999944, 48.494438514000052 ], [ -123.384466491999959, 48.494167302000115 ], [ -123.38478148899999, 48.493846895000047 ], [ -123.385047182000037, 48.493465699000048 ], [ -123.385265206999932, 48.493236586000066 ], [ -123.385709893999916, 48.492965390000094 ], [ -123.38595318299997, 48.492890197000051 ], [ -123.38605628899991, 48.492292534000093 ], [ -123.38632221499995, 48.492911227000079 ], [ -123.386379698999932, 48.493045006000095 ], [ -123.386535125999913, 48.493679994000104 ], [ -123.38649127799999, 48.494276806000059 ], [ -123.386139484999944, 48.495261808000073 ], [ -123.385288795999941, 48.497496881000117 ], [ -123.385098889999981, 48.498118905000133 ], [ -123.384995819999986, 48.498784504000078 ], [ -123.384988518999975, 48.498892500000125 ], [ -123.384577512999954, 48.498861659000106 ], [ -123.384308913999959, 48.49884148800006 ], [ -123.383669354999967, 48.498796782000106 ], [ -123.383572607999938, 48.498789996000028 ], [ -123.382428177999913, 48.498713990000105 ], [ -123.381618193999913, 48.498504614000083 ], [ -123.379947380999965, 48.49807560600005 ], [ -123.379468699999933, 48.497953191000093 ], [ -123.379439790999982, 48.497945792000067 ], [ -123.37849750099997, 48.497710585000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82796052", "BldgCostT": "52338745", "sL_LossRatio": "0.775548684117625", "sL_AssetLoss": "441893.6", "sL_BldgLoss": "342710", "sL_StrLoss": "199028", "sL_NStrLoss": "143682", "sL_ContLoss": "99183.6", "geom_point": "0101000020E6100000DFCD110120DA5EC07C84E4AE6F524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.408840479999981, 48.640440292000015 ], [ -123.410912902999925, 48.640464588000036 ], [ -123.411707206999907, 48.640637190000049 ], [ -123.411650485999971, 48.641298399000036 ], [ -123.410855312999942, 48.641289898000082 ], [ -123.410843992999943, 48.641963005000051 ], [ -123.410802480999934, 48.642102597000125 ], [ -123.410679287999983, 48.642247496000074 ], [ -123.410657710999985, 48.642334404000067 ], [ -123.41062250499999, 48.642476169000041 ], [ -123.410620115999961, 48.642485805000014 ], [ -123.410633403999952, 48.642908900000066 ], [ -123.410637712, 48.643323692000124 ], [ -123.410823788999977, 48.643933088 ], [ -123.41084520299999, 48.644183405000042 ], [ -123.410813600999973, 48.644487299000062 ], [ -123.407473324999984, 48.644493410000059 ], [ -123.40701, 48.644495386000074 ], [ -123.40678051899998, 48.644496351000079 ], [ -123.406356277999919, 48.644594198000092 ], [ -123.40615415799999, 48.64470078000015 ], [ -123.406068687999905, 48.644745828000012 ], [ -123.405854841999925, 48.644936248000079 ], [ -123.405707943, 48.645167049000051 ], [ -123.405664498999954, 48.645389558 ], [ -123.405704672999946, 48.645595162000085 ], [ -123.406111027999955, 48.646461495000068 ], [ -123.406234223999959, 48.646660999000041 ], [ -123.40640549299998, 48.646824749000068 ], [ -123.406645627999964, 48.646968511000118 ], [ -123.406777185999943, 48.647016742000048 ], [ -123.406940619999915, 48.647076682000034 ], [ -123.408964837, 48.647414449000081 ], [ -123.40928775899999, 48.647581887000044 ], [ -123.409480611, 48.647772264000011 ], [ -123.409562760000014, 48.647954573000071 ], [ -123.409575980999989, 48.648132478 ], [ -123.409333239999938, 48.64887300400008 ], [ -123.408509777999953, 48.648859288000025 ], [ -123.408212768999974, 48.648857382000102 ], [ -123.407151876999933, 48.648850497000112 ], [ -123.407058593999935, 48.648850503000041 ], [ -123.406931003999972, 48.648850496000072 ], [ -123.405894980999932, 48.647355893000068 ], [ -123.405729688999941, 48.647070633000077 ], [ -123.40544947799999, 48.646587045000111 ], [ -123.405335496999925, 48.646390305000132 ], [ -123.405149094999956, 48.645764610000157 ], [ -123.405145179999948, 48.645716132000139 ], [ -123.405118518, 48.645385298000029 ], [ -123.405129234999919, 48.645256113000052 ], [ -123.40517090299997, 48.644754614000085 ], [ -123.405251650999929, 48.644536442000103 ], [ -123.405351829, 48.644265711000116 ], [ -123.405438392999912, 48.644031802000022 ], [ -123.405696527999979, 48.643506295000151 ], [ -123.40653944799999, 48.641778428000059 ], [ -123.40676858499998, 48.641308727000059 ], [ -123.406950794999929, 48.641307463000047 ], [ -123.407805190999966, 48.641298496000111 ], [ -123.408828714, 48.641294607000148 ], [ -123.408840479999981, 48.640440292000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173546417", "BldgCostT": "117511667", "sL_LossRatio": "0.807233208956973", "sL_AssetLoss": "1066387", "sL_BldgLoss": "860823", "sL_StrLoss": "491128", "sL_NStrLoss": "369695", "sL_ContLoss": "205564", "geom_point": "0101000020E61000009F8944FC5EDA5EC0B234BFB3A0514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40700296199999, 48.640828246000098 ], [ -123.408466537, 48.637825820000081 ], [ -123.409608066999951, 48.635483711000063 ], [ -123.409784071999965, 48.635481450000022 ], [ -123.410806663999935, 48.635468432000067 ], [ -123.417094159999962, 48.635388067000072 ], [ -123.417190932999986, 48.635664595000073 ], [ -123.417510071999985, 48.636576416000047 ], [ -123.417724645999925, 48.637202485000046 ], [ -123.417785782999914, 48.637380914000126 ], [ -123.41795369099999, 48.638075535000034 ], [ -123.41713870699999, 48.638074771000014 ], [ -123.415869284999971, 48.638073614000078 ], [ -123.415605690999911, 48.638080807000058 ], [ -123.415429730999961, 48.638085626000084 ], [ -123.415415995999979, 48.638086 ], [ -123.412719220999975, 48.638101840000026 ], [ -123.412190005999918, 48.63809318800002 ], [ -123.411450484999946, 48.63808339900001 ], [ -123.411395221999925, 48.638497610000087 ], [ -123.411417404999938, 48.638809199 ], [ -123.411445392999937, 48.639310186000117 ], [ -123.411853185999945, 48.639781609000131 ], [ -123.412136296999947, 48.639980500000078 ], [ -123.412289197999939, 48.640159106000112 ], [ -123.411881607999959, 48.640372789000054 ], [ -123.411707206999907, 48.640637190000049 ], [ -123.410912902999925, 48.640464588000036 ], [ -123.408840479999981, 48.640440292000015 ], [ -123.408828714, 48.641294607000148 ], [ -123.407805190999966, 48.641298496000111 ], [ -123.406950794999929, 48.641307463000047 ], [ -123.40676858499998, 48.641308727000059 ], [ -123.406979161999942, 48.640877065000062 ], [ -123.40700296199999, 48.640828246000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81696334", "BldgCostT": "53898334", "sL_LossRatio": "0.778913323305661", "sL_AssetLoss": "553136", "sL_BldgLoss": "430845", "sL_StrLoss": "235633", "sL_NStrLoss": "195212", "sL_ContLoss": "122291", "geom_point": "0101000020E61000006F4F0CA08ADA5EC07A1B1F56CD514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.412289197999939, 48.640159106000112 ], [ -123.412136296999947, 48.639980500000078 ], [ -123.411853185999945, 48.639781609000131 ], [ -123.411445392999937, 48.639310186000117 ], [ -123.411417404999938, 48.638809199 ], [ -123.411395221999925, 48.638497610000087 ], [ -123.411450484999946, 48.63808339900001 ], [ -123.412190005999918, 48.63809318800002 ], [ -123.412719220999975, 48.638101840000026 ], [ -123.415415995999979, 48.638086 ], [ -123.415429730999961, 48.638085626000084 ], [ -123.415605690999911, 48.638080807000058 ], [ -123.415869284999971, 48.638073614000078 ], [ -123.41713870699999, 48.638074771000014 ], [ -123.41795369099999, 48.638075535000034 ], [ -123.417999359999925, 48.638403046000128 ], [ -123.417960066999939, 48.638947414000071 ], [ -123.417883989999922, 48.639222320000059 ], [ -123.417502083999977, 48.640130769000024 ], [ -123.416943705999969, 48.640105492000089 ], [ -123.416183813999979, 48.640121295000114 ], [ -123.414973306999968, 48.640148686000025 ], [ -123.412289197999939, 48.640159106000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100294750", "BldgCostT": "67015000", "sL_LossRatio": "0.800406337838784", "sL_AssetLoss": "542898", "sL_BldgLoss": "434539", "sL_StrLoss": "256509", "sL_NStrLoss": "178030", "sL_ContLoss": "108359", "geom_point": "0101000020E61000002F33AEB0C7DF5EC011D67390DF364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.494501150999952, 48.430047028000089 ], [ -123.493499311, 48.428734195000096 ], [ -123.493454516999975, 48.428675501000029 ], [ -123.493067918999927, 48.428361362000061 ], [ -123.492746878999966, 48.42810052100004 ], [ -123.491878641999975, 48.427372578000124 ], [ -123.491780646999956, 48.427290396000018 ], [ -123.4913718009999, 48.426916365000096 ], [ -123.49111281099999, 48.426679405000051 ], [ -123.490582875, 48.426292615000058 ], [ -123.490792820999943, 48.425844002000076 ], [ -123.491331071, 48.425031600000096 ], [ -123.492902311999927, 48.425423288000104 ], [ -123.493509229999958, 48.425574413000106 ], [ -123.493770038999955, 48.425639347000107 ], [ -123.494934648999958, 48.425929295000145 ], [ -123.495043482999918, 48.425956398000011 ], [ -123.49553618500002, 48.426079001000041 ], [ -123.500143200999943, 48.427216234000127 ], [ -123.50072351299994, 48.427411686000049 ], [ -123.500987928999933, 48.427437793000074 ], [ -123.500756079999974, 48.427885892000091 ], [ -123.500655111999919, 48.428080968000053 ], [ -123.500334268999936, 48.428701060000044 ], [ -123.500361123999966, 48.428765742000088 ], [ -123.500370157999924, 48.428787562000146 ], [ -123.50050943799999, 48.428858475000013 ], [ -123.501331620999963, 48.429054877000041 ], [ -123.501404447, 48.42907226300008 ], [ -123.501682707999962, 48.429138701000085 ], [ -123.50202137799999, 48.429219602000067 ], [ -123.502164330999932, 48.429253744000079 ], [ -123.502394127999978, 48.428990444000078 ], [ -123.502523440999965, 48.429353629000062 ], [ -123.502650260999985, 48.429709779000106 ], [ -123.50211962499999, 48.429895634000033 ], [ -123.501505875999953, 48.430229039000103 ], [ -123.500005336999891, 48.431044173000082 ], [ -123.499776296999954, 48.431165010000079 ], [ -123.499146802999974, 48.431477852000036 ], [ -123.498743879999907, 48.431678068000053 ], [ -123.498421711999981, 48.431818598000078 ], [ -123.497445578999958, 48.432244356000055 ], [ -123.497071568999928, 48.43237195600004 ], [ -123.49682029399996, 48.432457700000029 ], [ -123.49590689199999, 48.432762619000115 ], [ -123.49576008299999, 48.432856977000078 ], [ -123.495745941999971, 48.432794062000013 ], [ -123.495690051999944, 48.432605367000086 ], [ -123.495634296999981, 48.432434679000075 ], [ -123.495520705999965, 48.43223220200008 ], [ -123.495378482999968, 48.431783407000054 ], [ -123.495266190999956, 48.431483095000054 ], [ -123.49517117299996, 48.431234270000047 ], [ -123.495020903999958, 48.430840685000064 ], [ -123.494818276999979, 48.430462599000045 ], [ -123.494501150999952, 48.430047028000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188335335", "BldgCostT": "116203335", "sL_LossRatio": "0.795541792724239", "sL_AssetLoss": "673634", "sL_BldgLoss": "535904", "sL_StrLoss": "318259", "sL_NStrLoss": "217645", "sL_ContLoss": "137730", "geom_point": "0101000020E6100000DAE7FF8FF2DF5EC0BD9590D54E364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.502650260999985, 48.429709779000106 ], [ -123.502523440999965, 48.429353629000062 ], [ -123.502394127999978, 48.428990444000078 ], [ -123.502164330999932, 48.429253744000079 ], [ -123.50202137799999, 48.429219602000067 ], [ -123.501682707999962, 48.429138701000085 ], [ -123.501404447, 48.42907226300008 ], [ -123.501331620999963, 48.429054877000041 ], [ -123.50050943799999, 48.428858475000013 ], [ -123.500370157999924, 48.428787562000146 ], [ -123.500361123999966, 48.428765742000088 ], [ -123.500334268999936, 48.428701060000044 ], [ -123.500655111999919, 48.428080968000053 ], [ -123.500756079999974, 48.427885892000091 ], [ -123.500987928999933, 48.427437793000074 ], [ -123.50072351299994, 48.427411686000049 ], [ -123.500143200999943, 48.427216234000127 ], [ -123.49553618500002, 48.426079001000041 ], [ -123.495043482999918, 48.425956398000011 ], [ -123.494934648999958, 48.425929295000145 ], [ -123.493770038999955, 48.425639347000107 ], [ -123.493509229999958, 48.425574413000106 ], [ -123.492902311999927, 48.425423288000104 ], [ -123.491331071, 48.425031600000096 ], [ -123.491653940999981, 48.424458194000039 ], [ -123.492011452999961, 48.423823125000041 ], [ -123.492255705999952, 48.423389265000019 ], [ -123.492865113999969, 48.422306802000044 ], [ -123.493030119999958, 48.422027188000065 ], [ -123.49310228899999, 48.421904807000068 ], [ -123.49339710799994, 48.421764796000041 ], [ -123.494345798999973, 48.421478792000109 ], [ -123.494721604999938, 48.421311006000074 ], [ -123.494986313999931, 48.421100806000034 ], [ -123.495112708999898, 48.420955887000069 ], [ -123.495430384999963, 48.420484603000055 ], [ -123.495514412999967, 48.420223294000031 ], [ -123.495535206999975, 48.41998299300014 ], [ -123.495407008999933, 48.419575981000023 ], [ -123.497945585999972, 48.420064312000143 ], [ -123.498639598999929, 48.420207012000041 ], [ -123.499020002999899, 48.42033500100014 ], [ -123.499242176999985, 48.420417807000099 ], [ -123.50009777899993, 48.42092229500004 ], [ -123.500630482999952, 48.421130510000069 ], [ -123.501182504999974, 48.421150804000078 ], [ -123.50170097699997, 48.421090897000042 ], [ -123.502767699999936, 48.421199886000075 ], [ -123.503904192, 48.421385045000122 ], [ -123.504256364999932, 48.421442424000084 ], [ -123.504440257999988, 48.421460269000121 ], [ -123.504543267999978, 48.42150113100012 ], [ -123.504638453999974, 48.421538900000023 ], [ -123.504755299999943, 48.421625519000102 ], [ -123.504961942999955, 48.42192795600009 ], [ -123.505008356999895, 48.422198686000023 ], [ -123.505024077999963, 48.422284688000069 ], [ -123.505236705999948, 48.422421405000058 ], [ -123.504918128, 48.422865606000073 ], [ -123.50469359499999, 48.42317871200008 ], [ -123.504490084999986, 48.423328099000059 ], [ -123.503853706999948, 48.423628686000079 ], [ -123.503639188999927, 48.423805791000063 ], [ -123.503581441, 48.423910903000035 ], [ -123.503549695999979, 48.423968697000149 ], [ -123.50352619799996, 48.424107901000056 ], [ -123.50358599499998, 48.424368777000112 ], [ -123.503634719999937, 48.424581209000102 ], [ -123.503615689999961, 48.424687206000051 ], [ -123.503322888999932, 48.425250198000114 ], [ -123.50327698800001, 48.425506097000088 ], [ -123.503317492999912, 48.425811023000051 ], [ -123.503401715999971, 48.426057301000029 ], [ -123.503586489999975, 48.426338510000093 ], [ -123.503701321000037, 48.426413408000045 ], [ -123.504222987999981, 48.42655010500004 ], [ -123.505511215999931, 48.426861800000111 ], [ -123.505432780999939, 48.427017796000037 ], [ -123.505289902999962, 48.427986509000114 ], [ -123.505334628999933, 48.428240122000048 ], [ -123.505535335999966, 48.428655110000115 ], [ -123.505513337999957, 48.428868306000027 ], [ -123.505411708999986, 48.429028221000095 ], [ -123.504867439999984, 48.42929492600009 ], [ -123.504538234, 48.429524321000073 ], [ -123.503696852999937, 48.42948825400002 ], [ -123.503112256999927, 48.429571854000116 ], [ -123.503085601999928, 48.429579531000066 ], [ -123.502753259999963, 48.429675221000068 ], [ -123.502650260999985, 48.429709779000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81397334", "BldgCostT": "50953334", "sL_LossRatio": "0.908917106794131", "sL_AssetLoss": "144730.8", "sL_BldgLoss": "131548.3", "sL_StrLoss": "103963.3", "sL_NStrLoss": "27585", "sL_ContLoss": "13182.5", "geom_point": "0101000020E6100000CE5803ADA3DE5EC0CF7BEFB1EC3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.476910553999986, 48.487870351000026 ], [ -123.47695797099999, 48.486982728000058 ], [ -123.476424888999929, 48.486970041000127 ], [ -123.476469458999958, 48.486135882000063 ], [ -123.476451039999972, 48.486135444000062 ], [ -123.47645966099999, 48.485974094000049 ], [ -123.476037977999965, 48.485975839000112 ], [ -123.476043029999943, 48.486515605000093 ], [ -123.47563704199996, 48.486517284000051 ], [ -123.475639567000016, 48.486787167000031 ], [ -123.474421598999967, 48.48679219400006 ], [ -123.474411529999969, 48.485712660000083 ], [ -123.474817510999969, 48.485710986000079 ], [ -123.474814991999949, 48.485441103000113 ], [ -123.47522096899999, 48.485439427000074 ], [ -123.47521844799995, 48.485169544000073 ], [ -123.47650293099997, 48.485164234000059 ], [ -123.476601818999981, 48.483313274000089 ], [ -123.472789377999902, 48.483222455000011 ], [ -123.472982092000024, 48.479620286000078 ], [ -123.478378092999932, 48.479748789000027 ], [ -123.478335591999908, 48.480544956000131 ], [ -123.482148507999923, 48.480635592000091 ], [ -123.482128261999947, 48.481015385000049 ], [ -123.482839405999954, 48.481032275000047 ], [ -123.48282414099999, 48.481318744000127 ], [ -123.483309305999953, 48.481330263000089 ], [ -123.483290491999966, 48.481683376000113 ], [ -123.483584516999926, 48.481690357000055 ], [ -123.483568481999924, 48.481991366000017 ], [ -123.483866924999958, 48.481998450000063 ], [ -123.483785589, 48.483525324000055 ], [ -123.483909014999966, 48.483528254000099 ], [ -123.483717116, 48.487130419000074 ], [ -123.483264342000012, 48.487119672000098 ], [ -123.483220839999902, 48.487936029000124 ], [ -123.48231199699994, 48.487914451000037 ], [ -123.482307507999934, 48.487998651000041 ], [ -123.476910553999986, 48.487870351000026 ] ], [ [ -123.481950615999963, 48.483602106000042 ], [ -123.481508108999961, 48.482694890000104 ], [ -123.481572709999966, 48.482200708000086 ], [ -123.481267785999975, 48.481625296000161 ], [ -123.479518387999946, 48.481227993000111 ], [ -123.479167412999985, 48.481229389000134 ], [ -123.479129182999955, 48.481527093000082 ], [ -123.479458606999955, 48.481957204000025 ], [ -123.480860400999973, 48.482895684 ], [ -123.480999192999903, 48.483147789000093 ], [ -123.481257210999971, 48.483236098000077 ], [ -123.481492715999934, 48.48388270000008 ], [ -123.481656000999948, 48.484026499000052 ], [ -123.481764300999885, 48.484025103000079 ], [ -123.481925503999932, 48.483844186000098 ], [ -123.481950615999963, 48.483602106000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22189833", "BldgCostT": "15303333", "sL_LossRatio": "0.98221442165015", "sL_AssetLoss": "24328.7", "sL_BldgLoss": "23896", "sL_StrLoss": "21957", "sL_NStrLoss": "1939", "sL_ContLoss": "432.7", "geom_point": "0101000020E6100000F9250B2DE5DD5EC020F5CFBA633E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.464238840999926, 48.490316138000018 ], [ -123.463803268999968, 48.488911236000042 ], [ -123.463840001999955, 48.488722497000083 ], [ -123.464355698999938, 48.488302007000044 ], [ -123.464507719, 48.48798739700004 ], [ -123.46453458799995, 48.487813092000088 ], [ -123.46449902099999, 48.487595806000108 ], [ -123.464294299999906, 48.487382600000068 ], [ -123.464010708, 48.487229785000068 ], [ -123.463499951999935, 48.486691725000064 ], [ -123.464420061999959, 48.486713735000052 ], [ -123.464515233999961, 48.484940895000094 ], [ -123.469911818999933, 48.485069827000082 ], [ -123.469844193999947, 48.486332243000092 ], [ -123.470551171999944, 48.486349114000056 ], [ -123.470543326999945, 48.4864955910001 ], [ -123.4716037419999, 48.486520886000086 ], [ -123.471512655, 48.488222349000097 ], [ -123.47064821299989, 48.487805008000123 ], [ -123.470214008999932, 48.48767250800006 ], [ -123.469485306999914, 48.487765108000112 ], [ -123.469138199999975, 48.488360392000075 ], [ -123.468655211999973, 48.488901593000058 ], [ -123.467206400999927, 48.488692206000032 ], [ -123.466324510999925, 48.488398900000092 ], [ -123.466121686999927, 48.488444401000052 ], [ -123.466167307999967, 48.489055398000048 ], [ -123.466537591999952, 48.489504009000072 ], [ -123.466699597999963, 48.48958379500003 ], [ -123.467471202999945, 48.489590895000042 ], [ -123.468176903, 48.489759012000022 ], [ -123.469075278, 48.490348597000043 ], [ -123.469359284999953, 48.490437894000138 ], [ -123.467823099999947, 48.490401217000077 ], [ -123.467823068999962, 48.490401800000051 ], [ -123.464238840999926, 48.490316138000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29263334", "BldgCostT": "17233334", "sL_LossRatio": "0.938494697567013", "sL_AssetLoss": "17806.92", "sL_BldgLoss": "16711.7", "sL_StrLoss": "13017", "sL_NStrLoss": "3694.7", "sL_ContLoss": "1095.22", "geom_point": "0101000020E6100000CE407E991CDE5EC01F93FFA8513F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.474868323999914, 48.497765125000086 ], [ -123.470791708999911, 48.495093779000108 ], [ -123.464047334999989, 48.493669285000045 ], [ -123.464365612, 48.493232643000042 ], [ -123.465125380999964, 48.492794477000146 ], [ -123.465185411000022, 48.492558925000083 ], [ -123.465137293999973, 48.492486849000102 ], [ -123.467140563, 48.492534722000102 ], [ -123.467129831999955, 48.49273478300006 ], [ -123.467775551999978, 48.492750206000046 ], [ -123.467710680999943, 48.493959967000151 ], [ -123.472719948999924, 48.494079479000064 ], [ -123.472705646999941, 48.494346714000102 ], [ -123.473739628999965, 48.494371353000126 ], [ -123.473727627999949, 48.494595689000114 ], [ -123.474971698999937, 48.494625321000022 ], [ -123.474806389, 48.497716654000023 ], [ -123.475036329999966, 48.497722130000035 ], [ -123.474868323999914, 48.497765125000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197922417", "BldgCostT": "129161667", "sL_LossRatio": "0.924655707810453", "sL_AssetLoss": "225755.92", "sL_BldgLoss": "208746.5", "sL_StrLoss": "180526.4", "sL_NStrLoss": "28220.1", "sL_ContLoss": "17009.42", "geom_point": "0101000020E61000007FB3AC7FC0DD5EC04B97727CBC3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.458288491999951, 48.465934213000018 ], [ -123.457140418999984, 48.465237588000079 ], [ -123.457130497999955, 48.465229935000117 ], [ -123.456919996999957, 48.465067308000116 ], [ -123.456838850999972, 48.464914139000037 ], [ -123.45673610299994, 48.464720200000023 ], [ -123.456690303999977, 48.464493691 ], [ -123.456741379, 48.463921618000043 ], [ -123.456744709999953, 48.463884489000058 ], [ -123.456706912999934, 48.463256903000058 ], [ -123.45655848899996, 48.462301188 ], [ -123.456592277999903, 48.462049494000105 ], [ -123.456586399999978, 48.461997457000109 ], [ -123.456574012999965, 48.461887603000044 ], [ -123.456478587999925, 48.461778897000102 ], [ -123.456353806999957, 48.461733761000055 ], [ -123.456299809999933, 48.46171420400006 ], [ -123.456172012999929, 48.461703895000085 ], [ -123.455993816999964, 48.461725315000137 ], [ -123.45399489799992, 48.461965502000062 ], [ -123.453920208999961, 48.461978773000048 ], [ -123.45357502499995, 48.462040102000074 ], [ -123.453310192999965, 48.462142897000071 ], [ -123.45306663299999, 48.462281972000042 ], [ -123.45248128799993, 48.462616195000095 ], [ -123.451909689999965, 48.46287570000009 ], [ -123.451345901999943, 48.463089314000094 ], [ -123.450118007999905, 48.46344938700004 ], [ -123.45010557199997, 48.463453605000041 ], [ -123.449807203, 48.463554590000086 ], [ -123.449311137, 48.463763612000065 ], [ -123.448956724999988, 48.46395162300005 ], [ -123.448771048, 48.464078075000039 ], [ -123.448709951999959, 48.464119715000059 ], [ -123.447912980999973, 48.464875087000088 ], [ -123.447669417999947, 48.465034262000081 ], [ -123.447378658999952, 48.465142667000087 ], [ -123.447022655999916, 48.465183684000067 ], [ -123.446727222999982, 48.46515313000009 ], [ -123.446474100999922, 48.465089308000039 ], [ -123.446111001999952, 48.464859528 ], [ -123.446088938999949, 48.464845578000045 ], [ -123.446108719999955, 48.464830082000098 ], [ -123.446436405999975, 48.464573828000098 ], [ -123.446480120999979, 48.464539647000045 ], [ -123.446927799999955, 48.464189506000061 ], [ -123.447335683999967, 48.463850053000073 ], [ -123.447659987999913, 48.463580137000058 ], [ -123.44771541199998, 48.463534011000029 ], [ -123.447872301999965, 48.463424758000016 ], [ -123.448203595, 48.463194106000032 ], [ -123.448833291999932, 48.462959509000058 ], [ -123.449165119999975, 48.462892604000089 ], [ -123.44977362799996, 48.462767202000066 ], [ -123.450544214999937, 48.462608407000104 ], [ -123.451617988999956, 48.462225708000112 ], [ -123.451830555999905, 48.462116618000032 ], [ -123.451980947999971, 48.462039439000115 ], [ -123.45226090599999, 48.461895795 ], [ -123.452480780999949, 48.461748695000018 ], [ -123.453264853999912, 48.46168191400006 ], [ -123.453369065999965, 48.461602361000118 ], [ -123.453524151999957, 48.461480737000024 ], [ -123.454231690999976, 48.460930899000083 ], [ -123.454390809999907, 48.460807234000114 ], [ -123.454993112999972, 48.460480086000125 ], [ -123.455139394999946, 48.460400618000094 ], [ -123.455561407999966, 48.460171373000072 ], [ -123.455802520999939, 48.460040399000043 ], [ -123.456583428999963, 48.459644365000059 ], [ -123.456906038999975, 48.459480773000031 ], [ -123.457531296999932, 48.459100792000065 ], [ -123.457587614999966, 48.459051152000086 ], [ -123.457946578999923, 48.458734817000078 ], [ -123.458172801, 48.458395700000096 ], [ -123.458338893999951, 48.458142707000064 ], [ -123.458659588, 48.457327128000031 ], [ -123.458895004999945, 48.456715110000047 ], [ -123.459006580999926, 48.456472494000103 ], [ -123.459050903999966, 48.456404051000057 ], [ -123.459054548000012, 48.456398417000095 ], [ -123.459361897999912, 48.456462387000052 ], [ -123.459852079999905, 48.456667495000033 ], [ -123.461407790999957, 48.456849797000103 ], [ -123.462814794999957, 48.456871112000044 ], [ -123.463410813999971, 48.456770001000102 ], [ -123.463761093999935, 48.456651804000103 ], [ -123.463916793999971, 48.456083598000056 ], [ -123.463807097999961, 48.455716113000044 ], [ -123.464572694, 48.455217607000044 ], [ -123.464799490999965, 48.454928494000114 ], [ -123.464784795999961, 48.454703513000034 ], [ -123.464662488999949, 48.454596694000031 ], [ -123.464282288, 48.454589610000077 ], [ -123.463978283999936, 48.454683602000152 ], [ -123.463905910999941, 48.454895796000081 ], [ -123.463921983999967, 48.455085194000134 ], [ -123.46342440199993, 48.455492504000105 ], [ -123.463025183999932, 48.456150496000092 ], [ -123.462863193999965, 48.45621459300002 ], [ -123.461956298999922, 48.456046508000057 ], [ -123.460889019999925, 48.456204604000028 ], [ -123.459280183999908, 48.456164698000059 ], [ -123.459243857999951, 48.456142936000049 ], [ -123.459246879999938, 48.456140076000075 ], [ -123.459409414999982, 48.455986202000119 ], [ -123.460164709999972, 48.455496598000146 ], [ -123.460415510999937, 48.455352106000127 ], [ -123.46095270899994, 48.454977198000122 ], [ -123.461551591999935, 48.454459510000078 ], [ -123.462210462000016, 48.453728700000056 ], [ -123.463452564999926, 48.451990991000109 ], [ -123.464203616999939, 48.450735410000057 ], [ -123.464357384999914, 48.450478292000085 ], [ -123.46439544899998, 48.450414665000018 ], [ -123.464659662999935, 48.449972945000127 ], [ -123.465636038999918, 48.449778358000053 ], [ -123.466379915999966, 48.449197200000057 ], [ -123.467807611999973, 48.448081793000071 ], [ -123.46848106799996, 48.447554785000044 ], [ -123.468651761999979, 48.447802035000016 ], [ -123.468081994999963, 48.449160591000087 ], [ -123.468047954999975, 48.449601965000085 ], [ -123.468164248999955, 48.449882138000113 ], [ -123.469028101999953, 48.450976432000076 ], [ -123.470486828999967, 48.451495917000031 ], [ -123.471039874999974, 48.452250162000077 ], [ -123.471419727999958, 48.452794507000043 ], [ -123.472492127999928, 48.453902219000064 ], [ -123.472494361, 48.454142885000138 ], [ -123.472088631999924, 48.454144551000063 ], [ -123.472103644999947, 48.455763861000079 ], [ -123.472509386999917, 48.455762195000077 ], [ -123.47251189099994, 48.45603208000005 ], [ -123.473729122999927, 48.456027077000016 ], [ -123.473731633999961, 48.456296962000067 ], [ -123.47413738099999, 48.456295291000067 ], [ -123.474147433000013, 48.457374830000099 ], [ -123.473741678999943, 48.45737650100007 ], [ -123.473744189999977, 48.457646386000071 ], [ -123.473338432999967, 48.457648055000085 ], [ -123.473345958999985, 48.458457710000125 ], [ -123.472940197999932, 48.458459378000043 ], [ -123.472947716999926, 48.459269032000059 ], [ -123.472541947999943, 48.459270699000065 ], [ -123.472544452999955, 48.459540583000056 ], [ -123.471857786999962, 48.459543401000062 ], [ -123.471742251999927, 48.461703034000038 ], [ -123.472564493999982, 48.461699661000111 ], [ -123.472574514999948, 48.462779199000046 ], [ -123.472517566999954, 48.462779434000012 ], [ -123.471762918999957, 48.462782529000044 ], [ -123.471770421999963, 48.463592182000077 ], [ -123.471364618999985, 48.463593845000048 ], [ -123.471369614999944, 48.464133615000044 ], [ -123.471033548999969, 48.464134990000105 ], [ -123.471019101999971, 48.464404944000073 ], [ -123.471372114999966, 48.46440349900007 ], [ -123.471379612999939, 48.46521315300005 ], [ -123.470975758999955, 48.46521480600007 ], [ -123.470905275999911, 48.466531698000068 ], [ -123.470395110999917, 48.466519521000109 ], [ -123.470390459999976, 48.466606411000079 ], [ -123.470036074999939, 48.466597950000043 ], [ -123.469813303999914, 48.466270886000075 ], [ -123.469671198999947, 48.465380806000091 ], [ -123.46945151199999, 48.465157190000077 ], [ -123.469099998999965, 48.465041804000059 ], [ -123.468788405999987, 48.465122984000068 ], [ -123.468665379999976, 48.465024693000039 ], [ -123.468273599999975, 48.465044690000092 ], [ -123.468004179000019, 48.465108795000035 ], [ -123.467897115999932, 48.465343803000067 ], [ -123.467467092999968, 48.465668487000102 ], [ -123.467054488999963, 48.4663535030001 ], [ -123.46704091099997, 48.466526399000038 ], [ -123.464995980999959, 48.46647749900005 ], [ -123.465189220999946, 48.46287524300002 ], [ -123.46527077199994, 48.462877193000125 ], [ -123.465267558000022, 48.462525557000056 ], [ -123.46141879, 48.462433416000145 ], [ -123.461419244999931, 48.462424932000069 ], [ -123.460462093999922, 48.462401996000068 ], [ -123.460428469999925, 48.463027667000112 ], [ -123.457561039999959, 48.462958902000011 ], [ -123.457572643999981, 48.464249969000015 ], [ -123.45873540099997, 48.464277861000014 ], [ -123.458707986999968, 48.464787589000103 ], [ -123.460206778999961, 48.464823523000028 ], [ -123.460170798999954, 48.465492913000055 ], [ -123.46173466399992, 48.465530385000129 ], [ -123.461541150999977, 48.46913261900005 ], [ -123.459701514999963, 48.469088537000125 ], [ -123.459703091000023, 48.469059200000039 ], [ -123.459765094999952, 48.468985900000106 ], [ -123.459980891, 48.468840487000094 ], [ -123.460060993999917, 48.468681890000063 ], [ -123.459840180999933, 48.468266299000078 ], [ -123.459724684999969, 48.46797673800004 ], [ -123.459521298999974, 48.467466995000045 ], [ -123.459475813, 48.467400157000085 ], [ -123.459306090999974, 48.467150705000037 ], [ -123.45929359199998, 48.46708947400009 ], [ -123.459258424999959, 48.466917133000017 ], [ -123.459241914999936, 48.466836291000035 ], [ -123.45912119099998, 48.466621501000134 ], [ -123.458936983999976, 48.466430408000107 ], [ -123.458736752999926, 48.466277172000105 ], [ -123.458288491999951, 48.465934213000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32380916", "BldgCostT": "22331666", "sL_LossRatio": "0.983782874422062", "sL_AssetLoss": "27818.74", "sL_BldgLoss": "27367.6", "sL_StrLoss": "25250", "sL_NStrLoss": "2117.6", "sL_ContLoss": "451.14", "geom_point": "0101000020E61000009B6B5EF667DE5EC08F6335A7DC3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.472773860999922, 48.493650925000068 ], [ -123.472862343999964, 48.491997495000092 ], [ -123.469560445999917, 48.491918745000106 ], [ -123.469635142999934, 48.490524626000081 ], [ -123.47020309499996, 48.490703194000019 ], [ -123.470365084999941, 48.490657702000092 ], [ -123.470577904999942, 48.490432609000081 ], [ -123.470398189999955, 48.489973998000025 ], [ -123.470492012999941, 48.48979459500007 ], [ -123.470434790999974, 48.489623693000134 ], [ -123.470798192999951, 48.489261890000101 ], [ -123.471295588999979, 48.488998510000087 ], [ -123.471655380999948, 48.488421592000122 ], [ -123.471643778, 48.488361731000097 ], [ -123.475150425999914, 48.488445299000098 ], [ -123.475103243999925, 48.489327854000059 ], [ -123.479975607999947, 48.48944377400008 ], [ -123.47978338599999, 48.493045897000037 ], [ -123.478212628999955, 48.493008551000095 ], [ -123.478171463999928, 48.493779434000054 ], [ -123.472773860999922, 48.493650925000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159719666", "BldgCostT": "104366666", "sL_LossRatio": "0.766464728710798", "sL_AssetLoss": "83268.15", "sL_BldgLoss": "63822.1", "sL_StrLoss": "46040.4", "sL_NStrLoss": "17781.7", "sL_ContLoss": "19446.05", "geom_point": "0101000020E61000008EF29BDB27DD5EC07126F1E2923B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.456146408, 48.469003258000058 ], [ -123.456182445999971, 48.468333873000077 ], [ -123.454618492999884, 48.468296320000064 ], [ -123.454625322999959, 48.468169525000093 ], [ -123.454121777999944, 48.468157429000051 ], [ -123.454124994999972, 48.468106714000065 ], [ -123.454579816999967, 48.467680895000065 ], [ -123.454680769999982, 48.467013922000035 ], [ -123.454680957999983, 48.467012862000082 ], [ -123.454681357999974, 48.467010123000058 ], [ -123.454709198000018, 48.466826395000133 ], [ -123.454556387999943, 48.466440407000036 ], [ -123.453970606999988, 48.465983190000038 ], [ -123.45375050899996, 48.465642801000037 ], [ -123.453760324999962, 48.465523431000094 ], [ -123.453800188999949, 48.465038992000139 ], [ -123.453931794999946, 48.464670104000064 ], [ -123.453848390999937, 48.46438240800012 ], [ -123.452261787999973, 48.465436006000111 ], [ -123.452249814999959, 48.465282408000071 ], [ -123.452044185999981, 48.465013299000127 ], [ -123.451817009999957, 48.464845509000064 ], [ -123.451474893999915, 48.464452307000045 ], [ -123.451291784999967, 48.46426750100003 ], [ -123.450621399999932, 48.463804997000125 ], [ -123.450540118999953, 48.463747590000061 ], [ -123.450118007999905, 48.46344938700004 ], [ -123.451345901999943, 48.463089314000094 ], [ -123.451909689999965, 48.46287570000009 ], [ -123.45248128799993, 48.462616195000095 ], [ -123.45306663299999, 48.462281972000042 ], [ -123.453310192999965, 48.462142897000071 ], [ -123.45357502499995, 48.462040102000074 ], [ -123.453920208999961, 48.461978773000048 ], [ -123.45399489799992, 48.461965502000062 ], [ -123.455993816999964, 48.461725315000137 ], [ -123.456172012999929, 48.461703895000085 ], [ -123.456299809999933, 48.46171420400006 ], [ -123.456353806999957, 48.461733761000055 ], [ -123.456478587999925, 48.461778897000102 ], [ -123.456574012999965, 48.461887603000044 ], [ -123.456586399999978, 48.461997457000109 ], [ -123.456592277999903, 48.462049494000105 ], [ -123.45655848899996, 48.462301188 ], [ -123.456706912999934, 48.463256903000058 ], [ -123.456744709999953, 48.463884489000058 ], [ -123.456741379, 48.463921618000043 ], [ -123.456690303999977, 48.464493691 ], [ -123.45673610299994, 48.464720200000023 ], [ -123.456838850999972, 48.464914139000037 ], [ -123.456919996999957, 48.465067308000116 ], [ -123.457130497999955, 48.465229935000117 ], [ -123.457140418999984, 48.465237588000079 ], [ -123.458288491999951, 48.465934213000018 ], [ -123.458736752999926, 48.466277172000105 ], [ -123.458936983999976, 48.466430408000107 ], [ -123.45912119099998, 48.466621501000134 ], [ -123.459241914999936, 48.466836291000035 ], [ -123.459258424999959, 48.466917133000017 ], [ -123.45929359199998, 48.46708947400009 ], [ -123.459306090999974, 48.467150705000037 ], [ -123.459475813, 48.467400157000085 ], [ -123.459521298999974, 48.467466995000045 ], [ -123.459724684999969, 48.46797673800004 ], [ -123.459840180999933, 48.468266299000078 ], [ -123.460060993999917, 48.468681890000063 ], [ -123.459980891, 48.468840487000094 ], [ -123.459765094999952, 48.468985900000106 ], [ -123.459703091000023, 48.469059200000039 ], [ -123.459701514999963, 48.469088537000125 ], [ -123.456146408, 48.469003258000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.986713882704263", "sL_AssetLoss": "4540.83", "sL_BldgLoss": "4480.5", "sL_StrLoss": "4114", "sL_NStrLoss": "366.5", "sL_ContLoss": "60.33", "geom_point": "0101000020E6100000F5D69F4860DD5EC0DA6F928BD63E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.457819734999987, 48.491717510000093 ], [ -123.457805158999946, 48.490098207000109 ], [ -123.459835239999919, 48.490090114000076 ], [ -123.459837680999939, 48.490359999000091 ], [ -123.460243699999936, 48.490358376000067 ], [ -123.460255911999923, 48.491707793000046 ], [ -123.457819734999987, 48.491717510000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41514834", "BldgCostT": "26213334", "sL_LossRatio": "0.959782004073887", "sL_AssetLoss": "27703.27", "sL_BldgLoss": "26589.1", "sL_StrLoss": "23256.4", "sL_NStrLoss": "3332.7", "sL_ContLoss": "1114.17", "geom_point": "0101000020E61000008B0ACD5C7DDD5EC05052A21D1E3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.46137120199991, 48.494362004000109 ], [ -123.461004699999961, 48.494344212000122 ], [ -123.460572292999956, 48.494395199000074 ], [ -123.460264498999933, 48.494385305000044 ], [ -123.460239096999899, 48.494384509000014 ], [ -123.460029416999973, 48.494313686000048 ], [ -123.459238981999988, 48.493837593000109 ], [ -123.459225463999942, 48.493836513000069 ], [ -123.458534658999923, 48.493780377000085 ], [ -123.458061421, 48.493741936000077 ], [ -123.45797978200001, 48.493735296000047 ], [ -123.45727009699999, 48.493534315000012 ], [ -123.457231875999952, 48.493523497000105 ], [ -123.456948392999948, 48.493516707000062 ], [ -123.456529132999975, 48.493506620000119 ], [ -123.456503205999965, 48.493505984000066 ], [ -123.45666182599993, 48.49237813000012 ], [ -123.457311514999958, 48.492393712000094 ], [ -123.457343038, 48.491808241000051 ], [ -123.462740388999947, 48.491937536000101 ], [ -123.462713988999937, 48.492428887000109 ], [ -123.465137293999973, 48.492486849000102 ], [ -123.465185411000022, 48.492558925000083 ], [ -123.465125380999964, 48.492794477000146 ], [ -123.464365612, 48.493232643000042 ], [ -123.464047334999989, 48.493669285000045 ], [ -123.463911989999957, 48.493939703000123 ], [ -123.463780866999954, 48.494107152000055 ], [ -123.463803179999928, 48.494608856000085 ], [ -123.463545430999943, 48.494867811000127 ], [ -123.463419093999903, 48.494798787000029 ], [ -123.463406635999959, 48.494794436000113 ], [ -123.463169678999947, 48.49471160000008 ], [ -123.46278488399993, 48.494657294000028 ], [ -123.462672624, 48.494652502000108 ], [ -123.462400682999956, 48.494640896000092 ], [ -123.46220281399998, 48.494602807000092 ], [ -123.461672297999911, 48.494417008 ], [ -123.46137120199991, 48.494362004000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11660501", "BldgCostT": "7570001", "sL_LossRatio": "0.973191956325559", "sL_AssetLoss": "8720.89", "sL_BldgLoss": "8487.1", "sL_StrLoss": "7452.5", "sL_NStrLoss": "1034.6", "sL_ContLoss": "233.79", "geom_point": "0101000020E6100000990C6C3AA7DD5EC00143FBFD873E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.46261941299997, 48.486670654000122 ], [ -123.463499951999935, 48.486691725000064 ], [ -123.464010708, 48.487229785000068 ], [ -123.464294299999906, 48.487382600000068 ], [ -123.46449902099999, 48.487595806000108 ], [ -123.46453458799995, 48.487813092000088 ], [ -123.464507719, 48.48798739700004 ], [ -123.464355698999938, 48.488302007000044 ], [ -123.463840001999955, 48.488722497000083 ], [ -123.463803268999968, 48.488911236000042 ], [ -123.464238840999926, 48.490316138000018 ], [ -123.462425879999969, 48.49027276200011 ], [ -123.46261941299997, 48.486670654000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "0.911779201577132", "sL_AssetLoss": "1623.2", "sL_BldgLoss": "1480", "sL_StrLoss": "1160", "sL_NStrLoss": "320", "sL_ContLoss": "143.2", "geom_point": "0101000020E6100000C861CD544ADD5EC02648D712933C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.457308128999941, 48.472826971000096 ], [ -123.458055627999912, 48.472823999000049 ], [ -123.458062915999946, 48.473633652000046 ], [ -123.457222136999988, 48.473636996000025 ], [ -123.457308128999941, 48.472826971000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197322917", "BldgCostT": "123436667", "sL_LossRatio": "0.843092137147987", "sL_AssetLoss": "321985.33", "sL_BldgLoss": "271463.3", "sL_StrLoss": "209720.5", "sL_NStrLoss": "61742.8", "sL_ContLoss": "50522.03", "geom_point": "0101000020E610000070E4682B82DC5EC0BC1DE925A93B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.43780783399994, 48.466457244000033 ], [ -123.438459049999921, 48.465778667000116 ], [ -123.438688316, 48.465609285000028 ], [ -123.438995001999928, 48.465431815000073 ], [ -123.439392405999968, 48.465274592000107 ], [ -123.43971001099996, 48.46519570700012 ], [ -123.440340305999896, 48.465093650000036 ], [ -123.440418964999935, 48.465080889000092 ], [ -123.442093985000014, 48.464809640000077 ], [ -123.444014915999958, 48.464547887000066 ], [ -123.444297721999959, 48.46450934000007 ], [ -123.444515786999929, 48.464496710000034 ], [ -123.444737948999915, 48.464483886000082 ], [ -123.445164274999968, 48.46451581000013 ], [ -123.445557803999975, 48.464604632000047 ], [ -123.44586604099996, 48.464722984000062 ], [ -123.446088938999949, 48.464845578000045 ], [ -123.446111001999952, 48.464859528 ], [ -123.446474100999922, 48.465089308000039 ], [ -123.446727222999982, 48.46515313000009 ], [ -123.447022655999916, 48.465183684000067 ], [ -123.447378658999952, 48.465142667000087 ], [ -123.447669417999947, 48.465034262000081 ], [ -123.447912980999973, 48.464875087000088 ], [ -123.448709951999959, 48.464119715000059 ], [ -123.448771048, 48.464078075000039 ], [ -123.448956724999988, 48.46395162300005 ], [ -123.449311137, 48.463763612000065 ], [ -123.449807203, 48.463554590000086 ], [ -123.45010557199997, 48.463453605000041 ], [ -123.450118007999905, 48.46344938700004 ], [ -123.450540118999953, 48.463747590000061 ], [ -123.450621399999932, 48.463804997000125 ], [ -123.451291784999967, 48.46426750100003 ], [ -123.451474893999915, 48.464452307000045 ], [ -123.451817009999957, 48.464845509000064 ], [ -123.452044185999981, 48.465013299000127 ], [ -123.452249814999959, 48.465282408000071 ], [ -123.452261787999973, 48.465436006000111 ], [ -123.449012681999946, 48.468335658000079 ], [ -123.448865922999985, 48.468274804000082 ], [ -123.444281899999936, 48.466374615000099 ], [ -123.44408447799999, 48.466753990000065 ], [ -123.443837992999974, 48.467530704000048 ], [ -123.443617279999913, 48.468226078000058 ], [ -123.443592998999975, 48.46827772000011 ], [ -123.443350246999984, 48.468794027000065 ], [ -123.441553270999918, 48.468100592000042 ], [ -123.437801295, 48.466463535000116 ], [ -123.43780783399994, 48.466457244000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240177168", "BldgCostT": "159601668", "sL_LossRatio": "0.934385900377759", "sL_AssetLoss": "245971.98", "sL_BldgLoss": "229832.75", "sL_StrLoss": "194917.9", "sL_NStrLoss": "34914.85", "sL_ContLoss": "16139.23", "geom_point": "0101000020E610000021D965F09EE05EC02CABB019E0354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.505024077999963, 48.422284688000069 ], [ -123.505008356999895, 48.422198686000023 ], [ -123.504961942999955, 48.42192795600009 ], [ -123.504755299999943, 48.421625519000102 ], [ -123.504638453999974, 48.421538900000023 ], [ -123.504543267999978, 48.42150113100012 ], [ -123.504440257999988, 48.421460269000121 ], [ -123.504256364999932, 48.421442424000084 ], [ -123.505059039999935, 48.421257213000032 ], [ -123.505234259999952, 48.420841978000148 ], [ -123.505274347999944, 48.420528260000069 ], [ -123.505350838999988, 48.42031450800004 ], [ -123.505760105999983, 48.419703224000074 ], [ -123.506687545999981, 48.418222675000088 ], [ -123.50752818799999, 48.41705686700007 ], [ -123.50771355399999, 48.416777736000029 ], [ -123.508064764999943, 48.416186360000097 ], [ -123.508499855999972, 48.415457167000056 ], [ -123.509794126999964, 48.415386050000158 ], [ -123.510838061999962, 48.41542 ], [ -123.5108571009999, 48.415255709000093 ], [ -123.510860951999959, 48.415245391000042 ], [ -123.510437433999968, 48.415126682000036 ], [ -123.511197367999955, 48.414595334000097 ], [ -123.511298681999946, 48.414691755000128 ], [ -123.511291259999908, 48.414803569000036 ], [ -123.511278396999984, 48.414869449000129 ], [ -123.511271279999974, 48.414927709000075 ], [ -123.511270746999941, 48.415005586000085 ], [ -123.511273638999967, 48.415050601000118 ], [ -123.51129640299996, 48.41512034700002 ], [ -123.511318955999954, 48.41522797400004 ], [ -123.511319504999918, 48.41527908800002 ], [ -123.511460689, 48.415389626000049 ], [ -123.512556375, 48.416474457000035 ], [ -123.513789546999988, 48.417333045000106 ], [ -123.51380671099993, 48.417675709000072 ], [ -123.513840179999974, 48.417724141000058 ], [ -123.514202488999956, 48.417828251000081 ], [ -123.514280019999916, 48.417822887000057 ], [ -123.51438373699996, 48.417754815000066 ], [ -123.514546911999972, 48.417667931000061 ], [ -123.51493503899998, 48.417492216000042 ], [ -123.514973658999963, 48.417541965000112 ], [ -123.515124653000015, 48.417605580000092 ], [ -123.515173095999955, 48.417620854000106 ], [ -123.515218067999982, 48.417628868000051 ], [ -123.515279478, 48.417635165000043 ], [ -123.515346117999968, 48.417647390000113 ], [ -123.515429881999964, 48.417637525000011 ], [ -123.515494899999979, 48.417624023000045 ], [ -123.515559437999954, 48.417603111000105 ], [ -123.515636617999959, 48.417573309000034 ], [ -123.515704865999965, 48.417541047000093 ], [ -123.515684402999952, 48.418285727000082 ], [ -123.515140471999985, 48.418794769000087 ], [ -123.515087661999985, 48.418989306000093 ], [ -123.514816316999941, 48.419764972000031 ], [ -123.514817872999942, 48.419828269000085 ], [ -123.51485340699999, 48.420212667000044 ], [ -123.514718788999957, 48.420681103000156 ], [ -123.514421800999983, 48.420972901000027 ], [ -123.514473368999973, 48.421172149000057 ], [ -123.514697902999899, 48.421474655000068 ], [ -123.514766670999961, 48.421596796000109 ], [ -123.514317543999965, 48.422396006000056 ], [ -123.512905183, 48.424909016000043 ], [ -123.512905104999973, 48.424909188000065 ], [ -123.512904996999936, 48.424909432000092 ], [ -123.512611464999964, 48.425511211000057 ], [ -123.51229453799999, 48.42550919300006 ], [ -123.512063168999987, 48.425573192000023 ], [ -123.511927249999957, 48.425694434000071 ], [ -123.511923898999967, 48.425700693000074 ], [ -123.511860339999956, 48.425818973000027 ], [ -123.51174924799993, 48.426025703000072 ], [ -123.511567368999948, 48.426508378000037 ], [ -123.511448672999975, 48.426661582000058 ], [ -123.51127576, 48.426743187000056 ], [ -123.51105505699999, 48.4267578440001 ], [ -123.510793470999957, 48.42672916600003 ], [ -123.510495984999949, 48.426639191000042 ], [ -123.510252593999965, 48.42649550200013 ], [ -123.50979621599997, 48.426092495000098 ], [ -123.509678976999965, 48.425885038000082 ], [ -123.509641065999958, 48.425708305000029 ], [ -123.50964807299998, 48.425498359000102 ], [ -123.50971294599999, 48.425342092000051 ], [ -123.509838774999977, 48.425207085000068 ], [ -123.510034027999936, 48.425086309000044 ], [ -123.511054980999972, 48.424733396000136 ], [ -123.511249020999955, 48.4246099040001 ], [ -123.51140486299991, 48.424468391000048 ], [ -123.511505002999954, 48.424309320000106 ], [ -123.511517575000013, 48.424147303000041 ], [ -123.511467205, 48.424001825000104 ], [ -123.511359902999956, 48.42386134700012 ], [ -123.511227203999951, 48.423768059000082 ], [ -123.511064689999955, 48.423702907000106 ], [ -123.510904758999956, 48.42366579100014 ], [ -123.51028787199995, 48.423518720000096 ], [ -123.51008002199994, 48.423443493000065 ], [ -123.509925945999953, 48.423346994000056 ], [ -123.509844109999932, 48.42327097000009 ], [ -123.509001197999936, 48.422487503000077 ], [ -123.508886405999974, 48.422412657000073 ], [ -123.508743039999942, 48.422368705000039 ], [ -123.508593872999981, 48.422383238000101 ], [ -123.508489876999974, 48.422436696 ], [ -123.507911922999952, 48.423036275000101 ], [ -123.507992242999975, 48.423432242000047 ], [ -123.50794282899993, 48.423679126000103 ], [ -123.507794416999928, 48.423883902000043 ], [ -123.507679255999975, 48.423984710000042 ], [ -123.506701082999896, 48.424841106000017 ], [ -123.506374089999937, 48.425028998000059 ], [ -123.505960293999976, 48.425968811000075 ], [ -123.505511215999931, 48.426861800000111 ], [ -123.504222987999981, 48.42655010500004 ], [ -123.503701321000037, 48.426413408000045 ], [ -123.503586489999975, 48.426338510000093 ], [ -123.503401715999971, 48.426057301000029 ], [ -123.503317492999912, 48.425811023000051 ], [ -123.50327698800001, 48.425506097000088 ], [ -123.503322888999932, 48.425250198000114 ], [ -123.503615689999961, 48.424687206000051 ], [ -123.503634719999937, 48.424581209000102 ], [ -123.50358599499998, 48.424368777000112 ], [ -123.50352619799996, 48.424107901000056 ], [ -123.503549695999979, 48.423968697000149 ], [ -123.503581441, 48.423910903000035 ], [ -123.503639188999927, 48.423805791000063 ], [ -123.503853706999948, 48.423628686000079 ], [ -123.504490084999986, 48.423328099000059 ], [ -123.50469359499999, 48.42317871200008 ], [ -123.504918128, 48.422865606000073 ], [ -123.505236705999948, 48.422421405000058 ], [ -123.505024077999963, 48.422284688000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7776834", "BldgCostT": "5363334", "sL_LossRatio": "0.979229190286701", "sL_AssetLoss": "6747.45", "sL_BldgLoss": "6607.3", "sL_StrLoss": "5942.4", "sL_NStrLoss": "664.9", "sL_ContLoss": "140.15", "geom_point": "0101000020E610000087EFB380FFE05EC0FC489DC2C2334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.515407450999959, 48.404567615000097 ], [ -123.51540199799993, 48.404027844000034 ], [ -123.513780687999912, 48.404035094000015 ], [ -123.513772533999926, 48.403225437000131 ], [ -123.516609780999914, 48.403212734000135 ], [ -123.516612513999959, 48.403482619000052 ], [ -123.517017836999969, 48.403480799000071 ], [ -123.51702950399999, 48.404631907000059 ], [ -123.516779758999945, 48.405101255000048 ], [ -123.516628913999938, 48.40510193300004 ], [ -123.516631647999986, 48.405371817000116 ], [ -123.516226309999979, 48.405373637000046 ], [ -123.516229041999907, 48.405643523000052 ], [ -123.515823699999913, 48.405645341000138 ], [ -123.515826427999983, 48.405915226000047 ], [ -123.51461040099997, 48.405920671000075 ], [ -123.514599509999982, 48.404841129000069 ], [ -123.515004844999936, 48.404839316000121 ], [ -123.51500212, 48.404569429000048 ], [ -123.515407450999959, 48.404567615000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "489352774", "BldgCostT": "309509160", "sL_LossRatio": "0.946081839887289", "sL_AssetLoss": "405184.82", "sL_BldgLoss": "383338", "sL_StrLoss": "331296.5", "sL_NStrLoss": "52041.5", "sL_ContLoss": "21846.82", "geom_point": "0101000020E6100000152BAB0218E05EC0FEC8BD2B48344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.501610414999931, 48.418744100000012 ], [ -123.501460721999962, 48.418436700000022 ], [ -123.500544006999959, 48.418553892000084 ], [ -123.500355398999929, 48.418626099000051 ], [ -123.500238015999969, 48.418727992000051 ], [ -123.500038823999958, 48.419052397000051 ], [ -123.499250199999935, 48.418837199000031 ], [ -123.499045504999941, 48.418704297000055 ], [ -123.498301583999961, 48.417924695000067 ], [ -123.498142075999922, 48.417855098000047 ], [ -123.49795952699999, 48.417811998000118 ], [ -123.497736506999985, 48.417821205000095 ], [ -123.496916796999983, 48.418194088000085 ], [ -123.496663482999963, 48.417959893000074 ], [ -123.495342890999964, 48.417628402000041 ], [ -123.495405729, 48.417511955000094 ], [ -123.495419609999914, 48.41748620100001 ], [ -123.495580707999977, 48.417187599000073 ], [ -123.495789401999943, 48.416812005000082 ], [ -123.495800836999976, 48.416732738000093 ], [ -123.495838401999933, 48.416473194000112 ], [ -123.49579378599995, 48.416295409000043 ], [ -123.495499003999953, 48.41582670300005 ], [ -123.495080594999962, 48.4151676070001 ], [ -123.495015392999989, 48.414820597000102 ], [ -123.495067698999904, 48.414673392000026 ], [ -123.495078465999967, 48.414643087000087 ], [ -123.495237759999952, 48.414642402000013 ], [ -123.495235139, 48.414372516000064 ], [ -123.49600471399998, 48.414369201000028 ], [ -123.496046750999966, 48.413574964000084 ], [ -123.496151007999984, 48.413497490000083 ], [ -123.496674496999944, 48.413215 ], [ -123.496950205999951, 48.413101609000108 ], [ -123.497715313999933, 48.412942012000066 ], [ -123.498036895, 48.412701698000021 ], [ -123.498317416999939, 48.412297916000036 ], [ -123.498502773999974, 48.412031106000065 ], [ -123.498559575999963, 48.411949298000046 ], [ -123.498614896, 48.411851428000062 ], [ -123.498874997999948, 48.411391290000083 ], [ -123.49892691699992, 48.411347444000064 ], [ -123.499474988999978, 48.410884301000031 ], [ -123.499564081999921, 48.410751504000054 ], [ -123.499647810999974, 48.410626798000102 ], [ -123.499725198999982, 48.410360791000087 ], [ -123.499735400999953, 48.409938983000075 ], [ -123.49977222399994, 48.409728005000083 ], [ -123.499997962999913, 48.409332517000038 ], [ -123.500004146999942, 48.409321620000036 ], [ -123.500215051999973, 48.408952114000073 ], [ -123.500697908999911, 48.408159998000023 ], [ -123.501672777999957, 48.406503894000089 ], [ -123.501208460999948, 48.406409065000098 ], [ -123.500194655999948, 48.406275098000059 ], [ -123.499643685, 48.406237746000031 ], [ -123.498472831999891, 48.406231313000056 ], [ -123.497400222999943, 48.406225441000039 ], [ -123.496414721999955, 48.40622001200007 ], [ -123.495774978000014, 48.406203989000119 ], [ -123.495200844999957, 48.406146196000059 ], [ -123.49443589399999, 48.406024389000045 ], [ -123.489811730999975, 48.404924563000094 ], [ -123.489296467, 48.404801991000021 ], [ -123.487550573999954, 48.404386694000053 ], [ -123.488386619999986, 48.402834196000093 ], [ -123.489061488999951, 48.401580986000077 ], [ -123.489122071999958, 48.401497474000116 ], [ -123.489476112999967, 48.401009107000036 ], [ -123.489892626999946, 48.400592951000114 ], [ -123.489920425999927, 48.400565202000031 ], [ -123.490422776999978, 48.400144214000093 ], [ -123.490630096999922, 48.400005429000046 ], [ -123.491096620999954, 48.399693067000136 ], [ -123.492048707999984, 48.39923317200001 ], [ -123.492789656999946, 48.398966661000067 ], [ -123.493740920999969, 48.398724985000051 ], [ -123.494664169999936, 48.39858001200006 ], [ -123.49549478499992, 48.398529876000048 ], [ -123.49611292799996, 48.39849256300004 ], [ -123.496575973999953, 48.398454055000123 ], [ -123.498434248999942, 48.398299482000041 ], [ -123.500970574999911, 48.398812996000061 ], [ -123.501708654999959, 48.398962418000075 ], [ -123.508088263999952, 48.400445605000129 ], [ -123.508000599999917, 48.402110391000086 ], [ -123.504032442000025, 48.402016862 ], [ -123.50404747499999, 48.403538349000094 ], [ -123.503642149999919, 48.40354012500012 ], [ -123.503644814999944, 48.403810011000083 ], [ -123.502428834999961, 48.403815327000039 ], [ -123.502426176999933, 48.403545440000109 ], [ -123.502020852000015, 48.403547210000049 ], [ -123.502012883999953, 48.402737551000051 ], [ -123.500796927999957, 48.40274285 ], [ -123.500788979999953, 48.401933190000065 ], [ -123.500383668999916, 48.401934954000069 ], [ -123.500381022999974, 48.401665068000071 ], [ -123.49997571199999, 48.401666830000075 ], [ -123.499970422, 48.401127057000053 ], [ -123.499565114999939, 48.401128818000096 ], [ -123.499554545, 48.40004927100005 ], [ -123.499149248999942, 48.400051031000039 ], [ -123.499144697999952, 48.399585787000092 ], [ -123.499048039999963, 48.399583503000045 ], [ -123.499030525999942, 48.399914918000043 ], [ -123.49631009899997, 48.399850580000106 ], [ -123.496314792999925, 48.400333191000108 ], [ -123.496720091999919, 48.400331441000041 ], [ -123.496727974999942, 48.401141102000075 ], [ -123.497943893999917, 48.401135846000031 ], [ -123.497954431, 48.40221539200013 ], [ -123.49754911699992, 48.402217145000058 ], [ -123.497554381999961, 48.402756918000094 ], [ -123.498770336999939, 48.402751653000095 ], [ -123.498772975999898, 48.403021539000058 ], [ -123.499583616, 48.403018022000062 ], [ -123.49958625899994, 48.403287909000078 ], [ -123.49999158199995, 48.403286148000049 ], [ -123.499999517999967, 48.404095807000033 ], [ -123.499188859999947, 48.404099327000047 ], [ -123.49919150099997, 48.404369213000095 ], [ -123.499596832999956, 48.404367453000177 ], [ -123.499607404999949, 48.405446999000048 ], [ -123.499685561999939, 48.405446660000116 ], [ -123.499739371999979, 48.404428305000138 ], [ -123.503977459999959, 48.404528357000146 ], [ -123.503981903999914, 48.404444110000107 ], [ -123.509369418999967, 48.40457105100009 ], [ -123.509226083999948, 48.40729411500012 ], [ -123.50935441699994, 48.407293547000044 ], [ -123.509362502999963, 48.408103204000064 ], [ -123.510578583, 48.408097814000079 ], [ -123.51058855, 48.409093343000066 ], [ -123.510589390999925, 48.409177357000061 ], [ -123.511122127999954, 48.409174991000121 ], [ -123.511400128999981, 48.40917375700009 ], [ -123.511397421999945, 48.408903871000071 ], [ -123.511802788999944, 48.408902068000053 ], [ -123.511800081999937, 48.408632182000126 ], [ -123.512205445999939, 48.408630379000073 ], [ -123.512202734999931, 48.408360493000039 ], [ -123.513418820999973, 48.408355074000063 ], [ -123.513423657999923, 48.408835440000075 ], [ -123.514775662999909, 48.408867198000088 ], [ -123.513900395999926, 48.410511726000081 ], [ -123.512847196999957, 48.413054050000014 ], [ -123.511934270999944, 48.412970034000118 ], [ -123.511696104999942, 48.413291496000035 ], [ -123.51123756799997, 48.414418578000081 ], [ -123.511197367999955, 48.414595334000097 ], [ -123.510437433999968, 48.415126682000036 ], [ -123.510860951999959, 48.415245391000042 ], [ -123.5108571009999, 48.415255709000093 ], [ -123.510838061999962, 48.41542 ], [ -123.509794126999964, 48.415386050000158 ], [ -123.508499855999972, 48.415457167000056 ], [ -123.508064764999943, 48.416186360000097 ], [ -123.50771355399999, 48.416777736000029 ], [ -123.50752818799999, 48.41705686700007 ], [ -123.506687545999981, 48.418222675000088 ], [ -123.505760105999983, 48.419703224000074 ], [ -123.505350838999988, 48.42031450800004 ], [ -123.505274347999944, 48.420528260000069 ], [ -123.505234259999952, 48.420841978000148 ], [ -123.505059039999935, 48.421257213000032 ], [ -123.504256364999932, 48.421442424000084 ], [ -123.503904192, 48.421385045000122 ], [ -123.502767699999936, 48.421199886000075 ], [ -123.50279889499997, 48.420736188000063 ], [ -123.502760899999927, 48.420382701000108 ], [ -123.502674203999973, 48.420058802000071 ], [ -123.502522517, 48.419737796000049 ], [ -123.502308900999964, 48.419438702000022 ], [ -123.502018217999947, 48.419149668000074 ], [ -123.501610414999931, 48.418744100000012 ] ], [ [ -123.511435312999936, 48.412682267000093 ], [ -123.512450192999893, 48.412677751000018 ], [ -123.512521160999981, 48.411327948000107 ], [ -123.511421779999964, 48.411332839000032 ], [ -123.511435312999936, 48.412682267000093 ], [ -123.510219120999977, 48.412687667000149 ], [ -123.510216420999882, 48.412417781000045 ], [ -123.509811025999937, 48.412419578000048 ], [ -123.509808328999938, 48.412149693000096 ], [ -123.509402935999972, 48.412151488000099 ], [ -123.509405632999943, 48.412421373000029 ], [ -123.50737865699989, 48.412430330000049 ], [ -123.507375972999952, 48.412160443000083 ], [ -123.506565186999978, 48.412164016000112 ], [ -123.506562505999966, 48.411894130000043 ], [ -123.506272359999954, 48.411895407000046 ], [ -123.506157114999894, 48.411895914000091 ], [ -123.506141043999961, 48.410276600000095 ], [ -123.506951799999939, 48.410273031000038 ], [ -123.50694911799998, 48.410003145000154 ], [ -123.505732989999956, 48.410008497000142 ], [ -123.505735664999946, 48.410278382000072 ], [ -123.504924911, 48.410281943000022 ], [ -123.504935598999964, 48.411361487000072 ], [ -123.502908664999936, 48.411370363000032 ], [ -123.502906003999954, 48.411100477000012 ], [ -123.50257451, 48.41110192600005 ], [ -123.50248160299995, 48.412861942000113 ], [ -123.502558457999939, 48.412863755000039 ], [ -123.502466216999935, 48.414611064000056 ], [ -123.503346015999952, 48.414607219000125 ], [ -123.503348681999967, 48.414877105000095 ], [ -123.504159510999983, 48.414873555000035 ], [ -123.504164846999913, 48.415413326000078 ], [ -123.504570265999945, 48.415411549000112 ], [ -123.504567594999941, 48.415141664000025 ], [ -123.504727416999941, 48.415140962000109 ], [ -123.50618926199995, 48.415134541000135 ], [ -123.506191940999926, 48.415404426000052 ], [ -123.506463175999926, 48.415403232000109 ], [ -123.506463504, 48.415397006 ], [ -123.506508606999944, 48.415398068000059 ], [ -123.506524918999929, 48.415088606000062 ], [ -123.507357581999941, 48.415108219000054 ], [ -123.507398525999946, 48.414331125000075 ], [ -123.507785852999973, 48.414340246000052 ], [ -123.507793517999971, 48.41419473400007 ], [ -123.50810526399999, 48.414202074000109 ], [ -123.508140339999926, 48.413536141000115 ], [ -123.511039136999941, 48.413604349000089 ], [ -123.511032618999948, 48.412953953000127 ], [ -123.511438017999964, 48.412952152000059 ], [ -123.511435312999936, 48.412682267000093 ] ], [ [ -123.511813621999977, 48.409981611000028 ], [ -123.51181633099992, 48.410251495000118 ], [ -123.512627084999977, 48.410247886000064 ], [ -123.512630315999985, 48.410569366000082 ], [ -123.512991496999987, 48.410577854000081 ], [ -123.513015487999951, 48.41012145300008 ], [ -123.513051500999936, 48.409436302000067 ], [ -123.512618946999922, 48.409438231000131 ], [ -123.512623950999938, 48.409935995000033 ], [ -123.512624373, 48.40997800100012 ], [ -123.511813621999977, 48.409981611000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.991865231872918", "sL_AssetLoss": "1561.2", "sL_BldgLoss": "1548.5", "sL_StrLoss": "1500", "sL_NStrLoss": "48.5", "sL_ContLoss": "12.7", "geom_point": "0101000020E61000004E01170121E15EC0ADD60D0496334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.517423159999936, 48.403478977000084 ], [ -123.517414376999952, 48.402612955000087 ], [ -123.518027904999954, 48.402755501000058 ], [ -123.51764349599992, 48.403477986000091 ], [ -123.517423159999936, 48.403478977000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993042902103694", "sL_AssetLoss": "482.96", "sL_BldgLoss": "479.6", "sL_StrLoss": "454", "sL_NStrLoss": "25.6", "sL_ContLoss": "3.36", "geom_point": "0101000020E61000005766216CFEE05EC0B187F6B182334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.514983047999976, 48.402680231000048 ], [ -123.514976650999984, 48.402046537000039 ], [ -123.516195507999939, 48.40232975300006 ], [ -123.516198997999979, 48.402674782000098 ], [ -123.514983047999976, 48.402680231000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12592500", "BldgCostT": "8475000", "sL_LossRatio": "0.74144613183852", "sL_AssetLoss": "120238", "sL_BldgLoss": "89150", "sL_StrLoss": "42940", "sL_NStrLoss": "46210", "sL_ContLoss": "31088", "geom_point": "0101000020E6100000285956B3B1D75EC04AADB5FF1A744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.379338116999946, 48.911121306000062 ], [ -123.377929212999959, 48.910702596000085 ], [ -123.377493589999958, 48.910812212000067 ], [ -123.376795287, 48.910635590000041 ], [ -123.376261001999964, 48.910403496000129 ], [ -123.37592000299999, 48.910503196000057 ], [ -123.373637908999925, 48.909997603000136 ], [ -123.371301807999913, 48.909608793000118 ], [ -123.370481420999951, 48.90936950600009 ], [ -123.370138885, 48.909154500000071 ], [ -123.369385702999978, 48.908967905000075 ], [ -123.36791369800001, 48.909161601000044 ], [ -123.365984488999956, 48.908502192000121 ], [ -123.364126995999953, 48.908337004000032 ], [ -123.363128503999945, 48.908124805000107 ], [ -123.362061304999969, 48.907677601000032 ], [ -123.36202079899999, 48.907623399000059 ], [ -123.362305302, 48.907388407000035 ], [ -123.361880105999944, 48.90714780100005 ], [ -123.361700511999956, 48.906905607000041 ], [ -123.361682378999902, 48.906239098000036 ], [ -123.361465676999941, 48.906303194000024 ], [ -123.36106001899995, 48.906979701000111 ], [ -123.36088458399999, 48.907096501000062 ], [ -123.360474081999925, 48.906981103000071 ], [ -123.360097469999943, 48.906692162000056 ], [ -123.360242792999884, 48.904117020000044 ], [ -123.365687404999974, 48.904251164000108 ], [ -123.36568659299999, 48.904265585000104 ], [ -123.366436678999918, 48.904284044000079 ], [ -123.366426598999965, 48.904463099000054 ], [ -123.367012024999923, 48.904477502000127 ], [ -123.36701163799998, 48.904424690000106 ], [ -123.368074897999975, 48.904421301000127 ], [ -123.368103590999922, 48.903911311000066 ], [ -123.370163905999974, 48.903961955000078 ], [ -123.373548201999952, 48.904045056 ], [ -123.373519366999943, 48.904558603000055 ], [ -123.374820487999926, 48.904590524000078 ], [ -123.37475546499995, 48.905749155000102 ], [ -123.374799697999904, 48.905749010000086 ], [ -123.374801394999963, 48.905976058000043 ], [ -123.375521145999969, 48.905993709000029 ], [ -123.375519874999938, 48.906016364000031 ], [ -123.376568911000021, 48.906042082000056 ], [ -123.376514944999954, 48.907004304000047 ], [ -123.376482741999965, 48.907578485000045 ], [ -123.377289977999951, 48.907598268000072 ], [ -123.377266823999946, 48.908011213000094 ], [ -123.378888145, 48.90805092600003 ], [ -123.378852979999962, 48.908678475000066 ], [ -123.380352733000024, 48.908715189000134 ], [ -123.380195031999961, 48.911530823000142 ], [ -123.380008503999974, 48.911478787000121 ], [ -123.379338116999946, 48.911121306000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.832585433206766", "sL_AssetLoss": "14485", "sL_BldgLoss": "12060", "sL_StrLoss": "7720", "sL_NStrLoss": "4340", "sL_ContLoss": "2425", "geom_point": "0101000020E6100000F3798337BDE25EC0336CD611EE774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.544944577999971, 48.939216699000035 ], [ -123.543409104999952, 48.938631283000099 ], [ -123.543354180999984, 48.938712501000033 ], [ -123.543550001000014, 48.939061384000048 ], [ -123.543524994999956, 48.939196704000025 ], [ -123.543333096999973, 48.939225210000103 ], [ -123.542675091999982, 48.939021613000101 ], [ -123.541478122999948, 48.938199802000049 ], [ -123.541381187999932, 48.938072990000052 ], [ -123.541597992999968, 48.937875115000054 ], [ -123.541170379999969, 48.937499098000046 ], [ -123.541167187999974, 48.937238401000108 ], [ -123.541009569999943, 48.93715742400007 ], [ -123.541013113999924, 48.937090018000035 ], [ -123.540872060999973, 48.937086779000055 ], [ -123.540576814999923, 48.936935095000152 ], [ -123.540262703999971, 48.93662314100002 ], [ -123.540426278999973, 48.933514201000051 ], [ -123.542009714999949, 48.934283197000084 ], [ -123.543535912, 48.935211789000093 ], [ -123.544347778999935, 48.93589109300008 ], [ -123.544473788999952, 48.936107594000113 ], [ -123.544281401999982, 48.936099091000081 ], [ -123.54275751199998, 48.935341399000066 ], [ -123.541743500999971, 48.934959712000101 ], [ -123.541566298999939, 48.934951205000104 ], [ -123.54149888799999, 48.935023797000021 ], [ -123.54278018399998, 48.935997999000037 ], [ -123.543470193999951, 48.936777010000078 ], [ -123.544432916999966, 48.937439304000065 ], [ -123.546245793999944, 48.938329407000033 ], [ -123.546407272999943, 48.938258875000074 ], [ -123.546334981999934, 48.939636110000066 ], [ -123.545150007999936, 48.939608961000012 ], [ -123.545139301999939, 48.939468793000081 ], [ -123.544944577999971, 48.939216699000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.795163063393184", "sL_AssetLoss": "21832", "sL_BldgLoss": "17360", "sL_StrLoss": "9190", "sL_NStrLoss": "8170", "sL_ContLoss": "4472", "geom_point": "0101000020E6100000551B52FBA3E65EC085AC2CD9CA7D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.605852705999922, 48.985960606000098 ], [ -123.605618885999945, 48.985791192000107 ], [ -123.605306209999924, 48.98585670800005 ], [ -123.605044901000014, 48.985785511000131 ], [ -123.602562091999957, 48.983945398000039 ], [ -123.602070118999933, 48.983848502000036 ], [ -123.601852304999937, 48.983922586000048 ], [ -123.601630085999957, 48.983778794000031 ], [ -123.601371407999977, 48.983798691000054 ], [ -123.600777618999942, 48.983334397000121 ], [ -123.6006154899999, 48.982991516000013 ], [ -123.600624785999941, 48.982810597000089 ], [ -123.600699994999985, 48.982461411000024 ], [ -123.600849505000014, 48.982415806000027 ], [ -123.601302712999953, 48.982531195 ], [ -123.601615177999989, 48.982519799000045 ], [ -123.602157400999928, 48.982049786000111 ], [ -123.602155703, 48.981896009000074 ], [ -123.601780286999912, 48.981494304000108 ], [ -123.601669884999978, 48.981233704 ], [ -123.601778082999942, 48.981142499000015 ], [ -123.602103984999943, 48.981122591000052 ], [ -123.602033708999954, 48.980844908000101 ], [ -123.602141003000014, 48.98068249500006 ], [ -123.601795389999921, 48.980450410000124 ], [ -123.601523096999983, 48.980406212000055 ], [ -123.60135670499993, 48.980236788000099 ], [ -123.601123692999977, 48.980238212000089 ], [ -123.600880890999974, 48.980490300000056 ], [ -123.600818013000023, 48.980520550000108 ], [ -123.600890287999974, 48.97911364099999 ], [ -123.600891710999974, 48.979113672000018 ], [ -123.600991103999931, 48.979500394000027 ], [ -123.601402094999955, 48.979498998000047 ], [ -123.60155558299999, 48.97971409500007 ], [ -123.602048315999966, 48.979809501000013 ], [ -123.602379493999976, 48.980006005000092 ], [ -123.603117598999944, 48.980147009000078 ], [ -123.603891411999911, 48.980745208000066 ], [ -123.604877494000036, 48.980973090000141 ], [ -123.605599318999936, 48.981950096000041 ], [ -123.607204607999975, 48.983057435000021 ], [ -123.607196560999981, 48.983214487000069 ], [ -123.606066063999918, 48.983189255000056 ], [ -123.60592670199999, 48.985907607000044 ], [ -123.605852705999922, 48.985960606000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.822077017835145", "sL_AssetLoss": "18671", "sL_BldgLoss": "15349", "sL_StrLoss": "8770", "sL_NStrLoss": "6579", "sL_ContLoss": "3322", "geom_point": "0101000020E6100000255DD0CE6BE35EC0AD322ADBCD784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.553215531, 48.945767564000064 ], [ -123.553288696999928, 48.944369927000061 ], [ -123.55046461799999, 48.944305396000068 ], [ -123.55065325299995, 48.940705794000074 ], [ -123.55078261099996, 48.940708752000049 ], [ -123.552096885999987, 48.941513895000064 ], [ -123.55380470299994, 48.942718799000033 ], [ -123.55684091099999, 48.944279701000077 ], [ -123.557006404, 48.944503308000087 ], [ -123.556802701999942, 48.94459448700006 ], [ -123.556392685999953, 48.944514704000049 ], [ -123.555842096000021, 48.944148699000102 ], [ -123.55565120499999, 48.944221309000106 ], [ -123.555707421999983, 48.944294006000085 ], [ -123.556230788, 48.944749710000067 ], [ -123.557673393999892, 48.945525910000129 ], [ -123.558095658999932, 48.945878901000079 ], [ -123.553215531, 48.945767564000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5644583", "BldgCostT": "3683333", "sL_LossRatio": "0.681150309215047", "sL_AssetLoss": "68399", "sL_BldgLoss": "46590", "sL_StrLoss": "18050", "sL_NStrLoss": "28540", "sL_ContLoss": "21809", "geom_point": "0101000020E61000006B3AAF6F2FD85EC08864C8B175694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.375561895999951, 48.827019713000041 ], [ -123.375647653999977, 48.825488354000115 ], [ -123.375413982999959, 48.82548261400008 ], [ -123.37545378199999, 48.824771958000049 ], [ -123.374812403999968, 48.824756200000067 ], [ -123.37501404399994, 48.821156234000078 ], [ -123.375060725999916, 48.821157380000024 ], [ -123.37506634099995, 48.821057111000087 ], [ -123.375663200999966, 48.821354805000055 ], [ -123.37601951, 48.821705192000074 ], [ -123.376604693, 48.821729396000094 ], [ -123.377095786999988, 48.821853298000086 ], [ -123.377313992999987, 48.821763504000067 ], [ -123.377338594999912, 48.821555612000111 ], [ -123.37575289099999, 48.82075240500005 ], [ -123.37558719099998, 48.820285193000053 ], [ -123.376253694999974, 48.820363606000058 ], [ -123.377008692999979, 48.820900504000129 ], [ -123.377362408999929, 48.820936084000088 ], [ -123.377634692999962, 48.820834989000026 ], [ -123.377930593999949, 48.820501692000065 ], [ -123.378489700999964, 48.820383491000037 ], [ -123.378651104999946, 48.820166994000033 ], [ -123.378641724999909, 48.820142551000117 ], [ -123.380557292999967, 48.820189539000069 ], [ -123.380476681999937, 48.821631871000115 ], [ -123.380459492999989, 48.821635406000041 ], [ -123.380081012999966, 48.821871790000017 ], [ -123.379257694, 48.822925693000059 ], [ -123.379307286999932, 48.824015193000108 ], [ -123.379388819999932, 48.824159100000081 ], [ -123.380402616999973, 48.824802796000142 ], [ -123.380497209999959, 48.824811389000104 ], [ -123.380537400999984, 48.824730188000025 ], [ -123.380602116999953, 48.82429860700006 ], [ -123.381154135999921, 48.824351933000095 ], [ -123.380997596999947, 48.827153096000053 ], [ -123.375561895999951, 48.827019713000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32832533", "BldgCostT": "21540546", "sL_LossRatio": "0.766606200061833", "sL_AssetLoss": "251323.3", "sL_BldgLoss": "192666", "sL_StrLoss": "107132", "sL_NStrLoss": "85534", "sL_ContLoss": "58657.3", "geom_point": "0101000020E61000007115836ECCD85EC08064F85728724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.395637428999919, 48.900551803000042 ], [ -123.395632711999923, 48.899954189000091 ], [ -123.394947922999947, 48.899937523000069 ], [ -123.394948357999965, 48.899929695000047 ], [ -123.391833911999967, 48.899853841000024 ], [ -123.391865008999901, 48.89929602600008 ], [ -123.387789901999909, 48.899196636000063 ], [ -123.387898252999889, 48.897255971000057 ], [ -123.387957162999967, 48.896200753000116 ], [ -123.387850383999975, 48.89619814600006 ], [ -123.387891423999932, 48.895463029000133 ], [ -123.38787583, 48.895462648 ], [ -123.387878277, 48.895418812000059 ], [ -123.386920298999925, 48.895395424000107 ], [ -123.386964461999952, 48.894604620000109 ], [ -123.38567370199992, 48.894573093000083 ], [ -123.38575014099996, 48.893204982000022 ], [ -123.38498466, 48.89318627800003 ], [ -123.385027267999988, 48.892423868000066 ], [ -123.379990129999925, 48.89230064900002 ], [ -123.380036197999928, 48.891477847000054 ], [ -123.379043144999955, 48.891453527000131 ], [ -123.379090668999979, 48.890605041000107 ], [ -123.377292633999929, 48.890560983000107 ], [ -123.377344989, 48.889626861000103 ], [ -123.375325219999979, 48.889577334000037 ], [ -123.37540590499998, 48.888138753000042 ], [ -123.370154423999935, 48.888009801000052 ], [ -123.370356693999923, 48.884410208000112 ], [ -123.371090215999942, 48.884428235 ], [ -123.371097069999905, 48.884306226000056 ], [ -123.371619684999956, 48.884319067 ], [ -123.376539408999989, 48.884439822000097 ], [ -123.376455581999949, 48.885935191000044 ], [ -123.37645192399998, 48.886000422000023 ], [ -123.376641553999917, 48.886005072000081 ], [ -123.379023402999962, 48.88606345000008 ], [ -123.379036066999973, 48.885837325000125 ], [ -123.381402128000033, 48.885895262000076 ], [ -123.381467232999938, 48.884731681000112 ], [ -123.386637458999957, 48.88485810100012 ], [ -123.386733411999955, 48.883139705000112 ], [ -123.392175659999907, 48.883272507000157 ], [ -123.392085904999973, 48.884883257000126 ], [ -123.391384814999952, 48.884561197000096 ], [ -123.39104310399992, 48.88449999100002 ], [ -123.390676879999944, 48.884545496000094 ], [ -123.390378912999921, 48.884951396000048 ], [ -123.389972289999918, 48.885169292000043 ], [ -123.389497687999906, 48.885656406000088 ], [ -123.389444713999978, 48.885854391000102 ], [ -123.389557195999942, 48.886231807000058 ], [ -123.389427325999947, 48.886315058000072 ], [ -123.389190604999939, 48.886466804000044 ], [ -123.389029884999957, 48.886935400000013 ], [ -123.388636690999988, 48.887242991000022 ], [ -123.38816701099995, 48.8882157090001 ], [ -123.387812110999974, 48.889890610000052 ], [ -123.38791510499999, 48.8907450990001 ], [ -123.389191, 48.891756293000086 ], [ -123.389642493999986, 48.891871695000098 ], [ -123.391106422999911, 48.892461304000108 ], [ -123.391394479999974, 48.892676395000095 ], [ -123.391886094999975, 48.892808786000153 ], [ -123.391929186999946, 48.89283970000011 ], [ -123.392710088999976, 48.893399888000054 ], [ -123.394307706999939, 48.893718895000099 ], [ -123.395473808999924, 48.894325593000119 ], [ -123.39577410699998, 48.894576288000074 ], [ -123.396300797999956, 48.895610192000063 ], [ -123.397342891999955, 48.896172797000091 ], [ -123.399525082999972, 48.897712398000117 ], [ -123.399878547999933, 48.897810976000116 ], [ -123.399908001999961, 48.897819189000117 ], [ -123.401681287999949, 48.897767897000051 ], [ -123.402415700999967, 48.897594186000028 ], [ -123.402713802000022, 48.897369107000031 ], [ -123.403820692999943, 48.897391901000084 ], [ -123.403863912999938, 48.897380401000142 ], [ -123.404541895999941, 48.897199609000054 ], [ -123.405514715, 48.896793421000069 ], [ -123.405511490999984, 48.896851581000078 ], [ -123.405749081999929, 48.896857340000061 ], [ -123.405467900999966, 48.896990299000095 ], [ -123.405442284999964, 48.897125599000027 ], [ -123.406319695, 48.897733702000096 ], [ -123.406672279999981, 48.898105699000048 ], [ -123.406557701999972, 48.900172700000077 ], [ -123.406540614999983, 48.900480952000059 ], [ -123.40109632599993, 48.900348884000046 ], [ -123.401126237999947, 48.899810399000025 ], [ -123.400407535999989, 48.899792944000069 ], [ -123.400392146999948, 48.900069904000119 ], [ -123.39833368499994, 48.900019883000056 ], [ -123.396860968999988, 48.899984072000038 ], [ -123.39686543199997, 48.90054758400003 ], [ -123.395637428999919, 48.900551803000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35121584", "BldgCostT": "23593334", "sL_LossRatio": "0.733974213978738", "sL_AssetLoss": "309470", "sL_BldgLoss": "227143", "sL_StrLoss": "107916", "sL_NStrLoss": "119227", "sL_ContLoss": "82327", "geom_point": "0101000020E610000085AD0B05CDE45EC0B7DC57ED337F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.569546672999934, 49.003184837000028 ], [ -123.569710377999982, 49.000040703000046 ], [ -123.565473716, 48.999944638000031 ], [ -123.56559269399996, 48.99766322400005 ], [ -123.563618188999982, 48.997618395000117 ], [ -123.56367936099997, 48.996446269000039 ], [ -123.56325324599996, 48.996436589000012 ], [ -123.563441104999967, 48.992837262000066 ], [ -123.566816116999945, 48.992913879000056 ], [ -123.566948305999986, 48.990377340000123 ], [ -123.569244331, 48.990429402000068 ], [ -123.56928775599999, 48.989595296000033 ], [ -123.573267276999943, 48.989685414000078 ], [ -123.573310453999966, 48.988854654000093 ], [ -123.573045868999955, 48.988848667000028 ], [ -123.573067151999965, 48.988439190000086 ], [ -123.567820506999936, 48.988320332000093 ], [ -123.568007980999965, 48.984720951000064 ], [ -123.570466309999915, 48.984776674000067 ], [ -123.570542363999962, 48.983314850000127 ], [ -123.568133722999946, 48.983260253000047 ], [ -123.568262013999956, 48.980796637000012 ], [ -123.568286983999926, 48.980317087000088 ], [ -123.568768022999933, 48.980797903000131 ], [ -123.56917719499998, 48.980849187000096 ], [ -123.569408902999925, 48.980785103000073 ], [ -123.569944715999938, 48.980873409000047 ], [ -123.570771790999942, 48.980410508000034 ], [ -123.570798196999974, 48.980283704000065 ], [ -123.570453501999935, 48.979988885000097 ], [ -123.570327987999974, 48.979755410000017 ], [ -123.570241781999982, 48.979467693000075 ], [ -123.570351199999934, 48.979405006000043 ], [ -123.570611195999945, 48.979447689000082 ], [ -123.57087501, 48.979896401000119 ], [ -123.571520300999936, 48.980135587000063 ], [ -123.571975594, 48.980503094000049 ], [ -123.572847913999979, 48.981515709000028 ], [ -123.572837012999969, 48.981649597000057 ], [ -123.572566809999969, 48.981957200000124 ], [ -123.5734455899999, 48.982259100000114 ], [ -123.573858494999968, 48.982491315000111 ], [ -123.57511611299999, 48.983716108000088 ], [ -123.575364987999961, 48.98400379300007 ], [ -123.575449693999929, 48.984317099000087 ], [ -123.575781493999912, 48.984684616000067 ], [ -123.575770288999976, 48.984811304000075 ], [ -123.575661913999937, 48.984856892000018 ], [ -123.57469500699996, 48.984006596000043 ], [ -123.574383791999978, 48.984287191000099 ], [ -123.574066183999918, 48.984082104000052 ], [ -123.573890419999913, 48.984082103000119 ], [ -123.573891706999973, 48.984290102000067 ], [ -123.574709697999964, 48.98521151300006 ], [ -123.574876712999952, 48.98562449900006 ], [ -123.574506592999924, 48.985473614000071 ], [ -123.574258295000021, 48.985222895000064 ], [ -123.573861209999961, 48.98516169800012 ], [ -123.573616475999984, 48.985370997000054 ], [ -123.573605001999937, 48.985586085000165 ], [ -123.573786206999941, 48.985882282000034 ], [ -123.574308489999979, 48.985979212000061 ], [ -123.57472440699999, 48.986488998000098 ], [ -123.575025786999959, 48.986577290000071 ], [ -123.575522615999901, 48.986944804000153 ], [ -123.575656618999986, 48.986880706000122 ], [ -123.575774681999931, 48.986466197000041 ], [ -123.576008112999958, 48.986483301000128 ], [ -123.57615961299993, 48.98659870100002 ], [ -123.576452315999958, 48.987038794000028 ], [ -123.57617, 48.987417588000014 ], [ -123.576226379000019, 48.98769679700009 ], [ -123.576724381999952, 48.988188092000037 ], [ -123.577779704999941, 48.989586684000052 ], [ -123.57833309199998, 48.990060896000024 ], [ -123.578868391999961, 48.990364297000106 ], [ -123.579404707999984, 48.990532398000092 ], [ -123.580396303999947, 48.991228791000061 ], [ -123.580656098999924, 48.991191808000025 ], [ -123.580668297999978, 48.99104790400002 ], [ -123.580180098999904, 48.990267497000104 ], [ -123.580343518999939, 48.990293099000063 ], [ -123.580759896999922, 48.990821495000077 ], [ -123.581118782999937, 48.991026604000169 ], [ -123.581267188999959, 48.990963891000071 ], [ -123.581000298999982, 48.990271709000083 ], [ -123.581315600999957, 48.990297412000125 ], [ -123.581975594999946, 48.990744595000095 ], [ -123.582310194999977, 48.991237298000044 ], [ -123.583043979999957, 48.991952296000065 ], [ -123.583795610999971, 48.993110200000011 ], [ -123.58421452099999, 48.995122597000012 ], [ -123.584433909999973, 48.995229391000102 ], [ -123.585501806999972, 48.995340487000107 ], [ -123.585810199999941, 48.995960002000125 ], [ -123.585988501999935, 48.996039801000038 ], [ -123.586495781999986, 48.99606399200006 ], [ -123.586840288999923, 48.996306092000054 ], [ -123.58730859399995, 48.996743305000066 ], [ -123.587745508999959, 48.997748802000139 ], [ -123.588380603999951, 48.998339895000086 ], [ -123.588784315999931, 48.998940893000075 ], [ -123.589155482999942, 49.00021560100005 ], [ -123.589662400999941, 49.001473091999983 ], [ -123.5896395799999, 49.001823499000047 ], [ -123.589260788, 49.002185210000022 ], [ -123.588389266999968, 49.002528221000034 ], [ -123.588320593999953, 49.002201515000088 ], [ -123.585527232999979, 49.002263256000042 ], [ -123.585546466999944, 49.001891403000059 ], [ -123.585582732999953, 49.001190279000092 ], [ -123.58209256499994, 49.001111672000057 ], [ -123.582094947000016, 49.001065689000058 ], [ -123.579173163999897, 49.000999796 ], [ -123.579359814999947, 48.997400465000084 ], [ -123.57985172399998, 48.997411565000114 ], [ -123.579875916999981, 48.996944915000036 ], [ -123.578314877999929, 48.996909684000059 ], [ -123.578338818999924, 48.996448190000081 ], [ -123.577970594999982, 48.996439876000061 ], [ -123.577991863999912, 48.996029907000057 ], [ -123.577680207999961, 48.996022870000033 ], [ -123.577866954999976, 48.992423514000038 ], [ -123.578608000999935, 48.992440247000054 ], [ -123.578662909999977, 48.991381481000104 ], [ -123.578640910999951, 48.991380984000109 ], [ -123.578625000999978, 48.991687764000069 ], [ -123.574645298999926, 48.991597843000129 ], [ -123.574555929999988, 48.993318159000104 ], [ -123.572259755999966, 48.99326621100009 ], [ -123.572216380999976, 48.994100314000057 ], [ -123.568841274999912, 48.994023866000113 ], [ -123.568835582999924, 48.994133193000039 ], [ -123.569261677, 48.994142850000095 ], [ -123.569142887999973, 48.996424279000038 ], [ -123.571117347999945, 48.996469007 ], [ -123.570953750999948, 48.999613161000063 ], [ -123.575190391999939, 48.999709009000057 ], [ -123.575003409999965, 49.003308319000098 ], [ -123.569546672999934, 49.003184837000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252663617", "BldgCostT": "167288880", "sL_LossRatio": "0.755497069827166", "sL_AssetLoss": "1585572", "sL_BldgLoss": "1197895", "sL_StrLoss": "630054", "sL_NStrLoss": "567841", "sL_ContLoss": "387677", "geom_point": "0101000020E6100000811512F6CED55EC0EB615893E1704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.352908419999935, 48.906195004000033 ], [ -123.352729608999951, 48.905996986000041 ], [ -123.352591183999948, 48.905853096000094 ], [ -123.351689690999962, 48.905811800000059 ], [ -123.349012706999972, 48.905387397000091 ], [ -123.34591289199993, 48.90511831200007 ], [ -123.344805991999948, 48.904770707000111 ], [ -123.344669591999946, 48.904672499000057 ], [ -123.345008599999957, 48.904508694000164 ], [ -123.345006402999957, 48.904293602000052 ], [ -123.344229193999965, 48.904134111000069 ], [ -123.343954113999928, 48.903802307000056 ], [ -123.344061683999954, 48.903577291000047 ], [ -123.34454990499998, 48.903394983000105 ], [ -123.344085008999954, 48.903027492000056 ], [ -123.3438627029999, 48.902426493000085 ], [ -123.343642408999983, 48.902255584000066 ], [ -123.343286212999914, 48.902140206000119 ], [ -123.34306759399999, 48.902158715000091 ], [ -123.342893186999945, 48.902356698000069 ], [ -123.342688496, 48.902339608000077 ], [ -123.342413209999933, 48.901989293000028 ], [ -123.342003006, 48.901828311000052 ], [ -123.342013900999959, 48.901613298000079 ], [ -123.341699111999944, 48.901388196000013 ], [ -123.340781196999941, 48.901013695000117 ], [ -123.340821808999934, 48.900905397000081 ], [ -123.341067001999988, 48.900814287000088 ], [ -123.341763211999961, 48.900812905000066 ], [ -123.341899701999935, 48.900748793000048 ], [ -123.341990508999984, 48.900100790000067 ], [ -123.341714381999935, 48.899751803000107 ], [ -123.34154969099994, 48.899635009000114 ], [ -123.340552299999928, 48.89936869800011 ], [ -123.339500086, 48.899209197000069 ], [ -123.339008805, 48.899031187000077 ], [ -123.338789188999968, 48.898851695000111 ], [ -123.33881549100002, 48.898707900000019 ], [ -123.339045295999981, 48.898545489000092 ], [ -123.338922004999986, 48.898383210000055 ], [ -123.33893339799999, 48.898077009000083 ], [ -123.339204493999958, 48.897869006000086 ], [ -123.339136509999918, 48.897753701000106 ], [ -123.338438493999959, 48.897494492000057 ], [ -123.33843768199992, 48.897367697000099 ], [ -123.338886911999964, 48.897313609 ], [ -123.338981998999913, 48.897230989000086 ], [ -123.338721590999953, 48.896971788 ], [ -123.338637001, 48.896504600000064 ], [ -123.336942383999897, 48.896140003 ], [ -123.336804479999941, 48.89596909300009 ], [ -123.335957787, 48.895719906000068 ], [ -123.335423401999961, 48.895379494000032 ], [ -123.335326502999919, 48.89525419900005 ], [ -123.335462612999933, 48.895164492000077 ], [ -123.336553099999918, 48.895034912 ], [ -123.336743093999985, 48.894809806000076 ], [ -123.336768501999984, 48.894467989000084 ], [ -123.336369486999928, 48.894144708000098 ], [ -123.335467301999955, 48.893958109000053 ], [ -123.33501629, 48.893698904000075 ], [ -123.334892196999959, 48.893473888000123 ], [ -123.334495406999963, 48.893214685 ], [ -123.334574893999914, 48.89310651400006 ], [ -123.335283609, 48.892815886000058 ], [ -123.335515289999961, 48.892815902000052 ], [ -123.335854091, 48.892697712000036 ], [ -123.336128191999975, 48.892733294000088 ], [ -123.337149804999981, 48.892459902000027 ], [ -123.337379406999958, 48.892279003000041 ], [ -123.338129100999936, 48.892169304000035 ], [ -123.340000004999965, 48.892317489000042 ], [ -123.341839407999927, 48.89213230000005 ], [ -123.341867814999958, 48.892086708000079 ], [ -123.340829511999956, 48.891873109000088 ], [ -123.339052211999956, 48.891347599000028 ], [ -123.338585819999963, 48.891017201000082 ], [ -123.337518093999961, 48.890515797 ], [ -123.33581227900001, 48.89022389400003 ], [ -123.335851105999922, 48.890152684000022 ], [ -123.33630168699996, 48.890141290000052 ], [ -123.336380113999965, 48.889763897000094 ], [ -123.336066392999953, 48.889684088000095 ], [ -123.336011505999977, 48.889504607000077 ], [ -123.335846299999986, 48.889396413000043 ], [ -123.33546349099997, 48.889271092000044 ], [ -123.335164913999947, 48.889372208000083 ], [ -123.334714396999942, 48.889372198000082 ], [ -123.333811514999965, 48.889122992000068 ], [ -123.332868509999912, 48.888721296000085 ], [ -123.332473084999918, 48.888632992000048 ], [ -123.33228759299999, 48.888454106000047 ], [ -123.332129008999956, 48.888301188000142 ], [ -123.331553900999921, 48.888096095000058 ], [ -123.331553886999956, 48.88791519200003 ], [ -123.331346608999951, 48.887673094000078 ], [ -123.33148270199996, 48.887583394000032 ], [ -123.33146840299996, 48.887412505 ], [ -123.331686608999945, 48.887304188000066 ], [ -123.33070020699995, 48.886767284000108 ], [ -123.330614122, 48.886637045000072 ], [ -123.330438488, 48.886371411000034 ], [ -123.330545312999973, 48.886065204000055 ], [ -123.330094494000022, 48.885922815000079 ], [ -123.329545993999972, 48.885528291000135 ], [ -123.328779594000011, 48.885260500000079 ], [ -123.328506380999897, 48.884937202000096 ], [ -123.328438020999954, 48.88465156400008 ], [ -123.328420482999917, 48.884578293000068 ], [ -123.328119313999963, 48.884138194000094 ], [ -123.328170712999963, 48.883777893000108 ], [ -123.327692713999966, 48.883599891000067 ], [ -123.327568320999944, 48.883401907000035 ], [ -123.32700750199993, 48.883115586000024 ], [ -123.32617049299995, 48.88237221000005 ], [ -123.326045123999947, 48.882074500000058 ], [ -123.326097686999944, 48.881697105000079 ], [ -123.32595820099999, 48.881247097000077 ], [ -123.325778423999935, 48.88105910200008 ], [ -123.325505501999928, 48.881006385000013 ], [ -123.32561350899999, 48.880852604000083 ], [ -123.325504105, 48.880564888000087 ], [ -123.324927579999979, 48.87998239300007 ], [ -123.324571186999947, 48.879758810000148 ], [ -123.324283606999984, 48.879731701000019 ], [ -123.323900178999978, 48.879543700000035 ], [ -123.32305470499989, 48.879357087000102 ], [ -123.32300100599997, 48.879465405000062 ], [ -123.322934494999942, 48.879708900000111 ], [ -123.32306049099999, 48.880186014000131 ], [ -123.323250418999947, 48.88031140300015 ], [ -123.323883098999929, 48.881127411000136 ], [ -123.324858489999897, 48.881935001000102 ], [ -123.325380696999929, 48.882563086000097 ], [ -123.325409404999903, 48.882859289000152 ], [ -123.32493279599997, 48.88298749100003 ], [ -123.324878605999956, 48.883104301000074 ], [ -123.32526189499994, 48.88327369100012 ], [ -123.326004280999939, 48.884143896000111 ], [ -123.326279307999982, 48.884629587000077 ], [ -123.32615909899999, 48.884898786000107 ], [ -123.326064693999982, 48.884927199000074 ], [ -123.325680284999919, 48.884774804000074 ], [ -123.325408405999966, 48.884991302000088 ], [ -123.325493205999976, 48.885197796000092 ], [ -123.326094586999929, 48.885440004000024 ], [ -123.326039190999936, 48.885521096000033 ], [ -123.325876377999961, 48.885431395000069 ], [ -123.325303698999932, 48.88541429100011 ], [ -123.325758576999931, 48.886087995000075 ], [ -123.324815097999959, 48.885928497000116 ], [ -123.324637808999967, 48.885965492000118 ], [ -123.324802514999959, 48.886153489999984 ], [ -123.325378298999937, 48.886485310000069 ], [ -123.325516105999938, 48.886708901000134 ], [ -123.325476289000022, 48.886763006000137 ], [ -123.325120101999985, 48.886745985000111 ], [ -123.324682998999961, 48.886666211000083 ], [ -123.324658108000023, 48.886765890000056 ], [ -123.325080582999973, 48.886953892000065 ], [ -123.325054390999938, 48.88705219700006 ], [ -123.324754510999952, 48.887035105000017 ], [ -123.32282747799999, 48.88646539700008 ], [ -123.32241700499999, 48.886429801000091 ], [ -123.32187169299999, 48.886233193000081 ], [ -123.321352804999933, 48.886144913000145 ], [ -123.321077503999973, 48.885885692000031 ], [ -123.321349697999949, 48.885758997000096 ], [ -123.321620415999945, 48.885442800000092 ], [ -123.321605292999948, 48.885325989000052 ], [ -123.321878106999975, 48.885190695000055 ], [ -123.321930202000019, 48.884757811000092 ], [ -123.321736712999936, 48.88457830100004 ], [ -123.321313085999947, 48.884418807000017 ], [ -123.321133682999985, 48.884139701000031 ], [ -123.320573715999913, 48.884051301000071 ], [ -123.319973292999961, 48.883837709 ], [ -123.319451305999976, 48.883397600000094 ], [ -123.319098008999958, 48.883443200000052 ], [ -123.318495900999935, 48.88333780100006 ], [ -123.31814201, 48.883455992000108 ], [ -123.317705882999945, 48.883393392000109 ], [ -123.317684054000011, 48.883367718000159 ], [ -123.317569016999954, 48.883232407000122 ], [ -123.317594000999989, 48.883015886000067 ], [ -123.317264597999937, 48.882639986000065 ], [ -123.316909909999978, 48.882496092000032 ], [ -123.316580887999976, 48.882461896000052 ], [ -123.316403312999952, 48.882326590000112 ], [ -123.315186811, 48.881907900000058 ], [ -123.31488680899993, 48.881755498000089 ], [ -123.314790297999977, 48.881584603000064 ], [ -123.313600611999917, 48.881281296000047 ], [ -123.312929599999904, 48.880825498000071 ], [ -123.312050500999987, 48.87996389900011 ], [ -123.312102805999984, 48.879613489000128 ], [ -123.312934713999965, 48.879556507000046 ], [ -123.31271522, 48.879170603 ], [ -123.313165120999912, 48.879115001000045 ], [ -123.313408897999977, 48.879033901000128 ], [ -123.313422596999899, 48.878961202000042 ], [ -123.313326911999965, 48.878800286000114 ], [ -123.312984108999956, 48.878620806000136 ], [ -123.312970981999982, 48.878549595000081 ], [ -123.313188298999975, 48.878412904000065 ], [ -123.312216193999973, 48.877938615000048 ], [ -123.312173994999981, 48.877786311000143 ], [ -123.312309401999983, 48.877686593000149 ], [ -123.312800108999966, 48.877605392000106 ], [ -123.313291998999929, 48.877631009000055 ], [ -123.315231298, 48.878065406000076 ], [ -123.315939421999957, 48.878118101000098 ], [ -123.316349230999919, 48.877879085000039 ], [ -123.316620805999918, 48.877720691000086 ], [ -123.31746570599995, 48.877799101000051 ], [ -123.317885809999922, 48.8774117050001 ], [ -123.317925313999979, 48.87713249300004 ], [ -123.317337101999954, 48.876890402000079 ], [ -123.317322200999939, 48.876792191000021 ], [ -123.317622902999958, 48.87675510200004 ], [ -123.318591695999984, 48.876941697000063 ], [ -123.319040886999971, 48.876571400000046 ], [ -123.318708897999969, 48.876068606000025 ], [ -123.31881808499999, 48.875897705000078 ], [ -123.318585303999924, 48.875862099000166 ], [ -123.318557184999975, 48.875745396000141 ], [ -123.318448787999941, 48.875726793000062 ], [ -123.318243587999973, 48.875835098000096 ], [ -123.317943188999934, 48.87577379800009 ], [ -123.31746541399994, 48.875396400000085 ], [ -123.315496185999976, 48.874728493000056 ], [ -123.315263010999942, 48.874467806000119 ], [ -123.314511304999911, 48.874190095000067 ], [ -123.314129405999921, 48.874191493000069 ], [ -123.313884020999964, 48.874076201000108 ], [ -123.313474015999958, 48.874013492000131 ], [ -123.313229300999922, 48.874077606000064 ], [ -123.313037591999915, 48.874042004000131 ], [ -123.312311280999936, 48.873584800000089 ], [ -123.311926289999946, 48.873181796000047 ], [ -123.310792583999927, 48.872698994000075 ], [ -123.310518082999963, 48.872483898000048 ], [ -123.310544489999941, 48.87232159000007 ], [ -123.310760805999948, 48.872167694000041 ], [ -123.310363375999927, 48.871673493000046 ], [ -123.310743800999944, 48.871475599000107 ], [ -123.312025191, 48.871408608000067 ], [ -123.314048322999952, 48.872023903000063 ], [ -123.31454927799993, 48.871563896000048 ], [ -123.314683082999963, 48.871320301000068 ], [ -123.314615406999934, 48.871140886000084 ], [ -123.314763479999911, 48.870951496000053 ], [ -123.314638299999928, 48.870736404000134 ], [ -123.314433177999959, 48.870592596000087 ], [ -123.313517804999975, 48.870324800000041 ], [ -123.312807296999935, 48.869975896000078 ], [ -123.312519102999929, 48.869562905000095 ], [ -123.31283068299993, 48.869408992000025 ], [ -123.312831095, 48.869329293000092 ], [ -123.312350883999954, 48.868978897000083 ], [ -123.31169458699999, 48.868765301000067 ], [ -123.311434404999915, 48.868604405000106 ], [ -123.311118575999956, 48.868235495000143 ], [ -123.31144479699995, 48.868090205000151 ], [ -123.312428825999973, 48.868313804000124 ], [ -123.312796393999946, 48.868258299000026 ], [ -123.313354105999963, 48.867959210000024 ], [ -123.313775602999939, 48.86794919600009 ], [ -123.314022099999988, 48.867859493000076 ], [ -123.314278695000013, 48.867624507000095 ], [ -123.314290206999914, 48.867210106000066 ], [ -123.313891596999966, 48.866609113000074 ], [ -123.31402598599999, 48.866357 ], [ -123.313516000999968, 48.865449701000067 ], [ -123.313814015999981, 48.86516920800004 ], [ -123.314247908999917, 48.864979800000086 ], [ -123.314330186999939, 48.864844498000082 ], [ -123.313618294999955, 48.864351700000014 ], [ -123.31310719599999, 48.863544202000092 ], [ -123.313260379999932, 48.863386046000102 ], [ -123.313352801999898, 48.863290603000067 ], [ -123.313296601999966, 48.863102598000111 ], [ -123.313622518, 48.862867693000048 ], [ -123.313361699999987, 48.862508792000014 ], [ -123.313400700999978, 48.862373509000044 ], [ -123.313618216999927, 48.862255190000035 ], [ -123.313479910999916, 48.862085799000042 ], [ -123.314719297999957, 48.861614410000094 ], [ -123.315874943999958, 48.861390436000065 ], [ -123.316556707999951, 48.861258289000077 ], [ -123.317333106999939, 48.861030391000035 ], [ -123.317342134999976, 48.861032356000059 ], [ -123.317228945999929, 48.86300795500005 ], [ -123.317550398999941, 48.863016020000082 ], [ -123.317480938999935, 48.864228445000023 ], [ -123.322211007999911, 48.864347 ], [ -123.322151790999968, 48.865382373000109 ], [ -123.32472728099998, 48.865446837000029 ], [ -123.324692441999943, 48.866056560000025 ], [ -123.327560117999965, 48.86612826500005 ], [ -123.327507143000034, 48.867056328000018 ], [ -123.327432877999968, 48.868357297000045 ], [ -123.328869426999972, 48.868393188000084 ], [ -123.328942246999972, 48.867116832000072 ], [ -123.328945515999976, 48.867059543000046 ], [ -123.329627070999948, 48.867076564000087 ], [ -123.329675231999914, 48.866232158000059 ], [ -123.335115351999931, 48.866367865000022 ], [ -123.335098761999987, 48.866659331000058 ], [ -123.33648352199998, 48.866693830000024 ], [ -123.336387093999946, 48.868388765000091 ], [ -123.336278723999939, 48.870293461000102 ], [ -123.335344943999971, 48.870270199000096 ], [ -123.335301726999944, 48.871029483000022 ], [ -123.335111956999938, 48.871024754000054 ], [ -123.335042983999955, 48.872236386000054 ], [ -123.334562677999941, 48.872224417000069 ], [ -123.33452549799992, 48.87287739700011 ], [ -123.334197497999952, 48.87286922200007 ], [ -123.334160419999975, 48.873520303000099 ], [ -123.332355432999961, 48.873475298000088 ], [ -123.332348152999927, 48.873603047000074 ], [ -123.329370581999967, 48.873528740000062 ], [ -123.329321791999973, 48.8743839260001 ], [ -123.332028154999975, 48.8744514690001 ], [ -123.331822980999945, 48.878051047000085 ], [ -123.331819606999929, 48.878050963000078 ], [ -123.331766929, 48.878975046000015 ], [ -123.326704964000029, 48.878848659000049 ], [ -123.32669663199998, 48.878994544000115 ], [ -123.328555057999935, 48.87904097400007 ], [ -123.328509919999959, 48.879831829000068 ], [ -123.331353306999986, 48.879902802000053 ], [ -123.331333803999939, 48.880244851000064 ], [ -123.332220996, 48.880266980000066 ], [ -123.332209440999961, 48.880469718000057 ], [ -123.333001181999933, 48.880489460000071 ], [ -123.332964702999931, 48.881129628000082 ], [ -123.334104279999934, 48.881158033000084 ], [ -123.334033931999926, 48.882393087000061 ], [ -123.334216351999942, 48.882397633000089 ], [ -123.334170212999979, 48.883207665000022 ], [ -123.334906776, 48.883226017000048 ], [ -123.334892504, 48.883476660000099 ], [ -123.336952719999942, 48.883527965000084 ], [ -123.33685716299999, 48.88520722300008 ], [ -123.337485201, 48.885222855000052 ], [ -123.33739717899999, 48.886769975 ], [ -123.341104065999971, 48.886862164000036 ], [ -123.341039084, 48.888005854000028 ], [ -123.341682922999922, 48.888021853000112 ], [ -123.341841584999926, 48.885228613000017 ], [ -123.347283947999983, 48.885363697000052 ], [ -123.347143538999887, 48.887840657 ], [ -123.347883966999987, 48.887859014000057 ], [ -123.348072574999961, 48.884530763000093 ], [ -123.348748834999981, 48.884547524000055 ], [ -123.348914842999974, 48.881616921000095 ], [ -123.348674013999968, 48.88161095300007 ], [ -123.348877907999935, 48.878011363000027 ], [ -123.349463258999918, 48.87802587000003 ], [ -123.349481967999949, 48.877695465000066 ], [ -123.346478774000019, 48.877621006000076 ], [ -123.346519851999957, 48.876896392000084 ], [ -123.343221702000022, 48.876814523000128 ], [ -123.343371314999928, 48.874178402000069 ], [ -123.343425993999972, 48.87321491600003 ], [ -123.346384324999988, 48.873288354000081 ], [ -123.34643336799995, 48.872423170000026 ], [ -123.346382882999976, 48.87242191900004 ], [ -123.346486528999918, 48.870593409000087 ], [ -123.343741000999941, 48.870525253000025 ], [ -123.343746695999982, 48.870424867000033 ], [ -123.342190850999913, 48.870386213000081 ], [ -123.342279667999989, 48.868821696000076 ], [ -123.341789230999936, 48.868809506000048 ], [ -123.341803804999955, 48.868552812000118 ], [ -123.341461334000016, 48.868544299000121 ], [ -123.341572491999941, 48.866586726000051 ], [ -123.343303712999926, 48.866812704000068 ], [ -123.343711284000022, 48.866604802000047 ], [ -123.344121100999985, 48.866648908000087 ], [ -123.344543184999949, 48.866566294000101 ], [ -123.345075997999942, 48.866573404000064 ], [ -123.345362687999952, 48.866654606000026 ], [ -123.345376589999887, 48.866788493000115 ], [ -123.345539895999963, 48.866869710000046 ], [ -123.34619501199991, 48.866893904000072 ], [ -123.346700899999973, 48.867019201000119 ], [ -123.346811410999919, 48.867071887000087 ], [ -123.347137904999983, 48.867034884000098 ], [ -123.347258105999984, 48.866882510000067 ], [ -123.347953194999945, 48.866619008000015 ], [ -123.348223887999964, 48.866554890000067 ], [ -123.348348795000021, 48.866627600000122 ], [ -123.348741897999972, 48.866346994 ], [ -123.349313387999985, 48.86614759600009 ], [ -123.349895694999958, 48.865560786000117 ], [ -123.350000902999938, 48.865227601000058 ], [ -123.349699892999922, 48.865039605000078 ], [ -123.349588787999934, 48.864607991000106 ], [ -123.34992661699999, 48.864103895000014 ], [ -123.3502515099999, 48.863922998000113 ], [ -123.35031848399997, 48.863652393000088 ], [ -123.350262501999978, 48.863437309000048 ], [ -123.350028101999897, 48.863257900000065 ], [ -123.350191298999931, 48.863004414000052 ], [ -123.349983674999976, 48.862718094000051 ], [ -123.350212194, 48.862249510000083 ], [ -123.350219156999955, 48.862195100000037 ], [ -123.353561223999947, 48.862277868000028 ], [ -123.353451326999945, 48.864222230000053 ], [ -123.354074822999962, 48.864237659000032 ], [ -123.354049197, 48.86469112900005 ], [ -123.35408684899997, 48.864692060000067 ], [ -123.354070294999957, 48.864985014000077 ], [ -123.35471824499993, 48.86500104400011 ], [ -123.354514856999941, 48.868600721000071 ], [ -123.354037509999927, 48.868588911000074 ], [ -123.354006965999972, 48.86912933100006 ], [ -123.353025942999977, 48.869105054000102 ], [ -123.352977887999927, 48.869954991000014 ], [ -123.355021434999983, 48.870005550000101 ], [ -123.354839527999928, 48.873225055000042 ], [ -123.357199751999971, 48.873283402000027 ], [ -123.357162282999965, 48.873947096000109 ], [ -123.357413284999978, 48.873953298000053 ], [ -123.357210064999975, 48.877552927000046 ], [ -123.35702446399992, 48.877548341000136 ], [ -123.356965324, 48.878595694000097 ], [ -123.362215294999899, 48.878725285000101 ], [ -123.36220954499997, 48.878827309000087 ], [ -123.363676178999981, 48.878863465000059 ], [ -123.363820006999944, 48.876309724000052 ], [ -123.369261394999938, 48.876443692000059 ], [ -123.369059075999942, 48.880043330000021 ], [ -123.366975610999987, 48.87999206700006 ], [ -123.366812945999982, 48.882883476000124 ], [ -123.363389871999928, 48.882799166000048 ], [ -123.36337741599999, 48.88302026100007 ], [ -123.360752460999933, 48.88295553300005 ], [ -123.35793528, 48.882885994000056 ], [ -123.357960808999948, 48.882433773000116 ], [ -123.35744647099996, 48.882421069000095 ], [ -123.357328735999957, 48.88450619200006 ], [ -123.35757291499999, 48.884512223000087 ], [ -123.357377538, 48.887972310000109 ], [ -123.361037299999964, 48.888062642000151 ], [ -123.360859443999985, 48.891216353000061 ], [ -123.363675797000028, 48.891285781000107 ], [ -123.363641641999934, 48.891892014000149 ], [ -123.365846856999923, 48.891946325000049 ], [ -123.365834104999962, 48.892172845000033 ], [ -123.366645041999945, 48.892192806000047 ], [ -123.366442452999948, 48.895792347000068 ], [ -123.365960016999949, 48.89578047400007 ], [ -123.36473424199994, 48.89575029500007 ], [ -123.364644967999936, 48.897335286000043 ], [ -123.359201163999941, 48.897201087000028 ], [ -123.359210755999953, 48.8970311590001 ], [ -123.358060133999942, 48.897002758000085 ], [ -123.358090877000038, 48.89645829300013 ], [ -123.357319239999939, 48.896439240000063 ], [ -123.357347869999927, 48.895932348000038 ], [ -123.355852217999924, 48.89589540300004 ], [ -123.355858439999935, 48.895785314000122 ], [ -123.354740085999964, 48.895757674000031 ], [ -123.354805546999941, 48.894599781000117 ], [ -123.352376771999928, 48.89453971500015 ], [ -123.352383441999976, 48.894421826000091 ], [ -123.351878039, 48.894409320000051 ], [ -123.351851319999966, 48.894881407000028 ], [ -123.349758268999906, 48.894829589000082 ], [ -123.349750872999934, 48.894829406000049 ], [ -123.349752371999912, 48.895044329000029 ], [ -123.349754172999923, 48.895302607000133 ], [ -123.35016346799992, 48.895301366000091 ], [ -123.350167879999972, 48.895933098000071 ], [ -123.351275537999953, 48.895960520000109 ], [ -123.351071749999974, 48.899560012000066 ], [ -123.350310986999929, 48.899541179000046 ], [ -123.350297232999978, 48.899784031000088 ], [ -123.349375943999959, 48.899761217000091 ], [ -123.349376578999966, 48.899852387000095 ], [ -123.351058784, 48.899894038000092 ], [ -123.350874099999956, 48.903155577000092 ], [ -123.350945684999942, 48.903157349000054 ], [ -123.350941490999901, 48.903231418000132 ], [ -123.35143117199999, 48.903243537000023 ], [ -123.351428096999911, 48.903297873000085 ], [ -123.351886859, 48.903309225000022 ], [ -123.351880912999945, 48.903414262000076 ], [ -123.352456844999949, 48.903428510000033 ], [ -123.352448004999957, 48.90358470000011 ], [ -123.353110830999952, 48.903601094000102 ], [ -123.353107268999949, 48.903664041000106 ], [ -123.35538855499999, 48.903720434000043 ], [ -123.355363610999973, 48.904161644000098 ], [ -123.357284313999941, 48.904209085000041 ], [ -123.357157494999939, 48.906453810000102 ], [ -123.35667459199999, 48.906254789000059 ], [ -123.356580792000017, 48.906489799000077 ], [ -123.35614540200001, 48.906670593000051 ], [ -123.354370995999901, 48.906613712000087 ], [ -123.353879677999885, 48.90648829600012 ], [ -123.353440396999972, 48.906264713000056 ], [ -123.352908419999935, 48.906195004000033 ] ], [ [ -123.343727939999951, 48.897479720000028 ], [ -123.343754087999969, 48.897019145000122 ], [ -123.343106123999988, 48.897003059000099 ], [ -123.34308894599999, 48.89730556700006 ], [ -123.343494307999933, 48.897315630000065 ], [ -123.343484951999983, 48.897480444000088 ], [ -123.343727939999951, 48.897479720000028 ] ], [ [ -123.34310306, 48.89698924400011 ], [ -123.343109908999978, 48.896868624000042 ], [ -123.34258949299999, 48.896855702000032 ], [ -123.342582642999929, 48.896976323000032 ], [ -123.34310306, 48.89698924400011 ] ], [ [ -123.326958923999882, 48.872561369000117 ], [ -123.326978149999945, 48.872224679000041 ], [ -123.326758969999958, 48.872219201000085 ], [ -123.326774594999961, 48.871945585000063 ], [ -123.326344660999951, 48.871934838000065 ], [ -123.326309803999948, 48.872545143000053 ], [ -123.326958923999882, 48.872561369000117 ] ], [ [ -123.323792920999935, 48.87019383800002 ], [ -123.323824603, 48.869639605000081 ], [ -123.322351625999943, 48.869602735000107 ], [ -123.322319924999945, 48.870156968000067 ], [ -123.323792920999935, 48.87019383800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.782352941176471", "sL_AssetLoss": "5100", "sL_BldgLoss": "3990", "sL_StrLoss": "2200", "sL_NStrLoss": "1790", "sL_ContLoss": "1110", "geom_point": "0101000020E61000002393DFE4EFE75EC040D31A9C6B7D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.626437112999952, 48.981470102000074 ], [ -123.625169788999969, 48.980685400000041 ], [ -123.624406606999912, 48.980833483000019 ], [ -123.623583510999964, 48.980685403000066 ], [ -123.62271669299993, 48.980212496000078 ], [ -123.622027755999923, 48.979584828000036 ], [ -123.622103182, 48.978103432000111 ], [ -123.622529400999952, 48.978388108000054 ], [ -123.622968788999941, 48.978566210000075 ], [ -123.623666381999925, 48.978633099000085 ], [ -123.624411900999931, 48.979078893000072 ], [ -123.625970912999932, 48.98034779100005 ], [ -123.625890808999941, 48.980393403000086 ], [ -123.625628605999978, 48.980278105000082 ], [ -123.625602306999895, 48.980404799000034 ], [ -123.627132901999971, 48.981349094000088 ], [ -123.62712269, 48.981433612000082 ], [ -123.627094713999952, 48.981665204000095 ], [ -123.626437112999952, 48.981470102000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.807053221566391", "sL_AssetLoss": "20161", "sL_BldgLoss": "16271", "sL_StrLoss": "9191", "sL_NStrLoss": "7080", "sL_ContLoss": "3890", "geom_point": "0101000020E61000002026235FB0D85EC02598C51FA0744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.382453201999937, 48.911898949000104 ], [ -123.382621032999978, 48.908899881000082 ], [ -123.384348110999966, 48.908942097000079 ], [ -123.388066263999974, 48.90903288600002 ], [ -123.388003586, 48.910155332000116 ], [ -123.387975443999935, 48.910659238000065 ], [ -123.388669642999901, 48.910676175000042 ], [ -123.388468666999927, 48.914275653000061 ], [ -123.387979364999978, 48.914263716000107 ], [ -123.387424602999886, 48.914009595000067 ], [ -123.385861795, 48.913088112000032 ], [ -123.384300691999911, 48.912435811000094 ], [ -123.38267472299999, 48.912010005000084 ], [ -123.382453201999937, 48.911898949000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1087500", "BldgCostT": "750000", "sL_LossRatio": "0.76661955255392", "sL_AssetLoss": "16909.3", "sL_BldgLoss": "12963", "sL_StrLoss": "6079", "sL_NStrLoss": "6884", "sL_ContLoss": "3946.3", "geom_point": "0101000020E6100000EC2B72FC8EE45EC002401DA836814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.57205469099999, 49.010098200000073 ], [ -123.571794095999948, 49.010036914000082 ], [ -123.571356717999961, 49.010065398000094 ], [ -123.57114192099999, 49.010283298000076 ], [ -123.570433399999899, 49.010663610000087 ], [ -123.569982402999969, 49.01063930600003 ], [ -123.569049579999927, 49.009240792000071 ], [ -123.568622214999948, 49.008819194000104 ], [ -123.568482010999915, 49.008557790000062 ], [ -123.573380200999921, 49.008668681000103 ], [ -123.573254431999942, 49.011087464000077 ], [ -123.573227375999963, 49.011028196000034 ], [ -123.572938212999972, 49.01071480600006 ], [ -123.57205469099999, 49.010098200000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44275583", "BldgCostT": "29093333", "sL_LossRatio": "0.718808780985876", "sL_AssetLoss": "440725", "sL_BldgLoss": "316797", "sL_StrLoss": "150727", "sL_NStrLoss": "166070", "sL_ContLoss": "123928", "geom_point": "0101000020E6100000A6C5CF3502E05EC069CFB8B2BC784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.507686823999933, 48.951000652000062 ], [ -123.507768810999977, 48.949463337000076 ], [ -123.504848914999926, 48.949395382 ], [ -123.504867818999941, 48.949041316 ], [ -123.501519616999929, 48.948963294000073 ], [ -123.501712039000012, 48.945363807000035 ], [ -123.503227301999942, 48.945399130000048 ], [ -123.503232186999938, 48.94530770100009 ], [ -123.502766084999962, 48.945296838000083 ], [ -123.502801727999923, 48.944629743000078 ], [ -123.497571441, 48.944507703000113 ], [ -123.49760062199999, 48.943962661000064 ], [ -123.496565536999952, 48.943938478000078 ], [ -123.496660089999978, 48.942173122000042 ], [ -123.496131627999958, 48.942160772000108 ], [ -123.49615521199992, 48.941720503000056 ], [ -123.494827125, 48.941689454000056 ], [ -123.494780692999939, 48.942555765000044 ], [ -123.494127646999942, 48.94254049200012 ], [ -123.49410628699998, 48.942938880000078 ], [ -123.490907989000021, 48.942864021000062 ], [ -123.489691696999984, 48.942835527000064 ], [ -123.488656810999956, 48.942811273000103 ], [ -123.488710415999932, 48.941813593000113 ], [ -123.487828257999965, 48.941792910000146 ], [ -123.487769252999954, 48.942890718000058 ], [ -123.487750751999954, 48.943234935000092 ], [ -123.486536498999968, 48.943206454000062 ], [ -123.483688288999943, 48.943139593000112 ], [ -123.48230125799995, 48.943107005000094 ], [ -123.482313048999941, 48.94288810000009 ], [ -123.482362219999914, 48.941975232000019 ], [ -123.47824108099995, 48.941878301000017 ], [ -123.478249061999975, 48.941730357000068 ], [ -123.47665243299997, 48.941692761000084 ], [ -123.476846738999967, 48.938093277000057 ], [ -123.482295633999939, 48.938221485000085 ], [ -123.482287663999941, 48.938369431000126 ], [ -123.483700438999932, 48.938402627000038 ], [ -123.483743290999939, 48.937606544000118 ], [ -123.488038482000022, 48.937707354000075 ], [ -123.489192147999944, 48.937734402000025 ], [ -123.489188558999984, 48.937801225 ], [ -123.490227613999963, 48.937825575000069 ], [ -123.490217604999941, 48.938011988000085 ], [ -123.490728717999914, 48.938023962000067 ], [ -123.490747569999911, 48.937672776000106 ], [ -123.489921469999899, 48.937653421000064 ], [ -123.489944671, 48.93722133100011 ], [ -123.488876458999982, 48.937196294000032 ], [ -123.489051712999952, 48.933933583000083 ], [ -123.489604594999946, 48.934139409000089 ], [ -123.490056107000015, 48.934335887000039 ], [ -123.490703316999884, 48.934899901000108 ], [ -123.490963209999961, 48.935006698000045 ], [ -123.491227380999987, 48.935330002000036 ], [ -123.491459711999937, 48.935337093000101 ], [ -123.49178408899995, 48.93515630400001 ], [ -123.494360413999971, 48.935945294000071 ], [ -123.494866576999954, 48.936212994000094 ], [ -123.494870789999979, 48.936456595000095 ], [ -123.495077297999913, 48.936698703000054 ], [ -123.495555694999965, 48.93672289700006 ], [ -123.49598058399999, 48.936848196000028 ], [ -123.497327003999928, 48.937741206000091 ], [ -123.497585799999982, 48.937739790000137 ], [ -123.497912619, 48.937531798000123 ], [ -123.49803399299995, 48.937531795000098 ], [ -123.498993811999952, 48.937761095000063 ], [ -123.49972019199997, 48.938045988000056 ], [ -123.500193124999953, 48.938322311000029 ], [ -123.500964139999894, 48.939605702000094 ], [ -123.500924373999965, 48.939765781000105 ], [ -123.50061060199999, 48.939696593000129 ], [ -123.500433093999959, 48.939760715000048 ], [ -123.500600797999979, 48.940173713000036 ], [ -123.500575984999941, 48.940452902000047 ], [ -123.500705695999955, 48.940645992000022 ], [ -123.500524113999973, 48.94137703500008 ], [ -123.500790852999927, 48.941469049 ], [ -123.501395001999953, 48.941585109000094 ], [ -123.501408097999985, 48.941609299000056 ], [ -123.501463206999944, 48.941699104000108 ], [ -123.502297691999956, 48.941794512000058 ], [ -123.502840808999949, 48.941595107000111 ], [ -123.503414602999982, 48.941619304000014 ], [ -123.505828201999947, 48.942489485000074 ], [ -123.507991598, 48.943110497000085 ], [ -123.509606197999986, 48.943480792000059 ], [ -123.510641106999984, 48.943205906000088 ], [ -123.510746203999986, 48.942728791000079 ], [ -123.511069809999981, 48.942385506000072 ], [ -123.511360125999929, 48.94231570300007 ], [ -123.511347529999952, 48.942552243000115 ], [ -123.513198392, 48.942595223000055 ], [ -123.513476919999931, 48.942681800000102 ], [ -123.513905977, 48.942870416000083 ], [ -123.51389435099999, 48.943089005000111 ], [ -123.514431583999936, 48.943101471000077 ], [ -123.515177793999939, 48.943429495000032 ], [ -123.51580613299997, 48.943590186000094 ], [ -123.515779658, 48.944088326000106 ], [ -123.517152012999958, 48.944120139000063 ], [ -123.517576594999966, 48.944299693000069 ], [ -123.52019259799998, 48.945039506000036 ], [ -123.52004659399999, 48.94779113000002 ], [ -123.519183670999922, 48.947771153000112 ], [ -123.519136589999931, 48.948658085000091 ], [ -123.519025619, 48.950748446000091 ], [ -123.515444512999963, 48.95066546900005 ], [ -123.515421296999961, 48.951102133000063 ], [ -123.513141458999925, 48.951049245000057 ], [ -123.513137306999951, 48.951127289000134 ], [ -123.507686823999933, 48.951000652000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.805212620027435", "sL_AssetLoss": "16038", "sL_BldgLoss": "12914", "sL_StrLoss": "6890", "sL_NStrLoss": "6024", "sL_ContLoss": "3124", "geom_point": "0101000020E610000083D00F5D6FD75EC0A7A36F14D1694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.363088063999939, 48.828168781000045 ], [ -123.363260901999965, 48.825097056000054 ], [ -123.363332996999986, 48.825154606000147 ], [ -123.363775694999973, 48.825918010000102 ], [ -123.364455685999985, 48.825897993000126 ], [ -123.364743290999954, 48.826157208000041 ], [ -123.365003014999928, 48.826228407000031 ], [ -123.365642010999963, 48.826020491000044 ], [ -123.366238997, 48.825577590000137 ], [ -123.366264698999942, 48.82548788600009 ], [ -123.365782575999958, 48.824751496000069 ], [ -123.365680039999958, 48.824627800000052 ], [ -123.368726001999917, 48.824702863000084 ], [ -123.368523863999911, 48.828302798000017 ], [ -123.363088063999939, 48.828168781000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.803541666666667", "sL_AssetLoss": "28800", "sL_BldgLoss": "23142", "sL_StrLoss": "13090", "sL_NStrLoss": "10052", "sL_ContLoss": "5658", "geom_point": "0101000020E61000001316702AEDE55EC047672EAA247B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.592568687999986, 48.964123748000119 ], [ -123.592582837999927, 48.963849152000066 ], [ -123.591762675999973, 48.963830728000104 ], [ -123.59177134799998, 48.963662502000027 ], [ -123.591113160999896, 48.963647711000114 ], [ -123.591119432999974, 48.963526078000058 ], [ -123.590590850999931, 48.963514197000038 ], [ -123.590602229999959, 48.963293559000093 ], [ -123.589655530999948, 48.963272275000072 ], [ -123.589691089999917, 48.962583025000114 ], [ -123.588821698999979, 48.962563470000106 ], [ -123.588820601999913, 48.962471187000126 ], [ -123.589173405999972, 48.961227800000131 ], [ -123.588814603999964, 48.960824789000114 ], [ -123.5888636, 48.960455887000123 ], [ -123.58892029299993, 48.960397791000098 ], [ -123.58924289499997, 48.960067098000131 ], [ -123.589500901999941, 48.959948908000086 ], [ -123.590160901999951, 48.959127084000045 ], [ -123.590349711, 48.959054507000097 ], [ -123.591196574999955, 48.959014595000085 ], [ -123.592348495999914, 48.959430507000071 ], [ -123.593000312999919, 48.96023799600006 ], [ -123.593497401999983, 48.96060400600004 ], [ -123.593484900999925, 48.960774903000072 ], [ -123.593048413999938, 48.960794897 ], [ -123.592927203999977, 48.960885996000073 ], [ -123.592916998999939, 48.961163687000116 ], [ -123.593053792999939, 48.961316106000069 ], [ -123.594752205999953, 48.961640804000055 ], [ -123.595508701999933, 48.961996897000127 ], [ -123.596362118999963, 48.962522405000151 ], [ -123.596708711999895, 48.962962505000085 ], [ -123.597820884999976, 48.963513694000035 ], [ -123.598044355999946, 48.963790342000024 ], [ -123.598020925999904, 48.964246068000101 ], [ -123.592568687999986, 48.964123748000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32029750", "BldgCostT": "19855000", "sL_LossRatio": "0.724965653227684", "sL_AssetLoss": "219089", "sL_BldgLoss": "158832", "sL_StrLoss": "76759", "sL_NStrLoss": "82073", "sL_ContLoss": "60257", "geom_point": "0101000020E610000091173656A4E35EC0238EA7AB5C7C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.564695082999918, 48.980158971000087 ], [ -123.564711601999974, 48.97984220900009 ], [ -123.561899302999947, 48.979778299000081 ], [ -123.561925590999962, 48.97927473200005 ], [ -123.561092204999966, 48.979255779000042 ], [ -123.561097038999947, 48.979163199000126 ], [ -123.55957375499996, 48.979128540000112 ], [ -123.559758143999971, 48.975599640000127 ], [ -123.559749973999956, 48.97559945400004 ], [ -123.559776798, 48.975086063000035 ], [ -123.557239816, 48.975028290000076 ], [ -123.557248309999977, 48.974865892000025 ], [ -123.553695997999966, 48.974784896000124 ], [ -123.553722952, 48.974270295000082 ], [ -123.551894165999954, 48.974228551000039 ], [ -123.552082810999977, 48.970629118 ], [ -123.553478855999941, 48.970660987000031 ], [ -123.553524191999969, 48.969795400000066 ], [ -123.549338644999978, 48.969699797000068 ], [ -123.549383904999942, 48.96883705700003 ], [ -123.548356860999931, 48.968813573000077 ], [ -123.548476108000017, 48.966541329000066 ], [ -123.547358060999926, 48.966515753000074 ], [ -123.547469082999953, 48.964401029000044 ], [ -123.546599962999935, 48.964381139000082 ], [ -123.546767116999945, 48.961197964000036 ], [ -123.546788975999974, 48.960781658000073 ], [ -123.547371896999934, 48.960794999000022 ], [ -123.54772298599994, 48.961082604000083 ], [ -123.550477614999963, 48.963012394000039 ], [ -123.551334812000022, 48.964060588000095 ], [ -123.551787987999916, 48.964228612000085 ], [ -123.55250809599994, 48.965071800000061 ], [ -123.553386008999951, 48.965355193000065 ], [ -123.553713009999967, 48.965245508000088 ], [ -123.55406828199996, 48.965360895000053 ], [ -123.554703017999955, 48.965969 ], [ -123.555997691999949, 48.96688911300005 ], [ -123.556193413999964, 48.967166802000094 ], [ -123.556225286999933, 48.967545609000112 ], [ -123.556826605999959, 48.967586909000019 ], [ -123.557417611999981, 48.967917288000059 ], [ -123.55807971199998, 48.968481304000122 ], [ -123.558342795999977, 48.968911387000077 ], [ -123.558549383999932, 48.969009698000036 ], [ -123.558772290999968, 48.969304503000068 ], [ -123.559914702999947, 48.970153401000069 ], [ -123.560025504999913, 48.970305703000037 ], [ -123.559699902999938, 48.970344188000077 ], [ -123.559508385999933, 48.970498005000131 ], [ -123.559718396, 48.970838405000052 ], [ -123.560195909999976, 48.970799904000032 ], [ -123.560772385999954, 48.971094700000094 ], [ -123.561184596999965, 48.971156002000036 ], [ -123.561912793999937, 48.971645911000032 ], [ -123.562122317999965, 48.971960698 ], [ -123.562879395999957, 48.972414996000069 ], [ -123.56399699499994, 48.973498815000085 ], [ -123.564618390999925, 48.973963089000044 ], [ -123.565019511999964, 48.974482906000077 ], [ -123.566441399, 48.975798905000076 ], [ -123.566626604999982, 48.976301701000061 ], [ -123.566410283999971, 48.976590794000046 ], [ -123.566425697999989, 48.97674320600008 ], [ -123.567171098999935, 48.97735979000003 ], [ -123.568721508999914, 48.979214185000053 ], [ -123.568739108999949, 48.979439201000069 ], [ -123.568492884999969, 48.979395003000029 ], [ -123.567608292999978, 48.978625993000058 ], [ -123.567445911999926, 48.978644502000122 ], [ -123.567420402, 48.978887999000037 ], [ -123.56745169599999, 48.979184297000131 ], [ -123.567800492999964, 48.979830809000084 ], [ -123.568208575999947, 48.980238712000101 ], [ -123.567753253999953, 48.980228385000011 ], [ -123.564695082999918, 48.980158971000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.773313115996967", "sL_AssetLoss": "13190", "sL_BldgLoss": "10200", "sL_StrLoss": "5080", "sL_NStrLoss": "5120", "sL_ContLoss": "2990", "geom_point": "0101000020E610000042474830D7E45EC0C980815A6B814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.574774106999911, 49.012244388000077 ], [ -123.574102395999958, 49.012084912000077 ], [ -123.573554104999985, 49.01207919200008 ], [ -123.573452978999981, 49.011522398000118 ], [ -123.573294994999969, 49.011176323000015 ], [ -123.573304086999883, 49.011001457000127 ], [ -123.573473197999974, 49.01100528000012 ], [ -123.573529540999914, 49.009921659000028 ], [ -123.578987075999976, 49.0100449380001 ], [ -123.578939154999958, 49.010968683000087 ], [ -123.578666893, 49.010640811000094 ], [ -123.57826769799999, 49.010525412000099 ], [ -123.577748777, 49.010609398000078 ], [ -123.577505792999943, 49.010754692000056 ], [ -123.57751238, 49.011367092000036 ], [ -123.576326293999969, 49.011597814000041 ], [ -123.576297593999968, 49.012713012000063 ], [ -123.57604289799994, 49.013154496 ], [ -123.575891785999929, 49.013164494000073 ], [ -123.575506817999951, 49.012977900000116 ], [ -123.574774106999911, 49.012244388000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.771390782378675", "sL_AssetLoss": "9829", "sL_BldgLoss": "7582", "sL_StrLoss": "3102", "sL_NStrLoss": "4480", "sL_ContLoss": "2247", "geom_point": "0101000020E610000077F7DFCEAED45EC061A2286D7D6E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.32035382, 48.86413775400009 ], [ -123.320485067999925, 48.861844322000088 ], [ -123.321143191999937, 48.862225300000034 ], [ -123.32231647699993, 48.862330698000051 ], [ -123.323517113999941, 48.862219595000056 ], [ -123.32492049699999, 48.862305090000135 ], [ -123.325437105999981, 48.862024500000125 ], [ -123.325927420999989, 48.861932010000032 ], [ -123.325793669999939, 48.86427393600011 ], [ -123.32035382, 48.86413775400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29790001", "BldgCostT": "19575001", "sL_LossRatio": "0.700516248396049", "sL_AssetLoss": "335110", "sL_BldgLoss": "234750", "sL_StrLoss": "106730", "sL_NStrLoss": "128020", "sL_ContLoss": "100360", "geom_point": "0101000020E6100000E5053B7222DD5EC0D0D97E09C7764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.450097788999983, 48.934393781000026 ], [ -123.450177244999978, 48.932937024000125 ], [ -123.449402050999979, 48.932918567000122 ], [ -123.449452177999916, 48.931999775000065 ], [ -123.445948383999962, 48.931916278000053 ], [ -123.446145011999988, 48.928316794000104 ], [ -123.448382975999934, 48.928370140000048 ], [ -123.448495528999914, 48.92630764600009 ], [ -123.45013145199999, 48.926346612000039 ], [ -123.450181372999964, 48.925431176000096 ], [ -123.448106557999978, 48.925381753000117 ], [ -123.448162689999933, 48.924353218000093 ], [ -123.448302991999952, 48.921782228000033 ], [ -123.448412487, 48.92178483800005 ], [ -123.448457731999966, 48.920955630000059 ], [ -123.448645916999936, 48.920960114000081 ], [ -123.448669948999978, 48.920519633000012 ], [ -123.449162195999932, 48.920531361000037 ], [ -123.449219447999923, 48.919481756000081 ], [ -123.449878308999956, 48.919719187000112 ], [ -123.450756196, 48.920310309000037 ], [ -123.451590602999914, 48.920522511000037 ], [ -123.452208908, 48.920915611000041 ], [ -123.454292013999947, 48.921896893000046 ], [ -123.45511609499999, 48.922415301000115 ], [ -123.455668481999908, 48.922980698000117 ], [ -123.45580549899995, 48.92300629000006 ], [ -123.456131904999964, 48.922898102000026 ], [ -123.456882001999944, 48.922939408000069 ], [ -123.458334299999976, 48.923454913000043 ], [ -123.459015913999949, 48.923282598000043 ], [ -123.459437692999984, 48.923306797000095 ], [ -123.46008349799996, 48.923655800000084 ], [ -123.461054717999971, 48.923868 ], [ -123.46141781599999, 48.92399595800002 ], [ -123.461413468999979, 48.924076020000122 ], [ -123.461661705999973, 48.924081906000012 ], [ -123.461862898999982, 48.924152806000087 ], [ -123.463882457999915, 48.925074324 ], [ -123.463738122999985, 48.92773527000007 ], [ -123.462963552999952, 48.927716923000077 ], [ -123.462877979999945, 48.929293906000026 ], [ -123.465758011999952, 48.929362096000055 ], [ -123.465735547999941, 48.929776537000102 ], [ -123.465562888999926, 48.932961610000071 ], [ -123.46011465499997, 48.932832549000139 ], [ -123.460161461999974, 48.93197096200003 ], [ -123.455964057999978, 48.931871342000143 ], [ -123.455967653, 48.931805297000089 ], [ -123.455818317999928, 48.931801749000044 ], [ -123.455744708999958, 48.933154350000088 ], [ -123.45562084799991, 48.933151407000018 ], [ -123.455546177999949, 48.934523351000045 ], [ -123.450097788999983, 48.934393781000026 ] ], [ [ -123.457503354999957, 48.927819080000084 ], [ -123.457530607999928, 48.927317930000164 ], [ -123.456019886999968, 48.927282052000095 ], [ -123.456015511999937, 48.927362459000086 ], [ -123.45597173799996, 48.928166959000173 ], [ -123.455857687, 48.928164249000069 ], [ -123.455855824999929, 48.928198485000081 ], [ -123.457480624999931, 48.928237072000066 ], [ -123.457503354999957, 48.927819080000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.76341730558598", "sL_AssetLoss": "9130", "sL_BldgLoss": "6970", "sL_StrLoss": "3130", "sL_NStrLoss": "3840", "sL_ContLoss": "2160", "geom_point": "0101000020E6100000BB1E750981E35EC0F469360B8B784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.552075162999955, 48.940738295000074 ], [ -123.553833708999946, 48.940778464000111 ], [ -123.555750421999932, 48.942089301000046 ], [ -123.557316813999989, 48.942963800000115 ], [ -123.557399915999923, 48.943080605000112 ], [ -123.557277499999927, 48.943143186000093 ], [ -123.556826287999982, 48.943029310000043 ], [ -123.55447721099992, 48.941907006000072 ], [ -123.552733011999976, 48.940952789000036 ], [ -123.552075162999955, 48.940738295000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.802171883445531", "sL_AssetLoss": "20351", "sL_BldgLoss": "16325", "sL_StrLoss": "8900", "sL_NStrLoss": "7425", "sL_ContLoss": "4026", "geom_point": "0101000020E610000027BAD3426EE25EC0578FE2B94A7D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.538297788999927, 48.980242411000113 ], [ -123.537925006999927, 48.979829390000113 ], [ -123.537570793, 48.979849409000032 ], [ -123.53711481899991, 48.97951039800008 ], [ -123.536293882, 48.979450600000071 ], [ -123.535307501, 48.979113094000134 ], [ -123.534741291999978, 48.978540489000054 ], [ -123.534106891999897, 48.978103306000058 ], [ -123.533442709000013, 48.97728720200012 ], [ -123.53282399199999, 48.976948209000057 ], [ -123.532683462999927, 48.976937025000083 ], [ -123.532686631, 48.976877060000092 ], [ -123.538140198999898, 48.977002421000122 ], [ -123.538108896999958, 48.977596239000029 ], [ -123.540031766999945, 48.977640373000042 ], [ -123.539996650999939, 48.978307070000085 ], [ -123.541268462999966, 48.978336243000079 ], [ -123.541078952999939, 48.981935614000058 ], [ -123.54031871299999, 48.981918178000058 ], [ -123.539220917999927, 48.980859095000035 ], [ -123.538297788999927, 48.980242411000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.922985781990521", "sL_AssetLoss": "2532", "sL_BldgLoss": "2337", "sL_StrLoss": "1820", "sL_NStrLoss": "517", "sL_ContLoss": "195", "geom_point": "0101000020E61000009A3C0A7CAADC5EC01619573B8E734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.449487221999988, 48.903456200000043 ], [ -123.448444516, 48.902912099000048 ], [ -123.448280314999948, 48.902949192000037 ], [ -123.448282497999941, 48.903047490000041 ], [ -123.448584111999978, 48.90340629400005 ], [ -123.448599412999954, 48.903568695000089 ], [ -123.44791928699999, 48.903742507000032 ], [ -123.447494577999962, 48.903644195000069 ], [ -123.446878604999966, 48.90342199600012 ], [ -123.446536418999955, 48.903198403000076 ], [ -123.446466609999931, 48.903063096000025 ], [ -123.446573684999947, 48.902739803000053 ], [ -123.446310812999954, 48.902711545000059 ], [ -123.446393369999953, 48.90119908800007 ], [ -123.446833081999969, 48.901325601000075 ], [ -123.447368416999964, 48.901620402000084 ], [ -123.447628798999958, 48.901835410000068 ], [ -123.44799110299999, 48.902500609000093 ], [ -123.448740613, 48.902470606000122 ], [ -123.449494078000015, 48.902709898000062 ], [ -123.450373704999905, 48.903561607 ], [ -123.450348095000024, 48.903776598000029 ], [ -123.449969503999938, 48.904021598000021 ], [ -123.44947659599994, 48.903906204000101 ], [ -123.449324475999958, 48.903691195000064 ], [ -123.449501000999959, 48.903610004000051 ], [ -123.449487221999988, 48.903456200000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.76032315978456", "sL_AssetLoss": "22280", "sL_BldgLoss": "16940", "sL_StrLoss": "8260", "sL_NStrLoss": "8680", "sL_ContLoss": "5340", "geom_point": "0101000020E6100000C11062FC2EDB5EC045D8F0F44A724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.422198746999953, 48.894459620000099 ], [ -123.422353314999953, 48.891653803000047 ], [ -123.422770214999915, 48.891663845000082 ], [ -123.422788216999948, 48.891337013000118 ], [ -123.425901332999942, 48.891411948000027 ], [ -123.426163182, 48.891850293000104 ], [ -123.426184415999941, 48.89275039299999 ], [ -123.426375714999963, 48.892794597000083 ], [ -123.42657930499999, 48.892730510000028 ], [ -123.427066393999951, 48.89224340700013 ], [ -123.427624197999961, 48.892150790000137 ], [ -123.427927008999987, 48.89232169900005 ], [ -123.428168462, 48.892615291000027 ], [ -123.428099866, 48.893863315000047 ], [ -123.428022083, 48.893841401 ], [ -123.42787371699994, 48.894066401000018 ], [ -123.426476312999924, 48.893424105000086 ], [ -123.426341186999935, 48.893523793000021 ], [ -123.426426084999918, 48.893855605000034 ], [ -123.426316401999941, 48.893963791000054 ], [ -123.425377084999937, 48.894147596000089 ], [ -123.424760889999931, 48.893933903000111 ], [ -123.424489083999944, 48.893916794000106 ], [ -123.423267087999989, 48.894650304000038 ], [ -123.422911897999981, 48.894714403000108 ], [ -123.422653496999956, 48.894670192000092 ], [ -123.422198746999953, 48.894459620000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7163667", "BldgCostT": "4676667", "sL_LossRatio": "0.744134432466709", "sL_AssetLoss": "82004", "sL_BldgLoss": "61022", "sL_StrLoss": "32542", "sL_NStrLoss": "28480", "sL_ContLoss": "20982", "geom_point": "0101000020E6100000982F50CEA7D85EC0396377054B6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.384540115999968, 48.873747620000117 ], [ -123.384540412999939, 48.8737423090001 ], [ -123.383705885999916, 48.873721899000074 ], [ -123.383876730999972, 48.870664828000038 ], [ -123.383859675999986, 48.870664410000103 ], [ -123.383876210999972, 48.87036852500006 ], [ -123.382533746999911, 48.870335677000142 ], [ -123.382676204999967, 48.867787524000072 ], [ -123.379665997999922, 48.867713809000115 ], [ -123.379685803999905, 48.867359928000056 ], [ -123.379096798999967, 48.867345495000102 ], [ -123.379238302999937, 48.864817572000057 ], [ -123.379315017999929, 48.864847305000175 ], [ -123.379614991999972, 48.864818814000074 ], [ -123.380105985999961, 48.864898600000082 ], [ -123.381104103999917, 48.865237504000092 ], [ -123.381335787999944, 48.86517349000006 ], [ -123.382072488999981, 48.865270306000113 ], [ -123.382481309, 48.865402706000062 ], [ -123.383318204999952, 48.865841409000012 ], [ -123.383823692999925, 48.865975299000077 ], [ -123.385083616999907, 48.866815597000056 ], [ -123.385481414999944, 48.867174496000125 ], [ -123.385802682999966, 48.868171403000105 ], [ -123.38658180500002, 48.868303900000029 ], [ -123.387031594999954, 48.86824829799999 ], [ -123.387209796999969, 48.868356593000023 ], [ -123.387414106999955, 48.868355106000088 ], [ -123.388425894999955, 48.868685611000032 ], [ -123.389164310999917, 48.869141304000046 ], [ -123.389575018999949, 48.869248096000042 ], [ -123.391771086999967, 48.871093908000077 ], [ -123.392280906999972, 48.871676385000114 ], [ -123.392186719999955, 48.871991096000102 ], [ -123.391709678999973, 48.8717775000001 ], [ -123.391476207999943, 48.871814495000102 ], [ -123.39113828899994, 48.872210493000132 ], [ -123.390894392999954, 48.872220407000093 ], [ -123.390607198999973, 48.872113610000056 ], [ -123.390307706999948, 48.872133600000033 ], [ -123.389991605999967, 48.872016794000039 ], [ -123.389679609999945, 48.87212639100008 ], [ -123.389188216999969, 48.872092296000083 ], [ -123.389012395999899, 48.872236087000068 ], [ -123.388725207000022, 48.872129285000021 ], [ -123.388561005999975, 48.872166295000049 ], [ -123.38809519199999, 48.871861492000043 ], [ -123.387972901999916, 48.871961203000112 ], [ -123.38804428899999, 48.872293104000079 ], [ -123.387895894999957, 48.872438293000044 ], [ -123.387610117999955, 48.872502394000037 ], [ -123.38733540599992, 48.872358591000079 ], [ -123.386899195999916, 48.87240560100004 ], [ -123.386765289, 48.872559399000103 ], [ -123.386673095999939, 48.872972394000051 ], [ -123.386663810999934, 48.873557799000018 ], [ -123.386760268999964, 48.873801888000045 ], [ -123.384540115999968, 48.873747620000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8127333", "BldgCostT": "5133333", "sL_LossRatio": "0.774349817011722", "sL_AssetLoss": "56561", "sL_BldgLoss": "43798", "sL_StrLoss": "21165", "sL_NStrLoss": "22633", "sL_ContLoss": "12763", "geom_point": "0101000020E6100000A149413B90D45EC0D79FED6600724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.322466610999967, 48.893941108000028 ], [ -123.321933192999921, 48.893727393000077 ], [ -123.321822694999966, 48.893493904000103 ], [ -123.321028009999978, 48.892992498000119 ], [ -123.320739209999942, 48.892696306000083 ], [ -123.320683300999931, 48.892552503000083 ], [ -123.320816777999966, 48.892173599000088 ], [ -123.319586489999949, 48.891781996000077 ], [ -123.318154105999938, 48.891515597000136 ], [ -123.318015808999931, 48.8915526850001 ], [ -123.318099516999936, 48.891659499000085 ], [ -123.317744, 48.891652409000145 ], [ -123.31662251299997, 48.89105279900005 ], [ -123.316648392999937, 48.890917503000054 ], [ -123.317125792999931, 48.890799311000144 ], [ -123.318803811999928, 48.89094739800003 ], [ -123.31908910599995, 48.890587002000132 ], [ -123.316024406999972, 48.889318096000046 ], [ -123.31585779299995, 48.888903612000043 ], [ -123.315542694999948, 48.8886984990001 ], [ -123.31272449, 48.887302803000139 ], [ -123.312901888999974, 48.8872842910001 ], [ -123.313871886999934, 48.887604794000026 ], [ -123.314909000999975, 48.887737209000093 ], [ -123.315745186999962, 48.88811320800005 ], [ -123.316837702999962, 48.888281201000076 ], [ -123.317752820999942, 48.888655800000102 ], [ -123.318926409999932, 48.888724201000088 ], [ -123.31910168499995, 48.88853619200011 ], [ -123.319114290999963, 48.888363892000022 ], [ -123.317897399999978, 48.887692986000026 ], [ -123.317377110999956, 48.887532094000029 ], [ -123.316720203999978, 48.88718319200008 ], [ -123.317171002999942, 48.887137606000081 ], [ -123.317291688999916, 48.886777302000034 ], [ -123.316742894999948, 48.886526594000031 ], [ -123.316757288999924, 48.886464002000068 ], [ -123.317329686999969, 48.886444004000083 ], [ -123.318655179999922, 48.886666195000011 ], [ -123.319624818999955, 48.887013707000087 ], [ -123.320500376999931, 48.887479395000071 ], [ -123.321594614, 48.887727190000057 ], [ -123.32193580699996, 48.887879598000083 ], [ -123.322018217999982, 48.888014907000098 ], [ -123.321910905999985, 48.888348185000034 ], [ -123.322198793, 48.888446491000103 ], [ -123.322733394999915, 48.888947789000035 ], [ -123.323431790999976, 48.889198393000044 ], [ -123.323952782999967, 48.889772399000044 ], [ -123.323668795999978, 48.890051511000109 ], [ -123.323847992999987, 48.89042900500003 ], [ -123.324722518999963, 48.890723799000121 ], [ -123.32564162200002, 48.891189503000071 ], [ -123.326324317999976, 48.891565496000062 ], [ -123.326764286999918, 48.891941499000048 ], [ -123.326794005999886, 48.892183583000055 ], [ -123.326235303999965, 48.892330303000094 ], [ -123.326412483999917, 48.892526804000056 ], [ -123.326401187, 48.892670701000057 ], [ -123.325869189999963, 48.892763190000018 ], [ -123.325843613999965, 48.89296970200013 ], [ -123.325967107999972, 48.893086499000084 ], [ -123.326486601999932, 48.893218984000107 ], [ -123.326635993999972, 48.893335792000066 ], [ -123.326706087999938, 48.893579304000092 ], [ -123.327229481999936, 48.894153302000049 ], [ -123.327147485999987, 48.894243006000046 ], [ -123.326055690999965, 48.894020791000116 ], [ -123.325564311999983, 48.89423870800006 ], [ -123.324227399999927, 48.894242989000112 ], [ -123.324434, 48.894539209000136 ], [ -123.324326189, 48.894647511000123 ], [ -123.322920507000021, 48.894443797000108 ], [ -123.322467409999987, 48.894184599000063 ], [ -123.322398083999929, 48.894067797000041 ], [ -123.322466610999967, 48.893941108000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79827417", "BldgCostT": "56021667", "sL_LossRatio": "0.887479813988266", "sL_AssetLoss": "269617.4", "sL_BldgLoss": "239280", "sL_StrLoss": "112906", "sL_NStrLoss": "126374", "sL_ContLoss": "30337.4", "geom_point": "0101000020E6100000C2E2A22099DA5EC01F9D3E2B7E744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.410711883999952, 48.911028702000117 ], [ -123.410785517999955, 48.909698510000098 ], [ -123.407881816999975, 48.909628236000067 ], [ -123.408081278999944, 48.906028696000092 ], [ -123.408809335999962, 48.906046324000059 ], [ -123.41352624799994, 48.906160407000144 ], [ -123.413502423999915, 48.906591301000056 ], [ -123.413522785999987, 48.906591794000079 ], [ -123.413607413999927, 48.905061228000129 ], [ -123.414288520999932, 48.905077684000034 ], [ -123.415050414999953, 48.905709302000034 ], [ -123.415993508999961, 48.906029686000061 ], [ -123.416471691999973, 48.906072515000105 ], [ -123.417016802999967, 48.905998397000133 ], [ -123.417206923999913, 48.905908701000037 ], [ -123.417055092999945, 48.905746304000083 ], [ -123.417232514999966, 48.90572780600008 ], [ -123.418110977999916, 48.906327395000119 ], [ -123.4185749049999, 48.906380089000031 ], [ -123.418795902999989, 48.906576596000022 ], [ -123.419219185999935, 48.906719101000071 ], [ -123.419728606000021, 48.907176198000073 ], [ -123.420153697999979, 48.907345711000048 ], [ -123.420371207999949, 48.907344301000094 ], [ -123.42111170299998, 48.90783708300004 ], [ -123.421921303999952, 48.908265787000069 ], [ -123.422553694999976, 48.908474860000105 ], [ -123.422482370999973, 48.909769234000031 ], [ -123.421668324, 48.909749629000082 ], [ -123.421657177999961, 48.909951809000098 ], [ -123.423357915999944, 48.90999275900009 ], [ -123.423231091, 48.912294897000059 ], [ -123.42315961299991, 48.913592306000091 ], [ -123.418447648999972, 48.913478785000052 ], [ -123.418412550999989, 48.914114621000074 ], [ -123.415909454999962, 48.914054232000154 ], [ -123.415870586999972, 48.914757681000054 ], [ -123.410424610999982, 48.914626090000091 ], [ -123.410623898999972, 48.911026573000136 ], [ -123.410711883999952, 48.911028702000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.780346820809249", "sL_AssetLoss": "6920", "sL_BldgLoss": "5400", "sL_StrLoss": "2570", "sL_NStrLoss": "2830", "sL_ContLoss": "1520", "geom_point": "0101000020E6100000DC35D71F57E55EC04AA7E0B657814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.583518413999968, 49.011650495000062 ], [ -123.583101092999954, 49.010942699000069 ], [ -123.582797212999978, 49.010781793000021 ], [ -123.582709977999983, 49.010765176000106 ], [ -123.582777896999971, 49.009453885 ], [ -123.583807816999965, 49.009477082000046 ], [ -123.584187906999944, 49.011369837000046 ], [ -123.58403428599992, 49.011307290000055 ], [ -123.58394391299997, 49.011738789000091 ], [ -123.583683996999952, 49.011775899000064 ], [ -123.583518413999968, 49.011650495000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27757200", "BldgCostT": "17722213", "sL_LossRatio": "0.724083499552927", "sL_AssetLoss": "290780", "sL_BldgLoss": "210549", "sL_StrLoss": "121480", "sL_NStrLoss": "89069", "sL_ContLoss": "80231", "geom_point": "0101000020E61000002F04BD6085DB5EC006F7453AEA6C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.433418121999978, 48.855265679000077 ], [ -123.433506392999917, 48.853654910000103 ], [ -123.430203285999951, 48.853575564000103 ], [ -123.429858108999923, 48.853425104000053 ], [ -123.429216481999973, 48.853106761000056 ], [ -123.429258869999941, 48.85233452300011 ], [ -123.427578634999946, 48.852294105000063 ], [ -123.427337991999977, 48.852174700000091 ], [ -123.426639901999962, 48.851754605000103 ], [ -123.426240919999913, 48.851243304000086 ], [ -123.42589258, 48.851154138000055 ], [ -123.425915797999934, 48.850731675000176 ], [ -123.425084556999934, 48.850711657000076 ], [ -123.420705190999939, 48.846100441000125 ], [ -123.420783908999908, 48.844670825000051 ], [ -123.423252112999961, 48.844730354000028 ], [ -123.423067178999986, 48.845110596000048 ], [ -123.423040513000032, 48.845281492000083 ], [ -123.42325001399999, 48.845658908000054 ], [ -123.423700703999955, 48.845936698000067 ], [ -123.424013593999959, 48.845908216000083 ], [ -123.424218412999934, 48.845781406000057 ], [ -123.424859010999924, 48.845886792000059 ], [ -123.425517002999968, 48.846342607000032 ], [ -123.425729501999939, 48.847197098000137 ], [ -123.426140016999952, 48.847537507000062 ], [ -123.426753104999975, 48.847517505000084 ], [ -123.427035103999984, 48.847030490000073 ], [ -123.427884896999984, 48.847359410000124 ], [ -123.42878780199996, 48.847950501000064 ], [ -123.429800186999927, 48.848414791000025 ], [ -123.430118179999965, 48.848746596000048 ], [ -123.431143307999946, 48.849173893000085 ], [ -123.43143674099997, 48.849360861000044 ], [ -123.431431060999955, 48.849464424000139 ], [ -123.431605867999949, 48.849468625000057 ], [ -123.432281009999912, 48.849898798000055 ], [ -123.43323702, 48.850111002000062 ], [ -123.433989810999918, 48.850458485000033 ], [ -123.434428594999986, 48.850798900000058 ], [ -123.434144917, 48.850961305000041 ], [ -123.433793990999945, 48.85135009600004 ], [ -123.433985908999944, 48.851456890000101 ], [ -123.435268397999934, 48.851748910000076 ], [ -123.435911983999958, 48.852143396000059 ], [ -123.436020145999947, 48.852292011000031 ], [ -123.435985241999944, 48.852929611000086 ], [ -123.437540122999962, 48.852966891000065 ], [ -123.438462807999926, 48.853680108000034 ], [ -123.438943229999921, 48.853824085000014 ], [ -123.438791341999945, 48.856601492000053 ], [ -123.436102795999929, 48.856537053000103 ], [ -123.435676085999887, 48.856317698000083 ], [ -123.43440348899999, 48.85580069100012 ], [ -123.433418121999978, 48.855265679000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4387917", "BldgCostT": "2816667", "sL_LossRatio": "0.658957931836728", "sL_AssetLoss": "57597", "sL_BldgLoss": "37954", "sL_StrLoss": "13380", "sL_NStrLoss": "24574", "sL_ContLoss": "19643", "geom_point": "0101000020E6100000508FE9E04BE15EC045F69C4FF8734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.532767566999894, 48.915319194000105 ], [ -123.530370386999977, 48.914456793000078 ], [ -123.527239195999954, 48.912618110999986 ], [ -123.526481290000035, 48.911937399000095 ], [ -123.523324805999948, 48.910242597000028 ], [ -123.521083901999972, 48.908534911000068 ], [ -123.520903304999962, 48.908274306000017 ], [ -123.519954214, 48.907595006000115 ], [ -123.519637378999903, 48.907227495000065 ], [ -123.518647995999956, 48.906683514000129 ], [ -123.517848000999976, 48.905887293000077 ], [ -123.516877285999954, 48.904407603000053 ], [ -123.516215995999929, 48.903770908000105 ], [ -123.515979799999982, 48.90337640700006 ], [ -123.515430321999943, 48.903037505000057 ], [ -123.515333415999962, 48.902858007000077 ], [ -123.514741190999956, 48.902373788000027 ], [ -123.513808917999981, 48.901775597000061 ], [ -123.513023986999926, 48.901086306000074 ], [ -123.512912303999926, 48.900879810000077 ], [ -123.512101299999955, 48.900407008000059 ], [ -123.511661704999952, 48.899932708000094 ], [ -123.510904711999899, 48.899350209000033 ], [ -123.510218998999903, 48.899075291000074 ], [ -123.509185604999956, 48.897964488000035 ], [ -123.508787813999959, 48.897811191000137 ], [ -123.508239205, 48.897599787000061 ], [ -123.5074979, 48.897179686000086 ], [ -123.507125009999982, 48.896668401000028 ], [ -123.506706798999943, 48.895764739000072 ], [ -123.507353605999924, 48.895779807000082 ], [ -123.507680194999949, 48.896629811000061 ], [ -123.508195103999952, 48.897068012000055 ], [ -123.508761016999955, 48.897304254000083 ], [ -123.508851011999937, 48.897341790000098 ], [ -123.509503610999971, 48.89782287100013 ], [ -123.509810286999965, 48.898048941000091 ], [ -123.510639755999989, 48.89866039700005 ], [ -123.512479899999917, 48.900016753000067 ], [ -123.5125923, 48.900099603000101 ], [ -123.512938550999976, 48.900432590000015 ], [ -123.513558191999962, 48.901028501000013 ], [ -123.514697946999959, 48.901844124000064 ], [ -123.515326804, 48.902294091000016 ], [ -123.516006881999928, 48.902990714000062 ], [ -123.51605204, 48.903016249000103 ], [ -123.516332813999924, 48.903131953000113 ], [ -123.516401691999988, 48.903194618000079 ], [ -123.516540267999986, 48.903400901000076 ], [ -123.516596321999941, 48.903544585000112 ], [ -123.51665716699992, 48.903656742000038 ], [ -123.51672019899999, 48.903721295000082 ], [ -123.516929596999958, 48.904097570000083 ], [ -123.517024749999976, 48.9042685800001 ], [ -123.517077275999952, 48.904362995000049 ], [ -123.517611986999981, 48.905073693000077 ], [ -123.518321317999906, 48.905835297000088 ], [ -123.518781320999935, 48.906235123000101 ], [ -123.519546650999942, 48.906900310000061 ], [ -123.520159704999969, 48.907433093000165 ], [ -123.521331706999945, 48.908391250000129 ], [ -123.521579808999945, 48.908594097000041 ], [ -123.522279198999939, 48.909208586000069 ], [ -123.523773886999891, 48.910199208000044 ], [ -123.524507184999948, 48.910767598000071 ], [ -123.526374833999924, 48.911800089000131 ], [ -123.527444696999922, 48.912391488000097 ], [ -123.530740679999923, 48.914511994000094 ], [ -123.530897526999979, 48.91456279800007 ], [ -123.531407035999905, 48.914727822 ], [ -123.53152206499999, 48.914765075000126 ], [ -123.532535380999974, 48.915093243000037 ], [ -123.532780695999946, 48.915172688000027 ], [ -123.533300705999963, 48.915161214000101 ], [ -123.534837493999973, 48.915282196000106 ], [ -123.535939407999976, 48.915458925000081 ], [ -123.536212788999961, 48.915502790000048 ], [ -123.537507399999981, 48.9157103860001 ], [ -123.540206160999929, 48.916468140000092 ], [ -123.540922294999959, 48.916669195000061 ], [ -123.540977343999955, 48.916696946000044 ], [ -123.542115009999961, 48.917270505000033 ], [ -123.543488273, 48.917536012000078 ], [ -123.543480533999954, 48.917683344000082 ], [ -123.54324537399998, 48.917677949000044 ], [ -123.542523400999954, 48.917440510000134 ], [ -123.541785703999906, 48.917327990000075 ], [ -123.540976106999935, 48.916934886000043 ], [ -123.539783712999935, 48.916608807000088 ], [ -123.537728704999921, 48.915906587000094 ], [ -123.536785046999981, 48.915758956000097 ], [ -123.536765657999979, 48.915755922000123 ], [ -123.536335900999958, 48.91568868600006 ], [ -123.53582975399992, 48.915671121000074 ], [ -123.53543491899994, 48.915657406000022 ], [ -123.534517879999967, 48.915445194 ], [ -123.53318208599994, 48.915371524000072 ], [ -123.532864302999926, 48.915353995000068 ], [ -123.532767566999894, 48.915319194000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "314017387", "BldgCostT": "205722080", "sL_LossRatio": "0.787934416747402", "sL_AssetLoss": "1325015.1", "sL_BldgLoss": "1044025", "sL_StrLoss": "541535", "sL_NStrLoss": "502490", "sL_ContLoss": "280990.1", "geom_point": "0101000020E6100000C7A83B478BE55EC028124D7F7A754840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.595044611999953, 48.944916398000061 ], [ -123.594786097999958, 48.944863700000035 ], [ -123.594773305999965, 48.945061609000057 ], [ -123.594650604999956, 48.945071589000086 ], [ -123.593813215999972, 48.944625807000094 ], [ -123.592117395999949, 48.943348296000075 ], [ -123.590302799999932, 48.943473589000114 ], [ -123.589578403999909, 48.943405285000033 ], [ -123.588656996999958, 48.942798614000075 ], [ -123.585994900999978, 48.940509894000108 ], [ -123.585153592999959, 48.939884590000126 ], [ -123.584741895999983, 48.939750806000092 ], [ -123.58384178599999, 48.939754998000097 ], [ -123.58326799799994, 48.939848989000055 ], [ -123.582735017999951, 48.939760695000132 ], [ -123.581510490999918, 48.938867697000028 ], [ -123.581058512999988, 48.938743793000114 ], [ -123.579760218000018, 48.938723903000074 ], [ -123.579088602999946, 48.938574392000113 ], [ -123.578827265999905, 48.938611425 ], [ -123.578929455, 48.936638376000118 ], [ -123.584378452999971, 48.936761395000111 ], [ -123.584291332999925, 48.938447314000015 ], [ -123.584449952999933, 48.938450890000041 ], [ -123.584586975999954, 48.935799013000072 ], [ -123.585271047999967, 48.93581443600003 ], [ -123.585416402999925, 48.93300022500005 ], [ -123.586208777999929, 48.933018085000079 ], [ -123.586210411999943, 48.932986442000079 ], [ -123.582591321, 48.932904823000072 ], [ -123.582680925999981, 48.932753883000061 ], [ -123.58276147799991, 48.932636514000123 ], [ -123.582788137999941, 48.932582407000091 ], [ -123.582923240999946, 48.932455791000045 ], [ -123.583098318999944, 48.932248003000026 ], [ -123.583098208999957, 48.932239008000067 ], [ -123.583151842999897, 48.932157762000053 ], [ -123.583286717999925, 48.932013152000081 ], [ -123.583394264999953, 48.931868667000067 ], [ -123.583529308999985, 48.931742040000096 ], [ -123.583800477999944, 48.93157876800008 ], [ -123.583881866999917, 48.931533365000092 ], [ -123.584058512999945, 48.931460510000086 ], [ -123.584344078999933, 48.931360098000091 ], [ -123.584575641999947, 48.931313951000099 ], [ -123.584684754999913, 48.931304399000084 ], [ -123.584862016999949, 48.931285514000081 ], [ -123.584889326999971, 48.931285367000051 ], [ -123.585230509999946, 48.931274641000059 ], [ -123.585544530999982, 48.931273046000058 ], [ -123.585571840999989, 48.93127289800006 ], [ -123.58587209299999, 48.931262380000099 ], [ -123.585940462999986, 48.931271041000116 ], [ -123.58622717499999, 48.931269592000064 ], [ -123.58640475299994, 48.9312776740001 ], [ -123.586473013000017, 48.931277339000111 ], [ -123.586817355999926, 48.931245672000045 ], [ -123.586937597999949, 48.931238090000122 ], [ -123.587269606999939, 48.930431999000085 ], [ -123.587299512999934, 48.93016959600002 ], [ -123.587196264999974, 48.929513522000072 ], [ -123.587143381999951, 48.929177706000125 ], [ -123.587130610999964, 48.928844985000104 ], [ -123.587239003999969, 48.928569012000025 ], [ -123.587584487999948, 48.928083101 ], [ -123.58764611299992, 48.927944789000072 ], [ -123.587685903999954, 48.927649301000024 ], [ -123.587503788, 48.927163091000054 ], [ -123.586992709999919, 48.926337989000032 ], [ -123.58691488399991, 48.925944389000108 ], [ -123.586900795999924, 48.9256098050001 ], [ -123.586811516999887, 48.925437502000101 ], [ -123.586621174999934, 48.925345802000024 ], [ -123.585956191999969, 48.92515510900008 ], [ -123.585941898, 48.925149036000114 ], [ -123.585175572999958, 48.924823999000076 ], [ -123.584861212999954, 48.92460241 ], [ -123.584711702999982, 48.924328802000055 ], [ -123.584706977999986, 48.924267766000064 ], [ -123.584687210999931, 48.924011092000022 ], [ -123.584826398999923, 48.923496079000117 ], [ -123.584828786999964, 48.923487208000097 ], [ -123.58538671, 48.922994502000087 ], [ -123.585493769999985, 48.922887705000072 ], [ -123.585647757999979, 48.92270376000004 ], [ -123.585695656999945, 48.922590089000053 ], [ -123.585728596999957, 48.922511909000043 ], [ -123.585741015999943, 48.922482418000079 ], [ -123.58576670399998, 48.922301001000022 ], [ -123.585720305999942, 48.922064792000114 ], [ -123.585704344999968, 48.922034898000057 ], [ -123.584820893999932, 48.92047228399999 ], [ -123.583905180000031, 48.918447300000018 ], [ -123.583886086999939, 48.918405020000066 ], [ -123.583920400999929, 48.918211591000023 ], [ -123.584168778999967, 48.916812137000086 ], [ -123.584305365999981, 48.916689916000102 ], [ -123.585094975999951, 48.91598334400009 ], [ -123.585638070999948, 48.915497369000015 ], [ -123.586583443999956, 48.915027519000049 ], [ -123.587158872999979, 48.91474148000006 ], [ -123.587887371999926, 48.914094580000025 ], [ -123.588848908999978, 48.913240655000067 ], [ -123.58893906599999, 48.913159947000054 ], [ -123.589830677999927, 48.912361751000027 ], [ -123.58989747399994, 48.912176743000018 ], [ -123.589852815999919, 48.911932462000053 ], [ -123.588395290999983, 48.910379649000056 ], [ -123.588025042999973, 48.908651272000064 ], [ -123.587925704999961, 48.907987692000084 ], [ -123.588134628999981, 48.907051515 ], [ -123.588306799999941, 48.906279903000055 ], [ -123.588280551999986, 48.904181730000133 ], [ -123.588272214999961, 48.903516079000049 ], [ -123.588269789999913, 48.903322796000118 ], [ -123.588402686999927, 48.903123096000101 ], [ -123.58840298299998, 48.903002590000071 ], [ -123.588403202999942, 48.902903198000097 ], [ -123.588262399999905, 48.902778406000152 ], [ -123.587412508999961, 48.902425888000046 ], [ -123.586718257999948, 48.900877712000124 ], [ -123.586323509999943, 48.899997383000013 ], [ -123.58556696399999, 48.898310012000081 ], [ -123.584984095999914, 48.897010003000076 ], [ -123.584767975999938, 48.896629397000012 ], [ -123.584734649999973, 48.896597588000063 ], [ -123.584655006999981, 48.89653515 ], [ -123.584551218999948, 48.89648375300002 ], [ -123.58430466599998, 48.896384568000052 ], [ -123.584181105999988, 48.896322226000073 ], [ -123.583947546, 48.896179485000069 ], [ -123.583727691999982, 48.896045653000044 ], [ -123.583466682999955, 48.895894054000081 ], [ -123.583260661999972, 48.895778152000041 ], [ -123.583027167, 48.895644393000076 ], [ -123.582766309999954, 48.895501775000085 ], [ -123.582436995999942, 48.895341508000044 ], [ -123.582327118999928, 48.895279078000094 ], [ -123.581997304999931, 48.895073842000023 ], [ -123.581749842999926, 48.894913167000034 ], [ -123.581420333, 48.894734928000112 ], [ -123.581173206999921, 48.894601239000046 ], [ -123.580939536999963, 48.894449472000112 ], [ -123.580733421000019, 48.894324571000084 ], [ -123.58047235799998, 48.894163954000099 ], [ -123.580225092999925, 48.894021280000082 ], [ -123.579991317999941, 48.8938605170001 ], [ -123.579950092000018, 48.893833737000115 ], [ -123.579743886999964, 48.893699860000083 ], [ -123.579523836999982, 48.893548031000073 ], [ -123.579413764999956, 48.893467629000043 ], [ -123.579193529999884, 48.893297795000116 ], [ -123.579124685999972, 48.893244173 ], [ -123.579110934, 48.893235251000043 ], [ -123.578973373999986, 48.893136968000121 ], [ -123.578753125999967, 48.892967167000037 ], [ -123.578546613999919, 48.892806267000083 ], [ -123.578340011999956, 48.892636394000085 ], [ -123.578133667999936, 48.892484498000094 ], [ -123.578023549999926, 48.892404086000063 ], [ -123.577680357999938, 48.892216899000076 ], [ -123.577570273999953, 48.892136474000012 ], [ -123.577323064999973, 48.891993781000046 ], [ -123.57697955, 48.891779607000032 ], [ -123.576869765999959, 48.891726179000074 ], [ -123.576636127999947, 48.891574404000018 ], [ -123.57651242499999, 48.891494073000054 ], [ -123.576264596999948, 48.891297391000073 ], [ -123.576017397999962, 48.891154695000097 ], [ -123.575728649, 48.890958231000148 ], [ -123.575385534999953, 48.890780024000101 ], [ -123.57517895699999, 48.890610144000064 ], [ -123.57509629599997, 48.89053858900008 ], [ -123.574821195999959, 48.890342050000122 ], [ -123.574696655999929, 48.890189739000064 ], [ -123.574668473999907, 48.890108921000049 ], [ -123.574522053999928, 48.889915868000067 ], [ -123.574448125999965, 48.889808373000022 ], [ -123.57439380999989, 48.889744188000165 ], [ -123.574054184999966, 48.889408504000109 ], [ -123.573715213999932, 48.88885300200009 ], [ -123.573470402999973, 48.888554601000102 ], [ -123.57218970299999, 48.887504686000128 ], [ -123.571887870999888, 48.887204537000052 ], [ -123.570835882, 48.886158413000089 ], [ -123.569858305, 48.885569505000134 ], [ -123.569369693999974, 48.885087093000053 ], [ -123.569446177999964, 48.884404426000103 ], [ -123.5694764939999, 48.884133505000079 ], [ -123.569216490999906, 48.88363021100011 ], [ -123.569082087000012, 48.883467827000104 ], [ -123.568534605999943, 48.882806487000025 ], [ -123.567712809999989, 48.882189873000087 ], [ -123.56726729799999, 48.881855561000108 ], [ -123.566931000999944, 48.881603205000069 ], [ -123.566847292999952, 48.880986712000052 ], [ -123.566403795999932, 48.880215298000081 ], [ -123.567174687999952, 48.880269705000032 ], [ -123.56817729899997, 48.880427696000076 ], [ -123.569741813999912, 48.880806601000153 ], [ -123.570401011999962, 48.881005108000068 ], [ -123.57131778899999, 48.881281194000053 ], [ -123.571811446999973, 48.881513130000052 ], [ -123.571853685999912, 48.881532995000121 ], [ -123.572708982999956, 48.882115603000059 ], [ -123.574513166999964, 48.883482259000097 ], [ -123.574566904999983, 48.883532894000062 ], [ -123.575638014999925, 48.884229402000067 ], [ -123.579121107999967, 48.885850084000026 ], [ -123.580098807999946, 48.886725984000059 ], [ -123.580935890999953, 48.887027891000038 ], [ -123.581046693999937, 48.887251504000062 ], [ -123.580803316999976, 48.887344099000117 ], [ -123.579856978999928, 48.886997996000076 ], [ -123.579241291999935, 48.886892591000063 ], [ -123.579162588999964, 48.88701938900001 ], [ -123.57961469299994, 48.887187506000082 ], [ -123.57991771099995, 48.887465208000023 ], [ -123.57930439099998, 48.887503603000049 ], [ -123.57647247700001, 48.886780095000105 ], [ -123.576240213999966, 48.886754505000077 ], [ -123.575885489999948, 48.886837088000021 ], [ -123.573382297999913, 48.886247497000056 ], [ -123.573247389999935, 48.886301597000063 ], [ -123.573263708999917, 48.88653520600009 ], [ -123.573771807999918, 48.886775896000081 ], [ -123.574691193999911, 48.88737399100004 ], [ -123.57610529899992, 48.888096090000097 ], [ -123.57775010899995, 48.888744105000058 ], [ -123.578271880999964, 48.889055998000046 ], [ -123.58002649699999, 48.889830813000046 ], [ -123.581442399999972, 48.890732297000049 ], [ -123.582966483999883, 48.891569704000119 ], [ -123.584352210999981, 48.892254789000042 ], [ -123.587017880999966, 48.893978094000076 ], [ -123.587859482999974, 48.894648906000064 ], [ -123.587852221999967, 48.895224303000106 ], [ -123.589013687999966, 48.89537950100005 ], [ -123.590111309999941, 48.895977708000117 ], [ -123.590747994999944, 48.896612897000054 ], [ -123.59059690399998, 48.89660428300003 ], [ -123.590061117999966, 48.896328005000029 ], [ -123.589954693999971, 48.89644620600005 ], [ -123.590135283999942, 48.896813697000105 ], [ -123.591265771999971, 48.897847082000048 ], [ -123.591382068999962, 48.897953376000032 ], [ -123.592728, 48.899183605000161 ], [ -123.592761000999985, 48.899543895000093 ], [ -123.59255779899992, 48.89977889000005 ], [ -123.592298694999926, 48.899834393000056 ], [ -123.592373542999965, 48.899969705000061 ], [ -123.592383014999911, 48.899986805000019 ], [ -123.592287398999957, 48.900013890000011 ], [ -123.591863008999937, 48.899872886000018 ], [ -123.591189395999919, 48.899488314000088 ], [ -123.591067883999969, 48.89956099000004 ], [ -123.591306306999982, 48.90005520400004 ], [ -123.591143396999982, 48.900200506000047 ], [ -123.590774803999949, 48.900147811000053 ], [ -123.589840900999917, 48.899676296000059 ], [ -123.589597490999935, 48.899757503000018 ], [ -123.589422780999882, 48.900011 ], [ -123.588425809999976, 48.899844387000059 ], [ -123.58827609099994, 48.899962602000066 ], [ -123.58838230399999, 48.900825707000081 ], [ -123.589261590999939, 48.901442400000057 ], [ -123.589608517999963, 48.901818402000096 ], [ -123.589574890000023, 48.902447889000058 ], [ -123.589014397999946, 48.902496314000139 ], [ -123.588972633999973, 48.902576934000088 ], [ -123.588949508000013, 48.902621590000123 ], [ -123.589141879999957, 48.902846597000064 ], [ -123.58992638899997, 48.903318011000067 ], [ -123.590042894999954, 48.904064295000047 ], [ -123.590308502999932, 48.904495887000067 ], [ -123.590324077999952, 48.904764993000107 ], [ -123.590177506999922, 48.904973001000045 ], [ -123.590565111, 48.905555507000024 ], [ -123.590708706999976, 48.906147984000015 ], [ -123.590929893999913, 48.906398597000127 ], [ -123.590821904999956, 48.906462699000024 ], [ -123.590302392999888, 48.906420010000062 ], [ -123.590209696999949, 48.906654998000086 ], [ -123.590636502, 48.90684149200009 ], [ -123.591049120999955, 48.907163398000101 ], [ -123.59132709, 48.9075123040001 ], [ -123.591301210999987, 48.907683295 ], [ -123.591519721999987, 48.907817101000035 ], [ -123.591567515999941, 48.908231606000058 ], [ -123.591320795999934, 48.908295715000044 ], [ -123.590884605, 48.908190291000068 ], [ -123.590566910999939, 48.907876907000073 ], [ -123.590348521999957, 48.90786840100003 ], [ -123.589608003999942, 48.907548000000112 ], [ -123.589443003000014, 48.907540797000095 ], [ -123.589376003, 48.907711692000134 ], [ -123.590215279999967, 48.908174595000084 ], [ -123.590974095000021, 48.90898069100011 ], [ -123.59149770599997, 48.909248484000074 ], [ -123.592035920999962, 48.909802497000108 ], [ -123.592105787999927, 48.909991901000161 ], [ -123.591725606999958, 48.910145689000096 ], [ -123.590999785999927, 48.909970500000057 ], [ -123.59078258599996, 48.910024706000065 ], [ -123.590716712999907, 48.910178500000029 ], [ -123.591790512999964, 48.910983097000042 ], [ -123.591929794999942, 48.91125230799999 ], [ -123.591934004, 48.911602687000034 ], [ -123.592320806999936, 48.912049903000103 ], [ -123.59229659499999, 48.912195205000053 ], [ -123.59205130699992, 48.912294796000076 ], [ -123.592271494999949, 48.912482788000062 ], [ -123.592314309999949, 48.912643800000119 ], [ -123.591355198, 48.91339578500002 ], [ -123.591633804999987, 48.913934089000101 ], [ -123.591350315999975, 48.914241703000066 ], [ -123.589757487, 48.914473898000075 ], [ -123.588360106, 48.915245789000075 ], [ -123.587590612999946, 48.915969288000063 ], [ -123.587431868999914, 48.916279213000031 ], [ -123.587419430999915, 48.916296810000048 ], [ -123.587367031999989, 48.916370921000116 ], [ -123.587202493999911, 48.916726999000041 ], [ -123.586959508999954, 48.916917803000068 ], [ -123.58648349399999, 48.917091614000064 ], [ -123.58633611799992, 48.917244004000082 ], [ -123.58621841399993, 48.917614297000092 ], [ -123.586433095999936, 48.918485906000114 ], [ -123.586901599, 48.918968702000022 ], [ -123.587259499999988, 48.919173790000059 ], [ -123.587004216, 48.919481398000094 ], [ -123.587146593999989, 48.920038286000093 ], [ -123.587382206999919, 48.920351583000127 ], [ -123.587347211999912, 48.920847200000033 ], [ -123.588417088999961, 48.921210411000082 ], [ -123.58896899399997, 48.921737396000047 ], [ -123.589206887999964, 48.922294204000124 ], [ -123.590092087999921, 48.923180104000018 ], [ -123.59072288299997, 48.923564601000052 ], [ -123.590891679999956, 48.923896394000053 ], [ -123.591208578999925, 48.924147097000109 ], [ -123.591265585999963, 48.924370703000086 ], [ -123.592119498999949, 48.924968910000111 ], [ -123.592589089999976, 48.925461701000124 ], [ -123.594229604999924, 48.926757694000095 ], [ -123.594263557000019, 48.926822224000091 ], [ -123.594451484999922, 48.927179306000063 ], [ -123.594302508999974, 48.927216287000064 ], [ -123.593044184999911, 48.926917192000047 ], [ -123.592451881999963, 48.926632403000085 ], [ -123.592023900999948, 48.926237800000138 ], [ -123.591791712999964, 48.926230707000123 ], [ -123.591674896999933, 48.92667218800004 ], [ -123.591898107999896, 48.927129383000135 ], [ -123.593334796999926, 48.928498104000077 ], [ -123.594050315999965, 48.928989392000119 ], [ -123.594501479999934, 48.929378523000047 ], [ -123.594562699999955, 48.929431307000087 ], [ -123.595719897, 48.930429298000071 ], [ -123.596052391999962, 48.930850911000043 ], [ -123.596699795999911, 48.931404889000127 ], [ -123.596648201999983, 48.931621400000061 ], [ -123.596732808999931, 48.93177380900012 ], [ -123.597298490999961, 48.932246593000066 ], [ -123.597791405999956, 48.932470199000051 ], [ -123.59867658899995, 48.933318995000093 ], [ -123.598487185999971, 48.933591006000029 ], [ -123.597782400999961, 48.933854500000059 ], [ -123.597536577999961, 48.933855895000129 ], [ -123.597027499999953, 48.933660811000053 ], [ -123.596850888999953, 48.933689310000055 ], [ -123.596706995999966, 48.934220598000124 ], [ -123.596194110999974, 48.934771688000097 ], [ -123.596350186999985, 48.935149091000056 ], [ -123.595524798999946, 48.935918192000088 ], [ -123.59566969799999, 48.936502106000056 ], [ -123.595631793999985, 48.936744208000064 ], [ -123.595871386999974, 48.937363811000083 ], [ -123.596620182, 48.938296598000193 ], [ -123.596638496999915, 48.938718189000078 ], [ -123.596843806, 48.938906205000123 ], [ -123.596902316999973, 48.939131200000077 ], [ -123.59763189, 48.939693803000104 ], [ -123.597729893999954, 48.939864699000083 ], [ -123.597964720999983, 48.941122297000057 ], [ -123.597458277999962, 48.942196095000035 ], [ -123.597120805999964, 48.942503685000077 ], [ -123.596916493999956, 48.942557908000019 ], [ -123.595578284999974, 48.94264620100008 ], [ -123.594698593999965, 48.942210388000078 ], [ -123.593128409999935, 48.941066707000104 ], [ -123.592214897999938, 48.941125092000107 ], [ -123.592532198999962, 48.941348686 ], [ -123.592425584999944, 48.941627901000068 ], [ -123.592496092, 48.941763210000055 ], [ -123.593181687999959, 48.942029502000089 ], [ -123.593361998999967, 48.94230719900002 ], [ -123.59369379599994, 48.942566396000096 ], [ -123.593724075999958, 48.942625994000124 ], [ -123.594336589999955, 48.943831090000032 ], [ -123.59541002099995, 48.944590201000103 ], [ -123.59552188899994, 48.944805298000112 ], [ -123.596086101999944, 48.945189804000037 ], [ -123.596529888999953, 48.94561849200003 ], [ -123.596559510999953, 48.945879108000042 ], [ -123.596312093999984, 48.945799409000116 ], [ -123.595044611999953, 48.944916398000061 ] ], [ [ -123.592577241999948, 48.933834237000035 ], [ -123.592594787999957, 48.933493503000044 ], [ -123.592899688999978, 48.933500355000064 ], [ -123.59290611099999, 48.933375623000053 ], [ -123.592220928999922, 48.933360224000083 ], [ -123.59222537699999, 48.93327387000005 ], [ -123.591651180999989, 48.933260962000112 ], [ -123.591587993999966, 48.934487513000057 ], [ -123.590795590999988, 48.934469693000011 ], [ -123.590772262999934, 48.93492236500002 ], [ -123.591974321999899, 48.934949396 ], [ -123.592032390999961, 48.933821990000126 ], [ -123.592577241999948, 48.933834237000035 ] ], [ [ -123.586903804999963, 48.925023253000091 ], [ -123.586918672999929, 48.924735117000075 ], [ -123.586324269999977, 48.924721721000061 ], [ -123.586309395999962, 48.925009858000031 ], [ -123.586903804999963, 48.925023253000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9299167", "BldgCostT": "5916667", "sL_LossRatio": "0.639592560546222", "sL_AssetLoss": "116729", "sL_BldgLoss": "74659", "sL_StrLoss": "26050", "sL_NStrLoss": "48609", "sL_ContLoss": "42070", "geom_point": "0101000020E610000071BFA67B1BE05EC0F796F6F6FC714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.502198621999952, 48.892579499000099 ], [ -123.5018568079999, 48.892472704000099 ], [ -123.501243695999975, 48.892529705000079 ], [ -123.50050478499999, 48.892298901000096 ], [ -123.499914383999908, 48.891960003000094 ], [ -123.499138562, 48.891639199000046 ], [ -123.499138893999927, 48.891632972000053 ], [ -123.499122577999955, 48.891632590000079 ], [ -123.498901786999966, 48.891541292000113 ], [ -123.49884247899999, 48.891496682000053 ], [ -123.499027965999971, 48.888026072000116 ], [ -123.499757927999937, 48.888043131000082 ], [ -123.49988035899996, 48.885751385000084 ], [ -123.501054092999951, 48.885778806000076 ], [ -123.501057914999976, 48.885707215000089 ], [ -123.501358201999935, 48.885714229000016 ], [ -123.501391589999955, 48.886747024000144 ], [ -123.501390660999945, 48.887341972000115 ], [ -123.501387915999914, 48.889112286000113 ], [ -123.501632891, 48.889337838000074 ], [ -123.501992968999971, 48.889669344000026 ], [ -123.502620950999955, 48.89024744700005 ], [ -123.502964617999936, 48.890563791000027 ], [ -123.503206623999972, 48.890811010000036 ], [ -123.50469089799995, 48.892326898000114 ], [ -123.504712654999977, 48.892354613000094 ], [ -123.50531013799997, 48.893116239000086 ], [ -123.505518030999966, 48.893381201000032 ], [ -123.50611748399993, 48.89414528800004 ], [ -123.507309193999959, 48.895664217000032 ], [ -123.507339801999933, 48.895743882000026 ], [ -123.506690140999936, 48.895728749000092 ], [ -123.506609889999964, 48.895555338000058 ], [ -123.506581216999948, 48.895493393000052 ], [ -123.506305502999965, 48.895232803000084 ], [ -123.506040997999932, 48.894767091000027 ], [ -123.504901694999944, 48.894114796000068 ], [ -123.503281004999906, 48.892879999000044 ], [ -123.502664007999968, 48.892595188000044 ], [ -123.502198621999952, 48.892579499000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7274250", "BldgCostT": "4545000", "sL_LossRatio": "0.718383056874353", "sL_AssetLoss": "51183", "sL_BldgLoss": "36769", "sL_StrLoss": "18690", "sL_NStrLoss": "18079", "sL_ContLoss": "14414", "geom_point": "0101000020E6100000022867A4F5DE5EC0FF3F2D8AC7704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.480716968999957, 48.87957869800006 ], [ -123.486159062999917, 48.879706722000115 ], [ -123.485965715999953, 48.883306557000061 ], [ -123.485114902999953, 48.883286560000023 ], [ -123.484506825, 48.882912003000101 ], [ -123.482247990999937, 48.881950594000045 ], [ -123.480669003999964, 48.881039093000048 ], [ -123.480638990000017, 48.881027469000081 ], [ -123.480716968999957, 48.87957869800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27605499", "BldgCostT": "17619999", "sL_LossRatio": "0.729765741601955", "sL_AssetLoss": "231155", "sL_BldgLoss": "168689", "sL_StrLoss": "86979", "sL_NStrLoss": "81710", "sL_ContLoss": "62466", "geom_point": "0101000020E6100000F6EB882268E45EC0A74AEF7618774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.57400606499999, 48.935852018000041 ], [ -123.574151862999955, 48.933042351000033 ], [ -123.573883006999921, 48.933036261000083 ], [ -123.573854537999978, 48.933584851000084 ], [ -123.573844775999959, 48.93358463000007 ], [ -123.573756129999978, 48.935292749000027 ], [ -123.572873228, 48.935272747000091 ], [ -123.572546785000014, 48.934936896000103 ], [ -123.57118498199999, 48.933935693000102 ], [ -123.57086418399993, 48.933478500000021 ], [ -123.56864390799997, 48.93151028400009 ], [ -123.568122884999951, 48.931206895000052 ], [ -123.567520497999965, 48.931038888000067 ], [ -123.567056005, 48.931176988000139 ], [ -123.566824593999968, 48.931168494000076 ], [ -123.566522189999915, 48.931044597000117 ], [ -123.564336792999981, 48.929697309000069 ], [ -123.563895115999969, 48.929213005000079 ], [ -123.563219395999951, 48.9287131090001 ], [ -123.562684005999984, 48.928480985000064 ], [ -123.561940178999976, 48.927845797000096 ], [ -123.561487395999947, 48.927632214 ], [ -123.560899595, 48.927545313000117 ], [ -123.560612084999946, 48.927555200000043 ], [ -123.560354100999959, 48.927673507000058 ], [ -123.55984951, 48.927676301000083 ], [ -123.558916986999975, 48.927357296000025 ], [ -123.558724699999956, 48.927150791000116 ], [ -123.558637488999935, 48.926729193000057 ], [ -123.558074308999963, 48.926363195000079 ], [ -123.557700091999905, 48.925806305000066 ], [ -123.556905083999979, 48.925531397000029 ], [ -123.556269398999959, 48.924950408000065 ], [ -123.555132380999936, 48.924587197000065 ], [ -123.55482809899999, 48.924219713000063 ], [ -123.554197091, 48.923934902000084 ], [ -123.553905487999955, 48.923548898000028 ], [ -123.553245006999973, 48.923030488000066 ], [ -123.55207778, 48.92234409200006 ], [ -123.551775578999951, 48.922254296000119 ], [ -123.55064988499997, 48.921540794000094 ], [ -123.548637387999918, 48.919877291000148 ], [ -123.548418391999959, 48.91975200200006 ], [ -123.548185398999948, 48.919734905000055 ], [ -123.54777110699996, 48.919188006000113 ], [ -123.547136887999969, 48.91871519400005 ], [ -123.545657407999926, 48.918208192000101 ], [ -123.544871503999957, 48.918011783000054 ], [ -123.544874005999958, 48.9179641220001 ], [ -123.544808494999927, 48.917962620000061 ], [ -123.544817400999975, 48.917792968000121 ], [ -123.545160994999932, 48.917859390000039 ], [ -123.546280688999971, 48.9182156950001 ], [ -123.547144267999926, 48.918573445000035 ], [ -123.547563004999972, 48.91874689600008 ], [ -123.548361299999954, 48.919486915000036 ], [ -123.550653390999926, 48.921354907000122 ], [ -123.553617709999983, 48.922940898000036 ], [ -123.555583989999917, 48.924188600000107 ], [ -123.557133291999946, 48.925408802000028 ], [ -123.558441776000024, 48.926123397000055 ], [ -123.559464221999988, 48.925997146000064 ], [ -123.559704390999968, 48.925967506000077 ], [ -123.559996398999957, 48.926066914000018 ], [ -123.560770807999958, 48.926645012000101 ], [ -123.561323181999953, 48.926824292000042 ], [ -123.561576778999893, 48.926798489000099 ], [ -123.561958491999988, 48.926356687000109 ], [ -123.562634191999933, 48.925086304000075 ], [ -123.562418704999942, 48.924329110000066 ], [ -123.562549795, 48.923697801000053 ], [ -123.563012165999922, 48.922752352000039 ], [ -123.563094767999985, 48.92281998500011 ], [ -123.563259314999982, 48.922954728000043 ], [ -123.563364189999973, 48.923040576000069 ], [ -123.563433231999923, 48.923097106000114 ], [ -123.56356693699999, 48.923268436000086 ], [ -123.563614425999972, 48.923329333000027 ], [ -123.563701636, 48.923441076000117 ], [ -123.56375507499996, 48.923535456000153 ], [ -123.563781055999982, 48.923581374000086 ], [ -123.563851474999979, 48.923705776000148 ], [ -123.563873432999969, 48.923776266000068 ], [ -123.563922290999955, 48.923933078000118 ], [ -123.563979122999925, 48.924115395000094 ], [ -123.564021419999918, 48.924251198000029 ], [ -123.564060475999952, 48.924376466000048 ], [ -123.564110557999939, 48.924537227000016 ], [ -123.56413847099995, 48.924626753000084 ], [ -123.564180655999976, 48.924762098000073 ], [ -123.564256105999959, 48.9249471850001 ], [ -123.564303506999977, 48.925062299000082 ], [ -123.56441188699992, 48.92532020000003 ], [ -123.564496317999968, 48.925435662000069 ], [ -123.564644850999969, 48.925633639000061 ], [ -123.564796519, 48.925835785000068 ], [ -123.564892228999966, 48.925963345000092 ], [ -123.565024632, 48.926139796000022 ], [ -123.565169638999947, 48.926330324000098 ], [ -123.56520448899991, 48.92636940800007 ], [ -123.565365164999946, 48.926549408000042 ], [ -123.565482835999958, 48.926681257000055 ], [ -123.565563880999889, 48.926772086000014 ], [ -123.565729759999954, 48.926923025000043 ], [ -123.565820780999971, 48.927005831000052 ], [ -123.565913888999944, 48.92709057800004 ], [ -123.56609767799992, 48.927241062000121 ], [ -123.566290638999988, 48.927402059000066 ], [ -123.566525247999934, 48.927625785000039 ], [ -123.566611195999883, 48.927703829000059 ], [ -123.566584409, 48.928218520000051 ], [ -123.567194932999939, 48.928232390000055 ], [ -123.567311631999956, 48.928350589000068 ], [ -123.567394443999916, 48.928431136000036 ], [ -123.567573579999944, 48.928574195000117 ], [ -123.567807245000012, 48.92871697200011 ], [ -123.568082653999952, 48.92892253400003 ], [ -123.568289157, 48.929074436000107 ], [ -123.568522988999973, 48.929226218000082 ], [ -123.568770367999889, 48.929368930000095 ], [ -123.568880188, 48.929422364000061 ], [ -123.569210169999934, 48.929627626000062 ], [ -123.569333861999922, 48.929698982000062 ], [ -123.569581357999979, 48.929850690000094 ], [ -123.569705050999943, 48.929922044000058 ], [ -123.569938748999945, 48.930064838000128 ], [ -123.56996627699999, 48.930082689000137 ], [ -123.570172300999957, 48.930189613000067 ], [ -123.57041965699996, 48.930332335000074 ], [ -123.57055709899997, 48.930412592000032 ], [ -123.570749983999946, 48.93056458500012 ], [ -123.571079873999949, 48.930760843 ], [ -123.57116222499991, 48.930796436000044 ], [ -123.571203482999977, 48.93082322300009 ], [ -123.571437318, 48.930974977000041 ], [ -123.571684792999974, 48.931126692000063 ], [ -123.572028584999956, 48.931340893000041 ], [ -123.572234787999932, 48.931465797000051 ], [ -123.572550872999926, 48.931644143000071 ], [ -123.572729601999967, 48.931751207000055 ], [ -123.572949152, 48.931849068000062 ], [ -123.573278074999962, 48.931955373000037 ], [ -123.573510698999954, 48.931999212000051 ], [ -123.573633654999952, 48.932007606000056 ], [ -123.573865966999975, 48.932024418000061 ], [ -123.574002689999986, 48.932041737000119 ], [ -123.574248858999979, 48.932076505000104 ], [ -123.574481354999989, 48.932111325000065 ], [ -123.574604547999968, 48.932137676000117 ], [ -123.574727834, 48.932173060000103 ], [ -123.575056949999919, 48.932297365000103 ], [ -123.575298877999955, 48.93238276000011 ], [ -123.575281060999956, 48.932726316000057 ], [ -123.576256633999947, 48.932748396000115 ], [ -123.576304839999978, 48.93276790900012 ], [ -123.576537858999956, 48.932847719000051 ], [ -123.576825390999957, 48.932918242000063 ], [ -123.576920963999925, 48.932917767000056 ], [ -123.577016461999946, 48.932908284000121 ], [ -123.57731567699993, 48.932807831000041 ], [ -123.577392886999945, 48.932774102000053 ], [ -123.579618092999965, 48.932824409000048 ], [ -123.57943172, 48.936424105000143 ], [ -123.574642548999975, 48.93631577600005 ], [ -123.574142997999957, 48.935899690000056 ], [ -123.57400606499999, 48.935852018000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "502618620", "BldgCostT": "321766090", "sL_LossRatio": "0.728504101467651", "sL_AssetLoss": "3640648", "sL_BldgLoss": "2652227", "sL_StrLoss": "1287841", "sL_NStrLoss": "1364386", "sL_ContLoss": "988421", "geom_point": "0101000020E610000051D647F17BDE5EC0EE3D9D44676E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.496021910999929, 48.884300428000103 ], [ -123.496028950999971, 48.884168839000118 ], [ -123.491955373999943, 48.884073422000043 ], [ -123.492148262999962, 48.880473581000039 ], [ -123.494549708999969, 48.880529850000087 ], [ -123.49473375, 48.877091334000092 ], [ -123.498443316999911, 48.877178150000042 ], [ -123.498480093999916, 48.876489958000043 ], [ -123.497926050999979, 48.876477 ], [ -123.498036031999987, 48.87441927200009 ], [ -123.496244915999966, 48.874377361000022 ], [ -123.496271253999979, 48.873884877000108 ], [ -123.494234661999911, 48.873837186000095 ], [ -123.494161987999917, 48.875194879000077 ], [ -123.488720395999977, 48.875067261000069 ], [ -123.488841388999958, 48.872811692000028 ], [ -123.48478770899996, 48.872716444000055 ], [ -123.484733977999895, 48.873716506000044 ], [ -123.486082407999959, 48.873748207000062 ], [ -123.485889078999946, 48.877348075000107 ], [ -123.480447257999913, 48.877220038000075 ], [ -123.480627948999981, 48.873862786000046 ], [ -123.479279518999988, 48.873831016000082 ], [ -123.479418622999972, 48.871247486000058 ], [ -123.476363669999927, 48.871175447000027 ], [ -123.476416729999954, 48.870191112000036 ], [ -123.476493949999963, 48.868758482000025 ], [ -123.475983856999974, 48.868746445000056 ], [ -123.47595463199994, 48.869288543000089 ], [ -123.470513774999958, 48.869159998000065 ], [ -123.470528158999954, 48.868893779000111 ], [ -123.468455818999985, 48.868844745000061 ], [ -123.468472168999966, 48.86854234400009 ], [ -123.466709273999967, 48.868500601000079 ], [ -123.466731949999939, 48.868081516000117 ], [ -123.465598959999951, 48.868054672 ], [ -123.46560344699999, 48.867971790000048 ], [ -123.464876238999949, 48.867954553000118 ], [ -123.46493159299996, 48.866932216000116 ], [ -123.462611619999947, 48.866877197000065 ], [ -123.462738361000021, 48.864538389000103 ], [ -123.462169544999952, 48.864524891 ], [ -123.462256641999971, 48.86291788700008 ], [ -123.461714689999923, 48.862905024000035 ], [ -123.461643378999966, 48.864220510000116 ], [ -123.461101782999918, 48.864207652000097 ], [ -123.46104541399994, 48.865247221000061 ], [ -123.455605066999965, 48.865117918000109 ], [ -123.455648963, 48.864310115000123 ], [ -123.454437673, 48.864281289000132 ], [ -123.45446723299996, 48.86373756400009 ], [ -123.452727845999959, 48.863696145000091 ], [ -123.452743249, 48.863412999000047 ], [ -123.449696650999982, 48.86334038300005 ], [ -123.448043408999951, 48.862629795000053 ], [ -123.448005044999888, 48.862602766000066 ], [ -123.448036311999942, 48.862029053000178 ], [ -123.446964643999976, 48.862003471000072 ], [ -123.445222416999968, 48.861165704000015 ], [ -123.443439709999964, 48.860201501000091 ], [ -123.442695403999963, 48.85987431700007 ], [ -123.441716193999966, 48.859443897000062 ], [ -123.441267984999982, 48.859172322000077 ], [ -123.44116841499999, 48.859112005000057 ], [ -123.440675092999953, 48.858979611000052 ], [ -123.440599153, 48.85890270700002 ], [ -123.440754875999986, 48.856053248000045 ], [ -123.441127829999957, 48.856062175000034 ], [ -123.441169801999962, 48.855293955000029 ], [ -123.442537382999944, 48.855326677000058 ], [ -123.44304491199992, 48.855569993000145 ], [ -123.443046393000017, 48.85574091400013 ], [ -123.442503802999966, 48.855913189000084 ], [ -123.442327002999917, 48.8560856020001 ], [ -123.442323755999936, 48.856127471000043 ], [ -123.442315901999962, 48.856229393000064 ], [ -123.442610349999981, 48.856414657000066 ], [ -123.443069785999967, 48.856703697000107 ], [ -123.443290510999958, 48.857016999000031 ], [ -123.444149204999974, 48.857112397000066 ], [ -123.445529503, 48.857521184000099 ], [ -123.446085040999947, 48.857568961000069 ], [ -123.446540411999933, 48.857608093000074 ], [ -123.44682729000003, 48.857794601000059 ], [ -123.447826201999945, 48.858177685000022 ], [ -123.449205392999886, 48.858388513000129 ], [ -123.451623296999983, 48.859026601000132 ], [ -123.45243061599993, 48.859374108000118 ], [ -123.452899197999955, 48.859768602000024 ], [ -123.45389809299995, 48.860133211000118 ], [ -123.45459912199999, 48.860851 ], [ -123.455394410999958, 48.861261102000064 ], [ -123.456948717999936, 48.861434898 ], [ -123.457575109999951, 48.861271099000106 ], [ -123.458415707999947, 48.860764088000103 ], [ -123.459164205999983, 48.860697211000037 ], [ -123.459463601999914, 48.860579010000045 ], [ -123.459982302999904, 48.860504902000109 ], [ -123.461970387999926, 48.860416603000047 ], [ -123.463272518999929, 48.860996206000031 ], [ -123.463452101999948, 48.861355087000092 ], [ -123.463401108999989, 48.861742495000044 ], [ -123.463443763999976, 48.861910902000098 ], [ -123.463446718999975, 48.861922581000016 ], [ -123.463528502999949, 48.862245293000072 ], [ -123.463691891999943, 48.862262416000114 ], [ -123.463813995999956, 48.862162692 ], [ -123.46455029399999, 48.862169805000043 ], [ -123.465972787999988, 48.862622697000113 ], [ -123.466358305999918, 48.862935995000065 ], [ -123.466073310999931, 48.863206593000065 ], [ -123.46610179399994, 48.86334189800008 ], [ -123.466867985999897, 48.863670890000037 ], [ -123.467417477999959, 48.864155095000037 ], [ -123.467787680999919, 48.86430609300006 ], [ -123.468237099999925, 48.864277590000015 ], [ -123.468524493999936, 48.864338915000133 ], [ -123.469486401000012, 48.865199099000101 ], [ -123.470594717999973, 48.865464 ], [ -123.471813615999949, 48.866007996000114 ], [ -123.472522695999899, 48.866176097000057 ], [ -123.472945374999981, 48.866201694000061 ], [ -123.473218379999963, 48.866110592000069 ], [ -123.474395691999973, 48.866663205000044 ], [ -123.476922213999927, 48.867101804000114 ], [ -123.477768804999926, 48.867090388000058 ], [ -123.477913095999924, 48.866932906000081 ], [ -123.477876801999912, 48.867606676000023 ], [ -123.481998394999977, 48.867703798000029 ], [ -123.481938176999961, 48.868823490000089 ], [ -123.481859443999966, 48.870287346000026 ], [ -123.484174639999964, 48.870341831000133 ], [ -123.484241416999964, 48.869099153000036 ], [ -123.485914610999956, 48.869138498000027 ], [ -123.486047056999965, 48.866671863000121 ], [ -123.481300931999982, 48.866560189 ], [ -123.481330355999916, 48.86601319800009 ], [ -123.480484188, 48.865993265000142 ], [ -123.480251715999941, 48.865775893000084 ], [ -123.479856530999939, 48.865565146000122 ], [ -123.479980668999985, 48.863258615000049 ], [ -123.47999345, 48.863021132000029 ], [ -123.478150847999984, 48.86297769400008 ], [ -123.47814637099998, 48.863060808000114 ], [ -123.477546961999934, 48.863046671000099 ], [ -123.476268502999972, 48.863016505000054 ], [ -123.476213193999982, 48.864042695000037 ], [ -123.476144003999963, 48.864019797000083 ], [ -123.475530397999989, 48.863968595000152 ], [ -123.475149307, 48.864078199000112 ], [ -123.475041199999964, 48.864194993000062 ], [ -123.475727818999957, 48.866261502000036 ], [ -123.475593691999961, 48.866423889000096 ], [ -123.475442714999957, 48.866415395000097 ], [ -123.474866201999959, 48.866030798000089 ], [ -123.474471216, 48.865915496000042 ], [ -123.473748300999944, 48.865847093000085 ], [ -123.473244498999946, 48.865902610000063 ], [ -123.471931093999927, 48.865530897000077 ], [ -123.471464211999916, 48.865182003000015 ], [ -123.470808704999968, 48.865022486000072 ], [ -123.469492384999938, 48.864380203000081 ], [ -123.468460809999968, 48.863331894000034 ], [ -123.468030600999953, 48.862605608000081 ], [ -123.468150105999911, 48.862208307000081 ], [ -123.467940502999966, 48.861724009000099 ], [ -123.468154580999965, 48.861218392000062 ], [ -123.46821716800001, 48.86084627400011 ], [ -123.468336108999935, 48.860138911000099 ], [ -123.468005317999953, 48.85981700300006 ], [ -123.467459182999931, 48.859772892000073 ], [ -123.467328027999955, 48.8597369740001 ], [ -123.46658538899996, 48.859533602000106 ], [ -123.465706527999941, 48.859452407000035 ], [ -123.463634354999925, 48.859260928000047 ], [ -123.462301012999916, 48.859137705000094 ], [ -123.460017792999963, 48.858427004000113 ], [ -123.457447995999971, 48.85781599000007 ], [ -123.457187193999943, 48.857700605000062 ], [ -123.456906711999949, 48.85743258800008 ], [ -123.456984532999968, 48.855999446000048 ], [ -123.458225380000016, 48.856028953000042 ], [ -123.458249805999984, 48.85557887600006 ], [ -123.459012645999934, 48.855597008000082 ], [ -123.459048015999926, 48.854945085000082 ], [ -123.453781818999943, 48.854819797000097 ], [ -123.453876184999928, 48.853084011000107 ], [ -123.449898284999918, 48.852989201000064 ], [ -123.449908837999956, 48.85279537400006 ], [ -123.44904237899999, 48.85277470400009 ], [ -123.449011066999972, 48.853349586000064 ], [ -123.448572489999947, 48.853164495000129 ], [ -123.447599296, 48.852529295000082 ], [ -123.44705229, 48.852369805000116 ], [ -123.446585394999971, 48.852093509000028 ], [ -123.446216989999968, 48.852067902000023 ], [ -123.445750421999932, 48.851700403000066 ], [ -123.445203604, 48.851495286000095 ], [ -123.444943495999951, 48.851307313000035 ], [ -123.444274987999933, 48.85117490300005 ], [ -123.442811399999968, 48.850613797000051 ], [ -123.442274182999967, 48.850139503000094 ], [ -123.442298080999961, 48.849581202000095 ], [ -123.44200222099991, 48.849554767000029 ], [ -123.441532195999955, 48.849512797000031 ], [ -123.440180292999955, 48.849202406000124 ], [ -123.439699911999966, 48.848655502000092 ], [ -123.43909890099998, 48.848496001000044 ], [ -123.438892477999971, 48.848316494000109 ], [ -123.438564402999972, 48.848228187000089 ], [ -123.437727686999935, 48.847574494000121 ], [ -123.436534716999958, 48.846878103000044 ], [ -123.435032185999944, 48.846460808000117 ], [ -123.434841489999926, 48.846506303000126 ], [ -123.43481699699997, 48.846677205000098 ], [ -123.434559584999946, 48.846876599000034 ], [ -123.43461088599993, 48.846587495000108 ], [ -123.434459584999942, 48.846489204000065 ], [ -123.433134698999979, 48.846090512000032 ], [ -123.431791795999985, 48.845267301000035 ], [ -123.430780382999941, 48.84500099600006 ], [ -123.42872428, 48.843686394 ], [ -123.428738075999945, 48.843632295000141 ], [ -123.428982587999911, 48.843632311000057 ], [ -123.428969079999959, 48.843523996000087 ], [ -123.428176392999916, 48.843193599000095 ], [ -123.427832118999959, 48.842888901000073 ], [ -123.427064596999941, 48.842495790000086 ], [ -123.426513998999923, 48.841842099000068 ], [ -123.425020914999919, 48.840749707000029 ], [ -123.425045589999954, 48.840462002000102 ], [ -123.425316496000036, 48.840254109000078 ], [ -123.425656910999948, 48.840234106000011 ], [ -123.426695400999947, 48.840671403000023 ], [ -123.427175878999961, 48.840976094000041 ], [ -123.427694714999987, 48.841154202000055 ], [ -123.429106599999926, 48.842146810000074 ], [ -123.429407117999986, 48.842226605000064 ], [ -123.429531411999932, 48.842360501000087 ], [ -123.4304308899999, 48.842403190000049 ], [ -123.43189289299994, 48.84288311500007 ], [ -123.43283769, 48.843374496000081 ], [ -123.432894193999971, 48.84356249200011 ], [ -123.433644584999968, 48.84367640100001 ], [ -123.434246515999988, 48.843864393000061 ], [ -123.435450103999969, 48.844444107000065 ], [ -123.436095683999923, 48.844891293000082 ], [ -123.436643708999952, 48.845150496000031 ], [ -123.436684688999918, 48.84536559500004 ], [ -123.437259712, 48.84558910100008 ], [ -123.437547776999963, 48.845829794000068 ], [ -123.438545603999927, 48.845987900000075 ], [ -123.438832695999963, 48.84609470500002 ], [ -123.439092294999938, 48.846309804000065 ], [ -123.440379510999932, 48.846989095000026 ], [ -123.440916306999952, 48.847490505000067 ], [ -123.441229901999975, 48.847471992000095 ], [ -123.441640577999962, 48.847649993000061 ], [ -123.44364050199999, 48.848920392000053 ], [ -123.44396151499997, 48.849692302000065 ], [ -123.444370207999938, 48.849771987000075 ], [ -123.445029076999944, 48.850219195000058 ], [ -123.445349, 48.850910002 ], [ -123.445620605999977, 48.850927083000094 ], [ -123.446178789999976, 48.850780409000073 ], [ -123.446570909999977, 48.850410094000104 ], [ -123.446828413999967, 48.850293294000132 ], [ -123.448151405999937, 48.85036020900003 ], [ -123.448397300999915, 48.850286189000052 ], [ -123.448801307999958, 48.849880302000066 ], [ -123.449058384999987, 48.84956409400008 ], [ -123.449015117999977, 48.849447301000026 ], [ -123.448317701999912, 48.848973097000091 ], [ -123.448026508999931, 48.84850739900002 ], [ -123.447871192999941, 48.847986110000093 ], [ -123.447526414999942, 48.847546004000051 ], [ -123.44708988799999, 48.847322390000059 ], [ -123.447031873999961, 48.846963494000114 ], [ -123.44649720599989, 48.846793984000051 ], [ -123.446250091999971, 48.846489214000087 ], [ -123.44546859399999, 48.845916713000101 ], [ -123.444481025999934, 48.845318604000092 ], [ -123.444370387999967, 48.84518321200003 ], [ -123.444382106999939, 48.844914100000075 ], [ -123.442945616999978, 48.84429880600009 ], [ -123.442761599, 48.844067189000079 ], [ -123.442791122999964, 48.843526356000083 ], [ -123.44283067500001, 48.843533997000129 ], [ -123.445759210999967, 48.844935385000092 ], [ -123.446373305999927, 48.844932607000068 ], [ -123.447001102999977, 48.845056482000068 ], [ -123.447477497999927, 48.845063601000106 ], [ -123.448748283, 48.845409698000019 ], [ -123.449755813999943, 48.845253006000036 ], [ -123.450502606, 48.845015204000056 ], [ -123.45117101299995, 48.845030908000119 ], [ -123.452141096, 48.845342812000084 ], [ -123.45293628599994, 48.845842694000112 ], [ -123.454288999, 48.846098988000044 ], [ -123.455150490999969, 48.846536311000087 ], [ -123.45584709399999, 48.846604611000124 ], [ -123.456832095999928, 48.846943605000078 ], [ -123.45698249599999, 48.847077394000067 ], [ -123.456876592999905, 48.847375116000123 ], [ -123.457055121999929, 48.847671303000062 ], [ -123.457959984999945, 48.848108591000056 ], [ -123.460283984999947, 48.848844907000057 ], [ -123.461023097999941, 48.849292093000109 ], [ -123.462416892999897, 48.849646697000068 ], [ -123.462840392999965, 48.84968938800008 ], [ -123.463181592999931, 48.849679506000051 ], [ -123.463656612999941, 48.849470103000087 ], [ -123.464188277999938, 48.849460099000069 ], [ -123.464527894999918, 48.849377497000134 ], [ -123.464949587999911, 48.849393193000068 ], [ -123.466370305999973, 48.849648102000081 ], [ -123.466739000999951, 48.849809109000091 ], [ -123.467069215, 48.850157997000053 ], [ -123.467917607999979, 48.850524005000082 ], [ -123.468167194, 48.850783188000058 ], [ -123.46994640199992, 48.851613586000134 ], [ -123.471395010999927, 48.851993808000067 ], [ -123.472387703999956, 48.851810110000045 ], [ -123.473222197000013, 48.852094908000019 ], [ -123.475208604999935, 48.853066195000061 ], [ -123.475523995999964, 48.853335394000084 ], [ -123.47555529899999, 48.853775498000047 ], [ -123.475734983, 48.853937895000094 ], [ -123.476500397000024, 48.854177102000072 ], [ -123.477129919999939, 48.854551700000059 ], [ -123.477567888999914, 48.854550292000027 ], [ -123.477960475999936, 48.854386494000096 ], [ -123.478179112999953, 48.85438649700005 ], [ -123.478699192999954, 48.854725395000116 ], [ -123.479072296999945, 48.855146990000023 ], [ -123.47798429, 48.855394796000134 ], [ -123.478013199999936, 48.855601285000134 ], [ -123.479567882999945, 48.855702501000074 ], [ -123.480463262999947, 48.855955442000074 ], [ -123.481045189999989, 48.856119803000091 ], [ -123.481725592, 48.856152511000062 ], [ -123.482204194999895, 48.856257892000059 ], [ -123.485190459999956, 48.857851794000098 ], [ -123.485194848999953, 48.857854134000092 ], [ -123.485232822999976, 48.857874402000085 ], [ -123.485781096999958, 48.8580510050001 ], [ -123.486397287999949, 48.858399901000084 ], [ -123.487081010999972, 48.858612088000051 ], [ -123.487229244, 48.858684347000057 ], [ -123.488930604999922, 48.859513594000084 ], [ -123.489476205999907, 48.85966458900009 ], [ -123.489458488999929, 48.859223098000022 ], [ -123.489240142999932, 48.858780025000094 ], [ -123.489153200999979, 48.858603612000131 ], [ -123.488615614999958, 48.858003995000104 ], [ -123.487488414999945, 48.857145191000065 ], [ -123.48745948399997, 48.856776293000074 ], [ -123.487361304999922, 48.856668090000063 ], [ -123.48685378099999, 48.85635620000005 ], [ -123.486007187999959, 48.856250804000112 ], [ -123.484954687999959, 48.855779398000102 ], [ -123.484610606999965, 48.855420503000062 ], [ -123.484580113999925, 48.85520539700007 ], [ -123.484756989999966, 48.855149903000054 ], [ -123.484818634999954, 48.855168936000069 ], [ -123.48559200499993, 48.855407587000101 ], [ -123.486372701999954, 48.855907500000107 ], [ -123.488121807999974, 48.856341901000135 ], [ -123.488341185999971, 48.856340508000045 ], [ -123.488535820999957, 48.856192317000065 ], [ -123.488560526999962, 48.856173511000065 ], [ -123.489220383999964, 48.855671101000013 ], [ -123.489461099999957, 48.855337901000105 ], [ -123.489593885999966, 48.854913400000079 ], [ -123.489920496999957, 48.854894901000044 ], [ -123.490577996999917, 48.85515269200004 ], [ -123.490976610999937, 48.855420507000126 ], [ -123.491427317999964, 48.855544395000031 ], [ -123.491619393999883, 48.85571529300006 ], [ -123.492344689999953, 48.85606280100005 ], [ -123.49263892499998, 48.856319470000074 ], [ -123.492991305999936, 48.856626806000051 ], [ -123.493130304999909, 48.856860303000111 ], [ -123.493334587999968, 48.856858901000038 ], [ -123.493688711999965, 48.85668659500007 ], [ -123.494207410999977, 48.856873192000066 ], [ -123.495900612999975, 48.857216408000077 ], [ -123.497189823999946, 48.857939902000034 ], [ -123.497931712999943, 48.858485391000052 ], [ -123.49824999099998, 48.858844302000094 ], [ -123.498578315, 48.859030797000045 ], [ -123.499434505999915, 48.858794401000083 ], [ -123.499940082999956, 48.858864201000038 ], [ -123.500677616999951, 48.859103501000085 ], [ -123.500773102999972, 48.859012294000067 ], [ -123.501192792999973, 48.858687590000059 ], [ -123.501245289999957, 48.858471099000027 ], [ -123.501486898999943, 48.858200509000035 ], [ -123.501402700999947, 48.857912811000084 ], [ -123.501632277999988, 48.857677926000115 ], [ -123.501658795999958, 48.857650794000051 ], [ -123.501671919, 48.857506898000025 ], [ -123.501602178999946, 48.857371592000106 ], [ -123.501271508999963, 48.857166489000029 ], [ -123.501241487999962, 48.856735006000079 ], [ -123.500674904999954, 48.855963097000078 ], [ -123.50036839099999, 48.85532651200004 ], [ -123.50010690000002, 48.855102886000104 ], [ -123.500021207999964, 48.854761093000072 ], [ -123.500067989999977, 48.853987703000023 ], [ -123.498704811999986, 48.854047490000013 ], [ -123.498213511999907, 48.853915095000083 ], [ -123.497869507999951, 48.85367299300006 ], [ -123.497859478999942, 48.8538794930001 ], [ -123.497982082999926, 48.853933598000062 ], [ -123.497859505999898, 48.854041810000084 ], [ -123.497408291999946, 48.85382820500007 ], [ -123.497584900999939, 48.853655910000036 ], [ -123.497241898999974, 48.85344220000011 ], [ -123.497173622, 48.85350490000009 ], [ -123.496707393999898, 48.853309791000058 ], [ -123.496748489999959, 48.853245695000084 ], [ -123.496675902999968, 48.853177415000083 ], [ -123.496253307999922, 48.852779989000133 ], [ -123.495638784999983, 48.852711591000045 ], [ -123.495161869999919, 48.852257764000065 ], [ -123.495179863999937, 48.851921316000066 ], [ -123.49526317599998, 48.851912598000126 ], [ -123.495973510999988, 48.85207069700003 ], [ -123.496248122999987, 48.850900002000074 ], [ -123.49632911199997, 48.850864390000034 ], [ -123.496413190999959, 48.851152110000072 ], [ -123.496259488999939, 48.852141893000116 ], [ -123.497315303000022, 48.852694502000119 ], [ -123.498165313999934, 48.851701897000083 ], [ -123.498800215999935, 48.851167807000067 ], [ -123.498962101999894, 48.85113070600007 ], [ -123.499566207999948, 48.851398499000069 ], [ -123.499714118000014, 48.851344403000091 ], [ -123.499780279999982, 48.851119399 ], [ -123.499734816999961, 48.850761482000031 ], [ -123.500379149999972, 48.850710098000029 ], [ -123.501527290999974, 48.850618605000058 ], [ -123.501251336999957, 48.850803249000094 ], [ -123.501058679999986, 48.850932166000071 ], [ -123.500663292999974, 48.851196700000045 ], [ -123.500935202, 48.851303572000127 ], [ -123.501046014999972, 48.851347112000063 ], [ -123.501587573999984, 48.851440296000106 ], [ -123.502264193999935, 48.851556702000089 ], [ -123.502379, 48.851879296000114 ], [ -123.50239623399996, 48.85206998700005 ], [ -123.502434702999949, 48.852495195000053 ], [ -123.502536398999979, 48.852630005000094 ], [ -123.502586403999928, 48.852866398000032 ], [ -123.502590499999897, 48.853530593000109 ], [ -123.500026908999985, 48.85355449700004 ], [ -123.500237406999958, 48.853896395000113 ], [ -123.500285107999943, 48.854085812000086 ], [ -123.500320819999942, 48.854227665000039 ], [ -123.500363191999895, 48.85439591200003 ], [ -123.500644387999941, 48.855326108000042 ], [ -123.501110691999941, 48.856080493000078 ], [ -123.501222920999965, 48.856263250000026 ], [ -123.501304775999969, 48.856396494000165 ], [ -123.501864751999904, 48.857308299000074 ], [ -123.502253875999898, 48.857672387000051 ], [ -123.50238996, 48.857750386000156 ], [ -123.501739422999918, 48.858459702000076 ], [ -123.501626709999968, 48.858581420000107 ], [ -123.501507325999938, 48.85893006500006 ], [ -123.501558145999965, 48.860197419 ], [ -123.501559346999954, 48.860227084 ], [ -123.50151869599992, 48.860400708000078 ], [ -123.501446469999948, 48.860709263000075 ], [ -123.501356804999958, 48.860947805000066 ], [ -123.501168755999927, 48.861447997000035 ], [ -123.500969830999978, 48.862114683000094 ], [ -123.500938313999981, 48.862499583000108 ], [ -123.501265092999972, 48.863062299000049 ], [ -123.501374601999956, 48.863510085000016 ], [ -123.50139679499992, 48.863911602000044 ], [ -123.501366446999953, 48.864157446000057 ], [ -123.501344118999967, 48.864338388000107 ], [ -123.501235582999968, 48.864763002000061 ], [ -123.501189616999952, 48.864856337000042 ], [ -123.501145527999967, 48.86494576000004 ], [ -123.50109232199999, 48.865053815000081 ], [ -123.500942394999967, 48.865358001000089 ], [ -123.500932634999955, 48.865489794000055 ], [ -123.500908105999955, 48.865821297000139 ], [ -123.5010207699999, 48.86607038500005 ], [ -123.501107872999953, 48.866263003 ], [ -123.501347299999921, 48.866624588000072 ], [ -123.501346172999945, 48.866631508000054 ], [ -123.501349950999966, 48.866673720000051 ], [ -123.501341378999925, 48.866791940000041 ], [ -123.501355449999934, 48.866836865000018 ], [ -123.501371252999945, 48.867052684000051 ], [ -123.501385944, 48.867160585000086 ], [ -123.501400124999989, 48.867214470000036 ], [ -123.501387676999954, 48.867331478000096 ], [ -123.501389907999965, 48.867556365000077 ], [ -123.501393041000014, 48.867871215000072 ], [ -123.50139388599996, 48.867952169000041 ], [ -123.501395584999955, 48.868123075000085 ], [ -123.501397377999979, 48.868302976000095 ], [ -123.501384801999947, 48.868411002000052 ], [ -123.501371976999934, 48.868492032000077 ], [ -123.501372805999935, 48.86857296400008 ], [ -123.501388216999956, 48.868752836000027 ], [ -123.50140341499997, 48.868905702000042 ], [ -123.501391989999945, 48.869130631000161 ], [ -123.501365813999925, 48.869238706000061 ], [ -123.501353253, 48.869346698000093 ], [ -123.501314234999967, 48.869535781000145 ], [ -123.501289037999953, 48.86974279300005 ], [ -123.501263826999903, 48.869949839000107 ], [ -123.50121090499999, 48.870111963000063 ], [ -123.501211341, 48.870156950000123 ], [ -123.501212152999983, 48.870237918000029 ], [ -123.501212715999912, 48.870291889000043 ], [ -123.501227518999897, 48.870408752000067 ], [ -123.50122974599999, 48.870633642000058 ], [ -123.501272650999951, 48.870831370000097 ], [ -123.501342452999936, 48.870992996000055 ], [ -123.501386293999957, 48.871154832000052 ], [ -123.501423613999975, 48.871222141 ], [ -123.501484823999988, 48.871346899000073 ], [ -123.50151644499995, 48.871397813000087 ], [ -123.501605176999973, 48.871489809000096 ], [ -123.501744911999964, 48.871692923000111 ], [ -123.501758984999952, 48.871737848000052 ], [ -123.501815511999894, 48.871935493000059 ], [ -123.501829393999969, 48.871962428000067 ], [ -123.501857324999904, 48.872025271000105 ], [ -123.5019134, 48.872177964000109 ], [ -123.501956028, 48.872348709000086 ], [ -123.502012801999939, 48.872573352000082 ], [ -123.5020136159999, 48.872654320000088 ], [ -123.502015162999953, 48.87280722600007 ], [ -123.502017205999962, 48.873014128000079 ], [ -123.502032732999922, 48.873202966000079 ], [ -123.502047463999929, 48.873310858000082 ], [ -123.502062726999981, 48.873472731000042 ], [ -123.502076967999955, 48.873535625000017 ], [ -123.502064521999984, 48.873652636000081 ], [ -123.502065147999957, 48.87371561500003 ], [ -123.502039951999933, 48.873922629000106 ], [ -123.502040780999934, 48.874003563000073 ], [ -123.502042541999913, 48.874183481000088 ], [ -123.502085739000023, 48.874408197000079 ], [ -123.502113540999972, 48.874462057000081 ], [ -123.502210982999983, 48.874659518000037 ], [ -123.502322045999946, 48.874856951000041 ], [ -123.502336059999919, 48.874892869000099 ], [ -123.50236414699998, 48.874973714000099 ], [ -123.502474681, 48.875117165000106 ], [ -123.502680786999974, 48.875269198000055 ], [ -123.502845230999981, 48.875349455000091 ], [ -123.502995956999968, 48.875420745000042 ], [ -123.503242884999949, 48.875563594000056 ], [ -123.503311620999952, 48.87561728900009 ], [ -123.503448868999897, 48.875706642000118 ], [ -123.503736631999914, 48.875840332000095 ], [ -123.503928293999948, 48.875911456000047 ], [ -123.504037923999974, 48.87596494100007 ], [ -123.50413384299992, 48.876009514000103 ], [ -123.504214197999914, 48.876061823000065 ], [ -123.504216198999984, 48.876063124000055 ], [ -123.50454522699999, 48.876232616000024 ], [ -123.504736795999946, 48.876294743000066 ], [ -123.504838047999939, 48.876354676000091 ], [ -123.504887683999954, 48.876384033000058 ], [ -123.505216655999931, 48.876544516000045 ], [ -123.50546365699995, 48.87669637000004 ], [ -123.505559464999948, 48.87673192500008 ], [ -123.50584724299992, 48.876865607000084 ], [ -123.505998249999948, 48.876963913000083 ], [ -123.50629955799999, 48.877088515000032 ], [ -123.506395668999957, 48.87715107800009 ], [ -123.50660103899996, 48.87723114100001 ], [ -123.506903171999937, 48.877436711 ], [ -123.507245572999949, 48.877579147000112 ], [ -123.5074375, 48.877677263000081 ], [ -123.507698187999893, 48.877829034000058 ], [ -123.507862588999913, 48.877900277 ], [ -123.507999756999979, 48.877980629000064 ], [ -123.508205516000018, 48.878096671000037 ], [ -123.508465828999988, 48.878212460000071 ], [ -123.50852101299995, 48.878275188000039 ], [ -123.508548828999935, 48.878329046000069 ], [ -123.50856294399992, 48.878373959000086 ], [ -123.508563387, 48.878418947000057 ], [ -123.508552051000024, 48.878643894000049 ], [ -123.50855368400002, 48.878805812000046 ], [ -123.50856857299999, 48.878931685000026 ], [ -123.508569430999941, 48.879012643000046 ], [ -123.508569970999929, 48.879066627000036 ], [ -123.508571584, 48.879228522000105 ], [ -123.508572062999917, 48.879273499000099 ], [ -123.508601414999958, 48.879480280000095 ], [ -123.508630959999977, 48.879705051000023 ], [ -123.508631245999979, 48.879732037000025 ], [ -123.508632530999975, 48.879857961 ], [ -123.508607364999989, 48.880064982000107 ], [ -123.508609188999984, 48.880244891000082 ], [ -123.508637481999969, 48.880343726000085 ], [ -123.508652180999931, 48.88045160900004 ], [ -123.508639654999953, 48.880559629000075 ], [ -123.508641843999925, 48.880775497000151 ], [ -123.508644145999966, 48.881000383000064 ], [ -123.508644873999941, 48.881072358000011 ], [ -123.508645223999963, 48.881108353000094 ], [ -123.508633026999973, 48.881252344000117 ], [ -123.508647854999936, 48.881369210000059 ], [ -123.508648583999943, 48.88144118600006 ], [ -123.508664143000018, 48.881630028000075 ], [ -123.508664333999931, 48.881648019000103 ], [ -123.508678452999987, 48.881692933000075 ], [ -123.508680434, 48.881890846000076 ], [ -123.508709821999972, 48.882097616000109 ], [ -123.508710724999929, 48.882187560000027 ], [ -123.508739465999938, 48.88233138500005 ], [ -123.50873994199999, 48.882376363000056 ], [ -123.50872841499995, 48.882583322000038 ], [ -123.50875738799999, 48.882754124000058 ], [ -123.508799973999928, 48.882915842000045 ], [ -123.508788315999936, 48.883113818000069 ], [ -123.508734947999955, 48.883231002000073 ], [ -123.508655214999976, 48.8834364390001 ], [ -123.506478520999963, 48.883123505000107 ], [ -123.506036141999942, 48.883041046000073 ], [ -123.504738413, 48.882799112000022 ], [ -123.50362671100001, 48.882825429000086 ], [ -123.503441754999969, 48.882870248000117 ], [ -123.503558685999977, 48.88067798400003 ], [ -123.503050489999922, 48.880666123000054 ], [ -123.503115521999945, 48.879447 ], [ -123.502945158999935, 48.879443024000096 ], [ -123.502962090000011, 48.879125647000059 ], [ -123.502648066999924, 48.879118317000071 ], [ -123.502679696999962, 48.878525479000032 ], [ -123.501931077999984, 48.878508 ], [ -123.501945373999988, 48.878240122000115 ], [ -123.500123315999971, 48.878197559000036 ], [ -123.499984924999964, 48.88078876000003 ], [ -123.501656756999964, 48.880827817000061 ], [ -123.50146459699999, 48.884427673000054 ], [ -123.496021910999929, 48.884300428000103 ] ], [ [ -123.481446433, 48.862411446000124 ], [ -123.481493530999913, 48.861535746000094 ], [ -123.480903184999974, 48.86152184000013 ], [ -123.480856075, 48.862397539000028 ], [ -123.481446433, 48.862411446000124 ] ], [ [ -123.496619657999958, 48.861134495000073 ], [ -123.496558131, 48.862285375000106 ], [ -123.496606656999973, 48.862286512000075 ], [ -123.496609307999933, 48.862236936000052 ], [ -123.49922034199993, 48.86229803 ], [ -123.499258544999975, 48.861582655000092 ], [ -123.49928512299999, 48.861084980000079 ], [ -123.496823526999961, 48.861027384000067 ], [ -123.49575160099999, 48.861002286000037 ], [ -123.495809696999956, 48.859915903000044 ], [ -123.494352895999924, 48.859881776000051 ], [ -123.494346045, 48.860009820000101 ], [ -123.493083735999946, 48.85998023300008 ], [ -123.493028053000018, 48.86102035000004 ], [ -123.49307658399999, 48.861021488000105 ], [ -123.49307498, 48.861051451 ], [ -123.496619657999958, 48.861134495000073 ] ], [ [ -123.477800649999921, 48.859364924000054 ], [ -123.477834223999963, 48.858741538000125 ], [ -123.476524629999915, 48.858710639000051 ], [ -123.476491037999935, 48.859334025000081 ], [ -123.477800649999921, 48.859364924000054 ] ], [ [ -123.475678424999955, 48.858690142000043 ], [ -123.475730097999957, 48.857731497000039 ], [ -123.47453579899999, 48.857703294000046 ], [ -123.474484100999945, 48.858661938000118 ], [ -123.475678424999955, 48.858690142000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287905828", "BldgCostT": "191607410", "sL_LossRatio": "0.791801884841351", "sL_AssetLoss": "1958255", "sL_BldgLoss": "1550550", "sL_StrLoss": "788997", "sL_NStrLoss": "761553", "sL_ContLoss": "407705", "geom_point": "0101000020E610000019C5C4494EE15EC0092194B555724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.515326804, 48.902294091000016 ], [ -123.514697946999959, 48.901844124000064 ], [ -123.513558191999962, 48.901028501000013 ], [ -123.512938550999976, 48.900432590000015 ], [ -123.5125923, 48.900099603000101 ], [ -123.512479899999917, 48.900016753000067 ], [ -123.510639755999989, 48.89866039700005 ], [ -123.509810286999965, 48.898048941000091 ], [ -123.509503610999971, 48.89782287100013 ], [ -123.508851011999937, 48.897341790000098 ], [ -123.508761016999955, 48.897304254000083 ], [ -123.508195103999952, 48.897068012000055 ], [ -123.507680194999949, 48.896629811000061 ], [ -123.507353605999924, 48.895779807000082 ], [ -123.511740287999928, 48.895881893000045 ], [ -123.511721584999975, 48.896233593000048 ], [ -123.513401949999945, 48.896272651000046 ], [ -123.513376824999952, 48.89674542300007 ], [ -123.513724581999952, 48.896753503000078 ], [ -123.513847963999964, 48.894431435000079 ], [ -123.510550743999914, 48.894354783000026 ], [ -123.510610467999967, 48.893232149000042 ], [ -123.509873021999937, 48.893214991000022 ], [ -123.509871625999949, 48.893241240000059 ], [ -123.509338523999958, 48.893228833000087 ], [ -123.50920234099999, 48.895787250000062 ], [ -123.507339801999933, 48.895743882000026 ], [ -123.507309193999959, 48.895664217000032 ], [ -123.50611748399993, 48.89414528800004 ], [ -123.505518030999966, 48.893381201000032 ], [ -123.50531013799997, 48.893116239000086 ], [ -123.504712654999977, 48.892354613000094 ], [ -123.50469089799995, 48.892326898000114 ], [ -123.503206623999972, 48.890811010000036 ], [ -123.502964617999936, 48.890563791000027 ], [ -123.502620950999955, 48.89024744700005 ], [ -123.501992968999971, 48.889669344000026 ], [ -123.501632891, 48.889337838000074 ], [ -123.501387915999914, 48.889112286000113 ], [ -123.501390660999945, 48.887341972000115 ], [ -123.501391589999955, 48.886747024000144 ], [ -123.501358201999935, 48.885714229000016 ], [ -123.502452421999962, 48.885739776000037 ], [ -123.502475481999952, 48.885307648000072 ], [ -123.507876727999957, 48.885433596000084 ], [ -123.507883905999961, 48.885298805000097 ], [ -123.50447936899999, 48.885219449000026 ], [ -123.504573674999946, 48.883450722000092 ], [ -123.503412236999935, 48.883423625000084 ], [ -123.503441754999969, 48.882870248000117 ], [ -123.50362671100001, 48.882825429000086 ], [ -123.504738413, 48.882799112000022 ], [ -123.506036141999942, 48.883041046000073 ], [ -123.506478520999963, 48.883123505000107 ], [ -123.508655214999976, 48.8834364390001 ], [ -123.514913709999973, 48.885092901000057 ], [ -123.514966759999979, 48.885106951000139 ], [ -123.515274407, 48.885136413000055 ], [ -123.516056621999937, 48.885211350000091 ], [ -123.516121657999946, 48.885217572000059 ], [ -123.516680472999951, 48.885214366000056 ], [ -123.518603706999926, 48.885203323000013 ], [ -123.518768182999949, 48.885202384000145 ], [ -123.519117239999943, 48.885120382000117 ], [ -123.519768331999941, 48.884867334000056 ], [ -123.51964639099999, 48.887168273000043 ], [ -123.519740667999926, 48.887170458000092 ], [ -123.519591577999947, 48.889983460000046 ], [ -123.522633755999962, 48.890053937000097 ], [ -123.522700280999956, 48.88879725400006 ], [ -123.526257046999959, 48.888879543000037 ], [ -123.526259937999967, 48.888824843000123 ], [ -123.526725534999912, 48.888835606000036 ], [ -123.526742634999977, 48.888512054000039 ], [ -123.532185892999948, 48.88863773500001 ], [ -123.532177832999949, 48.888790607 ], [ -123.53235663399991, 48.88879473000005 ], [ -123.532377911999944, 48.888391193000082 ], [ -123.532368412999958, 48.888390974000046 ], [ -123.532386662999897, 48.888044868000044 ], [ -123.532126524999953, 48.888038868000095 ], [ -123.532144949999989, 48.887689444000046 ], [ -123.531259977999966, 48.887669028000104 ], [ -123.531247975999989, 48.887896532000113 ], [ -123.525804806999943, 48.887770803000087 ], [ -123.52587519199993, 48.886439421000063 ], [ -123.524446338999951, 48.886406370000067 ], [ -123.524495678999969, 48.885473553000097 ], [ -123.524772368999948, 48.885611772000082 ], [ -123.525453731999932, 48.885814961000058 ], [ -123.526446331999978, 48.885851438000024 ], [ -123.527073773999973, 48.885758524000082 ], [ -123.527235890999989, 48.885734536000079 ], [ -123.527805819999912, 48.88536475100004 ], [ -123.528149506, 48.8853872830001 ], [ -123.528693210999961, 48.885422947000073 ], [ -123.529353591999936, 48.885466276000059 ], [ -123.52999645499996, 48.885289189000069 ], [ -123.53004129499999, 48.884643260000118 ], [ -123.53005338399997, 48.884468997000056 ], [ -123.530070187999968, 48.884227633000073 ], [ -123.529968217999951, 48.883913506000042 ], [ -123.529940664999984, 48.882922599000025 ], [ -123.529934677999933, 48.882706445000053 ], [ -123.529917052999977, 48.882072650000097 ], [ -123.529901948999978, 48.88152952500009 ], [ -123.530812143999924, 48.882495465000034 ], [ -123.53099019899993, 48.882684435000066 ], [ -123.531127504999972, 48.882830140000095 ], [ -123.531937133999975, 48.884087798000103 ], [ -123.532757458, 48.885117720000046 ], [ -123.532983507999944, 48.885415234000092 ], [ -123.533376931999939, 48.88593314500006 ], [ -123.533920757999951, 48.88664901500006 ], [ -123.534112004999955, 48.886900786000041 ], [ -123.534496496999949, 48.887406912000046 ], [ -123.53460703799999, 48.887590659000068 ], [ -123.535429813999912, 48.888958393000046 ], [ -123.536418585999911, 48.890311107000116 ], [ -123.536889291, 48.891334707000063 ], [ -123.53701678799996, 48.892148610000113 ], [ -123.536793282999923, 48.892951705000037 ], [ -123.536876119999974, 48.893838505000076 ], [ -123.536761502999951, 48.894203488000073 ], [ -123.535934308999956, 48.894903495000079 ], [ -123.535799299999894, 48.895396798000014 ], [ -123.535843608999969, 48.895797013000063 ], [ -123.536064031999956, 48.89625743200002 ], [ -123.536261, 48.896668908000052 ], [ -123.535576306999943, 48.89751010500008 ], [ -123.535550913999955, 48.897810400000083 ], [ -123.535618568999936, 48.898160101 ], [ -123.535653296999982, 48.898339407000051 ], [ -123.535681600999979, 48.898485590000092 ], [ -123.535598981999968, 48.899133399000064 ], [ -123.535530612999963, 48.899669701000114 ], [ -123.535431592999913, 48.900002609000047 ], [ -123.53524523499999, 48.900629251000012 ], [ -123.535202706999939, 48.900772288000041 ], [ -123.535094204999922, 48.901669007000088 ], [ -123.534931528999962, 48.901639755000097 ], [ -123.534614313999953, 48.901519377000071 ], [ -123.534312881999952, 48.90140383600005 ], [ -123.533984582999949, 48.901324377000059 ], [ -123.533669858999986, 48.901244874000092 ], [ -123.533560564999974, 48.901227390000074 ], [ -123.533315046999974, 48.901237526000067 ], [ -123.53297498100001, 48.901338043000095 ], [ -123.532770900999964, 48.901392959000113 ], [ -123.532485030999936, 48.901457245000095 ], [ -123.532349161999932, 48.901511863000039 ], [ -123.532185882999912, 48.901557595000035 ], [ -123.53184546300001, 48.90162213300006 ], [ -123.531568278999956, 48.901656677000105 ], [ -123.531460662999933, 48.901684362000054 ], [ -123.531378767999911, 48.901713616000102 ], [ -123.531377605, 48.901722100000029 ], [ -123.531127520999974, 48.90167081700006 ], [ -123.530903896999931, 48.901617477000109 ], [ -123.530575734999914, 48.901556022000065 ], [ -123.530274796999947, 48.901485428000115 ], [ -123.530247405999958, 48.901476562000092 ], [ -123.530042172999956, 48.901423530000059 ], [ -123.529796004, 48.901370696000079 ], [ -123.529686555999945, 48.90134420100005 ], [ -123.529344236999947, 48.901228831000111 ], [ -123.529316847, 48.901219967000031 ], [ -123.529193554999935, 48.90117554400004 ], [ -123.529097671999921, 48.901140010000056 ], [ -123.528837594999985, 48.901060239000046 ], [ -123.52864601099995, 48.901007138000097 ], [ -123.528413771999965, 48.900981200000032 ], [ -123.528098881999966, 48.900883710000123 ], [ -123.527756754, 48.900786303000089 ], [ -123.527688262999959, 48.900759631 ], [ -123.52738730099999, 48.900689038000074 ], [ -123.527059202999965, 48.90062758200002 ], [ -123.526853880999951, 48.900565549000056 ], [ -123.526771889999964, 48.900556923000053 ], [ -123.526429686999947, 48.900450538000079 ], [ -123.526155940999971, 48.900370838000057 ], [ -123.525950617999939, 48.900308801000115 ], [ -123.52587578899994, 48.900286592000015 ], [ -123.523142803999988, 48.903144708000113 ], [ -123.522913995999957, 48.903480244000022 ], [ -123.52264044399999, 48.903881403000035 ], [ -123.520512629999956, 48.907001597000125 ], [ -123.52034692899997, 48.907244603000017 ], [ -123.520159704999969, 48.907433093000165 ], [ -123.519546650999942, 48.906900310000061 ], [ -123.518781320999935, 48.906235123000101 ], [ -123.518321317999906, 48.905835297000088 ], [ -123.517611986999981, 48.905073693000077 ], [ -123.517077275999952, 48.904362995000049 ], [ -123.517024749999976, 48.9042685800001 ], [ -123.516929596999958, 48.904097570000083 ], [ -123.51672019899999, 48.903721295000082 ], [ -123.51665716699992, 48.903656742000038 ], [ -123.516596321999941, 48.903544585000112 ], [ -123.516540267999986, 48.903400901000076 ], [ -123.516401691999988, 48.903194618000079 ], [ -123.516332813999924, 48.903131953000113 ], [ -123.51605204, 48.903016249000103 ], [ -123.516006881999928, 48.902990714000062 ], [ -123.515326804, 48.902294091000016 ] ], [ [ -123.525388074999981, 48.900337734000111 ], [ -123.525403146999963, 48.900052800000019 ], [ -123.523528235999933, 48.900009433000065 ], [ -123.523433566000023, 48.9017979320001 ], [ -123.5239934899999, 48.901810887000082 ], [ -123.523979361999949, 48.902077836000068 ], [ -123.52410927899993, 48.902080842000011 ], [ -123.524202975, 48.900310327000078 ], [ -123.525388074999981, 48.900337734000111 ] ], [ [ -123.525734254999932, 48.896456244000056 ], [ -123.525774797999986, 48.895689525000066 ], [ -123.523989464999943, 48.895648234000085 ], [ -123.524036404999933, 48.894761170000081 ], [ -123.521206719999967, 48.894695662000068 ], [ -123.521230632999931, 48.894244237000109 ], [ -123.520717527999977, 48.894232351000042 ], [ -123.520741069999971, 48.893788045000107 ], [ -123.520002628999961, 48.893770933000098 ], [ -123.520011822999948, 48.893597459000084 ], [ -123.518227276999966, 48.893556087000057 ], [ -123.518376458999938, 48.89074310300002 ], [ -123.514106398999957, 48.890643987000054 ], [ -123.514176760999973, 48.88931940600002 ], [ -123.513460955999975, 48.889302774000093 ], [ -123.513564416999984, 48.887355520000057 ], [ -123.513224606999984, 48.887347623000061 ], [ -123.513209342999943, 48.887634875000074 ], [ -123.508826724999949, 48.887532924 ], [ -123.508789426999897, 48.888233609000068 ], [ -123.50890107099994, 48.88823311600013 ], [ -123.508903082999922, 48.888431348000111 ], [ -123.509847112999921, 48.888453322000082 ], [ -123.509846387, 48.888466956000102 ], [ -123.510334295999925, 48.888478309000028 ], [ -123.510326816999964, 48.888618879000084 ], [ -123.510946381999986, 48.888633294000073 ], [ -123.510833419, 48.890757088000036 ], [ -123.516185722000017, 48.890881461000085 ], [ -123.516022294999956, 48.893960304000075 ], [ -123.519319495999923, 48.894036788000058 ], [ -123.519307302999948, 48.894266774000108 ], [ -123.521075246999914, 48.894307743000098 ], [ -123.520884525, 48.897907556000114 ], [ -123.519794565999959, 48.897882302000063 ], [ -123.519782092999932, 48.898117583000079 ], [ -123.515040246999945, 48.898007586000055 ], [ -123.514947027999952, 48.8997627030001 ], [ -123.518086212999975, 48.899835546000041 ], [ -123.518117376999967, 48.899248073000123 ], [ -123.522959494999952, 48.899360252000072 ], [ -123.523116436999928, 48.896395688000069 ], [ -123.525734254999932, 48.896456244000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "318795802", "BldgCostT": "204478745", "sL_LossRatio": "0.717960453925581", "sL_AssetLoss": "2353927.7", "sL_BldgLoss": "1690027", "sL_StrLoss": "788530", "sL_NStrLoss": "901497", "sL_ContLoss": "663900.7", "geom_point": "0101000020E61000008594982DFAE05EC0C17E3E807B6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.524495678999969, 48.885473553000097 ], [ -123.52463278, 48.882881353000066 ], [ -123.52411933799999, 48.882869472000046 ], [ -123.524309750999919, 48.879269566000097 ], [ -123.525414993999931, 48.87929513800006 ], [ -123.525442733999952, 48.878770392000057 ], [ -123.527538410999938, 48.878818849000034 ], [ -123.52756806, 48.878257505000072 ], [ -123.525683276, 48.878213925000111 ], [ -123.52579430499999, 48.876113342000075 ], [ -123.525737705999944, 48.876112033000027 ], [ -123.525801186999956, 48.874910945000117 ], [ -123.525783579999967, 48.874910538000023 ], [ -123.525841971999967, 48.873805698000041 ], [ -123.525839546999975, 48.873805642000029 ], [ -123.525866991999962, 48.873286346000071 ], [ -123.524785159999936, 48.873261318000026 ], [ -123.524703680999963, 48.874802332000073 ], [ -123.519262049999938, 48.874676266000037 ], [ -123.519389962999952, 48.872262316000032 ], [ -123.518292249999959, 48.872236851000061 ], [ -123.518257717999944, 48.872888295000031 ], [ -123.512816326999967, 48.872761902000022 ], [ -123.512822946999947, 48.872637297000018 ], [ -123.51221621399992, 48.872623186000119 ], [ -123.512249117999914, 48.872003988000074 ], [ -123.51097319599991, 48.871974304000055 ], [ -123.510939009999944, 48.872617276000028 ], [ -123.507753049999948, 48.872543087000082 ], [ -123.507721313000019, 48.873139252000058 ], [ -123.503557793999903, 48.87304215700005 ], [ -123.503498395999941, 48.874155978000083 ], [ -123.505445217999963, 48.874201399000086 ], [ -123.505413670999971, 48.874793428000068 ], [ -123.50540348, 48.874984662000102 ], [ -123.507021529999946, 48.875022385000172 ], [ -123.507564788999957, 48.875035045000104 ], [ -123.50753428799996, 48.875607896000112 ], [ -123.50753322499996, 48.875627887000064 ], [ -123.507552182999973, 48.875628329000079 ], [ -123.50828179799997, 48.875645327000043 ], [ -123.508264905999908, 48.875962707000021 ], [ -123.508578906999958, 48.875970021000093 ], [ -123.508578845, 48.875971198000109 ], [ -123.508577580999884, 48.875994924000032 ], [ -123.510266167999958, 48.876034240000102 ], [ -123.51029362, 48.875518111000147 ], [ -123.515735321999898, 48.875644632000018 ], [ -123.515694160999928, 48.876420244000052 ], [ -123.51691122599999, 48.876448503000091 ], [ -123.516720257, 48.880048411000125 ], [ -123.511278039, 48.879921942000074 ], [ -123.511291835999941, 48.879662461000066 ], [ -123.510581748999954, 48.879645940000024 ], [ -123.510559198999957, 48.880069942000056 ], [ -123.510908569, 48.880078072000039 ], [ -123.510886446999962, 48.88049406100005 ], [ -123.511032889, 48.880497469000034 ], [ -123.510995315999978, 48.881204055000055 ], [ -123.511034632, 48.881204971000095 ], [ -123.510924239999909, 48.883280864000035 ], [ -123.513289386999972, 48.883335864000117 ], [ -123.513349822999942, 48.882198306000106 ], [ -123.518792311999931, 48.882324670000045 ], [ -123.518715332999932, 48.883776722000086 ], [ -123.519824761999928, 48.883802446000054 ], [ -123.519768331999941, 48.884867334000056 ], [ -123.519117239999943, 48.885120382000117 ], [ -123.518768182999949, 48.885202384000145 ], [ -123.518603706999926, 48.885203323000013 ], [ -123.516680472999951, 48.885214366000056 ], [ -123.516121657999946, 48.885217572000059 ], [ -123.516056621999937, 48.885211350000091 ], [ -123.515274407, 48.885136413000055 ], [ -123.514966759999979, 48.885106951000139 ], [ -123.514913709999973, 48.885092901000057 ], [ -123.508655214999976, 48.8834364390001 ], [ -123.508734947999955, 48.883231002000073 ], [ -123.508788315999936, 48.883113818000069 ], [ -123.508799973999928, 48.882915842000045 ], [ -123.50875738799999, 48.882754124000058 ], [ -123.50872841499995, 48.882583322000038 ], [ -123.50873994199999, 48.882376363000056 ], [ -123.508739465999938, 48.88233138500005 ], [ -123.508710724999929, 48.882187560000027 ], [ -123.508709821999972, 48.882097616000109 ], [ -123.508680434, 48.881890846000076 ], [ -123.508678452999987, 48.881692933000075 ], [ -123.508664333999931, 48.881648019000103 ], [ -123.508664143000018, 48.881630028000075 ], [ -123.508648583999943, 48.88144118600006 ], [ -123.508647854999936, 48.881369210000059 ], [ -123.508633026999973, 48.881252344000117 ], [ -123.508645223999963, 48.881108353000094 ], [ -123.508644873999941, 48.881072358000011 ], [ -123.508644145999966, 48.881000383000064 ], [ -123.508641843999925, 48.880775497000151 ], [ -123.508639654999953, 48.880559629000075 ], [ -123.508652180999931, 48.88045160900004 ], [ -123.508637481999969, 48.880343726000085 ], [ -123.508609188999984, 48.880244891000082 ], [ -123.508607364999989, 48.880064982000107 ], [ -123.508632530999975, 48.879857961 ], [ -123.508631245999979, 48.879732037000025 ], [ -123.508630959999977, 48.879705051000023 ], [ -123.508601414999958, 48.879480280000095 ], [ -123.508572062999917, 48.879273499000099 ], [ -123.508571584, 48.879228522000105 ], [ -123.508569970999929, 48.879066627000036 ], [ -123.508569430999941, 48.879012643000046 ], [ -123.50856857299999, 48.878931685000026 ], [ -123.50855368400002, 48.878805812000046 ], [ -123.508552051000024, 48.878643894000049 ], [ -123.508563387, 48.878418947000057 ], [ -123.50856294399992, 48.878373959000086 ], [ -123.508548828999935, 48.878329046000069 ], [ -123.50852101299995, 48.878275188000039 ], [ -123.508465828999988, 48.878212460000071 ], [ -123.508205516000018, 48.878096671000037 ], [ -123.507999756999979, 48.877980629000064 ], [ -123.507862588999913, 48.877900277 ], [ -123.507698187999893, 48.877829034000058 ], [ -123.5074375, 48.877677263000081 ], [ -123.507245572999949, 48.877579147000112 ], [ -123.506903171999937, 48.877436711 ], [ -123.50660103899996, 48.87723114100001 ], [ -123.506395668999957, 48.87715107800009 ], [ -123.50629955799999, 48.877088515000032 ], [ -123.505998249999948, 48.876963913000083 ], [ -123.50584724299992, 48.876865607000084 ], [ -123.505559464999948, 48.87673192500008 ], [ -123.50546365699995, 48.87669637000004 ], [ -123.505216655999931, 48.876544516000045 ], [ -123.504887683999954, 48.876384033000058 ], [ -123.504838047999939, 48.876354676000091 ], [ -123.504736795999946, 48.876294743000066 ], [ -123.50454522699999, 48.876232616000024 ], [ -123.504216198999984, 48.876063124000055 ], [ -123.504214197999914, 48.876061823000065 ], [ -123.50413384299992, 48.876009514000103 ], [ -123.504037923999974, 48.87596494100007 ], [ -123.503928293999948, 48.875911456000047 ], [ -123.503736631999914, 48.875840332000095 ], [ -123.503448868999897, 48.875706642000118 ], [ -123.503311620999952, 48.87561728900009 ], [ -123.503242884999949, 48.875563594000056 ], [ -123.502995956999968, 48.875420745000042 ], [ -123.502845230999981, 48.875349455000091 ], [ -123.502680786999974, 48.875269198000055 ], [ -123.502474681, 48.875117165000106 ], [ -123.50236414699998, 48.874973714000099 ], [ -123.502336059999919, 48.874892869000099 ], [ -123.502322045999946, 48.874856951000041 ], [ -123.502210982999983, 48.874659518000037 ], [ -123.502113540999972, 48.874462057000081 ], [ -123.502085739000023, 48.874408197000079 ], [ -123.502042541999913, 48.874183481000088 ], [ -123.502040780999934, 48.874003563000073 ], [ -123.502039951999933, 48.873922629000106 ], [ -123.502065147999957, 48.87371561500003 ], [ -123.502064521999984, 48.873652636000081 ], [ -123.502076967999955, 48.873535625000017 ], [ -123.502062726999981, 48.873472731000042 ], [ -123.502047463999929, 48.873310858000082 ], [ -123.502032732999922, 48.873202966000079 ], [ -123.502017205999962, 48.873014128000079 ], [ -123.502015162999953, 48.87280722600007 ], [ -123.5020136159999, 48.872654320000088 ], [ -123.502012801999939, 48.872573352000082 ], [ -123.501956028, 48.872348709000086 ], [ -123.5019134, 48.872177964000109 ], [ -123.501857324999904, 48.872025271000105 ], [ -123.501829393999969, 48.871962428000067 ], [ -123.501815511999894, 48.871935493000059 ], [ -123.501758984999952, 48.871737848000052 ], [ -123.501744911999964, 48.871692923000111 ], [ -123.501605176999973, 48.871489809000096 ], [ -123.50151644499995, 48.871397813000087 ], [ -123.501484823999988, 48.871346899000073 ], [ -123.501423613999975, 48.871222141 ], [ -123.501386293999957, 48.871154832000052 ], [ -123.501342452999936, 48.870992996000055 ], [ -123.501272650999951, 48.870831370000097 ], [ -123.50122974599999, 48.870633642000058 ], [ -123.501227518999897, 48.870408752000067 ], [ -123.501212715999912, 48.870291889000043 ], [ -123.501212152999983, 48.870237918000029 ], [ -123.501211341, 48.870156950000123 ], [ -123.50121090499999, 48.870111963000063 ], [ -123.501263826999903, 48.869949839000107 ], [ -123.501289037999953, 48.86974279300005 ], [ -123.501314234999967, 48.869535781000145 ], [ -123.501353253, 48.869346698000093 ], [ -123.501365813999925, 48.869238706000061 ], [ -123.501391989999945, 48.869130631000161 ], [ -123.50140341499997, 48.868905702000042 ], [ -123.501388216999956, 48.868752836000027 ], [ -123.501372805999935, 48.86857296400008 ], [ -123.501371976999934, 48.868492032000077 ], [ -123.501384801999947, 48.868411002000052 ], [ -123.501397377999979, 48.868302976000095 ], [ -123.501395584999955, 48.868123075000085 ], [ -123.50139388599996, 48.867952169000041 ], [ -123.501393041000014, 48.867871215000072 ], [ -123.501389907999965, 48.867556365000077 ], [ -123.501387676999954, 48.867331478000096 ], [ -123.501400124999989, 48.867214470000036 ], [ -123.501385944, 48.867160585000086 ], [ -123.501371252999945, 48.867052684000051 ], [ -123.501355449999934, 48.866836865000018 ], [ -123.501341378999925, 48.866791940000041 ], [ -123.501349950999966, 48.866673720000051 ], [ -123.501346172999945, 48.866631508000054 ], [ -123.501347299999921, 48.866624588000072 ], [ -123.501107872999953, 48.866263003 ], [ -123.5010207699999, 48.86607038500005 ], [ -123.500908105999955, 48.865821297000139 ], [ -123.500932634999955, 48.865489794000055 ], [ -123.500942394999967, 48.865358001000089 ], [ -123.50109232199999, 48.865053815000081 ], [ -123.501145527999967, 48.86494576000004 ], [ -123.501189616999952, 48.864856337000042 ], [ -123.501235582999968, 48.864763002000061 ], [ -123.501344118999967, 48.864338388000107 ], [ -123.501366446999953, 48.864157446000057 ], [ -123.50139679499992, 48.863911602000044 ], [ -123.501374601999956, 48.863510085000016 ], [ -123.501265092999972, 48.863062299000049 ], [ -123.500938313999981, 48.862499583000108 ], [ -123.500969830999978, 48.862114683000094 ], [ -123.501168755999927, 48.861447997000035 ], [ -123.501356804999958, 48.860947805000066 ], [ -123.501446469999948, 48.860709263000075 ], [ -123.50151869599992, 48.860400708000078 ], [ -123.501559346999954, 48.860227084 ], [ -123.501558145999965, 48.860197419 ], [ -123.501507325999938, 48.85893006500006 ], [ -123.501626709999968, 48.858581420000107 ], [ -123.501739422999918, 48.858459702000076 ], [ -123.50238996, 48.857750386000156 ], [ -123.502527005999951, 48.857829179000049 ], [ -123.502700402999963, 48.857928901000015 ], [ -123.503141101999987, 48.858091406000028 ], [ -123.503488155999946, 48.858194395000027 ], [ -123.504139696999943, 48.858387808000089 ], [ -123.50550319499996, 48.858787312000096 ], [ -123.506428507999942, 48.859054003000018 ], [ -123.506744061999896, 48.859149894000048 ], [ -123.507563159000014, 48.859398768000119 ], [ -123.507699242999962, 48.859440093000075 ], [ -123.507893100999937, 48.859498999000039 ], [ -123.509413173999974, 48.860025497000038 ], [ -123.509680582999977, 48.860145298000063 ], [ -123.509959872999971, 48.86026989800007 ], [ -123.510292458999984, 48.860468614000105 ], [ -123.511190038999956, 48.861129296000037 ], [ -123.511607242999972, 48.861350786000067 ], [ -123.511855493999946, 48.861427541000104 ], [ -123.512019886999909, 48.861478387000069 ], [ -123.512984934999949, 48.86163041300005 ], [ -123.51320365799999, 48.861664829000098 ], [ -123.513476984999926, 48.861707903000067 ], [ -123.514159903999911, 48.861762346000056 ], [ -123.515151604, 48.861841421000101 ], [ -123.515608790999963, 48.861950304000075 ], [ -123.516718839999967, 48.862357691000064 ], [ -123.517011579999931, 48.862465104000087 ], [ -123.517534725999951, 48.862657093000024 ], [ -123.519579891999911, 48.863407603000013 ], [ -123.519669672999939, 48.863434718000093 ], [ -123.522046089999947, 48.864152308 ], [ -123.52302198299995, 48.864368707000011 ], [ -123.523407129999924, 48.864394156000067 ], [ -123.523529947999961, 48.864402264000098 ], [ -123.52379818299994, 48.864419998000109 ], [ -123.524471625, 48.864351828000025 ], [ -123.524500572999941, 48.864348903000064 ], [ -123.525302313999958, 48.864175497000112 ], [ -123.525568481999969, 48.864162697000033 ], [ -123.526430114999982, 48.864351205000098 ], [ -123.526758993999977, 48.86438851200009 ], [ -123.527628107999945, 48.86448610100004 ], [ -123.528270600999988, 48.864722595000032 ], [ -123.528843210999938, 48.865201695000088 ], [ -123.529053903999937, 48.865930205000062 ], [ -123.529050965999929, 48.866398282000048 ], [ -123.529047686999917, 48.866929082000112 ], [ -123.52904404399996, 48.867513762000044 ], [ -123.529041693999957, 48.867891615000111 ], [ -123.529064717999958, 48.868358892000032 ], [ -123.529078288999969, 48.868642221000123 ], [ -123.529085192000011, 48.868785963000036 ], [ -123.529111339999943, 48.869330710000028 ], [ -123.529230075999948, 48.871803627000126 ], [ -123.529241299, 48.872037533000032 ], [ -123.52929371, 48.873129108000072 ], [ -123.529304164999971, 48.87398061199999 ], [ -123.529307242999934, 48.874232491000051 ], [ -123.529308031999932, 48.874295456000041 ], [ -123.529320215000013, 48.875284964000109 ], [ -123.52932201499999, 48.875432088000146 ], [ -123.529413708999982, 48.875619967000084 ], [ -123.529426495999985, 48.875646189000058 ], [ -123.52976641399999, 48.875966803000082 ], [ -123.529848823999927, 48.876123729000071 ], [ -123.529885200999942, 48.876192992000043 ], [ -123.529852795999972, 48.876394114000057 ], [ -123.529676704999929, 48.876840487000059 ], [ -123.529623719, 48.877236535000073 ], [ -123.529558807999976, 48.877721646000033 ], [ -123.529523818999905, 48.87798320100012 ], [ -123.529592032999943, 48.879144838000045 ], [ -123.529599144999949, 48.879265335000085 ], [ -123.529639561999943, 48.879902320000014 ], [ -123.52972184199993, 48.881199189000029 ], [ -123.529901948999978, 48.88152952500009 ], [ -123.529917052999977, 48.882072650000097 ], [ -123.529934677999933, 48.882706445000053 ], [ -123.529940664999984, 48.882922599000025 ], [ -123.529968217999951, 48.883913506000042 ], [ -123.530070187999968, 48.884227633000073 ], [ -123.53005338399997, 48.884468997000056 ], [ -123.53004129499999, 48.884643260000118 ], [ -123.52999645499996, 48.885289189000069 ], [ -123.529353591999936, 48.885466276000059 ], [ -123.528693210999961, 48.885422947000073 ], [ -123.528149506, 48.8853872830001 ], [ -123.527805819999912, 48.88536475100004 ], [ -123.527235890999989, 48.885734536000079 ], [ -123.527073773999973, 48.885758524000082 ], [ -123.526446331999978, 48.885851438000024 ], [ -123.525453731999932, 48.885814961000058 ], [ -123.524772368999948, 48.885611772000082 ], [ -123.524495678999969, 48.885473553000097 ] ], [ [ -123.50208459, 48.871868010000057 ], [ -123.502025874999944, 48.872968431000068 ], [ -123.502281944999964, 48.872974411000094 ], [ -123.502340653999951, 48.871873991000044 ], [ -123.50208459, 48.871868010000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228100946", "BldgCostT": "135890268", "sL_LossRatio": "0.668776874564917", "sL_AssetLoss": "1774517.1", "sL_BldgLoss": "1186756", "sL_StrLoss": "499407", "sL_NStrLoss": "687349", "sL_ContLoss": "587761.1", "geom_point": "0101000020E6100000CFA40C0333E15EC0FF8CB908DF6D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.522046089999947, 48.864152308 ], [ -123.519669672999939, 48.863434718000093 ], [ -123.519579891999911, 48.863407603000013 ], [ -123.517534725999951, 48.862657093000024 ], [ -123.517011579999931, 48.862465104000087 ], [ -123.516718839999967, 48.862357691000064 ], [ -123.515608790999963, 48.861950304000075 ], [ -123.515151604, 48.861841421000101 ], [ -123.514159903999911, 48.861762346000056 ], [ -123.513476984999926, 48.861707903000067 ], [ -123.51320365799999, 48.861664829000098 ], [ -123.512984934999949, 48.86163041300005 ], [ -123.512019886999909, 48.861478387000069 ], [ -123.511855493999946, 48.861427541000104 ], [ -123.511607242999972, 48.861350786000067 ], [ -123.511190038999956, 48.861129296000037 ], [ -123.510292458999984, 48.860468614000105 ], [ -123.509959872999971, 48.86026989800007 ], [ -123.509680582999977, 48.860145298000063 ], [ -123.509413173999974, 48.860025497000038 ], [ -123.507893100999937, 48.859498999000039 ], [ -123.507699242999962, 48.859440093000075 ], [ -123.507563159000014, 48.859398768000119 ], [ -123.506744061999896, 48.859149894000048 ], [ -123.506428507999942, 48.859054003000018 ], [ -123.50550319499996, 48.858787312000096 ], [ -123.504139696999943, 48.858387808000089 ], [ -123.503488155999946, 48.858194395000027 ], [ -123.503141101999987, 48.858091406000028 ], [ -123.502700402999963, 48.857928901000015 ], [ -123.502527005999951, 48.857829179000049 ], [ -123.50238996, 48.857750386000156 ], [ -123.502253875999898, 48.857672387000051 ], [ -123.501864751999904, 48.857308299000074 ], [ -123.501304775999969, 48.856396494000165 ], [ -123.501222920999965, 48.856263250000026 ], [ -123.501110691999941, 48.856080493000078 ], [ -123.500644387999941, 48.855326108000042 ], [ -123.500363191999895, 48.85439591200003 ], [ -123.500320819999942, 48.854227665000039 ], [ -123.500285107999943, 48.854085812000086 ], [ -123.500237406999958, 48.853896395000113 ], [ -123.500026908999985, 48.85355449700004 ], [ -123.502590499999897, 48.853530593000109 ], [ -123.502624899999958, 48.854365899000065 ], [ -123.503370415999925, 48.854352596000091 ], [ -123.5037664769999, 48.854347440000012 ], [ -123.507556178999977, 48.854297946000045 ], [ -123.508660229999947, 48.854283495000082 ], [ -123.509041828999898, 48.854278502000064 ], [ -123.510432422999941, 48.854260286000056 ], [ -123.510531603999965, 48.854258988000055 ], [ -123.510691370999979, 48.854256901000035 ], [ -123.511726917, 48.854243324000066 ], [ -123.512171607999989, 48.854237505000064 ], [ -123.51359412799999, 48.854218817000053 ], [ -123.514084946000011, 48.854212382000071 ], [ -123.514737220999905, 48.854203801000061 ], [ -123.51543200299993, 48.854195699000073 ], [ -123.517777399999957, 48.854178107000038 ], [ -123.519155700999974, 48.854154468000075 ], [ -123.521146750999975, 48.854120278000039 ], [ -123.521372190999926, 48.854116400000116 ], [ -123.522042308999929, 48.85426709100004 ], [ -123.523063929999935, 48.854817968000077 ], [ -123.523211566999947, 48.854897563000058 ], [ -123.523278604999987, 48.854933697000014 ], [ -123.52349017399996, 48.854991274999989 ], [ -123.523803412999911, 48.855076487000105 ], [ -123.524268192999926, 48.855093600000096 ], [ -123.524560702999949, 48.855050150000075 ], [ -123.524918372999934, 48.854997042000065 ], [ -123.525375469999943, 48.854929147000085 ], [ -123.525865912999961, 48.854856306000102 ], [ -123.526256912999926, 48.854798225000067 ], [ -123.527785288999951, 48.854571204000131 ], [ -123.52910359099999, 48.854589103000073 ], [ -123.530614466999936, 48.855546174000047 ], [ -123.531650310999936, 48.856202299000088 ], [ -123.532527405999986, 48.856999294000111 ], [ -123.533136406999915, 48.857326989000086 ], [ -123.533997692999918, 48.857700101000027 ], [ -123.534553716999966, 48.858260789000084 ], [ -123.535426711999918, 48.858565695000081 ], [ -123.535946369999934, 48.858883525000046 ], [ -123.536123181999983, 48.858991694000053 ], [ -123.536566566999937, 48.859486726000021 ], [ -123.536939897999957, 48.859903482000099 ], [ -123.537067888999928, 48.860014377 ], [ -123.537426430999986, 48.860324998000088 ], [ -123.538238301999954, 48.861028304000072 ], [ -123.536314498999928, 48.861102915000039 ], [ -123.535227903999953, 48.860868782000139 ], [ -123.534148369999926, 48.860378807000124 ], [ -123.53321579699994, 48.859955513000038 ], [ -123.53171899499992, 48.859730904000081 ], [ -123.531554069999956, 48.859769002000114 ], [ -123.531408814999907, 48.85980253300005 ], [ -123.531254387999979, 48.859838214000106 ], [ -123.530157110999966, 48.860454412000081 ], [ -123.530142412999936, 48.860464534000144 ], [ -123.529743103999948, 48.860740399000058 ], [ -123.529626885999917, 48.86096487400004 ], [ -123.529235241999984, 48.861721367 ], [ -123.529190360999962, 48.86180809800004 ], [ -123.528928810999957, 48.861810900000087 ], [ -123.528587711999975, 48.861741106000068 ], [ -123.528503296999958, 48.861597310000029 ], [ -123.527886090999985, 48.861302410000086 ], [ -123.527188617999968, 48.86109879900004 ], [ -123.526383997999943, 48.861021888000082 ], [ -123.526521395999936, 48.861182809000105 ], [ -123.527438491999973, 48.861449098 ], [ -123.528518994999956, 48.861876391000045 ], [ -123.529069858999947, 48.862040833000059 ], [ -123.529048506999985, 48.862082123000107 ], [ -123.529003177000035, 48.862169597000111 ], [ -123.528921106999974, 48.862639473000108 ], [ -123.528891889999926, 48.862806800000065 ], [ -123.528923906999964, 48.864059193000102 ], [ -123.52884007899999, 48.864176515000032 ], [ -123.52882832099999, 48.864193004000128 ], [ -123.52868919099997, 48.864249317000066 ], [ -123.527107316999945, 48.864240693000042 ], [ -123.526758993999977, 48.86438851200009 ], [ -123.526430114999982, 48.864351205000098 ], [ -123.525568481999969, 48.864162697000033 ], [ -123.525302313999958, 48.864175497000112 ], [ -123.524500572999941, 48.864348903000064 ], [ -123.524471625, 48.864351828000025 ], [ -123.52379818299994, 48.864419998000109 ], [ -123.523529947999961, 48.864402264000098 ], [ -123.523407129999924, 48.864394156000067 ], [ -123.52302198299995, 48.864368707000011 ], [ -123.522046089999947, 48.864152308 ] ], [ [ -123.526606778, 48.863631068000061 ], [ -123.526649526999933, 48.862821734000129 ], [ -123.526610063999939, 48.862820821000057 ], [ -123.526567313, 48.863630154000077 ], [ -123.526606778, 48.863631068000061 ] ], [ [ -123.518621488999941, 48.859842046 ], [ -123.518676922999958, 48.858795867000062 ], [ -123.519698093999978, 48.858819559000068 ], [ -123.519711994999966, 48.858557091000065 ], [ -123.523844254999986, 48.85865286500006 ], [ -123.523880260999974, 48.857971892000123 ], [ -123.528375082999943, 48.858075888000059 ], [ -123.528394097999978, 48.857715603000031 ], [ -123.529565847999962, 48.857742682000151 ], [ -123.529628926999948, 48.856546868000088 ], [ -123.528676237999974, 48.856524853000074 ], [ -123.528654236999969, 48.856941787000096 ], [ -123.526931550999976, 48.856901955000154 ], [ -123.526887710999958, 48.857732128000059 ], [ -123.521448057999962, 48.857606171000036 ], [ -123.521455018999973, 48.857474641000103 ], [ -123.51922888699994, 48.857423014000084 ], [ -123.519239111999966, 48.857229972000063 ], [ -123.517246362999941, 48.857183718000087 ], [ -123.517107289999913, 48.859806897000077 ], [ -123.518621488999941, 48.859842046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6902666", "BldgCostT": "4496666", "sL_LossRatio": "0.904483353492891", "sL_AssetLoss": "25215.5", "sL_BldgLoss": "22807", "sL_StrLoss": "17304", "sL_NStrLoss": "5503", "sL_ContLoss": "2408.5", "geom_point": "0101000020E6100000A7B0734FEEE25EC0C114690B9D5F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.545841067999945, 48.749042817000053 ], [ -123.545860050999977, 48.748679684000102 ], [ -123.544160928999986, 48.748640574000014 ], [ -123.544213505999934, 48.747635416000051 ], [ -123.542173518999931, 48.74758842500006 ], [ -123.542230490999927, 48.746500102000049 ], [ -123.542362, 48.743987703000045 ], [ -123.543565129999976, 48.744015423000143 ], [ -123.543674798, 48.744065811000063 ], [ -123.54419690099995, 48.744656898000088 ], [ -123.545979405999972, 48.745854587000046 ], [ -123.547960586999963, 48.746628005000098 ], [ -123.54853380499992, 48.746885705000061 ], [ -123.548740582999983, 48.747082300000102 ], [ -123.549052975999984, 48.747072297000031 ], [ -123.550296691999947, 48.747569415000065 ], [ -123.550733805999982, 48.747703210000054 ], [ -123.55115480099991, 48.747737411000116 ], [ -123.551338989999962, 48.74781050100011 ], [ -123.55131328899995, 48.748303278000044 ], [ -123.551294499999941, 48.748663518000072 ], [ -123.551056594999949, 48.748754316000095 ], [ -123.550610015999936, 48.748809894000097 ], [ -123.549916017999976, 48.748777103000094 ], [ -123.548684403999971, 48.748198888000033 ], [ -123.548372397999927, 48.748181809000116 ], [ -123.548086498999965, 48.748318490000067 ], [ -123.547846809999939, 48.748724386000028 ], [ -123.547849521000018, 48.748903799000047 ], [ -123.547931289999966, 48.749002102000105 ], [ -123.548135399999964, 48.749095585000106 ], [ -123.545841067999945, 48.749042817000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.988827117180331", "sL_AssetLoss": "1852.7", "sL_BldgLoss": "1832", "sL_StrLoss": "1700", "sL_NStrLoss": "132", "sL_ContLoss": "20.7", "geom_point": "0101000020E6100000402ED40E3DDE5EC0F39606D90D5E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.472275638, 48.736177447000074 ], [ -123.47226552599993, 48.735097960000161 ], [ -123.471857541999938, 48.735099631000033 ], [ -123.47185501599995, 48.734829759000057 ], [ -123.471447033999979, 48.734831429000081 ], [ -123.471444509999969, 48.734561557000077 ], [ -123.47103652899996, 48.73456322600007 ], [ -123.471026444999922, 48.733483738000125 ], [ -123.472250358999986, 48.733478729000097 ], [ -123.472252888999947, 48.733748601000038 ], [ -123.472660861999898, 48.733746927000041 ], [ -123.472663391999959, 48.734016800000042 ], [ -123.473071368999953, 48.73401512500002 ], [ -123.473076431999957, 48.734554869000078 ], [ -123.47348441299998, 48.734553194000107 ], [ -123.473489479999927, 48.735092937000097 ], [ -123.473897465999954, 48.735091259000086 ], [ -123.473905075999966, 48.735900875000013 ], [ -123.473497083999959, 48.735902551000059 ], [ -123.473499619, 48.736172424000117 ], [ -123.472275638, 48.736177447000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.884517118037813", "sL_AssetLoss": "1957", "sL_BldgLoss": "1731", "sL_StrLoss": "1270", "sL_NStrLoss": "461", "sL_ContLoss": "226", "geom_point": "0101000020E610000055FECE5993DF5EC02C77D11D65664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.492884935999896, 48.799243223000119 ], [ -123.494110445999965, 48.799237977000097 ], [ -123.49412370099995, 48.80058731500008 ], [ -123.492489641999924, 48.800594310000093 ], [ -123.49248171699999, 48.79978470500005 ], [ -123.492890222999947, 48.799782959 ], [ -123.492884935999896, 48.799243223000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7535250", "BldgCostT": "4725000", "sL_LossRatio": "0.770850581332565", "sL_AssetLoss": "27781", "sL_BldgLoss": "21415", "sL_StrLoss": "12386", "sL_NStrLoss": "9029", "sL_ContLoss": "6366", "geom_point": "0101000020E61000002E47A732B5E05EC0009EFEFDF3644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.508439254999985, 48.786832500000102 ], [ -123.513870668999971, 48.786959133000025 ], [ -123.5136798299999, 48.790559554000041 ], [ -123.508248, 48.790432911000032 ], [ -123.508439254999985, 48.786832500000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.838936192305695", "sL_AssetLoss": "15408.8", "sL_BldgLoss": "12927", "sL_StrLoss": "7992", "sL_NStrLoss": "4935", "sL_ContLoss": "2481.8", "geom_point": "0101000020E6100000D5DEF1372BDA5EC03C3D2101C45F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405019675999981, 48.749783209000078 ], [ -123.405066045999916, 48.748944285000036 ], [ -123.40510528099999, 48.748955098000074 ], [ -123.406559397, 48.748688797000042 ], [ -123.406994805999943, 48.748731509000031 ], [ -123.407727406999982, 48.748495084000091 ], [ -123.407942206999948, 48.748351297000056 ], [ -123.408372108999956, 48.747629201000059 ], [ -123.408289111999963, 48.747260289000074 ], [ -123.408529394999945, 48.746791687000091 ], [ -123.409178909, 48.746358798000109 ], [ -123.409722102999979, 48.746274795000097 ], [ -123.410281381999965, 48.746346004000053 ], [ -123.410500006999939, 48.746479797000063 ], [ -123.41158799699997, 48.746637902000082 ], [ -123.41201170599993, 48.746914210000064 ], [ -123.41254560699997, 48.747119310000095 ], [ -123.412737403999969, 48.747325795000052 ], [ -123.4127112199999, 48.747550800000077 ], [ -123.412508988999946, 48.747740304000075 ], [ -123.41223761399999, 48.747750204000056 ], [ -123.411844290999909, 48.747922599000098 ], [ -123.410701487, 48.747945391 ], [ -123.410161095999968, 48.748342691000083 ], [ -123.409603290999911, 48.748470904000072 ], [ -123.408701406999953, 48.749580298000126 ], [ -123.408010403999967, 48.749879412000034 ], [ -123.406336993999929, 48.750020388000117 ], [ -123.405019675999981, 48.749783209000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6262250", "BldgCostT": "4055000", "sL_LossRatio": "0.763338255063138", "sL_AssetLoss": "45377", "sL_BldgLoss": "34638", "sL_StrLoss": "22085", "sL_NStrLoss": "12553", "sL_ContLoss": "10739", "geom_point": "0101000020E610000051CEE5406EE05EC0F827A72C79694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.504107351999934, 48.822146900000092 ], [ -123.509542844999942, 48.822273746000043 ], [ -123.50935153099999, 48.825873954 ], [ -123.503915621, 48.825747098000072 ], [ -123.504107351999934, 48.822146900000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9835917", "BldgCostT": "6311667", "sL_LossRatio": "0.891030024243178", "sL_AssetLoss": "22521.8", "sL_BldgLoss": "20067.6", "sL_StrLoss": "14190", "sL_NStrLoss": "5877.6", "sL_ContLoss": "2454.2", "geom_point": "0101000020E610000008C645DE47E05EC08D203AA954674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.502672854999943, 48.80524401400001 ], [ -123.508106384999934, 48.805370936 ], [ -123.507915027999957, 48.808971240000076 ], [ -123.506119900999948, 48.808929338000056 ], [ -123.506100275999955, 48.809298283000039 ], [ -123.500666294999974, 48.809171259000095 ], [ -123.500858208999929, 48.805570970000119 ], [ -123.502653203999969, 48.805612960000076 ], [ -123.502672854999943, 48.80524401400001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164086834", "BldgCostT": "109113334", "sL_LossRatio": "0.775297789330813", "sL_AssetLoss": "434325.5", "sL_BldgLoss": "336731.6", "sL_StrLoss": "183230.6", "sL_NStrLoss": "153501", "sL_ContLoss": "97593.9", "geom_point": "0101000020E61000008803AE4C74DF5EC0C11E03473C684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.481495871999968, 48.824910356000018 ], [ -123.48112741599999, 48.824785700000113 ], [ -123.480301011999956, 48.824667104000099 ], [ -123.479536696999958, 48.824407503000018 ], [ -123.479176923999944, 48.824190004000037 ], [ -123.478737710999923, 48.823606440000034 ], [ -123.478687969999925, 48.823540397000059 ], [ -123.478711189999899, 48.822908310000081 ], [ -123.478661440999986, 48.822821739000055 ], [ -123.47860039699998, 48.822715495000061 ], [ -123.479390415999902, 48.822162155000058 ], [ -123.479942200999972, 48.821775715000044 ], [ -123.480378469999948, 48.821519994000056 ], [ -123.480650529999949, 48.821360534000057 ], [ -123.48135489099991, 48.820947699000079 ], [ -123.48147656499998, 48.820876395 ], [ -123.48204883399994, 48.820540983000058 ], [ -123.482519982999975, 48.820264804000104 ], [ -123.483219094999924, 48.819102600000058 ], [ -123.483260419999979, 48.818911695000125 ], [ -123.483448912999947, 48.818041009000098 ], [ -123.483330394999939, 48.817409213000083 ], [ -123.483121217999923, 48.817048300000117 ], [ -123.482758089999919, 48.816665697000111 ], [ -123.482495813999918, 48.816104396000092 ], [ -123.48238001299994, 48.815727706000089 ], [ -123.482266683999924, 48.815101395000084 ], [ -123.48160660299996, 48.814220696000064 ], [ -123.481583105999945, 48.814205280000088 ], [ -123.48100219399997, 48.813824273000087 ], [ -123.480763612999979, 48.813667788000053 ], [ -123.482712072999931, 48.813713726000096 ], [ -123.482847710999962, 48.811187645000089 ], [ -123.485973166999898, 48.81126125800008 ], [ -123.486094902999966, 48.808991019000061 ], [ -123.48625096799995, 48.808994692000084 ], [ -123.486386533999905, 48.806466118000117 ], [ -123.491820162999915, 48.806593869000039 ], [ -123.491801310999932, 48.806946261000071 ], [ -123.492188769999956, 48.806955361000121 ], [ -123.49217358199995, 48.807239307000025 ], [ -123.49326178599992, 48.80726485400006 ], [ -123.493394892999945, 48.804775105000012 ], [ -123.49314648099994, 48.804769274000108 ], [ -123.493338952999949, 48.801168973000117 ], [ -123.498771985999895, 48.801296371000035 ], [ -123.498731800999948, 48.802049741000069 ], [ -123.499483907999959, 48.802067355000098 ], [ -123.499291901999968, 48.805667661000022 ], [ -123.498788155999989, 48.805655864000123 ], [ -123.498666304999972, 48.807939969000124 ], [ -123.497478181999924, 48.80791213599999 ], [ -123.497307326999987, 48.811112893000015 ], [ -123.496966948999955, 48.81110491700008 ], [ -123.496901079999944, 48.812338600000018 ], [ -123.492132540999975, 48.812226743000082 ], [ -123.492084853, 48.813118169000077 ], [ -123.495861709999971, 48.813206781000098 ], [ -123.495847580999964, 48.813471279000119 ], [ -123.496797113999918, 48.81349353500012 ], [ -123.496804334999979, 48.813358295000079 ], [ -123.502238789999979, 48.81348551400005 ], [ -123.502164585999978, 48.814878149000066 ], [ -123.502564860999925, 48.814887509000066 ], [ -123.502373038999934, 48.81848774700007 ], [ -123.500006990999978, 48.818432402000049 ], [ -123.49986478699999, 48.821098501000044 ], [ -123.494429455999921, 48.820971162000021 ], [ -123.494451695999942, 48.820555129000034 ], [ -123.492784722999914, 48.820516020000049 ], [ -123.492823624, 48.81978877100007 ], [ -123.490387082, 48.819731559000012 ], [ -123.49039130099996, 48.81965276100005 ], [ -123.486903462999933, 48.819570768000077 ], [ -123.486982620999967, 48.818094317000082 ], [ -123.485668263999955, 48.818063388000077 ], [ -123.485507613999943, 48.821058153000067 ], [ -123.485383471999953, 48.821055231000038 ], [ -123.485365926999961, 48.821382256000071 ], [ -123.485232218999926, 48.821379108000023 ], [ -123.485210142999975, 48.821790558000046 ], [ -123.48492767599997, 48.821783908000043 ], [ -123.484910448999926, 48.822104965000037 ], [ -123.484342050999942, 48.822091581000095 ], [ -123.484335830999981, 48.822207478000067 ], [ -123.483557147999989, 48.822189140000013 ], [ -123.48345438699999, 48.824103016000045 ], [ -123.484944268999982, 48.824138099 ], [ -123.484919244999944, 48.824604400000041 ], [ -123.489191644999963, 48.824704889000067 ], [ -123.489176914999959, 48.824979849000023 ], [ -123.494557071999921, 48.825106149000121 ], [ -123.494493937999906, 48.826287096000087 ], [ -123.49238084299999, 48.82629085100006 ], [ -123.491617941999976, 48.826292217000102 ], [ -123.491536202999967, 48.82629235100007 ], [ -123.490977523, 48.826293334000034 ], [ -123.490527932999939, 48.826294137000062 ], [ -123.490146469999928, 48.826294774000097 ], [ -123.489642402999934, 48.826295665000018 ], [ -123.483614587, 48.826305999000034 ], [ -123.482978387999964, 48.826169405000016 ], [ -123.482497822999932, 48.825662739000059 ], [ -123.482125912999933, 48.825270592000088 ], [ -123.4816485, 48.824962008000092 ], [ -123.481495871999968, 48.824910356000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6617500", "BldgCostT": "4300000", "sL_LossRatio": "0.84255074369299", "sL_AssetLoss": "36507", "sL_BldgLoss": "30759", "sL_StrLoss": "20800", "sL_NStrLoss": "9959", "sL_ContLoss": "5748", "geom_point": "0101000020E61000005DE0769157E15EC0185A9D9C216A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.518346899999955, 48.827287565000098 ], [ -123.523783027999968, 48.827413686000035 ], [ -123.523592785999952, 48.831013889000126 ], [ -123.518156241999947, 48.830887760000095 ], [ -123.518346899999955, 48.827287565000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7994167", "BldgCostT": "5016667", "sL_LossRatio": "0.80619098471223", "sL_AssetLoss": "21350.4", "sL_BldgLoss": "17212.5", "sL_StrLoss": "9924", "sL_NStrLoss": "7288.5", "sL_ContLoss": "4137.9", "geom_point": "0101000020E6100000AB61F9D25FDD5EC0A9D19264A95F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.456357826999948, 48.745491998000084 ], [ -123.46178432, 48.745621289000084 ], [ -123.461658038999985, 48.74795707300008 ], [ -123.461589655999916, 48.749221856000084 ], [ -123.460136796999961, 48.749187268000085 ], [ -123.456162747999912, 48.749092556000043 ], [ -123.456357826999948, 48.745491998000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83246918", "BldgCostT": "57906668", "sL_LossRatio": "0.864843996256594", "sL_AssetLoss": "122775.9", "sL_BldgLoss": "106182", "sL_StrLoss": "55029", "sL_NStrLoss": "51153", "sL_ContLoss": "16593.9", "geom_point": "0101000020E6100000FFFF931A35E35EC0669C2BEFCF604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.549297041999978, 48.75995767700006 ], [ -123.549331295999977, 48.75930162600006 ], [ -123.545175134999965, 48.759206071000051 ], [ -123.545363431999974, 48.755605412000087 ], [ -123.548502997999918, 48.755677610000127 ], [ -123.548509671999938, 48.755549822000098 ], [ -123.546704512999924, 48.75550832200009 ], [ -123.546892677999935, 48.751907638000034 ], [ -123.551034533999911, 48.752002814000029 ], [ -123.551424119, 48.752431598000079 ], [ -123.552277696999951, 48.752846650000031 ], [ -123.55221121699995, 48.754121642000072 ], [ -123.554380011999939, 48.754171389000099 ], [ -123.554031389999935, 48.754379905000043 ], [ -123.55390491299994, 48.755288598000035 ], [ -123.553933087999923, 48.755423890000024 ], [ -123.554247383999922, 48.755628995000045 ], [ -123.554486198999911, 48.755890065000116 ], [ -123.554455928999957, 48.756471089000065 ], [ -123.554913024999962, 48.756481568000119 ], [ -123.554725456999932, 48.760082238000095 ], [ -123.549297041999978, 48.75995767700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7122478", "BldgCostT": "4499857", "sL_LossRatio": "0.757260044510937", "sL_AssetLoss": "29610.7", "sL_BldgLoss": "22423", "sL_StrLoss": "12585", "sL_NStrLoss": "9838", "sL_ContLoss": "7187.7", "geom_point": "0101000020E6100000A7D289E3C4E25EC0E8DEC32547694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.540643786999937, 48.820621093000106 ], [ -123.546079199999937, 48.820746080000063 ], [ -123.54589069799998, 48.824346362000014 ], [ -123.54045486699998, 48.824221365000056 ], [ -123.540643786999937, 48.820621093000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.823760156906697", "sL_AssetLoss": "3569", "sL_BldgLoss": "2940", "sL_StrLoss": "1840", "sL_NStrLoss": "1100", "sL_ContLoss": "629", "geom_point": "0101000020E610000069DDED177FE25EC0C2009908616D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.538421131999925, 48.855174176000077 ], [ -123.538415343999986, 48.854634449000102 ], [ -123.538006393, 48.854636358000036 ], [ -123.537997717999957, 48.853826769000143 ], [ -123.539224550999933, 48.853821038000063 ], [ -123.539227448999938, 48.854090900000131 ], [ -123.539636395999935, 48.854088986000079 ], [ -123.539639296999937, 48.854358850000025 ], [ -123.540048245999913, 48.854356936000045 ], [ -123.540056954999926, 48.855166525000094 ], [ -123.538421131999925, 48.855174176000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.904015056461732", "sL_AssetLoss": "1594", "sL_BldgLoss": "1441", "sL_StrLoss": "1120", "sL_NStrLoss": "321", "sL_ContLoss": "153", "geom_point": "0101000020E6100000D0B7476707DE5EC0DD77B1D50A5E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.468991606, 48.734031803000072 ], [ -123.470215533999962, 48.734026815000028 ], [ -123.470223084999958, 48.734836430000051 ], [ -123.469815102, 48.734838095000015 ], [ -123.469817615999958, 48.73510796700009 ], [ -123.469409630999948, 48.735109629000078 ], [ -123.469412143999961, 48.735379500000072 ], [ -123.468188183, 48.735384481000096 ], [ -123.468180663999959, 48.734574864000074 ], [ -123.468588644999912, 48.734573206000114 ], [ -123.468586136999988, 48.734303334000074 ], [ -123.46899411599999, 48.734301674000065 ], [ -123.468991606, 48.734031803000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6793033", "BldgCostT": "4055546", "sL_LossRatio": "0.828093613683097", "sL_AssetLoss": "25239.9", "sL_BldgLoss": "20901", "sL_StrLoss": "12397", "sL_NStrLoss": "8504", "sL_ContLoss": "4338.9", "geom_point": "0101000020E61000000F94803D0BE05EC09F3FAF70F95B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.498330872999986, 48.716551640000013 ], [ -123.501681280999946, 48.716630231000053 ], [ -123.50183261199993, 48.716736596000082 ], [ -123.502287713999962, 48.717400297000069 ], [ -123.502741790999949, 48.717784900000055 ], [ -123.502988898999945, 48.718135191000052 ], [ -123.503649945999967, 48.7186397830001 ], [ -123.503562809999949, 48.720279614000042 ], [ -123.498139129999956, 48.720152443000153 ], [ -123.498330872999986, 48.716551640000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61749760", "BldgCostT": "38630402", "sL_LossRatio": "0.846212890141209", "sL_AssetLoss": "139765.42", "sL_BldgLoss": "118271.3", "sL_StrLoss": "78525.3", "sL_NStrLoss": "39746", "sL_ContLoss": "21494.12", "geom_point": "0101000020E6100000DE27DC655EDF5EC09FD2FBA549664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.478515717, 48.809783503000098 ], [ -123.478439610999942, 48.809493964000055 ], [ -123.478433275000015, 48.809232468000033 ], [ -123.478481024999979, 48.808976742000048 ], [ -123.478576088999986, 48.808802055000051 ], [ -123.478609235999912, 48.808742749000032 ], [ -123.478740849999937, 48.808571703000027 ], [ -123.478857840000032, 48.808419679000082 ], [ -123.4791014689999, 48.808080108000084 ], [ -123.479165117999969, 48.808000818000082 ], [ -123.479464183999966, 48.807197849000048 ], [ -123.47964458, 48.806713399000081 ], [ -123.479704586, 48.805127156000076 ], [ -123.479718798999926, 48.804751403000118 ], [ -123.479783411999961, 48.803048242000052 ], [ -123.479786487999931, 48.802967348000031 ], [ -123.479824041999933, 48.801978053000077 ], [ -123.479830490999959, 48.801806988000088 ], [ -123.479833087999978, 48.801738592000085 ], [ -123.479924740999934, 48.800133381000087 ], [ -123.479932415999983, 48.799998268000103 ], [ -123.47999650899996, 48.798875697000085 ], [ -123.48005125399996, 48.798451869000054 ], [ -123.480091916999953, 48.798137206000042 ], [ -123.480337515999977, 48.797717591000058 ], [ -123.480605590000025, 48.797485102000088 ], [ -123.481051596999947, 48.797284699000052 ], [ -123.481633603999953, 48.797131699000055 ], [ -123.482300303999949, 48.796999685000088 ], [ -123.482343564999894, 48.796994227 ], [ -123.482668874999945, 48.796953018000089 ], [ -123.482882089999947, 48.796925990000098 ], [ -123.48347009299999, 48.796892004000128 ], [ -123.484509598, 48.796956213000108 ], [ -123.485310179999885, 48.797165196000023 ], [ -123.4861593099999, 48.797205888000086 ], [ -123.489094047999941, 48.796895323000108 ], [ -123.489140708999955, 48.796890395000112 ], [ -123.49016689699998, 48.796873886000036 ], [ -123.49060192799999, 48.796749004000034 ], [ -123.492596986999942, 48.795549507000089 ], [ -123.492996518999959, 48.795351607000065 ], [ -123.493451692999955, 48.795229792000065 ], [ -123.494894186999943, 48.794954499000013 ], [ -123.495309501999955, 48.794740789000109 ], [ -123.495943181999962, 48.794256397000041 ], [ -123.496216184, 48.793980702000049 ], [ -123.496707604999955, 48.793308207000152 ], [ -123.497599773999966, 48.791918278000054 ], [ -123.498057603999953, 48.791205001000051 ], [ -123.498864488999914, 48.789947863000037 ], [ -123.499362101000017, 48.789172483000101 ], [ -123.499439305999942, 48.789014839000082 ], [ -123.500868947999948, 48.789048317000031 ], [ -123.500936497999973, 48.787780419000043 ], [ -123.501683040999964, 48.78779789300004 ], [ -123.506368002, 48.787907434000026 ], [ -123.506353358999931, 48.78818289200008 ], [ -123.506787103999955, 48.788193023000126 ], [ -123.50662597899999, 48.791224159000102 ], [ -123.506595716999939, 48.791793424000041 ], [ -123.504114581999914, 48.791735448000054 ], [ -123.504061768999932, 48.792727883000062 ], [ -123.502395033999932, 48.792688905000105 ], [ -123.502353442999933, 48.793469922000028 ], [ -123.501580706999988, 48.793451842000096 ], [ -123.501549142999949, 48.794044341000124 ], [ -123.49999780399996, 48.794008026000014 ], [ -123.499945331999953, 48.794992377000035 ], [ -123.49970675899999, 48.794986791000071 ], [ -123.49965477399995, 48.795961881000089 ], [ -123.499473294000026, 48.795957630000075 ], [ -123.49940613499993, 48.797217183000072 ], [ -123.498437979999949, 48.797194505000014 ], [ -123.498429802999937, 48.797347807000065 ], [ -123.498101848999937, 48.797340122000094 ], [ -123.498046545999983, 48.798376714000071 ], [ -123.494094327999903, 48.798284033000101 ], [ -123.494073104999956, 48.798681211000087 ], [ -123.488640386, 48.798553573000049 ], [ -123.488645342999959, 48.798461034000105 ], [ -123.484147260999976, 48.798355145000052 ], [ -123.484101246999955, 48.799212811000096 ], [ -123.484573587999975, 48.7992239390001 ], [ -123.484559025999957, 48.799495425000075 ], [ -123.487139011999943, 48.799556172000081 ], [ -123.486946071999938, 48.803156471000122 ], [ -123.485617189999971, 48.803125190000053 ], [ -123.48543639699993, 48.806496499000055 ], [ -123.48478305499999, 48.806481113000089 ], [ -123.484732820999952, 48.807417513000104 ], [ -123.482959450999985, 48.807375732 ], [ -123.482911195999961, 48.808274554000015 ], [ -123.48278151399991, 48.808271498000103 ], [ -123.482737772999911, 48.809086180000058 ], [ -123.482828242999972, 48.809088313000139 ], [ -123.482790715999954, 48.809787257000032 ], [ -123.482793187999974, 48.809787315000101 ], [ -123.482599869999945, 48.813387547000076 ], [ -123.480251945999967, 48.813332185000043 ], [ -123.480142791999981, 48.813260599000081 ], [ -123.479695323999962, 48.812866604000128 ], [ -123.479265062999971, 48.812103488000041 ], [ -123.479202239999921, 48.811934862000058 ], [ -123.479092702999935, 48.811640704000069 ], [ -123.479038695999961, 48.811396604000095 ], [ -123.478890232999973, 48.810725722000029 ], [ -123.478529931999944, 48.809837642000112 ], [ -123.478515717, 48.809783503000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.876330447971966", "sL_AssetLoss": "11471.7", "sL_BldgLoss": "10053", "sL_StrLoss": "6460", "sL_NStrLoss": "3593", "sL_ContLoss": "1418.7", "geom_point": "0101000020E6100000F54B823FD5E15EC0CD4DA3E2625E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.526327369999962, 48.738595433000071 ], [ -123.52649685899999, 48.735377649000107 ], [ -123.527084402999918, 48.735462209000076 ], [ -123.527781397999959, 48.735665791000052 ], [ -123.528531393999955, 48.735923608000107 ], [ -123.529051189999961, 48.736262595000078 ], [ -123.529952485999971, 48.736591603000086 ], [ -123.531567909999964, 48.737672491000097 ], [ -123.53180365899999, 48.73776218400009 ], [ -123.531753254999941, 48.73872116700008 ], [ -123.526327369999962, 48.738595433000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8090834", "BldgCostT": "5083334", "sL_LossRatio": "0.587824120685956", "sL_AssetLoss": "36352.2", "sL_BldgLoss": "21368.7", "sL_StrLoss": "9462", "sL_NStrLoss": "11906.7", "sL_ContLoss": "14983.5", "geom_point": "0101000020E610000048B8B9C621E25EC099D18F86D3604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.53091560699994, 48.754597318 ], [ -123.536120014999952, 48.754717657000128 ], [ -123.535931013999956, 48.758318304000092 ], [ -123.530502854, 48.758192787000063 ], [ -123.530675539999919, 48.754910200000019 ], [ -123.530692270999936, 48.754592148000079 ], [ -123.53091560699994, 48.754597318 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9343500", "BldgCostT": "6180000", "sL_LossRatio": "0.858936779216752", "sL_AssetLoss": "34831.9", "sL_BldgLoss": "29918.4", "sL_StrLoss": "21524.4", "sL_NStrLoss": "8394", "sL_ContLoss": "4913.5", "geom_point": "0101000020E610000099B2DB80B2E05EC0289CDD5A26624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.509948132999938, 48.764649570000124 ], [ -123.515376984999989, 48.764776131000133 ], [ -123.515186352999962, 48.768376683000099 ], [ -123.511875984999932, 48.768299543000111 ], [ -123.511841949999933, 48.768941464000115 ], [ -123.506412626999989, 48.768814723000048 ], [ -123.506603933999969, 48.765214189000069 ], [ -123.50991407399998, 48.765291493000056 ], [ -123.509948132999938, 48.764649570000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113274584", "BldgCostT": "76933334", "sL_LossRatio": "0.834425915118871", "sL_AssetLoss": "484937", "sL_BldgLoss": "404644", "sL_StrLoss": "197045", "sL_NStrLoss": "207599", "sL_ContLoss": "80293", "geom_point": "0101000020E610000081D0517901E25EC0399FCFBA256B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.535785346999944, 48.841663093000058 ], [ -123.53585671799999, 48.840306152000018 ], [ -123.533796556999931, 48.840258635000104 ], [ -123.533767737999966, 48.840806110000052 ], [ -123.528503174999983, 48.840684504000073 ], [ -123.528492531999945, 48.840886240000017 ], [ -123.523054828999946, 48.840760361000029 ], [ -123.523153463999947, 48.838894674000045 ], [ -123.522976138999923, 48.838890564000039 ], [ -123.523083701999923, 48.836855943000074 ], [ -123.523166460999946, 48.835290407000102 ], [ -123.523334659999989, 48.835294305000097 ], [ -123.523381700999963, 48.834404310000117 ], [ -123.523521279999954, 48.83440754400015 ], [ -123.523662141, 48.831742208000037 ], [ -123.526044042999956, 48.831797380000104 ], [ -123.526050147999939, 48.83168176700012 ], [ -123.531486804999972, 48.831807495000078 ], [ -123.53148123599999, 48.83191319500007 ], [ -123.532610071999912, 48.831939266000091 ], [ -123.532595063999949, 48.83222429500011 ], [ -123.534143032999935, 48.832260027000174 ], [ -123.534104709999923, 48.83298828400013 ], [ -123.535544228999953, 48.833021492000093 ], [ -123.535354866999967, 48.836621683000011 ], [ -123.53499622399994, 48.836613412000062 ], [ -123.534995551999955, 48.836626192000097 ], [ -123.533084782999978, 48.83658210300004 ], [ -123.533081860999914, 48.83663759899999 ], [ -123.538053158999929, 48.836752236000073 ], [ -123.537983827999952, 48.838071662000118 ], [ -123.543043958999959, 48.838188109000107 ], [ -123.542976100999979, 48.839482103000179 ], [ -123.542855154, 48.841788284000131 ], [ -123.541225156999943, 48.841750801000046 ], [ -123.541223187999918, 48.841788325000032 ], [ -123.535785346999944, 48.841663093000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21349392", "BldgCostT": "13386976", "sL_LossRatio": "0.850332228749903", "sL_AssetLoss": "76137.3", "sL_BldgLoss": "64742", "sL_StrLoss": "47120", "sL_NStrLoss": "17622", "sL_ContLoss": "11395.3", "geom_point": "0101000020E610000066CB98062EE15EC0D7CBCE26B0654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.521071089999936, 48.798511926000117 ], [ -123.52113678399995, 48.797269127000028 ], [ -123.520041927999941, 48.797243703000085 ], [ -123.520143557999987, 48.795321768000044 ], [ -123.51784906499995, 48.795268451000098 ], [ -123.517881292999988, 48.79465950700007 ], [ -123.516587393999927, 48.794629420000042 ], [ -123.516537923999962, 48.795563668000071 ], [ -123.511105505999979, 48.795437172000014 ], [ -123.511259962999944, 48.792526529000085 ], [ -123.511296561999984, 48.791836785000065 ], [ -123.511768751999966, 48.79184779100008 ], [ -123.511826400999951, 48.790761095000072 ], [ -123.517258278, 48.790887556000079 ], [ -123.51725020799995, 48.791039999000141 ], [ -123.518184855999948, 48.791061731000113 ], [ -123.518152633999961, 48.791670678000102 ], [ -123.520166569999901, 48.791717477000091 ], [ -123.520295208999968, 48.791781107000055 ], [ -123.520843306999936, 48.792219802000055 ], [ -123.521453901999934, 48.793340600000086 ], [ -123.520982785999962, 48.793720902000103 ], [ -123.520889792999967, 48.793901703000117 ], [ -123.521273122999958, 48.794232204000082 ], [ -123.521482177999957, 48.794346651000041 ], [ -123.522136787999955, 48.794705007000097 ], [ -123.523376118999963, 48.79477189500011 ], [ -123.524293906999901, 48.795297486 ], [ -123.525138877999922, 48.795365799000095 ], [ -123.526370392999965, 48.795909889000043 ], [ -123.526647625999928, 48.795912652000069 ], [ -123.526503890999948, 48.79863791500005 ], [ -123.521071089999936, 48.798511926000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "300864552", "BldgCostT": "192768745", "sL_LossRatio": "0.773875397315994", "sL_AssetLoss": "1786613.2", "sL_BldgLoss": "1382616", "sL_StrLoss": "785228", "sL_NStrLoss": "597388", "sL_ContLoss": "403997.2", "geom_point": "0101000020E61000003E839F9B6AE15EC0FE25C19F8A6C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.545432902999963, 48.864937001000044 ], [ -123.545213799999928, 48.864865804000019 ], [ -123.544696108999943, 48.864858699000081 ], [ -123.543892087999936, 48.864567812000104 ], [ -123.543298601999965, 48.86435309500007 ], [ -123.542224096999988, 48.864475601000031 ], [ -123.540613182999962, 48.864365901000021 ], [ -123.538407804999949, 48.863323408000035 ], [ -123.537279510999923, 48.862706768000052 ], [ -123.53659668399996, 48.862333603000081 ], [ -123.535666992999921, 48.862104303000123 ], [ -123.534797482000016, 48.862413304000057 ], [ -123.533475219999929, 48.862329301000095 ], [ -123.53298845399999, 48.862127281 ], [ -123.532939792999954, 48.862107088000059 ], [ -123.532568091999963, 48.861731090000077 ], [ -123.532496590999926, 48.861488993000066 ], [ -123.532307186999958, 48.861471895000051 ], [ -123.531995709999933, 48.861778088000065 ], [ -123.529190360999962, 48.86180809800004 ], [ -123.529235241999984, 48.861721367 ], [ -123.529626885999917, 48.86096487400004 ], [ -123.529743103999948, 48.860740399000058 ], [ -123.530142412999936, 48.860464534000144 ], [ -123.530157110999966, 48.860454412000081 ], [ -123.531254387999979, 48.859838214000106 ], [ -123.531408814999907, 48.85980253300005 ], [ -123.531554069999956, 48.859769002000114 ], [ -123.53171899499992, 48.859730904000081 ], [ -123.53321579699994, 48.859955513000038 ], [ -123.534148369999926, 48.860378807000124 ], [ -123.535227903999953, 48.860868782000139 ], [ -123.536314498999928, 48.861102915000039 ], [ -123.538238301999954, 48.861028304000072 ], [ -123.537426430999986, 48.860324998000088 ], [ -123.537067888999928, 48.860014377 ], [ -123.536939897999957, 48.859903482000099 ], [ -123.536566566999937, 48.859486726000021 ], [ -123.536123181999983, 48.858991694000053 ], [ -123.535946369999934, 48.858883525000046 ], [ -123.535426711999918, 48.858565695000081 ], [ -123.534553716999966, 48.858260789000084 ], [ -123.533997692999918, 48.857700101000027 ], [ -123.533136406999915, 48.857326989000086 ], [ -123.532527405999986, 48.856999294000111 ], [ -123.531650310999936, 48.856202299000088 ], [ -123.530614466999936, 48.855546174000047 ], [ -123.52910359099999, 48.854589103000073 ], [ -123.527785288999951, 48.854571204000131 ], [ -123.526256912999926, 48.854798225000067 ], [ -123.525865912999961, 48.854856306000102 ], [ -123.525375469999943, 48.854929147000085 ], [ -123.524918372999934, 48.854997042000065 ], [ -123.524560702999949, 48.855050150000075 ], [ -123.524268192999926, 48.855093600000096 ], [ -123.523803412999911, 48.855076487000105 ], [ -123.52349017399996, 48.854991274999989 ], [ -123.523278604999987, 48.854933697000014 ], [ -123.523211566999947, 48.854897563000058 ], [ -123.523063929999935, 48.854817968000077 ], [ -123.522042308999929, 48.85426709100004 ], [ -123.521372190999926, 48.854116400000116 ], [ -123.521146750999975, 48.854120278000039 ], [ -123.519155700999974, 48.854154468000075 ], [ -123.517777399999957, 48.854178107000038 ], [ -123.51543200299993, 48.854195699000073 ], [ -123.514737220999905, 48.854203801000061 ], [ -123.514084946000011, 48.854212382000071 ], [ -123.51359412799999, 48.854218817000053 ], [ -123.512171607999989, 48.854237505000064 ], [ -123.511726917, 48.854243324000066 ], [ -123.510691370999979, 48.854256901000035 ], [ -123.510531603999965, 48.854258988000055 ], [ -123.510432422999941, 48.854260286000056 ], [ -123.509041828999898, 48.854278502000064 ], [ -123.508660229999947, 48.854283495000082 ], [ -123.507556178999977, 48.854297946000045 ], [ -123.5037664769999, 48.854347440000012 ], [ -123.503370415999925, 48.854352596000091 ], [ -123.502624899999958, 48.854365899000065 ], [ -123.502590499999897, 48.853530593000109 ], [ -123.502586403999928, 48.852866398000032 ], [ -123.502536398999979, 48.852630005000094 ], [ -123.502434702999949, 48.852495195000053 ], [ -123.50239623399996, 48.85206998700005 ], [ -123.502379, 48.851879296000114 ], [ -123.502264193999935, 48.851556702000089 ], [ -123.501587573999984, 48.851440296000106 ], [ -123.501046014999972, 48.851347112000063 ], [ -123.500935202, 48.851303572000127 ], [ -123.500663292999974, 48.851196700000045 ], [ -123.501058679999986, 48.850932166000071 ], [ -123.501251336999957, 48.850803249000094 ], [ -123.501527290999974, 48.850618605000058 ], [ -123.500379149999972, 48.850710098000029 ], [ -123.499734816999961, 48.850761482000031 ], [ -123.499691085999942, 48.850417200000102 ], [ -123.499062490999947, 48.850105304000088 ], [ -123.49871791, 48.849818988000081 ], [ -123.49815118, 48.848975900000049 ], [ -123.49710761599999, 48.848296596000132 ], [ -123.496020414, 48.847168607000114 ], [ -123.495295522999982, 48.846873801000108 ], [ -123.494689502999904, 48.846363900000021 ], [ -123.494170418999971, 48.846087601000114 ], [ -123.49287048799999, 48.845697392000076 ], [ -123.491793193999939, 48.845485214000114 ], [ -123.491202920999953, 48.845065 ], [ -123.489589004999971, 48.844667686000065 ], [ -123.488031106999969, 48.84413499200005 ], [ -123.488027259999981, 48.844132251000097 ], [ -123.487255639999901, 48.843585081000079 ], [ -123.487247893999935, 48.843579589000015 ], [ -123.486235599999986, 48.843152296000135 ], [ -123.48554, 48.84293666000012 ], [ -123.485427686999969, 48.842901857000101 ], [ -123.485395669999932, 48.8428919320001 ], [ -123.49037291499998, 48.843792490000091 ], [ -123.49092731599994, 48.843404500000084 ], [ -123.49100961399995, 48.843386649000102 ], [ -123.491133903999952, 48.843359687000067 ], [ -123.491317291000016, 48.843365898000144 ], [ -123.491886085999937, 48.84349639599999 ], [ -123.493943303000023, 48.843768084000089 ], [ -123.494265385999981, 48.84372700100004 ], [ -123.494591796999899, 48.843630085000022 ], [ -123.496190002999981, 48.843610644000087 ], [ -123.49737729, 48.843596203000047 ], [ -123.49526563799999, 48.841102898000038 ], [ -123.495155794999945, 48.840973187000031 ], [ -123.494868986, 48.840405996000129 ], [ -123.494413315999935, 48.839892495000129 ], [ -123.494263079999968, 48.839765483000136 ], [ -123.494162534999958, 48.839680498000064 ], [ -123.494100804999974, 48.839628294000129 ], [ -123.493852768999901, 48.839185692000065 ], [ -123.493707732999923, 48.838926875000055 ], [ -123.493386387999948, 48.838353490000038 ], [ -123.491853115999945, 48.836435100000116 ], [ -123.491845695999984, 48.835682398000067 ], [ -123.491851675999925, 48.835627819000095 ], [ -123.491890074999944, 48.835522890000064 ], [ -123.491925725999963, 48.835463815000089 ], [ -123.491965654999987, 48.835364676000083 ], [ -123.491991500999973, 48.835220628000044 ], [ -123.49201801399991, 48.835148557000124 ], [ -123.492070865999949, 48.834977394000113 ], [ -123.492124494999956, 48.834887223000052 ], [ -123.492164148999933, 48.834761103000083 ], [ -123.492230921999919, 48.834625879000022 ], [ -123.492257318999961, 48.834535795000093 ], [ -123.492309693999957, 48.834319699000048 ], [ -123.492322080999926, 48.834193677000016 ], [ -123.492335113999928, 48.834130671 ], [ -123.492333967999954, 48.834013704000043 ], [ -123.492346430999987, 48.833896711000129 ], [ -123.49237299399999, 48.833824650000047 ], [ -123.492439098999952, 48.833617452000084 ], [ -123.492451928999969, 48.833536435000028 ], [ -123.492437511999967, 48.833455539000035 ], [ -123.492381503999979, 48.833302840000037 ], [ -123.492271186999943, 48.833168371000028 ], [ -123.492256809999915, 48.833096460000029 ], [ -123.492256141999945, 48.833024484000141 ], [ -123.492322230999946, 48.832817322000047 ], [ -123.492374619999978, 48.832601193000109 ], [ -123.492427801999895, 48.832466018000048 ], [ -123.492534790999926, 48.832258662000093 ], [ -123.492588673999975, 48.83219545000005 ], [ -123.49269660499999, 48.832087050000077 ], [ -123.4929263099999, 48.831888163000023 ], [ -123.493183072999912, 48.831671165000024 ], [ -123.49327800699993, 48.831625759000076 ], [ -123.493616707999976, 48.831426406000062 ], [ -123.49369812799992, 48.831390076000019 ], [ -123.49395610699996, 48.831299015000063 ], [ -123.494051314999965, 48.831280588000062 ], [ -123.494228446999941, 48.83127984 ], [ -123.494392141999953, 48.831297141000064 ], [ -123.494610845999944, 48.831368172000062 ], [ -123.494912013999979, 48.831510822000062 ], [ -123.49517233200001, 48.831653617000079 ], [ -123.495268045999978, 48.831689200000064 ], [ -123.495555258999985, 48.831795920000076 ], [ -123.495719644999951, 48.831885158000084 ], [ -123.495910771999917, 48.831920322000109 ], [ -123.49611515399998, 48.831919448000107 ], [ -123.496332820999967, 48.831882527000097 ], [ -123.496632055999967, 48.831827271000058 ], [ -123.496795456999905, 48.831817564000055 ], [ -123.497095214999888, 48.831816283000151 ], [ -123.49738142599999, 48.831824031000068 ], [ -123.497449652999947, 48.831832740000046 ], [ -123.497776750999932, 48.83184032700008 ], [ -123.498008408999979, 48.831839314000021 ], [ -123.498117318999945, 48.831829851000059 ], [ -123.498253285999965, 48.831802277000094 ], [ -123.498484387999952, 48.831747301000078 ], [ -123.498606952, 48.831737763000042 ], [ -123.498906615999928, 48.831727482000076 ], [ -123.499165413999904, 48.831717384000079 ], [ -123.499341139999942, 48.831702700000037 ], [ -123.499404297999916, 48.831682694000051 ], [ -123.499961818999978, 48.83125688800007 ], [ -123.499834114999928, 48.8309474960001 ], [ -123.500303404999926, 48.830643987000023 ], [ -123.500667299, 48.830327092000097 ], [ -123.501204174999955, 48.83041630100012 ], [ -123.501256502999965, 48.830302189000079 ], [ -123.501350368999965, 48.829506922000029 ], [ -123.50143269699997, 48.828809512000078 ], [ -123.501268124, 48.828660053000085 ], [ -123.499533993999989, 48.827085299000046 ], [ -123.499589727999961, 48.826767489000119 ], [ -123.499647287999949, 48.826439091000069 ], [ -123.49936200599997, 48.82627829800014 ], [ -123.498675341999942, 48.826279565000029 ], [ -123.498022988999978, 48.826280742000066 ], [ -123.497095098, 48.826282418000098 ], [ -123.495199422000013, 48.826285834000061 ], [ -123.495247423999942, 48.825387692000021 ], [ -123.497179077999974, 48.825432959000118 ], [ -123.497239204999985, 48.824307038000072 ], [ -123.502674929999898, 48.824434233000069 ], [ -123.502590200999947, 48.826024299000032 ], [ -123.503562195, 48.826047014000082 ], [ -123.503521315999947, 48.826814411 ], [ -123.505959553999929, 48.826871353000058 ], [ -123.505767944999931, 48.830471528000061 ], [ -123.50343324699999, 48.830417006000054 ], [ -123.503378423999919, 48.831446 ], [ -123.503320963, 48.832524481000064 ], [ -123.500566974999956, 48.83246010200002 ], [ -123.500551765999944, 48.832745250000066 ], [ -123.500489453999961, 48.832743792000059 ], [ -123.50037198099993, 48.834945947000072 ], [ -123.498550023999954, 48.834903315000076 ], [ -123.498549546999925, 48.834912258000074 ], [ -123.498708005999958, 48.834915967000072 ], [ -123.498686216999957, 48.835324148000034 ], [ -123.49973289499998, 48.835348641000024 ], [ -123.499711585999975, 48.835747969000096 ], [ -123.50142735799993, 48.835788098000123 ], [ -123.501403646999961, 48.836232726000041 ], [ -123.50395439499999, 48.83629233200007 ], [ -123.503952859999956, 48.83632112300004 ], [ -123.50451357599999, 48.836334218000054 ], [ -123.504505043999927, 48.836494427000083 ], [ -123.505154962999981, 48.836509601000131 ], [ -123.505110148999961, 48.837351214000122 ], [ -123.505871488999944, 48.837368985000047 ], [ -123.505858939999897, 48.837604725000048 ], [ -123.506876165999955, 48.837628459000051 ], [ -123.506874049999951, 48.837668219000079 ], [ -123.50730153799995, 48.837678192000062 ], [ -123.507328684999948, 48.837167923000081 ], [ -123.508151934999972, 48.837187122000081 ], [ -123.508290092, 48.83458923900011 ], [ -123.513727038999974, 48.834715870000124 ], [ -123.51354084399999, 48.838224625000088 ], [ -123.51533890599994, 48.838266442000084 ], [ -123.515483337999939, 48.835542758000045 ], [ -123.515493361999958, 48.835353720000086 ], [ -123.520930415999956, 48.835479983000013 ], [ -123.520857554999978, 48.836857067000047 ], [ -123.520739922999937, 48.839080135000145 ], [ -123.520068549999948, 48.83906455900005 ], [ -123.519909655999953, 48.842066246000101 ], [ -123.514471840999974, 48.841939931000084 ], [ -123.514476560999967, 48.841850957000133 ], [ -123.514357099999955, 48.841848179000046 ], [ -123.51429895299998, 48.842944074000101 ], [ -123.51777208699994, 48.84302478700009 ], [ -123.517744604999962, 48.843543458000063 ], [ -123.52292143499993, 48.843663554000095 ], [ -123.522894966999942, 48.844164109000097 ], [ -123.523323749999946, 48.844174045000031 ], [ -123.523296342999984, 48.844692446000117 ], [ -123.528181206999975, 48.844805518000108 ], [ -123.528141085999962, 48.845565875000069 ], [ -123.529283714999934, 48.845592292000092 ], [ -123.529266111000013, 48.845926045000041 ], [ -123.531083869999961, 48.845968045000056 ], [ -123.530894113999977, 48.849568155000085 ], [ -123.529020553999928, 48.849524865000042 ], [ -123.528985770999924, 48.850184199000097 ], [ -123.525821292, 48.850111008000098 ], [ -123.52576308099999, 48.8512129880001 ], [ -123.526657151999942, 48.851233677 ], [ -123.526635925, 48.85163562900005 ], [ -123.527847231999928, 48.851663646000098 ], [ -123.527835218999883, 48.851891243000111 ], [ -123.531920800999927, 48.851985640000095 ], [ -123.531886135999954, 48.852643496 ], [ -123.53502273, 48.852715861000085 ], [ -123.534929655, 48.854484313000022 ], [ -123.53518333, 48.854490162000047 ], [ -123.535128998999951, 48.855522516000079 ], [ -123.535135492999942, 48.85552266500008 ], [ -123.53513333099994, 48.855563741000047 ], [ -123.537210621999918, 48.855611612000096 ], [ -123.537182750999975, 48.856141628000124 ], [ -123.537819631999952, 48.856156297000055 ], [ -123.53781295, 48.856283392000066 ], [ -123.540939763999972, 48.856355351000083 ], [ -123.540963149999939, 48.855909944000089 ], [ -123.540133854999951, 48.85589086800006 ], [ -123.540322926999963, 48.852290779000064 ], [ -123.54576201299993, 48.852415777000047 ], [ -123.54558889499998, 48.855719435000054 ], [ -123.546418188999922, 48.855738469000059 ], [ -123.546386870999953, 48.856336275000032 ], [ -123.551336348999911, 48.856449742000031 ], [ -123.551291053999975, 48.857316039000118 ], [ -123.551718786999942, 48.857325834000093 ], [ -123.551694217999952, 48.857795797000108 ], [ -123.553528751, 48.85783778800004 ], [ -123.553521247999967, 48.857981421000133 ], [ -123.555080182999944, 48.858017078000032 ], [ -123.555093533, 48.857761358000062 ], [ -123.555658577999964, 48.857774277000033 ], [ -123.555682034, 48.857324870000078 ], [ -123.556390380999986, 48.857341061000149 ], [ -123.556418534, 48.856801487000034 ], [ -123.557507841999964, 48.856826376000072 ], [ -123.557551334999971, 48.855992413000074 ], [ -123.558180393, 48.856006781000126 ], [ -123.558231485999926, 48.855026784000081 ], [ -123.557909865999974, 48.855019438000063 ], [ -123.557939105999964, 48.854458652000105 ], [ -123.555371407999971, 48.854399973000028 ], [ -123.555559303999985, 48.850799848000101 ], [ -123.556000707999956, 48.850809941000115 ], [ -123.556027213, 48.850301958000017 ], [ -123.556714503999913, 48.850317668000088 ], [ -123.556800475, 48.848669472000068 ], [ -123.556974290999932, 48.848673445000088 ], [ -123.557074770999947, 48.846746774000081 ], [ -123.562513258999985, 48.846870921000104 ], [ -123.562487399999952, 48.847367885000054 ], [ -123.563190064999972, 48.847383905000108 ], [ -123.563166680999984, 48.847833406000049 ], [ -123.564415848999886, 48.847861873000021 ], [ -123.564364837999975, 48.848842928000067 ], [ -123.564524411999912, 48.848842146000031 ], [ -123.564527444999939, 48.849112009000081 ], [ -123.565754159, 48.849105996000084 ], [ -123.565755515999967, 48.849226533000042 ], [ -123.56597527199996, 48.849231536000062 ], [ -123.565961978999923, 48.849487345000057 ], [ -123.566365274999924, 48.849496526000053 ], [ -123.56625365099994, 48.851644882000102 ], [ -123.565556106999949, 48.851498191000097 ], [ -123.564913709000024, 48.851213306000083 ], [ -123.564448815999953, 48.851117892000033 ], [ -123.564216899999934, 48.851144989000026 ], [ -123.563813915999944, 48.851596498000049 ], [ -123.56306751399994, 48.852023694000131 ], [ -123.562326010999968, 48.852665996000077 ], [ -123.561408407999977, 48.853597509000053 ], [ -123.561089007999939, 48.854182796 ], [ -123.561091396999984, 48.854534596000086 ], [ -123.561286481999971, 48.854875003000181 ], [ -123.561603711999936, 48.85517980000003 ], [ -123.562206596999957, 48.855473211000088 ], [ -123.562331912999952, 48.855644101000109 ], [ -123.56266790699999, 48.856415996000131 ], [ -123.562610112999934, 48.857297596000087 ], [ -123.561703014999949, 48.857922792000068 ], [ -123.559869197999973, 48.858506692000113 ], [ -123.55872049, 48.859475203000059 ], [ -123.558465702999925, 48.85979990600007 ], [ -123.557423007999944, 48.86073731400004 ], [ -123.557196795999943, 48.860940701000096 ], [ -123.556384196999971, 48.861555995000131 ], [ -123.555936886999945, 48.861755392000042 ], [ -123.555017709999944, 48.862488807000027 ], [ -123.554557887999934, 48.862679704000065 ], [ -123.553786809999906, 48.863331998000028 ], [ -123.553366321999974, 48.863495704000115 ], [ -123.552476598999931, 48.86328348500011 ], [ -123.551419487999922, 48.863693699000059 ], [ -123.550864787999927, 48.864236294000122 ], [ -123.550505910999959, 48.865065203000036 ], [ -123.549746213, 48.865474009000074 ], [ -123.549085579999939, 48.866035095000022 ], [ -123.548581888999976, 48.866090591000159 ], [ -123.54804730099994, 48.865976702000118 ], [ -123.547377496999943, 48.86575450400008 ], [ -123.546624393999977, 48.865371406000058 ], [ -123.545899000999952, 48.865284489000111 ], [ -123.545432902999963, 48.864937001000044 ] ], [ [ -123.540995010999907, 48.86025446700009 ], [ -123.541010401, 48.859961390000109 ], [ -123.539661584, 48.859930363000103 ], [ -123.539646187, 48.860223440000063 ], [ -123.540995010999907, 48.86025446700009 ] ], [ [ -123.515198799999922, 48.851439811000084 ], [ -123.515242217999969, 48.850621358000119 ], [ -123.519288278999966, 48.850715323000081 ], [ -123.519292154999931, 48.85064215700006 ], [ -123.519309757999963, 48.85064256600004 ], [ -123.519343387999967, 48.850007557000069 ], [ -123.519959033999939, 48.850021841000078 ], [ -123.519974050999934, 48.849738224000092 ], [ -123.515900629999976, 48.84964364800004 ], [ -123.515974093999958, 48.848258386000118 ], [ -123.512539741999916, 48.848178527000073 ], [ -123.512407938999971, 48.850660405000049 ], [ -123.512301746999952, 48.850657934000026 ], [ -123.512263843999918, 48.851371554000075 ], [ -123.515198799999922, 48.851439811000084 ] ], [ [ -123.506204874999966, 48.848175132000094 ], [ -123.506241160999977, 48.847493533000026 ], [ -123.505403405999928, 48.847497208000078 ], [ -123.505366894999966, 48.848182790000088 ], [ -123.506113169999963, 48.848200203000061 ], [ -123.506114617999941, 48.848173027000051 ], [ -123.506204874999966, 48.848175132000094 ] ], [ [ -123.511106536999989, 48.846409736000069 ], [ -123.511205718, 48.844542941000029 ], [ -123.512245546999964, 48.844567147000106 ], [ -123.512269209999985, 48.844121568000048 ], [ -123.511724922999946, 48.844108899000041 ], [ -123.511726163999967, 48.844230792000047 ], [ -123.51009069, 48.844238039000075 ], [ -123.510088993999915, 48.844070803000072 ], [ -123.509021513999954, 48.844045932000064 ], [ -123.50889855199992, 48.846358304000013 ], [ -123.511106536999989, 48.846409736000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.906833389226912", "sL_AssetLoss": "12523.8", "sL_BldgLoss": "11357", "sL_StrLoss": "8210", "sL_NStrLoss": "3147", "sL_ContLoss": "1166.8", "geom_point": "0101000020E6100000B04CC7B5C4E25EC0569013E4EF634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.542339263999949, 48.778685207000088 ], [ -123.544338025999963, 48.778731214000047 ], [ -123.544174194999982, 48.779004488000048 ], [ -123.544302705999968, 48.779488705000084 ], [ -123.545001376999934, 48.780052693000101 ], [ -123.545467290999952, 48.780257789000117 ], [ -123.545483997999952, 48.780616687000069 ], [ -123.545190378999919, 48.781068199000025 ], [ -123.545719897, 48.782171996000095 ], [ -123.546035900999968, 48.782378490000063 ], [ -123.546135106999955, 48.782514522000085 ], [ -123.541193400999987, 48.782400801000087 ], [ -123.54138209499996, 48.778800285000031 ], [ -123.542332089999931, 48.778822164000076 ], [ -123.542339263999949, 48.778685207000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "283406007", "BldgCostT": "192525867", "sL_LossRatio": "0.846304609438229", "sL_AssetLoss": "694772.3", "sL_BldgLoss": "587989", "sL_StrLoss": "354881", "sL_NStrLoss": "233108", "sL_ContLoss": "106783.3", "geom_point": "0101000020E6100000E1DC4F5B5DDC5EC0BF87AEB8F65E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.454002806999981, 48.761582192000098 ], [ -123.453439304, 48.761116409000067 ], [ -123.452933605999988, 48.760902805000065 ], [ -123.452496801, 48.760580905000062 ], [ -123.451472488999983, 48.760135200000043 ], [ -123.451224904999918, 48.75993860600007 ], [ -123.451139817999945, 48.759542704000111 ], [ -123.450587712999948, 48.758599898000099 ], [ -123.449847402000017, 48.758099990000112 ], [ -123.448251704999933, 48.756153087 ], [ -123.447419508999971, 48.755824102000112 ], [ -123.446828997999958, 48.755233001000121 ], [ -123.446228800999975, 48.754973792000094 ], [ -123.44487988799996, 48.754844196000057 ], [ -123.444084107999984, 48.754073705000017 ], [ -123.442717311999957, 48.753394395000015 ], [ -123.442447702999928, 48.752190887000047 ], [ -123.442075394999975, 48.751634098000082 ], [ -123.44169228799997, 48.751320693 ], [ -123.440009375999978, 48.750148595000056 ], [ -123.439613182999963, 48.749989103000061 ], [ -123.439286112999952, 48.749971998000035 ], [ -123.438821697999956, 48.749829611000074 ], [ -123.437045985999973, 48.74890100800009 ], [ -123.435389996999945, 48.74781011400006 ], [ -123.43419740799996, 48.746653604000073 ], [ -123.43396332499999, 48.74639300399999 ], [ -123.433700196999922, 48.745710814000077 ], [ -123.432931302, 48.744894688000031 ], [ -123.432441893999965, 48.743511797000046 ], [ -123.43239869199995, 48.743088807000014 ], [ -123.432026915999955, 48.742640199000107 ], [ -123.43176401199996, 48.742047705000061 ], [ -123.431516589999916, 48.741742889000058 ], [ -123.430781697999961, 48.74015350600007 ], [ -123.43037009699999, 48.739669293000077 ], [ -123.429151888, 48.738827589000067 ], [ -123.428465489999965, 48.738190899000045 ], [ -123.428163585999968, 48.737823504000097 ], [ -123.427982288999942, 48.737131304000123 ], [ -123.427514791999926, 48.736684110000091 ], [ -123.427347481999959, 48.736207 ], [ -123.426227096999924, 48.735492101000062 ], [ -123.426098309999986, 48.734881105000078 ], [ -123.425701898999989, 48.734557809000059 ], [ -123.425697787999965, 48.733973910000017 ], [ -123.425490284999981, 48.733596398000017 ], [ -123.425488603999938, 48.73338990100013 ], [ -123.425768787999942, 48.732867290000094 ], [ -123.42631241499997, 48.732684993000134 ], [ -123.426567490999929, 48.73244138900008 ], [ -123.427366600999946, 48.731988508000065 ], [ -123.42792280499998, 48.73194149100005 ], [ -123.428646391999948, 48.732128104000068 ], [ -123.428971702999917, 48.732118095000097 ], [ -123.429418614999989, 48.731908800000099 ], [ -123.42980929, 48.731430204000077 ], [ -123.430080584999942, 48.731311994000116 ], [ -123.431018208, 48.731255009000087 ], [ -123.431876507999988, 48.731369006000072 ], [ -123.432541, 48.731276397000045 ], [ -123.432758394999951, 48.731176695000066 ], [ -123.43340338199999, 48.730283701000097 ], [ -123.433606207999944, 48.730156991000051 ], [ -123.434912104999952, 48.730071504000058 ], [ -123.435411396999939, 48.72976389100009 ], [ -123.436119095000024, 48.729921987000125 ], [ -123.437182401999934, 48.730017387000061 ], [ -123.437519497999943, 48.729773909000087 ], [ -123.43757218199994, 48.729521795000053 ], [ -123.436938686999923, 48.728633094000095 ], [ -123.437015987999956, 48.728128912000095 ], [ -123.437285604999957, 48.72800210500003 ], [ -123.437952412, 48.727928105000068 ], [ -123.439010307, 48.727617593000048 ], [ -123.439865807999979, 48.727470887000067 ], [ -123.440136312999925, 48.727271509000055 ], [ -123.440551797999944, 48.726667700000029 ], [ -123.441228480999939, 48.726385694000044 ], [ -123.441865010999962, 48.725870086000029 ], [ -123.442665609999935, 48.7258858040001 ], [ -123.44456192, 48.726426998000058 ], [ -123.44525779699994, 48.726747401000054 ], [ -123.446239097999978, 48.726932608 ], [ -123.447135006999972, 48.726884102000106 ], [ -123.447474290999978, 48.726748803000127 ], [ -123.448095703999954, 48.726304486000089 ], [ -123.448447293, 48.726177701000111 ], [ -123.449087011999964, 48.72613929800012 ], [ -123.449903800999948, 48.726280308000078 ], [ -123.450189684999899, 48.726207602000017 ], [ -123.450227314999935, 48.726051721000026 ], [ -123.450699958999934, 48.726063026000098 ], [ -123.450659417999987, 48.726810008000072 ], [ -123.452799728999949, 48.726861172000099 ], [ -123.45279599699991, 48.726929975000132 ], [ -123.453678102999973, 48.726951050000068 ], [ -123.453482894999951, 48.730551711000075 ], [ -123.453114340999974, 48.73054290700005 ], [ -123.453077714999949, 48.731218319000099 ], [ -123.448531525999925, 48.731109614000054 ], [ -123.448531127999942, 48.731116930000098 ], [ -123.446822148999942, 48.731076016000024 ], [ -123.446805874999953, 48.731375372000059 ], [ -123.44315414, 48.73128785500009 ], [ -123.443104974, 48.732190961000114 ], [ -123.442790794999937, 48.732183425000088 ], [ -123.442754497999914, 48.732850066000012 ], [ -123.438802239999973, 48.73275519400007 ], [ -123.438785392999989, 48.733064105000068 ], [ -123.439477992999954, 48.733080741000101 ], [ -123.439423701999928, 48.734076509000026 ], [ -123.440964600999948, 48.734113504000113 ], [ -123.440893270999979, 48.735422517000067 ], [ -123.442437425999984, 48.735459569000064 ], [ -123.442241320999955, 48.739060161000076 ], [ -123.441871256999917, 48.73905128300003 ], [ -123.441849314999956, 48.739454062000057 ], [ -123.443466375999904, 48.739492845000036 ], [ -123.443660864999984, 48.735920258000078 ], [ -123.445273876999977, 48.735958919000097 ], [ -123.445444965999982, 48.732813692000015 ], [ -123.450869964, 48.732943541000125 ], [ -123.450777268999971, 48.734651289000048 ], [ -123.454676430999911, 48.734744445000068 ], [ -123.454481268, 48.738345063000104 ], [ -123.449055636999901, 48.738215399000055 ], [ -123.449148401999977, 48.736507662000115 ], [ -123.449061479999955, 48.736505583000117 ], [ -123.448890617999965, 48.739650796 ], [ -123.444381972999921, 48.739542833000058 ], [ -123.444258589999919, 48.741809792000012 ], [ -123.444714921999946, 48.741820727000082 ], [ -123.444606337, 48.743815976000128 ], [ -123.445576111999912, 48.743839211000108 ], [ -123.445437935999976, 48.746378867000061 ], [ -123.446533029999941, 48.746405093000099 ], [ -123.446485947999946, 48.747270765000067 ], [ -123.447234156999968, 48.747288677000029 ], [ -123.447115779999962, 48.749465714000081 ], [ -123.448613239999943, 48.749501546000026 ], [ -123.448461822999917, 48.752287516000081 ], [ -123.44884779599991, 48.752296748000084 ], [ -123.448824951999981, 48.752717108000112 ], [ -123.450155175999939, 48.752748915000019 ], [ -123.45013881599999, 48.753050126000034 ], [ -123.450439282999938, 48.753057309000091 ], [ -123.450402952999951, 48.753726238000091 ], [ -123.451455188999915, 48.753751384000076 ], [ -123.451434781999922, 48.754127252000053 ], [ -123.451870995000021, 48.754137673000059 ], [ -123.451814617999972, 48.755176238000061 ], [ -123.452853522999973, 48.75520105099999 ], [ -123.45279421099994, 48.756294094000054 ], [ -123.453968349999911, 48.756322124000114 ], [ -123.453928056, 48.75706498100007 ], [ -123.454855061999922, 48.757087103000032 ], [ -123.454794294999914, 48.75820777800002 ], [ -123.456005787999942, 48.758236676000138 ], [ -123.455961429999917, 48.759055088000082 ], [ -123.456028135999986, 48.759056678000015 ], [ -123.455995846999954, 48.759652420000066 ], [ -123.456547271999909, 48.759665568000045 ], [ -123.456585968999917, 48.758951444000104 ], [ -123.461501270999989, 48.759068521000067 ], [ -123.462014015999969, 48.759080720000064 ], [ -123.46196447799997, 48.759996861000076 ], [ -123.46253825299999, 48.760010509000089 ], [ -123.462465191999968, 48.761361884000031 ], [ -123.462924319999971, 48.761372803000043 ], [ -123.462729678999935, 48.764973280000035 ], [ -123.45951275299997, 48.764896730000025 ], [ -123.458918011999984, 48.764882567000029 ], [ -123.458900738999958, 48.765201573000134 ], [ -123.455447880999927, 48.765119281000054 ], [ -123.45525741299997, 48.763484908000102 ], [ -123.454855609999953, 48.762757106000059 ], [ -123.454418095999955, 48.762372596000034 ], [ -123.454002806999981, 48.761582192000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "0.888127168401388", "sL_AssetLoss": "11990.4", "sL_BldgLoss": "10649", "sL_StrLoss": "7650", "sL_NStrLoss": "2999", "sL_ContLoss": "1341.4", "geom_point": "0101000020E610000086CB852539E35EC0A2EE45ACAC624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.547599330999944, 48.772653040000066 ], [ -123.54776095899993, 48.769560313000071 ], [ -123.553190477999976, 48.769684950000055 ], [ -123.553084545999923, 48.771716526000084 ], [ -123.552711800999958, 48.771775190000078 ], [ -123.552711800999958, 48.771891987000096 ], [ -123.553064958999954, 48.772092138000062 ], [ -123.553044989999989, 48.77247507900006 ], [ -123.55296468599991, 48.772494400000035 ], [ -123.55250009299999, 48.77244180300012 ], [ -123.552281417999978, 48.772299304000043 ], [ -123.552101906999937, 48.771994603000117 ], [ -123.55166549799992, 48.771960392000025 ], [ -123.55101321599993, 48.772125607000135 ], [ -123.550305708999943, 48.772138384000051 ], [ -123.549541298999912, 48.771790898000098 ], [ -123.549254997999967, 48.77183789000005 ], [ -123.548227292999954, 48.772427490000034 ], [ -123.547599330999944, 48.772653040000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.837835006808625", "sL_AssetLoss": "13365.4", "sL_BldgLoss": "11198", "sL_StrLoss": "7040", "sL_NStrLoss": "4158", "sL_ContLoss": "2167.4", "geom_point": "0101000020E61000005143650D68E45EC0326ECDCAB46C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.567686394999967, 48.847741237000022 ], [ -123.571492453999923, 48.847827769000048 ], [ -123.57124240899999, 48.848088582000067 ], [ -123.571219601999985, 48.848484595000052 ], [ -123.570316902999963, 48.84925359000011 ], [ -123.570661800999972, 48.849619694000097 ], [ -123.570717508999948, 48.849863199000033 ], [ -123.57005541700002, 48.850370208000129 ], [ -123.56881789199997, 48.8505739020001 ], [ -123.568494695999988, 48.850908594000046 ], [ -123.56803191399996, 48.850991199000049 ], [ -123.567815001999946, 48.851109388000111 ], [ -123.56769678699996, 48.851452600000059 ], [ -123.567296959999965, 48.851559806000068 ], [ -123.567050112999979, 48.851554188000151 ], [ -123.567237101, 48.847954026000075 ], [ -123.567674828999941, 48.847963987000078 ], [ -123.567686394999967, 48.847741237000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17824751", "BldgCostT": "10555001", "sL_LossRatio": "0.785578437776155", "sL_AssetLoss": "62464.8", "sL_BldgLoss": "49071", "sL_StrLoss": "31258", "sL_NStrLoss": "17813", "sL_ContLoss": "13393.8", "geom_point": "0101000020E6100000A17C6A8A7ADD5EC0F7629C7D6D604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.45806779599998, 48.75614068600008 ], [ -123.45818214099998, 48.754029096000068 ], [ -123.457518404999931, 48.754013278000123 ], [ -123.4577134, 48.750412745000077 ], [ -123.460282628999934, 48.750473954000057 ], [ -123.463140463999977, 48.75054196600005 ], [ -123.463026351999957, 48.752653574000135 ], [ -123.463690070999945, 48.752669358000141 ], [ -123.463495525, 48.756269888000098 ], [ -123.4623889, 48.756243568000066 ], [ -123.45806779599998, 48.75614068600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152288917", "BldgCostT": "102396667", "sL_LossRatio": "0.794117857890977", "sL_AssetLoss": "627764.5", "sL_BldgLoss": "498519", "sL_StrLoss": "253983", "sL_NStrLoss": "244536", "sL_ContLoss": "129245.5", "geom_point": "0101000020E6100000D565083208DF5EC0ED27314257634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.487430094999979, 48.781024595000126 ], [ -123.486846668999988, 48.780800793000026 ], [ -123.486759313999968, 48.780757263000034 ], [ -123.486168150999958, 48.780462606000071 ], [ -123.482962032999964, 48.778864468000059 ], [ -123.48233198599992, 48.778550399000103 ], [ -123.481436799999969, 48.778084001000131 ], [ -123.479959960999963, 48.777617437000089 ], [ -123.478812112999961, 48.777254812000152 ], [ -123.478279698999984, 48.777086592000089 ], [ -123.47770019099994, 48.77696930400004 ], [ -123.476931885999974, 48.776873609000106 ], [ -123.476413900999944, 48.776700009000074 ], [ -123.475256089999945, 48.775935401000034 ], [ -123.474554101999956, 48.774937413000025 ], [ -123.473183277, 48.774361886000065 ], [ -123.471516993999941, 48.773662296000055 ], [ -123.468271205999912, 48.772697033000014 ], [ -123.468065688999957, 48.772635899000107 ], [ -123.462048003999925, 48.771393406000115 ], [ -123.461751302999957, 48.771150005000052 ], [ -123.461073486999965, 48.770037693000027 ], [ -123.459426491999949, 48.768623408000032 ], [ -123.458862586999928, 48.767932710000089 ], [ -123.458269404999982, 48.766962786000107 ], [ -123.457787314999962, 48.766453004000041 ], [ -123.456747591999914, 48.765853412000062 ], [ -123.456144014999921, 48.76562916500005 ], [ -123.456162731999953, 48.765283853 ], [ -123.459336133999955, 48.765359467000081 ], [ -123.46159151099998, 48.765413150000015 ], [ -123.461574099999936, 48.765735043000042 ], [ -123.463363669, 48.76577760400005 ], [ -123.46331895499999, 48.766604812000011 ], [ -123.463944896999934, 48.766619691000095 ], [ -123.463914413999959, 48.767183747000047 ], [ -123.464192758999928, 48.76719036300009 ], [ -123.464229443999926, 48.766511454000067 ], [ -123.469658385999949, 48.766640340000045 ], [ -123.469507478999972, 48.769438973 ], [ -123.470471325999966, 48.769461827000036 ], [ -123.470360038999942, 48.771526248000065 ], [ -123.47250517699996, 48.771577080000029 ], [ -123.47248523699993, 48.77194726500003 ], [ -123.476415259999968, 48.772040278000077 ], [ -123.476378746999941, 48.772719184000081 ], [ -123.477899647999919, 48.772755141000061 ], [ -123.477837068999918, 48.773919374000045 ], [ -123.480326433, 48.773978180000043 ], [ -123.480266251000018, 48.775098851000031 ], [ -123.48039245, 48.775101831000036 ], [ -123.480426557000015, 48.774466676000024 ], [ -123.484905891999958, 48.774572337000066 ], [ -123.485046814999947, 48.771943181000033 ], [ -123.490476442999977, 48.772071007000058 ], [ -123.490430003999961, 48.772939311000073 ], [ -123.491288164999986, 48.772959488000055 ], [ -123.491095651999927, 48.776559949000024 ], [ -123.486434245999973, 48.776450264000118 ], [ -123.486413708999962, 48.776833606 ], [ -123.488039520999948, 48.776871885000041 ], [ -123.487992362999989, 48.777752678000084 ], [ -123.48820076599999, 48.77775758300006 ], [ -123.488152459999938, 48.778659875000123 ], [ -123.490403442999934, 48.77871282800001 ], [ -123.490402189999912, 48.778736240000043 ], [ -123.492292776999975, 48.778780678000032 ], [ -123.492203938999921, 48.78044267100011 ], [ -123.492493523999912, 48.780449474000122 ], [ -123.492557808999919, 48.779246688000107 ], [ -123.496075621, 48.779329275000123 ], [ -123.49609908799999, 48.778889574000083 ], [ -123.496474188999983, 48.778898373000111 ], [ -123.496564462999913, 48.77720658000009 ], [ -123.496896899999953, 48.777214377000107 ], [ -123.496976629999949, 48.775719886000076 ], [ -123.50240672699999, 48.775847104000079 ], [ -123.502343268999965, 48.77703917400008 ], [ -123.504548122999935, 48.777090751000053 ], [ -123.504503885999938, 48.777922463000046 ], [ -123.507542765999986, 48.777993475000109 ], [ -123.507351477999919, 48.781593936000029 ], [ -123.501920702999954, 48.781466970000047 ], [ -123.501964989999919, 48.780635264000097 ], [ -123.501819123999923, 48.780631851000052 ], [ -123.5018030199999, 48.780934274000153 ], [ -123.501427901999961, 48.780925493000012 ], [ -123.501409495999923, 48.78127107300007 ], [ -123.50163448099994, 48.781276340000055 ], [ -123.50144272699994, 48.78487677100005 ], [ -123.500262331999977, 48.78484913500008 ], [ -123.500166474999929, 48.786647896000041 ], [ -123.498555649999943, 48.786610162000031 ], [ -123.498413231999976, 48.786606825000078 ], [ -123.498140679999949, 48.786453694000031 ], [ -123.496978902999942, 48.786009200000095 ], [ -123.496287512999942, 48.785767700000108 ], [ -123.495631986999967, 48.785441395000106 ], [ -123.494689570999967, 48.784835299000079 ], [ -123.493531016999952, 48.783969430000063 ], [ -123.491813719, 48.782685894000061 ], [ -123.491256198999963, 48.782357391000062 ], [ -123.489820920999989, 48.781678275000111 ], [ -123.489141492999963, 48.78135680500003 ], [ -123.488813990999972, 48.781253593000031 ], [ -123.487430094999979, 48.781024595000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22248000", "BldgCostT": "14715000", "sL_LossRatio": "0.699702071465917", "sL_AssetLoss": "189542.1", "sL_BldgLoss": "132623", "sL_StrLoss": "58930", "sL_NStrLoss": "73693", "sL_ContLoss": "56919.1", "geom_point": "0101000020E61000009B1D356820E25EC0855716757B694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.531669131999948, 48.829387418000067 ], [ -123.531716761999974, 48.828483121 ], [ -123.531136165999953, 48.828469708000114 ], [ -123.531142435000021, 48.828350725000107 ], [ -123.530110636999893, 48.828326881000073 ], [ -123.53030036799997, 48.824726650000109 ], [ -123.533419432999963, 48.82479870300007 ], [ -123.533452034999954, 48.824179231000087 ], [ -123.532001857999944, 48.824145743000109 ], [ -123.53205776899992, 48.823083926000074 ], [ -123.526958542999949, 48.82296601300007 ], [ -123.526965158999957, 48.822840619000097 ], [ -123.526420030999972, 48.82282799900004 ], [ -123.526610022999989, 48.819227744000074 ], [ -123.532045237999967, 48.819353445000026 ], [ -123.532038634999978, 48.819478841000048 ], [ -123.532583725999942, 48.819491432000049 ], [ -123.532527828999889, 48.820553255000071 ], [ -123.537626808999931, 48.820670903000035 ], [ -123.537515749999955, 48.822784859000109 ], [ -123.538965887999908, 48.822818273000074 ], [ -123.538776829999932, 48.826418530000112 ], [ -123.537269976999951, 48.826383809000085 ], [ -123.537105538999953, 48.829512862000051 ], [ -123.531669131999948, 48.829387418000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.939339233557894", "sL_AssetLoss": "6813.3", "sL_BldgLoss": "6400", "sL_StrLoss": "5080", "sL_NStrLoss": "1320", "sL_ContLoss": "413.3", "geom_point": "0101000020E61000004A971F3412E25EC0746D3D7D63664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.530381467999945, 48.801305863000024 ], [ -123.53056474, 48.797825660000115 ], [ -123.530629300000015, 48.797832953000096 ], [ -123.531319503999924, 48.797910898000069 ], [ -123.532373298999971, 48.798346712000118 ], [ -123.53403968799995, 48.798815303000048 ], [ -123.534167409999924, 48.799229705000059 ], [ -123.53409981799993, 48.799571064000112 ], [ -123.534037399999974, 48.79988628600006 ], [ -123.533860591999954, 48.799941796000034 ], [ -123.533822217999926, 48.800148306000061 ], [ -123.53386419399996, 48.800327806000077 ], [ -123.534221504999891, 48.800586989000102 ], [ -123.53508368599995, 48.800916002000058 ], [ -123.535822328999984, 48.801284615000014 ], [ -123.535814615999968, 48.801431377000078 ], [ -123.530381467999945, 48.801305863000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117905715", "BldgCostT": "75244490", "sL_LossRatio": "0.714338886288934", "sL_AssetLoss": "1096173", "sL_BldgLoss": "783039", "sL_StrLoss": "371509", "sL_NStrLoss": "411530", "sL_ContLoss": "313134", "geom_point": "0101000020E6100000A8D1D480FBE25EC01CA7DF8D9E6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.56105600099994, 48.878824797000028 ], [ -123.56052759399995, 48.878771304000075 ], [ -123.560230009999913, 48.878783403000092 ], [ -123.559208187999943, 48.878917810000111 ], [ -123.557829222999928, 48.878571175000111 ], [ -123.557625482999953, 48.878519977000039 ], [ -123.557224995999945, 48.87841928400006 ], [ -123.554381884999941, 48.87730944200009 ], [ -123.553532513999926, 48.87697786700015 ], [ -123.55218169599999, 48.876450493000021 ], [ -123.55150190899991, 48.876243903000024 ], [ -123.551213403999938, 48.876212088000017 ], [ -123.550934308999942, 48.876236297000048 ], [ -123.550316200999958, 48.876569090000046 ], [ -123.5493125079999, 48.875992793000073 ], [ -123.54837269899997, 48.876694904000011 ], [ -123.548140185999927, 48.876790497000037 ], [ -123.547813212, 48.876791997000076 ], [ -123.546714879999968, 48.876410898000067 ], [ -123.545396077999939, 48.875983530000063 ], [ -123.543102496999964, 48.875240220000137 ], [ -123.542630010999957, 48.875087093000076 ], [ -123.54186820399994, 48.874886697000065 ], [ -123.54135772799998, 48.874799395000132 ], [ -123.541089293999946, 48.874753491000028 ], [ -123.540194272999912, 48.874774452000111 ], [ -123.539730980999934, 48.874785298000099 ], [ -123.539736606999924, 48.875353103000116 ], [ -123.539367928999937, 48.875357404000063 ], [ -123.537976751999977, 48.875373693 ], [ -123.535413137999967, 48.875403601000087 ], [ -123.534907684999922, 48.87540951600009 ], [ -123.534658202999935, 48.875363201000077 ], [ -123.534646776999963, 48.87535820700009 ], [ -123.53444118499999, 48.875268095000095 ], [ -123.53387354399996, 48.874890624000038 ], [ -123.532565908999942, 48.87402099600012 ], [ -123.532266405999948, 48.873889001000045 ], [ -123.532190587999935, 48.873855594000062 ], [ -123.53174151099999, 48.873719091000062 ], [ -123.52929371, 48.873129108000072 ], [ -123.529241299, 48.872037533000032 ], [ -123.529230075999948, 48.871803627000126 ], [ -123.529111339999943, 48.869330710000028 ], [ -123.529085192000011, 48.868785963000036 ], [ -123.529078288999969, 48.868642221000123 ], [ -123.529064717999958, 48.868358892000032 ], [ -123.529041693999957, 48.867891615000111 ], [ -123.52904404399996, 48.867513762000044 ], [ -123.529047686999917, 48.866929082000112 ], [ -123.529050965999929, 48.866398282000048 ], [ -123.529053903999937, 48.865930205000062 ], [ -123.528843210999938, 48.865201695000088 ], [ -123.528270600999988, 48.864722595000032 ], [ -123.527628107999945, 48.86448610100004 ], [ -123.526758993999977, 48.86438851200009 ], [ -123.527107316999945, 48.864240693000042 ], [ -123.52868919099997, 48.864249317000066 ], [ -123.52882832099999, 48.864193004000128 ], [ -123.52884007899999, 48.864176515000032 ], [ -123.528923906999964, 48.864059193000102 ], [ -123.528891889999926, 48.862806800000065 ], [ -123.528921106999974, 48.862639473000108 ], [ -123.529003177000035, 48.862169597000111 ], [ -123.529048506999985, 48.862082123000107 ], [ -123.529069858999947, 48.862040833000059 ], [ -123.52925870499999, 48.862097206000058 ], [ -123.530733493999932, 48.862387700000092 ], [ -123.531477614999986, 48.863039993000072 ], [ -123.532049496999917, 48.863001512000061 ], [ -123.53240589799999, 48.863135399000072 ], [ -123.532612144999987, 48.863136259000072 ], [ -123.533442612999977, 48.863139688000018 ], [ -123.533922016999924, 48.863334794000089 ], [ -123.535096418999984, 48.863564099000079 ], [ -123.536012193999952, 48.863874604000088 ], [ -123.536031979999947, 48.863878351000061 ], [ -123.536983115999973, 48.864058296000053 ], [ -123.537640094999944, 48.864397309000054 ], [ -123.538695195999964, 48.864751888000114 ], [ -123.539253309999964, 48.864748998 ], [ -123.539785324999983, 48.864886203000061 ], [ -123.540319387999958, 48.865023898000061 ], [ -123.542202893999985, 48.865023907000051 ], [ -123.542518084999955, 48.865283102000063 ], [ -123.54391750799999, 48.866005183000027 ], [ -123.544979977999972, 48.865990896000071 ], [ -123.545513000999961, 48.866096300000038 ], [ -123.54567588899999, 48.865898410000057 ], [ -123.545907095999951, 48.865861296000098 ], [ -123.546590007999939, 48.865992396000102 ], [ -123.546850899999939, 48.866153302000065 ], [ -123.547375109999962, 48.866717294000082 ], [ -123.547569376999974, 48.867138898000121 ], [ -123.547886515999949, 48.867425106000105 ], [ -123.549555513, 48.867830990000108 ], [ -123.54995329800002, 48.868063213000077 ], [ -123.549996018999977, 48.868306696000069 ], [ -123.550246891999976, 48.868480670000096 ], [ -123.550382206, 48.868574503000083 ], [ -123.552727955999956, 48.869458560000076 ], [ -123.552715961999951, 48.869688018000126 ], [ -123.552676248999916, 48.870447758000083 ], [ -123.551971989999942, 48.870431641000089 ], [ -123.550864221999944, 48.870406280000111 ], [ -123.550863213999904, 48.870425557000083 ], [ -123.551510482999959, 48.870440376000097 ], [ -123.551494860999966, 48.870739089000068 ], [ -123.551660593999927, 48.870742883000069 ], [ -123.55230167299996, 48.870757556000044 ], [ -123.552287360999969, 48.871031307000109 ], [ -123.552500833999943, 48.871030285000145 ], [ -123.552501493999955, 48.871090176000116 ], [ -123.553037364999938, 48.87110243700004 ], [ -123.553027163999943, 48.87129763800008 ], [ -123.553321976999911, 48.871296224000076 ], [ -123.553324952999915, 48.871566086000044 ], [ -123.553734040999956, 48.871564122000088 ], [ -123.553737019999986, 48.871833984000084 ], [ -123.554555200999985, 48.871830052000092 ], [ -123.554558182999983, 48.872099913000014 ], [ -123.555139266999916, 48.872097117000095 ], [ -123.555214204999956, 48.8706620990001 ], [ -123.555768614999977, 48.870674771000111 ], [ -123.556528895999975, 48.871058076000104 ], [ -123.55680772399991, 48.871198659000022 ], [ -123.557354117999949, 48.871474106000072 ], [ -123.55858629, 48.871944110000072 ], [ -123.559860806999936, 48.872540900000089 ], [ -123.560694610999917, 48.872707493000171 ], [ -123.561228380999964, 48.872902601000092 ], [ -123.563146988999961, 48.873721603 ], [ -123.564464903, 48.874443599000102 ], [ -123.56695701699999, 48.875339492000066 ], [ -123.567272701999912, 48.875571594000107 ], [ -123.56731751599996, 48.87584219600005 ], [ -123.568123481999962, 48.875936191000022 ], [ -123.568850293999915, 48.876320702000029 ], [ -123.569360805999978, 48.876803504000058 ], [ -123.569908615999978, 48.876963094000075 ], [ -123.570265979999959, 48.87726639800006 ], [ -123.570947387, 48.877244995000062 ], [ -123.571344916, 48.877405996000064 ], [ -123.571904891999935, 48.877509988000071 ], [ -123.572412907999933, 48.877750608000092 ], [ -123.572538190999978, 48.877903012000061 ], [ -123.572513503999971, 48.878109493000103 ], [ -123.573141705999916, 48.878196386000084 ], [ -123.573416282999943, 48.878474095000037 ], [ -123.573909705999966, 48.878660690000054 ], [ -123.573925098999922, 48.878804599000027 ], [ -123.573761607999984, 48.878833007000068 ], [ -123.57329740599999, 48.878709102000123 ], [ -123.571146796999955, 48.877954303000102 ], [ -123.570682912, 48.877848904000146 ], [ -123.57040951599997, 48.877868901000127 ], [ -123.569679883999953, 48.878555295000169 ], [ -123.569998290999976, 48.878995415000077 ], [ -123.570087089999959, 48.879481093000074 ], [ -123.57111748599999, 48.880426324000027 ], [ -123.571148996999938, 48.880455215000055 ], [ -123.57165591299993, 48.880804105000024 ], [ -123.572236016999966, 48.881430797000029 ], [ -123.572242654999982, 48.881435080000053 ], [ -123.573403893999952, 48.882181406000015 ], [ -123.573554739999949, 48.882426213000052 ], [ -123.573779496999961, 48.882790913000044 ], [ -123.574513166999964, 48.883482259000097 ], [ -123.572708982999956, 48.882115603000059 ], [ -123.571853685999912, 48.881532995000121 ], [ -123.571811446999973, 48.881513130000052 ], [ -123.57131778899999, 48.881281194000053 ], [ -123.570401011999962, 48.881005108000068 ], [ -123.569741813999912, 48.880806601000153 ], [ -123.56817729899997, 48.880427696000076 ], [ -123.567174687999952, 48.880269705000032 ], [ -123.566403795999932, 48.880215298000081 ], [ -123.565500993999962, 48.880104588000101 ], [ -123.56547043399999, 48.880096291000015 ], [ -123.563822003000027, 48.879647385000062 ], [ -123.561695199999974, 48.878950204000063 ], [ -123.561645962999989, 48.878940540000038 ], [ -123.56105600099994, 48.878824797000028 ] ], [ [ -123.538958743999927, 48.867155771000036 ], [ -123.538957565999937, 48.867046240000015 ], [ -123.538548513999942, 48.867048151000084 ], [ -123.538542151999934, 48.866455222000099 ], [ -123.537506221999976, 48.86643137300004 ], [ -123.53747914899999, 48.866946142000124 ], [ -123.537166308999957, 48.866938938000033 ], [ -123.537154548, 48.867162528000087 ], [ -123.537321877999943, 48.86716638300004 ], [ -123.537324414999929, 48.867118149000113 ], [ -123.538958743999927, 48.867155771000036 ] ], [ [ -123.531290248999966, 48.866874517000063 ], [ -123.531311811999899, 48.866465532000035 ], [ -123.529390200999941, 48.866421157000104 ], [ -123.529369114999923, 48.866820785000115 ], [ -123.529546505999946, 48.866819969000048 ], [ -123.529546655999923, 48.866834254000061 ], [ -123.531290248999966, 48.866874517000063 ] ], [ [ -123.540169395999925, 48.865616471000052 ], [ -123.54018472300001, 48.867040498000023 ], [ -123.543741815999965, 48.867023779000057 ], [ -123.543797685999948, 48.865958751000058 ], [ -123.543592178999972, 48.865954031000079 ], [ -123.543592273999934, 48.865952210000067 ], [ -123.541284194999946, 48.865899170000077 ], [ -123.541297677999978, 48.865642417000103 ], [ -123.540169395999925, 48.865616471000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.845541538932151", "sL_AssetLoss": "15037.7", "sL_BldgLoss": "12715", "sL_StrLoss": "8050", "sL_NStrLoss": "4665", "sL_ContLoss": "2322.7", "geom_point": "0101000020E6100000787C39BB4EE15EC064F3E5C3BB644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.517547471999933, 48.788482959000106 ], [ -123.517688543999981, 48.785817224000041 ], [ -123.523119865999945, 48.785943387000032 ], [ -123.522982425999942, 48.788546175000107 ], [ -123.522220582999978, 48.788317405000051 ], [ -123.519327585, 48.787746298000108 ], [ -123.518755096999911, 48.787730612000082 ], [ -123.517996688999943, 48.788031089000107 ], [ -123.517547471999933, 48.788482959000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.928721071863581", "sL_AssetLoss": "10262.5", "sL_BldgLoss": "9531", "sL_StrLoss": "7400", "sL_NStrLoss": "2131", "sL_ContLoss": "731.5", "geom_point": "0101000020E6100000E12C5F7613E15EC060A9D326735D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.514994479999956, 48.731425854000065 ], [ -123.515007444999981, 48.731180819000024 ], [ -123.514399171999955, 48.731166640000062 ], [ -123.514589716000017, 48.727565872000085 ], [ -123.514820454999949, 48.727571251 ], [ -123.515803777999949, 48.728154496000087 ], [ -123.516502901999928, 48.728672997000118 ], [ -123.519081987000021, 48.729649996000028 ], [ -123.519494497999986, 48.73001738900011 ], [ -123.519883199, 48.730816396000066 ], [ -123.520172590999977, 48.731112610000046 ], [ -123.520433918999956, 48.731279169000054 ], [ -123.520419506999986, 48.731552166000071 ], [ -123.514994479999956, 48.731425854000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226948540", "BldgCostT": "140890373", "sL_LossRatio": "0.718124075527364", "sL_AssetLoss": "1667099.1", "sL_BldgLoss": "1197184", "sL_StrLoss": "602967", "sL_NStrLoss": "594217", "sL_ContLoss": "469915.1", "geom_point": "0101000020E6100000FFCE407668DE5EC0481D47209C694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.485852592999962, 48.834036848000032 ], [ -123.484441692999894, 48.833027514 ], [ -123.484173306999978, 48.833211299000041 ], [ -123.483822784999958, 48.833320601000011 ], [ -123.483805084999972, 48.833326093000082 ], [ -123.483424807999953, 48.833337911000065 ], [ -123.482943981999938, 48.833219296000038 ], [ -123.482587412, 48.833240847000091 ], [ -123.48234321399994, 48.833255599000019 ], [ -123.481804294999989, 48.833332112000051 ], [ -123.480683234000011, 48.833619928000118 ], [ -123.480614807999984, 48.833637509000042 ], [ -123.480329488999956, 48.833627197000041 ], [ -123.48014899699993, 48.833568916000054 ], [ -123.480025285999957, 48.833479203000053 ], [ -123.479146914999944, 48.832842302000088 ], [ -123.478700599999939, 48.832714704000104 ], [ -123.47846208199995, 48.832848690000098 ], [ -123.478402826999982, 48.832902418000032 ], [ -123.478161601999957, 48.833120997000016 ], [ -123.477364430999955, 48.832636025000021 ], [ -123.477130524999936, 48.832493702000164 ], [ -123.47393978300002, 48.830552286000099 ], [ -123.473422686999982, 48.830237622000041 ], [ -123.47314130700002, 48.83006638500008 ], [ -123.47244369799995, 48.829829991000082 ], [ -123.469997389999918, 48.829445012000093 ], [ -123.469311100999988, 48.829075401000082 ], [ -123.465533987999947, 48.827079003000087 ], [ -123.464831182999902, 48.826715391000029 ], [ -123.463835094999965, 48.826388095000027 ], [ -123.462876311999977, 48.825875895000145 ], [ -123.462406218999917, 48.825460996000118 ], [ -123.461165120999908, 48.825063011000083 ], [ -123.460573333999932, 48.824725816000068 ], [ -123.462243399999934, 48.824765498000048 ], [ -123.462269597999949, 48.824281680000112 ], [ -123.466352306999966, 48.82437857900004 ], [ -123.466383193999945, 48.823807228000078 ], [ -123.463977562999958, 48.823750152000123 ], [ -123.464097270999972, 48.821537758000048 ], [ -123.460035055999967, 48.821441255000103 ], [ -123.460088893999981, 48.820447739000024 ], [ -123.45803994399999, 48.82039900500007 ], [ -123.458041224999988, 48.820375386000151 ], [ -123.454961516999958, 48.82030206200006 ], [ -123.45491340599996, 48.821188103000104 ], [ -123.454089038999953, 48.821168460000088 ], [ -123.453696592999933, 48.82052528800007 ], [ -123.452878673999948, 48.819731029000081 ], [ -123.452866897999968, 48.819719590000091 ], [ -123.452844762999931, 48.819340505000092 ], [ -123.452759784999955, 48.817885796 ], [ -123.452589063999952, 48.817527905000105 ], [ -123.453676827999942, 48.817553840000059 ], [ -123.453690059999985, 48.817310256 ], [ -123.452730334999941, 48.817287374000102 ], [ -123.452820222999947, 48.815633193000053 ], [ -123.452765134999936, 48.815631880000076 ], [ -123.452934579999976, 48.812513426000081 ], [ -123.452617711999935, 48.812505868000081 ], [ -123.452577967999972, 48.813237283 ], [ -123.449254782999901, 48.813157975000095 ], [ -123.449249184999985, 48.813260844000162 ], [ -123.450753983, 48.813296769000033 ], [ -123.450643760999952, 48.815323557000099 ], [ -123.449340298, 48.814481554000096 ], [ -123.449066422999934, 48.814304606000064 ], [ -123.449273621999936, 48.813872504000102 ], [ -123.449278527, 48.813707697000012 ], [ -123.449218007999974, 48.813569308000098 ], [ -123.448794593999978, 48.813245154000121 ], [ -123.448115998, 48.812725686000142 ], [ -123.448081785999975, 48.812699502000036 ], [ -123.447953389999896, 48.812460312000063 ], [ -123.4480298, 48.81228101600005 ], [ -123.448425902999972, 48.81174958500003 ], [ -123.448778185999942, 48.811276898000067 ], [ -123.449022987999953, 48.811027707000022 ], [ -123.44936560399999, 48.81085560900005 ], [ -123.449852908999944, 48.810851108000087 ], [ -123.454061291999963, 48.811932002000034 ], [ -123.454952318999986, 48.812508396000062 ], [ -123.45829091, 48.814031586000056 ], [ -123.458852714000017, 48.814382906000027 ], [ -123.459089272000014, 48.814501595000053 ], [ -123.459534220999942, 48.814724844000125 ], [ -123.46110420299999, 48.815512506000083 ], [ -123.46170969399995, 48.815635005000019 ], [ -123.461890614999945, 48.815650108000114 ], [ -123.463911803999977, 48.815818897000028 ], [ -123.464732915999917, 48.816030299000012 ], [ -123.46579370099991, 48.816489895000096 ], [ -123.469479812999964, 48.818548826000089 ], [ -123.469879598999924, 48.818772116000048 ], [ -123.470831182999916, 48.819113710000074 ], [ -123.472021899999959, 48.819360907000046 ], [ -123.472557125999984, 48.81950236900007 ], [ -123.473119207999929, 48.819650890000034 ], [ -123.473524193999964, 48.819803447000034 ], [ -123.473897896999972, 48.819944189000061 ], [ -123.474576900999949, 48.820472990000049 ], [ -123.474904405999951, 48.820833091000047 ], [ -123.475366507999951, 48.821727208000027 ], [ -123.475899803999965, 48.822333700000044 ], [ -123.476365497999936, 48.822755600000079 ], [ -123.476636609999943, 48.823103603000028 ], [ -123.47695229499999, 48.823735491000086 ], [ -123.478437760999981, 48.822816153000147 ], [ -123.47860039699998, 48.822715495000061 ], [ -123.478661440999986, 48.822821739000055 ], [ -123.478711189999899, 48.822908310000081 ], [ -123.478687969999925, 48.823540397000059 ], [ -123.478737710999923, 48.823606440000034 ], [ -123.479176923999944, 48.824190004000037 ], [ -123.479536696999958, 48.824407503000018 ], [ -123.480301011999956, 48.824667104000099 ], [ -123.48112741599999, 48.824785700000113 ], [ -123.481495871999968, 48.824910356000018 ], [ -123.4816485, 48.824962008000092 ], [ -123.482125912999933, 48.825270592000088 ], [ -123.482497822999932, 48.825662739000059 ], [ -123.482978387999964, 48.826169405000016 ], [ -123.483614587, 48.826305999000034 ], [ -123.489642402999934, 48.826295665000018 ], [ -123.490146469999928, 48.826294774000097 ], [ -123.490527932999939, 48.826294137000062 ], [ -123.490977523, 48.826293334000034 ], [ -123.491536202999967, 48.82629235100007 ], [ -123.491617941999976, 48.826292217000102 ], [ -123.49238084299999, 48.82629085100006 ], [ -123.494493937999906, 48.826287096000087 ], [ -123.494364592999901, 48.828706313000048 ], [ -123.494054093, 48.828699032000038 ], [ -123.494028397999926, 48.82917955700001 ], [ -123.495297282999957, 48.829209308000102 ], [ -123.495307517999933, 48.829017805000092 ], [ -123.495587856000014, 48.829024376000113 ], [ -123.495589138999946, 48.829000376000039 ], [ -123.495054998999976, 48.828987856000076 ], [ -123.495199422000013, 48.826285834000061 ], [ -123.497095098, 48.826282418000098 ], [ -123.498022988999978, 48.826280742000066 ], [ -123.498675341999942, 48.826279565000029 ], [ -123.49936200599997, 48.82627829800014 ], [ -123.499647287999949, 48.826439091000069 ], [ -123.499589727999961, 48.826767489000119 ], [ -123.499533993999989, 48.827085299000046 ], [ -123.501268124, 48.828660053000085 ], [ -123.50143269699997, 48.828809512000078 ], [ -123.501350368999965, 48.829506922000029 ], [ -123.501256502999965, 48.830302189000079 ], [ -123.501204174999955, 48.83041630100012 ], [ -123.500667299, 48.830327092000097 ], [ -123.500303404999926, 48.830643987000023 ], [ -123.499834114999928, 48.8309474960001 ], [ -123.499961818999978, 48.83125688800007 ], [ -123.499404297999916, 48.831682694000051 ], [ -123.499341139999942, 48.831702700000037 ], [ -123.499165413999904, 48.831717384000079 ], [ -123.498906615999928, 48.831727482000076 ], [ -123.498606952, 48.831737763000042 ], [ -123.498484387999952, 48.831747301000078 ], [ -123.498253285999965, 48.831802277000094 ], [ -123.498117318999945, 48.831829851000059 ], [ -123.498008408999979, 48.831839314000021 ], [ -123.497776750999932, 48.83184032700008 ], [ -123.497449652999947, 48.831832740000046 ], [ -123.49738142599999, 48.831824031000068 ], [ -123.497095214999888, 48.831816283000151 ], [ -123.496795456999905, 48.831817564000055 ], [ -123.496632055999967, 48.831827271000058 ], [ -123.496332820999967, 48.831882527000097 ], [ -123.49611515399998, 48.831919448000107 ], [ -123.495910771999917, 48.831920322000109 ], [ -123.495719644999951, 48.831885158000084 ], [ -123.495555258999985, 48.831795920000076 ], [ -123.495268045999978, 48.831689200000064 ], [ -123.49517233200001, 48.831653617000079 ], [ -123.494912013999979, 48.831510822000062 ], [ -123.494610845999944, 48.831368172000062 ], [ -123.494392141999953, 48.831297141000064 ], [ -123.494228446999941, 48.83127984 ], [ -123.494051314999965, 48.831280588000062 ], [ -123.49395610699996, 48.831299015000063 ], [ -123.49369812799992, 48.831390076000019 ], [ -123.493616707999976, 48.831426406000062 ], [ -123.49327800699993, 48.831625759000076 ], [ -123.493183072999912, 48.831671165000024 ], [ -123.4929263099999, 48.831888163000023 ], [ -123.49269660499999, 48.832087050000077 ], [ -123.492588673999975, 48.83219545000005 ], [ -123.492534790999926, 48.832258662000093 ], [ -123.492427801999895, 48.832466018000048 ], [ -123.492374619999978, 48.832601193000109 ], [ -123.492322230999946, 48.832817322000047 ], [ -123.492256141999945, 48.833024484000141 ], [ -123.492256809999915, 48.833096460000029 ], [ -123.492271186999943, 48.833168371000028 ], [ -123.492381503999979, 48.833302840000037 ], [ -123.492437511999967, 48.833455539000035 ], [ -123.492451928999969, 48.833536435000028 ], [ -123.492439098999952, 48.833617452000084 ], [ -123.49237299399999, 48.833824650000047 ], [ -123.492346430999987, 48.833896711000129 ], [ -123.492333967999954, 48.834013704000043 ], [ -123.492335113999928, 48.834130671 ], [ -123.492322080999926, 48.834193677000016 ], [ -123.492309693999957, 48.834319699000048 ], [ -123.492257318999961, 48.834535795000093 ], [ -123.492230921999919, 48.834625879000022 ], [ -123.492164148999933, 48.834761103000083 ], [ -123.492124494999956, 48.834887223000052 ], [ -123.492070865999949, 48.834977394000113 ], [ -123.49201801399991, 48.835148557000124 ], [ -123.491991500999973, 48.835220628000044 ], [ -123.491965654999987, 48.835364676000083 ], [ -123.491925725999963, 48.835463815000089 ], [ -123.491890074999944, 48.835522890000064 ], [ -123.491851675999925, 48.835627819000095 ], [ -123.491845695999984, 48.835682398000067 ], [ -123.491853115999945, 48.836435100000116 ], [ -123.493386387999948, 48.838353490000038 ], [ -123.493707732999923, 48.838926875000055 ], [ -123.493852768999901, 48.839185692000065 ], [ -123.494100804999974, 48.839628294000129 ], [ -123.493969936999932, 48.839518649000034 ], [ -123.4937855099999, 48.839364096000047 ], [ -123.493428652999953, 48.83912173900007 ], [ -123.492998441999958, 48.838829504000074 ], [ -123.492353092, 48.838391149000067 ], [ -123.489196629999981, 48.836246950000046 ], [ -123.488028656999944, 48.835453453000085 ], [ -123.487677704999967, 48.835215007000045 ], [ -123.486125798999936, 48.834232304000118 ], [ -123.485852592999962, 48.834036848000032 ] ], [ [ -123.487702216999978, 48.828649870000071 ], [ -123.487722310999985, 48.828275041000033 ], [ -123.486897205999966, 48.828255638000016 ], [ -123.486890776999957, 48.828375497000117 ], [ -123.485926865999929, 48.828352821000045 ], [ -123.48590812399999, 48.828702172000114 ], [ -123.486748836999979, 48.828721951000013 ], [ -123.486749376999967, 48.82871189400003 ], [ -123.487665622999913, 48.828733441000082 ], [ -123.48767014399999, 48.828649116000072 ], [ -123.487702216999978, 48.828649870000071 ] ], [ [ -123.470358446999938, 48.821278804000073 ], [ -123.470381583999981, 48.820850094000022 ], [ -123.469922256999965, 48.820839218000025 ], [ -123.469938257999942, 48.820542801000087 ], [ -123.469593697999969, 48.820534640000098 ], [ -123.469538585999928, 48.8215554760001 ], [ -123.470197286999948, 48.82157107600009 ], [ -123.470213248999983, 48.821275366000044 ], [ -123.470358446999938, 48.821278804000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11020084", "BldgCostT": "7128334", "sL_LossRatio": "0.833009251075364", "sL_AssetLoss": "50913", "sL_BldgLoss": "42411", "sL_StrLoss": "25471", "sL_NStrLoss": "16940", "sL_ContLoss": "8502", "geom_point": "0101000020E610000003B2116709DC5EC0D98E2DF456654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.4383931199999, 48.795361158000041 ], [ -123.438497610999946, 48.793448073000036 ], [ -123.436441063999908, 48.793398712000062 ], [ -123.436611835999912, 48.790274266000047 ], [ -123.434130669999973, 48.790214659000085 ], [ -123.434179409999956, 48.789323715000116 ], [ -123.432400585999986, 48.789280946000112 ], [ -123.433346414999932, 48.78865383800013 ], [ -123.433661611999966, 48.788509094000034 ], [ -123.434406660999969, 48.787788874000107 ], [ -123.435087133999971, 48.787602460000038 ], [ -123.43538614299996, 48.78785297000006 ], [ -123.436513998999914, 48.787914321000081 ], [ -123.437030312000019, 48.788070021000088 ], [ -123.43817551599993, 48.789058229000027 ], [ -123.438426490000012, 48.789367067000057 ], [ -123.438590959999928, 48.789791 ], [ -123.438386, 48.790432269000128 ], [ -123.438448277999967, 48.790527170000132 ], [ -123.438627025999935, 48.790799470000067 ], [ -123.439180544999942, 48.791120971000069 ], [ -123.43995712, 48.791964244000084 ], [ -123.441743595999952, 48.793139915000047 ], [ -123.441938460999936, 48.793431183000067 ], [ -123.441962506, 48.794161761000097 ], [ -123.442337569999935, 48.794565501000065 ], [ -123.442860777999954, 48.794944837000109 ], [ -123.443394384999976, 48.795481034000069 ], [ -123.4383931199999, 48.795361158000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83609000", "BldgCostT": "53450000", "sL_LossRatio": "0.804350638580594", "sL_AssetLoss": "416619.3", "sL_BldgLoss": "335108", "sL_StrLoss": "210632", "sL_NStrLoss": "124476", "sL_ContLoss": "81511.3", "geom_point": "0101000020E61000001F640E590FDC5EC066E95443AC674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.445123654999961, 48.816763941000033 ], [ -123.445146355999967, 48.816347443000026 ], [ -123.44252471599999, 48.816284708000055 ], [ -123.442665077999933, 48.813711921000042 ], [ -123.441281325999938, 48.813678782000054 ], [ -123.441337987999972, 48.812640663000082 ], [ -123.440147402999941, 48.812612135000052 ], [ -123.440082702, 48.813796989000096 ], [ -123.439507043999967, 48.813783191000084 ], [ -123.439401983, 48.81570660000007 ], [ -123.437862103999933, 48.815669675000024 ], [ -123.437583193999927, 48.81539730800008 ], [ -123.43672098899998, 48.814914500000057 ], [ -123.436416804999979, 48.814484406000147 ], [ -123.435966612999948, 48.814342005000086 ], [ -123.435639598999913, 48.814316393000112 ], [ -123.435366594999948, 48.814407490000029 ], [ -123.435054295999961, 48.814273608000093 ], [ -123.43490458399998, 48.814300698000061 ], [ -123.434658504999931, 48.814220884000093 ], [ -123.434300707999938, 48.813763808000033 ], [ -123.434214683999969, 48.813349302000077 ], [ -123.433859405999911, 48.813252485000078 ], [ -123.433695519999915, 48.813225404000015 ], [ -123.433584581999938, 48.813045991000124 ], [ -123.433214896999928, 48.81287649000005 ], [ -123.431264298999949, 48.812424992000075 ], [ -123.430898211999988, 48.812516197000051 ], [ -123.430608317999898, 48.812256995000062 ], [ -123.430525191999976, 48.811987792000082 ], [ -123.430332499999935, 48.811898109000083 ], [ -123.42987001399996, 48.811882390000044 ], [ -123.42951489799999, 48.811721396000053 ], [ -123.429109089999969, 48.812001996000049 ], [ -123.428848, 48.811858206000117 ], [ -123.428507119999892, 48.811815407000061 ], [ -123.428427793999944, 48.812013391000093 ], [ -123.42830368700001, 48.811932201000033 ], [ -123.428330422999977, 48.811742803000122 ], [ -123.428136783999932, 48.81151919200007 ], [ -123.427603713999972, 48.81124289200001 ], [ -123.426924006999968, 48.811398193000038 ], [ -123.426925490999977, 48.811658803000071 ], [ -123.426749386999944, 48.811712894000074 ], [ -123.426338282999978, 48.811382500000015 ], [ -123.426281009999983, 48.811094806 ], [ -123.426186213999969, 48.811049205000067 ], [ -123.425954098999938, 48.811069194000055 ], [ -123.425573796999984, 48.811241512 ], [ -123.425164811999949, 48.811099096000142 ], [ -123.425039392999935, 48.81082850000012 ], [ -123.425363622999924, 48.810539402000089 ], [ -123.425672590999952, 48.809855690000049 ], [ -123.425737096999939, 48.809495411000093 ], [ -123.425597790999959, 48.809207713000021 ], [ -123.424996378999978, 48.808877293000059 ], [ -123.424628501999933, 48.808922907000145 ], [ -123.42462341, 48.808195102000063 ], [ -123.424556279999933, 48.808134005000042 ], [ -123.424485708999924, 48.808069790000111 ], [ -123.42414439199996, 48.807971502000093 ], [ -123.424141408999958, 48.807566991000044 ], [ -123.423988491999978, 48.807287901000024 ], [ -123.422376495000023, 48.80664698900005 ], [ -123.422401913999977, 48.806520197000076 ], [ -123.422578784, 48.806412006000059 ], [ -123.423053788999965, 48.806266700000037 ], [ -123.42333611399998, 48.805761092000047 ], [ -123.423579776999958, 48.805698494000112 ], [ -123.423782308999975, 48.805553187000108 ], [ -123.423657812, 48.805311087000071 ], [ -123.423178020999927, 48.805006299000119 ], [ -123.422346188999981, 48.804757112000111 ], [ -123.42212508599999, 48.804371105000065 ], [ -123.421882177999919, 48.804188613000122 ], [ -123.421926368999948, 48.803384928000114 ], [ -123.427359460999952, 48.80351595800002 ], [ -123.42729064199996, 48.804770216000037 ], [ -123.432447555999929, 48.80489432800011 ], [ -123.432410268999931, 48.805575220000037 ], [ -123.43255199399999, 48.805578627 ], [ -123.432526637999956, 48.806041666000056 ], [ -123.434291559999934, 48.806084083000037 ], [ -123.434268678999914, 48.806502199000064 ], [ -123.437625565999966, 48.806582797000011 ], [ -123.43750988799998, 48.808699339000064 ], [ -123.439682619999942, 48.808751448000073 ], [ -123.439669275999961, 48.808995804000041 ], [ -123.441445654999967, 48.809038374000131 ], [ -123.441474203999917, 48.808515224000089 ], [ -123.446907945999897, 48.808645258000062 ], [ -123.446893957999976, 48.808902133000046 ], [ -123.448949245999941, 48.808951246000014 ], [ -123.449055582999961, 48.806996887 ], [ -123.44903436, 48.806996380000072 ], [ -123.448998014999944, 48.807664389000053 ], [ -123.443564380999945, 48.80753446000007 ], [ -123.443760669999961, 48.803934266000091 ], [ -123.444516643999989, 48.803952359000071 ], [ -123.444531898999941, 48.803955700000067 ], [ -123.44597000899995, 48.804520934000067 ], [ -123.44728378, 48.805071445000095 ], [ -123.44957629000001, 48.806483465000035 ], [ -123.450150621999967, 48.806875421000029 ], [ -123.450864084999935, 48.807362329000043 ], [ -123.45136040899996, 48.807701031000079 ], [ -123.452774799999958, 48.808666197000058 ], [ -123.452852472999908, 48.808719165000092 ], [ -123.453310135999942, 48.809109524000057 ], [ -123.453766277999961, 48.809498502000082 ], [ -123.453913222999915, 48.80962382500006 ], [ -123.454598349999941, 48.810208136000078 ], [ -123.454626245999975, 48.810843753000043 ], [ -123.454632152999949, 48.810978387000041 ], [ -123.45464088599999, 48.811178002000055 ], [ -123.454477986999933, 48.811389904000038 ], [ -123.454061291999963, 48.811932002000034 ], [ -123.449852908999944, 48.810851108000087 ], [ -123.44936560399999, 48.81085560900005 ], [ -123.449022987999953, 48.811027707000022 ], [ -123.448778185999942, 48.811276898000067 ], [ -123.448425902999972, 48.81174958500003 ], [ -123.4480298, 48.81228101600005 ], [ -123.447953389999896, 48.812460312000063 ], [ -123.448081785999975, 48.812699502000036 ], [ -123.448115998, 48.812725686000142 ], [ -123.448794593999978, 48.813245154000121 ], [ -123.449218007999974, 48.813569308000098 ], [ -123.449278527, 48.813707697000012 ], [ -123.449273621999936, 48.813872504000102 ], [ -123.449066422999934, 48.814304606000064 ], [ -123.449340298, 48.814481554000096 ], [ -123.450643760999952, 48.815323557000099 ], [ -123.450558191999932, 48.816896922000112 ], [ -123.445123483999922, 48.816767075000037 ], [ -123.445123654999961, 48.816763941000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83801584", "BldgCostT": "55353334", "sL_LossRatio": "0.76206581158403", "sL_AssetLoss": "564156", "sL_BldgLoss": "429924", "sL_StrLoss": "239790", "sL_NStrLoss": "190134", "sL_ContLoss": "134232", "geom_point": "0101000020E6100000B522BDEA79DE5EC0CF14F892DF6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.49037291499998, 48.843792490000091 ], [ -123.485395669999932, 48.8428919320001 ], [ -123.485031988999964, 48.842779195000041 ], [ -123.484635187999956, 48.842565606000029 ], [ -123.484554012999965, 48.842484401000036 ], [ -123.484757408999926, 48.84248438900007 ], [ -123.484811897999947, 48.842393191000021 ], [ -123.484190911999946, 48.842000423000052 ], [ -123.48380980499999, 48.841759394000078 ], [ -123.482597206999984, 48.841673995000036 ], [ -123.481995311999952, 48.841451788000064 ], [ -123.480931796999982, 48.841411898000096 ], [ -123.48047949799999, 48.841144185000125 ], [ -123.480028326999957, 48.841311334000075 ], [ -123.479622209999931, 48.841461794000061 ], [ -123.479584795999926, 48.841632694000062 ], [ -123.479680117999933, 48.841749496000034 ], [ -123.47986754199999, 48.841847459000057 ], [ -123.480159592999939, 48.842000092000063 ], [ -123.481253199999969, 48.842300708000089 ], [ -123.481272878999945, 48.842317060000013 ], [ -123.48140418899996, 48.842426002000131 ], [ -123.481381739999961, 48.842762010000051 ], [ -123.481125645999967, 48.842755975000046 ], [ -123.481116960999955, 48.842917496000048 ], [ -123.480070728999948, 48.842892834000075 ], [ -123.47997540599998, 48.842778400000057 ], [ -123.47941131, 48.842101300000088 ], [ -123.478207197999922, 48.841683988000064 ], [ -123.477244806999948, 48.840815184000085 ], [ -123.476656690999988, 48.840538897000052 ], [ -123.475824402999976, 48.840397895000073 ], [ -123.474393889999988, 48.840367991000079 ], [ -123.473421990999924, 48.84009311000009 ], [ -123.472708378000021, 48.839537694000107 ], [ -123.472348418999914, 48.838829899000103 ], [ -123.472177590999948, 48.838056508000101 ], [ -123.471542219999932, 48.837240399000066 ], [ -123.471455211999981, 48.836754797000076 ], [ -123.471650908999948, 48.835648186000093 ], [ -123.471589016999971, 48.834919000000113 ], [ -123.471013803999966, 48.834624206000044 ], [ -123.470438010999914, 48.834168393000034 ], [ -123.47021839699994, 48.834034494000086 ], [ -123.470037506999986, 48.833765407000037 ], [ -123.46876838699994, 48.833473400000123 ], [ -123.466984676999957, 48.832286607000114 ], [ -123.467024307999921, 48.831553452000072 ], [ -123.466628222999958, 48.831544062000098 ], [ -123.46660377299996, 48.831996284000084 ], [ -123.466478648999939, 48.831993317000062 ], [ -123.465383619999969, 48.831480898000059 ], [ -123.464727502999963, 48.831285795000042 ], [ -123.464139297999964, 48.830855694000071 ], [ -123.462591098999923, 48.830160686000035 ], [ -123.461717995999962, 48.82990290200005 ], [ -123.460533104000021, 48.829935688000035 ], [ -123.46002810399996, 48.829820307000084 ], [ -123.458589693999926, 48.828998489000099 ], [ -123.457483102999944, 48.828642505000111 ], [ -123.456631393999956, 48.828015799000084 ], [ -123.455934414999959, 48.827820692000095 ], [ -123.454727611999957, 48.826934809000122 ], [ -123.454193995999958, 48.826658587000061 ], [ -123.452945777999986, 48.825799794000062 ], [ -123.452645889999985, 48.825692893000031 ], [ -123.452545500999975, 48.825613113000031 ], [ -123.452624587999964, 48.824158143000098 ], [ -123.45806017299995, 48.82428760700008 ], [ -123.458023376999947, 48.824966010000033 ], [ -123.458402634999985, 48.824975032000076 ], [ -123.458418928999976, 48.824674587000061 ], [ -123.460573333999932, 48.824725816000068 ], [ -123.461165120999908, 48.825063011000083 ], [ -123.462406218999917, 48.825460996000118 ], [ -123.462876311999977, 48.825875895000145 ], [ -123.463835094999965, 48.826388095000027 ], [ -123.464831182999902, 48.826715391000029 ], [ -123.465533987999947, 48.827079003000087 ], [ -123.469311100999988, 48.829075401000082 ], [ -123.469997389999918, 48.829445012000093 ], [ -123.47244369799995, 48.829829991000082 ], [ -123.47314130700002, 48.83006638500008 ], [ -123.473422686999982, 48.830237622000041 ], [ -123.47393978300002, 48.830552286000099 ], [ -123.477130524999936, 48.832493702000164 ], [ -123.477364430999955, 48.832636025000021 ], [ -123.478161601999957, 48.833120997000016 ], [ -123.478402826999982, 48.832902418000032 ], [ -123.47846208199995, 48.832848690000098 ], [ -123.478700599999939, 48.832714704000104 ], [ -123.479146914999944, 48.832842302000088 ], [ -123.480025285999957, 48.833479203000053 ], [ -123.48014899699993, 48.833568916000054 ], [ -123.480329488999956, 48.833627197000041 ], [ -123.480614807999984, 48.833637509000042 ], [ -123.480683234000011, 48.833619928000118 ], [ -123.481804294999989, 48.833332112000051 ], [ -123.48234321399994, 48.833255599000019 ], [ -123.482587412, 48.833240847000091 ], [ -123.482943981999938, 48.833219296000038 ], [ -123.483424807999953, 48.833337911000065 ], [ -123.483805084999972, 48.833326093000082 ], [ -123.483822784999958, 48.833320601000011 ], [ -123.484173306999978, 48.833211299000041 ], [ -123.484441692999894, 48.833027514 ], [ -123.485852592999962, 48.834036848000032 ], [ -123.486125798999936, 48.834232304000118 ], [ -123.487677704999967, 48.835215007000045 ], [ -123.488028656999944, 48.835453453000085 ], [ -123.489196629999981, 48.836246950000046 ], [ -123.492353092, 48.838391149000067 ], [ -123.492998441999958, 48.838829504000074 ], [ -123.493428652999953, 48.83912173900007 ], [ -123.4937855099999, 48.839364096000047 ], [ -123.493969936999932, 48.839518649000034 ], [ -123.494100804999974, 48.839628294000129 ], [ -123.494162534999958, 48.839680498000064 ], [ -123.494263079999968, 48.839765483000136 ], [ -123.494413315999935, 48.839892495000129 ], [ -123.494868986, 48.840405996000129 ], [ -123.495155794999945, 48.840973187000031 ], [ -123.49526563799999, 48.841102898000038 ], [ -123.49737729, 48.843596203000047 ], [ -123.496190002999981, 48.843610644000087 ], [ -123.494591796999899, 48.843630085000022 ], [ -123.494265385999981, 48.84372700100004 ], [ -123.493943303000023, 48.843768084000089 ], [ -123.491886085999937, 48.84349639599999 ], [ -123.491317291000016, 48.843365898000144 ], [ -123.491133903999952, 48.843359687000067 ], [ -123.49100961399995, 48.843386649000102 ], [ -123.49092731599994, 48.843404500000084 ], [ -123.49037291499998, 48.843792490000091 ] ], [ [ -123.48831225, 48.837714368000086 ], [ -123.488385027999982, 48.836356735000059 ], [ -123.487383684999912, 48.836333197000052 ], [ -123.487381445999972, 48.836374961000118 ], [ -123.482002266000023, 48.836248355000109 ], [ -123.482002168999927, 48.836250170000014 ], [ -123.481902624999975, 48.838102391000021 ], [ -123.481703921999951, 48.838097708000127 ], [ -123.481659662999959, 48.838921126000095 ], [ -123.48211756299996, 48.838931915000103 ], [ -123.482105669999953, 48.839153191000051 ], [ -123.48331113299993, 48.839181584000087 ], [ -123.483309992, 48.839202813000043 ], [ -123.485250135999934, 48.83924848100002 ], [ -123.485266737, 48.838939177000093 ], [ -123.485336232999913, 48.837644386000136 ], [ -123.48831225, 48.837714368000086 ] ], [ [ -123.47616882799997, 48.837577497000026 ], [ -123.476193417999966, 48.837121015000051 ], [ -123.47604313799998, 48.83711746600008 ], [ -123.476020323999961, 48.837540988000065 ], [ -123.476061902999959, 48.837541970000061 ], [ -123.476060127, 48.837574930000066 ], [ -123.47616882799997, 48.837577497000026 ] ], [ [ -123.467826754999948, 48.83141313300009 ], [ -123.467828577999953, 48.831379403000057 ], [ -123.467124193999922, 48.831362708000043 ], [ -123.467122369999927, 48.831396438000112 ], [ -123.467826754999948, 48.83141313300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002501", "BldgCostT": "3450001", "sL_LossRatio": "0.837725711565273", "sL_AssetLoss": "29407", "sL_BldgLoss": "24635", "sL_StrLoss": "14720", "sL_NStrLoss": "9915", "sL_ContLoss": "4772", "geom_point": "0101000020E6100000B3691967DBDC5EC03B4BDA9EEA684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.449674079999951, 48.817458351 ], [ -123.452589063999952, 48.817527905000105 ], [ -123.452759784999955, 48.817885796 ], [ -123.452844762999931, 48.819340505000092 ], [ -123.452866897999968, 48.819719590000091 ], [ -123.452878673999948, 48.819731029000081 ], [ -123.453696592999933, 48.82052528800007 ], [ -123.454089038999953, 48.821168460000088 ], [ -123.453836512999942, 48.821162442000123 ], [ -123.453814582999925, 48.82156612900009 ], [ -123.448379323999987, 48.82143644800005 ], [ -123.448575301999966, 48.817836325 ], [ -123.449652115999967, 48.817862039000062 ], [ -123.449674079999951, 48.817458351 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56865162", "BldgCostT": "36745744", "sL_LossRatio": "0.754169528587327", "sL_AssetLoss": "368051.2", "sL_BldgLoss": "277573", "sL_StrLoss": "151817", "sL_NStrLoss": "125756", "sL_ContLoss": "90478.2", "geom_point": "0101000020E6100000F3E45075BEDE5EC05148F8FF6D664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.477165480999986, 48.813259328000115 ], [ -123.477169482999955, 48.813184964000122 ], [ -123.473639759999969, 48.813101536000026 ], [ -123.473701722999976, 48.811951719000056 ], [ -123.472864798999922, 48.811931920000085 ], [ -123.473026679999975, 48.808928713000093 ], [ -123.470164584999978, 48.80886095700005 ], [ -123.470358838999942, 48.805260721000074 ], [ -123.473618920999968, 48.805337894000033 ], [ -123.473727912999962, 48.803314998000097 ], [ -123.475250982999967, 48.803351018000043 ], [ -123.475278878000012, 48.802832935000019 ], [ -123.475868478999985, 48.802846874000082 ], [ -123.47588876499999, 48.802470034000052 ], [ -123.475655472999975, 48.802464519000068 ], [ -123.475684133999962, 48.801932123000022 ], [ -123.4755528, 48.801929019000056 ], [ -123.475589452999927, 48.801248187000013 ], [ -123.474511303999961, 48.801222693000078 ], [ -123.474574953999976, 48.800040850000059 ], [ -123.47403525799993, 48.800028084000125 ], [ -123.474159338, 48.797724501000047 ], [ -123.471561907999956, 48.797663025000084 ], [ -123.471756007999886, 48.794062722000049 ], [ -123.475168063999917, 48.794143467000033 ], [ -123.475231229999935, 48.792970104000048 ], [ -123.480663263999986, 48.793098425000089 ], [ -123.480602148999949, 48.794236141000084 ], [ -123.480713774999927, 48.794238775000103 ], [ -123.480720749999989, 48.79410894199999 ], [ -123.483035106999964, 48.794163528000063 ], [ -123.483038456999964, 48.794101099000116 ], [ -123.483375533999975, 48.794109045000035 ], [ -123.483403572999975, 48.793586506000068 ], [ -123.488835700999957, 48.793714412000043 ], [ -123.488826042999918, 48.793894765000069 ], [ -123.490374601999932, 48.793931177000132 ], [ -123.490424827, 48.792992576000053 ], [ -123.491276685999935, 48.793012597000079 ], [ -123.491308222999947, 48.79242299700006 ], [ -123.494400742999957, 48.792495620000111 ], [ -123.494414709999958, 48.792234172000079 ], [ -123.494653267999979, 48.792239771000041 ], [ -123.494705353, 48.791264676000054 ], [ -123.494800995999967, 48.79126692100008 ], [ -123.494913260999951, 48.789164975000105 ], [ -123.498808067999974, 48.789256300000069 ], [ -123.498821714999934, 48.789000371000064 ], [ -123.499439305999942, 48.789014839000082 ], [ -123.499362101000017, 48.789172483000101 ], [ -123.498864488999914, 48.789947863000037 ], [ -123.498057603999953, 48.791205001000051 ], [ -123.497599773999966, 48.791918278000054 ], [ -123.496707604999955, 48.793308207000152 ], [ -123.496216184, 48.793980702000049 ], [ -123.495943181999962, 48.794256397000041 ], [ -123.495309501999955, 48.794740789000109 ], [ -123.494894186999943, 48.794954499000013 ], [ -123.493451692999955, 48.795229792000065 ], [ -123.492996518999959, 48.795351607000065 ], [ -123.492596986999942, 48.795549507000089 ], [ -123.49060192799999, 48.796749004000034 ], [ -123.49016689699998, 48.796873886000036 ], [ -123.489140708999955, 48.796890395000112 ], [ -123.489094047999941, 48.796895323000108 ], [ -123.4861593099999, 48.797205888000086 ], [ -123.485310179999885, 48.797165196000023 ], [ -123.484509598, 48.796956213000108 ], [ -123.48347009299999, 48.796892004000128 ], [ -123.482882089999947, 48.796925990000098 ], [ -123.482668874999945, 48.796953018000089 ], [ -123.482343564999894, 48.796994227 ], [ -123.482300303999949, 48.796999685000088 ], [ -123.481633603999953, 48.797131699000055 ], [ -123.481051596999947, 48.797284699000052 ], [ -123.480605590000025, 48.797485102000088 ], [ -123.480337515999977, 48.797717591000058 ], [ -123.480091916999953, 48.798137206000042 ], [ -123.48005125399996, 48.798451869000054 ], [ -123.47999650899996, 48.798875697000085 ], [ -123.479932415999983, 48.799998268000103 ], [ -123.479924740999934, 48.800133381000087 ], [ -123.479833087999978, 48.801738592000085 ], [ -123.479830490999959, 48.801806988000088 ], [ -123.479824041999933, 48.801978053000077 ], [ -123.479786487999931, 48.802967348000031 ], [ -123.479783411999961, 48.803048242000052 ], [ -123.479718798999926, 48.804751403000118 ], [ -123.479704586, 48.805127156000076 ], [ -123.47964458, 48.806713399000081 ], [ -123.479464183999966, 48.807197849000048 ], [ -123.479165117999969, 48.808000818000082 ], [ -123.4791014689999, 48.808080108000084 ], [ -123.478857840000032, 48.808419679000082 ], [ -123.478740849999937, 48.808571703000027 ], [ -123.478609235999912, 48.808742749000032 ], [ -123.478576088999986, 48.808802055000051 ], [ -123.478481024999979, 48.808976742000048 ], [ -123.478433275000015, 48.809232468000033 ], [ -123.478439610999942, 48.809493964000055 ], [ -123.478515717, 48.809783503000098 ], [ -123.478529931999944, 48.809837642000112 ], [ -123.478890232999973, 48.810725722000029 ], [ -123.479038695999961, 48.811396604000095 ], [ -123.479092702999935, 48.811640704000069 ], [ -123.479202239999921, 48.811934862000058 ], [ -123.479265062999971, 48.812103488000041 ], [ -123.479695323999962, 48.812866604000128 ], [ -123.480142791999981, 48.813260599000081 ], [ -123.480251945999967, 48.813332185000043 ], [ -123.477165480999986, 48.813259328000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26198417", "BldgCostT": "17386667", "sL_LossRatio": "0.768555360026393", "sL_AssetLoss": "135188.7", "sL_BldgLoss": "103900", "sL_StrLoss": "58356", "sL_NStrLoss": "45544", "sL_ContLoss": "31288.7", "geom_point": "0101000020E6100000CC03A27172DC5EC0E7021B00BF644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.438627025999935, 48.790799470000067 ], [ -123.438448277999967, 48.790527170000132 ], [ -123.438386, 48.790432269000128 ], [ -123.438590959999928, 48.789791 ], [ -123.438426490000012, 48.789367067000057 ], [ -123.43817551599993, 48.789058229000027 ], [ -123.437030312000019, 48.788070021000088 ], [ -123.436513998999914, 48.787914321000081 ], [ -123.43538614299996, 48.78785297000006 ], [ -123.435087133999971, 48.787602460000038 ], [ -123.434937502999929, 48.78747987700006 ], [ -123.436838724999987, 48.786450356000074 ], [ -123.437355129999986, 48.7860319730001 ], [ -123.437397470999969, 48.786011185000049 ], [ -123.437728126999929, 48.785848946000037 ], [ -123.437934592999952, 48.785796193000081 ], [ -123.438166584999962, 48.785736902000096 ], [ -123.438429680999946, 48.785735027000094 ], [ -123.438737092999972, 48.785732880000111 ], [ -123.440458298999957, 48.785720688000076 ], [ -123.442292700999957, 48.785782100000063 ], [ -123.442731405999965, 48.785796795000074 ], [ -123.443148929999921, 48.785743718000028 ], [ -123.443598777999924, 48.78547239300007 ], [ -123.443970944999975, 48.785129812000037 ], [ -123.444221850999924, 48.784796419000088 ], [ -123.445226946999981, 48.783461016000061 ], [ -123.44520410599992, 48.78320631600009 ], [ -123.444934143999944, 48.782796099000095 ], [ -123.444930977999931, 48.782530152000071 ], [ -123.445051094999968, 48.782238960000072 ], [ -123.445115784, 48.782082146000072 ], [ -123.445317401999887, 48.781874266000109 ], [ -123.446017237999968, 48.781666196000124 ], [ -123.446243224999961, 48.781599011 ], [ -123.446482397999944, 48.781434904000072 ], [ -123.447045347999961, 48.781048601000123 ], [ -123.447550632999963, 48.780541368000094 ], [ -123.44758542799994, 48.780506428000102 ], [ -123.44933249199994, 48.77875258500012 ], [ -123.451072900999961, 48.778794164 ], [ -123.450877278999968, 48.782394518000054 ], [ -123.450180836999962, 48.782377884000041 ], [ -123.450130494999939, 48.783304060000084 ], [ -123.451428759999928, 48.783335067000024 ], [ -123.45123314599995, 48.78693539600004 ], [ -123.445964531999977, 48.786809468000023 ], [ -123.445895397999919, 48.78807912300006 ], [ -123.445848434999959, 48.788078 ], [ -123.445755886999919, 48.789777522000065 ], [ -123.444069182999925, 48.789737151000097 ], [ -123.444004287999945, 48.790928019000077 ], [ -123.446027118999936, 48.79097643100004 ], [ -123.44583105699995, 48.794576705000097 ], [ -123.443877729999969, 48.794529957000123 ], [ -123.443825328999978, 48.79549135200007 ], [ -123.443394384999976, 48.795481034000069 ], [ -123.442860777999954, 48.794944837000109 ], [ -123.442337569999935, 48.794565501000065 ], [ -123.441962506, 48.794161761000097 ], [ -123.441938460999936, 48.793431183000067 ], [ -123.441743595999952, 48.793139915000047 ], [ -123.43995712, 48.791964244000084 ], [ -123.439180544999942, 48.791120971000069 ], [ -123.438627025999935, 48.790799470000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61194911", "BldgCostT": "39070743", "sL_LossRatio": "0.759566828131196", "sL_AssetLoss": "456447", "sL_BldgLoss": "346702", "sL_StrLoss": "169195", "sL_NStrLoss": "177507", "sL_ContLoss": "109745", "geom_point": "0101000020E61000002BD16948E2DD5EC07B4F50502B684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.469479812999964, 48.818548826000089 ], [ -123.46579370099991, 48.816489895000096 ], [ -123.464732915999917, 48.816030299000012 ], [ -123.463911803999977, 48.815818897000028 ], [ -123.461890614999945, 48.815650108000114 ], [ -123.46170969399995, 48.815635005000019 ], [ -123.46110420299999, 48.815512506000083 ], [ -123.459534220999942, 48.814724844000125 ], [ -123.459089272000014, 48.814501595000053 ], [ -123.458852714000017, 48.814382906000027 ], [ -123.45829091, 48.814031586000056 ], [ -123.454952318999986, 48.812508396000062 ], [ -123.454061291999963, 48.811932002000034 ], [ -123.454477986999933, 48.811389904000038 ], [ -123.45464088599999, 48.811178002000055 ], [ -123.454632152999949, 48.810978387000041 ], [ -123.454626245999975, 48.810843753000043 ], [ -123.454598349999941, 48.810208136000078 ], [ -123.453913222999915, 48.80962382500006 ], [ -123.453766277999961, 48.809498502000082 ], [ -123.453310135999942, 48.809109524000057 ], [ -123.452852472999908, 48.808719165000092 ], [ -123.452774799999958, 48.808666197000058 ], [ -123.45136040899996, 48.807701031000079 ], [ -123.450864084999935, 48.807362329000043 ], [ -123.450150621999967, 48.806875421000029 ], [ -123.44957629000001, 48.806483465000035 ], [ -123.44728378, 48.805071445000095 ], [ -123.44597000899995, 48.804520934000067 ], [ -123.444531898999941, 48.803955700000067 ], [ -123.444516643999989, 48.803952359000071 ], [ -123.446623110999923, 48.804002747000077 ], [ -123.446659487999909, 48.803334735000078 ], [ -123.452092643999919, 48.803464507000051 ], [ -123.45199152899994, 48.805325244000109 ], [ -123.45498965299997, 48.805396736000027 ], [ -123.454970480000014, 48.805749943000109 ], [ -123.455297161999979, 48.80575772800011 ], [ -123.455249931999944, 48.80662793400009 ], [ -123.455664901999924, 48.806637821000059 ], [ -123.455647877999979, 48.806951526000063 ], [ -123.456234800999951, 48.806965507000086 ], [ -123.456217289999984, 48.807288237000087 ], [ -123.456719402999951, 48.807300195000025 ], [ -123.456694276999883, 48.807763385000015 ], [ -123.456908723999931, 48.807768491000061 ], [ -123.45677453899998, 48.810242184000046 ], [ -123.458030068, 48.8102720730001 ], [ -123.458041960999935, 48.810052734000116 ], [ -123.459206619999918, 48.810080447000111 ], [ -123.459212017999945, 48.80998086200006 ], [ -123.46166966199992, 48.81003929900006 ], [ -123.461690537999957, 48.809653722000107 ], [ -123.467124467999923, 48.809782728000108 ], [ -123.467108852999957, 48.810071749000045 ], [ -123.468966218999981, 48.810115780000039 ], [ -123.468927607, 48.810830976000013 ], [ -123.469526542000011, 48.810845168000128 ], [ -123.469497282999953, 48.811387220000029 ], [ -123.470127651999974, 48.811402153000103 ], [ -123.470110052, 48.811728293000101 ], [ -123.470660953999968, 48.811741340000054 ], [ -123.470634068999914, 48.812239646000066 ], [ -123.471536752999953, 48.812261018000079 ], [ -123.471514516999918, 48.812673274000112 ], [ -123.471934261999962, 48.81268320900007 ], [ -123.471865263999959, 48.81396264500011 ], [ -123.471740099, 48.81628340500005 ], [ -123.471442339999925, 48.816276357000099 ], [ -123.471441070999958, 48.816299891000021 ], [ -123.471700287999923, 48.816306026000063 ], [ -123.47168375499993, 48.816612581000086 ], [ -123.475275480000022, 48.81669753200002 ], [ -123.47523978299995, 48.817360263000097 ], [ -123.475551408999962, 48.817367628000042 ], [ -123.475501547999954, 48.818293466000064 ], [ -123.475741021999923, 48.818299126000056 ], [ -123.475781035999972, 48.817556091000043 ], [ -123.476600860999937, 48.817575461000033 ], [ -123.476680581999958, 48.816094509000031 ], [ -123.477307185999976, 48.816109309000097 ], [ -123.477396487999926, 48.816111418000077 ], [ -123.477532086999972, 48.813591522000145 ], [ -123.480763612999979, 48.813667788000053 ], [ -123.48100219399997, 48.813824273000087 ], [ -123.481583105999945, 48.814205280000088 ], [ -123.48160660299996, 48.814220696000064 ], [ -123.482266683999924, 48.815101395000084 ], [ -123.48238001299994, 48.815727706000089 ], [ -123.482495813999918, 48.816104396000092 ], [ -123.482758089999919, 48.816665697000111 ], [ -123.483121217999923, 48.817048300000117 ], [ -123.483330394999939, 48.817409213000083 ], [ -123.483448912999947, 48.818041009000098 ], [ -123.483260419999979, 48.818911695000125 ], [ -123.483219094999924, 48.819102600000058 ], [ -123.482519982999975, 48.820264804000104 ], [ -123.48204883399994, 48.820540983000058 ], [ -123.48147656499998, 48.820876395 ], [ -123.48135489099991, 48.820947699000079 ], [ -123.480650529999949, 48.821360534000057 ], [ -123.480378469999948, 48.821519994000056 ], [ -123.479942200999972, 48.821775715000044 ], [ -123.479390415999902, 48.822162155000058 ], [ -123.47860039699998, 48.822715495000061 ], [ -123.478437760999981, 48.822816153000147 ], [ -123.47695229499999, 48.823735491000086 ], [ -123.476636609999943, 48.823103603000028 ], [ -123.476365497999936, 48.822755600000079 ], [ -123.475899803999965, 48.822333700000044 ], [ -123.475366507999951, 48.821727208000027 ], [ -123.474904405999951, 48.820833091000047 ], [ -123.474576900999949, 48.820472990000049 ], [ -123.473897896999972, 48.819944189000061 ], [ -123.473524193999964, 48.819803447000034 ], [ -123.473119207999929, 48.819650890000034 ], [ -123.472557125999984, 48.81950236900007 ], [ -123.472021899999959, 48.819360907000046 ], [ -123.470831182999916, 48.819113710000074 ], [ -123.469879598999924, 48.818772116000048 ], [ -123.469479812999964, 48.818548826000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51588999", "BldgCostT": "32949999", "sL_LossRatio": "0.783430065533184", "sL_AssetLoss": "183616.9", "sL_BldgLoss": "143851", "sL_StrLoss": "85599", "sL_NStrLoss": "58252", "sL_ContLoss": "39765.9", "geom_point": "0101000020E6100000948F6AF93DDE5EC0BEF482918F634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.491018131999951, 48.78759116600002 ], [ -123.491037175, 48.787235142000085 ], [ -123.49092325, 48.787232465000073 ], [ -123.490953769999976, 48.786661879000121 ], [ -123.489441630999963, 48.786626327000072 ], [ -123.48954538299999, 48.784687725000033 ], [ -123.489141438, 48.784678224000018 ], [ -123.489150285999955, 48.784512923000108 ], [ -123.486440749999986, 48.784449154000121 ], [ -123.486517091999929, 48.783024366000099 ], [ -123.482761405999895, 48.78293586100007 ], [ -123.482837695999962, 48.781514057000059 ], [ -123.479775085, 48.781441786000066 ], [ -123.479820351999962, 48.78059914500011 ], [ -123.477923569999959, 48.780554341000034 ], [ -123.477966442999929, 48.779756823000078 ], [ -123.475998047999951, 48.779710292000054 ], [ -123.476053421999936, 48.778680993000172 ], [ -123.473379516999927, 48.778617726000029 ], [ -123.473429586999913, 48.777687987000014 ], [ -123.470819381999945, 48.777626162000033 ], [ -123.470883704999935, 48.776432914000061 ], [ -123.470669328999989, 48.77642783400006 ], [ -123.470659041999951, 48.776618651000057 ], [ -123.465228942999957, 48.776489817 ], [ -123.46529338500001, 48.77529696800007 ], [ -123.464376983999983, 48.775275199000085 ], [ -123.464434635999979, 48.774208378000047 ], [ -123.464290679999962, 48.774204957000066 ], [ -123.464258386999973, 48.77480251300009 ], [ -123.458828513999904, 48.774673355000068 ], [ -123.458849483999956, 48.774286176000061 ], [ -123.458472025999953, 48.774277187000045 ], [ -123.45847043, 48.774306656000086 ], [ -123.455837458999923, 48.774243918000082 ], [ -123.455774183999907, 48.775410820000054 ], [ -123.455514098999984, 48.775404618000067 ], [ -123.455478407999962, 48.776062724 ], [ -123.455413083999986, 48.776061167000094 ], [ -123.455354663999984, 48.777138324000099 ], [ -123.452252126999966, 48.777064304000113 ], [ -123.452225062999972, 48.77756270000004 ], [ -123.45051372399999, 48.777521832000012 ], [ -123.450843109999965, 48.777178331000101 ], [ -123.451465501999976, 48.775854827000067 ], [ -123.451453169999965, 48.775736385000158 ], [ -123.451434219999939, 48.775554855000053 ], [ -123.450081395999987, 48.7743112570001 ], [ -123.449417403999945, 48.772925393000051 ], [ -123.449359929999957, 48.772805488000124 ], [ -123.449285482999983, 48.772650116000065 ], [ -123.449313284999945, 48.772013597000075 ], [ -123.449514820999951, 48.771818363000072 ], [ -123.449693923999945, 48.77164485300009 ], [ -123.449877088999969, 48.771467408000021 ], [ -123.450177384999932, 48.771293408000055 ], [ -123.4511516099999, 48.771074202000094 ], [ -123.453049589999964, 48.77116280400007 ], [ -123.453731526999917, 48.771273304000054 ], [ -123.454197396999973, 48.771348791000037 ], [ -123.455613004999918, 48.77176198700009 ], [ -123.455729249999962, 48.771784434000061 ], [ -123.456305694999955, 48.771895689000097 ], [ -123.456422053999944, 48.771909977000071 ], [ -123.456516554999936, 48.771921583000115 ], [ -123.457207607999976, 48.772006408000074 ], [ -123.457742396999947, 48.772020083000086 ], [ -123.458387299999927, 48.771982190000074 ], [ -123.458704420999965, 48.772023998000122 ], [ -123.459169807999942, 48.772264987000071 ], [ -123.459586494999925, 48.772425406000082 ], [ -123.460092193999927, 48.772550108000033 ], [ -123.460692404, 48.772634699000065 ], [ -123.461246907999964, 48.772559481 ], [ -123.461610163000032, 48.772360188000114 ], [ -123.461667191999965, 48.772328893000079 ], [ -123.461746048999899, 48.772229250000088 ], [ -123.461841428999946, 48.772108765000034 ], [ -123.461875797999937, 48.772065295000054 ], [ -123.462070517999919, 48.771680592000102 ], [ -123.462048003999925, 48.771393406000115 ], [ -123.468065688999957, 48.772635899000107 ], [ -123.468271205999912, 48.772697033000014 ], [ -123.471516993999941, 48.773662296000055 ], [ -123.473183277, 48.774361886000065 ], [ -123.474554101999956, 48.774937413000025 ], [ -123.475256089999945, 48.775935401000034 ], [ -123.476413900999944, 48.776700009000074 ], [ -123.476931885999974, 48.776873609000106 ], [ -123.47770019099994, 48.77696930400004 ], [ -123.478279698999984, 48.777086592000089 ], [ -123.478812112999961, 48.777254812000152 ], [ -123.479959960999963, 48.777617437000089 ], [ -123.481436799999969, 48.778084001000131 ], [ -123.48233198599992, 48.778550399000103 ], [ -123.482962032999964, 48.778864468000059 ], [ -123.486168150999958, 48.780462606000071 ], [ -123.486759313999968, 48.780757263000034 ], [ -123.486846668999988, 48.780800793000026 ], [ -123.487430094999979, 48.781024595000126 ], [ -123.488813990999972, 48.781253593000031 ], [ -123.489141492999963, 48.78135680500003 ], [ -123.489820920999989, 48.781678275000111 ], [ -123.491256198999963, 48.782357391000062 ], [ -123.491813719, 48.782685894000061 ], [ -123.493531016999952, 48.783969430000063 ], [ -123.494689570999967, 48.784835299000079 ], [ -123.495631986999967, 48.785441395000106 ], [ -123.496287512999942, 48.785767700000108 ], [ -123.496978902999942, 48.786009200000095 ], [ -123.498140679999949, 48.786453694000031 ], [ -123.498413231999976, 48.786606825000078 ], [ -123.49651130899997, 48.786562237000027 ], [ -123.496449586999972, 48.787718685000073 ], [ -123.491018131999951, 48.78759116600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205271087", "BldgCostT": "137759293", "sL_LossRatio": "0.791796667413496", "sL_AssetLoss": "1080122", "sL_BldgLoss": "855237", "sL_StrLoss": "447486", "sL_NStrLoss": "407751", "sL_ContLoss": "224885", "geom_point": "0101000020E610000081711530E6DA5EC0248D0BE633644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.412341144999985, 48.793895375000034 ], [ -123.412432685999974, 48.792236216000042 ], [ -123.409380838999965, 48.79216220200005 ], [ -123.409409496999928, 48.791643361000055 ], [ -123.40650683599992, 48.791572885000036 ], [ -123.406479253999919, 48.792071677000088 ], [ -123.401047544999955, 48.791939583000065 ], [ -123.401132410999978, 48.790408031000077 ], [ -123.40092923099999, 48.79040308400004 ], [ -123.401128720999964, 48.786802869000148 ], [ -123.40203187399996, 48.78682485400001 ], [ -123.402086872999988, 48.785831829000124 ], [ -123.39799740399998, 48.785732220000078 ], [ -123.39819709799994, 48.782131983000099 ], [ -123.39967546799997, 48.782168011000074 ], [ -123.399695455999947, 48.781807419000117 ], [ -123.401010543999945, 48.781839451000018 ], [ -123.401051540999944, 48.781099450000049 ], [ -123.402339384999976, 48.781130802000099 ], [ -123.402477522999931, 48.778635977000086 ], [ -123.403541324999978, 48.778661864000107 ], [ -123.403571845999977, 48.778110389000041 ], [ -123.401206882999986, 48.778052826000085 ], [ -123.401273548999924, 48.776849273000018 ], [ -123.401177253999919, 48.776846929000037 ], [ -123.40137666599999, 48.773246634000046 ], [ -123.40680621199999, 48.773378715000014 ], [ -123.406756198000011, 48.774283653000104 ], [ -123.40850240799989, 48.77432607400003 ], [ -123.408415294999884, 48.77590320400008 ], [ -123.409130180999952, 48.77592056100012 ], [ -123.408931352999943, 48.779520855000044 ], [ -123.407867526999937, 48.779495023000095 ], [ -123.407839027999955, 48.780010813000096 ], [ -123.408933033999958, 48.78003737800006 ], [ -123.408804552999982, 48.78236353800007 ], [ -123.411832669999953, 48.782437009000084 ], [ -123.41166437699998, 48.785487152000023 ], [ -123.412298957999951, 48.785502537000099 ], [ -123.41234219099999, 48.784718838000067 ], [ -123.412758038999954, 48.784728918000084 ], [ -123.412878391, 48.782546744000044 ], [ -123.416675493999946, 48.782638714 ], [ -123.416700558999977, 48.782183537000087 ], [ -123.417306168999986, 48.782198193000099 ], [ -123.417343971999912, 48.781511551000087 ], [ -123.422774519999905, 48.781642818000101 ], [ -123.422721363999983, 48.782610376000022 ], [ -123.422957205000031, 48.782616070000095 ], [ -123.423107731999934, 48.779875787000037 ], [ -123.423633950999971, 48.779888491000094 ], [ -123.423661237999966, 48.779391599000114 ], [ -123.427082307999953, 48.779474127000093 ], [ -123.427094008999973, 48.779260782000073 ], [ -123.427454717999979, 48.779269478000103 ], [ -123.427468178999959, 48.779023969000058 ], [ -123.423287045999928, 48.778923105000068 ], [ -123.423338820999945, 48.777980399000072 ], [ -123.420181594, 48.777904127000063 ], [ -123.420224126999926, 48.777130614000079 ], [ -123.41979412699996, 48.777120218000093 ], [ -123.419992110999928, 48.773519891000056 ], [ -123.422360646999934, 48.773577129 ], [ -123.422441992999921, 48.772096347000065 ], [ -123.422740739999966, 48.772103563 ], [ -123.422795433999937, 48.771107753000116 ], [ -123.424840264999929, 48.771157120000098 ], [ -123.42484525399999, 48.771066203000053 ], [ -123.430274614999931, 48.771197091000069 ], [ -123.43027167799994, 48.771250722000033 ], [ -123.434471568999982, 48.771351781000078 ], [ -123.434366021999921, 48.773282146000099 ], [ -123.434471686000023, 48.773284687000036 ], [ -123.434468324999912, 48.773346141000097 ], [ -123.436220026999976, 48.773388240000074 ], [ -123.436145769999953, 48.774747223000098 ], [ -123.436641593999965, 48.774759133000096 ], [ -123.436602490999945, 48.775474867000071 ], [ -123.437462206999939, 48.77549551400007 ], [ -123.437265552999975, 48.779095862000119 ], [ -123.436200032999977, 48.779070272000055 ], [ -123.436113894999906, 48.780646486000087 ], [ -123.434765276999926, 48.780614081000124 ], [ -123.434708094999962, 48.781659817000055 ], [ -123.432612957999964, 48.7816094410001 ], [ -123.432508810999963, 48.783512365000064 ], [ -123.431491077999979, 48.783487879000035 ], [ -123.431400470999947, 48.785142641000029 ], [ -123.431575, 48.785146841000056 ], [ -123.431627854999974, 48.784181508000039 ], [ -123.435257511999978, 48.784268784000091 ], [ -123.435322467999981, 48.783080696000077 ], [ -123.436108476999962, 48.783099579000094 ], [ -123.436127254, 48.782756014000086 ], [ -123.437302052999925, 48.782784228000054 ], [ -123.437309914, 48.782640343000075 ], [ -123.440783874999951, 48.782723695000058 ], [ -123.440833019999957, 48.781822827000092 ], [ -123.443005169999935, 48.781874886000068 ], [ -123.443067790999919, 48.780725979000032 ], [ -123.443432437999931, 48.780734714000104 ], [ -123.443454799000023, 48.780324387000036 ], [ -123.444077991999933, 48.780339312000102 ], [ -123.444094188999898, 48.780042002000066 ], [ -123.444869270999945, 48.780060560000102 ], [ -123.444885573999954, 48.77976122000009 ], [ -123.445581974999968, 48.779777890000062 ], [ -123.445642604999975, 48.778664336000112 ], [ -123.44933249199994, 48.77875258500012 ], [ -123.44758542799994, 48.780506428000102 ], [ -123.447550632999963, 48.780541368000094 ], [ -123.447045347999961, 48.781048601000123 ], [ -123.446482397999944, 48.781434904000072 ], [ -123.446243224999961, 48.781599011 ], [ -123.446017237999968, 48.781666196000124 ], [ -123.445317401999887, 48.781874266000109 ], [ -123.445115784, 48.782082146000072 ], [ -123.445051094999968, 48.782238960000072 ], [ -123.444930977999931, 48.782530152000071 ], [ -123.444934143999944, 48.782796099000095 ], [ -123.44520410599992, 48.78320631600009 ], [ -123.445226946999981, 48.783461016000061 ], [ -123.444221850999924, 48.784796419000088 ], [ -123.443970944999975, 48.785129812000037 ], [ -123.443598777999924, 48.78547239300007 ], [ -123.443148929999921, 48.785743718000028 ], [ -123.442731405999965, 48.785796795000074 ], [ -123.442292700999957, 48.785782100000063 ], [ -123.440458298999957, 48.785720688000076 ], [ -123.438737092999972, 48.785732880000111 ], [ -123.438429680999946, 48.785735027000094 ], [ -123.438166584999962, 48.785736902000096 ], [ -123.437934592999952, 48.785796193000081 ], [ -123.437728126999929, 48.785848946000037 ], [ -123.437397470999969, 48.786011185000049 ], [ -123.437355129999986, 48.7860319730001 ], [ -123.436838724999987, 48.786450356000074 ], [ -123.434937502999929, 48.78747987700006 ], [ -123.435087133999971, 48.787602460000038 ], [ -123.434406660999969, 48.787788874000107 ], [ -123.433661611999966, 48.788509094000034 ], [ -123.433346414999932, 48.78865383800013 ], [ -123.432400585999986, 48.789280946000112 ], [ -123.431047013999915, 48.78924838100005 ], [ -123.431074866999921, 48.788739832000047 ], [ -123.428784384999943, 48.788684687000092 ], [ -123.428772563999956, 48.788900340000041 ], [ -123.428424375999938, 48.788891953000075 ], [ -123.428404966999977, 48.78924594900009 ], [ -123.428377959999978, 48.789245298000047 ], [ -123.428349094999959, 48.789771748000128 ], [ -123.427242821, 48.789745093000093 ], [ -123.427208982999943, 48.790361974000113 ], [ -123.425629346999941, 48.790323894000018 ], [ -123.425616529999928, 48.790557413000059 ], [ -123.421628850999952, 48.790461175000146 ], [ -123.421550042999939, 48.791894708 ], [ -123.417895366999986, 48.791806377000043 ], [ -123.417773112999924, 48.794026894000076 ], [ -123.412341144999985, 48.793895375000034 ] ], [ [ -123.40738297899999, 48.787989114 ], [ -123.407428185999947, 48.787171211000029 ], [ -123.406547954999937, 48.787149829000064 ], [ -123.406502730999961, 48.787967730000048 ], [ -123.40738297899999, 48.787989114 ] ], [ [ -123.408812895999986, 48.78645293800011 ], [ -123.40883960299999, 48.785969472000062 ], [ -123.408611748999959, 48.785963940000052 ], [ -123.40858504000002, 48.786447406000036 ], [ -123.408812895999986, 48.78645293800011 ] ], [ [ -123.426028063999965, 48.783944419000065 ], [ -123.426049603999957, 48.783551841000055 ], [ -123.425264186999925, 48.783532899000122 ], [ -123.425234608999986, 48.784071789000095 ], [ -123.425283388999958, 48.784072965000135 ], [ -123.425291419999937, 48.783926653 ], [ -123.426028063999965, 48.783944419000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38167783", "BldgCostT": "25010546", "sL_LossRatio": "0.795938915925491", "sL_AssetLoss": "150166.8", "sL_BldgLoss": "119523.6", "sL_StrLoss": "75801.6", "sL_NStrLoss": "43722", "sL_ContLoss": "30643.2", "geom_point": "0101000020E6100000AFBAD4294BDC5EC0CBAD5AE37D624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.444461694, 48.777853667000045 ], [ -123.444569569999913, 48.775873114000035 ], [ -123.443380873999928, 48.775844643000013 ], [ -123.443525215999941, 48.773195567000101 ], [ -123.443474882999965, 48.773194361000087 ], [ -123.443441304999951, 48.773810626000035 ], [ -123.438011604999971, 48.773680408000068 ], [ -123.438074956999969, 48.772520141000072 ], [ -123.437123242999974, 48.772497288000039 ], [ -123.437248601999912, 48.770202044 ], [ -123.434951003999956, 48.770146837 ], [ -123.434965953999921, 48.769873333000113 ], [ -123.433767078999907, 48.769844507000116 ], [ -123.433963960999947, 48.766244112000024 ], [ -123.435759441999934, 48.766287278000028 ], [ -123.435771293999949, 48.766070358000078 ], [ -123.435363664999912, 48.76606056 ], [ -123.43549113899995, 48.763727835000068 ], [ -123.43514279599998, 48.763719461000107 ], [ -123.435164972999985, 48.763313662000023 ], [ -123.434873509999946, 48.763306655000051 ], [ -123.43488612, 48.763075954000044 ], [ -123.434411608999952, 48.76306454300002 ], [ -123.434478827999939, 48.761834857000032 ], [ -123.431769787999883, 48.761769677000046 ], [ -123.431966789999976, 48.758169238000065 ], [ -123.432552411999922, 48.758183334000151 ], [ -123.432570182999925, 48.757858452000065 ], [ -123.43337518, 48.757877824000019 ], [ -123.433726020999984, 48.7582509040001 ], [ -123.433685584999935, 48.758313604000108 ], [ -123.433194297999947, 48.758243799000127 ], [ -123.433031501999906, 48.758316386000054 ], [ -123.433419114999964, 48.759034193000097 ], [ -123.433787883999955, 48.759267805000107 ], [ -123.434837176999949, 48.75938889500005 ], [ -123.435152306999939, 48.759505682000039 ], [ -123.435823703999958, 48.760061094000029 ], [ -123.436192506999973, 48.760212082000109 ], [ -123.4365379799999, 48.760804500000113 ], [ -123.437261219, 48.761097902000103 ], [ -123.437945397999925, 48.761545086000098 ], [ -123.438042501999945, 48.761680387000084 ], [ -123.438046605999929, 48.762201707 ], [ -123.438499015999952, 48.762668799000075 ], [ -123.439127100999926, 48.762872503000096 ], [ -123.440176703999938, 48.763030597000117 ], [ -123.440407997999955, 48.763172994000058 ], [ -123.441123819999987, 48.764142899000028 ], [ -123.441198001999922, 48.764745288000022 ], [ -123.441759513999912, 48.7650757050001 ], [ -123.441787385999973, 48.765540398000027 ], [ -123.441791309999957, 48.765605495000067 ], [ -123.441997596999954, 48.765866207000116 ], [ -123.441999483, 48.766207991000023 ], [ -123.44259071399992, 48.766772003000071 ], [ -123.442500290999959, 48.76734880300009 ], [ -123.442936004999964, 48.767391504000038 ], [ -123.443168377999925, 48.767516794000137 ], [ -123.443062806999976, 48.768003911000037 ], [ -123.443255801, 48.768137786000054 ], [ -123.443581408999961, 48.768127807000035 ], [ -123.444149998999961, 48.767774586000058 ], [ -123.444463700999947, 48.767800308000055 ], [ -123.444915989999956, 48.76807651400005 ], [ -123.444980672999975, 48.768192198000087 ], [ -123.44502670699994, 48.768274504000019 ], [ -123.44531379199999, 48.768462499000172 ], [ -123.445287811999961, 48.768597804000109 ], [ -123.445190370999939, 48.768647149000081 ], [ -123.44489409599997, 48.768797209000127 ], [ -123.444883203999908, 48.769003686000111 ], [ -123.445115695999945, 48.769128994000127 ], [ -123.445700795000022, 48.769126195000027 ], [ -123.446174202999941, 48.768837085000037 ], [ -123.446416587999963, 48.768769465000112 ], [ -123.446599291999974, 48.768718482000097 ], [ -123.447057309999934, 48.768590691000085 ], [ -123.447447897999979, 48.768310093000075 ], [ -123.44781651199996, 48.768281604000045 ], [ -123.44764881499998, 48.767860099000153 ], [ -123.447770509999899, 48.767768900000064 ], [ -123.44816410699994, 48.767794607000084 ], [ -123.448932306999922, 48.768250309000081 ], [ -123.44950630299995, 48.768743102000037 ], [ -123.450776085999934, 48.769206006000104 ], [ -123.450723241000034, 48.769292784000136 ], [ -123.450704447999925, 48.769323657000015 ], [ -123.450695851999939, 48.76933777199999 ], [ -123.450655585999954, 48.769403899000089 ], [ -123.450647895999907, 48.76940464200004 ], [ -123.449976108, 48.769469405000073 ], [ -123.449599712999955, 48.77002909 ], [ -123.449683704, 48.77014589000008 ], [ -123.450298299999986, 48.770440689000033 ], [ -123.451061316999954, 48.770571795000102 ], [ -123.451606375999972, 48.770533295000071 ], [ -123.452968798999919, 48.77066291200007 ], [ -123.453852382999941, 48.770614497000089 ], [ -123.454859489999976, 48.770674290000045 ], [ -123.455174805999917, 48.77086229700005 ], [ -123.455519390999939, 48.771382093000106 ], [ -123.455888001999966, 48.771560208000068 ], [ -123.456964800999927, 48.771592891000125 ], [ -123.457641161999959, 48.771768405000053 ], [ -123.457782602999956, 48.771805093000054 ], [ -123.458721496999942, 48.771810812000076 ], [ -123.459610090999959, 48.772238114000046 ], [ -123.46021080300001, 48.772362003000076 ], [ -123.461107612999939, 48.772403307000083 ], [ -123.461596185999909, 48.772203904000094 ], [ -123.461785293999981, 48.771879202000079 ], [ -123.461751302999957, 48.771150005000052 ], [ -123.462048003999925, 48.771393406000115 ], [ -123.462070517999919, 48.771680592000102 ], [ -123.461875797999937, 48.772065295000054 ], [ -123.461841428999946, 48.772108765000034 ], [ -123.461746048999899, 48.772229250000088 ], [ -123.461667191999965, 48.772328893000079 ], [ -123.461610163000032, 48.772360188000114 ], [ -123.461246907999964, 48.772559481 ], [ -123.460692404, 48.772634699000065 ], [ -123.460092193999927, 48.772550108000033 ], [ -123.459586494999925, 48.772425406000082 ], [ -123.459169807999942, 48.772264987000071 ], [ -123.458704420999965, 48.772023998000122 ], [ -123.458387299999927, 48.771982190000074 ], [ -123.457742396999947, 48.772020083000086 ], [ -123.457207607999976, 48.772006408000074 ], [ -123.456516554999936, 48.771921583000115 ], [ -123.456422053999944, 48.771909977000071 ], [ -123.456305694999955, 48.771895689000097 ], [ -123.455729249999962, 48.771784434000061 ], [ -123.455613004999918, 48.77176198700009 ], [ -123.454197396999973, 48.771348791000037 ], [ -123.453731526999917, 48.771273304000054 ], [ -123.453049589999964, 48.77116280400007 ], [ -123.4511516099999, 48.771074202000094 ], [ -123.450177384999932, 48.771293408000055 ], [ -123.449877088999969, 48.771467408000021 ], [ -123.449693923999945, 48.77164485300009 ], [ -123.449514820999951, 48.771818363000072 ], [ -123.449313284999945, 48.772013597000075 ], [ -123.449285482999983, 48.772650116000065 ], [ -123.449359929999957, 48.772805488000124 ], [ -123.449417403999945, 48.772925393000051 ], [ -123.450081395999987, 48.7743112570001 ], [ -123.451434219999939, 48.775554855000053 ], [ -123.451453169999965, 48.775736385000158 ], [ -123.451465501999976, 48.775854827000067 ], [ -123.450843109999965, 48.777178331000101 ], [ -123.45051372399999, 48.777521832000012 ], [ -123.449917764999924, 48.777507593000095 ], [ -123.449891893999933, 48.777983556000024 ], [ -123.444461694, 48.777853667000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13709584", "BldgCostT": "8958334", "sL_LossRatio": "0.679556661887732", "sL_AssetLoss": "126946", "sL_BldgLoss": "86267", "sL_StrLoss": "36310", "sL_NStrLoss": "49957", "sL_ContLoss": "40679", "geom_point": "0101000020E610000092620D3847D85EC04A1573ADC9624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.375819244999931, 48.772442945000115 ], [ -123.376017516999937, 48.768897500000065 ], [ -123.377188810999954, 48.768926299000107 ], [ -123.377314879999943, 48.76924440000009 ], [ -123.377887484, 48.769315598000013 ], [ -123.378105598, 48.769458008000115 ], [ -123.378692206999943, 48.769564904000077 ], [ -123.379004512, 48.769517889000035 ], [ -123.379069897999983, 48.769067810000109 ], [ -123.37899842099992, 48.768970765000098 ], [ -123.379700072999938, 48.768987998000028 ], [ -123.379756118999978, 48.767984289000054 ], [ -123.385184996999953, 48.768117471000032 ], [ -123.384984365000022, 48.771717765000091 ], [ -123.381301584999946, 48.771627449000029 ], [ -123.381245566999951, 48.772631154000067 ], [ -123.380055689999963, 48.772601946000115 ], [ -123.379857706999928, 48.776147377000015 ], [ -123.374427915999931, 48.776013926000054 ], [ -123.374629375999973, 48.772413676000063 ], [ -123.375819244999931, 48.772442945000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160258565", "BldgCostT": "108186091", "sL_LossRatio": "0.763938544022079", "sL_AssetLoss": "758006", "sL_BldgLoss": "579070", "sL_StrLoss": "299563", "sL_NStrLoss": "279507", "sL_ContLoss": "178936", "geom_point": "0101000020E61000007E777E939ED95EC0C49B67B2A0614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.401359482999936, 48.771460149000063 ], [ -123.40137818, 48.771122544000079 ], [ -123.401094793999988, 48.771115643000051 ], [ -123.401145008999933, 48.770209023000078 ], [ -123.398906872999987, 48.770154488000053 ], [ -123.398916128999957, 48.769987489000087 ], [ -123.394779834999895, 48.769886579000094 ], [ -123.394829005999952, 48.769000918000074 ], [ -123.394846806999908, 48.768680274000083 ], [ -123.391818535999974, 48.768606294000101 ], [ -123.391777321999896, 48.769347795000044 ], [ -123.391775503999938, 48.769380505000115 ], [ -123.391549554999969, 48.769374982000052 ], [ -123.389970380999941, 48.769336366000076 ], [ -123.386346461999977, 48.769247659000037 ], [ -123.386528920999979, 48.765971606000086 ], [ -123.381827899999934, 48.765856349000089 ], [ -123.381865829999953, 48.76517644800002 ], [ -123.381637544999947, 48.765170845000064 ], [ -123.38158479099999, 48.765101392000112 ], [ -123.381513105999957, 48.764615694000135 ], [ -123.381224987999985, 48.764373604000113 ], [ -123.381482888999955, 48.764192704000017 ], [ -123.381235193999927, 48.764041797000097 ], [ -123.381125202999954, 48.763798189000113 ], [ -123.380810213999965, 48.763610198000073 ], [ -123.380170484999979, 48.763513395000118 ], [ -123.379937010999981, 48.763154509000074 ], [ -123.380194614999979, 48.763127396000115 ], [ -123.380357509999953, 48.762965095000013 ], [ -123.380725016999989, 48.763061903000086 ], [ -123.380763686999941, 48.762774200000116 ], [ -123.380640098999905, 48.762640287000117 ], [ -123.380747323999941, 48.762540705000056 ], [ -123.380732474999917, 48.762315597000097 ], [ -123.381549200999984, 48.762195999000042 ], [ -123.38133101499993, 48.7621248 ], [ -123.380459707999961, 48.762163205000014 ], [ -123.38030861299994, 48.762020797000041 ], [ -123.380318410999976, 48.761454005000132 ], [ -123.380519297999982, 48.761173411000108 ], [ -123.380532021999926, 48.761118605000036 ], [ -123.384345513, 48.761212174000057 ], [ -123.384338428999939, 48.761339292000031 ], [ -123.385988264, 48.761379730000101 ], [ -123.385934121999952, 48.762351791000157 ], [ -123.387456968999956, 48.76238909500011 ], [ -123.387441037999935, 48.762675289000079 ], [ -123.39001584199994, 48.762738310000088 ], [ -123.39003732499999, 48.76235202400008 ], [ -123.391693557999957, 48.762392530000042 ], [ -123.391689327999984, 48.761848371000092 ], [ -123.39209753199999, 48.761846983000112 ], [ -123.392095432999923, 48.761577110000076 ], [ -123.391687228999956, 48.761578498000063 ], [ -123.391680932999947, 48.760768877000032 ], [ -123.393313720999942, 48.760763317000041 ], [ -123.393314064999956, 48.760807503000109 ], [ -123.394766748, 48.760842989000011 ], [ -123.394840183, 48.759520002000045 ], [ -123.393901924999938, 48.759497085000099 ], [ -123.39398741399998, 48.757957382000072 ], [ -123.388870641, 48.757832257000111 ], [ -123.388975248999955, 48.755951760000066 ], [ -123.387776537999954, 48.755922411000086 ], [ -123.387671995999966, 48.757800841000098 ], [ -123.384290898999964, 48.757717987000028 ], [ -123.384261615999975, 48.757562997000036 ], [ -123.384328900999918, 48.75742769700004 ], [ -123.384409682, 48.757265399000111 ], [ -123.384284302000012, 48.756906505000117 ], [ -123.38441510799997, 48.756339582000052 ], [ -123.384033696999936, 48.756195813000026 ], [ -123.383812608999961, 48.755666008000098 ], [ -123.384001514999952, 48.755593393000048 ], [ -123.384379792999937, 48.755170401000086 ], [ -123.384731502999955, 48.755025099000051 ], [ -123.384675196999964, 48.754827092000049 ], [ -123.384934784999956, 48.754763 ], [ -123.384998883999984, 48.754412691 ], [ -123.385677596999969, 48.75417630600009 ], [ -123.386031481999979, 48.754191892000108 ], [ -123.386300000999981, 48.753723409000045 ], [ -123.386625996999896, 48.753525401000068 ], [ -123.387182309999901, 48.753549596000035 ], [ -123.388054706999981, 48.75374468200004 ], [ -123.388521004999973, 48.754238895000071 ], [ -123.388726690999988, 48.754283109000013 ], [ -123.388904805999985, 48.754479597000049 ], [ -123.389301584999927, 48.754649105000055 ], [ -123.389776492999928, 48.754593612000043 ], [ -123.390264093999974, 48.754261075000073 ], [ -123.390710417999969, 48.754271994000057 ], [ -123.390717306999989, 48.754148058000091 ], [ -123.391185188999941, 48.753860091000043 ], [ -123.391836982999962, 48.753767496000094 ], [ -123.392705786999983, 48.753531105000093 ], [ -123.392951516999958, 48.753539606000025 ], [ -123.3933091899999, 48.753952692000063 ], [ -123.39337890899999, 48.754194788000042 ], [ -123.393067101999961, 48.754375709000065 ], [ -123.39306950199996, 48.754592092000038 ], [ -123.393272391999957, 48.754644796000022 ], [ -123.393789980999941, 48.754616392000109 ], [ -123.393914293999927, 48.754760216000093 ], [ -123.394132515999971, 48.754831395000096 ], [ -123.394458716000017, 48.754730297000037 ], [ -123.39471670099995, 48.754747400000056 ], [ -123.395209892999929, 48.755168912000094 ], [ -123.395197696999958, 48.755339804000073 ], [ -123.395348986, 48.755519300000046 ], [ -123.395012594999983, 48.75613168900005 ], [ -123.395069083999928, 48.756348203000059 ], [ -123.395354192999989, 48.756419398000084 ], [ -123.395818307999946, 48.756363886000017 ], [ -123.395761310999916, 48.75608469800008 ], [ -123.396016511999974, 48.755859695000069 ], [ -123.396303011999947, 48.75574150400012 ], [ -123.396628, 48.755758607000111 ], [ -123.396712704999928, 48.75589240200005 ], [ -123.397191091999929, 48.756160205000064 ], [ -123.397260917999972, 48.756420802000044 ], [ -123.39787680699996, 48.756850888 ], [ -123.39819320099997, 48.757309505000066 ], [ -123.397899797999969, 48.758057209000086 ], [ -123.397901288999989, 48.75848878900004 ], [ -123.398541911, 48.758513004000065 ], [ -123.398761307999976, 48.758656805000044 ], [ -123.398937611999898, 48.758628289000058 ], [ -123.399167318999957, 48.758357704000076 ], [ -123.399626906999927, 48.758104196000069 ], [ -123.399842607999972, 48.757816496000061 ], [ -123.400302579999931, 48.757517496 ], [ -123.402145401999945, 48.756611702000036 ], [ -123.402700289, 48.756133091000073 ], [ -123.402628978999971, 48.755691594000091 ], [ -123.403061602999941, 48.755492199000102 ], [ -123.403363105999944, 48.755546392000028 ], [ -123.403553081999959, 48.755688796000122 ], [ -123.404968682999979, 48.755638901000033 ], [ -123.406288984999932, 48.755795599000095 ], [ -123.406559995999928, 48.755741507000039 ], [ -123.406765687999894, 48.755785602000074 ], [ -123.407232680000021, 48.756413693000063 ], [ -123.407333789999939, 48.757114405000074 ], [ -123.40770341699999, 48.757293906000093 ], [ -123.407938205999969, 48.757796601000045 ], [ -123.408919995999923, 48.758135598000102 ], [ -123.409071711999914, 48.758250888000063 ], [ -123.409305898999946, 48.758601290000101 ], [ -123.409272685999952, 48.759591096000044 ], [ -123.409435984, 48.759734992000048 ], [ -123.409642222999977, 48.759752103000046 ], [ -123.409818002999927, 48.759750604000018 ], [ -123.409940313999982, 48.759650908000019 ], [ -123.409989598999928, 48.759202287000072 ], [ -123.410309980999941, 48.758336399000093 ], [ -123.410580713999963, 48.758084297000046 ], [ -123.41092140399995, 48.75823530100007 ], [ -123.411690891999939, 48.759178115000104 ], [ -123.411855382999988, 48.759203704000065 ], [ -123.411908204999946, 48.759149583000081 ], [ -123.411904611999915, 48.758736593000066 ], [ -123.411271178999954, 48.757793795000104 ], [ -123.411392211999967, 48.757460493000053 ], [ -123.411759793999948, 48.757486098000108 ], [ -123.412264484999938, 48.75788060600005 ], [ -123.41290601899999, 48.75809430400011 ], [ -123.413682299999905, 48.758145506000034 ], [ -123.414040018999955, 48.758521499000032 ], [ -123.414312703999883, 48.758565697000144 ], [ -123.414460491999932, 48.758511599000045 ], [ -123.414541694999954, 48.758232401000058 ], [ -123.415161399999974, 48.757600114000098 ], [ -123.415213317999957, 48.75726680500005 ], [ -123.415361507999989, 48.75716709000011 ], [ -123.415769518000019, 48.757201301000059 ], [ -123.416916506999939, 48.757486087000053 ], [ -123.417528882999974, 48.757491796000103 ], [ -123.417704321999949, 48.757446300000055 ], [ -123.418583304, 48.756813891000085 ], [ -123.41900640899999, 48.756848087000115 ], [ -123.419330700999978, 48.75678399500007 ], [ -123.420324889999932, 48.756798198000119 ], [ -123.422432877999967, 48.75668289700009 ], [ -123.422770586999931, 48.756502 ], [ -123.422946009999976, 48.756141686000078 ], [ -123.423135219999949, 48.75602350600014 ], [ -123.423594094999885, 48.755982509000027 ], [ -123.423435078999972, 48.758879462000046 ], [ -123.422931589999934, 48.758867300000084 ], [ -123.42289639099999, 48.759508374000063 ], [ -123.42102876899996, 48.759463240000066 ], [ -123.420977563999926, 48.760395117000016 ], [ -123.42008551399999, 48.760373548000089 ], [ -123.420061251000035, 48.760814939000042 ], [ -123.418877901999934, 48.760786315000097 ], [ -123.418841937999957, 48.761440267000062 ], [ -123.417599120999952, 48.76141019100011 ], [ -123.417583203999982, 48.761699497000102 ], [ -123.416526352999981, 48.76167390900013 ], [ -123.416526258999951, 48.761675622000034 ], [ -123.415164461999964, 48.76164263600004 ], [ -123.415144022999954, 48.762013755000069 ], [ -123.413595590999961, 48.761976226000073 ], [ -123.413560393999958, 48.76261489300007 ], [ -123.408132071999901, 48.762483152000101 ], [ -123.408226452999912, 48.760774099000059 ], [ -123.406704442999953, 48.760737111000047 ], [ -123.40657635099997, 48.76305525300009 ], [ -123.410686456999912, 48.763155085000037 ], [ -123.410653283999963, 48.763756362000088 ], [ -123.412894315999921, 48.763810729000092 ], [ -123.41269582699999, 48.767411099000057 ], [ -123.411089480999948, 48.76737213500013 ], [ -123.410946298999988, 48.769967334000121 ], [ -123.406884072999972, 48.769868691000049 ], [ -123.406788822999971, 48.771592232000032 ], [ -123.401359482999936, 48.771460149000063 ] ], [ [ -123.405939109999977, 48.760640370000075 ], [ -123.405969493000015, 48.760090630000079 ], [ -123.405825260999947, 48.760087123000069 ], [ -123.405794875999987, 48.760636863000109 ], [ -123.405939109999977, 48.760640370000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11336417", "BldgCostT": "7321667", "sL_LossRatio": "0.822374241312745", "sL_AssetLoss": "50300.7", "sL_BldgLoss": "41366", "sL_StrLoss": "24861", "sL_NStrLoss": "16505", "sL_ContLoss": "8934.7", "geom_point": "0101000020E6100000B829D489BAD95EC07BD3DB3CE1654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405635094999965, 48.797936505000052 ], [ -123.405373615999935, 48.797594706000083 ], [ -123.405116610000022, 48.797631706000139 ], [ -123.404793404999936, 48.798110290000054 ], [ -123.404181288999951, 48.798174392000071 ], [ -123.403226506999928, 48.798007684000027 ], [ -123.401113600999935, 48.797933693000033 ], [ -123.400949806999975, 48.79785390300006 ], [ -123.400796817, 48.797395298000076 ], [ -123.400510109999985, 48.797269998000047 ], [ -123.399762091999918, 48.797299888000062 ], [ -123.399585290999966, 48.797426709000085 ], [ -123.399600010999947, 48.797524886000048 ], [ -123.399886719999984, 48.797650303000125 ], [ -123.399969796, 48.797821187000075 ], [ -123.400216790999977, 48.797936511000032 ], [ -123.400067987999989, 48.798044809000132 ], [ -123.39939810199995, 48.797957905000025 ], [ -123.398065487999958, 48.797989211000079 ], [ -123.397299220999969, 48.797694402000076 ], [ -123.39719169199995, 48.797839692000103 ], [ -123.396959908999975, 48.797866693000046 ], [ -123.395979090999958, 48.797752799000044 ], [ -123.395763200999966, 48.797694996000061 ], [ -123.395907366999964, 48.795098866000025 ], [ -123.397942316999917, 48.795148481000062 ], [ -123.397991028999968, 48.7942705150001 ], [ -123.400156353999947, 48.794323266000077 ], [ -123.400222704, 48.793126366000109 ], [ -123.405654547999958, 48.793258501000011 ], [ -123.405542415999946, 48.795285492000112 ], [ -123.40779679399995, 48.795340251000077 ], [ -123.407618840999959, 48.798559494000131 ], [ -123.406004593999967, 48.798195690000099 ], [ -123.405635094999965, 48.797936505000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "0.843119377583272", "sL_AssetLoss": "32904", "sL_BldgLoss": "27742", "sL_StrLoss": "17860", "sL_NStrLoss": "9882", "sL_ContLoss": "5162", "geom_point": "0101000020E6100000DE1C531CACE45EC04313EEB607774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.568770367999889, 48.929368930000095 ], [ -123.568522988999973, 48.929226218000082 ], [ -123.568289157, 48.929074436000107 ], [ -123.568082653999952, 48.92892253400003 ], [ -123.567807245000012, 48.92871697200011 ], [ -123.567573579999944, 48.928574195000117 ], [ -123.567394443999916, 48.928431136000036 ], [ -123.567311631999956, 48.928350589000068 ], [ -123.567194932999939, 48.928232390000055 ], [ -123.570465660999957, 48.928306638000059 ], [ -123.570411257999979, 48.929353623000068 ], [ -123.570922488999955, 48.929365219000083 ], [ -123.570975939, 48.928336357000035 ], [ -123.57642394899996, 48.928459781000107 ], [ -123.576237346999946, 48.93205949700009 ], [ -123.575316723999947, 48.932038660000046 ], [ -123.575298877999955, 48.93238276000011 ], [ -123.575056949999919, 48.932297365000103 ], [ -123.574727834, 48.932173060000103 ], [ -123.574604547999968, 48.932137676000117 ], [ -123.574481354999989, 48.932111325000065 ], [ -123.574248858999979, 48.932076505000104 ], [ -123.574002689999986, 48.932041737000119 ], [ -123.573865966999975, 48.932024418000061 ], [ -123.573633654999952, 48.932007606000056 ], [ -123.573510698999954, 48.931999212000051 ], [ -123.573278074999962, 48.931955373000037 ], [ -123.572949152, 48.931849068000062 ], [ -123.572729601999967, 48.931751207000055 ], [ -123.572550872999926, 48.931644143000071 ], [ -123.572234787999932, 48.931465797000051 ], [ -123.572028584999956, 48.931340893000041 ], [ -123.571684792999974, 48.931126692000063 ], [ -123.571437318, 48.930974977000041 ], [ -123.571203482999977, 48.93082322300009 ], [ -123.57116222499991, 48.930796436000044 ], [ -123.571079873999949, 48.930760843 ], [ -123.570749983999946, 48.93056458500012 ], [ -123.57055709899997, 48.930412592000032 ], [ -123.57041965699996, 48.930332335000074 ], [ -123.570172300999957, 48.930189613000067 ], [ -123.56996627699999, 48.930082689000137 ], [ -123.569938748999945, 48.930064838000128 ], [ -123.569705050999943, 48.929922044000058 ], [ -123.569581357999979, 48.929850690000094 ], [ -123.569333861999922, 48.929698982000062 ], [ -123.569210169999934, 48.929627626000062 ], [ -123.568880188, 48.929422364000061 ], [ -123.568770367999889, 48.929368930000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "384604673", "BldgCostT": "258658382", "sL_LossRatio": "0.800640881254026", "sL_AssetLoss": "1725686.3", "sL_BldgLoss": "1381655", "sL_StrLoss": "812688", "sL_NStrLoss": "568967", "sL_ContLoss": "344031.3", "geom_point": "0101000020E6100000B868219EB8E35EC06166D97232734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.581014847999981, 48.932869117000067 ], [ -123.58120108, 48.929269510000076 ], [ -123.58529289099998, 48.929361844000077 ], [ -123.58539902199999, 48.927306708000081 ], [ -123.585695425999987, 48.92731339 ], [ -123.585767430999965, 48.92591882400005 ], [ -123.580814158999914, 48.925807045000113 ], [ -123.581000383999978, 48.922207286000081 ], [ -123.584969612999913, 48.922296876000068 ], [ -123.585000817999912, 48.921692611 ], [ -123.583210499999936, 48.921652219000123 ], [ -123.583240045999943, 48.921080481000047 ], [ -123.583015626999952, 48.921075415000097 ], [ -123.58303061099997, 48.920785495000132 ], [ -123.580550376999966, 48.920729483000081 ], [ -123.580367172999928, 48.924270318000026 ], [ -123.57491964099999, 48.924147094000055 ], [ -123.57510631199996, 48.920547335000059 ], [ -123.577890512999929, 48.920610350000082 ], [ -123.577894212999936, 48.920538899000078 ], [ -123.576804928999977, 48.920514253000128 ], [ -123.576830184999949, 48.920026813000113 ], [ -123.575394707999948, 48.919994318000121 ], [ -123.575410459999929, 48.919690498000151 ], [ -123.573767166999943, 48.91965327700008 ], [ -123.573822906999951, 48.918578878000055 ], [ -123.57342020599998, 48.918569753000085 ], [ -123.573357341999895, 48.919781304000082 ], [ -123.567910349999948, 48.919657722000082 ], [ -123.568027111999953, 48.917412430000056 ], [ -123.567942339999945, 48.917410505000056 ], [ -123.56787006899999, 48.918800242000074 ], [ -123.56635524299999, 48.918765822000076 ], [ -123.566338523999917, 48.919087079000072 ], [ -123.566148018999954, 48.919082748000093 ], [ -123.566115951, 48.919698925000034 ], [ -123.569634076999932, 48.919778836000063 ], [ -123.56960679599996, 48.920303797000045 ], [ -123.57492162199992, 48.92042429800015 ], [ -123.574734936000013, 48.924024057000047 ], [ -123.570525575999909, 48.923928642000114 ], [ -123.570401390999947, 48.92631875700004 ], [ -123.570288719999937, 48.92631620100012 ], [ -123.570261915999964, 48.926832059000134 ], [ -123.566511425999977, 48.926746903000037 ], [ -123.566502424999925, 48.92691983900005 ], [ -123.566651819999933, 48.926923234000128 ], [ -123.566611195999883, 48.927703829000059 ], [ -123.566525247999934, 48.927625785000039 ], [ -123.566290638999988, 48.927402059000066 ], [ -123.56609767799992, 48.927241062000121 ], [ -123.565913888999944, 48.92709057800004 ], [ -123.565820780999971, 48.927005831000052 ], [ -123.565729759999954, 48.926923025000043 ], [ -123.565563880999889, 48.926772086000014 ], [ -123.565482835999958, 48.926681257000055 ], [ -123.565365164999946, 48.926549408000042 ], [ -123.56520448899991, 48.92636940800007 ], [ -123.565169638999947, 48.926330324000098 ], [ -123.565024632, 48.926139796000022 ], [ -123.564892228999966, 48.925963345000092 ], [ -123.564796519, 48.925835785000068 ], [ -123.564644850999969, 48.925633639000061 ], [ -123.564496317999968, 48.925435662000069 ], [ -123.56441188699992, 48.92532020000003 ], [ -123.564303506999977, 48.925062299000082 ], [ -123.564256105999959, 48.9249471850001 ], [ -123.564180655999976, 48.924762098000073 ], [ -123.56413847099995, 48.924626753000084 ], [ -123.564110557999939, 48.924537227000016 ], [ -123.564060475999952, 48.924376466000048 ], [ -123.564021419999918, 48.924251198000029 ], [ -123.563979122999925, 48.924115395000094 ], [ -123.563922290999955, 48.923933078000118 ], [ -123.563873432999969, 48.923776266000068 ], [ -123.563851474999979, 48.923705776000148 ], [ -123.563781055999982, 48.923581374000086 ], [ -123.56375507499996, 48.923535456000153 ], [ -123.563701636, 48.923441076000117 ], [ -123.563614425999972, 48.923329333000027 ], [ -123.56356693699999, 48.923268436000086 ], [ -123.563433231999923, 48.923097106000114 ], [ -123.563364189999973, 48.923040576000069 ], [ -123.563259314999982, 48.922954728000043 ], [ -123.563094767999985, 48.92281998500011 ], [ -123.563012165999922, 48.922752352000039 ], [ -123.56285092, 48.922639232000037 ], [ -123.562576330999974, 48.922463536000059 ], [ -123.562342504999947, 48.922302757000026 ], [ -123.562190931999979, 48.922177544000085 ], [ -123.561956645999913, 48.921980790000049 ], [ -123.561860291999963, 48.921909287000098 ], [ -123.561557675999921, 48.921703875000091 ], [ -123.561461218999938, 48.92162337400007 ], [ -123.561254561999959, 48.92145346800001 ], [ -123.561061648999939, 48.921292465000136 ], [ -123.560854353999957, 48.92106857900005 ], [ -123.560657742999965, 48.920845159000066 ], [ -123.56060860800001, 48.920789299000056 ], [ -123.558037220999921, 48.918414196000064 ], [ -123.557775914999937, 48.917803708000136 ], [ -123.557753728999941, 48.917577493000067 ], [ -123.55767991099998, 48.916823883000035 ], [ -123.557254710999956, 48.915905988000056 ], [ -123.556846913999919, 48.915414613000067 ], [ -123.555622298999964, 48.914404493000077 ], [ -123.555491803, 48.913615005000118 ], [ -123.55442510499995, 48.912847294000137 ], [ -123.553629433999944, 48.912066531000107 ], [ -123.553507769999925, 48.911947158 ], [ -123.553238721999932, 48.911683100000076 ], [ -123.552604713999983, 48.911424408000109 ], [ -123.550469084, 48.909719555000031 ], [ -123.550568863999956, 48.909721839000085 ], [ -123.550661892, 48.907945198000064 ], [ -123.556107474999962, 48.908069660000066 ], [ -123.556087572999957, 48.908450619000035 ], [ -123.556452585999963, 48.908458952000075 ], [ -123.556427913999983, 48.908931251000091 ], [ -123.557098111999949, 48.908946548000117 ], [ -123.557247635999957, 48.90608325400008 ], [ -123.557334349999962, 48.906085233000027 ], [ -123.557385183999941, 48.905111654000045 ], [ -123.562830455999958, 48.905235774000047 ], [ -123.562770970999949, 48.906377544000115 ], [ -123.563957283999969, 48.906404548000076 ], [ -123.56394727899999, 48.90659666400007 ], [ -123.567671460999946, 48.906681352000092 ], [ -123.567484273999952, 48.91028117700008 ], [ -123.563325732999942, 48.910186604000053 ], [ -123.563236634999924, 48.911896920000082 ], [ -123.566036341999933, 48.911960609000076 ], [ -123.565942650999929, 48.913761023000049 ], [ -123.568685353999925, 48.913823344 ], [ -123.568568632999956, 48.916068649000053 ], [ -123.572829340999931, 48.916165322000069 ], [ -123.572892214999911, 48.914953764000082 ], [ -123.578338672, 48.915077093000079 ], [ -123.578283040999978, 48.916151500000133 ], [ -123.579400498000027, 48.916176769000053 ], [ -123.579384772999958, 48.916480591000081 ], [ -123.581027958, 48.916517727000041 ], [ -123.581002746999928, 48.917005171000049 ], [ -123.58243813699994, 48.917037591000032 ], [ -123.582431397999969, 48.917167975000012 ], [ -123.583241739999949, 48.917186269000076 ], [ -123.583299035999943, 48.91607742300004 ], [ -123.583444141999905, 48.916080699000105 ], [ -123.583477666999983, 48.915431825000027 ], [ -123.583785438999925, 48.91543877200008 ], [ -123.58382239300002, 48.914723432000081 ], [ -123.58397752799999, 48.914726934000043 ], [ -123.584004414999967, 48.914206435000025 ], [ -123.584444611999956, 48.914216368000048 ], [ -123.584453004999901, 48.914053846000044 ], [ -123.58483979599994, 48.91406257200002 ], [ -123.584849334999973, 48.913877864000071 ], [ -123.581648013999981, 48.913805600000117 ], [ -123.58183412599999, 48.910205770000097 ], [ -123.587002577999939, 48.910322392000062 ], [ -123.587069231999976, 48.909030250000143 ], [ -123.584454708999957, 48.908971287000128 ], [ -123.584515724999974, 48.907789667 ], [ -123.583620749999923, 48.90776946900008 ], [ -123.58380668599996, 48.904169601000092 ], [ -123.586344823000019, 48.904226864000094 ], [ -123.586379889999961, 48.903547177000064 ], [ -123.585974791999902, 48.903538042000136 ], [ -123.586018884999973, 48.902683508000059 ], [ -123.584999708999959, 48.902660518000097 ], [ -123.585167769999899, 48.899404523000108 ], [ -123.580681849999976, 48.899303215000074 ], [ -123.580854267999939, 48.895968517000092 ], [ -123.579907122999927, 48.895947103000097 ], [ -123.579929288999949, 48.895518513000113 ], [ -123.578910913999962, 48.895495478000051 ], [ -123.578920632999896, 48.895307633000073 ], [ -123.5782324, 48.895292060000067 ], [ -123.578254017999939, 48.894874350000073 ], [ -123.577321291999965, 48.894853238000067 ], [ -123.577344195999927, 48.89441088700007 ], [ -123.576453388999965, 48.894390716000039 ], [ -123.576464905999941, 48.894168334000028 ], [ -123.575964684000013, 48.8941570040001 ], [ -123.575976591999961, 48.893927112000021 ], [ -123.570546004999954, 48.893803962000035 ], [ -123.570732891999938, 48.8902040380001 ], [ -123.571003377999958, 48.890210179000121 ], [ -123.571061600999968, 48.889088409000088 ], [ -123.570509486999967, 48.889075875000103 ], [ -123.570532886999899, 48.888625116000043 ], [ -123.567235196999945, 48.888550190000039 ], [ -123.567246480999984, 48.888333101000043 ], [ -123.566642887999976, 48.888319376000055 ], [ -123.566654548999949, 48.888095118000145 ], [ -123.565983678999942, 48.888079858000097 ], [ -123.565990002999968, 48.887958249000086 ], [ -123.565462367999913, 48.887946245000087 ], [ -123.56547482799995, 48.887706727000094 ], [ -123.565053266999939, 48.887697134000113 ], [ -123.565059634999955, 48.887574735000051 ], [ -123.563362113999915, 48.887536091000086 ], [ -123.563381734999908, 48.887159220000115 ], [ -123.562712413999989, 48.887143975000143 ], [ -123.562744809999955, 48.886521905000038 ], [ -123.561465006999981, 48.886492744000101 ], [ -123.561535532999983, 48.885139135000081 ], [ -123.561497166999928, 48.885138261000066 ], [ -123.560662939999986, 48.885119244000101 ], [ -123.559140855999914, 48.885084531000189 ], [ -123.55913823099999, 48.885134856 ], [ -123.553695307999988, 48.885010544000082 ], [ -123.55377295599996, 48.883524914000105 ], [ -123.553082774999979, 48.883509132000079 ], [ -123.553094268, 48.883289315000056 ], [ -123.552088452999925, 48.883266306000046 ], [ -123.552117662999962, 48.882707788000047 ], [ -123.550957942999958, 48.882681248000075 ], [ -123.550904622999965, 48.883700262000055 ], [ -123.548943980999979, 48.883655362000127 ], [ -123.548928316999934, 48.883954463000052 ], [ -123.549238679999959, 48.883961573000136 ], [ -123.549220409999961, 48.884310497000065 ], [ -123.549267399999948, 48.884311573000041 ], [ -123.549244963999982, 48.884740047000086 ], [ -123.549355223999939, 48.884742572000036 ], [ -123.549320208999958, 48.885411283000067 ], [ -123.549498657999976, 48.885415370000011 ], [ -123.549464764999954, 48.886062703000078 ], [ -123.549733887999963, 48.886068866000038 ], [ -123.549605372999949, 48.888523461000084 ], [ -123.550866894999928, 48.888552343000114 ], [ -123.550848322999954, 48.888907233000104 ], [ -123.551053909999936, 48.888911938000085 ], [ -123.550865514999899, 48.892511836000061 ], [ -123.545421756999943, 48.892387105000097 ], [ -123.545440371999973, 48.892032219000036 ], [ -123.545234769999979, 48.892027502000097 ], [ -123.545363523999953, 48.889572927000131 ], [ -123.544101977999929, 48.889543979000088 ], [ -123.544135948999951, 48.888896653000074 ], [ -123.543866808999923, 48.888890475000053 ], [ -123.54388284699999, 48.888584913000024 ], [ -123.543593417999929, 48.888578269000021 ], [ -123.54365328099999, 48.887437735000034 ], [ -123.543606986999947, 48.887436672000021 ], [ -123.543623734999983, 48.887117590000052 ], [ -123.543138988999928, 48.887106460000069 ], [ -123.54327525399998, 48.884510611000046 ], [ -123.542070508000023, 48.884482940000041 ], [ -123.542131257999984, 48.883326119000024 ], [ -123.541487456999931, 48.883311327000051 ], [ -123.541553886, 48.882046625000122 ], [ -123.54087031099999, 48.882030914000033 ], [ -123.540966825999973, 48.880193801000154 ], [ -123.539828753999927, 48.880167635000113 ], [ -123.539691325999954, 48.882782240000068 ], [ -123.538258869999979, 48.882749288000049 ], [ -123.538217308999918, 48.883539474000088 ], [ -123.5380821, 48.883536363000054 ], [ -123.538019866999917, 48.884719475000104 ], [ -123.537751307999969, 48.884713295000054 ], [ -123.537740933999928, 48.884910486000109 ], [ -123.538001055, 48.884916472000093 ], [ -123.537978515999953, 48.88534493300012 ], [ -123.53808877699997, 48.885347470000063 ], [ -123.538045681999961, 48.886166730000078 ], [ -123.538082326, 48.886167573000108 ], [ -123.537946925999918, 48.888741416000059 ], [ -123.53868796099999, 48.88875846400007 ], [ -123.53865357699999, 48.889412218000082 ], [ -123.539050885999927, 48.889421356000135 ], [ -123.53901609799999, 48.890082900000081 ], [ -123.539127223999941, 48.890085456000115 ], [ -123.53893790699999, 48.893685326000089 ], [ -123.5388079799999, 48.893682338000147 ], [ -123.538734028999897, 48.895088294000104 ], [ -123.539232920999922, 48.89509976699999 ], [ -123.539168489999966, 48.896324886000059 ], [ -123.539606072999959, 48.896334947000078 ], [ -123.539615394999942, 48.896157692000038 ], [ -123.540519836999948, 48.89617848200011 ], [ -123.540526162999981, 48.896058114000112 ], [ -123.541275628999927, 48.896075336000095 ], [ -123.541275933999913, 48.896069532000048 ], [ -123.541975213999962, 48.896085596000056 ], [ -123.541977806999938, 48.89603624900014 ], [ -123.547421980999957, 48.896161155000044 ], [ -123.547375636999945, 48.897045303000027 ], [ -123.548895280999929, 48.89708011900003 ], [ -123.548843023999936, 48.898077650000062 ], [ -123.552438115999919, 48.898159929000052 ], [ -123.552404532999944, 48.898801908000102 ], [ -123.553392819999942, 48.898824505000043 ], [ -123.553349076999936, 48.899661009000042 ], [ -123.55483071899999, 48.899694869000065 ], [ -123.554821883, 48.899863945000021 ], [ -123.555205600999955, 48.899872710000061 ], [ -123.555275339, 48.898538084000073 ], [ -123.560719838999916, 48.898662312000084 ], [ -123.560532146999961, 48.902262171000082 ], [ -123.558287768999918, 48.902210994000065 ], [ -123.558141306999943, 48.905017120000139 ], [ -123.557318664999968, 48.904998351000131 ], [ -123.557275717999929, 48.905820840000011 ], [ -123.552874783999926, 48.905720319000096 ], [ -123.552778635999971, 48.907558245000082 ], [ -123.547333121999927, 48.907433614000055 ], [ -123.547397169999925, 48.906212025000116 ], [ -123.545562431999912, 48.906169971000097 ], [ -123.545645023999967, 48.90459576300006 ], [ -123.544983923999951, 48.904580603000099 ], [ -123.544941601999966, 48.905387044000115 ], [ -123.543777360999982, 48.905360335000125 ], [ -123.54370275199993, 48.906781308000099 ], [ -123.542875199999941, 48.90643419600007 ], [ -123.541034900999961, 48.905918899000028 ], [ -123.539707413999935, 48.905436764000115 ], [ -123.539516306999985, 48.905367365000139 ], [ -123.539292306999982, 48.905285987000113 ], [ -123.538058990999929, 48.904763812000027 ], [ -123.537142088999985, 48.904214038000063 ], [ -123.536706749999965, 48.903953027000085 ], [ -123.536460384999913, 48.903805299000062 ], [ -123.535981779999958, 48.903394196000086 ], [ -123.535264817999987, 48.902257701000067 ], [ -123.535094204999922, 48.901669007000088 ], [ -123.535202706999939, 48.900772288000041 ], [ -123.53524523499999, 48.900629251000012 ], [ -123.535431592999913, 48.900002609000047 ], [ -123.535530612999963, 48.899669701000114 ], [ -123.535598981999968, 48.899133399000064 ], [ -123.535681600999979, 48.898485590000092 ], [ -123.535653296999982, 48.898339407000051 ], [ -123.535618568999936, 48.898160101 ], [ -123.535550913999955, 48.897810400000083 ], [ -123.535576306999943, 48.89751010500008 ], [ -123.536261, 48.896668908000052 ], [ -123.536064031999956, 48.89625743200002 ], [ -123.535843608999969, 48.895797013000063 ], [ -123.535799299999894, 48.895396798000014 ], [ -123.535934308999956, 48.894903495000079 ], [ -123.536761502999951, 48.894203488000073 ], [ -123.536876119999974, 48.893838505000076 ], [ -123.536793282999923, 48.892951705000037 ], [ -123.53701678799996, 48.892148610000113 ], [ -123.536889291, 48.891334707000063 ], [ -123.536418585999911, 48.890311107000116 ], [ -123.535429813999912, 48.888958393000046 ], [ -123.53460703799999, 48.887590659000068 ], [ -123.534496496999949, 48.887406912000046 ], [ -123.534112004999955, 48.886900786000041 ], [ -123.533920757999951, 48.88664901500006 ], [ -123.533376931999939, 48.88593314500006 ], [ -123.532983507999944, 48.885415234000092 ], [ -123.532757458, 48.885117720000046 ], [ -123.531937133999975, 48.884087798000103 ], [ -123.531127504999972, 48.882830140000095 ], [ -123.53099019899993, 48.882684435000066 ], [ -123.530812143999924, 48.882495465000034 ], [ -123.529901948999978, 48.88152952500009 ], [ -123.52972184199993, 48.881199189000029 ], [ -123.529639561999943, 48.879902320000014 ], [ -123.529599144999949, 48.879265335000085 ], [ -123.529592032999943, 48.879144838000045 ], [ -123.529523818999905, 48.87798320100012 ], [ -123.529558807999976, 48.877721646000033 ], [ -123.529623719, 48.877236535000073 ], [ -123.529676704999929, 48.876840487000059 ], [ -123.529852795999972, 48.876394114000057 ], [ -123.529885200999942, 48.876192992000043 ], [ -123.529848823999927, 48.876123729000071 ], [ -123.52976641399999, 48.875966803000082 ], [ -123.529426495999985, 48.875646189000058 ], [ -123.529413708999982, 48.875619967000084 ], [ -123.52932201499999, 48.875432088000146 ], [ -123.529320215000013, 48.875284964000109 ], [ -123.529308031999932, 48.874295456000041 ], [ -123.529307242999934, 48.874232491000051 ], [ -123.529304164999971, 48.87398061199999 ], [ -123.52929371, 48.873129108000072 ], [ -123.53174151099999, 48.873719091000062 ], [ -123.532190587999935, 48.873855594000062 ], [ -123.532266405999948, 48.873889001000045 ], [ -123.532565908999942, 48.87402099600012 ], [ -123.53387354399996, 48.874890624000038 ], [ -123.53444118499999, 48.875268095000095 ], [ -123.534646776999963, 48.87535820700009 ], [ -123.534658202999935, 48.875363201000077 ], [ -123.534907684999922, 48.87540951600009 ], [ -123.535413137999967, 48.875403601000087 ], [ -123.537976751999977, 48.875373693 ], [ -123.539367928999937, 48.875357404000063 ], [ -123.539736606999924, 48.875353103000116 ], [ -123.539730980999934, 48.874785298000099 ], [ -123.540194272999912, 48.874774452000111 ], [ -123.541089293999946, 48.874753491000028 ], [ -123.54135772799998, 48.874799395000132 ], [ -123.54186820399994, 48.874886697000065 ], [ -123.542630010999957, 48.875087093000076 ], [ -123.543102496999964, 48.875240220000137 ], [ -123.545396077999939, 48.875983530000063 ], [ -123.546714879999968, 48.876410898000067 ], [ -123.547813212, 48.876791997000076 ], [ -123.548140185999927, 48.876790497000037 ], [ -123.54837269899997, 48.876694904000011 ], [ -123.5493125079999, 48.875992793000073 ], [ -123.550316200999958, 48.876569090000046 ], [ -123.550934308999942, 48.876236297000048 ], [ -123.551213403999938, 48.876212088000017 ], [ -123.55150190899991, 48.876243903000024 ], [ -123.55218169599999, 48.876450493000021 ], [ -123.553532513999926, 48.87697786700015 ], [ -123.554381884999941, 48.87730944200009 ], [ -123.557224995999945, 48.87841928400006 ], [ -123.557625482999953, 48.878519977000039 ], [ -123.557829222999928, 48.878571175000111 ], [ -123.559208187999943, 48.878917810000111 ], [ -123.560230009999913, 48.878783403000092 ], [ -123.56052759399995, 48.878771304000075 ], [ -123.56105600099994, 48.878824797000028 ], [ -123.561645962999989, 48.878940540000038 ], [ -123.561695199999974, 48.878950204000063 ], [ -123.563822003000027, 48.879647385000062 ], [ -123.56547043399999, 48.880096291000015 ], [ -123.565500993999962, 48.880104588000101 ], [ -123.566403795999932, 48.880215298000081 ], [ -123.566847292999952, 48.880986712000052 ], [ -123.566931000999944, 48.881603205000069 ], [ -123.56726729799999, 48.881855561000108 ], [ -123.567712809999989, 48.882189873000087 ], [ -123.568534605999943, 48.882806487000025 ], [ -123.569082087000012, 48.883467827000104 ], [ -123.569216490999906, 48.88363021100011 ], [ -123.5694764939999, 48.884133505000079 ], [ -123.569446177999964, 48.884404426000103 ], [ -123.569369693999974, 48.885087093000053 ], [ -123.569858305, 48.885569505000134 ], [ -123.570835882, 48.886158413000089 ], [ -123.571887870999888, 48.887204537000052 ], [ -123.57218970299999, 48.887504686000128 ], [ -123.573470402999973, 48.888554601000102 ], [ -123.573715213999932, 48.88885300200009 ], [ -123.574054184999966, 48.889408504000109 ], [ -123.57439380999989, 48.889744188000165 ], [ -123.574448125999965, 48.889808373000022 ], [ -123.574522053999928, 48.889915868000067 ], [ -123.574668473999907, 48.890108921000049 ], [ -123.574696655999929, 48.890189739000064 ], [ -123.574821195999959, 48.890342050000122 ], [ -123.57509629599997, 48.89053858900008 ], [ -123.57517895699999, 48.890610144000064 ], [ -123.575385534999953, 48.890780024000101 ], [ -123.575728649, 48.890958231000148 ], [ -123.576017397999962, 48.891154695000097 ], [ -123.576264596999948, 48.891297391000073 ], [ -123.57651242499999, 48.891494073000054 ], [ -123.576636127999947, 48.891574404000018 ], [ -123.576869765999959, 48.891726179000074 ], [ -123.57697955, 48.891779607000032 ], [ -123.577323064999973, 48.891993781000046 ], [ -123.577570273999953, 48.892136474000012 ], [ -123.577680357999938, 48.892216899000076 ], [ -123.578023549999926, 48.892404086000063 ], [ -123.578133667999936, 48.892484498000094 ], [ -123.578340011999956, 48.892636394000085 ], [ -123.578546613999919, 48.892806267000083 ], [ -123.578753125999967, 48.892967167000037 ], [ -123.578973373999986, 48.893136968000121 ], [ -123.579110934, 48.893235251000043 ], [ -123.579124685999972, 48.893244173 ], [ -123.579193529999884, 48.893297795000116 ], [ -123.579413764999956, 48.893467629000043 ], [ -123.579523836999982, 48.893548031000073 ], [ -123.579743886999964, 48.893699860000083 ], [ -123.579950092000018, 48.893833737000115 ], [ -123.579991317999941, 48.8938605170001 ], [ -123.580225092999925, 48.894021280000082 ], [ -123.58047235799998, 48.894163954000099 ], [ -123.580733421000019, 48.894324571000084 ], [ -123.580939536999963, 48.894449472000112 ], [ -123.581173206999921, 48.894601239000046 ], [ -123.581420333, 48.894734928000112 ], [ -123.581749842999926, 48.894913167000034 ], [ -123.581997304999931, 48.895073842000023 ], [ -123.582327118999928, 48.895279078000094 ], [ -123.582436995999942, 48.895341508000044 ], [ -123.582766309999954, 48.895501775000085 ], [ -123.583027167, 48.895644393000076 ], [ -123.583260661999972, 48.895778152000041 ], [ -123.583466682999955, 48.895894054000081 ], [ -123.583727691999982, 48.896045653000044 ], [ -123.583947546, 48.896179485000069 ], [ -123.584181105999988, 48.896322226000073 ], [ -123.58430466599998, 48.896384568000052 ], [ -123.584551218999948, 48.89648375300002 ], [ -123.584655006999981, 48.89653515 ], [ -123.584734649999973, 48.896597588000063 ], [ -123.584767975999938, 48.896629397000012 ], [ -123.584984095999914, 48.897010003000076 ], [ -123.58556696399999, 48.898310012000081 ], [ -123.586323509999943, 48.899997383000013 ], [ -123.586718257999948, 48.900877712000124 ], [ -123.587412508999961, 48.902425888000046 ], [ -123.588262399999905, 48.902778406000152 ], [ -123.588403202999942, 48.902903198000097 ], [ -123.58840298299998, 48.903002590000071 ], [ -123.588402686999927, 48.903123096000101 ], [ -123.588269789999913, 48.903322796000118 ], [ -123.588272214999961, 48.903516079000049 ], [ -123.588280551999986, 48.904181730000133 ], [ -123.588306799999941, 48.906279903000055 ], [ -123.588134628999981, 48.907051515 ], [ -123.587925704999961, 48.907987692000084 ], [ -123.588025042999973, 48.908651272000064 ], [ -123.588395290999983, 48.910379649000056 ], [ -123.589852815999919, 48.911932462000053 ], [ -123.58989747399994, 48.912176743000018 ], [ -123.589830677999927, 48.912361751000027 ], [ -123.58893906599999, 48.913159947000054 ], [ -123.588848908999978, 48.913240655000067 ], [ -123.587887371999926, 48.914094580000025 ], [ -123.587158872999979, 48.91474148000006 ], [ -123.586583443999956, 48.915027519000049 ], [ -123.585638070999948, 48.915497369000015 ], [ -123.585094975999951, 48.91598334400009 ], [ -123.584305365999981, 48.916689916000102 ], [ -123.584168778999967, 48.916812137000086 ], [ -123.583920400999929, 48.918211591000023 ], [ -123.583886086999939, 48.918405020000066 ], [ -123.583905180000031, 48.918447300000018 ], [ -123.584820893999932, 48.92047228399999 ], [ -123.585704344999968, 48.922034898000057 ], [ -123.585720305999942, 48.922064792000114 ], [ -123.58576670399998, 48.922301001000022 ], [ -123.585741015999943, 48.922482418000079 ], [ -123.585728596999957, 48.922511909000043 ], [ -123.585695656999945, 48.922590089000053 ], [ -123.585647757999979, 48.92270376000004 ], [ -123.585493769999985, 48.922887705000072 ], [ -123.58538671, 48.922994502000087 ], [ -123.584828786999964, 48.923487208000097 ], [ -123.584826398999923, 48.923496079000117 ], [ -123.584687210999931, 48.924011092000022 ], [ -123.584706977999986, 48.924267766000064 ], [ -123.584711702999982, 48.924328802000055 ], [ -123.584861212999954, 48.92460241 ], [ -123.585175572999958, 48.924823999000076 ], [ -123.585941898, 48.925149036000114 ], [ -123.585956191999969, 48.92515510900008 ], [ -123.586621174999934, 48.925345802000024 ], [ -123.586811516999887, 48.925437502000101 ], [ -123.586900795999924, 48.9256098050001 ], [ -123.58691488399991, 48.925944389000108 ], [ -123.586992709999919, 48.926337989000032 ], [ -123.587503788, 48.927163091000054 ], [ -123.587685903999954, 48.927649301000024 ], [ -123.58764611299992, 48.927944789000072 ], [ -123.587584487999948, 48.928083101 ], [ -123.587239003999969, 48.928569012000025 ], [ -123.587130610999964, 48.928844985000104 ], [ -123.587143381999951, 48.929177706000125 ], [ -123.587196264999974, 48.929513522000072 ], [ -123.587299512999934, 48.93016959600002 ], [ -123.587269606999939, 48.930431999000085 ], [ -123.586937597999949, 48.931238090000122 ], [ -123.586817355999926, 48.931245672000045 ], [ -123.586473013000017, 48.931277339000111 ], [ -123.58640475299994, 48.9312776740001 ], [ -123.58622717499999, 48.931269592000064 ], [ -123.585940462999986, 48.931271041000116 ], [ -123.58587209299999, 48.931262380000099 ], [ -123.585571840999989, 48.93127289800006 ], [ -123.585544530999982, 48.931273046000058 ], [ -123.585230509999946, 48.931274641000059 ], [ -123.584889326999971, 48.931285367000051 ], [ -123.584862016999949, 48.931285514000081 ], [ -123.584684754999913, 48.931304399000084 ], [ -123.584575641999947, 48.931313951000099 ], [ -123.584344078999933, 48.931360098000091 ], [ -123.584058512999945, 48.931460510000086 ], [ -123.583881866999917, 48.931533365000092 ], [ -123.583800477999944, 48.93157876800008 ], [ -123.583529308999985, 48.931742040000096 ], [ -123.583394264999953, 48.931868667000067 ], [ -123.583286717999925, 48.932013152000081 ], [ -123.583151842999897, 48.932157762000053 ], [ -123.583098208999957, 48.932239008000067 ], [ -123.583098318999944, 48.932248003000026 ], [ -123.582923240999946, 48.932455791000045 ], [ -123.582788137999941, 48.932582407000091 ], [ -123.58276147799991, 48.932636514000123 ], [ -123.582680925999981, 48.932753883000061 ], [ -123.582591321, 48.932904823000072 ], [ -123.581015029999918, 48.932869235000084 ], [ -123.581014847999981, 48.932869117000067 ] ], [ [ -123.587890108999943, 48.912327369000103 ], [ -123.587913630999978, 48.911871249000036 ], [ -123.58720131199999, 48.911855197000108 ], [ -123.587177783, 48.912311317000018 ], [ -123.587890108999943, 48.912327369000103 ] ], [ [ -123.563120409999925, 48.882926238000096 ], [ -123.563138921999936, 48.88257067600005 ], [ -123.562722389999976, 48.882561187000086 ], [ -123.562799805999958, 48.881074430000083 ], [ -123.56232687799999, 48.88106365500014 ], [ -123.562301427999984, 48.881552357000061 ], [ -123.562549840999907, 48.881558016000064 ], [ -123.562479351, 48.882911634000024 ], [ -123.563120409999925, 48.882926238000096 ] ], [ [ -123.539556567, 48.879174855000052 ], [ -123.539669533999984, 48.87702558800008 ], [ -123.539112847999903, 48.877012783000097 ], [ -123.539123371999935, 48.876812580000028 ], [ -123.53871459699999, 48.87680317500007 ], [ -123.538709725000018, 48.876895829000048 ], [ -123.538987634999913, 48.876902223000087 ], [ -123.538941860999927, 48.877772887000027 ], [ -123.539034787, 48.877775025000105 ], [ -123.53897643, 48.878885015000087 ], [ -123.53919844799999, 48.878890123000154 ], [ -123.539183929999965, 48.879166284000071 ], [ -123.539556567, 48.879174855000052 ] ], [ [ -123.535568665999989, 48.901811728000027 ], [ -123.535564014999949, 48.901899994000118 ], [ -123.539166797999954, 48.901982889000053 ], [ -123.539192720999949, 48.901490062000107 ], [ -123.539065551999968, 48.901487139000068 ], [ -123.539044271999956, 48.901891699000025 ], [ -123.535568665999989, 48.901811728000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.863533864862688", "sL_AssetLoss": "24834", "sL_BldgLoss": "21445", "sL_StrLoss": "14590", "sL_NStrLoss": "6855", "sL_ContLoss": "3389", "geom_point": "0101000020E6100000BEF2A47569E35EC076CCD47FB1724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.550683864999883, 48.894179657000059 ], [ -123.556127847000013, 48.894304120000058 ], [ -123.555939819999963, 48.897903996000075 ], [ -123.55049542099999, 48.897779524000114 ], [ -123.550683864999883, 48.894179657000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12284583", "BldgCostT": "8208333", "sL_LossRatio": "0.776687028090524", "sL_AssetLoss": "97079", "sL_BldgLoss": "75400", "sL_StrLoss": "46410", "sL_NStrLoss": "28990", "sL_ContLoss": "21679", "geom_point": "0101000020E6100000129337C0CCE35EC0AB8D9005F5714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.561339182, 48.893117409000112 ], [ -123.561336161, 48.892847549000116 ], [ -123.560517637999965, 48.892851530000023 ], [ -123.560514620999939, 48.892581669000073 ], [ -123.560105362999963, 48.892583658000028 ], [ -123.56010234699994, 48.892313797000035 ], [ -123.559283834, 48.892317769000051 ], [ -123.559280824, 48.892047909000105 ], [ -123.558462313999925, 48.892051876000068 ], [ -123.55845930699995, 48.891782015000089 ], [ -123.558050055999928, 48.891783996000079 ], [ -123.558053058, 48.892053857000093 ], [ -123.558462313999925, 48.892051876000068 ], [ -123.55846531899995, 48.892321736000071 ], [ -123.559283834, 48.892317769000051 ], [ -123.559286843999985, 48.89258763000003 ], [ -123.560105362999963, 48.892583658000028 ], [ -123.560108377999981, 48.892853518000109 ], [ -123.560517637999965, 48.892851530000023 ], [ -123.56052065499992, 48.89312139000009 ], [ -123.561339182, 48.893117409000112 ], [ -123.561342202999981, 48.893387269000122 ], [ -123.56175146799994, 48.893385276000117 ], [ -123.561760539000019, 48.894194858000041 ], [ -123.560123449999935, 48.894202821000071 ], [ -123.560120435, 48.893932961000097 ], [ -123.559301894999948, 48.893936933000091 ], [ -123.559298884999919, 48.893667072000049 ], [ -123.558889616999963, 48.89366905700011 ], [ -123.558886608999941, 48.893399197000079 ], [ -123.558068077, 48.893403160000062 ], [ -123.558065072999923, 48.893133300000031 ], [ -123.557655808999968, 48.893135280000124 ], [ -123.557652808999961, 48.892865419000046 ], [ -123.557243545999981, 48.892867397000067 ], [ -123.557240547999982, 48.892597536000046 ], [ -123.556831286999966, 48.892599513000057 ], [ -123.556828289999928, 48.892329653000026 ], [ -123.556419032999926, 48.892331628000136 ], [ -123.556416038999913, 48.892061767 ], [ -123.556006783999962, 48.892063742000055 ], [ -123.556003790999952, 48.891793880000137 ], [ -123.555594538000022, 48.891795854000101 ], [ -123.555579586999912, 48.890446549000082 ], [ -123.555170345999926, 48.890448520000085 ], [ -123.555155406999987, 48.889099215000066 ], [ -123.554746174999977, 48.889101184 ], [ -123.554737218999918, 48.888291601000084 ], [ -123.556374116999947, 48.888283715000092 ], [ -123.556377111999922, 48.888553576000056 ], [ -123.558014017999966, 48.888545666000063 ], [ -123.558011013999987, 48.888275805000092 ], [ -123.557601789, 48.888277785000064 ], [ -123.557586787, 48.886928480000101 ], [ -123.557177573, 48.886930458000037 ], [ -123.557174574999934, 48.88666059800002 ], [ -123.556765363999929, 48.886662574000056 ], [ -123.556762367999966, 48.886392712000024 ], [ -123.556353159999972, 48.886394688000081 ], [ -123.556344177999961, 48.885585104000029 ], [ -123.557980986999979, 48.885577196000064 ], [ -123.557983988999979, 48.885847056000145 ], [ -123.559211601999948, 48.885841110000108 ], [ -123.559238685999958, 48.888269858000108 ], [ -123.559647909999981, 48.888267873000089 ], [ -123.559653933999954, 48.88880759400012 ], [ -123.560063161999949, 48.888805608000069 ], [ -123.560066174999946, 48.889075468000094 ], [ -123.560884636999972, 48.889071490000035 ], [ -123.560875580999934, 48.888261909000079 ], [ -123.560057133999948, 48.88826588600007 ], [ -123.560045078999963, 48.887186442 ], [ -123.561272723999963, 48.887180474000054 ], [ -123.561275743, 48.887450335000054 ], [ -123.561684960999955, 48.88744834200002 ], [ -123.56168798399996, 48.887718202 ], [ -123.562097201999947, 48.887716209000089 ], [ -123.562106277999973, 48.888525791000113 ], [ -123.562515503999975, 48.888523795000047 ], [ -123.562518530999967, 48.88879365600009 ], [ -123.562927759, 48.888791660000081 ], [ -123.562930787999989, 48.889061520000034 ], [ -123.563340018999924, 48.889059522000103 ], [ -123.563349112999958, 48.88986910300013 ], [ -123.561712165999921, 48.889877088000084 ], [ -123.561715188999969, 48.890146949000062 ], [ -123.562124426999944, 48.890144955000089 ], [ -123.562130478999933, 48.890684677000102 ], [ -123.562539721999926, 48.890682681000065 ], [ -123.562542749999963, 48.890952541000033 ], [ -123.562951994999978, 48.890950544000091 ], [ -123.562955024999951, 48.891220405000091 ], [ -123.563364272999976, 48.89121840600005 ], [ -123.563370336999981, 48.891758127000053 ], [ -123.563779587999989, 48.89175612800009 ], [ -123.563785656999983, 48.892295848000039 ], [ -123.564194912999966, 48.892293847000126 ], [ -123.564207060999948, 48.893373289000067 ], [ -123.562979265, 48.893379289000066 ], [ -123.562976234999951, 48.893109428000081 ], [ -123.561339182, 48.893117409000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50359834", "BldgCostT": "34203334", "sL_LossRatio": "0.772994216194252", "sL_AssetLoss": "494657", "sL_BldgLoss": "382367", "sL_StrLoss": "205450", "sL_NStrLoss": "176917", "sL_ContLoss": "112290", "geom_point": "0101000020E61000007FC6BFAE6AE35EC08F83013A82754840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.559996398999957, 48.926066914000018 ], [ -123.559704390999968, 48.925967506000077 ], [ -123.559464221999988, 48.925997146000064 ], [ -123.558441776000024, 48.926123397000055 ], [ -123.557133291999946, 48.925408802000028 ], [ -123.555583989999917, 48.924188600000107 ], [ -123.553617709999983, 48.922940898000036 ], [ -123.550653390999926, 48.921354907000122 ], [ -123.548361299999954, 48.919486915000036 ], [ -123.547563004999972, 48.91874689600008 ], [ -123.547144267999926, 48.918573445000035 ], [ -123.546280688999971, 48.9182156950001 ], [ -123.545160994999932, 48.917859390000039 ], [ -123.544817400999975, 48.917792968000121 ], [ -123.544997457999941, 48.914362878000077 ], [ -123.546590498999976, 48.914399395000011 ], [ -123.546619420999932, 48.91384801600001 ], [ -123.54886300199999, 48.913899405000045 ], [ -123.548884554, 48.913488170000065 ], [ -123.549235452999937, 48.91349620400009 ], [ -123.549245960999912, 48.91329565400013 ], [ -123.546360937999964, 48.913229574000113 ], [ -123.546549761999955, 48.909629802000048 ], [ -123.550469084, 48.909719555000031 ], [ -123.552604713999983, 48.911424408000109 ], [ -123.553238721999932, 48.911683100000076 ], [ -123.553507769999925, 48.911947158 ], [ -123.553629433999944, 48.912066531000107 ], [ -123.55442510499995, 48.912847294000137 ], [ -123.555491803, 48.913615005000118 ], [ -123.555622298999964, 48.914404493000077 ], [ -123.556846913999919, 48.915414613000067 ], [ -123.557254710999956, 48.915905988000056 ], [ -123.55767991099998, 48.916823883000035 ], [ -123.557753728999941, 48.917577493000067 ], [ -123.557775914999937, 48.917803708000136 ], [ -123.558037220999921, 48.918414196000064 ], [ -123.56060860800001, 48.920789299000056 ], [ -123.560657742999965, 48.920845159000066 ], [ -123.560854353999957, 48.92106857900005 ], [ -123.561061648999939, 48.921292465000136 ], [ -123.561254561999959, 48.92145346800001 ], [ -123.561461218999938, 48.92162337400007 ], [ -123.561557675999921, 48.921703875000091 ], [ -123.561860291999963, 48.921909287000098 ], [ -123.561956645999913, 48.921980790000049 ], [ -123.562190931999979, 48.922177544000085 ], [ -123.562342504999947, 48.922302757000026 ], [ -123.562576330999974, 48.922463536000059 ], [ -123.56285092, 48.922639232000037 ], [ -123.563012165999922, 48.922752352000039 ], [ -123.562549795, 48.923697801000053 ], [ -123.562418704999942, 48.924329110000066 ], [ -123.562634191999933, 48.925086304000075 ], [ -123.561958491999988, 48.926356687000109 ], [ -123.561576778999893, 48.926798489000099 ], [ -123.561323181999953, 48.926824292000042 ], [ -123.560770807999958, 48.926645012000101 ], [ -123.559996398999957, 48.926066914000018 ] ], [ [ -123.55821530899999, 48.922652620000108 ], [ -123.55825561099999, 48.921880783000105 ], [ -123.557947346999967, 48.921873754000067 ], [ -123.557965466999974, 48.921526760000077 ], [ -123.557363689999974, 48.921513034000064 ], [ -123.55730524799999, 48.922631865000064 ], [ -123.55821530899999, 48.922652620000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100197810", "BldgCostT": "65268189", "sL_LossRatio": "0.77790959193529", "sL_AssetLoss": "707983.3", "sL_BldgLoss": "550747", "sL_StrLoss": "292253", "sL_NStrLoss": "258494", "sL_ContLoss": "157236.3", "geom_point": "0101000020E6100000F25D084120E25EC09246B34F53744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.534837493999973, 48.915282196000106 ], [ -123.533300705999963, 48.915161214000101 ], [ -123.532780695999946, 48.915172688000027 ], [ -123.532535380999974, 48.915093243000037 ], [ -123.53152206499999, 48.914765075000126 ], [ -123.531407035999905, 48.914727822 ], [ -123.530897526999979, 48.91456279800007 ], [ -123.530740679999923, 48.914511994000094 ], [ -123.527444696999922, 48.912391488000097 ], [ -123.526374833999924, 48.911800089000131 ], [ -123.524507184999948, 48.910767598000071 ], [ -123.523773886999891, 48.910199208000044 ], [ -123.522279198999939, 48.909208586000069 ], [ -123.521579808999945, 48.908594097000041 ], [ -123.521331706999945, 48.908391250000129 ], [ -123.520159704999969, 48.907433093000165 ], [ -123.52034692899997, 48.907244603000017 ], [ -123.520512629999956, 48.907001597000125 ], [ -123.52264044399999, 48.903881403000035 ], [ -123.522913995999957, 48.903480244000022 ], [ -123.523142803999988, 48.903144708000113 ], [ -123.52587578899994, 48.900286592000015 ], [ -123.525950617999939, 48.900308801000115 ], [ -123.526155940999971, 48.900370838000057 ], [ -123.526429686999947, 48.900450538000079 ], [ -123.526771889999964, 48.900556923000053 ], [ -123.526853880999951, 48.900565549000056 ], [ -123.527059202999965, 48.90062758200002 ], [ -123.52738730099999, 48.900689038000074 ], [ -123.527688262999959, 48.900759631 ], [ -123.527756754, 48.900786303000089 ], [ -123.528098881999966, 48.900883710000123 ], [ -123.528413771999965, 48.900981200000032 ], [ -123.52864601099995, 48.901007138000097 ], [ -123.528837594999985, 48.901060239000046 ], [ -123.529097671999921, 48.901140010000056 ], [ -123.529193554999935, 48.90117554400004 ], [ -123.529316847, 48.901219967000031 ], [ -123.529344236999947, 48.901228831000111 ], [ -123.529686555999945, 48.90134420100005 ], [ -123.529796004, 48.901370696000079 ], [ -123.530042172999956, 48.901423530000059 ], [ -123.530247405999958, 48.901476562000092 ], [ -123.530274796999947, 48.901485428000115 ], [ -123.530575734999914, 48.901556022000065 ], [ -123.530903896999931, 48.901617477000109 ], [ -123.531127520999974, 48.90167081700006 ], [ -123.531377605, 48.901722100000029 ], [ -123.531378767999911, 48.901713616000102 ], [ -123.531460662999933, 48.901684362000054 ], [ -123.531568278999956, 48.901656677000105 ], [ -123.53184546300001, 48.90162213300006 ], [ -123.532185882999912, 48.901557595000035 ], [ -123.532349161999932, 48.901511863000039 ], [ -123.532485030999936, 48.901457245000095 ], [ -123.532770900999964, 48.901392959000113 ], [ -123.53297498100001, 48.901338043000095 ], [ -123.533315046999974, 48.901237526000067 ], [ -123.533560564999974, 48.901227390000074 ], [ -123.533669858999986, 48.901244874000092 ], [ -123.533984582999949, 48.901324377000059 ], [ -123.534312881999952, 48.90140383600005 ], [ -123.534614313999953, 48.901519377000071 ], [ -123.534931528999962, 48.901639755000097 ], [ -123.535094204999922, 48.901669007000088 ], [ -123.535264817999987, 48.902257701000067 ], [ -123.535981779999958, 48.903394196000086 ], [ -123.536460384999913, 48.903805299000062 ], [ -123.536706749999965, 48.903953027000085 ], [ -123.537142088999985, 48.904214038000063 ], [ -123.538058990999929, 48.904763812000027 ], [ -123.539292306999982, 48.905285987000113 ], [ -123.539516306999985, 48.905367365000139 ], [ -123.539707413999935, 48.905436764000115 ], [ -123.541034900999961, 48.905918899000028 ], [ -123.542875199999941, 48.90643419600007 ], [ -123.54370275199993, 48.906781308000099 ], [ -123.543691741999965, 48.906990970000052 ], [ -123.54095725799999, 48.90692818800008 ], [ -123.54095283499997, 48.907012337000047 ], [ -123.540768972999956, 48.907008114000128 ], [ -123.54065980699994, 48.909084547000077 ], [ -123.543732200999941, 48.909155088000063 ], [ -123.543705087999967, 48.909671413000083 ], [ -123.544470405999903, 48.909688971000051 ], [ -123.54443011599993, 48.910456439000093 ], [ -123.545964897999909, 48.910491632000074 ], [ -123.545776024999967, 48.914091397000085 ], [ -123.54140992899994, 48.913991222000057 ], [ -123.54140780299997, 48.914031686000101 ], [ -123.543669598999955, 48.914083603000037 ], [ -123.543488273, 48.917536012000078 ], [ -123.542115009999961, 48.917270505000033 ], [ -123.540977343999955, 48.916696946000044 ], [ -123.540922294999959, 48.916669195000061 ], [ -123.540206160999929, 48.916468140000092 ], [ -123.537507399999981, 48.9157103860001 ], [ -123.536212788999961, 48.915502790000048 ], [ -123.535939407999976, 48.915458925000081 ], [ -123.534837493999973, 48.915282196000106 ] ], [ [ -123.540365810999916, 48.913281058000074 ], [ -123.540370127999935, 48.913198949000083 ], [ -123.538841334999987, 48.913163815000104 ], [ -123.538837014999984, 48.913245924000108 ], [ -123.540365810999916, 48.913281058000074 ] ], [ [ -123.534185101999967, 48.906080889000073 ], [ -123.534286658, 48.904154156000104 ], [ -123.534120007999888, 48.904150317000045 ], [ -123.534099024999975, 48.9045484130001 ], [ -123.533657020999939, 48.904538229000067 ], [ -123.533630232999911, 48.905046322000075 ], [ -123.533467314999939, 48.90504256800002 ], [ -123.53345364099999, 48.905301927000068 ], [ -123.533233420999963, 48.905296851000053 ], [ -123.533213351999962, 48.905677431000093 ], [ -123.533052212999976, 48.905673718000159 ], [ -123.533035362999925, 48.905993234000029 ], [ -123.532971888999967, 48.905991771000025 ], [ -123.532954677999939, 48.906318135000049 ], [ -123.53237955500002, 48.906304879000039 ], [ -123.532317123000013, 48.907488390000019 ], [ -123.533083896999955, 48.90750606400016 ], [ -123.533039646, 48.908345151000084 ], [ -123.533890650999965, 48.908364760000055 ], [ -123.534011260999989, 48.906076883000019 ], [ -123.534185101999967, 48.906080889000073 ] ], [ [ -123.534781603999974, 48.903545632000039 ], [ -123.534822714, 48.902765481000095 ], [ -123.534604389999984, 48.902760453000106 ], [ -123.534563277999922, 48.90354060400005 ], [ -123.534781603999974, 48.903545632000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26626833", "BldgCostT": "17418333", "sL_LossRatio": "0.780387112870272", "sL_AssetLoss": "118642.4", "sL_BldgLoss": "92587", "sL_StrLoss": "56060", "sL_NStrLoss": "36527", "sL_ContLoss": "26055.4", "geom_point": "0101000020E61000006A852B981FD45EC027A3B193CD5C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31137387499993, 48.725266724000029 ], [ -123.311395777999962, 48.724884078000045 ], [ -123.309978709999911, 48.724848324000071 ], [ -123.309798342999954, 48.727997537000093 ], [ -123.30652445, 48.727914864000049 ], [ -123.306426911, 48.727210291000084 ], [ -123.305991297999967, 48.726922589000019 ], [ -123.305294415999967, 48.72662780300012 ], [ -123.304979782, 48.726097992000071 ], [ -123.304769197999974, 48.725072607000108 ], [ -123.304792080999931, 48.72449719200003 ], [ -123.304587203000011, 48.724146802000064 ], [ -123.304570512999973, 48.723840597000112 ], [ -123.304728047999944, 48.723589829000083 ], [ -123.30961682399996, 48.723713340000124 ], [ -123.309578273999975, 48.724386372000012 ], [ -123.309653334999922, 48.724388267000094 ], [ -123.309833697999963, 48.721239035000089 ], [ -123.31014234899996, 48.721246826000041 ], [ -123.310179818999984, 48.720592442000076 ], [ -123.315603021999934, 48.720729173000052 ], [ -123.315397262999952, 48.724329611000016 ], [ -123.315088589999974, 48.724321836000108 ], [ -123.315074231999958, 48.724573024000058 ], [ -123.316774965999954, 48.724615850000085 ], [ -123.31692227299996, 48.722037011000033 ], [ -123.322345661999961, 48.722173399000084 ], [ -123.322345198999983, 48.722181520000056 ], [ -123.323577316999888, 48.722212466000016 ], [ -123.323372161999913, 48.72581291100007 ], [ -123.321051686999937, 48.725754617000071 ], [ -123.320890116999962, 48.728587264000062 ], [ -123.316402094999944, 48.728474374000058 ], [ -123.316372160999904, 48.728998274000034 ], [ -123.310948000999986, 48.728861583000104 ], [ -123.31115412199992, 48.725261180000096 ], [ -123.31137387499993, 48.725266724000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6617500", "BldgCostT": "4300000", "sL_LossRatio": "0.713733629141917", "sL_AssetLoss": "69865", "sL_BldgLoss": "49865", "sL_StrLoss": "29370", "sL_NStrLoss": "20495", "sL_ContLoss": "20000", "geom_point": "0101000020E6100000FF67E62CA0D35EC0F750B207204D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.304954112999951, 48.599829744000033 ], [ -123.307081620999909, 48.5998836690001 ], [ -123.307244989999973, 48.600001305000035 ], [ -123.307845593999957, 48.600647890000047 ], [ -123.309097911999984, 48.601643393000053 ], [ -123.310003055999928, 48.603563994000055 ], [ -123.309392732, 48.603548547000024 ], [ -123.309326599999935, 48.604706226000133 ], [ -123.308906218999979, 48.604695585000037 ], [ -123.303916767999937, 48.604569151000042 ], [ -123.303951692999931, 48.603959011000022 ], [ -123.30412288299999, 48.600968026000039 ], [ -123.304887876999885, 48.600987427000071 ], [ -123.304954112999951, 48.599829744000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.814627569935962", "sL_AssetLoss": "23736", "sL_BldgLoss": "19336", "sL_StrLoss": "10604", "sL_NStrLoss": "8732", "sL_ContLoss": "4400", "geom_point": "0101000020E6100000A1D0FC7B7AD95EC05D24C4C76D594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.396855217999985, 48.701591596000128 ], [ -123.396350582999958, 48.701449198000027 ], [ -123.395902610999883, 48.701477698000147 ], [ -123.395681009999976, 48.701420354000028 ], [ -123.39571508099999, 48.7008054940001 ], [ -123.395869998999942, 48.700758496000084 ], [ -123.39665520799997, 48.700225789000058 ], [ -123.396992692999945, 48.700097609000117 ], [ -123.397088205999935, 48.699962302000131 ], [ -123.398320211999959, 48.699544991000046 ], [ -123.398414696999936, 48.699337112000137 ], [ -123.398395313999927, 48.698528094000075 ], [ -123.398284509999925, 48.698294597000057 ], [ -123.397902110999937, 48.698008308000063 ], [ -123.397436899999931, 48.697820311 ], [ -123.397208691999964, 48.698046793000024 ], [ -123.395863095, 48.697996898000035 ], [ -123.395166486, 48.69763090599999 ], [ -123.395177581999974, 48.697306198000042 ], [ -123.395416590999929, 48.696729393000062 ], [ -123.395742113999972, 48.696431703000016 ], [ -123.397802606999974, 48.695965987000093 ], [ -123.398401009999972, 48.695927485000041 ], [ -123.399122493999954, 48.696149701000074 ], [ -123.399533014999975, 48.696454502000051 ], [ -123.399757702, 48.69743430400009 ], [ -123.400442583999947, 48.698133598000048 ], [ -123.40047228799996, 48.698287395000058 ], [ -123.400188095999965, 48.698629305000054 ], [ -123.40008360399996, 48.699052203000043 ], [ -123.400182490999981, 48.699466712000074 ], [ -123.400660787999982, 48.69978860500008 ], [ -123.400608593999962, 48.700166001000063 ], [ -123.400501907, 48.700257089000047 ], [ -123.399929597999986, 48.700321195000043 ], [ -123.39981367899999, 48.700879500000092 ], [ -123.39874349199998, 48.701404994000029 ], [ -123.398388182999895, 48.701325297000082 ], [ -123.397886822999965, 48.701326705000028 ], [ -123.396855217999985, 48.701591596000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.84013353115727", "sL_AssetLoss": "16715.2", "sL_BldgLoss": "14043", "sL_StrLoss": "8325", "sL_NStrLoss": "5718", "sL_ContLoss": "2672.2", "geom_point": "0101000020E6100000C36F5C2978D45EC0B6D70617404F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31788445499997, 48.616929013000046 ], [ -123.319021086999967, 48.616957679000059 ], [ -123.321072191999932, 48.61831668800005 ], [ -123.322218078999938, 48.619312193000049 ], [ -123.323105604999967, 48.620410024000059 ], [ -123.323091026999961, 48.620666441000061 ], [ -123.319537854999936, 48.620576934000027 ], [ -123.317679321999933, 48.620530068000036 ], [ -123.317871066999956, 48.617164053000053 ], [ -123.31788445499997, 48.616929013000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7874167", "BldgCostT": "5166667", "sL_LossRatio": "0.894575661860978", "sL_AssetLoss": "27037.4", "sL_BldgLoss": "24187", "sL_StrLoss": "18260", "sL_NStrLoss": "5927", "sL_ContLoss": "2850.4", "geom_point": "0101000020E6100000B6C834A28DD45EC08B945611285B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.321250067999927, 48.715696392000027 ], [ -123.321302904999982, 48.714769708000077 ], [ -123.320936112999973, 48.714760487000021 ], [ -123.320975966999967, 48.714061552000089 ], [ -123.32006972399995, 48.714038765000062 ], [ -123.320189921999983, 48.711931426000028 ], [ -123.317677365999955, 48.711868209000151 ], [ -123.31771697899994, 48.711174318000097 ], [ -123.317350895999979, 48.711165103000113 ], [ -123.317556449999984, 48.707564583000071 ], [ -123.318176924999932, 48.707580203000049 ], [ -123.318406883999955, 48.707710002000105 ], [ -123.320685497999975, 48.709250999000034 ], [ -123.321110201999957, 48.709843492000118 ], [ -123.321662186999973, 48.711109607000047 ], [ -123.322957894999945, 48.711744789000122 ], [ -123.32366769699999, 48.712210508000055 ], [ -123.324037711999935, 48.712525303000035 ], [ -123.324627308999979, 48.713261588000123 ], [ -123.324848703999947, 48.713881088000136 ], [ -123.325122197999946, 48.714150294000028 ], [ -123.324948779999929, 48.714843894000047 ], [ -123.325060118999886, 48.71518429700015 ], [ -123.325605588999963, 48.715472003000095 ], [ -123.326028318999946, 48.715524697000063 ], [ -123.326678353999938, 48.715733901000064 ], [ -123.326672739999978, 48.715832561000077 ], [ -123.321250067999927, 48.715696392000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "319263030", "BldgCostT": "216498584", "sL_LossRatio": "0.804305853229051", "sL_AssetLoss": "1477663", "sL_BldgLoss": "1188493", "sL_StrLoss": "636270", "sL_NStrLoss": "552223", "sL_ContLoss": "289170", "geom_point": "0101000020E61000001DBC962DA5D25EC09F5CF0F577634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.310421390999963, 48.800800804000062 ], [ -123.309804406999959, 48.80067258800009 ], [ -123.309325004999948, 48.800660508000099 ], [ -123.308617889999979, 48.800729211000068 ], [ -123.307521901999976, 48.800796194000085 ], [ -123.306718181999926, 48.800984197000069 ], [ -123.305419691999973, 48.800622402000108 ], [ -123.30439168, 48.800406305000067 ], [ -123.303341951000021, 48.799977172000126 ], [ -123.303230347999971, 48.799931541000021 ], [ -123.302841207999961, 48.79977246400005 ], [ -123.302758616999981, 48.799738697000066 ], [ -123.302595751999917, 48.79973082500004 ], [ -123.302019407999964, 48.799702887000073 ], [ -123.30102760099993, 48.799718634 ], [ -123.3009916, 48.799719200000112 ], [ -123.30096666599999, 48.799710170000012 ], [ -123.300902880999956, 48.799687061000014 ], [ -123.300865727999934, 48.799673602000048 ], [ -123.300237572999919, 48.799446 ], [ -123.299181914999949, 48.799297655000096 ], [ -123.299189457999915, 48.799166702000029 ], [ -123.298401019999972, 48.799146756000077 ], [ -123.298473905999941, 48.797881638000028 ], [ -123.297831781999946, 48.797865389000044 ], [ -123.297773105999966, 48.798883617000087 ], [ -123.297175714999952, 48.798868496000104 ], [ -123.29643989399996, 48.798556796000078 ], [ -123.295349785, 48.798263300000073 ], [ -123.292423879999916, 48.79730926000007 ], [ -123.29249985300001, 48.795993431000056 ], [ -123.292322868, 48.795988942000122 ], [ -123.292268278000023, 48.796934358 ], [ -123.292172305999941, 48.79693192400002 ], [ -123.292155569, 48.79722176700006 ], [ -123.290620296, 48.796721113000046 ], [ -123.289822929999943, 48.796339461000066 ], [ -123.28918448499995, 48.796033904000112 ], [ -123.289050489999966, 48.795893510000035 ], [ -123.288521492999962, 48.795339306000123 ], [ -123.28809519899994, 48.795468209000049 ], [ -123.287727390999976, 48.795644502000115 ], [ -123.287406910999948, 48.796365504000079 ], [ -123.287289879999975, 48.796443706000062 ], [ -123.287121115999952, 48.796556495000118 ], [ -123.286819426999926, 48.796600206000029 ], [ -123.286500690999944, 48.796514602000066 ], [ -123.286445907999976, 48.796487353000025 ], [ -123.285784491, 48.796158433000116 ], [ -123.284160913, 48.795351003000107 ], [ -123.283790602999957, 48.795240278000094 ], [ -123.283791501999971, 48.795224749000063 ], [ -123.283733756999965, 48.795223280000108 ], [ -123.28369970299994, 48.795213097000051 ], [ -123.28404255099997, 48.794319029000107 ], [ -123.284170781999947, 48.793984641000058 ], [ -123.284241199999883, 48.793801005000084 ], [ -123.284304347999964, 48.793582460000053 ], [ -123.28432236399999, 48.793520041000107 ], [ -123.28458469399996, 48.792611897000015 ], [ -123.28478419299995, 48.79222039899999 ], [ -123.285014608999987, 48.791950391000071 ], [ -123.285333315999978, 48.791710371000072 ], [ -123.285618900999964, 48.791495284000135 ], [ -123.285764619999966, 48.79132689700004 ], [ -123.285839168999971, 48.791164969000057 ], [ -123.28583929499996, 48.791164690000102 ], [ -123.285837742999959, 48.791035436000051 ], [ -123.285835839999891, 48.790873534000113 ], [ -123.285830140999906, 48.790396719000071 ], [ -123.285800966999915, 48.787949890000071 ], [ -123.285798408999966, 48.787733962000061 ], [ -123.285790993999981, 48.78711335100008 ], [ -123.28578820499996, 48.786877594000025 ], [ -123.285753124999957, 48.78658547800007 ], [ -123.285718479999929, 48.786297205000089 ], [ -123.285551708999975, 48.78612530800013 ], [ -123.284668500999928, 48.785742219000085 ], [ -123.280936117999957, 48.784123202000075 ], [ -123.279269874999954, 48.782165395000071 ], [ -123.279292516999945, 48.78205780600009 ], [ -123.279373068999973, 48.782012851000083 ], [ -123.27940060799996, 48.781997484000044 ], [ -123.280053127999949, 48.781999702000093 ], [ -123.28038439599996, 48.7818665920001 ], [ -123.280384404999936, 48.78173799000011 ], [ -123.280384429999984, 48.781351157000167 ], [ -123.280384444999981, 48.78075745200011 ], [ -123.280384473999959, 48.780163711000029 ], [ -123.28038451499998, 48.779566412000058 ], [ -123.28035696100001, 48.778617041000082 ], [ -123.28034341199999, 48.778149273000011 ], [ -123.28031200099997, 48.777065101000069 ], [ -123.279644204999968, 48.777059311000059 ], [ -123.27888189, 48.777052716000135 ], [ -123.277970378999939, 48.77704479699999 ], [ -123.277900283999955, 48.777044198000056 ], [ -123.277484589999958, 48.777015604000049 ], [ -123.275968128000031, 48.777005415000133 ], [ -123.275676538, 48.776989190000108 ], [ -123.275615302999952, 48.776945089000016 ], [ -123.275220103, 48.776910885000127 ], [ -123.27449710799999, 48.776633202000049 ], [ -123.273816086999915, 48.776517801000061 ], [ -123.273611002999971, 48.77633838700006 ], [ -123.274637005999963, 48.77502240500008 ], [ -123.274644905999963, 48.775005892000067 ], [ -123.274934093999931, 48.774401500000074 ], [ -123.274981115999964, 48.774274663000014 ], [ -123.275214413999919, 48.773645199000057 ], [ -123.27525430299994, 48.773132502000053 ], [ -123.274269400999955, 48.772243799000115 ], [ -123.273627212999941, 48.771886291000072 ], [ -123.271950988999933, 48.771359392000072 ], [ -123.27152630199997, 48.771081601000056 ], [ -123.271144483999976, 48.770964895000105 ], [ -123.270027196999962, 48.770409387000029 ], [ -123.269278213999925, 48.77034819900009 ], [ -123.268241898999975, 48.770063313000016 ], [ -123.267558494999932, 48.769758500000087 ], [ -123.267089135999967, 48.769642645000026 ], [ -123.267202513999976, 48.767695935000063 ], [ -123.272631032000035, 48.767834840000063 ], [ -123.272583936999965, 48.768645098000079 ], [ -123.273206163999959, 48.768661002000037 ], [ -123.273266428999989, 48.767623927000095 ], [ -123.273313318999897, 48.766816980000037 ], [ -123.276627, 48.766901616000034 ], [ -123.276657209999939, 48.766381061000061 ], [ -123.277209761999941, 48.766395164000059 ], [ -123.277234409999934, 48.765970375000045 ], [ -123.277769924999959, 48.76598404000007 ], [ -123.2779281319999, 48.763256639000048 ], [ -123.277949451999945, 48.762889082000058 ], [ -123.27995937899999, 48.76294034700004 ], [ -123.280016552999939, 48.761953885000018 ], [ -123.276822163999952, 48.761872390000086 ], [ -123.276864394999961, 48.76114455400004 ], [ -123.276011178999937, 48.761122771000061 ], [ -123.276126388999941, 48.75913772400007 ], [ -123.276220119999891, 48.757522624000075 ], [ -123.277536817999987, 48.757556238000078 ], [ -123.277587411999903, 48.756683954000039 ], [ -123.27774545699999, 48.756687988000131 ], [ -123.277805659999942, 48.755649957000088 ], [ -123.279142180999955, 48.755684058000071 ], [ -123.27915004399999, 48.755548400000045 ], [ -123.279267392999884, 48.755589100000087 ], [ -123.279756382999949, 48.755587700000021 ], [ -123.279928136, 48.755635763000043 ], [ -123.280301074999926, 48.755740095000071 ], [ -123.280848387, 48.756089002000103 ], [ -123.281447105999987, 48.756114592000088 ], [ -123.282113006999936, 48.756311202000091 ], [ -123.282985289999885, 48.756326793000056 ], [ -123.283640807999944, 48.756694284000062 ], [ -123.283655641999943, 48.756697719000073 ], [ -123.284947798999895, 48.756996208 ], [ -123.285533996999959, 48.757229811000052 ], [ -123.286066100999975, 48.757318104000092 ], [ -123.286419000999942, 48.757424895000085 ], [ -123.286775510000027, 48.757648502000045 ], [ -123.287291585999967, 48.757719699000099 ], [ -123.287714482999959, 48.757970395000093 ], [ -123.288069714999949, 48.757968892000108 ], [ -123.288751491999946, 48.758175511000076 ], [ -123.288791208, 48.758282299 ], [ -123.289133986999957, 48.758399104000077 ], [ -123.290454716999974, 48.758710995000101 ], [ -123.29087839099999, 48.759176688000075 ], [ -123.291466592999925, 48.759481492000134 ], [ -123.291752811999928, 48.75984890400013 ], [ -123.29178232, 48.760200706000091 ], [ -123.292382517999968, 48.760451298000135 ], [ -123.292710421, 48.760702002000123 ], [ -123.29273990199999, 48.760926991000069 ], [ -123.292631306999951, 48.761062282000125 ], [ -123.293218918, 48.76124890200002 ], [ -123.293885092999929, 48.761355702000074 ], [ -123.294756407999969, 48.761406996000126 ], [ -123.29512402, 48.761342902000074 ], [ -123.296827889999975, 48.762049301000083 ], [ -123.29707492199995, 48.762264402000056 ], [ -123.297145313999948, 48.762668808000029 ], [ -123.297268405999944, 48.762777108000101 ], [ -123.298411397999971, 48.762855390000098 ], [ -123.299156604999951, 48.76311077 ], [ -123.299242513999971, 48.763140206000053 ], [ -123.301000798999965, 48.7635774990001 ], [ -123.301602094999978, 48.763972015000014 ], [ -123.302234478999978, 48.76512989400009 ], [ -123.302115610999934, 48.765256036000075 ], [ -123.301477713999972, 48.765933103000179 ], [ -123.301290688999927, 48.766293397000062 ], [ -123.301875180999971, 48.766425893000097 ], [ -123.30236660099996, 48.766443004000038 ], [ -123.303062296999926, 48.766827498000069 ], [ -123.303144012999923, 48.766873094000061 ], [ -123.3032126199999, 48.766810400000118 ], [ -123.303574715999957, 48.766125393000088 ], [ -123.30382038299993, 48.766025695000067 ], [ -123.304064795, 48.766051299000075 ], [ -123.30454150099996, 48.766347586000045 ], [ -123.30487121199991, 48.766714990000025 ], [ -123.30502329199993, 48.767056793000044 ], [ -123.305282491, 48.767128011000068 ], [ -123.306002688999925, 48.767108108000052 ], [ -123.306699110999944, 48.767484109000065 ], [ -123.306782813999931, 48.767600904000062 ], [ -123.30671410199993, 48.767771793000072 ], [ -123.307043412999931, 48.7680951070001 ], [ -123.308148003, 48.768433999000059 ], [ -123.30911290899995, 48.768368510000087 ], [ -123.31023051499993, 48.768599201000029 ], [ -123.311019490999939, 48.768516591000022 ], [ -123.311320708000011, 48.768623394000095 ], [ -123.311388198999964, 48.768794404000047 ], [ -123.311948897999983, 48.769124797000089 ], [ -123.313968410999962, 48.769858200000016 ], [ -123.31424248699993, 48.770198604000043 ], [ -123.314243592999972, 48.770342502000069 ], [ -123.313961619999958, 48.771009004000078 ], [ -123.313759110999925, 48.771198391000013 ], [ -123.313712820999925, 48.770568898000072 ], [ -123.311627112999972, 48.769774205000033 ], [ -123.311461983999948, 48.769757103000046 ], [ -123.311300504999963, 48.769838287000056 ], [ -123.310894102999981, 48.770234188000067 ], [ -123.31089459199994, 48.770405100000083 ], [ -123.311183000999947, 48.770728385000027 ], [ -123.311009183999957, 48.771017506000113 ], [ -123.31120121099994, 48.771357898000097 ], [ -123.311322793999949, 48.771439099000119 ], [ -123.312535987999965, 48.771534494000015 ], [ -123.313357192999959, 48.772404714000061 ], [ -123.31458410499998, 48.772581295000087 ], [ -123.31502160399998, 48.772814894000135 ], [ -123.315388204000016, 48.772894584000085 ], [ -123.315907705999948, 48.773289188000078 ], [ -123.316550106999927, 48.773538399000081 ], [ -123.31701469799999, 48.773915798000132 ], [ -123.317220294, 48.77422908900008 ], [ -123.316884979999926, 48.774887093000117 ], [ -123.31713119599999, 48.775048088000112 ], [ -123.317756799999955, 48.775173399000067 ], [ -123.318551100999954, 48.775683300000019 ], [ -123.319577900999917, 48.77664320000008 ], [ -123.319812218999971, 48.777235599000079 ], [ -123.319826918000018, 48.777550404000102 ], [ -123.319435996999943, 48.777983387000091 ], [ -123.31932942, 48.778470400000096 ], [ -123.319099392999959, 48.778651290000013 ], [ -123.31862448499993, 48.778822205000026 ], [ -123.317304102999913, 48.778691184000138 ], [ -123.317141202999949, 48.778782298000088 ], [ -123.31718168699993, 48.778899109000079 ], [ -123.316870009999946, 48.778926200000065 ], [ -123.316253918999934, 48.778560203000026 ], [ -123.315667691999948, 48.778407801000071 ], [ -123.314670902, 48.77799759500008 ], [ -123.314454204999947, 48.778024697000014 ], [ -123.313790089999912, 48.778530209000053 ], [ -123.3136852799999, 48.778961796000033 ], [ -123.313752175, 48.779051493000097 ], [ -123.313085774999962, 48.779071495000053 ], [ -123.312951003999942, 48.77925228400008 ], [ -123.313088102999984, 48.779377688000089 ], [ -123.313062293000016, 48.779683901000034 ], [ -123.313650018999937, 48.780114 ], [ -123.313993590999956, 48.780491391000012 ], [ -123.314048000999932, 48.780625287000078 ], [ -123.313952612999969, 48.780689306000056 ], [ -123.31357328099989, 48.780653696000094 ], [ -123.31286259899997, 48.780350391000113 ], [ -123.311936213999914, 48.780091205000119 ], [ -123.311813305999976, 48.780326204000055 ], [ -123.311913096999945, 48.780747686000048 ], [ -123.311558480999963, 48.780938601000067 ], [ -123.311245700999947, 48.780929987000086 ], [ -123.310205490999948, 48.779926003000057 ], [ -123.309902290999929, 48.779467393000097 ], [ -123.309724087999939, 48.778964611000085 ], [ -123.30973548399993, 48.778649894000047 ], [ -123.30961059, 48.778514603000062 ], [ -123.309310387999972, 48.778353602000067 ], [ -123.308535185999986, 48.778273903000063 ], [ -123.308017411999984, 48.778410593000118 ], [ -123.307816483999943, 48.778627091000033 ], [ -123.30770851599999, 48.779023003000106 ], [ -123.30772690799995, 48.779562784000092 ], [ -123.308822286999941, 48.780639503000103 ], [ -123.309487984999976, 48.781024703000085 ], [ -123.308781261999982, 48.781006885000039 ], [ -123.304592144999944, 48.780901170000092 ], [ -123.304610984999925, 48.780573272000041 ], [ -123.302954606999947, 48.780531427000071 ], [ -123.302967356999929, 48.780309652000042 ], [ -123.302212970999946, 48.780290585000039 ], [ -123.302209250999937, 48.780355265 ], [ -123.296779197999939, 48.780217865000076 ], [ -123.296855425999922, 48.778894956000052 ], [ -123.29537962199997, 48.778857566000127 ], [ -123.295357016999958, 48.779249636000067 ], [ -123.294603726999966, 48.779230542000093 ], [ -123.292442951999959, 48.779175745000067 ], [ -123.289927111999958, 48.779111888000067 ], [ -123.28995432899994, 48.778640731000088 ], [ -123.290099436000034, 48.776128682000063 ], [ -123.285292620999968, 48.77600651000013 ], [ -123.285273370999917, 48.776339213000078 ], [ -123.286338438999962, 48.776366302000049 ], [ -123.286293278999921, 48.77714705000006 ], [ -123.288661403999924, 48.777207243000106 ], [ -123.288634446999978, 48.777673672000063 ], [ -123.289832889999929, 48.777704113 ], [ -123.289777940999954, 48.778655296000103 ], [ -123.289624902999932, 48.781304169000116 ], [ -123.285856878999965, 48.781208411000151 ], [ -123.285854732999951, 48.78124549300005 ], [ -123.287231301999967, 48.781280492000036 ], [ -123.28722336599999, 48.781417714000042 ], [ -123.2877924899999, 48.781432178000045 ], [ -123.287785430999975, 48.781554265000089 ], [ -123.288281279999936, 48.781566866000041 ], [ -123.288167744, 48.783530835000136 ], [ -123.288468090999984, 48.78353846600001 ], [ -123.288347422999905, 48.785625841000126 ], [ -123.28966637399999, 48.78565934000013 ], [ -123.289520947999918, 48.788175979000059 ], [ -123.290888353999947, 48.788210691000067 ], [ -123.291180571999959, 48.788218107000084 ], [ -123.291103718999977, 48.789548779000079 ], [ -123.291093629999963, 48.789723445000028 ], [ -123.291209000999984, 48.789726373000065 ], [ -123.292395720999963, 48.789756480000108 ], [ -123.292337635999971, 48.790762581000124 ], [ -123.292798566, 48.790774271000089 ], [ -123.292719620999947, 48.792141908000076 ], [ -123.295354957999933, 48.792208709000079 ], [ -123.29518170199999, 48.795212776000106 ], [ -123.295515887999969, 48.795221241000071 ], [ -123.295574608, 48.794203008000075 ], [ -123.297023254999985, 48.794239695000066 ], [ -123.297067388999977, 48.793473942000034 ], [ -123.300648944999949, 48.793564562 ], [ -123.300802084999972, 48.79090382600004 ], [ -123.30623338599996, 48.79104101800008 ], [ -123.306208167999927, 48.7914800880001 ], [ -123.308597628999948, 48.791540357000038 ], [ -123.308590421999952, 48.791665938000087 ], [ -123.312235007999931, 48.791757761000035 ], [ -123.31214205299996, 48.793379714 ], [ -123.311554208999922, 48.793443107000073 ], [ -123.311242384999943, 48.793559900000069 ], [ -123.310233906999912, 48.79346449600007 ], [ -123.309800407999916, 48.793690987000112 ], [ -123.309678203999923, 48.793905983000052 ], [ -123.30958682, 48.794374601000108 ], [ -123.309670484999941, 48.794562598 ], [ -123.310773188999931, 48.794551206000065 ], [ -123.312062310999977, 48.794770994000039 ], [ -123.312031779999941, 48.795303662000038 ], [ -123.31093908099993, 48.795199200000077 ], [ -123.309861477999945, 48.794931394000081 ], [ -123.309616211, 48.794716397000037 ], [ -123.308702706999924, 48.794692193000067 ], [ -123.308185378999895, 48.794450098000013 ], [ -123.307326978999953, 48.794461497000086 ], [ -123.306059620999974, 48.794339005000083 ], [ -123.305624286999929, 48.794448597000013 ], [ -123.30489470699996, 48.795142196 ], [ -123.303505413999957, 48.79511090200009 ], [ -123.303260200999915, 48.795183502000043 ], [ -123.303002109999966, 48.795454085000124 ], [ -123.302511915000011, 48.795445604000065 ], [ -123.302336523999941, 48.795509702000111 ], [ -123.302191103999917, 48.796355684000105 ], [ -123.302358389999952, 48.796814189 ], [ -123.302712888999963, 48.796975207000074 ], [ -123.303872402999943, 48.797205888000086 ], [ -123.304116341999958, 48.797304456000084 ], [ -123.304102053999912, 48.797552999000104 ], [ -123.304773401999952, 48.797569948000081 ], [ -123.305155395, 48.79772429300008 ], [ -123.30576979199995, 48.798288310000054 ], [ -123.305717204999979, 48.798469206000028 ], [ -123.305751166999968, 48.798716469000027 ], [ -123.305815987999935, 48.799188388000054 ], [ -123.30603508199998, 48.799359294000091 ], [ -123.306650912999956, 48.799554395000094 ], [ -123.307207993999967, 48.799544514000026 ], [ -123.309499989999921, 48.800195308000085 ], [ -123.31071190399993, 48.800290699000094 ], [ -123.310848506999946, 48.800245209000089 ], [ -123.31110439299999, 48.799813604000107 ], [ -123.310377301999935, 48.798969083000031 ], [ -123.311016516999985, 48.798940606000023 ], [ -123.311802249, 48.799222635000064 ], [ -123.312235543000014, 48.799671111000102 ], [ -123.312394718999926, 48.799954926000041 ], [ -123.313601262999939, 48.801020813000051 ], [ -123.313787089999934, 48.801876951000033 ], [ -123.311671298999954, 48.801180197000086 ], [ -123.310421390999963, 48.800800804000062 ] ], [ [ -123.28421681099999, 48.780785527000049 ], [ -123.284221568999953, 48.780703349000078 ], [ -123.28382268499999, 48.78069319800003 ], [ -123.283817926, 48.780775376000044 ], [ -123.28421681099999, 48.780785527000049 ] ], [ [ -123.279540553999965, 48.776909266000118 ], [ -123.279630913999966, 48.775350957000043 ], [ -123.279392092999956, 48.775344868000097 ], [ -123.279301725999957, 48.776903178000083 ], [ -123.279540553999965, 48.776909266000118 ] ], [ [ -123.30458970199993, 48.776404926000076 ], [ -123.304671471999924, 48.776422692000104 ], [ -123.304889255999981, 48.776422110000055 ], [ -123.305120542999973, 48.776403508000058 ], [ -123.305446769999918, 48.776330678000043 ], [ -123.305609664999977, 48.776258284000079 ], [ -123.305663771999917, 48.776204136000111 ], [ -123.305712259999922, 48.776078274000021 ], [ -123.305716492, 48.776005761000128 ], [ -123.305712514999954, 48.775951804000044 ], [ -123.305602782999941, 48.775683189000091 ], [ -123.305619284999977, 48.77539699600009 ], [ -123.305543614, 48.775153488000079 ], [ -123.305934693999944, 48.77508770500004 ], [ -123.306581888999943, 48.775322989000102 ], [ -123.306930414999925, 48.775644593000038 ], [ -123.307408585999923, 48.775886512000113 ], [ -123.30752761799999, 48.776230201000025 ], [ -123.307859384999986, 48.776440493000095 ], [ -123.30864861399999, 48.776592900000033 ], [ -123.30879600899999, 48.776583089000084 ], [ -123.30926750899998, 48.776420091000084 ], [ -123.309753704999949, 48.77635838000004 ], [ -123.311735411999976, 48.77657599500008 ], [ -123.311845984999934, 48.776069607000075 ], [ -123.312028502999937, 48.775848803 ], [ -123.312444778999961, 48.775535706000021 ], [ -123.312751304999935, 48.775405503000059 ], [ -123.313119093999944, 48.775676204000064 ], [ -123.31338771199998, 48.775804582000099 ], [ -123.313493783999888, 48.775780294000064 ], [ -123.313590808999919, 48.77569979599999 ], [ -123.313779819000032, 48.775413389000057 ], [ -123.314303597999981, 48.775240010000076 ], [ -123.314630910999966, 48.775102189000087 ], [ -123.31482790599992, 48.774914302000049 ], [ -123.314435204999967, 48.77467371200003 ], [ -123.314256089999972, 48.77452680500005 ], [ -123.31422611, 48.774384502000061 ], [ -123.314271406999964, 48.774139587000057 ], [ -123.314462091999928, 48.773705397000121 ], [ -123.31404012199998, 48.773502799000035 ], [ -123.31206477399999, 48.772558997000033 ], [ -123.310133801999896, 48.771695495000088 ], [ -123.309648692999957, 48.771550818000065 ], [ -123.308230807999962, 48.770559604000113 ], [ -123.308115601999987, 48.77043589100002 ], [ -123.308086996000014, 48.770270303000068 ], [ -123.308099067999976, 48.770137670000096 ], [ -123.308103989999921, 48.770083866000071 ], [ -123.308116484999957, 48.769946503000014 ], [ -123.307851416999966, 48.769947007000013 ], [ -123.307319313999983, 48.770029197000127 ], [ -123.307316924999938, 48.770029027000085 ], [ -123.306957988999955, 48.770001995000065 ], [ -123.306488796999929, 48.769887396000065 ], [ -123.305288597, 48.769320796000066 ], [ -123.305563110999955, 48.768493997000043 ], [ -123.305548785, 48.768316097000124 ], [ -123.305408108999956, 48.768115992000084 ], [ -123.305170123999957, 48.767952303000058 ], [ -123.304802426, 48.767823099000047 ], [ -123.303951720999976, 48.767607803000089 ], [ -123.303540402999886, 48.767622695000064 ], [ -123.303007090999969, 48.767609192000116 ], [ -123.302717202999986, 48.767549832000078 ], [ -123.302429385999957, 48.767490899000045 ], [ -123.301289493999931, 48.767106108000057 ], [ -123.300629811, 48.766832496000092 ], [ -123.300344885999891, 48.766676222000086 ], [ -123.300316186999964, 48.766660494000057 ], [ -123.300115793999922, 48.766483297000065 ], [ -123.300024754999981, 48.766265199000067 ], [ -123.299808797999944, 48.765748087000112 ], [ -123.299565714999957, 48.765295805000108 ], [ -123.299563796999919, 48.765163296000132 ], [ -123.299649600999956, 48.765018497000057 ], [ -123.300319100999971, 48.764602788000055 ], [ -123.300356780999977, 48.764491105000054 ], [ -123.300267901999945, 48.764334697000059 ], [ -123.29986219199999, 48.764158617000071 ], [ -123.299366983999988, 48.764026192000117 ], [ -123.297935984, 48.763859302000107 ], [ -123.297167001999966, 48.763643313000095 ], [ -123.296502402999948, 48.763456097000073 ], [ -123.29472361699996, 48.762793609000028 ], [ -123.293677009999925, 48.76244249800002 ], [ -123.293419705999966, 48.762402691000091 ], [ -123.292296697999987, 48.762434590000034 ], [ -123.291940590999957, 48.76248320300008 ], [ -123.291655199999965, 48.762836492000119 ], [ -123.291678705999971, 48.763324696000112 ], [ -123.29172938399995, 48.763553188000124 ], [ -123.29164310799996, 48.763705982000069 ], [ -123.291198556999944, 48.764159325000037 ], [ -123.291026511, 48.764334814000151 ], [ -123.290415104999937, 48.765014208000061 ], [ -123.290144097999985, 48.765189389000106 ], [ -123.289875484999939, 48.765298 ], [ -123.289410115999942, 48.765424999000118 ], [ -123.288116782999964, 48.765580492000069 ], [ -123.287394510999917, 48.765780191 ], [ -123.286315213999927, 48.766183594999987 ], [ -123.285829007999965, 48.766365101000154 ], [ -123.285286413999984, 48.766417987000189 ], [ -123.28429820499997, 48.766561388000127 ], [ -123.284005422999925, 48.76664050400008 ], [ -123.28370948599995, 48.766822194000092 ], [ -123.283487895999954, 48.767058994000053 ], [ -123.283399495999944, 48.767247014000127 ], [ -123.283370607999956, 48.767746496000029 ], [ -123.283862089999971, 48.76869369300001 ], [ -123.28395031, 48.768955495000093 ], [ -123.283669488999948, 48.769743394000066 ], [ -123.284042314999965, 48.770394594000052 ], [ -123.284243799999985, 48.770389788000045 ], [ -123.285222811, 48.770664386000064 ], [ -123.286882585999948, 48.771224889000067 ], [ -123.287508191999919, 48.771524688000092 ], [ -123.287825518999981, 48.771679699000103 ], [ -123.289623593999963, 48.772271595000092 ], [ -123.289845586999959, 48.772286306000098 ], [ -123.290176208999952, 48.772164905000061 ], [ -123.290432182999922, 48.772015498000044 ], [ -123.290485679999975, 48.771935692000035 ], [ -123.29057988699999, 48.771717304000077 ], [ -123.290744382999932, 48.771574511000097 ], [ -123.291104993999923, 48.771426800000071 ], [ -123.291710087999931, 48.7713042990001 ], [ -123.292630815999985, 48.771720597000041 ], [ -123.292857001999948, 48.771757014000073 ], [ -123.293064916999938, 48.771736201000117 ], [ -123.293283992999974, 48.771659689000082 ], [ -123.293484500999924, 48.771530512000091 ], [ -123.295882404999986, 48.772092385000114 ], [ -123.29644720099995, 48.771727294000044 ], [ -123.296627721, 48.771661497000103 ], [ -123.297077088999913, 48.771575603000024 ], [ -123.297071486999982, 48.772639897000055 ], [ -123.298060391999925, 48.774233295000023 ], [ -123.298224799999971, 48.77442309200007 ], [ -123.298442707999982, 48.774605297000079 ], [ -123.298827105999933, 48.774822399000101 ], [ -123.299180801999924, 48.774934996000084 ], [ -123.299924806999968, 48.775116010000048 ], [ -123.30067318499999, 48.77517459700011 ], [ -123.301257285999952, 48.77534711400007 ], [ -123.301527385999947, 48.775259296000044 ], [ -123.301782508999935, 48.775149485000036 ], [ -123.302482597999983, 48.77519601200008 ], [ -123.303784796999977, 48.77571660800006 ], [ -123.304321587999965, 48.776144695000042 ], [ -123.304447777999926, 48.776293518000088 ], [ -123.304494084999988, 48.776351181000045 ], [ -123.30458970199993, 48.776404926000076 ] ], [ [ -123.29157636099994, 48.775548409000052 ], [ -123.291651457999961, 48.774247513000056 ], [ -123.290984964999922, 48.774230596000031 ], [ -123.29094360299996, 48.774946956000058 ], [ -123.290577632999899, 48.774937664000035 ], [ -123.290543875999944, 48.775522199000065 ], [ -123.29157636099994, 48.775548409000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.833315470959352", "sL_AssetLoss": "13995.9", "sL_BldgLoss": "11663", "sL_StrLoss": "7050", "sL_NStrLoss": "4613", "sL_ContLoss": "2332.9", "geom_point": "0101000020E6100000635F362A05D35EC0C113A37CFB544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.297849114999963, 48.665383902000016 ], [ -123.297644415999969, 48.665250101000126 ], [ -123.29727718499997, 48.665277097000057 ], [ -123.296937596999925, 48.664963800000102 ], [ -123.296272921, 48.665064904000047 ], [ -123.295591492999932, 48.664849892000085 ], [ -123.295020683999937, 48.664878291000051 ], [ -123.294505780999927, 48.665077698000125 ], [ -123.29444502699999, 48.665077981000074 ], [ -123.29457784500002, 48.662768884000066 ], [ -123.299994338999966, 48.662906422000098 ], [ -123.299981711999976, 48.663126382000065 ], [ -123.300590925999956, 48.663141834000101 ], [ -123.300309585999969, 48.66353389800004 ], [ -123.299418019999919, 48.66422889800009 ], [ -123.299459787999965, 48.664479603000089 ], [ -123.299325897999935, 48.664669008000054 ], [ -123.298809489999883, 48.664841293000094 ], [ -123.298853007, 48.665237193000038 ], [ -123.298704679999943, 48.665399601000054 ], [ -123.297849114999963, 48.665383902000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6665834", "BldgCostT": "4333334", "sL_LossRatio": "0.826027736503219", "sL_AssetLoss": "40380", "sL_BldgLoss": "33355", "sL_StrLoss": "21910", "sL_NStrLoss": "11445", "sL_ContLoss": "7025", "geom_point": "0101000020E6100000FF1BC58377D05EC0FF3252CE1B604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.252625167999938, 48.751064382000031 ], [ -123.252752934999961, 48.748881224000051 ], [ -123.258179234999901, 48.749020869000091 ], [ -123.258116058999974, 48.750102530000063 ], [ -123.261426485999962, 48.750187587000092 ], [ -123.261216443999928, 48.753787747000018 ], [ -123.260578991999935, 48.753771376000053 ], [ -123.260344892999967, 48.753519704000055 ], [ -123.259934405999928, 48.753385802000032 ], [ -123.259893577999918, 48.753169398000111 ], [ -123.259633801999954, 48.75293580400006 ], [ -123.259264892999937, 48.752774813 ], [ -123.257548606999976, 48.752356104000107 ], [ -123.256880307999921, 48.751817784000096 ], [ -123.256021611999969, 48.751514393000086 ], [ -123.253707606999953, 48.751347791000072 ], [ -123.252625167999938, 48.751064382000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28974834", "BldgCostT": "18983334", "sL_LossRatio": "0.825448717743664", "sL_AssetLoss": "156306.5", "sL_BldgLoss": "129023", "sL_StrLoss": "82570", "sL_NStrLoss": "46453", "sL_ContLoss": "27283.5", "geom_point": "0101000020E6100000D0560CF41CD15EC02AFB6CECAB614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.260612499999979, 48.76614111200012 ], [ -123.260423493999923, 48.76608690000009 ], [ -123.260096702999974, 48.766132493000072 ], [ -123.260055919999957, 48.766061302000054 ], [ -123.260285101999898, 48.765718108000101 ], [ -123.260174106999926, 48.765574183000076 ], [ -123.258592994, 48.765003098000051 ], [ -123.258145280999926, 48.765048697000104 ], [ -123.257496346999986, 48.76491325900016 ], [ -123.257462980999932, 48.764906295000074 ], [ -123.257214322999971, 48.764639825000124 ], [ -123.256943306999929, 48.764349392000057 ], [ -123.257037686999951, 48.763989093000113 ], [ -123.257594211999916, 48.763826687000048 ], [ -123.258136221999976, 48.763510500000045 ], [ -123.258135311, 48.763329705000096 ], [ -123.257781983999948, 48.763178692000068 ], [ -123.257928216999971, 48.762781297000117 ], [ -123.258448919999978, 48.763150205000038 ], [ -123.258637300999908, 48.763086096000052 ], [ -123.258800612999963, 48.762905190000069 ], [ -123.259208192999921, 48.762895306000111 ], [ -123.259413000999984, 48.762940893000057 ], [ -123.259754401999942, 48.763183001000101 ], [ -123.260053399999933, 48.763200101000088 ], [ -123.260419302999964, 48.762937986000061 ], [ -123.260079013999956, 48.762768499000046 ], [ -123.260213488999966, 48.762596212000091 ], [ -123.260598237999929, 48.762610823000024 ], [ -123.26066378899999, 48.762613304000084 ], [ -123.260951297999924, 48.762892386000033 ], [ -123.261222706999888, 48.762863884000161 ], [ -123.261848320999889, 48.76266460100004 ], [ -123.262847193999946, 48.762214262000086 ], [ -123.262787891999935, 48.763231 ], [ -123.2629353129999, 48.76323478300008 ], [ -123.262930134, 48.763323569000065 ], [ -123.266328097999946, 48.763410693000026 ], [ -123.266320864999898, 48.763534863000118 ], [ -123.268069393999923, 48.763579653000136 ], [ -123.26810657499999, 48.762940968000059 ], [ -123.267680061999926, 48.762930046000044 ], [ -123.267793786999931, 48.760976646000088 ], [ -123.267879709999974, 48.760888586000064 ], [ -123.268458311999922, 48.759816096000087 ], [ -123.267816690999936, 48.759242193000034 ], [ -123.267594349999939, 48.759123611000078 ], [ -123.266724310999976, 48.758659688000058 ], [ -123.265633302999973, 48.758193989000063 ], [ -123.265013628999952, 48.75781305000001 ], [ -123.265058731999915, 48.757039049000063 ], [ -123.26519130399997, 48.756728498000058 ], [ -123.26512218000002, 48.756486298000084 ], [ -123.265093049999919, 48.756450078000057 ], [ -123.265104333999915, 48.756256448000045 ], [ -123.266682117999949, 48.75629689100009 ], [ -123.266684470999934, 48.756256487000037 ], [ -123.272111663999937, 48.756395421000086 ], [ -123.272066656999954, 48.757169826000045 ], [ -123.272113509999912, 48.757171023000133 ], [ -123.271981941999925, 48.759434659000064 ], [ -123.273317204999927, 48.759468799000061 ], [ -123.273299231999914, 48.759778143000077 ], [ -123.27452243499999, 48.75980940200003 ], [ -123.275154556999922, 48.759825550000095 ], [ -123.274968888999965, 48.763023291000074 ], [ -123.274945523999975, 48.763425681000086 ], [ -123.273516574999988, 48.763389171000064 ], [ -123.273386483999943, 48.765628214000117 ], [ -123.27199869699993, 48.765592737000134 ], [ -123.270647726000036, 48.765558185000067 ], [ -123.270524684999913, 48.767673578000021 ], [ -123.265370083999983, 48.767541585000053 ], [ -123.265303732999911, 48.768680102000133 ], [ -123.265281891000015, 48.768679542000037 ], [ -123.265252187999963, 48.769189198000042 ], [ -123.264997016, 48.769126206000095 ], [ -123.263949113999914, 48.768939597000063 ], [ -123.263035398999989, 48.76855511200008 ], [ -123.262503502999976, 48.768510888000044 ], [ -123.261303790999989, 48.76800110100006 ], [ -123.259695316999938, 48.767555293000029 ], [ -123.259504901999961, 48.767402911000111 ], [ -123.259569413999927, 48.767232890000081 ], [ -123.259692902999973, 48.766907290000113 ], [ -123.260574389999974, 48.766616690000077 ], [ -123.260710812999932, 48.766437299000074 ], [ -123.260612499999979, 48.76614111200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23530250", "BldgCostT": "15545000", "sL_LossRatio": "0.721811218691759", "sL_AssetLoss": "175992", "sL_BldgLoss": "127033", "sL_StrLoss": "65320", "sL_NStrLoss": "61713", "sL_ContLoss": "48959", "geom_point": "0101000020E6100000660B101E50D85EC03D2232EE7E574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.377885476999921, 48.688587963000032 ], [ -123.377943681999923, 48.687544378000041 ], [ -123.377622031, 48.687536458000054 ], [ -123.377725046999913, 48.6856895680001 ], [ -123.372802170999975, 48.685568238 ], [ -123.372980534999925, 48.682376142000074 ], [ -123.372717157999944, 48.682369645000065 ], [ -123.372762708999971, 48.68155443000007 ], [ -123.371819262999963, 48.681531149000122 ], [ -123.372239382999965, 48.681037395000033 ], [ -123.372264708999964, 48.680614408000103 ], [ -123.371841397999916, 48.680380913000079 ], [ -123.372288094999959, 48.680272615 ], [ -123.3727626, 48.679919403000021 ], [ -123.372786085999948, 48.679596093000086 ], [ -123.372690519999963, 48.679470802000033 ], [ -123.372757396999958, 48.679173093000038 ], [ -123.373230893, 48.67908200200003 ], [ -123.373364318999975, 48.678855506000041 ], [ -123.373676992999947, 48.678836999000069 ], [ -123.374127882999957, 48.678970901000127 ], [ -123.374472104999938, 48.679634599000103 ], [ -123.374864697999953, 48.679616109000072 ], [ -123.37559739199996, 48.679442301000044 ], [ -123.375719707999949, 48.679450890000091 ], [ -123.375994110999955, 48.679665902000103 ], [ -123.376980397999887, 48.679158906000112 ], [ -123.377484402999954, 48.679130404000034 ], [ -123.377809805999959, 48.679201599000045 ], [ -123.377921900999979, 48.679462203000099 ], [ -123.377970204999954, 48.680469195000043 ], [ -123.378246993999966, 48.680515057000029 ], [ -123.378158922999944, 48.682094522000099 ], [ -123.378405193999953, 48.682100585000107 ], [ -123.378439778999947, 48.681480294000032 ], [ -123.38193210899999, 48.681566213000053 ], [ -123.38202638199999, 48.679873049000086 ], [ -123.382080984999945, 48.679889504000052 ], [ -123.382828720999981, 48.679733582000082 ], [ -123.38612262, 48.679814490000062 ], [ -123.38636179599996, 48.680036198000018 ], [ -123.386390491999961, 48.680306800999979 ], [ -123.385838894999964, 48.681001812000048 ], [ -123.385788183999949, 48.681487492 ], [ -123.386538587999922, 48.681934699000045 ], [ -123.38704369899996, 48.682112693000114 ], [ -123.387016992999975, 48.682229511000038 ], [ -123.386799682999964, 48.682347692000064 ], [ -123.386777584999919, 48.682914499000042 ], [ -123.387568091999952, 48.68319940700006 ], [ -123.387473797999917, 48.683451498000061 ], [ -123.387493703999922, 48.684053886000065 ], [ -123.387780482999986, 48.684296004000025 ], [ -123.38785101900001, 48.68471050100009 ], [ -123.387786716999983, 48.685294407000114 ], [ -123.387545403999951, 48.685502303000071 ], [ -123.387695389999948, 48.685708792000106 ], [ -123.38769779899998, 48.685898296000069 ], [ -123.387048209999961, 48.686259988000053 ], [ -123.386721084, 48.686161704000035 ], [ -123.386163118999917, 48.686190199000031 ], [ -123.38570370799998, 48.686372499000107 ], [ -123.384901410999959, 48.686446597000071 ], [ -123.384073820000012, 48.686378204000057 ], [ -123.383392800999957, 48.686127489000036 ], [ -123.382290788, 48.68599650600013 ], [ -123.38203438, 48.686204499000105 ], [ -123.381518101999987, 48.686224407000097 ], [ -123.381263597999947, 48.686782706000081 ], [ -123.381904409999919, 48.687177189000053 ], [ -123.38332707, 48.688328074000076 ], [ -123.38330518399998, 48.688721258000058 ], [ -123.377885476999921, 48.688587963000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28560644", "BldgCostT": "18811523", "sL_LossRatio": "0.74923796564745", "sL_AssetLoss": "241787", "sL_BldgLoss": "181156", "sL_StrLoss": "96266", "sL_NStrLoss": "84890", "sL_ContLoss": "60631", "geom_point": "0101000020E6100000D5A5B183ABDA5EC0B02F4414345A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.418276693999942, 48.709881887000044 ], [ -123.417458296999925, 48.709669706000035 ], [ -123.416480501, 48.709789399000094 ], [ -123.415936100999929, 48.709756612000078 ], [ -123.41467520899999, 48.710048604000079 ], [ -123.413899896999936, 48.710015802000036 ], [ -123.413001083999973, 48.709812193000062 ], [ -123.412711700999964, 48.709717309000048 ], [ -123.412427783999973, 48.709624203000054 ], [ -123.412236019999938, 48.709481699000094 ], [ -123.412220588999901, 48.709221109000019 ], [ -123.412517710999936, 48.708778190000018 ], [ -123.412567114999931, 48.708338101000066 ], [ -123.412469700000017, 48.708077487000061 ], [ -123.412086005999967, 48.707647293000086 ], [ -123.411514396999905, 48.707594591000046 ], [ -123.411631209999882, 48.706874004000035 ], [ -123.411095187999976, 48.706147693000027 ], [ -123.410465091999953, 48.705654888000019 ], [ -123.409744495999931, 48.705505298000041 ], [ -123.409441316999946, 48.704921403000093 ], [ -123.409086680999948, 48.704724892000115 ], [ -123.408508104999925, 48.703952999000123 ], [ -123.40737690899999, 48.70340889300013 ], [ -123.407142502999946, 48.703202392000023 ], [ -123.407142697999987, 48.703022913000027 ], [ -123.407520701999943, 48.70283209800008 ], [ -123.407600106999922, 48.702642693000072 ], [ -123.407530890999908, 48.702292316000069 ], [ -123.40803230100002, 48.702272405000031 ], [ -123.408478992999932, 48.701929191000076 ], [ -123.408890891999945, 48.70075841000007 ], [ -123.40931041099995, 48.700540488000122 ], [ -123.410303884999905, 48.700725698000021 ], [ -123.410712009999898, 48.700878090000081 ], [ -123.411356196, 48.70145060600008 ], [ -123.411642495999928, 48.701548908000056 ], [ -123.411969222999971, 48.701547501000071 ], [ -123.413403788999943, 48.70098490400003 ], [ -123.413864514999915, 48.700695793000108 ], [ -123.414416390999975, 48.700163098000061 ], [ -123.415040885999986, 48.699926694000084 ], [ -123.415405888999956, 48.699844100000107 ], [ -123.416317599999928, 48.699868288000026 ], [ -123.417026918999952, 48.700171707000059 ], [ -123.417284494999961, 48.700188804000042 ], [ -123.418275605999938, 48.699896795000015 ], [ -123.418736596999906, 48.699868301000038 ], [ -123.418982189999952, 48.699902498000078 ], [ -123.419910395999977, 48.700457894000046 ], [ -123.420659695999987, 48.700617500000128 ], [ -123.421547307999944, 48.701108797000032 ], [ -123.42213259499999, 48.701249802000056 ], [ -123.422610687999949, 48.701617310000074 ], [ -123.422940891999971, 48.702038796000089 ], [ -123.423445408999939, 48.702379184000073 ], [ -123.423854993999953, 48.702503094000043 ], [ -123.424587279999983, 48.702374898000059 ], [ -123.424927712999931, 48.702419957000068 ], [ -123.42505041599999, 48.702436195000118 ], [ -123.42491742199995, 48.702867702000049 ], [ -123.424716206999946, 48.703111210000081 ], [ -123.42461351899999, 48.70375930000008 ], [ -123.42477668399998, 48.705522399000117 ], [ -123.42441901899997, 48.70645099899999 ], [ -123.423756001999934, 48.707019309000088 ], [ -123.423785610999985, 48.707136109000068 ], [ -123.42405790199993, 48.707288385000034 ], [ -123.424088190999953, 48.707504891000077 ], [ -123.423926413999965, 48.707721394000025 ], [ -123.423424800999939, 48.707920792000017 ], [ -123.422405606999959, 48.707888009000136 ], [ -123.420980802999978, 48.70830679700002 ], [ -123.420643887999958, 48.708605808000051 ], [ -123.420362719999957, 48.709028798000055 ], [ -123.420178103999959, 48.709803592000114 ], [ -123.419895886999939, 48.710101300000069 ], [ -123.419557293999958, 48.710246504000068 ], [ -123.418918207999937, 48.710239388000083 ], [ -123.418276693999942, 48.709881887000044 ] ], [ [ -123.417237450999934, 48.707769194000051 ], [ -123.417308048, 48.70648472200007 ], [ -123.418542208, 48.706514630000065 ], [ -123.41857132599992, 48.705984551000057 ], [ -123.419209568999975, 48.706000013000121 ], [ -123.419218408999967, 48.705839067000085 ], [ -123.420551128999932, 48.705871341000048 ], [ -123.420552682999954, 48.705843034000068 ], [ -123.418870460999969, 48.705802295000062 ], [ -123.418908197999926, 48.705115208000088 ], [ -123.41863919299999, 48.705108691000056 ], [ -123.418745085999916, 48.703180816000135 ], [ -123.418488204, 48.703174592000025 ], [ -123.418506546999964, 48.702840646000041 ], [ -123.417950804, 48.702827179000082 ], [ -123.417956798999924, 48.702718070000095 ], [ -123.417395490999951, 48.70270446500011 ], [ -123.41742070299992, 48.702245672000082 ], [ -123.417059210999966, 48.70223690800006 ], [ -123.417049483999961, 48.702413889000127 ], [ -123.416415047, 48.702398506000065 ], [ -123.416387884999892, 48.702892604000077 ], [ -123.416004329999964, 48.702883302000011 ], [ -123.415984187999968, 48.703249612000022 ], [ -123.415072112999979, 48.703227487000049 ], [ -123.415053567999934, 48.703564634000024 ], [ -123.41419912899994, 48.703543900000092 ], [ -123.414186145999977, 48.703779856000097 ], [ -123.413412435999959, 48.70376107500001 ], [ -123.413409840999975, 48.703808215000045 ], [ -123.414011884, 48.70382282900006 ], [ -123.413985015999955, 48.704311114000085 ], [ -123.414417898999957, 48.704321620000044 ], [ -123.414384576999936, 48.704927237000113 ], [ -123.414742123999986, 48.704935914000018 ], [ -123.414714489999966, 48.705438220000069 ], [ -123.414990145, 48.70544490800004 ], [ -123.414962251999938, 48.705951972000037 ], [ -123.41548675599995, 48.705964696000116 ], [ -123.415466128999938, 48.70633975500003 ], [ -123.415640873999962, 48.706343993000125 ], [ -123.415564414999949, 48.707734263000127 ], [ -123.416953480999936, 48.70776794500005 ], [ -123.41695379, 48.707762317000075 ], [ -123.417237450999934, 48.707769194000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.899968610455756", "sL_AssetLoss": "9875.9", "sL_BldgLoss": "8888", "sL_StrLoss": "6820", "sL_NStrLoss": "2068", "sL_ContLoss": "987.9", "geom_point": "0101000020E61000008365323D1DD45EC0D8EC2F587D5A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.31219872299998, 48.704658543000043 ], [ -123.31298565, 48.704678392000069 ], [ -123.313087688999985, 48.704800405000114 ], [ -123.314028594999911, 48.705518198000135 ], [ -123.314696294999919, 48.705669094000058 ], [ -123.315187380999959, 48.70588280000004 ], [ -123.31642981399996, 48.706888205000091 ], [ -123.317137905999971, 48.707047806000077 ], [ -123.317483075999974, 48.707195486000025 ], [ -123.317414559000014, 48.70839571000004 ], [ -123.311992771999911, 48.708259068000125 ], [ -123.31219872299998, 48.704658543000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.831474597273854", "sL_AssetLoss": "3228", "sL_BldgLoss": "2684", "sL_StrLoss": "1730", "sL_NStrLoss": "954", "sL_ContLoss": "544", "geom_point": "0101000020E61000001B683EE72ED35EC0839024EFB9554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.300023024000012, 48.670244802000063 ], [ -123.299994890999969, 48.66979609400012 ], [ -123.299395307999973, 48.669599607000102 ], [ -123.299000709999959, 48.669599609000038 ], [ -123.298554601999939, 48.669736295000106 ], [ -123.298243212999978, 48.669952803000093 ], [ -123.298021434999967, 48.670227119000081 ], [ -123.29809264699999, 48.668987596000122 ], [ -123.298999111999976, 48.669338994 ], [ -123.299680382999924, 48.669454303000109 ], [ -123.30052160399994, 48.66948000100011 ], [ -123.300917591999905, 48.669622406000059 ], [ -123.301490699999988, 48.670079586000043 ], [ -123.30147690699998, 48.670296002000015 ], [ -123.30115278699995, 48.670341600000057 ], [ -123.300526684999909, 48.670172097000048 ], [ -123.30032230399992, 48.670334483000033 ], [ -123.300119619999975, 48.670334498000145 ], [ -123.300023024000012, 48.670244802000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.865155195681511", "sL_AssetLoss": "18525", "sL_BldgLoss": "16027", "sL_StrLoss": "11060", "sL_NStrLoss": "4967", "sL_ContLoss": "2498", "geom_point": "0101000020E6100000C3665FFDC8D75EC0501D064E915C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.369031440999962, 48.721317184000085 ], [ -123.374454896999964, 48.721450922000102 ], [ -123.374253642999975, 48.725051468000039 ], [ -123.368829770999923, 48.724917721000018 ], [ -123.369031440999962, 48.721317184000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.867533735485896", "sL_AssetLoss": "2867.9", "sL_BldgLoss": "2488", "sL_StrLoss": "1576", "sL_NStrLoss": "912", "sL_ContLoss": "379.9", "geom_point": "0101000020E6100000D59FB3BB36D95EC052DD75990E574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.393053471999934, 48.679349928000107 ], [ -123.393068130999922, 48.679085544000031 ], [ -123.394713204999974, 48.679125808000066 ], [ -123.394709692, 48.679127590000128 ], [ -123.394654897999914, 48.679244293000124 ], [ -123.395485795999903, 48.679277090000014 ], [ -123.395581579999913, 48.679439498000129 ], [ -123.395541096999978, 48.679654490000068 ], [ -123.39503169299995, 48.680276888000101 ], [ -123.394637997999922, 48.68049480500008 ], [ -123.39447918899999, 48.680936297000137 ], [ -123.394550391999971, 48.681457598000073 ], [ -123.393233591999973, 48.681470390000044 ], [ -123.393191913999928, 48.681344998000021 ], [ -123.393405601999987, 48.680957699000018 ], [ -123.39288781, 48.680842297000027 ], [ -123.392736040999964, 48.680288235000063 ], [ -123.392788427999932, 48.679343439000043 ], [ -123.393053471999934, 48.679349928000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.816473299427845", "sL_AssetLoss": "25168", "sL_BldgLoss": "20549", "sL_StrLoss": "12240", "sL_NStrLoss": "8309", "sL_ContLoss": "4619", "geom_point": "0101000020E6100000EB920E6229D95EC0488556CCAD574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.394299307999987, 48.687521789000101 ], [ -123.393681698999927, 48.686804009000042 ], [ -123.393206607999957, 48.686868104000105 ], [ -123.392973711999915, 48.686626004000097 ], [ -123.392468685, 48.686376801000087 ], [ -123.392171014999974, 48.68639529000005 ], [ -123.391548589999971, 48.686740007000026 ], [ -123.39133071199997, 48.686739994000035 ], [ -123.391058213999898, 48.686633104000073 ], [ -123.391218606999942, 48.686110492000161 ], [ -123.391199809999975, 48.685453891000037 ], [ -123.391407206999986, 48.684310286000041 ], [ -123.390232998999977, 48.68360379800005 ], [ -123.390639814999957, 48.683404495000069 ], [ -123.390639712999942, 48.683270607000047 ], [ -123.390228711999981, 48.683082590000019 ], [ -123.389926577, 48.682695478000042 ], [ -123.389945850999965, 48.682348284000106 ], [ -123.390562702999929, 48.682316398000047 ], [ -123.391024903999963, 48.682143994000086 ], [ -123.391132635999924, 48.682039300000078 ], [ -123.391886330999952, 48.682057762000106 ], [ -123.391974905999987, 48.682276498000085 ], [ -123.392247003999955, 48.682302101000069 ], [ -123.392563406999955, 48.682571293000116 ], [ -123.39227999399999, 48.683075496000107 ], [ -123.392270716999946, 48.683489901000023 ], [ -123.39273328799996, 48.683622405000058 ], [ -123.393194301999941, 48.68348559700005 ], [ -123.394009408999977, 48.68339310700005 ], [ -123.394798708999957, 48.683561109000031 ], [ -123.395166903999922, 48.683811788000128 ], [ -123.395264495999953, 48.684045406000045 ], [ -123.395243587999985, 48.684945505000037 ], [ -123.394935895999964, 48.685603407000038 ], [ -123.39507249, 48.6857288080001 ], [ -123.395480287999987, 48.68558350700004 ], [ -123.395671707999938, 48.685852705000094 ], [ -123.395999111999984, 48.687660009000034 ], [ -123.395906904999919, 48.688020312000049 ], [ -123.395186404999961, 48.687942010000015 ], [ -123.394926191999986, 48.687825213000096 ], [ -123.394299307999987, 48.687521789000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17894167", "BldgCostT": "10866667", "sL_LossRatio": "0.762085850556439", "sL_AssetLoss": "78625", "sL_BldgLoss": "59919", "sL_StrLoss": "35620", "sL_NStrLoss": "24299", "sL_ContLoss": "18706", "geom_point": "0101000020E6100000273F56AEFFD35EC097C73FD8CE644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.311552998999957, 48.79094132500007 ], [ -123.311568565999934, 48.790669739000101 ], [ -123.309895154999964, 48.790627582000106 ], [ -123.310101628999959, 48.787027542000018 ], [ -123.31270279899995, 48.787093059 ], [ -123.312733614999942, 48.786555179000047 ], [ -123.308382750999954, 48.786445554000075 ], [ -123.308589321999946, 48.782845492000064 ], [ -123.311134200999987, 48.782909635000145 ], [ -123.311533715999957, 48.783268595000024 ], [ -123.3115351899999, 48.783654589000093 ], [ -123.311985886999963, 48.783888094000112 ], [ -123.311509014999928, 48.78391660500003 ], [ -123.311334503999959, 48.784068993000041 ], [ -123.31196518099992, 48.784940600000013 ], [ -123.312307511999947, 48.7851186030001 ], [ -123.312703207999945, 48.785496085000034 ], [ -123.31316779499997, 48.785656991000096 ], [ -123.313592621999973, 48.786070001000063 ], [ -123.314642089999978, 48.786453103000035 ], [ -123.314849207999927, 48.786767899000054 ], [ -123.31576392, 48.787152397000085 ], [ -123.316131603999935, 48.787178086000075 ], [ -123.316543518999964, 48.787680802000089 ], [ -123.317430018999971, 48.787867406000032 ], [ -123.317635892999959, 48.788109507000044 ], [ -123.31789410499999, 48.788216304000095 ], [ -123.317679307999953, 48.788576596000034 ], [ -123.317870797999959, 48.788739012000072 ], [ -123.317762080999941, 48.788837296000075 ], [ -123.31757150199995, 48.788793109000046 ], [ -123.317231803999931, 48.78885719400008 ], [ -123.316824117999957, 48.789065099000041 ], [ -123.315774378999961, 48.78884289399999 ], [ -123.315325100999971, 48.788898497000048 ], [ -123.315026518999957, 48.789052304000037 ], [ -123.315000388999948, 48.789123497000041 ], [ -123.31525992, 48.789303004000026 ], [ -123.31618629399999, 48.789525096000013 ], [ -123.317033356999943, 48.790221064000093 ], [ -123.317008377999954, 48.790657734 ], [ -123.316984406999978, 48.790728586000029 ], [ -123.316726991999985, 48.790900892000074 ], [ -123.316208892999938, 48.790821216000076 ], [ -123.315964784999935, 48.790947890000069 ], [ -123.315542903, 48.790993494000105 ], [ -123.315470378, 48.791039909000055 ], [ -123.311552998999957, 48.79094132500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.838008925085921", "sL_AssetLoss": "13064.3", "sL_BldgLoss": "10948", "sL_StrLoss": "6940", "sL_NStrLoss": "4008", "sL_ContLoss": "2116.3", "geom_point": "0101000020E61000002D1D5A0191D55EC07D6A692CE9544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.33745815599994, 48.665459790000071 ], [ -123.336145396999953, 48.664855613000078 ], [ -123.336266005999931, 48.664622008000066 ], [ -123.336481311999961, 48.664503808000113 ], [ -123.336672497000023, 48.664493792000044 ], [ -123.33708319599998, 48.664915404000091 ], [ -123.337355203999948, 48.664996509000062 ], [ -123.337502977, 48.66492389800009 ], [ -123.33724210599992, 48.664348503000021 ], [ -123.336110294999983, 48.663694798000044 ], [ -123.335660208, 48.663508293000113 ], [ -123.335362007999933, 48.663535300000014 ], [ -123.335213809999942, 48.663734707000074 ], [ -123.335203693, 48.664093607000055 ], [ -123.33442679199996, 48.663771699000087 ], [ -123.334385277999971, 48.663664899000075 ], [ -123.334520297999958, 48.663592305000059 ], [ -123.335022207999984, 48.663626500000085 ], [ -123.335102299999932, 48.663303207000126 ], [ -123.33381998599999, 48.662643642000056 ], [ -123.33386984099999, 48.661764042000087 ], [ -123.336439621999958, 48.661828382000074 ], [ -123.336493299999958, 48.662263505000048 ], [ -123.336807102999956, 48.662361796000091 ], [ -123.337499198999978, 48.662306193000092 ], [ -123.337783879999961, 48.662116802000106 ], [ -123.337632490999979, 48.661858225000096 ], [ -123.33794193699994, 48.661865966000107 ], [ -123.338394320999953, 48.66208690400002 ], [ -123.339102692, 48.662571094000064 ], [ -123.33924540299995, 48.662623180000026 ], [ -123.339089155999943, 48.665385271000041 ], [ -123.338605178999927, 48.66529849500008 ], [ -123.338321400999945, 48.665371111000056 ], [ -123.338309960999979, 48.665481093000061 ], [ -123.33745815599994, 48.665459790000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.820843010219521", "sL_AssetLoss": "27427.9", "sL_BldgLoss": "22514", "sL_StrLoss": "13220", "sL_NStrLoss": "9294", "sL_ContLoss": "4913.9", "geom_point": "0101000020E610000081F7027166D45EC008CE740ACD564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.318218504999933, 48.679966393 ], [ -123.317807416999955, 48.679653103000128 ], [ -123.317196815999978, 48.679456493000075 ], [ -123.316544847999964, 48.678991328000087 ], [ -123.316590191999921, 48.678196787000076 ], [ -123.315388836, 48.678166503000099 ], [ -123.315148888999957, 48.677995293000102 ], [ -123.315120608999948, 48.677932598000069 ], [ -123.315285182999929, 48.677905591000098 ], [ -123.315297187999988, 48.677833002000078 ], [ -123.315090907999974, 48.67750108500006 ], [ -123.315484, 48.677418500000016 ], [ -123.315592807999963, 48.677283191000079 ], [ -123.315579388999964, 48.677157906000026 ], [ -123.315415817999963, 48.67706809500006 ], [ -123.315414383999922, 48.676870202000089 ], [ -123.315970782999926, 48.676833205000037 ], [ -123.316159995999925, 48.676633798000132 ], [ -123.315843185999952, 48.676158099000091 ], [ -123.315802111999957, 48.675905997000108 ], [ -123.316509087999975, 48.675977200000041 ], [ -123.316725992999949, 48.675886115000061 ], [ -123.317113912999943, 48.675192501000048 ], [ -123.318368405999962, 48.675702287000114 ], [ -123.318545985999975, 48.675871807000078 ], [ -123.318478499999941, 48.67610679300001 ], [ -123.318573688999948, 48.676150990000053 ], [ -123.319212706999949, 48.676086891000097 ], [ -123.319357175999954, 48.67615474300009 ], [ -123.319285681999958, 48.677408837000016 ], [ -123.322057198, 48.677478580000098 ], [ -123.321913746999897, 48.679997331000081 ], [ -123.321776609, 48.680046202000035 ], [ -123.321792315, 48.680190005000064 ], [ -123.321896044999917, 48.680308123 ], [ -123.321875025999987, 48.680677143000054 ], [ -123.321425990999956, 48.680326698000044 ], [ -123.320747605999983, 48.680265494000032 ], [ -123.320255388999982, 48.679835409000077 ], [ -123.320009202, 48.679754193000079 ], [ -123.319631094, 48.679970707000038 ], [ -123.319658520999951, 48.68018720100013 ], [ -123.320492405999971, 48.680842309000091 ], [ -123.320650799999925, 48.681049064000021 ], [ -123.320234858999981, 48.681038597000097 ], [ -123.320166607000019, 48.681013210000053 ], [ -123.318218504999933, 48.679966393 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28358749", "BldgCostT": "18379999", "sL_LossRatio": "0.761920585691078", "sL_AssetLoss": "189588", "sL_BldgLoss": "144451", "sL_StrLoss": "75244", "sL_NStrLoss": "69207", "sL_ContLoss": "45137", "geom_point": "0101000020E6100000C2D8A5BABECF5EC067725A85075F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.255409820999915, 48.747748463000057 ], [ -123.255534742999956, 48.74561159899999 ], [ -123.250912991999925, 48.745492551000048 ], [ -123.250953283999962, 48.744804424000037 ], [ -123.250453616999934, 48.744791541000048 ], [ -123.250517770999963, 48.743696075000052 ], [ -123.247656883999952, 48.743622271000085 ], [ -123.247693589, 48.742996143000106 ], [ -123.247207666999913, 48.742983599000048 ], [ -123.247118465999961, 48.744504920000068 ], [ -123.24452466399994, 48.744437927000021 ], [ -123.244478400999952, 48.745226182000046 ], [ -123.241083443999969, 48.745138401000105 ], [ -123.241351607999945, 48.744853402000011 ], [ -123.241472283999954, 48.744474591000092 ], [ -123.241484380999978, 48.744159793000037 ], [ -123.241373287999963, 48.743971790000089 ], [ -123.240309886, 48.743523203000052 ], [ -123.23872871899998, 48.742456402000094 ], [ -123.237637605000018, 48.741918094 ], [ -123.237351289999978, 48.741648904000037 ], [ -123.236928316999965, 48.741443797000038 ], [ -123.23698158, 48.741262993000113 ], [ -123.236600211, 48.74116469700008 ], [ -123.235847712999913, 48.740501003000084 ], [ -123.235370982999925, 48.74034009700005 ], [ -123.234787817000012, 48.740332997000039 ], [ -123.23444718899998, 48.740458306000015 ], [ -123.233945391999924, 48.740819990000077 ], [ -123.233280018999935, 48.740794400000063 ], [ -123.232312501999942, 48.740337202000063 ], [ -123.232297100999986, 48.74012218900004 ], [ -123.23244539300002, 48.739959803 ], [ -123.231082098999977, 48.739377312000059 ], [ -123.231096285999982, 48.739323202000101 ], [ -123.231353907999946, 48.739296087000042 ], [ -123.231981881999943, 48.739482703000057 ], [ -123.231748811999978, 48.739367291000114 ], [ -123.231858199999934, 48.739205011000124 ], [ -123.232075712999958, 48.739195006000088 ], [ -123.232565892999972, 48.739347409000068 ], [ -123.233219584999986, 48.739679194000111 ], [ -123.233628312999954, 48.739615202000017 ], [ -123.234091015999951, 48.739722005000047 ], [ -123.234525601999948, 48.739487010000111 ], [ -123.23468650599996, 48.739243383000087 ], [ -123.234686817999943, 48.739172203000052 ], [ -123.234331502999964, 48.739073998000059 ], [ -123.234235422999959, 48.738830404000062 ], [ -123.234465895999904, 48.738705088000096 ], [ -123.234698790999971, 48.738947192000047 ], [ -123.235078690999956, 48.738720705000034 ], [ -123.235117914999961, 48.738497196000075 ], [ -123.235444178999956, 48.73835189700003 ], [ -123.235662288999919, 48.73835189700003 ], [ -123.235823490999948, 48.738152507000073 ], [ -123.235796095999945, 48.737991610000101 ], [ -123.23567062799998, 48.737881605000055 ], [ -123.23550850099997, 48.737739496000124 ], [ -123.234695495999986, 48.73803860000001 ], [ -123.233741391999956, 48.738004391000111 ], [ -123.233224409999949, 48.73781639200012 ], [ -123.232611412999972, 48.737403398000033 ], [ -123.232337216999937, 48.736946198000112 ], [ -123.231983089999972, 48.736946202000063 ], [ -123.231369311999956, 48.736534596000126 ], [ -123.23135622399991, 48.736489423000158 ], [ -123.231327607999916, 48.736390708000037 ], [ -123.23157219699999, 48.736155690000061 ], [ -123.231979012999972, 48.736154291000041 ], [ -123.232062621999944, 48.7365232040001 ], [ -123.232904719999951, 48.736296704000083 ], [ -123.233191195999922, 48.736457691000062 ], [ -123.233762407999933, 48.736537388000031 ], [ -123.23392632499997, 48.736664203000018 ], [ -123.234238804999947, 48.736654199000078 ], [ -123.235002802999986, 48.736859301000052 ], [ -123.235763187999979, 48.736732600000082 ], [ -123.235777381999966, 48.73667839700007 ], [ -123.23531210499999, 48.736453412000103 ], [ -123.235297611999968, 48.736292503000136 ], [ -123.235637186999924, 48.736228395000133 ], [ -123.23602, 48.736335198000113 ], [ -123.236414297999971, 48.73662288800007 ], [ -123.236921494999962, 48.737188289000088 ], [ -123.236649802999963, 48.737458899000053 ], [ -123.23718218499998, 48.737538692000122 ], [ -123.237331301999973, 48.737709612000103 ], [ -123.237360902999939, 48.738041385000038 ], [ -123.237198099999929, 48.738213695000042 ], [ -123.237145108999982, 48.738572588000068 ], [ -123.236942796, 48.738734992000019 ], [ -123.236997698999971, 48.738789108000027 ], [ -123.237974487999963, 48.738427410000035 ], [ -123.23955399499999, 48.738864588000041 ], [ -123.239640736999931, 48.738872823000072 ], [ -123.240859808999943, 48.738988484000103 ], [ -123.241733182999937, 48.739310396000121 ], [ -123.24179989, 48.73941859500006 ], [ -123.242481315999953, 48.739632196000123 ], [ -123.243652083999962, 48.739828797000023 ], [ -123.243884794999929, 48.740008197000051 ], [ -123.244483303999942, 48.740204797000139 ], [ -123.244906495999928, 48.740149189000086 ], [ -123.245163919, 48.739932805000116 ], [ -123.245435093999959, 48.739878595000057 ], [ -123.246578596999882, 48.740073791000043 ], [ -123.247123186999943, 48.740288796000137 ], [ -123.247340706999935, 48.74029740499999 ], [ -123.247462887999959, 48.740395611000103 ], [ -123.248157407999912, 48.740493909000079 ], [ -123.249330389999955, 48.740976695000079 ], [ -123.249630386999954, 48.741218803000073 ], [ -123.25047519499995, 48.741549206000059 ], [ -123.25051600899998, 48.741657496000123 ], [ -123.251019488999958, 48.741683090000024 ], [ -123.251250893999952, 48.741764303000124 ], [ -123.252097404999944, 48.742292707000082 ], [ -123.252737613999926, 48.74246209299999 ], [ -123.25314518699993, 48.742489208000052 ], [ -123.253336820999948, 48.742631606000039 ], [ -123.254277012999978, 48.742890795000015 ], [ -123.254469293999989, 48.743024713000139 ], [ -123.256075413999895, 48.743561603000053 ], [ -123.256417490000018, 48.74385790200003 ], [ -123.256442030999963, 48.743867429 ], [ -123.256424409999909, 48.744168971000057 ], [ -123.257275322999988, 48.744190862000032 ], [ -123.25731641, 48.744206809000076 ], [ -123.259947304999969, 48.744991496000068 ], [ -123.260805097999935, 48.745448697000036 ], [ -123.260915987999951, 48.745592599000055 ], [ -123.260968178, 48.745622493000013 ], [ -123.260835998999966, 48.747887973000083 ], [ -123.255409820999915, 48.747748463000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.81353305785124", "sL_AssetLoss": "3872", "sL_BldgLoss": "3150", "sL_StrLoss": "1900", "sL_NStrLoss": "1250", "sL_ContLoss": "722", "geom_point": "0101000020E61000009235B076D0D45EC094E8FA7847564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.325064638999933, 48.673223274000108 ], [ -123.325074263999909, 48.673054061000109 ], [ -123.325705902999985, 48.673069930000054 ], [ -123.325633711999956, 48.673261190000126 ], [ -123.326163118999929, 48.673493402000076 ], [ -123.326179598999914, 48.673880803000088 ], [ -123.326466017, 48.674122898000043 ], [ -123.326467502999932, 48.674320790000053 ], [ -123.326266199999949, 48.674518812000066 ], [ -123.32606158499999, 48.674599999000129 ], [ -123.325452707999915, 48.674657005000071 ], [ -123.324842497999953, 48.67511701100009 ], [ -123.324300304999923, 48.675118382000058 ], [ -123.324294200999987, 48.675116772000095 ], [ -123.324402881999958, 48.673206645000093 ], [ -123.325064638999933, 48.673223274000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.826408125577101", "sL_AssetLoss": "4332", "sL_BldgLoss": "3580", "sL_StrLoss": "1970", "sL_NStrLoss": "1610", "sL_ContLoss": "752", "geom_point": "0101000020E6100000C80BA7D4FED45EC09827009479564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.326784595999982, 48.674877699000085 ], [ -123.327625701999935, 48.674614209 ], [ -123.328944687999964, 48.674871992000057 ], [ -123.32935409599996, 48.675095608000071 ], [ -123.329424819999943, 48.675508602000072 ], [ -123.329275287999906, 48.675743593000064 ], [ -123.329224398999941, 48.676121107000071 ], [ -123.329510525999964, 48.676452904000065 ], [ -123.329526703999974, 48.676740601000105 ], [ -123.328996607999954, 48.676687904000069 ], [ -123.326981076, 48.676009994000019 ], [ -123.32630041099999, 48.675544190000053 ], [ -123.326188713999954, 48.675302105000029 ], [ -123.326474590999979, 48.675229502000086 ], [ -123.326784595999982, 48.674877699000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.842791596232794", "sL_AssetLoss": "20705", "sL_BldgLoss": "17450", "sL_StrLoss": "10980", "sL_NStrLoss": "6470", "sL_ContLoss": "3255", "geom_point": "0101000020E6100000D767312550D15EC065E67E5E23604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.268127211999911, 48.749065800000082 ], [ -123.270583550999987, 48.749128693000053 ], [ -123.271533092999974, 48.749436496000058 ], [ -123.272282908999969, 48.749964903000048 ], [ -123.272311296999959, 48.750154295000044 ], [ -123.273470046999975, 48.750642911000035 ], [ -123.273344470999959, 48.752804853000036 ], [ -123.267917687999983, 48.752665980000074 ], [ -123.268127211999911, 48.749065800000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.936421435059037", "sL_AssetLoss": "2202", "sL_BldgLoss": "2062", "sL_StrLoss": "1650", "sL_NStrLoss": "412", "sL_ContLoss": "140", "geom_point": "0101000020E6100000F435AA57FAD25EC0DA0CE49749654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.295934608999929, 48.791820772000037 ], [ -123.295933020999925, 48.791550896000054 ], [ -123.294707669999951, 48.791554036000058 ], [ -123.294702927999964, 48.790744411000041 ], [ -123.296336703999927, 48.790740223000107 ], [ -123.296338292999963, 48.791010097000026 ], [ -123.298380524999985, 48.791004829000073 ], [ -123.298385325999931, 48.791814453000029 ], [ -123.295934608999929, 48.791820772000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288277302", "BldgCostT": "191478745", "sL_LossRatio": "0.790109467819208", "sL_AssetLoss": "1473647.7", "sL_BldgLoss": "1164343", "sL_StrLoss": "643114", "sL_NStrLoss": "521229", "sL_ContLoss": "309304.7", "geom_point": "0101000020E6100000771221E016D35EC0618F71418D624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.307859384999986, 48.776440493000095 ], [ -123.30752761799999, 48.776230201000025 ], [ -123.307408585999923, 48.775886512000113 ], [ -123.306930414999925, 48.775644593000038 ], [ -123.306581888999943, 48.775322989000102 ], [ -123.305934693999944, 48.77508770500004 ], [ -123.305543614, 48.775153488000079 ], [ -123.305619284999977, 48.77539699600009 ], [ -123.305602782999941, 48.775683189000091 ], [ -123.305712514999954, 48.775951804000044 ], [ -123.305716492, 48.776005761000128 ], [ -123.305712259999922, 48.776078274000021 ], [ -123.305663771999917, 48.776204136000111 ], [ -123.305609664999977, 48.776258284000079 ], [ -123.305446769999918, 48.776330678000043 ], [ -123.305120542999973, 48.776403508000058 ], [ -123.304889255999981, 48.776422110000055 ], [ -123.304671471999924, 48.776422692000104 ], [ -123.30458970199993, 48.776404926000076 ], [ -123.304494084999988, 48.776351181000045 ], [ -123.304447777999926, 48.776293518000088 ], [ -123.304321587999965, 48.776144695000042 ], [ -123.303784796999977, 48.77571660800006 ], [ -123.302482597999983, 48.77519601200008 ], [ -123.301782508999935, 48.775149485000036 ], [ -123.301527385999947, 48.775259296000044 ], [ -123.301257285999952, 48.77534711400007 ], [ -123.30067318499999, 48.77517459700011 ], [ -123.299924806999968, 48.775116010000048 ], [ -123.299180801999924, 48.774934996000084 ], [ -123.298827105999933, 48.774822399000101 ], [ -123.298442707999982, 48.774605297000079 ], [ -123.298224799999971, 48.77442309200007 ], [ -123.298060391999925, 48.774233295000023 ], [ -123.297071486999982, 48.772639897000055 ], [ -123.297077088999913, 48.771575603000024 ], [ -123.296627721, 48.771661497000103 ], [ -123.29644720099995, 48.771727294000044 ], [ -123.295882404999986, 48.772092385000114 ], [ -123.293484500999924, 48.771530512000091 ], [ -123.293283992999974, 48.771659689000082 ], [ -123.293064916999938, 48.771736201000117 ], [ -123.292857001999948, 48.771757014000073 ], [ -123.292630815999985, 48.771720597000041 ], [ -123.291710087999931, 48.7713042990001 ], [ -123.291104993999923, 48.771426800000071 ], [ -123.290744382999932, 48.771574511000097 ], [ -123.29057988699999, 48.771717304000077 ], [ -123.290485679999975, 48.771935692000035 ], [ -123.290432182999922, 48.772015498000044 ], [ -123.290176208999952, 48.772164905000061 ], [ -123.289845586999959, 48.772286306000098 ], [ -123.289623593999963, 48.772271595000092 ], [ -123.287825518999981, 48.771679699000103 ], [ -123.287508191999919, 48.771524688000092 ], [ -123.286882585999948, 48.771224889000067 ], [ -123.285222811, 48.770664386000064 ], [ -123.284243799999985, 48.770389788000045 ], [ -123.284042314999965, 48.770394594000052 ], [ -123.283669488999948, 48.769743394000066 ], [ -123.28395031, 48.768955495000093 ], [ -123.283862089999971, 48.76869369300001 ], [ -123.283370607999956, 48.767746496000029 ], [ -123.283399495999944, 48.767247014000127 ], [ -123.283487895999954, 48.767058994000053 ], [ -123.28370948599995, 48.766822194000092 ], [ -123.284005422999925, 48.76664050400008 ], [ -123.28429820499997, 48.766561388000127 ], [ -123.285286413999984, 48.766417987000189 ], [ -123.285829007999965, 48.766365101000154 ], [ -123.286315213999927, 48.766183594999987 ], [ -123.287394510999917, 48.765780191 ], [ -123.288116782999964, 48.765580492000069 ], [ -123.289410115999942, 48.765424999000118 ], [ -123.289875484999939, 48.765298 ], [ -123.290144097999985, 48.765189389000106 ], [ -123.290415104999937, 48.765014208000061 ], [ -123.291026511, 48.764334814000151 ], [ -123.291198556999944, 48.764159325000037 ], [ -123.29164310799996, 48.763705982000069 ], [ -123.29172938399995, 48.763553188000124 ], [ -123.291678705999971, 48.763324696000112 ], [ -123.291655199999965, 48.762836492000119 ], [ -123.291940590999957, 48.76248320300008 ], [ -123.292296697999987, 48.762434590000034 ], [ -123.293419705999966, 48.762402691000091 ], [ -123.293677009999925, 48.76244249800002 ], [ -123.29472361699996, 48.762793609000028 ], [ -123.296502402999948, 48.763456097000073 ], [ -123.297167001999966, 48.763643313000095 ], [ -123.297935984, 48.763859302000107 ], [ -123.299366983999988, 48.764026192000117 ], [ -123.29986219199999, 48.764158617000071 ], [ -123.300267901999945, 48.764334697000059 ], [ -123.300356780999977, 48.764491105000054 ], [ -123.300319100999971, 48.764602788000055 ], [ -123.299649600999956, 48.765018497000057 ], [ -123.299563796999919, 48.765163296000132 ], [ -123.299565714999957, 48.765295805000108 ], [ -123.299808797999944, 48.765748087000112 ], [ -123.300024754999981, 48.766265199000067 ], [ -123.300115793999922, 48.766483297000065 ], [ -123.300316186999964, 48.766660494000057 ], [ -123.300344885999891, 48.766676222000086 ], [ -123.300629811, 48.766832496000092 ], [ -123.301289493999931, 48.767106108000057 ], [ -123.302429385999957, 48.767490899000045 ], [ -123.302717202999986, 48.767549832000078 ], [ -123.303007090999969, 48.767609192000116 ], [ -123.303540402999886, 48.767622695000064 ], [ -123.303951720999976, 48.767607803000089 ], [ -123.304802426, 48.767823099000047 ], [ -123.305170123999957, 48.767952303000058 ], [ -123.305408108999956, 48.768115992000084 ], [ -123.305548785, 48.768316097000124 ], [ -123.305563110999955, 48.768493997000043 ], [ -123.305288597, 48.769320796000066 ], [ -123.306488796999929, 48.769887396000065 ], [ -123.306957988999955, 48.770001995000065 ], [ -123.307316924999938, 48.770029027000085 ], [ -123.307319313999983, 48.770029197000127 ], [ -123.307851416999966, 48.769947007000013 ], [ -123.308116484999957, 48.769946503000014 ], [ -123.308103989999921, 48.770083866000071 ], [ -123.308099067999976, 48.770137670000096 ], [ -123.308086996000014, 48.770270303000068 ], [ -123.308115601999987, 48.77043589100002 ], [ -123.308230807999962, 48.770559604000113 ], [ -123.309648692999957, 48.771550818000065 ], [ -123.310133801999896, 48.771695495000088 ], [ -123.31206477399999, 48.772558997000033 ], [ -123.31404012199998, 48.773502799000035 ], [ -123.314462091999928, 48.773705397000121 ], [ -123.314271406999964, 48.774139587000057 ], [ -123.31422611, 48.774384502000061 ], [ -123.314256089999972, 48.77452680500005 ], [ -123.314435204999967, 48.77467371200003 ], [ -123.31482790599992, 48.774914302000049 ], [ -123.314630910999966, 48.775102189000087 ], [ -123.314303597999981, 48.775240010000076 ], [ -123.313779819000032, 48.775413389000057 ], [ -123.313590808999919, 48.77569979599999 ], [ -123.313493783999888, 48.775780294000064 ], [ -123.31338771199998, 48.775804582000099 ], [ -123.313119093999944, 48.775676204000064 ], [ -123.312751304999935, 48.775405503000059 ], [ -123.312444778999961, 48.775535706000021 ], [ -123.312028502999937, 48.775848803 ], [ -123.311845984999934, 48.776069607000075 ], [ -123.311735411999976, 48.77657599500008 ], [ -123.309753704999949, 48.77635838000004 ], [ -123.30926750899998, 48.776420091000084 ], [ -123.30879600899999, 48.776583089000084 ], [ -123.30864861399999, 48.776592900000033 ], [ -123.307859384999986, 48.776440493000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.806942148760331", "sL_AssetLoss": "21175", "sL_BldgLoss": "17087", "sL_StrLoss": "10320", "sL_NStrLoss": "6767", "sL_ContLoss": "4088", "geom_point": "0101000020E610000025E80EE69FD15EC075EA25216C654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.272773423999936, 48.790493039000062 ], [ -123.278204596999927, 48.790631656000116 ], [ -123.27799565899997, 48.794231614000111 ], [ -123.272564070999962, 48.79409298700002 ], [ -123.272773423999936, 48.790493039000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42431916", "BldgCostT": "27351666", "sL_LossRatio": "0.717989401199505", "sL_AssetLoss": "315130", "sL_BldgLoss": "226260", "sL_StrLoss": "112700", "sL_NStrLoss": "113560", "sL_ContLoss": "88870", "geom_point": "0101000020E6100000B72042F90ED15EC061F9F36DC1634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.284696193999977, 48.791642496000037 ], [ -123.28478134, 48.790171808000132 ], [ -123.284413106999978, 48.790162441000092 ], [ -123.284379718999958, 48.790739070000015 ], [ -123.278948515999986, 48.79060076600009 ], [ -123.279157364, 48.787000785000082 ], [ -123.280797446999927, 48.787042579000079 ], [ -123.28086300599989, 48.78591171700004 ], [ -123.280470554999965, 48.785901718000069 ], [ -123.280482680999981, 48.785692579000042 ], [ -123.279887146999926, 48.785677404000104 ], [ -123.279892005999926, 48.785593612000092 ], [ -123.279835511, 48.785592172000058 ], [ -123.279780902999946, 48.786533795000054 ], [ -123.274350199999958, 48.786395256000048 ], [ -123.27455938199999, 48.782795260000121 ], [ -123.27750966, 48.782870557000052 ], [ -123.277564309999917, 48.781928931000053 ], [ -123.277694534999966, 48.781932252000111 ], [ -123.277769713999973, 48.780636771000118 ], [ -123.277011939999966, 48.780617440000086 ], [ -123.276992480999965, 48.780952679000094 ], [ -123.271562431999897, 48.780813998000092 ], [ -123.271608591999907, 48.780020330000099 ], [ -123.269877496999953, 48.77997605900012 ], [ -123.269861457999951, 48.780251655000079 ], [ -123.269641700999955, 48.780246033000068 ], [ -123.269607178999976, 48.780839160000014 ], [ -123.264177165999911, 48.78070010400009 ], [ -123.264236533999963, 48.779682108000031 ], [ -123.26345950299995, 48.779662187000071 ], [ -123.263490812000015, 48.779125457000127 ], [ -123.262758209999973, 48.779106669000072 ], [ -123.262873552999963, 48.777129776000059 ], [ -123.260154735999933, 48.777060007000102 ], [ -123.260191314999958, 48.776433668000067 ], [ -123.259910699999978, 48.776426463000107 ], [ -123.259912598999975, 48.7767944040001 ], [ -123.25746260399994, 48.776799902000043 ], [ -123.257461225, 48.776530027000057 ], [ -123.257052894999958, 48.776530938000107 ], [ -123.257055649999984, 48.777070690000066 ], [ -123.256647315999956, 48.777071600000028 ], [ -123.256650065999978, 48.777611353000076 ], [ -123.256241726999932, 48.777612262000027 ], [ -123.25624310099991, 48.77788213700007 ], [ -123.255834759999956, 48.777883045000053 ], [ -123.255836131999956, 48.778152921000071 ], [ -123.254202756999945, 48.778156535000051 ], [ -123.25419866899999, 48.777346906000041 ], [ -123.254607005999944, 48.777346004 ], [ -123.254604275999938, 48.776806252000078 ], [ -123.254195942999971, 48.77680715300005 ], [ -123.25419458099995, 48.77653727800007 ], [ -123.252561260000036, 48.776540868000069 ], [ -123.252559905999988, 48.776270992000072 ], [ -123.251743248999972, 48.776272779000045 ], [ -123.251741899999956, 48.776002902000094 ], [ -123.251333572999897, 48.776003793 ], [ -123.25133087799999, 48.775464040000074 ], [ -123.25051423399999, 48.77546581800005 ], [ -123.250511159999945, 48.774847627000021 ], [ -123.250108399999959, 48.774837248000075 ], [ -123.250124695999915, 48.774559216000057 ], [ -123.250101402999945, 48.774558616000071 ], [ -123.250104571999884, 48.775196829000016 ], [ -123.248879613, 48.775199480000019 ], [ -123.248875610999917, 48.774389851000109 ], [ -123.249268559999933, 48.774389002000071 ], [ -123.249273245999973, 48.774309068000029 ], [ -123.248213403999955, 48.77428174100001 ], [ -123.248176295999912, 48.774914402000022 ], [ -123.24432893099997, 48.774815117000109 ], [ -123.244568410999946, 48.774551 ], [ -123.244704414999916, 48.77416359700004 ], [ -123.244686711000014, 48.773713597 ], [ -123.244534979, 48.773281994000058 ], [ -123.244056915000016, 48.772977292000121 ], [ -123.243771305999985, 48.772933094000066 ], [ -123.243334921999917, 48.77258280400013 ], [ -123.24261180399999, 48.77226090500011 ], [ -123.241943894, 48.772145487000031 ], [ -123.241452012999929, 48.771805097000055 ], [ -123.240417685999915, 48.771591504000099 ], [ -123.240181883999952, 48.770924992000069 ], [ -123.23957020899995, 48.770675693000044 ], [ -123.239446213999926, 48.770531895000055 ], [ -123.239689715999987, 48.7701345 ], [ -123.24023171099999, 48.769945089000039 ], [ -123.24041047899999, 48.76995369400003 ], [ -123.240330008999976, 48.770241286000072 ], [ -123.240561891999974, 48.770493398000085 ], [ -123.241692116999957, 48.770590307000091 ], [ -123.242182702999983, 48.770705606000071 ], [ -123.242658016999911, 48.770668603000047 ], [ -123.243242016999901, 48.770254201000128 ], [ -123.243541724999929, 48.770136004000122 ], [ -123.243996066999927, 48.770120131000041 ], [ -123.243932672999975, 48.771199417000048 ], [ -123.245062729999958, 48.771228601000118 ], [ -123.245118127999945, 48.770285074000071 ], [ -123.245461612999961, 48.770365296000143 ], [ -123.245925287999981, 48.770590313000127 ], [ -123.246168917999938, 48.770598795000048 ], [ -123.246467715999927, 48.770445003000098 ], [ -123.246807511999975, 48.770399397000084 ], [ -123.248347200999987, 48.770539006000057 ], [ -123.248715501999968, 48.770943498000065 ], [ -123.249097590999924, 48.771104388000076 ], [ -123.250487279999959, 48.771335095000033 ], [ -123.251562703999966, 48.771306702000039 ], [ -123.252543081999988, 48.771393492000037 ], [ -123.253960710999976, 48.771840699000066 ], [ -123.254139698999907, 48.772128404000092 ], [ -123.254779792999926, 48.772433215000071 ], [ -123.255065992999931, 48.772450299000113 ], [ -123.255786415999978, 48.772322098000103 ], [ -123.25616920600001, 48.77247450599999 ], [ -123.257392297999971, 48.77244459300006 ], [ -123.258701515999959, 48.772810595000045 ], [ -123.259016201999927, 48.773017089000113 ], [ -123.25931890899993, 48.773609601000068 ], [ -123.260178614000012, 48.774337407000132 ], [ -123.260750501999979, 48.774308890000086 ], [ -123.260900623999987, 48.774217704000087 ], [ -123.260980380999939, 48.773975594000021 ], [ -123.260691788999949, 48.773552602000038 ], [ -123.260788197999943, 48.7734272880001 ], [ -123.260978090999942, 48.773371802000121 ], [ -123.261957918999954, 48.773478596000061 ], [ -123.26259949199999, 48.7737549040001 ], [ -123.263279895999943, 48.773934295000103 ], [ -123.263579891999939, 48.774076693000019 ], [ -123.263745409999956, 48.774372991000078 ], [ -123.263897195999931, 48.774912791000183 ], [ -123.26390179, 48.775632002000052 ], [ -123.264080409999934, 48.775965298000138 ], [ -123.264353604999954, 48.776109100000077 ], [ -123.264969203999954, 48.776818406000061 ], [ -123.265243398999928, 48.776871108000115 ], [ -123.265488777, 48.777275494000051 ], [ -123.265912705999966, 48.777409388000052 ], [ -123.266363713999937, 48.777839498000105 ], [ -123.267276002999935, 48.777865096000035 ], [ -123.268147385999924, 48.77800609600007 ], [ -123.26948411599993, 48.778355098000112 ], [ -123.270339661999927, 48.778058059000045 ], [ -123.270501413999938, 48.778001896 ], [ -123.270828714999979, 48.77782099500012 ], [ -123.270786199999947, 48.777595994000066 ], [ -123.271194090999956, 48.777496298000059 ], [ -123.271454096999932, 48.777692796000117 ], [ -123.271441086999985, 48.777909299000029 ], [ -123.271551593999973, 48.77804321300011 ], [ -123.272411605999977, 48.778662707000088 ], [ -123.272755399999966, 48.779211008000146 ], [ -123.273356217999975, 48.77950579700007 ], [ -123.27354569799999, 48.779495912000087 ], [ -123.273870475999928, 48.779270797000095 ], [ -123.273938796999971, 48.779037296000141 ], [ -123.273555887999947, 48.778758110000034 ], [ -123.273649710999933, 48.778461895000135 ], [ -123.273101189999963, 48.778013303000051 ], [ -123.273088292999915, 48.777905012000055 ], [ -123.273372997, 48.777823793000053 ], [ -123.273740589999932, 48.777939192000105 ], [ -123.275483812999965, 48.778078805000042 ], [ -123.275823920999954, 48.777763999000044 ], [ -123.276067301999916, 48.777735486000026 ], [ -123.276203598999984, 48.777537587000069 ], [ -123.276188678999986, 48.777358095000075 ], [ -123.275676538, 48.776989190000108 ], [ -123.275968128000031, 48.777005415000133 ], [ -123.277484589999958, 48.777015604000049 ], [ -123.277900283999955, 48.777044198000056 ], [ -123.277970378999939, 48.77704479699999 ], [ -123.27888189, 48.777052716000135 ], [ -123.279644204999968, 48.777059311000059 ], [ -123.28031200099997, 48.777065101000069 ], [ -123.28034341199999, 48.778149273000011 ], [ -123.28035696100001, 48.778617041000082 ], [ -123.28038451499998, 48.779566412000058 ], [ -123.280384473999959, 48.780163711000029 ], [ -123.280384444999981, 48.78075745200011 ], [ -123.280384429999984, 48.781351157000167 ], [ -123.280384404999936, 48.78173799000011 ], [ -123.28038439599996, 48.7818665920001 ], [ -123.280053127999949, 48.781999702000093 ], [ -123.27940060799996, 48.781997484000044 ], [ -123.279373068999973, 48.782012851000083 ], [ -123.279292516999945, 48.78205780600009 ], [ -123.279269874999954, 48.782165395000071 ], [ -123.280936117999957, 48.784123202000075 ], [ -123.284668500999928, 48.785742219000085 ], [ -123.285551708999975, 48.78612530800013 ], [ -123.285718479999929, 48.786297205000089 ], [ -123.285753124999957, 48.78658547800007 ], [ -123.28578820499996, 48.786877594000025 ], [ -123.285790993999981, 48.78711335100008 ], [ -123.285798408999966, 48.787733962000061 ], [ -123.285800966999915, 48.787949890000071 ], [ -123.285830140999906, 48.790396719000071 ], [ -123.285835839999891, 48.790873534000113 ], [ -123.285837742999959, 48.791035436000051 ], [ -123.28583929499996, 48.791164690000102 ], [ -123.285839168999971, 48.791164969000057 ], [ -123.285764619999966, 48.79132689700004 ], [ -123.285618900999964, 48.791495284000135 ], [ -123.285333315999978, 48.791710371000072 ], [ -123.285014608999987, 48.791950391000071 ], [ -123.28478419299995, 48.79222039899999 ], [ -123.28458469399996, 48.792611897000015 ], [ -123.28432236399999, 48.793520041000107 ], [ -123.284304347999964, 48.793582460000053 ], [ -123.284241199999883, 48.793801005000084 ], [ -123.284170781999947, 48.793984641000058 ], [ -123.28404255099997, 48.794319029000107 ], [ -123.28369970299994, 48.795213097000051 ], [ -123.283733756999965, 48.795223280000108 ], [ -123.28369587, 48.795222316000107 ], [ -123.283037389999961, 48.795205560000049 ], [ -123.28324594499999, 48.791605598000025 ], [ -123.284696193999977, 48.791642496000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233661284", "BldgCostT": "156464449", "sL_LossRatio": "0.771517945877255", "sL_AssetLoss": "1706336.2", "sL_BldgLoss": "1316469", "sL_StrLoss": "660871", "sL_NStrLoss": "655598", "sL_ContLoss": "389867.2", "geom_point": "0101000020E6100000FF4BA5E10CD35EC0036732145E674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.3083804, 48.821923112000114 ], [ -123.307820689999986, 48.821682394000057 ], [ -123.307125393999954, 48.821665298 ], [ -123.306673994000022, 48.821514302 ], [ -123.306208179999956, 48.820957497000052 ], [ -123.306124706999952, 48.820498889000064 ], [ -123.305807985999962, 48.820077293000075 ], [ -123.305588178000022, 48.819933393000028 ], [ -123.305015805, 48.819872200000042 ], [ -123.304363413999937, 48.819900693000086 ], [ -123.304036581999981, 48.820054498000097 ], [ -123.303586702999937, 48.819912087000048 ], [ -123.303270675999897, 48.81964289400004 ], [ -123.303106406999945, 48.819256910000028 ], [ -123.30312998, 48.818905201000035 ], [ -123.302964405999916, 48.818285583000041 ], [ -123.302702788999909, 48.81780989100006 ], [ -123.301605178999964, 48.816804499000149 ], [ -123.30051459400002, 48.81645690400007 ], [ -123.300186585999981, 48.816204902000095 ], [ -123.299885300999932, 48.816224788000049 ], [ -123.299248796000015, 48.81658508700005 ], [ -123.297086502999903, 48.817374101000084 ], [ -123.296353987999922, 48.817735893000155 ], [ -123.295892388999988, 48.818141802000099 ], [ -123.295566680999983, 48.818260001000098 ], [ -123.295171001999933, 48.81827851000007 ], [ -123.29300332299999, 48.817942400000106 ], [ -123.291000708999917, 48.81793809900006 ], [ -123.289569606999976, 48.817644704000031 ], [ -123.28909275700002, 48.817454530000091 ], [ -123.289055488999949, 48.817439660000048 ], [ -123.289051586999975, 48.817438111000065 ], [ -123.289008904999946, 48.817421088000117 ], [ -123.288700374999976, 48.817245161000052 ], [ -123.288692071999932, 48.817240425000058 ], [ -123.288315424999936, 48.817024737000104 ], [ -123.28783269199999, 48.816750295000091 ], [ -123.287478589999964, 48.816652103000074 ], [ -123.28641367799996, 48.816069594000069 ], [ -123.285771288999939, 48.81581889200006 ], [ -123.284787399999956, 48.815092593000017 ], [ -123.284087998999922, 48.81424090100009 ], [ -123.28336240199998, 48.813864898000119 ], [ -123.282786212999923, 48.813155609000113 ], [ -123.282061597999956, 48.812707004000089 ], [ -123.28125600599995, 48.812330990000106 ], [ -123.280544317999926, 48.811702900000093 ], [ -123.280108591, 48.811596115000043 ], [ -123.279533893999883, 48.811318399000115 ], [ -123.279575283999989, 48.811093397000043 ], [ -123.280268696999883, 48.811064906000126 ], [ -123.280635998999941, 48.810829913000092 ], [ -123.280822694999955, 48.810379809000032 ], [ -123.280629509999969, 48.809849984000024 ], [ -123.280316908999978, 48.80970618900011 ], [ -123.279634904999909, 48.809707599000077 ], [ -123.279348389999925, 48.809582313000057 ], [ -123.279211690999958, 48.809448395000082 ], [ -123.279126000999966, 48.808927210000085 ], [ -123.278893474999904, 48.808693595000072 ], [ -123.278512894999935, 48.808603886000107 ], [ -123.277831509999942, 48.808596701000099 ], [ -123.277435294999989, 48.808472752000036 ], [ -123.277484119999954, 48.807632016000071 ], [ -123.277799179999974, 48.807616895000088 ], [ -123.278096292999948, 48.807454510000063 ], [ -123.278149357999951, 48.807192188000037 ], [ -123.279552175999982, 48.807227933000028 ], [ -123.279569123999977, 48.806935846000059 ], [ -123.277775193999986, 48.806890131000095 ], [ -123.277574809999962, 48.806770894000053 ], [ -123.277709292999958, 48.806456087000129 ], [ -123.278855383999911, 48.806515991000033 ], [ -123.279099007999932, 48.806326494000082 ], [ -123.279205014999931, 48.806057408000079 ], [ -123.27895831499994, 48.805751197000092 ], [ -123.277003893999947, 48.80438959600005 ], [ -123.275854212999903, 48.803375589000034 ], [ -123.276111794999949, 48.802934099000019 ], [ -123.277765871, 48.801909096000017 ], [ -123.277874610999959, 48.801841707000023 ], [ -123.277996401999957, 48.801444412000059 ], [ -123.277869403999915, 48.800878901000011 ], [ -123.277976781999897, 48.800491601000012 ], [ -123.277894993999965, 48.800445989000131 ], [ -123.277651485999939, 48.800851903000094 ], [ -123.27683749599997, 48.8013133010001 ], [ -123.276622613999947, 48.801673602000051 ], [ -123.276704092999964, 48.801861607000021 ], [ -123.276637105999924, 48.801969892000095 ], [ -123.276486913000014, 48.802024 ], [ -123.27584769799995, 48.801962803000059 ], [ -123.275615887999933, 48.802008291000057 ], [ -123.274515892999943, 48.802676311000042 ], [ -123.274162688999965, 48.802696210000143 ], [ -123.273911575999989, 48.802608376000066 ], [ -123.273315704999959, 48.80239999900008 ], [ -123.27278288399998, 48.802113692000034 ], [ -123.272117215999984, 48.80225899300013 ], [ -123.271708801999921, 48.802206295000133 ], [ -123.271065719, 48.80192000100012 ], [ -123.270028598999914, 48.801283390000066 ], [ -123.269399087999943, 48.800574203000096 ], [ -123.268756108000019, 48.800108490000099 ], [ -123.268736241999932, 48.800101384000065 ], [ -123.268408657999984, 48.799984204000083 ], [ -123.267891968999947, 48.79979939400009 ], [ -123.266558195999949, 48.799322289000052 ], [ -123.265698891999975, 48.79881948700011 ], [ -123.265581735999888, 48.798716769000116 ], [ -123.265538415999913, 48.798678805000073 ], [ -123.265530854999895, 48.798672176000089 ], [ -123.265464388999945, 48.798613910000022 ], [ -123.265442271999945, 48.798594518000094 ], [ -123.26476810299999, 48.798003492000149 ], [ -123.264465955999967, 48.797882660000027 ], [ -123.264276501999944, 48.797806895000079 ], [ -123.263660504999962, 48.79725008800002 ], [ -123.263333603999939, 48.797097710000095 ], [ -123.263127427999962, 48.796606030000177 ], [ -123.26304389799999, 48.796406909000062 ], [ -123.261162601999928, 48.795907006000093 ], [ -123.260625168999965, 48.795661881000072 ], [ -123.260812490999911, 48.792454952000064 ], [ -123.266243853999967, 48.792594178000101 ], [ -123.266235114999972, 48.792744098000092 ], [ -123.2683182909999, 48.792797424000035 ], [ -123.268311884999932, 48.792907409000044 ], [ -123.269749545999986, 48.792944187000032 ], [ -123.269731176999954, 48.793259714000108 ], [ -123.270488038999972, 48.793279068000068 ], [ -123.27044833799999, 48.793961185000121 ], [ -123.270498579999952, 48.793962470000082 ], [ -123.270402762999979, 48.795608683000097 ], [ -123.27074247099992, 48.795617368000066 ], [ -123.270733548999914, 48.795770669000071 ], [ -123.271929536999977, 48.795801237000028 ], [ -123.271904145999912, 48.796237709000117 ], [ -123.272311950999921, 48.796248128000109 ], [ -123.27226259299999, 48.797096654000086 ], [ -123.272331849999929, 48.797098424000104 ], [ -123.272381818999946, 48.796239347000103 ], [ -123.277813657, 48.79637798400006 ], [ -123.277763261999951, 48.797246089000069 ], [ -123.277899366999989, 48.797249559000107 ], [ -123.277914055999986, 48.796996485000101 ], [ -123.279366958, 48.797033518000021 ], [ -123.279403229999929, 48.796408319000058 ], [ -123.279605886999946, 48.796413483000016 ], [ -123.279625839999966, 48.796069523 ], [ -123.280167139999918, 48.796083315000075 ], [ -123.280215062999972, 48.795257035000112 ], [ -123.283645121999925, 48.795344362000087 ], [ -123.283784368999974, 48.79534790600011 ], [ -123.283790602999957, 48.795240278000094 ], [ -123.284160913, 48.795351003000107 ], [ -123.285784491, 48.796158433000116 ], [ -123.286445907999976, 48.796487353000025 ], [ -123.286500690999944, 48.796514602000066 ], [ -123.286819426999926, 48.796600206000029 ], [ -123.287121115999952, 48.796556495000118 ], [ -123.287289879999975, 48.796443706000062 ], [ -123.287406910999948, 48.796365504000079 ], [ -123.287727390999976, 48.795644502000115 ], [ -123.28809519899994, 48.795468209000049 ], [ -123.288521492999962, 48.795339306000123 ], [ -123.289050489999966, 48.795893510000035 ], [ -123.28918448499995, 48.796033904000112 ], [ -123.289822929999943, 48.796339461000066 ], [ -123.290620296, 48.796721113000046 ], [ -123.292155569, 48.79722176700006 ], [ -123.29214579799995, 48.797390959000062 ], [ -123.290897646999966, 48.797359296000089 ], [ -123.290859102999946, 48.798026457000041 ], [ -123.291642145999944, 48.798046323000051 ], [ -123.291630361, 48.798250379000102 ], [ -123.292368457999942, 48.798269100000056 ], [ -123.292423879999916, 48.79730926000007 ], [ -123.295349785, 48.798263300000073 ], [ -123.29643989399996, 48.798556796000078 ], [ -123.297175714999952, 48.798868496000104 ], [ -123.296338394999964, 48.798847297000073 ], [ -123.296272019999947, 48.799998461000079 ], [ -123.2962718199999, 48.800001924000128 ], [ -123.297174363999915, 48.800024775000125 ], [ -123.298994495999978, 48.800070834000088 ], [ -123.29898733, 48.800195246000094 ], [ -123.29878711399999, 48.803670778000054 ], [ -123.293354369999975, 48.803533209000051 ], [ -123.293393089999981, 48.802862463000032 ], [ -123.289895809999933, 48.802773758000058 ], [ -123.289868407999947, 48.803247842000069 ], [ -123.290586498999943, 48.803266065000102 ], [ -123.290576585999958, 48.803437598000095 ], [ -123.291603072999962, 48.803463639000043 ], [ -123.291496027999983, 48.805316671000092 ], [ -123.292273104999978, 48.805336378000064 ], [ -123.292315860999977, 48.804596060000073 ], [ -123.294969413999922, 48.804663312000081 ], [ -123.294976255999941, 48.804544725000028 ], [ -123.300409120999959, 48.804682210000095 ], [ -123.30031298599999, 48.80635177900011 ], [ -123.300588394999949, 48.806358741000054 ], [ -123.30066240099994, 48.805073365000077 ], [ -123.302369577999954, 48.805116506000132 ], [ -123.302456109999923, 48.803612505000054 ], [ -123.307888889999916, 48.803749610000096 ], [ -123.30787173399996, 48.804048392 ], [ -123.308676979000012, 48.804068690000051 ], [ -123.308669339999966, 48.804201783000032 ], [ -123.308672800999958, 48.804201774000084 ], [ -123.308674457, 48.804471647000128 ], [ -123.310384045999939, 48.804467057000046 ], [ -123.310717233, 48.804466159000128 ], [ -123.310718899999955, 48.804736033000012 ], [ -123.311127457999973, 48.804734931000098 ], [ -123.311129127999919, 48.805004804000063 ], [ -123.31158304299997, 48.805003579000079 ], [ -123.311690035, 48.803137601000081 ], [ -123.311296157999905, 48.80312768400006 ], [ -123.31132981799999, 48.802540701000041 ], [ -123.309513028999959, 48.802494939000034 ], [ -123.309528208999922, 48.802230379000079 ], [ -123.309104958999939, 48.802219714000053 ], [ -123.309103643999919, 48.802242630000073 ], [ -123.307546122999923, 48.8022033680001 ], [ -123.306809332999975, 48.802184787 ], [ -123.306789867999953, 48.802523685000054 ], [ -123.301357233999937, 48.802386524000099 ], [ -123.301422985999977, 48.801244079000057 ], [ -123.29907322299999, 48.801184667000079 ], [ -123.299130708999925, 48.800186662000065 ], [ -123.299181914999949, 48.799297655000096 ], [ -123.300237572999919, 48.799446 ], [ -123.300865727999934, 48.799673602000048 ], [ -123.300902880999956, 48.799687061000014 ], [ -123.30096666599999, 48.799710170000012 ], [ -123.3009916, 48.799719200000112 ], [ -123.30102760099993, 48.799718634 ], [ -123.302019407999964, 48.799702887000073 ], [ -123.302595751999917, 48.79973082500004 ], [ -123.302758616999981, 48.799738697000066 ], [ -123.302841207999961, 48.79977246400005 ], [ -123.303230347999971, 48.799931541000021 ], [ -123.303341951000021, 48.799977172000126 ], [ -123.30439168, 48.800406305000067 ], [ -123.305419691999973, 48.800622402000108 ], [ -123.306718181999926, 48.800984197000069 ], [ -123.307521901999976, 48.800796194000085 ], [ -123.308617889999979, 48.800729211000068 ], [ -123.309325004999948, 48.800660508000099 ], [ -123.309804406999959, 48.80067258800009 ], [ -123.310421390999963, 48.800800804000062 ], [ -123.311671298999954, 48.801180197000086 ], [ -123.313787089999934, 48.801876951000033 ], [ -123.313601262999939, 48.801020813000051 ], [ -123.312394718999926, 48.799954926000041 ], [ -123.312235543000014, 48.799671111000102 ], [ -123.311802249, 48.799222635000064 ], [ -123.312286078999989, 48.799396294000054 ], [ -123.313680615999886, 48.80012980100004 ], [ -123.314129106999943, 48.800146886000036 ], [ -123.315521304999919, 48.800682401000074 ], [ -123.316381705999959, 48.800896003000027 ], [ -123.317567603999962, 48.801324707000084 ], [ -123.31800420799999, 48.801377394000042 ], [ -123.318168395999976, 48.801269190000035 ], [ -123.31815308399996, 48.801160895000123 ], [ -123.318356792999907, 48.801133899000071 ], [ -123.320662409999926, 48.801739191000102 ], [ -123.322041497999976, 48.802410001000041 ], [ -123.322115009999948, 48.802993906000083 ], [ -123.322470510999935, 48.803415503000075 ], [ -123.323017009999958, 48.803584904000054 ], [ -123.323440018999975, 48.803908196000066 ], [ -123.323946709000012, 48.804150404000076 ], [ -123.324016203999946, 48.804419485000054 ], [ -123.324399785999944, 48.804841090000082 ], [ -123.324658694999982, 48.804939387000047 ], [ -123.325230608999945, 48.804623185000054 ], [ -123.325434592999969, 48.804621806000092 ], [ -123.325613710999946, 48.80514299600005 ], [ -123.326132012999949, 48.805222799 ], [ -123.326092302999967, 48.805385092000051 ], [ -123.325698608999943, 48.805538989000077 ], [ -123.325496683999972, 48.806034591000113 ], [ -123.325633490999962, 48.80616851000012 ], [ -123.326153488999964, 48.806275307000071 ], [ -123.326606695999942, 48.80689479100004 ], [ -123.326975583, 48.807109905000097 ], [ -123.327127306999913, 48.807397510000094 ], [ -123.326992407999924, 48.807541387000057 ], [ -123.327428692999916, 48.807710908000097 ], [ -123.327390393999906, 48.808035610000061 ], [ -123.327022401999969, 48.808081207000058 ], [ -123.325945102999981, 48.807823398000011 ], [ -123.32561739499999, 48.807626804000044 ], [ -123.325124978999938, 48.807547100000086 ], [ -123.322700700999974, 48.807427499000092 ], [ -123.32217018099999, 48.807518598000101 ], [ -123.321399715000013, 48.807808285000078 ], [ -123.321401766999927, 48.807772356000044 ], [ -123.320695549999954, 48.807754640000077 ], [ -123.320688142999984, 48.807884243000032 ], [ -123.319570413999941, 48.807796291000024 ], [ -123.319134882999947, 48.807869 ], [ -123.318756502999946, 48.808131004000153 ], [ -123.318197980999969, 48.808330398000081 ], [ -123.318200492999935, 48.808528391000095 ], [ -123.318502688999942, 48.808959896000033 ], [ -123.3183397, 48.809193494000091 ], [ -123.318370193999925, 48.809635015000083 ], [ -123.31857691299993, 48.809850009000058 ], [ -123.318415817999949, 48.810308597000109 ], [ -123.317954202999914, 48.810535101000077 ], [ -123.317791778999961, 48.810760096000081 ], [ -123.318189107999956, 48.811101908000069 ], [ -123.318994003999947, 48.811359695000064 ], [ -123.318898711999964, 48.811513506000082 ], [ -123.319009778999941, 48.811684398000089 ], [ -123.318970911999969, 48.81184538800003 ], [ -123.318508886999979, 48.812117392000061 ], [ -123.318441102999955, 48.812279694000026 ], [ -123.318510399999937, 48.812440698000039 ], [ -123.32047479, 48.8130387940001 ], [ -123.320802905999983, 48.813189799000071 ], [ -123.32091289499995, 48.813325113000069 ], [ -123.321432505999937, 48.813530197 ], [ -123.32158451, 48.81383640800005 ], [ -123.322322411999934, 48.814094194000091 ], [ -123.322784599, 48.814173913000104 ], [ -123.322977005999974, 48.814488696000069 ], [ -123.322788490999983, 48.81477780300002 ], [ -123.322844392999954, 48.814965811000057 ], [ -123.323542000999936, 48.815233600000049 ], [ -123.32441460699999, 48.815411588000103 ], [ -123.32467378299998, 48.8155996 ], [ -123.32460591499999, 48.815743393000062 ], [ -123.324171183, 48.8159156910001 ], [ -123.323982387999976, 48.816096600000058 ], [ -123.323983680999945, 48.816240496000077 ], [ -123.324422193999965, 48.816706215000082 ], [ -123.323837981999972, 48.817013794000061 ], [ -123.323772493, 48.817509394000041 ], [ -123.323924697999985, 48.817732998000025 ], [ -123.324974804999954, 48.817982290000046 ], [ -123.325765097999948, 48.818052099000084 ], [ -123.325970788999896, 48.818160309000106 ], [ -123.326080890999904, 48.818366793000067 ], [ -123.327349302999963, 48.818668713000079 ], [ -123.327270202999955, 48.818839585000013 ], [ -123.327308568999939, 48.818901325000105 ], [ -123.327337507999971, 48.818947901000065 ], [ -123.327136305999929, 48.819244082000132 ], [ -123.327000707999929, 48.819254106000074 ], [ -123.326918214999964, 48.819370908000046 ], [ -123.326715709999931, 48.819399391000083 ], [ -123.326700279999926, 48.819291094000079 ], [ -123.326564494999971, 48.819264106000084 ], [ -123.326047606999936, 48.819436404000029 ], [ -123.326115515999959, 48.819536105000083 ], [ -123.326429694999945, 48.819651390000082 ], [ -123.326104905999927, 48.820011797000092 ], [ -123.325668819999976, 48.819969007000097 ], [ -123.325531090999917, 48.819806691000025 ], [ -123.32542349499991, 48.819798103000032 ], [ -123.324456816999941, 48.819917805000088 ], [ -123.324172209999958, 48.820017494000048 ], [ -123.324199708999942, 48.820198295000054 ], [ -123.32410359699999, 48.820252503000034 ], [ -123.323464095999924, 48.820262391000064 ], [ -123.322934294999968, 48.82045329500005 ], [ -123.322935497999964, 48.82057858600011 ], [ -123.323179888999931, 48.820649804000055 ], [ -123.323235387999915, 48.820793711000057 ], [ -123.32303200599992, 48.820947487000076 ], [ -123.322448105999968, 48.821138309000069 ], [ -123.322503497999918, 48.821282195000038 ], [ -123.32292709799998, 48.821470192000028 ], [ -123.32287379499995, 48.821622592000047 ], [ -123.322712015999969, 48.821820503000069 ], [ -123.322479106999964, 48.821830482000038 ], [ -123.322113105999946, 48.822029906000047 ], [ -123.321555299999943, 48.821995691000097 ], [ -123.321322817999942, 48.822049794000122 ], [ -123.3208589799999, 48.821961494000064 ], [ -123.320260090999938, 48.821998516000122 ], [ -123.319196192000021, 48.821840509000019 ], [ -123.316500208999969, 48.821972887000086 ], [ -123.315587099999945, 48.821823410000036 ], [ -123.314291399999945, 48.821763592000146 ], [ -123.313594408999947, 48.821781080000065 ], [ -123.313546832999961, 48.821779884000115 ], [ -123.31354669699995, 48.821782278000079 ], [ -123.311512506999946, 48.821833289000026 ], [ -123.31094149499998, 48.821934500000111 ], [ -123.310424199999957, 48.82215238400007 ], [ -123.308967600999949, 48.822011395000111 ], [ -123.3083804, 48.821923112000114 ] ], [ [ -123.312456821999916, 48.819456878000011 ], [ -123.312531798999942, 48.818149295000055 ], [ -123.312856314999934, 48.81815745900014 ], [ -123.312910186999915, 48.817217774000056 ], [ -123.311729126999964, 48.81718805700006 ], [ -123.311759089999924, 48.816665624000109 ], [ -123.311159939999982, 48.81665054300008 ], [ -123.311168585999923, 48.816499812000053 ], [ -123.308530655999959, 48.816433374000013 ], [ -123.308531091999896, 48.816425762000051 ], [ -123.307880132000022, 48.81640935800008 ], [ -123.308026240999965, 48.813865327000016 ], [ -123.305038784999965, 48.813789990000075 ], [ -123.305054679999941, 48.813513522000051 ], [ -123.302960867999971, 48.813460671000087 ], [ -123.30294769399994, 48.813689640000042 ], [ -123.303178261999989, 48.813695462000048 ], [ -123.30315978099999, 48.814016686000109 ], [ -123.305656491999969, 48.814079697000089 ], [ -123.305481004999947, 48.817132580000099 ], [ -123.30638525099998, 48.817155387000092 ], [ -123.306334005999972, 48.818047081000088 ], [ -123.308823317999938, 48.8181098250001 ], [ -123.308798012999944, 48.818550540000025 ], [ -123.309194030999905, 48.818560517000037 ], [ -123.309158391999944, 48.819181292000117 ], [ -123.309298264999967, 48.81918481600006 ], [ -123.309291932999969, 48.819295117000131 ], [ -123.31070012099994, 48.819330579000045 ], [ -123.310695417999966, 48.819412548000031 ], [ -123.312456821999916, 48.819456878000011 ] ], [ [ -123.29428041499996, 48.814774528 ], [ -123.294384006999962, 48.812979798000107 ], [ -123.294394318999949, 48.812801136000083 ], [ -123.296446638999953, 48.812853105000094 ], [ -123.29651279699999, 48.811705984000099 ], [ -123.301179850999972, 48.811824019000071 ], [ -123.301671765999913, 48.811836448000086 ], [ -123.301678288999966, 48.811723154000092 ], [ -123.301684738999981, 48.811611087000074 ], [ -123.297587746999966, 48.811507499000122 ], [ -123.297623586999975, 48.810885791000089 ], [ -123.29327215699999, 48.810775597000045 ], [ -123.293207038999981, 48.811903368000024 ], [ -123.293248519999963, 48.811904419000015 ], [ -123.293177712999935, 48.813130656000077 ], [ -123.293084535, 48.814744226000094 ], [ -123.29428041499996, 48.814774528 ] ], [ [ -123.292897507999896, 48.810681295000052 ], [ -123.292996909999928, 48.808959899000115 ], [ -123.290718649999917, 48.808902126000142 ], [ -123.290825733999981, 48.807049105000054 ], [ -123.290153559, 48.807032051000078 ], [ -123.290107599999914, 48.807827177000028 ], [ -123.285726972999981, 48.807715927000075 ], [ -123.285669862999967, 48.808702312 ], [ -123.286031394999924, 48.808711501000097 ], [ -123.286007859999955, 48.809118042000136 ], [ -123.286229989999953, 48.809117490000105 ], [ -123.286232258999974, 48.809515996000101 ], [ -123.28730969599998, 48.80954337 ], [ -123.287291588999921, 48.809856305000039 ], [ -123.287939194, 48.809872753000072 ], [ -123.28792847599999, 48.810058003000016 ], [ -123.289764239999954, 48.810104606000067 ], [ -123.289735536999956, 48.810601099000067 ], [ -123.292897507999896, 48.810681295000052 ] ], [ [ -123.284732744999943, 48.806681803000025 ], [ -123.28479756499992, 48.805562578000071 ], [ -123.28275193399999, 48.805510545000054 ], [ -123.28268706599998, 48.806629769000089 ], [ -123.284732744999943, 48.806681803000025 ] ], [ [ -123.315543586, 48.806207261000061 ], [ -123.315571658999971, 48.805716966000027 ], [ -123.315500956999955, 48.805715188000121 ], [ -123.315502632999937, 48.805685931000063 ], [ -123.312767201, 48.805617131000062 ], [ -123.312770815999954, 48.806198316000049 ], [ -123.315339875999925, 48.806262932000067 ], [ -123.315343352999918, 48.806202228000068 ], [ -123.315543586, 48.806207261000061 ] ], [ [ -123.283612910999963, 48.801482521 ], [ -123.283638453999984, 48.801041614000056 ], [ -123.282849740999936, 48.801021547000076 ], [ -123.282824190999975, 48.801462453000106 ], [ -123.283612910999963, 48.801482521 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.80968937279839", "sL_AssetLoss": "21859", "sL_BldgLoss": "17699", "sL_StrLoss": "10380", "sL_NStrLoss": "7319", "sL_ContLoss": "4160", "geom_point": "0101000020E610000075D86DE55FD05EC0AD516A8ADB634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.253243481999931, 48.778267525000039 ], [ -123.258673180999907, 48.77840713800007 ], [ -123.258462800999936, 48.782007129000078 ], [ -123.25303268499998, 48.781867505000022 ], [ -123.253243481999931, 48.778267525000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88089895", "BldgCostT": "55181524", "sL_LossRatio": "0.792549264127009", "sL_AssetLoss": "400626.2", "sL_BldgLoss": "317516", "sL_StrLoss": "191292", "sL_NStrLoss": "126224", "sL_ContLoss": "83110.2", "geom_point": "0101000020E61000009E6D8F5AB8CB5EC0048074FB76654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175493574999948, 48.804275966000034 ], [ -123.175599677999955, 48.802514695000113 ], [ -123.17534258100001, 48.802507895000105 ], [ -123.175396066999895, 48.801620076000049 ], [ -123.173218258999952, 48.801562441000051 ], [ -123.173346440999964, 48.79943624400007 ], [ -123.172759317, 48.799420699000059 ], [ -123.172671029999933, 48.800884867000057 ], [ -123.167238988999927, 48.800740886000064 ], [ -123.167265256999912, 48.800306099000125 ], [ -123.166091673999929, 48.800274957000035 ], [ -123.166141718999967, 48.799446943000113 ], [ -123.165576705999968, 48.799431945000052 ], [ -123.165794291999958, 48.795832242000145 ], [ -123.169607484000011, 48.795933406000096 ], [ -123.169612322999953, 48.795853245000067 ], [ -123.167789905999911, 48.795804913000104 ], [ -123.167802415999944, 48.795597771000082 ], [ -123.166732682, 48.795569386000189 ], [ -123.166737594999972, 48.795488074000097 ], [ -123.163665778, 48.795406506000077 ], [ -123.163883491999968, 48.791806783000062 ], [ -123.166537905999931, 48.791877274000086 ], [ -123.166572958999936, 48.791297130000046 ], [ -123.162934803999974, 48.791200498000066 ], [ -123.162941499999988, 48.791089811000106 ], [ -123.161514052999934, 48.791051863000071 ], [ -123.16150035, 48.791278269000074 ], [ -123.156069455, 48.791133717000079 ], [ -123.156149949999985, 48.789806291000126 ], [ -123.152550311999931, 48.789710328000083 ], [ -123.152606359999979, 48.788787164000077 ], [ -123.1472255799999, 48.788643490000069 ], [ -123.147338613999963, 48.786785110000082 ], [ -123.147444521999958, 48.785043762000065 ], [ -123.147865392000014, 48.785055010000079 ], [ -123.147938969999927, 48.783844970000139 ], [ -123.153368995999941, 48.783989937000023 ], [ -123.153239526999954, 48.78612315 ], [ -123.158199154999934, 48.786255316000045 ], [ -123.158118723999948, 48.787582751000116 ], [ -123.159866784999934, 48.787629279000058 ], [ -123.159880494999967, 48.787402872000094 ], [ -123.160542369999931, 48.787420481000041 ], [ -123.160543369, 48.787403989000062 ], [ -123.165973845999972, 48.787548314000055 ], [ -123.165966160999957, 48.787675494999981 ], [ -123.168583061999939, 48.787744945000092 ], [ -123.168410092999949, 48.790609917000033 ], [ -123.172048212999968, 48.79070636200008 ], [ -123.172028273999956, 48.791037014000025 ], [ -123.173180491999929, 48.791067533000032 ], [ -123.173178499999963, 48.79110057300008 ], [ -123.174048563999918, 48.791123610000056 ], [ -123.174041376999952, 48.791242872000083 ], [ -123.175394123999951, 48.791278676000047 ], [ -123.175375052999925, 48.791595307000122 ], [ -123.175426741999956, 48.791596675000036 ], [ -123.175414657999923, 48.791797314000029 ], [ -123.175847589999975, 48.791796654000052 ], [ -123.175848093999917, 48.791940862000082 ], [ -123.176284182999922, 48.791952398000085 ], [ -123.176380873999946, 48.79034648400004 ], [ -123.17870186899998, 48.790407854000044 ], [ -123.178700075999956, 48.789903118000083 ], [ -123.179925398999956, 48.789901212000146 ], [ -123.179927326000026, 48.790440236000038 ], [ -123.181811739999901, 48.790490003000052 ], [ -123.181790813999925, 48.790838218 ], [ -123.183769991999952, 48.790890453000017 ], [ -123.18371141799993, 48.791865852000086 ], [ -123.184994187999934, 48.791899687000083 ], [ -123.185019565999951, 48.791476898000091 ], [ -123.190450589999955, 48.791619978000035 ], [ -123.190446705999946, 48.791684793000073 ], [ -123.191342062999951, 48.791708354000015 ], [ -123.191324664999954, 48.791998846000048 ], [ -123.19134074399993, 48.791999269 ], [ -123.191418354999911, 48.790703352000079 ], [ -123.193945915999976, 48.79076982400008 ], [ -123.194048040999945, 48.789062912000148 ], [ -123.194564180999976, 48.789076478000013 ], [ -123.194590042999934, 48.788644124000093 ], [ -123.194643387999946, 48.788645526000025 ], [ -123.194734220000029, 48.787126922000063 ], [ -123.194980363999946, 48.787133391000097 ], [ -123.195011537999974, 48.786612127000062 ], [ -123.19517653299998, 48.786616463000087 ], [ -123.195199953, 48.786224830000059 ], [ -123.195423561999988, 48.786230706000033 ], [ -123.195488800999939, 48.78513963400016 ], [ -123.19606728199993, 48.785154833000085 ], [ -123.196115019999965, 48.784356248000044 ], [ -123.196435109999982, 48.784364656000015 ], [ -123.196548944999961, 48.782460044000089 ], [ -123.195206621, 48.782424776000056 ], [ -123.19542185499995, 48.778824915000072 ], [ -123.200851445999973, 48.778967468000126 ], [ -123.200790163999926, 48.779994456000033 ], [ -123.202507731999958, 48.780039492000121 ], [ -123.202506997999976, 48.780048506000128 ], [ -123.201940075999943, 48.781281795000048 ], [ -123.201702408999921, 48.783161796000037 ], [ -123.201948699999974, 48.783269987000075 ], [ -123.202914710999963, 48.783214494000056 ], [ -123.20314730599992, 48.783312710000054 ], [ -123.203827213999944, 48.783392501000058 ], [ -123.203923693999968, 48.78350931500006 ], [ -123.203803812, 48.784363803000069 ], [ -123.20388768399998, 48.784543305000085 ], [ -123.204062808999964, 48.784543297000042 ], [ -123.205014175999935, 48.78419999300008 ], [ -123.20634859899998, 48.784034807000083 ], [ -123.206660798999934, 48.784070396000097 ], [ -123.20698899599995, 48.784249896000134 ], [ -123.207889205999948, 48.784400802000114 ], [ -123.20824228099994, 48.784526195000161 ], [ -123.208651835999902, 48.784859345000051 ], [ -123.208803613999976, 48.785164198000054 ], [ -123.209717288999983, 48.785656998000022 ], [ -123.212082500999969, 48.78805539800004 ], [ -123.212740404, 48.789141986000047 ], [ -123.21278421, 48.78948379900006 ], [ -123.213155312999987, 48.790319907000082 ], [ -123.213701601999944, 48.790697306000126 ], [ -123.214233649999954, 48.791414250000059 ], [ -123.214241213999983, 48.791432914000097 ], [ -123.214319601999975, 48.791634821000024 ], [ -123.209579902999934, 48.791511031 ], [ -123.209617108999936, 48.790885702 ], [ -123.208906118, 48.790867115 ], [ -123.208916835999929, 48.790687000000119 ], [ -123.207985359999952, 48.790662640000058 ], [ -123.20786028199997, 48.792763532000031 ], [ -123.205047639999989, 48.79268992900009 ], [ -123.205035643999963, 48.792891209000111 ], [ -123.206122792, 48.792919667000021 ], [ -123.206099293999898, 48.793314084000045 ], [ -123.211046240999977, 48.793443439000043 ], [ -123.211038306999939, 48.79357684400005 ], [ -123.212847384999918, 48.79362409100009 ], [ -123.212701240999976, 48.796082924000082 ], [ -123.21213080699999, 48.796223189000102 ], [ -123.211478593999942, 48.796251707000117 ], [ -123.20999250399997, 48.796029485000098 ], [ -123.207770119999921, 48.795511100000034 ], [ -123.206940093999947, 48.795197792000067 ], [ -123.205945000999932, 48.795146501000062 ], [ -123.205019212999957, 48.794968492000095 ], [ -123.203859311999935, 48.794448605000106 ], [ -123.203736618, 48.794529797000038 ], [ -123.203669022, 48.794925705000082 ], [ -123.203902801999945, 48.795320289000095 ], [ -123.203835507999941, 48.795536696000084 ], [ -123.203168603999956, 48.795609385000056 ], [ -123.201997198999933, 48.795351590000074 ], [ -123.201463289999978, 48.794874496000126 ], [ -123.201338685999971, 48.794425900000093 ], [ -123.20158328899997, 48.794209408000064 ], [ -123.201310907999954, 48.793840495000019 ], [ -123.200857486999922, 48.792852107000037 ], [ -123.200662512999926, 48.792159899000062 ], [ -123.20066578899997, 48.791752894000084 ], [ -123.202478045999925, 48.791800402000042 ], [ -123.20264380099999, 48.789021521000038 ], [ -123.20645432399999, 48.789121314000077 ], [ -123.206579453999936, 48.787020411000093 ], [ -123.206905503999934, 48.787028944000042 ], [ -123.206919517999921, 48.786793623000079 ], [ -123.20534583300001, 48.786752432000121 ], [ -123.205356050999939, 48.786580949000033 ], [ -123.203097903999947, 48.786521801000063 ], [ -123.202977151999946, 48.788546665000105 ], [ -123.201792243999975, 48.788515610000054 ], [ -123.201754436999977, 48.789149292000026 ], [ -123.201006663999948, 48.789129687000127 ], [ -123.200894406999922, 48.791010608000114 ], [ -123.200671811999911, 48.791004771000068 ], [ -123.20068148699994, 48.789802891000093 ], [ -123.20086850199999, 48.788713285000014 ], [ -123.200765200999953, 48.787014287000105 ], [ -123.200004585999963, 48.787464295000092 ], [ -123.199582512999925, 48.787618101000078 ], [ -123.199244391999969, 48.787880201000071 ], [ -123.19925930399998, 48.788096690000017 ], [ -123.199845102999973, 48.788193508000063 ], [ -123.198933795999963, 48.78876179800006 ], [ -123.198758901999966, 48.789338586000078 ], [ -123.19825850899997, 48.790059186000093 ], [ -123.197188087, 48.791032002000136 ], [ -123.196442705999985, 48.791906405000134 ], [ -123.196062402999956, 48.792204094000027 ], [ -123.195832683, 48.792618503000064 ], [ -123.1954507129999, 48.792852097000065 ], [ -123.195410516999942, 48.793014500000098 ], [ -123.195629797999942, 48.793068613000031 ], [ -123.196759014999913, 48.793011595000046 ], [ -123.197863997999931, 48.793297894000048 ], [ -123.19821809699999, 48.793458787000105 ], [ -123.198614096999961, 48.793890295000097 ], [ -123.199623979999913, 48.794158099000079 ], [ -123.200372884, 48.794670802000091 ], [ -123.200595807999974, 48.795560909000145 ], [ -123.200486390999941, 48.795704807000078 ], [ -123.200012102999963, 48.795948285000073 ], [ -123.200530813999976, 48.796261700000095 ], [ -123.200681209999956, 48.796594892000073 ], [ -123.200927100999934, 48.796845591000064 ], [ -123.20175980599997, 48.797366790000055 ], [ -123.201680411999945, 48.797708693000104 ], [ -123.20148999099996, 48.797816896000015 ], [ -123.201298287999975, 48.797808393000039 ], [ -123.20142119899999, 48.798006293000121 ], [ -123.20131359500003, 48.798039090000024 ], [ -123.20116629799999, 48.797817962000082 ], [ -123.201163591999958, 48.797816912 ], [ -123.201067885999962, 48.797862505000097 ], [ -123.201096383999953, 48.798051900000132 ], [ -123.200563608999971, 48.798034801000078 ], [ -123.200672384, 48.797899495000074 ], [ -123.199583688999951, 48.797711502000077 ], [ -123.198723977999933, 48.79775849300006 ], [ -123.196517711999931, 48.797402404000088 ], [ -123.195099982999949, 48.79727850200004 ], [ -123.19448741399998, 48.797171697000067 ], [ -123.193043196999938, 48.796724501000078 ], [ -123.191924886999956, 48.796528006000138 ], [ -123.190004285999919, 48.796324301000041 ], [ -123.188764874999919, 48.796012395000105 ], [ -123.18441711, 48.795200603000048 ], [ -123.183580345999985, 48.794939072000069 ], [ -123.183300796999944, 48.794851699000063 ], [ -123.182986701999965, 48.794860206000067 ], [ -123.182837399999983, 48.794968498000074 ], [ -123.182742406999964, 48.795266097000081 ], [ -123.182594184999971, 48.795301700000039 ], [ -123.182593675999925, 48.795297976000022 ], [ -123.182522816999892, 48.794780507000077 ], [ -123.18241340499999, 48.794682186000053 ], [ -123.18177300899994, 48.794485704000053 ], [ -123.181337314, 48.794558304000105 ], [ -123.178560102999981, 48.794247811000119 ], [ -123.177591122999956, 48.794051304000092 ], [ -123.176884698999956, 48.794024198000088 ], [ -123.176571396999961, 48.794061303000049 ], [ -123.176367978000016, 48.794187995000058 ], [ -123.175867016000012, 48.794961407000145 ], [ -123.175830836999964, 48.795080667 ], [ -123.175637603999974, 48.795717606000046 ], [ -123.17541950499999, 48.795906999000145 ], [ -123.175065913999973, 48.795961193000025 ], [ -123.174125489999966, 48.795882813000041 ], [ -123.172655311999961, 48.795488296000066 ], [ -123.172068183999954, 48.79542710100008 ], [ -123.173513912999923, 48.796072208000062 ], [ -123.175422091999977, 48.796546512000084 ], [ -123.177901865999942, 48.797392269000056 ], [ -123.178203087999933, 48.797494997000094 ], [ -123.179293313999935, 48.797952204000133 ], [ -123.180276297999981, 48.798184291000091 ], [ -123.180740111999924, 48.798499104000022 ], [ -123.182306397999966, 48.798873698000122 ], [ -123.182348615999928, 48.798892259000091 ], [ -123.182308518999918, 48.799559510000094 ], [ -123.182350365999966, 48.79956061400005 ], [ -123.18213403299994, 48.803160330000011 ], [ -123.181003556999954, 48.803130489000061 ], [ -123.180916946999929, 48.804570922 ], [ -123.180876398999928, 48.805245253000066 ], [ -123.17704121599999, 48.805143932000057 ], [ -123.176879440999983, 48.807830483000089 ], [ -123.176848910999936, 48.808337443000056 ], [ -123.175940664999985, 48.808313428000126 ], [ -123.17585443199999, 48.809744837000075 ], [ -123.17542821699999, 48.80968060600005 ], [ -123.173233409999966, 48.809162099000105 ], [ -123.17207239, 48.808740603000089 ], [ -123.171691786999958, 48.808480001000078 ], [ -123.170709609999932, 48.808193688000095 ], [ -123.170508520999988, 48.808156897000067 ], [ -123.170557455999983, 48.807346114000012 ], [ -123.170628323999935, 48.806171891000048 ], [ -123.171536525999926, 48.806195951000099 ], [ -123.171630757999978, 48.804634017000048 ], [ -123.171633170999939, 48.804594011000084 ], [ -123.171753928999962, 48.804597209000029 ], [ -123.175468296999938, 48.804695526000017 ], [ -123.175493574999948, 48.804275966000034 ] ], [ [ -123.176121122, 48.798033809000103 ], [ -123.176155457999954, 48.797463629000013 ], [ -123.175586810999974, 48.797464497000128 ], [ -123.17556664199995, 48.79779934500008 ], [ -123.175553422999926, 48.798018792000079 ], [ -123.175896659999964, 48.79802787200002 ], [ -123.176121122, 48.798033809000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.947350771294433", "sL_AssetLoss": "5964", "sL_BldgLoss": "5650", "sL_StrLoss": "4600", "sL_NStrLoss": "1050", "sL_ContLoss": "314", "geom_point": "0101000020E61000005A62E96C16CA5EC0D15158F3AD624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.155013607999976, 48.769061298000111 ], [ -123.160441945999949, 48.769205909000135 ], [ -123.160224073000037, 48.772805756000082 ], [ -123.15479532, 48.77266113400006 ], [ -123.155013607999976, 48.769061298000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.784929356357928", "sL_AssetLoss": "6370", "sL_BldgLoss": "5000", "sL_StrLoss": "2430", "sL_NStrLoss": "2570", "sL_ContLoss": "1370", "geom_point": "0101000020E6100000A21CB3895FCE5EC04AA0B93506694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.221191403999953, 48.819218491000065 ], [ -123.221845399999921, 48.81889229900009 ], [ -123.222321716, 48.818954994000102 ], [ -123.223727594999957, 48.819410788000027 ], [ -123.224449091999972, 48.819759694000048 ], [ -123.224750812999957, 48.819993299000032 ], [ -123.226486192999943, 48.820926102000037 ], [ -123.227345076999981, 48.821508597000076 ], [ -123.228370814999948, 48.822326095000115 ], [ -123.228413506999942, 48.822442891000016 ], [ -123.228276601999966, 48.822559697000109 ], [ -123.22811330699993, 48.822595308000089 ], [ -123.227553397999898, 48.82238169300016 ], [ -123.226367294999989, 48.821826214000048 ], [ -123.22572320799999, 48.821313496000073 ], [ -123.223323796999964, 48.820518787000104 ], [ -123.221301596999979, 48.819487687000041 ], [ -123.221151393999932, 48.819362287000118 ], [ -123.221191403999953, 48.819218491000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9987917", "BldgCostT": "6391667", "sL_LossRatio": "0.640485744456177", "sL_AssetLoss": "94700", "sL_BldgLoss": "60654", "sL_StrLoss": "23370", "sL_NStrLoss": "37284", "sL_ContLoss": "34046", "geom_point": "0101000020E6100000BD536421F8CF5EC09AD5D8B1D3614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.252072908999978, 48.767203507000055 ], [ -123.251051475999958, 48.766971393000048 ], [ -123.249867592999919, 48.767172210000091 ], [ -123.24741650699994, 48.766834595000041 ], [ -123.246831106999977, 48.766648087000064 ], [ -123.245783498999984, 48.766613888000094 ], [ -123.24574161299995, 48.766451490000044 ], [ -123.244978900999982, 48.766227889000071 ], [ -123.244472400999953, 48.765950205000053 ], [ -123.243900713999921, 48.76587049500003 ], [ -123.24218289599996, 48.765289399000039 ], [ -123.240341399000016, 48.764061704 ], [ -123.239126305999918, 48.763541898000028 ], [ -123.238789346000019, 48.763340151000151 ], [ -123.238826396999968, 48.762710423 ], [ -123.238852443999974, 48.762267725000065 ], [ -123.244280251999953, 48.762408074000071 ], [ -123.24426510399995, 48.762666039000088 ], [ -123.245129037, 48.76268835200009 ], [ -123.245115738999914, 48.762914863000098 ], [ -123.245924023, 48.762935732000074 ], [ -123.245908326999967, 48.763203186000041 ], [ -123.246657111999937, 48.763222514000041 ], [ -123.246649347999963, 48.763354838000083 ], [ -123.247290997999954, 48.763371397000085 ], [ -123.247265151999969, 48.763812030000039 ], [ -123.24859607799999, 48.763846364000159 ], [ -123.248563870999973, 48.764395702000101 ], [ -123.251744399999964, 48.76447768200012 ], [ -123.251742139, 48.764516295000185 ], [ -123.252433901999964, 48.764534113000117 ], [ -123.252501712999944, 48.763375892000028 ], [ -123.252422073999981, 48.763373841000067 ], [ -123.252477930999973, 48.762419791000077 ], [ -123.250785973999953, 48.762376200000105 ], [ -123.250996855999944, 48.75877611100006 ], [ -123.251453713999965, 48.75878788400005 ], [ -123.251454830999975, 48.758768808000092 ], [ -123.251936987999969, 48.759142503000085 ], [ -123.252718393999913, 48.760283298000054 ], [ -123.253305113999886, 48.76073190500005 ], [ -123.253522705999941, 48.760758990000035 ], [ -123.253575594, 48.760425703000074 ], [ -123.253860905999915, 48.760317488000084 ], [ -123.254392610999929, 48.76032459700005 ], [ -123.254625210999961, 48.760441388000046 ], [ -123.254665692999978, 48.760729090000048 ], [ -123.254436486999964, 48.760837292000083 ], [ -123.25461318899994, 48.76112499500006 ], [ -123.255378104999963, 48.761500998000066 ], [ -123.255611408999982, 48.761869800000063 ], [ -123.255952494999917, 48.76192251200014 ], [ -123.256402612999949, 48.762289997000025 ], [ -123.256647201, 48.762352685000025 ], [ -123.256621688999985, 48.762452403000061 ], [ -123.2556131, 48.76241819900013 ], [ -123.25455439199996, 48.762816903000029 ], [ -123.254460711999926, 48.762933688000061 ], [ -123.254897104999969, 48.763157298000131 ], [ -123.255073211999928, 48.763103189000041 ], [ -123.255388587999903, 48.763453595000044 ], [ -123.256139006999888, 48.763802503000107 ], [ -123.256344584999965, 48.764215507000138 ], [ -123.256331709999969, 48.764476199000079 ], [ -123.256801711, 48.764808586000051 ], [ -123.257068691999976, 48.764997393000058 ], [ -123.257098400999922, 48.76503876900005 ], [ -123.257713107999933, 48.765894686000102 ], [ -123.257647886999933, 48.766219406000062 ], [ -123.257305198000012, 48.765994414000076 ], [ -123.256939677999966, 48.766319092000053 ], [ -123.256738301999945, 48.766733497000047 ], [ -123.25607228299998, 48.766905904000083 ], [ -123.255760708999958, 48.767212091000083 ], [ -123.256400108999955, 48.767301801000087 ], [ -123.257035564999967, 48.767259613000078 ], [ -123.257020592999979, 48.767515714000112 ], [ -123.255448905999984, 48.767492592000075 ], [ -123.254783091999954, 48.767575198000038 ], [ -123.254304718999919, 48.767431402000085 ], [ -123.252916699999957, 48.767227714000036 ], [ -123.252072908999978, 48.767203507000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.863204300028509", "sL_AssetLoss": "14381.3", "sL_BldgLoss": "12414", "sL_StrLoss": "8650", "sL_NStrLoss": "3764", "sL_ContLoss": "1967.3", "geom_point": "0101000020E6100000ACED3F9507CE5EC0934F1B1706614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.222183195999946, 48.759905894000035 ], [ -123.220875684999925, 48.759575396000123 ], [ -123.220262216999927, 48.759593998000049 ], [ -123.21962269699999, 48.759460108000034 ], [ -123.219337003999968, 48.759524186000135 ], [ -123.218410405, 48.759300606000096 ], [ -123.217921610999937, 48.759059891000021 ], [ -123.216857684, 48.758890402000063 ], [ -123.216490507999964, 48.758908904000066 ], [ -123.215714584999972, 48.758730896000024 ], [ -123.215388300999905, 48.758578499000087 ], [ -123.214707125999922, 48.758453203000073 ], [ -123.214447191999952, 48.7583092960001 ], [ -123.213930302999955, 48.758220994000048 ], [ -123.213060113999973, 48.758168308000066 ], [ -123.212780190999965, 48.75820438700007 ], [ -123.212824702999953, 48.757454852000073 ], [ -123.21289921499995, 48.756200072000077 ], [ -123.218326242, 48.756341742000103 ], [ -123.218302238999954, 48.756746758000119 ], [ -123.220846377999948, 48.756813077000068 ], [ -123.220833322999937, 48.757033553000049 ], [ -123.22274052399996, 48.757083228000049 ], [ -123.222732811999919, 48.757213556000089 ], [ -123.223526103999987, 48.757234208000092 ], [ -123.22351949399993, 48.757345935000032 ], [ -123.224512676999922, 48.757371782000057 ], [ -123.224508705999966, 48.757438927000045 ], [ -123.225221154999957, 48.757457464000062 ], [ -123.225116806999949, 48.759222415000089 ], [ -123.225082678999939, 48.759799634000032 ], [ -123.225081107999969, 48.759800502000047 ], [ -123.224169496999977, 48.759722111000031 ], [ -123.223477315999972, 48.760002700000044 ], [ -123.222183195999946, 48.759905894000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.813421998012688", "sL_AssetLoss": "13083", "sL_BldgLoss": "10642", "sL_StrLoss": "6210", "sL_NStrLoss": "4432", "sL_ContLoss": "2441", "geom_point": "0101000020E61000009C804F4138C95EC095E82CB388644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141453144999957, 48.783549211000015 ], [ -123.146883115999955, 48.783694508000089 ], [ -123.146706609999953, 48.7865961030001 ], [ -123.146664137999906, 48.787294243000083 ], [ -123.141233748999937, 48.787148935000069 ], [ -123.141370734999924, 48.784901438000084 ], [ -123.141453144999957, 48.783549211000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12921661", "BldgCostT": "7935743", "sL_LossRatio": "0.729413466406307", "sL_AssetLoss": "69135", "sL_BldgLoss": "50428", "sL_StrLoss": "26700", "sL_NStrLoss": "23728", "sL_ContLoss": "18707", "geom_point": "0101000020E610000047054EB601C85EC0397CF3976D624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118532551999948, 48.771568079000133 ], [ -123.118715903999899, 48.768582441000021 ], [ -123.118265622999957, 48.768570280000084 ], [ -123.118280312999957, 48.768331074000109 ], [ -123.116572676999979, 48.768284936000043 ], [ -123.116707411999982, 48.766092319000059 ], [ -123.118189389999884, 48.766301989000056 ], [ -123.12107579299996, 48.766821809000113 ], [ -123.122422611999951, 48.766972803000094 ], [ -123.123240175999925, 48.766989897000038 ], [ -123.126152712999925, 48.767068204000083 ], [ -123.13017909, 48.766576897000064 ], [ -123.130559190999932, 48.766495694000078 ], [ -123.131347391999938, 48.766162387000143 ], [ -123.132202293999967, 48.765477410000074 ], [ -123.132424155999971, 48.7652049060001 ], [ -123.13245883499998, 48.765205838000078 ], [ -123.132238835999914, 48.768805651000072 ], [ -123.132174778999953, 48.768803929000072 ], [ -123.131988194999934, 48.771856447000047 ], [ -123.126559638999979, 48.771710390000045 ], [ -123.126657449999954, 48.770113273000042 ], [ -123.124063504999938, 48.770043384000111 ], [ -123.123961066999982, 48.771714544000119 ], [ -123.118532551999948, 48.771568079000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8506750", "BldgCostT": "5395000", "sL_LossRatio": "0.849243475175017", "sL_AssetLoss": "30997", "sL_BldgLoss": "26324", "sL_StrLoss": "16794", "sL_NStrLoss": "9530", "sL_ContLoss": "4673", "geom_point": "0101000020E61000000E0A7350FCCD5EC013BE31E3F15F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.216440769999934, 48.753010419000134 ], [ -123.216498067999936, 48.752044190000042 ], [ -123.214199048999916, 48.751984164000099 ], [ -123.21425787799997, 48.750992887000102 ], [ -123.214280018999887, 48.750619806000039 ], [ -123.214412688, 48.748384086000087 ], [ -123.214622994999942, 48.74838957900009 ], [ -123.214751795, 48.746218687000116 ], [ -123.220177674999917, 48.746360265000106 ], [ -123.220167526999944, 48.746531649000133 ], [ -123.222449305999973, 48.746591106000096 ], [ -123.22241373599999, 48.747192281000075 ], [ -123.222813727999963, 48.747202698000073 ], [ -123.222775175999956, 48.747854367000116 ], [ -123.222600737999969, 48.750802799000105 ], [ -123.22200738, 48.75078734500012 ], [ -123.221867439999968, 48.753151910000035 ], [ -123.216440769999934, 48.753010419000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22113667", "BldgCostT": "13776667", "sL_LossRatio": "0.797271444282038", "sL_AssetLoss": "107206.9", "sL_BldgLoss": "85473", "sL_StrLoss": "50018", "sL_NStrLoss": "35455", "sL_ContLoss": "21733.9", "geom_point": "0101000020E6100000A2EB2DAB11C85EC0180267C6AE654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138775182999922, 48.799726796000087 ], [ -123.1374675859999, 48.799413403000123 ], [ -123.136881320000015, 48.799179899000052 ], [ -123.135301412999979, 48.798885007000067 ], [ -123.134101603999909, 48.798509084000102 ], [ -123.13290308299996, 48.79823130200009 ], [ -123.13119830199993, 48.797567704000123 ], [ -123.131008108999964, 48.797415295000107 ], [ -123.131020289999981, 48.797081994000052 ], [ -123.130896713999931, 48.797019299000056 ], [ -123.128511902999946, 48.796409807000046 ], [ -123.12460280699996, 48.795622210000047 ], [ -123.121960389999913, 48.795266096000034 ], [ -123.120271702999915, 48.794727808000133 ], [ -123.118253975999934, 48.794279193000079 ], [ -123.117396485999905, 48.794155297000017 ], [ -123.116988813999939, 48.79420939200007 ], [ -123.115435986999941, 48.793931709000042 ], [ -123.114919001999965, 48.794381710000103 ], [ -123.114661101999943, 48.794408792000119 ], [ -123.112507809, 48.793925988000076 ], [ -123.110639774, 48.793605235000072 ], [ -123.108966006999978, 48.793317811000108 ], [ -123.108611798999974, 48.793209589000035 ], [ -123.108407692999947, 48.793021594000066 ], [ -123.108639302999961, 48.792894789000108 ], [ -123.109197383999955, 48.79276809200006 ], [ -123.109346602999921, 48.792597213000079 ], [ -123.109344799, 48.792147112000116 ], [ -123.108976307, 48.791725588000105 ], [ -123.107530106999945, 48.791404353000125 ], [ -123.107559887999912, 48.790921507000107 ], [ -123.108230349999985, 48.79093967200005 ], [ -123.108265290999952, 48.790373022000082 ], [ -123.109295143999987, 48.790400917000078 ], [ -123.109328377999987, 48.789861747000089 ], [ -123.11475898, 48.790008676000085 ], [ -123.114674619, 48.791379848000091 ], [ -123.115163746999912, 48.791393069 ], [ -123.115154976999989, 48.791535629000066 ], [ -123.117523272999989, 48.791599607000073 ], [ -123.117512845999897, 48.791769241000083 ], [ -123.12001903599996, 48.791836887000073 ], [ -123.120056372999926, 48.791228913000026 ], [ -123.122109251999973, 48.791284279000088 ], [ -123.122124901999911, 48.791029262000087 ], [ -123.123674712999929, 48.791071034000062 ], [ -123.123687747999952, 48.79085850000007 ], [ -123.129118510999916, 48.791004698000094 ], [ -123.12908443699996, 48.791561319000046 ], [ -123.129525828999959, 48.791573189000083 ], [ -123.129479544999953, 48.792329351000078 ], [ -123.131276013999965, 48.792377644000084 ], [ -123.13122652, 48.793186699000088 ], [ -123.132343824999978, 48.7932167190001 ], [ -123.132331193999946, 48.793423276000119 ], [ -123.134397564999929, 48.793478766000142 ], [ -123.134252940999943, 48.795845356000072 ], [ -123.136383992999953, 48.795902541000032 ], [ -123.136384560999929, 48.795893224000132 ], [ -123.141815946999955, 48.796038777000049 ], [ -123.14164393799993, 48.798860595000086 ], [ -123.14400803599996, 48.798857665000128 ], [ -123.144009700999945, 48.799439281000076 ], [ -123.144011125999938, 48.79993717400005 ], [ -123.143194078999969, 48.799938192000084 ], [ -123.143194514999976, 48.800091264000031 ], [ -123.143194847999951, 48.800208069000064 ], [ -123.141969272999958, 48.800209585000047 ], [ -123.141968197999958, 48.799829374000076 ], [ -123.141967747999971, 48.799669830000084 ], [ -123.141559227999906, 48.799670333000037 ], [ -123.141559134999952, 48.799637429000065 ], [ -123.141314853999972, 48.799630888000081 ], [ -123.14081882, 48.79961760600002 ], [ -123.14080244199999, 48.799886177000097 ], [ -123.14077952199996, 48.800262047000039 ], [ -123.140210934999971, 48.800246819000058 ], [ -123.139958649999969, 48.800155442000062 ], [ -123.139883321999932, 48.800128158000085 ], [ -123.138775182999922, 48.799726796000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7274250", "BldgCostT": "4545000", "sL_LossRatio": "0.73069008782936", "sL_AssetLoss": "39850", "sL_BldgLoss": "29118", "sL_StrLoss": "15070", "sL_NStrLoss": "14048", "sL_ContLoss": "10732", "geom_point": "0101000020E6100000390CBD305FCB5EC037095A58A2624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.177964244999927, 48.773124646000042 ], [ -123.178037633999935, 48.771904504000076 ], [ -123.173282154, 48.771778626000099 ], [ -123.173290429999952, 48.771641253000027 ], [ -123.171786009999948, 48.771601387000096 ], [ -123.172002989999939, 48.768001510000083 ], [ -123.177431257999942, 48.768145257000128 ], [ -123.177422993999983, 48.768282630000115 ], [ -123.178927311999971, 48.768322417000022 ], [ -123.178853951999926, 48.76954256700003 ], [ -123.183435514999957, 48.769663613000063 ], [ -123.183604672999977, 48.769743977000104 ], [ -123.183393122999945, 48.773268089000062 ], [ -123.177964244999927, 48.773124646000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.922688382640965", "sL_AssetLoss": "9701", "sL_BldgLoss": "8951", "sL_StrLoss": "7000", "sL_NStrLoss": "1951", "sL_ContLoss": "750", "geom_point": "0101000020E61000008FE51BD9EECC5EC03C4ED1915C684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.203750228999951, 48.817413504000058 ], [ -123.20375477, 48.817337406000057 ], [ -123.199349478999977, 48.817221988000043 ], [ -123.199388718999955, 48.816565294000078 ], [ -123.199235916, 48.816561287000077 ], [ -123.199337661999934, 48.814858494000063 ], [ -123.196851792999922, 48.81479328000006 ], [ -123.197331001999927, 48.813827888000034 ], [ -123.197738303999969, 48.813476086000016 ], [ -123.19820068699994, 48.813286693000073 ], [ -123.198608301999968, 48.813214002000059 ], [ -123.199275613999959, 48.812835201000034 ], [ -123.199519403999915, 48.812843713000042 ], [ -123.201498486999981, 48.813712510000116 ], [ -123.201690505999949, 48.813739605000137 ], [ -123.201771407999956, 48.813648391000129 ], [ -123.201975907999909, 48.81361278300006 ], [ -123.20370738299999, 48.814095604000109 ], [ -123.205317102999956, 48.814784905000081 ], [ -123.208115289999924, 48.816147892000082 ], [ -123.2088106, 48.816586501000089 ], [ -123.208813305999954, 48.81688420400009 ], [ -123.20837699399999, 48.816875695000121 ], [ -123.207054404999951, 48.816526703000108 ], [ -123.20667299499999, 48.816546687000034 ], [ -123.206073023999949, 48.816204902000095 ], [ -123.205718487999917, 48.816152209000059 ], [ -123.205499595999953, 48.816197704000096 ], [ -123.205282112999953, 48.816323096000104 ], [ -123.2051608, 48.816737494000108 ], [ -123.204385208999923, 48.816676309000044 ], [ -123.204018117999965, 48.816776000000104 ], [ -123.203853101, 48.817416198000075 ], [ -123.203750228999951, 48.817413504000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.812532476280287", "sL_AssetLoss": "5196.1", "sL_BldgLoss": "4222", "sL_StrLoss": "2316", "sL_NStrLoss": "1906", "sL_ContLoss": "974.1", "geom_point": "0101000020E61000002917537ECCCE5EC09CAB41F3146A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.22988030099999, 48.830565158000077 ], [ -123.229917249999943, 48.829940169000054 ], [ -123.229789535999927, 48.829936858000053 ], [ -123.229990247999936, 48.826541644000017 ], [ -123.232142095999976, 48.827661208000123 ], [ -123.233673900999932, 48.828846096000063 ], [ -123.233619190999946, 48.828944413000052 ], [ -123.233048516999986, 48.829216392000063 ], [ -123.232845289999943, 48.829504108000052 ], [ -123.231771597999952, 48.829920011000119 ], [ -123.23131869799991, 48.830602441000067 ], [ -123.22988030099999, 48.830565158000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.856352795460437", "sL_AssetLoss": "6943.4", "sL_BldgLoss": "5946", "sL_StrLoss": "3750", "sL_NStrLoss": "2196", "sL_ContLoss": "997.4", "geom_point": "0101000020E61000002EFD6C6002CC5EC0D4B816B1F8624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185129333, 48.774407632000056 ], [ -123.185345302999934, 48.770807743000034 ], [ -123.185586357999952, 48.770814103000085 ], [ -123.186127410000012, 48.771224091000121 ], [ -123.186360408999974, 48.771745309000075 ], [ -123.186454587999947, 48.771862109000089 ], [ -123.186686693999931, 48.771879195000118 ], [ -123.186918311999946, 48.772094193000044 ], [ -123.188349488999933, 48.772353506000073 ], [ -123.189656912999965, 48.772468796000062 ], [ -123.189969276999975, 48.772567093000092 ], [ -123.190445810999975, 48.77247590000011 ], [ -123.19068296099999, 48.772470221000027 ], [ -123.19055838099996, 48.774550710000049 ], [ -123.185129333, 48.774407632000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5573500", "BldgCostT": "3580000", "sL_LossRatio": "0.825864758024699", "sL_AssetLoss": "30583.7", "sL_BldgLoss": "25258", "sL_StrLoss": "16897", "sL_NStrLoss": "8361", "sL_ContLoss": "5325.7", "geom_point": "0101000020E610000050AD3A8246C75EC083035249BA634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.111443388999987, 48.783238158000081 ], [ -123.111656294999989, 48.779780671000047 ], [ -123.110724570999935, 48.779755448000081 ], [ -123.110730508999922, 48.779659036000105 ], [ -123.111277302999952, 48.77953288700008 ], [ -123.111451492999961, 48.779422747000048 ], [ -123.111903410999972, 48.779136995000073 ], [ -123.112255600999958, 48.778695494000075 ], [ -123.112430807999928, 48.778138598000076 ], [ -123.112132486999926, 48.777886511000141 ], [ -123.109537801, 48.777235462000064 ], [ -123.109678488999975, 48.774952010000064 ], [ -123.115107367999912, 48.775098924000112 ], [ -123.115035574999951, 48.776266382000124 ], [ -123.116375293999909, 48.776302594000093 ], [ -123.116162751000019, 48.779760111000087 ], [ -123.117094477999927, 48.779785286000084 ], [ -123.11706481899995, 48.780267852000087 ], [ -123.116873231999989, 48.783384981000019 ], [ -123.111443388999987, 48.783238158000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.884015883363954", "sL_AssetLoss": "16873", "sL_BldgLoss": "14916", "sL_StrLoss": "10870", "sL_NStrLoss": "4046", "sL_ContLoss": "1957", "geom_point": "0101000020E6100000FF944B5F5FC45EC0CC8A975DE6654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.061085615999929, 48.797643095000083 ], [ -123.061820805999957, 48.796968084000113 ], [ -123.062812686999962, 48.796842705000088 ], [ -123.063059583999959, 48.79673450700006 ], [ -123.0632357099999, 48.796365599000112 ], [ -123.063235592999916, 48.796113494000124 ], [ -123.062975076999962, 48.795321696000094 ], [ -123.062911386999957, 48.795244866000118 ], [ -123.064581454999981, 48.795290801000078 ], [ -123.064674741999937, 48.793800569000055 ], [ -123.070105658999921, 48.793949768000111 ], [ -123.070098686, 48.794061389000063 ], [ -123.071828154999963, 48.79410884300011 ], [ -123.071824204000023, 48.79411961200001 ], [ -123.071906891999959, 48.794263515000075 ], [ -123.07182439199994, 48.79440878800002 ], [ -123.071825322999956, 48.795316005000082 ], [ -123.072016893999887, 48.795955500000083 ], [ -123.072302401999977, 48.796207495000047 ], [ -123.073420712999948, 48.796547908000029 ], [ -123.074127908999969, 48.796610594000057 ], [ -123.075273178999979, 48.796834198000049 ], [ -123.075967178999974, 48.797446599000054 ], [ -123.076035806999926, 48.797688697000069 ], [ -123.075805595999981, 48.79780548800008 ], [ -123.075191583999967, 48.797842495000111 ], [ -123.073613707999954, 48.79777129200005 ], [ -123.072781607999929, 48.797870988000106 ], [ -123.07165101599999, 48.797718599000113 ], [ -123.070725597999967, 48.79775571300015 ], [ -123.067798712999974, 48.797513505000083 ], [ -123.064817196999911, 48.797777014000047 ], [ -123.063875993999929, 48.797785607000087 ], [ -123.063399885999928, 48.797678691 ], [ -123.062774076999943, 48.797372493000104 ], [ -123.062595280999986, 48.797364003000027 ], [ -123.062337405, 48.797391093 ], [ -123.06156311699999, 48.79776990200002 ], [ -123.061289291999941, 48.797805495000027 ], [ -123.06107070799996, 48.797724282000026 ], [ -123.061085615999929, 48.797643095000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818333", "BldgCostT": "2633333", "sL_LossRatio": "0.838645237446654", "sL_AssetLoss": "22026", "sL_BldgLoss": "18472", "sL_StrLoss": "11460", "sL_NStrLoss": "7012", "sL_ContLoss": "3554", "geom_point": "0101000020E6100000B024B35939CA5EC0706B7F25DF664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16047413699999, 48.805452235000125 ], [ -123.160500976999955, 48.805009078000076 ], [ -123.158168644999975, 48.804947031000047 ], [ -123.157779007999977, 48.804936661000049 ], [ -123.156505505999988, 48.804534910000029 ], [ -123.15536168599999, 48.804032089000096 ], [ -123.154883207999944, 48.803925305000085 ], [ -123.154016992999985, 48.80369941500004 ], [ -123.154037698999943, 48.803358293000066 ], [ -123.154150938999962, 48.80149270000009 ], [ -123.154180766999957, 48.801001275000054 ], [ -123.159612796999951, 48.801145920000067 ], [ -123.159598640999889, 48.801379620000056 ], [ -123.160796870999931, 48.801411489000039 ], [ -123.160659959999961, 48.803672310000053 ], [ -123.166014423999954, 48.803814558000049 ], [ -123.165938717999936, 48.805066947000057 ], [ -123.16584644799994, 48.806593285000091 ], [ -123.165833764999917, 48.806803084000073 ], [ -123.164916695, 48.806610008000099 ], [ -123.163650017999913, 48.806467499000064 ], [ -123.160465081999945, 48.805601729000053 ], [ -123.16047413699999, 48.805452235000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7474584", "BldgCostT": "4658334", "sL_LossRatio": "0.664633639211555", "sL_AssetLoss": "72142", "sL_BldgLoss": "47948", "sL_StrLoss": "22810", "sL_NStrLoss": "25138", "sL_ContLoss": "24194", "geom_point": "0101000020E6100000FBF066EC0FCE5EC0237D41A85E694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.223125814999889, 48.826207792000041 ], [ -123.223199169999958, 48.824969864000067 ], [ -123.221387127999961, 48.824922749000066 ], [ -123.221464170999937, 48.823623353000123 ], [ -123.217868081999981, 48.823529760000049 ], [ -123.217892994999929, 48.82311011000008 ], [ -123.217166321999954, 48.823091183000116 ], [ -123.217103797000021, 48.82414411200012 ], [ -123.211668925999945, 48.824002395000107 ], [ -123.2117761799999, 48.822199724000015 ], [ -123.212486202999969, 48.822274788000072 ], [ -123.213738303999932, 48.822092488000109 ], [ -123.214336214999918, 48.821695197000082 ], [ -123.214607195999946, 48.821182505000102 ], [ -123.214427893999954, 48.820823611000016 ], [ -123.214424104, 48.820075906000056 ], [ -123.214820391, 48.819921990000061 ], [ -123.215472907999967, 48.819912090000045 ], [ -123.215758501000025, 48.819930609000011 ], [ -123.217245890999948, 48.82037640300009 ], [ -123.218188705, 48.820825003000053 ], [ -123.218923309999923, 48.82088619400006 ], [ -123.219918985, 48.821153999000089 ], [ -123.22069740399999, 48.821494402000084 ], [ -123.222335298999923, 48.82201279200013 ], [ -123.22466979099994, 48.823106591000084 ], [ -123.226881494999958, 48.824442514000047 ], [ -123.227593207999945, 48.82508908700013 ], [ -123.228594991999898, 48.825773772000097 ], [ -123.22856097599994, 48.82634892600008 ], [ -123.223125814999889, 48.826207792000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.943856193055898", "sL_AssetLoss": "4061", "sL_BldgLoss": "3833", "sL_StrLoss": "3130", "sL_NStrLoss": "703", "sL_ContLoss": "228", "geom_point": "0101000020E6100000F91D9AE44DC65EC07745D722F5624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.095838576999952, 48.774141766000078 ], [ -123.095989215999964, 48.771708167000028 ], [ -123.101417676999972, 48.771855778000052 ], [ -123.101280614999936, 48.774074188000071 ], [ -123.101030808999965, 48.774009798000066 ], [ -123.099655507999984, 48.773777695000092 ], [ -123.09907060899998, 48.773787607000031 ], [ -123.098948722, 48.773948605000058 ], [ -123.09907081299994, 48.774102408000076 ], [ -123.099969211999948, 48.774596604000131 ], [ -123.099970801999945, 48.774820186000063 ], [ -123.099194908999934, 48.774857191000081 ], [ -123.098703988999958, 48.774750396000044 ], [ -123.097682996999978, 48.774696300000073 ], [ -123.095838576999952, 48.774141766000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27620833", "BldgCostT": "18313333", "sL_LossRatio": "0.709993345984178", "sL_AssetLoss": "405770", "sL_BldgLoss": "288094", "sL_StrLoss": "144184", "sL_NStrLoss": "143910", "sL_ContLoss": "117676", "geom_point": "0101000020E610000072CBC3192ECD5EC09997E4FCA45E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.223729372999969, 48.749108423000017 ], [ -123.223748860999976, 48.748778893000114 ], [ -123.22315027199997, 48.748763309000076 ], [ -123.223195668999921, 48.747995854000102 ], [ -123.223300232999947, 48.746228023000036 ], [ -123.219681102999957, 48.746133724000067 ], [ -123.21970541499995, 48.745723207 ], [ -123.216651719999902, 48.745643546000032 ], [ -123.21670087699999, 48.744814400000038 ], [ -123.216549366999942, 48.744810445000077 ], [ -123.216674740000016, 48.742695685000093 ], [ -123.215642162999956, 48.742668727000058 ], [ -123.215653190999902, 48.742482766000137 ], [ -123.214816143999954, 48.742460906000062 ], [ -123.214850224999935, 48.741886393000101 ], [ -123.213935046999936, 48.741862484000109 ], [ -123.213955539999958, 48.741517136000063 ], [ -123.213022836, 48.741492762000036 ], [ -123.213037722999971, 48.741241964000089 ], [ -123.212241225, 48.741221142000072 ], [ -123.212287776999943, 48.74043707800007 ], [ -123.208938454999938, 48.740349457000036 ], [ -123.209067889999986, 48.738171918000013 ], [ -123.209073069999988, 48.738084766 ], [ -123.208667328999979, 48.738074144000102 ], [ -123.208151661999949, 48.738060642000029 ], [ -123.208158248999936, 48.737949878000087 ], [ -123.20819503200002, 48.737331214000086 ], [ -123.207072519999926, 48.737301814000098 ], [ -123.207050064, 48.737679362000037 ], [ -123.20699953699993, 48.738528818000098 ], [ -123.206422674999899, 48.738513705000067 ], [ -123.206385445999928, 48.739139431000119 ], [ -123.205645396999941, 48.739120038000088 ], [ -123.205631927999931, 48.739346349000058 ], [ -123.200206901999934, 48.73920402900012 ], [ -123.20022362899999, 48.738923511000102 ], [ -123.198928573999979, 48.738889496000048 ], [ -123.198975153999982, 48.738108667000049 ], [ -123.198187793999963, 48.738087979000049 ], [ -123.198229564999963, 48.737387930000054 ], [ -123.198311029999971, 48.736022593000015 ], [ -123.19693988899995, 48.735986551000074 ], [ -123.1969118199999, 48.736456771000107 ], [ -123.195697958, 48.736424849000066 ], [ -123.195660103999955, 48.737058699000109 ], [ -123.194885802999977, 48.73703833000009 ], [ -123.194864621999955, 48.737392865000096 ], [ -123.194842509999944, 48.737763017000084 ], [ -123.193511741999927, 48.737727996000089 ], [ -123.19331393, 48.741037344000077 ], [ -123.191723581999923, 48.740995470000101 ], [ -123.190891343999951, 48.740973547000124 ], [ -123.190867150999949, 48.741377903000114 ], [ -123.185441935999933, 48.7412348330001 ], [ -123.185494158999944, 48.740363641000066 ], [ -123.182045269999904, 48.740272546 ], [ -123.182059582999941, 48.740034059000024 ], [ -123.18213412099999, 48.740032499000073 ], [ -123.182325291999959, 48.739941289000029 ], [ -123.18239279699992, 48.740066609000095 ], [ -123.183140898999966, 48.740120708000042 ], [ -123.18322268899999, 48.740021089000017 ], [ -123.183004090999987, 48.73987719900007 ], [ -123.183154100999971, 48.739778891000086 ], [ -123.183670604999975, 48.739633706000063 ], [ -123.183860216000014, 48.739723393000084 ], [ -123.184187180999942, 48.739740493000085 ], [ -123.18444640899996, 48.739551091000102 ], [ -123.184498481999981, 48.739190701000076 ], [ -123.183544610999888, 48.738581201000066 ], [ -123.183093205999967, 48.737961603000024 ], [ -123.183241676999955, 48.73779929500008 ], [ -123.183704199999937, 48.737672498000045 ], [ -123.183922508999927, 48.737735194000038 ], [ -123.184085522999965, 48.737618403000049 ], [ -123.184312794999968, 48.736897806000073 ], [ -123.184557997999917, 48.736572987000045 ], [ -123.184459299999958, 48.736159993000058 ], [ -123.183779506999912, 48.735855209000128 ], [ -123.183535110999969, 48.735963508000054 ], [ -123.18346659499997, 48.735936413000047 ], [ -123.183546922999966, 48.735809699000143 ], [ -123.184620393999964, 48.735449303000095 ], [ -123.185995015999936, 48.735321198000136 ], [ -123.186102796999961, 48.735069106000054 ], [ -123.186686214999924, 48.734905294000029 ], [ -123.187010894999929, 48.734725792000106 ], [ -123.187199219999968, 48.734502550000073 ], [ -123.187254787999962, 48.734436694000046 ], [ -123.187335805999922, 48.734149008000045 ], [ -123.18768878599991, 48.734013692000069 ], [ -123.188587306999949, 48.734002298000114 ], [ -123.188452483999981, 48.734389706000051 ], [ -123.18936519499999, 48.734765701000065 ], [ -123.190153782999928, 48.734891096000119 ], [ -123.190970406999952, 48.734727291000119 ], [ -123.191269704999939, 48.73492521000005 ], [ -123.191540614999951, 48.734979293000123 ], [ -123.19280600399999, 48.734734394000107 ], [ -123.193294695999938, 48.73449941100008 ], [ -123.193403089999919, 48.734372591000046 ], [ -123.193373705999988, 48.734022300000099 ], [ -123.19356862599993, 48.734053229000047 ], [ -123.193822497000014, 48.734093511000026 ], [ -123.19428398399999, 48.733894101000061 ], [ -123.195114723999936, 48.733884103000015 ], [ -123.19558938499992, 48.733765905000041 ], [ -123.196732101999956, 48.733639197000095 ], [ -123.19689499899999, 48.733908308000188 ], [ -123.197032495999935, 48.733916907000136 ], [ -123.197329420999921, 48.733800104000117 ], [ -123.19767098200002, 48.733906892000071 ], [ -123.1987167, 48.733824297000048 ], [ -123.198894009999918, 48.733887008000082 ], [ -123.199805618999974, 48.733741701000078 ], [ -123.200432215999967, 48.733830006000147 ], [ -123.200743799999913, 48.733765894000044 ], [ -123.20097430099996, 48.733603594000058 ], [ -123.201274095999949, 48.733711802000101 ], [ -123.201518020999927, 48.733674798000031 ], [ -123.202087592999945, 48.733341497000012 ], [ -123.202737600999981, 48.732692084000149 ], [ -123.203255499999926, 48.732592391000033 ], [ -123.205606618999937, 48.732615195000065 ], [ -123.20608338199996, 48.732281900000025 ], [ -123.206177794999945, 48.732100996000057 ], [ -123.206134983999931, 48.732029797000081 ], [ -123.205617591999911, 48.731868904000059 ], [ -123.205712407999982, 48.731806187000089 ], [ -123.206725751999912, 48.731934554000091 ], [ -123.206658698999973, 48.733061855000123 ], [ -123.207501161999943, 48.733083927000074 ], [ -123.20750078399999, 48.733089398000075 ], [ -123.207855287999919, 48.733556604000057 ], [ -123.207953220999968, 48.733915505000027 ], [ -123.207927110999947, 48.734465196000031 ], [ -123.208201705999912, 48.734913802000023 ], [ -123.20820270199998, 48.735183003000067 ], [ -123.208529986999963, 48.735299789000088 ], [ -123.208923901999981, 48.735145989000024 ], [ -123.209155204999945, 48.735227209000065 ], [ -123.209426409999978, 48.7351730090001 ], [ -123.210025621999975, 48.735386705000103 ], [ -123.210324198999984, 48.735378103000045 ], [ -123.211592315999894, 48.736004793000106 ], [ -123.211975589999966, 48.736463399000115 ], [ -123.212263192999941, 48.737119890000066 ], [ -123.212823186999955, 48.737802108000096 ], [ -123.213763494999938, 48.738376102000061 ], [ -123.2140537, 48.739113810000099 ], [ -123.215481589999953, 48.739165093000068 ], [ -123.215632105999944, 48.739325993000122 ], [ -123.21627188399999, 48.739432891000078 ], [ -123.216708113999971, 48.739603791000043 ], [ -123.21687150399994, 48.739783194000069 ], [ -123.21786509399999, 48.739942699000082 ], [ -123.218615186999969, 48.740264598000074 ], [ -123.219035707, 48.740273085000176 ], [ -123.219023997999912, 48.740579285000074 ], [ -123.21948639799993, 48.740794407000109 ], [ -123.220168093999973, 48.740918302000061 ], [ -123.22034651099996, 48.741395403000105 ], [ -123.2206066, 48.74160190000007 ], [ -123.221558193999968, 48.741707315000063 ], [ -123.22236240499997, 48.741705890000091 ], [ -123.222961198999926, 48.741983611000165 ], [ -123.223794877999964, 48.742135034000142 ], [ -123.224090305999979, 48.742188690000035 ], [ -123.224746004999972, 48.742628787000108 ], [ -123.224990888999969, 48.742645906000078 ], [ -123.225247797999927, 48.742456399000055 ], [ -123.225330816999971, 48.742492108000079 ], [ -123.225440995999989, 48.743004807000055 ], [ -123.225713796999969, 48.743130097000027 ], [ -123.225808889999911, 48.743319496000062 ], [ -123.226667092999918, 48.743299589000095 ], [ -123.227512398999977, 48.743621491000106 ], [ -123.227809200999943, 48.743486184000098 ], [ -123.227701079999974, 48.743315197000058 ], [ -123.227878179999934, 48.743296696000122 ], [ -123.228053497999937, 48.743377896000084 ], [ -123.227946180999965, 48.743692692000138 ], [ -123.228083790999946, 48.743853611000134 ], [ -123.229120285999926, 48.744266601000021 ], [ -123.22976111399997, 48.744732290000051 ], [ -123.229626099999962, 48.744975903000032 ], [ -123.2298033, 48.745299185000128 ], [ -123.229615185999975, 48.745578306000063 ], [ -123.229276514999981, 48.745659497000069 ], [ -123.229167702999973, 48.745831793000043 ], [ -123.22888171699995, 48.745948601000094 ], [ -123.228678886999944, 48.746308910000025 ], [ -123.228177009999953, 48.746481308000035 ], [ -123.227852802999962, 48.746741909000065 ], [ -123.227553708999949, 48.746851597000024 ], [ -123.227430895999973, 48.747066594000053 ], [ -123.227256796999939, 48.74757079700013 ], [ -123.227366394999962, 48.747750212000057 ], [ -123.228238503999961, 48.748100591000068 ], [ -123.228947797999979, 48.748233 ], [ -123.22920066699993, 48.748486243000066 ], [ -123.229170326999977, 48.749000276000082 ], [ -123.22864219899995, 48.749236203000116 ], [ -123.223729372999969, 48.749108423000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24200667", "BldgCostT": "15746667", "sL_LossRatio": "0.798982196431612", "sL_AssetLoss": "125092.9", "sL_BldgLoss": "99947", "sL_StrLoss": "58875", "sL_NStrLoss": "41072", "sL_ContLoss": "25145.9", "geom_point": "0101000020E6100000A45D33967CCC5EC0EFA28557D45F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.20254418599994, 48.755345494000103 ], [ -123.202081584999988, 48.755130501000139 ], [ -123.201576221999943, 48.75514900100012 ], [ -123.201167476999899, 48.754744497000011 ], [ -123.200583114999915, 48.754664802000079 ], [ -123.200240800999921, 48.754116496000059 ], [ -123.200020512999984, 48.753982600000022 ], [ -123.199492222999964, 48.754018203000072 ], [ -123.199286078999961, 48.753848700000106 ], [ -123.198959, 48.753813093000126 ], [ -123.198049990999948, 48.754120692000122 ], [ -123.197940100999958, 48.75399399200009 ], [ -123.198116302999949, 48.753787493000061 ], [ -123.198062624999949, 48.753744685000072 ], [ -123.197980507999901, 48.753679193000067 ], [ -123.197530592999968, 48.753553900000014 ], [ -123.197202601999948, 48.753140901 ], [ -123.197107619999912, 48.753140904000077 ], [ -123.196850301999987, 48.753627905 ], [ -123.196844895999945, 48.753628169000088 ], [ -123.196964403, 48.751626969000078 ], [ -123.198026788, 48.7516548850001 ], [ -123.198822510999946, 48.751675789000075 ], [ -123.199350866999964, 48.751689664000068 ], [ -123.19936255199994, 48.751493811000067 ], [ -123.198424010999958, 48.751469161000053 ], [ -123.197936320999958, 48.751456349000065 ], [ -123.196465530999902, 48.751417696000061 ], [ -123.196466672999961, 48.751398576000021 ], [ -123.195404795999977, 48.751370657000095 ], [ -123.195297680999943, 48.753163360000045 ], [ -123.194636242999962, 48.753145963000094 ], [ -123.194635254999952, 48.753162476000085 ], [ -123.193643030999922, 48.753136372000029 ], [ -123.193637465999984, 48.753229459000053 ], [ -123.192766486999986, 48.753157990000055 ], [ -123.192235686999965, 48.752960009000077 ], [ -123.191894791999971, 48.75273638900007 ], [ -123.19152700399999, 48.752782001000099 ], [ -123.190397105999935, 48.752603888000046 ], [ -123.189865796999982, 48.752280593000059 ], [ -123.189811189999944, 48.752155313000046 ], [ -123.19021701299998, 48.751884705000073 ], [ -123.190324204999939, 48.751146993000113 ], [ -123.189886507999972, 48.750815108000076 ], [ -123.189791989999918, 48.750580104000065 ], [ -123.189422517999915, 48.750402107000113 ], [ -123.18920440399999, 48.750041806000056 ], [ -123.188768797999955, 48.749899391000092 ], [ -123.187080209, 48.74971279400004 ], [ -123.18671188899999, 48.749425097000064 ], [ -123.186141997999925, 48.749353909000028 ], [ -123.185882112999963, 48.748995005000054 ], [ -123.185501306999953, 48.749040589000082 ], [ -123.184384003999952, 48.748547807000044 ], [ -123.184273983999958, 48.748781405000024 ], [ -123.184153795999947, 48.748791302000036 ], [ -123.183348524999971, 48.748549204 ], [ -123.182627489000012, 48.74847799300008 ], [ -123.182410094999923, 48.748317113000049 ], [ -123.182369096999949, 48.748109098000043 ], [ -123.181835685999943, 48.747418393000082 ], [ -123.181371498, 48.74707659700006 ], [ -123.180419012999891, 48.746917090000039 ], [ -123.178853394, 48.746478396000086 ], [ -123.178538794999966, 48.746280489000064 ], [ -123.178118009999977, 48.746190699000088 ], [ -123.176999996999911, 48.745680904000068 ], [ -123.176949246999968, 48.745646461000021 ], [ -123.17701619199994, 48.744533161000064 ], [ -123.177023428000027, 48.74453335200009 ], [ -123.177033647999977, 48.744363397000015 ], [ -123.177240293999915, 48.744347812000079 ], [ -123.177486083999909, 48.744456007000103 ], [ -123.178069904999958, 48.744410492000036 ], [ -123.178628717, 48.744615498000087 ], [ -123.180682291999929, 48.744864801000105 ], [ -123.181079474999947, 48.745188094000063 ], [ -123.181854397, 48.745240790000032 ], [ -123.183611, 48.745544103000078 ], [ -123.183896617999949, 48.745687998000065 ], [ -123.18494419699999, 48.745866010000064 ], [ -123.185217796999922, 48.74602689400006 ], [ -123.186551497999957, 48.746088210000025 ], [ -123.187352792999945, 48.745861704000042 ], [ -123.187978754999961, 48.745445584000024 ], [ -123.188085401999956, 48.745374687000037 ], [ -123.188720189999955, 48.744357813000072 ], [ -123.188936488999943, 48.743618608000062 ], [ -123.188866897999944, 48.743322400000167 ], [ -123.187749100999937, 48.742838096000085 ], [ -123.1870406799999, 48.742660095000048 ], [ -123.186855460999979, 48.742520897000091 ], [ -123.186904754999915, 48.741698193000104 ], [ -123.191280576999986, 48.741813549000057 ], [ -123.192330027999944, 48.741841189000098 ], [ -123.192318851999971, 48.742028086000055 ], [ -123.19715656899993, 48.742155362000055 ], [ -123.196941635999934, 48.745755441000085 ], [ -123.19249632099999, 48.745638498000055 ], [ -123.192419591999922, 48.746921514000057 ], [ -123.192401138999983, 48.747230077000076 ], [ -123.192455246999927, 48.747231501000059 ], [ -123.192434427999913, 48.747579619000092 ], [ -123.193154843999977, 48.747598584000144 ], [ -123.193144014999916, 48.747779715000043 ], [ -123.193713760999913, 48.747794709000068 ], [ -123.194053923999931, 48.747803660000066 ], [ -123.194046147999984, 48.747933739000111 ], [ -123.194015498999988, 48.748446504000064 ], [ -123.194998953999985, 48.748472377000049 ], [ -123.195020497999948, 48.748111813000065 ], [ -123.195041793999962, 48.747755411000057 ], [ -123.195713035999972, 48.747773064000057 ], [ -123.195768715999961, 48.746840925000065 ], [ -123.199481543999966, 48.746938495000073 ], [ -123.199525101999882, 48.74620831500004 ], [ -123.204950934999957, 48.746350668000062 ], [ -123.204837017999964, 48.74826397500005 ], [ -123.204989547999958, 48.74826797200005 ], [ -123.20490127699999, 48.749750486000103 ], [ -123.204841988999945, 48.750746211000013 ], [ -123.204806013999985, 48.751350352000046 ], [ -123.207724737000021, 48.751426809000101 ], [ -123.207720862999963, 48.751491932000107 ], [ -123.208906898999928, 48.751522977000079 ], [ -123.208692823999982, 48.755123025000039 ], [ -123.205393375999961, 48.755036627000038 ], [ -123.203663987999946, 48.754991301000082 ], [ -123.203628687999952, 48.7555838050001 ], [ -123.20254418599994, 48.755345494000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15924583", "BldgCostT": "9508333", "sL_LossRatio": "0.828463389480921", "sL_AssetLoss": "46544", "sL_BldgLoss": "38560", "sL_StrLoss": "24010", "sL_NStrLoss": "14550", "sL_ContLoss": "7984", "geom_point": "0101000020E6100000D32955C37ACC5EC023D902C623674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.204527209999966, 48.811368202000047 ], [ -123.20306790699999, 48.810804295000018 ], [ -123.202550503999959, 48.810849797000088 ], [ -123.202072196999936, 48.810697394000037 ], [ -123.198565686999984, 48.808949901000041 ], [ -123.198958276999917, 48.808552596000034 ], [ -123.199706710999976, 48.808336098000041 ], [ -123.199841896999899, 48.808155187000089 ], [ -123.19948679599996, 48.807760713000079 ], [ -123.198912576999959, 48.807501497000011 ], [ -123.198560208999979, 48.807501506000079 ], [ -123.198259489999955, 48.807609804000052 ], [ -123.197946889999955, 48.807880410000095 ], [ -123.197744712999935, 48.808284799000084 ], [ -123.197582107999935, 48.808348910000035 ], [ -123.195590598999956, 48.807740799000065 ], [ -123.194092187999985, 48.807446003000081 ], [ -123.192279487999912, 48.807413190000027 ], [ -123.192013817999907, 48.807455582000088 ], [ -123.192041565999915, 48.806992305000058 ], [ -123.191061244999958, 48.806966522000039 ], [ -123.189108822999984, 48.806915146000016 ], [ -123.189148464999931, 48.806253976000065 ], [ -123.186520970999965, 48.806184781000063 ], [ -123.186736980999967, 48.802585074000028 ], [ -123.192169295000014, 48.802728064000028 ], [ -123.192158039999981, 48.802916010000061 ], [ -123.193830798999912, 48.802959985000022 ], [ -123.194265197999982, 48.803092204000052 ], [ -123.194360997999922, 48.803198999000102 ], [ -123.194812200999976, 48.80329731000009 ], [ -123.195438794999973, 48.803566388000057 ], [ -123.19797429399992, 48.804201603000081 ], [ -123.198354715999955, 48.804146099 ], [ -123.198899279999978, 48.804198800000044 ], [ -123.201476603999964, 48.804788386000077 ], [ -123.202007594999969, 48.804976395000047 ], [ -123.202830199999966, 48.806018914000092 ], [ -123.202995688999948, 48.806881991000054 ], [ -123.203297479999947, 48.80715969500006 ], [ -123.203735078999927, 48.807393295000033 ], [ -123.203776092999973, 48.807501512000101 ], [ -123.203277702999941, 48.807531549000089 ], [ -123.203162087999971, 48.807538509000068 ], [ -123.20220840499999, 48.807314901000055 ], [ -123.201854492000024, 48.807343413000112 ], [ -123.201394897999961, 48.808404513000063 ], [ -123.201446928999985, 48.808954543000034 ], [ -123.201496210999935, 48.809475491000086 ], [ -123.20211012199999, 48.810095004000047 ], [ -123.202519310999904, 48.810030903000055 ], [ -123.202941392999946, 48.810093615000056 ], [ -123.203582683999954, 48.81047949400007 ], [ -123.203883795999971, 48.810874007000088 ], [ -123.204416299999963, 48.810955201000077 ], [ -123.205044700999963, 48.811232910000101 ], [ -123.205302601999961, 48.811519198000099 ], [ -123.20526261699996, 48.811573296000041 ], [ -123.204527209999966, 48.811368202000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.81906717512467", "sL_AssetLoss": "17045", "sL_BldgLoss": "13961", "sL_StrLoss": "7950", "sL_NStrLoss": "6011", "sL_ContLoss": "3084", "geom_point": "0101000020E6100000F0BE8D41A5CC5EC03B56A5042F634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.197665500999932, 48.777615154000053 ], [ -123.197787585999947, 48.775571301000063 ], [ -123.195583750999958, 48.775513405000083 ], [ -123.195620674999986, 48.774895687000111 ], [ -123.192431476999957, 48.774811824000039 ], [ -123.192565639999927, 48.772569774000097 ], [ -123.193277712999986, 48.772578506000087 ], [ -123.195864987999983, 48.772934509000066 ], [ -123.196803875999976, 48.773256395 ], [ -123.197541486999938, 48.773660896000123 ], [ -123.198411798999985, 48.773803286000032 ], [ -123.199146309999946, 48.773729198000069 ], [ -123.200291603999986, 48.773826111000083 ], [ -123.200862783999952, 48.773951400000023 ], [ -123.201286300999953, 48.774211993000058 ], [ -123.20200778499995, 48.774417097000075 ], [ -123.201859600999967, 48.774598008000119 ], [ -123.202472412999938, 48.774811601000053 ], [ -123.202295694999961, 48.774911301000024 ], [ -123.202527912999983, 48.775244605000111 ], [ -123.202543881999944, 48.775559303000136 ], [ -123.202407589999936, 48.775667589000129 ], [ -123.20246329099993, 48.775828491000077 ], [ -123.201605097999916, 48.775821400000041 ], [ -123.201117285999942, 48.776092005000038 ], [ -123.200833105999905, 48.776443788000073 ], [ -123.200439104999958, 48.776731507000108 ], [ -123.200210786999904, 48.777470591000018 ], [ -123.200365211999966, 48.777686015000072 ], [ -123.197665500999932, 48.777615154000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84257250", "BldgCostT": "58605000", "sL_LossRatio": "0.896895181507285", "sL_AssetLoss": "133631", "sL_BldgLoss": "119853", "sL_StrLoss": "73153", "sL_NStrLoss": "46700", "sL_ContLoss": "13778", "geom_point": "0101000020E61000003287EEA324C45EC0E91DB81421644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.044392204999951, 48.784382284000117 ], [ -123.044867275999977, 48.783294193000081 ], [ -123.045643201999951, 48.782331497000015 ], [ -123.045833297999977, 48.782213307000092 ], [ -123.046188780999984, 48.782033794 ], [ -123.04724870299999, 48.78173608400003 ], [ -123.047384081999965, 48.781466996000091 ], [ -123.047955705999968, 48.781231990000052 ], [ -123.048841389999978, 48.781025500000041 ], [ -123.049208194, 48.781015516000046 ], [ -123.050365120999956, 48.780655199000044 ], [ -123.050963789999955, 48.780655197000023 ], [ -123.051358400999945, 48.780871699000038 ], [ -123.052011888999942, 48.780555493000094 ], [ -123.053698700999917, 48.780042802000061 ], [ -123.055332796999949, 48.779753612000043 ], [ -123.05696610699998, 48.779762205000083 ], [ -123.057728593999968, 48.779581295000057 ], [ -123.058122792999924, 48.779635402000075 ], [ -123.058816604999947, 48.779598399000037 ], [ -123.059116704999937, 48.779454593000061 ], [ -123.059539821999948, 48.779562801000047 ], [ -123.0604101, 48.779571394000079 ], [ -123.061199706999972, 48.779525800000052 ], [ -123.061430098999935, 48.779453113000045 ], [ -123.06407198499997, 48.779488692000058 ], [ -123.064276709999888, 48.779515794000126 ], [ -123.064479608999989, 48.779668208000032 ], [ -123.064725806999888, 48.779568486000123 ], [ -123.06520037599999, 48.779551395000048 ], [ -123.066590498999972, 48.779621205000105 ], [ -123.067964309999979, 48.779585585000056 ], [ -123.068482511999903, 48.779656797000037 ], [ -123.06901199899994, 48.779619806000042 ], [ -123.072525601999956, 48.779824886000043 ], [ -123.07347731, 48.780093993000072 ], [ -123.07347839699996, 48.780247887000087 ], [ -123.073573688999986, 48.780292011000093 ], [ -123.07404962599999, 48.780202303000081 ], [ -123.074825109999935, 48.780255007000115 ], [ -123.077644694999918, 48.780649513000107 ], [ -123.078761707999931, 48.780720690000074 ], [ -123.079795211999937, 48.780593887000109 ], [ -123.080499897999943, 48.780672044000049 ], [ -123.081169603999953, 48.780746309000058 ], [ -123.081548647999938, 48.780711956000097 ], [ -123.081392950999913, 48.783214280000024 ], [ -123.081501093999961, 48.783217237000038 ], [ -123.081348637999952, 48.785667273000108 ], [ -123.081083404, 48.785558707000121 ], [ -123.079597987999961, 48.785433404000045 ], [ -123.077883306999965, 48.785515984000071 ], [ -123.076957505999971, 48.785309488000031 ], [ -123.076726405999977, 48.785175585000069 ], [ -123.074969688999957, 48.785167102000031 ], [ -123.07215091700003, 48.784907894000106 ], [ -123.071266408, 48.784782505000152 ], [ -123.070476790999962, 48.784576003000083 ], [ -123.069903805999942, 48.784279794000057 ], [ -123.069005593999975, 48.784370893000059 ], [ -123.066881114999944, 48.783732908000019 ], [ -123.064742610999943, 48.78346370900006 ], [ -123.063966723999954, 48.783482202000052 ], [ -123.063708419999941, 48.783402499000026 ], [ -123.062851614999943, 48.783366892000096 ], [ -123.062239511999948, 48.783475090000088 ], [ -123.061013708999951, 48.783431004000143 ], [ -123.060238278, 48.78361899300004 ], [ -123.059367117999969, 48.783574800000061 ], [ -123.057964395999974, 48.783908104000055 ], [ -123.05518759399996, 48.783703005000071 ], [ -123.054548877999977, 48.783856794000023 ], [ -123.052547709999928, 48.784019208000075 ], [ -123.051743606999963, 48.784019208000075 ], [ -123.049946198999947, 48.783858197 ], [ -123.048381007999922, 48.784047597000068 ], [ -123.048055493999939, 48.784101814000088 ], [ -123.047713605999959, 48.784291203000109 ], [ -123.046883586999968, 48.784291193000051 ], [ -123.046434198999961, 48.784372387000062 ], [ -123.045823325999905, 48.785507614000068 ], [ -123.044759290999934, 48.785478157000043 ], [ -123.044720395999917, 48.785453309000083 ], [ -123.044557083999962, 48.785218296000082 ], [ -123.044392204999951, 48.784382284000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6001250", "BldgCostT": "3875000", "sL_LossRatio": "0.730750463550307", "sL_AssetLoss": "61482", "sL_BldgLoss": "44928", "sL_StrLoss": "27410", "sL_NStrLoss": "17518", "sL_ContLoss": "16554", "geom_point": "0101000020E6100000D6478E115CCF5EC097A8FF28416A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.238365124999959, 48.833702573000039 ], [ -123.238393925999944, 48.833213954000044 ], [ -123.238282450999975, 48.833211073000093 ], [ -123.238298183999959, 48.832944178000076 ], [ -123.238664705999966, 48.832604605000057 ], [ -123.239535499999974, 48.832180204000046 ], [ -123.239819298999961, 48.831865496000056 ], [ -123.239952893999913, 48.831253099000051 ], [ -123.239897424999938, 48.830803005000092 ], [ -123.2395961799999, 48.830489693000047 ], [ -123.239281800999947, 48.830318802000058 ], [ -123.236619013, 48.829244898000134 ], [ -123.235698763999949, 48.828430035000039 ], [ -123.235772955999977, 48.827172345000115 ], [ -123.239665969999962, 48.827273 ], [ -123.240140417999939, 48.827518801000046 ], [ -123.241369280999933, 48.828344794000074 ], [ -123.241753675999959, 48.828693794000067 ], [ -123.24332349099997, 48.829185097000043 ], [ -123.244308285000017, 48.830029693000036 ], [ -123.244280280999959, 48.830137902000075 ], [ -123.243994785999973, 48.830156395000074 ], [ -123.243587311999974, 48.830337295000085 ], [ -123.243385287999928, 48.830768811000077 ], [ -123.243127495999943, 48.830993911000043 ], [ -123.242569784999972, 48.831176093000053 ], [ -123.241902, 48.831275811000054 ], [ -123.241618015999975, 48.831565002000097 ], [ -123.24164631599993, 48.831942397000056 ], [ -123.241894202999944, 48.832534791000128 ], [ -123.242224498000013, 48.833056109000061 ], [ -123.242745083999978, 48.833558896000042 ], [ -123.242838819, 48.833818103000105 ], [ -123.238365124999959, 48.833702573000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.790259285213735", "sL_AssetLoss": "28540", "sL_BldgLoss": "22554", "sL_StrLoss": "12110", "sL_NStrLoss": "10444", "sL_ContLoss": "5986", "geom_point": "0101000020E6100000E54505D2EECF5EC06CA3F08F2D694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.246339843999948, 48.819833082000052 ], [ -123.251774336000011, 48.819973037000068 ], [ -123.251563239999911, 48.82357277200002 ], [ -123.246128330999966, 48.823432808000092 ], [ -123.246339843999948, 48.819833082000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.786581782566112", "sL_AssetLoss": "30630", "sL_BldgLoss": "24093", "sL_StrLoss": "12320", "sL_NStrLoss": "11773", "sL_ContLoss": "6537", "geom_point": "0101000020E610000024D215F0DBD25EC08EDF2582026C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.292059287999933, 48.841957865000033 ], [ -123.297496480999925, 48.842095491000066 ], [ -123.297288795999989, 48.845695188000086 ], [ -123.296686131999977, 48.845679948000111 ], [ -123.292199886999967, 48.845566388000151 ], [ -123.291851185999917, 48.84555755300007 ], [ -123.292059287999933, 48.841957865000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "433074463", "BldgCostT": "289399488", "sL_LossRatio": "0.757785860525928", "sL_AssetLoss": "3307181", "sL_BldgLoss": "2506135", "sL_StrLoss": "1282987", "sL_NStrLoss": "1223148", "sL_ContLoss": "801046", "geom_point": "0101000020E61000005EE0B03C21D25EC0A8917E77026C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.28877449299992, 48.873906705000081 ], [ -123.287572896999933, 48.873613295000077 ], [ -123.287394612999918, 48.873479404000079 ], [ -123.287394207999952, 48.873235893000079 ], [ -123.287092383999905, 48.873101993000127 ], [ -123.287077494999963, 48.872849892000026 ], [ -123.286872307999943, 48.872770183000085 ], [ -123.286573098999938, 48.872797197000125 ], [ -123.28658740199991, 48.872922605000042 ], [ -123.286451313999962, 48.872959602000023 ], [ -123.286191887, 48.872932496000018 ], [ -123.286166589999965, 48.873077803000093 ], [ -123.28601579799998, 48.873140497000051 ], [ -123.284513481999909, 48.872595001000043 ], [ -123.284374504999931, 48.872415591000099 ], [ -123.284784219999935, 48.87238850100006 ], [ -123.284811011999935, 48.872334390000063 ], [ -123.283718995999919, 48.871941313000058 ], [ -123.283442614999956, 48.871455595000057 ], [ -123.281035619999912, 48.87025650300005 ], [ -123.281321486999985, 48.87012119900006 ], [ -123.281593191999931, 48.869796396000076 ], [ -123.28164480599996, 48.869552885000118 ], [ -123.281522518999935, 48.869310800000058 ], [ -123.279128610999948, 48.868299594000078 ], [ -123.278622385999967, 48.867994802000105 ], [ -123.278609502999956, 48.867859508000031 ], [ -123.278349386999977, 48.867698605000086 ], [ -123.27731079499999, 48.867359607000026 ], [ -123.277065679999964, 48.867386697000072 ], [ -123.276956786999932, 48.867323998000089 ], [ -123.276832584999937, 48.86703628900004 ], [ -123.276925693999956, 48.866829792000019 ], [ -123.277198592999923, 48.866694495000026 ], [ -123.277716311999939, 48.866630401000059 ], [ -123.277823619999964, 48.866530698000126 ], [ -123.27682540099994, 48.865750307000042 ], [ -123.276235108999941, 48.865122189000054 ], [ -123.275403417999925, 48.865250393000125 ], [ -123.274544404999943, 48.865099410000099 ], [ -123.274353406999964, 48.865126497000055 ], [ -123.274341599999943, 48.865315899000088 ], [ -123.27490079599994, 48.865656296000118 ], [ -123.274970900999946, 48.86580859 ], [ -123.274754602999948, 48.866052211000117 ], [ -123.274166612999977, 48.866080703000094 ], [ -123.273401700999955, 48.865740300000084 ], [ -123.273115996999977, 48.865687604000072 ], [ -123.272785815999939, 48.865426999000071 ], [ -123.271706403999971, 48.86497118900008 ], [ -123.270614804, 48.864649296000067 ], [ -123.269125490999954, 48.864041198000045 ], [ -123.266240795999948, 48.862591393000059 ], [ -123.266062593999948, 48.862528688000104 ], [ -123.266023416999971, 48.862645502000085 ], [ -123.265901124999971, 48.862681104000089 ], [ -123.265437302999914, 48.862636898000055 ], [ -123.264683509999912, 48.862243894000088 ], [ -123.264426188999892, 48.862352098000038 ], [ -123.264358894999972, 48.862783608000122 ], [ -123.264675478999933, 48.862981593000065 ], [ -123.264840593999949, 48.863269305000124 ], [ -123.264676705999975, 48.86333188800004 ], [ -123.264321799999934, 48.863279306 ], [ -123.263608995999974, 48.863352574000018 ], [ -123.263777542999961, 48.860468436000133 ], [ -123.263895604999973, 48.860438201000079 ], [ -123.26861437299999, 48.860558851000057 ], [ -123.269764215999913, 48.861017606000132 ], [ -123.270321984999967, 48.861007605000083 ], [ -123.270512592999978, 48.86107890200001 ], [ -123.270689810999968, 48.860816805000084 ], [ -123.27096069599996, 48.860699996000065 ], [ -123.270849405999982, 48.860322604000039 ], [ -123.271027105999949, 48.860187298000028 ], [ -123.27185820699998, 48.860292690000094 ], [ -123.272647398999979, 48.859885402 ], [ -123.273187575999984, 48.858885595000068 ], [ -123.27321368599999, 48.858607807000077 ], [ -123.272353294, 48.858294513000082 ], [ -123.271029709999965, 48.857664945000067 ], [ -123.270449910999957, 48.857389139000063 ], [ -123.270206592999941, 48.85727340600009 ], [ -123.26806208699999, 48.856406001 ], [ -123.267829809999952, 48.856272087000058 ], [ -123.26769179899999, 48.856020110000031 ], [ -123.267799087999933, 48.855552901000102 ], [ -123.267716212, 48.855542906000011 ], [ -123.267575870999934, 48.85570281800004 ], [ -123.267526217999929, 48.855759406000104 ], [ -123.267104806999939, 48.855994394000042 ], [ -123.26695617699994, 48.856004394000138 ], [ -123.265192397999925, 48.855306493000036 ], [ -123.263720361999944, 48.854856884000057 ], [ -123.262940201000021, 48.854618591000097 ], [ -123.2613008899999, 48.853956398000015 ], [ -123.257367902999988, 48.852626184000066 ], [ -123.256111402999949, 48.852043685000069 ], [ -123.255646179999928, 48.851747397000054 ], [ -123.251985213999916, 48.850280496000074 ], [ -123.251040309999922, 48.849589786000145 ], [ -123.248555686999921, 48.848597107000039 ], [ -123.247994815999931, 48.848238205000037 ], [ -123.247804284999972, 48.848163563000128 ], [ -123.247859432999974, 48.847225019000092 ], [ -123.248413821999989, 48.847382203000102 ], [ -123.248984992999922, 48.84743491200004 ], [ -123.249652718999926, 48.84722699600011 ], [ -123.250168800999944, 48.846929311000032 ], [ -123.250806107999964, 48.846369588000101 ], [ -123.251280098, 48.845721614000077 ], [ -123.25131878900001, 48.84519039200012 ], [ -123.251014987999937, 48.844525290000078 ], [ -123.250551407999964, 48.844147804000087 ], [ -123.250017590999974, 48.843996909000062 ], [ -123.249838887999942, 48.843781803000077 ], [ -123.249725803, 48.842962898000032 ], [ -123.24939670199997, 48.84228929799999 ], [ -123.249584703999986, 48.841739494000095 ], [ -123.24939185099997, 48.841615744000102 ], [ -123.248983312999954, 48.841353592000118 ], [ -123.24881801, 48.841092893000024 ], [ -123.24871968299999, 48.840563096000032 ], [ -123.248895105, 48.839986306000036 ], [ -123.248792981999941, 48.838583503000059 ], [ -123.248644167999927, 48.838076300000054 ], [ -123.248640015999982, 48.838062205000021 ], [ -123.248201002999934, 48.837765996000016 ], [ -123.246768906999961, 48.837320191000039 ], [ -123.246849205999979, 48.837166393000103 ], [ -123.246507713, 48.836888599000048 ], [ -123.246534184999973, 48.836771893000048 ], [ -123.246929705999975, 48.836626605000042 ], [ -123.24643581199993, 48.836313293000096 ], [ -123.245839597999975, 48.836050118000109 ], [ -123.245603197999969, 48.835945792000082 ], [ -123.245233223999946, 48.835605405000074 ], [ -123.245163984999948, 48.83525369000013 ], [ -123.245353582999911, 48.834903301000033 ], [ -123.245897806999935, 48.834748085000037 ], [ -123.246959796999931, 48.834602792000133 ], [ -123.247135392999965, 48.834467493000076 ], [ -123.247089300999988, 48.833252589000068 ], [ -123.246594287, 48.83235400500007 ], [ -123.246253398999954, 48.832030712000055 ], [ -123.246290583999951, 48.831292891000047 ], [ -123.246478507999882, 48.830897001000046 ], [ -123.246792106999948, 48.830788797000025 ], [ -123.247512702999941, 48.830706205000105 ], [ -123.248371209999959, 48.830721806000113 ], [ -123.250019609, 48.830565206000088 ], [ -123.25151650199993, 48.830337301000021 ], [ -123.251734318, 48.830237603000086 ], [ -123.251937603999977, 48.830058110000053 ], [ -123.252754187999983, 48.8298132050001 ], [ -123.253270813, 48.829398693000087 ], [ -123.253583294999913, 48.82932609800006 ], [ -123.254456294999969, 48.829350308000045 ], [ -123.254646087999959, 48.829287605000076 ], [ -123.25471352299995, 48.829223600000027 ], [ -123.2546042099999, 48.829008493000075 ], [ -123.25450859599999, 48.828925518000055 ], [ -123.253425892999957, 48.827985910000081 ], [ -123.252252401999968, 48.827718191000066 ], [ -123.25138081399993, 48.827414805000011 ], [ -123.250969589999926, 48.827127093000072 ], [ -123.250643120999925, 48.827074397000011 ], [ -123.249974200999972, 48.826761110000049 ], [ -123.24795329199999, 48.826036188000032 ], [ -123.247326682999969, 48.825974898000013 ], [ -123.246755897999932, 48.826209903000098 ], [ -123.246127487999928, 48.82608458900004 ], [ -123.245759418999981, 48.825879500000035 ], [ -123.245525587999936, 48.82548359599999 ], [ -123.24499188899992, 48.825224406000103 ], [ -123.244786621999978, 48.824693105000087 ], [ -123.243951307999922, 48.824129188000107 ], [ -123.243512576999962, 48.823545196000097 ], [ -123.243362691999934, 48.823553806000078 ], [ -123.2431736, 48.823824400000056 ], [ -123.243120888999954, 48.824184692000117 ], [ -123.243301180999964, 48.824553597000062 ], [ -123.243178398999945, 48.824706 ], [ -123.241857107, 48.824708808000061 ], [ -123.240238094999981, 48.825080493000037 ], [ -123.23922881099999, 48.825127501000139 ], [ -123.237633482999954, 48.8248711950001 ], [ -123.236024401999927, 48.824478090000106 ], [ -123.235601120999931, 48.824415942000059 ], [ -123.235709113999988, 48.822585130000128 ], [ -123.237348164999972, 48.82262753100018 ], [ -123.237453341999981, 48.820843267000043 ], [ -123.240014041999956, 48.820909459000113 ], [ -123.240063279999944, 48.82007332900011 ], [ -123.245497781999973, 48.82021360300007 ], [ -123.245407299999968, 48.821753095000105 ], [ -123.245938658999975, 48.821766796000091 ], [ -123.245835434999947, 48.823523315000038 ], [ -123.249487539999961, 48.823617408000132 ], [ -123.249458911999952, 48.824105170000117 ], [ -123.249631162999918, 48.8241096040001 ], [ -123.249612987999939, 48.824419296000066 ], [ -123.250997645999988, 48.824454935000098 ], [ -123.251002103999895, 48.824378909000067 ], [ -123.256437138, 48.824518626000049 ], [ -123.25635697199999, 48.825887921000046 ], [ -123.256384620999967, 48.82588863100009 ], [ -123.256358669999912, 48.826331876000033 ], [ -123.258123586999943, 48.826377187000048 ], [ -123.258053107999942, 48.827581692000145 ], [ -123.258088161, 48.827582591000024 ], [ -123.258003966999979, 48.82902145100006 ], [ -123.262310397999926, 48.829131884000063 ], [ -123.262248384999964, 48.830193275000077 ], [ -123.263106733999976, 48.83021526600006 ], [ -123.262896462999947, 48.833814965000094 ], [ -123.262814753999976, 48.833812871000042 ], [ -123.262797797999951, 48.834103096000035 ], [ -123.263853030999883, 48.834130121000037 ], [ -123.263903694999925, 48.833262551000054 ], [ -123.269339795999912, 48.833401610000074 ], [ -123.269129987999989, 48.837001303000108 ], [ -123.267026614999949, 48.836947531000078 ], [ -123.266351059999963, 48.836930251000133 ], [ -123.266217386999969, 48.839221061000082 ], [ -123.266948714999927, 48.839239767000016 ], [ -123.267012998999945, 48.83813784200003 ], [ -123.268301655999949, 48.838170791000032 ], [ -123.27194339499999, 48.838263819000133 ], [ -123.272449674999933, 48.838276742000119 ], [ -123.272371622999927, 48.83961732800006 ], [ -123.27400500099999, 48.839659005000073 ], [ -123.273965787999956, 48.840332883000059 ], [ -123.274977307999976, 48.84035868000008 ], [ -123.274936361999934, 48.841062571000052 ], [ -123.275802819999925, 48.841084661000053 ], [ -123.275735347999927, 48.842244882000038 ], [ -123.277633727999955, 48.842293255000108 ], [ -123.277635445999948, 48.842263714000048 ], [ -123.283072630999968, 48.842402071999985 ], [ -123.28299216399995, 48.843789404000127 ], [ -123.285369632999974, 48.843849816000045 ], [ -123.285260222999938, 48.845737666000076 ], [ -123.285577140999976, 48.84574571600006 ], [ -123.285542391999982, 48.846345338000162 ], [ -123.286710136999886, 48.846374988000015 ], [ -123.286702412999915, 48.846508312000019 ], [ -123.288595684999933, 48.846556356000121 ], [ -123.28862119299994, 48.846115694000105 ], [ -123.29098371299996, 48.846175599000063 ], [ -123.294058857999943, 48.846253493000042 ], [ -123.294052879999953, 48.846356967000105 ], [ -123.294739882999963, 48.846374356000126 ], [ -123.294741835999957, 48.846340544000036 ], [ -123.297376816999986, 48.84640720200008 ], [ -123.30017954499999, 48.846478032000093 ], [ -123.30016826799999, 48.846673672000065 ], [ -123.300155845999882, 48.846889180000105 ], [ -123.302299280999989, 48.846943299000067 ], [ -123.302303604999963, 48.846868231000066 ], [ -123.302780793999915, 48.846880274000092 ], [ -123.302782076999932, 48.846857994000082 ], [ -123.302392388999934, 48.846859015000064 ], [ -123.302390764999984, 48.846589143000074 ], [ -123.301981866999952, 48.846590215000042 ], [ -123.301980955999966, 48.846438789000068 ], [ -123.301980244, 48.846320344000034 ], [ -123.301571348999971, 48.846321413000069 ], [ -123.30156972899999, 48.846051542000055 ], [ -123.300751939999913, 48.846053678000033 ], [ -123.300750324999939, 48.845783806000092 ], [ -123.300341432999971, 48.845784872000145 ], [ -123.300339818999959, 48.845515 ], [ -123.299930929999931, 48.845516064000073 ], [ -123.299929316999965, 48.845246192000111 ], [ -123.299111542999924, 48.845248316000031 ], [ -123.29910672199992, 48.844438700000055 ], [ -123.299515602999946, 48.844437639000041 ], [ -123.299513992999934, 48.844167766000076 ], [ -123.300331749999913, 48.844165639000096 ], [ -123.300330135999957, 48.843895767000106 ], [ -123.301965640999953, 48.843891495000051 ], [ -123.301967264000012, 48.844161367000034 ], [ -123.302376140999968, 48.844160296000041 ], [ -123.30237451699999, 48.843890423000062 ], [ -123.306463276999949, 48.843879627000028 ], [ -123.306461628999912, 48.843609756000021 ], [ -123.306052756999946, 48.84361084100005 ], [ -123.306051110999931, 48.843340970000085 ], [ -123.303189011999933, 48.843348532000093 ], [ -123.303187381999976, 48.843078660000089 ], [ -123.301960772999934, 48.843081879000039 ], [ -123.301958358999968, 48.842680159000061 ], [ -123.30194523199998, 48.842679827000076 ], [ -123.301953160999986, 48.842542147000117 ], [ -123.301548663999981, 48.842543205000055 ], [ -123.301547042999957, 48.842273333000016 ], [ -123.299093865999964, 48.842279723000054 ], [ -123.29908904499996, 48.841470106000081 ], [ -123.299497900999981, 48.841469045000046 ], [ -123.299496290999969, 48.841199172000088 ], [ -123.300932417999931, 48.841195433000102 ], [ -123.300948449999936, 48.840917184000041 ], [ -123.297978095999937, 48.84084212800007 ], [ -123.297990420999952, 48.840628449000107 ], [ -123.296176844999977, 48.840582581000071 ], [ -123.29632422799996, 48.838028873000027 ], [ -123.29251337, 48.837932391000031 ], [ -123.292543946999942, 48.837403291000065 ], [ -123.288098745999889, 48.837290576000044 ], [ -123.288291536999964, 48.833959731000093 ], [ -123.284939133999956, 48.833874604000108 ], [ -123.285125362999963, 48.830660626000096 ], [ -123.284246603999947, 48.830638293000028 ], [ -123.284264595999971, 48.83032786400004 ], [ -123.283726304999973, 48.830314181000105 ], [ -123.283732521, 48.830206946000082 ], [ -123.282080651999962, 48.830164938000031 ], [ -123.282112262999988, 48.829619955000055 ], [ -123.282017282999931, 48.829617538000072 ], [ -123.282024709999931, 48.829489494000022 ], [ -123.28011072399994, 48.829440788000113 ], [ -123.280111420999944, 48.829428771000032 ], [ -123.27918029199999, 48.829405064000113 ], [ -123.279215579999956, 48.828797291000051 ], [ -123.27922664099999, 48.82860679200008 ], [ -123.276027727, 48.828525282000129 ], [ -123.276027755999962, 48.828524806000061 ], [ -123.273570039999967, 48.828462118000118 ], [ -123.273595932, 48.828017107000036 ], [ -123.272352808999941, 48.827985377000061 ], [ -123.272179271999974, 48.830966447000073 ], [ -123.271243211999888, 48.830942545000084 ], [ -123.270550086999933, 48.830924841000083 ], [ -123.270541656999967, 48.831069559000071 ], [ -123.271553754999914, 48.831095408000124 ], [ -123.273327208999916, 48.831140680000019 ], [ -123.273380586999934, 48.830223374000106 ], [ -123.273956211, 48.830238062000085 ], [ -123.273997298999973, 48.829531787000107 ], [ -123.278055170999934, 48.82963524100014 ], [ -123.279432998999951, 48.829670334000078 ], [ -123.279223981999948, 48.833270068000054 ], [ -123.278648318999956, 48.833255408000106 ], [ -123.278607296999922, 48.833961680000129 ], [ -123.27778164399993, 48.833940649000048 ], [ -123.27760832300001, 48.836923596000119 ], [ -123.272171787999952, 48.836784958000045 ], [ -123.27225835499992, 48.835298130000105 ], [ -123.271436086999941, 48.835277137000041 ], [ -123.26981769399994, 48.835235801000103 ], [ -123.270027440999939, 48.831636096000054 ], [ -123.270059248999971, 48.83163690900011 ], [ -123.270074441999952, 48.831376123000034 ], [ -123.265087259999945, 48.831248587000047 ], [ -123.26529735299999, 48.827648869000086 ], [ -123.265808786999912, 48.8276619580001 ], [ -123.265843341, 48.827069750000135 ], [ -123.265228016999984, 48.827054001000143 ], [ -123.26538601599999, 48.824346513000073 ], [ -123.26166955399998, 48.824251316000108 ], [ -123.261861341999946, 48.82096883500008 ], [ -123.264061892999933, 48.821736497000103 ], [ -123.264676209999891, 48.822058390000031 ], [ -123.26578630299997, 48.822974095000099 ], [ -123.266402487, 48.823610703000035 ], [ -123.267315583999945, 48.823636399000051 ], [ -123.267484053999965, 48.823506611000077 ], [ -123.268779292, 48.823539733000111 ], [ -123.270612889999981, 48.823889894000104 ], [ -123.27085011199992, 48.823987103000036 ], [ -123.270834678999989, 48.824252112000146 ], [ -123.271449967999985, 48.824267829000092 ], [ -123.271444769999974, 48.824357088000077 ], [ -123.273868637999954, 48.824418968000046 ], [ -123.274063002, 48.824556408000099 ], [ -123.275100392999946, 48.824670388000044 ], [ -123.275726815000027, 48.824885408000029 ], [ -123.276122510999983, 48.824938086000024 ], [ -123.277324101999952, 48.825366798000097 ], [ -123.27812971, 48.825526284000055 ], [ -123.278780801999915, 48.825245688000066 ], [ -123.279391687999976, 48.82483979300013 ], [ -123.279771193999963, 48.824344191000151 ], [ -123.279687696999957, 48.824200405000049 ], [ -123.278882892999931, 48.823860014000061 ], [ -123.278689394999958, 48.823330199000125 ], [ -123.278865498999906, 48.823257508000097 ], [ -123.279668993999948, 48.823364388000122 ], [ -123.280406988999957, 48.823550911000012 ], [ -123.281281589999978, 48.824025192000079 ], [ -123.281448869999963, 48.824008996000032 ], [ -123.282030899999981, 48.823952600000048 ], [ -123.2824812, 48.824139103000086 ], [ -123.282933083999936, 48.824525107000106 ], [ -123.28310938599995, 48.824560695000052 ], [ -123.284286694999963, 48.825331190000043 ], [ -123.284313896999919, 48.825403808000054 ], [ -123.28397340399998, 48.825386703000085 ], [ -123.283892310999988, 48.825440902000018 ], [ -123.283825707999966, 48.82565730200006 ], [ -123.283907492999944, 48.82586389900009 ], [ -123.284385791999966, 48.826204213000103 ], [ -123.285614496999941, 48.826578787000095 ], [ -123.286554098999929, 48.826630102000138 ], [ -123.288526607000023, 48.826050396000035 ], [ -123.288635691999957, 48.825996297000067 ], [ -123.288607419999906, 48.825888100000043 ], [ -123.289179721999957, 48.825841103000123 ], [ -123.291101898999898, 48.826097389000068 ], [ -123.291225478999962, 48.82629539900006 ], [ -123.29117401, 48.826583101000033 ], [ -123.291719892999978, 48.826896397000063 ], [ -123.292170399999961, 48.827030286000102 ], [ -123.294790309999911, 48.827464691000124 ], [ -123.295497679999968, 48.827363498000132 ], [ -123.295741287999988, 48.827263790000082 ], [ -123.295862590999903, 48.827038812000069 ], [ -123.296108507999975, 48.826957584000112 ], [ -123.296517196999901, 48.8269205920001 ], [ -123.297376398999944, 48.827107204000072 ], [ -123.297921301, 48.827141385000125 ], [ -123.298343403999979, 48.827077302000085 ], [ -123.298696308, 48.826941999000042 ], [ -123.298886695999954, 48.826769605000052 ], [ -123.29918569299997, 48.826742601000021 ], [ -123.300196898999971, 48.827216896000067 ], [ -123.30093460800002, 48.827430488000076 ], [ -123.302133893999979, 48.827571505000051 ], [ -123.303103490999959, 48.827829313000059 ], [ -123.303444599999949, 48.828062810000105 ], [ -123.304795294999977, 48.828346192000026 ], [ -123.305534285999912, 48.828786308000119 ], [ -123.306036990999971, 48.828784892000073 ], [ -123.306459911, 48.828873198000096 ], [ -123.306897697999929, 48.829115286000068 ], [ -123.307115593, 48.829123914000014 ], [ -123.307539187, 48.829293294000067 ], [ -123.307775308999908, 48.829787504000087 ], [ -123.30817091099999, 48.829975506000082 ], [ -123.30888069099997, 48.830207700000066 ], [ -123.30938549299999, 48.830187707000071 ], [ -123.309682496999969, 48.830025408000076 ], [ -123.309931004999953, 48.830509588000041 ], [ -123.31021960299995, 48.83068051000005 ], [ -123.310874394, 48.830813001000081 ], [ -123.31226677699999, 48.831448194000139 ], [ -123.313905797999936, 48.831839791000057 ], [ -123.314232790999966, 48.831865498000106 ], [ -123.314530700999967, 48.831559292000065 ], [ -123.315195602999935, 48.831314311000014 ], [ -123.315223390999947, 48.831206093000141 ], [ -123.315058187999981, 48.830982509000073 ], [ -123.31466160699992, 48.830604982000089 ], [ -123.315340384999942, 48.830531002000022 ], [ -123.316145905999988, 48.830736085000083 ], [ -123.317115176999934, 48.830795899000066 ], [ -123.317496283999958, 48.830904101000051 ], [ -123.31818059599999, 48.831405390000022 ], [ -123.319054505999958, 48.831510803000107 ], [ -123.319612685999957, 48.831428210000176 ], [ -123.319843097999964, 48.831463803000069 ], [ -123.320185606999985, 48.831597700000067 ], [ -123.320364602999987, 48.831831311000059 ], [ -123.32067790499994, 48.831929602000052 ], [ -123.32096339499999, 48.831757208000063 ], [ -123.321167695, 48.831774295000123 ], [ -123.321224002999912, 48.831999309000118 ], [ -123.321606811999985, 48.832205902000048 ], [ -123.32191982099998, 48.832195900000052 ], [ -123.322260498, 48.832077714000022 ], [ -123.322831002999962, 48.832067693000049 ], [ -123.323596682999977, 48.83224430500011 ], [ -123.323875890999901, 48.832248459000027 ], [ -123.323768905999913, 48.834121576000079 ], [ -123.323679003999942, 48.834119324000085 ], [ -123.323657963999935, 48.834487666000086 ], [ -123.324089241, 48.834498468000092 ], [ -123.324077670999941, 48.834701047000102 ], [ -123.322683803999965, 48.834352086000095 ], [ -123.321317617999966, 48.833914906000061 ], [ -123.320363219999962, 48.833836598000076 ], [ -123.319585903999922, 48.833650007000081 ], [ -123.319409720999928, 48.833857897000065 ], [ -123.319724975999989, 48.834091493000081 ], [ -123.31922019199996, 48.834253900000057 ], [ -123.318798604999969, 48.834290894000119 ], [ -123.318581908999988, 48.834561506000028 ], [ -123.318611393999987, 48.834930393000064 ], [ -123.320033819999963, 48.83550290000003 ], [ -123.321275615999951, 48.835750705000066 ], [ -123.322205312, 48.836468488000023 ], [ -123.323448803999938, 48.836878688000056 ], [ -123.323668187999957, 48.837031103000101 ], [ -123.323695410999974, 48.837156387000078 ], [ -123.323696890999926, 48.837300200000108 ], [ -123.323481292999929, 48.837535202000012 ], [ -123.323768894999944, 48.837794489000096 ], [ -123.324805807999951, 48.837962504000068 ], [ -123.326089705999934, 48.838445303000064 ], [ -123.326621514999957, 48.838750094000034 ], [ -123.328082705999975, 48.838906804000089 ], [ -123.328476778999942, 48.838861199000092 ], [ -123.328872388999955, 48.838959507000013 ], [ -123.329707210999956, 48.839316890000063 ], [ -123.331112106999953, 48.839627399000051 ], [ -123.332532916, 48.840135802000106 ], [ -123.333053584999902, 48.840538900000084 ], [ -123.333480785999896, 48.841258096000011 ], [ -123.334068310999953, 48.84162420500008 ], [ -123.334099799999976, 48.842020092000077 ], [ -123.333852793999952, 48.842065713000096 ], [ -123.333766997999987, 48.842161435000094 ], [ -123.333488991999928, 48.842471593000056 ], [ -123.332631288999934, 48.842626802000012 ], [ -123.331131398999929, 48.842424603000083 ], [ -123.330939681, 48.842524196000021 ], [ -123.330666693999902, 48.84249859600007 ], [ -123.329617701999936, 48.84229498400002 ], [ -123.329111306999891, 48.84208840400003 ], [ -123.328511403999983, 48.842126908000068 ], [ -123.326819906999972, 48.841889101000064 ], [ -123.326069723999964, 48.841621305000075 ], [ -123.325741783999902, 48.841585706000011 ], [ -123.325318699999926, 48.841685405000064 ], [ -123.324185510999953, 48.841293693000139 ], [ -123.323723198999957, 48.841528702000062 ], [ -123.323560291999954, 48.841537301000052 ], [ -123.321747309, 48.841326506000058 ], [ -123.321665977999913, 48.841426194000036 ], [ -123.321777081999926, 48.841713892000136 ], [ -123.32170801699999, 48.841732406000105 ], [ -123.321462281999956, 48.841471795000125 ], [ -123.321257476, 48.841706793000036 ], [ -123.320825411999962, 48.84235478800008 ], [ -123.320814585999955, 48.842561292000028 ], [ -123.320951423999958, 48.84275920400006 ], [ -123.321404691999973, 48.843136708000046 ], [ -123.322170104999898, 48.843475610000041 ], [ -123.322854904999971, 48.843976896000129 ], [ -123.323291304999898, 48.844120788000033 ], [ -123.324274207, 48.844270284000125 ], [ -123.324535493, 48.844639197000042 ], [ -123.324480078999926, 48.844791596000093 ], [ -123.324098998999943, 48.844855705000107 ], [ -123.324058607999945, 48.844918302000039 ], [ -123.324158209999936, 48.845485200000084 ], [ -123.324666889999946, 48.845987891000092 ], [ -123.324941817999971, 48.846472204000094 ], [ -123.325584405999948, 48.846866704000014 ], [ -123.325779894000021, 48.847099179000068 ], [ -123.326135310999973, 48.847521796000109 ], [ -123.326694499999988, 48.847726894000076 ], [ -123.327024399999942, 48.848085809000061 ], [ -123.32811974599997, 48.848689 ], [ -123.32025766, 48.848633746000075 ], [ -123.320327519999964, 48.847412671000058 ], [ -123.320192921999961, 48.847409296000109 ], [ -123.320193366999916, 48.847401514000119 ], [ -123.318927176999921, 48.847369762000035 ], [ -123.318947219999956, 48.847019613000036 ], [ -123.318310286999946, 48.847003635000085 ], [ -123.318217782999952, 48.848619315000093 ], [ -123.312774156999978, 48.848580616000042 ], [ -123.312803784, 48.848064219000086 ], [ -123.31290394499996, 48.846318289000109 ], [ -123.312379098999912, 48.846305093000119 ], [ -123.312395053999964, 48.846027057000107 ], [ -123.311528785999968, 48.846005272000085 ], [ -123.311548851999973, 48.84565567300006 ], [ -123.310625675999916, 48.845632448000067 ], [ -123.310644854999936, 48.845298375000027 ], [ -123.30976476499994, 48.845276227000092 ], [ -123.30977906699999, 48.845027219000102 ], [ -123.309151057999969, 48.845011411000073 ], [ -123.309240725999942, 48.843450433000022 ], [ -123.308504937999956, 48.843431906000077 ], [ -123.308507655999932, 48.843874175000096 ], [ -123.308098778999977, 48.843875269000087 ], [ -123.308100433999982, 48.844145140000109 ], [ -123.30646492299999, 48.844149499000039 ], [ -123.306468215999985, 48.844689243000111 ], [ -123.304832686999973, 48.844693580000069 ], [ -123.304834326, 48.844963452000044 ], [ -123.302789901, 48.844968838000071 ], [ -123.30279478199999, 48.845778454000033 ], [ -123.303612564999938, 48.84577630500015 ], [ -123.303614194999966, 48.846046176000065 ], [ -123.304023088999926, 48.846045099 ], [ -123.304025057999979, 48.846370447000062 ], [ -123.308249646999968, 48.84647691900004 ], [ -123.308205596999983, 48.847243420000041 ], [ -123.308143444999928, 48.848324904000044 ], [ -123.308751340999976, 48.84834021100005 ], [ -123.308722997999965, 48.848833467000077 ], [ -123.308792267999976, 48.848835211000051 ], [ -123.308757664000012, 48.849437460000068 ], [ -123.310369265999938, 48.849478022000078 ], [ -123.30975979599999, 48.852724302000134 ], [ -123.309550008999963, 48.852721590000058 ], [ -123.309142101999939, 48.852651809000122 ], [ -123.308894304999967, 48.852255909000078 ], [ -123.309206009, 48.851966790000077 ], [ -123.309082113999963, 48.851716101000129 ], [ -123.308752097999928, 48.851473998000124 ], [ -123.30800061199993, 48.851170587000091 ], [ -123.304713200999913, 48.850764704000035 ], [ -123.304501992, 48.850758551000077 ], [ -123.30395560699999, 48.85074267300007 ], [ -123.303880910999936, 48.850740505000033 ], [ -123.303214495999896, 48.850912796000081 ], [ -123.302751996999973, 48.850922788000027 ], [ -123.302260084999944, 48.850807493000069 ], [ -123.301836, 48.850600905000071 ], [ -123.30144211599999, 48.850683506000074 ], [ -123.300761700999942, 48.851063785000115 ], [ -123.300697184999933, 48.851468290000064 ], [ -123.300793216999949, 48.851756004000052 ], [ -123.300651244999955, 48.851962675000067 ], [ -123.30064450899998, 48.851972507000042 ], [ -123.298754798999965, 48.852787103000054 ], [ -123.298024114, 48.853441740000051 ], [ -123.297697698999983, 48.853734185000164 ], [ -123.297535422999914, 48.854165705000121 ], [ -123.297504510999914, 48.85568680300009 ], [ -123.297371395999917, 48.856082698000144 ], [ -123.297431111999941, 48.857135191000069 ], [ -123.29709311199997, 48.857747594000031 ], [ -123.296989383999957, 48.858558004000066 ], [ -123.297921414999962, 48.859284296000048 ], [ -123.298292719999921, 48.859957999000116 ], [ -123.299016905999977, 48.860323994000048 ], [ -123.299537294999979, 48.860476388000109 ], [ -123.30086110299996, 48.860688604000089 ], [ -123.301380310999932, 48.860858095000047 ], [ -123.302489204999958, 48.861574490000052 ], [ -123.303485876999972, 48.861986094000066 ], [ -123.304570811999923, 48.86308980200004 ], [ -123.305039413999921, 48.864203592000131 ], [ -123.305111275999963, 48.864653596000061 ], [ -123.304707190999963, 48.865347195000048 ], [ -123.304190508999937, 48.865698988000119 ], [ -123.303553595999986, 48.866421093000078 ], [ -123.303082010000011, 48.867212906000034 ], [ -123.302742602999899, 48.867475003000067 ], [ -123.302539281999884, 48.867835298000074 ], [ -123.302294210999932, 48.867944992000027 ], [ -123.301998875999971, 48.868476196000096 ], [ -123.301550178999918, 48.868773894000128 ], [ -123.300868906999966, 48.868919093000031 ], [ -123.300297904999937, 48.869128496 ], [ -123.300135004999944, 48.869290792000129 ], [ -123.299644717999939, 48.869273708000087 ], [ -123.299303489999929, 48.869490194 ], [ -123.29907299599995, 48.869473087000102 ], [ -123.298937021999933, 48.869787902000041 ], [ -123.298079895999962, 48.870042796000092 ], [ -123.297579597999942, 48.870584010000137 ], [ -123.296381105999956, 48.87110810899999 ], [ -123.295195485999926, 48.871083891000055 ], [ -123.295141611999952, 48.87130890300007 ], [ -123.295019479999965, 48.871363095000106 ], [ -123.29407791499996, 48.871276198000039 ], [ -123.29397167599997, 48.871546794000153 ], [ -123.293138103999951, 48.871287606000145 ], [ -123.292101598999977, 48.871515512000066 ], [ -123.291598294999957, 48.871498394000113 ], [ -123.29118769199998, 48.871372998000012 ], [ -123.291244190999933, 48.871598103000125 ], [ -123.292599893999935, 48.872548004000137 ], [ -123.291905414999931, 48.872945403000095 ], [ -123.291961703999931, 48.873151888000123 ], [ -123.291798592999896, 48.873224512 ], [ -123.291786708999936, 48.87353070500005 ], [ -123.291596400999978, 48.873567693000012 ], [ -123.29162450799997, 48.873755695000028 ], [ -123.291174709999936, 48.873829807000092 ], [ -123.290082417999926, 48.873553502000114 ], [ -123.290083822999989, 48.873885301000044 ], [ -123.29024778899992, 48.874029206000095 ], [ -123.29018098899995, 48.87406620900007 ], [ -123.289360901999885, 48.87379851300004 ], [ -123.289238303999937, 48.873879604000138 ], [ -123.289457294, 48.874040594000071 ], [ -123.289212390999964, 48.874086209000076 ], [ -123.28877449299992, 48.873906705000081 ] ], [ [ -123.294455033999952, 48.8692311820001 ], [ -123.294497545999903, 48.868495555000024 ], [ -123.293840067999966, 48.868478920000086 ], [ -123.29357585199989, 48.868472234000095 ], [ -123.293558910999977, 48.868765276000055 ], [ -123.293533324999913, 48.869207859000142 ], [ -123.294455033999952, 48.8692311820001 ] ], [ [ -123.29819742399998, 48.865385687000085 ], [ -123.298326063999966, 48.863156344000089 ], [ -123.29582847599994, 48.863093210000095 ], [ -123.295891775999948, 48.861997178000095 ], [ -123.295220420999968, 48.861980197000058 ], [ -123.29522955399996, 48.861822088000039 ], [ -123.293781979999949, 48.861785460000149 ], [ -123.293815644999981, 48.861202976000129 ], [ -123.291016316999972, 48.861132088000033 ], [ -123.29122455199996, 48.857532491000022 ], [ -123.293326776999947, 48.857585734000111 ], [ -123.293426700999945, 48.855856870000061 ], [ -123.292714898999975, 48.855838848000076 ], [ -123.292760713999883, 48.855046328000107 ], [ -123.291915817999893, 48.85502492900013 ], [ -123.29195942699999, 48.854270777000089 ], [ -123.291882562999902, 48.854268830000073 ], [ -123.291912566999912, 48.853749944000079 ], [ -123.289868569999953, 48.853698147000088 ], [ -123.289708593999961, 48.856462441000119 ], [ -123.286240918999937, 48.856374476000049 ], [ -123.28610377699999, 48.858740923000077 ], [ -123.28243231, 48.858647666000117 ], [ -123.282372680999913, 48.85967511100003 ], [ -123.276933493999962, 48.85953672100004 ], [ -123.27698481000003, 48.858654268000059 ], [ -123.275992109999962, 48.85862898000002 ], [ -123.275835579999978, 48.861319644000055 ], [ -123.275959933999943, 48.861322812000019 ], [ -123.275951578999937, 48.861466413000066 ], [ -123.278525050999974, 48.861531946000071 ], [ -123.278436868999918, 48.86304909800004 ], [ -123.281348844999968, 48.863123175000069 ], [ -123.28124838, 48.864853357000101 ], [ -123.281347647999951, 48.864855881000018 ], [ -123.281336507999981, 48.865047731000054 ], [ -123.28171964799999, 48.865057471000114 ], [ -123.281719443999975, 48.865060951000075 ], [ -123.282849011999943, 48.86508966000013 ], [ -123.282862275999975, 48.864861109000095 ], [ -123.285918371, 48.864938721000051 ], [ -123.285955582999975, 48.864296783000086 ], [ -123.29139535099992, 48.864434714000048 ], [ -123.291373544999928, 48.864811646000092 ], [ -123.295792918999922, 48.864923499000064 ], [ -123.295685256999917, 48.866787469000023 ], [ -123.29559056799998, 48.868426711000033 ], [ -123.295820405999947, 48.868432523000109 ], [ -123.295876611, 48.867459435000086 ], [ -123.29713565199998, 48.867491265000091 ], [ -123.29721867399995, 48.86605313200009 ], [ -123.297258573999954, 48.865361963000119 ], [ -123.29819742399998, 48.865385687000085 ] ], [ [ -123.274743199999989, 48.857861785000068 ], [ -123.27486362799999, 48.855792416000014 ], [ -123.272973774999926, 48.85574422600007 ], [ -123.273052135999976, 48.854398540000041 ], [ -123.270784092000028, 48.85434066300013 ], [ -123.27075836399996, 48.854782144000048 ], [ -123.271908590999942, 48.854811502000054 ], [ -123.27176870299995, 48.857212716000092 ], [ -123.271735355999979, 48.85778507200007 ], [ -123.273680551999988, 48.857834693000065 ], [ -123.274743199999989, 48.857861785000068 ] ], [ [ -123.28031264599997, 48.855754065000056 ], [ -123.280297349999941, 48.856017439000055 ], [ -123.280443704000021, 48.856021161000129 ], [ -123.280458998999933, 48.855757787000108 ], [ -123.28031264599997, 48.855754065000056 ] ], [ [ -123.289827358999943, 48.852860551000035 ], [ -123.289882649, 48.851905089000127 ], [ -123.289216180999972, 48.851888191000072 ], [ -123.289160877999933, 48.852843651000086 ], [ -123.289827358999943, 48.852860551000035 ] ], [ [ -123.26889567099991, 48.852239041000075 ], [ -123.269010441999924, 48.850270827 ], [ -123.27041588099999, 48.850306723000074 ], [ -123.270479352999942, 48.849217609000021 ], [ -123.26739456699994, 48.849138794000076 ], [ -123.267344640000019, 48.84999450800013 ], [ -123.263243661999951, 48.849889591000142 ], [ -123.26319374800002, 48.850743777000034 ], [ -123.26424133099999, 48.850770593000043 ], [ -123.264175675, 48.851894578000028 ], [ -123.264238897999974, 48.851896195000066 ], [ -123.26423750699999, 48.851920006000057 ], [ -123.267068598999941, 48.851992422000059 ], [ -123.26705695099993, 48.852192050000106 ], [ -123.26889567099991, 48.852239041000075 ] ], [ [ -123.261919064999972, 48.849642476000049 ], [ -123.261942333999926, 48.849244462000115 ], [ -123.260100881999904, 48.849197278000148 ], [ -123.260077598999914, 48.849595290000082 ], [ -123.261919064999972, 48.849642476000049 ] ], [ [ -123.274434365000019, 48.850653072000036 ], [ -123.2744241499999, 48.850828586000041 ], [ -123.275264228999973, 48.850850002000065 ], [ -123.275185937999979, 48.852195697000106 ], [ -123.275686090999955, 48.852208445000038 ], [ -123.275696376999946, 48.852031596000089 ], [ -123.278736857999903, 48.852109038000066 ], [ -123.278803313999916, 48.850965269000085 ], [ -123.27952158, 48.850983550000088 ], [ -123.27955781799993, 48.850359685000043 ], [ -123.281825553999909, 48.850417373000056 ], [ -123.281826573999979, 48.850399803000087 ], [ -123.280341770999954, 48.850362037000082 ], [ -123.280408126999959, 48.849219281000025 ], [ -123.279930526999962, 48.849207129000064 ], [ -123.279996842999964, 48.848065198000043 ], [ -123.277906222999889, 48.848011978000059 ], [ -123.277914640999967, 48.847867116 ], [ -123.27730791, 48.847851663000057 ], [ -123.277312849999959, 48.847766684000128 ], [ -123.276738294999973, 48.847752048000046 ], [ -123.276742212999949, 48.847684664000049 ], [ -123.276015623999953, 48.847666150000101 ], [ -123.275839818999927, 48.850688898000065 ], [ -123.274434365000019, 48.850653072000036 ] ], [ [ -123.27322037099999, 48.847017144000112 ], [ -123.273264721999951, 48.846255285000076 ], [ -123.272394091999956, 48.846233071000078 ], [ -123.272393232999917, 48.846247796000092 ], [ -123.272268231999959, 48.846244606000049 ], [ -123.272224721999933, 48.846991739000117 ], [ -123.27322037099999, 48.847017144000112 ] ], [ [ -123.265767371000024, 48.846349188000026 ], [ -123.265800766999945, 48.84577707300005 ], [ -123.26580102099993, 48.845772727000082 ], [ -123.264490904999931, 48.845739204000019 ], [ -123.264457238999938, 48.846315666000073 ], [ -123.265181360999946, 48.8463341960001 ], [ -123.265767371000024, 48.846349188000026 ] ], [ [ -123.315543080999944, 48.841945173000063 ], [ -123.31560018199994, 48.840948718000035 ], [ -123.315552195999928, 48.840947512000099 ], [ -123.315495093999957, 48.841943967000063 ], [ -123.315543080999944, 48.841945173000063 ] ], [ [ -123.308007779999969, 48.836834293000052 ], [ -123.308007980999932, 48.836830774000155 ], [ -123.307913804999927, 48.836828402000037 ], [ -123.308023603999956, 48.834917479000119 ], [ -123.302649832999975, 48.834781968000065 ], [ -123.30282069299993, 48.831813946000082 ], [ -123.300598433999951, 48.831757828 ], [ -123.299815219999957, 48.831738038000012 ], [ -123.299065185999964, 48.831719082000077 ], [ -123.29910625299999, 48.831006627000114 ], [ -123.299139818999976, 48.830424290000103 ], [ -123.29841619699998, 48.830405996000096 ], [ -123.298409779999957, 48.830517278000137 ], [ -123.29838281799999, 48.830984906000062 ], [ -123.297819977999964, 48.830970673000081 ], [ -123.297814, 48.83107431900001 ], [ -123.296688393999929, 48.831045847000119 ], [ -123.296537870999899, 48.833654735000046 ], [ -123.299001118999954, 48.833717027000027 ], [ -123.298844888999923, 48.836426992000078 ], [ -123.29980465, 48.836451247000113 ], [ -123.299862339999976, 48.835450237000046 ], [ -123.301451910999972, 48.835490391000086 ], [ -123.305298799999932, 48.835587467 ], [ -123.305238803999941, 48.836630572000011 ], [ -123.305207529999961, 48.837174314000073 ], [ -123.307984220999984, 48.837244298000066 ], [ -123.308007779999969, 48.836834293000052 ] ], [ [ -123.291087535, 48.833761372000012 ], [ -123.291133239999937, 48.832970842000037 ], [ -123.290436633999917, 48.832953180000096 ], [ -123.290390917999943, 48.833743710000149 ], [ -123.291087535, 48.833761372000012 ] ], [ [ -123.264227966999925, 48.845697991000129 ], [ -123.264328230999979, 48.843981248000034 ], [ -123.264319763999964, 48.843981032000038 ], [ -123.264389943, 48.842779328000084 ], [ -123.263819318999964, 48.842764720000069 ], [ -123.26397687499994, 48.840067175000137 ], [ -123.262788293999961, 48.84003673900007 ], [ -123.262770468999946, 48.840341808000041 ], [ -123.2629808499999, 48.840347197000092 ], [ -123.262958804999954, 48.840724505000026 ], [ -123.262981971999977, 48.840725098000107 ], [ -123.262771642999951, 48.844324736000054 ], [ -123.262725593999988, 48.844323557000024 ], [ -123.26268539099999, 48.845011528000036 ], [ -123.262911232999954, 48.845017312000039 ], [ -123.262873484999915, 48.84566331400012 ], [ -123.264227966999925, 48.845697991000129 ] ], [ [ -123.255436537999969, 48.835604940000067 ], [ -123.255538093999974, 48.833871249000055 ], [ -123.257364303999907, 48.833918138000087 ], [ -123.257440752999955, 48.83261209700008 ], [ -123.256664067999907, 48.832592160000118 ], [ -123.256748310999981, 48.831153310000076 ], [ -123.256019589999966, 48.831134598000133 ], [ -123.255975378999935, 48.831889540000113 ], [ -123.255322545999888, 48.831872772000047 ], [ -123.255314058999915, 48.832017655000108 ], [ -123.255118642999889, 48.832012635000083 ], [ -123.25509567099995, 48.832404759000021 ], [ -123.25462993299999, 48.832392794000086 ], [ -123.254612169999973, 48.832695971000057 ], [ -123.253825768999903, 48.832675762000086 ], [ -123.253804456999902, 48.833039389000056 ], [ -123.253155860999968, 48.833022718000016 ], [ -123.25311416699995, 48.833733904000049 ], [ -123.250679747999982, 48.833671295000066 ], [ -123.25058077599999, 48.835357899000059 ], [ -123.252360042999968, 48.835403664000054 ], [ -123.252352885999969, 48.835525694000061 ], [ -123.255436537999969, 48.835604940000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51041833", "BldgCostT": "33463333", "sL_LossRatio": "0.912862964578701", "sL_AssetLoss": "93983", "sL_BldgLoss": "85793.6", "sL_StrLoss": "68411.6", "sL_NStrLoss": "17382", "sL_ContLoss": "8189.4", "geom_point": "0101000020E6100000C70E641C27DF5EC001561E0FC3484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.481876400999923, 48.575734197000052 ], [ -123.481305309000021, 48.575620291000085 ], [ -123.480478606, 48.575631691000062 ], [ -123.480166882999967, 48.575578993000065 ], [ -123.479282193999907, 48.575222911000019 ], [ -123.477275799999944, 48.575123195000067 ], [ -123.476377213999939, 48.57488400900008 ], [ -123.475270603999931, 48.573998091000092 ], [ -123.474290399999987, 48.573391399000045 ], [ -123.474110314999947, 48.573149299000129 ], [ -123.473662210999962, 48.573042493000102 ], [ -123.473620999, 48.572979794000112 ], [ -123.474011206999975, 48.572645087000105 ], [ -123.474017866999986, 48.572580181000085 ], [ -123.474085905999985, 48.571915911000126 ], [ -123.474220001999953, 48.571636812000087 ], [ -123.475203199999939, 48.571092698000022 ], [ -123.475157391999943, 48.570419088000108 ], [ -123.475012700999983, 48.570048996000033 ], [ -123.477431880999958, 48.570106476000028 ], [ -123.47735402799999, 48.571561329000112 ], [ -123.477802155999939, 48.571571970000029 ], [ -123.47779891, 48.571632625000085 ], [ -123.47811319, 48.571640086000087 ], [ -123.478269668999985, 48.568714993000086 ], [ -123.483675876999925, 48.568843207000064 ], [ -123.483580102999966, 48.570637428000097 ], [ -123.48496599399999, 48.570670251000166 ], [ -123.484963549999918, 48.570414732000124 ], [ -123.484556891999972, 48.570416445000042 ], [ -123.484549155999943, 48.56960680700017 ], [ -123.484719561999924, 48.569606090000029 ], [ -123.485769108999961, 48.569601667000065 ], [ -123.485771695, 48.569871546000044 ], [ -123.486178346999978, 48.569869830000073 ], [ -123.486180934999965, 48.570139709000095 ], [ -123.486587589999957, 48.570137991000067 ], [ -123.486596425999963, 48.571059022000036 ], [ -123.487150179999958, 48.571072123000121 ], [ -123.487133542, 48.571384256000059 ], [ -123.487780760999954, 48.571399564000046 ], [ -123.487949211999961, 48.568238529000091 ], [ -123.488364399999966, 48.568248348000033 ], [ -123.48838992099995, 48.567769338000055 ], [ -123.48884556699997, 48.567780112000044 ], [ -123.488874529999975, 48.567236349000055 ], [ -123.488955118999939, 48.567238255000056 ], [ -123.488956252999969, 48.567216975000044 ], [ -123.487082242999961, 48.567172654000089 ], [ -123.485243774999901, 48.567129141000095 ], [ -123.48485055099998, 48.567119830000124 ], [ -123.484878443999918, 48.566597018000046 ], [ -123.484914929999903, 48.565913075000076 ], [ -123.482998857999945, 48.565867684000111 ], [ -123.483002203999902, 48.565805024000049 ], [ -123.481670214999937, 48.565773450000115 ], [ -123.48186258799997, 48.562171761000116 ], [ -123.482430123999947, 48.562185217000028 ], [ -123.482475308999966, 48.561338974000051 ], [ -123.483980190999986, 48.561374638000089 ], [ -123.483991959999983, 48.561154111000093 ], [ -123.489130446999937, 48.561275726000105 ], [ -123.489397316999941, 48.561282036000058 ], [ -123.489298898999962, 48.563130295000043 ], [ -123.490653381999905, 48.563162307000063 ], [ -123.490580438999984, 48.564532828000111 ], [ -123.490739114999982, 48.564536577000077 ], [ -123.490754021000015, 48.564256486 ], [ -123.490849535, 48.564258743000067 ], [ -123.490862629999953, 48.564012688000069 ], [ -123.490895685999973, 48.56401346800007 ], [ -123.490923256999949, 48.563495388000014 ], [ -123.492342735999941, 48.563528913000013 ], [ -123.492356111999925, 48.56327742200007 ], [ -123.492669762999952, 48.56328482800005 ], [ -123.492692822999985, 48.56285122900006 ], [ -123.492739173999922, 48.562852324000119 ], [ -123.492786366999951, 48.561964829000011 ], [ -123.493907349999972, 48.561991287000041 ], [ -123.493935648999937, 48.561458855000048 ], [ -123.494371731999962, 48.561469145000046 ], [ -123.494402962999956, 48.560881466000069 ], [ -123.497654367999957, 48.560958129000042 ], [ -123.497765041999983, 48.558872642000061 ], [ -123.502270520999943, 48.55897870900008 ], [ -123.50317017399999, 48.558999866000057 ], [ -123.503163685999965, 48.5591224160001 ], [ -123.502998092999931, 48.559199197000105 ], [ -123.502999387999964, 48.559397102000062 ], [ -123.502191485, 48.559877104000066 ], [ -123.502167390999958, 48.560218905000106 ], [ -123.502018588999974, 48.560364198000102 ], [ -123.500599514999976, 48.560666097000116 ], [ -123.500236300999973, 48.560865501000116 ], [ -123.499927988999957, 48.561218710000048 ], [ -123.498954589999983, 48.561546298000032 ], [ -123.498892299999909, 48.562068906000029 ], [ -123.498570779999937, 48.562518999000083 ], [ -123.497352702999976, 48.562678504000054 ], [ -123.49710978, 48.562778193000042 ], [ -123.496223483000037, 48.563708201000118 ], [ -123.496189294999979, 48.564256512000057 ], [ -123.495540801999937, 48.564565599000105 ], [ -123.494709001999979, 48.565468499000133 ], [ -123.494495405999928, 48.565803193000136 ], [ -123.494369395999968, 48.5666136090001 ], [ -123.49385771799993, 48.567046507000036 ], [ -123.493568007999926, 48.567831309000034 ], [ -123.493136194999948, 48.56813039700004 ], [ -123.49284339699993, 48.568590410000134 ], [ -123.492806019999975, 48.569040403000074 ], [ -123.492483503999949, 48.569373691000102 ], [ -123.492356499999943, 48.570085785000103 ], [ -123.491827093999916, 48.570141390000096 ], [ -123.491345213999963, 48.570719598000082 ], [ -123.491464923999956, 48.571807703000054 ], [ -123.491224000999949, 48.572311795000104 ], [ -123.491580501, 48.572687794000046 ], [ -123.491613683999958, 48.573183497000073 ], [ -123.491359182999958, 48.573499603000059 ], [ -123.490624117999985, 48.573204799000059 ], [ -123.489918392999954, 48.573182013000107 ], [ -123.48978611299999, 48.573569401000029 ], [ -123.489611602999958, 48.573721805000055 ], [ -123.488920102999955, 48.573644887000043 ], [ -123.488811382999955, 48.573761693000066 ], [ -123.489074198999958, 48.574228807000047 ], [ -123.489011289999965, 48.574741596000138 ], [ -123.488742991999985, 48.575022089000086 ], [ -123.488679587999982, 48.575372503000054 ], [ -123.488274507, 48.575688702000072 ], [ -123.487849002999951, 48.576410692000138 ], [ -123.487230507, 48.577142803000079 ], [ -123.48747584099999, 48.577348874000094 ], [ -123.487656005999952, 48.577500199000092 ], [ -123.487561106999948, 48.577671090000145 ], [ -123.486568705999929, 48.577352093000094 ], [ -123.485211277999923, 48.577124293000068 ], [ -123.48433871, 48.576506097000049 ], [ -123.483617101999968, 48.57623980400011 ], [ -123.482730601999933, 48.575775512000099 ], [ -123.481876400999923, 48.575734197000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.967767864319589", "sL_AssetLoss": "3856.71", "sL_BldgLoss": "3732.4", "sL_StrLoss": "3157", "sL_NStrLoss": "575.4", "sL_ContLoss": "124.31", "geom_point": "0101000020E6100000773BB13DE9ED5EC0EB6934777C384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.716516503000022, 48.443330784000068 ], [ -123.716588567999977, 48.441838553 ], [ -123.71509074, 48.441806252000084 ], [ -123.715264831999889, 48.438203412000064 ], [ -123.716823953999949, 48.438237035000071 ], [ -123.717423739999944, 48.440208892000093 ], [ -123.717941201, 48.44094347000005 ], [ -123.71902825599993, 48.442009804000122 ], [ -123.719861568999988, 48.442466500000144 ], [ -123.721375431999917, 48.442902042000128 ], [ -123.72191730099999, 48.443274462000076 ], [ -123.721908991999896, 48.443446901000065 ], [ -123.716516503000022, 48.443330784000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10314334", "BldgCostT": "7113334", "sL_LossRatio": "0.96325810020738", "sL_AssetLoss": "14885.73", "sL_BldgLoss": "14338.8", "sL_StrLoss": "12502.7", "sL_NStrLoss": "1836.1", "sL_ContLoss": "546.93", "geom_point": "0101000020E6100000CD3293C1F4DE5EC04CAFE6636B464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.477543967999964, 48.552170581000048 ], [ -123.477708288999949, 48.54909823500001 ], [ -123.477736603, 48.548568818000021 ], [ -123.479140273000027, 48.548602157000069 ], [ -123.479148552999959, 48.548447252000109 ], [ -123.481220039999968, 48.548496418000134 ], [ -123.481251678999911, 48.547903975000089 ], [ -123.481266716, 48.547622401000098 ], [ -123.486670514999915, 48.547750467000107 ], [ -123.486658330999916, 48.547979118000079 ], [ -123.488522577999973, 48.548023234 ], [ -123.488500774999935, 48.550223382000119 ], [ -123.488670452999926, 48.550337369000054 ], [ -123.490129105999927, 48.55029768 ], [ -123.491118121999989, 48.550270748000116 ], [ -123.491042665999927, 48.551689138000071 ], [ -123.489359794999956, 48.551649358000034 ], [ -123.488316778999931, 48.551624689000086 ], [ -123.488294777999954, 48.552037804000051 ], [ -123.487406352, 48.55201678400006 ], [ -123.487395252999974, 48.552225127000078 ], [ -123.484361603999943, 48.55215329400005 ], [ -123.484360329999973, 48.552177201000106 ], [ -123.48295654699993, 48.552143932000035 ], [ -123.48294828, 48.552298835000038 ], [ -123.477543967999964, 48.552170581000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47966666", "BldgCostT": "32816666", "sL_LossRatio": "0.946459193850437", "sL_AssetLoss": "83622.2", "sL_BldgLoss": "79145", "sL_StrLoss": "66560", "sL_NStrLoss": "12585", "sL_ContLoss": "4477.2", "geom_point": "0101000020E6100000BE59DEB048E35EC0B20F4F025D424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.554863093999955, 48.528805753000086 ], [ -123.554860144999935, 48.528535875000074 ], [ -123.554453827999936, 48.528537833000051 ], [ -123.554450880999951, 48.5282679540001 ], [ -123.554044566999963, 48.528269911000066 ], [ -123.554041621999914, 48.528000033000104 ], [ -123.553635307999969, 48.528001988 ], [ -123.553629424999912, 48.527462231000101 ], [ -123.553223114999952, 48.527464185000078 ], [ -123.55322017499995, 48.527194307000087 ], [ -123.552813868999976, 48.52719625800006 ], [ -123.55281307199995, 48.527123103000065 ], [ -123.551981944999966, 48.527103933000035 ], [ -123.551960037999933, 48.527526218000041 ], [ -123.548339134999964, 48.527442626000024 ], [ -123.54831141799994, 48.527976106000075 ], [ -123.546965830999937, 48.527945011000021 ], [ -123.546446303999929, 48.527540390000091 ], [ -123.54512539599996, 48.526989212000053 ], [ -123.544647676999915, 48.526685894000131 ], [ -123.544673786999937, 48.526496495000103 ], [ -123.544438699999944, 48.525993712000108 ], [ -123.544486394999936, 48.525552209000097 ], [ -123.545391804999966, 48.525170510000116 ], [ -123.545591187999932, 48.524926989000107 ], [ -123.545431057999977, 48.524303158000087 ], [ -123.545908506999979, 48.52431420200007 ], [ -123.545927191999937, 48.523954891000109 ], [ -123.545415638999941, 48.52394305900004 ], [ -123.545427195999963, 48.523605299000103 ], [ -123.544918308, 48.522752192000041 ], [ -123.54434500099994, 48.522332094000085 ], [ -123.544029392999974, 48.52196460900003 ], [ -123.543863090999977, 48.521695399000059 ], [ -123.543818199999976, 48.521228294000124 ], [ -123.54301208599999, 48.520576008 ], [ -123.542983704999955, 48.520351009000095 ], [ -123.543115018999941, 48.520043401000095 ], [ -123.542621201999935, 48.519542002000087 ], [ -123.542618291999972, 48.519173207000115 ], [ -123.542479195999988, 48.518886910000106 ], [ -123.542864178999963, 48.518227500000059 ], [ -123.543032093999926, 48.517327412000071 ], [ -123.542796797999983, 48.516914386000053 ], [ -123.542977821999926, 48.516095503000052 ], [ -123.542894799999928, 48.51585329200001 ], [ -123.543053613999987, 48.515672506000016 ], [ -123.543796486999938, 48.51538909000007 ], [ -123.54399760499993, 48.515235200000056 ], [ -123.543831089999941, 48.514822204000012 ], [ -123.543978386999981, 48.514624295000019 ], [ -123.544111223999948, 48.51458518099999 ], [ -123.544476416999899, 48.514477597000081 ], [ -123.544719, 48.514296697000063 ], [ -123.545069304, 48.514178491000052 ], [ -123.545935895999975, 48.514074506000092 ], [ -123.546434492999964, 48.513956312000062 ], [ -123.54644351499999, 48.513452106000116 ], [ -123.546698192999941, 48.513198607000035 ], [ -123.548742107999942, 48.51322568200009 ], [ -123.549375915999946, 48.5128895920001 ], [ -123.54943518099995, 48.512798555000096 ], [ -123.549534503999951, 48.512645986000102 ], [ -123.54954449799996, 48.512240115000075 ], [ -123.549388896999929, 48.511574987000103 ], [ -123.548878958999978, 48.51106668500011 ], [ -123.54886881699997, 48.511056601000071 ], [ -123.548741995999976, 48.510741915000082 ], [ -123.548780792999978, 48.510670797000081 ], [ -123.548827642999953, 48.510584850000058 ], [ -123.549007615999955, 48.510254798000084 ], [ -123.549030447999911, 48.510078348000086 ], [ -123.549133195999929, 48.509283504000109 ], [ -123.548968001999953, 48.509112588000065 ], [ -123.548331078999979, 48.508935995000051 ], [ -123.548072007999949, 48.508775008000029 ], [ -123.54787882, 48.508560001000056 ], [ -123.547863362000015, 48.508490012000081 ], [ -123.547823092999948, 48.508307905000059 ], [ -123.547946200999903, 48.508216831 ], [ -123.548697118999883, 48.507989735000137 ], [ -123.55402694499999, 48.507890632000127 ], [ -123.554878265999889, 48.50787477600003 ], [ -123.554817529999966, 48.509047405000025 ], [ -123.552967705999905, 48.509004748000116 ], [ -123.552940434999954, 48.509530860000048 ], [ -123.553421972999928, 48.509541967000061 ], [ -123.553439485999931, 48.509204053000133 ], [ -123.557099522000016, 48.509288408000032 ], [ -123.558839082999924, 48.50932845600002 ], [ -123.558652796000032, 48.512930599000086 ], [ -123.557684458999915, 48.512908309000132 ], [ -123.557666974999933, 48.513246222000078 ], [ -123.557349744999897, 48.513238918000091 ], [ -123.557207708999911, 48.515983525000046 ], [ -123.556258215999932, 48.515961658000087 ], [ -123.55315181499995, 48.515890058000089 ], [ -123.553017676999985, 48.518477480000051 ], [ -123.55568010099995, 48.518538853000074 ], [ -123.557510979999961, 48.518581018000084 ], [ -123.557498318999976, 48.51882566800009 ], [ -123.559323528999926, 48.518867670000127 ], [ -123.559137241999949, 48.52246975700006 ], [ -123.557346277999926, 48.522428543 ], [ -123.557182837999974, 48.525586096000083 ], [ -123.556278207999966, 48.525565267000111 ], [ -123.554039646999954, 48.525513691000064 ], [ -123.554018872999933, 48.525914479000079 ], [ -123.554023958999935, 48.526380765000035 ], [ -123.554430258999929, 48.526378808000032 ], [ -123.554436150999948, 48.526918564000063 ], [ -123.554842455999932, 48.526916608000121 ], [ -123.554845403999948, 48.527186486000062 ], [ -123.55525171, 48.527184527000131 ], [ -123.555254660999964, 48.527454405000107 ], [ -123.55647358799996, 48.527448518000028 ], [ -123.556476543999963, 48.52771839600004 ], [ -123.557289166999951, 48.52771446600007 ], [ -123.557298049999972, 48.528524099000073 ], [ -123.556079097999927, 48.528529993000113 ], [ -123.556082052999955, 48.528799872000079 ], [ -123.554863093999955, 48.528805753000086 ] ], [ [ -123.550719395, 48.521401273000073 ], [ -123.550717956999904, 48.521268671000044 ], [ -123.550550141999977, 48.52126947400005 ], [ -123.550543512, 48.521397213000036 ], [ -123.550719395, 48.521401273000073 ] ], [ [ -123.551978781999935, 48.520992740000089 ], [ -123.552060265999941, 48.519421787000077 ], [ -123.54756689499996, 48.519318019000067 ], [ -123.54772063199999, 48.516359201000029 ], [ -123.546863060999954, 48.516339374000054 ], [ -123.546795887999977, 48.517631775000055 ], [ -123.546341236999965, 48.517621261000059 ], [ -123.546322987999986, 48.517972287000134 ], [ -123.546012388999912, 48.517965103000087 ], [ -123.545934629999977, 48.51946059800008 ], [ -123.54702432000002, 48.519485797000108 ], [ -123.546978216999975, 48.520372809000094 ], [ -123.550592345999945, 48.520456304000078 ], [ -123.550592174999949, 48.520459595000069 ], [ -123.551927940999988, 48.520453199000031 ], [ -123.551933804999976, 48.520992955000146 ], [ -123.551978781999935, 48.520992740000089 ] ], [ [ -123.551809918999979, 48.515809607000079 ], [ -123.55184092599994, 48.515211801000135 ], [ -123.548163537999969, 48.515126877000064 ], [ -123.548132484999954, 48.515724681000094 ], [ -123.551809918999979, 48.515809607000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691249", "BldgCostT": "3924999", "sL_LossRatio": "0.961638612552958", "sL_AssetLoss": "6394.19", "sL_BldgLoss": "6148.9", "sL_StrLoss": "5321", "sL_NStrLoss": "827.9", "sL_ContLoss": "245.29", "geom_point": "0101000020E61000001512382B85E45EC09C8B7DD1B7424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.568550912999939, 48.523621259000066 ], [ -123.568625921999939, 48.52216535000008 ], [ -123.567368655999985, 48.522136533000086 ], [ -123.567486799999983, 48.519844395000099 ], [ -123.567503027999919, 48.519529551000112 ], [ -123.567554313999949, 48.518534429000084 ], [ -123.572955015, 48.51865811200004 ], [ -123.572880144999928, 48.520114033000013 ], [ -123.574137359999909, 48.520142785000083 ], [ -123.573976545999969, 48.523271243000096 ], [ -123.573952197999944, 48.523744890000081 ], [ -123.572573594999966, 48.523713361000084 ], [ -123.568550912999939, 48.523621259000066 ] ], [ [ -123.5725338, 48.520440697000083 ], [ -123.572624316999949, 48.520017703000057 ], [ -123.572208984999946, 48.519228700000085 ], [ -123.57205829199998, 48.519147507000078 ], [ -123.571773603999986, 48.519148987000101 ], [ -123.571503408999931, 48.519196001000083 ], [ -123.571142187999925, 48.519485100000061 ], [ -123.57106732299998, 48.520151604 ], [ -123.570865585999954, 48.520351003 ], [ -123.570862211999952, 48.521124302000061 ], [ -123.570984493999902, 48.521276709000091 ], [ -123.571120788999949, 48.521275312000057 ], [ -123.571389787999948, 48.52110441100006 ], [ -123.572057587999922, 48.521424897000095 ], [ -123.572436180999915, 48.521413496000022 ], [ -123.572691587999913, 48.521214101000055 ], [ -123.57270059699999, 48.520890801000107 ], [ -123.5725338, 48.520440697000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23876667", "BldgCostT": "16466667", "sL_LossRatio": "0.973348247557456", "sL_AssetLoss": "23574.81", "sL_BldgLoss": "22946.5", "sL_StrLoss": "20634", "sL_NStrLoss": "2312.5", "sL_ContLoss": "628.31", "geom_point": "0101000020E61000001110FE0BE5E35EC03180AE85F2434840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.556036464, 48.535974521000092 ], [ -123.556154315999919, 48.533699359000103 ], [ -123.553648869999947, 48.533641638000049 ], [ -123.5538356199999, 48.530039629000072 ], [ -123.554513790000016, 48.53005525800004 ], [ -123.554574354999943, 48.52888664300005 ], [ -123.559892884999925, 48.529009067000082 ], [ -123.559919035999926, 48.528503358000059 ], [ -123.559969325999958, 48.527530799000012 ], [ -123.558663164999956, 48.527500758 ], [ -123.557394073999959, 48.527471555000083 ], [ -123.557442986999888, 48.526526596000089 ], [ -123.55758051399999, 48.523869501000135 ], [ -123.559932793999934, 48.523923619000065 ], [ -123.5629817989999, 48.523993689000051 ], [ -123.562831455999941, 48.526904821000059 ], [ -123.565406684, 48.526963934000094 ], [ -123.565223498999941, 48.530514253000071 ], [ -123.5661987659999, 48.530536623000067 ], [ -123.566148160999944, 48.531517719000142 ], [ -123.568418846999961, 48.531569769000093 ], [ -123.568233203999966, 48.535171795000039 ], [ -123.564124652999936, 48.535077582000085 ], [ -123.564091189999942, 48.535725701000089 ], [ -123.562875480999963, 48.535719603000118 ], [ -123.56011318399996, 48.535705693000125 ], [ -123.556036464, 48.535974521000092 ] ], [ [ -123.562866903999975, 48.534345574000092 ], [ -123.562881304999948, 48.534066788000061 ], [ -123.561788418999981, 48.534041687000155 ], [ -123.561774009999937, 48.534320472000026 ], [ -123.562866903999975, 48.534345574000092 ] ], [ [ -123.560726327999987, 48.531774331000058 ], [ -123.560794050999945, 48.5304643300001 ], [ -123.560703908999969, 48.530462258000078 ], [ -123.559902109999939, 48.530443825000084 ], [ -123.559834363999983, 48.531753826000092 ], [ -123.560306684999944, 48.531764685000091 ], [ -123.560726327999987, 48.531774331000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.918275711680279", "sL_AssetLoss": "10088.8", "sL_BldgLoss": "9264.3", "sL_StrLoss": "7091", "sL_NStrLoss": "2173.3", "sL_ContLoss": "824.5", "geom_point": "0101000020E61000004D9431FC6FDD5EC0535BA804DD464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.458327649999916, 48.551213947000058 ], [ -123.46056877099997, 48.551161442000058 ], [ -123.461642929999925, 48.552152250000084 ], [ -123.462677108999955, 48.553014266000062 ], [ -123.46319967, 48.553368814000038 ], [ -123.463134422999985, 48.554581714000044 ], [ -123.462212827999977, 48.554559692000105 ], [ -123.462206991999921, 48.554668136000039 ], [ -123.462043164999912, 48.554664220000106 ], [ -123.462022103999971, 48.555055540000033 ], [ -123.459566580999962, 48.554996819000074 ], [ -123.45952484699994, 48.555771499000123 ], [ -123.459260171000011, 48.555765166000107 ], [ -123.459180412999984, 48.557245403000131 ], [ -123.458223750999977, 48.557222508000045 ], [ -123.458109846999918, 48.555964213000017 ], [ -123.457896101999935, 48.553602940000104 ], [ -123.457807771, 48.552627162000078 ], [ -123.457762180999936, 48.551218544000037 ], [ -123.458327649999916, 48.551213947000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.910440122824974", "sL_AssetLoss": "1954", "sL_BldgLoss": "1779", "sL_StrLoss": "1250", "sL_NStrLoss": "529", "sL_ContLoss": "175", "geom_point": "0101000020E61000005A5737A4B2DD5EC09599563380474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.46246959599992, 48.55916190100011 ], [ -123.462524174999956, 48.558147674000089 ], [ -123.465928392999956, 48.55822896600008 ], [ -123.465654988, 48.558609501000056 ], [ -123.465238190999941, 48.558971312000011 ], [ -123.464939285999975, 48.559071002000124 ], [ -123.464316492999941, 48.559109388000174 ], [ -123.464004181999954, 48.559016030000116 ], [ -123.463663894000021, 48.558914299000065 ], [ -123.46246959599992, 48.55916190100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.949200086419709", "sL_AssetLoss": "2823.43", "sL_BldgLoss": "2680", "sL_StrLoss": "2233", "sL_NStrLoss": "447", "sL_ContLoss": "143.43", "geom_point": "0101000020E61000000DD2F82A9EE45EC0DBCE942928374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.572960901999934, 48.428689732000038 ], [ -123.573693776999917, 48.428706529000088 ], [ -123.573508939999954, 48.432309187000051 ], [ -123.571016248999953, 48.432252036000101 ], [ -123.571014425999948, 48.4322875370001 ], [ -123.56939037399998, 48.432359008000013 ], [ -123.569809443999944, 48.431834993000102 ], [ -123.570184217999966, 48.431460933000089 ], [ -123.571628290999939, 48.430019757000068 ], [ -123.572960901999934, 48.428689732000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7491667", "BldgCostT": "5166667", "sL_LossRatio": "0.960625059876734", "sL_AssetLoss": "9394.3", "sL_BldgLoss": "9024.4", "sL_StrLoss": "7912", "sL_NStrLoss": "1112.4", "sL_ContLoss": "369.9", "geom_point": "0101000020E610000062F54F890EE55EC078A1D2EB433B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.577650412999958, 48.464990270000051 ], [ -123.577705330999919, 48.463918869000103 ], [ -123.575664195999977, 48.463929097000118 ], [ -123.57566114299999, 48.463659217000057 ], [ -123.575255345999935, 48.463661246000079 ], [ -123.575258395999967, 48.463931126 ], [ -123.574446795, 48.463935180000142 ], [ -123.574449840999961, 48.464205059000072 ], [ -123.572826629999952, 48.464213150000013 ], [ -123.57282584899994, 48.464143839000016 ], [ -123.572823591999935, 48.463943270000065 ], [ -123.572417790999936, 48.463945289000023 ], [ -123.572413481999959, 48.463562037000067 ], [ -123.572736875999979, 48.46350622100001 ], [ -123.573168313999986, 48.463251599000039 ], [ -123.573517470999931, 48.462880363000046 ], [ -123.573783501999969, 48.462275322000032 ], [ -123.573800656999964, 48.461977948000069 ], [ -123.573825023999945, 48.461555155000035 ], [ -123.573830213999884, 48.461446841000033 ], [ -123.573723120999915, 48.461116012000069 ], [ -123.573678259999923, 48.460970164000102 ], [ -123.575630626999938, 48.460960415000024 ], [ -123.575633676999971, 48.461230295000071 ], [ -123.57644523499998, 48.461226233000076 ], [ -123.576448289999945, 48.461496114000056 ], [ -123.577259852999987, 48.461492046000068 ], [ -123.57726291199999, 48.46176192500004 ], [ -123.577816029999923, 48.461759150000027 ], [ -123.577835061999906, 48.461387803000036 ], [ -123.57872912099999, 48.461408237000114 ], [ -123.578737333999982, 48.461247925000059 ], [ -123.584131518999925, 48.461371050000032 ], [ -123.583947349999946, 48.464973528000051 ], [ -123.583053220999915, 48.464953138000062 ], [ -123.583045021999922, 48.465113450000032 ], [ -123.577650412999958, 48.464990270000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.935086620747234", "sL_AssetLoss": "7665.6", "sL_BldgLoss": "7168", "sL_StrLoss": "5520", "sL_NStrLoss": "1648", "sL_ContLoss": "497.6", "geom_point": "0101000020E61000001B93B4D16FDF5EC0ACE8286ADD464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.489516695999939, 48.55176348 ], [ -123.493428818999973, 48.551855909000103 ], [ -123.493635013999935, 48.555467067000109 ], [ -123.49227966499997, 48.55543506700004 ], [ -123.488771892999964, 48.55535216700013 ], [ -123.488963681999948, 48.551750403000085 ], [ -123.489516695999939, 48.55176348 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.962521893387986", "sL_AssetLoss": "3557.01", "sL_BldgLoss": "3423.7", "sL_StrLoss": "2874", "sL_NStrLoss": "549.7", "sL_ContLoss": "133.31", "geom_point": "0101000020E6100000E4B6A60EECE35EC010DB489F773A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.561688047999951, 48.458213519000033 ], [ -123.558144683999899, 48.455710314000058 ], [ -123.558223838999936, 48.455625542000114 ], [ -123.558630448999949, 48.455018727000073 ], [ -123.559714061999969, 48.453481849000056 ], [ -123.559722225999948, 48.453481808000092 ], [ -123.559737057999911, 48.454831215000127 ], [ -123.560142785999915, 48.454829241000013 ], [ -123.560151692999952, 48.455638885000056 ], [ -123.560557427999981, 48.45563690800001 ], [ -123.560560399999986, 48.455906790000071 ], [ -123.560966137999941, 48.455904813000075 ], [ -123.560969110999949, 48.45617469400014 ], [ -123.561780589999927, 48.456170736000054 ], [ -123.561783567999939, 48.456440617000162 ], [ -123.562189307999986, 48.456438636000016 ], [ -123.562192289, 48.456708517000067 ], [ -123.562598031999983, 48.456706534000091 ], [ -123.562598266999956, 48.456727713000092 ], [ -123.562719432999984, 48.456730500000027 ], [ -123.562718242999964, 48.456753586000062 ], [ -123.563695998999961, 48.45677607500005 ], [ -123.563658113999949, 48.457511034000035 ], [ -123.564229978999919, 48.457508231000112 ], [ -123.564240629999972, 48.458469393000044 ], [ -123.564246185999977, 48.458970749000081 ], [ -123.563880814999933, 48.458944445000064 ], [ -123.562314783999923, 48.458529467000027 ], [ -123.561688047999951, 48.458213519000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "0.962305895609103", "sL_AssetLoss": "6815.92", "sL_BldgLoss": "6559", "sL_StrLoss": "5687", "sL_NStrLoss": "872", "sL_ContLoss": "256.92", "geom_point": "0101000020E6100000D8E90FE659E05EC01749BBD1C7424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.503371193999939, 48.520023022000032 ], [ -123.507463512999905, 48.520119240000042 ], [ -123.507273264999952, 48.523721227000095 ], [ -123.505403216999952, 48.523677278000065 ], [ -123.505392431999965, 48.52388130300006 ], [ -123.505312702999973, 48.523747806000138 ], [ -123.50484570799992, 48.523477981000084 ], [ -123.504462000999951, 48.523320204000107 ], [ -123.504205101999943, 48.523065391000067 ], [ -123.503883389999913, 48.522194910000053 ], [ -123.503699218999941, 48.521971503000039 ], [ -123.503129903999962, 48.521487482000111 ], [ -123.502935808999936, 48.521197097000048 ], [ -123.503008283999989, 48.521101683000069 ], [ -123.50310602199994, 48.520945594000118 ], [ -123.5031309929999, 48.520847849000042 ], [ -123.503145144999962, 48.520792496000141 ], [ -123.503184249999947, 48.520639374000027 ], [ -123.503344587999919, 48.520422773000071 ], [ -123.503377398999945, 48.520312423000071 ], [ -123.503410196999965, 48.52020210900011 ], [ -123.503371193999939, 48.520023022000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8132084", "BldgCostT": "5608334", "sL_LossRatio": "0.976953934086678", "sL_AssetLoss": "7628.2", "sL_BldgLoss": "7452.4", "sL_StrLoss": "6728", "sL_NStrLoss": "724.4", "sL_ContLoss": "175.8", "geom_point": "0101000020E6100000DD604D0A58E05EC0F6408E5A1F444840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.503770820999961, 48.530310073000088 ], [ -123.50807609799989, 48.5304112540001 ], [ -123.507885855999945, 48.53401318100002 ], [ -123.502483570999942, 48.533886191000057 ], [ -123.50257306599994, 48.532195505000111 ], [ -123.502622513999967, 48.532116622000046 ], [ -123.50265835, 48.532059462000049 ], [ -123.502651331, 48.532047488000096 ], [ -123.502586722999951, 48.53193749100005 ], [ -123.502609482999958, 48.531507489000028 ], [ -123.502903619999984, 48.531334939000075 ], [ -123.503128632999932, 48.531042700000107 ], [ -123.503385276999907, 48.53089456700009 ], [ -123.503486438999929, 48.53066974700009 ], [ -123.503770820999961, 48.530310073000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.971515172793128", "sL_AssetLoss": "3417.96", "sL_BldgLoss": "3320.6", "sL_StrLoss": "3011", "sL_NStrLoss": "309.6", "sL_ContLoss": "97.36", "geom_point": "0101000020E61000003062E11C5CE05EC0518A6F8B26424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.506835024999987, 48.514229104 ], [ -123.506981960999966, 48.51419582900013 ], [ -123.50693767199999, 48.515034363000041 ], [ -123.506823103999977, 48.515031670000063 ], [ -123.506639050999965, 48.518515859000054 ], [ -123.503303489999951, 48.518437416000118 ], [ -123.503322970999974, 48.518399491000011 ], [ -123.503800907999903, 48.518182607000092 ], [ -123.504187101999946, 48.517908613000031 ], [ -123.504416990999957, 48.517523612000062 ], [ -123.504396154999966, 48.517306989000041 ], [ -123.50435859199996, 48.516916294000104 ], [ -123.504471219999985, 48.516319395000039 ], [ -123.504704096999944, 48.515954295000029 ], [ -123.504810685999956, 48.515651206000058 ], [ -123.504977679999925, 48.515431494000076 ], [ -123.505245692999921, 48.515297990000143 ], [ -123.505659407999943, 48.515193312000058 ], [ -123.50575799799999, 48.515063608000112 ], [ -123.505909318999926, 48.514864605000142 ], [ -123.506086463999949, 48.514788622000026 ], [ -123.50651509299999, 48.514604815000084 ], [ -123.506707785999978, 48.514378511000054 ], [ -123.506835024999987, 48.514229104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31552083", "BldgCostT": "21288333", "sL_LossRatio": "0.966668433526931", "sL_AssetLoss": "33015.25", "sL_BldgLoss": "31914.8", "sL_StrLoss": "28098.7", "sL_NStrLoss": "3816.1", "sL_ContLoss": "1100.45", "geom_point": "0101000020E6100000A9B5300BEDDF5EC0BFAB506A50454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.494888943999939, 48.544690869000078 ], [ -123.49486393799999, 48.544465262000124 ], [ -123.494822930999973, 48.544095018000114 ], [ -123.494871507999946, 48.543910505000063 ], [ -123.494944902999947, 48.543631781000094 ], [ -123.494713708999925, 48.543324301000084 ], [ -123.494597265999957, 48.542537165000077 ], [ -123.494668005999969, 48.542427949000057 ], [ -123.494836763999942, 48.542442740000098 ], [ -123.494892820999951, 48.542447663000068 ], [ -123.495225392999927, 48.542730511000045 ], [ -123.495503446999976, 48.542851001000052 ], [ -123.495533451999947, 48.542864000000108 ], [ -123.495588025999922, 48.542873076000049 ], [ -123.495861903999952, 48.542918615000069 ], [ -123.495875253999941, 48.542916022000014 ], [ -123.496035464999963, 48.542884866000101 ], [ -123.496041045999931, 48.542863682000039 ], [ -123.496057481999969, 48.54280152700008 ], [ -123.495856683999961, 48.542685876000121 ], [ -123.495679475999978, 48.542278693000107 ], [ -123.495966781999982, 48.541401924000063 ], [ -123.495970306999979, 48.541054881000029 ], [ -123.495862525999911, 48.540792692000139 ], [ -123.496224648999956, 48.539983502000055 ], [ -123.496214082999984, 48.539680730000022 ], [ -123.496210708999968, 48.53958375200007 ], [ -123.496521745999956, 48.539201600000034 ], [ -123.496644406999977, 48.538898930000087 ], [ -123.496692915999958, 48.53877919300006 ], [ -123.496991151999964, 48.538433488000095 ], [ -123.497100740999883, 48.538306443000053 ], [ -123.497357352, 48.537803101000044 ], [ -123.497744977999972, 48.537429954000089 ], [ -123.49786552099998, 48.53714610400008 ], [ -123.498223644999925, 48.536895791000077 ], [ -123.498342093999952, 48.536753409000099 ], [ -123.498474209999983, 48.536443033000118 ], [ -123.498508890999986, 48.536361547000119 ], [ -123.498925622999977, 48.535949414000164 ], [ -123.498918260999957, 48.535782464000043 ], [ -123.498721542999945, 48.535592256000037 ], [ -123.503739072999934, 48.535710384000097 ], [ -123.503683910999925, 48.536752884000109 ], [ -123.50435521299994, 48.536768670000143 ], [ -123.504164659999915, 48.540370551000052 ], [ -123.501198998999897, 48.540300779000084 ], [ -123.501120617999973, 48.541780422000073 ], [ -123.49987647799999, 48.541751126000037 ], [ -123.499853489999978, 48.542184851000115 ], [ -123.499240539999974, 48.542170413000136 ], [ -123.499110884999965, 48.544615951000033 ], [ -123.49940686, 48.544622922000038 ], [ -123.499215897999974, 48.548224748000081 ], [ -123.493812009999928, 48.548097321000043 ], [ -123.493906390999939, 48.546321066000118 ], [ -123.494078936999955, 48.546311578000051 ], [ -123.494888437999975, 48.545789741000171 ], [ -123.494891760999948, 48.545640622000079 ], [ -123.494908846999948, 48.544870605 ], [ -123.494888943999939, 48.544690869000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.983997276132108", "sL_AssetLoss": "1762.2", "sL_BldgLoss": "1734", "sL_StrLoss": "1590", "sL_NStrLoss": "144", "sL_ContLoss": "28.2", "geom_point": "0101000020E610000089652B169CDF5EC067ECAE60D9464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.493428818999973, 48.551855909000103 ], [ -123.49436797599999, 48.551878076000023 ], [ -123.494176599999918, 48.555479850000069 ], [ -123.493635013999935, 48.555467067000109 ], [ -123.493428818999973, 48.551855909000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.995342869362734", "sL_AssetLoss": "420.86", "sL_BldgLoss": "418.9", "sL_StrLoss": "401", "sL_NStrLoss": "17.9", "sL_ContLoss": "1.96", "geom_point": "0101000020E610000020B54777E9E05EC0F247AC2061414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.513636268999946, 48.510374499000086 ], [ -123.514854792999969, 48.510369055000083 ], [ -123.514862996999938, 48.511178697000041 ], [ -123.513644449999916, 48.511184141000101 ], [ -123.513636268999946, 48.510374499000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "0.971811598801648", "sL_AssetLoss": "4569.61", "sL_BldgLoss": "4440.8", "sL_StrLoss": "4030", "sL_NStrLoss": "410.8", "sL_ContLoss": "128.81", "geom_point": "0101000020E61000005BE95A2066E05EC0503194347B434840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.50569092799999, 48.525285346000103 ], [ -123.508018799999959, 48.52534004000006 ], [ -123.507828572999969, 48.528941998000015 ], [ -123.504114359999974, 48.528854707000043 ], [ -123.50432977299999, 48.528401298000048 ], [ -123.504471424, 48.527436291000051 ], [ -123.504307217999965, 48.526656203000108 ], [ -123.504420205, 48.526308113000027 ], [ -123.50451160399993, 48.526198111000035 ], [ -123.504589192999958, 48.526104702000119 ], [ -123.504677217000037, 48.526062539000044 ], [ -123.50484579099998, 48.525981814000033 ], [ -123.50527938599997, 48.525886489000129 ], [ -123.50534657499999, 48.525839963000053 ], [ -123.505585407999973, 48.525674598000137 ], [ -123.505654737, 48.525490842000089 ], [ -123.505692293999957, 48.525391298000017 ], [ -123.50569092799999, 48.525285346000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.955866045686405", "sL_AssetLoss": "901.8", "sL_BldgLoss": "862", "sL_StrLoss": "755", "sL_NStrLoss": "107", "sL_ContLoss": "39.8", "geom_point": "0101000020E6100000EC8DF736FFE05EC01FA01C814F3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.514425098999979, 48.494841690000086 ], [ -123.514623291999897, 48.494747090000082 ], [ -123.514720285999942, 48.494740118000095 ], [ -123.514840294999885, 48.494731490000106 ], [ -123.515109108999951, 48.494758498000088 ], [ -123.515306274999929, 48.494733396000086 ], [ -123.515476820999936, 48.494626510000089 ], [ -123.515559176999957, 48.494471503000113 ], [ -123.515551101999975, 48.494369162000154 ], [ -123.515529203999975, 48.494092113000129 ], [ -123.51559750599999, 48.493948600000117 ], [ -123.515763636999949, 48.493872954000061 ], [ -123.515874393999965, 48.493822493000039 ], [ -123.516223279999934, 48.493771896000062 ], [ -123.516152935999969, 48.49510929800006 ], [ -123.51422268, 48.495064066000104 ], [ -123.514238300999978, 48.495053715000076 ], [ -123.514425098999979, 48.494841690000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.93715459224717", "sL_AssetLoss": "4586.97", "sL_BldgLoss": "4298.7", "sL_StrLoss": "3525", "sL_NStrLoss": "773.7", "sL_ContLoss": "288.27", "geom_point": "0101000020E6100000D8EB8266FCDF5EC0E74770E148444840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.498452166999954, 48.532927326000014 ], [ -123.498807046999943, 48.532651265000013 ], [ -123.498976990999921, 48.532429880000016 ], [ -123.499181698999962, 48.532394133000039 ], [ -123.499469772999959, 48.532444206000072 ], [ -123.499675113999956, 48.532550022000066 ], [ -123.499829758999979, 48.53274482000009 ], [ -123.500111326999956, 48.532841596000075 ], [ -123.500527941999962, 48.532838790000021 ], [ -123.50081934499994, 48.532622049000118 ], [ -123.501065217999937, 48.532524151000132 ], [ -123.501361924999912, 48.532500108000136 ], [ -123.501482621999941, 48.532490326000072 ], [ -123.501513355999975, 48.532487825 ], [ -123.501795596999912, 48.532428347000057 ], [ -123.502053594999936, 48.53237395900009 ], [ -123.50199, 48.533575126000088 ], [ -123.500630982, 48.533543130000098 ], [ -123.500608566999944, 48.533966259000167 ], [ -123.499466768999952, 48.533939364000076 ], [ -123.499412372999956, 48.534965685000095 ], [ -123.498441387999932, 48.53494280400011 ], [ -123.498174664, 48.53450449200011 ], [ -123.498234265999926, 48.534068631000061 ], [ -123.498096332999964, 48.533737190000089 ], [ -123.49809346799999, 48.533434186000093 ], [ -123.49833453799999, 48.53301881600008 ], [ -123.498452166999954, 48.532927326000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165337084", "BldgCostT": "111738334", "sL_LossRatio": "0.95679614783827", "sL_AssetLoss": "245248.27", "sL_BldgLoss": "234652.6", "sL_StrLoss": "202820.1", "sL_NStrLoss": "31832.5", "sL_ContLoss": "10595.67", "geom_point": "0101000020E6100000DAAA0B152FE15EC0FFC3F1D7BF414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.518583237999906, 48.530935523000061 ], [ -123.51862078399995, 48.53022158800006 ], [ -123.517385337999897, 48.530192693000089 ], [ -123.517489500999929, 48.52821288300008 ], [ -123.513667423999976, 48.528123402000048 ], [ -123.513668185999904, 48.528108961000122 ], [ -123.510514312999931, 48.528035019000043 ], [ -123.510704332000017, 48.524433052000056 ], [ -123.514589524999963, 48.524524126000088 ], [ -123.514684368999966, 48.522723244000062 ], [ -123.515022824999946, 48.522731171000061 ], [ -123.51504397799999, 48.522329452000086 ], [ -123.51756945299999, 48.522388568000075 ], [ -123.517615432, 48.521514434000053 ], [ -123.5158698, 48.521473579000073 ], [ -123.515887296999935, 48.521141162000056 ], [ -123.515533207000018, 48.521132870000052 ], [ -123.51556785599999, 48.520474685000067 ], [ -123.515276635999896, 48.520467866000068 ], [ -123.51530689399999, 48.519893151000097 ], [ -123.514166532000019, 48.519866439000054 ], [ -123.514356239999955, 48.516264416000084 ], [ -123.515228048999973, 48.516284838000026 ], [ -123.515241197999956, 48.516035073000076 ], [ -123.514912218999953, 48.516036545000134 ], [ -123.514909482999926, 48.515766665000086 ], [ -123.514503265999934, 48.515768481000109 ], [ -123.514492954, 48.51475023600009 ], [ -123.514492333999954, 48.514688959000118 ], [ -123.515710961999943, 48.514683506000026 ], [ -123.515711473999929, 48.514733933000045 ], [ -123.515721914999958, 48.514734177000072 ], [ -123.515752399999968, 48.51415494400009 ], [ -123.515974605999972, 48.514160146000116 ], [ -123.516019736999979, 48.513302548000084 ], [ -123.516509498999937, 48.513314015000013 ], [ -123.516506922999895, 48.513060582000051 ], [ -123.516913119999941, 48.51305875900006 ], [ -123.516910373999949, 48.512788879000048 ], [ -123.517722761999934, 48.51278522800007 ], [ -123.517720012999945, 48.512515347000054 ], [ -123.517837707999917, 48.51251481800012 ], [ -123.517882053999983, 48.51167148800004 ], [ -123.520010732999964, 48.511721275000113 ], [ -123.520062705000015, 48.510732006000069 ], [ -123.518637739999946, 48.510698683000022 ], [ -123.518641771999953, 48.51062194900004 ], [ -123.518513121999973, 48.510622527000137 ], [ -123.518515875999952, 48.510892408000139 ], [ -123.517297337999935, 48.510897890000138 ], [ -123.517305578999938, 48.511707532000123 ], [ -123.516899392999932, 48.511709357000086 ], [ -123.516904882999967, 48.512249118000035 ], [ -123.51649869299996, 48.512250941000069 ], [ -123.516501436999974, 48.512520821000052 ], [ -123.515192126999949, 48.512526688000044 ], [ -123.514876667999914, 48.512528100000097 ], [ -123.514868463999946, 48.511718459000086 ], [ -123.515274650999942, 48.511716641000071 ], [ -123.515271913999968, 48.511446760000062 ], [ -123.515678097999952, 48.511444941000043 ], [ -123.515672619999989, 48.510905180000087 ], [ -123.516078799999946, 48.510903360000057 ], [ -123.516076058999928, 48.510633480000067 ], [ -123.517294589999949, 48.510628009000108 ], [ -123.517291934999975, 48.51036713400002 ], [ -123.517044499999884, 48.51036134200006 ], [ -123.517056339999939, 48.510136271000114 ], [ -123.516482093999954, 48.510122828000057 ], [ -123.516540531999965, 48.509012039000027 ], [ -123.516465781, 48.509012375000047 ], [ -123.516463036999966, 48.508742494000067 ], [ -123.516056874999933, 48.508744315000058 ], [ -123.516054134999962, 48.508474435000124 ], [ -123.51564797599994, 48.508476255000097 ], [ -123.515646184999952, 48.508299691000026 ], [ -123.515352159999964, 48.508292804000035 ], [ -123.515352595999957, 48.508284525000143 ], [ -123.512037443999958, 48.50820681700003 ], [ -123.512076241999949, 48.507470643000048 ], [ -123.511175823999906, 48.507449518000051 ], [ -123.511064931999982, 48.509552878000108 ], [ -123.51017441599997, 48.509531979000037 ], [ -123.51011475599995, 48.510663098000109 ], [ -123.508851498999903, 48.510633439000067 ], [ -123.50875659799999, 48.51243162500009 ], [ -123.50857444499999, 48.512427348000131 ], [ -123.508543822999968, 48.513007528000031 ], [ -123.507046578999933, 48.512972354000063 ], [ -123.507025997999961, 48.513362037000022 ], [ -123.506841314999974, 48.513162598000108 ], [ -123.506293720999935, 48.5127828010001 ], [ -123.506151178999957, 48.512557590000036 ], [ -123.506034197999924, 48.512372793000111 ], [ -123.506135114999935, 48.511998299000062 ], [ -123.506518284999956, 48.511652005000016 ], [ -123.506799888999964, 48.510927401000139 ], [ -123.507052481999963, 48.510623192000111 ], [ -123.507113322999942, 48.510444306000132 ], [ -123.506990705999925, 48.510256587000107 ], [ -123.506673115999945, 48.510077814000091 ], [ -123.506390989999886, 48.509865584000046 ], [ -123.506398307, 48.509574495000052 ], [ -123.506537667999908, 48.50928306800003 ], [ -123.506864271, 48.508600064000056 ], [ -123.506969597999927, 48.508379801000011 ], [ -123.506999314, 48.508169601000084 ], [ -123.507032114999973, 48.507937599000051 ], [ -123.507026488999927, 48.507737407 ], [ -123.507141604999973, 48.507527298000092 ], [ -123.507242389999988, 48.507153694000074 ], [ -123.507477405999936, 48.506875197000106 ], [ -123.508130582999954, 48.506202595000033 ], [ -123.508348197999965, 48.505867779000035 ], [ -123.508518950999971, 48.505355675000061 ], [ -123.508634614999934, 48.505008740000115 ], [ -123.508661397999902, 48.504928399000121 ], [ -123.508669610999931, 48.504921145000026 ], [ -123.508922067999947, 48.504698676000025 ], [ -123.509240128999963, 48.504418390000133 ], [ -123.509443697999984, 48.504239005000088 ], [ -123.509632116999938, 48.50399820300008 ], [ -123.509784799999949, 48.503485083000051 ], [ -123.509777007999915, 48.50332530100011 ], [ -123.509659095999936, 48.503101695000069 ], [ -123.509652815999956, 48.502913995000071 ], [ -123.509739627999949, 48.502625702000046 ], [ -123.510116691999926, 48.502625492000085 ], [ -123.51016034, 48.502619312000064 ], [ -123.510542807999954, 48.502565209000053 ], [ -123.511311203999952, 48.502344307000037 ], [ -123.511567192999919, 48.502307918000035 ], [ -123.511816291999963, 48.502324617000056 ], [ -123.51235897499997, 48.502463495000043 ], [ -123.512690812999935, 48.502501104000103 ], [ -123.512904280999976, 48.50250069100013 ], [ -123.51305740399999, 48.502468187000062 ], [ -123.513509845999977, 48.502227879000046 ], [ -123.513642705999985, 48.502157310000037 ], [ -123.513570597999916, 48.501908592000056 ], [ -123.513544861999961, 48.501670509000078 ], [ -123.513516077999967, 48.501404199000021 ], [ -123.513448679999968, 48.501277512000115 ], [ -123.513291077999938, 48.500981507000091 ], [ -123.512770390999947, 48.500605015000119 ], [ -123.512564788999939, 48.500352191000104 ], [ -123.51243281699999, 48.500037191000061 ], [ -123.512408536999899, 48.499995121000055 ], [ -123.51200190499999, 48.499290388000048 ], [ -123.511935105, 48.499095 ], [ -123.511936993999981, 48.498930906000091 ], [ -123.512007986999933, 48.49878829700004 ], [ -123.51215181799995, 48.498664387000062 ], [ -123.512910047, 48.498682173000127 ], [ -123.512927783999928, 48.498345426000071 ], [ -123.518326030999916, 48.498471891000065 ], [ -123.51813669799999, 48.502074028000095 ], [ -123.516553895999891, 48.502036976000085 ], [ -123.516534318999973, 48.502409182000036 ], [ -123.518252568999941, 48.502449404000075 ], [ -123.518245979999975, 48.502574750000072 ], [ -123.523025309, 48.502686480000108 ], [ -123.523003699999947, 48.503098365000028 ], [ -123.52371020899993, 48.503114863000079 ], [ -123.523696160999961, 48.503382674000072 ], [ -123.524380300999979, 48.503398645000061 ], [ -123.524372735999933, 48.50354290600005 ], [ -123.525294677999952, 48.5035644230001 ], [ -123.525237543999978, 48.504654395000117 ], [ -123.525356747999979, 48.504653852000153 ], [ -123.525359536999986, 48.504923732000051 ], [ -123.52617179799995, 48.5049200220001 ], [ -123.526182974, 48.505999543 ], [ -123.525166788999911, 48.50600418300008 ], [ -123.525123959999974, 48.506821175000077 ], [ -123.525516162999921, 48.506830326000056 ], [ -123.525446358999957, 48.508162053000063 ], [ -123.526611480999946, 48.508156729000078 ], [ -123.526594704999937, 48.506537446000053 ], [ -123.52700084899999, 48.506535588000133 ], [ -123.526995252999953, 48.505995827000042 ], [ -123.527401390999913, 48.505993968 ], [ -123.527381790999982, 48.504104805000019 ], [ -123.526975665999899, 48.504106665000037 ], [ -123.526964475999961, 48.50302714300004 ], [ -123.527370590999936, 48.503025284000024 ], [ -123.527367791999893, 48.50275540300008 ], [ -123.528586130999955, 48.502749815000108 ], [ -123.528600163999926, 48.504099216000093 ], [ -123.529006286999959, 48.504097351000091 ], [ -123.529017521999947, 48.50517687300006 ], [ -123.52942365499996, 48.505175004000066 ], [ -123.529420844999919, 48.504905125000043 ], [ -123.530639234999953, 48.504899515000083 ], [ -123.530636417999943, 48.504629634000025 ], [ -123.531042545999966, 48.504627761000123 ], [ -123.531039725999989, 48.504357882000079 ], [ -123.532258103999936, 48.504352254000011 ], [ -123.532266582999981, 48.505161894000054 ], [ -123.531860449999911, 48.505163772000053 ], [ -123.53186609699999, 48.505703532000098 ], [ -123.530647688, 48.505709156000087 ], [ -123.530650504999954, 48.50597903500006 ], [ -123.529838226999956, 48.505982777000078 ], [ -123.529841038999976, 48.506252657000104 ], [ -123.52943489799992, 48.506254526000092 ], [ -123.52943770899995, 48.506524406000025 ], [ -123.528625423999927, 48.506528139000046 ], [ -123.528628229999981, 48.506798020000105 ], [ -123.528222084999939, 48.506799883000106 ], [ -123.528241717999961, 48.508689044000043 ], [ -123.528647878999948, 48.508687180000074 ], [ -123.528659109000017, 48.509766701000054 ], [ -123.527440599, 48.509772290000072 ], [ -123.527437798999955, 48.509502410000067 ], [ -123.527034556999979, 48.509504257000089 ], [ -123.526905390999985, 48.51196978200003 ], [ -123.525641448, 48.511940307000032 ], [ -123.525548233, 48.513718509000121 ], [ -123.523183947999968, 48.513663335000096 ], [ -123.523141550999952, 48.514471299000043 ], [ -123.523347392999952, 48.514476105000035 ], [ -123.523345217999974, 48.514517566000052 ], [ -123.524155667999935, 48.514536484000075 ], [ -123.523966714999972, 48.518138535000098 ], [ -123.522652061999906, 48.518107845000081 ], [ -123.522660936, 48.518970443000086 ], [ -123.521408498999946, 48.518976124000091 ], [ -123.521347667999976, 48.520134413000108 ], [ -123.525445555999937, 48.520230067000035 ], [ -123.525256679999984, 48.52383208600007 ], [ -123.522904198999967, 48.523777193000086 ], [ -123.522844644999978, 48.524911741000096 ], [ -123.522212401, 48.524896980000058 ], [ -123.522133797999956, 48.526393954000085 ], [ -123.5207831, 48.526362406000082 ], [ -123.520767183999979, 48.52666535900007 ], [ -123.522976331999971, 48.526716950000043 ], [ -123.522938854999936, 48.527430891000101 ], [ -123.524174231999936, 48.527459721000071 ], [ -123.523985228999919, 48.531061694000094 ], [ -123.518583237999906, 48.530935523000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30039833", "BldgCostT": "20453333", "sL_LossRatio": "0.972177934125791", "sL_AssetLoss": "35249", "sL_BldgLoss": "34268.3", "sL_StrLoss": "31094", "sL_NStrLoss": "3174.3", "sL_ContLoss": "980.7", "geom_point": "0101000020E61000006F56AFE8B7E15EC071AE59157E3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.530470811999962, 48.49992332600003 ], [ -123.530567365999971, 48.498077148000057 ], [ -123.527584918999963, 48.498007656000084 ], [ -123.52759998199997, 48.497719946000053 ], [ -123.522967271999974, 48.497611836000118 ], [ -123.52297980099992, 48.497372992000123 ], [ -123.519803575, 48.497298752000063 ], [ -123.519895472999977, 48.495549045000075 ], [ -123.519626471999914, 48.495542753000024 ], [ -123.519685569999979, 48.494417598000041 ], [ -123.518614101999944, 48.494392531000102 ], [ -123.51864963, 48.493716408000083 ], [ -123.518989897999973, 48.493618688000026 ], [ -123.519309005999915, 48.493305088000035 ], [ -123.52038844499999, 48.49272698200005 ], [ -123.520490084999949, 48.492672569000071 ], [ -123.520807597, 48.492502498000142 ], [ -123.521260113000011, 48.49235993000007 ], [ -123.521928927999966, 48.492149230000159 ], [ -123.522520707999917, 48.491962783000112 ], [ -123.522686097999923, 48.491977502000097 ], [ -123.522800899999979, 48.492029808000105 ], [ -123.523144396999925, 48.492331713000041 ], [ -123.523503100999974, 48.493030559 ], [ -123.523694787999958, 48.493404013000017 ], [ -123.523800218999938, 48.493531378000107 ], [ -123.523829516, 48.493566790000031 ], [ -123.52399241099999, 48.493673840000049 ], [ -123.524004490999943, 48.493681794000096 ], [ -123.524177002999934, 48.493741684000064 ], [ -123.524419397999921, 48.493783400000062 ], [ -123.52495219199993, 48.493800405000108 ], [ -123.525041049999956, 48.49378868400003 ], [ -123.525632385000023, 48.493710797000062 ], [ -123.526293484999911, 48.49366861699999 ], [ -123.526336001999979, 48.493665897000085 ], [ -123.526629857999978, 48.493673555000079 ], [ -123.526778468999964, 48.493677402000117 ], [ -123.526970092999932, 48.493682408000062 ], [ -123.527324211999897, 48.493628490000049 ], [ -123.5275827, 48.493620114000052 ], [ -123.528585997000036, 48.493940996000141 ], [ -123.528787185999974, 48.493969189000069 ], [ -123.528982701999936, 48.493951188000075 ], [ -123.529235719999974, 48.493841704000054 ], [ -123.529467795999921, 48.493795700000099 ], [ -123.529557030999982, 48.493808442000045 ], [ -123.529836508999949, 48.493848396000125 ], [ -123.530112105999962, 48.493926990000105 ], [ -123.530387097999949, 48.494042487000108 ], [ -123.530428455999981, 48.494073631000035 ], [ -123.530689992999939, 48.494270512000099 ], [ -123.53091626399997, 48.494645406000124 ], [ -123.531171650999951, 48.494722576000065 ], [ -123.531473998999957, 48.494702578000059 ], [ -123.531807115999939, 48.494611140000124 ], [ -123.532229764999926, 48.494382932000036 ], [ -123.532502106999956, 48.494290097 ], [ -123.533215981999945, 48.497189315000057 ], [ -123.533450984999945, 48.49814370800005 ], [ -123.533606200999941, 48.498774038000107 ], [ -123.534969572999927, 48.498619078000033 ], [ -123.535949717999983, 48.498507642000092 ], [ -123.535869286999969, 48.500048898000095 ], [ -123.530470811999962, 48.49992332600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26637750", "BldgCostT": "16425000", "sL_LossRatio": "0.940390645168567", "sL_AssetLoss": "19949.05", "sL_BldgLoss": "18759.9", "sL_StrLoss": "15033.9", "sL_NStrLoss": "3726", "sL_ContLoss": "1189.15", "geom_point": "0101000020E6100000C77B9B1F3BDF5EC040580032F8414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.481081104999987, 48.517346266000075 ], [ -123.480796031999915, 48.516760646000172 ], [ -123.480663938999953, 48.516626781000078 ], [ -123.480585595999969, 48.516578429000027 ], [ -123.480428396999955, 48.516481418000154 ], [ -123.479911581999886, 48.516033669000066 ], [ -123.479724628, 48.515874502000024 ], [ -123.4793646899999, 48.515568053000038 ], [ -123.479298663999927, 48.515388648000062 ], [ -123.479004676999949, 48.514589340000043 ], [ -123.478814191999902, 48.513600217000054 ], [ -123.478815500999957, 48.513596217000078 ], [ -123.483213925999976, 48.513700660000033 ], [ -123.483175473999935, 48.514421796000057 ], [ -123.483371516999981, 48.514426446000101 ], [ -123.483381174000016, 48.514245349000099 ], [ -123.488781159, 48.514373315 ], [ -123.488771855999914, 48.514548180000084 ], [ -123.489060036999931, 48.514555001000041 ], [ -123.48907034299999, 48.514361289000128 ], [ -123.489877880999984, 48.51438039900011 ], [ -123.489881013999948, 48.514321509000105 ], [ -123.491412899999972, 48.514357745000098 ], [ -123.491470906999965, 48.513266245000075 ], [ -123.49687080299995, 48.513393799000085 ], [ -123.496812765999948, 48.514488211000184 ], [ -123.497189256999917, 48.514497094000021 ], [ -123.497104480999923, 48.516095854000049 ], [ -123.497032, 48.51610089600014 ], [ -123.496688114999941, 48.516059401000092 ], [ -123.496424198999961, 48.516066712000026 ], [ -123.495780179999912, 48.516229087000134 ], [ -123.494958200999946, 48.516308887000022 ], [ -123.494673184999968, 48.516405792000107 ], [ -123.494606696999952, 48.516454130000106 ], [ -123.494216310999917, 48.516737689000117 ], [ -123.493906791999976, 48.516888097000027 ], [ -123.493814988999929, 48.516905179000091 ], [ -123.49347681199994, 48.516968084000027 ], [ -123.493030517999941, 48.516971112000114 ], [ -123.49289481699999, 48.516929994000073 ], [ -123.49230538099998, 48.516626703000043 ], [ -123.492063116999972, 48.516555993000068 ], [ -123.491826194999959, 48.516562195000134 ], [ -123.491738187999943, 48.516581289000079 ], [ -123.491582797, 48.516614991000012 ], [ -123.491102690999966, 48.5167620550001 ], [ -123.49087238299991, 48.516832599000054 ], [ -123.490198196000023, 48.517105209000086 ], [ -123.489887509999974, 48.51730430700011 ], [ -123.489706121999959, 48.517334306000073 ], [ -123.48959209899999, 48.517318107000058 ], [ -123.489292884999927, 48.517162122000101 ], [ -123.489126491999954, 48.517075404000096 ], [ -123.489052584, 48.517071324000057 ], [ -123.48864019, 48.517048572000121 ], [ -123.487943163999915, 48.51701011100009 ], [ -123.487145350999967, 48.516966108000112 ], [ -123.48626096699999, 48.516917299000127 ], [ -123.48623965799996, 48.516923901000077 ], [ -123.485800590999972, 48.517059698000097 ], [ -123.485758543999964, 48.517058224000074 ], [ -123.485490136, 48.517048770000052 ], [ -123.484934386999967, 48.517029212000082 ], [ -123.484634202999956, 48.516955410000058 ], [ -123.484405406999954, 48.516936489000088 ], [ -123.484256618999922, 48.516947082000065 ], [ -123.484167879, 48.516953391000072 ], [ -123.483994909, 48.517029505000096 ], [ -123.483981885999967, 48.517038779000131 ], [ -123.482762369999989, 48.517909088000067 ], [ -123.482500896999952, 48.518047202000027 ], [ -123.482245672999952, 48.518068200000094 ], [ -123.482025875999938, 48.518033192000082 ], [ -123.481768793999947, 48.517910788000023 ], [ -123.481360903999956, 48.517625204000069 ], [ -123.481081104999987, 48.517346266000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.978143035144776", "sL_AssetLoss": "2223.09", "sL_BldgLoss": "2174.5", "sL_StrLoss": "2000", "sL_NStrLoss": "174.5", "sL_ContLoss": "48.59", "geom_point": "0101000020E6100000A1427DE4B9DE5EC0F881719177414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.478582059999937, 48.509741298000073 ], [ -123.481343261999925, 48.509806898000107 ], [ -123.481151062999942, 48.513408900000066 ], [ -123.478903289999934, 48.513355505000092 ], [ -123.478908879999921, 48.513346208000044 ], [ -123.479264869999938, 48.512754365000063 ], [ -123.479334443999932, 48.512539629000109 ], [ -123.47935905099996, 48.512256203000064 ], [ -123.479345367999926, 48.512150536000021 ], [ -123.479323638999972, 48.511983059000059 ], [ -123.479229441999934, 48.511772528000087 ], [ -123.478825039999961, 48.51144825100009 ], [ -123.47875210799999, 48.511346433000071 ], [ -123.478738959999944, 48.511252068000019 ], [ -123.47872766699993, 48.511170951000068 ], [ -123.478767959, 48.510416319000072 ], [ -123.478740513999966, 48.510247054000011 ], [ -123.478582059999937, 48.509741298000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40434583", "BldgCostT": "27358333", "sL_LossRatio": "0.965777037617719", "sL_AssetLoss": "47785.46", "sL_BldgLoss": "46150.1", "sL_StrLoss": "41726", "sL_NStrLoss": "4424.1", "sL_ContLoss": "1635.36", "geom_point": "0101000020E6100000898A400E2DE05EC0319413EDAA404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.503295971999975, 48.51000621600005 ], [ -123.503313871999978, 48.509667782000072 ], [ -123.501111657999971, 48.509615925000034 ], [ -123.501157840999923, 48.508743480000142 ], [ -123.500134216999925, 48.508719360000057 ], [ -123.500106680999977, 48.509239348000044 ], [ -123.494707251999941, 48.509111958000069 ], [ -123.494780849999955, 48.507725119000021 ], [ -123.494371621999917, 48.507715453000117 ], [ -123.49456279099995, 48.504113392000107 ], [ -123.495232704999978, 48.504129215000056 ], [ -123.495352584000017, 48.501869505000087 ], [ -123.50075118699999, 48.501996865000081 ], [ -123.500742656999989, 48.502158010000052 ], [ -123.501906653999981, 48.502185434000054 ], [ -123.501880333999978, 48.502682896000124 ], [ -123.50363695599998, 48.502724258000079 ], [ -123.503758831999932, 48.500419107000077 ], [ -123.509157291999912, 48.500546039000049 ], [ -123.509124453999988, 48.501168499000116 ], [ -123.509259481999962, 48.501171671000108 ], [ -123.509361575999975, 48.49923624000008 ], [ -123.509510740999986, 48.499239744000128 ], [ -123.50953539399994, 48.498772343000098 ], [ -123.510804233999977, 48.498802134000115 ], [ -123.510813152999958, 48.498632974000067 ], [ -123.51215181799995, 48.498664387000062 ], [ -123.512007986999933, 48.49878829700004 ], [ -123.511936993999981, 48.498930906000091 ], [ -123.511935105, 48.499095 ], [ -123.51200190499999, 48.499290388000048 ], [ -123.512408536999899, 48.499995121000055 ], [ -123.51243281699999, 48.500037191000061 ], [ -123.512564788999939, 48.500352191000104 ], [ -123.512770390999947, 48.500605015000119 ], [ -123.513291077999938, 48.500981507000091 ], [ -123.513448679999968, 48.501277512000115 ], [ -123.513516077999967, 48.501404199000021 ], [ -123.513544861999961, 48.501670509000078 ], [ -123.513570597999916, 48.501908592000056 ], [ -123.513642705999985, 48.502157310000037 ], [ -123.513509845999977, 48.502227879000046 ], [ -123.51305740399999, 48.502468187000062 ], [ -123.512904280999976, 48.50250069100013 ], [ -123.512690812999935, 48.502501104000103 ], [ -123.51235897499997, 48.502463495000043 ], [ -123.511816291999963, 48.502324617000056 ], [ -123.511567192999919, 48.502307918000035 ], [ -123.511311203999952, 48.502344307000037 ], [ -123.510542807999954, 48.502565209000053 ], [ -123.51016034, 48.502619312000064 ], [ -123.510116691999926, 48.502625492000085 ], [ -123.509739627999949, 48.502625702000046 ], [ -123.509652815999956, 48.502913995000071 ], [ -123.509659095999936, 48.503101695000069 ], [ -123.509777007999915, 48.50332530100011 ], [ -123.509784799999949, 48.503485083000051 ], [ -123.509632116999938, 48.50399820300008 ], [ -123.509443697999984, 48.504239005000088 ], [ -123.509240128999963, 48.504418390000133 ], [ -123.508922067999947, 48.504698676000025 ], [ -123.508669610999931, 48.504921145000026 ], [ -123.508661397999902, 48.504928399000121 ], [ -123.508634614999934, 48.505008740000115 ], [ -123.508518950999971, 48.505355675000061 ], [ -123.508348197999965, 48.505867779000035 ], [ -123.508130582999954, 48.506202595000033 ], [ -123.507477405999936, 48.506875197000106 ], [ -123.507242389999988, 48.507153694000074 ], [ -123.507141604999973, 48.507527298000092 ], [ -123.507026488999927, 48.507737407 ], [ -123.506257895999951, 48.508011387000117 ], [ -123.50604489199992, 48.508229993000015 ], [ -123.50571540599995, 48.508506294000071 ], [ -123.505166740999954, 48.508843603000074 ], [ -123.504832585999949, 48.50904901100003 ], [ -123.50401021, 48.509699583000021 ], [ -123.503470994999958, 48.510312600000105 ], [ -123.502533207999974, 48.510870288000085 ], [ -123.502016408999978, 48.511364902 ], [ -123.501901022999945, 48.511493127000094 ], [ -123.501406079999953, 48.512042993000129 ], [ -123.500709032999936, 48.512763004000092 ], [ -123.500666251999974, 48.512807235000061 ], [ -123.500595401999959, 48.512880381000038 ], [ -123.500256779999944, 48.513327690000033 ], [ -123.49944711099999, 48.514068691000013 ], [ -123.499295107999899, 48.514308595000074 ], [ -123.499187094999954, 48.514817308000055 ], [ -123.499028295999921, 48.51500740200003 ], [ -123.498826500999925, 48.515117994000065 ], [ -123.498735583999974, 48.515128134000044 ], [ -123.498925007999958, 48.511553323000101 ], [ -123.499757974999909, 48.511572959000105 ], [ -123.499845261999951, 48.509924940000126 ], [ -123.503295971999975, 48.51000621600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37768417", "BldgCostT": "25311667", "sL_LossRatio": "0.958664862279615", "sL_AssetLoss": "36799.2", "sL_BldgLoss": "35278.1", "sL_StrLoss": "31250.2", "sL_NStrLoss": "4027.9", "sL_ContLoss": "1521.1", "geom_point": "0101000020E6100000125B072889E05EC087AA984ABF3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.508051839999922, 48.495657448000074 ], [ -123.508070381999957, 48.495306086000021 ], [ -123.50794525699996, 48.495303146000033 ], [ -123.507965477999932, 48.494919972000091 ], [ -123.507815373999932, 48.494916444000054 ], [ -123.507856801999935, 48.494131466000077 ], [ -123.506535875999958, 48.494100412000172 ], [ -123.506684157999956, 48.491291962000091 ], [ -123.506578721, 48.491289482000127 ], [ -123.506556870999987, 48.491703344000015 ], [ -123.501159426999934, 48.491576279000078 ], [ -123.501289913999983, 48.489110069000027 ], [ -123.499388409999966, 48.489065239000048 ], [ -123.499579120999925, 48.48546305700004 ], [ -123.50497586199999, 48.485590204000133 ], [ -123.504950703999981, 48.486066452000031 ], [ -123.508984146999978, 48.486161301000038 ], [ -123.508953513999984, 48.486742125000042 ], [ -123.510345356999977, 48.486774819000075 ], [ -123.512658151999958, 48.486829106000123 ], [ -123.512638489999972, 48.487202459000059 ], [ -123.515051488999944, 48.487259044000048 ], [ -123.51488729299993, 48.4903796460001 ], [ -123.514943176999964, 48.490380956000109 ], [ -123.51488773799997, 48.491434548000086 ], [ -123.515612915999952, 48.491451542000043 ], [ -123.515610893999977, 48.491489985000065 ], [ -123.516342392999917, 48.49150712200003 ], [ -123.516223279999934, 48.493771896000062 ], [ -123.515874393999965, 48.493822493000039 ], [ -123.515763636999949, 48.493872954000061 ], [ -123.51559750599999, 48.493948600000117 ], [ -123.515529203999975, 48.494092113000129 ], [ -123.515551101999975, 48.494369162000154 ], [ -123.515559176999957, 48.494471503000113 ], [ -123.515476820999936, 48.494626510000089 ], [ -123.515306274999929, 48.494733396000086 ], [ -123.515109108999951, 48.494758498000088 ], [ -123.514840294999885, 48.494731490000106 ], [ -123.514720285999942, 48.494740118000095 ], [ -123.514623291999897, 48.494747090000082 ], [ -123.514425098999979, 48.494841690000086 ], [ -123.514238300999978, 48.495053715000076 ], [ -123.51422268, 48.495064066000104 ], [ -123.513488590999913, 48.495046855000041 ], [ -123.513473440000013, 48.495334612000079 ], [ -123.512692192999964, 48.495497117000113 ], [ -123.512822444999969, 48.495769450000125 ], [ -123.508051839999922, 48.495657448000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36204833", "BldgCostT": "24233333", "sL_LossRatio": "0.970239610461663", "sL_AssetLoss": "30641.4", "sL_BldgLoss": "29729.5", "sL_StrLoss": "26708.6", "sL_NStrLoss": "3020.9", "sL_ContLoss": "911.9", "geom_point": "0101000020E610000095BE4A1DA8E05EC0B2F69053683D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.506977886999962, 48.485743649000099 ], [ -123.507006940999943, 48.485193188000025 ], [ -123.50585617899999, 48.485166122000045 ], [ -123.505934168999929, 48.483689159000058 ], [ -123.502811406999939, 48.483702843000088 ], [ -123.502819410999962, 48.484512490000071 ], [ -123.501195531999954, 48.484519572000124 ], [ -123.501187555999977, 48.483709925000028 ], [ -123.501593518999982, 48.48370815600002 ], [ -123.501590857999972, 48.483438275000061 ], [ -123.499967014999953, 48.483445339000099 ], [ -123.499956403999946, 48.482365809000065 ], [ -123.500362357999904, 48.482364045000075 ], [ -123.50035970299993, 48.482094163000113 ], [ -123.503607301, 48.482079999000064 ], [ -123.503609974999932, 48.482349882000037 ], [ -123.504827830999915, 48.482344546000078 ], [ -123.504833187, 48.48288431100007 ], [ -123.50597693, 48.482879288000028 ], [ -123.506046381, 48.481563904000041 ], [ -123.506850088999954, 48.481582810000091 ], [ -123.506841455999975, 48.480716332000036 ], [ -123.507653333999954, 48.480712753000049 ], [ -123.507650640999955, 48.480442871000037 ], [ -123.508083898000024, 48.480440960000053 ], [ -123.508148095999942, 48.479223973000025 ], [ -123.506701663999962, 48.479189960000106 ], [ -123.506717129999927, 48.478896917000057 ], [ -123.50430699599994, 48.478840199000068 ], [ -123.504321362999974, 48.478568248 ], [ -123.502354808999954, 48.47857684800011 ], [ -123.502352141999921, 48.478306965000066 ], [ -123.501946222999891, 48.478308736000081 ], [ -123.501935572999969, 48.477229206000054 ], [ -123.501123751999927, 48.47723274200014 ], [ -123.501134383999954, 48.478312273 ], [ -123.500728461999927, 48.478314041000019 ], [ -123.500731119999926, 48.478583923000045 ], [ -123.49951335199998, 48.478589214000046 ], [ -123.499510702999913, 48.478319332000083 ], [ -123.498698860999966, 48.478322852000105 ], [ -123.498680345999944, 48.476433672000013 ], [ -123.499898060999968, 48.476428390000073 ], [ -123.499903363999948, 48.476968155000044 ], [ -123.50112109199992, 48.476962859000061 ], [ -123.501107801999922, 48.475613446000118 ], [ -123.499890108, 48.475618741000119 ], [ -123.499889346999936, 48.475541400000068 ], [ -123.499897045999901, 48.47554153500009 ], [ -123.501309085999949, 48.475566270000073 ], [ -123.503535715999973, 48.475581632000036 ], [ -123.50329228699999, 48.477450097000052 ], [ -123.510479833999966, 48.477092441000124 ], [ -123.510488585999923, 48.476862073000099 ], [ -123.510467882999933, 48.476760539000054 ], [ -123.51042206799994, 48.476535895000097 ], [ -123.510224201999947, 48.476317546000111 ], [ -123.510151512999954, 48.476256432000064 ], [ -123.510051025999971, 48.476171978000089 ], [ -123.509810374999958, 48.475969688000063 ], [ -123.509383905000021, 48.475476368000074 ], [ -123.509377490999938, 48.475465613000026 ], [ -123.509940642999979, 48.475505384000016 ], [ -123.510623757999937, 48.475553626000114 ], [ -123.510667053999939, 48.475547534000086 ], [ -123.513095904999943, 48.475208258000116 ], [ -123.513187057999943, 48.47520133900008 ], [ -123.515832371999949, 48.475000143000024 ], [ -123.515950253999904, 48.474991182000018 ], [ -123.519043710999981, 48.474977986000049 ], [ -123.519192893999943, 48.474996 ], [ -123.519924953999947, 48.475084420000016 ], [ -123.520062904999961, 48.475101092000067 ], [ -123.521373336999957, 48.475048283000078 ], [ -123.521545877999984, 48.475041544000142 ], [ -123.522643066999962, 48.47499866000004 ], [ -123.52437824, 48.474868966000024 ], [ -123.524609014999967, 48.475080003000102 ], [ -123.524693131999953, 48.47515694300008 ], [ -123.524692217999984, 48.475502664000089 ], [ -123.52468373799995, 48.478701073000096 ], [ -123.525701323999968, 48.478761066000111 ], [ -123.525902435999953, 48.47887982900005 ], [ -123.525903796999984, 48.479011446000129 ], [ -123.52468602499998, 48.479017002000091 ], [ -123.524677674999936, 48.478207358000105 ], [ -123.524271756999923, 48.478209207000049 ], [ -123.524266195999971, 48.477669444000064 ], [ -123.523860282999948, 48.477671292000117 ], [ -123.523843611999922, 48.476052001000035 ], [ -123.523031810999925, 48.476055694000131 ], [ -123.523040131999977, 48.476865339000014 ], [ -123.521416503999959, 48.476872705000041 ], [ -123.52140267599998, 48.475523296000084 ], [ -123.518561399999953, 48.475536132000109 ], [ -123.518558648999942, 48.475266251000122 ], [ -123.51815275499996, 48.475268079000081 ], [ -123.518150005999985, 48.474998196000094 ], [ -123.516932329, 48.475003672000057 ], [ -123.516935070999978, 48.475273554000054 ], [ -123.516529175999949, 48.475275377000074 ], [ -123.516531914999987, 48.475545258000103 ], [ -123.516126018999941, 48.47554707900008 ], [ -123.516128755999944, 48.475816961000049 ], [ -123.515722857999918, 48.475818781000072 ], [ -123.515725592999985, 48.476088663000063 ], [ -123.514948205999943, 48.476092145000045 ], [ -123.514919805, 48.476632062000057 ], [ -123.51735468499993, 48.476621141000095 ], [ -123.517357429999961, 48.476891023000093 ], [ -123.517763336999963, 48.476889197000034 ], [ -123.517766082999955, 48.477159080000014 ], [ -123.518171992999925, 48.477157253000115 ], [ -123.518174740999882, 48.477427135000134 ], [ -123.518580653999919, 48.477425307000011 ], [ -123.51858890499993, 48.478234952000044 ], [ -123.518182986999975, 48.478236781000099 ], [ -123.51818573599995, 48.478506663000076 ], [ -123.516967974999901, 48.478512139 ], [ -123.516962489999969, 48.477972374000068 ], [ -123.51655657399999, 48.477974197000101 ], [ -123.516553833999964, 48.477704316000086 ], [ -123.516147919999923, 48.477706137000069 ], [ -123.516156132999953, 48.478515783000113 ], [ -123.515750212999976, 48.478517603000164 ], [ -123.515752948999989, 48.478787484000115 ], [ -123.516158871999934, 48.478785664000107 ], [ -123.516161607999962, 48.479055547000044 ], [ -123.518597157999963, 48.479044599000119 ], [ -123.518603284999983, 48.479645608000105 ], [ -123.518605411999957, 48.479854244000094 ], [ -123.518199479999979, 48.479856073000114 ], [ -123.518202228999925, 48.480125955000062 ], [ -123.516172561999952, 48.480135075000106 ], [ -123.51616982299997, 48.479865193000059 ], [ -123.51535796099995, 48.47986883100009 ], [ -123.515360694, 48.48013871200002 ], [ -123.513502229999986, 48.480147020000096 ], [ -123.513439569999946, 48.481337408000066 ], [ -123.510797167999897, 48.481275392000079 ], [ -123.509688493999946, 48.481249352000098 ], [ -123.509692501999922, 48.481649622000134 ], [ -123.510634564999989, 48.481671749000107 ], [ -123.511442693999967, 48.481690724000032 ], [ -123.511413691999934, 48.482241189 ], [ -123.512564384999976, 48.482268195000053 ], [ -123.512374677999929, 48.485870420000083 ], [ -123.510288484999975, 48.48582144800011 ], [ -123.506977886999962, 48.485743649000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17612750", "BldgCostT": "11675000", "sL_LossRatio": "0.96530725486939", "sL_AssetLoss": "13581.168", "sL_BldgLoss": "13110", "sL_StrLoss": "11569.3", "sL_NStrLoss": "1540.7", "sL_ContLoss": "471.168", "geom_point": "0101000020E61000003F97672D9EE15EC080406F43EF3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.529557030999982, 48.493808442000045 ], [ -123.529467795999921, 48.493795700000099 ], [ -123.529235719999974, 48.493841704000054 ], [ -123.528982701999936, 48.493951188000075 ], [ -123.528787185999974, 48.493969189000069 ], [ -123.528585997000036, 48.493940996000141 ], [ -123.5275827, 48.493620114000052 ], [ -123.527324211999897, 48.493628490000049 ], [ -123.526970092999932, 48.493682408000062 ], [ -123.526778468999964, 48.493677402000117 ], [ -123.526629857999978, 48.493673555000079 ], [ -123.526336001999979, 48.493665897000085 ], [ -123.526293484999911, 48.49366861699999 ], [ -123.525632385000023, 48.493710797000062 ], [ -123.525041049999956, 48.49378868400003 ], [ -123.52495219199993, 48.493800405000108 ], [ -123.524419397999921, 48.493783400000062 ], [ -123.524177002999934, 48.493741684000064 ], [ -123.524004490999943, 48.493681794000096 ], [ -123.52399241099999, 48.493673840000049 ], [ -123.523829516, 48.493566790000031 ], [ -123.523800218999938, 48.493531378000107 ], [ -123.523694787999958, 48.493404013000017 ], [ -123.523503100999974, 48.493030559 ], [ -123.523144396999925, 48.492331713000041 ], [ -123.522800899999979, 48.492029808000105 ], [ -123.522686097999923, 48.491977502000097 ], [ -123.522520707999917, 48.491962783000112 ], [ -123.521928927999966, 48.492149230000159 ], [ -123.521260113000011, 48.49235993000007 ], [ -123.520807597, 48.492502498000142 ], [ -123.520490084999949, 48.492672569000071 ], [ -123.52038844499999, 48.49272698200005 ], [ -123.519309005999915, 48.493305088000035 ], [ -123.518989897999973, 48.493618688000026 ], [ -123.51864963, 48.493716408000083 ], [ -123.518659104999969, 48.493536083000073 ], [ -123.517891328999923, 48.493518114000061 ], [ -123.518080645999959, 48.489915925000048 ], [ -123.519630580999959, 48.489952196000083 ], [ -123.519654205999956, 48.489502362000088 ], [ -123.52101121, 48.489534099000132 ], [ -123.521034474999951, 48.489090895000103 ], [ -123.526431685999952, 48.489216951000124 ], [ -123.526359179999957, 48.490601273000067 ], [ -123.526949349999967, 48.490615041000083 ], [ -123.526948527999934, 48.490630738000107 ], [ -123.527385691999882, 48.490640933000101 ], [ -123.527400853999922, 48.490351356000083 ], [ -123.531948396999979, 48.490457308000096 ], [ -123.532502106999956, 48.494290097 ], [ -123.532229764999926, 48.494382932000036 ], [ -123.531807115999939, 48.494611140000124 ], [ -123.531473998999957, 48.494702578000059 ], [ -123.531171650999951, 48.494722576000065 ], [ -123.53091626399997, 48.494645406000124 ], [ -123.530689992999939, 48.494270512000099 ], [ -123.530428455999981, 48.494073631000035 ], [ -123.530387097999949, 48.494042487000108 ], [ -123.530112105999962, 48.493926990000105 ], [ -123.529836508999949, 48.493848396000125 ], [ -123.529557030999982, 48.493808442000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27164500", "BldgCostT": "17260000", "sL_LossRatio": "0.929850527958098", "sL_AssetLoss": "28714.4", "sL_BldgLoss": "26700.1", "sL_StrLoss": "21280.1", "sL_NStrLoss": "5420", "sL_ContLoss": "2014.3", "geom_point": "0101000020E6100000E6E0803304DE5EC0939A664FBC3F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.46417321399997, 48.500582992000112 ], [ -123.464283198999951, 48.500420594000097 ], [ -123.464416226999944, 48.5003110910001 ], [ -123.464738817999972, 48.500166398000012 ], [ -123.46487708299999, 48.500031788000122 ], [ -123.464881281999922, 48.500000347000061 ], [ -123.464951778999989, 48.499470002000066 ], [ -123.465142017999938, 48.498822597000135 ], [ -123.465158120999945, 48.498598495000124 ], [ -123.465277897999982, 48.498303813000057 ], [ -123.465271803999954, 48.498165706000052 ], [ -123.465222701999934, 48.49802480500005 ], [ -123.465101408999914, 48.497866803000065 ], [ -123.464518324999943, 48.497402011000112 ], [ -123.464009368999925, 48.497205260000086 ], [ -123.463988822999951, 48.497197290000095 ], [ -123.463859403999933, 48.497090493000094 ], [ -123.463750115999972, 48.496937298000027 ], [ -123.463729196999964, 48.496571594000059 ], [ -123.463693135999961, 48.496469487000141 ], [ -123.463631890999963, 48.496296096000073 ], [ -123.46361579199997, 48.496216958000048 ], [ -123.46357839699999, 48.496033312000073 ], [ -123.463630791999933, 48.495888513000125 ], [ -123.463647008999956, 48.49587030400005 ], [ -123.463863707999934, 48.495627191000111 ], [ -123.463933697999963, 48.495455811000085 ], [ -123.46393767699999, 48.495281787000096 ], [ -123.463893086999974, 48.495155395000083 ], [ -123.463655388999953, 48.494927888000113 ], [ -123.463545430999943, 48.494867811000127 ], [ -123.463803179999928, 48.494608856000085 ], [ -123.463780866999954, 48.494107152000055 ], [ -123.463911989999957, 48.493939703000123 ], [ -123.464047334999989, 48.493669285000045 ], [ -123.470791708999911, 48.495093779000108 ], [ -123.474868323999914, 48.497765125000086 ], [ -123.475036329999966, 48.497722130000035 ], [ -123.47616503899999, 48.497749 ], [ -123.47606515299999, 48.499617690000051 ], [ -123.475673209999954, 48.499692378000098 ], [ -123.475235670999965, 48.499838849000049 ], [ -123.474924391999963, 48.499989433000039 ], [ -123.474797155999966, 48.500050985 ], [ -123.474368681000016, 48.500258216000141 ], [ -123.473968736999936, 48.50040918600007 ], [ -123.473584992999932, 48.500503033 ], [ -123.473458002999934, 48.500534068000022 ], [ -123.473120879999968, 48.500591827000072 ], [ -123.472850637999926, 48.500638112000054 ], [ -123.471900526999931, 48.500800822000052 ], [ -123.47143600899993, 48.500819510000085 ], [ -123.47127416699999, 48.500812082000088 ], [ -123.470819964999947, 48.500791284000044 ], [ -123.469943182999941, 48.500708272000097 ], [ -123.469865411999976, 48.500700914000085 ], [ -123.469712134999952, 48.500719420000109 ], [ -123.468812440999955, 48.500828136000074 ], [ -123.467702810999938, 48.500962197000085 ], [ -123.467364002999915, 48.501054201000088 ], [ -123.466718384000018, 48.501288137000081 ], [ -123.466526115999955, 48.501357789000039 ], [ -123.46616226299993, 48.501523043000063 ], [ -123.465967005999943, 48.501611740000108 ], [ -123.465639699999926, 48.501760409000028 ], [ -123.465372536999936, 48.501838549000055 ], [ -123.465038285999952, 48.50193630800009 ], [ -123.464930567999929, 48.501948194000107 ], [ -123.464702597000013, 48.501973386000053 ], [ -123.464386370999947, 48.501946891000095 ], [ -123.464079694999924, 48.501870111000073 ], [ -123.46395549499999, 48.501793190000022 ], [ -123.46391449399998, 48.501726405000078 ], [ -123.463969317999954, 48.50141029600006 ], [ -123.46414410499996, 48.500923089000075 ], [ -123.46417321399997, 48.500582992000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7209584", "BldgCostT": "4708334", "sL_LossRatio": "0.949606994641731", "sL_AssetLoss": "12183.04", "sL_BldgLoss": "11569.1", "sL_StrLoss": "10111", "sL_NStrLoss": "1458.1", "sL_ContLoss": "613.94", "geom_point": "0101000020E6100000BEC5A26D25DF5EC0582E652A8E414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.484055566999984, 48.510286054000055 ], [ -123.48945510199999, 48.510413986000117 ], [ -123.489263517999959, 48.514015999000044 ], [ -123.483863570999958, 48.513888057000045 ], [ -123.484055566999984, 48.510286054000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21106999", "BldgCostT": "14059999", "sL_LossRatio": "0.937385234490275", "sL_AssetLoss": "22366.258", "sL_BldgLoss": "20965.8", "sL_StrLoss": "16834.8", "sL_NStrLoss": "4131", "sL_ContLoss": "1400.458", "geom_point": "0101000020E6100000F908C2361EDF5EC0244884CA68424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.481736181999963, 48.522513076000102 ], [ -123.481763805999961, 48.521995376000106 ], [ -123.48115659099993, 48.521980963000082 ], [ -123.481199769999961, 48.521171970000069 ], [ -123.48017930599994, 48.52114774000006 ], [ -123.480215052999966, 48.520478223000097 ], [ -123.479259212000031, 48.520455518000063 ], [ -123.479283632999937, 48.519998307000094 ], [ -123.478968128999952, 48.519990811000071 ], [ -123.479000634999977, 48.519382273000112 ], [ -123.476766186999939, 48.519329155000023 ], [ -123.47695874499999, 48.515727197000068 ], [ -123.477293978999938, 48.51573516900006 ], [ -123.477332169999954, 48.515020603000075 ], [ -123.477736131999947, 48.515030208000013 ], [ -123.477814030999966, 48.513572410000044 ], [ -123.478815500999957, 48.513596217000078 ], [ -123.478814191999902, 48.513600217000054 ], [ -123.479004676999949, 48.514589340000043 ], [ -123.479298663999927, 48.515388648000062 ], [ -123.4793646899999, 48.515568053000038 ], [ -123.479724628, 48.515874502000024 ], [ -123.479911581999886, 48.516033669000066 ], [ -123.480428396999955, 48.516481418000154 ], [ -123.480585595999969, 48.516578429000027 ], [ -123.480663938999953, 48.516626781000078 ], [ -123.480796031999915, 48.516760646000172 ], [ -123.481081104999987, 48.517346266000075 ], [ -123.481360903999956, 48.517625204000069 ], [ -123.481768793999947, 48.517910788000023 ], [ -123.482025875999938, 48.518033192000082 ], [ -123.482245672999952, 48.518068200000094 ], [ -123.482500896999952, 48.518047202000027 ], [ -123.482762369999989, 48.517909088000067 ], [ -123.483981885999967, 48.517038779000131 ], [ -123.483994909, 48.517029505000096 ], [ -123.484167879, 48.516953391000072 ], [ -123.484256618999922, 48.516947082000065 ], [ -123.484405406999954, 48.516936489000088 ], [ -123.484634202999956, 48.516955410000058 ], [ -123.484934386999967, 48.517029212000082 ], [ -123.485490136, 48.517048770000052 ], [ -123.485758543999964, 48.517058224000074 ], [ -123.485800590999972, 48.517059698000097 ], [ -123.48623965799996, 48.516923901000077 ], [ -123.48626096699999, 48.516917299000127 ], [ -123.487145350999967, 48.516966108000112 ], [ -123.487943163999915, 48.51701011100009 ], [ -123.48864019, 48.517048572000121 ], [ -123.489052584, 48.517071324000057 ], [ -123.489126491999954, 48.517075404000096 ], [ -123.489292884999927, 48.517162122000101 ], [ -123.48959209899999, 48.517318107000058 ], [ -123.489706121999959, 48.517334306000073 ], [ -123.489887509999974, 48.51730430700011 ], [ -123.490198196000023, 48.517105209000086 ], [ -123.49087238299991, 48.516832599000054 ], [ -123.491102690999966, 48.5167620550001 ], [ -123.491582797, 48.516614991000012 ], [ -123.491738187999943, 48.516581289000079 ], [ -123.491826194999959, 48.516562195000134 ], [ -123.492063116999972, 48.516555993000068 ], [ -123.49230538099998, 48.516626703000043 ], [ -123.49289481699999, 48.516929994000073 ], [ -123.493030517999941, 48.516971112000114 ], [ -123.49347681199994, 48.516968084000027 ], [ -123.493814988999929, 48.516905179000091 ], [ -123.493906791999976, 48.516888097000027 ], [ -123.494216310999917, 48.516737689000117 ], [ -123.494606696999952, 48.516454130000106 ], [ -123.494673184999968, 48.516405792000107 ], [ -123.494958200999946, 48.516308887000022 ], [ -123.495780179999912, 48.516229087000134 ], [ -123.496424198999961, 48.516066712000026 ], [ -123.496688114999941, 48.516059401000092 ], [ -123.497032, 48.51610089600014 ], [ -123.497104480999923, 48.516095854000049 ], [ -123.496998247999898, 48.518099097000075 ], [ -123.496430345999954, 48.518085697000075 ], [ -123.496322032999927, 48.520127507000034 ], [ -123.495403144999926, 48.520105820000026 ], [ -123.495382915000022, 48.520487028000083 ], [ -123.492825034999953, 48.52042661600008 ], [ -123.492819616999952, 48.520528592000105 ], [ -123.490267742999961, 48.520468259000047 ], [ -123.488783544999976, 48.520433140000137 ], [ -123.48875338299996, 48.520999990000028 ], [ -123.487226415999913, 48.520963838000043 ], [ -123.487137107999914, 48.522641125000142 ], [ -123.481736181999963, 48.522513076000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9956667", "BldgCostT": "6866667", "sL_LossRatio": "0.884552864340794", "sL_AssetLoss": "34573.4", "sL_BldgLoss": "30582", "sL_StrLoss": "21680", "sL_NStrLoss": "8902", "sL_ContLoss": "3991.4", "geom_point": "0101000020E6100000E701B02A10E05EC0EFED8E7338434840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.502426868999962, 48.528815004000066 ], [ -123.502480172999981, 48.527807938000123 ], [ -123.498831901999921, 48.527722012000076 ], [ -123.498843870999977, 48.527496216000053 ], [ -123.495889312, 48.527426536000092 ], [ -123.496080443999986, 48.523824591000078 ], [ -123.4975007799999, 48.523858098000112 ], [ -123.497542627999962, 48.523068925000061 ], [ -123.500024515999911, 48.523127429000105 ], [ -123.500025827999934, 48.523102685000012 ], [ -123.501895845999954, 48.523146729000082 ], [ -123.50206282, 48.519992226000014 ], [ -123.503371193999939, 48.520023022000032 ], [ -123.503410196999965, 48.52020210900011 ], [ -123.503377398999945, 48.520312423000071 ], [ -123.503344587999919, 48.520422773000071 ], [ -123.503184249999947, 48.520639374000027 ], [ -123.503145144999962, 48.520792496000141 ], [ -123.5031309929999, 48.520847849000042 ], [ -123.50310602199994, 48.520945594000118 ], [ -123.503008283999989, 48.521101683000069 ], [ -123.502935808999936, 48.521197097000048 ], [ -123.503129903999962, 48.521487482000111 ], [ -123.503699218999941, 48.521971503000039 ], [ -123.503883389999913, 48.522194910000053 ], [ -123.504205101999943, 48.523065391000067 ], [ -123.504462000999951, 48.523320204000107 ], [ -123.50484570799992, 48.523477981000084 ], [ -123.505312702999973, 48.523747806000138 ], [ -123.505392431999965, 48.52388130300006 ], [ -123.505318672, 48.525276595000058 ], [ -123.50569092799999, 48.525285346000103 ], [ -123.505692293999957, 48.525391298000017 ], [ -123.505654737, 48.525490842000089 ], [ -123.505585407999973, 48.525674598000137 ], [ -123.50534657499999, 48.525839963000053 ], [ -123.50527938599997, 48.525886489000129 ], [ -123.50484579099998, 48.525981814000033 ], [ -123.504677217000037, 48.526062539000044 ], [ -123.504589192999958, 48.526104702000119 ], [ -123.50451160399993, 48.526198111000035 ], [ -123.504420205, 48.526308113000027 ], [ -123.504307217999965, 48.526656203000108 ], [ -123.504471424, 48.527436291000051 ], [ -123.50432977299999, 48.528401298000048 ], [ -123.504114359999974, 48.528854707000043 ], [ -123.502426868999962, 48.528815004000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123981250", "BldgCostT": "85945000", "sL_LossRatio": "0.967454705274846", "sL_AssetLoss": "85072.82", "sL_BldgLoss": "82304.1", "sL_StrLoss": "66731.2", "sL_NStrLoss": "15572.9", "sL_ContLoss": "2768.72", "geom_point": "0101000020E61000007FA1B227E2DD5EC0ECF0A52ACC404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.471521673999987, 48.516282626000077 ], [ -123.471645376999973, 48.513973383000078 ], [ -123.469774533999967, 48.513928777000054 ], [ -123.46977164499999, 48.513982678000026 ], [ -123.464371755999949, 48.513853745000112 ], [ -123.464402836999966, 48.513275141000072 ], [ -123.463854472000023, 48.513262032000114 ], [ -123.463885137999938, 48.51269128200007 ], [ -123.462443155999921, 48.512656797000012 ], [ -123.462568711999921, 48.510321142000116 ], [ -123.462455425999977, 48.510321597000015 ], [ -123.462454363999939, 48.510204957 ], [ -123.459344791999982, 48.510130523000029 ], [ -123.459369518999907, 48.509671090000062 ], [ -123.45859441099995, 48.509652523000064 ], [ -123.458575882999966, 48.509996664000035 ], [ -123.458429675999952, 48.509993161000061 ], [ -123.45842461899997, 48.510087101000067 ], [ -123.458516417999931, 48.510089300000097 ], [ -123.458453603999928, 48.511255972000072 ], [ -123.458826076999955, 48.51126489500011 ], [ -123.45864418799998, 48.5146433580001 ], [ -123.458300966999971, 48.514669612000048 ], [ -123.458186601999955, 48.50729169699999 ], [ -123.45818003, 48.506868498000102 ], [ -123.458152179999985, 48.505072289000076 ], [ -123.458132336999967, 48.50379269200004 ], [ -123.459032010999948, 48.498878154000046 ], [ -123.459033044999956, 48.498872212000087 ], [ -123.459035677999921, 48.49885886600002 ], [ -123.459084461999964, 48.498629274000074 ], [ -123.457496812999949, 48.497957217000078 ], [ -123.457544760999937, 48.49706674300009 ], [ -123.456833397999958, 48.497049685000036 ], [ -123.456785982999975, 48.496540808000105 ], [ -123.456793219999923, 48.49640642200017 ], [ -123.45677341699998, 48.496405946000081 ], [ -123.456623386999951, 48.494795688000075 ], [ -123.456503205999965, 48.493505984000066 ], [ -123.456529132999975, 48.493506620000119 ], [ -123.456948392999948, 48.493516707000062 ], [ -123.457231875999952, 48.493523497000105 ], [ -123.45727009699999, 48.493534315000012 ], [ -123.45797978200001, 48.493735296000047 ], [ -123.458061421, 48.493741936000077 ], [ -123.458534658999923, 48.493780377000085 ], [ -123.459225463999942, 48.493836513000069 ], [ -123.459238981999988, 48.493837593000109 ], [ -123.460029416999973, 48.494313686000048 ], [ -123.460239096999899, 48.494384509000014 ], [ -123.460264498999933, 48.494385305000044 ], [ -123.460572292999956, 48.494395199000074 ], [ -123.461004699999961, 48.494344212000122 ], [ -123.46137120199991, 48.494362004000109 ], [ -123.461672297999911, 48.494417008 ], [ -123.46220281399998, 48.494602807000092 ], [ -123.462400682999956, 48.494640896000092 ], [ -123.462672624, 48.494652502000108 ], [ -123.46278488399993, 48.494657294000028 ], [ -123.463169678999947, 48.49471160000008 ], [ -123.463406635999959, 48.494794436000113 ], [ -123.463419093999903, 48.494798787000029 ], [ -123.463545430999943, 48.494867811000127 ], [ -123.463655388999953, 48.494927888000113 ], [ -123.463893086999974, 48.495155395000083 ], [ -123.46393767699999, 48.495281787000096 ], [ -123.463933697999963, 48.495455811000085 ], [ -123.463863707999934, 48.495627191000111 ], [ -123.463647008999956, 48.49587030400005 ], [ -123.463630791999933, 48.495888513000125 ], [ -123.46357839699999, 48.496033312000073 ], [ -123.46361579199997, 48.496216958000048 ], [ -123.463631890999963, 48.496296096000073 ], [ -123.463693135999961, 48.496469487000141 ], [ -123.463729196999964, 48.496571594000059 ], [ -123.463750115999972, 48.496937298000027 ], [ -123.463859403999933, 48.497090493000094 ], [ -123.463988822999951, 48.497197290000095 ], [ -123.464009368999925, 48.497205260000086 ], [ -123.464518324999943, 48.497402011000112 ], [ -123.465101408999914, 48.497866803000065 ], [ -123.465222701999934, 48.49802480500005 ], [ -123.465271803999954, 48.498165706000052 ], [ -123.465277897999982, 48.498303813000057 ], [ -123.465158120999945, 48.498598495000124 ], [ -123.465142017999938, 48.498822597000135 ], [ -123.464951778999989, 48.499470002000066 ], [ -123.464881281999922, 48.500000347000061 ], [ -123.46487708299999, 48.500031788000122 ], [ -123.464738817999972, 48.500166398000012 ], [ -123.464416226999944, 48.5003110910001 ], [ -123.464283198999951, 48.500420594000097 ], [ -123.46417321399997, 48.500582992000112 ], [ -123.46414410499996, 48.500923089000075 ], [ -123.463969317999954, 48.50141029600006 ], [ -123.46391449399998, 48.501726405000078 ], [ -123.46395549499999, 48.501793190000022 ], [ -123.464079694999924, 48.501870111000073 ], [ -123.464386370999947, 48.501946891000095 ], [ -123.464702597000013, 48.501973386000053 ], [ -123.464930567999929, 48.501948194000107 ], [ -123.465038285999952, 48.50193630800009 ], [ -123.465372536999936, 48.501838549000055 ], [ -123.465639699999926, 48.501760409000028 ], [ -123.465967005999943, 48.501611740000108 ], [ -123.46616226299993, 48.501523043000063 ], [ -123.466526115999955, 48.501357789000039 ], [ -123.466718384000018, 48.501288137000081 ], [ -123.467364002999915, 48.501054201000088 ], [ -123.467702810999938, 48.500962197000085 ], [ -123.468812440999955, 48.500828136000074 ], [ -123.469712134999952, 48.500719420000109 ], [ -123.469865411999976, 48.500700914000085 ], [ -123.469943182999941, 48.500708272000097 ], [ -123.470819964999947, 48.500791284000044 ], [ -123.47127416699999, 48.500812082000088 ], [ -123.47143600899993, 48.500819510000085 ], [ -123.471900526999931, 48.500800822000052 ], [ -123.472850637999926, 48.500638112000054 ], [ -123.473120879999968, 48.500591827000072 ], [ -123.473458002999934, 48.500534068000022 ], [ -123.473584992999932, 48.500503033 ], [ -123.473968736999936, 48.50040918600007 ], [ -123.474368681000016, 48.500258216000141 ], [ -123.474797155999966, 48.500050985 ], [ -123.474924391999963, 48.499989433000039 ], [ -123.475235670999965, 48.499838849000049 ], [ -123.475673209999954, 48.499692378000098 ], [ -123.47606515299999, 48.499617690000051 ], [ -123.475972493999919, 48.501351065000051 ], [ -123.472940853999944, 48.501278869000025 ], [ -123.47278882099998, 48.504119234000015 ], [ -123.47016246099993, 48.50405662 ], [ -123.470129645999947, 48.504668998000092 ], [ -123.468244839999969, 48.50462402300014 ], [ -123.468240368, 48.504707412000087 ], [ -123.469346002999941, 48.50473379800011 ], [ -123.46925870199999, 48.506362395000046 ], [ -123.471521763999959, 48.506416369000156 ], [ -123.471531882999969, 48.506227434000046 ], [ -123.476930920999962, 48.506356005000065 ], [ -123.47689870899994, 48.506958720000043 ], [ -123.477435738999986, 48.506971493000023 ], [ -123.477370405999949, 48.508194133000053 ], [ -123.477328456999956, 48.508292987000075 ], [ -123.477324616999937, 48.508465996000034 ], [ -123.477351407999961, 48.508549663000068 ], [ -123.477289369999951, 48.509710562000102 ], [ -123.478582059999937, 48.509741298000073 ], [ -123.478740513999966, 48.510247054000011 ], [ -123.478767959, 48.510416319000072 ], [ -123.47872766699993, 48.511170951000068 ], [ -123.478738959999944, 48.511252068000019 ], [ -123.47875210799999, 48.511346433000071 ], [ -123.478825039999961, 48.51144825100009 ], [ -123.479229441999934, 48.511772528000087 ], [ -123.479323638999972, 48.511983059000059 ], [ -123.479345367999926, 48.512150536000021 ], [ -123.47935905099996, 48.512256203000064 ], [ -123.479334443999932, 48.512539629000109 ], [ -123.479264869999938, 48.512754365000063 ], [ -123.478908879999921, 48.513346208000044 ], [ -123.478903289999934, 48.513355505000092 ], [ -123.47708750399994, 48.513312335000137 ], [ -123.47692186099998, 48.516411195000074 ], [ -123.471521673999987, 48.516282626000077 ] ], [ [ -123.475778113999965, 48.512777429000074 ], [ -123.475897677999981, 48.510541495000041 ], [ -123.475387445999985, 48.510529352000027 ], [ -123.475267857999981, 48.512765286000111 ], [ -123.475778113999965, 48.512777429000074 ] ], [ [ -123.464323814999958, 48.509448708000015 ], [ -123.464472002999983, 48.509385994000098 ], [ -123.464525111999961, 48.509250708000152 ], [ -123.464266312999968, 48.509071307000134 ], [ -123.463776584999962, 48.508911792000113 ], [ -123.4634617899999, 48.508544291000121 ], [ -123.462676191, 48.508582793000045 ], [ -123.462528618999954, 48.508655404000095 ], [ -123.462503516999959, 48.50879069100008 ], [ -123.462452003999928, 48.509078395000046 ], [ -123.462586820999917, 48.509168098000046 ], [ -123.463168781999968, 48.509121098000072 ], [ -123.463467704999971, 48.509165286000069 ], [ -123.464052786999957, 48.509485690000062 ], [ -123.464323814999958, 48.509448708000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9502334", "BldgCostT": "6553334", "sL_LossRatio": "0.955229153755712", "sL_AssetLoss": "17265.7", "sL_BldgLoss": "16492.7", "sL_StrLoss": "13780", "sL_NStrLoss": "2712.7", "sL_ContLoss": "773", "geom_point": "0101000020E61000005DB36C18CBDF5EC089517C2109444840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.494010002999985, 48.534838265000054 ], [ -123.494084279, 48.53343986200008 ], [ -123.492109618999962, 48.533393219000111 ], [ -123.492301062999957, 48.529791317000033 ], [ -123.494395106999946, 48.529840780000065 ], [ -123.494464547999954, 48.528533066000072 ], [ -123.495825528999944, 48.52856519100002 ], [ -123.499866197999893, 48.528660465000065 ], [ -123.499799610999972, 48.52991713700002 ], [ -123.50218069, 48.529973207000126 ], [ -123.502053594999936, 48.53237395900009 ], [ -123.501795596999912, 48.532428347000057 ], [ -123.501513355999975, 48.532487825 ], [ -123.501482621999941, 48.532490326000072 ], [ -123.501361924999912, 48.532500108000136 ], [ -123.501065217999937, 48.532524151000132 ], [ -123.50081934499994, 48.532622049000118 ], [ -123.500527941999962, 48.532838790000021 ], [ -123.500111326999956, 48.532841596000075 ], [ -123.499829758999979, 48.53274482000009 ], [ -123.499675113999956, 48.532550022000066 ], [ -123.499469772999959, 48.532444206000072 ], [ -123.499181698999962, 48.532394133000039 ], [ -123.498976990999921, 48.532429880000016 ], [ -123.498807046999943, 48.532651265000013 ], [ -123.498452166999954, 48.532927326000014 ], [ -123.49833453799999, 48.53301881600008 ], [ -123.49809346799999, 48.533434186000093 ], [ -123.498096332999964, 48.533737190000089 ], [ -123.498234265999926, 48.534068631000061 ], [ -123.498174664, 48.53450449200011 ], [ -123.498441387999932, 48.53494280400011 ], [ -123.494010002999985, 48.534838265000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.964699943043546", "sL_AssetLoss": "1545.04", "sL_BldgLoss": "1490.5", "sL_StrLoss": "1332", "sL_NStrLoss": "158.5", "sL_ContLoss": "54.54", "geom_point": "0101000020E6100000417A507158DF5EC0BD1FF10A48464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.488522577999973, 48.548023234 ], [ -123.491234265999964, 48.548087349000063 ], [ -123.491160567999927, 48.549472841000089 ], [ -123.490743252999962, 48.549822891000119 ], [ -123.490372969, 48.550044949000011 ], [ -123.490147704999941, 48.550125872000052 ], [ -123.489986803999955, 48.550183694000118 ], [ -123.4896364799999, 48.550234004000153 ], [ -123.488500774999935, 48.550223382000119 ], [ -123.488522577999973, 48.548023234 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7726083", "BldgCostT": "5328333", "sL_LossRatio": "0.950496549021383", "sL_AssetLoss": "12809.41", "sL_BldgLoss": "12175.3", "sL_StrLoss": "10122", "sL_NStrLoss": "2053.3", "sL_ContLoss": "634.11", "geom_point": "0101000020E61000000ADB686399DF5EC0E7B8435847454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.493906390999939, 48.546321066000118 ], [ -123.49397220799996, 48.545082316000048 ], [ -123.491345001, 48.545020265000062 ], [ -123.491447953999966, 48.543084457000091 ], [ -123.490055271999964, 48.543051536000085 ], [ -123.490246911999947, 48.53944969600014 ], [ -123.494583357999957, 48.539552141000122 ], [ -123.494641592999926, 48.538455601000052 ], [ -123.494861352999976, 48.538460788000059 ], [ -123.49490092399995, 48.53771560600007 ], [ -123.495207913999977, 48.537722851000083 ], [ -123.495242645999937, 48.537068712000057 ], [ -123.496675995999951, 48.537102527000123 ], [ -123.496717027999921, 48.536329246 ], [ -123.498295070000012, 48.536366452000088 ], [ -123.498336605999924, 48.535583183000028 ], [ -123.498721542999945, 48.535592256000037 ], [ -123.498918260999957, 48.535782464000043 ], [ -123.498925622999977, 48.535949414000164 ], [ -123.498508890999986, 48.536361547000119 ], [ -123.498474209999983, 48.536443033000118 ], [ -123.498342093999952, 48.536753409000099 ], [ -123.498223644999925, 48.536895791000077 ], [ -123.49786552099998, 48.53714610400008 ], [ -123.497744977999972, 48.537429954000089 ], [ -123.497357352, 48.537803101000044 ], [ -123.497100740999883, 48.538306443000053 ], [ -123.496991151999964, 48.538433488000095 ], [ -123.496692915999958, 48.53877919300006 ], [ -123.496644406999977, 48.538898930000087 ], [ -123.496521745999956, 48.539201600000034 ], [ -123.496210708999968, 48.53958375200007 ], [ -123.496214082999984, 48.539680730000022 ], [ -123.496224648999956, 48.539983502000055 ], [ -123.495862525999911, 48.540792692000139 ], [ -123.495970306999979, 48.541054881000029 ], [ -123.495966781999982, 48.541401924000063 ], [ -123.495679475999978, 48.542278693000107 ], [ -123.495856683999961, 48.542685876000121 ], [ -123.496057481999969, 48.54280152700008 ], [ -123.496041045999931, 48.542863682000039 ], [ -123.496035464999963, 48.542884866000101 ], [ -123.495875253999941, 48.542916022000014 ], [ -123.495861903999952, 48.542918615000069 ], [ -123.495588025999922, 48.542873076000049 ], [ -123.495533451999947, 48.542864000000108 ], [ -123.495503446999976, 48.542851001000052 ], [ -123.495225392999927, 48.542730511000045 ], [ -123.494892820999951, 48.542447663000068 ], [ -123.494836763999942, 48.542442740000098 ], [ -123.494668005999969, 48.542427949000057 ], [ -123.494597265999957, 48.542537165000077 ], [ -123.494713708999925, 48.543324301000084 ], [ -123.494944902999947, 48.543631781000094 ], [ -123.494871507999946, 48.543910505000063 ], [ -123.494822930999973, 48.544095018000114 ], [ -123.49486393799999, 48.544465262000124 ], [ -123.494888943999939, 48.544690869000078 ], [ -123.494908846999948, 48.544870605 ], [ -123.494891760999948, 48.545640622000079 ], [ -123.494888437999975, 48.545789741000171 ], [ -123.494078936999955, 48.546311578000051 ], [ -123.493906390999939, 48.546321066000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9009334", "BldgCostT": "6213334", "sL_LossRatio": "0.966105969889322", "sL_AssetLoss": "9991.14", "sL_BldgLoss": "9652.5", "sL_StrLoss": "8372.6", "sL_NStrLoss": "1279.9", "sL_ContLoss": "338.64", "geom_point": "0101000020E6100000B76A745A39E05EC062EBBE08BF414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.501238543999975, 48.5183888030001 ], [ -123.501265127999915, 48.517886684000132 ], [ -123.500700753999951, 48.517873390000084 ], [ -123.500805590999988, 48.515893545000068 ], [ -123.50003454699997, 48.515875378000025 ], [ -123.500071014999989, 48.515186858000099 ], [ -123.498734141999947, 48.515155346000022 ], [ -123.498735583999974, 48.515128134000044 ], [ -123.498826500999925, 48.515117994000065 ], [ -123.499028295999921, 48.51500740200003 ], [ -123.499187094999954, 48.514817308000055 ], [ -123.499295107999899, 48.514308595000074 ], [ -123.49944711099999, 48.514068691000013 ], [ -123.500256779999944, 48.513327690000033 ], [ -123.500595401999959, 48.512880381000038 ], [ -123.500666251999974, 48.512807235000061 ], [ -123.500709032999936, 48.512763004000092 ], [ -123.501406079999953, 48.512042993000129 ], [ -123.501901022999945, 48.511493127000094 ], [ -123.502016408999978, 48.511364902 ], [ -123.502533207999974, 48.510870288000085 ], [ -123.503470994999958, 48.510312600000105 ], [ -123.50401021, 48.509699583000021 ], [ -123.504832585999949, 48.50904901100003 ], [ -123.505166740999954, 48.508843603000074 ], [ -123.50571540599995, 48.508506294000071 ], [ -123.50604489199992, 48.508229993000015 ], [ -123.506257895999951, 48.508011387000117 ], [ -123.507026488999927, 48.507737407 ], [ -123.507032114999973, 48.507937599000051 ], [ -123.506999314, 48.508169601000084 ], [ -123.506969597999927, 48.508379801000011 ], [ -123.506864271, 48.508600064000056 ], [ -123.506537667999908, 48.50928306800003 ], [ -123.506398307, 48.509574495000052 ], [ -123.506390989999886, 48.509865584000046 ], [ -123.506673115999945, 48.510077814000091 ], [ -123.506990705999925, 48.510256587000107 ], [ -123.507113322999942, 48.510444306000132 ], [ -123.507052481999963, 48.510623192000111 ], [ -123.506799888999964, 48.510927401000139 ], [ -123.506518284999956, 48.511652005000016 ], [ -123.506135114999935, 48.511998299000062 ], [ -123.506034197999924, 48.512372793000111 ], [ -123.506151178999957, 48.512557590000036 ], [ -123.506293720999935, 48.5127828010001 ], [ -123.506841314999974, 48.513162598000108 ], [ -123.507025997999961, 48.513362037000022 ], [ -123.506981960999966, 48.51419582900013 ], [ -123.506835024999987, 48.514229104 ], [ -123.506707785999978, 48.514378511000054 ], [ -123.50651509299999, 48.514604815000084 ], [ -123.506086463999949, 48.514788622000026 ], [ -123.505909318999926, 48.514864605000142 ], [ -123.50575799799999, 48.515063608000112 ], [ -123.505659407999943, 48.515193312000058 ], [ -123.505245692999921, 48.515297990000143 ], [ -123.504977679999925, 48.515431494000076 ], [ -123.504810685999956, 48.515651206000058 ], [ -123.504704096999944, 48.515954295000029 ], [ -123.504471219999985, 48.516319395000039 ], [ -123.50435859199996, 48.516916294000104 ], [ -123.504396154999966, 48.517306989000041 ], [ -123.504416990999957, 48.517523612000062 ], [ -123.504187101999946, 48.517908613000031 ], [ -123.503800907999903, 48.518182607000092 ], [ -123.503322970999974, 48.518399491000011 ], [ -123.503303489999951, 48.518437416000118 ], [ -123.501238543999975, 48.5183888030001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151517833", "BldgCostT": "96103333", "sL_LossRatio": "0.970382139585336", "sL_AssetLoss": "115052.2", "sL_BldgLoss": "111644.6", "sL_StrLoss": "98919.8", "sL_NStrLoss": "12724.8", "sL_ContLoss": "3407.6", "geom_point": "0101000020E6100000C28A53AD05EA5EC0AF51497C72324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.651751287999929, 48.401330906000041 ], [ -123.651900997999917, 48.39831354799999 ], [ -123.65169666299991, 48.398309013000066 ], [ -123.651777335999952, 48.396683065000083 ], [ -123.650692922999951, 48.396658992000049 ], [ -123.650736735999928, 48.395776288000015 ], [ -123.65063962, 48.395774132000014 ], [ -123.650631772999972, 48.395932205000136 ], [ -123.645244872999967, 48.395812451000019 ], [ -123.645424109999951, 48.392209447000035 ], [ -123.647641572999959, 48.392258776000062 ], [ -123.64764942799998, 48.39210070200005 ], [ -123.64767102699993, 48.392101183000136 ], [ -123.647757626999976, 48.390358487000093 ], [ -123.646197830999981, 48.390323792000061 ], [ -123.64620135499996, 48.39025293300012 ], [ -123.645521383999963, 48.390237801000055 ], [ -123.645481301999936, 48.391043647000032 ], [ -123.645022154999964, 48.391033427000082 ], [ -123.64499451199994, 48.391589058000122 ], [ -123.64459043699992, 48.391580062000052 ], [ -123.644561227999986, 48.39216706600007 ], [ -123.643882720999969, 48.39215195700011 ], [ -123.643839146999952, 48.393027382000092 ], [ -123.639484607999961, 48.392930313000093 ], [ -123.639455100999939, 48.393521988000039 ], [ -123.639287689, 48.393518252000042 ], [ -123.639144345999938, 48.396392186000128 ], [ -123.638928610999983, 48.396387372000056 ], [ -123.638906660999965, 48.396827391000087 ], [ -123.638633077999927, 48.396821286000097 ], [ -123.638607078999897, 48.397342397000024 ], [ -123.638392769999967, 48.39733761300004 ], [ -123.638358205999907, 48.398030300000073 ], [ -123.637128778999937, 48.398002852000033 ], [ -123.637000375999946, 48.400574647000091 ], [ -123.636761279999945, 48.400510909000097 ], [ -123.636584500999959, 48.400406912000079 ], [ -123.636445583999901, 48.400217090000105 ], [ -123.636415520999961, 48.40000261200003 ], [ -123.636385993999951, 48.399791998000062 ], [ -123.636419112999974, 48.399533891000011 ], [ -123.636634000999933, 48.398956188000092 ], [ -123.636645792999929, 48.397967606000059 ], [ -123.636646705999951, 48.397892404000054 ], [ -123.63671985799999, 48.397645593000071 ], [ -123.636771509999988, 48.397471391000117 ], [ -123.636598079999928, 48.396165399000061 ], [ -123.636709187999898, 48.395533893000035 ], [ -123.637114891999957, 48.395102908000112 ], [ -123.637242229999956, 48.394876702000055 ], [ -123.637271798999961, 48.394660999000038 ], [ -123.63716230199995, 48.394451096000076 ], [ -123.637069885999949, 48.394007193000064 ], [ -123.63691872499993, 48.39384779200001 ], [ -123.63643967899999, 48.393641389000059 ], [ -123.636602589999981, 48.393239293000086 ], [ -123.637095277999933, 48.392066286000038 ], [ -123.637519170999909, 48.391730385000102 ], [ -123.63775281599996, 48.391587718000075 ], [ -123.637936979999935, 48.391507738000037 ], [ -123.637976023999968, 48.391490805000139 ], [ -123.63805985799992, 48.391472720000067 ], [ -123.638354865999929, 48.391409076000102 ], [ -123.640386977999967, 48.39120914600003 ], [ -123.640709926999989, 48.39108558 ], [ -123.640964122999947, 48.390935257000137 ], [ -123.641198869999968, 48.390742097000057 ], [ -123.641373560999952, 48.390536803000067 ], [ -123.641713351999954, 48.389940186000054 ], [ -123.641886834999951, 48.389732146000028 ], [ -123.64213235599999, 48.389512171000106 ], [ -123.642185292999926, 48.389482445000148 ], [ -123.643345794999959, 48.388830447000025 ], [ -123.643547337999962, 48.38865457100006 ], [ -123.643694998999962, 48.3884504500001 ], [ -123.643822072999953, 48.388199001000025 ], [ -123.64398879, 48.38763911200008 ], [ -123.644103362999914, 48.387422546000067 ], [ -123.644115959000018, 48.387406226000103 ], [ -123.645645830000021, 48.387440287000103 ], [ -123.645681095, 48.386731191000088 ], [ -123.645705469999939, 48.386730497000073 ], [ -123.646054217999932, 48.386765311000076 ], [ -123.646343114999965, 48.386837566000068 ], [ -123.646653282, 48.386970709000074 ], [ -123.648603687999952, 48.388329089000116 ], [ -123.648920324999963, 48.388549592000111 ], [ -123.650801986999966, 48.389639227000089 ], [ -123.650961884999958, 48.389812319000079 ], [ -123.651116569999928, 48.390063732000051 ], [ -123.651214075999974, 48.390353547000046 ], [ -123.651203161999945, 48.391877267000041 ], [ -123.650926991999953, 48.392933396000046 ], [ -123.650925496999918, 48.393370711000074 ], [ -123.65102062599999, 48.39357299600001 ], [ -123.651175269999939, 48.393771223000044 ], [ -123.651366063999916, 48.3939467880001 ], [ -123.651553038, 48.394036598000099 ], [ -123.651788045999965, 48.394082397000048 ], [ -123.65300583799997, 48.394183374000114 ], [ -123.6534334239999, 48.394260488000057 ], [ -123.654903887999964, 48.394703380000081 ], [ -123.65516187899999, 48.394747882000047 ], [ -123.655440660999943, 48.394754044000138 ], [ -123.655769908, 48.394720767000067 ], [ -123.656140563999941, 48.394640598000095 ], [ -123.658384279999922, 48.393979715000114 ], [ -123.659759894999979, 48.393560212000082 ], [ -123.660304807999964, 48.393336911000056 ], [ -123.660994759999951, 48.39301870900006 ], [ -123.661755743999919, 48.39266776900012 ], [ -123.662342393999978, 48.392397200000055 ], [ -123.664009198999949, 48.391676584000038 ], [ -123.664801207000011, 48.391390199000057 ], [ -123.665198203999978, 48.391267306 ], [ -123.665226817999979, 48.391262358000084 ], [ -123.665592505999939, 48.3911993050001 ], [ -123.666530174999963, 48.391151864000108 ], [ -123.667193912999934, 48.39111829100009 ], [ -123.66756990199994, 48.391105225000047 ], [ -123.667729583, 48.39109967400001 ], [ -123.667917919, 48.391093132000059 ], [ -123.668861450999955, 48.391060300000078 ], [ -123.669110330999928, 48.391051647000033 ], [ -123.669304513999961, 48.391044901000058 ], [ -123.671295337999965, 48.39093986500005 ], [ -123.671740078999974, 48.390916398000044 ], [ -123.67474, 48.390851584000117 ], [ -123.676223188999955, 48.3908436030001 ], [ -123.678536298999987, 48.39013239300008 ], [ -123.681518004999973, 48.38953050200012 ], [ -123.68214789699999, 48.389273807000023 ], [ -123.682724906999923, 48.388969988000021 ], [ -123.683541098, 48.388212313000103 ], [ -123.685054036999972, 48.387499874000085 ], [ -123.685319608999976, 48.387374790000138 ], [ -123.685696297999954, 48.387252306000086 ], [ -123.685662606000022, 48.387749284000087 ], [ -123.685658652999962, 48.387769799000104 ], [ -123.685400690999984, 48.389107908 ], [ -123.685415166, 48.389186681000098 ], [ -123.685427273999949, 48.389252790000043 ], [ -123.68561770099997, 48.389687893000023 ], [ -123.68517986099998, 48.38973007 ], [ -123.684786715999962, 48.389767921000129 ], [ -123.684549095999969, 48.389790804 ], [ -123.684405111000018, 48.389840886000094 ], [ -123.684314408999938, 48.390233794000096 ], [ -123.684220994999976, 48.390351698000138 ], [ -123.679766908999966, 48.391566193000131 ], [ -123.679395122999935, 48.391643706000117 ], [ -123.678355642999961, 48.391783244000081 ], [ -123.677333815999987, 48.391920405000064 ], [ -123.676821890999918, 48.391967705000106 ], [ -123.676292688999965, 48.391900182000029 ], [ -123.675757255999955, 48.391777970000135 ], [ -123.675243505999944, 48.391660686000073 ], [ -123.675032993999963, 48.391554209000105 ], [ -123.674564393999958, 48.391815316000098 ], [ -123.674379991999942, 48.391918085000043 ], [ -123.673846581999939, 48.392215301000057 ], [ -123.673441890999968, 48.3923849090001 ], [ -123.672734697999942, 48.392565891000032 ], [ -123.672443407999978, 48.392746017000022 ], [ -123.672410803999952, 48.392766204000083 ], [ -123.67205110499999, 48.393089196000069 ], [ -123.671601595999931, 48.393265984000031 ], [ -123.671491035, 48.393299086000091 ], [ -123.669415332, 48.393920296000069 ], [ -123.66935349, 48.393938794000128 ], [ -123.668428456999919, 48.39418166200003 ], [ -123.666872086999945, 48.394590284000053 ], [ -123.666199878999976, 48.39476673300004 ], [ -123.665947092999929, 48.394833103000096 ], [ -123.665706889999939, 48.394838612000044 ], [ -123.665188014999927, 48.395846103000082 ], [ -123.665199698999928, 48.396100603000015 ], [ -123.665633281999959, 48.397014607000052 ], [ -123.665744998999969, 48.397618588000078 ], [ -123.665701400999978, 48.397820500000137 ], [ -123.665549499999912, 48.397974914000102 ], [ -123.665347492999928, 48.398106690000091 ], [ -123.664665284999927, 48.398379306000031 ], [ -123.664400709999967, 48.399116180000043 ], [ -123.664406113999974, 48.399209927000065 ], [ -123.661736882999932, 48.39915097500004 ], [ -123.661759613999905, 48.398690875000085 ], [ -123.661257628999977, 48.398693761000047 ], [ -123.661261125999928, 48.398963640000069 ], [ -123.660450571999945, 48.398968295000032 ], [ -123.660454066999975, 48.399238174000047 ], [ -123.659643508999949, 48.399242824000083 ], [ -123.659646998999946, 48.399512703000049 ], [ -123.659241716999972, 48.399515026000138 ], [ -123.659245203999944, 48.399784904000036 ], [ -123.658434636999928, 48.399789546000115 ], [ -123.658438119, 48.400059426000063 ], [ -123.657441570999964, 48.400065124 ], [ -123.65741439699994, 48.400614123 ], [ -123.657180484999941, 48.400608945000052 ], [ -123.657138832999948, 48.401450328000053 ], [ -123.651751287999929, 48.401330906000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.952895752895753", "sL_AssetLoss": "1942.5", "sL_BldgLoss": "1851", "sL_StrLoss": "1548", "sL_NStrLoss": "303", "sL_ContLoss": "91.5", "geom_point": "0101000020E61000006BF1E7E3F3E75EC090F48A2366314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.623825849999932, 48.386935926000099 ], [ -123.623823667999886, 48.386757362000026 ], [ -123.623719995999977, 48.386757924000108 ], [ -123.623203825999965, 48.385889917000071 ], [ -123.622923962999948, 48.385419339000073 ], [ -123.622948599999987, 48.385412607000021 ], [ -123.622996831999913, 48.385412347000056 ], [ -123.62299667399995, 48.385399472000074 ], [ -123.624146121999942, 48.385085388000093 ], [ -123.625405395999962, 48.384741260000041 ], [ -123.62548110199999, 48.384859068 ], [ -123.625421250999963, 48.38485939400001 ], [ -123.625424556999974, 48.385129275000104 ], [ -123.625019386999938, 48.385131477000066 ], [ -123.625042520999955, 48.387020646000067 ], [ -123.623879982999981, 48.387026956000064 ], [ -123.623825849999932, 48.386935926000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16670833", "BldgCostT": "11233333", "sL_LossRatio": "0.959674638890905", "sL_AssetLoss": "22043.2", "sL_BldgLoss": "21154.3", "sL_StrLoss": "18615", "sL_NStrLoss": "2539.3", "sL_ContLoss": "888.9", "geom_point": "0101000020E61000004765DC372BEA5EC0922828030F324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.654903887999964, 48.394703380000081 ], [ -123.6534334239999, 48.394260488000057 ], [ -123.65300583799997, 48.394183374000114 ], [ -123.651788045999965, 48.394082397000048 ], [ -123.651553038, 48.394036598000099 ], [ -123.651366063999916, 48.3939467880001 ], [ -123.651175269999939, 48.393771223000044 ], [ -123.65102062599999, 48.39357299600001 ], [ -123.650925496999918, 48.393370711000074 ], [ -123.650926991999953, 48.392933396000046 ], [ -123.651203161999945, 48.391877267000041 ], [ -123.651214075999974, 48.390353547000046 ], [ -123.651116569999928, 48.390063732000051 ], [ -123.650961884999958, 48.389812319000079 ], [ -123.650801986999966, 48.389639227000089 ], [ -123.648920324999963, 48.388549592000111 ], [ -123.648603687999952, 48.388329089000116 ], [ -123.646653282, 48.386970709000074 ], [ -123.646343114999965, 48.386837566000068 ], [ -123.646054217999932, 48.386765311000076 ], [ -123.645705469999939, 48.386730497000073 ], [ -123.645681095, 48.386731191000088 ], [ -123.645685905999969, 48.386634436000058 ], [ -123.648449548999963, 48.386695909000039 ], [ -123.648878804999981, 48.387220201000083 ], [ -123.649613804999987, 48.387674497000106 ], [ -123.65000629299999, 48.387762812000069 ], [ -123.650293700999981, 48.388076088000105 ], [ -123.650324296999912, 48.388274115000122 ], [ -123.650898301999987, 48.388846587000025 ], [ -123.651483888999977, 48.389185605000051 ], [ -123.651644092999959, 48.389234382000076 ], [ -123.651632174999961, 48.389474608000057 ], [ -123.652072495, 48.38948438199999 ], [ -123.652078336999963, 48.389366595000098 ], [ -123.652176202999939, 48.389396393000041 ], [ -123.652329681, 48.389773793000096 ], [ -123.65218371099995, 48.389973208000065 ], [ -123.65230001599997, 48.390728004000074 ], [ -123.652574511999958, 48.391085497000063 ], [ -123.653295294000017, 48.391487099000052 ], [ -123.653393318999917, 48.391683597000068 ], [ -123.653350086999936, 48.39243990700006 ], [ -123.65258180599993, 48.392606502000092 ], [ -123.652365708, 48.39271620800011 ], [ -123.652318412999961, 48.393166208 ], [ -123.652687397999983, 48.393567912000051 ], [ -123.653691617999925, 48.393876899000048 ], [ -123.653884593999948, 48.394164602000096 ], [ -123.654928114999933, 48.39450929500002 ], [ -123.654995301999946, 48.394338402000088 ], [ -123.654815196999948, 48.394006502000067 ], [ -123.655366706, 48.393832798000105 ], [ -123.655467008999935, 48.393247389000074 ], [ -123.65569308699996, 48.392983992000104 ], [ -123.656055808999952, 48.392909886000105 ], [ -123.656939009999945, 48.393238902000057 ], [ -123.657009720999966, 48.393198646000052 ], [ -123.657019103999929, 48.393193304000143 ], [ -123.656668900999946, 48.392232007000118 ], [ -123.656693304, 48.392042588000088 ], [ -123.656922196999957, 48.391888700000067 ], [ -123.657786197999926, 48.391830295000041 ], [ -123.658133344999897, 48.391418512000023 ], [ -123.658472968999959, 48.391426030000076 ], [ -123.658494282999968, 48.390995128000036 ], [ -123.658624114999952, 48.390861893000078 ], [ -123.658682992999928, 48.390240895000069 ], [ -123.658924685999978, 48.390149806000103 ], [ -123.659438982999944, 48.390146891000043 ], [ -123.659775089, 48.390055807000053 ], [ -123.660491794, 48.390051492000062 ], [ -123.660605715999978, 48.389564405000066 ], [ -123.660793787999978, 48.389410599000044 ], [ -123.662287289999952, 48.388970496000105 ], [ -123.662241216000012, 48.388776424000085 ], [ -123.662417942999966, 48.388780330000081 ], [ -123.66243110899994, 48.3885137010001 ], [ -123.663126303999917, 48.389073096000033 ], [ -123.663535315999965, 48.389313805 ], [ -123.664226801999945, 48.389544487000151 ], [ -123.665021486999962, 48.38947610500005 ], [ -123.66565171099991, 48.388986188000047 ], [ -123.666121613, 48.388831005000078 ], [ -123.668011281999952, 48.388694195000078 ], [ -123.668338502999973, 48.388710290000041 ], [ -123.668348082999927, 48.388756449000084 ], [ -123.668861450999955, 48.391060300000078 ], [ -123.667917919, 48.391093132000059 ], [ -123.667729583, 48.39109967400001 ], [ -123.66756990199994, 48.391105225000047 ], [ -123.667193912999934, 48.39111829100009 ], [ -123.666530174999963, 48.391151864000108 ], [ -123.665592505999939, 48.3911993050001 ], [ -123.665226817999979, 48.391262358000084 ], [ -123.665198203999978, 48.391267306 ], [ -123.664801207000011, 48.391390199000057 ], [ -123.664009198999949, 48.391676584000038 ], [ -123.662342393999978, 48.392397200000055 ], [ -123.661755743999919, 48.39266776900012 ], [ -123.660994759999951, 48.39301870900006 ], [ -123.660304807999964, 48.393336911000056 ], [ -123.659759894999979, 48.393560212000082 ], [ -123.658384279999922, 48.393979715000114 ], [ -123.656140563999941, 48.394640598000095 ], [ -123.655769908, 48.394720767000067 ], [ -123.655440660999943, 48.394754044000138 ], [ -123.65516187899999, 48.394747882000047 ], [ -123.654903887999964, 48.394703380000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92951000", "BldgCostT": "63080000", "sL_LossRatio": "0.952535458710323", "sL_AssetLoss": "108825.87", "sL_BldgLoss": "103660.5", "sL_StrLoss": "87917.7", "sL_NStrLoss": "15742.8", "sL_ContLoss": "5165.37", "geom_point": "0101000020E6100000019D8BB7FCE75EC066CB45BE43324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.61745085599992, 48.398332984000085 ], [ -123.617184132999938, 48.397882989000067 ], [ -123.616971015999951, 48.397933594000044 ], [ -123.616672951999973, 48.398004356000115 ], [ -123.616315830999937, 48.398054926000043 ], [ -123.615506320999884, 48.397796424000049 ], [ -123.614940973999978, 48.397615892000083 ], [ -123.613367517999976, 48.397113395000062 ], [ -123.615636241999979, 48.394336339000056 ], [ -123.615236128999982, 48.394205781000075 ], [ -123.608456086999951, 48.391620536000069 ], [ -123.608493066999955, 48.39088857400003 ], [ -123.607640795999913, 48.390869304000084 ], [ -123.60761896299999, 48.391301290000079 ], [ -123.605973485999954, 48.390673735000071 ], [ -123.609501067999986, 48.386078116000064 ], [ -123.610903023999981, 48.384455893000059 ], [ -123.615940047999956, 48.38641358400006 ], [ -123.615861191999898, 48.3879794160001 ], [ -123.617004090999927, 48.388005169000124 ], [ -123.616883723999976, 48.390396168000109 ], [ -123.617141424999929, 48.390401973000024 ], [ -123.617118521999913, 48.390856941000074 ], [ -123.619986352, 48.39092150000014 ], [ -123.61993830699997, 48.391877027000049 ], [ -123.621664947999975, 48.391915857000043 ], [ -123.621575132, 48.39370336700005 ], [ -123.622918522999967, 48.39373355900009 ], [ -123.62296225599998, 48.392862697000076 ], [ -123.62382258599996, 48.392882024000109 ], [ -123.623905309999927, 48.391234115000017 ], [ -123.626564053999957, 48.391293797000088 ], [ -123.626650292999983, 48.389573777000088 ], [ -123.62752456599999, 48.389593388000044 ], [ -123.627592646999972, 48.388234920000031 ], [ -123.626137317999934, 48.38820227100004 ], [ -123.626236462999927, 48.38622504500011 ], [ -123.625635815999942, 48.38621156400005 ], [ -123.62568753799998, 48.385180300000073 ], [ -123.626731731999953, 48.386805098000089 ], [ -123.62891024799994, 48.386151491000113 ], [ -123.629738326, 48.387412930000096 ], [ -123.630178327999957, 48.386845636000082 ], [ -123.631909824000033, 48.387361879000053 ], [ -123.632059414999944, 48.387177679000033 ], [ -123.632169916999942, 48.387041612000104 ], [ -123.632377694999903, 48.386525917000029 ], [ -123.63302351899992, 48.386678002000075 ], [ -123.633257832999959, 48.386388410000059 ], [ -123.633612069999941, 48.386080931000087 ], [ -123.633860123999966, 48.385808123000025 ], [ -123.63393640299995, 48.385577941000072 ], [ -123.633918330999904, 48.3835355350001 ], [ -123.634091746999943, 48.383879510000071 ], [ -123.634351578999954, 48.384695376000074 ], [ -123.634352226999923, 48.384697505000098 ], [ -123.634467300999987, 48.385084235000072 ], [ -123.634876284999976, 48.385435576000098 ], [ -123.635310977999978, 48.385564191000064 ], [ -123.635393975999946, 48.385694794000081 ], [ -123.635358581, 48.386134897000019 ], [ -123.635170314999954, 48.386307293000094 ], [ -123.635285083999975, 48.386728798000014 ], [ -123.635139117999984, 48.386909706000068 ], [ -123.634655316999954, 48.387210199000052 ], [ -123.634219115999898, 48.388003496000124 ], [ -123.633719895999974, 48.388006294000064 ], [ -123.633506689999933, 48.388133113000038 ], [ -123.632778402999975, 48.388308287000044 ], [ -123.632590912999987, 48.388453498000018 ], [ -123.63260980099993, 48.388947712000032 ], [ -123.63279165799996, 48.389586171000076 ], [ -123.632794400999956, 48.389595800000087 ], [ -123.632804350999919, 48.389579173000094 ], [ -123.633032186999941, 48.389198403000101 ], [ -123.632853794999946, 48.388856602000061 ], [ -123.633011892999932, 48.388658592000056 ], [ -123.633404508999931, 48.388772585000062 ], [ -123.633973786999917, 48.388778293000051 ], [ -123.634092139999936, 48.388869023000048 ], [ -123.634150301999966, 48.388913610000024 ], [ -123.634529183999931, 48.389010399000114 ], [ -123.634785394999938, 48.388971987000097 ], [ -123.635182784999955, 48.389320902000065 ], [ -123.636221996999907, 48.389315199000109 ], [ -123.636381580999966, 48.389107295000031 ], [ -123.636544013999981, 48.389097290000109 ], [ -123.636585291999936, 48.389232610000057 ], [ -123.636884306999931, 48.389338008000031 ], [ -123.637142882999953, 48.38957160200011 ], [ -123.63750778799999, 48.389541598000051 ], [ -123.638131908, 48.38973680500002 ], [ -123.638685499999923, 48.389706786000019 ], [ -123.638858792999926, 48.389471902000082 ], [ -123.63906929699999, 48.389147107000056 ], [ -123.63944568, 48.389008998000101 ], [ -123.63991910699994, 48.388961994000041 ], [ -123.640051503, 48.388870803000081 ], [ -123.640159002999937, 48.388689993000064 ], [ -123.640059000999912, 48.388286901000093 ], [ -123.640553588, 48.387861091000019 ], [ -123.641640408999962, 48.387368288000062 ], [ -123.64181017599999, 48.387354849000076 ], [ -123.644115959000018, 48.387406226000103 ], [ -123.644103362999914, 48.387422546000067 ], [ -123.64398879, 48.38763911200008 ], [ -123.643822072999953, 48.388199001000025 ], [ -123.643694998999962, 48.3884504500001 ], [ -123.643547337999962, 48.38865457100006 ], [ -123.643345794999959, 48.388830447000025 ], [ -123.642185292999926, 48.389482445000148 ], [ -123.64213235599999, 48.389512171000106 ], [ -123.641886834999951, 48.389732146000028 ], [ -123.641713351999954, 48.389940186000054 ], [ -123.641373560999952, 48.390536803000067 ], [ -123.641198869999968, 48.390742097000057 ], [ -123.640964122999947, 48.390935257000137 ], [ -123.640709926999989, 48.39108558 ], [ -123.640386977999967, 48.39120914600003 ], [ -123.638354865999929, 48.391409076000102 ], [ -123.63805985799992, 48.391472720000067 ], [ -123.637976023999968, 48.391490805000139 ], [ -123.637936979999935, 48.391507738000037 ], [ -123.63775281599996, 48.391587718000075 ], [ -123.637519170999909, 48.391730385000102 ], [ -123.637095277999933, 48.392066286000038 ], [ -123.636602589999981, 48.393239293000086 ], [ -123.63643967899999, 48.393641389000059 ], [ -123.63691872499993, 48.39384779200001 ], [ -123.637069885999949, 48.394007193000064 ], [ -123.63716230199995, 48.394451096000076 ], [ -123.637271798999961, 48.394660999000038 ], [ -123.637242229999956, 48.394876702000055 ], [ -123.637114891999957, 48.395102908000112 ], [ -123.636709187999898, 48.395533893000035 ], [ -123.636598079999928, 48.396165399000061 ], [ -123.636771509999988, 48.397471391000117 ], [ -123.63671985799999, 48.397645593000071 ], [ -123.636646705999951, 48.397892404000054 ], [ -123.636645792999929, 48.397967606000059 ], [ -123.636634000999933, 48.398956188000092 ], [ -123.636419112999974, 48.399533891000011 ], [ -123.636385993999951, 48.399791998000062 ], [ -123.636415520999961, 48.40000261200003 ], [ -123.636445583999901, 48.400217090000105 ], [ -123.636584500999959, 48.400406912000079 ], [ -123.636761279999945, 48.400510909000097 ], [ -123.637000375999946, 48.400574647000091 ], [ -123.636998594999952, 48.400610326000056 ], [ -123.631611196, 48.400489879000084 ], [ -123.631651818999913, 48.399678142000056 ], [ -123.62936906500002, 48.3996270230001 ], [ -123.629392671999938, 48.399155744000076 ], [ -123.628944976999932, 48.399145713000067 ], [ -123.629028565999974, 48.397477150000029 ], [ -123.627834636, 48.397450389000063 ], [ -123.627865031999974, 48.396843919000062 ], [ -123.625115306999959, 48.396782234000106 ], [ -123.625084848999961, 48.397389229000098 ], [ -123.624354667, 48.39737283700002 ], [ -123.62434692699992, 48.397527047000011 ], [ -123.622888909999958, 48.397494299000059 ], [ -123.62274731799999, 48.400313277000052 ], [ -123.622119349999963, 48.400299167000121 ], [ -123.619270110999949, 48.398931799000053 ], [ -123.617455340999953, 48.398343120000028 ], [ -123.61745085599992, 48.398332984000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "0.961634356636828", "sL_AssetLoss": "4552.25", "sL_BldgLoss": "4377.6", "sL_StrLoss": "3777", "sL_NStrLoss": "600.6", "sL_ContLoss": "174.65", "geom_point": "0101000020E61000002FD4AB12F6E95EC0EBE93C8DA8314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.655613693999953, 48.388936395000108 ], [ -123.655098787000014, 48.388822405000028 ], [ -123.654708882999927, 48.388969105000051 ], [ -123.654206308999903, 48.388701395000027 ], [ -123.65336270399996, 48.389336594000049 ], [ -123.653131086999906, 48.389211193000065 ], [ -123.65311678099998, 48.388996199000118 ], [ -123.653308194999951, 48.388184409000125 ], [ -123.653704099, 48.387489394000042 ], [ -123.654159095999958, 48.387109108000125 ], [ -123.654656988999974, 48.386935311000123 ], [ -123.655085406999959, 48.386681791000065 ], [ -123.655309243999966, 48.386632175000088 ], [ -123.657091099999931, 48.38667165500005 ], [ -123.657601723999946, 48.386713217000107 ], [ -123.657592571999942, 48.386898181000056 ], [ -123.657990318999978, 48.386906988000057 ], [ -123.657921178999985, 48.388304532000113 ], [ -123.656866891000021, 48.388614506000081 ], [ -123.656411093999964, 48.38902179500009 ], [ -123.656143499999942, 48.38915001000003 ], [ -123.655494518999973, 48.390169698000115 ], [ -123.655256974999944, 48.390453445000048 ], [ -123.654890400999975, 48.390445320000083 ], [ -123.655197000999976, 48.390117005000072 ], [ -123.655804596999971, 48.389061703000053 ], [ -123.655613693999953, 48.388936395000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "314459071", "BldgCostT": "204031982", "sL_LossRatio": "0.73330143788603", "sL_AssetLoss": "621405.3", "sL_BldgLoss": "455677.4", "sL_StrLoss": "226307.5", "sL_NStrLoss": "229369.9", "sL_ContLoss": "165727.9", "geom_point": "0101000020E610000014F0E0C4E3EB5EC0D5B8927854314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.668861450999955, 48.391060300000078 ], [ -123.668348082999927, 48.388756449000084 ], [ -123.668338502999973, 48.388710290000041 ], [ -123.668997481999909, 48.388742699000019 ], [ -123.670968698999914, 48.388631593000085 ], [ -123.671776080999962, 48.388474900000055 ], [ -123.672245396, 48.388228497000064 ], [ -123.672759600999882, 48.388306795000062 ], [ -123.673344591999964, 48.388591714000029 ], [ -123.674837900999975, 48.389095907000062 ], [ -123.676381394999964, 48.389392109000092 ], [ -123.677137393999914, 48.389379292000044 ], [ -123.679817293999974, 48.388805299000126 ], [ -123.680611918999915, 48.388549 ], [ -123.681943704999981, 48.388261285000098 ], [ -123.682979302999939, 48.387841111000078 ], [ -123.683686581999936, 48.387144694000128 ], [ -123.684074190999965, 48.386854192000072 ], [ -123.684516908999939, 48.386671889000112 ], [ -123.68475859599999, 48.386643400000075 ], [ -123.684816612999953, 48.386787204000079 ], [ -123.684685698999928, 48.387130400000039 ], [ -123.684873796000019, 48.387146106000074 ], [ -123.685049009999943, 48.387010803000088 ], [ -123.685109265999955, 48.386826215000099 ], [ -123.685254880999963, 48.386379894000065 ], [ -123.685691216, 48.385585207000112 ], [ -123.686106711999926, 48.385357300000088 ], [ -123.686339787999941, 48.384672310000049 ], [ -123.686295391999977, 48.384313398000124 ], [ -123.686981295999885, 48.384111112000078 ], [ -123.68731670899993, 48.383928802000092 ], [ -123.687300298999929, 48.383757900000049 ], [ -123.686474283999971, 48.383574204000084 ], [ -123.6863369, 48.383467392000064 ], [ -123.686508600999957, 48.383186807000044 ], [ -123.686409897999937, 48.382792288000054 ], [ -123.686540808999965, 48.382548786000051 ], [ -123.686887005999949, 48.382060294000041 ], [ -123.687313183999947, 48.381707106000192 ], [ -123.687790978999928, 48.381029097000066 ], [ -123.689250591999979, 48.380174604000103 ], [ -123.689820595999933, 48.379334311000022 ], [ -123.690047206999964, 48.37913639 ], [ -123.690583705999941, 48.378907104000113 ], [ -123.690957606999945, 48.37859938900008 ], [ -123.691197313999979, 48.378327402000131 ], [ -123.691212021999917, 48.378285816000044 ], [ -123.691396662999963, 48.377763736000055 ], [ -123.69149700799997, 48.377479994000048 ], [ -123.691870796999936, 48.37815369400014 ], [ -123.692704612999947, 48.378921290000065 ], [ -123.693077093999989, 48.37940550900008 ], [ -123.693310892999932, 48.379862712000033 ], [ -123.693390291999947, 48.380600513 ], [ -123.69424640499993, 48.382097293000079 ], [ -123.694643992999914, 48.382446209000115 ], [ -123.696146728999949, 48.383197467000116 ], [ -123.696125201999962, 48.383212056000055 ], [ -123.69640522199991, 48.383393899000119 ], [ -123.695590556999932, 48.383632306000152 ], [ -123.694298566, 48.384010384000106 ], [ -123.692932389999925, 48.384350249000093 ], [ -123.693138438999966, 48.384763738000061 ], [ -123.693224567999906, 48.384955589000057 ], [ -123.693442896, 48.385284387000077 ], [ -123.693909911999967, 48.385807563000064 ], [ -123.694576418999958, 48.386276836000064 ], [ -123.694070993999929, 48.38679194000013 ], [ -123.692915906999971, 48.387446009000122 ], [ -123.691925269999928, 48.387412485000034 ], [ -123.690871778999977, 48.387376865000071 ], [ -123.690136987999921, 48.387351993000017 ], [ -123.687465492999962, 48.387265699000075 ], [ -123.68620110199997, 48.387211006000015 ], [ -123.685696297999954, 48.387252306000086 ], [ -123.685319608999976, 48.387374790000138 ], [ -123.685054036999972, 48.387499874000085 ], [ -123.683541098, 48.388212313000103 ], [ -123.682724906999923, 48.388969988000021 ], [ -123.68214789699999, 48.389273807000023 ], [ -123.681518004999973, 48.38953050200012 ], [ -123.678536298999987, 48.39013239300008 ], [ -123.676223188999955, 48.3908436030001 ], [ -123.67474, 48.390851584000117 ], [ -123.671740078999974, 48.390916398000044 ], [ -123.671295337999965, 48.39093986500005 ], [ -123.669304513999961, 48.391044901000058 ], [ -123.669110330999928, 48.391051647000033 ], [ -123.668861450999955, 48.391060300000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29843584", "BldgCostT": "19638334", "sL_LossRatio": "0.899831363823547", "sL_AssetLoss": "63865.3", "sL_BldgLoss": "57468", "sL_StrLoss": "42242", "sL_NStrLoss": "15226", "sL_ContLoss": "6397.3", "geom_point": "0101000020E61000008A7D346287EC5EC0BFADC3EA72314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.68945284599999, 48.38938360900007 ], [ -123.689050794000011, 48.388615955000013 ], [ -123.688934807999942, 48.38839454400005 ], [ -123.69281058599995, 48.387478318000056 ], [ -123.692915906999971, 48.387446009000122 ], [ -123.694070993999929, 48.38679194000013 ], [ -123.694576418999958, 48.386276836000064 ], [ -123.693909911999967, 48.385807563000064 ], [ -123.693442896, 48.385284387000077 ], [ -123.693224567999906, 48.384955589000057 ], [ -123.693138438999966, 48.384763738000061 ], [ -123.692932389999925, 48.384350249000093 ], [ -123.694298566, 48.384010384000106 ], [ -123.695590556999932, 48.383632306000152 ], [ -123.69640522199991, 48.383393899000119 ], [ -123.697014371999927, 48.383775509000067 ], [ -123.69716698, 48.383845609000069 ], [ -123.6973253, 48.383968706000061 ], [ -123.698277420999915, 48.384430204000111 ], [ -123.699132111999972, 48.38479330200002 ], [ -123.699298014999968, 48.38499129900007 ], [ -123.699326321999962, 48.385262023000095 ], [ -123.699320439999937, 48.38538304700004 ], [ -123.699559284999935, 48.385388241000094 ], [ -123.699572105999906, 48.385394299 ], [ -123.699952611999919, 48.385437107000101 ], [ -123.70041691199999, 48.385811601000071 ], [ -123.701140857999988, 48.38602261100003 ], [ -123.70120359199997, 48.386040893000079 ], [ -123.701777157999956, 48.386141305000073 ], [ -123.702530772999964, 48.386273248000045 ], [ -123.70021520099999, 48.386863825000027 ], [ -123.69773026899999, 48.387497521000064 ], [ -123.697658081999961, 48.387515108000109 ], [ -123.696838817999918, 48.387714571000053 ], [ -123.696495334999938, 48.387768688000072 ], [ -123.696369624999974, 48.387788504000035 ], [ -123.69591208599999, 48.38784238700002 ], [ -123.691929847999987, 48.38903648000008 ], [ -123.691925392999934, 48.388707759000091 ], [ -123.690460945999945, 48.388675798000108 ], [ -123.690425378999976, 48.389404846000076 ], [ -123.68945284599999, 48.38938360900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190161333", "BldgCostT": "128523333", "sL_LossRatio": "0.941763259159751", "sL_AssetLoss": "249106.66", "sL_BldgLoss": "234599.5", "sL_StrLoss": "187326.2", "sL_NStrLoss": "47273.3", "sL_ContLoss": "14507.16", "geom_point": "0101000020E61000003D994DBA4CEC5EC03040CB88C5324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.697307686, 48.407779184000113 ], [ -123.69735261699995, 48.406855847000031 ], [ -123.696113412999949, 48.406828878000034 ], [ -123.696099074999964, 48.407123352000056 ], [ -123.69184913699992, 48.407030747000178 ], [ -123.691843809999952, 48.407139955000034 ], [ -123.686455529999989, 48.407022302000016 ], [ -123.686631672999951, 48.403419297000042 ], [ -123.69088127699996, 48.403512111000083 ], [ -123.69088660599999, 48.403402902000025 ], [ -123.692799388999973, 48.403444622000052 ], [ -123.692801009, 48.403411396000102 ], [ -123.692249255999968, 48.403399364000052 ], [ -123.692263237999953, 48.403112662000133 ], [ -123.691808957999982, 48.403102754000059 ], [ -123.691823753999969, 48.402799416000036 ], [ -123.691417060999981, 48.402790545000101 ], [ -123.691432010999961, 48.402484084000029 ], [ -123.68976032099998, 48.402447602000088 ], [ -123.689794245999963, 48.401752637000115 ], [ -123.688683222999913, 48.401728376000015 ], [ -123.688858653999958, 48.398136044000111 ], [ -123.688155017000014, 48.398120673000044 ], [ -123.68833099699998, 48.394517611000076 ], [ -123.689251619999979, 48.394537722000095 ], [ -123.689254391999924, 48.39448096100012 ], [ -123.68916677799993, 48.394481486000132 ], [ -123.689159486999941, 48.393941731000027 ], [ -123.687943783999955, 48.393949006000113 ], [ -123.687940145999946, 48.393679128000024 ], [ -123.68753491299999, 48.393681551000071 ], [ -123.687531276999906, 48.393411673000031 ], [ -123.68712604699999, 48.393414094000129 ], [ -123.687115231999897, 48.39261094600009 ], [ -123.685954985999956, 48.392585575000048 ], [ -123.685935398999945, 48.392986245000031 ], [ -123.685904496999967, 48.392985569000054 ], [ -123.685913981999931, 48.393691226000044 ], [ -123.683887816999942, 48.393703287000086 ], [ -123.683884199999952, 48.39343341000005 ], [ -123.683478968999978, 48.393435817000096 ], [ -123.683472225999964, 48.392932340000073 ], [ -123.683066846999935, 48.392923463000031 ], [ -123.683070125999905, 48.393168347000078 ], [ -123.682259666999968, 48.393173155000106 ], [ -123.682284924, 48.395062300000099 ], [ -123.682131539999915, 48.395063210000046 ], [ -123.682126838999977, 48.395152160000109 ], [ -123.680888739999929, 48.39530216100011 ], [ -123.68071036799995, 48.395071628000018 ], [ -123.680258705999961, 48.395074299000022 ], [ -123.680251508999959, 48.394534542000024 ], [ -123.679846267999963, 48.394536938000051 ], [ -123.679839077999986, 48.393997182000085 ], [ -123.678623369999954, 48.394004358000132 ], [ -123.678626958999956, 48.39427423700004 ], [ -123.678221721999961, 48.394276627000067 ], [ -123.678232483000031, 48.395086261000088 ], [ -123.677016746999925, 48.395093421000055 ], [ -123.677009586999986, 48.394553665000053 ], [ -123.67660434599992, 48.394556048 ], [ -123.676600767999943, 48.394286171000061 ], [ -123.676195529, 48.394288552000056 ], [ -123.676199105999927, 48.394558431000071 ], [ -123.675388624999982, 48.394563191000081 ], [ -123.675392195999962, 48.394833070000068 ], [ -123.674581711999949, 48.394837824000156 ], [ -123.674585278999942, 48.395107702000068 ], [ -123.674465927999947, 48.395108402000069 ], [ -123.674452663999929, 48.395378379000057 ], [ -123.674588847, 48.395377581000105 ], [ -123.674599549999968, 48.396187216000101 ], [ -123.674412869, 48.39618831000012 ], [ -123.674385751999964, 48.396740218000019 ], [ -123.672823270000023, 48.396705863000037 ], [ -123.672787926999959, 48.397424655000066 ], [ -123.672504584999956, 48.39741842300004 ], [ -123.67242550099995, 48.399026559000028 ], [ -123.66943394499998, 48.398960711000022 ], [ -123.669430782999896, 48.399024932000053 ], [ -123.667138768999948, 48.398974425000041 ], [ -123.667124203999933, 48.399269888000056 ], [ -123.664406113999974, 48.399209927000065 ], [ -123.664400709999967, 48.399116180000043 ], [ -123.664665284999927, 48.398379306000031 ], [ -123.665347492999928, 48.398106690000091 ], [ -123.665549499999912, 48.397974914000102 ], [ -123.665701400999978, 48.397820500000137 ], [ -123.665744998999969, 48.397618588000078 ], [ -123.665633281999959, 48.397014607000052 ], [ -123.665199698999928, 48.396100603000015 ], [ -123.665188014999927, 48.395846103000082 ], [ -123.665706889999939, 48.394838612000044 ], [ -123.665947092999929, 48.394833103000096 ], [ -123.666199878999976, 48.39476673300004 ], [ -123.666872086999945, 48.394590284000053 ], [ -123.668428456999919, 48.39418166200003 ], [ -123.66935349, 48.393938794000128 ], [ -123.669415332, 48.393920296000069 ], [ -123.671491035, 48.393299086000091 ], [ -123.671601595999931, 48.393265984000031 ], [ -123.67205110499999, 48.393089196000069 ], [ -123.672410803999952, 48.392766204000083 ], [ -123.672443407999978, 48.392746017000022 ], [ -123.672734697999942, 48.392565891000032 ], [ -123.673441890999968, 48.3923849090001 ], [ -123.673846581999939, 48.392215301000057 ], [ -123.674379991999942, 48.391918085000043 ], [ -123.674564393999958, 48.391815316000098 ], [ -123.675032993999963, 48.391554209000105 ], [ -123.675243505999944, 48.391660686000073 ], [ -123.675757255999955, 48.391777970000135 ], [ -123.676292688999965, 48.391900182000029 ], [ -123.676821890999918, 48.391967705000106 ], [ -123.677333815999987, 48.391920405000064 ], [ -123.678355642999961, 48.391783244000081 ], [ -123.679395122999935, 48.391643706000117 ], [ -123.679766908999966, 48.391566193000131 ], [ -123.684220994999976, 48.390351698000138 ], [ -123.684314408999938, 48.390233794000096 ], [ -123.684405111000018, 48.389840886000094 ], [ -123.684549095999969, 48.389790804 ], [ -123.684786715999962, 48.389767921000129 ], [ -123.68517986099998, 48.38973007 ], [ -123.68561770099997, 48.389687893000023 ], [ -123.685427273999949, 48.389252790000043 ], [ -123.685415166, 48.389186681000098 ], [ -123.685400690999984, 48.389107908 ], [ -123.685658652999962, 48.387769799000104 ], [ -123.685662606000022, 48.387749284000087 ], [ -123.685696297999954, 48.387252306000086 ], [ -123.68620110199997, 48.387211006000015 ], [ -123.687465492999962, 48.387265699000075 ], [ -123.690136987999921, 48.387351993000017 ], [ -123.690871778999977, 48.387376865000071 ], [ -123.691925269999928, 48.387412485000034 ], [ -123.692915906999971, 48.387446009000122 ], [ -123.69281058599995, 48.387478318000056 ], [ -123.688934807999942, 48.38839454400005 ], [ -123.689050794000011, 48.388615955000013 ], [ -123.68945284599999, 48.38938360900007 ], [ -123.688721729999912, 48.389367638000074 ], [ -123.6887208099999, 48.389386488000113 ], [ -123.688535775999952, 48.389382445000095 ], [ -123.688513326999939, 48.389842192000046 ], [ -123.68845242699993, 48.389840862 ], [ -123.688357375999914, 48.391787338000022 ], [ -123.689130331999948, 48.39178271 ], [ -123.689133974999947, 48.392052588000077 ], [ -123.689944414999943, 48.392047731000048 ], [ -123.689918874999975, 48.390158588000077 ], [ -123.690324079999954, 48.390156157000042 ], [ -123.690316778999943, 48.389616402000037 ], [ -123.691127178999977, 48.389611536000089 ], [ -123.691123524999966, 48.389341659000074 ], [ -123.691933920999986, 48.38933678700004 ], [ -123.691929847999987, 48.38903648000008 ], [ -123.69591208599999, 48.38784238700002 ], [ -123.696369624999974, 48.387788504000035 ], [ -123.696495334999938, 48.387768688000072 ], [ -123.696838817999918, 48.387714571000053 ], [ -123.697658081999961, 48.387515108000109 ], [ -123.69773026899999, 48.387497521000064 ], [ -123.70021520099999, 48.386863825000027 ], [ -123.702530772999964, 48.386273248000045 ], [ -123.702692793999972, 48.386301605000071 ], [ -123.703279952999964, 48.386531241000078 ], [ -123.703924517999909, 48.387301119000057 ], [ -123.704611755999963, 48.387590999000054 ], [ -123.704507197999959, 48.387711514000046 ], [ -123.70409100499991, 48.38790379100007 ], [ -123.704367315999889, 48.388225707000124 ], [ -123.705185119999925, 48.388796798000101 ], [ -123.706731605999934, 48.390262287000091 ], [ -123.707683799999941, 48.391650903000077 ], [ -123.708192786999973, 48.392913373000042 ], [ -123.708203107999921, 48.393657100000105 ], [ -123.707945919999958, 48.394025102000036 ], [ -123.706459694999964, 48.395058990000038 ], [ -123.704368195999933, 48.396115816000105 ], [ -123.703197618999951, 48.396554406000071 ], [ -123.702662701999927, 48.396936097000093 ], [ -123.701991201999974, 48.397228108000085 ], [ -123.701511618999945, 48.397662498000081 ], [ -123.700943695999939, 48.398673689000105 ], [ -123.701077491999953, 48.39951820800006 ], [ -123.701595088999952, 48.399919906000093 ], [ -123.70217829799999, 48.400042290000023 ], [ -123.704195232999922, 48.400116881000059 ], [ -123.704139632999969, 48.401263069000088 ], [ -123.704367455999915, 48.401268012000088 ], [ -123.704274332999944, 48.403187722000034 ], [ -123.704587726999975, 48.403194520000028 ], [ -123.704563203999925, 48.40340198600007 ], [ -123.70458470899996, 48.404085694000067 ], [ -123.704739691999976, 48.404480202000023 ], [ -123.70505134099993, 48.404890557 ], [ -123.704944403999988, 48.407095517000101 ], [ -123.704938727999931, 48.407212533000077 ], [ -123.702731597999971, 48.407164646000084 ], [ -123.702696077, 48.407896286000103 ], [ -123.697307686, 48.407779184000113 ] ], [ [ -123.698059868999948, 48.392808476000077 ], [ -123.698052484999934, 48.39226872200004 ], [ -123.697647264999944, 48.392271179000076 ], [ -123.697639885999962, 48.391731426000064 ], [ -123.695208587999986, 48.391746142000102 ], [ -123.695212264999938, 48.392016020000028 ], [ -123.694807044999934, 48.392018467000113 ], [ -123.694817810999893, 48.392809154000119 ], [ -123.696715642999891, 48.392850488000057 ], [ -123.696672386999978, 48.393739412000052 ], [ -123.696822344999973, 48.39374267600008 ], [ -123.696852438999912, 48.393124216000068 ], [ -123.697659167999973, 48.393141775000117 ], [ -123.697654642999964, 48.392810933000099 ], [ -123.698059868999948, 48.392808476000077 ] ], [ [ -123.70496922800001, 48.390324503000066 ], [ -123.7050443399999, 48.388775177000113 ], [ -123.702740902, 48.388725181000041 ], [ -123.702697906999973, 48.389611165000105 ], [ -123.704384471999958, 48.389647777000114 ], [ -123.704352303999926, 48.390311119000074 ], [ -123.70496922800001, 48.390324503000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40664250", "BldgCostT": "27045000", "sL_LossRatio": "0.930994996325074", "sL_AssetLoss": "72368.81", "sL_BldgLoss": "67375", "sL_StrLoss": "53410", "sL_NStrLoss": "13965", "sL_ContLoss": "4993.81", "geom_point": "0101000020E610000034120DF776ED5EC00BA6F5123E354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.712799570999962, 48.424052985000067 ], [ -123.712806651999955, 48.423906553000052 ], [ -123.712138984999967, 48.423892127000023 ], [ -123.712180485999937, 48.423034090000044 ], [ -123.711853425999919, 48.423027021000031 ], [ -123.71188572799997, 48.422359231000023 ], [ -123.711130437999884, 48.422342904000061 ], [ -123.711141574999957, 48.422112728000045 ], [ -123.710959945999932, 48.422108801000029 ], [ -123.711099896999912, 48.419216467000133 ], [ -123.710217789999916, 48.419197390000058 ], [ -123.710260588999972, 48.418313159000022 ], [ -123.710095537999962, 48.418309590000042 ], [ -123.710120283999984, 48.417798347000051 ], [ -123.709960363000022, 48.417794887000085 ], [ -123.70997526599993, 48.41748702100012 ], [ -123.709899679, 48.41748538700017 ], [ -123.709916342999989, 48.41714115000007 ], [ -123.709857896999964, 48.417139887000047 ], [ -123.709880505999962, 48.416672851000072 ], [ -123.707624945999925, 48.41662402900004 ], [ -123.707763602999989, 48.413762260000077 ], [ -123.70760551299999, 48.413758837000039 ], [ -123.707656933999914, 48.412697543000043 ], [ -123.704552366999906, 48.412630260000114 ], [ -123.704727153999968, 48.409027260000123 ], [ -123.704912283999988, 48.409031275000068 ], [ -123.704983224999964, 48.407568662000095 ], [ -123.705352176999966, 48.407576662000125 ], [ -123.706165554000023, 48.407594294000077 ], [ -123.70708521, 48.408027908000136 ], [ -123.707857390999948, 48.408176004000033 ], [ -123.708915992999962, 48.408503608000025 ], [ -123.709354817999895, 48.408714831000069 ], [ -123.71099889199999, 48.409506193000048 ], [ -123.711869797999981, 48.410068808000055 ], [ -123.712679690999934, 48.410936100000065 ], [ -123.712834192999978, 48.411376198000085 ], [ -123.71275811199996, 48.412591000000127 ], [ -123.712838413999975, 48.413543794000063 ], [ -123.712885995999926, 48.41510051300007 ], [ -123.713143803999927, 48.416043305000123 ], [ -123.712936993999946, 48.417672599000056 ], [ -123.713077695, 48.419102502000072 ], [ -123.713973290999888, 48.420355793000084 ], [ -123.715187108999913, 48.421086497000069 ], [ -123.71580970199993, 48.422126100000057 ], [ -123.715588275999963, 48.42272999500009 ], [ -123.714871703999947, 48.423706992000092 ], [ -123.71428518399999, 48.424241104000018 ], [ -123.713467118999958, 48.425641105000118 ], [ -123.71278539099994, 48.427146494000084 ], [ -123.712637195, 48.428164795000093 ], [ -123.71246713499994, 48.428326085000045 ], [ -123.71191709599999, 48.428399115000097 ], [ -123.71095576, 48.428344814000106 ], [ -123.711060631999942, 48.426177806000133 ], [ -123.71110721, 48.425215268000102 ], [ -123.711801875999981, 48.42523028400003 ], [ -123.71186691099993, 48.425231689000093 ], [ -123.711869211999925, 48.425184133000094 ], [ -123.711924843999896, 48.424034084000041 ], [ -123.712799570999962, 48.424052985000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "496557834", "BldgCostT": "325808334", "sL_LossRatio": "0.935586964921944", "sL_AssetLoss": "668979.5", "sL_BldgLoss": "625888.5", "sL_StrLoss": "528777.7", "sL_NStrLoss": "97110.8", "sL_ContLoss": "43091", "geom_point": "0101000020E610000086C4886D20EE5EC036FDBFA82C324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.720457651999979, 48.400497483000038 ], [ -123.720446217999921, 48.399687857000075 ], [ -123.720040940999965, 48.399690394000068 ], [ -123.720033322999896, 48.399150643000084 ], [ -123.719222776999985, 48.399155713000063 ], [ -123.71922658199999, 48.399425588000049 ], [ -123.717200202999933, 48.399438237000041 ], [ -123.717196408999911, 48.399168362000054 ], [ -123.71679113499999, 48.399170887 ], [ -123.716768386999959, 48.39755163300002 ], [ -123.71838942899997, 48.397541523000093 ], [ -123.718393229999919, 48.397811399000076 ], [ -123.72001428099999, 48.397801265000034 ], [ -123.720018087999932, 48.398071140000113 ], [ -123.720423352999902, 48.39806860300007 ], [ -123.72041954299999, 48.397798729000066 ], [ -123.720824804999907, 48.397796191000033 ], [ -123.720817179, 48.39725643900006 ], [ -123.720411922999986, 48.397258978000103 ], [ -123.720404300999945, 48.396719227000091 ], [ -123.719999047, 48.39672176300013 ], [ -123.719995238999957, 48.396451887000062 ], [ -123.71958998599996, 48.396454424000119 ], [ -123.719586180999954, 48.396184548000072 ], [ -123.71877568099994, 48.396189613000132 ], [ -123.718771879999935, 48.395919737000078 ], [ -123.71796138399999, 48.395924798000067 ], [ -123.71796518299999, 48.396194674000114 ], [ -123.717559930999968, 48.396197202000053 ], [ -123.717563725999952, 48.396467078000079 ], [ -123.715537464, 48.396479698000093 ], [ -123.715541248999941, 48.396749574000097 ], [ -123.715135994999983, 48.396752093000039 ], [ -123.71513977799999, 48.397021969000072 ], [ -123.714734521999972, 48.397024487000074 ], [ -123.71473830199993, 48.397294364000075 ], [ -123.714333041999936, 48.397296880000098 ], [ -123.714336820999947, 48.397566756000039 ], [ -123.712310513999938, 48.397579319000101 ], [ -123.712318049999936, 48.398119071000089 ], [ -123.712723313999916, 48.398116561000094 ], [ -123.712734624999953, 48.398926188000054 ], [ -123.712329352999987, 48.39892869900013 ], [ -123.712336888999957, 48.39946845 ], [ -123.709905228999901, 48.399483480000086 ], [ -123.709901473999949, 48.399213604000067 ], [ -123.7094962, 48.399216104000082 ], [ -123.70948532099996, 48.398433836000038 ], [ -123.704426202999983, 48.398324199000058 ], [ -123.704473080999946, 48.397357675000059 ], [ -123.704201547999958, 48.397359338000101 ], [ -123.704205272999957, 48.397629213000052 ], [ -123.704161522999982, 48.397629481000067 ], [ -123.704117618999973, 48.398534581000035 ], [ -123.703812375000012, 48.39852795700002 ], [ -123.703814901, 48.398711199000012 ], [ -123.703734358999967, 48.398711692000113 ], [ -123.703716846999953, 48.399072641000025 ], [ -123.704245330999981, 48.399084109000164 ], [ -123.70421023599998, 48.399807600000024 ], [ -123.702160679000016, 48.399629294000057 ], [ -123.701573916999976, 48.399298895000051 ], [ -123.70142121399995, 48.398967094000106 ], [ -123.701481615999953, 48.398489894000157 ], [ -123.702202099999965, 48.397747902000042 ], [ -123.703071512999955, 48.39722950500002 ], [ -123.704320798999959, 48.39663711000005 ], [ -123.705422819999953, 48.396298099000077 ], [ -123.705904597999904, 48.395989006000057 ], [ -123.706657693999929, 48.395660007000089 ], [ -123.70797559499999, 48.394681457000054 ], [ -123.707970136999904, 48.39479415300012 ], [ -123.709029757999957, 48.394817103000015 ], [ -123.709012168999891, 48.393551201000051 ], [ -123.709417397999928, 48.393548704000054 ], [ -123.709406141999935, 48.392739074000119 ], [ -123.709000918999962, 48.392741572000034 ], [ -123.708998751999943, 48.392585500000102 ], [ -123.70865479299998, 48.392578051000072 ], [ -123.708353893999941, 48.391413114000102 ], [ -123.70738498899999, 48.389709694000075 ], [ -123.707749709999945, 48.389617091000055 ], [ -123.707992188999953, 48.389642804000026 ], [ -123.708413582000034, 48.389829292000094 ], [ -123.708710392999976, 48.389827901000096 ], [ -123.708628091999969, 48.389711099000088 ], [ -123.708166590999923, 48.389515999000018 ], [ -123.707810857999945, 48.389397534000047 ], [ -123.706917580999971, 48.389100102000015 ], [ -123.706008297999944, 48.388701390000087 ], [ -123.705592601999939, 48.388196698000101 ], [ -123.705485114999973, 48.388066200000068 ], [ -123.705620619999976, 48.387164602000048 ], [ -123.705612753999972, 48.387145790000034 ], [ -123.705496696999944, 48.386868387000042 ], [ -123.705015697999954, 48.386278812000121 ], [ -123.704647993999941, 48.386092197000082 ], [ -123.704105193000018, 48.385959795000034 ], [ -123.703159004999947, 48.385857206000125 ], [ -123.703057632999958, 48.385819375000032 ], [ -123.703111986, 48.38577254800002 ], [ -123.704393510999978, 48.384668597000029 ], [ -123.704791890999957, 48.384374292000096 ], [ -123.705264002999968, 48.384089606000053 ], [ -123.705743960999911, 48.383863561000091 ], [ -123.70678731699999, 48.383372196000096 ], [ -123.708201816999946, 48.382705998000041 ], [ -123.708325185999968, 48.382650870000134 ], [ -123.709466385999974, 48.382141009000065 ], [ -123.709890105999989, 48.382846476000033 ], [ -123.71003651599996, 48.383090199000037 ], [ -123.710144149999977, 48.383037969000128 ], [ -123.711507049999938, 48.382376743000073 ], [ -123.711845958999959, 48.382212314000085 ], [ -123.712916855999978, 48.381692662000042 ], [ -123.713505760999979, 48.382627329000115 ], [ -123.713744734, 48.383006662000085 ], [ -123.713906588, 48.383263547000055 ], [ -123.714222139999961, 48.38376439200006 ], [ -123.714725963999967, 48.384563924000105 ], [ -123.715393087999956, 48.385622689000037 ], [ -123.716879082999966, 48.385191290000165 ], [ -123.717372357999963, 48.385048408000053 ], [ -123.71816808899996, 48.384817908000102 ], [ -123.720745492999981, 48.384138496000048 ], [ -123.721388003999948, 48.383924198000123 ], [ -123.721643719999946, 48.383982939000148 ], [ -123.721942596999895, 48.384051597000045 ], [ -123.722112392, 48.384135499000074 ], [ -123.722551879999969, 48.384750013 ], [ -123.722877178999923, 48.385272803000063 ], [ -123.723592667999981, 48.386427101000088 ], [ -123.723859115999943, 48.386856634000011 ], [ -123.725057615999972, 48.38884366100006 ], [ -123.725568272999922, 48.389661708000077 ], [ -123.725717413999973, 48.389652331000093 ], [ -123.725888730999955, 48.389641530000112 ], [ -123.727018308999945, 48.389308319000079 ], [ -123.72712852599993, 48.389275815000126 ], [ -123.727928797999965, 48.389039726000085 ], [ -123.728147222999894, 48.388975536000075 ], [ -123.730013806999963, 48.388427080000064 ], [ -123.730575414, 48.388266279000085 ], [ -123.731282108999892, 48.388063896000084 ], [ -123.731306003000014, 48.388057257000106 ], [ -123.733632544999978, 48.387411143000065 ], [ -123.733868192999964, 48.38734570600014 ], [ -123.733992690999983, 48.387616996000069 ], [ -123.734475216999925, 48.388152221000055 ], [ -123.734985649999885, 48.389175722000111 ], [ -123.735138960999961, 48.3894611710001 ], [ -123.735222475999961, 48.389616693000029 ], [ -123.735246960000012, 48.38966226600013 ], [ -123.735294412, 48.389750605000089 ], [ -123.735384443999919, 48.389918218000062 ], [ -123.735402598999897, 48.38995198300006 ], [ -123.735555009, 48.390235689000065 ], [ -123.735650763999985, 48.390336131000019 ], [ -123.735965822, 48.390666512000109 ], [ -123.736378204999966, 48.390950405000076 ], [ -123.737130902999937, 48.391417291000025 ], [ -123.737582081999932, 48.39176509400005 ], [ -123.738043317999981, 48.392185305000062 ], [ -123.738334786999957, 48.392798314000075 ], [ -123.738352952999961, 48.392847509000077 ], [ -123.738508707999941, 48.393269176000047 ], [ -123.738525798999945, 48.393315519000069 ], [ -123.738590109999947, 48.393444357000099 ], [ -123.738675913999913, 48.393616295000108 ], [ -123.738979589999985, 48.39397530100009 ], [ -123.73927740399999, 48.394231495000078 ], [ -123.739435942999975, 48.394316637000045 ], [ -123.739658602999967, 48.394436200000065 ], [ -123.739953976999942, 48.39454300400017 ], [ -123.740148884999911, 48.394613507000017 ], [ -123.740895097999982, 48.394805359000017 ], [ -123.741005297999948, 48.394833695000109 ], [ -123.741416599999951, 48.395084206000021 ], [ -123.741833003999901, 48.395285100000088 ], [ -123.742670382, 48.395470955000086 ], [ -123.742718805999985, 48.395481699000051 ], [ -123.743368492999949, 48.395597397000117 ], [ -123.74377889499999, 48.395727001000076 ], [ -123.744166191999952, 48.395889495000027 ], [ -123.744947198999967, 48.396388504000107 ], [ -123.745248087999968, 48.396525703000052 ], [ -123.745838478999971, 48.396668991000105 ], [ -123.746104186999943, 48.396667390000097 ], [ -123.746158602999955, 48.396995906000022 ], [ -123.746133471999897, 48.397080220000113 ], [ -123.746110511999973, 48.397157196000101 ], [ -123.74561061599999, 48.397746195000117 ], [ -123.745584883000021, 48.397862003000128 ], [ -123.745623400999989, 48.397987193000077 ], [ -123.746042775999911, 48.398296404000092 ], [ -123.746222193, 48.398521096000117 ], [ -123.74638808899999, 48.398831304000069 ], [ -123.746469883000017, 48.399094506000054 ], [ -123.746468014999977, 48.399134324000087 ], [ -123.746458104999959, 48.399342186000062 ], [ -123.746366912999946, 48.39955848400006 ], [ -123.74621497399994, 48.39968131600002 ], [ -123.746193092999945, 48.399699003000116 ], [ -123.745945418999924, 48.399803798000036 ], [ -123.74567312, 48.399859296000059 ], [ -123.745450382999934, 48.399860440000083 ], [ -123.745399283999959, 48.399860696000083 ], [ -123.744058312999968, 48.399651806000129 ], [ -123.742552819999943, 48.398990297000068 ], [ -123.742512453999922, 48.398982634000092 ], [ -123.742423053999943, 48.398965617000059 ], [ -123.742355104999945, 48.398952699000056 ], [ -123.742136022999929, 48.398966007000055 ], [ -123.740843008999946, 48.399335182000108 ], [ -123.740808996999974, 48.399354340000073 ], [ -123.740533009000018, 48.399509661000096 ], [ -123.740347910999958, 48.399281807000108 ], [ -123.740122943999964, 48.399167050000052 ], [ -123.739982117999944, 48.399095196000076 ], [ -123.739696611999975, 48.399088095000089 ], [ -123.739214793999963, 48.399316001000031 ], [ -123.738857090999943, 48.399326989000045 ], [ -123.73638782099999, 48.40006924100004 ], [ -123.736411027999964, 48.399584011000151 ], [ -123.737742464999954, 48.399612485000063 ], [ -123.73775813599994, 48.399284634000061 ], [ -123.736140116999977, 48.399250030000118 ], [ -123.736291495999922, 48.396085014000064 ], [ -123.735726687999957, 48.396072928000123 ], [ -123.735790806999901, 48.394732558000079 ], [ -123.735776668999932, 48.394732649000062 ], [ -123.73577501699998, 48.394618064000042 ], [ -123.734192818999958, 48.394584193000107 ], [ -123.734228290999923, 48.393843143000055 ], [ -123.733856750999962, 48.393835186000054 ], [ -123.73388018599999, 48.393345674000031 ], [ -123.732703137999977, 48.39332045700008 ], [ -123.732748105, 48.392381662000091 ], [ -123.731284510999899, 48.392350287000028 ], [ -123.731288119999959, 48.392602070000116 ], [ -123.730477678999989, 48.392607218000066 ], [ -123.73049699499991, 48.393956594000024 ], [ -123.728876069999927, 48.393966874000128 ], [ -123.728864505999965, 48.393157248000122 ], [ -123.728459279999925, 48.39315981400005 ], [ -123.728451575999955, 48.392620064000091 ], [ -123.727641134999971, 48.392625193000072 ], [ -123.72763609799992, 48.392271988000125 ], [ -123.727414204999917, 48.392267222000058 ], [ -123.727422867999962, 48.392086774000106 ], [ -123.727228222999926, 48.392088004000115 ], [ -123.727224376999985, 48.39181812900005 ], [ -123.726819162999973, 48.391820689000085 ], [ -123.726817748999906, 48.391721449000087 ], [ -123.726754366999927, 48.391720087000067 ], [ -123.726741046999976, 48.391997443000115 ], [ -123.723284810999971, 48.391923122000023 ], [ -123.723264628999971, 48.392342728000102 ], [ -123.71787795699997, 48.392226670000042 ], [ -123.717907843999939, 48.391606741000096 ], [ -123.717900632999971, 48.391606786000118 ], [ -123.71789586599999, 48.391267825000028 ], [ -123.715463649999947, 48.391215331000083 ], [ -123.71547691899994, 48.392161684000015 ], [ -123.71466648199997, 48.392166720000034 ], [ -123.714670261999956, 48.39243659600001 ], [ -123.715075481999989, 48.392434078000122 ], [ -123.715098171999969, 48.394053335000052 ], [ -123.71550340499999, 48.39405081400016 ], [ -123.715507189999983, 48.39432069100009 ], [ -123.716317659999959, 48.394315648000024 ], [ -123.716321448999963, 48.394585524000128 ], [ -123.717131923999929, 48.394580475000055 ], [ -123.717135716999962, 48.394850351000059 ], [ -123.718756672999987, 48.394840235000068 ], [ -123.718752871999968, 48.394570359000049 ], [ -123.71996858299994, 48.394562759000038 ], [ -123.719964775, 48.394292883000112 ], [ -123.721990947999984, 48.394280186000039 ], [ -123.721994767999931, 48.394550062000171 ], [ -123.722805239999957, 48.394544973000073 ], [ -123.722809060999936, 48.394814848000117 ], [ -123.723619538999955, 48.394809754000065 ], [ -123.723623366999945, 48.395079629000065 ], [ -123.72402860699999, 48.395077080000107 ], [ -123.724040095999939, 48.395886706000063 ], [ -123.72363484899995, 48.395889255000078 ], [ -123.72363867599995, 48.396159130000036 ], [ -123.724043923999929, 48.396156581000071 ], [ -123.72405158399999, 48.396696331000108 ], [ -123.724862090999977, 48.396691227000062 ], [ -123.724885094999976, 48.398310480000127 ], [ -123.724479828999932, 48.398313032000118 ], [ -123.724483661999969, 48.398582907000097 ], [ -123.724078391999939, 48.398585458000078 ], [ -123.724086052999937, 48.399125209000069 ], [ -123.722870233999984, 48.399132854000101 ], [ -123.72288553099996, 48.400212354000082 ], [ -123.722074966999969, 48.400217444000077 ], [ -123.722078787999962, 48.400487320000124 ], [ -123.720457651999979, 48.400497483000038 ] ], [ [ -123.714249931999944, 48.391359609000055 ], [ -123.714246154999913, 48.391089732000118 ], [ -123.715227722999927, 48.39108363400004 ], [ -123.715261924999979, 48.390374982000068 ], [ -123.714029243999988, 48.390348353000057 ], [ -123.714029156999985, 48.390350162000104 ], [ -123.714007330999948, 48.390349690000093 ], [ -123.713964902999919, 48.391228261000045 ], [ -123.713069852999965, 48.391208917000078 ], [ -123.713062215999983, 48.391366975000103 ], [ -123.714249931999944, 48.391359609000055 ] ], [ [ -123.71296643299999, 48.386509374000099 ], [ -123.71296324199993, 48.386280988000102 ], [ -123.712955123999947, 48.385699745000096 ], [ -123.7133602899999, 48.385697233000073 ], [ -123.713352747999934, 48.385157480000046 ], [ -123.713757910999945, 48.385154968000052 ], [ -123.713742815999979, 48.384075462000041 ], [ -123.713337662999962, 48.384077974000014 ], [ -123.713330119999938, 48.383538222000091 ], [ -123.712924968999971, 48.383540733000125 ], [ -123.712921199999982, 48.383270857000099 ], [ -123.712516052999945, 48.383273366000012 ], [ -123.712523586999936, 48.383813119000102 ], [ -123.712386930999941, 48.383813966000012 ], [ -123.71237285, 48.384105422000111 ], [ -123.71160108399998, 48.384088728000037 ], [ -123.711311890999966, 48.38409051700004 ], [ -123.711319412999927, 48.384630271000084 ], [ -123.710914253999931, 48.384632774000124 ], [ -123.710918010999961, 48.384902651000118 ], [ -123.710818604999957, 48.38490326600003 ], [ -123.71077944299999, 48.385713208000062 ], [ -123.7109292869999, 48.38571228100011 ], [ -123.710932257999914, 48.385925494000112 ], [ -123.712446658999909, 48.385958254000045 ], [ -123.712431252999934, 48.386277105000048 ], [ -123.712419864999973, 48.38651276100007 ], [ -123.71296643299999, 48.386509374000099 ], [ -123.712968081, 48.386627365000074 ], [ -123.71305477599995, 48.386629240000076 ], [ -123.71305037899999, 48.38672028400002 ], [ -123.713656971999939, 48.386733396000047 ], [ -123.715401351999915, 48.386771083000092 ], [ -123.715393690999946, 48.386224407000029 ], [ -123.714583348999966, 48.38622944400003 ], [ -123.714587125999969, 48.386499320000063 ], [ -123.713393955999933, 48.386506725000096 ], [ -123.71296643299999, 48.386509374000099 ] ], [ [ -123.70987348599999, 48.397202006000093 ], [ -123.709815302999985, 48.398404438000064 ], [ -123.70989020899998, 48.398403975000051 ], [ -123.70987348599999, 48.397202006000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.985556569928601", "sL_AssetLoss": "4830.57", "sL_BldgLoss": "4760.8", "sL_StrLoss": "4353", "sL_NStrLoss": "407.8", "sL_ContLoss": "69.77", "geom_point": "0101000020E61000008562C83D1FEE5EC08A153D094F384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.719479588999917, 48.439809111000116 ], [ -123.719176418999922, 48.439406102000042 ], [ -123.719272087999983, 48.438514504000082 ], [ -123.719098819999928, 48.43828605300012 ], [ -123.72065673500002, 48.438319593000138 ], [ -123.720584801999948, 48.439811836000054 ], [ -123.722082569999927, 48.439844060000063 ], [ -123.721971412999935, 48.44215133600008 ], [ -123.721903684999987, 48.44202519600001 ], [ -123.721134590999895, 48.44121051000014 ], [ -123.719479588999917, 48.439809111000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10338500", "BldgCostT": "7130000", "sL_LossRatio": "0.987548593442975", "sL_AssetLoss": "8010.34", "sL_BldgLoss": "7910.6", "sL_StrLoss": "7353.7", "sL_NStrLoss": "556.9", "sL_ContLoss": "99.74", "geom_point": "0101000020E6100000EDF82F1004EE5EC0EAEA4CA964384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.716823953999949, 48.438237035000071 ], [ -123.718726386999961, 48.43827803100006 ], [ -123.71875530599999, 48.438302309000044 ], [ -123.718880596999952, 48.438534413000106 ], [ -123.7188220889999, 48.439146901000107 ], [ -123.718924083999966, 48.439812 ], [ -123.719828106999941, 48.440508387000136 ], [ -123.7203461, 48.440874406000056 ], [ -123.720474809999985, 48.441323010000161 ], [ -123.720723616999976, 48.44169049800005 ], [ -123.72154590199996, 48.442539302000107 ], [ -123.721945292999948, 48.442693465000097 ], [ -123.72191730099999, 48.443274462000076 ], [ -123.721375431999917, 48.442902042000128 ], [ -123.719861568999988, 48.442466500000144 ], [ -123.71902825599993, 48.442009804000122 ], [ -123.717941201, 48.44094347000005 ], [ -123.717423739999944, 48.440208892000093 ], [ -123.716823953999949, 48.438237035000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.988057825267128", "sL_AssetLoss": "954.6", "sL_BldgLoss": "943.2", "sL_StrLoss": "873", "sL_NStrLoss": "70.2", "sL_ContLoss": "11.4", "geom_point": "0101000020E61000002708475E10ED5EC0E2FC55998C314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.703924517999909, 48.387301119000057 ], [ -123.703279952999964, 48.386531241000078 ], [ -123.704389594999924, 48.386965196000034 ], [ -123.704667521999951, 48.387164366000071 ], [ -123.704675803999947, 48.387170289000046 ], [ -123.704734523999903, 48.387449504000145 ], [ -123.704611755999963, 48.387590999000054 ], [ -123.703924517999909, 48.387301119000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5239333", "BldgCostT": "3613333", "sL_LossRatio": "0.960418691778583", "sL_AssetLoss": "9454.21", "sL_BldgLoss": "9080", "sL_StrLoss": "7876.3", "sL_NStrLoss": "1203.7", "sL_ContLoss": "374.21", "geom_point": "0101000020E6100000EF558E3D79EE5EC0288A462D83324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.725255835999945, 48.395879049000015 ], [ -123.725217479999984, 48.393180295000029 ], [ -123.726433155, 48.393172625000076 ], [ -123.726436997999883, 48.393442501000031 ], [ -123.726842224999984, 48.393439942000029 ], [ -123.726857601999924, 48.394519443000021 ], [ -123.72726283799993, 48.394516881000065 ], [ -123.727282069999916, 48.395866258000112 ], [ -123.725255835999945, 48.395879049000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77155168", "BldgCostT": "52946668", "sL_LossRatio": "0.955758622810059", "sL_AssetLoss": "156769.08", "sL_BldgLoss": "149833.4", "sL_StrLoss": "127691.4", "sL_NStrLoss": "22142", "sL_ContLoss": "6935.68", "geom_point": "0101000020E61000008F016595CAED5EC0BA3A9546AB354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.715823713999953, 48.423053306000035 ], [ -123.716152307999963, 48.422375392000085 ], [ -123.716201707999929, 48.422060606000059 ], [ -123.71614239299997, 48.421718792000021 ], [ -123.715304391999894, 48.420699090000042 ], [ -123.715043498999975, 48.420494002000062 ], [ -123.71452881299993, 48.420415694000063 ], [ -123.713965888999937, 48.419843093000082 ], [ -123.713483501999974, 48.419054107000129 ], [ -123.713386106999934, 48.417886300000085 ], [ -123.713480685999954, 48.415969306000157 ], [ -123.713253989999941, 48.414332909000045 ], [ -123.713242306999973, 48.412444307000108 ], [ -123.713307089999915, 48.411282210000145 ], [ -123.713055007999941, 48.410681206000099 ], [ -123.71252109299999, 48.410162798000073 ], [ -123.712386048999917, 48.41006167900008 ], [ -123.717727185999962, 48.410176987000106 ], [ -123.717590825999977, 48.413003880000133 ], [ -123.717444067, 48.41300407700006 ], [ -123.71747754299993, 48.413778366000074 ], [ -123.715417485999936, 48.413733923000038 ], [ -123.715404753999962, 48.413997596000094 ], [ -123.715463195, 48.413998858000134 ], [ -123.715448328999969, 48.414306726000078 ], [ -123.71552391100002, 48.414308356000049 ], [ -123.715499225, 48.414819603000062 ], [ -123.715659135999928, 48.414823055000056 ], [ -123.715616441999956, 48.415707293 ], [ -123.715781484000019, 48.415710855000107 ], [ -123.715719680999939, 48.416990880000121 ], [ -123.715825255, 48.416990223000056 ], [ -123.715829986999935, 48.417327232000019 ], [ -123.71711373, 48.417354924000058 ], [ -123.717037005999927, 48.418944854000081 ], [ -123.717701552999969, 48.418959183000013 ], [ -123.717857674999919, 48.422569257000134 ], [ -123.717598962999958, 48.422563680000088 ], [ -123.717588755999984, 48.422775220000062 ], [ -123.717866841999964, 48.42278121400004 ], [ -123.718022992999934, 48.426391265000056 ], [ -123.717207827999971, 48.426373692000055 ], [ -123.717141238999915, 48.427753368000062 ], [ -123.716381494999908, 48.427736984000028 ], [ -123.716323670999941, 48.428934584000096 ], [ -123.712518822000035, 48.42885245500004 ], [ -123.713066995999938, 48.427964002000117 ], [ -123.713108796999975, 48.427117995000053 ], [ -123.713425209999983, 48.426450007 ], [ -123.713875497999979, 48.425836186000041 ], [ -123.713953, 48.425547114000111 ], [ -123.714824700999912, 48.424165587000083 ], [ -123.715823713999953, 48.423053306000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33933083", "BldgCostT": "23138333", "sL_LossRatio": "0.984927934394111", "sL_AssetLoss": "32992.16", "sL_BldgLoss": "32494.9", "sL_StrLoss": "30131.7", "sL_NStrLoss": "2363.2", "sL_ContLoss": "497.26", "geom_point": "0101000020E6100000E19178797AED5EC0B1FB656200344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.711688006, 48.409538984000029 ], [ -123.7102042, 48.40873859800007 ], [ -123.708504003999977, 48.408037808000095 ], [ -123.706918706999915, 48.407641906 ], [ -123.706863032999962, 48.407609409000031 ], [ -123.7072357699999, 48.407617485000117 ], [ -123.707392704999947, 48.404378311000094 ], [ -123.708546621999972, 48.404403303000066 ], [ -123.708560775, 48.404111039000092 ], [ -123.713948777, 48.404227569000092 ], [ -123.7137747099999, 48.407830614000083 ], [ -123.712620706999971, 48.407805678000088 ], [ -123.712606577999949, 48.408097941000023 ], [ -123.710354005999989, 48.408049233000085 ], [ -123.71034229599999, 48.408291218000059 ], [ -123.710926726999929, 48.408303860000039 ], [ -123.710891885, 48.409024094000046 ], [ -123.71222082299991, 48.40905282900016 ], [ -123.712179522999989, 48.409907034000078 ], [ -123.711688006, 48.409538984000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150373500", "BldgCostT": "97350000", "sL_LossRatio": "0.836374226465175", "sL_AssetLoss": "440720.3", "sL_BldgLoss": "368607.1", "sL_StrLoss": "244711.1", "sL_NStrLoss": "123896", "sL_ContLoss": "72113.2", "geom_point": "0101000020E6100000612B263ED0ED5EC09F9AB270E5304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713505760999979, 48.382627329000115 ], [ -123.712916855999978, 48.381692662000042 ], [ -123.711845958999959, 48.382212314000085 ], [ -123.711507049999938, 48.382376743000073 ], [ -123.710144149999977, 48.383037969000128 ], [ -123.71003651599996, 48.383090199000037 ], [ -123.709890105999989, 48.382846476000033 ], [ -123.709466385999974, 48.382141009000065 ], [ -123.709857892999977, 48.381956192000096 ], [ -123.710582282999923, 48.381614197000033 ], [ -123.71016132299998, 48.380982905000067 ], [ -123.711102294999975, 48.380697590000054 ], [ -123.711073713999909, 48.380647146000122 ], [ -123.71082671399995, 48.380210998000074 ], [ -123.711494690999956, 48.379968406000039 ], [ -123.711719115999955, 48.379984101000083 ], [ -123.711703614999976, 48.379885505000111 ], [ -123.711792908999911, 48.379738600000096 ], [ -123.712102610999949, 48.379464899000041 ], [ -123.71261185399996, 48.379285264 ], [ -123.712756511999913, 48.379234229000069 ], [ -123.712825208999959, 48.379210006000072 ], [ -123.712902555999904, 48.379148095000055 ], [ -123.712951399999938, 48.379108990000184 ], [ -123.713304702999935, 48.378963403000057 ], [ -123.71346230099999, 48.37892743 ], [ -123.71378848099999, 48.378852995000067 ], [ -123.714388565999968, 48.378570548000084 ], [ -123.714583094999981, 48.378864712000073 ], [ -123.715041320999916, 48.379562701000019 ], [ -123.715310206999987, 48.379994086000075 ], [ -123.715349283999942, 48.380085494000085 ], [ -123.716087393999899, 48.379891916000119 ], [ -123.716371895999899, 48.379765670000062 ], [ -123.717743528000014, 48.379157091000131 ], [ -123.718232998999952, 48.378939891000108 ], [ -123.719346200999937, 48.380787295000061 ], [ -123.72025010599998, 48.382241538000095 ], [ -123.721224995999975, 48.383809798000065 ], [ -123.721388003999948, 48.383924198000123 ], [ -123.720745492999981, 48.384138496000048 ], [ -123.71816808899996, 48.384817908000102 ], [ -123.717372357999963, 48.385048408000053 ], [ -123.716879082999966, 48.385191290000165 ], [ -123.715393087999956, 48.385622689000037 ], [ -123.714725963999967, 48.384563924000105 ], [ -123.714222139999961, 48.38376439200006 ], [ -123.713906588, 48.383263547000055 ], [ -123.713744734, 48.383006662000085 ], [ -123.713505760999979, 48.382627329000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302447591", "BldgCostT": "190066361", "sL_LossRatio": "0.716586035908941", "sL_AssetLoss": "520219.18", "sL_BldgLoss": "372781.8", "sL_StrLoss": "229664", "sL_NStrLoss": "143117.8", "sL_ContLoss": "147437.38", "geom_point": "0101000020E6100000FC00A3EC69EE5EC0F9E0FE8EEE304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.719346200999937, 48.380787295000061 ], [ -123.718232998999952, 48.378939891000108 ], [ -123.718725976999949, 48.3787494870001 ], [ -123.719226666999958, 48.378652079000105 ], [ -123.720968421999942, 48.378558638000129 ], [ -123.721229086999983, 48.378544646000073 ], [ -123.721729220999933, 48.378513926000061 ], [ -123.722206586999974, 48.378404462000063 ], [ -123.722394222999981, 48.378361432000126 ], [ -123.722957446999914, 48.378083202 ], [ -123.723215450999959, 48.377903910000143 ], [ -123.723832609999931, 48.377315700000146 ], [ -123.724350606, 48.378034702000043 ], [ -123.724788911999951, 48.378785398000105 ], [ -123.725340595, 48.379727850000094 ], [ -123.725525495999946, 48.380030299000119 ], [ -123.725580227999956, 48.380067436000047 ], [ -123.725713516999988, 48.380157890000106 ], [ -123.725984183999955, 48.380273692000046 ], [ -123.726200531999936, 48.380332891000123 ], [ -123.72840930699999, 48.380937190000033 ], [ -123.729251114999954, 48.380931002000104 ], [ -123.729659098999889, 48.380927985000056 ], [ -123.729972089999976, 48.381004998000066 ], [ -123.73026119599993, 48.381160007000062 ], [ -123.730769412999962, 48.381662387000056 ], [ -123.730998697999908, 48.381799795000049 ], [ -123.731558379999967, 48.381987497000111 ], [ -123.731811801999967, 48.38207250100006 ], [ -123.732084301999933, 48.382291984000133 ], [ -123.732409963999913, 48.382612796000068 ], [ -123.732636153, 48.382786285000066 ], [ -123.732659427000016, 48.38280365800005 ], [ -123.732969268999966, 48.383035093000068 ], [ -123.733123195999923, 48.383198001000032 ], [ -123.733205586999929, 48.383420700000087 ], [ -123.732859220999927, 48.383476409000117 ], [ -123.732779855999937, 48.383516112000052 ], [ -123.732700375999954, 48.383555887000085 ], [ -123.732382392999966, 48.383862903000136 ], [ -123.732093612999947, 48.38401268300003 ], [ -123.73079098699999, 48.384671900000058 ], [ -123.729593587999886, 48.385272896000075 ], [ -123.729108124999939, 48.385474403000039 ], [ -123.728737897999949, 48.385550305000031 ], [ -123.727616242999957, 48.385582122000073 ], [ -123.726979714999985, 48.385645106000062 ], [ -123.726296710999989, 48.385777399000119 ], [ -123.725850932999933, 48.38591473300005 ], [ -123.72557159299997, 48.386000814000063 ], [ -123.725020794, 48.386243209000099 ], [ -123.723859115999943, 48.386856634000011 ], [ -123.723592667999981, 48.386427101000088 ], [ -123.722877178999923, 48.385272803000063 ], [ -123.722551879999969, 48.384750013 ], [ -123.722112392, 48.384135499000074 ], [ -123.721942596999895, 48.384051597000045 ], [ -123.721643719999946, 48.383982939000148 ], [ -123.721388003999948, 48.383924198000123 ], [ -123.721224995999975, 48.383809798000065 ], [ -123.72025010599998, 48.382241538000095 ], [ -123.719346200999937, 48.380787295000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131162166", "BldgCostT": "87036666", "sL_LossRatio": "0.91728074847159", "sL_AssetLoss": "213471.83", "sL_BldgLoss": "195813.6", "sL_StrLoss": "155836.6", "sL_NStrLoss": "39977", "sL_ContLoss": "17658.23", "geom_point": "0101000020E61000005C8320D5AAEE5EC0B13CA30884314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.732859220999927, 48.383476409000117 ], [ -123.733205586999929, 48.383420700000087 ], [ -123.733276283999913, 48.384278801000036 ], [ -123.73335017899997, 48.384848501000135 ], [ -123.733891625999931, 48.386560858000088 ], [ -123.733952995999957, 48.386754992000071 ], [ -123.733866407999983, 48.387073290000032 ], [ -123.733868192999964, 48.38734570600014 ], [ -123.733632544999978, 48.387411143000065 ], [ -123.731306003000014, 48.388057257000106 ], [ -123.731282108999892, 48.388063896000084 ], [ -123.730575414, 48.388266279000085 ], [ -123.730013806999963, 48.388427080000064 ], [ -123.728147222999894, 48.388975536000075 ], [ -123.727928797999965, 48.389039726000085 ], [ -123.72712852599993, 48.389275815000126 ], [ -123.727018308999945, 48.389308319000079 ], [ -123.725888730999955, 48.389641530000112 ], [ -123.725717413999973, 48.389652331000093 ], [ -123.725568272999922, 48.389661708000077 ], [ -123.725057615999972, 48.38884366100006 ], [ -123.723859115999943, 48.386856634000011 ], [ -123.725020794, 48.386243209000099 ], [ -123.72557159299997, 48.386000814000063 ], [ -123.725850932999933, 48.38591473300005 ], [ -123.726296710999989, 48.385777399000119 ], [ -123.726979714999985, 48.385645106000062 ], [ -123.727616242999957, 48.385582122000073 ], [ -123.728737897999949, 48.385550305000031 ], [ -123.729108124999939, 48.385474403000039 ], [ -123.729593587999886, 48.385272896000075 ], [ -123.73079098699999, 48.384671900000058 ], [ -123.732093612999947, 48.38401268300003 ], [ -123.732382392999966, 48.383862903000136 ], [ -123.732700375999954, 48.383555887000085 ], [ -123.732779855999937, 48.383516112000052 ], [ -123.732859220999927, 48.383476409000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115594000", "BldgCostT": "76300000", "sL_LossRatio": "0.918649958015443", "sL_AssetLoss": "232001.97", "sL_BldgLoss": "213128.6", "sL_StrLoss": "160499.7", "sL_NStrLoss": "52628.9", "sL_ContLoss": "18873.37", "geom_point": "0101000020E61000006D4008F116EF5EC032251FDC19314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.733818974999949, 48.382459942000025 ], [ -123.733048187999927, 48.381246841000078 ], [ -123.733929953999976, 48.380986526000065 ], [ -123.734145567999988, 48.380922863000066 ], [ -123.735172549999945, 48.380619666000044 ], [ -123.73596212599989, 48.381863813000123 ], [ -123.737712468, 48.381364728000108 ], [ -123.738149705, 48.381211779000061 ], [ -123.738728157999958, 48.382080776000073 ], [ -123.738927909999973, 48.382413299000042 ], [ -123.738972887, 48.382628875000144 ], [ -123.738831923999939, 48.383097457000069 ], [ -123.738836062999937, 48.383631372000117 ], [ -123.738741081999962, 48.383870101000078 ], [ -123.737937151999972, 48.385181145000082 ], [ -123.737643821999967, 48.385452604000122 ], [ -123.736859329999959, 48.385876757000091 ], [ -123.736337917999919, 48.386069391000092 ], [ -123.733952995999957, 48.386754992000071 ], [ -123.733891625999931, 48.386560858000088 ], [ -123.73335017899997, 48.384848501000135 ], [ -123.733276283999913, 48.384278801000036 ], [ -123.733205586999929, 48.383420700000087 ], [ -123.733123195999923, 48.383198001000032 ], [ -123.732969268999966, 48.383035093000068 ], [ -123.732659427000016, 48.38280365800005 ], [ -123.732636153, 48.382786285000066 ], [ -123.733818974999949, 48.382459942000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157512584", "BldgCostT": "100138334", "sL_LossRatio": "0.876296756224236", "sL_AssetLoss": "239828.23", "sL_BldgLoss": "210160.7", "sL_StrLoss": "158299.5", "sL_NStrLoss": "51861.2", "sL_ContLoss": "29667.53", "geom_point": "0101000020E6100000212C2AE2F4EE5EC0001C39DA8A304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.729972089999976, 48.381004998000066 ], [ -123.729659098999889, 48.380927985000056 ], [ -123.729251114999954, 48.380931002000104 ], [ -123.72840930699999, 48.380937190000033 ], [ -123.726200531999936, 48.380332891000123 ], [ -123.725984183999955, 48.380273692000046 ], [ -123.725713516999988, 48.380157890000106 ], [ -123.725580227999956, 48.380067436000047 ], [ -123.725525495999946, 48.380030299000119 ], [ -123.725340595, 48.379727850000094 ], [ -123.728829578999964, 48.378777571000043 ], [ -123.730207656999951, 48.378381110000049 ], [ -123.730480373999924, 48.378301708000059 ], [ -123.732380790999912, 48.377755405000066 ], [ -123.734275006999965, 48.377210812000079 ], [ -123.734527730999929, 48.377139593000109 ], [ -123.734810627999963, 48.377058068000046 ], [ -123.735425605999978, 48.376880838000069 ], [ -123.735459709999944, 48.376870995000026 ], [ -123.736935686999942, 48.37643280200011 ], [ -123.737805442999928, 48.376174542000072 ], [ -123.739933874999963, 48.375597863000088 ], [ -123.740397524999963, 48.376556403000087 ], [ -123.740541493999956, 48.376871510000093 ], [ -123.740563106999971, 48.377097389000056 ], [ -123.740516708999948, 48.377307406000071 ], [ -123.740295910999947, 48.377754392000028 ], [ -123.739042376999961, 48.377842198000089 ], [ -123.738662854999987, 48.377983455000049 ], [ -123.738302641999965, 48.378117518000124 ], [ -123.737903615999954, 48.378266005000043 ], [ -123.736576316999944, 48.378743408000098 ], [ -123.736955597999938, 48.379275567000064 ], [ -123.737352067999922, 48.379831820000035 ], [ -123.737605582999961, 48.380187504000062 ], [ -123.737734212999925, 48.380459 ], [ -123.738149705, 48.381211779000061 ], [ -123.737712468, 48.381364728000108 ], [ -123.73596212599989, 48.381863813000123 ], [ -123.735172549999945, 48.380619666000044 ], [ -123.734145567999988, 48.380922863000066 ], [ -123.733929953999976, 48.380986526000065 ], [ -123.733048187999927, 48.381246841000078 ], [ -123.733818974999949, 48.382459942000025 ], [ -123.732636153, 48.382786285000066 ], [ -123.732409963999913, 48.382612796000068 ], [ -123.732084301999933, 48.382291984000133 ], [ -123.731811801999967, 48.38207250100006 ], [ -123.731558379999967, 48.381987497000111 ], [ -123.730998697999908, 48.381799795000049 ], [ -123.730769412999962, 48.381662387000056 ], [ -123.73026119599993, 48.381160007000062 ], [ -123.729972089999976, 48.381004998000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188570834", "BldgCostT": "121033334", "sL_LossRatio": "0.857419213519097", "sL_AssetLoss": "414206.37", "sL_BldgLoss": "355148.5", "sL_StrLoss": "246493.3", "sL_NStrLoss": "108655.2", "sL_ContLoss": "59057.87", "geom_point": "0101000020E61000007FDFCF5BC2EE5EC081D736DE00304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.72813494799999, 48.370741651000095 ], [ -123.728724304999929, 48.370098722000137 ], [ -123.730788719999978, 48.370798611000055 ], [ -123.731895973999883, 48.371171357 ], [ -123.73229642699998, 48.371307099000063 ], [ -123.73278446099998, 48.37147085000008 ], [ -123.733180746999892, 48.371642067000067 ], [ -123.733926409999953, 48.371964239000121 ], [ -123.734609253999949, 48.372336858000047 ], [ -123.734992523999949, 48.372566067000101 ], [ -123.736226425, 48.373303986000046 ], [ -123.73670906199996, 48.373592584000065 ], [ -123.739347867999967, 48.375170529000059 ], [ -123.739933874999963, 48.375597863000088 ], [ -123.737805442999928, 48.376174542000072 ], [ -123.736935686999942, 48.37643280200011 ], [ -123.735459709999944, 48.376870995000026 ], [ -123.735425605999978, 48.376880838000069 ], [ -123.734810627999963, 48.377058068000046 ], [ -123.734527730999929, 48.377139593000109 ], [ -123.734275006999965, 48.377210812000079 ], [ -123.732380790999912, 48.377755405000066 ], [ -123.730480373999924, 48.378301708000059 ], [ -123.730207656999951, 48.378381110000049 ], [ -123.728829578999964, 48.378777571000043 ], [ -123.725340595, 48.379727850000094 ], [ -123.724788911999951, 48.378785398000105 ], [ -123.724350606, 48.378034702000043 ], [ -123.723832609999931, 48.377315700000146 ], [ -123.724697305999925, 48.376371300000095 ], [ -123.725014815999927, 48.375485401000041 ], [ -123.72510668699999, 48.37511580200006 ], [ -123.725277021999887, 48.374304674000022 ], [ -123.725361698999933, 48.373901290000028 ], [ -123.725473500999925, 48.373651181000085 ], [ -123.72597218099996, 48.373087501000022 ], [ -123.726201098999965, 48.3728401380001 ], [ -123.727308083999986, 48.371643696000028 ], [ -123.72813494799999, 48.370741651000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17045501", "BldgCostT": "11020001", "sL_LossRatio": "0.990301255908334", "sL_AssetLoss": "7921.438", "sL_BldgLoss": "7844.61", "sL_StrLoss": "7423.91", "sL_NStrLoss": "420.7", "sL_ContLoss": "76.828", "geom_point": "0101000020E61000000ADC1DC662ED5EC0210392131A2C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.709541411999922, 48.344156128000108 ], [ -123.709545158000012, 48.344426007000038 ], [ -123.710354838999962, 48.344421009000087 ], [ -123.710351088999914, 48.344151131000061 ], [ -123.709541411999922, 48.344156128000108 ], [ -123.709537666999935, 48.343886250000011 ], [ -123.709132830999948, 48.343888746000083 ], [ -123.709110368999916, 48.342269473000066 ], [ -123.710324837999977, 48.342261980000053 ], [ -123.71033608799999, 48.343071617000128 ], [ -123.710740916999981, 48.34306911500002 ], [ -123.710744669999954, 48.343338994000135 ], [ -123.71155433199999, 48.343333989000016 ], [ -123.711561843999931, 48.343873747000039 ], [ -123.711966680999964, 48.343871242000098 ], [ -123.711977956999974, 48.344680876000055 ], [ -123.71157311499995, 48.344683382000028 ], [ -123.711580628999954, 48.345223139000026 ], [ -123.711175783, 48.345225642000067 ], [ -123.711183292999962, 48.345765399000065 ], [ -123.710778441999935, 48.345767901000073 ], [ -123.710785946999962, 48.346307658000107 ], [ -123.710381091999977, 48.34631016 ], [ -123.710384843999989, 48.346580037000116 ], [ -123.709170270999934, 48.346587533000069 ], [ -123.7091515499999, 48.345238139000109 ], [ -123.70834185699999, 48.345243128000035 ], [ -123.70834559799999, 48.345513007000164 ], [ -123.708750444999936, 48.345510513000086 ], [ -123.708761672999955, 48.346320150000047 ], [ -123.708356815999977, 48.346322643000057 ], [ -123.708360555999931, 48.346592521000105 ], [ -123.707145983999951, 48.346599995000119 ], [ -123.707134783999919, 48.345790358000045 ], [ -123.706729932, 48.345792846000151 ], [ -123.706715006999943, 48.344713331000044 ], [ -123.707119850999945, 48.344710844000097 ], [ -123.707116116999927, 48.344440965000032 ], [ -123.707520956999957, 48.344438476000093 ], [ -123.707513485999954, 48.343898718000098 ], [ -123.706703812999933, 48.343903695000087 ], [ -123.706688889999953, 48.342824180000044 ], [ -123.707093717999967, 48.342821692000079 ], [ -123.707089985999971, 48.342551812000117 ], [ -123.708304460999926, 48.342544341000071 ], [ -123.70831941899992, 48.343623856000114 ], [ -123.707914585999958, 48.343626349000068 ], [ -123.707918322, 48.343896227000101 ], [ -123.708727993999915, 48.343891242000034 ], [ -123.708731735999933, 48.344161120000074 ], [ -123.709541411999922, 48.344156128000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993330993330993", "sL_AssetLoss": "569.8", "sL_BldgLoss": "566", "sL_StrLoss": "535", "sL_NStrLoss": "31", "sL_ContLoss": "3.8", "geom_point": "0101000020E610000025FD836994ED5EC0E654D746E12D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.711356375999969, 48.358201373000028 ], [ -123.712739392999978, 48.358125002000079 ], [ -123.712976331000021, 48.358202757000036 ], [ -123.712983402999924, 48.358709523000186 ], [ -123.711541294999932, 48.358718452000062 ], [ -123.711363029999944, 48.358679290000062 ], [ -123.711356375999969, 48.358201373000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "244342001", "BldgCostT": "156160001", "sL_LossRatio": "0.91215090052951", "sL_AssetLoss": "282296.69", "sL_BldgLoss": "257497.18", "sL_StrLoss": "205057.9", "sL_NStrLoss": "52439.28", "sL_ContLoss": "24799.51", "geom_point": "0101000020E610000025C5CF98ACEE5EC0C8764B93CE2E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.705654487999965, 48.382684095000037 ], [ -123.70601620799999, 48.382511703000056 ], [ -123.706449715999923, 48.382644201000033 ], [ -123.706919519999971, 48.382451905000075 ], [ -123.707240397999925, 48.382135685000094 ], [ -123.708754097999943, 48.381198614 ], [ -123.709713585999978, 48.380374000000153 ], [ -123.709803398999924, 48.38032123500011 ], [ -123.70981301099998, 48.380321176000038 ], [ -123.709902413999941, 48.380263063000058 ], [ -123.710719490999963, 48.379783014000083 ], [ -123.71116349099999, 48.379627696000043 ], [ -123.71176922099994, 48.379229488000057 ], [ -123.711770195, 48.379229482000035 ], [ -123.711993039999982, 48.379114161000132 ], [ -123.712052601999929, 48.379095953000082 ], [ -123.712052349999979, 48.379077949000177 ], [ -123.713054680999946, 48.378815892000013 ], [ -123.713914110999951, 48.378432802000042 ], [ -123.71403139899995, 48.378179297000031 ], [ -123.714715599999948, 48.377806194000115 ], [ -123.715057920999968, 48.377227905000019 ], [ -123.71540458199999, 48.37689320000004 ], [ -123.716143901999914, 48.37660981200009 ], [ -123.716541549999988, 48.376263423000061 ], [ -123.717038192999979, 48.37583079100007 ], [ -123.71822221399999, 48.375490396000039 ], [ -123.71862398899998, 48.375245403000164 ], [ -123.71896859499995, 48.374873699000098 ], [ -123.719215777999977, 48.374234197000078 ], [ -123.719836417999943, 48.374077600000085 ], [ -123.720414788999975, 48.37403771200006 ], [ -123.720966109999935, 48.373745707000133 ], [ -123.72291571699999, 48.373194607000045 ], [ -123.724358398999968, 48.372132087000118 ], [ -123.724592588999926, 48.372047098000039 ], [ -123.724582324, 48.372260703000052 ], [ -123.725325671999954, 48.372276695000032 ], [ -123.725323551999963, 48.372127421000052 ], [ -123.725640993999903, 48.372125418000046 ], [ -123.725726867999967, 48.372002255000083 ], [ -123.725725444999966, 48.371902075000044 ], [ -123.725033223999944, 48.371887186000073 ], [ -123.725594503999957, 48.371683485000034 ], [ -123.726211411999884, 48.371355905000016 ], [ -123.726462995999924, 48.371048288000111 ], [ -123.726710995999937, 48.370488609000041 ], [ -123.726862302999962, 48.369615484000079 ], [ -123.727692991999959, 48.369178313000063 ], [ -123.727703607999942, 48.369053001000047 ], [ -123.728048895999962, 48.368672707000087 ], [ -123.728254655999962, 48.368129862000075 ], [ -123.728322595999884, 48.36795061200008 ], [ -123.72929391699999, 48.366946598000119 ], [ -123.730457112999929, 48.366173206000092 ], [ -123.731111098999989, 48.365612086000112 ], [ -123.731279002999912, 48.365097902000059 ], [ -123.73197011299996, 48.364347401000096 ], [ -123.731972215999946, 48.363447306000083 ], [ -123.731563080999933, 48.362280793000046 ], [ -123.730186988999947, 48.361362196000037 ], [ -123.729316305999973, 48.360972008000047 ], [ -123.728625809, 48.360769788000084 ], [ -123.727030182999926, 48.360627291000114 ], [ -123.725892910999946, 48.360382389000051 ], [ -123.725593508999964, 48.360248490000103 ], [ -123.725561290999963, 48.359772787000075 ], [ -123.726164811999951, 48.358572196000082 ], [ -123.726119398999941, 48.357348815000087 ], [ -123.726369011999935, 48.356878806000083 ], [ -123.72630180799996, 48.356780607000104 ], [ -123.725460599999963, 48.356605395000074 ], [ -123.724827804999961, 48.356646701000123 ], [ -123.723835598999983, 48.357110986000116 ], [ -123.723694907999985, 48.357236259000096 ], [ -123.723709874999898, 48.356924762000062 ], [ -123.723885414999955, 48.356928542000105 ], [ -123.723893548999953, 48.356759235000091 ], [ -123.724688601999972, 48.356421611000023 ], [ -123.725944513999963, 48.35637750000005 ], [ -123.726415592999928, 48.356293508000171 ], [ -123.727195407999915, 48.356028609000099 ], [ -123.727682479999956, 48.355651944000059 ], [ -123.727981889999981, 48.355420401000067 ], [ -123.73019481299994, 48.35537059100006 ], [ -123.7316058899999, 48.354849294000054 ], [ -123.732648906999898, 48.354175709000096 ], [ -123.733185179999936, 48.354068578000117 ], [ -123.734089208999947, 48.353887997000129 ], [ -123.7350733899999, 48.353846691000122 ], [ -123.736528500999952, 48.354647086000099 ], [ -123.737775805999931, 48.355015997000073 ], [ -123.739140990999928, 48.355034487000047 ], [ -123.739395498999954, 48.354943304000095 ], [ -123.739836508999986, 48.354571592000077 ], [ -123.740008291, 48.354531908000055 ], [ -123.739920119999937, 48.356380207000051 ], [ -123.743728243999982, 48.356355647000065 ], [ -123.743729037999969, 48.356410195000088 ], [ -123.74428780699999, 48.356422119000058 ], [ -123.745517098999926, 48.357214904000031 ], [ -123.746345607999928, 48.357615102000068 ], [ -123.747292810999966, 48.357807401000095 ], [ -123.748144085999968, 48.357828809000061 ], [ -123.748575893999956, 48.357771809000035 ], [ -123.749539386, 48.357278995000087 ], [ -123.749703112999953, 48.357277596000102 ], [ -123.750383711999945, 48.357777496000061 ], [ -123.751649177000019, 48.358425498000017 ], [ -123.752751423999968, 48.358850994000093 ], [ -123.75279406199999, 48.358867453000073 ], [ -123.751172390999926, 48.359438112000099 ], [ -123.745909104999924, 48.361045 ], [ -123.74536829299997, 48.360571821000143 ], [ -123.744940384999921, 48.360197403000058 ], [ -123.74370761199998, 48.359183702000109 ], [ -123.743377606, 48.359068380000025 ], [ -123.743604711999978, 48.35851418600005 ], [ -123.743797903999962, 48.358078190000093 ], [ -123.743823811999931, 48.357902890000062 ], [ -123.743748895999914, 48.35774981800008 ], [ -123.743584188999947, 48.357616495000073 ], [ -123.743374797999962, 48.357544403000112 ], [ -123.743191512999942, 48.357517892 ], [ -123.742971388999933, 48.35752850100009 ], [ -123.742334698999954, 48.357688997000025 ], [ -123.741292404000021, 48.35793718500004 ], [ -123.740202096999937, 48.358201597000118 ], [ -123.739929003999976, 48.357657408000179 ], [ -123.740028375999898, 48.35698499800008 ], [ -123.739738100999901, 48.356972495000058 ], [ -123.739460722999965, 48.356998095000051 ], [ -123.73810477699999, 48.35732529400012 ], [ -123.736833813999951, 48.357649793000029 ], [ -123.736407987999954, 48.35773719200008 ], [ -123.735743996999972, 48.357763509000101 ], [ -123.735688322999962, 48.357778247000049 ], [ -123.734168093999955, 48.358180702000055 ], [ -123.734054497999921, 48.358302691000048 ], [ -123.735328686999949, 48.358785406000017 ], [ -123.735692693999965, 48.358976206000058 ], [ -123.735781655999986, 48.359057730000167 ], [ -123.735899194999917, 48.359165495000077 ], [ -123.735913731, 48.35918654600011 ], [ -123.736833708999967, 48.360519932000059 ], [ -123.736910900999931, 48.360631788000092 ], [ -123.737047057999945, 48.361038740000083 ], [ -123.737062428999963, 48.361084708000163 ], [ -123.737071278999977, 48.361111108000024 ], [ -123.737200328, 48.361496870000082 ], [ -123.737539736999963, 48.36251121600008 ], [ -123.737605308999932, 48.362707209000135 ], [ -123.737450369999934, 48.362977810000103 ], [ -123.737105516, 48.363580193000089 ], [ -123.736976205999937, 48.363832582000036 ], [ -123.736918610999965, 48.364052283000049 ], [ -123.736931816000023, 48.36425461699999 ], [ -123.73692940199993, 48.364305088 ], [ -123.736993995999967, 48.36450389500002 ], [ -123.737110853000019, 48.364711331000109 ], [ -123.737288488999951, 48.365026595000096 ], [ -123.73731441299999, 48.365072597000058 ], [ -123.737341085999972, 48.365212510000056 ], [ -123.737368288999946, 48.365355094000044 ], [ -123.737357177999939, 48.365587492000053 ], [ -123.737301311999929, 48.365771204000033 ], [ -123.73499095199999, 48.366187887000066 ], [ -123.73402794699993, 48.366659628000107 ], [ -123.732830002999933, 48.367000954000048 ], [ -123.731758792000022, 48.367368429000052 ], [ -123.731102924999917, 48.367671778000087 ], [ -123.730688334999968, 48.367972183000077 ], [ -123.729860604999914, 48.368853469000108 ], [ -123.729491631999963, 48.369257816000143 ], [ -123.728724304999929, 48.370098722000137 ], [ -123.72813494799999, 48.370741651000095 ], [ -123.727308083999986, 48.371643696000028 ], [ -123.726201098999965, 48.3728401380001 ], [ -123.72597218099996, 48.373087501000022 ], [ -123.725473500999925, 48.373651181000085 ], [ -123.725361698999933, 48.373901290000028 ], [ -123.725277021999887, 48.374304674000022 ], [ -123.72510668699999, 48.37511580200006 ], [ -123.725014815999927, 48.375485401000041 ], [ -123.724697305999925, 48.376371300000095 ], [ -123.723832609999931, 48.377315700000146 ], [ -123.723215450999959, 48.377903910000143 ], [ -123.722957446999914, 48.378083202 ], [ -123.722394222999981, 48.378361432000126 ], [ -123.722206586999974, 48.378404462000063 ], [ -123.721729220999933, 48.378513926000061 ], [ -123.721229086999983, 48.378544646000073 ], [ -123.720968421999942, 48.378558638000129 ], [ -123.719226666999958, 48.378652079000105 ], [ -123.718725976999949, 48.3787494870001 ], [ -123.718232998999952, 48.378939891000108 ], [ -123.717743528000014, 48.379157091000131 ], [ -123.716371895999899, 48.379765670000062 ], [ -123.716087393999899, 48.379891916000119 ], [ -123.715349283999942, 48.380085494000085 ], [ -123.715310206999987, 48.379994086000075 ], [ -123.715041320999916, 48.379562701000019 ], [ -123.714583094999981, 48.378864712000073 ], [ -123.714388565999968, 48.378570548000084 ], [ -123.71378848099999, 48.378852995000067 ], [ -123.71346230099999, 48.37892743 ], [ -123.713304702999935, 48.378963403000057 ], [ -123.712951399999938, 48.379108990000184 ], [ -123.712902555999904, 48.379148095000055 ], [ -123.712825208999959, 48.379210006000072 ], [ -123.712756511999913, 48.379234229000069 ], [ -123.71261185399996, 48.379285264 ], [ -123.712102610999949, 48.379464899000041 ], [ -123.711792908999911, 48.379738600000096 ], [ -123.711703614999976, 48.379885505000111 ], [ -123.711719115999955, 48.379984101000083 ], [ -123.711494690999956, 48.379968406000039 ], [ -123.71082671399995, 48.380210998000074 ], [ -123.711073713999909, 48.380647146000122 ], [ -123.711102294999975, 48.380697590000054 ], [ -123.71016132299998, 48.380982905000067 ], [ -123.710582282999923, 48.381614197000033 ], [ -123.709857892999977, 48.381956192000096 ], [ -123.709466385999974, 48.382141009000065 ], [ -123.708325185999968, 48.382650870000134 ], [ -123.708201816999946, 48.382705998000041 ], [ -123.70678731699999, 48.383372196000096 ], [ -123.705743960999911, 48.383863561000091 ], [ -123.705264002999968, 48.384089606000053 ], [ -123.704791890999957, 48.384374292000096 ], [ -123.704393510999978, 48.384668597000029 ], [ -123.703111986, 48.38577254800002 ], [ -123.703057632999958, 48.385819375000032 ], [ -123.702235511999945, 48.385512498000097 ], [ -123.700414460999951, 48.384583081000088 ], [ -123.700455083999955, 48.383746691000077 ], [ -123.700738789999889, 48.383722310000067 ], [ -123.70186359899995, 48.383085709000071 ], [ -123.702361290999946, 48.382893393000138 ], [ -123.704617590999959, 48.382870590000046 ], [ -123.705249604999949, 48.382705389000087 ], [ -123.705654487999965, 48.382684095000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.956952931524914", "sL_AssetLoss": "5217.08", "sL_BldgLoss": "4992.5", "sL_StrLoss": "4058", "sL_NStrLoss": "934.5", "sL_ContLoss": "224.58", "geom_point": "0101000020E6100000B2591E39CCED5EC0F6324058FC2D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.715429947999922, 48.359896139000064 ], [ -123.715428236999969, 48.35977394800009 ], [ -123.71533212699994, 48.359774546000025 ], [ -123.714929212999934, 48.359217401000109 ], [ -123.714453507999963, 48.359240204000095 ], [ -123.713968990999959, 48.359243212000081 ], [ -123.713393888999946, 48.359103266000027 ], [ -123.713384586999908, 48.358437135000088 ], [ -123.713684883999932, 48.358435271000118 ], [ -123.714353892999966, 48.358654804000061 ], [ -123.715721196999979, 48.358898386000071 ], [ -123.716099417999985, 48.358922597000067 ], [ -123.716226149999954, 48.35891225200006 ], [ -123.71622680900002, 48.358959276000057 ], [ -123.717441671999907, 48.35895170600002 ], [ -123.717449238999933, 48.359490570000027 ], [ -123.717362302999959, 48.35954491000011 ], [ -123.71714817799996, 48.359763239000124 ], [ -123.71704808199999, 48.359763863000062 ], [ -123.717049483999915, 48.359863867000058 ], [ -123.716883217999936, 48.360033396000105 ], [ -123.71687989099992, 48.360034812000087 ], [ -123.71563207399997, 48.360042581000108 ], [ -123.715429947999922, 48.359896139000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40316667", "BldgCostT": "26516667", "sL_LossRatio": "0.863559404884755", "sL_AssetLoss": "38194.014", "sL_BldgLoss": "32982.8", "sL_StrLoss": "28578.29", "sL_NStrLoss": "4404.51", "sL_ContLoss": "5211.214", "geom_point": "0101000020E61000005153B38361ED5EC0EC59AD9F402D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.709313417999937, 48.356664880000032 ], [ -123.707576614999965, 48.355724549000108 ], [ -123.707387512999915, 48.355766299000095 ], [ -123.707158646999957, 48.355773060000075 ], [ -123.706893804999964, 48.355780902000092 ], [ -123.70641820799996, 48.355894096000085 ], [ -123.705798295999969, 48.355871624000038 ], [ -123.705381589999931, 48.355882421000068 ], [ -123.704639498999981, 48.355961919000052 ], [ -123.704555439999936, 48.355963001000063 ], [ -123.702929162999936, 48.352692651000027 ], [ -123.70239848599995, 48.352379670000097 ], [ -123.703373208999921, 48.351747313000104 ], [ -123.705851196999944, 48.351801126000041 ], [ -123.705839978999975, 48.352032821000115 ], [ -123.706797577999964, 48.352053601000129 ], [ -123.70673125899998, 48.353423768000034 ], [ -123.710105440999882, 48.353496919000101 ], [ -123.710075167999932, 48.354123239000103 ], [ -123.710858963999939, 48.354140216000076 ], [ -123.711027318, 48.350655631000052 ], [ -123.714918537999935, 48.350739828 ], [ -123.714745613999966, 48.350905691000065 ], [ -123.714910407999966, 48.351193387000137 ], [ -123.714818102999956, 48.351355689000059 ], [ -123.715037388999988, 48.35164200300008 ], [ -123.715058604999911, 48.352073486000052 ], [ -123.715435896999963, 48.352143299000069 ], [ -123.715546502, 48.352314211000113 ], [ -123.715485482999952, 48.352772799 ], [ -123.715181487, 48.353125991000077 ], [ -123.715495099999956, 48.35341229300009 ], [ -123.715136086999948, 48.353801094000112 ], [ -123.714679281999935, 48.353893701000047 ], [ -123.713988902999944, 48.353835289000052 ], [ -123.71343441, 48.353675810000063 ], [ -123.712934093999962, 48.353732712000081 ], [ -123.71194498100003, 48.354441996000055 ], [ -123.711462404999963, 48.354678398000068 ], [ -123.71130568699999, 48.355021705000077 ], [ -123.709866104999975, 48.35629919400003 ], [ -123.709708694999932, 48.35661391200005 ], [ -123.709318346999936, 48.356667679000076 ], [ -123.709313417999937, 48.356664880000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95696751", "BldgCostT": "65315001", "sL_LossRatio": "0.888150967815773", "sL_AssetLoss": "211275.23", "sL_BldgLoss": "187644.3", "sL_StrLoss": "147862.6", "sL_NStrLoss": "39781.7", "sL_ContLoss": "23630.93", "geom_point": "0101000020E610000003E254EF59EF5EC04FD50307302E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.740357968999945, 48.365947439000152 ], [ -123.738284044999915, 48.365701999000116 ], [ -123.7378087969999, 48.365723398000085 ], [ -123.737301311999929, 48.365771204000033 ], [ -123.737357177999939, 48.365587492000053 ], [ -123.737368288999946, 48.365355094000044 ], [ -123.737341085999972, 48.365212510000056 ], [ -123.73731441299999, 48.365072597000058 ], [ -123.737288488999951, 48.365026595000096 ], [ -123.737110853000019, 48.364711331000109 ], [ -123.736993995999967, 48.36450389500002 ], [ -123.73692940199993, 48.364305088 ], [ -123.736931816000023, 48.36425461699999 ], [ -123.736918610999965, 48.364052283000049 ], [ -123.736976205999937, 48.363832582000036 ], [ -123.737105516, 48.363580193000089 ], [ -123.737450369999934, 48.362977810000103 ], [ -123.737605308999932, 48.362707209000135 ], [ -123.737539736999963, 48.36251121600008 ], [ -123.737200328, 48.361496870000082 ], [ -123.737071278999977, 48.361111108000024 ], [ -123.737062428999963, 48.361084708000163 ], [ -123.737047057999945, 48.361038740000083 ], [ -123.736910900999931, 48.360631788000092 ], [ -123.736833708999967, 48.360519932000059 ], [ -123.735913731, 48.35918654600011 ], [ -123.735899194999917, 48.359165495000077 ], [ -123.735781655999986, 48.359057730000167 ], [ -123.735692693999965, 48.358976206000058 ], [ -123.735328686999949, 48.358785406000017 ], [ -123.734054497999921, 48.358302691000048 ], [ -123.734168093999955, 48.358180702000055 ], [ -123.735688322999962, 48.357778247000049 ], [ -123.735743996999972, 48.357763509000101 ], [ -123.736407987999954, 48.35773719200008 ], [ -123.736833813999951, 48.357649793000029 ], [ -123.73810477699999, 48.35732529400012 ], [ -123.739460722999965, 48.356998095000051 ], [ -123.739738100999901, 48.356972495000058 ], [ -123.740028375999898, 48.35698499800008 ], [ -123.739929003999976, 48.357657408000179 ], [ -123.740202096999937, 48.358201597000118 ], [ -123.741292404000021, 48.35793718500004 ], [ -123.742334698999954, 48.357688997000025 ], [ -123.742971388999933, 48.35752850100009 ], [ -123.743191512999942, 48.357517892 ], [ -123.743374797999962, 48.357544403000112 ], [ -123.743584188999947, 48.357616495000073 ], [ -123.743748895999914, 48.35774981800008 ], [ -123.743823811999931, 48.357902890000062 ], [ -123.743797903999962, 48.358078190000093 ], [ -123.743604711999978, 48.35851418600005 ], [ -123.743377606, 48.359068380000025 ], [ -123.74370761199998, 48.359183702000109 ], [ -123.744940384999921, 48.360197403000058 ], [ -123.74536829299997, 48.360571821000143 ], [ -123.745909104999924, 48.361045 ], [ -123.745771529999956, 48.361085262000138 ], [ -123.739978807999989, 48.362781076000061 ], [ -123.741205835999907, 48.366249617000044 ], [ -123.740877026999925, 48.366082073000094 ], [ -123.740357968999945, 48.365947439000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29804750", "BldgCostT": "20555000", "sL_LossRatio": "0.946720646605645", "sL_AssetLoss": "55477.4", "sL_BldgLoss": "52521.6", "sL_StrLoss": "44742.6", "sL_NStrLoss": "7779", "sL_ContLoss": "2955.8", "geom_point": "0101000020E6100000B9D60727DCEF5EC01AD82AC1622E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.741205835999907, 48.366249617000044 ], [ -123.739978807999989, 48.362781076000061 ], [ -123.745771529999956, 48.361085262000138 ], [ -123.745909104999924, 48.361045 ], [ -123.751172390999926, 48.359438112000099 ], [ -123.75279406199999, 48.358867453000073 ], [ -123.75364520799998, 48.359196001000079 ], [ -123.753671410999956, 48.359249470000094 ], [ -123.753785506999947, 48.35948228900002 ], [ -123.753690288000016, 48.359689993000046 ], [ -123.753536788999938, 48.36002489600002 ], [ -123.753648906, 48.361238294000024 ], [ -123.75398421199999, 48.362085431000061 ], [ -123.754103636999943, 48.362387163000058 ], [ -123.754152895999979, 48.36251159200004 ], [ -123.754797539999942, 48.363423330000046 ], [ -123.753929050999972, 48.363972170000089 ], [ -123.748949565, 48.363866271000056 ], [ -123.748976557999953, 48.363298284000059 ], [ -123.748863193999938, 48.363295871000048 ], [ -123.748939607999958, 48.361687950000032 ], [ -123.748665927999951, 48.361682123000129 ], [ -123.748666507999957, 48.361721640000106 ], [ -123.747451585999954, 48.361729541000074 ], [ -123.747455534999986, 48.36199941600006 ], [ -123.747312628999978, 48.362000344000073 ], [ -123.74727294799996, 48.362834730000046 ], [ -123.7465645179999, 48.3628196330001 ], [ -123.746552233999935, 48.363077847000028 ], [ -123.745939674999946, 48.363064790000038 ], [ -123.745928022999962, 48.363309662000063 ], [ -123.745314913999948, 48.363296589000072 ], [ -123.74530420899994, 48.363521477000063 ], [ -123.74465297700003, 48.363507587000051 ], [ -123.744645491999933, 48.363664792000087 ], [ -123.744162748999969, 48.363654494000073 ], [ -123.744155180999954, 48.363813404000027 ], [ -123.743753202999969, 48.363804827000109 ], [ -123.743741676999917, 48.364046813000115 ], [ -123.743047155999975, 48.364031990000058 ], [ -123.743045764999977, 48.364061189000047 ], [ -123.743518232, 48.364071273000071 ], [ -123.743435680999966, 48.365804081000078 ], [ -123.74373760499995, 48.365802129000073 ], [ -123.741205835999907, 48.366249617000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109000", "BldgCostT": "1245000", "sL_LossRatio": "0.480528040433953", "sL_AssetLoss": "6402.54", "sL_BldgLoss": "3076.6", "sL_StrLoss": "1352.1", "sL_NStrLoss": "1724.5", "sL_ContLoss": "3325.94", "geom_point": "0101000020E61000002D005327DCF05EC07AED25CFED2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.762620914999957, 48.374045424000023 ], [ -123.764241195999958, 48.37403467200005 ], [ -123.764253312999969, 48.374844294000084 ], [ -123.76263300799998, 48.374855046000114 ], [ -123.762620914999957, 48.374045424000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "358695250", "BldgCostT": "234385000", "sL_LossRatio": "0.924820020837328", "sL_AssetLoss": "172399.263", "sL_BldgLoss": "159438.29", "sL_StrLoss": "141901.1", "sL_NStrLoss": "17537.19", "sL_ContLoss": "12960.973", "geom_point": "0101000020E61000008758F6EAC4EF5EC00817A87B53314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.740776007999941, 48.399808811000064 ], [ -123.740533009000018, 48.399509661000096 ], [ -123.740808996999974, 48.399354340000073 ], [ -123.740843008999946, 48.399335182000108 ], [ -123.742136022999929, 48.398966007000055 ], [ -123.742355104999945, 48.398952699000056 ], [ -123.742423053999943, 48.398965617000059 ], [ -123.742512453999922, 48.398982634000092 ], [ -123.742552819999943, 48.398990297000068 ], [ -123.744058312999968, 48.399651806000129 ], [ -123.745399283999959, 48.399860696000083 ], [ -123.745450382999934, 48.399860440000083 ], [ -123.74567312, 48.399859296000059 ], [ -123.745945418999924, 48.399803798000036 ], [ -123.746193092999945, 48.399699003000116 ], [ -123.74621497399994, 48.39968131600002 ], [ -123.746366912999946, 48.39955848400006 ], [ -123.746458104999959, 48.399342186000062 ], [ -123.746468014999977, 48.399134324000087 ], [ -123.746469883000017, 48.399094506000054 ], [ -123.74638808899999, 48.398831304000069 ], [ -123.746222193, 48.398521096000117 ], [ -123.746042775999911, 48.398296404000092 ], [ -123.745623400999989, 48.397987193000077 ], [ -123.745584883000021, 48.397862003000128 ], [ -123.74561061599999, 48.397746195000117 ], [ -123.746110511999973, 48.397157196000101 ], [ -123.746133471999897, 48.397080220000113 ], [ -123.746158602999955, 48.396995906000022 ], [ -123.746104186999943, 48.396667390000097 ], [ -123.745838478999971, 48.396668991000105 ], [ -123.745248087999968, 48.396525703000052 ], [ -123.744947198999967, 48.396388504000107 ], [ -123.744166191999952, 48.395889495000027 ], [ -123.74377889499999, 48.395727001000076 ], [ -123.743368492999949, 48.395597397000117 ], [ -123.742718805999985, 48.395481699000051 ], [ -123.742670382, 48.395470955000086 ], [ -123.741833003999901, 48.395285100000088 ], [ -123.741416599999951, 48.395084206000021 ], [ -123.741005297999948, 48.394833695000109 ], [ -123.740895097999982, 48.394805359000017 ], [ -123.740148884999911, 48.394613507000017 ], [ -123.739953976999942, 48.39454300400017 ], [ -123.739658602999967, 48.394436200000065 ], [ -123.739435942999975, 48.394316637000045 ], [ -123.73927740399999, 48.394231495000078 ], [ -123.738979589999985, 48.39397530100009 ], [ -123.738675913999913, 48.393616295000108 ], [ -123.738590109999947, 48.393444357000099 ], [ -123.738525798999945, 48.393315519000069 ], [ -123.738508707999941, 48.393269176000047 ], [ -123.738352952999961, 48.392847509000077 ], [ -123.738334786999957, 48.392798314000075 ], [ -123.738043317999981, 48.392185305000062 ], [ -123.737582081999932, 48.39176509400005 ], [ -123.737130902999937, 48.391417291000025 ], [ -123.736378204999966, 48.390950405000076 ], [ -123.735965822, 48.390666512000109 ], [ -123.735650763999985, 48.390336131000019 ], [ -123.735555009, 48.390235689000065 ], [ -123.735402598999897, 48.38995198300006 ], [ -123.735384443999919, 48.389918218000062 ], [ -123.735294412, 48.389750605000089 ], [ -123.735246960000012, 48.38966226600013 ], [ -123.735222475999961, 48.389616693000029 ], [ -123.735138960999961, 48.3894611710001 ], [ -123.734985649999885, 48.389175722000111 ], [ -123.734475216999925, 48.388152221000055 ], [ -123.733992690999983, 48.387616996000069 ], [ -123.733868192999964, 48.38734570600014 ], [ -123.733866407999983, 48.387073290000032 ], [ -123.733952995999957, 48.386754992000071 ], [ -123.736337917999919, 48.386069391000092 ], [ -123.736859329999959, 48.385876757000091 ], [ -123.737643821999967, 48.385452604000122 ], [ -123.737937151999972, 48.385181145000082 ], [ -123.738741081999962, 48.383870101000078 ], [ -123.738836062999937, 48.383631372000117 ], [ -123.738831923999939, 48.383097457000069 ], [ -123.738972887, 48.382628875000144 ], [ -123.738927909999973, 48.382413299000042 ], [ -123.738728157999958, 48.382080776000073 ], [ -123.738149705, 48.381211779000061 ], [ -123.737734212999925, 48.380459 ], [ -123.737605582999961, 48.380187504000062 ], [ -123.737352067999922, 48.379831820000035 ], [ -123.736955597999938, 48.379275567000064 ], [ -123.736576316999944, 48.378743408000098 ], [ -123.737903615999954, 48.378266005000043 ], [ -123.738302641999965, 48.378117518000124 ], [ -123.738662854999987, 48.377983455000049 ], [ -123.739042376999961, 48.377842198000089 ], [ -123.740295910999947, 48.377754392000028 ], [ -123.740516708999948, 48.377307406000071 ], [ -123.741017587999949, 48.377314501000043 ], [ -123.741343475999912, 48.377262796000096 ], [ -123.74149393499999, 48.377215195000126 ], [ -123.741719806, 48.377143699000072 ], [ -123.741854327999988, 48.377036598000124 ], [ -123.741889222999987, 48.376926399000119 ], [ -123.741611091999985, 48.376456994000115 ], [ -123.742194977999972, 48.37630709700003 ], [ -123.742699909999942, 48.37623131 ], [ -123.742691396999959, 48.376012891000101 ], [ -123.742759889999974, 48.375906211 ], [ -123.742935904999982, 48.37580348600013 ], [ -123.744067917999942, 48.37537950300009 ], [ -123.744255604, 48.375257315000106 ], [ -123.744316788999953, 48.375103501000126 ], [ -123.743900403999973, 48.37445441300008 ], [ -123.745262691999983, 48.374058724000079 ], [ -123.745923135999988, 48.373857290000068 ], [ -123.746004423999935, 48.373832707000098 ], [ -123.747629593999989, 48.373340957000082 ], [ -123.747661738999966, 48.373331238000063 ], [ -123.747833131999954, 48.373279400000044 ], [ -123.748783503999945, 48.373015589000083 ], [ -123.74941824699999, 48.372831248000068 ], [ -123.75055981699991, 48.372499689000023 ], [ -123.750995106999966, 48.372554096000087 ], [ -123.751040307999929, 48.372552413000044 ], [ -123.751339340999934, 48.372541205000111 ], [ -123.751473774999937, 48.37253617000006 ], [ -123.753396637999941, 48.372462615000067 ], [ -123.755418704999926, 48.372388309000044 ], [ -123.757732778999952, 48.37223835800016 ], [ -123.75774405099996, 48.372998047000053 ], [ -123.75733899, 48.373000715000074 ], [ -123.757342992999938, 48.373270588000118 ], [ -123.756532862999961, 48.3732759190001 ], [ -123.756540859999916, 48.373815668000098 ], [ -123.756135790999977, 48.373818331000066 ], [ -123.75614378399996, 48.374358080000043 ], [ -123.75654885699997, 48.374355417000068 ], [ -123.756564850999965, 48.375434914000067 ], [ -123.754821248999946, 48.375446368000098 ], [ -123.754792383, 48.376055206000025 ], [ -123.755357298999968, 48.376067198000023 ], [ -123.755333125, 48.376577186000119 ], [ -123.755583220999981, 48.376582494000026 ], [ -123.755546161999987, 48.37736436800008 ], [ -123.757044615, 48.377396157000092 ], [ -123.75697642199998, 48.378835793000114 ], [ -123.757290588999979, 48.378842455000054 ], [ -123.757276025999914, 48.379149941000016 ], [ -123.758567662999923, 48.379177322000054 ], [ -123.758535814999959, 48.379850138000059 ], [ -123.756463914999983, 48.380336594 ], [ -123.754914974999934, 48.380700248000046 ], [ -123.756672932999948, 48.382744040000027 ], [ -123.753011410999989, 48.38266632100008 ], [ -123.753026004999981, 48.382358836000016 ], [ -123.751734283999966, 48.382331388000075 ], [ -123.751752180999972, 48.381954452000073 ], [ -123.74996474299999, 48.381916444000076 ], [ -123.750007020999973, 48.381026765000108 ], [ -123.749366173999945, 48.381013131 ], [ -123.749391901999957, 48.380471879 ], [ -123.749375606999962, 48.380471532000044 ], [ -123.749407847999976, 48.379793203000091 ], [ -123.747960595, 48.379762398000068 ], [ -123.747981207999899, 48.379328988000125 ], [ -123.747107289999946, 48.379310377000088 ], [ -123.747138932, 48.378645328000097 ], [ -123.746492808999946, 48.378631563000042 ], [ -123.746539064, 48.377659615000027 ], [ -123.746064252999986, 48.37766269500009 ], [ -123.746068195999968, 48.377932570000041 ], [ -123.745257990999932, 48.377937821000039 ], [ -123.745261930999987, 48.378207696000068 ], [ -123.744856824999928, 48.378210320000086 ], [ -123.744860761999988, 48.378480194000062 ], [ -123.743645441999945, 48.378488057000084 ], [ -123.743641510999936, 48.378218182000111 ], [ -123.74323640599998, 48.378220799000083 ], [ -123.743248190999921, 48.379030425000089 ], [ -123.743653301999956, 48.37902780600006 ], [ -123.743665095999958, 48.379837432000038 ], [ -123.743259977999955, 48.379840049000038 ], [ -123.743271764999989, 48.380649675000072 ], [ -123.74286664, 48.380652291000068 ], [ -123.742870567999987, 48.380922166000055 ], [ -123.74206031499989, 48.380927395000114 ], [ -123.742072082999968, 48.381737020000074 ], [ -123.741666949999967, 48.381739632000084 ], [ -123.74167087099994, 48.382009508000095 ], [ -123.740860598999973, 48.382014728000037 ], [ -123.740868432999932, 48.382554478000024 ], [ -123.74127357299993, 48.382551868000057 ], [ -123.741269653999964, 48.382281994000017 ], [ -123.742890202999916, 48.382271540000083 ], [ -123.742901984999961, 48.383081165000071 ], [ -123.74249684199998, 48.383083780000099 ], [ -123.742500767999985, 48.383353655000093 ], [ -123.742095620999947, 48.383356269000103 ], [ -123.74210346800001, 48.383896020000073 ], [ -123.742508618000031, 48.383893405000038 ], [ -123.74251254399995, 48.384163280000081 ], [ -123.742917696999925, 48.384160664 ], [ -123.74292107, 48.384392494000075 ], [ -123.743803812999914, 48.384411326000134 ], [ -123.743632091999956, 48.388014540000043 ], [ -123.7425682399999, 48.387991844000098 ], [ -123.74257536099999, 48.388481274000064 ], [ -123.742170173999952, 48.388483889000028 ], [ -123.742174098999968, 48.38875376400005 ], [ -123.742013109999903, 48.38875480200003 ], [ -123.741951636999957, 48.390043576000018 ], [ -123.741382204000018, 48.390031420000106 ], [ -123.741383322999965, 48.390108361000053 ], [ -123.740978123000019, 48.390110972000095 ], [ -123.740982041999985, 48.390380846000056 ], [ -123.740820356999961, 48.390381888000036 ], [ -123.740809475999967, 48.390609893000104 ], [ -123.741489163999958, 48.390624405000025 ], [ -123.74148669199991, 48.390676205000041 ], [ -123.742698723999965, 48.39070207300005 ], [ -123.7426065, 48.392636018000069 ], [ -123.743447509999982, 48.392653960000054 ], [ -123.743432524999932, 48.392968301000067 ], [ -123.744212801999964, 48.392984940000112 ], [ -123.74420466299992, 48.393155706000073 ], [ -123.744932486999971, 48.393171222000085 ], [ -123.744922337, 48.393384278000021 ], [ -123.745356042999944, 48.393393522000054 ], [ -123.745457431999967, 48.391264807000077 ], [ -123.745636006999973, 48.391268613000136 ], [ -123.745677571000016, 48.39039581000003 ], [ -123.751064103999965, 48.39051045300009 ], [ -123.751049201999948, 48.390824121000044 ], [ -123.75217868299994, 48.390848125000041 ], [ -123.752147474999944, 48.39150531399999 ], [ -123.752787499999926, 48.391518911000048 ], [ -123.752763247999937, 48.392029771000125 ], [ -123.75295332499995, 48.392033808000093 ], [ -123.752907728, 48.392994349000034 ], [ -123.755140802999932, 48.393041754000102 ], [ -123.755102802999915, 48.393842986000024 ], [ -123.755765226999983, 48.393857040000086 ], [ -123.75575499099989, 48.394072949000098 ], [ -123.759263722999918, 48.39414731600008 ], [ -123.753021596999986, 48.396037324000112 ], [ -123.752664898999981, 48.396139906000016 ], [ -123.752418412999972, 48.396216938000137 ], [ -123.750252826999912, 48.396893437000081 ], [ -123.748085427999939, 48.397570436000066 ], [ -123.748064759999963, 48.400981691000084 ], [ -123.747574170999883, 48.400971249000122 ], [ -123.747547069999939, 48.401540697000037 ], [ -123.747392309999938, 48.401520693000123 ], [ -123.746471793999902, 48.401265689000113 ], [ -123.74480669099999, 48.401133300000062 ], [ -123.744481009999944, 48.400999399000099 ], [ -123.743871990999978, 48.400932496000053 ], [ -123.743852562, 48.40092429800012 ], [ -123.743723648999918, 48.40086993200002 ], [ -123.743365197999978, 48.40071875600006 ], [ -123.742798094, 48.400479607000122 ], [ -123.741075307999921, 48.400032390000092 ], [ -123.740776007999941, 48.399808811000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.997005628830188", "sL_AssetLoss": "408.433", "sL_BldgLoss": "407.21", "sL_StrLoss": "393", "sL_NStrLoss": "14.21", "sL_ContLoss": "1.223", "geom_point": "0101000020E61000008D5D26B38FF05EC01E13EF21DD2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.758157126999933, 48.373535127000061 ], [ -123.75937232699999, 48.373527112000012 ], [ -123.759384366999953, 48.374336735000057 ], [ -123.758169148999926, 48.374344750000084 ], [ -123.758157126999933, 48.373535127000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.979307819080754", "sL_AssetLoss": "546.1", "sL_BldgLoss": "534.8", "sL_StrLoss": "499", "sL_NStrLoss": "35.8", "sL_ContLoss": "11.3", "geom_point": "0101000020E610000071A11B2F17F15EC07F839B31F12F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.766671613999932, 48.374018500000034 ], [ -123.766752830999948, 48.374017959000071 ], [ -123.766844568999915, 48.374136323000087 ], [ -123.767772332999982, 48.374820862000078 ], [ -123.766683769999972, 48.374828122000068 ], [ -123.766671613999932, 48.374018500000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283334", "BldgCostT": "4333334", "sL_LossRatio": "0.975581669955364", "sL_AssetLoss": "5123.61", "sL_BldgLoss": "4998.5", "sL_StrLoss": "4587", "sL_NStrLoss": "411.5", "sL_ContLoss": "125.11", "geom_point": "0101000020E61000005692C880E4F05EC0A8B4F625B82F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.761843476999942, 48.373445981000032 ], [ -123.761913965999923, 48.371954460000048 ], [ -123.762794390999929, 48.372038118000027 ], [ -123.763279389999951, 48.372084197000127 ], [ -123.763974094999966, 48.37212499500005 ], [ -123.764274566, 48.372120091000049 ], [ -123.764574212999918, 48.372115193000042 ], [ -123.765068091999936, 48.372072405000033 ], [ -123.765362006999936, 48.372026951000109 ], [ -123.76587871699995, 48.372475364000096 ], [ -123.766389651999958, 48.37354209800003 ], [ -123.761843476999942, 48.373445981000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156720667", "BldgCostT": "103986667", "sL_LossRatio": "0.97145356784533", "sL_AssetLoss": "110859.318", "sL_BldgLoss": "107694.68", "sL_StrLoss": "93686.38", "sL_NStrLoss": "14008.3", "sL_ContLoss": "3164.638", "geom_point": "0101000020E610000028AB2B97B4F35EC07F3E0434152F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.788913911999913, 48.384578573000091 ], [ -123.788900015999957, 48.383916895000034 ], [ -123.78900249499999, 48.38353949400009 ], [ -123.789188183999926, 48.383083495000058 ], [ -123.79056672199999, 48.38178949400006 ], [ -123.791046189999975, 48.381247609000077 ], [ -123.791439805999957, 48.380408297 ], [ -123.791516298, 48.379633489000113 ], [ -123.79178191299998, 48.379074780000103 ], [ -123.791834599999945, 48.378963889000055 ], [ -123.791798510999968, 48.378120892000105 ], [ -123.791618010999954, 48.377077502000148 ], [ -123.791630394999942, 48.376667394000037 ], [ -123.791902485999969, 48.375977002000184 ], [ -123.792006046000012, 48.37586964000009 ], [ -123.792316007999972, 48.375548288000054 ], [ -123.792706684999956, 48.374980189000098 ], [ -123.793057495999989, 48.374469991000055 ], [ -123.793267764999939, 48.374231511000062 ], [ -123.793525823999943, 48.373938806000062 ], [ -123.79368176199992, 48.373761912000113 ], [ -123.794226895999969, 48.373143603000088 ], [ -123.794308184, 48.372990204000061 ], [ -123.794314670999967, 48.372732151000044 ], [ -123.794331318, 48.372066291000088 ], [ -123.794331700999962, 48.372051094 ], [ -123.794401298999929, 48.371743298000084 ], [ -123.794527179999974, 48.371470910000028 ], [ -123.795264395999965, 48.370686414000097 ], [ -123.795317638999961, 48.370598701000084 ], [ -123.795429287999966, 48.370414784000033 ], [ -123.795523302000021, 48.370131795000098 ], [ -123.795538222999937, 48.369987812000076 ], [ -123.795591685999952, 48.36947139900014 ], [ -123.795579379999964, 48.368925593000078 ], [ -123.795417502999939, 48.368183723000065 ], [ -123.79511366499996, 48.366791208000116 ], [ -123.794963099999933, 48.366101200000116 ], [ -123.794592628999979, 48.366184592000053 ], [ -123.79447569199999, 48.366210898000077 ], [ -123.794334105999951, 48.366223794000071 ], [ -123.794121180999966, 48.366243192000063 ], [ -123.793633705999937, 48.366208715000049 ], [ -123.793059896999978, 48.366091200000071 ], [ -123.791816211999944, 48.365763478000098 ], [ -123.791666420999931, 48.365723999000132 ], [ -123.789831194999962, 48.365266307000056 ], [ -123.788799480999941, 48.365145599000108 ], [ -123.788013711999923, 48.365124601000097 ], [ -123.787124409999976, 48.365184484000025 ], [ -123.7863553, 48.365353196000022 ], [ -123.785800192999943, 48.365612105000039 ], [ -123.785423985999969, 48.365820601000031 ], [ -123.785036580999986, 48.366202894 ], [ -123.784014524999961, 48.367211423000057 ], [ -123.783646923999967, 48.366492568000091 ], [ -123.78376558599993, 48.366389709000075 ], [ -123.784096805999951, 48.365973796000027 ], [ -123.784276305999967, 48.365387105000124 ], [ -123.784362275999911, 48.365330387000014 ], [ -123.784717008999934, 48.365096507000054 ], [ -123.786195370999948, 48.36445581600006 ], [ -123.786340505999959, 48.364392899000016 ], [ -123.787839675999962, 48.364391495000042 ], [ -123.788433906, 48.364468406000057 ], [ -123.788622596999943, 48.364412888000118 ], [ -123.788728087, 48.364241997000072 ], [ -123.789011318999911, 48.364212103000064 ], [ -123.789702200999969, 48.364414311000097 ], [ -123.790432807999963, 48.364437103000142 ], [ -123.791024600999947, 48.364288987000123 ], [ -123.792726191999989, 48.364348814000095 ], [ -123.793788305999939, 48.36414368800007 ], [ -123.795630384, 48.364482692000067 ], [ -123.796115102999963, 48.364434310000085 ], [ -123.79646379899998, 48.364268996000071 ], [ -123.79759818399998, 48.364172199000087 ], [ -123.79806780499996, 48.364024100000073 ], [ -123.798386205, 48.363733493000019 ], [ -123.79838368799993, 48.363545511000083 ], [ -123.798650194999979, 48.363363206000038 ], [ -123.799744586000017, 48.363320503000075 ], [ -123.800092789999979, 48.363244990000041 ], [ -123.800665285999969, 48.362719495000135 ], [ -123.802113306999956, 48.362861902000049 ], [ -123.802341901999938, 48.362770784000062 ], [ -123.802828088999959, 48.362812109000039 ], [ -123.803218314999981, 48.36275650000006 ], [ -123.804159486999978, 48.362497291000089 ], [ -123.804290596, 48.36220818700005 ], [ -123.804297091999914, 48.361768107000096 ], [ -123.804416983999943, 48.361668393000038 ], [ -123.804604320999914, 48.361567304000054 ], [ -123.806312385999931, 48.361249700000023 ], [ -123.806420219999936, 48.361204101000098 ], [ -123.806550594999962, 48.360897890000089 ], [ -123.806830691999934, 48.360732705000075 ], [ -123.807950709999943, 48.36069000600007 ], [ -123.80817870599999, 48.36058891000004 ], [ -123.808843705999919, 48.360709904000061 ], [ -123.809477106999964, 48.360678601000082 ], [ -123.80982478599995, 48.360452208000055 ], [ -123.810521398999981, 48.360167290000042 ], [ -123.811140986999973, 48.360000703000054 ], [ -123.811700104999943, 48.359583400000083 ], [ -123.812324389999958, 48.359723013000078 ], [ -123.812959206999921, 48.359737187000121 ], [ -123.814615990999968, 48.359563512000108 ], [ -123.814965413999929, 48.359452391000112 ], [ -123.815526688999981, 48.359116311000037 ], [ -123.817129793999953, 48.358879800000125 ], [ -123.81747379499997, 48.358489607000138 ], [ -123.818037406999963, 48.358197591000057 ], [ -123.818683424999961, 48.358103603000131 ], [ -123.819139884999942, 48.357911397000059 ], [ -123.81952538299997, 48.357612291000095 ], [ -123.81991408099999, 48.357474100000019 ], [ -123.82042659699998, 48.357425701000089 ], [ -123.821042217999988, 48.357069696000067 ], [ -123.822119308999959, 48.356927205000069 ], [ -123.822891585999969, 48.357092506000065 ], [ -123.822977766999927, 48.357242605000025 ], [ -123.822989682999946, 48.357263391000082 ], [ -123.822953699999943, 48.357506885000106 ], [ -123.823523005, 48.357700597000061 ], [ -123.823594211999989, 48.357870101000117 ], [ -123.823531816999946, 48.358221906000033 ], [ -123.824730598999949, 48.35979699100006 ], [ -123.825183001999903, 48.36012598500006 ], [ -123.825923710999959, 48.360138791000082 ], [ -123.826251992999971, 48.360308294000099 ], [ -123.827077380000034, 48.361236899000055 ], [ -123.827120582999967, 48.361399294000122 ], [ -123.82764060099997, 48.36194471200011 ], [ -123.82805579299999, 48.362571395000032 ], [ -123.828523702999959, 48.363025707000062 ], [ -123.828878000999936, 48.363257896000015 ], [ -123.829754187, 48.363143898 ], [ -123.830119119999935, 48.36325790100009 ], [ -123.83031849299999, 48.363913009000029 ], [ -123.832803606999946, 48.367151602000064 ], [ -123.833507110999946, 48.368073090000117 ], [ -123.834142599999936, 48.368727990000068 ], [ -123.834153583999935, 48.368739294000122 ], [ -123.834261693999963, 48.368850701000049 ], [ -123.83436577, 48.36893521200011 ], [ -123.834484833999937, 48.369031907000078 ], [ -123.834049836999924, 48.369226437000087 ], [ -123.833625812999969, 48.369399046000105 ], [ -123.832991285999952, 48.369657399000154 ], [ -123.832654994999956, 48.369881399000107 ], [ -123.832390202999989, 48.37013200300003 ], [ -123.832195410999958, 48.370414791000073 ], [ -123.832145333999961, 48.370548948000057 ], [ -123.832072494999963, 48.370744111000107 ], [ -123.832058874999987, 48.37104320500007 ], [ -123.832072610999958, 48.371160856000095 ], [ -123.83199809599995, 48.371159329000079 ], [ -123.832002668999948, 48.371059435000113 ], [ -123.830205838999944, 48.371022582000094 ], [ -123.830218893999927, 48.370737635000062 ], [ -123.829933344000011, 48.37073177500011 ], [ -123.829968941999979, 48.369954887000077 ], [ -123.829295367999961, 48.36994106100007 ], [ -123.82935540699998, 48.368631055000051 ], [ -123.828063802, 48.368604533000095 ], [ -123.828121588999934, 48.367344327000104 ], [ -123.827006136999955, 48.367321409000091 ], [ -123.827042878, 48.36652055600004 ], [ -123.826061650999961, 48.366500387000073 ], [ -123.826079098999955, 48.366120226000106 ], [ -123.825429648999943, 48.366106871000085 ], [ -123.825462256999941, 48.365396626000049 ], [ -123.824598161999944, 48.365378852000035 ], [ -123.824619458999948, 48.364915144000044 ], [ -123.823919265, 48.364900735000077 ], [ -123.823946133999982, 48.364315868000048 ], [ -123.82330257699995, 48.364302621000043 ], [ -123.823313142999936, 48.364072697000069 ], [ -123.822234852999941, 48.364050493000043 ], [ -123.822257451999945, 48.363558951000122 ], [ -123.820942636999987, 48.363531862000066 ], [ -123.821009604999972, 48.362076023000043 ], [ -123.820424002, 48.362063952 ], [ -123.820455142999933, 48.361387154000042 ], [ -123.818447508999967, 48.361345747000037 ], [ -123.818444959999908, 48.36140108000005 ], [ -123.817918371999937, 48.361390213000128 ], [ -123.817933410999956, 48.362329593000062 ], [ -123.818338383999944, 48.362326713000073 ], [ -123.81836, 48.363676068000117 ], [ -123.81795501799995, 48.363678948000029 ], [ -123.817963660999965, 48.364218690000037 ], [ -123.817153686999987, 48.36422444599999 ], [ -123.817158003999936, 48.364494317000073 ], [ -123.816348024, 48.364500068000105 ], [ -123.816352337999973, 48.364769939000048 ], [ -123.815947346999948, 48.364772812000119 ], [ -123.81596028, 48.36558242600011 ], [ -123.813935290999964, 48.365596771000078 ], [ -123.81393099, 48.36532690000012 ], [ -123.81352599399996, 48.365329765000077 ], [ -123.813524692999962, 48.365248062000013 ], [ -123.80826777499999, 48.365139224000103 ], [ -123.808320656999939, 48.363996305000086 ], [ -123.808105358999967, 48.363991842000111 ], [ -123.808092013999911, 48.364280227000066 ], [ -123.806199267999915, 48.364240971000086 ], [ -123.806139006999928, 48.365542071000036 ], [ -123.801573214999976, 48.365447238000129 ], [ -123.801532368999943, 48.366327282000015 ], [ -123.800740348999938, 48.366310811000083 ], [ -123.800718062, 48.366790800000047 ], [ -123.800410584999952, 48.36678440500004 ], [ -123.800339529999945, 48.368314429000058 ], [ -123.80154804499999, 48.36833956200006 ], [ -123.801385136999968, 48.371848953000097 ], [ -123.803164391999985, 48.371885930000097 ], [ -123.803156495999943, 48.372056175000118 ], [ -123.803914075999927, 48.372071911000049 ], [ -123.803746969999906, 48.375675298000075 ], [ -123.803169406999956, 48.375663302000078 ], [ -123.80315955899999, 48.375875611000076 ], [ -123.798702920999958, 48.375782945000061 ], [ -123.798714127999958, 48.376499505000083 ], [ -123.796920648999929, 48.376511945000075 ], [ -123.796876398, 48.37746306200011 ], [ -123.79672005799992, 48.37745980400009 ], [ -123.796682635999943, 48.37826406400012 ], [ -123.794643496999939, 48.37822156400005 ], [ -123.794587071999956, 48.37943306600004 ], [ -123.795603315000022, 48.379454251000062 ], [ -123.79548047599998, 48.382092739000072 ], [ -123.796421039999956, 48.382112337000102 ], [ -123.796390559999963, 48.38276723700006 ], [ -123.795987827999951, 48.382935003000085 ], [ -123.795535581, 48.383241198000071 ], [ -123.794160185999957, 48.384411801000041 ], [ -123.7939997, 48.384533101000088 ], [ -123.793916024999973, 48.384596322000057 ], [ -123.79064659899997, 48.384404756000109 ], [ -123.789278181999919, 48.384481973000049 ], [ -123.788913911999913, 48.384578573000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28919667", "BldgCostT": "18206667", "sL_LossRatio": "0.926254376363157", "sL_AssetLoss": "33135.39", "sL_BldgLoss": "30691.8", "sL_StrLoss": "24539.8", "sL_NStrLoss": "6152", "sL_ContLoss": "2443.59", "geom_point": "0101000020E6100000DF5682DEBEF35EC08F884A9F2D304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.810441187999956, 48.375046458000064 ], [ -123.810530378999957, 48.373117354000051 ], [ -123.815915101, 48.37322870000007 ], [ -123.815877583999935, 48.37404217800011 ], [ -123.818298063999976, 48.374092140000087 ], [ -123.818283476999937, 48.374408770000066 ], [ -123.818278880999969, 48.374409900000082 ], [ -123.817827599999973, 48.374553890000122 ], [ -123.817211499, 48.374852216000114 ], [ -123.817198814999983, 48.374855306000079 ], [ -123.816462488999946, 48.375035876000013 ], [ -123.816021036999928, 48.375144147000121 ], [ -123.815905799999953, 48.375172399000043 ], [ -123.814486695999932, 48.375643600000075 ], [ -123.813558594999932, 48.37611147100003 ], [ -123.813498802999931, 48.376141596000082 ], [ -123.813134502999944, 48.376298203000012 ], [ -123.813081519999983, 48.376313905000075 ], [ -123.812466423999965, 48.376496304000092 ], [ -123.81081689899996, 48.376877009000083 ], [ -123.810674437000017, 48.376915153000041 ], [ -123.810363906999939, 48.376998294000074 ], [ -123.809860981999989, 48.377235894000066 ], [ -123.809046691, 48.377740189000065 ], [ -123.808723021, 48.377861494000037 ], [ -123.80793293899994, 48.377994787000056 ], [ -123.806923399, 48.37816510400004 ], [ -123.806591960999953, 48.378236197000057 ], [ -123.806467407999961, 48.378262897000077 ], [ -123.80610449699999, 48.378388895000036 ], [ -123.80512870599992, 48.379029608000096 ], [ -123.804638801999943, 48.379190701000027 ], [ -123.803987108999948, 48.379296197000038 ], [ -123.803295604999931, 48.379473911000055 ], [ -123.802241676999955, 48.379909198000085 ], [ -123.801939342999958, 48.38004421600003 ], [ -123.801473814, 48.380252102000064 ], [ -123.800955811999955, 48.380437010000072 ], [ -123.800545712999934, 48.380706198000063 ], [ -123.800028622999974, 48.381131904000085 ], [ -123.799860776999978, 48.3812519680001 ], [ -123.799856345999942, 48.381255139000103 ], [ -123.799925928999969, 48.379757614000013 ], [ -123.801106379999936, 48.379782161000037 ], [ -123.80123562899999, 48.376998737000122 ], [ -123.80234512799997, 48.377021797000033 ], [ -123.802370213999922, 48.376481263000116 ], [ -123.805282596999916, 48.376541740000036 ], [ -123.80528479799996, 48.376494235000052 ], [ -123.80535800499996, 48.376495754000096 ], [ -123.805402847999943, 48.375528135000089 ], [ -123.809244134999943, 48.375607776000074 ], [ -123.809271222999939, 48.375022229000123 ], [ -123.810441187999956, 48.375046458000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947917", "BldgCostT": "4791667", "sL_LossRatio": "0.982725931029115", "sL_AssetLoss": "5550.632", "sL_BldgLoss": "5454.75", "sL_StrLoss": "4934", "sL_NStrLoss": "520.75", "sL_ContLoss": "95.882", "geom_point": "0101000020E6100000DF17C029E6F65EC0510CD28454314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.85907488, 48.388621960000087 ], [ -123.857824597999979, 48.388089807 ], [ -123.853696624999969, 48.388020696000083 ], [ -123.853791776999955, 48.385921763000091 ], [ -123.855796559999959, 48.385962417000044 ], [ -123.855950377999989, 48.382565805000105 ], [ -123.860143388999944, 48.382650712000085 ], [ -123.861336280999964, 48.382674837000131 ], [ -123.861173506999975, 48.386278248000039 ], [ -123.859184176999989, 48.386238008000042 ], [ -123.859168705999963, 48.386237695000062 ], [ -123.859160833999979, 48.386411752000072 ], [ -123.859157204999988, 48.386492022000084 ], [ -123.85917118399999, 48.386492305000019 ], [ -123.85907488, 48.388621960000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.926854161941483", "sL_AssetLoss": "4409", "sL_BldgLoss": "4086.5", "sL_StrLoss": "3089", "sL_NStrLoss": "997.5", "sL_ContLoss": "322.5", "geom_point": "0101000020E6100000C22C9BD679F75EC06D1D3DFA36324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.867048591999918, 48.394482191000115 ], [ -123.866275995999914, 48.394308515000013 ], [ -123.866062410999987, 48.394312928000033 ], [ -123.8660521799999, 48.392931976000099 ], [ -123.866261918999925, 48.389823068000048 ], [ -123.86349863, 48.38967129600006 ], [ -123.862898491999914, 48.38965096500003 ], [ -123.863087460999949, 48.389536063 ], [ -123.866865782000033, 48.389612312000061 ], [ -123.86679801799994, 48.391116160000138 ], [ -123.867999929999968, 48.391140388000046 ], [ -123.867837633999912, 48.394743756000068 ], [ -123.867326772999945, 48.394733461000065 ], [ -123.867048591999918, 48.394482191000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13801583", "BldgCostT": "9518333", "sL_LossRatio": "0.932951191379439", "sL_AssetLoss": "27361.56", "sL_BldgLoss": "25527", "sL_StrLoss": "20069.7", "sL_NStrLoss": "5457.3", "sL_ContLoss": "1834.56", "geom_point": "0101000020E6100000CEEAFC5F1EFF5EC09FA46DBA6D334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.987285087999936, 48.407740689000072 ], [ -123.987364125999974, 48.405882261000038 ], [ -123.986855281999965, 48.405872583000082 ], [ -123.986865261, 48.405637987000013 ], [ -123.984960227999963, 48.405601735000069 ], [ -123.985112792999942, 48.402018284000036 ], [ -123.984033104999952, 48.401997721000129 ], [ -123.984053761000013, 48.401512750000066 ], [ -123.983731721999945, 48.401506615000073 ], [ -123.983766059999965, 48.400700571000137 ], [ -123.981409986999935, 48.400655656000026 ], [ -123.981429244999958, 48.400204110000068 ], [ -123.981011797999955, 48.400196147000088 ], [ -123.981022754999913, 48.399939263000128 ], [ -123.98074380299991, 48.399933941000029 ], [ -123.980867578999948, 48.397032451000022 ], [ -123.980897523999928, 48.396330435000095 ], [ -123.981078144999941, 48.3963338820001 ], [ -123.981120171, 48.395348537000132 ], [ -123.981798874999967, 48.39536148500013 ], [ -123.981923106999915, 48.395574606000075 ], [ -123.982156512999936, 48.395735503000061 ], [ -123.982469706999936, 48.395813904000086 ], [ -123.983630997999967, 48.395830895000081 ], [ -123.984803582999987, 48.395694200000037 ], [ -123.984909601999945, 48.395603098000095 ], [ -123.984898917999885, 48.395420568000056 ], [ -123.986361576999983, 48.395448413000018 ], [ -123.986434105999962, 48.395473491000097 ], [ -123.986427894, 48.395842298000026 ], [ -123.986415504999968, 48.395904997000144 ], [ -123.986225990000023, 48.395924913000073 ], [ -123.986219889999916, 48.396222594000129 ], [ -123.985895713999952, 48.396305202000129 ], [ -123.98580720199999, 48.396567290000043 ], [ -123.985528478999953, 48.396839296000095 ], [ -123.98545020499995, 48.397020206000128 ], [ -123.985550185999969, 48.397226704000055 ], [ -123.985375082999965, 48.397255193000071 ], [ -123.98529831499998, 48.397552791000123 ], [ -123.985357388999944, 48.39772230000009 ], [ -123.985505699999976, 48.397747899000144 ], [ -123.985631410999929, 48.397935905000118 ], [ -123.985871802999938, 48.397834792000062 ], [ -123.986061587999956, 48.397870400000059 ], [ -123.986142311999927, 48.398516995000101 ], [ -123.98642711299999, 48.398622395000125 ], [ -123.987038488999971, 48.399454095000081 ], [ -123.987518012999928, 48.399810202000012 ], [ -123.987685282999962, 48.400104993000092 ], [ -123.98793260399999, 48.400283005000077 ], [ -123.987864698999914, 48.400949591000078 ], [ -123.987678322999955, 48.401113301000088 ], [ -123.987808007999945, 48.401588999000111 ], [ -123.98819580899999, 48.401989193000084 ], [ -123.988660502999934, 48.402274090000112 ], [ -123.988857308999982, 48.402704202000116 ], [ -123.98973447899999, 48.403316599000057 ], [ -123.989928212999956, 48.403621401000116 ], [ -123.990572797999974, 48.404030088000113 ], [ -123.990787313999988, 48.40463110600011 ], [ -123.991118985999961, 48.405005694000081 ], [ -123.991501198999927, 48.405217889000014 ], [ -123.991655191999939, 48.405558299000084 ], [ -123.991901501999934, 48.405682212000045 ], [ -123.992130802999952, 48.405608109000113 ], [ -123.99240070299993, 48.405642288000116 ], [ -123.992514086999961, 48.40589299100008 ], [ -123.992439107999985, 48.406236210000074 ], [ -123.993167195999931, 48.406805911000106 ], [ -123.993464366999916, 48.406944975000094 ], [ -123.993461332999914, 48.407016514000084 ], [ -123.992709809999923, 48.407002264000056 ], [ -123.992694687999972, 48.407358806000097 ], [ -123.99267414799999, 48.407843031000027 ], [ -123.987285087999936, 48.407740689000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41569084", "BldgCostT": "28668334", "sL_LossRatio": "0.97725981436502", "sL_AssetLoss": "34674.607", "sL_BldgLoss": "33886.1", "sL_StrLoss": "30420.7", "sL_NStrLoss": "3465.4", "sL_ContLoss": "788.507", "geom_point": "0101000020E61000006AFED281B0FB5EC046941F8690314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.937889935, 48.396265030000094 ], [ -123.93796364499994, 48.394572949000114 ], [ -123.936013061999958, 48.394534918000097 ], [ -123.93595886, 48.39577797099999 ], [ -123.935347955999987, 48.395766052000056 ], [ -123.935343042999961, 48.395878686000039 ], [ -123.929955470999943, 48.395773423000016 ], [ -123.929996926999976, 48.394825426000097 ], [ -123.930113041999903, 48.392169966000054 ], [ -123.930723899999961, 48.392181915000023 ], [ -123.930728823999971, 48.392069282000122 ], [ -123.931387684999919, 48.392082165000033 ], [ -123.931410974999963, 48.39154914800006 ], [ -123.931396970999941, 48.391548873000033 ], [ -123.931446023999982, 48.390426249000036 ], [ -123.931411737999966, 48.390425578000119 ], [ -123.931430355999979, 48.389999467000095 ], [ -123.931200553999972, 48.389994973000142 ], [ -123.931257502999955, 48.38869174400002 ], [ -123.930639709999937, 48.388679662000065 ], [ -123.930697016999915, 48.387368562000084 ], [ -123.930072867999911, 48.387356352000076 ], [ -123.930146542999964, 48.385671146000121 ], [ -123.929896459999952, 48.3856662520001 ], [ -123.929923017999926, 48.385058826000041 ], [ -123.92945887899999, 48.385049742000042 ], [ -123.929475613999941, 48.384667071000081 ], [ -123.928717175999935, 48.384652224000099 ], [ -123.928719767999937, 48.384592952000098 ], [ -123.926893413999906, 48.384557176000122 ], [ -123.926912019999975, 48.384132221000058 ], [ -123.925724795999955, 48.384108947000065 ], [ -123.925752333999966, 48.383480343000059 ], [ -123.92508891099996, 48.383467333000077 ], [ -123.925103813999968, 48.38312724400005 ], [ -123.924455107999947, 48.383114517000067 ], [ -123.924465455999936, 48.382878448000056 ], [ -123.924127109999958, 48.3828718090001 ], [ -123.924137420999941, 48.382636621000131 ], [ -123.923738910999987, 48.382628799000031 ], [ -123.923811818999965, 48.380966037000142 ], [ -123.923381793999937, 48.380957596000052 ], [ -123.923410235999953, 48.380309061000084 ], [ -123.921271056999956, 48.380267041000131 ], [ -123.921278213999955, 48.380104014000032 ], [ -123.920586841999949, 48.380090425000105 ], [ -123.920623753999948, 48.379249856000051 ], [ -123.917268472999965, 48.379183841000035 ], [ -123.917366045, 48.376965317000057 ], [ -123.91764867699996, 48.376970097000068 ], [ -123.918468789999906, 48.376738004000075 ], [ -123.918708177000013, 48.376743087000101 ], [ -123.920008691999953, 48.376770796000109 ], [ -123.92041770400003, 48.376920292000101 ], [ -123.920645799999988, 48.376918893000088 ], [ -123.920739385999951, 48.376890394000029 ], [ -123.920831287999988, 48.376638308000111 ], [ -123.921111978999988, 48.376564197000079 ], [ -123.92126881499999, 48.376931696000021 ], [ -123.921430813999933, 48.377030006000034 ], [ -123.922798107999981, 48.377153889000112 ], [ -123.923112504999921, 48.377411609000042 ], [ -123.923215506999952, 48.377887290000011 ], [ -123.923458484999912, 48.37786739200002 ], [ -123.923741103999973, 48.377730686000127 ], [ -123.924092187999946, 48.377727795000126 ], [ -123.92471591599994, 48.377884508000051 ], [ -123.925329909999931, 48.378303201000087 ], [ -123.92736149299995, 48.379338610000097 ], [ -123.928435107999974, 48.379663296000039 ], [ -123.928721384999918, 48.379839906000079 ], [ -123.928806998999946, 48.380119113000063 ], [ -123.929014000999985, 48.380332699000078 ], [ -123.929478890000013, 48.380653093000028 ], [ -123.930213497999901, 48.38097071100001 ], [ -123.931171616999976, 48.381655797000029 ], [ -123.931199909999961, 48.381755496000054 ], [ -123.931394107999921, 48.381987608000017 ], [ -123.931973397999954, 48.381964800000063 ], [ -123.932047207999958, 48.381531890000126 ], [ -123.932179714999933, 48.381432200000091 ], [ -123.932425182999921, 48.381456392000132 ], [ -123.932616101999898, 48.381590295000052 ], [ -123.932745305999958, 48.381994796000107 ], [ -123.934582985999967, 48.382779498000083 ], [ -123.935898912999988, 48.383182494000053 ], [ -123.935944090999968, 48.383372014000074 ], [ -123.936410393999921, 48.383772187000012 ], [ -123.937740408999943, 48.384139584000089 ], [ -123.938607986999926, 48.384286294000027 ], [ -123.940921093999918, 48.385229105000043 ], [ -123.940928405999955, 48.385562388000075 ], [ -123.941659734999973, 48.38598584000011 ], [ -123.94164146599999, 48.386406060000127 ], [ -123.939896298999926, 48.386372090000094 ], [ -123.939886007999945, 48.386608602000081 ], [ -123.939342439999933, 48.386598016000036 ], [ -123.939228482999951, 48.389216099000066 ], [ -123.940347248999927, 48.389237886000089 ], [ -123.940196465999975, 48.392703434000069 ], [ -123.943434140999955, 48.39276641500004 ], [ -123.943318353999928, 48.395431485000117 ], [ -123.943277580999947, 48.396369888000017 ], [ -123.937889935, 48.396265030000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.966620414806159", "sL_AssetLoss": "3834.08", "sL_BldgLoss": "3706.1", "sL_StrLoss": "3243", "sL_NStrLoss": "463.1", "sL_ContLoss": "127.98", "geom_point": "0101000020E610000040BA7DFB5FFE5EC04EEA2EFD89324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.974594717999963, 48.392672596000075 ], [ -123.976708179999889, 48.392713032000088 ], [ -123.976825724999969, 48.392789697000119 ], [ -123.976712872999926, 48.395430126000079 ], [ -123.976688348, 48.396003884000088 ], [ -123.976674884999952, 48.396318863000083 ], [ -123.971287170999972, 48.396215705 ], [ -123.971312933999954, 48.395614593000076 ], [ -123.971342758999953, 48.394918669000049 ], [ -123.97200690399994, 48.394776988000054 ], [ -123.97266769, 48.394735689000065 ], [ -123.973902401999908, 48.394356892000062 ], [ -123.974145443999944, 48.394220613000059 ], [ -123.974197, 48.394191704000029 ], [ -123.97444752399997, 48.393857005000022 ], [ -123.974402318, 48.393596394000085 ], [ -123.974561398999967, 48.392686294000058 ], [ -123.974594717999963, 48.392672596000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7704334", "BldgCostT": "5313334", "sL_LossRatio": "0.939754313512757", "sL_AssetLoss": "14286.5", "sL_BldgLoss": "13425.8", "sL_StrLoss": "10970.3", "sL_NStrLoss": "2455.5", "sL_ContLoss": "860.7", "geom_point": "0101000020E6100000F71A8A543BF95EC0BF3A7DF3D1314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.891982583999919, 48.385867904000058 ], [ -123.897368942999933, 48.385975102000032 ], [ -123.897208899999967, 48.389578547000028 ], [ -123.896643715999943, 48.389567312000104 ], [ -123.896639541999917, 48.389661269000044 ], [ -123.89651023899998, 48.39257135500003 ], [ -123.892750661999983, 48.392496543000107 ], [ -123.891123130999944, 48.392464115000067 ], [ -123.89128364699999, 48.388860696000094 ], [ -123.891848821999986, 48.388871960000074 ], [ -123.891982583999919, 48.385867904000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30227667", "BldgCostT": "20846667", "sL_LossRatio": "0.975352283255152", "sL_AssetLoss": "26628.43", "sL_BldgLoss": "25972.1", "sL_StrLoss": "23307.6", "sL_NStrLoss": "2664.5", "sL_ContLoss": "656.33", "geom_point": "0101000020E6100000C2C0EFB63DF65EC0CFA2140025304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.855901657999951, 48.381740524000115 ], [ -123.855905330999917, 48.381659402000061 ], [ -123.852145727999954, 48.381583126000109 ], [ -123.852208268999945, 48.380204360000043 ], [ -123.849782225999945, 48.380155069000061 ], [ -123.84994584499999, 48.376551638000088 ], [ -123.851801761999965, 48.37658935000006 ], [ -123.852048992000036, 48.376594371000046 ], [ -123.85206014399995, 48.376348533000034 ], [ -123.85167327, 48.376340675000101 ], [ -123.849347451999947, 48.376293406000094 ], [ -123.849341798999916, 48.376417870000118 ], [ -123.84837184099996, 48.376398142000021 ], [ -123.848363768999945, 48.376575795000065 ], [ -123.847373806999954, 48.376555650000057 ], [ -123.847368634999967, 48.376669419000052 ], [ -123.847016867999969, 48.376662258000074 ], [ -123.847011726999966, 48.37677532700004 ], [ -123.84576171, 48.376749873000072 ], [ -123.845758380999939, 48.376823058000099 ], [ -123.843729030999896, 48.376781704000152 ], [ -123.843693440999971, 48.377563307000038 ], [ -123.843098346999952, 48.377551172000054 ], [ -123.843087927999974, 48.377779920000073 ], [ -123.837702624999963, 48.377669959000023 ], [ -123.837750832999987, 48.37661418800009 ], [ -123.837823443999966, 48.375023905000035 ], [ -123.837743380999925, 48.375022267000155 ], [ -123.837784608999939, 48.374119301000107 ], [ -123.837528526999947, 48.374114065000064 ], [ -123.83753812499999, 48.373903863000059 ], [ -123.83706822399995, 48.373894254000064 ], [ -123.837072692, 48.3737964050001 ], [ -123.836600211999965, 48.37378674100006 ], [ -123.836611248999986, 48.373545171000032 ], [ -123.836086207999955, 48.373534429000074 ], [ -123.836097893999977, 48.373278677000052 ], [ -123.835440000999981, 48.373265213000082 ], [ -123.835450965999925, 48.373025308000102 ], [ -123.834805591999924, 48.37301209700005 ], [ -123.834814415999944, 48.372819086000085 ], [ -123.834555793999954, 48.372813792000088 ], [ -123.834565210999969, 48.372607846000065 ], [ -123.8340833889999, 48.372597980000087 ], [ -123.834095463999915, 48.372333939000036 ], [ -123.833750392999917, 48.372326871000055 ], [ -123.833759148999945, 48.372135427000075 ], [ -123.833380090999952, 48.372127661000036 ], [ -123.833387199999933, 48.371972251000052 ], [ -123.833021286999966, 48.371964753000057 ], [ -123.833032277999962, 48.371724532 ], [ -123.832705990999969, 48.371717846000131 ], [ -123.83271840099999, 48.371446670000061 ], [ -123.832306891999934, 48.371438236000152 ], [ -123.832319355999957, 48.371165915000084 ], [ -123.832072610999958, 48.371160856000095 ], [ -123.832058874999987, 48.37104320500007 ], [ -123.832072494999963, 48.370744111000107 ], [ -123.832145333999961, 48.370548948000057 ], [ -123.832195410999958, 48.370414791000073 ], [ -123.832390202999989, 48.37013200300003 ], [ -123.832654994999956, 48.369881399000107 ], [ -123.832991285999952, 48.369657399000154 ], [ -123.833625812999969, 48.369399046000105 ], [ -123.834049836999924, 48.369226437000087 ], [ -123.834484833999937, 48.369031907000078 ], [ -123.834493365999975, 48.369038844000016 ], [ -123.834570322999966, 48.369101325000102 ], [ -123.83520530699991, 48.369616908000104 ], [ -123.837536793999959, 48.370985592000125 ], [ -123.838896004, 48.371533892000066 ], [ -123.841122509999948, 48.37229158500007 ], [ -123.84300549999989, 48.372664809000099 ], [ -123.843240437999953, 48.37267183200008 ], [ -123.843231663999987, 48.372864472000067 ], [ -123.844112599, 48.372882434000097 ], [ -123.844120684999936, 48.37270478100001 ], [ -123.846210823999968, 48.372747370000098 ], [ -123.846221494999909, 48.372512729000086 ], [ -123.847083504999901, 48.372616311000087 ], [ -123.84829050899998, 48.372868392000072 ], [ -123.849364408999975, 48.373309905000063 ], [ -123.850393552999918, 48.373887836000058 ], [ -123.851421404999982, 48.374465011000019 ], [ -123.852780706999937, 48.374913589000109 ], [ -123.852741109999926, 48.375067400000049 ], [ -123.851934792999955, 48.37520839100015 ], [ -123.851920709999916, 48.375262491000072 ], [ -123.852869293999987, 48.375353700000097 ], [ -123.854338577999926, 48.375289593000097 ], [ -123.856478789999954, 48.376416088000106 ], [ -123.857089579, 48.376672493000072 ], [ -123.860198095999948, 48.37839440900008 ], [ -123.861555003999968, 48.378881976000116 ], [ -123.861597089999961, 48.378897092000045 ], [ -123.861808280999952, 48.378954126000124 ], [ -123.861751494999965, 48.380211652000042 ], [ -123.861724487999965, 48.38021110600004 ], [ -123.86143273899999, 48.380205208000064 ], [ -123.861361801999934, 48.380203774000066 ], [ -123.861349519999976, 48.380475680000089 ], [ -123.861287465999965, 48.38184955800007 ], [ -123.860719007999933, 48.381838063000025 ], [ -123.855901657999951, 48.381740524000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4313750", "BldgCostT": "2975000", "sL_LossRatio": "0.953645884038218", "sL_AssetLoss": "7190.3", "sL_BldgLoss": "6857", "sL_StrLoss": "5850", "sL_NStrLoss": "1007", "sL_ContLoss": "333.3", "geom_point": "0101000020E6100000F4AD499697015FC0254BF784B6354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.022257218999925, 48.417780525000083 ], [ -124.027647496, 48.417881085000047 ], [ -124.027497265999955, 48.421484527000132 ], [ -124.0266428799999, 48.421468606000104 ], [ -124.02210657799999, 48.421383960000036 ], [ -124.022179502999975, 48.419639585000041 ], [ -124.022257218999925, 48.417780525000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16242417", "BldgCostT": "11201667", "sL_LossRatio": "0.955124715293595", "sL_AssetLoss": "27001.5", "sL_BldgLoss": "25789.8", "sL_StrLoss": "21629.8", "sL_NStrLoss": "4160", "sL_ContLoss": "1211.7", "geom_point": "0101000020E61000000E437959F2025FC07AE16B5B56364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.049866892, 48.430163460000117 ], [ -124.050011727999944, 48.426650272000053 ], [ -124.049765214999951, 48.42664573200009 ], [ -124.049751640999915, 48.426974959000113 ], [ -124.049501000999939, 48.42697034300005 ], [ -124.049489446999971, 48.427250565000108 ], [ -124.049161016999975, 48.427244515000012 ], [ -124.049148748999954, 48.427541973000075 ], [ -124.04886803, 48.427536801000052 ], [ -124.048856452, 48.42781747800003 ], [ -124.04785769599998, 48.427799071000017 ], [ -124.0478470259999, 48.428057603000113 ], [ -124.04670704599998, 48.428036581000107 ], [ -124.042455546999975, 48.427958073000099 ], [ -124.042469850999964, 48.427612400000051 ], [ -124.040475995999927, 48.427575522000083 ], [ -124.040515988, 48.426610115000088 ], [ -124.040519610000018, 48.426522672000104 ], [ -124.040625256999959, 48.423972099000018 ], [ -124.042880126999989, 48.42401380200004 ], [ -124.042910244999959, 48.423285804000102 ], [ -124.040841464, 48.423247544000048 ], [ -124.040920193999938, 48.421346401000037 ], [ -124.041810412999908, 48.42135419900012 ], [ -124.042784290999947, 48.421310103000081 ], [ -124.043630790999927, 48.421095013000077 ], [ -124.043803079999975, 48.420985299000044 ], [ -124.044246191999946, 48.420126501000034 ], [ -124.044660490999988, 48.419853105000136 ], [ -124.045565802999974, 48.419917188000035 ], [ -124.046807104999971, 48.419833208000085 ], [ -124.047965799999972, 48.420237601000046 ], [ -124.048581696000028, 48.420600798000031 ], [ -124.049425087999978, 48.420952599000046 ], [ -124.050242195999914, 48.421151992000041 ], [ -124.050439905999937, 48.421159864000053 ], [ -124.050435780999948, 48.42125997100009 ], [ -124.050366340999929, 48.422944957000077 ], [ -124.049947551999963, 48.422937244000103 ], [ -124.049943198999955, 48.423042833000054 ], [ -124.050506352999903, 48.423053203000059 ], [ -124.050361565999978, 48.426566413000053 ], [ -124.051775920999901, 48.426592445000018 ], [ -124.051747098999954, 48.42733729 ], [ -124.05161589, 48.428120600000049 ], [ -124.051106305999937, 48.429673004000179 ], [ -124.05110514899999, 48.430186255000081 ], [ -124.049866892, 48.430163460000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.992999941827771", "sL_AssetLoss": "515.71", "sL_BldgLoss": "512.1", "sL_StrLoss": "484", "sL_NStrLoss": "28.1", "sL_ContLoss": "3.61", "geom_point": "0101000020E610000059835A8074035FC04010836D02364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.053654747999985, 48.421212027000067 ], [ -124.053653259999976, 48.421140057000045 ], [ -124.054869493999945, 48.421128914000079 ], [ -124.054871677999984, 48.421234391000056 ], [ -124.055285275999964, 48.421241989000066 ], [ -124.055285804, 48.421267308000061 ], [ -124.054765886, 48.421669007000126 ], [ -124.054786117999967, 48.421929604000084 ], [ -124.054663657999953, 48.422098585000136 ], [ -124.054549792999936, 48.422255706000023 ], [ -124.053243731999913, 48.423366052000077 ], [ -124.053317197999917, 48.421580717000026 ], [ -124.053332612999924, 48.42120610500006 ], [ -124.053654747999985, 48.421212027000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.96470845895087", "sL_AssetLoss": "2922.23", "sL_BldgLoss": "2819.1", "sL_StrLoss": "2450", "sL_NStrLoss": "369.1", "sL_ContLoss": "103.13", "geom_point": "0101000020E61000004D808207DDFD5EC03030E9F796324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.963832336999985, 48.395622157000069 ], [ -123.963877909999965, 48.394562691000083 ], [ -123.964072496999961, 48.394520693000104 ], [ -123.964303478, 48.394626099000099 ], [ -123.965059709999977, 48.394620404000143 ], [ -123.965568500999964, 48.394399600000035 ], [ -123.965875597999954, 48.394171695000111 ], [ -123.966548498999956, 48.394005097000083 ], [ -123.967236, 48.393999394000055 ], [ -123.967561180999922, 48.394067796000058 ], [ -123.969261861999939, 48.394749134000094 ], [ -123.969224282999932, 48.395625080000038 ], [ -123.96919918599994, 48.396210048000064 ], [ -123.963811501999899, 48.396106509000106 ], [ -123.963832336999985, 48.395622157000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20556166", "BldgCostT": "14176666", "sL_LossRatio": "0.925574379674434", "sL_AssetLoss": "44617.7", "sL_BldgLoss": "41297", "sL_StrLoss": "31766", "sL_NStrLoss": "9531", "sL_ContLoss": "3320.7", "geom_point": "0101000020E610000032E87C5F39F85EC0B676F42207314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.882003466999919, 48.386075097000088 ], [ -123.882041830999938, 48.385217506000039 ], [ -123.881106485999979, 48.385198775000056 ], [ -123.88112214599991, 48.384848848000082 ], [ -123.877667084, 48.384779585000082 ], [ -123.877672420999929, 48.384660537000052 ], [ -123.875814124999962, 48.384623238000096 ], [ -123.87582270199999, 48.384432058000066 ], [ -123.873071038, 48.384376767000049 ], [ -123.873092363999902, 48.383902017000096 ], [ -123.872528675999902, 48.383890681000018 ], [ -123.872517033999941, 48.384149774000058 ], [ -123.870895638, 48.38411715200003 ], [ -123.86713093899999, 48.384041312000086 ], [ -123.867182599999964, 48.382894476000061 ], [ -123.867159805999933, 48.382894016000094 ], [ -123.867195036999959, 48.382111888000104 ], [ -123.867220798999966, 48.381539966000091 ], [ -123.866806472999897, 48.381531611000092 ], [ -123.866852369999961, 48.380512818000078 ], [ -123.86687770199994, 48.380493608000108 ], [ -123.867058193999966, 48.379962404 ], [ -123.867298908999885, 48.379842790000033 ], [ -123.868039287999977, 48.37969320400002 ], [ -123.868306786999938, 48.379475294000059 ], [ -123.868788803999976, 48.379264485000085 ], [ -123.868866202000035, 48.379112203000027 ], [ -123.869136198999954, 48.379019588000048 ], [ -123.869351485000024, 48.379036704000036 ], [ -123.86969696099996, 48.379182534000044 ], [ -123.87072922199998, 48.379618249000018 ], [ -123.871568286999945, 48.379972397000117 ], [ -123.871892655999915, 48.380082078000051 ], [ -123.874327289999911, 48.380905195000039 ], [ -123.875273903999968, 48.381033397000124 ], [ -123.875560407999927, 48.381138789000026 ], [ -123.87651900499999, 48.381212905000055 ], [ -123.878234205999917, 48.381217095000117 ], [ -123.879602393999974, 48.381450707000056 ], [ -123.881807114999944, 48.381531902000084 ], [ -123.88326459699999, 48.381484907000058 ], [ -123.884701083999943, 48.381789703000017 ], [ -123.886999991999957, 48.382004699000078 ], [ -123.888165309999934, 48.382229800000033 ], [ -123.888860377999919, 48.382289318000083 ], [ -123.888851030999916, 48.382498949000059 ], [ -123.890346000999969, 48.382528775000068 ], [ -123.890185435999925, 48.386132232000129 ], [ -123.887394569999984, 48.386076534000097 ], [ -123.887389828999986, 48.386182801000096 ], [ -123.882003466999919, 48.386075097000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.969706087617901", "sL_AssetLoss": "2392.89", "sL_BldgLoss": "2320.4", "sL_StrLoss": "2106", "sL_NStrLoss": "214.4", "sL_ContLoss": "72.49", "geom_point": "0101000020E61000006449907C2BFD5EC0D5BCDBA3D4324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.953100110999927, 48.397222175000117 ], [ -123.953158216999924, 48.395878428000067 ], [ -123.953654388999979, 48.395929202000097 ], [ -123.954546102999984, 48.395840903000099 ], [ -123.955310208999933, 48.396231087000068 ], [ -123.955797192999967, 48.396298098000095 ], [ -123.956999598999985, 48.396262494000034 ], [ -123.957507909999933, 48.396050304000063 ], [ -123.958519519999953, 48.395924905000079 ], [ -123.958548867999923, 48.395912590000073 ], [ -123.958518689999963, 48.39661232400001 ], [ -123.958449475999956, 48.398217107000107 ], [ -123.953061586999979, 48.398113022000118 ], [ -123.953100110999927, 48.397222175000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39941417", "BldgCostT": "26071667", "sL_LossRatio": "0.978784401927294", "sL_AssetLoss": "23035.41", "sL_BldgLoss": "22546.7", "sL_StrLoss": "20367.5", "sL_NStrLoss": "2179.2", "sL_ContLoss": "488.71", "geom_point": "0101000020E6100000C118D34406FA5EC00782BEFC67314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.901930752999959, 48.392053901000025 ], [ -123.901959295, 48.391409900000113 ], [ -123.900066722999938, 48.391372353000115 ], [ -123.90012828299993, 48.389984548000051 ], [ -123.900226555999922, 48.387768914000041 ], [ -123.900268718999953, 48.387769751000114 ], [ -123.900312507999942, 48.386782414000031 ], [ -123.901056493999974, 48.386797177000041 ], [ -123.901057237999979, 48.386780397000045 ], [ -123.900179097999967, 48.386762970000113 ], [ -123.900338904999956, 48.383159502000076 ], [ -123.900901284, 48.383170664 ], [ -123.900932920999963, 48.382457015000092 ], [ -123.90393375799998, 48.382516521000085 ], [ -123.90394100899999, 48.382352735000076 ], [ -123.902180532999978, 48.382317835000045 ], [ -123.902239087999973, 48.380996152000151 ], [ -123.902326086999935, 48.380986398000118 ], [ -123.90291760799991, 48.380838293000117 ], [ -123.903947495, 48.380298491000147 ], [ -123.904371306999948, 48.379872688000034 ], [ -123.905331780999973, 48.379181896000055 ], [ -123.906129288999949, 48.37917479099999 ], [ -123.907196789999915, 48.379283101000148 ], [ -123.908784020999988, 48.379676097000093 ], [ -123.91009679099993, 48.37974589200013 ], [ -123.911405398999989, 48.379718887000124 ], [ -123.911806701999964, 48.379562211000064 ], [ -123.912782305999983, 48.37891558500008 ], [ -123.913024729999989, 48.378801039000102 ], [ -123.912884994999928, 48.381971384000032 ], [ -123.909440486, 48.381903364000053 ], [ -123.909420824999927, 48.382348683000089 ], [ -123.9118625, 48.38239691200009 ], [ -123.911703571999951, 48.386000401000089 ], [ -123.911340434999886, 48.385993232000068 ], [ -123.911260625999972, 48.387802246000149 ], [ -123.913872143999939, 48.387853775000103 ], [ -123.913745234999936, 48.39073376600011 ], [ -123.913713350999942, 48.39145723300004 ], [ -123.908326330999969, 48.391350870000068 ], [ -123.908403067999927, 48.389614036000069 ], [ -123.908428253999929, 48.389043975000114 ], [ -123.908182596999922, 48.389039118000085 ], [ -123.908170315999925, 48.389317077000101 ], [ -123.907935582999926, 48.389312436000111 ], [ -123.907926530999987, 48.389517278000049 ], [ -123.907891659999919, 48.390306382000091 ], [ -123.907400233999979, 48.3902966630001 ], [ -123.907317838999973, 48.392160590000081 ], [ -123.901930752999959, 48.392053901000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.981836412919973", "sL_AssetLoss": "4268.43", "sL_BldgLoss": "4190.9", "sL_StrLoss": "3821", "sL_NStrLoss": "369.9", "sL_ContLoss": "77.53", "geom_point": "0101000020E610000067C7363ECDF55EC00D5A826BF2304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.837983717, 48.384833546000024 ], [ -123.838046363999965, 48.383461593000042 ], [ -123.83776998899998, 48.383455944000033 ], [ -123.837934533999928, 48.379852551000027 ], [ -123.843320085999906, 48.379962501000065 ], [ -123.843257595999958, 48.381334465000137 ], [ -123.84353395899997, 48.38134010000006 ], [ -123.843369834999947, 48.38494349100008 ], [ -123.837983717, 48.384833546000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.923175416133163", "sL_AssetLoss": "1562", "sL_BldgLoss": "1442", "sL_StrLoss": "1060", "sL_NStrLoss": "382", "sL_ContLoss": "120", "geom_point": "0101000020E6100000414960F7C6E05EC07E36B4F966314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.511067080999965, 48.385944095000063 ], [ -123.512357912999931, 48.385489808000052 ], [ -123.512736652999962, 48.385267519000102 ], [ -123.513105643999893, 48.385276196000127 ], [ -123.513089569999948, 48.385582184000079 ], [ -123.513604244999911, 48.385594283 ], [ -123.513595885999905, 48.385753438000059 ], [ -123.511801701, 48.386543687000085 ], [ -123.51099221, 48.386512301000089 ], [ -123.510840481999949, 48.3863500000001 ], [ -123.510851391999964, 48.38608940500005 ], [ -123.511067080999965, 48.385944095000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33690750", "BldgCostT": "19815000", "sL_LossRatio": "0.932482853581093", "sL_AssetLoss": "23022.3", "sL_BldgLoss": "21467.9", "sL_StrLoss": "16732.5", "sL_NStrLoss": "4735.4", "sL_ContLoss": "1554.4", "geom_point": "0101000020E6100000B4D9FDCFC6DE5EC077022F6D97314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.478090206999966, 48.389487498000108 ], [ -123.478100395999945, 48.389253889000059 ], [ -123.477664715999964, 48.388957697000123 ], [ -123.477423088999956, 48.388923505000022 ], [ -123.477080312999973, 48.388439293000047 ], [ -123.477085492999947, 48.3883993090001 ], [ -123.47710611699992, 48.388241307000023 ], [ -123.477307095999919, 48.388231396000059 ], [ -123.477414900999932, 48.38811319400007 ], [ -123.477275314999986, 48.387574797000099 ], [ -123.477693105999933, 48.38754630800004 ], [ -123.477461313, 48.387231607000054 ], [ -123.47759291399997, 48.386852694000069 ], [ -123.477725493999984, 48.386754495000076 ], [ -123.477643778999919, 48.3866376940001 ], [ -123.478101705999933, 48.386401311000036 ], [ -123.478057801999967, 48.386113589000026 ], [ -123.478477612999924, 48.38612920900006 ], [ -123.478878985999955, 48.38587569400007 ], [ -123.479350091999891, 48.385730503000069 ], [ -123.479850699999986, 48.385710509000099 ], [ -123.480309381, 48.385798797000049 ], [ -123.480351214000024, 48.385734693000089 ], [ -123.480120196, 48.385565198000094 ], [ -123.480307685999946, 48.385519705000014 ], [ -123.480292990999956, 48.385438495000059 ], [ -123.480076705999963, 48.385331708000052 ], [ -123.480102699999961, 48.385269012000073 ], [ -123.480463090999976, 48.384898691000075 ], [ -123.481014804999987, 48.384652306000142 ], [ -123.48135681699992, 48.384595941000036 ], [ -123.481904880999977, 48.384505594000139 ], [ -123.48251389499994, 48.384556896000149 ], [ -123.482610115999989, 48.384663702000083 ], [ -123.483055402999966, 48.384697910000035 ], [ -123.483620618999979, 48.384461499000082 ], [ -123.483891489999934, 48.384632391000011 ], [ -123.483758213, 48.384713592000068 ], [ -123.483841712999933, 48.38510949100008 ], [ -123.484088992999887, 48.385350206000062 ], [ -123.484399595999932, 48.385456994000045 ], [ -123.484447528999965, 48.385456996000073 ], [ -123.484317087999941, 48.387911617000015 ], [ -123.483062293999964, 48.387881767000081 ], [ -123.482968705999951, 48.389641863000094 ], [ -123.481777080999933, 48.389399197000088 ], [ -123.481547088999974, 48.389517404000046 ], [ -123.481046596999974, 48.389493201000093 ], [ -123.480846004999975, 48.389557305000032 ], [ -123.48065950099999, 48.389934695000086 ], [ -123.48096048799999, 48.390303607000114 ], [ -123.48079921099999, 48.390428887000041 ], [ -123.480421996999922, 48.390494395000069 ], [ -123.480464919999946, 48.39069240300006 ], [ -123.480290597999925, 48.390836186000094 ], [ -123.479775914999919, 48.390766505000087 ], [ -123.479478188999934, 48.390615496000095 ], [ -123.479367494999948, 48.390408991000072 ], [ -123.478907984999935, 48.390329202000039 ], [ -123.478363475999956, 48.390017297000057 ], [ -123.478090206999966, 48.389487498000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247871416", "BldgCostT": "159211666", "sL_LossRatio": "0.826266597986601", "sL_AssetLoss": "867597.7", "sL_BldgLoss": "716867", "sL_StrLoss": "460813", "sL_NStrLoss": "256054", "sL_ContLoss": "150730.7", "geom_point": "0101000020E61000005E72B26064E05EC0680E5A59EC314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.486624807999988, 48.399330184000121 ], [ -123.488728495999936, 48.395964808000066 ], [ -123.488925105999925, 48.39536100300009 ], [ -123.48908989799996, 48.394235791000085 ], [ -123.488920405999977, 48.393418291000032 ], [ -123.488756391999971, 48.393265895000127 ], [ -123.488248678999923, 48.393327848000069 ], [ -123.488268926999964, 48.392946300000048 ], [ -123.487924361999958, 48.392938119000078 ], [ -123.487964621999978, 48.39217952300001 ], [ -123.487412389999946, 48.392166408000044 ], [ -123.48753052899994, 48.38994074000005 ], [ -123.487525323999961, 48.389940616000018 ], [ -123.487716537999944, 48.386337853000086 ], [ -123.493101949999954, 48.386465626000131 ], [ -123.493048521999924, 48.387474493000092 ], [ -123.494174731999948, 48.387501178000079 ], [ -123.494190033999956, 48.387212114000093 ], [ -123.494485196999946, 48.387219107000142 ], [ -123.494517453999961, 48.386609621000076 ], [ -123.49571523399996, 48.386637985000057 ], [ -123.495743917999945, 48.386095768000146 ], [ -123.496252691999985, 48.386270193 ], [ -123.496456595999973, 48.386449710000136 ], [ -123.496582307999972, 48.386854211000063 ], [ -123.496731395999944, 48.386943888000118 ], [ -123.496870386999916, 48.387267208000011 ], [ -123.49704659299999, 48.387409610000098 ], [ -123.497345204999988, 48.38748938600002 ], [ -123.49777857699999, 48.387496497000058 ], [ -123.497953288999952, 48.38743239800008 ], [ -123.498245905999937, 48.386990888000064 ], [ -123.498514382999957, 48.386891194000015 ], [ -123.498727, 48.386439698000061 ], [ -123.49903839299999, 48.386538003000091 ], [ -123.499191492999927, 48.387130492000097 ], [ -123.499369212999966, 48.387237289000083 ], [ -123.49954321099996, 48.387156091000108 ], [ -123.499715592999905, 48.386758715000063 ], [ -123.50014779199995, 48.386874089000109 ], [ -123.500377003, 48.386782899000103 ], [ -123.500443082999951, 48.386684693000134 ], [ -123.500360802999978, 48.386513786000087 ], [ -123.500469111999976, 48.386405502000066 ], [ -123.500525493999973, 48.386639086000045 ], [ -123.500807905, 48.386673291000101 ], [ -123.500891115999963, 48.38679859700003 ], [ -123.501269501999957, 48.386753008000049 ], [ -123.501836181999977, 48.386858393000111 ], [ -123.502545002999966, 48.387439495000052 ], [ -123.503638983999949, 48.387497900000014 ], [ -123.504329408, 48.38761178700004 ], [ -123.504627080999953, 48.387539199000109 ], [ -123.505298794999987, 48.387274291000047 ], [ -123.505738798999985, 48.3867786980001 ], [ -123.505697407999932, 48.386570688000056 ], [ -123.505003501999937, 48.386008213000061 ], [ -123.504908682999968, 48.385794276000141 ], [ -123.505235825999989, 48.385801992000012 ], [ -123.505267107999927, 48.385208381000055 ], [ -123.505659974999915, 48.385217646000079 ], [ -123.50568962199999, 48.384654989000126 ], [ -123.505881327999973, 48.38465951000012 ], [ -123.505893925999914, 48.384420394000067 ], [ -123.505940150999919, 48.384421484000022 ], [ -123.505954337999952, 48.384152193 ], [ -123.50615727099995, 48.384156979000075 ], [ -123.506171143999921, 48.383893599000046 ], [ -123.50778850099999, 48.383931721000103 ], [ -123.508294891999967, 48.38421221000003 ], [ -123.508430703999949, 48.384427312000049 ], [ -123.50891900499991, 48.384685106000063 ], [ -123.509238787999948, 48.385458401000058 ], [ -123.510654699999975, 48.386711709000053 ], [ -123.511822603999988, 48.387318506000121 ], [ -123.512823305, 48.387466585000041 ], [ -123.514113408999904, 48.388117406000056 ], [ -123.514333595999958, 48.388368091000068 ], [ -123.514431481, 48.388853698000077 ], [ -123.514947028999956, 48.388941709000072 ], [ -123.514902115, 48.389797236000078 ], [ -123.515100617999934, 48.389801899000126 ], [ -123.51514400799999, 48.388975337000019 ], [ -123.515149109999967, 48.388976207000042 ], [ -123.515313206999934, 48.389110089000049 ], [ -123.51535679399997, 48.389515994000078 ], [ -123.515451211999931, 48.389541605000041 ], [ -123.515678805, 48.389262493000032 ], [ -123.51625799699994, 48.389053104000027 ], [ -123.516683202999985, 48.388483488000126 ], [ -123.517731829999931, 48.388161345000128 ], [ -123.519458808999957, 48.388201856000087 ], [ -123.519494223999942, 48.387526010000094 ], [ -123.519633195999972, 48.387534902000063 ], [ -123.519876392999919, 48.387533511000115 ], [ -123.52042459899999, 48.387153212000072 ], [ -123.520600517999952, 48.387153206000086 ], [ -123.52080700099998, 48.387475092000024 ], [ -123.521649703999955, 48.38804761100009 ], [ -123.52197808499993, 48.388469203000049 ], [ -123.522141011, 48.388513397000068 ], [ -123.522288597999989, 48.38842221400008 ], [ -123.5215346089999, 48.387363986000089 ], [ -123.521501905999941, 48.386807197000067 ], [ -123.52113551399999, 48.386483902000137 ], [ -123.520525011999936, 48.386405499000034 ], [ -123.519999919999947, 48.386471005000018 ], [ -123.519224338999919, 48.386244413000099 ], [ -123.51923243799996, 48.386089869000038 ], [ -123.518737096999971, 48.386078251000121 ], [ -123.51873928899991, 48.386036436000069 ], [ -123.516223532999931, 48.3859773920001 ], [ -123.51585557699994, 48.385826035000086 ], [ -123.515894219999964, 48.385089624000031 ], [ -123.513225255999956, 48.385026909000011 ], [ -123.51322775700001, 48.38497927800011 ], [ -123.513889094999968, 48.384591114000081 ], [ -123.514801675999976, 48.383921696000073 ], [ -123.51680789199996, 48.382104410000139 ], [ -123.518578704, 48.380909487000046 ], [ -123.519623581999966, 48.380013702000063 ], [ -123.51989101099997, 48.379594905000012 ], [ -123.522847630999948, 48.379988887000124 ], [ -123.523993597999919, 48.37993119300009 ], [ -123.524077716999969, 48.379960078000117 ], [ -123.524329936999948, 48.380046670000077 ], [ -123.525097201999984, 48.380310099000042 ], [ -123.525459307999967, 48.380434392000069 ], [ -123.526106082999931, 48.380682362000094 ], [ -123.527311019999942, 48.381144299 ], [ -123.529231993999957, 48.381880697000021 ], [ -123.528958097999947, 48.382154878000087 ], [ -123.527744053999982, 48.383369967000057 ], [ -123.527210664999956, 48.383903822000015 ], [ -123.526932219999964, 48.384182496000129 ], [ -123.526777596999963, 48.384560403000059 ], [ -123.526609737999976, 48.385313024000112 ], [ -123.526543499999931, 48.385609987000109 ], [ -123.526565114999926, 48.385867599000086 ], [ -123.526619749999952, 48.386015153000116 ], [ -123.526773621999922, 48.386430586000067 ], [ -123.526834773999923, 48.386595738000075 ], [ -123.526979974999975, 48.386987765000086 ], [ -123.527112490999968, 48.38734555700006 ], [ -123.527122701999986, 48.387373105000073 ], [ -123.527174136999946, 48.387576429000013 ], [ -123.527191980999987, 48.387647101000027 ], [ -123.527181407999976, 48.387926401000108 ], [ -123.527095704999979, 48.388199403000087 ], [ -123.526952291000029, 48.388441394000047 ], [ -123.526469663999961, 48.388931914000075 ], [ -123.52636701699997, 48.389036247000085 ], [ -123.525880298999951, 48.389530895000071 ], [ -123.525768866999954, 48.389643306000067 ], [ -123.525382206999893, 48.390033301000116 ], [ -123.524738596999939, 48.390610705000093 ], [ -123.524142599999976, 48.390999896000082 ], [ -123.523441307999974, 48.391313499000027 ], [ -123.523081329999968, 48.391446297000108 ], [ -123.522896462999967, 48.391514505000032 ], [ -123.522705947999981, 48.391584754000107 ], [ -123.52261370799999, 48.391618801000085 ], [ -123.522278429999957, 48.39168947800011 ], [ -123.52225929599993, 48.391693513000043 ], [ -123.52189710699993, 48.391736411000032 ], [ -123.52177010299998, 48.391740564000045 ], [ -123.520886907999937, 48.391769494000101 ], [ -123.52008110599999, 48.391890395000118 ], [ -123.51931420199999, 48.392066289000141 ], [ -123.51770980299996, 48.392581511000067 ], [ -123.517349175999939, 48.392666701000053 ], [ -123.517320825999931, 48.392673399000088 ], [ -123.517173250999932, 48.392686969000096 ], [ -123.516758520999971, 48.392725105000075 ], [ -123.516602666999944, 48.392720200000092 ], [ -123.516210505999965, 48.392707814000083 ], [ -123.515588506999975, 48.392688201000055 ], [ -123.512981613999955, 48.39260595800004 ], [ -123.512283182999951, 48.39258389600009 ], [ -123.511853090999963, 48.392609890000088 ], [ -123.511683412999957, 48.392643987000056 ], [ -123.511387084999939, 48.392703504000039 ], [ -123.51043188599999, 48.393100401000019 ], [ -123.509644277999939, 48.393489498000115 ], [ -123.50854400799993, 48.394209394000029 ], [ -123.508118589999981, 48.394528506000015 ], [ -123.507795003999902, 48.394990728000067 ], [ -123.507591718999919, 48.395188815000054 ], [ -123.507330828999926, 48.395355844000086 ], [ -123.506910741999945, 48.3956002420001 ], [ -123.506501816999958, 48.395735800000061 ], [ -123.506171819999949, 48.395806473000064 ], [ -123.505877906999928, 48.395805850000087 ], [ -123.504887762999886, 48.395585007000143 ], [ -123.504456206999933, 48.39561270800003 ], [ -123.504072914999952, 48.395696546000053 ], [ -123.50284542899999, 48.396217702000072 ], [ -123.502458270999924, 48.396297824000072 ], [ -123.50125305399996, 48.396396523000085 ], [ -123.500745989999956, 48.396526138000112 ], [ -123.500429667999981, 48.396675376000111 ], [ -123.500349124999957, 48.396713359000032 ], [ -123.500065120999963, 48.396933890000049 ], [ -123.499802655999943, 48.397180202000122 ], [ -123.499268668999946, 48.397895340000062 ], [ -123.498942008999975, 48.39813201200009 ], [ -123.498434248999942, 48.398299482000041 ], [ -123.496575973999953, 48.398454055000123 ], [ -123.49611292799996, 48.39849256300004 ], [ -123.496010051999988, 48.398321475000103 ], [ -123.495834044999953, 48.398208056000016 ], [ -123.495754196999954, 48.398156622000073 ], [ -123.49565410299999, 48.398092119000111 ], [ -123.49455508799997, 48.398169797 ], [ -123.494283595, 48.398255406000018 ], [ -123.493629100999968, 48.398393193000054 ], [ -123.492060682999949, 48.398854691000082 ], [ -123.491143186999921, 48.399247815000081 ], [ -123.490122387999989, 48.399934196000068 ], [ -123.48986440399996, 48.40004558600009 ], [ -123.489666992999986, 48.400130801000081 ], [ -123.48893461899992, 48.400465103000023 ], [ -123.488290409999976, 48.40091610200011 ], [ -123.487239302, 48.400759552000125 ], [ -123.486529351999963, 48.400483265000048 ], [ -123.485816557999925, 48.400350488000043 ], [ -123.486624807999988, 48.399330184000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989843591306114", "sL_AssetLoss": "492.3", "sL_BldgLoss": "487.3", "sL_StrLoss": "454", "sL_NStrLoss": "33.3", "sL_ContLoss": "5", "geom_point": "0101000020E6100000CDA60AE33AE15EC03473D4138E334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.520665311999934, 48.403421985000129 ], [ -123.518027904999954, 48.402755501000058 ], [ -123.517414376999952, 48.402612955000087 ], [ -123.517412210999979, 48.402399434000095 ], [ -123.519844098999897, 48.402388472000091 ], [ -123.51984684699994, 48.40265835800006 ], [ -123.52025216499996, 48.402656526000058 ], [ -123.520254916999932, 48.402926412000085 ], [ -123.520660235999941, 48.402924578000132 ], [ -123.520665311999934, 48.403421985000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145072084", "BldgCostT": "95658334", "sL_LossRatio": "0.905351013692995", "sL_AssetLoss": "183580.73", "sL_BldgLoss": "166205", "sL_StrLoss": "135746.2", "sL_NStrLoss": "30458.8", "sL_ContLoss": "17375.73", "geom_point": "0101000020E6100000E181D093D5E15EC04EB10F57F3324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.532724912999981, 48.406403203000167 ], [ -123.532792731999976, 48.405102519000067 ], [ -123.535122397999956, 48.405156809000047 ], [ -123.53514636200002, 48.404696776000037 ], [ -123.537054984999955, 48.404741216000076 ], [ -123.53705747199993, 48.404693424000087 ], [ -123.537016771999944, 48.404692477000076 ], [ -123.53702534199999, 48.404527836000057 ], [ -123.532514922999937, 48.404422759000063 ], [ -123.532702770999933, 48.400820003000035 ], [ -123.533766941999943, 48.400844812000052 ], [ -123.533802163999923, 48.400168929000095 ], [ -123.538061722999942, 48.4002681240001 ], [ -123.538060429999959, 48.400145543000022 ], [ -123.537655134999937, 48.400147438000026 ], [ -123.53764660299997, 48.399337784000039 ], [ -123.538862468999966, 48.399332096000137 ], [ -123.538865318999981, 48.399601980000035 ], [ -123.539026724999971, 48.399601224000079 ], [ -123.539042029999933, 48.399306914000093 ], [ -123.537584711999955, 48.399273008000115 ], [ -123.537693691999905, 48.397178377000103 ], [ -123.53762385099999, 48.397178704000083 ], [ -123.537626694999972, 48.397448589000128 ], [ -123.536410873999941, 48.397454263 ], [ -123.536402361999961, 48.396644609000091 ], [ -123.536807628999981, 48.396642718000102 ], [ -123.536804789999977, 48.396372834000054 ], [ -123.537615321999951, 48.396369049000036 ], [ -123.537612476999968, 48.396099165000031 ], [ -123.537749871999907, 48.396098523000077 ], [ -123.53777215400001, 48.395670211000052 ], [ -123.537856877999971, 48.395672183000045 ], [ -123.537857205999899, 48.395665865000034 ], [ -123.5332095699999, 48.395557604000139 ], [ -123.533214073999943, 48.395471180000115 ], [ -123.532476747999951, 48.395453986000113 ], [ -123.532511572999937, 48.394786002000025 ], [ -123.531810572, 48.394769650000114 ], [ -123.531806238999977, 48.394852729000064 ], [ -123.526419769999961, 48.394726928000047 ], [ -123.526423139999977, 48.39466243300005 ], [ -123.525594254999987, 48.394643051000074 ], [ -123.525495781999922, 48.396526579000067 ], [ -123.525271649000018, 48.396521337000131 ], [ -123.525262038999983, 48.396705125000047 ], [ -123.525748253999922, 48.396716497000085 ], [ -123.525559892999979, 48.400319265000064 ], [ -123.520172816999917, 48.400193147000067 ], [ -123.520200175999889, 48.399671057000042 ], [ -123.518739397999937, 48.399636811000093 ], [ -123.518860348999951, 48.397329789000011 ], [ -123.517726397999951, 48.397303191000077 ], [ -123.517851407999927, 48.394919587000089 ], [ -123.516444293999953, 48.394886565000085 ], [ -123.516520066999973, 48.393442465000092 ], [ -123.51630876199999, 48.393437505000094 ], [ -123.516228031999958, 48.394975912000085 ], [ -123.51442349200002, 48.394933531000099 ], [ -123.514407720999884, 48.395233846000046 ], [ -123.514634974999979, 48.395239185000051 ], [ -123.514456688999985, 48.398634116000053 ], [ -123.514942183999977, 48.398631943000083 ], [ -123.514953081999963, 48.399711487000033 ], [ -123.51616896199999, 48.399706039000137 ], [ -123.516182613999945, 48.40105546800001 ], [ -123.514966700999977, 48.40106091600007 ], [ -123.514955806000017, 48.399981373000074 ], [ -123.514145212999892, 48.399984998000029 ], [ -123.51414793399999, 48.400254883000045 ], [ -123.513493819999965, 48.400257806000063 ], [ -123.513467540999955, 48.400757961000103 ], [ -123.508977717, 48.400652355000062 ], [ -123.50809019899998, 48.400446054000078 ], [ -123.508147861999944, 48.399350948000055 ], [ -123.508145905999982, 48.399350901000027 ], [ -123.508088263999952, 48.400445605000129 ], [ -123.501708654999959, 48.398962418000075 ], [ -123.500970574999911, 48.398812996000061 ], [ -123.498434248999942, 48.398299482000041 ], [ -123.498942008999975, 48.39813201200009 ], [ -123.499268668999946, 48.397895340000062 ], [ -123.499802655999943, 48.397180202000122 ], [ -123.500065120999963, 48.396933890000049 ], [ -123.500349124999957, 48.396713359000032 ], [ -123.500429667999981, 48.396675376000111 ], [ -123.500745989999956, 48.396526138000112 ], [ -123.50125305399996, 48.396396523000085 ], [ -123.502458270999924, 48.396297824000072 ], [ -123.50284542899999, 48.396217702000072 ], [ -123.504072914999952, 48.395696546000053 ], [ -123.504456206999933, 48.39561270800003 ], [ -123.504887762999886, 48.395585007000143 ], [ -123.505877906999928, 48.395805850000087 ], [ -123.506171819999949, 48.395806473000064 ], [ -123.506501816999958, 48.395735800000061 ], [ -123.506910741999945, 48.3956002420001 ], [ -123.507330828999926, 48.395355844000086 ], [ -123.507591718999919, 48.395188815000054 ], [ -123.507795003999902, 48.394990728000067 ], [ -123.508118589999981, 48.394528506000015 ], [ -123.50854400799993, 48.394209394000029 ], [ -123.509644277999939, 48.393489498000115 ], [ -123.51043188599999, 48.393100401000019 ], [ -123.511387084999939, 48.392703504000039 ], [ -123.511683412999957, 48.392643987000056 ], [ -123.511853090999963, 48.392609890000088 ], [ -123.512283182999951, 48.39258389600009 ], [ -123.512981613999955, 48.39260595800004 ], [ -123.515588506999975, 48.392688201000055 ], [ -123.516210505999965, 48.392707814000083 ], [ -123.516602666999944, 48.392720200000092 ], [ -123.516758520999971, 48.392725105000075 ], [ -123.517173250999932, 48.392686969000096 ], [ -123.517320825999931, 48.392673399000088 ], [ -123.517349175999939, 48.392666701000053 ], [ -123.51770980299996, 48.392581511000067 ], [ -123.51931420199999, 48.392066289000141 ], [ -123.52008110599999, 48.391890395000118 ], [ -123.520886907999937, 48.391769494000101 ], [ -123.52177010299998, 48.391740564000045 ], [ -123.52189710699993, 48.391736411000032 ], [ -123.52225929599993, 48.391693513000043 ], [ -123.522278429999957, 48.39168947800011 ], [ -123.52261370799999, 48.391618801000085 ], [ -123.522705947999981, 48.391584754000107 ], [ -123.522896462999967, 48.391514505000032 ], [ -123.523081329999968, 48.391446297000108 ], [ -123.523441307999974, 48.391313499000027 ], [ -123.524142599999976, 48.390999896000082 ], [ -123.524738596999939, 48.390610705000093 ], [ -123.525382206999893, 48.390033301000116 ], [ -123.528221297999949, 48.391170108000054 ], [ -123.529910385, 48.391818288000124 ], [ -123.530116988999964, 48.391811396 ], [ -123.530249757999968, 48.391779941000031 ], [ -123.530297178999888, 48.391768698000078 ], [ -123.531291286999959, 48.391321209000068 ], [ -123.532954393999944, 48.390399600000087 ], [ -123.533106306999983, 48.390200199000112 ], [ -123.533422205999941, 48.389675511000128 ], [ -123.53349239799999, 48.389603072000035 ], [ -123.533635903999965, 48.389454993000086 ], [ -123.533839571999948, 48.389297389000092 ], [ -123.534084509999957, 48.389201307000107 ], [ -123.536062902999902, 48.388875797000082 ], [ -123.537913592999985, 48.388880111000077 ], [ -123.538507087999946, 48.38879741300007 ], [ -123.538846622999941, 48.388799898000045 ], [ -123.53917408099997, 48.388932003000093 ], [ -123.539299863999972, 48.389031634000027 ], [ -123.539361822, 48.389080709000112 ], [ -123.539393993999965, 48.389239211000124 ], [ -123.539324992999951, 48.389452201000047 ], [ -123.539164003999943, 48.389774997000039 ], [ -123.538800489, 48.389972086000057 ], [ -123.538304082999971, 48.390158999000064 ], [ -123.538163901999951, 48.390290102000058 ], [ -123.538053607999927, 48.390517398000092 ], [ -123.537669792999978, 48.391786521000036 ], [ -123.537617281999985, 48.391960102000063 ], [ -123.537467017, 48.392127005000063 ], [ -123.536632386999955, 48.39282898400004 ], [ -123.53700871499997, 48.393291390000037 ], [ -123.537139585999938, 48.39336660500004 ], [ -123.537755620999945, 48.393446800000092 ], [ -123.537977991999981, 48.39352591100004 ], [ -123.538261290999955, 48.39370687400006 ], [ -123.53879098499999, 48.394045311000127 ], [ -123.539047542999967, 48.394336582000065 ], [ -123.539057, 48.394347308000192 ], [ -123.539108797999958, 48.394467490000082 ], [ -123.53907102, 48.394857100000124 ], [ -123.539194794999943, 48.395069210000067 ], [ -123.539443489999925, 48.395239101000122 ], [ -123.53986020799999, 48.395366014000039 ], [ -123.540716104999888, 48.395450009000058 ], [ -123.540857784999957, 48.39549840800008 ], [ -123.541467878999953, 48.395848002000086 ], [ -123.541691199999946, 48.395937099000051 ], [ -123.543044607999946, 48.396174989000031 ], [ -123.543269385999949, 48.396311903000019 ], [ -123.543829095999953, 48.396959693000063 ], [ -123.543986989999922, 48.397164504000081 ], [ -123.544722092999976, 48.397679408000059 ], [ -123.545027298, 48.397982194000093 ], [ -123.545217892000011, 48.398335586000037 ], [ -123.545304690999956, 48.398664999000104 ], [ -123.54548639599993, 48.398879311000059 ], [ -123.545757606999942, 48.399031686000072 ], [ -123.546091803999943, 48.399163907000094 ], [ -123.54648277299998, 48.399242394000062 ], [ -123.546610285999961, 48.399241650000135 ], [ -123.546886080999926, 48.399239995000087 ], [ -123.547185477999932, 48.399135196000053 ], [ -123.547804010999954, 48.398856409000082 ], [ -123.548203487999956, 48.398562699000117 ], [ -123.548370311, 48.398441184000085 ], [ -123.548383235999978, 48.398438663000043 ], [ -123.548608708999922, 48.398394386000056 ], [ -123.548851604999953, 48.398389203000079 ], [ -123.549118181999987, 48.398449496000076 ], [ -123.54940277799993, 48.398699843000045 ], [ -123.549434088999988, 48.398727399000101 ], [ -123.549470178999982, 48.398747125000106 ], [ -123.54958116399996, 48.398807744000081 ], [ -123.549670186999947, 48.398856388000034 ], [ -123.549880891999976, 48.39890181300008 ], [ -123.550160809999923, 48.39891099700003 ], [ -123.550397201999914, 48.398825412000072 ], [ -123.550513185999975, 48.398726099000051 ], [ -123.550749912999962, 48.3985233820001 ], [ -123.550778330999947, 48.398761727000107 ], [ -123.550781134999951, 48.398785280000013 ], [ -123.550799680999958, 48.39894109199998 ], [ -123.551109903999958, 48.400010970000096 ], [ -123.551119007999958, 48.400042397000043 ], [ -123.551138881999975, 48.400439599000094 ], [ -123.550956408999937, 48.400994499000049 ], [ -123.550135057999952, 48.402388140000028 ], [ -123.549917216999987, 48.402757803000036 ], [ -123.549837648000022, 48.402859595000088 ], [ -123.549631314999914, 48.403123603000012 ], [ -123.549325394999983, 48.40350878800006 ], [ -123.548263689999885, 48.40440309500007 ], [ -123.547431102, 48.404934792000034 ], [ -123.546703010999948, 48.405399404000036 ], [ -123.546157693999973, 48.405616805000108 ], [ -123.54578779099991, 48.405676706000087 ], [ -123.545719402999936, 48.405675117000037 ], [ -123.545457814999963, 48.405669102000026 ], [ -123.544976712999983, 48.405585812000027 ], [ -123.544691400999938, 48.405573707000023 ], [ -123.544323583999955, 48.405619309000073 ], [ -123.542810769999917, 48.405925131000046 ], [ -123.542535210999986, 48.406038629000093 ], [ -123.542360495999944, 48.406156324000072 ], [ -123.542341947999958, 48.40617681100013 ], [ -123.542178786999969, 48.406356847000069 ], [ -123.541682239999957, 48.40747875300012 ], [ -123.54144146499999, 48.407830263000058 ], [ -123.540698490999972, 48.408501944000122 ], [ -123.540528619999975, 48.408656714000053 ], [ -123.540166212999907, 48.409190429000013 ], [ -123.539908521999948, 48.408558955000068 ], [ -123.539793456999973, 48.408468166000063 ], [ -123.53956767599999, 48.408327820000096 ], [ -123.539323748999962, 48.408236902000098 ], [ -123.538082542999916, 48.407899208000124 ], [ -123.536065367999967, 48.407134958000029 ], [ -123.535507458999959, 48.406995216000077 ], [ -123.534497363999918, 48.406862121000074 ], [ -123.533553814999919, 48.406538751000113 ], [ -123.532724912999981, 48.406403203000167 ] ], [ [ -123.53969229099999, 48.40114759500004 ], [ -123.539687073999943, 48.400654259000149 ], [ -123.539385696999886, 48.400647251000052 ], [ -123.539398074999966, 48.400409179000057 ], [ -123.539183248999933, 48.400410186000016 ], [ -123.539145565999888, 48.401134881000061 ], [ -123.53969229099999, 48.40114759500004 ] ], [ [ -123.513569291999929, 48.398821349000052 ], [ -123.513550554999966, 48.399177960000074 ], [ -123.513731765000017, 48.399177150000064 ], [ -123.513728219999948, 48.398825084000116 ], [ -123.513569291999929, 48.398821349000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.954510848877046", "sL_AssetLoss": "1050.8", "sL_BldgLoss": "1003", "sL_StrLoss": "803", "sL_NStrLoss": "200", "sL_ContLoss": "47.8", "geom_point": "0101000020E610000067CBA07736E25EC0905F6843B8324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.533962281999933, 48.39584626400007 ], [ -123.535178065999915, 48.395840615000083 ], [ -123.535186558999968, 48.396650271000105 ], [ -123.533970755999931, 48.396655920000136 ], [ -123.533962281999933, 48.39584626400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123257251", "BldgCostT": "80595001", "sL_LossRatio": "0.834555323737686", "sL_AssetLoss": "454859", "sL_BldgLoss": "379605", "sL_StrLoss": "238780", "sL_NStrLoss": "140825", "sL_ContLoss": "75254", "geom_point": "0101000020E6100000324666267FE25EC0111B7FE44E314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.545217892000011, 48.398335586000037 ], [ -123.545027298, 48.397982194000093 ], [ -123.544722092999976, 48.397679408000059 ], [ -123.543986989999922, 48.397164504000081 ], [ -123.543829095999953, 48.396959693000063 ], [ -123.543269385999949, 48.396311903000019 ], [ -123.543044607999946, 48.396174989000031 ], [ -123.541691199999946, 48.395937099000051 ], [ -123.541467878999953, 48.395848002000086 ], [ -123.540857784999957, 48.39549840800008 ], [ -123.540716104999888, 48.395450009000058 ], [ -123.53986020799999, 48.395366014000039 ], [ -123.539443489999925, 48.395239101000122 ], [ -123.539194794999943, 48.395069210000067 ], [ -123.53907102, 48.394857100000124 ], [ -123.539108797999958, 48.394467490000082 ], [ -123.539057, 48.394347308000192 ], [ -123.539047542999967, 48.394336582000065 ], [ -123.53879098499999, 48.394045311000127 ], [ -123.538261290999955, 48.39370687400006 ], [ -123.537977991999981, 48.39352591100004 ], [ -123.537755620999945, 48.393446800000092 ], [ -123.537139585999938, 48.39336660500004 ], [ -123.53700871499997, 48.393291390000037 ], [ -123.536632386999955, 48.39282898400004 ], [ -123.537467017, 48.392127005000063 ], [ -123.537617281999985, 48.391960102000063 ], [ -123.537669792999978, 48.391786521000036 ], [ -123.538053607999927, 48.390517398000092 ], [ -123.538163901999951, 48.390290102000058 ], [ -123.538304082999971, 48.390158999000064 ], [ -123.538800489, 48.389972086000057 ], [ -123.539164003999943, 48.389774997000039 ], [ -123.539324992999951, 48.389452201000047 ], [ -123.539393993999965, 48.389239211000124 ], [ -123.539361822, 48.389080709000112 ], [ -123.539299863999972, 48.389031634000027 ], [ -123.53917408099997, 48.388932003000093 ], [ -123.538846622999941, 48.388799898000045 ], [ -123.538507087999946, 48.38879741300007 ], [ -123.537913592999985, 48.388880111000077 ], [ -123.536062902999902, 48.388875797000082 ], [ -123.534084509999957, 48.389201307000107 ], [ -123.533839571999948, 48.389297389000092 ], [ -123.533635903999965, 48.389454993000086 ], [ -123.53349239799999, 48.389603072000035 ], [ -123.533422205999941, 48.389675511000128 ], [ -123.533106306999983, 48.390200199000112 ], [ -123.532954393999944, 48.390399600000087 ], [ -123.531291286999959, 48.391321209000068 ], [ -123.530297178999888, 48.391768698000078 ], [ -123.530249757999968, 48.391779941000031 ], [ -123.530116988999964, 48.391811396 ], [ -123.529910385, 48.391818288000124 ], [ -123.528221297999949, 48.391170108000054 ], [ -123.525382206999893, 48.390033301000116 ], [ -123.525768866999954, 48.389643306000067 ], [ -123.525880298999951, 48.389530895000071 ], [ -123.52636701699997, 48.389036247000085 ], [ -123.526469663999961, 48.388931914000075 ], [ -123.526952291000029, 48.388441394000047 ], [ -123.527095704999979, 48.388199403000087 ], [ -123.527181407999976, 48.387926401000108 ], [ -123.527191980999987, 48.387647101000027 ], [ -123.527174136999946, 48.387576429000013 ], [ -123.527122701999986, 48.387373105000073 ], [ -123.527112490999968, 48.38734555700006 ], [ -123.526979974999975, 48.386987765000086 ], [ -123.526834773999923, 48.386595738000075 ], [ -123.526773621999922, 48.386430586000067 ], [ -123.526619749999952, 48.386015153000116 ], [ -123.526565114999926, 48.385867599000086 ], [ -123.526543499999931, 48.385609987000109 ], [ -123.526609737999976, 48.385313024000112 ], [ -123.526777596999963, 48.384560403000059 ], [ -123.526932219999964, 48.384182496000129 ], [ -123.527210664999956, 48.383903822000015 ], [ -123.527744053999982, 48.383369967000057 ], [ -123.528958097999947, 48.382154878000087 ], [ -123.529231993999957, 48.381880697000021 ], [ -123.529767345999971, 48.38132664700008 ], [ -123.53012007599996, 48.380961610000043 ], [ -123.530857984999983, 48.380197894000126 ], [ -123.531468793000016, 48.379565689000088 ], [ -123.531692414999938, 48.37909895100006 ], [ -123.53244544099999, 48.37752702700012 ], [ -123.532527510999913, 48.377355709000042 ], [ -123.532665476999952, 48.377034773000027 ], [ -123.532894159999913, 48.376502831000067 ], [ -123.533211488999953, 48.37576460100005 ], [ -123.533575633999959, 48.375321271000097 ], [ -123.53399140399992, 48.374815102000071 ], [ -123.533997215999975, 48.37480692900008 ], [ -123.535105225, 48.373251592000088 ], [ -123.535920714, 48.372106812000027 ], [ -123.536344011999972, 48.371689204000049 ], [ -123.537403892999976, 48.370951 ], [ -123.537706086999933, 48.370684276000077 ], [ -123.538694143999948, 48.369812103000086 ], [ -123.539528087999955, 48.369075901000052 ], [ -123.539901905999926, 48.36918729500006 ], [ -123.540132505999978, 48.369285162000089 ], [ -123.540729138999893, 48.369525278000047 ], [ -123.540918925999989, 48.369596356000038 ], [ -123.541216906999921, 48.369684925000143 ], [ -123.541474410999982, 48.369773686000066 ], [ -123.541677695999951, 48.369844718000088 ], [ -123.541894486999979, 48.369915669000058 ], [ -123.542274189999929, 48.370066821000101 ], [ -123.54254505599999, 48.370146512000126 ], [ -123.542843451999886, 48.370271046000077 ], [ -123.543060434999944, 48.370359984000075 ], [ -123.543331543999955, 48.370457672000065 ], [ -123.543602412999959, 48.370537361000089 ], [ -123.543738139999917, 48.370599694000077 ], [ -123.544090700999959, 48.370741977000129 ], [ -123.544348475999968, 48.37085771200006 ], [ -123.544578802999965, 48.370928599000074 ], [ -123.544755076999976, 48.37099972700009 ], [ -123.544958373, 48.371070752000051 ], [ -123.545189081999979, 48.371177622000111 ], [ -123.545411097999931, 48.3713145070001 ], [ -123.545649907999959, 48.371434516000136 ], [ -123.545848126999928, 48.371551199000052 ], [ -123.54704299499997, 48.372019100000088 ], [ -123.546981124999917, 48.37206599400006 ], [ -123.546773577999929, 48.372223263000123 ], [ -123.546278496999975, 48.372598399000069 ], [ -123.544897018, 48.373736660000105 ], [ -123.544772202000019, 48.37383949900012 ], [ -123.544753394999972, 48.373855999000099 ], [ -123.544650318999956, 48.373946525000107 ], [ -123.544376912999951, 48.374186604000045 ], [ -123.544202803999951, 48.374386419000054 ], [ -123.544108201999933, 48.374495057000068 ], [ -123.543036976999986, 48.375724595000037 ], [ -123.542433809999935, 48.376453840000053 ], [ -123.541997166999963, 48.376981701000041 ], [ -123.5418331179999, 48.37718002200004 ], [ -123.541655239999926, 48.377395050000068 ], [ -123.541106300999957, 48.378058626000069 ], [ -123.54039112699995, 48.378923196000073 ], [ -123.537825301999945, 48.382026097000136 ], [ -123.539060526999947, 48.38284808000008 ], [ -123.540418599999938, 48.383751761000035 ], [ -123.540979386999979, 48.384124913000058 ], [ -123.541242906999969, 48.384300255000056 ], [ -123.541871357999966, 48.384718396000032 ], [ -123.54213389100002, 48.384893106000092 ], [ -123.542792786999939, 48.385573894000032 ], [ -123.543372200999968, 48.385915708000049 ], [ -123.544642493999973, 48.386589779000055 ], [ -123.544795573999977, 48.386670999000025 ], [ -123.545694935999961, 48.387317748000036 ], [ -123.546169208999942, 48.387658782000088 ], [ -123.54711581199993, 48.388304794000113 ], [ -123.547394652999955, 48.388531283000063 ], [ -123.547514242999938, 48.388628396000058 ], [ -123.5477536099999, 48.388822791000067 ], [ -123.548874192999946, 48.389927256000128 ], [ -123.549106692999914, 48.390156412000067 ], [ -123.549463211999964, 48.39069308600007 ], [ -123.549588592999939, 48.390937031000142 ], [ -123.549840403999937, 48.391426904000099 ], [ -123.550026796999958, 48.392227502 ], [ -123.550195409999986, 48.392485699000083 ], [ -123.550472087999978, 48.392740117000173 ], [ -123.551128805999966, 48.393076302000075 ], [ -123.551345829999917, 48.39321457700003 ], [ -123.551443182, 48.393276596000099 ], [ -123.551807501999974, 48.393508696000062 ], [ -123.552128208999989, 48.393903801000121 ], [ -123.552181345999941, 48.394032112000069 ], [ -123.552256413999942, 48.394213405000102 ], [ -123.552286827, 48.39532149800003 ], [ -123.552271352, 48.395398798000016 ], [ -123.552228521, 48.395613197000095 ], [ -123.552093385999953, 48.395840869000025 ], [ -123.552083819999936, 48.395856999000074 ], [ -123.551719706999961, 48.396196697000022 ], [ -123.55147300199998, 48.39658680600008 ], [ -123.551335890999937, 48.396891201000074 ], [ -123.551169185999967, 48.397586199000095 ], [ -123.551023707999917, 48.397974188000028 ], [ -123.550749912999962, 48.3985233820001 ], [ -123.550513185999975, 48.398726099000051 ], [ -123.550397201999914, 48.398825412000072 ], [ -123.550160809999923, 48.39891099700003 ], [ -123.549880891999976, 48.39890181300008 ], [ -123.549670186999947, 48.398856388000034 ], [ -123.54958116399996, 48.398807744000081 ], [ -123.549470178999982, 48.398747125000106 ], [ -123.549434088999988, 48.398727399000101 ], [ -123.54940277799993, 48.398699843000045 ], [ -123.549118181999987, 48.398449496000076 ], [ -123.548851604999953, 48.398389203000079 ], [ -123.548608708999922, 48.398394386000056 ], [ -123.548383235999978, 48.398438663000043 ], [ -123.548370311, 48.398441184000085 ], [ -123.548203487999956, 48.398562699000117 ], [ -123.547804010999954, 48.398856409000082 ], [ -123.547185477999932, 48.399135196000053 ], [ -123.546886080999926, 48.399239995000087 ], [ -123.546610285999961, 48.399241650000135 ], [ -123.54648277299998, 48.399242394000062 ], [ -123.546091803999943, 48.399163907000094 ], [ -123.545757606999942, 48.399031686000072 ], [ -123.54548639599993, 48.398879311000059 ], [ -123.545304690999956, 48.398664999000104 ], [ -123.545217892000011, 48.398335586000037 ] ], [ [ -123.531882324999984, 48.389469502000075 ], [ -123.531929306, 48.388568423000066 ], [ -123.531860024999943, 48.388568743000064 ], [ -123.531865650999976, 48.389108514000064 ], [ -123.531460443, 48.389110386000063 ], [ -123.531464080999939, 48.389459743000018 ], [ -123.531882324999984, 48.389469502000075 ] ], [ [ -123.536049400999929, 48.386351017000081 ], [ -123.536050775999982, 48.386324613000077 ], [ -123.535085660999982, 48.386302128000061 ], [ -123.535061821999975, 48.386759975000111 ], [ -123.534558765999989, 48.38674825100005 ], [ -123.534532727999988, 48.387248186000129 ], [ -123.530629679999933, 48.387157142000135 ], [ -123.530630384999981, 48.387224927000034 ], [ -123.531440770999964, 48.387221187000073 ], [ -123.53144358199999, 48.387491073000085 ], [ -123.53184877699999, 48.387489200000054 ], [ -123.531851589, 48.387759086000059 ], [ -123.532256785999934, 48.387757212000103 ], [ -123.532262405999958, 48.388296177000036 ], [ -123.532312909, 48.388297354000024 ], [ -123.532341803999898, 48.387743054000055 ], [ -123.534870424999937, 48.38780201200003 ], [ -123.534892222999972, 48.387383414000055 ], [ -123.535060711999947, 48.387387341000142 ], [ -123.535113869999932, 48.386366418000073 ], [ -123.535799208999947, 48.386382385000061 ], [ -123.535801142999958, 48.386345234000053 ], [ -123.536049400999929, 48.386351017000081 ] ], [ [ -123.542877026, 48.371543761000112 ], [ -123.542893594999939, 48.371224402000074 ], [ -123.541245297999922, 48.371186088000108 ], [ -123.541258328999945, 48.370935098000082 ], [ -123.540860685999988, 48.37092585000007 ], [ -123.54083724499999, 48.371377255000013 ], [ -123.541970068999944, 48.37140359400005 ], [ -123.54196389599997, 48.371522538000185 ], [ -123.542877026, 48.371543761000112 ] ], [ [ -123.531060850999921, 48.389652028000128 ], [ -123.531064350999912, 48.389988406000093 ], [ -123.531082762999986, 48.389988837000018 ], [ -123.531080161999967, 48.3900387240001 ], [ -123.531428920999957, 48.390046863000116 ], [ -123.531449604999949, 48.389650233000012 ], [ -123.531060850999921, 48.389652028000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110422000", "BldgCostT": "73360000", "sL_LossRatio": "0.941838749020529", "sL_AssetLoss": "195386.1", "sL_BldgLoss": "184022.2", "sL_StrLoss": "150874", "sL_NStrLoss": "33148.2", "sL_ContLoss": "11363.9", "geom_point": "0101000020E610000053AC753D6CE35EC042ED2BCDB52F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.543036976999986, 48.375724595000037 ], [ -123.544108201999933, 48.374495057000068 ], [ -123.544202803999951, 48.374386419000054 ], [ -123.544376912999951, 48.374186604000045 ], [ -123.544650318999956, 48.373946525000107 ], [ -123.544753394999972, 48.373855999000099 ], [ -123.544772202000019, 48.37383949900012 ], [ -123.544897018, 48.373736660000105 ], [ -123.546278496999975, 48.372598399000069 ], [ -123.546773577999929, 48.372223263000123 ], [ -123.546981124999917, 48.37206599400006 ], [ -123.54704299499997, 48.372019100000088 ], [ -123.545848126999928, 48.371551199000052 ], [ -123.545649907999959, 48.371434516000136 ], [ -123.545411097999931, 48.3713145070001 ], [ -123.545189081999979, 48.371177622000111 ], [ -123.544958373, 48.371070752000051 ], [ -123.544755076999976, 48.37099972700009 ], [ -123.544578802999965, 48.370928599000074 ], [ -123.544348475999968, 48.37085771200006 ], [ -123.544090700999959, 48.370741977000129 ], [ -123.543738139999917, 48.370599694000077 ], [ -123.543602412999959, 48.370537361000089 ], [ -123.543331543999955, 48.370457672000065 ], [ -123.543060434999944, 48.370359984000075 ], [ -123.542843451999886, 48.370271046000077 ], [ -123.54254505599999, 48.370146512000126 ], [ -123.542274189999929, 48.370066821000101 ], [ -123.541894486999979, 48.369915669000058 ], [ -123.541677695999951, 48.369844718000088 ], [ -123.541474410999982, 48.369773686000066 ], [ -123.541216906999921, 48.369684925000143 ], [ -123.540918925999989, 48.369596356000038 ], [ -123.540729138999893, 48.369525278000047 ], [ -123.540132505999978, 48.369285162000089 ], [ -123.539901905999926, 48.36918729500006 ], [ -123.539528087999955, 48.369075901000052 ], [ -123.539944199999923, 48.368706866000096 ], [ -123.540019589999972, 48.36863999800007 ], [ -123.540826083999931, 48.367640595000118 ], [ -123.542204821999974, 48.366260393000118 ], [ -123.542408967999961, 48.366090451000034 ], [ -123.542581739999946, 48.365946667000074 ], [ -123.542841150999976, 48.365730707000083 ], [ -123.543486399999907, 48.365193612000034 ], [ -123.544542301999954, 48.365218140000096 ], [ -123.544837346999927, 48.365314902000144 ], [ -123.544807023999937, 48.365899845000037 ], [ -123.54502940899998, 48.365905009000066 ], [ -123.54505627399999, 48.36538670000013 ], [ -123.54648642099994, 48.365855700000054 ], [ -123.547109200999955, 48.365953199000096 ], [ -123.548382551999964, 48.366447780000108 ], [ -123.548754536999979, 48.36659224500012 ], [ -123.549208098999955, 48.366768417000117 ], [ -123.550167202999916, 48.36726860000006 ], [ -123.550520201999973, 48.367583386000049 ], [ -123.550658612999911, 48.367850805000103 ], [ -123.550828792999951, 48.368597887000064 ], [ -123.55058581099992, 48.3688158900001 ], [ -123.550700987999988, 48.368854590000062 ], [ -123.550865902999988, 48.368844892000034 ], [ -123.551345692, 48.368635103000067 ], [ -123.551604891999929, 48.368573496000131 ], [ -123.551766205999925, 48.368581704000036 ], [ -123.551778273999929, 48.368585761000062 ], [ -123.552680290999945, 48.368890002000043 ], [ -123.552756778999978, 48.368915792000102 ], [ -123.553720790999961, 48.369140986000026 ], [ -123.554151623999971, 48.369175305000027 ], [ -123.554165203999972, 48.369174293000164 ], [ -123.55479, 48.369127806000108 ], [ -123.555830294999936, 48.368866905000111 ], [ -123.556773908999944, 48.368756196000106 ], [ -123.557350786999962, 48.368778499000044 ], [ -123.55776351099999, 48.368824092000075 ], [ -123.558169980999935, 48.368923594000073 ], [ -123.558182725999956, 48.368926708000053 ], [ -123.561368300999973, 48.370084874000078 ], [ -123.561512013999959, 48.370137088000106 ], [ -123.561790301999906, 48.370101999000106 ], [ -123.562853359999949, 48.369967860000109 ], [ -123.563729583999944, 48.369857296000077 ], [ -123.564052096999887, 48.369875495000052 ], [ -123.564105602999987, 48.369888194000076 ], [ -123.564388924999975, 48.369955412000074 ], [ -123.564534828999967, 48.370037057000076 ], [ -123.565039933999955, 48.370319686000144 ], [ -123.565183994999956, 48.370400307000033 ], [ -123.565682802999987, 48.370526307000034 ], [ -123.565851381, 48.370602300000037 ], [ -123.566028592999913, 48.370746186000126 ], [ -123.566268602999969, 48.371005995000061 ], [ -123.566544687999951, 48.371324392000147 ], [ -123.566620548999936, 48.371380807000037 ], [ -123.566719889999888, 48.371454710000116 ], [ -123.566980909000023, 48.3715680050001 ], [ -123.56802531299999, 48.371881497000082 ], [ -123.568448585999988, 48.371931813000096 ], [ -123.568798713999982, 48.371937189000086 ], [ -123.568826294999923, 48.372107408 ], [ -123.56866097599999, 48.372571595000082 ], [ -123.56754381699993, 48.372993191000035 ], [ -123.567510092999981, 48.373595712000103 ], [ -123.566902531, 48.374274399000065 ], [ -123.566830346999893, 48.374329517000085 ], [ -123.566245999, 48.374775992000124 ], [ -123.566060883999953, 48.375231701000082 ], [ -123.565527909999943, 48.376291587 ], [ -123.565570690999891, 48.377163806000141 ], [ -123.565414287999943, 48.377322492000104 ], [ -123.564946574999951, 48.377532698000017 ], [ -123.564174590999968, 48.377710597000068 ], [ -123.563618906000016, 48.377771708000061 ], [ -123.563024218999885, 48.377751708000105 ], [ -123.562577598999951, 48.377788305000095 ], [ -123.562133106, 48.377965709000051 ], [ -123.56172679899997, 48.37821330500006 ], [ -123.561525203999935, 48.37838628700009 ], [ -123.56095471899999, 48.378342502000073 ], [ -123.560606699999965, 48.378241599000042 ], [ -123.560391292999967, 48.378107686000135 ], [ -123.560106718999918, 48.377927908000061 ], [ -123.559589101999904, 48.377720314000051 ], [ -123.558797805999959, 48.377566801000086 ], [ -123.558411701999916, 48.377552412000071 ], [ -123.558100601999939, 48.377575 ], [ -123.557365497999939, 48.37784658100005 ], [ -123.556981803, 48.377917097000122 ], [ -123.556690410999948, 48.377922997000027 ], [ -123.555745582999961, 48.377766803000107 ], [ -123.555712103999909, 48.377765602000025 ], [ -123.55532859399996, 48.377751804000084 ], [ -123.555000684999953, 48.377794189 ], [ -123.554405420999956, 48.377871158000055 ], [ -123.554097910999957, 48.377910901000114 ], [ -123.55373317399993, 48.377926796000068 ], [ -123.553447392999914, 48.377869934000039 ], [ -123.552748702999935, 48.377730907000043 ], [ -123.552316318999942, 48.377598812000024 ], [ -123.552301502, 48.377594289000044 ], [ -123.552049312999969, 48.377441397000013 ], [ -123.551896636, 48.377276548000133 ], [ -123.551864210999923, 48.377241498000089 ], [ -123.551634705999959, 48.376649996000047 ], [ -123.551467797999948, 48.37636020500009 ], [ -123.551175817999976, 48.376141496000045 ], [ -123.550930301999983, 48.376035439000063 ], [ -123.550647617999985, 48.375913352000097 ], [ -123.550173111000035, 48.375708378000134 ], [ -123.54993399599999, 48.375605108000087 ], [ -123.549225983, 48.375386445000068 ], [ -123.547966892999938, 48.374997603000089 ], [ -123.547541105999969, 48.375412495000091 ], [ -123.546688332999963, 48.376412737000059 ], [ -123.546562418999926, 48.376560381000047 ], [ -123.546548068999982, 48.37657719200007 ], [ -123.546294618999966, 48.376839105000094 ], [ -123.546231101, 48.377025208000106 ], [ -123.54617225, 48.377096738000098 ], [ -123.545568991999971, 48.377829876000135 ], [ -123.544945575999961, 48.378587491000054 ], [ -123.544231591999932, 48.379455129000043 ], [ -123.54366058799998, 48.380148983 ], [ -123.541820387999977, 48.379459097000044 ], [ -123.54039112699995, 48.378923196000073 ], [ -123.541106300999957, 48.378058626000069 ], [ -123.541655239999926, 48.377395050000068 ], [ -123.5418331179999, 48.37718002200004 ], [ -123.541997166999963, 48.376981701000041 ], [ -123.542433809999935, 48.376453840000053 ], [ -123.543036976999986, 48.375724595000037 ] ], [ [ -123.563009808999979, 48.372969196000071 ], [ -123.563026598999969, 48.372642948000056 ], [ -123.562934168999945, 48.372640817000025 ], [ -123.562917378999913, 48.372967066000129 ], [ -123.563009808999979, 48.372969196000071 ] ], [ [ -123.54892878, 48.369011746000076 ], [ -123.548930481999932, 48.368978858000041 ], [ -123.548801078999929, 48.368975859000038 ], [ -123.548799376999952, 48.369008746000105 ], [ -123.54892878, 48.369011746000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177391583", "BldgCostT": "117893333", "sL_LossRatio": "0.935369943190402", "sL_AssetLoss": "218565.18", "sL_BldgLoss": "204439.3", "sL_StrLoss": "171101.5", "sL_NStrLoss": "33337.8", "sL_ContLoss": "14125.88", "geom_point": "0101000020E6100000B49056082DE45EC0DFF787B175304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.549840403999937, 48.391426904000099 ], [ -123.549588592999939, 48.390937031000142 ], [ -123.549463211999964, 48.39069308600007 ], [ -123.549106692999914, 48.390156412000067 ], [ -123.548874192999946, 48.389927256000128 ], [ -123.5477536099999, 48.388822791000067 ], [ -123.547514242999938, 48.388628396000058 ], [ -123.547394652999955, 48.388531283000063 ], [ -123.54711581199993, 48.388304794000113 ], [ -123.546169208999942, 48.387658782000088 ], [ -123.545694935999961, 48.387317748000036 ], [ -123.544795573999977, 48.386670999000025 ], [ -123.544642493999973, 48.386589779000055 ], [ -123.543372200999968, 48.385915708000049 ], [ -123.542792786999939, 48.385573894000032 ], [ -123.54213389100002, 48.384893106000092 ], [ -123.541871357999966, 48.384718396000032 ], [ -123.541242906999969, 48.384300255000056 ], [ -123.540979386999979, 48.384124913000058 ], [ -123.540418599999938, 48.383751761000035 ], [ -123.539060526999947, 48.38284808000008 ], [ -123.537825301999945, 48.382026097000136 ], [ -123.54039112699995, 48.378923196000073 ], [ -123.541820387999977, 48.379459097000044 ], [ -123.54366058799998, 48.380148983 ], [ -123.544231591999932, 48.379455129000043 ], [ -123.544945575999961, 48.378587491000054 ], [ -123.545568991999971, 48.377829876000135 ], [ -123.54617225, 48.377096738000098 ], [ -123.546231101, 48.377025208000106 ], [ -123.546294618999966, 48.376839105000094 ], [ -123.546548068999982, 48.37657719200007 ], [ -123.546562418999926, 48.376560381000047 ], [ -123.546688332999963, 48.376412737000059 ], [ -123.547541105999969, 48.375412495000091 ], [ -123.547966892999938, 48.374997603000089 ], [ -123.549225983, 48.375386445000068 ], [ -123.54993399599999, 48.375605108000087 ], [ -123.550173111000035, 48.375708378000134 ], [ -123.550647617999985, 48.375913352000097 ], [ -123.550930301999983, 48.376035439000063 ], [ -123.551175817999976, 48.376141496000045 ], [ -123.551467797999948, 48.37636020500009 ], [ -123.551634705999959, 48.376649996000047 ], [ -123.551864210999923, 48.377241498000089 ], [ -123.551896636, 48.377276548000133 ], [ -123.552049312999969, 48.377441397000013 ], [ -123.552301502, 48.377594289000044 ], [ -123.552316318999942, 48.377598812000024 ], [ -123.552748702999935, 48.377730907000043 ], [ -123.553447392999914, 48.377869934000039 ], [ -123.55373317399993, 48.377926796000068 ], [ -123.554097910999957, 48.377910901000114 ], [ -123.554405420999956, 48.377871158000055 ], [ -123.555000684999953, 48.377794189 ], [ -123.55532859399996, 48.377751804000084 ], [ -123.555712103999909, 48.377765602000025 ], [ -123.555745582999961, 48.377766803000107 ], [ -123.556690410999948, 48.377922997000027 ], [ -123.556981803, 48.377917097000122 ], [ -123.557365497999939, 48.37784658100005 ], [ -123.558100601999939, 48.377575 ], [ -123.558411701999916, 48.377552412000071 ], [ -123.558797805999959, 48.377566801000086 ], [ -123.559589101999904, 48.377720314000051 ], [ -123.560106718999918, 48.377927908000061 ], [ -123.560391292999967, 48.378107686000135 ], [ -123.560606699999965, 48.378241599000042 ], [ -123.56095471899999, 48.378342502000073 ], [ -123.561525203999935, 48.37838628700009 ], [ -123.56172679899997, 48.37821330500006 ], [ -123.562133106, 48.377965709000051 ], [ -123.562577598999951, 48.377788305000095 ], [ -123.563024218999885, 48.377751708000105 ], [ -123.563618906000016, 48.377771708000061 ], [ -123.564174590999968, 48.377710597000068 ], [ -123.564946574999951, 48.377532698000017 ], [ -123.565414287999943, 48.377322492000104 ], [ -123.565570690999891, 48.377163806000141 ], [ -123.565527909999943, 48.376291587 ], [ -123.566060883999953, 48.375231701000082 ], [ -123.566245999, 48.374775992000124 ], [ -123.566830346999893, 48.374329517000085 ], [ -123.566902531, 48.374274399000065 ], [ -123.567510092999981, 48.373595712000103 ], [ -123.56754381699993, 48.372993191000035 ], [ -123.56866097599999, 48.372571595000082 ], [ -123.568826294999923, 48.372107408 ], [ -123.568798713999982, 48.371937189000086 ], [ -123.568448585999988, 48.371931813000096 ], [ -123.56802531299999, 48.371881497000082 ], [ -123.566980909000023, 48.3715680050001 ], [ -123.566719889999888, 48.371454710000116 ], [ -123.566620548999936, 48.371380807000037 ], [ -123.566544687999951, 48.371324392000147 ], [ -123.566268602999969, 48.371005995000061 ], [ -123.566028592999913, 48.370746186000126 ], [ -123.565851381, 48.370602300000037 ], [ -123.565682802999987, 48.370526307000034 ], [ -123.565183994999956, 48.370400307000033 ], [ -123.565039933999955, 48.370319686000144 ], [ -123.564534828999967, 48.370037057000076 ], [ -123.564388924999975, 48.369955412000074 ], [ -123.564105602999987, 48.369888194000076 ], [ -123.564052096999887, 48.369875495000052 ], [ -123.563729583999944, 48.369857296000077 ], [ -123.562853359999949, 48.369967860000109 ], [ -123.561790301999906, 48.370101999000106 ], [ -123.561512013999959, 48.370137088000106 ], [ -123.561368300999973, 48.370084874000078 ], [ -123.558182725999956, 48.368926708000053 ], [ -123.558169980999935, 48.368923594000073 ], [ -123.55776351099999, 48.368824092000075 ], [ -123.557350786999962, 48.368778499000044 ], [ -123.556773908999944, 48.368756196000106 ], [ -123.555830294999936, 48.368866905000111 ], [ -123.55479, 48.369127806000108 ], [ -123.554165203999972, 48.369174293000164 ], [ -123.554151623999971, 48.369175305000027 ], [ -123.553720790999961, 48.369140986000026 ], [ -123.552756778999978, 48.368915792000102 ], [ -123.552680290999945, 48.368890002000043 ], [ -123.551778273999929, 48.368585761000062 ], [ -123.551766205999925, 48.368581704000036 ], [ -123.551604891999929, 48.368573496000131 ], [ -123.551345692, 48.368635103000067 ], [ -123.550865902999988, 48.368844892000034 ], [ -123.550700987999988, 48.368854590000062 ], [ -123.55058581099992, 48.3688158900001 ], [ -123.550828792999951, 48.368597887000064 ], [ -123.552020104999926, 48.367449500000177 ], [ -123.552836948999982, 48.366867880000044 ], [ -123.555016019999954, 48.365316248000084 ], [ -123.555590997999929, 48.364906774000083 ], [ -123.555736894999953, 48.364802887000039 ], [ -123.555818113999962, 48.364743512000068 ], [ -123.556429318999989, 48.364309400000089 ], [ -123.557783329999907, 48.363789702000084 ], [ -123.55811479099998, 48.363709803000098 ], [ -123.558517997999985, 48.363728189000021 ], [ -123.559812720999915, 48.364019603000038 ], [ -123.560151290999926, 48.364011204000064 ], [ -123.560470290999916, 48.363938294000029 ], [ -123.560689977, 48.363857274000104 ], [ -123.561264184999956, 48.363645497000029 ], [ -123.561737199, 48.363407497000082 ], [ -123.565148656999952, 48.363118273000069 ], [ -123.565284004999938, 48.363106803000058 ], [ -123.565955714999973, 48.362988806000082 ], [ -123.568070012999939, 48.362482910000047 ], [ -123.570900715999983, 48.362536194000057 ], [ -123.57114432499999, 48.362469251000107 ], [ -123.573244313999936, 48.361892006000026 ], [ -123.57474199399999, 48.361191396000045 ], [ -123.575229477999954, 48.360801295000023 ], [ -123.575500322999943, 48.360898230000025 ], [ -123.5755443799999, 48.360913996000058 ], [ -123.575716084999954, 48.360928802000082 ], [ -123.575875094999915, 48.360901696000091 ], [ -123.576593183999989, 48.360638611000077 ], [ -123.576994318999937, 48.360539593000162 ], [ -123.57735649699994, 48.360518208000094 ], [ -123.577702796999972, 48.360542297000073 ], [ -123.577785361999958, 48.36056746500001 ], [ -123.577974805999958, 48.360625205000055 ], [ -123.578229802999957, 48.360775305000082 ], [ -123.578445400999939, 48.361039094 ], [ -123.578688001999978, 48.361669593000137 ], [ -123.578795409999955, 48.361834402000056 ], [ -123.579045802999971, 48.362049383000084 ], [ -123.579120988999989, 48.362238694000062 ], [ -123.579098418999976, 48.362374759000062 ], [ -123.57908790399992, 48.362438108000049 ], [ -123.578963307999942, 48.362609293000091 ], [ -123.578679797999939, 48.362831888000073 ], [ -123.5784944, 48.363085598000104 ], [ -123.578448602999956, 48.363268493000106 ], [ -123.578478004999965, 48.363489066000056 ], [ -123.577305565999964, 48.363462205000062 ], [ -123.577305007999882, 48.363473111000083 ], [ -123.576457741999931, 48.36345369200005 ], [ -123.576440916999957, 48.363782523000062 ], [ -123.577741510999928, 48.36381233 ], [ -123.577557233999954, 48.367415392000069 ], [ -123.576461479999949, 48.367390281000063 ], [ -123.576451698999946, 48.367581419000047 ], [ -123.575722355999943, 48.367564699000084 ], [ -123.575703588999929, 48.36793133600009 ], [ -123.570320064999976, 48.367807763000044 ], [ -123.570344498999987, 48.36733146900005 ], [ -123.569772868999962, 48.367318331000092 ], [ -123.569742861999927, 48.367903123000076 ], [ -123.571630977999959, 48.367946503000077 ], [ -123.571601904999952, 48.368513478000068 ], [ -123.572990863999962, 48.368545369000053 ], [ -123.572976118999932, 48.368833088000059 ], [ -123.574555525999955, 48.368869329000063 ], [ -123.574524929999939, 48.369466701000057 ], [ -123.577244964999949, 48.36952906100003 ], [ -123.577187327999965, 48.370655677000073 ], [ -123.577208631999923, 48.370656165000092 ], [ -123.577024288999937, 48.374259184000074 ], [ -123.57658769899993, 48.374249180000056 ], [ -123.576541017999915, 48.37516129300014 ], [ -123.575374061, 48.375134543000058 ], [ -123.575303685, 48.376508945000118 ], [ -123.577033285000013, 48.376548587000052 ], [ -123.577024459999976, 48.37672104200005 ], [ -123.577755472000021, 48.376737788000128 ], [ -123.577858727999939, 48.374719230000032 ], [ -123.58026294599992, 48.374774270000053 ], [ -123.580279545999971, 48.374449389000112 ], [ -123.580365123999925, 48.374451347000125 ], [ -123.580394073999926, 48.373884790000091 ], [ -123.583499042999975, 48.373955788000032 ], [ -123.583500748999938, 48.373922367000063 ], [ -123.587699806000018, 48.374018238000112 ], [ -123.587660408999952, 48.374244893000011 ], [ -123.587698904999968, 48.374442406000057 ], [ -123.58783371799997, 48.374625808000062 ], [ -123.588388946999942, 48.375148677000077 ], [ -123.588409811999924, 48.375168307000102 ], [ -123.588284397999985, 48.375231122000159 ], [ -123.587891546999941, 48.375427866000038 ], [ -123.587841393999923, 48.375453010000101 ], [ -123.587031012999901, 48.376176604000065 ], [ -123.586007588999962, 48.376608689000115 ], [ -123.585630816, 48.376730910000063 ], [ -123.584815405999947, 48.376996299000055 ], [ -123.584637338999968, 48.377097556000081 ], [ -123.584568298, 48.377136789000033 ], [ -123.584403981999969, 48.377324058000042 ], [ -123.584154804999983, 48.377608011000035 ], [ -123.584073777999976, 48.377794597000076 ], [ -123.584072395999968, 48.378007393000139 ], [ -123.584156392999944, 48.378343021000056 ], [ -123.584435887999973, 48.378755201000097 ], [ -123.585050998999947, 48.379300420000071 ], [ -123.585224903999972, 48.379589310000043 ], [ -123.585196826999947, 48.38056262800005 ], [ -123.585165034999989, 48.380658419000049 ], [ -123.584789586999989, 48.381069143000062 ], [ -123.584729226999968, 48.381275230000078 ], [ -123.584746511999953, 48.381702136000115 ], [ -123.584812291999981, 48.381892148000098 ], [ -123.584960022999951, 48.382087542000143 ], [ -123.584982504999971, 48.382360447000103 ], [ -123.584746680999942, 48.384071977000055 ], [ -123.584706286999946, 48.384365094000067 ], [ -123.584631499999901, 48.384828700000114 ], [ -123.58447619699993, 48.385151591000131 ], [ -123.584050935999969, 48.385626861000041 ], [ -123.58345839899998, 48.386289002000062 ], [ -123.583392035999935, 48.386275627000082 ], [ -123.583325616999943, 48.386262243000061 ], [ -123.58322076499999, 48.386251095000091 ], [ -123.582912789999952, 48.386268965000056 ], [ -123.582588523999945, 48.386261603000037 ], [ -123.582466965999956, 48.386262234000064 ], [ -123.58243995399999, 48.386262370000075 ], [ -123.582412975999915, 48.386262494000043 ], [ -123.582414204999949, 48.386370445000125 ], [ -123.582402233999929, 48.386505452000115 ], [ -123.582376211999957, 48.386595559000057 ], [ -123.582162593999925, 48.386812573000064 ], [ -123.582043188999961, 48.387002100000061 ], [ -123.581909562999954, 48.38712872400005 ], [ -123.581695843999981, 48.387336724000065 ], [ -123.581562105999964, 48.387454370000064 ], [ -123.58136153099997, 48.387635303000074 ], [ -123.581066157999942, 48.387789735000041 ], [ -123.5809185089999, 48.387871447000101 ], [ -123.580650313999982, 48.388043746000058 ], [ -123.580315096999968, 48.388261363000083 ], [ -123.580261684, 48.38831561000007 ], [ -123.580155093, 48.388442084000054 ], [ -123.579995427999947, 48.388658814000046 ], [ -123.579821593999938, 48.388812650000069 ], [ -123.579714872999958, 48.388930123000129 ], [ -123.579527910999929, 48.389120004000048 ], [ -123.579286342999922, 48.389256169000127 ], [ -123.579178662999979, 48.389292707000052 ], [ -123.57890945299999, 48.38937500800003 ], [ -123.578761812999915, 48.389456738 ], [ -123.578600340999941, 48.389511526000028 ], [ -123.578291506999946, 48.389675027000045 ], [ -123.578184465999925, 48.389765528000083 ], [ -123.578077737999976, 48.389882999000072 ], [ -123.577970920000013, 48.389991513000041 ], [ -123.577770647999984, 48.390199435000042 ], [ -123.577610278999927, 48.390353194000063 ], [ -123.577354887999945, 48.390462435000053 ], [ -123.577072631999897, 48.390589791000117 ], [ -123.57677722299999, 48.390744211000019 ], [ -123.576656257, 48.390798811000117 ], [ -123.57656201199994, 48.390826271000115 ], [ -123.576306175999932, 48.390899535000038 ], [ -123.576131399999952, 48.390972362000106 ], [ -123.57596926699992, 48.391072238000078 ], [ -123.575782505999953, 48.391220095000065 ], [ -123.574093561999959, 48.391206252000075 ], [ -123.573638490999912, 48.391202492000019 ], [ -123.572554782999958, 48.391319290000027 ], [ -123.5718603709999, 48.391394115000068 ], [ -123.571582008999926, 48.391424109000106 ], [ -123.571568423999935, 48.391424160000078 ], [ -123.570482978999962, 48.391429497000097 ], [ -123.569638199999986, 48.391474092000081 ], [ -123.569371006999944, 48.391426488000057 ], [ -123.569085987999969, 48.391330685000106 ], [ -123.568712216999984, 48.391128201000086 ], [ -123.56777989699998, 48.390303294000027 ], [ -123.567509704999964, 48.390209588000076 ], [ -123.567266593999989, 48.390193203000102 ], [ -123.56696242199996, 48.390208698000031 ], [ -123.566607504999965, 48.390295287000086 ], [ -123.566268298999972, 48.390467812000068 ], [ -123.566167454999984, 48.390551171000027 ], [ -123.565929150999978, 48.390748201000036 ], [ -123.56585018399997, 48.390813504000107 ], [ -123.56570110299999, 48.390880405000082 ], [ -123.565358301999964, 48.39094021300015 ], [ -123.563587301999959, 48.391036499000101 ], [ -123.561619894999978, 48.391073192000057 ], [ -123.55989191299993, 48.39158980600007 ], [ -123.559568, 48.39164811300008 ], [ -123.559177685999941, 48.391636402000053 ], [ -123.558924505999954, 48.391579199000034 ], [ -123.558662514999966, 48.391430589000088 ], [ -123.558455606999971, 48.391389800000049 ], [ -123.557200671999922, 48.391413092000072 ], [ -123.556493398999947, 48.391295083000109 ], [ -123.556115302999956, 48.391232012000046 ], [ -123.555543, 48.391218787000113 ], [ -123.555114789999934, 48.391287408000032 ], [ -123.554822816999931, 48.391382505000152 ], [ -123.554497808999955, 48.391539991000087 ], [ -123.554364488999951, 48.391667716 ], [ -123.554149490999947, 48.392097391000114 ], [ -123.554003399999914, 48.392238290000122 ], [ -123.553856398999983, 48.392309518000019 ], [ -123.553772377999977, 48.392350198000031 ], [ -123.553561002999956, 48.39239759200008 ], [ -123.55353599899999, 48.392399324000081 ], [ -123.552982571999948, 48.392437805000029 ], [ -123.552927792999952, 48.392441598000111 ], [ -123.551396547999971, 48.392954577000054 ], [ -123.551324008, 48.39297889700002 ], [ -123.551128805999966, 48.393076302000075 ], [ -123.550472087999978, 48.392740117000173 ], [ -123.550195409999986, 48.392485699000083 ], [ -123.550026796999958, 48.392227502 ], [ -123.549840403999937, 48.391426904000099 ] ], [ [ -123.556583083999925, 48.390073024000031 ], [ -123.556631070999913, 48.389143354000048 ], [ -123.5620169849999, 48.389267620000069 ], [ -123.56196977599997, 48.390184234000117 ], [ -123.563667701, 48.390223352000078 ], [ -123.56366833499996, 48.390211031000085 ], [ -123.564096381999946, 48.390220888000066 ], [ -123.564242166, 48.3873877360001 ], [ -123.569627900999976, 48.387511614000125 ], [ -123.569549599999988, 48.389036716000135 ], [ -123.571876811999928, 48.389090159000013 ], [ -123.571874247999986, 48.389140161000036 ], [ -123.572098592999922, 48.389145309000043 ], [ -123.572104166999964, 48.389036634000092 ], [ -123.573076562999987, 48.38905894800012 ], [ -123.573092443999954, 48.388749158000039 ], [ -123.5770618599999, 48.388840151000096 ], [ -123.577088401999958, 48.388321590000068 ], [ -123.575724658999917, 48.388290345000058 ], [ -123.575779152999942, 48.387226231000092 ], [ -123.575579015999949, 48.387221644000142 ], [ -123.575654182999969, 48.385753879000035 ], [ -123.575652905999959, 48.385753850000157 ], [ -123.57566841, 48.385451096000054 ], [ -123.575684396999975, 48.385138898000072 ], [ -123.575620295999926, 48.385137429000046 ], [ -123.575604457999972, 48.385446689000034 ], [ -123.575496356999935, 48.387557479000037 ], [ -123.570110603000018, 48.387433900000076 ], [ -123.570111928999921, 48.387408065000095 ], [ -123.569346476999925, 48.387390479000018 ], [ -123.56935587, 48.387207554000049 ], [ -123.568633862999945, 48.387190961000066 ], [ -123.568656067999953, 48.386758608000072 ], [ -123.565289569999948, 48.386681175000099 ], [ -123.565350666999905, 48.385493188000062 ], [ -123.562407437999966, 48.385425403000063 ], [ -123.562531010999962, 48.383025327000098 ], [ -123.559955593999959, 48.382965945000137 ], [ -123.55999540699996, 48.382193431000083 ], [ -123.559280214999944, 48.382176930000107 ], [ -123.559282002999979, 48.382142245000111 ], [ -123.557007531999901, 48.382089734000111 ], [ -123.556987650999972, 48.382475049000057 ], [ -123.555598624999988, 48.382442957000116 ], [ -123.555564128999976, 48.383111083000102 ], [ -123.555026704999975, 48.383098661000069 ], [ -123.554966269999952, 48.384268894000073 ], [ -123.549580942999924, 48.38414426900011 ], [ -123.549658124999937, 48.38265303400005 ], [ -123.549608031, 48.382651874000047 ], [ -123.549659562999963, 48.381656218000067 ], [ -123.549437483999924, 48.381651073000057 ], [ -123.549473843999976, 48.380948595000071 ], [ -123.547719365, 48.380907930000077 ], [ -123.547762655, 48.380072132000052 ], [ -123.547653958999945, 48.380069612000113 ], [ -123.54760836, 48.380949968000039 ], [ -123.548724584999917, 48.380975845000115 ], [ -123.548665256, 48.382121748000081 ], [ -123.548747251999913, 48.382123648000153 ], [ -123.548640114999969, 48.384192844000026 ], [ -123.553174615999964, 48.384297838000109 ], [ -123.553153634999958, 48.384703788000067 ], [ -123.554598490999979, 48.384737202000132 ], [ -123.554595528999926, 48.38479452800005 ], [ -123.559931703999936, 48.384917762000043 ], [ -123.5597459909999, 48.388520662000118 ], [ -123.555688768999957, 48.388426990000049 ], [ -123.555644772, 48.389279061000074 ], [ -123.5526819399999, 48.389210557000148 ], [ -123.552670615999929, 48.389429597000117 ], [ -123.552928326999904, 48.389435559000162 ], [ -123.552909975999953, 48.38979055300004 ], [ -123.553052844, 48.389793858000068 ], [ -123.553020415, 48.390421204000106 ], [ -123.553195575999965, 48.3904252560001 ], [ -123.553178119999984, 48.390762957000028 ], [ -123.553717977999938, 48.390775442000034 ], [ -123.553709141999889, 48.390946421000052 ], [ -123.555989976999982, 48.39099913900003 ], [ -123.556038442999977, 48.390060443000088 ], [ -123.556583083999925, 48.390073024000031 ] ], [ [ -123.547033875999915, 48.386156939000038 ], [ -123.547057980999966, 48.385691709000113 ], [ -123.547017200999974, 48.385690763000127 ], [ -123.546993093999959, 48.386155994000042 ], [ -123.547033875999915, 48.386156939000038 ] ], [ [ -123.582423941999977, 48.380766710000024 ], [ -123.582427019999969, 48.381036595000062 ], [ -123.582651641999973, 48.381035457000053 ], [ -123.582752313999919, 48.379063596000037 ], [ -123.580288796999952, 48.379007262000073 ], [ -123.580273353999971, 48.379309426000098 ], [ -123.581063, 48.379327489000104 ], [ -123.581006478999967, 48.380433794000069 ], [ -123.581954332999885, 48.380455469000054 ], [ -123.581952100999942, 48.380499199000042 ], [ -123.582015726999913, 48.380498877000022 ], [ -123.582018803999944, 48.380768761000127 ], [ -123.582423941999977, 48.380766710000024 ] ], [ [ -123.56844033899992, 48.380114096000064 ], [ -123.568538603, 48.378200612000057 ], [ -123.571554164999966, 48.37826990000007 ], [ -123.571644834999958, 48.37650195600002 ], [ -123.569915240999961, 48.376462227000047 ], [ -123.569932684999969, 48.376122341000105 ], [ -123.569911246999951, 48.376121848000039 ], [ -123.569894427999955, 48.376449552000096 ], [ -123.567334339999931, 48.37639069300009 ], [ -123.567230219999914, 48.378417270000114 ], [ -123.56805452499998, 48.378436229000116 ], [ -123.567968898999965, 48.380103256000076 ], [ -123.56844033899992, 48.380114096000064 ] ], [ [ -123.579344411999969, 48.378360462000053 ], [ -123.57934037699998, 48.378439365000098 ], [ -123.579561133999945, 48.378444418000051 ], [ -123.579565167999959, 48.378365514000031 ], [ -123.579344411999969, 48.378360462000053 ] ], [ [ -123.58202941699993, 48.382118204000058 ], [ -123.581987859999941, 48.382931881000054 ], [ -123.582759440999951, 48.382949517000036 ], [ -123.582770259999947, 48.382737590000033 ], [ -123.582663240999963, 48.382735144000023 ], [ -123.58268112899998, 48.382384804000118 ], [ -123.582442414999932, 48.382386012000033 ], [ -123.582439336, 48.382116129000103 ], [ -123.58202941699993, 48.382118204000058 ] ], [ [ -123.569081379999957, 48.367130151000062 ], [ -123.56911149599992, 48.366543388000018 ], [ -123.568878386000023, 48.366538029000061 ], [ -123.568915164999936, 48.36582151500005 ], [ -123.566709451999913, 48.365770775000065 ], [ -123.566716449999902, 48.365634571000037 ], [ -123.564675703999967, 48.36558758500005 ], [ -123.564626247999954, 48.36654940800009 ], [ -123.56833572099994, 48.366634786000127 ], [ -123.568311197999918, 48.367112440000014 ], [ -123.569081379999957, 48.367130151000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.959017347770404", "sL_AssetLoss": "858.9", "sL_BldgLoss": "823.7", "sL_StrLoss": "727", "sL_NStrLoss": "96.7", "sL_ContLoss": "35.2", "geom_point": "0101000020E61000009BFB711C34E55EC0984C369A332F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.581493790999929, 48.370245335000064 ], [ -123.581487644999925, 48.3697055660001 ], [ -123.581082594999927, 48.369707613000131 ], [ -123.581073381999957, 48.36889796100013 ], [ -123.580668336999963, 48.368900005000114 ], [ -123.58065299699993, 48.367550584000071 ], [ -123.581058029999937, 48.367548539000019 ], [ -123.58105496, 48.367278654000124 ], [ -123.581232273999888, 48.367277758000121 ], [ -123.581233994999963, 48.367296712000027 ], [ -123.581509305999958, 48.367762897 ], [ -123.581559116999983, 48.367974993000097 ], [ -123.581635209999916, 48.368727989000078 ], [ -123.58181290899995, 48.369205487000094 ], [ -123.581905598999967, 48.369634217000048 ], [ -123.581953604999981, 48.369829200000062 ], [ -123.582061915999958, 48.370003004000168 ], [ -123.582235113999971, 48.370200896000078 ], [ -123.58228619499999, 48.370241327000052 ], [ -123.581493790999929, 48.370245335000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118757501", "BldgCostT": "78955001", "sL_LossRatio": "0.936761049674309", "sL_AssetLoss": "142457.14", "sL_BldgLoss": "133448.3", "sL_StrLoss": "113494.7", "sL_NStrLoss": "19953.6", "sL_ContLoss": "9008.84", "geom_point": "0101000020E6100000FF6BB39004E55EC0DD396AD8B1324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.543253862999961, 48.409844273 ], [ -123.543553005999982, 48.409215144000051 ], [ -123.541159572999931, 48.40919769400012 ], [ -123.540166212999907, 48.409190429000013 ], [ -123.540528619999975, 48.408656714000053 ], [ -123.540698490999972, 48.408501944000122 ], [ -123.54144146499999, 48.407830263000058 ], [ -123.541682239999957, 48.40747875300012 ], [ -123.542178786999969, 48.406356847000069 ], [ -123.542341947999958, 48.40617681100013 ], [ -123.542360495999944, 48.406156324000072 ], [ -123.542535210999986, 48.406038629000093 ], [ -123.542810769999917, 48.405925131000046 ], [ -123.544323583999955, 48.405619309000073 ], [ -123.544691400999938, 48.405573707000023 ], [ -123.544976712999983, 48.405585812000027 ], [ -123.545457814999963, 48.405669102000026 ], [ -123.545719402999936, 48.405675117000037 ], [ -123.54578779099991, 48.405676706000087 ], [ -123.546157693999973, 48.405616805000108 ], [ -123.546703010999948, 48.405399404000036 ], [ -123.547431102, 48.404934792000034 ], [ -123.548263689999885, 48.40440309500007 ], [ -123.549325394999983, 48.40350878800006 ], [ -123.549631314999914, 48.403123603000012 ], [ -123.549837648000022, 48.402859595000088 ], [ -123.549917216999987, 48.402757803000036 ], [ -123.550135057999952, 48.402388140000028 ], [ -123.550956408999937, 48.400994499000049 ], [ -123.551138881999975, 48.400439599000094 ], [ -123.551119007999958, 48.400042397000043 ], [ -123.551109903999958, 48.400010970000096 ], [ -123.550799680999958, 48.39894109199998 ], [ -123.550781134999951, 48.398785280000013 ], [ -123.550778330999947, 48.398761727000107 ], [ -123.550749912999962, 48.3985233820001 ], [ -123.551023707999917, 48.397974188000028 ], [ -123.551169185999967, 48.397586199000095 ], [ -123.551335890999937, 48.396891201000074 ], [ -123.55147300199998, 48.39658680600008 ], [ -123.551719706999961, 48.396196697000022 ], [ -123.552083819999936, 48.395856999000074 ], [ -123.552093385999953, 48.395840869000025 ], [ -123.552228521, 48.395613197000095 ], [ -123.552271352, 48.395398798000016 ], [ -123.552286827, 48.39532149800003 ], [ -123.552256413999942, 48.394213405000102 ], [ -123.552181345999941, 48.394032112000069 ], [ -123.552128208999989, 48.393903801000121 ], [ -123.551807501999974, 48.393508696000062 ], [ -123.551443182, 48.393276596000099 ], [ -123.551345829999917, 48.39321457700003 ], [ -123.551128805999966, 48.393076302000075 ], [ -123.551324008, 48.39297889700002 ], [ -123.551396547999971, 48.392954577000054 ], [ -123.552927792999952, 48.392441598000111 ], [ -123.552982571999948, 48.392437805000029 ], [ -123.55353599899999, 48.392399324000081 ], [ -123.553561002999956, 48.39239759200008 ], [ -123.553772377999977, 48.392350198000031 ], [ -123.553856398999983, 48.392309518000019 ], [ -123.554003399999914, 48.392238290000122 ], [ -123.554149490999947, 48.392097391000114 ], [ -123.554364488999951, 48.391667716 ], [ -123.554497808999955, 48.391539991000087 ], [ -123.554822816999931, 48.391382505000152 ], [ -123.555114789999934, 48.391287408000032 ], [ -123.555543, 48.391218787000113 ], [ -123.556115302999956, 48.391232012000046 ], [ -123.556493398999947, 48.391295083000109 ], [ -123.557200671999922, 48.391413092000072 ], [ -123.558455606999971, 48.391389800000049 ], [ -123.558662514999966, 48.391430589000088 ], [ -123.558924505999954, 48.391579199000034 ], [ -123.559177685999941, 48.391636402000053 ], [ -123.559568, 48.39164811300008 ], [ -123.55989191299993, 48.39158980600007 ], [ -123.561619894999978, 48.391073192000057 ], [ -123.563587301999959, 48.391036499000101 ], [ -123.565358301999964, 48.39094021300015 ], [ -123.56570110299999, 48.390880405000082 ], [ -123.56585018399997, 48.390813504000107 ], [ -123.565929150999978, 48.390748201000036 ], [ -123.566167454999984, 48.390551171000027 ], [ -123.566268298999972, 48.390467812000068 ], [ -123.566607504999965, 48.390295287000086 ], [ -123.56696242199996, 48.390208698000031 ], [ -123.567266593999989, 48.390193203000102 ], [ -123.567509704999964, 48.390209588000076 ], [ -123.56777989699998, 48.390303294000027 ], [ -123.568712216999984, 48.391128201000086 ], [ -123.569085987999969, 48.391330685000106 ], [ -123.569371006999944, 48.391426488000057 ], [ -123.569638199999986, 48.391474092000081 ], [ -123.570482978999962, 48.391429497000097 ], [ -123.571568423999935, 48.391424160000078 ], [ -123.571582008999926, 48.391424109000106 ], [ -123.5718603709999, 48.391394115000068 ], [ -123.572554782999958, 48.391319290000027 ], [ -123.573638490999912, 48.391202492000019 ], [ -123.574093561999959, 48.391206252000075 ], [ -123.575782505999953, 48.391220095000065 ], [ -123.57596926699992, 48.391072238000078 ], [ -123.576131399999952, 48.390972362000106 ], [ -123.576306175999932, 48.390899535000038 ], [ -123.57656201199994, 48.390826271000115 ], [ -123.576656257, 48.390798811000117 ], [ -123.57677722299999, 48.390744211000019 ], [ -123.577072631999897, 48.390589791000117 ], [ -123.577354887999945, 48.390462435000053 ], [ -123.577610278999927, 48.390353194000063 ], [ -123.577770647999984, 48.390199435000042 ], [ -123.577970920000013, 48.389991513000041 ], [ -123.578077737999976, 48.389882999000072 ], [ -123.578184465999925, 48.389765528000083 ], [ -123.578291506999946, 48.389675027000045 ], [ -123.578600340999941, 48.389511526000028 ], [ -123.578761812999915, 48.389456738 ], [ -123.57890945299999, 48.38937500800003 ], [ -123.579178662999979, 48.389292707000052 ], [ -123.579286342999922, 48.389256169000127 ], [ -123.579527910999929, 48.389120004000048 ], [ -123.579714872999958, 48.388930123000129 ], [ -123.579821593999938, 48.388812650000069 ], [ -123.579995427999947, 48.388658814000046 ], [ -123.580155093, 48.388442084000054 ], [ -123.580261684, 48.38831561000007 ], [ -123.580315096999968, 48.388261363000083 ], [ -123.580650313999982, 48.388043746000058 ], [ -123.5809185089999, 48.387871447000101 ], [ -123.581066157999942, 48.387789735000041 ], [ -123.58136153099997, 48.387635303000074 ], [ -123.581562105999964, 48.387454370000064 ], [ -123.581695843999981, 48.387336724000065 ], [ -123.581909562999954, 48.38712872400005 ], [ -123.582043188999961, 48.387002100000061 ], [ -123.582162593999925, 48.386812573000064 ], [ -123.582376211999957, 48.386595559000057 ], [ -123.582402233999929, 48.386505452000115 ], [ -123.582414204999949, 48.386370445000125 ], [ -123.582412975999915, 48.386262494000043 ], [ -123.58243995399999, 48.386262370000075 ], [ -123.582466965999956, 48.386262234000064 ], [ -123.582588523999945, 48.386261603000037 ], [ -123.582912789999952, 48.386268965000056 ], [ -123.58322076499999, 48.386251095000091 ], [ -123.583325616999943, 48.386262243000061 ], [ -123.583392035999935, 48.386275627000082 ], [ -123.58345839899998, 48.386289002000062 ], [ -123.584050935999969, 48.385626861000041 ], [ -123.58447619699993, 48.385151591000131 ], [ -123.584631499999901, 48.384828700000114 ], [ -123.584706286999946, 48.384365094000067 ], [ -123.584746680999942, 48.384071977000055 ], [ -123.584982504999971, 48.382360447000103 ], [ -123.584960022999951, 48.382087542000143 ], [ -123.584812291999981, 48.381892148000098 ], [ -123.584746511999953, 48.381702136000115 ], [ -123.584729226999968, 48.381275230000078 ], [ -123.584789586999989, 48.381069143000062 ], [ -123.585165034999989, 48.380658419000049 ], [ -123.585196826999947, 48.38056262800005 ], [ -123.585224903999972, 48.379589310000043 ], [ -123.585050998999947, 48.379300420000071 ], [ -123.584435887999973, 48.378755201000097 ], [ -123.584156392999944, 48.378343021000056 ], [ -123.584072395999968, 48.378007393000139 ], [ -123.584073777999976, 48.377794597000076 ], [ -123.584154804999983, 48.377608011000035 ], [ -123.584403981999969, 48.377324058000042 ], [ -123.584568298, 48.377136789000033 ], [ -123.584637338999968, 48.377097556000081 ], [ -123.584815405999947, 48.376996299000055 ], [ -123.585630816, 48.376730910000063 ], [ -123.586007588999962, 48.376608689000115 ], [ -123.587031012999901, 48.376176604000065 ], [ -123.587841393999923, 48.375453010000101 ], [ -123.587891546999941, 48.375427866000038 ], [ -123.588284397999985, 48.375231122000159 ], [ -123.588409811999924, 48.375168307000102 ], [ -123.588388946999942, 48.375148677000077 ], [ -123.58783371799997, 48.374625808000062 ], [ -123.587698904999968, 48.374442406000057 ], [ -123.587660408999952, 48.374244893000011 ], [ -123.587699806000018, 48.374018238000112 ], [ -123.588885001999955, 48.374045267000128 ], [ -123.588857336999951, 48.37458860400006 ], [ -123.590516776999948, 48.374626426000077 ], [ -123.590439194999959, 48.376151073000145 ], [ -123.590682959999967, 48.376156626000103 ], [ -123.590508164999946, 48.379591731000048 ], [ -123.59125404299995, 48.379608722000029 ], [ -123.591245311999955, 48.379780329000027 ], [ -123.593706665999932, 48.379836358000048 ], [ -123.593691534999948, 48.380134068000096 ], [ -123.594895989999898, 48.380161465000072 ], [ -123.595049818999897, 48.377132961000051 ], [ -123.600434467999932, 48.37725527300011 ], [ -123.600425339999916, 48.377435378 ], [ -123.600617024999963, 48.377434377000036 ], [ -123.60061384899997, 48.377164494000112 ], [ -123.601424065999979, 48.377160262000089 ], [ -123.601420886999946, 48.376890379000024 ], [ -123.601015781999962, 48.376892495000028 ], [ -123.601012605000022, 48.376622612000091 ], [ -123.599392186999978, 48.376631066000108 ], [ -123.599389018999915, 48.376361183000093 ], [ -123.598578813999893, 48.37636540200004 ], [ -123.598566158999944, 48.375285869000059 ], [ -123.599781440999962, 48.375279540000058 ], [ -123.599784609999944, 48.375549423000059 ], [ -123.600594803, 48.375545196000068 ], [ -123.600591627999975, 48.375275312000078 ], [ -123.600996721999977, 48.375273198000073 ], [ -123.600993545999955, 48.375003314 ], [ -123.602613909999945, 48.374994838000084 ], [ -123.602633020999988, 48.376614136000065 ], [ -123.603848331999984, 48.376607763000045 ], [ -123.603851524000035, 48.376877646000011 ], [ -123.604661735999954, 48.376873390000128 ], [ -123.604664930999945, 48.377143274000062 ], [ -123.604914543999953, 48.377141962000039 ], [ -123.603651133999961, 48.37876799500004 ], [ -123.603063623999944, 48.378771075000046 ], [ -123.603050873999933, 48.377691544000101 ], [ -123.602240648999967, 48.377695789000072 ], [ -123.602237466999966, 48.377425905000038 ], [ -123.601832354999942, 48.377428026000118 ], [ -123.601841898999936, 48.378237674000061 ], [ -123.60143678299994, 48.378239793000027 ], [ -123.601446319999951, 48.379049442000081 ], [ -123.600343249999924, 48.379055204000096 ], [ -123.600251863999972, 48.380858291000067 ], [ -123.59509795299995, 48.380741227000115 ], [ -123.594944115, 48.383769713000042 ], [ -123.594237693999943, 48.383753648000102 ], [ -123.594220503999978, 48.384091930000032 ], [ -123.593641853999941, 48.384078766000108 ], [ -123.593622300999982, 48.384463443000108 ], [ -123.593528679999949, 48.38446131400012 ], [ -123.593482745999964, 48.385364944000067 ], [ -123.588097193999914, 48.385242279000103 ], [ -123.588146428999949, 48.384275843000069 ], [ -123.588083484999956, 48.384274407000149 ], [ -123.588074881999944, 48.384443280000028 ], [ -123.586093937999962, 48.384398091000129 ], [ -123.586043857, 48.385380265000073 ], [ -123.586095652, 48.385381447000071 ], [ -123.586100922999947, 48.38527806700008 ], [ -123.591486473999964, 48.385400832000052 ], [ -123.591410907999887, 48.386886107000073 ], [ -123.591912445999967, 48.386897525000052 ], [ -123.591876333999934, 48.387607454000012 ], [ -123.592770456999915, 48.387627805000044 ], [ -123.592763444999903, 48.387765695000041 ], [ -123.592948259999943, 48.387769901000119 ], [ -123.592789650999961, 48.390889 ], [ -123.594196122999932, 48.390920995000094 ], [ -123.594230429999982, 48.390245982000089 ], [ -123.595634541, 48.390277904000079 ], [ -123.595663603999952, 48.389705715000055 ], [ -123.601049683000014, 48.389827994000044 ], [ -123.601026331999918, 48.390288776000034 ], [ -123.60225646799995, 48.390316664000125 ], [ -123.602244605999971, 48.390550824000101 ], [ -123.60226451299998, 48.390551276000039 ], [ -123.602278812999955, 48.390268979000041 ], [ -123.605060574999968, 48.390331993000054 ], [ -123.605301326999921, 48.390422120000068 ], [ -123.605973485999954, 48.390673735000071 ], [ -123.60761896299999, 48.391301290000079 ], [ -123.60752556199999, 48.393149248000057 ], [ -123.608209616999915, 48.393164716000058 ], [ -123.60817864299996, 48.393777696000051 ], [ -123.608226901999942, 48.393778787000066 ], [ -123.60824290099994, 48.393462137000029 ], [ -123.61159089100002, 48.393537773000077 ], [ -123.61159189199995, 48.393517949000113 ], [ -123.609828608, 48.393478126000026 ], [ -123.609830861999924, 48.393433489000095 ], [ -123.608366158999971, 48.393400388000053 ], [ -123.608456086999951, 48.391620536000069 ], [ -123.615236128999982, 48.394205781000075 ], [ -123.615636241999979, 48.394336339000056 ], [ -123.613367517999976, 48.397113395000062 ], [ -123.614940973999978, 48.397615892000083 ], [ -123.615506320999884, 48.397796424000049 ], [ -123.616315830999937, 48.398054926000043 ], [ -123.616672951999973, 48.398004356000115 ], [ -123.616971015999951, 48.397933594000044 ], [ -123.617184132999938, 48.397882989000067 ], [ -123.61745085599992, 48.398332984000085 ], [ -123.617455340999953, 48.398343120000028 ], [ -123.619270110999949, 48.398931799000053 ], [ -123.622119349999963, 48.400299167000121 ], [ -123.620884436000011, 48.400271408000052 ], [ -123.620856770999936, 48.400821722000082 ], [ -123.615469389999987, 48.400700454000173 ], [ -123.615470835999986, 48.400671751000054 ], [ -123.610717623999903, 48.400564528000068 ], [ -123.610757112999949, 48.399782347000034 ], [ -123.609258316999941, 48.39974849300004 ], [ -123.609304012999985, 48.398843894000095 ], [ -123.60586815000002, 48.398766207000136 ], [ -123.605940591999953, 48.397334126000018 ], [ -123.604157573999913, 48.3972937670001 ], [ -123.60417503499994, 48.396948839000054 ], [ -123.599370724, 48.396839942000092 ], [ -123.599456447999941, 48.395149809000038 ], [ -123.598918994999906, 48.39513761300006 ], [ -123.598881734999978, 48.395872078000124 ], [ -123.593494973999952, 48.39574969000013 ], [ -123.593496070999933, 48.395728121000076 ], [ -123.592953203999926, 48.395715771000056 ], [ -123.590604671999984, 48.395662315000038 ], [ -123.590666497999962, 48.394447762000077 ], [ -123.590317333999948, 48.394439810000051 ], [ -123.590408305000011, 48.392652852000026 ], [ -123.587266031999945, 48.392581235000137 ], [ -123.587309272999974, 48.391732889000053 ], [ -123.585363214000012, 48.391688488000106 ], [ -123.585498958999963, 48.389027268000106 ], [ -123.583264397000022, 48.388976241000137 ], [ -123.583267063999969, 48.388924 ], [ -123.582460505, 48.388905570000084 ], [ -123.582420647999925, 48.389686002000104 ], [ -123.582410898999953, 48.389685779000089 ], [ -123.582323837999979, 48.391390399000031 ], [ -123.580944395999964, 48.391358865000051 ], [ -123.580810019999959, 48.393988128000082 ], [ -123.580640115999955, 48.393984242000045 ], [ -123.580572010999902, 48.395316609000133 ], [ -123.580586857999947, 48.395316948000122 ], [ -123.580442932999986, 48.398132357000058 ], [ -123.581050306999941, 48.398146245000106 ], [ -123.581034411999966, 48.398457233000137 ], [ -123.581442684999928, 48.398466567000042 ], [ -123.581539381999988, 48.396574290000068 ], [ -123.581739069999969, 48.396578855000037 ], [ -123.581903544999989, 48.393359588000052 ], [ -123.587290002999964, 48.39348256600001 ], [ -123.58715471, 48.396136630000044 ], [ -123.59204539299999, 48.396248051000072 ], [ -123.591968975, 48.397750041000094 ], [ -123.591862077999934, 48.39985093800005 ], [ -123.591197489999971, 48.399835811000052 ], [ -123.591066585999968, 48.402407550000149 ], [ -123.585679101999943, 48.402284765000083 ], [ -123.58570599399999, 48.401757625000116 ], [ -123.585223309999947, 48.401746611000185 ], [ -123.585202240999976, 48.402159494000102 ], [ -123.582794348999926, 48.402104516000058 ], [ -123.579814800999955, 48.402036411000033 ], [ -123.579830704999978, 48.401725425000059 ], [ -123.578199957999971, 48.401688114000109 ], [ -123.57817556599997, 48.402164767000102 ], [ -123.575119930999946, 48.402094788000092 ], [ -123.575060502999946, 48.403254541000123 ], [ -123.573763511, 48.403224810000054 ], [ -123.573745968999901, 48.403566971 ], [ -123.571193554999951, 48.403508418000122 ], [ -123.57115969899999, 48.404168034000051 ], [ -123.567777816999964, 48.404090357000037 ], [ -123.56776280699998, 48.404382401000092 ], [ -123.571416532999976, 48.404466317000058 ], [ -123.571373858999934, 48.40529779400002 ], [ -123.572789933999971, 48.405330283000083 ], [ -123.572605117999942, 48.408933082000104 ], [ -123.568933887999933, 48.408848814000045 ], [ -123.568823183999953, 48.411003369000071 ], [ -123.563434778999962, 48.410879455000035 ], [ -123.563443649999954, 48.410707197000086 ], [ -123.560988996999967, 48.410650657000112 ], [ -123.560978665999954, 48.410851062000098 ], [ -123.555590297999927, 48.410726749000077 ], [ -123.55567442899995, 48.409098265000061 ], [ -123.555379287999955, 48.409091448000083 ], [ -123.555469255999967, 48.407350062000049 ], [ -123.555162094, 48.407351544000051 ], [ -123.555153281999978, 48.406541893000139 ], [ -123.555511096999908, 48.406540167000045 ], [ -123.555565413999915, 48.405488680000076 ], [ -123.556305696999928, 48.405505778000098 ], [ -123.556349687999941, 48.40465391300004 ], [ -123.554528456999975, 48.404611841000097 ], [ -123.554402197999934, 48.40705483500011 ], [ -123.554306421999968, 48.407052622000059 ], [ -123.554200003999952, 48.409111434000131 ], [ -123.548811852, 48.408986775000052 ], [ -123.548826024999983, 48.408713199000054 ], [ -123.547986638999973, 48.408693754000076 ], [ -123.548001867999972, 48.408399893000102 ], [ -123.546872717, 48.408373725000054 ], [ -123.546893262999916, 48.407977454000026 ], [ -123.546855623999974, 48.407976582000046 ], [ -123.54685275599995, 48.408031918000034 ], [ -123.546039978999957, 48.408013075000042 ], [ -123.545933330999972, 48.410069334000042 ], [ -123.544377150999964, 48.410033238000011 ], [ -123.544306340999967, 48.411397570000069 ], [ -123.543676958999967, 48.411382964000055 ], [ -123.54367132, 48.4114915850001 ], [ -123.542465802, 48.411463600000012 ], [ -123.543253862999961, 48.409844273 ] ], [ [ -123.554363053, 48.403446849000055 ], [ -123.554432917999947, 48.402094964000113 ], [ -123.554391509999974, 48.40209400800007 ], [ -123.554321642999923, 48.403445892000079 ], [ -123.554363053, 48.403446849000055 ] ], [ [ -123.560573707999964, 48.400665591000092 ], [ -123.560452296, 48.403020837000014 ], [ -123.562010464999958, 48.403056748000026 ], [ -123.562067552999949, 48.401948629000074 ], [ -123.564890772999917, 48.402013637000039 ], [ -123.564899164999957, 48.401850529000058 ], [ -123.56386792699999, 48.401826792000037 ], [ -123.564053378999958, 48.398223966000025 ], [ -123.564748943000012, 48.39823997700006 ], [ -123.564779905999927, 48.39763824500001 ], [ -123.563887674999961, 48.397617705000073 ], [ -123.563933497999983, 48.396727452000086 ], [ -123.558806247999897, 48.396609275000067 ], [ -123.558954494999938, 48.393734927000033 ], [ -123.556701961, 48.393682929000128 ], [ -123.556653503999925, 48.394621620000088 ], [ -123.555911814999945, 48.39460448799999 ], [ -123.555862408999985, 48.395561266000094 ], [ -123.556335264, 48.395572188000067 ], [ -123.55614923499995, 48.399175018000022 ], [ -123.555224766999942, 48.399153661000092 ], [ -123.555128424999936, 48.40101860900009 ], [ -123.555161799999937, 48.401019380000101 ], [ -123.555186500999952, 48.400541255000071 ], [ -123.560573707999964, 48.400665591000092 ] ], [ [ -123.570433134999945, 48.39933295 ], [ -123.57042873499999, 48.399418661000048 ], [ -123.572287648999946, 48.399461329000125 ], [ -123.572292046999976, 48.399375617000018 ], [ -123.570433134999945, 48.39933295 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14669584", "BldgCostT": "8433334", "sL_LossRatio": "0.623630365078092", "sL_AssetLoss": "10344.91", "sL_BldgLoss": "6451.4", "sL_StrLoss": "3379", "sL_NStrLoss": "3072.4", "sL_ContLoss": "3893.51", "geom_point": "0101000020E6100000E107631B23E45EC0277A11542A284840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.565224016999963, 48.317707578000082 ], [ -123.565324674999914, 48.315747308000041 ], [ -123.561990919999971, 48.315670398000115 ], [ -123.562019182999975, 48.315120701000112 ], [ -123.55994718, 48.31507284700011 ], [ -123.560015448999948, 48.31374612500008 ], [ -123.560122666999945, 48.311662357000095 ], [ -123.559715570999941, 48.311652951000099 ], [ -123.559734284999948, 48.311289304000049 ], [ -123.559645389999972, 48.311287251000074 ], [ -123.559720168999959, 48.309834099000099 ], [ -123.559814907999964, 48.30978589700004 ], [ -123.55982691299999, 48.309542392 ], [ -123.560149106999972, 48.309496810000034 ], [ -123.56029389499993, 48.309118003000108 ], [ -123.560682017999952, 48.308927105000102 ], [ -123.561317396999954, 48.309085204000034 ], [ -123.561494505999974, 48.309210508000071 ], [ -123.561509303999941, 48.309364299000094 ], [ -123.561686321999986, 48.309398503000061 ], [ -123.561674684999929, 48.309560897000026 ], [ -123.561795594999978, 48.309650591 ], [ -123.561743900999943, 48.309848587 ], [ -123.561839397999947, 48.309875595000065 ], [ -123.56201309399999, 48.309838599000038 ], [ -123.562051502999907, 48.309469693000089 ], [ -123.562410690999968, 48.309053897000098 ], [ -123.562947697999945, 48.308915686000034 ], [ -123.56331170199995, 48.30894140900012 ], [ -123.563421903999966, 48.309031107000067 ], [ -123.56411019699999, 48.309036811000027 ], [ -123.564206088999981, 48.309278908000039 ], [ -123.564155596999981, 48.309639198000092 ], [ -123.564375712999947, 48.309907006000046 ], [ -123.564147808999977, 48.310179007000066 ], [ -123.56459529199995, 48.310365595000114 ], [ -123.564665412999901, 48.31049090700003 ], [ -123.564601701999919, 48.310932401000066 ], [ -123.564468515999963, 48.311013596000095 ], [ -123.564456984999964, 48.311157401000081 ], [ -123.565008318999972, 48.311137502000079 ], [ -123.565104194, 48.311244306000106 ], [ -123.564998085999918, 48.311469296000055 ], [ -123.564731216999988, 48.311570398000129 ], [ -123.56463900199995, 48.31174991000006 ], [ -123.564411095999944, 48.311886608000059 ], [ -123.564545894999981, 48.311930798000041 ], [ -123.565029705999976, 48.31173000400004 ], [ -123.565217310999941, 48.311757009000097 ], [ -123.56524541099995, 48.311855303000129 ], [ -123.565008314999957, 48.312271198000069 ], [ -123.564808195999959, 48.312433487000099 ], [ -123.563904489999956, 48.31251039100006 ], [ -123.563857199999958, 48.313121399000138 ], [ -123.564240597999969, 48.313534396000144 ], [ -123.567208804999922, 48.313618483000013 ], [ -123.567484553999975, 48.313532272000089 ], [ -123.567452797999977, 48.314151329000062 ], [ -123.570786454999947, 48.314228066000105 ], [ -123.57075811199995, 48.31478131300004 ], [ -123.570601841999931, 48.317831421000058 ], [ -123.565824702, 48.31772142300013 ], [ -123.565224016999963, 48.317707578000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537501", "BldgCostT": "1750001", "sL_LossRatio": "0.965469445977042", "sL_AssetLoss": "2972.44", "sL_BldgLoss": "2869.8", "sL_StrLoss": "2543", "sL_NStrLoss": "326.8", "sL_ContLoss": "102.64", "geom_point": "0101000020E61000003C65B99573E65EC019C91EA1E6334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.598202238999988, 48.403613222000054 ], [ -123.603589906999957, 48.40373536800012 ], [ -123.603407442999952, 48.407338230000029 ], [ -123.598019363999981, 48.407216076000118 ], [ -123.598202238999988, 48.403613222000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34215834", "BldgCostT": "23333334", "sL_LossRatio": "0.88302550211254", "sL_AssetLoss": "97607.6", "sL_BldgLoss": "86190", "sL_StrLoss": "62190", "sL_NStrLoss": "24000", "sL_ContLoss": "11417.6", "geom_point": "0101000020E6100000C1FECACE0BE45EC0A939B33C132A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.561529384999943, 48.340954770000074 ], [ -123.56157142799999, 48.340137708000043 ], [ -123.559496407999944, 48.340089803000055 ], [ -123.558809911999958, 48.339818538000067 ], [ -123.558836236999952, 48.339307480000052 ], [ -123.557959586, 48.339287222000095 ], [ -123.557989500999938, 48.338706674000058 ], [ -123.557623507999963, 48.338698216000111 ], [ -123.557652155999946, 48.338142319000085 ], [ -123.5576616809999, 48.337957512000102 ], [ -123.55757965, 48.337955616000038 ], [ -123.557717283999978, 48.335284824000041 ], [ -123.557765330999985, 48.334352408000079 ], [ -123.5581020179999, 48.334360190000012 ], [ -123.558133648999942, 48.333746216000158 ], [ -123.559810528999918, 48.333784960000088 ], [ -123.560526685999932, 48.33380149800012 ], [ -123.560653181999953, 48.331343669000098 ], [ -123.56264602399996, 48.331389666000092 ], [ -123.563859102999942, 48.331417646000034 ], [ -123.563919275999936, 48.330246814000056 ], [ -123.562138343999948, 48.330205731000078 ], [ -123.562117870999913, 48.330205259000053 ], [ -123.562118839999968, 48.330186415000085 ], [ -123.562176864999969, 48.329058187000051 ], [ -123.56100049899996, 48.329031033000014 ], [ -123.56101695299995, 48.328711241000079 ], [ -123.560292754999949, 48.328694518000049 ], [ -123.557333687999972, 48.328626137000121 ], [ -123.55741694299995, 48.327010438000045 ], [ -123.557473090999977, 48.325920725000096 ], [ -123.557519351999986, 48.325022872000019 ], [ -123.557703428999957, 48.325027129000048 ], [ -123.557738267999966, 48.324350871000028 ], [ -123.556426621999947, 48.324320536000094 ], [ -123.555552177999942, 48.324300303 ], [ -123.555720824999923, 48.321029345000035 ], [ -123.555737957999924, 48.32069701500005 ], [ -123.556319263999953, 48.320710466000037 ], [ -123.55638921799999, 48.320712084000029 ], [ -123.556998047999954, 48.320726169000082 ], [ -123.55771011899995, 48.320742637000095 ], [ -123.557741009999944, 48.320142962000013 ], [ -123.55837305699994, 48.320157576000035 ], [ -123.558396201999969, 48.319708140000053 ], [ -123.557795327999926, 48.319694247000072 ], [ -123.557638668999985, 48.319690625000085 ], [ -123.557626987999953, 48.319917389000061 ], [ -123.557592381999925, 48.320589132000066 ], [ -123.557109697999962, 48.320577969000055 ], [ -123.556360900999948, 48.320560647000029 ], [ -123.556132526999988, 48.320555363000018 ], [ -123.552214279999959, 48.320464627000064 ], [ -123.552349629999952, 48.317842861000031 ], [ -123.5524003, 48.316861321000012 ], [ -123.555170794999952, 48.316925493000028 ], [ -123.556518415999932, 48.316956681000079 ], [ -123.556601617999959, 48.315342119000043 ], [ -123.55935942399995, 48.315405890000065 ], [ -123.561979150999946, 48.31546640100008 ], [ -123.561960668999973, 48.315825873000044 ], [ -123.562061468999943, 48.315828201000102 ], [ -123.562043134999925, 48.31618478100004 ], [ -123.5620656899999, 48.316185301000068 ], [ -123.562002464999978, 48.317414958 ], [ -123.563896197999895, 48.317458657000017 ], [ -123.563813380999974, 48.319070479000082 ], [ -123.563798827999932, 48.319353723000035 ], [ -123.563908908999935, 48.319356262000056 ], [ -123.563863161999933, 48.320246576000017 ], [ -123.5650496199999, 48.320273936000035 ], [ -123.565002049999961, 48.32120015700005 ], [ -123.566201733999947, 48.321227808000039 ], [ -123.566153092999983, 48.322175310000034 ], [ -123.567263151999938, 48.322200883000086 ], [ -123.567171928999983, 48.323978571000069 ], [ -123.567163701999974, 48.324138887000068 ], [ -123.56731732899999, 48.324142425000083 ], [ -123.56946348799994, 48.324191831000086 ], [ -123.569413300999955, 48.325170698000107 ], [ -123.570578507, 48.32519750400013 ], [ -123.570488468999926, 48.326954385000086 ], [ -123.570732804000016, 48.326960005000025 ], [ -123.5707299379999, 48.327015923000019 ], [ -123.572854031999924, 48.327064750000019 ], [ -123.57266952699996, 48.330668029000044 ], [ -123.572525311999925, 48.330664715000054 ], [ -123.57249152499999, 48.331324475 ], [ -123.572462585999958, 48.331889531000058 ], [ -123.571416514999967, 48.331865489000059 ], [ -123.571384774999956, 48.332484955000062 ], [ -123.570706093999931, 48.332469351000043 ], [ -123.57061987099999, 48.334151597000073 ], [ -123.571238206999965, 48.334165814000073 ], [ -123.571053551999967, 48.337769046000041 ], [ -123.569958085999971, 48.337743858000096 ], [ -123.569949316999981, 48.337914873000038 ], [ -123.569766505999951, 48.33791066800017 ], [ -123.569749727000016, 48.338237877000083 ], [ -123.569311724999949, 48.338227801000144 ], [ -123.567112704999928, 48.338177191000035 ], [ -123.564502210999976, 48.338117051000062 ], [ -123.564485726000029, 48.338437823000028 ], [ -123.567142713999914, 48.338499034000066 ], [ -123.566957728999952, 48.342102233000077 ], [ -123.566857408999951, 48.342099923000021 ], [ -123.566833249999945, 48.342570434000031 ], [ -123.563029583999949, 48.342482783000079 ], [ -123.561452628999945, 48.342446405 ], [ -123.561529384999943, 48.340954770000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "0.937755581668625", "sL_AssetLoss": "851", "sL_BldgLoss": "798.03", "sL_StrLoss": "601.6", "sL_NStrLoss": "196.43", "sL_ContLoss": "52.97", "geom_point": "0101000020E61000003B2EB2B60CE65EC03CF393E666294840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.591934752999975, 48.325307959000064 ], [ -123.592117773, 48.321704613000158 ], [ -123.595522736999939, 48.32178218100011 ], [ -123.597496119999903, 48.321827086000063 ], [ -123.59740641399999, 48.323597278000072 ], [ -123.59734830799999, 48.323604991000089 ], [ -123.59732238899997, 48.323667696000065 ], [ -123.597400858999961, 48.323706890000054 ], [ -123.59738235399999, 48.324072026000117 ], [ -123.597366296999908, 48.324090705000067 ], [ -123.596978591999928, 48.324237411000084 ], [ -123.596892791999892, 48.323904097000074 ], [ -123.59586050599998, 48.324493703000044 ], [ -123.595888506999955, 48.32462900500007 ], [ -123.596052506999939, 48.324700185000047 ], [ -123.596230113999965, 48.324942392000075 ], [ -123.595921989999951, 48.32516879300001 ], [ -123.59601312700002, 48.325400854000115 ], [ -123.595482063999981, 48.325388767000085 ], [ -123.595424901999934, 48.325334011000095 ], [ -123.595148499999979, 48.325381172000071 ], [ -123.594092330999942, 48.325357122000071 ], [ -123.591934752999975, 48.325307959000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.980424143556281", "sL_AssetLoss": "1164.7", "sL_BldgLoss": "1141.9", "sL_StrLoss": "1037", "sL_NStrLoss": "104.9", "sL_ContLoss": "22.8", "geom_point": "0101000020E610000061EDFF4EE0E25EC0BEC791B523284840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.542652657999923, 48.315052757000053 ], [ -123.542706045999964, 48.314022534000117 ], [ -123.542811681999979, 48.313960300000112 ], [ -123.542860019999978, 48.313457505000088 ], [ -123.542995006999931, 48.313347909000051 ], [ -123.543384598999964, 48.313256691000078 ], [ -123.543747789999898, 48.312323731000063 ], [ -123.546784595999952, 48.312394325000128 ], [ -123.546870187999957, 48.312574503000057 ], [ -123.547303692999961, 48.312715502000103 ], [ -123.547509488999978, 48.312949108000041 ], [ -123.547512712999918, 48.313407697000109 ], [ -123.547248592999921, 48.313913298 ], [ -123.546888096999979, 48.314166804000088 ], [ -123.546092710999943, 48.314277904000058 ], [ -123.545584286999912, 48.314524298000066 ], [ -123.545327880999977, 48.314534197000086 ], [ -123.545002795999949, 48.314427392000027 ], [ -123.544491301999926, 48.314474389000111 ], [ -123.54423628399995, 48.314628194000065 ], [ -123.543891204999966, 48.315187897000079 ], [ -123.543109710999929, 48.315227800000095 ], [ -123.542716516999974, 48.315058302000054 ], [ -123.542652657999923, 48.315052757000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.963296465154528", "sL_AssetLoss": "3866.93", "sL_BldgLoss": "3725", "sL_StrLoss": "3075", "sL_NStrLoss": "650", "sL_ContLoss": "141.93", "geom_point": "0101000020E610000021F7423B86E55EC0A70107DD73344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.583740655999932, 48.412041386000091 ], [ -123.583792770999963, 48.411020910000097 ], [ -123.583322700999986, 48.411010177000037 ], [ -123.583506708999948, 48.407407372000094 ], [ -123.584038916999958, 48.407419524000048 ], [ -123.588894770999971, 48.407530266000037 ], [ -123.58884277099996, 48.408550751000107 ], [ -123.589312815999904, 48.408561459000069 ], [ -123.589129245999942, 48.412164266000019 ], [ -123.585725926999956, 48.412086690000066 ], [ -123.583740655999932, 48.412041386000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18106834", "BldgCostT": "11013334", "sL_LossRatio": "0.980995993797223", "sL_AssetLoss": "6874.34", "sL_BldgLoss": "6743.7", "sL_StrLoss": "5974.78", "sL_NStrLoss": "768.92", "sL_ContLoss": "130.64", "geom_point": "0101000020E610000070F16C669FE55EC0B807BEF5A32A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.585601613, 48.339526392000082 ], [ -123.585604665999981, 48.339466430000058 ], [ -123.585509085999902, 48.339464247000052 ], [ -123.585553658999956, 48.338589380000073 ], [ -123.584409098999984, 48.338563220000047 ], [ -123.584578737999962, 48.335234774000163 ], [ -123.582808437999944, 48.335194288000046 ], [ -123.582992189999942, 48.331591019000079 ], [ -123.584950546999963, 48.331635805000055 ], [ -123.585043974, 48.329802082000121 ], [ -123.585098965999975, 48.328722662000082 ], [ -123.587414791999947, 48.328775576000119 ], [ -123.58750656699999, 48.32697231500002 ], [ -123.588634800999912, 48.326998075000084 ], [ -123.588638423999924, 48.326926843000059 ], [ -123.589801905999963, 48.326953396000164 ], [ -123.589868945999967, 48.325634769000118 ], [ -123.59338120299995, 48.325714848000061 ], [ -123.594634317999947, 48.325743390000035 ], [ -123.594635215999944, 48.325805394000042 ], [ -123.594934420999962, 48.326019098000046 ], [ -123.595183505999941, 48.326611500000091 ], [ -123.595186295999937, 48.326800900000102 ], [ -123.594984310999962, 48.326919192000041 ], [ -123.594881621999946, 48.327252405000095 ], [ -123.594624882999952, 48.327299392000057 ], [ -123.594352394999987, 48.327065792000027 ], [ -123.594258705999977, 48.327075812000054 ], [ -123.593951781999948, 48.327391992000081 ], [ -123.593600398999953, 48.327366405000106 ], [ -123.593159598999989, 48.327746592000082 ], [ -123.592526476999964, 48.327777996000044 ], [ -123.59191902000002, 48.327699599000056 ], [ -123.591730691999885, 48.327790798000137 ], [ -123.59163828599999, 48.32805139500006 ], [ -123.59215330399999, 48.328229412000077 ], [ -123.592400001999977, 48.328551292000029 ], [ -123.592777998999949, 48.328487203000108 ], [ -123.593025202, 48.328863209000097 ], [ -123.592958718999967, 48.329061196000069 ], [ -123.59270239899999, 48.329027012000012 ], [ -123.592461297999961, 48.329109599000112 ], [ -123.592574612999954, 48.329549707000083 ], [ -123.592347724999954, 48.329770824000022 ], [ -123.592026699999948, 48.330083708000075 ], [ -123.592056300999971, 48.330209088000061 ], [ -123.592203297999916, 48.330261800000073 ], [ -123.592499799, 48.330062413000029 ], [ -123.592688390999982, 48.330043897000046 ], [ -123.592679012999952, 48.330448294000099 ], [ -123.592820300999932, 48.330629705000071 ], [ -123.592706133999954, 48.330627105000069 ], [ -123.59270251599996, 48.33069833600009 ], [ -123.590386588999976, 48.330645538000091 ], [ -123.59029491699998, 48.332448790000079 ], [ -123.588336520999974, 48.332404103000044 ], [ -123.588202274999986, 48.335042427000154 ], [ -123.589972574999976, 48.335082822000082 ], [ -123.58995577499995, 48.335413214000098 ], [ -123.589930512999956, 48.335410306000021 ], [ -123.589540105999959, 48.335502885000054 ], [ -123.589112705000019, 48.335918689000081 ], [ -123.589157590999932, 48.336333201000102 ], [ -123.589653095999921, 48.337193394000067 ], [ -123.58967583499998, 48.337603024000039 ], [ -123.589739594999912, 48.338750107000031 ], [ -123.589117294999951, 48.339932207000032 ], [ -123.588689092999928, 48.340221289000056 ], [ -123.587964307999968, 48.340486183000024 ], [ -123.587522102999941, 48.340857906000075 ], [ -123.587578584999974, 48.341072896000121 ], [ -123.587729086999957, 48.341152692000044 ], [ -123.588391300999987, 48.341185508000088 ], [ -123.588608600999947, 48.34133790300011 ], [ -123.588457508999923, 48.342256504000034 ], [ -123.588525798999981, 48.342363291000076 ], [ -123.588700690999985, 48.342390312000092 ], [ -123.588693509999985, 48.342423002 ], [ -123.586351377999961, 48.341674095000094 ], [ -123.584363182999951, 48.341038296000107 ], [ -123.584441598999916, 48.339499880000034 ], [ -123.585601613, 48.339526392000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "0.985432060329824", "sL_AssetLoss": "2062.131", "sL_BldgLoss": "2032.09", "sL_StrLoss": "1798.3", "sL_NStrLoss": "233.79", "sL_ContLoss": "30.041", "geom_point": "0101000020E6100000A3A5B8CBFAE25EC09CA45C8E95294840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.544095708999976, 48.328188101000137 ], [ -123.544270379999915, 48.327970196000138 ], [ -123.544215607999945, 48.327917509000017 ], [ -123.543753293999899, 48.327649813000079 ], [ -123.543619211999953, 48.327622706000092 ], [ -123.543551393999905, 48.327749506000025 ], [ -123.54347071399998, 48.327740898000108 ], [ -123.54284609799997, 48.327231108000049 ], [ -123.542561696999925, 48.327259494000039 ], [ -123.542507197999953, 48.327151289000078 ], [ -123.542654011999957, 48.326926309000065 ], [ -123.54231592799999, 48.326656041000028 ], [ -123.542399815999929, 48.325037933000075 ], [ -123.54242537, 48.324545 ], [ -123.544403872000018, 48.324591014000063 ], [ -123.544540429999984, 48.321954543000111 ], [ -123.545403773999951, 48.321974611000044 ], [ -123.545407897999922, 48.321894965000084 ], [ -123.546284728999964, 48.321915338000039 ], [ -123.550786144999961, 48.322019816000108 ], [ -123.550744216999973, 48.322831432000086 ], [ -123.55059998199999, 48.325623088000022 ], [ -123.549736568999933, 48.325603063000109 ], [ -123.549732452999976, 48.325682709000098 ], [ -123.547753900999936, 48.325636794000026 ], [ -123.547660488999966, 48.327442491000028 ], [ -123.547617510999885, 48.328273252000074 ], [ -123.544729698999944, 48.328206171000083 ], [ -123.544730010999942, 48.328202403000034 ], [ -123.544446598999969, 48.328141087000105 ], [ -123.544353199999975, 48.328197420000038 ], [ -123.544098766, 48.328191505000078 ], [ -123.544095708999976, 48.328188101000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.969191344093505", "sL_AssetLoss": "4382.21", "sL_BldgLoss": "4247.2", "sL_StrLoss": "3680", "sL_NStrLoss": "567.2", "sL_ContLoss": "135.01", "geom_point": "0101000020E61000000B01E930D9E85EC0F29C67CB3D354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.634405624999943, 48.418752898000058 ], [ -123.634428621999987, 48.418293023000047 ], [ -123.63432454899997, 48.418290697000067 ], [ -123.634504702999948, 48.414687849000096 ], [ -123.636871171999957, 48.414740709000021 ], [ -123.636954494999884, 48.413072504000077 ], [ -123.64234333899995, 48.413192677000097 ], [ -123.642163786999959, 48.416795547000113 ], [ -123.639901277999925, 48.416745126000116 ], [ -123.63979511, 48.418873199000103 ], [ -123.634405624999943, 48.418752898000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.98436190033229", "sL_AssetLoss": "1861.927", "sL_BldgLoss": "1832.81", "sL_StrLoss": "1692", "sL_NStrLoss": "140.81", "sL_ContLoss": "29.117", "geom_point": "0101000020E6100000A967A4526AE35EC0F54C8AEA882A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.55319179899999, 48.333416393000014 ], [ -123.552814907999974, 48.333346599000016 ], [ -123.552613805999954, 48.333598710000032 ], [ -123.552520091999952, 48.333608688000091 ], [ -123.55239778399999, 48.333491896000027 ], [ -123.552006002999974, 48.333557403000079 ], [ -123.551893996999951, 48.333206999000055 ], [ -123.551585475999957, 48.333360894000052 ], [ -123.55131520099999, 48.333236911000022 ], [ -123.550841284999976, 48.333157197000048 ], [ -123.550812601999922, 48.333023285000131 ], [ -123.550961581999942, 48.332940698000044 ], [ -123.551038702999946, 48.332625999000086 ], [ -123.55142839, 48.332560407000081 ], [ -123.551536778999917, 48.332452194000076 ], [ -123.551519397999982, 48.332174508000094 ], [ -123.551193091999949, 48.331977906000091 ], [ -123.551273285999955, 48.331797099000028 ], [ -123.551190197, 48.331690301000023 ], [ -123.550907183999925, 48.331708805000098 ], [ -123.550369694000011, 48.331928087000101 ], [ -123.550045914999885, 48.331965106000034 ], [ -123.549923512999982, 48.331866904000073 ], [ -123.549894604999906, 48.331641798000049 ], [ -123.549704385999959, 48.331516499000031 ], [ -123.549260915, 48.331644705000052 ], [ -123.549250311999955, 48.331915293000037 ], [ -123.549157184999984, 48.33198649000007 ], [ -123.54906329899994, 48.331997520000101 ], [ -123.549184883999956, 48.329646056000087 ], [ -123.549189830000017, 48.329550382000043 ], [ -123.552897292999958, 48.32963632900006 ], [ -123.554568955999954, 48.329675038000111 ], [ -123.554474603999935, 48.331503880000142 ], [ -123.55474505799999, 48.33151014000007 ], [ -123.554713287999945, 48.332125967000138 ], [ -123.554822977999962, 48.332128507000014 ], [ -123.556944315999914, 48.3321775840001 ], [ -123.556860535999974, 48.333802998000117 ], [ -123.556777560999947, 48.33541265500002 ], [ -123.556758582999976, 48.335780803000077 ], [ -123.554884657999963, 48.335737453000093 ], [ -123.554202873999941, 48.335721672000069 ], [ -123.554391282999987, 48.33566809900006 ], [ -123.554252786999925, 48.335480101000023 ], [ -123.554347797999981, 48.335471490000025 ], [ -123.55435909299996, 48.335327713000027 ], [ -123.554276894999987, 48.335200894000138 ], [ -123.554397176999942, 48.335119696000092 ], [ -123.55388179599997, 48.334861987000117 ], [ -123.553703282999962, 48.334555797000043 ], [ -123.553213701999951, 48.334099986000091 ], [ -123.55319179899999, 48.333416393000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.965098957224942", "sL_AssetLoss": "939.8", "sL_BldgLoss": "907", "sL_StrLoss": "751", "sL_NStrLoss": "156", "sL_ContLoss": "32.8", "geom_point": "0101000020E6100000916456EF30E65EC033C1F4E6852F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.596480792999941, 48.370168606000071 ], [ -123.597695954999949, 48.370162299000121 ], [ -123.597711745999945, 48.371511715000096 ], [ -123.59730668199991, 48.37151381900005 ], [ -123.597312994999967, 48.372053586000021 ], [ -123.596907927999965, 48.372055689000099 ], [ -123.59691108199999, 48.372325572000101 ], [ -123.595695869999986, 48.372331871000071 ], [ -123.595683278999957, 48.371252337000072 ], [ -123.59608834, 48.371250239000076 ], [ -123.596082039999899, 48.370710471000073 ], [ -123.596487097999955, 48.370708372000117 ], [ -123.596480792999941, 48.370168606000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.996117668516637", "sL_AssetLoss": "383.79", "sL_BldgLoss": "382.3", "sL_StrLoss": "367", "sL_NStrLoss": "15.3", "sL_ContLoss": "1.49", "geom_point": "0101000020E610000044A1A7F9D1E45EC0ECB6D1216C2C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.575778211999975, 48.347591598000051 ], [ -123.572997498999939, 48.346472106000078 ], [ -123.572720646999926, 48.346475770000062 ], [ -123.572715297999949, 48.345998348000144 ], [ -123.573929886999949, 48.345992294000048 ], [ -123.573932917999912, 48.346262179000057 ], [ -123.574742648, 48.346258137000056 ], [ -123.574745683999964, 48.346528022000086 ], [ -123.575555417999979, 48.346523974000078 ], [ -123.575558457999961, 48.346793860000098 ], [ -123.57596332599999, 48.346791833000026 ], [ -123.575966366999978, 48.347061719000102 ], [ -123.576776110999987, 48.347057662000054 ], [ -123.576779156999947, 48.347327547000106 ], [ -123.577184028999923, 48.347325516000048 ], [ -123.577187076999977, 48.347595402000053 ], [ -123.577591953999956, 48.347593369000045 ], [ -123.577602251999906, 48.348504726000087 ], [ -123.57729699199993, 48.348322209000067 ], [ -123.575778211999975, 48.347591598000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.956030485942207", "sL_AssetLoss": "5172.22", "sL_BldgLoss": "4944.8", "sL_StrLoss": "4045", "sL_NStrLoss": "899.8", "sL_ContLoss": "227.42", "geom_point": "0101000020E610000035E4656E7AE55EC0FB9DE4160C354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.58280953299996, 48.416952347000084 ], [ -123.582874537999928, 48.415680067000046 ], [ -123.581734270999959, 48.415654022000119 ], [ -123.581918416999955, 48.412051248000118 ], [ -123.585722924999956, 48.412138100000043 ], [ -123.587307003999925, 48.412174222000033 ], [ -123.587306242999929, 48.412189125000097 ], [ -123.589493625999978, 48.41223896400011 ], [ -123.589310054999956, 48.415841751000102 ], [ -123.588262779999965, 48.415817894000099 ], [ -123.588198679999934, 48.417075274000027 ], [ -123.583342310999939, 48.416964512000099 ], [ -123.58280953299996, 48.416952347000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20011667", "BldgCostT": "13591667", "sL_LossRatio": "0.81154163570367", "sL_AssetLoss": "22392.32", "sL_BldgLoss": "18172.3", "sL_StrLoss": "14324", "sL_NStrLoss": "3848.3", "sL_ContLoss": "4220.02", "geom_point": "0101000020E6100000BAC903EC7EE55EC0EF424A1E952D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.577702796999972, 48.360542297000073 ], [ -123.57735649699994, 48.360518208000094 ], [ -123.576994318999937, 48.360539593000162 ], [ -123.576593183999989, 48.360638611000077 ], [ -123.575875094999915, 48.360901696000091 ], [ -123.575716084999954, 48.360928802000082 ], [ -123.5755443799999, 48.360913996000058 ], [ -123.575500322999943, 48.360898230000025 ], [ -123.575229477999954, 48.360801295000023 ], [ -123.576399821, 48.359651201000062 ], [ -123.576938012999946, 48.358742807000084 ], [ -123.577121344999966, 48.358580285000087 ], [ -123.577295089999922, 48.358426288000025 ], [ -123.5780035, 48.357665202000121 ], [ -123.578290201999934, 48.357459799000061 ], [ -123.579369613999972, 48.356979505000055 ], [ -123.57996810799996, 48.356603611 ], [ -123.58018090799996, 48.356426853000116 ], [ -123.580235404999911, 48.35638160000007 ], [ -123.58035480499997, 48.356206603000075 ], [ -123.58040510099994, 48.3560129990001 ], [ -123.58040061399997, 48.355783797000079 ], [ -123.58031910599999, 48.355533902000033 ], [ -123.580320075999936, 48.355368730000095 ], [ -123.580320495, 48.355295011000081 ], [ -123.580504487, 48.354820222000079 ], [ -123.580557990999935, 48.354682147000069 ], [ -123.582507962999955, 48.354726763000052 ], [ -123.582513084999931, 48.354626378000091 ], [ -123.58147785099996, 48.354602696000036 ], [ -123.581532186999979, 48.353538314000026 ], [ -123.581679703999967, 48.353289809000067 ], [ -123.581822494, 48.352682510000108 ], [ -123.58235557899998, 48.351341895000054 ], [ -123.582175766999967, 48.351203410000089 ], [ -123.581207391, 48.35045754600003 ], [ -123.581263683999964, 48.349354834000067 ], [ -123.58190556699995, 48.349369522000117 ], [ -123.58203329, 48.346866745000078 ], [ -123.582959204999952, 48.346887925000047 ], [ -123.583022218999986, 48.345652564000069 ], [ -123.584335691999939, 48.345682597000057 ], [ -123.586133181999941, 48.34636993200008 ], [ -123.588305616999961, 48.34704699499999 ], [ -123.588338079999943, 48.347056150000071 ], [ -123.588219864999971, 48.349378687000112 ], [ -123.587293898999974, 48.349357553000054 ], [ -123.587230990999956, 48.350592908000039 ], [ -123.586589089999975, 48.350578252000055 ], [ -123.58656192399998, 48.351111555000081 ], [ -123.58704342399993, 48.351122548000021 ], [ -123.587020746999954, 48.35156779200004 ], [ -123.589711155, 48.351629179000099 ], [ -123.589571751, 48.354369243000065 ], [ -123.592185828999931, 48.354428822000074 ], [ -123.59201083, 48.357871766000116 ], [ -123.59244372199997, 48.357881626000115 ], [ -123.592373405999936, 48.359265137000158 ], [ -123.596578356999942, 48.359360822000042 ], [ -123.596395529999967, 48.362963943000111 ], [ -123.591012516999953, 48.362841422000074 ], [ -123.591082877999952, 48.361457920000127 ], [ -123.58687775199995, 48.361362018000129 ], [ -123.587053136999899, 48.35791910300005 ], [ -123.586620244999921, 48.357909221000043 ], [ -123.586657584999969, 48.357176276000075 ], [ -123.583559394999924, 48.357105498000074 ], [ -123.583496117, 48.358345973000056 ], [ -123.584745632999926, 48.358374529000038 ], [ -123.584561909999962, 48.361977637000038 ], [ -123.581818557999938, 48.361914922000025 ], [ -123.58173438599999, 48.363563601000067 ], [ -123.578478004999965, 48.363489066000056 ], [ -123.578448602999956, 48.363268493000106 ], [ -123.5784944, 48.363085598000104 ], [ -123.578679797999939, 48.362831888000073 ], [ -123.578963307999942, 48.362609293000091 ], [ -123.57908790399992, 48.362438108000049 ], [ -123.579098418999976, 48.362374759000062 ], [ -123.579120988999989, 48.362238694000062 ], [ -123.579045802999971, 48.362049383000084 ], [ -123.578795409999955, 48.361834402000056 ], [ -123.578688001999978, 48.361669593000137 ], [ -123.578445400999939, 48.361039094 ], [ -123.578229802999957, 48.360775305000082 ], [ -123.577974805999958, 48.360625205000055 ], [ -123.577785361999958, 48.36056746500001 ], [ -123.577702796999972, 48.360542297000073 ] ], [ [ -123.579301403, 48.35946018300006 ], [ -123.579313277999944, 48.359227795000038 ], [ -123.579118403999985, 48.359223333000052 ], [ -123.579111054999956, 48.359367143000071 ], [ -123.579173796999939, 48.359368580000137 ], [ -123.579169271, 48.359457157000087 ], [ -123.579301403, 48.35946018300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7776833", "BldgCostT": "5363333", "sL_LossRatio": "0.972823806722062", "sL_AssetLoss": "8175.17", "sL_BldgLoss": "7953", "sL_StrLoss": "6892.4", "sL_NStrLoss": "1060.6", "sL_ContLoss": "222.17", "geom_point": "0101000020E61000002F23ED2D42E45EC098744AF6BE354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.565295751999884, 48.423014690000102 ], [ -123.565385261999921, 48.421275648000062 ], [ -123.563280463999916, 48.421227220000077 ], [ -123.563316025999953, 48.420536870000099 ], [ -123.558221824999976, 48.420419489000103 ], [ -123.558407779999925, 48.416816785000108 ], [ -123.563796846999978, 48.416940954000111 ], [ -123.563761295999939, 48.417631308000068 ], [ -123.567483501999973, 48.41771691100007 ], [ -123.567528118999959, 48.416849210000095 ], [ -123.572917214999975, 48.416972915000073 ], [ -123.57273236399999, 48.42057564200006 ], [ -123.568714646000018, 48.420483444000105 ], [ -123.568698610999931, 48.420795397000049 ], [ -123.572121172999971, 48.420873947000061 ], [ -123.571938091999968, 48.42444068500005 ], [ -123.571936245999893, 48.424476650000045 ], [ -123.57187493, 48.424475243000124 ], [ -123.571712105999922, 48.424471509000071 ], [ -123.571706491999976, 48.424580870000106 ], [ -123.571694081999965, 48.424822573 ], [ -123.571500478999937, 48.424726115000112 ], [ -123.566146144, 48.423257606000035 ], [ -123.565295751999884, 48.423014690000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10922084", "BldgCostT": "6058334", "sL_LossRatio": "0.949578256794752", "sL_AssetLoss": "3201", "sL_BldgLoss": "3039.6", "sL_StrLoss": "2474.9", "sL_NStrLoss": "564.7", "sL_ContLoss": "161.4", "geom_point": "0101000020E610000002EAF627ABE75EC0458AB784B2334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.617218378999951, 48.402023384000046 ], [ -123.622605914999951, 48.402144563000014 ], [ -123.622424903999928, 48.405747468000115 ], [ -123.617036957999971, 48.405626281000053 ], [ -123.617218378999951, 48.402023384000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537501", "BldgCostT": "1750001", "sL_LossRatio": "0.954713503669654", "sL_AssetLoss": "3646.12", "sL_BldgLoss": "3481", "sL_StrLoss": "2950", "sL_NStrLoss": "531", "sL_ContLoss": "165.12", "geom_point": "0101000020E6100000B6941C4510E65EC06F714342CA2E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.592142971999948, 48.363684646000067 ], [ -123.597526083999966, 48.36380710900012 ], [ -123.597343311999964, 48.367410206000095 ], [ -123.59195979, 48.367287734000087 ], [ -123.592142971999948, 48.363684646000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.997989676718283", "sL_AssetLoss": "368.1", "sL_BldgLoss": "367.36", "sL_StrLoss": "357", "sL_NStrLoss": "10.36", "sL_ContLoss": "0.74", "geom_point": "0101000020E61000001E703C23BAE25EC0D53B81551A294840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.541355817999928, 48.320319397000119 ], [ -123.54096338699999, 48.320239610000073 ], [ -123.540681398999965, 48.320340692000123 ], [ -123.540437690999923, 48.32023389700003 ], [ -123.540448004999973, 48.320044503000062 ], [ -123.54082667499992, 48.320015995000048 ], [ -123.541348894999899, 48.319716903000021 ], [ -123.541903020999953, 48.31973259800003 ], [ -123.541968591999975, 48.319624409000049 ], [ -123.541480514999989, 48.319419292000056 ], [ -123.542071901999989, 48.319272601000051 ], [ -123.54212440699996, 48.319238283000111 ], [ -123.54423072499992, 48.319287280000019 ], [ -123.544218728999965, 48.319518904000049 ], [ -123.544115490999928, 48.321511969000063 ], [ -123.544044076, 48.322890557000072 ], [ -123.541848594999976, 48.322839485000017 ], [ -123.540801586999947, 48.32281511300004 ], [ -123.540801516999963, 48.322804604000069 ], [ -123.540613006999976, 48.322779004000054 ], [ -123.540638694, 48.322643713000048 ], [ -123.540919607999967, 48.322471388000068 ], [ -123.540971610999975, 48.3223460090001 ], [ -123.540738515999948, 48.321851800000054 ], [ -123.541004081999944, 48.321581199000093 ], [ -123.541553595999972, 48.321272214000047 ], [ -123.54104088699998, 48.321112598000056 ], [ -123.541480716999942, 48.320723794000109 ], [ -123.541355817999928, 48.320319397000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.957743940895576", "sL_AssetLoss": "2219.8", "sL_BldgLoss": "2126", "sL_StrLoss": "1890", "sL_NStrLoss": "236", "sL_ContLoss": "93.8", "geom_point": "0101000020E6100000D410F2CD38E55EC0DD169770092D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.581532186999979, 48.353538314000026 ], [ -123.581561247999943, 48.352969009000113 ], [ -123.581079731999935, 48.352957991000025 ], [ -123.581207391, 48.35045754600003 ], [ -123.582175766999967, 48.351203410000089 ], [ -123.58235557899998, 48.351341895000054 ], [ -123.581822494, 48.352682510000108 ], [ -123.581679703999967, 48.353289809000067 ], [ -123.581532186999979, 48.353538314000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8368917", "BldgCostT": "5771667", "sL_LossRatio": "0.960491543340381", "sL_AssetLoss": "11352", "sL_BldgLoss": "10903.5", "sL_StrLoss": "9110.9", "sL_NStrLoss": "1792.6", "sL_ContLoss": "448.5", "geom_point": "0101000020E61000008D28F57E46E35EC0A16B15B3142C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.548091865999965, 48.347105440000099 ], [ -123.548125691999985, 48.346451736000112 ], [ -123.547534883999958, 48.346438026000101 ], [ -123.547560945999976, 48.34593446800006 ], [ -123.546830287999953, 48.345917509000053 ], [ -123.547016816999971, 48.342314369000064 ], [ -123.549877942999927, 48.34238074700005 ], [ -123.549923446999941, 48.341500639000103 ], [ -123.555082881, 48.341620141000085 ], [ -123.554847287999948, 48.34175799000009 ], [ -123.554879101, 48.342198096000111 ], [ -123.555180215999911, 48.342492903000114 ], [ -123.555248717999959, 48.342695459000083 ], [ -123.555118033999932, 48.345228414000118 ], [ -123.554961454999926, 48.34522479100012 ], [ -123.554888102999911, 48.346646315000058 ], [ -123.553504777999947, 48.346614301000116 ], [ -123.553472979999952, 48.347230148000072 ], [ -123.548091865999965, 48.347105440000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.930302024560239", "sL_AssetLoss": "3013", "sL_BldgLoss": "2803", "sL_StrLoss": "2090", "sL_NStrLoss": "713", "sL_ContLoss": "210", "geom_point": "0101000020E610000092F9F496BAE45EC04E93DFC3A12C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.572243481999948, 48.349085498000051 ], [ -123.571713295999928, 48.348665394000101 ], [ -123.571576188, 48.348423293000117 ], [ -123.571570489999885, 48.34804448900006 ], [ -123.571523201999966, 48.348016317000024 ], [ -123.57151977700002, 48.347710056000111 ], [ -123.571649577999892, 48.347711197000052 ], [ -123.571929792999981, 48.347459111000035 ], [ -123.572321494, 48.347456289000057 ], [ -123.572508601999957, 48.347293889000078 ], [ -123.572602087999982, 48.347302394000032 ], [ -123.572889778999951, 48.347580194000066 ], [ -123.573907408999972, 48.348204007000056 ], [ -123.575096587999951, 48.348369195000032 ], [ -123.575223896999944, 48.34873799300005 ], [ -123.575696889999961, 48.348753693000049 ], [ -123.575735906999952, 48.348654009000036 ], [ -123.575923811999971, 48.348644007000061 ], [ -123.576357400999953, 48.348705312000071 ], [ -123.577609603999932, 48.349155297000053 ], [ -123.577610251999943, 48.349212682000086 ], [ -123.577205363999937, 48.349214714000027 ], [ -123.577208411999919, 48.3494846010001 ], [ -123.574779065999934, 48.349496764000058 ], [ -123.574776031999974, 48.349226878000145 ], [ -123.574371141999933, 48.349228902000071 ], [ -123.574368109999966, 48.348959016000094 ], [ -123.57327038899993, 48.348964491000061 ], [ -123.573761438999938, 48.349604960000079 ], [ -123.572944485999983, 48.349740683000086 ], [ -123.572898193999919, 48.349666603000109 ], [ -123.57251942299996, 48.349453005 ], [ -123.572243481999948, 48.349085498000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "0.96963550429828", "sL_AssetLoss": "7720.53", "sL_BldgLoss": "7486.1", "sL_StrLoss": "6571", "sL_NStrLoss": "915.1", "sL_ContLoss": "234.43", "geom_point": "0101000020E610000068FEC15518E45EC08971C47B8A2C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.563987087999934, 48.349836749000048 ], [ -123.563988592999962, 48.349807477000112 ], [ -123.560775274999983, 48.349733365000091 ], [ -123.56078569, 48.349531087000095 ], [ -123.56080552499999, 48.349145781000082 ], [ -123.560661806999946, 48.349142464000089 ], [ -123.56069942499991, 48.348411789000117 ], [ -123.559865820999988, 48.348392545000124 ], [ -123.560051367999918, 48.344789398000067 ], [ -123.560271811999883, 48.344794487000094 ], [ -123.561416, 48.345107700000021 ], [ -123.562231307, 48.345490792000113 ], [ -123.563509800999924, 48.346375299000066 ], [ -123.563750213999953, 48.346275607000052 ], [ -123.563980294999936, 48.346274196000088 ], [ -123.56432089899999, 48.346541907000052 ], [ -123.564889498999932, 48.346782587000114 ], [ -123.565617599999911, 48.346607404000075 ], [ -123.565941118999916, 48.346651601000069 ], [ -123.56651210499993, 48.347009111000041 ], [ -123.566990087999926, 48.347591590000071 ], [ -123.567380617999987, 48.347517494 ], [ -123.567450806999915, 48.347686998000043 ], [ -123.56785306099999, 48.347801182000083 ], [ -123.567952482999942, 48.347829403000112 ], [ -123.568073702, 48.347944797000082 ], [ -123.568495394999928, 48.348095705000077 ], [ -123.568778909999978, 48.34813130100013 ], [ -123.568981394, 48.348265212000115 ], [ -123.569347108999963, 48.348299406000137 ], [ -123.569456997999922, 48.348236594000099 ], [ -123.569368555, 48.349960648000078 ], [ -123.563987087999934, 48.349836749000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126475833", "BldgCostT": "85488333", "sL_LossRatio": "0.916131125924389", "sL_AssetLoss": "243437.75", "sL_BldgLoss": "223020.9", "sL_StrLoss": "176697.5", "sL_NStrLoss": "46323.4", "sL_ContLoss": "20416.85", "geom_point": "0101000020E61000005662E0B106E35EC07E3B15B26B2E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.524077716999969, 48.379960078000117 ], [ -123.523993597999919, 48.37993119300009 ], [ -123.522847630999948, 48.379988887000124 ], [ -123.51989101099997, 48.379594905000012 ], [ -123.519929198999975, 48.379535101000073 ], [ -123.520587588999959, 48.379127791000037 ], [ -123.52075008199995, 48.378943443000075 ], [ -123.522422375999923, 48.378982634000117 ], [ -123.522456704999968, 48.378326598000079 ], [ -123.521142084999923, 48.378295792000053 ], [ -123.521728599999904, 48.377125385000042 ], [ -123.522500407999985, 48.376014495000042 ], [ -123.523527711000028, 48.374822393 ], [ -123.524230480999975, 48.3735876020001 ], [ -123.524511198999974, 48.373280014000045 ], [ -123.52513989099999, 48.37283569100002 ], [ -123.52647138699993, 48.372325800000091 ], [ -123.527415192999939, 48.372079401000043 ], [ -123.528019000999976, 48.371761784000114 ], [ -123.528219304999979, 48.371518294000126 ], [ -123.52962601199998, 48.370395991000144 ], [ -123.529776224999978, 48.370218312000098 ], [ -123.530730541999958, 48.370240602000123 ], [ -123.53074434, 48.36997595800004 ], [ -123.532301464999989, 48.370012309000074 ], [ -123.53238946799992, 48.368323393000068 ], [ -123.53252545699992, 48.368326567000068 ], [ -123.532538680999949, 48.368072760000068 ], [ -123.532024243999956, 48.368060754000155 ], [ -123.532096496999898, 48.366674203000073 ], [ -123.532112400999907, 48.36665028400008 ], [ -123.532269820999929, 48.36638144100008 ], [ -123.533380200999915, 48.364485039000037 ], [ -123.533583544999942, 48.364489782000099 ], [ -123.533603668999959, 48.364103361000055 ], [ -123.534034502999987, 48.363367485000047 ], [ -123.534764303999964, 48.362094289000034 ], [ -123.535014008999951, 48.361454808000126 ], [ -123.535157307999967, 48.361035273000084 ], [ -123.538703236999979, 48.361117889000106 ], [ -123.538762817999952, 48.359971218000055 ], [ -123.537878734999936, 48.359950632000071 ], [ -123.537933478999932, 48.35889741400009 ], [ -123.53915330099997, 48.358412688000094 ], [ -123.54023400899996, 48.358389896000084 ], [ -123.540513388999926, 48.358055205 ], [ -123.54081951199997, 48.357630802000081 ], [ -123.541384418999911, 48.357548200000053 ], [ -123.541465584999955, 48.357412895000088 ], [ -123.54303248599993, 48.356262101000013 ], [ -123.543811713999958, 48.356007205000068 ], [ -123.543823284, 48.355782203000039 ], [ -123.544127594999907, 48.355276604000032 ], [ -123.54451651, 48.353618795000123 ], [ -123.544926708999952, 48.351620587000106 ], [ -123.545010009999913, 48.350639401000123 ], [ -123.54359960799998, 48.350042589000068 ], [ -123.543546691999921, 48.350033700000054 ], [ -123.543652438999985, 48.347994005000039 ], [ -123.544225260999923, 48.348007317000089 ], [ -123.54425454499993, 48.347442318000105 ], [ -123.544919623999974, 48.347457771000052 ], [ -123.544934832999957, 48.347164233000107 ], [ -123.550315946999973, 48.347289103000072 ], [ -123.550265521999961, 48.348264395000058 ], [ -123.552309532999914, 48.348311755000076 ], [ -123.552303748999961, 48.348423742000065 ], [ -123.553227406999923, 48.348445130000101 ], [ -123.5531941039999, 48.349090041000103 ], [ -123.555053980999986, 48.34913308400013 ], [ -123.554891865999977, 48.352274480000041 ], [ -123.554868036, 48.352736196000087 ], [ -123.552942888999951, 48.352691643000156 ], [ -123.552921678999923, 48.353102242 ], [ -123.552053880999907, 48.353082147000059 ], [ -123.552008901999969, 48.353952653000135 ], [ -123.556901402999969, 48.354065850000012 ], [ -123.556898127999915, 48.354129351000061 ], [ -123.5590598299999, 48.354179293000122 ], [ -123.559014045999945, 48.355067865000066 ], [ -123.559136578999968, 48.355070695000052 ], [ -123.55906894, 48.356383435000033 ], [ -123.561971656999958, 48.356450424000059 ], [ -123.561967311999965, 48.356534837000062 ], [ -123.564358475999938, 48.356589961000047 ], [ -123.564314044999946, 48.357454122000064 ], [ -123.564766814999956, 48.357464554000067 ], [ -123.56474538799992, 48.357881350000092 ], [ -123.567170553999958, 48.35793719100009 ], [ -123.567126004, 48.358804622 ], [ -123.569739012999932, 48.358864726 ], [ -123.56971407399999, 48.359350830000054 ], [ -123.570552712000037, 48.359370107000053 ], [ -123.570502797999893, 48.360343321000101 ], [ -123.570990460999965, 48.360354527000077 ], [ -123.571065762999964, 48.358886013000102 ], [ -123.573743666999988, 48.358947509000082 ], [ -123.573878793999967, 48.356309174000089 ], [ -123.576459974999949, 48.356368385000067 ], [ -123.576501532999927, 48.355556036000088 ], [ -123.577824789000019, 48.355586367000107 ], [ -123.577846400999988, 48.355163668000095 ], [ -123.578269555999938, 48.355173363000034 ], [ -123.578297311999933, 48.354630377000113 ], [ -123.580557990999935, 48.354682147000069 ], [ -123.580504487, 48.354820222000079 ], [ -123.580320495, 48.355295011000081 ], [ -123.580320075999936, 48.355368730000095 ], [ -123.58031910599999, 48.355533902000033 ], [ -123.58040061399997, 48.355783797000079 ], [ -123.58040510099994, 48.3560129990001 ], [ -123.58035480499997, 48.356206603000075 ], [ -123.580235404999911, 48.35638160000007 ], [ -123.58018090799996, 48.356426853000116 ], [ -123.57996810799996, 48.356603611 ], [ -123.579369613999972, 48.356979505000055 ], [ -123.578290201999934, 48.357459799000061 ], [ -123.5780035, 48.357665202000121 ], [ -123.577295089999922, 48.358426288000025 ], [ -123.577121344999966, 48.358580285000087 ], [ -123.576938012999946, 48.358742807000084 ], [ -123.576399821, 48.359651201000062 ], [ -123.575229477999954, 48.360801295000023 ], [ -123.57474199399999, 48.361191396000045 ], [ -123.573244313999936, 48.361892006000026 ], [ -123.57114432499999, 48.362469251000107 ], [ -123.570900715999983, 48.362536194000057 ], [ -123.568070012999939, 48.362482910000047 ], [ -123.565955714999973, 48.362988806000082 ], [ -123.565284004999938, 48.363106803000058 ], [ -123.565148656999952, 48.363118273000069 ], [ -123.561737199, 48.363407497000082 ], [ -123.561264184999956, 48.363645497000029 ], [ -123.560689977, 48.363857274000104 ], [ -123.560470290999916, 48.363938294000029 ], [ -123.560151290999926, 48.364011204000064 ], [ -123.559812720999915, 48.364019603000038 ], [ -123.558517997999985, 48.363728189000021 ], [ -123.55811479099998, 48.363709803000098 ], [ -123.557783329999907, 48.363789702000084 ], [ -123.556429318999989, 48.364309400000089 ], [ -123.555818113999962, 48.364743512000068 ], [ -123.555736894999953, 48.364802887000039 ], [ -123.555590997999929, 48.364906774000083 ], [ -123.555016019999954, 48.365316248000084 ], [ -123.552836948999982, 48.366867880000044 ], [ -123.552020104999926, 48.367449500000177 ], [ -123.550828792999951, 48.368597887000064 ], [ -123.550658612999911, 48.367850805000103 ], [ -123.550520201999973, 48.367583386000049 ], [ -123.550167202999916, 48.36726860000006 ], [ -123.549208098999955, 48.366768417000117 ], [ -123.548754536999979, 48.36659224500012 ], [ -123.548382551999964, 48.366447780000108 ], [ -123.547109200999955, 48.365953199000096 ], [ -123.54648642099994, 48.365855700000054 ], [ -123.54505627399999, 48.36538670000013 ], [ -123.545128340999938, 48.363996302000025 ], [ -123.545108768, 48.363995847000062 ], [ -123.542900684999921, 48.363944552000149 ], [ -123.542975279999965, 48.362506576000015 ], [ -123.539080864999931, 48.362415993000042 ], [ -123.53898208899993, 48.36431706400009 ], [ -123.541037889999942, 48.36436489800009 ], [ -123.540997868999952, 48.365135762000065 ], [ -123.543486399999907, 48.365193612000034 ], [ -123.542841150999976, 48.365730707000083 ], [ -123.542581739999946, 48.365946667000074 ], [ -123.542408967999961, 48.366090451000034 ], [ -123.542204821999974, 48.366260393000118 ], [ -123.540826083999931, 48.367640595000118 ], [ -123.540019589999972, 48.36863999800007 ], [ -123.539944199999923, 48.368706866000096 ], [ -123.539528087999955, 48.369075901000052 ], [ -123.538694143999948, 48.369812103000086 ], [ -123.537706086999933, 48.370684276000077 ], [ -123.537403892999976, 48.370951 ], [ -123.536344011999972, 48.371689204000049 ], [ -123.535920714, 48.372106812000027 ], [ -123.535105225, 48.373251592000088 ], [ -123.533997215999975, 48.37480692900008 ], [ -123.53399140399992, 48.374815102000071 ], [ -123.533575633999959, 48.375321271000097 ], [ -123.533211488999953, 48.37576460100005 ], [ -123.532894159999913, 48.376502831000067 ], [ -123.532665476999952, 48.377034773000027 ], [ -123.532527510999913, 48.377355709000042 ], [ -123.53244544099999, 48.37752702700012 ], [ -123.531692414999938, 48.37909895100006 ], [ -123.531468793000016, 48.379565689000088 ], [ -123.530857984999983, 48.380197894000126 ], [ -123.53012007599996, 48.380961610000043 ], [ -123.529767345999971, 48.38132664700008 ], [ -123.529231993999957, 48.381880697000021 ], [ -123.527311019999942, 48.381144299 ], [ -123.526106082999931, 48.380682362000094 ], [ -123.525459307999967, 48.380434392000069 ], [ -123.525097201999984, 48.380310099000042 ], [ -123.524329936999948, 48.380046670000077 ], [ -123.524077716999969, 48.379960078000117 ] ], [ [ -123.526597516999956, 48.378302758000096 ], [ -123.526619847999967, 48.377875277000015 ], [ -123.526160049999987, 48.377864523000113 ], [ -123.52613771599999, 48.378292003000134 ], [ -123.526597516999956, 48.378302758000096 ] ], [ [ -123.550534885, 48.357188535000027 ], [ -123.550593297999939, 48.356058822000072 ], [ -123.550413439999943, 48.356054654000054 ], [ -123.550369287999928, 48.356908493000084 ], [ -123.54983211099993, 48.356896043000106 ], [ -123.549817841999953, 48.357171917000116 ], [ -123.550534885, 48.357188535000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59011999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13485083", "BldgCostT": "8828333", "sL_LossRatio": "0.931622666641999", "sL_AssetLoss": "16215.9", "sL_BldgLoss": "15107.1", "sL_StrLoss": "12014", "sL_NStrLoss": "3093.1", "sL_ContLoss": "1108.8", "geom_point": "0101000020E610000077FC51B34BE25EC0EB3C09F0862B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.53097739599994, 48.343175100000039 ], [ -123.530881688999941, 48.343166490000101 ], [ -123.530613402999947, 48.343247706000113 ], [ -123.53008561599999, 48.343204995000058 ], [ -123.529816693, 48.34326911300014 ], [ -123.528939014999963, 48.343139501000053 ], [ -123.528762407, 48.343184989000036 ], [ -123.528614789999935, 48.343122410000049 ], [ -123.528786092999965, 48.342851804000155 ], [ -123.528140206, 48.343007010000129 ], [ -123.527435849999961, 48.343022210000072 ], [ -123.527020396999944, 48.343031192000083 ], [ -123.527151811999943, 48.342733596000045 ], [ -123.527030797999885, 48.342643907000138 ], [ -123.527080685999948, 48.34236470200009 ], [ -123.527457996999942, 48.342192403000077 ], [ -123.52756350099996, 48.342092700000073 ], [ -123.527482316999922, 48.342048492000046 ], [ -123.527911212999982, 48.341703908000063 ], [ -123.527843795, 48.341614114000045 ], [ -123.527450393, 48.341535808000067 ], [ -123.527529917999956, 48.341363496000042 ], [ -123.52789297799994, 48.341317895000039 ], [ -123.52805361299994, 48.341047305000117 ], [ -123.528253494999944, 48.340929099000086 ], [ -123.528496103999927, 48.340829393000078 ], [ -123.528632759999965, 48.340840961000062 ], [ -123.528698304999949, 48.340846498000076 ], [ -123.528766784999959, 48.340806431000082 ], [ -123.529307591999952, 48.340819078 ], [ -123.52933781099992, 48.340239450000126 ], [ -123.529352794999909, 48.340222707000116 ], [ -123.529648888999958, 48.340167202000039 ], [ -123.529944418999946, 48.339922196000046 ], [ -123.530145808999976, 48.339922207000093 ], [ -123.530117992, 48.339786914000086 ], [ -123.530238581999953, 48.339668699000079 ], [ -123.53064188799999, 48.339569007000051 ], [ -123.531351515999987, 48.338953707000023 ], [ -123.531539294999931, 48.338987900000085 ], [ -123.53155459299991, 48.339060497000077 ], [ -123.531286895999983, 48.339331101000063 ], [ -123.531717381999925, 48.339221496000086 ], [ -123.53194989799999, 48.339336811000052 ], [ -123.531924106999966, 48.339490596000076 ], [ -123.532004603999965, 48.339517693000069 ], [ -123.532477195999945, 48.339460703000036 ], [ -123.532623119999954, 48.339262802000086 ], [ -123.532986003999966, 48.339126087000068 ], [ -123.533336985999952, 48.339258501000096 ], [ -123.533471508999952, 48.339069105000142 ], [ -123.533505697999942, 48.338618988000043 ], [ -123.534056521999972, 48.338311402 ], [ -123.534391091999922, 48.337985309000011 ], [ -123.53405210599999, 48.337905491000058 ], [ -123.534079503999934, 48.337825705000057 ], [ -123.534629081999952, 48.337498203000088 ], [ -123.53466531, 48.337246097000026 ], [ -123.535975395999955, 48.337258897000041 ], [ -123.535784481999897, 48.33716059800004 ], [ -123.535784407000037, 48.337025284000077 ], [ -123.536118403999978, 48.33679891000002 ], [ -123.536496788999955, 48.336851604000117 ], [ -123.536554295999935, 48.33709369000006 ], [ -123.536811197999953, 48.337137910000116 ], [ -123.5373128899999, 48.337422698000097 ], [ -123.537597008999938, 48.337475398000066 ], [ -123.538439319, 48.338075002000011 ], [ -123.539264718999917, 48.338187506000054 ], [ -123.539211090999984, 48.338341299000078 ], [ -123.539335109999953, 48.338429594000033 ], [ -123.53969831699996, 48.338365507000063 ], [ -123.540355813999923, 48.337985305000096 ], [ -123.540298591999928, 48.337706093000037 ], [ -123.540398034999967, 48.337366760000094 ], [ -123.541742679999942, 48.337398053000072 ], [ -123.542064618000012, 48.337562297000069 ], [ -123.542188084999935, 48.337724590000064 ], [ -123.542810881999941, 48.337919698000086 ], [ -123.543120986999924, 48.337935400000099 ], [ -123.542813188, 48.338215993000119 ], [ -123.542774005999959, 48.338359801000131 ], [ -123.543011894999935, 48.339150288 ], [ -123.543391582999973, 48.339230003000111 ], [ -123.543851337999968, 48.339150328000038 ], [ -123.543752758999958, 48.341052307000105 ], [ -123.543016590999926, 48.341035191000095 ], [ -123.542989057999975, 48.341566224000125 ], [ -123.54155821399999, 48.341532944000072 ], [ -123.541546410999956, 48.341760458000053 ], [ -123.540386993000013, 48.341733477000076 ], [ -123.540392805999957, 48.341655407000118 ], [ -123.539242787999939, 48.341273801000064 ], [ -123.539415698999974, 48.340949011000077 ], [ -123.539978707999936, 48.340631394000127 ], [ -123.54012431599989, 48.340360807000089 ], [ -123.540015388, 48.340253999000019 ], [ -123.539190819999945, 48.340140105000096 ], [ -123.538775399999963, 48.340366508000088 ], [ -123.538409103999953, 48.340296709 ], [ -123.537711788999957, 48.340759597000094 ], [ -123.53753748299998, 48.340768192000056 ], [ -123.537067619999931, 48.341014605000112 ], [ -123.536811794999934, 48.34104159800011 ], [ -123.536662599999943, 48.340988906000106 ], [ -123.536634611999943, 48.340872106000155 ], [ -123.536777894999972, 48.340466210000088 ], [ -123.53715138199999, 48.340033299000012 ], [ -123.536973803999985, 48.33983530800009 ], [ -123.53658339899999, 48.339865192000097 ], [ -123.536020580999931, 48.340299592000044 ], [ -123.535549587999967, 48.340346600000025 ], [ -123.535269295999939, 48.340689808000093 ], [ -123.53470208899995, 48.340674192000087 ], [ -123.534474798999923, 48.340846512000063 ], [ -123.533921095000025, 48.340866396000145 ], [ -123.533653494999925, 48.341092901000131 ], [ -123.53267022299994, 48.341286603000135 ], [ -123.532675296999983, 48.341709602000044 ], [ -123.532308488999888, 48.342709393000113 ], [ -123.531411107999986, 48.34333458400004 ], [ -123.531003992999956, 48.343309001000144 ], [ -123.53097739599994, 48.343175100000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15744584", "BldgCostT": "10858334", "sL_LossRatio": "0.984979047285426", "sL_AssetLoss": "7867.477", "sL_BldgLoss": "7749.3", "sL_StrLoss": "6978.7", "sL_NStrLoss": "770.6", "sL_ContLoss": "118.177", "geom_point": "0101000020E610000067A09528F9E55EC017AF05FFD32B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.585069383999937, 48.34569936500003 ], [ -123.58518669899999, 48.343397339 ], [ -123.585142342999944, 48.343396326000125 ], [ -123.585156239999975, 48.343123635000055 ], [ -123.584257925999964, 48.343103103000111 ], [ -123.584363182999951, 48.341038296000107 ], [ -123.586351377999961, 48.341674095000094 ], [ -123.588693509999985, 48.342423002 ], [ -123.588637493999911, 48.342678002000092 ], [ -123.588811213999961, 48.342659488000066 ], [ -123.588864683999944, 48.342461592000113 ], [ -123.589306401999977, 48.342233706000066 ], [ -123.58959000599998, 48.342250784000093 ], [ -123.589795103999947, 48.342438810000019 ], [ -123.59075389, 48.34249568900006 ], [ -123.591007025999929, 48.342465366000155 ], [ -123.591096893999989, 48.342467416000041 ], [ -123.591098215000017, 48.342441440000094 ], [ -123.591493600999954, 48.342249287000065 ], [ -123.591508547999979, 48.342163674000091 ], [ -123.592091178999937, 48.342176951000091 ], [ -123.592097266999971, 48.342057149000077 ], [ -123.591529404999932, 48.342044208000097 ], [ -123.591543811999927, 48.341961695000059 ], [ -123.591703687999939, 48.341816410000021 ], [ -123.591255209999986, 48.341531484000065 ], [ -123.591706616999929, 48.340953307000106 ], [ -123.591635103, 48.340584403000037 ], [ -123.591312592999913, 48.340648495000025 ], [ -123.591284096, 48.340433493 ], [ -123.591454396999907, 48.340152894 ], [ -123.591762612999929, 48.339882299000095 ], [ -123.5919506199999, 48.339853799000132 ], [ -123.592110506999958, 48.339708594000051 ], [ -123.592366398999957, 48.33966299800003 ], [ -123.592566993999966, 48.339517688000065 ], [ -123.592905220999953, 48.339426606000082 ], [ -123.59312069899994, 48.339523391000043 ], [ -123.593804081999934, 48.338999299000093 ], [ -123.593813649999973, 48.338986312000024 ], [ -123.594149382999916, 48.338529293000093 ], [ -123.594131313, 48.338179001000043 ], [ -123.594385600999956, 48.338015203000054 ], [ -123.595031384999956, 48.337822907000096 ], [ -123.595141118999891, 48.337921205000036 ], [ -123.595129693999951, 48.338127713000048 ], [ -123.595265896999962, 48.338198887000054 ], [ -123.595147308999941, 48.338596308 ], [ -123.595446401999979, 48.3386930980001 ], [ -123.595634081999918, 48.338547797000125 ], [ -123.595713910999933, 48.338601887000046 ], [ -123.595731007000012, 48.338799905000016 ], [ -123.595441105999939, 48.339376695000134 ], [ -123.59556511000001, 48.339655887000049 ], [ -123.59569990599999, 48.339546197000047 ], [ -123.595907711999956, 48.338952297000084 ], [ -123.596336219999927, 48.338607601000085 ], [ -123.596585493999967, 48.33801229200003 ], [ -123.596814086, 48.338002395000068 ], [ -123.597032179999971, 48.33817179400009 ], [ -123.597302897999967, 48.338188910000092 ], [ -123.59767801199996, 48.337979604000033 ], [ -123.597756389999972, 48.337827187000059 ], [ -123.598322889999963, 48.33783290300007 ], [ -123.59850940599992, 48.337616397000062 ], [ -123.598765291999911, 48.33759640300007 ], [ -123.598809297999978, 48.337884111000108 ], [ -123.598622900999942, 48.338100604000033 ], [ -123.598665794999931, 48.338280092000083 ], [ -123.598788389999953, 48.338352705000077 ], [ -123.599044391999911, 48.338314313000048 ], [ -123.599353499999978, 48.338151884000126 ], [ -123.599784697999937, 48.338059303000044 ], [ -123.599994200999959, 48.337616401000062 ], [ -123.600394383999927, 48.337147799000014 ], [ -123.600543583000032, 48.337181997000087 ], [ -123.600504392999952, 48.33736290900007 ], [ -123.600678900999952, 48.337342909000071 ], [ -123.600706994999882, 48.337459714000019 ], [ -123.60104439699991, 48.337395596000057 ], [ -123.601088001999955, 48.337585100000055 ], [ -123.601507107999964, 48.337707500000079 ], [ -123.601568623999952, 48.338310004000107 ], [ -123.601769377999986, 48.338299994000103 ], [ -123.602265800999945, 48.337919692000078 ], [ -123.602400811999956, 48.337919703000061 ], [ -123.602833801999964, 48.338150498000054 ], [ -123.602993231, 48.338156065000092 ], [ -123.602972259999959, 48.338570704000084 ], [ -123.60290582099995, 48.339884257000044 ], [ -123.60125393899996, 48.339846769000047 ], [ -123.600218384999948, 48.339823256000059 ], [ -123.60021175, 48.339954302000173 ], [ -123.600136582999966, 48.341438655000033 ], [ -123.600113819999962, 48.341888119000053 ], [ -123.597495716999944, 48.341828626000051 ], [ -123.597313202999985, 48.34542837599999 ], [ -123.596334747999947, 48.34540612600005 ], [ -123.596310689999925, 48.345880400000098 ], [ -123.595706351999965, 48.345866653000016 ], [ -123.595690480999963, 48.346179415000044 ], [ -123.590610840999972, 48.346063728000047 ], [ -123.590438352, 48.346059794000077 ], [ -123.590431462999931, 48.346195273000014 ], [ -123.590429277999959, 48.346238243000066 ], [ -123.590374568999962, 48.346236996000108 ], [ -123.588382085, 48.346191547000117 ], [ -123.588339939999983, 48.347019615000093 ], [ -123.588338079999943, 48.347056150000071 ], [ -123.588305616999961, 48.34704699499999 ], [ -123.586133181999941, 48.34636993200008 ], [ -123.584335691999939, 48.345682597000057 ], [ -123.585069383999937, 48.34569936500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997238605403477", "sL_AssetLoss": "162.599", "sL_BldgLoss": "162.15", "sL_StrLoss": "157", "sL_NStrLoss": "5.15", "sL_ContLoss": "0.449", "geom_point": "0101000020E61000003234856BC1E75EC0D71E0FE0212B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.620427669999927, 48.337259571000075 ], [ -123.620486288999942, 48.336092032000124 ], [ -123.620568499999933, 48.336068313000041 ], [ -123.620962, 48.336344585000099 ], [ -123.621311878999933, 48.33616369700011 ], [ -123.621623498999924, 48.336360190000086 ], [ -123.621984893999979, 48.336177912000096 ], [ -123.622202108999943, 48.336176493000046 ], [ -123.622693673999905, 48.336377902000031 ], [ -123.62163256800001, 48.337182766000105 ], [ -123.620364473999956, 48.338518233000066 ], [ -123.620427669999927, 48.337259571000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189084", "BldgCostT": "4268334", "sL_LossRatio": "0.988739939252257", "sL_AssetLoss": "2407.003", "sL_BldgLoss": "2379.9", "sL_StrLoss": "2209.4", "sL_NStrLoss": "170.5", "sL_ContLoss": "27.103", "geom_point": "0101000020E61000005BBD7960F6E65EC0019496FC152B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.607545750999932, 48.338539529000066 ], [ -123.607547096999937, 48.338512864000101 ], [ -123.606842625999931, 48.338496911000099 ], [ -123.606852660999934, 48.338298211000058 ], [ -123.606119013999901, 48.338281593000012 ], [ -123.606127384999965, 48.338115857000076 ], [ -123.606135107999989, 48.337962947000037 ], [ -123.604471772999915, 48.337925250000048 ], [ -123.604503589999979, 48.337295770000082 ], [ -123.603496233999948, 48.337272927000065 ], [ -123.603537323999916, 48.337166304000057 ], [ -123.603497091999941, 48.337022502000139 ], [ -123.603720508999913, 48.336643692000102 ], [ -123.603622892999951, 48.336355989000076 ], [ -123.603874181999942, 48.335995596000011 ], [ -123.604318604999918, 48.33575919500003 ], [ -123.60374642, 48.335330505000037 ], [ -123.603676923999942, 48.335178104000121 ], [ -123.603862912999929, 48.334933194000037 ], [ -123.604211192999983, 48.334806412000013 ], [ -123.604520005999987, 48.334552885000093 ], [ -123.605111698999949, 48.334504501 ], [ -123.605410085999921, 48.334565703000095 ], [ -123.605254, 48.33509700900003 ], [ -123.605443703999967, 48.335186700000136 ], [ -123.60713710099999, 48.334503104000085 ], [ -123.607817590999943, 48.333994594000046 ], [ -123.608211481999959, 48.334101398000065 ], [ -123.608598892999936, 48.333856496000074 ], [ -123.608525280999956, 48.334477397000057 ], [ -123.608606522999963, 48.334540101000073 ], [ -123.608782400999971, 48.334503094000105 ], [ -123.609088496999945, 48.33419539500008 ], [ -123.609561910999986, 48.334309400000087 ], [ -123.609616600999956, 48.334354988000051 ], [ -123.609498205999941, 48.334517304000094 ], [ -123.609566686999969, 48.334561501000088 ], [ -123.610065286999941, 48.334577098000047 ], [ -123.609851008999897, 48.33476798600006 ], [ -123.609854082999931, 48.334920391000047 ], [ -123.610165187999925, 48.335044293000074 ], [ -123.610304007999943, 48.335386085000046 ], [ -123.61054740499992, 48.33548290400006 ], [ -123.611003588999921, 48.335112592 ], [ -123.611353381999962, 48.335020105000112 ], [ -123.611484177999955, 48.334785096000068 ], [ -123.611768605999956, 48.33475658400009 ], [ -123.611876882999951, 48.334846295000027 ], [ -123.612046606999954, 48.335601096000083 ], [ -123.612223708999963, 48.335609694 ], [ -123.612490897999919, 48.335427412000072 ], [ -123.612613402999983, 48.335499986000066 ], [ -123.612441186999959, 48.335743603000026 ], [ -123.612485608, 48.336147993000054 ], [ -123.613540286999964, 48.336304711000075 ], [ -123.613798406999962, 48.336482689000036 ], [ -123.614001209999984, 48.336491285000108 ], [ -123.614312896999948, 48.336669291000078 ], [ -123.614533320999925, 48.336648472000086 ], [ -123.61447006600001, 48.337905179000103 ], [ -123.614420051999943, 48.337904049000045 ], [ -123.613508998999961, 48.33788347600013 ], [ -123.613496640999983, 48.338128901000097 ], [ -123.61295347599993, 48.33811663200008 ], [ -123.612926046999988, 48.338661213000073 ], [ -123.607545750999932, 48.338539529000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12925001", "BldgCostT": "8650001", "sL_LossRatio": "0.982868471870214", "sL_AssetLoss": "9512.87", "sL_BldgLoss": "9349.9", "sL_StrLoss": "8742", "sL_NStrLoss": "607.9", "sL_ContLoss": "162.97", "geom_point": "0101000020E61000004E052EF29FEA5EC0B6CC5CBF642E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.665614178999959, 48.364354496 ], [ -123.664394285999947, 48.364063998000027 ], [ -123.66374659899999, 48.364112390000109 ], [ -123.663343805999915, 48.363683631000043 ], [ -123.663235109999945, 48.363170885000059 ], [ -123.663228861999968, 48.363053542000031 ], [ -123.663188288999933, 48.362290596000079 ], [ -123.663147592999934, 48.362104809000108 ], [ -123.663174483999967, 48.361423698000117 ], [ -123.662950497999987, 48.360180583000044 ], [ -123.667128817999952, 48.36027286900007 ], [ -123.667115326000015, 48.360546831000086 ], [ -123.668212695999969, 48.360571041000071 ], [ -123.66812382599997, 48.362376341000051 ], [ -123.668118351000018, 48.362487554000026 ], [ -123.668487766999959, 48.362485409000094 ], [ -123.669294119999932, 48.362480719000082 ], [ -123.669297698999927, 48.362753941000108 ], [ -123.669315333999975, 48.3641 ], [ -123.668910335999911, 48.364102355000064 ], [ -123.668913868999951, 48.364372235000076 ], [ -123.668103865999953, 48.364376943000146 ], [ -123.668107395999954, 48.364646823000044 ], [ -123.667704310999952, 48.364649163000109 ], [ -123.667682051999947, 48.365101207000052 ], [ -123.666752509999981, 48.3648329910001 ], [ -123.665614178999959, 48.364354496 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239002166", "BldgCostT": "159146666", "sL_LossRatio": "0.982228534141941", "sL_AssetLoss": "126852.057", "sL_BldgLoss": "124597.71", "sL_StrLoss": "115338.52", "sL_NStrLoss": "9259.19", "sL_ContLoss": "2254.347", "geom_point": "0101000020E610000022B17A1345EC5EC04483EBBCD32E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684454704999936, 48.376047295000077 ], [ -123.68413148800002, 48.376031593000071 ], [ -123.683849102999943, 48.376104189000031 ], [ -123.683328398999947, 48.376557098000092 ], [ -123.682948684999971, 48.376443195000078 ], [ -123.68230019399999, 48.376437500000094 ], [ -123.682218010999989, 48.376339195000085 ], [ -123.682656402999982, 48.375869212000069 ], [ -123.682693016999934, 48.375562994000106 ], [ -123.682173384999942, 48.375088801000089 ], [ -123.682178017999959, 48.374351007000044 ], [ -123.681823388999973, 48.374120307000084 ], [ -123.681767019999967, 48.373985003000051 ], [ -123.682749298999951, 48.372701814 ], [ -123.682788803, 48.372575001000058 ], [ -123.682265817999948, 48.371867205000108 ], [ -123.682762089999954, 48.371541110000109 ], [ -123.682731509999911, 48.371324589000018 ], [ -123.682067295999943, 48.3711764990001 ], [ -123.68179510399996, 48.37098849400008 ], [ -123.681833818999962, 48.370781997000044 ], [ -123.682207210999977, 48.37052699500002 ], [ -123.682230912999955, 48.370257791000036 ], [ -123.682188092999951, 48.370113991000053 ], [ -123.681546396999963, 48.369614094000141 ], [ -123.681532915, 48.369478802000103 ], [ -123.681690993999908, 48.369280799000137 ], [ -123.681606807999955, 48.369001700000048 ], [ -123.681333811999934, 48.368859296000046 ], [ -123.681131500999939, 48.368842190000116 ], [ -123.680609280999946, 48.369161198000057 ], [ -123.680070220999966, 48.36929940100007 ], [ -123.679382403999952, 48.369320693000162 ], [ -123.679150196999956, 48.369159812000134 ], [ -123.679116890999964, 48.36865700200007 ], [ -123.678982488999935, 48.368585808000056 ], [ -123.678618578999973, 48.368632799000082 ], [ -123.67857578, 48.368570195000082 ], [ -123.678815581999942, 48.368216996000058 ], [ -123.678609095999917, 48.367949196 ], [ -123.678552786999958, 48.367751197000096 ], [ -123.678153589999951, 48.367321108000034 ], [ -123.677868393999972, 48.367170208000026 ], [ -123.67753100799996, 48.367127395000075 ], [ -123.677355107999944, 48.367145997000065 ], [ -123.676269406999907, 48.367674295000022 ], [ -123.675758092, 48.36776831600011 ], [ -123.674810295999976, 48.367584607000033 ], [ -123.674384523999947, 48.367612716000096 ], [ -123.674054510999923, 48.367634502000101 ], [ -123.673836703999967, 48.367463499000074 ], [ -123.673499912999915, 48.367537602000063 ], [ -123.673362675999911, 48.367386595000092 ], [ -123.672984505999949, 48.367406601000013 ], [ -123.672738783999932, 48.367191495000014 ], [ -123.672666898999964, 48.366876800000071 ], [ -123.672558295999977, 48.366868205000088 ], [ -123.672425877999942, 48.367021993 ], [ -123.672237689999974, 48.36706900800003 ], [ -123.672086990999972, 48.366908097000085 ], [ -123.672041003999965, 48.366512186000058 ], [ -123.671824419999965, 48.366486506000065 ], [ -123.671414312999929, 48.366156099000108 ], [ -123.670834597999914, 48.366150406000081 ], [ -123.670490362999914, 48.3659462890001 ], [ -123.670528809999965, 48.365164579000123 ], [ -123.673506069999974, 48.365230133000075 ], [ -123.673510038999936, 48.365149325000104 ], [ -123.672812187999938, 48.365133967000084 ], [ -123.672822577, 48.364922532000037 ], [ -123.671546355999965, 48.364894433000032 ], [ -123.671585522999976, 48.364097677000125 ], [ -123.670592869999965, 48.364075811000106 ], [ -123.670621618, 48.363491227000097 ], [ -123.670770058999963, 48.360472570000113 ], [ -123.671120944999956, 48.360480300000027 ], [ -123.671207136999925, 48.358727076000115 ], [ -123.676589887, 48.358845516000088 ], [ -123.676586349999965, 48.358917628000036 ], [ -123.677190270999944, 48.358930900000132 ], [ -123.677186978999956, 48.358998032000095 ], [ -123.677348341999945, 48.359001577000079 ], [ -123.677333013999913, 48.357845354000119 ], [ -123.678142913, 48.357840582000058 ], [ -123.678139329999965, 48.357570703000079 ], [ -123.678544276999958, 48.357568315000066 ], [ -123.678540693999977, 48.357298435000104 ], [ -123.679755526999912, 48.357291263 ], [ -123.679759117999978, 48.357561143000112 ], [ -123.680164064999957, 48.357558750000074 ], [ -123.680167655999981, 48.357828629000032 ], [ -123.680572605999927, 48.357826234000051 ], [ -123.680576199999948, 48.358096114000062 ], [ -123.681386101999962, 48.358091319000096 ], [ -123.681393300999943, 48.358631078000066 ], [ -123.682203212, 48.35862627900012 ], [ -123.682203902999959, 48.358678131000069 ], [ -123.683882610999916, 48.358714924000068 ], [ -123.683760690999975, 48.361208434000069 ], [ -123.684129948999924, 48.361216524000078 ], [ -123.684093540999953, 48.36196118900002 ], [ -123.684482880999909, 48.361969718000083 ], [ -123.684462262999944, 48.362391471000144 ], [ -123.685088558999951, 48.362387742000131 ], [ -123.685084939, 48.362117863000087 ], [ -123.687109850999903, 48.362105786000051 ], [ -123.68711204199991, 48.362268730000046 ], [ -123.687120740999958, 48.362915424000022 ], [ -123.68631076299998, 48.362920259000092 ], [ -123.686314388999975, 48.363190138000036 ], [ -123.685504406999911, 48.363194967000069 ], [ -123.685508028999905, 48.36346484600012 ], [ -123.685913021999966, 48.363462432000084 ], [ -123.685927517999943, 48.36454194800006 ], [ -123.686332518999976, 48.36453953300007 ], [ -123.686336018999953, 48.364799954000041 ], [ -123.686675652999938, 48.364807386000059 ], [ -123.686741148999914, 48.364806994000084 ], [ -123.686741173999977, 48.364808819000075 ], [ -123.689172107999951, 48.364861978000107 ], [ -123.689163887999911, 48.364252705000091 ], [ -123.688758888999985, 48.364255131000057 ], [ -123.68876616599999, 48.36479488800007 ], [ -123.687551156999987, 48.364802156000067 ], [ -123.687547523999953, 48.364532278000119 ], [ -123.687142522999963, 48.364534697000053 ], [ -123.687124371, 48.363185302 ], [ -123.687934351999942, 48.363180462000059 ], [ -123.687927083999966, 48.362640703000054 ], [ -123.688332069999916, 48.362638281000066 ], [ -123.688321933999973, 48.361885953000062 ], [ -123.688321161, 48.36182864400012 ], [ -123.689536100999973, 48.361821368000044 ], [ -123.689532457999974, 48.361551489000128 ], [ -123.690342412999954, 48.361546632000113 ], [ -123.690338765999954, 48.361276752000066 ], [ -123.691553691999943, 48.361269455000091 ], [ -123.691550038999978, 48.360999576000076 ], [ -123.692764958999959, 48.360992267000071 ], [ -123.692775936999922, 48.361801903000114 ], [ -123.691965977999956, 48.36180677800008 ], [ -123.691969633999975, 48.362076656000021 ], [ -123.691564652999958, 48.362079092000101 ], [ -123.691579266999938, 48.363158608000077 ], [ -123.692794234999965, 48.363151296000062 ], [ -123.692808876999919, 48.364230811000077 ], [ -123.691998878999982, 48.364235687000097 ], [ -123.692002536999937, 48.364505565000115 ], [ -123.691192533999967, 48.364510435000028 ], [ -123.691196185999942, 48.364780314000043 ], [ -123.690791182999973, 48.364782747000071 ], [ -123.690802131999973, 48.365592382000109 ], [ -123.691207140999921, 48.365589949000032 ], [ -123.691232706999926, 48.367479100000011 ], [ -123.689333246, 48.367490498000038 ], [ -123.689293730999935, 48.368300436000077 ], [ -123.690433601999942, 48.368293600000058 ], [ -123.690444545999966, 48.369103236000086 ], [ -123.68922943499993, 48.369110523000053 ], [ -123.689220791999901, 48.368470129000038 ], [ -123.687880731999911, 48.368440835000044 ], [ -123.687802424999916, 48.370044822000111 ], [ -123.692962047999956, 48.370157518000049 ], [ -123.692925465999963, 48.370908469000049 ], [ -123.69433834299997, 48.370939285000098 ], [ -123.694298001, 48.371767897000019 ], [ -123.695079239999941, 48.371784929000022 ], [ -123.695126532999922, 48.370813203000083 ], [ -123.697769071999971, 48.370870769000085 ], [ -123.69781798, 48.369864666000097 ], [ -123.698015372999961, 48.369868964000105 ], [ -123.69987182599999, 48.369909362000037 ], [ -123.699918548999946, 48.368947315000106 ], [ -123.701919902999947, 48.368990830000079 ], [ -123.701953905, 48.368290063000074 ], [ -123.702468938999914, 48.36830125500007 ], [ -123.702551374, 48.366601872000018 ], [ -123.702815361999967, 48.366607609000042 ], [ -123.702815812999987, 48.366598311000089 ], [ -123.702485893999892, 48.366591142000047 ], [ -123.702531103999917, 48.365659128000061 ], [ -123.70056528, 48.365616394000014 ], [ -123.700628266, 48.36431896600002 ], [ -123.700487153999973, 48.364315897000097 ], [ -123.70058131499999, 48.362376263000066 ], [ -123.699584536999922, 48.36235457900009 ], [ -123.699759515, 48.358751279000096 ], [ -123.700222909999979, 48.358761361000042 ], [ -123.700265220999967, 48.357889772000057 ], [ -123.699162682999898, 48.357865780000125 ], [ -123.699225262999974, 48.356577239000053 ], [ -123.698422532999984, 48.356559765000029 ], [ -123.698597578999966, 48.352956431000081 ], [ -123.69885993900003, 48.352962144000045 ], [ -123.698880490999954, 48.352539002000064 ], [ -123.70239848599995, 48.352379670000097 ], [ -123.702929162999936, 48.352692651000027 ], [ -123.704555439999936, 48.355963001000063 ], [ -123.704639498999981, 48.355961919000052 ], [ -123.705381589999931, 48.355882421000068 ], [ -123.705798295999969, 48.355871624000038 ], [ -123.70641820799996, 48.355894096000085 ], [ -123.706893804999964, 48.355780902000092 ], [ -123.707158646999957, 48.355773060000075 ], [ -123.707387512999915, 48.355766299000095 ], [ -123.707576614999965, 48.355724549000108 ], [ -123.709313417999937, 48.356664880000032 ], [ -123.709318346999936, 48.356667679000076 ], [ -123.708953791999974, 48.356717892000077 ], [ -123.707653202999936, 48.357391492000062 ], [ -123.706950606999939, 48.357387304000113 ], [ -123.706563689999925, 48.35765069000005 ], [ -123.706307803999948, 48.357714797000121 ], [ -123.703932501999958, 48.357756092000024 ], [ -123.703462107999968, 48.357875808000102 ], [ -123.703075097999942, 48.358220386000013 ], [ -123.703013392999935, 48.358643387000022 ], [ -123.703164000999919, 48.358841412000118 ], [ -123.703238089999971, 48.359218799000047 ], [ -123.703715498999912, 48.3595477880001 ], [ -123.703951792999959, 48.360140303000037 ], [ -123.70448210099994, 48.360370989000081 ], [ -123.70454988099999, 48.360479201000054 ], [ -123.704406098999939, 48.360722788000075 ], [ -123.703791085999981, 48.361175692000074 ], [ -123.703867894, 48.361913407000081 ], [ -123.70440309599995, 48.362485900000166 ], [ -123.704598107999942, 48.36286190000002 ], [ -123.704856121, 48.363004304000079 ], [ -123.705247790000016, 48.362975902000116 ], [ -123.705679602, 48.363044199000029 ], [ -123.70651532, 48.362904604000029 ], [ -123.706813380999932, 48.363074095000037 ], [ -123.707192980999935, 48.363125400000094 ], [ -123.707915599999978, 48.363552710000057 ], [ -123.708464575999926, 48.363378893000075 ], [ -123.708978615, 48.363438703000014 ], [ -123.709734895999944, 48.363380306000117 ], [ -123.71041610499999, 48.363897293000079 ], [ -123.712436288999982, 48.364459910000015 ], [ -123.712813716999946, 48.364404300000032 ], [ -123.713219013999961, 48.364474090000058 ], [ -123.7141377199999, 48.364449900000047 ], [ -123.714589681999939, 48.363915798000065 ], [ -123.714751187999966, 48.363951391000093 ], [ -123.714849098999963, 48.364166509000043 ], [ -123.715025006999952, 48.364192088000031 ], [ -123.715329499999953, 48.36372358800002 ], [ -123.715609103999924, 48.363559803 ], [ -123.715742088999932, 48.363360403000044 ], [ -123.716038238999957, 48.363228944000035 ], [ -123.71609170499994, 48.363205210000061 ], [ -123.71638839299996, 48.363203713000082 ], [ -123.716381208999977, 48.363643796000126 ], [ -123.716112292999952, 48.363826096000096 ], [ -123.716022301999885, 48.36405110100003 ], [ -123.716158090999954, 48.364149391000126 ], [ -123.71661701699999, 48.364119497000111 ], [ -123.716646982999947, 48.364344496000065 ], [ -123.716464712999979, 48.36487580600005 ], [ -123.716980096999947, 48.36496258800004 ], [ -123.717127313999981, 48.365771597000105 ], [ -123.716672615, 48.366170390000036 ], [ -123.716552495999963, 48.366188890000103 ], [ -123.716481585999972, 48.366082102000121 ], [ -123.716585996999967, 48.365802898000069 ], [ -123.716182092999929, 48.365885501000093 ], [ -123.715885385999925, 48.365842791000055 ], [ -123.715162682999946, 48.365397001000126 ], [ -123.71413679699999, 48.365377097000092 ], [ -123.71369208199998, 48.365415494000032 ], [ -123.713437595999935, 48.365525202000114 ], [ -123.713275986999918, 48.365670492000042 ], [ -123.713359682999936, 48.365839902000076 ], [ -123.713280210999983, 48.365958193000125 ], [ -123.71309368799993, 48.366039292000011 ], [ -123.712836281999969, 48.366032203000067 ], [ -123.712542503999927, 48.366231612000099 ], [ -123.712656714999952, 48.366654594000082 ], [ -123.712459409999909, 48.367060502000093 ], [ -123.711757284999933, 48.367073299 ], [ -123.71105800699999, 48.367339611000041 ], [ -123.710732696999941, 48.368105898000074 ], [ -123.710293590999967, 48.368602897000123 ], [ -123.71042148199993, 48.369079998000082 ], [ -123.70999400399991, 48.36945031000009 ], [ -123.709371895999965, 48.370354696000078 ], [ -123.709311813999989, 48.370848901000038 ], [ -123.709123108999961, 48.370823294000068 ], [ -123.708943482999928, 48.370582592000076 ], [ -123.708659789999942, 48.370628099000093 ], [ -123.708405918999972, 48.370791896000156 ], [ -123.708054794999953, 48.371739004000069 ], [ -123.707416282999986, 48.372354291000079 ], [ -123.707226779999985, 48.372355701000082 ], [ -123.706666312999957, 48.371918502000028 ], [ -123.706069208999963, 48.371724786000144 ], [ -123.70589551499998, 48.371806002000078 ], [ -123.705805400999978, 48.372130706000092 ], [ -123.705618016999949, 48.372275896000104 ], [ -123.704113587999956, 48.37284280600003 ], [ -123.702952298999904, 48.373804095000018 ], [ -123.702495510999981, 48.374022004000075 ], [ -123.702095099999951, 48.374375194000038 ], [ -123.701465011999957, 48.374658699000051 ], [ -123.700912382999903, 48.374724198000088 ], [ -123.700712800999952, 48.374879394000111 ], [ -123.699943390999977, 48.375018997000048 ], [ -123.699806186999965, 48.374875097000029 ], [ -123.699253516999988, 48.374877994000066 ], [ -123.698898895999918, 48.375014606000022 ], [ -123.698728615999983, 48.375080202000063 ], [ -123.698624088999949, 48.375234003000038 ], [ -123.698461903999956, 48.375288186000056 ], [ -123.69824658200001, 48.375289603000027 ], [ -123.69699887799996, 48.374964896000058 ], [ -123.695624604999963, 48.375196989000102 ], [ -123.69542231299999, 48.375117202000091 ], [ -123.695430901999927, 48.374766908000055 ], [ -123.695171405999972, 48.374597392000112 ], [ -123.694660101999943, 48.37465439699999 ], [ -123.693992303999906, 48.374335394000063 ], [ -123.692510691999985, 48.37454190000004 ], [ -123.691626384999921, 48.374060497000109 ], [ -123.691179478999985, 48.374054794000124 ], [ -123.6906385139999, 48.374158981000043 ], [ -123.690358600999929, 48.37421288600008 ], [ -123.689301594999975, 48.374839496000106 ], [ -123.689017025999988, 48.374886504000095 ], [ -123.688306803999978, 48.375278207000086 ], [ -123.686882398999899, 48.375762391000045 ], [ -123.685782489999895, 48.376344909000089 ], [ -123.68543699, 48.376706692000056 ], [ -123.685261683999968, 48.376753705000041 ], [ -123.684454704999936, 48.376047295000077 ] ], [ [ -123.683963039, 48.367095458000108 ], [ -123.683968552999971, 48.366982718000081 ], [ -123.683530008999981, 48.366985325 ], [ -123.683524029999944, 48.366538573000128 ], [ -123.682725639999916, 48.36652107800009 ], [ -123.682698892999937, 48.367067760000069 ], [ -123.683963039, 48.367095458000108 ] ], [ [ -123.689594389999982, 48.366139430000075 ], [ -123.689587103999955, 48.36559967200008 ], [ -123.689425441999958, 48.365600642000054 ], [ -123.689399100999964, 48.366140600000072 ], [ -123.689594389999982, 48.366139430000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.986786387253509", "sL_AssetLoss": "682.478", "sL_BldgLoss": "673.46", "sL_StrLoss": "640", "sL_NStrLoss": "33.46", "sL_ContLoss": "9.018", "geom_point": "0101000020E6100000F880CC10BFEC5EC0F882FD740F2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.699322098999957, 48.366620507000086 ], [ -123.70053715100002, 48.366613115000071 ], [ -123.700548253999955, 48.367422749000085 ], [ -123.699738207999985, 48.367427680000098 ], [ -123.699745603999929, 48.367967436000107 ], [ -123.69934057399999, 48.367969898000098 ], [ -123.699351662000012, 48.368779532000083 ], [ -123.69813655899999, 48.368786913000115 ], [ -123.698114425999989, 48.367167644000027 ], [ -123.699329489999954, 48.36716026400007 ], [ -123.699322098999957, 48.366620507000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38718084", "BldgCostT": "26438334", "sL_LossRatio": "0.985491852306492", "sL_AssetLoss": "20743.1649", "sL_BldgLoss": "20442.22", "sL_StrLoss": "19427.86", "sL_NStrLoss": "1014.36", "sL_ContLoss": "300.9449", "geom_point": "0101000020E61000001BC4C559AAE85EC0AD3FDBCD802A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.621150998999923, 48.339398585000069 ], [ -123.621191295999921, 48.338595750000131 ], [ -123.620361519000014, 48.338577066000013 ], [ -123.620364473999956, 48.338518233000066 ], [ -123.62163256800001, 48.337182766000105 ], [ -123.622693673999905, 48.336377902000031 ], [ -123.623178889999977, 48.336576692000058 ], [ -123.623366092999902, 48.336575294000056 ], [ -123.623919606999948, 48.336445694000098 ], [ -123.624415296999985, 48.336227794000116 ], [ -123.624653697999975, 48.335830400000098 ], [ -123.624920021999927, 48.335649604000082 ], [ -123.625010914999962, 48.335343297000122 ], [ -123.625171392999931, 48.335233710000061 ], [ -123.625750290999946, 48.335141099000062 ], [ -123.62645261099999, 48.335163886000032 ], [ -123.626684488999942, 48.335243703000138 ], [ -123.626528009999944, 48.335739293000088 ], [ -123.626796396999936, 48.336798891000115 ], [ -123.627043608999941, 48.337013896000094 ], [ -123.62729998599994, 48.337066591000081 ], [ -123.627641892999918, 48.336425708 ], [ -123.628336189, 48.33576491000008 ], [ -123.628362403999915, 48.335621095000086 ], [ -123.628169096999926, 48.335262193000069 ], [ -123.628326910999931, 48.335054201000041 ], [ -123.629173193000014, 48.334672501000085 ], [ -123.629957701999942, 48.334866209000047 ], [ -123.631280217999944, 48.334876196000067 ], [ -123.631938818999956, 48.334683904000023 ], [ -123.632247184999983, 48.334511603000117 ], [ -123.63239329, 48.334349307000082 ], [ -123.632391890999912, 48.334124188000033 ], [ -123.632307989999958, 48.333988894000044 ], [ -123.631915603999943, 48.333802391000084 ], [ -123.632231985999951, 48.33335939100008 ], [ -123.632303676999982, 48.332550493000099 ], [ -123.632886096999954, 48.331556394000096 ], [ -123.633030508999951, 48.331312798000027 ], [ -123.632975482999896, 48.331260098000058 ], [ -123.632585294999942, 48.331315715000073 ], [ -123.632570491999985, 48.331252995000057 ], [ -123.633281102999916, 48.330879911000032 ], [ -123.633371908999948, 48.330592204000055 ], [ -123.633261409999946, 48.330304486000045 ], [ -123.634210612999951, 48.329669291000101 ], [ -123.63481838199999, 48.328576901000083 ], [ -123.634984302999896, 48.32781209400008 ], [ -123.634715090999975, 48.327803605000028 ], [ -123.634577391999954, 48.327723797000026 ], [ -123.634614380999906, 48.3273193960001 ], [ -123.634423007999942, 48.327085805000067 ], [ -123.633662285999932, 48.326829408 ], [ -123.63293346799999, 48.32681443200007 ], [ -123.632973733999961, 48.326008031000086 ], [ -123.635138015999956, 48.326056505000082 ], [ -123.635208979999987, 48.324633893000083 ], [ -123.635509901999939, 48.324497988000054 ], [ -123.635893109999984, 48.323929691000025 ], [ -123.636507780999978, 48.323394196000017 ], [ -123.636639985999977, 48.323165363000015 ], [ -123.640768316999953, 48.32325765200008 ], [ -123.640588985999941, 48.326861072000021 ], [ -123.640483025999941, 48.326858705000078 ], [ -123.640459006999919, 48.32734127300008 ], [ -123.638993285999931, 48.327308524000046 ], [ -123.638958788999972, 48.328001181000111 ], [ -123.643594696999983, 48.328104692000117 ], [ -123.643509932999947, 48.329809848000068 ], [ -123.645232339999922, 48.329848254000041 ], [ -123.645053322999928, 48.333451641000131 ], [ -123.640803465999923, 48.333356828000028 ], [ -123.640780274999941, 48.333822745000063 ], [ -123.640716609999956, 48.333821323000073 ], [ -123.640601595999925, 48.336131841000039 ], [ -123.635221514999927, 48.336011565000106 ], [ -123.635231782999981, 48.335805753000045 ], [ -123.634431797999952, 48.335787845000127 ], [ -123.63444000599999, 48.335623409000064 ], [ -123.633466998999921, 48.335601619000094 ], [ -123.63339166499999, 48.337110316000107 ], [ -123.632617058999983, 48.337092963000011 ], [ -123.632615136999931, 48.337131434000078 ], [ -123.631179645999964, 48.337099262000031 ], [ -123.631176281999927, 48.337166570000129 ], [ -123.631053076999962, 48.337163808000085 ], [ -123.631017514999911, 48.337875272000069 ], [ -123.627864549999984, 48.337804535000032 ], [ -123.627839424999962, 48.338306503000069 ], [ -123.62778597, 48.339374446000072 ], [ -123.626540097999936, 48.339346469000063 ], [ -123.626531427999936, 48.339519576000043 ], [ -123.62452912399999, 48.339474582000015 ], [ -123.622646534999959, 48.339432243000097 ], [ -123.621150998999923, 48.339398585000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.982962368058742", "sL_AssetLoss": "3486.4", "sL_BldgLoss": "3427", "sL_StrLoss": "3100", "sL_NStrLoss": "327", "sL_ContLoss": "59.4", "geom_point": "0101000020E61000009F6B88BFE0E85EC05C61B0D1A82D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.640846102999959, 48.354958369000087 ], [ -123.641498449999972, 48.354972927000041 ], [ -123.641319054999954, 48.358576152000168 ], [ -123.635936424999926, 48.358455917000057 ], [ -123.635963779999898, 48.35790774700007 ], [ -123.63611622800002, 48.354852700000052 ], [ -123.640846102999959, 48.354958369000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33045917", "BldgCostT": "21106667", "sL_LossRatio": "0.810348209871552", "sL_AssetLoss": "15297.757", "sL_BldgLoss": "12396.51", "sL_StrLoss": "10236.01", "sL_NStrLoss": "2160.5", "sL_ContLoss": "2901.247", "geom_point": "0101000020E6100000967011AD4FE75EC0DF9686E9142D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.614472479999975, 48.357715655000078 ], [ -123.614563564999969, 48.355906817000111 ], [ -123.613933418999963, 48.355892594000096 ], [ -123.613844923999963, 48.35764953100005 ], [ -123.608462469999921, 48.357527897000097 ], [ -123.608644358, 48.353924721000062 ], [ -123.609654756999973, 48.353947575000099 ], [ -123.609651035999946, 48.35363564700004 ], [ -123.610162206999959, 48.353632937000036 ], [ -123.610189479000013, 48.353092287000024 ], [ -123.610059687999978, 48.353089353000058 ], [ -123.610111647999972, 48.352059283000081 ], [ -123.610075049999935, 48.352058456000094 ], [ -123.610174399999934, 48.350088845000137 ], [ -123.611389993, 48.348480861 ], [ -123.611412494999911, 48.348481369000133 ], [ -123.61141413, 48.348448932000075 ], [ -123.61234372499996, 48.34721918100005 ], [ -123.613138846999973, 48.346165680000112 ], [ -123.617413323, 48.346262134000028 ], [ -123.61737638299995, 48.346996779000044 ], [ -123.619413394999924, 48.347042684 ], [ -123.619232351000022, 48.350645921000108 ], [ -123.618825594999961, 48.350636758000043 ], [ -123.618780781999988, 48.351528428000087 ], [ -123.618597277000021, 48.351524294000072 ], [ -123.618556011999956, 48.352345239000059 ], [ -123.61846286199993, 48.354198356999987 ], [ -123.618704473999983, 48.354203800000079 ], [ -123.61668910500002, 48.357765653000087 ], [ -123.614472479999975, 48.357715655000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.96078431372549", "sL_AssetLoss": "816", "sL_BldgLoss": "784", "sL_StrLoss": "697", "sL_NStrLoss": "87", "sL_ContLoss": "32", "geom_point": "0101000020E6100000AA5093CF21E85EC0B7594091BC2A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.628191816999987, 48.33338633699999 ], [ -123.628320280999958, 48.33338922100004 ], [ -123.627856688999884, 48.334157012000048 ], [ -123.627376304999984, 48.334465999000045 ], [ -123.627121098999936, 48.334521592000044 ], [ -123.626646989999941, 48.334416200000106 ], [ -123.625952806999948, 48.333917535000083 ], [ -123.625976601000019, 48.333442482000088 ], [ -123.627411977999913, 48.333474726000105 ], [ -123.62741534599995, 48.333407418000029 ], [ -123.62818989099999, 48.333424808000103 ], [ -123.628191816999987, 48.33338633699999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4743917", "BldgCostT": "3271667", "sL_LossRatio": "0.99626186286173", "sL_AssetLoss": "2494.023", "sL_BldgLoss": "2484.7", "sL_StrLoss": "2363", "sL_NStrLoss": "121.7", "sL_ContLoss": "9.323", "geom_point": "0101000020E61000004D7BCE06AEE85EC08527EC894B2C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63476109, 48.344232347000059 ], [ -123.638402137999904, 48.344313777000046 ], [ -123.638239493, 48.347577098000073 ], [ -123.638222547999959, 48.347917062000064 ], [ -123.632841135999939, 48.347796667000104 ], [ -123.633021133999961, 48.34419339 ], [ -123.63476109, 48.344232347000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "0.985217775952861", "sL_AssetLoss": "2489.003", "sL_BldgLoss": "2452.21", "sL_StrLoss": "2271.39", "sL_NStrLoss": "180.82", "sL_ContLoss": "36.793", "geom_point": "0101000020E6100000AEC7121072E85EC013CA4E81C42B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.631601732999954, 48.340122619000155 ], [ -123.634742130999939, 48.340192960000095 ], [ -123.634562278999979, 48.343796265000137 ], [ -123.63445639, 48.343793895000076 ], [ -123.629181342999942, 48.343675683000114 ], [ -123.629361604999986, 48.34007238700012 ], [ -123.631601732999954, 48.340122619000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.986736488036083", "sL_AssetLoss": "523.24", "sL_BldgLoss": "516.3", "sL_StrLoss": "467", "sL_NStrLoss": "49.3", "sL_ContLoss": "6.94", "geom_point": "0101000020E61000003D661CFAD9EC5EC015A5E78A102D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.700469174999938, 48.351684174000077 ], [ -123.703373208999921, 48.351747313000104 ], [ -123.70239848599995, 48.352379670000097 ], [ -123.698880490999954, 48.352539002000064 ], [ -123.698922435999933, 48.351675335000074 ], [ -123.700467970999966, 48.351708971000022 ], [ -123.700469174999938, 48.351684174000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997817065629586", "sL_AssetLoss": "134.223", "sL_BldgLoss": "133.93", "sL_StrLoss": "130", "sL_NStrLoss": "3.93", "sL_ContLoss": "0.293", "geom_point": "0101000020E61000002C284EE686E95EC0E2AAD3FD73284840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.648040832000035, 48.315369629000074 ], [ -123.64965929399996, 48.315360498000082 ], [ -123.649676424999953, 48.316709916000036 ], [ -123.64805792099996, 48.316719047000078 ], [ -123.648040832000035, 48.315369629000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993231513449197", "sL_AssetLoss": "512.67", "sL_BldgLoss": "509.2", "sL_StrLoss": "481", "sL_NStrLoss": "28.2", "sL_ContLoss": "3.47", "geom_point": "0101000020E6100000AD4F7B429DE85EC0AF7F954BFC2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.634099879999937, 48.374193918000032 ], [ -123.636638064999914, 48.374250673000056 ], [ -123.636225605999968, 48.374470706000089 ], [ -123.635119497999938, 48.37450339800008 ], [ -123.635189211999958, 48.374755493000059 ], [ -123.635664504999966, 48.37485230900009 ], [ -123.635758896999917, 48.374940598000123 ], [ -123.635761382999974, 48.375157102000045 ], [ -123.635372802999925, 48.375393505000034 ], [ -123.635603594999964, 48.375508888000084 ], [ -123.63563338499992, 48.375671291000117 ], [ -123.635564047999978, 48.37574273900011 ], [ -123.6332674799999, 48.375465767 ], [ -123.633499441999973, 48.374960607000027 ], [ -123.633440895999968, 48.374762381000103 ], [ -123.633425452999916, 48.374483964000049 ], [ -123.633329272999916, 48.374176675000058 ], [ -123.634099879999937, 48.374193918000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119975667", "BldgCostT": "79796667", "sL_LossRatio": "0.987613437206951", "sL_AssetLoss": "56247.969", "sL_BldgLoss": "55551.25", "sL_StrLoss": "52023.87", "sL_NStrLoss": "3527.38", "sL_ContLoss": "696.719", "geom_point": "0101000020E6100000F69C2E6A7BE95EC05F94B0A1612D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63309096899998, 48.368794443000091 ], [ -123.633092468, 48.368764445000132 ], [ -123.633047802999968, 48.368763446000131 ], [ -123.630467021999962, 48.368705643000148 ], [ -123.630533816999957, 48.367370549000107 ], [ -123.629314458999943, 48.367343216000052 ], [ -123.629494799999989, 48.363740065000101 ], [ -123.631317737999922, 48.363780922000053 ], [ -123.631359270999923, 48.362950408000096 ], [ -123.631775803999943, 48.362959739000068 ], [ -123.631894978999924, 48.360576014000102 ], [ -123.63364075099993, 48.36061510500015 ], [ -123.637277839999982, 48.360696455000024 ], [ -123.637263767999968, 48.360978561000088 ], [ -123.637759638999981, 48.360989642000092 ], [ -123.637674163, 48.362703588000088 ], [ -123.638741027999956, 48.362727421000059 ], [ -123.638757809999944, 48.362390789000088 ], [ -123.640733129999944, 48.362434888000081 ], [ -123.640740837999914, 48.362280137000042 ], [ -123.646123915999908, 48.362400127000022 ], [ -123.646085775999936, 48.363167624000056 ], [ -123.64676360499999, 48.363182714000047 ], [ -123.646796809999941, 48.362514356000098 ], [ -123.64634856899994, 48.362504379000029 ], [ -123.646475673999973, 48.359946248000043 ], [ -123.6452501799999, 48.359918958000058 ], [ -123.645277304999979, 48.359373306000087 ], [ -123.644695492999972, 48.359360345000013 ], [ -123.644717333999964, 48.358921074000136 ], [ -123.643687282999977, 48.358898120000035 ], [ -123.643697279999955, 48.358697154 ], [ -123.641639422, 48.358651266000024 ], [ -123.64181879299997, 48.355048040000071 ], [ -123.64326930599999, 48.355080390000111 ], [ -123.647201049999936, 48.355167977000058 ], [ -123.647191069999963, 48.355368944000126 ], [ -123.649248790999977, 48.355414724000084 ], [ -123.649232861999977, 48.355735718000076 ], [ -123.65005324599997, 48.355753959000054 ], [ -123.650080459999913, 48.355205345000087 ], [ -123.652780954999955, 48.355265345000127 ], [ -123.652872947999967, 48.353408507000104 ], [ -123.653463726999945, 48.35342162400017 ], [ -123.653465743999988, 48.353380900000076 ], [ -123.652784541999935, 48.353365775000029 ], [ -123.65280298499998, 48.352993520000055 ], [ -123.651552521, 48.352965744000045 ], [ -123.651572325999965, 48.352566195000136 ], [ -123.651195057999971, 48.352557812000057 ], [ -123.651147562999981, 48.353515827000052 ], [ -123.645765481999916, 48.353396091000064 ], [ -123.645767539999937, 48.353354675 ], [ -123.643052624999882, 48.353294171000094 ], [ -123.64298810199999, 48.354591124000102 ], [ -123.64281672299991, 48.354587301999977 ], [ -123.64133599199999, 48.354554272000016 ], [ -123.63992522299999, 48.354522782000075 ], [ -123.639905598999945, 48.354916699000121 ], [ -123.634523386999959, 48.354796390000111 ], [ -123.634703284999958, 48.351193153000096 ], [ -123.636141593999966, 48.351225331000066 ], [ -123.636181369, 48.35042808700009 ], [ -123.637450293999947, 48.350456460000018 ], [ -123.641563087999927, 48.350548312000086 ], [ -123.641543010999953, 48.350951638000055 ], [ -123.64209673199997, 48.350963992000068 ], [ -123.642161274999978, 48.349667033000095 ], [ -123.646513718999984, 48.349764040000039 ], [ -123.646537162999934, 48.349292070000011 ], [ -123.646559247999988, 48.348847437000089 ], [ -123.648754466999904, 48.34889629700006 ], [ -123.651918389999935, 48.348966636000043 ], [ -123.651930121999968, 48.34872991000001 ], [ -123.648729558999946, 48.348658755000066 ], [ -123.646751498999919, 48.348614731000033 ], [ -123.646836645999912, 48.346900244000096 ], [ -123.646701498000013, 48.346897234000096 ], [ -123.646733638999976, 48.346250060000074 ], [ -123.64595040899998, 48.346232617000034 ], [ -123.646129405999901, 48.342629308000021 ], [ -123.646947327999925, 48.342647523000089 ], [ -123.646947470999933, 48.342644628000059 ], [ -123.64810169199994, 48.342670323000114 ], [ -123.648113334999948, 48.342670582000046 ], [ -123.648145158999981, 48.342029354000097 ], [ -123.648775874999941, 48.342043390000079 ], [ -123.648807399999896, 48.341408016000116 ], [ -123.648817478999959, 48.34120486800002 ], [ -123.649876189999958, 48.341228420000071 ], [ -123.64988604499996, 48.341029694000099 ], [ -123.655266732999976, 48.341149224000063 ], [ -123.655263625, 48.341212019000061 ], [ -123.65516439699995, 48.343217462000105 ], [ -123.658221549999922, 48.343285252000101 ], [ -123.658192530999926, 48.343872447000074 ], [ -123.660158915999929, 48.343916003000096 ], [ -123.660123605999956, 48.344631105000062 ], [ -123.660414346999943, 48.344637543000097 ], [ -123.661522508999923, 48.344662070000062 ], [ -123.661378543999959, 48.347579196000027 ], [ -123.661838368999923, 48.347589369000062 ], [ -123.66166054899999, 48.351192675000128 ], [ -123.66141355699996, 48.351187211000088 ], [ -123.660445344999928, 48.351165784000081 ], [ -123.660429956999977, 48.351477439000099 ], [ -123.660672739999967, 48.3514828120001 ], [ -123.66049481599994, 48.355086091000047 ], [ -123.65995653799996, 48.355074177000077 ], [ -123.659931222999916, 48.355586704000153 ], [ -123.658996888000019, 48.355566016000054 ], [ -123.658969713999966, 48.356115926000072 ], [ -123.65814028699999, 48.356097554 ], [ -123.658087166999948, 48.3571721100001 ], [ -123.659669611999973, 48.357207156000058 ], [ -123.659631388999912, 48.357980881000046 ], [ -123.659648459, 48.357981259000084 ], [ -123.659589577999952, 48.359173050000038 ], [ -123.659558873999941, 48.359794523000112 ], [ -123.659383197999929, 48.35975709000013 ], [ -123.659097499999945, 48.359614687000025 ], [ -123.658852004999915, 48.359399685000078 ], [ -123.658795888999975, 48.359139011000117 ], [ -123.65789610399996, 48.359557804000104 ], [ -123.657789974999957, 48.359721495000038 ], [ -123.656649220999896, 48.360204305000103 ], [ -123.655678902999909, 48.360416607000083 ], [ -123.654811509999945, 48.36008039900014 ], [ -123.654229087, 48.360002095 ], [ -123.653850587999955, 48.359824096000068 ], [ -123.65353508599999, 48.359493699000041 ], [ -123.653296106999989, 48.358792998000077 ], [ -123.653090682999945, 48.358523791000053 ], [ -123.652585281999976, 48.35805949500012 ], [ -123.652474977999958, 48.35780739400014 ], [ -123.652244189999962, 48.357773193000106 ], [ -123.652152214999958, 48.358008197000103 ], [ -123.653109211999919, 48.358973801000111 ], [ -123.653106000999969, 48.359693097000026 ], [ -123.652907487999968, 48.360000709000126 ], [ -123.652637212999977, 48.36005621 ], [ -123.652165410999956, 48.360023493000057 ], [ -123.652138189999945, 48.360077606000125 ], [ -123.652505917999989, 48.360381003000064 ], [ -123.653005511999964, 48.361385009000102 ], [ -123.653145018999965, 48.362698103000056 ], [ -123.65299881, 48.362960199000064 ], [ -123.65289920099994, 48.363572601000087 ], [ -123.652618520999965, 48.363907300000037 ], [ -123.652001881999965, 48.364207792000101 ], [ -123.651504907999978, 48.364335997000076 ], [ -123.651251386999945, 48.364679204000076 ], [ -123.650608205999958, 48.365006797000078 ], [ -123.650342608999935, 48.365278792000041 ], [ -123.650073, 48.365414096000059 ], [ -123.649345083999947, 48.365463996000074 ], [ -123.648540305999973, 48.365855603000057 ], [ -123.648134300999956, 48.36585699000004 ], [ -123.64704648599999, 48.365126396000143 ], [ -123.646865518999903, 48.364748999000042 ], [ -123.646389100999954, 48.364499796000082 ], [ -123.645680114999962, 48.363910100000055 ], [ -123.645526502999971, 48.363478611000083 ], [ -123.644673882999939, 48.363330499000043 ], [ -123.643647310999938, 48.363363201000055 ], [ -123.643623407999939, 48.36352559500007 ], [ -123.644060902999968, 48.363955710000049 ], [ -123.644011808999934, 48.364297495000102 ], [ -123.643676203999988, 48.364461305000077 ], [ -123.643486793999969, 48.364462711000058 ], [ -123.642970290000036, 48.364249101000084 ], [ -123.642267098999952, 48.364153692000073 ], [ -123.641462909999944, 48.364536803000128 ], [ -123.640815603999968, 48.36472048400006 ], [ -123.640671402999942, 48.365089399000112 ], [ -123.640386507999949, 48.364857192000045 ], [ -123.639656599999938, 48.364888589000039 ], [ -123.639372301999984, 48.364710501000026 ], [ -123.63903431199999, 48.364657806000032 ], [ -123.638790594999975, 48.36466779800007 ], [ -123.63840131099991, 48.364868587000096 ], [ -123.638212024999945, 48.364833004000097 ], [ -123.637802689999944, 48.364575297000023 ], [ -123.637720911999949, 48.364377293000054 ], [ -123.637230204999966, 48.364119510000073 ], [ -123.636942776999931, 48.363689393000129 ], [ -123.63595011399994, 48.363207993000067 ], [ -123.635729902000023, 48.362876213000057 ], [ -123.635461721999889, 48.362931704000097 ], [ -123.635050877999973, 48.363599694000129 ], [ -123.635224388999944, 48.364508297999983 ], [ -123.634849899999935, 48.364878605000072 ], [ -123.634521397999919, 48.365501002000066 ], [ -123.633940797999927, 48.365585014000061 ], [ -123.633905815999967, 48.365928293000074 ], [ -123.63399110200001, 48.366260112000049 ], [ -123.634250784999935, 48.366502196000056 ], [ -123.634622293999897, 48.36715591300004 ], [ -123.634651912999942, 48.367336793000057 ], [ -123.634304696999919, 48.367653001000122 ], [ -123.634402300999923, 48.367867998000108 ], [ -123.634658998999953, 48.367902210000075 ], [ -123.634913097, 48.367694304000082 ], [ -123.63511539599989, 48.367648702000054 ], [ -123.635426404999947, 48.367655809000034 ], [ -123.636007402999979, 48.367813900000108 ], [ -123.636375712999936, 48.368145693000045 ], [ -123.636766085999909, 48.369087109000112 ], [ -123.637040100999982, 48.369374794000088 ], [ -123.636994113999918, 48.369968691000075 ], [ -123.63661910799999, 48.370284910000052 ], [ -123.636596409999953, 48.370636699 ], [ -123.636726151999952, 48.371119015 ], [ -123.632978977999969, 48.371035202000037 ], [ -123.633000638999974, 48.370601807000057 ], [ -123.63309096899998, 48.368794443000091 ] ], [ [ -123.65266459299994, 48.346719353000054 ], [ -123.652713195999979, 48.345738210000029 ], [ -123.652656108, 48.34573694200008 ], [ -123.652607504999963, 48.346718084000031 ], [ -123.65266459299994, 48.346719353000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9553083", "BldgCostT": "6588333", "sL_LossRatio": "0.986478788859422", "sL_AssetLoss": "4987.497", "sL_BldgLoss": "4920.06", "sL_StrLoss": "4538.36", "sL_NStrLoss": "381.7", "sL_ContLoss": "67.437", "geom_point": "0101000020E610000015D63A2F1DEA5EC0442F0683A92E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.654038785999944, 48.366201699000044 ], [ -123.652840384999934, 48.365344304000054 ], [ -123.652719491999903, 48.365345710000028 ], [ -123.652572086999967, 48.365481098000025 ], [ -123.652329690999949, 48.365473911000038 ], [ -123.65219648899992, 48.36569900500006 ], [ -123.652008495999908, 48.365708906000023 ], [ -123.651965716999953, 48.365640113000048 ], [ -123.651995293999931, 48.36504347500005 ], [ -123.652387795999957, 48.364870097000086 ], [ -123.65282290899999, 48.364031185000087 ], [ -123.653170624, 48.363769103000074 ], [ -123.653441017, 48.363676598 ], [ -123.654168109999901, 48.363609608000026 ], [ -123.654533307999927, 48.363670894000059 ], [ -123.655338194999942, 48.363197987000049 ], [ -123.65626899599998, 48.363156697000122 ], [ -123.656576007999973, 48.362876198000059 ], [ -123.657628315999943, 48.362861903000066 ], [ -123.659662381999937, 48.362508694000077 ], [ -123.660254591999959, 48.362316512000071 ], [ -123.660588690999958, 48.362107111000121 ], [ -123.661639893999933, 48.361884891000052 ], [ -123.662162083999974, 48.361584393000093 ], [ -123.662212388999933, 48.361413499000072 ], [ -123.662088309999916, 48.361162804000102 ], [ -123.661694007999984, 48.360993404000055 ], [ -123.66122020899995, 48.360879394000051 ], [ -123.661149052999974, 48.36075818000009 ], [ -123.661655716999974, 48.360769387000062 ], [ -123.661715484999945, 48.360770709000086 ], [ -123.661745930999984, 48.360153948000089 ], [ -123.662950497999987, 48.360180583000044 ], [ -123.663174483999967, 48.361423698000117 ], [ -123.663147592999934, 48.362104809000108 ], [ -123.663188288999933, 48.362290596000079 ], [ -123.663228861999968, 48.363053542000031 ], [ -123.663235109999945, 48.363170885000059 ], [ -123.663343805999915, 48.363683631000043 ], [ -123.663267583999954, 48.363602491000115 ], [ -123.662712998999964, 48.363480001000056 ], [ -123.66229470899999, 48.363509903000057 ], [ -123.661717413999938, 48.36378340300012 ], [ -123.661195823999904, 48.36418220200003 ], [ -123.660377498999978, 48.364600904000021 ], [ -123.660287789, 48.364924207000101 ], [ -123.660464289999936, 48.364959792000057 ], [ -123.661219219999936, 48.364892902000044 ], [ -123.661365998999926, 48.364810194000079 ], [ -123.661363283999904, 48.364630794000114 ], [ -123.661457684999903, 48.36461229700005 ], [ -123.661716304999956, 48.364727595000069 ], [ -123.661746696999913, 48.364988299000025 ], [ -123.661042890999965, 48.365865608000071 ], [ -123.660011395999931, 48.366455202000026 ], [ -123.657929200999931, 48.367420810000098 ], [ -123.657625509999974, 48.367872309000091 ], [ -123.657209918999982, 48.368100205000083 ], [ -123.656156800999952, 48.368078795 ], [ -123.655706099999961, 48.367766895000038 ], [ -123.655473495999956, 48.367408001000101 ], [ -123.655523795999969, 48.367218606000058 ], [ -123.655297991999987, 48.366509302000097 ], [ -123.654824197999943, 48.366332688000035 ], [ -123.654038785999944, 48.366201699000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.997163933760857", "sL_AssetLoss": "394.208", "sL_BldgLoss": "393.09", "sL_StrLoss": "377", "sL_NStrLoss": "16.09", "sL_ContLoss": "1.118", "geom_point": "0101000020E61000005E07D68A99E75EC0F910B7B7992D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.618704473999983, 48.354203800000079 ], [ -123.62003599599997, 48.354233789000084 ], [ -123.619854971999985, 48.357836982000038 ], [ -123.61668910500002, 48.357765653000087 ], [ -123.618704473999983, 48.354203800000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.976476922275345", "sL_AssetLoss": "4030.51", "sL_BldgLoss": "3935.7", "sL_StrLoss": "3540", "sL_NStrLoss": "395.7", "sL_ContLoss": "94.81", "geom_point": "0101000020E6100000A68072E36FE85EC0ED031C8431304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.632148777999973, 48.379024156000078 ], [ -123.632182868999919, 48.37834244200014 ], [ -123.630976575999966, 48.378315427000061 ], [ -123.630987117999936, 48.378104726000046 ], [ -123.628753509999939, 48.378054670000061 ], [ -123.628816203999961, 48.376802712000071 ], [ -123.628933932999971, 48.374451585000067 ], [ -123.631330601999963, 48.374505294000066 ], [ -123.631349256999926, 48.37413234400006 ], [ -123.633329272999916, 48.374176675000058 ], [ -123.633425452999916, 48.374483964000049 ], [ -123.633440895999968, 48.374762381000103 ], [ -123.633499441999973, 48.374960607000027 ], [ -123.6332674799999, 48.375465767 ], [ -123.635564047999978, 48.37574273900011 ], [ -123.635274002999964, 48.376041607000062 ], [ -123.635004301, 48.376088602000081 ], [ -123.634803323999932, 48.376223903000039 ], [ -123.634776613999975, 48.376350607000077 ], [ -123.635061114999957, 48.376447494000097 ], [ -123.634849900999924, 48.376718110000077 ], [ -123.634565298999973, 48.376746488000052 ], [ -123.634500597999974, 48.376927410000093 ], [ -123.634582806999973, 48.377025708000161 ], [ -123.635464192999947, 48.377209389000043 ], [ -123.635478290999913, 48.377380300000063 ], [ -123.635251317999973, 48.377615301000048 ], [ -123.634915817999953, 48.377716398000068 ], [ -123.634228483999905, 48.377766302000047 ], [ -123.633673800999986, 48.377687899000058 ], [ -123.63362128899999, 48.377921499000081 ], [ -123.633733187999937, 48.378244807000094 ], [ -123.634227411999987, 48.378754687000033 ], [ -123.634844019999946, 48.379084464000094 ], [ -123.632148777999973, 48.379024156000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.972334364193111", "sL_AssetLoss": "1312.82", "sL_BldgLoss": "1276.5", "sL_StrLoss": "1104", "sL_NStrLoss": "172.5", "sL_ContLoss": "36.32", "geom_point": "0101000020E610000022853629DAE65EC015069FC556304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.603651133999961, 48.37876799500004 ], [ -123.604914543999953, 48.377141962000039 ], [ -123.60709557899996, 48.377130472000033 ], [ -123.607092370999965, 48.376860590000049 ], [ -123.607902580999905, 48.376856312000015 ], [ -123.607899366999945, 48.376586429000049 ], [ -123.60911467899993, 48.376580001000029 ], [ -123.609121115999969, 48.377119766000114 ], [ -123.609526224999954, 48.377117621000124 ], [ -123.609535888999957, 48.377927268000114 ], [ -123.609130775999944, 48.377929413000032 ], [ -123.609137215999908, 48.378469179000071 ], [ -123.607921859999919, 48.378475606000045 ], [ -123.607918647999952, 48.378205724000054 ], [ -123.604677715999941, 48.378222805000043 ], [ -123.60468091199999, 48.378492688000065 ], [ -123.604275794999978, 48.378494816000071 ], [ -123.604278987999962, 48.37876469800004 ], [ -123.603651133999961, 48.37876799500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002501", "BldgCostT": "3450001", "sL_LossRatio": "0.970255467495775", "sL_AssetLoss": "4721.54", "sL_BldgLoss": "4581.1", "sL_StrLoss": "4011", "sL_NStrLoss": "570.1", "sL_ContLoss": "140.44", "geom_point": "0101000020E6100000BD576B30E6E65EC02C8D0C307B314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.605305297999934, 48.390337533000093 ], [ -123.605346748999978, 48.389518136000106 ], [ -123.60401962799989, 48.389488086000071 ], [ -123.604201976999931, 48.385885114000097 ], [ -123.606256772, 48.385931634000066 ], [ -123.606284923999965, 48.385374863000045 ], [ -123.607121925999962, 48.385393801000127 ], [ -123.607203775999906, 48.383774381000123 ], [ -123.612589210999928, 48.383896073000081 ], [ -123.612536623999944, 48.384938874000078 ], [ -123.615228878999929, 48.384999607000033 ], [ -123.61517990699997, 48.385971773000023 ], [ -123.615961409999969, 48.385989390000098 ], [ -123.615940047999956, 48.38641358400006 ], [ -123.610903023999981, 48.384455893000059 ], [ -123.609501067999986, 48.386078116000064 ], [ -123.605973485999954, 48.390673735000071 ], [ -123.605301326999921, 48.390422120000068 ], [ -123.605060574999968, 48.390331993000054 ], [ -123.605305297999934, 48.390337533000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12326751", "BldgCostT": "7820001", "sL_LossRatio": "0.680409457401018", "sL_AssetLoss": "12808.17", "sL_BldgLoss": "8714.8", "sL_StrLoss": "5948.1", "sL_NStrLoss": "2766.7", "sL_ContLoss": "4093.37", "geom_point": "0101000020E610000062D5DEAF5BE85EC0EE04242F25314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.629738326, 48.387412930000096 ], [ -123.62891024799994, 48.386151491000113 ], [ -123.626731731999953, 48.386805098000089 ], [ -123.62568753799998, 48.385180300000073 ], [ -123.625703707999946, 48.384857858000046 ], [ -123.62548110199999, 48.384859068 ], [ -123.625405395999962, 48.384741260000041 ], [ -123.624146121999942, 48.385085388000093 ], [ -123.62299667399995, 48.385399472000074 ], [ -123.622993536999942, 48.385142464000062 ], [ -123.623398706999978, 48.385140270000072 ], [ -123.62339211699998, 48.384600507000059 ], [ -123.623797280999966, 48.384598311000076 ], [ -123.623790684999946, 48.384058548000056 ], [ -123.624195845999949, 48.384056351000069 ], [ -123.62418594699993, 48.383246706000122 ], [ -123.62459110199994, 48.383244508000104 ], [ -123.624587799999944, 48.382974626000056 ], [ -123.625798479999943, 48.382968047000119 ], [ -123.625816508999932, 48.382608535000024 ], [ -123.625927975999915, 48.382611036000085 ], [ -123.625963441999943, 48.381903736000041 ], [ -123.629120397999912, 48.381974549000056 ], [ -123.631348711999948, 48.382024474000083 ], [ -123.631263127999944, 48.383735114000039 ], [ -123.633613380999975, 48.383787721000111 ], [ -123.633771406, 48.380625924000086 ], [ -123.636403338999955, 48.380684774000024 ], [ -123.636482780999984, 48.381081800000047 ], [ -123.636954307999986, 48.380890998000041 ], [ -123.63733259699994, 48.380896690000064 ], [ -123.63787369799995, 48.381020614000143 ], [ -123.638133880999973, 48.381207199000123 ], [ -123.638355121999922, 48.381611604000042 ], [ -123.638106195999967, 48.382377901000062 ], [ -123.637368590999984, 48.382705391000052 ], [ -123.637193888999988, 48.382850707000074 ], [ -123.637250282999943, 48.382967502000049 ], [ -123.63669811199999, 48.383024506000091 ], [ -123.636301718999931, 48.382692605000038 ], [ -123.636206519, 48.382694007000111 ], [ -123.635983584999977, 48.383172601000062 ], [ -123.635577492, 48.383155511999988 ], [ -123.635443606999942, 48.383300790000057 ], [ -123.635024500999918, 48.383276484000078 ], [ -123.634924620999968, 48.383879002000072 ], [ -123.634548891999913, 48.384096898000095 ], [ -123.634536699999927, 48.384150996000052 ], [ -123.634726013999938, 48.38420509300002 ], [ -123.634811591999963, 48.384518507000045 ], [ -123.634573476999904, 48.384835010000067 ], [ -123.63454588399999, 48.384871697000058 ], [ -123.634613649999949, 48.384914722000069 ], [ -123.634981205999935, 48.38514799900004 ], [ -123.634968919999935, 48.385264706000015 ], [ -123.63522838499992, 48.385434194000069 ], [ -123.635310977999978, 48.385564191000064 ], [ -123.634876284999976, 48.385435576000098 ], [ -123.634467300999987, 48.385084235000072 ], [ -123.634352226999923, 48.384697505000098 ], [ -123.634351578999954, 48.384695376000074 ], [ -123.634091746999943, 48.383879510000071 ], [ -123.633918330999904, 48.3835355350001 ], [ -123.63393640299995, 48.385577941000072 ], [ -123.633860123999966, 48.385808123000025 ], [ -123.633612069999941, 48.386080931000087 ], [ -123.633257832999959, 48.386388410000059 ], [ -123.63302351899992, 48.386678002000075 ], [ -123.632377694999903, 48.386525917000029 ], [ -123.632169916999942, 48.387041612000104 ], [ -123.632059414999944, 48.387177679000033 ], [ -123.631909824000033, 48.387361879000053 ], [ -123.630178327999957, 48.386845636000082 ], [ -123.629738326, 48.387412930000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994882954946477", "sL_AssetLoss": "340.04", "sL_BldgLoss": "338.3", "sL_StrLoss": "323", "sL_NStrLoss": "15.3", "sL_ContLoss": "1.74", "geom_point": "0101000020E61000008D14C2510FF05EC05B3941BCAA334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.7505080599999, 48.404353878000116 ], [ -123.75050409, 48.404084004000062 ], [ -123.750098779999959, 48.404086647000064 ], [ -123.75008290699995, 48.403007153000047 ], [ -123.751704109999977, 48.40299657300006 ], [ -123.751723996999914, 48.404345939000059 ], [ -123.7505080599999, 48.404353878000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11759500", "BldgCostT": "8110000", "sL_LossRatio": "0.967878037608268", "sL_AssetLoss": "14386.73", "sL_BldgLoss": "13924.6", "sL_StrLoss": "11880.6", "sL_NStrLoss": "2044", "sL_ContLoss": "462.13", "geom_point": "0101000020E610000082A646646FEF5EC0F9F9085F8C334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.738472905999956, 48.405985470000104 ], [ -123.738604215999899, 48.403237698 ], [ -123.736238688999947, 48.40318712100008 ], [ -123.73638782099999, 48.40006924100004 ], [ -123.738857090999943, 48.399326989000045 ], [ -123.739214793999963, 48.399316001000031 ], [ -123.739696611999975, 48.399088095000089 ], [ -123.739982117999944, 48.399095196000076 ], [ -123.740122943999964, 48.399167050000052 ], [ -123.740347910999958, 48.399281807000108 ], [ -123.740533009000018, 48.399509661000096 ], [ -123.740776007999941, 48.399808811000064 ], [ -123.741075307999921, 48.400032390000092 ], [ -123.742798094, 48.400479607000122 ], [ -123.743365197999978, 48.40071875600006 ], [ -123.743723648999918, 48.40086993200002 ], [ -123.743852562, 48.40092429800012 ], [ -123.743871990999978, 48.400932496000053 ], [ -123.744481009999944, 48.400999399000099 ], [ -123.74480669099999, 48.401133300000062 ], [ -123.746471793999902, 48.401265689000113 ], [ -123.747392309999938, 48.401520693000123 ], [ -123.747547069999939, 48.401540697000037 ], [ -123.747525014999923, 48.402004100000063 ], [ -123.746795947999956, 48.40198857900004 ], [ -123.746786694999969, 48.402182918000094 ], [ -123.745668257999938, 48.40215909700003 ], [ -123.745665053999943, 48.402226345000088 ], [ -123.745467158999944, 48.402222130000105 ], [ -123.745312816999942, 48.405461744000071 ], [ -123.743893090999961, 48.405431487000087 ], [ -123.743861195999969, 48.406100477000088 ], [ -123.738472905999956, 48.405985470000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10693750", "BldgCostT": "7375000", "sL_LossRatio": "0.951368738331421", "sL_AssetLoss": "17782.8", "sL_BldgLoss": "16918", "sL_StrLoss": "13990", "sL_NStrLoss": "2928", "sL_ContLoss": "864.8", "geom_point": "0101000020E6100000F20092C051F05EC08134EF7AE1324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.748085427999939, 48.397570436000066 ], [ -123.750252826999912, 48.396893437000081 ], [ -123.752418412999972, 48.396216938000137 ], [ -123.752664898999981, 48.396139906000016 ], [ -123.753021596999986, 48.396037324000112 ], [ -123.759263722999918, 48.39414731600008 ], [ -123.7602604799999, 48.394168422000043 ], [ -123.760106690999976, 48.397418366000103 ], [ -123.760089974999957, 48.397771604000056 ], [ -123.759027523999976, 48.397749107000074 ], [ -123.758926943999938, 48.399873326000019 ], [ -123.753539326999913, 48.399759085000078 ], [ -123.753650395999983, 48.397418963000035 ], [ -123.751714084999918, 48.397377838000082 ], [ -123.751706832999929, 48.397530512000095 ], [ -123.75121812799992, 48.397520126000131 ], [ -123.751231248999943, 48.398411372000083 ], [ -123.750015455, 48.398419303000111 ], [ -123.750023388999949, 48.398959051000084 ], [ -123.749980214999979, 48.398959332000075 ], [ -123.749926901999942, 48.400080748000107 ], [ -123.749846721999944, 48.400079042000065 ], [ -123.749802047999935, 48.401018648000047 ], [ -123.748064759999963, 48.400981691000084 ], [ -123.748085427999939, 48.397570436000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3765250", "BldgCostT": "2125000", "sL_LossRatio": "0.982028703653683", "sL_AssetLoss": "222.132", "sL_BldgLoss": "218.14", "sL_StrLoss": "178.44", "sL_NStrLoss": "39.7", "sL_ContLoss": "3.992", "geom_point": "0101000020E61000001D64C4CB74F05EC0655FA20FD0304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.756463914999983, 48.380336594 ], [ -123.758535814999959, 48.379850138000059 ], [ -123.758397082999963, 48.382780593000049 ], [ -123.756672932999948, 48.382744040000027 ], [ -123.754914974999934, 48.380700248000046 ], [ -123.756463914999983, 48.380336594 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31078417", "BldgCostT": "20961667", "sL_LossRatio": "0.968138924781706", "sL_AssetLoss": "25539", "sL_BldgLoss": "24725.3", "sL_StrLoss": "21729.3", "sL_NStrLoss": "2996", "sL_ContLoss": "813.7", "geom_point": "0101000020E61000009E98EDF1DFF35EC072974892B5304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.809540288, 48.384490499000051 ], [ -123.809583337999982, 48.383559964000057 ], [ -123.809290333999968, 48.38355389700007 ], [ -123.809295098999954, 48.383450897000053 ], [ -123.807130261999987, 48.383406041000072 ], [ -123.8072470499999, 48.380884301000087 ], [ -123.806543851999947, 48.380869722000028 ], [ -123.80639254099998, 48.38413580600011 ], [ -123.8010066, 48.384023978000123 ], [ -123.801036159999953, 48.383387515000081 ], [ -123.799758492, 48.383360947000043 ], [ -123.799856345999942, 48.381255139000103 ], [ -123.799860776999978, 48.3812519680001 ], [ -123.800028622999974, 48.381131904000085 ], [ -123.800545712999934, 48.380706198000063 ], [ -123.800955811999955, 48.380437010000072 ], [ -123.801473814, 48.380252102000064 ], [ -123.801939342999958, 48.38004421600003 ], [ -123.802241676999955, 48.379909198000085 ], [ -123.803295604999931, 48.379473911000055 ], [ -123.803987108999948, 48.379296197000038 ], [ -123.804638801999943, 48.379190701000027 ], [ -123.80512870599992, 48.379029608000096 ], [ -123.80610449699999, 48.378388895000036 ], [ -123.806467407999961, 48.378262897000077 ], [ -123.806591960999953, 48.378236197000057 ], [ -123.806923399, 48.37816510400004 ], [ -123.80793293899994, 48.377994787000056 ], [ -123.808723021, 48.377861494000037 ], [ -123.809046691, 48.377740189000065 ], [ -123.809860981999989, 48.377235894000066 ], [ -123.810363906999939, 48.376998294000074 ], [ -123.810674437000017, 48.376915153000041 ], [ -123.81081689899996, 48.376877009000083 ], [ -123.812466423999965, 48.376496304000092 ], [ -123.813081519999983, 48.376313905000075 ], [ -123.813134502999944, 48.376298203000012 ], [ -123.813498802999931, 48.376141596000082 ], [ -123.813558594999932, 48.37611147100003 ], [ -123.814486695999932, 48.375643600000075 ], [ -123.815905799999953, 48.375172399000043 ], [ -123.816021036999928, 48.375144147000121 ], [ -123.816462488999946, 48.375035876000013 ], [ -123.817198814999983, 48.374855306000079 ], [ -123.817211499, 48.374852216000114 ], [ -123.817827599999973, 48.374553890000122 ], [ -123.818278880999969, 48.374409900000082 ], [ -123.818283476999937, 48.374408770000066 ], [ -123.818132045999931, 48.377695537000079 ], [ -123.818120204999929, 48.37769529200007 ], [ -123.817991194999962, 48.38049503200007 ], [ -123.814825570999972, 48.380429679000024 ], [ -123.814824292999944, 48.380457374000045 ], [ -123.817599765999958, 48.380514677000058 ], [ -123.817433672999982, 48.384118033000036 ], [ -123.814950997, 48.384066780000062 ], [ -123.814926301999947, 48.384601894000085 ], [ -123.809540288, 48.384490499000051 ] ], [ [ -123.812627386999964, 48.379913062000149 ], [ -123.812661319999904, 48.379178494000051 ], [ -123.811330465999959, 48.379150963000036 ], [ -123.811352597999985, 48.378672149000053 ], [ -123.81064831, 48.378657573000041 ], [ -123.810621237999939, 48.379243116000097 ], [ -123.81054802599995, 48.379241602000072 ], [ -123.810518995999956, 48.379869438000121 ], [ -123.812627386999964, 48.379913062000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994120272446782", "sL_AssetLoss": "515.33", "sL_BldgLoss": "512.3", "sL_StrLoss": "487", "sL_NStrLoss": "25.3", "sL_ContLoss": "3.03", "geom_point": "0101000020E6100000C9865E14F7ED5EC0C7971616D8354840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.717701552999969, 48.418959183000013 ], [ -123.718717767999919, 48.418981087000127 ], [ -123.718544009999945, 48.42258405000009 ], [ -123.717857674999919, 48.422569257000134 ], [ -123.717701552999969, 48.418959183000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200692251", "BldgCostT": "134045001", "sL_LossRatio": "0.9605221753882", "sL_AssetLoss": "220675.28", "sL_BldgLoss": "211963.5", "sL_StrLoss": "180885.4", "sL_NStrLoss": "31078.1", "sL_ContLoss": "8711.78", "geom_point": "0101000020E61000004C11C7570EF25EC0AD302A67F7314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.779310511999967, 48.407690639000116 ], [ -123.779404296999985, 48.405692098000031 ], [ -123.779262175999961, 48.40568911600009 ], [ -123.779252973999945, 48.40588520600005 ], [ -123.778986248999942, 48.405879609000088 ], [ -123.778932423999933, 48.407026410000107 ], [ -123.773543944999943, 48.406913188000054 ], [ -123.77371345899995, 48.403310042000037 ], [ -123.77381139799995, 48.403312102000079 ], [ -123.773914301, 48.4011244450001 ], [ -123.773940692999986, 48.400563333 ], [ -123.773121503999974, 48.400546096000042 ], [ -123.773254201999961, 48.397725667000039 ], [ -123.773107271999947, 48.397726654000081 ], [ -123.773139987999954, 48.399885632000057 ], [ -123.77273471299999, 48.399888355000016 ], [ -123.772738802000021, 48.400158227000063 ], [ -123.772333524999937, 48.400160948000106 ], [ -123.772337608999976, 48.400430820000075 ], [ -123.772295583999892, 48.400431102 ], [ -123.772262108999954, 48.401142283000077 ], [ -123.772161852999957, 48.403272088000044 ], [ -123.770622577999958, 48.403239673000073 ], [ -123.77061819499994, 48.403332727000176 ], [ -123.769919428999984, 48.40331800400007 ], [ -123.769919365999954, 48.403319344000082 ], [ -123.765791529999902, 48.403232277000093 ], [ -123.765548576999933, 48.403084393 ], [ -123.76471179, 48.403188390000068 ], [ -123.764674898999928, 48.403208696000014 ], [ -123.7645313299999, 48.403205663000044 ], [ -123.764585448999966, 48.402059933000075 ], [ -123.760623457999927, 48.401976165000058 ], [ -123.760649359999974, 48.40142876000008 ], [ -123.760793938999882, 48.398373008000071 ], [ -123.76126695, 48.398383017000107 ], [ -123.761271424999919, 48.398288419000032 ], [ -123.761994343999973, 48.398303712000015 ], [ -123.762013015999955, 48.397908836000028 ], [ -123.762987328999927, 48.397929439000038 ], [ -123.762995818999954, 48.397749798000085 ], [ -123.762642580999938, 48.397742330000014 ], [ -123.76271945199997, 48.396116083000067 ], [ -123.762812892999975, 48.394139144000057 ], [ -123.764043800999914, 48.394165165000025 ], [ -123.764087591999967, 48.393238073000042 ], [ -123.769091184, 48.393343697000084 ], [ -123.769215731, 48.39070089100003 ], [ -123.773865586999946, 48.390798836000052 ], [ -123.774602354999971, 48.390814336000098 ], [ -123.774568202999959, 48.391540807000091 ], [ -123.775335688999988, 48.391556949000154 ], [ -123.77535206099999, 48.391208544000072 ], [ -123.776792665999935, 48.391238827000052 ], [ -123.776828242999969, 48.390481278000024 ], [ -123.776912377999935, 48.390483046000092 ], [ -123.776940871999926, 48.38987627800001 ], [ -123.780351232999976, 48.389947886000094 ], [ -123.780467748, 48.387462792000072 ], [ -123.78060288599994, 48.387409638000037 ], [ -123.782614884999987, 48.387451831000114 ], [ -123.785856645999928, 48.387519731000083 ], [ -123.78582427399999, 48.388211893000069 ], [ -123.78587210699996, 48.388212894000041 ], [ -123.785947500999939, 48.386600790000031 ], [ -123.786585837999951, 48.386614149000053 ], [ -123.786613806999981, 48.386015905000065 ], [ -123.786806784999953, 48.386019943000115 ], [ -123.786820122, 48.385734635000034 ], [ -123.785173467999982, 48.385700171000032 ], [ -123.785168099999936, 48.385814924000044 ], [ -123.784683436999941, 48.385804776000057 ], [ -123.78218867799994, 48.385752500000109 ], [ -123.780178947999914, 48.381208521000076 ], [ -123.777747676999951, 48.378951723000071 ], [ -123.775800666999942, 48.376371925000029 ], [ -123.776167500999946, 48.376379639000078 ], [ -123.776178357999967, 48.376148416000049 ], [ -123.776529232999906, 48.376155794000141 ], [ -123.776545462999977, 48.375810124000068 ], [ -123.776764019999959, 48.375814719000147 ], [ -123.776779972999947, 48.375474929000028 ], [ -123.776962073999982, 48.375478757000067 ], [ -123.776978382999928, 48.375131333000041 ], [ -123.77746031, 48.375141462000052 ], [ -123.777468253999984, 48.374972209000092 ], [ -123.77818140399998, 48.374764710000079 ], [ -123.778229152999955, 48.374765713000052 ], [ -123.778229861999989, 48.374750611000124 ], [ -123.779809813, 48.37429088100005 ], [ -123.78004618599999, 48.374720417000077 ], [ -123.782841465999979, 48.374193901000098 ], [ -123.783645247999956, 48.374210749000042 ], [ -123.783574593999958, 48.375720357 ], [ -123.787304406999951, 48.375798458000098 ], [ -123.78726758199997, 48.37658655900006 ], [ -123.787746217999981, 48.376596572000025 ], [ -123.787789991999887, 48.375659553000034 ], [ -123.7868281699999, 48.375639431000074 ], [ -123.786948158999948, 48.373071882000076 ], [ -123.786102417999956, 48.373077663000068 ], [ -123.78610657099992, 48.373347536000097 ], [ -123.784891383999977, 48.373355834000115 ], [ -123.784878942, 48.372546215000078 ], [ -123.784687226999949, 48.372547523000037 ], [ -123.784415238999969, 48.370390171000111 ], [ -123.786060875999951, 48.370378937000048 ], [ -123.78607333799999, 48.371188556000057 ], [ -123.788735832, 48.371170332000119 ], [ -123.788773648999964, 48.370360371000075 ], [ -123.787275991999962, 48.370370629000021 ], [ -123.78726488199996, 48.36964983300004 ], [ -123.785644057999974, 48.369615904000121 ], [ -123.785647534999953, 48.369841958000059 ], [ -123.784432430999971, 48.369850251000102 ], [ -123.784428441, 48.369590441000064 ], [ -123.784314117999941, 48.369588046000089 ], [ -123.784014524999961, 48.367211423000057 ], [ -123.785036580999986, 48.366202894 ], [ -123.785423985999969, 48.365820601000031 ], [ -123.785800192999943, 48.365612105000039 ], [ -123.7863553, 48.365353196000022 ], [ -123.787124409999976, 48.365184484000025 ], [ -123.788013711999923, 48.365124601000097 ], [ -123.788799480999941, 48.365145599000108 ], [ -123.789831194999962, 48.365266307000056 ], [ -123.791666420999931, 48.365723999000132 ], [ -123.791816211999944, 48.365763478000098 ], [ -123.793059896999978, 48.366091200000071 ], [ -123.793633705999937, 48.366208715000049 ], [ -123.794121180999966, 48.366243192000063 ], [ -123.794334105999951, 48.366223794000071 ], [ -123.79447569199999, 48.366210898000077 ], [ -123.794592628999979, 48.366184592000053 ], [ -123.794963099999933, 48.366101200000116 ], [ -123.79511366499996, 48.366791208000116 ], [ -123.795417502999939, 48.368183723000065 ], [ -123.795579379999964, 48.368925593000078 ], [ -123.795591685999952, 48.36947139900014 ], [ -123.795538222999937, 48.369987812000076 ], [ -123.795523302000021, 48.370131795000098 ], [ -123.795429287999966, 48.370414784000033 ], [ -123.795317638999961, 48.370598701000084 ], [ -123.795264395999965, 48.370686414000097 ], [ -123.794527179999974, 48.371470910000028 ], [ -123.794401298999929, 48.371743298000084 ], [ -123.794331700999962, 48.372051094 ], [ -123.794331318, 48.372066291000088 ], [ -123.794314670999967, 48.372732151000044 ], [ -123.794308184, 48.372990204000061 ], [ -123.794226895999969, 48.373143603000088 ], [ -123.79368176199992, 48.373761912000113 ], [ -123.793525823999943, 48.373938806000062 ], [ -123.793267764999939, 48.374231511000062 ], [ -123.793057495999989, 48.374469991000055 ], [ -123.792706684999956, 48.374980189000098 ], [ -123.792316007999972, 48.375548288000054 ], [ -123.792006046000012, 48.37586964000009 ], [ -123.791902485999969, 48.375977002000184 ], [ -123.791630394999942, 48.376667394000037 ], [ -123.791618010999954, 48.377077502000148 ], [ -123.791798510999968, 48.378120892000105 ], [ -123.791834599999945, 48.378963889000055 ], [ -123.79178191299998, 48.379074780000103 ], [ -123.791516298, 48.379633489000113 ], [ -123.791439805999957, 48.380408297 ], [ -123.791046189999975, 48.381247609000077 ], [ -123.79056672199999, 48.38178949400006 ], [ -123.789188183999926, 48.383083495000058 ], [ -123.78900249499999, 48.38353949400009 ], [ -123.788900015999957, 48.383916895000034 ], [ -123.788913911999913, 48.384578573000091 ], [ -123.789278181999919, 48.384481973000049 ], [ -123.79064659899997, 48.384404756000109 ], [ -123.793916024999973, 48.384596322000057 ], [ -123.7939997, 48.384533101000088 ], [ -123.794160185999957, 48.384411801000041 ], [ -123.795535581, 48.383241198000071 ], [ -123.795987827999951, 48.382935003000085 ], [ -123.796390559999963, 48.38276723700006 ], [ -123.796350787999984, 48.383621802000079 ], [ -123.796841812999986, 48.383632030000051 ], [ -123.796674128999953, 48.387235335000064 ], [ -123.795713392999971, 48.387215321000042 ], [ -123.79568122699996, 48.387906158000099 ], [ -123.79464568, 48.387884575000072 ], [ -123.794608029999964, 48.388692781000067 ], [ -123.794190070999917, 48.38868406800006 ], [ -123.794175229999937, 48.389002592000104 ], [ -123.793662014999938, 48.388991889000053 ], [ -123.793598880000033, 48.390346502000078 ], [ -123.791166559999965, 48.390295746000128 ], [ -123.791165583999927, 48.390316662000018 ], [ -123.788688623999931, 48.390264917000067 ], [ -123.788532661999966, 48.393603516000063 ], [ -123.787361079000021, 48.393579022000075 ], [ -123.78732865099991, 48.394272744000077 ], [ -123.786131929999968, 48.394247711000027 ], [ -123.786043562999964, 48.396136991000112 ], [ -123.787435895999977, 48.396166115000035 ], [ -123.787364252999936, 48.397698707000082 ], [ -123.787444137999898, 48.397700377000056 ], [ -123.787453239999962, 48.397505662000107 ], [ -123.78880093, 48.3975338340001 ], [ -123.788849940999967, 48.396484693000097 ], [ -123.794237269999954, 48.396597138000125 ], [ -123.794129063999961, 48.398918963000064 ], [ -123.794181008999928, 48.398920046000029 ], [ -123.794138623999956, 48.399829474000043 ], [ -123.795997196999949, 48.399868201000118 ], [ -123.795863292999968, 48.402743495000045 ], [ -123.7931495699999, 48.403710183000015 ], [ -123.792996954999964, 48.403707 ], [ -123.792994224999958, 48.403765516000107 ], [ -123.792024251000015, 48.404111013000026 ], [ -123.791592549999933, 48.40426475800006 ], [ -123.790556049999964, 48.404628963000121 ], [ -123.788202272999939, 48.405251225 ], [ -123.786092845999946, 48.406243893000045 ], [ -123.785196347999928, 48.406565313000023 ], [ -123.78487271899999, 48.40666286400004 ], [ -123.781323332999946, 48.407732853000063 ], [ -123.779310511999967, 48.407690639000116 ] ], [ [ -123.789077823999918, 48.380499108000038 ], [ -123.789090317, 48.380231531000106 ], [ -123.788203869999919, 48.380212998000111 ], [ -123.788191372, 48.380480575 ], [ -123.789077823999918, 48.380499108000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26336917", "BldgCostT": "17691667", "sL_LossRatio": "0.944575393679376", "sL_AssetLoss": "35671.16", "sL_BldgLoss": "33694.1", "sL_StrLoss": "27227.6", "sL_NStrLoss": "6466.5", "sL_ContLoss": "1977.06", "geom_point": "0101000020E6100000C250E2CEE0F05EC08A240F7E41344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.76198908399999, 48.412615969000107 ], [ -123.762047968, 48.411371044000092 ], [ -123.761263432999939, 48.411354453000058 ], [ -123.761361729999962, 48.409276827000014 ], [ -123.761206762999976, 48.409273550000087 ], [ -123.761157106999974, 48.410323038000115 ], [ -123.755768295999971, 48.410208912000051 ], [ -123.75582118899996, 48.409093688000155 ], [ -123.755534552999976, 48.409087610000086 ], [ -123.755612985999932, 48.407433996000059 ], [ -123.755705447, 48.405484505000061 ], [ -123.75728582899994, 48.405518008000087 ], [ -123.757424403999934, 48.405520944000031 ], [ -123.757431432999951, 48.405372647000071 ], [ -123.757506669999941, 48.403784944000051 ], [ -123.757619824999949, 48.403787342000065 ], [ -123.757650499999897, 48.40313994500012 ], [ -123.757692154999972, 48.403140828000062 ], [ -123.763038510999934, 48.403253976000087 ], [ -123.762985490999966, 48.404375655000102 ], [ -123.762695611999973, 48.404794897000066 ], [ -123.762462605999985, 48.405497086000047 ], [ -123.761679111999953, 48.406419899000092 ], [ -123.761695089999975, 48.406573796000018 ], [ -123.761955188999963, 48.406706209000042 ], [ -123.76200047899999, 48.407120692000071 ], [ -123.762180916, 48.407442496000023 ], [ -123.762427290999952, 48.407576413000129 ], [ -123.762549990999943, 48.407683203000062 ], [ -123.762765382999987, 48.407681794000091 ], [ -123.763206583999988, 48.407264494000053 ], [ -123.763627694999983, 48.406533893000088 ], [ -123.764487897999942, 48.405538358000086 ], [ -123.764487885999955, 48.405538628000023 ], [ -123.764602187999984, 48.405541042000067 ], [ -123.764494716999963, 48.407816049000097 ], [ -123.766822442999938, 48.407865190000024 ], [ -123.766800665999966, 48.408326641000031 ], [ -123.767576556, 48.408343009000127 ], [ -123.767643697999958, 48.406919804000054 ], [ -123.773032164, 48.407033326 ], [ -123.773014054999948, 48.407418116000038 ], [ -123.774519734999899, 48.407449787000111 ], [ -123.774410898999932, 48.409763849000122 ], [ -123.773981683999963, 48.409882883000115 ], [ -123.770764428999883, 48.410712996000072 ], [ -123.767196235999975, 48.411633553000108 ], [ -123.763759649999926, 48.41265339100007 ], [ -123.76198908399999, 48.412615969000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220461085", "BldgCostT": "137738335", "sL_LossRatio": "0.914754032371226", "sL_AssetLoss": "176381.95", "sL_BldgLoss": "161346.1", "sL_StrLoss": "130517.6", "sL_NStrLoss": "30828.5", "sL_ContLoss": "15035.85", "geom_point": "0101000020E6100000FEF27EB33FD85EC094793FC9F83C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.374334782999966, 48.476994198000085 ], [ -123.37339552, 48.476226902000072 ], [ -123.372892784999976, 48.475843008000034 ], [ -123.372861537999952, 48.475807196000034 ], [ -123.372605430999926, 48.475513740000061 ], [ -123.372455988999917, 48.475342492000024 ], [ -123.372183600999946, 48.475018311000056 ], [ -123.371883657999902, 48.474689661000113 ], [ -123.37875441300001, 48.474098386000058 ], [ -123.382905517999944, 48.47374090000006 ], [ -123.383249006999947, 48.473711310000049 ], [ -123.383322466999942, 48.47387319400007 ], [ -123.383838858999979, 48.475011028000047 ], [ -123.383929859999952, 48.47521152500007 ], [ -123.384217571999926, 48.475845562000032 ], [ -123.385215730999931, 48.478044684000089 ], [ -123.385262503999982, 48.478147785000097 ], [ -123.384830994999945, 48.478191513000141 ], [ -123.38443329099999, 48.477104089000065 ], [ -123.384084307999956, 48.477187412000077 ], [ -123.383415296999971, 48.477487399000026 ], [ -123.38272721599995, 48.477611687000078 ], [ -123.381737090999948, 48.477790494000025 ], [ -123.381790078999984, 48.478319809000041 ], [ -123.3818371, 48.478789305000085 ], [ -123.38155563699999, 48.478832962000077 ], [ -123.380962104999952, 48.47892506300014 ], [ -123.380222489999966, 48.479039801000035 ], [ -123.380044346999966, 48.479067054000062 ], [ -123.379366103999985, 48.479170837000034 ], [ -123.379334292999943, 48.479175710000071 ], [ -123.379201200999915, 48.479211955000025 ], [ -123.378736162999985, 48.479338636000051 ], [ -123.378243217999966, 48.479472892000118 ], [ -123.378150685999913, 48.479498091000032 ], [ -123.377231794999943, 48.479748611000026 ], [ -123.377022830999977, 48.479437827000069 ], [ -123.376750339999958, 48.47903253100003 ], [ -123.376707690999979, 48.478969103000111 ], [ -123.376602651999974, 48.478868340000083 ], [ -123.376258924999931, 48.478538708000045 ], [ -123.375926040999929, 48.478280665000078 ], [ -123.375427970999951, 48.477877982000102 ], [ -123.375375509999969, 48.477835595000087 ], [ -123.374334782999966, 48.476994198000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112488386", "BldgCostT": "67247079", "sL_LossRatio": "0.763630845880079", "sL_AssetLoss": "152631.21", "sL_BldgLoss": "116553.9", "sL_StrLoss": "84504.8", "sL_NStrLoss": "32049.1", "sL_ContLoss": "36077.31", "geom_point": "0101000020E6100000E2BADE0D54D85EC06F4C70664B3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.381234700999983, 48.467847997000028 ], [ -123.381346388999987, 48.467831785000072 ], [ -123.381377132999944, 48.467929854000069 ], [ -123.38138248599995, 48.467946904000065 ], [ -123.38138523799995, 48.467955737000132 ], [ -123.381391218999951, 48.46797474600006 ], [ -123.38139570199999, 48.467989107000037 ], [ -123.381421293999949, 48.468082295000087 ], [ -123.381800184999975, 48.469462602000085 ], [ -123.382126478999979, 48.47047725200008 ], [ -123.382681506, 48.472203112000066 ], [ -123.383249006999947, 48.473711310000049 ], [ -123.382905517999944, 48.47374090000006 ], [ -123.37875441300001, 48.474098386000058 ], [ -123.37833220099999, 48.47238150300003 ], [ -123.378154183999939, 48.472133590000126 ], [ -123.378126380999973, 48.47201065300009 ], [ -123.378068730999971, 48.471756010000014 ], [ -123.378039952000037, 48.471628905000109 ], [ -123.37800777599989, 48.47148704900011 ], [ -123.377896332999939, 48.471081097000067 ], [ -123.377829636999962, 48.470838187000069 ], [ -123.37757300199992, 48.46990362 ], [ -123.377350498999959, 48.469094705000053 ], [ -123.377253114999917, 48.468781981000113 ], [ -123.377199296999919, 48.468484903000075 ], [ -123.37749428599993, 48.468449899000042 ], [ -123.377598506999931, 48.468398286000067 ], [ -123.37894661199995, 48.468197192000055 ], [ -123.379864810999919, 48.468057074000093 ], [ -123.380229489999948, 48.468001418000028 ], [ -123.381234700999983, 48.467847997000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "180840999", "BldgCostT": "116634999", "sL_LossRatio": "0.92256293051325", "sL_AssetLoss": "121710.83", "sL_BldgLoss": "112285.9", "sL_StrLoss": "83550.8", "sL_NStrLoss": "28735.1", "sL_ContLoss": "9424.93", "geom_point": "0101000020E6100000BE25BD98FBD75EC0B5C68FE7693C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.370273625999943, 48.472085360000079 ], [ -123.370404661999899, 48.471405079000107 ], [ -123.370547483999957, 48.471411273000108 ], [ -123.37092928399997, 48.471321597000127 ], [ -123.371250767000021, 48.471276141000082 ], [ -123.372333033999922, 48.471123119000012 ], [ -123.372573693999939, 48.471089091000053 ], [ -123.373799010999974, 48.470959906000118 ], [ -123.373796589999969, 48.470951100000079 ], [ -123.373245876999988, 48.468957795000065 ], [ -123.37494291900002, 48.468754827000062 ], [ -123.377199296999919, 48.468484903000075 ], [ -123.377253114999917, 48.468781981000113 ], [ -123.377350498999959, 48.469094705000053 ], [ -123.37757300199992, 48.46990362 ], [ -123.377829636999962, 48.470838187000069 ], [ -123.377896332999939, 48.471081097000067 ], [ -123.37800777599989, 48.47148704900011 ], [ -123.378039952000037, 48.471628905000109 ], [ -123.378068730999971, 48.471756010000014 ], [ -123.378126380999973, 48.47201065300009 ], [ -123.378154183999939, 48.472133590000126 ], [ -123.37833220099999, 48.47238150300003 ], [ -123.37875441300001, 48.474098386000058 ], [ -123.371883657999902, 48.474689661000113 ], [ -123.371482158, 48.474249767000124 ], [ -123.37072905899997, 48.473583601000072 ], [ -123.370183477999916, 48.473268001000044 ], [ -123.370319126999959, 48.473136102000133 ], [ -123.370304268999959, 48.472845379000056 ], [ -123.370265902999975, 48.472199661000097 ], [ -123.370273625999943, 48.472085360000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989152489464648", "sL_AssetLoss": "768.84", "sL_BldgLoss": "760.5", "sL_StrLoss": "709", "sL_NStrLoss": "51.5", "sL_ContLoss": "8.34", "geom_point": "0101000020E61000000B5A503171045FC0F85ECF19C9364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.06757284, 48.427489373000085 ], [ -124.071221976999979, 48.427455457000079 ], [ -124.071244665999956, 48.428534850000062 ], [ -124.06759545, 48.42856876700003 ], [ -124.06757284, 48.427489373000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11490000", "BldgCostT": "6450000", "sL_LossRatio": "0.836759080421762", "sL_AssetLoss": "13306.1", "sL_BldgLoss": "11134", "sL_StrLoss": "6180", "sL_NStrLoss": "4954", "sL_ContLoss": "2172.1", "geom_point": "0101000020E61000008C6067331C0F5FC04C231C69DF4B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.233458414, 48.590909195000044 ], [ -124.238868910999983, 48.590998977 ], [ -124.238734272999949, 48.594601658000101 ], [ -124.233323361999936, 48.594511869000073 ], [ -124.233458414, 48.590909195000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82967250", "BldgCostT": "57450000", "sL_LossRatio": "0.86830596990997", "sL_AssetLoss": "16092.772", "sL_BldgLoss": "13973.45", "sL_StrLoss": "10564.3", "sL_NStrLoss": "3409.15", "sL_ContLoss": "2119.322", "geom_point": "0101000020E6100000A1FCB4BCF81A5FC08013C8F49D464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.41466797899993, 48.556329392000052 ], [ -124.414403005999958, 48.555603009000052 ], [ -124.412522898999939, 48.555717006000087 ], [ -124.411466318999928, 48.555694203000044 ], [ -124.409533003999968, 48.555906393000072 ], [ -124.408694089999969, 48.555924909000069 ], [ -124.408676682999925, 48.555956625000107 ], [ -124.408696117999938, 48.555380555000063 ], [ -124.408755546999927, 48.553618936000142 ], [ -124.40988062699995, 48.553635787000132 ], [ -124.409886712999935, 48.553455263000103 ], [ -124.411801364, 48.553483911000107 ], [ -124.41181025099999, 48.553220010000103 ], [ -124.411915996999966, 48.553221592000035 ], [ -124.411964023999957, 48.551795010000056 ], [ -124.412599868999919, 48.551804516000118 ], [ -124.41260530699995, 48.551642925000067 ], [ -124.414110388999973, 48.551665411000101 ], [ -124.4140884, 48.550876415000104 ], [ -124.414494790999967, 48.550871422000064 ], [ -124.414472226999919, 48.550062 ], [ -124.416097765999908, 48.550042014000084 ], [ -124.416100292999914, 48.550132525000045 ], [ -124.417565855999925, 48.550154374000066 ], [ -124.417579219999979, 48.549755943000093 ], [ -124.418138156999959, 48.549764270000054 ], [ -124.418148112999944, 48.549467356000086 ], [ -124.419659137999943, 48.549489853000061 ], [ -124.419659852999956, 48.549468495000056 ], [ -124.421367226999962, 48.549493889000118 ], [ -124.421365641999955, 48.549437290000043 ], [ -124.421815523999911, 48.549431734000109 ], [ -124.422584777999944, 48.549422230000104 ], [ -124.422587293999968, 48.549512019000055 ], [ -124.424804604999949, 48.549544930000067 ], [ -124.424811860999952, 48.549327622000135 ], [ -124.42774984199994, 48.549371160000121 ], [ -124.429774756999947, 48.54940111900008 ], [ -124.429779872999958, 48.54924740800007 ], [ -124.42986461199996, 48.546701439000081 ], [ -124.43527039099996, 48.546781232000107 ], [ -124.435259630999937, 48.547105693000063 ], [ -124.435527770999926, 48.547102349000063 ], [ -124.435520137999987, 48.546832544000019 ], [ -124.43608143599999, 48.546825543000089 ], [ -124.436290700999933, 48.546822932000076 ], [ -124.436739202999945, 48.546817334000146 ], [ -124.436777399000022, 48.548166360000074 ], [ -124.43522380899995, 48.548185740000044 ], [ -124.435213101999977, 48.548508500000082 ], [ -124.434739176999983, 48.548549505000032 ], [ -124.434614288999953, 48.548560309000052 ], [ -124.434335519999962, 48.548754006000109 ], [ -124.433725101, 48.54877959600001 ], [ -124.433550412999949, 48.549239695000104 ], [ -124.432881094999956, 48.549572899000125 ], [ -124.432434209999911, 48.549587209000038 ], [ -124.431464601999934, 48.549769507000057 ], [ -124.431232805999969, 48.549772288000057 ], [ -124.430919620999987, 48.549659802000065 ], [ -124.430173415999903, 48.549678302000032 ], [ -124.429794786999977, 48.550141208000099 ], [ -124.429539618999939, 48.550747901000157 ], [ -124.42953610699999, 48.551052708000014 ], [ -124.42903959899995, 48.551239286000104 ], [ -124.428996377999937, 48.551645197000092 ], [ -124.428486195999966, 48.551821807000046 ], [ -124.428479612999965, 48.552055297000038 ], [ -124.428266497999914, 48.552166394000011 ], [ -124.427968395999955, 48.552187806000056 ], [ -124.427810213999976, 48.552316007000094 ], [ -124.427695888999907, 48.552614989000034 ], [ -124.427441193, 48.552689107000027 ], [ -124.427216999, 48.552953990000049 ], [ -124.426857114, 48.553146305000027 ], [ -124.426863986999962, 48.553371304000038 ], [ -124.426900457999949, 48.553402736000074 ], [ -124.424477989999943, 48.553366827000097 ], [ -124.424445557999917, 48.554337837000091 ], [ -124.424396198999958, 48.554346914000057 ], [ -124.423793892999967, 48.554587612000027 ], [ -124.423102911999962, 48.554569099000012 ], [ -124.422473808999939, 48.554398209000055 ], [ -124.42232120200002, 48.554237190000137 ], [ -124.422020213999971, 48.554160307000096 ], [ -124.42171480599994, 48.554389582000077 ], [ -124.42160071699999, 48.554695806000062 ], [ -124.421346679999914, 48.554806900000195 ], [ -124.421112685999915, 48.554675906000078 ], [ -124.421081506999982, 48.5544864 ], [ -124.42150811599997, 48.553770094000136 ], [ -124.421467899999953, 48.553294395000108 ], [ -124.42135590699999, 48.553187598000065 ], [ -124.421085099999985, 48.553217486000058 ], [ -124.420820781999964, 48.553932397000047 ], [ -124.420102316999973, 48.553905407000059 ], [ -124.41949499499998, 48.553975199000064 ], [ -124.419063384999987, 48.554520606000061 ], [ -124.418738948999987, 48.554770332000068 ], [ -124.418744395999965, 48.554607833000098 ], [ -124.418664538999934, 48.554606643000092 ], [ -124.418670587999912, 48.554822951000112 ], [ -124.418611924999979, 48.554868104000022 ], [ -124.418606008999959, 48.554869326000109 ], [ -124.417905832999978, 48.554877952000062 ], [ -124.417901241999971, 48.555014848000035 ], [ -124.416576798999984, 48.555288308000073 ], [ -124.415853890999969, 48.555640091000079 ], [ -124.414730805999952, 48.555662800000086 ], [ -124.414790618999945, 48.556390601000054 ], [ -124.41466797899993, 48.556329392000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.955907101985863", "sL_AssetLoss": "2079.7", "sL_BldgLoss": "1988", "sL_StrLoss": "1600", "sL_NStrLoss": "388", "sL_ContLoss": "91.7", "geom_point": "0101000020E6100000166D4C5749E95EC06813D4AE91494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.644049129999956, 48.576382058000064 ], [ -123.644042273000011, 48.575842316000099 ], [ -123.64363558299999, 48.575844590000031 ], [ -123.643628731999939, 48.575304847000041 ], [ -123.643222045999934, 48.575307119000058 ], [ -123.643208352999977, 48.574227634000088 ], [ -123.644021705999975, 48.574223087000064 ], [ -123.644007995999971, 48.573143602000059 ], [ -123.644414664999957, 48.573141326000034 ], [ -123.64441123499995, 48.572871455000033 ], [ -123.64603789899999, 48.572862339000018 ], [ -123.646051652, 48.573941825000091 ], [ -123.64645832799998, 48.573939542000062 ], [ -123.646468649999989, 48.574749157000063 ], [ -123.646875331999965, 48.574746872000077 ], [ -123.646892544999943, 48.576096229000093 ], [ -123.646079161999964, 48.576100795000066 ], [ -123.646082600999947, 48.57637066700007 ], [ -123.644049129999956, 48.576382058000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3820001", "BldgCostT": "2425001", "sL_LossRatio": "0.572250387338011", "sL_AssetLoss": "11288.59", "sL_BldgLoss": "6459.9", "sL_StrLoss": "3136", "sL_NStrLoss": "3323.9", "sL_ContLoss": "4828.69", "geom_point": "0101000020E6100000C2547587BB035FC0D6C9198A3B364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.056594642999926, 48.425013751000058 ], [ -124.05659916499998, 48.424903680000078 ], [ -124.053816949999941, 48.424852579000138 ], [ -124.053818240999988, 48.424821216000097 ], [ -124.053432560999951, 48.424814126000108 ], [ -124.053997108999965, 48.42430228900006 ], [ -124.055113309999939, 48.422762693 ], [ -124.05522699499997, 48.422410987000021 ], [ -124.055332094, 48.422319712000032 ], [ -124.055573007999953, 48.422110484000015 ], [ -124.0562653, 48.422284196000078 ], [ -124.05741580899999, 48.422291301000079 ], [ -124.05783699700001, 48.422395312000063 ], [ -124.058688398999919, 48.42243378600012 ], [ -124.059295582999951, 48.422355392000092 ], [ -124.059952905, 48.422133193000015 ], [ -124.060520694999965, 48.422146087000051 ], [ -124.062099544999981, 48.42233637500005 ], [ -124.061985817, 48.425112562000045 ], [ -124.060097802999906, 48.425077989000037 ], [ -124.056594642999926, 48.425013751000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6017584", "BldgCostT": "3678334", "sL_LossRatio": "0.910013748854262", "sL_AssetLoss": "4364", "sL_BldgLoss": "3971.3", "sL_StrLoss": "2920", "sL_NStrLoss": "1051.3", "sL_ContLoss": "392.7", "geom_point": "0101000020E6100000227A4AB52C175FC013E2FC137D484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.35851593599989, 48.568881107000067 ], [ -124.358641351999893, 48.565278125000098 ], [ -124.360523494999981, 48.565307189000116 ], [ -124.360525829999986, 48.565240024000111 ], [ -124.360562236999954, 48.56419276900003 ], [ -124.36596990399994, 48.564276087000088 ], [ -124.365938948999926, 48.565169424000054 ], [ -124.365866077999968, 48.56727234300017 ], [ -124.364527104999922, 48.567532200000102 ], [ -124.363662192999954, 48.567623388000065 ], [ -124.362426295999953, 48.567547889000053 ], [ -124.361917583999983, 48.567778597000093 ], [ -124.36157930899995, 48.567809903000061 ], [ -124.361326409999961, 48.567983696000042 ], [ -124.361172696999986, 48.568336889000072 ], [ -124.361182499999927, 48.568678684000098 ], [ -124.361345019999987, 48.568924779000056 ], [ -124.35851593599989, 48.568881107000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.981951367402624", "sL_AssetLoss": "979.631", "sL_BldgLoss": "961.95", "sL_StrLoss": "858", "sL_NStrLoss": "103.95", "sL_ContLoss": "17.681", "geom_point": "0101000020E61000001D4BAB63CDF65EC0B5C0A24BCD314840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.853621490999956, 48.389986540000073 ], [ -123.853642398000019, 48.389525425000016 ], [ -123.853628417999971, 48.389525142000053 ], [ -123.853696624999969, 48.388020696000083 ], [ -123.857824597999979, 48.388089807 ], [ -123.85907488, 48.388621960000087 ], [ -123.859008232999912, 48.390095689000077 ], [ -123.857291141999937, 48.390060927000107 ], [ -123.853621490999956, 48.389986540000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4736750", "BldgCostT": "2795000", "sL_LossRatio": "0.944364078757029", "sL_AssetLoss": "3304.34", "sL_BldgLoss": "3120.5", "sL_StrLoss": "2415.1", "sL_NStrLoss": "705.4", "sL_ContLoss": "183.84", "geom_point": "0101000020E610000005E0B8EF85195FC0DC52BDEB224A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.39594294699998, 48.581134392000145 ], [ -124.396004187999935, 48.579334581000083 ], [ -124.396024582000038, 48.578735151000053 ], [ -124.396043667999948, 48.578174194000034 ], [ -124.396439471999955, 48.578180168000038 ], [ -124.396575650999949, 48.57818222300007 ], [ -124.396582214999938, 48.577989223000088 ], [ -124.396601988999961, 48.577407806000053 ], [ -124.397012223, 48.577413995000022 ], [ -124.401275331999983, 48.577478218000053 ], [ -124.401265153999944, 48.577711649000079 ], [ -124.401551922999943, 48.580502338000038 ], [ -124.401504503999902, 48.581018692000065 ], [ -124.401523283999936, 48.581160833000126 ], [ -124.401407688999939, 48.581150500000014 ], [ -124.400087786, 48.580932603000043 ], [ -124.399503388999946, 48.580949694 ], [ -124.398158993999942, 48.580327290000056 ], [ -124.397766282999925, 48.580367204000055 ], [ -124.397375001999933, 48.580408495000071 ], [ -124.396525892999989, 48.5811377120001 ], [ -124.39594294699998, 48.581134392000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.988227924094907", "sL_AssetLoss": "766.22", "sL_BldgLoss": "757.2", "sL_StrLoss": "701", "sL_NStrLoss": "56.2", "sL_ContLoss": "9.02", "geom_point": "0101000020E610000000D22FF851045FC05290C80C8E364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.064712065999942, 48.426436276000089 ], [ -124.064706429999973, 48.426166428000045 ], [ -124.06511188099995, 48.426162676000054 ], [ -124.065106241, 48.42589282600003 ], [ -124.065511688999919, 48.425889072000054 ], [ -124.065506047999946, 48.425619223000112 ], [ -124.06712782799994, 48.425604194000073 ], [ -124.067122178999924, 48.425334345000138 ], [ -124.068338507999982, 48.425323058000046 ], [ -124.068344162999978, 48.42559290700013 ], [ -124.070776832999954, 48.425570294000075 ], [ -124.070787202999952, 48.426063930000055 ], [ -124.070799509999958, 48.426649687000108 ], [ -124.068366789999985, 48.42667230100006 ], [ -124.068361134, 48.42640245200004 ], [ -124.067144779, 48.426413740000086 ], [ -124.06715042899998, 48.426683589000035 ], [ -124.065934066999901, 48.426694863000108 ], [ -124.06594535399995, 48.427234561000063 ], [ -124.065270768999966, 48.427240809000097 ], [ -124.064323520999963, 48.427249574 ], [ -124.064306613999946, 48.426440028000123 ], [ -124.064712065999942, 48.426436276000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.936354401307363", "sL_AssetLoss": "2264.1", "sL_BldgLoss": "2120", "sL_StrLoss": "1781", "sL_NStrLoss": "339", "sL_ContLoss": "144.1", "geom_point": "0101000020E6100000A02A8D356F035FC0D2D8456ED9364840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.051487996, 48.429849607000051 ], [ -124.051613583999981, 48.429398094000092 ], [ -124.05169400699999, 48.429343993000018 ], [ -124.051966812999964, 48.429493600000086 ], [ -124.052129189999945, 48.429412411000044 ], [ -124.05184599899998, 48.42888400200011 ], [ -124.052008707, 48.42825170800009 ], [ -124.052295712999964, 48.427683394000091 ], [ -124.052467801999939, 48.426605172000066 ], [ -124.055406783999899, 48.426659185000062 ], [ -124.05525864, 48.430262613000075 ], [ -124.051513549999939, 48.430193770000102 ], [ -124.051487996, 48.429849607000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68945167", "BldgCostT": "48516667", "sL_LossRatio": "0.987507736431849", "sL_AssetLoss": "13862.98", "sL_BldgLoss": "13689.8", "sL_StrLoss": "5182", "sL_NStrLoss": "8507.8", "sL_ContLoss": "173.18", "geom_point": "0101000020E6100000A3AA8DDA52F95EC021A92AD9D64A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.893424312999969, 48.582813154000064 ], [ -123.898833172, 48.582920242000121 ], [ -123.898672572999928, 48.586522499000061 ], [ -123.89794172299996, 48.58650804500013 ], [ -123.897939846999932, 48.586550117000073 ], [ -123.892530570999952, 48.58644298399999 ], [ -123.892691640999942, 48.582840736000101 ], [ -123.893422431999952, 48.582855226000071 ], [ -123.893424312999969, 48.582813154000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.951050668467667", "sL_AssetLoss": "1954.47", "sL_BldgLoss": "1858.8", "sL_StrLoss": "1520", "sL_NStrLoss": "338.8", "sL_ContLoss": "95.67", "geom_point": "0101000020E6100000CDD4B9DC3F185FC01FCCF5CF364A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.377607268999967, 48.580476469000132 ], [ -124.377614658999946, 48.580261749000073 ], [ -124.37547190399998, 48.580229015000107 ], [ -124.375473509999949, 48.580182382000039 ], [ -124.374794281999982, 48.580171997000065 ], [ -124.374844288999896, 48.578721422000037 ], [ -124.37552640200002, 48.578736500000097 ], [ -124.376751896999934, 48.578879262000079 ], [ -124.376958408999926, 48.578903318000101 ], [ -124.378191106999964, 48.579046901000076 ], [ -124.38074259699999, 48.579600989000063 ], [ -124.381966220999942, 48.579721997000092 ], [ -124.383117901999952, 48.579672212000091 ], [ -124.384120904999946, 48.579463385000061 ], [ -124.384088265999978, 48.580415592000058 ], [ -124.383022303999951, 48.580399378 ], [ -124.383016831999967, 48.580558917000047 ], [ -124.377607268999967, 48.580476469000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8511244", "BldgCostT": "4894076", "sL_LossRatio": "0.913551095369277", "sL_AssetLoss": "7623", "sL_BldgLoss": "6964", "sL_StrLoss": "4647", "sL_NStrLoss": "2317", "sL_ContLoss": "659", "geom_point": "0101000020E6100000C5C70656FE045FC00B585978EA374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.076342021999977, 48.435009399000087 ], [ -124.080792836999976, 48.435090146000078 ], [ -124.080646599999938, 48.438693558000125 ], [ -124.077835248999961, 48.43864257700011 ], [ -124.075253839, 48.438595699000061 ], [ -124.075400486999911, 48.434992295000079 ], [ -124.076342021999977, 48.435009399000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.990856270542237", "sL_AssetLoss": "641.97", "sL_BldgLoss": "636.1", "sL_StrLoss": "595", "sL_NStrLoss": "41.1", "sL_ContLoss": "5.87", "geom_point": "0101000020E6100000B6BB28F6271A5FC0B68AD5511B4B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.408117440999888, 48.587862461000057 ], [ -124.407988105999905, 48.587117630000094 ], [ -124.407776719999958, 48.587120215000049 ], [ -124.407739247, 48.585771183000084 ], [ -124.408261891999956, 48.585764792000084 ], [ -124.409307841000015, 48.585703361000093 ], [ -124.409318324999958, 48.585751865000091 ], [ -124.40936593399999, 48.585751282000032 ], [ -124.409372983999944, 48.586004770000031 ], [ -124.409643741999957, 48.587257462000132 ], [ -124.409691240999962, 48.587743362000012 ], [ -124.408117440999888, 48.587862461000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3820000", "BldgCostT": "2425000", "sL_LossRatio": "0.569717520920895", "sL_AssetLoss": "13300.1", "sL_BldgLoss": "7577.3", "sL_StrLoss": "3444", "sL_NStrLoss": "4133.3", "sL_ContLoss": "5722.8", "geom_point": "0101000020E6100000B7D7DD974E185FC08E0312C1F6494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.374856833999942, 48.578357527000016 ], [ -124.374918483999977, 48.576569064000068 ], [ -124.376510088999979, 48.576593393000067 ], [ -124.380327594, 48.576651650000095 ], [ -124.380325991999953, 48.576698282000073 ], [ -124.381005170999984, 48.576708633000123 ], [ -124.381003277000019, 48.576763814000074 ], [ -124.384211757999978, 48.576812649000061 ], [ -124.384134430999978, 48.579068753000094 ], [ -124.384130719, 48.57917707200005 ], [ -124.38385258699995, 48.579257691000095 ], [ -124.383134785999943, 48.579347403000064 ], [ -124.382092088999954, 48.579360303000072 ], [ -124.380815307999939, 48.579303291000052 ], [ -124.379524101999934, 48.578962523000015 ], [ -124.379476997999959, 48.578950091000095 ], [ -124.378196100999929, 48.578705095000032 ], [ -124.376727235999965, 48.578646151000051 ], [ -124.376636192999982, 48.578642497000047 ], [ -124.375247792999971, 48.578470090000103 ], [ -124.374856833999942, 48.578357527000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4785084", "BldgCostT": "2828334", "sL_LossRatio": "0.911777594342026", "sL_AssetLoss": "2943.81", "sL_BldgLoss": "2684.1", "sL_StrLoss": "1890", "sL_NStrLoss": "794.1", "sL_ContLoss": "259.71", "geom_point": "0101000020E610000065EEEFA67AF25EC057284EC5F8334840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.792024251000015, 48.404111013000026 ], [ -123.792994224999958, 48.403765516000107 ], [ -123.79288861699996, 48.40602997000012 ], [ -123.791608159999967, 48.406003258000112 ], [ -123.791575901999948, 48.406694500000121 ], [ -123.787718481999946, 48.406613937000074 ], [ -123.787683786999963, 48.407356094000093 ], [ -123.78472294, 48.407294161000067 ], [ -123.784699092999972, 48.407803566000062 ], [ -123.781323332999946, 48.407732853000063 ], [ -123.78487271899999, 48.40666286400004 ], [ -123.785196347999928, 48.406565313000023 ], [ -123.786092845999946, 48.406243893000045 ], [ -123.788202272999939, 48.405251225 ], [ -123.790556049999964, 48.404628963000121 ], [ -123.791592549999933, 48.40426475800006 ], [ -123.792024251000015, 48.404111013000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4760917", "BldgCostT": "2811667", "sL_LossRatio": "0.836926156576307", "sL_AssetLoss": "6074.61", "sL_BldgLoss": "5084", "sL_StrLoss": "3086", "sL_NStrLoss": "1998", "sL_ContLoss": "990.61", "geom_point": "0101000020E61000008AC88F7C4EF75EC0878132B625324840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.861497191999931, 48.390502994000052 ], [ -123.862898491999914, 48.38965096500003 ], [ -123.86349863, 48.38967129600006 ], [ -123.866261918999925, 48.389823068000048 ], [ -123.8660521799999, 48.392931976000099 ], [ -123.866062410999987, 48.394312928000033 ], [ -123.864209412999941, 48.394351206000096 ], [ -123.86388179299999, 48.394183112000078 ], [ -123.861430090999974, 48.391313413000049 ], [ -123.861400671999903, 48.391239205000097 ], [ -123.861430385999967, 48.390581452000092 ], [ -123.861497191999931, 48.390502994000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74402667", "BldgCostT": "52016667", "sL_LossRatio": "0.994021043568815", "sL_AssetLoss": "4478.708", "sL_BldgLoss": "4451.93", "sL_StrLoss": "4236.3", "sL_NStrLoss": "215.63", "sL_ContLoss": "26.778", "geom_point": "0101000020E6100000AD89EC20C2195FC0EFF7D5662D474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.399861738999931, 48.559417177000071 ], [ -124.399919101999984, 48.559172100000048 ], [ -124.399765305999949, 48.558994097000046 ], [ -124.399711064999906, 48.558980098000056 ], [ -124.39930110099999, 48.558874394000071 ], [ -124.399149781999967, 48.55892847500013 ], [ -124.399153007999971, 48.558833462000088 ], [ -124.398856450999958, 48.558828992 ], [ -124.397587285999933, 48.558809853000049 ], [ -124.397592594999963, 48.558653543000055 ], [ -124.397613621999966, 48.558034643000084 ], [ -124.396784701999977, 48.558022135000037 ], [ -124.396805841999978, 48.557400166000036 ], [ -124.396907165999949, 48.554419043000109 ], [ -124.399714032999952, 48.554461373000066 ], [ -124.39971946299994, 48.554301313000124 ], [ -124.399938401999933, 48.554304612000081 ], [ -124.399956481999965, 48.553771618000106 ], [ -124.40056905199999, 48.553780844000052 ], [ -124.400573564999945, 48.553647732000044 ], [ -124.401002892999927, 48.553654197000093 ], [ -124.401009358999943, 48.553463443000048 ], [ -124.401642094999957, 48.553472967000133 ], [ -124.401644436999931, 48.553403858000074 ], [ -124.401998266999939, 48.553409183000021 ], [ -124.402001427999934, 48.553315866000013 ], [ -124.407407918999951, 48.553397076000138 ], [ -124.407405774000011, 48.553460640000075 ], [ -124.40858698, 48.553478346000112 ], [ -124.408522829999953, 48.555379708000046 ], [ -124.40849858899999, 48.556098176000077 ], [ -124.408144097999951, 48.556129999000028 ], [ -124.407748817, 48.556071600000088 ], [ -124.407455594999959, 48.556263900000033 ], [ -124.407151983999981, 48.557032895000042 ], [ -124.406941504999907, 48.557269389000105 ], [ -124.406059392999964, 48.557693805000028 ], [ -124.40596131699999, 48.558055508000045 ], [ -124.405721709999952, 48.558202193000085 ], [ -124.404888187999973, 48.558482791000039 ], [ -124.40408042199999, 48.558455086000031 ], [ -124.40351807799999, 48.558435794000061 ], [ -124.403504760999979, 48.558438386000041 ], [ -124.402831604999946, 48.558569713000033 ], [ -124.401923487999952, 48.559093792000084 ], [ -124.400523606999954, 48.559417096000125 ], [ -124.400492764999967, 48.559419950000027 ], [ -124.400492847999899, 48.559409501000083 ], [ -124.399861738999931, 48.559417177000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.990221307256819", "sL_AssetLoss": "582.9", "sL_BldgLoss": "577.2", "sL_StrLoss": "539", "sL_NStrLoss": "38.2", "sL_ContLoss": "5.7", "geom_point": "0101000020E61000004EE3288AA1195FC018DAEF3FE8474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.399726198999957, 48.560768320000122 ], [ -124.399723478999974, 48.560669731000068 ], [ -124.39985389099995, 48.560703097000093 ], [ -124.400206216999976, 48.560688894000087 ], [ -124.400444587, 48.560525105000096 ], [ -124.40143068399999, 48.560359906000016 ], [ -124.401842617999947, 48.560587797000075 ], [ -124.401867698999965, 48.560889099000065 ], [ -124.401928534999968, 48.561620162000089 ], [ -124.401945249999969, 48.561820915000091 ], [ -124.401381910999973, 48.561827774000044 ], [ -124.401404275999965, 48.562637199000051 ], [ -124.40099778799997, 48.562642146 ], [ -124.401005239999947, 48.562911955000118 ], [ -124.400598750999976, 48.562916900000126 ], [ -124.40060620099996, 48.56318670900005 ], [ -124.400424757999957, 48.563188916000044 ], [ -124.398980229999964, 48.563206480000183 ], [ -124.398973156999944, 48.56295003900005 ], [ -124.39903320799999, 48.562907792000061 ], [ -124.399255195999956, 48.562608695000051 ], [ -124.399313012999954, 48.562392739000103 ], [ -124.399364388999984, 48.562392114000033 ], [ -124.399359605999976, 48.562218707000085 ], [ -124.399489689999953, 48.561732812000074 ], [ -124.399450896, 48.561319800000057 ], [ -124.399329963999932, 48.561144351000102 ], [ -124.399319727999966, 48.560773262000076 ], [ -124.39954712, 48.560770498000124 ], [ -124.399726198999957, 48.560768320000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.45984950576417", "sL_AssetLoss": "7398.29", "sL_BldgLoss": "3402.1", "sL_StrLoss": "1160", "sL_NStrLoss": "2242.1", "sL_ContLoss": "3996.19", "geom_point": "0101000020E6100000E5FE6EAA43F15EC0AF3CCC87B5344840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.765200979999946, 48.413013652000053 ], [ -123.765216541999933, 48.412684161000108 ], [ -123.763759649999926, 48.41265339100007 ], [ -123.767196235999975, 48.411633553000108 ], [ -123.770764428999883, 48.410712996000072 ], [ -123.773981683999963, 48.409882883000115 ], [ -123.774410898999932, 48.409763849000122 ], [ -123.774350266999946, 48.411052910000144 ], [ -123.772777311999945, 48.411019823000089 ], [ -123.772721366999988, 48.412208348000121 ], [ -123.770635501999919, 48.412164436000069 ], [ -123.770590132999985, 48.413127297000123 ], [ -123.765200979999946, 48.413013652000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.991230493025825", "sL_AssetLoss": "579.28", "sL_BldgLoss": "574.2", "sL_StrLoss": "539", "sL_NStrLoss": "35.2", "sL_ContLoss": "5.08", "geom_point": "0101000020E610000057B1195C0A1A5FC099737CF6544A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.405985305999963, 48.581204347000096 ], [ -124.405983575, 48.581141961000029 ], [ -124.405656690999976, 48.581137058000103 ], [ -124.406233990999965, 48.580587892000089 ], [ -124.407288007999952, 48.579972697000073 ], [ -124.40757080399996, 48.579959890000069 ], [ -124.407600494999926, 48.580968211000062 ], [ -124.407718677999966, 48.581167973000042 ], [ -124.40720440399997, 48.581160266000111 ], [ -124.407205213999944, 48.581189443000078 ], [ -124.405985305999963, 48.581204347000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16007251", "BldgCostT": "10830001", "sL_LossRatio": "0.789025691662722", "sL_AssetLoss": "29470.65", "sL_BldgLoss": "23253.1", "sL_StrLoss": "17288.3", "sL_NStrLoss": "5964.8", "sL_ContLoss": "6217.55", "geom_point": "0101000020E6100000F67B49000A1A5FC065A9FDEFEB494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.401265153999944, 48.577711649000079 ], [ -124.401275331999983, 48.577478218000053 ], [ -124.402011233999986, 48.577489287000041 ], [ -124.4020104, 48.577513866000054 ], [ -124.402477522999902, 48.577520889000013 ], [ -124.402489871999975, 48.577156452000075 ], [ -124.403191566999951, 48.577166998000116 ], [ -124.403198155999974, 48.576972469000061 ], [ -124.404995434999989, 48.576999461000113 ], [ -124.405001594999931, 48.5768174130001 ], [ -124.405457079999948, 48.576824249000033 ], [ -124.405421568999941, 48.57554336500008 ], [ -124.405743855999944, 48.575539430000113 ], [ -124.405800127999925, 48.573875224000069 ], [ -124.406533159999967, 48.573886220000169 ], [ -124.408641319999944, 48.573917814000019 ], [ -124.409455108999936, 48.574557796000065 ], [ -124.411193305999973, 48.575597488000071 ], [ -124.412042106999976, 48.575956406000088 ], [ -124.413587288999935, 48.576432111000024 ], [ -124.413811311999922, 48.576627195000086 ], [ -124.413708012, 48.576799488000113 ], [ -124.412749787999985, 48.577458900000103 ], [ -124.412479185000024, 48.577534405000037 ], [ -124.41139241899999, 48.578357599000121 ], [ -124.41095900599997, 48.57844310300009 ], [ -124.40999641099998, 48.578868892000095 ], [ -124.408399303999943, 48.579014190000109 ], [ -124.407740405999959, 48.579202185000049 ], [ -124.406662704999945, 48.579422905000087 ], [ -124.40608608099997, 48.579663603000022 ], [ -124.405590817999922, 48.579912905000057 ], [ -124.404980717999933, 48.580397103000045 ], [ -124.404602804999968, 48.580491103000092 ], [ -124.404120904999942, 48.580731796000059 ], [ -124.403977390999913, 48.580868503000033 ], [ -124.40394428099999, 48.581111354000022 ], [ -124.403902394999932, 48.58111072500008 ], [ -124.403893852999929, 48.581363024000076 ], [ -124.403447292999942, 48.581332795000037 ], [ -124.401523283999936, 48.581160833000126 ], [ -124.401504503999902, 48.581018692000065 ], [ -124.401551922999943, 48.580502338000038 ], [ -124.401265153999944, 48.577711649000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993337271891821", "sL_AssetLoss": "609.36", "sL_BldgLoss": "605.3", "sL_StrLoss": "571", "sL_NStrLoss": "34.3", "sL_ContLoss": "4.06", "geom_point": "0101000020E6100000A018BC5CC2195FC0EA396DB6874A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.40160696, 48.58196419500009 ], [ -124.403234100999896, 48.581965090000111 ], [ -124.403431880999989, 48.582573273000065 ], [ -124.401651749999971, 48.58254651500004 ], [ -124.40160696, 48.58196419500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.937419960727397", "sL_AssetLoss": "1171.3", "sL_BldgLoss": "1098", "sL_StrLoss": "923", "sL_NStrLoss": "175", "sL_ContLoss": "73.3", "geom_point": "0101000020E61000000D6A850A4A1A5FC089E00BD5454A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.409785081999985, 48.580049604000088 ], [ -124.411580208999908, 48.57929900500006 ], [ -124.412099605999941, 48.579895809000149 ], [ -124.41210451399999, 48.580120799000035 ], [ -124.411733602999945, 48.580439810000016 ], [ -124.411661289999969, 48.580710400000093 ], [ -124.411721583999977, 48.580755307000032 ], [ -124.411443411, 48.580751150000069 ], [ -124.411438261999962, 48.580903909000121 ], [ -124.409251582999929, 48.580871201000022 ], [ -124.409241901999906, 48.58050670700004 ], [ -124.409424209999955, 48.580270308000117 ], [ -124.409785081999985, 48.580049604000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10742083", "BldgCostT": "7408333", "sL_LossRatio": "0.976800588758454", "sL_AssetLoss": "8212.536", "sL_BldgLoss": "8022.01", "sL_StrLoss": "6905.61", "sL_NStrLoss": "1116.4", "sL_ContLoss": "190.526", "geom_point": "0101000020E6100000C679ACD7FCF15EC04DB560F33B2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.783638955999905, 48.366499474000101 ], [ -123.783646923999967, 48.366492568000091 ], [ -123.784014524999961, 48.367211423000057 ], [ -123.784314117999941, 48.369588046000089 ], [ -123.783635913999902, 48.369573834000064 ], [ -123.783630251999966, 48.369694812000056 ], [ -123.782453950999979, 48.369670151000079 ], [ -123.782410953999943, 48.370588440000077 ], [ -123.778152700999925, 48.370499055000096 ], [ -123.777026610999926, 48.370475388000024 ], [ -123.777039703999961, 48.370196441000097 ], [ -123.77709650099996, 48.368986336000027 ], [ -123.778553001999967, 48.368971801000022 ], [ -123.779132002999958, 48.368823705000096 ], [ -123.779598502999988, 48.368514605000051 ], [ -123.779955202999957, 48.367936402000097 ], [ -123.780141694999926, 48.367818190000101 ], [ -123.781002188999963, 48.367524795000115 ], [ -123.782172281999934, 48.367336797000071 ], [ -123.783032791999958, 48.367024892000067 ], [ -123.783638734999968, 48.366499667000056 ], [ -123.783638955999905, 48.366499474000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.98704215663539", "sL_AssetLoss": "767.566", "sL_BldgLoss": "757.62", "sL_StrLoss": "689", "sL_NStrLoss": "68.62", "sL_ContLoss": "9.946", "geom_point": "0101000020E61000007EEE995FECF15EC0A6095F88EA2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.778229861999989, 48.374750611000124 ], [ -123.778260489999965, 48.374097761000016 ], [ -123.779738977999926, 48.374128812000095 ], [ -123.782841465999979, 48.374193901000098 ], [ -123.78004618599999, 48.374720417000077 ], [ -123.779809813, 48.37429088100005 ], [ -123.778229861999989, 48.374750611000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.992239467849224", "sL_AssetLoss": "19.844", "sL_BldgLoss": "19.69", "sL_StrLoss": "5.29", "sL_NStrLoss": "14.4", "sL_ContLoss": "0.154", "geom_point": "0101000020E6100000F06804971EF15EC0E8C5E468E92F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.766752830999948, 48.374017959000071 ], [ -123.76788682199998, 48.374010395000056 ], [ -123.767898997999964, 48.374820016000079 ], [ -123.767772332999982, 48.374820862000078 ], [ -123.766844568999915, 48.374136323000087 ], [ -123.766752830999948, 48.374017959000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16956001", "BldgCostT": "11430001", "sL_LossRatio": "0.92503487401816", "sL_AssetLoss": "28366.39", "sL_BldgLoss": "26239.9", "sL_StrLoss": "20995.9", "sL_NStrLoss": "5244", "sL_ContLoss": "2126.49", "geom_point": "0101000020E6100000CF4FBBA9D2F15EC087435F0FE0304840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.779782018999938, 48.385702016000046 ], [ -123.779822079000013, 48.384847751000066 ], [ -123.779224349999964, 48.384835203000051 ], [ -123.77924797099999, 48.384331613000072 ], [ -123.778227243999964, 48.384310179000082 ], [ -123.778239328999959, 48.384052625000059 ], [ -123.77741262899994, 48.38403525800004 ], [ -123.777428286999964, 48.383701712000089 ], [ -123.77658732099998, 48.383684038000062 ], [ -123.77659446700001, 48.383531865000123 ], [ -123.776691629999902, 48.381462738000096 ], [ -123.776756520999982, 48.380080744000061 ], [ -123.777377402999917, 48.380093792000018 ], [ -123.777381240999958, 48.380012025000077 ], [ -123.775511597999923, 48.379972720000168 ], [ -123.775680865999931, 48.376369405000034 ], [ -123.775800666999942, 48.376371925000029 ], [ -123.777747676999951, 48.378951723000071 ], [ -123.780178947999914, 48.381208521000076 ], [ -123.78218867799994, 48.385752500000109 ], [ -123.779782018999938, 48.385702016000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.969585109222966", "sL_AssetLoss": "2172.62", "sL_BldgLoss": "2106.54", "sL_StrLoss": "1842.24", "sL_NStrLoss": "264.3", "sL_ContLoss": "66.08", "geom_point": "0101000020E6100000134A1DEC26F25EC0F2E95674902F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.782853659999972, 48.372560016000122 ], [ -123.782845385999934, 48.372020270000121 ], [ -123.78244033299994, 48.372023025000026 ], [ -123.782423794999914, 48.370943534000048 ], [ -123.783638926000023, 48.370935263000021 ], [ -123.783630642999952, 48.370395517000077 ], [ -123.784415238999969, 48.370390171000111 ], [ -123.784687226999949, 48.372547523000037 ], [ -123.782853659999972, 48.372560016000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174320645", "BldgCostT": "115656524", "sL_LossRatio": "0.894425895136343", "sL_AssetLoss": "391161.64", "sL_BldgLoss": "349865.1", "sL_StrLoss": "249666.1", "sL_NStrLoss": "100199", "sL_ContLoss": "41296.54", "geom_point": "0101000020E6100000A31BD5A7E4EF5EC06095875C5B2F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.734609253999949, 48.372336858000047 ], [ -123.733926409999953, 48.371964239000121 ], [ -123.733180746999892, 48.371642067000067 ], [ -123.73278446099998, 48.37147085000008 ], [ -123.73229642699998, 48.371307099000063 ], [ -123.731895973999883, 48.371171357 ], [ -123.730788719999978, 48.370798611000055 ], [ -123.728724304999929, 48.370098722000137 ], [ -123.729491631999963, 48.369257816000143 ], [ -123.729860604999914, 48.368853469000108 ], [ -123.730688334999968, 48.367972183000077 ], [ -123.731102924999917, 48.367671778000087 ], [ -123.731758792000022, 48.367368429000052 ], [ -123.732830002999933, 48.367000954000048 ], [ -123.73402794699993, 48.366659628000107 ], [ -123.73499095199999, 48.366187887000066 ], [ -123.737301311999929, 48.365771204000033 ], [ -123.7378087969999, 48.365723398000085 ], [ -123.738284044999915, 48.365701999000116 ], [ -123.740357968999945, 48.365947439000152 ], [ -123.740877026999925, 48.366082073000094 ], [ -123.741205835999907, 48.366249617000044 ], [ -123.74373760499995, 48.365802129000073 ], [ -123.746295801999935, 48.365785561000045 ], [ -123.746299745999949, 48.366055436000053 ], [ -123.746704753999964, 48.366052808000084 ], [ -123.746707314999966, 48.366227974000026 ], [ -123.747495810999951, 48.366244774000059 ], [ -123.747492347999952, 48.366317595000041 ], [ -123.747518719999945, 48.366317423000105 ], [ -123.747520923999971, 48.366467977000084 ], [ -123.747926099999972, 48.366476608 ], [ -123.747919778999957, 48.366044915000018 ], [ -123.748324786999888, 48.366042281000105 ], [ -123.74832083299998, 48.365772407000115 ], [ -123.748725839, 48.365769771000025 ], [ -123.74872188399992, 48.365499896000124 ], [ -123.749339907999939, 48.365495872000061 ], [ -123.749343701999976, 48.365416022000069 ], [ -123.75386497, 48.365512166 ], [ -123.75388194, 48.365154332000046 ], [ -123.756155472999978, 48.365202605000036 ], [ -123.75679728599998, 48.365976702000069 ], [ -123.758616590999964, 48.367584614000059 ], [ -123.758878599999917, 48.3679235990001 ], [ -123.75987378499994, 48.368672697000058 ], [ -123.761672080999986, 48.369659698000042 ], [ -123.761760308999925, 48.36972476799999 ], [ -123.761759934999972, 48.369732716000051 ], [ -123.761770985999974, 48.369732642 ], [ -123.762205103999946, 48.370052803000071 ], [ -123.763519022999972, 48.370430201000076 ], [ -123.76443770199991, 48.370424512000092 ], [ -123.764289804, 48.37054269600003 ], [ -123.763278192999948, 48.370575399000082 ], [ -123.761541508999969, 48.37002139500008 ], [ -123.760608385999944, 48.369937399000058 ], [ -123.760351790999934, 48.369947406000108 ], [ -123.760046679999931, 48.370192298000148 ], [ -123.760064116999942, 48.37049850000006 ], [ -123.760955345999918, 48.371016883000067 ], [ -123.760956398999951, 48.371087537000086 ], [ -123.761075465, 48.37108675000006 ], [ -123.761303184999932, 48.371219199000059 ], [ -123.76186121399995, 48.371439908000063 ], [ -123.762414590999953, 48.371454203000056 ], [ -123.762991305999904, 48.371199186000077 ], [ -123.764231023999983, 48.371028305000038 ], [ -123.764865914999973, 48.371061096000119 ], [ -123.765651991999931, 48.371280388000059 ], [ -123.766530815999886, 48.371391492000079 ], [ -123.767611297999935, 48.37142851200008 ], [ -123.768755775999949, 48.371177894000041 ], [ -123.769063706999972, 48.371024091000031 ], [ -123.769180696999953, 48.370726398000023 ], [ -123.770539522999954, 48.370339002000044 ], [ -123.770818020999968, 48.370021405000074 ], [ -123.772505016999958, 48.369057200000078 ], [ -123.773488690999969, 48.36890629300008 ], [ -123.774815285999978, 48.369176905000081 ], [ -123.77526210799999, 48.3692010850001 ], [ -123.775986979999928, 48.36899739600004 ], [ -123.776683401999975, 48.36899045600007 ], [ -123.776815213999939, 48.368989142000039 ], [ -123.776757584000023, 48.370216852000077 ], [ -123.776719154999967, 48.371035479000049 ], [ -123.775072942999898, 48.371000855000069 ], [ -123.775058704999978, 48.371303919000127 ], [ -123.773738234999925, 48.371276128 ], [ -123.77369460099996, 48.372204349000093 ], [ -123.772439371999923, 48.372177916000034 ], [ -123.772425365999965, 48.372475680000022 ], [ -123.768428494999952, 48.372391412000127 ], [ -123.768381158999944, 48.373395977000023 ], [ -123.76723698399995, 48.373371826000088 ], [ -123.767228121, 48.373559805000042 ], [ -123.766389651999958, 48.37354209800003 ], [ -123.76587871699995, 48.372475364000096 ], [ -123.765362006999936, 48.372026951000109 ], [ -123.765068091999936, 48.372072405000033 ], [ -123.764574212999918, 48.372115193000042 ], [ -123.764274566, 48.372120091000049 ], [ -123.763974094999966, 48.37212499500005 ], [ -123.763279389999951, 48.372084197000127 ], [ -123.762794390999929, 48.372038118000027 ], [ -123.761913965999923, 48.371954460000048 ], [ -123.761916969999916, 48.371890883000056 ], [ -123.760968462000022, 48.371897161000042 ], [ -123.760960418999929, 48.371357411000126 ], [ -123.759340222999981, 48.371368118000085 ], [ -123.759335861999887, 48.371074790000108 ], [ -123.758159667999948, 48.371049862000106 ], [ -123.758122768999968, 48.371829335000072 ], [ -123.757348118999985, 48.37181290900002 ], [ -123.757330210999939, 48.372191070000078 ], [ -123.757732038999933, 48.372188424000029 ], [ -123.757732778999952, 48.37223835800016 ], [ -123.755418704999926, 48.372388309000044 ], [ -123.753396637999941, 48.372462615000067 ], [ -123.751473774999937, 48.37253617000006 ], [ -123.751339340999934, 48.372541205000111 ], [ -123.751040307999929, 48.372552413000044 ], [ -123.750995106999966, 48.372554096000087 ], [ -123.75055981699991, 48.372499689000023 ], [ -123.74941824699999, 48.372831248000068 ], [ -123.748783503999945, 48.373015589000083 ], [ -123.747833131999954, 48.373279400000044 ], [ -123.747661738999966, 48.373331238000063 ], [ -123.747629593999989, 48.373340957000082 ], [ -123.746004423999935, 48.373832707000098 ], [ -123.745923135999988, 48.373857290000068 ], [ -123.745262691999983, 48.374058724000079 ], [ -123.743900403999973, 48.37445441300008 ], [ -123.744316788999953, 48.375103501000126 ], [ -123.744255604, 48.375257315000106 ], [ -123.744067917999942, 48.37537950300009 ], [ -123.742935904999982, 48.37580348600013 ], [ -123.742759889999974, 48.375906211 ], [ -123.742691396999959, 48.376012891000101 ], [ -123.742699909999942, 48.37623131 ], [ -123.742194977999972, 48.37630709700003 ], [ -123.741611091999985, 48.376456994000115 ], [ -123.741889222999987, 48.376926399000119 ], [ -123.741854327999988, 48.377036598000124 ], [ -123.741719806, 48.377143699000072 ], [ -123.74149393499999, 48.377215195000126 ], [ -123.741343475999912, 48.377262796000096 ], [ -123.741017587999949, 48.377314501000043 ], [ -123.740516708999948, 48.377307406000071 ], [ -123.740563106999971, 48.377097389000056 ], [ -123.740541493999956, 48.376871510000093 ], [ -123.740397524999963, 48.376556403000087 ], [ -123.739933874999963, 48.375597863000088 ], [ -123.739347867999967, 48.375170529000059 ], [ -123.73670906199996, 48.373592584000065 ], [ -123.736226425, 48.373303986000046 ], [ -123.734992523999949, 48.372566067000101 ], [ -123.734609253999949, 48.372336858000047 ] ], [ [ -123.740314583999918, 48.372301828000033 ], [ -123.741124699999915, 48.372296611000102 ], [ -123.741116866999946, 48.37175686000004 ], [ -123.741521921999947, 48.371754250000095 ], [ -123.741518002999982, 48.37148437500008 ], [ -123.741923054999972, 48.37148176300007 ], [ -123.741919133999943, 48.37121188800004 ], [ -123.742334361999923, 48.371209210000089 ], [ -123.742335874999966, 48.371177460000062 ], [ -123.740494326999965, 48.371138128000077 ], [ -123.740508386999934, 48.37084342 ], [ -123.739759216999929, 48.370827409000135 ], [ -123.739808439999962, 48.369795995000068 ], [ -123.738676038999984, 48.369771784000157 ], [ -123.73868964199994, 48.3694868830001 ], [ -123.738404145999965, 48.369480777000021 ], [ -123.738405997999934, 48.369441993000052 ], [ -123.737417713999974, 48.369420851000093 ], [ -123.737442284999986, 48.368906523000099 ], [ -123.734844810999974, 48.368850912000049 ], [ -123.734811029999932, 48.369557216000025 ], [ -123.734743661999985, 48.369555773000059 ], [ -123.734731274999916, 48.369814755000021 ], [ -123.736870714999938, 48.369860565000117 ], [ -123.736855256999959, 48.370184058000071 ], [ -123.73755110899998, 48.370198948000059 ], [ -123.737507319999935, 48.371115578000065 ], [ -123.739719886999978, 48.371162894000044 ], [ -123.73967821399999, 48.372036020000081 ], [ -123.740310670999932, 48.372031952000107 ], [ -123.740314583999918, 48.372301828000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225922001", "BldgCostT": "153175001", "sL_LossRatio": "0.841728016827473", "sL_AssetLoss": "524856", "sL_BldgLoss": "441786", "sL_StrLoss": "256035", "sL_NStrLoss": "185751", "sL_ContLoss": "83070", "geom_point": "0101000020E610000082A392D7D6D95EC000BADC1E0C4D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.398469185999915, 48.612143596000067 ], [ -123.398267494999928, 48.611859304000106 ], [ -123.397607592999933, 48.610655804000018 ], [ -123.397319404999948, 48.610332496000055 ], [ -123.396528798999981, 48.609876790000065 ], [ -123.396269886999946, 48.609517905000054 ], [ -123.395576004999953, 48.609214490000014 ], [ -123.395465104999943, 48.609097791000131 ], [ -123.39482552299998, 48.607194057000072 ], [ -123.394869499999942, 48.607193905000081 ], [ -123.394850837999954, 48.607133862000097 ], [ -123.394754038999935, 48.606666862000104 ], [ -123.39475484699993, 48.60665452300006 ], [ -123.394727496999906, 48.60665461700011 ], [ -123.394683992999958, 48.606276398000048 ], [ -123.39448856599995, 48.605733587000053 ], [ -123.39451222299995, 48.605305915000031 ], [ -123.394404179999981, 48.605306285000026 ], [ -123.394395493000033, 48.60409020400003 ], [ -123.394127474999934, 48.603711054000037 ], [ -123.394127048999977, 48.60365646900005 ], [ -123.393988864999969, 48.603418492000088 ], [ -123.393920831999964, 48.603418724000115 ], [ -123.393736103999984, 48.603157391000124 ], [ -123.393702484999949, 48.602776612000078 ], [ -123.394220593999989, 48.602729791000108 ], [ -123.394588394999943, 48.60272356100004 ], [ -123.39532046399998, 48.602711137000128 ], [ -123.396134674999942, 48.60269730400011 ], [ -123.396402367999897, 48.602700633000111 ], [ -123.396614322999966, 48.598531190000138 ], [ -123.396632229999923, 48.598179243000061 ], [ -123.396824930999955, 48.597142670000061 ], [ -123.397048140999956, 48.596411573000054 ], [ -123.397506103999959, 48.595401317000039 ], [ -123.398114268, 48.59414773200006 ], [ -123.398156135999926, 48.594147586000076 ], [ -123.398280845, 48.594147296000088 ], [ -123.399281848999948, 48.594142690000083 ], [ -123.399620922999958, 48.594141149000102 ], [ -123.399769317999983, 48.594140467000059 ], [ -123.400217631999936, 48.594138639000079 ], [ -123.40128063499999, 48.594134345000057 ], [ -123.403470751999961, 48.594125466000079 ], [ -123.403716469999978, 48.594125295000012 ], [ -123.404150390999945, 48.594124938000036 ], [ -123.404353818999979, 48.594124772000058 ], [ -123.404760555999985, 48.59412445300007 ], [ -123.405153883999915, 48.594124133000058 ], [ -123.408298117999919, 48.594121604000122 ], [ -123.409704092999988, 48.594112611000135 ], [ -123.409974762999937, 48.594115251000083 ], [ -123.411242691999959, 48.594127601000011 ], [ -123.411283770999958, 48.594127994000061 ], [ -123.411554458999916, 48.594130654000068 ], [ -123.411568326999955, 48.594130782000072 ], [ -123.412518169999956, 48.594140025000051 ], [ -123.415136177999955, 48.594165459000109 ], [ -123.416899244999939, 48.5941825660001 ], [ -123.416924103999975, 48.594182800000063 ], [ -123.416865312999917, 48.59621890500005 ], [ -123.416863037999946, 48.596355935000112 ], [ -123.416859474999939, 48.596571802 ], [ -123.416852014999975, 48.597021829000042 ], [ -123.416850690999951, 48.59710207900013 ], [ -123.415978582999983, 48.597102493000072 ], [ -123.415768395999962, 48.597230786000125 ], [ -123.415308786999987, 48.597767553000089 ], [ -123.414819301999927, 48.598339187000107 ], [ -123.413772981999955, 48.599570660000019 ], [ -123.413412895999954, 48.599994452000047 ], [ -123.413350096999949, 48.600068354000058 ], [ -123.412687663999975, 48.600847981000079 ], [ -123.41264880499989, 48.600893661000036 ], [ -123.411999639999962, 48.601657667000055 ], [ -123.41193105499994, 48.601738338000125 ], [ -123.411907091000018, 48.601766538000035 ], [ -123.411823678999937, 48.601864721000013 ], [ -123.41147754899994, 48.602272024000051 ], [ -123.411105714, 48.602709606000118 ], [ -123.410972053999956, 48.602867061 ], [ -123.410780580999983, 48.603092685 ], [ -123.409181185999927, 48.604977001000037 ], [ -123.408140610999936, 48.606215510000062 ], [ -123.407921507999959, 48.606516157000115 ], [ -123.407803773999944, 48.606513286000116 ], [ -123.407805588999977, 48.606480279000039 ], [ -123.407259955999933, 48.606466972000064 ], [ -123.407385879999964, 48.60417929700008 ], [ -123.40483104, 48.60411695300008 ], [ -123.404683994999942, 48.60678568600008 ], [ -123.403333661999966, 48.606752711000127 ], [ -123.399273651999977, 48.606653461000086 ], [ -123.399273709999989, 48.606652394000015 ], [ -123.397812759999937, 48.606616643000045 ], [ -123.397812975999955, 48.606644000000124 ], [ -123.398626881999945, 48.606641185000051 ], [ -123.398631129, 48.60718094700011 ], [ -123.399038086999923, 48.607179537000086 ], [ -123.399044466999968, 48.607989178000068 ], [ -123.398637501999985, 48.607990588000057 ], [ -123.398646339999971, 48.609113353000069 ], [ -123.398648123999962, 48.609339990000123 ], [ -123.398823771999943, 48.609339381000098 ], [ -123.399055097999977, 48.609338580000156 ], [ -123.39905722499999, 48.60960846100005 ], [ -123.401499086999962, 48.60959997300008 ], [ -123.401496947999988, 48.60933009300004 ], [ -123.403373467999955, 48.609323536000012 ], [ -123.403938794999959, 48.609321554000047 ], [ -123.403940945999949, 48.609591434000016 ], [ -123.405161876999898, 48.609587145000063 ], [ -123.405168353999926, 48.610396786000074 ], [ -123.404761370999921, 48.6103982160001 ], [ -123.404763527999947, 48.610668097000037 ], [ -123.405170511999941, 48.610666666000078 ], [ -123.405176989999944, 48.611476306000014 ], [ -123.406397965999957, 48.611472003000173 ], [ -123.406389301999951, 48.61039248400003 ], [ -123.4059823199999, 48.610393919000067 ], [ -123.405975827999924, 48.609584279000053 ], [ -123.407196757999884, 48.609579968000034 ], [ -123.407194588999928, 48.609310088000072 ], [ -123.407535730999911, 48.609308882000029 ], [ -123.407693328999983, 48.60980548500001 ], [ -123.408347078999952, 48.61186509500002 ], [ -123.406347705999949, 48.611874811000064 ], [ -123.404432683999943, 48.6118840990001 ], [ -123.401182221999974, 48.612126796000091 ], [ -123.40102148299998, 48.612138796000139 ], [ -123.400409495999924, 48.612108492000111 ], [ -123.400003613999914, 48.612100402000095 ], [ -123.39899539799994, 48.612113953000055 ], [ -123.398528374999898, 48.612123377000053 ], [ -123.398502377999975, 48.61212488300005 ], [ -123.398469185999915, 48.612143596000067 ] ], [ [ -123.403726847999963, 48.600483825000104 ], [ -123.403753487999978, 48.600000463000114 ], [ -123.409163079000024, 48.600132462000097 ], [ -123.40914270799999, 48.600502845000129 ], [ -123.411231840999974, 48.600553748000095 ], [ -123.411362786999959, 48.598170845 ], [ -123.412394907999968, 48.598195977000024 ], [ -123.412390736999924, 48.597683624000048 ], [ -123.412254737999973, 48.59768486100004 ], [ -123.412220137999981, 48.597616162000087 ], [ -123.412389155999961, 48.597489243000076 ], [ -123.412386367999943, 48.597146653000088 ], [ -123.412793243999957, 48.597145196000028 ], [ -123.412787507999965, 48.596441157000037 ], [ -123.41011792099999, 48.596376137000107 ], [ -123.410119537999904, 48.596660861000046 ], [ -123.409774437999971, 48.596660962000058 ], [ -123.409770137999956, 48.596592662000027 ], [ -123.40953365199999, 48.596590016000128 ], [ -123.409536052999982, 48.596886936000047 ], [ -123.409503899999976, 48.596887051000131 ], [ -123.409505536999959, 48.596995261000124 ], [ -123.408712337999944, 48.59699836100009 ], [ -123.408712661999971, 48.596889862000069 ], [ -123.40790855399996, 48.596892713000059 ], [ -123.407903960999946, 48.596322163000082 ], [ -123.407889783999963, 48.596321817000018 ], [ -123.40790215, 48.596097066000013 ], [ -123.407899863999916, 48.59581319100009 ], [ -123.407917771999948, 48.595813128000081 ], [ -123.407928277999957, 48.595622179000088 ], [ -123.406590192999914, 48.595589537000116 ], [ -123.40651942, 48.596875171000079 ], [ -123.403441586, 48.596800020000046 ], [ -123.402010931999911, 48.596765058000045 ], [ -123.401989753999942, 48.597149081000055 ], [ -123.39897573399999, 48.597075362000098 ], [ -123.398960651999914, 48.59734853500003 ], [ -123.398967935999934, 48.598273477000056 ], [ -123.399374821999956, 48.598272066000028 ], [ -123.399374966999972, 48.598290191000039 ], [ -123.400025107999966, 48.598306097000062 ], [ -123.399903123999934, 48.600516202000115 ], [ -123.402971663999978, 48.600591222000055 ], [ -123.402978591999926, 48.600465546000045 ], [ -123.403401432999942, 48.600475877000115 ], [ -123.403726847999963, 48.600483825000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302710387", "BldgCostT": "197682080", "sL_LossRatio": "0.823405752107168", "sL_AssetLoss": "968883.2", "sL_BldgLoss": "797784", "sL_StrLoss": "436131", "sL_NStrLoss": "361653", "sL_ContLoss": "171099.2", "geom_point": "0101000020E6100000984C369A33D95EC0C3C6930F874C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.392452837999912, 48.599921761000111 ], [ -123.392429331999935, 48.599915273000121 ], [ -123.392005952999952, 48.599916715000056 ], [ -123.391050385999989, 48.599531307000127 ], [ -123.390861596999969, 48.599541291000101 ], [ -123.390523780999928, 48.599740693000079 ], [ -123.390078913999929, 48.600183602000072 ], [ -123.389849407999947, 48.600300391000076 ], [ -123.389277579999941, 48.600157993 ], [ -123.389112886999925, 48.599745006000092 ], [ -123.388812388999952, 48.599583999000025 ], [ -123.388762200999963, 48.598333596000053 ], [ -123.388869586999988, 48.598189704000021 ], [ -123.389395508999925, 48.597729692000044 ], [ -123.38966521, 48.597603007000046 ], [ -123.390045395999934, 48.597726889000086 ], [ -123.390316798999933, 48.59768978700005 ], [ -123.390640901999987, 48.59751749100004 ], [ -123.390883607999967, 48.597229798000043 ], [ -123.390989693999984, 48.596806794000067 ], [ -123.390957075999935, 48.596311196000059 ], [ -123.390449797999949, 48.595495087000067 ], [ -123.390610679999952, 48.595170394000078 ], [ -123.390620515999927, 48.594720407000104 ], [ -123.390864478999944, 48.594674795000067 ], [ -123.391232686999984, 48.594934009000056 ], [ -123.391636090999953, 48.594555202000095 ], [ -123.392149878999987, 48.594426992000066 ], [ -123.392393005999963, 48.594283108000063 ], [ -123.392675399999945, 48.594038210000065 ], [ -123.392638414999951, 48.593899399000065 ], [ -123.392638841999926, 48.593899127000036 ], [ -123.393102930999987, 48.593907683000111 ], [ -123.393115974999915, 48.593913708000066 ], [ -123.393458940999949, 48.594071764000034 ], [ -123.393493502999917, 48.594087685000083 ], [ -123.393723093999967, 48.594147418000077 ], [ -123.394654275999955, 48.594154927000034 ], [ -123.396096539999959, 48.594151490000087 ], [ -123.39665177599997, 48.594149792000024 ], [ -123.39750494599997, 48.594148132000079 ], [ -123.398114268, 48.59414773200006 ], [ -123.397506103999959, 48.595401317000039 ], [ -123.397048140999956, 48.596411573000054 ], [ -123.396824930999955, 48.597142670000061 ], [ -123.396632229999923, 48.598179243000061 ], [ -123.396614322999966, 48.598531190000138 ], [ -123.396402367999897, 48.602700633000111 ], [ -123.396134674999942, 48.60269730400011 ], [ -123.39532046399998, 48.602711137000128 ], [ -123.394588394999943, 48.60272356100004 ], [ -123.394220593999989, 48.602729791000108 ], [ -123.393702484999949, 48.602776612000078 ], [ -123.393593567, 48.601542955000077 ], [ -123.393587602999958, 48.601475396000097 ], [ -123.393342891999964, 48.601214801000012 ], [ -123.393145487999931, 48.600361689000081 ], [ -123.39287961699992, 48.600225253000119 ], [ -123.392878940999964, 48.600138008000116 ], [ -123.392625936999963, 48.600016161000099 ], [ -123.392452837999912, 48.599921761000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.860908581043186", "sL_AssetLoss": "3566", "sL_BldgLoss": "3070", "sL_StrLoss": "1740", "sL_NStrLoss": "1330", "sL_ContLoss": "496", "geom_point": "0101000020E61000001ACF3506FCD95EC0ACC7BFC7474B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405393894000014, 48.58772538400008 ], [ -123.406614296999919, 48.587721081 ], [ -123.406620791999927, 48.588530725000105 ], [ -123.405400368999949, 48.588535027000034 ], [ -123.405393894000014, 48.58772538400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84550834", "BldgCostT": "54453334", "sL_LossRatio": "0.819799804707606", "sL_AssetLoss": "364274.3", "sL_BldgLoss": "298632", "sL_StrLoss": "181010", "sL_NStrLoss": "117622", "sL_ContLoss": "65642.3", "geom_point": "0101000020E610000027CC310F4FDA5EC0DE4CE8A25F4B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.403503895999961, 48.592894624000053 ], [ -123.403502151999987, 48.592741671000034 ], [ -123.403495104999948, 48.592111978000119 ], [ -123.403487298999977, 48.591418485000062 ], [ -123.403486975999954, 48.591248458000045 ], [ -123.403485231999966, 48.590321814000035 ], [ -123.403485217999943, 48.590300501000122 ], [ -123.403483721999976, 48.590150872000088 ], [ -123.403477093999982, 48.589494146000028 ], [ -123.40346691, 48.588477623000095 ], [ -123.40346578599997, 48.588368894000055 ], [ -123.40346695, 48.58745224200014 ], [ -123.40346763399999, 48.586912382000072 ], [ -123.403468379999978, 48.586318521000074 ], [ -123.40346879399999, 48.585978908000115 ], [ -123.403468124999947, 48.585922659000055 ], [ -123.403445273999964, 48.584042532000119 ], [ -123.403439690999974, 48.583584602 ], [ -123.403442555999973, 48.583403852000089 ], [ -123.405450822999981, 48.583452912000098 ], [ -123.405325109, 48.585736168000025 ], [ -123.405343663999957, 48.585736621000081 ], [ -123.405320695999947, 48.586153726000092 ], [ -123.405345087999962, 48.58615432200012 ], [ -123.40529455299999, 48.58707209500011 ], [ -123.405394041999926, 48.587074524000116 ], [ -123.405331105999949, 48.588217471000078 ], [ -123.405394809999962, 48.588219026000061 ], [ -123.405370510999916, 48.588660312000052 ], [ -123.405383435999951, 48.588660628000085 ], [ -123.405353241999961, 48.589208970000108 ], [ -123.405466165999883, 48.589211728000024 ], [ -123.405443991999917, 48.589614428000104 ], [ -123.405815821999951, 48.589613118000145 ], [ -123.405813660999939, 48.589343237000072 ], [ -123.40703410199994, 48.589338930000032 ], [ -123.407036268999931, 48.58960881100009 ], [ -123.407849900999921, 48.589605932000026 ], [ -123.407856416999934, 48.590415575000129 ], [ -123.407042772999944, 48.59041845300014 ], [ -123.407044938999945, 48.590688335000081 ], [ -123.406638116, 48.59068977200009 ], [ -123.406639297999959, 48.590837249000124 ], [ -123.410168094999946, 48.590923308000114 ], [ -123.410119213999948, 48.5918125950001 ], [ -123.412395768999914, 48.591868052000088 ], [ -123.412394634999913, 48.591888705000031 ], [ -123.413266439, 48.591909930000043 ], [ -123.413215081999937, 48.592845371000095 ], [ -123.413496685999988, 48.592852226000048 ], [ -123.413483391999947, 48.593094393000165 ], [ -123.413573953, 48.593094069000166 ], [ -123.413571749999946, 48.592824188000108 ], [ -123.413978591, 48.592822726000051 ], [ -123.413974180999944, 48.592282965000081 ], [ -123.414381018000014, 48.59228150100013 ], [ -123.414376604999958, 48.591741740000074 ], [ -123.412749272999918, 48.591747585000093 ], [ -123.412731689999987, 48.589588538000051 ], [ -123.413545319999983, 48.589585619000097 ], [ -123.413541336999941, 48.589097368000054 ], [ -123.409826788999951, 48.589006891000089 ], [ -123.410024745999962, 48.585405472000062 ], [ -123.41045948299994, 48.585416068 ], [ -123.410485248999947, 48.584947203000063 ], [ -123.40797736599994, 48.584886053000098 ], [ -123.408118064999968, 48.582327968000087 ], [ -123.407637805999912, 48.582316251000059 ], [ -123.407654011999966, 48.582021651000105 ], [ -123.40593966499992, 48.581979807999979 ], [ -123.405941390999928, 48.581948450000013 ], [ -123.406835212999979, 48.581954487000047 ], [ -123.408998025999935, 48.581919563000099 ], [ -123.4090106099999, 48.581904809 ], [ -123.409124257999963, 48.581830009000022 ], [ -123.40932241899999, 48.58169961800013 ], [ -123.410121409999931, 48.581151993000063 ], [ -123.41197262299994, 48.582691007000065 ], [ -123.412252908999989, 48.582961080000068 ], [ -123.412813277999987, 48.583414618000106 ], [ -123.413517681999949, 48.583984652000048 ], [ -123.413847206999947, 48.584251312000063 ], [ -123.414296303999933, 48.584577800000062 ], [ -123.415030409999986, 48.584940888000041 ], [ -123.416650184999952, 48.585444060000093 ], [ -123.41689801299998, 48.585521043000078 ], [ -123.417140307999944, 48.585596307000046 ], [ -123.417540533999912, 48.585790218000042 ], [ -123.417826010999974, 48.585928494000129 ], [ -123.418350108999974, 48.586321682000062 ], [ -123.418730367, 48.586792473000052 ], [ -123.418818988999931, 48.586955171000028 ], [ -123.419013604999947, 48.587406196000067 ], [ -123.419077480999988, 48.587612928000077 ], [ -123.419218584999925, 48.588069547000067 ], [ -123.419270277999914, 48.588236873000035 ], [ -123.419272926999923, 48.588245458000117 ], [ -123.419321781999926, 48.588403594000063 ], [ -123.419321790999945, 48.588701102000094 ], [ -123.419149925999974, 48.589613805000113 ], [ -123.41899989599996, 48.590078905000098 ], [ -123.418640973999942, 48.590821192000121 ], [ -123.418363394999986, 48.591118313000074 ], [ -123.417253494999969, 48.592001909000039 ], [ -123.417078309999965, 48.592332993000049 ], [ -123.417007699999942, 48.592535011000138 ], [ -123.416995964999941, 48.592766349000037 ], [ -123.416963094999971, 48.593413917000127 ], [ -123.416924103999975, 48.594182800000063 ], [ -123.416899244999939, 48.5941825660001 ], [ -123.415136177999955, 48.594165459000109 ], [ -123.412518169999956, 48.594140025000051 ], [ -123.411568326999955, 48.594130782000072 ], [ -123.411554458999916, 48.594130654000068 ], [ -123.411283770999958, 48.594127994000061 ], [ -123.411242691999959, 48.594127601000011 ], [ -123.409974762999937, 48.594115251000083 ], [ -123.409704092999988, 48.594112611000135 ], [ -123.408298117999919, 48.594121604000122 ], [ -123.405153883999915, 48.594124133000058 ], [ -123.404760555999985, 48.59412445300007 ], [ -123.404353818999979, 48.594124772000058 ], [ -123.404150390999945, 48.594124938000036 ], [ -123.403716469999978, 48.594125295000012 ], [ -123.403470751999961, 48.594125466000079 ], [ -123.403484352999939, 48.593758395000066 ], [ -123.403492659999984, 48.593533385000072 ], [ -123.403498329999977, 48.593380573000069 ], [ -123.403500298999958, 48.593326641000075 ], [ -123.403506766999897, 48.593151784000028 ], [ -123.403505298999931, 48.593020577000068 ], [ -123.403503895999961, 48.592894624000053 ] ], [ [ -123.416397876999895, 48.590165648000024 ], [ -123.416388592999937, 48.58903559700007 ], [ -123.415981782999935, 48.589037067000085 ], [ -123.415979565999947, 48.588767186000062 ], [ -123.415255366999958, 48.588769800000115 ], [ -123.415235136999939, 48.589138582000054 ], [ -123.415168954999899, 48.589136972000126 ], [ -123.415172580999936, 48.589579765000053 ], [ -123.413952134999946, 48.589584158000044 ], [ -123.413956543999959, 48.590123919000085 ], [ -123.414770183999934, 48.590120992000074 ], [ -123.414774600999962, 48.590660753000108 ], [ -123.415181425999947, 48.590659288000076 ], [ -123.415190269999954, 48.59173880900007 ], [ -123.415536508999978, 48.591737560000055 ], [ -123.415623763000013, 48.590146824000023 ], [ -123.416397876999895, 48.590165648000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192634749", "BldgCostT": "124164999", "sL_LossRatio": "0.824762785114439", "sL_AssetLoss": "793405.1", "sL_BldgLoss": "654371", "sL_StrLoss": "411422", "sL_NStrLoss": "242949", "sL_ContLoss": "139034.1", "geom_point": "0101000020E6100000DFA5585E87D85EC0557F311996484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.394473061999989, 48.582954453000134 ], [ -123.394531634999936, 48.581895042000028 ], [ -123.389783662999974, 48.581778501000073 ], [ -123.389253262999944, 48.581765468000079 ], [ -123.389255109999937, 48.581732128000105 ], [ -123.388331176999955, 48.581709420000081 ], [ -123.388304286, 48.582194662000163 ], [ -123.382896810999924, 48.582061599 ], [ -123.38294303499994, 48.581229232000055 ], [ -123.378467203999918, 48.58111888500008 ], [ -123.378484095999951, 48.580815249000104 ], [ -123.375922832999933, 48.580752019000016 ], [ -123.375923341999979, 48.580742880000081 ], [ -123.373854659999935, 48.580691764000051 ], [ -123.373895902999948, 48.579951635000093 ], [ -123.3737231, 48.579947363000073 ], [ -123.373861905999945, 48.577456342000083 ], [ -123.373923775999927, 48.576345959000072 ], [ -123.374721023999911, 48.576365665000075 ], [ -123.374722943999984, 48.576331179000107 ], [ -123.374990070999971, 48.576337780000131 ], [ -123.375034877999923, 48.575533261000082 ], [ -123.37351405699998, 48.575495671000063 ], [ -123.373567247000011, 48.57454113100011 ], [ -123.371072127999952, 48.574479409000091 ], [ -123.37109830299994, 48.574010100000045 ], [ -123.371078556999962, 48.574009611000136 ], [ -123.371087, 48.573858216000097 ], [ -123.370387140999952, 48.573840893000089 ], [ -123.370404070999939, 48.573537413000068 ], [ -123.369675532999949, 48.573519375000068 ], [ -123.369682923999932, 48.573386943000116 ], [ -123.369578462000021, 48.573384356000126 ], [ -123.369563472999971, 48.573652948000095 ], [ -123.367723503999969, 48.573607368000133 ], [ -123.366581469999957, 48.57357906200005 ], [ -123.366510517000037, 48.572713508000064 ], [ -123.366390108999965, 48.572455061000028 ], [ -123.366330677999969, 48.572327499000075 ], [ -123.366362887999983, 48.571212408000086 ], [ -123.366604511999981, 48.570923186000059 ], [ -123.367204349999966, 48.569719122000066 ], [ -123.369718454999912, 48.569781411000086 ], [ -123.369761545999978, 48.56900913500003 ], [ -123.37066004899998, 48.569031382000055 ], [ -123.370664512999923, 48.568951356000063 ], [ -123.372971282999927, 48.569008436000082 ], [ -123.373034678999943, 48.567870812000145 ], [ -123.373052703999974, 48.5678712570001 ], [ -123.373145065999921, 48.566213709000088 ], [ -123.37855069699998, 48.566347271000097 ], [ -123.378550403999938, 48.566352542000089 ], [ -123.38060022399999, 48.566403118000046 ], [ -123.380466105999943, 48.568816802000079 ], [ -123.380400100999921, 48.57000459400016 ], [ -123.378850735999933, 48.569966370000067 ], [ -123.378840292999897, 48.570154166000059 ], [ -123.379079502999943, 48.570160069000046 ], [ -123.37904161299997, 48.570841536000032 ], [ -123.380022910999969, 48.570865746000067 ], [ -123.38001320399998, 48.571040372000105 ], [ -123.380968722999938, 48.571063937000126 ], [ -123.38097769699999, 48.570902415000013 ], [ -123.383012337999929, 48.570952564000059 ], [ -123.386319544999935, 48.571033995000114 ], [ -123.386326084999951, 48.570916046000015 ], [ -123.387674931, 48.570949228000039 ], [ -123.387811559999989, 48.568483674000056 ], [ -123.393217490999973, 48.568616491000029 ], [ -123.393074326999923, 48.571205342000098 ], [ -123.393761215, 48.571222198000058 ], [ -123.393828436999954, 48.570006327000087 ], [ -123.39503398599993, 48.570035901000026 ], [ -123.397526210999928, 48.570096993000064 ], [ -123.397522867999939, 48.569670254000116 ], [ -123.397929523999963, 48.56966884900006 ], [ -123.39792105399998, 48.568589320000044 ], [ -123.398327701999946, 48.568587914000027 ], [ -123.398323460999947, 48.568048149000091 ], [ -123.39710353199996, 48.568052363000085 ], [ -123.39710141899991, 48.567782481000044 ], [ -123.396694777, 48.567783883000075 ], [ -123.39668844599997, 48.566974236000142 ], [ -123.396281809999934, 48.566975636000059 ], [ -123.396275484999975, 48.566165988000066 ], [ -123.395868855999964, 48.566167388000075 ], [ -123.395868532999955, 48.566126253000071 ], [ -123.393286845999938, 48.566062920000057 ], [ -123.39337013, 48.564556613000057 ], [ -123.392603291999976, 48.564559230000036 ], [ -123.392594937999917, 48.563479700000059 ], [ -123.393001545999965, 48.563478313000175 ], [ -123.39299945399992, 48.563208429 ], [ -123.393406057999982, 48.563207041000105 ], [ -123.393399780999928, 48.56239739299999 ], [ -123.392993180999909, 48.562398781000056 ], [ -123.392992481999968, 48.56230853700005 ], [ -123.391515727999973, 48.562272274000051 ], [ -123.391471854999963, 48.563065244000029 ], [ -123.390934778999906, 48.563052050000117 ], [ -123.390932836999966, 48.563087157000076 ], [ -123.390619348999962, 48.563079455000043 ], [ -123.38552754499996, 48.562954224000094 ], [ -123.385533419999931, 48.562848278000025 ], [ -123.38351107799997, 48.562798471000065 ], [ -123.383580853999973, 48.561541138000038 ], [ -123.38371093399995, 48.5591969460001 ], [ -123.383729420999913, 48.559197401000127 ], [ -123.383866364999903, 48.556729241000042 ], [ -123.383875611999898, 48.556729469000082 ], [ -123.383903889999885, 48.556219741000028 ], [ -123.38680417399999, 48.556291158000143 ], [ -123.386825454999951, 48.555907127000097 ], [ -123.386758407999963, 48.555905477000074 ], [ -123.386766554999923, 48.555758458000128 ], [ -123.382361861000021, 48.555649962000089 ], [ -123.382393029999946, 48.555088469000111 ], [ -123.382376594999968, 48.55508806400011 ], [ -123.382483407999985, 48.553163806000143 ], [ -123.378963788999982, 48.553076979000053 ], [ -123.378970161999959, 48.552962322000084 ], [ -123.378052089, 48.552939654000077 ], [ -123.377953659999918, 48.554709901000166 ], [ -123.376327917999902, 48.55466974100009 ], [ -123.37628156299999, 48.55550287000009 ], [ -123.377245100999943, 48.555526674000063 ], [ -123.377044765999983, 48.5591282090001 ], [ -123.375192604999981, 48.559082444000033 ], [ -123.375094809999922, 48.560839141000038 ], [ -123.375497437999925, 48.560837829000022 ], [ -123.375502293999958, 48.561494041000032 ], [ -123.375503923999972, 48.561714189000071 ], [ -123.377649055999953, 48.561767182000089 ], [ -123.377448726999916, 48.565368680000063 ], [ -123.37723208099996, 48.565363330000018 ], [ -123.377195753999914, 48.566016285000032 ], [ -123.376543492999971, 48.566000174000116 ], [ -123.376542127999969, 48.566024700000092 ], [ -123.375931502999947, 48.566009616000045 ], [ -123.375267791999988, 48.56599321500002 ], [ -123.375265079999949, 48.566041932000054 ], [ -123.37467389699999, 48.566027319000085 ], [ -123.37467145600003, 48.566071147000081 ], [ -123.37232188099999, 48.566013041000069 ], [ -123.372236739999934, 48.567540502000078 ], [ -123.371474569999961, 48.567521642000067 ], [ -123.371463719999923, 48.567716220000143 ], [ -123.367848052999946, 48.567626676000081 ], [ -123.367922512999925, 48.567365608000102 ], [ -123.367858681, 48.566142192000058 ], [ -123.367259809999936, 48.563876299000086 ], [ -123.367358911999929, 48.562635802000031 ], [ -123.367291953999981, 48.561485291000054 ], [ -123.367204994999938, 48.559991008000054 ], [ -123.366971015999965, 48.559613605000088 ], [ -123.366424889999948, 48.559129397000085 ], [ -123.36548699699992, 48.55870070600011 ], [ -123.36451049499999, 48.558496994000073 ], [ -123.363167392999983, 48.55843860500007 ], [ -123.362327291999932, 48.558521205000034 ], [ -123.362041794999939, 48.558306193000121 ], [ -123.361999282999975, 48.558109600000115 ], [ -123.362009980999972, 48.557497199000089 ], [ -123.362357888999966, 48.557037192000088 ], [ -123.36283919499995, 48.556001800000111 ], [ -123.363357204, 48.554459473000101 ], [ -123.364880326, 48.554497285000117 ], [ -123.364875706999953, 48.553854839000067 ], [ -123.365040839999921, 48.553854316000113 ], [ -123.365071005999937, 48.553314439000118 ], [ -123.364871825999927, 48.553315071000029 ], [ -123.364866003999964, 48.552505419000106 ], [ -123.365272523999963, 48.552504129000049 ], [ -123.365270580999947, 48.552234246000069 ], [ -123.366357227999956, 48.552230793000064 ], [ -123.366386232999943, 48.551711397000133 ], [ -123.366708233999944, 48.551719385000062 ], [ -123.36675126199998, 48.550948805000075 ], [ -123.369326966999935, 48.551012658000026 ], [ -123.369322994999948, 48.550466916000069 ], [ -123.37630606099999, 48.550690931000055 ], [ -123.377855739, 48.550693864000081 ], [ -123.38070090799999, 48.550699250000029 ], [ -123.384465420999959, 48.550706237000078 ], [ -123.38563950299995, 48.550708395000086 ], [ -123.387543929999978, 48.55068955200008 ], [ -123.388342848999955, 48.550681647000062 ], [ -123.38870878199999, 48.550678019000095 ], [ -123.389535622999958, 48.55066982000011 ], [ -123.3899506059999, 48.550665697000049 ], [ -123.389956459999922, 48.551126568000043 ], [ -123.389962423999961, 48.551594368000032 ], [ -123.38996577099999, 48.551855253000127 ], [ -123.38997387900001, 48.552493958000106 ], [ -123.389985350999979, 48.553393574000047 ], [ -123.389991099999975, 48.55384579800004 ], [ -123.390573397999944, 48.554202688000032 ], [ -123.39090039, 48.554282898000082 ], [ -123.391759086999969, 48.55428750099999 ], [ -123.391979707999923, 48.55428870100009 ], [ -123.392490985, 48.554291830000111 ], [ -123.392714107999964, 48.554293183000055 ], [ -123.39339034399994, 48.556597200000098 ], [ -123.393420968999948, 48.556689106000043 ], [ -123.393701094999969, 48.5575296600001 ], [ -123.394034421999919, 48.558529838 ], [ -123.394124414999979, 48.558723104000165 ], [ -123.394324490999949, 48.559152845 ], [ -123.394839964999974, 48.560259958000131 ], [ -123.395469039999952, 48.561367045000125 ], [ -123.395473838999962, 48.561375469000133 ], [ -123.395547561999976, 48.561508247000027 ], [ -123.395676877999946, 48.561741087000023 ], [ -123.396921417999963, 48.563708254000069 ], [ -123.397111434999914, 48.563998919 ], [ -123.398081899999951, 48.565483083000089 ], [ -123.398413835, 48.566162900000037 ], [ -123.398662663999986, 48.566239336000102 ], [ -123.399065288999964, 48.566692928000116 ], [ -123.39928439399992, 48.566939775000066 ], [ -123.400004363999983, 48.56800317400014 ], [ -123.400144083999962, 48.568209522000053 ], [ -123.400525592999941, 48.568653440000091 ], [ -123.400896784999986, 48.568989787000127 ], [ -123.401307789999976, 48.569512850000081 ], [ -123.401422953999898, 48.569805088000116 ], [ -123.401496868999971, 48.570182849000069 ], [ -123.401729852999964, 48.570571724000018 ], [ -123.4015755099999, 48.571312209000041 ], [ -123.401468578, 48.571824899000042 ], [ -123.401366900999989, 48.572172195000036 ], [ -123.401194015999963, 48.572436597000042 ], [ -123.40224247299993, 48.572428219000088 ], [ -123.402943409000017, 48.572422611000043 ], [ -123.403419581999941, 48.573015797000032 ], [ -123.40347901299999, 48.573583393000099 ], [ -123.403480868999964, 48.573723695000062 ], [ -123.403485425000014, 48.574065562000072 ], [ -123.403488085999967, 48.574263464000083 ], [ -123.403495985999925, 48.574857228000035 ], [ -123.403496359999977, 48.574884214000072 ], [ -123.403499143999952, 48.575091113000063 ], [ -123.403503093000026, 48.57538796799999 ], [ -123.40351281699995, 48.5761149940001 ], [ -123.405065397, 48.576112405000075 ], [ -123.405279099999959, 48.576090496000099 ], [ -123.405800298999921, 48.575916597000045 ], [ -123.405834842999965, 48.575955846000092 ], [ -123.406021514999949, 48.576167755000029 ], [ -123.406191884999913, 48.576361222000074 ], [ -123.406448912999963, 48.576653069000052 ], [ -123.406562682999919, 48.576782223000045 ], [ -123.407269191, 48.577584392000098 ], [ -123.407724411999965, 48.57807716700011 ], [ -123.40830019899991, 48.578700395000077 ], [ -123.408935686999911, 48.579697692000124 ], [ -123.409258415999943, 48.580228502000118 ], [ -123.409571098999947, 48.580623806000148 ], [ -123.410106659999954, 48.581137835000035 ], [ -123.410121409999931, 48.581151993000063 ], [ -123.40932241899999, 48.58169961800013 ], [ -123.409124257999963, 48.581830009000022 ], [ -123.4090106099999, 48.581904809 ], [ -123.408998025999935, 48.581919563000099 ], [ -123.406835212999979, 48.581954487000047 ], [ -123.405941390999928, 48.581948450000013 ], [ -123.405972144, 48.581389742000056 ], [ -123.405368179999968, 48.5813749940001 ], [ -123.40543099300001, 48.580234047000054 ], [ -123.404605220999954, 48.580213877000133 ], [ -123.404640554999958, 48.579572255000059 ], [ -123.403485072999942, 48.579544022000093 ], [ -123.40153725, 48.57949639800011 ], [ -123.401692911999959, 48.576672906000042 ], [ -123.401645002999928, 48.576673073000066 ], [ -123.401644843999975, 48.57665288900008 ], [ -123.399935461999974, 48.57661106500008 ], [ -123.400134121999926, 48.573009591000122 ], [ -123.402429820999927, 48.573065754000019 ], [ -123.402429764999937, 48.573058773000113 ], [ -123.402281182999957, 48.572892402000107 ], [ -123.39958166699995, 48.572901801000036 ], [ -123.399579538999944, 48.572631919000031 ], [ -123.39909691299999, 48.572633594000088 ], [ -123.39903584399994, 48.573740326000056 ], [ -123.397903953999929, 48.57371260500004 ], [ -123.396578689999927, 48.573680133000053 ], [ -123.395050042999927, 48.573642657000022 ], [ -123.39498284599992, 48.574858521000131 ], [ -123.389802673999938, 48.574731362000108 ], [ -123.389576193999986, 48.574725796000102 ], [ -123.389583022999929, 48.57460250600009 ], [ -123.388844967999972, 48.574584367000057 ], [ -123.388827903999953, 48.574892372000093 ], [ -123.383421264999967, 48.574759335000074 ], [ -123.383426263999951, 48.57466928000008 ], [ -123.382026720999974, 48.574634798000076 ], [ -123.382032274999943, 48.574534795000069 ], [ -123.381520223, 48.57452217400008 ], [ -123.381488523999934, 48.575092752000074 ], [ -123.38110612, 48.57508332400004 ], [ -123.381084187999932, 48.575478045000061 ], [ -123.386137167999934, 48.575602498000073 ], [ -123.38602654499999, 48.577597159000049 ], [ -123.386320779999949, 48.577604399000101 ], [ -123.386305823999976, 48.577874087000062 ], [ -123.3862959, 48.578053038000064 ], [ -123.389794223999942, 48.578139050000068 ], [ -123.390040573999912, 48.578145103000068 ], [ -123.39003872899994, 48.578178443000127 ], [ -123.394189734999941, 48.578280342000028 ], [ -123.394358227999959, 48.575232657000058 ], [ -123.397127285999929, 48.57530054100004 ], [ -123.397621571999949, 48.575312652000029 ], [ -123.399764951999927, 48.575365139000048 ], [ -123.399644310999975, 48.577551853000053 ], [ -123.400288963999913, 48.577567631000086 ], [ -123.40015409199999, 48.580012683000085 ], [ -123.40037690599992, 48.58001813500006 ], [ -123.400304314, 48.581334122000037 ], [ -123.399792555999966, 48.581237387000058 ], [ -123.399658252999956, 48.58121200400015 ], [ -123.398149360999952, 48.581961018000079 ], [ -123.398022898999969, 48.58202377300011 ], [ -123.397351028999978, 48.582357278000082 ], [ -123.396952366999926, 48.582555165000052 ], [ -123.396491598999972, 48.582783845000087 ], [ -123.396228601999951, 48.58290762500009 ], [ -123.394473061999989, 48.582954453000134 ] ], [ [ -123.372636059999948, 48.553020314000022 ], [ -123.37267238099993, 48.552368384000076 ], [ -123.372589046999934, 48.552366321000065 ], [ -123.372593850000015, 48.553020451000052 ], [ -123.372636059999948, 48.553020314000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "411197821", "BldgCostT": "258504774", "sL_LossRatio": "0.740735129624716", "sL_AssetLoss": "2079206.1", "sL_BldgLoss": "1540141", "sL_StrLoss": "830467", "sL_NStrLoss": "709674", "sL_ContLoss": "539065.1", "geom_point": "0101000020E6100000D67703D42DDA5EC047E5615F3A494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405834842999965, 48.575955846000092 ], [ -123.405800298999921, 48.575916597000045 ], [ -123.405279099999959, 48.576090496000099 ], [ -123.405065397, 48.576112405000075 ], [ -123.40351281699995, 48.5761149940001 ], [ -123.403503093000026, 48.57538796799999 ], [ -123.403499143999952, 48.575091113000063 ], [ -123.403496359999977, 48.574884214000072 ], [ -123.403495985999925, 48.574857228000035 ], [ -123.403488085999967, 48.574263464000083 ], [ -123.403485425000014, 48.574065562000072 ], [ -123.403480868999964, 48.573723695000062 ], [ -123.40347901299999, 48.573583393000099 ], [ -123.403419581999941, 48.573015797000032 ], [ -123.402943409000017, 48.572422611000043 ], [ -123.40224247299993, 48.572428219000088 ], [ -123.401194015999963, 48.572436597000042 ], [ -123.401366900999989, 48.572172195000036 ], [ -123.401468578, 48.571824899000042 ], [ -123.4015755099999, 48.571312209000041 ], [ -123.401729852999964, 48.570571724000018 ], [ -123.401496868999971, 48.570182849000069 ], [ -123.401422953999898, 48.569805088000116 ], [ -123.401307789999976, 48.569512850000081 ], [ -123.400896784999986, 48.568989787000127 ], [ -123.400525592999941, 48.568653440000091 ], [ -123.400144083999962, 48.568209522000053 ], [ -123.400004363999983, 48.56800317400014 ], [ -123.39928439399992, 48.566939775000066 ], [ -123.399065288999964, 48.566692928000116 ], [ -123.398662663999986, 48.566239336000102 ], [ -123.398413835, 48.566162900000037 ], [ -123.398081899999951, 48.565483083000089 ], [ -123.397111434999914, 48.563998919 ], [ -123.396921417999963, 48.563708254000069 ], [ -123.397285894999982, 48.563968727000045 ], [ -123.398260063999928, 48.564657977000131 ], [ -123.39903331, 48.565064616000051 ], [ -123.399366669999964, 48.565129573000057 ], [ -123.399890914999972, 48.565144210000092 ], [ -123.400002231999935, 48.565143386000024 ], [ -123.40060429, 48.565139097000042 ], [ -123.402144414999938, 48.565137995000107 ], [ -123.403538221999895, 48.565136964000025 ], [ -123.40477329, 48.565135161000107 ], [ -123.405573021999885, 48.565133975000059 ], [ -123.40569500399999, 48.565133777000071 ], [ -123.40576279899993, 48.565133669000048 ], [ -123.406237175999976, 48.565132960000049 ], [ -123.406372732999927, 48.565132758000054 ], [ -123.407104702999945, 48.565131653000051 ], [ -123.407990694999924, 48.565130298000071 ], [ -123.410552385999907, 48.565127895000046 ], [ -123.410121803999928, 48.567521904000046 ], [ -123.409946013999956, 48.568703195000069 ], [ -123.411376087999898, 48.568709309000035 ], [ -123.416843087999936, 48.568715216000022 ], [ -123.417141808999986, 48.568723393000056 ], [ -123.417119790999919, 48.570607197000093 ], [ -123.417118131999928, 48.570715324000048 ], [ -123.417096239999921, 48.572136883000084 ], [ -123.417093335999937, 48.572325780000021 ], [ -123.417065810999972, 48.574112102000107 ], [ -123.417035133999931, 48.576113499000051 ], [ -123.417031386999938, 48.57635639300009 ], [ -123.417024764999937, 48.576788384000025 ], [ -123.41701851299996, 48.577197112000114 ], [ -123.41699700499997, 48.577960204000092 ], [ -123.416946506999949, 48.579746702000087 ], [ -123.415484896999942, 48.579740893000071 ], [ -123.413736206999928, 48.579736287000117 ], [ -123.412030107999925, 48.579721783000053 ], [ -123.410751507999976, 48.579711300000014 ], [ -123.408935686999911, 48.579697692000124 ], [ -123.40830019899991, 48.578700395000077 ], [ -123.407724411999965, 48.57807716700011 ], [ -123.407269191, 48.577584392000098 ], [ -123.406562682999919, 48.576782223000045 ], [ -123.406448912999963, 48.576653069000052 ], [ -123.406191884999913, 48.576361222000074 ], [ -123.406021514999949, 48.576167755000029 ], [ -123.405834842999965, 48.575955846000092 ] ], [ [ -123.414300376999932, 48.575548678000111 ], [ -123.415490093999935, 48.575544392000054 ], [ -123.414292211999978, 48.575515241000083 ], [ -123.414300376999932, 48.575548678000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172003466", "BldgCostT": "99028852", "sL_LossRatio": "0.607518480819906", "sL_AssetLoss": "2963072", "sL_BldgLoss": "1800121", "sL_StrLoss": "674802", "sL_NStrLoss": "1125319", "sL_ContLoss": "1162951", "geom_point": "0101000020E6100000E76CA6E742DB5EC04107D11835494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.41699700499997, 48.577960204000092 ], [ -123.41701851299996, 48.577197112000114 ], [ -123.417024764999937, 48.576788384000025 ], [ -123.417031386999938, 48.57635639300009 ], [ -123.417035133999931, 48.576113499000051 ], [ -123.417065810999972, 48.574112102000107 ], [ -123.417093335999937, 48.572325780000021 ], [ -123.417096239999921, 48.572136883000084 ], [ -123.417118131999928, 48.570715324000048 ], [ -123.417119790999919, 48.570607197000093 ], [ -123.417141808999986, 48.568723393000056 ], [ -123.416843087999936, 48.568715216000022 ], [ -123.411376087999898, 48.568709309000035 ], [ -123.409946013999956, 48.568703195000069 ], [ -123.410121803999928, 48.567521904000046 ], [ -123.410552385999907, 48.565127895000046 ], [ -123.412336565999965, 48.565128812000054 ], [ -123.41414101299992, 48.565129708000065 ], [ -123.415277711999977, 48.565134255000082 ], [ -123.415385686999969, 48.565134702000108 ], [ -123.41614529099995, 48.565135356000155 ], [ -123.41722871399999, 48.565136296000119 ], [ -123.418612291999949, 48.565136240000044 ], [ -123.419894522999925, 48.565136200000026 ], [ -123.420331102999967, 48.565145003000076 ], [ -123.420356128999984, 48.565147941000099 ], [ -123.420768111999948, 48.565196202000081 ], [ -123.42119111, 48.565305600000059 ], [ -123.421871090999971, 48.565689119000105 ], [ -123.42240690899996, 48.565839097000087 ], [ -123.423899293999952, 48.566040303000086 ], [ -123.425041616999962, 48.566036509000121 ], [ -123.425886409000015, 48.565930682000101 ], [ -123.426212793, 48.565851214000084 ], [ -123.428433887999972, 48.565246789000035 ], [ -123.428681824999984, 48.565220495000077 ], [ -123.428910339999945, 48.565196250000092 ], [ -123.429111693999957, 48.565174910000103 ], [ -123.429976703999969, 48.56519401700011 ], [ -123.430513531999964, 48.565193352000094 ], [ -123.432167189999944, 48.565191307000099 ], [ -123.432858424999949, 48.565190440000052 ], [ -123.43288555399999, 48.565190403000024 ], [ -123.433563233, 48.565189561000082 ], [ -123.438525485999946, 48.56518319000007 ], [ -123.440696515999946, 48.567591398000111 ], [ -123.441071185999974, 48.568042196000093 ], [ -123.441259393999985, 48.568414611999977 ], [ -123.441397500999983, 48.568888495000095 ], [ -123.441419197999949, 48.570158505000045 ], [ -123.441429347999971, 48.570226034000029 ], [ -123.437789113999898, 48.570383554000109 ], [ -123.437788684999973, 48.570333869000116 ], [ -123.43697536599997, 48.570336959000038 ], [ -123.43697071499993, 48.569797197000064 ], [ -123.436564059999981, 48.56979874000011 ], [ -123.436561735999987, 48.569528859000087 ], [ -123.434935122999946, 48.569535015000042 ], [ -123.43493743799992, 48.569804896000107 ], [ -123.434530781999953, 48.569806431000075 ], [ -123.434535406999913, 48.570346192000095 ], [ -123.43331542599999, 48.570350791000088 ], [ -123.433313120999927, 48.570080909000062 ], [ -123.432906462999952, 48.570082439000068 ], [ -123.432899551999938, 48.569272795000074 ], [ -123.432492900999989, 48.569274325000045 ], [ -123.43249059799993, 48.569004443000082 ], [ -123.43086400199995, 48.569010540000079 ], [ -123.430861708999942, 48.568740660000053 ], [ -123.430629270999972, 48.568741530000075 ], [ -123.430455061999979, 48.568742181000076 ], [ -123.43043215699997, 48.566043368000074 ], [ -123.42970848899995, 48.566046072000056 ], [ -123.429662977999925, 48.566880797000053 ], [ -123.427801492999961, 48.566835731000012 ], [ -123.427687612999975, 48.568922839000074 ], [ -123.42502306899999, 48.568858275000032 ], [ -123.425019406999965, 48.568925305000079 ], [ -123.42338000299999, 48.568885548000011 ], [ -123.423313903999954, 48.570094842000088 ], [ -123.422714518999967, 48.570080300000086 ], [ -123.422685429999888, 48.570612343000043 ], [ -123.422667569999973, 48.570939004000103 ], [ -123.423434118999964, 48.570957601000082 ], [ -123.42341432299996, 48.571319774000081 ], [ -123.426097746999929, 48.571384832000106 ], [ -123.425988285999921, 48.573389415000079 ], [ -123.426137763999947, 48.573393037000081 ], [ -123.426097102999947, 48.574137668000027 ], [ -123.42622790499999, 48.574140836000034 ], [ -123.426199427999961, 48.574662368000091 ], [ -123.426214736999938, 48.574662739000075 ], [ -123.426196341999955, 48.574999608000084 ], [ -123.426218257999921, 48.575000139000096 ], [ -123.426182611999963, 48.575652923000064 ], [ -123.426286492999949, 48.575655439000066 ], [ -123.426264412999899, 48.576059791000098 ], [ -123.427866760999933, 48.576098599000041 ], [ -123.427804450999957, 48.577240400000044 ], [ -123.427753899999956, 48.578166641000038 ], [ -123.428285879999962, 48.578179520000042 ], [ -123.428331366999956, 48.577345895000086 ], [ -123.429955147999948, 48.577385191000097 ], [ -123.429983227999941, 48.576870234000062 ], [ -123.430930984, 48.576893158000097 ], [ -123.430924234999964, 48.576099092000099 ], [ -123.430923625999966, 48.576027446000111 ], [ -123.431404614999948, 48.576025645000044 ], [ -123.4314071269999, 48.576053776000023 ], [ -123.431719462999951, 48.576024465000032 ], [ -123.431894823999983, 48.576023808000031 ], [ -123.431894845999977, 48.57602339200006 ], [ -123.437300799999946, 48.576013743000026 ], [ -123.43730938899995, 48.576013728000106 ], [ -123.43725537899995, 48.577007082000101 ], [ -123.440628604999944, 48.577088403000069 ], [ -123.440761043999913, 48.57971483300004 ], [ -123.440181860999971, 48.579715599000039 ], [ -123.440059833999925, 48.579715784000037 ], [ -123.437513353999947, 48.57971914400008 ], [ -123.436236560999959, 48.579720807000051 ], [ -123.434758760999941, 48.579722713000073 ], [ -123.430670468999921, 48.579727933000122 ], [ -123.428169412999935, 48.579729981000064 ], [ -123.427586362999989, 48.579730459000089 ], [ -123.42751857399999, 48.579730512000076 ], [ -123.42749147, 48.579730533000095 ], [ -123.427342335999981, 48.579730668000053 ], [ -123.426706907999957, 48.579731169000077 ], [ -123.426555973999882, 48.579731628000111 ], [ -123.425946041999964, 48.579733467000089 ], [ -123.425118816999912, 48.579734334000044 ], [ -123.422770279999924, 48.579736703000094 ], [ -123.42233930899999, 48.57973745000001 ], [ -123.421417451999986, 48.579739048000143 ], [ -123.42072605199999, 48.579740246000021 ], [ -123.420034685999966, 48.579741424000098 ], [ -123.417154960999937, 48.579746343000053 ], [ -123.416946506999949, 48.579746702000087 ], [ -123.41699700499997, 48.577960204000092 ] ], [ [ -123.420500347999962, 48.576992754000031 ], [ -123.420596489, 48.575235999000043 ], [ -123.420623130999928, 48.575236646000121 ], [ -123.420643805999958, 48.574858842000019 ], [ -123.420494322999957, 48.574855211000042 ], [ -123.420514142999977, 48.574493041000053 ], [ -123.419522609999959, 48.574468959000129 ], [ -123.41952468799991, 48.57472009400005 ], [ -123.417897903999929, 48.574726009000031 ], [ -123.41791607, 48.576929972000123 ], [ -123.420500347999962, 48.576992754000031 ] ], [ [ -123.417858563999943, 48.573916484000065 ], [ -123.417974644999958, 48.57179737000007 ], [ -123.417210765999954, 48.571778799000136 ], [ -123.41719976, 48.571979663000064 ], [ -123.417853286999957, 48.571995552000054 ], [ -123.417748031999977, 48.573916885000131 ], [ -123.417858563999943, 48.573916484000065 ] ], [ [ -123.417231788999942, 48.571346100000014 ], [ -123.417253497999965, 48.570949893000098 ], [ -123.417145273999893, 48.57095028600002 ], [ -123.417123730999919, 48.571343473000063 ], [ -123.417231788999942, 48.571346100000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.883487007544007", "sL_AssetLoss": "3579", "sL_BldgLoss": "3162", "sL_StrLoss": "2210", "sL_NStrLoss": "952", "sL_ContLoss": "417", "geom_point": "0101000020E610000050DD225124DC5EC0B22AC24DC6494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.439471455999964, 48.57680480800007 ], [ -123.439469115999913, 48.576534927000104 ], [ -123.438655696999916, 48.576538029000133 ], [ -123.438651139999962, 48.576011313 ], [ -123.440574118999962, 48.576007795000066 ], [ -123.440614085999982, 48.576800442 ], [ -123.439471455999964, 48.57680480800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91177250", "BldgCostT": "62375000", "sL_LossRatio": "0.816760437306481", "sL_AssetLoss": "1119398", "sL_BldgLoss": "914280", "sL_StrLoss": "444280", "sL_NStrLoss": "470000", "sL_ContLoss": "205118", "geom_point": "0101000020E610000071D9111CD1DB5EC0D926FCEF94494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.432025125999985, 48.573632174000124 ], [ -123.437431771999982, 48.573762740000078 ], [ -123.43730938899995, 48.576013728000106 ], [ -123.437300799999946, 48.576013743000026 ], [ -123.431894845999977, 48.57602339200006 ], [ -123.432025125999985, 48.573632174000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252057637", "BldgCostT": "165792080", "sL_LossRatio": "0.728962553013241", "sL_AssetLoss": "3714638", "sL_BldgLoss": "2707832", "sL_StrLoss": "1174642", "sL_NStrLoss": "1533190", "sL_ContLoss": "1006806", "geom_point": "0101000020E6100000009CCD9963DC5EC0616B74D6C0494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.440761043999913, 48.57971483300004 ], [ -123.440628604999944, 48.577088403000069 ], [ -123.440987781, 48.577097056000071 ], [ -123.441003966000011, 48.576798949000114 ], [ -123.440614085999982, 48.576800442 ], [ -123.440574118999962, 48.576007795000066 ], [ -123.438651139999962, 48.576011313 ], [ -123.43864869399998, 48.575728387000026 ], [ -123.440682206999924, 48.575720623000059 ], [ -123.440677515999951, 48.575180862000131 ], [ -123.43986412000001, 48.57518397200009 ], [ -123.439854755999974, 48.574104449000053 ], [ -123.439448064999937, 48.574106003000033 ], [ -123.439433209999919, 48.57239189100013 ], [ -123.43932636299995, 48.572389315000116 ], [ -123.439350376999982, 48.571947258000066 ], [ -123.439022682999948, 48.571948508000041 ], [ -123.439013337999981, 48.570868986000121 ], [ -123.437793346, 48.570873631000019 ], [ -123.437789113999898, 48.570383554000109 ], [ -123.441429347999971, 48.570226034000029 ], [ -123.441490805999976, 48.570635296000056 ], [ -123.44157951299999, 48.571194595000094 ], [ -123.441685510999946, 48.571535310000087 ], [ -123.442028897999961, 48.572066481000014 ], [ -123.442093537999966, 48.572146806000042 ], [ -123.442364892999976, 48.572483889000111 ], [ -123.443459597999947, 48.573833688000015 ], [ -123.443759313, 48.57417269000009 ], [ -123.444144664999939, 48.574479480000072 ], [ -123.445310034999949, 48.575277452000101 ], [ -123.445462587999927, 48.575384783000061 ], [ -123.44554726599992, 48.575470684000088 ], [ -123.447203908999967, 48.576595084000111 ], [ -123.44740976599995, 48.576742970000055 ], [ -123.448982304999959, 48.577872935000045 ], [ -123.448983917999968, 48.577918041000061 ], [ -123.44898419899998, 48.57796313000005 ], [ -123.44907950399994, 48.578027620000107 ], [ -123.449214888999975, 48.578027259000052 ], [ -123.449973830999966, 48.578460211000063 ], [ -123.450130904999952, 48.57848382200013 ], [ -123.450255292999941, 48.578561633000042 ], [ -123.45120102599999, 48.579219901000037 ], [ -123.45177625399999, 48.579670973000106 ], [ -123.45153801599993, 48.579746389000071 ], [ -123.451177780999942, 48.579743161000074 ], [ -123.450703325999939, 48.579738869000053 ], [ -123.449727160999927, 48.579730070000046 ], [ -123.44758481799991, 48.57971073300007 ], [ -123.447025967999977, 48.579705692000054 ], [ -123.445966482999964, 48.579698304 ], [ -123.444388897999943, 48.57970991300003 ], [ -123.44120403, 48.579714234000058 ], [ -123.441049449999923, 48.579714451 ], [ -123.440761043999913, 48.57971483300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171597646", "BldgCostT": "107416525", "sL_LossRatio": "0.819248315935414", "sL_AssetLoss": "400162.8", "sL_BldgLoss": "327832.7", "sL_StrLoss": "232673.1", "sL_NStrLoss": "95159.6", "sL_ContLoss": "72330.1", "geom_point": "0101000020E610000062D321A2DEDA5EC0296ABD0077474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.420356128999984, 48.565147941000099 ], [ -123.420331102999967, 48.565145003000076 ], [ -123.419894522999925, 48.565136200000026 ], [ -123.418612291999949, 48.565136240000044 ], [ -123.41722871399999, 48.565136296000119 ], [ -123.41614529099995, 48.565135356000155 ], [ -123.415385686999969, 48.565134702000108 ], [ -123.415277711999977, 48.565134255000082 ], [ -123.41414101299992, 48.565129708000065 ], [ -123.412336565999965, 48.565128812000054 ], [ -123.410552385999907, 48.565127895000046 ], [ -123.407990694999924, 48.565130298000071 ], [ -123.407104702999945, 48.565131653000051 ], [ -123.406372732999927, 48.565132758000054 ], [ -123.406237175999976, 48.565132960000049 ], [ -123.40576279899993, 48.565133669000048 ], [ -123.40569500399999, 48.565133777000071 ], [ -123.405573021999885, 48.565133975000059 ], [ -123.40477329, 48.565135161000107 ], [ -123.403538221999895, 48.565136964000025 ], [ -123.403544865999905, 48.562682164000066 ], [ -123.40354639199991, 48.562118054000088 ], [ -123.403546602999967, 48.562035715000064 ], [ -123.403546879999951, 48.56192019700007 ], [ -123.403549883999929, 48.560696757000102 ], [ -123.40355089199997, 48.560286689000108 ], [ -123.403550087999946, 48.560210926000053 ], [ -123.403536117999977, 48.558879543000018 ], [ -123.403521858999966, 48.557521122000075 ], [ -123.403514325999964, 48.556801469000028 ], [ -123.403506690999961, 48.556076896000043 ], [ -123.403511983999977, 48.554237707000063 ], [ -123.40351729299999, 48.552726281000012 ], [ -123.403518508000033, 48.552384355000079 ], [ -123.403524392999941, 48.550694714000088 ], [ -123.408702522999974, 48.550662494000036 ], [ -123.410445717999949, 48.55066359900006 ], [ -123.411717741999979, 48.55066359200007 ], [ -123.412381787999962, 48.550663542000088 ], [ -123.412408892999949, 48.550663546000081 ], [ -123.413059130999969, 48.550663524000093 ], [ -123.41312690599996, 48.55066352700009 ], [ -123.414793784999958, 48.550663449000076 ], [ -123.41720689, 48.550663305000086 ], [ -123.422741443999939, 48.550585499000128 ], [ -123.422683895999967, 48.551638526000055 ], [ -123.424212426999944, 48.55167562 ], [ -123.424210894999959, 48.551492389000046 ], [ -123.424710842999971, 48.551490546000117 ], [ -123.424761818999926, 48.550557025000074 ], [ -123.429830942, 48.550485412000164 ], [ -123.42982970499996, 48.554484643000052 ], [ -123.431664803, 48.554479338000093 ], [ -123.436647220999987, 48.554421875000102 ], [ -123.438624197999971, 48.554398999000085 ], [ -123.43824782199998, 48.555126504000121 ], [ -123.438319861999958, 48.556197874000077 ], [ -123.43837429199999, 48.557006700000045 ], [ -123.438285513999944, 48.557420148000134 ], [ -123.438256606999943, 48.557554800000062 ], [ -123.438166497999958, 48.557788724000048 ], [ -123.438047589999883, 48.55809749200008 ], [ -123.438027248999944, 48.558150280000099 ], [ -123.437965187999964, 48.558311407000062 ], [ -123.437879089999939, 48.558461544000117 ], [ -123.437735800999931, 48.558711406000093 ], [ -123.437618416999925, 48.558916106 ], [ -123.436811410999923, 48.559872987000041 ], [ -123.436671396999969, 48.560276933000132 ], [ -123.436639680999988, 48.560368403000069 ], [ -123.436575914999963, 48.560746398000077 ], [ -123.436398804999911, 48.562186487000048 ], [ -123.436387285999956, 48.562556407000081 ], [ -123.436380705999952, 48.562767505000146 ], [ -123.436474790999966, 48.563152994000028 ], [ -123.436505395999973, 48.563197238000072 ], [ -123.43655979299993, 48.563275867000129 ], [ -123.436587699999933, 48.56331621200011 ], [ -123.436937004999962, 48.563582687000093 ], [ -123.437551808999899, 48.564051692000042 ], [ -123.438525485999946, 48.56518319000007 ], [ -123.433563233, 48.565189561000082 ], [ -123.43288555399999, 48.565190403000024 ], [ -123.432858424999949, 48.565190440000052 ], [ -123.432167189999944, 48.565191307000099 ], [ -123.430513531999964, 48.565193352000094 ], [ -123.429976703999969, 48.56519401700011 ], [ -123.429111693999957, 48.565174910000103 ], [ -123.428910339999945, 48.565196250000092 ], [ -123.428681824999984, 48.565220495000077 ], [ -123.428433887999972, 48.565246789000035 ], [ -123.426212793, 48.565851214000084 ], [ -123.425886409000015, 48.565930682000101 ], [ -123.425041616999962, 48.566036509000121 ], [ -123.423899293999952, 48.566040303000086 ], [ -123.42240690899996, 48.565839097000087 ], [ -123.421871090999971, 48.565689119000105 ], [ -123.42119111, 48.565305600000059 ], [ -123.420768111999948, 48.565196202000081 ], [ -123.420356128999984, 48.565147941000099 ] ], [ [ -123.413415980999929, 48.555421266000103 ], [ -123.413439791999963, 48.554987159000049 ], [ -123.412449967999962, 48.554963041000072 ], [ -123.412452816999973, 48.555313576000032 ], [ -123.410420114999965, 48.555320840000078 ], [ -123.410424479999904, 48.555860605000127 ], [ -123.40920484499999, 48.555864944000128 ], [ -123.409209197999971, 48.556404710000102 ], [ -123.408802648999966, 48.55640615500009 ], [ -123.408806996999914, 48.556945919000022 ], [ -123.408400442999934, 48.556947363000099 ], [ -123.408402615999933, 48.557217245000061 ], [ -123.411364022999976, 48.557206705000041 ], [ -123.411464646999931, 48.555373714000062 ], [ -123.413415980999929, 48.555421266000103 ] ], [ [ -123.428054711999962, 48.552279258000077 ], [ -123.428069210999965, 48.552013405000082 ], [ -123.427357332999946, 48.551996158000087 ], [ -123.427366804999963, 48.55182253200018 ], [ -123.427030808000012, 48.551814390000068 ], [ -123.42700683, 48.55225386899999 ], [ -123.428054711999962, 48.552279258000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114012083", "BldgCostT": "72293333", "sL_LossRatio": "0.820780328470327", "sL_AssetLoss": "419733.5", "sL_BldgLoss": "344509", "sL_StrLoss": "209609", "sL_NStrLoss": "134900", "sL_ContLoss": "75224.5", "geom_point": "0101000020E61000008889BC9B9DD95EC0FF3981C035474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40095639899999, 48.556690687000113 ], [ -123.400910899999971, 48.556461498000068 ], [ -123.400001640999974, 48.556465169000049 ], [ -123.399771253000011, 48.556466088000107 ], [ -123.399757719999968, 48.556466136000068 ], [ -123.399297795, 48.556467988000065 ], [ -123.398382909999896, 48.556472612000015 ], [ -123.397696773999954, 48.556475592000062 ], [ -123.396686307999985, 48.556570789000027 ], [ -123.396302718999976, 48.556565343000095 ], [ -123.395814289999976, 48.55655839700011 ], [ -123.395805099999905, 48.556036556 ], [ -123.39579890600001, 48.55568529300006 ], [ -123.39576045699999, 48.555488341000064 ], [ -123.39574985099992, 48.555434122000072 ], [ -123.395600754000014, 48.554670574000085 ], [ -123.395524707000021, 48.554281 ], [ -123.397218826999918, 48.554277507000108 ], [ -123.397509513999978, 48.5542801060001 ], [ -123.398967540999934, 48.554292960000105 ], [ -123.3990619, 48.554293783000055 ], [ -123.399549899999968, 48.554301673000055 ], [ -123.399996775999966, 48.554308901000127 ], [ -123.4007961, 48.554321793 ], [ -123.401373151999977, 48.554329806000098 ], [ -123.401386920999954, 48.554329993000117 ], [ -123.401617483999985, 48.55436720300002 ], [ -123.401791998999954, 48.554466088000012 ], [ -123.40288478699992, 48.555454903000054 ], [ -123.403506690999961, 48.556076896000043 ], [ -123.403514325999964, 48.556801469000028 ], [ -123.403521858999966, 48.557521122000075 ], [ -123.403536117999977, 48.558879543000018 ], [ -123.403550087999946, 48.560210926000053 ], [ -123.40355089199997, 48.560286689000108 ], [ -123.401283206999963, 48.560262808000111 ], [ -123.401332020000027, 48.559941203000072 ], [ -123.401441312999964, 48.559725695000097 ], [ -123.40189595399994, 48.559133879000051 ], [ -123.401958732999958, 48.559052204000125 ], [ -123.402249309999959, 48.558444402000106 ], [ -123.402281212999981, 48.558235389000089 ], [ -123.402306505999988, 48.558069805000102 ], [ -123.4021622, 48.557446006000085 ], [ -123.401874983999974, 48.55730639700004 ], [ -123.401301275999927, 48.557061592000117 ], [ -123.401124696999901, 48.556927402000078 ], [ -123.40095639899999, 48.556690687000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99420833", "BldgCostT": "63203333", "sL_LossRatio": "0.769319574599581", "sL_AssetLoss": "576022", "sL_BldgLoss": "443145", "sL_StrLoss": "258609", "sL_NStrLoss": "184536", "sL_ContLoss": "132877", "geom_point": "0101000020E610000001EC7119D6DB5EC015E31D5C11524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.416831491999943, 48.654372597000069 ], [ -123.416830747999967, 48.653661885000076 ], [ -123.416830272999945, 48.653235295000101 ], [ -123.416830691999934, 48.653116989000054 ], [ -123.416835337999927, 48.65175478700008 ], [ -123.416838792999968, 48.650734006000071 ], [ -123.41681899699995, 48.650670737000056 ], [ -123.416781089999958, 48.650549604000012 ], [ -123.416818405999919, 48.650289996000062 ], [ -123.416825350999957, 48.650272890000039 ], [ -123.416896627999989, 48.645820814000061 ], [ -123.41679328699999, 48.645759499000079 ], [ -123.416808087999982, 48.645169413000147 ], [ -123.416774599999911, 48.644420407000077 ], [ -123.41675657899998, 48.644303029000071 ], [ -123.416667803999985, 48.643725408000087 ], [ -123.416620995999935, 48.643145487000105 ], [ -123.416660811999918, 48.642790410000018 ], [ -123.416746312999976, 48.64246798900011 ], [ -123.417007907999917, 48.641362398000133 ], [ -123.417021584999986, 48.641304485000049 ], [ -123.4173260099999, 48.64055227700004 ], [ -123.417387384999969, 48.640400650000167 ], [ -123.417408866999907, 48.640347553000026 ], [ -123.417502083999977, 48.640130769000024 ], [ -123.417883989999922, 48.639222320000059 ], [ -123.417960066999939, 48.638947414000071 ], [ -123.418382671999936, 48.637790249 ], [ -123.418696690999951, 48.637180366000123 ], [ -123.419543103, 48.636203481000031 ], [ -123.420092245999967, 48.635569691000114 ], [ -123.420266466999948, 48.635368594000091 ], [ -123.420163626999937, 48.635291272000082 ], [ -123.420174581999959, 48.635190575000081 ], [ -123.420234405999963, 48.635112695000011 ], [ -123.420370504999966, 48.635077235000047 ], [ -123.420519232999951, 48.635083542000146 ], [ -123.420612205999987, 48.634981575000097 ], [ -123.42072830599993, 48.634854244000067 ], [ -123.420805261999988, 48.634637043000083 ], [ -123.420771040999966, 48.634321587000045 ], [ -123.420514119999922, 48.633643761 ], [ -123.423004249999977, 48.63364277900012 ], [ -123.422792392999952, 48.632747892000097 ], [ -123.420427586999907, 48.632749206000085 ], [ -123.420429289999973, 48.63087935100004 ], [ -123.420429601999942, 48.630537890000099 ], [ -123.420375812999964, 48.629984909000065 ], [ -123.424468392999955, 48.629987544000109 ], [ -123.426897783999905, 48.629989039000108 ], [ -123.427345650999925, 48.629989306 ], [ -123.427861338999946, 48.629989621000036 ], [ -123.430046603999969, 48.629990888000123 ], [ -123.43054763399999, 48.629996683000101 ], [ -123.434673705999941, 48.630047373000068 ], [ -123.435406549, 48.630056354000018 ], [ -123.436302214999913, 48.630067335000092 ], [ -123.436631846999916, 48.630071372000025 ], [ -123.437103833999942, 48.630072184000092 ], [ -123.438678947999961, 48.6300748620001 ], [ -123.439289771999952, 48.630075888000057 ], [ -123.440008948999946, 48.630077105000083 ], [ -123.440565527999965, 48.630078051000027 ], [ -123.442221439999955, 48.630080810000017 ], [ -123.442940445999923, 48.630082010000123 ], [ -123.443196486999966, 48.630082424000086 ], [ -123.443659090999972, 48.63004899 ], [ -123.444144818999959, 48.630013905000119 ], [ -123.444254971999953, 48.630005952000062 ], [ -123.444554151999981, 48.629984335000138 ], [ -123.445556227999987, 48.629996704000106 ], [ -123.445948337999951, 48.630015592000113 ], [ -123.446525265, 48.630043392000083 ], [ -123.448974676999939, 48.630227478000116 ], [ -123.449666333999971, 48.630217033000058 ], [ -123.451075204999967, 48.630048869000085 ], [ -123.45187620800003, 48.630020258000066 ], [ -123.454069061999917, 48.630030740000066 ], [ -123.454516871999957, 48.630032856000078 ], [ -123.455127533, 48.630035737000064 ], [ -123.456253823999944, 48.630041074000061 ], [ -123.457258179999911, 48.630045820000063 ], [ -123.458080716999945, 48.630049691000117 ], [ -123.45809481299996, 48.630184846000105 ], [ -123.458174803999967, 48.630949566000112 ], [ -123.458180792999926, 48.631006800000094 ], [ -123.458172293999922, 48.631949953000046 ], [ -123.458160598999925, 48.633245263000056 ], [ -123.458156915999922, 48.633657502000112 ], [ -123.458103782999899, 48.635585148000096 ], [ -123.458070588999988, 48.636790493000113 ], [ -123.458056686999967, 48.637294483000126 ], [ -123.458008598999967, 48.639039289000031 ], [ -123.458008386999907, 48.639938929000046 ], [ -123.458008134999929, 48.640955581000114 ], [ -123.45800813699999, 48.640998012000061 ], [ -123.45800809099994, 48.641171551000077 ], [ -123.45800772299999, 48.642670298000084 ], [ -123.458006304999955, 48.643357725000065 ], [ -123.458004709999955, 48.644130606000047 ], [ -123.45796083599997, 48.644562754000127 ], [ -123.457947135, 48.644697687000082 ], [ -123.457943812999972, 48.644730398000092 ], [ -123.457834390999949, 48.64494870900004 ], [ -123.457099700999962, 48.645677493000093 ], [ -123.456713211999954, 48.64595669600007 ], [ -123.456119718999929, 48.646278806000062 ], [ -123.455919395999928, 48.646368432000052 ], [ -123.455733478999903, 48.646451598000077 ], [ -123.452082220999927, 48.647768963000054 ], [ -123.45181009400001, 48.647867138000024 ], [ -123.450759395999953, 48.648246196000038 ], [ -123.450418528999961, 48.648369161000119 ], [ -123.450351297999973, 48.648393417000079 ], [ -123.448960797999959, 48.648863099000103 ], [ -123.44857541199994, 48.649094604000027 ], [ -123.447705478999978, 48.649541167000024 ], [ -123.446106179999958, 48.650362146000035 ], [ -123.445089307999979, 48.650884087000158 ], [ -123.444960821, 48.650978706000068 ], [ -123.444719286999913, 48.651156504000092 ], [ -123.444510198999936, 48.651361494000071 ], [ -123.444502471999954, 48.651375474000083 ], [ -123.444379499999954, 48.651597294000076 ], [ -123.444363889999963, 48.651662018000124 ], [ -123.444321819999914, 48.651836591000119 ], [ -123.444317987, 48.652055510000025 ], [ -123.444429370999941, 48.65235431700011 ], [ -123.444200990999946, 48.652355197000048 ], [ -123.444198619999966, 48.652085320000062 ], [ -123.44379130499999, 48.652086890000199 ], [ -123.443788934999944, 48.651817013000041 ], [ -123.442974306999972, 48.651820150000042 ], [ -123.442969577999946, 48.651280396000111 ], [ -123.442154959, 48.651283526000029 ], [ -123.442152598999968, 48.651013649000042 ], [ -123.44174529299994, 48.651015212000054 ], [ -123.441727519999944, 48.648980781000077 ], [ -123.441726432999957, 48.648856196000089 ], [ -123.443355593999954, 48.648849937000101 ], [ -123.443360325999919, 48.649389690000127 ], [ -123.44376762, 48.649388123000037 ], [ -123.443769988999932, 48.649657999000148 ], [ -123.444177285999984, 48.649656429000075 ], [ -123.44417965699995, 48.649926306000118 ], [ -123.444586954999963, 48.649924734000123 ], [ -123.444589327999921, 48.650194611000124 ], [ -123.445198475999987, 48.650192259000036 ], [ -123.44522778799994, 48.649652373000023 ], [ -123.444991877999925, 48.649653285000056 ], [ -123.444991435999953, 48.649602896000097 ], [ -123.444461137999951, 48.649566062000069 ], [ -123.444491537999937, 48.649317361000058 ], [ -123.444989216999915, 48.649350789000081 ], [ -123.444980006, 48.648303900000023 ], [ -123.444572719999911, 48.648305473000065 ], [ -123.444565602999972, 48.647495843000073 ], [ -123.445787441, 48.647491121000044 ], [ -123.44579219900001, 48.64803087500011 ], [ -123.446483351, 48.648028197000052 ], [ -123.44657832899999, 48.646277855000072 ], [ -123.448895861999915, 48.646333445000032 ], [ -123.448934071999957, 48.64562861100012 ], [ -123.450265738999931, 48.6456605300001 ], [ -123.450289739999945, 48.645217543000072 ], [ -123.450481194999938, 48.645222131000089 ], [ -123.450507859999945, 48.64472994700003 ], [ -123.451419577999928, 48.64475178900004 ], [ -123.451425227999934, 48.644647469000034 ], [ -123.452450839000022, 48.644672030000024 ], [ -123.452469603999972, 48.64432539400007 ], [ -123.453990624999975, 48.644361802000077 ], [ -123.454122871999971, 48.641917227000071 ], [ -123.454496315999933, 48.641926163000051 ], [ -123.454521136999972, 48.641467248000076 ], [ -123.453670583999923, 48.641446895000072 ], [ -123.453739825999904, 48.640167063000064 ], [ -123.450631251999937, 48.640092618000075 ], [ -123.450826303000014, 48.636491429000081 ], [ -123.454581546, 48.63658135000005 ], [ -123.454635614000011, 48.635581538000032 ], [ -123.448125910999934, 48.635607046000096 ], [ -123.448123521999932, 48.635337168000071 ], [ -123.445680432999978, 48.635346647000077 ], [ -123.445678053999956, 48.635076770000126 ], [ -123.444863696999903, 48.635079918000038 ], [ -123.44484294099999, 48.63271901100007 ], [ -123.442878890999935, 48.632671814000062 ], [ -123.442795521999983, 48.634206468000066 ], [ -123.437381922999975, 48.634076188000023 ], [ -123.437385592999959, 48.634008784000116 ], [ -123.436093679999942, 48.633977653000052 ], [ -123.436153832999949, 48.632873281000066 ], [ -123.435724067999928, 48.632862922000093 ], [ -123.435718770999955, 48.632960144000023 ], [ -123.434571951999899, 48.632932492000073 ], [ -123.434508787999945, 48.634091470000044 ], [ -123.434086429999951, 48.634081283000086 ], [ -123.434004948, 48.635575978000098 ], [ -123.43380156399995, 48.635571073000051 ], [ -123.433792753999938, 48.63573266300007 ], [ -123.434482367, 48.635749296000029 ], [ -123.434291173999924, 48.639256842000101 ], [ -123.434286069999942, 48.63935046000006 ], [ -123.433498714, 48.639331468000066 ], [ -123.433518157999956, 48.641600455000066 ], [ -123.434739854999961, 48.641595851000048 ], [ -123.43474217399995, 48.641865728000091 ], [ -123.435149407999987, 48.641864191000074 ], [ -123.435151731999923, 48.64213406800009 ], [ -123.435558967999953, 48.642132529000058 ], [ -123.435561290999928, 48.642402406000038 ], [ -123.435968530999958, 48.642400866000109 ], [ -123.43597085699993, 48.642670742000035 ], [ -123.436378097999977, 48.642669202000029 ], [ -123.43638042399999, 48.642939079000072 ], [ -123.43720886600002, 48.642935937000111 ], [ -123.437602154999965, 48.642934444000019 ], [ -123.437606824999989, 48.643474198000042 ], [ -123.438014069999952, 48.643472650000035 ], [ -123.438021082999953, 48.644282283000074 ], [ -123.439242843999963, 48.644277630000033 ], [ -123.439245187000026, 48.64454750700007 ], [ -123.440059698999974, 48.644544398000029 ], [ -123.440066743, 48.645354030000135 ], [ -123.439659479999975, 48.645355585000054 ], [ -123.439661826999952, 48.645625462000083 ], [ -123.438847297, 48.645628568000099 ], [ -123.438851980999971, 48.646168323000047 ], [ -123.439666517999981, 48.64616521600005 ], [ -123.439675902999952, 48.647244725000029 ], [ -123.440083178999913, 48.647243170000131 ], [ -123.440085526999965, 48.647513047000125 ], [ -123.44090008799995, 48.647509932000034 ], [ -123.440902441999967, 48.647779810000024 ], [ -123.441309722, 48.647778249000027 ], [ -123.441316786999948, 48.648587880000079 ], [ -123.44103551299996, 48.648588958000047 ], [ -123.439687634, 48.648594111000079 ], [ -123.439689979999912, 48.648863987000098 ], [ -123.439282689, 48.648865541000127 ], [ -123.439285033999951, 48.649135419000054 ], [ -123.438877740999928, 48.649136971000068 ], [ -123.438880081999969, 48.649406849000052 ], [ -123.438472786999924, 48.649408400000041 ], [ -123.438475127999979, 48.649678277000078 ], [ -123.438882424999974, 48.649676726000038 ], [ -123.438884766999948, 48.649946602000107 ], [ -123.439292065999922, 48.649945050000071 ], [ -123.439294410999963, 48.650214927000071 ], [ -123.439701711999987, 48.650213373000028 ], [ -123.43971813899999, 48.652102512000084 ], [ -123.436866921000018, 48.652113361000097 ], [ -123.436864588999924, 48.65184348400004 ], [ -123.435642644999973, 48.651848111000028 ], [ -123.43564031899993, 48.651578234000091 ], [ -123.43482569399994, 48.65158131200004 ], [ -123.434839618999959, 48.653200575 ], [ -123.434024966999985, 48.653203648000023 ], [ -123.434027282999978, 48.653473524000013 ], [ -123.430361328999965, 48.653487279000061 ], [ -123.430345250999906, 48.651598139000107 ], [ -123.42953062399998, 48.651601179000075 ], [ -123.42952145699995, 48.650521670000103 ], [ -123.429114151999926, 48.650523188000079 ], [ -123.429111861999957, 48.650253311000014 ], [ -123.427889952999962, 48.650257856000117 ], [ -123.427887670999965, 48.649987979000123 ], [ -123.427073068999903, 48.649991002000093 ], [ -123.427075348999921, 48.650260879000086 ], [ -123.426668046999964, 48.650262389000154 ], [ -123.426674876999954, 48.651072021000033 ], [ -123.425452948999919, 48.651076541000059 ], [ -123.425459762999964, 48.651886172000047 ], [ -123.424237813999966, 48.651890680000065 ], [ -123.424240078999944, 48.652160558000141 ], [ -123.423832759999968, 48.65216205700002 ], [ -123.42383456599994, 48.652377464000025 ], [ -123.427764211999943, 48.652472521000071 ], [ -123.427748014, 48.652768812000055 ], [ -123.428732193999977, 48.652792596000111 ], [ -123.428679137999922, 48.653763437000045 ], [ -123.428734302999899, 48.653763232000102 ], [ -123.428732015, 48.653493355000123 ], [ -123.42995399899999, 48.653488800000062 ], [ -123.429958677999949, 48.654038850000099 ], [ -123.432748825999951, 48.654106194000114 ], [ -123.432748183999962, 48.654117951000046 ], [ -123.433996680999911, 48.654148062000083 ], [ -123.433964875999933, 48.654731207000047 ], [ -123.435115076999963, 48.654758934000043 ], [ -123.435111808999949, 48.654818862000091 ], [ -123.436482898999927, 48.654813674000074 ], [ -123.43648513, 48.655072023000045 ], [ -123.434531403999941, 48.655044626000112 ], [ -123.425560078999979, 48.654864896000078 ], [ -123.425434101999926, 48.653427505000117 ], [ -123.416986805999983, 48.655030807000081 ], [ -123.416832171999914, 48.655033793000079 ], [ -123.416831491999943, 48.654372597000069 ] ], [ [ -123.422259889999964, 48.653959837000059 ], [ -123.422343297999973, 48.652437415000129 ], [ -123.420576458999932, 48.652443878000049 ], [ -123.420574214999959, 48.652174001000034 ], [ -123.42016689699993, 48.652175488000047 ], [ -123.420155684999941, 48.650826099000064 ], [ -123.419748377999923, 48.650827584000098 ], [ -123.419746138999983, 48.650557707000061 ], [ -123.418931527999973, 48.650560672000125 ], [ -123.418935997999967, 48.651100428000134 ], [ -123.417714068999942, 48.651104865000022 ], [ -123.417720548999938, 48.651889407000034 ], [ -123.417830741999978, 48.651892081000028 ], [ -123.417776002999972, 48.652889516000144 ], [ -123.419162454999949, 48.652923149000067 ], [ -123.419105687999931, 48.653958029000059 ], [ -123.419758679999987, 48.653973863000097 ], [ -123.419762767999941, 48.653899322 ], [ -123.422259889999964, 48.653959837000059 ] ], [ [ -123.426645277999967, 48.647563614000063 ], [ -123.426636170999984, 48.646484103000049 ], [ -123.427043443999963, 48.646482594000055 ], [ -123.427036608999984, 48.645672962000049 ], [ -123.426629342999988, 48.645674470000095 ], [ -123.426624789999906, 48.645134715000054 ], [ -123.426217529000013, 48.645136223000101 ], [ -123.426215254999931, 48.644866345000061 ], [ -123.425807995999932, 48.644867851000051 ], [ -123.425803451999954, 48.644328095000084 ], [ -123.425396196999912, 48.644329601000052 ], [ -123.425391657999953, 48.643789844000054 ], [ -123.424984406999954, 48.643791349000033 ], [ -123.424979872999941, 48.643251593000095 ], [ -123.424572624999954, 48.643253094000066 ], [ -123.424579421999937, 48.644062729000069 ], [ -123.423764915999953, 48.644065727000111 ], [ -123.423767175999927, 48.644335605000059 ], [ -123.42335992199996, 48.644337103000041 ], [ -123.42337121599995, 48.645686492000024 ], [ -123.422963950999971, 48.645687989000052 ], [ -123.422968463999936, 48.646227743000047 ], [ -123.422561194999972, 48.646229238000046 ], [ -123.422567956999984, 48.647038872000138 ], [ -123.424197065999977, 48.647032884000041 ], [ -123.424199328999961, 48.647302762000031 ], [ -123.425828443999961, 48.647296751000056 ], [ -123.425830715999965, 48.647566628000064 ], [ -123.426645277999967, 48.647563614000063 ] ], [ [ -123.423749088999926, 48.642176583000023 ], [ -123.423737786999965, 48.640827193000078 ], [ -123.423866410999949, 48.640826719000124 ], [ -123.423895961999946, 48.640286837000104 ], [ -123.422511597999943, 48.640291925000064 ], [ -123.422513852999927, 48.640561803000026 ], [ -123.42210662799999, 48.640563296000082 ], [ -123.422108879999939, 48.640833174000136 ], [ -123.421701652999957, 48.640834666000032 ], [ -123.421710651999945, 48.641914177000054 ], [ -123.422117886999914, 48.641912686000076 ], [ -123.422120139999947, 48.642182563000119 ], [ -123.423749088999926, 48.642176583000023 ] ], [ [ -123.426568639999942, 48.638476382000086 ], [ -123.426567892999955, 48.638387769000069 ], [ -123.426160684999971, 48.638389276000055 ], [ -123.426151593999961, 48.637309764000051 ], [ -123.426558790999934, 48.637308257000015 ], [ -123.426549689999945, 48.636228745000047 ], [ -123.426678436999921, 48.636228267000099 ], [ -123.427990670999947, 48.636223399000087 ], [ -123.428046284999951, 48.635205619000033 ], [ -123.427797601999899, 48.635199607000068 ], [ -123.427796582999989, 48.635218232000049 ], [ -123.425906121999972, 48.635172503000085 ], [ -123.425874036999957, 48.635759177000082 ], [ -123.425128772999955, 48.635741140000064 ], [ -123.425127607999968, 48.635762457000027 ], [ -123.425095739999989, 48.636344995000101 ], [ -123.423292677999939, 48.636301336000074 ], [ -123.423296688000022, 48.636780519000126 ], [ -123.422786904999938, 48.636782391000068 ], [ -123.42275734399999, 48.637322272000077 ], [ -123.422894003999915, 48.637321771000103 ], [ -123.422900772999967, 48.638131405000088 ], [ -123.423307976999965, 48.638129909000085 ], [ -123.423312492999941, 48.638669666000098 ], [ -123.423984610999938, 48.638667194000064 ], [ -123.423998459999922, 48.638414178000069 ], [ -123.426568639999942, 48.638476382000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.843980738362761", "sL_AssetLoss": "6230", "sL_BldgLoss": "5258", "sL_StrLoss": "3520", "sL_NStrLoss": "1738", "sL_ContLoss": "972", "geom_point": "0101000020E610000011578CC247DC5EC0CEA89600BE534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.437618333, 48.654809366000045 ], [ -123.437663454999949, 48.653980860000075 ], [ -123.439211168000014, 48.654018114000046 ], [ -123.439217298, 48.653905498000057 ], [ -123.43985896099997, 48.653920936000134 ], [ -123.439860072999977, 48.653900514000064 ], [ -123.440421693999951, 48.653914023000084 ], [ -123.44042515299995, 48.653850428000034 ], [ -123.441588209999964, 48.653878395000064 ], [ -123.441633349, 48.653048254000055 ], [ -123.442323002999956, 48.653064832000105 ], [ -123.44232502199999, 48.653027672000128 ], [ -123.443799870999925, 48.653063108000055 ], [ -123.443798408999982, 48.652896520000091 ], [ -123.444205731999915, 48.652894951000093 ], [ -123.444203361999882, 48.652625074000071 ], [ -123.444571508999928, 48.65262365300002 ], [ -123.44525499099997, 48.653698786000078 ], [ -123.445438977000023, 48.65413744100006 ], [ -123.445515497999963, 48.654319908000026 ], [ -123.44554540199999, 48.654442504000066 ], [ -123.444567454999941, 48.654413710000021 ], [ -123.444660317999961, 48.654847367000087 ], [ -123.44463779199999, 48.655185960000075 ], [ -123.436892532999977, 48.655077731000127 ], [ -123.436890237999961, 48.65481213000006 ], [ -123.437618333, 48.654809366000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.971628172226975", "sL_AssetLoss": "1402.8", "sL_BldgLoss": "1363", "sL_StrLoss": "1200", "sL_NStrLoss": "163", "sL_ContLoss": "39.8", "geom_point": "0101000020E610000059CD6BD3B5DE5EC02674349A1E504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.479387090999964, 48.626349189000095 ], [ -123.479285010999916, 48.625773790000032 ], [ -123.479460275999912, 48.62561999600009 ], [ -123.480085699999918, 48.625689800000018 ], [ -123.480477810999957, 48.625488995000055 ], [ -123.480601091999972, 48.625588701000012 ], [ -123.48053540599993, 48.625947593000028 ], [ -123.480264296999977, 48.625913391000068 ], [ -123.479845489999974, 48.626212492000064 ], [ -123.479807715999982, 48.626400496000024 ], [ -123.479510587000021, 48.626474504000029 ], [ -123.479387090999964, 48.626349189000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130573834", "BldgCostT": "86103334", "sL_LossRatio": "0.839962483125867", "sL_AssetLoss": "573288.7", "sL_BldgLoss": "481541", "sL_StrLoss": "304527", "sL_NStrLoss": "177014", "sL_ContLoss": "91747.7", "geom_point": "0101000020E61000001D338109B9DD5EC0C57E7975CC514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.444610682999937, 48.652623502000068 ], [ -123.444608309999964, 48.652353626000057 ], [ -123.444429370999941, 48.65235431700011 ], [ -123.444317987, 48.652055510000025 ], [ -123.444321819999914, 48.651836591000119 ], [ -123.444363889999963, 48.651662018000124 ], [ -123.444379499999954, 48.651597294000076 ], [ -123.444502471999954, 48.651375474000083 ], [ -123.444510198999936, 48.651361494000071 ], [ -123.444719286999913, 48.651156504000092 ], [ -123.444960821, 48.650978706000068 ], [ -123.445089307999979, 48.650884087000158 ], [ -123.446106179999958, 48.650362146000035 ], [ -123.447705478999978, 48.649541167000024 ], [ -123.44857541199994, 48.649094604000027 ], [ -123.448960797999959, 48.648863099000103 ], [ -123.450351297999973, 48.648393417000079 ], [ -123.450418528999961, 48.648369161000119 ], [ -123.450759395999953, 48.648246196000038 ], [ -123.45181009400001, 48.647867138000024 ], [ -123.452082220999927, 48.647768963000054 ], [ -123.455733478999903, 48.646451598000077 ], [ -123.455919395999928, 48.646368432000052 ], [ -123.456119718999929, 48.646278806000062 ], [ -123.456713211999954, 48.64595669600007 ], [ -123.457099700999962, 48.645677493000093 ], [ -123.457834390999949, 48.64494870900004 ], [ -123.457943812999972, 48.644730398000092 ], [ -123.457947135, 48.644697687000082 ], [ -123.45796083599997, 48.644562754000127 ], [ -123.458004709999955, 48.644130606000047 ], [ -123.462110246999941, 48.644141600000097 ], [ -123.463319971999979, 48.644144803000103 ], [ -123.464152297999945, 48.643112615000064 ], [ -123.464595618, 48.642683300000023 ], [ -123.465618248999988, 48.642677736000032 ], [ -123.467890201999936, 48.642665297000121 ], [ -123.472151523999926, 48.640672500000029 ], [ -123.473534689999951, 48.639066597000046 ], [ -123.475040209999946, 48.63753020500009 ], [ -123.475067813999928, 48.637395595000022 ], [ -123.47544148599999, 48.635404994000062 ], [ -123.475834284999934, 48.633767389000091 ], [ -123.476571499, 48.632729301000055 ], [ -123.477025402999956, 48.631971994000097 ], [ -123.471737353999984, 48.631926386000046 ], [ -123.470903071999928, 48.631918171000045 ], [ -123.468552094999936, 48.631894997000103 ], [ -123.468033069999976, 48.631854299000125 ], [ -123.465183379999942, 48.633098187000016 ], [ -123.464240103999913, 48.633509920000073 ], [ -123.463769270999975, 48.633715433000077 ], [ -123.463766796999948, 48.633716498000034 ], [ -123.46361188799996, 48.63373252700012 ], [ -123.463496902999964, 48.633744396000033 ], [ -123.463331865999947, 48.633743840000072 ], [ -123.463318284999957, 48.633743817000045 ], [ -123.463196155999967, 48.633743398000043 ], [ -123.462734409999939, 48.633741881000091 ], [ -123.462368127999952, 48.633740642000056 ], [ -123.461621708999971, 48.633738179000019 ], [ -123.460998492999977, 48.633736096000149 ], [ -123.458156915999922, 48.633657502000112 ], [ -123.458160598999925, 48.633245263000056 ], [ -123.458172293999922, 48.631949953000046 ], [ -123.458180792999926, 48.631006800000094 ], [ -123.458174803999967, 48.630949566000112 ], [ -123.45809481299996, 48.630184846000105 ], [ -123.458080716999945, 48.630049691000117 ], [ -123.463648889999888, 48.630119595000082 ], [ -123.463698183999938, 48.630084692000054 ], [ -123.46477628299999, 48.630068901000065 ], [ -123.465743657999937, 48.630075401000049 ], [ -123.465754207999936, 48.630083494000054 ], [ -123.466339582999979, 48.630207398000017 ], [ -123.466710905999932, 48.63074568400009 ], [ -123.466996585999979, 48.630844007000093 ], [ -123.467350907999901, 48.630861103000015 ], [ -123.468378782999977, 48.630478004000068 ], [ -123.470039913999969, 48.629589296000098 ], [ -123.47094841099999, 48.629505305000073 ], [ -123.47128407699995, 48.629126393000028 ], [ -123.471986086999948, 48.628825896000144 ], [ -123.472931706999972, 48.62824630500004 ], [ -123.474291105999924, 48.628682102000027 ], [ -123.475188310999911, 48.628777499000066 ], [ -123.475595307, 48.628703386000041 ], [ -123.47585030299993, 48.628531100000096 ], [ -123.475941995999975, 48.628197809000035 ], [ -123.476739886999951, 48.627709298000056 ], [ -123.477222507999912, 48.627114006000092 ], [ -123.477554516999973, 48.626391906000038 ], [ -123.478298101999926, 48.626119900000084 ], [ -123.478516692999932, 48.626137005 ], [ -123.478638006000011, 48.626243784000074 ], [ -123.478887705999909, 48.626765109000097 ], [ -123.478854385999952, 48.62742159200009 ], [ -123.478709185999946, 48.627836095000077 ], [ -123.479468112999925, 48.627868799000098 ], [ -123.47986349699994, 48.628038289000123 ], [ -123.479933504999948, 48.628244803000065 ], [ -123.47988299399999, 48.628622201000034 ], [ -123.479610327999978, 48.629227317000144 ], [ -123.479563722999956, 48.629226213000038 ], [ -123.479567481999979, 48.629322401000053 ], [ -123.47944401, 48.629596408000097 ], [ -123.479337879999889, 48.631171597000083 ], [ -123.47893428899999, 48.631756906000049 ], [ -123.478750876999982, 48.63276090199999 ], [ -123.478711360999952, 48.632759965000076 ], [ -123.478688337999969, 48.632822862000097 ], [ -123.478711419999982, 48.632976886000101 ], [ -123.478638191999949, 48.633377716000055 ], [ -123.478189381999982, 48.63359694600009 ], [ -123.478152934999954, 48.633597098000088 ], [ -123.477940637999936, 48.633678461000052 ], [ -123.477833955999969, 48.633766839000025 ], [ -123.47783399, 48.633770541000075 ], [ -123.477652708999969, 48.633859089000026 ], [ -123.47744944899992, 48.634139789000074 ], [ -123.477432409, 48.634139860000062 ], [ -123.477430348999974, 48.63414576200006 ], [ -123.477431394999925, 48.634256619000084 ], [ -123.477449708999984, 48.634318372000031 ], [ -123.477477461999968, 48.634677417000013 ], [ -123.477468137999963, 48.634934662000028 ], [ -123.477510446999972, 48.635104129000126 ], [ -123.47751438899995, 48.635155111000103 ], [ -123.477549563999929, 48.635201538000032 ], [ -123.47755954899999, 48.635218880000146 ], [ -123.477562691999978, 48.635218867000042 ], [ -123.4779997199999, 48.63579570000018 ], [ -123.478052737999946, 48.636073461000123 ], [ -123.478008338, 48.636157361000137 ], [ -123.47785833599994, 48.636348437000052 ], [ -123.47785977299999, 48.636500609000038 ], [ -123.477547494999925, 48.636568364000077 ], [ -123.477403703, 48.636568959000087 ], [ -123.477184739, 48.636638661000084 ], [ -123.477080966999921, 48.636702244000055 ], [ -123.476932502999929, 48.636785796000076 ], [ -123.476919412999948, 48.636869456000035 ], [ -123.476794037999937, 48.637012061000028 ], [ -123.476733938999985, 48.637240361000082 ], [ -123.476646468999931, 48.637382676000122 ], [ -123.476649002999963, 48.63765163300009 ], [ -123.476480735999942, 48.637652330000044 ], [ -123.476245399999954, 48.638035219000116 ], [ -123.47624682699994, 48.638186775000086 ], [ -123.476241500999933, 48.638193092000037 ], [ -123.47614812799999, 48.638193478000062 ], [ -123.47607173899999, 48.638317761000039 ], [ -123.475843409000021, 48.638590811000022 ], [ -123.475844099999904, 48.638664419000094 ], [ -123.475784796999903, 48.638734752000076 ], [ -123.475722825999981, 48.638735008000012 ], [ -123.475440711999951, 48.639072369000075 ], [ -123.475441366999974, 48.639142059000051 ], [ -123.475328083999955, 48.639276411 ], [ -123.475269879999985, 48.639276652000078 ], [ -123.475038008999903, 48.639553924000076 ], [ -123.475038626999918, 48.639619699000043 ], [ -123.474871358999948, 48.639818069 ], [ -123.474787593999963, 48.639818414000068 ], [ -123.474634435, 48.639943526000074 ], [ -123.474634550999966, 48.639955961000076 ], [ -123.47429101799996, 48.640142702000091 ], [ -123.474062292999989, 48.640377703000091 ], [ -123.473942033999975, 48.640965215000058 ], [ -123.47384813799999, 48.641057561000025 ], [ -123.47383051199995, 48.641069172000087 ], [ -123.473830552999942, 48.641073437000067 ], [ -123.472679763999935, 48.641716290000033 ], [ -123.47263792399994, 48.641716461000073 ], [ -123.472393638999947, 48.641809261000112 ], [ -123.472209292999963, 48.641899133000052 ], [ -123.47220940399994, 48.641911076000092 ], [ -123.471850600999915, 48.642024109000062 ], [ -123.471014593999953, 48.642522508000113 ], [ -123.470962061999913, 48.642544833000102 ], [ -123.470587110999944, 48.642631293000129 ], [ -123.470587784999964, 48.642703898000093 ], [ -123.470349007999943, 48.64280537700008 ], [ -123.470223666999971, 48.642805888000112 ], [ -123.469849239999945, 48.643017770000071 ], [ -123.46862179399993, 48.643539394000094 ], [ -123.468392020999943, 48.643828502000076 ], [ -123.468235554999964, 48.643893532000071 ], [ -123.468193339999956, 48.64389370500006 ], [ -123.467905636999959, 48.643934461000043 ], [ -123.467749196999975, 48.644022632000052 ], [ -123.467749870999924, 48.644095389000022 ], [ -123.467648291, 48.644137606000058 ], [ -123.467623709999927, 48.644165904000026 ], [ -123.467611804999933, 48.644165954000101 ], [ -123.467511486999953, 48.644295099000068 ], [ -123.467153176999943, 48.644707586000052 ], [ -123.467131139999935, 48.644707677000049 ], [ -123.466942756999956, 48.644899053000096 ], [ -123.466943192999949, 48.644946212000043 ], [ -123.466899062999971, 48.644978504000072 ], [ -123.466856738999937, 48.644978675000019 ], [ -123.466547237999961, 48.645213261000087 ], [ -123.466538408999952, 48.645216072000018 ], [ -123.466538650999951, 48.645242228000058 ], [ -123.466528175999898, 48.645249893000042 ], [ -123.466430908999939, 48.645250287000088 ], [ -123.46631435099999, 48.64528738500011 ], [ -123.465483569999961, 48.645296797000107 ], [ -123.465242437999933, 48.645279662000071 ], [ -123.465173794999899, 48.64525537100009 ], [ -123.465042742999984, 48.64525590000008 ], [ -123.464522585999944, 48.645184400000069 ], [ -123.464276965999886, 48.645273955000114 ], [ -123.463986038000016, 48.645350662000048 ], [ -123.463689949999946, 48.645484919000076 ], [ -123.463690374999956, 48.645531238000018 ], [ -123.463586877999944, 48.645531654000131 ], [ -123.463397637999961, 48.645617462000139 ], [ -123.463284215999977, 48.645653524000075 ], [ -123.463284867999946, 48.64572461500007 ], [ -123.46302069599993, 48.645775409000066 ], [ -123.462956993999967, 48.645804074000097 ], [ -123.462935412999968, 48.645804161000115 ], [ -123.462913869999966, 48.645823479000036 ], [ -123.462615593999942, 48.645957701000064 ], [ -123.46209235, 48.646617206000016 ], [ -123.46207118599996, 48.64661729000003 ], [ -123.462071426999955, 48.646643577000091 ], [ -123.461634795999942, 48.64719389300005 ], [ -123.461514177999931, 48.647259667000078 ], [ -123.461295137999983, 48.647322061000082 ], [ -123.461263200999923, 48.647339615000114 ], [ -123.461264026999942, 48.64743018399999 ], [ -123.461097198999951, 48.647430851000095 ], [ -123.46103713799999, 48.647463862000031 ], [ -123.46088753799998, 48.647630961000075 ], [ -123.460859300999957, 48.64771184600005 ], [ -123.460861666999918, 48.647971566000066 ], [ -123.460706060999925, 48.647972188000068 ], [ -123.460640237999925, 48.648078161000022 ], [ -123.460423237, 48.648276662000086 ], [ -123.460325436999966, 48.648307761000055 ], [ -123.460131032, 48.648315380000064 ], [ -123.460130189, 48.648330972000096 ], [ -123.459881291999949, 48.648297694000071 ], [ -123.458675897999953, 48.648689402000066 ], [ -123.458120585999978, 48.648736289000098 ], [ -123.457661088999984, 48.649098094000109 ], [ -123.457256107, 48.649190709000038 ], [ -123.45639087399999, 48.649616494000071 ], [ -123.456148200999905, 48.64981590700004 ], [ -123.454846012999951, 48.650117805000015 ], [ -123.453516816999979, 48.650086504000086 ], [ -123.452362007999938, 48.650163407000093 ], [ -123.451958295999958, 48.650596388000068 ], [ -123.451675500999912, 48.650679011000101 ], [ -123.450927309999898, 48.650690388000093 ], [ -123.450658100999973, 48.650898311000084 ], [ -123.449711520999983, 48.65118170300012 ], [ -123.449400796999953, 48.65141669300003 ], [ -123.448898990999979, 48.651516411000053 ], [ -123.448643682999929, 48.651905194000058 ], [ -123.448737360999971, 48.6522095280001 ], [ -123.44868034199996, 48.65220816100009 ], [ -123.448680606999957, 48.65223800600009 ], [ -123.44844299, 48.652274107000075 ], [ -123.448351014999901, 48.652544694000035 ], [ -123.44825578699999, 48.652481994 ], [ -123.448012091999914, 48.652627312000121 ], [ -123.447942128999927, 48.652880482000086 ], [ -123.446242346999952, 48.652887079000024 ], [ -123.446244265999951, 48.653104712000108 ], [ -123.446022497999977, 48.653192714000099 ], [ -123.445873902999978, 48.653490386 ], [ -123.445981559999922, 48.65482374400009 ], [ -123.446011896, 48.655199397000018 ], [ -123.446101768999966, 48.655354627000115 ], [ -123.445776109999912, 48.655388027000093 ], [ -123.44554540199999, 48.654442504000066 ], [ -123.445515497999963, 48.654319908000026 ], [ -123.445438977000023, 48.65413744100006 ], [ -123.44525499099997, 48.653698786000078 ], [ -123.444571508999928, 48.65262365300002 ], [ -123.444610682999937, 48.652623502000068 ] ], [ [ -123.458810244999967, 48.646324962000058 ], [ -123.458636306999963, 48.646091245000044 ], [ -123.457993582999961, 48.646093803000049 ], [ -123.457991140999937, 48.645823926000013 ], [ -123.457810430000023, 48.645824645000104 ], [ -123.45776515699994, 48.646662696000085 ], [ -123.458813535999965, 48.646687739000072 ], [ -123.458810244999967, 48.646324962000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150769332", "BldgCostT": "103243332", "sL_LossRatio": "0.845703918392498", "sL_AssetLoss": "733844.3", "sL_BldgLoss": "620615", "sL_StrLoss": "392044", "sL_NStrLoss": "228571", "sL_ContLoss": "113229.3", "geom_point": "0101000020E61000002173B898D7DD5EC002FF00109C514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.458103782999899, 48.635585148000096 ], [ -123.458156915999922, 48.633657502000112 ], [ -123.460998492999977, 48.633736096000149 ], [ -123.461621708999971, 48.633738179000019 ], [ -123.462368127999952, 48.633740642000056 ], [ -123.462734409999939, 48.633741881000091 ], [ -123.463196155999967, 48.633743398000043 ], [ -123.463318284999957, 48.633743817000045 ], [ -123.463331865999947, 48.633743840000072 ], [ -123.463496902999964, 48.633744396000033 ], [ -123.46361188799996, 48.63373252700012 ], [ -123.463766796999948, 48.633716498000034 ], [ -123.463769270999975, 48.633715433000077 ], [ -123.464240103999913, 48.633509920000073 ], [ -123.465183379999942, 48.633098187000016 ], [ -123.468033069999976, 48.631854299000125 ], [ -123.468552094999936, 48.631894997000103 ], [ -123.470903071999928, 48.631918171000045 ], [ -123.471737353999984, 48.631926386000046 ], [ -123.477025402999956, 48.631971994000097 ], [ -123.476571499, 48.632729301000055 ], [ -123.475834284999934, 48.633767389000091 ], [ -123.47544148599999, 48.635404994000062 ], [ -123.475067813999928, 48.637395595000022 ], [ -123.475040209999946, 48.63753020500009 ], [ -123.473534689999951, 48.639066597000046 ], [ -123.472151523999926, 48.640672500000029 ], [ -123.467890201999936, 48.642665297000121 ], [ -123.465618248999988, 48.642677736000032 ], [ -123.464595618, 48.642683300000023 ], [ -123.464152297999945, 48.643112615000064 ], [ -123.463319971999979, 48.644144803000103 ], [ -123.462110246999941, 48.644141600000097 ], [ -123.458004709999955, 48.644130606000047 ], [ -123.458006304999955, 48.643357725000065 ], [ -123.45800772299999, 48.642670298000084 ], [ -123.45800809099994, 48.641171551000077 ], [ -123.45800813699999, 48.640998012000061 ], [ -123.458008134999929, 48.640955581000114 ], [ -123.458008386999907, 48.639938929000046 ], [ -123.458008598999967, 48.639039289000031 ], [ -123.458056686999967, 48.637294483000126 ], [ -123.458070588999988, 48.636790493000113 ], [ -123.458103782999899, 48.635585148000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39487833", "BldgCostT": "25023333", "sL_LossRatio": "0.936992436439323", "sL_AssetLoss": "50658.68", "sL_BldgLoss": "47466.8", "sL_StrLoss": "39341.6", "sL_NStrLoss": "8125.2", "sL_ContLoss": "3191.88", "geom_point": "0101000020E6100000C1214C3851DC5EC0010A16037B4E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.440596892999977, 48.614721128000092 ], [ -123.44063339099992, 48.614049567000059 ], [ -123.438283149999961, 48.61399296800009 ], [ -123.438404679999948, 48.611758743000088 ], [ -123.443796196999969, 48.611548196000051 ], [ -123.446173001999952, 48.611813767000115 ], [ -123.446097796999979, 48.613200576000061 ], [ -123.446010508999976, 48.614810106000085 ], [ -123.446008276999976, 48.614851248 ], [ -123.445972776999952, 48.614850395000062 ], [ -123.443799601999942, 48.61479817200005 ], [ -123.440596892999977, 48.614721128000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80175833", "BldgCostT": "51113333", "sL_LossRatio": "0.843323917329595", "sL_AssetLoss": "128412.58", "sL_BldgLoss": "108293.4", "sL_StrLoss": "81594.6", "sL_NStrLoss": "26698.8", "sL_ContLoss": "20119.18", "geom_point": "0101000020E61000008E4D0A7717DE5EC0242C128F9B4E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.47142297, 48.615884282000131 ], [ -123.471417915999936, 48.61587395800003 ], [ -123.470030145999971, 48.615869908000057 ], [ -123.466878124999965, 48.616003739000071 ], [ -123.464678289999981, 48.616047516000066 ], [ -123.464803109999977, 48.613729002000056 ], [ -123.465131435999965, 48.613736830000036 ], [ -123.465146514, 48.613456684000042 ], [ -123.462082763999945, 48.613383597000059 ], [ -123.462153576, 48.612069551000026 ], [ -123.466430385999956, 48.61230041200006 ], [ -123.472982478999967, 48.612370699000053 ], [ -123.475209298999971, 48.612270301000102 ], [ -123.475355410999981, 48.612374795000029 ], [ -123.47558829799999, 48.612402907000117 ], [ -123.476165894999951, 48.612366992000062 ], [ -123.476824918, 48.612378109000048 ], [ -123.477611325999959, 48.612540111 ], [ -123.478241985, 48.612672499000048 ], [ -123.478226206999949, 48.612688210000016 ], [ -123.477539107999945, 48.61321229400005 ], [ -123.47723259699994, 48.613763512000084 ], [ -123.476031789999951, 48.614605199000152 ], [ -123.474734280999911, 48.615167694000064 ], [ -123.474090012999937, 48.615818598000089 ], [ -123.473348999, 48.616361191000038 ], [ -123.473055304999946, 48.61685681100009 ], [ -123.472529414999926, 48.617318302000044 ], [ -123.472098508999949, 48.617653007000065 ], [ -123.471605587999974, 48.61856310000006 ], [ -123.471183036999932, 48.618972619000033 ], [ -123.471531298999977, 48.617375496000101 ], [ -123.471535232999955, 48.616988884000072 ], [ -123.471539735999954, 48.616543553000049 ], [ -123.471543915999973, 48.616131787000072 ], [ -123.471450345999983, 48.615940307000159 ], [ -123.471435067999934, 48.615909087000063 ], [ -123.47142297, 48.615884282000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74302168", "BldgCostT": "48536668", "sL_LossRatio": "0.926535095047462", "sL_AssetLoss": "112220.25", "sL_BldgLoss": "103976", "sL_StrLoss": "85637", "sL_NStrLoss": "18339", "sL_ContLoss": "8244.25", "geom_point": "0101000020E6100000317AA84CB5DB5EC09036C803154F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.428936908999958, 48.619171381000051 ], [ -123.428953712999942, 48.61762298200005 ], [ -123.429100355999978, 48.617623993000095 ], [ -123.429806004999961, 48.617628756000052 ], [ -123.429955243000038, 48.6176297660001 ], [ -123.430484531999966, 48.617633329000043 ], [ -123.430612590999942, 48.617634211000087 ], [ -123.431705898999937, 48.617657889000036 ], [ -123.432112692999979, 48.617601910000062 ], [ -123.43247791499999, 48.617462914000029 ], [ -123.432148207999987, 48.616999698 ], [ -123.43209139899993, 48.616675605000061 ], [ -123.432290910999939, 48.61617109500002 ], [ -123.432865570999951, 48.616275104000117 ], [ -123.433208860999969, 48.616337228000077 ], [ -123.433830915999962, 48.616449802000069 ], [ -123.434317200999942, 48.616475110000053 ], [ -123.434720292999913, 48.616411807000055 ], [ -123.435151197999986, 48.61626079600012 ], [ -123.435343721999971, 48.616082497000022 ], [ -123.435548203999971, 48.615810601000064 ], [ -123.435598591999948, 48.615581108000072 ], [ -123.43557001299996, 48.615436102000054 ], [ -123.435462399999935, 48.614848508000073 ], [ -123.43550569199999, 48.614502416000079 ], [ -123.435636094999936, 48.614221611000055 ], [ -123.43565111099997, 48.613996593000067 ], [ -123.435437684999982, 48.613611892000044 ], [ -123.435261689999933, 48.613291066000109 ], [ -123.434975610000023, 48.612769607000111 ], [ -123.43452631699995, 48.612563109000106 ], [ -123.434306801999981, 48.612560827000031 ], [ -123.433876412999922, 48.61255639600008 ], [ -123.43359150399999, 48.612639703000099 ], [ -123.433119986999898, 48.612965494000058 ], [ -123.43258730099997, 48.612723610000103 ], [ -123.43188158699995, 48.612771492000036 ], [ -123.431462518999979, 48.612682904000025 ], [ -123.430393419999916, 48.612148659000091 ], [ -123.430249400999983, 48.612076699000035 ], [ -123.437017013999977, 48.611812890000088 ], [ -123.437005862999968, 48.612017777000048 ], [ -123.434892437999977, 48.611966809000123 ], [ -123.434893205999956, 48.612056269000078 ], [ -123.43504113799996, 48.612058562000058 ], [ -123.43520793899998, 48.612176398000024 ], [ -123.436929224999943, 48.612169881000121 ], [ -123.436931554999902, 48.61243976 ], [ -123.43774555, 48.612436669000054 ], [ -123.437757215999952, 48.613786064000088 ], [ -123.43735020699998, 48.61378760900012 ], [ -123.437354868999932, 48.61432736600004 ], [ -123.437761881999961, 48.61432582000009 ], [ -123.437771214999898, 48.615405335000055 ], [ -123.437364192999922, 48.615406881000098 ], [ -123.437366524999931, 48.615676760000028 ], [ -123.436959501, 48.615678305000117 ], [ -123.436961828999969, 48.61594818500005 ], [ -123.436554804999986, 48.615949728000047 ], [ -123.436564112000013, 48.617029242000122 ], [ -123.436971145999962, 48.617027699000076 ], [ -123.43696881699999, 48.616757820000075 ], [ -123.437375849999938, 48.6167562750001 ], [ -123.437373518999934, 48.616486396000063 ], [ -123.437780548999953, 48.616484850000028 ], [ -123.437778214999952, 48.616214972000066 ], [ -123.438185243999925, 48.616213423000033 ], [ -123.438182906999913, 48.615943545000071 ], [ -123.439811009999985, 48.615937339000041 ], [ -123.439813604999955, 48.616236014000016 ], [ -123.438804519999934, 48.616549748000111 ], [ -123.438583414999968, 48.616618498000108 ], [ -123.438053590999957, 48.616893305000112 ], [ -123.437396980999949, 48.617385097000103 ], [ -123.436748807999933, 48.617968904000108 ], [ -123.436149318999966, 48.618653497000054 ], [ -123.435978740999943, 48.618848336000035 ], [ -123.435935501999907, 48.618897705000087 ], [ -123.435646597999963, 48.619103488000043 ], [ -123.435477015999979, 48.619132807000035 ], [ -123.435436673999945, 48.61913422000007 ], [ -123.435280218999964, 48.619139688000082 ], [ -123.435023394999973, 48.619103789000121 ], [ -123.43457510799999, 48.618826998000031 ], [ -123.434173910999988, 48.619054391000084 ], [ -123.433981516999978, 48.619279695000039 ], [ -123.433914712, 48.619561087000058 ], [ -123.43393308899999, 48.620366598000039 ], [ -123.433935114999926, 48.620802094000041 ], [ -123.433836516999989, 48.621020592000022 ], [ -123.433678793999945, 48.62117909300008 ], [ -123.43363150199994, 48.62122749300007 ], [ -123.43333601099998, 48.621378093000068 ], [ -123.43294822299994, 48.6214588980001 ], [ -123.43275898499999, 48.621517234000073 ], [ -123.432514211999916, 48.62159270300004 ], [ -123.432076492999968, 48.621917501000027 ], [ -123.431958195000021, 48.622099393000092 ], [ -123.431862112999951, 48.622171897000115 ], [ -123.431732264999965, 48.622220404000124 ], [ -123.431689792999961, 48.622236292000011 ], [ -123.431624212999907, 48.622260795000066 ], [ -123.431325185999967, 48.622327494000032 ], [ -123.43010383099994, 48.622341097000074 ], [ -123.429969485999933, 48.622342611000093 ], [ -123.428923283999922, 48.622273985000028 ], [ -123.428134286999949, 48.622034091000103 ], [ -123.427752685999948, 48.621828295000093 ], [ -123.427397819999968, 48.621505107000075 ], [ -123.42673888799996, 48.620670599000107 ], [ -123.426488800999962, 48.619866702000074 ], [ -123.427819605999915, 48.61973480600011 ], [ -123.428286199999945, 48.619675796000124 ], [ -123.428591414999985, 48.619568692000072 ], [ -123.428699383999941, 48.619500996000042 ], [ -123.428852586999966, 48.619351396000056 ], [ -123.428867111999949, 48.619320363000092 ], [ -123.428915314999983, 48.619217467000013 ], [ -123.428936908999958, 48.619171381000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "458009355", "BldgCostT": "302052491", "sL_LossRatio": "0.641222331530552", "sL_AssetLoss": "124052.76", "sL_BldgLoss": "79545.4", "sL_StrLoss": "45102.1", "sL_NStrLoss": "34443.3", "sL_ContLoss": "44507.36", "geom_point": "0101000020E610000002FB22805FD85EC0060A076B31374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.37841025099999, 48.430766275000039 ], [ -123.377186584999933, 48.429058602000069 ], [ -123.37723721699993, 48.428681075000028 ], [ -123.377448683999958, 48.428444644000116 ], [ -123.380177386999947, 48.429874827000084 ], [ -123.380935922999967, 48.4302858900001 ], [ -123.381234604999946, 48.430374439000055 ], [ -123.381549931, 48.430406588000103 ], [ -123.384722569999937, 48.430402047 ], [ -123.384718575, 48.43088889600007 ], [ -123.384612996999948, 48.430986700000084 ], [ -123.384294712999946, 48.431281599000059 ], [ -123.383170987000014, 48.432153790000037 ], [ -123.382291402999897, 48.432857107000096 ], [ -123.381402528999942, 48.433507010000042 ], [ -123.380623136999958, 48.433813237000052 ], [ -123.379478488999965, 48.432235615000089 ], [ -123.379059020999932, 48.431664043000076 ], [ -123.3787484699999, 48.431237270000103 ], [ -123.37841025099999, 48.430766275000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138710866", "BldgCostT": "83989234", "sL_LossRatio": "0.564758482738554", "sL_AssetLoss": "40004.18", "sL_BldgLoss": "22592.7", "sL_StrLoss": "10440", "sL_NStrLoss": "12152.7", "sL_ContLoss": "17411.48", "geom_point": "0101000020E61000002C9C381419D85EC0DCC9F9C519374840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.379022831999933, 48.433936950000088 ], [ -123.37902111699999, 48.433706746000034 ], [ -123.378592187999985, 48.433708159000034 ], [ -123.378208452999957, 48.433504285000026 ], [ -123.378206907999981, 48.433296105000061 ], [ -123.378126308999953, 48.433294110000062 ], [ -123.377899815999982, 48.43295300500008 ], [ -123.377869106999967, 48.432423208000039 ], [ -123.377664291999935, 48.432116988000139 ], [ -123.377219310999962, 48.432253687000134 ], [ -123.37566649799993, 48.430702692000061 ], [ -123.375208010999955, 48.430649997000025 ], [ -123.374720186, 48.43076820300012 ], [ -123.374451117999953, 48.43075110300007 ], [ -123.373799486999985, 48.430493390000045 ], [ -123.373782888999969, 48.430060410000095 ], [ -123.373997201999913, 48.42967299500004 ], [ -123.374021302999921, 48.429368193000037 ], [ -123.373832210000018, 48.429251385000022 ], [ -123.373101704999954, 48.429388193000058 ], [ -123.372759007999917, 48.428237391000046 ], [ -123.372700512999955, 48.428040905000081 ], [ -123.372788898999957, 48.427951395000086 ], [ -123.373811506999971, 48.427608709000069 ], [ -123.374058486, 48.427605802000087 ], [ -123.374255504999965, 48.427655796000138 ], [ -123.374422580999976, 48.427784101000107 ], [ -123.374586705999931, 48.427910174000019 ], [ -123.374898588999912, 48.42814970300001 ], [ -123.377448683999958, 48.428444644000116 ], [ -123.37723721699993, 48.428681075000028 ], [ -123.377186584999933, 48.429058602000069 ], [ -123.37841025099999, 48.430766275000039 ], [ -123.3787484699999, 48.431237270000103 ], [ -123.379059020999932, 48.431664043000076 ], [ -123.379478488999965, 48.432235615000089 ], [ -123.380623136999958, 48.433813237000052 ], [ -123.379918307999972, 48.433991492000153 ], [ -123.37960833299999, 48.434057414000023 ], [ -123.379568741999933, 48.434065824000086 ], [ -123.37940589399993, 48.434100459000078 ], [ -123.379384531999946, 48.434104995000055 ], [ -123.379296035000024, 48.434123821000135 ], [ -123.379267707999929, 48.434129845000051 ], [ -123.379178600999964, 48.434019707000125 ], [ -123.379022831999933, 48.433936950000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537501", "BldgCostT": "1750001", "sL_LossRatio": "0.946098419259342", "sL_AssetLoss": "5370.9", "sL_BldgLoss": "5081.4", "sL_StrLoss": "4275", "sL_NStrLoss": "806.4", "sL_ContLoss": "289.5", "geom_point": "0101000020E6100000AC2F7D7536DE5EC037A08C8EB7484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.470620020999917, 48.56770778100006 ], [ -123.4731744, 48.567768581000109 ], [ -123.473138342999974, 48.568441280000094 ], [ -123.473091601999926, 48.568465100000019 ], [ -123.472536304999934, 48.568576192000108 ], [ -123.471872413999975, 48.568551904000046 ], [ -123.471396221999967, 48.568382505000081 ], [ -123.47082379099993, 48.56797089700008 ], [ -123.470620020999917, 48.56770778100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251708250", "BldgCostT": "157035000", "sL_LossRatio": "0.813021241470984", "sL_AssetLoss": "466422.5", "sL_BldgLoss": "379211.4", "sL_StrLoss": "258221.3", "sL_NStrLoss": "120990.1", "sL_ContLoss": "87211.1", "geom_point": "0101000020E6100000FAA9F8F9CEDD5EC0432FBCF58E484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.46921409199993, 48.579730818000066 ], [ -123.46877639399996, 48.57972036400011 ], [ -123.46860569899998, 48.579716297000047 ], [ -123.468623253999937, 48.579112659000074 ], [ -123.46850787299995, 48.579069348000054 ], [ -123.468504401, 48.578932230000085 ], [ -123.468427975999958, 48.57879247400011 ], [ -123.468255853999892, 48.578645011000091 ], [ -123.467475567999941, 48.578254069000074 ], [ -123.466977877999909, 48.578246698000029 ], [ -123.466541396999901, 48.578132598000138 ], [ -123.465884830999954, 48.577882600000088 ], [ -123.465261498999936, 48.577882839000033 ], [ -123.46376378299999, 48.577883394000018 ], [ -123.464173778999935, 48.577231400000052 ], [ -123.464183720999969, 48.577219186000065 ], [ -123.464568094999933, 48.57674499400008 ], [ -123.464800993999972, 48.576391698000101 ], [ -123.464860614999978, 48.576038793000109 ], [ -123.464759989999948, 48.575694690000041 ], [ -123.464468786999944, 48.575017902000091 ], [ -123.464243878999937, 48.5746699910001 ], [ -123.464095709999967, 48.574531192000052 ], [ -123.463885104999974, 48.574472099000047 ], [ -123.463818120999917, 48.574465938000053 ], [ -123.463327487999919, 48.574420895000024 ], [ -123.463049708999989, 48.574351099000069 ], [ -123.462863321999947, 48.574219599000095 ], [ -123.462729889999963, 48.574056796000065 ], [ -123.462502885, 48.573873793000104 ], [ -123.462396722999969, 48.573829032000077 ], [ -123.462013292999956, 48.573667405000052 ], [ -123.461760371999958, 48.573463321000148 ], [ -123.461530807999935, 48.573278090000017 ], [ -123.461458345999944, 48.573175167000073 ], [ -123.461370938999963, 48.573051098000072 ], [ -123.461197608999925, 48.572804879000039 ], [ -123.460930296999933, 48.572541612000038 ], [ -123.460906223999984, 48.572435492000125 ], [ -123.461619021999937, 48.572426062000012 ], [ -123.461944454999937, 48.572421762000012 ], [ -123.462047899999931, 48.572420407000067 ], [ -123.462126120999969, 48.572352004000074 ], [ -123.461972998999926, 48.572178810000068 ], [ -123.461966794999967, 48.572041608000092 ], [ -123.462033289999951, 48.57191250700005 ], [ -123.462000595999939, 48.571765693000067 ], [ -123.461313929999946, 48.571792894000076 ], [ -123.46029739599993, 48.571803400000057 ], [ -123.459836288999952, 48.571747294000062 ], [ -123.458010094999963, 48.571755911000047 ], [ -123.457968922999925, 48.570988587000059 ], [ -123.457951382999966, 48.570812403000033 ], [ -123.457936283999928, 48.570541720000108 ], [ -123.457927306, 48.57038080800006 ], [ -123.457930257999962, 48.570092662000064 ], [ -123.457931352999964, 48.569984728000051 ], [ -123.457935201999959, 48.56960692600012 ], [ -123.457943114, 48.568832311000051 ], [ -123.458739133999927, 48.568827021000068 ], [ -123.459721975999969, 48.568794636000128 ], [ -123.460154297999935, 48.568732859000136 ], [ -123.460423086, 48.568667151000092 ], [ -123.460716584999943, 48.568546222000087 ], [ -123.460774619999967, 48.568522281000028 ], [ -123.460804404999934, 48.568504708000013 ], [ -123.461214922999943, 48.568262351000037 ], [ -123.461369630999968, 48.568278672000062 ], [ -123.461520004999969, 48.568250717000026 ], [ -123.46161872499998, 48.568201664000064 ], [ -123.461999631999902, 48.567762717000072 ], [ -123.462216020999946, 48.567638943000084 ], [ -123.462414922, 48.567589617000117 ], [ -123.462397883999955, 48.567540662000113 ], [ -123.462361382999958, 48.567435690000131 ], [ -123.462064511999941, 48.566582316000037 ], [ -123.461379006999948, 48.565465998000029 ], [ -123.460918076999974, 48.564853599000095 ], [ -123.460275301999928, 48.56397458599999 ], [ -123.460116998999936, 48.563850010000095 ], [ -123.459851185999952, 48.563935575000116 ], [ -123.459481499999981, 48.56358858800013 ], [ -123.459178848999926, 48.563427836000045 ], [ -123.458975091999932, 48.563319612000065 ], [ -123.45864231199999, 48.563143004000018 ], [ -123.458512810999963, 48.562909108000021 ], [ -123.458664683999956, 48.562888022000081 ], [ -123.458807769999936, 48.562873830000065 ], [ -123.459078842999986, 48.562872762000055 ], [ -123.459377104999987, 48.562880552000088 ], [ -123.459661951999948, 48.562906414000025 ], [ -123.45974344199999, 48.562924068000015 ], [ -123.459919894999985, 48.562950357000084 ], [ -123.46017788799999, 48.563003297000108 ], [ -123.460449437999984, 48.563056202000027 ], [ -123.460707450999962, 48.563109162000039 ], [ -123.460897610999908, 48.563153363 ], [ -123.461114859999938, 48.563197473000052 ], [ -123.461386495999989, 48.563259360000089 ], [ -123.461621380999944, 48.563310312000063 ], [ -123.461634245999903, 48.563313094000129 ], [ -123.461671688999942, 48.563321212000055 ], [ -123.461929771999976, 48.563383131000087 ], [ -123.462187874999955, 48.563445071000096 ], [ -123.462459428999935, 48.563497972000086 ], [ -123.462649609999957, 48.563542191000067 ], [ -123.462988935999974, 48.563594805000065 ], [ -123.46323297099994, 48.563602811000109 ], [ -123.46343626, 48.563601992000045 ], [ -123.463639172999976, 48.563556202000086 ], [ -123.463882144999928, 48.563447245000106 ], [ -123.464043775999968, 48.563338641000044 ], [ -123.46419154499992, 48.563194120000027 ], [ -123.464218, 48.563122048000068 ], [ -123.464230983999968, 48.563058993000048 ], [ -123.464256922999937, 48.562932957000072 ], [ -123.464268689999955, 48.562734994000081 ], [ -123.46429471399999, 48.562617941000106 ], [ -123.46433387899999, 48.562455837000122 ], [ -123.464359609999974, 48.562302800000104 ], [ -123.4643589399999, 48.562230831000136 ], [ -123.464371753999956, 48.562149809000097 ], [ -123.464356225999907, 48.561933980000056 ], [ -123.464382522999955, 48.561843904000078 ], [ -123.464436219999953, 48.561789688000012 ], [ -123.46447679399995, 48.561780544000051 ], [ -123.464381370999916, 48.56171795700002 ], [ -123.464326830999966, 48.561682178000041 ], [ -123.464230599999951, 48.561538628000072 ], [ -123.464244, 48.561520591000026 ], [ -123.464004181999954, 48.559016030000116 ], [ -123.464316492999941, 48.559109388000174 ], [ -123.464522899999949, 48.559324504000081 ], [ -123.464835495999964, 48.559475412000054 ], [ -123.465797992999939, 48.559652106 ], [ -123.466972985999959, 48.560448204000124 ], [ -123.468602906999948, 48.560891105000081 ], [ -123.46935069099996, 48.561211609000026 ], [ -123.469540005999974, 48.561211602000107 ], [ -123.46990478399999, 48.561002205000094 ], [ -123.47041749399996, 48.560838414000081 ], [ -123.470893805999978, 48.561052086000075 ], [ -123.471912504999935, 48.561272792000153 ], [ -123.472187930999908, 48.561393214000127 ], [ -123.472022122999974, 48.564485765000043 ], [ -123.471070481999973, 48.564463109000059 ], [ -123.471066632999964, 48.564534846000036 ], [ -123.471895239999967, 48.564531453000079 ], [ -123.471900261999934, 48.565071213000124 ], [ -123.47230687699998, 48.565069545000021 ], [ -123.472329496999933, 48.567498463000078 ], [ -123.471109589999955, 48.56750346000009 ], [ -123.4711020699999, 48.566693821000072 ], [ -123.470950787999925, 48.566694440000056 ], [ -123.470920631999931, 48.567256584000084 ], [ -123.470142528999958, 48.567238053000096 ], [ -123.469798213999951, 48.567139099 ], [ -123.469717098999979, 48.56713059200009 ], [ -123.469628655999941, 48.567225812000054 ], [ -123.467446696999971, 48.567173807000096 ], [ -123.467448645000019, 48.56738509000008 ], [ -123.467579351999973, 48.567517850000058 ], [ -123.467856508999915, 48.567516724000043 ], [ -123.467857663999922, 48.567641962000039 ], [ -123.469105147999983, 48.567671695000108 ], [ -123.46907389799992, 48.567834097000073 ], [ -123.46946971600002, 48.568282801000166 ], [ -123.470562584999939, 48.56902480400003 ], [ -123.471284111999964, 48.56940928700007 ], [ -123.471274310999931, 48.56974118800008 ], [ -123.471003786999987, 48.570021696000062 ], [ -123.46963434299991, 48.570464725000122 ], [ -123.46863969799989, 48.570786486000102 ], [ -123.466918184999926, 48.570856299000127 ], [ -123.465959203999972, 48.571077104000054 ], [ -123.465823992999987, 48.571239398000102 ], [ -123.465961708999956, 48.571472986000082 ], [ -123.465812698999954, 48.571562691000082 ], [ -123.46529880599995, 48.57152849 ], [ -123.464629511999988, 48.571154 ], [ -123.464314986999923, 48.570832101000121 ], [ -123.464057822999919, 48.570733805000046 ], [ -123.463678008999949, 48.57067260200008 ], [ -123.46335320499999, 48.570790797000072 ], [ -123.462241609999964, 48.570822109000055 ], [ -123.461929087999962, 48.570733804000042 ], [ -123.46174160799994, 48.570886209000051 ], [ -123.461933288999916, 48.571182512000107 ], [ -123.462545983999945, 48.571406107000023 ], [ -123.462506283999986, 48.5715855 ], [ -123.462290619999948, 48.571730802000062 ], [ -123.462212008999956, 48.57209960000008 ], [ -123.462241606999967, 48.572207905000049 ], [ -123.462526980999897, 48.572331802000157 ], [ -123.462527689999916, 48.572421676000062 ], [ -123.462529117999964, 48.572602405000097 ], [ -123.462422497, 48.572737713999985 ], [ -123.462479291999941, 48.573025389000051 ], [ -123.463224811999964, 48.573183499000073 ], [ -123.463652113999956, 48.573830105000113 ], [ -123.464453602, 48.574025208000144 ], [ -123.464958510999963, 48.574364088000067 ], [ -123.465424208999977, 48.574866904000096 ], [ -123.465728299, 48.57552198900008 ], [ -123.465729714999895, 48.57578259100007 ], [ -123.466031091, 48.575979195000095 ], [ -123.466006090999912, 48.576285395000092 ], [ -123.465615892999949, 48.576620094000106 ], [ -123.465202988999962, 48.577305098000053 ], [ -123.465244104999911, 48.577367803000051 ], [ -123.466254828999951, 48.577731144000055 ], [ -123.467201382999988, 48.578071401000038 ], [ -123.468128680999939, 48.578517092000062 ], [ -123.468712699999955, 48.578668095000054 ], [ -123.46944999099999, 48.579178001000045 ], [ -123.469873311999933, 48.579755852000098 ], [ -123.46921409199993, 48.579730818000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67327834", "BldgCostT": "44223334", "sL_LossRatio": "0.925432080489365", "sL_AssetLoss": "113485.8", "sL_BldgLoss": "105023.4", "sL_StrLoss": "84623", "sL_NStrLoss": "20400.4", "sL_ContLoss": "8462.4", "geom_point": "0101000020E6100000851744A4A6DC5EC081B1F82CD3474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.443231896999933, 48.565231703000052 ], [ -123.442709997999927, 48.565199303000071 ], [ -123.438525485999946, 48.56518319000007 ], [ -123.437551808999899, 48.564051692000042 ], [ -123.436937004999962, 48.563582687000093 ], [ -123.436587699999933, 48.56331621200011 ], [ -123.43655979299993, 48.563275867000129 ], [ -123.436505395999973, 48.563197238000072 ], [ -123.436474790999966, 48.563152994000028 ], [ -123.436380705999952, 48.562767505000146 ], [ -123.436387285999956, 48.562556407000081 ], [ -123.436398804999911, 48.562186487000048 ], [ -123.436575914999963, 48.560746398000077 ], [ -123.436639680999988, 48.560368403000069 ], [ -123.436671396999969, 48.560276933000132 ], [ -123.436811410999923, 48.559872987000041 ], [ -123.437618416999925, 48.558916106 ], [ -123.437735800999931, 48.558711406000093 ], [ -123.437879089999939, 48.558461544000117 ], [ -123.437965187999964, 48.558311407000062 ], [ -123.438027248999944, 48.558150280000099 ], [ -123.438047589999883, 48.55809749200008 ], [ -123.438166497999958, 48.557788724000048 ], [ -123.438256606999943, 48.557554800000062 ], [ -123.438285513999944, 48.557420148000134 ], [ -123.43837429199999, 48.557006700000045 ], [ -123.438319861999958, 48.556197874000077 ], [ -123.43824782199998, 48.555126504000121 ], [ -123.438624197999971, 48.554398999000085 ], [ -123.442923771999943, 48.554470514000144 ], [ -123.442898823999897, 48.554930593000115 ], [ -123.443419297999966, 48.554928590000088 ], [ -123.443443663999957, 48.55447915000012 ], [ -123.444169200999966, 48.554491198000079 ], [ -123.444175008999977, 48.556005239000086 ], [ -123.443356882999964, 48.556008392000109 ], [ -123.443371034, 48.55762768000011 ], [ -123.443777590999986, 48.557626113000019 ], [ -123.44378703299995, 48.55870563900001 ], [ -123.443380466999969, 48.558707204000079 ], [ -123.443385183999951, 48.559246967 ], [ -123.442165473, 48.559251658000029 ], [ -123.442163120999936, 48.558981777000049 ], [ -123.441349985, 48.55898489600002 ], [ -123.441354679999961, 48.559524658000029 ], [ -123.440948106999898, 48.559526216000044 ], [ -123.440952797999927, 48.560065978000097 ], [ -123.440546220999977, 48.560067535000059 ], [ -123.440548565, 48.560337416000095 ], [ -123.440435041999962, 48.560337851000028 ], [ -123.440365432999954, 48.56162012300009 ], [ -123.440680629999974, 48.561627719000086 ], [ -123.440636099999921, 48.562448072000116 ], [ -123.444475143999938, 48.562540522000049 ], [ -123.444440698999969, 48.563176024000065 ], [ -123.444943066999926, 48.563188112000063 ], [ -123.444938613999938, 48.563270286000098 ], [ -123.446385481999968, 48.563305086000042 ], [ -123.446407849999972, 48.562892094000048 ], [ -123.448296806999963, 48.562937497000092 ], [ -123.448292645999956, 48.562466646000132 ], [ -123.447886048999919, 48.562468229000118 ], [ -123.447883666999928, 48.562198347000113 ], [ -123.44747707199997, 48.562199929 ], [ -123.447474691999972, 48.561930048000107 ], [ -123.446661509999942, 48.561933205000059 ], [ -123.446659132999983, 48.561663324000079 ], [ -123.446252542999943, 48.561664901000064 ], [ -123.446250167999935, 48.561395020000099 ], [ -123.44584358099992, 48.561396595000105 ], [ -123.445841209999969, 48.561126714000061 ], [ -123.445434623999986, 48.561128288000084 ], [ -123.445418036999925, 48.55923912100009 ], [ -123.445824606999906, 48.559237547000066 ], [ -123.445817492999979, 48.558427903000052 ], [ -123.448256873999938, 48.558418432000053 ], [ -123.448254489999968, 48.55814855200002 ], [ -123.448661052999981, 48.558146968000109 ], [ -123.448660278999938, 48.558059660000083 ], [ -123.451676793999965, 48.558028227000058 ], [ -123.452241150999924, 48.55817987800009 ], [ -123.452350738999911, 48.558209306000087 ], [ -123.454124025999974, 48.558678918000076 ], [ -123.454284874999956, 48.558721499000107 ], [ -123.45488388499993, 48.559048203000067 ], [ -123.455169584999936, 48.559100891000064 ], [ -123.45595520699996, 48.559071001000113 ], [ -123.457104877999882, 48.558796095000091 ], [ -123.457702502999965, 48.558873635000033 ], [ -123.457653469999968, 48.559783039000123 ], [ -123.458685459999984, 48.559807740000032 ], [ -123.458589513999968, 48.561587854000059 ], [ -123.458714463999939, 48.561590845000055 ], [ -123.458684012999981, 48.562155828000101 ], [ -123.459268281999954, 48.562153500000086 ], [ -123.459270725999943, 48.562423380000077 ], [ -123.459677321999962, 48.562421758000063 ], [ -123.459669983999945, 48.561612116000077 ], [ -123.460889748999975, 48.561607241000011 ], [ -123.460899557999966, 48.56268676200007 ], [ -123.46211935, 48.562681873000074 ], [ -123.462121807999935, 48.562951753000036 ], [ -123.463341604999954, 48.562946851000063 ], [ -123.46333174499992, 48.561867329000101 ], [ -123.463953766999964, 48.561864826000061 ], [ -123.463957886999964, 48.56178823100003 ], [ -123.462330340999969, 48.561749352000071 ], [ -123.46246959599992, 48.55916190100011 ], [ -123.463663894000021, 48.558914299000065 ], [ -123.464004181999954, 48.559016030000116 ], [ -123.464244, 48.561520591000026 ], [ -123.464230599999951, 48.561538628000072 ], [ -123.464326830999966, 48.561682178000041 ], [ -123.464381370999916, 48.56171795700002 ], [ -123.46447679399995, 48.561780544000051 ], [ -123.464436219999953, 48.561789688000012 ], [ -123.464382522999955, 48.561843904000078 ], [ -123.464356225999907, 48.561933980000056 ], [ -123.464371753999956, 48.562149809000097 ], [ -123.4643589399999, 48.562230831000136 ], [ -123.464359609999974, 48.562302800000104 ], [ -123.46433387899999, 48.562455837000122 ], [ -123.46429471399999, 48.562617941000106 ], [ -123.464268689999955, 48.562734994000081 ], [ -123.464256922999937, 48.562932957000072 ], [ -123.464230983999968, 48.563058993000048 ], [ -123.464218, 48.563122048000068 ], [ -123.46419154499992, 48.563194120000027 ], [ -123.464043775999968, 48.563338641000044 ], [ -123.463882144999928, 48.563447245000106 ], [ -123.463639172999976, 48.563556202000086 ], [ -123.46343626, 48.563601992000045 ], [ -123.46323297099994, 48.563602811000109 ], [ -123.462988935999974, 48.563594805000065 ], [ -123.462649609999957, 48.563542191000067 ], [ -123.462459428999935, 48.563497972000086 ], [ -123.462187874999955, 48.563445071000096 ], [ -123.461929771999976, 48.563383131000087 ], [ -123.461671688999942, 48.563321212000055 ], [ -123.461634245999903, 48.563313094000129 ], [ -123.461621380999944, 48.563310312000063 ], [ -123.461386495999989, 48.563259360000089 ], [ -123.461114859999938, 48.563197473000052 ], [ -123.460897610999908, 48.563153363 ], [ -123.460707450999962, 48.563109162000039 ], [ -123.460449437999984, 48.563056202000027 ], [ -123.46017788799999, 48.563003297000108 ], [ -123.459919894999985, 48.562950357000084 ], [ -123.45974344199999, 48.562924068000015 ], [ -123.459661951999948, 48.562906414000025 ], [ -123.459377104999987, 48.562880552000088 ], [ -123.459078842999986, 48.562872762000055 ], [ -123.458807769999936, 48.562873830000065 ], [ -123.458664683999956, 48.562888022000081 ], [ -123.458512810999963, 48.562909108000021 ], [ -123.457395203, 48.562957187000066 ], [ -123.457037456999984, 48.562946253000099 ], [ -123.456317203999959, 48.56292419600009 ], [ -123.455730490999954, 48.562907369000051 ], [ -123.455361976999939, 48.56289680200009 ], [ -123.455056199999916, 48.562921895000052 ], [ -123.454820817999988, 48.562997403000104 ], [ -123.453340074999957, 48.563991883000021 ], [ -123.453252490999944, 48.564050692000073 ], [ -123.453057886999886, 48.56417389700011 ], [ -123.452320701999966, 48.564640506000096 ], [ -123.450656347999967, 48.565522230000091 ], [ -123.450381618, 48.565667794000021 ], [ -123.449783119999978, 48.565950006000072 ], [ -123.448741696999946, 48.5661892030001 ], [ -123.448304567999955, 48.566217245000054 ], [ -123.448277625999935, 48.566218969000019 ], [ -123.447974517999953, 48.566238403000057 ], [ -123.447230077999947, 48.566241205000019 ], [ -123.44653748199994, 48.566160512000096 ], [ -123.445582980999916, 48.565994199000102 ], [ -123.444916699999936, 48.565804210000088 ], [ -123.444384536999934, 48.565620749000033 ], [ -123.444219296999961, 48.565563795000116 ], [ -123.443739190999949, 48.565359403000137 ], [ -123.443231896999933, 48.565231703000052 ] ], [ [ -123.452228444999918, 48.56002224400001 ], [ -123.452236946999946, 48.559864921000084 ], [ -123.451522215999915, 48.559847771000108 ], [ -123.451523793999954, 48.560025008000046 ], [ -123.452228444999918, 48.56002224400001 ] ], [ [ -123.441347635999961, 48.558715015000097 ], [ -123.44133589799999, 48.557365609000051 ], [ -123.441306433999927, 48.557365721000103 ], [ -123.441301716999988, 48.557452640000093 ], [ -123.439691601999982, 48.55741383 ], [ -123.4396499059999, 48.558181729000047 ], [ -123.43971669299999, 48.558181474000065 ], [ -123.439719031999985, 48.558451355000045 ], [ -123.440125595999987, 48.558449803000023 ], [ -123.440127777999962, 48.558701279000033 ], [ -123.440523362999954, 48.558710815000012 ], [ -123.440522962999964, 48.558718173000052 ], [ -123.441347635999961, 48.558715015000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.983215130023641", "sL_AssetLoss": "846", "sL_BldgLoss": "831.8", "sL_StrLoss": "762", "sL_NStrLoss": "69.8", "sL_ContLoss": "14.2", "geom_point": "0101000020E6100000C651987B71DC5EC090EBF021F2474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.443813003999935, 48.561674330000081 ], [ -123.44503277299998, 48.561669622000096 ], [ -123.445039876999971, 48.562479265000015 ], [ -123.443820088, 48.562483973000077 ], [ -123.443813003999935, 48.561674330000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145143969", "BldgCostT": "95340412", "sL_LossRatio": "0.924031844152099", "sL_AssetLoss": "267666.1", "sL_BldgLoss": "247332", "sL_StrLoss": "190840", "sL_NStrLoss": "56492", "sL_ContLoss": "20334.1", "geom_point": "0101000020E61000001E18388708DD5EC054B96996784D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.408347078999952, 48.61186509500002 ], [ -123.407693328999983, 48.60980548500001 ], [ -123.407535730999911, 48.609308882000029 ], [ -123.408415509999926, 48.609305764000098 ], [ -123.408417687999986, 48.609575646000074 ], [ -123.41004559299995, 48.609569861000104 ], [ -123.410047288999948, 48.609779544000062 ], [ -123.410173819999955, 48.607478543000141 ], [ -123.414884495999985, 48.60759319900005 ], [ -123.414933658999956, 48.606697461000103 ], [ -123.409752242, 48.606571337000091 ], [ -123.409752821999973, 48.60656079500005 ], [ -123.407921507999959, 48.606516157000115 ], [ -123.408140610999936, 48.606215510000062 ], [ -123.409181185999927, 48.604977001000037 ], [ -123.410780580999983, 48.603092685 ], [ -123.410972053999956, 48.602867061 ], [ -123.411105714, 48.602709606000118 ], [ -123.411665776999911, 48.602708316000083 ], [ -123.41203200699999, 48.602707482000042 ], [ -123.413279878999973, 48.602704607000184 ], [ -123.413382809999916, 48.602704363000107 ], [ -123.413401949999951, 48.602704321000047 ], [ -123.413578323, 48.602703912000017 ], [ -123.413700392999957, 48.602703623000146 ], [ -123.413781780999926, 48.602703439000045 ], [ -123.414161575999984, 48.602702570000105 ], [ -123.416893311999928, 48.602696202000082 ], [ -123.417227904999919, 48.602695385000146 ], [ -123.417334358999966, 48.603098587000055 ], [ -123.4175935049999, 48.604080014000019 ], [ -123.41781819199997, 48.604648909000048 ], [ -123.417982219999956, 48.604987905000065 ], [ -123.418278097999959, 48.605599510000076 ], [ -123.41882629699991, 48.606395306000074 ], [ -123.419277795999932, 48.606881409 ], [ -123.419856796999952, 48.606818807000053 ], [ -123.422334581999976, 48.606822170000079 ], [ -123.425440636999937, 48.606826328000054 ], [ -123.426119082999932, 48.606827223000096 ], [ -123.426214029999954, 48.606827355000078 ], [ -123.426892476999953, 48.606828244999988 ], [ -123.428208472, 48.606829965000031 ], [ -123.430490811999945, 48.606832897000068 ], [ -123.430782885000028, 48.606889611000071 ], [ -123.430828818999956, 48.606917693000057 ], [ -123.431171101999936, 48.607172110000114 ], [ -123.431552596999893, 48.607304887000112 ], [ -123.432774009999946, 48.607508401000132 ], [ -123.433613343999937, 48.60766855500011 ], [ -123.435283399999889, 48.607987211000072 ], [ -123.435618614999925, 48.608124201000038 ], [ -123.435927895999967, 48.60833900500004 ], [ -123.436068976999948, 48.608495767000072 ], [ -123.436327714999948, 48.608783190000032 ], [ -123.436619183999966, 48.609027294000057 ], [ -123.43694981499999, 48.609173195999986 ], [ -123.437358198999974, 48.60925969300007 ], [ -123.437521933999989, 48.609258654000037 ], [ -123.437671081999923, 48.609257691000025 ], [ -123.43788939800001, 48.609256308000099 ], [ -123.438208656999976, 48.609166386000041 ], [ -123.438464302999989, 48.609094410000083 ], [ -123.439475783999953, 48.608377704000098 ], [ -123.44106958899998, 48.607137709000042 ], [ -123.441942902999955, 48.606595303000105 ], [ -123.442042006999927, 48.606555267000047 ], [ -123.442620177999984, 48.606321786000144 ], [ -123.44319834, 48.606088300000103 ], [ -123.443748494999966, 48.605866096000049 ], [ -123.444740407000012, 48.605632987000085 ], [ -123.4453094079999, 48.605579115000054 ], [ -123.445450755999943, 48.605590098000057 ], [ -123.445788362999949, 48.605616378000107 ], [ -123.446314215999905, 48.605657300000061 ], [ -123.447264497999981, 48.60583970900008 ], [ -123.447919466, 48.605800417000104 ], [ -123.448423499999961, 48.605770189000062 ], [ -123.449372601999954, 48.605627098000106 ], [ -123.45001779, 48.605465816000027 ], [ -123.450838053999931, 48.605393189000026 ], [ -123.450875223, 48.605389898000098 ], [ -123.451266011999948, 48.605225310000101 ], [ -123.45153920499996, 48.604881200000065 ], [ -123.451795696999937, 48.604321194000129 ], [ -123.451773694999972, 48.603877114000028 ], [ -123.451953199999963, 48.603026943000067 ], [ -123.452041289999954, 48.602609709000056 ], [ -123.451821898, 48.602034688000117 ], [ -123.451652417999966, 48.601933052000035 ], [ -123.45155559199999, 48.601875006000085 ], [ -123.450588309999958, 48.601731893000078 ], [ -123.45029372099998, 48.601621208000083 ], [ -123.450169191, 48.601418102000018 ], [ -123.450109894999969, 48.6 ], [ -123.450058304999985, 48.598764893000038 ], [ -123.449841099999986, 48.598423396000101 ], [ -123.449318494999915, 48.598171989000058 ], [ -123.448767598999964, 48.598043397000055 ], [ -123.448682393999945, 48.597815984000107 ], [ -123.450239612999908, 48.597791092000122 ], [ -123.451957977999911, 48.597840398000088 ], [ -123.45235229, 48.597921384000109 ], [ -123.453279899000037, 48.598111911000046 ], [ -123.455615501999944, 48.598716358000068 ], [ -123.455733104999979, 48.598746798 ], [ -123.45610858400002, 48.598815198000118 ], [ -123.456341082999941, 48.598829690000045 ], [ -123.45652920899991, 48.598841401000051 ], [ -123.456625520000017, 48.598847394000096 ], [ -123.45723345899998, 48.598813350000079 ], [ -123.457640086999959, 48.598790600000015 ], [ -123.457884684999939, 48.598786354000055 ], [ -123.458470986999913, 48.598776215000093 ], [ -123.460887399999947, 48.59898947100006 ], [ -123.463373995999945, 48.599208897000075 ], [ -123.465896428999912, 48.599190573000079 ], [ -123.465257383999969, 48.598156628000062 ], [ -123.46481547899999, 48.597227993000054 ], [ -123.464062759999933, 48.59564624500009 ], [ -123.463416742999939, 48.594115120000041 ], [ -123.463287226999952, 48.593808129000145 ], [ -123.46304006099993, 48.593222387 ], [ -123.462956671999919, 48.593024748000104 ], [ -123.46235473199998, 48.591597908000132 ], [ -123.462173009999916, 48.591167102000028 ], [ -123.462164948999956, 48.591148087000079 ], [ -123.462035452999928, 48.590841097000045 ], [ -123.461979486999965, 48.590708445000118 ], [ -123.462784700999975, 48.590701597000063 ], [ -123.463388260999977, 48.590678936000145 ], [ -123.465855429999948, 48.590503419000072 ], [ -123.465861101999948, 48.590505188000051 ], [ -123.465807779999935, 48.59149661600005 ], [ -123.46773290099999, 48.591542506000089 ], [ -123.468921392999931, 48.592457294000091 ], [ -123.469243710999962, 48.592640067000055 ], [ -123.469107203999897, 48.595181342000032 ], [ -123.468710368999936, 48.595171891000057 ], [ -123.46868474199999, 48.595648893000075 ], [ -123.468717719999916, 48.595649678000051 ], [ -123.468696815, 48.596038762000042 ], [ -123.468714342999959, 48.596039180000147 ], [ -123.468684997999929, 48.596585339000065 ], [ -123.469269855999926, 48.59659926700008 ], [ -123.469242289999954, 48.597112431000063 ], [ -123.469281686999949, 48.597113368000073 ], [ -123.469246412999937, 48.597769995000107 ], [ -123.469979699999953, 48.597787452000048 ], [ -123.469975146999957, 48.597872239000047 ], [ -123.47179924699999, 48.597915645000072 ], [ -123.471807989999931, 48.597752725000092 ], [ -123.47153334299999, 48.597746191000155 ], [ -123.471547443999953, 48.597483432000089 ], [ -123.470468719999971, 48.597457764000083 ], [ -123.470662077999947, 48.593856285000093 ], [ -123.470857653999985, 48.593860939000123 ], [ -123.471366109999934, 48.594408495000138 ], [ -123.471531499999912, 48.594669094000025 ], [ -123.47151009199996, 48.595110604000077 ], [ -123.471606016999928, 48.59522740600007 ], [ -123.472067323999966, 48.595297202000054 ], [ -123.47282569699999, 48.59517749500008 ], [ -123.474183407999988, 48.595305709000115 ], [ -123.474848896999973, 48.595483701000035 ], [ -123.475123396999919, 48.595715910000116 ], [ -123.47525180699995, 48.596408088000068 ], [ -123.475428281999925, 48.596578996000048 ], [ -123.475591291999962, 48.596587506000084 ], [ -123.475929291999975, 48.596342498000055 ], [ -123.476186084999981, 48.596259893000123 ], [ -123.476402589999921, 48.596376711000069 ], [ -123.476487124999949, 48.596691503000095 ], [ -123.476883112999985, 48.59694070700003 ], [ -123.479326109999946, 48.596976299000069 ], [ -123.480113901999985, 48.597188511000084 ], [ -123.480564697999938, 48.59751038700005 ], [ -123.480702194999964, 48.597752491000072 ], [ -123.480976503999955, 48.597959001000042 ], [ -123.480884503999945, 48.598273787000025 ], [ -123.48057650699999, 48.598671103000108 ], [ -123.47982921299996, 48.59856720500003 ], [ -123.479314116999944, 48.598668302000057 ], [ -123.477659585999959, 48.598665400000066 ], [ -123.476726399000015, 48.598930313000068 ], [ -123.475128204999976, 48.599160986000101 ], [ -123.47470870099994, 48.59929779300009 ], [ -123.474846506999967, 48.599468697000091 ], [ -123.475810316999954, 48.599707902000084 ], [ -123.476179710999986, 48.599921600000137 ], [ -123.477172498999892, 48.600214987000072 ], [ -123.477622383999929, 48.60046419400004 ], [ -123.478774191999918, 48.600468502000126 ], [ -123.479251597999948, 48.600610915000118 ], [ -123.479401395999929, 48.600727690000092 ], [ -123.479348806999894, 48.600862996000068 ], [ -123.478563308, 48.601055201000136 ], [ -123.478482599999964, 48.601153488000065 ], [ -123.47860720599999, 48.601261789000084 ], [ -123.479136498999964, 48.601429812000035 ], [ -123.479260408999977, 48.601698992000067 ], [ -123.479764809999963, 48.601939706000088 ], [ -123.47998640900002, 48.602389708000061 ], [ -123.480808499999924, 48.603204389000048 ], [ -123.480878716999911, 48.603510607000047 ], [ -123.48073599899999, 48.604050385000029 ], [ -123.479982281999966, 48.604826604000039 ], [ -123.479689580999931, 48.605394795000045 ], [ -123.48005730599999, 48.605574290000092 ], [ -123.480560991999965, 48.605634102000103 ], [ -123.48079211299995, 48.605740892000071 ], [ -123.480815456999949, 48.605786457000107 ], [ -123.476942667999964, 48.605694611000025 ], [ -123.476951994999979, 48.605520513000023 ], [ -123.476754933999956, 48.60551583700007 ], [ -123.476736241999987, 48.60586477100005 ], [ -123.479647028999977, 48.605933821000072 ], [ -123.479633733999918, 48.606182286000092 ], [ -123.480579209999945, 48.606204697000045 ], [ -123.480551017999971, 48.606731783000036 ], [ -123.481167278999976, 48.606746386000104 ], [ -123.481168093999941, 48.606846113000131 ], [ -123.481143897999971, 48.607044112000032 ], [ -123.480955706999936, 48.607234884000071 ], [ -123.480103901999939, 48.607552513000051 ], [ -123.479862194999924, 48.607787514000115 ], [ -123.479826605999946, 48.608372807000137 ], [ -123.480309392999956, 48.609197503000061 ], [ -123.480288080999969, 48.609728692000111 ], [ -123.479949994999927, 48.609955107000097 ], [ -123.479873907999931, 48.610603186000034 ], [ -123.479283503999952, 48.611083091000069 ], [ -123.479139587999967, 48.611658493000093 ], [ -123.478924095999957, 48.611993209000062 ], [ -123.478241985, 48.612672499000048 ], [ -123.477611325999959, 48.612540111 ], [ -123.476824918, 48.612378109000048 ], [ -123.476165894999951, 48.612366992000062 ], [ -123.47558829799999, 48.612402907000117 ], [ -123.475355410999981, 48.612374795000029 ], [ -123.475209298999971, 48.612270301000102 ], [ -123.472982478999967, 48.612370699000053 ], [ -123.466430385999956, 48.61230041200006 ], [ -123.462153576, 48.612069551000026 ], [ -123.462248559999978, 48.610306866 ], [ -123.457230975999892, 48.610186978000037 ], [ -123.457232992999934, 48.61014962600008 ], [ -123.45212959699991, 48.610027445000171 ], [ -123.45216179599997, 48.609432242000082 ], [ -123.45133920399995, 48.609412525000025 ], [ -123.451341238999973, 48.60937492700009 ], [ -123.449101871999943, 48.609321219000059 ], [ -123.449010482999981, 48.611008485000141 ], [ -123.448152437999966, 48.610987894000111 ], [ -123.443870208999982, 48.610885025000115 ], [ -123.443853469999979, 48.61119344100009 ], [ -123.446203576999906, 48.611249917000123 ], [ -123.446173001999952, 48.611813767000115 ], [ -123.443796196999969, 48.611548196000051 ], [ -123.438404679999948, 48.611758743000088 ], [ -123.438407473999959, 48.611707399000103 ], [ -123.437024568999902, 48.611674071000024 ], [ -123.437017013999977, 48.611812890000088 ], [ -123.430249400999983, 48.612076699000035 ], [ -123.424175336999923, 48.612178775000125 ], [ -123.418104209999925, 48.611949052000099 ], [ -123.408347078999952, 48.61186509500002 ] ], [ [ -123.412097217999985, 48.611620484000063 ], [ -123.412121324999987, 48.611181777000112 ], [ -123.411279670999946, 48.611184786000074 ], [ -123.411279074999925, 48.61111157200002 ], [ -123.410057832999925, 48.611081829000071 ], [ -123.410060888999936, 48.611459020000062 ], [ -123.41209584399995, 48.611451756000086 ], [ -123.412097217999985, 48.611620484000063 ] ], [ [ -123.42104515299999, 48.610879610000062 ], [ -123.421049640999968, 48.61141936900006 ], [ -123.420235659999932, 48.611422342000047 ], [ -123.420237899999904, 48.611692221000027 ], [ -123.422272861999886, 48.611684779000043 ], [ -123.422270611, 48.611414899000074 ], [ -123.423491581999983, 48.611410415000051 ], [ -123.423493838999889, 48.611680295000092 ], [ -123.426342784999946, 48.611669783000139 ], [ -123.426345057, 48.61193966200004 ], [ -123.427159045999971, 48.611936645000107 ], [ -123.427156769999925, 48.611666766000084 ], [ -123.428784735999983, 48.611660717000035 ], [ -123.428787021999966, 48.611930596000072 ], [ -123.429219439999912, 48.611928985000048 ], [ -123.429290678999976, 48.610623897000075 ], [ -123.428750201999961, 48.610610827000102 ], [ -123.428876503999945, 48.608297297000021 ], [ -123.428333970999972, 48.608284175000094 ], [ -123.428282064999934, 48.609234800000102 ], [ -123.426164, 48.609183542000068 ], [ -123.426163577999915, 48.60919125100002 ], [ -123.424384284999945, 48.609148159000036 ], [ -123.424293892999941, 48.61080099200008 ], [ -123.421858002999954, 48.610741951000058 ], [ -123.421859123999937, 48.610876631000032 ], [ -123.42104515299999, 48.610879610000062 ] ], [ [ -123.418973550999979, 48.609018091000088 ], [ -123.418980921999974, 48.608883605000081 ], [ -123.418377723, 48.608868958000059 ], [ -123.418408164999974, 48.608313571000039 ], [ -123.416685095999938, 48.608271715000043 ], [ -123.41669627499999, 48.608067923000071 ], [ -123.416321096000019, 48.608058806000066 ], [ -123.41633545900001, 48.60779696600013 ], [ -123.41557505499992, 48.607778484000079 ], [ -123.415511647999949, 48.608933987000093 ], [ -123.418973550999979, 48.609018091000088 ] ], [ [ -123.439140031999926, 48.610257349000115 ], [ -123.43913187499993, 48.610407373000051 ], [ -123.44361924399999, 48.610515368000051 ], [ -123.443794998999962, 48.607277166000095 ], [ -123.444168933999961, 48.607286157000026 ], [ -123.444187147999941, 48.606950506000011 ], [ -123.441528435999942, 48.60688655300013 ], [ -123.441342441999893, 48.610310376000037 ], [ -123.439140031999926, 48.610257349000115 ] ], [ [ -123.462699217999912, 48.609252044000065 ], [ -123.462670149999894, 48.609791616000123 ], [ -123.464000224999964, 48.609823351000024 ], [ -123.464029279000016, 48.609283779000052 ], [ -123.462699217999912, 48.609252044000065 ] ], [ [ -123.457117979999936, 48.6042880420001 ], [ -123.457147549999959, 48.603740291000094 ], [ -123.456954089999897, 48.603735663000066 ], [ -123.456924516999905, 48.604283414000072 ], [ -123.457117979999936, 48.6042880420001 ] ], [ [ -123.475086528999924, 48.600982124000105 ], [ -123.475110708, 48.600530990000046 ], [ -123.474077521999931, 48.600506442000089 ], [ -123.474053332999972, 48.600957577000059 ], [ -123.475086528999924, 48.600982124000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87655583", "BldgCostT": "56768333", "sL_LossRatio": "0.919935210193813", "sL_AssetLoss": "147430.6", "sL_BldgLoss": "135626.6", "sL_StrLoss": "103107", "sL_NStrLoss": "32519.6", "sL_ContLoss": "11804", "geom_point": "0101000020E6100000CEB6DC91D8DB5EC06CFD8049224D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.431171101999936, 48.607172110000114 ], [ -123.430828818999956, 48.606917693000057 ], [ -123.430782885000028, 48.606889611000071 ], [ -123.430490811999945, 48.606832897000068 ], [ -123.428208472, 48.606829965000031 ], [ -123.426892476999953, 48.606828244999988 ], [ -123.426214029999954, 48.606827355000078 ], [ -123.426119082999932, 48.606827223000096 ], [ -123.425440636999937, 48.606826328000054 ], [ -123.422334581999976, 48.606822170000079 ], [ -123.419856796999952, 48.606818807000053 ], [ -123.419277795999932, 48.606881409 ], [ -123.41882629699991, 48.606395306000074 ], [ -123.418278097999959, 48.605599510000076 ], [ -123.417982219999956, 48.604987905000065 ], [ -123.41781819199997, 48.604648909000048 ], [ -123.4175935049999, 48.604080014000019 ], [ -123.417334358999966, 48.603098587000055 ], [ -123.417227904999919, 48.602695385000146 ], [ -123.41715489, 48.602345022000122 ], [ -123.416971641999965, 48.601465760000046 ], [ -123.418990384999944, 48.601424597000083 ], [ -123.420341918999966, 48.601424106000088 ], [ -123.421125190999973, 48.601415089000128 ], [ -123.422330328999948, 48.60140429100008 ], [ -123.423620904999936, 48.601392705000123 ], [ -123.423669166999971, 48.600001176000085 ], [ -123.423745399999945, 48.597803097000046 ], [ -123.423175544999964, 48.597802833000081 ], [ -123.42290999199993, 48.597802701000091 ], [ -123.422682510999948, 48.597802609999988 ], [ -123.421126309999963, 48.597807196000076 ], [ -123.420899792999961, 48.597790011 ], [ -123.420752501999971, 48.597685492000018 ], [ -123.420853896999944, 48.597465211000085 ], [ -123.42088462399991, 48.597003488000048 ], [ -123.420905515999934, 48.596620904000048 ], [ -123.420934599999953, 48.595670406000082 ], [ -123.421055917999965, 48.595482205000089 ], [ -123.421637890999975, 48.595856995000119 ], [ -123.422073579999932, 48.596085694000109 ], [ -123.422590219999975, 48.596308343000089 ], [ -123.423665857999936, 48.596771889000131 ], [ -123.423971953999981, 48.596903777000122 ], [ -123.424685125999972, 48.597211102000067 ], [ -123.425141100999895, 48.597316798000044 ], [ -123.425896664999982, 48.597384783000038 ], [ -123.426548600999979, 48.597443417000079 ], [ -123.427230888999986, 48.59750480200006 ], [ -123.427636595999971, 48.597541288000052 ], [ -123.429799983999928, 48.597773905000061 ], [ -123.430519676999936, 48.59779368700007 ], [ -123.430617979999965, 48.597796393000166 ], [ -123.433775139999952, 48.59782716800003 ], [ -123.434548, 48.597834679000073 ], [ -123.434683581999934, 48.597836012000101 ], [ -123.435727330999924, 48.597846160000131 ], [ -123.436123706999979, 48.59784999500009 ], [ -123.436663674999949, 48.597849134000057 ], [ -123.437396167999964, 48.597847959000049 ], [ -123.43882022799994, 48.597845620000022 ], [ -123.439308437999983, 48.597844810000034 ], [ -123.439715324999909, 48.597844158000086 ], [ -123.441180186999986, 48.597841712000076 ], [ -123.441248017999911, 48.597841615000064 ], [ -123.441370079999942, 48.597841406000057 ], [ -123.441871942999967, 48.597840550000079 ], [ -123.442346694999941, 48.597839776000107 ], [ -123.444353513999914, 48.597836399000094 ], [ -123.446930979999962, 48.597824273000072 ], [ -123.44733787399997, 48.597822360000109 ], [ -123.447414707999954, 48.597821971000016 ], [ -123.448382128999981, 48.59781742600012 ], [ -123.448682393999945, 48.597815984000107 ], [ -123.448767598999964, 48.598043397000055 ], [ -123.449318494999915, 48.598171989000058 ], [ -123.449841099999986, 48.598423396000101 ], [ -123.450058304999985, 48.598764893000038 ], [ -123.450109894999969, 48.6 ], [ -123.450169191, 48.601418102000018 ], [ -123.45029372099998, 48.601621208000083 ], [ -123.450588309999958, 48.601731893000078 ], [ -123.45155559199999, 48.601875006000085 ], [ -123.451652417999966, 48.601933052000035 ], [ -123.451821898, 48.602034688000117 ], [ -123.452041289999954, 48.602609709000056 ], [ -123.451953199999963, 48.603026943000067 ], [ -123.451773694999972, 48.603877114000028 ], [ -123.451795696999937, 48.604321194000129 ], [ -123.45153920499996, 48.604881200000065 ], [ -123.451266011999948, 48.605225310000101 ], [ -123.450875223, 48.605389898000098 ], [ -123.450838053999931, 48.605393189000026 ], [ -123.45001779, 48.605465816000027 ], [ -123.449372601999954, 48.605627098000106 ], [ -123.448423499999961, 48.605770189000062 ], [ -123.447919466, 48.605800417000104 ], [ -123.447264497999981, 48.60583970900008 ], [ -123.446314215999905, 48.605657300000061 ], [ -123.445788362999949, 48.605616378000107 ], [ -123.445450755999943, 48.605590098000057 ], [ -123.4453094079999, 48.605579115000054 ], [ -123.444740407000012, 48.605632987000085 ], [ -123.443748494999966, 48.605866096000049 ], [ -123.44319834, 48.606088300000103 ], [ -123.442620177999984, 48.606321786000144 ], [ -123.442042006999927, 48.606555267000047 ], [ -123.441942902999955, 48.606595303000105 ], [ -123.44106958899998, 48.607137709000042 ], [ -123.439475783999953, 48.608377704000098 ], [ -123.438464302999989, 48.609094410000083 ], [ -123.438208656999976, 48.609166386000041 ], [ -123.43788939800001, 48.609256308000099 ], [ -123.437671081999923, 48.609257691000025 ], [ -123.437521933999989, 48.609258654000037 ], [ -123.437358198999974, 48.60925969300007 ], [ -123.43694981499999, 48.609173195999986 ], [ -123.436619183999966, 48.609027294000057 ], [ -123.436327714999948, 48.608783190000032 ], [ -123.436068976999948, 48.608495767000072 ], [ -123.435927895999967, 48.60833900500004 ], [ -123.435618614999925, 48.608124201000038 ], [ -123.435283399999889, 48.607987211000072 ], [ -123.433613343999937, 48.60766855500011 ], [ -123.432774009999946, 48.607508401000132 ], [ -123.431552596999893, 48.607304887000112 ], [ -123.431171101999936, 48.607172110000114 ] ], [ [ -123.435040765999943, 48.607083183000093 ], [ -123.43504411, 48.607021756000044 ], [ -123.434739035999954, 48.607014395000142 ], [ -123.434816492, 48.605592193000035 ], [ -123.434935163999981, 48.603413038000085 ], [ -123.435223216999958, 48.603419989000088 ], [ -123.435362186999967, 48.60086754000011 ], [ -123.436570595999981, 48.600896690000077 ], [ -123.436661737999941, 48.599221754000034 ], [ -123.433057011999935, 48.599134758000027 ], [ -123.433005144999967, 48.600086612000077 ], [ -123.427595491999966, 48.599955827000059 ], [ -123.427613531999938, 48.59962546000002 ], [ -123.427339181999955, 48.599618820000096 ], [ -123.427226272, 48.601686241000124 ], [ -123.427991516999953, 48.601704761000079 ], [ -123.428045587, 48.600714461000045 ], [ -123.433455326999962, 48.600845223000043 ], [ -123.433376716999973, 48.602288006000087 ], [ -123.434151387999947, 48.602306709000068 ], [ -123.434052524999942, 48.604121638000102 ], [ -123.43460208, 48.604134902000091 ], [ -123.434522727999962, 48.605591840000038 ], [ -123.434494227999934, 48.606115088000116 ], [ -123.434685595999923, 48.606119706000065 ], [ -123.434633655999974, 48.607073359000047 ], [ -123.435040765999943, 48.607083183000093 ] ], [ [ -123.426399342999972, 48.604319150000052 ], [ -123.42644656499999, 48.603454858000077 ], [ -123.42170937499999, 48.60334006100009 ], [ -123.421725230999982, 48.603050373000066 ], [ -123.420932171999979, 48.603053275000022 ], [ -123.420865603999971, 48.604269037000073 ], [ -123.42168206599996, 48.604288843000056 ], [ -123.421665993999952, 48.604582464000025 ], [ -123.42192877399999, 48.604588837000172 ], [ -123.421922925999965, 48.604695689000067 ], [ -123.422954843999889, 48.604720710000052 ], [ -123.42295333399997, 48.604748312000062 ], [ -123.42510571699999, 48.604800469000089 ], [ -123.425133702999929, 48.604288501000084 ], [ -123.426399342999972, 48.604319150000052 ] ], [ [ -123.442077566999956, 48.599237231000053 ], [ -123.442044191999955, 48.599851891000064 ], [ -123.443326602999917, 48.599882745000144 ], [ -123.443359960999942, 48.599268085000091 ], [ -123.442077566999956, 48.599237231000053 ] ], [ [ -123.440520436999975, 48.605940521000043 ], [ -123.440480059999942, 48.606683559000018 ], [ -123.441044019999978, 48.606697136000086 ], [ -123.441081401999909, 48.606009086000057 ], [ -123.441138605999967, 48.604956117000064 ], [ -123.440924183999968, 48.604950955000092 ], [ -123.44090295, 48.605341802000034 ], [ -123.440553428, 48.605333387000051 ], [ -123.440520436999975, 48.605940521000043 ] ], [ [ -123.441089549999944, 48.59847394000014 ], [ -123.441098857, 48.598302602000054 ], [ -123.441021603999928, 48.598300742000106 ], [ -123.441014270999943, 48.598435721000044 ], [ -123.43682905899999, 48.598334874000102 ], [ -123.436827079999915, 48.598371234000062 ], [ -123.441089549999944, 48.59847394000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213439751", "BldgCostT": "135655001", "sL_LossRatio": "0.774290886680533", "sL_AssetLoss": "1298100", "sL_BldgLoss": "1005107", "sL_StrLoss": "566678", "sL_NStrLoss": "438429", "sL_ContLoss": "292993", "geom_point": "0101000020E6100000772643E1F5DB5EC0CC06F41D574B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.460887399999947, 48.59898947100006 ], [ -123.458470986999913, 48.598776215000093 ], [ -123.457884684999939, 48.598786354000055 ], [ -123.457640086999959, 48.598790600000015 ], [ -123.45723345899998, 48.598813350000079 ], [ -123.456625520000017, 48.598847394000096 ], [ -123.45652920899991, 48.598841401000051 ], [ -123.456341082999941, 48.598829690000045 ], [ -123.45610858400002, 48.598815198000118 ], [ -123.455733104999979, 48.598746798 ], [ -123.455615501999944, 48.598716358000068 ], [ -123.453279899000037, 48.598111911000046 ], [ -123.45235229, 48.597921384000109 ], [ -123.451957977999911, 48.597840398000088 ], [ -123.450239612999908, 48.597791092000122 ], [ -123.448682393999945, 48.597815984000107 ], [ -123.448382128999981, 48.59781742600012 ], [ -123.447414707999954, 48.597821971000016 ], [ -123.44733787399997, 48.597822360000109 ], [ -123.446930979999962, 48.597824273000072 ], [ -123.444353513999914, 48.597836399000094 ], [ -123.442346694999941, 48.597839776000107 ], [ -123.441871942999967, 48.597840550000079 ], [ -123.441370079999942, 48.597841406000057 ], [ -123.441248017999911, 48.597841615000064 ], [ -123.441180186999986, 48.597841712000076 ], [ -123.439715324999909, 48.597844158000086 ], [ -123.439308437999983, 48.597844810000034 ], [ -123.43882022799994, 48.597845620000022 ], [ -123.437396167999964, 48.597847959000049 ], [ -123.436663674999949, 48.597849134000057 ], [ -123.436123706999979, 48.59784999500009 ], [ -123.435727330999924, 48.597846160000131 ], [ -123.434683581999934, 48.597836012000101 ], [ -123.434548, 48.597834679000073 ], [ -123.433775139999952, 48.59782716800003 ], [ -123.430617979999965, 48.597796393000166 ], [ -123.430681498999917, 48.594646209000139 ], [ -123.430669739000024, 48.594450609000013 ], [ -123.430630973999897, 48.593803778000073 ], [ -123.430624791999946, 48.59370089500009 ], [ -123.430109117999933, 48.592336894000105 ], [ -123.430679812000037, 48.588668892000086 ], [ -123.42992800199994, 48.588800402000061 ], [ -123.42833150199999, 48.588731987000109 ], [ -123.42611858699999, 48.588768594000022 ], [ -123.42379010799999, 48.58876439400008 ], [ -123.423565890999953, 48.588762478000085 ], [ -123.422978205000035, 48.588757401000109 ], [ -123.422499721999927, 48.588749713000027 ], [ -123.422418514999976, 48.58874842200008 ], [ -123.42178109699995, 48.588738210000059 ], [ -123.4219499, 48.58800310800008 ], [ -123.42246113499999, 48.586948916000047 ], [ -123.422379881999944, 48.586948750000033 ], [ -123.422307702999959, 48.586981261000098 ], [ -123.418989313999987, 48.586984552000047 ], [ -123.41890966499993, 48.586955574000072 ], [ -123.418818988999931, 48.586955171000028 ], [ -123.418730367, 48.586792473000052 ], [ -123.418350108999974, 48.586321682000062 ], [ -123.417826010999974, 48.585928494000129 ], [ -123.417540533999912, 48.585790218000042 ], [ -123.417140307999944, 48.585596307000046 ], [ -123.41689801299998, 48.585521043000078 ], [ -123.416650184999952, 48.585444060000093 ], [ -123.415030409999986, 48.584940888000041 ], [ -123.414296303999933, 48.584577800000062 ], [ -123.413847206999947, 48.584251312000063 ], [ -123.413517681999949, 48.583984652000048 ], [ -123.412813277999987, 48.583414618000106 ], [ -123.412252908999989, 48.582961080000068 ], [ -123.41197262299994, 48.582691007000065 ], [ -123.410121409999931, 48.581151993000063 ], [ -123.410106659999954, 48.581137835000035 ], [ -123.409571098999947, 48.580623806000148 ], [ -123.409258415999943, 48.580228502000118 ], [ -123.408935686999911, 48.579697692000124 ], [ -123.410751507999976, 48.579711300000014 ], [ -123.412030107999925, 48.579721783000053 ], [ -123.413736206999928, 48.579736287000117 ], [ -123.415484896999942, 48.579740893000071 ], [ -123.416946506999949, 48.579746702000087 ], [ -123.417154960999937, 48.579746343000053 ], [ -123.420034685999966, 48.579741424000098 ], [ -123.42072605199999, 48.579740246000021 ], [ -123.421417451999986, 48.579739048000143 ], [ -123.42233930899999, 48.57973745000001 ], [ -123.422770279999924, 48.579736703000094 ], [ -123.425118816999912, 48.579734334000044 ], [ -123.425946041999964, 48.579733467000089 ], [ -123.426555973999882, 48.579731628000111 ], [ -123.426706907999957, 48.579731169000077 ], [ -123.427342335999981, 48.579730668000053 ], [ -123.42749147, 48.579730533000095 ], [ -123.42751857399999, 48.579730512000076 ], [ -123.427586362999989, 48.579730459000089 ], [ -123.428169412999935, 48.579729981000064 ], [ -123.430670468999921, 48.579727933000122 ], [ -123.434758760999941, 48.579722713000073 ], [ -123.436236560999959, 48.579720807000051 ], [ -123.437513353999947, 48.57971914400008 ], [ -123.440059833999925, 48.579715784000037 ], [ -123.440181860999971, 48.579715599000039 ], [ -123.440761043999913, 48.57971483300004 ], [ -123.441049449999923, 48.579714451 ], [ -123.44120403, 48.579714234000058 ], [ -123.441229592999946, 48.581197063000104 ], [ -123.441205456999967, 48.581196482000053 ], [ -123.441176562999928, 48.581728656000074 ], [ -123.442004667999953, 48.581748597000107 ], [ -123.442024883999949, 48.581376137000063 ], [ -123.444359982999984, 48.581428182000124 ], [ -123.444327983999926, 48.58332999100007 ], [ -123.444328055999947, 48.585747585000014 ], [ -123.440648122999932, 48.585659012000086 ], [ -123.44066639499998, 48.585322576000046 ], [ -123.439638664999961, 48.585297816000029 ], [ -123.439602225999977, 48.585968476000033 ], [ -123.444328065999912, 48.586082247000064 ], [ -123.44432809099996, 48.586947906000056 ], [ -123.443707489999952, 48.590712724000113 ], [ -123.443774152999964, 48.590712715000038 ], [ -123.443772254999885, 48.590747677000088 ], [ -123.442041457999963, 48.590706029000074 ], [ -123.44203129499995, 48.590893220000062 ], [ -123.436622672999988, 48.590762892000015 ], [ -123.436715588999974, 48.589054906000122 ], [ -123.436211266999948, 48.589042739000028 ], [ -123.436189881999951, 48.589435767000126 ], [ -123.432840781999971, 48.589354912000083 ], [ -123.432757925999908, 48.590875647000104 ], [ -123.431939206999985, 48.590855865000123 ], [ -123.431872802, 48.592074199000095 ], [ -123.43546493799991, 48.592160946000135 ], [ -123.43533047699999, 48.594631143000079 ], [ -123.436656561999953, 48.594663136000065 ], [ -123.436688110999967, 48.594083253000072 ], [ -123.441937570999926, 48.594209736000103 ], [ -123.442053308999931, 48.592077977000066 ], [ -123.447462098999949, 48.592208029000055 ], [ -123.447285240999918, 48.595472329000124 ], [ -123.452373017999932, 48.595594409000036 ], [ -123.452367794999972, 48.595690997000034 ], [ -123.452737046, 48.595699847000098 ], [ -123.452830778999925, 48.593966148000113 ], [ -123.453184884999956, 48.593974635000045 ], [ -123.45336129899999, 48.590710854000065 ], [ -123.461979486999965, 48.590708445000118 ], [ -123.462035452999928, 48.590841097000045 ], [ -123.462164948999956, 48.591148087000079 ], [ -123.462173009999916, 48.591167102000028 ], [ -123.46235473199998, 48.591597908000132 ], [ -123.462956671999919, 48.593024748000104 ], [ -123.46304006099993, 48.593222387 ], [ -123.463287226999952, 48.593808129000145 ], [ -123.463416742999939, 48.594115120000041 ], [ -123.464062759999933, 48.59564624500009 ], [ -123.46481547899999, 48.597227993000054 ], [ -123.465257383999969, 48.598156628000062 ], [ -123.465896428999912, 48.599190573000079 ], [ -123.463373995999945, 48.599208897000075 ], [ -123.460887399999947, 48.59898947100006 ] ], [ [ -123.463029373999973, 48.596880672000083 ], [ -123.463062705, 48.596261692 ], [ -123.461284254999896, 48.596219225000027 ], [ -123.461307728999927, 48.595783610000105 ], [ -123.461161775999969, 48.595780123000061 ], [ -123.461191378, 48.595230808000089 ], [ -123.46085651199995, 48.595222808000116 ], [ -123.460779207999934, 48.596657136 ], [ -123.461379450999914, 48.596671475000015 ], [ -123.461373662999989, 48.596778891000021 ], [ -123.462665612, 48.596809742000048 ], [ -123.462662262999942, 48.596871909000157 ], [ -123.463029373999973, 48.596880672000083 ] ], [ [ -123.460862054999936, 48.594971092 ], [ -123.460920274999978, 48.593890790000032 ], [ -123.460263855999941, 48.593875106000013 ], [ -123.46041638599992, 48.59104535200008 ], [ -123.458761037999963, 48.591005781000071 ], [ -123.458593227000023, 48.594117004000104 ], [ -123.458239118999956, 48.594108535000039 ], [ -123.458196022999942, 48.594907364000044 ], [ -123.460862054999936, 48.594971092 ] ], [ [ -123.439482366999925, 48.586507017000059 ], [ -123.439495663999963, 48.586262314000045 ], [ -123.438484398999918, 48.586237940000053 ], [ -123.43847109799998, 48.586482643000089 ], [ -123.439482366999925, 48.586507017000059 ] ], [ [ -123.426912811999969, 48.584682125000043 ], [ -123.426951367999933, 48.583976011000061 ], [ -123.426371439999954, 48.583961965000107 ], [ -123.426332875999933, 48.584668079000011 ], [ -123.426912811999969, 48.584682125000043 ] ], [ [ -123.419596726999984, 48.582501697000041 ], [ -123.419615390999979, 48.582160828000085 ], [ -123.419179408000019, 48.582150238000089 ], [ -123.419181342999977, 48.582384395000119 ], [ -123.419356149999899, 48.58238864100008 ], [ -123.419350285999968, 48.582495712000075 ], [ -123.419596726999984, 48.582501697000041 ] ], [ [ -123.434040469, 48.581835231000085 ], [ -123.434080856999984, 48.581093449000051 ], [ -123.433160919999949, 48.581071227000031 ], [ -123.433161043999959, 48.581068947000112 ], [ -123.432839963, 48.58106118900011 ], [ -123.432822523999945, 48.581381328000191 ], [ -123.432853790999914, 48.581382083000044 ], [ -123.432828051999977, 48.581854609000075 ], [ -123.433039884999957, 48.581859727000044 ], [ -123.433042532999977, 48.581811125000087 ], [ -123.434040469, 48.581835231000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131900499", "BldgCostT": "87489999", "sL_LossRatio": "0.827635673042477", "sL_AssetLoss": "639239", "sL_BldgLoss": "529057", "sL_StrLoss": "329841", "sL_NStrLoss": "199216", "sL_ContLoss": "110182", "geom_point": "0101000020E61000004DD356DB43DB5EC0FB75F1C8E94B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.421055917999965, 48.595482205000089 ], [ -123.420827887999948, 48.59534329100007 ], [ -123.420276313999935, 48.595005306000111 ], [ -123.41941659299998, 48.594657191000088 ], [ -123.420144911999898, 48.594216013000086 ], [ -123.4207531099999, 48.593716008000037 ], [ -123.42119189899995, 48.593195613000077 ], [ -123.421518011999979, 48.592605791000047 ], [ -123.421611289999987, 48.59233489700005 ], [ -123.42172151499993, 48.591979687000098 ], [ -123.421757102999962, 48.59165150900008 ], [ -123.421693992999948, 48.589761209000109 ], [ -123.42178109699995, 48.588738210000059 ], [ -123.422418514999976, 48.58874842200008 ], [ -123.422499721999927, 48.588749713000027 ], [ -123.422978205000035, 48.588757401000109 ], [ -123.423565890999953, 48.588762478000085 ], [ -123.42379010799999, 48.58876439400008 ], [ -123.42611858699999, 48.588768594000022 ], [ -123.42833150199999, 48.588731987000109 ], [ -123.42992800199994, 48.588800402000061 ], [ -123.430679812000037, 48.588668892000086 ], [ -123.430109117999933, 48.592336894000105 ], [ -123.430624791999946, 48.59370089500009 ], [ -123.430630973999897, 48.593803778000073 ], [ -123.430669739000024, 48.594450609000013 ], [ -123.430681498999917, 48.594646209000139 ], [ -123.430617979999965, 48.597796393000166 ], [ -123.430519676999936, 48.59779368700007 ], [ -123.429799983999928, 48.597773905000061 ], [ -123.427636595999971, 48.597541288000052 ], [ -123.427230888999986, 48.59750480200006 ], [ -123.426548600999979, 48.597443417000079 ], [ -123.425896664999982, 48.597384783000038 ], [ -123.425141100999895, 48.597316798000044 ], [ -123.424685125999972, 48.597211102000067 ], [ -123.423971953999981, 48.596903777000122 ], [ -123.423665857999936, 48.596771889000131 ], [ -123.422590219999975, 48.596308343000089 ], [ -123.422073579999932, 48.596085694000109 ], [ -123.421637890999975, 48.595856995000119 ], [ -123.421055917999965, 48.595482205000089 ] ], [ [ -123.428861940999951, 48.596049522000094 ], [ -123.428883165999963, 48.595660609000028 ], [ -123.427835352, 48.595635256000037 ], [ -123.42783624399999, 48.595740849000066 ], [ -123.427429378999946, 48.595742360000052 ], [ -123.427431676999973, 48.596014911000047 ], [ -123.428861940999951, 48.596049522000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127146000", "BldgCostT": "87555000", "sL_LossRatio": "0.810741840945792", "sL_AssetLoss": "501590", "sL_BldgLoss": "406660", "sL_StrLoss": "202360", "sL_NStrLoss": "204300", "sL_ContLoss": "94930", "geom_point": "0101000020E610000001F6B09B02DB5EC00F3E5ABDBF4C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.420503987999965, 48.597846200000113 ], [ -123.420752501999971, 48.597685492000018 ], [ -123.420899792999961, 48.597790011 ], [ -123.421126309999963, 48.597807196000076 ], [ -123.422682510999948, 48.597802609999988 ], [ -123.42290999199993, 48.597802701000091 ], [ -123.423175544999964, 48.597802833000081 ], [ -123.423745399999945, 48.597803097000046 ], [ -123.423669166999971, 48.600001176000085 ], [ -123.423620904999936, 48.601392705000123 ], [ -123.422330328999948, 48.60140429100008 ], [ -123.421125190999973, 48.601415089000128 ], [ -123.420341918999966, 48.601424106000088 ], [ -123.420362820999983, 48.600671795000061 ], [ -123.420372264, 48.600319308000103 ], [ -123.420380714999979, 48.600004570000074 ], [ -123.420399317999909, 48.599313205000108 ], [ -123.420421412999929, 48.598562687000133 ], [ -123.420438801999978, 48.597973589000105 ], [ -123.420485758999959, 48.597881797000063 ], [ -123.420503987999965, 48.597846200000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157392750", "BldgCostT": "101775000", "sL_LossRatio": "0.832112189047388", "sL_AssetLoss": "603395.8", "sL_BldgLoss": "502093", "sL_StrLoss": "321693", "sL_NStrLoss": "180400", "sL_ContLoss": "101302.8", "geom_point": "0101000020E610000040D8AD8EB1DA5EC0B74E0946AD4C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.416924103999975, 48.594182800000063 ], [ -123.417377389999913, 48.594188498000058 ], [ -123.41808670799999, 48.594309787000043 ], [ -123.418298998999958, 48.594346107000092 ], [ -123.419110286999967, 48.594539814000058 ], [ -123.41941659299998, 48.594657191000088 ], [ -123.420276313999935, 48.595005306000111 ], [ -123.420827887999948, 48.59534329100007 ], [ -123.421055917999965, 48.595482205000089 ], [ -123.420934599999953, 48.595670406000082 ], [ -123.420905515999934, 48.596620904000048 ], [ -123.42088462399991, 48.597003488000048 ], [ -123.420853896999944, 48.597465211000085 ], [ -123.420752501999971, 48.597685492000018 ], [ -123.420503987999965, 48.597846200000113 ], [ -123.420485758999959, 48.597881797000063 ], [ -123.420438801999978, 48.597973589000105 ], [ -123.420421412999929, 48.598562687000133 ], [ -123.420399317999909, 48.599313205000108 ], [ -123.420380714999979, 48.600004570000074 ], [ -123.420372264, 48.600319308000103 ], [ -123.420362820999983, 48.600671795000061 ], [ -123.420341918999966, 48.601424106000088 ], [ -123.418990384999944, 48.601424597000083 ], [ -123.416971641999965, 48.601465760000046 ], [ -123.41715489, 48.602345022000122 ], [ -123.417227904999919, 48.602695385000146 ], [ -123.416893311999928, 48.602696202000082 ], [ -123.414161575999984, 48.602702570000105 ], [ -123.413781780999926, 48.602703439000045 ], [ -123.413700392999957, 48.602703623000146 ], [ -123.413578323, 48.602703912000017 ], [ -123.413401949999951, 48.602704321000047 ], [ -123.413382809999916, 48.602704363000107 ], [ -123.413279878999973, 48.602704607000184 ], [ -123.41203200699999, 48.602707482000042 ], [ -123.411665776999911, 48.602708316000083 ], [ -123.411105714, 48.602709606000118 ], [ -123.41147754899994, 48.602272024000051 ], [ -123.411823678999937, 48.601864721000013 ], [ -123.411907091000018, 48.601766538000035 ], [ -123.41193105499994, 48.601738338000125 ], [ -123.411999639999962, 48.601657667000055 ], [ -123.41264880499989, 48.600893661000036 ], [ -123.412687663999975, 48.600847981000079 ], [ -123.413350096999949, 48.600068354000058 ], [ -123.413412895999954, 48.599994452000047 ], [ -123.413772981999955, 48.599570660000019 ], [ -123.414819301999927, 48.598339187000107 ], [ -123.415308786999987, 48.597767553000089 ], [ -123.415768395999962, 48.597230786000125 ], [ -123.415978582999983, 48.597102493000072 ], [ -123.416850690999951, 48.59710207900013 ], [ -123.416852014999975, 48.597021829000042 ], [ -123.416859474999939, 48.596571802 ], [ -123.416863037999946, 48.596355935000112 ], [ -123.416865312999917, 48.59621890500005 ], [ -123.416924103999975, 48.594182800000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138985084", "BldgCostT": "83883334", "sL_LossRatio": "0.771275276149986", "sL_AssetLoss": "550217.3", "sL_BldgLoss": "424369", "sL_StrLoss": "236524", "sL_NStrLoss": "187845", "sL_ContLoss": "125848.3", "geom_point": "0101000020E6100000184A157BDEDA5EC016BC6B1AA54B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.41808670799999, 48.594309787000043 ], [ -123.417377389999913, 48.594188498000058 ], [ -123.416924103999975, 48.594182800000063 ], [ -123.416963094999971, 48.593413917000127 ], [ -123.416995964999941, 48.592766349000037 ], [ -123.417007699999942, 48.592535011000138 ], [ -123.417078309999965, 48.592332993000049 ], [ -123.417253494999969, 48.592001909000039 ], [ -123.418363394999986, 48.591118313000074 ], [ -123.418640973999942, 48.590821192000121 ], [ -123.41899989599996, 48.590078905000098 ], [ -123.419149925999974, 48.589613805000113 ], [ -123.419321790999945, 48.588701102000094 ], [ -123.419321781999926, 48.588403594000063 ], [ -123.419272926999923, 48.588245458000117 ], [ -123.419270277999914, 48.588236873000035 ], [ -123.419218584999925, 48.588069547000067 ], [ -123.419077480999988, 48.587612928000077 ], [ -123.419013604999947, 48.587406196000067 ], [ -123.418818988999931, 48.586955171000028 ], [ -123.41890966499993, 48.586955574000072 ], [ -123.418989313999987, 48.586984552000047 ], [ -123.422307702999959, 48.586981261000098 ], [ -123.422379881999944, 48.586948750000033 ], [ -123.42246113499999, 48.586948916000047 ], [ -123.4219499, 48.58800310800008 ], [ -123.42178109699995, 48.588738210000059 ], [ -123.421693992999948, 48.589761209000109 ], [ -123.421757102999962, 48.59165150900008 ], [ -123.42172151499993, 48.591979687000098 ], [ -123.421611289999987, 48.59233489700005 ], [ -123.421518011999979, 48.592605791000047 ], [ -123.42119189899995, 48.593195613000077 ], [ -123.4207531099999, 48.593716008000037 ], [ -123.420144911999898, 48.594216013000086 ], [ -123.41941659299998, 48.594657191000088 ], [ -123.419110286999967, 48.594539814000058 ], [ -123.418298998999958, 48.594346107000092 ], [ -123.41808670799999, 48.594309787000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343429751", "BldgCostT": "235810001", "sL_LossRatio": "0.807612327706532", "sL_AssetLoss": "444053.4", "sL_BldgLoss": "358623", "sL_StrLoss": "187372", "sL_NStrLoss": "171251", "sL_ContLoss": "85430.4", "geom_point": "0101000020E6100000544DFF4887D35EC0A17E3053873B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.304196246999979, 48.468475398000123 ], [ -123.304318846999976, 48.468475074000061 ], [ -123.304196227999967, 48.46847195400003 ], [ -123.304196246999979, 48.468475398000123 ], [ -123.302978693999989, 48.468478609000066 ], [ -123.302975480999962, 48.467938830000023 ], [ -123.302414288999955, 48.467940307000056 ], [ -123.302356437999904, 48.467985961000061 ], [ -123.302226537999971, 48.468096760000059 ], [ -123.302123937999966, 48.468099461000058 ], [ -123.301819934, 48.467941866000047 ], [ -123.301563831999943, 48.467942538000088 ], [ -123.301528295999944, 48.468564742000069 ], [ -123.299732069999934, 48.468518985000095 ], [ -123.299733470999954, 48.46875700000011 ], [ -123.300545178, 48.468754883000067 ], [ -123.300548356999954, 48.469293364000066 ], [ -123.297819189000023, 48.467791714000036 ], [ -123.298941917999954, 48.466890428000042 ], [ -123.300013108999963, 48.466030499000077 ], [ -123.300257930999976, 48.465840288000059 ], [ -123.301001094999947, 48.465262892000084 ], [ -123.301061604, 48.4652159010001 ], [ -123.301221203999916, 48.465086135000035 ], [ -123.301561169999971, 48.464809749000054 ], [ -123.301725655999974, 48.464676015000101 ], [ -123.301911292999989, 48.464525091000034 ], [ -123.30219690399997, 48.46427811100007 ], [ -123.302686751999914, 48.46385766200008 ], [ -123.302521427999949, 48.463764146000109 ], [ -123.302106923999986, 48.463529605000112 ], [ -123.30175720599999, 48.463331727000138 ], [ -123.301171597999968, 48.46300035400008 ], [ -123.301004474999928, 48.462905793000076 ], [ -123.301537320999941, 48.462444109000025 ], [ -123.30168031099997, 48.462186288000034 ], [ -123.302952940999901, 48.461461431000082 ], [ -123.303127539999977, 48.461460971000058 ], [ -123.303235738999931, 48.461393961000084 ], [ -123.303367936999948, 48.461460337000084 ], [ -123.30401642899993, 48.461458627000113 ], [ -123.304026374999921, 48.461284288000115 ], [ -123.304415243999955, 48.461294182000081 ], [ -123.304421290999926, 48.461188144000033 ], [ -123.305348440999978, 48.461789959000022 ], [ -123.306861672999943, 48.460641392000092 ], [ -123.307301957999968, 48.46064021799999 ], [ -123.308902346999915, 48.461395992000142 ], [ -123.312464233999961, 48.463403139000036 ], [ -123.310383307, 48.465013846000055 ], [ -123.310127958999942, 48.465211514000089 ], [ -123.309887078999921, 48.465397907000089 ], [ -123.309672501999913, 48.465419507000071 ], [ -123.309531686999932, 48.465473650000035 ], [ -123.309312158999944, 48.465652942000069 ], [ -123.30836615500003, 48.466423407000043 ], [ -123.307863233999939, 48.46683626400003 ], [ -123.307697604999987, 48.466970044000043 ], [ -123.306305686999949, 48.468099768000059 ], [ -123.306240491999986, 48.468129684000083 ], [ -123.306087181999928, 48.468261055000042 ], [ -123.306031376999925, 48.468308664000091 ], [ -123.305748040999973, 48.468550097000019 ], [ -123.304951612999929, 48.469228704000045 ], [ -123.303835001999943, 48.470169697000117 ], [ -123.303141807999964, 48.470720204000017 ], [ -123.302015404999921, 48.470100505000097 ], [ -123.302482802999947, 48.470099278000063 ], [ -123.302539103999948, 48.469113176000064 ], [ -123.304200311999949, 48.46915545100007 ], [ -123.304196246999979, 48.468475398000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.912705926907783", "sL_AssetLoss": "7393.4", "sL_BldgLoss": "6748", "sL_StrLoss": "4720", "sL_NStrLoss": "2028", "sL_ContLoss": "645.4", "geom_point": "0101000020E61000007D53E4528DD35EC0F6E48A20083B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.306178422999949, 48.460643212000079 ], [ -123.306861672999943, 48.460641392000092 ], [ -123.305348440999978, 48.461789959000022 ], [ -123.304421290999926, 48.461188144000033 ], [ -123.30443337599992, 48.46097629800002 ], [ -123.305774832999958, 48.461010419000125 ], [ -123.305774255999893, 48.460914181000057 ], [ -123.306180045999923, 48.460913101000067 ], [ -123.306178422999949, 48.460643212000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78306584", "BldgCostT": "49903334", "sL_LossRatio": "0.829250912270831", "sL_AssetLoss": "252035.9", "sL_BldgLoss": "209001", "sL_StrLoss": "126440", "sL_NStrLoss": "82561", "sL_ContLoss": "43034.9", "geom_point": "0101000020E61000005321470849D35EC033E33CB5DD3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.299069375000016, 48.461819391000098 ], [ -123.298183556999916, 48.461325785000056 ], [ -123.29760249399996, 48.461001986000099 ], [ -123.298271252999911, 48.460441159 ], [ -123.298432191999936, 48.460306197000108 ], [ -123.298564067, 48.460195687000116 ], [ -123.298852, 48.459954409000105 ], [ -123.299400086999967, 48.459460598000057 ], [ -123.299742792999922, 48.45894450400003 ], [ -123.299943083999921, 48.458581696000117 ], [ -123.30004995099992, 48.458299401000055 ], [ -123.300184419999965, 48.457944046000122 ], [ -123.300200693999955, 48.457901110000101 ], [ -123.300381576999911, 48.45702819200006 ], [ -123.300442661999952, 48.456828413000046 ], [ -123.302394476999964, 48.457717973000037 ], [ -123.305982706999927, 48.459880480000038 ], [ -123.305785737999912, 48.459988561000031 ], [ -123.305768728999979, 48.459993956000126 ], [ -123.305769392999949, 48.4601045100001 ], [ -123.30541627299999, 48.460105449000068 ], [ -123.304885636999956, 48.460234361000083 ], [ -123.304107738, 48.460212661000064 ], [ -123.303866936999938, 48.460189561000057 ], [ -123.303432206999958, 48.460110698000022 ], [ -123.301575369999938, 48.460115576000085 ], [ -123.301306701999977, 48.460275308000035 ], [ -123.301307863999909, 48.460471645000105 ], [ -123.301353238000019, 48.460519561000119 ], [ -123.301552237999928, 48.460655426000152 ], [ -123.30171474499997, 48.460655 ], [ -123.301715406999961, 48.460766826000075 ], [ -123.301880237999939, 48.460879361000138 ], [ -123.301998036999947, 48.460981161000056 ], [ -123.301718340999926, 48.46126177700004 ], [ -123.301718694, 48.461321313000077 ], [ -123.301734337999989, 48.46134316100013 ], [ -123.301939783999956, 48.461464093000089 ], [ -123.302952940999901, 48.461461431000082 ], [ -123.30168031099997, 48.462186288000034 ], [ -123.301537320999941, 48.462444109000025 ], [ -123.301004474999928, 48.462905793000076 ], [ -123.300762741, 48.462769031000072 ], [ -123.30049094099995, 48.462615258000078 ], [ -123.300206603999939, 48.462454387000051 ], [ -123.299314195999955, 48.461954580000082 ], [ -123.299069375000016, 48.461819391000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226111586", "BldgCostT": "145418336", "sL_LossRatio": "0.951363734806657", "sL_AssetLoss": "248736.41", "sL_BldgLoss": "236638.8", "sL_StrLoss": "191759.8", "sL_NStrLoss": "44879", "sL_ContLoss": "12097.61", "geom_point": "0101000020E6100000213BD28D2ED65EC07C44A6F84F3A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.340741548, 48.455553111000022 ], [ -123.340743088, 48.455217407000141 ], [ -123.341104232999925, 48.455229048000042 ], [ -123.341117689000029, 48.455229491000047 ], [ -123.342131402999925, 48.455258582000106 ], [ -123.342522344, 48.455257601000042 ], [ -123.3429145959999, 48.455256612000078 ], [ -123.344403535, 48.455299335000113 ], [ -123.344401312999949, 48.44860509100009 ], [ -123.343944403999942, 48.448343083000047 ], [ -123.34596451199999, 48.44837929000002 ], [ -123.346785179999983, 48.44843254400012 ], [ -123.34692678699993, 48.448441745000089 ], [ -123.348144087999941, 48.448442508000021 ], [ -123.348143045999976, 48.450225716000048 ], [ -123.348092677999887, 48.450477519000046 ], [ -123.348787497000018, 48.450396111000025 ], [ -123.349532115000017, 48.450311789000047 ], [ -123.350484297999955, 48.450203999000152 ], [ -123.351030997999928, 48.450229400000119 ], [ -123.350890059999983, 48.451082721000034 ], [ -123.35083490599996, 48.451416694000024 ], [ -123.350704303000015, 48.4523017060001 ], [ -123.350610888999952, 48.452696647000025 ], [ -123.350520215999978, 48.453079910000113 ], [ -123.350469409999974, 48.453397929000062 ], [ -123.35044747499991, 48.453535196000132 ], [ -123.350438418999957, 48.453697296000044 ], [ -123.350523910999982, 48.453954692000053 ], [ -123.350577518999941, 48.454064310000099 ], [ -123.350821811999936, 48.454563591000095 ], [ -123.350881092999956, 48.455482200000112 ], [ -123.350896016999926, 48.456226597000075 ], [ -123.350906492999982, 48.456803488000041 ], [ -123.350912889999961, 48.457154001000085 ], [ -123.350947877999928, 48.458023304000079 ], [ -123.350943563999948, 48.458363913000021 ], [ -123.35093679699996, 48.458895108000029 ], [ -123.350840200999968, 48.459751203000046 ], [ -123.35072369, 48.460577911 ], [ -123.34983689799999, 48.460699850000026 ], [ -123.34784980100001, 48.46097308700012 ], [ -123.346923869999955, 48.461096777000101 ], [ -123.346474040999937, 48.461156831000082 ], [ -123.346013085999985, 48.461218399000103 ], [ -123.344948179999946, 48.461353988000042 ], [ -123.344046903999981, 48.461534290000046 ], [ -123.343465617999968, 48.461593701000012 ], [ -123.343436152999956, 48.461014005000045 ], [ -123.343406548999937, 48.460978278000056 ], [ -123.342869401999977, 48.460390177000122 ], [ -123.342753041999913, 48.459209169000097 ], [ -123.342458686999947, 48.459054389000059 ], [ -123.342094696999979, 48.458863013000027 ], [ -123.340769615999989, 48.458825203000089 ], [ -123.340731389000013, 48.457752905000071 ], [ -123.340735950999914, 48.456766287000015 ], [ -123.340741548, 48.455553111000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204135667", "BldgCostT": "128316667", "sL_LossRatio": "0.939501471534867", "sL_AssetLoss": "236535.34", "sL_BldgLoss": "222225.3", "sL_StrLoss": "172742.9", "sL_NStrLoss": "49482.4", "sL_ContLoss": "14310.04", "geom_point": "0101000020E610000068BE94CBD0D55EC061278ACAE5394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.3395839, 48.45518379200012 ], [ -123.339669630999964, 48.454861050000055 ], [ -123.339796569999976, 48.454383242000077 ], [ -123.340077186999963, 48.453326810000036 ], [ -123.339661285999981, 48.453280199000069 ], [ -123.339069596999934, 48.453287913000096 ], [ -123.33860870299999, 48.453375988000055 ], [ -123.337806520999962, 48.453529305000082 ], [ -123.337793513999941, 48.453531788000092 ], [ -123.337514597999927, 48.453522092000121 ], [ -123.337307175999968, 48.453465497000082 ], [ -123.337130207999962, 48.453372686000122 ], [ -123.337025394999912, 48.453266303000056 ], [ -123.337058207, 48.453163400000086 ], [ -123.337126883999957, 48.453095696000055 ], [ -123.33743869499996, 48.452927708000068 ], [ -123.337158696999936, 48.45286569700005 ], [ -123.336713499999988, 48.452859889000059 ], [ -123.335445501999942, 48.452841499000101 ], [ -123.335522511999955, 48.450590791000124 ], [ -123.336727314999948, 48.45057870000003 ], [ -123.337905792999933, 48.450580296000062 ], [ -123.340282308999974, 48.450617498000092 ], [ -123.340413362, 48.450661583000112 ], [ -123.340514193999951, 48.450695511000092 ], [ -123.341312776999956, 48.450728992000165 ], [ -123.341467888999958, 48.450612100000122 ], [ -123.341962234999954, 48.450251192000039 ], [ -123.342226349999947, 48.450058346000027 ], [ -123.342353662999983, 48.449965387000077 ], [ -123.343026335999966, 48.449474228000092 ], [ -123.343143190999967, 48.449388896000066 ], [ -123.343584504999953, 48.44893370900008 ], [ -123.343754576999942, 48.448654586000117 ], [ -123.343944403999942, 48.448343083000047 ], [ -123.344401312999949, 48.44860509100009 ], [ -123.344403535, 48.455299335000113 ], [ -123.3429145959999, 48.455256612000078 ], [ -123.342522344, 48.455257601000042 ], [ -123.342131402999925, 48.455258582000106 ], [ -123.341117689000029, 48.455229491000047 ], [ -123.341104232999925, 48.455229048000042 ], [ -123.340743088, 48.455217407000141 ], [ -123.3395839, 48.45518379200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112738250", "BldgCostT": "75575000", "sL_LossRatio": "0.916631343780173", "sL_AssetLoss": "143485.82", "sL_BldgLoss": "131523.6", "sL_StrLoss": "107361", "sL_NStrLoss": "24162.6", "sL_ContLoss": "11962.22", "geom_point": "0101000020E610000062EEA4CF98D85EC015D05504493A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.381697770999935, 48.454373603000079 ], [ -123.38153231599992, 48.453388410000116 ], [ -123.384501195999945, 48.45401900500012 ], [ -123.387785102999956, 48.454716790000077 ], [ -123.38768219399999, 48.455113792000098 ], [ -123.387446492999956, 48.455640001000077 ], [ -123.38706098099999, 48.456386199000121 ], [ -123.386678592999914, 48.457125207000082 ], [ -123.386603198, 48.457202005000035 ], [ -123.386536832999965, 48.457269643000046 ], [ -123.383205122999954, 48.45650289400006 ], [ -123.383192462999943, 48.456499985000015 ], [ -123.38305221499999, 48.456467692000054 ], [ -123.382020219999987, 48.456230185000017 ], [ -123.380797791999925, 48.455947495000032 ], [ -123.380842276999928, 48.455867915000091 ], [ -123.380893799999939, 48.455775806000076 ], [ -123.381287902999972, 48.455070386000088 ], [ -123.381697770999935, 48.454373603000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "680793138", "BldgCostT": "461017081", "sL_LossRatio": "0.824991916076995", "sL_AssetLoss": "233921.08", "sL_BldgLoss": "192983", "sL_StrLoss": "131181.1", "sL_NStrLoss": "61801.9", "sL_ContLoss": "40938.08", "geom_point": "0101000020E6100000C870C99275D85EC09E53EA0EB93A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.38245761099995, 48.461984290000018 ], [ -123.380547092999961, 48.460519491000071 ], [ -123.37974790899996, 48.460980404000104 ], [ -123.379664734999935, 48.46099231600008 ], [ -123.379203532999966, 48.460862008000056 ], [ -123.379069605999959, 48.460502803000068 ], [ -123.378659007999914, 48.459312288000056 ], [ -123.378655908999946, 48.459303405000099 ], [ -123.378516899999923, 48.458902988000048 ], [ -123.378300595999946, 48.458421503000054 ], [ -123.377991902999966, 48.458087701000082 ], [ -123.377971990999981, 48.458066210000034 ], [ -123.378547017999921, 48.457690360000122 ], [ -123.378284923999928, 48.45748779900007 ], [ -123.377979602999915, 48.457198805000075 ], [ -123.377833217999935, 48.45698959900011 ], [ -123.378091801, 48.456904002000073 ], [ -123.378249791999977, 48.456903404000094 ], [ -123.380095504999929, 48.457341396000054 ], [ -123.380319910999972, 48.456896469000078 ], [ -123.380482311999955, 48.456574492000058 ], [ -123.380719471, 48.456103152000011 ], [ -123.380797791999925, 48.455947495000032 ], [ -123.382020219999987, 48.456230185000017 ], [ -123.38305221499999, 48.456467692000054 ], [ -123.383192462999943, 48.456499985000015 ], [ -123.383205122999954, 48.45650289400006 ], [ -123.386536832999965, 48.457269643000046 ], [ -123.386376309999946, 48.457707494000047 ], [ -123.386258323, 48.457912892000053 ], [ -123.385886195999902, 48.458660298000062 ], [ -123.385475811999939, 48.45941489400014 ], [ -123.384799394999959, 48.460658900000048 ], [ -123.383447325999967, 48.461473105000017 ], [ -123.38245761099995, 48.461984290000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "361318972", "BldgCostT": "198727181", "sL_LossRatio": "0.623748965135001", "sL_AssetLoss": "430853.3", "sL_BldgLoss": "268744.3", "sL_StrLoss": "141132.1", "sL_NStrLoss": "127612.2", "sL_ContLoss": "162109", "geom_point": "0101000020E61000000E0A5C472AD85EC0812A5EFAD1394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.380095504999929, 48.457341396000054 ], [ -123.378249791999977, 48.456903404000094 ], [ -123.378091801, 48.456904002000073 ], [ -123.377833217999935, 48.45698959900011 ], [ -123.377738755999957, 48.456824242000074 ], [ -123.377647644999968, 48.456664792000062 ], [ -123.377472687999969, 48.456358497000025 ], [ -123.377396519999976, 48.456224392000109 ], [ -123.377339313999926, 48.456123663000092 ], [ -123.377212175999972, 48.455894835000066 ], [ -123.37661931699995, 48.45535540300007 ], [ -123.376520689999978, 48.455073696000106 ], [ -123.376843840999967, 48.45471983500007 ], [ -123.376377283999929, 48.454347404000053 ], [ -123.37607528, 48.453999992000021 ], [ -123.375835067999958, 48.453633345000107 ], [ -123.3755135, 48.453054559000051 ], [ -123.375353600999929, 48.452773722000082 ], [ -123.37516558599998, 48.452439930000011 ], [ -123.374718374999986, 48.451658751000068 ], [ -123.374712393999985, 48.451648311000021 ], [ -123.374411117999955, 48.451121983000064 ], [ -123.374230321999931, 48.450806174000085 ], [ -123.373289, 48.449282299000075 ], [ -123.37293411899995, 48.44874590600012 ], [ -123.372634188999896, 48.44826503300002 ], [ -123.372309170999984, 48.447749268000081 ], [ -123.37246410799996, 48.447730561000064 ], [ -123.375654083000015, 48.44736200300008 ], [ -123.376846909999955, 48.447224171000094 ], [ -123.37962471499999, 48.446959297000049 ], [ -123.379428077999989, 48.447414288000154 ], [ -123.379320989999925, 48.447494605000038 ], [ -123.378881811999946, 48.447576693000045 ], [ -123.379329644999984, 48.449225514 ], [ -123.379632026999985, 48.450338895000129 ], [ -123.380137506999944, 48.45219958800002 ], [ -123.381224498999956, 48.452073209000083 ], [ -123.38153231599992, 48.453388410000116 ], [ -123.381697770999935, 48.454373603000079 ], [ -123.381287902999972, 48.455070386000088 ], [ -123.380893799999939, 48.455775806000076 ], [ -123.380842276999928, 48.455867915000091 ], [ -123.380797791999925, 48.455947495000032 ], [ -123.380719471, 48.456103152000011 ], [ -123.380482311999955, 48.456574492000058 ], [ -123.380319910999972, 48.456896469000078 ], [ -123.380095504999929, 48.457341396000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140912001", "BldgCostT": "92285001", "sL_LossRatio": "0.829666351600199", "sL_AssetLoss": "72968.73", "sL_BldgLoss": "60539.7", "sL_StrLoss": "43446.5", "sL_NStrLoss": "17093.2", "sL_ContLoss": "12429.03", "geom_point": "0101000020E61000008AB61AA75BD85EC021D5DAA88C394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.378881811999946, 48.447576693000045 ], [ -123.379320989999925, 48.447494605000038 ], [ -123.379428077999989, 48.447414288000154 ], [ -123.37962471499999, 48.446959297000049 ], [ -123.381250511999951, 48.447754300000042 ], [ -123.381579566999946, 48.447919727000055 ], [ -123.382127805999986, 48.448195282000071 ], [ -123.381317498999948, 48.448932789000075 ], [ -123.380972014999941, 48.449247095000082 ], [ -123.382571816, 48.449976512000056 ], [ -123.381779002999949, 48.450714403000028 ], [ -123.381681699999945, 48.450838212000107 ], [ -123.381649619999962, 48.450978996000117 ], [ -123.381677307999922, 48.451381008000077 ], [ -123.381812790999959, 48.451492500000064 ], [ -123.382223703999927, 48.451702884000014 ], [ -123.38201931, 48.451834274000056 ], [ -123.381911615999968, 48.451903503000104 ], [ -123.381900417999987, 48.451906597000054 ], [ -123.381463219999929, 48.452027693000048 ], [ -123.381224498999956, 48.452073209000083 ], [ -123.380137506999944, 48.45219958800002 ], [ -123.379632026999985, 48.450338895000129 ], [ -123.379329644999984, 48.449225514 ], [ -123.378881811999946, 48.447576693000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82506917", "BldgCostT": "52486667", "sL_LossRatio": "0.830905971860637", "sL_AssetLoss": "190419.38", "sL_BldgLoss": "158220.6", "sL_StrLoss": "105849", "sL_NStrLoss": "52371.6", "sL_ContLoss": "32198.78", "geom_point": "0101000020E61000001E23F2C0B4DA5EC082918753203A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.415970989999906, 48.453320630000107 ], [ -123.416481230999963, 48.452809118000054 ], [ -123.417186389000037, 48.45210211000002 ], [ -123.416229894999901, 48.45169559300011 ], [ -123.415691501999959, 48.451542612000011 ], [ -123.415966747999903, 48.451398423000072 ], [ -123.416480745999976, 48.451586982000066 ], [ -123.41648134499999, 48.451660271 ], [ -123.416678582, 48.451659557000021 ], [ -123.417294639999909, 48.45188555000005 ], [ -123.417294981999973, 48.451927219000012 ], [ -123.41740712099994, 48.451926813000092 ], [ -123.417572591999956, 48.451987511000034 ], [ -123.417701756999946, 48.452055120000068 ], [ -123.41770291, 48.452195633000095 ], [ -123.417968364999979, 48.452194671000072 ], [ -123.418511390999967, 48.452478899000049 ], [ -123.419569096999979, 48.452898997000041 ], [ -123.420151297999922, 48.452887606000139 ], [ -123.421686779999931, 48.452215400000107 ], [ -123.42240260899996, 48.452258091000076 ], [ -123.422631732999946, 48.452360687000095 ], [ -123.422629829999963, 48.452361810000077 ], [ -123.422496286999944, 48.452440708000026 ], [ -123.421760847999963, 48.452862725000067 ], [ -123.421368807999968, 48.453087690000089 ], [ -123.420877012999952, 48.453350199000099 ], [ -123.42061100399998, 48.453492205000089 ], [ -123.419955505999923, 48.453851395000086 ], [ -123.418890392999941, 48.454438059000069 ], [ -123.41809459299999, 48.454876391 ], [ -123.417325486999928, 48.455295890000031 ], [ -123.417046784000021, 48.455447900000109 ], [ -123.416724151, 48.455750521000027 ], [ -123.416517202999941, 48.455944624000075 ], [ -123.41567781, 48.456731906000066 ], [ -123.415493406999985, 48.456675315000034 ], [ -123.414927612999975, 48.456501703000043 ], [ -123.41405178399998, 48.456098892000028 ], [ -123.41360951899999, 48.455842804000099 ], [ -123.413592, 48.4557432020001 ], [ -123.413625597, 48.455671902000063 ], [ -123.415970989999906, 48.453320630000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139890001", "BldgCostT": "89625001", "sL_LossRatio": "0.812167293387348", "sL_AssetLoss": "289267.62", "sL_BldgLoss": "234933.7", "sL_StrLoss": "158032.9", "sL_NStrLoss": "76900.8", "sL_ContLoss": "54333.92", "geom_point": "0101000020E6100000E17306CA96DA5EC0EBC0B5EAA53A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.415840798999966, 48.463800200000051 ], [ -123.415242988999964, 48.463571895000044 ], [ -123.41349106899996, 48.46271164100007 ], [ -123.411479065999941, 48.46172359200007 ], [ -123.411454237, 48.461711392000083 ], [ -123.409847914999972, 48.460922488000044 ], [ -123.409348195999954, 48.460702897000097 ], [ -123.408619385999941, 48.460450590000036 ], [ -123.407945519999927, 48.460280802000092 ], [ -123.40791481699992, 48.460274417000115 ], [ -123.40473885599998, 48.459615269000068 ], [ -123.404930591, 48.459441787000088 ], [ -123.404956220999935, 48.459418604000049 ], [ -123.405306918999955, 48.459228800000083 ], [ -123.405877737999944, 48.459086775000088 ], [ -123.406142829999965, 48.459035240000063 ], [ -123.406318540999919, 48.459001084000128 ], [ -123.406605161999948, 48.458944980000076 ], [ -123.407182302999928, 48.458834658000058 ], [ -123.407812122999971, 48.458711236000042 ], [ -123.408368364999944, 48.458602159000094 ], [ -123.408612071999983, 48.458545455000092 ], [ -123.408696020999969, 48.458525917000074 ], [ -123.408827258999949, 48.458495338000091 ], [ -123.408970592999978, 48.458461953000032 ], [ -123.409144149000014, 48.458421541000064 ], [ -123.40922721, 48.458402206000116 ], [ -123.409907158999971, 48.458238690000051 ], [ -123.409921275999935, 48.458235301000066 ], [ -123.410009793999947, 48.458214001000044 ], [ -123.41048407699999, 48.458058694000037 ], [ -123.411047186999951, 48.457786617000139 ], [ -123.412319719999942, 48.457041323000048 ], [ -123.413453307999944, 48.456377402000015 ], [ -123.41405178399998, 48.456098892000028 ], [ -123.414927612999975, 48.456501703000043 ], [ -123.415493406999985, 48.456675315000034 ], [ -123.41567781, 48.456731906000066 ], [ -123.416517202999941, 48.455944624000075 ], [ -123.416724151, 48.455750521000027 ], [ -123.417046784000021, 48.455447900000109 ], [ -123.417325486999928, 48.455295890000031 ], [ -123.41809459299999, 48.454876391 ], [ -123.418890392999941, 48.454438059000069 ], [ -123.419955505999923, 48.453851395000086 ], [ -123.42061100399998, 48.453492205000089 ], [ -123.420877012999952, 48.453350199000099 ], [ -123.421368807999968, 48.453087690000089 ], [ -123.421760847999963, 48.452862725000067 ], [ -123.422496286999944, 48.452440708000026 ], [ -123.422629829999963, 48.452361810000077 ], [ -123.422631732999946, 48.452360687000095 ], [ -123.422742993999961, 48.452410507000074 ], [ -123.423043587999985, 48.452759403000073 ], [ -123.423072967999971, 48.453095138 ], [ -123.42307351099997, 48.453101299000075 ], [ -123.423224613999963, 48.453353297000056 ], [ -123.423260102999947, 48.45432460200005 ], [ -123.422953708999941, 48.454855899000037 ], [ -123.422228209999957, 48.455498202000108 ], [ -123.422096985999985, 48.456163299000082 ], [ -123.422043582999919, 48.456228223000053 ], [ -123.422037601999989, 48.456228245000062 ], [ -123.422012041999935, 48.45626656700005 ], [ -123.421963398999978, 48.456325704000072 ], [ -123.421170778999951, 48.456851195000084 ], [ -123.420724509999957, 48.456942293000047 ], [ -123.420701193999946, 48.457400902000089 ], [ -123.420272445999942, 48.458226279000044 ], [ -123.42018786899996, 48.458326326000105 ], [ -123.420188376999988, 48.458388111000026 ], [ -123.420185224999969, 48.458394182000113 ], [ -123.420124007999917, 48.458394405000021 ], [ -123.419971336999964, 48.458545961 ], [ -123.41989143899994, 48.458601261000112 ], [ -123.419673437999947, 48.458630860000071 ], [ -123.419548838999972, 48.458627206000102 ], [ -123.419100204, 48.458504699000088 ], [ -123.418815009999946, 48.458559106000074 ], [ -123.418862537999971, 48.458481361000061 ], [ -123.418732324999951, 48.45839947700005 ], [ -123.418621312999932, 48.458399881000055 ], [ -123.418564814999968, 48.458333087000028 ], [ -123.41855758299999, 48.457453399000102 ], [ -123.418369636999984, 48.457215461000018 ], [ -123.418457338999971, 48.457088061000078 ], [ -123.418554033999968, 48.457021836000123 ], [ -123.4185499969999, 48.456530602000079 ], [ -123.418610101999917, 48.456338502000058 ], [ -123.418547921999945, 48.456278336000018 ], [ -123.418547615999927, 48.456240991000101 ], [ -123.418509472000011, 48.456241128000059 ], [ -123.418146507999936, 48.45588991000006 ], [ -123.418138961999901, 48.45588861500007 ], [ -123.418137434999949, 48.455702691000027 ], [ -123.41808817799992, 48.455702870000067 ], [ -123.417827338, 48.455756462000075 ], [ -123.417732457999975, 48.455797763000113 ], [ -123.41773326699996, 48.455896387000045 ], [ -123.41755201899997, 48.455955402000065 ], [ -123.41752907099999, 48.455974795000031 ], [ -123.417516947999957, 48.455974839000085 ], [ -123.417400204999964, 48.455975262000052 ], [ -123.417328635999922, 48.45603391900012 ], [ -123.417329534, 48.456143421000021 ], [ -123.417241997999938, 48.456217395000117 ], [ -123.417230354999973, 48.45624577300002 ], [ -123.417127017999974, 48.456246148000083 ], [ -123.417123137999951, 48.456398761000102 ], [ -123.416928635999966, 48.456737162000124 ], [ -123.416930498999974, 48.456964732000067 ], [ -123.416837401999913, 48.457056882000124 ], [ -123.416744673999958, 48.45705721800006 ], [ -123.416738038999966, 48.45706876100013 ], [ -123.416194238999978, 48.457162332000095 ], [ -123.416072696999976, 48.457049212000051 ], [ -123.415904735999987, 48.457157388000041 ], [ -123.415800938999936, 48.457138461000149 ], [ -123.415654024999967, 48.457215953000031 ], [ -123.415370000999985, 48.457160191000114 ], [ -123.415122853999975, 48.457326260000116 ], [ -123.415114338999928, 48.45732746100002 ], [ -123.415033238999968, 48.457194061000088 ], [ -123.414812438999903, 48.457095262000081 ], [ -123.414624466999925, 48.45707283800003 ], [ -123.414435391999973, 48.456973704000063 ], [ -123.41403069799999, 48.456993597000071 ], [ -123.413570608999947, 48.457130295000098 ], [ -123.412995608999964, 48.457977696000107 ], [ -123.413288122999944, 48.458138008000091 ], [ -123.41328839099999, 48.458170953000071 ], [ -123.41335193799992, 48.458286962000031 ], [ -123.413385637999966, 48.458624461000049 ], [ -123.413292903999945, 48.458726942000077 ], [ -123.413294788000016, 48.458958922000079 ], [ -123.41308229399999, 48.458959685000075 ], [ -123.413044037999924, 48.459001961000091 ], [ -123.412897038000011, 48.45908856100003 ], [ -123.412890068999928, 48.459090412000066 ], [ -123.41289120499999, 48.459230266000098 ], [ -123.410862340999941, 48.459237527000013 ], [ -123.410862965999925, 48.459315046000029 ], [ -123.410864128999933, 48.459459173000063 ], [ -123.411118438999935, 48.459734761000036 ], [ -123.41117456099991, 48.459776201000061 ], [ -123.411272474, 48.45977585100011 ], [ -123.411273063999914, 48.459848934000021 ], [ -123.411277455999965, 48.459852177000137 ], [ -123.411281890999987, 48.459945988000072 ], [ -123.411702689000023, 48.460313490000061 ], [ -123.412904368999975, 48.460853475000135 ], [ -123.412904661999974, 48.46088948000007 ], [ -123.413252084999939, 48.461118234 ], [ -123.413312314, 48.461118017000025 ], [ -123.413312640999962, 48.461158104000077 ], [ -123.413659775999974, 48.461386664000038 ], [ -123.413710173999931, 48.461386482000059 ], [ -123.414128106999968, 48.461633628000094 ], [ -123.41412861, 48.461695346000049 ], [ -123.414475173999975, 48.461923519000074 ], [ -123.414617469999953, 48.461923007000031 ], [ -123.414943645999955, 48.462115884000063 ], [ -123.414944039999924, 48.46216424800005 ], [ -123.414972837999954, 48.462178461000065 ], [ -123.414995696999966, 48.462191538000042 ], [ -123.415071127999951, 48.462191266000055 ], [ -123.415113302999913, 48.462216205000118 ], [ -123.415350906999961, 48.462293962000061 ], [ -123.415351732999937, 48.462395209000128 ], [ -123.415430837999907, 48.462440462000117 ], [ -123.415471279999934, 48.462459717000129 ], [ -123.415594916999936, 48.462459271000071 ], [ -123.41576749599993, 48.462610700000049 ], [ -123.41583445899991, 48.462632643000084 ], [ -123.415931737999983, 48.462678961000108 ], [ -123.416006317999958, 48.462727679000075 ], [ -123.416123195999944, 48.462727257000061 ], [ -123.416166181999984, 48.462741342000072 ], [ -123.41616692799991, 48.462832594000062 ], [ -123.41641721799999, 48.462996088000082 ], [ -123.416574075999961, 48.462995520000021 ], [ -123.416574921999981, 48.463099103000054 ], [ -123.416638237999905, 48.46314046100008 ], [ -123.416788038999968, 48.463182261000064 ], [ -123.41692107599998, 48.463264159000055 ], [ -123.416987311999947, 48.46326391800006 ], [ -123.417288602999989, 48.463532193000034 ], [ -123.41754618799996, 48.463620499000044 ], [ -123.418383824000017, 48.463528746000122 ], [ -123.418592236000023, 48.463527989000035 ], [ -123.418682086, 48.463580609000125 ], [ -123.418644496999931, 48.463751511000041 ], [ -123.418834096999916, 48.463831194000115 ], [ -123.41998308899997, 48.463710195000097 ], [ -123.420252887999936, 48.463781388000022 ], [ -123.420550410999923, 48.463654589000058 ], [ -123.420969488999944, 48.463599104000068 ], [ -123.421328867999947, 48.463594144000105 ], [ -123.421300026999972, 48.463722572000137 ], [ -123.42115581799996, 48.464018152000058 ], [ -123.420757103999932, 48.464032896000056 ], [ -123.418660179999932, 48.464110432000012 ], [ -123.418436188999962, 48.46411869100011 ], [ -123.417374608000031, 48.464099086000097 ], [ -123.416668592999926, 48.46399619800016 ], [ -123.416220983999949, 48.463884298000096 ], [ -123.415840798999966, 48.463800200000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211480914", "BldgCostT": "130529429", "sL_LossRatio": "0.761457214751655", "sL_AssetLoss": "935895", "sL_BldgLoss": "712644", "sL_StrLoss": "398299", "sL_NStrLoss": "314345", "sL_ContLoss": "223251", "geom_point": "0101000020E61000005F57616D2BDA5EC0685E1FE7473B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40676978599997, 48.465344194000082 ], [ -123.406427190999949, 48.465335798000091 ], [ -123.405972110999969, 48.465441148000124 ], [ -123.405510885999931, 48.465547891000064 ], [ -123.405353395999924, 48.465562014000049 ], [ -123.405265417, 48.465546002000103 ], [ -123.405210386999968, 48.465536006000072 ], [ -123.403476011999942, 48.464782892000102 ], [ -123.40097611399996, 48.463711695000029 ], [ -123.401065056999983, 48.463261938000059 ], [ -123.401171704999982, 48.463173615000066 ], [ -123.401214055000011, 48.463128302000058 ], [ -123.401721621999954, 48.462585329000142 ], [ -123.402257811999917, 48.462011708000077 ], [ -123.404624605000024, 48.459729684000123 ], [ -123.404676970999958, 48.459677294000052 ], [ -123.40473885599998, 48.459615269000068 ], [ -123.40791481699992, 48.460274417000115 ], [ -123.407945519999927, 48.460280802000092 ], [ -123.408619385999941, 48.460450590000036 ], [ -123.409348195999954, 48.460702897000097 ], [ -123.409847914999972, 48.460922488000044 ], [ -123.411454237, 48.461711392000083 ], [ -123.411479065999941, 48.46172359200007 ], [ -123.41349106899996, 48.46271164100007 ], [ -123.415242988999964, 48.463571895000044 ], [ -123.415840798999966, 48.463800200000051 ], [ -123.416220983999949, 48.463884298000096 ], [ -123.416668592999926, 48.46399619800016 ], [ -123.417374608000031, 48.464099086000097 ], [ -123.418436188999962, 48.46411869100011 ], [ -123.418660179999932, 48.464110432000012 ], [ -123.420757103999932, 48.464032896000056 ], [ -123.42115581799996, 48.464018152000058 ], [ -123.421110212999963, 48.46411159400008 ], [ -123.42102126899999, 48.464453433000067 ], [ -123.420287995, 48.465767096000057 ], [ -123.419429094999956, 48.465619914000051 ], [ -123.418708098, 48.465568104000113 ], [ -123.41860437099993, 48.465567071000109 ], [ -123.417345011999913, 48.465554700000048 ], [ -123.416186389999964, 48.465407406000061 ], [ -123.415835221999913, 48.465333937000047 ], [ -123.415685450999945, 48.465284342000103 ], [ -123.415252519999939, 48.465051006000124 ], [ -123.414927187999965, 48.464876203000109 ], [ -123.414399884999952, 48.464592866000046 ], [ -123.414177864999914, 48.464479248000032 ], [ -123.414038085999934, 48.464407981000086 ], [ -123.413871795999938, 48.464322990000042 ], [ -123.412424389999899, 48.463414118000067 ], [ -123.411982707999982, 48.463607799000052 ], [ -123.411866605999947, 48.464075604000122 ], [ -123.411633703999925, 48.464432387000031 ], [ -123.41146590299995, 48.464316485000062 ], [ -123.411067283999955, 48.464123706000095 ], [ -123.410665202999965, 48.464068807000046 ], [ -123.410260599999901, 48.464060700000061 ], [ -123.410103579999927, 48.464017207000069 ], [ -123.40977360899997, 48.463707111000119 ], [ -123.40933402099995, 48.464631403000077 ], [ -123.408815400999956, 48.465717111000068 ], [ -123.408756395999944, 48.465832908000088 ], [ -123.40807423699998, 48.465648986000048 ], [ -123.407567997999948, 48.465512490000052 ], [ -123.406948344999961, 48.465381841000067 ], [ -123.40676978599997, 48.465344194000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107805918", "BldgCostT": "68776668", "sL_LossRatio": "0.8079134785349", "sL_AssetLoss": "487093", "sL_BldgLoss": "393529", "sL_StrLoss": "227370", "sL_NStrLoss": "166159", "sL_ContLoss": "93564", "geom_point": "0101000020E6100000E1A9682885D95EC05F9BAEA3013B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.395576507, 48.458055234000021 ], [ -123.395974682999963, 48.458047592000071 ], [ -123.396836486000012, 48.458089475000101 ], [ -123.397729888999933, 48.458219641000063 ], [ -123.400003450000014, 48.458672457000041 ], [ -123.404725968999969, 48.459612735000114 ], [ -123.40473885599998, 48.459615269000068 ], [ -123.404676970999958, 48.459677294000052 ], [ -123.404624605000024, 48.459729684000123 ], [ -123.402257811999917, 48.462011708000077 ], [ -123.401721621999954, 48.462585329000142 ], [ -123.401214055000011, 48.463128302000058 ], [ -123.401171704999982, 48.463173615000066 ], [ -123.401065056999983, 48.463261938000059 ], [ -123.401048154999955, 48.463275917000026 ], [ -123.40075721599996, 48.463516893000083 ], [ -123.400670379999966, 48.463574012000088 ], [ -123.400273841999962, 48.463834808000058 ], [ -123.400002005999966, 48.464013584000028 ], [ -123.39973002, 48.464192500000138 ], [ -123.399566823, 48.464299846000081 ], [ -123.399485197999965, 48.464353513000034 ], [ -123.399097492999914, 48.464608530000135 ], [ -123.39885266499999, 48.464769540000098 ], [ -123.398700498999958, 48.464869593000067 ], [ -123.398323052999942, 48.464709041000049 ], [ -123.397586908999969, 48.464395884000041 ], [ -123.397209715999921, 48.464182802000032 ], [ -123.396735507999949, 48.463795091000065 ], [ -123.395458791999914, 48.462337193000032 ], [ -123.394828620999988, 48.461498408000033 ], [ -123.394688613, 48.46121988700002 ], [ -123.394612907999914, 48.461075609000019 ], [ -123.394422207999966, 48.460370208000064 ], [ -123.394357994999979, 48.459821315000127 ], [ -123.394433282999955, 48.459385801000046 ], [ -123.394543003999928, 48.459063965000055 ], [ -123.39464908799999, 48.458752588000024 ], [ -123.394799085999935, 48.458309907000071 ], [ -123.394882614999972, 48.458068522000097 ], [ -123.395076074999949, 48.458064788000073 ], [ -123.39526564399992, 48.458061172000072 ], [ -123.395576507, 48.458055234000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159643591", "BldgCostT": "101036792", "sL_LossRatio": "0.745510018168586", "sL_AssetLoss": "275090.2", "sL_BldgLoss": "205082.5", "sL_StrLoss": "100687.8", "sL_NStrLoss": "104394.7", "sL_ContLoss": "70007.7", "geom_point": "0101000020E6100000E82ABD9985D95EC0D63ADCD4613A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.396836486000012, 48.458089475000101 ], [ -123.395974682999963, 48.458047592000071 ], [ -123.395576507, 48.458055234000021 ], [ -123.39526564399992, 48.458061172000072 ], [ -123.395076074999949, 48.458064788000073 ], [ -123.394882614999972, 48.458068522000097 ], [ -123.394562231999913, 48.458073422000048 ], [ -123.393461088999942, 48.458090397000056 ], [ -123.391707899999943, 48.458100624000053 ], [ -123.391478051999954, 48.458101959000075 ], [ -123.39109349899995, 48.458104185000103 ], [ -123.390441786999986, 48.458046690000096 ], [ -123.391097006999985, 48.457330608000056 ], [ -123.391687352999952, 48.45663997300003 ], [ -123.391815329999986, 48.456481241000077 ], [ -123.392307629999948, 48.45587071200007 ], [ -123.39254717599999, 48.455322014000068 ], [ -123.392609063999927, 48.455301011000138 ], [ -123.392764688999989, 48.454853929000151 ], [ -123.392789263999973, 48.454810902000069 ], [ -123.392988819999971, 48.454461808000055 ], [ -123.393125700999974, 48.454305525000095 ], [ -123.39320473699992, 48.454219099000113 ], [ -123.393908097999926, 48.453602475000032 ], [ -123.39512625699993, 48.45253448200004 ], [ -123.395873044000027, 48.451879705000096 ], [ -123.395916482, 48.451839568000025 ], [ -123.396329152999911, 48.451458014000153 ], [ -123.396714093999933, 48.451609995000091 ], [ -123.399199763999917, 48.452879441000071 ], [ -123.39999113199994, 48.453283310000124 ], [ -123.404379018999961, 48.455522399000102 ], [ -123.404111682999954, 48.455792691000035 ], [ -123.404116038, 48.455836684000118 ], [ -123.40401909399999, 48.456008156000095 ], [ -123.40403577299999, 48.456024949000067 ], [ -123.404704905999921, 48.456878299000053 ], [ -123.40472439199999, 48.456892509000056 ], [ -123.405250062, 48.456990910000094 ], [ -123.405279979999975, 48.456996499000084 ], [ -123.405307639999947, 48.457010625000059 ], [ -123.405311688999987, 48.457012696000085 ], [ -123.405328860999973, 48.457021470000015 ], [ -123.405889996, 48.457308273000095 ], [ -123.406842907999987, 48.457795227000055 ], [ -123.406848337999946, 48.45779802400007 ], [ -123.406909812999956, 48.457829425000057 ], [ -123.407097017999959, 48.457925104 ], [ -123.407840423999914, 48.458157224000082 ], [ -123.408010895999965, 48.458210448000067 ], [ -123.4081513499999, 48.45825429700006 ], [ -123.408235289999951, 48.458280501000083 ], [ -123.408246112999961, 48.458283893000036 ], [ -123.408400561999954, 48.458332124000087 ], [ -123.408497129999972, 48.458362267000076 ], [ -123.408510315999962, 48.458366354000063 ], [ -123.408647794999951, 48.458409294000077 ], [ -123.408827258999949, 48.458495338000091 ], [ -123.408696020999969, 48.458525917000074 ], [ -123.408612071999983, 48.458545455000092 ], [ -123.408368364999944, 48.458602159000094 ], [ -123.407812122999971, 48.458711236000042 ], [ -123.407182302999928, 48.458834658000058 ], [ -123.406605161999948, 48.458944980000076 ], [ -123.406318540999919, 48.459001084000128 ], [ -123.406142829999965, 48.459035240000063 ], [ -123.405877737999944, 48.459086775000088 ], [ -123.405306918999955, 48.459228800000083 ], [ -123.404956220999935, 48.459418604000049 ], [ -123.404930591, 48.459441787000088 ], [ -123.40473885599998, 48.459615269000068 ], [ -123.404725968999969, 48.459612735000114 ], [ -123.400003450000014, 48.458672457000041 ], [ -123.397729888999933, 48.458219641000063 ], [ -123.396836486000012, 48.458089475000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94316500", "BldgCostT": "62155000", "sL_LossRatio": "0.930621354709253", "sL_AssetLoss": "126035.9", "sL_BldgLoss": "117291.7", "sL_StrLoss": "94281.2", "sL_NStrLoss": "23010.5", "sL_ContLoss": "8744.2", "geom_point": "0101000020E610000041735B2A08D95EC08FFAD278F53A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.390404709999956, 48.458091267000022 ], [ -123.390441786999986, 48.458046690000096 ], [ -123.39109349899995, 48.458104185000103 ], [ -123.391478051999954, 48.458101959000075 ], [ -123.391707899999943, 48.458100624000053 ], [ -123.393461088999942, 48.458090397000056 ], [ -123.394562231999913, 48.458073422000048 ], [ -123.394882614999972, 48.458068522000097 ], [ -123.394799085999935, 48.458309907000071 ], [ -123.39464908799999, 48.458752588000024 ], [ -123.394543003999928, 48.459063965000055 ], [ -123.394433282999955, 48.459385801000046 ], [ -123.394357994999979, 48.459821315000127 ], [ -123.394422207999966, 48.460370208000064 ], [ -123.394612907999914, 48.461075609000019 ], [ -123.394688613, 48.46121988700002 ], [ -123.394007994, 48.461320395000051 ], [ -123.394435607999981, 48.462086601000081 ], [ -123.393560395999941, 48.462213909000056 ], [ -123.392240998999952, 48.462413107000053 ], [ -123.391011460999906, 48.462561755000088 ], [ -123.390921012999982, 48.46257270800006 ], [ -123.389123304999984, 48.462850388000078 ], [ -123.386952188999928, 48.463164801000069 ], [ -123.386803716999907, 48.463164694000099 ], [ -123.386638789999935, 48.463118301000073 ], [ -123.386206005999952, 48.462936290000052 ], [ -123.387140398999918, 48.461861886000065 ], [ -123.387881504999896, 48.461009908000094 ], [ -123.388609694999957, 48.460171189000022 ], [ -123.389226893999975, 48.45946050100013 ], [ -123.389792395999947, 48.458804415000081 ], [ -123.390070665999986, 48.458481215000063 ], [ -123.390356493999974, 48.458149206000066 ], [ -123.390404709999956, 48.458091267000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67055894", "BldgCostT": "45361523", "sL_LossRatio": "0.881685837612492", "sL_AssetLoss": "210127", "sL_BldgLoss": "185266", "sL_StrLoss": "127725", "sL_NStrLoss": "57541", "sL_ContLoss": "24861", "geom_point": "0101000020E6100000EF7772978EDB5EC02F7CF103DF3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.422266609999923, 48.472977842000034 ], [ -123.422391119999958, 48.472330356000022 ], [ -123.42245879699999, 48.471978319000101 ], [ -123.42268788899996, 48.470786819000118 ], [ -123.422697785999958, 48.470682845000084 ], [ -123.422726096999938, 48.470384688000145 ], [ -123.422542715999967, 48.46993289200001 ], [ -123.42294232099999, 48.469341205 ], [ -123.423264647999986, 48.467937832000132 ], [ -123.423547334999952, 48.467780594000082 ], [ -123.423784740999935, 48.468215212000089 ], [ -123.423956207999979, 48.468529013000101 ], [ -123.424480788999958, 48.469559007000079 ], [ -123.424613333000011, 48.469792446000071 ], [ -123.426840496999972, 48.468758109000049 ], [ -123.427859411000014, 48.470725338000086 ], [ -123.430453920999923, 48.469364233000093 ], [ -123.43165667, 48.468739559000035 ], [ -123.433675572, 48.467679236000073 ], [ -123.435623442999969, 48.466397913000058 ], [ -123.437186782999945, 48.466122009000124 ], [ -123.437801295, 48.466463535000116 ], [ -123.441553270999918, 48.468100592000042 ], [ -123.443350246999984, 48.468794027000065 ], [ -123.44323185699993, 48.468919138000061 ], [ -123.442321781999951, 48.469881044000068 ], [ -123.441837056999958, 48.470447989000093 ], [ -123.441468257999944, 48.470879365000052 ], [ -123.440901740999934, 48.471222796000042 ], [ -123.439599097999988, 48.472012478000075 ], [ -123.439419781999973, 48.472121176000023 ], [ -123.439188967999939, 48.472235240000074 ], [ -123.438494399999968, 48.472578542000072 ], [ -123.438266597, 48.472691139000105 ], [ -123.438014889999977, 48.472874424000025 ], [ -123.437547058999954, 48.473581792000076 ], [ -123.437359347999973, 48.473629472000049 ], [ -123.436703171999966, 48.474075299000084 ], [ -123.43604638699999, 48.475028793000014 ], [ -123.435929287999926, 48.475145897000097 ], [ -123.435755804999985, 48.475231895000036 ], [ -123.435983584999931, 48.475589103000104 ], [ -123.435997097, 48.475762489000076 ], [ -123.43595884599992, 48.476029656 ], [ -123.435870992999966, 48.476643106000019 ], [ -123.435731497999981, 48.476973408000084 ], [ -123.435499417999935, 48.477292402000032 ], [ -123.434980511, 48.477819084000025 ], [ -123.43480320899999, 48.478049188000099 ], [ -123.434699184999928, 48.478273900000069 ], [ -123.434702913999971, 48.478644105000036 ], [ -123.434705495999978, 48.478903481000067 ], [ -123.434606625999933, 48.479427350000087 ], [ -123.434434393999965, 48.480339704000095 ], [ -123.43441981699999, 48.480607096000035 ], [ -123.434451295999978, 48.480774713000073 ], [ -123.43459500199999, 48.481012589000017 ], [ -123.434830110999926, 48.481259987000065 ], [ -123.435131077999984, 48.481438595000057 ], [ -123.43527313, 48.481483652000044 ], [ -123.435974394999946, 48.481706107000058 ], [ -123.43613949899995, 48.481788235000096 ], [ -123.436195310999935, 48.481815993000048 ], [ -123.436350578999949, 48.481991097000098 ], [ -123.436499341999934, 48.482406550000071 ], [ -123.436890194999961, 48.483498203000124 ], [ -123.43688989199994, 48.483520824000067 ], [ -123.436886682999926, 48.483761503000075 ], [ -123.436704579999969, 48.484081693000057 ], [ -123.436322294999954, 48.484330773000053 ], [ -123.436178625999958, 48.484424342000146 ], [ -123.435229894999964, 48.485042413000116 ], [ -123.434868184, 48.48518510600011 ], [ -123.434432196999964, 48.485253904000054 ], [ -123.434312334999944, 48.485246227000111 ], [ -123.433115585999928, 48.485169700000064 ], [ -123.432818392999977, 48.485140707000085 ], [ -123.43219136899998, 48.485079539000054 ], [ -123.430911643999977, 48.484954680000058 ], [ -123.429698396999925, 48.484836292000189 ], [ -123.428518383999943, 48.484798598000047 ], [ -123.428206362999944, 48.484769097000047 ], [ -123.427234900999906, 48.484677294000072 ], [ -123.427225697999972, 48.484033938000081 ], [ -123.427224493, 48.483951184000134 ], [ -123.427342887999956, 48.483513104000025 ], [ -123.427511204999945, 48.483073909000034 ], [ -123.427516083999961, 48.483061103000026 ], [ -123.42767546899999, 48.482333514000047 ], [ -123.427795395999937, 48.481785946000038 ], [ -123.427893685999948, 48.481337198000119 ], [ -123.428009308999947, 48.480206507000076 ], [ -123.425893614999936, 48.480026048000092 ], [ -123.42463687899999, 48.479918846000075 ], [ -123.423608044999966, 48.47983105 ], [ -123.423471473999967, 48.479819406000047 ], [ -123.423466133999966, 48.479818936000072 ], [ -123.422393307999982, 48.479727397000026 ], [ -123.421031088999953, 48.479614989000041 ], [ -123.421206289999972, 48.478658663000026 ], [ -123.421293530999947, 48.47818238000005 ], [ -123.421592175999976, 48.476551864000037 ], [ -123.421620154999985, 48.476398990000057 ], [ -123.421694216000034, 48.475994712000045 ], [ -123.42184877899993, 48.475150600000049 ], [ -123.421887532999932, 48.474949182000046 ], [ -123.422005005999921, 48.474338281000016 ], [ -123.422095271999964, 48.473868867000128 ], [ -123.422148925999977, 48.473589927000027 ], [ -123.422207885999953, 48.473283303000052 ], [ -123.422266609999923, 48.472977842000034 ] ], [ [ -123.436539372999974, 48.472367829000049 ], [ -123.436537057999885, 48.472097944000076 ], [ -123.436131184, 48.472099483000044 ], [ -123.43612424399997, 48.471289826000046 ], [ -123.436530114, 48.471288288000025 ], [ -123.436523167999923, 48.470478631000077 ], [ -123.437334889999988, 48.470475550000025 ], [ -123.437325614000017, 48.469396007000107 ], [ -123.439760728999929, 48.46938672800011 ], [ -123.439767723999964, 48.470196385000108 ], [ -123.439361866999889, 48.470197935000051 ], [ -123.439364042999969, 48.470449975000029 ], [ -123.44042398, 48.470475581000116 ], [ -123.440482537999941, 48.469394656000119 ], [ -123.441384449999973, 48.469416436000131 ], [ -123.441381797999924, 48.46911062900007 ], [ -123.440164246999984, 48.469115292000012 ], [ -123.440162779000019, 48.468945395000077 ], [ -123.439555401999897, 48.468930722000081 ], [ -123.439589157999947, 48.468307806000027 ], [ -123.439345558999932, 48.468308736000019 ], [ -123.439344880999968, 48.468230355000081 ], [ -123.438100791999943, 48.468200285000094 ], [ -123.438150267999944, 48.467287763000051 ], [ -123.437713257999945, 48.467277196000047 ], [ -123.437715219999987, 48.467505265000078 ], [ -123.437309379999974, 48.467506807000085 ], [ -123.437311699999896, 48.467776694000037 ], [ -123.436905860999957, 48.467778235000047 ], [ -123.43690817599996, 48.468048121000031 ], [ -123.436502334999986, 48.468049660000119 ], [ -123.436504649999961, 48.468319546000025 ], [ -123.434881273999949, 48.468325692000043 ], [ -123.434890497999959, 48.469405234000078 ], [ -123.435296349999973, 48.4694037 ], [ -123.435303276999932, 48.470213357000027 ], [ -123.434897416999931, 48.470214892000072 ], [ -123.434899722999916, 48.470484777000067 ], [ -123.434493861999968, 48.470486310000055 ], [ -123.434496165999946, 48.470756195000043 ], [ -123.434090300999955, 48.47075772800013 ], [ -123.434092603999929, 48.471027612000029 ], [ -123.432917822999968, 48.471032037000057 ], [ -123.432903154999934, 48.471301987000061 ], [ -123.434094906, 48.471297498000077 ], [ -123.434104115, 48.472377040000055 ], [ -123.43288648399998, 48.472381627000097 ], [ -123.432880800999925, 48.471713411000103 ], [ -123.432828746999945, 48.472671411000078 ], [ -123.433231133999939, 48.472681158000093 ], [ -123.433210613999933, 48.473058837000075 ], [ -123.434652668999931, 48.473093752000118 ], [ -123.434658669999976, 48.472983225000121 ], [ -123.4349211299999, 48.472989578000039 ], [ -123.434915866999944, 48.472373977000132 ], [ -123.436539372999974, 48.472367829000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139224916", "BldgCostT": "93121666", "sL_LossRatio": "0.790881101044277", "sL_AssetLoss": "115577.55", "sL_BldgLoss": "91408.1", "sL_StrLoss": "64021", "sL_NStrLoss": "27387.1", "sL_ContLoss": "24169.45", "geom_point": "0101000020E61000005EB90F278DDA5EC022DF5B478B3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.417251637999954, 48.498020028000013 ], [ -123.41726203499999, 48.497829959000043 ], [ -123.415728678999983, 48.497792601000086 ], [ -123.415692479999947, 48.497783283000089 ], [ -123.415720291999932, 48.497275121000044 ], [ -123.415636593, 48.497275423000076 ], [ -123.415632180999964, 48.49673565300008 ], [ -123.41522610799997, 48.496737118000048 ], [ -123.415221700999965, 48.496197349000049 ], [ -123.414815632999961, 48.496198813000092 ], [ -123.414813431, 48.495928927000108 ], [ -123.41444799599995, 48.495930244000078 ], [ -123.414403207999925, 48.496748189000151 ], [ -123.41138583, 48.496674572000131 ], [ -123.411194640999952, 48.496625347000077 ], [ -123.406075637999962, 48.495243677000069 ], [ -123.406094490999948, 48.495219843000065 ], [ -123.406532319999897, 48.494667014000115 ], [ -123.407804609, 48.492581212000097 ], [ -123.408654514999952, 48.491371180000066 ], [ -123.403051386999934, 48.490125497000037 ], [ -123.402592177999978, 48.490023495000059 ], [ -123.401317598999967, 48.489740401000091 ], [ -123.40165568099999, 48.488848102000063 ], [ -123.40166052299999, 48.488835401000124 ], [ -123.40192599, 48.488357687000111 ], [ -123.40242532299996, 48.487668349000074 ], [ -123.402643338999951, 48.48736738700007 ], [ -123.403045897999931, 48.486811602000067 ], [ -123.403259498999887, 48.486586882000068 ], [ -123.403459009999921, 48.486422298000107 ], [ -123.405081810999917, 48.485459310000039 ], [ -123.40518691299998, 48.485389711000053 ], [ -123.405547795999951, 48.485475527000034 ], [ -123.40694331499995, 48.485807390000026 ], [ -123.407790240999944, 48.486008782000091 ], [ -123.408337914999933, 48.486138988000029 ], [ -123.40884338799999, 48.486259211000061 ], [ -123.408422204999951, 48.487042409000068 ], [ -123.407873997999957, 48.486916734000111 ], [ -123.40782320699999, 48.486905087000046 ], [ -123.407497507999935, 48.486906998000038 ], [ -123.407368609999935, 48.486989499000117 ], [ -123.407233799999943, 48.487157595000099 ], [ -123.407198592999961, 48.487257686000085 ], [ -123.40581341099994, 48.489862338000137 ], [ -123.406627995999912, 48.490020998000013 ], [ -123.408597325999963, 48.490406159000038 ], [ -123.412382281999953, 48.484002897000067 ], [ -123.412598488999933, 48.483458192000072 ], [ -123.413319803999926, 48.482177306000096 ], [ -123.413840317, 48.481231496000049 ], [ -123.415272835999957, 48.481410244000074 ], [ -123.416311823999962, 48.481489616000033 ], [ -123.41738572, 48.481535572000027 ], [ -123.417485415999948, 48.480573761000059 ], [ -123.420727339999956, 48.480411324000038 ], [ -123.420829985999944, 48.48037919800003 ], [ -123.420904020999956, 48.480197884000056 ], [ -123.420927375999938, 48.480140703000117 ], [ -123.420964088999966, 48.480050694000049 ], [ -123.421031088999953, 48.479614989000041 ], [ -123.422393307999982, 48.479727397000026 ], [ -123.423466133999966, 48.479818936000072 ], [ -123.423471473999967, 48.479819406000047 ], [ -123.423608044999966, 48.47983105 ], [ -123.42463687899999, 48.479918846000075 ], [ -123.425893614999936, 48.480026048000092 ], [ -123.428009308999947, 48.480206507000076 ], [ -123.427893685999948, 48.481337198000119 ], [ -123.427795395999937, 48.481785946000038 ], [ -123.42767546899999, 48.482333514000047 ], [ -123.427516083999961, 48.483061103000026 ], [ -123.427511204999945, 48.483073909000034 ], [ -123.427342887999956, 48.483513104000025 ], [ -123.427224493, 48.483951184000134 ], [ -123.427225697999972, 48.484033938000081 ], [ -123.427234900999906, 48.484677294000072 ], [ -123.425309227999946, 48.484524632000024 ], [ -123.423710802999949, 48.48439789500005 ], [ -123.420161811999918, 48.484028848000044 ], [ -123.41831383799996, 48.48396414899999 ], [ -123.418267652999958, 48.484801679000036 ], [ -123.418108210999932, 48.485642109000068 ], [ -123.41793204399994, 48.486590925000087 ], [ -123.417314514999973, 48.486540995000077 ], [ -123.416594475, 48.486482805000051 ], [ -123.416163064999949, 48.486447930000104 ], [ -123.415536581999973, 48.486397275000094 ], [ -123.4155206699999, 48.486619594000068 ], [ -123.415513685999926, 48.486716832000106 ], [ -123.415630542999978, 48.487100205000111 ], [ -123.415946583, 48.487620070000041 ], [ -123.416216012999982, 48.487930515000102 ], [ -123.417041816000022, 48.488516911000062 ], [ -123.417309076999956, 48.488692943000018 ], [ -123.418304149999969, 48.489348369000119 ], [ -123.418785653999933, 48.489807734000102 ], [ -123.418978289999956, 48.489991487000026 ], [ -123.419502770999969, 48.490826591000072 ], [ -123.419513566999939, 48.490875569000096 ], [ -123.419591697999962, 48.491230555000129 ], [ -123.419673796999916, 48.491603504000111 ], [ -123.419647309000013, 48.492088001000042 ], [ -123.419646162999967, 48.492105500000044 ], [ -123.419620251999987, 48.492501385000033 ], [ -123.419620069999965, 48.492512908000037 ], [ -123.419541601000034, 48.493702087000088 ], [ -123.419533207999947, 48.494251106000064 ], [ -123.419486915000022, 48.495023602000103 ], [ -123.419484912999948, 48.495056162000047 ], [ -123.419430920999957, 48.495938001000127 ], [ -123.419420906999946, 48.496101444000018 ], [ -123.419396788999933, 48.496494909000113 ], [ -123.419367634999929, 48.496971245000047 ], [ -123.419289920999958, 48.498240642000034 ], [ -123.419276512999957, 48.498459453000102 ], [ -123.41926069699997, 48.498717705000026 ], [ -123.418174360999942, 48.498422122000129 ], [ -123.417143271999919, 48.498156728000019 ], [ -123.417150884999941, 48.498017574000102 ], [ -123.417251637999954, 48.498020028000013 ] ], [ [ -123.415868025999913, 48.494575656000087 ], [ -123.415887413999926, 48.494221356 ], [ -123.415611574999943, 48.494214634000059 ], [ -123.415614532999939, 48.494576572000057 ], [ -123.415868025999913, 48.494575656000087 ] ], [ [ -123.413530068999989, 48.492424934000077 ], [ -123.413569770999942, 48.49170006300006 ], [ -123.411124060999953, 48.491640374000049 ], [ -123.411128289999937, 48.492163644000087 ], [ -123.41275243399997, 48.492157832 ], [ -123.412754622999955, 48.492427717000076 ], [ -123.413530068999989, 48.492424934000077 ] ], [ [ -123.424439045999961, 48.481589485 ], [ -123.424497921999958, 48.48050969300008 ], [ -123.424074304999962, 48.480511254000128 ], [ -123.424049091, 48.480973632 ], [ -123.424274852999972, 48.480979118000093 ], [ -123.424241529999932, 48.481590213000032 ], [ -123.424439045999961, 48.481589485 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175703167", "BldgCostT": "110661667", "sL_LossRatio": "0.750283860861014", "sL_AssetLoss": "883091.1", "sL_BldgLoss": "662569", "sL_StrLoss": "365905", "sL_NStrLoss": "296664", "sL_ContLoss": "220522.1", "geom_point": "0101000020E61000008937019F82DA5EC00B3CA5204B3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.41207675599999, 48.475648241000094 ], [ -123.412864246999931, 48.474956907000028 ], [ -123.413091897999934, 48.475115754000058 ], [ -123.413794207999899, 48.475288904000116 ], [ -123.413941002999962, 48.475321336000057 ], [ -123.414647585999916, 48.475483935000049 ], [ -123.415212160999914, 48.475613835000082 ], [ -123.414807695999926, 48.476463310000042 ], [ -123.414401806999962, 48.477217202000062 ], [ -123.415721897999987, 48.477528906000067 ], [ -123.41498355, 48.479100634000062 ], [ -123.415099688999987, 48.479111650000021 ], [ -123.41690244099999, 48.479282691000066 ], [ -123.418357687999958, 48.479396604000037 ], [ -123.41968379799998, 48.479502794000126 ], [ -123.421031088999953, 48.479614989000041 ], [ -123.420964088999966, 48.480050694000049 ], [ -123.420927375999938, 48.480140703000117 ], [ -123.420904020999956, 48.480197884000056 ], [ -123.420829985999944, 48.48037919800003 ], [ -123.420727339999956, 48.480411324000038 ], [ -123.417485415999948, 48.480573761000059 ], [ -123.41738572, 48.481535572000027 ], [ -123.416311823999962, 48.481489616000033 ], [ -123.415272835999957, 48.481410244000074 ], [ -123.413840317, 48.481231496000049 ], [ -123.41390480199999, 48.481114013000088 ], [ -123.412467151999948, 48.480776866000099 ], [ -123.409781346999978, 48.480118832000059 ], [ -123.410257037999926, 48.479203475000112 ], [ -123.410319282999978, 48.479078757000082 ], [ -123.410472259999935, 48.478801176000026 ], [ -123.410685512000015, 48.4784096120001 ], [ -123.410742618999947, 48.478316682000084 ], [ -123.410890173999945, 48.478076469000015 ], [ -123.410959989999938, 48.477960951000107 ], [ -123.411076603999973, 48.477065685000056 ], [ -123.41132017399994, 48.476589192000077 ], [ -123.41207675599999, 48.475648241000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127788499", "BldgCostT": "84709999", "sL_LossRatio": "0.837040107556705", "sL_AssetLoss": "430135.9", "sL_BldgLoss": "360041", "sL_StrLoss": "250587", "sL_NStrLoss": "109454", "sL_ContLoss": "70094.9", "geom_point": "0101000020E610000080BF14F534DA5EC03284A5B20F3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.407233799999943, 48.487157595000099 ], [ -123.407368609999935, 48.486989499000117 ], [ -123.407497507999935, 48.486906998000038 ], [ -123.40782320699999, 48.486905087000046 ], [ -123.407873997999957, 48.486916734000111 ], [ -123.408422204999951, 48.487042409000068 ], [ -123.40884338799999, 48.486259211000061 ], [ -123.408337914999933, 48.486138988000029 ], [ -123.407790240999944, 48.486008782000091 ], [ -123.40694331499995, 48.485807390000026 ], [ -123.405547795999951, 48.485475527000034 ], [ -123.40518691299998, 48.485389711000053 ], [ -123.405372010999912, 48.485267091000047 ], [ -123.406052896999981, 48.484676 ], [ -123.406766108999989, 48.48398738900007 ], [ -123.406861185999972, 48.483865330000086 ], [ -123.407006109999912, 48.483679284000068 ], [ -123.407500111, 48.483045091000044 ], [ -123.407749860999985, 48.482826851000027 ], [ -123.408082557999961, 48.482536101000036 ], [ -123.408852183999926, 48.481863491000091 ], [ -123.409285088, 48.481039977000108 ], [ -123.409781346999978, 48.480118832000059 ], [ -123.412467151999948, 48.480776866000099 ], [ -123.41390480199999, 48.481114013000088 ], [ -123.413840317, 48.481231496000049 ], [ -123.413319803999926, 48.482177306000096 ], [ -123.412598488999933, 48.483458192000072 ], [ -123.412382281999953, 48.484002897000067 ], [ -123.408597325999963, 48.490406159000038 ], [ -123.406627995999912, 48.490020998000013 ], [ -123.40581341099994, 48.489862338000137 ], [ -123.407198592999961, 48.487257686000085 ], [ -123.407233799999943, 48.487157595000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10379667", "BldgCostT": "6686667", "sL_LossRatio": "0.884353352287231", "sL_AssetLoss": "22721.8", "sL_BldgLoss": "20094.1", "sL_StrLoss": "13797", "sL_NStrLoss": "6297.1", "sL_ContLoss": "2627.7", "geom_point": "0101000020E6100000423656836CD95EC045B7C96E87444840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.402066747999953, 48.536358932000034 ], [ -123.401458109, 48.536341596000092 ], [ -123.400006276999932, 48.5363354690001 ], [ -123.398077894, 48.536327299000092 ], [ -123.39735101399998, 48.536324645000015 ], [ -123.397012393999944, 48.536323412000073 ], [ -123.395847617999948, 48.536319126000087 ], [ -123.391719124999938, 48.536303904000064 ], [ -123.390215384999976, 48.536298303000066 ], [ -123.390124111999967, 48.535775240000042 ], [ -123.390053121999955, 48.535368394000045 ], [ -123.390007712999989, 48.535230529000096 ], [ -123.389966301999948, 48.535104696000062 ], [ -123.389802513999911, 48.534887903000055 ], [ -123.389708120999956, 48.534803163000035 ], [ -123.388838121999967, 48.53402196400009 ], [ -123.38857232, 48.533783316000083 ], [ -123.388541905999929, 48.533755986000074 ], [ -123.388518700999924, 48.53373513400004 ], [ -123.388482005999919, 48.533702185000067 ], [ -123.38847218699999, 48.53366040500002 ], [ -123.388257702999951, 48.532745507000094 ], [ -123.388081173999964, 48.531672890000102 ], [ -123.388263214999981, 48.531677370000089 ], [ -123.388252901999962, 48.531754604000092 ], [ -123.388434890999946, 48.532670406000072 ], [ -123.388710699999962, 48.533318395000038 ], [ -123.389435611999929, 48.533963602000043 ], [ -123.390238000999929, 48.534446391000124 ], [ -123.392179907999918, 48.535195498000057 ], [ -123.392776507999912, 48.535256800000091 ], [ -123.392885584999974, 48.535165593000094 ], [ -123.392829592999973, 48.534977588000054 ], [ -123.39290990899994, 48.534869389000107 ], [ -123.393585580999925, 48.53467709600006 ], [ -123.394114796999972, 48.53476541200007 ], [ -123.394575195999934, 48.534709888000073 ], [ -123.394857811999941, 48.534583095000087 ], [ -123.395206994999953, 48.534249912000043 ], [ -123.395734796999946, 48.534229886000098 ], [ -123.396251618999926, 48.534064870000108 ], [ -123.396650306999902, 48.5340746500001 ], [ -123.396653988999972, 48.534007916000064 ], [ -123.396885096999981, 48.534046192000098 ], [ -123.397537695999986, 48.534295409000023 ], [ -123.397740610999975, 48.534268398000066 ], [ -123.397942901999897, 48.534069005000056 ], [ -123.398131516999982, 48.534058994000119 ], [ -123.399461791999983, 48.534378016000097 ], [ -123.400830017999965, 48.534473494000018 ], [ -123.4017387199999, 48.534460603000063 ], [ -123.402823079999933, 48.534681400000075 ], [ -123.403231802, 48.534869404000084 ], [ -123.403505086999928, 48.535138597000092 ], [ -123.404471898999986, 48.535701093000135 ], [ -123.404689989999952, 48.535943200000119 ], [ -123.406296604999909, 48.536954384000126 ], [ -123.406450250999953, 48.537086533000078 ], [ -123.406416150999974, 48.537706793000048 ], [ -123.406342786, 48.537574592000119 ], [ -123.405674704999939, 48.537009105000109 ], [ -123.405120489999916, 48.536683601000057 ], [ -123.40462687599998, 48.536529356000074 ], [ -123.404466384999964, 48.536479206000074 ], [ -123.404326293999986, 48.536465585000016 ], [ -123.403710390999962, 48.536405708000068 ], [ -123.403284060999979, 48.536393577000091 ], [ -123.402066747999953, 48.536358932000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.97428139183056", "sL_AssetLoss": "1322", "sL_BldgLoss": "1288", "sL_StrLoss": "1140", "sL_NStrLoss": "148", "sL_ContLoss": "34", "geom_point": "0101000020E61000007B153A2BF9D85EC0E1C1E4803C424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.389806998, 48.518147507000023 ], [ -123.389802855999918, 48.517607737000091 ], [ -123.389396615999942, 48.517609112000066 ], [ -123.389390409999947, 48.516799458000065 ], [ -123.390609112, 48.516795329000054 ], [ -123.390613260999928, 48.517335099000057 ], [ -123.391019498999967, 48.517333720000074 ], [ -123.391025729999953, 48.51814337400004 ], [ -123.389806998, 48.518147507000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194833500", "BldgCostT": "124530000", "sL_LossRatio": "0.932764276695229", "sL_AssetLoss": "260876.2", "sL_BldgLoss": "243336", "sL_StrLoss": "193621.8", "sL_NStrLoss": "49714.2", "sL_ContLoss": "17540.2", "geom_point": "0101000020E61000007F1B6A2DEFD95EC03FB7E932A9424840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.40925884399995, 48.53985492000006 ], [ -123.408990500999892, 48.539846405000048 ], [ -123.408831731999939, 48.539869764000052 ], [ -123.408622278999971, 48.539900598000031 ], [ -123.408486046999954, 48.539896264000092 ], [ -123.40832461499997, 48.539891126000057 ], [ -123.408257805999952, 48.539889000000137 ], [ -123.407675094999917, 48.539737684000052 ], [ -123.407373137999969, 48.539572398000061 ], [ -123.407447816999962, 48.539574223000081 ], [ -123.407446482, 48.539407854000032 ], [ -123.408566943999958, 48.53940388300007 ], [ -123.408620893999952, 48.538421792000051 ], [ -123.411096811999954, 48.538482211000016 ], [ -123.411093276999935, 48.538045434000011 ], [ -123.410686872999946, 48.538046886000124 ], [ -123.410680324999973, 48.537237236000074 ], [ -123.411086719999929, 48.537235785000092 ], [ -123.411084534999972, 48.536965901000059 ], [ -123.411362797999942, 48.536964909000041 ], [ -123.411471871999979, 48.534977050000045 ], [ -123.41244928099999, 48.535000885000024 ], [ -123.412451271999899, 48.534964602000052 ], [ -123.412291690999965, 48.534960711000089 ], [ -123.412309572999959, 48.534634686000089 ], [ -123.410210751999969, 48.534583491000028 ], [ -123.410174412999964, 48.534061908000112 ], [ -123.409674991999964, 48.532679001000083 ], [ -123.409444711999981, 48.532491001000032 ], [ -123.409436118999935, 48.531635007000062 ], [ -123.408995590999965, 48.530756291000046 ], [ -123.408626378999955, 48.530216496000051 ], [ -123.408011094999949, 48.529589791000092 ], [ -123.407520596, 48.529213890000037 ], [ -123.406474396999926, 48.528632794000046 ], [ -123.405301512999955, 48.527682797000089 ], [ -123.404334913999932, 48.527245600000107 ], [ -123.402844569999985, 48.526883366000106 ], [ -123.402880055999972, 48.52623864499999 ], [ -123.401385143999931, 48.526202046000094 ], [ -123.401088509999965, 48.525854098000096 ], [ -123.400906721999917, 48.525089299000115 ], [ -123.400537510999968, 48.524667796000109 ], [ -123.400021392, 48.524516807000104 ], [ -123.399880286, 48.523995491000015 ], [ -123.399051588999953, 48.523602490000023 ], [ -123.398645086999949, 48.523595393000079 ], [ -123.398006398999939, 48.523156704000051 ], [ -123.397906387999939, 48.522517191000091 ], [ -123.397952001999911, 48.521573006000082 ], [ -123.397259503, 48.521234008000107 ], [ -123.396871089999976, 48.521234953000011 ], [ -123.396966269999936, 48.519509383000035 ], [ -123.397122904999975, 48.519408202000115 ], [ -123.397284386999956, 48.51916459400006 ], [ -123.397402306999979, 48.518767226000115 ], [ -123.398296377999955, 48.518789154000103 ], [ -123.398315003, 48.518451276000114 ], [ -123.399947970999932, 48.518491310000051 ], [ -123.399977665, 48.51795231600007 ], [ -123.401220192999972, 48.517982761000098 ], [ -123.401279592999913, 48.516903986000095 ], [ -123.401144150999968, 48.516900668000041 ], [ -123.401230857999934, 48.515325958000069 ], [ -123.401571313999938, 48.5150017 ], [ -123.401569912999904, 48.514867797000107 ], [ -123.401352089999961, 48.514732506000023 ], [ -123.400743012999939, 48.514657247000038 ], [ -123.400751652999958, 48.514500363000096 ], [ -123.400686376999943, 48.51449876300007 ], [ -123.400882603999932, 48.510935310000015 ], [ -123.398687589999952, 48.510881502000117 ], [ -123.398689303999944, 48.511099893000051 ], [ -123.398283115999931, 48.511101299000103 ], [ -123.398285230999988, 48.511371184000026 ], [ -123.395848092999927, 48.51137959000004 ], [ -123.395835480999892, 48.509760280000123 ], [ -123.396241656999962, 48.509758883000103 ], [ -123.396238836999956, 48.509397171000053 ], [ -123.393953171999968, 48.509341038000031 ], [ -123.394102988999961, 48.508945910000079 ], [ -123.394494586999912, 48.508639692000052 ], [ -123.394494005999917, 48.508567106000093 ], [ -123.393676685999964, 48.508030190000092 ], [ -123.393473095000019, 48.508084298000071 ], [ -123.393098387999956, 48.508589907000065 ], [ -123.392694002999946, 48.508726585000019 ], [ -123.392437887999947, 48.508907508000078 ], [ -123.391739812999944, 48.509583991000078 ], [ -123.391458309999962, 48.510025495000058 ], [ -123.391269587999972, 48.510135093000081 ], [ -123.390566294999942, 48.51027190500006 ], [ -123.390310899999989, 48.510506898000081 ], [ -123.389844816999954, 48.51138990400009 ], [ -123.389608603999989, 48.512416704000024 ], [ -123.389393316999985, 48.51264180200009 ], [ -123.389439292999924, 48.512714061000118 ], [ -123.386528865999949, 48.512642395000071 ], [ -123.386626934999953, 48.510871146000106 ], [ -123.38622248399993, 48.510872503000058 ], [ -123.38610289799999, 48.513032042000063 ], [ -123.386111830999965, 48.51303201200011 ], [ -123.386115930999949, 48.513571782000028 ], [ -123.386522139999954, 48.513570420000065 ], [ -123.386526244999942, 48.514110190000046 ], [ -123.386932458000018, 48.514108825000072 ], [ -123.386940678, 48.515188366000132 ], [ -123.387346897999976, 48.515186999000043 ], [ -123.387357185999946, 48.516536425000012 ], [ -123.386654294999914, 48.516538788000055 ], [ -123.386613509999904, 48.517275337000044 ], [ -123.386641085999941, 48.517276016000054 ], [ -123.38660717499999, 48.517888406000054 ], [ -123.387367472999955, 48.517885849000045 ], [ -123.387367941999969, 48.517947325000065 ], [ -123.387638689999946, 48.517953992000059 ], [ -123.387627569999893, 48.518154867000078 ], [ -123.388182018999913, 48.518152998000055 ], [ -123.388184081999938, 48.518422884000053 ], [ -123.389402821999965, 48.518418767000036 ], [ -123.389406958999956, 48.518958537000039 ], [ -123.39021946, 48.518955785000145 ], [ -123.390221532999973, 48.519225670000075 ], [ -123.391440291999942, 48.519221532000039 ], [ -123.391446528999964, 48.520031187000058 ], [ -123.391040268999987, 48.520032568000076 ], [ -123.391044425999951, 48.52057233700004 ], [ -123.388606842999977, 48.520580591000027 ], [ -123.388604779000019, 48.520310707000142 ], [ -123.388198515999974, 48.520312077000014 ], [ -123.388194390999928, 48.519772308000057 ], [ -123.387537916000014, 48.519774520000091 ], [ -123.387439306999966, 48.521555773000067 ], [ -123.386968819999979, 48.52154418600005 ], [ -123.386967590999959, 48.521566384000103 ], [ -123.386582899999937, 48.521556909000054 ], [ -123.386583737999985, 48.52166697000014 ], [ -123.386990012, 48.521665606000113 ], [ -123.387002346999978, 48.523284914000079 ], [ -123.387814917999904, 48.523282180000173 ], [ -123.387815799999956, 48.523397624000083 ], [ -123.390758300999934, 48.52347002600002 ], [ -123.390656997999926, 48.525302081000049 ], [ -123.390396681999945, 48.525322901000031 ], [ -123.389141720999987, 48.525679003000072 ], [ -123.388936617999917, 48.525661897000134 ], [ -123.388718798999946, 48.525526594000077 ], [ -123.388274181999918, 48.525573597000026 ], [ -123.387867606999976, 48.525772993000082 ], [ -123.387461704999964, 48.525801396000055 ], [ -123.387058499999938, 48.526171695000066 ], [ -123.387107471999954, 48.526986841000117 ], [ -123.386771605999982, 48.526978570000097 ], [ -123.386720016999931, 48.526571810000036 ], [ -123.386750296999949, 48.525071295000025 ], [ -123.38666869099994, 48.524322689000023 ], [ -123.386491198999977, 48.523622307000103 ], [ -123.38636874299999, 48.523636044000035 ], [ -123.386300720999955, 48.523643705000026 ], [ -123.386148309999982, 48.52309990500008 ], [ -123.386001734, 48.522503462000024 ], [ -123.385997375999963, 48.522485758000094 ], [ -123.38593651099994, 48.522238101000056 ], [ -123.385930134999967, 48.522204592000051 ], [ -123.385682787999912, 48.520903703000059 ], [ -123.385666387999962, 48.520817588000121 ], [ -123.385061431999986, 48.518140816000027 ], [ -123.385059397999939, 48.518131898000071 ], [ -123.384499921, 48.515519156000096 ], [ -123.384311391, 48.514638694000034 ], [ -123.384236820999988, 48.514290302000042 ], [ -123.384282203999959, 48.514285198000024 ], [ -123.38440140099999, 48.514271808000103 ], [ -123.384399523999917, 48.514262863000042 ], [ -123.383869818999969, 48.51171770900001 ], [ -123.383869289999964, 48.51116590700007 ], [ -123.383967603000016, 48.510391089000017 ], [ -123.384264508999962, 48.508884231000081 ], [ -123.384659604999982, 48.508928401000048 ], [ -123.385266617, 48.508707573000102 ], [ -123.385267758999987, 48.508858217000082 ], [ -123.386135506999949, 48.508879604000086 ], [ -123.38611851499995, 48.509186474000046 ], [ -123.38609388499998, 48.509631247000073 ], [ -123.386290944999971, 48.50963610200003 ], [ -123.386282271999988, 48.509792733000033 ], [ -123.38668671399995, 48.509791376000031 ], [ -123.38670440199995, 48.509471878000078 ], [ -123.386728278999954, 48.509040563000021 ], [ -123.387239732999959, 48.509053163000026 ], [ -123.387299801999959, 48.507967866000044 ], [ -123.38812618899999, 48.507667194000078 ], [ -123.388914596999925, 48.507585197000033 ], [ -123.388903281999902, 48.507789764000059 ], [ -123.392052822999929, 48.507867252000139 ], [ -123.392682103999945, 48.50788272300008 ], [ -123.3926877439999, 48.507780610000111 ], [ -123.392720403999931, 48.507189293000046 ], [ -123.39530483399993, 48.506920361 ], [ -123.395362594999966, 48.506879902000094 ], [ -123.395704788999964, 48.506727798000099 ], [ -123.395963603999974, 48.506691798000162 ], [ -123.396123513999925, 48.506731797000036 ], [ -123.396492111999962, 48.50698338800008 ], [ -123.396844517, 48.507089404000055 ], [ -123.397415385999963, 48.507324287000124 ], [ -123.398143694999987, 48.507425108000056 ], [ -123.39831600899997, 48.507487995000076 ], [ -123.398460848999918, 48.50757404900002 ], [ -123.398534503999898, 48.507617812000063 ], [ -123.39855960099996, 48.507726604000041 ], [ -123.398509200999925, 48.507856110000027 ], [ -123.398411692999957, 48.507957385000061 ], [ -123.398434700999971, 48.508154504000075 ], [ -123.398467060999963, 48.508194915000097 ], [ -123.398519401000016, 48.508260303000036 ], [ -123.398690406999947, 48.508369988000041 ], [ -123.398858185999984, 48.508438995000112 ], [ -123.399080698999981, 48.508449911000099 ], [ -123.399301602999984, 48.508414699000078 ], [ -123.400017257999977, 48.508116859000097 ], [ -123.40033602299998, 48.507984205000071 ], [ -123.400381896999988, 48.507965096000127 ], [ -123.399987604999978, 48.50749843300013 ], [ -123.399850469999976, 48.507336084000123 ], [ -123.399800780999968, 48.507277295000044 ], [ -123.399224597999975, 48.506818711000086 ], [ -123.39918599399999, 48.506709496000035 ], [ -123.399271008999975, 48.506589912000095 ], [ -123.39943389299999, 48.506454092000105 ], [ -123.400009489999931, 48.505623296000131 ], [ -123.400099526999966, 48.505443743000065 ], [ -123.400343483999961, 48.504957101000088 ], [ -123.400508841999979, 48.504766979000131 ], [ -123.400748881999988, 48.504490892000035 ], [ -123.400808462000015, 48.504440004000081 ], [ -123.401228961999905, 48.504080605000048 ], [ -123.401304804999967, 48.504015797000122 ], [ -123.401566696, 48.503726516 ], [ -123.401635405999983, 48.503583894000052 ], [ -123.402349818999966, 48.501530192000089 ], [ -123.402784971999921, 48.501696604000145 ], [ -123.404226593999937, 48.502247913000062 ], [ -123.405120707999941, 48.502700803000032 ], [ -123.405374898999924, 48.502869286000056 ], [ -123.405570508, 48.503000402000062 ], [ -123.40609948399999, 48.503529095000019 ], [ -123.406413597999929, 48.503888406000065 ], [ -123.40722518299998, 48.504614297000039 ], [ -123.407362903999939, 48.504813281000118 ], [ -123.407407506999974, 48.504936085000097 ], [ -123.407423180999942, 48.505142090000021 ], [ -123.407292713999979, 48.505722302000066 ], [ -123.407346885999942, 48.506334922000072 ], [ -123.40738262799999, 48.506479718000044 ], [ -123.40744088299995, 48.50671598800016 ], [ -123.407516310999966, 48.506817423 ], [ -123.407634319999943, 48.50697617600008 ], [ -123.407906528999959, 48.507342284000046 ], [ -123.407963609999982, 48.507381244000072 ], [ -123.408784926999942, 48.507941441000078 ], [ -123.408794981999947, 48.507948293000034 ], [ -123.40938081799996, 48.508207377000083 ], [ -123.409766218999891, 48.508377803000094 ], [ -123.409967696999956, 48.508479963000113 ], [ -123.4101528, 48.508573811000083 ], [ -123.410496915999943, 48.508830191000094 ], [ -123.410879189999946, 48.509006406 ], [ -123.410887695999918, 48.509295090000059 ], [ -123.411627813999971, 48.510046191000107 ], [ -123.41174960699999, 48.510215107000093 ], [ -123.411803001999942, 48.510399400000054 ], [ -123.411772992999971, 48.510601605000026 ], [ -123.411519498999937, 48.511035388000018 ], [ -123.41151820399989, 48.511231090000116 ], [ -123.411692196999951, 48.511582399000112 ], [ -123.411743681999937, 48.511852404000109 ], [ -123.411693510999967, 48.512274997000112 ], [ -123.410880497999983, 48.514060309000058 ], [ -123.410386105999962, 48.514916481000057 ], [ -123.410029486, 48.516370914000021 ], [ -123.40991579099996, 48.516834591000077 ], [ -123.40976972599999, 48.517231409000026 ], [ -123.409625382999948, 48.517816606000032 ], [ -123.409683378999915, 48.51818769700003 ], [ -123.409820005999933, 48.518605811 ], [ -123.410654986999958, 48.519575703000015 ], [ -123.410942397999975, 48.520078597000058 ], [ -123.410999713999956, 48.520437896000047 ], [ -123.410789098999956, 48.52112259000009 ], [ -123.410874716999956, 48.521805404000055 ], [ -123.4110968049999, 48.522291402000114 ], [ -123.411369795, 48.522613693000018 ], [ -123.412107873999929, 48.523600989000059 ], [ -123.412765402999966, 48.524308596000019 ], [ -123.413365298999963, 48.524882205000075 ], [ -123.413924209999948, 48.525169011000067 ], [ -123.414662993999926, 48.525430502000042 ], [ -123.415633686999982, 48.525729093000024 ], [ -123.415652096, 48.525731049000044 ], [ -123.417031702999935, 48.525877693000062 ], [ -123.417250868999957, 48.526036510000104 ], [ -123.417289194999938, 48.526064314000031 ], [ -123.41729547199999, 48.52613420200003 ], [ -123.417331200999953, 48.526532402000043 ], [ -123.417094401999918, 48.527028795000078 ], [ -123.417331122999926, 48.528960096000048 ], [ -123.417344922, 48.529072625000076 ], [ -123.417714249999975, 48.529235154000084 ], [ -123.417763475999919, 48.52925682700009 ], [ -123.418211616999884, 48.529641898000072 ], [ -123.418708285999912, 48.530647601000048 ], [ -123.419339555999983, 48.532308362000066 ], [ -123.419387990999951, 48.532435856000127 ], [ -123.419940752999977, 48.532961427000025 ], [ -123.420736980999891, 48.533609219 ], [ -123.421283990999967, 48.534165295000051 ], [ -123.422167647999927, 48.534575372000106 ], [ -123.422537814999956, 48.534978375000023 ], [ -123.42301416, 48.535319036000011 ], [ -123.424185772999962, 48.535954267000065 ], [ -123.424762706999957, 48.53720260900009 ], [ -123.421304622999955, 48.537698392000102 ], [ -123.419126177999914, 48.538012397000095 ], [ -123.418319874999952, 48.538109970000107 ], [ -123.41802188299998, 48.538146025000074 ], [ -123.41762968099998, 48.538193482000047 ], [ -123.41736998, 48.538224901000085 ], [ -123.417358239999942, 48.538999454000084 ], [ -123.417345106999932, 48.539865205000069 ], [ -123.414244954999958, 48.539868075000122 ], [ -123.413777098999958, 48.539868507000115 ], [ -123.413526684999937, 48.539873655000058 ], [ -123.412795728, 48.539888717000117 ], [ -123.4126749119999, 48.539891183000115 ], [ -123.41235172599994, 48.53996449600001 ], [ -123.412215691999961, 48.540126193000063 ], [ -123.412205786999934, 48.54067590100005 ], [ -123.41207408, 48.540769936000103 ], [ -123.411965118, 48.540847693000032 ], [ -123.411544513999957, 48.540822094000099 ], [ -123.410143928999929, 48.540269504 ], [ -123.41012974299997, 48.540260662000023 ], [ -123.409598613999947, 48.539928898000042 ], [ -123.409368505999964, 48.539858388000042 ], [ -123.40925884399995, 48.53985492000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161435659", "BldgCostT": "93666238", "sL_LossRatio": "0.638623046050447", "sL_AssetLoss": "1776530", "sL_BldgLoss": "1134533", "sL_StrLoss": "533667", "sL_NStrLoss": "600866", "sL_ContLoss": "641997", "geom_point": "0101000020E6100000FE5CF96E2BD95EC01F353F617D404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.384444056999911, 48.507973024000101 ], [ -123.385479387999951, 48.50271790800015 ], [ -123.385477405999936, 48.502615808000058 ], [ -123.385462817999937, 48.501870793000101 ], [ -123.385333784999929, 48.500438384000049 ], [ -123.385294881999926, 48.500006518000127 ], [ -123.385240998000015, 48.499408199000044 ], [ -123.385279293999957, 48.498913188000138 ], [ -123.385565717999938, 48.498933161000117 ], [ -123.385820407999915, 48.498950893000064 ], [ -123.386744902999936, 48.499021486000046 ], [ -123.388000099999957, 48.49912186900012 ], [ -123.387662255999942, 48.49953733500007 ], [ -123.387388030999915, 48.499853395000102 ], [ -123.387276702999941, 48.49998917500006 ], [ -123.387042042999951, 48.500275365000107 ], [ -123.386646012999947, 48.500758451000138 ], [ -123.386606946999933, 48.500805279000097 ], [ -123.38610518099992, 48.501422303 ], [ -123.385999558999927, 48.501621675000131 ], [ -123.385926029999908, 48.501924632000055 ], [ -123.387476849999956, 48.502219461000024 ], [ -123.387604414999927, 48.502243683000103 ], [ -123.388048993999945, 48.502220400000041 ], [ -123.389138185999968, 48.502415801000026 ], [ -123.389857979999988, 48.50274279500011 ], [ -123.390555907999953, 48.502952089000061 ], [ -123.390719990999983, 48.502966892000074 ], [ -123.390879995999939, 48.502932088000115 ], [ -123.390935064999923, 48.502895658000078 ], [ -123.393226491999926, 48.503118925000081 ], [ -123.396246911999953, 48.503515792000066 ], [ -123.395629814999964, 48.502648489000116 ], [ -123.395263383999946, 48.502228278000111 ], [ -123.39480618499999, 48.501703993000042 ], [ -123.3945047, 48.501397172000075 ], [ -123.39434038899995, 48.501229996000077 ], [ -123.394073833999968, 48.500901618000114 ], [ -123.393558434999989, 48.500266719000109 ], [ -123.393378370999983, 48.500027867000057 ], [ -123.392503623999957, 48.49888555000004 ], [ -123.393594904999958, 48.498371746 ], [ -123.393868821999945, 48.498242824000037 ], [ -123.394912997999981, 48.498493923000098 ], [ -123.395944107999981, 48.498860108000081 ], [ -123.396122744999914, 48.498936745000066 ], [ -123.396914643999978, 48.499276510000072 ], [ -123.397125848999949, 48.499367127 ], [ -123.39717450699996, 48.49938800500005 ], [ -123.397450880999912, 48.499537204000021 ], [ -123.397620721999971, 48.499628897000065 ], [ -123.398031108999987, 48.499904997000044 ], [ -123.398212304999944, 48.500002607000035 ], [ -123.398276507999967, 48.500037197000076 ], [ -123.399075704999987, 48.500322795000102 ], [ -123.399376940999929, 48.500397728000102 ], [ -123.399994181999929, 48.5005512930001 ], [ -123.400359189999946, 48.500642107000068 ], [ -123.40055540199991, 48.500690882000072 ], [ -123.401164336999926, 48.50092311000008 ], [ -123.40137756099999, 48.50100442600008 ], [ -123.40138931, 48.501008892000051 ], [ -123.401782599999947, 48.5012223620001 ], [ -123.401812120999949, 48.501238368000024 ], [ -123.40199727, 48.50133887100003 ], [ -123.402349818999966, 48.501530192000089 ], [ -123.401635405999983, 48.503583894000052 ], [ -123.401566696, 48.503726516 ], [ -123.401304804999967, 48.504015797000122 ], [ -123.401228961999905, 48.504080605000048 ], [ -123.400808462000015, 48.504440004000081 ], [ -123.400748881999988, 48.504490892000035 ], [ -123.400508841999979, 48.504766979000131 ], [ -123.400343483999961, 48.504957101000088 ], [ -123.400099526999966, 48.505443743000065 ], [ -123.400009489999931, 48.505623296000131 ], [ -123.39943389299999, 48.506454092000105 ], [ -123.399271008999975, 48.506589912000095 ], [ -123.39918599399999, 48.506709496000035 ], [ -123.399224597999975, 48.506818711000086 ], [ -123.399800780999968, 48.507277295000044 ], [ -123.399850469999976, 48.507336084000123 ], [ -123.399987604999978, 48.50749843300013 ], [ -123.400381896999988, 48.507965096000127 ], [ -123.40033602299998, 48.507984205000071 ], [ -123.400017257999977, 48.508116859000097 ], [ -123.399301602999984, 48.508414699000078 ], [ -123.399080698999981, 48.508449911000099 ], [ -123.398858185999984, 48.508438995000112 ], [ -123.398690406999947, 48.508369988000041 ], [ -123.398519401000016, 48.508260303000036 ], [ -123.398467060999963, 48.508194915000097 ], [ -123.398434700999971, 48.508154504000075 ], [ -123.398411692999957, 48.507957385000061 ], [ -123.398509200999925, 48.507856110000027 ], [ -123.39855960099996, 48.507726604000041 ], [ -123.398534503999898, 48.507617812000063 ], [ -123.398460848999918, 48.50757404900002 ], [ -123.39831600899997, 48.507487995000076 ], [ -123.398143694999987, 48.507425108000056 ], [ -123.397415385999963, 48.507324287000124 ], [ -123.396844517, 48.507089404000055 ], [ -123.396492111999962, 48.50698338800008 ], [ -123.396123513999925, 48.506731797000036 ], [ -123.395963603999974, 48.506691798000162 ], [ -123.395704788999964, 48.506727798000099 ], [ -123.395362594999966, 48.506879902000094 ], [ -123.39530483399993, 48.506920361 ], [ -123.392720403999931, 48.507189293000046 ], [ -123.39274179099999, 48.506802061000016 ], [ -123.391391900999963, 48.506806659000077 ], [ -123.391306236999952, 48.506875961000091 ], [ -123.391034938999937, 48.506852761000069 ], [ -123.390880739999943, 48.506808396000075 ], [ -123.389313903999906, 48.506813704000109 ], [ -123.389312536999952, 48.506634993000041 ], [ -123.389250856999951, 48.506633474000111 ], [ -123.389201105999973, 48.507533072000065 ], [ -123.388917865999986, 48.507526099000131 ], [ -123.388914596999925, 48.507585197000033 ], [ -123.38812618899999, 48.507667194000078 ], [ -123.387299801999959, 48.507967866000044 ], [ -123.387302456999961, 48.507919889000036 ], [ -123.385654369999926, 48.507879278000082 ], [ -123.385637799999969, 48.508178458000039 ], [ -123.385262536999946, 48.50816920700013 ], [ -123.385266617, 48.508707573000102 ], [ -123.384659604999982, 48.508928401000048 ], [ -123.384264508999962, 48.508884231000081 ], [ -123.384444056999911, 48.507973024000101 ] ], [ [ -123.396225380999937, 48.505190811000048 ], [ -123.396242581999971, 48.504878933 ], [ -123.39540947299993, 48.504858477000049 ], [ -123.395396416000011, 48.50509512800005 ], [ -123.394580543999965, 48.505075089000066 ], [ -123.394581328999919, 48.505176414000083 ], [ -123.394175189999956, 48.505177806000077 ], [ -123.394179375999926, 48.505717576000073 ], [ -123.393773230999969, 48.505718967000057 ], [ -123.393773314999962, 48.505729867000078 ], [ -123.395302532999935, 48.505767433000088 ], [ -123.395335552999953, 48.505168962 ], [ -123.396225380999937, 48.505190811000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156701500", "BldgCostT": "100735000", "sL_LossRatio": "0.878618323521931", "sL_AssetLoss": "341660.3", "sL_BldgLoss": "300189", "sL_StrLoss": "220714", "sL_NStrLoss": "79475", "sL_ContLoss": "41471.3", "geom_point": "0101000020E6100000FC9C161722D85EC030F3DBDF72414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.374226108999949, 48.512676893000084 ], [ -123.374225365999934, 48.51147582300009 ], [ -123.372932717, 48.511459143000124 ], [ -123.372480906999968, 48.511172920000043 ], [ -123.372178022999933, 48.511102326000092 ], [ -123.371731817999972, 48.511154415000114 ], [ -123.371378083999943, 48.511316888000081 ], [ -123.371034893999962, 48.511434710000067 ], [ -123.370482789, 48.511446223000057 ], [ -123.370464417999983, 48.511121153000047 ], [ -123.370375264999936, 48.510827027000055 ], [ -123.37020064499994, 48.510250805000055 ], [ -123.370384957999988, 48.510217497000077 ], [ -123.372094506999971, 48.51022404499999 ], [ -123.372108011999956, 48.510224093000062 ], [ -123.372146097999988, 48.509418113000017 ], [ -123.372186998999936, 48.509290105000048 ], [ -123.372268889999958, 48.509179389000053 ], [ -123.372413590999898, 48.50909083600002 ], [ -123.372880401, 48.508805099000092 ], [ -123.372969792000021, 48.508703608000062 ], [ -123.372973014999971, 48.508675957000044 ], [ -123.372995796999973, 48.50847878700008 ], [ -123.372997914999985, 48.50759250300009 ], [ -123.372931390999938, 48.507523201000048 ], [ -123.372758390999962, 48.507427010000093 ], [ -123.372106988999988, 48.507401794000018 ], [ -123.371654914999922, 48.507437494000094 ], [ -123.371506681999961, 48.507535184000105 ], [ -123.371479493999971, 48.507553105000071 ], [ -123.371226831999977, 48.507950195000085 ], [ -123.37103219299992, 48.508256093000107 ], [ -123.37089500699993, 48.508365379000111 ], [ -123.370562983999974, 48.508429299000056 ], [ -123.370175782999979, 48.508392707000041 ], [ -123.370048518999937, 48.508324600000087 ], [ -123.37002920899999, 48.508296584000057 ], [ -123.370024493999935, 48.508289707000117 ], [ -123.369975905, 48.508219095000108 ], [ -123.369961922999906, 48.508107907000053 ], [ -123.370131608999884, 48.507681093000038 ], [ -123.370153702999986, 48.507526497000072 ], [ -123.370164355999918, 48.507343365000082 ], [ -123.370191070999937, 48.506884161000087 ], [ -123.370219383999952, 48.5063964920001 ], [ -123.370231694999987, 48.505956801000103 ], [ -123.37387397399999, 48.506040043000013 ], [ -123.373874084999983, 48.506055210000099 ], [ -123.373467937999948, 48.506056528000045 ], [ -123.373469190999984, 48.506227184000139 ], [ -123.373805143999931, 48.506325326000066 ], [ -123.373912106, 48.506324979000084 ], [ -123.373918626, 48.510234701000066 ], [ -123.374241248999965, 48.510223291000067 ], [ -123.374213033999951, 48.509904282000029 ], [ -123.377906705, 48.509938656000017 ], [ -123.377830329999981, 48.511061866000034 ], [ -123.383689717999957, 48.510600835000105 ], [ -123.383967603000016, 48.510391089000017 ], [ -123.383869289999964, 48.51116590700007 ], [ -123.383869818999969, 48.51171770900001 ], [ -123.384399523999917, 48.514262863000042 ], [ -123.38440140099999, 48.514271808000103 ], [ -123.384282203999959, 48.514285198000024 ], [ -123.384236820999988, 48.514290302000042 ], [ -123.384044959999969, 48.514287400000065 ], [ -123.383765438999944, 48.514283152000054 ], [ -123.381616812999937, 48.514270731000046 ], [ -123.381399229999943, 48.514269860000063 ], [ -123.380847824999933, 48.514265018000039 ], [ -123.380153513999986, 48.514258926000089 ], [ -123.379642584999957, 48.514252867000081 ], [ -123.379227857999979, 48.514247975000075 ], [ -123.378924621999943, 48.51424438500009 ], [ -123.378543176999955, 48.514239900000085 ], [ -123.37853740599995, 48.514239815000046 ], [ -123.377897616, 48.514231097000035 ], [ -123.377769200000017, 48.514229804000131 ], [ -123.376892546999926, 48.514219310000023 ], [ -123.376499380999945, 48.514214593000048 ], [ -123.375388984999972, 48.514200698000096 ], [ -123.375296722999934, 48.514199568000087 ], [ -123.374152998999946, 48.514185409000042 ], [ -123.374226108999949, 48.512676893000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202090001", "BldgCostT": "136750001", "sL_LossRatio": "0.93340731921496", "sL_AssetLoss": "352679.9", "sL_BldgLoss": "329194", "sL_StrLoss": "265742.5", "sL_NStrLoss": "63451.5", "sL_ContLoss": "23485.9", "geom_point": "0101000020E61000000220FECCA6D75EC0BA6A09BF75414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.367206667999966, 48.51411905700008 ], [ -123.366691791999983, 48.512905970000062 ], [ -123.366607416999955, 48.512707101000039 ], [ -123.366409504999979, 48.511772615000041 ], [ -123.366235186000011, 48.510607806000102 ], [ -123.366147166999923, 48.510023048000079 ], [ -123.366144487999946, 48.510005181000061 ], [ -123.366077028999882, 48.509557143000123 ], [ -123.366064624999979, 48.509474594000032 ], [ -123.36588211499999, 48.509185100000074 ], [ -123.365628690999927, 48.509050811000073 ], [ -123.365971906999988, 48.507382193000147 ], [ -123.365810610999958, 48.507292491000115 ], [ -123.365824055999965, 48.507127773000043 ], [ -123.365868060999944, 48.506588499000081 ], [ -123.365917507999953, 48.505983183000041 ], [ -123.366109933999923, 48.505855362000041 ], [ -123.368836797999961, 48.506590296000041 ], [ -123.36890806699995, 48.506448976000101 ], [ -123.368940095999974, 48.506385482000042 ], [ -123.368961015999972, 48.505936993000027 ], [ -123.369316239999975, 48.505942536000077 ], [ -123.370231694999987, 48.505956801000103 ], [ -123.370219383999952, 48.5063964920001 ], [ -123.370191070999937, 48.506884161000087 ], [ -123.370164355999918, 48.507343365000082 ], [ -123.370153702999986, 48.507526497000072 ], [ -123.370131608999884, 48.507681093000038 ], [ -123.369961922999906, 48.508107907000053 ], [ -123.369975905, 48.508219095000108 ], [ -123.370024493999935, 48.508289707000117 ], [ -123.37002920899999, 48.508296584000057 ], [ -123.370048518999937, 48.508324600000087 ], [ -123.370175782999979, 48.508392707000041 ], [ -123.370562983999974, 48.508429299000056 ], [ -123.37089500699993, 48.508365379000111 ], [ -123.37103219299992, 48.508256093000107 ], [ -123.371226831999977, 48.507950195000085 ], [ -123.371479493999971, 48.507553105000071 ], [ -123.371506681999961, 48.507535184000105 ], [ -123.371654914999922, 48.507437494000094 ], [ -123.372106988999988, 48.507401794000018 ], [ -123.372758390999962, 48.507427010000093 ], [ -123.372931390999938, 48.507523201000048 ], [ -123.372997914999985, 48.50759250300009 ], [ -123.372995796999973, 48.50847878700008 ], [ -123.372973014999971, 48.508675957000044 ], [ -123.372969792000021, 48.508703608000062 ], [ -123.372880401, 48.508805099000092 ], [ -123.372413590999898, 48.50909083600002 ], [ -123.372268889999958, 48.509179389000053 ], [ -123.372186998999936, 48.509290105000048 ], [ -123.372146097999988, 48.509418113000017 ], [ -123.372108011999956, 48.510224093000062 ], [ -123.372094506999971, 48.51022404499999 ], [ -123.370384957999988, 48.510217497000077 ], [ -123.37020064499994, 48.510250805000055 ], [ -123.370375264999936, 48.510827027000055 ], [ -123.370464417999983, 48.511121153000047 ], [ -123.370482789, 48.511446223000057 ], [ -123.371034893999962, 48.511434710000067 ], [ -123.371378083999943, 48.511316888000081 ], [ -123.371731817999972, 48.511154415000114 ], [ -123.372178022999933, 48.511102326000092 ], [ -123.372480906999968, 48.511172920000043 ], [ -123.372932717, 48.511459143000124 ], [ -123.374225365999934, 48.51147582300009 ], [ -123.374226108999949, 48.512676893000084 ], [ -123.374152998999946, 48.514185409000042 ], [ -123.372923897999939, 48.514166698000075 ], [ -123.372551409999929, 48.514156584000034 ], [ -123.372275845999965, 48.514135317000033 ], [ -123.371777451999932, 48.514096825000081 ], [ -123.371679968999928, 48.515799501000032 ], [ -123.371813332999935, 48.516122889000044 ], [ -123.371825114999979, 48.516307656000116 ], [ -123.371825681999951, 48.51631666400003 ], [ -123.37183715499998, 48.516496790000119 ], [ -123.371821715999943, 48.516541740000079 ], [ -123.371800032999914, 48.516604960000116 ], [ -123.371716595999942, 48.516670527000088 ], [ -123.37160585399999, 48.516715519000051 ], [ -123.37121037899999, 48.51687619900013 ], [ -123.370493665999959, 48.517121707000122 ], [ -123.369919179999954, 48.517243588000063 ], [ -123.369169674999966, 48.517229809000114 ], [ -123.368647009999947, 48.517220196000046 ], [ -123.368608220999974, 48.517123822000045 ], [ -123.36835553899999, 48.516496141000104 ], [ -123.368269391999959, 48.516282106000048 ], [ -123.367667206999954, 48.515204086000018 ], [ -123.367206667999966, 48.51411905700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "333155092", "BldgCostT": "213811793", "sL_LossRatio": "0.810624492090478", "sL_AssetLoss": "335345.16", "sL_BldgLoss": "271839", "sL_StrLoss": "206761.1", "sL_NStrLoss": "65077.9", "sL_ContLoss": "63506.16", "geom_point": "0101000020E61000008221174148D85EC0C2045F4584404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.377830329999981, 48.511061866000034 ], [ -123.377906705, 48.509938656000017 ], [ -123.374213033999951, 48.509904282000029 ], [ -123.374241248999965, 48.510223291000067 ], [ -123.373918626, 48.510234701000066 ], [ -123.373912106, 48.506324979000084 ], [ -123.374282221999962, 48.506323776000109 ], [ -123.374283754999965, 48.506531886000097 ], [ -123.374343738999983, 48.506567161000071 ], [ -123.374315758999941, 48.507463959000077 ], [ -123.377134319999982, 48.50753369800001 ], [ -123.377129279999963, 48.506854269000051 ], [ -123.377535434999942, 48.506852936000072 ], [ -123.377527414999975, 48.505773393000055 ], [ -123.376715123999958, 48.505776054000087 ], [ -123.376713124999981, 48.505506169000043 ], [ -123.376306979000034, 48.505507498000036 ], [ -123.37630098699999, 48.504697839000102 ], [ -123.377113259999959, 48.504695181000059 ], [ -123.377109255999926, 48.504155409000106 ], [ -123.377515388999939, 48.504154078000077 ], [ -123.377511379999973, 48.50361430600001 ], [ -123.378323637999983, 48.503611639000056 ], [ -123.378321629999931, 48.503341753000029 ], [ -123.378727754999957, 48.503340417000075 ], [ -123.378725708, 48.50306556000001 ], [ -123.377820915999962, 48.503043193000046 ], [ -123.377823036999956, 48.503005011000027 ], [ -123.377061289999943, 48.502986174000057 ], [ -123.377078653999931, 48.502673665000046 ], [ -123.376692061, 48.502664103000065 ], [ -123.376693122999953, 48.502807308000037 ], [ -123.375880878999979, 48.502809964000122 ], [ -123.375882872999938, 48.503079850000105 ], [ -123.375070624999964, 48.503082499000087 ], [ -123.375074607999949, 48.503622272000037 ], [ -123.374668478999922, 48.503623594000082 ], [ -123.374672456999917, 48.504163366000036 ], [ -123.374266323999933, 48.504164687000092 ], [ -123.374272284999918, 48.50497434600009 ], [ -123.373866145999955, 48.504975666000057 ], [ -123.37387397399999, 48.506040043000013 ], [ -123.370231694999987, 48.505956801000103 ], [ -123.370250197999894, 48.505308910000082 ], [ -123.370946100999973, 48.50518999300008 ], [ -123.37115922199996, 48.505053708000162 ], [ -123.371176803999901, 48.505023757000032 ], [ -123.371466712999961, 48.504531102000087 ], [ -123.371758782999962, 48.503774593000053 ], [ -123.371981317999925, 48.503516907000112 ], [ -123.372076378999935, 48.503460656000115 ], [ -123.372197907, 48.503388784000023 ], [ -123.372344457999972, 48.503332207000064 ], [ -123.373773809999946, 48.502780414000036 ], [ -123.37414038199995, 48.502602805000024 ], [ -123.374258997999917, 48.502486679000064 ], [ -123.374287984999938, 48.502281891000095 ], [ -123.374135714999966, 48.501958002000023 ], [ -123.374035985999953, 48.501638102000108 ], [ -123.374052658999986, 48.501419839000071 ], [ -123.374085518999919, 48.500990106000096 ], [ -123.374061216999948, 48.500619806000081 ], [ -123.374020441999988, 48.499998730000058 ], [ -123.37401391499999, 48.499899584000019 ], [ -123.373987964999927, 48.49950373500014 ], [ -123.373980907999965, 48.499396008000055 ], [ -123.373983592999949, 48.499369424000108 ], [ -123.3739962399999, 48.499244071000057 ], [ -123.374020122, 48.499008296000028 ], [ -123.374123689, 48.498772796000033 ], [ -123.374238361999943, 48.498644065000079 ], [ -123.374636802999973, 48.498196703000062 ], [ -123.374984183999914, 48.497951092000044 ], [ -123.375017816999915, 48.497663289000123 ], [ -123.375574596999954, 48.497662687000066 ], [ -123.377677551999938, 48.497658842000085 ], [ -123.37808818699996, 48.497658099000034 ], [ -123.37849750099997, 48.497710585000029 ], [ -123.379439790999982, 48.497945792000067 ], [ -123.379468699999933, 48.497953191000093 ], [ -123.379947380999965, 48.49807560600005 ], [ -123.381618193999913, 48.498504614000083 ], [ -123.382428177999913, 48.498713990000105 ], [ -123.383572607999938, 48.498789996000028 ], [ -123.383669354999967, 48.498796782000106 ], [ -123.384308913999959, 48.49884148800006 ], [ -123.384577512999954, 48.498861659000106 ], [ -123.384988518999975, 48.498892500000125 ], [ -123.385279293999957, 48.498913188000138 ], [ -123.385240998000015, 48.499408199000044 ], [ -123.385294881999926, 48.500006518000127 ], [ -123.385333784999929, 48.500438384000049 ], [ -123.385462817999937, 48.501870793000101 ], [ -123.385477405999936, 48.502615808000058 ], [ -123.385479387999951, 48.50271790800015 ], [ -123.384444056999911, 48.507973024000101 ], [ -123.384264508999962, 48.508884231000081 ], [ -123.383967603000016, 48.510391089000017 ], [ -123.383689717999957, 48.510600835000105 ], [ -123.377830329999981, 48.511061866000034 ] ], [ [ -123.379984467999947, 48.508464233000062 ], [ -123.379978412999932, 48.507654576000064 ], [ -123.377820674999981, 48.50766167900013 ], [ -123.377758386999972, 48.508783009000098 ], [ -123.378029797999957, 48.508789718000102 ], [ -123.377995444999954, 48.509408211000022 ], [ -123.378455299, 48.509419578000077 ], [ -123.378462492999958, 48.509290061000065 ], [ -123.379178405999966, 48.509307753000016 ], [ -123.379178173999918, 48.509276568000125 ], [ -123.379584345999945, 48.5092752300001 ], [ -123.37957830000002, 48.508465573000116 ], [ -123.379984467999947, 48.508464233000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90334833", "BldgCostT": "61803333", "sL_LossRatio": "0.955577971485624", "sL_AssetLoss": "111726.1", "sL_BldgLoss": "106763", "sL_StrLoss": "90525", "sL_NStrLoss": "16238", "sL_ContLoss": "4963.1", "geom_point": "0101000020E61000009B6BA883C2D75EC0F1716DA818404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.371954086999921, 48.497692899000072 ], [ -123.372496068999979, 48.497632894000034 ], [ -123.372616846999932, 48.497619519000075 ], [ -123.372699208999947, 48.497610406000042 ], [ -123.372808269999922, 48.497666293000172 ], [ -123.373354286999984, 48.49766449600007 ], [ -123.375017816999915, 48.497663289000123 ], [ -123.374984183999914, 48.497951092000044 ], [ -123.374636802999973, 48.498196703000062 ], [ -123.374238361999943, 48.498644065000079 ], [ -123.374123689, 48.498772796000033 ], [ -123.374020122, 48.499008296000028 ], [ -123.3739962399999, 48.499244071000057 ], [ -123.373983592999949, 48.499369424000108 ], [ -123.373980907999965, 48.499396008000055 ], [ -123.373987964999927, 48.49950373500014 ], [ -123.37401391499999, 48.499899584000019 ], [ -123.374020441999988, 48.499998730000058 ], [ -123.374061216999948, 48.500619806000081 ], [ -123.374085518999919, 48.500990106000096 ], [ -123.374052658999986, 48.501419839000071 ], [ -123.374035985999953, 48.501638102000108 ], [ -123.374135714999966, 48.501958002000023 ], [ -123.374287984999938, 48.502281891000095 ], [ -123.374258997999917, 48.502486679000064 ], [ -123.37414038199995, 48.502602805000024 ], [ -123.373773809999946, 48.502780414000036 ], [ -123.372344457999972, 48.503332207000064 ], [ -123.372197907, 48.503388784000023 ], [ -123.372076378999935, 48.503460656000115 ], [ -123.371981317999925, 48.503516907000112 ], [ -123.371758782999962, 48.503774593000053 ], [ -123.371466712999961, 48.504531102000087 ], [ -123.371176803999901, 48.505023757000032 ], [ -123.37115922199996, 48.505053708000162 ], [ -123.370946100999973, 48.50518999300008 ], [ -123.370250197999894, 48.505308910000082 ], [ -123.370216391000014, 48.504994317000097 ], [ -123.369919418999984, 48.503727206000072 ], [ -123.36957685599999, 48.502651699000104 ], [ -123.369528315999972, 48.502499292000088 ], [ -123.369187477999944, 48.50206709 ], [ -123.368788795999961, 48.501582005000046 ], [ -123.368277009999957, 48.501235684000108 ], [ -123.36770372, 48.500853503000016 ], [ -123.36744670799996, 48.500687508000148 ], [ -123.36667901399997, 48.500157193000049 ], [ -123.366866282000018, 48.500002828000099 ], [ -123.367348997999954, 48.499604901000062 ], [ -123.367635899999925, 48.499402786000189 ], [ -123.369559540999987, 48.498522212000118 ], [ -123.369949003999949, 48.49834388900009 ], [ -123.370649, 48.498028484000059 ], [ -123.3712437, 48.49783128800005 ], [ -123.371954086999921, 48.497692899000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65322500", "BldgCostT": "45050000", "sL_LossRatio": "0.949913834459607", "sL_AssetLoss": "105308.92", "sL_BldgLoss": "100034.4", "sL_StrLoss": "82560", "sL_NStrLoss": "17474.4", "sL_ContLoss": "5274.52", "geom_point": "0101000020E610000052A4909E81D75EC076A31BA36D404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.368836797999961, 48.506590296000041 ], [ -123.366109933999923, 48.505855362000041 ], [ -123.365917507999953, 48.505983183000041 ], [ -123.366108203999929, 48.504929048000101 ], [ -123.36613586599999, 48.504776162000041 ], [ -123.366167589, 48.504600805000109 ], [ -123.366171576999932, 48.504579002000106 ], [ -123.366206509999984, 48.504388007000081 ], [ -123.366126902999937, 48.503926212000039 ], [ -123.365877405999981, 48.503383491000065 ], [ -123.365652023999971, 48.503111906000122 ], [ -123.36553851599993, 48.503017416000013 ], [ -123.365339399999968, 48.502851586000084 ], [ -123.36523022499992, 48.502785034000034 ], [ -123.364875515999984, 48.502568701 ], [ -123.364335779999948, 48.50231000900007 ], [ -123.363023687999913, 48.501968121000104 ], [ -123.362460985000013, 48.50167978200006 ], [ -123.362211796999986, 48.50155209200004 ], [ -123.361962378, 48.50137182000006 ], [ -123.362437077999957, 48.501269098000122 ], [ -123.362870317999963, 48.501254637000052 ], [ -123.363442994999929, 48.501285108000062 ], [ -123.363568928999925, 48.501328799000078 ], [ -123.364024052000033, 48.501358152000066 ], [ -123.364438387999911, 48.501368450000079 ], [ -123.365048499999929, 48.501284434000084 ], [ -123.365383660999925, 48.50115020100003 ], [ -123.365707843999985, 48.501020376000049 ], [ -123.36611099000001, 48.500722018000076 ], [ -123.366175302999949, 48.500586551000076 ], [ -123.36667901399997, 48.500157193000049 ], [ -123.36744670799996, 48.500687508000148 ], [ -123.36770372, 48.500853503000016 ], [ -123.368277009999957, 48.501235684000108 ], [ -123.368788795999961, 48.501582005000046 ], [ -123.369187477999944, 48.50206709 ], [ -123.369528315999972, 48.502499292000088 ], [ -123.36957685599999, 48.502651699000104 ], [ -123.369919418999984, 48.503727206000072 ], [ -123.370216391000014, 48.504994317000097 ], [ -123.370250197999894, 48.505308910000082 ], [ -123.370231694999987, 48.505956801000103 ], [ -123.369316239999975, 48.505942536000077 ], [ -123.368961015999972, 48.505936993000027 ], [ -123.368940095999974, 48.506385482000042 ], [ -123.36890806699995, 48.506448976000101 ], [ -123.368836797999961, 48.506590296000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58036334", "BldgCostT": "39553334", "sL_LossRatio": "0.957061594130071", "sL_AssetLoss": "78107.93", "sL_BldgLoss": "74754.1", "sL_StrLoss": "64578", "sL_NStrLoss": "10176.1", "sL_ContLoss": "3353.83", "geom_point": "0101000020E6100000E471A4754CD75EC0E97FF3C136414840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.365266540999983, 48.506459568000054 ], [ -123.365917507999953, 48.505983183000041 ], [ -123.365868060999944, 48.506588499000081 ], [ -123.365824055999965, 48.507127773000043 ], [ -123.365810610999958, 48.507292491000115 ], [ -123.365971906999988, 48.507382193000147 ], [ -123.365628690999927, 48.509050811000073 ], [ -123.36588211499999, 48.509185100000074 ], [ -123.366064624999979, 48.509474594000032 ], [ -123.366077028999882, 48.509557143000123 ], [ -123.366144487999946, 48.510005181000061 ], [ -123.366147166999923, 48.510023048000079 ], [ -123.366235186000011, 48.510607806000102 ], [ -123.365160891999949, 48.510603604000089 ], [ -123.365056509999988, 48.5114323970001 ], [ -123.365042894999974, 48.511554710000027 ], [ -123.364891867999944, 48.511717795000088 ], [ -123.364845213999942, 48.511826608000057 ], [ -123.364788480999934, 48.513036199000105 ], [ -123.36467581, 48.513119010000032 ], [ -123.364298797999979, 48.51289778600006 ], [ -123.36343180099999, 48.512641807000072 ], [ -123.363313448999961, 48.512598092000154 ], [ -123.362970909999945, 48.51247160900008 ], [ -123.362760692, 48.512357128000147 ], [ -123.36240021299993, 48.512160806000082 ], [ -123.362043218999972, 48.511848899000043 ], [ -123.361915025999963, 48.511417560000098 ], [ -123.361809993999913, 48.51106409300008 ], [ -123.361591691999962, 48.510543790000042 ], [ -123.362069413999905, 48.51041410900006 ], [ -123.362470401999929, 48.510178796000027 ], [ -123.362592510999932, 48.510051100000155 ], [ -123.362648393999962, 48.50989648500007 ], [ -123.362651291999939, 48.509675605000048 ], [ -123.362678595999981, 48.509284097000013 ], [ -123.362854530999968, 48.508869098000034 ], [ -123.362345302999969, 48.508596794000034 ], [ -123.362125413999948, 48.508419983000046 ], [ -123.362389800999964, 48.508235403000121 ], [ -123.362658607999904, 48.507899490000064 ], [ -123.36266129099999, 48.507439702000077 ], [ -123.362663455999979, 48.506998491000076 ], [ -123.362665990999986, 48.506485803000025 ], [ -123.365266540999983, 48.506459568000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91912500", "BldgCostT": "61650000", "sL_LossRatio": "0.942399177876927", "sL_AssetLoss": "131016.88", "sL_BldgLoss": "123470.2", "sL_StrLoss": "105300.7", "sL_NStrLoss": "18169.5", "sL_ContLoss": "7546.68", "geom_point": "0101000020E61000001100562640D75EC0704772D881404840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360356687999953, 48.504639300000079 ], [ -123.360524090999945, 48.503772502000082 ], [ -123.360521706000029, 48.503283685000049 ], [ -123.360350995999951, 48.502999884000062 ], [ -123.35969960300001, 48.502322702000065 ], [ -123.360609967999935, 48.501925482000104 ], [ -123.360971028999927, 48.50176796000008 ], [ -123.361486606999961, 48.501543005000094 ], [ -123.361962378, 48.50137182000006 ], [ -123.362211796999986, 48.50155209200004 ], [ -123.362460985000013, 48.50167978200006 ], [ -123.363023687999913, 48.501968121000104 ], [ -123.364335779999948, 48.50231000900007 ], [ -123.364875515999984, 48.502568701 ], [ -123.36523022499992, 48.502785034000034 ], [ -123.365339399999968, 48.502851586000084 ], [ -123.36553851599993, 48.503017416000013 ], [ -123.365652023999971, 48.503111906000122 ], [ -123.365877405999981, 48.503383491000065 ], [ -123.366126902999937, 48.503926212000039 ], [ -123.366206509999984, 48.504388007000081 ], [ -123.366171576999932, 48.504579002000106 ], [ -123.366167589, 48.504600805000109 ], [ -123.36613586599999, 48.504776162000041 ], [ -123.366108203999929, 48.504929048000101 ], [ -123.365917507999953, 48.505983183000041 ], [ -123.365266540999983, 48.506459568000054 ], [ -123.362665990999986, 48.506485803000025 ], [ -123.3626841009999, 48.505555687000026 ], [ -123.36268811099994, 48.505363701000071 ], [ -123.362591395999971, 48.505158404000063 ], [ -123.362270798999944, 48.504849290000045 ], [ -123.361799010999931, 48.504658989000092 ], [ -123.361525200999921, 48.504600802000034 ], [ -123.36070759399999, 48.504598508000043 ], [ -123.360356687999953, 48.504639300000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151613917", "BldgCostT": "94656667", "sL_LossRatio": "0.90780521874155", "sL_AssetLoss": "144669.36", "sL_BldgLoss": "131331.6", "sL_StrLoss": "104306.3", "sL_NStrLoss": "27025.3", "sL_ContLoss": "13337.76", "geom_point": "0101000020E6100000211BED5D28D85EC0448FA530EB3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.377673322999897, 48.485007598000074 ], [ -123.377337110999974, 48.484956003000043 ], [ -123.376888806999901, 48.484952102000086 ], [ -123.376286511999979, 48.485021001000071 ], [ -123.375432334999957, 48.485130615000031 ], [ -123.374849661, 48.485205366000045 ], [ -123.37483640100001, 48.485207068000172 ], [ -123.37465629399999, 48.484770609000059 ], [ -123.37456160699999, 48.484481486000043 ], [ -123.37468778499999, 48.483887686000109 ], [ -123.374216304999948, 48.483815596000063 ], [ -123.373994198999981, 48.483728896000045 ], [ -123.373848087999974, 48.483635098000029 ], [ -123.373508084999926, 48.483238091000025 ], [ -123.373287112999947, 48.482863795000064 ], [ -123.372961792999931, 48.481913400000082 ], [ -123.373630410999965, 48.481804163000071 ], [ -123.374365909999938, 48.481684010000066 ], [ -123.375104510999932, 48.481559415000092 ], [ -123.375657206999932, 48.481466182000069 ], [ -123.375840766999943, 48.481432479000077 ], [ -123.376720445, 48.48127088899999 ], [ -123.378049612999959, 48.481026678000013 ], [ -123.378272816, 48.481422380000055 ], [ -123.378500212999967, 48.481825556000068 ], [ -123.378734681999973, 48.48224120200009 ], [ -123.378891390999968, 48.482458700000095 ], [ -123.379397565999952, 48.483162485000044 ], [ -123.379725388999972, 48.48361831000004 ], [ -123.380003001999981, 48.483922720000123 ], [ -123.38001131599999, 48.483929875000086 ], [ -123.380476194, 48.484331103000073 ], [ -123.38241859099999, 48.485894008000116 ], [ -123.381929491999983, 48.486308528000045 ], [ -123.38189131099999, 48.486340899000112 ], [ -123.38173319500001, 48.486634495000075 ], [ -123.381739190999951, 48.486706375000075 ], [ -123.381753482999898, 48.486877609000061 ], [ -123.381104968, 48.486963544000091 ], [ -123.38081850199994, 48.487001488000047 ], [ -123.380675291, 48.486757212000029 ], [ -123.380496753999935, 48.486583278000055 ], [ -123.380304898999924, 48.486396410000076 ], [ -123.379896901, 48.486129302000073 ], [ -123.379838183999979, 48.486102594000045 ], [ -123.379581021999954, 48.485985646000131 ], [ -123.379162905999962, 48.485795505000041 ], [ -123.378859964999933, 48.485641869000098 ], [ -123.378709672999946, 48.485565661000059 ], [ -123.378357401999949, 48.485386986000037 ], [ -123.378013392999932, 48.48513589100002 ], [ -123.377673322999897, 48.485007598000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150810666", "BldgCostT": "100056666", "sL_LossRatio": "0.85872904587793", "sL_AssetLoss": "69334.21", "sL_BldgLoss": "59539.3", "sL_StrLoss": "49070.2", "sL_NStrLoss": "10469.1", "sL_ContLoss": "9794.91", "geom_point": "0101000020E61000007EAD431C08D85EC0AF6721644D3E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.370962974999955, 48.486491494000084 ], [ -123.370606290999973, 48.486419597000094 ], [ -123.370502528999936, 48.4864188560001 ], [ -123.370201115999961, 48.486416696000042 ], [ -123.369868203999928, 48.486500400000082 ], [ -123.369648003999913, 48.486583611000093 ], [ -123.37015121899999, 48.485478601000096 ], [ -123.371216496999978, 48.4853597930001 ], [ -123.371589189999938, 48.485337512000115 ], [ -123.372176974999888, 48.48558859100018 ], [ -123.372205481999913, 48.485600795000025 ], [ -123.372408922999938, 48.485634692000076 ], [ -123.37278541799995, 48.48549699900007 ], [ -123.373177508, 48.485417501000086 ], [ -123.373675406999922, 48.485405619000083 ], [ -123.37379030799994, 48.485402909000065 ], [ -123.373929814999883, 48.485323397000087 ], [ -123.374554054, 48.485243312000073 ], [ -123.37483640100001, 48.485207068000172 ], [ -123.374849661, 48.485205366000045 ], [ -123.375432334999957, 48.485130615000031 ], [ -123.376286511999979, 48.485021001000071 ], [ -123.376888806999901, 48.484952102000086 ], [ -123.377337110999974, 48.484956003000043 ], [ -123.377673322999897, 48.485007598000074 ], [ -123.378013392999932, 48.48513589100002 ], [ -123.378357401999949, 48.485386986000037 ], [ -123.378709672999946, 48.485565661000059 ], [ -123.378859964999933, 48.485641869000098 ], [ -123.379162905999962, 48.485795505000041 ], [ -123.379581021999954, 48.485985646000131 ], [ -123.379838183999979, 48.486102594000045 ], [ -123.379896901, 48.486129302000073 ], [ -123.380304898999924, 48.486396410000076 ], [ -123.380496753999935, 48.486583278000055 ], [ -123.380675291, 48.486757212000029 ], [ -123.38081850199994, 48.487001488000047 ], [ -123.380314506999966, 48.487074699000111 ], [ -123.380090577999951, 48.487141299 ], [ -123.379772893999927, 48.487316512000056 ], [ -123.37930193699998, 48.48769767400006 ], [ -123.379016100999948, 48.487929004000129 ], [ -123.378610293999927, 48.48813271800006 ], [ -123.378167998999956, 48.488239012000115 ], [ -123.377865546999956, 48.488267004000114 ], [ -123.376939005999972, 48.48835279400005 ], [ -123.376277482999924, 48.488422139000072 ], [ -123.375985009999951, 48.488452807000087 ], [ -123.374932497999978, 48.488794599000101 ], [ -123.374038141999961, 48.48900105700011 ], [ -123.374004577999955, 48.489008798000057 ], [ -123.373985717, 48.488978470000113 ], [ -123.373813577999982, 48.488702001000071 ], [ -123.372926403999912, 48.48801449500008 ], [ -123.372742504999934, 48.487798094000041 ], [ -123.372717412999975, 48.487690993000051 ], [ -123.372672903999984, 48.487519488000046 ], [ -123.3715179899999, 48.486786615000092 ], [ -123.370962974999955, 48.486491494000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69586034", "BldgCostT": "45995547", "sL_LossRatio": "0.808149889289763", "sL_AssetLoss": "99019.75", "sL_BldgLoss": "80022.8", "sL_StrLoss": "62196", "sL_NStrLoss": "17826.8", "sL_ContLoss": "18996.95", "geom_point": "0101000020E6100000E25D70FECDD75EC00F70DE8BF13D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.372176974999888, 48.48558859100018 ], [ -123.371589189999938, 48.485337512000115 ], [ -123.371216496999978, 48.4853597930001 ], [ -123.37015121899999, 48.485478601000096 ], [ -123.369143079999944, 48.483295739000035 ], [ -123.370193297999947, 48.483038598000078 ], [ -123.370066306999959, 48.482408798000144 ], [ -123.371582482999912, 48.482156003000078 ], [ -123.372961792999931, 48.481913400000082 ], [ -123.373287112999947, 48.482863795000064 ], [ -123.373508084999926, 48.483238091000025 ], [ -123.373848087999974, 48.483635098000029 ], [ -123.373994198999981, 48.483728896000045 ], [ -123.374216304999948, 48.483815596000063 ], [ -123.37468778499999, 48.483887686000109 ], [ -123.37456160699999, 48.484481486000043 ], [ -123.37465629399999, 48.484770609000059 ], [ -123.37483640100001, 48.485207068000172 ], [ -123.374554054, 48.485243312000073 ], [ -123.373929814999883, 48.485323397000087 ], [ -123.37379030799994, 48.485402909000065 ], [ -123.373675406999922, 48.485405619000083 ], [ -123.373177508, 48.485417501000086 ], [ -123.37278541799995, 48.48549699900007 ], [ -123.372408922999938, 48.485634692000076 ], [ -123.372205481999913, 48.485600795000025 ], [ -123.372176974999888, 48.48558859100018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137415416", "BldgCostT": "90821666", "sL_LossRatio": "0.959173919998513", "sL_AssetLoss": "151719.93", "sL_BldgLoss": "145525.8", "sL_StrLoss": "129359.5", "sL_NStrLoss": "16166.3", "sL_ContLoss": "6194.13", "geom_point": "0101000020E61000003C2B9244A9D75EC025979C66C33E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.370502528999936, 48.4864188560001 ], [ -123.370606290999973, 48.486419597000094 ], [ -123.370962974999955, 48.486491494000084 ], [ -123.3715179899999, 48.486786615000092 ], [ -123.372672903999984, 48.487519488000046 ], [ -123.372717412999975, 48.487690993000051 ], [ -123.372742504999934, 48.487798094000041 ], [ -123.372926403999912, 48.48801449500008 ], [ -123.373813577999982, 48.488702001000071 ], [ -123.373985717, 48.488978470000113 ], [ -123.374004577999955, 48.489008798000057 ], [ -123.37363488699999, 48.489096101000044 ], [ -123.373188190999912, 48.489306010000121 ], [ -123.37296781699996, 48.489455596000077 ], [ -123.372788214999943, 48.489647692000084 ], [ -123.372724473999966, 48.489815318000097 ], [ -123.372704308999957, 48.48986840599999 ], [ -123.372687190999969, 48.490078832000094 ], [ -123.372682981999901, 48.490130297000057 ], [ -123.372972179999962, 48.49105180400003 ], [ -123.372970610999971, 48.491085855000044 ], [ -123.372951701999938, 48.491494005000106 ], [ -123.372889479999955, 48.491688105000073 ], [ -123.372770184999965, 48.491890806000079 ], [ -123.372598203999985, 48.492091209000151 ], [ -123.372472074999962, 48.492169787000059 ], [ -123.372111103999899, 48.492394684000054 ], [ -123.371700796999974, 48.492557699000052 ], [ -123.3703083179999, 48.492911798000129 ], [ -123.369337214, 48.493365602000097 ], [ -123.368632880999925, 48.493710698000058 ], [ -123.368313374999929, 48.493916399000064 ], [ -123.368137396999956, 48.494187992000064 ], [ -123.366694692999985, 48.49352729000001 ], [ -123.366382980999958, 48.493350904000124 ], [ -123.365851563999968, 48.49285595700006 ], [ -123.365721504999954, 48.492734809000083 ], [ -123.365925199999978, 48.492556240000056 ], [ -123.36594450599992, 48.49253931200014 ], [ -123.366376976999987, 48.492052307000073 ], [ -123.366453612000015, 48.491842296000065 ], [ -123.366211478999972, 48.491773101000071 ], [ -123.366033780999885, 48.491567696000089 ], [ -123.365939058999984, 48.49136986400007 ], [ -123.365658495999966, 48.490783880000031 ], [ -123.36549408899999, 48.490440608 ], [ -123.366037690999946, 48.490335090000052 ], [ -123.366370547999963, 48.490270872000039 ], [ -123.36890159799999, 48.487747903000049 ], [ -123.368943184999949, 48.487535198000039 ], [ -123.369281405999985, 48.486848413000111 ], [ -123.369559110999958, 48.486617193 ], [ -123.369648003999913, 48.486583611000093 ], [ -123.369868203999928, 48.486500400000082 ], [ -123.370201115999961, 48.486416696000042 ], [ -123.370502528999936, 48.4864188560001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147469250", "BldgCostT": "99965000", "sL_LossRatio": "0.952046326895201", "sL_AssetLoss": "205375.3", "sL_BldgLoss": "195526.8", "sL_StrLoss": "163244.8", "sL_NStrLoss": "32282", "sL_ContLoss": "9848.5", "geom_point": "0101000020E61000000177D13E73D75EC0BC2C60E1A83F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.361962378, 48.50137182000006 ], [ -123.36221280299999, 48.497374396000112 ], [ -123.362423098999955, 48.496922267000045 ], [ -123.362566013999967, 48.496615004000034 ], [ -123.362771301999899, 48.496322015000054 ], [ -123.363106320999947, 48.495843911000073 ], [ -123.363703703999974, 48.495114807000071 ], [ -123.365721504999954, 48.492734809000083 ], [ -123.365851563999968, 48.49285595700006 ], [ -123.366382980999958, 48.493350904000124 ], [ -123.366694692999985, 48.49352729000001 ], [ -123.368137396999956, 48.494187992000064 ], [ -123.368017099999975, 48.494529505000024 ], [ -123.36835620199993, 48.494602795000112 ], [ -123.36875789, 48.494619984000074 ], [ -123.369126601999966, 48.494599404000049 ], [ -123.369423198999968, 48.494683406000043 ], [ -123.369622098999969, 48.494824489000102 ], [ -123.369697570999932, 48.494905316000072 ], [ -123.36986691599999, 48.495086593000053 ], [ -123.370028405, 48.495269205000085 ], [ -123.37040349599999, 48.495884409000112 ], [ -123.370830397999939, 48.495861703000116 ], [ -123.371083988999928, 48.495870707000066 ], [ -123.371696406999931, 48.496156405000121 ], [ -123.37277702399993, 48.496777570000098 ], [ -123.372822515999957, 48.496803701000083 ], [ -123.372910092999945, 48.496855496000066 ], [ -123.37298227799999, 48.496879503000052 ], [ -123.373584096999977, 48.49707961400005 ], [ -123.373439856999966, 48.497441056000135 ], [ -123.373398789999925, 48.497543910000047 ], [ -123.373382050999936, 48.497589298000037 ], [ -123.373354286999984, 48.49766449600007 ], [ -123.372808269999922, 48.497666293000172 ], [ -123.372699208999947, 48.497610406000042 ], [ -123.372616846999932, 48.497619519000075 ], [ -123.372496068999979, 48.497632894000034 ], [ -123.371954086999921, 48.497692899000072 ], [ -123.3712437, 48.49783128800005 ], [ -123.370649, 48.498028484000059 ], [ -123.369949003999949, 48.49834388900009 ], [ -123.369559540999987, 48.498522212000118 ], [ -123.367635899999925, 48.499402786000189 ], [ -123.367348997999954, 48.499604901000062 ], [ -123.366866282000018, 48.500002828000099 ], [ -123.36667901399997, 48.500157193000049 ], [ -123.366175302999949, 48.500586551000076 ], [ -123.36611099000001, 48.500722018000076 ], [ -123.365707843999985, 48.501020376000049 ], [ -123.365383660999925, 48.50115020100003 ], [ -123.365048499999929, 48.501284434000084 ], [ -123.364438387999911, 48.501368450000079 ], [ -123.364024052000033, 48.501358152000066 ], [ -123.363568928999925, 48.501328799000078 ], [ -123.363442994999929, 48.501285108000062 ], [ -123.362870317999963, 48.501254637000052 ], [ -123.362437077999957, 48.501269098000122 ], [ -123.361962378, 48.50137182000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199629001", "BldgCostT": "129420001", "sL_LossRatio": "0.84585662484642", "sL_AssetLoss": "618161.5", "sL_BldgLoss": "522876", "sL_StrLoss": "354074", "sL_NStrLoss": "168802", "sL_ContLoss": "95285.5", "geom_point": "0101000020E6100000698BCFF0E8D65EC0A1F45C11423F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.354817994999962, 48.502809708000079 ], [ -123.352625614999951, 48.502237378000068 ], [ -123.351048993999953, 48.50225833000011 ], [ -123.347334082999936, 48.502278898000029 ], [ -123.34568936699999, 48.502161498000063 ], [ -123.344045361999974, 48.502466252000033 ], [ -123.344408, 48.50169582400008 ], [ -123.345772542999953, 48.499069927000065 ], [ -123.345780248999915, 48.499057371000063 ], [ -123.34685686899995, 48.499084313000047 ], [ -123.346794016999965, 48.500202786000052 ], [ -123.34715862299997, 48.500211909000065 ], [ -123.347141163999936, 48.500522644000071 ], [ -123.347401794999911, 48.500529163000088 ], [ -123.347589279999951, 48.497191868000101 ], [ -123.34764696699996, 48.497193311000075 ], [ -123.347722897999986, 48.495841546000079 ], [ -123.348170721999935, 48.495036321000036 ], [ -123.348230053999927, 48.495037805000045 ], [ -123.348236811999968, 48.494917482000091 ], [ -123.348348096999985, 48.494717374000096 ], [ -123.348618640999973, 48.494724139000049 ], [ -123.348649447999918, 48.494175495000043 ], [ -123.348875196999984, 48.493769551000092 ], [ -123.351450900999964, 48.493833922000071 ], [ -123.3514500499999, 48.493710795000034 ], [ -123.351498703999937, 48.493710646000075 ], [ -123.351515937999949, 48.493684761000161 ], [ -123.351728338999976, 48.493647162000123 ], [ -123.352016195999965, 48.493709065000104 ], [ -123.352262149999945, 48.493708313000042 ], [ -123.352260280999957, 48.493438426000083 ], [ -123.352417875999905, 48.49343794300006 ], [ -123.352450011999963, 48.492864789000095 ], [ -123.351274245999917, 48.492835423000031 ], [ -123.351322868999929, 48.491968538000087 ], [ -123.355660359999931, 48.490542942000047 ], [ -123.356088996999944, 48.490470678000122 ], [ -123.356073594999899, 48.490523501000027 ], [ -123.355832741999947, 48.491086134000042 ], [ -123.355758098999956, 48.491260492000052 ], [ -123.355761204999951, 48.49137329100008 ], [ -123.355873204999952, 48.491376080000123 ], [ -123.356958767999984, 48.491705524000096 ], [ -123.357498105000019, 48.491869207000015 ], [ -123.360269332999962, 48.491862400000038 ], [ -123.36039530799998, 48.491862091000037 ], [ -123.360381590999978, 48.490609204000094 ], [ -123.360285096, 48.489797114000083 ], [ -123.360270580999952, 48.489031110000035 ], [ -123.360266307999922, 48.488804696000116 ], [ -123.359781473999959, 48.486836717000095 ], [ -123.359928669999988, 48.486840383000121 ], [ -123.359927552, 48.486682427000062 ], [ -123.359742327, 48.48667781400006 ], [ -123.359218962999975, 48.484553226000067 ], [ -123.358522254999968, 48.481724347000139 ], [ -123.360120683999966, 48.482347406000066 ], [ -123.360258287999955, 48.482589507000043 ], [ -123.360250805999911, 48.483516701000063 ], [ -123.360470398999936, 48.483938197000079 ], [ -123.360734996999966, 48.484918097000062 ], [ -123.361035102999949, 48.485205786000073 ], [ -123.361157954999968, 48.485234861000038 ], [ -123.361153528999949, 48.485314071000111 ], [ -123.363165762999955, 48.485307739000127 ], [ -123.363164013999921, 48.485062700000107 ], [ -123.36319910099995, 48.485054811000047 ], [ -123.363345208999959, 48.484819808000069 ], [ -123.363222010999934, 48.484523599000092 ], [ -123.363159938999956, 48.484491936000104 ], [ -123.363158056, 48.484228190000074 ], [ -123.362752080999954, 48.48422947100002 ], [ -123.362748232999962, 48.48368969500013 ], [ -123.362342261999984, 48.483690975000101 ], [ -123.362340339999918, 48.483421087000089 ], [ -123.362222415999952, 48.483421458000137 ], [ -123.363444859999973, 48.482936706000075 ], [ -123.363809089, 48.482876668000138 ], [ -123.364054219999971, 48.482875892000024 ], [ -123.364056452999932, 48.482835892 ], [ -123.36785077899998, 48.482210351000127 ], [ -123.368215110999984, 48.482224010000095 ], [ -123.369133822999942, 48.482261701000041 ], [ -123.369158599999977, 48.482262682000034 ], [ -123.369283334, 48.48228762900002 ], [ -123.369766426999973, 48.482384210000056 ], [ -123.370066306999959, 48.482408798000144 ], [ -123.370193297999947, 48.483038598000078 ], [ -123.369143079999944, 48.483295739000035 ], [ -123.37015121899999, 48.485478601000096 ], [ -123.369648003999913, 48.486583611000093 ], [ -123.369559110999958, 48.486617193 ], [ -123.369281405999985, 48.486848413000111 ], [ -123.368943184999949, 48.487535198000039 ], [ -123.36890159799999, 48.487747903000049 ], [ -123.366370547999963, 48.490270872000039 ], [ -123.366037690999946, 48.490335090000052 ], [ -123.36549408899999, 48.490440608 ], [ -123.365658495999966, 48.490783880000031 ], [ -123.365939058999984, 48.49136986400007 ], [ -123.366033780999885, 48.491567696000089 ], [ -123.366211478999972, 48.491773101000071 ], [ -123.366453612000015, 48.491842296000065 ], [ -123.366376976999987, 48.492052307000073 ], [ -123.36594450599992, 48.49253931200014 ], [ -123.365925199999978, 48.492556240000056 ], [ -123.365721504999954, 48.492734809000083 ], [ -123.363703703999974, 48.495114807000071 ], [ -123.363106320999947, 48.495843911000073 ], [ -123.362771301999899, 48.496322015000054 ], [ -123.362566013999967, 48.496615004000034 ], [ -123.362423098999955, 48.496922267000045 ], [ -123.36221280299999, 48.497374396000112 ], [ -123.361962378, 48.50137182000006 ], [ -123.361486606999961, 48.501543005000094 ], [ -123.360971028999927, 48.50176796000008 ], [ -123.360609967999935, 48.501925482000104 ], [ -123.35969960300001, 48.502322702000065 ], [ -123.358134483999933, 48.503006842000111 ], [ -123.357995725, 48.503067503000068 ], [ -123.357483797999976, 48.503206195000097 ], [ -123.357387593999988, 48.503224132000113 ], [ -123.35648001399997, 48.503393106000104 ], [ -123.356324278999963, 48.503415818000093 ], [ -123.355935474999953, 48.503472554000084 ], [ -123.355509765999969, 48.503534660000085 ], [ -123.354252165999952, 48.503718069000065 ], [ -123.354817994999962, 48.502809708000079 ] ], [ [ -123.361204844999961, 48.495030062000104 ], [ -123.361195259999974, 48.493680628000035 ], [ -123.360789210999911, 48.493681902000041 ], [ -123.360786881999942, 48.493353787000075 ], [ -123.360393362999901, 48.493343991000131 ], [ -123.359242618999971, 48.493315336000094 ], [ -123.359216463999971, 48.493783050000054 ], [ -123.358016360999954, 48.493753153000057 ], [ -123.358002343999942, 48.494003669000108 ], [ -123.359423307999975, 48.49403906600002 ], [ -123.359367568, 48.495035814000047 ], [ -123.36039114499999, 48.495032613000099 ], [ -123.361204844999961, 48.495030062000104 ] ], [ [ -123.365619121999913, 48.487729012000024 ], [ -123.365617180999934, 48.487459125000079 ], [ -123.36549755599998, 48.4874595060001 ], [ -123.365482497999935, 48.487729446000053 ], [ -123.365619121999913, 48.487729012000024 ] ], [ [ -123.364798669999956, 48.48655378300009 ], [ -123.364797437999982, 48.486382154000125 ], [ -123.363985453999945, 48.486384723000093 ], [ -123.363986520999916, 48.486533592000036 ], [ -123.364798669999956, 48.48655378300009 ] ], [ [ -123.36601152899999, 48.48583851300009 ], [ -123.36600570200001, 48.485028851000038 ], [ -123.367629625999953, 48.485023675000036 ], [ -123.367631576999926, 48.48529356300012 ], [ -123.369255506999977, 48.485288364000048 ], [ -123.369248947999978, 48.484384650000045 ], [ -123.36560377799999, 48.484294126000094 ], [ -123.365606371999903, 48.484247637000067 ], [ -123.364868853999923, 48.484229306000053 ], [ -123.364872459999944, 48.484164685000096 ], [ -123.364781518999948, 48.484162424000047 ], [ -123.364793567, 48.485842378 ], [ -123.36601152899999, 48.48583851300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150123417", "BldgCostT": "94331667", "sL_LossRatio": "0.906971880341347", "sL_AssetLoss": "156924.38", "sL_BldgLoss": "142326", "sL_StrLoss": "117000.3", "sL_NStrLoss": "25325.7", "sL_ContLoss": "14598.38", "geom_point": "0101000020E61000000A8CEEE6CAD75EC0B4CFD7EA7A3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.364984286999942, 48.479431306000087 ], [ -123.36744940199992, 48.479116482000038 ], [ -123.3680412, 48.479041010000124 ], [ -123.368293202999922, 48.479076085000038 ], [ -123.368414095999952, 48.479137699000077 ], [ -123.3686774, 48.479527494000081 ], [ -123.368779312999905, 48.479613003000075 ], [ -123.368918909999962, 48.479653503000087 ], [ -123.369189210999963, 48.479650182000057 ], [ -123.371324288999986, 48.479345193000093 ], [ -123.371449089999913, 48.479286989000101 ], [ -123.37177681899999, 48.479029097000144 ], [ -123.371830980999945, 48.478905104000077 ], [ -123.371753397999896, 48.478478503000048 ], [ -123.372485403999917, 48.478370854000097 ], [ -123.373259611000023, 48.478256985 ], [ -123.373514288999942, 48.478535603000054 ], [ -123.373695594999973, 48.478846699000059 ], [ -123.373984978999914, 48.478883254000046 ], [ -123.374033589999939, 48.478889399000124 ], [ -123.37474040699999, 48.478810395000032 ], [ -123.376258924999931, 48.478538708000045 ], [ -123.376602651999974, 48.478868340000083 ], [ -123.376707690999979, 48.478969103000111 ], [ -123.376750339999958, 48.47903253100003 ], [ -123.377022830999977, 48.479437827000069 ], [ -123.377231794999943, 48.479748611000026 ], [ -123.378049612999959, 48.481026678000013 ], [ -123.376720445, 48.48127088899999 ], [ -123.375840766999943, 48.481432479000077 ], [ -123.375657206999932, 48.481466182000069 ], [ -123.375104510999932, 48.481559415000092 ], [ -123.374365909999938, 48.481684010000066 ], [ -123.373630410999965, 48.481804163000071 ], [ -123.372961792999931, 48.481913400000082 ], [ -123.371582482999912, 48.482156003000078 ], [ -123.370066306999959, 48.482408798000144 ], [ -123.369635339999917, 48.480972800000053 ], [ -123.365454473999975, 48.481435785000045 ], [ -123.364984286999942, 48.479431306000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165852500", "BldgCostT": "109490000", "sL_LossRatio": "0.959365305218471", "sL_AssetLoss": "166226.67", "sL_BldgLoss": "159472.1", "sL_StrLoss": "138121.3", "sL_NStrLoss": "21350.8", "sL_ContLoss": "6754.57", "geom_point": "0101000020E6100000D54BDFADE4D55EC0719F5E21DA3C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.344791794999978, 48.477547711000071 ], [ -123.344011885, 48.477528120000095 ], [ -123.343647991999916, 48.477519008000051 ], [ -123.342807653999927, 48.477519225000094 ], [ -123.3417596, 48.477519487000087 ], [ -123.341237728999971, 48.477512795000059 ], [ -123.341028004999885, 48.477510101000057 ], [ -123.340405314999956, 48.477415195000091 ], [ -123.340078800999919, 48.477264491000042 ], [ -123.339673002999973, 48.47688779200012 ], [ -123.339629491999943, 48.476847403000065 ], [ -123.339462102999974, 48.476773811000051 ], [ -123.339210391, 48.476734112000081 ], [ -123.33903869, 48.476752939000072 ], [ -123.338795780999988, 48.476779599000061 ], [ -123.337591611999969, 48.47693689700008 ], [ -123.336995794999936, 48.476507103000102 ], [ -123.336938643999943, 48.476459837000078 ], [ -123.336275019999931, 48.47591119900008 ], [ -123.335918211999982, 48.475616189000107 ], [ -123.335532092999955, 48.475291635000055 ], [ -123.335381814999934, 48.475165286000028 ], [ -123.335325912999949, 48.475078301000039 ], [ -123.335850107999974, 48.474717204000044 ], [ -123.336274313999937, 48.474571904000051 ], [ -123.337221643999925, 48.474308393000058 ], [ -123.33978862, 48.473940985000112 ], [ -123.34012947, 48.473847945000102 ], [ -123.341230465999956, 48.473624724000139 ], [ -123.342111131999985, 48.473535550000051 ], [ -123.342368513999986, 48.473322603000064 ], [ -123.342593210999937, 48.474106498000047 ], [ -123.343840992, 48.474086302000018 ], [ -123.343707574999897, 48.473617794000106 ], [ -123.343556091999943, 48.47308567200011 ], [ -123.343551112999975, 48.473068199000089 ], [ -123.343591642999925, 48.47291249200002 ], [ -123.34359240299996, 48.472909596000079 ], [ -123.343597522999943, 48.472906185000106 ], [ -123.343802905999965, 48.472768793000093 ], [ -123.34445856, 48.472680533000066 ], [ -123.344673952999969, 48.472650875000056 ], [ -123.346869065999911, 48.472355949000104 ], [ -123.346852470999977, 48.472603536000101 ], [ -123.34664494899998, 48.473166814000074 ], [ -123.346521548999988, 48.473501622000128 ], [ -123.346359172999954, 48.473942435000012 ], [ -123.346031770999957, 48.474831066000071 ], [ -123.34602221699997, 48.475049059000106 ], [ -123.346267192999932, 48.475905565000062 ], [ -123.346411156999935, 48.476390637000058 ], [ -123.346545465999952, 48.47684313399999 ], [ -123.34657332399992, 48.476893217000089 ], [ -123.346754033999929, 48.477218081000039 ], [ -123.34718026099999, 48.477565095000067 ], [ -123.347216681999981, 48.477662486000078 ], [ -123.34564357499994, 48.477869299000083 ], [ -123.345042084999989, 48.477948917000013 ], [ -123.344791794999978, 48.477547711000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107089583", "BldgCostT": "67598333", "sL_LossRatio": "0.882498882552912", "sL_AssetLoss": "111495.212", "sL_BldgLoss": "98394.4", "sL_StrLoss": "77242", "sL_NStrLoss": "21152.4", "sL_ContLoss": "13100.812", "geom_point": "0101000020E610000017747B4923D75EC0C061DCEC133D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.360823808999911, 48.474404189000047 ], [ -123.362349002999935, 48.474180690000026 ], [ -123.362480997999938, 48.474621317000064 ], [ -123.362570707999964, 48.474925592000091 ], [ -123.362779810999953, 48.475681087000119 ], [ -123.363073413999956, 48.476640597000042 ], [ -123.363346677999971, 48.477612983000064 ], [ -123.363380560999985, 48.477733586000078 ], [ -123.363426122999954, 48.47789560100005 ], [ -123.36370523299999, 48.478890815000035 ], [ -123.363719018999959, 48.478939893000096 ], [ -123.36388120099997, 48.479519309000075 ], [ -123.361563314999898, 48.479808792000064 ], [ -123.360289676999955, 48.479971998000032 ], [ -123.359654201999916, 48.47594861000006 ], [ -123.359630867999911, 48.475259513000047 ], [ -123.359625063999943, 48.475088475000078 ], [ -123.359610116999988, 48.474647850000096 ], [ -123.359606796999941, 48.474549702000104 ], [ -123.359751877999926, 48.474532346000061 ], [ -123.35997138299993, 48.474506102000134 ], [ -123.360823808999911, 48.474404189000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142130667", "BldgCostT": "87821667", "sL_LossRatio": "0.808049662696874", "sL_AssetLoss": "438478", "sL_BldgLoss": "354312", "sL_StrLoss": "224853", "sL_NStrLoss": "129459", "sL_ContLoss": "84166", "geom_point": "0101000020E6100000A0B0DDA0AAD65EC0B3B353398E3D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.356958767999984, 48.491705524000096 ], [ -123.355873204999952, 48.491376080000123 ], [ -123.355761204999951, 48.49137329100008 ], [ -123.355758098999956, 48.491260492000052 ], [ -123.355832741999947, 48.491086134000042 ], [ -123.356073594999899, 48.490523501000027 ], [ -123.356088996999944, 48.490470678000122 ], [ -123.355660359999931, 48.490542942000047 ], [ -123.355910345999973, 48.489315969000117 ], [ -123.355398310999959, 48.489300001000103 ], [ -123.35143675099999, 48.489938064000043 ], [ -123.351469007999953, 48.489362914000083 ], [ -123.351349755999962, 48.489359935000074 ], [ -123.351392639999986, 48.48859528000002 ], [ -123.348823710999937, 48.488531070000107 ], [ -123.348824935999986, 48.488509264000072 ], [ -123.347936632999989, 48.488487046000039 ], [ -123.34725567299995, 48.485988006000049 ], [ -123.347283224999927, 48.485497454 ], [ -123.347120902999947, 48.48549339100002 ], [ -123.346567806999971, 48.483463346000043 ], [ -123.346543535, 48.483303287000076 ], [ -123.346468762999947, 48.482452132000091 ], [ -123.346199489999961, 48.482231498000054 ], [ -123.345042084999989, 48.477948917000013 ], [ -123.34564357499994, 48.477869299000083 ], [ -123.347216681999981, 48.477662486000078 ], [ -123.34718026099999, 48.477565095000067 ], [ -123.346754033999929, 48.477218081000039 ], [ -123.34657332399992, 48.476893217000089 ], [ -123.346545465999952, 48.47684313399999 ], [ -123.346411156999935, 48.476390637000058 ], [ -123.346267192999932, 48.475905565000062 ], [ -123.34602221699997, 48.475049059000106 ], [ -123.346031770999957, 48.474831066000071 ], [ -123.346359172999954, 48.473942435000012 ], [ -123.346521548999988, 48.473501622000128 ], [ -123.34664494899998, 48.473166814000074 ], [ -123.346852470999977, 48.472603536000101 ], [ -123.346869065999911, 48.472355949000104 ], [ -123.346868745000023, 48.472346915000109 ], [ -123.34686207299994, 48.472168108000091 ], [ -123.346861624999946, 48.472156002000055 ], [ -123.346854542999907, 48.471965134000129 ], [ -123.346854896999972, 48.471955421000068 ], [ -123.346857749999984, 48.471884060000036 ], [ -123.346936694999954, 48.471897860000126 ], [ -123.34808152399998, 48.472097748000103 ], [ -123.348685074999977, 48.472124566000048 ], [ -123.348955146999941, 48.472097649000013 ], [ -123.349171381999952, 48.472076099000077 ], [ -123.351143419, 48.471879450000088 ], [ -123.351159820999925, 48.471929827000039 ], [ -123.351175662999978, 48.471978541000112 ], [ -123.352478208999912, 48.471799182000048 ], [ -123.35261647699997, 48.471742204000066 ], [ -123.352918559000017, 48.47170197800007 ], [ -123.353979628, 48.471553507000046 ], [ -123.354002372999915, 48.471550325000138 ], [ -123.355089723999967, 48.471398173000111 ], [ -123.35642816699999, 48.471085021000142 ], [ -123.356674416999965, 48.471027410000062 ], [ -123.356985405000032, 48.470986008000111 ], [ -123.35735887, 48.47093627800006 ], [ -123.35813617599996, 48.470970990000104 ], [ -123.357979309999948, 48.470998640000055 ], [ -123.357909615999944, 48.471109625000103 ], [ -123.358042289999958, 48.471515107000087 ], [ -123.358031989999944, 48.471674469000078 ], [ -123.35820653899999, 48.472007339000093 ], [ -123.358420114999973, 48.472414548000074 ], [ -123.358472556999928, 48.472756731000061 ], [ -123.358454561, 48.473006072000054 ], [ -123.358537814999963, 48.473087495000115 ], [ -123.358605636999982, 48.473259138000124 ], [ -123.358616453999943, 48.473286435000055 ], [ -123.358707008999943, 48.473515539000125 ], [ -123.358883697999943, 48.473929120000044 ], [ -123.358971887999985, 48.473987529000048 ], [ -123.35961589799993, 48.474413963000075 ], [ -123.359611690999898, 48.474476725000052 ], [ -123.359608708999971, 48.474521566000142 ], [ -123.359606796999941, 48.474549702000104 ], [ -123.359610116999988, 48.474647850000096 ], [ -123.359625063999943, 48.475088475000078 ], [ -123.359630867999911, 48.475259513000047 ], [ -123.359654201999916, 48.47594861000006 ], [ -123.360289676999955, 48.479971998000032 ], [ -123.361563314999898, 48.479808792000064 ], [ -123.36388120099997, 48.479519309000075 ], [ -123.364984286999942, 48.479431306000087 ], [ -123.365454473999975, 48.481435785000045 ], [ -123.369635339999917, 48.480972800000053 ], [ -123.370066306999959, 48.482408798000144 ], [ -123.369766426999973, 48.482384210000056 ], [ -123.369283334, 48.48228762900002 ], [ -123.369158599999977, 48.482262682000034 ], [ -123.369133822999942, 48.482261701000041 ], [ -123.368215110999984, 48.482224010000095 ], [ -123.36785077899998, 48.482210351000127 ], [ -123.364056452999932, 48.482835892 ], [ -123.364114477999934, 48.48179612800007 ], [ -123.363546671000037, 48.481797923000038 ], [ -123.363548601000019, 48.482067810000089 ], [ -123.363142642999932, 48.482069092000053 ], [ -123.36314842299997, 48.482878754000104 ], [ -123.363809089, 48.482876668000138 ], [ -123.363444859999973, 48.482936706000075 ], [ -123.362222415999952, 48.483421458000137 ], [ -123.361528403999927, 48.483423640000055 ], [ -123.361524807999899, 48.482917797000077 ], [ -123.36176081099994, 48.482783200000014 ], [ -123.361760302999969, 48.482710587000021 ], [ -123.360621004999985, 48.482237699000045 ], [ -123.360240783999956, 48.482149404000069 ], [ -123.359778408999887, 48.48179050500007 ], [ -123.358976996999957, 48.481460099000103 ], [ -123.358648692999921, 48.480750912000197 ], [ -123.358183698999966, 48.480275202000058 ], [ -123.358020610999944, 48.480168406000104 ], [ -123.357534904, 48.480186893000052 ], [ -123.35749581099995, 48.48056570600005 ], [ -123.357635019, 48.48101429700008 ], [ -123.35789400099999, 48.481383206000032 ], [ -123.358220678999899, 48.481606794000037 ], [ -123.358522254999968, 48.481724347000139 ], [ -123.359218962999975, 48.484553226000067 ], [ -123.359742327, 48.48667781400006 ], [ -123.359533032999977, 48.486672602000063 ], [ -123.359524215999926, 48.486830310000073 ], [ -123.359781473999959, 48.486836717000095 ], [ -123.360266307999922, 48.488804696000116 ], [ -123.360270580999952, 48.489031110000035 ], [ -123.360285096, 48.489797114000083 ], [ -123.360381590999978, 48.490609204000094 ], [ -123.36039530799998, 48.491862091000037 ], [ -123.360269332999962, 48.491862400000038 ], [ -123.357498105000019, 48.491869207000015 ], [ -123.356958767999984, 48.491705524000096 ] ], [ [ -123.350422468999938, 48.482922170000059 ], [ -123.350437834999966, 48.482648261000044 ], [ -123.350155708999978, 48.48264911900003 ], [ -123.350157542999938, 48.482915549000083 ], [ -123.350422468999938, 48.482922170000059 ] ], [ [ -123.35932092399996, 48.480461725000055 ], [ -123.359313024999935, 48.480603018000153 ], [ -123.35984289799994, 48.480616217000062 ], [ -123.359784826999956, 48.481655135000061 ], [ -123.359892001999981, 48.481657805000076 ], [ -123.359883526999951, 48.480459967000058 ], [ -123.35932092399996, 48.480461725000055 ] ], [ [ -123.359469954999938, 48.479381685000071 ], [ -123.359466141999974, 48.47884190900006 ], [ -123.359060209999924, 48.478843176000019 ], [ -123.359052447999929, 48.477743232000094 ], [ -123.35798131599995, 48.477716538000053 ], [ -123.35797474499999, 48.477834024000096 ], [ -123.358769673999973, 48.477853836000094 ], [ -123.358684106999959, 48.479384137000103 ], [ -123.359469954999938, 48.479381685000071 ] ], [ [ -123.35699712, 48.474084988000129 ], [ -123.356996464999938, 48.473991507000044 ], [ -123.355778785999959, 48.473995278000068 ], [ -123.355773122999949, 48.473185614 ], [ -123.355367236999882, 48.473186868 ], [ -123.355365352999968, 48.47291697900004 ], [ -123.355359304999979, 48.472916998000052 ], [ -123.35529629599999, 48.474042558000107 ], [ -123.35699712, 48.474084988000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97500417", "BldgCostT": "67241667", "sL_LossRatio": "0.884895662368113", "sL_AssetLoss": "319875", "sL_BldgLoss": "283056", "sL_StrLoss": "200150", "sL_NStrLoss": "82906", "sL_ContLoss": "36819", "geom_point": "0101000020E6100000D36A69EA0CDB5EC0E7C5CBCB48394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.419846244999945, 48.445554836000085 ], [ -123.419953777999964, 48.44554789200005 ], [ -123.420144708999956, 48.44558680200003 ], [ -123.42052967299999, 48.445755798000064 ], [ -123.421079407999954, 48.445996388000019 ], [ -123.421858507999929, 48.446338192000027 ], [ -123.422872042, 48.446782355000025 ], [ -123.423313893999975, 48.446975993000081 ], [ -123.423960600999948, 48.447261333 ], [ -123.424285667, 48.447404757000044 ], [ -123.424763901999953, 48.447615728000052 ], [ -123.425881682999901, 48.448108900000051 ], [ -123.426307196999986, 48.448225593000139 ], [ -123.426292795999984, 48.448614823000057 ], [ -123.426225765999945, 48.449028021000068 ], [ -123.426079655999956, 48.449380663000078 ], [ -123.426077692999925, 48.449383206000078 ], [ -123.425896634999944, 48.449613304000145 ], [ -123.422595710999957, 48.448389706000064 ], [ -123.421735425999955, 48.448003920000062 ], [ -123.421619333999971, 48.447951879000144 ], [ -123.421324093999971, 48.447819515000099 ], [ -123.420752407999927, 48.447562100000042 ], [ -123.420280498999944, 48.447353095000146 ], [ -123.420188117999942, 48.447314788000014 ], [ -123.41962530899994, 48.447066594000063 ], [ -123.41929085699995, 48.446924414000115 ], [ -123.418959100999984, 48.446783390000135 ], [ -123.419087527999949, 48.446439451000089 ], [ -123.419154745999933, 48.446259432000019 ], [ -123.419321112999938, 48.445813794000038 ], [ -123.419491801000035, 48.445653890000123 ], [ -123.419627033999987, 48.445609628000085 ], [ -123.419781803999953, 48.445559003000014 ], [ -123.419846244999945, 48.445554836000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27354250", "BldgCostT": "18865000", "sL_LossRatio": "0.888269507092364", "sL_AssetLoss": "29118.64", "sL_BldgLoss": "25865.2", "sL_StrLoss": "11243", "sL_NStrLoss": "14622.2", "sL_ContLoss": "3253.44", "geom_point": "0101000020E610000052437639C0DA5EC072FEBB781E394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.417526452999937, 48.446703716000123 ], [ -123.417686086999964, 48.445623406000095 ], [ -123.417411290999965, 48.446503103000111 ], [ -123.416919095999987, 48.446420801000045 ], [ -123.416431108999973, 48.446334999000108 ], [ -123.415618901999949, 48.446204187000042 ], [ -123.415812449999947, 48.445668938000026 ], [ -123.415876509999975, 48.445491814000015 ], [ -123.416725411999948, 48.445518805000106 ], [ -123.417092498999978, 48.44553872500007 ], [ -123.417106103999956, 48.445539452000062 ], [ -123.417119693999894, 48.445540215000086 ], [ -123.417169582999989, 48.445442205000077 ], [ -123.417253607999939, 48.445362191000072 ], [ -123.417803038999963, 48.445186762000091 ], [ -123.417954198999965, 48.445138489000044 ], [ -123.419136058999953, 48.44471272200007 ], [ -123.419248489999987, 48.444672211000061 ], [ -123.419253533999921, 48.444680568000059 ], [ -123.419644792999961, 48.445331218000014 ], [ -123.419781803999953, 48.445559003000014 ], [ -123.419627033999987, 48.445609628000085 ], [ -123.419491801000035, 48.445653890000123 ], [ -123.419321112999938, 48.445813794000038 ], [ -123.419154745999933, 48.446259432000019 ], [ -123.419087527999949, 48.446439451000089 ], [ -123.418959100999984, 48.446783390000135 ], [ -123.418603406999935, 48.44773610200015 ], [ -123.418515089999971, 48.447968405000026 ], [ -123.41834989499999, 48.448421489000069 ], [ -123.417511597, 48.44799628099999 ], [ -123.417659414999989, 48.447145883000076 ], [ -123.417526452999937, 48.446703716000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16865917", "BldgCostT": "11631667", "sL_LossRatio": "0.842944873711659", "sL_AssetLoss": "54110.3", "sL_BldgLoss": "45612", "sL_StrLoss": "17417", "sL_NStrLoss": "28195", "sL_ContLoss": "8498.3", "geom_point": "0101000020E6100000C847C5DE8FDA5EC0D871D3D137394840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.412355054999935, 48.446591321000064 ], [ -123.414453559999941, 48.445837862000097 ], [ -123.41511759, 48.4459002910001 ], [ -123.41596918899991, 48.447068284000096 ], [ -123.416736445999973, 48.44724734800009 ], [ -123.416922064999952, 48.447293951000063 ], [ -123.417454773999964, 48.447427176000055 ], [ -123.41737623099999, 48.447742333000107 ], [ -123.417219166999956, 48.448290375000084 ], [ -123.416276312999983, 48.448055408000073 ], [ -123.414748934999977, 48.447609627000048 ], [ -123.414543, 48.447549519000106 ], [ -123.414276688999948, 48.447471794000087 ], [ -123.414149174999949, 48.447413715000053 ], [ -123.41267660699998, 48.446742910000133 ], [ -123.412437183999955, 48.446630026000065 ], [ -123.412355054999935, 48.446591321000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160612685", "BldgCostT": "104349571", "sL_LossRatio": "0.928082649904221", "sL_AssetLoss": "116915.32", "sL_BldgLoss": "108507.08", "sL_StrLoss": "89394.4", "sL_NStrLoss": "19112.68", "sL_ContLoss": "8408.24", "geom_point": "0101000020E6100000C3C1423913DB5EC07C1FECB9F1384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.41596918899991, 48.447068284000096 ], [ -123.41511759, 48.4459002910001 ], [ -123.414453559999941, 48.445837862000097 ], [ -123.415353929000034, 48.445771101000034 ], [ -123.415974947999956, 48.4452483520001 ], [ -123.421631995999959, 48.443272941000032 ], [ -123.421985772999975, 48.443131023000099 ], [ -123.426982686999978, 48.441126126000057 ], [ -123.427171779999952, 48.441268706000116 ], [ -123.427618985999942, 48.441608798000068 ], [ -123.426609402999944, 48.441676158000114 ], [ -123.426684758999954, 48.445791921000115 ], [ -123.426802734999939, 48.446240264000018 ], [ -123.42660349899991, 48.446552799000109 ], [ -123.426533291999945, 48.446677411000081 ], [ -123.426399599999954, 48.447075404000067 ], [ -123.426328214999941, 48.447963948000051 ], [ -123.426313855999936, 48.448142817000054 ], [ -123.426307196999986, 48.448225593000139 ], [ -123.425881682999901, 48.448108900000051 ], [ -123.424763901999953, 48.447615728000052 ], [ -123.424285667, 48.447404757000044 ], [ -123.423960600999948, 48.447261333 ], [ -123.423313893999975, 48.446975993000081 ], [ -123.422872042, 48.446782355000025 ], [ -123.421858507999929, 48.446338192000027 ], [ -123.421079407999954, 48.445996388000019 ], [ -123.42052967299999, 48.445755798000064 ], [ -123.420144708999956, 48.44558680200003 ], [ -123.419953777999964, 48.44554789200005 ], [ -123.419846244999945, 48.445554836000085 ], [ -123.419781803999953, 48.445559003000014 ], [ -123.419644792999961, 48.445331218000014 ], [ -123.419253533999921, 48.444680568000059 ], [ -123.419248489999987, 48.444672211000061 ], [ -123.419136058999953, 48.44471272200007 ], [ -123.417954198999965, 48.445138489000044 ], [ -123.417803038999963, 48.445186762000091 ], [ -123.417253607999939, 48.445362191000072 ], [ -123.417169582999989, 48.445442205000077 ], [ -123.417119693999894, 48.445540215000086 ], [ -123.417106103999956, 48.445539452000062 ], [ -123.417092498999978, 48.44553872500007 ], [ -123.416725411999948, 48.445518805000106 ], [ -123.415876509999975, 48.445491814000015 ], [ -123.415812449999947, 48.445668938000026 ], [ -123.415618901999949, 48.446204187000042 ], [ -123.416431108999973, 48.446334999000108 ], [ -123.416919095999987, 48.446420801000045 ], [ -123.417411290999965, 48.446503103000111 ], [ -123.417686086999964, 48.445623406000095 ], [ -123.417526452999937, 48.446703716000123 ], [ -123.417659414999989, 48.447145883000076 ], [ -123.417511597, 48.44799628099999 ], [ -123.41834989499999, 48.448421489000069 ], [ -123.417690491999963, 48.448360404000077 ], [ -123.417378990999978, 48.448330201000047 ], [ -123.417219166999956, 48.448290375000084 ], [ -123.41737623099999, 48.447742333000107 ], [ -123.417454773999964, 48.447427176000055 ], [ -123.416922064999952, 48.447293951000063 ], [ -123.416736445999973, 48.44724734800009 ], [ -123.41596918899991, 48.447068284000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.581260364842454", "sL_AssetLoss": "4824", "sL_BldgLoss": "2804", "sL_StrLoss": "634", "sL_NStrLoss": "2170", "sL_ContLoss": "2020", "geom_point": "0101000020E61000001638D195A5DB5EC0415CDEC174384840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.433502122999954, 48.442023804000016 ], [ -123.433270393000015, 48.441916909000057 ], [ -123.433101684999954, 48.441915504000086 ], [ -123.431727804999952, 48.441904104000109 ], [ -123.431656106999952, 48.441952556000032 ], [ -123.430482027999986, 48.441977091000105 ], [ -123.429555228, 48.441996468000049 ], [ -123.429442451999989, 48.441999980000048 ], [ -123.427618985999942, 48.441608798000068 ], [ -123.427171779999952, 48.441268706000116 ], [ -123.426982686999978, 48.441126126000057 ], [ -123.428897642999942, 48.440305642000062 ], [ -123.429515360999972, 48.440026067000069 ], [ -123.430538304999928, 48.439563066000069 ], [ -123.431735835999945, 48.439363735000057 ], [ -123.431856114999974, 48.439357602000094 ], [ -123.431896905000016, 48.439424743000124 ], [ -123.431992886999979, 48.439582698000052 ], [ -123.43231891, 48.439733605000086 ], [ -123.432659196999936, 48.440102492000072 ], [ -123.434140891999959, 48.440861610000049 ], [ -123.434545400999966, 48.440885811000022 ], [ -123.434881553999929, 48.440655188000051 ], [ -123.435136991999926, 48.440479914000086 ], [ -123.435757892999931, 48.440387304000126 ], [ -123.436315219999955, 48.440528305000058 ], [ -123.43653171699998, 48.440672197000026 ], [ -123.436533223, 48.440897202000045 ], [ -123.436818986999981, 48.441102290000025 ], [ -123.436808801999916, 48.441416993000075 ], [ -123.436594903999946, 48.44162500400008 ], [ -123.436216286999951, 48.441582295000039 ], [ -123.435395221999954, 48.442116305000049 ], [ -123.43480200499999, 48.442315695000069 ], [ -123.434466779999951, 48.442631901000127 ], [ -123.433898813999946, 48.442732999000057 ], [ -123.433746108999941, 48.442292905000038 ], [ -123.433502122999954, 48.442023804000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.946614813505391", "sL_AssetLoss": "1131.4", "sL_BldgLoss": "1071", "sL_StrLoss": "839", "sL_NStrLoss": "232", "sL_ContLoss": "60.4", "geom_point": "0101000020E6100000C2123036C40F5FC09016E3D3CE714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.245586151999987, 48.889645417000061 ], [ -124.245559341999964, 48.888566178000055 ], [ -124.246786790000016, 48.888552912000044 ], [ -124.246793496999928, 48.8888227220001 ], [ -124.247202647999984, 48.888818298000103 ], [ -124.247222782999984, 48.889627726000072 ], [ -124.245586151999987, 48.889645417000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.945030462853505", "sL_AssetLoss": "6598.2", "sL_BldgLoss": "6235.5", "sL_StrLoss": "5022", "sL_NStrLoss": "1213.5", "sL_ContLoss": "362.7", "geom_point": "0101000020E6100000D3B5F63E551D5FC00C4216F50B764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.457339551999951, 48.92332789500005 ], [ -124.457331699999912, 48.923058110000099 ], [ -124.456103515999985, 48.923073625000072 ], [ -124.456095669999954, 48.922803841000118 ], [ -124.455276885000018, 48.922814177000078 ], [ -124.455264913999912, 48.922402295000097 ], [ -124.456451192999978, 48.921637704000105 ], [ -124.45828904899993, 48.92088693500007 ], [ -124.458497025999947, 48.920884305000101 ], [ -124.458504881999957, 48.921154090000122 ], [ -124.460551776999978, 48.921128182000068 ], [ -124.460614726999978, 48.923286456 ], [ -124.457339551999951, 48.92332789500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238581040", "BldgCostT": "160780373", "sL_LossRatio": "0.885413288175118", "sL_AssetLoss": "280111.45", "sL_BldgLoss": "248014.4", "sL_StrLoss": "179651.5", "sL_NStrLoss": "68362.9", "sL_ContLoss": "32097.05", "geom_point": "0101000020E6100000CBBBC182010D5FC08BFCC076AC6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.238317286, 48.877039240000116 ], [ -124.239135396999956, 48.877030449000046 ], [ -124.239122065999965, 48.876490828000023 ], [ -124.238303964999929, 48.876499617000079 ], [ -124.238317286, 48.877039240000116 ], [ -124.23709011499993, 48.877052414000062 ], [ -124.23707015399999, 48.876242979000089 ], [ -124.236252053, 48.876251755000027 ], [ -124.236245402999884, 48.87598194300017 ], [ -124.23583635699994, 48.875986328000067 ], [ -124.23580323, 48.874641698000097 ], [ -124.235821693999981, 48.874637072000077 ], [ -124.236938475999949, 48.874625096000038 ], [ -124.237777678999947, 48.874803994000061 ], [ -124.238267665999928, 48.875029187000031 ], [ -124.23827066299999, 48.875150562000037 ], [ -124.238525795999962, 48.875147821000056 ], [ -124.23877229199999, 48.875261105000085 ], [ -124.239910186999936, 48.875269064000051 ], [ -124.23991349299996, 48.875402788000031 ], [ -124.240322534999962, 48.875398388000065 ], [ -124.240349220999917, 48.876477632000011 ], [ -124.24075827199999, 48.87647323100002 ], [ -124.240804990999933, 48.87836190700007 ], [ -124.241214057999926, 48.87835750400005 ], [ -124.241226846999922, 48.878874293000145 ], [ -124.241245661999983, 48.87963454500003 ], [ -124.241254120999926, 48.879976369000069 ], [ -124.240845040999915, 48.879980772000117 ], [ -124.240885093999935, 48.881599637000051 ], [ -124.241703278999978, 48.881590828000135 ], [ -124.241728390999981, 48.882605084000076 ], [ -124.243001921999948, 48.882626002000087 ], [ -124.242866762999938, 48.886226982000025 ], [ -124.241817651999966, 48.886209751000074 ], [ -124.241826005999926, 48.886547108000087 ], [ -124.241843583999952, 48.887256847000039 ], [ -124.241434444999953, 48.887261253000084 ], [ -124.241447804999922, 48.887800874000078 ], [ -124.241134182999943, 48.88780425100007 ], [ -124.240673069999957, 48.887809213000033 ], [ -124.240687277999925, 48.887654593000029 ], [ -124.240447787999969, 48.887334093000057 ], [ -124.240416012999944, 48.88731899500003 ], [ -124.240318695, 48.887367834 ], [ -124.240305803999945, 48.887374313000088 ], [ -124.239974680999964, 48.887484190000045 ], [ -124.23989159599995, 48.887498942000015 ], [ -124.239700516999989, 48.887532788000037 ], [ -124.239443394999981, 48.887523207000122 ], [ -124.239404510999947, 48.887511931000077 ], [ -124.239186097999934, 48.887448700000085 ], [ -124.239038595999943, 48.887315588000071 ], [ -124.238882904999954, 48.887109499000168 ], [ -124.23881467199999, 48.886973569000155 ], [ -124.23771818099999, 48.884788666000112 ], [ -124.23745751199999, 48.884269206000063 ], [ -124.237206609999959, 48.883952505000096 ], [ -124.23617309399998, 48.883042802000077 ], [ -124.235706275999988, 48.882782291000098 ], [ -124.235584124999917, 48.882714110000101 ], [ -124.235291484999948, 48.882550806000033 ], [ -124.234640995999939, 48.882138299000069 ], [ -124.232734795999988, 48.880757509000013 ], [ -124.232123203999947, 48.880256389000081 ], [ -124.231909310999981, 48.88014930100006 ], [ -124.231744901999946, 48.880113840000021 ], [ -124.231715443999988, 48.880107477000088 ], [ -124.231674308999985, 48.880098587000084 ], [ -124.228885344999952, 48.880388402000087 ], [ -124.228788094999956, 48.88039850800002 ], [ -124.228469318999927, 48.880403188000031 ], [ -124.228234496999931, 48.880381305000107 ], [ -124.228081599999939, 48.880340103000087 ], [ -124.227724898999924, 48.880243997000022 ], [ -124.22729731699999, 48.880208102000118 ], [ -124.226424720999987, 48.880272008000084 ], [ -124.226057906999969, 48.8803199910001 ], [ -124.22558349199997, 48.880440014000023 ], [ -124.225348637999971, 48.880462476000041 ], [ -124.225334785999976, 48.88046380800008 ], [ -124.224520057999925, 48.880387883000047 ], [ -124.224376807999974, 48.880374532000097 ], [ -124.22368868599996, 48.880310400000077 ], [ -124.223667047, 48.880305527000068 ], [ -124.223663602999949, 48.880164402000105 ], [ -124.223068446999918, 48.880170717000077 ], [ -124.222466720999975, 48.880035199000076 ], [ -124.222432366999968, 48.880013988000051 ], [ -124.222429773999963, 48.879907608000039 ], [ -124.222262939999936, 48.879909377000025 ], [ -124.221936672999959, 48.879707924000058 ], [ -124.220792892999924, 48.879001646000106 ], [ -124.22059720099999, 48.878880796000026 ], [ -124.220354696999962, 48.878713801000032 ], [ -124.219724370000023, 48.878279718 ], [ -124.219661585999944, 48.878236507000096 ], [ -124.219476607999965, 48.878086874000083 ], [ -124.219016886999896, 48.877715007000042 ], [ -124.218424466999934, 48.877035537 ], [ -124.218283600999911, 48.876874005000076 ], [ -124.217914483999948, 48.876555294000056 ], [ -124.21706370699998, 48.876010506000043 ], [ -124.216348219999958, 48.875667993000022 ], [ -124.216048518999941, 48.875563903000128 ], [ -124.215301102999973, 48.875382985000044 ], [ -124.214372401999967, 48.875169293000098 ], [ -124.214049889999899, 48.875411691000053 ], [ -124.213814899999988, 48.875682499000071 ], [ -124.213616320999975, 48.875641298000112 ], [ -124.21341721, 48.875755995000127 ], [ -124.21325500099999, 48.875902811000088 ], [ -124.213153390999949, 48.87606779900009 ], [ -124.213182000999936, 48.876211511000136 ], [ -124.212869008999988, 48.876177274000057 ], [ -124.212406039999962, 48.876748577000072 ], [ -124.210830543999947, 48.876544455000072 ], [ -124.209660191999916, 48.876392805000094 ], [ -124.20965717199995, 48.876267583000057 ], [ -124.209651740999959, 48.876264027000076 ], [ -124.208740200999927, 48.876273587000078 ], [ -124.207961624999925, 48.876172687000079 ], [ -124.207927441, 48.87614466200008 ], [ -124.207805539999924, 48.876144362000048 ], [ -124.20745149699999, 48.876017208000043 ], [ -124.206813524999916, 48.876023887 ], [ -124.206787122999913, 48.87602046500006 ], [ -124.20678353699995, 48.875871400000058 ], [ -124.206395535999931, 48.875758379000082 ], [ -124.205962618999962, 48.875762909000088 ], [ -124.205959454999956, 48.875631351000052 ], [ -124.205767939999973, 48.875575562000051 ], [ -124.205675048, 48.875496034000037 ], [ -124.205547082999942, 48.87549737200014 ], [ -124.205541279999963, 48.875255892000048 ], [ -124.203217117999941, 48.875216884000054 ], [ -124.203255362999968, 48.874220222000119 ], [ -124.20318124, 48.874233462000113 ], [ -124.201876639999966, 48.874317962000077 ], [ -124.200045219999964, 48.874205360000133 ], [ -124.19856101, 48.874220797000092 ], [ -124.198558121999952, 48.874099917000052 ], [ -124.198410940999935, 48.874094462000073 ], [ -124.19793044, 48.873960362000091 ], [ -124.197926203999913, 48.873957512000096 ], [ -124.196918416, 48.873967978000053 ], [ -124.196899122999952, 48.873159402000063 ], [ -124.196898164999965, 48.873158542000063 ], [ -124.195583296, 48.873172184000047 ], [ -124.195650585999928, 48.872845838000082 ], [ -124.18927071799996, 48.87171851800008 ], [ -124.189199523999946, 48.871706021000115 ], [ -124.186534094999928, 48.871238302000087 ], [ -124.179671181999979, 48.870033585000101 ], [ -124.179673909999963, 48.869963415000022 ], [ -124.179228354999935, 48.869955833000034 ], [ -124.175287842999964, 48.869263868000061 ], [ -124.17528863699999, 48.869243527000059 ], [ -124.175159484999966, 48.86924132400005 ], [ -124.175109528999911, 48.869232551000096 ], [ -124.175112298999977, 48.86916144800005 ], [ -124.174726009999944, 48.869154857000076 ], [ -124.174730968999967, 48.86902766900004 ], [ -124.174337104999893, 48.869020947000095 ], [ -124.174342797999955, 48.868874930000075 ], [ -124.173856896999965, 48.868866635000117 ], [ -124.173863976999883, 48.868685065000093 ], [ -124.173334388999947, 48.868676023000063 ], [ -124.173337474000022, 48.868596910000115 ], [ -124.17295117899999, 48.868590313000063 ], [ -124.172957592999964, 48.868425889000093 ], [ -124.172349266999944, 48.868415497000129 ], [ -124.172352304999947, 48.8683376460001 ], [ -124.171874753999987, 48.8683294860001 ], [ -124.171881808999927, 48.86814875699999 ], [ -124.170998831999967, 48.868133663000059 ], [ -124.17107366499999, 48.866217595000109 ], [ -124.170714936999943, 48.866211461000034 ], [ -124.170759889999914, 48.865060580000033 ], [ -124.170525787999949, 48.865062958000053 ], [ -124.170532081999951, 48.865332776000081 ], [ -124.170123109999963, 48.865336927000058 ], [ -124.170129402000015, 48.865606746000054 ], [ -124.168493508999973, 48.865623339000123 ], [ -124.168480941999945, 48.865083700000078 ], [ -124.166436096999988, 48.865104407000089 ], [ -124.166429824999952, 48.864834589000083 ], [ -124.16520292200002, 48.864846995000057 ], [ -124.165190390999939, 48.864307357000136 ], [ -124.163963500999969, 48.864319750000078 ], [ -124.163957242999928, 48.864049931000103 ], [ -124.163548280999919, 48.864054059000082 ], [ -124.16356704899998, 48.864863516000085 ], [ -124.161931176999943, 48.864880015 ], [ -124.161918681999936, 48.864340377000076 ], [ -124.16150971799999, 48.864344498000101 ], [ -124.16150347199999, 48.864074678000108 ], [ -124.161094509999913, 48.86407879800003 ], [ -124.161088266999968, 48.863808979000112 ], [ -124.159861387999953, 48.863821327000039 ], [ -124.159842679999912, 48.863011868000065 ], [ -124.158615818, 48.863024205000031 ], [ -124.158590906999905, 48.861945097000046 ], [ -124.158584673999925, 48.861675107000075 ], [ -124.158993615999933, 48.861670996000086 ], [ -124.15898738599995, 48.861401177000069 ], [ -124.157760564999975, 48.86141350300003 ], [ -124.157748116, 48.860873863000123 ], [ -124.156930241999973, 48.860882074000088 ], [ -124.156942681999936, 48.861421714000109 ], [ -124.156533740999919, 48.861425817000082 ], [ -124.156544402999927, 48.861888499000031 ], [ -124.156552393999903, 48.862235277000124 ], [ -124.155325550000015, 48.862247578000058 ], [ -124.15531933799997, 48.86197775700002 ], [ -124.154092501999955, 48.861990046000109 ], [ -124.154086295999889, 48.861720225000084 ], [ -124.152859464999935, 48.861732500000109 ], [ -124.152853267999916, 48.861462679000098 ], [ -124.151626439999944, 48.861474941000054 ], [ -124.151620249999979, 48.861205120000072 ], [ -124.151529074999971, 48.861206031000087 ], [ -124.151572537999925, 48.86104754900007 ], [ -124.150793693999944, 48.860834922000095 ], [ -124.150787909999977, 48.860582677000039 ], [ -124.150783808999918, 48.860403825000091 ], [ -124.151192743999957, 48.860399743000066 ], [ -124.151186554999967, 48.860129922000077 ], [ -124.151595485999934, 48.860125838000101 ], [ -124.151590853999934, 48.859923963000092 ], [ -124.152853895999954, 48.860022096000058 ], [ -124.153246799999948, 48.85986541400009 ], [ -124.153445840999893, 48.859631904000018 ], [ -124.153501147999975, 48.85956702300011 ], [ -124.154036662999928, 48.859561663000086 ], [ -124.154030459999902, 48.859291842000069 ], [ -124.155327660999959, 48.859278852000038 ], [ -124.155469582999956, 48.859312793000115 ], [ -124.157668902999959, 48.859506488000058 ], [ -124.158393317999966, 48.85953500600008 ], [ -124.158536973999958, 48.859608682000072 ], [ -124.158541075999935, 48.85978636800008 ], [ -124.158876859999978, 48.85978299300011 ], [ -124.15936482299999, 48.860033244000078 ], [ -124.15936516299999, 48.860047966000103 ], [ -124.159392983000018, 48.860047685999987 ], [ -124.15999299799995, 48.860355394000059 ], [ -124.160808725999971, 48.860528452 ], [ -124.161424427999989, 48.8606590730001 ], [ -124.161434783999965, 48.861106665000086 ], [ -124.16225266, 48.861098421000115 ], [ -124.162265155999989, 48.861638061000058 ], [ -124.164313827999948, 48.861617390000085 ], [ -124.164494804999961, 48.861649999000086 ], [ -124.165132765999928, 48.861825337000035 ], [ -124.165134012999957, 48.8618789860001 ], [ -124.165321477999925, 48.861877091000053 ], [ -124.16636682799998, 48.86212409700007 ], [ -124.166367113999954, 48.862136400000075 ], [ -124.166416768999937, 48.862135896000048 ], [ -124.166778127999962, 48.862221279000046 ], [ -124.166782331999968, 48.862402080000059 ], [ -124.167511945999976, 48.862394694000081 ], [ -124.167742854999986, 48.86244925500003 ], [ -124.168018589999932, 48.862514400000116 ], [ -124.169479421999981, 48.862990942000124 ], [ -124.169705387999898, 48.863064653000073 ], [ -124.169970411999941, 48.863151104000082 ], [ -124.171306616999928, 48.863244923000117 ], [ -124.171595011999941, 48.863265181000074 ], [ -124.171978510999978, 48.863292095000077 ], [ -124.172690097000014, 48.863428810000109 ], [ -124.173257317999969, 48.86379175200009 ], [ -124.173468389999954, 48.863926835000072 ], [ -124.173854207999938, 48.864173690000015 ], [ -124.174398203999914, 48.864699192000131 ], [ -124.174879201999914, 48.864927110000075 ], [ -124.17550208099999, 48.865138129000101 ], [ -124.176144311999977, 48.865355706000052 ], [ -124.177783916999942, 48.865536591000115 ], [ -124.178712292999961, 48.865953275000038 ], [ -124.179135702999986, 48.866143294000075 ], [ -124.17983438899995, 48.866280107000136 ], [ -124.180865688999916, 48.86663899200002 ], [ -124.181645308999947, 48.866774284000094 ], [ -124.182436113999955, 48.86679280500006 ], [ -124.182892795999933, 48.866880688 ], [ -124.183190603999961, 48.866937993000107 ], [ -124.183772394999949, 48.867062034000107 ], [ -124.183999312, 48.867110404000094 ], [ -124.184293531999941, 48.867251441000178 ], [ -124.18466188499994, 48.86742799500005 ], [ -124.18549459399999, 48.868111588000069 ], [ -124.18672239599999, 48.868665609000068 ], [ -124.187607385999939, 48.869232504000138 ], [ -124.187964581999935, 48.869317894000098 ], [ -124.189623617, 48.86966970100012 ], [ -124.190937823999917, 48.869702440000026 ], [ -124.190966937, 48.86970314800007 ], [ -124.191165381999923, 48.869708093000057 ], [ -124.191423012999934, 48.869696701000073 ], [ -124.192019273999932, 48.86937390100011 ], [ -124.19240679699999, 48.869164101000095 ], [ -124.192638389999928, 48.869152688000078 ], [ -124.192747832999927, 48.86920594500009 ], [ -124.193273405999889, 48.86946168900004 ], [ -124.193319616999958, 48.869712402000062 ], [ -124.193529890999969, 48.869971608000078 ], [ -124.193724902999932, 48.870122609000127 ], [ -124.193971716999954, 48.870165302 ], [ -124.194721813999976, 48.870148207000085 ], [ -124.194939747999967, 48.870302701000043 ], [ -124.195109596999899, 48.870423106000032 ], [ -124.195778298999926, 48.870443001000055 ], [ -124.196346820999949, 48.870293503 ], [ -124.196735, 48.869947398000093 ], [ -124.196870709999956, 48.868758195000026 ], [ -124.198706911999963, 48.868055999000035 ], [ -124.19898091, 48.86750350900008 ], [ -124.198913990999984, 48.867037701000129 ], [ -124.198703196999944, 48.86673301400014 ], [ -124.19771840599999, 48.866015186000013 ], [ -124.196699574, 48.865494590000026 ], [ -124.196475290999928, 48.86537999200003 ], [ -124.196224401999942, 48.865112211000046 ], [ -124.196242013999949, 48.864716289000071 ], [ -124.196534710999941, 48.86447128800009 ], [ -124.197524978999965, 48.864217795000052 ], [ -124.198042107999967, 48.864194997000048 ], [ -124.199031425999934, 48.864462803000073 ], [ -124.200847482999976, 48.864552500000116 ], [ -124.204186410999981, 48.865129300000042 ], [ -124.20472651099999, 48.865429795000068 ], [ -124.204982612999942, 48.865894088000061 ], [ -124.204895209, 48.866201701000108 ], [ -124.204283387999936, 48.86682840400011 ], [ -124.204109211999977, 48.866973691000091 ], [ -124.203702112999963, 48.867086199 ], [ -124.202379005999958, 48.867090387000118 ], [ -124.201427504999927, 48.867181598000116 ], [ -124.200516695999909, 48.867335388000122 ], [ -124.200057777999959, 48.867529095000101 ], [ -124.199806705999947, 48.867792585000103 ], [ -124.199719, 48.868108698000086 ], [ -124.199722708999971, 48.868846493000056 ], [ -124.199880401999962, 48.869230998000027 ], [ -124.200838282999939, 48.870517097000068 ], [ -124.200931167999954, 48.870683097000054 ], [ -124.200931277, 48.870687661000083 ], [ -124.20093370699999, 48.87068763500011 ], [ -124.201608919999927, 48.871894296000107 ], [ -124.201886813000016, 48.872160609000048 ], [ -124.202352701999942, 48.872237497000043 ], [ -124.20385328799992, 48.872194792000052 ], [ -124.204217019999987, 48.872055205000038 ], [ -124.20499397799999, 48.872020993000021 ], [ -124.205252819999913, 48.87202670200007 ], [ -124.205777520999973, 48.872308700000062 ], [ -124.207168600000017, 48.872276009000124 ], [ -124.207566209, 48.872389887000061 ], [ -124.207898100999913, 48.87260209600008 ], [ -124.208609712999987, 48.873251589000105 ], [ -124.209120895999931, 48.873487989000083 ], [ -124.209602625999963, 48.874005516000047 ], [ -124.209605035000024, 48.87410545700002 ], [ -124.209694779999936, 48.874104516000067 ], [ -124.210017117999953, 48.874450798000062 ], [ -124.211592593999981, 48.87420009900012 ], [ -124.212647982999954, 48.874423695000132 ], [ -124.214675976999928, 48.87423139600007 ], [ -124.215897395999889, 48.874596008000083 ], [ -124.217212900999954, 48.874815290000079 ], [ -124.21855049, 48.875422091000068 ], [ -124.220846002999949, 48.876198309000081 ], [ -124.221000609999948, 48.876394801000053 ], [ -124.220906386999943, 48.878105296000051 ], [ -124.221224189999958, 48.878867190000065 ], [ -124.221337095999928, 48.879018194000018 ], [ -124.222029397999947, 48.879388496000118 ], [ -124.222589687999942, 48.879492132000067 ], [ -124.222906806999944, 48.879550787000049 ], [ -124.224252691999979, 48.878834492000124 ], [ -124.223935415999961, 48.878145106000083 ], [ -124.224272588999924, 48.877944311000086 ], [ -124.224490682999971, 48.877401695000088 ], [ -124.224637993999949, 48.877273498000122 ], [ -124.225929392999944, 48.876604213000071 ], [ -124.226784095999946, 48.875793811000101 ], [ -124.226907374999911, 48.875772039000026 ], [ -124.227238974999949, 48.875777535000083 ], [ -124.227237792000025, 48.875729208000095 ], [ -124.227995216999901, 48.87575390100006 ], [ -124.228950982999919, 48.875752499000072 ], [ -124.23111662299999, 48.875497057000103 ], [ -124.23132357599998, 48.875494848000059 ], [ -124.231322860999938, 48.875465698000035 ], [ -124.23195451, 48.875352309000078 ], [ -124.232508781999954, 48.875111602000125 ], [ -124.233026102999986, 48.875115904000062 ], [ -124.233506404999957, 48.875209897000097 ], [ -124.234009303, 48.875185598 ], [ -124.234888520999945, 48.874870902000033 ], [ -124.235396593999909, 48.874743593000026 ], [ -124.23540737399999, 48.875181278000042 ], [ -124.234589290000017, 48.875190040000028 ], [ -124.234615853000022, 48.876269287000078 ], [ -124.235024903999943, 48.876264906000067 ], [ -124.235051475999938, 48.877344153000102 ], [ -124.235392728999955, 48.877340496000031 ], [ -124.235460534999973, 48.877339769000073 ], [ -124.235467180999947, 48.877609581000122 ], [ -124.236285303000017, 48.877600811000086 ], [ -124.236278651999967, 48.877331001000094 ], [ -124.238323946, 48.877309051000076 ], [ -124.238317286, 48.877039240000116 ] ], [ [ -124.160245396999983, 48.862737934000066 ], [ -124.160232919999913, 48.862198296000074 ], [ -124.160338541999948, 48.862197233000181 ], [ -124.162277653000018, 48.862177700000061 ], [ -124.162271403999938, 48.861907880000025 ], [ -124.160226682999934, 48.861928477000028 ], [ -124.160220444999965, 48.861658656000088 ], [ -124.159811502999972, 48.861662771000042 ], [ -124.159821532, 48.862096772 ], [ -124.159836443999936, 48.862742049000104 ], [ -124.160245396999983, 48.862737934000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22122084", "BldgCostT": "14288334", "sL_LossRatio": "0.732796878056817", "sL_AssetLoss": "38847.6", "sL_BldgLoss": "28467.4", "sL_StrLoss": "18822.2", "sL_NStrLoss": "9645.2", "sL_ContLoss": "10380.2", "geom_point": "0101000020E6100000BE092A4F05115FC07EEBE4880C724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.264025718999974, 48.893326518 ], [ -124.264036937999961, 48.893024011000108 ], [ -124.263241008999955, 48.893011099000091 ], [ -124.263247588999945, 48.892833767000056 ], [ -124.262120377999963, 48.89281547000008 ], [ -124.262125113999971, 48.89268791000012 ], [ -124.261468861999944, 48.892677253000024 ], [ -124.261602607999976, 48.889076287000066 ], [ -124.261777020999943, 48.88907912000009 ], [ -124.261858365999984, 48.889080441000019 ], [ -124.262417957999958, 48.889089528000042 ], [ -124.262469552999931, 48.887699605000051 ], [ -124.264174918999956, 48.887727280000071 ], [ -124.263776800999949, 48.887926591000017 ], [ -124.26383688699994, 48.888141690000083 ], [ -124.264349515999967, 48.88847779200006 ], [ -124.264788785999926, 48.888571798000093 ], [ -124.265743008999948, 48.888534791000076 ], [ -124.266025313999975, 48.888432195000057 ], [ -124.266495978999913, 48.888084698000085 ], [ -124.26694249399999, 48.887990708000054 ], [ -124.267068495999979, 48.888114612000024 ], [ -124.266966493999959, 48.888395212000056 ], [ -124.267029087999958, 48.888691402000056 ], [ -124.26772789599994, 48.889393598000062 ], [ -124.26810190099998, 48.889597204000012 ], [ -124.268798687999947, 48.88962570100005 ], [ -124.269156196999944, 48.889711189000117 ], [ -124.269328108999915, 48.890060102000085 ], [ -124.270280387999961, 48.891011492000118 ], [ -124.271185789999947, 48.891218 ], [ -124.27178437699996, 48.891222524000035 ], [ -124.271723576999989, 48.892869147000035 ], [ -124.271406872999989, 48.892864033000059 ], [ -124.269492722999985, 48.892833101000079 ], [ -124.269471218999939, 48.893414701000047 ], [ -124.264025718999974, 48.893326518 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51969083", "BldgCostT": "34478333", "sL_LossRatio": "0.846078025342862", "sL_AssetLoss": "84196.49", "sL_BldgLoss": "71236.8", "sL_StrLoss": "53228.1", "sL_NStrLoss": "18008.7", "sL_ContLoss": "12959.69", "geom_point": "0101000020E6100000BF0FA4DE95125FC0D9E8FFC91D734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.303695792999974, 48.90531821700008 ], [ -124.303705788999963, 48.905042499000054 ], [ -124.303174593999969, 48.905034082000029 ], [ -124.303174406999972, 48.905039230000092 ], [ -124.302535670999973, 48.905029105000033 ], [ -124.302526894, 48.905271046000045 ], [ -124.29707995199999, 48.905184545000033 ], [ -124.297081236999986, 48.905149240000057 ], [ -124.29586671, 48.905129915000025 ], [ -124.295873505999936, 48.904943334000066 ], [ -124.295123695999976, 48.90493139600008 ], [ -124.295133680000021, 48.904657376000017 ], [ -124.294606691999945, 48.904648982000047 ], [ -124.294610396999985, 48.904547348000072 ], [ -124.293820568999976, 48.904534764000076 ], [ -124.293821386999937, 48.904512335000042 ], [ -124.293125644999947, 48.90450124500007 ], [ -124.293128159999966, 48.904432286000052 ], [ -124.292302818999971, 48.904419124000121 ], [ -124.29232655899996, 48.903768633000077 ], [ -124.290543693999922, 48.903740181000082 ], [ -124.290602924999945, 48.90211878300007 ], [ -124.287813890999956, 48.902074213000077 ], [ -124.287824882, 48.901773814000109 ], [ -124.28746169599998, 48.901768005000122 ], [ -124.287478327999921, 48.901313528000095 ], [ -124.287207813999927, 48.901309199000067 ], [ -124.287220157999954, 48.900971942000105 ], [ -124.286904621999966, 48.900966893000074 ], [ -124.286915774999954, 48.900662205000096 ], [ -124.286564627999937, 48.900656585000092 ], [ -124.286578107999986, 48.900288408000073 ], [ -124.286176235999932, 48.900281975000013 ], [ -124.286186332999989, 48.900006252000061 ], [ -124.285781338, 48.899999766000121 ], [ -124.285886421, 48.897130929000113 ], [ -124.28588382099997, 48.897029640000063 ], [ -124.28547461, 48.897034203000032 ], [ -124.285467689999905, 48.896764397000027 ], [ -124.28505848099995, 48.896768958000038 ], [ -124.2850515639999, 48.896499153000015 ], [ -124.284642355999964, 48.896503713000108 ], [ -124.284635440999949, 48.896233908000127 ], [ -124.284226237000027, 48.896238466000092 ], [ -124.28421932399999, 48.895968660000101 ], [ -124.283810121999977, 48.895973218000059 ], [ -124.28380769899999, 48.895878702000125 ], [ -124.279217440999943, 48.895805007000071 ], [ -124.279221409999963, 48.895697045000134 ], [ -124.278596124999979, 48.895686991000105 ], [ -124.278599829999976, 48.895586251000069 ], [ -124.278041910999931, 48.895577277000022 ], [ -124.278044121, 48.895517216000108 ], [ -124.276579160000011, 48.895493639000101 ], [ -124.276580911999957, 48.89544606200014 ], [ -124.275957540999983, 48.895436023000052 ], [ -124.275961652999925, 48.895324376000069 ], [ -124.275318022999983, 48.895314007000131 ], [ -124.275344056999955, 48.894607553000064 ], [ -124.275272963999953, 48.89460640700004 ], [ -124.275273718999969, 48.89458594500006 ], [ -124.274718245999935, 48.894576993000051 ], [ -124.274737206999944, 48.89406262300011 ], [ -124.274801681999989, 48.892313465000093 ], [ -124.275281707999966, 48.892468393000122 ], [ -124.27597988199993, 48.892513998000048 ], [ -124.27650878, 48.892372998000063 ], [ -124.277850601999944, 48.892016991000055 ], [ -124.278793293999982, 48.892140901000133 ], [ -124.279979019999956, 48.892065398000035 ], [ -124.280688781999928, 48.892093899000052 ], [ -124.281979585999963, 48.892394407000104 ], [ -124.282684807999971, 48.892781698000135 ], [ -124.283205998999946, 48.892857203000062 ], [ -124.284912689999928, 48.893422602000051 ], [ -124.285322382999979, 48.89344539899999 ], [ -124.285383584999948, 48.893484510000093 ], [ -124.285391585999974, 48.89379653800011 ], [ -124.286476410999938, 48.893784439000036 ], [ -124.286630076999941, 48.894208873000061 ], [ -124.286632989999973, 48.894322458000012 ], [ -124.28675633899995, 48.894321081000037 ], [ -124.287043062999928, 48.89435225000009 ], [ -124.287062962000022, 48.89512730600007 ], [ -124.287288294999982, 48.895124791000065 ], [ -124.287289303999927, 48.895160184000083 ], [ -124.288024110999942, 48.895564697000076 ], [ -124.288311368999985, 48.895923673000084 ], [ -124.288324573999915, 48.896437399000092 ], [ -124.288409945999931, 48.896438764000024 ], [ -124.288416217999895, 48.896496099000096 ], [ -124.288230085999942, 48.897290801000089 ], [ -124.288281501999947, 48.89765819000008 ], [ -124.288854900999951, 48.898236485000076 ], [ -124.289939403999981, 48.899025490000028 ], [ -124.290767195999962, 48.900401304000042 ], [ -124.291421605, 48.900888412 ], [ -124.292234903999912, 48.901257198000145 ], [ -124.293323011999945, 48.901650298000092 ], [ -124.293729289999987, 48.902041999000019 ], [ -124.294075018999976, 48.902227102000047 ], [ -124.295403909999919, 48.902373787000094 ], [ -124.296409074999971, 48.902272696000047 ], [ -124.2975088, 48.902574601000083 ], [ -124.29829680899995, 48.902961989000048 ], [ -124.29922680599995, 48.902996189000092 ], [ -124.302383198999934, 48.902645812000053 ], [ -124.304185103999927, 48.902705584000046 ], [ -124.30587449799998, 48.90259741400012 ], [ -124.306314288999943, 48.902718499000045 ], [ -124.3068166899999, 48.903081604000135 ], [ -124.307477204999927, 48.90334370300009 ], [ -124.307942616999952, 48.90338359400009 ], [ -124.309001520999971, 48.903739604000144 ], [ -124.309202243999977, 48.903758287000059 ], [ -124.309142762999954, 48.905404381000061 ], [ -124.308105603999977, 48.90538799600008 ], [ -124.303695792999974, 48.90531821700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22098000", "BldgCostT": "15240000", "sL_LossRatio": "0.879491690642904", "sL_AssetLoss": "76221.3", "sL_BldgLoss": "67036", "sL_StrLoss": "44540", "sL_NStrLoss": "22496", "sL_ContLoss": "9185.3", "geom_point": "0101000020E6100000DA5FFA8702045FC0BE97D265776A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.055067122999972, 48.833199869000047 ], [ -124.054788483, 48.832086440000097 ], [ -124.05476274399993, 48.831983635000022 ], [ -124.054606603999972, 48.830391892000108 ], [ -124.054757094999943, 48.830438807000171 ], [ -124.055486090999977, 48.830441816000139 ], [ -124.056589743999922, 48.830446373000022 ], [ -124.056971400999913, 48.830447948000071 ], [ -124.057707273999966, 48.830450977000083 ], [ -124.058538496999972, 48.830454395000075 ], [ -124.059096200999988, 48.83044681700008 ], [ -124.059956878999927, 48.830435098000123 ], [ -124.060200419999944, 48.83030440400006 ], [ -124.06059831399989, 48.830013745000102 ], [ -124.061402530999956, 48.830350551000059 ], [ -124.061963602999953, 48.830468775000071 ], [ -124.06223055, 48.830467954000014 ], [ -124.063034733000023, 48.830465553000117 ], [ -124.063617165, 48.830463781000063 ], [ -124.063419558, 48.829012910000138 ], [ -124.063556708999926, 48.82892196500012 ], [ -124.065218073999944, 48.828657366000165 ], [ -124.065071564999982, 48.828213835000099 ], [ -124.065355810999918, 48.828115808000064 ], [ -124.06566249299999, 48.828033698000063 ], [ -124.065579092999968, 48.827596601000025 ], [ -124.066013395999931, 48.827560364000078 ], [ -124.065880912999887, 48.827159493000096 ], [ -124.065878117999986, 48.827150710000055 ], [ -124.065712315999946, 48.826629405000034 ], [ -124.066951176999979, 48.826619452000116 ], [ -124.068161715999949, 48.826609696000105 ], [ -124.069369689999988, 48.826611695000054 ], [ -124.069330710999964, 48.827360791000061 ], [ -124.069323905999966, 48.827491987 ], [ -124.069713168999925, 48.827823608000067 ], [ -124.069732672999947, 48.829093526000115 ], [ -124.06959426, 48.829091026000121 ], [ -124.069568917999931, 48.829706304000055 ], [ -124.06974213299999, 48.829709432000087 ], [ -124.069774920999976, 48.831843919000065 ], [ -124.070801146999955, 48.831872106000048 ], [ -124.07074108399999, 48.833331202000103 ], [ -124.069270033999928, 48.833304638000151 ], [ -124.069259437999946, 48.83356183700004 ], [ -124.063821289999964, 48.833463462000097 ], [ -124.06383360199996, 48.833165445000063 ], [ -124.063498829999929, 48.833159380000033 ], [ -124.063474119999981, 48.833757380000122 ], [ -124.059449372999936, 48.833684382000094 ], [ -124.059346093999949, 48.836178475000047 ], [ -124.059100523, 48.836174016000037 ], [ -124.059078912999965, 48.836695780000056 ], [ -124.054954466999973, 48.836620807000052 ], [ -124.055067122999972, 48.833199869000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6781167", "BldgCostT": "4676667", "sL_LossRatio": "0.849669753929432", "sL_AssetLoss": "32218.4", "sL_BldgLoss": "27375", "sL_StrLoss": "16424", "sL_NStrLoss": "10951", "sL_ContLoss": "4843.4", "geom_point": "0101000020E6100000679798FCC9055FC0FAADDF445B6B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.088114619999914, 48.836573533 ], [ -124.093553178999954, 48.836670673000114 ], [ -124.093406669999951, 48.840271719000064 ], [ -124.092817039999915, 48.840261202000057 ], [ -124.092792178999929, 48.840872033000025 ], [ -124.087353133999954, 48.840774856000074 ], [ -124.087500108999933, 48.837173820000089 ], [ -124.088089697999962, 48.837184367000141 ], [ -124.088114619999914, 48.836573533 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.961952620244078", "sL_AssetLoss": "1671.6", "sL_BldgLoss": "1608", "sL_StrLoss": "1380", "sL_NStrLoss": "228", "sL_ContLoss": "63.6", "geom_point": "0101000020E61000000C52D777D1055FC0EA7FD2B3CD6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.090512411999924, 48.834923369000123 ], [ -124.090509974999975, 48.834811142000021 ], [ -124.090202381999958, 48.834814052000105 ], [ -124.090101241999889, 48.834815008000135 ], [ -124.090100440999947, 48.834778107000098 ], [ -124.090077822999945, 48.833735698000069 ], [ -124.091303996999926, 48.833724098000062 ], [ -124.09130985899999, 48.833993925000108 ], [ -124.091718585999942, 48.833990054000026 ], [ -124.091742040999975, 48.835069363000109 ], [ -124.090947789999959, 48.835076882000045 ], [ -124.090515831999966, 48.835080969000089 ], [ -124.090512411999924, 48.834923369000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.934564673524033", "sL_AssetLoss": "7278.79", "sL_BldgLoss": "6802.5", "sL_StrLoss": "5245.3", "sL_NStrLoss": "1557.2", "sL_ContLoss": "476.29", "geom_point": "0101000020E610000022CB590A0E0C5FC036AC881EA16F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.189153899999951, 48.87338522200006 ], [ -124.189161226999929, 48.873195783000043 ], [ -124.188625192999922, 48.873186708000048 ], [ -124.18864327599999, 48.872719244000152 ], [ -124.187854791999925, 48.872705890000113 ], [ -124.187856879, 48.87265194900008 ], [ -124.187398177999967, 48.872644178000044 ], [ -124.187405872999975, 48.872445409000065 ], [ -124.18695487399999, 48.872437767000058 ], [ -124.18695991099996, 48.872307675000144 ], [ -124.186486765, 48.87229965500012 ], [ -124.186506158000014, 48.871798897000097 ], [ -124.184059506, 48.871757394000049 ], [ -124.18406481199996, 48.871620572000033 ], [ -124.18349389399998, 48.871610879000087 ], [ -124.183496927999897, 48.871532663000053 ], [ -124.18304968299995, 48.871525068000054 ], [ -124.183054680999987, 48.871396243000099 ], [ -124.18249017, 48.871386653000101 ], [ -124.182512076999956, 48.870822217000082 ], [ -124.180599533999953, 48.87078970700005 ], [ -124.180601824999982, 48.870730755000089 ], [ -124.180216224000034, 48.870724197000129 ], [ -124.180222320999974, 48.870567306000041 ], [ -124.179650813, 48.870557582000089 ], [ -124.179671181999979, 48.870033585000101 ], [ -124.186534094999928, 48.871238302000087 ], [ -124.189199523999946, 48.871706021000115 ], [ -124.18927071799996, 48.87171851800008 ], [ -124.195650585999928, 48.872845838000082 ], [ -124.195583296, 48.873172184000047 ], [ -124.195262977999931, 48.873175506000138 ], [ -124.195259116999949, 48.873013366000094 ], [ -124.194810735999965, 48.872910311000098 ], [ -124.194618718999934, 48.872912301000042 ], [ -124.194596937999961, 48.873477217000072 ], [ -124.189153899999951, 48.87338522200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18299083", "BldgCostT": "12148333", "sL_LossRatio": "0.85261070720423", "sL_AssetLoss": "62033", "sL_BldgLoss": "52890", "sL_StrLoss": "34055", "sL_NStrLoss": "18835", "sL_ContLoss": "9143", "geom_point": "0101000020E6100000074E09CA25075FC0D0EACB6FA46C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.111755654999982, 48.852368460000086 ], [ -124.111760834999956, 48.852239957000059 ], [ -124.109120166999958, 48.852193292000038 ], [ -124.109132900999938, 48.851877796000061 ], [ -124.10869677, 48.85187008300008 ], [ -124.108709203000018, 48.851562137000037 ], [ -124.108309873999957, 48.851555074000039 ], [ -124.108317444999955, 48.851367563000032 ], [ -124.107921870999945, 48.851360564000068 ], [ -124.107930879999941, 48.851137528000059 ], [ -124.107491569000032, 48.851129753000073 ], [ -124.107494221999971, 48.851064097000098 ], [ -124.106134223999973, 48.851040017000088 ], [ -124.106279789999974, 48.84743901500007 ], [ -124.10899592299991, 48.847487089000047 ], [ -124.10899898299999, 48.847411251000032 ], [ -124.109017031999912, 48.84696406200004 ], [ -124.109026622000016, 48.846726481000111 ], [ -124.110904037999916, 48.84675967000009 ], [ -124.110921687999976, 48.846321941000099 ], [ -124.110932783999971, 48.846046726000068 ], [ -124.111147142, 48.846050514000048 ], [ -124.111159373999939, 48.845747112000048 ], [ -124.111161195999927, 48.845701931000086 ], [ -124.111876464999952, 48.845714566000055 ], [ -124.11189629299993, 48.845222547000063 ], [ -124.111954054999984, 48.845223567000069 ], [ -124.111965905999924, 48.844929449000162 ], [ -124.112047121000018, 48.844930882000021 ], [ -124.112060120999942, 48.844608249000046 ], [ -124.112102712999956, 48.844609001000023 ], [ -124.11211844099995, 48.844218650000094 ], [ -124.112175574999952, 48.844219659000018 ], [ -124.11755793699993, 48.844314567 ], [ -124.117524111999927, 48.845156464000063 ], [ -124.117404386999979, 48.845213206000025 ], [ -124.116956084999984, 48.845325692000081 ], [ -124.115756790999981, 48.845318588000097 ], [ -124.115499792999969, 48.84540261100004 ], [ -124.115180843999937, 48.84581645100009 ], [ -124.115102493, 48.845918106000049 ], [ -124.115113020999928, 48.846378200000082 ], [ -124.115255497999982, 48.84663739800007 ], [ -124.115069993999953, 48.846913999000037 ], [ -124.114502902999931, 48.847759595000092 ], [ -124.114394207, 48.848436100000114 ], [ -124.114660877999981, 48.848747996 ], [ -124.114814182, 48.849501495000048 ], [ -124.114698415999896, 48.850429994000109 ], [ -124.114800795999926, 48.850726309000031 ], [ -124.115200601999959, 48.851003834000075 ], [ -124.115372823999977, 48.85112337200011 ], [ -124.115629691, 48.851301703000111 ], [ -124.116707624999933, 48.851832925000075 ], [ -124.116790067999901, 48.851873551000061 ], [ -124.117211496999971, 48.852081232000053 ], [ -124.117196096999962, 48.852464395000077 ], [ -124.116688287999963, 48.852455452000093 ], [ -124.111755654999982, 48.852368460000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.915105571714919", "sL_AssetLoss": "13270.6", "sL_BldgLoss": "12144", "sL_StrLoss": "9372", "sL_NStrLoss": "2772", "sL_ContLoss": "1126.6", "geom_point": "0101000020E6100000682E47FAFA045FC01C80894F6C6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.074473013999977, 48.83301974200009 ], [ -124.074515975999958, 48.831974060000093 ], [ -124.076404100999966, 48.832025829000095 ], [ -124.076337279999962, 48.829942980000069 ], [ -124.076315301999927, 48.829449191000087 ], [ -124.080058654999959, 48.829516505000043 ], [ -124.079988649999962, 48.831225443000044 ], [ -124.07991113199999, 48.833117575000067 ], [ -124.074473013999977, 48.83301974200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.890749565759587", "sL_AssetLoss": "2245.3", "sL_BldgLoss": "2000", "sL_StrLoss": "1341", "sL_NStrLoss": "659", "sL_ContLoss": "245.3", "geom_point": "0101000020E61000003B41518FA3055FC04FCFBBB1A06A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.087628705000029, 48.833908246000092 ], [ -124.087613787999942, 48.833219208000067 ], [ -124.087205065999953, 48.833223064000038 ], [ -124.08719922799996, 48.832953236000101 ], [ -124.086790508999982, 48.832957089000089 ], [ -124.086772997999972, 48.83214760599999 ], [ -124.088816558999937, 48.832128322000102 ], [ -124.088834102999954, 48.832937805000064 ], [ -124.089015678999971, 48.832936090000011 ], [ -124.089242821999932, 48.83293394300005 ], [ -124.089266221999935, 48.83401325300013 ], [ -124.088853821999948, 48.834017150000086 ], [ -124.087962851, 48.834025561000018 ], [ -124.087631312999932, 48.834028691000107 ], [ -124.087628705000029, 48.833908246000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8228750", "BldgCostT": "5675000", "sL_LossRatio": "0.942527703980278", "sL_AssetLoss": "16712.4", "sL_BldgLoss": "15751.9", "sL_StrLoss": "12620", "sL_NStrLoss": "3131.9", "sL_ContLoss": "960.5", "geom_point": "0101000020E61000004E9A820CCF045FC0631CD090F96B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.072552696999963, 48.845530656000079 ], [ -124.072567345999971, 48.845174545000084 ], [ -124.07186829299998, 48.845161939 ], [ -124.072016471999959, 48.841560951000105 ], [ -124.072934298999911, 48.841577500000021 ], [ -124.072936138999978, 48.841532773000054 ], [ -124.07837524099989, 48.841630683000076 ], [ -124.078227550999927, 48.845231681000051 ], [ -124.07800870599999, 48.845227747000109 ], [ -124.077992263999974, 48.845628585000085 ], [ -124.072552696999963, 48.845530656000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7469917", "BldgCostT": "5151667", "sL_LossRatio": "0.957588452619087", "sL_AssetLoss": "9538.44", "sL_BldgLoss": "9133.9", "sL_StrLoss": "7625.1", "sL_NStrLoss": "1508.8", "sL_ContLoss": "404.54", "geom_point": "0101000020E61000005EE75BF6D60D5FC0C6BEAE705C704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.21601280899992, 48.88003740400012 ], [ -124.216025550999944, 48.87970303500007 ], [ -124.215789522999984, 48.879699099000099 ], [ -124.215807795999964, 48.879219565000049 ], [ -124.215317432999939, 48.879211387000097 ], [ -124.215368828999914, 48.877863064000024 ], [ -124.2105673399999, 48.877782868000068 ], [ -124.210594823999926, 48.877063775000103 ], [ -124.21049472699994, 48.877064826000023 ], [ -124.210490006999962, 48.876869291000041 ], [ -124.210226139999961, 48.87685886200007 ], [ -124.210173497999932, 48.876798316000134 ], [ -124.210079155999964, 48.876799306000088 ], [ -124.21007644, 48.876686682000042 ], [ -124.209940973999963, 48.876530874000053 ], [ -124.209663590999952, 48.876533784000081 ], [ -124.209660191999916, 48.876392805000094 ], [ -124.210830543999947, 48.876544455000072 ], [ -124.212406039999962, 48.876748577000072 ], [ -124.212869008999988, 48.876177274000057 ], [ -124.213182000999936, 48.876211511000136 ], [ -124.213153390999949, 48.87606779900009 ], [ -124.21325500099999, 48.875902811000088 ], [ -124.21341721, 48.875755995000127 ], [ -124.213616320999975, 48.875641298000112 ], [ -124.213814899999988, 48.875682499000071 ], [ -124.214049889999899, 48.875411691000053 ], [ -124.214372401999967, 48.875169293000098 ], [ -124.215301102999973, 48.875382985000044 ], [ -124.216048518999941, 48.875563903000128 ], [ -124.216348219999958, 48.875667993000022 ], [ -124.21706370699998, 48.876010506000043 ], [ -124.217914483999948, 48.876555294000056 ], [ -124.218283600999911, 48.876874005000076 ], [ -124.218424466999934, 48.877035537 ], [ -124.219016886999896, 48.877715007000042 ], [ -124.219476607999965, 48.878086874000083 ], [ -124.219661585999944, 48.878236507000096 ], [ -124.219724370000023, 48.878279718 ], [ -124.220354696999962, 48.878713801000032 ], [ -124.22059720099999, 48.878880796000026 ], [ -124.220792892999924, 48.879001646000106 ], [ -124.221936672999959, 48.879707924000058 ], [ -124.222262939999936, 48.879909377000025 ], [ -124.221611610999986, 48.879916280000039 ], [ -124.22160588199992, 48.879681078000075 ], [ -124.221473734999933, 48.879678882000086 ], [ -124.221456673999953, 48.880128031000048 ], [ -124.21601280899992, 48.88003740400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.826542209755036", "sL_AssetLoss": "4135.3", "sL_BldgLoss": "3418", "sL_StrLoss": "2020", "sL_NStrLoss": "1398", "sL_ContLoss": "717.3", "geom_point": "0101000020E6100000F80CD1B614065FC057CF28E1B26A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.094585549999934, 48.834232749000122 ], [ -124.094556155999967, 48.832883615000135 ], [ -124.094539924999978, 48.832883769000084 ], [ -124.094147438999983, 48.832887495000065 ], [ -124.094129810999945, 48.832078013000043 ], [ -124.094311331999918, 48.832076290000039 ], [ -124.095355942999959, 48.832066368000085 ], [ -124.095367707999941, 48.832606023000068 ], [ -124.095776422999933, 48.832602138000041 ], [ -124.095823505999974, 48.834760753000047 ], [ -124.095414775000037, 48.834764638000081 ], [ -124.095420656999977, 48.835034465000085 ], [ -124.094194452999901, 48.835046111000032 ], [ -124.094176822999913, 48.834236630000092 ], [ -124.094585549999934, 48.834232749000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4528833", "BldgCostT": "3123333", "sL_LossRatio": "0.947532549650792", "sL_AssetLoss": "6958.6", "sL_BldgLoss": "6593.5", "sL_StrLoss": "4917", "sL_NStrLoss": "1676.5", "sL_ContLoss": "365.1", "geom_point": "0101000020E6100000EB554366D70E5FC0E5F40E1AEE704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.238583797999951, 48.887831676000154 ], [ -124.238577133999954, 48.887561865000116 ], [ -124.23816799199993, 48.887566259000039 ], [ -124.238141341999921, 48.886487017000057 ], [ -124.237732207999926, 48.886491409000058 ], [ -124.237723594000016, 48.886142410000097 ], [ -124.23742214899994, 48.886137446000127 ], [ -124.237449354999953, 48.88541491600003 ], [ -124.237296444999984, 48.885416557000028 ], [ -124.237269816999969, 48.884337313000074 ], [ -124.236860700999941, 48.88434170200005 ], [ -124.236854044999973, 48.884071892000065 ], [ -124.236444931999969, 48.884076280000095 ], [ -124.236438278999955, 48.883806469000021 ], [ -124.236029167999959, 48.883810855000057 ], [ -124.236022516999981, 48.883541044000019 ], [ -124.235613408999981, 48.883545429000094 ], [ -124.235600113999951, 48.883005807000096 ], [ -124.235179011999975, 48.883010319000064 ], [ -124.231918160999939, 48.883045206000112 ], [ -124.231891651999945, 48.881965959000098 ], [ -124.23230074899999, 48.881961589000042 ], [ -124.23228749, 48.881421966000097 ], [ -124.23146930399993, 48.881430707000035 ], [ -124.231482553999967, 48.881970331000034 ], [ -124.23066435799997, 48.881979066000071 ], [ -124.230670979999971, 48.882248878000105 ], [ -124.229443679999989, 48.882261971000048 ], [ -124.229417221999967, 48.881182724000041 ], [ -124.228189947999965, 48.881195804000143 ], [ -124.228196555999887, 48.88146561600005 ], [ -124.225332896999973, 48.881496085000038 ], [ -124.225326304999982, 48.881226273000053 ], [ -124.22491721199998, 48.881230621000057 ], [ -124.224904032999973, 48.880690996000062 ], [ -124.224085856999949, 48.880699684000064 ], [ -124.224079271999969, 48.880429873 ], [ -124.223670183999971, 48.880434215000072 ], [ -124.223667047, 48.880305527000068 ], [ -124.22368868599996, 48.880310400000077 ], [ -124.224376807999974, 48.880374532000097 ], [ -124.224520057999925, 48.880387883000047 ], [ -124.225334785999976, 48.88046380800008 ], [ -124.225348637999971, 48.880462476000041 ], [ -124.22558349199997, 48.880440014000023 ], [ -124.226057906999969, 48.8803199910001 ], [ -124.226424720999987, 48.880272008000084 ], [ -124.22729731699999, 48.880208102000118 ], [ -124.227724898999924, 48.880243997000022 ], [ -124.228081599999939, 48.880340103000087 ], [ -124.228234496999931, 48.880381305000107 ], [ -124.228469318999927, 48.880403188000031 ], [ -124.228788094999956, 48.88039850800002 ], [ -124.228885344999952, 48.880388402000087 ], [ -124.231674308999985, 48.880098587000084 ], [ -124.231715443999988, 48.880107477000088 ], [ -124.231744901999946, 48.880113840000021 ], [ -124.231909310999981, 48.88014930100006 ], [ -124.232123203999947, 48.880256389000081 ], [ -124.232734795999988, 48.880757509000013 ], [ -124.234640995999939, 48.882138299000069 ], [ -124.235291484999948, 48.882550806000033 ], [ -124.235584124999917, 48.882714110000101 ], [ -124.235706275999988, 48.882782291000098 ], [ -124.23617309399998, 48.883042802000077 ], [ -124.237206609999959, 48.883952505000096 ], [ -124.23745751199999, 48.884269206000063 ], [ -124.23771818099999, 48.884788666000112 ], [ -124.23881467199999, 48.886973569000155 ], [ -124.238882904999954, 48.887109499000168 ], [ -124.239038595999943, 48.887315588000071 ], [ -124.239186097999934, 48.887448700000085 ], [ -124.239404510999947, 48.887511931000077 ], [ -124.239443394999981, 48.887523207000122 ], [ -124.239700516999989, 48.887532788000037 ], [ -124.23989159599995, 48.887498942000015 ], [ -124.239974680999964, 48.887484190000045 ], [ -124.240305803999945, 48.887374313000088 ], [ -124.240318695, 48.887367834 ], [ -124.240416012999944, 48.88731899500003 ], [ -124.240447787999969, 48.887334093000057 ], [ -124.240687277999925, 48.887654593000029 ], [ -124.240673069999957, 48.887809213000033 ], [ -124.238583797999951, 48.887831676000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.925349277165721", "sL_AssetLoss": "9884.7", "sL_BldgLoss": "9146.8", "sL_StrLoss": "6836", "sL_NStrLoss": "2310.8", "sL_ContLoss": "737.9", "geom_point": "0101000020E610000055F896E614085FC0EC28B5B4A66A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.124397312, 48.834290177000106 ], [ -124.124, 48.834191199000074 ], [ -124.122651384, 48.834203997000046 ], [ -124.122159689999989, 48.834147098000109 ], [ -124.12201851, 48.833986107000072 ], [ -124.122045808999971, 48.833843113000071 ], [ -124.122557825999948, 48.833852107000062 ], [ -124.122552743999933, 48.833978940000144 ], [ -124.123624732999957, 48.833997764000138 ], [ -124.123701897, 48.832070368000075 ], [ -124.125055403999966, 48.832093289000056 ], [ -124.125472593, 48.831846995000056 ], [ -124.125636186999955, 48.831837006000029 ], [ -124.12640490899993, 48.832036400000021 ], [ -124.127169518999949, 48.832127503000095 ], [ -124.129142030999901, 48.832115004000102 ], [ -124.129051941999975, 48.83437175500007 ], [ -124.124397312, 48.834290177000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31465001", "BldgCostT": "21700001", "sL_LossRatio": "0.893727148386866", "sL_AssetLoss": "89490.4", "sL_BldgLoss": "79980", "sL_StrLoss": "55252", "sL_NStrLoss": "24728", "sL_ContLoss": "9510.4", "geom_point": "0101000020E6100000C5B3DB998F075FC02A24AA01146B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.124525172999981, 48.83853258200002 ], [ -124.124513090999969, 48.837992933000109 ], [ -124.124104336999949, 48.837996920000073 ], [ -124.124116413, 48.838536568000038 ], [ -124.124525172999981, 48.83853258200002 ], [ -124.124555376999965, 48.839881701000131 ], [ -124.123329065999911, 48.839893658000108 ], [ -124.123323029999952, 48.839623834000029 ], [ -124.122914261999981, 48.839627817000071 ], [ -124.122908230999911, 48.839357993000114 ], [ -124.12127316499999, 48.839373908000077 ], [ -124.121267141, 48.839104084000056 ], [ -124.118876649999933, 48.839127311000013 ], [ -124.118833567999928, 48.840200491000104 ], [ -124.11872284699993, 48.840198543000106 ], [ -124.118654057999947, 48.841911890000056 ], [ -124.118181160999981, 48.841903567000038 ], [ -124.118178641999961, 48.841966302000095 ], [ -124.11763400699999, 48.841956713000108 ], [ -124.112739417999975, 48.841870416000077 ], [ -124.112814899999975, 48.839996242000048 ], [ -124.112821819999965, 48.839824423000074 ], [ -124.112283022999975, 48.839814909000083 ], [ -124.112304903000023, 48.839271768000089 ], [ -124.112177646999953, 48.839269521000077 ], [ -124.110595493999966, 48.839241567000101 ], [ -124.110679716999954, 48.837152625000051 ], [ -124.110740678999946, 48.835640491000099 ], [ -124.110789994999948, 48.835641363000086 ], [ -124.110841027999982, 48.834375412000036 ], [ -124.110892815999932, 48.834344991000101 ], [ -124.110923586999945, 48.834102953000055 ], [ -124.111556358999948, 48.834114135000036 ], [ -124.111582168999973, 48.833473605000037 ], [ -124.111773199000012, 48.833476980000071 ], [ -124.111795874, 48.832914167000098 ], [ -124.110354662999953, 48.832888696000047 ], [ -124.110231023999972, 48.832705705000137 ], [ -124.109707217999954, 48.832432302000065 ], [ -124.109309696999944, 48.832381004000048 ], [ -124.109065866999956, 48.832224703000129 ], [ -124.109140424999964, 48.830376698000109 ], [ -124.10952580699994, 48.830372908000143 ], [ -124.110308915999937, 48.830716105000072 ], [ -124.110814390999934, 48.830783114000035 ], [ -124.111319118000011, 48.830797298000064 ], [ -124.111574498999957, 48.830650594000069 ], [ -124.111943405999952, 48.830710401000033 ], [ -124.112754278999972, 48.83098099900009 ], [ -124.114028385999944, 48.83189539400005 ], [ -124.114496416999913, 48.832106204000056 ], [ -124.115037709999982, 48.8319935970001 ], [ -124.115411512, 48.831647588000081 ], [ -124.115789319, 48.831436796000069 ], [ -124.116158194999954, 48.831523713000131 ], [ -124.116283808999981, 48.831666089000102 ], [ -124.116272406999911, 48.832322586000053 ], [ -124.116861391999976, 48.833054712 ], [ -124.117486077999914, 48.833580198000035 ], [ -124.118270994999932, 48.83401321000008 ], [ -124.11954361699999, 48.834243898000125 ], [ -124.11970241399996, 48.835222301000023 ], [ -124.120038497999971, 48.835579805000101 ], [ -124.120230900999957, 48.835649612000083 ], [ -124.120708814999958, 48.835707996000046 ], [ -124.122220514999981, 48.835693706000065 ], [ -124.122518289999917, 48.835592807000062 ], [ -124.122599112999936, 48.835565396000085 ], [ -124.123451997999936, 48.835276402000069 ], [ -124.123804503999978, 48.835217782000022 ], [ -124.123790361999937, 48.835571034000083 ], [ -124.124049995999897, 48.835568503000054 ], [ -124.124043957999959, 48.835298679000019 ], [ -124.125678889999961, 48.83528272500007 ], [ -124.125672842999961, 48.835012901000049 ], [ -124.129351414999988, 48.83497692100007 ], [ -124.129345346999955, 48.834707097000013 ], [ -124.129754076999959, 48.834703092000098 ], [ -124.129748007999964, 48.834433268000055 ], [ -124.12933928299995, 48.834437273000113 ], [ -124.12932108599999, 48.833627801000034 ], [ -124.129625410999907, 48.833624819000107 ], [ -124.130955959999952, 48.83361177400004 ], [ -124.130962035, 48.833881596000019 ], [ -124.134640515999976, 48.833845448000019 ], [ -124.134662882999919, 48.834835723000019 ], [ -124.134664893999982, 48.834924741000094 ], [ -124.131757027999939, 48.834953328000054 ], [ -124.130986331999907, 48.834960891000044 ], [ -124.130992407999912, 48.835230715000051 ], [ -124.130583675999901, 48.835234725000127 ], [ -124.130589747999949, 48.835504548000124 ], [ -124.13018101399993, 48.835508556 ], [ -124.130187083999914, 48.835778379000061 ], [ -124.129778348999977, 48.835782386000069 ], [ -124.129784416999954, 48.836052210000069 ], [ -124.129098138999922, 48.836058934000079 ], [ -124.126105767999917, 48.836088206000056 ], [ -124.126111815999963, 48.836358029000088 ], [ -124.126929298999983, 48.836350041000038 ], [ -124.126947457999975, 48.837159512000071 ], [ -124.126538711999928, 48.837163506000117 ], [ -124.12654476199998, 48.837433331000057 ], [ -124.126953511999943, 48.837429336000064 ], [ -124.126959565999954, 48.837699159000046 ], [ -124.127368316999977, 48.837695162000024 ], [ -124.127398596999939, 48.83904428200006 ], [ -124.12535478199996, 48.839064251000096 ], [ -124.125348735999964, 48.838794428000043 ], [ -124.124939973999986, 48.838798418000053 ], [ -124.124933930999987, 48.838528594000074 ], [ -124.124525172999981, 48.83853258200002 ] ], [ [ -124.119614039999988, 48.838310503000066 ], [ -124.119602010999955, 48.83777085300008 ], [ -124.118930839999948, 48.837777371000094 ], [ -124.118909164999948, 48.838317347000043 ], [ -124.119614039999988, 48.838310503000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.944805135090397", "sL_AssetLoss": "4349.68", "sL_BldgLoss": "4109.6", "sL_StrLoss": "3167.4", "sL_NStrLoss": "942.2", "sL_ContLoss": "240.08", "geom_point": "0101000020E61000000083CDCEDC075FC0CDE5485F6F6D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.120482066999955, 48.855963379000066 ], [ -124.120562284999963, 48.853964099000073 ], [ -124.120587827999955, 48.853327441000047 ], [ -124.121238192999925, 48.85334399700006 ], [ -124.122706207999983, 48.853779807000116 ], [ -124.12438679899995, 48.854500385000065 ], [ -124.125016796999958, 48.854701206000072 ], [ -124.125959997999956, 48.854818000000108 ], [ -124.125972611999984, 48.854817398000137 ], [ -124.125942155999894, 48.855578646000026 ], [ -124.125922943999953, 48.856058869000066 ], [ -124.120482066999955, 48.855963379000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30044000", "BldgCostT": "20720000", "sL_LossRatio": "0.900551006662393", "sL_AssetLoss": "86260.3", "sL_BldgLoss": "77681.8", "sL_StrLoss": "55001.8", "sL_NStrLoss": "22680", "sL_ContLoss": "8578.5", "geom_point": "0101000020E6100000DB17F119E0055FC087E1E9B6406A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.107386339999934, 48.835283062000059 ], [ -124.107425983999917, 48.835206079000031 ], [ -124.102450634999968, 48.835117866000076 ], [ -124.102452600999968, 48.835069322000052 ], [ -124.101891116999951, 48.835059352 ], [ -124.101892677999928, 48.835020820000103 ], [ -124.10000610899999, 48.834987302000094 ], [ -124.0997245399999, 48.834982296000135 ], [ -124.099740292999982, 48.834593839000021 ], [ -124.099783222999932, 48.833535035000089 ], [ -124.099015789999925, 48.833521388000079 ], [ -124.098660689999974, 48.833515072000068 ], [ -124.098669398999974, 48.833300392000119 ], [ -124.097914073999945, 48.833286953 ], [ -124.097957614, 48.832214143000044 ], [ -124.097983141999961, 48.831585127000096 ], [ -124.096091882999971, 48.831551453000053 ], [ -124.093902791999966, 48.831512434000111 ], [ -124.092567881999969, 48.831488618000058 ], [ -124.092575764999964, 48.831294948000028 ], [ -124.092052374999952, 48.831285605000097 ], [ -124.092061455999968, 48.831062534000033 ], [ -124.091622372999922, 48.83105469500002 ], [ -124.091631265, 48.830836284000085 ], [ -124.091149668999961, 48.830827683000038 ], [ -124.091149991999927, 48.830819743000077 ], [ -124.090939511999963, 48.830815983000079 ], [ -124.09092375899999, 48.83120270900006 ], [ -124.090397076999963, 48.831193299000098 ], [ -124.090393343999935, 48.831284921000126 ], [ -124.089672121999968, 48.831272032000079 ], [ -124.084955415999957, 48.831187620000023 ], [ -124.084965057999909, 48.830951646000088 ], [ -124.084008194999967, 48.83093449700003 ], [ -124.084022599999983, 48.83058214600004 ], [ -124.082757869999924, 48.830559465000071 ], [ -124.08277140699991, 48.830228513000122 ], [ -124.082584583999946, 48.83022516100003 ], [ -124.082596808999966, 48.829926343000032 ], [ -124.081236352999937, 48.829901927000087 ], [ -124.081290797999955, 48.828571949000022 ], [ -124.080999823999932, 48.828566725000073 ], [ -124.081001943999965, 48.828514953000052 ], [ -124.081010291999917, 48.828311063000015 ], [ -124.080606723999935, 48.828303815000055 ], [ -124.080612123, 48.828171951000115 ], [ -124.079969008999967, 48.828160399000083 ], [ -124.079978108999981, 48.82793826900005 ], [ -124.079478205, 48.827929286 ], [ -124.079483540999917, 48.827799070000069 ], [ -124.079010895999886, 48.827790574000076 ], [ -124.079013183999976, 48.827734749000058 ], [ -124.077529162999909, 48.827708063000109 ], [ -124.076236770999927, 48.827684806 ], [ -124.076122649999931, 48.825120519000095 ], [ -124.075988894999924, 48.824251736000065 ], [ -124.076076413999971, 48.824204590000107 ], [ -124.076459498999952, 48.824227386000111 ], [ -124.077089592999982, 48.824384116000068 ], [ -124.077309896999935, 48.824508011000091 ], [ -124.077546715999944, 48.824748698000064 ], [ -124.07756619099996, 48.825044910000017 ], [ -124.077692596999967, 48.825197293 ], [ -124.078892179999968, 48.825202996000016 ], [ -124.079901696999912, 48.825319813000071 ], [ -124.080539191999918, 48.825124692000053 ], [ -124.080985988999885, 48.825076313000068 ], [ -124.082134719999928, 48.825245701 ], [ -124.082587905000011, 48.825420905000087 ], [ -124.083022492999973, 48.825983502000049 ], [ -124.083727309000011, 48.826407888000084 ], [ -124.085121187999974, 48.826602997000066 ], [ -124.085351618999965, 48.826608696000115 ], [ -124.08593408099992, 48.826442096000036 ], [ -124.086631907999944, 48.826524706000072 ], [ -124.086894781999945, 48.82676539300013 ], [ -124.087307499999937, 48.827490311000055 ], [ -124.087720875999977, 48.827720995000028 ], [ -124.08822740799998, 48.827859208000035 ], [ -124.090937910999969, 48.827797899000075 ], [ -124.091375386999985, 48.827893395000061 ], [ -124.092830915999912, 48.82843740800012 ], [ -124.094174593, 48.828837609000054 ], [ -124.095998789999911, 48.829981190000119 ], [ -124.096785199999943, 48.830368612000058 ], [ -124.100604393999973, 48.831223202000032 ], [ -124.101582294999972, 48.831681711000023 ], [ -124.102093417, 48.832027797000059 ], [ -124.102711920999965, 48.83225570200009 ], [ -124.103624997999958, 48.832228598000036 ], [ -124.10559058799997, 48.831787107000025 ], [ -124.105830310999963, 48.8315336000001 ], [ -124.105740195999914, 48.831112110000056 ], [ -124.106325404999964, 48.83110639300002 ], [ -124.106538084999954, 48.830897008000143 ], [ -124.106612603999935, 48.830590784000023 ], [ -124.106658129999943, 48.830554549000105 ], [ -124.106960512999962, 48.830559906000069 ], [ -124.106957601999966, 48.830631971000095 ], [ -124.107166104, 48.830635663000088 ], [ -124.107282291999937, 48.831213194000043 ], [ -124.107545300999959, 48.831426786000101 ], [ -124.107901095999964, 48.832107592000114 ], [ -124.108535771999954, 48.832430244000108 ], [ -124.108477359999966, 48.83387753900012 ], [ -124.108488221999963, 48.834369781000078 ], [ -124.108457480999931, 48.834370077000059 ], [ -124.108456729999958, 48.834388666000081 ], [ -124.108048367999956, 48.834381438000023 ], [ -124.108033438999982, 48.834421563000063 ], [ -124.108036832999971, 48.834453840000073 ], [ -124.108078239999941, 48.834847762000045 ], [ -124.108028439999956, 48.834964162000041 ], [ -124.108075839999941, 48.835109062000065 ], [ -124.108380039999972, 48.835130363000076 ], [ -124.10851304, 48.835227263000071 ], [ -124.108279940000017, 48.835423262000099 ], [ -124.107944538999931, 48.835482262000056 ], [ -124.10751314, 48.835392163000094 ], [ -124.107386339999934, 48.835283062000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11913000", "BldgCostT": "6270000", "sL_LossRatio": "0.653679653679654", "sL_AssetLoss": "22638", "sL_BldgLoss": "14798", "sL_StrLoss": "5798", "sL_NStrLoss": "9000", "sL_ContLoss": "7840", "geom_point": "0101000020E6100000A74554134AF35EC0238DC00ED27B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.80443314399993, 48.968727795000071 ], [ -123.8026364299999, 48.968560893000095 ], [ -123.800022781999971, 48.968316066000035 ], [ -123.800068259999989, 48.966192862000057 ], [ -123.800086266999969, 48.965351849000122 ], [ -123.800824215, 48.965366991000053 ], [ -123.800819614999952, 48.965464723000139 ], [ -123.801329302999989, 48.965475177000059 ], [ -123.801299892999921, 48.96610010400007 ], [ -123.801459435999931, 48.966103376000014 ], [ -123.801406324999959, 48.967231953000109 ], [ -123.801782690999943, 48.967239671000094 ], [ -123.801765648999961, 48.967601869000049 ], [ -123.80324206100002, 48.967632134000056 ], [ -123.80320653299999, 48.968387706000087 ], [ -123.804250750999969, 48.968409099000048 ], [ -123.80471945299999, 48.968418697000075 ], [ -123.804705559999945, 48.96871435200012 ], [ -123.804943903999984, 48.968719232000055 ], [ -123.80443314399993, 48.968727795000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8748333", "BldgCostT": "6033333", "sL_LossRatio": "0.91683664520009", "sL_AssetLoss": "19953.5", "sL_BldgLoss": "18294.1", "sL_StrLoss": "13760", "sL_NStrLoss": "4534.1", "sL_ContLoss": "1659.4", "geom_point": "0101000020E6100000099B8566EC025FC0848F77FD386B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.045516699999908, 48.841965260000087 ], [ -124.04553222, 48.841593170000039 ], [ -124.043943964, 48.841564119000054 ], [ -124.043984538999922, 48.840592126000089 ], [ -124.043656010999939, 48.840586114000075 ], [ -124.04365803899999, 48.840537579000049 ], [ -124.043096493999911, 48.840527301000122 ], [ -124.04318134799999, 48.838495428000087 ], [ -124.041900672999972, 48.838471975000061 ], [ -124.041957485999944, 48.837112335000029 ], [ -124.042522814999984, 48.837104750000059 ], [ -124.042185667999917, 48.834073272000083 ], [ -124.042847105999925, 48.834065998000078 ], [ -124.042792095999943, 48.833589896000099 ], [ -124.043030421999902, 48.833613072000055 ], [ -124.043374784999983, 48.833646520000116 ], [ -124.045370294999941, 48.833624465000099 ], [ -124.045495540999951, 48.833623245000091 ], [ -124.045819121999926, 48.833620050000079 ], [ -124.045958792999926, 48.833618690000073 ], [ -124.046988708999947, 48.833608559000048 ], [ -124.047165590999938, 48.833606823000075 ], [ -124.047183487000012, 48.834214164000144 ], [ -124.048497187999942, 48.834185380000065 ], [ -124.048734887999927, 48.84186355100011 ], [ -124.050966944999914, 48.841796520000095 ], [ -124.050955794999979, 48.842064565000101 ], [ -124.045516699999908, 48.841965260000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.985239852398524", "sL_AssetLoss": "894.3", "sL_BldgLoss": "881.1", "sL_StrLoss": "808", "sL_NStrLoss": "73.1", "sL_ContLoss": "13.2", "geom_point": "0101000020E6100000F41E803751FE5EC03888314429684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.976534854999926, 48.814603033000076 ], [ -123.976543327999934, 48.814406702000042 ], [ -123.975910645999974, 48.814394717000035 ], [ -123.97591321199999, 48.814335254000163 ], [ -123.97526652499999, 48.814323000000122 ], [ -123.975274459999966, 48.814139262000076 ], [ -123.974605611999934, 48.814126584000043 ], [ -123.974612933999978, 48.813957084000073 ], [ -123.971419905999966, 48.813896500000013 ], [ -123.97147316, 48.812665638000112 ], [ -123.972155381999954, 48.812974899000032 ], [ -123.973348427999895, 48.81344080500007 ], [ -123.974368427999934, 48.813742616000049 ], [ -123.974510009999932, 48.81378449100005 ], [ -123.975152720999986, 48.813919861000038 ], [ -123.976831231999981, 48.814273295000064 ], [ -123.97763680199995, 48.814442910000032 ], [ -123.978337284999952, 48.81463715700005 ], [ -123.976534854999926, 48.814603033000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.884544618215271", "sL_AssetLoss": "6522", "sL_BldgLoss": "5769", "sL_StrLoss": "3960", "sL_NStrLoss": "1809", "sL_ContLoss": "753", "geom_point": "0101000020E6100000FB05BB619BFF5EC077039A4246694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.997730867999934, 48.824294460000026 ], [ -123.997737396999966, 48.824141603 ], [ -123.996570435999942, 48.824119730000042 ], [ -123.996578539999973, 48.823930124000043 ], [ -123.995751217999938, 48.823914609000035 ], [ -123.995757963999949, 48.823756836000051 ], [ -123.994955898999962, 48.823741788000135 ], [ -123.994964370999924, 48.823543719000092 ], [ -123.99386907, 48.823523161000054 ], [ -123.993884293999898, 48.823167432000041 ], [ -123.993155266999963, 48.82315374300007 ], [ -123.993164670999988, 48.822934063000069 ], [ -123.992774465999929, 48.822926734000077 ], [ -123.992785804999954, 48.822661911000111 ], [ -123.992467268999945, 48.822655927 ], [ -123.992474925999929, 48.822477165000102 ], [ -123.992025263999921, 48.822468715000078 ], [ -123.992031879999928, 48.822314271000074 ], [ -123.991570757999966, 48.822305604000078 ], [ -123.991587268999979, 48.821920240000061 ], [ -123.990972858999939, 48.821908690000051 ], [ -123.990983944999954, 48.821650037000069 ], [ -123.990209346999947, 48.821635471000086 ], [ -123.990216273999962, 48.821473897000082 ], [ -123.989687936999943, 48.821463958000088 ], [ -123.989696909999964, 48.821254699000029 ], [ -123.98913063000002, 48.821244043000021 ], [ -123.989182387999932, 48.820037423000031 ], [ -123.988098564999973, 48.820017020000058 ], [ -123.988123332999962, 48.819439874000132 ], [ -123.988333676999972, 48.819550425000074 ], [ -123.989317701999965, 48.820067500000015 ], [ -123.990705743999939, 48.820720587000061 ], [ -123.991063091999962, 48.820888716000091 ], [ -123.995042021999978, 48.822375608000051 ], [ -123.99731550599995, 48.823225098000094 ], [ -123.999192869999959, 48.823913477000104 ], [ -124.000002438999957, 48.824210322000042 ], [ -124.000366530999926, 48.824343814000102 ], [ -123.997730867999934, 48.824294460000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6000583", "BldgCostT": "4138333", "sL_LossRatio": "0.816691919191919", "sL_AssetLoss": "39600", "sL_BldgLoss": "32341", "sL_StrLoss": "18518", "sL_NStrLoss": "13823", "sL_ContLoss": "7259", "geom_point": "0101000020E6100000910696A7DCF55EC0014AC7C566614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.838374506999969, 48.760417438000111 ], [ -123.838013236999956, 48.758121317000096 ], [ -123.838489988999982, 48.758410407000085 ], [ -123.83925440799996, 48.758646886000079 ], [ -123.840574401999959, 48.758601297000062 ], [ -123.842304918999957, 48.758004503000066 ], [ -123.843151180999939, 48.758070099000086 ], [ -123.84387751300001, 48.758361990000047 ], [ -123.844231190999935, 48.758448013000098 ], [ -123.844194927000018, 48.759237671000044 ], [ -123.845233522999933, 48.759258652000021 ], [ -123.845068208999962, 48.762859786000078 ], [ -123.844765770999928, 48.762853677000109 ], [ -123.843630070999907, 48.762830732000054 ], [ -123.84359079699999, 48.763685619000128 ], [ -123.838248529999973, 48.763577522000034 ], [ -123.838374506999969, 48.760417438000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.848505365787603", "sL_AssetLoss": "14769.5", "sL_BldgLoss": "12532", "sL_StrLoss": "8220", "sL_NStrLoss": "4312", "sL_ContLoss": "2237.5", "geom_point": "0101000020E6100000AB97A5BE68F95EC0E38222CCA3654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.899166895999926, 48.795749961000077 ], [ -123.899192575999962, 48.795176625000074 ], [ -123.896432632999932, 48.795122291000055 ], [ -123.896474872999974, 48.794180417000057 ], [ -123.893344975999966, 48.794118712000028 ], [ -123.893354780999971, 48.793900406000063 ], [ -123.891675928999959, 48.793867270000135 ], [ -123.891751848999945, 48.792178155000094 ], [ -123.89214730899999, 48.792259211000079 ], [ -123.893051720999921, 48.792370697000109 ], [ -123.893158665999948, 48.792383884000074 ], [ -123.895515112999973, 48.792674308000151 ], [ -123.896343982999937, 48.792802396000134 ], [ -123.898738800999951, 48.793605503000045 ], [ -123.901161403999978, 48.794515482000122 ], [ -123.901827273999956, 48.794766490000086 ], [ -123.902369074999982, 48.795023097000076 ], [ -123.903018273999976, 48.795434088 ], [ -123.903484320999965, 48.795834814000088 ], [ -123.899166895999926, 48.795749961000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.911987752340941", "sL_AssetLoss": "5617.4", "sL_BldgLoss": "5123", "sL_StrLoss": "4030", "sL_NStrLoss": "1093", "sL_ContLoss": "494.4", "geom_point": "0101000020E6100000E1114F5525FD5EC067DA594F886C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.954451704999911, 48.847810910000057 ], [ -123.953315107999941, 48.847604409000034 ], [ -123.952593786999941, 48.847601596000082 ], [ -123.95113788899998, 48.847792396000095 ], [ -123.949762240999974, 48.847759375000074 ], [ -123.949769560999982, 48.847592146000132 ], [ -123.951421578999955, 48.847623814000045 ], [ -123.95146174199999, 48.846705285 ], [ -123.95690118399996, 48.846809374000067 ], [ -123.956857015, 48.84782219200013 ], [ -123.958325194999958, 48.847850240000064 ], [ -123.9582277799999, 48.85008542200012 ], [ -123.957311009999927, 48.849810489000077 ], [ -123.956525186999926, 48.849296398000078 ], [ -123.95518139699999, 48.848182605000055 ], [ -123.954451704999911, 48.847810910000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.882978723404255", "sL_AssetLoss": "1974", "sL_BldgLoss": "1743", "sL_StrLoss": "1280", "sL_NStrLoss": "463", "sL_ContLoss": "231", "geom_point": "0101000020E61000004CDD3AA4BDF55EC04DAFDEF2A26F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.837817293999962, 48.872919360000033 ], [ -123.838648435999957, 48.8720507560001 ], [ -123.838692603999931, 48.872003969000076 ], [ -123.839339775, 48.872227700000067 ], [ -123.840859604999963, 48.870978145000045 ], [ -123.841462428999989, 48.870485136000063 ], [ -123.84144002699999, 48.870971066000024 ], [ -123.841423459999945, 48.87133045200008 ], [ -123.840606206999894, 48.871313956000101 ], [ -123.840561777999966, 48.872277270000033 ], [ -123.840132347999983, 48.872268600000012 ], [ -123.840100198999977, 48.87296548000004 ], [ -123.838888920999977, 48.872941015000023 ], [ -123.837817293999962, 48.872919360000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.866729349262603", "sL_AssetLoss": "15208.9", "sL_BldgLoss": "13182", "sL_StrLoss": "9080", "sL_NStrLoss": "4102", "sL_ContLoss": "2026.9", "geom_point": "0101000020E61000002D25AA3BBFF65EC0DB55408801664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.852787649000021, 48.795066696000013 ], [ -123.858220879999976, 48.795175813000078 ], [ -123.85805643799992, 48.798776758000038 ], [ -123.854287217999939, 48.798701089000062 ], [ -123.852622789999984, 48.798667633000022 ], [ -123.852636419999925, 48.79836992800012 ], [ -123.852787649000021, 48.795066696000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.9375", "sL_AssetLoss": "2272", "sL_BldgLoss": "2130", "sL_StrLoss": "1700", "sL_NStrLoss": "430", "sL_ContLoss": "142", "geom_point": "0101000020E61000007F30CFCE12F55EC0E71B135A3D6B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.829757479999913, 48.837107993000082 ], [ -123.831310253999931, 48.836833431000095 ], [ -123.831252485, 48.838081602000067 ], [ -123.830995429999973, 48.838076386000104 ], [ -123.830979093999929, 48.838429308000045 ], [ -123.826150145999975, 48.838331205000053 ], [ -123.826393494999948, 48.83803091300004 ], [ -123.826840609, 48.837830085000121 ], [ -123.829757479999913, 48.837107993000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12566666", "BldgCostT": "8666666", "sL_LossRatio": "0.90228567045187", "sL_AssetLoss": "37805.1", "sL_BldgLoss": "34111", "sL_StrLoss": "25150", "sL_NStrLoss": "8961", "sL_ContLoss": "3694.1", "geom_point": "0101000020E6100000B36FB40495F85EC0D7381756DC644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.880119169999958, 48.792665470000017 ], [ -123.880142007999922, 48.792160132000106 ], [ -123.879785988999942, 48.792153063000114 ], [ -123.879845301999978, 48.790840780000082 ], [ -123.879446353999967, 48.790832858000044 ], [ -123.879609128999945, 48.787231833000085 ], [ -123.880062036999973, 48.787240828000023 ], [ -123.88010273499998, 48.786340177000056 ], [ -123.880209887999939, 48.783968740000105 ], [ -123.885641897999989, 48.784076464000087 ], [ -123.885605115999951, 48.784892627000012 ], [ -123.886134407000014, 48.784903109000084 ], [ -123.886174449999928, 48.784014386000052 ], [ -123.891606478999975, 48.784121806 ], [ -123.891604463999911, 48.784166634 ], [ -123.890256101999924, 48.78522150600002 ], [ -123.890034598999961, 48.785431608000103 ], [ -123.889886092000026, 48.78586299600007 ], [ -123.889780660999975, 48.786056348000081 ], [ -123.889606677999964, 48.786375293000077 ], [ -123.889446078999967, 48.786669700000118 ], [ -123.889289490999957, 48.786827012000174 ], [ -123.88907330399999, 48.78694980200008 ], [ -123.887618482999969, 48.787469807000058 ], [ -123.887292701999982, 48.787655394000083 ], [ -123.88613269299999, 48.788316185000099 ], [ -123.88607376499999, 48.788373676000028 ], [ -123.885973399999955, 48.788471597000104 ], [ -123.885893584999948, 48.788644890000043 ], [ -123.885848058999926, 48.788831759000068 ], [ -123.885761809999906, 48.789185608000039 ], [ -123.885641776999961, 48.789345401000155 ], [ -123.885436992999928, 48.789515314000084 ], [ -123.884913715999971, 48.789857504000096 ], [ -123.884404685999939, 48.790190402000057 ], [ -123.884198300999927, 48.79039629500005 ], [ -123.884477075999939, 48.790514394000063 ], [ -123.885976969999916, 48.791490209000131 ], [ -123.88613849699999, 48.791595288000103 ], [ -123.886544016999935, 48.791708708000115 ], [ -123.887133199999965, 48.791787091000032 ], [ -123.888589181, 48.791815890000031 ], [ -123.889501996999968, 48.791771708000063 ], [ -123.890302423999955, 48.791808307000053 ], [ -123.890355362999941, 48.791820028000132 ], [ -123.890324161, 48.792513780000057 ], [ -123.885568120999935, 48.792419703000085 ], [ -123.885552186999945, 48.792773197000088 ], [ -123.880119169999958, 48.792665470000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.794459395282571", "sL_AssetLoss": "31585", "sL_BldgLoss": "25093", "sL_StrLoss": "13790", "sL_NStrLoss": "11303", "sL_ContLoss": "6492", "geom_point": "0101000020E610000038AA0D2DB6F55EC046A68D34826A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.836608512999959, 48.830243202000055 ], [ -123.842045781999985, 48.830353136000063 ], [ -123.841879973999966, 48.833953852000022 ], [ -123.836442285999965, 48.833843911000123 ], [ -123.836608512999959, 48.830243202000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16476833", "BldgCostT": "11363333", "sL_LossRatio": "0.813707662512381", "sL_AssetLoss": "114989.7", "sL_BldgLoss": "93568", "sL_StrLoss": "53464", "sL_NStrLoss": "40104", "sL_ContLoss": "21421.7", "geom_point": "0101000020E61000001B393DB55BF85EC065D69CCD74624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.874621236999985, 48.770415317000086 ], [ -123.874635237999954, 48.770106145000049 ], [ -123.874501805999898, 48.770103487000071 ], [ -123.874588883999962, 48.768180716000124 ], [ -123.874429812999935, 48.768177548000097 ], [ -123.874442315999929, 48.768038103999984 ], [ -123.874596382999982, 48.767561005000054 ], [ -123.874872291999964, 48.767036898000129 ], [ -123.875623510999944, 48.766337589000074 ], [ -123.876853209999965, 48.765914586000086 ], [ -123.877600106999978, 48.765774995000122 ], [ -123.88017011599996, 48.765655396000099 ], [ -123.881242914000026, 48.765485905000091 ], [ -123.882669696999955, 48.765438903000053 ], [ -123.884099415999913, 48.765508700000062 ], [ -123.884756114999902, 48.765638303000081 ], [ -123.887722678000017, 48.766434399000062 ], [ -123.8886397, 48.76676061400007 ], [ -123.889663397999954, 48.766932902000072 ], [ -123.890269594999921, 48.767323110000042 ], [ -123.890299898999956, 48.767521113000015 ], [ -123.890276184999919, 48.767719091000089 ], [ -123.889587096999918, 48.768758692000041 ], [ -123.889599880999981, 48.769134414000099 ], [ -123.888409982, 48.769110876000127 ], [ -123.888328969999947, 48.770911394000102 ], [ -123.887388097999946, 48.770892773000043 ], [ -123.88678560299995, 48.770880845000079 ], [ -123.886785206999946, 48.770889633000195 ], [ -123.882578180999943, 48.77080624600012 ], [ -123.882553865999981, 48.771345136000029 ], [ -123.880027681999962, 48.771294984000107 ], [ -123.880015977999946, 48.771554098000131 ], [ -123.878253369999953, 48.771519070000046 ], [ -123.878137143999965, 48.774089636000021 ], [ -123.872706307999977, 48.773981529000082 ], [ -123.872845732999949, 48.770905669000108 ], [ -123.872864352999969, 48.77049487900004 ], [ -123.873122318999918, 48.770459301000123 ], [ -123.87325696, 48.770388138000058 ], [ -123.874621236999985, 48.770415317000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "0.807335753137558", "sL_AssetLoss": "28294.3", "sL_BldgLoss": "22843", "sL_StrLoss": "13009", "sL_NStrLoss": "9834", "sL_ContLoss": "5451.3", "geom_point": "0101000020E6100000F1F2F07504FD5EC0185974E3C46C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.95272827499997, 48.851347006000033 ], [ -123.952732394999899, 48.851252720000048 ], [ -123.94961196699991, 48.851192926000053 ], [ -123.949723305999939, 48.848649055000138 ], [ -123.949759644999943, 48.84781872399999 ], [ -123.950893686999962, 48.847849401000062 ], [ -123.952854218999931, 48.847715504000107 ], [ -123.95435870399993, 48.847910588000104 ], [ -123.955017409, 48.848174110000073 ], [ -123.956803313999927, 48.849643905000121 ], [ -123.958041004999941, 48.850254909000057 ], [ -123.958218268999971, 48.850303648000121 ], [ -123.958174817999975, 48.851300561000102 ], [ -123.958168258999947, 48.851451030000149 ], [ -123.95272827499997, 48.851347006000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7515834", "BldgCostT": "5183334", "sL_LossRatio": "0.913836684785401", "sL_AssetLoss": "19464.2", "sL_BldgLoss": "17787.1", "sL_StrLoss": "13166", "sL_NStrLoss": "4621.1", "sL_ContLoss": "1677.1", "geom_point": "0101000020E610000046EF54C07DFC5EC08C7770451C674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.958315516999932, 48.808890072000075 ], [ -123.958323158999988, 48.808714572000035 ], [ -123.957338491999963, 48.80869574700008 ], [ -123.957369531999959, 48.807983172000029 ], [ -123.956295195999985, 48.807962621000094 ], [ -123.956336820999923, 48.807007571000042 ], [ -123.955421894999986, 48.806990062000125 ], [ -123.95541415699995, 48.807167530000115 ], [ -123.949979314999922, 48.807063359000047 ], [ -123.94999074, 48.806802003000065 ], [ -123.948230966999944, 48.806768214000058 ], [ -123.948244583999937, 48.806457003000148 ], [ -123.946306915999955, 48.806419764000033 ], [ -123.946324105999963, 48.80602725800005 ], [ -123.945350905999945, 48.806008541000061 ], [ -123.945363712999892, 48.805716216000057 ], [ -123.943517955999965, 48.805680694000024 ], [ -123.943521596999915, 48.805597691000067 ], [ -123.940751559999924, 48.805544322000046 ], [ -123.940752277999934, 48.805527988000073 ], [ -123.938112066999921, 48.805477053000125 ], [ -123.938119527999959, 48.805307349000074 ], [ -123.936709325999942, 48.805280116000048 ], [ -123.936744875, 48.804472167000014 ], [ -123.932030805999943, 48.804380997000059 ], [ -123.932042435999932, 48.804117258000041 ], [ -123.930757075999963, 48.804092364000084 ], [ -123.930828429999949, 48.80247519300007 ], [ -123.93119193299999, 48.802511694000074 ], [ -123.931224783999966, 48.802514998000078 ], [ -123.932150788999976, 48.802636492000026 ], [ -123.938068121999919, 48.803627256000063 ], [ -123.941094730999964, 48.804133856000128 ], [ -123.949470771000037, 48.805535400000039 ], [ -123.951328498999956, 48.80584615000005 ], [ -123.952612123999984, 48.806060840000065 ], [ -123.95394248599996, 48.806283341000054 ], [ -123.954832699999912, 48.8064322130001 ], [ -123.956401488999916, 48.806755100000061 ], [ -123.956572991999977, 48.806801029000042 ], [ -123.958593795999917, 48.807342103000074 ], [ -123.960451811999988, 48.807895696000074 ], [ -123.961196941999944, 48.808161301000062 ], [ -123.962420293999941, 48.808597296000087 ], [ -123.963336482999978, 48.808985923000115 ], [ -123.958315516999932, 48.808890072000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.816050002281126", "sL_AssetLoss": "21919", "sL_BldgLoss": "17887", "sL_StrLoss": "9800", "sL_NStrLoss": "8087", "sL_ContLoss": "4032", "geom_point": "0101000020E61000009768DA0F02F55EC0B928C46DFE6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.825981400999979, 48.834370452000059 ], [ -123.831248350999914, 48.834477460000052 ], [ -123.831379109, 48.834612794000094 ], [ -123.831412057999955, 48.834633661000062 ], [ -123.831318943999932, 48.83664565400008 ], [ -123.828600890999923, 48.8371520970001 ], [ -123.826727983999916, 48.837650594000124 ], [ -123.825915795999947, 48.837999493000034 ], [ -123.825700914, 48.838226 ], [ -123.82566590099999, 48.838321356000101 ], [ -123.825540911999937, 48.838318812000075 ], [ -123.825707992999966, 48.834718146000093 ], [ -123.825965027999985, 48.834723376000042 ], [ -123.825981400999979, 48.834370452000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15575417", "BldgCostT": "10741667", "sL_LossRatio": "0.86824654687691", "sL_AssetLoss": "65448", "sL_BldgLoss": "56825", "sL_StrLoss": "38600", "sL_NStrLoss": "18225", "sL_ContLoss": "8623", "geom_point": "0101000020E6100000E576D43D97F65EC0F815ADD41A654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.849931684999945, 48.793685142000172 ], [ -123.849934332000018, 48.793627418000057 ], [ -123.849579275999986, 48.79362026800009 ], [ -123.849581812999958, 48.793564941000099 ], [ -123.849215267999952, 48.793557558000089 ], [ -123.849223180999914, 48.793384971000066 ], [ -123.848318045000013, 48.793366735000092 ], [ -123.848321638999977, 48.793288416000074 ], [ -123.847875433999945, 48.793279423000101 ], [ -123.847897550999946, 48.792797375000127 ], [ -123.847299041999946, 48.792785310000063 ], [ -123.847464289999948, 48.789184346000134 ], [ -123.84854676, 48.78920616500006 ], [ -123.848554581999949, 48.789035623000075 ], [ -123.84801949300001, 48.789024840000081 ], [ -123.848184672999977, 48.785423853000097 ], [ -123.849170885999953, 48.785443727000086 ], [ -123.85000340799999, 48.785460496000113 ], [ -123.85056242499995, 48.785471753000081 ], [ -123.853616776999942, 48.785533206000082 ], [ -123.853608503999922, 48.785714002000063 ], [ -123.856884669999971, 48.785779821000062 ], [ -123.856807123999928, 48.787477275000057 ], [ -123.856944069999926, 48.787480024000097 ], [ -123.85692002199994, 48.788006416 ], [ -123.857507680999959, 48.788018211000036 ], [ -123.857432308999975, 48.789668474000052 ], [ -123.857792768999929, 48.78967570800004 ], [ -123.857781670999955, 48.789918737000065 ], [ -123.859418524999953, 48.789951567000081 ], [ -123.859254191, 48.7935525440001 ], [ -123.855977927999959, 48.793486808000054 ], [ -123.855976459999951, 48.793518925000086 ], [ -123.855377894999947, 48.793506905000058 ], [ -123.85536375199996, 48.793816239000051 ], [ -123.84993068499989, 48.793706976000102 ], [ -123.849931684999945, 48.793685142000172 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.922219745932694", "sL_AssetLoss": "4487", "sL_BldgLoss": "4138", "sL_StrLoss": "3130", "sL_NStrLoss": "1008", "sL_ContLoss": "349", "geom_point": "0101000020E6100000FD1B301FBB015FC098116257A86A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.030972062999965, 48.835116898000116 ], [ -124.030975072999951, 48.835045299000107 ], [ -124.030333744999936, 48.835033483000096 ], [ -124.030334626999931, 48.83501250500008 ], [ -124.029518416999977, 48.834997461000064 ], [ -124.02957344899994, 48.833688620000039 ], [ -124.02419490299999, 48.833589326000059 ], [ -124.024213341999925, 48.833151944000086 ], [ -124.022988584999965, 48.833129296000067 ], [ -124.023006390999939, 48.832707175000081 ], [ -124.022731500999967, 48.83270208900008 ], [ -124.022755440999958, 48.832134666000066 ], [ -124.02251872599993, 48.832130286000101 ], [ -124.022541739999951, 48.831584859000046 ], [ -124.022921133999944, 48.831670185000078 ], [ -124.024920046999938, 48.832119708000057 ], [ -124.027482042999935, 48.832695765000068 ], [ -124.030629615999928, 48.833403402000066 ], [ -124.031422979999931, 48.833536019000142 ], [ -124.031401006999928, 48.835124800000081 ], [ -124.030972062999965, 48.835116898000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28378917", "BldgCostT": "19571667", "sL_LossRatio": "0.86345108157951", "sL_AssetLoss": "126343", "sL_BldgLoss": "109091", "sL_StrLoss": "71502", "sL_NStrLoss": "37589", "sL_ContLoss": "17252", "geom_point": "0101000020E610000097AABC36FEF55EC03F788AA8CB624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.838291732, 48.780633508000072 ], [ -123.838333682999945, 48.779722968000073 ], [ -123.837681476999947, 48.779709758000138 ], [ -123.837665873999953, 48.777411997000058 ], [ -123.837693488999918, 48.775841393000071 ], [ -123.837706106, 48.775123990000147 ], [ -123.837643403999962, 48.773831396000062 ], [ -123.837698046999961, 48.773732070000101 ], [ -123.838007331999918, 48.770015497000031 ], [ -123.838011106999971, 48.769765872000065 ], [ -123.838084330999934, 48.76769575800008 ], [ -123.838146872999957, 48.766127273000052 ], [ -123.838165167999961, 48.765668426000069 ], [ -123.840860937999949, 48.765723006000066 ], [ -123.840865071999957, 48.76563311300005 ], [ -123.842608434999946, 48.765668374000022 ], [ -123.842627423999915, 48.76525525500012 ], [ -123.84407781099999, 48.765284568000027 ], [ -123.844089778999916, 48.765023991000071 ], [ -123.849519513999908, 48.76513355600008 ], [ -123.849457288999929, 48.766491642000048 ], [ -123.850920643999984, 48.766521123000096 ], [ -123.850822502999961, 48.768664360000066 ], [ -123.851252559999949, 48.768673020000065 ], [ -123.851087674999917, 48.772274109000115 ], [ -123.850689890999959, 48.77226609900007 ], [ -123.850639417999957, 48.773368117000032 ], [ -123.850329735999949, 48.773361880000017 ], [ -123.850256492999947, 48.774960721000092 ], [ -123.849655673999933, 48.77494861800006 ], [ -123.849645179999982, 48.77517763500007 ], [ -123.845840529999947, 48.775100914000106 ], [ -123.845831536999953, 48.775296829000084 ], [ -123.843098965999971, 48.775241642000076 ], [ -123.84309542799997, 48.775318597000116 ], [ -123.842851764999921, 48.775313672000038 ], [ -123.842768738999951, 48.777119706000086 ], [ -123.843888738999951, 48.777142337000086 ], [ -123.843770337999942, 48.779718937000055 ], [ -123.843723259999962, 48.780743365 ], [ -123.839888971, 48.780665842000161 ], [ -123.838291732, 48.780633508000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.903582718651212", "sL_AssetLoss": "10628.8", "sL_BldgLoss": "9604", "sL_StrLoss": "7120", "sL_NStrLoss": "2484", "sL_ContLoss": "1024.8", "geom_point": "0101000020E6100000C468CA0CE3F45EC025B79A33AA654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.824107101999971, 48.792416059000111 ], [ -123.828720717999943, 48.792509978000076 ], [ -123.828619706, 48.794692041000083 ], [ -123.828554020999945, 48.796110893000083 ], [ -123.824055527999946, 48.796019319000052 ], [ -123.824063055999943, 48.795063195000154 ], [ -123.824069037999934, 48.79470457000015 ], [ -123.824107101999971, 48.792416059000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12779333", "BldgCostT": "8813333", "sL_LossRatio": "0.800422340975694", "sL_AssetLoss": "92816", "sL_BldgLoss": "74292", "sL_StrLoss": "42191", "sL_NStrLoss": "32101", "sL_ContLoss": "18524", "geom_point": "0101000020E6100000CEDAD8B2DDF65EC025415D4917624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.857986473000011, 48.772089748000077 ], [ -123.858118050999963, 48.769206879000144 ], [ -123.855350050999931, 48.769151288000074 ], [ -123.855368672999987, 48.768743765000053 ], [ -123.854906559999947, 48.768734477000066 ], [ -123.855071138999961, 48.765133362000071 ], [ -123.855877025999973, 48.765149559000044 ], [ -123.855886109, 48.764950730000081 ], [ -123.855681012999966, 48.764946609000056 ], [ -123.85572485699997, 48.763986908000085 ], [ -123.853975052999928, 48.763951730000016 ], [ -123.853954845999979, 48.764393662000053 ], [ -123.848525186999979, 48.764284323 ], [ -123.848581146999962, 48.76306346300013 ], [ -123.84866707599997, 48.76118863900011 ], [ -123.849180996999948, 48.761506709000095 ], [ -123.84993361799999, 48.761771606000138 ], [ -123.851657006999986, 48.762290004000121 ], [ -123.852202911999925, 48.762394 ], [ -123.852828888999966, 48.762379700000089 ], [ -123.854064891999883, 48.762227313000054 ], [ -123.854918985999973, 48.762032191000124 ], [ -123.856868089, 48.761369905 ], [ -123.85844240599999, 48.761196203000118 ], [ -123.858884216999982, 48.761092522000084 ], [ -123.858869909999939, 48.761406205000156 ], [ -123.859747264999967, 48.761423807000035 ], [ -123.859753319999982, 48.761482507000075 ], [ -123.858972005999931, 48.762648894000066 ], [ -123.85895299399999, 48.763161594000039 ], [ -123.859276121000022, 48.764635704000035 ], [ -123.859753800999925, 48.765396205000123 ], [ -123.860181208999961, 48.76576219 ], [ -123.860798996999989, 48.766089811000072 ], [ -123.862552093999909, 48.766796209000056 ], [ -123.862709503999909, 48.767173596000092 ], [ -123.862705497999968, 48.767713386000054 ], [ -123.862058791999971, 48.768978107000102 ], [ -123.862203012999927, 48.769416697000111 ], [ -123.862576504999964, 48.76978279700004 ], [ -123.862867507999937, 48.770050484000102 ], [ -123.862942808999946, 48.770427890000107 ], [ -123.863202323999971, 48.770587404000047 ], [ -123.863491652999954, 48.770560108 ], [ -123.863442970999984, 48.771629453000102 ], [ -123.86341705800001, 48.772198605000071 ], [ -123.857986473000011, 48.772089748000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770001", "BldgCostT": "2600001", "sL_LossRatio": "0.854951915062398", "sL_AssetLoss": "17396.3", "sL_BldgLoss": "14873", "sL_StrLoss": "9750", "sL_NStrLoss": "5123", "sL_ContLoss": "2523.3", "geom_point": "0101000020E610000003B5F72D63F65EC0F893E7B031664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.84716928899999, 48.796536261000071 ], [ -123.852602676999965, 48.796645664000117 ], [ -123.852524754999934, 48.798347526000093 ], [ -123.852437796999979, 48.8002465920001 ], [ -123.847003991999927, 48.800137182000121 ], [ -123.847135781999924, 48.797266225000087 ], [ -123.84716928899999, 48.796536261000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127923977", "BldgCostT": "82474856", "sL_LossRatio": "0.850467350471598", "sL_AssetLoss": "290748.61", "sL_BldgLoss": "247272.2", "sL_StrLoss": "179262.1", "sL_NStrLoss": "68010.1", "sL_ContLoss": "43476.41", "geom_point": "0101000020E61000007D7F283DF8025FC00E7D9839B46A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.048734887999927, 48.84186355100011 ], [ -124.048497187999942, 48.834185380000065 ], [ -124.047183487000012, 48.834214164000144 ], [ -124.047165590999938, 48.833606823000075 ], [ -124.046988708999947, 48.833608559000048 ], [ -124.045958792999926, 48.833618690000073 ], [ -124.045819121999926, 48.833620050000079 ], [ -124.045495540999951, 48.833623245000091 ], [ -124.045370294999941, 48.833624465000099 ], [ -124.043374784999983, 48.833646520000116 ], [ -124.043030421999902, 48.833613072000055 ], [ -124.042792095999943, 48.833589896000099 ], [ -124.042847105999925, 48.834065998000078 ], [ -124.042185667999917, 48.834073272000083 ], [ -124.042522814999984, 48.837104750000059 ], [ -124.041957485999944, 48.837112335000029 ], [ -124.041960951999926, 48.837029401000045 ], [ -124.041380439999926, 48.837018765000082 ], [ -124.041388214999984, 48.836832735000044 ], [ -124.039532266999927, 48.836798710000018 ], [ -124.039517778999965, 48.837145035000056 ], [ -124.034464730999929, 48.837212585000046 ], [ -124.034072556999888, 48.837205374000106 ], [ -124.034157708999899, 48.835175537000168 ], [ -124.031401006999928, 48.835124800000081 ], [ -124.031422979999931, 48.833536019000142 ], [ -124.031552154999957, 48.833557624000044 ], [ -124.031768603, 48.833593813000071 ], [ -124.032377681999961, 48.833668998000121 ], [ -124.032843026999927, 48.833700603000104 ], [ -124.033395199999973, 48.833738092000054 ], [ -124.034057280999932, 48.833750307000095 ], [ -124.034255819999942, 48.833748282000094 ], [ -124.03440409599996, 48.833746759000043 ], [ -124.034528313999942, 48.833745488 ], [ -124.03704876799999, 48.833719710000054 ], [ -124.037736501999973, 48.833712659000057 ], [ -124.038569744999933, 48.833704117000146 ], [ -124.039324006, 48.833696387000089 ], [ -124.039945661999951, 48.83369 ], [ -124.041051871999983, 48.833558904000022 ], [ -124.0416469099999, 48.833352701000116 ], [ -124.042007667999926, 48.833184526000096 ], [ -124.042151974999925, 48.833116903000089 ], [ -124.04267742199994, 48.832785066000078 ], [ -124.043006433999935, 48.832480299000018 ], [ -124.043116148999985, 48.832378654000124 ], [ -124.04350562800002, 48.831815488000089 ], [ -124.044469260999932, 48.830111439000092 ], [ -124.044667869999941, 48.829971055 ], [ -124.044917804999969, 48.829794402000083 ], [ -124.046004448999895, 48.829248487000065 ], [ -124.046676925999975, 48.828985720000063 ], [ -124.046788614999926, 48.828942078000104 ], [ -124.047187543999954, 48.828814940000029 ], [ -124.04810938599995, 48.828521086000116 ], [ -124.048609512999917, 48.828338398000049 ], [ -124.048931252000017, 48.828181162000128 ], [ -124.04920492, 48.828047382000136 ], [ -124.049454435999976, 48.827925456000067 ], [ -124.04977139099999, 48.827770525000055 ], [ -124.049917800999964, 48.827698969000025 ], [ -124.050134199999988, 48.827593209000085 ], [ -124.050356800999921, 48.827475609000025 ], [ -124.050793919999975, 48.82720429500008 ], [ -124.051238722999983, 48.82687730100011 ], [ -124.052289453999947, 48.82794624800011 ], [ -124.052915245999912, 48.828582841000049 ], [ -124.053088220999967, 48.828758789000055 ], [ -124.053271299999892, 48.828935119000072 ], [ -124.053438090999947, 48.828850817000045 ], [ -124.053493278999952, 48.828844158000059 ], [ -124.053633593999947, 48.828827310000072 ], [ -124.054545495999918, 48.828816907000068 ], [ -124.054539598999924, 48.82951499500011 ], [ -124.054562219999951, 48.830316398999983 ], [ -124.054606603999972, 48.830391892000108 ], [ -124.05476274399993, 48.831983635000022 ], [ -124.054788483, 48.832086440000097 ], [ -124.055067122999972, 48.833199869000047 ], [ -124.054954466999973, 48.836620807000052 ], [ -124.053640421999944, 48.836596887000049 ], [ -124.053772463000016, 48.833417589000064 ], [ -124.053778857999987, 48.833263591000055 ], [ -124.053275247999977, 48.833268194000077 ], [ -124.053279458999953, 48.833469007000083 ], [ -124.053280905999969, 48.833538025000102 ], [ -124.052872177999916, 48.833541758000102 ], [ -124.052877831999965, 48.833811589000014 ], [ -124.052469101000028, 48.833815321000095 ], [ -124.052491712999981, 48.834894644000073 ], [ -124.052082973999973, 48.834898375000073 ], [ -124.052094274999902, 48.835438036000077 ], [ -124.051164503000038, 48.835446520000062 ], [ -124.051130818999937, 48.836256472000095 ], [ -124.051702477999925, 48.836251258000033 ], [ -124.051719425999977, 48.83706075000002 ], [ -124.05131066899996, 48.837064479000048 ], [ -124.051316315999927, 48.837334310000152 ], [ -124.051085906, 48.837336411000138 ], [ -124.051067758999977, 48.837772775000111 ], [ -124.051011509999924, 48.837771750000101 ], [ -124.05098282799996, 48.838461349000056 ], [ -124.05110557199994, 48.838463587000049 ], [ -124.050966944999914, 48.841796520000095 ], [ -124.048734887999927, 48.84186355100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186223054", "BldgCostT": "123158747", "sL_LossRatio": "0.86164116934997", "sL_AssetLoss": "597932.2", "sL_BldgLoss": "515203", "sL_StrLoss": "344570", "sL_NStrLoss": "170633", "sL_ContLoss": "82729.2", "geom_point": "0101000020E610000003C79F87DE025FC01F11D75A2D6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.034092489000017, 48.832255230000058 ], [ -124.035385410999965, 48.831896858000093 ], [ -124.035814767999952, 48.831911429000044 ], [ -124.035830473999937, 48.83177349500005 ], [ -124.035928895999987, 48.830907999000061 ], [ -124.036888690999916, 48.830339996000099 ], [ -124.036881901999948, 48.830136032000027 ], [ -124.036828091999951, 48.830084711000033 ], [ -124.036700518999965, 48.82993262900002 ], [ -124.036553070999958, 48.82966712900005 ], [ -124.036392341999914, 48.829274908000073 ], [ -124.036452277999928, 48.829244894000041 ], [ -124.037944902999968, 48.828260798000017 ], [ -124.038184518999969, 48.827988802000071 ], [ -124.038925810999942, 48.827567188000089 ], [ -124.039454306999986, 48.827427602000085 ], [ -124.039895597999958, 48.827108610000046 ], [ -124.040441197999897, 48.827050197000048 ], [ -124.041367508999926, 48.82706868300005 ], [ -124.041758809999976, 48.826957594000113 ], [ -124.042698905999927, 48.826859402000153 ], [ -124.04333952099999, 48.826970502000087 ], [ -124.043918481999953, 48.827279493000091 ], [ -124.044465578999919, 48.827975897000073 ], [ -124.044566603999982, 48.828307808000048 ], [ -124.044678404, 48.828397501000055 ], [ -124.045128396, 48.828474387 ], [ -124.045754405999944, 48.828396104000085 ], [ -124.046953786999921, 48.828394707000037 ], [ -124.047441499999962, 48.828300692000056 ], [ -124.048304582999947, 48.827789395000089 ], [ -124.048487786999971, 48.827517407000059 ], [ -124.048882019999965, 48.826739701000086 ], [ -124.049065489999975, 48.825821096000062 ], [ -124.049295182999984, 48.825674397000029 ], [ -124.050436892999969, 48.825529212000099 ], [ -124.051204022999983, 48.825711501000093 ], [ -124.051828298999965, 48.825624605000044 ], [ -124.052661335999957, 48.826116827000114 ], [ -124.052683993999949, 48.826130215000028 ], [ -124.053738299999935, 48.827028793000125 ], [ -124.054040295999968, 48.827134192000074 ], [ -124.056297206999972, 48.826906393000094 ], [ -124.056857419999943, 48.826406496000054 ], [ -124.057464918999941, 48.826130202000058 ], [ -124.058029436999959, 48.825925389000048 ], [ -124.058159797999934, 48.82598554800007 ], [ -124.058448237999983, 48.826145591000078 ], [ -124.05913868, 48.826474202000021 ], [ -124.059414007999919, 48.826560196000102 ], [ -124.060015278999984, 48.82659371500003 ], [ -124.060806741999926, 48.826599043000066 ], [ -124.060639363999925, 48.826874392 ], [ -124.060510397999963, 48.827086511000111 ], [ -124.060353879999951, 48.827252997000123 ], [ -124.059520903999953, 48.827692086000077 ], [ -124.059150914999975, 48.827887109000073 ], [ -124.058808810999963, 48.828033999000091 ], [ -124.058686941999937, 48.828063127000092 ], [ -124.058503786999964, 48.828106903000041 ], [ -124.057802513999903, 48.828188693000094 ], [ -124.057799852999949, 48.828898941000048 ], [ -124.057797497999942, 48.829523804000125 ], [ -124.056433477999974, 48.829520137000067 ], [ -124.054866421999961, 48.829515884000045 ], [ -124.054539598999924, 48.82951499500011 ], [ -124.054545495999918, 48.828816907000068 ], [ -124.053633593999947, 48.828827310000072 ], [ -124.053493278999952, 48.828844158000059 ], [ -124.053438090999947, 48.828850817000045 ], [ -124.053271299999892, 48.828935119000072 ], [ -124.053088220999967, 48.828758789000055 ], [ -124.052915245999912, 48.828582841000049 ], [ -124.052289453999947, 48.82794624800011 ], [ -124.051238722999983, 48.82687730100011 ], [ -124.050793919999975, 48.82720429500008 ], [ -124.050356800999921, 48.827475609000025 ], [ -124.050134199999988, 48.827593209000085 ], [ -124.049917800999964, 48.827698969000025 ], [ -124.04977139099999, 48.827770525000055 ], [ -124.049454435999976, 48.827925456000067 ], [ -124.04920492, 48.828047382000136 ], [ -124.048931252000017, 48.828181162000128 ], [ -124.048609512999917, 48.828338398000049 ], [ -124.04810938599995, 48.828521086000116 ], [ -124.047187543999954, 48.828814940000029 ], [ -124.046788614999926, 48.828942078000104 ], [ -124.046676925999975, 48.828985720000063 ], [ -124.046004448999895, 48.829248487000065 ], [ -124.044917804999969, 48.829794402000083 ], [ -124.044667869999941, 48.829971055 ], [ -124.044469260999932, 48.830111439000092 ], [ -124.04350562800002, 48.831815488000089 ], [ -124.043116148999985, 48.832378654000124 ], [ -124.043006433999935, 48.832480299000018 ], [ -124.04267742199994, 48.832785066000078 ], [ -124.042151974999925, 48.833116903000089 ], [ -124.042007667999926, 48.833184526000096 ], [ -124.0416469099999, 48.833352701000116 ], [ -124.041051871999983, 48.833558904000022 ], [ -124.039945661999951, 48.83369 ], [ -124.039324006, 48.833696387000089 ], [ -124.038569744999933, 48.833704117000146 ], [ -124.037736501999973, 48.833712659000057 ], [ -124.03704876799999, 48.833719710000054 ], [ -124.034528313999942, 48.833745488 ], [ -124.03440409599996, 48.833746759000043 ], [ -124.034092489000017, 48.832255230000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54318084", "BldgCostT": "36098334", "sL_LossRatio": "0.803153003352538", "sL_AssetLoss": "222518", "sL_BldgLoss": "178716", "sL_StrLoss": "108203", "sL_NStrLoss": "70513", "sL_ContLoss": "43802", "geom_point": "0101000020E610000076683FEF19035FC051E3F799A7694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.04717079699995, 48.824597828000087 ], [ -124.048815791999942, 48.824297773000126 ], [ -124.048712073999965, 48.824062918000031 ], [ -124.048467746999947, 48.823509404000042 ], [ -124.050680293999932, 48.823130805000112 ], [ -124.051166412999933, 48.82304502200008 ], [ -124.052845377999944, 48.822748668000067 ], [ -124.053177724999941, 48.823525002000068 ], [ -124.053227723999925, 48.823655822000141 ], [ -124.053278323999947, 48.823788153000102 ], [ -124.05357301699999, 48.824553028000054 ], [ -124.053910020000018, 48.82534748500008 ], [ -124.054094160999952, 48.825827435000086 ], [ -124.053869643999988, 48.825828748000113 ], [ -124.053509554999891, 48.825914625000081 ], [ -124.053226005999974, 48.825982211000031 ], [ -124.053205677, 48.82598705700007 ], [ -124.052973199999911, 48.825704299000073 ], [ -124.050718289999949, 48.824717388000082 ], [ -124.050062280999953, 48.824560697000038 ], [ -124.049382482999988, 48.824684599000101 ], [ -124.049029970999982, 48.82488326100011 ], [ -124.048669873999984, 48.82508619500004 ], [ -124.048073492999933, 48.825946509000111 ], [ -124.048281303999957, 48.826726900000082 ], [ -124.048260902999942, 48.827051604000069 ], [ -124.047651589999958, 48.82788479200007 ], [ -124.04719361699992, 48.828168200000064 ], [ -124.045012916999937, 48.828079901000102 ], [ -124.044736593999971, 48.827901895000132 ], [ -124.044548605999978, 48.827436192000114 ], [ -124.044200699999976, 48.827043103000086 ], [ -124.044001817, 48.826884367000034 ], [ -124.043681609999979, 48.826067986000048 ], [ -124.044423584999961, 48.825075198000071 ], [ -124.04661579699993, 48.824699066000065 ], [ -124.04717079699995, 48.824597828000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121370834", "BldgCostT": "81553334", "sL_LossRatio": "0.812591742534971", "sL_AssetLoss": "671239.9", "sL_BldgLoss": "545444", "sL_StrLoss": "320370", "sL_NStrLoss": "225074", "sL_ContLoss": "125795.9", "geom_point": "0101000020E61000001130B24B71025FC08E2B4F9CB3694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.030426705, 48.82974910100004 ], [ -124.029832733999982, 48.829218148000066 ], [ -124.028803179999898, 48.82829780000003 ], [ -124.027917689999967, 48.827684009000095 ], [ -124.027799781999974, 48.827478889000048 ], [ -124.02780007199999, 48.827462585000049 ], [ -124.027936954999959, 48.825967845000072 ], [ -124.02855848899999, 48.825963268000073 ], [ -124.029409671999986, 48.825951017000058 ], [ -124.029390360999955, 48.826410345000106 ], [ -124.02884010799994, 48.826400196000051 ], [ -124.028804831999977, 48.827238998 ], [ -124.030247581999959, 48.827265601000079 ], [ -124.030232862999966, 48.827615840000099 ], [ -124.031065272999939, 48.82763118000004 ], [ -124.031038908999932, 48.828258780000063 ], [ -124.031277503999917, 48.828263176000092 ], [ -124.031255148999918, 48.828795392000096 ], [ -124.031709819999932, 48.828803767000082 ], [ -124.031700454999978, 48.829026770000119 ], [ -124.032139516999933, 48.829034856000078 ], [ -124.032119501999972, 48.829511563000096 ], [ -124.032225813999986, 48.829513520000035 ], [ -124.032238039, 48.829222329000025 ], [ -124.032715298999946, 48.829231115000034 ], [ -124.032720125999944, 48.829116140000082 ], [ -124.033178930999895, 48.829124585000081 ], [ -124.033183912999917, 48.82900585200013 ], [ -124.034064010999899, 48.829022045000073 ], [ -124.03410833599996, 48.827965271000082 ], [ -124.034736447999975, 48.827976825000107 ], [ -124.034751128999972, 48.827626686000016 ], [ -124.035573094999961, 48.827641799000091 ], [ -124.035580805999984, 48.827457806000105 ], [ -124.03764272299999, 48.827495689000067 ], [ -124.037669646999973, 48.826852592000122 ], [ -124.033333751, 48.826772884000064 ], [ -124.03336837099998, 48.825947758000069 ], [ -124.032880282999969, 48.825938775000054 ], [ -124.032916067999921, 48.825086070000104 ], [ -124.030214937000011, 48.825110240000093 ], [ -124.03019834199992, 48.824300740000126 ], [ -124.030048333999957, 48.824302081000035 ], [ -124.030073718999958, 48.824169616000049 ], [ -124.030124094999934, 48.824067501000052 ], [ -124.030117032999939, 48.82378764300006 ], [ -124.030107720999951, 48.823420300000102 ], [ -124.030215414999972, 48.823287104000059 ], [ -124.030416509999924, 48.823259307000122 ], [ -124.030888734999976, 48.823328364000119 ], [ -124.032065914000015, 48.823500505000034 ], [ -124.032378287999947, 48.823511696 ], [ -124.034556802999958, 48.82323638700008 ], [ -124.034722402999961, 48.82324401000001 ], [ -124.034842089999955, 48.823309186000131 ], [ -124.034885812999903, 48.8234353040001 ], [ -124.034871892999931, 48.823993616000124 ], [ -124.034959277000013, 48.824179899000079 ], [ -124.035099116999945, 48.824317594000021 ], [ -124.035325986999936, 48.824421793000084 ], [ -124.035480853999928, 48.824446872000124 ], [ -124.035577299999929, 48.824462496000052 ], [ -124.036121583999915, 48.824480210000061 ], [ -124.036655906999897, 48.824497601000111 ], [ -124.036671688999903, 48.824494796000089 ], [ -124.03691770399999, 48.824451115000031 ], [ -124.037556796999951, 48.824195219000046 ], [ -124.037791489999975, 48.82417789400008 ], [ -124.038052899999954, 48.824206093000051 ], [ -124.039012147, 48.824484280000057 ], [ -124.039024594999958, 48.82448788700006 ], [ -124.039267103, 48.824512196000022 ], [ -124.039709792999972, 48.824496897000074 ], [ -124.039816983999955, 48.824481557000041 ], [ -124.040518595, 48.824381102000082 ], [ -124.040723993999933, 48.824316399000111 ], [ -124.040885928999927, 48.824185998000083 ], [ -124.041129398999928, 48.823760686000099 ], [ -124.041174835, 48.823709668000063 ], [ -124.041256502999886, 48.823618018000097 ], [ -124.041450090999945, 48.823542310000029 ], [ -124.041682582999954, 48.823510488000039 ], [ -124.042425501999958, 48.82347549800005 ], [ -124.043280560999932, 48.823453900000054 ], [ -124.043770799999947, 48.823441498000065 ], [ -124.043563003999978, 48.82288088700011 ], [ -124.0435491099999, 48.822625689000084 ], [ -124.045660147999939, 48.822268839000088 ], [ -124.047869011, 48.821881248000039 ], [ -124.048255406999928, 48.821813528000064 ], [ -124.048719274999911, 48.821779656000018 ], [ -124.04890724599997, 48.821786584000023 ], [ -124.049106364999915, 48.82179392200004 ], [ -124.049359734999953, 48.821849919000044 ], [ -124.049457175999947, 48.821860147000088 ], [ -124.049958104999988, 48.821970184000058 ], [ -124.050351606999982, 48.822084099000023 ], [ -124.050389411999944, 48.822100441000046 ], [ -124.050404004999919, 48.822317594000026 ], [ -124.050465686999985, 48.822499113000042 ], [ -124.050680293999932, 48.823130805000112 ], [ -124.048467746999947, 48.823509404000042 ], [ -124.048712073999965, 48.824062918000031 ], [ -124.048815791999942, 48.824297773000126 ], [ -124.04717079699995, 48.824597828000087 ], [ -124.04661579699993, 48.824699066000065 ], [ -124.044423584999961, 48.825075198000071 ], [ -124.043681609999979, 48.826067986000048 ], [ -124.044001808999951, 48.826884357000061 ], [ -124.04374391899999, 48.826678506000064 ], [ -124.043317481999907, 48.826528991 ], [ -124.042311306000016, 48.826610094000031 ], [ -124.041660690999947, 48.826805194 ], [ -124.04013530899999, 48.826809507000114 ], [ -124.038659408999976, 48.827290894000051 ], [ -124.038255674999931, 48.827493093000065 ], [ -124.037667578999958, 48.828011594 ], [ -124.036245163999965, 48.828964758000012 ], [ -124.034347607999962, 48.830236207000148 ], [ -124.03334599899992, 48.831297203000119 ], [ -124.032940592999978, 48.831364115000042 ], [ -124.03240817599999, 48.831341396000035 ], [ -124.03195599699994, 48.831264395000048 ], [ -124.031338302000023, 48.831027992000074 ], [ -124.030934799999955, 48.830599297000042 ], [ -124.030426705, 48.82974910100004 ] ], [ [ -124.043321849999984, 48.826425337000039 ], [ -124.043320113999982, 48.826341782000107 ], [ -124.043132389999982, 48.826343481000038 ], [ -124.043129118999971, 48.82642180900006 ], [ -124.043321849999984, 48.826425337000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114354250", "BldgCostT": "78865000", "sL_LossRatio": "0.846399181291318", "sL_AssetLoss": "578862.8", "sL_BldgLoss": "489949", "sL_StrLoss": "307728", "sL_NStrLoss": "182221", "sL_ContLoss": "88913.8", "geom_point": "0101000020E610000071748D7DA6025FC089E04DF117694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.034959277000013, 48.824179899000079 ], [ -124.034871892999931, 48.823993616000124 ], [ -124.034885812999903, 48.8234353040001 ], [ -124.034842089999955, 48.823309186000131 ], [ -124.035001699999938, 48.823205419000026 ], [ -124.035006959, 48.823203848000013 ], [ -124.035401210999936, 48.823294002000075 ], [ -124.035113794999987, 48.82308199000002 ], [ -124.03430037599999, 48.821975666000121 ], [ -124.034751532999977, 48.82125527400008 ], [ -124.034089835999978, 48.820192101000067 ], [ -124.034185790999956, 48.817903810000082 ], [ -124.035206991999985, 48.818364880000026 ], [ -124.03760601599997, 48.818167153000054 ], [ -124.037599510999939, 48.817920964000074 ], [ -124.039623976999948, 48.81795812900004 ], [ -124.039617293, 48.818117989 ], [ -124.040267264999954, 48.818129913000099 ], [ -124.040259408999972, 48.81831785 ], [ -124.040916252999978, 48.818329896000108 ], [ -124.040913243999938, 48.818401885000029 ], [ -124.04152393399994, 48.818413081000152 ], [ -124.041517568999922, 48.818565428000035 ], [ -124.041675089999956, 48.818568315000043 ], [ -124.041702265000012, 48.818862218000071 ], [ -124.042119070999959, 48.818855620000164 ], [ -124.042110288999979, 48.819065893000108 ], [ -124.04235166399998, 48.819063710000108 ], [ -124.042347272999919, 48.818852007000025 ], [ -124.043981484999975, 48.818826117000135 ], [ -124.044019737999989, 48.820667910000054 ], [ -124.044836987999929, 48.820660506000053 ], [ -124.044840505999915, 48.820829708000126 ], [ -124.045037149, 48.820863097000085 ], [ -124.045122846999945, 48.818808020000148 ], [ -124.05037580199999, 48.818724574000093 ], [ -124.050364315999929, 48.818798341000047 ], [ -124.050324400999941, 48.81883399200008 ], [ -124.050255693999986, 48.818949009000072 ], [ -124.050255037999975, 48.818958025000043 ], [ -124.050231784999966, 48.819280306000103 ], [ -124.050182035999939, 48.819968412000037 ], [ -124.050149378999933, 48.820943875000083 ], [ -124.05014837799996, 48.820974151000037 ], [ -124.050191714999954, 48.821257131000074 ], [ -124.050209468, 48.82137300300009 ], [ -124.050227545999974, 48.821490961000066 ], [ -124.050347543999948, 48.821647208000108 ], [ -124.050495306999906, 48.821757135000041 ], [ -124.050727613, 48.821829818000012 ], [ -124.051727618, 48.822052586000048 ], [ -124.051996633, 48.822060205000071 ], [ -124.052262003999928, 48.822008600000039 ], [ -124.052568489999942, 48.821948994000074 ], [ -124.052647276999934, 48.822180174000017 ], [ -124.053306064999958, 48.82246890600004 ], [ -124.053663908999951, 48.822625742000071 ], [ -124.053174159999941, 48.822699309000029 ], [ -124.052845377999944, 48.822748668000067 ], [ -124.051166412999933, 48.82304502200008 ], [ -124.050680293999932, 48.823130805000112 ], [ -124.050465686999985, 48.822499113000042 ], [ -124.050404004999919, 48.822317594000026 ], [ -124.050389411999944, 48.822100441000046 ], [ -124.050351606999982, 48.822084099000023 ], [ -124.049958104999988, 48.821970184000058 ], [ -124.049457175999947, 48.821860147000088 ], [ -124.049359734999953, 48.821849919000044 ], [ -124.049106364999915, 48.82179392200004 ], [ -124.04890724599997, 48.821786584000023 ], [ -124.048719274999911, 48.821779656000018 ], [ -124.048255406999928, 48.821813528000064 ], [ -124.047869011, 48.821881248000039 ], [ -124.045660147999939, 48.822268839000088 ], [ -124.0435491099999, 48.822625689000084 ], [ -124.043563003999978, 48.82288088700011 ], [ -124.043770799999947, 48.823441498000065 ], [ -124.043280560999932, 48.823453900000054 ], [ -124.042425501999958, 48.82347549800005 ], [ -124.041682582999954, 48.823510488000039 ], [ -124.041450090999945, 48.823542310000029 ], [ -124.041256502999886, 48.823618018000097 ], [ -124.041174835, 48.823709668000063 ], [ -124.041129398999928, 48.823760686000099 ], [ -124.040885928999927, 48.824185998000083 ], [ -124.040723993999933, 48.824316399000111 ], [ -124.040518595, 48.824381102000082 ], [ -124.039816983999955, 48.824481557000041 ], [ -124.039709792999972, 48.824496897000074 ], [ -124.039267103, 48.824512196000022 ], [ -124.039024594999958, 48.82448788700006 ], [ -124.039012147, 48.824484280000057 ], [ -124.038052899999954, 48.824206093000051 ], [ -124.037791489999975, 48.82417789400008 ], [ -124.037556796999951, 48.824195219000046 ], [ -124.03691770399999, 48.824451115000031 ], [ -124.036671688999903, 48.824494796000089 ], [ -124.036655906999897, 48.824497601000111 ], [ -124.036121583999915, 48.824480210000061 ], [ -124.035577299999929, 48.824462496000052 ], [ -124.035480853999928, 48.824446872000124 ], [ -124.035325986999936, 48.824421793000084 ], [ -124.035099116999945, 48.824317594000021 ], [ -124.034959277000013, 48.824179899000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139546053", "BldgCostT": "91718746", "sL_LossRatio": "0.792355791935309", "sL_AssetLoss": "791946", "sL_BldgLoss": "627503", "sL_StrLoss": "356674", "sL_NStrLoss": "270829", "sL_ContLoss": "164443", "geom_point": "0101000020E6100000D4F403CB8F035FC04168B943F5684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.052647276999934, 48.822180174000017 ], [ -124.052568489999942, 48.821948994000074 ], [ -124.052262003999928, 48.822008600000039 ], [ -124.051996633, 48.822060205000071 ], [ -124.051727618, 48.822052586000048 ], [ -124.050727613, 48.821829818000012 ], [ -124.050495306999906, 48.821757135000041 ], [ -124.050347543999948, 48.821647208000108 ], [ -124.050227545999974, 48.821490961000066 ], [ -124.050209468, 48.82137300300009 ], [ -124.050191714999954, 48.821257131000074 ], [ -124.05014837799996, 48.820974151000037 ], [ -124.050149378999933, 48.820943875000083 ], [ -124.050182035999939, 48.819968412000037 ], [ -124.050231784999966, 48.819280306000103 ], [ -124.050255037999975, 48.818958025000043 ], [ -124.050255693999986, 48.818949009000072 ], [ -124.050324400999941, 48.81883399200008 ], [ -124.050364315999929, 48.818798341000047 ], [ -124.05037580199999, 48.818724574000093 ], [ -124.05039071499999, 48.818628772000082 ], [ -124.053612815999955, 48.818583089000093 ], [ -124.056456527999941, 48.818551207000056 ], [ -124.056716037999976, 48.818813227000099 ], [ -124.057265045999927, 48.819130944000101 ], [ -124.057760555999948, 48.819363830000107 ], [ -124.05791435099999, 48.819406404000091 ], [ -124.057990651999958, 48.818381461000108 ], [ -124.058233256999941, 48.818379234000069 ], [ -124.058262938999988, 48.818091462000112 ], [ -124.058059239999977, 48.817777062000125 ], [ -124.058044616999894, 48.817656536000086 ], [ -124.05808326499999, 48.817137346000081 ], [ -124.05814634, 48.816997762000028 ], [ -124.05824507599999, 48.816904732000097 ], [ -124.058242026999977, 48.816759855000058 ], [ -124.058341222999957, 48.816758943000188 ], [ -124.058350039999965, 48.816721462000032 ], [ -124.058647004, 48.816584516000056 ], [ -124.058644935999936, 48.816486272000098 ], [ -124.059053524999953, 48.816482519000054 ], [ -124.059051649, 48.816393514000069 ], [ -124.061093660999987, 48.816330764000092 ], [ -124.061095623999947, 48.816423740000083 ], [ -124.062557902999984, 48.816450267000043 ], [ -124.062730820999889, 48.81644867300011 ], [ -124.062727267999932, 48.816280536000107 ], [ -124.064360868999941, 48.816230284000049 ], [ -124.06436517399996, 48.816433593000113 ], [ -124.065166568000038, 48.816426190000044 ], [ -124.064162049999965, 48.816750161000073 ], [ -124.063045499999987, 48.817110259000074 ], [ -124.062796721999959, 48.817190503000091 ], [ -124.062087031999937, 48.817419074000107 ], [ -124.061581148999892, 48.817581985000103 ], [ -124.061215712999967, 48.817699701000024 ], [ -124.060367411999934, 48.817986097000052 ], [ -124.060083705999929, 48.818103480000062 ], [ -124.059965651999931, 48.818161693000057 ], [ -124.059505565999956, 48.818532647000048 ], [ -124.059378770999942, 48.818684617000017 ], [ -124.059293754999914, 48.81878647900006 ], [ -124.059082515999933, 48.819124992000042 ], [ -124.058811982999941, 48.819657928 ], [ -124.058552333999941, 48.820169471000092 ], [ -124.058322524999937, 48.820463524000019 ], [ -124.057423354999926, 48.821253535000103 ], [ -124.057244043, 48.821477319000024 ], [ -124.057180072999955, 48.821707708000048 ], [ -124.057259095999953, 48.822000096000075 ], [ -124.057426064999945, 48.822428617000121 ], [ -124.057437388999944, 48.82245773100005 ], [ -124.057588604, 48.822845816000026 ], [ -124.056969345999946, 48.822952594000043 ], [ -124.056901058999983, 48.823090981000092 ], [ -124.05680179099997, 48.823146330000057 ], [ -124.056747754999904, 48.823176438000118 ], [ -124.056724198999945, 48.823189579000029 ], [ -124.055432293999957, 48.823413520000045 ], [ -124.054997857999979, 48.8234888100001 ], [ -124.053278323999947, 48.823788153000102 ], [ -124.053227723999925, 48.823655822000141 ], [ -124.053177724999941, 48.823525002000068 ], [ -124.052845377999944, 48.822748668000067 ], [ -124.053174159999941, 48.822699309000029 ], [ -124.053663908999951, 48.822625742000071 ], [ -124.053306064999958, 48.82246890600004 ], [ -124.052647276999934, 48.822180174000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38479250", "BldgCostT": "23915000", "sL_LossRatio": "0.819484601936525", "sL_AssetLoss": "118976", "sL_BldgLoss": "97499", "sL_StrLoss": "64276", "sL_NStrLoss": "33223", "sL_ContLoss": "21477", "geom_point": "0101000020E6100000ABDCC0F428065FC0CD7EDDE94E694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.093609721999925, 48.82166430300002 ], [ -124.093638081999941, 48.820966924000111 ], [ -124.09907484199999, 48.821063785000085 ], [ -124.099061353999929, 48.821396420000085 ], [ -124.099710637999948, 48.821407969000035 ], [ -124.099619863999976, 48.823647201000043 ], [ -124.099475000999973, 48.823767400000094 ], [ -124.098251689000023, 48.824543608000141 ], [ -124.097234492, 48.824787095000062 ], [ -124.096854720999886, 48.824808498000067 ], [ -124.096075291999952, 48.824690302000114 ], [ -124.095091988999954, 48.824033693000089 ], [ -124.093113797999933, 48.823908398000071 ], [ -124.092471520999936, 48.823779422000079 ], [ -124.092553278999944, 48.821770198000131 ], [ -124.093145691999936, 48.821780772000054 ], [ -124.093150762999983, 48.821656114000071 ], [ -124.093609721999925, 48.82166430300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90491394", "BldgCostT": "56246523", "sL_LossRatio": "0.753468363987298", "sL_AssetLoss": "253246.2", "sL_BldgLoss": "190813", "sL_StrLoss": "120611", "sL_NStrLoss": "70202", "sL_ContLoss": "62433.2", "geom_point": "0101000020E61000004C74FACD06045FC07C816983D9694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.054562219999951, 48.830316398999983 ], [ -124.054539598999924, 48.82951499500011 ], [ -124.054866421999961, 48.829515884000045 ], [ -124.056433477999974, 48.829520137000067 ], [ -124.057797497999942, 48.829523804000125 ], [ -124.057799852999949, 48.828898941000048 ], [ -124.057802513999903, 48.828188693000094 ], [ -124.058503786999964, 48.828106903000041 ], [ -124.058686941999937, 48.828063127000092 ], [ -124.058808810999963, 48.828033999000091 ], [ -124.059150914999975, 48.827887109000073 ], [ -124.059520903999953, 48.827692086000077 ], [ -124.060353879999951, 48.827252997000123 ], [ -124.060510397999963, 48.827086511000111 ], [ -124.060639363999925, 48.826874392 ], [ -124.060806741999926, 48.826599043000066 ], [ -124.060015278999984, 48.82659371500003 ], [ -124.059414007999919, 48.826560196000102 ], [ -124.05913868, 48.826474202000021 ], [ -124.058448237999983, 48.826145591000078 ], [ -124.058159797999934, 48.82598554800007 ], [ -124.058029436999959, 48.825925389000048 ], [ -124.05827747499994, 48.825835395000041 ], [ -124.058779305999948, 48.825785483000054 ], [ -124.059335581999946, 48.825600393000023 ], [ -124.059627695999964, 48.825238594000091 ], [ -124.059476083999954, 48.825150300000082 ], [ -124.059178010999929, 48.825322709000027 ], [ -124.058921621999986, 48.825344006000108 ], [ -124.058958401999945, 48.825163104000076 ], [ -124.059132979999958, 48.825072001000144 ], [ -124.060428982999923, 48.824475205000041 ], [ -124.061287095999916, 48.82444960300014 ], [ -124.061529907999955, 48.824375495000062 ], [ -124.062374100999961, 48.824366985000069 ], [ -124.063025408, 48.824208900000095 ], [ -124.06374721499995, 48.824183293000083 ], [ -124.064452018999958, 48.824060803000059 ], [ -124.065180902999927, 48.823676293000112 ], [ -124.06558760199999, 48.823599394000041 ], [ -124.06634968499999, 48.823548095000071 ], [ -124.068107090999959, 48.823585111000099 ], [ -124.069295010999937, 48.823745993000088 ], [ -124.069584324999965, 48.823743199000077 ], [ -124.06985577899998, 48.824131675000039 ], [ -124.069474449999959, 48.824580984000079 ], [ -124.06942258699999, 48.825556794000121 ], [ -124.069369689999988, 48.826611695000054 ], [ -124.068161715999949, 48.826609696000105 ], [ -124.066951176999979, 48.826619452000116 ], [ -124.065712315999946, 48.826629405000034 ], [ -124.065878117999986, 48.827150710000055 ], [ -124.065880912999887, 48.827159493000096 ], [ -124.066013395999931, 48.827560364000078 ], [ -124.065579092999968, 48.827596601000025 ], [ -124.06566249299999, 48.828033698000063 ], [ -124.065355810999918, 48.828115808000064 ], [ -124.065071564999982, 48.828213835000099 ], [ -124.065218073999944, 48.828657366000165 ], [ -124.063556708999926, 48.82892196500012 ], [ -124.063419558, 48.829012910000138 ], [ -124.063617165, 48.830463781000063 ], [ -124.063034733000023, 48.830465553000117 ], [ -124.06223055, 48.830467954000014 ], [ -124.061963602999953, 48.830468775000071 ], [ -124.061402530999956, 48.830350551000059 ], [ -124.06059831399989, 48.830013745000102 ], [ -124.060200419999944, 48.83030440400006 ], [ -124.059956878999927, 48.830435098000123 ], [ -124.059096200999988, 48.83044681700008 ], [ -124.058538496999972, 48.830454395000075 ], [ -124.057707273999966, 48.830450977000083 ], [ -124.056971400999913, 48.830447948000071 ], [ -124.056589743999922, 48.830446373000022 ], [ -124.055486090999977, 48.830441816000139 ], [ -124.054757094999943, 48.830438807000171 ], [ -124.054606603999972, 48.830391892000108 ], [ -124.054562219999951, 48.830316398999983 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133875803", "BldgCostT": "82783746", "sL_LossRatio": "0.681065632003974", "sL_AssetLoss": "491239", "sL_BldgLoss": "334566", "sL_StrLoss": "170796", "sL_NStrLoss": "163770", "sL_ContLoss": "156673", "geom_point": "0101000020E6100000273D15681E045FC07E2D2ADA03694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.055432293999957, 48.823413520000045 ], [ -124.056724198999945, 48.823189579000029 ], [ -124.056747754999904, 48.823176438000118 ], [ -124.05680179099997, 48.823146330000057 ], [ -124.056901058999983, 48.823090981000092 ], [ -124.056969345999946, 48.822952594000043 ], [ -124.057588604, 48.822845816000026 ], [ -124.057437388999944, 48.82245773100005 ], [ -124.057426064999945, 48.822428617000121 ], [ -124.057259095999953, 48.822000096000075 ], [ -124.057180072999955, 48.821707708000048 ], [ -124.057244043, 48.821477319000024 ], [ -124.057423354999926, 48.821253535000103 ], [ -124.058322524999937, 48.820463524000019 ], [ -124.058552333999941, 48.820169471000092 ], [ -124.058811982999941, 48.819657928 ], [ -124.059082515999933, 48.819124992000042 ], [ -124.059293754999914, 48.81878647900006 ], [ -124.059378770999942, 48.818684617000017 ], [ -124.059505565999956, 48.818532647000048 ], [ -124.059965651999931, 48.818161693000057 ], [ -124.060083705999929, 48.818103480000062 ], [ -124.060367411999934, 48.817986097000052 ], [ -124.061215712999967, 48.817699701000024 ], [ -124.061581148999892, 48.817581985000103 ], [ -124.062087031999937, 48.817419074000107 ], [ -124.062796721999959, 48.817190503000091 ], [ -124.063045499999987, 48.817110259000074 ], [ -124.064162049999965, 48.816750161000073 ], [ -124.065166568000038, 48.816426190000044 ], [ -124.065182348999897, 48.816426045000121 ], [ -124.065182244999903, 48.816421134000038 ], [ -124.065338827999966, 48.81637063200003 ], [ -124.065922978999978, 48.81618220600005 ], [ -124.06681205199996, 48.816191953000079 ], [ -124.066816698999943, 48.816410929000057 ], [ -124.068042460999962, 48.816399578000038 ], [ -124.068053926999966, 48.816939239000106 ], [ -124.070096881999945, 48.816920290000077 ], [ -124.070108370999932, 48.817459950000028 ], [ -124.070516965999929, 48.817456156000048 ], [ -124.070522711999928, 48.817725986000042 ], [ -124.071339906999967, 48.817718393000099 ], [ -124.071357159999977, 48.818527883000044 ], [ -124.071616164999952, 48.818525476000062 ], [ -124.071636115, 48.81804047100006 ], [ -124.072982011999926, 48.818064754000069 ], [ -124.072968535999948, 48.817433362000038 ], [ -124.07460291299995, 48.81741813600005 ], [ -124.074617367999949, 48.818094237000054 ], [ -124.077072490999953, 48.818138451000088 ], [ -124.077069771999959, 48.818204762000057 ], [ -124.07788902599998, 48.81819710300006 ], [ -124.07789481199994, 48.818466933000103 ], [ -124.078303413999933, 48.818463111 ], [ -124.078309200999939, 48.818732940000061 ], [ -124.078717805999972, 48.818729117000025 ], [ -124.07874676199998, 48.820078263000092 ], [ -124.077112296999971, 48.820093547000113 ], [ -124.07710651599993, 48.819823717000126 ], [ -124.077003325999911, 48.819824682000075 ], [ -124.076992631999957, 48.82008538700012 ], [ -124.076900589999966, 48.820067304000041 ], [ -124.076492689999952, 48.82011570400006 ], [ -124.076170384999955, 48.820335096000093 ], [ -124.075622688999957, 48.820124311000065 ], [ -124.074899989999963, 48.820167011000116 ], [ -124.073659087999957, 48.820115702000116 ], [ -124.073509612999928, 48.82008160200008 ], [ -124.073188681999952, 48.819759701000109 ], [ -124.072562605999963, 48.81973828600006 ], [ -124.072475179999969, 48.820090097000055 ], [ -124.072054490999932, 48.820238191000016 ], [ -124.072024222999914, 48.820715300000053 ], [ -124.071903807999959, 48.820779386000076 ], [ -124.071740717999916, 48.820807901000094 ], [ -124.071524936999978, 48.820743252000042 ], [ -124.07152731799998, 48.820685367000074 ], [ -124.071337615999965, 48.820687130000046 ], [ -124.071246414999933, 48.82065980500002 ], [ -124.071026130999897, 48.820690025000019 ], [ -124.070585927999943, 48.820694114000084 ], [ -124.070574432999976, 48.820154455000065 ], [ -124.070331722, 48.820156709000067 ], [ -124.070240112999969, 48.820075903000024 ], [ -124.070163575, 48.820052981000138 ], [ -124.070160070999947, 48.819888420000041 ], [ -124.06975145700001, 48.819892212000127 ], [ -124.069734226999941, 48.819082723000129 ], [ -124.068508401999978, 48.819094093000032 ], [ -124.068502664999968, 48.818824262000057 ], [ -124.068094059000018, 48.818828049000032 ], [ -124.068071125999964, 48.817748729000094 ], [ -124.067662526999982, 48.817752514000105 ], [ -124.067668258999902, 48.818022345000038 ], [ -124.067259657999941, 48.818026128000071 ], [ -124.067271110999954, 48.81856555300007 ], [ -124.067049804999897, 48.818709990000094 ], [ -124.066905478999956, 48.818955 ], [ -124.066947577999926, 48.81910855000006 ], [ -124.066465356999942, 48.819113013000013 ], [ -124.066471081999978, 48.819382843000078 ], [ -124.066062468999959, 48.819386622000117 ], [ -124.066068192999964, 48.819656453000107 ], [ -124.065659578999913, 48.819660232000011 ], [ -124.065665299, 48.819930061 ], [ -124.065141462999975, 48.819934904000085 ], [ -124.06513461699997, 48.820100779000057 ], [ -124.064851414999907, 48.820095650000084 ], [ -124.064857788999987, 48.820396499000012 ], [ -124.06471471299993, 48.820478612000088 ], [ -124.064470310999937, 48.820480869000015 ], [ -124.064457053999931, 48.820801959000072 ], [ -124.064043778999945, 48.820870592000134 ], [ -124.062897501999942, 48.821420313000033 ], [ -124.062725205999982, 48.821665299000109 ], [ -124.062802077999905, 48.821813091000102 ], [ -124.062781458999936, 48.822312034000042 ], [ -124.06238868199992, 48.822432895000098 ], [ -124.062134893999911, 48.822714899000047 ], [ -124.061721312999964, 48.823096609000061 ], [ -124.060958988999957, 48.823174906000133 ], [ -124.060988206999951, 48.82324620100011 ], [ -124.06101781299995, 48.823335906000075 ], [ -124.061059920999966, 48.823434099000032 ], [ -124.061509316999917, 48.823404205000038 ], [ -124.061810898999937, 48.823491086000068 ], [ -124.061719513999947, 48.823707596000041 ], [ -124.061124595999928, 48.823938294000122 ], [ -124.060767577999954, 48.823734698000067 ], [ -124.060474190999926, 48.823520994000148 ], [ -124.060160590999942, 48.823371490000106 ], [ -124.059424996999937, 48.823387093000058 ], [ -124.05912740699999, 48.823550903000069 ], [ -124.05883940299999, 48.824120585000117 ], [ -124.058780979999938, 48.824570693000076 ], [ -124.058597191999979, 48.824905407000081 ], [ -124.058118691999979, 48.825413788000077 ], [ -124.055299195999936, 48.826726889000078 ], [ -124.054316520999961, 48.826735504000055 ], [ -124.053934804999969, 48.826675597000062 ], [ -124.053793893999952, 48.826487687000068 ], [ -124.0534498199999, 48.826284 ], [ -124.053205677, 48.82598705700007 ], [ -124.053226005999974, 48.825982211000031 ], [ -124.053509554999891, 48.825914625000081 ], [ -124.053869643999988, 48.825828748000113 ], [ -124.054094160999952, 48.825827435000086 ], [ -124.053910020000018, 48.82534748500008 ], [ -124.05357301699999, 48.824553028000054 ], [ -124.053278323999947, 48.823788153000102 ], [ -124.054997857999979, 48.8234888100001 ], [ -124.055432293999957, 48.823413520000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.795526482380249", "sL_AssetLoss": "473.9", "sL_BldgLoss": "377", "sL_StrLoss": "68", "sL_NStrLoss": "309", "sL_ContLoss": "96.9", "geom_point": "0101000020E61000009F63F668A0045FC0AEDC035BC2694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.069369689999988, 48.826611695000054 ], [ -124.06942258699999, 48.825556794000121 ], [ -124.069474449999959, 48.824580984000079 ], [ -124.06985577899998, 48.824131675000039 ], [ -124.069584324999965, 48.823743199000077 ], [ -124.070317398999947, 48.823736105000116 ], [ -124.070839313999912, 48.82389269300009 ], [ -124.071862401999951, 48.823946886000066 ], [ -124.07239509599998, 48.824028553000062 ], [ -124.072384111999952, 48.824295676000084 ], [ -124.072384000999989, 48.824298364000171 ], [ -124.072440831000037, 48.824299389000096 ], [ -124.072414593999952, 48.824937436000049 ], [ -124.072947483999911, 48.824947048000112 ], [ -124.07297243699999, 48.82434006600004 ], [ -124.072981546999955, 48.824118458000029 ], [ -124.073023506999974, 48.824124890000085 ], [ -124.07382779699999, 48.824144805000046 ], [ -124.074650893999959, 48.824423992000099 ], [ -124.075753803999987, 48.824378399000075 ], [ -124.075988894999924, 48.824251736000065 ], [ -124.076122649999931, 48.825120519000095 ], [ -124.076236770999927, 48.827684806 ], [ -124.07546347, 48.827670882000064 ], [ -124.075502224000019, 48.826727035000026 ], [ -124.074304284999982, 48.826705455000067 ], [ -124.074317676999982, 48.826379461000101 ], [ -124.073295615999982, 48.826361039000091 ], [ -124.073205410999918, 48.828555455000163 ], [ -124.072477683999978, 48.828542332000112 ], [ -124.07247586799997, 48.828586516000072 ], [ -124.072458107999978, 48.829018372000036 ], [ -124.071896002999964, 48.829008231000032 ], [ -124.071890890999967, 48.82913248600007 ], [ -124.069732672999947, 48.829093526000115 ], [ -124.069713168999925, 48.827823608000067 ], [ -124.069323905999966, 48.827491987 ], [ -124.069330710999964, 48.827360791000061 ], [ -124.069369689999988, 48.826611695000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.987401834997305", "sL_AssetLoss": "2257.551", "sL_BldgLoss": "2229.11", "sL_StrLoss": "2034", "sL_NStrLoss": "195.11", "sL_ContLoss": "28.441", "geom_point": "0101000020E6100000CA3D345EC02A5FC0896E073422694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.665788873999986, 48.823426656000095 ], [ -124.665818873999953, 48.822372449000056 ], [ -124.665346218999943, 48.822366548000041 ], [ -124.665448745999967, 48.818764731000066 ], [ -124.668604063999922, 48.818804090000114 ], [ -124.669203104999937, 48.819893584000027 ], [ -124.669694791999959, 48.820336491000056 ], [ -124.66999361799995, 48.820772297000119 ], [ -124.670385701, 48.821054287000123 ], [ -124.671281270999927, 48.821576792000123 ], [ -124.671226921999974, 48.823494409000077 ], [ -124.665788873999986, 48.823426656000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.887178964533225", "sL_AssetLoss": "5887.2", "sL_BldgLoss": "5223", "sL_StrLoss": "3900", "sL_NStrLoss": "1323", "sL_ContLoss": "664.2", "geom_point": "0101000020E61000000EE665031F095FC04EB42FC916684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.142976389999916, 48.81420379000015 ], [ -124.141325007999967, 48.814067088000122 ], [ -124.139774390999918, 48.814561337000065 ], [ -124.139874262999967, 48.812043942000088 ], [ -124.145310083999973, 48.812138453000038 ], [ -124.145254882999964, 48.813533962000072 ], [ -124.145156001999979, 48.813580006000045 ], [ -124.144615193999954, 48.814332014000072 ], [ -124.144119192999966, 48.81468808700005 ], [ -124.143641020999937, 48.814665303000048 ], [ -124.143376904999911, 48.814407491000047 ], [ -124.142976389999916, 48.81420379000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.960252275105925", "sL_AssetLoss": "5140.42", "sL_BldgLoss": "4936.1", "sL_StrLoss": "4029.5", "sL_NStrLoss": "906.6", "sL_ContLoss": "204.32", "geom_point": "0101000020E6100000F51D701B15165FC005B01AAE82704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.343986697999938, 48.880658913000097 ], [ -124.343765586999922, 48.880589102000073 ], [ -124.343275198999905, 48.880594812000091 ], [ -124.342778411999987, 48.880358404000042 ], [ -124.342579604999969, 48.880080583000058 ], [ -124.341842718999914, 48.879523803000048 ], [ -124.341106807999935, 48.878532492000041 ], [ -124.340914504999944, 48.878436121000028 ], [ -124.340935926999947, 48.877831586000049 ], [ -124.340962965999964, 48.877068522000052 ], [ -124.346406715999976, 48.877152794000054 ], [ -124.346398235999942, 48.877392879000098 ], [ -124.347051807999932, 48.877402978000056 ], [ -124.34703683, 48.877827247000091 ], [ -124.347452515999933, 48.877833669000026 ], [ -124.347438015, 48.878244531000099 ], [ -124.347596889999949, 48.878242675000152 ], [ -124.347611386999958, 48.878782273000098 ], [ -124.349656648999911, 48.878758349000037 ], [ -124.349663909999919, 48.879028148000081 ], [ -124.350072965999928, 48.87902335900003 ], [ -124.350092838999927, 48.879761685000126 ], [ -124.350102014999948, 48.880102556000104 ], [ -124.348874823999893, 48.880116919000052 ], [ -124.348867569, 48.879847121000097 ], [ -124.347380833999949, 48.87986450500005 ], [ -124.347339629999908, 48.881031800000102 ], [ -124.346319385999934, 48.881161592000076 ], [ -124.345103904999945, 48.881158811000063 ], [ -124.344832210999954, 48.881180099000105 ], [ -124.34443509399992, 48.881076206000081 ], [ -124.343986697999938, 48.880658913000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.953729429365249", "sL_AssetLoss": "1871.6", "sL_BldgLoss": "1785", "sL_StrLoss": "1496", "sL_NStrLoss": "289", "sL_ContLoss": "86.6", "geom_point": "0101000020E61000002D98746BC4295FC0E8DD5850986D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.651402626999953, 48.855112587000107 ], [ -124.654180453999984, 48.855147579000068 ], [ -124.654333292999965, 48.85528369100011 ], [ -124.654385919999939, 48.855688202000067 ], [ -124.654289614999968, 48.856048492000077 ], [ -124.653924010999944, 48.856512799000051 ], [ -124.65131827, 48.858042818000044 ], [ -124.651402626999953, 48.855112587000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.907740737751231", "sL_AssetLoss": "7433.4", "sL_BldgLoss": "6747.6", "sL_StrLoss": "4622.8", "sL_NStrLoss": "2124.8", "sL_ContLoss": "685.8", "geom_point": "0101000020E610000028E1199FCF095FC0DC566941DE674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.1530026, 48.812430686000084 ], [ -124.152810716, 48.812379405000065 ], [ -124.152375294999899, 48.812419287000104 ], [ -124.152216006999964, 48.812537494000075 ], [ -124.152062695999959, 48.812980506 ], [ -124.151709404000016, 48.813074499000017 ], [ -124.151246818999965, 48.813043095000069 ], [ -124.150894295999962, 48.812568911000049 ], [ -124.150592699999919, 48.81245490000002 ], [ -124.150196944999948, 48.812459204000099 ], [ -124.150294792999972, 48.809978816000083 ], [ -124.150295869999951, 48.809951494000074 ], [ -124.153817310999898, 48.810012411000081 ], [ -124.154238936999988, 48.810019696 ], [ -124.155731468999946, 48.810045475000095 ], [ -124.155714892, 48.810466955000038 ], [ -124.155713863999949, 48.810493103000141 ], [ -124.15596053299997, 48.810497362000056 ], [ -124.156470069999941, 48.810506156000052 ], [ -124.156467944999974, 48.810560171000063 ], [ -124.156393222999938, 48.812460684000037 ], [ -124.156042202999956, 48.812490502000117 ], [ -124.154857216999972, 48.813068797000057 ], [ -124.15428139299992, 48.813278953000037 ], [ -124.154118591999961, 48.813338377000022 ], [ -124.153842901999923, 48.813439007000085 ], [ -124.15361029499995, 48.813433296000042 ], [ -124.15315420099995, 48.81308579000013 ], [ -124.15317545299996, 48.812884647000011 ], [ -124.153198916999955, 48.812662893000088 ], [ -124.1530026, 48.812430686000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25532083", "BldgCostT": "17608333", "sL_LossRatio": "0.871356277731143", "sL_AssetLoss": "104237.5", "sL_BldgLoss": "90828", "sL_StrLoss": "60664", "sL_NStrLoss": "30164", "sL_ContLoss": "13409.5", "geom_point": "0101000020E610000064CEC85A22085FC0C7944031CF674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.124607094999973, 48.819466889000083 ], [ -124.12462230599999, 48.819086628000086 ], [ -124.121598507999948, 48.819033512000054 ], [ -124.121691925999954, 48.816701842000043 ], [ -124.12174278599997, 48.815432304000133 ], [ -124.122012473999959, 48.815437044000085 ], [ -124.122032689999969, 48.81493229800013 ], [ -124.122037705999944, 48.814807076000108 ], [ -124.12106194099999, 48.814816571000108 ], [ -124.120316840999948, 48.814823814000057 ], [ -124.120304816, 48.814284163000046 ], [ -124.119605563999983, 48.814290958000093 ], [ -124.119487690999946, 48.814292103000078 ], [ -124.119481950999969, 48.814034378000017 ], [ -124.119475672999954, 48.813752451000042 ], [ -124.119098836999939, 48.813756111000075 ], [ -124.119067114999936, 48.81375641800004 ], [ -124.119066717999971, 48.813738619000027 ], [ -124.11905510299999, 48.813216768000089 ], [ -124.11864654799993, 48.813220732000076 ], [ -124.118634541999953, 48.812681080000068 ], [ -124.118225991999935, 48.812685045000102 ], [ -124.118225217999964, 48.812650251000022 ], [ -124.115560360999893, 48.812603277000072 ], [ -124.114978919999928, 48.812593020000072 ], [ -124.114648215999964, 48.81258718300009 ], [ -124.113897304999952, 48.812573929000088 ], [ -124.113925847999965, 48.811864338000085 ], [ -124.113806344999958, 48.811862228000052 ], [ -124.113813732999972, 48.811678574000034 ], [ -124.112852820999962, 48.811661603000083 ], [ -124.112919504999979, 48.810004668000062 ], [ -124.113089305999907, 48.809987885000091 ], [ -124.113155032999899, 48.809981394000033 ], [ -124.113202555999976, 48.809971656000066 ], [ -124.114594701999977, 48.809686976000059 ], [ -124.114993740999964, 48.809638149000094 ], [ -124.115214886999951, 48.809630145000085 ], [ -124.115395483999961, 48.809623625000086 ], [ -124.115701823999927, 48.809661252000083 ], [ -124.115814947999922, 48.809675168000048 ], [ -124.116277969999913, 48.80979351700006 ], [ -124.116341234999965, 48.809809689000069 ], [ -124.116622573999933, 48.80986479700006 ], [ -124.11705173099989, 48.809948844000068 ], [ -124.117716080999969, 48.810078963000052 ], [ -124.118252586999986, 48.810128966000029 ], [ -124.119059544000024, 48.81014857700012 ], [ -124.119656019999965, 48.810127553 ], [ -124.12009782, 48.810063249000095 ], [ -124.120509113999958, 48.809960090000068 ], [ -124.121355353999931, 48.809747846000072 ], [ -124.121497561999902, 48.809712169000058 ], [ -124.121760008999956, 48.809633781000066 ], [ -124.121797769999915, 48.80962248 ], [ -124.122895883999945, 48.809294387000094 ], [ -124.123353677999972, 48.809881692000026 ], [ -124.123409979999977, 48.810108001000039 ], [ -124.123462083999968, 48.811081905000087 ], [ -124.123468209999956, 48.813478484000036 ], [ -124.123885292999958, 48.813454315000094 ], [ -124.124039614999944, 48.813404796000093 ], [ -124.124161000999948, 48.813327593000089 ], [ -124.124716400999887, 48.812464392000081 ], [ -124.125149251999915, 48.812074844000115 ], [ -124.125327195999915, 48.811914705000106 ], [ -124.124697010999967, 48.810977498000021 ], [ -124.1245925959999, 48.81062275500009 ], [ -124.124502416999988, 48.810316329000059 ], [ -124.124096020999957, 48.80893529300009 ], [ -124.123910917, 48.808190503000105 ], [ -124.123783293999978, 48.80781259500003 ], [ -124.123749933999989, 48.807792971000012 ], [ -124.123641116999949, 48.807728996000108 ], [ -124.123730597999938, 48.807658448000055 ], [ -124.123814866999979, 48.807592014000086 ], [ -124.124480772999974, 48.807469221000069 ], [ -124.124546179999982, 48.807439989 ], [ -124.124842732999952, 48.807304692000066 ], [ -124.125029214999955, 48.807309443000051 ], [ -124.125314012999979, 48.807292001000071 ], [ -124.125452611999904, 48.807308390000081 ], [ -124.126495625999922, 48.807431428000079 ], [ -124.127084088999965, 48.807339358000043 ], [ -124.12730813099995, 48.807132829000061 ], [ -124.127204073999934, 48.806937469000111 ], [ -124.126910288999937, 48.806633174000041 ], [ -124.126458401999926, 48.806304527000073 ], [ -124.126220016999966, 48.806164285000115 ], [ -124.126089075999957, 48.806087228000166 ], [ -124.125919339999925, 48.805911247000054 ], [ -124.125842067999884, 48.805735135000106 ], [ -124.125830770999983, 48.805573283000044 ], [ -124.125829458999974, 48.805554175000104 ], [ -124.12582652399999, 48.805512312000083 ], [ -124.125903705999988, 48.805213664000107 ], [ -124.125975652999969, 48.805052840000066 ], [ -124.126636231999939, 48.805046385000033 ], [ -124.126630185999957, 48.804776559000096 ], [ -124.128264122999951, 48.804760577000089 ], [ -124.12827017799999, 48.805030401000081 ], [ -124.128678663999921, 48.805026402000088 ], [ -124.128684718999963, 48.805296227000099 ], [ -124.129093207999944, 48.805292226000134 ], [ -124.129094165999931, 48.805334839000054 ], [ -124.131907093, 48.805384072000102 ], [ -124.131912860999989, 48.805239325000045 ], [ -124.133070072999956, 48.805259558000081 ], [ -124.133091343000018, 48.804725252000033 ], [ -124.135313258999957, 48.804764065000029 ], [ -124.135334280999956, 48.804235306000059 ], [ -124.13916465399997, 48.804302107000083 ], [ -124.13867799799999, 48.804836797000043 ], [ -124.13862209199999, 48.805341014000071 ], [ -124.138880617999959, 48.805986199000124 ], [ -124.139424189999929, 48.806520198000115 ], [ -124.139430105999949, 48.806756161000109 ], [ -124.139431402999975, 48.806807905000056 ], [ -124.139352512999935, 48.806971698000027 ], [ -124.13900400599999, 48.807226593000095 ], [ -124.13757590799996, 48.809112302000088 ], [ -124.137044491999958, 48.809639304 ], [ -124.1367515799999, 48.809825829000062 ], [ -124.136384793999952, 48.810059394000071 ], [ -124.135829112999971, 48.810163389000081 ], [ -124.135079802999954, 48.810693201000099 ], [ -124.134474001999976, 48.811680084000081 ], [ -124.134233805999912, 48.812454907000088 ], [ -124.13417101499999, 48.813283802000129 ], [ -124.13396181, 48.813745207000103 ], [ -124.133644492999935, 48.813935276000123 ], [ -124.13304634099994, 48.813924825000079 ], [ -124.133189723999976, 48.810323572000115 ], [ -124.1349275419999, 48.810353927000065 ], [ -124.134918852999974, 48.809969024000068 ], [ -124.132027841999928, 48.80991850900002 ], [ -124.13204607199998, 48.809460861000034 ], [ -124.131332044999951, 48.80944837300008 ], [ -124.131328529999948, 48.809536573000059 ], [ -124.129211651000034, 48.809499521000106 ], [ -124.129203755999981, 48.809697425000103 ], [ -124.129131709999967, 48.809696163000062 ], [ -124.129060649999971, 48.811477122000092 ], [ -124.127188216999969, 48.811444313000017 ], [ -124.127207812999941, 48.812318382000043 ], [ -124.127979341999946, 48.812331905000072 ], [ -124.127957531999982, 48.812878221000048 ], [ -124.127962474999933, 48.812878307000076 ], [ -124.127946787000027, 48.813271231000044 ], [ -124.128013898999981, 48.813272407000049 ], [ -124.128004577999945, 48.813505833000107 ], [ -124.127691408999908, 48.813518806000069 ], [ -124.127566583999922, 48.81337499600005 ], [ -124.12757251, 48.813033086000154 ], [ -124.127461487999938, 48.81295340800002 ], [ -124.126473893999972, 48.81264010800006 ], [ -124.12626365899996, 48.812644777000031 ], [ -124.125834386999927, 48.812654310000084 ], [ -124.125476688999981, 48.813152797000022 ], [ -124.125437707999978, 48.813846387000055 ], [ -124.125961096999973, 48.815299092000046 ], [ -124.126030702999955, 48.816026800000053 ], [ -124.126158383999936, 48.816169302000084 ], [ -124.128167086999937, 48.816482610000051 ], [ -124.129130894999932, 48.816931199000095 ], [ -124.129239144999971, 48.817011255000139 ], [ -124.129864600999937, 48.817473809000084 ], [ -124.130069892999941, 48.817516601000079 ], [ -124.130125407999955, 48.817514723000023 ], [ -124.130043744999981, 48.819562175000065 ], [ -124.124607094999973, 48.819466889000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.944689899406787", "sL_AssetLoss": "5257.81", "sL_BldgLoss": "4967", "sL_StrLoss": "3925", "sL_NStrLoss": "1042", "sL_ContLoss": "290.81", "geom_point": "0101000020E61000004029833849195FC0654C666174714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.392433415999932, 48.88452272300006 ], [ -124.397878125999966, 48.884604376 ], [ -124.39775487299994, 48.888205531000082 ], [ -124.39230974599991, 48.888123873000019 ], [ -124.392433415999932, 48.88452272300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.912308174130911", "sL_AssetLoss": "3193", "sL_BldgLoss": "2913", "sL_StrLoss": "2190", "sL_NStrLoss": "723", "sL_ContLoss": "280", "geom_point": "0101000020E6100000A4F5BF75A8135FC0A313954F876F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.30611473, 48.872276793 ], [ -124.306113847999981, 48.872242876000065 ], [ -124.306021637999947, 48.872243920000088 ], [ -124.305701808999956, 48.872130982000115 ], [ -124.30568377499999, 48.871438096000048 ], [ -124.306092775999943, 48.871433463000052 ], [ -124.306057655999979, 48.870084441000081 ], [ -124.30606274299997, 48.870084383000062 ], [ -124.30769361099999, 48.87006589600005 ], [ -124.307699709999937, 48.870299856000088 ], [ -124.307700642999933, 48.870335701000016 ], [ -124.307950493999925, 48.870332866000069 ], [ -124.30810963499999, 48.870331061000044 ], [ -124.3081102299999, 48.870353892000018 ], [ -124.308116668999943, 48.870600865 ], [ -124.308525660999976, 48.87059622400006 ], [ -124.308533882999939, 48.870911470000031 ], [ -124.308560845999949, 48.871945244000138 ], [ -124.308151841999944, 48.871949885000028 ], [ -124.308164294999955, 48.872427411000054 ], [ -124.307511560999927, 48.872496916000031 ], [ -124.306789990999931, 48.872505098000069 ], [ -124.306762174999946, 48.872505414000059 ], [ -124.30611473, 48.872276793 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.977883321870553", "sL_AssetLoss": "2311.83", "sL_BldgLoss": "2260.7", "sL_StrLoss": "2046", "sL_NStrLoss": "214.7", "sL_ContLoss": "51.13", "geom_point": "0101000020E6100000202303ED4C2A5FC0D435E6B760664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.65828230799994, 48.797989491000045 ], [ -124.663497266, 48.798054874000059 ], [ -124.663711275, 48.798272532000055 ], [ -124.663614782999915, 48.801659563000065 ], [ -124.660844389999951, 48.801624867000044 ], [ -124.658516712, 48.801595659000071 ], [ -124.658179276999959, 48.801591420000072 ], [ -124.658189419999957, 48.801236845000084 ], [ -124.658205861999974, 48.800662087000056 ], [ -124.65828230799994, 48.797989491000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.997345024448122", "sL_AssetLoss": "375.898", "sL_BldgLoss": "374.9", "sL_StrLoss": "363", "sL_NStrLoss": "11.9", "sL_ContLoss": "0.998", "geom_point": "0101000020E6100000C7C56A56AA2A5FC0E52B8194D8664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.666542293999967, 48.804141097000063 ], [ -124.666164979999948, 48.804121894000033 ], [ -124.665116625999957, 48.804119351000082 ], [ -124.665101167999978, 48.803652479000142 ], [ -124.664692783999897, 48.803658379000076 ], [ -124.664683852999929, 48.803388616000063 ], [ -124.663867092999965, 48.803400412000016 ], [ -124.66385816799999, 48.803130648000057 ], [ -124.663449790999962, 48.803136543000115 ], [ -124.663427723, 48.802469453000114 ], [ -124.663423019, 48.802327252000097 ], [ -124.664648132999972, 48.802309561000087 ], [ -124.66465706299999, 48.80257932500011 ], [ -124.665065435999963, 48.802573425000055 ], [ -124.66507436799999, 48.80284318800004 ], [ -124.66589111899999, 48.802831384000129 ], [ -124.665900054999938, 48.803101148000039 ], [ -124.666308433999959, 48.803095243000094 ], [ -124.666317371000019, 48.803365008000071 ], [ -124.666725750999987, 48.803359101000119 ], [ -124.666734692999952, 48.803628865000036 ], [ -124.66877659799998, 48.803599314000039 ], [ -124.668767644999917, 48.803329551000111 ], [ -124.669992779999973, 48.803311803000099 ], [ -124.670001738999986, 48.803581566000048 ], [ -124.670818498999949, 48.803569728000092 ], [ -124.670834580999966, 48.804053739000082 ], [ -124.670809006999917, 48.804044058000073 ], [ -124.668668523999926, 48.804092806000021 ], [ -124.668214506999931, 48.804234896000054 ], [ -124.668200806999934, 48.804234656000119 ], [ -124.666954905999987, 48.804212887000077 ], [ -124.666542293999967, 48.804141097000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.892026092882874", "sL_AssetLoss": "10271", "sL_BldgLoss": "9162", "sL_StrLoss": "6440", "sL_NStrLoss": "2722", "sL_ContLoss": "1109", "geom_point": "0101000020E61000003536C7FB29185FC0243E7FF3C5724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.374919825999939, 48.894910025000129 ], [ -124.380108010999948, 48.894988667000078 ], [ -124.379983363999884, 48.898589742000077 ], [ -124.375908864999985, 48.898528003000074 ], [ -124.375814989999967, 48.898339000000121 ], [ -124.375410495999958, 48.89800148700003 ], [ -124.375321409999984, 48.896688405000091 ], [ -124.375012797999915, 48.896431989000035 ], [ -124.37461627399999, 48.896226411000058 ], [ -124.374654517999943, 48.895125186000037 ], [ -124.374919825999939, 48.894910025000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.967434317223484", "sL_AssetLoss": "1541.5", "sL_BldgLoss": "1491.3", "sL_StrLoss": "1302", "sL_NStrLoss": "189.3", "sL_ContLoss": "50.2", "geom_point": "0101000020E61000008790CA7F0E165FC0C69F6EC14E634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.345138841999983, 48.777085462000066 ], [ -124.344455010999951, 48.776802065000027 ], [ -124.344062475, 48.776806644000047 ], [ -124.344057957999951, 48.776637513000026 ], [ -124.343821620999989, 48.776539565000057 ], [ -124.343647047999966, 48.776541600000066 ], [ -124.343645039999942, 48.77646638200013 ], [ -124.343188238999943, 48.776277060000062 ], [ -124.342823405999965, 48.776281312000016 ], [ -124.342817312999912, 48.776052895000063 ], [ -124.342553240999962, 48.775888163000062 ], [ -124.34263914, 48.775659262000026 ], [ -124.342804050999987, 48.775555740000094 ], [ -124.34279461899996, 48.77520209300009 ], [ -124.343141380999924, 48.775198052000128 ], [ -124.343201429999965, 48.775144941000121 ], [ -124.3431956299999, 48.774927531000024 ], [ -124.34345061199997, 48.774924558000109 ], [ -124.343944139999977, 48.774488063 ], [ -124.344885218999949, 48.77490782400006 ], [ -124.345236673999963, 48.77490372100003 ], [ -124.345241024999964, 48.775066525000057 ], [ -124.345474877999948, 48.775170830000093 ], [ -124.34565209599999, 48.775168760000049 ], [ -124.345654288999967, 48.775250852000084 ], [ -124.346064542999898, 48.775433832000076 ], [ -124.346475732000016, 48.775429027000072 ], [ -124.346480827999983, 48.775619499000086 ], [ -124.346845541, 48.77578216200007 ], [ -124.346495134999955, 48.776154396000052 ], [ -124.346497383, 48.776238441000089 ], [ -124.346415111999974, 48.776239402000051 ], [ -124.346098066999957, 48.776576188000043 ], [ -124.346103593999942, 48.776782819000118 ], [ -124.345853796999947, 48.776785737000075 ], [ -124.345448841999882, 48.777114063000084 ], [ -124.345138841999983, 48.777085462000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "0.84183552973407", "sL_AssetLoss": "16936.8", "sL_BldgLoss": "14258", "sL_StrLoss": "8730", "sL_NStrLoss": "5528", "sL_ContLoss": "2678.8", "geom_point": "0101000020E610000079EC46A32B055FC02C06B419CC674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.082581819999945, 48.809146446000113 ], [ -124.083579812999943, 48.809164356000068 ], [ -124.083544190999973, 48.810035967000026 ], [ -124.083432623999968, 48.812765548000073 ], [ -124.077996857999949, 48.812667890000107 ], [ -124.078144463999934, 48.809066705000056 ], [ -124.082581819999945, 48.809146446000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22832667", "BldgCostT": "15746667", "sL_LossRatio": "0.947297494303831", "sL_AssetLoss": "38824.34", "sL_BldgLoss": "36778.2", "sL_StrLoss": "29511.7", "sL_NStrLoss": "7266.5", "sL_ContLoss": "2046.14", "geom_point": "0101000020E61000003FE8135884175FC0F95F327EAF714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.368614926999896, 48.892058662000125 ], [ -124.368617115999925, 48.891995833000131 ], [ -124.366383634999977, 48.891961768000037 ], [ -124.36639118, 48.892238580000033 ], [ -124.366482026999961, 48.892324249000097 ], [ -124.366802701999973, 48.892320448000092 ], [ -124.36681127099996, 48.892634717000128 ], [ -124.367047334999967, 48.892857315000079 ], [ -124.367226578999933, 48.89285519 ], [ -124.367233806999977, 48.89312017800011 ], [ -124.367491839999914, 48.893528162000031 ], [ -124.3675153399999, 48.893841662000085 ], [ -124.367254935999966, 48.893894889000137 ], [ -124.36725601299996, 48.893934376000061 ], [ -124.367049779999945, 48.893936820000093 ], [ -124.366440860999958, 48.894061279 ], [ -124.366445020999947, 48.894213874000037 ], [ -124.365648044999958, 48.894223316000151 ], [ -124.365404640999984, 48.894273063000064 ], [ -124.365391812999945, 48.894226351000029 ], [ -124.365217493999978, 48.894228414000104 ], [ -124.365210146, 48.893958618000106 ], [ -124.365101872999958, 48.893959900000027 ], [ -124.36508139899999, 48.893490998000054 ], [ -124.364494782999955, 48.892994 ], [ -124.364275702999961, 48.891935790000055 ], [ -124.363853504999938, 48.891489989000029 ], [ -124.363085144999943, 48.891072619000099 ], [ -124.363083078, 48.890996585000075 ], [ -124.362964241, 48.890877263000064 ], [ -124.363014039999882, 48.890559763000113 ], [ -124.36307023499991, 48.890524219000021 ], [ -124.363069806999945, 48.890508409000056 ], [ -124.363270426999932, 48.89044181400012 ], [ -124.363431806999955, 48.890417736000096 ], [ -124.36343285, 48.890387897000075 ], [ -124.364158499999974, 48.890147011000046 ], [ -124.365350276999905, 48.88928669200007 ], [ -124.365360498999976, 48.888647286000086 ], [ -124.365205182999901, 48.887966504000076 ], [ -124.364484287999957, 48.887579095000063 ], [ -124.363618803999927, 48.886878398000121 ], [ -124.362227282999982, 48.886868396000118 ], [ -124.361060203999955, 48.887043606000084 ], [ -124.36041569799994, 48.886916901000028 ], [ -124.360217305999981, 48.886657684000077 ], [ -124.360255216999974, 48.886558002000086 ], [ -124.360919308999939, 48.885911395000079 ], [ -124.360991598999973, 48.885515388000037 ], [ -124.360405901999968, 48.884568298 ], [ -124.360229304999919, 48.88409410300013 ], [ -124.36024880899997, 48.883777903000123 ], [ -124.360702803999956, 48.883431802000118 ], [ -124.360712692999954, 48.88333208800001 ], [ -124.360647896999964, 48.882964707000085 ], [ -124.360464612999934, 48.882678395000042 ], [ -124.359976816999932, 48.88229669400009 ], [ -124.359563392999945, 48.882140113000027 ], [ -124.358891209999982, 48.882067404000061 ], [ -124.356665788999933, 48.881940705000019 ], [ -124.356596402999969, 48.881930456000092 ], [ -124.356603924999931, 48.881716218000093 ], [ -124.356670591999944, 48.879816921000085 ], [ -124.362114689999956, 48.879900393000078 ], [ -124.36206348499999, 48.881364039000118 ], [ -124.365187763000037, 48.881411817000064 ], [ -124.365137835999946, 48.882841583000079 ], [ -124.36809664399999, 48.882886745000107 ], [ -124.36804039499999, 48.884500338000073 ], [ -124.368774513999938, 48.88451153100003 ], [ -124.368743445999911, 48.885403082000032 ], [ -124.37024081299991, 48.885425897000111 ], [ -124.370209653999964, 48.886320858000097 ], [ -124.37289567, 48.88636173000004 ], [ -124.372827991999927, 48.888308729000087 ], [ -124.374444528999973, 48.888333295000031 ], [ -124.374434175999937, 48.888631410000102 ], [ -124.375827295999912, 48.888652561000129 ], [ -124.375794676999959, 48.889592593000025 ], [ -124.375703814999937, 48.892211062000086 ], [ -124.375702095999955, 48.892213496000046 ], [ -124.37570343699997, 48.89222193300008 ], [ -124.375702336999922, 48.892253667000098 ], [ -124.375616247000011, 48.892252361000018 ], [ -124.375596690999942, 48.892815861000059 ], [ -124.375291585999946, 48.893153510000026 ], [ -124.374823801999952, 48.893978105000052 ], [ -124.37457281199994, 48.894278608000015 ], [ -124.37402965199999, 48.894686668000126 ], [ -124.373972081999952, 48.894685794000083 ], [ -124.373970507999971, 48.894731100000094 ], [ -124.37395927799993, 48.89473953600006 ], [ -124.373831606999957, 48.894737597000052 ], [ -124.373828115999913, 48.89483807400007 ], [ -124.373503684999918, 48.89508180100011 ], [ -124.373308402999911, 48.895426504000064 ], [ -124.373316869999897, 48.895733211000028 ], [ -124.368350799, 48.895657627000077 ], [ -124.368476332999961, 48.892056550000092 ], [ -124.368614926999896, 48.892058662000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4623083", "BldgCostT": "3188333", "sL_LossRatio": "0.905552268551677", "sL_AssetLoss": "12845.2", "sL_BldgLoss": "11632", "sL_StrLoss": "8160", "sL_NStrLoss": "3472", "sL_ContLoss": "1213.2", "geom_point": "0101000020E6100000133E426AA6085FC07FBDA17492694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.135235199999968, 48.82671408800006 ], [ -124.134699293999986, 48.826466300000043 ], [ -124.133893694999941, 48.826402198000103 ], [ -124.133153201, 48.826175701000096 ], [ -124.132918106999938, 48.826070399000074 ], [ -124.1325708899999, 48.8257328 ], [ -124.131875521, 48.825684401000103 ], [ -124.131050012999935, 48.825351098000048 ], [ -124.130423788999977, 48.825329807000088 ], [ -124.129939536, 48.825398351000068 ], [ -124.130016506999937, 48.823468933000093 ], [ -124.130823255999957, 48.823483047000053 ], [ -124.130849810999962, 48.822817051000129 ], [ -124.132594843999968, 48.822847561000067 ], [ -124.135976912999979, 48.822906612000047 ], [ -124.136286862999938, 48.82291201900005 ], [ -124.136285217999955, 48.82295338600003 ], [ -124.137071535999965, 48.822967098000042 ], [ -124.137023949999929, 48.824164499000076 ], [ -124.138777544999968, 48.824195056000079 ], [ -124.138773773999986, 48.824290027000089 ], [ -124.140048603999929, 48.824312224000089 ], [ -124.140043189999986, 48.824448656000101 ], [ -124.140643789999928, 48.824459109000081 ], [ -124.140606277999964, 48.825404829000057 ], [ -124.14056233099997, 48.826512685000083 ], [ -124.140341488, 48.826527501000065 ], [ -124.138932905, 48.826254098000042 ], [ -124.138713995999979, 48.826246998000045 ], [ -124.138218009999932, 48.82663009500002 ], [ -124.137813110999957, 48.82674260800016 ], [ -124.13718308699994, 48.8266585900001 ], [ -124.135235199999968, 48.82671408800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9388750", "BldgCostT": "6475000", "sL_LossRatio": "0.967776237190247", "sL_AssetLoss": "9592.3", "sL_BldgLoss": "9283.2", "sL_StrLoss": "7924", "sL_NStrLoss": "1359.2", "sL_ContLoss": "309.1", "geom_point": "0101000020E6100000DABC9AD1C9155FC0AB8A991283624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.337968266999965, 48.774196580000108 ], [ -124.337977966999986, 48.773922649000113 ], [ -124.337452564, 48.773914468000015 ], [ -124.33746844599996, 48.773466140000053 ], [ -124.337065176999928, 48.773459858000081 ], [ -124.337125825999934, 48.771748115000051 ], [ -124.336852570999966, 48.771743857000097 ], [ -124.336980188999945, 48.768142101000102 ], [ -124.338242458999943, 48.768161762000091 ], [ -124.338366532999927, 48.764656824000028 ], [ -124.343797243999973, 48.764741243000081 ], [ -124.343670157999966, 48.768343028000096 ], [ -124.342407881999947, 48.76832343100007 ], [ -124.342356544000012, 48.769777142000059 ], [ -124.343530253999958, 48.769795365000036 ], [ -124.343499073999979, 48.770678831000055 ], [ -124.343527204999987, 48.770679268000031 ], [ -124.343400080999956, 48.774281018000131 ], [ -124.337968266999965, 48.774196580000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.885209429683823", "sL_AssetLoss": "4674.6", "sL_BldgLoss": "4138", "sL_StrLoss": "2850", "sL_NStrLoss": "1288", "sL_ContLoss": "536.6", "geom_point": "0101000020E6100000AF9EEE97AA055FC08862763F3C674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.087327016999922, 48.805756037000023 ], [ -124.08780086799996, 48.805739296000105 ], [ -124.088163805999969, 48.805772277000081 ], [ -124.088578497999919, 48.805809982 ], [ -124.089326204999949, 48.805980122000101 ], [ -124.091035259999956, 48.806451486000071 ], [ -124.091113953999937, 48.806473200000077 ], [ -124.091534458999888, 48.806589169000077 ], [ -124.09151182599993, 48.807145265000067 ], [ -124.086076695, 48.807048017000064 ], [ -124.086120392999987, 48.805977315000099 ], [ -124.086198565999936, 48.8059597170001 ], [ -124.086704673999975, 48.805845812000037 ], [ -124.08676849899993, 48.805836600000106 ], [ -124.087327016999922, 48.805756037000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7515834", "BldgCostT": "5183334", "sL_LossRatio": "0.869156015399726", "sL_AssetLoss": "31662.9", "sL_BldgLoss": "27520", "sL_StrLoss": "17840", "sL_NStrLoss": "9680", "sL_ContLoss": "4142.9", "geom_point": "0101000020E61000001BFDFD9CE1085FC089DE7746BA674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.133935975999918, 48.816496895000078 ], [ -124.134022091999952, 48.814333133000069 ], [ -124.134111288999961, 48.814265106000114 ], [ -124.134427205999884, 48.813829294000044 ], [ -124.134697882999959, 48.811920792000073 ], [ -124.135012002999986, 48.811322704000084 ], [ -124.135369388999905, 48.810932403000045 ], [ -124.136610387999923, 48.810362797000046 ], [ -124.137328887999928, 48.809832395000115 ], [ -124.137721717, 48.809542399000122 ], [ -124.13810488199999, 48.808971305000064 ], [ -124.139777598999913, 48.807065691000091 ], [ -124.139833702999979, 48.806854729000101 ], [ -124.139902215999896, 48.806597097000051 ], [ -124.139800788999963, 48.806292404000061 ], [ -124.139450589999939, 48.805845193000032 ], [ -124.1394892199999, 48.805144405000107 ], [ -124.139886896999926, 48.804314687000073 ], [ -124.140769187999965, 48.804330049000036 ], [ -124.140753217999958, 48.804732879000028 ], [ -124.143886198999965, 48.804787368000056 ], [ -124.143778871000023, 48.807498999000039 ], [ -124.143743654999952, 48.808388669000081 ], [ -124.140543136999952, 48.808333004000133 ], [ -124.140482261999978, 48.809868153000089 ], [ -124.140428583, 48.81122174300004 ], [ -124.1385947099999, 48.811189804000051 ], [ -124.138586119999957, 48.81140618400007 ], [ -124.139037473999963, 48.811401724000156 ], [ -124.139061926999929, 48.812481019000074 ], [ -124.138543246999944, 48.812486145000065 ], [ -124.138510070999985, 48.813321839000047 ], [ -124.139501371000023, 48.813339107000076 ], [ -124.139446921999962, 48.814711285000058 ], [ -124.139264633999915, 48.8148036320001 ], [ -124.139156775999965, 48.814858271000141 ], [ -124.138946968999974, 48.814964527000043 ], [ -124.13887317399994, 48.815001930000093 ], [ -124.138477804, 48.815202190000043 ], [ -124.13800411199999, 48.815360292000037 ], [ -124.136669394999956, 48.815391611000095 ], [ -124.136022501999904, 48.815118191000124 ], [ -124.135777, 48.815112497000044 ], [ -124.13556399699992, 48.815276314000059 ], [ -124.135315407999968, 48.815746309000133 ], [ -124.135235587, 48.816412808000059 ], [ -124.134377007999959, 48.816412791000069 ], [ -124.133935975999918, 48.816496895000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57690500", "BldgCostT": "39290000", "sL_LossRatio": "0.86103681811422", "sL_AssetLoss": "211811.5", "sL_BldgLoss": "182377.5", "sL_StrLoss": "123033.5", "sL_NStrLoss": "59344", "sL_ContLoss": "29434", "geom_point": "0101000020E610000094749CF4E10B5FC0413B0A845B694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.194410888999982, 48.838488722000093 ], [ -124.194802496999955, 48.838085014000093 ], [ -124.195062491999977, 48.838065089000054 ], [ -124.195338501999942, 48.838206011000082 ], [ -124.195706092999956, 48.838237395000121 ], [ -124.196112317000015, 48.838126307000074 ], [ -124.196406419999931, 48.837871398000097 ], [ -124.196514296999979, 48.837249008000043 ], [ -124.196355807999922, 48.836944191 ], [ -124.196117, 48.836605192000071 ], [ -124.195853896999907, 48.836437192000076 ], [ -124.194631496999961, 48.835999997000052 ], [ -124.194501212999967, 48.835695188000145 ], [ -124.194491369000019, 48.835265632000066 ], [ -124.194490310999953, 48.835219508000066 ], [ -124.194362985999973, 48.835021506000061 ], [ -124.192103093999918, 48.834524503000118 ], [ -124.191427811999972, 48.834296607000113 ], [ -124.191056311999915, 48.834067306000037 ], [ -124.190690796999917, 48.833657086000102 ], [ -124.190552858, 48.833411384000051 ], [ -124.190364593999931, 48.833076004000119 ], [ -124.189745705999925, 48.832821084000095 ], [ -124.189696804000036, 48.83192238400013 ], [ -124.189457598999965, 48.831591986000063 ], [ -124.189012607999942, 48.831227400000053 ], [ -124.188459781999981, 48.831043297000086 ], [ -124.188118981999949, 48.830929793000081 ], [ -124.187908523999951, 48.830644902000131 ], [ -124.187798209000036, 48.829979786000109 ], [ -124.18755909799999, 48.829676486000011 ], [ -124.187475883000019, 48.827923301000055 ], [ -124.186806676999964, 48.826679898000044 ], [ -124.18668831799999, 48.826581177000087 ], [ -124.186070800999971, 48.826066113000053 ], [ -124.185565493999974, 48.825496388000033 ], [ -124.185220906999945, 48.825265709000114 ], [ -124.184313803999885, 48.824969384000021 ], [ -124.183411706999934, 48.824861199000104 ], [ -124.182473612999956, 48.824322889000044 ], [ -124.182263885999973, 48.824090705000046 ], [ -124.182376108999946, 48.82372040500006 ], [ -124.183827584999932, 48.823975296000114 ], [ -124.184584715999947, 48.824354207000049 ], [ -124.185375579999942, 48.824328600000072 ], [ -124.185644184999958, 48.824227393000079 ], [ -124.184658817999946, 48.824020895000054 ], [ -124.183340898999973, 48.823585108 ], [ -124.182733109999944, 48.823248997000064 ], [ -124.182945907999965, 48.823003989000092 ], [ -124.183027103999962, 48.822445707000057 ], [ -124.183520213999941, 48.821962891000112 ], [ -124.183816482999958, 48.821816193000068 ], [ -124.183927604999965, 48.821841894000066 ], [ -124.184001801999969, 48.822165194000043 ], [ -124.184357286999941, 48.822152411000047 ], [ -124.184518191, 48.822069794000122 ], [ -124.184579686999939, 48.821809090000016 ], [ -124.184379302999943, 48.821351991000064 ], [ -124.183541708999954, 48.820541587000044 ], [ -124.183534107999918, 48.820226802000022 ], [ -124.18350248199999, 48.820167103000074 ], [ -124.183307005999936, 48.819798107000075 ], [ -124.18285998199994, 48.819532641000109 ], [ -124.182518076999955, 48.819329596000074 ], [ -124.182033274999952, 48.819226651000122 ], [ -124.181505094999949, 48.819114492000061 ], [ -124.180633001999979, 48.81912309900008 ], [ -124.180349584999945, 48.819271558 ], [ -124.179879882999984, 48.819517597000086 ], [ -124.178890489, 48.81970839200001 ], [ -124.1786105899999, 48.819953401000106 ], [ -124.17859368799995, 48.820208977000078 ], [ -124.178579593999956, 48.820421910000043 ], [ -124.178340683999949, 48.820639801000056 ], [ -124.178178612999915, 48.82075950500009 ], [ -124.177310200999941, 48.820884812000067 ], [ -124.176984104999946, 48.82088770900004 ], [ -124.176722980999912, 48.820782299000044 ], [ -124.176342006999917, 48.820292284000054 ], [ -124.176265933999957, 48.820116057000064 ], [ -124.176174201999956, 48.819903418000123 ], [ -124.175940091999948, 48.819360889000023 ], [ -124.175635789999944, 48.819201389000042 ], [ -124.174342095999961, 48.819178597000075 ], [ -124.173296480999952, 48.818794093000058 ], [ -124.172834822999917, 48.818789748000057 ], [ -124.172384189999903, 48.818785492000089 ], [ -124.172026280999958, 48.818590392000061 ], [ -124.171408103999966, 48.818408096000034 ], [ -124.170630778999964, 48.818343998000039 ], [ -124.169890689999974, 48.81816310600005 ], [ -124.168378142999984, 48.817999752000041 ], [ -124.168361093, 48.81799791200006 ], [ -124.167538910999966, 48.817789999000034 ], [ -124.166937898999947, 48.817742999000075 ], [ -124.166874294999957, 48.817320005000099 ], [ -124.166579477999903, 48.817168881000093 ], [ -124.166549029999956, 48.817153273000045 ], [ -124.166540698999981, 48.816794224000084 ], [ -124.166306530999947, 48.816796594000039 ], [ -124.166287293000011, 48.81672329800012 ], [ -124.16590837499993, 48.816433284000041 ], [ -124.165719707999969, 48.816288900000075 ], [ -124.164688509999934, 48.815921394000064 ], [ -124.16442368099996, 48.815672193000154 ], [ -124.164345957999984, 48.815230720000166 ], [ -124.164314615999956, 48.815052701000127 ], [ -124.164043160999981, 48.814829174000081 ], [ -124.164026757999977, 48.814120794000061 ], [ -124.163798798999963, 48.814123097000021 ], [ -124.163803082999948, 48.813518798000061 ], [ -124.163497289999952, 48.813323705000066 ], [ -124.162337912999988, 48.813219701000079 ], [ -124.161960472999951, 48.813124297000073 ], [ -124.161959035999985, 48.813062120000048 ], [ -124.160733394999937, 48.813074469000121 ], [ -124.160708476999957, 48.811995182000011 ], [ -124.16152555399999, 48.811986950000126 ], [ -124.161519320999943, 48.811717129000101 ], [ -124.16222007, 48.811710066000025 ], [ -124.16356199899991, 48.81169652500013 ], [ -124.163568243999919, 48.811966348000105 ], [ -124.164385318999962, 48.811958096000069 ], [ -124.16439156899996, 48.812227917000037 ], [ -124.165208647999947, 48.812219660000018 ], [ -124.165214899999967, 48.812489482000032 ], [ -124.166440526999921, 48.812477085000083 ], [ -124.166446784999962, 48.812746907000069 ], [ -124.167672415999974, 48.812734496000061 ], [ -124.167666148999942, 48.81246467600009 ], [ -124.169216751999912, 48.812448957000093 ], [ -124.169240016999979, 48.81185306900008 ], [ -124.169998997999954, 48.811866073000033 ], [ -124.1700085, 48.811622587000038 ], [ -124.171324792999911, 48.811645127000141 ], [ -124.171324157999962, 48.81161790500007 ], [ -124.171662684999916, 48.811614464000108 ], [ -124.171693177999941, 48.810832435000137 ], [ -124.171708998999961, 48.81042662600003 ], [ -124.172522592999925, 48.810440547000056 ], [ -124.172486836999923, 48.808907235000078 ], [ -124.173191429000013, 48.808900065000103 ], [ -124.173712371999926, 48.808894761000026 ], [ -124.173718670999946, 48.80916458300004 ], [ -124.174127182999953, 48.809160422000083 ], [ -124.174146085999922, 48.809969884000104 ], [ -124.174554605999944, 48.809965721000019 ], [ -124.174560908999965, 48.810235542000079 ], [ -124.174969430999951, 48.810231378000083 ], [ -124.174975299999957, 48.810482477000065 ], [ -124.177144696999974, 48.810519517000053 ], [ -124.177130862999931, 48.810875360000054 ], [ -124.177072796999937, 48.812368996000039 ], [ -124.17747111199999, 48.812364928000108 ], [ -124.177477291999935, 48.812628802000049 ], [ -124.177477430999971, 48.812634747000047 ], [ -124.177498872999962, 48.812634528000018 ], [ -124.177885971999928, 48.812630573000042 ], [ -124.17788962399996, 48.812786435000099 ], [ -124.177892293999918, 48.812900393000113 ], [ -124.178071910999932, 48.812898558000036 ], [ -124.17830083699999, 48.812896218000098 ], [ -124.178304530999966, 48.813053810000113 ], [ -124.178307160999935, 48.813166038000112 ], [ -124.178470188999981, 48.813164370000052 ], [ -124.178715705999977, 48.813161861000047 ], [ -124.178719668999946, 48.813330874000037 ], [ -124.178722031999939, 48.813431680000065 ], [ -124.17890642799992, 48.813429795000111 ], [ -124.179539126999956, 48.813423322000084 ], [ -124.179544129999897, 48.81363659700002 ], [ -124.179545456999946, 48.81369314200002 ], [ -124.179781012999982, 48.813690731000058 ], [ -124.179954005999988, 48.813688960000093 ], [ -124.179954980999966, 48.813730487000107 ], [ -124.179973006999944, 48.814498420000092 ], [ -124.181524884999988, 48.814482523000017 ], [ -124.181607228999908, 48.814481678000064 ], [ -124.181609337999973, 48.814571413000124 ], [ -124.181619911999988, 48.815021318000049 ], [ -124.182011156, 48.815017305000019 ], [ -124.182028472999974, 48.815017128000079 ], [ -124.182028940999913, 48.815037041000046 ], [ -124.182041161999933, 48.815556768000121 ], [ -124.182449724999984, 48.815552577000048 ], [ -124.182456071999979, 48.815822397000026 ], [ -124.182734149999931, 48.815819544000078 ], [ -124.182864638999931, 48.815818204000045 ], [ -124.182868169999935, 48.815968252000047 ], [ -124.182877335999962, 48.816357844000102 ], [ -124.183216147999985, 48.816354366000077 ], [ -124.183235910999926, 48.816354163000071 ], [ -124.18328590699997, 48.816353650000053 ], [ -124.183287793999966, 48.816433863000022 ], [ -124.183292256999962, 48.816623469 ], [ -124.18345715399991, 48.816621776000034 ], [ -124.183700830999925, 48.816619275000114 ], [ -124.183707184999975, 48.816889094000075 ], [ -124.184115758999965, 48.816884897000094 ], [ -124.184122350999985, 48.817164764000012 ], [ -124.184409620999986, 48.817169646000146 ], [ -124.184405699999957, 48.817270889000092 ], [ -124.184932107999927, 48.817279833000086 ], [ -124.184931119999973, 48.817305342000104 ], [ -124.185412590999974, 48.817313520000077 ], [ -124.185377452999916, 48.81822135200008 ], [ -124.185781881999915, 48.818217193000145 ], [ -124.185794611999981, 48.818756830000012 ], [ -124.186203200999927, 48.818752626000069 ], [ -124.186209569999932, 48.819022445000023 ], [ -124.186618161999945, 48.819018239000158 ], [ -124.186624227999943, 48.819275240000124 ], [ -124.188605289999913, 48.819308843 ], [ -124.188591984999988, 48.819653217000031 ], [ -124.188681908999939, 48.819654742000061 ], [ -124.188671162999938, 48.819932879000113 ], [ -124.188892817999943, 48.819936637000119 ], [ -124.188880630999947, 48.820252097000044 ], [ -124.189024430999936, 48.820254535000089 ], [ -124.18901127399999, 48.820595163000071 ], [ -124.189374938999947, 48.82060132600003 ], [ -124.189366419999899, 48.820821875000028 ], [ -124.18936490399993, 48.820861140000055 ], [ -124.189464349999938, 48.820862825000049 ], [ -124.189455079999945, 48.82110285300012 ], [ -124.190107641999973, 48.821113908000065 ], [ -124.190056646999963, 48.822434773000083 ], [ -124.19130917599999, 48.822455980000015 ], [ -124.191299232999981, 48.82271372000011 ], [ -124.191550682999946, 48.822717976000078 ], [ -124.191549611999946, 48.82274575200011 ], [ -124.194471154999931, 48.82271551200008 ], [ -124.194458329000014, 48.822175876000173 ], [ -124.195674406999942, 48.822163267000136 ], [ -124.196501409999982, 48.822154686000076 ], [ -124.196506686999982, 48.822376391000077 ], [ -124.196507832999927, 48.822424504000033 ], [ -124.196687299999937, 48.822422641000053 ], [ -124.197325067999927, 48.822416017000073 ], [ -124.197329235000026, 48.822590912000123 ], [ -124.197331497, 48.82268583500008 ], [ -124.197624343999962, 48.822682793000112 ], [ -124.198148735999965, 48.822677343000052 ], [ -124.198153651999974, 48.822883560000086 ], [ -124.198155168999961, 48.822947161000087 ], [ -124.198298642999987, 48.822945669000013 ], [ -124.198563789999938, 48.82294291200008 ], [ -124.198566594999988, 48.823060452000064 ], [ -124.198570224999955, 48.823212731000126 ], [ -124.198913739999952, 48.82320915800004 ], [ -124.199387474000019, 48.823204230000073 ], [ -124.199392484999933, 48.823414232000111 ], [ -124.199393911999934, 48.82347404800003 ], [ -124.199528846999954, 48.823472643000059 ], [ -124.199802538999961, 48.823469795000065 ], [ -124.199805434999988, 48.823591120000096 ], [ -124.19980898099999, 48.823739612000111 ], [ -124.20014396599997, 48.823736125000089 ], [ -124.20062623599992, 48.8237311030001 ], [ -124.200631344, 48.823944880000084 ], [ -124.200632681999949, 48.824000920000103 ], [ -124.200759105999978, 48.823999603000047 ], [ -124.201041313999966, 48.823996663000052 ], [ -124.201044301999943, 48.824121756000068 ], [ -124.20104776099997, 48.824266480000048 ], [ -124.201374254999976, 48.824263078000037 ], [ -124.201865024999933, 48.82425796200004 ], [ -124.201870156000027, 48.824472493000115 ], [ -124.201871478000015, 48.824527779000036 ], [ -124.202010732999966, 48.824526326000068 ], [ -124.202688745999936, 48.824519254000045 ], [ -124.202695186999961, 48.824788427000044 ], [ -124.202759780999969, 48.827487243000029 ], [ -124.197724930999968, 48.827539670000093 ], [ -124.197722069999926, 48.827614044000065 ], [ -124.197688165999949, 48.828495810000035 ], [ -124.19885025399995, 48.8285154020001 ], [ -124.198806281999964, 48.829659685000081 ], [ -124.198872720999972, 48.829660804000078 ], [ -124.198788612999934, 48.831849476000073 ], [ -124.199472229999941, 48.831860994000074 ], [ -124.199371440999926, 48.834484427000113 ], [ -124.19941748799998, 48.83448520300005 ], [ -124.199403166999929, 48.834857953000082 ], [ -124.199761896999959, 48.834863995000077 ], [ -124.19975257899992, 48.835106592000052 ], [ -124.202268120999975, 48.835148931000028 ], [ -124.20212997, 48.838750131000083 ], [ -124.19984484499993, 48.838711674000102 ], [ -124.199840084999934, 48.838835589000141 ], [ -124.194401058999986, 48.8387438560001 ], [ -124.194410888999982, 48.838488722000093 ] ], [ [ -124.190540194, 48.824365608000036 ], [ -124.189780006999968, 48.823976798000096 ], [ -124.189288400999956, 48.823865706000049 ], [ -124.188396917999967, 48.823789455000089 ], [ -124.188072511999934, 48.823761705000024 ], [ -124.187342207999961, 48.823435604000025 ], [ -124.186878291999932, 48.823360110000124 ], [ -124.186537245999986, 48.823363269000083 ], [ -124.1864150899999, 48.823364402000038 ], [ -124.186009878999954, 48.823512494000056 ], [ -124.185906406999933, 48.823774503000053 ], [ -124.186007884999924, 48.824006700000098 ], [ -124.186853741999954, 48.823630937000104 ], [ -124.186857398999976, 48.823629312000044 ], [ -124.187198108999951, 48.823607908000099 ], [ -124.187845790999916, 48.823942589000069 ], [ -124.188815703999978, 48.824103491000038 ], [ -124.189383392999957, 48.824476697000094 ], [ -124.189860295999964, 48.824498009000131 ], [ -124.190540194, 48.824365608000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.986702888189877", "sL_AssetLoss": "1398.8", "sL_BldgLoss": "1380.2", "sL_StrLoss": "1275", "sL_NStrLoss": "105.2", "sL_ContLoss": "18.6", "geom_point": "0101000020E610000030355BDC332B5FC085F4CAAB29674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.674360750999966, 48.80668187600002 ], [ -124.672765068999965, 48.805216737000087 ], [ -124.673325, 48.805223692000041 ], [ -124.673322638999934, 48.805152751000044 ], [ -124.672914246999966, 48.805158679000023 ], [ -124.67290527099999, 48.804888917000085 ], [ -124.672415794999935, 48.804896021000054 ], [ -124.671737643999933, 48.804273301000059 ], [ -124.671342292999938, 48.804245912000063 ], [ -124.671248367999951, 48.804210361000059 ], [ -124.671244809999934, 48.804103331000128 ], [ -124.673695113999926, 48.804067770000067 ], [ -124.673704093, 48.804337532000083 ], [ -124.675746017999927, 48.804307857000055 ], [ -124.675755008999914, 48.804577621000107 ], [ -124.676163397999957, 48.80457168100002 ], [ -124.676190374999976, 48.805380967000083 ], [ -124.674808413999969, 48.805401060000108 ], [ -124.674805990999971, 48.805486806000097 ], [ -124.675124205999936, 48.805490753000086 ], [ -124.675118953999942, 48.805676705000074 ], [ -124.675605699999934, 48.805682741000055 ], [ -124.675603500999955, 48.805760568000011 ], [ -124.67634217799997, 48.805769723000012 ], [ -124.676335430999984, 48.806008789000046 ], [ -124.676756975999979, 48.806014012000027 ], [ -124.676747825999911, 48.806338330000109 ], [ -124.67739107199999, 48.806346297000125 ], [ -124.677341682999923, 48.80809760000011 ], [ -124.676676414, 48.80828770400008 ], [ -124.676298861999911, 48.808461254000129 ], [ -124.67585418699997, 48.808052991000075 ], [ -124.674360750999966, 48.80668187600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.983716394874433", "sL_AssetLoss": "1671.62", "sL_BldgLoss": "1644.4", "sL_StrLoss": "1497", "sL_NStrLoss": "147.4", "sL_ContLoss": "27.22", "geom_point": "0101000020E61000005B3343F4752A5FC078AE73FC65674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.665768719999932, 48.811469716000047 ], [ -124.665759780999934, 48.811199952000088 ], [ -124.665351338999969, 48.811205855000026 ], [ -124.665333465999936, 48.810666328000046 ], [ -124.664925026999924, 48.810672230000137 ], [ -124.664916092999988, 48.810402467000081 ], [ -124.664507655999927, 48.810408367000036 ], [ -124.664498723999927, 48.810138604000031 ], [ -124.66409029, 48.810144502000092 ], [ -124.664079201999982, 48.80980955600004 ], [ -124.66247695499996, 48.809789510000016 ], [ -124.66257967599995, 48.806187622000131 ], [ -124.663142362999949, 48.806194665000056 ], [ -124.663139557999926, 48.80610984000004 ], [ -124.66273115599999, 48.806115732000059 ], [ -124.662722233999929, 48.805845969000075 ], [ -124.662313833999974, 48.805851861000072 ], [ -124.662304916999958, 48.805582096000087 ], [ -124.661488119999902, 48.805593876000017 ], [ -124.661461043999921, 48.804774489000046 ], [ -124.661452464999968, 48.804514820000065 ], [ -124.662677632999959, 48.80449715 ], [ -124.662686552999958, 48.804766913000051 ], [ -124.663370024999949, 48.804757051000102 ], [ -124.663545827999883, 48.805814920000032 ], [ -124.663673111999927, 48.805957014000036 ], [ -124.663731718999912, 48.806082121000067 ], [ -124.663834480999967, 48.806305547000164 ], [ -124.663850470999989, 48.806377290000057 ], [ -124.663864953999934, 48.80640406400002 ], [ -124.663856113999927, 48.80654813600006 ], [ -124.663834838999946, 48.806728378000052 ], [ -124.663813853999969, 48.806917602000119 ], [ -124.66380501, 48.807061674000082 ], [ -124.663768631999972, 48.807197139000053 ], [ -124.663707695999975, 48.807413947000022 ], [ -124.663989723999947, 48.808939266000074 ], [ -124.664062566, 48.809082153000134 ], [ -124.666013482999972, 48.810223500000092 ], [ -124.666033700999947, 48.8106100480001 ], [ -124.666052693999973, 48.810771710000033 ], [ -124.666030824999936, 48.810933973000054 ], [ -124.666008339, 48.811078229000096 ], [ -124.666001903, 48.811294239000119 ], [ -124.665993357, 48.811447293000107 ], [ -124.665992780999915, 48.811466476000106 ], [ -124.665768719999932, 48.811469716000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27054584", "BldgCostT": "18658334", "sL_LossRatio": "0.987612462941816", "sL_AssetLoss": "12903.695", "sL_BldgLoss": "12743.85", "sL_StrLoss": "11409.78", "sL_NStrLoss": "1334.07", "sL_ContLoss": "159.845", "geom_point": "0101000020E61000004F8FBF17D32A5FC0D17AD72468674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.667986925999955, 48.812122245000069 ], [ -124.667989988999963, 48.812014371000025 ], [ -124.667104098999928, 48.812003322000095 ], [ -124.667165353999948, 48.809848102000089 ], [ -124.666531981999924, 48.809840198000124 ], [ -124.666549838999941, 48.810378853000067 ], [ -124.666958273999967, 48.810372945000061 ], [ -124.666994054999961, 48.811451997000049 ], [ -124.665992780999915, 48.811466476000106 ], [ -124.665993357, 48.811447293000107 ], [ -124.666001903, 48.811294239000119 ], [ -124.666008339, 48.811078229000096 ], [ -124.666030824999936, 48.810933973000054 ], [ -124.666052693999973, 48.810771710000033 ], [ -124.666033700999947, 48.8106100480001 ], [ -124.666013482999972, 48.810223500000092 ], [ -124.664062566, 48.809082153000134 ], [ -124.663989723999947, 48.808939266000074 ], [ -124.663707695999975, 48.807413947000022 ], [ -124.663768631999972, 48.807197139000053 ], [ -124.66380501, 48.807061674000082 ], [ -124.663813853999969, 48.806917602000119 ], [ -124.663834838999946, 48.806728378000052 ], [ -124.663856113999927, 48.80654813600006 ], [ -124.663864953999934, 48.80640406400002 ], [ -124.663850470999989, 48.806377290000057 ], [ -124.663834480999967, 48.806305547000164 ], [ -124.663731718999912, 48.806082121000067 ], [ -124.663673111999927, 48.805957014000036 ], [ -124.663545827999883, 48.805814920000032 ], [ -124.663370024999949, 48.804757051000102 ], [ -124.663503334999973, 48.804755127000078 ], [ -124.663512261, 48.805024890000041 ], [ -124.66392065299999, 48.805018993000061 ], [ -124.663938507999958, 48.805558521000137 ], [ -124.664346904999931, 48.805552624000043 ], [ -124.664364763999984, 48.806092152000062 ], [ -124.664773164999929, 48.806086251000075 ], [ -124.664777432999969, 48.806215114000047 ], [ -124.666003734999961, 48.806230435000018 ], [ -124.665998370999901, 48.806068546000084 ], [ -124.665589968999967, 48.806074450000061 ], [ -124.665527417999954, 48.80418610500007 ], [ -124.665119032999954, 48.804192007000026 ], [ -124.665116625999957, 48.804119351000082 ], [ -124.666164979999948, 48.804121894000033 ], [ -124.666542293999967, 48.804141097000063 ], [ -124.666954905999987, 48.804212887000077 ], [ -124.668200806999934, 48.804234656000119 ], [ -124.668214506999931, 48.804234896000054 ], [ -124.668668523999926, 48.804092806000021 ], [ -124.670809006999917, 48.804044058000073 ], [ -124.670834580999966, 48.804053739000082 ], [ -124.670845389999911, 48.804379016000055 ], [ -124.669211843999975, 48.804402689000078 ], [ -124.669220797999955, 48.804672451000108 ], [ -124.667178849999971, 48.804702011000096 ], [ -124.667214627999925, 48.805781063000076 ], [ -124.669256619999942, 48.805751504000071 ], [ -124.669238709999945, 48.805211977000042 ], [ -124.669375960999972, 48.805209989000026 ], [ -124.669376964999941, 48.805174588000092 ], [ -124.670690441999909, 48.805190940000031 ], [ -124.671689067999978, 48.805176459000101 ], [ -124.671689963999953, 48.805203374000065 ], [ -124.672765068999965, 48.805216737000087 ], [ -124.674360750999966, 48.80668187600002 ], [ -124.67585418699997, 48.808052991000075 ], [ -124.676298861999911, 48.808461254000129 ], [ -124.676233503999953, 48.808491303000089 ], [ -124.675819810999926, 48.808548897000044 ], [ -124.67565029499994, 48.808572491000028 ], [ -124.674739982999952, 48.80866650600008 ], [ -124.674244796999943, 48.808925704000039 ], [ -124.673398088999988, 48.809666293000163 ], [ -124.672811702000018, 48.810016707000088 ], [ -124.67213760599995, 48.810278691000129 ], [ -124.671328497999966, 48.810479489000066 ], [ -124.67128053499999, 48.810482280000073 ], [ -124.670716293999959, 48.810515093000021 ], [ -124.670230690999958, 48.810639105000085 ], [ -124.669627708999968, 48.810972297000035 ], [ -124.6691901, 48.811346884000145 ], [ -124.668907283999957, 48.811432293000031 ], [ -124.668548707999932, 48.811698695000125 ], [ -124.668216254999948, 48.812125103000071 ], [ -124.667986925999955, 48.812122245000069 ] ], [ [ -124.665714388999959, 48.80982999000004 ], [ -124.665715087999899, 48.809851136000056 ], [ -124.66649960899997, 48.809839795000094 ], [ -124.665714388999959, 48.80982999000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.895394827966532", "sL_AssetLoss": "19493.3", "sL_BldgLoss": "17454.2", "sL_StrLoss": "12455", "sL_NStrLoss": "4999.2", "sL_ContLoss": "2039.1", "geom_point": "0101000020E610000006454EBA88FE5EC038EFC538FB674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.971500224999943, 48.812040071000105 ], [ -123.971575698999985, 48.810295473000039 ], [ -123.977010961999909, 48.810398545000119 ], [ -123.977003649999972, 48.810568045000089 ], [ -123.980196457999938, 48.810628463000043 ], [ -123.980188542999926, 48.810812202000136 ], [ -123.980857345999951, 48.810824846000024 ], [ -123.980854784999948, 48.810884309000116 ], [ -123.981501425999937, 48.810896529000047 ], [ -123.981492973999977, 48.811092862000066 ], [ -123.982125614999944, 48.811104814000075 ], [ -123.9819706299999, 48.814705852000046 ], [ -123.981885797999922, 48.814704249000037 ], [ -123.978337284999952, 48.81463715700005 ], [ -123.97763680199995, 48.814442910000032 ], [ -123.976831231999981, 48.814273295000064 ], [ -123.975152720999986, 48.813919861000038 ], [ -123.974510009999932, 48.81378449100005 ], [ -123.974368427999934, 48.813742616000049 ], [ -123.973348427999895, 48.81344080500007 ], [ -123.972155381999954, 48.812974899000032 ], [ -123.97147316, 48.812665638000112 ], [ -123.971500224999943, 48.812040071000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564167", "BldgCostT": "5216667", "sL_LossRatio": "0.820687434051335", "sL_AssetLoss": "47195.8", "sL_BldgLoss": "38733", "sL_StrLoss": "22380", "sL_NStrLoss": "16353", "sL_ContLoss": "8462.8", "geom_point": "0101000020E6100000E2AD147EC0015FC0796FB1474D694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.026874505999942, 48.82530979700006 ], [ -124.02562800199999, 48.824987988000089 ], [ -124.024388015999961, 48.825007898000123 ], [ -124.02296410799994, 48.825308387000071 ], [ -124.022230018999977, 48.825359704000164 ], [ -124.020956298999963, 48.825758505000039 ], [ -124.020479208999973, 48.825752798000096 ], [ -124.020043187999931, 48.82568580200013 ], [ -124.019753989999941, 48.82550780900003 ], [ -124.019314806999986, 48.824747289000044 ], [ -124.0190986699999, 48.824528464000075 ], [ -124.01932106299995, 48.824532586000018 ], [ -124.019384248999955, 48.823037173000095 ], [ -124.01949878799995, 48.823037220000067 ], [ -124.02060233, 48.823037785000082 ], [ -124.021855861999967, 48.823038393000047 ], [ -124.02187382399994, 48.823038401000069 ], [ -124.022292350999962, 48.823045424000043 ], [ -124.024411588999925, 48.823080906000044 ], [ -124.026595318999952, 48.823101396 ], [ -124.026936395999883, 48.82314281500004 ], [ -124.027248492999917, 48.823226109000103 ], [ -124.028467326999944, 48.823709104000102 ], [ -124.028612680999942, 48.823766692000028 ], [ -124.028635822999888, 48.82327923 ], [ -124.028856094999966, 48.818645193000066 ], [ -124.028856374999918, 48.818645191000073 ], [ -124.02885629099994, 48.818641095000046 ], [ -124.028944844999941, 48.816777835000039 ], [ -124.02881810199996, 48.816775246000077 ], [ -124.028817714999931, 48.81675635700001 ], [ -124.03126928499999, 48.816734448000027 ], [ -124.031285892000014, 48.817543949000026 ], [ -124.0308772899999, 48.817547603000079 ], [ -124.030882825, 48.817817437000137 ], [ -124.031291426999985, 48.817813782000094 ], [ -124.031308035000023, 48.818623282000011 ], [ -124.030899424999973, 48.818626937000083 ], [ -124.030921560999943, 48.819706270000061 ], [ -124.030104322999989, 48.819713576000019 ], [ -124.030109853999974, 48.819983409000024 ], [ -124.030927095999971, 48.819976103000045 ], [ -124.030932628999949, 48.820245936000084 ], [ -124.031341253999969, 48.820242281000056 ], [ -124.031368935999922, 48.821591446000106 ], [ -124.030960303, 48.821595103000043 ], [ -124.030971373999961, 48.822134768000076 ], [ -124.030562733999943, 48.822138422000087 ], [ -124.030568266999978, 48.822408256000116 ], [ -124.030976906999967, 48.822404601000052 ], [ -124.030987977999956, 48.822944268000072 ], [ -124.03139662399991, 48.822940612000068 ], [ -124.031402160999946, 48.823210445000015 ], [ -124.032219454999947, 48.823203129000028 ], [ -124.032213912, 48.822933296000073 ], [ -124.032789558999966, 48.822928140000087 ], [ -124.03285265299999, 48.821424622000038 ], [ -124.033818124999954, 48.821442392000073 ], [ -124.033804089999975, 48.820759985000123 ], [ -124.034066118999959, 48.820757635000106 ], [ -124.034089835999978, 48.820192101000067 ], [ -124.034751532999977, 48.82125527400008 ], [ -124.03430037599999, 48.821975666000121 ], [ -124.035113794999987, 48.82308199000002 ], [ -124.035401210999936, 48.823294002000075 ], [ -124.035006959, 48.823203848000013 ], [ -124.035001699999938, 48.823205419000026 ], [ -124.034842089999955, 48.823309186000131 ], [ -124.034722402999961, 48.82324401000001 ], [ -124.034556802999958, 48.82323638700008 ], [ -124.032378287999947, 48.823511696 ], [ -124.032065914000015, 48.823500505000034 ], [ -124.030888734999976, 48.823328364000119 ], [ -124.030416509999924, 48.823259307000122 ], [ -124.030215414999972, 48.823287104000059 ], [ -124.030107720999951, 48.823420300000102 ], [ -124.030117032999939, 48.82378764300006 ], [ -124.030124094999934, 48.824067501000052 ], [ -124.030073718999958, 48.824169616000049 ], [ -124.030048333999957, 48.824302081000035 ], [ -124.029789686, 48.824304391000055 ], [ -124.029784157999984, 48.824034559000062 ], [ -124.029490127999964, 48.824037185000059 ], [ -124.029409671999986, 48.825951017000058 ], [ -124.02855848899999, 48.825963268000073 ], [ -124.027936954999959, 48.825967845000072 ], [ -124.02780007199999, 48.827462585000049 ], [ -124.027799781999974, 48.827478889000048 ], [ -124.02748049299997, 48.826923494000035 ], [ -124.027491298999976, 48.826158692000099 ], [ -124.027633781999924, 48.825744202000102 ], [ -124.026874505999942, 48.82530979700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5594584", "BldgCostT": "3858334", "sL_LossRatio": "0.94908888725701", "sL_AssetLoss": "9532.3", "sL_BldgLoss": "9047", "sL_StrLoss": "7320", "sL_NStrLoss": "1727", "sL_ContLoss": "485.3", "geom_point": "0101000020E61000004EF3C8FEBD075FC08FD1F01C80674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.123353677999972, 48.809881692000026 ], [ -124.122895883999945, 48.809294387000094 ], [ -124.121797769999915, 48.80962248 ], [ -124.121760008999956, 48.809633781000066 ], [ -124.121497561999902, 48.809712169000058 ], [ -124.121355353999931, 48.809747846000072 ], [ -124.120509113999958, 48.809960090000068 ], [ -124.12009782, 48.810063249000095 ], [ -124.119656019999965, 48.810127553 ], [ -124.119059544000024, 48.81014857700012 ], [ -124.118252586999986, 48.810128966000029 ], [ -124.117716080999969, 48.810078963000052 ], [ -124.11705173099989, 48.809948844000068 ], [ -124.116622573999933, 48.80986479700006 ], [ -124.116341234999965, 48.809809689000069 ], [ -124.116277969999913, 48.80979351700006 ], [ -124.115814947999922, 48.809675168000048 ], [ -124.115701823999927, 48.809661252000083 ], [ -124.115395483999961, 48.809623625000086 ], [ -124.115214886999951, 48.809630145000085 ], [ -124.114993740999964, 48.809638149000094 ], [ -124.114594701999977, 48.809686976000059 ], [ -124.113202555999976, 48.809971656000066 ], [ -124.113155032999899, 48.809981394000033 ], [ -124.113089305999907, 48.809987885000091 ], [ -124.112919504999979, 48.810004668000062 ], [ -124.112997746999966, 48.808060364000013 ], [ -124.118433051999915, 48.808156242000102 ], [ -124.118425681999923, 48.808339899000046 ], [ -124.119386527999936, 48.808356818000057 ], [ -124.119372081000023, 48.808717056000063 ], [ -124.119750858999922, 48.808723724000124 ], [ -124.121714863999912, 48.808758276000098 ], [ -124.121761572999901, 48.807592138000125 ], [ -124.121841236999913, 48.805603076000089 ], [ -124.122598164999928, 48.8056163830001 ], [ -124.122610322999961, 48.805312694000101 ], [ -124.125826303999958, 48.805369171000073 ], [ -124.125819255999915, 48.805054367000089 ], [ -124.125975652999969, 48.805052840000066 ], [ -124.125903705999988, 48.805213664000107 ], [ -124.12582652399999, 48.805512312000083 ], [ -124.125829458999974, 48.805554175000104 ], [ -124.125830770999983, 48.805573283000044 ], [ -124.125842067999884, 48.805735135000106 ], [ -124.125919339999925, 48.805911247000054 ], [ -124.126089075999957, 48.806087228000166 ], [ -124.126220016999966, 48.806164285000115 ], [ -124.126458401999926, 48.806304527000073 ], [ -124.126910288999937, 48.806633174000041 ], [ -124.127204073999934, 48.806937469000111 ], [ -124.12730813099995, 48.807132829000061 ], [ -124.127084088999965, 48.807339358000043 ], [ -124.126495625999922, 48.807431428000079 ], [ -124.125452611999904, 48.807308390000081 ], [ -124.125314012999979, 48.807292001000071 ], [ -124.125029214999955, 48.807309443000051 ], [ -124.124842732999952, 48.807304692000066 ], [ -124.124546179999982, 48.807439989 ], [ -124.124480772999974, 48.807469221000069 ], [ -124.123814866999979, 48.807592014000086 ], [ -124.123730597999938, 48.807658448000055 ], [ -124.123641116999949, 48.807728996000108 ], [ -124.123749933999989, 48.807792971000012 ], [ -124.123783293999978, 48.80781259500003 ], [ -124.123910917, 48.808190503000105 ], [ -124.124096020999957, 48.80893529300009 ], [ -124.124502416999988, 48.810316329000059 ], [ -124.1245925959999, 48.81062275500009 ], [ -124.124697010999967, 48.810977498000021 ], [ -124.125327195999915, 48.811914705000106 ], [ -124.125149251999915, 48.812074844000115 ], [ -124.124716400999887, 48.812464392000081 ], [ -124.124161000999948, 48.813327593000089 ], [ -124.124039614999944, 48.813404796000093 ], [ -124.123885292999958, 48.813454315000094 ], [ -124.123468209999956, 48.813478484000036 ], [ -124.123462083999968, 48.811081905000087 ], [ -124.123409979999977, 48.810108001000039 ], [ -124.123353677999972, 48.809881692000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386251", "BldgCostT": "3025001", "sL_LossRatio": "0.84898716147103", "sL_AssetLoss": "20921.4", "sL_BldgLoss": "17762", "sL_StrLoss": "11370", "sL_NStrLoss": "6392", "sL_ContLoss": "3159.4", "geom_point": "0101000020E610000075722B29DCF85EC05384484400654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.887133199999965, 48.791787091000032 ], [ -123.886544016999935, 48.791708708000115 ], [ -123.88613849699999, 48.791595288000103 ], [ -123.885976969999916, 48.791490209000131 ], [ -123.884477075999939, 48.790514394000063 ], [ -123.884198300999927, 48.79039629500005 ], [ -123.884404685999939, 48.790190402000057 ], [ -123.884913715999971, 48.789857504000096 ], [ -123.885436992999928, 48.789515314000084 ], [ -123.885641776999961, 48.789345401000155 ], [ -123.885761809999906, 48.789185608000039 ], [ -123.885848058999926, 48.788831759000068 ], [ -123.885893584999948, 48.788644890000043 ], [ -123.885973399999955, 48.788471597000104 ], [ -123.88607376499999, 48.788373676000028 ], [ -123.88613269299999, 48.788316185000099 ], [ -123.887292701999982, 48.787655394000083 ], [ -123.887618482999969, 48.787469807000058 ], [ -123.88907330399999, 48.78694980200008 ], [ -123.889289490999957, 48.786827012000174 ], [ -123.889446078999967, 48.786669700000118 ], [ -123.889606677999964, 48.786375293000077 ], [ -123.889780660999975, 48.786056348000081 ], [ -123.889886092000026, 48.78586299600007 ], [ -123.890034598999961, 48.785431608000103 ], [ -123.890256101999924, 48.78522150600002 ], [ -123.891604463999911, 48.784166634 ], [ -123.891444635999932, 48.787722867000042 ], [ -123.889295483999959, 48.787680400000028 ], [ -123.88925549799994, 48.788569119000101 ], [ -123.887894514, 48.788542204000059 ], [ -123.887880151, 48.788861229000148 ], [ -123.890486105999969, 48.788912750000129 ], [ -123.890355362999941, 48.791820028000132 ], [ -123.890302423999955, 48.791808307000053 ], [ -123.889501996999968, 48.791771708000063 ], [ -123.888589181, 48.791815890000031 ], [ -123.887133199999965, 48.791787091000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.876594148537134", "sL_AssetLoss": "2666", "sL_BldgLoss": "2337", "sL_StrLoss": "1490", "sL_NStrLoss": "847", "sL_ContLoss": "329", "geom_point": "0101000020E61000007C40246C8DFA5EC0111379373B664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.914480717999979, 48.799250564000047 ], [ -123.914477950999938, 48.799098319000045 ], [ -123.913661018999946, 48.799104799000133 ], [ -123.913652709999894, 48.798647309000074 ], [ -123.91364631499999, 48.798295268000047 ], [ -123.91405477499994, 48.798292029000073 ], [ -123.914049871999936, 48.798022185 ], [ -123.915275240999932, 48.798012461000063 ], [ -123.915280150999976, 48.798282305000022 ], [ -123.916097069999978, 48.798275815000068 ], [ -123.916109735999953, 48.798971356000024 ], [ -123.916111811999954, 48.799085345000051 ], [ -123.915703346999919, 48.799088591000022 ], [ -123.915708257999981, 48.799358434000077 ], [ -123.915029045999972, 48.799363828000075 ], [ -123.914899995999974, 48.799332207000099 ], [ -123.914480717999979, 48.799250564000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16858667", "BldgCostT": "11626667", "sL_LossRatio": "0.877985381282064", "sL_AssetLoss": "64246.4", "sL_BldgLoss": "56407.4", "sL_StrLoss": "37200.4", "sL_NStrLoss": "19207", "sL_ContLoss": "7839", "geom_point": "0101000020E6100000C1DD612C76015FC06CA264AC156A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.022921133999944, 48.831670185000078 ], [ -124.022541739999951, 48.831584859000046 ], [ -124.022542687999945, 48.831562403000092 ], [ -124.022432861999931, 48.831560371000123 ], [ -124.021893067999954, 48.831438966000029 ], [ -124.020082614999978, 48.831031777000071 ], [ -124.020088157, 48.830900545000077 ], [ -124.019811498, 48.830895418000111 ], [ -124.019913630999952, 48.828478002000104 ], [ -124.01992758599998, 48.828147660000077 ], [ -124.019574604999931, 48.828141120000055 ], [ -124.019561786999972, 48.82844448100014 ], [ -124.018824420999948, 48.828430814000036 ], [ -124.014124338999949, 48.828343577000048 ], [ -124.014129821999944, 48.828214167000084 ], [ -124.010753751, 48.828151376000029 ], [ -124.010707573999966, 48.828134453000075 ], [ -124.01016828799996, 48.827936822000055 ], [ -124.010070678999966, 48.827901048000157 ], [ -124.010109051999947, 48.826997193000082 ], [ -124.01021347199999, 48.824537470000116 ], [ -124.011124511999924, 48.824554431000102 ], [ -124.011157983999951, 48.82376551100009 ], [ -124.011653606999971, 48.823869996000056 ], [ -124.013396103999952, 48.825077693000047 ], [ -124.015336499999933, 48.826041901000082 ], [ -124.016235708999957, 48.82604328700009 ], [ -124.016532402999943, 48.82589661300009 ], [ -124.017230401999953, 48.825440906000011 ], [ -124.017724495999943, 48.82490540800007 ], [ -124.018250680999955, 48.82469320200007 ], [ -124.018851804999926, 48.824724487000083 ], [ -124.019003593999955, 48.824831292000049 ], [ -124.019481687999985, 48.82559179600004 ], [ -124.019827698999919, 48.825822508000073 ], [ -124.020512894999982, 48.826023404000082 ], [ -124.020774792999987, 48.826172902000053 ], [ -124.021444086999935, 48.826248403000093 ], [ -124.022191699999894, 48.826188606000123 ], [ -124.022230592999932, 48.826061793000051 ], [ -124.021670606, 48.826030482000114 ], [ -124.02151909499996, 48.825942208000107 ], [ -124.022194584, 48.825603193000099 ], [ -124.023591909999965, 48.82536540500007 ], [ -124.025374694000035, 48.825295597000071 ], [ -124.026071983999913, 48.825398101000062 ], [ -124.026924688999941, 48.825785506000081 ], [ -124.027124585999971, 48.826152989 ], [ -124.026990015999928, 48.826937703000056 ], [ -124.027091120999941, 48.827215405000011 ], [ -124.027661793000021, 48.827785090000091 ], [ -124.027887396999944, 48.828206694000109 ], [ -124.028938185999948, 48.828907391000016 ], [ -124.02955168699999, 48.829639398000076 ], [ -124.030343993000017, 48.830334397000072 ], [ -124.03064081399998, 48.830952498000052 ], [ -124.031044993999927, 48.831318610000096 ], [ -124.031441923999978, 48.831466703000075 ], [ -124.031934005, 48.831526508000131 ], [ -124.033502002999981, 48.831512295000103 ], [ -124.034093891999959, 48.831156204000109 ], [ -124.034545499, 48.830576596000107 ], [ -124.035406205999891, 48.830046807000073 ], [ -124.035684219999936, 48.829629505000064 ], [ -124.036392341999914, 48.829274908000073 ], [ -124.036553070999958, 48.82966712900005 ], [ -124.036700518999965, 48.82993262900002 ], [ -124.036828091999951, 48.830084711000033 ], [ -124.036881901999948, 48.830136032000027 ], [ -124.036888690999916, 48.830339996000099 ], [ -124.035928895999987, 48.830907999000061 ], [ -124.035830473999937, 48.83177349500005 ], [ -124.035814767999952, 48.831911429000044 ], [ -124.035385410999965, 48.831896858000093 ], [ -124.034092489000017, 48.832255230000058 ], [ -124.03440409599996, 48.833746759000043 ], [ -124.034255819999942, 48.833748282000094 ], [ -124.034057280999932, 48.833750307000095 ], [ -124.033395199999973, 48.833738092000054 ], [ -124.032843026999927, 48.833700603000104 ], [ -124.032377681999961, 48.833668998000121 ], [ -124.031768603, 48.833593813000071 ], [ -124.031552154999957, 48.833557624000044 ], [ -124.031422979999931, 48.833536019000142 ], [ -124.030629615999928, 48.833403402000066 ], [ -124.027482042999935, 48.832695765000068 ], [ -124.024920046999938, 48.832119708000057 ], [ -124.022921133999944, 48.831670185000078 ] ], [ [ -124.023358280999958, 48.82735726300011 ], [ -124.023393899999988, 48.82651261900007 ], [ -124.022448420999979, 48.82649512700003 ], [ -124.022412785999933, 48.827339771 ], [ -124.023358280999958, 48.82735726300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "0.858448398447583", "sL_AssetLoss": "22081.7", "sL_BldgLoss": "18956", "sL_StrLoss": "12222", "sL_NStrLoss": "6734", "sL_ContLoss": "3125.7", "geom_point": "0101000020E61000006FE1378D86F95EC0897E026271654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.891751848999945, 48.792178155000094 ], [ -123.891837774999928, 48.790266245000112 ], [ -123.897270540999955, 48.790373377000087 ], [ -123.897260754999976, 48.790591685000059 ], [ -123.898939493999961, 48.790624734000076 ], [ -123.898897306999928, 48.791566613000143 ], [ -123.902027038999933, 48.791628155000083 ], [ -123.902001395999946, 48.792201495000086 ], [ -123.904761174999948, 48.792255686000054 ], [ -123.904600314, 48.795856719000014 ], [ -123.903484320999965, 48.795834814000088 ], [ -123.903018273999976, 48.795434088 ], [ -123.902369074999982, 48.795023097000076 ], [ -123.901827273999956, 48.794766490000086 ], [ -123.901161403999978, 48.794515482000122 ], [ -123.898738800999951, 48.793605503000045 ], [ -123.896343982999937, 48.792802396000134 ], [ -123.895515112999973, 48.792674308000151 ], [ -123.893158665999948, 48.792383884000074 ], [ -123.893051720999921, 48.792370697000109 ], [ -123.89214730899999, 48.792259211000079 ], [ -123.891751848999945, 48.792178155000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22453250", "BldgCostT": "15485000", "sL_LossRatio": "0.774814931796198", "sL_AssetLoss": "253285", "sL_BldgLoss": "196249", "sL_StrLoss": "96044", "sL_NStrLoss": "100205", "sL_ContLoss": "57036", "geom_point": "0101000020E610000017D800F829FD5EC0C1B288177A644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.956997900999951, 48.788496762000179 ], [ -123.957008735999977, 48.788247964000035 ], [ -123.95653140099995, 48.78823882800009 ], [ -123.952588037999973, 48.78816328100006 ], [ -123.95258900799999, 48.788141064000051 ], [ -123.948010273999969, 48.788053160000068 ], [ -123.948104569999913, 48.785897246000097 ], [ -123.948001601999977, 48.785895267000051 ], [ -123.948016643999907, 48.785551377000047 ], [ -123.947589683999951, 48.785543169000029 ], [ -123.947312997999973, 48.785537850000026 ], [ -123.947333519999972, 48.785068817000102 ], [ -123.946960412999928, 48.785061642000073 ], [ -123.946993578999951, 48.784303728000033 ], [ -123.944824280999967, 48.784261989000065 ], [ -123.944852795999935, 48.78361102900007 ], [ -123.944273499, 48.78359987500005 ], [ -123.944397715999941, 48.780764739000048 ], [ -123.944431274999928, 48.779998712000022 ], [ -123.946649905999919, 48.780041413000077 ], [ -123.94667189899998, 48.780062713000099 ], [ -123.948484204999914, 48.780874506000053 ], [ -123.948881514, 48.780917197000065 ], [ -123.948642306999915, 48.78056829800002 ], [ -123.948192511999963, 48.780499893000048 ], [ -123.947314013999971, 48.780119697000096 ], [ -123.947217789999982, 48.780052335000072 ], [ -123.949862969999984, 48.780103170000118 ], [ -123.94983452699995, 48.780754134000077 ], [ -123.950120248999937, 48.78075962100008 ], [ -123.950413787999963, 48.780765258000066 ], [ -123.950410630999926, 48.780837564000059 ], [ -123.950380680999942, 48.781523178 ], [ -123.952549856999923, 48.781564804000077 ], [ -123.95252939, 48.7820338410001 ], [ -123.952657977999976, 48.782036308000094 ], [ -123.952680864999977, 48.781511820000027 ], [ -123.956059930999942, 48.781576573000024 ], [ -123.956276692999921, 48.781862904000022 ], [ -123.956269482999957, 48.782250293000111 ], [ -123.956100384999957, 48.782656203000059 ], [ -123.955764609999946, 48.782802887000074 ], [ -123.95522689799995, 48.783230102000104 ], [ -123.955704605, 48.783252911000062 ], [ -123.955988198999989, 48.783160399000067 ], [ -123.956529101999976, 48.782257401000088 ], [ -123.956518710999944, 48.781672102000073 ], [ -123.956489278999939, 48.781584792000125 ], [ -123.958112753999941, 48.781615859000048 ], [ -123.958073081999927, 48.782527432000059 ], [ -123.958690786999966, 48.782539246000063 ], [ -123.958643440999964, 48.783627466000013 ], [ -123.959260110999978, 48.783639256000136 ], [ -123.959273101999955, 48.783340589000026 ], [ -123.964705216999931, 48.783444292000048 ], [ -123.964651163999946, 48.784690287000025 ], [ -123.968452754999973, 48.784762697000076 ], [ -123.968296806999959, 48.78836386800004 ], [ -123.963069590999936, 48.788264270000099 ], [ -123.963059008999963, 48.788507997000096 ], [ -123.962435145999962, 48.788496093000042 ], [ -123.962414709999962, 48.788966612000095 ], [ -123.957744883, 48.788877389000014 ], [ -123.956981960999912, 48.788862794000082 ], [ -123.956997900999951, 48.788496762000179 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30230083", "BldgCostT": "20848333", "sL_LossRatio": "0.871693957347995", "sL_AssetLoss": "117134", "sL_BldgLoss": "102105", "sL_StrLoss": "67861", "sL_NStrLoss": "34244", "sL_ContLoss": "15029", "geom_point": "0101000020E61000001EA1762AA6FC5EC0BC1D23D1B2664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.938068121999919, 48.803627256000063 ], [ -123.932150788999976, 48.802636492000026 ], [ -123.931224783999966, 48.802514998000078 ], [ -123.93119193299999, 48.802511694000074 ], [ -123.930828429999949, 48.80247519300007 ], [ -123.930902093000014, 48.800805588000046 ], [ -123.930915956999954, 48.800491339000089 ], [ -123.934506158999923, 48.800560836000038 ], [ -123.934537849999984, 48.799841228000112 ], [ -123.934611063999981, 48.799842643 ], [ -123.93470646599999, 48.797676226000121 ], [ -123.938330182999948, 48.797746246000074 ], [ -123.938374373999977, 48.796740913000093 ], [ -123.94380799399994, 48.796845676000046 ], [ -123.943793457999959, 48.797177237000078 ], [ -123.94540915499999, 48.797208335000079 ], [ -123.945326045999977, 48.799105496000053 ], [ -123.945852752999912, 48.799115629000028 ], [ -123.945830659999956, 48.799620047000069 ], [ -123.94878276099999, 48.799676789000046 ], [ -123.948831057999897, 48.798572476000082 ], [ -123.951807273999975, 48.798629600000083 ], [ -123.954264912999918, 48.798676707000027 ], [ -123.954120476999933, 48.801987873000094 ], [ -123.952993898999964, 48.801888706000113 ], [ -123.952831305999936, 48.801908592000068 ], [ -123.952738995999965, 48.802079500000069 ], [ -123.952348502999911, 48.802334494000029 ], [ -123.952462286999932, 48.802603698000112 ], [ -123.953053997999973, 48.802922705000107 ], [ -123.953561284999978, 48.803035202000075 ], [ -123.954323099999968, 48.80301099400004 ], [ -123.954866904999946, 48.802944093000079 ], [ -123.955363902, 48.802669184000116 ], [ -123.955649425999979, 48.802630704000137 ], [ -123.95580299199996, 48.802764608000068 ], [ -123.955722695999924, 48.802891404000071 ], [ -123.955892192999968, 48.803196101000047 ], [ -123.95600280599993, 48.803275905000106 ], [ -123.956699413999928, 48.803405496000039 ], [ -123.956847805999985, 48.803295797000075 ], [ -123.956680800999905, 48.803109285000062 ], [ -123.956666000999988, 48.803027787000055 ], [ -123.958607112999928, 48.803064906000024 ], [ -123.958590495999943, 48.803446623000113 ], [ -123.959478103999942, 48.80346358500006 ], [ -123.959474003999944, 48.80355780100011 ], [ -123.961683492999953, 48.80359999100007 ], [ -123.964664922999958, 48.803656848000102 ], [ -123.964508621999954, 48.807257905000121 ], [ -123.963826533999949, 48.80724490500009 ], [ -123.963771712999957, 48.808507370000036 ], [ -123.963750588999972, 48.808993818000111 ], [ -123.963336482999978, 48.808985923000115 ], [ -123.962420293999941, 48.808597296000087 ], [ -123.961196941999944, 48.808161301000062 ], [ -123.960451811999988, 48.807895696000074 ], [ -123.958593795999917, 48.807342103000074 ], [ -123.956572991999977, 48.806801029000042 ], [ -123.956401488999916, 48.806755100000061 ], [ -123.954832699999912, 48.8064322130001 ], [ -123.95394248599996, 48.806283341000054 ], [ -123.952612123999984, 48.806060840000065 ], [ -123.951328498999956, 48.80584615000005 ], [ -123.949470771000037, 48.805535400000039 ], [ -123.941094730999964, 48.804133856000128 ], [ -123.938068121999919, 48.803627256000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.942408269833605", "sL_AssetLoss": "4887.16", "sL_BldgLoss": "4605.7", "sL_StrLoss": "3681", "sL_NStrLoss": "924.7", "sL_ContLoss": "281.46", "geom_point": "0101000020E61000001C9C2554B2055FC02D5991A802674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.088163805999969, 48.805772277000081 ], [ -124.08780086799996, 48.805739296000105 ], [ -124.087327016999922, 48.805756037000023 ], [ -124.08676849899993, 48.805836600000106 ], [ -124.086704673999975, 48.805845812000037 ], [ -124.086198565999936, 48.8059597170001 ], [ -124.086120392999987, 48.805977315000099 ], [ -124.086223662999956, 48.803446788000059 ], [ -124.091658377999948, 48.803544029000065 ], [ -124.091534458999888, 48.806589169000077 ], [ -124.091113953999937, 48.806473200000077 ], [ -124.091035259999956, 48.806451486000071 ], [ -124.089326204999949, 48.805980122000101 ], [ -124.088578497999919, 48.805809982 ], [ -124.088163805999969, 48.805772277000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.878417401771547", "sL_AssetLoss": "16448.9", "sL_BldgLoss": "14449", "sL_StrLoss": "9820", "sL_NStrLoss": "4629", "sL_ContLoss": "1999.9", "geom_point": "0101000020E610000083B8BC8369005FC08D4D231478694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.008957680999956, 48.819929626000047 ], [ -124.009724565999988, 48.819943913000017 ], [ -124.009294791999977, 48.820400595000109 ], [ -124.009085798999976, 48.820752408000089 ], [ -124.008963990999945, 48.821483006000115 ], [ -124.008999777, 48.822598096000036 ], [ -124.009327611999979, 48.823360088000094 ], [ -124.009495288999943, 48.823543517000083 ], [ -124.009074340999959, 48.823535675000151 ], [ -124.008992501999955, 48.825462452000103 ], [ -124.008898051999921, 48.825460692000064 ], [ -124.00885225699993, 48.826538751000079 ], [ -124.008313839999985, 48.826528718000041 ], [ -124.006219998999967, 48.82648967300004 ], [ -124.00577732, 48.826327404000033 ], [ -124.004528888999957, 48.825869782000062 ], [ -124.003455978999909, 48.825476467000087 ], [ -124.003513103000017, 48.824135329000129 ], [ -124.003568429999959, 48.822836301000024 ], [ -124.003662874999961, 48.822838065000035 ], [ -124.003708785999976, 48.821760002000104 ], [ -124.008875843999931, 48.821856413000013 ], [ -124.008957680999956, 48.819929626000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.880061459838167", "sL_AssetLoss": "11975.3", "sL_BldgLoss": "10539", "sL_StrLoss": "7080", "sL_NStrLoss": "3459", "sL_ContLoss": "1436.3", "geom_point": "0101000020E61000009B557E9DC4FC5EC0FE7F3906A6654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.94988252899995, 48.792334435000086 ], [ -123.952295711000019, 48.792380740000077 ], [ -123.952138497999954, 48.795981844000082 ], [ -123.950922022999947, 48.795958508000069 ], [ -123.946704958999959, 48.795877505000107 ], [ -123.946862588999963, 48.792276409000067 ], [ -123.94988252899995, 48.792334435000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.898418095697864", "sL_AssetLoss": "14292.9", "sL_BldgLoss": "12841", "sL_StrLoss": "9220", "sL_NStrLoss": "3621", "sL_ContLoss": "1451.9", "geom_point": "0101000020E610000094D0E9BBD3005FC024D813B850694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.013761889999941, 48.824985099000131 ], [ -124.013111294999945, 48.824469504000035 ], [ -124.011854602999932, 48.823670594000113 ], [ -124.011416900999947, 48.823556593000092 ], [ -124.01089879099996, 48.823562312000099 ], [ -124.010881399999931, 48.823569329000108 ], [ -124.00969144599999, 48.823547171000051 ], [ -124.009408812999951, 48.822620903000086 ], [ -124.009392994999985, 48.821155391000033 ], [ -124.009523107999925, 48.820847800000088 ], [ -124.010327563999937, 48.819955144000104 ], [ -124.014154658999971, 48.820026343000023 ], [ -124.014144387000016, 48.820059709000105 ], [ -124.013882993999957, 48.820353082000061 ], [ -124.01278959699999, 48.821215688000073 ], [ -124.012758713999958, 48.821367406000043 ], [ -124.012868977, 48.821491994000034 ], [ -124.014022968999925, 48.822144735000116 ], [ -124.014298012, 48.82230030400008 ], [ -124.01429389899999, 48.822397387000123 ], [ -124.0144756239999, 48.822400763000118 ], [ -124.016103709999953, 48.823321598000064 ], [ -124.016405485999911, 48.823423599000144 ], [ -124.016614010999959, 48.823414787000097 ], [ -124.01655603799999, 48.824784901000122 ], [ -124.01707887, 48.824794603000079 ], [ -124.01709170399999, 48.824491240000057 ], [ -124.017987159999961, 48.824507853000064 ], [ -124.017771206999925, 48.824553605000119 ], [ -124.017357215999965, 48.824935298000078 ], [ -124.016857599000033, 48.825200204000126 ], [ -124.016365579999942, 48.82573569800013 ], [ -124.01567349799997, 48.825885199000048 ], [ -124.015070997999942, 48.825702891000056 ], [ -124.014393588999937, 48.825249996000103 ], [ -124.013761889999941, 48.824985099000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.839776075782319", "sL_AssetLoss": "16594.9", "sL_BldgLoss": "13936", "sL_StrLoss": "8460", "sL_NStrLoss": "5476", "sL_ContLoss": "2658.9", "geom_point": "0101000020E61000005C9C295B41035FC0089B532CAB684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.057265045999927, 48.819130944000101 ], [ -124.056716037999976, 48.818813227000099 ], [ -124.056456527999941, 48.818551207000056 ], [ -124.053612815999955, 48.818583089000093 ], [ -124.05039071499999, 48.818628772000082 ], [ -124.05037580199999, 48.818724574000093 ], [ -124.045122846999945, 48.818808020000148 ], [ -124.045175386999944, 48.817548015000064 ], [ -124.048038040999941, 48.817600353000053 ], [ -124.048082829999913, 48.81652458300011 ], [ -124.048993171999925, 48.816541211000143 ], [ -124.04899619599999, 48.816468506000078 ], [ -124.049681743999884, 48.816481022000104 ], [ -124.049684471999981, 48.816415423000052 ], [ -124.055120613999961, 48.816514520000069 ], [ -124.055053243999936, 48.818138503000107 ], [ -124.055410210999966, 48.818135234000074 ], [ -124.055415750999956, 48.818399044000067 ], [ -124.055448139999939, 48.818404262000072 ], [ -124.055449779999933, 48.818404755000103 ], [ -124.056641691999971, 48.818393834000062 ], [ -124.056647363999943, 48.818663666000099 ], [ -124.057055969999965, 48.818659919000069 ], [ -124.057060775999972, 48.818888424000058 ], [ -124.057146838999955, 48.818914262000057 ], [ -124.057171754999942, 48.818928740000096 ], [ -124.057470254999913, 48.818926003000058 ], [ -124.057464577999923, 48.818656172000019 ], [ -124.057873183999959, 48.818652423000053 ], [ -124.057867504999976, 48.818382591000081 ], [ -124.057990651999958, 48.818381461000108 ], [ -124.05791435099999, 48.819406404000091 ], [ -124.057760555999948, 48.819363830000107 ], [ -124.057265045999927, 48.819130944000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9983249", "BldgCostT": "6884999", "sL_LossRatio": "0.882795781949745", "sL_AssetLoss": "36263.2", "sL_BldgLoss": "32013", "sL_StrLoss": "21426", "sL_NStrLoss": "10587", "sL_ContLoss": "4250.2", "geom_point": "0101000020E61000002853BB15B8FF5EC07BBCEBC701694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.990705743999939, 48.820720587000061 ], [ -123.989317701999965, 48.820067500000015 ], [ -123.988333676999972, 48.819550425000074 ], [ -123.988123332999962, 48.819439874000132 ], [ -123.988224167999974, 48.817090140000055 ], [ -123.988253095999966, 48.816416003000043 ], [ -123.993689105999977, 48.816518226000056 ], [ -123.993637467999946, 48.817724856000034 ], [ -123.994721240999979, 48.817745203000108 ], [ -123.994712290000024, 48.817954463 ], [ -123.99527853399999, 48.817965089000097 ], [ -123.995271623999912, 48.818126663000093 ], [ -123.995799923999968, 48.81813657500004 ], [ -123.995788866999973, 48.81839522900011 ], [ -123.996563411999887, 48.818409756000101 ], [ -123.996546943999959, 48.818795123000015 ], [ -123.997161313999968, 48.818806641000045 ], [ -123.997154715999926, 48.818961088000101 ], [ -123.997615805999914, 48.818969730000092 ], [ -123.997608170999982, 48.819148494000061 ], [ -123.998057799999984, 48.81915692000014 ], [ -123.998046491999929, 48.819421745000071 ], [ -123.998365004999954, 48.819427712000021 ], [ -123.998355624999974, 48.819647394000079 ], [ -123.998745803999967, 48.819654702000079 ], [ -123.998730618999943, 48.820010434000018 ], [ -123.999459600999955, 48.820024086000025 ], [ -123.999451147999977, 48.820222157000046 ], [ -124.000546372999978, 48.820242657000115 ], [ -124.000539643999929, 48.820400431000017 ], [ -124.001341652999898, 48.820415437000044 ], [ -124.00133357, 48.820605045000043 ], [ -124.002160834999984, 48.820620517000108 ], [ -124.00215432099999, 48.820773374000083 ], [ -124.003321202, 48.820795187000051 ], [ -124.003185717999912, 48.823975859000029 ], [ -124.00316781099994, 48.824396199000077 ], [ -124.000366530999926, 48.824343814000102 ], [ -124.000002438999957, 48.824210322000042 ], [ -123.999192869999959, 48.823913477000104 ], [ -123.99731550599995, 48.823225098000094 ], [ -123.995042021999978, 48.822375608000051 ], [ -123.991063091999962, 48.820888716000091 ], [ -123.990705743999939, 48.820720587000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25652916", "BldgCostT": "17691666", "sL_LossRatio": "0.857150208408377", "sL_AssetLoss": "116598", "sL_BldgLoss": "99942", "sL_StrLoss": "63817", "sL_NStrLoss": "36125", "sL_ContLoss": "16656", "geom_point": "0101000020E6100000D2D3CB1874F25EC00F8FAB2E33624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.783088386999978, 48.766899611000078 ], [ -123.782927693999909, 48.762506881000014 ], [ -123.78292868799997, 48.762380589000045 ], [ -123.784257752999935, 48.761588882000133 ], [ -123.786553875, 48.761636540000104 ], [ -123.786591019999932, 48.761646206000073 ], [ -123.787447207999918, 48.762700486000043 ], [ -123.787796287999939, 48.76313030300004 ], [ -123.788413913999932, 48.763396592000106 ], [ -123.788909895999936, 48.763716995000017 ], [ -123.789305503999969, 48.763849499000081 ], [ -123.791999000999965, 48.763793997000064 ], [ -123.79409775799995, 48.763859063000069 ], [ -123.794095887999973, 48.763898847000071 ], [ -123.794794473999957, 48.763913288000076 ], [ -123.79474637, 48.764937146000115 ], [ -123.79477753599997, 48.76493779000004 ], [ -123.794739872999969, 48.765739408000101 ], [ -123.795469057999966, 48.765754475000037 ], [ -123.795299904999936, 48.769355493000063 ], [ -123.793899807999949, 48.769326558000039 ], [ -123.79384928599994, 48.770401295000106 ], [ -123.793704600999959, 48.770437782000094 ], [ -123.79327399499999, 48.770442497000062 ], [ -123.792990794999923, 48.770445590000122 ], [ -123.792801118999961, 48.770521895000122 ], [ -123.792589696, 48.770654491000045 ], [ -123.792203821999919, 48.770999704000076 ], [ -123.792186218999973, 48.771006653000029 ], [ -123.791753959999966, 48.770997710000103 ], [ -123.791752658999954, 48.771025376000075 ], [ -123.788989473999948, 48.77096816400006 ], [ -123.788960581999973, 48.771581399000091 ], [ -123.784611804999912, 48.772262584000032 ], [ -123.782877553999967, 48.7726084130001 ], [ -123.782728869999957, 48.772638057000066 ], [ -123.782959789999921, 48.770067402000109 ], [ -123.782907129999955, 48.768830650000019 ], [ -123.783088386999978, 48.766899611000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7706750", "BldgCostT": "5315000", "sL_LossRatio": "0.819770018713681", "sL_AssetLoss": "48734.4", "sL_BldgLoss": "39951", "sL_StrLoss": "22961", "sL_NStrLoss": "16990", "sL_ContLoss": "8783.4", "geom_point": "0101000020E6100000C76FC09D3AF45EC0FF76E12084614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.814065712999977, 48.764148620000135 ], [ -123.814099336999931, 48.763426655000082 ], [ -123.812864672999964, 48.763401354000052 ], [ -123.812236392, 48.763388474000131 ], [ -123.812404225999927, 48.759787394000043 ], [ -123.813932209999976, 48.759818713000122 ], [ -123.813946078999948, 48.759520931000125 ], [ -123.819375105999981, 48.759632030000049 ], [ -123.819327732999938, 48.76065178300005 ], [ -123.819662555999955, 48.760658626000037 ], [ -123.819624767999954, 48.761472146000131 ], [ -123.819495274999966, 48.764259712000054 ], [ -123.819478028, 48.764259359000064 ], [ -123.818781265000027, 48.764245118000119 ], [ -123.815441683999964, 48.764176799000076 ], [ -123.814467484999966, 48.764156850000106 ], [ -123.814065712999977, 48.764148620000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56570999", "BldgCostT": "38804999", "sL_LossRatio": "0.790506468197149", "sL_AssetLoss": "449143.7", "sL_BldgLoss": "355051", "sL_StrLoss": "189712", "sL_NStrLoss": "165339", "sL_ContLoss": "94092.7", "geom_point": "0101000020E610000000263EB12DF15EC029B2310ADD604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.767637348999955, 48.762944475000097 ], [ -123.767727125999969, 48.759752164000105 ], [ -123.75811342899999, 48.759695042000047 ], [ -123.757844217999931, 48.759616503000082 ], [ -123.756823359999899, 48.759150306000016 ], [ -123.756787181, 48.759133793000039 ], [ -123.756166411, 48.758479093000069 ], [ -123.755684995999957, 48.758090489000082 ], [ -123.754949283999906, 48.757708212000075 ], [ -123.754712097999956, 48.757497797000056 ], [ -123.754580399999924, 48.75704259600009 ], [ -123.754343692999953, 48.756764600000103 ], [ -123.754158350999944, 48.756619872000044 ], [ -123.753358986999913, 48.755995599000101 ], [ -123.753124505999963, 48.755812509000059 ], [ -123.751358997999901, 48.754951688000119 ], [ -123.752744503999907, 48.754698811000054 ], [ -123.753122968999918, 48.754665523 ], [ -123.754013054, 48.754587250000085 ], [ -123.754039796999962, 48.754584905000065 ], [ -123.754397912999977, 48.754553395000038 ], [ -123.754682316999961, 48.754469478000011 ], [ -123.755139212999936, 48.754334702000044 ], [ -123.755614895999912, 48.754101411000143 ], [ -123.756809084999986, 48.753416389000051 ], [ -123.758423705999917, 48.7527455970001 ], [ -123.759109908999932, 48.752369795000021 ], [ -123.759391135999948, 48.752198170000064 ], [ -123.75989936199997, 48.751887978000106 ], [ -123.760100494999961, 48.751765197000111 ], [ -123.761077595999936, 48.751889638000179 ], [ -123.761365825, 48.751926335000064 ], [ -123.761626196999927, 48.751959490000047 ], [ -123.764154519999934, 48.751979311000085 ], [ -123.76449409599995, 48.751566795000016 ], [ -123.764738021999946, 48.750973890000104 ], [ -123.764728019999922, 48.750692406000027 ], [ -123.764698025999948, 48.750186162000084 ], [ -123.764688123999974, 48.750150994000087 ], [ -123.764393614999975, 48.749107852000058 ], [ -123.765756550999924, 48.749843756000068 ], [ -123.766603433999975, 48.7501561710001 ], [ -123.76775239499996, 48.750580035000098 ], [ -123.77010188699991, 48.751336775000034 ], [ -123.77232889, 48.751908137000036 ], [ -123.775249671999987, 48.752849689000122 ], [ -123.77647919199994, 48.753196641000031 ], [ -123.773838447999978, 48.753141566000082 ], [ -123.773782812999954, 48.754314869000069 ], [ -123.772801698999956, 48.75429438900008 ], [ -123.772797076999936, 48.754391792000021 ], [ -123.771518728999965, 48.75436509500004 ], [ -123.771513530999982, 48.754474624000046 ], [ -123.767204398999979, 48.754384520000038 ], [ -123.767188990999941, 48.754708497000053 ], [ -123.768434205999981, 48.754734553000063 ], [ -123.768394210999958, 48.755575928 ], [ -123.768543724, 48.755579055000076 ], [ -123.76855290599994, 48.755385901000125 ], [ -123.773981345999957, 48.755499309000086 ], [ -123.773851363999981, 48.758240405000066 ], [ -123.773983728999937, 48.758243167000067 ], [ -123.77400525399996, 48.757789242000044 ], [ -123.774389688000014, 48.757797262000075 ], [ -123.774434489999976, 48.756852250000044 ], [ -123.774579973999963, 48.756855285000121 ], [ -123.774608816999958, 48.756246853000036 ], [ -123.775562080999947, 48.756266733000075 ], [ -123.775562879999981, 48.756249876000012 ], [ -123.77614669899998, 48.75626204800006 ], [ -123.776174087, 48.755683889000075 ], [ -123.781602580999945, 48.755796910000036 ], [ -123.78159337299995, 48.755991765000019 ], [ -123.782638054, 48.756013483000032 ], [ -123.782512433999912, 48.758672916000108 ], [ -123.783674576999957, 48.758697063000092 ], [ -123.783542281999985, 48.761498925000062 ], [ -123.78322947599996, 48.761641996000016 ], [ -123.782339505999943, 48.762214497000116 ], [ -123.782164167999966, 48.762270252000064 ], [ -123.778987401999956, 48.762204171000107 ], [ -123.778980678999957, 48.762346270000094 ], [ -123.777508290999947, 48.762139012000127 ], [ -123.776441186999989, 48.761785802000055 ], [ -123.775877623, 48.761421204000023 ], [ -123.775089711999939, 48.76058950600008 ], [ -123.77484319399997, 48.760457013000057 ], [ -123.77388631399999, 48.760229208000084 ], [ -123.772786283999949, 48.760290400000066 ], [ -123.771948204999958, 48.760737590000062 ], [ -123.771061307999958, 48.76137278900012 ], [ -123.7691462989999, 48.762519295000132 ], [ -123.768726989999948, 48.762701596000099 ], [ -123.767637348999955, 48.762944475000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.810635683163892", "sL_AssetLoss": "17902", "sL_BldgLoss": "14512", "sL_StrLoss": "8180", "sL_NStrLoss": "6332", "sL_ContLoss": "3390", "geom_point": "0101000020E6100000DBA038788DF55EC0D3B207BD2B614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.838161243999977, 48.763575753000055 ], [ -123.838283539999978, 48.760920317000085 ], [ -123.838014096999984, 48.760914857000103 ], [ -123.838033283, 48.760498270000042 ], [ -123.835262323, 48.760442085000058 ], [ -123.835299320999937, 48.759639782000086 ], [ -123.835407397999944, 48.757296012000054 ], [ -123.836116502999957, 48.75731099300004 ], [ -123.83694938, 48.757476199000052 ], [ -123.838013236999956, 48.758121317000096 ], [ -123.838374506999969, 48.760417438000111 ], [ -123.838248529999973, 48.763577522000034 ], [ -123.838161243999977, 48.763575753000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46516083", "BldgCostT": "31608333", "sL_LossRatio": "0.847374395589085", "sL_AssetLoss": "218911.5", "sL_BldgLoss": "185500", "sL_StrLoss": "114409", "sL_NStrLoss": "71091", "sL_ContLoss": "33411.5", "geom_point": "0101000020E6100000F5AC397ADBF45EC00024CB300B634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.817725691999968, 48.777530597000109 ], [ -123.81578849499999, 48.776871907000043 ], [ -123.815479490999948, 48.776880056000039 ], [ -123.815385699, 48.776882533000034 ], [ -123.815057792999966, 48.776891187000082 ], [ -123.814739693999954, 48.776949496000093 ], [ -123.813461289999978, 48.777319003000066 ], [ -123.81318688199994, 48.777374593000033 ], [ -123.812815927999978, 48.7773742050001 ], [ -123.811624116999951, 48.777313710000051 ], [ -123.811585391999969, 48.777308025000067 ], [ -123.811617010999925, 48.77663006100007 ], [ -123.81114136199993, 48.776620308000076 ], [ -123.811309324999939, 48.773019307000055 ], [ -123.815838082999974, 48.773112085000037 ], [ -123.816179674999901, 48.77311907600005 ], [ -123.8161888449999, 48.772922007000084 ], [ -123.816203655999914, 48.772603726000085 ], [ -123.817332991999962, 48.772626829000053 ], [ -123.817380965999931, 48.771595352000055 ], [ -123.821735608999944, 48.771684322000041 ], [ -123.821767224999974, 48.771003159000053 ], [ -123.822311586999945, 48.771014268000087 ], [ -123.822407915999989, 48.768938268000035 ], [ -123.827838051999919, 48.769048936000026 ], [ -123.827797742999905, 48.769919809000044 ], [ -123.828152492999919, 48.769927029000094 ], [ -123.828106536999911, 48.770920063000048 ], [ -123.828635134999942, 48.770930820000046 ], [ -123.82862143499996, 48.771226910000074 ], [ -123.82960881799994, 48.771246995000084 ], [ -123.829549348999961, 48.772532794000035 ], [ -123.83130843299989, 48.772568554000024 ], [ -123.831299754999975, 48.772756338000093 ], [ -123.831307659999965, 48.772756499000089 ], [ -123.831335682999963, 48.772150098000097 ], [ -123.834378311999913, 48.772211882000136 ], [ -123.834418206999928, 48.771347372000136 ], [ -123.83513441599996, 48.771361902000081 ], [ -123.835163210999951, 48.770737688000082 ], [ -123.83560563099995, 48.7707466620001 ], [ -123.835630996999953, 48.77019664900012 ], [ -123.83531104299999, 48.77019015900003 ], [ -123.835477130999962, 48.766589083000028 ], [ -123.8377260099999, 48.766634676000059 ], [ -123.837757751999959, 48.765945683000034 ], [ -123.837770891999938, 48.765660438000076 ], [ -123.838165167999961, 48.765668426000069 ], [ -123.838146872999957, 48.766127273000052 ], [ -123.838084330999934, 48.76769575800008 ], [ -123.838011106999971, 48.769765872000065 ], [ -123.838007331999918, 48.770015497000031 ], [ -123.837698046999961, 48.773732070000101 ], [ -123.837643403999962, 48.773831396000062 ], [ -123.837706106, 48.775123990000147 ], [ -123.837693488999918, 48.775841393000071 ], [ -123.837665873999953, 48.777411997000058 ], [ -123.83654570299997, 48.777391093000077 ], [ -123.83546449499994, 48.777376409000055 ], [ -123.83265348799992, 48.777358998000089 ], [ -123.832358668999973, 48.777325901000111 ], [ -123.830704183999984, 48.776866995000098 ], [ -123.829917471, 48.776834796000038 ], [ -123.829636635999961, 48.776848402000091 ], [ -123.828082722999952, 48.776923642000021 ], [ -123.826413041999928, 48.776881530000075 ], [ -123.825905765999934, 48.776934334000053 ], [ -123.825016006999988, 48.777026980000116 ], [ -123.824658652, 48.777113408000147 ], [ -123.823960379999946, 48.777311802000021 ], [ -123.822865364999984, 48.777623035000026 ], [ -123.822674945999935, 48.777677156000045 ], [ -123.822063997999948, 48.777850792000059 ], [ -123.821737105999929, 48.777924296000023 ], [ -123.821311396999988, 48.777930903000019 ], [ -123.820600970999976, 48.777851593000051 ], [ -123.817725691999968, 48.777530597000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.801941747572816", "sL_AssetLoss": "5150", "sL_BldgLoss": "4130", "sL_StrLoss": "2130", "sL_NStrLoss": "2000", "sL_ContLoss": "1020", "geom_point": "0101000020E6100000AA4AF831A8F25EC0DD8452E6AC614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.790727299999972, 48.7634620870001 ], [ -123.789556591999954, 48.763343898000052 ], [ -123.788886616999932, 48.763177298000045 ], [ -123.788318077999975, 48.762786498000033 ], [ -123.793798588999934, 48.762748875000035 ], [ -123.793800923999939, 48.762897036000055 ], [ -123.794142638999929, 48.762904101000053 ], [ -123.794115445000031, 48.763482729000039 ], [ -123.792429414999987, 48.763413696000029 ], [ -123.790727299999972, 48.7634620870001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "0.845755776636714", "sL_AssetLoss": "24928", "sL_BldgLoss": "21083", "sL_StrLoss": "13600", "sL_NStrLoss": "7483", "sL_ContLoss": "3845", "geom_point": "0101000020E6100000E4DD70A371F35EC0EEFB81BCE8614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.801180485999964, 48.763058626000038 ], [ -123.806609891999983, 48.763170375000072 ], [ -123.806593632999963, 48.763518285000039 ], [ -123.806462052999962, 48.766333843000091 ], [ -123.806441601999921, 48.766771426000034 ], [ -123.806276561999951, 48.766768033000133 ], [ -123.801011779999982, 48.766659670000145 ], [ -123.801169785999917, 48.763287015000074 ], [ -123.801180485999964, 48.763058626000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10597083", "BldgCostT": "7308333", "sL_LossRatio": "0.843441307016716", "sL_AssetLoss": "52945", "sL_BldgLoss": "44656", "sL_StrLoss": "28070", "sL_NStrLoss": "16586", "sL_ContLoss": "8289", "geom_point": "0101000020E61000007905BBC4C5F35EC0F937DC05D2624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.808298900999887, 48.776316507000026 ], [ -123.807959620999924, 48.776305897000036 ], [ -123.807845856999961, 48.776315205000088 ], [ -123.807388, 48.776352694000089 ], [ -123.807163494999941, 48.776415693000061 ], [ -123.806867819999979, 48.776549298000127 ], [ -123.807056078999935, 48.776242298000035 ], [ -123.80714931299994, 48.775933295000129 ], [ -123.806922381999939, 48.77562041700002 ], [ -123.806560807, 48.775121890000044 ], [ -123.806348810999907, 48.775003994000059 ], [ -123.806256807999929, 48.774878688000051 ], [ -123.80620581, 48.774696447000025 ], [ -123.806160205999916, 48.774533392000116 ], [ -123.806189101999962, 48.774350094000063 ], [ -123.806289275000012, 48.774185499000033 ], [ -123.806684103999942, 48.773792606000058 ], [ -123.80668564599992, 48.773783260000137 ], [ -123.806702907999963, 48.773680414000125 ], [ -123.806867693999948, 48.773293608000074 ], [ -123.806857182999934, 48.77316991600005 ], [ -123.806782906999956, 48.773073788000033 ], [ -123.806198810999931, 48.77263281200009 ], [ -123.805735005999935, 48.772146600000099 ], [ -123.805567516999957, 48.77183409500006 ], [ -123.8055926, 48.771501192000194 ], [ -123.805817592999929, 48.771193105000059 ], [ -123.806029697999989, 48.771075798000069 ], [ -123.806594893999986, 48.770901788000096 ], [ -123.806769902999989, 48.770793696000069 ], [ -123.806954515999934, 48.770621703000124 ], [ -123.80701527199993, 48.770513992000076 ], [ -123.806992696999927, 48.770415297000106 ], [ -123.806832684999932, 48.77017680900012 ], [ -123.806814520999978, 48.770154145000106 ], [ -123.80651745499992, 48.769784161000096 ], [ -123.805988994999908, 48.769125898000084 ], [ -123.805876916999935, 48.768907294000066 ], [ -123.805888342999978, 48.768530586000082 ], [ -123.810289878999981, 48.768620994000116 ], [ -123.810283639999952, 48.768754743000017 ], [ -123.812584703999917, 48.768801934000059 ], [ -123.812465765999946, 48.771353654000066 ], [ -123.81241685399999, 48.772402962000115 ], [ -123.810004484999979, 48.772353487000046 ], [ -123.809884384999947, 48.774926848000078 ], [ -123.810467248999956, 48.774938808000051 ], [ -123.81037116899995, 48.776997866000059 ], [ -123.810345285999929, 48.776988964000026 ], [ -123.810161400999974, 48.776925674000154 ], [ -123.809459101999963, 48.77668397200005 ], [ -123.809383816999983, 48.776658055000098 ], [ -123.808689522999913, 48.776419096000026 ], [ -123.808298900999887, 48.776316507000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65302083", "BldgCostT": "44508333", "sL_LossRatio": "0.791551352653225", "sL_AssetLoss": "522739.3", "sL_BldgLoss": "413775", "sL_StrLoss": "232925", "sL_NStrLoss": "180850", "sL_ContLoss": "108964.3", "geom_point": "0101000020E61000004B227F59EFEC5EC03BE8AFE3015F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.70363018399999, 48.76229066200009 ], [ -123.701977190999969, 48.76108623500005 ], [ -123.701171158999969, 48.760566021000052 ], [ -123.700325333999928, 48.760164791000108 ], [ -123.699010775999923, 48.759737232000084 ], [ -123.698691721, 48.759733054000016 ], [ -123.698659551999981, 48.75969357499999 ], [ -123.698463227000019, 48.759452222000114 ], [ -123.698438009999947, 48.759421200000148 ], [ -123.69827620599996, 48.759280528000041 ], [ -123.698170747999981, 48.759188879000085 ], [ -123.698033994999918, 48.759069985000039 ], [ -123.697974446999964, 48.759030518000053 ], [ -123.698425678, 48.759022245000068 ], [ -123.698733073999946, 48.758243292000046 ], [ -123.698731510999934, 48.758125692000107 ], [ -123.698753716999988, 48.751759409000044 ], [ -123.700161690999948, 48.751750863000034 ], [ -123.700164559999934, 48.751957199000081 ], [ -123.702140602999961, 48.751999784000127 ], [ -123.701982983999969, 48.755219901000025 ], [ -123.702275430999975, 48.75522620100007 ], [ -123.702385857999943, 48.752969964000052 ], [ -123.702544511999918, 48.752973381000167 ], [ -123.70261222499991, 48.751589666000086 ], [ -123.702744928999948, 48.751592523000035 ], [ -123.70279585400003, 48.750551772000051 ], [ -123.702804148999931, 48.750382224000113 ], [ -123.700843832999936, 48.750339988000107 ], [ -123.701020158999981, 48.746739011000074 ], [ -123.70414333399998, 48.746806285000048 ], [ -123.704237489999969, 48.744880564000063 ], [ -123.700986535999974, 48.744810535000056 ], [ -123.700900494999985, 48.746567786000071 ], [ -123.696817279999934, 48.746479689000125 ], [ -123.697545098999953, 48.745246013000042 ], [ -123.697658976999961, 48.745000601000065 ], [ -123.697742172999952, 48.744106598 ], [ -123.697867213999984, 48.743579409000091 ], [ -123.698054599, 48.743218504000033 ], [ -123.698234496999987, 48.742956497000073 ], [ -123.698459557999982, 48.742728091000068 ], [ -123.698780486999922, 48.742402401000056 ], [ -123.698986087999913, 48.742141799000109 ], [ -123.699058821999941, 48.741850504000119 ], [ -123.699041896999915, 48.741363485000136 ], [ -123.699011603999921, 48.740596801000095 ], [ -123.698949285999959, 48.74034309500005 ], [ -123.698891737999958, 48.740239639000087 ], [ -123.69880832599992, 48.74008960400004 ], [ -123.698529586999939, 48.739817703000064 ], [ -123.69795655399993, 48.739492584000104 ], [ -123.697756698999967, 48.739379201000055 ], [ -123.69744818799991, 48.739050786000135 ], [ -123.697277691999886, 48.738761498000102 ], [ -123.697230900999898, 48.738553200000091 ], [ -123.697263024999927, 48.738378667000084 ], [ -123.697286016999939, 48.738253540000059 ], [ -123.69729762899999, 48.738190393000068 ], [ -123.697360500999963, 48.73784849500003 ], [ -123.697360478999883, 48.737723562000085 ], [ -123.697360467999928, 48.737651601000017 ], [ -123.697360393999972, 48.737073518000081 ], [ -123.697307204999959, 48.736913698000116 ], [ -123.697133193999889, 48.736723395000055 ], [ -123.696926316999949, 48.736594594000103 ], [ -123.694836344999928, 48.735502500000038 ], [ -123.69429802799999, 48.735221180000053 ], [ -123.694148612999982, 48.735143089000118 ], [ -123.693771606999945, 48.734953167000121 ], [ -123.690797411999952, 48.733454694000045 ], [ -123.68869567199998, 48.732313289000018 ], [ -123.687086500999953, 48.731439302000076 ], [ -123.686801578999948, 48.73127247400005 ], [ -123.685780355, 48.73067449600012 ], [ -123.685643407, 48.730594267000107 ], [ -123.685306671999967, 48.730397094000118 ], [ -123.68511378, 48.730284152000102 ], [ -123.684797467999928, 48.730098899000097 ], [ -123.68472420599997, 48.730055982000088 ], [ -123.685044320999936, 48.72989620400012 ], [ -123.68514950499997, 48.729772380000014 ], [ -123.68515798699994, 48.728306190000069 ], [ -123.685202289999921, 48.727792605000047 ], [ -123.685201079999956, 48.726902721000087 ], [ -123.68519981099999, 48.725997301000056 ], [ -123.687201552999923, 48.726013697000042 ], [ -123.687752494999984, 48.726005117000042 ], [ -123.688459701999975, 48.725994098000058 ], [ -123.688798388999928, 48.725988834000127 ], [ -123.689070937999972, 48.725984588000188 ], [ -123.68919272, 48.725982691000127 ], [ -123.691966473999969, 48.725939422000081 ], [ -123.692508274999923, 48.725942602000032 ], [ -123.694708156999965, 48.725955500000019 ], [ -123.694714144999963, 48.725746730000019 ], [ -123.694727677999964, 48.725270473000094 ], [ -123.694731256999958, 48.725144595000081 ], [ -123.694736309999954, 48.724967492000118 ], [ -123.694715135999971, 48.724805084000103 ], [ -123.694702132999936, 48.72470541900006 ], [ -123.694663428999959, 48.724408449000101 ], [ -123.694626064999937, 48.724121818000057 ], [ -123.694617895999968, 48.724059190000048 ], [ -123.694618523999949, 48.723714908000041 ], [ -123.694618628999962, 48.723642766000111 ], [ -123.694619175999918, 48.723354824000054 ], [ -123.694619577999902, 48.723129939000046 ], [ -123.69462054499999, 48.722590226000065 ], [ -123.694621005999949, 48.7223370070001 ], [ -123.694269066999965, 48.720821717000135 ], [ -123.696051470999976, 48.720860257000034 ], [ -123.695974389999918, 48.722432030000107 ], [ -123.700671, 48.722533440000035 ], [ -123.700633538, 48.723298844000055 ], [ -123.703770435, 48.723366462000065 ], [ -123.703630604999915, 48.726227080000093 ], [ -123.703594406999983, 48.726967579000068 ], [ -123.700163993999951, 48.726893631000031 ], [ -123.70008625199992, 48.728481460000083 ], [ -123.698984801999927, 48.728457693000067 ], [ -123.69896952299996, 48.728769587000073 ], [ -123.694408187999954, 48.72867104199999 ], [ -123.694372677999965, 48.729394498000083 ], [ -123.692152863, 48.729346470000117 ], [ -123.692045038999979, 48.731540956000089 ], [ -123.692120554999974, 48.731542590000153 ], [ -123.69211999499997, 48.73155399800001 ], [ -123.694275477999909, 48.731600634000074 ], [ -123.694228136999968, 48.732565013000077 ], [ -123.69448792899999, 48.732570631000037 ], [ -123.694479853999937, 48.73273512100009 ], [ -123.694794426999962, 48.732741924000088 ], [ -123.694760799999969, 48.733427058000053 ], [ -123.694950107999929, 48.733431150000058 ], [ -123.695064069999972, 48.731108918000039 ], [ -123.699099761999946, 48.731196087000029 ], [ -123.69918089399998, 48.729539814000063 ], [ -123.704606179, 48.729656757000093 ], [ -123.704539402999941, 48.731023186000101 ], [ -123.705976912, 48.731054125000064 ], [ -123.70580102400001, 48.734655201000059 ], [ -123.70463508, 48.734630109000108 ], [ -123.704625685999957, 48.734822330000107 ], [ -123.703281316999892, 48.734793381000017 ], [ -123.70324607, 48.735514162000086 ], [ -123.703031410999969, 48.735509538000031 ], [ -123.702926576999985, 48.737652963000109 ], [ -123.701921731999903, 48.737631312000076 ], [ -123.701887272999954, 48.738335487000022 ], [ -123.700503744999963, 48.738305661000034 ], [ -123.700463207999974, 48.739133512000052 ], [ -123.701008877999982, 48.739145278000123 ], [ -123.700964406999944, 48.740053675000077 ], [ -123.701210324999977, 48.740058976000064 ], [ -123.701199385999971, 48.740282462000032 ], [ -123.702511691, 48.740310743000087 ], [ -123.702466344999948, 48.741237617000095 ], [ -123.704935361999986, 48.741290781000082 ], [ -123.704760903999926, 48.744860117000023 ], [ -123.706845394999931, 48.74490495600007 ], [ -123.706912406999948, 48.743532747000117 ], [ -123.712339326999981, 48.743649294000107 ], [ -123.71227521899999, 48.744965162000014 ], [ -123.714792717999941, 48.745019132 ], [ -123.714749331999926, 48.745910579000082 ], [ -123.717466573999943, 48.745968765000043 ], [ -123.717326640999929, 48.748847198000114 ], [ -123.718324615999933, 48.748868551000029 ], [ -123.718149606999958, 48.752469544000057 ], [ -123.712721653999935, 48.752353294000073 ], [ -123.712845669999965, 48.749807643000061 ], [ -123.711561714999945, 48.749780104000067 ], [ -123.711565690999947, 48.750061712000033 ], [ -123.710341424999982, 48.750069265000079 ], [ -123.710345230000016, 48.750339125000039 ], [ -123.709120957, 48.750346666000077 ], [ -123.709124755999966, 48.750616525000034 ], [ -123.708308568999954, 48.750621545000051 ], [ -123.70831236199993, 48.75089140300004 ], [ -123.708212664999962, 48.750892017000069 ], [ -123.70808686499997, 48.753468988000058 ], [ -123.707975397999959, 48.753466594000081 ], [ -123.707884809999968, 48.755321994000077 ], [ -123.708142779999918, 48.755327536000095 ], [ -123.708059615999986, 48.757030946000086 ], [ -123.710133909999954, 48.757075489000073 ], [ -123.710042346999941, 48.758952446000102 ], [ -123.710244816999989, 48.758956792000092 ], [ -123.710141851999978, 48.761067519000079 ], [ -123.710904953999943, 48.761083894000123 ], [ -123.710901809999896, 48.760861117000097 ], [ -123.712534511999976, 48.760851033000073 ], [ -123.712538302999945, 48.761118924000158 ], [ -123.712892839999967, 48.761126525000037 ], [ -123.71330908799996, 48.762214714000088 ], [ -123.712137296999927, 48.762340009000042 ], [ -123.711545690999955, 48.762406691000152 ], [ -123.711000706, 48.762437134000052 ], [ -123.71098709099999, 48.762437904000073 ], [ -123.710878409999935, 48.762439208000075 ], [ -123.709913318999909, 48.762475308000035 ], [ -123.708837805999934, 48.762490009000047 ], [ -123.708605409999933, 48.762492255000069 ], [ -123.708375587999953, 48.762494509000064 ], [ -123.707033204999973, 48.762320878000068 ], [ -123.70676361699999, 48.762285983000041 ], [ -123.706354012999924, 48.762297895000124 ], [ -123.705690704999938, 48.762414286000052 ], [ -123.705120395999984, 48.762462396000096 ], [ -123.704233597, 48.762398265000115 ], [ -123.70363018399999, 48.76229066200009 ] ], [ [ -123.704595021999936, 48.759217055000143 ], [ -123.704612657999974, 48.758856359000042 ], [ -123.704596244999934, 48.758856006000059 ], [ -123.704595029999922, 48.758880858000047 ], [ -123.701612169, 48.758816639 ], [ -123.70159572399993, 48.759152483000051 ], [ -123.704595021999936, 48.759217055000143 ] ], [ [ -123.707889102999943, 48.749814473000079 ], [ -123.707885311999945, 48.749544613000047 ], [ -123.708701479999945, 48.749539596000091 ], [ -123.708697685999979, 48.749269738000073 ], [ -123.709512061999945, 48.74926472700011 ], [ -123.709528891999952, 48.748919749000017 ], [ -123.708284271999972, 48.74889301400006 ], [ -123.708285810999939, 48.749002387000068 ], [ -123.707469649999922, 48.749007400000039 ], [ -123.70747343799998, 48.749277260000049 ], [ -123.707065355999987, 48.7492797640001 ], [ -123.707069142999927, 48.749549624000075 ], [ -123.706661056999934, 48.749552128000147 ], [ -123.706664841999981, 48.749821987000082 ], [ -123.707889102999943, 48.749814473000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.84401781119241", "sL_AssetLoss": "22345.5", "sL_BldgLoss": "18860", "sL_StrLoss": "11190", "sL_NStrLoss": "7670", "sL_ContLoss": "3485.5", "geom_point": "0101000020E6100000D813D9DE99F85EC01F5BBF2EFD614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.88644720399999, 48.765814910000074 ], [ -123.885499288999981, 48.765371994000105 ], [ -123.883057492999981, 48.76509431100007 ], [ -123.878338904, 48.765265208000059 ], [ -123.876725108999906, 48.765492991000023 ], [ -123.875750477999958, 48.76579779300009 ], [ -123.875157311999942, 48.766108305000031 ], [ -123.874580387999941, 48.766679397000132 ], [ -123.87424985299999, 48.76697749000008 ], [ -123.874358807999954, 48.764571736000057 ], [ -123.875695404999973, 48.764598354000022 ], [ -123.875713674999986, 48.764194668000158 ], [ -123.881143387999884, 48.764302625000028 ], [ -123.881140297999963, 48.76437106900007 ], [ -123.882023459999942, 48.764388602000054 ], [ -123.88202182299996, 48.764424874000014 ], [ -123.882698057999917, 48.764438295000076 ], [ -123.882709399999925, 48.764186841000104 ], [ -123.88813912699996, 48.76429444100004 ], [ -123.8881250149999, 48.764608059000103 ], [ -123.889295202999932, 48.76463121200009 ], [ -123.889260694999905, 48.765398589000071 ], [ -123.890438707999948, 48.765421884000062 ], [ -123.890434658999979, 48.765511997000019 ], [ -123.89119698599994, 48.765527065000057 ], [ -123.891195435, 48.765561589000107 ], [ -123.892205152999964, 48.765581538000106 ], [ -123.892043418999904, 48.769182707 ], [ -123.890561518999945, 48.769153426000052 ], [ -123.890560305999927, 48.769084885000055 ], [ -123.890744609999928, 48.768839891000027 ], [ -123.89086989099998, 48.768173401000041 ], [ -123.890730695999963, 48.767203511000112 ], [ -123.890491790999988, 48.766836087000058 ], [ -123.889997081999965, 48.766542702000031 ], [ -123.889151489999946, 48.766414498000081 ], [ -123.88764769, 48.766002904000089 ], [ -123.886925495999947, 48.765954509000046 ], [ -123.88644720399999, 48.765814910000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.795373665480427", "sL_AssetLoss": "5620", "sL_BldgLoss": "4470", "sL_StrLoss": "2260", "sL_NStrLoss": "2210", "sL_ContLoss": "1150", "geom_point": "0101000020E610000006781C50C0F55EC01DFE1EE5F5604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.837463213999953, 48.757229800000069 ], [ -123.837051087999939, 48.75706169900009 ], [ -123.836208997999975, 48.756996731000058 ], [ -123.836027644999945, 48.756853110000073 ], [ -123.840857147999941, 48.756950959000051 ], [ -123.840842015999925, 48.757279938000103 ], [ -123.844032820999928, 48.757344466000092 ], [ -123.84354818499996, 48.757481897000062 ], [ -123.842325996999961, 48.757644189000068 ], [ -123.841474497999911, 48.757983200000098 ], [ -123.840256684999986, 48.758316396000062 ], [ -123.839916386999946, 48.758344896000033 ], [ -123.839152391999917, 48.758206807000057 ], [ -123.83860437599999, 48.757977495000084 ], [ -123.837463213999953, 48.757229800000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.844620856988057", "sL_AssetLoss": "16980.4", "sL_BldgLoss": "14342", "sL_StrLoss": "8530", "sL_NStrLoss": "5812", "sL_ContLoss": "2638.4", "geom_point": "0101000020E6100000176FF98275EE5EC01BA1FA62CA5D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.723296764999986, 48.730880412000033 ], [ -123.728722263999927, 48.730996128000108 ], [ -123.728548118999967, 48.734597242000092 ], [ -123.723122205, 48.734481518000102 ], [ -123.723296764999986, 48.730880412000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.873237835379718", "sL_AssetLoss": "8796", "sL_BldgLoss": "7681", "sL_StrLoss": "5170", "sL_NStrLoss": "2511", "sL_ContLoss": "1115", "geom_point": "0101000020E610000045BE64462CF75EC03FEAC8F4F8614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.862255905999973, 48.766115407000022 ], [ -123.861063981999976, 48.765683896000063 ], [ -123.859989415999948, 48.764909099000072 ], [ -123.859807002999958, 48.764621386000087 ], [ -123.859534306999933, 48.763796792000129 ], [ -123.859509289999949, 48.763121710000121 ], [ -123.859599510999928, 48.762806995000069 ], [ -123.859924499999948, 48.762641792000039 ], [ -123.860724110999982, 48.76254629500005 ], [ -123.861007213999955, 48.762336995000112 ], [ -123.861258404999944, 48.761815541000082 ], [ -123.861239295999937, 48.762234904000074 ], [ -123.861445396999954, 48.762239035000093 ], [ -123.861409701999946, 48.763022514000056 ], [ -123.861694934999903, 48.763028230000089 ], [ -123.861594682999964, 48.765228808000074 ], [ -123.86223924599993, 48.765241723000067 ], [ -123.862220698999977, 48.765648951000045 ], [ -123.86329643299996, 48.765670496000048 ], [ -123.863288096999952, 48.76585360000017 ], [ -123.864600096999979, 48.765879863000038 ], [ -123.864436244999922, 48.769480988000048 ], [ -123.863779855999951, 48.769467850000112 ], [ -123.863654595999918, 48.769181703000079 ], [ -123.863742018999915, 48.768677603000107 ], [ -123.86366870199997, 48.768407003000071 ], [ -123.863323708999971, 48.768059492000077 ], [ -123.863303296999931, 48.7677262 ], [ -123.863434388999977, 48.767411398000064 ], [ -123.863187291, 48.766450102000093 ], [ -123.863047711999954, 48.766307707000031 ], [ -123.862255905999973, 48.766115407000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.85142491612381", "sL_AssetLoss": "15320.2", "sL_BldgLoss": "13044", "sL_StrLoss": "8110", "sL_NStrLoss": "4934", "sL_ContLoss": "2276.2", "geom_point": "0101000020E6100000181E7F9250F25EC0A88AA9F4935F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.783539001999941, 48.744845837000106 ], [ -123.788966261999946, 48.744958486000108 ], [ -123.788796683999919, 48.748559616000058 ], [ -123.783369009999944, 48.748446959000034 ], [ -123.783539001999941, 48.744845837000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.872053252914567", "sL_AssetLoss": "13595.5", "sL_BldgLoss": "11856", "sL_StrLoss": "7780", "sL_NStrLoss": "4076", "sL_ContLoss": "1739.5", "geom_point": "0101000020E61000003C5FDCDB67F15EC02680ACF1635E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.76933638300001, 48.735567759000077 ], [ -123.774762535999955, 48.735681132000074 ], [ -123.774591902999973, 48.739282293000059 ], [ -123.76916533399999, 48.739168912000068 ], [ -123.76933638300001, 48.735567759000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.849431276609265", "sL_AssetLoss": "6294.8", "sL_BldgLoss": "5347", "sL_StrLoss": "3600", "sL_NStrLoss": "1747", "sL_ContLoss": "947.8", "geom_point": "0101000020E610000077EA1DB0A3F65EC02928A0E469614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.853720880999973, 48.761923994000085 ], [ -123.853024600999959, 48.761829987000112 ], [ -123.852017496999949, 48.761845607000076 ], [ -123.850609601999963, 48.761406989000079 ], [ -123.849263197999932, 48.760723394000124 ], [ -123.849172069999923, 48.760692906000024 ], [ -123.853464260999914, 48.760779344000056 ], [ -123.853484469999941, 48.760337408000034 ], [ -123.858913683999972, 48.760446496000078 ], [ -123.858905756999903, 48.760620277000108 ], [ -123.858188698999982, 48.760657812000026 ], [ -123.85752300599998, 48.760753310000048 ], [ -123.85688719299999, 48.760937015000145 ], [ -123.855867801999963, 48.761035284000037 ], [ -123.855570802999949, 48.761109287000139 ], [ -123.85480400299997, 48.761717505000036 ], [ -123.854588502999945, 48.761800095000069 ], [ -123.853720880999973, 48.761923994000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.826466916354557", "sL_AssetLoss": "8811", "sL_BldgLoss": "7282", "sL_StrLoss": "4220", "sL_NStrLoss": "3062", "sL_ContLoss": "1529", "geom_point": "0101000020E61000004B7795BD7EEC5EC0842371240A604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.693789281999955, 48.750834579000077 ], [ -123.69431310399996, 48.749218097000082 ], [ -123.694572663999978, 48.748787496000084 ], [ -123.694586613999959, 48.748764402000063 ], [ -123.694870390999967, 48.748546116000043 ], [ -123.695259188999955, 48.748355761000035 ], [ -123.69561024299999, 48.748183909000055 ], [ -123.695690089999943, 48.748144796000091 ], [ -123.695758021999964, 48.748086483000044 ], [ -123.695651144999928, 48.750264162000079 ], [ -123.697056489999966, 48.750294513 ], [ -123.697003833999929, 48.751367999000045 ], [ -123.696998459, 48.751477582000064 ], [ -123.693540814999949, 48.751527403000132 ], [ -123.69359738799993, 48.751426704000011 ], [ -123.693789281999955, 48.750834579000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.785714285714286", "sL_AssetLoss": "6440", "sL_BldgLoss": "5060", "sL_StrLoss": "2450", "sL_NStrLoss": "2610", "sL_ContLoss": "1380", "geom_point": "0101000020E6100000A17176A584ED5EC07849F7CE43604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.710379467999957, 48.752767860000105 ], [ -123.71037566399994, 48.752498 ], [ -123.709967555999981, 48.752500516000055 ], [ -123.709952346999913, 48.751421078000149 ], [ -123.71240094399991, 48.751405966000114 ], [ -123.712420019999925, 48.752755262000036 ], [ -123.710379467999957, 48.752767860000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8489750", "BldgCostT": "5855000", "sL_LossRatio": "0.801135430958922", "sL_AssetLoss": "64574.6", "sL_BldgLoss": "51733", "sL_StrLoss": "29438", "sL_NStrLoss": "22295", "sL_ContLoss": "12841.6", "geom_point": "0101000020E6100000F7223DB924EF5EC0C7CDBA90585F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.738770803999941, 48.747582291000079 ], [ -123.738772285999943, 48.747551519000133 ], [ -123.735066673999981, 48.747472895000101 ], [ -123.735076262999954, 48.747274124000064 ], [ -123.733722037999911, 48.74724535900004 ], [ -123.733722638999922, 48.747232902000043 ], [ -123.732853806999969, 48.747214437000075 ], [ -123.732962928999939, 48.744954372000109 ], [ -123.729281213999954, 48.744876050000066 ], [ -123.729455339999973, 48.741274995000069 ], [ -123.734882054999915, 48.741390396000021 ], [ -123.734773034999947, 48.743650475000045 ], [ -123.738454663999931, 48.743728608000026 ], [ -123.73845406199996, 48.743741066000027 ], [ -123.739322831999957, 48.743759485000048 ], [ -123.739313263999975, 48.743958256000063 ], [ -123.740667395999978, 48.743986951000068 ], [ -123.740665915999955, 48.744017724000066 ], [ -123.74437126499997, 48.744096154000069 ], [ -123.744198269999984, 48.747697217000088 ], [ -123.738770803999941, 48.747582291000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9412917", "BldgCostT": "6491667", "sL_LossRatio": "0.816344438269619", "sL_AssetLoss": "68378", "sL_BldgLoss": "55820", "sL_StrLoss": "32570", "sL_NStrLoss": "23250", "sL_ContLoss": "12558", "geom_point": "0101000020E610000057110B086FEE5EC06FB8974D63604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.72474093299999, 48.758076089000085 ], [ -123.724737051999952, 48.757806231000089 ], [ -123.724328901, 48.757808797000081 ], [ -123.724325021999945, 48.757538939000014 ], [ -123.721876132999952, 48.75755430500007 ], [ -123.721872267000023, 48.757284447000117 ], [ -123.720239679999935, 48.75729466100006 ], [ -123.720228106999969, 48.756485086000104 ], [ -123.720636246999959, 48.756482534000021 ], [ -123.720632387999899, 48.756212676000118 ], [ -123.721040524999964, 48.756210123000059 ], [ -123.72103666299995, 48.755940265000028 ], [ -123.722339816999948, 48.755932105000028 ], [ -123.722478756999962, 48.753068259000074 ], [ -123.723022586999917, 48.753079869000018 ], [ -123.723066183999919, 48.752180971000094 ], [ -123.72483073099994, 48.752218621000033 ], [ -123.724833267999912, 48.752166271000149 ], [ -123.72205321399997, 48.752106939000107 ], [ -123.722227921999973, 48.748505939000054 ], [ -123.727655453999887, 48.748621706000094 ], [ -123.727600103999933, 48.749765350000111 ], [ -123.730380025999949, 48.749824537000066 ], [ -123.730205938999958, 48.753425544000109 ], [ -123.728441341999911, 48.753387983000053 ], [ -123.728333697999915, 48.755612585000051 ], [ -123.728319902999914, 48.755897684000068 ], [ -123.727776037999917, 48.755886101000108 ], [ -123.727732527999962, 48.756784995000061 ], [ -123.726762955, 48.756764340000096 ], [ -123.726770014999886, 48.757253663000057 ], [ -123.726361867999941, 48.757256236000039 ], [ -123.726373542, 48.758065811000108 ], [ -123.725507515999936, 48.758071266000108 ], [ -123.72474093299999, 48.758076089000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73241167", "BldgCostT": "48276667", "sL_LossRatio": "0.772137065837599", "sL_AssetLoss": "548729", "sL_BldgLoss": "423694", "sL_StrLoss": "229950", "sL_NStrLoss": "193744", "sL_ContLoss": "125035", "geom_point": "0101000020E6100000B4BF588447F05EC0CF5304D512604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.727803051999956, 48.759214513000096 ], [ -123.72784989099999, 48.758246871000104 ], [ -123.727962880999954, 48.755912403000139 ], [ -123.72875458299994, 48.755929260000038 ], [ -123.730697218999964, 48.755970602000019 ], [ -123.730725, 48.755395869000026 ], [ -123.731262767999951, 48.755407307000048 ], [ -123.731267383999935, 48.755311782000064 ], [ -123.731784294999954, 48.755322774000021 ], [ -123.731792972, 48.755143194000055 ], [ -123.732247121999961, 48.755152849000112 ], [ -123.732249354999979, 48.755106605000016 ], [ -123.732806073999967, 48.755118438000054 ], [ -123.73280953699999, 48.755046719000113 ], [ -123.73355290899994, 48.75506251500007 ], [ -123.733559013999951, 48.754936037000093 ], [ -123.735005512999962, 48.754966759000105 ], [ -123.735033185999953, 48.754393171000103 ], [ -123.737397566999931, 48.754443345000027 ], [ -123.73740489799999, 48.754291229000103 ], [ -123.737647351999925, 48.754296371000102 ], [ -123.737706152999948, 48.753076134000075 ], [ -123.742349752999971, 48.753174512000058 ], [ -123.742354669999926, 48.753072249000169 ], [ -123.745773173999964, 48.753144542000051 ], [ -123.745823387999948, 48.752098731000082 ], [ -123.749623522999983, 48.752178967000141 ], [ -123.749659162999947, 48.751435397000087 ], [ -123.748466737999962, 48.751410235000051 ], [ -123.74855807299997, 48.749505584000133 ], [ -123.746830091999954, 48.749469097000031 ], [ -123.746849879999942, 48.749056752000065 ], [ -123.745847479999924, 48.749035573000064 ], [ -123.746020351999903, 48.745434516000032 ], [ -123.749485075999971, 48.745507679000056 ], [ -123.749566604000037, 48.743806598000127 ], [ -123.750919187999955, 48.743835130000065 ], [ -123.750998538999966, 48.742178327000019 ], [ -123.75283235299996, 48.742216984000081 ], [ -123.752861394999982, 48.741610072000121 ], [ -123.752898522999899, 48.741610855000154 ], [ -123.752945247999918, 48.740634370000116 ], [ -123.758371946999915, 48.740748576000094 ], [ -123.758332011999954, 48.741585166000057 ], [ -123.762213628000026, 48.741666685000105 ], [ -123.76227379099997, 48.740404101000081 ], [ -123.767700486, 48.740517832000137 ], [ -123.767626615999973, 48.742071800000048 ], [ -123.768554247999958, 48.742091214000069 ], [ -123.768552109999973, 48.742136213000038 ], [ -123.770290288999917, 48.742172568000051 ], [ -123.770119288999979, 48.745773684000049 ], [ -123.76961031899998, 48.745763041000046 ], [ -123.76958939299999, 48.746203596000086 ], [ -123.768742900999968, 48.74618589100011 ], [ -123.768727476, 48.746510517000054 ], [ -123.765258540999952, 48.746437891000056 ], [ -123.765218034999975, 48.747288975000117 ], [ -123.765395966999932, 48.747287794000023 ], [ -123.765412360999989, 48.748367218000091 ], [ -123.765166636999965, 48.748368851000087 ], [ -123.765136472999941, 48.749002597000135 ], [ -123.764970786999982, 48.748999126000086 ], [ -123.764954318999955, 48.749345073000022 ], [ -123.766576216999937, 48.749379045000083 ], [ -123.766645698000033, 48.747918331000037 ], [ -123.772073271999929, 48.748031839000141 ], [ -123.772044301999927, 48.748642340000089 ], [ -123.772757317999975, 48.74865723 ], [ -123.772814378999925, 48.747454282000021 ], [ -123.778241913999949, 48.747567476000015 ], [ -123.778144471999966, 48.749626704000043 ], [ -123.779136205999919, 48.749647357000143 ], [ -123.778965856999918, 48.753248443000111 ], [ -123.77647919199994, 48.753196641000031 ], [ -123.775249671999987, 48.752849689000122 ], [ -123.77232889, 48.751908137000036 ], [ -123.77010188699991, 48.751336775000034 ], [ -123.76775239499996, 48.750580035000098 ], [ -123.766603433999975, 48.7501561710001 ], [ -123.765756550999924, 48.749843756000068 ], [ -123.764393614999975, 48.749107852000058 ], [ -123.764688123999974, 48.750150994000087 ], [ -123.764698025999948, 48.750186162000084 ], [ -123.764728019999922, 48.750692406000027 ], [ -123.764738021999946, 48.750973890000104 ], [ -123.76449409599995, 48.751566795000016 ], [ -123.764154519999934, 48.751979311000085 ], [ -123.761626196999927, 48.751959490000047 ], [ -123.761365825, 48.751926335000064 ], [ -123.761077595999936, 48.751889638000179 ], [ -123.760100494999961, 48.751765197000111 ], [ -123.75989936199997, 48.751887978000106 ], [ -123.759391135999948, 48.752198170000064 ], [ -123.759109908999932, 48.752369795000021 ], [ -123.758423705999917, 48.7527455970001 ], [ -123.756809084999986, 48.753416389000051 ], [ -123.755614895999912, 48.754101411000143 ], [ -123.755139212999936, 48.754334702000044 ], [ -123.754682316999961, 48.754469478000011 ], [ -123.754397912999977, 48.754553395000038 ], [ -123.754039796999962, 48.754584905000065 ], [ -123.754013054, 48.754587250000085 ], [ -123.753122968999918, 48.754665523 ], [ -123.752744503999907, 48.754698811000054 ], [ -123.751358997999901, 48.754951688000119 ], [ -123.753124505999963, 48.755812509000059 ], [ -123.753358986999913, 48.755995599000101 ], [ -123.754158350999944, 48.756619872000044 ], [ -123.754343692999953, 48.756764600000103 ], [ -123.754580399999924, 48.75704259600009 ], [ -123.754712097999956, 48.757497797000056 ], [ -123.754949283999906, 48.757708212000075 ], [ -123.755684995999957, 48.758090489000082 ], [ -123.756166411, 48.758479093000069 ], [ -123.756787181, 48.759133793000039 ], [ -123.756823359999899, 48.759150306000016 ], [ -123.757844217999931, 48.759616503000082 ], [ -123.75811342899999, 48.759695042000047 ], [ -123.751169405999946, 48.759590876000054 ], [ -123.751181129999964, 48.759346164000057 ], [ -123.750308232999942, 48.759327761000044 ], [ -123.750392112999947, 48.757577491000092 ], [ -123.74829083399996, 48.75753316200008 ], [ -123.748194111999979, 48.759549497000087 ], [ -123.745926063999917, 48.759522451000123 ], [ -123.741694508999956, 48.759500492000093 ], [ -123.733914146, 48.759313337000023 ], [ -123.727803051999956, 48.759214513000096 ] ], [ [ -123.758171872999952, 48.750538202000058 ], [ -123.758200847999916, 48.749931331000056 ], [ -123.757659024999967, 48.749919943000087 ], [ -123.757630041999946, 48.750526813000057 ], [ -123.758171872999952, 48.750538202000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2941083", "BldgCostT": "2028333", "sL_LossRatio": "0.791395603220686", "sL_AssetLoss": "24317.8", "sL_BldgLoss": "19245", "sL_StrLoss": "8476", "sL_NStrLoss": "10769", "sL_ContLoss": "5072.8", "geom_point": "0101000020E6100000BEFFA03F3EEE5EC090931505725F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.720674202999973, 48.748106114000038 ], [ -123.720739830999946, 48.746754163000055 ], [ -123.718822415999981, 48.746713171000117 ], [ -123.718997351999974, 48.743112143000118 ], [ -123.724424253999985, 48.743228075000061 ], [ -123.724358734999953, 48.744580037000091 ], [ -123.726276067999905, 48.744620930000046 ], [ -123.72610168599999, 48.748221961000098 ], [ -123.720674202999973, 48.748106114000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8062001", "BldgCostT": "5560001", "sL_LossRatio": "0.828316662380792", "sL_AssetLoss": "45498.3", "sL_BldgLoss": "37687", "sL_StrLoss": "22126", "sL_NStrLoss": "15561", "sL_ContLoss": "7811.3", "geom_point": "0101000020E6100000BF4393BCA1EF5EC01CCAD44D775E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.743171979999943, 48.739290377000053 ], [ -123.743272248999958, 48.73720378900002 ], [ -123.739644059999947, 48.737126944000039 ], [ -123.739817364, 48.733525826000069 ], [ -123.745243209999941, 48.733640701000041 ], [ -123.74515304099998, 48.735518921000079 ], [ -123.749757458999937, 48.735616188000044 ], [ -123.749584908999935, 48.739217309 ], [ -123.748608488999935, 48.739196699000082 ], [ -123.74859708299995, 48.739434634000148 ], [ -123.746112399999944, 48.739382148000075 ], [ -123.745940975999957, 48.742953688000078 ], [ -123.740514052999927, 48.742838851000101 ], [ -123.740687310999959, 48.739237765000027 ], [ -123.743171979999943, 48.739290377000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20316944", "BldgCostT": "10890721", "sL_LossRatio": "0.716569866861634", "sL_AssetLoss": "65788.7", "sL_BldgLoss": "47142.2", "sL_StrLoss": "27154", "sL_NStrLoss": "19988.2", "sL_ContLoss": "18646.5", "geom_point": "0101000020E61000009FAE0F6755EE5EC02769E5FB35584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.723865007999962, 48.686702492000094 ], [ -123.729285413999889, 48.686818187000064 ], [ -123.729111475999972, 48.690419562000052 ], [ -123.724122176999956, 48.690313079000077 ], [ -123.724060240999947, 48.691592482000019 ], [ -123.7186393, 48.691476522000073 ], [ -123.718814043999956, 48.687875171000051 ], [ -123.723803071999967, 48.687981903000022 ], [ -123.723865007999962, 48.686702492000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27601411", "BldgCostT": "15750743", "sL_LossRatio": "0.621259817312617", "sL_AssetLoss": "187424", "sL_BldgLoss": "116439", "sL_StrLoss": "45508", "sL_NStrLoss": "70931", "sL_ContLoss": "70985", "geom_point": "0101000020E61000001F9BBA7EC3E75EC08F3E0712EB594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.618256523999918, 48.705882744000057 ], [ -123.618312594999935, 48.704776326000058 ], [ -123.618170288, 48.704773145000111 ], [ -123.618178863999916, 48.704603912000053 ], [ -123.617094520999927, 48.7045796680001 ], [ -123.617080748999939, 48.704851273000067 ], [ -123.616006412999965, 48.704827242000086 ], [ -123.615948110999938, 48.702781641000115 ], [ -123.616026355999978, 48.698135648000083 ], [ -123.616380227999954, 48.698359702000083 ], [ -123.618008112999973, 48.699760695000052 ], [ -123.618255196999939, 48.700007160000098 ], [ -123.618385199999935, 48.700136786000051 ], [ -123.619085580999922, 48.700722104000086 ], [ -123.619317780999978, 48.700827296000092 ], [ -123.619633363999952, 48.700838904000115 ], [ -123.620791068999964, 48.700620504000092 ], [ -123.62088418799999, 48.70061255600006 ], [ -123.62097747599995, 48.700595807000099 ], [ -123.621284238, 48.70052825300013 ], [ -123.621487316999932, 48.700464186000033 ], [ -123.621825943999937, 48.700372382000126 ], [ -123.621948050999933, 48.700353736000075 ], [ -123.622246257999976, 48.700289147000106 ], [ -123.622504253999963, 48.700269764000012 ], [ -123.622585550999972, 48.700251322000035 ], [ -123.622923865999923, 48.70013255700006 ], [ -123.623032253999938, 48.700104977000045 ], [ -123.623343834999957, 48.700022315000062 ], [ -123.62339796599997, 48.70000403100007 ], [ -123.623682093999975, 48.699903537000054 ], [ -123.623871379999954, 48.699821555 ], [ -123.624168347999941, 48.699658020000129 ], [ -123.624249435999957, 48.69962158500006 ], [ -123.624543924999898, 48.699486316000069 ], [ -123.627415343999942, 48.699550300000098 ], [ -123.627233556999954, 48.703151429000094 ], [ -123.626667665999946, 48.703138825000103 ], [ -123.62662957399999, 48.703893141000066 ], [ -123.623788793, 48.703829825000064 ], [ -123.623678874999939, 48.706003808000077 ], [ -123.618256523999918, 48.705882744000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93021532", "BldgCostT": "61920545", "sL_LossRatio": "0.814876017832799", "sL_AssetLoss": "542820", "sL_BldgLoss": "442331", "sL_StrLoss": "185828", "sL_NStrLoss": "256503", "sL_ContLoss": "100489", "geom_point": "0101000020E6100000AF89F5DB51EE5EC06F842437B3594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.719163799999976, 48.705243297000031 ], [ -123.719200420999982, 48.704488659000027 ], [ -123.71857092399992, 48.704475183000071 ], [ -123.71862384799999, 48.703384873000111 ], [ -123.71788116399992, 48.703368968000071 ], [ -123.71805600899999, 48.699767689000048 ], [ -123.721029143999985, 48.699831326000037 ], [ -123.721125494999967, 48.697843959000039 ], [ -123.725218740999964, 48.6979314350001 ], [ -123.725279296999958, 48.696680057000073 ], [ -123.730700854999924, 48.696795678000036 ], [ -123.730526987999951, 48.700396996000059 ], [ -123.726433517999951, 48.700309724000078 ], [ -123.726372987999966, 48.70156109600002 ], [ -123.724142394999959, 48.701513473000084 ], [ -123.724131207999946, 48.701744504000011 ], [ -123.724760669999924, 48.701757948000051 ], [ -123.724586330999955, 48.705359228000134 ], [ -123.719163799999976, 48.705243297000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7025834", "BldgCostT": "4108334", "sL_LossRatio": "0.644225166472862", "sL_AssetLoss": "78601.4", "sL_BldgLoss": "50637", "sL_StrLoss": "27020", "sL_NStrLoss": "23617", "sL_ContLoss": "27964.4", "geom_point": "0101000020E6100000F252356AD3ED5EC04FA4EA0D2D584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713406003999964, 48.687016135000079 ], [ -123.718826418999939, 48.687132363000046 ], [ -123.71865168, 48.690733718000082 ], [ -123.713230849999945, 48.690617483000054 ], [ -123.713406003999964, 48.687016135000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169206070", "BldgCostT": "114723975", "sL_LossRatio": "0.834709999360741", "sL_AssetLoss": "206489.2", "sL_BldgLoss": "172358.6", "sL_StrLoss": "86207.6", "sL_NStrLoss": "86151", "sL_ContLoss": "34130.6", "geom_point": "0101000020E6100000428634AE68ED5EC0D1CC49DE6F574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.706571269999984, 48.68951091100012 ], [ -123.706672133, 48.687443131000116 ], [ -123.706057873999967, 48.687429903000087 ], [ -123.706095296999962, 48.68666283000006 ], [ -123.705211088999974, 48.686643784000083 ], [ -123.705386843999918, 48.683042426000064 ], [ -123.707974215999954, 48.683098140000077 ], [ -123.708058226999967, 48.681374524000063 ], [ -123.704922395999958, 48.681306991000056 ], [ -123.70505536899999, 48.678582326000083 ], [ -123.704445193999931, 48.678586058000114 ], [ -123.704426380999934, 48.677236742000012 ], [ -123.706056381999957, 48.677226763000085 ], [ -123.706063364, 48.677726399000072 ], [ -123.708271473999943, 48.677773943000076 ], [ -123.708287241, 48.677450380000103 ], [ -123.713706540999965, 48.677566870000121 ], [ -123.713531444999916, 48.681168273000026 ], [ -123.710357886999958, 48.681100091000069 ], [ -123.710349437999952, 48.681273614000098 ], [ -123.713485273999979, 48.681340987000056 ], [ -123.713455940999964, 48.681944234000049 ], [ -123.714286679999958, 48.681962067000043 ], [ -123.714111611999925, 48.685563446000067 ], [ -123.712622314999976, 48.685531472000029 ], [ -123.712559620999969, 48.686820180000076 ], [ -123.71212901399997, 48.68681093100011 ], [ -123.711991955999935, 48.689627485000081 ], [ -123.706571269999984, 48.68951091100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9344417", "BldgCostT": "5266667", "sL_LossRatio": "0.601400245342133", "sL_AssetLoss": "23395.9", "sL_BldgLoss": "14070.3", "sL_StrLoss": "4828.6", "sL_NStrLoss": "9241.7", "sL_ContLoss": "9325.6", "geom_point": "0101000020E6100000F2E41E3BBDEB5EC041942F68A1564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.680803965999985, 48.674941096000062 ], [ -123.686222909999913, 48.675058985000099 ], [ -123.686045717999917, 48.678660358000087 ], [ -123.680626361999941, 48.678542460000088 ], [ -123.680803965999985, 48.674941096000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19029053", "BldgCostT": "10153746", "sL_LossRatio": "0.649579627671885", "sL_AssetLoss": "85983.3", "sL_BldgLoss": "55853", "sL_StrLoss": "22050", "sL_NStrLoss": "33803", "sL_ContLoss": "30130.3", "geom_point": "0101000020E61000000246FA6182F15EC009F856A0ED504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.775151469999983, 48.630410362000092 ], [ -123.777837867999921, 48.630048693000063 ], [ -123.777720568999968, 48.632533741000039 ], [ -123.774996735999963, 48.632476806000049 ], [ -123.774918347999972, 48.634135306000104 ], [ -123.769503896999979, 48.634021921000077 ], [ -123.769628425999926, 48.631393489000118 ], [ -123.772146591999928, 48.631439214000061 ], [ -123.772718776999938, 48.631327257000102 ], [ -123.774239678999905, 48.630641705000052 ], [ -123.775151469999983, 48.630410362000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9723834", "BldgCostT": "5528334", "sL_LossRatio": "0.469633593391786", "sL_AssetLoss": "34153.86", "sL_BldgLoss": "16039.8", "sL_StrLoss": "3995", "sL_NStrLoss": "12044.8", "sL_ContLoss": "18114.06", "geom_point": "0101000020E6100000F78A973CD8E95EC02157451303584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.651202835999982, 48.685733501000115 ], [ -123.656622946999946, 48.68585289300011 ], [ -123.656443448999966, 48.689454153000035 ], [ -123.651022922999957, 48.689334752000022 ], [ -123.651202835999982, 48.685733501000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4154167", "BldgCostT": "2391667", "sL_LossRatio": "0.620852649759113", "sL_AssetLoss": "35203.2", "sL_BldgLoss": "21856", "sL_StrLoss": "10308", "sL_NStrLoss": "11548", "sL_ContLoss": "13347.2", "geom_point": "0101000020E6100000A1754309A9F05EC0DA9213F51B514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.761652921999911, 48.632350301000031 ], [ -123.762703272999943, 48.632298441000096 ], [ -123.762590989999978, 48.634661007 ], [ -123.757176507999986, 48.634546997000065 ], [ -123.757222852999973, 48.633574229000025 ], [ -123.75733561199992, 48.633527598000114 ], [ -123.757919494999925, 48.633357785000065 ], [ -123.75856821799999, 48.633251597000083 ], [ -123.759368911999942, 48.633025093000072 ], [ -123.75956641, 48.632918405000048 ], [ -123.759802488, 48.63273950600005 ], [ -123.759957096999941, 48.63267970400009 ], [ -123.760331184999956, 48.632648793 ], [ -123.761652921999911, 48.632350301000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46606000", "BldgCostT": "26230000", "sL_LossRatio": "0.641144416378461", "sL_AssetLoss": "295969.2", "sL_BldgLoss": "189759", "sL_StrLoss": "100219", "sL_NStrLoss": "89540", "sL_ContLoss": "106210.2", "geom_point": "0101000020E6100000F31D3EE1D3ED5EC091CF654984534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.706574956999958, 48.656075906000062 ], [ -123.70659174799999, 48.655731412000087 ], [ -123.70562994299999, 48.655710683000102 ], [ -123.705691834999982, 48.654441391000034 ], [ -123.702526259999971, 48.654373104000086 ], [ -123.703226083999979, 48.654057710000089 ], [ -123.703618899999924, 48.653903243000109 ], [ -123.703972128999979, 48.65376434800001 ], [ -123.704688418999964, 48.653482697000122 ], [ -123.704986907999981, 48.653421485000145 ], [ -123.705432896999966, 48.653420288000071 ], [ -123.706079, 48.65354148600008 ], [ -123.706175280999972, 48.653551277000062 ], [ -123.706597021, 48.65359410700006 ], [ -123.707045270999956, 48.653601092000024 ], [ -123.707381689999949, 48.65356961300008 ], [ -123.708164695999955, 48.653342945000077 ], [ -123.708619112999912, 48.653211395000056 ], [ -123.70945829599998, 48.653154602000072 ], [ -123.7103831, 48.652895987000086 ], [ -123.710813913999942, 48.652733991000019 ], [ -123.711237687999983, 48.652521402000055 ], [ -123.711550009999925, 48.652316310000067 ], [ -123.711824901999933, 48.652013994000079 ], [ -123.711856239999975, 48.651917932000117 ], [ -123.711888617999989, 48.651818802000051 ], [ -123.712006948999942, 48.651671575000137 ], [ -123.712051685999981, 48.651615900000102 ], [ -123.71220014799998, 48.651504195 ], [ -123.712849392999928, 48.651015700000102 ], [ -123.71328058899995, 48.650650914000046 ], [ -123.713442001, 48.650564198000012 ], [ -123.713629691999984, 48.650523201000091 ], [ -123.713826204999989, 48.650524690000047 ], [ -123.71455651399999, 48.650642201000053 ], [ -123.714898075999926, 48.650642399000041 ], [ -123.715210122999963, 48.650579708000109 ], [ -123.715485399, 48.650465708000105 ], [ -123.71575621, 48.650192109000031 ], [ -123.716487706999914, 48.64981121300012 ], [ -123.717427622999963, 48.649407700000047 ], [ -123.717796896999985, 48.649283206000042 ], [ -123.718206191999926, 48.649284711000099 ], [ -123.718622887999956, 48.649356798000106 ], [ -123.719119399999954, 48.649599099000092 ], [ -123.719375499999927, 48.649627989000123 ], [ -123.719902202999933, 48.649612208000093 ], [ -123.720587811999906, 48.649448384000067 ], [ -123.721225291999957, 48.649216892000069 ], [ -123.721506969999936, 48.649049417000036 ], [ -123.721526692999959, 48.64903770100004 ], [ -123.721781491999934, 48.648787192000093 ], [ -123.721957055999894, 48.648528564000102 ], [ -123.7221434099999, 48.648254088000058 ], [ -123.72216221199993, 48.648245749000054 ], [ -123.722199595999982, 48.648229177000069 ], [ -123.722265279999988, 48.6482 ], [ -123.722431679999971, 48.648179193000033 ], [ -123.722496142999944, 48.648183541000044 ], [ -123.722627593999903, 48.648192402000141 ], [ -123.722705939999983, 48.648209440000059 ], [ -123.722852758999949, 48.648241393000148 ], [ -123.722875706999957, 48.648246407000101 ], [ -123.722985865999959, 48.648284695000072 ], [ -123.723478202999942, 48.648455804000086 ], [ -123.723698082999945, 48.648476699000078 ], [ -123.724087215999987, 48.64847510500006 ], [ -123.72430419599999, 48.64841661300008 ], [ -123.724488912999945, 48.648297105000083 ], [ -123.724657182, 48.648036344000012 ], [ -123.724899126999929, 48.647661399000043 ], [ -123.725011974000026, 48.647583463000046 ], [ -123.725304426999912, 48.647381550000127 ], [ -123.725408100999957, 48.647309983000078 ], [ -123.725746506999897, 48.647179297000037 ], [ -123.726049236999955, 48.64708659000005 ], [ -123.726559619999975, 48.646930310000037 ], [ -123.726613192999963, 48.64691388800005 ], [ -123.72684260199999, 48.646876590000012 ], [ -123.727323512999973, 48.64679839000005 ], [ -123.727684046999968, 48.646769818000045 ], [ -123.727525962999948, 48.650043624000098 ], [ -123.724796649999931, 48.649985309000066 ], [ -123.72477178099993, 48.650499690000053 ], [ -123.722342081999955, 48.650447718000109 ], [ -123.722312913999986, 48.65105034900003 ], [ -123.721532422999971, 48.651033642000108 ], [ -123.721527905999949, 48.650913999000075 ], [ -123.721775103999917, 48.650103595000083 ], [ -123.722171901999914, 48.649498289000071 ], [ -123.722722383999937, 48.648955702000087 ], [ -123.72309918799999, 48.64881751100004 ], [ -123.724580015999948, 48.648798994000032 ], [ -123.725891480999962, 48.648485700000023 ], [ -123.726079294, 48.648304809000081 ], [ -123.726075202999979, 48.648052687000074 ], [ -123.725798778999916, 48.647685299000138 ], [ -123.725664776999963, 48.647730896000091 ], [ -123.725495511999952, 48.648236499000056 ], [ -123.725211684, 48.648381695000054 ], [ -123.724251706999979, 48.648630986000107 ], [ -123.723190917999943, 48.648582500000096 ], [ -123.722730782, 48.648595394000047 ], [ -123.722337982999989, 48.648769102000088 ], [ -123.721845700999936, 48.649382892000069 ], [ -123.721268290999959, 48.649908501000027 ], [ -123.721110993999929, 48.650197591000037 ], [ -123.721068988999932, 48.651097693000153 ], [ -123.720845200000014, 48.651611812000084 ], [ -123.72046951899992, 48.651973602000069 ], [ -123.719595882999954, 48.652500495 ], [ -123.719514607999955, 48.652627311000053 ], [ -123.720300287999947, 48.652415106 ], [ -123.72135801, 48.651639996000021 ], [ -123.721229051999913, 48.654302965000021 ], [ -123.719029760999888, 48.654255854000056 ], [ -123.718970527999929, 48.655477718000022 ], [ -123.714587593999937, 48.655383696000087 ], [ -123.71458045699994, 48.655530625000033 ], [ -123.712026643999963, 48.655475758000087 ], [ -123.71199179199999, 48.656192487000062 ], [ -123.706574956999958, 48.656075906000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28692905", "BldgCostT": "16309819", "sL_LossRatio": "0.872608868336194", "sL_AssetLoss": "57153.9", "sL_BldgLoss": "49873", "sL_StrLoss": "37698", "sL_NStrLoss": "12175", "sL_ContLoss": "7280.9", "geom_point": "0101000020E6100000FF412CB496EA5EC0AF22B3E5A2574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.664583382999979, 48.684098134000081 ], [ -123.664602310999953, 48.683717051000031 ], [ -123.661224838999885, 48.683642936000105 ], [ -123.66137409599996, 48.680641928000071 ], [ -123.661548965999913, 48.680629426000053 ], [ -123.66225874300001, 48.680852303000059 ], [ -123.662586694999945, 48.680893601000029 ], [ -123.662899817999943, 48.680971899000077 ], [ -123.663308093999959, 48.68095201200002 ], [ -123.66361871699992, 48.680869404000092 ], [ -123.663931038999976, 48.68067884500006 ], [ -123.664319087999942, 48.680442092000057 ], [ -123.66438875599998, 48.680107139000022 ], [ -123.666823430999969, 48.680160508000029 ], [ -123.666673447999969, 48.683183190000086 ], [ -123.67005089599995, 48.683257133000026 ], [ -123.670019185999976, 48.683897055000088 ], [ -123.670511416999929, 48.683907822000073 ], [ -123.670332989, 48.687509117000104 ], [ -123.667722763999961, 48.687451992000078 ], [ -123.667706901999949, 48.687771781000102 ], [ -123.666911722999885, 48.687754366000071 ], [ -123.666882899999962, 48.688335199000115 ], [ -123.661462475999954, 48.688216330000039 ], [ -123.661641585999973, 48.68461505500013 ], [ -123.662436708999962, 48.684632508000043 ], [ -123.662465583999932, 48.684051673000113 ], [ -123.664583382999979, 48.684098134000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15401637", "BldgCostT": "8597080", "sL_LossRatio": "0.63130173062453", "sL_AssetLoss": "156822", "sL_BldgLoss": "99002", "sL_StrLoss": "41850", "sL_NStrLoss": "57152", "sL_ContLoss": "57820", "geom_point": "0101000020E6100000EBDC1FB5EAEB5EC05F8F70F7C55B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.681715547999929, 48.717853876000049 ], [ -123.681763789999977, 48.71687614800004 ], [ -123.682081487999966, 48.716883057000118 ], [ -123.682167471999946, 48.715140051000077 ], [ -123.684294460999979, 48.715186287000044 ], [ -123.684319411999965, 48.714680004000051 ], [ -123.689742944999978, 48.714797706000063 ], [ -123.689695681999964, 48.715758976000124 ], [ -123.691393442999953, 48.715795764000106 ], [ -123.691315011999905, 48.717392011000065 ], [ -123.691769724999972, 48.717401859000077 ], [ -123.691703919999924, 48.718741313000073 ], [ -123.691197798999937, 48.718735401000146 ], [ -123.69090046099997, 48.718732492000086 ], [ -123.690261102999926, 48.718726252000081 ], [ -123.689309523999952, 48.718716950000065 ], [ -123.689186878999948, 48.718715746000093 ], [ -123.689105343999984, 48.71871496800005 ], [ -123.688915087999987, 48.718713095000112 ], [ -123.68803209, 48.71870444900005 ], [ -123.687515967999943, 48.718699416000092 ], [ -123.685679431999944, 48.718681397000047 ], [ -123.685210322, 48.718676811000122 ], [ -123.685186400999925, 48.718692481000076 ], [ -123.684156615999939, 48.718713668000142 ], [ -123.681619756999964, 48.718765795000124 ], [ -123.679115415999945, 48.718817170000072 ], [ -123.67916574099992, 48.717798386000034 ], [ -123.681715547999929, 48.717853876000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "694355191", "BldgCostT": "457413105", "sL_LossRatio": "0.764811867675275", "sL_AssetLoss": "825031", "sL_BldgLoss": "630993.5", "sL_StrLoss": "326922.5", "sL_NStrLoss": "304071", "sL_ContLoss": "194037.5", "geom_point": "0101000020E610000003F9DA127DE95EC000D63607005A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.649322773, 48.717645227000069 ], [ -123.649391630999972, 48.716268881000062 ], [ -123.648713132999944, 48.716253914000035 ], [ -123.648872430999972, 48.713070442000109 ], [ -123.64575213499991, 48.713001559000134 ], [ -123.645612488999973, 48.715788639000046 ], [ -123.64337907599996, 48.715739278000051 ], [ -123.643381348999924, 48.715917512000019 ], [ -123.640934439999967, 48.715931149000042 ], [ -123.64093131499996, 48.715685127000043 ], [ -123.640188952999949, 48.715668693000076 ], [ -123.64019730499993, 48.715502408000141 ], [ -123.639712845999966, 48.715491680000078 ], [ -123.63973934099999, 48.714964237000068 ], [ -123.639244160999965, 48.71495326900002 ], [ -123.639425073999959, 48.711352189000159 ], [ -123.639671289999967, 48.711357642000081 ], [ -123.639685778999947, 48.711069194000046 ], [ -123.640121552999972, 48.711078845000081 ], [ -123.640265614999961, 48.708210001000076 ], [ -123.641358151999924, 48.708234189000088 ], [ -123.641387901999977, 48.707641426000116 ], [ -123.64155002699999, 48.707645015000011 ], [ -123.641598738999946, 48.706674340000056 ], [ -123.641287330999916, 48.706667447000065 ], [ -123.641336446999915, 48.705688793000022 ], [ -123.636423214999979, 48.705579922 ], [ -123.636570448999947, 48.702652134000068 ], [ -123.636557989999957, 48.702651858000053 ], [ -123.636551303999951, 48.702784801000057 ], [ -123.633372781, 48.702714248000127 ], [ -123.633372274999914, 48.702724279000023 ], [ -123.627950277999972, 48.702603708000055 ], [ -123.628102650999921, 48.699584369000071 ], [ -123.627484442999943, 48.699570604000087 ], [ -123.627576688, 48.697742992000052 ], [ -123.627204155999948, 48.697734696000076 ], [ -123.627844907999986, 48.697441187000074 ], [ -123.628725994999982, 48.697296799000071 ], [ -123.629407719999961, 48.697253125 ], [ -123.62982320399999, 48.697226485000023 ], [ -123.630281238999913, 48.697229289000063 ], [ -123.630457881999945, 48.69723036900006 ], [ -123.630865483999941, 48.697232849000024 ], [ -123.634003791999973, 48.697251912000134 ], [ -123.634073814999979, 48.697242088000088 ], [ -123.63424290799999, 48.69721840799999 ], [ -123.63444271499999, 48.697157997 ], [ -123.634623464999919, 48.697043225000122 ], [ -123.63463468499998, 48.697036102000069 ], [ -123.634668897999944, 48.696996062000025 ], [ -123.634707888999927, 48.696950408000056 ], [ -123.634822104999955, 48.696816690000098 ], [ -123.634954635999961, 48.696611374000049 ], [ -123.634964415999917, 48.696596236000111 ], [ -123.635157586999938, 48.696296896000064 ], [ -123.635174352999968, 48.69628069700012 ], [ -123.635813697999978, 48.695662490000103 ], [ -123.636275504000011, 48.696149556000115 ], [ -123.637706070999968, 48.695764321000091 ], [ -123.639185177999977, 48.696521689000022 ], [ -123.639494154999909, 48.696620846000073 ], [ -123.639439934999942, 48.697700546000085 ], [ -123.638823140999989, 48.697686877000088 ], [ -123.638789445999933, 48.698357660000099 ], [ -123.637826879, 48.698336322000053 ], [ -123.637796763999958, 48.698935563000099 ], [ -123.638430301999975, 48.698949608000113 ], [ -123.638423344999978, 48.699088058000044 ], [ -123.639162901999953, 48.699104449000053 ], [ -123.639203610999942, 48.698293944000028 ], [ -123.639903826999927, 48.698309459000107 ], [ -123.639911392999949, 48.69815877600012 ], [ -123.639620275999931, 48.698152327000038 ], [ -123.639693957999938, 48.696684966000085 ], [ -123.643219288999958, 48.697816214000021 ], [ -123.644995716000011, 48.697063427000018 ], [ -123.645090262999986, 48.69565330700005 ], [ -123.645726045999965, 48.695213611000106 ], [ -123.646423773999956, 48.694639754 ], [ -123.646335624999921, 48.696400353000044 ], [ -123.647539508999898, 48.696426944000038 ], [ -123.647646199999912, 48.694294939000059 ], [ -123.650825300999927, 48.694365093000059 ], [ -123.650995553999934, 48.690957912000044 ], [ -123.656416265999965, 48.691077314000033 ], [ -123.656405463999974, 48.691294 ], [ -123.657477904999908, 48.691317590000097 ], [ -123.657512813999972, 48.690616970000114 ], [ -123.662933504999955, 48.690736041000029 ], [ -123.662754470999957, 48.694337282000085 ], [ -123.658378129000013, 48.694241175000087 ], [ -123.658343229999957, 48.694941789000083 ], [ -123.653046783999912, 48.69482523400017 ], [ -123.652946248999939, 48.696838826000089 ], [ -123.653322323999973, 48.696847111000075 ], [ -123.653314387999956, 48.697006085000083 ], [ -123.655248064999938, 48.697048661000061 ], [ -123.655096242999946, 48.700092113000068 ], [ -123.655671371999915, 48.70010477000006 ], [ -123.655787082999936, 48.69778465000006 ], [ -123.657008647999945, 48.697811523000091 ], [ -123.657075304999935, 48.696474178000102 ], [ -123.660725498999952, 48.696554392000046 ], [ -123.660757892000035, 48.695903467000058 ], [ -123.666179198999927, 48.696022371000019 ], [ -123.666000393999937, 48.699623586000044 ], [ -123.662349951999957, 48.699543553000126 ], [ -123.662317580999911, 48.700194474000085 ], [ -123.661095951999982, 48.700167664000119 ], [ -123.661029402999958, 48.701505004000083 ], [ -123.657258614999961, 48.701422156000049 ], [ -123.657113404000015, 48.704335291000099 ], [ -123.656838212000011, 48.704329240000099 ], [ -123.656821810999986, 48.704658196 ], [ -123.655582532999929, 48.704630937000033 ], [ -123.655565240999977, 48.704977596000077 ], [ -123.660381153999936, 48.705083449 ], [ -123.66036916099999, 48.705324360000063 ], [ -123.662184402, 48.705364202000098 ], [ -123.662005255999972, 48.708965356000107 ], [ -123.65947594, 48.708909833000099 ], [ -123.659464466, 48.709140219000069 ], [ -123.657546214999982, 48.709098069000071 ], [ -123.657517517999935, 48.709673765000076 ], [ -123.652911106999966, 48.709572408000064 ], [ -123.652752993999954, 48.712737905000097 ], [ -123.654316534999964, 48.712772330000078 ], [ -123.654247826999935, 48.714148687000076 ], [ -123.654926297, 48.714163618000079 ], [ -123.65474656, 48.717764709000058 ], [ -123.649322773, 48.717645227000069 ] ], [ [ -123.652158621999916, 48.708274143000097 ], [ -123.652175260999968, 48.707941115000054 ], [ -123.649991179000025, 48.707892972000145 ], [ -123.650171241999885, 48.704291831000049 ], [ -123.651410507999969, 48.704319154000125 ], [ -123.651445603, 48.703616836000087 ], [ -123.651326883999957, 48.703614220000048 ], [ -123.65136629499996, 48.702825538000056 ], [ -123.64937706099991, 48.702781670000014 ], [ -123.649435723999915, 48.701608689000118 ], [ -123.648396404999957, 48.701585755000089 ], [ -123.648379025999958, 48.701933113000045 ], [ -123.648191037999965, 48.701928963000043 ], [ -123.648069548999956, 48.704356813000139 ], [ -123.647626569999943, 48.704347034000108 ], [ -123.64755015799993, 48.705873641000089 ], [ -123.64890542699996, 48.705903553000049 ], [ -123.64879054499994, 48.70819988100002 ], [ -123.652158621999916, 48.708274143000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9641250", "BldgCostT": "5175000", "sL_LossRatio": "0.657713591577811", "sL_AssetLoss": "74090", "sL_BldgLoss": "48730", "sL_StrLoss": "22800", "sL_NStrLoss": "25930", "sL_ContLoss": "25360", "geom_point": "0101000020E6100000A038DB3712E95EC01F6A36EAFC5B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.639949272999957, 48.718158423000077 ], [ -123.643633531999939, 48.718239937000057 ], [ -123.643632965999984, 48.718254138000098 ], [ -123.643599100999936, 48.719103393000104 ], [ -123.641786404999934, 48.719112532000111 ], [ -123.639900869999977, 48.719121989000072 ], [ -123.639949272999957, 48.718158423000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11329334", "BldgCostT": "6373334", "sL_LossRatio": "0.643448990160538", "sL_AssetLoss": "65654", "sL_BldgLoss": "42245", "sL_StrLoss": "17608", "sL_NStrLoss": "24637", "sL_ContLoss": "23409", "geom_point": "0101000020E61000005B95C82E66EE5EC08C2C9963F95A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.722362431999954, 48.708877222000091 ], [ -123.727785388999934, 48.708992989000087 ], [ -123.727611253999939, 48.712594231000104 ], [ -123.722187881999957, 48.712478455000117 ], [ -123.722362431999954, 48.708877222000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6612750", "BldgCostT": "3825000", "sL_LossRatio": "0.839316063322689", "sL_AssetLoss": "13015.24", "sL_BldgLoss": "10923.9", "sL_StrLoss": "7645.3", "sL_NStrLoss": "3278.6", "sL_ContLoss": "2091.34", "geom_point": "0101000020E610000023EA703A2AEB5EC0EBC128319D564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.671585606999898, 48.676091082 ], [ -123.673074404999937, 48.675811991000074 ], [ -123.673632499999911, 48.675809207000015 ], [ -123.674162182999936, 48.675904599000042 ], [ -123.674489314999931, 48.675894592000098 ], [ -123.674596289, 48.675813395000048 ], [ -123.674724589999983, 48.675236594000083 ], [ -123.675068714999938, 48.674595698000132 ], [ -123.675128846999939, 48.674531819000094 ], [ -123.676916124999977, 48.674570827000075 ], [ -123.676738222999958, 48.678172187000037 ], [ -123.671318945999971, 48.678053817000055 ], [ -123.671413030999986, 48.676153695000046 ], [ -123.671585606999898, 48.676091082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104385296", "BldgCostT": "68101226", "sL_LossRatio": "0.741159001116707", "sL_AssetLoss": "412821", "sL_BldgLoss": "305966", "sL_StrLoss": "160084", "sL_NStrLoss": "145882", "sL_ContLoss": "106855", "geom_point": "0101000020E6100000A4E9795824E85EC09CCD5FF8F35B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.634056414999975, 48.721868791000098 ], [ -123.633995964999926, 48.721802553000032 ], [ -123.633789655999948, 48.721855655000105 ], [ -123.633715018999951, 48.721908969000047 ], [ -123.633298500999942, 48.72148547700008 ], [ -123.633314716999962, 48.721163613000066 ], [ -123.63334245399993, 48.720612991000053 ], [ -123.6323527, 48.720591010000042 ], [ -123.632020089999969, 48.720583622000028 ], [ -123.632021449999939, 48.720692168000042 ], [ -123.631736556999925, 48.720571725000077 ], [ -123.631075907999943, 48.720401130000049 ], [ -123.629986595999981, 48.720196661000081 ], [ -123.62748954499996, 48.719830295000072 ], [ -123.623989681999973, 48.71931666299999 ], [ -123.623922025999917, 48.719306729000131 ], [ -123.62299971099999, 48.719171356000096 ], [ -123.618826494999936, 48.718559968000136 ], [ -123.61828388899994, 48.718536296000103 ], [ -123.61713611, 48.718486140000017 ], [ -123.61619951299997, 48.718356804000074 ], [ -123.616198645999972, 48.71826825400008 ], [ -123.616197342999968, 48.718138587000077 ], [ -123.616195283, 48.717935034000114 ], [ -123.616172740999957, 48.715704458000076 ], [ -123.616171179999981, 48.715552043000045 ], [ -123.619969877999935, 48.715636941000085 ], [ -123.619958959999963, 48.715852483000077 ], [ -123.62278109199994, 48.715915468000077 ], [ -123.622740354999962, 48.716720615000042 ], [ -123.625017716999977, 48.716771387000065 ], [ -123.625027652, 48.716574851000118 ], [ -123.630451252999961, 48.716695569000102 ], [ -123.630438753999897, 48.716943410000049 ], [ -123.635064404999966, 48.717046148000087 ], [ -123.634963911999932, 48.71904256100008 ], [ -123.638795771999966, 48.719127516000071 ], [ -123.636640218999958, 48.719138263000104 ], [ -123.637212665, 48.722505853000015 ], [ -123.636706249999961, 48.722438584000081 ], [ -123.634056414999975, 48.721868791000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8662866", "BldgCostT": "4663879", "sL_LossRatio": "0.584883482099772", "sL_AssetLoss": "20205.05", "sL_BldgLoss": "11817.6", "sL_StrLoss": "4092.6", "sL_NStrLoss": "7725", "sL_ContLoss": "8387.45", "geom_point": "0101000020E6100000D170CADC3CEF5EC019481F0C9F524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.73949784, 48.643583072000069 ], [ -123.740702823999982, 48.643608664000098 ], [ -123.740529918999968, 48.647210312000055 ], [ -123.736529164999951, 48.647125290000069 ], [ -123.735114046999954, 48.647095181000012 ], [ -123.735206409999975, 48.645175908000041 ], [ -123.735233415999986, 48.64515116400009 ], [ -123.735550009999912, 48.644861104000064 ], [ -123.735777533999951, 48.644652629000042 ], [ -123.73625479799999, 48.64421529600007 ], [ -123.736739211999947, 48.643977793000026 ], [ -123.737352594999948, 48.643762811000023 ], [ -123.737391629999976, 48.643728693000142 ], [ -123.737604318999971, 48.643542829000033 ], [ -123.73949784, 48.643583072000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27303161", "BldgCostT": "15175743", "sL_LossRatio": "0.623032466975467", "sL_AssetLoss": "186528", "sL_BldgLoss": "116213", "sL_StrLoss": "55397", "sL_NStrLoss": "60816", "sL_ContLoss": "70315", "geom_point": "0101000020E6100000853E37B8DDEA5EC031339ECE365B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.667543122999987, 48.716392909000056 ], [ -123.667552429999958, 48.71620542300009 ], [ -123.667158420999954, 48.716196799000059 ], [ -123.667336283999987, 48.712614126000041 ], [ -123.666178798999965, 48.712588784000069 ], [ -123.666357639999902, 48.70898764500005 ], [ -123.667263732, 48.709007483000093 ], [ -123.66727031, 48.708874966000067 ], [ -123.672693130999946, 48.708993536000044 ], [ -123.672514774999939, 48.712594687000049 ], [ -123.671608610999911, 48.71257489300006 ], [ -123.671602959, 48.712688963000083 ], [ -123.672760448999938, 48.712714245000036 ], [ -123.67275116399999, 48.712901732000041 ], [ -123.673145146999929, 48.712910335000124 ], [ -123.672966810999952, 48.716511463000117 ], [ -123.667543122999987, 48.716392909000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.477378290039566", "sL_AssetLoss": "11626", "sL_BldgLoss": "5550", "sL_StrLoss": "1376", "sL_NStrLoss": "4174", "sL_ContLoss": "6076", "geom_point": "0101000020E6100000A3FF48852FEA5EC0DB64F95F53574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.660256326999956, 48.680721828000095 ], [ -123.660563961999969, 48.680699838000116 ], [ -123.660496795999961, 48.682049875000132 ], [ -123.65973227799995, 48.682033078000089 ], [ -123.659712986999949, 48.682420693000054 ], [ -123.658769217, 48.682399950000047 ], [ -123.658705416999936, 48.683681314000054 ], [ -123.657200874999916, 48.683648228000081 ], [ -123.657933695999972, 48.682999506000073 ], [ -123.658804042999975, 48.681793980000045 ], [ -123.660256326999956, 48.680721828000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23133417", "BldgCostT": "13511667", "sL_LossRatio": "0.640966451889846", "sL_AssetLoss": "228299", "sL_BldgLoss": "146332", "sL_StrLoss": "70730", "sL_NStrLoss": "75602", "sL_ContLoss": "81967", "geom_point": "0101000020E61000001C3599D0E8EC5EC0512270C125554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.694607774999923, 48.670196051000083 ], [ -123.694759757999947, 48.667094982000023 ], [ -123.69512744599993, 48.666692267000023 ], [ -123.697616403999959, 48.668065394000109 ], [ -123.697938635999932, 48.667605528000088 ], [ -123.69878608199997, 48.666902204000046 ], [ -123.699072106999921, 48.666793004000063 ], [ -123.699083927999979, 48.666785769000043 ], [ -123.699302682999942, 48.66665189 ], [ -123.699315655999939, 48.666640115000121 ], [ -123.69970150599994, 48.666289204000108 ], [ -123.699765510999924, 48.666239023000109 ], [ -123.699971724999955, 48.666077340000122 ], [ -123.701131187999948, 48.665168196000074 ], [ -123.701376688, 48.664887804000109 ], [ -123.701477921999981, 48.664537603000042 ], [ -123.70144820899999, 48.66431430800003 ], [ -123.701311909999959, 48.663967108000044 ], [ -123.701284314999953, 48.663727604000087 ], [ -123.701320900999946, 48.663448996000078 ], [ -123.701665004999967, 48.662872405000037 ], [ -123.701668867999928, 48.662855535000162 ], [ -123.701715012999927, 48.662655295 ], [ -123.701679917999925, 48.662485103000044 ], [ -123.70154579299998, 48.662315492000047 ], [ -123.699939607999951, 48.661127904000054 ], [ -123.699615829, 48.66088850000007 ], [ -123.699338596999951, 48.660595794000116 ], [ -123.699240520000018, 48.66042678400003 ], [ -123.699019691999951, 48.660046408000071 ], [ -123.699012480999968, 48.66001899400009 ], [ -123.704369749999927, 48.660134666000033 ], [ -123.704358887999916, 48.660357276000042 ], [ -123.704826246999986, 48.660367354000073 ], [ -123.704758028999919, 48.661765673000019 ], [ -123.7076729299999, 48.661828483000107 ], [ -123.707497428999943, 48.665429970000048 ], [ -123.705653921999954, 48.665390255000034 ], [ -123.705606305999936, 48.66636651300017 ], [ -123.704837660999956, 48.666349944000068 ], [ -123.70481619899995, 48.666789831000109 ], [ -123.701718643000035, 48.66672300700003 ], [ -123.701610490999926, 48.668936505000083 ], [ -123.700095123, 48.668903780000107 ], [ -123.700026205999961, 48.670313238000148 ], [ -123.694607774999923, 48.670196051000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93861101", "BldgCostT": "62758563", "sL_LossRatio": "0.879155535270342", "sL_AssetLoss": "97060.3", "sL_BldgLoss": "85331.1", "sL_StrLoss": "49786", "sL_NStrLoss": "35545.1", "sL_ContLoss": "11729.2", "geom_point": "0101000020E6100000716D870ABEEB5EC0E1E74340535A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.681223430999964, 48.709655488000116 ], [ -123.681307249, 48.707956705000072 ], [ -123.680418903999964, 48.707937371000135 ], [ -123.680525428999914, 48.705779066000048 ], [ -123.679762708999959, 48.705762461000049 ], [ -123.679940483999957, 48.702161258000096 ], [ -123.681227670999974, 48.702189279000088 ], [ -123.681245749999931, 48.701822789000062 ], [ -123.68666779199999, 48.701940649000029 ], [ -123.686490532999954, 48.705541865000065 ], [ -123.685965969999955, 48.705530474000049 ], [ -123.685935323999928, 48.706152870000075 ], [ -123.68682363799995, 48.706172158000129 ], [ -123.686646375999914, 48.709773348000077 ], [ -123.681223430999964, 48.709655488000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75426926", "BldgCostT": "52172452", "sL_LossRatio": "0.92695940025314", "sL_AssetLoss": "28245.25", "sL_BldgLoss": "26182.2", "sL_StrLoss": "10665.3", "sL_NStrLoss": "15516.9", "sL_ContLoss": "2063.05", "geom_point": "0101000020E61000003FE380653EEE5EC0887DE98AA5574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.71978664, 48.686476566000067 ], [ -123.719820520999988, 48.685777937000076 ], [ -123.719626872999982, 48.685779146000129 ], [ -123.719615337999954, 48.684969560000098 ], [ -123.719859794999962, 48.684968033000089 ], [ -123.719961276999967, 48.68287518400011 ], [ -123.725381230999943, 48.682991079000068 ], [ -123.725207008999917, 48.686592469000047 ], [ -123.71978664, 48.686476566000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8486386", "BldgCostT": "4357079", "sL_LossRatio": "0.534204928341847", "sL_AssetLoss": "16100.75", "sL_BldgLoss": "8601.1", "sL_StrLoss": "2588", "sL_NStrLoss": "6013.1", "sL_ContLoss": "7499.65", "geom_point": "0101000020E6100000CAA685608FF25EC0FAB836548C504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.790031060999965, 48.628127265000067 ], [ -123.792624206999946, 48.628036702 ], [ -123.792651340999953, 48.628042903000051 ], [ -123.792539235999953, 48.630433982000092 ], [ -123.787125166999957, 48.630321494000086 ], [ -123.787210405999986, 48.628507919000072 ], [ -123.788940342999965, 48.628243024000035 ], [ -123.790031060999965, 48.628127265000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.593393536121673", "sL_AssetLoss": "42080", "sL_BldgLoss": "24970", "sL_StrLoss": "5190", "sL_NStrLoss": "19780", "sL_ContLoss": "17110", "geom_point": "0101000020E61000007F2457770DEA5EC083CD10F9745C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.657845551999969, 48.720925704000109 ], [ -123.657854916999952, 48.720737842000077 ], [ -123.658130219999961, 48.723850216000159 ], [ -123.655054501999928, 48.722423346000035 ], [ -123.65506605, 48.722192007000118 ], [ -123.656634620999938, 48.722226501000051 ], [ -123.656700756999925, 48.720900543000106 ], [ -123.657845551999969, 48.720925704000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20708000", "BldgCostT": "11600000", "sL_LossRatio": "0.679742089336321", "sL_AssetLoss": "70784.2", "sL_BldgLoss": "48115", "sL_StrLoss": "26484", "sL_NStrLoss": "21631", "sL_ContLoss": "22669.2", "geom_point": "0101000020E6100000005450D56DEA5EC0E92D7997E65B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.656808485999974, 48.720418216000013 ], [ -123.656988073999969, 48.716817138000053 ], [ -123.657996079, 48.716839292000017 ], [ -123.658045385999955, 48.715850061000033 ], [ -123.66346898799999, 48.715969099000112 ], [ -123.663391026999975, 48.717536807000151 ], [ -123.663577777999976, 48.717540900000103 ], [ -123.663569994999946, 48.717697401000095 ], [ -123.667003963999917, 48.717772621000051 ], [ -123.667006026999942, 48.717731087000054 ], [ -123.672429868999956, 48.717849669000032 ], [ -123.672404278999949, 48.718366209000081 ], [ -123.673427262999951, 48.718388544000099 ], [ -123.673400242999932, 48.718934191000123 ], [ -123.67295717899999, 48.718943250000109 ], [ -123.671463470999925, 48.718973767000072 ], [ -123.671160512999961, 48.718979995000026 ], [ -123.669194516999966, 48.719020389000029 ], [ -123.666989346999955, 48.719063817000091 ], [ -123.665403593999898, 48.71909501600004 ], [ -123.65974934099998, 48.719206036000102 ], [ -123.657718102999979, 48.719191103000121 ], [ -123.657757635999957, 48.719637959000103 ], [ -123.657828629999955, 48.720440637000053 ], [ -123.656808485999974, 48.720418216000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118632333", "BldgCostT": "81078333", "sL_LossRatio": "0.775560907153624", "sL_AssetLoss": "1154380", "sL_BldgLoss": "895292", "sL_StrLoss": "457302", "sL_NStrLoss": "437990", "sL_ContLoss": "259088", "geom_point": "0101000020E6100000D1E76170A6EB5EC0A15C9EF7145E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.67796566599992, 48.753615544000048 ], [ -123.677915014999925, 48.751640699000077 ], [ -123.677914892999951, 48.751621818000082 ], [ -123.677901907, 48.749270297000152 ], [ -123.677887867999971, 48.74740267700011 ], [ -123.677869689999923, 48.744977198000086 ], [ -123.677807399999935, 48.744863113000044 ], [ -123.677666097999989, 48.744781710000112 ], [ -123.676647877, 48.744416997000059 ], [ -123.675559633999981, 48.744411670000041 ], [ -123.675592886999979, 48.743739917000099 ], [ -123.675373582999939, 48.74373513700003 ], [ -123.675397935, 48.743243238000062 ], [ -123.674931873999938, 48.743233079000106 ], [ -123.67487368099998, 48.7444083070001 ], [ -123.671625648999978, 48.744392321000113 ], [ -123.671580305999925, 48.744392092000062 ], [ -123.671427020999886, 48.744334697000056 ], [ -123.671321702999961, 48.744210688000045 ], [ -123.67129302099994, 48.740654808000059 ], [ -123.671287836, 48.739497933000045 ], [ -123.671276819999946, 48.737037903000029 ], [ -123.670105801999938, 48.737100600000055 ], [ -123.664892500999954, 48.737045206000118 ], [ -123.66575665299996, 48.735150140000037 ], [ -123.665787803999976, 48.735081799000028 ], [ -123.666023439999961, 48.734565056000037 ], [ -123.666521976999917, 48.733471617000063 ], [ -123.666551749999925, 48.733406375000129 ], [ -123.666733852999954, 48.733006914000022 ], [ -123.667452892999904, 48.731429788000128 ], [ -123.667500813999979, 48.731147801000105 ], [ -123.667703156999963, 48.731300865000094 ], [ -123.667570096999953, 48.72985600300008 ], [ -123.667605312999981, 48.729863105000078 ], [ -123.668249807999956, 48.730091691000013 ], [ -123.668486413999986, 48.730112201000019 ], [ -123.668823896999953, 48.730097102000101 ], [ -123.669052849999986, 48.730041208000067 ], [ -123.669122130999952, 48.73002430000011 ], [ -123.669298875999942, 48.729949137000048 ], [ -123.669322338999933, 48.729939165000083 ], [ -123.669340101999978, 48.729931606000015 ], [ -123.669400735999957, 48.729905832000085 ], [ -123.66945774, 48.729881605000109 ], [ -123.669579840999987, 48.729829726000041 ], [ -123.669623316999932, 48.729817115000088 ], [ -123.670899645999924, 48.72944740400002 ], [ -123.671026275999935, 48.729410702000095 ], [ -123.671038142999976, 48.729402641000036 ], [ -123.671300276999915, 48.729224781000021 ], [ -123.671387541999962, 48.729165574000085 ], [ -123.67147432199998, 48.729106688000115 ], [ -123.671474771999925, 48.729106378000026 ], [ -123.671595611999933, 48.729024391000095 ], [ -123.671911078999983, 48.728810319000139 ], [ -123.672011784999981, 48.728742012000048 ], [ -123.672325905999983, 48.728528832000059 ], [ -123.672082245999903, 48.728186896000096 ], [ -123.672044090999947, 48.728133362000051 ], [ -123.671753185999989, 48.727894485 ], [ -123.671498124999957, 48.727626365000063 ], [ -123.671453770999932, 48.727579721000041 ], [ -123.671310717999944, 48.727371109000075 ], [ -123.671125244999971, 48.72719581500008 ], [ -123.670742979999957, 48.726991892000086 ], [ -123.670143871999926, 48.726615622000068 ], [ -123.669832489000015, 48.726379003000041 ], [ -123.669581912999945, 48.726148192000068 ], [ -123.669572305999921, 48.726134790000046 ], [ -123.669340662999986, 48.72581127100004 ], [ -123.669081347999949, 48.725017930000043 ], [ -123.66918406099991, 48.724808378 ], [ -123.669427736999978, 48.724603704000046 ], [ -123.669784717999917, 48.72441323300005 ], [ -123.670127169999944, 48.724270212000079 ], [ -123.670435858999937, 48.724204873000076 ], [ -123.671080655999944, 48.724124320000037 ], [ -123.671482417999968, 48.723988893000076 ], [ -123.671653014999947, 48.723888975000087 ], [ -123.671784158999941, 48.723762958000108 ], [ -123.671738565999974, 48.723613264000043 ], [ -123.671602547999939, 48.72345437900001 ], [ -123.671361364999896, 48.723253462000066 ], [ -123.671270471999961, 48.723114588000065 ], [ -123.670984183999963, 48.722454886000065 ], [ -123.670832976, 48.721944204000117 ], [ -123.670689577999937, 48.721742806000094 ], [ -123.670436675999937, 48.721531800000058 ], [ -123.670085009999966, 48.721288002000108 ], [ -123.67007034599996, 48.721273562000114 ], [ -123.66994259199997, 48.72114789900008 ], [ -123.66989190399994, 48.721020611000036 ], [ -123.669880817999967, 48.720834703000051 ], [ -123.670044712999939, 48.720458006000037 ], [ -123.670542720999933, 48.719709348000016 ], [ -123.670653409999943, 48.719542996000058 ], [ -123.67069433899999, 48.719497553000075 ], [ -123.670956997999951, 48.719205961000036 ], [ -123.670972469999967, 48.719188729000109 ], [ -123.671160512999961, 48.718979995000026 ], [ -123.671463470999925, 48.718973767000072 ], [ -123.67295717899999, 48.718943250000109 ], [ -123.673400242999932, 48.718934191000123 ], [ -123.673369318999974, 48.7195586650001 ], [ -123.673853616999935, 48.719569236000019 ], [ -123.67383342899997, 48.719976986000091 ], [ -123.675781772999954, 48.720019487000073 ], [ -123.675746370999931, 48.720735118000043 ], [ -123.675992407999942, 48.720740483000085 ], [ -123.675814259999967, 48.724341570000028 ], [ -123.67366132799998, 48.724294608 ], [ -123.673577075999958, 48.725995925000113 ], [ -123.673807602999915, 48.726000956000064 ], [ -123.673792438999953, 48.72630718100006 ], [ -123.67402021299992, 48.726312151000037 ], [ -123.673908560999976, 48.728566991000029 ], [ -123.673907982999964, 48.728578655000092 ], [ -123.67435172899999, 48.728588335000083 ], [ -123.674492614999963, 48.728591409000039 ], [ -123.674584724999988, 48.726730800000027 ], [ -123.680009623999922, 48.726848995000054 ], [ -123.679944833999926, 48.728160803000023 ], [ -123.682027314999971, 48.728206101000069 ], [ -123.682044665999911, 48.727854488000048 ], [ -123.682884581999957, 48.727872746000095 ], [ -123.682950502999986, 48.726536306000114 ], [ -123.682955159999963, 48.726536406000022 ], [ -123.683007259999982, 48.725480104000056 ], [ -123.684062963999935, 48.725503044000064 ], [ -123.684090787999963, 48.724938646000041 ], [ -123.684020423999982, 48.724937118000142 ], [ -123.68411053200002, 48.723109297000086 ], [ -123.682950794999954, 48.723084095000083 ], [ -123.682967122999983, 48.722753060000052 ], [ -123.682489797999935, 48.722742685000071 ], [ -123.682552231, 48.721477047000072 ], [ -123.678987848999924, 48.721399496000103 ], [ -123.679115415999945, 48.718817170000072 ], [ -123.681619756999964, 48.718765795000124 ], [ -123.684156615999939, 48.718713668000142 ], [ -123.685186400999925, 48.718692481000076 ], [ -123.685210322, 48.718676811000122 ], [ -123.685679431999944, 48.718681397000047 ], [ -123.687515967999943, 48.718699416000092 ], [ -123.68803209, 48.71870444900005 ], [ -123.688915087999987, 48.718713095000112 ], [ -123.689105343999984, 48.71871496800005 ], [ -123.689186878999948, 48.718715746000093 ], [ -123.689309523999952, 48.718716950000065 ], [ -123.690261102999926, 48.718726252000081 ], [ -123.69090046099997, 48.718732492000086 ], [ -123.691197798999937, 48.718735401000146 ], [ -123.691703919999924, 48.718741313000073 ], [ -123.691604538999968, 48.720764047000031 ], [ -123.694269066999965, 48.720821717000135 ], [ -123.694621005999949, 48.7223370070001 ], [ -123.69462054499999, 48.722590226000065 ], [ -123.694619577999902, 48.723129939000046 ], [ -123.694619175999918, 48.723354824000054 ], [ -123.694618628999962, 48.723642766000111 ], [ -123.694618523999949, 48.723714908000041 ], [ -123.694617895999968, 48.724059190000048 ], [ -123.694626064999937, 48.724121818000057 ], [ -123.694663428999959, 48.724408449000101 ], [ -123.694702132999936, 48.72470541900006 ], [ -123.694715135999971, 48.724805084000103 ], [ -123.694736309999954, 48.724967492000118 ], [ -123.694731256999958, 48.725144595000081 ], [ -123.694727677999964, 48.725270473000094 ], [ -123.694714144999963, 48.725746730000019 ], [ -123.694708156999965, 48.725955500000019 ], [ -123.692508274999923, 48.725942602000032 ], [ -123.691966473999969, 48.725939422000081 ], [ -123.68919272, 48.725982691000127 ], [ -123.689070937999972, 48.725984588000188 ], [ -123.688798388999928, 48.725988834000127 ], [ -123.688459701999975, 48.725994098000058 ], [ -123.687752494999984, 48.726005117000042 ], [ -123.687201552999923, 48.726013697000042 ], [ -123.68519981099999, 48.725997301000056 ], [ -123.685201079999956, 48.726902721000087 ], [ -123.685202289999921, 48.727792605000047 ], [ -123.68515798699994, 48.728306190000069 ], [ -123.68514950499997, 48.729772380000014 ], [ -123.685044320999936, 48.72989620400012 ], [ -123.68472420599997, 48.730055982000088 ], [ -123.684797467999928, 48.730098899000097 ], [ -123.68511378, 48.730284152000102 ], [ -123.685306671999967, 48.730397094000118 ], [ -123.685643407, 48.730594267000107 ], [ -123.685780355, 48.73067449600012 ], [ -123.686801578999948, 48.73127247400005 ], [ -123.687086500999953, 48.731439302000076 ], [ -123.68869567199998, 48.732313289000018 ], [ -123.690797411999952, 48.733454694000045 ], [ -123.693771606999945, 48.734953167000121 ], [ -123.694148612999982, 48.735143089000118 ], [ -123.69429802799999, 48.735221180000053 ], [ -123.694836344999928, 48.735502500000038 ], [ -123.696926316999949, 48.736594594000103 ], [ -123.697133193999889, 48.736723395000055 ], [ -123.697307204999959, 48.736913698000116 ], [ -123.697360393999972, 48.737073518000081 ], [ -123.697360467999928, 48.737651601000017 ], [ -123.697360478999883, 48.737723562000085 ], [ -123.697360500999963, 48.73784849500003 ], [ -123.69729762899999, 48.738190393000068 ], [ -123.697286016999939, 48.738253540000059 ], [ -123.697263024999927, 48.738378667000084 ], [ -123.697230900999898, 48.738553200000091 ], [ -123.697277691999886, 48.738761498000102 ], [ -123.69744818799991, 48.739050786000135 ], [ -123.697756698999967, 48.739379201000055 ], [ -123.69795655399993, 48.739492584000104 ], [ -123.698529586999939, 48.739817703000064 ], [ -123.69880832599992, 48.74008960400004 ], [ -123.698891737999958, 48.740239639000087 ], [ -123.698949285999959, 48.74034309500005 ], [ -123.699011603999921, 48.740596801000095 ], [ -123.699041896999915, 48.741363485000136 ], [ -123.699058821999941, 48.741850504000119 ], [ -123.698986087999913, 48.742141799000109 ], [ -123.698780486999922, 48.742402401000056 ], [ -123.698459557999982, 48.742728091000068 ], [ -123.698234496999987, 48.742956497000073 ], [ -123.698054599, 48.743218504000033 ], [ -123.697867213999984, 48.743579409000091 ], [ -123.697742172999952, 48.744106598 ], [ -123.697658976999961, 48.745000601000065 ], [ -123.697545098999953, 48.745246013000042 ], [ -123.696817279999934, 48.746479689000125 ], [ -123.695473264999947, 48.746450657000061 ], [ -123.69548113899999, 48.746290239000082 ], [ -123.69395802199989, 48.746257318000026 ], [ -123.693978240999968, 48.745845637000052 ], [ -123.691718865999974, 48.745796762000097 ], [ -123.691736679999906, 48.745434389000089 ], [ -123.691203468999944, 48.74542284800004 ], [ -123.691222638999989, 48.745032982000076 ], [ -123.690943681999912, 48.745026943000042 ], [ -123.690970377999975, 48.744484088000021 ], [ -123.690723306999985, 48.744478738000112 ], [ -123.690900388, 48.740877745000077 ], [ -123.691144146999974, 48.740883023000016 ], [ -123.691182219999945, 48.740108649000085 ], [ -123.69159093199994, 48.740117497000028 ], [ -123.691647264999943, 48.738971457000098 ], [ -123.69357137599999, 48.739013090000043 ], [ -123.69361322599994, 48.738160946000022 ], [ -123.690763899000018, 48.738099281000075 ], [ -123.69076352099998, 48.738106961000078 ], [ -123.689915090999961, 48.738088584000117 ], [ -123.689892610999891, 48.738545581000061 ], [ -123.689751874999928, 48.738542532000096 ], [ -123.689714045999935, 48.739311484000027 ], [ -123.688982741999908, 48.739295637000026 ], [ -123.688828485999963, 48.742429996000098 ], [ -123.684812458999957, 48.742342887000106 ], [ -123.684776160999959, 48.74307909300007 ], [ -123.684119722, 48.743064840000031 ], [ -123.684021442999978, 48.745057506000137 ], [ -123.68235576899994, 48.745021323000046 ], [ -123.682345093999942, 48.745237604000046 ], [ -123.684174267999978, 48.745277338000086 ], [ -123.68414749, 48.745820266000109 ], [ -123.684394692999959, 48.745825634000091 ], [ -123.684380463999929, 48.746114155000107 ], [ -123.684425508999951, 48.746115133000046 ], [ -123.68441185599994, 48.746391987000067 ], [ -123.684432423999937, 48.746392434000029 ], [ -123.684417968999981, 48.7466855770001 ], [ -123.684420641999964, 48.746685635000084 ], [ -123.684326538, 48.748593726000131 ], [ -123.686716174999901, 48.748645580000094 ], [ -123.686538743999975, 48.752246522000092 ], [ -123.683169171, 48.752173389000127 ], [ -123.683126765999944, 48.753032642000051 ], [ -123.682383254999976, 48.753003611000118 ], [ -123.681579915999976, 48.752991100000102 ], [ -123.67796566599992, 48.753615544000048 ] ], [ [ -123.676087626999959, 48.739524916000029 ], [ -123.676092478999948, 48.739426888000054 ], [ -123.67601131899994, 48.739425120000085 ], [ -123.676006467999969, 48.739523148000096 ], [ -123.676087626999959, 48.739524916000029 ] ], [ [ -123.677820001999962, 48.73840376400004 ], [ -123.677830665999949, 48.738188096000073 ], [ -123.67760114099994, 48.738183097000089 ], [ -123.677590474999974, 48.738398767000071 ], [ -123.677820001999962, 48.73840376400004 ] ], [ [ -123.670790538999981, 48.7362047290001 ], [ -123.670801316999984, 48.735987409000067 ], [ -123.668437967999978, 48.735935758000018 ], [ -123.668427178999963, 48.736153077000075 ], [ -123.670790538999981, 48.7362047290001 ] ], [ [ -123.681754632, 48.731814394000061 ], [ -123.681755090999928, 48.73180509900007 ], [ -123.680992891999921, 48.731788524000095 ], [ -123.677564606999908, 48.731713903000077 ], [ -123.677537472000012, 48.732262704000078 ], [ -123.674223578999928, 48.732190468000049 ], [ -123.67421224899995, 48.732419286000074 ], [ -123.671714586999911, 48.732364773000022 ], [ -123.671712720999977, 48.732402404000027 ], [ -123.672990316999972, 48.732430295000036 ], [ -123.672935061999922, 48.733545529000061 ], [ -123.676350262999946, 48.733620010000081 ], [ -123.676241156999978, 48.735825246000047 ], [ -123.676900135999958, 48.735839605000116 ], [ -123.676996929999987, 48.733882682000086 ], [ -123.67787961099998, 48.733901909000046 ], [ -123.677975497999981, 48.731962400000043 ], [ -123.680767240999955, 48.732023163000122 ], [ -123.680778597, 48.731793169000063 ], [ -123.680993281, 48.731797838000055 ], [ -123.681754632, 48.731814394000061 ] ], [ [ -123.690479334999935, 48.723751311000107 ], [ -123.690615478999987, 48.720981822000077 ], [ -123.688569982, 48.7209374870001 ], [ -123.688545730999948, 48.721430389000091 ], [ -123.6896222459999, 48.72145372700006 ], [ -123.689590530999936, 48.722098618000103 ], [ -123.690010469999933, 48.722107719000064 ], [ -123.689930236999942, 48.723739414000107 ], [ -123.690479334999935, 48.723751311000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.790701909568656", "sL_AssetLoss": "38438", "sL_BldgLoss": "30393", "sL_StrLoss": "16100", "sL_NStrLoss": "14293", "sL_ContLoss": "8045", "geom_point": "0101000020E61000006AA9DD2B4AEC5EC0BB20C77BFA5F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.690356142999974, 48.747450451000098 ], [ -123.695783475, 48.747567839000091 ], [ -123.695758021999964, 48.748086483000044 ], [ -123.695690089999943, 48.748144796000091 ], [ -123.69561024299999, 48.748183909000055 ], [ -123.695259188999955, 48.748355761000035 ], [ -123.694870390999967, 48.748546116000043 ], [ -123.694586613999959, 48.748764402000063 ], [ -123.694572663999978, 48.748787496000084 ], [ -123.69431310399996, 48.749218097000082 ], [ -123.693789281999955, 48.750834579000077 ], [ -123.69359738799993, 48.751426704000011 ], [ -123.693540814999949, 48.751527403000132 ], [ -123.691121872999972, 48.751564964000075 ], [ -123.691149586, 48.753154680000122 ], [ -123.689161342999952, 48.753166587000116 ], [ -123.689146577999935, 48.752087144 ], [ -123.689554686999898, 48.752084703 ], [ -123.689543606999919, 48.751275122000095 ], [ -123.689951706999977, 48.751272679000095 ], [ -123.689936926999934, 48.750193237000119 ], [ -123.690221298999944, 48.750191534000109 ], [ -123.690356142999974, 48.747450451000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129182000", "BldgCostT": "86045000", "sL_LossRatio": "0.750951601204429", "sL_AssetLoss": "1207044.5", "sL_BldgLoss": "906432", "sL_StrLoss": "447354", "sL_NStrLoss": "459078", "sL_ContLoss": "300612.5", "geom_point": "0101000020E6100000121C246507EA5EC0A1876F9B885D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.663852216999913, 48.745844737000027 ], [ -123.661744958999975, 48.744549899000091 ], [ -123.661638181999976, 48.744484265000025 ], [ -123.661518770999976, 48.744410883000157 ], [ -123.661258254999964, 48.744250807000078 ], [ -123.660748244999951, 48.74393740700004 ], [ -123.660736653999933, 48.743930275000068 ], [ -123.659926138999964, 48.743432172000048 ], [ -123.659685995999922, 48.743284595000056 ], [ -123.657456410999913, 48.741913612000126 ], [ -123.655483496999963, 48.740623182000064 ], [ -123.654095256999966, 48.739715108000134 ], [ -123.653576921999985, 48.73937603400006 ], [ -123.652019343999982, 48.738357112000109 ], [ -123.651742186999911, 48.738175797000125 ], [ -123.651275777, 48.737834497000051 ], [ -123.650812558, 48.737495497000083 ], [ -123.650281397999947, 48.737106786 ], [ -123.650237665999896, 48.737074795000069 ], [ -123.650228150999936, 48.737067822 ], [ -123.649475826999918, 48.736517172000035 ], [ -123.643796470999987, 48.732268942000125 ], [ -123.64372546, 48.732216625000056 ], [ -123.643131030999882, 48.731771124000026 ], [ -123.642987113999965, 48.731663436000062 ], [ -123.64179969099996, 48.730775079000047 ], [ -123.641673788999938, 48.730680859000131 ], [ -123.640916248999986, 48.730114079000025 ], [ -123.640571958999942, 48.729858622000059 ], [ -123.640204979, 48.729461159000032 ], [ -123.639095590999958, 48.728270572000078 ], [ -123.63898157600002, 48.728148204000057 ], [ -123.638934592999973, 48.728097245000107 ], [ -123.638666467999883, 48.72781 ], [ -123.636266894999963, 48.72523446600011 ], [ -123.63534158299997, 48.724251373000058 ], [ -123.634814920999958, 48.723548459000057 ], [ -123.633715018999951, 48.721908969000047 ], [ -123.633789655999948, 48.721855655000105 ], [ -123.633995964999926, 48.721802553000032 ], [ -123.634056414999975, 48.721868791000098 ], [ -123.636706249999961, 48.722438584000081 ], [ -123.637212665, 48.722505853000015 ], [ -123.636640218999958, 48.719138263000104 ], [ -123.638795771999966, 48.719127516000071 ], [ -123.638847186999939, 48.719128655000063 ], [ -123.638804484999952, 48.719978340000125 ], [ -123.63892703499999, 48.71998105600003 ], [ -123.638923229999989, 48.720056767000102 ], [ -123.639852877999928, 48.720077355000072 ], [ -123.639900869999977, 48.719121989000072 ], [ -123.641786404999934, 48.719112532000111 ], [ -123.643599100999936, 48.719103393000104 ], [ -123.643632965999984, 48.718254138000098 ], [ -123.643633531999939, 48.718239937000057 ], [ -123.644767514999955, 48.718265001000091 ], [ -123.645373094999954, 48.71827838100004 ], [ -123.645360850999936, 48.718522703000104 ], [ -123.645707998999981, 48.718530372000053 ], [ -123.645644905999973, 48.719789448000071 ], [ -123.649894181, 48.71988322 ], [ -123.650894629999968, 48.720418982000083 ], [ -123.650786947999947, 48.722572511000102 ], [ -123.652888076999886, 48.722618796000063 ], [ -123.652743624999957, 48.725509909000024 ], [ -123.652708150999928, 48.726219833000108 ], [ -123.647283393999928, 48.726100249000091 ], [ -123.647371375999938, 48.724343490000066 ], [ -123.647388998999958, 48.723991580000053 ], [ -123.647376326999975, 48.723991651000034 ], [ -123.64735877899993, 48.724342047000043 ], [ -123.64732946599996, 48.72492736800006 ], [ -123.644442065999939, 48.724863605000124 ], [ -123.64441453299996, 48.725412676000133 ], [ -123.645660211999925, 48.725440193000061 ], [ -123.645626908999958, 48.726104667000087 ], [ -123.645786546999929, 48.726108193000066 ], [ -123.645648119999976, 48.728870145000059 ], [ -123.645777731999914, 48.728873008000093 ], [ -123.645793861999962, 48.728551198000034 ], [ -123.647339961999933, 48.728585328000065 ], [ -123.647343000999967, 48.728524636000067 ], [ -123.65276804, 48.72864421600012 ], [ -123.652763652999965, 48.728731993000082 ], [ -123.655224857999883, 48.728786152000119 ], [ -123.655218216999941, 48.728919155000078 ], [ -123.655652178999958, 48.728928697000107 ], [ -123.65571236999989, 48.727722645000036 ], [ -123.65495768199996, 48.727706047000062 ], [ -123.654998845999927, 48.726881483000085 ], [ -123.653286571999971, 48.726843805000065 ], [ -123.653333474999926, 48.725904938000077 ], [ -123.653466456000032, 48.723242770000113 ], [ -123.655011903999977, 48.723276779000038 ], [ -123.655054501999928, 48.722423346000035 ], [ -123.658130219999961, 48.723850216000159 ], [ -123.657854916999952, 48.720737842000077 ], [ -123.657869688999938, 48.720441539000049 ], [ -123.657828629999955, 48.720440637000053 ], [ -123.657757635999957, 48.719637959000103 ], [ -123.657718102999979, 48.719191103000121 ], [ -123.65974934099998, 48.719206036000102 ], [ -123.665403593999898, 48.71909501600004 ], [ -123.666989346999955, 48.719063817000091 ], [ -123.669194516999966, 48.719020389000029 ], [ -123.671160512999961, 48.718979995000026 ], [ -123.670972469999967, 48.719188729000109 ], [ -123.670956997999951, 48.719205961000036 ], [ -123.67069433899999, 48.719497553000075 ], [ -123.670653409999943, 48.719542996000058 ], [ -123.670542720999933, 48.719709348000016 ], [ -123.670044712999939, 48.720458006000037 ], [ -123.669880817999967, 48.720834703000051 ], [ -123.66989190399994, 48.721020611000036 ], [ -123.66994259199997, 48.72114789900008 ], [ -123.67007034599996, 48.721273562000114 ], [ -123.670085009999966, 48.721288002000108 ], [ -123.670436675999937, 48.721531800000058 ], [ -123.670689577999937, 48.721742806000094 ], [ -123.670832976, 48.721944204000117 ], [ -123.670984183999963, 48.722454886000065 ], [ -123.671270471999961, 48.723114588000065 ], [ -123.671361364999896, 48.723253462000066 ], [ -123.671602547999939, 48.72345437900001 ], [ -123.671738565999974, 48.723613264000043 ], [ -123.671784158999941, 48.723762958000108 ], [ -123.671653014999947, 48.723888975000087 ], [ -123.671482417999968, 48.723988893000076 ], [ -123.671080655999944, 48.724124320000037 ], [ -123.670435858999937, 48.724204873000076 ], [ -123.670127169999944, 48.724270212000079 ], [ -123.669784717999917, 48.72441323300005 ], [ -123.669427736999978, 48.724603704000046 ], [ -123.66918406099991, 48.724808378 ], [ -123.669081347999949, 48.725017930000043 ], [ -123.669340662999986, 48.72581127100004 ], [ -123.669572305999921, 48.726134790000046 ], [ -123.669581912999945, 48.726148192000068 ], [ -123.669832489000015, 48.726379003000041 ], [ -123.670143871999926, 48.726615622000068 ], [ -123.670742979999957, 48.726991892000086 ], [ -123.671125244999971, 48.72719581500008 ], [ -123.671310717999944, 48.727371109000075 ], [ -123.671453770999932, 48.727579721000041 ], [ -123.671498124999957, 48.727626365000063 ], [ -123.671753185999989, 48.727894485 ], [ -123.672044090999947, 48.728133362000051 ], [ -123.672082245999903, 48.728186896000096 ], [ -123.672325905999983, 48.728528832000059 ], [ -123.672011784999981, 48.728742012000048 ], [ -123.671911078999983, 48.728810319000139 ], [ -123.671595611999933, 48.729024391000095 ], [ -123.671474771999925, 48.729106378000026 ], [ -123.67147432199998, 48.729106688000115 ], [ -123.671387541999962, 48.729165574000085 ], [ -123.671300276999915, 48.729224781000021 ], [ -123.671038142999976, 48.729402641000036 ], [ -123.671026275999935, 48.729410702000095 ], [ -123.670899645999924, 48.72944740400002 ], [ -123.669623316999932, 48.729817115000088 ], [ -123.669579840999987, 48.729829726000041 ], [ -123.66945774, 48.729881605000109 ], [ -123.669400735999957, 48.729905832000085 ], [ -123.669340101999978, 48.729931606000015 ], [ -123.669322338999933, 48.729939165000083 ], [ -123.669298875999942, 48.729949137000048 ], [ -123.669122130999952, 48.73002430000011 ], [ -123.669052849999986, 48.730041208000067 ], [ -123.668823896999953, 48.730097102000101 ], [ -123.668486413999986, 48.730112201000019 ], [ -123.668249807999956, 48.730091691000013 ], [ -123.667605312999981, 48.729863105000078 ], [ -123.667570096999953, 48.72985600300008 ], [ -123.667703156999963, 48.731300865000094 ], [ -123.667500813999979, 48.731147801000105 ], [ -123.667452892999904, 48.731429788000128 ], [ -123.666733852999954, 48.733006914000022 ], [ -123.666551749999925, 48.733406375000129 ], [ -123.666521976999917, 48.733471617000063 ], [ -123.666023439999961, 48.734565056000037 ], [ -123.665787803999976, 48.735081799000028 ], [ -123.66575665299996, 48.735150140000037 ], [ -123.664892500999954, 48.737045206000118 ], [ -123.670105801999938, 48.737100600000055 ], [ -123.671276819999946, 48.737037903000029 ], [ -123.671287836, 48.739497933000045 ], [ -123.67129302099994, 48.740654808000059 ], [ -123.671321702999961, 48.744210688000045 ], [ -123.671427020999886, 48.744334697000056 ], [ -123.671580305999925, 48.744392092000062 ], [ -123.671625648999978, 48.744392321000113 ], [ -123.671574377999974, 48.745387185 ], [ -123.669394665999917, 48.745339575000074 ], [ -123.669449513999922, 48.744234506000097 ], [ -123.668894013999989, 48.744222366000017 ], [ -123.668915186999982, 48.743795849000087 ], [ -123.668021434999915, 48.743776310000051 ], [ -123.667996573999957, 48.744276901000063 ], [ -123.668264197999989, 48.744282752000061 ], [ -123.668235583999973, 48.744858971000077 ], [ -123.6682364399999, 48.744923462000017 ], [ -123.668644490999966, 48.744921094000041 ], [ -123.668646215999942, 48.745051173000036 ], [ -123.668814023999943, 48.745054841000112 ], [ -123.668807312999917, 48.74519003300005 ], [ -123.669056122999962, 48.745188589000115 ], [ -123.66905826299994, 48.745349888000121 ], [ -123.671573467999949, 48.745404829000016 ], [ -123.67137155099999, 48.749322320000061 ], [ -123.671318786999947, 48.750345655000089 ], [ -123.671310348999924, 48.750509542000025 ], [ -123.671065324999944, 48.750312598000093 ], [ -123.670601503999961, 48.749997186000094 ], [ -123.670510789999966, 48.749935515000075 ], [ -123.669661392999927, 48.749413717000088 ], [ -123.667786567999954, 48.748261972000073 ], [ -123.667715524999977, 48.748218319000081 ], [ -123.663852216999913, 48.745844737000027 ] ], [ [ -123.66629686899995, 48.743012944000064 ], [ -123.666323963999943, 48.742467761000043 ], [ -123.665610384999923, 48.742452144000055 ], [ -123.665583281999915, 48.742997326000136 ], [ -123.66629686899995, 48.743012944000064 ] ], [ [ -123.663634249999959, 48.735699086000132 ], [ -123.663791789999934, 48.732532005000081 ], [ -123.662830587999963, 48.732510940000061 ], [ -123.662908415999979, 48.730946814000077 ], [ -123.662448666999978, 48.730936734000124 ], [ -123.662458113999946, 48.730746929000084 ], [ -123.661398798999983, 48.730723698000077 ], [ -123.661391254999955, 48.730875205000103 ], [ -123.660986730999966, 48.730866332000112 ], [ -123.660963062999954, 48.73134161400003 ], [ -123.65926374899999, 48.731304320000035 ], [ -123.65919237199995, 48.732736553000137 ], [ -123.653826007999939, 48.732618603000105 ], [ -123.653816166999931, 48.732815626000153 ], [ -123.65563588399999, 48.732855653000101 ], [ -123.655632155999939, 48.732930344000074 ], [ -123.656963943, 48.732959618000081 ], [ -123.656948389999982, 48.733271370000118 ], [ -123.658269114999939, 48.733300385000057 ], [ -123.65812481099999, 48.736194445000109 ], [ -123.658450296999959, 48.736201593000018 ], [ -123.65848086699998, 48.735588431000075 ], [ -123.661376831, 48.735651986000043 ], [ -123.661376949999948, 48.735649602000073 ], [ -123.663634249999959, 48.735699086000132 ] ], [ [ -123.665632251999952, 48.724859382000048 ], [ -123.66572269699995, 48.723039192000044 ], [ -123.663837491999956, 48.72299789300007 ], [ -123.663863658, 48.722471707000075 ], [ -123.663199486999986, 48.722457149000071 ], [ -123.663124538999924, 48.72396388400005 ], [ -123.662250227999934, 48.723944714 ], [ -123.66223509799994, 48.724248738000021 ], [ -123.662377022, 48.72425185000008 ], [ -123.662277898999946, 48.726243753000091 ], [ -123.663071284999916, 48.72626114800002 ], [ -123.663115954999938, 48.725363214000019 ], [ -123.663730489999949, 48.725376684000032 ], [ -123.663758258999962, 48.724818328000012 ], [ -123.665632251999952, 48.724859382000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11006834", "BldgCostT": "7063334", "sL_LossRatio": "0.781066618411189", "sL_AssetLoss": "77366", "sL_BldgLoss": "60428", "sL_StrLoss": "37263", "sL_NStrLoss": "23165", "sL_ContLoss": "16938", "geom_point": "0101000020E610000012A6BDFB02E85EC0DF3D6105CF5E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.629293479999944, 48.743288196 ], [ -123.628446891999928, 48.743148589000043 ], [ -123.627904598999947, 48.743205608000096 ], [ -123.62783949199995, 48.743147408 ], [ -123.627464695999961, 48.742812486000034 ], [ -123.627368422999922, 48.742776902000131 ], [ -123.627110009999939, 48.742850999000069 ], [ -123.626686400999972, 48.74261028600008 ], [ -123.625745710999936, 48.742416610000056 ], [ -123.625469893999977, 48.742140301000056 ], [ -123.625046219999959, 48.741997902000087 ], [ -123.62373162199998, 48.741172061000086 ], [ -123.623708939999986, 48.741157812000075 ], [ -123.623708531999981, 48.741124833000129 ], [ -123.623656885999964, 48.741125112000084 ], [ -123.62341378099994, 48.740972397000057 ], [ -123.623086906999902, 48.740857088000048 ], [ -123.622259677999963, 48.740996595000155 ], [ -123.620775176000024, 48.740986695000103 ], [ -123.620568499999933, 48.74074459400002 ], [ -123.618280401999982, 48.740505307000035 ], [ -123.616608089999971, 48.740442606000059 ], [ -123.615957295, 48.74064340400006 ], [ -123.615612780999953, 48.740677099000081 ], [ -123.615476485999949, 48.740032392000082 ], [ -123.615487480999931, 48.73865665800006 ], [ -123.615584299999909, 48.738711812000105 ], [ -123.616279014999975, 48.738991407000064 ], [ -123.617057003999932, 48.739262893000067 ], [ -123.617248502, 48.739423085000098 ], [ -123.618089488999942, 48.739522991000079 ], [ -123.618707292999972, 48.739526895000083 ], [ -123.619455409999887, 48.739449798000116 ], [ -123.6196575929999, 48.739399419000051 ], [ -123.620107804999947, 48.739170596000044 ], [ -123.62019511599999, 48.739082477000032 ], [ -123.620246683999966, 48.739030406000097 ], [ -123.620895560999898, 48.739032909000102 ], [ -123.621583327999986, 48.739035559000058 ], [ -123.621858413999945, 48.739036614000064 ], [ -123.623039419999913, 48.739046725000044 ], [ -123.624080049999947, 48.739637379000051 ], [ -123.624181401999934, 48.739694898000067 ], [ -123.624403863999973, 48.739800122000126 ], [ -123.624830847999988, 48.740002101000137 ], [ -123.624965904999925, 48.740065969000035 ], [ -123.625211554999936, 48.740182153000021 ], [ -123.625359195999934, 48.740252007000052 ], [ -123.62551486299995, 48.740313205000071 ], [ -123.625815910999933, 48.740431596000064 ], [ -123.626079794999939, 48.740503310000129 ], [ -123.62765942599998, 48.740946354000151 ], [ -123.627738188999942, 48.740412851000016 ], [ -123.62790016699995, 48.740167917000058 ], [ -123.628565442999985, 48.7398386180001 ], [ -123.62960365899994, 48.739186238000023 ], [ -123.629614625999949, 48.739175270000011 ], [ -123.630063517999957, 48.739185247000044 ], [ -123.631411960999969, 48.739215207000036 ], [ -123.631409502999958, 48.73926395400013 ], [ -123.631969544999976, 48.739276392000114 ], [ -123.631952978999919, 48.739604909000128 ], [ -123.632321150999942, 48.739613085000094 ], [ -123.63228811, 48.740268428000078 ], [ -123.63308288899999, 48.740264064000037 ], [ -123.633086276999961, 48.740533928000033 ], [ -123.63390231299999, 48.740529441000085 ], [ -123.633905783, 48.74080543700007 ], [ -123.634131255999989, 48.74081043900005 ], [ -123.634127711999938, 48.740880785000066 ], [ -123.631338175999957, 48.740912196000089 ], [ -123.631136888999919, 48.740944707000075 ], [ -123.630014358999944, 48.740956733000054 ], [ -123.630068484999967, 48.743113152 ], [ -123.630144781999959, 48.743831404000019 ], [ -123.630141490999947, 48.743832191000109 ], [ -123.629530810999967, 48.743782408000094 ], [ -123.629469812999957, 48.743395005000067 ], [ -123.629293479999944, 48.743288196 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.789210606522402", "sL_AssetLoss": "16405", "sL_BldgLoss": "12947", "sL_StrLoss": "7310", "sL_NStrLoss": "5637", "sL_ContLoss": "3458", "geom_point": "0101000020E6100000454E786C78E95EC05C84B57312614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.645577887999963, 48.759309875000078 ], [ -123.645650599999982, 48.757860201000078 ], [ -123.646155713999931, 48.757849305000107 ], [ -123.648013688, 48.757362210000061 ], [ -123.648625309999957, 48.757305287000122 ], [ -123.64933380799999, 48.757426290000083 ], [ -123.649935718000037, 48.75772969700008 ], [ -123.65031521599991, 48.758093621000036 ], [ -123.65039918699992, 48.759114339000114 ], [ -123.649725463999957, 48.759082697000082 ], [ -123.645577887999963, 48.759309875000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165072084", "BldgCostT": "103328334", "sL_LossRatio": "0.726729477102231", "sL_AssetLoss": "1232045.8", "sL_BldgLoss": "895364", "sL_StrLoss": "473653", "sL_NStrLoss": "421711", "sL_ContLoss": "336681.8", "geom_point": "0101000020E61000003DE8BFC592E95EC0617AA104265F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.64567677299999, 48.757338349000079 ], [ -123.645708392999921, 48.75670788100004 ], [ -123.646093928999932, 48.756716389000083 ], [ -123.646109292999952, 48.756409990000094 ], [ -123.64645256699994, 48.756417564000039 ], [ -123.646467694999942, 48.756115798000103 ], [ -123.647682667999959, 48.756142596000082 ], [ -123.647834409999945, 48.753114223000068 ], [ -123.648499215999934, 48.753128879 ], [ -123.648504687999917, 48.753019639000108 ], [ -123.653296123999922, 48.753125155000134 ], [ -123.653408713999923, 48.75087265300003 ], [ -123.654001063999942, 48.750885682000082 ], [ -123.654015905999941, 48.750588666000105 ], [ -123.654110644, 48.750590750000057 ], [ -123.654116133999963, 48.750480864000075 ], [ -123.653697176000023, 48.750471649000048 ], [ -123.653722706999986, 48.749960788000124 ], [ -123.652274056999943, 48.749928913000097 ], [ -123.652306399999986, 48.74928209899999 ], [ -123.650811141999952, 48.749249176000063 ], [ -123.650822261999906, 48.749026947000047 ], [ -123.650323639999968, 48.749015965000055 ], [ -123.650338804999976, 48.748712923000063 ], [ -123.649868140999942, 48.748702553000101 ], [ -123.649878381999955, 48.748497968000066 ], [ -123.647139355999968, 48.748437582000037 ], [ -123.647145682999948, 48.748311311000101 ], [ -123.64546570499999, 48.748274239000075 ], [ -123.645480875999937, 48.747971688000106 ], [ -123.644979904999957, 48.747960627000083 ], [ -123.644989945999939, 48.74776044200005 ], [ -123.641917006999932, 48.74769254800006 ], [ -123.641920312999972, 48.747626686000061 ], [ -123.641438591999986, 48.747616035000092 ], [ -123.641443691999953, 48.747514540000083 ], [ -123.640918379999917, 48.747502922000109 ], [ -123.640926171999936, 48.747347858000069 ], [ -123.640204964999924, 48.747331903000081 ], [ -123.640208827999928, 48.747255039000073 ], [ -123.639815093999943, 48.74724632700002 ], [ -123.63980991899993, 48.747076606000071 ], [ -123.640060290999884, 48.746982597000112 ], [ -123.640657807999958, 48.747112204000125 ], [ -123.640958083, 48.747100800000084 ], [ -123.641244692999948, 48.746713411000059 ], [ -123.641403591999918, 48.74668489400004 ], [ -123.64152570499999, 48.746871503000065 ], [ -123.641424889999911, 48.747503810000119 ], [ -123.641520773999943, 48.747502394000016 ], [ -123.64176308299993, 48.747132101000034 ], [ -123.641909108999982, 48.747058083000091 ], [ -123.642917306999934, 48.74727028900007 ], [ -123.642916004999933, 48.747117888000048 ], [ -123.642257586999946, 48.74674760200007 ], [ -123.642250177999955, 48.746696298000067 ], [ -123.642707386999987, 48.746686406000045 ], [ -123.642734019999978, 48.746632202000121 ], [ -123.642383395999943, 48.746418589000029 ], [ -123.642435779999971, 48.746206402000091 ], [ -123.64317128799992, 48.746317504000046 ], [ -123.643346491, 48.746400094000101 ], [ -123.643509283999919, 48.746655006000061 ], [ -123.643749108999913, 48.746666199000025 ], [ -123.644011697999971, 48.746679205000106 ], [ -123.645057093999981, 48.746475600000075 ], [ -123.645043506999968, 48.746367311000029 ], [ -123.644145690999935, 48.746516889000077 ], [ -123.644103988999944, 48.74640860200013 ], [ -123.644511505999958, 48.746334587000021 ], [ -123.644619021999958, 48.746180801000072 ], [ -123.643897091, 48.746230606000019 ], [ -123.643625913, 48.746142306000095 ], [ -123.643377002999941, 48.745935789000086 ], [ -123.642125593999978, 48.745861701000067 ], [ -123.641390204999979, 48.745920087000059 ], [ -123.640900608999956, 48.745824700000107 ], [ -123.638668696999929, 48.744766503000079 ], [ -123.63699753499999, 48.744182246000101 ], [ -123.63812723699999, 48.744176586000023 ], [ -123.643856939999964, 48.74421074400005 ], [ -123.643842597999978, 48.743545194000049 ], [ -123.643782893999912, 48.740771516000066 ], [ -123.641026988, 48.740802783000106 ], [ -123.640224546999974, 48.74081188300007 ], [ -123.639193171999977, 48.740823566000053 ], [ -123.639216803999943, 48.740353503000058 ], [ -123.635190400999988, 48.740264291000145 ], [ -123.635353416999976, 48.737026923000087 ], [ -123.631938508999937, 48.736951139000077 ], [ -123.631929736999922, 48.737125110000093 ], [ -123.629393242999981, 48.737068750000041 ], [ -123.628092570999925, 48.734411281000071 ], [ -123.628086005999961, 48.734174238000037 ], [ -123.628336622999925, 48.733440277000113 ], [ -123.628853556999914, 48.733451774000088 ], [ -123.628883391999963, 48.732860795000107 ], [ -123.633009214999959, 48.732952469000075 ], [ -123.633049676999988, 48.732149571000058 ], [ -123.631529751999921, 48.732115818000139 ], [ -123.631563134999936, 48.73145380000004 ], [ -123.630579855999983, 48.731431954000122 ], [ -123.630573771999948, 48.731552561000036 ], [ -123.629195824999954, 48.731521929000031 ], [ -123.629195715999941, 48.731524095000069 ], [ -123.628992419999932, 48.731519574000124 ], [ -123.62952425899999, 48.729961796000033 ], [ -123.630030398999935, 48.729958305000046 ], [ -123.637271426999945, 48.729950721000094 ], [ -123.637593776999935, 48.729950377000094 ], [ -123.637731556999967, 48.729640689000107 ], [ -123.638504887999929, 48.728923317000095 ], [ -123.638888332999954, 48.72845325100004 ], [ -123.638890450999938, 48.728443657000092 ], [ -123.638905985999955, 48.728372527000076 ], [ -123.63887555299999, 48.728302466000059 ], [ -123.638842931999974, 48.728267577000075 ], [ -123.638621735999962, 48.728030959000066 ], [ -123.638934592999973, 48.728097245000107 ], [ -123.63898157600002, 48.728148204000057 ], [ -123.639095590999958, 48.728270572000078 ], [ -123.640204979, 48.729461159000032 ], [ -123.640571958999942, 48.729858622000059 ], [ -123.640916248999986, 48.730114079000025 ], [ -123.641673788999938, 48.730680859000131 ], [ -123.64179969099996, 48.730775079000047 ], [ -123.642987113999965, 48.731663436000062 ], [ -123.643131030999882, 48.731771124000026 ], [ -123.64372546, 48.732216625000056 ], [ -123.643796470999987, 48.732268942000125 ], [ -123.649475826999918, 48.736517172000035 ], [ -123.650228150999936, 48.737067822 ], [ -123.650237665999896, 48.737074795000069 ], [ -123.650281397999947, 48.737106786 ], [ -123.650812558, 48.737495497000083 ], [ -123.651275777, 48.737834497000051 ], [ -123.651742186999911, 48.738175797000125 ], [ -123.652019343999982, 48.738357112000109 ], [ -123.653576921999985, 48.73937603400006 ], [ -123.654095256999966, 48.739715108000134 ], [ -123.655483496999963, 48.740623182000064 ], [ -123.657456410999913, 48.741913612000126 ], [ -123.659685995999922, 48.743284595000056 ], [ -123.659926138999964, 48.743432172000048 ], [ -123.660736653999933, 48.743930275000068 ], [ -123.660748244999951, 48.74393740700004 ], [ -123.661258254999964, 48.744250807000078 ], [ -123.661518770999976, 48.744410883000157 ], [ -123.661638181999976, 48.744484265000025 ], [ -123.661744958999975, 48.744549899000091 ], [ -123.663852216999913, 48.745844737000027 ], [ -123.667715524999977, 48.748218319000081 ], [ -123.667786567999954, 48.748261972000073 ], [ -123.669661392999927, 48.749413717000088 ], [ -123.670510789999966, 48.749935515000075 ], [ -123.670601503999961, 48.749997186000094 ], [ -123.671065324999944, 48.750312598000093 ], [ -123.671310348999924, 48.750509542000025 ], [ -123.671316963999942, 48.752016658000095 ], [ -123.67117729899999, 48.752013609000109 ], [ -123.671155646999964, 48.752450100000054 ], [ -123.669151955999951, 48.752406336000071 ], [ -123.669174370999926, 48.754094029000072 ], [ -123.66630045, 48.754110684000125 ], [ -123.666240175999945, 48.755323143000069 ], [ -123.665524540999968, 48.755321215000052 ], [ -123.664980219999975, 48.755319736000068 ], [ -123.663293507999967, 48.755315160000102 ], [ -123.663270503999982, 48.7553151010001 ], [ -123.663185601999942, 48.755313151000067 ], [ -123.663117676999917, 48.755311564000131 ], [ -123.662886143, 48.755306238000067 ], [ -123.662437892999947, 48.755295906000079 ], [ -123.660598887999967, 48.75525350700012 ], [ -123.660603720999944, 48.755156515000145 ], [ -123.65794994499997, 48.755098285000031 ], [ -123.657934778999973, 48.755402280000091 ], [ -123.657893004999934, 48.755402413000091 ], [ -123.657288932999947, 48.755404538000043 ], [ -123.654697438999918, 48.755413521000051 ], [ -123.654772669999957, 48.755188928000045 ], [ -123.653674158999962, 48.755236877000129 ], [ -123.652248986999936, 48.75537471500008 ], [ -123.651981892999956, 48.755400536000089 ], [ -123.650234970999961, 48.755329878000104 ], [ -123.649888722999904, 48.755366745000096 ], [ -123.649986638999906, 48.755524880000031 ], [ -123.649989158000011, 48.755588627000137 ], [ -123.649412334999951, 48.756969798000092 ], [ -123.649082714999963, 48.75686089600007 ], [ -123.647708200999958, 48.75686949600005 ], [ -123.646351105999884, 48.757209811000088 ], [ -123.64567677299999, 48.757338349000079 ] ], [ [ -123.66384610599998, 48.752406518000079 ], [ -123.663836744999941, 48.751695959000109 ], [ -123.661041500999886, 48.751712028000085 ], [ -123.661009995999947, 48.752344367000056 ], [ -123.66384610599998, 48.752406518000079 ] ], [ [ -123.65975324499999, 48.751533043000073 ], [ -123.659729091999921, 48.7496881510001 ], [ -123.659589336999943, 48.749685085000053 ], [ -123.659497495999958, 48.751527431000056 ], [ -123.65975324499999, 48.751533043000073 ] ], [ [ -123.661110997, 48.748203155000049 ], [ -123.66112244, 48.747973457000064 ], [ -123.660930906999951, 48.747969256000026 ], [ -123.660933988999957, 48.748204169000068 ], [ -123.661110997, 48.748203155000049 ] ], [ [ -123.652858157999958, 48.742106204000017 ], [ -123.652866138999912, 48.741946530000057 ], [ -123.64926937199999, 48.741867307000099 ], [ -123.649192674999966, 48.743399362000062 ], [ -123.652676227999962, 48.743476093000041 ], [ -123.652744829999946, 48.742103710000038 ], [ -123.652858157999958, 48.742106204000017 ] ], [ [ -123.648346274999966, 48.741735370000121 ], [ -123.648422101999969, 48.740221203000011 ], [ -123.648051479999964, 48.740213029000053 ], [ -123.648093101999962, 48.739381974000082 ], [ -123.646865886999976, 48.739354901000084 ], [ -123.64686631499994, 48.739346367000095 ], [ -123.646803241999933, 48.739344975000044 ], [ -123.646791689999944, 48.739575519000027 ], [ -123.647465488999927, 48.739590386000039 ], [ -123.647359120999965, 48.74171359700005 ], [ -123.648346274999966, 48.741735370000121 ] ], [ [ -123.635906989999953, 48.733434233 ], [ -123.635913820999932, 48.733298510000054 ], [ -123.634294714999939, 48.733262598000088 ], [ -123.63428787799991, 48.733398320000084 ], [ -123.635906989999953, 48.733434233 ] ], [ [ -123.639586801999954, 48.733316102000046 ], [ -123.639589530999984, 48.733261798000051 ], [ -123.638564443999925, 48.733239100000041 ], [ -123.638570533999896, 48.733117998000083 ], [ -123.63843260599999, 48.733114943000011 ], [ -123.638423786999951, 48.733290349000136 ], [ -123.639586801999954, 48.733316102000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.765723270440252", "sL_AssetLoss": "6360", "sL_BldgLoss": "4870", "sL_StrLoss": "2560", "sL_NStrLoss": "2310", "sL_ContLoss": "1490", "geom_point": "0101000020E61000002F58A29AEFEA5EC053F66DF38C604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.671421240000015, 48.755402427000092 ], [ -123.670412694, 48.755334304000073 ], [ -123.670317867999955, 48.755334051000048 ], [ -123.670426112999934, 48.7531527780001 ], [ -123.671325397999965, 48.753172414000076 ], [ -123.671421240000015, 48.755402427000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "346361357", "BldgCostT": "235422493", "sL_LossRatio": "0.756696545202749", "sL_AssetLoss": "2162645", "sL_BldgLoss": "1636466", "sL_StrLoss": "766430", "sL_NStrLoss": "870036", "sL_ContLoss": "526179", "geom_point": "0101000020E610000096420F6BA0E75EC00B4B4DCC445E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.616256288999978, 48.737164891000106 ], [ -123.616257484999906, 48.736818896000024 ], [ -123.616278076999919, 48.735745893000079 ], [ -123.616299898999955, 48.734994804000074 ], [ -123.616311867999983, 48.734678718000062 ], [ -123.616324875999936, 48.734206798000052 ], [ -123.616338314999922, 48.733755507000083 ], [ -123.61852459, 48.733755693000084 ], [ -123.619766189999964, 48.733720401000063 ], [ -123.622229518999973, 48.733745602000106 ], [ -123.62229338499999, 48.735542290000119 ], [ -123.622397200999941, 48.735716674000123 ], [ -123.623362991999954, 48.736543994000073 ], [ -123.623224896999943, 48.736723873000138 ], [ -123.623024982999951, 48.737399804000049 ], [ -123.622787184999964, 48.737403491000073 ], [ -123.62213279299999, 48.737264601000078 ], [ -123.621899180999918, 48.737239587000097 ], [ -123.621630704999944, 48.737258811000068 ], [ -123.621625783999946, 48.737407400000052 ], [ -123.622086781999926, 48.738012504000082 ], [ -123.622075084999921, 48.73810869500003 ], [ -123.622014405999963, 48.738182094000074 ], [ -123.621885600999946, 48.738230600000065 ], [ -123.621361592999975, 48.738334300000105 ], [ -123.620924413999958, 48.738520107000049 ], [ -123.620542350999941, 48.738781774000053 ], [ -123.620410916999901, 48.738871805000045 ], [ -123.620246683999966, 48.739030406000097 ], [ -123.62019511599999, 48.739082477000032 ], [ -123.620107804999947, 48.739170596000044 ], [ -123.6196575929999, 48.739399419000051 ], [ -123.619455409999887, 48.739449798000116 ], [ -123.618707292999972, 48.739526895000083 ], [ -123.618089488999942, 48.739522991000079 ], [ -123.617248502, 48.739423085000098 ], [ -123.617057003999932, 48.739262893000067 ], [ -123.616279014999975, 48.738991407000064 ], [ -123.615584299999909, 48.738711812000105 ], [ -123.615487480999931, 48.73865665800006 ], [ -123.615750706999918, 48.737412844000069 ], [ -123.615827029999963, 48.737390641000019 ], [ -123.616079010999925, 48.737317370000035 ], [ -123.61620500199993, 48.737280734000045 ], [ -123.61633099099997, 48.737244097000087 ], [ -123.616256288999978, 48.737164891000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236315584", "BldgCostT": "161238334", "sL_LossRatio": "0.809511733229376", "sL_AssetLoss": "1695569", "sL_BldgLoss": "1372583", "sL_StrLoss": "782653", "sL_NStrLoss": "589930", "sL_ContLoss": "322986", "geom_point": "0101000020E610000015A0C8EE5DE75EC0AE69C5D4E95D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.624080049999947, 48.739637379000051 ], [ -123.623039419999913, 48.739046725000044 ], [ -123.621858413999945, 48.739036614000064 ], [ -123.621583327999986, 48.739035559000058 ], [ -123.620895560999898, 48.739032909000102 ], [ -123.620246683999966, 48.739030406000097 ], [ -123.620410916999901, 48.738871805000045 ], [ -123.620542350999941, 48.738781774000053 ], [ -123.620924413999958, 48.738520107000049 ], [ -123.621361592999975, 48.738334300000105 ], [ -123.621885600999946, 48.738230600000065 ], [ -123.622014405999963, 48.738182094000074 ], [ -123.622075084999921, 48.73810869500003 ], [ -123.622086781999926, 48.738012504000082 ], [ -123.621625783999946, 48.737407400000052 ], [ -123.621630704999944, 48.737258811000068 ], [ -123.621899180999918, 48.737239587000097 ], [ -123.62213279299999, 48.737264601000078 ], [ -123.622787184999964, 48.737403491000073 ], [ -123.623024982999951, 48.737399804000049 ], [ -123.623224896999943, 48.736723873000138 ], [ -123.623362991999954, 48.736543994000073 ], [ -123.622397200999941, 48.735716674000123 ], [ -123.62229338499999, 48.735542290000119 ], [ -123.622229518999973, 48.733745602000106 ], [ -123.619766189999964, 48.733720401000063 ], [ -123.61852459, 48.733755693000084 ], [ -123.616338314999922, 48.733755507000083 ], [ -123.616324875999936, 48.734206798000052 ], [ -123.616311867999983, 48.734678718000062 ], [ -123.616299898999955, 48.734994804000074 ], [ -123.616278076999919, 48.735745893000079 ], [ -123.616257484999906, 48.736818896000024 ], [ -123.616256288999978, 48.737164891000106 ], [ -123.61633099099997, 48.737244097000087 ], [ -123.61620500199993, 48.737280734000045 ], [ -123.616079010999925, 48.737317370000035 ], [ -123.615827029999963, 48.737390641000019 ], [ -123.615750706999918, 48.737412844000069 ], [ -123.613941223999959, 48.737334625000074 ], [ -123.613824711999939, 48.737330802000059 ], [ -123.613708128999946, 48.737326946000024 ], [ -123.613591565000021, 48.737323112000077 ], [ -123.613475002999976, 48.737319278000058 ], [ -123.613358418999951, 48.737315422000066 ], [ -123.613241907999921, 48.737311598000076 ], [ -123.613125326, 48.737307742000034 ], [ -123.61300872699999, 48.737303918000073 ], [ -123.612892197999884, 48.737300073000071 ], [ -123.612775613999943, 48.737296214000068 ], [ -123.612659069, 48.737292402000072 ], [ -123.61264458299992, 48.737291925000065 ], [ -123.612642686999891, 48.737135955000085 ], [ -123.612234695999973, 48.737138123000108 ], [ -123.612231417999908, 48.736868259000047 ], [ -123.611823428999983, 48.736870424000109 ], [ -123.611820152999911, 48.736600560000092 ], [ -123.609780213999898, 48.736611373000073 ], [ -123.60978732699999, 48.737199454000098 ], [ -123.609748197999977, 48.737198189000026 ], [ -123.609631656999937, 48.737194429000077 ], [ -123.609398556999906, 48.737186946000115 ], [ -123.609281964999965, 48.737183178000045 ], [ -123.60916542199999, 48.737179418000082 ], [ -123.609052741999932, 48.737175787000119 ], [ -123.608848230999968, 48.737187548000122 ], [ -123.608650244999964, 48.737198916000061 ], [ -123.60845234599995, 48.73721028199999 ], [ -123.60825444699995, 48.737221646000116 ], [ -123.608056477999952, 48.737233034000049 ], [ -123.607858559999954, 48.737244376000078 ], [ -123.607660660999926, 48.737255740000087 ], [ -123.607462724999976, 48.737267114000097 ], [ -123.60726479199991, 48.737278490000065 ], [ -123.60706683799998, 48.73728984100012 ], [ -123.606671004999924, 48.737312577000061 ], [ -123.60647306899989, 48.737323951000093 ], [ -123.606275115999921, 48.737335301000023 ], [ -123.606242916999946, 48.73733714499999 ], [ -123.606131776999987, 48.737346372000033 ], [ -123.605998989999961, 48.737357380000034 ], [ -123.605866202999962, 48.737368389000025 ], [ -123.60573343199998, 48.737379361000109 ], [ -123.605600679999952, 48.737390358000034 ], [ -123.605467911999966, 48.737401387000055 ], [ -123.60533516, 48.737412383000056 ], [ -123.605202354999932, 48.737423367000076 ], [ -123.605069600999968, 48.737434362000066 ], [ -123.604936832999911, 48.737445392000026 ], [ -123.604921889999943, 48.73744662800005 ], [ -123.604486075999887, 48.737448915000094 ], [ -123.604476367999908, 48.736639318000059 ], [ -123.604735550999948, 48.736637957000035 ], [ -123.604879279999949, 48.736214083000071 ], [ -123.604878839999955, 48.736177494000046 ], [ -123.602277970000017, 48.736119041000094 ], [ -123.602199012, 48.737665564000075 ], [ -123.60219863899998, 48.737665565000036 ], [ -123.60217018899999, 48.737665210000031 ], [ -123.602170106999921, 48.737665200000102 ], [ -123.601924946999972, 48.731283813000118 ], [ -123.601960696, 48.730173761000103 ], [ -123.601961920999926, 48.730134913000086 ], [ -123.601962335999971, 48.730122488000099 ], [ -123.603074308999965, 48.730052295000057 ], [ -123.603097163999934, 48.730054081000048 ], [ -123.60343140699996, 48.730080198000053 ], [ -123.606741699999944, 48.730080596000079 ], [ -123.607223889999915, 48.73007700400008 ], [ -123.609474008999896, 48.730074302000041 ], [ -123.610266527999968, 48.73007381900009 ], [ -123.613309982999937, 48.730071906000028 ], [ -123.623360746999978, 48.73000392600003 ], [ -123.625862715999972, 48.72998686200004 ], [ -123.62952425899999, 48.729961796000033 ], [ -123.628992419999932, 48.731519574000124 ], [ -123.628688444999952, 48.731512814000027 ], [ -123.628635295, 48.732565545000057 ], [ -123.62861956799992, 48.732611608000049 ], [ -123.625876003999963, 48.732550552000063 ], [ -123.625867050999958, 48.73272767300007 ], [ -123.620441610999961, 48.732606726000014 ], [ -123.620454923999944, 48.732343959000119 ], [ -123.619372589, 48.732319798000034 ], [ -123.619408429999922, 48.731612675000115 ], [ -123.617217251999961, 48.731563727000065 ], [ -123.617146917999975, 48.732950086000081 ], [ -123.614296290999945, 48.732886339000089 ], [ -123.614259080999943, 48.733618872000136 ], [ -123.615455800999911, 48.733612486000048 ], [ -123.6154525099999, 48.733342620000037 ], [ -123.619124155999941, 48.733322952000094 ], [ -123.619120842999934, 48.733053086000083 ], [ -123.620344715999934, 48.733046504000086 ], [ -123.620348036999943, 48.733316369000114 ], [ -123.623611718999882, 48.733298752000088 ], [ -123.623615056999981, 48.733568618000092 ], [ -123.625246905, 48.733559774000156 ], [ -123.625250251999944, 48.733829639000056 ], [ -123.625658215999962, 48.733827425000186 ], [ -123.625660899999943, 48.734043693000025 ], [ -123.625661564999987, 48.734097290000079 ], [ -123.62665096299996, 48.734091913000015 ], [ -123.626654186999971, 48.734028098000095 ], [ -123.626685747999943, 48.733403542000055 ], [ -123.628336622999925, 48.733440277000113 ], [ -123.628086005999961, 48.734174238000037 ], [ -123.628092570999925, 48.734411281000071 ], [ -123.629393242999981, 48.737068750000041 ], [ -123.626503772999953, 48.73700447300007 ], [ -123.626569109999977, 48.735711657000131 ], [ -123.626497617000012, 48.735712045000056 ], [ -123.62650097, 48.735981910000142 ], [ -123.626266891999961, 48.735983182000069 ], [ -123.626307538, 48.736133461000087 ], [ -123.626128337999944, 48.736280461000121 ], [ -123.625690435999957, 48.736423767000062 ], [ -123.625691705999969, 48.73652607300005 ], [ -123.625372517999963, 48.736527806000034 ], [ -123.624877706999939, 48.73668972900002 ], [ -123.624879079, 48.736800366000111 ], [ -123.624533899999932, 48.73680223800006 ], [ -123.624064969999949, 48.736955686000051 ], [ -123.624069782999968, 48.737344518000022 ], [ -123.624885766999967, 48.737340096000068 ], [ -123.624895803999962, 48.738149689000032 ], [ -123.624487802999937, 48.73815190200007 ], [ -123.624491147999947, 48.738421767000062 ], [ -123.624083144999972, 48.738423976000114 ], [ -123.624086485999939, 48.738693841000085 ], [ -123.624494488999986, 48.73869163100008 ], [ -123.624501176999985, 48.739231360000147 ], [ -123.624909182999943, 48.739229149 ], [ -123.624910859999943, 48.739364405000082 ], [ -123.625319008999966, 48.739373495000081 ], [ -123.625317190999937, 48.739226936000122 ], [ -123.625586295999952, 48.739225475000097 ], [ -123.625600339999977, 48.739212762000065 ], [ -123.625712544999942, 48.739224789000076 ], [ -123.625979246999947, 48.739223341000056 ], [ -123.62598575799997, 48.739094542000068 ], [ -123.629614625999949, 48.739175270000011 ], [ -123.62960365899994, 48.739186238000023 ], [ -123.628565442999985, 48.7398386180001 ], [ -123.62790016699995, 48.740167917000058 ], [ -123.627738188999942, 48.740412851000016 ], [ -123.62765942599998, 48.740946354000151 ], [ -123.626079794999939, 48.740503310000129 ], [ -123.625815910999933, 48.740431596000064 ], [ -123.62551486299995, 48.740313205000071 ], [ -123.625359195999934, 48.740252007000052 ], [ -123.625211554999936, 48.740182153000021 ], [ -123.624965904999925, 48.740065969000035 ], [ -123.624830847999988, 48.740002101000137 ], [ -123.624403863999973, 48.739800122000126 ], [ -123.624181401999934, 48.739694898000067 ], [ -123.624080049999947, 48.739637379000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165990083", "BldgCostT": "113948333", "sL_LossRatio": "0.78820624190596", "sL_AssetLoss": "1442959.9", "sL_BldgLoss": "1137350", "sL_StrLoss": "603777", "sL_NStrLoss": "533573", "sL_ContLoss": "305609.9", "geom_point": "0101000020E61000009FCCDCCF6BE55EC010131E7E485D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.591538314, 48.735590296000098 ], [ -123.590378798999936, 48.735379608000116 ], [ -123.590312698999981, 48.735577496000126 ], [ -123.590026313999957, 48.73541798900002 ], [ -123.589709797999916, 48.735059086000021 ], [ -123.588508114999954, 48.73476 ], [ -123.585993788999971, 48.733693313000082 ], [ -123.585391197999982, 48.733246106000102 ], [ -123.584460098999926, 48.732791806000087 ], [ -123.583966203, 48.732407206000104 ], [ -123.582901811999974, 48.732143797000106 ], [ -123.581945490999914, 48.731733590000061 ], [ -123.581466416999916, 48.73139909000011 ], [ -123.579763461999974, 48.730210005000089 ], [ -123.579669185999947, 48.730144192000125 ], [ -123.578972601999922, 48.729860686000151 ], [ -123.577383175, 48.728771194000082 ], [ -123.576998766999935, 48.728207576000038 ], [ -123.577005786999948, 48.728071483000107 ], [ -123.57690008899999, 48.728069080000097 ], [ -123.576792140999927, 48.727966451000036 ], [ -123.576582509999952, 48.727767204000088 ], [ -123.576484004999941, 48.727506487000078 ], [ -123.575866015999964, 48.726879897000082 ], [ -123.574544590999935, 48.726661997000072 ], [ -123.573671089999934, 48.726378588000031 ], [ -123.573178208999963, 48.726056698000029 ], [ -123.572563503999959, 48.725942698000033 ], [ -123.572128205999917, 48.725764702000056 ], [ -123.570723582999932, 48.725492692000081 ], [ -123.569957086999935, 48.72503839700002 ], [ -123.569299681999951, 48.724801200000087 ], [ -123.56870179199997, 48.724585494000038 ], [ -123.567702896999918, 48.724005813000062 ], [ -123.567234491999955, 48.723558611000058 ], [ -123.566375544999971, 48.723019883000049 ], [ -123.566180886999973, 48.722897797000059 ], [ -123.565905089999944, 48.722611496000063 ], [ -123.564796394, 48.721915093000057 ], [ -123.563932687000019, 48.721235702000065 ], [ -123.562414307999958, 48.72052359 ], [ -123.560851054999915, 48.719162408000059 ], [ -123.561235704999888, 48.7190696830001 ], [ -123.563651057999948, 48.719028224000091 ], [ -123.56380520499998, 48.719168687000028 ], [ -123.564488092999937, 48.719690811000099 ], [ -123.565332611999949, 48.72016078800003 ], [ -123.566722388999921, 48.720770302000098 ], [ -123.567390494000023, 48.720925210000075 ], [ -123.568259550999969, 48.721051785000043 ], [ -123.568578884999951, 48.721098289000068 ], [ -123.56907356, 48.72114079100001 ], [ -123.569090961999947, 48.721142296000025 ], [ -123.572648502999982, 48.72144791200008 ], [ -123.573930603999926, 48.721517701000046 ], [ -123.574305888999973, 48.721478497000085 ], [ -123.576231896999957, 48.721041006000128 ], [ -123.576845894999934, 48.720873255000043 ], [ -123.576993301999963, 48.720832985000087 ], [ -123.577475716, 48.720746583000079 ], [ -123.577522381999955, 48.720746779000102 ], [ -123.5784298089999, 48.720750308000028 ], [ -123.578763200999902, 48.720780152000032 ], [ -123.57867081499991, 48.722572663000129 ], [ -123.576539136999898, 48.7225242190001 ], [ -123.576517818999946, 48.722937448000039 ], [ -123.576638916999983, 48.722940201000036 ], [ -123.576625074999953, 48.723208541000062 ], [ -123.577282509999975, 48.723223485000076 ], [ -123.577218160999976, 48.724471192000081 ], [ -123.577916961999904, 48.724487072000059 ], [ -123.577820776999914, 48.72635248900005 ], [ -123.581067495999918, 48.726426210000071 ], [ -123.581152370999973, 48.724777939000091 ], [ -123.580877715, 48.724771707000073 ], [ -123.581037286999901, 48.721672843000086 ], [ -123.581613207999951, 48.722019406000086 ], [ -123.583460311999914, 48.723245607000138 ], [ -123.588614602999925, 48.726432104000047 ], [ -123.588678563999935, 48.726503950000044 ], [ -123.588691596999951, 48.726518601000102 ], [ -123.588691501999904, 48.726527607 ], [ -123.58867469899999, 48.727921479000031 ], [ -123.588670037000014, 48.728309459000123 ], [ -123.58864870499994, 48.730078501000072 ], [ -123.5887911559999, 48.730080833000066 ], [ -123.589718782999967, 48.730089497000087 ], [ -123.590316893999926, 48.730095106000043 ], [ -123.590423906999945, 48.730096088000018 ], [ -123.590547966, 48.73009732900011 ], [ -123.590969650999938, 48.73010156600003 ], [ -123.594006690999919, 48.730132008000119 ], [ -123.596754201999971, 48.730148016000044 ], [ -123.596532005999947, 48.731384895000133 ], [ -123.596595099999945, 48.731478189000015 ], [ -123.59746439099996, 48.732003494000089 ], [ -123.598341613999978, 48.73258828200003 ], [ -123.598771012, 48.732131093000142 ], [ -123.598979410999931, 48.731851907000134 ], [ -123.59918459699999, 48.731478009000057 ], [ -123.599329915999988, 48.730839604000053 ], [ -123.599337166999987, 48.73034373600008 ], [ -123.599337487999961, 48.730321757000134 ], [ -123.599338109999962, 48.730280993000093 ], [ -123.599262995999936, 48.729944002000103 ], [ -123.601962335999971, 48.730122488000099 ], [ -123.601961920999926, 48.730134913000086 ], [ -123.601960696, 48.730173761000103 ], [ -123.601924946999972, 48.731283813000118 ], [ -123.602170106999921, 48.737665200000102 ], [ -123.601693106, 48.737605608000052 ], [ -123.600779612999986, 48.737394809000065 ], [ -123.598068406999971, 48.736914898000087 ], [ -123.595984295999941, 48.736655587000072 ], [ -123.59389459, 48.735973496000042 ], [ -123.59254390599996, 48.735674410000051 ], [ -123.591538314, 48.735590296000098 ] ], [ [ -123.587235976999963, 48.728580193000084 ], [ -123.587309442999938, 48.72714992100002 ], [ -123.583099560999955, 48.727054560000077 ], [ -123.583127908999955, 48.726503576000013 ], [ -123.582518334999946, 48.726489754000035 ], [ -123.582445801999967, 48.72789909400008 ], [ -123.584400828999946, 48.72794341200008 ], [ -123.584367519999944, 48.728591101000063 ], [ -123.585188139999929, 48.728609693000053 ], [ -123.58518809, 48.728610671000091 ], [ -123.585497205999928, 48.72861767200007 ], [ -123.585501150999931, 48.728540917000046 ], [ -123.587235976999963, 48.728580193000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189084", "BldgCostT": "4268334", "sL_LossRatio": "0.856086126063553", "sL_AssetLoss": "28795", "sL_BldgLoss": "24651", "sL_StrLoss": "15851", "sL_NStrLoss": "8800", "sL_ContLoss": "4144", "geom_point": "0101000020E6100000DF096AB6BAE85EC0E8DA38DEF4704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.639401879999951, 48.884417487000107 ], [ -123.639399407999989, 48.884223589000023 ], [ -123.639098550999947, 48.884216951000049 ], [ -123.638927705999961, 48.88410400100004 ], [ -123.637673384999914, 48.88311140600009 ], [ -123.637440187999971, 48.883041592000033 ], [ -123.637236705999939, 48.883087200000041 ], [ -123.636507409999979, 48.883622698000046 ], [ -123.636154499999989, 48.883713794000123 ], [ -123.635837489999915, 48.883517303000126 ], [ -123.635605485, 48.883510099000013 ], [ -123.635425202999969, 48.883286497000071 ], [ -123.634972598999951, 48.883054400000027 ], [ -123.634576496999983, 48.883038693000046 ], [ -123.63442286799993, 48.882853683000121 ], [ -123.634541199999958, 48.880512177000035 ], [ -123.634981418999985, 48.880521910000041 ], [ -123.636095391999959, 48.881222900000125 ], [ -123.638141502999929, 48.882353700000088 ], [ -123.637764896999968, 48.882813691000081 ], [ -123.639376605999985, 48.883920308000022 ], [ -123.639993901999929, 48.884232205000032 ], [ -123.640627556999959, 48.884263302000129 ], [ -123.640630167999944, 48.884467754000084 ], [ -123.640230086999907, 48.884555492000082 ], [ -123.640277694999924, 48.884609856000026 ], [ -123.639697728, 48.8846130740001 ], [ -123.639401879999951, 48.884417487000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119440144", "BldgCostT": "80751523", "sL_LossRatio": "0.758479771148345", "sL_AssetLoss": "1240629", "sL_BldgLoss": "940992", "sL_StrLoss": "466476", "sL_NStrLoss": "474516", "sL_ContLoss": "299637", "geom_point": "0101000020E6100000F5D723BBEFE65EC07A614237C15C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.596532005999947, 48.731384895000133 ], [ -123.596754201999971, 48.730148016000044 ], [ -123.594006690999919, 48.730132008000119 ], [ -123.590969650999938, 48.73010156600003 ], [ -123.590547966, 48.73009732900011 ], [ -123.590423906999945, 48.730096088000018 ], [ -123.590316893999926, 48.730095106000043 ], [ -123.589718782999967, 48.730089497000087 ], [ -123.5887911559999, 48.730080833000066 ], [ -123.58864870499994, 48.730078501000072 ], [ -123.588670037000014, 48.728309459000123 ], [ -123.58867469899999, 48.727921479000031 ], [ -123.588691501999904, 48.726527607 ], [ -123.588691596999951, 48.726518601000102 ], [ -123.588678563999935, 48.726503950000044 ], [ -123.588614602999925, 48.726432104000047 ], [ -123.583460311999914, 48.723245607000138 ], [ -123.581613207999951, 48.722019406000086 ], [ -123.581037286999901, 48.721672843000086 ], [ -123.58106313699993, 48.721170784 ], [ -123.583874295, 48.721234543000101 ], [ -123.583911899999976, 48.720503323000123 ], [ -123.580437357, 48.720424508000065 ], [ -123.58050039699998, 48.719200444000109 ], [ -123.579237987999988, 48.71917178000011 ], [ -123.579244906999961, 48.719037506000092 ], [ -123.579709703, 48.7190337010001 ], [ -123.588315361999975, 48.719074563000021 ], [ -123.593673698999936, 48.719076897000043 ], [ -123.593641213999931, 48.719711150000059 ], [ -123.593642672999977, 48.719711182000033 ], [ -123.59367516099995, 48.719076898000026 ], [ -123.596940304999961, 48.719078189000058 ], [ -123.597073321999943, 48.719079395000094 ], [ -123.598948385999961, 48.719099092000079 ], [ -123.599977123999963, 48.719090468000097 ], [ -123.600004274999961, 48.719090235000067 ], [ -123.601717339999965, 48.719075840000102 ], [ -123.602138778999972, 48.719072301000047 ], [ -123.602911291999959, 48.719065806000039 ], [ -123.616229788999945, 48.719088176000071 ], [ -123.6162184679999, 48.718814944000052 ], [ -123.61619951299997, 48.718356804000074 ], [ -123.61713611, 48.718486140000017 ], [ -123.61828388899994, 48.718536296000103 ], [ -123.618826494999936, 48.718559968000136 ], [ -123.62299971099999, 48.719171356000096 ], [ -123.623922025999917, 48.719306729000131 ], [ -123.623989681999973, 48.71931666299999 ], [ -123.62748954499996, 48.719830295000072 ], [ -123.629986595999981, 48.720196661000081 ], [ -123.631075907999943, 48.720401130000049 ], [ -123.631736556999925, 48.720571725000077 ], [ -123.632021449999939, 48.720692168000042 ], [ -123.632023278999966, 48.720838285000056 ], [ -123.632356241999986, 48.720836458000072 ], [ -123.632431682999979, 48.720879347000057 ], [ -123.632434116999931, 48.721073567000055 ], [ -123.632434520999965, 48.721105912000105 ], [ -123.6324943219999, 48.721105584000057 ], [ -123.632815441999981, 48.721103820000081 ], [ -123.632842652999926, 48.721125124000011 ], [ -123.632845266999951, 48.721333608000116 ], [ -123.632845768999957, 48.721373537000069 ], [ -123.63289912499998, 48.72137324500008 ], [ -123.633157760999936, 48.721371823000055 ], [ -123.633254589000018, 48.721447630000057 ], [ -123.63325701899997, 48.721641161000086 ], [ -123.633290667999987, 48.721640977000114 ], [ -123.633298500999942, 48.72148547700008 ], [ -123.633715018999951, 48.721908969000047 ], [ -123.634814920999958, 48.723548459000057 ], [ -123.63534158299997, 48.724251373000058 ], [ -123.636266894999963, 48.72523446600011 ], [ -123.638666467999883, 48.72781 ], [ -123.638934592999973, 48.728097245000107 ], [ -123.638621735999962, 48.728030959000066 ], [ -123.638842931999974, 48.728267577000075 ], [ -123.63887555299999, 48.728302466000059 ], [ -123.638905985999955, 48.728372527000076 ], [ -123.638890450999938, 48.728443657000092 ], [ -123.638888332999954, 48.72845325100004 ], [ -123.638504887999929, 48.728923317000095 ], [ -123.637731556999967, 48.729640689000107 ], [ -123.637593776999935, 48.729950377000094 ], [ -123.637271426999945, 48.729950721000094 ], [ -123.630030398999935, 48.729958305000046 ], [ -123.62952425899999, 48.729961796000033 ], [ -123.625862715999972, 48.72998686200004 ], [ -123.623360746999978, 48.73000392600003 ], [ -123.613309982999937, 48.730071906000028 ], [ -123.610266527999968, 48.73007381900009 ], [ -123.609474008999896, 48.730074302000041 ], [ -123.607223889999915, 48.73007700400008 ], [ -123.606741699999944, 48.730080596000079 ], [ -123.60343140699996, 48.730080198000053 ], [ -123.603097163999934, 48.730054081000048 ], [ -123.603074308999965, 48.730052295000057 ], [ -123.601962335999971, 48.730122488000099 ], [ -123.599262995999936, 48.729944002000103 ], [ -123.599338109999962, 48.730280993000093 ], [ -123.599337487999961, 48.730321757000134 ], [ -123.599337166999987, 48.73034373600008 ], [ -123.599329915999988, 48.730839604000053 ], [ -123.59918459699999, 48.731478009000057 ], [ -123.598979410999931, 48.731851907000134 ], [ -123.598771012, 48.732131093000142 ], [ -123.598341613999978, 48.73258828200003 ], [ -123.59746439099996, 48.732003494000089 ], [ -123.596595099999945, 48.731478189000015 ], [ -123.596532005999947, 48.731384895000133 ] ], [ [ -123.597514974999967, 48.728611724000096 ], [ -123.597534360999973, 48.728232686000048 ], [ -123.592805354999967, 48.728126011000036 ], [ -123.592806627999906, 48.728101174000116 ], [ -123.592691834999954, 48.728098582000051 ], [ -123.592668068999927, 48.728562283000073 ], [ -123.592696175999961, 48.728562918000101 ], [ -123.592697965999946, 48.728527992000046 ], [ -123.596096454999923, 48.728604678000067 ], [ -123.596097728999965, 48.728579776000082 ], [ -123.597514974999967, 48.728611724000096 ] ], [ [ -123.601332178999883, 48.727427340000084 ], [ -123.601338399999989, 48.727305506000029 ], [ -123.60083123899993, 48.7273030610001 ], [ -123.600825838999953, 48.726985662000104 ], [ -123.601354723999975, 48.726985838000054 ], [ -123.601358180999966, 48.726918124000079 ], [ -123.60058661, 48.72690076100011 ], [ -123.6005606, 48.727409978000075 ], [ -123.601332178999883, 48.727427340000084 ] ], [ [ -123.61816787099994, 48.726118518000128 ], [ -123.618084011999926, 48.727772333000104 ], [ -123.618164874999962, 48.727774139000068 ], [ -123.618166301, 48.727746016 ], [ -123.619715072999924, 48.727780608000032 ], [ -123.619723846999975, 48.727607454000051 ], [ -123.622826745999959, 48.72767668900007 ], [ -123.622835128999967, 48.727511030000066 ], [ -123.624134388999963, 48.727539994000033 ], [ -123.624277227999954, 48.724715758000109 ], [ -123.625183386999979, 48.724735948000045 ], [ -123.625241854, 48.723579377000078 ], [ -123.626629152999939, 48.72361027400008 ], [ -123.626654022999958, 48.723118010000107 ], [ -123.632078383999968, 48.723238644000098 ], [ -123.631896861, 48.726839642000066 ], [ -123.631630000999962, 48.726833714000094 ], [ -123.631578803999901, 48.727849145000029 ], [ -123.63203025599995, 48.727859173000041 ], [ -123.632118940999973, 48.72609985400009 ], [ -123.63365296899994, 48.72613391700007 ], [ -123.633684809000016, 48.725501841000082 ], [ -123.633389514999976, 48.725495285000108 ], [ -123.633491766999953, 48.723465568000066 ], [ -123.633321633999941, 48.723461790000087 ], [ -123.633364438999962, 48.722612111000103 ], [ -123.633241880999975, 48.722609390000059 ], [ -123.633249867999979, 48.722450852000101 ], [ -123.632043567999929, 48.722457475000041 ], [ -123.632040185999955, 48.722187610000042 ], [ -123.631632317999959, 48.722189847000017 ], [ -123.63162893799992, 48.721919981000021 ], [ -123.630813203999963, 48.721924451000021 ], [ -123.630809828999986, 48.721654585000124 ], [ -123.629994097999884, 48.721659048000078 ], [ -123.629990726999949, 48.721389183000049 ], [ -123.629175000999979, 48.721393640000102 ], [ -123.629171634999949, 48.721123774 ], [ -123.628355911999961, 48.72112822600009 ], [ -123.628352550999921, 48.720858360000037 ], [ -123.627944691999986, 48.720860584 ], [ -123.627940542999937, 48.720527290000049 ], [ -123.627393951000016, 48.720515125000091 ], [ -123.627321106999958, 48.721957470000028 ], [ -123.626460371999926, 48.721938307000059 ], [ -123.626458574999916, 48.721973891000069 ], [ -123.624340002999986, 48.721926695000086 ], [ -123.624289440999945, 48.722926541000099 ], [ -123.618865138, 48.722805511000097 ], [ -123.618925844999964, 48.721607746000068 ], [ -123.615136091999887, 48.721523024000085 ], [ -123.614963683, 48.724919065000087 ], [ -123.613687683999927, 48.724890509000062 ], [ -123.613664949999986, 48.72533804000004 ], [ -123.615195635999925, 48.725372294000074 ], [ -123.615161163999986, 48.726051297000083 ], [ -123.61816787099994, 48.726118518000128 ] ], [ [ -123.596122762999954, 48.72028746400013 ], [ -123.59612196799999, 48.720220202000064 ], [ -123.595670033999951, 48.720210010000095 ], [ -123.595689607999972, 48.71982753000006 ], [ -123.595642437999956, 48.719826466000079 ], [ -123.595619425999956, 48.72027611100004 ], [ -123.596122762999954, 48.72028746400013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210833", "BldgCostT": "4283333", "sL_LossRatio": "0.782829524043582", "sL_AssetLoss": "61035", "sL_BldgLoss": "47780", "sL_StrLoss": "24830", "sL_NStrLoss": "22950", "sL_ContLoss": "13255", "geom_point": "0101000020E6100000AEBAABAA99E45EC0557288972B5C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.566722388999921, 48.720770302000098 ], [ -123.565332611999949, 48.72016078800003 ], [ -123.564488092999937, 48.719690811000099 ], [ -123.56380520499998, 48.719168687000028 ], [ -123.563651057999948, 48.719028224000091 ], [ -123.567112835999978, 48.719042300000133 ], [ -123.569401781999943, 48.718996157000056 ], [ -123.569401170999967, 48.719007955000045 ], [ -123.571243820999968, 48.719049960000049 ], [ -123.572280477, 48.719094275000032 ], [ -123.572605686999907, 48.719091635000105 ], [ -123.572550360999955, 48.720162437000063 ], [ -123.573363841999978, 48.72018096000005 ], [ -123.57342044799999, 48.719085014000072 ], [ -123.578852843999968, 48.719040714000052 ], [ -123.578763200999902, 48.720780152000032 ], [ -123.5784298089999, 48.720750308000028 ], [ -123.577522381999955, 48.720746779000102 ], [ -123.577475716, 48.720746583000079 ], [ -123.576993301999963, 48.720832985000087 ], [ -123.576845894999934, 48.720873255000043 ], [ -123.576231896999957, 48.721041006000128 ], [ -123.574305888999973, 48.721478497000085 ], [ -123.573930603999926, 48.721517701000046 ], [ -123.572648502999982, 48.72144791200008 ], [ -123.569090961999947, 48.721142296000025 ], [ -123.56907356, 48.72114079100001 ], [ -123.568578884999951, 48.721098289000068 ], [ -123.568259550999969, 48.721051785000043 ], [ -123.567390494000023, 48.720925210000075 ], [ -123.566722388999921, 48.720770302000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219219548", "BldgCostT": "145588779", "sL_LossRatio": "0.736931578447308", "sL_AssetLoss": "1957658", "sL_BldgLoss": "1442660", "sL_StrLoss": "665200", "sL_NStrLoss": "777460", "sL_ContLoss": "514998", "geom_point": "0101000020E610000063E57F6EFFE55EC0C167778ACD5A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.611485717999955, 48.715718573000103 ], [ -123.611467899999951, 48.715883598000055 ], [ -123.612831989999933, 48.71633498900006 ], [ -123.613199182999935, 48.716342102000056 ], [ -123.613524715999915, 48.716222508000044 ], [ -123.614154107999937, 48.715677761000073 ], [ -123.614537760999923, 48.715686348000069 ], [ -123.614546425999919, 48.715515690000089 ], [ -123.61566434099997, 48.715540705000066 ], [ -123.615678822999925, 48.715546003000128 ], [ -123.615711179999934, 48.715541753000053 ], [ -123.616171179999981, 48.715552043000045 ], [ -123.616172740999957, 48.715704458000076 ], [ -123.616195283, 48.717935034000114 ], [ -123.616197342999968, 48.718138587000077 ], [ -123.616198645999972, 48.71826825400008 ], [ -123.61619951299997, 48.718356804000074 ], [ -123.6162184679999, 48.718814944000052 ], [ -123.616229788999945, 48.719088176000071 ], [ -123.602911291999959, 48.719065806000039 ], [ -123.602138778999972, 48.719072301000047 ], [ -123.601717339999965, 48.719075840000102 ], [ -123.600004274999961, 48.719090235000067 ], [ -123.599977123999963, 48.719090468000097 ], [ -123.598948385999961, 48.719099092000079 ], [ -123.597073321999943, 48.719079395000094 ], [ -123.596940304999961, 48.719078189000058 ], [ -123.59367516099995, 48.719076898000026 ], [ -123.593688598999918, 48.718814508000044 ], [ -123.593687139999972, 48.718814475000045 ], [ -123.593673698999936, 48.719076897000043 ], [ -123.588315361999975, 48.719074563000021 ], [ -123.587018253999943, 48.718766986000027 ], [ -123.586571299999946, 48.718661007000023 ], [ -123.586177286999913, 48.718482029000015 ], [ -123.585742181999976, 48.718284398000073 ], [ -123.585331837999917, 48.718045640000092 ], [ -123.58496936599991, 48.717834724000035 ], [ -123.583875813999896, 48.7171984 ], [ -123.582807101999933, 48.716494594000018 ], [ -123.582396514999942, 48.716162589000106 ], [ -123.582113815999961, 48.715827198000071 ], [ -123.581883618999953, 48.715499307000094 ], [ -123.581854934999924, 48.715471799000049 ], [ -123.581650798999974, 48.715275985000055 ], [ -123.581339171999943, 48.71507173600002 ], [ -123.580022590999945, 48.714208808000087 ], [ -123.57873530399992, 48.713111496000103 ], [ -123.578177983999979, 48.712599595000079 ], [ -123.578071880999929, 48.712482485000073 ], [ -123.577985381999952, 48.712387005000089 ], [ -123.577459111999957, 48.711537701000069 ], [ -123.577427017999952, 48.711415550000076 ], [ -123.577377403999947, 48.7112266910001 ], [ -123.577393334999925, 48.710994492000104 ], [ -123.577400144999913, 48.710895318000034 ], [ -123.577415561999914, 48.710670492000126 ], [ -123.577426066000015, 48.71051698100014 ], [ -123.577432196999908, 48.710427607000099 ], [ -123.577482254999921, 48.710200557000114 ], [ -123.577541324999942, 48.70993256500001 ], [ -123.577550801999948, 48.709889499000063 ], [ -123.577548272999962, 48.709858997000019 ], [ -123.577531579999928, 48.709657401000051 ], [ -123.577441778999983, 48.709377127000025 ], [ -123.577356211, 48.709109997000056 ], [ -123.577255100999949, 48.708517286000067 ], [ -123.577288183999912, 48.708271106 ], [ -123.577307799999971, 48.708205803000098 ], [ -123.577370898999945, 48.708035885000065 ], [ -123.578025378999911, 48.706948496000052 ], [ -123.57803571299999, 48.706893431000069 ], [ -123.578085390999945, 48.706628093000106 ], [ -123.578037503999951, 48.706371993000118 ], [ -123.577938592999956, 48.706131796000101 ], [ -123.57737422299995, 48.705339309000074 ], [ -123.57699891599999, 48.704931493000075 ], [ -123.576636212999944, 48.704596102000068 ], [ -123.580043828, 48.704570744000144 ], [ -123.580491917999893, 48.704567404000052 ], [ -123.58043450199996, 48.703098782000097 ], [ -123.580503092999962, 48.702900200000045 ], [ -123.580662181999926, 48.702656002000062 ], [ -123.581468608999941, 48.701885706000056 ], [ -123.581930508999932, 48.701585193000021 ], [ -123.582900696999928, 48.701059190000123 ], [ -123.583423746999955, 48.700731072000075 ], [ -123.583503809999954, 48.700680824000131 ], [ -123.584016792999961, 48.700358987000129 ], [ -123.584392409, 48.700021556000046 ], [ -123.584496297999976, 48.699928207000028 ], [ -123.58511728799999, 48.699048749000077 ], [ -123.585528009999962, 48.698467106000059 ], [ -123.585844406999911, 48.698172282000101 ], [ -123.586185789999945, 48.697944805000127 ], [ -123.586510781, 48.697772794000102 ], [ -123.587266500999959, 48.697510512000122 ], [ -123.587711522999939, 48.697432301000035 ], [ -123.588191914999953, 48.697378299000057 ], [ -123.588616713, 48.697373209000055 ], [ -123.589051306999977, 48.697368006 ], [ -123.589468090999972, 48.697363901000109 ], [ -123.58990106, 48.697334937000058 ], [ -123.590760531999933, 48.697244412000124 ], [ -123.591079649999955, 48.697186739000173 ], [ -123.59057882, 48.697004150000083 ], [ -123.590688515999958, 48.696850658000081 ], [ -123.590720837000035, 48.696696371000066 ], [ -123.590691589999921, 48.69655057600005 ], [ -123.590599125999958, 48.69634388500004 ], [ -123.590640293999968, 48.69606998500003 ], [ -123.591192755999941, 48.69569488700003 ], [ -123.592521877999928, 48.696666717000021 ], [ -123.594093381999926, 48.697815619000096 ], [ -123.595498285999966, 48.698842689000045 ], [ -123.59548678799996, 48.699067443000061 ], [ -123.595481421999978, 48.699172329000127 ], [ -123.595632347999981, 48.699171548000081 ], [ -123.595945924999967, 48.699169927000035 ], [ -123.598488698999958, 48.701028648000076 ], [ -123.600540821999928, 48.702527760000052 ], [ -123.601259185999965, 48.703052498000041 ], [ -123.602790246999959, 48.704170868000048 ], [ -123.60277202499999, 48.704170458000114 ], [ -123.602718400999919, 48.705221726000119 ], [ -123.602704536999966, 48.705221414000086 ], [ -123.602629523999909, 48.706691923000044 ], [ -123.602894267999915, 48.706690538000075 ], [ -123.602884597999932, 48.705880936000071 ], [ -123.603166339999945, 48.705879461000123 ], [ -123.60323684, 48.704497071000034 ], [ -123.603850511999951, 48.704945299000087 ], [ -123.606494358999967, 48.706876178000101 ], [ -123.606924051999925, 48.707232808000057 ], [ -123.607505469999978, 48.707755115000083 ], [ -123.608116878999951, 48.708461934000127 ], [ -123.608681901999915, 48.709360572000065 ], [ -123.609642485999984, 48.711234285000096 ], [ -123.609768792999986, 48.711581322000058 ], [ -123.60984171599999, 48.711781773000048 ], [ -123.608480387999933, 48.7117889700001 ], [ -123.608463156, 48.712127531000093 ], [ -123.605855140999935, 48.712120357000096 ], [ -123.603712813, 48.712149681 ], [ -123.602065481999958, 48.712090151000098 ], [ -123.602124222999961, 48.71323643800006 ], [ -123.602230367999951, 48.715481358 ], [ -123.60311358199999, 48.715729297000081 ], [ -123.604793920999953, 48.715729023000023 ], [ -123.60474841599995, 48.716621641000131 ], [ -123.604335251999885, 48.716612355000017 ], [ -123.604315519999943, 48.716999350000016 ], [ -123.603850919999971, 48.716988906000033 ], [ -123.603846306999955, 48.717079362000099 ], [ -123.603834115999987, 48.717079087000087 ], [ -123.603842154999981, 48.717750815000024 ], [ -123.603434318999959, 48.717752952000048 ], [ -123.603437547999945, 48.718022819000062 ], [ -123.604253223999976, 48.718018544000067 ], [ -123.604259687999942, 48.718558278000025 ], [ -123.604667528999954, 48.718556138000068 ], [ -123.604668978999953, 48.718676983000094 ], [ -123.604699774, 48.718072957000075 ], [ -123.607745520999984, 48.718141361000072 ], [ -123.607868371999984, 48.715728452000043 ], [ -123.610399334999983, 48.715727915000102 ], [ -123.610538628999919, 48.715705528000044 ], [ -123.611485717999955, 48.715718573000103 ] ], [ [ -123.59363131899994, 48.718418824 ], [ -123.593718199999955, 48.716722452000077 ], [ -123.592672630999971, 48.716698841000024 ], [ -123.592857118999987, 48.713097850000075 ], [ -123.59484670099998, 48.713142770000047 ], [ -123.594847840999961, 48.713120499000063 ], [ -123.59512951899994, 48.713126856000059 ], [ -123.595145945999946, 48.712805905000046 ], [ -123.595520439999987, 48.712814355000049 ], [ -123.595533842999956, 48.712552414000086 ], [ -123.595743410999887, 48.712557142000094 ], [ -123.595744720999932, 48.712531536000071 ], [ -123.595062274999961, 48.712516137000087 ], [ -123.595060306999969, 48.712554591000085 ], [ -123.589637274999959, 48.712432072000091 ], [ -123.589821976999957, 48.708831062000044 ], [ -123.590603476999931, 48.708848735000032 ], [ -123.590605448999924, 48.708810281000126 ], [ -123.592606029999928, 48.70885549700008 ], [ -123.592681644999942, 48.707379428000124 ], [ -123.593497666999951, 48.707397861000032 ], [ -123.593513228999925, 48.707093948000164 ], [ -123.594968824999981, 48.707126811000094 ], [ -123.595135843999955, 48.703862978000075 ], [ -123.595750525999961, 48.703876850000043 ], [ -123.595792537999955, 48.703055599000038 ], [ -123.594979031999955, 48.703037240000064 ], [ -123.595005466, 48.702520657000086 ], [ -123.595149083999971, 48.699713815000059 ], [ -123.59506435299997, 48.699714253000096 ], [ -123.595067532999977, 48.699984121000071 ], [ -123.593029067999922, 48.699994632000077 ], [ -123.593041748999951, 48.701074103000096 ], [ -123.591818643999915, 48.701080393000069 ], [ -123.591802824999974, 48.699731052000047 ], [ -123.590987442999946, 48.699735237000034 ], [ -123.590985642999939, 48.699581583000068 ], [ -123.589866875999974, 48.699556279000049 ], [ -123.589770512999962, 48.701435496000066 ], [ -123.59391560099999, 48.701529186000101 ], [ -123.593865208999929, 48.702513525000079 ], [ -123.5937312399999, 48.705130246000074 ], [ -123.591851247999941, 48.705087773000116 ], [ -123.591787629999914, 48.706329291000081 ], [ -123.586756812, 48.70621547100005 ], [ -123.586738342999979, 48.706575114000017 ], [ -123.586709311999954, 48.706574456000041 ], [ -123.586645952999973, 48.70780823400009 ], [ -123.587875000999986, 48.707836063000052 ], [ -123.587874885999952, 48.707838315000089 ], [ -123.588918563999968, 48.707861935000089 ], [ -123.588733794999925, 48.711462950000104 ], [ -123.58331090499999, 48.711340109000041 ], [ -123.583311021000014, 48.711337857000075 ], [ -123.58226727, 48.711314182000066 ], [ -123.582356921999974, 48.70957164900004 ], [ -123.58172317499999, 48.709557268 ], [ -123.581728715999986, 48.71003795700009 ], [ -123.58112338299999, 48.71004101100003 ], [ -123.581047092999967, 48.711523038000067 ], [ -123.580573891, 48.71151229500002 ], [ -123.580573773999959, 48.711514550000111 ], [ -123.580435878999964, 48.711511419000082 ], [ -123.580433044999893, 48.711566452000071 ], [ -123.580728587999928, 48.711573161000025 ], [ -123.580697718999943, 48.71217273900001 ], [ -123.583027442999978, 48.712225603000029 ], [ -123.583000252999966, 48.712754212000021 ], [ -123.587664009999941, 48.7128598830001 ], [ -123.587534564999928, 48.715381112000109 ], [ -123.587573461999938, 48.71538199200004 ], [ -123.587489272999946, 48.717021642000127 ], [ -123.59225339299999, 48.717129374000081 ], [ -123.592188980999978, 48.718386250000073 ], [ -123.59363131899994, 48.718418824 ] ], [ [ -123.588458367999948, 48.702098028000094 ], [ -123.588458943999953, 48.702086807000072 ], [ -123.587752909999907, 48.702070824000018 ], [ -123.587753040999957, 48.702082062000066 ], [ -123.588458367999948, 48.702098028000094 ] ], [ [ -123.602588209999936, 48.707501792000116 ], [ -123.602552139999915, 48.708208835000022 ], [ -123.603242254999941, 48.708224359000056 ], [ -123.603219291999935, 48.708674598000087 ], [ -123.604141583999976, 48.708695339 ], [ -123.604140122000032, 48.708573201000036 ], [ -123.605330187000035, 48.708566955000052 ], [ -123.605335306999905, 48.708466463000057 ], [ -123.604254452999939, 48.708442169000072 ], [ -123.604271409999981, 48.708109559000036 ], [ -123.603915660999974, 48.708101560000046 ], [ -123.60397413099993, 48.706954766000074 ], [ -123.603712989999948, 48.706956135000034 ], [ -123.603719445999971, 48.707495870000081 ], [ -123.602588209999936, 48.707501792000116 ] ], [ [ -123.595919355999982, 48.711057710000055 ], [ -123.595857666999976, 48.71226345499999 ], [ -123.596130644999988, 48.712269612000085 ], [ -123.596148154999966, 48.711927327000048 ], [ -123.596317764999981, 48.711931153000116 ], [ -123.596328559999961, 48.71172013100005 ], [ -123.597156735999988, 48.711738807000103 ], [ -123.597160800999958, 48.711659281000017 ], [ -123.596507775999953, 48.711644555000099 ], [ -123.596537079999919, 48.711071644000043 ], [ -123.595919355999982, 48.711057710000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.569553805774278", "sL_AssetLoss": "38100", "sL_BldgLoss": "21700", "sL_StrLoss": "3000", "sL_NStrLoss": "18700", "sL_ContLoss": "16400", "geom_point": "0101000020E61000001A0E7482B0E65EC0CD30BD16575B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.602124222999961, 48.71323643800006 ], [ -123.602065481999958, 48.712090151000098 ], [ -123.603712813, 48.712149681 ], [ -123.605855140999935, 48.712120357000096 ], [ -123.608463156, 48.712127531000093 ], [ -123.608449428999947, 48.712397262000145 ], [ -123.608366282999981, 48.71239539600009 ], [ -123.608352937999939, 48.712657564000018 ], [ -123.607451340999958, 48.712637327000074 ], [ -123.607460686999943, 48.713413654000149 ], [ -123.606831306999965, 48.713416971000136 ], [ -123.606779873999969, 48.714426797000044 ], [ -123.604862497999946, 48.714383724000115 ], [ -123.604793920999953, 48.715729023000023 ], [ -123.60311358199999, 48.715729297000081 ], [ -123.602230367999951, 48.715481358 ], [ -123.602124222999961, 48.71323643800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166013920", "BldgCostT": "105106528", "sL_LossRatio": "0.752390045872712", "sL_AssetLoss": "915359", "sL_BldgLoss": "688707", "sL_StrLoss": "381909", "sL_NStrLoss": "306798", "sL_ContLoss": "226652", "geom_point": "0101000020E610000018DD06F77BE65EC0F6ED23D834594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.609891207999979, 48.712053847000121 ], [ -123.60988791699998, 48.711781528000138 ], [ -123.60984171599999, 48.711781773000048 ], [ -123.609768792999986, 48.711581322000058 ], [ -123.609642485999984, 48.711234285000096 ], [ -123.608681901999915, 48.709360572000065 ], [ -123.608116878999951, 48.708461934000127 ], [ -123.607505469999978, 48.707755115000083 ], [ -123.606924051999925, 48.707232808000057 ], [ -123.606494358999967, 48.706876178000101 ], [ -123.603850511999951, 48.704945299000087 ], [ -123.60323684, 48.704497071000034 ], [ -123.603252943999934, 48.704181278000128 ], [ -123.602790246999959, 48.704170868000048 ], [ -123.601259185999965, 48.703052498000041 ], [ -123.600540821999928, 48.702527760000052 ], [ -123.598488698999958, 48.701028648000076 ], [ -123.595945924999967, 48.699169927000035 ], [ -123.596688736, 48.699166082000055 ], [ -123.596692334999958, 48.699470669000036 ], [ -123.597927976999955, 48.699498535000053 ], [ -123.598075531999953, 48.696611027000046 ], [ -123.598094184999937, 48.696611448000112 ], [ -123.598097836999969, 48.696539993000016 ], [ -123.597065110999921, 48.696516704000054 ], [ -123.597077269999943, 48.697544761000053 ], [ -123.596020393999979, 48.697550234000104 ], [ -123.596003926999984, 48.697872213000089 ], [ -123.595722015999968, 48.697865851000074 ], [ -123.595695741999947, 48.698379519000063 ], [ -123.59552218, 48.698375601000102 ], [ -123.595498285999966, 48.698842689000045 ], [ -123.594093381999926, 48.697815619000096 ], [ -123.592521877999928, 48.696666717000021 ], [ -123.591192755999941, 48.69569488700003 ], [ -123.5894587559999, 48.694432158000076 ], [ -123.587108598999961, 48.692720540000018 ], [ -123.587073867, 48.692695221000108 ], [ -123.586024383, 48.691930817000049 ], [ -123.583301483999932, 48.689947401000026 ], [ -123.580421539999946, 48.687849320000105 ], [ -123.578583628999922, 48.686510263000073 ], [ -123.578491606999989, 48.686443217000104 ], [ -123.578611108999922, 48.686442416000048 ], [ -123.578707383000022, 48.686441809000101 ], [ -123.579317444999944, 48.686439213000092 ], [ -123.57939897199999, 48.686438866000067 ], [ -123.579996772999934, 48.686436330000099 ], [ -123.58204937899994, 48.686427614000131 ], [ -123.588709690999963, 48.686393593000084 ], [ -123.589018019999941, 48.686392009000052 ], [ -123.589846790999957, 48.686387732000071 ], [ -123.590050570999963, 48.686386680000041 ], [ -123.590743480999947, 48.686383119000048 ], [ -123.590797800999937, 48.686382842000107 ], [ -123.591874844999921, 48.686377286000031 ], [ -123.594217010999969, 48.686365154000065 ], [ -123.594231381, 48.688285303000029 ], [ -123.594236697999932, 48.690089914000126 ], [ -123.597434509999943, 48.690115192000036 ], [ -123.597729895, 48.690121795000081 ], [ -123.599288009999952, 48.690136202000112 ], [ -123.600805790999985, 48.690167708000018 ], [ -123.601222476, 48.690173762000043 ], [ -123.601369810999955, 48.690175901000067 ], [ -123.602418856999961, 48.690221100000088 ], [ -123.602597606999936, 48.690228795000039 ], [ -123.602614509999967, 48.691100487000057 ], [ -123.602642499999902, 48.692541693000052 ], [ -123.602614916999968, 48.69380019000009 ], [ -123.606391099999925, 48.693794981000018 ], [ -123.607947482999975, 48.693792124 ], [ -123.607995062999976, 48.69352282100013 ], [ -123.607975702, 48.693236609000053 ], [ -123.607882678999971, 48.692931707000071 ], [ -123.607536698999965, 48.692266886000041 ], [ -123.608068804999959, 48.691971188000053 ], [ -123.608100725, 48.691953444000021 ], [ -123.60813838899999, 48.691932488000084 ], [ -123.608144064999962, 48.691932194000124 ], [ -123.60830438, 48.69192359000003 ], [ -123.608632793999988, 48.692054499000108 ], [ -123.609529801999955, 48.692825400000117 ], [ -123.610839299999967, 48.693650637000097 ], [ -123.610714608999956, 48.696103957000076 ], [ -123.609221982999884, 48.696070469000048 ], [ -123.609211570999946, 48.696275184000093 ], [ -123.610751366999949, 48.696309729000092 ], [ -123.610671241999938, 48.69788609799999 ], [ -123.61211610299992, 48.69791849300006 ], [ -123.612207668999972, 48.696115931000051 ], [ -123.612144780999984, 48.696116266000097 ], [ -123.612134964999939, 48.695306663000125 ], [ -123.613085107999908, 48.695301611000026 ], [ -123.613361707999942, 48.695611488000068 ], [ -123.613363444999919, 48.695754532000144 ], [ -123.613458236999975, 48.695756656000086 ], [ -123.613604789999954, 48.69607309600017 ], [ -123.61376171699996, 48.696322684000052 ], [ -123.614008498999937, 48.696539086000072 ], [ -123.614589301999928, 48.696859503000034 ], [ -123.615596703999969, 48.697863591000022 ], [ -123.616026355999978, 48.698135648000083 ], [ -123.615948110999938, 48.702781641000115 ], [ -123.616006412999965, 48.704827242000086 ], [ -123.614968142999928, 48.704804007000071 ], [ -123.61481612299994, 48.707799420000079 ], [ -123.611459242999985, 48.707724228000082 ], [ -123.611400448999987, 48.708881000000112 ], [ -123.611392648, 48.708880825000101 ], [ -123.611364677999987, 48.709431100000074 ], [ -123.610715805999959, 48.709416553000054 ], [ -123.610650653, 48.710697952000068 ], [ -123.610690426999923, 48.710697741000054 ], [ -123.610693692999931, 48.71096760800004 ], [ -123.611101473999966, 48.710965445000106 ], [ -123.611113270999965, 48.711939623000035 ], [ -123.610205242999896, 48.712136365000049 ], [ -123.610019723999983, 48.712133342000108 ], [ -123.609904271999966, 48.71213146700012 ], [ -123.60989526099992, 48.712077896000089 ], [ -123.609891207999979, 48.712053847000121 ] ], [ [ -123.610089264999971, 48.700494163000101 ], [ -123.610119435999934, 48.699900780000057 ], [ -123.610036910999952, 48.69989893000011 ], [ -123.610006738999971, 48.700492312000108 ], [ -123.610089264999971, 48.700494163000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157148803", "BldgCostT": "103338746", "sL_LossRatio": "0.807449414456447", "sL_AssetLoss": "369408.9", "sL_BldgLoss": "298279", "sL_StrLoss": "211139", "sL_NStrLoss": "87140", "sL_ContLoss": "71129.9", "geom_point": "0101000020E610000043045FA8AEE65EC041548616FE574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.602642499999902, 48.692541693000052 ], [ -123.602614509999967, 48.691100487000057 ], [ -123.602597606999936, 48.690228795000039 ], [ -123.602418856999961, 48.690221100000088 ], [ -123.601369810999955, 48.690175901000067 ], [ -123.601222476, 48.690173762000043 ], [ -123.600805790999985, 48.690167708000018 ], [ -123.599288009999952, 48.690136202000112 ], [ -123.597729895, 48.690121795000081 ], [ -123.597434509999943, 48.690115192000036 ], [ -123.594236697999932, 48.690089914000126 ], [ -123.594231381, 48.688285303000029 ], [ -123.594217010999969, 48.686365154000065 ], [ -123.597219330999934, 48.686360823000022 ], [ -123.598153298999947, 48.686360577000116 ], [ -123.598799789999973, 48.686360407000016 ], [ -123.599491510999925, 48.686362471000017 ], [ -123.601363024999969, 48.686373084000053 ], [ -123.601898611999957, 48.686375909000041 ], [ -123.602224410999966, 48.686377652000012 ], [ -123.602577842999949, 48.686379507000041 ], [ -123.603505792999982, 48.686384390000029 ], [ -123.603254805999967, 48.685932605000083 ], [ -123.603286905999937, 48.68553952900006 ], [ -123.603316109999952, 48.685182189000052 ], [ -123.603344441, 48.685080991000085 ], [ -123.603394105999925, 48.684903711000068 ], [ -123.60346040899995, 48.684813738000052 ], [ -123.603588331999973, 48.684640221000066 ], [ -123.604326694999926, 48.683638504000058 ], [ -123.604796187999966, 48.682837809000048 ], [ -123.604916394999975, 48.682475505000106 ], [ -123.604928015999988, 48.682034085000112 ], [ -123.604685202999946, 48.680863201000051 ], [ -123.604706779999972, 48.680197610000036 ], [ -123.604821407999921, 48.679519715000026 ], [ -123.604867564999978, 48.679389669000074 ], [ -123.605138015999955, 48.679379824000094 ], [ -123.605159842999953, 48.679376534000021 ], [ -123.605591068999956, 48.679311676000104 ], [ -123.610874504999941, 48.679029490000055 ], [ -123.612441541999956, 48.679008313000089 ], [ -123.612433434999929, 48.679167966000108 ], [ -123.611497648999986, 48.679146981000095 ], [ -123.61149090299989, 48.679279789000105 ], [ -123.609980826999902, 48.679245908000048 ], [ -123.609919606999966, 48.68045042300011 ], [ -123.609424527999977, 48.680439311000036 ], [ -123.609400311999934, 48.680915635000133 ], [ -123.60939491, 48.680915513000116 ], [ -123.609376903999944, 48.681269709000077 ], [ -123.609640014, 48.681275615000047 ], [ -123.609456934999983, 48.684876822000014 ], [ -123.608787519999964, 48.684861794000028 ], [ -123.60871948, 48.686199635000037 ], [ -123.608272268999954, 48.686189594000112 ], [ -123.608248886999917, 48.686649246000052 ], [ -123.607948153999956, 48.686642492000054 ], [ -123.607830282999913, 48.688959180000012 ], [ -123.608168524999911, 48.688966776000029 ], [ -123.608147483999957, 48.689380373000134 ], [ -123.611477131999948, 48.689455090000081 ], [ -123.611294163999958, 48.693056252000105 ], [ -123.610869991999962, 48.693046740000035 ], [ -123.610839299999967, 48.693650637000097 ], [ -123.609529801999955, 48.692825400000117 ], [ -123.608632793999988, 48.692054499000108 ], [ -123.60830438, 48.69192359000003 ], [ -123.608144064999962, 48.691932194000124 ], [ -123.60813838899999, 48.691932488000084 ], [ -123.608100725, 48.691953444000021 ], [ -123.608068804999959, 48.691971188000053 ], [ -123.607536698999965, 48.692266886000041 ], [ -123.607882678999971, 48.692931707000071 ], [ -123.607975702, 48.693236609000053 ], [ -123.607995062999976, 48.69352282100013 ], [ -123.607947482999975, 48.693792124 ], [ -123.606391099999925, 48.693794981000018 ], [ -123.602614916999968, 48.69380019000009 ], [ -123.602642499999902, 48.692541693000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.980164219076489", "sL_AssetLoss": "6795.8", "sL_BldgLoss": "6661", "sL_StrLoss": "6000", "sL_NStrLoss": "661", "sL_ContLoss": "134.8", "geom_point": "0101000020E6100000473725CD5DE75EC00E5631CF29594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.613458236999975, 48.695756656000086 ], [ -123.616032220999926, 48.69581428800003 ], [ -123.616026355999978, 48.698135648000083 ], [ -123.615596703999969, 48.697863591000022 ], [ -123.614589301999928, 48.696859503000034 ], [ -123.614008498999937, 48.696539086000072 ], [ -123.61376171699996, 48.696322684000052 ], [ -123.613604789999954, 48.69607309600017 ], [ -123.613458236999975, 48.695756656000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.978646996020576", "sL_AssetLoss": "1030.3", "sL_BldgLoss": "1008.3", "sL_StrLoss": "910", "sL_NStrLoss": "98.3", "sL_ContLoss": "22", "geom_point": "0101000020E6100000D7CB638B6CE75EC0B7DEE30AF7564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.615722944999973, 48.678963890000041 ], [ -123.616310882999954, 48.678955921000082 ], [ -123.616284273999966, 48.679870230000127 ], [ -123.61567767899993, 48.679856650000033 ], [ -123.615722944999973, 48.678963890000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177368357", "BldgCostT": "111317422", "sL_LossRatio": "0.807279093339875", "sL_AssetLoss": "566240.85", "sL_BldgLoss": "457114.4", "sL_StrLoss": "290318.4", "sL_NStrLoss": "166796", "sL_ContLoss": "109126.45", "geom_point": "0101000020E61000005F760447B4E55EC0FF1B512D64574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.575432744999944, 48.684213871000118 ], [ -123.57497981099999, 48.683883746000021 ], [ -123.574709223999889, 48.683686482000013 ], [ -123.573932664999944, 48.683119720000029 ], [ -123.573188985999977, 48.682576987000076 ], [ -123.572219383999965, 48.681869308000032 ], [ -123.570848819999966, 48.680868935000056 ], [ -123.570299261999978, 48.680467795000055 ], [ -123.569881728999988, 48.680163018000073 ], [ -123.570060123999909, 48.680136906 ], [ -123.573462831999976, 48.679638634000113 ], [ -123.574161383999979, 48.679844207000059 ], [ -123.574702519999974, 48.680056592000021 ], [ -123.574932297999922, 48.680187334000102 ], [ -123.574996699999971, 48.679640790000121 ], [ -123.58890460500001, 48.679409649000071 ], [ -123.593610057999982, 48.679373837000099 ], [ -123.59734502099991, 48.67937923700002 ], [ -123.60382554099999, 48.679388255000042 ], [ -123.60378474499997, 48.680188851000054 ], [ -123.604006054999971, 48.680193831000111 ], [ -123.604047084999962, 48.67938855700001 ], [ -123.604867564999978, 48.679389669000074 ], [ -123.604821407999921, 48.679519715000026 ], [ -123.604706779999972, 48.680197610000036 ], [ -123.604685202999946, 48.680863201000051 ], [ -123.604928015999988, 48.682034085000112 ], [ -123.604916394999975, 48.682475505000106 ], [ -123.604796187999966, 48.682837809000048 ], [ -123.604326694999926, 48.683638504000058 ], [ -123.603588331999973, 48.684640221000066 ], [ -123.60346040899995, 48.684813738000052 ], [ -123.603394105999925, 48.684903711000068 ], [ -123.603344441, 48.685080991000085 ], [ -123.603316109999952, 48.685182189000052 ], [ -123.603286905999937, 48.68553952900006 ], [ -123.603254805999967, 48.685932605000083 ], [ -123.603505792999982, 48.686384390000029 ], [ -123.602577842999949, 48.686379507000041 ], [ -123.602224410999966, 48.686377652000012 ], [ -123.601898611999957, 48.686375909000041 ], [ -123.601363024999969, 48.686373084000053 ], [ -123.599491510999925, 48.686362471000017 ], [ -123.598799789999973, 48.686360407000016 ], [ -123.598153298999947, 48.686360577000116 ], [ -123.597219330999934, 48.686360823000022 ], [ -123.594217010999969, 48.686365154000065 ], [ -123.591874844999921, 48.686377286000031 ], [ -123.590797800999937, 48.686382842000107 ], [ -123.590743480999947, 48.686383119000048 ], [ -123.590050570999963, 48.686386680000041 ], [ -123.589846790999957, 48.686387732000071 ], [ -123.589018019999941, 48.686392009000052 ], [ -123.588709690999963, 48.686393593000084 ], [ -123.58204937899994, 48.686427614000131 ], [ -123.579996772999934, 48.686436330000099 ], [ -123.57939897199999, 48.686438866000067 ], [ -123.579317444999944, 48.686439213000092 ], [ -123.578707383000022, 48.686441809000101 ], [ -123.578611108999922, 48.686442416000048 ], [ -123.578491606999989, 48.686443217000104 ], [ -123.577697379999975, 48.685864404 ], [ -123.575432744999944, 48.684213871000118 ] ], [ [ -123.586711117, 48.684288496000065 ], [ -123.58673050699997, 48.68391072200005 ], [ -123.586622542, 48.683908276000054 ], [ -123.586603151999924, 48.684286049000022 ], [ -123.586711117, 48.684288496000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167590001", "BldgCostT": "111925001", "sL_LossRatio": "0.856026880808615", "sL_AssetLoss": "492931.6", "sL_BldgLoss": "421962.7", "sL_StrLoss": "301112", "sL_NStrLoss": "120850.7", "sL_ContLoss": "70968.9", "geom_point": "0101000020E6100000C13624E680E45EC021E1BD9BD5574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.583167793999934, 48.692433294000118 ], [ -123.58148480600002, 48.691205390000114 ], [ -123.581210588999951, 48.691077500000056 ], [ -123.58088510499999, 48.690995293000078 ], [ -123.580612190999915, 48.690974110000106 ], [ -123.580441913999934, 48.690960896000078 ], [ -123.580129803999952, 48.690959449000047 ], [ -123.580075447999945, 48.69095920300007 ], [ -123.579790333999981, 48.690957900000043 ], [ -123.579491650999941, 48.690956521000025 ], [ -123.57930143599998, 48.690955662000064 ], [ -123.578868472999957, 48.690953655000051 ], [ -123.57885492299999, 48.690953602 ], [ -123.577159201999919, 48.690949299000046 ], [ -123.576331807999964, 48.690945809000098 ], [ -123.576031990999951, 48.690918296000113 ], [ -123.575363403999944, 48.69080838900009 ], [ -123.574660689999945, 48.690754601000044 ], [ -123.574272037999933, 48.690761001000034 ], [ -123.573903002999913, 48.690767108000067 ], [ -123.573430792999943, 48.690784274000087 ], [ -123.572683518999952, 48.690811424000067 ], [ -123.572119712999935, 48.690831880000118 ], [ -123.571978308999974, 48.690021989000108 ], [ -123.569556500999951, 48.690077597000034 ], [ -123.568078514999968, 48.690113306000036 ], [ -123.562062570999927, 48.690156885000079 ], [ -123.561193095999982, 48.690163142000117 ], [ -123.561102522999988, 48.690163808000058 ], [ -123.561108483999973, 48.687824914000018 ], [ -123.561066199999956, 48.686548601000077 ], [ -123.56102490799999, 48.685384002000085 ], [ -123.561039859999937, 48.685323108000048 ], [ -123.561061002999949, 48.685236995000018 ], [ -123.561257327999897, 48.684851198000068 ], [ -123.561535780999918, 48.684504201000081 ], [ -123.56175980099998, 48.684108306000063 ], [ -123.56248029299995, 48.683109791000078 ], [ -123.562542821999926, 48.682873300000075 ], [ -123.561153378999933, 48.682854099000103 ], [ -123.561040080999959, 48.679750465000062 ], [ -123.561035682999915, 48.679629998000031 ], [ -123.560999705999961, 48.679462394000105 ], [ -123.560924820999972, 48.679336299000084 ], [ -123.569165238999958, 48.680096930000026 ], [ -123.569183604999921, 48.680098608000058 ], [ -123.569254698999941, 48.680105181000044 ], [ -123.569881728999988, 48.680163018000073 ], [ -123.570299261999978, 48.680467795000055 ], [ -123.570848819999966, 48.680868935000056 ], [ -123.572219383999965, 48.681869308000032 ], [ -123.573188985999977, 48.682576987000076 ], [ -123.573932664999944, 48.683119720000029 ], [ -123.574709223999889, 48.683686482000013 ], [ -123.57497981099999, 48.683883746000021 ], [ -123.575432744999944, 48.684213871000118 ], [ -123.577697379999975, 48.685864404 ], [ -123.578491606999989, 48.686443217000104 ], [ -123.578583628999922, 48.686510263000073 ], [ -123.580421539999946, 48.687849320000105 ], [ -123.583301483999932, 48.689947401000026 ], [ -123.586024383, 48.691930817000049 ], [ -123.587073867, 48.692695221000108 ], [ -123.586774029999916, 48.692679813000048 ], [ -123.58630988, 48.692409929000043 ], [ -123.585808988999958, 48.692071389000091 ], [ -123.584559488999915, 48.692809198000063 ], [ -123.584343508999964, 48.692867398000089 ], [ -123.584077016999927, 48.692904593000115 ], [ -123.583801504999911, 48.69285328799999 ], [ -123.583592511999925, 48.692749396000046 ], [ -123.583167793999934, 48.692433294000118 ] ], [ [ -123.565070006999989, 48.685721600000036 ], [ -123.564837909999966, 48.685678902000085 ], [ -123.564771582999981, 48.685741598000099 ], [ -123.5660325, 48.686751292000054 ], [ -123.567003514999897, 48.687305394000056 ], [ -123.568258219999933, 48.687704100000119 ], [ -123.568693012, 48.687728390000068 ], [ -123.56903172199992, 48.687627198000058 ], [ -123.56904459499998, 48.687556004000101 ], [ -123.565454217999957, 48.685972306000096 ], [ -123.565070006999989, 48.685721600000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255827106", "BldgCostT": "166562492", "sL_LossRatio": "0.743561464225555", "sL_AssetLoss": "2175184", "sL_BldgLoss": "1617383", "sL_StrLoss": "773173", "sL_NStrLoss": "844210", "sL_ContLoss": "557801", "geom_point": "0101000020E6100000F53C761F59E45EC0D39BACACC85A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.555087651999884, 48.715361967000042 ], [ -123.555262792999883, 48.714368205000085 ], [ -123.555386278999904, 48.714081354000065 ], [ -123.555750069999974, 48.713236010000074 ], [ -123.555933934, 48.71280878400011 ], [ -123.555943621999916, 48.712786282000138 ], [ -123.555952082999937, 48.712766614000024 ], [ -123.55598112399997, 48.712699132000083 ], [ -123.55601918399995, 48.712610696000056 ], [ -123.556201302999938, 48.711952703000108 ], [ -123.556273294999926, 48.710998497000077 ], [ -123.556553096999934, 48.710467307000073 ], [ -123.556496601999953, 48.710287784000073 ], [ -123.556494455999925, 48.710286892000042 ], [ -123.55627849599999, 48.710198114000086 ], [ -123.556265560999989, 48.710136131000063 ], [ -123.556263582999946, 48.710126650000085 ], [ -123.556258794999934, 48.710103683000099 ], [ -123.556235394999973, 48.709991595000076 ], [ -123.55656507799992, 48.70918979300005 ], [ -123.556617010999972, 48.708818235000066 ], [ -123.556641914999915, 48.708639996000052 ], [ -123.556671010999978, 48.707704309000036 ], [ -123.556639040999968, 48.707563698000087 ], [ -123.556556697999937, 48.707201600000111 ], [ -123.556210111999974, 48.706483798000107 ], [ -123.555698513999957, 48.705820095000085 ], [ -123.555242186999934, 48.704985490000077 ], [ -123.555027554999981, 48.704752801000076 ], [ -123.554664106999937, 48.704358792000036 ], [ -123.553210806999942, 48.703250805000025 ], [ -123.552653506999917, 48.703135498000044 ], [ -123.552143913999913, 48.702971571000035 ], [ -123.552068129999938, 48.702947185000077 ], [ -123.551722683999984, 48.702836066000067 ], [ -123.549842196999961, 48.702231101000059 ], [ -123.549280792999937, 48.701837990000087 ], [ -123.548817599999907, 48.701634285000097 ], [ -123.548758855999935, 48.701587279000087 ], [ -123.548661098999958, 48.70150906700011 ], [ -123.548648902999972, 48.701499312000074 ], [ -123.548179860999966, 48.701124028000073 ], [ -123.548124615999924, 48.701079818000011 ], [ -123.550796188999954, 48.701141693000039 ], [ -123.552616949999972, 48.701126156000051 ], [ -123.552834320999978, 48.701124288000102 ], [ -123.553309918999958, 48.701120216000049 ], [ -123.55344581899999, 48.701119050000045 ], [ -123.553636066999914, 48.701117422000067 ], [ -123.553975813999912, 48.701114522000118 ], [ -123.557231390999959, 48.701086600000103 ], [ -123.560158190999957, 48.701066302000086 ], [ -123.560884407999964, 48.701062209000106 ], [ -123.563799492999976, 48.70095308100008 ], [ -123.563950050999935, 48.700951208000099 ], [ -123.564690184999989, 48.700941897000078 ], [ -123.566355167, 48.700930552000052 ], [ -123.567075441999989, 48.7009256320001 ], [ -123.567279269999958, 48.70092422700003 ], [ -123.567401603999912, 48.70092340000015 ], [ -123.569698270999979, 48.700907660000084 ], [ -123.569861379999963, 48.700906544000141 ], [ -123.570010837999959, 48.70090552500006 ], [ -123.571750163999951, 48.700893569000108 ], [ -123.572283987999938, 48.700889897000103 ], [ -123.572560518999978, 48.700871898000081 ], [ -123.57267153, 48.700847416000038 ], [ -123.573386796999955, 48.700689715000053 ], [ -123.573208349999931, 48.700090374000098 ], [ -123.573181561999917, 48.700000363000129 ], [ -123.573172781999972, 48.69997100700003 ], [ -123.573009606999975, 48.699716698000017 ], [ -123.57289117899991, 48.699597587000078 ], [ -123.572835401999967, 48.699541513000092 ], [ -123.571888809999933, 48.69882342600004 ], [ -123.57160797899999, 48.698610403000032 ], [ -123.571308103999968, 48.698452101000072 ], [ -123.570283194999959, 48.698065134000061 ], [ -123.578280495999962, 48.697900801000102 ], [ -123.579005887999955, 48.698265893000091 ], [ -123.579126705999983, 48.698291015000088 ], [ -123.58034873599992, 48.699024017000056 ], [ -123.580643561, 48.699331892000039 ], [ -123.581489734999934, 48.699579288000038 ], [ -123.583423746999955, 48.700731072000075 ], [ -123.582900696999928, 48.701059190000123 ], [ -123.581930508999932, 48.701585193000021 ], [ -123.581468608999941, 48.701885706000056 ], [ -123.580662181999926, 48.702656002000062 ], [ -123.580503092999962, 48.702900200000045 ], [ -123.58043450199996, 48.703098782000097 ], [ -123.580491917999893, 48.704567404000052 ], [ -123.580043828, 48.704570744000144 ], [ -123.576636212999944, 48.704596102000068 ], [ -123.57699891599999, 48.704931493000075 ], [ -123.57737422299995, 48.705339309000074 ], [ -123.577938592999956, 48.706131796000101 ], [ -123.578037503999951, 48.706371993000118 ], [ -123.578085390999945, 48.706628093000106 ], [ -123.57803571299999, 48.706893431000069 ], [ -123.578025378999911, 48.706948496000052 ], [ -123.577370898999945, 48.708035885000065 ], [ -123.577307799999971, 48.708205803000098 ], [ -123.577288183999912, 48.708271106 ], [ -123.577255100999949, 48.708517286000067 ], [ -123.577356211, 48.709109997000056 ], [ -123.577441778999983, 48.709377127000025 ], [ -123.577531579999928, 48.709657401000051 ], [ -123.577548272999962, 48.709858997000019 ], [ -123.577550801999948, 48.709889499000063 ], [ -123.577541324999942, 48.70993256500001 ], [ -123.577482254999921, 48.710200557000114 ], [ -123.577432196999908, 48.710427607000099 ], [ -123.577426066000015, 48.71051698100014 ], [ -123.577415561999914, 48.710670492000126 ], [ -123.577400144999913, 48.710895318000034 ], [ -123.577393334999925, 48.710994492000104 ], [ -123.577377403999947, 48.7112266910001 ], [ -123.577427017999952, 48.711415550000076 ], [ -123.577459111999957, 48.711537701000069 ], [ -123.577985381999952, 48.712387005000089 ], [ -123.578071880999929, 48.712482485000073 ], [ -123.578177983999979, 48.712599595000079 ], [ -123.57873530399992, 48.713111496000103 ], [ -123.580022590999945, 48.714208808000087 ], [ -123.581339171999943, 48.71507173600002 ], [ -123.581650798999974, 48.715275985000055 ], [ -123.581854934999924, 48.715471799000049 ], [ -123.581883618999953, 48.715499307000094 ], [ -123.582113815999961, 48.715827198000071 ], [ -123.582396514999942, 48.716162589000106 ], [ -123.582807101999933, 48.716494594000018 ], [ -123.583875813999896, 48.7171984 ], [ -123.58496936599991, 48.717834724000035 ], [ -123.585331837999917, 48.718045640000092 ], [ -123.585742181999976, 48.718284398000073 ], [ -123.586177286999913, 48.718482029000015 ], [ -123.586571299999946, 48.718661007000023 ], [ -123.587018253999943, 48.718766986000027 ], [ -123.588315361999975, 48.719074563000021 ], [ -123.579709703, 48.7190337010001 ], [ -123.579244906999961, 48.719037506000092 ], [ -123.57930588, 48.717854092000103 ], [ -123.578137726999927, 48.717827555000014 ], [ -123.578165621999986, 48.717286399000109 ], [ -123.578088857999916, 48.717284655000071 ], [ -123.578112320999963, 48.71682948500009 ], [ -123.57761326899994, 48.716818144000101 ], [ -123.577626579000011, 48.716559975000095 ], [ -123.576502243999954, 48.716534415000034 ], [ -123.576577054, 48.715084028000064 ], [ -123.576054543999973, 48.715072145000072 ], [ -123.576009639999981, 48.715942549000026 ], [ -123.574205025000012, 48.715901489000061 ], [ -123.574104070999965, 48.717856789000059 ], [ -123.571918656999983, 48.717807025000056 ], [ -123.57188831399999, 48.71839414300004 ], [ -123.56943581799996, 48.718338243000055 ], [ -123.569401781999943, 48.718996157000056 ], [ -123.567112835999978, 48.719042300000133 ], [ -123.563651057999948, 48.719028224000091 ], [ -123.561235704999888, 48.7190696830001 ], [ -123.560851054999915, 48.719162408000059 ], [ -123.560492505999946, 48.71885019100008 ], [ -123.560152391999964, 48.718743398000058 ], [ -123.557807495999924, 48.717514295000029 ], [ -123.557704298999923, 48.717460201000065 ], [ -123.556336097000013, 48.716693911000064 ], [ -123.555199104999957, 48.715934790000077 ], [ -123.555045395999969, 48.715601610000114 ], [ -123.555087651999884, 48.715361967000042 ] ], [ [ -123.566760915999907, 48.714069213000087 ], [ -123.566773865999934, 48.713819138000098 ], [ -123.566380530999979, 48.713810157000111 ], [ -123.566419158999906, 48.713064330000115 ], [ -123.56656702199993, 48.710209195000054 ], [ -123.56904020899999, 48.710265643000078 ], [ -123.569075757999954, 48.709578455000056 ], [ -123.571251372999939, 48.709628063000054 ], [ -123.571287305999974, 48.708932807000103 ], [ -123.571836172999923, 48.708945316000055 ], [ -123.571989042999959, 48.705986615000036 ], [ -123.573820730999927, 48.706028338000131 ], [ -123.573826727999972, 48.705912179000087 ], [ -123.572217820999924, 48.705875533000089 ], [ -123.57237851, 48.702764786000074 ], [ -123.5719945, 48.702756036000025 ], [ -123.572006182999971, 48.702529883000061 ], [ -123.57185647599999, 48.702530626000048 ], [ -123.57185434799996, 48.702342798000075 ], [ -123.568922229999885, 48.702275934000085 ], [ -123.568855966999962, 48.70355696200005 ], [ -123.567832446999944, 48.703533603000125 ], [ -123.567766294999927, 48.704811885000034 ], [ -123.56718245699993, 48.704798556000085 ], [ -123.567079577999934, 48.706785896000042 ], [ -123.56664447199995, 48.706775961000034 ], [ -123.566630872999951, 48.707038606000125 ], [ -123.564897330999912, 48.70699900400006 ], [ -123.564852448999915, 48.707865147000092 ], [ -123.560696301999954, 48.70777008600006 ], [ -123.560695637999956, 48.707782901 ], [ -123.563030118999933, 48.707836316000112 ], [ -123.562978896999979, 48.708824055000079 ], [ -123.56328746899996, 48.70883111200007 ], [ -123.563283391999988, 48.708909756000033 ], [ -123.564019848999976, 48.708926593000086 ], [ -123.564001094999952, 48.709288378000068 ], [ -123.564272759999952, 48.709294588000063 ], [ -123.564152216999943, 48.711620095000036 ], [ -123.566242028999909, 48.711667842000033 ], [ -123.566171300999926, 48.713033380000063 ], [ -123.56607866899999, 48.714821694000101 ], [ -123.566624675, 48.714834162000052 ], [ -123.566664404999983, 48.714067010000079 ], [ -123.566760915999907, 48.714069213000087 ] ], [ [ -123.559479903999929, 48.706780879000078 ], [ -123.55952929599999, 48.705829761000125 ], [ -123.558949736000017, 48.705832575000017 ], [ -123.558901167999949, 48.706767622 ], [ -123.559479903999929, 48.706780879000078 ] ], [ [ -123.578062320999948, 48.700454808000067 ], [ -123.578116584999961, 48.699401698000081 ], [ -123.577663409999957, 48.699391395000191 ], [ -123.5776716, 48.699232474000034 ], [ -123.576932892999963, 48.699215675000033 ], [ -123.576949290999934, 48.698897590000087 ], [ -123.576542400999969, 48.698888336000032 ], [ -123.57652355399992, 48.69925388200005 ], [ -123.577601970999964, 48.699278408000019 ], [ -123.577541950999944, 48.70044297800009 ], [ -123.578062320999948, 48.700454808000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161427251", "BldgCostT": "105490001", "sL_LossRatio": "0.76258873731082", "sL_AssetLoss": "1181774.6", "sL_BldgLoss": "901208", "sL_StrLoss": "514151", "sL_NStrLoss": "387057", "sL_ContLoss": "280566.6", "geom_point": "0101000020E6100000C296AAF6A1E25EC04B3BDADDA8584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.538754172999944, 48.695453625000034 ], [ -123.538753635, 48.695403303000113 ], [ -123.538638005999928, 48.69540384400009 ], [ -123.538627194999904, 48.69539921100008 ], [ -123.538147293999913, 48.695079803000077 ], [ -123.537848901999922, 48.694948492000044 ], [ -123.537154288999943, 48.694738715000021 ], [ -123.53711566599992, 48.694721852000029 ], [ -123.537114383999935, 48.694601303000148 ], [ -123.536842472999965, 48.69460257100009 ], [ -123.536690021999945, 48.694536008000078 ], [ -123.536528512999951, 48.694419695000065 ], [ -123.536325184999967, 48.694273304000063 ], [ -123.536286185999927, 48.694229623000048 ], [ -123.5361509089999, 48.694078196000099 ], [ -123.536098617999983, 48.693912096000105 ], [ -123.53605065899994, 48.693816931000072 ], [ -123.535965768999986, 48.693605810000093 ], [ -123.53596708799995, 48.693538799000095 ], [ -123.535968430999958, 48.693471224000056 ], [ -123.536026755999899, 48.693265317000055 ], [ -123.536220077999957, 48.693087502000019 ], [ -123.536344535999945, 48.692962945000055 ], [ -123.536455846999914, 48.692820337000043 ], [ -123.536486514, 48.692641090000023 ], [ -123.536558000999946, 48.692453257000075 ], [ -123.536558710999927, 48.692417369000033 ], [ -123.536682843999984, 48.692310745000086 ], [ -123.53686099599993, 48.692213597000062 ], [ -123.536943372999957, 48.692160466000068 ], [ -123.537042320999987, 48.692083294000035 ], [ -123.537166472999971, 48.691888628000058 ], [ -123.537278175999958, 48.691712490000064 ], [ -123.53730220199995, 48.691605382000013 ], [ -123.537390410999961, 48.691474941000109 ], [ -123.537576801999975, 48.69133507300009 ], [ -123.537857985999935, 48.691224411000043 ], [ -123.53845790299999, 48.691038991000092 ], [ -123.539017585999957, 48.69071490400006 ], [ -123.53911095899997, 48.690687016000048 ], [ -123.539112312000029, 48.690813590000054 ], [ -123.539519934999959, 48.690811682000053 ], [ -123.539518507999958, 48.69067822900012 ], [ -123.539628007999966, 48.690704916000065 ], [ -123.539655411999959, 48.690711586000042 ], [ -123.540074908999941, 48.690991691000072 ], [ -123.540821983999976, 48.69050871400006 ], [ -123.54109627699998, 48.690322998000113 ], [ -123.541360390999927, 48.690072185000098 ], [ -123.541479656999954, 48.68991586300011 ], [ -123.54152928399999, 48.689850797000055 ], [ -123.541546076999964, 48.689806722000085 ], [ -123.541559201, 48.68977220400005 ], [ -123.542193414999971, 48.689918460000079 ], [ -123.542323315999937, 48.689948404000098 ], [ -123.542726165999952, 48.690066654000105 ], [ -123.543253310999944, 48.690221393000073 ], [ -123.544242490999935, 48.690555997000125 ], [ -123.545027893999958, 48.690767898000047 ], [ -123.545508573999896, 48.690848894000048 ], [ -123.545740699999982, 48.690888010000094 ], [ -123.54579163399994, 48.690892223000041 ], [ -123.546404004999943, 48.690943009000058 ], [ -123.547330586999948, 48.690969701000022 ], [ -123.547329599999955, 48.691066102000057 ], [ -123.547330520999978, 48.691142479000092 ], [ -123.547339271999974, 48.691862123000121 ], [ -123.547347345999967, 48.692527769 ], [ -123.547348280999969, 48.69260609600007 ], [ -123.547089591999935, 48.692597399000157 ], [ -123.54691278, 48.69255280000008 ], [ -123.5468632799999, 48.692461488000049 ], [ -123.546720395999927, 48.69241758400004 ], [ -123.546523798999928, 48.692467182000065 ], [ -123.545909709999989, 48.692717088000066 ], [ -123.545627475999964, 48.692796288000096 ], [ -123.545274111999959, 48.692833207000028 ], [ -123.543939502999962, 48.692851095000073 ], [ -123.543667000999932, 48.692924097000038 ], [ -123.543434796999946, 48.693083716000025 ], [ -123.543355609999963, 48.693209228000065 ], [ -123.54316851399993, 48.69350569800006 ], [ -123.542942794999973, 48.693696105000079 ], [ -123.54273321, 48.693787698000108 ], [ -123.542506492999962, 48.693841993000092 ], [ -123.542657113999951, 48.694151909000077 ], [ -123.54267282699999, 48.694230028000092 ], [ -123.542694803999936, 48.694339309000107 ], [ -123.542644783999961, 48.694518494000086 ], [ -123.54248190699991, 48.694701293000065 ], [ -123.54228030099992, 48.694794012000081 ], [ -123.542060485999983, 48.694845704000038 ], [ -123.541766312, 48.694840706000022 ], [ -123.539980391999933, 48.694612895000027 ], [ -123.539923121999976, 48.69485219900011 ], [ -123.539980691999943, 48.6949960150001 ], [ -123.540168974999958, 48.69508049100002 ], [ -123.540545604, 48.695168597000084 ], [ -123.540877391999913, 48.695284408000141 ], [ -123.54105460199996, 48.695425505000088 ], [ -123.541135421999925, 48.695567002000097 ], [ -123.541231387999972, 48.696195702000054 ], [ -123.540891908000035, 48.696175193000101 ], [ -123.540563891999952, 48.696090094000084 ], [ -123.539111595999913, 48.695606793000046 ], [ -123.538754172999944, 48.695453625000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9727001", "BldgCostT": "6235001", "sL_LossRatio": "0.708764820651358", "sL_AssetLoss": "71960.4", "sL_BldgLoss": "51003", "sL_StrLoss": "26364", "sL_NStrLoss": "24639", "sL_ContLoss": "20957.4", "geom_point": "0101000020E6100000BA69D89410E45EC0A2F45C11C2564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.560744405999955, 48.679284393000046 ], [ -123.560264393999944, 48.679255389000048 ], [ -123.557778862999911, 48.679278513000021 ], [ -123.557806519999957, 48.678745984000102 ], [ -123.55934535599999, 48.678781265000069 ], [ -123.559357870999932, 48.67854012100004 ], [ -123.560202154999985, 48.678559469000113 ], [ -123.560231064999954, 48.678002242000055 ], [ -123.560339182999925, 48.678004718000096 ], [ -123.560499425999964, 48.674915738000053 ], [ -123.563677560999963, 48.674988506000055 ], [ -123.563686046999962, 48.674998195000072 ], [ -123.564211993999933, 48.675550589000039 ], [ -123.564596741999949, 48.675954635000011 ], [ -123.56555745699994, 48.676862648000046 ], [ -123.565947126999987, 48.67719063800007 ], [ -123.565806692999942, 48.677191328000085 ], [ -123.56580384199999, 48.677246403000034 ], [ -123.566019226999956, 48.677251326000025 ], [ -123.56663621, 48.677770636000041 ], [ -123.567356119999886, 48.678326999000063 ], [ -123.567501319999948, 48.678432662000027 ], [ -123.569124766999892, 48.67961395500005 ], [ -123.569471229, 48.679865231000122 ], [ -123.569756059999946, 48.680071847000072 ], [ -123.569881728999988, 48.680163018000073 ], [ -123.569254698999941, 48.680105181000044 ], [ -123.569183604999921, 48.680098608000058 ], [ -123.569165238999958, 48.680096930000026 ], [ -123.560924820999972, 48.679336299000084 ], [ -123.560744405999955, 48.679284393000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "393824571", "BldgCostT": "253379932", "sL_LossRatio": "0.767054164723925", "sL_AssetLoss": "1713643", "sL_BldgLoss": "1314457", "sL_StrLoss": "692966", "sL_NStrLoss": "621491", "sL_ContLoss": "399186", "geom_point": "0101000020E6100000D726B262FAE25EC0BF0F8B4175554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.532472530999925, 48.679010732000052 ], [ -123.5325361, 48.678572107000072 ], [ -123.532493561999956, 48.678187328000092 ], [ -123.532476398999989, 48.678032290000061 ], [ -123.532155902999975, 48.677350098000034 ], [ -123.53221402199992, 48.676448942000022 ], [ -123.532221588999931, 48.676331715000117 ], [ -123.532249312999951, 48.675901702000075 ], [ -123.532309142999921, 48.675624299000035 ], [ -123.532509408999886, 48.674695387000035 ], [ -123.532613139999981, 48.673756597000128 ], [ -123.532620802999958, 48.673687105000113 ], [ -123.53252460799996, 48.672913301000058 ], [ -123.532501097999955, 48.672724308000092 ], [ -123.53158730199999, 48.671029485000119 ], [ -123.531403682999922, 48.670345896000065 ], [ -123.531491294999981, 48.669670807000031 ], [ -123.532424814999899, 48.667921896000053 ], [ -123.533801480999927, 48.666095943000116 ], [ -123.537211089999971, 48.666174877000081 ], [ -123.537208919999941, 48.666216341000087 ], [ -123.538010555999932, 48.666234883000136 ], [ -123.538039551999972, 48.665680893000101 ], [ -123.536886411999944, 48.665654218000057 ], [ -123.537019633999989, 48.66310990900007 ], [ -123.535043005999924, 48.663064156000189 ], [ -123.535005102999918, 48.662844595000074 ], [ -123.534401103999983, 48.662262102000106 ], [ -123.533927007999964, 48.661077085000095 ], [ -123.533993214999938, 48.660798001000032 ], [ -123.533863910999969, 48.660222599000051 ], [ -123.5339149859999, 48.659943504000061 ], [ -123.534143302, 48.659708496000093 ], [ -123.535129590999986, 48.659210011 ], [ -123.536056999, 48.658324085000082 ], [ -123.53738059799997, 48.657543695000093 ], [ -123.537484987999974, 48.657254502000086 ], [ -123.538129091999949, 48.656568103000033 ], [ -123.538076356999909, 48.65629291700003 ], [ -123.53804311699993, 48.656119496000059 ], [ -123.538189409999944, 48.655865910000067 ], [ -123.539040901999954, 48.655313412000105 ], [ -123.539334396999934, 48.654853299000088 ], [ -123.540128204999945, 48.654292208000122 ], [ -123.540537005999965, 48.654353394000026 ], [ -123.541204610999955, 48.654601201000013 ], [ -123.541424008999954, 48.654826286000088 ], [ -123.541886603999927, 48.654868997000015 ], [ -123.542727314, 48.654802106000055 ], [ -123.54323180499992, 48.654880391000141 ], [ -123.543611907999946, 48.655039904000098 ], [ -123.544092907000021, 48.65542440400003 ], [ -123.544939716999963, 48.655907299000056 ], [ -123.545058227999945, 48.655889430000045 ], [ -123.545440309999918, 48.655831808000102 ], [ -123.546293509999927, 48.655522707000046 ], [ -123.546850189999958, 48.655555511000067 ], [ -123.547629006999927, 48.655965602000016 ], [ -123.548530788999955, 48.656573809000058 ], [ -123.549518090999939, 48.657441093000095 ], [ -123.55018779, 48.65786129500006 ], [ -123.551728092999937, 48.658356915000084 ], [ -123.552806108000013, 48.658865291000019 ], [ -123.554156402999965, 48.659335311000071 ], [ -123.55419485699997, 48.659194925000094 ], [ -123.554123192999924, 48.660573355000096 ], [ -123.552436165999936, 48.660534576000046 ], [ -123.552414194999983, 48.660956862000035 ], [ -123.554531488999928, 48.661005527000086 ], [ -123.554632850999894, 48.659055543000136 ], [ -123.554235534999961, 48.659046415000063 ], [ -123.554287087999924, 48.658858202000069 ], [ -123.554492046999954, 48.658824565000053 ], [ -123.554625275999982, 48.658802696000123 ], [ -123.555453176999919, 48.658814257000131 ], [ -123.556051996999912, 48.658822609000012 ], [ -123.55636329799998, 48.658731512000045 ], [ -123.556447665999954, 48.658679725000155 ], [ -123.55666031899996, 48.658549196000131 ], [ -123.556709302999934, 48.658198787000067 ], [ -123.55597291, 48.657905398 ], [ -123.555562387999913, 48.657619090000082 ], [ -123.555544893999965, 48.657310723000094 ], [ -123.555528199999941, 48.657016703000053 ], [ -123.555717104999985, 48.656898501000121 ], [ -123.556125524999956, 48.656807303000065 ], [ -123.556608902999955, 48.656481204000073 ], [ -123.557379394999927, 48.656162209000051 ], [ -123.558020023999944, 48.655792886 ], [ -123.558041507, 48.65578049900008 ], [ -123.558279824999914, 48.655753460000085 ], [ -123.558530594, 48.655724998000089 ], [ -123.559426196999937, 48.655783286 ], [ -123.559534504999931, 48.655756311000076 ], [ -123.559547315999978, 48.655647998000056 ], [ -123.558536092999944, 48.65528563000008 ], [ -123.558307405999983, 48.655203695000097 ], [ -123.557652484999934, 48.655027106000041 ], [ -123.557122498999917, 48.65501141200005 ], [ -123.555425595999964, 48.656207814000034 ], [ -123.555033102999971, 48.656308897000081 ], [ -123.554706589999981, 48.656202096000129 ], [ -123.554594082999984, 48.655870199000077 ], [ -123.554596085999933, 48.65581856600005 ], [ -123.554636106999922, 48.654780698000103 ], [ -123.554553067999947, 48.654727820000161 ], [ -123.558701503999913, 48.654473713000101 ], [ -123.558405311999948, 48.654276811000109 ], [ -123.558355203999923, 48.654243493000067 ], [ -123.558122953999927, 48.654063356000108 ], [ -123.557913387999974, 48.653900805000148 ], [ -123.557732678999969, 48.653700106000073 ], [ -123.557560393999964, 48.653362709000142 ], [ -123.557542328999915, 48.653280951000127 ], [ -123.557492314999976, 48.653054612000034 ], [ -123.557483699999935, 48.652895929000074 ], [ -123.557462481999949, 48.652505893000104 ], [ -123.55998128799996, 48.652505995000126 ], [ -123.560011828999961, 48.652676172000028 ], [ -123.560500203999979, 48.65539989300003 ], [ -123.560517908999884, 48.655498551000065 ], [ -123.560540996999976, 48.655627166 ], [ -123.560561621999938, 48.655742211000124 ], [ -123.560591847999973, 48.655910929000093 ], [ -123.560598591999948, 48.655948399000074 ], [ -123.560601440999974, 48.655964432000076 ], [ -123.560608747999964, 48.656005058000048 ], [ -123.56061147399997, 48.65602040400011 ], [ -123.560675902999947, 48.656379484000091 ], [ -123.560679256999919, 48.656398226000128 ], [ -123.56075419699999, 48.656816116000073 ], [ -123.560785586999884, 48.657387405000151 ], [ -123.56078472899992, 48.657396507000023 ], [ -123.560754079999981, 48.657712775000043 ], [ -123.56071859599993, 48.658079101000027 ], [ -123.560666810999962, 48.658228922000099 ], [ -123.560151597999933, 48.659718849000093 ], [ -123.559882906, 48.660495861000072 ], [ -123.559817797999955, 48.660684017000072 ], [ -123.559664848999958, 48.661126387000124 ], [ -123.559578092999956, 48.661377203 ], [ -123.559536885999989, 48.661575614000071 ], [ -123.559370293, 48.662377490000083 ], [ -123.559274570999946, 48.664652515000022 ], [ -123.559265722999896, 48.664862897000113 ], [ -123.559312089999978, 48.66553729000001 ], [ -123.559315975999979, 48.66556285300004 ], [ -123.559385768999945, 48.666021523000026 ], [ -123.55953960299999, 48.667032499000094 ], [ -123.55955485, 48.667099653000051 ], [ -123.559677616, 48.667639346000108 ], [ -123.559780287999956, 48.668090790000115 ], [ -123.559919579999985, 48.668528719000115 ], [ -123.560064801999886, 48.668985194000108 ], [ -123.560434435999966, 48.669912174000025 ], [ -123.560520792999938, 48.670128710000071 ], [ -123.560611931999972, 48.670323254000081 ], [ -123.560976288999953, 48.671100914000078 ], [ -123.56150410799998, 48.672036840000089 ], [ -123.561884650999943, 48.672656454000084 ], [ -123.562054372999938, 48.672932787000086 ], [ -123.562887011000029, 48.674085746000074 ], [ -123.562967997999976, 48.674178251000058 ], [ -123.560088465, 48.674112305000058 ], [ -123.560090507999945, 48.674072946000081 ], [ -123.558940117999938, 48.674046578000109 ], [ -123.558923149999941, 48.674373495000097 ], [ -123.555737926999981, 48.674300422000023 ], [ -123.555636623999945, 48.676249470000101 ], [ -123.554408352999971, 48.676221267000102 ], [ -123.554346328999941, 48.677413923000074 ], [ -123.554965505999959, 48.677428142000061 ], [ -123.554869523999912, 48.67927410300004 ], [ -123.555245704999948, 48.67928274000009 ], [ -123.555244702999957, 48.679302030000031 ], [ -123.55058588199995, 48.67934510500006 ], [ -123.548656531999981, 48.679339058000039 ], [ -123.547257291999969, 48.679334648000051 ], [ -123.546550770999914, 48.679332411000111 ], [ -123.544662522999971, 48.679326435000121 ], [ -123.544132758, 48.679324734000119 ], [ -123.542665380999921, 48.679320054000051 ], [ -123.542583888999957, 48.679319807000105 ], [ -123.542026809, 48.679318027000079 ], [ -123.541632715, 48.679316739000051 ], [ -123.541021128999958, 48.679314803000103 ], [ -123.539145958999967, 48.679308744000068 ], [ -123.536664822999938, 48.679300706000085 ], [ -123.53620102099994, 48.679298991000074 ], [ -123.532697285999987, 48.679230572000094 ], [ -123.532434338999963, 48.679274074000034 ], [ -123.53247160299999, 48.679017028000089 ], [ -123.532472530999925, 48.679010732000052 ] ], [ [ -123.54267753499991, 48.677927560000107 ], [ -123.542721409999928, 48.677087909000079 ], [ -123.543917859999965, 48.677115513000047 ], [ -123.54392476799994, 48.676983238000034 ], [ -123.545189387999969, 48.677012400000152 ], [ -123.545193821999959, 48.676927469000091 ], [ -123.546772811999915, 48.676963859000168 ], [ -123.546779965000027, 48.676826728000044 ], [ -123.542191948999971, 48.67672092600008 ], [ -123.542198975999938, 48.676586474000018 ], [ -123.542075951999948, 48.676583635000043 ], [ -123.542048732999902, 48.677104401000115 ], [ -123.541408766999936, 48.677089627000022 ], [ -123.541393423999963, 48.677383116000037 ], [ -123.538950775, 48.677326689000047 ], [ -123.538941048999916, 48.677512527000061 ], [ -123.539180393999956, 48.67751805800004 ], [ -123.539168617999962, 48.677743093000103 ], [ -123.542194499999937, 48.677812979000123 ], [ -123.54218528, 48.677989395000019 ], [ -123.542328858999952, 48.677992709000101 ], [ -123.542332678999969, 48.677919602000031 ], [ -123.54267753499991, 48.677927560000107 ] ], [ [ -123.549530029999957, 48.674178273000081 ], [ -123.549519627, 48.673221892000079 ], [ -123.54992710799992, 48.673219947000042 ], [ -123.54992123399991, 48.672680204000123 ], [ -123.549957075999899, 48.67268003300007 ], [ -123.549994234999986, 48.671966726 ], [ -123.549913448999988, 48.671964868000103 ], [ -123.549918296999977, 48.672410333000116 ], [ -123.549510823999967, 48.67241227800006 ], [ -123.549516692999987, 48.672952021000071 ], [ -123.549469003999974, 48.672952248000108 ], [ -123.549405270999969, 48.674175402000095 ], [ -123.549530029999957, 48.674178273000081 ] ], [ [ -123.544951834999935, 48.666820424000065 ], [ -123.544957237999967, 48.666716884000039 ], [ -123.543411353999915, 48.666681223000111 ], [ -123.543403410999943, 48.666833305000111 ], [ -123.544502575999942, 48.666858664000081 ], [ -123.544505110999964, 48.666810121000033 ], [ -123.544951834999935, 48.666820424000065 ] ], [ [ -123.544635548999921, 48.663053591000057 ], [ -123.544724458999951, 48.661350133000013 ], [ -123.544399005999963, 48.661342625000046 ], [ -123.544323828999893, 48.66278278900004 ], [ -123.542462717999982, 48.662739837000146 ], [ -123.54244633499999, 48.663053409000099 ], [ -123.544186907999958, 48.663093580000108 ], [ -123.544189531999905, 48.663043302000034 ], [ -123.544635548999921, 48.663053591000057 ] ], [ [ -123.53893604699999, 48.662096070000104 ], [ -123.538997189999975, 48.660927312000126 ], [ -123.538697361999979, 48.660920379000082 ], [ -123.53873856599995, 48.660132803000103 ], [ -123.538461849999933, 48.660126404000017 ], [ -123.538436873999956, 48.660603740000099 ], [ -123.538114658999987, 48.660596288000136 ], [ -123.538084391999959, 48.66117464700006 ], [ -123.53790614399999, 48.66117052400012 ], [ -123.537859006999895, 48.662071162000139 ], [ -123.53893604699999, 48.662096070000104 ] ], [ [ -123.544997884999958, 48.659974862000034 ], [ -123.544968858999937, 48.660531053000106 ], [ -123.545403626999928, 48.660541081000076 ], [ -123.545425073999979, 48.660130056000114 ], [ -123.54522115, 48.660125352000094 ], [ -123.545228723999983, 48.659980186000055 ], [ -123.544997884999958, 48.659974862000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146075751", "BldgCostT": "91835001", "sL_LossRatio": "0.690836311836938", "sL_AssetLoss": "1323707.2", "sL_BldgLoss": "914465", "sL_StrLoss": "449535", "sL_NStrLoss": "464930", "sL_ContLoss": "409242.2", "geom_point": "0101000020E6100000DA3D584ABFE45EC0E126B4F608554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.569124766999892, 48.67961395500005 ], [ -123.567501319999948, 48.678432662000027 ], [ -123.567356119999886, 48.678326999000063 ], [ -123.56663621, 48.677770636000041 ], [ -123.566019226999956, 48.677251326000025 ], [ -123.566059201999934, 48.677252240000072 ], [ -123.56606241899999, 48.677190072 ], [ -123.565947126999987, 48.67719063800007 ], [ -123.56555745699994, 48.676862648000046 ], [ -123.564596741999949, 48.675954635000011 ], [ -123.564211993999933, 48.675550589000039 ], [ -123.563686046999962, 48.674998195000072 ], [ -123.563677560999963, 48.674988506000055 ], [ -123.563878483999957, 48.674993103000133 ], [ -123.565918056999976, 48.675039747000049 ], [ -123.565890529999976, 48.675571605000158 ], [ -123.566253496999977, 48.675569821000124 ], [ -123.566256520999929, 48.675839692000125 ], [ -123.567071521999935, 48.675835683000045 ], [ -123.567068492999979, 48.675565812000052 ], [ -123.568022585999941, 48.675561112000082 ], [ -123.568049812999945, 48.675034614000047 ], [ -123.566989167999949, 48.675010383000078 ], [ -123.56705816499999, 48.673676664000034 ], [ -123.566639809999941, 48.673678723000094 ], [ -123.566637688999933, 48.673489576000044 ], [ -123.565546948999938, 48.673464642000049 ], [ -123.565507002999965, 48.674236334000042 ], [ -123.563166567999986, 48.674182796000096 ], [ -123.562967997999976, 48.674178251000058 ], [ -123.562887011000029, 48.674085746000074 ], [ -123.562054372999938, 48.672932787000086 ], [ -123.561884650999943, 48.672656454000084 ], [ -123.56150410799998, 48.672036840000089 ], [ -123.560976288999953, 48.671100914000078 ], [ -123.560611931999972, 48.670323254000081 ], [ -123.560520792999938, 48.670128710000071 ], [ -123.560434435999966, 48.669912174000025 ], [ -123.560064801999886, 48.668985194000108 ], [ -123.559919579999985, 48.668528719000115 ], [ -123.559780287999956, 48.668090790000115 ], [ -123.559677616, 48.667639346000108 ], [ -123.55955485, 48.667099653000051 ], [ -123.55953960299999, 48.667032499000094 ], [ -123.559385768999945, 48.666021523000026 ], [ -123.559315975999979, 48.66556285300004 ], [ -123.559312089999978, 48.66553729000001 ], [ -123.559265722999896, 48.664862897000113 ], [ -123.559274570999946, 48.664652515000022 ], [ -123.559370293, 48.662377490000083 ], [ -123.559536885999989, 48.661575614000071 ], [ -123.559578092999956, 48.661377203 ], [ -123.559664848999958, 48.661126387000124 ], [ -123.559817797999955, 48.660684017000072 ], [ -123.559882906, 48.660495861000072 ], [ -123.560151597999933, 48.659718849000093 ], [ -123.560666810999962, 48.658228922000099 ], [ -123.56071859599993, 48.658079101000027 ], [ -123.560754079999981, 48.657712775000043 ], [ -123.56078472899992, 48.657396507000023 ], [ -123.560785586999884, 48.657387405000151 ], [ -123.560977799999947, 48.657393601000109 ], [ -123.561708787, 48.657414912000021 ], [ -123.563595391999968, 48.657584285000063 ], [ -123.563697718999947, 48.657589316000063 ], [ -123.564278313999949, 48.657617911000088 ], [ -123.565692967999951, 48.65759957300007 ], [ -123.566453194999923, 48.657589714000011 ], [ -123.566716188999948, 48.657586301000073 ], [ -123.56748507399999, 48.657570332000077 ], [ -123.56764588599999, 48.657567008000058 ], [ -123.570051143999962, 48.657510644000112 ], [ -123.570349560999929, 48.657503650000102 ], [ -123.571028223999974, 48.65748775800008 ], [ -123.57106891799998, 48.657486785000046 ], [ -123.571408396999985, 48.657478827000013 ], [ -123.571707213999943, 48.65747183100008 ], [ -123.572905909, 48.657443707 ], [ -123.573421679999953, 48.657378800000046 ], [ -123.573929106999927, 48.657266008000079 ], [ -123.574308865999967, 48.657130396000099 ], [ -123.574971388999984, 48.656825496000067 ], [ -123.575027429999949, 48.656796082000064 ], [ -123.575125411999949, 48.656744617000058 ], [ -123.575662055999942, 48.656462818000087 ], [ -123.575760035999934, 48.656411355000039 ], [ -123.57634333299994, 48.656105037000096 ], [ -123.576396539999919, 48.65607711100003 ], [ -123.577521300999976, 48.655486413000048 ], [ -123.57798108599999, 48.655193106000084 ], [ -123.57805350199996, 48.655126903000102 ], [ -123.578488899999982, 48.654728801000111 ], [ -123.579114813999951, 48.65376844700009 ], [ -123.57928372899994, 48.653509264000085 ], [ -123.579519526999931, 48.653273952000056 ], [ -123.579926702999941, 48.6529478920001 ], [ -123.582790115999927, 48.651281943000093 ], [ -123.58317439699999, 48.651058336000084 ], [ -123.58397486199999, 48.650592592000081 ], [ -123.584616622999988, 48.650185327000074 ], [ -123.585104789999932, 48.649838561000053 ], [ -123.58558112299994, 48.649432018000049 ], [ -123.586270731, 48.648724744000113 ], [ -123.586755016999973, 48.64834812800008 ], [ -123.587217928999934, 48.648097225000122 ], [ -123.588552886999977, 48.647491108000089 ], [ -123.588469496999963, 48.649410281000073 ], [ -123.58863122299999, 48.650851987000046 ], [ -123.588481023999947, 48.656046603000057 ], [ -123.588453889999968, 48.656984890000103 ], [ -123.588577957999988, 48.660485563000073 ], [ -123.588674672999943, 48.663214075000099 ], [ -123.588712940999969, 48.66443900300002 ], [ -123.588718859999972, 48.664617816000053 ], [ -123.588750300999948, 48.665939583000103 ], [ -123.587751477000012, 48.665916955000071 ], [ -123.587778094999976, 48.665397899000077 ], [ -123.582713826999978, 48.665283024000125 ], [ -123.582746327, 48.664650588000057 ], [ -123.582898875999931, 48.661681748000056 ], [ -123.58417578299999, 48.661710736000053 ], [ -123.584345900999921, 48.658397774000065 ], [ -123.585562952999965, 48.658425389000115 ], [ -123.585632890999975, 48.657062556000028 ], [ -123.582746820999958, 48.656997048000029 ], [ -123.582809062999928, 48.655785577000117 ], [ -123.582455732999961, 48.655787364000041 ], [ -123.582395011999935, 48.656969072000045 ], [ -123.581930475999954, 48.656958519000106 ], [ -123.581906017999955, 48.657434382000105 ], [ -123.580786853999953, 48.657408950000089 ], [ -123.580773085999965, 48.657676709000093 ], [ -123.579904662999979, 48.657656966000047 ], [ -123.579901333999885, 48.657721663000117 ], [ -123.580721480999969, 48.657740308000029 ], [ -123.58069978199994, 48.658162296000086 ], [ -123.580972895999935, 48.658168503000077 ], [ -123.580949059999952, 48.658632094000012 ], [ -123.581714397999988, 48.658649484000108 ], [ -123.581695325999974, 48.659020523000073 ], [ -123.582173003999984, 48.659031374000094 ], [ -123.582119011999964, 48.66008195000007 ], [ -123.582216965999962, 48.660084176000041 ], [ -123.58203187099997, 48.663685460000082 ], [ -123.582023696999968, 48.663685274000038 ], [ -123.581985510999985, 48.664428159000053 ], [ -123.581930556999978, 48.664426910000046 ], [ -123.581918825999978, 48.664655103000086 ], [ -123.5818894499999, 48.665226559000118 ], [ -123.581396974000015, 48.665215371000116 ], [ -123.581368361999964, 48.665771870000043 ], [ -123.580129840999959, 48.665743723000084 ], [ -123.580101938999988, 48.666286099000082 ], [ -123.579842538999984, 48.666280202000088 ], [ -123.57970437199999, 48.668965501000116 ], [ -123.579676512999953, 48.66896486800006 ], [ -123.579651497999947, 48.669451001000063 ], [ -123.577731106999977, 48.669407326000069 ], [ -123.577718632999961, 48.669649548000088 ], [ -123.574745402999952, 48.66958185900009 ], [ -123.572300590999987, 48.66952613800008 ], [ -123.572486452999925, 48.665924906000022 ], [ -123.57391538, 48.665957480000095 ], [ -123.573930989999923, 48.665654832000058 ], [ -123.573525166999957, 48.665645582000103 ], [ -123.573536054999948, 48.665434487000063 ], [ -123.572802452999923, 48.665417763000029 ], [ -123.572836474999974, 48.664758415000072 ], [ -123.572846376999934, 48.664566517000026 ], [ -123.572554395999973, 48.66455986000004 ], [ -123.572582847999954, 48.664008485000117 ], [ -123.571778501000011, 48.663990140000081 ], [ -123.571902765999965, 48.661582674000094 ], [ -123.571800744999933, 48.661580347000047 ], [ -123.57181355099999, 48.661332266000059 ], [ -123.571448547999978, 48.661323939000091 ], [ -123.571456640999912, 48.66116715600004 ], [ -123.571528776999955, 48.659769762000018 ], [ -123.570965067999978, 48.659756899000065 ], [ -123.570969654999928, 48.660163051000062 ], [ -123.570562280999923, 48.660165070000033 ], [ -123.570565326999912, 48.660434941000055 ], [ -123.569750575999933, 48.66043897300009 ], [ -123.569753618, 48.660708844000034 ], [ -123.568938861999982, 48.66071287200004 ], [ -123.568941899, 48.660982743000048 ], [ -123.567719758999928, 48.660988772000032 ], [ -123.567716727999965, 48.660718901000031 ], [ -123.567002364999951, 48.660722420000056 ], [ -123.56697604699994, 48.661231320000049 ], [ -123.566963751999964, 48.661469037000082 ], [ -123.563898210999952, 48.661398922000039 ], [ -123.563896527999972, 48.661431412000113 ], [ -123.563578789999909, 48.661424140000065 ], [ -123.56355154299996, 48.661950219000126 ], [ -123.563437021999917, 48.66194759800009 ], [ -123.563336752999973, 48.663883432000105 ], [ -123.563997963999967, 48.663898565000061 ], [ -123.563963851999986, 48.664557288000012 ], [ -123.565159262999984, 48.664584637000075 ], [ -123.565136732999946, 48.665019907000023 ], [ -123.565126326999959, 48.665220938000111 ], [ -123.565890774999943, 48.66523842000008 ], [ -123.565830287, 48.666407335 ], [ -123.566083237999976, 48.666413118000015 ], [ -123.566070230999955, 48.666664496000088 ], [ -123.56696856399999, 48.666660078000085 ], [ -123.56697445099995, 48.667184862000099 ], [ -123.56697595, 48.667184897000034 ], [ -123.566974717999955, 48.667208721000115 ], [ -123.566982717999934, 48.667921785000118 ], [ -123.56715378899996, 48.667925694000104 ], [ -123.567121930999946, 48.668541645000076 ], [ -123.570334611999968, 48.668615013000071 ], [ -123.570305443, 48.669179691000117 ], [ -123.57072233199996, 48.669189205000059 ], [ -123.570714075999931, 48.669349064000095 ], [ -123.57107042799997, 48.669357195000025 ], [ -123.571050434999933, 48.669744355000063 ], [ -123.571831725, 48.669762177000052 ], [ -123.571777377000032, 48.670814907000079 ], [ -123.572637205999968, 48.670834514000035 ], [ -123.572663499999976, 48.670325024000107 ], [ -123.5747480499999, 48.670372529000076 ], [ -123.578081633999929, 48.670448414000056 ], [ -123.578061027999965, 48.670848574000068 ], [ -123.578163855999946, 48.670850913000017 ], [ -123.578120257999927, 48.671697601000055 ], [ -123.578454694999934, 48.671705208000091 ], [ -123.578412971999924, 48.672515573000076 ], [ -123.57477218299999, 48.67252674000008 ], [ -123.574796561999975, 48.673250507000077 ], [ -123.574821347999929, 48.673987918000122 ], [ -123.574827306999936, 48.674164600000076 ], [ -123.574922690999955, 48.674682685000022 ], [ -123.574883683999957, 48.675255971000063 ], [ -123.574677740000013, 48.675666581 ], [ -123.574635552999922, 48.67612163600004 ], [ -123.57476881, 48.676530418000027 ], [ -123.575025410999942, 48.676803407000136 ], [ -123.575163205999928, 48.678321098000048 ], [ -123.575166250999985, 48.678354536000086 ], [ -123.574996699999971, 48.679640790000121 ], [ -123.574932297999922, 48.680187334000102 ], [ -123.574702519999974, 48.680056592000021 ], [ -123.574161383999979, 48.679844207000059 ], [ -123.573462831999976, 48.679638634000113 ], [ -123.570060123999909, 48.680136906 ], [ -123.569881728999988, 48.680163018000073 ], [ -123.569756059999946, 48.680071847000072 ], [ -123.569471229, 48.679865231000122 ], [ -123.569124766999892, 48.67961395500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.840425531914894", "sL_AssetLoss": "3290", "sL_BldgLoss": "2765", "sL_StrLoss": "1780", "sL_NStrLoss": "985", "sL_ContLoss": "525", "geom_point": "0101000020E61000008C2129B7A7E55EC0C53504E8F3554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.588193596999986, 48.670110705000084 ], [ -123.588849883999956, 48.670125569000113 ], [ -123.58888603399997, 48.671644913000037 ], [ -123.588895937999922, 48.672061833000036 ], [ -123.58890592399996, 48.672482610000067 ], [ -123.588198593999962, 48.672484867000072 ], [ -123.58732049799994, 48.672487662000108 ], [ -123.587347228999931, 48.671966589000093 ], [ -123.588097556999941, 48.671983589000085 ], [ -123.588193596999986, 48.670110705000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158507382", "BldgCostT": "101462113", "sL_LossRatio": "0.782746702232974", "sL_AssetLoss": "482988.94", "sL_BldgLoss": "378058", "sL_StrLoss": "246605.7", "sL_NStrLoss": "131452.3", "sL_ContLoss": "104930.94", "geom_point": "0101000020E6100000E7AA489E0EE65EC04CE4725167554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.574996699999971, 48.679640790000121 ], [ -123.575166250999985, 48.678354536000086 ], [ -123.575163205999928, 48.678321098000048 ], [ -123.575025410999942, 48.676803407000136 ], [ -123.57476881, 48.676530418000027 ], [ -123.574635552999922, 48.67612163600004 ], [ -123.574677740000013, 48.675666581 ], [ -123.574883683999957, 48.675255971000063 ], [ -123.574922690999955, 48.674682685000022 ], [ -123.574827306999936, 48.674164600000076 ], [ -123.574821347999929, 48.673987918000122 ], [ -123.574796561999975, 48.673250507000077 ], [ -123.57477218299999, 48.67252674000008 ], [ -123.578412971999924, 48.672515573000076 ], [ -123.57839294899999, 48.672904478000099 ], [ -123.581211168999943, 48.672968538000084 ], [ -123.581200136999882, 48.673183050000091 ], [ -123.581982454999974, 48.673200819000087 ], [ -123.58195426199994, 48.67374918200008 ], [ -123.581969079999922, 48.673749518000079 ], [ -123.581994368999986, 48.673257661000015 ], [ -123.583229206999931, 48.67328569700009 ], [ -123.583232521999918, 48.673221192000028 ], [ -123.584062516999936, 48.673240028000116 ], [ -123.584063288999957, 48.673225012000039 ], [ -123.585706035999976, 48.673262274000066 ], [ -123.585716631999901, 48.673055853000029 ], [ -123.587289520999931, 48.673091507000073 ], [ -123.58732049799994, 48.672487662000108 ], [ -123.588198593999962, 48.672484867000072 ], [ -123.58890592399996, 48.672482610000067 ], [ -123.588895937999922, 48.672061833000036 ], [ -123.58888603399997, 48.671644913000037 ], [ -123.588849883999956, 48.670125569000113 ], [ -123.590153974, 48.670155095000013 ], [ -123.59017073499993, 48.669827953000038 ], [ -123.591972608, 48.669868723000029 ], [ -123.591990680999942, 48.669515696000076 ], [ -123.593177677999947, 48.669542536000058 ], [ -123.593194350999966, 48.669216718000037 ], [ -123.59143551799994, 48.669176943000096 ], [ -123.591458209999971, 48.668733816000049 ], [ -123.590663017999972, 48.66871582400006 ], [ -123.590679760999961, 48.668388949000054 ], [ -123.589900209999925, 48.668371305000029 ], [ -123.589916386999917, 48.668055576000057 ], [ -123.588900791999976, 48.668032580000045 ], [ -123.588978128999941, 48.666523814000087 ], [ -123.588914983999985, 48.666522384000139 ], [ -123.588944630999933, 48.665943984000101 ], [ -123.588750300999948, 48.665939583000103 ], [ -123.588718859999972, 48.664617816000053 ], [ -123.588712940999969, 48.66443900300002 ], [ -123.588674672999943, 48.663214075000099 ], [ -123.588577957999988, 48.660485563000073 ], [ -123.588453889999968, 48.656984890000103 ], [ -123.588481023999947, 48.656046603000057 ], [ -123.58863122299999, 48.650851987000046 ], [ -123.588469496999963, 48.649410281000073 ], [ -123.588552886999977, 48.647491108000089 ], [ -123.588707970999934, 48.644298659000086 ], [ -123.588785951999967, 48.64269326 ], [ -123.590090199999935, 48.643172194000051 ], [ -123.590414891999927, 48.644043708000034 ], [ -123.590739430999989, 48.645224307000085 ], [ -123.59099653199992, 48.645550767000088 ], [ -123.592767408999933, 48.646620141000028 ], [ -123.593118608999973, 48.646765178000095 ], [ -123.593541183999946, 48.647457439000092 ], [ -123.594460864, 48.649806261000066 ], [ -123.595238433999967, 48.651209115000093 ], [ -123.595849882, 48.651810320000095 ], [ -123.5971439299999, 48.652444782000011 ], [ -123.599142682999954, 48.65273432000005 ], [ -123.600786601999943, 48.65298374200011 ], [ -123.601702526999958, 48.653284162 ], [ -123.60278093, 48.653802429000031 ], [ -123.602940652999933, 48.653906706000093 ], [ -123.60291767899993, 48.654357675000014 ], [ -123.602267624999939, 48.654343032000035 ], [ -123.602218902999965, 48.65529909 ], [ -123.597890658999944, 48.655201490000096 ], [ -123.597852066999934, 48.655957394000062 ], [ -123.593677918999958, 48.65586310300008 ], [ -123.593582896000029, 48.657720995000062 ], [ -123.59303118, 48.657708519000032 ], [ -123.592929373999979, 48.659698395000085 ], [ -123.596611314999976, 48.659781596000116 ], [ -123.596526908999977, 48.661433760000101 ], [ -123.598437297999965, 48.661476879000126 ], [ -123.59852086099994, 48.659839927000114 ], [ -123.600178731, 48.659877317000067 ], [ -123.60020401899996, 48.659381567000018 ], [ -123.604073481999976, 48.659468736000044 ], [ -123.604270830999923, 48.659473179000024 ], [ -123.604311395999943, 48.658676565000093 ], [ -123.608722193999952, 48.658775750000089 ], [ -123.609687041999948, 48.659609844000052 ], [ -123.609631696999941, 48.660699117000057 ], [ -123.609628137999948, 48.660769169000112 ], [ -123.610868848999957, 48.660797024 ], [ -123.610817642999933, 48.661805312000098 ], [ -123.609991507999965, 48.661857755000014 ], [ -123.609220778999884, 48.664393900000071 ], [ -123.609190590999958, 48.664493286000045 ], [ -123.609247494999977, 48.664627099000072 ], [ -123.609251714999957, 48.664757900000019 ], [ -123.609151479999952, 48.665048597000073 ], [ -123.60914936099999, 48.665111433000078 ], [ -123.609148759999982, 48.665129680000128 ], [ -123.609145989999988, 48.665211134000167 ], [ -123.609144758999932, 48.665247113000135 ], [ -123.609143301999922, 48.665289897000015 ], [ -123.609196214999969, 48.665732933000065 ], [ -123.609226093999965, 48.665983112000092 ], [ -123.609219557999964, 48.666685991000094 ], [ -123.609205401999958, 48.668204482000071 ], [ -123.609279187999917, 48.668272002000073 ], [ -123.60928266699996, 48.668321158000019 ], [ -123.609566380999979, 48.672359935000053 ], [ -123.608342761999936, 48.673306619000059 ], [ -123.607862474999976, 48.673678220000028 ], [ -123.606926482999953, 48.67440230400009 ], [ -123.6066223, 48.674649685000055 ], [ -123.606389204999942, 48.674912992000031 ], [ -123.606262814999965, 48.675131003000089 ], [ -123.606188303999943, 48.675397094000068 ], [ -123.606157397999979, 48.675923583000014 ], [ -123.606181119999974, 48.676391459000065 ], [ -123.606188424999957, 48.67653573200004 ], [ -123.606190688999916, 48.676580680000086 ], [ -123.606197991, 48.676724894000102 ], [ -123.606193801999979, 48.67674806200008 ], [ -123.606177544000033, 48.676837802000122 ], [ -123.606150795999923, 48.676985306000105 ], [ -123.605971938999957, 48.677261295000022 ], [ -123.605550395999956, 48.677911764000029 ], [ -123.60552962300001, 48.67794389700002 ], [ -123.605107993000018, 48.678712195000095 ], [ -123.604867564999978, 48.679389669000074 ], [ -123.604047084999962, 48.67938855700001 ], [ -123.604058923999943, 48.679156185000068 ], [ -123.603837306999964, 48.679157346000103 ], [ -123.60382554099999, 48.679388255000042 ], [ -123.59734502099991, 48.67937923700002 ], [ -123.593610057999982, 48.679373837000099 ], [ -123.58890460500001, 48.679409649000071 ], [ -123.574996699999971, 48.679640790000121 ] ], [ [ -123.580635027999961, 48.677927200000106 ], [ -123.580652079999965, 48.677595761000106 ], [ -123.579400329999899, 48.677567313000104 ], [ -123.57939537499999, 48.677663557000102 ], [ -123.580133190999959, 48.677659843000107 ], [ -123.58013726199998, 48.678014324000117 ], [ -123.580544908999968, 48.678023587000041 ], [ -123.580543805999966, 48.677927659000034 ], [ -123.580635027999961, 48.677927200000106 ] ], [ [ -123.579084441999939, 48.677527479000062 ], [ -123.579086224999912, 48.677492861000076 ], [ -123.578405242999978, 48.677477377000116 ], [ -123.578443942999954, 48.676725818000094 ], [ -123.577868157999944, 48.676712722000126 ], [ -123.577827665999934, 48.677498899000057 ], [ -123.579084441999939, 48.677527479000062 ] ], [ [ -123.602493288999966, 48.675489910000074 ], [ -123.602519795999953, 48.674969972000092 ], [ -123.602195942999955, 48.674962679000046 ], [ -123.602169432999943, 48.675482617000078 ], [ -123.602493288999966, 48.675489910000074 ] ], [ [ -123.607061211999977, 48.668622268000064 ], [ -123.607166399, 48.666554573000013 ], [ -123.60602151599997, 48.666528833000015 ], [ -123.606106794999945, 48.664853122000054 ], [ -123.605009339999981, 48.664828437000118 ], [ -123.604995457999976, 48.665101091000061 ], [ -123.600429350999917, 48.664998265000065 ], [ -123.600422778999985, 48.665127104000128 ], [ -123.596555479999907, 48.665039860000043 ], [ -123.596522440999976, 48.665686473000072 ], [ -123.597037550999943, 48.6656981020001 ], [ -123.596890651999928, 48.668573582000093 ], [ -123.598553325999958, 48.66861109900011 ], [ -123.598636457999973, 48.666982752000088 ], [ -123.604054274999939, 48.667104821000045 ], [ -123.603870825999977, 48.670706102000103 ], [ -123.601672625999967, 48.670656608000044 ], [ -123.601664715999988, 48.670811749000023 ], [ -123.604284292, 48.670870726000025 ], [ -123.604150966999939, 48.673488103000125 ], [ -123.604479737999924, 48.673486379000039 ], [ -123.604499086999979, 48.673106514000047 ], [ -123.604516204999967, 48.673106900000057 ], [ -123.604600673999954, 48.671448412000125 ], [ -123.605380618999931, 48.671465956000112 ], [ -123.605415077999936, 48.670789130000102 ], [ -123.606410132999926, 48.670811505000074 ], [ -123.606522156999944, 48.668610150000106 ], [ -123.607061211999977, 48.668622268000064 ] ], [ [ -123.603022611999933, 48.664433997000039 ], [ -123.602831320999968, 48.664425405000031 ], [ -123.602709816999891, 48.664516604000028 ], [ -123.60294241099993, 48.664550789000103 ], [ -123.603022611999933, 48.664433997000039 ] ], [ [ -123.603905189999921, 48.664384100000078 ], [ -123.603712700999949, 48.664321503000053 ], [ -123.603552004999955, 48.664368493000062 ], [ -123.60371579699999, 48.664439698000095 ], [ -123.603905189999921, 48.664384100000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "0.849020524370034", "sL_AssetLoss": "11766.5", "sL_BldgLoss": "9990", "sL_StrLoss": "6076", "sL_NStrLoss": "3914", "sL_ContLoss": "1776.5", "geom_point": "0101000020E61000002B1963D473E45EC09105D0187B524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.569577277999954, 48.645056299000032 ], [ -123.569574238999977, 48.644786428000074 ], [ -123.568759739999933, 48.644790453000027 ], [ -123.568756704999913, 48.644520581000052 ], [ -123.568349457999929, 48.644522592000037 ], [ -123.568340361999944, 48.643712976000053 ], [ -123.568834001999946, 48.643710538000093 ], [ -123.569562083999941, 48.643706941000048 ], [ -123.569565122999975, 48.643976812000034 ], [ -123.570379608999986, 48.643972782000056 ], [ -123.570382650999989, 48.644242653000084 ], [ -123.570532793, 48.644241910000105 ], [ -123.570789897999987, 48.644240637000088 ], [ -123.570799032999957, 48.6450502510001 ], [ -123.569577277999954, 48.645056299000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "251749315", "BldgCostT": "170681091", "sL_LossRatio": "0.826569609262149", "sL_AssetLoss": "1381450.5", "sL_BldgLoss": "1141865", "sL_StrLoss": "680962", "sL_NStrLoss": "460903", "sL_ContLoss": "239585.5", "geom_point": "0101000020E6100000695C0F91A0E45EC0116EA60020534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.560500203999979, 48.65539989300003 ], [ -123.560011828999961, 48.652676172000028 ], [ -123.55998128799996, 48.652505995000126 ], [ -123.560160107999977, 48.652507400000047 ], [ -123.56066600199992, 48.652503653000117 ], [ -123.56067980899995, 48.652237159000073 ], [ -123.560693652999959, 48.651969746000049 ], [ -123.560820269999937, 48.651750011000097 ], [ -123.561290186999912, 48.651445303000102 ], [ -123.562072264000037, 48.650937505000115 ], [ -123.562127132999976, 48.650901891000068 ], [ -123.56244747599996, 48.650693892000071 ], [ -123.561042873999966, 48.648762512000083 ], [ -123.560674374999905, 48.648419598000011 ], [ -123.560408473999985, 48.648240393000059 ], [ -123.559311116999979, 48.647654600000102 ], [ -123.55881918399993, 48.647286408000078 ], [ -123.55772560299998, 48.646204695000101 ], [ -123.557438417999961, 48.64592059800006 ], [ -123.557413476999926, 48.645889895000039 ], [ -123.557403311999934, 48.645877407000022 ], [ -123.556690484999976, 48.645000188000047 ], [ -123.556388591999948, 48.64462819400007 ], [ -123.55604532699999, 48.644273715000061 ], [ -123.555751523999959, 48.643970248000088 ], [ -123.555744091999898, 48.643962588000129 ], [ -123.555617735999988, 48.64379550600011 ], [ -123.555391990999965, 48.64349697800008 ], [ -123.555154411, 48.643182798000048 ], [ -123.555064010999914, 48.642966187000098 ], [ -123.555056217999891, 48.642749707000085 ], [ -123.555206390999942, 48.641998712000138 ], [ -123.556426709, 48.641951864000085 ], [ -123.556720603999935, 48.641940604000105 ], [ -123.557351197999964, 48.641881209000132 ], [ -123.557353847999963, 48.641904089000029 ], [ -123.557425165999987, 48.642522764000113 ], [ -123.55753529, 48.643478212000026 ], [ -123.560008316999955, 48.643827894000019 ], [ -123.561321717999974, 48.643853498000077 ], [ -123.562321195999971, 48.64384214200004 ], [ -123.563174725999929, 48.643718367000069 ], [ -123.564402630999936, 48.64384754900005 ], [ -123.565880208999914, 48.644002967000041 ], [ -123.565883566999958, 48.64399428000015 ], [ -123.566463961999915, 48.642490226000042 ], [ -123.56710567199994, 48.642562498000125 ], [ -123.567115611999981, 48.643449126000064 ], [ -123.566708373, 48.643451130000074 ], [ -123.566723490999976, 48.644800490000087 ], [ -123.568352490999928, 48.644792463000044 ], [ -123.568355521999976, 48.645062335000034 ], [ -123.569170025999938, 48.645058313000078 ], [ -123.569173063999941, 48.645328185000096 ], [ -123.569580315999957, 48.645326171000079 ], [ -123.569589433999965, 48.646135787000034 ], [ -123.568025954999911, 48.646143508000108 ], [ -123.567994272999968, 48.6467565700001 ], [ -123.568096592999922, 48.646758908000052 ], [ -123.56808657000002, 48.646952870000099 ], [ -123.569598551999931, 48.646945402 ], [ -123.569607670999957, 48.647755018000041 ], [ -123.56920039699996, 48.647757031000012 ], [ -123.569203433999974, 48.64802690300008 ], [ -123.568388882999955, 48.648030925000072 ], [ -123.568391915999925, 48.648300797000047 ], [ -123.56801681499995, 48.648302647000051 ], [ -123.567910471999966, 48.650360247000044 ], [ -123.567603675, 48.650353235000054 ], [ -123.567557806999986, 48.651240554000054 ], [ -123.565799089, 48.651200340000102 ], [ -123.565686151999969, 48.653383393000119 ], [ -123.564831845999905, 48.65336384799999 ], [ -123.564813099999967, 48.653726053000092 ], [ -123.566191279999956, 48.653757579000114 ], [ -123.566122937000017, 48.655078776000067 ], [ -123.566695539999955, 48.655091869000074 ], [ -123.5666913699999, 48.655172528000094 ], [ -123.567298543999982, 48.655186408000063 ], [ -123.567302056999964, 48.655118446000088 ], [ -123.568172203999936, 48.655138331000103 ], [ -123.568176325999971, 48.655058566000022 ], [ -123.569153257999957, 48.655080885000089 ], [ -123.569161395999942, 48.654923391000111 ], [ -123.56991146599999, 48.654940519000021 ], [ -123.569987242999929, 48.653473306000123 ], [ -123.572207265999936, 48.653523972000087 ], [ -123.572339689999978, 48.650957356000113 ], [ -123.572792018, 48.650967674000071 ], [ -123.572869150999963, 48.649472265000078 ], [ -123.57327208699999, 48.649481454000124 ], [ -123.573278554999959, 48.649356036000079 ], [ -123.573273526999941, 48.649355922000048 ], [ -123.573291747999988, 48.649002616000139 ], [ -123.57086986299997, 48.648947360000065 ], [ -123.570931748999925, 48.647748463000077 ], [ -123.570014944999926, 48.647753003000041 ], [ -123.570005818999945, 48.646943389000107 ], [ -123.570973550999909, 48.646938594000083 ], [ -123.571055751999936, 48.645346007000121 ], [ -123.572201282999927, 48.645372150000071 ], [ -123.57222132599999, 48.644983636000063 ], [ -123.573512342999919, 48.64501308400002 ], [ -123.573563726999964, 48.644016466000096 ], [ -123.574151016999906, 48.644029856000074 ], [ -123.574172525999955, 48.643612579000035 ], [ -123.574423921999937, 48.643618309000033 ], [ -123.574772692999957, 48.643626260000119 ], [ -123.574774996999949, 48.64358154100006 ], [ -123.576933005999962, 48.643908009000086 ], [ -123.578555786999942, 48.644548013000048 ], [ -123.578980294999965, 48.644673699000101 ], [ -123.57916882899994, 48.644713709000023 ], [ -123.57920998299997, 48.644721356000041 ], [ -123.579395691999949, 48.644756045000129 ], [ -123.579821335999952, 48.644789530000054 ], [ -123.580261047999926, 48.6447924900001 ], [ -123.58111123499998, 48.644649768000107 ], [ -123.581547434999919, 48.644493604000097 ], [ -123.581990128999962, 48.644298078000126 ], [ -123.582517105999898, 48.644006403000034 ], [ -123.582654078999923, 48.643924637000076 ], [ -123.583307087999941, 48.643534889000151 ], [ -123.583803399999937, 48.643239603000048 ], [ -123.584544491999949, 48.642796814000135 ], [ -123.584882456999978, 48.642680895000034 ], [ -123.58555834299996, 48.642583604000087 ], [ -123.587081203999944, 48.64235585900007 ], [ -123.587325016999969, 48.642352235 ], [ -123.587657671999949, 48.642347282000053 ], [ -123.587973709999972, 48.642395011000112 ], [ -123.588785951999967, 48.64269326 ], [ -123.588707970999934, 48.644298659000086 ], [ -123.588552886999977, 48.647491108000089 ], [ -123.587217928999934, 48.648097225000122 ], [ -123.586755016999973, 48.64834812800008 ], [ -123.586270731, 48.648724744000113 ], [ -123.58558112299994, 48.649432018000049 ], [ -123.585104789999932, 48.649838561000053 ], [ -123.584616622999988, 48.650185327000074 ], [ -123.58397486199999, 48.650592592000081 ], [ -123.58317439699999, 48.651058336000084 ], [ -123.582790115999927, 48.651281943000093 ], [ -123.579926702999941, 48.6529478920001 ], [ -123.579519526999931, 48.653273952000056 ], [ -123.57928372899994, 48.653509264000085 ], [ -123.579114813999951, 48.65376844700009 ], [ -123.578488899999982, 48.654728801000111 ], [ -123.57805350199996, 48.655126903000102 ], [ -123.57798108599999, 48.655193106000084 ], [ -123.577521300999976, 48.655486413000048 ], [ -123.576396539999919, 48.65607711100003 ], [ -123.57634333299994, 48.656105037000096 ], [ -123.575760035999934, 48.656411355000039 ], [ -123.575662055999942, 48.656462818000087 ], [ -123.575125411999949, 48.656744617000058 ], [ -123.575027429999949, 48.656796082000064 ], [ -123.574971388999984, 48.656825496000067 ], [ -123.574308865999967, 48.657130396000099 ], [ -123.573929106999927, 48.657266008000079 ], [ -123.573421679999953, 48.657378800000046 ], [ -123.572905909, 48.657443707 ], [ -123.571707213999943, 48.65747183100008 ], [ -123.571408396999985, 48.657478827000013 ], [ -123.57106891799998, 48.657486785000046 ], [ -123.571028223999974, 48.65748775800008 ], [ -123.570349560999929, 48.657503650000102 ], [ -123.570051143999962, 48.657510644000112 ], [ -123.56764588599999, 48.657567008000058 ], [ -123.56748507399999, 48.657570332000077 ], [ -123.566716188999948, 48.657586301000073 ], [ -123.566453194999923, 48.657589714000011 ], [ -123.565692967999951, 48.65759957300007 ], [ -123.564278313999949, 48.657617911000088 ], [ -123.563697718999947, 48.657589316000063 ], [ -123.563595391999968, 48.657584285000063 ], [ -123.561708787, 48.657414912000021 ], [ -123.560977799999947, 48.657393601000109 ], [ -123.560785586999884, 48.657387405000151 ], [ -123.56075419699999, 48.656816116000073 ], [ -123.560679256999919, 48.656398226000128 ], [ -123.560675902999947, 48.656379484000091 ], [ -123.56061147399997, 48.65602040400011 ], [ -123.560608747999964, 48.656005058000048 ], [ -123.560601440999974, 48.655964432000076 ], [ -123.560598591999948, 48.655948399000074 ], [ -123.560591847999973, 48.655910929000093 ], [ -123.560561621999938, 48.655742211000124 ], [ -123.560540996999976, 48.655627166 ], [ -123.560517908999884, 48.655498551000065 ], [ -123.560500203999979, 48.65539989300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282175071", "BldgCostT": "168836909", "sL_LossRatio": "0.721490323566521", "sL_AssetLoss": "1478954", "sL_BldgLoss": "1067051", "sL_StrLoss": "539791", "sL_NStrLoss": "527260", "sL_ContLoss": "411903", "geom_point": "0101000020E6100000BE0AF704A8E35EC0DAD6998C74524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.552281887999982, 48.646240196000093 ], [ -123.551828302999951, 48.645918809000094 ], [ -123.551106396999984, 48.645570410000126 ], [ -123.55086019, 48.645481801000045 ], [ -123.549828199999979, 48.645258909000063 ], [ -123.549245802999948, 48.645067884000063 ], [ -123.548569700999934, 48.644777389000062 ], [ -123.547797288999945, 48.644200716000107 ], [ -123.550107683999954, 48.644204536000117 ], [ -123.551676075999922, 48.644207097000098 ], [ -123.553002685999928, 48.644160997000064 ], [ -123.553506997999961, 48.644055391000038 ], [ -123.553739319999977, 48.643966099000089 ], [ -123.553810345999949, 48.64392472600013 ], [ -123.554365546999946, 48.64360131300009 ], [ -123.554517816999962, 48.643512602000051 ], [ -123.554883208999939, 48.643705705000109 ], [ -123.554893096999947, 48.64371791300006 ], [ -123.555670830999958, 48.644676053000083 ], [ -123.555779742, 48.64481028700002 ], [ -123.556231792999967, 48.64536719200008 ], [ -123.55631198899998, 48.645466009000081 ], [ -123.556849934999931, 48.646128707000109 ], [ -123.556995404999924, 48.646307891000049 ], [ -123.55711327899995, 48.646183498000035 ], [ -123.557013150999936, 48.646060350000042 ], [ -123.556417026999938, 48.645327056000049 ], [ -123.555875432000036, 48.644660860000094 ], [ -123.55557016100002, 48.644285382000085 ], [ -123.555126657999963, 48.643739832000037 ], [ -123.554832448999974, 48.643377865000062 ], [ -123.553821015999915, 48.642133604000065 ], [ -123.55339580899998, 48.641610124000067 ], [ -123.552263215999957, 48.640215599000101 ], [ -123.551714174999972, 48.639436790000104 ], [ -123.551497270999945, 48.639081525000101 ], [ -123.551355802999979, 48.638849804000095 ], [ -123.550933989999976, 48.638021609000063 ], [ -123.550740921999974, 48.637544906000102 ], [ -123.550729059999952, 48.637515684000093 ], [ -123.550894761999928, 48.63750957600012 ], [ -123.5514672, 48.63748848400013 ], [ -123.55380158299999, 48.637553092000097 ], [ -123.556847886999904, 48.637416637000051 ], [ -123.55682634399993, 48.637831699000095 ], [ -123.556872230999971, 48.63783147700007 ], [ -123.556875200999968, 48.638101351000046 ], [ -123.55850398699999, 48.638093464000058 ], [ -123.558504690999911, 48.638157185000111 ], [ -123.558512925999963, 48.638903082000112 ], [ -123.558105722999969, 48.638905056000034 ], [ -123.558108699999977, 48.639174929000028 ], [ -123.557225424999984, 48.639179205000055 ], [ -123.557197403999922, 48.63971911600008 ], [ -123.558521862999925, 48.639712700000118 ], [ -123.55851888399998, 48.639442827000032 ], [ -123.559740506999972, 48.639436898 ], [ -123.559743491999953, 48.639706770000011 ], [ -123.560150702, 48.639704791000106 ], [ -123.560153689999979, 48.639974663000018 ], [ -123.560560900999974, 48.63997268200005 ], [ -123.560563891999934, 48.640242554000032 ], [ -123.561582785999946, 48.640237591000101 ], [ -123.561591677999971, 48.640273540000074 ], [ -123.561654082999937, 48.640526010000038 ], [ -123.561656282999962, 48.640534973000101 ], [ -123.561671290999982, 48.641004030000062 ], [ -123.561628573999968, 48.641071337000042 ], [ -123.5615753699999, 48.641155074000082 ], [ -123.56219370099997, 48.641331486000084 ], [ -123.563317430999973, 48.641825979000018 ], [ -123.563996076999985, 48.642120962000092 ], [ -123.564511748999934, 48.642239136000114 ], [ -123.564658745999935, 48.642258043000034 ], [ -123.564663137, 48.6426515140001 ], [ -123.565070369999958, 48.642649516000077 ], [ -123.56507338499992, 48.642919388000081 ], [ -123.565480619999946, 48.64291739 ], [ -123.56547442199998, 48.642362958000099 ], [ -123.566463961999915, 48.642490226000042 ], [ -123.565883566999958, 48.64399428000015 ], [ -123.565880208999914, 48.644002967000041 ], [ -123.564402630999936, 48.64384754900005 ], [ -123.563174725999929, 48.643718367000069 ], [ -123.562321195999971, 48.64384214200004 ], [ -123.561321717999974, 48.643853498000077 ], [ -123.560008316999955, 48.643827894000019 ], [ -123.55753529, 48.643478212000026 ], [ -123.557425165999987, 48.642522764000113 ], [ -123.557353847999963, 48.641904089000029 ], [ -123.557351197999964, 48.641881209000132 ], [ -123.556720603999935, 48.641940604000105 ], [ -123.556426709, 48.641951864000085 ], [ -123.555206390999942, 48.641998712000138 ], [ -123.555056217999891, 48.642749707000085 ], [ -123.555064010999914, 48.642966187000098 ], [ -123.555154411, 48.643182798000048 ], [ -123.555391990999965, 48.64349697800008 ], [ -123.555617735999988, 48.64379550600011 ], [ -123.555744091999898, 48.643962588000129 ], [ -123.555751523999959, 48.643970248000088 ], [ -123.55604532699999, 48.644273715000061 ], [ -123.556388591999948, 48.64462819400007 ], [ -123.556690484999976, 48.645000188000047 ], [ -123.557403311999934, 48.645877407000022 ], [ -123.557413476999926, 48.645889895000039 ], [ -123.557438417999961, 48.64592059800006 ], [ -123.55772560299998, 48.646204695000101 ], [ -123.55881918399993, 48.647286408000078 ], [ -123.559311116999979, 48.647654600000102 ], [ -123.560408473999985, 48.648240393000059 ], [ -123.560674374999905, 48.648419598000011 ], [ -123.561042873999966, 48.648762512000083 ], [ -123.56244747599996, 48.650693892000071 ], [ -123.562127132999976, 48.650901891000068 ], [ -123.562072264000037, 48.650937505000115 ], [ -123.561290186999912, 48.651445303000102 ], [ -123.560820269999937, 48.651750011000097 ], [ -123.560693652999959, 48.651969746000049 ], [ -123.56067980899995, 48.652237159000073 ], [ -123.56066600199992, 48.652503653000117 ], [ -123.560160107999977, 48.652507400000047 ], [ -123.55998128799996, 48.652505995000126 ], [ -123.557462481999949, 48.652505893000104 ], [ -123.55738141799999, 48.651124462000041 ], [ -123.557354599999925, 48.650667311000113 ], [ -123.557248803999983, 48.650487284000064 ], [ -123.557028406, 48.650189204000093 ], [ -123.557019336999943, 48.650182454000067 ], [ -123.55636519799999, 48.649695880000102 ], [ -123.556006722999925, 48.649429230000081 ], [ -123.555277003999919, 48.6488864250001 ], [ -123.554764000999953, 48.648504811000109 ], [ -123.553814487999958, 48.647735717000074 ], [ -123.553709173999962, 48.647630295000084 ], [ -123.553347412999969, 48.647268361000016 ], [ -123.55311099699999, 48.647031791000039 ], [ -123.552968402, 48.646895822000133 ], [ -123.552905791999976, 48.646836140000104 ], [ -123.552897912999981, 48.646828581000044 ], [ -123.552582122999965, 48.646526984000026 ], [ -123.552281887999982, 48.646240196000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.905957656326933", "sL_AssetLoss": "2031", "sL_BldgLoss": "1840", "sL_StrLoss": "1280", "sL_NStrLoss": "560", "sL_ContLoss": "191", "geom_point": "0101000020E610000003F7130069E25EC0BE8CBD72184E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.537978586999941, 48.60981292600011 ], [ -123.538159406999952, 48.609810696000068 ], [ -123.538174789999914, 48.609842030000017 ], [ -123.538180496, 48.609853610000073 ], [ -123.538251448999958, 48.609997952000079 ], [ -123.538255630999984, 48.610391440000093 ], [ -123.537034704999897, 48.610397141000092 ], [ -123.537030000999934, 48.609953580000109 ], [ -123.537058178999928, 48.609942978000099 ], [ -123.537121810999935, 48.609927515000045 ], [ -123.537205445000026, 48.609907177000025 ], [ -123.537425473999917, 48.609853673000039 ], [ -123.5375725869999, 48.609817900000095 ], [ -123.537978586999941, 48.60981292600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11394750", "BldgCostT": "6915000", "sL_LossRatio": "0.840211029220302", "sL_AssetLoss": "17665.8", "sL_BldgLoss": "14843", "sL_StrLoss": "9961", "sL_NStrLoss": "4882", "sL_ContLoss": "2822.8", "geom_point": "0101000020E6100000E121ADADAFE15EC0B1CC4B930C4E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.527257360999954, 48.608555285000094 ], [ -123.527729743999913, 48.608534722000087 ], [ -123.52789109099993, 48.608548160000097 ], [ -123.527789972999983, 48.610474655000097 ], [ -123.526710922999939, 48.610449559000045 ], [ -123.526700790999911, 48.610642479000028 ], [ -123.523920526999973, 48.61060884500008 ], [ -123.524023759999977, 48.610501143000114 ], [ -123.524551946999964, 48.609934702000068 ], [ -123.526153552, 48.608960422000081 ], [ -123.526464550999947, 48.60877122100009 ], [ -123.526838922999943, 48.608605953000094 ], [ -123.527257360999954, 48.608555285000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "0.925744093280147", "sL_AssetLoss": "16295", "sL_BldgLoss": "15085", "sL_StrLoss": "11510", "sL_NStrLoss": "3575", "sL_ContLoss": "1210", "geom_point": "0101000020E6100000B97FD9FB1CE25EC0829B39E2184E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.530784059999945, 48.610646015000086 ], [ -123.530857413000021, 48.609246840000012 ], [ -123.530908640999911, 48.609254969000077 ], [ -123.531310782999952, 48.609294100000049 ], [ -123.53305343599996, 48.6094636280001 ], [ -123.533293777999958, 48.609487022000074 ], [ -123.533461682000024, 48.609522655000092 ], [ -123.533713459, 48.609576118000092 ], [ -123.533746522999976, 48.609583150000105 ], [ -123.534058391999949, 48.609679628000052 ], [ -123.53512154, 48.610198286000085 ], [ -123.535421599999921, 48.610288186000034 ], [ -123.535708983999911, 48.610309278000067 ], [ -123.535722709999931, 48.610308242000087 ], [ -123.536010840999978, 48.610286520000031 ], [ -123.536223304999922, 48.610234691000066 ], [ -123.536195991999989, 48.61075679700005 ], [ -123.534874801999976, 48.610740941000095 ], [ -123.530784059999945, 48.610646015000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173160084", "BldgCostT": "116348334", "sL_LossRatio": "0.771543341032454", "sL_AssetLoss": "1277764.9", "sL_BldgLoss": "985851", "sL_StrLoss": "539175", "sL_NStrLoss": "446676", "sL_ContLoss": "291913.9", "geom_point": "0101000020E6100000627F9F92EFE25EC03D31F33699514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.542588556999959, 48.634930893000032 ], [ -123.542591449999975, 48.635200767000079 ], [ -123.54269515299994, 48.635200279000074 ], [ -123.542709245999944, 48.634930325000013 ], [ -123.542588556999959, 48.634930893000032 ], [ -123.542579876000019, 48.634121273000133 ], [ -123.543801371999962, 48.634115512000093 ], [ -123.543802867999929, 48.634254691000123 ], [ -123.544210156999924, 48.634264094000116 ], [ -123.544208537999936, 48.634113589000023 ], [ -123.546244364999922, 48.634103952000082 ], [ -123.54624660199994, 48.634311087000079 ], [ -123.547061179999943, 48.634329874000102 ], [ -123.547058695999937, 48.634100087000128 ], [ -123.547508852999982, 48.63409794800009 ], [ -123.547510358999915, 48.634069039000103 ], [ -123.54750808499999, 48.634068988000074 ], [ -123.547528449999959, 48.633678101000065 ], [ -123.54734120199997, 48.633673784000109 ], [ -123.547394803, 48.632645015000058 ], [ -123.547176558000032, 48.632639983000018 ], [ -123.547216488999965, 48.63187362700009 ], [ -123.546884792999961, 48.631865977000089 ], [ -123.546953955999967, 48.630538700000102 ], [ -123.546545159999965, 48.630529273000086 ], [ -123.546732836999965, 48.626927854000073 ], [ -123.547775566000013, 48.626951900000016 ], [ -123.547872096, 48.627210504000018 ], [ -123.547875372999926, 48.627219281000116 ], [ -123.548276499999972, 48.628290792 ], [ -123.54829173199991, 48.628344585000086 ], [ -123.548493898999965, 48.629059285000089 ], [ -123.548604906999969, 48.62965948500009 ], [ -123.548821204999967, 48.631672005000013 ], [ -123.549011094999969, 48.632475900000074 ], [ -123.550208148999943, 48.636015974000038 ], [ -123.550155065999945, 48.636014752000087 ], [ -123.550159963999988, 48.635920650000109 ], [ -123.549381946000011, 48.635902731000058 ], [ -123.549393175999953, 48.635687031000018 ], [ -123.548702332999966, 48.63567111400009 ], [ -123.548713487999962, 48.635456914000059 ], [ -123.548342523999935, 48.63544836500008 ], [ -123.548222628999952, 48.635445602000061 ], [ -123.548235945999949, 48.63518994 ], [ -123.54811635599998, 48.635187184000088 ], [ -123.548032639999974, 48.636794329000075 ], [ -123.548349834999968, 48.636792820000082 ], [ -123.549123809, 48.636789132000025 ], [ -123.549120879999947, 48.63651925900006 ], [ -123.54952806499989, 48.636517316000131 ], [ -123.54952513399995, 48.63624744300008 ], [ -123.550285196999951, 48.636243814000139 ], [ -123.550645794999923, 48.637310094000064 ], [ -123.550729059999952, 48.637515684000093 ], [ -123.550740921999974, 48.637544906000102 ], [ -123.550933989999976, 48.638021609000063 ], [ -123.551355802999979, 48.638849804000095 ], [ -123.551497270999945, 48.639081525000101 ], [ -123.551714174999972, 48.639436790000104 ], [ -123.552263215999957, 48.640215599000101 ], [ -123.55339580899998, 48.641610124000067 ], [ -123.553821015999915, 48.642133604000065 ], [ -123.554832448999974, 48.643377865000062 ], [ -123.555126657999963, 48.643739832000037 ], [ -123.55557016100002, 48.644285382000085 ], [ -123.555875432000036, 48.644660860000094 ], [ -123.556417026999938, 48.645327056000049 ], [ -123.557013150999936, 48.646060350000042 ], [ -123.55711327899995, 48.646183498000035 ], [ -123.556995404999924, 48.646307891000049 ], [ -123.556849934999931, 48.646128707000109 ], [ -123.55631198899998, 48.645466009000081 ], [ -123.556231792999967, 48.64536719200008 ], [ -123.555779742, 48.64481028700002 ], [ -123.555670830999958, 48.644676053000083 ], [ -123.554893096999947, 48.64371791300006 ], [ -123.554883208999939, 48.643705705000109 ], [ -123.554517816999962, 48.643512602000051 ], [ -123.554365546999946, 48.64360131300009 ], [ -123.553810345999949, 48.64392472600013 ], [ -123.553739319999977, 48.643966099000089 ], [ -123.553506997999961, 48.644055391000038 ], [ -123.553002685999928, 48.644160997000064 ], [ -123.551676075999922, 48.644207097000098 ], [ -123.550107683999954, 48.644204536000117 ], [ -123.547797288999945, 48.644200716000107 ], [ -123.547128899999976, 48.643623708000092 ], [ -123.546753012999901, 48.643299266000014 ], [ -123.546716915, 48.643268057000085 ], [ -123.545405993999921, 48.642156139000072 ], [ -123.543660100999958, 48.640679877000082 ], [ -123.543230643999976, 48.640315901000129 ], [ -123.543127356999932, 48.640228358000037 ], [ -123.543118914999951, 48.640221180000061 ], [ -123.542928157999981, 48.640114895000082 ], [ -123.542723169999945, 48.640000657000066 ], [ -123.542511455999914, 48.639882680000028 ], [ -123.542202768999957, 48.639710630000096 ], [ -123.541853307999972, 48.639515893000095 ], [ -123.541291406999918, 48.63911708500008 ], [ -123.541036718999976, 48.638958258000038 ], [ -123.540323307999984, 48.638513263000014 ], [ -123.540183551999988, 48.638426100000075 ], [ -123.538677031999953, 48.637486358000018 ], [ -123.537800637999965, 48.636967156000068 ], [ -123.537657750999969, 48.636882495000087 ], [ -123.537349351999978, 48.636699773 ], [ -123.537018598999936, 48.636503816000051 ], [ -123.537023653999967, 48.635622248000104 ], [ -123.537042505999977, 48.63234412500006 ], [ -123.542015505000023, 48.632459154000081 ], [ -123.541953133999968, 48.63365365300011 ], [ -123.542394364999979, 48.633663848000069 ], [ -123.542328147999953, 48.63493212000003 ], [ -123.542588556999959, 48.634930893000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671417", "BldgCostT": "3221667", "sL_LossRatio": "0.876414805750994", "sL_AssetLoss": "18306.4", "sL_BldgLoss": "16044", "sL_StrLoss": "11345", "sL_NStrLoss": "4699", "sL_ContLoss": "2262.4", "geom_point": "0101000020E610000077D6341007E25EC024ABAE85D1504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.531577880999961, 48.633362915000085 ], [ -123.531576872999921, 48.633266986000116 ], [ -123.531393825999942, 48.633262738000077 ], [ -123.529864099999912, 48.63223549100011 ], [ -123.528949606999944, 48.631826701000115 ], [ -123.529000004999929, 48.631493512000112 ], [ -123.529390884999927, 48.631256994000061 ], [ -123.529743799999963, 48.631157285000057 ], [ -123.529877894999942, 48.631003511000088 ], [ -123.530063994999963, 48.630651714000116 ], [ -123.529742685999949, 48.629708909000101 ], [ -123.529676646999931, 48.629617112000084 ], [ -123.530085834999952, 48.629626615000063 ], [ -123.533643450999989, 48.629709166000033 ], [ -123.533454761999906, 48.633310545000029 ], [ -123.532798708999977, 48.633295331000028 ], [ -123.53279936099996, 48.633357271000087 ], [ -123.531939512999912, 48.633361244000064 ], [ -123.531577880999961, 48.633362915000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.783269961977186", "sL_AssetLoss": "5260", "sL_BldgLoss": "4120", "sL_StrLoss": "2280", "sL_NStrLoss": "1840", "sL_ContLoss": "1140", "geom_point": "0101000020E610000084903D8C5AE25EC02251CB8332514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.536831208999914, 48.636392786000094 ], [ -123.536854615, 48.635945507000081 ], [ -123.536413364999987, 48.635935289000045 ], [ -123.536601836999978, 48.63233392100004 ], [ -123.537042505999977, 48.63234412500006 ], [ -123.537023653999967, 48.635622248000104 ], [ -123.537018598999936, 48.636503816000051 ], [ -123.537014059999947, 48.636654486000062 ], [ -123.536960070999939, 48.63661363500011 ], [ -123.536922731999965, 48.63658537100013 ], [ -123.536825, 48.636511427000116 ], [ -123.536831208999914, 48.636392786000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24839667", "BldgCostT": "15656667", "sL_LossRatio": "0.855716308705962", "sL_AssetLoss": "77890.3", "sL_BldgLoss": "66652", "sL_StrLoss": "44267", "sL_NStrLoss": "22385", "sL_ContLoss": "11238.3", "geom_point": "0101000020E6100000BA33B0E16BE15EC0A1F102F4944E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.518749513999936, 48.613970006000095 ], [ -123.518831865999957, 48.613197559000071 ], [ -123.51892319699999, 48.612340686000046 ], [ -123.518822787999952, 48.611829390000054 ], [ -123.518337805, 48.610832409000054 ], [ -123.518354989999963, 48.610559729000066 ], [ -123.523920526999973, 48.61060884500008 ], [ -123.526700790999911, 48.610642479000028 ], [ -123.52667096899999, 48.611210379000049 ], [ -123.525620718999917, 48.61118594300013 ], [ -123.525594051999988, 48.611693505000126 ], [ -123.524604952999965, 48.611670481000026 ], [ -123.524564694999924, 48.612436405000054 ], [ -123.52491444599994, 48.612444547000088 ], [ -123.524860869999927, 48.613463971000023 ], [ -123.524872909999957, 48.613464251000039 ], [ -123.52484965399999, 48.613906717000113 ], [ -123.525383316, 48.613919139000082 ], [ -123.525194058999929, 48.617520598000048 ], [ -123.524740091999931, 48.61751003100008 ], [ -123.524718463999989, 48.617921507000112 ], [ -123.522332033999959, 48.617865931000075 ], [ -123.521658739999907, 48.61785023900007 ], [ -123.521092083999974, 48.617423698000017 ], [ -123.520831618, 48.617073299000083 ], [ -123.52040730099999, 48.61673439200009 ], [ -123.51977361199998, 48.615908298000093 ], [ -123.518749513999936, 48.615176297000076 ], [ -123.5185426099999, 48.614897092000078 ], [ -123.51871033599997, 48.61414559700011 ], [ -123.518749513999936, 48.613970006000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79046833", "BldgCostT": "55483333", "sL_LossRatio": "0.931166392321424", "sL_AssetLoss": "172532", "sL_BldgLoss": "160656", "sL_StrLoss": "75280", "sL_NStrLoss": "85376", "sL_ContLoss": "11876", "geom_point": "0101000020E61000001F0B7ED945E35EC0AFACC0D2F1524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.549020438999946, 48.645519861000011 ], [ -123.548693940999925, 48.645427562000108 ], [ -123.548524917999956, 48.645428367000122 ], [ -123.548247786999951, 48.645356695000018 ], [ -123.547994645999921, 48.645325037000077 ], [ -123.547994461999949, 48.645308063000073 ], [ -123.547892037999958, 48.645291862000114 ], [ -123.547624712999948, 48.645278770000068 ], [ -123.547200862999929, 48.645225759000105 ], [ -123.54702904599999, 48.645185960000028 ], [ -123.546791395999904, 48.645030613000088 ], [ -123.54595186200001, 48.64473189900005 ], [ -123.545951553999927, 48.644703334000063 ], [ -123.545844308999975, 48.644658610000121 ], [ -123.545041801999943, 48.643995198000034 ], [ -123.544510399000018, 48.643304642000054 ], [ -123.544469550999935, 48.643251538000086 ], [ -123.544324997, 48.643063708000085 ], [ -123.543543894999928, 48.64224771100011 ], [ -123.542899286999941, 48.641639508 ], [ -123.541779631999944, 48.640786817000091 ], [ -123.541653776999965, 48.640690992000081 ], [ -123.540994122999976, 48.640082905000085 ], [ -123.540667293999931, 48.639856179000049 ], [ -123.540312403999977, 48.63961001100003 ], [ -123.540220120999962, 48.639498966000083 ], [ -123.540217036999977, 48.639495260000139 ], [ -123.539679118999942, 48.638848106000069 ], [ -123.53946464299996, 48.638665124000049 ], [ -123.538694706999976, 48.638008330000019 ], [ -123.537842621999957, 48.637281405000081 ], [ -123.537014059999947, 48.636654486000062 ], [ -123.537018598999936, 48.636503816000051 ], [ -123.537349351999978, 48.636699773 ], [ -123.537657750999969, 48.636882495000087 ], [ -123.537800637999965, 48.636967156000068 ], [ -123.538677031999953, 48.637486358000018 ], [ -123.540183551999988, 48.638426100000075 ], [ -123.540323307999984, 48.638513263000014 ], [ -123.541036718999976, 48.638958258000038 ], [ -123.541291406999918, 48.63911708500008 ], [ -123.541853307999972, 48.639515893000095 ], [ -123.542202768999957, 48.639710630000096 ], [ -123.542511455999914, 48.639882680000028 ], [ -123.542723169999945, 48.640000657000066 ], [ -123.542928157999981, 48.640114895000082 ], [ -123.543118914999951, 48.640221180000061 ], [ -123.543127356999932, 48.640228358000037 ], [ -123.543230643999976, 48.640315901000129 ], [ -123.543660100999958, 48.640679877000082 ], [ -123.545405993999921, 48.642156139000072 ], [ -123.546716915, 48.643268057000085 ], [ -123.546753012999901, 48.643299266000014 ], [ -123.547128899999976, 48.643623708000092 ], [ -123.547797288999945, 48.644200716000107 ], [ -123.548569700999934, 48.644777389000062 ], [ -123.549245802999948, 48.645067884000063 ], [ -123.549828199999979, 48.645258909000063 ], [ -123.55086019, 48.645481801000045 ], [ -123.551106396999984, 48.645570410000126 ], [ -123.551828302999951, 48.645918809000094 ], [ -123.552281887999982, 48.646240196000093 ], [ -123.552582122999965, 48.646526984000026 ], [ -123.552897912999981, 48.646828581000044 ], [ -123.552905791999976, 48.646836140000104 ], [ -123.552968402, 48.646895822000133 ], [ -123.55311099699999, 48.647031791000039 ], [ -123.553347412999969, 48.647268361000016 ], [ -123.553709173999962, 48.647630295000084 ], [ -123.553814487999958, 48.647735717000074 ], [ -123.554764000999953, 48.648504811000109 ], [ -123.555277003999919, 48.6488864250001 ], [ -123.556006722999925, 48.649429230000081 ], [ -123.55636519799999, 48.649695880000102 ], [ -123.557019336999943, 48.650182454000067 ], [ -123.557028406, 48.650189204000093 ], [ -123.557248803999983, 48.650487284000064 ], [ -123.557354599999925, 48.650667311000113 ], [ -123.55738141799999, 48.651124462000041 ], [ -123.557462481999949, 48.652505893000104 ], [ -123.557483699999935, 48.652895929000074 ], [ -123.557492314999976, 48.653054612000034 ], [ -123.557542328999915, 48.653280951000127 ], [ -123.557560393999964, 48.653362709000142 ], [ -123.557732678999969, 48.653700106000073 ], [ -123.557913387999974, 48.653900805000148 ], [ -123.558122953999927, 48.654063356000108 ], [ -123.558355203999923, 48.654243493000067 ], [ -123.558405311999948, 48.654276811000109 ], [ -123.558701503999913, 48.654473713000101 ], [ -123.554553067999947, 48.654727820000161 ], [ -123.553978603999951, 48.654362009000124 ], [ -123.553914962999926, 48.654343936000082 ], [ -123.55313571399995, 48.654122699000041 ], [ -123.55313019499999, 48.653672691000089 ], [ -123.552896493999981, 48.65338640600006 ], [ -123.55288647799992, 48.652521894000095 ], [ -123.552777391999939, 48.652336976000122 ], [ -123.552526802, 48.651912292000077 ], [ -123.552693612999974, 48.651047791000039 ], [ -123.552880393999928, 48.650750203000058 ], [ -123.552942824999931, 48.650481130000067 ], [ -123.553022486999936, 48.650137793000063 ], [ -123.553029610999914, 48.649445602000071 ], [ -123.552903285999903, 48.64925255500011 ], [ -123.552901437999978, 48.649244962000076 ], [ -123.55282633799996, 48.649079562000082 ], [ -123.552701618999905, 48.648944368000109 ], [ -123.55262979, 48.648834596000015 ], [ -123.552039207999925, 48.648311667000037 ], [ -123.551615003999942, 48.647936029000057 ], [ -123.551518404999968, 48.647850509000115 ], [ -123.551002823999937, 48.646870028000102 ], [ -123.550839098999944, 48.646558692000049 ], [ -123.550522518999969, 48.64621829900004 ], [ -123.549376887999955, 48.64564869600013 ], [ -123.549219549000014, 48.645608006000046 ], [ -123.549219508999926, 48.645604475000056 ], [ -123.549020438999946, 48.645519861000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.952790267125099", "sL_AssetLoss": "9074.4", "sL_BldgLoss": "8646", "sL_StrLoss": "7330", "sL_NStrLoss": "1316", "sL_ContLoss": "428.4", "geom_point": "0101000020E6100000C5081B7DD0E15EC0962CDD135A4C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.525739956999971, 48.594635239000112 ], [ -123.531149267, 48.594761032000086 ], [ -123.531004075999959, 48.597531633000038 ], [ -123.530997278999934, 48.597661335000076 ], [ -123.530960525999888, 48.598362614000074 ], [ -123.52555080399999, 48.598236812000039 ], [ -123.525739956999971, 48.594635239000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770001", "BldgCostT": "2600001", "sL_LossRatio": "0.885153794876678", "sL_AssetLoss": "12601.2", "sL_BldgLoss": "11154", "sL_StrLoss": "7920", "sL_NStrLoss": "3234", "sL_ContLoss": "1447.2", "geom_point": "0101000020E6100000EE2A41D229E25EC0EC3E74FFE04D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.534087352999975, 48.607116793000074 ], [ -123.536383610999977, 48.607170030000056 ], [ -123.536275717999914, 48.609232708000128 ], [ -123.536223304999922, 48.610234691000066 ], [ -123.536010840999978, 48.610286520000031 ], [ -123.535722709999931, 48.610308242000087 ], [ -123.535708983999911, 48.610309278000067 ], [ -123.535421599999921, 48.610288186000034 ], [ -123.53512154, 48.610198286000085 ], [ -123.534058391999949, 48.609679628000052 ], [ -123.533746522999976, 48.609583150000105 ], [ -123.533713459, 48.609576118000092 ], [ -123.533461682000024, 48.609522655000092 ], [ -123.533293777999958, 48.609487022000074 ], [ -123.53305343599996, 48.6094636280001 ], [ -123.531310782999952, 48.609294100000049 ], [ -123.530908640999911, 48.609254969000077 ], [ -123.530857413000021, 48.609246840000012 ], [ -123.530972861999942, 48.607044506000143 ], [ -123.534087352999975, 48.607116793000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21452578", "BldgCostT": "13347410", "sL_LossRatio": "0.769717138103161", "sL_AssetLoss": "84140", "sL_BldgLoss": "64764", "sL_StrLoss": "37000", "sL_NStrLoss": "27764", "sL_ContLoss": "19376", "geom_point": "0101000020E6100000DE229B717BE15EC06C0F943EA14D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.518455192, 48.608969602000045 ], [ -123.51976198599999, 48.608055195000077 ], [ -123.52019970899994, 48.607135194000094 ], [ -123.520669506000019, 48.606584012000049 ], [ -123.520925383999966, 48.606484291000065 ], [ -123.521751400999904, 48.606363288000097 ], [ -123.521871278999953, 48.606200893000079 ], [ -123.521351982999946, 48.605799303000097 ], [ -123.521144790999955, 48.605305091000041 ], [ -123.521219690999899, 48.604773909000073 ], [ -123.52139169899999, 48.604413505000053 ], [ -123.521431142999944, 48.604118001000117 ], [ -123.521437960999947, 48.604066791000022 ], [ -123.521505905999931, 48.603557587000118 ], [ -123.521503603999989, 48.603535002000115 ], [ -123.521430302999946, 48.602821298000052 ], [ -123.521305598, 48.602579102000099 ], [ -123.521393613999962, 48.601939703000077 ], [ -123.521905755999938, 48.6013952240001 ], [ -123.522059794999947, 48.601231457000061 ], [ -123.526010744999951, 48.601323486000126 ], [ -123.525821585999907, 48.604925020000067 ], [ -123.524528409999931, 48.604894915000081 ], [ -123.524471191999936, 48.605983650000063 ], [ -123.524404298999954, 48.60598209200014 ], [ -123.524382663999944, 48.606393750000073 ], [ -123.524798491999917, 48.60640343200005 ], [ -123.524783921999955, 48.606680694000062 ], [ -123.525064498999953, 48.606687226000055 ], [ -123.525061115999904, 48.606751612000068 ], [ -123.526563949999982, 48.606786587000109 ], [ -123.526561134999909, 48.606840171000059 ], [ -123.52797900299997, 48.606873150000062 ], [ -123.52789109099993, 48.608548160000097 ], [ -123.527729743999913, 48.608534722000087 ], [ -123.527257360999954, 48.608555285000094 ], [ -123.526838922999943, 48.608605953000094 ], [ -123.526464550999947, 48.60877122100009 ], [ -123.526153552, 48.608960422000081 ], [ -123.524551946999964, 48.609934702000068 ], [ -123.524023759999977, 48.610501143000114 ], [ -123.523920526999973, 48.61060884500008 ], [ -123.518354989999963, 48.610559729000066 ], [ -123.518455192, 48.608969602000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38713000", "BldgCostT": "25015000", "sL_LossRatio": "0.863518321649792", "sL_AssetLoss": "50983.4", "sL_BldgLoss": "44025.1", "sL_StrLoss": "32790.8", "sL_NStrLoss": "11234.3", "sL_ContLoss": "6958.3", "geom_point": "0101000020E6100000BA3F72C64BE45EC0971217BAF1474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.557464855999982, 48.566460501000108 ], [ -123.557506354999958, 48.565659454000112 ], [ -123.555613048999959, 48.565615898000047 ], [ -123.555799775999901, 48.562014076000011 ], [ -123.559911984999971, 48.562108637000023 ], [ -123.559931626999969, 48.561729077000109 ], [ -123.561400853999913, 48.561762823000088 ], [ -123.56149546499995, 48.55993341000007 ], [ -123.564598164999964, 48.560004608000028 ], [ -123.564648790999939, 48.559024384000111 ], [ -123.564943571999891, 48.559031144000073 ], [ -123.564988124999942, 48.558168390000091 ], [ -123.56526102399999, 48.55817464800004 ], [ -123.565291045999984, 48.557593196000035 ], [ -123.570696210999955, 48.557716984000109 ], [ -123.570632709999956, 48.558949580000061 ], [ -123.570863322999983, 48.558954855000131 ], [ -123.572881850999963, 48.559001008000067 ], [ -123.572902187999915, 48.558605886000059 ], [ -123.577051690999895, 48.558700642000069 ], [ -123.578311803999938, 48.559350985000052 ], [ -123.579239977999976, 48.559866727000092 ], [ -123.579891875999976, 48.56013249100004 ], [ -123.579886307, 48.560240990000061 ], [ -123.580174105999944, 48.56024754800012 ], [ -123.580816207999945, 48.560509308000064 ], [ -123.583468360999973, 48.561683493000039 ], [ -123.584366623999955, 48.561949673000079 ], [ -123.584379128999927, 48.562086713000035 ], [ -123.58446867499994, 48.563067325000077 ], [ -123.584140084999916, 48.563089598000047 ], [ -123.583836787999957, 48.563062628000104 ], [ -123.583772382999925, 48.563056904000071 ], [ -123.58290382399997, 48.562870338000074 ], [ -123.582647435999931, 48.56285731 ], [ -123.582391606999963, 48.562885726000076 ], [ -123.58225558799991, 48.56291724600009 ], [ -123.582065703999945, 48.562961255000054 ], [ -123.581513030999957, 48.563131678000012 ], [ -123.58128437699996, 48.563158037000029 ], [ -123.581011841999938, 48.563142809000041 ], [ -123.58081108699993, 48.563107538000082 ], [ -123.580686988999958, 48.563085739000059 ], [ -123.580357476999964, 48.563027815000098 ], [ -123.579850588999989, 48.56296316800006 ], [ -123.579187576, 48.562878600000055 ], [ -123.579036186999957, 48.562859305000053 ], [ -123.57900653899999, 48.562855505000137 ], [ -123.578544748999931, 48.562740853000015 ], [ -123.578458772999937, 48.562719500000071 ], [ -123.578063632999914, 48.562588793000081 ], [ -123.578047621999943, 48.562580270000034 ], [ -123.577986565999979, 48.562547779000056 ], [ -123.577780482999941, 48.562438089000047 ], [ -123.577550094999935, 48.562234499000105 ], [ -123.577021983999956, 48.56161121800006 ], [ -123.576787420999906, 48.561410249000041 ], [ -123.576013721999942, 48.561011223000037 ], [ -123.575738212999909, 48.560922006000055 ], [ -123.57545448, 48.560888474000066 ], [ -123.574033960999927, 48.560924110000073 ], [ -123.573968356999956, 48.560925766000061 ], [ -123.573752848999945, 48.560974402000014 ], [ -123.573420281999915, 48.561049447000066 ], [ -123.573165261000028, 48.561106984000034 ], [ -123.57153861099999, 48.561474040000107 ], [ -123.571479704999916, 48.561487350000057 ], [ -123.571068567999959, 48.561535256000163 ], [ -123.570962474999973, 48.561547624000092 ], [ -123.570391516999976, 48.561547204000057 ], [ -123.569391509999917, 48.561576591000041 ], [ -123.568844061999982, 48.56169749900004 ], [ -123.567036074000015, 48.562852703000047 ], [ -123.566870436999977, 48.562958526000052 ], [ -123.566718607999974, 48.563055536 ], [ -123.566394025999955, 48.563262895000051 ], [ -123.565910498999955, 48.563571844000116 ], [ -123.565779161999927, 48.56365575500007 ], [ -123.565339648999938, 48.563936552000079 ], [ -123.565229800999958, 48.563934033000123 ], [ -123.565225918999957, 48.564009211000069 ], [ -123.563038655999918, 48.56540652500005 ], [ -123.562932045, 48.565404079000047 ], [ -123.562928273999944, 48.5654770370001 ], [ -123.562145982999965, 48.565976764000084 ], [ -123.56211312399999, 48.565999259000122 ], [ -123.561980459000011, 48.566090152000108 ], [ -123.561311091999954, 48.566552602000094 ], [ -123.560662091999959, 48.566934395 ], [ -123.559855981999931, 48.567292698000117 ], [ -123.559197376999975, 48.567520990000098 ], [ -123.558668814000015, 48.567668392000058 ], [ -123.558046009999956, 48.567805491000122 ], [ -123.557340797999984, 48.567910754000145 ], [ -123.557234589999922, 48.567926588 ], [ -123.555640902999968, 48.56801358000012 ], [ -123.555184743999945, 48.568038470000083 ], [ -123.555244027999947, 48.566895277000093 ], [ -123.555822170999974, 48.566908583000128 ], [ -123.555847329999921, 48.566423290000074 ], [ -123.557464855999982, 48.566460501000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121680834", "BldgCostT": "84203334", "sL_LossRatio": "0.877123509689865", "sL_AssetLoss": "102021.55", "sL_BldgLoss": "89485.5", "sL_StrLoss": "65467.8", "sL_NStrLoss": "24017.7", "sL_ContLoss": "12536.05", "geom_point": "0101000020E61000008CC14F5E1CE45EC02E239AE5D7454840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.562420738999919, 48.551239054000035 ], [ -123.562438869999966, 48.550888225000044 ], [ -123.560808214999909, 48.550850776000111 ], [ -123.560827563999965, 48.550476665000126 ], [ -123.560592828999972, 48.550471272000031 ], [ -123.56064569399993, 48.549449160000037 ], [ -123.560554888999974, 48.549447075000025 ], [ -123.560632816999956, 48.547940369000088 ], [ -123.558224976999966, 48.547885018000038 ], [ -123.558322401999959, 48.547094792000102 ], [ -123.558292943999959, 48.546984671000125 ], [ -123.558137600999942, 48.546404100000089 ], [ -123.557723896999931, 48.545640707000068 ], [ -123.557770615999942, 48.545055300000122 ], [ -123.558119587999926, 48.544757708000098 ], [ -123.558427087999931, 48.544279092000046 ], [ -123.558662615999978, 48.543531405000131 ], [ -123.558645608999925, 48.543189604000069 ], [ -123.558383915999968, 48.5427766030001 ], [ -123.55835437099995, 48.542523692000039 ], [ -123.560469169999976, 48.542572313000107 ], [ -123.560629750999965, 48.539467035000094 ], [ -123.55970505, 48.53944578100004 ], [ -123.559756524999969, 48.538450669000071 ], [ -123.559538038999946, 48.538445646000099 ], [ -123.559363120999976, 48.541826692000029 ], [ -123.558158862999974, 48.541798997000086 ], [ -123.557967776999988, 48.541645851000084 ], [ -123.557800611999966, 48.541511903000057 ], [ -123.557269612999917, 48.541244107000075 ], [ -123.557029394, 48.540426691000064 ], [ -123.556332181999935, 48.539781491000028 ], [ -123.556175878999966, 48.539116396000054 ], [ -123.556350173999974, 48.538655546 ], [ -123.556438202999956, 48.538422788000055 ], [ -123.556334104999934, 48.537497094000045 ], [ -123.555673301999946, 48.536574191000049 ], [ -123.555563810999928, 48.536335432000058 ], [ -123.556259915999973, 48.53635146000002 ], [ -123.556273800999975, 48.536083381000026 ], [ -123.556031113999907, 48.536077793000068 ], [ -123.556036464, 48.535974521000092 ], [ -123.56011318399996, 48.535705693000125 ], [ -123.562875480999963, 48.535719603000118 ], [ -123.564091189999942, 48.535725701000089 ], [ -123.56408012499999, 48.535940011000051 ], [ -123.565294021999989, 48.535967864000035 ], [ -123.565189166999971, 48.537999609000103 ], [ -123.566306906999927, 48.538025242000046 ], [ -123.566173678999931, 48.540607668000057 ], [ -123.567223225999925, 48.540631726000136 ], [ -123.567198527999949, 48.541110642000106 ], [ -123.567394049999976, 48.54111512300009 ], [ -123.567342866, 48.542107656000049 ], [ -123.57056919499999, 48.542181543 ], [ -123.570383673999956, 48.545783509000039 ], [ -123.567866807999977, 48.545725879000059 ], [ -123.56779838199995, 48.547052893000085 ], [ -123.568122673999952, 48.547060321000103 ], [ -123.568054180999965, 48.548388734000085 ], [ -123.572584394999964, 48.548492408000051 ], [ -123.572494306999971, 48.550242766000089 ], [ -123.573344171999935, 48.550262193000087 ], [ -123.573158829999954, 48.553864116000106 ], [ -123.571179932999939, 48.553818869000047 ], [ -123.568917977999917, 48.553767105000063 ], [ -123.568902873999946, 48.55406011900002 ], [ -123.565763034999961, 48.553988185000051 ], [ -123.565714895, 48.554920795000037 ], [ -123.560310062999974, 48.554796753000019 ], [ -123.560496387999962, 48.551194857000048 ], [ -123.562420738999919, 48.551239054000035 ] ], [ [ -123.562448428999971, 48.545884361000056 ], [ -123.56248752499999, 48.545127821000065 ], [ -123.561787868999943, 48.545111754000047 ], [ -123.561748761999951, 48.545868293000098 ], [ -123.562448428999971, 48.545884361000056 ] ], [ [ -123.561463359999919, 48.544353234000027 ], [ -123.561535444999947, 48.542958818000059 ], [ -123.561471962, 48.542957360000031 ], [ -123.561399874999907, 48.544351776000028 ], [ -123.561463359999919, 48.544353234000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "0.954155558627811", "sL_AssetLoss": "8173.51", "sL_BldgLoss": "7798.8", "sL_StrLoss": "6412", "sL_NStrLoss": "1386.8", "sL_ContLoss": "374.71", "geom_point": "0101000020E6100000BE7DA1708BE35EC08862974DA5474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.552776521999974, 48.55786898900012 ], [ -123.558181687999962, 48.557993415000084 ], [ -123.557995158999987, 48.561595264000061 ], [ -123.552589581999939, 48.561470829000072 ], [ -123.552776521999974, 48.55786898900012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6498417", "BldgCostT": "4481667", "sL_LossRatio": "0.939100259780097", "sL_AssetLoss": "5215.95", "sL_BldgLoss": "4898.3", "sL_StrLoss": "3125.9", "sL_NStrLoss": "1772.4", "sL_ContLoss": "317.65", "geom_point": "0101000020E610000079F74BB4F9E15EC0CB4C1F7093494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.528256658999965, 48.572948233000062 ], [ -123.533663486999927, 48.573073904000069 ], [ -123.533475025999962, 48.576675620000039 ], [ -123.528067784999948, 48.576549941000103 ], [ -123.528256658999965, 48.572948233000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.907859078590786", "sL_AssetLoss": "738", "sL_BldgLoss": "670", "sL_StrLoss": "259", "sL_NStrLoss": "411", "sL_ContLoss": "68", "geom_point": "0101000020E6100000F7DCF0583FE45EC06D286B8A36524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.565471569999929, 48.642107773000092 ], [ -123.567100482999962, 48.642099765000097 ], [ -123.56710567199994, 48.642562498000125 ], [ -123.566463961999915, 48.642490226000042 ], [ -123.56547442199998, 48.642362958000099 ], [ -123.565471569999929, 48.642107773000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27627078", "BldgCostT": "18077410", "sL_LossRatio": "0.792471356341773", "sL_AssetLoss": "156841", "sL_BldgLoss": "124292", "sL_StrLoss": "60890", "sL_NStrLoss": "63402", "sL_ContLoss": "32549", "geom_point": "0101000020E6100000260CB19739E55EC06960BBE61B524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.578510428999891, 48.642771193000051 ], [ -123.578531804999955, 48.642355736000084 ], [ -123.576220954999954, 48.64230311900009 ], [ -123.576357648999959, 48.639648670000057 ], [ -123.576406408999929, 48.638701718000064 ], [ -123.579083328999914, 48.638762666000076 ], [ -123.581820914999952, 48.638824925000051 ], [ -123.58181547199996, 48.638930881000135 ], [ -123.581805937999931, 48.639116444000081 ], [ -123.582976397999971, 48.639143041000118 ], [ -123.584346542999981, 48.639174160000017 ], [ -123.584322725999968, 48.639638204000079 ], [ -123.584319629999953, 48.639698543000094 ], [ -123.584315878999959, 48.639771607000043 ], [ -123.584459376999973, 48.639774864000124 ], [ -123.587760206000013, 48.63984975500005 ], [ -123.588307237999928, 48.639862157000017 ], [ -123.588293672999967, 48.640126888000061 ], [ -123.589042532999954, 48.640143860000073 ], [ -123.588977646999936, 48.641545887000092 ], [ -123.588913094999938, 48.641910312000043 ], [ -123.588785951999967, 48.64269326 ], [ -123.587973709999972, 48.642395011000112 ], [ -123.587657671999949, 48.642347282000053 ], [ -123.587325016999969, 48.642352235 ], [ -123.587081203999944, 48.64235585900007 ], [ -123.58555834299996, 48.642583604000087 ], [ -123.584882456999978, 48.642680895000034 ], [ -123.584544491999949, 48.642796814000135 ], [ -123.583803399999937, 48.643239603000048 ], [ -123.583307087999941, 48.643534889000151 ], [ -123.582654078999923, 48.643924637000076 ], [ -123.582517105999898, 48.644006403000034 ], [ -123.581990128999962, 48.644298078000126 ], [ -123.581547434999919, 48.644493604000097 ], [ -123.58111123499998, 48.644649768000107 ], [ -123.580261047999926, 48.6447924900001 ], [ -123.579821335999952, 48.644789530000054 ], [ -123.579395691999949, 48.644756045000129 ], [ -123.57920998299997, 48.644721356000041 ], [ -123.57916882899994, 48.644713709000023 ], [ -123.578980294999965, 48.644673699000101 ], [ -123.578555786999942, 48.644548013000048 ], [ -123.576933005999962, 48.643908009000086 ], [ -123.574774996999949, 48.64358154100006 ], [ -123.574782410999973, 48.643437693000052 ], [ -123.575635240999929, 48.643457129000097 ], [ -123.57563747799999, 48.643413714000118 ], [ -123.576591666999931, 48.643435451000087 ], [ -123.576628076999953, 48.642728336000054 ], [ -123.578510428999891, 48.642771193000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.905474964904071", "sL_AssetLoss": "213.7", "sL_BldgLoss": "193.5", "sL_StrLoss": "33.5", "sL_NStrLoss": "160", "sL_ContLoss": "20.2", "geom_point": "0101000020E6100000D273EA4E20E45EC0B30C0E8250484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.563038655999918, 48.56540652500005 ], [ -123.565225918999957, 48.564009211000069 ], [ -123.56515125599995, 48.565454977000059 ], [ -123.563038655999918, 48.56540652500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56432749", "BldgCostT": "37444999", "sL_LossRatio": "0.931833552520131", "sL_AssetLoss": "77331.3", "sL_BldgLoss": "72059.9", "sL_StrLoss": "52594.9", "sL_NStrLoss": "19465", "sL_ContLoss": "5271.4", "geom_point": "0101000020E6100000EC8ABE277BE35EC0138675A1C1504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.550729059999952, 48.637515684000093 ], [ -123.550645794999923, 48.637310094000064 ], [ -123.550285196999951, 48.636243814000139 ], [ -123.550449676999932, 48.636243029000092 ], [ -123.551153862999982, 48.636239661000069 ], [ -123.551156802999969, 48.636509534000034 ], [ -123.551474399999947, 48.636508014000071 ], [ -123.551476018999935, 48.636476900000076 ], [ -123.552594815999925, 48.636502644000174 ], [ -123.552785538999942, 48.63650172800007 ], [ -123.552785596999954, 48.636507033000036 ], [ -123.553192905999964, 48.636516402000041 ], [ -123.553188183999978, 48.63608455700011 ], [ -123.550374185999928, 48.636019797000124 ], [ -123.550208148999943, 48.636015974000038 ], [ -123.549011094999969, 48.632475900000074 ], [ -123.548821204999967, 48.631672005000013 ], [ -123.548604906999969, 48.62965948500009 ], [ -123.548493898999965, 48.629059285000089 ], [ -123.54829173199991, 48.628344585000086 ], [ -123.548276499999972, 48.628290792 ], [ -123.547875372999926, 48.627219281000116 ], [ -123.547872096, 48.627210504000018 ], [ -123.547775566000013, 48.626951900000016 ], [ -123.550800124999981, 48.627021591000059 ], [ -123.55205052899997, 48.627050377000039 ], [ -123.552069838999984, 48.626678984000058 ], [ -123.55282288699999, 48.6266963140001 ], [ -123.552850736999957, 48.626160502000054 ], [ -123.552927665999903, 48.626162272000016 ], [ -123.553004913999956, 48.624676002000115 ], [ -123.557681002999942, 48.624783485000094 ], [ -123.558417744999943, 48.624800401000073 ], [ -123.558408464999928, 48.624979348000039 ], [ -123.558336001999947, 48.626376667000045 ], [ -123.55828388499998, 48.627381577000079 ], [ -123.559008796999976, 48.627398217000049 ], [ -123.56071011799996, 48.627437248000085 ], [ -123.560523506999914, 48.631038688000054 ], [ -123.559888601999901, 48.631024125000067 ], [ -123.559717956999975, 48.634316097000074 ], [ -123.559244064, 48.634305225000034 ], [ -123.558090909999947, 48.634278761000111 ], [ -123.558087294999922, 48.634348437000014 ], [ -123.55767447499997, 48.634338961000068 ], [ -123.557644408999963, 48.634918447000082 ], [ -123.55683996599997, 48.634899975000017 ], [ -123.556848468999959, 48.635672495000073 ], [ -123.555626935999967, 48.635678395000092 ], [ -123.555622833999976, 48.635304975000075 ], [ -123.555612531999913, 48.635304739000041 ], [ -123.555569194, 48.636139294000053 ], [ -123.554410098999938, 48.636112654000073 ], [ -123.554411317999964, 48.636224026000036 ], [ -123.554818499999982, 48.63622206700007 ], [ -123.554822137999977, 48.636553861000074 ], [ -123.556890203999927, 48.636601375000041 ], [ -123.556847886999904, 48.637416637000051 ], [ -123.55380158299999, 48.637553092000097 ], [ -123.5514672, 48.63748848400013 ], [ -123.550894761999928, 48.63750957600012 ], [ -123.550729059999952, 48.637515684000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.768548152458539", "sL_AssetLoss": "6874", "sL_BldgLoss": "5283", "sL_StrLoss": "2561", "sL_NStrLoss": "2722", "sL_ContLoss": "1591", "geom_point": "0101000020E6100000AFE4328707E45EC0B30673E416524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.563317430999973, 48.641825979000018 ], [ -123.56219370099997, 48.641331486000084 ], [ -123.5615753699999, 48.641155074000082 ], [ -123.561628573999968, 48.641071337000042 ], [ -123.561671290999982, 48.641004030000062 ], [ -123.561656282999962, 48.640534973000101 ], [ -123.561654082999937, 48.640526010000038 ], [ -123.561591677999971, 48.640273540000074 ], [ -123.561582785999946, 48.640237591000101 ], [ -123.561785533, 48.640236602000094 ], [ -123.561788528999955, 48.640506475000095 ], [ -123.562602961999971, 48.640502499000043 ], [ -123.562608962999974, 48.641042244000126 ], [ -123.56301618399999, 48.641040254000075 ], [ -123.563019187999913, 48.641310126000107 ], [ -123.563833631999941, 48.64130614200009 ], [ -123.56383664, 48.641576014000073 ], [ -123.56424386499999, 48.641574020000093 ], [ -123.564246873999963, 48.641843893000093 ], [ -123.564654100999974, 48.64184189700012 ], [ -123.564658745999935, 48.642258043000034 ], [ -123.564511748999934, 48.642239136000114 ], [ -123.563996076999985, 48.642120962000092 ], [ -123.563317430999973, 48.641825979000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11312417", "BldgCostT": "7801667", "sL_LossRatio": "0.947168038252386", "sL_AssetLoss": "14472.3", "sL_BldgLoss": "13707.7", "sL_StrLoss": "10270", "sL_NStrLoss": "3437.7", "sL_ContLoss": "764.6", "geom_point": "0101000020E610000081B80611C4E45EC09E386F5207484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.581781088999932, 48.564329889000078 ], [ -123.581803610999955, 48.563890748000077 ], [ -123.57739486, 48.563790276000049 ], [ -123.577453367999979, 48.562651539000072 ], [ -123.575547491999927, 48.562608049000076 ], [ -123.575544412999974, 48.562667930000011 ], [ -123.574777793999914, 48.562650427000051 ], [ -123.574765093999957, 48.56289734799999 ], [ -123.574228878999946, 48.56288510300007 ], [ -123.57421508699997, 48.563153161000116 ], [ -123.570182092000024, 48.563060969000077 ], [ -123.570161343999985, 48.563463560000045 ], [ -123.569797796, 48.563455241000035 ], [ -123.569767759999976, 48.564037967000061 ], [ -123.565339648999938, 48.563936552000079 ], [ -123.565779161999927, 48.56365575500007 ], [ -123.565910498999955, 48.563571844000116 ], [ -123.566394025999955, 48.563262895000051 ], [ -123.566718607999974, 48.563055536 ], [ -123.566870436999977, 48.562958526000052 ], [ -123.567036074000015, 48.562852703000047 ], [ -123.568844061999982, 48.56169749900004 ], [ -123.569391509999917, 48.561576591000041 ], [ -123.570391516999976, 48.561547204000057 ], [ -123.570962474999973, 48.561547624000092 ], [ -123.571068567999959, 48.561535256000163 ], [ -123.571479704999916, 48.561487350000057 ], [ -123.57153861099999, 48.561474040000107 ], [ -123.573165261000028, 48.561106984000034 ], [ -123.573420281999915, 48.561049447000066 ], [ -123.573752848999945, 48.560974402000014 ], [ -123.573968356999956, 48.560925766000061 ], [ -123.574033960999927, 48.560924110000073 ], [ -123.57545448, 48.560888474000066 ], [ -123.575738212999909, 48.560922006000055 ], [ -123.576013721999942, 48.561011223000037 ], [ -123.576787420999906, 48.561410249000041 ], [ -123.577021983999956, 48.56161121800006 ], [ -123.577550094999935, 48.562234499000105 ], [ -123.577780482999941, 48.562438089000047 ], [ -123.577986565999979, 48.562547779000056 ], [ -123.578047621999943, 48.562580270000034 ], [ -123.578063632999914, 48.562588793000081 ], [ -123.578458772999937, 48.562719500000071 ], [ -123.578544748999931, 48.562740853000015 ], [ -123.57900653899999, 48.562855505000137 ], [ -123.579036186999957, 48.562859305000053 ], [ -123.579187576, 48.562878600000055 ], [ -123.579850588999989, 48.56296316800006 ], [ -123.580357476999964, 48.563027815000098 ], [ -123.580686988999958, 48.563085739000059 ], [ -123.58081108699993, 48.563107538000082 ], [ -123.581011841999938, 48.563142809000041 ], [ -123.58128437699996, 48.563158037000029 ], [ -123.581513030999957, 48.563131678000012 ], [ -123.582065703999945, 48.562961255000054 ], [ -123.58225558799991, 48.56291724600009 ], [ -123.582391606999963, 48.562885726000076 ], [ -123.582647435999931, 48.56285731 ], [ -123.58290382399997, 48.562870338000074 ], [ -123.583772382999925, 48.563056904000071 ], [ -123.583836787999957, 48.563062628000104 ], [ -123.584140084999916, 48.563089598000047 ], [ -123.58446867499994, 48.563067325000077 ], [ -123.584425274999901, 48.564390061000068 ], [ -123.581781088999932, 48.564329889000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43634583", "BldgCostT": "29883333", "sL_LossRatio": "0.878586372554726", "sL_AssetLoss": "58408.6", "sL_BldgLoss": "51317", "sL_StrLoss": "37507", "sL_NStrLoss": "13810", "sL_ContLoss": "7091.6", "geom_point": "0101000020E6100000E6D1853F20E45EC0596CEE4339494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.558323815999984, 48.576278839000096 ], [ -123.55851037799998, 48.572677076000076 ], [ -123.560247082999965, 48.572716977 ], [ -123.560314921999918, 48.571406209000052 ], [ -123.555868219999979, 48.571303988000061 ], [ -123.555909039999932, 48.570516672000053 ], [ -123.5550572399999, 48.570497069000041 ], [ -123.555184743999945, 48.568038470000083 ], [ -123.555640902999968, 48.56801358000012 ], [ -123.557234589999922, 48.567926588 ], [ -123.557340797999984, 48.567910754000145 ], [ -123.558046009999956, 48.567805491000122 ], [ -123.558668814000015, 48.567668392000058 ], [ -123.559197376999975, 48.567520990000098 ], [ -123.559855981999931, 48.567292698000117 ], [ -123.560662091999959, 48.566934395 ], [ -123.561311091999954, 48.566552602000094 ], [ -123.561980459000011, 48.566090152000108 ], [ -123.56211312399999, 48.565999259000122 ], [ -123.562145982999965, 48.565976764000084 ], [ -123.562928273999944, 48.5654770370001 ], [ -123.562858541999958, 48.56682602900004 ], [ -123.561485886999932, 48.566794524000088 ], [ -123.561240998999921, 48.566788901000024 ], [ -123.561223810999962, 48.567121178000093 ], [ -123.561187650999941, 48.567820176000055 ], [ -123.561461249999965, 48.567826457000102 ], [ -123.5614119049999, 48.568780416000088 ], [ -123.561342229999966, 48.570127357000068 ], [ -123.561845511999962, 48.57013891000004 ], [ -123.561845686999959, 48.570135549000042 ], [ -123.562000455999907, 48.570139101000052 ], [ -123.562015293999949, 48.56985215300007 ], [ -123.562632257999908, 48.569866311000062 ], [ -123.56262804499994, 48.569486640000036 ], [ -123.562622445999978, 48.568981898000068 ], [ -123.565468933, 48.568967955000069 ], [ -123.565474950999956, 48.56950770600011 ], [ -123.565881595999912, 48.569505708000143 ], [ -123.565886453999923, 48.56994093300009 ], [ -123.567421856999928, 48.569976106000048 ], [ -123.567418667999902, 48.570037924000061 ], [ -123.567920864999948, 48.570035448000134 ], [ -123.567923886999935, 48.570305323000071 ], [ -123.568330539999934, 48.5703033180001 ], [ -123.56832751599994, 48.570033442000074 ], [ -123.568595131999984, 48.57003212000005 ], [ -123.568731763999935, 48.569817454000088 ], [ -123.568731136999943, 48.569761558000025 ], [ -123.568767454999929, 48.569761378000109 ], [ -123.568814438999965, 48.569687561000094 ], [ -123.568990438999947, 48.569661161000056 ], [ -123.569333986999965, 48.56975858 ], [ -123.569951077999988, 48.569755527000105 ], [ -123.569953083999962, 48.569934129000089 ], [ -123.570163038999937, 48.569993661000105 ], [ -123.570152337999957, 48.571591662000095 ], [ -123.570866039999885, 48.571602461000062 ], [ -123.570993232999967, 48.572179376000101 ], [ -123.571198374999966, 48.572178358000087 ], [ -123.571204454999972, 48.572718109000071 ], [ -123.571883369999938, 48.572714739000112 ], [ -123.571890655999979, 48.572573304000052 ], [ -123.572577751999972, 48.572589007000012 ], [ -123.572581730999957, 48.572511720000101 ], [ -123.577988625999964, 48.572635135000013 ], [ -123.577984561999983, 48.572714246000032 ], [ -123.578978795999916, 48.572736910000081 ], [ -123.578941244999967, 48.573468041000105 ], [ -123.576655607999953, 48.57346036000007 ], [ -123.576655092999928, 48.573725496000073 ], [ -123.576608044999958, 48.574416461000112 ], [ -123.570615955, 48.57474757100006 ], [ -123.569432940999889, 48.574812895000044 ], [ -123.567049707999956, 48.574944478000148 ], [ -123.565948487999918, 48.574920671000037 ], [ -123.564538193999923, 48.574890175000043 ], [ -123.564566677999949, 48.574338868000069 ], [ -123.563838651999973, 48.574322175000042 ], [ -123.563731106999938, 48.576402977000036 ], [ -123.558323815999984, 48.576278839000096 ] ], [ [ -123.57179993499993, 48.574334495000095 ], [ -123.571827746999929, 48.573794577000093 ], [ -123.571216613999951, 48.573797609000088 ], [ -123.571217477999937, 48.573874214000057 ], [ -123.571270242999958, 48.574337124000081 ], [ -123.57179993499993, 48.574334495000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12521417", "BldgCostT": "8371667", "sL_LossRatio": "0.946795840547655", "sL_AssetLoss": "19983.4", "sL_BldgLoss": "18920.2", "sL_StrLoss": "16506.3", "sL_NStrLoss": "2413.9", "sL_ContLoss": "1063.2", "geom_point": "0101000020E61000004A3D2C5062EB5EC07A7A954AB2504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.678824423, 48.632614944000096 ], [ -123.678860357999937, 48.631886125000094 ], [ -123.676764320999922, 48.631840368000034 ], [ -123.676748362999945, 48.632163727000076 ], [ -123.671334379999976, 48.632045349000109 ], [ -123.671512521999929, 48.628443725000061 ], [ -123.674682137999952, 48.628513064000074 ], [ -123.674698108999962, 48.628189703000068 ], [ -123.680111656999927, 48.628307911000036 ], [ -123.680075743999964, 48.629036735000049 ], [ -123.68441564699998, 48.62913130000004 ], [ -123.684238490999945, 48.632732942000132 ], [ -123.678824423, 48.632614944000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.938705529361337", "sL_AssetLoss": "1166.5", "sL_BldgLoss": "1095", "sL_StrLoss": "923", "sL_NStrLoss": "172", "sL_ContLoss": "71.5", "geom_point": "0101000020E6100000A9703E549EE75EC0D974CAC4294D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.61863621199997, 48.603758446000015 ], [ -123.618745419999925, 48.601598053000039 ], [ -123.618517535999928, 48.601592948000089 ], [ -123.618535817999941, 48.601231272000028 ], [ -123.61875922499999, 48.601420375000075 ], [ -123.619223070999908, 48.60210059100006 ], [ -123.619682828999927, 48.603781885000096 ], [ -123.61863621199997, 48.603758446000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "0.978632182714169", "sL_AssetLoss": "3465.96", "sL_BldgLoss": "3391.9", "sL_StrLoss": "3008.5", "sL_NStrLoss": "383.4", "sL_ContLoss": "74.06", "geom_point": "0101000020E6100000B7DBC398D3E85EC08AFD6D682D4A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.637609893000018, 48.581815703000117 ], [ -123.637606498999972, 48.581545831000078 ], [ -123.636793025999978, 48.581550332000099 ], [ -123.636786244999911, 48.581010590000076 ], [ -123.636379513999984, 48.581012838000063 ], [ -123.636372737999935, 48.580473096000041 ], [ -123.635966009999947, 48.580475342000092 ], [ -123.635942311999926, 48.578586241000039 ], [ -123.634722174999965, 48.578592973000148 ], [ -123.634718717999959, 48.57831682300008 ], [ -123.634712038999936, 48.577783358000083 ], [ -123.635118744999971, 48.577781116000097 ], [ -123.635111982999888, 48.577241372000046 ], [ -123.635728116999957, 48.57723797200007 ], [ -123.63633208899995, 48.577234636000057 ], [ -123.63633886299999, 48.577774379000076 ], [ -123.636745569999945, 48.577772131000067 ], [ -123.636742179999942, 48.577502259000063 ], [ -123.637962291999926, 48.577495505000108 ], [ -123.637965688999913, 48.577765376000087 ], [ -123.639999216999925, 48.577754093000053 ], [ -123.640002622999958, 48.578023964000053 ], [ -123.640033193999912, 48.578023794000039 ], [ -123.640113712999906, 48.580368536 ], [ -123.640439040999965, 48.580373456000117 ], [ -123.640452651999965, 48.581450912999983 ], [ -123.640453651999977, 48.581530030000032 ], [ -123.640046915999974, 48.581532292000119 ], [ -123.640050323999944, 48.581802163000049 ], [ -123.638149312999985, 48.581812714000115 ], [ -123.637609893000018, 48.581815703000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.799723438580318", "sL_AssetLoss": "4339", "sL_BldgLoss": "3470", "sL_StrLoss": "2020", "sL_NStrLoss": "1450", "sL_ContLoss": "869", "geom_point": "0101000020E61000006843BC7DEFE95EC05CFF320841524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.653175193999914, 48.641995422000058 ], [ -123.656289855999958, 48.642064076000047 ], [ -123.656203348, 48.64380122900009 ], [ -123.656031476999914, 48.643695506000071 ], [ -123.655908129999929, 48.643606251000037 ], [ -123.655593233, 48.643401118000064 ], [ -123.655511082999936, 48.643347617000124 ], [ -123.655305496999972, 48.643195861000073 ], [ -123.655087040999902, 48.643098136000106 ], [ -123.6548, 48.642946826000149 ], [ -123.654607606999946, 48.642780504000079 ], [ -123.654497648999964, 48.642725373000061 ], [ -123.654142850999961, 48.642518746000079 ], [ -123.653883302999972, 48.642394262000082 ], [ -123.653787594999983, 48.642340843000056 ], [ -123.653527559999958, 48.642180375000073 ], [ -123.653213282999957, 48.642020240000086 ], [ -123.653175193999914, 48.641995422000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.989942221271132", "sL_AssetLoss": "1635.55", "sL_BldgLoss": "1619.1", "sL_StrLoss": "1512", "sL_NStrLoss": "107.1", "sL_ContLoss": "16.45", "geom_point": "0101000020E61000007D465CDF8BF25EC0A7C653A851504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.787210405999986, 48.628507919000072 ], [ -123.787294447999955, 48.626719670000107 ], [ -123.792708102999981, 48.62683215000007 ], [ -123.792651340999953, 48.628042903000051 ], [ -123.792624206999946, 48.628036702 ], [ -123.790031060999965, 48.628127265000067 ], [ -123.788940342999965, 48.628243024000035 ], [ -123.787210405999986, 48.628507919000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.896254927726675", "sL_AssetLoss": "15220", "sL_BldgLoss": "13641", "sL_StrLoss": "10180", "sL_NStrLoss": "3461", "sL_ContLoss": "1579", "geom_point": "0101000020E6100000BCF4A39F38EC5EC0DB155D8BD4534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.688341150999989, 48.65689816000009 ], [ -123.688509057999951, 48.653480420000108 ], [ -123.693925549999932, 48.653597921000014 ], [ -123.693897037999974, 48.65417966800004 ], [ -123.694526561999965, 48.654193307000135 ], [ -123.6944752859999, 48.655239768000058 ], [ -123.693955718999987, 48.655434607000096 ], [ -123.693601606, 48.655523410000093 ], [ -123.69342862299996, 48.655549346000043 ], [ -123.693335184999938, 48.65556336700012 ], [ -123.693297010999942, 48.655569096000072 ], [ -123.692873494999958, 48.655581506 ], [ -123.692752550999941, 48.655578878000021 ], [ -123.692548609, 48.655574473000087 ], [ -123.691765708999981, 48.655557509000111 ], [ -123.691582909999937, 48.655581500000039 ], [ -123.691571243999988, 48.655586457000027 ], [ -123.691361389999955, 48.655675808000069 ], [ -123.691195693999987, 48.655792998000038 ], [ -123.69117984199994, 48.655814385000106 ], [ -123.691080879999959, 48.65594799200003 ], [ -123.690676793999927, 48.656493352000091 ], [ -123.690646895999961, 48.656533716000048 ], [ -123.690532794999982, 48.656651867000093 ], [ -123.690382613999972, 48.656807386000025 ], [ -123.690337797999945, 48.656825607000115 ], [ -123.690171072999973, 48.656893365 ], [ -123.690144698999944, 48.65690408800004 ], [ -123.688616159999981, 48.656899066000072 ], [ -123.688341150999989, 48.65689816000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7873501", "BldgCostT": "5430001", "sL_LossRatio": "0.966299267733009", "sL_AssetLoss": "9482.88", "sL_BldgLoss": "9163.3", "sL_StrLoss": "7859.6", "sL_NStrLoss": "1303.7", "sL_ContLoss": "319.58", "geom_point": "0101000020E6100000435376FA41E65EC044108C2892484840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.597071875999944, 48.569002779000137 ], [ -123.597097869999985, 48.568492797000026 ], [ -123.592892057999947, 48.568397570000108 ], [ -123.593064018999954, 48.565029382000034 ], [ -123.593075948999953, 48.564795700000069 ], [ -123.598482012999966, 48.564918073000023 ], [ -123.598456035999931, 48.565428058000101 ], [ -123.602661594, 48.56552306500005 ], [ -123.602558482999939, 48.567550828000023 ], [ -123.602478431999913, 48.569124948000059 ], [ -123.597071875999944, 48.569002779000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.951795502279596", "sL_AssetLoss": "1952.1", "sL_BldgLoss": "1858", "sL_StrLoss": "1540", "sL_NStrLoss": "318", "sL_ContLoss": "94.1", "geom_point": "0101000020E61000000D3376BA1AEF5EC0094AFA496F524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.735287366999927, 48.643493541000034 ], [ -123.737604318999971, 48.643542829000033 ], [ -123.737391629999976, 48.643728693000142 ], [ -123.737352594999948, 48.643762811000023 ], [ -123.736739211999947, 48.643977793000026 ], [ -123.73625479799999, 48.64421529600007 ], [ -123.735777533999951, 48.644652629000042 ], [ -123.735550009999912, 48.644861104000064 ], [ -123.735233415999986, 48.64515116400009 ], [ -123.735206409999975, 48.645175908000041 ], [ -123.735287366999927, 48.643493541000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993182072202973", "sL_AssetLoss": "447.35", "sL_BldgLoss": "444.3", "sL_StrLoss": "421", "sL_NStrLoss": "23.3", "sL_ContLoss": "3.05", "geom_point": "0101000020E61000003540CCD20CE55EC023BC1CFA97474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.578311803999938, 48.559350985000052 ], [ -123.577051690999895, 48.558700642000069 ], [ -123.578307489999958, 48.558729287000055 ], [ -123.578290273999983, 48.559064529000111 ], [ -123.579944752999936, 48.559102246000116 ], [ -123.579891875999976, 48.56013249100004 ], [ -123.579239977999976, 48.559866727000092 ], [ -123.578311803999938, 48.559350985000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "0.96906231536073", "sL_AssetLoss": "3977.35", "sL_BldgLoss": "3854.3", "sL_StrLoss": "3341.2", "sL_NStrLoss": "513.1", "sL_ContLoss": "123.05", "geom_point": "0101000020E61000000414136955EC5EC0B9B53B5A0B514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.690094328999962, 48.63129939100002 ], [ -123.695508272999973, 48.631416816000076 ], [ -123.69533195599999, 48.635018462000112 ], [ -123.689917597999951, 48.634901029000027 ], [ -123.690094328999962, 48.63129939100002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.973140249126396", "sL_AssetLoss": "5777.79", "sL_BldgLoss": "5622.6", "sL_StrLoss": "4975", "sL_NStrLoss": "647.6", "sL_ContLoss": "155.19", "geom_point": "0101000020E6100000F9FA187B88E55EC0C7A11BEDFA474840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.588597271999959, 48.564533798000078 ], [ -123.588594415999978, 48.564287648000075 ], [ -123.587197146999927, 48.564255915000103 ], [ -123.587187070000013, 48.564452838000122 ], [ -123.584425274999901, 48.564390061000068 ], [ -123.58446867499994, 48.563067325000077 ], [ -123.584379128999927, 48.562086713000035 ], [ -123.584366623999955, 48.561949673000079 ], [ -123.583468360999973, 48.561683493000039 ], [ -123.580816207999945, 48.560509308000064 ], [ -123.580174105999944, 48.56024754800012 ], [ -123.582985410999967, 48.56031156800001 ], [ -123.582962900999973, 48.560750712000136 ], [ -123.584100246999967, 48.560776591000078 ], [ -123.584110335999966, 48.560579667000113 ], [ -123.589515893999973, 48.560702498000111 ], [ -123.589361613999969, 48.563720215000039 ], [ -123.590214265999975, 48.563715847000047 ], [ -123.590217632999909, 48.564005174000101 ], [ -123.59021902799995, 48.564125162 ], [ -123.590223685999959, 48.564525472000135 ], [ -123.588597271999959, 48.564533798000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16078750", "BldgCostT": "10825000", "sL_LossRatio": "0.850202127923415", "sL_AssetLoss": "80642", "sL_BldgLoss": "68562", "sL_StrLoss": "46380", "sL_NStrLoss": "22182", "sL_ContLoss": "12080", "geom_point": "0101000020E61000000A715943B1EA5EC01F1E997938534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.671790947999938, 48.654814004000087 ], [ -123.671545113999983, 48.654707473 ], [ -123.671449615999975, 48.654672045000055 ], [ -123.671259263999943, 48.654655163000022 ], [ -123.67125701, 48.654654517000068 ], [ -123.671109335999958, 48.654611046000127 ], [ -123.670836473999941, 48.654513687000112 ], [ -123.670604001999919, 48.654389102000025 ], [ -123.670302664999952, 48.654192934000037 ], [ -123.670190446000035, 48.654144290000076 ], [ -123.670056857999953, 48.654086423000074 ], [ -123.669852100999961, 48.654006629000023 ], [ -123.669543941999905, 48.653828455000038 ], [ -123.669445665999945, 48.653800142000065 ], [ -123.669375584999941, 48.653762617000083 ], [ -123.669155312, 48.653650462000087 ], [ -123.668830496999959, 48.653485098000012 ], [ -123.667762497999945, 48.652941297000098 ], [ -123.667059736999974, 48.652754932000029 ], [ -123.665828166999972, 48.652428319000116 ], [ -123.665724765999954, 48.652400894000081 ], [ -123.66552995499994, 48.652317937000127 ], [ -123.665361033999901, 48.652245988000104 ], [ -123.665159327999959, 48.652125384000101 ], [ -123.664979245999987, 48.652017683000061 ], [ -123.664664160999948, 48.651784535000026 ], [ -123.664622976999937, 48.651749242000079 ], [ -123.663257365999982, 48.650578302000099 ], [ -123.663033934999973, 48.650437260000054 ], [ -123.662476998999978, 48.650051879000067 ], [ -123.661958208999948, 48.649580807000085 ], [ -123.661245649999984, 48.649245166000092 ], [ -123.660890875999925, 48.6491486460001 ], [ -123.660001895999955, 48.648906837000013 ], [ -123.65973687499995, 48.648847209000074 ], [ -123.659490885999929, 48.648722664 ], [ -123.659258778999941, 48.648589209000107 ], [ -123.65919189499999, 48.648514103000082 ], [ -123.659121639999967, 48.648412529000076 ], [ -123.659050954999941, 48.648302345 ], [ -123.659020989999973, 48.648086593000102 ], [ -123.659032193000016, 48.647906609000074 ], [ -123.659056552999985, 48.647690553000061 ], [ -123.659080784999972, 48.647465511000092 ], [ -123.659091677000035, 48.647258540000102 ], [ -123.659102530999974, 48.64705158200011 ], [ -123.659100185999947, 48.646871648000037 ], [ -123.65909832, 48.646727732000038 ], [ -123.659082376999919, 48.646547894000108 ], [ -123.659025382999957, 48.646341313000072 ], [ -123.658927681999927, 48.646134962000083 ], [ -123.658789351999985, 48.645937817000132 ], [ -123.658747897999945, 48.645884088000038 ], [ -123.658541610999947, 48.645678356000133 ], [ -123.658362668999985, 48.645490440000025 ], [ -123.658130123999925, 48.645356857000102 ], [ -123.658044163999946, 48.645286887000047 ], [ -123.658759156999935, 48.645302621000042 ], [ -123.658741263, 48.645662310000056 ], [ -123.659164063999924, 48.645671612000079 ], [ -123.659158721999958, 48.645778999000072 ], [ -123.65984044599999, 48.645793994000044 ], [ -123.65978107399999, 48.646987969000072 ], [ -123.663573283999966, 48.647071300000064 ], [ -123.663569, 48.647157586000084 ], [ -123.666437285999905, 48.647220524 ], [ -123.666410253, 48.647765679000038 ], [ -123.669183320999963, 48.647826454000096 ], [ -123.669160330999901, 48.648290637000024 ], [ -123.670311928999979, 48.648315854000053 ], [ -123.672282438999929, 48.648358975000043 ], [ -123.67220637299999, 48.649896730000066 ], [ -123.672797810999924, 48.649909665000045 ], [ -123.672713799999912, 48.651608347000028 ], [ -123.67298900499999, 48.651614365000114 ], [ -123.672830175999977, 48.654825916000021 ], [ -123.67260582899999, 48.654827233000084 ], [ -123.672510781999918, 48.654827780000076 ], [ -123.67221196399997, 48.654820544000117 ], [ -123.672008304, 48.654821725000041 ], [ -123.671790947999938, 48.654814004000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899584", "BldgCostT": "4758334", "sL_LossRatio": "0.982234375309981", "sL_AssetLoss": "6048.76", "sL_BldgLoss": "5941.3", "sL_StrLoss": "5448", "sL_NStrLoss": "493.3", "sL_ContLoss": "107.46", "geom_point": "0101000020E61000003AA56A589FE45EC0A81C51A9AB494840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.564433503000018, 48.576916297000039 ], [ -123.564538193999923, 48.574890175000043 ], [ -123.565948487999918, 48.574920671000037 ], [ -123.567049707999956, 48.574944478000148 ], [ -123.569432940999889, 48.574812895000044 ], [ -123.570615955, 48.57474757100006 ], [ -123.576608044999958, 48.574416461000112 ], [ -123.576655092999928, 48.573725496000073 ], [ -123.576655607999953, 48.57346036000007 ], [ -123.578941244999967, 48.573468041000105 ], [ -123.578793798, 48.576338707000041 ], [ -123.577771055999932, 48.576315394000041 ], [ -123.577751176999968, 48.576702232000059 ], [ -123.572343815999929, 48.576578806000107 ], [ -123.572363833999987, 48.576190145000091 ], [ -123.571705114999972, 48.576175090000049 ], [ -123.571758213999885, 48.575144372000061 ], [ -123.571638505999957, 48.575144967000014 ], [ -123.571641548999963, 48.575414841000097 ], [ -123.569924235999906, 48.575423355000069 ], [ -123.56984088199998, 48.577040125000067 ], [ -123.564433503000018, 48.576916297000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11335834", "BldgCostT": "7608334", "sL_LossRatio": "0.744423113322337", "sL_AssetLoss": "73966", "sL_BldgLoss": "55062", "sL_StrLoss": "29180", "sL_NStrLoss": "25882", "sL_ContLoss": "18904", "geom_point": "0101000020E6100000CEA62BF1E3E75EC0E09445A3334B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.62078236, 48.586855075000045 ], [ -123.620904162, 48.584442444000089 ], [ -123.623795886999929, 48.584507150000029 ], [ -123.62631255, 48.584563398000107 ], [ -123.62629390399999, 48.584933585000044 ], [ -123.626831253999967, 48.584945586000053 ], [ -123.626797805999928, 48.585609785000024 ], [ -123.627858157999952, 48.585633461000079 ], [ -123.627676842999932, 48.589235266000088 ], [ -123.624245264999928, 48.589158606000119 ], [ -123.624175775999944, 48.590536849000117 ], [ -123.622202438999949, 48.590492716000021 ], [ -123.618766707999953, 48.590415788000051 ], [ -123.61894870699993, 48.586814004000118 ], [ -123.619835665999986, 48.58683387500006 ], [ -123.62078236, 48.586855075000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.887943838353617", "sL_AssetLoss": "9358.7", "sL_BldgLoss": "8310", "sL_StrLoss": "5950", "sL_NStrLoss": "2360", "sL_ContLoss": "1048.7", "geom_point": "0101000020E610000044BE8DC59DF05EC0D3AF6312E4504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.757348092999933, 48.630945246000067 ], [ -123.762762160999969, 48.631059249000053 ], [ -123.762703272999943, 48.632298441000096 ], [ -123.761652921999911, 48.632350301000031 ], [ -123.760331184999956, 48.632648793 ], [ -123.759957096999941, 48.63267970400009 ], [ -123.759802488, 48.63273950600005 ], [ -123.75956641, 48.632918405000048 ], [ -123.759368911999942, 48.633025093000072 ], [ -123.75856821799999, 48.633251597000083 ], [ -123.757919494999925, 48.633357785000065 ], [ -123.75733561199992, 48.633527598000114 ], [ -123.757222852999973, 48.633574229000025 ], [ -123.75724872699999, 48.633031124000098 ], [ -123.757348092999933, 48.630945246000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.840491038161352", "sL_AssetLoss": "25497", "sL_BldgLoss": "21430", "sL_StrLoss": "13470", "sL_NStrLoss": "7960", "sL_ContLoss": "4067", "geom_point": "0101000020E61000007765170CAEE95EC03A78E41777514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.650333845999981, 48.639787461000076 ], [ -123.650223023999914, 48.639617151000024 ], [ -123.650112467999975, 48.639464838000052 ], [ -123.650002183999945, 48.639330522000101 ], [ -123.649850413999943, 48.639142464000038 ], [ -123.649780504999981, 48.638980914000051 ], [ -123.649761971999965, 48.638946579000041 ], [ -123.649669253999946, 48.638774632000079 ], [ -123.649640838999943, 48.63867582300005 ], [ -123.64964024699999, 48.638630876000036 ], [ -123.649626576999964, 48.638621937000103 ], [ -123.649624023999962, 48.638424033000042 ], [ -123.649635623, 48.638271052000043 ], [ -123.649660924999949, 48.638126940000049 ], [ -123.649685870999988, 48.637955890000086 ], [ -123.649684842999974, 48.637874912000058 ], [ -123.649696082999967, 48.637694937000077 ], [ -123.649709427999952, 48.637676867000074 ], [ -123.649776290999938, 48.637595531000073 ], [ -123.649800547999916, 48.637370477000111 ], [ -123.649825346999961, 48.637190417000106 ], [ -123.649863397999965, 48.63698329000011 ], [ -123.649888592999957, 48.636830216000078 ], [ -123.649940111999939, 48.636614004000116 ], [ -123.649958896999962, 48.636383917000067 ], [ -123.650004981999956, 48.636240412000092 ], [ -123.650068666999957, 48.636055520000042 ], [ -123.650080281999948, 48.635902506000086 ], [ -123.650104770999988, 48.63569546100004 ], [ -123.650157080999975, 48.635542220000048 ], [ -123.650182631999925, 48.635416142000103 ], [ -123.650195614999973, 48.63537107700003 ], [ -123.650243549999956, 48.635158765000085 ], [ -123.650281947999957, 48.635096584000053 ], [ -123.650306775999979, 48.635025690000113 ], [ -123.650418544999951, 48.634876746000067 ], [ -123.65044646199999, 48.634820899000019 ], [ -123.65044631799999, 48.634811889000048 ], [ -123.650538670999978, 48.634604464000105 ], [ -123.650563591999983, 48.634433393000037 ], [ -123.650576625, 48.634388339000026 ], [ -123.650602248999931, 48.634271238000075 ], [ -123.650626951999968, 48.634082181000061 ], [ -123.650626249999945, 48.634028213000114 ], [ -123.650632707999947, 48.633980100000088 ], [ -123.650624426999968, 48.63388426900007 ], [ -123.650595308999982, 48.633731494000109 ], [ -123.650566066999929, 48.633569733000087 ], [ -123.650564120999917, 48.633416802000056 ], [ -123.650548456999928, 48.633254982000061 ], [ -123.650548344999947, 48.633245959000078 ], [ -123.650492204999964, 48.633102350000087 ], [ -123.650477833999929, 48.633039442000062 ], [ -123.650489678999975, 48.632904439000107 ], [ -123.650488978999959, 48.632850470000065 ], [ -123.650474574999947, 48.632787577000052 ], [ -123.65044639599995, 48.632706779000031 ], [ -123.650362541999982, 48.632518332000089 ], [ -123.650278331, 48.632302890000119 ], [ -123.650221629999947, 48.632114266000059 ], [ -123.650151230999981, 48.631916773000086 ], [ -123.650081640999971, 48.6317822110001 ], [ -123.649957189999924, 48.631602990000033 ], [ -123.649939095999954, 48.631523840000042 ], [ -123.651620303999948, 48.631560969000098 ], [ -123.651617299999941, 48.631621189000036 ], [ -123.652521474999958, 48.631641146000021 ], [ -123.652341870999919, 48.63524271900009 ], [ -123.651451576999975, 48.635223068000109 ], [ -123.651436730999961, 48.635520629000084 ], [ -123.651638338999959, 48.635525079000118 ], [ -123.651593155999976, 48.636430750000102 ], [ -123.652020079999943, 48.636440173000047 ], [ -123.652003065999949, 48.636781249000094 ], [ -123.652013299999908, 48.636781474000074 ], [ -123.651978758999945, 48.637473932000056 ], [ -123.651908485999982, 48.638882624000047 ], [ -123.652395410999972, 48.638893369000129 ], [ -123.652354264999985, 48.639718327000082 ], [ -123.652809043999923, 48.639728361000088 ], [ -123.65271106599999, 48.641693046000093 ], [ -123.652706744999975, 48.641690230000059 ], [ -123.652556631999957, 48.641628112 ], [ -123.65225590499989, 48.64146786900011 ], [ -123.651858916999956, 48.641209244000095 ], [ -123.65181760399993, 48.641164500000066 ], [ -123.65174914899994, 48.641119901000089 ], [ -123.651461555, 48.640923598000029 ], [ -123.651338805999927, 48.640879322000032 ], [ -123.651160637999951, 48.640745388000077 ], [ -123.651036825999967, 48.640620144000067 ], [ -123.650885205999927, 48.640441062000043 ], [ -123.650800315999959, 48.640362158000109 ], [ -123.65078902, 48.640351659000046 ], [ -123.650596234, 48.640136843000064 ], [ -123.650430787999966, 48.639939847000051 ], [ -123.650333845999981, 48.639787461000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.83623211321053", "sL_AssetLoss": "25298", "sL_BldgLoss": "21155", "sL_StrLoss": "12870", "sL_NStrLoss": "8285", "sL_ContLoss": "4143", "geom_point": "0101000020E6100000B275BA3D92E95EC00EFC666A2B504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.648485672999954, 48.627915901000051 ], [ -123.648017578999941, 48.626682344000088 ], [ -123.64797688699997, 48.626575096000103 ], [ -123.647961399999986, 48.626499152000115 ], [ -123.647873487999959, 48.626068913000069 ], [ -123.647870606999916, 48.625866112000047 ], [ -123.647858499999984, 48.625020580000147 ], [ -123.647852694999941, 48.624614501000053 ], [ -123.647857543999933, 48.62449878400006 ], [ -123.647842247999947, 48.624363904000049 ], [ -123.647839950999938, 48.624183986000048 ], [ -123.647796722999956, 48.623986319000018 ], [ -123.647754283000026, 48.623851617000071 ], [ -123.647712989999931, 48.62380687500012 ], [ -123.647561443999976, 48.623627799000033 ], [ -123.647547654999983, 48.623609874000081 ], [ -123.647464620999983, 48.623484397000027 ], [ -123.6473406369999, 48.623341148000051 ], [ -123.647312595999921, 48.623269340000036 ], [ -123.647296815999937, 48.623209711000058 ], [ -123.651203328999927, 48.623296056000129 ], [ -123.651023653999943, 48.626897677000137 ], [ -123.65030858599999, 48.626881883000131 ], [ -123.650295247999978, 48.62714911400009 ], [ -123.650787074, 48.627159979000062 ], [ -123.650607352999913, 48.630761575000079 ], [ -123.649548548999931, 48.630738185000013 ], [ -123.649455460999931, 48.630580238000093 ], [ -123.649413278999944, 48.63046353100011 ], [ -123.649356424999937, 48.630265932000093 ], [ -123.649341807999946, 48.630185052000066 ], [ -123.64932537199999, 48.629960231000055 ], [ -123.649214488999945, 48.62978092700012 ], [ -123.649172271999973, 48.629664232000046 ], [ -123.649143289000023, 48.629520445000075 ], [ -123.649127304999979, 48.62933161900002 ], [ -123.649084495999986, 48.629169920000081 ], [ -123.64897479699999, 48.629080566000056 ], [ -123.648946840999926, 48.629017755000092 ], [ -123.64891875699999, 48.628945958000017 ], [ -123.648862068999975, 48.628757335000032 ], [ -123.648841143999931, 48.628718753000072 ], [ -123.648764763999935, 48.628577971000034 ], [ -123.648667351999961, 48.628389586000019 ], [ -123.648653094999972, 48.628335701000054 ], [ -123.648582816999934, 48.628147174000084 ], [ -123.648534593999955, 48.628027625000058 ], [ -123.648485672999954, 48.627915901000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16670834", "BldgCostT": "11233334", "sL_LossRatio": "0.942711831877939", "sL_AssetLoss": "41684", "sL_BldgLoss": "39296", "sL_StrLoss": "32830", "sL_NStrLoss": "6466", "sL_ContLoss": "2388", "geom_point": "0101000020E6100000F130696317E65EC03F81039C56524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.590739430999989, 48.645224307000085 ], [ -123.590414891999927, 48.644043708000034 ], [ -123.590090199999935, 48.643172194000051 ], [ -123.588785951999967, 48.64269326 ], [ -123.588913094999938, 48.641910312000043 ], [ -123.588977646999936, 48.641545887000092 ], [ -123.589042532999954, 48.640143860000073 ], [ -123.58922232099998, 48.640147934000076 ], [ -123.589175932999979, 48.641053559000127 ], [ -123.589602660999944, 48.641063227000075 ], [ -123.58959696, 48.64117456000006 ], [ -123.590462409999958, 48.641194163000137 ], [ -123.59047052399994, 48.641035672000079 ], [ -123.593195710999908, 48.641097353000156 ], [ -123.593228145999944, 48.640463038000057 ], [ -123.594860054000023, 48.64049994100003 ], [ -123.594887006999926, 48.639972477000072 ], [ -123.595848895999922, 48.63999421700008 ], [ -123.59587169299999, 48.639547900000132 ], [ -123.595979058999973, 48.639550325000059 ], [ -123.596002711999958, 48.639087202000098 ], [ -123.599381286999957, 48.63916348900004 ], [ -123.599384039999975, 48.639254090000101 ], [ -123.599426700999913, 48.640654689 ], [ -123.599425582999913, 48.64114324400007 ], [ -123.599423084999898, 48.642214095000078 ], [ -123.599441993999932, 48.6422471220001 ], [ -123.5994815899999, 48.642316301000051 ], [ -123.599956911999953, 48.642846735000091 ], [ -123.60025738899995, 48.643182097000107 ], [ -123.600616505999952, 48.643483665000105 ], [ -123.600891616999931, 48.643714703000022 ], [ -123.601380062, 48.644172089000037 ], [ -123.601485403999945, 48.644270709000089 ], [ -123.601483935999951, 48.644579807000099 ], [ -123.596114461999917, 48.644458636000117 ], [ -123.596131030999942, 48.644134245000039 ], [ -123.595733764999977, 48.644125269000028 ], [ -123.5957031, 48.644725544000082 ], [ -123.598238862999949, 48.644782811000077 ], [ -123.598070401999976, 48.648083533000026 ], [ -123.595840563999957, 48.647268642 ], [ -123.595689978999971, 48.64721361000008 ], [ -123.59560931499999, 48.647190635000044 ], [ -123.595202359999973, 48.647074610000089 ], [ -123.595063418999956, 48.647047894000103 ], [ -123.594166132999945, 48.646875421000082 ], [ -123.593118608999973, 48.646765178000095 ], [ -123.592767408999933, 48.646620141000028 ], [ -123.59099653199992, 48.645550767000088 ], [ -123.590739430999989, 48.645224307000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26449167", "BldgCostT": "16766667", "sL_LossRatio": "0.934755743865224", "sL_AssetLoss": "39651", "sL_BldgLoss": "37064", "sL_StrLoss": "30210", "sL_NStrLoss": "6854", "sL_ContLoss": "2587", "geom_point": "0101000020E6100000289553AF19E85EC0B26B734A5D4F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.630369228999882, 48.630129266000068 ], [ -123.63043256199991, 48.628870980000102 ], [ -123.62961042799999, 48.628852662000085 ], [ -123.629630189999929, 48.62846013800003 ], [ -123.629563947999941, 48.628458662000078 ], [ -123.629589983999935, 48.627941550000116 ], [ -123.629532178999966, 48.627940262000052 ], [ -123.629556149, 48.627464175000142 ], [ -123.62943890499993, 48.627461561000153 ], [ -123.629509234999958, 48.626064699000082 ], [ -123.627989934999931, 48.626030827000115 ], [ -123.628015628999904, 48.625520804000082 ], [ -123.62773395699999, 48.625514522000053 ], [ -123.627740979999956, 48.625375115000125 ], [ -123.627355349999959, 48.625366512000014 ], [ -123.627370820999914, 48.625059503000038 ], [ -123.626913553999927, 48.625049302000058 ], [ -123.626939962, 48.62452533600004 ], [ -123.626494369999975, 48.624515392000063 ], [ -123.626524587999967, 48.623915944000068 ], [ -123.626325, 48.623911490000083 ], [ -123.626350635999955, 48.623402970000036 ], [ -123.625947914999955, 48.623393981000021 ], [ -123.625993397999963, 48.622491883000059 ], [ -123.624101502999963, 48.622449635000066 ], [ -123.624211847999945, 48.62026268900005 ], [ -123.623855823999961, 48.620254736000064 ], [ -123.623885780999927, 48.619661061000066 ], [ -123.623553149999964, 48.61965362900002 ], [ -123.623581726999973, 48.619087357000097 ], [ -123.622093631999988, 48.619054092000127 ], [ -123.62213979699996, 48.618139877000019 ], [ -123.621155852999891, 48.61811787000012 ], [ -123.621337776999908, 48.614516248000029 ], [ -123.621454878999913, 48.614518868000133 ], [ -123.62151273299996, 48.613373349000021 ], [ -123.62283979599999, 48.613403026000086 ], [ -123.622904992999935, 48.612111317000092 ], [ -123.62279377, 48.612108830000082 ], [ -123.622975544999974, 48.608507170000038 ], [ -123.623543186999882, 48.608519860000094 ], [ -123.624158838, 48.608968752000116 ], [ -123.624786173999922, 48.609816362000103 ], [ -123.624802349, 48.610243015000044 ], [ -123.624800721999975, 48.61029065000011 ], [ -123.62478854799997, 48.610637616000098 ], [ -123.624523128999925, 48.611124002000054 ], [ -123.623559425999957, 48.612152756000086 ], [ -123.623261215999932, 48.612720130000071 ], [ -123.623471461999969, 48.614200809000131 ], [ -123.622927089999948, 48.614949065000097 ], [ -123.62282201, 48.61533602300009 ], [ -123.622835038999966, 48.615335842000057 ], [ -123.627072395999974, 48.615276614000081 ], [ -123.627088885, 48.615500573000048 ], [ -123.627103000999924, 48.615692018000033 ], [ -123.627062405999979, 48.615904712000024 ], [ -123.627014101000015, 48.616040152000011 ], [ -123.626860499999935, 48.616470800000037 ], [ -123.626815110999985, 48.616753696000032 ], [ -123.62680408499989, 48.616919401000111 ], [ -123.626870610999958, 48.617282894 ], [ -123.626914994999979, 48.617525492000098 ], [ -123.626923009, 48.617569203000059 ], [ -123.626951480999935, 48.617625243000063 ], [ -123.627014534999958, 48.617749255000014 ], [ -123.627096802999972, 48.617911089000046 ], [ -123.627294309999968, 48.618158893000043 ], [ -123.627561785999958, 48.618414592000171 ], [ -123.628174325999936, 48.618812307000049 ], [ -123.62842880699999, 48.61908568300003 ], [ -123.62876646299999, 48.61967600500008 ], [ -123.628964092999922, 48.620021494000071 ], [ -123.62910580399992, 48.620651211000123 ], [ -123.629195017999947, 48.620871292000089 ], [ -123.62993801099999, 48.622013371000058 ], [ -123.630094614999976, 48.622254061000021 ], [ -123.630364157999963, 48.622668382000057 ], [ -123.630452394999949, 48.622804014000074 ], [ -123.630792228999937, 48.623125409000032 ], [ -123.631057597999984, 48.6233763910001 ], [ -123.631597815999925, 48.623733594000093 ], [ -123.632063288999944, 48.623933309000073 ], [ -123.632295599999949, 48.62408270800006 ], [ -123.632663881000028, 48.624465420000043 ], [ -123.632714004999926, 48.624517491000063 ], [ -123.632898680999944, 48.624805491000146 ], [ -123.632986709999955, 48.625021101000129 ], [ -123.633001993999954, 48.625526193000063 ], [ -123.633152289999941, 48.625769407000078 ], [ -123.633340497999896, 48.626203488000087 ], [ -123.633443612999955, 48.626578095000113 ], [ -123.633443623999966, 48.626578588 ], [ -123.631660948999979, 48.626574986000072 ], [ -123.631665458999976, 48.626715359000109 ], [ -123.630811081000019, 48.627692489000012 ], [ -123.630547201999917, 48.628238703000058 ], [ -123.630568281999942, 48.628846670000058 ], [ -123.631168194999987, 48.629777141000034 ], [ -123.630369228999882, 48.630129266000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561666", "BldgCostT": "1766666", "sL_LossRatio": "0.867435401060517", "sL_AssetLoss": "11881", "sL_BldgLoss": "10306", "sL_StrLoss": "6740", "sL_NStrLoss": "3566", "sL_ContLoss": "1575", "geom_point": "0101000020E610000058C964C487F15EC02F3C69C0A4504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.772476715, 48.62881871200009 ], [ -123.777890575999891, 48.628931946000101 ], [ -123.777837867999921, 48.630048693000063 ], [ -123.775151469999983, 48.630410362000092 ], [ -123.774239678999905, 48.630641705000052 ], [ -123.772718776999938, 48.631327257000102 ], [ -123.772146591999928, 48.631439214000061 ], [ -123.769628425999926, 48.631393489000118 ], [ -123.769674536999958, 48.630420148000034 ], [ -123.772398244999962, 48.630477220000024 ], [ -123.772476715, 48.62881871200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22808500", "BldgCostT": "15730000", "sL_LossRatio": "0.965699698731033", "sL_AssetLoss": "30567.37", "sL_BldgLoss": "29518.9", "sL_StrLoss": "25660.3", "sL_NStrLoss": "3858.6", "sL_ContLoss": "1048.47", "geom_point": "0101000020E6100000C2F6CDDC07E95EC0B7070883BE4D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.6453780639999, 48.617351636000144 ], [ -123.645090628999952, 48.617155346000068 ], [ -123.644939065999921, 48.616976260000087 ], [ -123.64484192899999, 48.616805888000044 ], [ -123.644703618, 48.616599736000083 ], [ -123.644592786999965, 48.616420435000101 ], [ -123.64448172699997, 48.616223128000122 ], [ -123.644426321999958, 48.61613349000006 ], [ -123.644356990999967, 48.616016918000071 ], [ -123.644273891999916, 48.615882442000057 ], [ -123.644149850999938, 48.615730196000072 ], [ -123.644136155999931, 48.615721269000019 ], [ -123.644080608999957, 48.615622622000082 ], [ -123.64406682399995, 48.615604696000098 ], [ -123.64402452799996, 48.615478983000045 ], [ -123.643928201999984, 48.615371595000035 ], [ -123.643872993999963, 48.615299919000094 ], [ -123.643693644, 48.615067033000074 ], [ -123.643637440999939, 48.614914408000097 ], [ -123.643623513999941, 48.614887474000049 ], [ -123.643540633999962, 48.614770984000046 ], [ -123.643498926999953, 48.614690272000054 ], [ -123.643428339999957, 48.614474757000011 ], [ -123.643399385999928, 48.614330977000044 ], [ -123.643371214999945, 48.614250161000058 ], [ -123.643357092999963, 48.614205264000077 ], [ -123.643328442999945, 48.61408846900018 ], [ -123.643313964999891, 48.614016579000065 ], [ -123.643339505999961, 48.613890490000067 ], [ -123.643404920999927, 48.613701191000054 ], [ -123.64351084799992, 48.613493696000091 ], [ -123.643537294999987, 48.613439554000074 ], [ -123.64353651, 48.61337659200013 ], [ -123.643506721999941, 48.613169841000079 ], [ -123.643506295999941, 48.61313387100008 ], [ -123.643477431999941, 48.612999090000102 ], [ -123.643434996999957, 48.612864371000114 ], [ -123.643434907000014, 48.612855371000087 ], [ -123.643419293999969, 48.612693528000129 ], [ -123.64336240199998, 48.612486940000046 ], [ -123.6433732, 48.612270968000182 ], [ -123.643372630999963, 48.612225990000042 ], [ -123.643371013999982, 48.612100054000045 ], [ -123.643328064999949, 48.611920367000089 ], [ -123.64331367799997, 48.6118574770001 ], [ -123.643338202999956, 48.61165041800011 ], [ -123.643322323999925, 48.611470579000112 ], [ -123.643321968999928, 48.611443586000078 ], [ -123.643306141999972, 48.61126375700006 ], [ -123.643303635, 48.611065840000037 ], [ -123.643291090999952, 48.611011723000082 ], [ -123.643272274999973, 48.610944999000075 ], [ -123.64323283899995, 48.610832342000087 ], [ -123.643218807999958, 48.610796445000069 ], [ -123.643204424999951, 48.610733554000056 ], [ -123.643135706999956, 48.610661949000082 ], [ -123.643121674999975, 48.61062605200005 ], [ -123.643094218999963, 48.610599223000051 ], [ -123.643039140999946, 48.610536533000051 ], [ -123.642997655, 48.610473807000083 ], [ -123.642928334999937, 48.610357236 ], [ -123.64270889, 48.610169530000093 ], [ -123.642695215999979, 48.610160626 ], [ -123.642585068999935, 48.610035304000149 ], [ -123.642557291999964, 48.609981470000058 ], [ -123.642487617999947, 48.609837906000074 ], [ -123.642431729999956, 48.609712266000088 ], [ -123.642390367999951, 48.609658525000015 ], [ -123.642375983999955, 48.609595635000083 ], [ -123.642347746, 48.609505845000072 ], [ -123.642359130999978, 48.609334817000025 ], [ -123.642302905999912, 48.609182207000131 ], [ -123.642313637999962, 48.608957261000057 ], [ -123.642406202999936, 48.608767814000096 ], [ -123.642390025999973, 48.608560994000115 ], [ -123.642387966999962, 48.608399070000061 ], [ -123.642303735999988, 48.608174620000078 ], [ -123.642274525999952, 48.608012849000019 ], [ -123.64227303399997, 48.607895902000081 ], [ -123.642202942, 48.607716370000063 ], [ -123.64216044799997, 48.607572675000029 ], [ -123.642130792999978, 48.607374914000111 ], [ -123.642128042999971, 48.607159027000144 ], [ -123.64208645399998, 48.607087281000091 ], [ -123.642058411999955, 48.607015452000041 ], [ -123.641934849999984, 48.606899199000097 ], [ -123.64181072099997, 48.606737969000093 ], [ -123.641783246999964, 48.606711116000021 ], [ -123.641728286999978, 48.606657448000114 ], [ -123.641645992999912, 48.60658593600003 ], [ -123.641593976999943, 48.606548591000092 ], [ -123.641517253999922, 48.606504464000061 ], [ -123.641151738999937, 48.606321030000075 ], [ -123.640850109, 48.60616965300008 ], [ -123.63848758499995, 48.605562817000092 ], [ -123.63825818499997, 48.60546578200006 ], [ -123.637748069999986, 48.604971271000132 ], [ -123.637391380999958, 48.604684810000045 ], [ -123.636353759999949, 48.604178581000035 ], [ -123.636341135999956, 48.604175287000032 ], [ -123.635904640999968, 48.604061311000116 ], [ -123.635575879999962, 48.603812410000096 ], [ -123.635325550999937, 48.603539133 ], [ -123.63512954, 48.603188604000046 ], [ -123.635007087999966, 48.602969584000029 ], [ -123.634992964999952, 48.602944330000106 ], [ -123.63475087599997, 48.602511264000043 ], [ -123.634513582999944, 48.602086809000085 ], [ -123.634467254999933, 48.602003923000026 ], [ -123.634285511999963, 48.601678861000025 ], [ -123.634244968999965, 48.601656624000036 ], [ -123.634148752, 48.601526535000119 ], [ -123.634120608999936, 48.601445719000026 ], [ -123.63407900199999, 48.601373983000094 ], [ -123.634072485, 48.60136611300004 ], [ -123.633982625999963, 48.601257571000126 ], [ -123.633939555999987, 48.601068890000079 ], [ -123.633842008999949, 48.60086251600007 ], [ -123.633741873999938, 48.600655882000048 ], [ -123.633698700999915, 48.600557010000038 ], [ -123.633555842999968, 48.59999944400009 ], [ -123.63321980399995, 48.598687603000023 ], [ -123.633154323999975, 48.598547360000083 ], [ -123.633152585999966, 48.598543692000128 ], [ -123.63301890799994, 48.598427983000121 ], [ -123.632484108999947, 48.598103280000075 ], [ -123.632105598999942, 48.597767609000094 ], [ -123.632050322999973, 48.597688403000092 ], [ -123.631798701999969, 48.597328094000034 ], [ -123.631484515999944, 48.596628808000112 ], [ -123.631381117000018, 48.59639659500003 ], [ -123.631353109999964, 48.596092190000064 ], [ -123.631284099999974, 48.595849991000129 ], [ -123.631082711999966, 48.595411900000101 ], [ -123.630901097999981, 48.595119394000079 ], [ -123.630532742999947, 48.594744703000082 ], [ -123.629938911999957, 48.594140604000046 ], [ -123.629722595999937, 48.594000597000068 ], [ -123.629426785999911, 48.593151096000042 ], [ -123.629414290999961, 48.593136224000027 ], [ -123.630942589999989, 48.593170302000068 ], [ -123.630905309999946, 48.593911759000036 ], [ -123.630988032999966, 48.593913603000068 ], [ -123.63097998899994, 48.594073587000075 ], [ -123.63162612, 48.594087987000115 ], [ -123.631593449999968, 48.594737920000064 ], [ -123.63161895699993, 48.594738489000108 ], [ -123.631598185999934, 48.595151715000078 ], [ -123.634018795999964, 48.59520562700007 ], [ -123.633990459999936, 48.595769924000066 ], [ -123.634116327999948, 48.595772727000075 ], [ -123.634078221, 48.59653158400004 ], [ -123.634663652999976, 48.596544614000059 ], [ -123.634632031999928, 48.597174463000023 ], [ -123.634656889999974, 48.597175015000083 ], [ -123.634635625999934, 48.597598534000099 ], [ -123.63478751, 48.597601913000034 ], [ -123.634764346999972, 48.5980633080001 ], [ -123.634778137999916, 48.598063615000093 ], [ -123.634694333999931, 48.599732852000102 ], [ -123.638048420999908, 48.599807435000052 ], [ -123.637971782999955, 48.601336015000051 ], [ -123.639839147999979, 48.601377492000033 ], [ -123.639786605999973, 48.602426228000112 ], [ -123.640005604999956, 48.60243109099999 ], [ -123.639976329999925, 48.603015445000068 ], [ -123.64100450399998, 48.603038266000098 ], [ -123.640985845999964, 48.603410827000104 ], [ -123.642243781999966, 48.603438735000083 ], [ -123.642229341999936, 48.60372721800011 ], [ -123.643176065999924, 48.603748211000045 ], [ -123.643096046999943, 48.605347553000072 ], [ -123.643567546, 48.60535800500007 ], [ -123.643546988999958, 48.605768938000054 ], [ -123.643734864999942, 48.605773103000033 ], [ -123.643694765999925, 48.606574732000048 ], [ -123.64377921, 48.606576604000047 ], [ -123.643747843999932, 48.607203654000045 ], [ -123.643984540999924, 48.607208900000074 ], [ -123.643965125999941, 48.607597049000049 ], [ -123.644364150999962, 48.607605891000063 ], [ -123.644342888000011, 48.608031064000095 ], [ -123.64466426599995, 48.608038184000037 ], [ -123.644652824999923, 48.608266955000069 ], [ -123.644956268999962, 48.608273678000067 ], [ -123.644939795999974, 48.608603154000015 ], [ -123.645215977999953, 48.60860927100007 ], [ -123.645210225999975, 48.608724318000014 ], [ -123.646218549999958, 48.608746646000029 ], [ -123.646214731, 48.608823051000115 ], [ -123.646810133999921, 48.608836230000072 ], [ -123.646735853999985, 48.610322964000076 ], [ -123.646919617999941, 48.610327031000054 ], [ -123.646764200999939, 48.613437683 ], [ -123.647087396999922, 48.613444836000085 ], [ -123.647063939999967, 48.613914355000041 ], [ -123.647374613999887, 48.613921230000081 ], [ -123.64735812299989, 48.614251348000018 ], [ -123.647894614999984, 48.614263216000069 ], [ -123.647784619999953, 48.616465527000067 ], [ -123.647892944999953, 48.616467923000066 ], [ -123.647853661999989, 48.61725443400006 ], [ -123.648476572999954, 48.617268210000084 ], [ -123.648296711999961, 48.620869862000127 ], [ -123.648053531999963, 48.620864485 ], [ -123.648035120999964, 48.621233068000045 ], [ -123.64776370599999, 48.621227065 ], [ -123.647731643999961, 48.621868873000075 ], [ -123.647055986999987, 48.621853927000124 ], [ -123.647026674999978, 48.62244053400007 ], [ -123.647002354999969, 48.622353471000018 ], [ -123.647014995999925, 48.622281438000094 ], [ -123.647012222999976, 48.622065539000069 ], [ -123.647011649999968, 48.622020559000056 ], [ -123.64702314499999, 48.621858567000082 ], [ -123.646994872000022, 48.621768750000072 ], [ -123.646911272999958, 48.621598294000087 ], [ -123.646800543999973, 48.621427980000142 ], [ -123.646703962999979, 48.621302585000088 ], [ -123.646579415999938, 48.621114358000121 ], [ -123.646564143999939, 48.620979502000118 ], [ -123.646508352999945, 48.620862847000041 ], [ -123.646424665999959, 48.620683390000067 ], [ -123.646395571999975, 48.620530624000097 ], [ -123.646407518999951, 48.620404625000063 ], [ -123.646392014999961, 48.620251761000077 ], [ -123.646349671999971, 48.62012605900005 ], [ -123.64630670399994, 48.619946368000051 ], [ -123.646318183999966, 48.619784354000053 ], [ -123.646275663999972, 48.619640656000058 ], [ -123.646205283999976, 48.61944314600003 ], [ -123.646191033999941, 48.619389262000041 ], [ -123.64614779899992, 48.619191576000084 ], [ -123.646106277999934, 48.61912882600005 ], [ -123.646078118, 48.619048032000123 ], [ -123.646036026999951, 48.618940304000063 ], [ -123.645953131999931, 48.618823813000034 ], [ -123.645883022999968, 48.618710967000084 ], [ -123.64584700799999, 48.61863888900006 ], [ -123.645808477999978, 48.61851160500008 ], [ -123.645770663999883, 48.618348024000106 ], [ -123.645770326999966, 48.618321055000131 ], [ -123.645728593999962, 48.618240318000041 ], [ -123.64567295099998, 48.618132674000044 ], [ -123.645644986999983, 48.618069841000093 ], [ -123.645601683999971, 48.617863180000015 ], [ -123.645587985999967, 48.617854252000036 ], [ -123.645560041999929, 48.617791442000119 ], [ -123.645504633999963, 48.617701805000074 ], [ -123.645449206999956, 48.617612143000024 ], [ -123.645406904999959, 48.617486431000032 ], [ -123.6453780639999, 48.617351636000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.975756674538586", "sL_AssetLoss": "3967.69", "sL_BldgLoss": "3871.5", "sL_StrLoss": "3548", "sL_NStrLoss": "323.5", "sL_ContLoss": "96.19", "geom_point": "0101000020E6100000C373DFFF81E65EC01CB7F3580E464840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.599074182999985, 48.545450788000039 ], [ -123.604478045999898, 48.545572861000068 ], [ -123.604295099999973, 48.54917486500004 ], [ -123.598890824999941, 48.549052784000025 ], [ -123.599074182999985, 48.545450788000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3625000", "BldgCostT": "2500000", "sL_LossRatio": "0.961520333327049", "sL_AssetLoss": "5304.1", "sL_BldgLoss": "5100", "sL_StrLoss": "4534.3", "sL_NStrLoss": "565.7", "sL_ContLoss": "204.1", "geom_point": "0101000020E61000007A8C55F786E45EC09BA77C00394A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.568012664999969, 48.581492178000126 ], [ -123.568198505999959, 48.577890430000089 ], [ -123.56897804499999, 48.577908270000115 ], [ -123.569171703, 48.578242303000117 ], [ -123.569952503999971, 48.578875985000082 ], [ -123.570401789999949, 48.579018503000114 ], [ -123.570888412000016, 48.57900709200004 ], [ -123.571025311999932, 48.57910530600001 ], [ -123.571332002999924, 48.579687799000105 ], [ -123.571008289999938, 48.580005403000015 ], [ -123.571013007999966, 48.580347203000052 ], [ -123.571328713999904, 48.580731797000034 ], [ -123.571627700999926, 48.580802988000059 ], [ -123.571857406999968, 48.580647805000069 ], [ -123.572235497999941, 48.580619313000092 ], [ -123.572468696, 48.580726091000081 ], [ -123.572861578999948, 48.580768799000097 ], [ -123.572973093999948, 48.580966808000014 ], [ -123.573108700999981, 48.580948291000055 ], [ -123.573201517000015, 48.580840003000063 ], [ -123.572819595999945, 48.580562296000032 ], [ -123.572679499999964, 48.580257499 ], [ -123.571938402999976, 48.579514088000117 ], [ -123.571290697999984, 48.578482992000076 ], [ -123.571030802999985, 48.578358991000059 ], [ -123.570661310000034, 48.577946773000079 ], [ -123.573606006999981, 48.578014066000016 ], [ -123.573420577999968, 48.581615823000121 ], [ -123.568012664999969, 48.581492178000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128368501", "BldgCostT": "89025001", "sL_LossRatio": "0.919674563684201", "sL_AssetLoss": "175031.48", "sL_BldgLoss": "160972", "sL_StrLoss": "107950.6", "sL_NStrLoss": "53021.4", "sL_ContLoss": "14059.48", "geom_point": "0101000020E610000055231EFDEDE65EC03591A17C24514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.598434667999982, 48.639070213000068 ], [ -123.598441888999901, 48.63892867900006 ], [ -123.593985717999942, 48.638827996000011 ], [ -123.593989515999951, 48.638753710000088 ], [ -123.593533004999955, 48.638743385000076 ], [ -123.593630145999924, 48.636843337000087 ], [ -123.59311920499999, 48.636831779000019 ], [ -123.593148528999933, 48.636258317000106 ], [ -123.593107137999937, 48.636257381000064 ], [ -123.593117403999941, 48.636056614000076 ], [ -123.592209017999963, 48.636036058000059 ], [ -123.592393225999956, 48.632434592000088 ], [ -123.59325421199999, 48.632454076000094 ], [ -123.593262799999948, 48.632286113000141 ], [ -123.59340672899998, 48.632289369000027 ], [ -123.59343001699996, 48.631833816000075 ], [ -123.594615268999945, 48.631860624000076 ], [ -123.594628582999974, 48.631600045000098 ], [ -123.595750095999961, 48.631625399000079 ], [ -123.595758645999965, 48.631457972000064 ], [ -123.596328409999941, 48.631470848000021 ], [ -123.596420820999953, 48.62966088200006 ], [ -123.598365456999971, 48.62970480700006 ], [ -123.598405683999886, 48.628916229000026 ], [ -123.598512727999946, 48.628918647000049 ], [ -123.598588557, 48.62743202900009 ], [ -123.604001824999926, 48.627554110000048 ], [ -123.60398911499999, 48.62780386200005 ], [ -123.604523422999975, 48.627815897000055 ], [ -123.604432982999953, 48.629593321000087 ], [ -123.605412595999965, 48.629615378 ], [ -123.605411948999986, 48.629628101000037 ], [ -123.605428870999944, 48.629628483000047 ], [ -123.605432369999932, 48.629559704000066 ], [ -123.61084589799998, 48.629681435000087 ], [ -123.610790854999976, 48.630766040000076 ], [ -123.614662826999975, 48.630852939000064 ], [ -123.61454417499999, 48.633194579000033 ], [ -123.614480329999978, 48.634454452000057 ], [ -123.61220672499995, 48.634403443000096 ], [ -123.612153096999975, 48.635460660000099 ], [ -123.615486574999977, 48.63553543000004 ], [ -123.615485149999955, 48.635563556000058 ], [ -123.61665219599999, 48.635589708000111 ], [ -123.61666800899998, 48.635277398000056 ], [ -123.618623373, 48.635321186000105 ], [ -123.618655762999978, 48.634680944000081 ], [ -123.619801828, 48.634706592000057 ], [ -123.619912977999903, 48.632508262000052 ], [ -123.619973696999949, 48.631307267000075 ], [ -123.621523437999954, 48.631341930000076 ], [ -123.621575789999923, 48.630305702000058 ], [ -123.624011866999979, 48.630360144000093 ], [ -123.62408076399997, 48.628994960000121 ], [ -123.629494275999932, 48.629115743000099 ], [ -123.629422227999925, 48.630546618000068 ], [ -123.62745036499993, 48.63141558600006 ], [ -123.62773026399995, 48.631972348000097 ], [ -123.627737082999943, 48.632429789000106 ], [ -123.62749524499992, 48.632676768000138 ], [ -123.62687671599997, 48.632662972000084 ], [ -123.626862239999923, 48.632950132000161 ], [ -123.626716285999962, 48.632825404000073 ], [ -123.623516098999957, 48.636278896000071 ], [ -123.622901835999954, 48.636828373000121 ], [ -123.622667151999934, 48.63716493200009 ], [ -123.622486099999918, 48.637420704000085 ], [ -123.622382215999934, 48.638432776000059 ], [ -123.622081463999976, 48.638430978000031 ], [ -123.622027157999923, 48.638430677000066 ], [ -123.621294774999981, 48.63842636600009 ], [ -123.621182619999942, 48.63842569400007 ], [ -123.620494384999944, 48.638420209000081 ], [ -123.619779374999951, 48.638414488000116 ], [ -123.619651731, 48.638413480000075 ], [ -123.618960739999949, 48.638407958000087 ], [ -123.618621189999914, 48.638405237000015 ], [ -123.618539526999939, 48.638404591000096 ], [ -123.618295001999954, 48.638402627000076 ], [ -123.617982887999986, 48.638400131000033 ], [ -123.617629800999964, 48.638397302000101 ], [ -123.617317407999948, 48.638394787000038 ], [ -123.616923854999953, 48.638391646000045 ], [ -123.616584357999926, 48.638388929000065 ], [ -123.61623153099994, 48.638386088000068 ], [ -123.616204148999984, 48.638385873000061 ], [ -123.614833573999988, 48.63837486000012 ], [ -123.614304629999936, 48.63837060000008 ], [ -123.612987246, 48.638360008000106 ], [ -123.612742722999954, 48.638358029000045 ], [ -123.610654507999982, 48.638341196000077 ], [ -123.609022491999951, 48.638335631000096 ], [ -123.608574614999952, 48.638334110000052 ], [ -123.606683612999973, 48.638479097000065 ], [ -123.605941898999944, 48.638486806000117 ], [ -123.604843325999965, 48.638473797000081 ], [ -123.602358813999956, 48.638444356000107 ], [ -123.601692771999979, 48.638436448000071 ], [ -123.599997791999925, 48.63841630200011 ], [ -123.59935829199999, 48.638408700000127 ], [ -123.599370082999926, 48.638795409000075 ], [ -123.599373382999914, 48.638903346000085 ], [ -123.599379100999954, 48.639091528000066 ], [ -123.598434667999982, 48.639070213000068 ] ], [ [ -123.603632489999981, 48.635581820000077 ], [ -123.603706383999963, 48.634130275000103 ], [ -123.605723163999983, 48.634175686000098 ], [ -123.605770662999973, 48.633241804000072 ], [ -123.604780607999913, 48.633219517000079 ], [ -123.604750109999912, 48.633818893000033 ], [ -123.602790890999941, 48.633774761000069 ], [ -123.602713311999963, 48.635298139000078 ], [ -123.60169807299998, 48.635275256000021 ], [ -123.601684689999956, 48.635537926000026 ], [ -123.603632489999981, 48.635581820000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17643917", "BldgCostT": "11671667", "sL_LossRatio": "0.70606904154684", "sL_AssetLoss": "130257.8", "sL_BldgLoss": "91971", "sL_StrLoss": "44551", "sL_NStrLoss": "47420", "sL_ContLoss": "38286.8", "geom_point": "0101000020E6100000E7C07AF594ED5EC001CF493138534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.700630039999936, 48.654332155000063 ], [ -123.700806023999959, 48.65073061500015 ], [ -123.701931681999952, 48.650754928000026 ], [ -123.701933980999982, 48.65070784100012 ], [ -123.707350186999918, 48.650824659000044 ], [ -123.707300083999954, 48.651853014000039 ], [ -123.707292448999965, 48.65200972000013 ], [ -123.707881541999953, 48.652022409000132 ], [ -123.709327300000012, 48.652053536999986 ], [ -123.70933902599991, 48.651812628000116 ], [ -123.711219100999969, 48.651853077000119 ], [ -123.711224854999983, 48.651734784000027 ], [ -123.711239122999984, 48.651441435000052 ], [ -123.710140966999973, 48.651417813000087 ], [ -123.71024400899999, 48.649300198000041 ], [ -123.710316211999967, 48.647816240000054 ], [ -123.71373943699993, 48.647889839000115 ], [ -123.715732105999976, 48.64793263100006 ], [ -123.715651749999921, 48.649588044000033 ], [ -123.715917927999953, 48.649593758000059 ], [ -123.715990471999945, 48.648099080000129 ], [ -123.717033108999956, 48.648121452000055 ], [ -123.71707137199995, 48.647332704000128 ], [ -123.719500902999982, 48.647384797000036 ], [ -123.719530105999965, 48.646782163000069 ], [ -123.722259226999967, 48.646840614000027 ], [ -123.722284121999976, 48.646326230000049 ], [ -123.727699874, 48.646442014000058 ], [ -123.727684046999968, 48.646769818000045 ], [ -123.727323512999973, 48.64679839000005 ], [ -123.72684260199999, 48.646876590000012 ], [ -123.726613192999963, 48.64691388800005 ], [ -123.726559619999975, 48.646930310000037 ], [ -123.726049236999955, 48.64708659000005 ], [ -123.725746506999897, 48.647179297000037 ], [ -123.725408100999957, 48.647309983000078 ], [ -123.725304426999912, 48.647381550000127 ], [ -123.725011974000026, 48.647583463000046 ], [ -123.724899126999929, 48.647661399000043 ], [ -123.724657182, 48.648036344000012 ], [ -123.724488912999945, 48.648297105000083 ], [ -123.72430419599999, 48.64841661300008 ], [ -123.724087215999987, 48.64847510500006 ], [ -123.723698082999945, 48.648476699000078 ], [ -123.723478202999942, 48.648455804000086 ], [ -123.722985865999959, 48.648284695000072 ], [ -123.722875706999957, 48.648246407000101 ], [ -123.722852758999949, 48.648241393000148 ], [ -123.722705939999983, 48.648209440000059 ], [ -123.722627593999903, 48.648192402000141 ], [ -123.722496142999944, 48.648183541000044 ], [ -123.722431679999971, 48.648179193000033 ], [ -123.722265279999988, 48.6482 ], [ -123.722199595999982, 48.648229177000069 ], [ -123.72216221199993, 48.648245749000054 ], [ -123.7221434099999, 48.648254088000058 ], [ -123.721957055999894, 48.648528564000102 ], [ -123.721781491999934, 48.648787192000093 ], [ -123.721526692999959, 48.64903770100004 ], [ -123.721506969999936, 48.649049417000036 ], [ -123.721225291999957, 48.649216892000069 ], [ -123.720587811999906, 48.649448384000067 ], [ -123.719902202999933, 48.649612208000093 ], [ -123.719375499999927, 48.649627989000123 ], [ -123.719119399999954, 48.649599099000092 ], [ -123.718622887999956, 48.649356798000106 ], [ -123.718206191999926, 48.649284711000099 ], [ -123.717796896999985, 48.649283206000042 ], [ -123.717427622999963, 48.649407700000047 ], [ -123.716487706999914, 48.64981121300012 ], [ -123.71575621, 48.650192109000031 ], [ -123.715485399, 48.650465708000105 ], [ -123.715210122999963, 48.650579708000109 ], [ -123.714898075999926, 48.650642399000041 ], [ -123.71455651399999, 48.650642201000053 ], [ -123.713826204999989, 48.650524690000047 ], [ -123.713629691999984, 48.650523201000091 ], [ -123.713442001, 48.650564198000012 ], [ -123.71328058899995, 48.650650914000046 ], [ -123.712849392999928, 48.651015700000102 ], [ -123.71220014799998, 48.651504195 ], [ -123.712051685999981, 48.651615900000102 ], [ -123.712006948999942, 48.651671575000137 ], [ -123.711888617999989, 48.651818802000051 ], [ -123.711856239999975, 48.651917932000117 ], [ -123.711824901999933, 48.652013994000079 ], [ -123.711550009999925, 48.652316310000067 ], [ -123.711237687999983, 48.652521402000055 ], [ -123.710813913999942, 48.652733991000019 ], [ -123.7103831, 48.652895987000086 ], [ -123.70945829599998, 48.653154602000072 ], [ -123.708619112999912, 48.653211395000056 ], [ -123.708164695999955, 48.653342945000077 ], [ -123.707381689999949, 48.65356961300008 ], [ -123.707045270999956, 48.653601092000024 ], [ -123.706597021, 48.65359410700006 ], [ -123.706175280999972, 48.653551277000062 ], [ -123.706079, 48.65354148600008 ], [ -123.705432896999966, 48.653420288000071 ], [ -123.704986907999981, 48.653421485000145 ], [ -123.704688418999964, 48.653482697000122 ], [ -123.703972128999979, 48.65376434800001 ], [ -123.703618899999924, 48.653903243000109 ], [ -123.703226083999979, 48.654057710000089 ], [ -123.702526259999971, 48.654373104000086 ], [ -123.700630039999936, 48.654332155000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.976481595679078", "sL_AssetLoss": "4702.7", "sL_BldgLoss": "4592.1", "sL_StrLoss": "4168", "sL_NStrLoss": "424.1", "sL_ContLoss": "110.6", "geom_point": "0101000020E61000005BA182A2FDEB5EC045A79D50BE514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684736835999914, 48.636760777000049 ], [ -123.690151394999958, 48.636878472000078 ], [ -123.689974647999946, 48.640480077000099 ], [ -123.684559676, 48.640362373000052 ], [ -123.684736835999914, 48.636760777000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.950204081632653", "sL_AssetLoss": "1837.5", "sL_BldgLoss": "1746", "sL_StrLoss": "1450", "sL_NStrLoss": "296", "sL_ContLoss": "91.5", "geom_point": "0101000020E61000001E49EE5510E95EC02732EF4827504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.641221703, 48.625632788000118 ], [ -123.641439892999969, 48.625605791000083 ], [ -123.641821909, 48.625746793000125 ], [ -123.642042894999975, 48.626051595000042 ], [ -123.642102981999983, 48.626545693000082 ], [ -123.64187519799999, 48.626799312000088 ], [ -123.641480714, 48.626720890000072 ], [ -123.6412193, 48.626389093000093 ], [ -123.641170295999942, 48.625759613000085 ], [ -123.641221703, 48.625632788000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.804305283757339", "sL_AssetLoss": "5110", "sL_BldgLoss": "4110", "sL_StrLoss": "2120", "sL_NStrLoss": "1990", "sL_ContLoss": "1000", "geom_point": "0101000020E6100000A3D04FC424E95EC08DD19DD4D5504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.642676890999923, 48.631140198000082 ], [ -123.643097099999949, 48.631110301000056 ], [ -123.64327372199989, 48.631181501000064 ], [ -123.643439293999919, 48.631388107000092 ], [ -123.64338891199999, 48.631711388000092 ], [ -123.643241702999916, 48.631820995000076 ], [ -123.642618509999977, 48.631967693000099 ], [ -123.642359398999986, 48.631833795000048 ], [ -123.6423408199999, 48.631420802000015 ], [ -123.642487905999985, 48.631221395000061 ], [ -123.642676890999923, 48.631140198000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96116705", "BldgCostT": "65077038", "sL_LossRatio": "0.860279289139119", "sL_AssetLoss": "281056.4", "sL_BldgLoss": "241787", "sL_StrLoss": "175948", "sL_NStrLoss": "65839", "sL_ContLoss": "39269.4", "geom_point": "0101000020E6100000CF833FEC1AE85EC01A413AA71F4E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.627472406999985, 48.638390366000117 ], [ -123.627793319999981, 48.63818475300009 ], [ -123.628029764999951, 48.638033230000133 ], [ -123.628159609999955, 48.637921761000086 ], [ -123.628302170999973, 48.637799383000129 ], [ -123.628737973999975, 48.637425245000053 ], [ -123.628807211999984, 48.637296289000105 ], [ -123.62891293399997, 48.637099259000081 ], [ -123.629169849999968, 48.636841780000097 ], [ -123.629489802999942, 48.636623555000085 ], [ -123.630090944999935, 48.636310654000077 ], [ -123.630763783999924, 48.636001134000033 ], [ -123.631336022999974, 48.635851519 ], [ -123.631685139999917, 48.635760245000021 ], [ -123.631885720999961, 48.635679070000094 ], [ -123.631945455999968, 48.635635552000132 ], [ -123.632345670999968, 48.635344071000084 ], [ -123.632603495999959, 48.635426144000114 ], [ -123.632822635999958, 48.635495930000062 ], [ -123.633542024999954, 48.635724907000082 ], [ -123.63381782099999, 48.635735860000096 ], [ -123.633907205999947, 48.635739401000144 ], [ -123.633979295999978, 48.635734463000112 ], [ -123.634105699999978, 48.635725814000097 ], [ -123.63433551, 48.635657006000024 ], [ -123.634604498999948, 48.635507014000012 ], [ -123.634890604999967, 48.635260985000073 ], [ -123.634927275999971, 48.635220252000046 ], [ -123.635163301999953, 48.634957905000128 ], [ -123.635292305999926, 48.634683987000066 ], [ -123.635332103999971, 48.634484796000017 ], [ -123.635296312999927, 48.632633407000071 ], [ -123.635430834999937, 48.631989037000075 ], [ -123.635440903999907, 48.631940795000062 ], [ -123.635402461999945, 48.631620844000054 ], [ -123.6353635, 48.631296408000075 ], [ -123.63520924, 48.630902549000083 ], [ -123.63514731099994, 48.63074438600011 ], [ -123.634954119999946, 48.630411109000086 ], [ -123.634763501999942, 48.630158092000052 ], [ -123.634534909999957, 48.629988892000021 ], [ -123.634238489999959, 48.62984077400003 ], [ -123.634204509999989, 48.62982380800004 ], [ -123.633890998999973, 48.629726703000124 ], [ -123.633733406999951, 48.629707883000023 ], [ -123.633504266, 48.629253816000094 ], [ -123.633424002999945, 48.629094746000085 ], [ -123.633384709, 48.629016895000085 ], [ -123.63330379099996, 48.6288112740001 ], [ -123.63313241699997, 48.628375803000083 ], [ -123.633128998999979, 48.628359007000036 ], [ -123.633103098999953, 48.628230896000026 ], [ -123.633138679999931, 48.628008102000074 ], [ -123.633258425999927, 48.62757633400004 ], [ -123.633293584999976, 48.627449669000057 ], [ -123.633376346999924, 48.627151245000071 ], [ -123.633459701999982, 48.626850706000013 ], [ -123.633443623999966, 48.626578588 ], [ -123.633443612999955, 48.626578095000113 ], [ -123.633340497999896, 48.626203488000087 ], [ -123.633152289999941, 48.625769407000078 ], [ -123.633001993999954, 48.625526193000063 ], [ -123.632986709999955, 48.625021101000129 ], [ -123.632898680999944, 48.624805491000146 ], [ -123.632714004999926, 48.624517491000063 ], [ -123.632663881000028, 48.624465420000043 ], [ -123.632295599999949, 48.62408270800006 ], [ -123.632063288999944, 48.623933309000073 ], [ -123.631597815999925, 48.623733594000093 ], [ -123.631057597999984, 48.6233763910001 ], [ -123.630792228999937, 48.623125409000032 ], [ -123.630452394999949, 48.622804014000074 ], [ -123.630364157999963, 48.622668382000057 ], [ -123.630094614999976, 48.622254061000021 ], [ -123.62993801099999, 48.622013371000058 ], [ -123.629195017999947, 48.620871292000089 ], [ -123.62910580399992, 48.620651211000123 ], [ -123.628964092999922, 48.620021494000071 ], [ -123.62876646299999, 48.61967600500008 ], [ -123.62842880699999, 48.61908568300003 ], [ -123.628174325999936, 48.618812307000049 ], [ -123.627561785999958, 48.618414592000171 ], [ -123.627294309999968, 48.618158893000043 ], [ -123.627096802999972, 48.617911089000046 ], [ -123.627014534999958, 48.617749255000014 ], [ -123.626951480999935, 48.617625243000063 ], [ -123.626923009, 48.617569203000059 ], [ -123.626914994999979, 48.617525492000098 ], [ -123.626870610999958, 48.617282894 ], [ -123.62680408499989, 48.616919401000111 ], [ -123.626815110999985, 48.616753696000032 ], [ -123.626860499999935, 48.616470800000037 ], [ -123.627014101000015, 48.616040152000011 ], [ -123.627062405999979, 48.615904712000024 ], [ -123.627103000999924, 48.615692018000033 ], [ -123.627088885, 48.615500573000048 ], [ -123.627072395999974, 48.615276614000081 ], [ -123.622835038999966, 48.615335842000057 ], [ -123.62282201, 48.61533602300009 ], [ -123.622927089999948, 48.614949065000097 ], [ -123.623471461999969, 48.614200809000131 ], [ -123.623261215999932, 48.612720130000071 ], [ -123.623559425999957, 48.612152756000086 ], [ -123.624523128999925, 48.611124002000054 ], [ -123.62478854799997, 48.610637616000098 ], [ -123.624800721999975, 48.61029065000011 ], [ -123.624802349, 48.610243015000044 ], [ -123.624786173999922, 48.609816362000103 ], [ -123.624158838, 48.608968752000116 ], [ -123.623543186999882, 48.608519860000094 ], [ -123.623807056999951, 48.608525757000109 ], [ -123.623833938999951, 48.607992890000091 ], [ -123.624323339999989, 48.608003827000054 ], [ -123.624355453999925, 48.607367101000143 ], [ -123.626425451999978, 48.607413335000039 ], [ -123.626428645999965, 48.607349964000029 ], [ -123.625889467, 48.607337925000074 ], [ -123.625907776999938, 48.606974675000089 ], [ -123.625757683999922, 48.606971323000053 ], [ -123.625778247000014, 48.60656335700002 ], [ -123.62566920499998, 48.606560922000078 ], [ -123.625688129999929, 48.606185479000068 ], [ -123.62222690599999, 48.606108133000085 ], [ -123.622271287999936, 48.605228899000068 ], [ -123.621682138999986, 48.605215721000043 ], [ -123.621694259999913, 48.604975625000073 ], [ -123.621336139999968, 48.604967613000021 ], [ -123.621344445999966, 48.604803117000067 ], [ -123.620740327999968, 48.60478959700005 ], [ -123.620762528999961, 48.60435007100012 ], [ -123.620307539, 48.604339888000041 ], [ -123.620323319999926, 48.604027511000027 ], [ -123.619969044999934, 48.60401958000012 ], [ -123.619980716999933, 48.603788556000069 ], [ -123.619682828999927, 48.603781885000096 ], [ -123.619223070999908, 48.60210059100006 ], [ -123.61875922499999, 48.601420375000075 ], [ -123.618535817999941, 48.601231272000028 ], [ -123.618699596999946, 48.597991232000055 ], [ -123.618710998999973, 48.597991488000019 ], [ -123.618715521999917, 48.597901987000114 ], [ -123.618593856999951, 48.597899261000066 ], [ -123.618623542999913, 48.59731195200002 ], [ -123.618418485999896, 48.597307357000055 ], [ -123.618485155999906, 48.59598842700008 ], [ -123.6186005389999, 48.593705617000097 ], [ -123.621866765999954, 48.593778751000052 ], [ -123.624009984999972, 48.593826685000089 ], [ -123.623980367999977, 48.594413999000011 ], [ -123.624185413999982, 48.594418583000028 ], [ -123.624143600999943, 48.595247764000121 ], [ -123.62426526099992, 48.595250483000029 ], [ -123.624258292999954, 48.595388662000047 ], [ -123.624375267999966, 48.595391276000093 ], [ -123.624389406999924, 48.595535007000137 ], [ -123.624227986999955, 48.595661804000038 ], [ -123.623916975999947, 48.595644696000093 ], [ -123.623491820999973, 48.59531430100008 ], [ -123.62304530599999, 48.595334201000057 ], [ -123.622762495999964, 48.595480889000079 ], [ -123.622656304999964, 48.59568740000006 ], [ -123.622712618999913, 48.595839802000093 ], [ -123.62282262299999, 48.595987821000101 ], [ -123.623305393999942, 48.596637415000011 ], [ -123.623390808999943, 48.596933599000053 ], [ -123.623344214999989, 48.597581595000072 ], [ -123.622835712999944, 48.598223899000118 ], [ -123.622869494999975, 48.598646905000081 ], [ -123.623216599999949, 48.599310603000056 ], [ -123.623344316, 48.599794803000123 ], [ -123.624406694999962, 48.60128308700012 ], [ -123.624375806999964, 48.60199379400008 ], [ -123.62449839099996, 48.602173194000038 ], [ -123.625002305999928, 48.602341301000067 ], [ -123.626020995999966, 48.602479502000044 ], [ -123.626389992999947, 48.602657487000037 ], [ -123.626720203999938, 48.602925187000103 ], [ -123.626913403999964, 48.603239993000059 ], [ -123.627069291999987, 48.603851014000057 ], [ -123.627331001999963, 48.604181396000094 ], [ -123.627885095999957, 48.604034695000081 ], [ -123.628591502999967, 48.604094511000042 ], [ -123.629213806999942, 48.604927682000081 ], [ -123.629327321999966, 48.605332105000087 ], [ -123.629987076999925, 48.606163896000098 ], [ -123.630265884999972, 48.606685205000105 ], [ -123.630412611999986, 48.607592401000055 ], [ -123.63033581400002, 48.607889994000033 ], [ -123.630403491999985, 48.608015394000127 ], [ -123.630677823999946, 48.608103703000069 ], [ -123.630669385999923, 48.608518092000082 ], [ -123.63045641099994, 48.608951097000059 ], [ -123.62962631399995, 48.609863994000115 ], [ -123.629225003999949, 48.610190103000029 ], [ -123.628994689999971, 48.610227210000062 ], [ -123.628806011999956, 48.61036389700007 ], [ -123.628263207999979, 48.611544586 ], [ -123.627380901, 48.612484504000072 ], [ -123.627267889000024, 48.612728929000127 ], [ -123.626996994999971, 48.613314807000073 ], [ -123.626979989999967, 48.614125213000101 ], [ -123.627049916999951, 48.61434030600001 ], [ -123.627214476999939, 48.614428596000081 ], [ -123.627526184999979, 48.614437107000093 ], [ -123.62799779199996, 48.614190709000056 ], [ -123.62821461599999, 48.614162200000123 ], [ -123.628801811999921, 48.614402893000033 ], [ -123.62965838300002, 48.61452400100012 ], [ -123.630823084, 48.614454194000068 ], [ -123.631150889999944, 48.614588112000035 ], [ -123.631480182999951, 48.614891397000086 ], [ -123.632326601000017, 48.616416801000028 ], [ -123.632794701999941, 48.61795209100012 ], [ -123.63259031, 48.619005997 ], [ -123.63208331099996, 48.619683907000102 ], [ -123.632062497999939, 48.620142511000061 ], [ -123.631808601999936, 48.620467199000046 ], [ -123.632054191999913, 48.620556905000058 ], [ -123.632730903999942, 48.620534193000069 ], [ -123.633962020999888, 48.620132500000111 ], [ -123.634433614999963, 48.620670297000125 ], [ -123.63478628699994, 48.621072491000142 ], [ -123.634946, 48.621898487000088 ], [ -123.634861951999966, 48.622020855000116 ], [ -123.634585898999944, 48.622422694000122 ], [ -123.634181984999941, 48.622686098000074 ], [ -123.634118597999944, 48.62291970900003 ], [ -123.634598990999962, 48.623439495000092 ], [ -123.634617992999935, 48.623825497000055 ], [ -123.634512009, 48.623960800000098 ], [ -123.634131086999943, 48.624034894000026 ], [ -123.634054404999972, 48.62433249300009 ], [ -123.634534908999967, 48.62483380700008 ], [ -123.634718690999975, 48.625345094000075 ], [ -123.635351613, 48.626053001000116 ], [ -123.635356091999967, 48.626322099000092 ], [ -123.635265501999939, 48.626541619000065 ], [ -123.635143910999972, 48.626836293000089 ], [ -123.635905383999926, 48.627957092000081 ], [ -123.635962579999898, 48.628261896000012 ], [ -123.63588369199999, 48.628451289000068 ], [ -123.636232703999951, 48.629214704000063 ], [ -123.636230988999969, 48.629408832000124 ], [ -123.63622682099999, 48.629879803000058 ], [ -123.63568562099999, 48.629884105000045 ], [ -123.635248409999974, 48.629760195000131 ], [ -123.635032519999967, 48.6298058040001 ], [ -123.635033790999927, 48.629968104000135 ], [ -123.635324112999967, 48.630298488000044 ], [ -123.635663788000031, 48.63149339700005 ], [ -123.635537208999949, 48.634381806000079 ], [ -123.635195991999964, 48.635337399000015 ], [ -123.634632583999931, 48.635773195000041 ], [ -123.634172394999979, 48.635909906000066 ], [ -123.633589603999937, 48.635922692000072 ], [ -123.632744395999921, 48.635747595000069 ], [ -123.632216117000013, 48.635740399000106 ], [ -123.631579792999986, 48.635969715000023 ], [ -123.630435308999935, 48.636696108000137 ], [ -123.629690390999954, 48.636825698000095 ], [ -123.628994706999919, 48.637603292000023 ], [ -123.628456297999961, 48.638010607000076 ], [ -123.628444598999963, 48.638154504000042 ], [ -123.628580914999986, 48.638217101000059 ], [ -123.629420989999971, 48.638041993000087 ], [ -123.629885749999957, 48.6381158800001 ], [ -123.629885696999935, 48.638115890000044 ], [ -123.628953455999948, 48.638316021000037 ], [ -123.62837107199999, 48.638310613000051 ], [ -123.627406343999951, 48.638411792000078 ], [ -123.627472406999985, 48.638390366000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131607632", "BldgCostT": "88059491", "sL_LossRatio": "0.778398847283783", "sL_AssetLoss": "824348.6", "sL_BldgLoss": "641672", "sL_StrLoss": "358327", "sL_NStrLoss": "283345", "sL_ContLoss": "182676.6", "geom_point": "0101000020E61000001D9062254BE95EC06F6AA0F91C504840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.651801411999912, 48.646175601000095 ], [ -123.651158893999977, 48.645801097000096 ], [ -123.651128406999987, 48.645702301000043 ], [ -123.651085101999968, 48.645442193000086 ], [ -123.651229576999967, 48.644957852000054 ], [ -123.651254618999943, 48.644873903000075 ], [ -123.651222316999949, 48.644559098000087 ], [ -123.650602984999949, 48.643807197000115 ], [ -123.649990368999966, 48.643428746000062 ], [ -123.649998204999989, 48.643271806000065 ], [ -123.649787862999943, 48.643267160000065 ], [ -123.649517215999964, 48.642824508000018 ], [ -123.649345500999985, 48.639964585000016 ], [ -123.648968902999968, 48.63914721000004 ], [ -123.649187000999973, 48.638138802000107 ], [ -123.649128391999938, 48.637851099000088 ], [ -123.648360100000019, 48.637280004000083 ], [ -123.647899098999929, 48.637245798000116 ], [ -123.64738369599999, 48.637392504000118 ], [ -123.646256312999967, 48.637183189000027 ], [ -123.64518079799997, 48.635992493000039 ], [ -123.644868542999973, 48.635093938000118 ], [ -123.644744299999942, 48.634736406000108 ], [ -123.644831284999981, 48.634150991000055 ], [ -123.645079306999918, 48.633240985000043 ], [ -123.644852287999953, 48.632575905000103 ], [ -123.644777292999919, 48.631893713000082 ], [ -123.644885213999927, 48.63080410400007 ], [ -123.645018401999906, 48.630569088000094 ], [ -123.645710481999927, 48.630583396000105 ], [ -123.64584269099997, 48.630402514000075 ], [ -123.645757992999975, 48.63017889600011 ], [ -123.64529241599999, 48.629748794000072 ], [ -123.644870695999927, 48.628572410000082 ], [ -123.6443121, 48.628539599000057 ], [ -123.644120997999892, 48.628459908000096 ], [ -123.64387431599998, 48.6281921040001 ], [ -123.64381938799994, 48.627979331000091 ], [ -123.643788295999911, 48.627858897000053 ], [ -123.64323528099996, 48.627034300000105 ], [ -123.643382501999952, 48.626853398000016 ], [ -123.643910396999942, 48.626823513000055 ], [ -123.644028715999951, 48.626535805000053 ], [ -123.643754497999936, 48.626312194000135 ], [ -123.642486206999962, 48.625798006000075 ], [ -123.64223991899992, 48.625627102000088 ], [ -123.642086919999912, 48.625376502000066 ], [ -123.641568001999971, 48.625020407000065 ], [ -123.641023785, 48.624906490000114 ], [ -123.640737399999978, 48.624764092000113 ], [ -123.640209405999954, 48.624865202000095 ], [ -123.640017885999924, 48.624812494000039 ], [ -123.639860216999963, 48.624076202000069 ], [ -123.640012277999986, 48.62333699800017 ], [ -123.63990949, 48.622707496000025 ], [ -123.639759802999947, 48.622582199000085 ], [ -123.639187083999985, 48.622405590000042 ], [ -123.63911601199996, 48.622226105000088 ], [ -123.639179191999943, 48.621776107000059 ], [ -123.63908218, 48.621596595000071 ], [ -123.638863304000012, 48.621553905000155 ], [ -123.638566302999948, 48.621699197000055 ], [ -123.638283297999976, 48.6217006010001 ], [ -123.638037117999914, 48.621548194000034 ], [ -123.637952005, 48.621333107000098 ], [ -123.638167092999979, 48.621098091000079 ], [ -123.637695192999942, 48.620398902000076 ], [ -123.637691805999907, 48.620146799000132 ], [ -123.637755813999973, 48.619796402000119 ], [ -123.638185299, 48.619316507000079 ], [ -123.638630693999957, 48.619223908000031 ], [ -123.639175390999981, 48.619329302000068 ], [ -123.639633614999966, 48.619038696000132 ], [ -123.63963515099999, 48.618884418000043 ], [ -123.63963880099999, 48.618517504000089 ], [ -123.6399956019999, 48.617759790000065 ], [ -123.640357994999945, 48.617433703000046 ], [ -123.641033697999902, 48.617214295000039 ], [ -123.641468398999947, 48.617211497000042 ], [ -123.642365908999935, 48.61742228500006 ], [ -123.642872502, 48.617788291000075 ], [ -123.643287295999968, 48.618362203000103 ], [ -123.643984200999952, 48.618637104000108 ], [ -123.644595608999936, 48.618724001000096 ], [ -123.644795478999981, 48.618560192000125 ], [ -123.644808284999939, 48.618362191000067 ], [ -123.644491204999895, 48.617977703000115 ], [ -123.644528209999919, 48.617752709000101 ], [ -123.644839094999952, 48.617643014000073 ], [ -123.644864106999961, 48.617524797 ], [ -123.64415911, 48.616512199000063 ], [ -123.644004101999926, 48.61599240700005 ], [ -123.643535606999961, 48.615436889000144 ], [ -123.642951306999919, 48.614316104000089 ], [ -123.642821192999975, 48.613749202000129 ], [ -123.64299268799999, 48.613272100000131 ], [ -123.642759001999977, 48.61296728700006 ], [ -123.64245759399995, 48.612896095000046 ], [ -123.642335086999964, 48.612772201000041 ], [ -123.642450905999965, 48.612320688000075 ], [ -123.642706885999971, 48.612085692000043 ], [ -123.642727907999983, 48.611735409000083 ], [ -123.642619594999971, 48.611654195000057 ], [ -123.64240270499999, 48.611664210000136 ], [ -123.64234720599994, 48.611547400000092 ], [ -123.642440492, 48.611449110000052 ], [ -123.642603992999966, 48.611501788000126 ], [ -123.642807796999961, 48.611473304000071 ], [ -123.642819495, 48.611400710000062 ], [ -123.642853572000021, 48.611035913000094 ], [ -123.642879092999976, 48.610762710000067 ], [ -123.642672904999984, 48.610466393000067 ], [ -123.642451783999931, 48.610207194000026 ], [ -123.641782296999963, 48.609832613000059 ], [ -123.64139531799999, 48.609285800000045 ], [ -123.641025083999921, 48.608963897000109 ], [ -123.640740384999987, 48.607895701000125 ], [ -123.640118886999986, 48.607116708000092 ], [ -123.639996794999931, 48.607108112000084 ], [ -123.63963411099995, 48.607397205000076 ], [ -123.63948519899999, 48.607371601000111 ], [ -123.638481803999966, 48.606235110000078 ], [ -123.638029691, 48.605894715000076 ], [ -123.637647309, 48.605762296000101 ], [ -123.637364893999958, 48.605934601000065 ], [ -123.637173892999925, 48.605944596000064 ], [ -123.636282114999972, 48.605122799000064 ], [ -123.636077793, 48.605070106000056 ], [ -123.63580771, 48.60516120100008 ], [ -123.635604192999963, 48.605125604000079 ], [ -123.63528700899991, 48.604678410000083 ], [ -123.635014800999926, 48.604590109000071 ], [ -123.634375201999973, 48.603342501000043 ], [ -123.634073920999981, 48.603091899000091 ], [ -123.633408504999977, 48.603050611000128 ], [ -123.632800208, 48.603171581000019 ], [ -123.632567187999939, 48.603108992000081 ], [ -123.632306993999961, 48.6028953040001 ], [ -123.63195949499999, 48.602213095000067 ], [ -123.631215678999936, 48.601344397000055 ], [ -123.630924278999899, 48.600751893000059 ], [ -123.630247996999927, 48.599874612000086 ], [ -123.629331697999973, 48.599178095000127 ], [ -123.62910286499999, 48.598614544000064 ], [ -123.628996298999965, 48.59835209300013 ], [ -123.628570908999976, 48.598003193000068 ], [ -123.628397408999959, 48.597221308000023 ], [ -123.628514615999933, 48.596727092000101 ], [ -123.62845019099997, 48.595916704000061 ], [ -123.628300199999941, 48.595818412000035 ], [ -123.62775510099999, 48.595714485000052 ], [ -123.627426589, 48.59536549500006 ], [ -123.626449197999989, 48.595342697000021 ], [ -123.625892712999985, 48.595247295000064 ], [ -123.625350106999974, 48.595295687000025 ], [ -123.624996793999941, 48.595198893000095 ], [ -123.624736085999956, 48.594975299000033 ], [ -123.624506534999981, 48.594939979000067 ], [ -123.624590126999976, 48.593281963000109 ], [ -123.625520443999932, 48.593302752000035 ], [ -123.625533200999953, 48.593049585000095 ], [ -123.629414290999961, 48.593136224000027 ], [ -123.629426785999911, 48.593151096000042 ], [ -123.629722595999937, 48.594000597000068 ], [ -123.629938911999957, 48.594140604000046 ], [ -123.630532742999947, 48.594744703000082 ], [ -123.630901097999981, 48.595119394000079 ], [ -123.631082711999966, 48.595411900000101 ], [ -123.631284099999974, 48.595849991000129 ], [ -123.631353109999964, 48.596092190000064 ], [ -123.631381117000018, 48.59639659500003 ], [ -123.631484515999944, 48.596628808000112 ], [ -123.631798701999969, 48.597328094000034 ], [ -123.632050322999973, 48.597688403000092 ], [ -123.632105598999942, 48.597767609000094 ], [ -123.632484108999947, 48.598103280000075 ], [ -123.63301890799994, 48.598427983000121 ], [ -123.633152585999966, 48.598543692000128 ], [ -123.633154323999975, 48.598547360000083 ], [ -123.63321980399995, 48.598687603000023 ], [ -123.633555842999968, 48.59999944400009 ], [ -123.633698700999915, 48.600557010000038 ], [ -123.633741873999938, 48.600655882000048 ], [ -123.633842008999949, 48.60086251600007 ], [ -123.633939555999987, 48.601068890000079 ], [ -123.633982625999963, 48.601257571000126 ], [ -123.634072485, 48.60136611300004 ], [ -123.63407900199999, 48.601373983000094 ], [ -123.634120608999936, 48.601445719000026 ], [ -123.634148752, 48.601526535000119 ], [ -123.634244968999965, 48.601656624000036 ], [ -123.634285511999963, 48.601678861000025 ], [ -123.634467254999933, 48.602003923000026 ], [ -123.634513582999944, 48.602086809000085 ], [ -123.63475087599997, 48.602511264000043 ], [ -123.634992964999952, 48.602944330000106 ], [ -123.635007087999966, 48.602969584000029 ], [ -123.63512954, 48.603188604000046 ], [ -123.635325550999937, 48.603539133 ], [ -123.635575879999962, 48.603812410000096 ], [ -123.635904640999968, 48.604061311000116 ], [ -123.636341135999956, 48.604175287000032 ], [ -123.636353759999949, 48.604178581000035 ], [ -123.637391380999958, 48.604684810000045 ], [ -123.637748069999986, 48.604971271000132 ], [ -123.63825818499997, 48.60546578200006 ], [ -123.63848758499995, 48.605562817000092 ], [ -123.640850109, 48.60616965300008 ], [ -123.641151738999937, 48.606321030000075 ], [ -123.641517253999922, 48.606504464000061 ], [ -123.641593976999943, 48.606548591000092 ], [ -123.641645992999912, 48.60658593600003 ], [ -123.641728286999978, 48.606657448000114 ], [ -123.641783246999964, 48.606711116000021 ], [ -123.64181072099997, 48.606737969000093 ], [ -123.641934849999984, 48.606899199000097 ], [ -123.642058411999955, 48.607015452000041 ], [ -123.64208645399998, 48.607087281000091 ], [ -123.642128042999971, 48.607159027000144 ], [ -123.642130792999978, 48.607374914000111 ], [ -123.64216044799997, 48.607572675000029 ], [ -123.642202942, 48.607716370000063 ], [ -123.64227303399997, 48.607895902000081 ], [ -123.642274525999952, 48.608012849000019 ], [ -123.642303735999988, 48.608174620000078 ], [ -123.642387966999962, 48.608399070000061 ], [ -123.642390025999973, 48.608560994000115 ], [ -123.642406202999936, 48.608767814000096 ], [ -123.642313637999962, 48.608957261000057 ], [ -123.642302905999912, 48.609182207000131 ], [ -123.642359130999978, 48.609334817000025 ], [ -123.642347746, 48.609505845000072 ], [ -123.642375983999955, 48.609595635000083 ], [ -123.642390367999951, 48.609658525000015 ], [ -123.642431729999956, 48.609712266000088 ], [ -123.642487617999947, 48.609837906000074 ], [ -123.642557291999964, 48.609981470000058 ], [ -123.642585068999935, 48.610035304000149 ], [ -123.642695215999979, 48.610160626 ], [ -123.64270889, 48.610169530000093 ], [ -123.642928334999937, 48.610357236 ], [ -123.642997655, 48.610473807000083 ], [ -123.643039140999946, 48.610536533000051 ], [ -123.643094218999963, 48.610599223000051 ], [ -123.643121674999975, 48.61062605200005 ], [ -123.643135706999956, 48.610661949000082 ], [ -123.643204424999951, 48.610733554000056 ], [ -123.643218807999958, 48.610796445000069 ], [ -123.64323283899995, 48.610832342000087 ], [ -123.643272274999973, 48.610944999000075 ], [ -123.643291090999952, 48.611011723000082 ], [ -123.643303635, 48.611065840000037 ], [ -123.643306141999972, 48.61126375700006 ], [ -123.643321968999928, 48.611443586000078 ], [ -123.643322323999925, 48.611470579000112 ], [ -123.643338202999956, 48.61165041800011 ], [ -123.64331367799997, 48.6118574770001 ], [ -123.643328064999949, 48.611920367000089 ], [ -123.643371013999982, 48.612100054000045 ], [ -123.643372630999963, 48.612225990000042 ], [ -123.6433732, 48.612270968000182 ], [ -123.64336240199998, 48.612486940000046 ], [ -123.643419293999969, 48.612693528000129 ], [ -123.643434907000014, 48.612855371000087 ], [ -123.643434996999957, 48.612864371000114 ], [ -123.643477431999941, 48.612999090000102 ], [ -123.643506295999941, 48.61313387100008 ], [ -123.643506721999941, 48.613169841000079 ], [ -123.64353651, 48.61337659200013 ], [ -123.643537294999987, 48.613439554000074 ], [ -123.64351084799992, 48.613493696000091 ], [ -123.643404920999927, 48.613701191000054 ], [ -123.643339505999961, 48.613890490000067 ], [ -123.643313964999891, 48.614016579000065 ], [ -123.643328442999945, 48.61408846900018 ], [ -123.643357092999963, 48.614205264000077 ], [ -123.643371214999945, 48.614250161000058 ], [ -123.643399385999928, 48.614330977000044 ], [ -123.643428339999957, 48.614474757000011 ], [ -123.643498926999953, 48.614690272000054 ], [ -123.643540633999962, 48.614770984000046 ], [ -123.643623513999941, 48.614887474000049 ], [ -123.643637440999939, 48.614914408000097 ], [ -123.643693644, 48.615067033000074 ], [ -123.643872993999963, 48.615299919000094 ], [ -123.643928201999984, 48.615371595000035 ], [ -123.64402452799996, 48.615478983000045 ], [ -123.64406682399995, 48.615604696000098 ], [ -123.644080608999957, 48.615622622000082 ], [ -123.644136155999931, 48.615721269000019 ], [ -123.644149850999938, 48.615730196000072 ], [ -123.644273891999916, 48.615882442000057 ], [ -123.644356990999967, 48.616016918000071 ], [ -123.644426321999958, 48.61613349000006 ], [ -123.64448172699997, 48.616223128000122 ], [ -123.644592786999965, 48.616420435000101 ], [ -123.644703618, 48.616599736000083 ], [ -123.64484192899999, 48.616805888000044 ], [ -123.644939065999921, 48.616976260000087 ], [ -123.645090628999952, 48.617155346000068 ], [ -123.6453780639999, 48.617351636000144 ], [ -123.645406904999959, 48.617486431000032 ], [ -123.645449206999956, 48.617612143000024 ], [ -123.645504633999963, 48.617701805000074 ], [ -123.645560041999929, 48.617791442000119 ], [ -123.645587985999967, 48.617854252000036 ], [ -123.645601683999971, 48.617863180000015 ], [ -123.645644986999983, 48.618069841000093 ], [ -123.64567295099998, 48.618132674000044 ], [ -123.645728593999962, 48.618240318000041 ], [ -123.645770326999966, 48.618321055000131 ], [ -123.645770663999883, 48.618348024000106 ], [ -123.645808477999978, 48.61851160500008 ], [ -123.64584700799999, 48.61863888900006 ], [ -123.645883022999968, 48.618710967000084 ], [ -123.645953131999931, 48.618823813000034 ], [ -123.646036026999951, 48.618940304000063 ], [ -123.646078118, 48.619048032000123 ], [ -123.646106277999934, 48.61912882600005 ], [ -123.64614779899992, 48.619191576000084 ], [ -123.646191033999941, 48.619389262000041 ], [ -123.646205283999976, 48.61944314600003 ], [ -123.646275663999972, 48.619640656000058 ], [ -123.646318183999966, 48.619784354000053 ], [ -123.64630670399994, 48.619946368000051 ], [ -123.646349671999971, 48.62012605900005 ], [ -123.646392014999961, 48.620251761000077 ], [ -123.646407518999951, 48.620404625000063 ], [ -123.646395571999975, 48.620530624000097 ], [ -123.646424665999959, 48.620683390000067 ], [ -123.646508352999945, 48.620862847000041 ], [ -123.646564143999939, 48.620979502000118 ], [ -123.646579415999938, 48.621114358000121 ], [ -123.646703962999979, 48.621302585000088 ], [ -123.646800543999973, 48.621427980000142 ], [ -123.646911272999958, 48.621598294000087 ], [ -123.646994872000022, 48.621768750000072 ], [ -123.64702314499999, 48.621858567000082 ], [ -123.647011649999968, 48.622020559000056 ], [ -123.647012222999976, 48.622065539000069 ], [ -123.647014995999925, 48.622281438000094 ], [ -123.647002354999969, 48.622353471000018 ], [ -123.647026674999978, 48.62244053400007 ], [ -123.647001175999904, 48.62295078799999 ], [ -123.646388058999918, 48.622937221000079 ], [ -123.646375456999962, 48.623189325000091 ], [ -123.647296815999937, 48.623209711000058 ], [ -123.647312595999921, 48.623269340000036 ], [ -123.6473406369999, 48.623341148000051 ], [ -123.647464620999983, 48.623484397000027 ], [ -123.647547654999983, 48.623609874000081 ], [ -123.647561443999976, 48.623627799000033 ], [ -123.647712989999931, 48.62380687500012 ], [ -123.647754283000026, 48.623851617000071 ], [ -123.647796722999956, 48.623986319000018 ], [ -123.647839950999938, 48.624183986000048 ], [ -123.647842247999947, 48.624363904000049 ], [ -123.647857543999933, 48.62449878400006 ], [ -123.647852694999941, 48.624614501000053 ], [ -123.647858499999984, 48.625020580000147 ], [ -123.647870606999916, 48.625866112000047 ], [ -123.647873487999959, 48.626068913000069 ], [ -123.647961399999986, 48.626499152000115 ], [ -123.64797688699997, 48.626575096000103 ], [ -123.648017578999941, 48.626682344000088 ], [ -123.648485672999954, 48.627915901000051 ], [ -123.648534593999955, 48.628027625000058 ], [ -123.648582816999934, 48.628147174000084 ], [ -123.648653094999972, 48.628335701000054 ], [ -123.648667351999961, 48.628389586000019 ], [ -123.648764763999935, 48.628577971000034 ], [ -123.648841143999931, 48.628718753000072 ], [ -123.648862068999975, 48.628757335000032 ], [ -123.64891875699999, 48.628945958000017 ], [ -123.648946840999926, 48.629017755000092 ], [ -123.64897479699999, 48.629080566000056 ], [ -123.649084495999986, 48.629169920000081 ], [ -123.649127304999979, 48.62933161900002 ], [ -123.649143289000023, 48.629520445000075 ], [ -123.649172271999973, 48.629664232000046 ], [ -123.649214488999945, 48.62978092700012 ], [ -123.64932537199999, 48.629960231000055 ], [ -123.649341807999946, 48.630185052000066 ], [ -123.649356424999937, 48.630265932000093 ], [ -123.649413278999944, 48.63046353100011 ], [ -123.649455460999931, 48.630580238000093 ], [ -123.649548548999931, 48.630738185000013 ], [ -123.649269800999946, 48.630732025000093 ], [ -123.649264616999957, 48.630835859000058 ], [ -123.649595617999964, 48.630843173000059 ], [ -123.649622593999979, 48.630912172000116 ], [ -123.649664328, 48.630992887000083 ], [ -123.649675295999927, 48.631012113000068 ], [ -123.649650066999939, 48.631517455000086 ], [ -123.649939095999954, 48.631523840000042 ], [ -123.649957189999924, 48.631602990000033 ], [ -123.650081640999971, 48.6317822110001 ], [ -123.650151230999981, 48.631916773000086 ], [ -123.650221629999947, 48.632114266000059 ], [ -123.650278331, 48.632302890000119 ], [ -123.650362541999982, 48.632518332000089 ], [ -123.65044639599995, 48.632706779000031 ], [ -123.650474574999947, 48.632787577000052 ], [ -123.650488978999959, 48.632850470000065 ], [ -123.650489678999975, 48.632904439000107 ], [ -123.650477833999929, 48.633039442000062 ], [ -123.650492204999964, 48.633102350000087 ], [ -123.650548344999947, 48.633245959000078 ], [ -123.650548456999928, 48.633254982000061 ], [ -123.650564120999917, 48.633416802000056 ], [ -123.650566066999929, 48.633569733000087 ], [ -123.650595308999982, 48.633731494000109 ], [ -123.650624426999968, 48.63388426900007 ], [ -123.650632707999947, 48.633980100000088 ], [ -123.650626249999945, 48.634028213000114 ], [ -123.650626951999968, 48.634082181000061 ], [ -123.650602248999931, 48.634271238000075 ], [ -123.650576625, 48.634388339000026 ], [ -123.650563591999983, 48.634433393000037 ], [ -123.650538670999978, 48.634604464000105 ], [ -123.65044631799999, 48.634811889000048 ], [ -123.65044646199999, 48.634820899000019 ], [ -123.650418544999951, 48.634876746000067 ], [ -123.650306775999979, 48.635025690000113 ], [ -123.650281947999957, 48.635096584000053 ], [ -123.650243549999956, 48.635158765000085 ], [ -123.650195614999973, 48.63537107700003 ], [ -123.650182631999925, 48.635416142000103 ], [ -123.650157080999975, 48.635542220000048 ], [ -123.650104770999988, 48.63569546100004 ], [ -123.650080281999948, 48.635902506000086 ], [ -123.650068666999957, 48.636055520000042 ], [ -123.650004981999956, 48.636240412000092 ], [ -123.649958896999962, 48.636383917000067 ], [ -123.649940111999939, 48.636614004000116 ], [ -123.649888592999957, 48.636830216000078 ], [ -123.649863397999965, 48.63698329000011 ], [ -123.649825346999961, 48.637190417000106 ], [ -123.649800547999916, 48.637370477000111 ], [ -123.649776290999938, 48.637595531000073 ], [ -123.649709427999952, 48.637676867000074 ], [ -123.649696082999967, 48.637694937000077 ], [ -123.649684842999974, 48.637874912000058 ], [ -123.649685870999988, 48.637955890000086 ], [ -123.649660924999949, 48.638126940000049 ], [ -123.649635623, 48.638271052000043 ], [ -123.649624023999962, 48.638424033000042 ], [ -123.649626576999964, 48.638621937000103 ], [ -123.64964024699999, 48.638630876000036 ], [ -123.649640838999943, 48.63867582300005 ], [ -123.649669253999946, 48.638774632000079 ], [ -123.649761971999965, 48.638946579000041 ], [ -123.649780504999981, 48.638980914000051 ], [ -123.649850413999943, 48.639142464000038 ], [ -123.650002183999945, 48.639330522000101 ], [ -123.650112467999975, 48.639464838000052 ], [ -123.650223023999914, 48.639617151000024 ], [ -123.650333845999981, 48.639787461000076 ], [ -123.650430787999966, 48.639939847000051 ], [ -123.650596234, 48.640136843000064 ], [ -123.65078902, 48.640351659000046 ], [ -123.650800315999959, 48.640362158000109 ], [ -123.650885205999927, 48.640441062000043 ], [ -123.651036825999967, 48.640620144000067 ], [ -123.651160637999951, 48.640745388000077 ], [ -123.651338805999927, 48.640879322000032 ], [ -123.651461555, 48.640923598000029 ], [ -123.65174914899994, 48.641119901000089 ], [ -123.65181760399993, 48.641164500000066 ], [ -123.651858916999956, 48.641209244000095 ], [ -123.65225590499989, 48.64146786900011 ], [ -123.652556631999957, 48.641628112 ], [ -123.652706744999975, 48.641690230000059 ], [ -123.65271106599999, 48.641693046000093 ], [ -123.652696512999924, 48.641984864000037 ], [ -123.653175193999914, 48.641995422000058 ], [ -123.653213282999957, 48.642020240000086 ], [ -123.653527559999958, 48.642180375000073 ], [ -123.653787594999983, 48.642340843000056 ], [ -123.653883302999972, 48.642394262000082 ], [ -123.654142850999961, 48.642518746000079 ], [ -123.654497648999964, 48.642725373000061 ], [ -123.654607606999946, 48.642780504000079 ], [ -123.6548, 48.642946826000149 ], [ -123.655087040999902, 48.643098136000106 ], [ -123.655305496999972, 48.643195861000073 ], [ -123.655511082999936, 48.643347617000124 ], [ -123.655593233, 48.643401118000064 ], [ -123.655908129999929, 48.643606251000037 ], [ -123.656031476999914, 48.643695506000071 ], [ -123.656203348, 48.64380122900009 ], [ -123.656160982999964, 48.644651920000157 ], [ -123.656131456999944, 48.645244773000059 ], [ -123.658044163999946, 48.645286887000047 ], [ -123.658130123999925, 48.645356857000102 ], [ -123.658362668999985, 48.645490440000025 ], [ -123.658541610999947, 48.645678356000133 ], [ -123.658747897999945, 48.645884088000038 ], [ -123.658789351999985, 48.645937817000132 ], [ -123.658927681999927, 48.646134962000083 ], [ -123.659025382999957, 48.646341313000072 ], [ -123.659082376999919, 48.646547894000108 ], [ -123.65909832, 48.646727732000038 ], [ -123.659100185999947, 48.646871648000037 ], [ -123.659102530999974, 48.64705158200011 ], [ -123.659091677000035, 48.647258540000102 ], [ -123.659080784999972, 48.647465511000092 ], [ -123.659056552999985, 48.647690553000061 ], [ -123.659032193000016, 48.647906609000074 ], [ -123.659020989999973, 48.648086593000102 ], [ -123.659050954999941, 48.648302345 ], [ -123.659121639999967, 48.648412529000076 ], [ -123.65919189499999, 48.648514103000082 ], [ -123.659258778999941, 48.648589209000107 ], [ -123.659490885999929, 48.648722664 ], [ -123.65973687499995, 48.648847209000074 ], [ -123.660001895999955, 48.648906837000013 ], [ -123.660890875999925, 48.6491486460001 ], [ -123.661245649999984, 48.649245166000092 ], [ -123.661958208999948, 48.649580807000085 ], [ -123.662476998999978, 48.650051879000067 ], [ -123.663033934999973, 48.650437260000054 ], [ -123.663257365999982, 48.650578302000099 ], [ -123.664622976999937, 48.651749242000079 ], [ -123.664664160999948, 48.651784535000026 ], [ -123.664979245999987, 48.652017683000061 ], [ -123.665159327999959, 48.652125384000101 ], [ -123.665361033999901, 48.652245988000104 ], [ -123.66552995499994, 48.652317937000127 ], [ -123.665724765999954, 48.652400894000081 ], [ -123.665828166999972, 48.652428319000116 ], [ -123.667059736999974, 48.652754932000029 ], [ -123.667762497999945, 48.652941297000098 ], [ -123.668830496999959, 48.653485098000012 ], [ -123.669155312, 48.653650462000087 ], [ -123.669375584999941, 48.653762617000083 ], [ -123.669445665999945, 48.653800142000065 ], [ -123.669543941999905, 48.653828455000038 ], [ -123.669852100999961, 48.654006629000023 ], [ -123.670056857999953, 48.654086423000074 ], [ -123.670190446000035, 48.654144290000076 ], [ -123.67024705099999, 48.654640547000056 ], [ -123.669755312999925, 48.654671905000058 ], [ -123.669616221999917, 48.654681831000076 ], [ -123.669615500999896, 48.654611202000069 ], [ -123.669054490999983, 48.654218105000062 ], [ -123.668618600999977, 48.654121304000043 ], [ -123.668437981999972, 48.653816503000044 ], [ -123.66789922, 48.653645978000064 ], [ -123.667576892999989, 48.653543944000056 ], [ -123.66715559499994, 48.653410603000083 ], [ -123.666279150999969, 48.652982796000074 ], [ -123.666278582999951, 48.652982534000103 ], [ -123.666044480999957, 48.652868246000047 ], [ -123.665515796999955, 48.652610190000054 ], [ -123.66534762699996, 48.652584599000072 ], [ -123.664944884999926, 48.652523301000052 ], [ -123.664817064999937, 48.652486382000056 ], [ -123.663785490999956, 48.652188588000058 ], [ -123.663324649999936, 48.651978218000032 ], [ -123.662596891999968, 48.651645990000098 ], [ -123.661779718999981, 48.651372604000109 ], [ -123.661386181999944, 48.651348400000131 ], [ -123.660365256999953, 48.651124618000026 ], [ -123.660309356999932, 48.65111236500011 ], [ -123.659820008999972, 48.651005094000041 ], [ -123.658799323000011, 48.650604201000071 ], [ -123.658467579999979, 48.650473902000073 ], [ -123.65824457599993, 48.650345128000069 ], [ -123.658198663999912, 48.650318649000042 ], [ -123.657730923999964, 48.650048587000093 ], [ -123.65714049799999, 48.6497077020001 ], [ -123.656569395999938, 48.649531108000112 ], [ -123.656196479999906, 48.649163593 ], [ -123.655795041999937, 48.649049708000085 ], [ -123.655544088999989, 48.648978491000065 ], [ -123.655051500999946, 48.648657987000071 ], [ -123.652796597999952, 48.647518705000081 ], [ -123.652616909999935, 48.647295100000115 ], [ -123.652727216999978, 48.64639500100008 ], [ -123.652438986999968, 48.646262495000016 ], [ -123.651801411999912, 48.646175601000095 ] ], [ [ -123.652951013999939, 48.645868192000101 ], [ -123.652960633999925, 48.645675306000086 ], [ -123.652807781999982, 48.645671934000092 ], [ -123.652951013999939, 48.645868192000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.903708862963608", "sL_AssetLoss": "9188.8", "sL_BldgLoss": "8304", "sL_StrLoss": "6090", "sL_NStrLoss": "2214", "sL_ContLoss": "884.8", "geom_point": "0101000020E6100000EBB39812A8E85EC065534BC6734E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.634717607999946, 48.611177091000116 ], [ -123.635164477999965, 48.611093094000076 ], [ -123.635381810999974, 48.611235487000052 ], [ -123.635650115999937, 48.612044393000076 ], [ -123.636442022999958, 48.612345002000048 ], [ -123.63660621299999, 48.612497299000054 ], [ -123.636636293999942, 48.612676814000082 ], [ -123.635318499, 48.614709105000038 ], [ -123.634926791999931, 48.614854407000067 ], [ -123.634777889999938, 48.614847312000045 ], [ -123.634613197999926, 48.614721988000049 ], [ -123.634698302999936, 48.61400989600002 ], [ -123.634416186999928, 48.613202296000061 ], [ -123.634449983999986, 48.612545797000038 ], [ -123.634216292999952, 48.612330706000073 ], [ -123.63421400199999, 48.612114196000093 ], [ -123.634717607999946, 48.611177091000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.809379727685325", "sL_AssetLoss": "3966", "sL_BldgLoss": "3210", "sL_StrLoss": "1940", "sL_NStrLoss": "1270", "sL_ContLoss": "756", "geom_point": "0101000020E610000026FD414D82E85EC0B5E64327364E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.632377006999917, 48.61055899600003 ], [ -123.632781091999931, 48.610422311000029 ], [ -123.633270721999978, 48.610581802000141 ], [ -123.633670414999969, 48.611001892000012 ], [ -123.633743117999984, 48.611406404000064 ], [ -123.633540888999946, 48.611551689000102 ], [ -123.63278230399996, 48.611537387000098 ], [ -123.632261098999962, 48.611208391000126 ], [ -123.632189287999907, 48.610731289000029 ], [ -123.632377006999917, 48.61055899600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.898698884758364", "sL_AssetLoss": "2152", "sL_BldgLoss": "1934", "sL_StrLoss": "1310", "sL_NStrLoss": "624", "sL_ContLoss": "218", "geom_point": "0101000020E61000006242D496DDE85EC03BEBE8F2C54E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.637612613, 48.614911408000076 ], [ -123.638235809999983, 48.614783195000051 ], [ -123.63868539, 48.614941307000052 ], [ -123.639205886999946, 48.61527170600008 ], [ -123.63936279099994, 48.615945400000051 ], [ -123.639107989999928, 48.616163288000052 ], [ -123.638740305999988, 48.616083499000084 ], [ -123.638164017999941, 48.615610701 ], [ -123.637781917, 48.615451198000116 ], [ -123.637547709999964, 48.615173396000046 ], [ -123.637612613, 48.614911408000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69052250", "BldgCostT": "46730000", "sL_LossRatio": "0.816961225056932", "sL_AssetLoss": "245774.7", "sL_BldgLoss": "200788.4", "sL_StrLoss": "132891.4", "sL_NStrLoss": "67897", "sL_ContLoss": "44986.3", "geom_point": "0101000020E61000000FE4139125E85EC05679E9C386514840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.619943250999981, 48.646855674000044 ], [ -123.619403456000015, 48.646755261000074 ], [ -123.619365133000016, 48.646754673000032 ], [ -123.61827706299999, 48.646738557000113 ], [ -123.61827729299992, 48.646734120000119 ], [ -123.619397302999971, 48.642108484000055 ], [ -123.619788235999934, 48.642257056000069 ], [ -123.621375899999961, 48.642860284000044 ], [ -123.621899667999969, 48.642233927000127 ], [ -123.622234215999967, 48.641833904000123 ], [ -123.622254567, 48.641774501000064 ], [ -123.622326307999941, 48.64156560000005 ], [ -123.622296000999981, 48.641362106000024 ], [ -123.622205799999918, 48.641134699000169 ], [ -123.621716706999933, 48.640354897000094 ], [ -123.621630426999928, 48.640103310000029 ], [ -123.6217239899999, 48.639807913000034 ], [ -123.621941681999942, 48.639575696000051 ], [ -123.622300284999966, 48.639360934000109 ], [ -123.622558804999954, 48.639206100000187 ], [ -123.622817909999966, 48.639050909000034 ], [ -123.623006399999966, 48.638888302000126 ], [ -123.62311909099995, 48.638721412000038 ], [ -123.623160953999943, 48.638583657000019 ], [ -123.623205298999949, 48.638437611000064 ], [ -123.62286925, 48.638435629000114 ], [ -123.622420961999978, 48.638432976000104 ], [ -123.622382215999934, 48.638432776000059 ], [ -123.622486099999918, 48.637420704000085 ], [ -123.622667151999934, 48.63716493200009 ], [ -123.622901835999954, 48.636828373000121 ], [ -123.623516098999957, 48.636278896000071 ], [ -123.626716285999962, 48.632825404000073 ], [ -123.626862239999923, 48.632950132000161 ], [ -123.626833976999976, 48.633510766000065 ], [ -123.627675461999985, 48.633529535000065 ], [ -123.62771818499999, 48.632681741000049 ], [ -123.62749524499992, 48.632676768000138 ], [ -123.627737082999943, 48.632429789000106 ], [ -123.62773026399995, 48.631972348000097 ], [ -123.62745036499993, 48.63141558600006 ], [ -123.629422227999925, 48.630546618000068 ], [ -123.629416790999983, 48.630654608000022 ], [ -123.630341748999967, 48.630675217000018 ], [ -123.630369228999882, 48.630129266000068 ], [ -123.631168194999987, 48.629777141000034 ], [ -123.630568281999942, 48.628846670000058 ], [ -123.630547201999917, 48.628238703000058 ], [ -123.630811081000019, 48.627692489000012 ], [ -123.631665458999976, 48.626715359000109 ], [ -123.631660948999979, 48.626574986000072 ], [ -123.633443623999966, 48.626578588 ], [ -123.633459701999982, 48.626850706000013 ], [ -123.633376346999924, 48.627151245000071 ], [ -123.633293584999976, 48.627449669000057 ], [ -123.633258425999927, 48.62757633400004 ], [ -123.633138679999931, 48.628008102000074 ], [ -123.633103098999953, 48.628230896000026 ], [ -123.633128998999979, 48.628359007000036 ], [ -123.63313241699997, 48.628375803000083 ], [ -123.63330379099996, 48.6288112740001 ], [ -123.633384709, 48.629016895000085 ], [ -123.633424002999945, 48.629094746000085 ], [ -123.633504266, 48.629253816000094 ], [ -123.633733406999951, 48.629707883000023 ], [ -123.633890998999973, 48.629726703000124 ], [ -123.634204509999989, 48.62982380800004 ], [ -123.634238489999959, 48.62984077400003 ], [ -123.634534909999957, 48.629988892000021 ], [ -123.634763501999942, 48.630158092000052 ], [ -123.634954119999946, 48.630411109000086 ], [ -123.63514731099994, 48.63074438600011 ], [ -123.63520924, 48.630902549000083 ], [ -123.6353635, 48.631296408000075 ], [ -123.635402461999945, 48.631620844000054 ], [ -123.635440903999907, 48.631940795000062 ], [ -123.635430834999937, 48.631989037000075 ], [ -123.635296312999927, 48.632633407000071 ], [ -123.635332103999971, 48.634484796000017 ], [ -123.635292305999926, 48.634683987000066 ], [ -123.635163301999953, 48.634957905000128 ], [ -123.634927275999971, 48.635220252000046 ], [ -123.634890604999967, 48.635260985000073 ], [ -123.634604498999948, 48.635507014000012 ], [ -123.63433551, 48.635657006000024 ], [ -123.634105699999978, 48.635725814000097 ], [ -123.633979295999978, 48.635734463000112 ], [ -123.633907205999947, 48.635739401000144 ], [ -123.63381782099999, 48.635735860000096 ], [ -123.633542024999954, 48.635724907000082 ], [ -123.632822635999958, 48.635495930000062 ], [ -123.632603495999959, 48.635426144000114 ], [ -123.632345670999968, 48.635344071000084 ], [ -123.631945455999968, 48.635635552000132 ], [ -123.631885720999961, 48.635679070000094 ], [ -123.631685139999917, 48.635760245000021 ], [ -123.631336022999974, 48.635851519 ], [ -123.630763783999924, 48.636001134000033 ], [ -123.630090944999935, 48.636310654000077 ], [ -123.629489802999942, 48.636623555000085 ], [ -123.629169849999968, 48.636841780000097 ], [ -123.62891293399997, 48.637099259000081 ], [ -123.628807211999984, 48.637296289000105 ], [ -123.628737973999975, 48.637425245000053 ], [ -123.628302170999973, 48.637799383000129 ], [ -123.628159609999955, 48.637921761000086 ], [ -123.628029764999951, 48.638033230000133 ], [ -123.627793319999981, 48.63818475300009 ], [ -123.627472406999985, 48.638390366000117 ], [ -123.627406343999951, 48.638411792000078 ], [ -123.627035667, 48.638532081000101 ], [ -123.626615760999968, 48.638716485000074 ], [ -123.626439307999988, 48.63893700200002 ], [ -123.626395953000014, 48.63903011900009 ], [ -123.62622959, 48.639387532000079 ], [ -123.625953895999956, 48.639678491000019 ], [ -123.62571855799996, 48.639926864000103 ], [ -123.625613953999974, 48.640142479000112 ], [ -123.625430335999951, 48.640521057000086 ], [ -123.625298075, 48.640793629000029 ], [ -123.625198989999902, 48.641298239000086 ], [ -123.625166772999961, 48.641462233000034 ], [ -123.625164064999936, 48.641718082000118 ], [ -123.625160701999931, 48.642038988000088 ], [ -123.62514381499993, 48.6420954170001 ], [ -123.62511322899995, 48.642197625000058 ], [ -123.62509663499992, 48.642253072000152 ], [ -123.625005806999965, 48.642556493000043 ], [ -123.624974524999956, 48.64266836300007 ], [ -123.624799107999976, 48.64329559800003 ], [ -123.624521584999968, 48.644326658000068 ], [ -123.62442549799999, 48.644683503000053 ], [ -123.624371399999973, 48.644949099000073 ], [ -123.624408269999947, 48.645373186000064 ], [ -123.624523180999958, 48.646695685000033 ], [ -123.624537600999943, 48.646892508000136 ], [ -123.623706163999955, 48.646886522000074 ], [ -123.623244181999965, 48.64688320700008 ], [ -123.622925270999986, 48.646880853000049 ], [ -123.619943250999981, 48.646855674000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232599856", "BldgCostT": "156382032", "sL_LossRatio": "0.894365391497644", "sL_AssetLoss": "423049.8", "sL_BldgLoss": "378361.1", "sL_StrLoss": "259044.1", "sL_NStrLoss": "119317", "sL_ContLoss": "44688.7", "geom_point": "0101000020E61000000A17356F07E85EC003FDE0D7A3524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.621786199999974, 48.651583998000113 ], [ -123.621811612999963, 48.651135708000076 ], [ -123.620712698999981, 48.651154388000066 ], [ -123.619756713999976, 48.651160111000095 ], [ -123.619400100999954, 48.651323407000113 ], [ -123.619087304999979, 48.651397489000075 ], [ -123.618610967, 48.651433688000068 ], [ -123.617148581999942, 48.65140277000009 ], [ -123.616443246999921, 48.651378985000107 ], [ -123.614837229, 48.651324843000133 ], [ -123.614899678999961, 48.650226574000101 ], [ -123.614958928999926, 48.649793327000076 ], [ -123.614973545999959, 48.649686467000052 ], [ -123.615049977999917, 48.64912766600002 ], [ -123.615104023999933, 48.648732215000038 ], [ -123.616754045999969, 48.648857797000055 ], [ -123.616742872999907, 48.646684862000093 ], [ -123.61784995699999, 48.646732201000106 ], [ -123.61827706299999, 48.646738557000113 ], [ -123.619365133000016, 48.646754673000032 ], [ -123.619403456000015, 48.646755261000074 ], [ -123.619943250999981, 48.646855674000044 ], [ -123.622925270999986, 48.646880853000049 ], [ -123.623244181999965, 48.64688320700008 ], [ -123.623706163999955, 48.646886522000074 ], [ -123.624537600999943, 48.646892508000136 ], [ -123.624523180999958, 48.646695685000033 ], [ -123.624408269999947, 48.645373186000064 ], [ -123.624371399999973, 48.644949099000073 ], [ -123.62442549799999, 48.644683503000053 ], [ -123.624521584999968, 48.644326658000068 ], [ -123.624799107999976, 48.64329559800003 ], [ -123.624974524999956, 48.64266836300007 ], [ -123.625005806999965, 48.642556493000043 ], [ -123.62509663499992, 48.642253072000152 ], [ -123.62511322899995, 48.642197625000058 ], [ -123.62514381499993, 48.6420954170001 ], [ -123.625160701999931, 48.642038988000088 ], [ -123.625164064999936, 48.641718082000118 ], [ -123.625166772999961, 48.641462233000034 ], [ -123.625198989999902, 48.641298239000086 ], [ -123.625298075, 48.640793629000029 ], [ -123.625430335999951, 48.640521057000086 ], [ -123.625613953999974, 48.640142479000112 ], [ -123.62571855799996, 48.639926864000103 ], [ -123.625953895999956, 48.639678491000019 ], [ -123.62622959, 48.639387532000079 ], [ -123.626395953000014, 48.63903011900009 ], [ -123.626439307999988, 48.63893700200002 ], [ -123.626615760999968, 48.638716485000074 ], [ -123.627035667, 48.638532081000101 ], [ -123.627406343999951, 48.638411792000078 ], [ -123.62837107199999, 48.638310613000051 ], [ -123.628953455999948, 48.638316021000037 ], [ -123.629885696999935, 48.638115890000044 ], [ -123.629885749999957, 48.6381158800001 ], [ -123.63007461799999, 48.638145904000055 ], [ -123.631082496999966, 48.638427909000029 ], [ -123.631742597999917, 48.63812741000001 ], [ -123.632184994999946, 48.637665990000052 ], [ -123.632389099999898, 48.63758479900013 ], [ -123.63282172199996, 48.637563402000048 ], [ -123.633054391999934, 48.63772439800006 ], [ -123.633361394999952, 48.638325410000107 ], [ -123.63319438399999, 48.63904599500006 ], [ -123.633705811999945, 48.639763806000083 ], [ -123.633750795999958, 48.640149791000049 ], [ -123.633154894999947, 48.641375995000061 ], [ -123.632233225999954, 48.64239879000008 ], [ -123.632217990999905, 48.642415696000079 ], [ -123.632179092999962, 48.642587992000117 ], [ -123.632386679999954, 48.642972594000106 ], [ -123.632382510999918, 48.643005107000086 ], [ -123.631556111999942, 48.642986715000085 ], [ -123.631517718999973, 48.643749605000075 ], [ -123.631059342999961, 48.643739401000062 ], [ -123.63108187399996, 48.645545398000053 ], [ -123.630674622999919, 48.645547629000141 ], [ -123.630679807999925, 48.645963393000017 ], [ -123.63147793899995, 48.645980261000055 ], [ -123.631882959999956, 48.645919306000089 ], [ -123.63168586099998, 48.646032182000056 ], [ -123.631450638999951, 48.646128562000101 ], [ -123.631184838999957, 48.646383261 ], [ -123.631094473999923, 48.646555131000071 ], [ -123.631096661999919, 48.646730573000106 ], [ -123.63037232, 48.64670442000007 ], [ -123.629462080999957, 48.646671499000021 ], [ -123.628525803999935, 48.648549887000065 ], [ -123.62765318799994, 48.64983775200006 ], [ -123.627376401999953, 48.650241388000076 ], [ -123.627237666999989, 48.650240731000082 ], [ -123.625675697, 48.65023317300011 ], [ -123.625664754999917, 48.651088510000129 ], [ -123.625653589999942, 48.651960619000079 ], [ -123.624442828999946, 48.651965129000125 ], [ -123.624192102999956, 48.651964049000064 ], [ -123.623850538999974, 48.651963643000087 ], [ -123.623217558999926, 48.651962125000054 ], [ -123.622029590999887, 48.651972543000028 ], [ -123.621963007999938, 48.651974390000056 ], [ -123.621850396999946, 48.651977495000104 ], [ -123.621786199999974, 48.651583998000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134209053", "BldgCostT": "90323746", "sL_LossRatio": "0.863098413715879", "sL_AssetLoss": "350700.1", "sL_BldgLoss": "302688.7", "sL_StrLoss": "222436.7", "sL_NStrLoss": "80252", "sL_ContLoss": "48011.4", "geom_point": "0101000020E6100000622806CC2CE75EC0CDB4E48E8A524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.62312253, 48.653682517000092 ], [ -123.623157658999929, 48.652799045000087 ], [ -123.621861800999952, 48.652825086000071 ], [ -123.620719796999964, 48.652808614000065 ], [ -123.620273079999933, 48.652822893000099 ], [ -123.619708998999968, 48.652907712000093 ], [ -123.618071719999975, 48.652902596000018 ], [ -123.617025792999925, 48.652890005000181 ], [ -123.616367477999944, 48.652870645000078 ], [ -123.615478681999932, 48.652844499000068 ], [ -123.614923251, 48.65280693200004 ], [ -123.61482077399998, 48.652799996000098 ], [ -123.612845109999938, 48.652462806000131 ], [ -123.612450602999957, 48.652357488000078 ], [ -123.612147110999942, 48.652247 ], [ -123.61210479099995, 48.652223331000094 ], [ -123.611870285999942, 48.652092103000051 ], [ -123.611658698999975, 48.651934100000048 ], [ -123.61137800299997, 48.651643899000078 ], [ -123.610909598999953, 48.651204285000048 ], [ -123.610718894999948, 48.651087309000104 ], [ -123.610523103999938, 48.651020707000029 ], [ -123.610310687999956, 48.650984395000087 ], [ -123.609444202999924, 48.650964995000052 ], [ -123.609425799999897, 48.65140620200004 ], [ -123.609383490999932, 48.651572004000066 ], [ -123.609308015999957, 48.65169829700006 ], [ -123.608896698999942, 48.65200189400008 ], [ -123.608095221, 48.651685804000053 ], [ -123.608043492999911, 48.651665386000076 ], [ -123.607666081, 48.651544297000058 ], [ -123.607309786999949, 48.651471074000035 ], [ -123.607035491999952, 48.651414699000092 ], [ -123.606126903999893, 48.651342911000043 ], [ -123.605546391999923, 48.651323504000061 ], [ -123.605083899999897, 48.651274391000044 ], [ -123.604273986999956, 48.651096974000069 ], [ -123.604212495999903, 48.651083498000105 ], [ -123.604022490999938, 48.651024441000096 ], [ -123.603812188999967, 48.650959097000104 ], [ -123.603761376999927, 48.650939837000088 ], [ -123.603628270999963, 48.65088936800008 ], [ -123.603506961999969, 48.650843375000143 ], [ -123.602805428999929, 48.65057737700009 ], [ -123.602745597999942, 48.650554712 ], [ -123.60242458, 48.650389697000051 ], [ -123.602352984999982, 48.650342966000011 ], [ -123.602109784, 48.650184306000064 ], [ -123.600892066999975, 48.64926270900007 ], [ -123.601243294999904, 48.648488212000139 ], [ -123.60125114, 48.648453142000051 ], [ -123.605832805999967, 48.648556321000072 ], [ -123.60583164099998, 48.64857925200009 ], [ -123.606522983, 48.648594804000034 ], [ -123.606515440999914, 48.648743090000046 ], [ -123.611165110999949, 48.6488475680001 ], [ -123.61116237899995, 48.648621573000113 ], [ -123.609940545999962, 48.64862805000007 ], [ -123.609937291999984, 48.648358180000059 ], [ -123.608308188999928, 48.648366794000026 ], [ -123.608311435999937, 48.648636664000108 ], [ -123.607089601999959, 48.648643110000059 ], [ -123.607084202999886, 48.648193405000043 ], [ -123.607079884, 48.647833501000093 ], [ -123.607487153999941, 48.647831353000086 ], [ -123.607483911999978, 48.647561484000043 ], [ -123.607891181999918, 48.647559335000061 ], [ -123.607887938999951, 48.647289464000046 ], [ -123.608295204999976, 48.647287315 ], [ -123.608291959000013, 48.647017445000088 ], [ -123.608699223999963, 48.647015293000059 ], [ -123.608695976999968, 48.646745424000123 ], [ -123.609103239999982, 48.646743272000023 ], [ -123.609101629999898, 48.646609717000111 ], [ -123.609099988, 48.646473401000037 ], [ -123.609507248999932, 48.646471246000075 ], [ -123.609504073999972, 48.646207860000061 ], [ -123.604759183999988, 48.646101159000061 ], [ -123.604942469999955, 48.642499731000029 ], [ -123.605286883999938, 48.642507484000127 ], [ -123.60532960099998, 48.641667938000055 ], [ -123.607132666000012, 48.64170850400005 ], [ -123.607134908, 48.641664417000072 ], [ -123.602030653999989, 48.641549500000032 ], [ -123.602152693000022, 48.639154075000107 ], [ -123.599379100999954, 48.639091528000066 ], [ -123.599373382999914, 48.638903346000085 ], [ -123.599370082999926, 48.638795409000075 ], [ -123.59935829199999, 48.638408700000127 ], [ -123.599997791999925, 48.63841630200011 ], [ -123.601692771999979, 48.638436448000071 ], [ -123.602358813999956, 48.638444356000107 ], [ -123.604843325999965, 48.638473797000081 ], [ -123.605941898999944, 48.638486806000117 ], [ -123.606683612999973, 48.638479097000065 ], [ -123.608574614999952, 48.638334110000052 ], [ -123.609022491999951, 48.638335631000096 ], [ -123.610654507999982, 48.638341196000077 ], [ -123.612742722999954, 48.638358029000045 ], [ -123.612987246, 48.638360008000106 ], [ -123.614304629999936, 48.63837060000008 ], [ -123.614833573999988, 48.63837486000012 ], [ -123.616204148999984, 48.638385873000061 ], [ -123.61623153099994, 48.638386088000068 ], [ -123.616584357999926, 48.638388929000065 ], [ -123.616923854999953, 48.638391646000045 ], [ -123.617317407999948, 48.638394787000038 ], [ -123.617629800999964, 48.638397302000101 ], [ -123.617982887999986, 48.638400131000033 ], [ -123.618295001999954, 48.638402627000076 ], [ -123.618539526999939, 48.638404591000096 ], [ -123.618621189999914, 48.638405237000015 ], [ -123.618960739999949, 48.638407958000087 ], [ -123.619651731, 48.638413480000075 ], [ -123.619779374999951, 48.638414488000116 ], [ -123.620494384999944, 48.638420209000081 ], [ -123.621182619999942, 48.63842569400007 ], [ -123.621294774999981, 48.63842636600009 ], [ -123.622027157999923, 48.638430677000066 ], [ -123.622081463999976, 48.638430978000031 ], [ -123.622382215999934, 48.638432776000059 ], [ -123.622420961999978, 48.638432976000104 ], [ -123.62286925, 48.638435629000114 ], [ -123.623205298999949, 48.638437611000064 ], [ -123.623160953999943, 48.638583657000019 ], [ -123.62311909099995, 48.638721412000038 ], [ -123.623006399999966, 48.638888302000126 ], [ -123.622817909999966, 48.639050909000034 ], [ -123.622558804999954, 48.639206100000187 ], [ -123.622300284999966, 48.639360934000109 ], [ -123.621941681999942, 48.639575696000051 ], [ -123.6217239899999, 48.639807913000034 ], [ -123.621630426999928, 48.640103310000029 ], [ -123.621716706999933, 48.640354897000094 ], [ -123.622205799999918, 48.641134699000169 ], [ -123.622296000999981, 48.641362106000024 ], [ -123.622326307999941, 48.64156560000005 ], [ -123.622254567, 48.641774501000064 ], [ -123.622234215999967, 48.641833904000123 ], [ -123.621899667999969, 48.642233927000127 ], [ -123.621375899999961, 48.642860284000044 ], [ -123.619788235999934, 48.642257056000069 ], [ -123.619397302999971, 48.642108484000055 ], [ -123.61827729299992, 48.646734120000119 ], [ -123.61827706299999, 48.646738557000113 ], [ -123.61784995699999, 48.646732201000106 ], [ -123.616742872999907, 48.646684862000093 ], [ -123.616754045999969, 48.648857797000055 ], [ -123.615104023999933, 48.648732215000038 ], [ -123.615049977999917, 48.64912766600002 ], [ -123.614973545999959, 48.649686467000052 ], [ -123.614958928999926, 48.649793327000076 ], [ -123.614899678999961, 48.650226574000101 ], [ -123.614837229, 48.651324843000133 ], [ -123.616443246999921, 48.651378985000107 ], [ -123.617148581999942, 48.65140277000009 ], [ -123.618610967, 48.651433688000068 ], [ -123.619087304999979, 48.651397489000075 ], [ -123.619400100999954, 48.651323407000113 ], [ -123.619756713999976, 48.651160111000095 ], [ -123.620712698999981, 48.651154388000066 ], [ -123.621811612999963, 48.651135708000076 ], [ -123.621786199999974, 48.651583998000113 ], [ -123.621850396999946, 48.651977495000104 ], [ -123.621963007999938, 48.651974390000056 ], [ -123.622029590999887, 48.651972543000028 ], [ -123.623217558999926, 48.651962125000054 ], [ -123.623850538999974, 48.651963643000087 ], [ -123.624192102999956, 48.651964049000064 ], [ -123.624442828999946, 48.651965129000125 ], [ -123.625653589999942, 48.651960619000079 ], [ -123.625655025999933, 48.652147236000069 ], [ -123.625663553999971, 48.653509369000027 ], [ -123.62312253, 48.653682517000092 ] ], [ [ -123.61403297899993, 48.65022562700004 ], [ -123.614016596999988, 48.648876280000131 ], [ -123.611680409999963, 48.64888871000008 ], [ -123.611671583999978, 48.649062602000093 ], [ -123.613883040999951, 48.649112211000045 ], [ -123.613826527999947, 48.650226728000121 ], [ -123.61403297899993, 48.65022562700004 ] ], [ [ -123.611116838999919, 48.64619283300005 ], [ -123.611170709999968, 48.645131557000092 ], [ -123.610575537999935, 48.645118194000133 ], [ -123.610561681999982, 48.645391115000074 ], [ -123.610217245999962, 48.645383379000037 ], [ -123.610175887999958, 48.646197821000015 ], [ -123.611116838999919, 48.64619283300005 ] ], [ [ -123.615850750999954, 48.64335151300002 ], [ -123.615935179999909, 48.641684799000103 ], [ -123.616372906999928, 48.641694606000087 ], [ -123.616371469999947, 48.641576750000077 ], [ -123.613928146999953, 48.641589799000052 ], [ -123.613918501999962, 48.640795056000094 ], [ -123.613856225999939, 48.64202344400011 ], [ -123.613407176999942, 48.642013373000061 ], [ -123.613342172999964, 48.643295273000071 ], [ -123.615850750999954, 48.64335151300002 ] ], [ [ -123.608014414999957, 48.641455097000055 ], [ -123.608038493999956, 48.640981314000051 ], [ -123.607481270000022, 48.640968786000045 ], [ -123.607457185999948, 48.641442568000059 ], [ -123.608014414999957, 48.641455097000055 ] ], [ [ -123.615136681999928, 48.640503801000115 ], [ -123.615126836999949, 48.639694191000039 ], [ -123.61543704499995, 48.639692535000123 ], [ -123.615147748999902, 48.639686050000101 ], [ -123.61514923699994, 48.639656678000044 ], [ -123.613977543999951, 48.639630408000059 ], [ -123.613932942999952, 48.640510224000145 ], [ -123.615136681999928, 48.640503801000115 ] ], [ [ -123.617570791, 48.639740336000038 ], [ -123.617572134999961, 48.639850368000047 ], [ -123.62023684899998, 48.63991000500009 ], [ -123.62083089399998, 48.639923291000073 ], [ -123.620827664999979, 48.639660223000099 ], [ -123.620570192999963, 48.639654465000014 ], [ -123.620562467999946, 48.63980728600005 ], [ -123.620297573999963, 48.639801361000082 ], [ -123.617570791, 48.639740336000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "0.902105933314192", "sL_AssetLoss": "16021.4", "sL_BldgLoss": "14453", "sL_StrLoss": "10710", "sL_NStrLoss": "3743", "sL_ContLoss": "1568.4", "geom_point": "0101000020E6100000B8433F2A70E65EC024DE539C17524840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.599425582999913, 48.64114324400007 ], [ -123.599426700999913, 48.640654689 ], [ -123.599384039999975, 48.639254090000101 ], [ -123.599381286999957, 48.63916348900004 ], [ -123.601417313999931, 48.639209411000095 ], [ -123.601365176999977, 48.64023248000008 ], [ -123.60171676299997, 48.640240407000135 ], [ -123.601679146999942, 48.640978640000121 ], [ -123.601713208999954, 48.640979408000099 ], [ -123.601529680999974, 48.644580839000064 ], [ -123.601483935999951, 48.644579807000099 ], [ -123.601485403999945, 48.644270709000089 ], [ -123.601380062, 48.644172089000037 ], [ -123.600891616999931, 48.643714703000022 ], [ -123.600616505999952, 48.643483665000105 ], [ -123.60025738899995, 48.643182097000107 ], [ -123.599956911999953, 48.642846735000091 ], [ -123.5994815899999, 48.642316301000051 ], [ -123.599441993999932, 48.6422471220001 ], [ -123.599423084999898, 48.642214095000078 ], [ -123.599425582999913, 48.64114324400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.895969498910675", "sL_AssetLoss": "1836", "sL_BldgLoss": "1645", "sL_StrLoss": "1250", "sL_NStrLoss": "395", "sL_ContLoss": "191", "geom_point": "0101000020E6100000DF807D1100E75EC02441FA1E5C544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.608722193999952, 48.658775750000089 ], [ -123.60972827099999, 48.658798347000058 ], [ -123.609687041999948, 48.659609844000052 ], [ -123.608722193999952, 48.658775750000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96320083", "BldgCostT": "65428333", "sL_LossRatio": "0.886893874877778", "sL_AssetLoss": "269488.5", "sL_BldgLoss": "239007.7", "sL_StrLoss": "160509.7", "sL_NStrLoss": "78498", "sL_ContLoss": "30480.8", "geom_point": "0101000020E61000002E9932891DE75EC0659B3470B4534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.617866809999953, 48.660543809000032 ], [ -123.61787101299997, 48.660460798000024 ], [ -123.616601769999988, 48.66046759799999 ], [ -123.616600562999949, 48.660368537000075 ], [ -123.616588602999926, 48.659388122000067 ], [ -123.617403330999977, 48.65938375800004 ], [ -123.617400036, 48.659113889000118 ], [ -123.616992673999903, 48.659116072000117 ], [ -123.616991542999955, 48.659023407000099 ], [ -123.614450077999933, 48.65896647700005 ], [ -123.614572570999954, 48.65655057900004 ], [ -123.61268855699997, 48.65650833800013 ], [ -123.61270002599997, 48.656282333000071 ], [ -123.61128132199994, 48.656250501000095 ], [ -123.611308798999914, 48.655709293000044 ], [ -123.610038309999979, 48.655680771000114 ], [ -123.610051698999911, 48.655417178000029 ], [ -123.608740978999919, 48.655387737000069 ], [ -123.608749085999975, 48.655228212000125 ], [ -123.608362574999916, 48.655219528000103 ], [ -123.608366131, 48.655149569000059 ], [ -123.606382508999928, 48.655104976000104 ], [ -123.606397817999934, 48.654804029000097 ], [ -123.605776803999916, 48.654790061000035 ], [ -123.605787477999968, 48.654580286000055 ], [ -123.604963187999971, 48.654561740000084 ], [ -123.604976606999955, 48.654298110000092 ], [ -123.603665957999922, 48.654268607000112 ], [ -123.603673785, 48.654114895000063 ], [ -123.603494, 48.654110848000087 ], [ -123.603244746999934, 48.654105235000067 ], [ -123.603156962999961, 48.654047924000068 ], [ -123.603164104999948, 48.653907735000047 ], [ -123.602940855999933, 48.653902706000089 ], [ -123.602940652999933, 48.653906706000093 ], [ -123.60278093, 48.653802429000031 ], [ -123.601702526999958, 48.653284162 ], [ -123.600786601999943, 48.65298374200011 ], [ -123.599142682999954, 48.65273432000005 ], [ -123.5971439299999, 48.652444782000011 ], [ -123.595849882, 48.651810320000095 ], [ -123.595238433999967, 48.651209115000093 ], [ -123.594460864, 48.649806261000066 ], [ -123.593541183999946, 48.647457439000092 ], [ -123.593118608999973, 48.646765178000095 ], [ -123.594166132999945, 48.646875421000082 ], [ -123.595063418999956, 48.647047894000103 ], [ -123.595202359999973, 48.647074610000089 ], [ -123.59560931499999, 48.647190635000044 ], [ -123.595689978999971, 48.64721361000008 ], [ -123.595840563999957, 48.647268642 ], [ -123.598070401999976, 48.648083533000026 ], [ -123.598058148999911, 48.648323584000053 ], [ -123.598369767999955, 48.648330617000063 ], [ -123.59836634499996, 48.648397705000072 ], [ -123.598926806999955, 48.648410353000038 ], [ -123.600381877999965, 48.648980775000027 ], [ -123.600892066999975, 48.64926270900007 ], [ -123.602109784, 48.650184306000064 ], [ -123.602352984999982, 48.650342966000011 ], [ -123.60242458, 48.650389697000051 ], [ -123.602745597999942, 48.650554712 ], [ -123.602805428999929, 48.65057737700009 ], [ -123.603506961999969, 48.650843375000143 ], [ -123.603628270999963, 48.65088936800008 ], [ -123.603761376999927, 48.650939837000088 ], [ -123.603812188999967, 48.650959097000104 ], [ -123.604022490999938, 48.651024441000096 ], [ -123.604212495999903, 48.651083498000105 ], [ -123.604273986999956, 48.651096974000069 ], [ -123.605083899999897, 48.651274391000044 ], [ -123.605546391999923, 48.651323504000061 ], [ -123.606126903999893, 48.651342911000043 ], [ -123.607035491999952, 48.651414699000092 ], [ -123.607309786999949, 48.651471074000035 ], [ -123.607666081, 48.651544297000058 ], [ -123.608043492999911, 48.651665386000076 ], [ -123.608095221, 48.651685804000053 ], [ -123.608896698999942, 48.65200189400008 ], [ -123.609308015999957, 48.65169829700006 ], [ -123.609383490999932, 48.651572004000066 ], [ -123.609425799999897, 48.65140620200004 ], [ -123.609444202999924, 48.650964995000052 ], [ -123.610310687999956, 48.650984395000087 ], [ -123.610523103999938, 48.651020707000029 ], [ -123.610718894999948, 48.651087309000104 ], [ -123.610909598999953, 48.651204285000048 ], [ -123.61137800299997, 48.651643899000078 ], [ -123.611658698999975, 48.651934100000048 ], [ -123.611870285999942, 48.652092103000051 ], [ -123.61210479099995, 48.652223331000094 ], [ -123.612147110999942, 48.652247 ], [ -123.612450602999957, 48.652357488000078 ], [ -123.612845109999938, 48.652462806000131 ], [ -123.61482077399998, 48.652799996000098 ], [ -123.614923251, 48.65280693200004 ], [ -123.615478681999932, 48.652844499000068 ], [ -123.616367477999944, 48.652870645000078 ], [ -123.617025792999925, 48.652890005000181 ], [ -123.618071719999975, 48.652902596000018 ], [ -123.619708998999968, 48.652907712000093 ], [ -123.620273079999933, 48.652822893000099 ], [ -123.620719796999964, 48.652808614000065 ], [ -123.621861800999952, 48.652825086000071 ], [ -123.623157658999929, 48.652799045000087 ], [ -123.62312253, 48.653682517000092 ], [ -123.623138374999982, 48.65447234700013 ], [ -123.623141328999907, 48.654620739000045 ], [ -123.623143193999979, 48.654713735000016 ], [ -123.623143706999912, 48.654739385000099 ], [ -123.623184072999933, 48.654817738000126 ], [ -123.623289390999958, 48.65502205500006 ], [ -123.623541599999939, 48.65531612500012 ], [ -123.623851195999961, 48.65552133700006 ], [ -123.623989542999936, 48.655572791000097 ], [ -123.624934348999915, 48.655924101000011 ], [ -123.625599809999954, 48.656399638000067 ], [ -123.625905652999975, 48.656618159000097 ], [ -123.625988998999915, 48.656677710000068 ], [ -123.62604475199997, 48.656715959000088 ], [ -123.626272094999976, 48.656871864000067 ], [ -123.62650921099997, 48.65703449300004 ], [ -123.62685415, 48.657179441 ], [ -123.626996384999941, 48.657239195000088 ], [ -123.627017512999942, 48.657348557 ], [ -123.627000581999951, 48.657405529000116 ], [ -123.627056676000038, 48.657549165000034 ], [ -123.627098306999955, 48.657620898000054 ], [ -123.627141162999948, 48.65779158900007 ], [ -123.627155625999976, 48.657863493000036 ], [ -123.62714449099991, 48.658061469000145 ], [ -123.627147180999913, 48.658277362000028 ], [ -123.627147973999968, 48.65834032300009 ], [ -123.627135079999974, 48.658394377000093 ], [ -123.627135285999898, 48.658412364000121 ], [ -123.627219533999934, 48.658636812000104 ], [ -123.627248943999987, 48.658816572000049 ], [ -123.627259739999957, 48.658891790000105 ], [ -123.625717895999969, 48.65882590100005 ], [ -123.624166679999973, 48.658831824000025 ], [ -123.623867916999984, 48.658832944000096 ], [ -123.623351928999938, 48.658834920000075 ], [ -123.621749608999949, 48.658841 ], [ -123.62107059099999, 48.658843584000074 ], [ -123.619923615999951, 48.658847895000115 ], [ -123.61932422199996, 48.65898510100002 ], [ -123.617908486999937, 48.658965098000067 ], [ -123.617897054, 48.660303585000051 ], [ -123.617894996999937, 48.66054400400003 ], [ -123.617866809999953, 48.660543809000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.870535714285714", "sL_AssetLoss": "2688", "sL_BldgLoss": "2340", "sL_StrLoss": "1480", "sL_NStrLoss": "860", "sL_ContLoss": "348", "geom_point": "0101000020E6100000A09B892BDFEA5EC04662610CD5534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.669755312999925, 48.654671905000058 ], [ -123.67024705099999, 48.654640547000056 ], [ -123.670430128999953, 48.655163772000058 ], [ -123.669228328999949, 48.655137460000041 ], [ -123.669185805999959, 48.654991504000066 ], [ -123.66942969199999, 48.654903818 ], [ -123.669617797999976, 48.654836200000013 ], [ -123.669616221999917, 48.654681831000076 ], [ -123.669755312999925, 48.654671905000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287913185", "BldgCostT": "183176541", "sL_LossRatio": "0.769863310508168", "sL_AssetLoss": "669217.5", "sL_BldgLoss": "515206", "sL_StrLoss": "296341", "sL_NStrLoss": "218865", "sL_ContLoss": "154011.5", "geom_point": "0101000020E61000001FE3D4183EE95EC0BF80C95377534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.62650921099997, 48.65703449300004 ], [ -123.626272094999976, 48.656871864000067 ], [ -123.62604475199997, 48.656715959000088 ], [ -123.625988998999915, 48.656677710000068 ], [ -123.625905652999975, 48.656618159000097 ], [ -123.625599809999954, 48.656399638000067 ], [ -123.624934348999915, 48.655924101000011 ], [ -123.623989542999936, 48.655572791000097 ], [ -123.623851195999961, 48.65552133700006 ], [ -123.623541599999939, 48.65531612500012 ], [ -123.623289390999958, 48.65502205500006 ], [ -123.623184072999933, 48.654817738000126 ], [ -123.623143706999912, 48.654739385000099 ], [ -123.623143193999979, 48.654713735000016 ], [ -123.623141328999907, 48.654620739000045 ], [ -123.623138374999982, 48.65447234700013 ], [ -123.62312253, 48.653682517000092 ], [ -123.625663553999971, 48.653509369000027 ], [ -123.625655025999933, 48.652147236000069 ], [ -123.625653589999942, 48.651960619000079 ], [ -123.625664754999917, 48.651088510000129 ], [ -123.625675697, 48.65023317300011 ], [ -123.627237666999989, 48.650240731000082 ], [ -123.627376401999953, 48.650241388000076 ], [ -123.62765318799994, 48.64983775200006 ], [ -123.628525803999935, 48.648549887000065 ], [ -123.629462080999957, 48.646671499000021 ], [ -123.63037232, 48.64670442000007 ], [ -123.631096661999919, 48.646730573000106 ], [ -123.631097172999944, 48.646771446000116 ], [ -123.631051798, 48.646812187000045 ], [ -123.630859247000032, 48.646896054000088 ], [ -123.630786194999985, 48.646896454000078 ], [ -123.630726222999925, 48.646953994000064 ], [ -123.630024803999959, 48.647259494000096 ], [ -123.629913758, 48.64744100399999 ], [ -123.629887734999983, 48.64744114600007 ], [ -123.629883737999975, 48.647448398000058 ], [ -123.629884246999936, 48.647489239000031 ], [ -123.629478508999938, 48.648152405000118 ], [ -123.628706684999926, 48.649876581000058 ], [ -123.628692040999979, 48.649876661000107 ], [ -123.628692434999891, 48.649908414000059 ], [ -123.62834333399995, 48.650688225000103 ], [ -123.62829481199995, 48.650688490000093 ], [ -123.62829611899997, 48.650793688000107 ], [ -123.628263296999961, 48.650867005000059 ], [ -123.62819723699999, 48.650958908000071 ], [ -123.628111284999974, 48.650959378000081 ], [ -123.628096537999951, 48.650982462000044 ], [ -123.627918634999915, 48.651346502000102 ], [ -123.627808802999965, 48.651499299000079 ], [ -123.627352995999971, 48.6518981030001 ], [ -123.627255699999964, 48.652043588000076 ], [ -123.627213832999956, 48.652043816000102 ], [ -123.627176938999966, 48.652074761000094 ], [ -123.627091358999962, 48.652181011000053 ], [ -123.627092678999972, 48.652287344000065 ], [ -123.62707454299999, 48.652314461000103 ], [ -123.626983471999935, 48.652314956000033 ], [ -123.626884639999957, 48.652437662000096 ], [ -123.626792437999939, 48.652497061000069 ], [ -123.626689801999973, 48.652646911000055 ], [ -123.626691238999925, 48.652762942000095 ], [ -123.626255613999973, 48.653216890000074 ], [ -123.626294095999981, 48.654071389000066 ], [ -123.626361595999953, 48.654134093000103 ], [ -123.626648480999961, 48.654141191000036 ], [ -123.627026389999955, 48.654031603000085 ], [ -123.627164505999971, 48.654121306000015 ], [ -123.627137898999933, 48.654283603000046 ], [ -123.626828212999968, 48.654537206000093 ], [ -123.627003337999938, 48.654647979000075 ], [ -123.627321291999948, 48.654849097000067 ], [ -123.627336207999974, 48.654984404000047 ], [ -123.62714720299995, 48.655065507000096 ], [ -123.626806589999958, 48.65485190100005 ], [ -123.626656985999972, 48.65492449000007 ], [ -123.627166186999929, 48.656613696000136 ], [ -123.627661101999962, 48.657023810000084 ], [ -123.628041205999949, 48.656985388000081 ], [ -123.62908291699992, 48.656756100000052 ], [ -123.629378012999922, 48.656475495000102 ], [ -123.62952441199999, 48.656123707000056 ], [ -123.630128093999986, 48.655625304000118 ], [ -123.63041888, 48.655640521000073 ], [ -123.630474038999949, 48.655666962000083 ], [ -123.630536340999967, 48.655804091000022 ], [ -123.6306787499999, 48.655803312000096 ], [ -123.630827313999959, 48.656062492000046 ], [ -123.631070579999943, 48.656078098000108 ], [ -123.63120380399999, 48.655861684000072 ], [ -123.631265787999965, 48.655259194000045 ], [ -123.631764017999927, 48.655022799000037 ], [ -123.632185079999971, 48.655074098000092 ], [ -123.632295603, 48.655208001000112 ], [ -123.632257306999975, 48.655424394000107 ], [ -123.63253099799999, 48.655548309000018 ], [ -123.632965811999924, 48.655538401000115 ], [ -123.633736796999969, 48.655326196000097 ], [ -123.633995492999986, 48.655397391000029 ], [ -123.634147312, 48.655639507000046 ], [ -123.634975994999962, 48.65567940200004 ], [ -123.635291712999987, 48.655581754000139 ], [ -123.635849569999948, 48.655409214000038 ], [ -123.63607208599997, 48.655340390000049 ], [ -123.636399107, 48.65540170200007 ], [ -123.636629590999931, 48.655364595000016 ], [ -123.636774011999989, 48.654896103000027 ], [ -123.636468302999987, 48.654411803000094 ], [ -123.636138580999926, 48.65426696600008 ], [ -123.635881399999931, 48.654153993000051 ], [ -123.63525701599994, 48.654193892000102 ], [ -123.634642906999957, 48.653863487000109 ], [ -123.634626396999934, 48.653629896000062 ], [ -123.634840506999979, 48.653538793000045 ], [ -123.635724594999928, 48.65351599400006 ], [ -123.63630649699995, 48.653396392000055 ], [ -123.636277304999965, 48.653271 ], [ -123.635854418999926, 48.653174202000066 ], [ -123.635279410999928, 48.652708488000016 ], [ -123.635330286999945, 48.652537611000106 ], [ -123.635585792999905, 48.652329589000075 ], [ -123.635515715999958, 48.652050506000087 ], [ -123.63614897599993, 48.651732896000112 ], [ -123.636406720999915, 48.651685899000029 ], [ -123.63666709200001, 48.651784213000035 ], [ -123.636942905999916, 48.652151608000132 ], [ -123.637226489999989, 48.652104592000057 ], [ -123.637656399999983, 48.651634604000066 ], [ -123.638182993000015, 48.651442407000083 ], [ -123.638275406999952, 48.651315608000111 ], [ -123.638207887999954, 48.650237494000052 ], [ -123.63893368, 48.649728998000079 ], [ -123.639169877999947, 48.649052494000031 ], [ -123.639695904999925, 48.64870790500008 ], [ -123.640304011999959, 48.648471505000018 ], [ -123.641299259999926, 48.648337896000079 ], [ -123.641303362, 48.648661445000123 ], [ -123.64214247399994, 48.648722913 ], [ -123.64225444, 48.648722290000102 ], [ -123.642313482999924, 48.647543817 ], [ -123.642896385999919, 48.647457396000043 ], [ -123.64406539499997, 48.647478812000095 ], [ -123.644966983999922, 48.647615278000096 ], [ -123.644977599999919, 48.647616886000122 ], [ -123.645957218999982, 48.647836299000033 ], [ -123.646448715999952, 48.648049908000118 ], [ -123.647182582999974, 48.648037093000056 ], [ -123.647478817999911, 48.647881804000058 ], [ -123.647544211999971, 48.64771950900009 ], [ -123.647705576999954, 48.647682394000078 ], [ -123.647802781999957, 48.647790701000105 ], [ -123.647752706999967, 48.648113987000087 ], [ -123.647902204999966, 48.648195109000049 ], [ -123.64807870599999, 48.648158104000053 ], [ -123.648442388999968, 48.647840499000019 ], [ -123.649243795999936, 48.64790891100008 ], [ -123.649489295999913, 48.648014294000092 ], [ -123.650039786999955, 48.6486238090001 ], [ -123.650193236999897, 48.648670468000063 ], [ -123.650938809999943, 48.648897307000112 ], [ -123.651973397999939, 48.649062507000032 ], [ -123.652833298999923, 48.649381486000031 ], [ -123.654131494999945, 48.649976802000047 ], [ -123.654848833999964, 48.650397165000072 ], [ -123.654979547999972, 48.650473766000061 ], [ -123.655078582999948, 48.650531802000039 ], [ -123.655621412999935, 48.650849899000072 ], [ -123.656589487999952, 48.651123303000084 ], [ -123.65687119599994, 48.651289427000158 ], [ -123.657753494999895, 48.651809812000046 ], [ -123.658694414999914, 48.652164394000074 ], [ -123.659271690999944, 48.652262113000056 ], [ -123.659271939999925, 48.652281111000043 ], [ -123.659583926999957, 48.652402777000084 ], [ -123.660047264999918, 48.652400123000049 ], [ -123.660886610999938, 48.652618701000094 ], [ -123.660905799999966, 48.652627375000122 ], [ -123.660906291999964, 48.652665084000041 ], [ -123.660988179999961, 48.652664614000066 ], [ -123.661315558999945, 48.652812603000079 ], [ -123.661315764999941, 48.652828320000019 ], [ -123.661412829999975, 48.652856573000037 ], [ -123.662852892999979, 48.653507513000086 ], [ -123.662976628999928, 48.653526472000088 ], [ -123.662983984999983, 48.653527582000073 ], [ -123.663736647999912, 48.653642941000101 ], [ -123.663921850999898, 48.653671317000025 ], [ -123.66437651399994, 48.653740995000142 ], [ -123.665822291999945, 48.65424520500008 ], [ -123.666944809999976, 48.65485049400008 ], [ -123.667462725999911, 48.65495606399999 ], [ -123.667526908999918, 48.654969149000046 ], [ -123.667936794999946, 48.655052713000138 ], [ -123.668170312999919, 48.65525779200005 ], [ -123.66849849, 48.655354699000043 ], [ -123.669084687999941, 48.655459999000136 ], [ -123.669272094999954, 48.655287703000077 ], [ -123.669267487999932, 48.655271887000055 ], [ -123.66970474499999, 48.655281461000122 ], [ -123.669704090999957, 48.655294662000145 ], [ -123.67021962699999, 48.65530594800007 ], [ -123.670182470999976, 48.656056341000067 ], [ -123.670746772, 48.656068693000059 ], [ -123.670814574999937, 48.656262463000068 ], [ -123.670751138999918, 48.656268436000097 ], [ -123.670575094999919, 48.656305462000127 ], [ -123.670466475999902, 48.656306095000076 ], [ -123.670263034999962, 48.656325258000045 ], [ -123.670127607, 48.656353048000035 ], [ -123.670041008999959, 48.656358545000082 ], [ -123.669815546999928, 48.656372843000071 ], [ -123.669734209999902, 48.65638231200009 ], [ -123.669544950000031, 48.656446396000028 ], [ -123.669227, 48.656504429000037 ], [ -123.668909390999914, 48.656552017000095 ], [ -123.66865669699996, 48.656561811000074 ], [ -123.66842081599998, 48.656535903000126 ], [ -123.667988722999894, 48.656446192000061 ], [ -123.667252482999913, 48.656118192000058 ], [ -123.665669406999925, 48.655648979000084 ], [ -123.660821260999967, 48.65385101400004 ], [ -123.66061389299999, 48.653774112000065 ], [ -123.660572031999962, 48.653757480000088 ], [ -123.65903859, 48.653149084000056 ], [ -123.658875011999925, 48.653113899000026 ], [ -123.656691311999964, 48.653056890000052 ], [ -123.656379414999947, 48.653004000000109 ], [ -123.65600062599998, 48.652906405000053 ], [ -123.655608602999948, 48.652749108000094 ], [ -123.655484992999902, 48.652917572000113 ], [ -123.655495165999952, 48.653066550000091 ], [ -123.654253786999959, 48.653088233000098 ], [ -123.65424017699999, 48.653088479000104 ], [ -123.653451072999985, 48.653093262 ], [ -123.652772168999931, 48.653097378000112 ], [ -123.652745022, 48.653097522000039 ], [ -123.652572315999947, 48.653098576000026 ], [ -123.651021922999988, 48.653123715000092 ], [ -123.650805903999938, 48.653127189000031 ], [ -123.650155110999933, 48.653129099000054 ], [ -123.649541313999919, 48.653130983000011 ], [ -123.649439310000034, 48.653131307000081 ], [ -123.647823873999954, 48.653122594000081 ], [ -123.647568894999921, 48.653125097000022 ], [ -123.6464535, 48.653146393000029 ], [ -123.646295992999939, 48.653151907000044 ], [ -123.645060985, 48.653180517000045 ], [ -123.645033797999972, 48.651151894000037 ], [ -123.64202841099997, 48.651208785000051 ], [ -123.64105942, 48.651205304000051 ], [ -123.64064270599999, 48.651216816000044 ], [ -123.640327925999912, 48.651275710000107 ], [ -123.640089126999939, 48.651362316000082 ], [ -123.639709722999939, 48.651574732000043 ], [ -123.639548355999978, 48.651737895000046 ], [ -123.639354820999969, 48.652029019000047 ], [ -123.63933577, 48.652057684000077 ], [ -123.639327318999975, 48.652110633000163 ], [ -123.639256986999968, 48.652552264000057 ], [ -123.639246912999965, 48.652615505000085 ], [ -123.639242775999946, 48.652641495000118 ], [ -123.639240360999949, 48.652646868000048 ], [ -123.639224915999961, 48.652681303000129 ], [ -123.639184764999968, 48.652770911000047 ], [ -123.639113068999976, 48.652848627000076 ], [ -123.638839774999937, 48.652980726000123 ], [ -123.638779673999963, 48.653009793000166 ], [ -123.638402375999988, 48.653317513000054 ], [ -123.63832028799996, 48.653384488000036 ], [ -123.637914138999946, 48.653644060000097 ], [ -123.637772504999987, 48.653792363 ], [ -123.637693495999955, 48.653934804000045 ], [ -123.637685484999963, 48.654156921000016 ], [ -123.63768143399993, 48.654270012000076 ], [ -123.637666116999981, 48.654695870000069 ], [ -123.637655993999886, 48.65473682600004 ], [ -123.637606579999968, 48.654936848000041 ], [ -123.637596375999962, 48.65497824200007 ], [ -123.63747923699998, 48.655185062000029 ], [ -123.637474364999932, 48.655193664000109 ], [ -123.637195420999944, 48.655430830000057 ], [ -123.637044576999955, 48.655509035000058 ], [ -123.636891960999904, 48.655588144 ], [ -123.63659616299999, 48.65567440800006 ], [ -123.636036904999941, 48.655766526000029 ], [ -123.635972298999945, 48.65577716400005 ], [ -123.635737733999989, 48.655815802000077 ], [ -123.635730383999928, 48.655927630000079 ], [ -123.635650901999938, 48.657138856000067 ], [ -123.6334988, 48.657151409000043 ], [ -123.63333819099995, 48.657139866000101 ], [ -123.63297149, 48.657113517000013 ], [ -123.632772009999911, 48.657099186000018 ], [ -123.632496332999949, 48.657103654000103 ], [ -123.63136499099997, 48.657121994000086 ], [ -123.631011483999885, 48.657099550000098 ], [ -123.630774495999944, 48.657084508000089 ], [ -123.628721294999977, 48.657236841000085 ], [ -123.628719652999948, 48.657237259000041 ], [ -123.628697685999924, 48.657242889000067 ], [ -123.628362356999943, 48.65726346600006 ], [ -123.628320984999959, 48.65726599400012 ], [ -123.628262164999938, 48.657264803000011 ], [ -123.628140106999979, 48.657262352000039 ], [ -123.62804516599999, 48.657260419000089 ], [ -123.627922601999941, 48.657257945000083 ], [ -123.627745211999979, 48.657254357000078 ], [ -123.627133852999989, 48.657241983000119 ], [ -123.626996384999941, 48.657239195000088 ], [ -123.62685415, 48.657179441 ], [ -123.62650921099997, 48.65703449300004 ] ], [ [ -123.653572968999967, 48.652567213000069 ], [ -123.65357759399997, 48.652925204000077 ], [ -123.653753739999914, 48.652928762000016 ], [ -123.654255092000014, 48.652972943000137 ], [ -123.654800189999946, 48.652969846000111 ], [ -123.654795324999967, 48.652594156000056 ], [ -123.653572968999967, 48.652567213000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "226865392", "BldgCostT": "152266976", "sL_LossRatio": "0.817588294075114", "sL_AssetLoss": "470640.3", "sL_BldgLoss": "384790", "sL_StrLoss": "260095", "sL_NStrLoss": "124695", "sL_ContLoss": "85850.3", "geom_point": "0101000020E6100000C191FE667BE95EC0BC3E07F1DC534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.649731860999964, 48.657804055000028 ], [ -123.649606675999934, 48.657785952000026 ], [ -123.648323475, 48.657772936000057 ], [ -123.645363027999935, 48.657552941000077 ], [ -123.645106311999953, 48.657561289000064 ], [ -123.644675682999946, 48.657594866000061 ], [ -123.644672820999986, 48.657370381000135 ], [ -123.643340815999949, 48.657340897000061 ], [ -123.643321663, 48.657723272000077 ], [ -123.642003666, 48.65769408200002 ], [ -123.642003727999963, 48.657688909000051 ], [ -123.641493399999931, 48.656385546000088 ], [ -123.64122532899999, 48.656007236000043 ], [ -123.640956040999953, 48.655625569000101 ], [ -123.639852252999944, 48.654683295000119 ], [ -123.638481340999988, 48.654229864000094 ], [ -123.638116733999965, 48.654142896000081 ], [ -123.637685484999963, 48.654156921000016 ], [ -123.637693495999955, 48.653934804000045 ], [ -123.637772504999987, 48.653792363 ], [ -123.637914138999946, 48.653644060000097 ], [ -123.63832028799996, 48.653384488000036 ], [ -123.638402375999988, 48.653317513000054 ], [ -123.638779673999963, 48.653009793000166 ], [ -123.638839774999937, 48.652980726000123 ], [ -123.639113068999976, 48.652848627000076 ], [ -123.639184764999968, 48.652770911000047 ], [ -123.639224915999961, 48.652681303000129 ], [ -123.639240360999949, 48.652646868000048 ], [ -123.639242775999946, 48.652641495000118 ], [ -123.639246912999965, 48.652615505000085 ], [ -123.639256986999968, 48.652552264000057 ], [ -123.639327318999975, 48.652110633000163 ], [ -123.63933577, 48.652057684000077 ], [ -123.639354820999969, 48.652029019000047 ], [ -123.639548355999978, 48.651737895000046 ], [ -123.639709722999939, 48.651574732000043 ], [ -123.640089126999939, 48.651362316000082 ], [ -123.640327925999912, 48.651275710000107 ], [ -123.64064270599999, 48.651216816000044 ], [ -123.64105942, 48.651205304000051 ], [ -123.64202841099997, 48.651208785000051 ], [ -123.645033797999972, 48.651151894000037 ], [ -123.645060985, 48.653180517000045 ], [ -123.646295992999939, 48.653151907000044 ], [ -123.6464535, 48.653146393000029 ], [ -123.647568894999921, 48.653125097000022 ], [ -123.647823873999954, 48.653122594000081 ], [ -123.649439310000034, 48.653131307000081 ], [ -123.649541313999919, 48.653130983000011 ], [ -123.650155110999933, 48.653129099000054 ], [ -123.650805903999938, 48.653127189000031 ], [ -123.651021922999988, 48.653123715000092 ], [ -123.652572315999947, 48.653098576000026 ], [ -123.652745022, 48.653097522000039 ], [ -123.652772168999931, 48.653097378000112 ], [ -123.653451072999985, 48.653093262 ], [ -123.65424017699999, 48.653088479000104 ], [ -123.654253786999959, 48.653088233000098 ], [ -123.655495165999952, 48.653066550000091 ], [ -123.656850077999977, 48.653841833000051 ], [ -123.657238878999934, 48.654064904000066 ], [ -123.657438680999945, 48.654271194000017 ], [ -123.657641881999979, 48.654682211000065 ], [ -123.657716208999972, 48.654933487000086 ], [ -123.657973352999932, 48.655899275000117 ], [ -123.657991388999989, 48.655967094000033 ], [ -123.657970383999952, 48.656172085000065 ], [ -123.657877414999916, 48.656406212000093 ], [ -123.657721704, 48.656619095000103 ], [ -123.657562796999954, 48.656789604 ], [ -123.657162602999961, 48.657093591000049 ], [ -123.656737913999962, 48.657374396000094 ], [ -123.65655052399994, 48.657544300000069 ], [ -123.656397508999987, 48.657730214000047 ], [ -123.656287316, 48.657928789000088 ], [ -123.656263619999947, 48.658186907000058 ], [ -123.656314502999962, 48.658443100000085 ], [ -123.65642877599997, 48.658952192000108 ], [ -123.655082701999959, 48.658949601000124 ], [ -123.653027518999963, 48.658974599000011 ], [ -123.652135109999932, 48.659198296000099 ], [ -123.650883414999925, 48.659286890000097 ], [ -123.650799808999977, 48.659087705000047 ], [ -123.650740618999947, 48.658209431000053 ], [ -123.65078162499999, 48.657957929000077 ], [ -123.649945148999933, 48.657835314000124 ], [ -123.649731860999964, 48.657804055000028 ] ], [ [ -123.651172865999953, 48.655977071000102 ], [ -123.65116916, 48.655689299000073 ], [ -123.651532787999955, 48.655687243000102 ], [ -123.651639438999965, 48.655601361000045 ], [ -123.651893339999944, 48.655639662000034 ], [ -123.652039338999941, 48.655612861000115 ], [ -123.652048141999941, 48.655614190000058 ], [ -123.652377838999897, 48.655663962000041 ], [ -123.652656373999932, 48.655950769000079 ], [ -123.653209300999947, 48.655947634 ], [ -123.65320232899991, 48.655407901000046 ], [ -123.653609657999979, 48.655405590000072 ], [ -123.653606689999947, 48.655176015000066 ], [ -123.653606168999943, 48.655135723000107 ], [ -123.654013495999976, 48.655133411000115 ], [ -123.654010004999961, 48.654863543000097 ], [ -123.655639302999973, 48.654854281000041 ], [ -123.655634221999946, 48.654462464000069 ], [ -123.655567437999977, 48.654402462000078 ], [ -123.653522172999914, 48.654326544000106 ], [ -123.646263933999961, 48.654367490000062 ], [ -123.646262256999933, 48.654236385000047 ], [ -123.645617638999965, 48.654178862000073 ], [ -123.645386197999954, 48.654185997000042 ], [ -123.645295805999979, 48.655992240000089 ], [ -123.646284630999915, 48.655986695000124 ], [ -123.646288079999948, 48.656256563000085 ], [ -123.64832476, 48.656245117000019 ], [ -123.648338603999946, 48.657324586000065 ], [ -123.649153292999983, 48.65731999900003 ], [ -123.64914289799998, 48.656510396000051 ], [ -123.650364910999954, 48.656503503000081 ], [ -123.650361439999969, 48.65623363600011 ], [ -123.650857727999934, 48.656230833000087 ], [ -123.651172865999953, 48.655977071000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166216386", "BldgCostT": "110607079", "sL_LossRatio": "0.892429179880685", "sL_AssetLoss": "384629.4", "sL_BldgLoss": "343254.5", "sL_StrLoss": "267348.5", "sL_NStrLoss": "75906", "sL_ContLoss": "41374.9", "geom_point": "0101000020E6100000DFE4F1936EEA5EC0828DE36E2D544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.66129993899996, 48.659758061000026 ], [ -123.660726522999965, 48.659683177000076 ], [ -123.660183293, 48.659686290000124 ], [ -123.660197389999922, 48.660765757 ], [ -123.656938417999967, 48.660784389000106 ], [ -123.656934910999922, 48.660514522000064 ], [ -123.656716009999982, 48.660515770000131 ], [ -123.656708365, 48.660462271 ], [ -123.656690381999937, 48.660336694000073 ], [ -123.656672485999934, 48.660211112000113 ], [ -123.656654536999966, 48.660085522000131 ], [ -123.656636608, 48.659959955000055 ], [ -123.656618658999889, 48.659834365000037 ], [ -123.656608227999953, 48.65976110200004 ], [ -123.656554501999921, 48.659518916000103 ], [ -123.65642877599997, 48.658952192000108 ], [ -123.656314502999962, 48.658443100000085 ], [ -123.656263619999947, 48.658186907000058 ], [ -123.656287316, 48.657928789000088 ], [ -123.656397508999987, 48.657730214000047 ], [ -123.65655052399994, 48.657544300000069 ], [ -123.656737913999962, 48.657374396000094 ], [ -123.657162602999961, 48.657093591000049 ], [ -123.657562796999954, 48.656789604 ], [ -123.657721704, 48.656619095000103 ], [ -123.657877414999916, 48.656406212000093 ], [ -123.657970383999952, 48.656172085000065 ], [ -123.657991388999989, 48.655967094000033 ], [ -123.657973352999932, 48.655899275000117 ], [ -123.657716208999972, 48.654933487000086 ], [ -123.657641881999979, 48.654682211000065 ], [ -123.657438680999945, 48.654271194000017 ], [ -123.657238878999934, 48.654064904000066 ], [ -123.656850077999977, 48.653841833000051 ], [ -123.655495165999952, 48.653066550000091 ], [ -123.655484992999902, 48.652917572000113 ], [ -123.655608602999948, 48.652749108000094 ], [ -123.65600062599998, 48.652906405000053 ], [ -123.656379414999947, 48.653004000000109 ], [ -123.656691311999964, 48.653056890000052 ], [ -123.658875011999925, 48.653113899000026 ], [ -123.65903859, 48.653149084000056 ], [ -123.660572031999962, 48.653757480000088 ], [ -123.66061389299999, 48.653774112000065 ], [ -123.660821260999967, 48.65385101400004 ], [ -123.665669406999925, 48.655648979000084 ], [ -123.667252482999913, 48.656118192000058 ], [ -123.667988722999894, 48.656446192000061 ], [ -123.66842081599998, 48.656535903000126 ], [ -123.66865669699996, 48.656561811000074 ], [ -123.668909390999914, 48.656552017000095 ], [ -123.669227, 48.656504429000037 ], [ -123.669544950000031, 48.656446396000028 ], [ -123.669734209999902, 48.65638231200009 ], [ -123.669815546999928, 48.656372843000071 ], [ -123.670041008999959, 48.656358545000082 ], [ -123.670127607, 48.656353048000035 ], [ -123.670263034999962, 48.656325258000045 ], [ -123.670466475999902, 48.656306095000076 ], [ -123.670575094999919, 48.656305462000127 ], [ -123.670751138999918, 48.656268436000097 ], [ -123.670814574999937, 48.656262463000068 ], [ -123.670746772, 48.656068693000059 ], [ -123.671113938999909, 48.656076727000062 ], [ -123.671106435999889, 48.656228325000086 ], [ -123.671000194, 48.658374637000136 ], [ -123.670935663999941, 48.659678187000033 ], [ -123.668725743999971, 48.659629809000123 ], [ -123.6687022, 48.660104940000068 ], [ -123.668386041999952, 48.660098015000045 ], [ -123.66833905299994, 48.661046129000063 ], [ -123.665199930999918, 48.661106727000075 ], [ -123.662910445999941, 48.661155233000024 ], [ -123.662977313999988, 48.659809176000103 ], [ -123.66129993899996, 48.659758061000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.884992653190898", "sL_AssetLoss": "10072.4", "sL_BldgLoss": "8914", "sL_StrLoss": "6300", "sL_NStrLoss": "2614", "sL_ContLoss": "1158.4", "geom_point": "0101000020E610000055F27710F7EA5EC00B3596F2D2534840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.670430128999953, 48.655163772000058 ], [ -123.67024705099999, 48.654640547000056 ], [ -123.670190446000035, 48.654144290000076 ], [ -123.670302664999952, 48.654192934000037 ], [ -123.670604001999919, 48.654389102000025 ], [ -123.670836473999941, 48.654513687000112 ], [ -123.671109335999958, 48.654611046000127 ], [ -123.67125701, 48.654654517000068 ], [ -123.671259263999943, 48.654655163000022 ], [ -123.671449615999975, 48.654672045000055 ], [ -123.671545113999983, 48.654707473 ], [ -123.671790947999938, 48.654814004000087 ], [ -123.672008304, 48.654821725000041 ], [ -123.67221196399997, 48.654820544000117 ], [ -123.672510781999918, 48.654827780000076 ], [ -123.67260582899999, 48.654827233000084 ], [ -123.672830175999977, 48.654825916000021 ], [ -123.672810889999965, 48.655215854000083 ], [ -123.670430128999953, 48.655163772000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9390417", "BldgCostT": "6266667", "sL_LossRatio": "0.723938378672993", "sL_AssetLoss": "62381", "sL_BldgLoss": "45160", "sL_StrLoss": "23920", "sL_NStrLoss": "21240", "sL_ContLoss": "17221", "geom_point": "0101000020E6100000D6C7BFA6B9EC5EC06C10BDF7FD544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.697616403999959, 48.668065394000109 ], [ -123.69512744599993, 48.666692267000023 ], [ -123.694759757999947, 48.667094982000023 ], [ -123.69478427899999, 48.666594614000054 ], [ -123.696299567999986, 48.666627414000061 ], [ -123.696368593000017, 48.665217950000027 ], [ -123.699466040999965, 48.665284930000048 ], [ -123.699528403999963, 48.664009698000029 ], [ -123.697217641999984, 48.663959738000052 ], [ -123.697393922999964, 48.660358260000073 ], [ -123.698934194999978, 48.660391567000026 ], [ -123.698952480999964, 48.660017697000086 ], [ -123.699012480999968, 48.66001899400009 ], [ -123.699019691999951, 48.660046408000071 ], [ -123.699240520000018, 48.66042678400003 ], [ -123.699338596999951, 48.660595794000116 ], [ -123.699615829, 48.66088850000007 ], [ -123.699939607999951, 48.661127904000054 ], [ -123.70154579299998, 48.662315492000047 ], [ -123.701679917999925, 48.662485103000044 ], [ -123.701715012999927, 48.662655295 ], [ -123.701668867999928, 48.662855535000162 ], [ -123.701665004999967, 48.662872405000037 ], [ -123.701320900999946, 48.663448996000078 ], [ -123.701284314999953, 48.663727604000087 ], [ -123.701311909999959, 48.663967108000044 ], [ -123.70144820899999, 48.66431430800003 ], [ -123.701477921999981, 48.664537603000042 ], [ -123.701376688, 48.664887804000109 ], [ -123.701131187999948, 48.665168196000074 ], [ -123.699971724999955, 48.666077340000122 ], [ -123.699765510999924, 48.666239023000109 ], [ -123.69970150599994, 48.666289204000108 ], [ -123.699315655999939, 48.666640115000121 ], [ -123.699302682999942, 48.66665189 ], [ -123.699083927999979, 48.666785769000043 ], [ -123.699072106999921, 48.666793004000063 ], [ -123.69878608199997, 48.666902204000046 ], [ -123.697938635999932, 48.667605528000088 ], [ -123.697616403999959, 48.668065394000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90942994", "BldgCostT": "60589076", "sL_LossRatio": "0.862353068058042", "sL_AssetLoss": "195643.3", "sL_BldgLoss": "168713.6", "sL_StrLoss": "129256.6", "sL_NStrLoss": "39457", "sL_ContLoss": "26929.7", "geom_point": "0101000020E6100000439B57333AE95EC0DF570EC216584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.628275932999912, 48.695551441000084 ], [ -123.628247875999989, 48.695479607000038 ], [ -123.628123539999947, 48.695318362000094 ], [ -123.627903359999934, 48.695094650000044 ], [ -123.627819780999985, 48.694933188000064 ], [ -123.627763304999959, 48.694762552000014 ], [ -123.627748257999926, 48.694645682000058 ], [ -123.627760974999916, 48.694573653000049 ], [ -123.627785800999959, 48.694384594000049 ], [ -123.627810384999947, 48.694177558000071 ], [ -123.627848580999952, 48.693970429000039 ], [ -123.62787332, 48.693772368000062 ], [ -123.62788591499999, 48.693691351999981 ], [ -123.627898905999942, 48.693646292000132 ], [ -123.627977885999954, 48.693438935000053 ], [ -123.627977645000016, 48.693420957000086 ], [ -123.62797572799991, 48.693268039000074 ], [ -123.627933973999944, 48.693187297000122 ], [ -123.627944217999953, 48.692917360000088 ], [ -123.627929725999977, 48.692845481000063 ], [ -123.627941626999984, 48.69271046100004 ], [ -123.627952873999945, 48.692521483000121 ], [ -123.62796387799996, 48.692314528000026 ], [ -123.627961527999943, 48.692125608000055 ], [ -123.627973222999984, 48.69197259800017 ], [ -123.628027135999943, 48.691936321000057 ], [ -123.628092260999935, 48.691711080000054 ], [ -123.628145741999958, 48.691638800000085 ], [ -123.628306772999963, 48.691476002000073 ], [ -123.628373674999935, 48.691394665000132 ], [ -123.628507323999969, 48.691214013000021 ], [ -123.628641178999899, 48.691051351000041 ], [ -123.6287082, 48.69097900500001 ], [ -123.628801876999972, 48.690861574000053 ], [ -123.628855528999978, 48.690807296000123 ], [ -123.629016362999934, 48.690626471000051 ], [ -123.629045831, 48.690600012000083 ], [ -123.629540331999948, 48.69061101800002 ], [ -123.629518743999952, 48.691039173000064 ], [ -123.629628554999925, 48.691041617000046 ], [ -123.62952024399999, 48.693189696000083 ], [ -123.630136565999962, 48.693203410000073 ], [ -123.630119248999961, 48.693546927000092 ], [ -123.633143282999953, 48.693614161000021 ], [ -123.633167035999961, 48.693142380000033 ], [ -123.635783863999976, 48.693200490000059 ], [ -123.635799546999962, 48.692888644000064 ], [ -123.636112539, 48.692895590000028 ], [ -123.63614707, 48.692208850000043 ], [ -123.638082337999961, 48.692251779000124 ], [ -123.638091700999922, 48.692065398000139 ], [ -123.639651855999915, 48.69209998000013 ], [ -123.639701820999946, 48.691104790000075 ], [ -123.638968171999949, 48.691088531000091 ], [ -123.639004429999929, 48.690366548000092 ], [ -123.63833989299998, 48.69035181600006 ], [ -123.638520780999926, 48.686750593000092 ], [ -123.6389747299999, 48.686760657000086 ], [ -123.63903712799997, 48.685518001000105 ], [ -123.640180674999897, 48.685543344000067 ], [ -123.640266275, 48.683837726000021 ], [ -123.641899148999954, 48.683873893000055 ], [ -123.64194695799992, 48.682920565000067 ], [ -123.643061968, 48.682945246000045 ], [ -123.643063112999968, 48.682922392000137 ], [ -123.643955618999897, 48.682942140000058 ], [ -123.644075305999976, 48.680553310000064 ], [ -123.644753076999933, 48.680568301000086 ], [ -123.644765392999929, 48.680322426000089 ], [ -123.646204372999946, 48.680354241000089 ], [ -123.646231460999957, 48.679813060000107 ], [ -123.648171266999924, 48.679855918000037 ], [ -123.648182193999929, 48.679637408000055 ], [ -123.649012632999955, 48.679655745000126 ], [ -123.649043294999956, 48.679042428000095 ], [ -123.649986615999921, 48.679063249000116 ], [ -123.649990859999932, 48.678978351000104 ], [ -123.654454114999922, 48.679076752000078 ], [ -123.654472898999927, 48.678700159000108 ], [ -123.65523736099999, 48.678716995000059 ], [ -123.655256686999948, 48.678329379000097 ], [ -123.660675955999949, 48.678448565000046 ], [ -123.660563961999969, 48.680699838000116 ], [ -123.660256326999956, 48.680721828000095 ], [ -123.658804042999975, 48.681793980000045 ], [ -123.657933695999972, 48.682999506000073 ], [ -123.657200874999916, 48.683648228000081 ], [ -123.655530063999919, 48.68361146000008 ], [ -123.655234369999903, 48.683475376000096 ], [ -123.654168058999943, 48.683470192000065 ], [ -123.653394406999936, 48.683562361000021 ], [ -123.651918461999941, 48.684205324000104 ], [ -123.651882245999957, 48.684252371000056 ], [ -123.649318702999935, 48.684195822000085 ], [ -123.649314777999962, 48.684274343000034 ], [ -123.648422244999921, 48.684254640000084 ], [ -123.648363842999942, 48.685422395000096 ], [ -123.649332692999934, 48.685443783000018 ], [ -123.649241297999978, 48.687271817000038 ], [ -123.649091202999955, 48.687385539000054 ], [ -123.648888810999935, 48.688208796000026 ], [ -123.649173788999931, 48.688622010000117 ], [ -123.649152637999961, 48.689045033000099 ], [ -123.647520419999935, 48.689008996000084 ], [ -123.64744141099996, 48.690587967000141 ], [ -123.647530965999948, 48.69058994400006 ], [ -123.64737240099997, 48.69375859500007 ], [ -123.647051424999958, 48.694123517000044 ], [ -123.646979159999972, 48.694182954000077 ], [ -123.646447232999947, 48.694171204000092 ], [ -123.646423773999956, 48.694639754 ], [ -123.645726045999965, 48.695213611000106 ], [ -123.645090262999986, 48.69565330700005 ], [ -123.644995716000011, 48.697063427000018 ], [ -123.643219288999958, 48.697816214000021 ], [ -123.639693957999938, 48.696684966000085 ], [ -123.639699211999925, 48.696580318 ], [ -123.639496415999972, 48.696575824000064 ], [ -123.639494154999909, 48.696620846000073 ], [ -123.639185177999977, 48.696521689000022 ], [ -123.637706070999968, 48.695764321000091 ], [ -123.636275504000011, 48.696149556000115 ], [ -123.635813697999978, 48.695662490000103 ], [ -123.635174352999968, 48.69628069700012 ], [ -123.635157586999938, 48.696296896000064 ], [ -123.634964415999917, 48.696596236000111 ], [ -123.634954635999961, 48.696611374000049 ], [ -123.634822104999955, 48.696816690000098 ], [ -123.634707888999927, 48.696950408000056 ], [ -123.634668897999944, 48.696996062000025 ], [ -123.63463468499998, 48.697036102000069 ], [ -123.634623464999919, 48.697043225000122 ], [ -123.63444271499999, 48.697157997 ], [ -123.63424290799999, 48.69721840799999 ], [ -123.634073814999979, 48.697242088000088 ], [ -123.634003791999973, 48.697251912000134 ], [ -123.630865483999941, 48.697232849000024 ], [ -123.630457881999945, 48.69723036900006 ], [ -123.630281238999913, 48.697229289000063 ], [ -123.62982320399999, 48.697226485000023 ], [ -123.629407719999961, 48.697253125 ], [ -123.628725994999982, 48.697296799000071 ], [ -123.627844907999986, 48.697441187000074 ], [ -123.627204155999948, 48.697734696000076 ], [ -123.626837623999975, 48.69772653200004 ], [ -123.626844014, 48.69767892400008 ], [ -123.627050017999935, 48.697510272000045 ], [ -123.62734621599995, 48.697283769000087 ], [ -123.627521766999934, 48.697192847000046 ], [ -123.627791937999959, 48.697065422000065 ], [ -123.627994575999978, 48.696965361000103 ], [ -123.628035105000023, 48.696947131000087 ], [ -123.628062041999982, 48.696929016000084 ], [ -123.628344958999946, 48.696729547000139 ], [ -123.628438510999928, 48.696603101000029 ], [ -123.628464788, 48.696530971000094 ], [ -123.628516667, 48.696332784000013 ], [ -123.628514226999968, 48.696134859000082 ], [ -123.628498934999982, 48.69600001 ], [ -123.628455518999928, 48.69578434900005 ], [ -123.628427513999966, 48.695721527000039 ], [ -123.628275932999912, 48.695551441000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55064076", "BldgCostT": "36262408", "sL_LossRatio": "0.8742642855738", "sL_AssetLoss": "128127.16", "sL_BldgLoss": "112017", "sL_StrLoss": "85377", "sL_NStrLoss": "26640", "sL_ContLoss": "16110.16", "geom_point": "0101000020E6100000011077F52AE95EC031605EBAA8544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.636754928999935, 48.66232336200008 ], [ -123.63676022099996, 48.662313820000072 ], [ -123.636777160999983, 48.662192531000088 ], [ -123.637250593999951, 48.660945594000118 ], [ -123.637357002999977, 48.660724004000045 ], [ -123.637552119999967, 48.66031768199999 ], [ -123.63760173, 48.66021431000005 ], [ -123.637716245999968, 48.659975788000146 ], [ -123.637729302999986, 48.659948678000063 ], [ -123.637854179, 48.65968860900005 ], [ -123.637877494999955, 48.659639991000091 ], [ -123.637871541999971, 48.659619372000073 ], [ -123.637857808999954, 48.659571896000045 ], [ -123.637818250999956, 48.659544924000116 ], [ -123.63779231700002, 48.659527202000092 ], [ -123.637692939999937, 48.65949691900002 ], [ -123.637555795, 48.659455121000065 ], [ -123.637542190999966, 48.65945097700007 ], [ -123.637196615999954, 48.65934564900008 ], [ -123.637004506999958, 48.659287094000064 ], [ -123.636855037999922, 48.659281114000102 ], [ -123.636453805999949, 48.65926500200009 ], [ -123.636201890999956, 48.65920529300007 ], [ -123.63599960699996, 48.6591025070001 ], [ -123.635849308999966, 48.658936998000044 ], [ -123.635798194999936, 48.658793397000061 ], [ -123.635821000999925, 48.658152190000088 ], [ -123.635650901999938, 48.657138856000067 ], [ -123.635730383999928, 48.655927630000079 ], [ -123.635737733999989, 48.655815802000077 ], [ -123.635972298999945, 48.65577716400005 ], [ -123.636036904999941, 48.655766526000029 ], [ -123.63659616299999, 48.65567440800006 ], [ -123.636891960999904, 48.655588144 ], [ -123.637044576999955, 48.655509035000058 ], [ -123.637195420999944, 48.655430830000057 ], [ -123.637474364999932, 48.655193664000109 ], [ -123.63747923699998, 48.655185062000029 ], [ -123.637596375999962, 48.65497824200007 ], [ -123.637606579999968, 48.654936848000041 ], [ -123.637655993999886, 48.65473682600004 ], [ -123.637666116999981, 48.654695870000069 ], [ -123.63768143399993, 48.654270012000076 ], [ -123.637685484999963, 48.654156921000016 ], [ -123.638116733999965, 48.654142896000081 ], [ -123.638481340999988, 48.654229864000094 ], [ -123.639852252999944, 48.654683295000119 ], [ -123.640956040999953, 48.655625569000101 ], [ -123.64122532899999, 48.656007236000043 ], [ -123.641493399999931, 48.656385546000088 ], [ -123.642003727999963, 48.657688909000051 ], [ -123.642003666, 48.65769408200002 ], [ -123.64107025699991, 48.657673399000089 ], [ -123.641045102999925, 48.658175068000077 ], [ -123.641831359999969, 48.658170690000098 ], [ -123.641834785999919, 48.658440557000091 ], [ -123.641994686999951, 48.658439665000046 ], [ -123.641993647999968, 48.658525956000076 ], [ -123.64205396499996, 48.658439336000107 ], [ -123.642242139999979, 48.658438286000099 ], [ -123.642247196999946, 48.658836346000086 ], [ -123.643877201999928, 48.658872439000078 ], [ -123.643868118999947, 48.658159322000053 ], [ -123.644682823999943, 48.65815476600006 ], [ -123.644675682999946, 48.657594866000061 ], [ -123.645106311999953, 48.657561289000064 ], [ -123.645363027999935, 48.657552941000077 ], [ -123.648323475, 48.657772936000057 ], [ -123.649606675999934, 48.657785952000026 ], [ -123.649731860999964, 48.657804055000028 ], [ -123.649945148999933, 48.657835314000124 ], [ -123.65078162499999, 48.657957929000077 ], [ -123.650740618999947, 48.658209431000053 ], [ -123.650799808999977, 48.659087705000047 ], [ -123.650883414999925, 48.659286890000097 ], [ -123.652135109999932, 48.659198296000099 ], [ -123.653027518999963, 48.658974599000011 ], [ -123.655082701999959, 48.658949601000124 ], [ -123.65642877599997, 48.658952192000108 ], [ -123.656554501999921, 48.659518916000103 ], [ -123.656608227999953, 48.65976110200004 ], [ -123.656618658999889, 48.659834365000037 ], [ -123.656636608, 48.659959955000055 ], [ -123.656654536999966, 48.660085522000131 ], [ -123.656672485999934, 48.660211112000113 ], [ -123.656690381999937, 48.660336694000073 ], [ -123.656708365, 48.660462271 ], [ -123.656716009999982, 48.660515770000131 ], [ -123.65657177199995, 48.660516593000089 ], [ -123.656527540999932, 48.660516845000139 ], [ -123.65652053099997, 48.659977112000043 ], [ -123.654896663, 48.659986358000076 ], [ -123.654619437999969, 48.660013361 ], [ -123.654358057999929, 48.659989420000102 ], [ -123.654317102000022, 48.65998965100011 ], [ -123.654201038999943, 48.660017761000049 ], [ -123.653252644999952, 48.659995694000095 ], [ -123.652464550999952, 48.660000161000035 ], [ -123.652394237999886, 48.660018061000081 ], [ -123.652179626999953, 48.66000177500009 ], [ -123.65158994599993, 48.660005111000046 ], [ -123.651515238999963, 48.660010462000088 ], [ -123.650830820999957, 48.660009401000153 ], [ -123.650002678999897, 48.660014076000024 ], [ -123.650002600999954, 48.660008112000057 ], [ -123.649841937999895, 48.660007861000082 ], [ -123.64984717399993, 48.659745066000056 ], [ -123.649184481999953, 48.659748804000067 ], [ -123.649187946999916, 48.660018670000035 ], [ -123.648780579999979, 48.660020965000072 ], [ -123.648784042999949, 48.660290833000104 ], [ -123.64674720099994, 48.660302287000079 ], [ -123.646743747999963, 48.6600324200001 ], [ -123.646260156999972, 48.660035134000061 ], [ -123.646217398, 48.660889800000078 ], [ -123.646175731, 48.661722565000083 ], [ -123.646222445999939, 48.661723597000048 ], [ -123.646225172999891, 48.661669105000044 ], [ -123.651642500999955, 48.661788755000067 ], [ -123.65146271299993, 48.665390148000029 ], [ -123.651372507999952, 48.665388158000091 ], [ -123.651371712999975, 48.665404074000037 ], [ -123.651701726999988, 48.665402207000021 ], [ -123.651698246999956, 48.665132340000063 ], [ -123.652920468, 48.66512541900002 ], [ -123.652934413999944, 48.66620488500007 ], [ -123.651331276999912, 48.666213961000018 ], [ -123.651330952999942, 48.666220448000104 ], [ -123.645913116000017, 48.666100783000097 ], [ -123.645923321999973, 48.665896869000015 ], [ -123.64435347299991, 48.665862143000027 ], [ -123.644522223999971, 48.662492104000108 ], [ -123.643797541000012, 48.662476066000082 ], [ -123.643653200999921, 48.665357740000118 ], [ -123.640191608999956, 48.665281063000045 ], [ -123.640172381999975, 48.665664325000094 ], [ -123.637155983999946, 48.665597418000111 ], [ -123.63714247299994, 48.665866398000063 ], [ -123.636733671999934, 48.665857324000058 ], [ -123.636697494999964, 48.666577407000048 ], [ -123.63173499600002, 48.66646712800005 ], [ -123.632148378999929, 48.666285421000083 ], [ -123.632378536, 48.66613099100001 ], [ -123.632593612999926, 48.665979846000049 ], [ -123.633310011999981, 48.665755131000068 ], [ -123.6338478549999, 48.665494882000068 ], [ -123.634382465999948, 48.665325591000091 ], [ -123.634417279000019, 48.665295531000083 ], [ -123.634684401999934, 48.665064594000086 ], [ -123.6349563199999, 48.664627754000023 ], [ -123.63515199299999, 48.6643133460001 ], [ -123.635259261999977, 48.66422462400002 ], [ -123.63544910899999, 48.664067561000124 ], [ -123.635957073999961, 48.663870820000113 ], [ -123.635977343, 48.663862967000036 ], [ -123.636138829999979, 48.663752104000025 ], [ -123.636262457999976, 48.663612424000071 ], [ -123.63629391799995, 48.663545778000085 ], [ -123.636465790000031, 48.663181596000129 ], [ -123.636478074999957, 48.663052723000114 ], [ -123.636480126999956, 48.663031374000106 ], [ -123.636408462999896, 48.662784619000035 ], [ -123.63641002899999, 48.662671984000042 ], [ -123.636422555999985, 48.66265520900005 ], [ -123.636490010999964, 48.662564711000073 ], [ -123.636670781999982, 48.662474965000072 ], [ -123.63670429699998, 48.662414621000025 ], [ -123.636754928999935, 48.66232336200008 ] ], [ [ -123.640754137, 48.661688153000078 ], [ -123.64079372599997, 48.660898728000141 ], [ -123.640849049999943, 48.659795478000028 ], [ -123.640505292999975, 48.659797390000058 ], [ -123.64044981699999, 48.660903480000137 ], [ -123.640410843999945, 48.661680544000092 ], [ -123.640754137, 48.661688153000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.907939896199565", "sL_AssetLoss": "9556.8", "sL_BldgLoss": "8677", "sL_StrLoss": "6560", "sL_NStrLoss": "2117", "sL_ContLoss": "879.8", "geom_point": "0101000020E61000009177929D4CEC5EC009E024D510544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.688933107999958, 48.65767733900006 ], [ -123.688961683999963, 48.657095596000083 ], [ -123.688332121999935, 48.65708192400006 ], [ -123.688341150999989, 48.65689816000009 ], [ -123.688616159999981, 48.656899066000072 ], [ -123.690144698999944, 48.65690408800004 ], [ -123.690171072999973, 48.656893365 ], [ -123.690337797999945, 48.656825607000115 ], [ -123.690382613999972, 48.656807386000025 ], [ -123.690532794999982, 48.656651867000093 ], [ -123.690646895999961, 48.656533716000048 ], [ -123.690676793999927, 48.656493352000091 ], [ -123.691080879999959, 48.65594799200003 ], [ -123.69117984199994, 48.655814385000106 ], [ -123.691195693999987, 48.655792998000038 ], [ -123.691361389999955, 48.655675808000069 ], [ -123.691571243999988, 48.655586457000027 ], [ -123.691582909999937, 48.655581500000039 ], [ -123.691765708999981, 48.655557509000111 ], [ -123.692548609, 48.655574473000087 ], [ -123.692752550999941, 48.655578878000021 ], [ -123.692873494999958, 48.655581506 ], [ -123.693297010999942, 48.655569096000072 ], [ -123.693335184999938, 48.65556336700012 ], [ -123.69342862299996, 48.655549346000043 ], [ -123.693601606, 48.655523410000093 ], [ -123.693955718999987, 48.655434607000096 ], [ -123.6944752859999, 48.655239768000058 ], [ -123.694350083999964, 48.657794816000056 ], [ -123.688933107999958, 48.65767733900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.807106124357176", "sL_AssetLoss": "5347.5", "sL_BldgLoss": "4316", "sL_StrLoss": "2355", "sL_NStrLoss": "1961", "sL_ContLoss": "1031.5", "geom_point": "0101000020E6100000CB3DF2416EEB5EC093E1783E03544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.678078245, 48.657423244000064 ], [ -123.678074626999958, 48.657153378000061 ], [ -123.67766728499997, 48.657155775000021 ], [ -123.677660050999947, 48.656616043000049 ], [ -123.677350185999927, 48.65661786600004 ], [ -123.677349826999958, 48.655833624000124 ], [ -123.677290498999966, 48.655581481000077 ], [ -123.677483113999926, 48.655537536000089 ], [ -123.677645582999972, 48.655536580000096 ], [ -123.677645100999911, 48.655500579000012 ], [ -123.678143462999969, 48.655386876000094 ], [ -123.67839008699994, 48.655330595000116 ], [ -123.678806101999939, 48.655259861000047 ], [ -123.679271268999955, 48.655257118000087 ], [ -123.679274893999917, 48.655526983000115 ], [ -123.679682221999954, 48.655524581000051 ], [ -123.679707617999924, 48.65741364000008 ], [ -123.678078245, 48.657423244000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37215162", "BldgCostT": "23215744", "sL_LossRatio": "0.909657315488206", "sL_AssetLoss": "57860.8", "sL_BldgLoss": "52633.5", "sL_StrLoss": "39203.5", "sL_NStrLoss": "13430", "sL_ContLoss": "5227.3", "geom_point": "0101000020E6100000E67AEC785DE85EC05A9D3977FD554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.628022536999978, 48.674858771000153 ], [ -123.626845918999933, 48.674146908000054 ], [ -123.626338687999976, 48.67385285400006 ], [ -123.625649447999947, 48.673453266000088 ], [ -123.625360786999948, 48.673126854000067 ], [ -123.625284417999922, 48.672973721000098 ], [ -123.625277741999966, 48.672861643000068 ], [ -123.625262386999935, 48.672604573000136 ], [ -123.625428141999961, 48.671959227000087 ], [ -123.625490254999974, 48.671717345000069 ], [ -123.625484380999964, 48.671511711000065 ], [ -123.625371963999953, 48.671330127000083 ], [ -123.625263705999956, 48.671155252000098 ], [ -123.624916793999944, 48.67085459500008 ], [ -123.624922738999942, 48.670820764000027 ], [ -123.62496251099999, 48.670594729000079 ], [ -123.624992177999928, 48.67042609300006 ], [ -123.625002396999946, 48.670367979000055 ], [ -123.625136749999953, 48.670446678000076 ], [ -123.625831446999939, 48.670600071000095 ], [ -123.626200031999971, 48.670632618000127 ], [ -123.626280820999952, 48.670630617000022 ], [ -123.626524527999948, 48.670624534000048 ], [ -123.626545747999941, 48.670618419000043 ], [ -123.627182352999938, 48.670434595000103 ], [ -123.626779449999916, 48.670087616000103 ], [ -123.626655547999974, 48.6697836230001 ], [ -123.62659481599999, 48.669634635000101 ], [ -123.626574027999936, 48.66945569800005 ], [ -123.626638286999977, 48.669311128000103 ], [ -123.626817245999959, 48.669150170000066 ], [ -123.626952358999915, 48.669079262000018 ], [ -123.627424787999985, 48.66898885000009 ], [ -123.627585468999897, 48.668895084000056 ], [ -123.627652579999975, 48.668698944000035 ], [ -123.627684048999981, 48.66860705200002 ], [ -123.627753899, 48.668506465000085 ], [ -123.627793729999937, 48.668449051000067 ], [ -123.627839541999947, 48.668437059000013 ], [ -123.627958622999941, 48.66840584500008 ], [ -123.628304870999941, 48.668407691000013 ], [ -123.628698686999954, 48.668409799000109 ], [ -123.629022826999957, 48.668411533000068 ], [ -123.629161729999979, 48.668362809000065 ], [ -123.629420379999942, 48.668272106000053 ], [ -123.629566616999938, 48.668220820000023 ], [ -123.630069173999971, 48.668044559000094 ], [ -123.630616029999942, 48.66774124900013 ], [ -123.630786957999987, 48.667605335000076 ], [ -123.630860416999937, 48.667465470000074 ], [ -123.630881989999978, 48.667172106000081 ], [ -123.630993946999979, 48.666995239000066 ], [ -123.631351358999964, 48.666733294000032 ], [ -123.633556966999947, 48.666782345000058 ], [ -123.633519580999973, 48.667525461000075 ], [ -123.634705568999934, 48.667551817000039 ], [ -123.634645727999924, 48.668741852000061 ], [ -123.635129924999944, 48.66875260900008 ], [ -123.634948846999947, 48.672353932000057 ], [ -123.633662836999989, 48.672325359000055 ], [ -123.633654102999913, 48.672498964000084 ], [ -123.633355032999944, 48.672492317000049 ], [ -123.633297251999963, 48.673640570000039 ], [ -123.632099370000034, 48.673613937000027 ], [ -123.631407966999959, 48.673598559000069 ], [ -123.631404478999954, 48.673667816000076 ], [ -123.62922046599995, 48.673619209000094 ], [ -123.629202608999961, 48.673973470000107 ], [ -123.628176509999889, 48.673950618000063 ], [ -123.628182582999926, 48.674439106000058 ], [ -123.628590066999934, 48.674436884000023 ], [ -123.628590837999965, 48.674498863000075 ], [ -123.628591455999967, 48.674486610000017 ], [ -123.634010213999957, 48.674607155000096 ], [ -123.633988389999928, 48.675040952000124 ], [ -123.633829027, 48.678208442000027 ], [ -123.633040509999944, 48.678190919000045 ], [ -123.633028285999913, 48.67818174100006 ], [ -123.63248151699996, 48.677771305000114 ], [ -123.632461003999978, 48.677758460000064 ], [ -123.630022893999978, 48.676230392000065 ], [ -123.630012155999964, 48.676222871000036 ], [ -123.629623941999967, 48.675950623000084 ], [ -123.628388077999958, 48.675083963000141 ], [ -123.628346200999928, 48.675054604000117 ], [ -123.628058257999953, 48.674880387 ], [ -123.628022536999978, 48.674858771000153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9939583", "BldgCostT": "6358333", "sL_LossRatio": "0.809689253082999", "sL_AssetLoss": "24724.3", "sL_BldgLoss": "20019", "sL_StrLoss": "12920", "sL_NStrLoss": "7099", "sL_ContLoss": "4705.3", "geom_point": "0101000020E6100000A0D2565F3CEB5EC0B9BDA431DA544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.672940150999978, 48.661048859000111 ], [ -123.678357474, 48.661167151000051 ], [ -123.678179733999983, 48.664768593000076 ], [ -123.672761995999977, 48.664650293000051 ], [ -123.672940150999978, 48.661048859000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.9340497571029", "sL_AssetLoss": "1358.6", "sL_BldgLoss": "1269", "sL_StrLoss": "1020", "sL_NStrLoss": "249", "sL_ContLoss": "89.6", "geom_point": "0101000020E61000006DCFA8D06BEA5EC07C01E6EF18574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.66225874300001, 48.680852303000059 ], [ -123.661548965999913, 48.680629426000053 ], [ -123.66137409599996, 48.680641928000071 ], [ -123.661403948999975, 48.680041634000098 ], [ -123.66438875599998, 48.680107139000022 ], [ -123.664319087999942, 48.680442092000057 ], [ -123.663931038999976, 48.68067884500006 ], [ -123.66361871699992, 48.680869404000092 ], [ -123.663308093999959, 48.68095201200002 ], [ -123.662899817999943, 48.680971899000077 ], [ -123.662586694999945, 48.680893601000029 ], [ -123.66225874300001, 48.680852303000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8206250", "BldgCostT": "5450000", "sL_LossRatio": "0.688786482334869", "sL_AssetLoss": "24412.5", "sL_BldgLoss": "16815", "sL_StrLoss": "10290", "sL_NStrLoss": "6525", "sL_ContLoss": "7597.5", "geom_point": "0101000020E6100000AD2A7FE7ACEA5EC0C404DAC218554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.664183789999981, 48.662958051000061 ], [ -123.669601310999951, 48.663076787000151 ], [ -123.669422892999989, 48.666678203000039 ], [ -123.664004957999936, 48.666559458000087 ], [ -123.664183789999981, 48.662958051000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.985982465699143", "sL_AssetLoss": "2018.9", "sL_BldgLoss": "1990.6", "sL_StrLoss": "1825", "sL_NStrLoss": "165.6", "sL_ContLoss": "28.3", "geom_point": "0101000020E61000003672FEA29BEA5EC02CDF6DBDAA544840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.665199930999918, 48.661106727000075 ], [ -123.66833905299994, 48.661046129000063 ], [ -123.668297682999977, 48.661880845000063 ], [ -123.662880301999962, 48.661762041000067 ], [ -123.662910445999941, 48.661155233000024 ], [ -123.665199930999918, 48.661106727000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.948825080747918", "sL_AssetLoss": "3374.7", "sL_BldgLoss": "3202", "sL_StrLoss": "2740", "sL_NStrLoss": "462", "sL_ContLoss": "172.7", "geom_point": "0101000020E61000001A33CB9613EB5EC0A56394886C564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.671413030999986, 48.676153695000046 ], [ -123.67149726299999, 48.674452466000069 ], [ -123.675128846999939, 48.674531819000094 ], [ -123.675068714999938, 48.674595698000132 ], [ -123.674724589999983, 48.675236594000083 ], [ -123.674596289, 48.675813395000048 ], [ -123.674489314999931, 48.675894592000098 ], [ -123.674162182999936, 48.675904599000042 ], [ -123.673632499999911, 48.675809207000015 ], [ -123.673074404999937, 48.675811991000074 ], [ -123.671585606999898, 48.676091082 ], [ -123.671413030999986, 48.676153695000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26833136", "BldgCostT": "16217079", "sL_LossRatio": "0.94465461539308", "sL_AssetLoss": "28170.19", "sL_BldgLoss": "26611.1", "sL_StrLoss": "22474.1", "sL_NStrLoss": "4137", "sL_ContLoss": "1559.09", "geom_point": "0101000020E6100000E5826DA305E95EC07470B8A879564840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.636797562999988, 48.678979864000098 ], [ -123.636794159999923, 48.678709997000105 ], [ -123.635571607999935, 48.678716748000113 ], [ -123.635568210999963, 48.67844688100012 ], [ -123.635160695999957, 48.678449130000068 ], [ -123.635153910999961, 48.677909395000036 ], [ -123.63474639899998, 48.67791164100008 ], [ -123.634732834999951, 48.676832173000037 ], [ -123.635140339999936, 48.676829927000036 ], [ -123.635136945999989, 48.676560060000014 ], [ -123.636359448999968, 48.676553313000078 ], [ -123.636356048999971, 48.676283446000085 ], [ -123.63757854499994, 48.676276687000119 ], [ -123.637568329, 48.675467086000047 ], [ -123.638790803999925, 48.675460313000066 ], [ -123.638787391999955, 48.675190447000084 ], [ -123.639602369999949, 48.675185924000068 ], [ -123.63959895499994, 48.674916058000044 ], [ -123.640006441000011, 48.674913794000055 ], [ -123.64000302299992, 48.674643927000027 ], [ -123.640410508999949, 48.67464166300001 ], [ -123.640407087, 48.674371796000045 ], [ -123.640814569999961, 48.674369530000035 ], [ -123.640794035999988, 48.672750328000134 ], [ -123.641201505999945, 48.672748061000021 ], [ -123.641184382999967, 48.671398725000039 ], [ -123.641591840999979, 48.67139645700005 ], [ -123.64158498899999, 48.670856723000092 ], [ -123.643622259999972, 48.670845358000058 ], [ -123.643625696999905, 48.671115225000122 ], [ -123.644033152999981, 48.671112948000079 ], [ -123.644040032999953, 48.671652681000154 ], [ -123.644447491999941, 48.671650403000086 ], [ -123.644450934999952, 48.671920269000069 ], [ -123.644858397999954, 48.671917990000097 ], [ -123.644861840999937, 48.672187856000086 ], [ -123.64526930599996, 48.672185575000107 ], [ -123.645272752999986, 48.672455441000054 ], [ -123.645680219999974, 48.672453158000117 ], [ -123.645697460999926, 48.673802491000068 ], [ -123.645289982999955, 48.673804775000079 ], [ -123.645296876999936, 48.674344509000058 ], [ -123.644889393999946, 48.674346790000065 ], [ -123.644892839999983, 48.674616656000126 ], [ -123.644485354999944, 48.67461893800008 ], [ -123.644509451999909, 48.676508004000041 ], [ -123.644101952999904, 48.676510283000013 ], [ -123.644112273999951, 48.677319883000095 ], [ -123.643297262, 48.677324438000035 ], [ -123.643300697999933, 48.677594304000067 ], [ -123.642893188999892, 48.677596579000102 ], [ -123.642900056999977, 48.678136311000074 ], [ -123.642492544999953, 48.678138585000063 ], [ -123.642495976999982, 48.678408452000035 ], [ -123.641680945999951, 48.678412995000066 ], [ -123.641684373999965, 48.678682861000034 ], [ -123.64127685699998, 48.678685131000073 ], [ -123.641280282999944, 48.678954998000094 ], [ -123.636797562999988, 48.678979864000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.982252593284499", "sL_AssetLoss": "2034.1", "sL_BldgLoss": "1998", "sL_StrLoss": "1809", "sL_NStrLoss": "189", "sL_ContLoss": "36.1", "geom_point": "0101000020E61000002D64A69BA1E95EC06368F13962554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.650510757999925, 48.667837916000025 ], [ -123.650507284999932, 48.667568049000053 ], [ -123.649692429999916, 48.667572648000068 ], [ -123.649688960999967, 48.667302781000046 ], [ -123.648874110999898, 48.667307373000064 ], [ -123.648860251999963, 48.666227907000057 ], [ -123.650082501, 48.66622101500009 ], [ -123.650085971999957, 48.666490882000097 ], [ -123.650900808999921, 48.666486281000097 ], [ -123.650904283999978, 48.666756147000108 ], [ -123.652126544999987, 48.666749235000076 ], [ -123.652140474999925, 48.667828702000044 ], [ -123.650510757999925, 48.667837916000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118612333", "BldgCostT": "77908333", "sL_LossRatio": "0.864213164644403", "sL_AssetLoss": "212107.97", "sL_BldgLoss": "183306.5", "sL_StrLoss": "115293", "sL_NStrLoss": "68013.5", "sL_ContLoss": "28801.47", "geom_point": "0101000020E610000084DC4E5332E85EC06B650CBD8F554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.619239087, 48.678269289000106 ], [ -123.61998606199991, 48.677255423000126 ], [ -123.620051785999962, 48.677166189000047 ], [ -123.620362957999973, 48.676786681000038 ], [ -123.620390003999901, 48.676753707000096 ], [ -123.620585380999984, 48.676370038000059 ], [ -123.620886914999943, 48.675777896000106 ], [ -123.620900314999943, 48.675710129000059 ], [ -123.62092359, 48.675592822000063 ], [ -123.62094859299999, 48.675466678000127 ], [ -123.620965211999973, 48.675382989000063 ], [ -123.62096896599995, 48.675250606000098 ], [ -123.620976334999952, 48.674989633000067 ], [ -123.620995985999954, 48.674293088000077 ], [ -123.62094906, 48.67383073400012 ], [ -123.620900879999951, 48.673356297000048 ], [ -123.620958921999915, 48.673020733000079 ], [ -123.621002611999927, 48.672768183000066 ], [ -123.620438179999951, 48.67280590100011 ], [ -123.620190946999955, 48.672822444000076 ], [ -123.620073196999925, 48.67283030500009 ], [ -123.619865206999933, 48.672813091000052 ], [ -123.619788450999948, 48.672766925000083 ], [ -123.619741886999918, 48.672738937000076 ], [ -123.619720419999936, 48.672725996000089 ], [ -123.619706575999899, 48.672711968000051 ], [ -123.619670613999958, 48.6726754170001 ], [ -123.619603544999975, 48.672607193000047 ], [ -123.6195257299999, 48.67252806200004 ], [ -123.619403132999977, 48.672403435000049 ], [ -123.619438154999941, 48.67239537600009 ], [ -123.619581497999917, 48.672362372000094 ], [ -123.619722898999953, 48.672300317000172 ], [ -123.61979647699998, 48.672268016000018 ], [ -123.619960009999915, 48.672145476000026 ], [ -123.620125017999968, 48.67196619900006 ], [ -123.620142996999945, 48.671923610000078 ], [ -123.620386960999966, 48.671345628000061 ], [ -123.620614412999913, 48.671111852000138 ], [ -123.620736604999948, 48.671060240000052 ], [ -123.620793241999934, 48.671036305000023 ], [ -123.621398736999964, 48.670780557000043 ], [ -123.623522645999941, 48.670319924000104 ], [ -123.624168167999983, 48.67017990100004 ], [ -123.624559241999961, 48.670095075000091 ], [ -123.624733298999928, 48.670057308000025 ], [ -123.62499948699994, 48.669673871000043 ], [ -123.625069706999966, 48.669524258000095 ], [ -123.625394518999968, 48.668832712000032 ], [ -123.625417139999939, 48.668686496000092 ], [ -123.625434769, 48.668572217000083 ], [ -123.62543091799995, 48.668559930000107 ], [ -123.62539730799989, 48.668452822000106 ], [ -123.625375581999961, 48.668383567000056 ], [ -123.625371821999948, 48.668371657000094 ], [ -123.625355813999988, 48.668320708000131 ], [ -123.625353008999937, 48.668311724000013 ], [ -123.625354624999957, 48.66823710700006 ], [ -123.625355216999978, 48.668210121000051 ], [ -123.625357061999964, 48.668124314000082 ], [ -123.625675728999965, 48.667694291000075 ], [ -123.626039954999939, 48.66746354100011 ], [ -123.626274349999903, 48.667252452000078 ], [ -123.626387701999974, 48.667101750000072 ], [ -123.626438676999953, 48.666971274000055 ], [ -123.626465565999951, 48.666902489000137 ], [ -123.626451392, 48.66659209400008 ], [ -123.626229246999969, 48.665910322000066 ], [ -123.626189541999963, 48.66578858000009 ], [ -123.626181975999927, 48.665596334000028 ], [ -123.626177454999961, 48.665481789000061 ], [ -123.626172884999946, 48.665366383000091 ], [ -123.626181779999953, 48.665338764000111 ], [ -123.626317647999969, 48.664916234000096 ], [ -123.626344461999963, 48.664883368000048 ], [ -123.626358293999942, 48.664858584000058 ], [ -123.626399358999919, 48.66479259900008 ], [ -123.626545701999945, 48.664636963000135 ], [ -123.626670383999979, 48.664402344000081 ], [ -123.626781619999946, 48.664206751000087 ], [ -123.626879371999934, 48.66405013900004 ], [ -123.627006116999922, 48.663883459000012 ], [ -123.627089530999982, 48.663726530000055 ], [ -123.627120696999967, 48.663663156000062 ], [ -123.627147953999952, 48.663536572000034 ], [ -123.627149972999916, 48.663387161000095 ], [ -123.627138080999956, 48.663206709000121 ], [ -123.627071112999914, 48.663090759000099 ], [ -123.626959874999955, 48.662884444000134 ], [ -123.626931633999959, 48.662794630000086 ], [ -123.62688932699993, 48.662668922000123 ], [ -123.62686138, 48.662606097000037 ], [ -123.626860709000013, 48.6625521220001 ], [ -123.626817521999939, 48.662354451000105 ], [ -123.62680150599995, 48.662156610000068 ], [ -123.626786886999966, 48.662075730000062 ], [ -123.626745612999926, 48.662030959000099 ], [ -123.626743941999933, 48.661896035000076 ], [ -123.626769406999983, 48.661760952000094 ], [ -123.626809369999975, 48.66169776099999 ], [ -123.626942379999946, 48.661472145000097 ], [ -123.627143949999919, 48.661300115000103 ], [ -123.627197479999921, 48.661236844000058 ], [ -123.627210288999933, 48.661173791000088 ], [ -123.627289541, 48.660993435000123 ], [ -123.627295475999944, 48.660980066000022 ], [ -123.627382030999954, 48.660786024000046 ], [ -123.627442940999956, 48.660697318000061 ], [ -123.62752088499991, 48.660619117000053 ], [ -123.627582415999939, 48.660541293000044 ], [ -123.62850611799999, 48.660537764000047 ], [ -123.631018334999965, 48.660528062000076 ], [ -123.631087287999932, 48.660527784000045 ], [ -123.630962695, 48.658851817000041 ], [ -123.631336185999885, 48.658842842000077 ], [ -123.63368669499999, 48.658805103000141 ], [ -123.634271059999961, 48.65882646900014 ], [ -123.634893510999959, 48.658849236 ], [ -123.635256522999939, 48.658862506000048 ], [ -123.635798194999936, 48.658793397000061 ], [ -123.635849308999966, 48.658936998000044 ], [ -123.63599960699996, 48.6591025070001 ], [ -123.636201890999956, 48.65920529300007 ], [ -123.636453805999949, 48.65926500200009 ], [ -123.636855037999922, 48.659281114000102 ], [ -123.637004506999958, 48.659287094000064 ], [ -123.637196615999954, 48.65934564900008 ], [ -123.637542190999966, 48.65945097700007 ], [ -123.637555795, 48.659455121000065 ], [ -123.637692939999937, 48.65949691900002 ], [ -123.63779231700002, 48.659527202000092 ], [ -123.637818250999956, 48.659544924000116 ], [ -123.637857808999954, 48.659571896000045 ], [ -123.637871541999971, 48.659619372000073 ], [ -123.637877494999955, 48.659639991000091 ], [ -123.637854179, 48.65968860900005 ], [ -123.637729302999986, 48.659948678000063 ], [ -123.637716245999968, 48.659975788000146 ], [ -123.63760173, 48.66021431000005 ], [ -123.637552119999967, 48.66031768199999 ], [ -123.637357002999977, 48.660724004000045 ], [ -123.637250593999951, 48.660945594000118 ], [ -123.636777160999983, 48.662192531000088 ], [ -123.63676022099996, 48.662313820000072 ], [ -123.636754928999935, 48.66232336200008 ], [ -123.63670429699998, 48.662414621000025 ], [ -123.636670781999982, 48.662474965000072 ], [ -123.636490010999964, 48.662564711000073 ], [ -123.636422555999985, 48.66265520900005 ], [ -123.63641002899999, 48.662671984000042 ], [ -123.636408462999896, 48.662784619000035 ], [ -123.636480126999956, 48.663031374000106 ], [ -123.636478074999957, 48.663052723000114 ], [ -123.636465790000031, 48.663181596000129 ], [ -123.63629391799995, 48.663545778000085 ], [ -123.636262457999976, 48.663612424000071 ], [ -123.636138829999979, 48.663752104000025 ], [ -123.635977343, 48.663862967000036 ], [ -123.635957073999961, 48.663870820000113 ], [ -123.63544910899999, 48.664067561000124 ], [ -123.635259261999977, 48.66422462400002 ], [ -123.63515199299999, 48.6643133460001 ], [ -123.6349563199999, 48.664627754000023 ], [ -123.634684401999934, 48.665064594000086 ], [ -123.634417279000019, 48.665295531000083 ], [ -123.634382465999948, 48.665325591000091 ], [ -123.6338478549999, 48.665494882000068 ], [ -123.633310011999981, 48.665755131000068 ], [ -123.632593612999926, 48.665979846000049 ], [ -123.632378536, 48.66613099100001 ], [ -123.632148378999929, 48.666285421000083 ], [ -123.63173499600002, 48.66646712800005 ], [ -123.631279653999968, 48.666456999000083 ], [ -123.63146099, 48.662855645000086 ], [ -123.631869763999944, 48.662864741000092 ], [ -123.631906011999973, 48.662144654000045 ], [ -123.632440678999927, 48.662156547000038 ], [ -123.632451654999969, 48.661938454000087 ], [ -123.631573961999891, 48.661918929000066 ], [ -123.631569636999956, 48.662004848000045 ], [ -123.630486129999937, 48.661980734000075 ], [ -123.63044313799999, 48.662834273000023 ], [ -123.630228049999957, 48.662829485000067 ], [ -123.629787859999936, 48.662819685000024 ], [ -123.629738064999984, 48.663807987000105 ], [ -123.628150253999976, 48.663772622000067 ], [ -123.62815000099998, 48.663777626000019 ], [ -123.627901973999926, 48.663772100000081 ], [ -123.627877302999934, 48.664261364000069 ], [ -123.630361975999946, 48.664316701000104 ], [ -123.630587227999939, 48.664321715000071 ], [ -123.630466745999968, 48.666713609000148 ], [ -123.631351358999964, 48.666733294000032 ], [ -123.630993946999979, 48.666995239000066 ], [ -123.630881989999978, 48.667172106000081 ], [ -123.630860416999937, 48.667465470000074 ], [ -123.630786957999987, 48.667605335000076 ], [ -123.630616029999942, 48.66774124900013 ], [ -123.630069173999971, 48.668044559000094 ], [ -123.629566616999938, 48.668220820000023 ], [ -123.629420379999942, 48.668272106000053 ], [ -123.629161729999979, 48.668362809000065 ], [ -123.629022826999957, 48.668411533000068 ], [ -123.628698686999954, 48.668409799000109 ], [ -123.628304870999941, 48.668407691000013 ], [ -123.627958622999941, 48.66840584500008 ], [ -123.627839541999947, 48.668437059000013 ], [ -123.627793729999937, 48.668449051000067 ], [ -123.627753899, 48.668506465000085 ], [ -123.627684048999981, 48.66860705200002 ], [ -123.627652579999975, 48.668698944000035 ], [ -123.627585468999897, 48.668895084000056 ], [ -123.627424787999985, 48.66898885000009 ], [ -123.626952358999915, 48.669079262000018 ], [ -123.626817245999959, 48.669150170000066 ], [ -123.626638286999977, 48.669311128000103 ], [ -123.626574027999936, 48.66945569800005 ], [ -123.62659481599999, 48.669634635000101 ], [ -123.626655547999974, 48.6697836230001 ], [ -123.626779449999916, 48.670087616000103 ], [ -123.627182352999938, 48.670434595000103 ], [ -123.626545747999941, 48.670618419000043 ], [ -123.626524527999948, 48.670624534000048 ], [ -123.626280820999952, 48.670630617000022 ], [ -123.626200031999971, 48.670632618000127 ], [ -123.625831446999939, 48.670600071000095 ], [ -123.625136749999953, 48.670446678000076 ], [ -123.625002396999946, 48.670367979000055 ], [ -123.624992177999928, 48.67042609300006 ], [ -123.62496251099999, 48.670594729000079 ], [ -123.624922738999942, 48.670820764000027 ], [ -123.624916793999944, 48.67085459500008 ], [ -123.625263705999956, 48.671155252000098 ], [ -123.625371963999953, 48.671330127000083 ], [ -123.625484380999964, 48.671511711000065 ], [ -123.625490254999974, 48.671717345000069 ], [ -123.625428141999961, 48.671959227000087 ], [ -123.625262386999935, 48.672604573000136 ], [ -123.625277741999966, 48.672861643000068 ], [ -123.625284417999922, 48.672973721000098 ], [ -123.625360786999948, 48.673126854000067 ], [ -123.625649447999947, 48.673453266000088 ], [ -123.626338687999976, 48.67385285400006 ], [ -123.626845918999933, 48.674146908000054 ], [ -123.628022536999978, 48.674858771000153 ], [ -123.628058257999953, 48.674880387 ], [ -123.628346200999928, 48.675054604000117 ], [ -123.628388077999958, 48.675083963000141 ], [ -123.629623941999967, 48.675950623000084 ], [ -123.630012155999964, 48.676222871000036 ], [ -123.62823390099993, 48.677064798000053 ], [ -123.62819161699997, 48.678469007000082 ], [ -123.626226079999967, 48.678446 ], [ -123.625727202999911, 48.67844119600003 ], [ -123.624895613999982, 48.678310007000057 ], [ -123.623700600999925, 48.678096699000065 ], [ -123.622806390000022, 48.678051511000028 ], [ -123.622202961999932, 48.67819112900002 ], [ -123.621505464999956, 48.678352498000059 ], [ -123.621452782999981, 48.678364683000055 ], [ -123.621232304999978, 48.678415687000076 ], [ -123.620699495999958, 48.678415364000024 ], [ -123.619654909999952, 48.678414685000057 ], [ -123.619239087, 48.678269289000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114177803", "BldgCostT": "75568746", "sL_LossRatio": "0.868160378814538", "sL_AssetLoss": "285083.04", "sL_BldgLoss": "247497.8", "sL_StrLoss": "177158.8", "sL_NStrLoss": "70339", "sL_ContLoss": "37585.24", "geom_point": "0101000020E610000023B5CCF994E75EC09B95D4A6BD554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.616619631999967, 48.681230971000041 ], [ -123.616688141999958, 48.679879269000018 ], [ -123.616284273999966, 48.679870230000127 ], [ -123.616310882999954, 48.678955921000082 ], [ -123.615722944999973, 48.678963890000041 ], [ -123.615762144999948, 48.678190722000068 ], [ -123.61332349499996, 48.678136093000028 ], [ -123.613506251, 48.674534840000071 ], [ -123.614328569999955, 48.6745532670001 ], [ -123.614327732999982, 48.674484375000077 ], [ -123.610934076999953, 48.674408286000137 ], [ -123.61087720899998, 48.675527715000037 ], [ -123.61261626299995, 48.675566720000113 ], [ -123.612441541999956, 48.679008313000089 ], [ -123.610874504999941, 48.679029490000055 ], [ -123.605591068999956, 48.679311676000104 ], [ -123.605159842999953, 48.679376534000021 ], [ -123.605138015999955, 48.679379824000094 ], [ -123.604867564999978, 48.679389669000074 ], [ -123.605107993000018, 48.678712195000095 ], [ -123.60552962300001, 48.67794389700002 ], [ -123.605550395999956, 48.677911764000029 ], [ -123.605971938999957, 48.677261295000022 ], [ -123.606150795999923, 48.676985306000105 ], [ -123.606177544000033, 48.676837802000122 ], [ -123.606193801999979, 48.67674806200008 ], [ -123.606197991, 48.676724894000102 ], [ -123.606190688999916, 48.676580680000086 ], [ -123.606188424999957, 48.67653573200004 ], [ -123.606181119999974, 48.676391459000065 ], [ -123.606157397999979, 48.675923583000014 ], [ -123.606188303999943, 48.675397094000068 ], [ -123.606262814999965, 48.675131003000089 ], [ -123.606389204999942, 48.674912992000031 ], [ -123.6066223, 48.674649685000055 ], [ -123.606926482999953, 48.67440230400009 ], [ -123.607862474999976, 48.673678220000028 ], [ -123.608342761999936, 48.673306619000059 ], [ -123.609566380999979, 48.672359935000053 ], [ -123.60928266699996, 48.668321158000019 ], [ -123.609279187999917, 48.668272002000073 ], [ -123.609205401999958, 48.668204482000071 ], [ -123.609219557999964, 48.666685991000094 ], [ -123.609226093999965, 48.665983112000092 ], [ -123.609196214999969, 48.665732933000065 ], [ -123.609143301999922, 48.665289897000015 ], [ -123.609144758999932, 48.665247113000135 ], [ -123.609145989999988, 48.665211134000167 ], [ -123.609148759999982, 48.665129680000128 ], [ -123.60914936099999, 48.665111433000078 ], [ -123.609151479999952, 48.665048597000073 ], [ -123.609251714999957, 48.664757900000019 ], [ -123.609247494999977, 48.664627099000072 ], [ -123.609190590999958, 48.664493286000045 ], [ -123.609220778999884, 48.664393900000071 ], [ -123.609991507999965, 48.661857755000014 ], [ -123.610817642999933, 48.661805312000098 ], [ -123.610755456999939, 48.663029761000097 ], [ -123.611622154999978, 48.663049210000111 ], [ -123.611499800999965, 48.66545901000007 ], [ -123.612644662, 48.66548469 ], [ -123.612635063999946, 48.665673813000119 ], [ -123.615325776999953, 48.665734121000042 ], [ -123.61532157799995, 48.665816950000064 ], [ -123.61596250799991, 48.665831305000019 ], [ -123.616948425, 48.665853379000033 ], [ -123.616884164999959, 48.667121771000083 ], [ -123.617045622999967, 48.667125384000016 ], [ -123.617053629999972, 48.666967304000124 ], [ -123.621735213999912, 48.667071991000029 ], [ -123.621751956999972, 48.666740819000026 ], [ -123.621896557, 48.666744049000044 ], [ -123.621918575000038, 48.666308522000101 ], [ -123.622488044999926, 48.666321241000098 ], [ -123.622560451999959, 48.66488860600014 ], [ -123.62256057599997, 48.66488616 ], [ -123.622422220000018, 48.664883070000052 ], [ -123.62243679099997, 48.664594794000067 ], [ -123.621167491999984, 48.664566437000111 ], [ -123.621189555999976, 48.664130120000046 ], [ -123.620491594000015, 48.664114521000052 ], [ -123.620520880999919, 48.663535517000042 ], [ -123.619679299999973, 48.663516701000063 ], [ -123.619695044999901, 48.663205514000047 ], [ -123.617734248999966, 48.66316165100006 ], [ -123.617866809999953, 48.660543809000032 ], [ -123.617894996999937, 48.66054400400003 ], [ -123.617897054, 48.660303585000051 ], [ -123.617908486999937, 48.658965098000067 ], [ -123.61932422199996, 48.65898510100002 ], [ -123.619923615999951, 48.658847895000115 ], [ -123.62107059099999, 48.658843584000074 ], [ -123.621749608999949, 48.658841 ], [ -123.623351928999938, 48.658834920000075 ], [ -123.623867916999984, 48.658832944000096 ], [ -123.624166679999973, 48.658831824000025 ], [ -123.625717895999969, 48.65882590100005 ], [ -123.627259739999957, 48.658891790000105 ], [ -123.627248943999987, 48.658816572000049 ], [ -123.627219533999934, 48.658636812000104 ], [ -123.627135285999898, 48.658412364000121 ], [ -123.627135079999974, 48.658394377000093 ], [ -123.627147973999968, 48.65834032300009 ], [ -123.627147180999913, 48.658277362000028 ], [ -123.62714449099991, 48.658061469000145 ], [ -123.627155625999976, 48.657863493000036 ], [ -123.627141162999948, 48.65779158900007 ], [ -123.627098306999955, 48.657620898000054 ], [ -123.627056676000038, 48.657549165000034 ], [ -123.627000581999951, 48.657405529000116 ], [ -123.627017512999942, 48.657348557 ], [ -123.626996384999941, 48.657239195000088 ], [ -123.627133852999989, 48.657241983000119 ], [ -123.627745211999979, 48.657254357000078 ], [ -123.627922601999941, 48.657257945000083 ], [ -123.62804516599999, 48.657260419000089 ], [ -123.628140106999979, 48.657262352000039 ], [ -123.628262164999938, 48.657264803000011 ], [ -123.628320984999959, 48.65726599400012 ], [ -123.628362356999943, 48.65726346600006 ], [ -123.628697685999924, 48.657242889000067 ], [ -123.628719652999948, 48.657237259000041 ], [ -123.628721294999977, 48.657236841000085 ], [ -123.630774495999944, 48.657084508000089 ], [ -123.631011483999885, 48.657099550000098 ], [ -123.63136499099997, 48.657121994000086 ], [ -123.632496332999949, 48.657103654000103 ], [ -123.632772009999911, 48.657099186000018 ], [ -123.63297149, 48.657113517000013 ], [ -123.63333819099995, 48.657139866000101 ], [ -123.6334988, 48.657151409000043 ], [ -123.635650901999938, 48.657138856000067 ], [ -123.635821000999925, 48.658152190000088 ], [ -123.635798194999936, 48.658793397000061 ], [ -123.635256522999939, 48.658862506000048 ], [ -123.634893510999959, 48.658849236 ], [ -123.634271059999961, 48.65882646900014 ], [ -123.63368669499999, 48.658805103000141 ], [ -123.631336185999885, 48.658842842000077 ], [ -123.630962695, 48.658851817000041 ], [ -123.631087287999932, 48.660527784000045 ], [ -123.631018334999965, 48.660528062000076 ], [ -123.62850611799999, 48.660537764000047 ], [ -123.627582415999939, 48.660541293000044 ], [ -123.62752088499991, 48.660619117000053 ], [ -123.627442940999956, 48.660697318000061 ], [ -123.627382030999954, 48.660786024000046 ], [ -123.627295475999944, 48.660980066000022 ], [ -123.627289541, 48.660993435000123 ], [ -123.627210288999933, 48.661173791000088 ], [ -123.627197479999921, 48.661236844000058 ], [ -123.627143949999919, 48.661300115000103 ], [ -123.626942379999946, 48.661472145000097 ], [ -123.626809369999975, 48.66169776099999 ], [ -123.626769406999983, 48.661760952000094 ], [ -123.626743941999933, 48.661896035000076 ], [ -123.626745612999926, 48.662030959000099 ], [ -123.626786886999966, 48.662075730000062 ], [ -123.62680150599995, 48.662156610000068 ], [ -123.626817521999939, 48.662354451000105 ], [ -123.626860709000013, 48.6625521220001 ], [ -123.62686138, 48.662606097000037 ], [ -123.62688932699993, 48.662668922000123 ], [ -123.626931633999959, 48.662794630000086 ], [ -123.626959874999955, 48.662884444000134 ], [ -123.627071112999914, 48.663090759000099 ], [ -123.627138080999956, 48.663206709000121 ], [ -123.627149972999916, 48.663387161000095 ], [ -123.627147953999952, 48.663536572000034 ], [ -123.627120696999967, 48.663663156000062 ], [ -123.627089530999982, 48.663726530000055 ], [ -123.627006116999922, 48.663883459000012 ], [ -123.626879371999934, 48.66405013900004 ], [ -123.626781619999946, 48.664206751000087 ], [ -123.626670383999979, 48.664402344000081 ], [ -123.626545701999945, 48.664636963000135 ], [ -123.626399358999919, 48.66479259900008 ], [ -123.626358293999942, 48.664858584000058 ], [ -123.626344461999963, 48.664883368000048 ], [ -123.626317647999969, 48.664916234000096 ], [ -123.626181779999953, 48.665338764000111 ], [ -123.626172884999946, 48.665366383000091 ], [ -123.626177454999961, 48.665481789000061 ], [ -123.626181975999927, 48.665596334000028 ], [ -123.626189541999963, 48.66578858000009 ], [ -123.626229246999969, 48.665910322000066 ], [ -123.626451392, 48.66659209400008 ], [ -123.626465565999951, 48.666902489000137 ], [ -123.626438676999953, 48.666971274000055 ], [ -123.626387701999974, 48.667101750000072 ], [ -123.626274349999903, 48.667252452000078 ], [ -123.626039954999939, 48.66746354100011 ], [ -123.625675728999965, 48.667694291000075 ], [ -123.625357061999964, 48.668124314000082 ], [ -123.625355216999978, 48.668210121000051 ], [ -123.625354624999957, 48.66823710700006 ], [ -123.625353008999937, 48.668311724000013 ], [ -123.625355813999988, 48.668320708000131 ], [ -123.625371821999948, 48.668371657000094 ], [ -123.625375581999961, 48.668383567000056 ], [ -123.62539730799989, 48.668452822000106 ], [ -123.62543091799995, 48.668559930000107 ], [ -123.625434769, 48.668572217000083 ], [ -123.625417139999939, 48.668686496000092 ], [ -123.625394518999968, 48.668832712000032 ], [ -123.625069706999966, 48.669524258000095 ], [ -123.62499948699994, 48.669673871000043 ], [ -123.624733298999928, 48.670057308000025 ], [ -123.624559241999961, 48.670095075000091 ], [ -123.624168167999983, 48.67017990100004 ], [ -123.623522645999941, 48.670319924000104 ], [ -123.621398736999964, 48.670780557000043 ], [ -123.620793241999934, 48.671036305000023 ], [ -123.620736604999948, 48.671060240000052 ], [ -123.620614412999913, 48.671111852000138 ], [ -123.620386960999966, 48.671345628000061 ], [ -123.620142996999945, 48.671923610000078 ], [ -123.620125017999968, 48.67196619900006 ], [ -123.619960009999915, 48.672145476000026 ], [ -123.61979647699998, 48.672268016000018 ], [ -123.619722898999953, 48.672300317000172 ], [ -123.619581497999917, 48.672362372000094 ], [ -123.619438154999941, 48.67239537600009 ], [ -123.619403132999977, 48.672403435000049 ], [ -123.6195257299999, 48.67252806200004 ], [ -123.619603544999975, 48.672607193000047 ], [ -123.619670613999958, 48.6726754170001 ], [ -123.619706575999899, 48.672711968000051 ], [ -123.619720419999936, 48.672725996000089 ], [ -123.619741886999918, 48.672738937000076 ], [ -123.619788450999948, 48.672766925000083 ], [ -123.619865206999933, 48.672813091000052 ], [ -123.620073196999925, 48.67283030500009 ], [ -123.620190946999955, 48.672822444000076 ], [ -123.620438179999951, 48.67280590100011 ], [ -123.621002611999927, 48.672768183000066 ], [ -123.620958921999915, 48.673020733000079 ], [ -123.620900879999951, 48.673356297000048 ], [ -123.62094906, 48.67383073400012 ], [ -123.620995985999954, 48.674293088000077 ], [ -123.620976334999952, 48.674989633000067 ], [ -123.62096896599995, 48.675250606000098 ], [ -123.620965211999973, 48.675382989000063 ], [ -123.62094859299999, 48.675466678000127 ], [ -123.62092359, 48.675592822000063 ], [ -123.620900314999943, 48.675710129000059 ], [ -123.620886914999943, 48.675777896000106 ], [ -123.620585380999984, 48.676370038000059 ], [ -123.620390003999901, 48.676753707000096 ], [ -123.620362957999973, 48.676786681000038 ], [ -123.620051785999962, 48.677166189000047 ], [ -123.61998606199991, 48.677255423000126 ], [ -123.619239087, 48.678269289000106 ], [ -123.619654909999952, 48.678414685000057 ], [ -123.620699495999958, 48.678415364000024 ], [ -123.621232304999978, 48.678415687000076 ], [ -123.621452782999981, 48.678364683000055 ], [ -123.621505464999956, 48.678352498000059 ], [ -123.622202961999932, 48.67819112900002 ], [ -123.622806390000022, 48.678051511000028 ], [ -123.623700600999925, 48.678096699000065 ], [ -123.624895613999982, 48.678310007000057 ], [ -123.625727202999911, 48.67844119600003 ], [ -123.626226079999967, 48.678446 ], [ -123.62819161699997, 48.678469007000082 ], [ -123.62823390099993, 48.677064798000053 ], [ -123.630012155999964, 48.676222871000036 ], [ -123.630022893999978, 48.676230392000065 ], [ -123.632461003999978, 48.677758460000064 ], [ -123.63248151699996, 48.677771305000114 ], [ -123.633028285999913, 48.67818174100006 ], [ -123.633040509999944, 48.678190919000045 ], [ -123.629450864999939, 48.678111069000067 ], [ -123.629462191999906, 48.679020179000076 ], [ -123.627832106999932, 48.679029074000034 ], [ -123.627835460999961, 48.679298942000116 ], [ -123.626612890999937, 48.679305598000063 ], [ -123.62660954199994, 48.679035731000084 ], [ -123.625820850999929, 48.67904001800013 ], [ -123.625753529999898, 48.68037343400006 ], [ -123.624775437999958, 48.68035162400006 ], [ -123.624768495999945, 48.680489059000116 ], [ -123.622999184999941, 48.680449581000076 ], [ -123.622987036999945, 48.68068990200009 ], [ -123.62207365699993, 48.680669511000126 ], [ -123.622039137999934, 48.681352123000046 ], [ -123.616619631999967, 48.681230971000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13018584", "BldgCostT": "8978334", "sL_LossRatio": "0.892954386912397", "sL_AssetLoss": "35551.2", "sL_BldgLoss": "31745.6", "sL_StrLoss": "22691.6", "sL_NStrLoss": "9054", "sL_ContLoss": "3805.6", "geom_point": "0101000020E61000005A52A4B1ACE75EC00AAB80943B594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.618385199999935, 48.700136786000051 ], [ -123.618255196999939, 48.700007160000098 ], [ -123.618008112999973, 48.699760695000052 ], [ -123.616380227999954, 48.698359702000083 ], [ -123.616026355999978, 48.698135648000083 ], [ -123.616032220999926, 48.69581428800003 ], [ -123.617001789999932, 48.695835981000059 ], [ -123.617061789999937, 48.694652389000126 ], [ -123.617067502999944, 48.694652517000094 ], [ -123.617109232999894, 48.69382928700005 ], [ -123.622530190999939, 48.693950412000071 ], [ -123.622489163999916, 48.694761625000119 ], [ -123.623392907999985, 48.694781791000054 ], [ -123.62321083099998, 48.698382942000059 ], [ -123.62278067499993, 48.698373344000075 ], [ -123.622738758999972, 48.699202152000119 ], [ -123.620665233999972, 48.69915586300003 ], [ -123.620660232999938, 48.699254653000033 ], [ -123.620782071999926, 48.699257374000048 ], [ -123.62078001, 48.699298112000058 ], [ -123.621945932999964, 48.699324143000062 ], [ -123.621902501999926, 48.700182558000144 ], [ -123.621955564999908, 48.700183743000117 ], [ -123.621993726999904, 48.699429425000019 ], [ -123.624543924999898, 48.699486316000069 ], [ -123.624249435999957, 48.69962158500006 ], [ -123.624168347999941, 48.699658020000129 ], [ -123.623871379999954, 48.699821555 ], [ -123.623682093999975, 48.699903537000054 ], [ -123.62339796599997, 48.70000403100007 ], [ -123.623343834999957, 48.700022315000062 ], [ -123.623032253999938, 48.700104977000045 ], [ -123.622923865999923, 48.70013255700006 ], [ -123.622585550999972, 48.700251322000035 ], [ -123.622504253999963, 48.700269764000012 ], [ -123.622246257999976, 48.700289147000106 ], [ -123.621948050999933, 48.700353736000075 ], [ -123.621825943999937, 48.700372382000126 ], [ -123.621487316999932, 48.700464186000033 ], [ -123.621284238, 48.70052825300013 ], [ -123.62097747599995, 48.700595807000099 ], [ -123.62088418799999, 48.70061255600006 ], [ -123.620791068999964, 48.700620504000092 ], [ -123.619633363999952, 48.700838904000115 ], [ -123.619317780999978, 48.700827296000092 ], [ -123.619085580999922, 48.700722104000086 ], [ -123.618385199999935, 48.700136786000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.886947584789311", "sL_AssetLoss": "1946", "sL_BldgLoss": "1726", "sL_StrLoss": "1290", "sL_NStrLoss": "436", "sL_ContLoss": "220", "geom_point": "0101000020E61000006548FC278BE75EC05964645E01554840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.616641273999974, 48.663706022000078 ], [ -123.619085665999975, 48.663692911000091 ], [ -123.619095581999915, 48.664502517000066 ], [ -123.616651151, 48.664515628000082 ], [ -123.616641273999974, 48.663706022000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9698751", "BldgCostT": "6425001", "sL_LossRatio": "0.914307291358171", "sL_AssetLoss": "27012.8", "sL_BldgLoss": "24698", "sL_StrLoss": "19046", "sL_NStrLoss": "5652", "sL_ContLoss": "2314.8", "geom_point": "0101000020E61000007242F01114E85EC0F1719627CA584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.626417911999937, 48.697717181000023 ], [ -123.62646791399996, 48.696726947000094 ], [ -123.62453370599999, 48.696683835000037 ], [ -123.624642250999941, 48.694535773000084 ], [ -123.62402591399993, 48.694522027000033 ], [ -123.624047554999933, 48.694093876000068 ], [ -123.62393773699992, 48.694091427000025 ], [ -123.62411974299998, 48.690490249000113 ], [ -123.629045831, 48.690600012000083 ], [ -123.629016362999934, 48.690626471000051 ], [ -123.628855528999978, 48.690807296000123 ], [ -123.628801876999972, 48.690861574000053 ], [ -123.6287082, 48.69097900500001 ], [ -123.628641178999899, 48.691051351000041 ], [ -123.628507323999969, 48.691214013000021 ], [ -123.628373674999935, 48.691394665000132 ], [ -123.628306772999963, 48.691476002000073 ], [ -123.628145741999958, 48.691638800000085 ], [ -123.628092260999935, 48.691711080000054 ], [ -123.628027135999943, 48.691936321000057 ], [ -123.627973222999984, 48.69197259800017 ], [ -123.627961527999943, 48.692125608000055 ], [ -123.62796387799996, 48.692314528000026 ], [ -123.627952873999945, 48.692521483000121 ], [ -123.627941626999984, 48.69271046100004 ], [ -123.627929725999977, 48.692845481000063 ], [ -123.627944217999953, 48.692917360000088 ], [ -123.627933973999944, 48.693187297000122 ], [ -123.62797572799991, 48.693268039000074 ], [ -123.627977645000016, 48.693420957000086 ], [ -123.627977885999954, 48.693438935000053 ], [ -123.627898905999942, 48.693646292000132 ], [ -123.62788591499999, 48.693691351999981 ], [ -123.62787332, 48.693772368000062 ], [ -123.627848580999952, 48.693970429000039 ], [ -123.627810384999947, 48.694177558000071 ], [ -123.627785800999959, 48.694384594000049 ], [ -123.627760974999916, 48.694573653000049 ], [ -123.627748257999926, 48.694645682000058 ], [ -123.627763304999959, 48.694762552000014 ], [ -123.627819780999985, 48.694933188000064 ], [ -123.627903359999934, 48.695094650000044 ], [ -123.628123539999947, 48.695318362000094 ], [ -123.628247875999989, 48.695479607000038 ], [ -123.628275932999912, 48.695551441000084 ], [ -123.628427513999966, 48.695721527000039 ], [ -123.628455518999928, 48.69578434900005 ], [ -123.628498934999982, 48.69600001 ], [ -123.628514226999968, 48.696134859000082 ], [ -123.628516667, 48.696332784000013 ], [ -123.628464788, 48.696530971000094 ], [ -123.628438510999928, 48.696603101000029 ], [ -123.628344958999946, 48.696729547000139 ], [ -123.628062041999982, 48.696929016000084 ], [ -123.628035105000023, 48.696947131000087 ], [ -123.627994575999978, 48.696965361000103 ], [ -123.627791937999959, 48.697065422000065 ], [ -123.627521766999934, 48.697192847000046 ], [ -123.62734621599995, 48.697283769000087 ], [ -123.627050017999935, 48.697510272000045 ], [ -123.626844014, 48.69767892400008 ], [ -123.626837623999975, 48.69772653200004 ], [ -123.626417911999937, 48.697717181000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13492084", "BldgCostT": "8808334", "sL_LossRatio": "0.666180742392248", "sL_AssetLoss": "74634.4", "sL_BldgLoss": "49720", "sL_StrLoss": "25526", "sL_NStrLoss": "24194", "sL_ContLoss": "24914.4", "geom_point": "0101000020E610000077C49DE263E65EC0482F515A0B614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.599740280999981, 48.758549998 ], [ -123.599411283999984, 48.758453200000105 ], [ -123.599263804999921, 48.75852579700004 ], [ -123.599350082999976, 48.758921698000108 ], [ -123.599254909999928, 48.75902 ], [ -123.597067507999924, 48.759247892000054 ], [ -123.596997804999901, 48.759139592000075 ], [ -123.597103782999937, 48.758860496000047 ], [ -123.59683538099992, 48.758134101000046 ], [ -123.596603195999975, 48.757936187000013 ], [ -123.596992783999951, 48.75758439800007 ], [ -123.597563386999923, 48.757527402000065 ], [ -123.598481791999944, 48.75687510800006 ], [ -123.598901288999954, 48.756719890000056 ], [ -123.599471297999969, 48.756671511000022 ], [ -123.599781606999983, 48.756363898000089 ], [ -123.60020049399999, 48.756164490000096 ], [ -123.600789020999969, 48.756385197000057 ], [ -123.601232314999962, 48.755879589000081 ], [ -123.601609294999932, 48.755843948000162 ], [ -123.601638459999918, 48.756190878000076 ], [ -123.60186549299999, 48.758295460000042 ], [ -123.601832660999989, 48.758938084000071 ], [ -123.601754754999959, 48.758936333000122 ], [ -123.601711405999964, 48.759784785000065 ], [ -123.601652516999934, 48.759783460000087 ], [ -123.601607948999956, 48.760655684000078 ], [ -123.60031098499995, 48.760626520000109 ], [ -123.600246411999976, 48.760022608000021 ], [ -123.599869690999967, 48.75916099700008 ], [ -123.59987711499997, 48.758710994000076 ], [ -123.599740280999981, 48.758549998 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912584", "BldgCostT": "2698334", "sL_LossRatio": "0.981870933708458", "sL_AssetLoss": "5687", "sL_BldgLoss": "5583.9", "sL_StrLoss": "4758", "sL_NStrLoss": "825.9", "sL_ContLoss": "103.1", "geom_point": "0101000020E6100000404C25B077E65EC000538A468C614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.598943500999965, 48.763163658000039 ], [ -123.598963693999949, 48.763097495000103 ], [ -123.599137401999911, 48.762816885000056 ], [ -123.600042402000014, 48.762255802000077 ], [ -123.600089997999987, 48.76179579500004 ], [ -123.600453298999952, 48.761290197000051 ], [ -123.60047781599998, 48.761119304000019 ], [ -123.600337789999969, 48.760877195000077 ], [ -123.600315532999943, 48.760669055000029 ], [ -123.602125964999956, 48.760709760000054 ], [ -123.602397438999958, 48.763225782000092 ], [ -123.600421703999956, 48.763139509000062 ], [ -123.598943500999965, 48.763163658000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.908045977011494", "sL_AssetLoss": "2958", "sL_BldgLoss": "2686", "sL_StrLoss": "1990", "sL_NStrLoss": "696", "sL_ContLoss": "272", "geom_point": "0101000020E6100000CD5D2ABADEE85EC0208D753770614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.639282137999942, 48.761919862000035 ], [ -123.63928823900001, 48.761618562000102 ], [ -123.638650238999986, 48.761612962000058 ], [ -123.638651423999974, 48.761554043000061 ], [ -123.637840858999965, 48.761558532000016 ], [ -123.637830607999931, 48.760748943000081 ], [ -123.63905515099998, 48.760742158000085 ], [ -123.639065121999977, 48.761528116000122 ], [ -123.639660837999898, 48.761529461000038 ], [ -123.639646738999943, 48.761923162000045 ], [ -123.639282137999942, 48.761919862000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.879753615425817", "sL_AssetLoss": "5227.6", "sL_BldgLoss": "4599", "sL_StrLoss": "3100", "sL_NStrLoss": "1499", "sL_ContLoss": "628.6", "geom_point": "0101000020E6100000231DF54287E85EC0212BAEE0ED614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63180598299999, 48.764793804000121 ], [ -123.63163361699999, 48.764230861000044 ], [ -123.634254453999972, 48.764289003000094 ], [ -123.634234948999975, 48.76467596700008 ], [ -123.634434870999939, 48.764680400000096 ], [ -123.634363400999973, 48.766098348000149 ], [ -123.633041, 48.766076697000081 ], [ -123.633019075999982, 48.766064093000075 ], [ -123.632716605999931, 48.765750799000038 ], [ -123.632480081999972, 48.765356293000067 ], [ -123.63180598299999, 48.764793804000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.858064516129032", "sL_AssetLoss": "2635", "sL_BldgLoss": "2261", "sL_StrLoss": "1550", "sL_NStrLoss": "711", "sL_ContLoss": "374", "geom_point": "0101000020E6100000C695E5B147E85EC0BA83B78BD9614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.627563691999953, 48.76475389300002 ], [ -123.627383490999961, 48.764453412000094 ], [ -123.628802689999958, 48.764027504000126 ], [ -123.628924953999913, 48.763913916000028 ], [ -123.629982591999948, 48.763937414000083 ], [ -123.629980299999957, 48.763982794000121 ], [ -123.631016911999922, 48.764005815000047 ], [ -123.631009, 48.764185604000026 ], [ -123.63113880399996, 48.764679790000123 ], [ -123.631100294999953, 48.764931895000103 ], [ -123.630431893, 48.764782409000041 ], [ -123.629709099999957, 48.764723998000072 ], [ -123.62865310499997, 48.765017307000086 ], [ -123.627806001999929, 48.764877802000029 ], [ -123.627563691999953, 48.76475389300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22523334", "BldgCostT": "15533334", "sL_LossRatio": "0.873996457408387", "sL_AssetLoss": "86942", "sL_BldgLoss": "75987", "sL_StrLoss": "50770", "sL_NStrLoss": "25217", "sL_ContLoss": "10955", "geom_point": "0101000020E610000079748656A5E75EC0FFE02AECF5614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.62115635399999, 48.769942825000065 ], [ -123.621185938999972, 48.769359187000084 ], [ -123.620465417999924, 48.769343123000063 ], [ -123.62060901800001, 48.76651092000003 ], [ -123.616410941999916, 48.766417224000087 ], [ -123.616425320999937, 48.766134128000026 ], [ -123.615663432999966, 48.766117105000035 ], [ -123.615672837999938, 48.765931980000062 ], [ -123.615096124999965, 48.76591909100005 ], [ -123.615107019999954, 48.765704686000127 ], [ -123.614614617999962, 48.765693679000108 ], [ -123.614628506999964, 48.765420441000067 ], [ -123.61433472499999, 48.765413873000099 ], [ -123.614349337999897, 48.765126429000105 ], [ -123.61392152800002, 48.765116863000081 ], [ -123.61394212, 48.764711835000107 ], [ -123.61389209399999, 48.764710717000078 ], [ -123.613880474999931, 48.764939270000141 ], [ -123.609800460999949, 48.76484794900005 ], [ -123.610091365999907, 48.76124962100009 ], [ -123.610719256999971, 48.761263683000053 ], [ -123.610810821999976, 48.759464831000024 ], [ -123.612245081999959, 48.759496942000041 ], [ -123.613671707999956, 48.760780299000075 ], [ -123.614111714000018, 48.7610381060001 ], [ -123.61525971199994, 48.761455405000042 ], [ -123.61663308699994, 48.76252779900009 ], [ -123.617488388999945, 48.763422192000057 ], [ -123.61827071899998, 48.763957706000049 ], [ -123.620360003999963, 48.76460288700013 ], [ -123.620563108999988, 48.764602909000075 ], [ -123.621105420999982, 48.764410597000065 ], [ -123.621363017999926, 48.764273906000057 ], [ -123.621643690999989, 48.763976304999986 ], [ -123.621821603999976, 48.763974793000045 ], [ -123.622205407, 48.764278207000132 ], [ -123.622319576999971, 48.764701195000086 ], [ -123.62300371299996, 48.764940399000096 ], [ -123.623680782999912, 48.765746502000127 ], [ -123.624926592999927, 48.766450104000057 ], [ -123.625132505999943, 48.766430190000108 ], [ -123.625469189999961, 48.765196799000115 ], [ -123.625604616, 48.765024497000049 ], [ -123.625918094999946, 48.765031611000047 ], [ -123.627009881999925, 48.765377694000023 ], [ -123.627360590999942, 48.765195392000066 ], [ -123.627716392999972, 48.765238088000032 ], [ -123.628886388999945, 48.765330696000085 ], [ -123.631054213999946, 48.765525798000105 ], [ -123.631667995000015, 48.765631210000016 ], [ -123.63207583599997, 48.766086408000021 ], [ -123.629128591999958, 48.766721448000041 ], [ -123.628763111999945, 48.766802241000036 ], [ -123.62896003899999, 48.768163673000039 ], [ -123.628823798999932, 48.768160646000091 ], [ -123.628843350999958, 48.767773685000094 ], [ -123.62864341599996, 48.767769242000028 ], [ -123.628654082999944, 48.767558125000065 ], [ -123.627628968999957, 48.767535339000119 ], [ -123.627539859999914, 48.769298022000044 ], [ -123.626625863999948, 48.769277697000057 ], [ -123.626597059999966, 48.769847251000051 ], [ -123.62115635399999, 48.769942825000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32270417", "BldgCostT": "21991667", "sL_LossRatio": "0.871759110533038", "sL_AssetLoss": "127627", "sL_BldgLoss": "111260", "sL_StrLoss": "84410", "sL_NStrLoss": "26850", "sL_ContLoss": "16367", "geom_point": "0101000020E61000006B325F3501E95EC0BB82A76F9D634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63920183499999, 48.780681583000046 ], [ -123.63931643399998, 48.778404022000132 ], [ -123.63690818799995, 48.778350729000067 ], [ -123.636968641999914, 48.777150404000103 ], [ -123.637013073999967, 48.77714968500009 ], [ -123.638468462999953, 48.777125469000076 ], [ -123.638448403999973, 48.774780100000086 ], [ -123.64051365099999, 48.774825780000121 ], [ -123.640548281999884, 48.777161437000132 ], [ -123.643245752000013, 48.777234587000038 ], [ -123.643557139999984, 48.777243017000075 ], [ -123.643763464999935, 48.780358220000089 ], [ -123.644654422999935, 48.780372467000078 ], [ -123.644632879999932, 48.780801567000026 ], [ -123.63920183499999, 48.780681583000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46322750", "BldgCostT": "31475000", "sL_LossRatio": "0.866142576809453", "sL_AssetLoss": "233089.8", "sL_BldgLoss": "201889", "sL_StrLoss": "137192", "sL_NStrLoss": "64697", "sL_ContLoss": "31200.8", "geom_point": "0101000020E6100000B65410C9B1E95EC09F273B894A644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.649365357999955, 48.786605733000066 ], [ -123.649438154999984, 48.785152906000071 ], [ -123.648744122999972, 48.785137621000068 ], [ -123.648924578, 48.781536935000048 ], [ -123.649943189999973, 48.781559366000053 ], [ -123.649957886000024, 48.781265972000085 ], [ -123.646658379999934, 48.781193278000053 ], [ -123.646697914999947, 48.780405117000051 ], [ -123.652130596999953, 48.780491726000051 ], [ -123.652109271999905, 48.780917868000081 ], [ -123.654210800999977, 48.780964073000121 ], [ -123.654535563999914, 48.785369741000075 ], [ -123.654545067999948, 48.785982714000049 ], [ -123.654641936999937, 48.786355046000089 ], [ -123.65481076899998, 48.786452069000063 ], [ -123.654797114999937, 48.786725199000024 ], [ -123.649365357999955, 48.786605733000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234020667", "BldgCostT": "157976667", "sL_LossRatio": "0.890343604004348", "sL_AssetLoss": "876567.2", "sL_BldgLoss": "780446", "sL_StrLoss": "580529", "sL_NStrLoss": "199917", "sL_ContLoss": "96121.2", "geom_point": "0101000020E6100000630544905CE95EC0FF1ABDD883654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.64272700399998, 48.792567721000054 ], [ -123.64231856399995, 48.79256999800009 ], [ -123.642322008999912, 48.792839859000061 ], [ -123.642730450999977, 48.792837582000097 ], [ -123.64272700399998, 48.792567721000054 ], [ -123.643952320000011, 48.792560881000092 ], [ -123.643966134999971, 48.793640327000048 ], [ -123.644374582999902, 48.79363804300008 ], [ -123.644384950999893, 48.79444762700011 ], [ -123.643976496999983, 48.794449910000054 ], [ -123.643977723999967, 48.794545758000019 ], [ -123.645656761999973, 48.794582794000043 ], [ -123.645758108, 48.79256376300004 ], [ -123.642879364999928, 48.792500246000074 ], [ -123.643060297999966, 48.788899613000112 ], [ -123.64431226399995, 48.788927245000167 ], [ -123.644333069999959, 48.788512943000086 ], [ -123.649434836999987, 48.788625395000103 ], [ -123.649482912999957, 48.787665967000052 ], [ -123.653693161999968, 48.787758584000123 ], [ -123.65369172799997, 48.787648205000067 ], [ -123.654916922999988, 48.787641250000028 ], [ -123.654920434999937, 48.787911111000014 ], [ -123.65573723299994, 48.787906467000013 ], [ -123.655730201999958, 48.787366745000064 ], [ -123.655321805999947, 48.787369068000039 ], [ -123.655313627999973, 48.786741042000095 ], [ -123.655401240999964, 48.786791390000097 ], [ -123.655973069999988, 48.787337551000057 ], [ -123.656243414999921, 48.787786258000054 ], [ -123.656280694999964, 48.788492007000045 ], [ -123.656282250999979, 48.788521103000122 ], [ -123.656086490999954, 48.788899636000053 ], [ -123.656178703999942, 48.788803655000088 ], [ -123.656171885999953, 48.788821705000075 ], [ -123.656436085999957, 48.78853579700008 ], [ -123.657723417999989, 48.7887560100001 ], [ -123.658116012, 48.788869994000066 ], [ -123.658460390999977, 48.789051509000103 ], [ -123.658853296999951, 48.789270093000063 ], [ -123.658172919999942, 48.789908524000111 ], [ -123.657805762999899, 48.790373564000092 ], [ -123.657534569999882, 48.790850014000043 ], [ -123.657471903999962, 48.7909601100001 ], [ -123.657307691999932, 48.791389946000081 ], [ -123.657179967, 48.791935610000067 ], [ -123.657095106999947, 48.792298148000079 ], [ -123.656758547999971, 48.793047732000041 ], [ -123.656057091000022, 48.794106498000133 ], [ -123.656009897999979, 48.794155726000064 ], [ -123.655446008999931, 48.794743687000093 ], [ -123.655430239999987, 48.794755782000024 ], [ -123.654809782999976, 48.795231703000077 ], [ -123.65396244499999, 48.795635544000113 ], [ -123.65385012199999, 48.795689107000015 ], [ -123.653335838999965, 48.795882421000087 ], [ -123.65323008099989, 48.79592217800009 ], [ -123.652785793999968, 48.796089248000101 ], [ -123.652748501999909, 48.796102142000116 ], [ -123.650553751999936, 48.796864696000029 ], [ -123.649558273999958, 48.797192393000067 ], [ -123.649297587999968, 48.797302375000136 ], [ -123.648683168000034, 48.797561570000056 ], [ -123.647709197999959, 48.798003298 ], [ -123.647189027999971, 48.798292511000078 ], [ -123.646156522999945, 48.798866607000043 ], [ -123.645463293999953, 48.799266814000063 ], [ -123.644573215999927, 48.798661405000111 ], [ -123.64456295299999, 48.798655250000131 ], [ -123.644080811999956, 48.798365791000094 ], [ -123.643638716999973, 48.79813685200002 ], [ -123.643464590999884, 48.798046704000036 ], [ -123.6432734699999, 48.797967917000058 ], [ -123.643152841999935, 48.797918143000032 ], [ -123.642519961999966, 48.797632029000084 ], [ -123.642336679, 48.797575802000011 ], [ -123.64227499199994, 48.797556863000111 ], [ -123.641630794, 48.797359173000068 ], [ -123.640882479999973, 48.797151611000103 ], [ -123.639894516999931, 48.796988915000064 ], [ -123.639631008999956, 48.796945522000087 ], [ -123.63775127299999, 48.796886328000085 ], [ -123.637323114999944, 48.796872865000054 ], [ -123.63485415199996, 48.796839818000059 ], [ -123.634995644999904, 48.796514913000067 ], [ -123.635133506999949, 48.796288205000089 ], [ -123.635328392999909, 48.796063604000025 ], [ -123.635547288999945, 48.795901792000066 ], [ -123.635798105, 48.79599828400012 ], [ -123.639678890999946, 48.796075196000075 ], [ -123.63987312099998, 48.796052402000051 ], [ -123.64000500899999, 48.795945398000107 ], [ -123.640306693999918, 48.795271695000018 ], [ -123.638486693999951, 48.795232389000077 ], [ -123.638496315999944, 48.794933398000076 ], [ -123.638588879999972, 48.794823697000012 ], [ -123.638988009999963, 48.794539691000082 ], [ -123.639420574999974, 48.79423078800005 ], [ -123.641488520999971, 48.792753912000116 ], [ -123.641644992999915, 48.792615810000093 ], [ -123.641704598999965, 48.792483799000124 ], [ -123.641682903999978, 48.792321091000083 ], [ -123.641533883999955, 48.792175397000108 ], [ -123.641334496999946, 48.792085388000089 ], [ -123.641107494999943, 48.792056104000061 ], [ -123.640871497999953, 48.792098615000043 ], [ -123.640109113999927, 48.792389994000132 ], [ -123.639568797999971, 48.792725004000111 ], [ -123.63940969799998, 48.792725894000043 ], [ -123.639331291999923, 48.792904394000068 ], [ -123.639198990999958, 48.793047490000042 ], [ -123.639004387999989, 48.793187400000114 ], [ -123.638712507999969, 48.793314302000098 ], [ -123.638417717999957, 48.793388909000029 ], [ -123.638016711999924, 48.793441299000094 ], [ -123.637423585999926, 48.793475009000062 ], [ -123.636177710999931, 48.793726803000027 ], [ -123.634783427999963, 48.794117698000093 ], [ -123.634082888999941, 48.794437974000054 ], [ -123.633470842999913, 48.794717805000062 ], [ -123.633159622999969, 48.794862792000053 ], [ -123.632707476999911, 48.795159114000093 ], [ -123.631892363999953, 48.795848683000088 ], [ -123.631527949999949, 48.796118169000053 ], [ -123.631292462999951, 48.796227575000103 ], [ -123.630887452999957, 48.796415739000096 ], [ -123.630657884999977, 48.796468735000055 ], [ -123.630324753999929, 48.79654565900011 ], [ -123.63006205899994, 48.796685804000028 ], [ -123.630004871999958, 48.796749224000067 ], [ -123.629903574999929, 48.796861616000079 ], [ -123.629855021999958, 48.797015533000042 ], [ -123.629872606999953, 48.797286274000029 ], [ -123.629302921999908, 48.797312374000029 ], [ -123.628744845999975, 48.797404321000052 ], [ -123.628084332999947, 48.797548176000085 ], [ -123.628076200999956, 48.79689688400012 ], [ -123.628070331999979, 48.796426843000063 ], [ -123.628478803999926, 48.796424617000078 ], [ -123.628468690999952, 48.795615030000064 ], [ -123.628877156999977, 48.795612803000104 ], [ -123.628863662999962, 48.794533355000105 ], [ -123.630497485999953, 48.794524430000095 ], [ -123.630494104999968, 48.794254568000063 ], [ -123.630902558999964, 48.794252334000113 ], [ -123.63089917399999, 48.793982471000021 ], [ -123.631716075999975, 48.793977997000113 ], [ -123.631712688000022, 48.793708135000081 ], [ -123.632121135999938, 48.793705896000077 ], [ -123.632117748, 48.793436034000116 ], [ -123.632526193999951, 48.793433794000059 ], [ -123.63252280199994, 48.793163932000013 ], [ -123.633748134999976, 48.793157201000035 ], [ -123.633741336999947, 48.792617477000086 ], [ -123.633332896999917, 48.792619722000062 ], [ -123.633322707, 48.791810137000049 ], [ -123.635773305999962, 48.791796647000098 ], [ -123.63576989799995, 48.791526785000066 ], [ -123.636995187999929, 48.791520019000139 ], [ -123.636998604999974, 48.791789881000057 ], [ -123.637815470999954, 48.791785363000052 ], [ -123.63781889099999, 48.792055225000134 ], [ -123.638227326999981, 48.792052964000085 ], [ -123.638220480999976, 48.791513240000022 ], [ -123.641896354000025, 48.791492828000059 ], [ -123.641899796999923, 48.791762689000066 ], [ -123.642716661999884, 48.791758137000052 ], [ -123.64272700399998, 48.792567721000054 ] ], [ [ -123.6521206099999, 48.792478495000111 ], [ -123.65210570499994, 48.791328303000043 ], [ -123.651647978999961, 48.79131823600013 ], [ -123.65157509, 48.792774037000065 ], [ -123.65210523199994, 48.792785696000081 ], [ -123.6521206099999, 48.792478495000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18413750", "BldgCostT": "11225000", "sL_LossRatio": "0.818825194621373", "sL_AssetLoss": "70650", "sL_BldgLoss": "57850", "sL_StrLoss": "37830", "sL_NStrLoss": "20020", "sL_ContLoss": "12800", "geom_point": "0101000020E610000026B5DD25EDE85EC04756E143C7624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.638743540999926, 48.773593191000089 ], [ -123.638760492999893, 48.773256319000083 ], [ -123.638435311999956, 48.77324912400011 ], [ -123.638431953999913, 48.772856423000071 ], [ -123.638271846999928, 48.771026183000053 ], [ -123.638484595999927, 48.770096711000114 ], [ -123.638848267999919, 48.769983403 ], [ -123.640679397, 48.769761479000103 ], [ -123.64046118399996, 48.771288098000078 ], [ -123.640495945999959, 48.773631949000162 ], [ -123.638743540999926, 48.773593191000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248341562", "BldgCostT": "165228191", "sL_LossRatio": "0.822555866232496", "sL_AssetLoss": "1258613.6", "sL_BldgLoss": "1035280", "sL_StrLoss": "646426", "sL_NStrLoss": "388854", "sL_ContLoss": "223333.6", "geom_point": "0101000020E6100000CBF6F07E3FEA5EC08D13ECE05C644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.657723417999989, 48.7887560100001 ], [ -123.656436085999957, 48.78853579700008 ], [ -123.656171885999953, 48.788821705000075 ], [ -123.656178703999942, 48.788803655000088 ], [ -123.656086490999954, 48.788899636000053 ], [ -123.656282250999979, 48.788521103000122 ], [ -123.656280694999964, 48.788492007000045 ], [ -123.656243414999921, 48.787786258000054 ], [ -123.655973069999988, 48.787337551000057 ], [ -123.655401240999964, 48.786791390000097 ], [ -123.655313627999973, 48.786741042000095 ], [ -123.655311262999987, 48.786559485000062 ], [ -123.655000761999929, 48.786561251000094 ], [ -123.65490213, 48.78650457100008 ], [ -123.654888827999969, 48.78548236300005 ], [ -123.655297207999979, 48.78548004200006 ], [ -123.655286667999945, 48.78467045900004 ], [ -123.655695041999977, 48.784668137000033 ], [ -123.655688009999906, 48.784128415000026 ], [ -123.655279641, 48.784130737000083 ], [ -123.655276127999969, 48.783860876000112 ], [ -123.655265306999965, 48.783860938000096 ], [ -123.655228810999944, 48.784591095000096 ], [ -123.65490415699999, 48.784583963000074 ], [ -123.65481076899998, 48.786452069000063 ], [ -123.654641936999937, 48.786355046000089 ], [ -123.654545067999948, 48.785982714000049 ], [ -123.654535563999914, 48.785369741000075 ], [ -123.654210800999977, 48.780964073000121 ], [ -123.655283015999913, 48.780987632000048 ], [ -123.655300400999963, 48.780639773000061 ], [ -123.655976847999952, 48.780642980000039 ], [ -123.65700679299999, 48.78064785600008 ], [ -123.657496017999975, 48.780649579000091 ], [ -123.657733499999921, 48.780650863000055 ], [ -123.661033215, 48.780668569000035 ], [ -123.661046808999942, 48.78066857500005 ], [ -123.662374859999886, 48.780665659000107 ], [ -123.662524576999942, 48.780665323000058 ], [ -123.662678100999983, 48.780664987000129 ], [ -123.662769576999949, 48.780664816000112 ], [ -123.663491012999899, 48.780663276000112 ], [ -123.663806419999929, 48.780662597000088 ], [ -123.664930585999969, 48.780660202000085 ], [ -123.665628045999966, 48.780657588000047 ], [ -123.666339061999977, 48.780654933000029 ], [ -123.666347649999963, 48.781028229000093 ], [ -123.66606250199996, 48.781487932000061 ], [ -123.666172691999975, 48.781731828 ], [ -123.666263940999926, 48.781816038000038 ], [ -123.666519705999974, 48.782052108000073 ], [ -123.666777594999971, 48.78219650000004 ], [ -123.667410212, 48.783032196000072 ], [ -123.667576408999963, 48.783161982000074 ], [ -123.667567241999947, 48.783400587000038 ], [ -123.667320550999932, 48.783988165000068 ], [ -123.667004431999942, 48.784139836000051 ], [ -123.666381663, 48.784280335000076 ], [ -123.665970378999972, 48.784431746000031 ], [ -123.66505064499999, 48.785021715000056 ], [ -123.664903, 48.785175278000068 ], [ -123.664476839999963, 48.785704144000086 ], [ -123.664410989999936, 48.785785886000035 ], [ -123.664095953999919, 48.786176827000155 ], [ -123.663989381999926, 48.786252790000077 ], [ -123.663923964, 48.786299392000046 ], [ -123.66375486799997, 48.786419887000143 ], [ -123.663013230999951, 48.786787264000019 ], [ -123.662967361999918, 48.78680996 ], [ -123.662479737999959, 48.7869613720001 ], [ -123.662148538999986, 48.78706419700007 ], [ -123.661996362999929, 48.787134529000085 ], [ -123.661873009999965, 48.787191535000055 ], [ -123.661577213999976, 48.787366815000034 ], [ -123.661466771999969, 48.787432265000106 ], [ -123.660787065999912, 48.788004915000108 ], [ -123.660744376999986, 48.788031406000115 ], [ -123.660190577999941, 48.788375011 ], [ -123.659884456000015, 48.78856491700013 ], [ -123.659548307999913, 48.788773495000022 ], [ -123.658853296999951, 48.789270093000063 ], [ -123.658460390999977, 48.789051509000103 ], [ -123.658116012, 48.788869994000066 ], [ -123.657723417999989, 48.7887560100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235878084", "BldgCostT": "158258334", "sL_LossRatio": "0.791444403780964", "sL_AssetLoss": "1623078", "sL_BldgLoss": "1284576", "sL_StrLoss": "770834", "sL_NStrLoss": "513742", "sL_ContLoss": "338502", "geom_point": "0101000020E6100000610711806AE95EC05FECC5696B664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.623232619999925, 48.81330970700008 ], [ -123.623307409999981, 48.813122138000068 ], [ -123.623314783999959, 48.812842956000075 ], [ -123.623135258, 48.812091032000041 ], [ -123.62321302699999, 48.811817904000058 ], [ -123.623228963999978, 48.81179248400008 ], [ -123.623355094999937, 48.811591275000062 ], [ -123.623511144999924, 48.811448772000041 ], [ -123.623539909999963, 48.811422532000023 ], [ -123.623610381999981, 48.811358167000087 ], [ -123.623853885999935, 48.811196853000062 ], [ -123.623977680999957, 48.81113711600004 ], [ -123.624102986, 48.811076686000042 ], [ -123.624715558999952, 48.810781141000042 ], [ -123.624801968999947, 48.810739458000079 ], [ -123.625364715999964, 48.810423955000054 ], [ -123.625475272999921, 48.810336287000055 ], [ -123.626443798999915, 48.808748398000098 ], [ -123.626452047999948, 48.808740748000098 ], [ -123.62666784699995, 48.808540709000042 ], [ -123.627000122999945, 48.808344414000075 ], [ -123.63003947699994, 48.806872776000134 ], [ -123.63157290499997, 48.806213795000126 ], [ -123.63244236, 48.805848671000113 ], [ -123.632716395000031, 48.805733604000096 ], [ -123.634361500999916, 48.805002985000023 ], [ -123.634975707999942, 48.804730189000097 ], [ -123.636254598999955, 48.804135739000074 ], [ -123.636912537999933, 48.80382993500011 ], [ -123.637187097999984, 48.80370228600011 ], [ -123.638494794999986, 48.80317250500007 ], [ -123.640005574999975, 48.80274189600005 ], [ -123.640033005999953, 48.802727563000076 ], [ -123.640528519999947, 48.8024685990001 ], [ -123.640551687999988, 48.802456505000094 ], [ -123.640815511999932, 48.802268600000033 ], [ -123.641200554999926, 48.801903954000082 ], [ -123.641436608999967, 48.801680404000059 ], [ -123.642476301000031, 48.801016712000063 ], [ -123.642734937999961, 48.800876995000088 ], [ -123.642748789, 48.800869485000064 ], [ -123.643363296999894, 48.800603685000041 ], [ -123.643669992999961, 48.800471555000037 ], [ -123.644059605999956, 48.80030367800002 ], [ -123.644587300999902, 48.799976539000063 ], [ -123.644719309, 48.79989469500002 ], [ -123.645065816999974, 48.799627499000067 ], [ -123.645463293999953, 48.799266814000063 ], [ -123.646156522999945, 48.798866607000043 ], [ -123.647189027999971, 48.798292511000078 ], [ -123.647709197999959, 48.798003298 ], [ -123.648683168000034, 48.797561570000056 ], [ -123.649297587999968, 48.797302375000136 ], [ -123.649558273999958, 48.797192393000067 ], [ -123.650553751999936, 48.796864696000029 ], [ -123.652748501999909, 48.796102142000116 ], [ -123.652785793999968, 48.796089248000101 ], [ -123.65323008099989, 48.79592217800009 ], [ -123.653335838999965, 48.795882421000087 ], [ -123.65385012199999, 48.795689107000015 ], [ -123.65396244499999, 48.795635544000113 ], [ -123.654809782999976, 48.795231703000077 ], [ -123.655430239999987, 48.794755782000024 ], [ -123.655446008999931, 48.794743687000093 ], [ -123.656009897999979, 48.794155726000064 ], [ -123.656057091000022, 48.794106498000133 ], [ -123.656758547999971, 48.793047732000041 ], [ -123.657095106999947, 48.792298148000079 ], [ -123.657179967, 48.791935610000067 ], [ -123.657307691999932, 48.791389946000081 ], [ -123.657471903999962, 48.7909601100001 ], [ -123.657534569999882, 48.790850014000043 ], [ -123.657805762999899, 48.790373564000092 ], [ -123.658172919999942, 48.789908524000111 ], [ -123.658853296999951, 48.789270093000063 ], [ -123.659548307999913, 48.788773495000022 ], [ -123.659884456000015, 48.78856491700013 ], [ -123.660190577999941, 48.788375011 ], [ -123.660744376999986, 48.788031406000115 ], [ -123.660787065999912, 48.788004915000108 ], [ -123.661466771999969, 48.787432265000106 ], [ -123.661577213999976, 48.787366815000034 ], [ -123.661873009999965, 48.787191535000055 ], [ -123.661996362999929, 48.787134529000085 ], [ -123.662148538999986, 48.78706419700007 ], [ -123.662479737999959, 48.7869613720001 ], [ -123.662967361999918, 48.78680996 ], [ -123.663013230999951, 48.786787264000019 ], [ -123.66375486799997, 48.786419887000143 ], [ -123.663923964, 48.786299392000046 ], [ -123.663989381999926, 48.786252790000077 ], [ -123.664095953999919, 48.786176827000155 ], [ -123.664410989999936, 48.785785886000035 ], [ -123.664476839999963, 48.785704144000086 ], [ -123.664903, 48.785175278000068 ], [ -123.66505064499999, 48.785021715000056 ], [ -123.665970378999972, 48.784431746000031 ], [ -123.666381663, 48.784280335000076 ], [ -123.667004431999942, 48.784139836000051 ], [ -123.667320550999932, 48.783988165000068 ], [ -123.667567241999947, 48.783400587000038 ], [ -123.667576408999963, 48.783161982000074 ], [ -123.669115943999898, 48.782763055000046 ], [ -123.669644114999954, 48.782720505 ], [ -123.669881807999928, 48.78280590300011 ], [ -123.67096946, 48.782363734000107 ], [ -123.67132845899999, 48.782141770000045 ], [ -123.67133423199999, 48.782436594000039 ], [ -123.67133489299998, 48.783901883000034 ], [ -123.671420573999953, 48.784941872000012 ], [ -123.671401556999939, 48.785653368000105 ], [ -123.671369637999973, 48.786843997000105 ], [ -123.671370462999946, 48.787101734000089 ], [ -123.671380753999955, 48.787989608000011 ], [ -123.671313748999978, 48.788244073000016 ], [ -123.67131444599994, 48.788505521000069 ], [ -123.671217884999976, 48.788455601000074 ], [ -123.670666393999966, 48.788016895000062 ], [ -123.669946519999911, 48.788039701000031 ], [ -123.669547510999962, 48.787826100000053 ], [ -123.669153109999939, 48.787774793000082 ], [ -123.668935609999963, 48.787784796000032 ], [ -123.668623996999941, 48.787921500000081 ], [ -123.667346404999989, 48.788001188000081 ], [ -123.666500924999951, 48.787959904000076 ], [ -123.665458702999956, 48.788407097000103 ], [ -123.664796683999967, 48.788824402000017 ], [ -123.664240293999953, 48.788935495000011 ], [ -123.663836200999953, 48.789298694000074 ], [ -123.663922696999961, 48.789684713000057 ], [ -123.664213911, 48.790015103000037 ], [ -123.664163713999983, 48.790421001000034 ], [ -123.663857410999981, 48.790908089000062 ], [ -123.663185601999942, 48.791595905000072 ], [ -123.662481395000015, 48.792904812000124 ], [ -123.662399915999984, 48.792994499000059 ], [ -123.661695815999977, 48.793205307000079 ], [ -123.661642502999939, 48.793260786000069 ], [ -123.661820602999953, 48.793403295000076 ], [ -123.661266787999935, 48.79372940400004 ], [ -123.661235239999911, 48.793759051000059 ], [ -123.660372864999928, 48.793740158000055 ], [ -123.660331366999927, 48.79457208000008 ], [ -123.659903583999977, 48.794655199000012 ], [ -123.660069799999988, 48.794780500000051 ], [ -123.66003019399993, 48.794880201000119 ], [ -123.659027636999951, 48.795344146000048 ], [ -123.658986883999916, 48.795363004000095 ], [ -123.658422797999933, 48.796013811000066 ], [ -123.657883488999943, 48.796394113000126 ], [ -123.657472920999908, 48.797188802000107 ], [ -123.656747201999963, 48.797974995000125 ], [ -123.655865786000021, 48.798295404000029 ], [ -123.655398822999956, 48.798927806000115 ], [ -123.655389237999941, 48.799047855000069 ], [ -123.654048255999911, 48.799018403000062 ], [ -123.653944969999955, 48.801083054000046 ], [ -123.653575003999975, 48.801205105000058 ], [ -123.652078282, 48.801311903000084 ], [ -123.651360010999937, 48.801441486000016 ], [ -123.64963677599998, 48.801982696000039 ], [ -123.648850888999917, 48.802374397000101 ], [ -123.648425127999971, 48.802758067000163 ], [ -123.647350961999905, 48.802734409000024 ], [ -123.647351770999961, 48.802797289000054 ], [ -123.645309163, 48.802808742000124 ], [ -123.645302238999975, 48.802269021000015 ], [ -123.644893721999935, 48.802271307000076 ], [ -123.644890332, 48.802006949000031 ], [ -123.644216106000016, 48.801992078000112 ], [ -123.644168699999952, 48.802935712000078 ], [ -123.643339848999986, 48.802917424000071 ], [ -123.64323108399995, 48.805081528000073 ], [ -123.642682545999961, 48.805069422000024 ], [ -123.642633712999952, 48.806040740000086 ], [ -123.642264234999985, 48.806032584000043 ], [ -123.638738534999973, 48.80595469200005 ], [ -123.638601001999945, 48.808685632000042 ], [ -123.636631890000018, 48.808642078000034 ], [ -123.636619433999954, 48.808889180000058 ], [ -123.63527863799996, 48.808859503000079 ], [ -123.635273084999966, 48.808969612000041 ], [ -123.633129587000013, 48.808922133000117 ], [ -123.633131619, 48.809083509000125 ], [ -123.63293649799995, 48.809084581 ], [ -123.632932801999928, 48.80915777000007 ], [ -123.632366648999948, 48.809145221000094 ], [ -123.632347001999946, 48.809534283000048 ], [ -123.63070485499999, 48.809497868000086 ], [ -123.630557565999965, 48.812412340000058 ], [ -123.631541459999937, 48.812434160000045 ], [ -123.631673476999936, 48.809820796000132 ], [ -123.637107877999938, 48.809941157 ], [ -123.63692640699999, 48.813541658000155 ], [ -123.632814042999883, 48.813450604000117 ], [ -123.632804844999939, 48.813632771000123 ], [ -123.631006678999952, 48.813517601000115 ], [ -123.629750548999965, 48.813444640000043 ], [ -123.629407710999914, 48.813424732000058 ], [ -123.629041732999937, 48.813403451000092 ], [ -123.628520704999957, 48.813373188000064 ], [ -123.628131899999957, 48.813394285000086 ], [ -123.627265614999928, 48.813525503000101 ], [ -123.624827598999971, 48.813588491000047 ], [ -123.624545988999941, 48.813563299000045 ], [ -123.623490644999947, 48.813359540000093 ], [ -123.623461869, 48.813353968000087 ], [ -123.623232619999925, 48.81330970700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.80177743431221", "sL_AssetLoss": "36232", "sL_BldgLoss": "29050", "sL_StrLoss": "16980", "sL_NStrLoss": "12070", "sL_ContLoss": "7182", "geom_point": "0101000020E61000007F31199618E95EC043BD4B6F20684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.640420070999951, 48.812687520000026 ], [ -123.643683676999913, 48.81275956300005 ], [ -123.643938896999927, 48.814345206000048 ], [ -123.640348193999941, 48.814115577000088 ], [ -123.640420070999951, 48.812687520000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174385668", "BldgCostT": "114901668", "sL_LossRatio": "0.759602466308424", "sL_AssetLoss": "1572455.4", "sL_BldgLoss": "1194441", "sL_StrLoss": "619776", "sL_NStrLoss": "574665", "sL_ContLoss": "378014.4", "geom_point": "0101000020E61000009AB0707158EB5EC08B89411E49644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.681596590999945, 48.786486197000045 ], [ -123.680867411999984, 48.785699906000062 ], [ -123.680483029999905, 48.786069982000072 ], [ -123.680375014999981, 48.786173995000112 ], [ -123.679959003999954, 48.786751699000035 ], [ -123.678296586999963, 48.786693015000019 ], [ -123.67795537399995, 48.786725279000088 ], [ -123.677893115999922, 48.786742553000053 ], [ -123.677771799999945, 48.786833224000048 ], [ -123.677527859999913, 48.786915606000022 ], [ -123.677405711999967, 48.786943331000025 ], [ -123.67709187799997, 48.78689119500013 ], [ -123.676804785999977, 48.786802925000075 ], [ -123.676531317999959, 48.786696221000035 ], [ -123.676101695999961, 48.786599299000152 ], [ -123.67552941199996, 48.786380386000062 ], [ -123.672479197999962, 48.785496630000047 ], [ -123.672268321, 48.785582154000068 ], [ -123.671779237999942, 48.785658011000102 ], [ -123.671401556999939, 48.785653368000105 ], [ -123.671420573999953, 48.784941872000012 ], [ -123.67133489299998, 48.783901883000034 ], [ -123.67133423199999, 48.782436594000039 ], [ -123.67132845899999, 48.782141770000045 ], [ -123.67096946, 48.782363734000107 ], [ -123.669881807999928, 48.78280590300011 ], [ -123.669644114999954, 48.782720505 ], [ -123.669115943999898, 48.782763055000046 ], [ -123.667576408999963, 48.783161982000074 ], [ -123.667410212, 48.783032196000072 ], [ -123.666777594999971, 48.78219650000004 ], [ -123.666519705999974, 48.782052108000073 ], [ -123.666263940999926, 48.781816038000038 ], [ -123.666172691999975, 48.781731828 ], [ -123.66606250199996, 48.781487932000061 ], [ -123.666347649999963, 48.781028229000093 ], [ -123.666339061999977, 48.780654933000029 ], [ -123.671169656999936, 48.780658617 ], [ -123.671264156999968, 48.780731968000062 ], [ -123.671402633999946, 48.780839404000041 ], [ -123.671401014999958, 48.780734857000013 ], [ -123.671510840999986, 48.78065884300009 ], [ -123.67166990799997, 48.780657808000122 ], [ -123.672019102000021, 48.780687961000076 ], [ -123.672372845999945, 48.780653314000162 ], [ -123.673917294999967, 48.780646433000136 ], [ -123.674162885000015, 48.780646561000026 ], [ -123.674765410999925, 48.780646893000075 ], [ -123.674895908999972, 48.780647012000053 ], [ -123.676865398999965, 48.780647603000062 ], [ -123.677470910999929, 48.780647569000031 ], [ -123.679143503999967, 48.780647507 ], [ -123.679279738999981, 48.780640371000082 ], [ -123.679411744999982, 48.780633475000116 ], [ -123.681102514999935, 48.780597764000092 ], [ -123.681777572999977, 48.780583498000112 ], [ -123.68179063800001, 48.781548030000089 ], [ -123.682198983999939, 48.781545614000109 ], [ -123.682201807999903, 48.781754054000054 ], [ -123.682275199999978, 48.781815044000041 ], [ -123.682610987999951, 48.781813056000082 ], [ -123.682622917999964, 48.78269254 ], [ -123.682686747999952, 48.78140026500003 ], [ -123.684482141999965, 48.781439227000064 ], [ -123.684504204999939, 48.780992184000091 ], [ -123.684233376999885, 48.7809937910001 ], [ -123.68422970799999, 48.780723932000043 ], [ -123.683821368999972, 48.780726356000045 ], [ -123.683818842999983, 48.780540337000055 ], [ -123.684940384999948, 48.78051660600012 ], [ -123.684843647999983, 48.783771275000042 ], [ -123.684815034999986, 48.784681717000119 ], [ -123.684664487999939, 48.78472980600003 ], [ -123.684610445, 48.784833173000017 ], [ -123.684680383999989, 48.784931105000112 ], [ -123.68483621799993, 48.784968727000063 ], [ -123.68483423799999, 48.785280401000101 ], [ -123.684833815999951, 48.785343366000127 ], [ -123.684833524999959, 48.785388349000101 ], [ -123.684833210999955, 48.785442293000095 ], [ -123.684832356999976, 48.785577207000117 ], [ -123.684831619999954, 48.78569417400012 ], [ -123.684830907999967, 48.785802122000028 ], [ -123.68483040299995, 48.78588307900003 ], [ -123.684824379999938, 48.786833845000054 ], [ -123.684829986999929, 48.78823525500011 ], [ -123.684678095999971, 48.788420305000038 ], [ -123.684463812999937, 48.788492257000087 ], [ -123.683584877999948, 48.787897627000071 ], [ -123.683448236999979, 48.787805177000095 ], [ -123.682331885999972, 48.787005204000117 ], [ -123.682279764999961, 48.786967829000055 ], [ -123.681971209999958, 48.786746693000062 ], [ -123.681596590999945, 48.786486197000045 ] ], [ [ -123.679804111999957, 48.78564761700008 ], [ -123.679803575999955, 48.785607985000048 ], [ -123.679395196999934, 48.785610393000049 ], [ -123.679384268999968, 48.784800814000022 ], [ -123.678975895999898, 48.784803221000118 ], [ -123.678979535999972, 48.785073081000093 ], [ -123.678770295999968, 48.785074312000098 ], [ -123.678743069999939, 48.785624550000058 ], [ -123.679804111999957, 48.78564761700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.913678140205442", "sL_AssetLoss": "5549", "sL_BldgLoss": "5070", "sL_StrLoss": "3820", "sL_NStrLoss": "1250", "sL_ContLoss": "479", "geom_point": "0101000020E61000008DA4F68544E95EC0AD90EA2222684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.643683676999913, 48.81275956300005 ], [ -123.645854824999944, 48.812807435000103 ], [ -123.645777841999987, 48.814340469000058 ], [ -123.645464370999889, 48.814341272000021 ], [ -123.643938896999927, 48.814345206000048 ], [ -123.643683676999913, 48.81275956300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153027251", "BldgCostT": "100645001", "sL_LossRatio": "0.807030729143178", "sL_AssetLoss": "900259.4", "sL_BldgLoss": "726537", "sL_StrLoss": "418127", "sL_NStrLoss": "308410", "sL_ContLoss": "173722.4", "geom_point": "0101000020E61000004C7B214FD8EA5EC09B080201BE664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.646504760999932, 48.814338603000081 ], [ -123.646683528999958, 48.810777367000092 ], [ -123.647447223999976, 48.810794191000056 ], [ -123.647532788999953, 48.809088883000058 ], [ -123.650745945000011, 48.809159605000112 ], [ -123.650763178, 48.808815662000029 ], [ -123.650971132, 48.808820236000024 ], [ -123.651306398999935, 48.808954205000084 ], [ -123.652433783000021, 48.809801604000015 ], [ -123.653611285999958, 48.810208909000039 ], [ -123.654768889999929, 48.810166193000065 ], [ -123.65569189199999, 48.809928399000043 ], [ -123.656520480999944, 48.80983290000006 ], [ -123.65815581, 48.809805904000065 ], [ -123.659065297999945, 48.809674913000073 ], [ -123.65945709199994, 48.809447015000103 ], [ -123.660046778999941, 48.808697893000058 ], [ -123.660371702999925, 48.808488490000045 ], [ -123.661647783, 48.808139605000051 ], [ -123.662862192999967, 48.807571411000019 ], [ -123.663659351999954, 48.807588852000066 ], [ -123.663648742999925, 48.807801767000107 ], [ -123.665461500999939, 48.807841406000101 ], [ -123.665404747999915, 48.808981228000071 ], [ -123.665481668999973, 48.808982908000083 ], [ -123.665480146, 48.809013492000155 ], [ -123.666977558, 48.809046210000119 ], [ -123.667001848999931, 48.808558060000095 ], [ -123.667346067, 48.808565578000092 ], [ -123.667380270999942, 48.807878068 ], [ -123.667466182999959, 48.807879945000131 ], [ -123.66750501, 48.80709946900005 ], [ -123.667648754999945, 48.807102608000072 ], [ -123.667655636999925, 48.806964272000052 ], [ -123.664109090999929, 48.80688676500008 ], [ -123.664159519999984, 48.805874482000014 ], [ -123.664042163000019, 48.805871915000104 ], [ -123.664642198999957, 48.804992093000109 ], [ -123.665569706999975, 48.80411328600006 ], [ -123.666517193999979, 48.803604908000068 ], [ -123.666733211999954, 48.803396903000113 ], [ -123.667011292999959, 48.802818712000025 ], [ -123.667325782999939, 48.80233917500005 ], [ -123.668547029999957, 48.802365845000018 ], [ -123.668589144999942, 48.801518726000104 ], [ -123.669012588999976, 48.801763396000112 ], [ -123.669816705999935, 48.801767586000075 ], [ -123.670221611, 48.801603908000104 ], [ -123.67173408799999, 48.800605491000084 ], [ -123.671965012999948, 48.800522906000033 ], [ -123.672647307999924, 48.800626908 ], [ -123.673027410999936, 48.800544305000059 ], [ -123.673553815999981, 48.800262299000067 ], [ -123.674645312999971, 48.79936499100009 ], [ -123.675058907000022, 48.798618942000111 ], [ -123.679048149, 48.798705724000065 ], [ -123.679014949999967, 48.799376550000105 ], [ -123.679534876999966, 48.799373487000118 ], [ -123.679607844999964, 48.797898738000086 ], [ -123.680257452999925, 48.797912853000049 ], [ -123.680279142999922, 48.797474354000073 ], [ -123.680908695, 48.797488029000085 ], [ -123.680922650999932, 48.797205806000086 ], [ -123.680912714999948, 48.797205590000026 ], [ -123.680906442999955, 48.797332425000022 ], [ -123.678327209999978, 48.797276377000109 ], [ -123.678330109999976, 48.797491420000014 ], [ -123.677104680999904, 48.797498625000046 ], [ -123.677101331999893, 48.797249716000117 ], [ -123.676127044999959, 48.797228517000121 ], [ -123.67653589299999, 48.79619609100012 ], [ -123.67651408199994, 48.795575193000118 ], [ -123.676169911, 48.795325892000051 ], [ -123.675574013999906, 48.795184074000048 ], [ -123.675609499999922, 48.794468034000019 ], [ -123.675628898999975, 48.794455786000093 ], [ -123.67619788899998, 48.794371690000098 ], [ -123.676820895, 48.794143899000098 ], [ -123.677227995999928, 48.793888911000053 ], [ -123.677523333999943, 48.793447957000154 ], [ -123.677867091999985, 48.793445935000072 ], [ -123.677857450999966, 48.792730299000048 ], [ -123.677742279999975, 48.79272779300009 ], [ -123.677827808999936, 48.792050293000145 ], [ -123.677683490999954, 48.791340992000109 ], [ -123.677296918999971, 48.790946498000046 ], [ -123.676364607999915, 48.790466486000099 ], [ -123.675382590999988, 48.790319892000092 ], [ -123.674556394999925, 48.789650496000078 ], [ -123.673967599999969, 48.789473912000098 ], [ -123.673582207999971, 48.789206106000144 ], [ -123.673254892999964, 48.789109292000063 ], [ -123.673040955999952, 48.789061935000113 ], [ -123.67304967199999, 48.788886194000028 ], [ -123.672267682999944, 48.788890759000054 ], [ -123.671903808999915, 48.788810206000015 ], [ -123.671676510999959, 48.78869269900013 ], [ -123.671675596999989, 48.7886243290001 ], [ -123.671545722999937, 48.78862508600011 ], [ -123.67131444599994, 48.788505521000069 ], [ -123.671313748999978, 48.788244073000016 ], [ -123.671380753999955, 48.787989608000011 ], [ -123.671370462999946, 48.787101734000089 ], [ -123.671369637999973, 48.786843997000105 ], [ -123.671401556999939, 48.785653368000105 ], [ -123.671779237999942, 48.785658011000102 ], [ -123.672268321, 48.785582154000068 ], [ -123.672479197999962, 48.785496630000047 ], [ -123.67552941199996, 48.786380386000062 ], [ -123.676101695999961, 48.786599299000152 ], [ -123.676531317999959, 48.786696221000035 ], [ -123.676804785999977, 48.786802925000075 ], [ -123.67709187799997, 48.78689119500013 ], [ -123.677405711999967, 48.786943331000025 ], [ -123.677527859999913, 48.786915606000022 ], [ -123.677771799999945, 48.786833224000048 ], [ -123.677893115999922, 48.786742553000053 ], [ -123.67795537399995, 48.786725279000088 ], [ -123.678296586999963, 48.786693015000019 ], [ -123.679959003999954, 48.786751699000035 ], [ -123.680375014999981, 48.786173995000112 ], [ -123.680483029999905, 48.786069982000072 ], [ -123.680867411999984, 48.785699906000062 ], [ -123.681596590999945, 48.786486197000045 ], [ -123.681971209999958, 48.786746693000062 ], [ -123.682279764999961, 48.786967829000055 ], [ -123.682331885999972, 48.787005204000117 ], [ -123.683448236999979, 48.787805177000095 ], [ -123.683584877999948, 48.787897627000071 ], [ -123.684463812999937, 48.788492257000087 ], [ -123.684678095999971, 48.788420305000038 ], [ -123.684829986999929, 48.78823525500011 ], [ -123.684829064999974, 48.788528996000103 ], [ -123.684828689, 48.788756979000055 ], [ -123.684828114999902, 48.788988572000065 ], [ -123.684832209999982, 48.789568090000074 ], [ -123.684835530000029, 48.79015587700011 ], [ -123.684843383999976, 48.791544499000068 ], [ -123.684879, 48.793164614000098 ], [ -123.684907256999921, 48.794131902000068 ], [ -123.684918020999973, 48.794500627000033 ], [ -123.684936102999984, 48.795119489000044 ], [ -123.684973885000019, 48.796740309000015 ], [ -123.684978927999964, 48.79695621900008 ], [ -123.684986301999942, 48.797271608000116 ], [ -123.68460775699999, 48.797524517000085 ], [ -123.684293348999944, 48.79773457200011 ], [ -123.68406522, 48.797886992000024 ], [ -123.681913485999971, 48.799248703000067 ], [ -123.680449003999982, 48.799935999000112 ], [ -123.68033869199995, 48.80001046600006 ], [ -123.680244439999939, 48.800074102000053 ], [ -123.679981779999963, 48.800251405000076 ], [ -123.679705672999916, 48.800437773000105 ], [ -123.678397797999935, 48.801320602000047 ], [ -123.67797493899991, 48.801671519000095 ], [ -123.677600914999957, 48.801981897000054 ], [ -123.676123294999968, 48.80339689500007 ], [ -123.675801160999967, 48.80380408500011 ], [ -123.675397908999969, 48.804313781000097 ], [ -123.674871910999926, 48.804828601000089 ], [ -123.674722413999916, 48.804950811000026 ], [ -123.674208564999958, 48.805370897000067 ], [ -123.673437387999982, 48.806001308000084 ], [ -123.673236733999929, 48.806171554000123 ], [ -123.672958996999967, 48.806407209000042 ], [ -123.672297978999936, 48.807217900000111 ], [ -123.671981509999924, 48.807605991000088 ], [ -123.671580424999945, 48.808287498000034 ], [ -123.671243503999946, 48.808870047000099 ], [ -123.671104297999989, 48.809110698000055 ], [ -123.670786009999958, 48.80982460100013 ], [ -123.670368687999954, 48.810886005000064 ], [ -123.669735588999941, 48.812076103000066 ], [ -123.669628216999953, 48.81234326500001 ], [ -123.669481067999953, 48.812709500000011 ], [ -123.669352210999975, 48.813030110000092 ], [ -123.66919299599999, 48.813297047000049 ], [ -123.669147398999954, 48.813373500000075 ], [ -123.668768271999951, 48.813911542000028 ], [ -123.668386393999967, 48.814453500000099 ], [ -123.664002925999966, 48.814437090000077 ], [ -123.661412492999929, 48.814427300000126 ], [ -123.659128483999922, 48.814411126000067 ], [ -123.657847370999932, 48.81440204100015 ], [ -123.65746607899996, 48.814399340000101 ], [ -123.656035973999977, 48.814389171000045 ], [ -123.655450123, 48.814384992000065 ], [ -123.654101466999947, 48.814375378000094 ], [ -123.653597603999941, 48.814371783000091 ], [ -123.652562120999946, 48.814364386000101 ], [ -123.652166160999968, 48.814361543000089 ], [ -123.651226798999971, 48.81435483800005 ], [ -123.650901599999898, 48.814352509000045 ], [ -123.649510504999938, 48.814341372000058 ], [ -123.64851528399997, 48.814333398000088 ], [ -123.64734423099992, 48.814336444000091 ], [ -123.646504760999932, 48.814338603000081 ] ], [ [ -123.662433447999945, 48.813963360000088 ], [ -123.662463280999958, 48.81336503800005 ], [ -123.662402175999915, 48.813363701000121 ], [ -123.662372340999951, 48.813962022000048 ], [ -123.662433447999945, 48.813963360000088 ] ], [ [ -123.673516771999985, 48.804393684000111 ], [ -123.67352253699994, 48.804277506000048 ], [ -123.66968297199999, 48.804193795000053 ], [ -123.669677196999928, 48.804309973000045 ], [ -123.673516771999985, 48.804393684000111 ] ], [ [ -123.676355195999989, 48.802521314000131 ], [ -123.676354230999948, 48.802449677000041 ], [ -123.673991278999935, 48.802398237000013 ], [ -123.673987729999979, 48.802469776000088 ], [ -123.676355195999989, 48.802521314000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177109227", "BldgCostT": "117644856", "sL_LossRatio": "0.77294799887783", "sL_AssetLoss": "1429373", "sL_BldgLoss": "1104831", "sL_StrLoss": "596971", "sL_NStrLoss": "507860", "sL_ContLoss": "324542", "geom_point": "0101000020E6100000C45FFF1A35EC5EC05C00CFCDE9644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684832209999982, 48.789568090000074 ], [ -123.684828114999902, 48.788988572000065 ], [ -123.684828689, 48.788756979000055 ], [ -123.684829064999974, 48.788528996000103 ], [ -123.684829986999929, 48.78823525500011 ], [ -123.684824379999938, 48.786833845000054 ], [ -123.68483040299995, 48.78588307900003 ], [ -123.684830907999967, 48.785802122000028 ], [ -123.684831619999954, 48.78569417400012 ], [ -123.684832356999976, 48.785577207000117 ], [ -123.684833210999955, 48.785442293000095 ], [ -123.684833524999959, 48.785388349000101 ], [ -123.684833815999951, 48.785343366000127 ], [ -123.68483423799999, 48.785280401000101 ], [ -123.68483621799993, 48.784968727000063 ], [ -123.684986709999961, 48.784921536000056 ], [ -123.685008435999947, 48.784879664000066 ], [ -123.68504080799994, 48.784817271000101 ], [ -123.685130202999972, 48.784816694000078 ], [ -123.685998092999952, 48.78481099600009 ], [ -123.686512078999954, 48.784807710000081 ], [ -123.687518328999957, 48.784801578000042 ], [ -123.689914821999935, 48.784792771000106 ], [ -123.690044502999953, 48.78479229200012 ], [ -123.692558300999963, 48.784783609000037 ], [ -123.693421101999931, 48.784791384000094 ], [ -123.69394729699999, 48.784901003000151 ], [ -123.69628818699999, 48.784897501000074 ], [ -123.697798385999988, 48.784889967000119 ], [ -123.698833607999973, 48.784884805000097 ], [ -123.698757391999948, 48.785935484000035 ], [ -123.69871584699996, 48.786508413000099 ], [ -123.698714277999912, 48.787384063000061 ], [ -123.698206795999909, 48.787387138000085 ], [ -123.698201877999963, 48.78703267500007 ], [ -123.697384786999962, 48.787015054000051 ], [ -123.69738627299995, 48.787122225000125 ], [ -123.69633169, 48.787128602000102 ], [ -123.696278659999933, 48.788208446000041 ], [ -123.696584432999941, 48.788206598000052 ], [ -123.696591903999945, 48.788746315000076 ], [ -123.697000305999907, 48.788743846000116 ], [ -123.697007780999954, 48.789283563000019 ], [ -123.69708338099997, 48.789283105000074 ], [ -123.696968499999969, 48.789326002000074 ], [ -123.696792203999962, 48.789437542000123 ], [ -123.696662883999934, 48.789600225000108 ], [ -123.69547857500001, 48.790641617000084 ], [ -123.694268981999969, 48.791263881000127 ], [ -123.694009336999954, 48.791575283000093 ], [ -123.693949914999948, 48.791695471000068 ], [ -123.693782862999939, 48.792033576000051 ], [ -123.693348981999975, 48.792201064000075 ], [ -123.690974703999956, 48.792184605000045 ], [ -123.690551377999924, 48.792222396000085 ], [ -123.688474406999944, 48.792212612000107 ], [ -123.688259291999927, 48.792247510000053 ], [ -123.688080894999956, 48.792335614000081 ], [ -123.687061207999974, 48.793024486000022 ], [ -123.68686291299997, 48.793132004000064 ], [ -123.686693818999942, 48.793168793000056 ], [ -123.684879, 48.793164614000098 ], [ -123.684843383999976, 48.791544499000068 ], [ -123.684835530000029, 48.79015587700011 ], [ -123.684832209999982, 48.789568090000074 ] ], [ [ -123.68945506899999, 48.786360298000019 ], [ -123.689508253999961, 48.785280456000059 ], [ -123.688971061999951, 48.785283668000091 ], [ -123.688931163999939, 48.786093549000029 ], [ -123.68920367699999, 48.786091920000082 ], [ -123.689207371999956, 48.78636177900011 ], [ -123.68945506899999, 48.786360298000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192800969", "BldgCostT": "128930412", "sL_LossRatio": "0.823394657659634", "sL_AssetLoss": "1399499", "sL_BldgLoss": "1152340", "sL_StrLoss": "552180", "sL_NStrLoss": "600160", "sL_ContLoss": "247159", "geom_point": "0101000020E6100000A1D2256F82EC5EC0DC2B7F004A644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.69394729699999, 48.784901003000151 ], [ -123.693421101999931, 48.784791384000094 ], [ -123.692558300999963, 48.784783609000037 ], [ -123.692582789999932, 48.784010026000104 ], [ -123.692584547999928, 48.783587440000119 ], [ -123.692587951999982, 48.783158554000089 ], [ -123.692588396999938, 48.783029867000081 ], [ -123.692589405999968, 48.782714313000021 ], [ -123.693935507999981, 48.782706480000037 ], [ -123.698795803999985, 48.782689703000109 ], [ -123.698824612999985, 48.784097006000088 ], [ -123.696398726999945, 48.784104119000048 ], [ -123.696153680999956, 48.784104837000058 ], [ -123.693931680999953, 48.784111299000067 ], [ -123.69394729699999, 48.784901003000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233708438", "BldgCostT": "148051758", "sL_LossRatio": "0.725639678557424", "sL_AssetLoss": "1966261", "sL_BldgLoss": "1426797", "sL_StrLoss": "651860", "sL_NStrLoss": "774937", "sL_ContLoss": "539464", "geom_point": "0101000020E61000003F1A14EE51EC5EC02652FDF71E644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684843647999983, 48.783771275000042 ], [ -123.684940384999948, 48.78051660600012 ], [ -123.687700389999975, 48.780556193000052 ], [ -123.690586112999981, 48.780597502000035 ], [ -123.692558906999949, 48.780625688000072 ], [ -123.69394528699992, 48.780571912000084 ], [ -123.696906461, 48.780540007000035 ], [ -123.698414207999932, 48.780503744000036 ], [ -123.698770402999955, 48.780491307000098 ], [ -123.698930681999983, 48.780491427000094 ], [ -123.699017599999934, 48.780491494000096 ], [ -123.700770726999949, 48.780474002000112 ], [ -123.702028436999939, 48.780460556000094 ], [ -123.703297979999931, 48.780447 ], [ -123.704408508999904, 48.780435113000031 ], [ -123.705581592999962, 48.780406304000074 ], [ -123.70556449499999, 48.782090192000048 ], [ -123.704456899999954, 48.782091886000089 ], [ -123.704393994999947, 48.782092009000102 ], [ -123.70318100799993, 48.782103785000068 ], [ -123.699206262999923, 48.782136237000053 ], [ -123.699079414999986, 48.782174005000059 ], [ -123.69884470099997, 48.781610314000041 ], [ -123.698787420999921, 48.781303933000032 ], [ -123.698777901999932, 48.781252893000058 ], [ -123.693940175999941, 48.781283691000112 ], [ -123.693935507999981, 48.782706480000037 ], [ -123.692589405999968, 48.782714313000021 ], [ -123.692588396999938, 48.783029867000081 ], [ -123.692587951999982, 48.783158554000089 ], [ -123.692584547999928, 48.783587440000119 ], [ -123.692582789999932, 48.784010026000104 ], [ -123.692558300999963, 48.784783609000037 ], [ -123.690044502999953, 48.78479229200012 ], [ -123.689914821999935, 48.784792771000106 ], [ -123.687518328999957, 48.784801578000042 ], [ -123.686512078999954, 48.784807710000081 ], [ -123.685998092999952, 48.78481099600009 ], [ -123.685130202999972, 48.784816694000078 ], [ -123.68504080799994, 48.784817271000101 ], [ -123.685008435999947, 48.784879664000066 ], [ -123.684986709999961, 48.784921536000056 ], [ -123.68483621799993, 48.784968727000063 ], [ -123.684680383999989, 48.784931105000112 ], [ -123.684610445, 48.784833173000017 ], [ -123.684664487999939, 48.78472980600003 ], [ -123.684815034999986, 48.784681717000119 ], [ -123.684843647999983, 48.783771275000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "330160247", "BldgCostT": "209184065", "sL_LossRatio": "0.724654384182146", "sL_AssetLoss": "2376555", "sL_BldgLoss": "1722181", "sL_StrLoss": "836421", "sL_NStrLoss": "885760", "sL_ContLoss": "654374", "geom_point": "0101000020E610000067CE85F488EC5EC03EBF51C0B0634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.692558906999949, 48.780625688000072 ], [ -123.692484183999966, 48.778719007000085 ], [ -123.692183781999972, 48.778717991000072 ], [ -123.692467298999944, 48.778540263000131 ], [ -123.694802351999925, 48.777076379000036 ], [ -123.695067103, 48.776910392000019 ], [ -123.695416711999925, 48.776846330000154 ], [ -123.69552931099993, 48.77682570600011 ], [ -123.69697861, 48.776843486000104 ], [ -123.698056498999932, 48.77684150500005 ], [ -123.698199186999886, 48.776841892000078 ], [ -123.698373610999937, 48.77680509200006 ], [ -123.698755688999952, 48.776800698000073 ], [ -123.698843209999936, 48.776800166000072 ], [ -123.698917507999951, 48.776799699999984 ], [ -123.698916902999912, 48.776894307000063 ], [ -123.698844473999927, 48.7768939790001 ], [ -123.698756589999945, 48.776893590000043 ], [ -123.698757910999959, 48.777684403000087 ], [ -123.69875947499996, 48.778646176000031 ], [ -123.698759612999979, 48.778717604000043 ], [ -123.698770402999955, 48.780491307000098 ], [ -123.698414207999932, 48.780503744000036 ], [ -123.696906461, 48.780540007000035 ], [ -123.69394528699992, 48.780571912000084 ], [ -123.692558906999949, 48.780625688000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "482490264", "BldgCostT": "325493356", "sL_LossRatio": "0.816779089582347", "sL_AssetLoss": "3269796", "sL_BldgLoss": "2670701", "sL_StrLoss": "1234240", "sL_NStrLoss": "1436461", "sL_ContLoss": "599095", "geom_point": "0101000020E61000000545464980EC5EC09FB21EE74B634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.696560111999972, 48.773326289000131 ], [ -123.697495600999957, 48.773314897000013 ], [ -123.698751511999959, 48.773560970000055 ], [ -123.698754029999961, 48.775360275000075 ], [ -123.698754399999984, 48.775636397000056 ], [ -123.698755688999952, 48.776800698000073 ], [ -123.698373610999937, 48.77680509200006 ], [ -123.698199186999886, 48.776841892000078 ], [ -123.698056498999932, 48.77684150500005 ], [ -123.69697861, 48.776843486000104 ], [ -123.69552931099993, 48.77682570600011 ], [ -123.695416711999925, 48.776846330000154 ], [ -123.695067103, 48.776910392000019 ], [ -123.694802351999925, 48.777076379000036 ], [ -123.692467298999944, 48.778540263000131 ], [ -123.692183781999972, 48.778717991000072 ], [ -123.691742104999918, 48.778994998000059 ], [ -123.691704772999913, 48.777017897000093 ], [ -123.691654587999921, 48.776904204000097 ], [ -123.691624154999928, 48.77638829200005 ], [ -123.691607193999957, 48.776101096000062 ], [ -123.691581700999961, 48.775292302000096 ], [ -123.691812880999933, 48.77529009200002 ], [ -123.695026185999893, 48.77525409400009 ], [ -123.695019587999965, 48.774889887000043 ], [ -123.695009198999955, 48.774492206000026 ], [ -123.69500786899999, 48.774010238000081 ], [ -123.695007700999923, 48.773941604000157 ], [ -123.694994781, 48.773739953000096 ], [ -123.694982169999975, 48.773543545000067 ], [ -123.694979212999897, 48.773497597000066 ], [ -123.695159435999983, 48.773451827000066 ], [ -123.695509098999977, 48.773362985000055 ], [ -123.696017600999966, 48.773342651000036 ], [ -123.696085475999965, 48.773339944000092 ], [ -123.696298930999916, 48.773331399000014 ], [ -123.696412437000021, 48.773329168000068 ], [ -123.696560111999972, 48.773326289000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237798304", "BldgCostT": "158468747", "sL_LossRatio": "0.777270652150401", "sL_AssetLoss": "1756742", "sL_BldgLoss": "1365464", "sL_StrLoss": "717274", "sL_NStrLoss": "648190", "sL_ContLoss": "391278", "geom_point": "0101000020E6100000777DA34636EC5EC043DFACDA18634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.688209798999978, 48.773143553000082 ], [ -123.688202420999957, 48.772603832000129 ], [ -123.687794148999927, 48.77260627000009 ], [ -123.68778677499995, 48.772066551000123 ], [ -123.686970237999915, 48.772071422000053 ], [ -123.686969292999891, 48.772002117000028 ], [ -123.68794070499996, 48.771911888000069 ], [ -123.688687811999927, 48.771936409000034 ], [ -123.69163171699995, 48.772033001000075 ], [ -123.69310275399999, 48.77200620700004 ], [ -123.69406675099999, 48.771988635000078 ], [ -123.698189417999956, 48.771913400000088 ], [ -123.698742874999965, 48.771938196000136 ], [ -123.698744507999905, 48.772242337000066 ], [ -123.698745081999931, 48.772350295000116 ], [ -123.6987451319999, 48.772360898000024 ], [ -123.69875077599994, 48.773424894000115 ], [ -123.698751511999959, 48.773560970000055 ], [ -123.697495600999957, 48.773314897000013 ], [ -123.696560111999972, 48.773326289000131 ], [ -123.696412437000021, 48.773329168000068 ], [ -123.696298930999916, 48.773331399000014 ], [ -123.696085475999965, 48.773339944000092 ], [ -123.696017600999966, 48.773342651000036 ], [ -123.695509098999977, 48.773362985000055 ], [ -123.695159435999983, 48.773451827000066 ], [ -123.694979212999897, 48.773497597000066 ], [ -123.694982169999975, 48.773543545000067 ], [ -123.694994781, 48.773739953000096 ], [ -123.695007700999923, 48.773941604000157 ], [ -123.69500786899999, 48.774010238000081 ], [ -123.695009198999955, 48.774492206000026 ], [ -123.695019587999965, 48.774889887000043 ], [ -123.695026185999893, 48.77525409400009 ], [ -123.691812880999933, 48.77529009200002 ], [ -123.691581700999961, 48.775292302000096 ], [ -123.691607193999957, 48.776101096000062 ], [ -123.691624154999928, 48.77638829200005 ], [ -123.691654587999921, 48.776904204000097 ], [ -123.690464911999953, 48.776914499000029 ], [ -123.690095085999971, 48.776917298000043 ], [ -123.689863797999962, 48.776918955000077 ], [ -123.688592713999967, 48.776928099000074 ], [ -123.68838470699994, 48.77692991100011 ], [ -123.687627393999961, 48.77693420900016 ], [ -123.686645687999942, 48.776942602000098 ], [ -123.686077725999922, 48.776946553000066 ], [ -123.685984997999938, 48.776947200000052 ], [ -123.685873693999937, 48.776947655000093 ], [ -123.685723988999911, 48.776948290000099 ], [ -123.685601581999961, 48.776948807000103 ], [ -123.685451354999969, 48.776950363000047 ], [ -123.685123, 48.776953783000117 ], [ -123.68510449399993, 48.775372697000122 ], [ -123.68491098199992, 48.773972848000021 ], [ -123.684954589999975, 48.773972590000021 ], [ -123.684950918999931, 48.773702730000082 ], [ -123.687400612, 48.773688146000026 ], [ -123.687393242999988, 48.773148425000066 ], [ -123.688209798999978, 48.773143553000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199480251", "BldgCostT": "135650001", "sL_LossRatio": "0.785557859636194", "sL_AssetLoss": "1582217", "sL_BldgLoss": "1242923", "sL_StrLoss": "619074", "sL_NStrLoss": "623849", "sL_ContLoss": "339294", "geom_point": "0101000020E610000069CAA18712EC5EC02D8E4615B0634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.685099408999989, 48.779138581000019 ], [ -123.68510839599999, 48.778488097000015 ], [ -123.685123, 48.776953783000117 ], [ -123.685451354999969, 48.776950363000047 ], [ -123.685601581999961, 48.776948807000103 ], [ -123.685723988999911, 48.776948290000099 ], [ -123.685873693999937, 48.776947655000093 ], [ -123.685984997999938, 48.776947200000052 ], [ -123.686077725999922, 48.776946553000066 ], [ -123.686645687999942, 48.776942602000098 ], [ -123.687627393999961, 48.77693420900016 ], [ -123.68838470699994, 48.77692991100011 ], [ -123.688592713999967, 48.776928099000074 ], [ -123.689863797999962, 48.776918955000077 ], [ -123.690095085999971, 48.776917298000043 ], [ -123.690464911999953, 48.776914499000029 ], [ -123.691654587999921, 48.776904204000097 ], [ -123.691704772999913, 48.777017897000093 ], [ -123.691742104999918, 48.778994998000059 ], [ -123.692183781999972, 48.778717991000072 ], [ -123.692484183999966, 48.778719007000085 ], [ -123.692558906999949, 48.780625688000072 ], [ -123.690586112999981, 48.780597502000035 ], [ -123.687700389999975, 48.780556193000052 ], [ -123.684940384999948, 48.78051660600012 ], [ -123.684943397999945, 48.780411924000049 ], [ -123.684958875999982, 48.779866369000075 ], [ -123.685091883999974, 48.779704344000073 ], [ -123.685099408999989, 48.779138581000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50965750", "BldgCostT": "34885000", "sL_LossRatio": "0.739634791527371", "sL_AssetLoss": "462147", "sL_BldgLoss": "341820", "sL_StrLoss": "89570", "sL_NStrLoss": "252250", "sL_ContLoss": "120327", "geom_point": "0101000020E61000003D1E869843EC5EC09B351DA6A2624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684690163999946, 48.769713808000077 ], [ -123.684772518000031, 48.769705289000079 ], [ -123.68488392700003, 48.769651900000028 ], [ -123.686686093999967, 48.76964361100007 ], [ -123.688074149999949, 48.769637223000053 ], [ -123.689965740999966, 48.769628474000136 ], [ -123.690544985999964, 48.769625797000067 ], [ -123.690619002999952, 48.76962549600011 ], [ -123.691646282999969, 48.769621214000111 ], [ -123.692010240999963, 48.769619686000112 ], [ -123.694225891999949, 48.769606307000075 ], [ -123.694307106999943, 48.769606091000092 ], [ -123.695894912999961, 48.769601791000035 ], [ -123.69770954199997, 48.76960751200005 ], [ -123.698458564999967, 48.769609859000099 ], [ -123.698485348999952, 48.769609918000086 ], [ -123.69873051699993, 48.769610728000089 ], [ -123.698733772999972, 48.770227265000074 ], [ -123.69873674399993, 48.770785038 ], [ -123.698740123999968, 48.771423711000054 ], [ -123.698741095999978, 48.771602766000051 ], [ -123.69574839199997, 48.771468997000014 ], [ -123.68709280099992, 48.771538795000048 ], [ -123.685330789999938, 48.771820918000088 ], [ -123.68490820199996, 48.771811751000044 ], [ -123.684904577999959, 48.771885202000114 ], [ -123.684656171999947, 48.771879813000062 ], [ -123.684690163999946, 48.769713808000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113119750", "BldgCostT": "72910000", "sL_LossRatio": "0.775606472660554", "sL_AssetLoss": "736884", "sL_BldgLoss": "571532", "sL_StrLoss": "320163", "sL_NStrLoss": "251369", "sL_ContLoss": "165352", "geom_point": "0101000020E610000055726FFACAEB5EC0FF7C421334624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.672277926999925, 48.768362106000062 ], [ -123.672373593999922, 48.766433266000064 ], [ -123.67589461599999, 48.766510014000033 ], [ -123.675999363999949, 48.764394649000089 ], [ -123.679019907999972, 48.764460396000068 ], [ -123.679027457999936, 48.76430771600014 ], [ -123.678579174, 48.764297964000022 ], [ -123.678664330999965, 48.762576196000062 ], [ -123.679275183999948, 48.762570205000038 ], [ -123.679430855999939, 48.762566849000052 ], [ -123.680029387, 48.762553959000101 ], [ -123.680110934999917, 48.762552196000058 ], [ -123.680818888999966, 48.762536944000011 ], [ -123.680914063000017, 48.762534909000109 ], [ -123.682037466999958, 48.762510679000108 ], [ -123.682151277999964, 48.762508226000058 ], [ -123.684238805999939, 48.76246322100009 ], [ -123.684342259999951, 48.764448165000026 ], [ -123.68441409399999, 48.7658256980001 ], [ -123.68485348199998, 48.765802751000145 ], [ -123.685800655999941, 48.765783328000083 ], [ -123.69470427399996, 48.765955006000112 ], [ -123.697139966999941, 48.766001823000096 ], [ -123.697338853999895, 48.766003210000036 ], [ -123.698031387999933, 48.766008081000074 ], [ -123.698119679999976, 48.766870783000115 ], [ -123.698146206999979, 48.767129947000079 ], [ -123.698458564999967, 48.769609859000099 ], [ -123.69770954199997, 48.76960751200005 ], [ -123.695894912999961, 48.769601791000035 ], [ -123.694307106999943, 48.769606091000092 ], [ -123.694225891999949, 48.769606307000075 ], [ -123.692010240999963, 48.769619686000112 ], [ -123.691646282999969, 48.769621214000111 ], [ -123.690619002999952, 48.76962549600011 ], [ -123.690544985999964, 48.769625797000067 ], [ -123.689965740999966, 48.769628474000136 ], [ -123.688074149999949, 48.769637223000053 ], [ -123.686686093999967, 48.76964361100007 ], [ -123.68488392700003, 48.769651900000028 ], [ -123.684772518000031, 48.769705289000079 ], [ -123.684690163999946, 48.769713808000077 ], [ -123.684519804000018, 48.769731392000054 ], [ -123.682073066999962, 48.769769145000069 ], [ -123.679399609999905, 48.769810310000075 ], [ -123.678209779999975, 48.76981563800004 ], [ -123.67538300199999, 48.769828294000028 ], [ -123.67512472099996, 48.769831693000128 ], [ -123.671229493999959, 48.769868404000086 ], [ -123.671139306999976, 48.769715116000086 ], [ -123.671147661999939, 48.768337446000032 ], [ -123.672277926999925, 48.768362106000062 ] ], [ [ -123.68403413799993, 48.766330549000074 ], [ -123.68402946499999, 48.765986541000061 ], [ -123.681358676999963, 48.765928539000079 ], [ -123.681334415999942, 48.766419618000079 ], [ -123.681713821999949, 48.766427862000022 ], [ -123.68170307099993, 48.766645506000017 ], [ -123.682831154999946, 48.766670009000059 ], [ -123.682849185999942, 48.766304823000027 ], [ -123.68403413799993, 48.766330549000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "412807092", "BldgCostT": "241219054", "sL_LossRatio": "0.623110912176537", "sL_AssetLoss": "3847161", "sL_BldgLoss": "2397208", "sL_StrLoss": "874488", "sL_NStrLoss": "1522720", "sL_ContLoss": "1449953", "geom_point": "0101000020E6100000D08D5783A4EC5EC07B42AEF5C1614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.704837990999962, 48.769791169000065 ], [ -123.704640869999963, 48.769775692000046 ], [ -123.70360317199993, 48.76978870600005 ], [ -123.699521618999967, 48.76941329800006 ], [ -123.699327416999978, 48.76949848400011 ], [ -123.699315983999938, 48.76950349600002 ], [ -123.698875807999968, 48.769612098000025 ], [ -123.69873051699993, 48.769610728000089 ], [ -123.698485348999952, 48.769609918000086 ], [ -123.698458564999967, 48.769609859000099 ], [ -123.698146206999979, 48.767129947000079 ], [ -123.698119679999976, 48.766870783000115 ], [ -123.698031387999933, 48.766008081000074 ], [ -123.697338853999895, 48.766003210000036 ], [ -123.697139966999941, 48.766001823000096 ], [ -123.696856281999942, 48.765794405000101 ], [ -123.696432803999926, 48.765537406000064 ], [ -123.695864464999943, 48.765239507000146 ], [ -123.69109714799994, 48.762744225000063 ], [ -123.690947970999957, 48.762666149000047 ], [ -123.690799435999978, 48.762588366000095 ], [ -123.690702656, 48.762537690000045 ], [ -123.689690248999938, 48.762007729000118 ], [ -123.68869432799994, 48.761487227000082 ], [ -123.687504664999977, 48.760865466000048 ], [ -123.687107273999928, 48.760699411000118 ], [ -123.687066648999959, 48.760682441000064 ], [ -123.685633195999984, 48.760083463000093 ], [ -123.68414952199997, 48.759463488000044 ], [ -123.684138031999936, 48.759458688000038 ], [ -123.68302849399997, 48.758979941000135 ], [ -123.683382364999929, 48.758991243000011 ], [ -123.684492654999957, 48.759026801000061 ], [ -123.684685352999935, 48.75902687100006 ], [ -123.685504603999931, 48.759027155000062 ], [ -123.693731707999959, 48.759029557000112 ], [ -123.693732354999938, 48.759076575000073 ], [ -123.694902715999916, 48.759069524000083 ], [ -123.694904664999953, 48.759029846000033 ], [ -123.697974446999964, 48.759030518000053 ], [ -123.698033994999918, 48.759069985000039 ], [ -123.698170747999981, 48.759188879000085 ], [ -123.69827620599996, 48.759280528000041 ], [ -123.698438009999947, 48.759421200000148 ], [ -123.698463227000019, 48.759452222000114 ], [ -123.698659551999981, 48.75969357499999 ], [ -123.698691721, 48.759733054000016 ], [ -123.699010775999923, 48.759737232000084 ], [ -123.700325333999928, 48.760164791000108 ], [ -123.701171158999969, 48.760566021000052 ], [ -123.701977190999969, 48.76108623500005 ], [ -123.70363018399999, 48.76229066200009 ], [ -123.703778541999938, 48.762395676 ], [ -123.703553659999926, 48.76249358900003 ], [ -123.702145098999921, 48.762513696000099 ], [ -123.701876408999951, 48.762451197000061 ], [ -123.701494893999893, 48.76227890800007 ], [ -123.700602205999957, 48.76242126600004 ], [ -123.700771805999949, 48.7626165860001 ], [ -123.70136920099999, 48.76345860800005 ], [ -123.701436881999939, 48.763656492000088 ], [ -123.701324078999974, 48.763962206000066 ], [ -123.700882011999951, 48.764472699000073 ], [ -123.700275805, 48.765307605000039 ], [ -123.703279080999948, 48.766320678000064 ], [ -123.703594895999942, 48.766427205000049 ], [ -123.705314065999929, 48.766736491000181 ], [ -123.706217490999947, 48.766899001000105 ], [ -123.706616402999884, 48.767021088000078 ], [ -123.706779512999915, 48.767104799000045 ], [ -123.70731470599999, 48.767386688000059 ], [ -123.708759688, 48.768405396000048 ], [ -123.709157279999914, 48.768750100000027 ], [ -123.70948326099996, 48.768957520000122 ], [ -123.709608031999963, 48.769036927000109 ], [ -123.710060108, 48.769324593000064 ], [ -123.710392718999941, 48.769496960000012 ], [ -123.710106817999986, 48.7695984100001 ], [ -123.70998280399999, 48.769537797000112 ], [ -123.708660510999962, 48.76930279100003 ], [ -123.707245390999944, 48.769321314000138 ], [ -123.705545040999979, 48.769862065000055 ], [ -123.704837990999962, 48.769791169000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65911432", "BldgCostT": "37355023", "sL_LossRatio": "0.59981151700502", "sL_AssetLoss": "1095059", "sL_BldgLoss": "656829", "sL_StrLoss": "184789", "sL_NStrLoss": "472040", "sL_ContLoss": "438230", "geom_point": "0101000020E6100000009B20A8E2EB5EC03C8B28379B614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684342259999951, 48.764448165000026 ], [ -123.684238805999939, 48.76246322100009 ], [ -123.682151277999964, 48.762508226000058 ], [ -123.682037466999958, 48.762510679000108 ], [ -123.680914063000017, 48.762534909000109 ], [ -123.680818888999966, 48.762536944000011 ], [ -123.680110934999917, 48.762552196000058 ], [ -123.680029387, 48.762553959000101 ], [ -123.679430855999939, 48.762566849000052 ], [ -123.679275183999948, 48.762570205000038 ], [ -123.678664330999965, 48.762576196000062 ], [ -123.678729833999938, 48.761251713000057 ], [ -123.676754790999979, 48.761208724000014 ], [ -123.676839421999972, 48.759498796000045 ], [ -123.676156070999966, 48.759483914000079 ], [ -123.676167492, 48.759253244000014 ], [ -123.675692768999966, 48.759242903000029 ], [ -123.67571312599992, 48.758831776000065 ], [ -123.682542742999956, 48.758980694000044 ], [ -123.68302849399997, 48.758979941000135 ], [ -123.684138031999936, 48.759458688000038 ], [ -123.68414952199997, 48.759463488000044 ], [ -123.685633195999984, 48.760083463000093 ], [ -123.687066648999959, 48.760682441000064 ], [ -123.687107273999928, 48.760699411000118 ], [ -123.687504664999977, 48.760865466000048 ], [ -123.68869432799994, 48.761487227000082 ], [ -123.689690248999938, 48.762007729000118 ], [ -123.690702656, 48.762537690000045 ], [ -123.690799435999978, 48.762588366000095 ], [ -123.690947970999957, 48.762666149000047 ], [ -123.69109714799994, 48.762744225000063 ], [ -123.695864464999943, 48.765239507000146 ], [ -123.696432803999926, 48.765537406000064 ], [ -123.696856281999942, 48.765794405000101 ], [ -123.697139966999941, 48.766001823000096 ], [ -123.69470427399996, 48.765955006000112 ], [ -123.685800655999941, 48.765783328000083 ], [ -123.68485348199998, 48.765802751000145 ], [ -123.68441409399999, 48.7658256980001 ], [ -123.684342259999951, 48.764448165000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188257584", "BldgCostT": "124673334", "sL_LossRatio": "0.79576929644152", "sL_AssetLoss": "1300162", "sL_BldgLoss": "1034629", "sL_StrLoss": "595854", "sL_NStrLoss": "438775", "sL_ContLoss": "265533", "geom_point": "0101000020E6100000D3D1BBC24CED5EC04C99F5DEEF614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.710060108, 48.769324593000064 ], [ -123.709608031999963, 48.769036927000109 ], [ -123.70948326099996, 48.768957520000122 ], [ -123.709157279999914, 48.768750100000027 ], [ -123.708759688, 48.768405396000048 ], [ -123.70731470599999, 48.767386688000059 ], [ -123.706779512999915, 48.767104799000045 ], [ -123.706616402999884, 48.767021088000078 ], [ -123.706217490999947, 48.766899001000105 ], [ -123.705314065999929, 48.766736491000181 ], [ -123.703594895999942, 48.766427205000049 ], [ -123.703279080999948, 48.766320678000064 ], [ -123.700275805, 48.765307605000039 ], [ -123.700882011999951, 48.764472699000073 ], [ -123.701324078999974, 48.763962206000066 ], [ -123.701436881999939, 48.763656492000088 ], [ -123.70136920099999, 48.76345860800005 ], [ -123.700771805999949, 48.7626165860001 ], [ -123.700602205999957, 48.76242126600004 ], [ -123.701494893999893, 48.76227890800007 ], [ -123.701876408999951, 48.762451197000061 ], [ -123.702145098999921, 48.762513696000099 ], [ -123.703553659999926, 48.76249358900003 ], [ -123.703778541999938, 48.762395676 ], [ -123.70363018399999, 48.76229066200009 ], [ -123.704233597, 48.762398265000115 ], [ -123.705120395999984, 48.762462396000096 ], [ -123.705690704999938, 48.762414286000052 ], [ -123.706354012999924, 48.762297895000124 ], [ -123.70676361699999, 48.762285983000041 ], [ -123.707033204999973, 48.762320878000068 ], [ -123.708375587999953, 48.762494509000064 ], [ -123.708605409999933, 48.762492255000069 ], [ -123.708837805999934, 48.762490009000047 ], [ -123.709913318999909, 48.762475308000035 ], [ -123.710878409999935, 48.762439208000075 ], [ -123.71098709099999, 48.762437904000073 ], [ -123.711000706, 48.762437134000052 ], [ -123.711545690999955, 48.762406691000152 ], [ -123.712137296999927, 48.762340009000042 ], [ -123.71330908799996, 48.762214714000088 ], [ -123.712676398, 48.768241696000089 ], [ -123.712639137999986, 48.768245866 ], [ -123.712639183999968, 48.768249158000096 ], [ -123.712645236999933, 48.768676935000059 ], [ -123.712307321999972, 48.768679024000093 ], [ -123.712400917999943, 48.769455393000044 ], [ -123.712329106999903, 48.769444792000101 ], [ -123.711558684999915, 48.769465552000042 ], [ -123.711372238999928, 48.76935386100007 ], [ -123.711357577999976, 48.769338738000087 ], [ -123.711351120999922, 48.769471144000079 ], [ -123.710392718999941, 48.769496960000012 ], [ -123.710060108, 48.769324593000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22458416", "BldgCostT": "13961666", "sL_LossRatio": "0.707702419667339", "sL_AssetLoss": "203871", "sL_BldgLoss": "144280", "sL_StrLoss": "83980", "sL_NStrLoss": "60300", "sL_ContLoss": "59591", "geom_point": "0101000020E61000005F0C821A40EF5EC0011743BD89614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.73801018199994, 48.762101995000144 ], [ -123.738057946999945, 48.761110833000117 ], [ -123.737623555999988, 48.76110162300003 ], [ -123.737668027999973, 48.760178910000086 ], [ -123.733083848999954, 48.760081606000043 ], [ -123.733098529999921, 48.759777614000043 ], [ -123.731199998999912, 48.759737258000072 ], [ -123.731207303999909, 48.759586124000108 ], [ -123.727788585999974, 48.759513370000072 ], [ -123.727803051999956, 48.759214513000096 ], [ -123.733914146, 48.759313337000023 ], [ -123.741694508999956, 48.759500492000093 ], [ -123.745926063999917, 48.759522451000123 ], [ -123.748194111999979, 48.759549497000087 ], [ -123.748192793999948, 48.759576983 ], [ -123.747206481999967, 48.759556161000056 ], [ -123.747200259999943, 48.759685807000082 ], [ -123.745790116999913, 48.759656022000058 ], [ -123.745733467999955, 48.760835639000042 ], [ -123.743507991999977, 48.760788595000093 ], [ -123.743404991999952, 48.762931090000109 ], [ -123.73897834, 48.762837378000036 ], [ -123.73883926799995, 48.765724194000072 ], [ -123.735564678999964, 48.765654753000049 ], [ -123.733409731999956, 48.765609 ], [ -123.733583617999955, 48.762008059000053 ], [ -123.73801018199994, 48.762101995000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7543084", "BldgCostT": "4938334", "sL_LossRatio": "0.723348009294325", "sL_AssetLoss": "74066.7", "sL_BldgLoss": "53576", "sL_StrLoss": "31365", "sL_NStrLoss": "22211", "sL_ContLoss": "20490.7", "geom_point": "0101000020E6100000B227BB7803F15EC0F686357437624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.765176529999962, 48.769471044000085 ], [ -123.765219745999957, 48.768563517000153 ], [ -123.765129331999972, 48.768561624000057 ], [ -123.765155487999891, 48.76801237300009 ], [ -123.765071961999951, 48.768010624000041 ], [ -123.765243429999899, 48.76440964600004 ], [ -123.765368369999976, 48.764412263000033 ], [ -123.765395534, 48.763841714000108 ], [ -123.76556019, 48.763838101000111 ], [ -123.766387507, 48.763751200000065 ], [ -123.767642560999946, 48.763415237000082 ], [ -123.767803623999924, 48.769921382000071 ], [ -123.767805740999933, 48.770007971000055 ], [ -123.759817614999918, 48.769864842000118 ], [ -123.75857865299993, 48.769906905000056 ], [ -123.759458765999938, 48.769521387000047 ], [ -123.760450825999939, 48.7695422110001 ], [ -123.760458940999968, 48.769372143000062 ], [ -123.765176529999962, 48.769471044000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5907001", "BldgCostT": "3810001", "sL_LossRatio": "0.79768326450834", "sL_AssetLoss": "41748.4", "sL_BldgLoss": "33302", "sL_StrLoss": "19685", "sL_NStrLoss": "13617", "sL_ContLoss": "8446.4", "geom_point": "0101000020E6100000EFCA914217F05EC0006E795951634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.751653840999936, 48.775312191000104 ], [ -123.751744239999965, 48.773425456000041 ], [ -123.752151702999981, 48.773615291000056 ], [ -123.752592494999988, 48.773918709000021 ], [ -123.75350679099999, 48.774119497000136 ], [ -123.754344459, 48.774167944000091 ], [ -123.754412184999936, 48.776996957000101 ], [ -123.751532156999986, 48.777125313000091 ], [ -123.746680134999949, 48.777189820000061 ], [ -123.746689358999973, 48.77699772700003 ], [ -123.746842418999904, 48.777000959000127 ], [ -123.74688880599993, 48.776034929000069 ], [ -123.748458530999983, 48.77606805500006 ], [ -123.748474959999953, 48.77572566700011 ], [ -123.751025076999952, 48.775779432000057 ], [ -123.751048082999972, 48.775299429000029 ], [ -123.751653840999936, 48.775312191000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6620584", "BldgCostT": "4038334", "sL_LossRatio": "0.679810431968844", "sL_AssetLoss": "69843", "sL_BldgLoss": "47480", "sL_StrLoss": "28375", "sL_NStrLoss": "19105", "sL_ContLoss": "22363", "geom_point": "0101000020E610000038AEB111E9EC5EC0B0F65E19A7624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.703711066, 48.772102811000089 ], [ -123.703705444999969, 48.771700569000075 ], [ -123.702891931999943, 48.77170553400007 ], [ -123.702878992999956, 48.771969861000109 ], [ -123.701335341999936, 48.77193662300008 ], [ -123.700202505999968, 48.771729608000015 ], [ -123.698934505999944, 48.771611407000108 ], [ -123.698901540999927, 48.771609929000107 ], [ -123.698741095999978, 48.771602766000051 ], [ -123.698740123999968, 48.771423711000054 ], [ -123.69873674399993, 48.770785038 ], [ -123.698733772999972, 48.770227265000074 ], [ -123.69873051699993, 48.769610728000089 ], [ -123.698875807999968, 48.769612098000025 ], [ -123.699315983999938, 48.76950349600002 ], [ -123.699327416999978, 48.76949848400011 ], [ -123.699521618999967, 48.76941329800006 ], [ -123.70360317199993, 48.76978870600005 ], [ -123.704640869999963, 48.769775692000046 ], [ -123.704837990999962, 48.769791169000065 ], [ -123.705545040999979, 48.769862065000055 ], [ -123.704562880999973, 48.770174399000027 ], [ -123.704487315999955, 48.7706059920001 ], [ -123.704905607999962, 48.771394988000047 ], [ -123.704841985999963, 48.771619999000073 ], [ -123.704382508999956, 48.771929005000075 ], [ -123.703909193999948, 48.772084309000014 ], [ -123.703711066, 48.772102811000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.93064263322884", "sL_AssetLoss": "2552", "sL_BldgLoss": "2375", "sL_StrLoss": "1870", "sL_NStrLoss": "505", "sL_ContLoss": "177", "geom_point": "0101000020E610000009EC417323EE5EC0653FE65E3B634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.720914321, 48.775912318000117 ], [ -123.72091045699996, 48.77564246000005 ], [ -123.71976540199995, 48.77564961700007 ], [ -123.719685571999932, 48.775650116000079 ], [ -123.719684467999954, 48.77557286100005 ], [ -123.719674, 48.774840542000035 ], [ -123.720082287999944, 48.77483799200013 ], [ -123.720078427999908, 48.774568134000013 ], [ -123.721303287999959, 48.774560475000044 ], [ -123.721307152999884, 48.774830333000054 ], [ -123.721715440999944, 48.774827776000052 ], [ -123.721719309, 48.775097634000048 ], [ -123.722127599999965, 48.775095077000032 ], [ -123.722139211999902, 48.775904649000083 ], [ -123.720914321, 48.775912318000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9916918", "BldgCostT": "6311668", "sL_LossRatio": "0.687113933446043", "sL_AssetLoss": "121255", "sL_BldgLoss": "83316", "sL_StrLoss": "48244", "sL_NStrLoss": "35072", "sL_ContLoss": "37939", "geom_point": "0101000020E610000026FD203FD9ED5EC021CF3F0BD3624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.712853175999939, 48.771300996000022 ], [ -123.711655509999957, 48.77035530400012 ], [ -123.711529005999978, 48.770293479000038 ], [ -123.711859493999924, 48.770300565000078 ], [ -123.712616944999951, 48.770316804000039 ], [ -123.712641108999904, 48.769821066000063 ], [ -123.712658908999956, 48.76982144800013 ], [ -123.718071081999966, 48.7699373170001 ], [ -123.718032243999929, 48.770736030000108 ], [ -123.718379387999931, 48.770743453000087 ], [ -123.71958767599989, 48.770769280000152 ], [ -123.719510109999973, 48.77236545100007 ], [ -123.719412682999945, 48.77437014700012 ], [ -123.719165255999883, 48.774364859000052 ], [ -123.717326312999887, 48.774325543000124 ], [ -123.71723269099999, 48.776250012000112 ], [ -123.717153899999985, 48.776114809000035 ], [ -123.71654531499999, 48.775344308000101 ], [ -123.71560910699999, 48.77365950600003 ], [ -123.714564888999959, 48.773054203000122 ], [ -123.714384539999941, 48.772905222000112 ], [ -123.714207892, 48.77275929500005 ], [ -123.712853175999939, 48.771300996000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7277334", "BldgCostT": "4283334", "sL_LossRatio": "0.675169116118405", "sL_AssetLoss": "62531", "sL_BldgLoss": "42219", "sL_StrLoss": "24229", "sL_NStrLoss": "17990", "sL_ContLoss": "20312", "geom_point": "0101000020E6100000A6F1F21104EF5EC0F10425796C634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.728399649999986, 48.777391282000046 ], [ -123.728419784999971, 48.776975377000085 ], [ -123.729726135999925, 48.777003172 ], [ -123.729784895999941, 48.775788707000054 ], [ -123.735215601999968, 48.775904085000036 ], [ -123.735154437999952, 48.777171270000039 ], [ -123.739690801, 48.777267435000084 ], [ -123.739693824999947, 48.777204656000094 ], [ -123.741216962999943, 48.777236900000041 ], [ -123.741239986999958, 48.776758591000032 ], [ -123.746670834999975, 48.776873386000148 ], [ -123.746655623, 48.777190147000091 ], [ -123.740236823999965, 48.777275144000072 ], [ -123.729152582999916, 48.777420866000135 ], [ -123.728074377000013, 48.777424271000079 ], [ -123.727982548999989, 48.777435023000052 ], [ -123.727974578999948, 48.777382235000054 ], [ -123.728399649999986, 48.777391282000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3132667", "BldgCostT": "1896667", "sL_LossRatio": "0.651150895140665", "sL_AssetLoss": "48875", "sL_BldgLoss": "31825", "sL_StrLoss": "17442", "sL_NStrLoss": "14383", "sL_ContLoss": "17050", "geom_point": "0101000020E6100000D9A76FDBAFED5EC0F9EAF4CDC7614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.71330908799996, 48.762214714000088 ], [ -123.712892839999967, 48.761126525000037 ], [ -123.713000144999953, 48.761128826000103 ], [ -123.712997012999921, 48.761193077000058 ], [ -123.713600426999975, 48.761206010000109 ], [ -123.713565298999967, 48.761927168000049 ], [ -123.714905422999905, 48.761955878000038 ], [ -123.714894132000012, 48.762187824000044 ], [ -123.714730103999926, 48.765556788000069 ], [ -123.713008814999966, 48.765519910000066 ], [ -123.713045833999956, 48.768134693000093 ], [ -123.71280926299994, 48.768136156 ], [ -123.712797338999962, 48.768228162000085 ], [ -123.712676398, 48.768241696000089 ], [ -123.71330908799996, 48.762214714000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53501834", "BldgCostT": "32953334", "sL_LossRatio": "0.703375283948737", "sL_AssetLoss": "464784.6", "sL_BldgLoss": "326918", "sL_StrLoss": "176605", "sL_NStrLoss": "150313", "sL_ContLoss": "137866.6", "geom_point": "0101000020E6100000A1BAB9F85BED5EC0C4AF0E362B634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713295445999961, 48.778894478000076 ], [ -123.71242657, 48.778544737000118 ], [ -123.712309352999952, 48.777625583000031 ], [ -123.712543037, 48.776555977000044 ], [ -123.71226677599999, 48.77649550200006 ], [ -123.711587179999967, 48.77668818700004 ], [ -123.710102073, 48.77677958200006 ], [ -123.708315987, 48.77673969500011 ], [ -123.707695318999981, 48.776730852000121 ], [ -123.707388297999955, 48.776728770000041 ], [ -123.706928311999931, 48.776767600000035 ], [ -123.706571407999917, 48.776757190000112 ], [ -123.706206080999948, 48.776751256000061 ], [ -123.706116606999927, 48.776749812000062 ], [ -123.705886945999964, 48.776746089000071 ], [ -123.705901801, 48.77679078200007 ], [ -123.705918899999958, 48.776842301000073 ], [ -123.704447331999972, 48.776837446000052 ], [ -123.70443370199996, 48.776837399 ], [ -123.703288991999955, 48.776844297000011 ], [ -123.702048103999957, 48.776871644000067 ], [ -123.702055885999968, 48.776768178000125 ], [ -123.70078056199999, 48.776781389000099 ], [ -123.700501630999895, 48.776784290000116 ], [ -123.698917507999951, 48.776799699999984 ], [ -123.698843209999936, 48.776800166000072 ], [ -123.698755688999952, 48.776800698000073 ], [ -123.698754399999984, 48.775636397000056 ], [ -123.698754029999961, 48.775360275000075 ], [ -123.698751511999959, 48.773560970000055 ], [ -123.69875077599994, 48.773424894000115 ], [ -123.6987451319999, 48.772360898000024 ], [ -123.698745081999931, 48.772350295000116 ], [ -123.698744507999905, 48.772242337000066 ], [ -123.698742874999965, 48.771938196000136 ], [ -123.698905863999983, 48.771945493000047 ], [ -123.699217747999967, 48.771959460000048 ], [ -123.699225774999917, 48.772537481000015 ], [ -123.699634046999947, 48.77253500300008 ], [ -123.699637794999958, 48.772804862000058 ], [ -123.70045434499994, 48.772799903000127 ], [ -123.700450588999956, 48.772530043000067 ], [ -123.702083675, 48.772520106000037 ], [ -123.702081435999929, 48.772359524000059 ], [ -123.702129703999944, 48.772366301000041 ], [ -123.704048515999929, 48.772290800000022 ], [ -123.705010710999943, 48.77200589800006 ], [ -123.705598717999976, 48.771282506000055 ], [ -123.706150397999963, 48.770883706000063 ], [ -123.70640598199995, 48.770575997000073 ], [ -123.70646750600001, 48.770161584000121 ], [ -123.706736106999969, 48.769853992000016 ], [ -123.707549996999916, 48.769643209 ], [ -123.70880009199999, 48.769626108000061 ], [ -123.709824384999962, 48.769781303000102 ], [ -123.710151192999959, 48.76990521000004 ], [ -123.711110382999934, 48.770340993000062 ], [ -123.711785888999913, 48.770876510000036 ], [ -123.71273899399992, 48.771940393000115 ], [ -123.713495987, 48.772530105000016 ], [ -123.713870604, 48.773039887000053 ], [ -123.713920323999943, 48.773076707000065 ], [ -123.715136082999976, 48.773976998000137 ], [ -123.717194635999931, 48.777032223000056 ], [ -123.717182224999988, 48.777287309000059 ], [ -123.717424704999971, 48.777292495000054 ], [ -123.717512382999971, 48.777373804000057 ], [ -123.717477405999929, 48.778092819000108 ], [ -123.717678717999931, 48.778091565000082 ], [ -123.717682565999937, 48.778361423000057 ], [ -123.71809088199997, 48.778358881000088 ], [ -123.718098580999964, 48.778898596000019 ], [ -123.718915222999911, 48.778893504000081 ], [ -123.718911369999944, 48.778623647000117 ], [ -123.719110041999969, 48.778622407000093 ], [ -123.719159837999953, 48.778590262000129 ], [ -123.719177548999966, 48.778589080000096 ], [ -123.71915018899989, 48.779613837000078 ], [ -123.718994495999979, 48.780256626000089 ], [ -123.715042492999942, 48.780189219000071 ], [ -123.715032860999926, 48.780161276000079 ], [ -123.714911692999962, 48.779810723 ], [ -123.714940992999971, 48.779634939000118 ], [ -123.714795920999961, 48.77950550900001 ], [ -123.714473815999924, 48.77936878900006 ], [ -123.713295445999961, 48.778894478000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22118833", "BldgCostT": "13783333", "sL_LossRatio": "0.75156716347774", "sL_AssetLoss": "148963.4", "sL_BldgLoss": "111956", "sL_StrLoss": "61793", "sL_NStrLoss": "50163", "sL_ContLoss": "37007.4", "geom_point": "0101000020E61000006F2E7A7E83F05EC0090F9A5D77614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.750133544000022, 48.764067643000011 ], [ -123.750306141999943, 48.760466667000095 ], [ -123.753417188999947, 48.760532220000115 ], [ -123.753424821999943, 48.760372737000125 ], [ -123.752787863999956, 48.760359324000028 ], [ -123.752792640999971, 48.760259536000014 ], [ -123.752145646999907, 48.760245907000126 ], [ -123.7521619299999, 48.759905894000035 ], [ -123.751155330999893, 48.759884682000028 ], [ -123.751169405999946, 48.759590876000054 ], [ -123.75811342899999, 48.759695042000047 ], [ -123.767727125999969, 48.759752164000105 ], [ -123.767637348999955, 48.762944475000097 ], [ -123.767519285999981, 48.762970790000033 ], [ -123.766435107999925, 48.763311087000069 ], [ -123.764846876999982, 48.763428747000034 ], [ -123.764893690999955, 48.762445665000044 ], [ -123.764189761999944, 48.762430917000067 ], [ -123.76428937899999, 48.760339505000076 ], [ -123.763497838999967, 48.760322916000071 ], [ -123.763454690999964, 48.761228502000051 ], [ -123.758025612999973, 48.761114559000141 ], [ -123.758029175999937, 48.76103996300003 ], [ -123.755715507999966, 48.760991321000056 ], [ -123.755562942999987, 48.764181987000029 ], [ -123.750133544000022, 48.764067643000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1314861709", "BldgCostT": "798459070", "sL_LossRatio": "0.686951446065808", "sL_AssetLoss": "10268931", "sL_BldgLoss": "7054257", "sL_StrLoss": "2807137", "sL_NStrLoss": "4247120", "sL_ContLoss": "3214674", "geom_point": "0101000020E6100000F6B6653C21ED5EC00BE8F26AA9634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.707363798999936, 48.780273802000053 ], [ -123.70710089899994, 48.780246103000131 ], [ -123.705581592999962, 48.780406304000074 ], [ -123.704408508999904, 48.780435113000031 ], [ -123.703297979999931, 48.780447 ], [ -123.702028436999939, 48.780460556000094 ], [ -123.700770726999949, 48.780474002000112 ], [ -123.699017599999934, 48.780491494000096 ], [ -123.698930681999983, 48.780491427000094 ], [ -123.698770402999955, 48.780491307000098 ], [ -123.698759612999979, 48.778717604000043 ], [ -123.69875947499996, 48.778646176000031 ], [ -123.698757910999959, 48.777684403000087 ], [ -123.698756589999945, 48.776893590000043 ], [ -123.698844473999927, 48.7768939790001 ], [ -123.698916902999912, 48.776894307000063 ], [ -123.698917507999951, 48.776799699999984 ], [ -123.700501630999895, 48.776784290000116 ], [ -123.70078056199999, 48.776781389000099 ], [ -123.702055885999968, 48.776768178000125 ], [ -123.702048103999957, 48.776871644000067 ], [ -123.703288991999955, 48.776844297000011 ], [ -123.70443370199996, 48.776837399 ], [ -123.704447331999972, 48.776837446000052 ], [ -123.705918899999958, 48.776842301000073 ], [ -123.705901801, 48.77679078200007 ], [ -123.705886945999964, 48.776746089000071 ], [ -123.706116606999927, 48.776749812000062 ], [ -123.706206080999948, 48.776751256000061 ], [ -123.706571407999917, 48.776757190000112 ], [ -123.706928311999931, 48.776767600000035 ], [ -123.707388297999955, 48.776728770000041 ], [ -123.707695318999981, 48.776730852000121 ], [ -123.708315987, 48.77673969500011 ], [ -123.710102073, 48.77677958200006 ], [ -123.711587179999967, 48.77668818700004 ], [ -123.71226677599999, 48.77649550200006 ], [ -123.712543037, 48.776555977000044 ], [ -123.712309352999952, 48.777625583000031 ], [ -123.712047880999947, 48.777636187000077 ], [ -123.711539918999975, 48.777656834000027 ], [ -123.71127034, 48.77766732400007 ], [ -123.710964782999952, 48.777939195000101 ], [ -123.710446642999941, 48.777723513000026 ], [ -123.710451206999949, 48.778465247000071 ], [ -123.710473904999972, 48.779254237000096 ], [ -123.71243717599999, 48.779241373000097 ], [ -123.712416012999967, 48.779842898000062 ], [ -123.710531936000024, 48.779847540000034 ], [ -123.710212477999974, 48.779847910000051 ], [ -123.710221398999948, 48.780862809000048 ], [ -123.70798520799994, 48.780867911000058 ], [ -123.707798802999946, 48.780312837000032 ], [ -123.707363798999936, 48.780273802000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202261421", "BldgCostT": "128631173", "sL_LossRatio": "0.734406741995814", "sL_AssetLoss": "1525483", "sL_BldgLoss": "1120325", "sL_StrLoss": "518830", "sL_NStrLoss": "601495", "sL_ContLoss": "405158", "geom_point": "0101000020E6100000CA0248C8DBED5EC03F86223809644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.71493588599995, 48.780226721000112 ], [ -123.714909891999952, 48.780098969000079 ], [ -123.714804905000022, 48.779826459000056 ], [ -123.714798926999947, 48.779818117000033 ], [ -123.714709482999979, 48.779692768000118 ], [ -123.714403287999986, 48.779421364000015 ], [ -123.71403599599995, 48.779232365000084 ], [ -123.712918522, 48.778840202000019 ], [ -123.712504584999948, 48.778694904000105 ], [ -123.712475753999954, 48.778766341000114 ], [ -123.712439655999958, 48.778855741000015 ], [ -123.71243717599999, 48.779241373000097 ], [ -123.710473904999972, 48.779254237000096 ], [ -123.710451206999949, 48.778465247000071 ], [ -123.710446642999941, 48.777723513000026 ], [ -123.710964782999952, 48.777939195000101 ], [ -123.71127034, 48.77766732400007 ], [ -123.711539918999975, 48.777656834000027 ], [ -123.712047880999947, 48.777636187000077 ], [ -123.712309352999952, 48.777625583000031 ], [ -123.71242657, 48.778544737000118 ], [ -123.713295445999961, 48.778894478000076 ], [ -123.714473815999924, 48.77936878900006 ], [ -123.714795920999961, 48.77950550900001 ], [ -123.714940992999971, 48.779634939000118 ], [ -123.714911692999962, 48.779810723 ], [ -123.715032860999926, 48.780161276000079 ], [ -123.715042492999942, 48.780189219000071 ], [ -123.718994495999979, 48.780256626000089 ], [ -123.719494288999954, 48.782200291000088 ], [ -123.719764716999975, 48.784382309000151 ], [ -123.717457294999974, 48.784590811000051 ], [ -123.717026317999952, 48.783978708000049 ], [ -123.716920290999965, 48.7838384860001 ], [ -123.716799019999939, 48.783761192000092 ], [ -123.71626881499995, 48.78303608600001 ], [ -123.716262777999972, 48.783027940000053 ], [ -123.715745703999957, 48.782325569000129 ], [ -123.715739700999961, 48.78231741000009 ], [ -123.71531609, 48.78174959600004 ], [ -123.715276068999955, 48.781667149000064 ], [ -123.715194985999986, 48.781500088000051 ], [ -123.715189536999944, 48.781473294000101 ], [ -123.71493588599995, 48.780226721000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178024394", "BldgCostT": "113296523", "sL_LossRatio": "0.683124717723724", "sL_AssetLoss": "1239920", "sL_BldgLoss": "847020", "sL_StrLoss": "358550", "sL_NStrLoss": "488470", "sL_ContLoss": "392900", "geom_point": "0101000020E610000034CF7C94B2ED5EC09E82994229644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.714071206999975, 48.785456392000086 ], [ -123.71405701599997, 48.784018801000052 ], [ -123.71327261899998, 48.784019998000133 ], [ -123.713239494999982, 48.783444410000122 ], [ -123.712803285999954, 48.783440409000058 ], [ -123.712758975999975, 48.783352668000084 ], [ -123.712604993999932, 48.783067175000056 ], [ -123.712376196999912, 48.782526503000035 ], [ -123.71240598699994, 48.78169270000005 ], [ -123.710227892999953, 48.781704600000133 ], [ -123.710221398999948, 48.780862809000048 ], [ -123.710212477999974, 48.779847910000051 ], [ -123.710531936000024, 48.779847540000034 ], [ -123.712416012999967, 48.779842898000062 ], [ -123.712429315999913, 48.780220747000094 ], [ -123.714793482999937, 48.780226133000049 ], [ -123.714807096999934, 48.780226155000037 ], [ -123.714640494999969, 48.779715757000076 ], [ -123.714425059999954, 48.779573380000031 ], [ -123.713638638999925, 48.779249302000053 ], [ -123.712475753999954, 48.778766341000114 ], [ -123.712504584999948, 48.778694904000105 ], [ -123.712918522, 48.778840202000019 ], [ -123.71403599599995, 48.779232365000084 ], [ -123.714403287999986, 48.779421364000015 ], [ -123.714709482999979, 48.779692768000118 ], [ -123.714798926999947, 48.779818117000033 ], [ -123.714804905000022, 48.779826459000056 ], [ -123.714909891999952, 48.780098969000079 ], [ -123.71493588599995, 48.780226721000112 ], [ -123.715189536999944, 48.781473294000101 ], [ -123.715194985999986, 48.781500088000051 ], [ -123.715276068999955, 48.781667149000064 ], [ -123.71531609, 48.78174959600004 ], [ -123.715739700999961, 48.78231741000009 ], [ -123.715745703999957, 48.782325569000129 ], [ -123.716262777999972, 48.783027940000053 ], [ -123.71626881499995, 48.78303608600001 ], [ -123.716799019999939, 48.783761192000092 ], [ -123.716920290999965, 48.7838384860001 ], [ -123.717026317999952, 48.783978708000049 ], [ -123.717457294999974, 48.784590811000051 ], [ -123.717917307999969, 48.785196195000026 ], [ -123.718079608999943, 48.785352004000053 ], [ -123.718051789999905, 48.785363117000081 ], [ -123.71791049299999, 48.785419603000022 ], [ -123.716279621999917, 48.78542955800004 ], [ -123.716211582999918, 48.785429964000102 ], [ -123.716108800999947, 48.785430610000077 ], [ -123.715558359999989, 48.785437578000057 ], [ -123.714071206999975, 48.785456392000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282204134", "BldgCostT": "169271811", "sL_LossRatio": "0.698257864545226", "sL_AssetLoss": "2498428", "sL_BldgLoss": "1744547", "sL_StrLoss": "750902", "sL_NStrLoss": "993645", "sL_ContLoss": "753881", "geom_point": "0101000020E6100000AA1A72437EED5EC007631C6D66644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.708899208999966, 48.784614706000127 ], [ -123.708613993999947, 48.783383904000047 ], [ -123.708443391999964, 48.782535906000156 ], [ -123.708317597999923, 48.78205020700009 ], [ -123.708229304, 48.781714902000033 ], [ -123.70798520799994, 48.780867911000058 ], [ -123.710221398999948, 48.780862809000048 ], [ -123.710227892999953, 48.781704600000133 ], [ -123.71240598699994, 48.78169270000005 ], [ -123.712376196999912, 48.782526503000035 ], [ -123.712604993999932, 48.783067175000056 ], [ -123.712758975999975, 48.783352668000084 ], [ -123.712803285999954, 48.783440409000058 ], [ -123.713239494999982, 48.783444410000122 ], [ -123.71327261899998, 48.784019998000133 ], [ -123.71405701599997, 48.784018801000052 ], [ -123.714071206999975, 48.785456392000086 ], [ -123.713606015999972, 48.785461696 ], [ -123.712606291999947, 48.785474604000107 ], [ -123.71239459499999, 48.785477466000074 ], [ -123.712116623999961, 48.785481201000096 ], [ -123.71214279299997, 48.787870696000027 ], [ -123.712097768999939, 48.788184109000106 ], [ -123.711890367999956, 48.788332399000048 ], [ -123.711823386999967, 48.788380347000043 ], [ -123.7106636499999, 48.788471077000047 ], [ -123.709908184999946, 48.787502802000105 ], [ -123.709595776999905, 48.78699509700003 ], [ -123.70936358599999, 48.78646120100008 ], [ -123.709139154999932, 48.78556885600009 ], [ -123.708899208999966, 48.784614706000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144839167", "BldgCostT": "99966667", "sL_LossRatio": "0.815056527070839", "sL_AssetLoss": "1190580", "sL_BldgLoss": "970390", "sL_StrLoss": "456344", "sL_NStrLoss": "514046", "sL_ContLoss": "220190", "geom_point": "0101000020E610000083AC344AD3ED5EC0446880E2B2644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.717457294999974, 48.784590811000051 ], [ -123.719764716999975, 48.784382309000151 ], [ -123.719727008999911, 48.786221699000123 ], [ -123.719364584999951, 48.786663536000042 ], [ -123.719572848, 48.788088408000085 ], [ -123.717495161999977, 48.788221775000068 ], [ -123.716055784000019, 48.788314143000058 ], [ -123.71475171699997, 48.788397799000123 ], [ -123.713507264, 48.788428773000092 ], [ -123.711823386999967, 48.788380347000043 ], [ -123.711890367999956, 48.788332399000048 ], [ -123.712097768999939, 48.788184109000106 ], [ -123.71214279299997, 48.787870696000027 ], [ -123.712116623999961, 48.785481201000096 ], [ -123.71239459499999, 48.785477466000074 ], [ -123.712606291999947, 48.785474604000107 ], [ -123.713606015999972, 48.785461696 ], [ -123.714071206999975, 48.785456392000086 ], [ -123.715558359999989, 48.785437578000057 ], [ -123.716108800999947, 48.785430610000077 ], [ -123.716211582999918, 48.785429964000102 ], [ -123.716279621999917, 48.78542955800004 ], [ -123.71791049299999, 48.785419603000022 ], [ -123.718051789999905, 48.785363117000081 ], [ -123.718079608999943, 48.785352004000053 ], [ -123.717917307999969, 48.785196195000026 ], [ -123.717457294999974, 48.784590811000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147683084", "BldgCostT": "97198334", "sL_LossRatio": "0.836860184967192", "sL_AssetLoss": "736941.5", "sL_BldgLoss": "616717", "sL_StrLoss": "375409", "sL_NStrLoss": "241308", "sL_ContLoss": "120224.5", "geom_point": "0101000020E6100000D804C4030EEE5EC0AAB4398C51654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.719957924999946, 48.795092806000078 ], [ -123.719879251999942, 48.792094861000074 ], [ -123.718536180999976, 48.791978795000048 ], [ -123.718312922999971, 48.791958710000117 ], [ -123.717262776999945, 48.791860875000062 ], [ -123.716793002999935, 48.791817111000071 ], [ -123.716300614999952, 48.791767007000011 ], [ -123.715614642, 48.791594983000024 ], [ -123.714721030999982, 48.791370908 ], [ -123.714232135999936, 48.791248687000071 ], [ -123.713214363999924, 48.791265647000081 ], [ -123.71318711, 48.791183965000066 ], [ -123.713094609999942, 48.791128799000091 ], [ -123.712969940999955, 48.791120730000074 ], [ -123.712859163999909, 48.791161629000079 ], [ -123.712687541999955, 48.791057022000054 ], [ -123.712414401999965, 48.790719545000123 ], [ -123.71231319099999, 48.790586206000121 ], [ -123.71220937699999, 48.790449506000051 ], [ -123.712124408999941, 48.790337597000097 ], [ -123.712069042999985, 48.790267045000107 ], [ -123.711998863999952, 48.790177647000107 ], [ -123.7116794249999, 48.789770557000061 ], [ -123.71135260199999, 48.789354114000083 ], [ -123.711067820999972, 48.788989130000097 ], [ -123.710993061999943, 48.788893284000089 ], [ -123.7106636499999, 48.788471077000047 ], [ -123.711823386999967, 48.788380347000043 ], [ -123.713507264, 48.788428773000092 ], [ -123.71475171699997, 48.788397799000123 ], [ -123.716055784000019, 48.788314143000058 ], [ -123.717495161999977, 48.788221775000068 ], [ -123.719572848, 48.788088408000085 ], [ -123.719660044999927, 48.788684953000015 ], [ -123.719456278999942, 48.788686302000066 ], [ -123.718720418999922, 48.78855530200007 ], [ -123.717903486, 48.788596600000112 ], [ -123.717858728999914, 48.788618491000065 ], [ -123.717606596999943, 48.788741801000128 ], [ -123.717558010999937, 48.788806661000059 ], [ -123.717601389999942, 48.789288791000025 ], [ -123.717602207999974, 48.78929780000005 ], [ -123.717750435999946, 48.789301907000073 ], [ -123.718172409999951, 48.78931360200005 ], [ -123.71847401799999, 48.789763398000098 ], [ -123.718473315999972, 48.789906171000098 ], [ -123.718470178999937, 48.790541793000045 ], [ -123.719687983999975, 48.790533054000058 ], [ -123.720360515999943, 48.790528203000079 ], [ -123.721897299999952, 48.79051680700006 ], [ -123.72335243699996, 48.790507290000022 ], [ -123.724118283999957, 48.790498393000114 ], [ -123.724862030999972, 48.790496229000041 ], [ -123.724934169, 48.790515616000079 ], [ -123.724935932999927, 48.790516088000103 ], [ -123.72500028599994, 48.790533405000076 ], [ -123.725083251999962, 48.790616275000048 ], [ -123.725128323999968, 48.791368772000055 ], [ -123.725142001999941, 48.79164750600011 ], [ -123.725148208999968, 48.791744064000078 ], [ -123.725168307, 48.792113952000115 ], [ -123.726641727999947, 48.79210944000004 ], [ -123.726708764999913, 48.792109249000106 ], [ -123.727016185999958, 48.792108296000073 ], [ -123.726550588999928, 48.793188702000059 ], [ -123.726246859999932, 48.793902459000115 ], [ -123.72605961499994, 48.794342491000066 ], [ -123.725983110999934, 48.794522117000035 ], [ -123.725717396999968, 48.795146201000101 ], [ -123.725323507999988, 48.795105746000097 ], [ -123.725307486999924, 48.795104106000032 ], [ -123.725231016999942, 48.795103931000057 ], [ -123.723809274999923, 48.795100990000044 ], [ -123.72226909199999, 48.795096113000071 ], [ -123.722028385999977, 48.795097295000055 ], [ -123.719957924999946, 48.795092806000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233092387", "BldgCostT": "150942080", "sL_LossRatio": "0.776792950532589", "sL_AssetLoss": "1429929.3", "sL_BldgLoss": "1110759", "sL_StrLoss": "561242", "sL_NStrLoss": "549517", "sL_ContLoss": "319170.3", "geom_point": "0101000020E610000028BA78897BEE5EC0F8598DDB1E654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.718470178999937, 48.790541793000045 ], [ -123.718473315999972, 48.789906171000098 ], [ -123.71847401799999, 48.789763398000098 ], [ -123.718172409999951, 48.78931360200005 ], [ -123.717750435999946, 48.789301907000073 ], [ -123.717602207999974, 48.78929780000005 ], [ -123.717601389999942, 48.789288791000025 ], [ -123.717558010999937, 48.788806661000059 ], [ -123.717606596999943, 48.788741801000128 ], [ -123.717858728999914, 48.788618491000065 ], [ -123.717903486, 48.788596600000112 ], [ -123.718720418999922, 48.78855530200007 ], [ -123.719456278999942, 48.788686302000066 ], [ -123.719660044999927, 48.788684953000015 ], [ -123.719572848, 48.788088408000085 ], [ -123.719364584999951, 48.786663536000042 ], [ -123.719727008999911, 48.786221699000123 ], [ -123.720954605999907, 48.786471397000085 ], [ -123.721285697999932, 48.786595597000051 ], [ -123.721543493999917, 48.786746103000091 ], [ -123.721738601999917, 48.786926893000064 ], [ -123.72205622199999, 48.787328396000071 ], [ -123.72206951599999, 48.787338776000063 ], [ -123.722106609, 48.787367677000113 ], [ -123.722314282999932, 48.787529465000055 ], [ -123.722572221999968, 48.787676438000133 ], [ -123.723180317999962, 48.787948034000095 ], [ -123.724035804999957, 48.788252854000056 ], [ -123.724850726999975, 48.788543226000122 ], [ -123.725629501999933, 48.788827473000048 ], [ -123.725997142999944, 48.788969003000098 ], [ -123.726176378999938, 48.789038003000037 ], [ -123.726737158999967, 48.789253863000042 ], [ -123.727355892999952, 48.78947518600004 ], [ -123.727936449999902, 48.789671277000103 ], [ -123.727963549999942, 48.789680408000095 ], [ -123.728121, 48.789733581000128 ], [ -123.728403234999973, 48.789828886000087 ], [ -123.728582188999937, 48.789889353000028 ], [ -123.728809761999955, 48.789966209000035 ], [ -123.72881816099995, 48.789969025000033 ], [ -123.728990396999933, 48.790027208000048 ], [ -123.729046624999967, 48.790038241000062 ], [ -123.729253951999922, 48.790078901000122 ], [ -123.729390177999989, 48.790105655000033 ], [ -123.729495389999926, 48.790126302000026 ], [ -123.729593397, 48.790129597000046 ], [ -123.730069621999945, 48.790145704000032 ], [ -123.730998004999947, 48.790063606000018 ], [ -123.731694195999978, 48.789835109000116 ], [ -123.732414205999987, 48.789507987 ], [ -123.73265241699994, 48.789446295000069 ], [ -123.73288039, 48.789425917000081 ], [ -123.733116613, 48.789460709000117 ], [ -123.733532917, 48.789598837000042 ], [ -123.733606249999937, 48.789623290000044 ], [ -123.733675488999936, 48.789646441000031 ], [ -123.733743751999953, 48.789669215000075 ], [ -123.73419782199997, 48.789818909000047 ], [ -123.734980537999974, 48.790078769000047 ], [ -123.73525108099993, 48.790219678000035 ], [ -123.735655203999926, 48.791000513000064 ], [ -123.736122141999957, 48.791889017000088 ], [ -123.736167446, 48.792077391000078 ], [ -123.736026616999979, 48.792122175000088 ], [ -123.73598662699996, 48.79218979899999 ], [ -123.735884059999989, 48.792174872000089 ], [ -123.735364247999939, 48.792099128000118 ], [ -123.734239100999972, 48.792101100000124 ], [ -123.73414872699999, 48.792101252000066 ], [ -123.733939145999969, 48.792101248000051 ], [ -123.733489882999933, 48.792101152000029 ], [ -123.733250096999967, 48.79210109800011 ], [ -123.73316413199997, 48.792100211000111 ], [ -123.732998692999928, 48.792098516000081 ], [ -123.732836314999986, 48.792098378000034 ], [ -123.731978623999964, 48.792097684000062 ], [ -123.730177686, 48.792096199000113 ], [ -123.728448399999976, 48.792095513000042 ], [ -123.727016185999958, 48.792108296000073 ], [ -123.726708764999913, 48.792109249000106 ], [ -123.726641727999947, 48.79210944000004 ], [ -123.725168307, 48.792113952000115 ], [ -123.725148208999968, 48.791744064000078 ], [ -123.725142001999941, 48.79164750600011 ], [ -123.725128323999968, 48.791368772000055 ], [ -123.725083251999962, 48.790616275000048 ], [ -123.72500028599994, 48.790533405000076 ], [ -123.724935932999927, 48.790516088000103 ], [ -123.724934169, 48.790515616000079 ], [ -123.724862030999972, 48.790496229000041 ], [ -123.724118283999957, 48.790498393000114 ], [ -123.72335243699996, 48.790507290000022 ], [ -123.721897299999952, 48.79051680700006 ], [ -123.720360515999943, 48.790528203000079 ], [ -123.719687983999975, 48.790533054000058 ], [ -123.718470178999937, 48.790541793000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126098333", "BldgCostT": "76943333", "sL_LossRatio": "0.775497068872994", "sL_AssetLoss": "588852", "sL_BldgLoss": "456653", "sL_StrLoss": "273233", "sL_NStrLoss": "183420", "sL_ContLoss": "132199", "geom_point": "0101000020E6100000D7BE5F50CFEE5EC08C6F6A9888654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.727016185999958, 48.792108296000073 ], [ -123.728448399999976, 48.792095513000042 ], [ -123.730177686, 48.792096199000113 ], [ -123.731978623999964, 48.792097684000062 ], [ -123.732836314999986, 48.792098378000034 ], [ -123.732998692999928, 48.792098516000081 ], [ -123.73316413199997, 48.792100211000111 ], [ -123.733250096999967, 48.79210109800011 ], [ -123.733489882999933, 48.792101152000029 ], [ -123.733939145999969, 48.792101248000051 ], [ -123.73414872699999, 48.792101252000066 ], [ -123.734239100999972, 48.792101100000124 ], [ -123.735364247999939, 48.792099128000118 ], [ -123.735884059999989, 48.792174872000089 ], [ -123.73598662699996, 48.79218979899999 ], [ -123.736026616999979, 48.792122175000088 ], [ -123.736167446, 48.792077391000078 ], [ -123.736315367999964, 48.792111177000059 ], [ -123.736382955999915, 48.792203621000027 ], [ -123.736330639999949, 48.792301638000069 ], [ -123.73618979099993, 48.792346400000085 ], [ -123.736208413, 48.792421616000034 ], [ -123.736283101999931, 48.79272325600008 ], [ -123.736291161999958, 48.792860071000121 ], [ -123.736327948999957, 48.7934838400001 ], [ -123.73637411199995, 48.79430298800002 ], [ -123.734420099999952, 48.79430911 ], [ -123.732323156999954, 48.794315653000091 ], [ -123.731597084, 48.79431789800006 ], [ -123.729312539999981, 48.794326097000045 ], [ -123.728728796000013, 48.794328374000088 ], [ -123.728058717999929, 48.794330971000122 ], [ -123.72605961499994, 48.794342491000066 ], [ -123.726246859999932, 48.793902459000115 ], [ -123.726550588999928, 48.793188702000059 ], [ -123.727016185999958, 48.792108296000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201060645", "BldgCostT": "130651524", "sL_LossRatio": "0.790594251560498", "sL_AssetLoss": "1267544", "sL_BldgLoss": "1002113", "sL_StrLoss": "594943", "sL_NStrLoss": "407170", "sL_ContLoss": "265431", "geom_point": "0101000020E6100000C2376786C5EE5EC0BDE2C90B3C664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.725622529999924, 48.803130725000123 ], [ -123.725122297999974, 48.800042781000052 ], [ -123.72510669499998, 48.80000785900004 ], [ -123.725090912, 48.7999725620001 ], [ -123.725040094999926, 48.799859003000044 ], [ -123.724916266999969, 48.799749136000081 ], [ -123.72468878899997, 48.799609350000026 ], [ -123.72463355499994, 48.799575415000092 ], [ -123.72436012299994, 48.79940738100003 ], [ -123.724229677999929, 48.799327214000051 ], [ -123.724203661999951, 48.799291170000117 ], [ -123.724104817999944, 48.799154239000117 ], [ -123.724101301999923, 48.799029809000103 ], [ -123.724584913999962, 48.797890301000109 ], [ -123.725461, 48.7957586590001 ], [ -123.725622452999971, 48.795365860000061 ], [ -123.725717396999968, 48.795146201000101 ], [ -123.725983110999934, 48.794522117000035 ], [ -123.72605961499994, 48.794342491000066 ], [ -123.728058717999929, 48.794330971000122 ], [ -123.728728796000013, 48.794328374000088 ], [ -123.729312539999981, 48.794326097000045 ], [ -123.731597084, 48.79431789800006 ], [ -123.732323156999954, 48.794315653000091 ], [ -123.734420099999952, 48.79430911 ], [ -123.73637411199995, 48.79430298800002 ], [ -123.736411299999943, 48.79575729200009 ], [ -123.736426411999943, 48.796369242 ], [ -123.736451790999979, 48.797397299000068 ], [ -123.73645986799994, 48.797736426000043 ], [ -123.73648988799999, 48.799003 ], [ -123.736499875999982, 48.799409314000094 ], [ -123.736512659999974, 48.799930970000027 ], [ -123.736514402999916, 48.800002871000068 ], [ -123.736521703999969, 48.800299751000047 ], [ -123.736522791999946, 48.800344728 ], [ -123.736532938999986, 48.80075845100005 ], [ -123.7365898, 48.803075395000064 ], [ -123.735964435999932, 48.803078592000055 ], [ -123.73531077799997, 48.803081921000057 ], [ -123.733186485999965, 48.803092686000092 ], [ -123.725622529999924, 48.803130725000123 ] ], [ [ -123.732491832999983, 48.80034012700002 ], [ -123.732513845999989, 48.799884853000073 ], [ -123.729927856999936, 48.799829913000053 ], [ -123.72997794299998, 48.798795182000106 ], [ -123.729821118999965, 48.79879617400011 ], [ -123.729817202999968, 48.798526318 ], [ -123.728630188999944, 48.798533828000068 ], [ -123.728620711999966, 48.79872950900004 ], [ -123.72920829, 48.798742007000072 ], [ -123.729112505999979, 48.80072012300014 ], [ -123.730337043999924, 48.800746156000066 ], [ -123.730346284999939, 48.800555195000094 ], [ -123.73089178, 48.800566787000029 ], [ -123.730904379999927, 48.800306408000083 ], [ -123.732491832999983, 48.80034012700002 ] ], [ [ -123.733116323999923, 48.796293209000034 ], [ -123.733126802999891, 48.796076386000024 ], [ -123.732232729000017, 48.796082070000089 ], [ -123.732228801999938, 48.795812214000115 ], [ -123.73182034499996, 48.795814808000024 ], [ -123.731826904999949, 48.796265827000084 ], [ -123.733116323999923, 48.796293209000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97451335", "BldgCostT": "62048335", "sL_LossRatio": "0.725131692165628", "sL_AssetLoss": "952980", "sL_BldgLoss": "691036", "sL_StrLoss": "344120", "sL_NStrLoss": "346916", "sL_ContLoss": "261944", "geom_point": "0101000020E6100000C1C4A37D41EF5EC0153D8596D4654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.737744595999942, 48.798220409000109 ], [ -123.73776849399998, 48.797387304000118 ], [ -123.736451790999979, 48.797397299000068 ], [ -123.736426411999943, 48.796369242 ], [ -123.736411299999943, 48.79575729200009 ], [ -123.73637411199995, 48.79430298800002 ], [ -123.736327948999957, 48.7934838400001 ], [ -123.737724989999933, 48.793497213000087 ], [ -123.739501079000021, 48.793515005000096 ], [ -123.740697003999912, 48.79352498400003 ], [ -123.740691477, 48.794344895000094 ], [ -123.740687210999965, 48.795055815000111 ], [ -123.740683707999963, 48.795776590000038 ], [ -123.740211884999937, 48.795776509000071 ], [ -123.739761789999974, 48.795778691000116 ], [ -123.739561604999935, 48.795779419 ], [ -123.739031481999959, 48.795781315000092 ], [ -123.739027108999963, 48.796070391000079 ], [ -123.739270886999961, 48.796597388000094 ], [ -123.740106311999952, 48.798223501000088 ], [ -123.737744595999942, 48.798220409000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.775953389830508", "sL_AssetLoss": "18880", "sL_BldgLoss": "14650", "sL_StrLoss": "7590", "sL_NStrLoss": "7060", "sL_ContLoss": "4230", "geom_point": "0101000020E6100000CFEC255326F05EC0E9D79433AD664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.751510893999935, 48.801355607000062 ], [ -123.753078712999951, 48.801345374000078 ], [ -123.753146186, 48.801430989000025 ], [ -123.753169142999951, 48.802964069000062 ], [ -123.751535086999979, 48.80297473500007 ], [ -123.751510893999935, 48.801355607000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71322334", "BldgCostT": "44118334", "sL_LossRatio": "0.740157037120423", "sL_AssetLoss": "532995", "sL_BldgLoss": "394500", "sL_StrLoss": "191590", "sL_NStrLoss": "202910", "sL_ContLoss": "138495", "geom_point": "0101000020E61000009E8B33449DEF5EC0525B24CC38664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.7365898, 48.803075395000064 ], [ -123.736532938999986, 48.80075845100005 ], [ -123.736522791999946, 48.800344728 ], [ -123.736521703999969, 48.800299751000047 ], [ -123.736514402999916, 48.800002871000068 ], [ -123.736512659999974, 48.799930970000027 ], [ -123.736499875999982, 48.799409314000094 ], [ -123.73648988799999, 48.799003 ], [ -123.73645986799994, 48.797736426000043 ], [ -123.736451790999979, 48.797397299000068 ], [ -123.73776849399998, 48.797387304000118 ], [ -123.737744595999942, 48.798220409000109 ], [ -123.740106311999952, 48.798223501000088 ], [ -123.739270886999961, 48.796597388000094 ], [ -123.739027108999963, 48.796070391000079 ], [ -123.739031481999959, 48.795781315000092 ], [ -123.739561604999935, 48.795779419 ], [ -123.739761789999974, 48.795778691000116 ], [ -123.740211884999937, 48.795776509000071 ], [ -123.740683707999963, 48.795776590000038 ], [ -123.741968807999982, 48.795772247000052 ], [ -123.743359994999977, 48.795766523000104 ], [ -123.746927645999918, 48.795757288000068 ], [ -123.74955661099996, 48.795750418000118 ], [ -123.751845287999913, 48.795742787000052 ], [ -123.751841116999969, 48.796085101000109 ], [ -123.751608725999958, 48.796764104000047 ], [ -123.751627781999929, 48.797414197000052 ], [ -123.751814987999964, 48.798416592000045 ], [ -123.752176900999942, 48.799716406000115 ], [ -123.75230342, 48.800007024000116 ], [ -123.752648513999972, 48.800799496000096 ], [ -123.752751510999943, 48.800930190000059 ], [ -123.748664193999943, 48.800844101000095 ], [ -123.74869537699999, 48.800194526000105 ], [ -123.748608828999977, 48.800192701000057 ], [ -123.748633873999964, 48.79967102300008 ], [ -123.748295749999926, 48.799663895000116 ], [ -123.748319467999977, 48.799169884 ], [ -123.748310580999942, 48.799169697000082 ], [ -123.748328132999973, 48.798804105000059 ], [ -123.746225226999968, 48.798759742000108 ], [ -123.746235164999959, 48.79855294 ], [ -123.743675046999968, 48.798498877000085 ], [ -123.74370481899993, 48.797880042000074 ], [ -123.741245399999968, 48.797828047000095 ], [ -123.74127449799991, 48.799802608000057 ], [ -123.741019904999987, 48.799804245000111 ], [ -123.740915579999964, 48.801969935000095 ], [ -123.740066504999945, 48.801951970000047 ], [ -123.740020472999973, 48.802907128000079 ], [ -123.740837406999972, 48.80292441200011 ], [ -123.740830483999957, 48.803068115000045 ], [ -123.738320053999956, 48.803072442 ], [ -123.7365898, 48.803075395000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22014667", "BldgCostT": "13236667", "sL_LossRatio": "0.706565380052924", "sL_AssetLoss": "175344", "sL_BldgLoss": "123892", "sL_StrLoss": "60080", "sL_NStrLoss": "63812", "sL_ContLoss": "51452", "geom_point": "0101000020E6100000D0B8ECE7BFEF5EC08CB68DB3A7664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.74462420399999, 48.800871847000096 ], [ -123.750057849999934, 48.800986465000101 ], [ -123.749958753999948, 48.803051853000063 ], [ -123.749813954999979, 48.803052114000117 ], [ -123.744679491999989, 48.803061358000029 ], [ -123.7437806699999, 48.803062955000065 ], [ -123.742990925999948, 48.803064357000061 ], [ -123.742165115999967, 48.803065782000019 ], [ -123.742269495999949, 48.800897790000143 ], [ -123.744620565999966, 48.8009474690001 ], [ -123.74462420399999, 48.800871847000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171881885", "BldgCostT": "116277078", "sL_LossRatio": "0.776431907948845", "sL_AssetLoss": "1009178", "sL_BldgLoss": "783558", "sL_StrLoss": "421948", "sL_NStrLoss": "361610", "sL_ContLoss": "225620", "geom_point": "0101000020E6100000EBA1AFE6A1EF5EC0F543854D91654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.740691477, 48.794344895000094 ], [ -123.740697003999912, 48.79352498400003 ], [ -123.739501079000021, 48.793515005000096 ], [ -123.737724989999933, 48.793497213000087 ], [ -123.736327948999957, 48.7934838400001 ], [ -123.736291161999958, 48.792860071000121 ], [ -123.736283101999931, 48.79272325600008 ], [ -123.736208413, 48.792421616000034 ], [ -123.73618979099993, 48.792346400000085 ], [ -123.736330639999949, 48.792301638000069 ], [ -123.736382955999915, 48.792203621000027 ], [ -123.73760219399999, 48.792132307000067 ], [ -123.73769453199999, 48.792126875000093 ], [ -123.737764887999901, 48.792126617000093 ], [ -123.739994150999976, 48.792117837 ], [ -123.740706507999903, 48.792115006000117 ], [ -123.741863990999946, 48.792103392000108 ], [ -123.742149501999933, 48.79205400299999 ], [ -123.742225935999969, 48.792040770000014 ], [ -123.742823218999902, 48.791776763 ], [ -123.743836044999924, 48.791070976000121 ], [ -123.744147674999937, 48.790951416000091 ], [ -123.744536098999959, 48.790874893000101 ], [ -123.744908739999943, 48.790843130000077 ], [ -123.745449786, 48.790901417000065 ], [ -123.745845750999948, 48.791007097000069 ], [ -123.746603982999957, 48.791269116000102 ], [ -123.747079327999955, 48.791420613000106 ], [ -123.747700859999924, 48.791557184000112 ], [ -123.747927670999928, 48.791580718000105 ], [ -123.74944597399994, 48.791738195000093 ], [ -123.74955661099996, 48.795750418000118 ], [ -123.746927645999918, 48.795757288000068 ], [ -123.743359994999977, 48.795766523000104 ], [ -123.741968807999982, 48.795772247000052 ], [ -123.740683707999963, 48.795776590000038 ], [ -123.740687210999965, 48.795055815000111 ], [ -123.740691477, 48.794344895000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "506371584", "BldgCostT": "324743334", "sL_LossRatio": "0.762036053787888", "sL_AssetLoss": "3474120.4", "sL_BldgLoss": "2647405", "sL_StrLoss": "1413946", "sL_NStrLoss": "1233459", "sL_ContLoss": "826715.4", "geom_point": "0101000020E61000005487E5C7C6EF5EC041BCD828A9644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.735655203999926, 48.791000513000064 ], [ -123.73525108099993, 48.790219678000035 ], [ -123.734980537999974, 48.790078769000047 ], [ -123.73419782199997, 48.789818909000047 ], [ -123.733743751999953, 48.789669215000075 ], [ -123.733675488999936, 48.789646441000031 ], [ -123.733606249999937, 48.789623290000044 ], [ -123.733532917, 48.789598837000042 ], [ -123.733116613, 48.789460709000117 ], [ -123.73288039, 48.789425917000081 ], [ -123.73265241699994, 48.789446295000069 ], [ -123.732414205999987, 48.789507987 ], [ -123.731694195999978, 48.789835109000116 ], [ -123.730998004999947, 48.790063606000018 ], [ -123.730069621999945, 48.790145704000032 ], [ -123.729593397, 48.790129597000046 ], [ -123.729495389999926, 48.790126302000026 ], [ -123.729390177999989, 48.790105655000033 ], [ -123.729253951999922, 48.790078901000122 ], [ -123.729046624999967, 48.790038241000062 ], [ -123.728990396999933, 48.790027208000048 ], [ -123.72881816099995, 48.789969025000033 ], [ -123.728809761999955, 48.789966209000035 ], [ -123.728582188999937, 48.789889353000028 ], [ -123.728403234999973, 48.789828886000087 ], [ -123.728121, 48.789733581000128 ], [ -123.727963549999942, 48.789680408000095 ], [ -123.727936449999902, 48.789671277000103 ], [ -123.727355892999952, 48.78947518600004 ], [ -123.726737158999967, 48.789253863000042 ], [ -123.726176378999938, 48.789038003000037 ], [ -123.725997142999944, 48.788969003000098 ], [ -123.725629501999933, 48.788827473000048 ], [ -123.724850726999975, 48.788543226000122 ], [ -123.724035804999957, 48.788252854000056 ], [ -123.723180317999962, 48.787948034000095 ], [ -123.722572221999968, 48.787676438000133 ], [ -123.722314282999932, 48.787529465000055 ], [ -123.722106609, 48.787367677000113 ], [ -123.72206951599999, 48.787338776000063 ], [ -123.72205622199999, 48.787328396000071 ], [ -123.721738601999917, 48.786926893000064 ], [ -123.721543493999917, 48.786746103000091 ], [ -123.721285697999932, 48.786595597000051 ], [ -123.720954605999907, 48.786471397000085 ], [ -123.719727008999911, 48.786221699000123 ], [ -123.722226714000016, 48.785274793000049 ], [ -123.72272944599996, 48.785140533000117 ], [ -123.722970311999944, 48.785076206000063 ], [ -123.723136611999962, 48.785049530000059 ], [ -123.723178599000036, 48.785042800000078 ], [ -123.723230201999968, 48.785035431000061 ], [ -123.723898607999899, 48.784940090000148 ], [ -123.724391102999974, 48.784930710000019 ], [ -123.72458973, 48.784909429000045 ], [ -123.724657781999937, 48.784902138000064 ], [ -123.724671207999961, 48.784900704000037 ], [ -123.724800142999968, 48.784855760000042 ], [ -123.725224296999954, 48.784707911000069 ], [ -123.727000806999953, 48.783868907000034 ], [ -123.72747948699994, 48.783613311000053 ], [ -123.728820723999974, 48.782863300000066 ], [ -123.731155521999938, 48.784755694000133 ], [ -123.731191582999912, 48.785048401000061 ], [ -123.731198125999953, 48.785644200000036 ], [ -123.732791611999943, 48.785637512000022 ], [ -123.733143185999936, 48.785590896 ], [ -123.733419689999934, 48.785439096000061 ], [ -123.73372987599997, 48.785124902000121 ], [ -123.73373908799995, 48.785017901000039 ], [ -123.733413385999981, 48.784642394000123 ], [ -123.73325181099996, 48.78455329300003 ], [ -123.732239812, 48.784165444000074 ], [ -123.732146803999981, 48.784129793000076 ], [ -123.731551017999948, 48.783800801000069 ], [ -123.731280231999946, 48.783593995000054 ], [ -123.729700086999969, 48.782387202000088 ], [ -123.731090052999917, 48.781390929000032 ], [ -123.731115197999927, 48.781372903000054 ], [ -123.731281909999964, 48.78126618800006 ], [ -123.731496688999968, 48.781128705000057 ], [ -123.73189205099996, 48.78092610700002 ], [ -123.732504396999957, 48.780612321000064 ], [ -123.7326061159999, 48.780560204000039 ], [ -123.732683551999955, 48.780531478000064 ], [ -123.732766842999951, 48.780500574000044 ], [ -123.732868201999935, 48.780462987000064 ], [ -123.732950693999953, 48.780432402000038 ], [ -123.733470382999897, 48.780310006000065 ], [ -123.73401939799993, 48.780285691000117 ], [ -123.736516689999945, 48.780520443000057 ], [ -123.736939811999932, 48.780560204000039 ], [ -123.73847641499999, 48.780704596000128 ], [ -123.739742905999947, 48.780738609000089 ], [ -123.739988513999947, 48.780717697000092 ], [ -123.74019047799996, 48.780672392000014 ], [ -123.741261589999951, 48.780332803000078 ], [ -123.741967908999982, 48.779975603000047 ], [ -123.742443499, 48.779779312000095 ], [ -123.742966610999986, 48.77961460500007 ], [ -123.745300416999953, 48.779132307000062 ], [ -123.745955912999975, 48.779010998000025 ], [ -123.746654577999948, 48.778882510000109 ], [ -123.746747078999988, 48.778865497000069 ], [ -123.746943105, 48.778833389000063 ], [ -123.747867698, 48.77868188800003 ], [ -123.748650316999928, 48.778524798000014 ], [ -123.750224009999954, 48.778208905000021 ], [ -123.751829121999933, 48.777841701000099 ], [ -123.751913991999984, 48.779330407000074 ], [ -123.75211166699999, 48.781457180000075 ], [ -123.75235922899999, 48.784247738000062 ], [ -123.749559716999968, 48.784188757000045 ], [ -123.74946982799996, 48.786062571000038 ], [ -123.748944261999938, 48.786051490000027 ], [ -123.748855692999896, 48.78789717899999 ], [ -123.750340556, 48.787928479000094 ], [ -123.750357921999978, 48.787566349000038 ], [ -123.755790041999916, 48.78768067700009 ], [ -123.755726095999989, 48.789017289000149 ], [ -123.756122190999989, 48.789025614000117 ], [ -123.756227130999974, 48.786831691000081 ], [ -123.758293422999941, 48.786875100000032 ], [ -123.758303957999928, 48.78665464200008 ], [ -123.759686724999952, 48.786683668000052 ], [ -123.759701417999949, 48.786375975000055 ], [ -123.76120918, 48.786407605000086 ], [ -123.761266120999963, 48.785214410000016 ], [ -123.766697994999944, 48.785328184000051 ], [ -123.766616228999979, 48.787045726000031 ], [ -123.76851273399997, 48.787085384000079 ], [ -123.768627246999969, 48.784677907000088 ], [ -123.776241095999964, 48.784715476000031 ], [ -123.776579614999932, 48.784987898000125 ], [ -123.777066214999962, 48.785475604000048 ], [ -123.77741550699993, 48.785936983000113 ], [ -123.777489009999925, 48.786221492000138 ], [ -123.777268782999968, 48.786306992000071 ], [ -123.775010691999952, 48.787543195000062 ], [ -123.774637466999977, 48.787732327000036 ], [ -123.77426366799989, 48.787921780000069 ], [ -123.77388557099998, 48.788113374000048 ], [ -123.773205105000017, 48.788458191000117 ], [ -123.772656174999952, 48.78873636400008 ], [ -123.772148290999922, 48.78899368500003 ], [ -123.771756701999948, 48.789137805000074 ], [ -123.771402681999959, 48.789236806000076 ], [ -123.771351395999929, 48.789244469000067 ], [ -123.766613341000024, 48.789951723000115 ], [ -123.766541414999949, 48.789962439000078 ], [ -123.765921909999918, 48.790054889000125 ], [ -123.765668632999933, 48.790104484000018 ], [ -123.764807626999982, 48.790273108000086 ], [ -123.764717370999961, 48.790302320000052 ], [ -123.764684801999948, 48.790312889000077 ], [ -123.764346351999976, 48.79042249200009 ], [ -123.764088801999932, 48.790505920000101 ], [ -123.763475094999976, 48.790704688000069 ], [ -123.762389008999918, 48.791101895000097 ], [ -123.762070404999974, 48.791283488000055 ], [ -123.761901793999954, 48.791397111000059 ], [ -123.76181261499994, 48.791484070000124 ], [ -123.761582330999929, 48.791708675000116 ], [ -123.761481210999975, 48.791807305000177 ], [ -123.761039228999934, 48.792236899000059 ], [ -123.760632320999918, 48.792074303000092 ], [ -123.760048709999978, 48.79191250100012 ], [ -123.759405327999971, 48.791804310000025 ], [ -123.758758597999957, 48.791740306000129 ], [ -123.758270420999906, 48.79174180200004 ], [ -123.758171964, 48.791749325000097 ], [ -123.756618853999925, 48.791868197000028 ], [ -123.755845131999962, 48.791927386000054 ], [ -123.755804757999954, 48.791930471000086 ], [ -123.75508290499999, 48.791985685 ], [ -123.754892037999966, 48.791991567000061 ], [ -123.754579077999892, 48.792001202000044 ], [ -123.751710208999924, 48.791952593000111 ], [ -123.74944597399994, 48.791738195000093 ], [ -123.747927670999928, 48.791580718000105 ], [ -123.747700859999924, 48.791557184000112 ], [ -123.747079327999955, 48.791420613000106 ], [ -123.746603982999957, 48.791269116000102 ], [ -123.745845750999948, 48.791007097000069 ], [ -123.745449786, 48.790901417000065 ], [ -123.744908739999943, 48.790843130000077 ], [ -123.744536098999959, 48.790874893000101 ], [ -123.744147674999937, 48.790951416000091 ], [ -123.743836044999924, 48.791070976000121 ], [ -123.742823218999902, 48.791776763 ], [ -123.742225935999969, 48.792040770000014 ], [ -123.742149501999933, 48.79205400299999 ], [ -123.741863990999946, 48.792103392000108 ], [ -123.740706507999903, 48.792115006000117 ], [ -123.739994150999976, 48.792117837 ], [ -123.737764887999901, 48.792126617000093 ], [ -123.73769453199999, 48.792126875000093 ], [ -123.73760219399999, 48.792132307000067 ], [ -123.736382955999915, 48.792203621000027 ], [ -123.736315367999964, 48.792111177000059 ], [ -123.736167446, 48.792077391000078 ], [ -123.736122141999957, 48.791889017000088 ], [ -123.735655203999926, 48.791000513000064 ] ], [ [ -123.7439822649999, 48.789529680000079 ], [ -123.743978380999962, 48.789267015000085 ], [ -123.743473212999973, 48.789256339000097 ], [ -123.743467695999954, 48.789371037000095 ], [ -123.743688291999902, 48.789375700000036 ], [ -123.743680790999932, 48.789531626000048 ], [ -123.7439822649999, 48.789529680000079 ] ], [ [ -123.734973683999925, 48.787968190000136 ], [ -123.734969741999933, 48.78769833300003 ], [ -123.735288824999941, 48.787696298000114 ], [ -123.73529354099999, 48.787598609000071 ], [ -123.73416944799996, 48.787574758000112 ], [ -123.734202347999926, 48.786893580000054 ], [ -123.734141147999964, 48.786893971000048 ], [ -123.734145086999945, 48.78716382600004 ], [ -123.733738375999948, 48.787166417000073 ], [ -123.733737087999955, 48.787193104000039 ], [ -123.733740633999929, 48.787436284000101 ], [ -123.733725333999956, 48.787436381000077 ], [ -123.733699249000011, 48.78797631000004 ], [ -123.734156895999973, 48.787973396000019 ], [ -123.734157468999982, 48.788012708000075 ], [ -123.734566027999946, 48.788021378000089 ], [ -123.734565288999931, 48.787970794000024 ], [ -123.734973683999925, 48.787968190000136 ] ], [ [ -123.741832182999957, 48.786375539000105 ], [ -123.741750564999904, 48.788071008000038 ], [ -123.743408001999939, 48.788106054000075 ], [ -123.74352600099995, 48.785652974000079 ], [ -123.744051560999978, 48.785664082000025 ], [ -123.74407847099998, 48.785104470000107 ], [ -123.742271897999956, 48.785066277000098 ], [ -123.742286947, 48.784753563000073 ], [ -123.741639194999919, 48.784739862000016 ], [ -123.741697646999938, 48.783525566000058 ], [ -123.74072708099996, 48.78350502800005 ], [ -123.740645174999912, 48.785205764000061 ], [ -123.74088604799999, 48.785210862000085 ], [ -123.740830980999988, 48.786354357000086 ], [ -123.741832182999957, 48.786375539000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92939583", "BldgCostT": "55518333", "sL_LossRatio": "0.727891449708115", "sL_AssetLoss": "603149", "sL_BldgLoss": "439027", "sL_StrLoss": "222990", "sL_NStrLoss": "216037", "sL_ContLoss": "164122", "geom_point": "0101000020E610000097FDFCEFAFEE5EC021B10F7801644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.731155521999938, 48.784755694000133 ], [ -123.728820723999974, 48.782863300000066 ], [ -123.72747948699994, 48.783613311000053 ], [ -123.727000806999953, 48.783868907000034 ], [ -123.726963679999955, 48.781981334000129 ], [ -123.72694902399999, 48.781234709000074 ], [ -123.726932478999956, 48.780632170000104 ], [ -123.726905788999929, 48.779658589000057 ], [ -123.726869306999959, 48.779465407000011 ], [ -123.726726805999974, 48.77871044000009 ], [ -123.726950207999892, 48.778635605000041 ], [ -123.727919503999914, 48.777936387000089 ], [ -123.728025592999956, 48.777719888000064 ], [ -123.727982548999989, 48.777435023000052 ], [ -123.728074377000013, 48.777424271000079 ], [ -123.729152582999916, 48.777420866000135 ], [ -123.729153361999948, 48.777422662000049 ], [ -123.729307155999919, 48.777774597000132 ], [ -123.730112635999916, 48.778747776000053 ], [ -123.732683551999955, 48.780531478000064 ], [ -123.7326061159999, 48.780560204000039 ], [ -123.732504396999957, 48.780612321000064 ], [ -123.73189205099996, 48.78092610700002 ], [ -123.731496688999968, 48.781128705000057 ], [ -123.731281909999964, 48.78126618800006 ], [ -123.731115197999927, 48.781372903000054 ], [ -123.731090052999917, 48.781390929000032 ], [ -123.729700086999969, 48.782387202000088 ], [ -123.731280231999946, 48.783593995000054 ], [ -123.731551017999948, 48.783800801000069 ], [ -123.732146803999981, 48.784129793000076 ], [ -123.732239812, 48.784165444000074 ], [ -123.73325181099996, 48.78455329300003 ], [ -123.733413385999981, 48.784642394000123 ], [ -123.73373908799995, 48.785017901000039 ], [ -123.73372987599997, 48.785124902000121 ], [ -123.733419689999934, 48.785439096000061 ], [ -123.733143185999936, 48.785590896 ], [ -123.732791611999943, 48.785637512000022 ], [ -123.731198125999953, 48.785644200000036 ], [ -123.731191582999912, 48.785048401000061 ], [ -123.731155521999938, 48.784755694000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113400085", "BldgCostT": "73553335", "sL_LossRatio": "0.747432460767425", "sL_AssetLoss": "972916", "sL_BldgLoss": "727189", "sL_StrLoss": "378320", "sL_NStrLoss": "348869", "sL_ContLoss": "245727", "geom_point": "0101000020E6100000A303384144EE5EC09CAFF5B918644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.71915018899989, 48.779613837000078 ], [ -123.719177548999966, 48.778589080000096 ], [ -123.719750338999944, 48.778550862000024 ], [ -123.719958300999934, 48.778617112000099 ], [ -123.72054464699994, 48.778613446000122 ], [ -123.720547385999964, 48.77880477000005 ], [ -123.720578437999919, 48.778814662000087 ], [ -123.721425864999958, 48.778877816000033 ], [ -123.722181792999919, 48.778873081000022 ], [ -123.722184090999988, 48.77903318000002 ], [ -123.72241563899999, 48.779094562000097 ], [ -123.722912103999974, 48.779138385000053 ], [ -123.725452248999943, 48.779122424000079 ], [ -123.725456137999956, 48.779392282000053 ], [ -123.725747645999988, 48.779390446 ], [ -123.725759967999949, 48.779136218000062 ], [ -123.726647653, 48.77915512800012 ], [ -123.726668248999914, 48.778730063000083 ], [ -123.726726805999974, 48.77871044000009 ], [ -123.726869306999959, 48.779465407000011 ], [ -123.726905788999929, 48.779658589000057 ], [ -123.726932478999956, 48.780632170000104 ], [ -123.72694902399999, 48.781234709000074 ], [ -123.726963679999955, 48.781981334000129 ], [ -123.727000806999953, 48.783868907000034 ], [ -123.725224296999954, 48.784707911000069 ], [ -123.724800142999968, 48.784855760000042 ], [ -123.724671207999961, 48.784900704000037 ], [ -123.724657781999937, 48.784902138000064 ], [ -123.72458973, 48.784909429000045 ], [ -123.724391102999974, 48.784930710000019 ], [ -123.723898607999899, 48.784940090000148 ], [ -123.723230201999968, 48.785035431000061 ], [ -123.723178599000036, 48.785042800000078 ], [ -123.723136611999962, 48.785049530000059 ], [ -123.722970311999944, 48.785076206000063 ], [ -123.72272944599996, 48.785140533000117 ], [ -123.722226714000016, 48.785274793000049 ], [ -123.719727008999911, 48.786221699000123 ], [ -123.719764716999975, 48.784382309000151 ], [ -123.719494288999954, 48.782200291000088 ], [ -123.718994495999979, 48.780256626000089 ], [ -123.71915018899989, 48.779613837000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.767295597484277", "sL_AssetLoss": "6360", "sL_BldgLoss": "4880", "sL_StrLoss": "2570", "sL_NStrLoss": "2310", "sL_ContLoss": "1480", "geom_point": "0101000020E61000007692C6CB87EE5EC07CED3E6C8E634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.726730378999946, 48.777447713000072 ], [ -123.726960702000028, 48.777446000000104 ], [ -123.72749534899998, 48.777492141000067 ], [ -123.72750469199994, 48.777507696000086 ], [ -123.727468478999938, 48.777768298000055 ], [ -123.727200204999946, 48.778030310000055 ], [ -123.727185406000018, 48.778038586000037 ], [ -123.726987270999956, 48.778149264000021 ], [ -123.72698737499995, 48.778149268000043 ], [ -123.726889301999933, 48.778204085000077 ], [ -123.726690438999952, 48.778272050000076 ], [ -123.726730378999946, 48.777447713000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96233500", "BldgCostT": "65215000", "sL_LossRatio": "0.77968691079463", "sL_AssetLoss": "774348", "sL_BldgLoss": "603749", "sL_StrLoss": "319102", "sL_NStrLoss": "284647", "sL_ContLoss": "170599", "geom_point": "0101000020E610000085655C06D6F05EC05F9E524E49634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.77362559599996, 48.779707639000044 ], [ -123.773689713999914, 48.778356355 ], [ -123.76870128799996, 48.778252190000067 ], [ -123.768704111, 48.778192807999986 ], [ -123.767735955999967, 48.778172565000013 ], [ -123.767746527999918, 48.777950352000111 ], [ -123.767580749000032, 48.77794688500007 ], [ -123.767568902, 48.778195850000088 ], [ -123.766001937999945, 48.778163065000065 ], [ -123.765971673999928, 48.778798687000148 ], [ -123.76563806199999, 48.778791704000092 ], [ -123.765608393999941, 48.779414694000131 ], [ -123.76410773899994, 48.779383270000068 ], [ -123.764078067999932, 48.780005931000041 ], [ -123.761707059999935, 48.779956237000064 ], [ -123.761669712999918, 48.780739088000082 ], [ -123.76024675099994, 48.780709239000046 ], [ -123.760209596, 48.78148752000007 ], [ -123.757739298999951, 48.781435658000127 ], [ -123.757657088999949, 48.783155779000055 ], [ -123.75334853599999, 48.783065186000044 ], [ -123.753308458999953, 48.783902084000111 ], [ -123.752432142999965, 48.783883636000056 ], [ -123.752414642999938, 48.784248904000066 ], [ -123.75235922899999, 48.784247738000062 ], [ -123.75211166699999, 48.781457180000075 ], [ -123.751913991999984, 48.779330407000074 ], [ -123.751829121999933, 48.777841701000099 ], [ -123.750224009999954, 48.778208905000021 ], [ -123.748650316999928, 48.778524798000014 ], [ -123.747867698, 48.77868188800003 ], [ -123.746943105, 48.778833389000063 ], [ -123.746747078999988, 48.778865497000069 ], [ -123.746654577999948, 48.778882510000109 ], [ -123.745955912999975, 48.779010998000025 ], [ -123.745300416999953, 48.779132307000062 ], [ -123.742966610999986, 48.77961460500007 ], [ -123.742443499, 48.779779312000095 ], [ -123.741967908999982, 48.779975603000047 ], [ -123.741261589999951, 48.780332803000078 ], [ -123.74019047799996, 48.780672392000014 ], [ -123.739988513999947, 48.780717697000092 ], [ -123.739742905999947, 48.780738609000089 ], [ -123.73847641499999, 48.780704596000128 ], [ -123.736939811999932, 48.780560204000039 ], [ -123.736516689999945, 48.780520443000057 ], [ -123.73401939799993, 48.780285691000117 ], [ -123.733470382999897, 48.780310006000065 ], [ -123.732950693999953, 48.780432402000038 ], [ -123.732868201999935, 48.780462987000064 ], [ -123.732766842999951, 48.780500574000044 ], [ -123.732683551999955, 48.780531478000064 ], [ -123.730112635999916, 48.778747776000053 ], [ -123.729307155999919, 48.777774597000132 ], [ -123.729153361999948, 48.777422662000049 ], [ -123.729152582999916, 48.777420866000135 ], [ -123.740236823999965, 48.777275144000072 ], [ -123.746655623, 48.777190147000091 ], [ -123.746623994999936, 48.777848713000026 ], [ -123.746648466999915, 48.777849230000065 ], [ -123.746680134999949, 48.777189820000061 ], [ -123.751532156999986, 48.777125313000091 ], [ -123.754412184999936, 48.776996957000101 ], [ -123.754344459, 48.774167944000091 ], [ -123.754910605999925, 48.774200685000039 ], [ -123.755072201999894, 48.774163605000069 ], [ -123.755165524999967, 48.77399980400002 ], [ -123.754992295999926, 48.773363214000042 ], [ -123.754694633000014, 48.773104366000084 ], [ -123.757193022999942, 48.773156899000071 ], [ -123.757040093999976, 48.776356412000077 ], [ -123.758813921999959, 48.776393675000115 ], [ -123.758818820999963, 48.776291124000096 ], [ -123.758991823999907, 48.776294756000027 ], [ -123.759054282999941, 48.774986925000086 ], [ -123.760333025999927, 48.775013767000068 ], [ -123.76037698, 48.774092855 ], [ -123.761943624999972, 48.774125719000018 ], [ -123.761964739999954, 48.773682993000115 ], [ -123.762997323999983, 48.773704642000041 ], [ -123.763029108999902, 48.773037891000051 ], [ -123.76213435499993, 48.773019133000084 ], [ -123.762134702999958, 48.773011843000027 ], [ -123.761110278999965, 48.772990357000047 ], [ -123.761102165999915, 48.773160425000071 ], [ -123.755671713999945, 48.773046364000088 ], [ -123.755786388999951, 48.770648498000057 ], [ -123.758088282999935, 48.770121697000079 ], [ -123.75857865299993, 48.769906905000056 ], [ -123.759817614999918, 48.769864842000118 ], [ -123.767805740999933, 48.770007971000055 ], [ -123.767815534999926, 48.770008140000108 ], [ -123.767997162999947, 48.770011400000058 ], [ -123.76802170800002, 48.770011462000127 ], [ -123.769554201999981, 48.770015985000136 ], [ -123.769110941999941, 48.767282483000081 ], [ -123.769085416999957, 48.767125073000045 ], [ -123.769003442999932, 48.766619583000072 ], [ -123.768990297999949, 48.76653860200004 ], [ -123.76890158, 48.765991237000044 ], [ -123.768846274999973, 48.765650356000087 ], [ -123.768728305999957, 48.764922610000028 ], [ -123.768796290999944, 48.764721294000076 ], [ -123.76925042299996, 48.76437209700002 ], [ -123.770235183999944, 48.764120593000072 ], [ -123.770613212999933, 48.763942802000074 ], [ -123.771700598999956, 48.763274403000047 ], [ -123.77324579299993, 48.763065995000041 ], [ -123.773603911999942, 48.763051 ], [ -123.774053494999961, 48.763109905000107 ], [ -123.775301080999952, 48.76341890500003 ], [ -123.775687109, 48.763617104000069 ], [ -123.775970216999966, 48.763863600000079 ], [ -123.776142193999945, 48.764162805000041 ], [ -123.776157207, 48.764563191000086 ], [ -123.776069418999953, 48.765124604000093 ], [ -123.773030100999975, 48.765179198000155 ], [ -123.772706213999925, 48.765217488000062 ], [ -123.77255040299994, 48.76529540600005 ], [ -123.772490206, 48.765417586000069 ], [ -123.772468611999969, 48.765730700000127 ], [ -123.772701214999984, 48.766897999000093 ], [ -123.772822914999963, 48.767190434000085 ], [ -123.7729306, 48.767449102000057 ], [ -123.772957395, 48.767513485000094 ], [ -123.772962982999957, 48.767684160000051 ], [ -123.772966170999965, 48.767783186000045 ], [ -123.772978494999904, 48.768160886000089 ], [ -123.773039277999942, 48.770025696000076 ], [ -123.774910441, 48.770030587000029 ], [ -123.776548263999928, 48.770034842000072 ], [ -123.776657007, 48.77003511700012 ], [ -123.776711376999955, 48.770035255000039 ], [ -123.778123600999947, 48.770038920000054 ], [ -123.778155213999952, 48.770174694000083 ], [ -123.778202559999954, 48.770226359000041 ], [ -123.778435599999938, 48.770480606000078 ], [ -123.779044597999942, 48.770876296000061 ], [ -123.77926419, 48.771060206000094 ], [ -123.779342402999944, 48.771217703000069 ], [ -123.779316400999932, 48.771680295000124 ], [ -123.779250991999916, 48.771971787000041 ], [ -123.778853200999919, 48.773199009000081 ], [ -123.778829413999958, 48.773414804000048 ], [ -123.780539196999953, 48.773409786000052 ], [ -123.780956384999911, 48.774516036000129 ], [ -123.781076589999913, 48.774834805000118 ], [ -123.781097957999989, 48.774971724000082 ], [ -123.781118305999925, 48.775102397000119 ], [ -123.781111304999982, 48.775184748000086 ], [ -123.781096592, 48.775358788000112 ], [ -123.781058628999972, 48.77545187000004 ], [ -123.781002909999955, 48.775588513000066 ], [ -123.78082432099994, 48.775857808000048 ], [ -123.780658922000015, 48.775996915000107 ], [ -123.779128697, 48.777284108000067 ], [ -123.778774155999926, 48.777581990000023 ], [ -123.778695316999915, 48.777648194000022 ], [ -123.778477602999956, 48.777831089000102 ], [ -123.778324515999913, 48.778051394000087 ], [ -123.778203564999899, 48.778371484000083 ], [ -123.778192403, 48.778401003000099 ], [ -123.778137175, 48.778734097000061 ], [ -123.778153423999981, 48.779056272000027 ], [ -123.778178472999969, 48.779555000000116 ], [ -123.778162809999941, 48.779887193000057 ], [ -123.777853300999979, 48.780280787000066 ], [ -123.777699842999979, 48.780417926000034 ], [ -123.777685793, 48.780430515000084 ], [ -123.777650852999969, 48.780607697000072 ], [ -123.777646509999954, 48.780629794000035 ], [ -123.777689553999963, 48.780752327000108 ], [ -123.777792798999926, 48.78104598500007 ], [ -123.777806980999941, 48.781086401000088 ], [ -123.77782262099997, 48.781359698000081 ], [ -123.777781941999962, 48.781502421000042 ], [ -123.777671, 48.781891814000083 ], [ -123.777521001999915, 48.78227530800006 ], [ -123.777372095000018, 48.782461389000041 ], [ -123.777151909999972, 48.782664082000025 ], [ -123.776914701999885, 48.782791609000107 ], [ -123.776254104999936, 48.783021185000024 ], [ -123.775996998999943, 48.783141982000068 ], [ -123.77582149499996, 48.783259087000062 ], [ -123.775743621999979, 48.783410603000128 ], [ -123.775723021999966, 48.783616607000056 ], [ -123.775792611999947, 48.784097403000054 ], [ -123.775881183999928, 48.784292999000066 ], [ -123.775943379999944, 48.784375303000033 ], [ -123.776137001, 48.784631699000109 ], [ -123.776241095999964, 48.784715476000031 ], [ -123.768627246999969, 48.784677907000088 ], [ -123.768646482999955, 48.784273489000078 ], [ -123.771818123999978, 48.784339737000067 ], [ -123.7719248759999, 48.78209196300007 ], [ -123.771978158999971, 48.782093075000084 ], [ -123.772008908999965, 48.781445564000137 ], [ -123.772243429999946, 48.781450459000062 ], [ -123.772285346999951, 48.78056766800011 ], [ -123.77343755, 48.780591708000046 ], [ -123.773479646999959, 48.779704595000027 ], [ -123.77362559599996, 48.779707639000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434584", "BldgCostT": "3058334", "sL_LossRatio": "0.863787044191321", "sL_AssetLoss": "20060.5", "sL_BldgLoss": "17328", "sL_StrLoss": "11580", "sL_NStrLoss": "5748", "sL_ContLoss": "2732.5", "geom_point": "0101000020E610000016BE210161F05EC0F6896E837B674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.753311829999973, 48.806936724000082 ], [ -123.753344455999951, 48.806255779 ], [ -123.75479072399996, 48.806286191000019 ], [ -123.75536028599997, 48.806298163000051 ], [ -123.758778746999951, 48.806369952000097 ], [ -123.75876151199999, 48.80673054500005 ], [ -123.758833265999939, 48.806732051000076 ], [ -123.758661151999945, 48.810332773000042 ], [ -123.758439776999964, 48.810328127000112 ], [ -123.758424460999919, 48.810648478000132 ], [ -123.752989674999952, 48.810534288 ], [ -123.753100083999982, 48.808230407000075 ], [ -123.753162224999969, 48.806933576000048 ], [ -123.753311829999973, 48.806936724000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8727250", "BldgCostT": "5755000", "sL_LossRatio": "0.725037979700126", "sL_AssetLoss": "90838", "sL_BldgLoss": "65861", "sL_StrLoss": "36111", "sL_NStrLoss": "29750", "sL_ContLoss": "24977", "geom_point": "0101000020E6100000485CB68C8AF05EC029A01E155E664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.757664642999927, 48.803057805000059 ], [ -123.757662787999905, 48.802934618000073 ], [ -123.754803194999937, 48.802953380000119 ], [ -123.754782947999928, 48.801604108000063 ], [ -123.75519145, 48.801601432000098 ], [ -123.755171192999981, 48.800252161000088 ], [ -123.755534148999942, 48.800249782000094 ], [ -123.75570069399997, 48.796769608000012 ], [ -123.76113389299995, 48.796883662000049 ], [ -123.76112454499993, 48.797079470000028 ], [ -123.762401259999976, 48.797106230000111 ], [ -123.762242787, 48.800427601000123 ], [ -123.76222945399995, 48.800707014000089 ], [ -123.76192261199995, 48.800700583000044 ], [ -123.760079764999958, 48.800661946000027 ], [ -123.760103779999952, 48.802251193000117 ], [ -123.760105706999951, 48.802378772000075 ], [ -123.759952941, 48.80237978000013 ], [ -123.75969720099999, 48.802381466000078 ], [ -123.759700424999934, 48.802595042000057 ], [ -123.759705350999951, 48.802921174000112 ], [ -123.75931483, 48.802923748000069 ], [ -123.758888325999976, 48.802926556000109 ], [ -123.758890323999978, 48.803058950000015 ], [ -123.758892397999915, 48.803196410000105 ], [ -123.757666851999915, 48.8032044730001 ], [ -123.757664642999927, 48.803057805000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.819803034335906", "sL_AssetLoss": "3757", "sL_BldgLoss": "3080", "sL_StrLoss": "1900", "sL_NStrLoss": "1180", "sL_ContLoss": "677", "geom_point": "0101000020E610000088827C7D6BEF5EC042A175BFD0694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.740181213999946, 48.825472737000027 ], [ -123.741426234999963, 48.825499061000045 ], [ -123.741252714999945, 48.829099645000078 ], [ -123.741160882999964, 48.829097704000041 ], [ -123.741070665999928, 48.828255187000096 ], [ -123.741073278, 48.828254594000022 ], [ -123.740432086999974, 48.826623609000073 ], [ -123.740181213999946, 48.825472737000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.821477742083525", "sL_AssetLoss": "4358", "sL_BldgLoss": "3580", "sL_StrLoss": "1950", "sL_NStrLoss": "1630", "sL_ContLoss": "778", "geom_point": "0101000020E61000004C3D24DF19F15EC0D98D2549636A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.767069925, 48.830400189000109 ], [ -123.76870486699994, 48.830389299000117 ], [ -123.768717249999924, 48.831198855000061 ], [ -123.768308508999951, 48.831201580000048 ], [ -123.768312634999987, 48.83147143200005 ], [ -123.767495148999956, 48.8314768770001 ], [ -123.767499269999931, 48.831746730000056 ], [ -123.767090523999954, 48.831749450000068 ], [ -123.767094643999897, 48.832019302000056 ], [ -123.765868396999977, 48.832027455000045 ], [ -123.765851944999937, 48.830948047000064 ], [ -123.766260684999935, 48.830945330000127 ], [ -123.766256569999911, 48.830675478000053 ], [ -123.767074045999919, 48.830670041000118 ], [ -123.767069925, 48.830400189000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.79235121068115", "sL_AssetLoss": "22095", "sL_BldgLoss": "17507", "sL_StrLoss": "9640", "sL_NStrLoss": "7867", "sL_ContLoss": "4588", "geom_point": "0101000020E6100000DD4F9D79BFEF5EC068859633E3664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.749813954999979, 48.803052114000117 ], [ -123.749958753999948, 48.803051853000063 ], [ -123.749885082999953, 48.804587205000075 ], [ -123.747533823999945, 48.804537642000071 ], [ -123.747530190999939, 48.804613264000047 ], [ -123.742096130999983, 48.804498519000056 ], [ -123.742165115999967, 48.803065782000019 ], [ -123.742990925999948, 48.803064357000061 ], [ -123.7437806699999, 48.803062955000065 ], [ -123.744679491999989, 48.803061358000029 ], [ -123.749813954999979, 48.803052114000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.7859375", "sL_AssetLoss": "6400", "sL_BldgLoss": "5030", "sL_StrLoss": "2420", "sL_NStrLoss": "2610", "sL_ContLoss": "1370", "geom_point": "0101000020E610000032763E130CF15EC05191960CF8654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.765342401999987, 48.797486262000078 ], [ -123.765338296999943, 48.797216408000033 ], [ -123.764929830999989, 48.797219120000115 ], [ -123.764917521999976, 48.79640955700004 ], [ -123.765325979999943, 48.796406846000167 ], [ -123.765317770999928, 48.795867138000091 ], [ -123.767768497999938, 48.795850840000071 ], [ -123.767784971999959, 48.796930255000056 ], [ -123.76737650799997, 48.796932975000061 ], [ -123.767380623999927, 48.797202829000128 ], [ -123.766972158999977, 48.79720554800015 ], [ -123.766976271999908, 48.797475401000099 ], [ -123.765342401999987, 48.797486262000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10971750", "BldgCostT": "7095000", "sL_LossRatio": "0.776782118405155", "sL_AssetLoss": "59592", "sL_BldgLoss": "46290", "sL_StrLoss": "25410", "sL_NStrLoss": "20880", "sL_ContLoss": "13302", "geom_point": "0101000020E61000002010641476F15EC0ABFE52509B664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.770493400999953, 48.804248864000044 ], [ -123.770559948999946, 48.802849121000079 ], [ -123.767875592999943, 48.802867034000059 ], [ -123.767809683999985, 48.798549377000079 ], [ -123.768218159999947, 48.798546656000049 ], [ -123.768217349999972, 48.798493595000089 ], [ -123.768214039999947, 48.798276802000082 ], [ -123.76943946199998, 48.798268628000088 ], [ -123.769443380000027, 48.798524842000099 ], [ -123.769443589999938, 48.798538481 ], [ -123.769867571999981, 48.798535650000105 ], [ -123.770260540999985, 48.798533025000097 ], [ -123.770260734999951, 48.798545666000059 ], [ -123.770264673999975, 48.798802879000085 ], [ -123.770673149999965, 48.798800148000076 ], [ -123.770701475999914, 48.80064885900002 ], [ -123.772634279999977, 48.800689189000053 ], [ -123.772682658999898, 48.799670534000093 ], [ -123.778116235000013, 48.799783725000118 ], [ -123.777945626999923, 48.80338451800008 ], [ -123.775975812999931, 48.803343516000076 ], [ -123.775927501999988, 48.804362165000029 ], [ -123.770493400999953, 48.804248864000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10403833", "BldgCostT": "6703333", "sL_LossRatio": "0.838716608178758", "sL_AssetLoss": "41889", "sL_BldgLoss": "35133", "sL_StrLoss": "21483", "sL_NStrLoss": "13650", "sL_ContLoss": "6756", "geom_point": "0101000020E61000003783C7D0D4EF5EC0BB257B7CA9684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.745016046999979, 48.814100697000057 ], [ -123.750451225999953, 48.814215292000021 ], [ -123.750278440999978, 48.817815957000036 ], [ -123.749877759999961, 48.817807519000027 ], [ -123.749712808999931, 48.821243761000119 ], [ -123.744276817999932, 48.82112912900007 ], [ -123.744450074999975, 48.817528493000111 ], [ -123.744850751999977, 48.81753695200004 ], [ -123.745016046999979, 48.814100697000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16504084", "BldgCostT": "11118334", "sL_LossRatio": "0.749726054764831", "sL_AssetLoss": "165179", "sL_BldgLoss": "123839", "sL_StrLoss": "68224", "sL_NStrLoss": "55615", "sL_ContLoss": "41340", "geom_point": "0101000020E6100000B739C6FC39EF5EC0EFFEA12E0C684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.733731491999905, 48.820495300000069 ], [ -123.733709915999952, 48.82031790000007 ], [ -123.733711879999973, 48.820226242000103 ], [ -123.733721805999934, 48.819761299000092 ], [ -123.733781902999979, 48.819361611000083 ], [ -123.733897, 48.81895219000009 ], [ -123.7341551199999, 48.818384205000072 ], [ -123.734894559999958, 48.816756916000024 ], [ -123.73569309599999, 48.814999404000083 ], [ -123.736145824999966, 48.814158399000078 ], [ -123.736321205999943, 48.813821509000086 ], [ -123.736523314999957, 48.81310129600007 ], [ -123.736623911999956, 48.812872418000055 ], [ -123.737007611999971, 48.811999583000116 ], [ -123.737022239999945, 48.811937533000027 ], [ -123.737093081999916, 48.811637399000112 ], [ -123.737086642999955, 48.811567954000104 ], [ -123.736991204999953, 48.810537691000064 ], [ -123.736967807999918, 48.810102690000093 ], [ -123.736953759999935, 48.809841605000038 ], [ -123.736937806999933, 48.809545031000084 ], [ -123.736686269999922, 48.804868834000018 ], [ -123.736656273000037, 48.804311393000084 ], [ -123.7365898, 48.803075395000064 ], [ -123.738320053999956, 48.803072442 ], [ -123.740830483999957, 48.803068115000045 ], [ -123.740663925999954, 48.806525127000086 ], [ -123.739866533999987, 48.806508256000058 ], [ -123.73984279699998, 48.807000732000041 ], [ -123.740362870999959, 48.807011736000142 ], [ -123.740268075999921, 48.808978710000126 ], [ -123.74068047599998, 48.808987433000013 ], [ -123.740626424999988, 48.8101091280001 ], [ -123.741165223999943, 48.810120524000119 ], [ -123.740991741999963, 48.813721197000056 ], [ -123.739226285999933, 48.813683848000075 ], [ -123.73920178499999, 48.814191908000033 ], [ -123.739093019999956, 48.816447236000066 ], [ -123.738861204, 48.816442330000029 ], [ -123.738736450999937, 48.819028638000077 ], [ -123.73821595699998, 48.819017620000054 ], [ -123.738172976999948, 48.819908348000041 ], [ -123.737725424999908, 48.819898872000117 ], [ -123.737710672999967, 48.820204540000113 ], [ -123.738361834, 48.820218326 ], [ -123.738346741999962, 48.820531102000125 ], [ -123.739287018999946, 48.820551003000077 ], [ -123.739165344999918, 48.823073729000065 ], [ -123.739172578999955, 48.823565572000113 ], [ -123.739141610999923, 48.823565772000045 ], [ -123.739137388999936, 48.82365331500008 ], [ -123.738720514999926, 48.823241702000118 ], [ -123.737950531999928, 48.822456967000065 ], [ -123.737897101999948, 48.822402492000094 ], [ -123.737806844999938, 48.822344826000062 ], [ -123.737550843999927, 48.822181183000097 ], [ -123.73731251599996, 48.822028799000101 ], [ -123.736505077999965, 48.821692873000082 ], [ -123.735820199999949, 48.821407905000065 ], [ -123.733760495999945, 48.820733505000049 ], [ -123.733731491999905, 48.820495300000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78926416", "BldgCostT": "51961666", "sL_LossRatio": "0.747222233844188", "sL_AssetLoss": "717033", "sL_BldgLoss": "535783", "sL_StrLoss": "288303", "sL_NStrLoss": "247480", "sL_ContLoss": "181250", "geom_point": "0101000020E61000006FB78FA26FF15EC041A4320739644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.751841116999969, 48.796085101000109 ], [ -123.751845287999913, 48.795742787000052 ], [ -123.74955661099996, 48.795750418000118 ], [ -123.74944597399994, 48.791738195000093 ], [ -123.751710208999924, 48.791952593000111 ], [ -123.754579077999892, 48.792001202000044 ], [ -123.754892037999966, 48.791991567000061 ], [ -123.75508290499999, 48.791985685 ], [ -123.755804757999954, 48.791930471000086 ], [ -123.755845131999962, 48.791927386000054 ], [ -123.756618853999925, 48.791868197000028 ], [ -123.758171964, 48.791749325000097 ], [ -123.758270420999906, 48.79174180200004 ], [ -123.758758597999957, 48.791740306000129 ], [ -123.759405327999971, 48.791804310000025 ], [ -123.760048709999978, 48.79191250100012 ], [ -123.760632320999918, 48.792074303000092 ], [ -123.761039228999934, 48.792236899000059 ], [ -123.761481210999975, 48.791807305000177 ], [ -123.761582330999929, 48.791708675000116 ], [ -123.76181261499994, 48.791484070000124 ], [ -123.761901793999954, 48.791397111000059 ], [ -123.762070404999974, 48.791283488000055 ], [ -123.762389008999918, 48.791101895000097 ], [ -123.763475094999976, 48.790704688000069 ], [ -123.764088801999932, 48.790505920000101 ], [ -123.764346351999976, 48.79042249200009 ], [ -123.764684801999948, 48.790312889000077 ], [ -123.764717370999961, 48.790302320000052 ], [ -123.764807626999982, 48.790273108000086 ], [ -123.765668632999933, 48.790104484000018 ], [ -123.765921909999918, 48.790054889000125 ], [ -123.766541414999949, 48.789962439000078 ], [ -123.766613341000024, 48.789951723000115 ], [ -123.771351395999929, 48.789244469000067 ], [ -123.771402681999959, 48.789236806000076 ], [ -123.771756701999948, 48.789137805000074 ], [ -123.772148290999922, 48.78899368500003 ], [ -123.772656174999952, 48.78873636400008 ], [ -123.773205105000017, 48.788458191000117 ], [ -123.77388557099998, 48.788113374000048 ], [ -123.77426366799989, 48.787921780000069 ], [ -123.774637466999977, 48.787732327000036 ], [ -123.775010691999952, 48.787543195000062 ], [ -123.777268782999968, 48.786306992000071 ], [ -123.777489009999925, 48.786221492000138 ], [ -123.77741550699993, 48.785936983000113 ], [ -123.777066214999962, 48.785475604000048 ], [ -123.776579614999932, 48.784987898000125 ], [ -123.776241095999964, 48.784715476000031 ], [ -123.776137001, 48.784631699000109 ], [ -123.775943379999944, 48.784375303000033 ], [ -123.775881183999928, 48.784292999000066 ], [ -123.775792611999947, 48.784097403000054 ], [ -123.775723021999966, 48.783616607000056 ], [ -123.775743621999979, 48.783410603000128 ], [ -123.77582149499996, 48.783259087000062 ], [ -123.775996998999943, 48.783141982000068 ], [ -123.776254104999936, 48.783021185000024 ], [ -123.776914701999885, 48.782791609000107 ], [ -123.777151909999972, 48.782664082000025 ], [ -123.777372095000018, 48.782461389000041 ], [ -123.777521001999915, 48.78227530800006 ], [ -123.777671, 48.781891814000083 ], [ -123.777781941999962, 48.781502421000042 ], [ -123.77782262099997, 48.781359698000081 ], [ -123.777806980999941, 48.781086401000088 ], [ -123.777792798999926, 48.78104598500007 ], [ -123.777689553999963, 48.780752327000108 ], [ -123.777646509999954, 48.780629794000035 ], [ -123.777650852999969, 48.780607697000072 ], [ -123.777685793, 48.780430515000084 ], [ -123.777699842999979, 48.780417926000034 ], [ -123.777853300999979, 48.780280787000066 ], [ -123.778162809999941, 48.779887193000057 ], [ -123.778178472999969, 48.779555000000116 ], [ -123.778153423999981, 48.779056272000027 ], [ -123.778137175, 48.778734097000061 ], [ -123.778192403, 48.778401003000099 ], [ -123.778203564999899, 48.778371484000083 ], [ -123.778324515999913, 48.778051394000087 ], [ -123.778477602999956, 48.777831089000102 ], [ -123.778695316999915, 48.777648194000022 ], [ -123.778774155999926, 48.777581990000023 ], [ -123.779128697, 48.777284108000067 ], [ -123.780658922000015, 48.775996915000107 ], [ -123.78082432099994, 48.775857808000048 ], [ -123.781002909999955, 48.775588513000066 ], [ -123.781058628999972, 48.77545187000004 ], [ -123.781096592, 48.775358788000112 ], [ -123.781111304999982, 48.775184748000086 ], [ -123.781118305999925, 48.775102397000119 ], [ -123.781097957999989, 48.774971724000082 ], [ -123.781076589999913, 48.774834805000118 ], [ -123.780956384999911, 48.774516036000129 ], [ -123.780539196999953, 48.773409786000052 ], [ -123.778829413999958, 48.773414804000048 ], [ -123.778853200999919, 48.773199009000081 ], [ -123.779250991999916, 48.771971787000041 ], [ -123.779316400999932, 48.771680295000124 ], [ -123.779342402999944, 48.771217703000069 ], [ -123.77926419, 48.771060206000094 ], [ -123.779044597999942, 48.770876296000061 ], [ -123.778435599999938, 48.770480606000078 ], [ -123.778202559999954, 48.770226359000041 ], [ -123.778155213999952, 48.770174694000083 ], [ -123.778123600999947, 48.770038920000054 ], [ -123.776711376999955, 48.770035255000039 ], [ -123.776657007, 48.77003511700012 ], [ -123.776548263999928, 48.770034842000072 ], [ -123.774910441, 48.770030587000029 ], [ -123.773039277999942, 48.770025696000076 ], [ -123.772978494999904, 48.768160886000089 ], [ -123.772966170999965, 48.767783186000045 ], [ -123.772962982999957, 48.767684160000051 ], [ -123.772957395, 48.767513485000094 ], [ -123.7729306, 48.767449102000057 ], [ -123.772822914999963, 48.767190434000085 ], [ -123.772701214999984, 48.766897999000093 ], [ -123.772468611999969, 48.765730700000127 ], [ -123.772490206, 48.765417586000069 ], [ -123.77255040299994, 48.76529540600005 ], [ -123.772706213999925, 48.765217488000062 ], [ -123.773030100999975, 48.765179198000155 ], [ -123.776069418999953, 48.765124604000093 ], [ -123.776157207, 48.764563191000086 ], [ -123.776142193999945, 48.764162805000041 ], [ -123.775970216999966, 48.763863600000079 ], [ -123.775687109, 48.763617104000069 ], [ -123.775301080999952, 48.76341890500003 ], [ -123.774053494999961, 48.763109905000107 ], [ -123.773603911999942, 48.763051 ], [ -123.77324579299993, 48.763065995000041 ], [ -123.771700598999956, 48.763274403000047 ], [ -123.770613212999933, 48.763942802000074 ], [ -123.770235183999944, 48.764120593000072 ], [ -123.76925042299996, 48.76437209700002 ], [ -123.768796290999944, 48.764721294000076 ], [ -123.768728305999957, 48.764922610000028 ], [ -123.768846274999973, 48.765650356000087 ], [ -123.76890158, 48.765991237000044 ], [ -123.768990297999949, 48.76653860200004 ], [ -123.769003442999932, 48.766619583000072 ], [ -123.769085416999957, 48.767125073000045 ], [ -123.769110941999941, 48.767282483000081 ], [ -123.769554201999981, 48.770015985000136 ], [ -123.76802170800002, 48.770011462000127 ], [ -123.767997162999947, 48.770011400000058 ], [ -123.767815534999926, 48.770008140000108 ], [ -123.767805740999933, 48.770007971000055 ], [ -123.767803623999924, 48.769921382000071 ], [ -123.767642560999946, 48.763415237000082 ], [ -123.76779738, 48.76337379200006 ], [ -123.769328088999941, 48.762841191000092 ], [ -123.772804599999944, 48.760667790000106 ], [ -123.773250879999949, 48.760548195000048 ], [ -123.773918492999897, 48.760525400000077 ], [ -123.774272797999956, 48.760559586000127 ], [ -123.774739310999919, 48.760798797000049 ], [ -123.775266496999933, 48.761416996000086 ], [ -123.77547808099996, 48.761936800000029 ], [ -123.775751994999965, 48.762123390000042 ], [ -123.776231600999949, 48.762282908000024 ], [ -123.777541218999929, 48.76252499800011 ], [ -123.778966462999946, 48.762646709000144 ], [ -123.778944808999967, 48.763104315000099 ], [ -123.777817567999975, 48.763080845000097 ], [ -123.77779079299999, 48.763646389 ], [ -123.781300038999944, 48.76371941700009 ], [ -123.78130163599991, 48.763685639000052 ], [ -123.782426944999955, 48.763709032000101 ], [ -123.782480011999922, 48.762585804000054 ], [ -123.782698177999961, 48.762517897000087 ], [ -123.78292868799997, 48.762380589000045 ], [ -123.782927693999909, 48.762506881000014 ], [ -123.783088386999978, 48.766899611000078 ], [ -123.782907129999955, 48.768830650000019 ], [ -123.782959789999921, 48.770067402000109 ], [ -123.782728869999957, 48.772638057000066 ], [ -123.782742606999975, 48.774425510000121 ], [ -123.782777558999939, 48.778970237000067 ], [ -123.782262754999934, 48.778959542000045 ], [ -123.78220709199995, 48.780137183000122 ], [ -123.782006621000022, 48.780133017000082 ], [ -123.781987503999929, 48.780537387000102 ], [ -123.781704702999917, 48.780531510000102 ], [ -123.781584359999925, 48.783076710000067 ], [ -123.78278198199996, 48.783101592000044 ], [ -123.782776256999938, 48.784652457000099 ], [ -123.782777060999962, 48.785645443000092 ], [ -123.782788749999952, 48.786559586000116 ], [ -123.782811794999972, 48.788360235000013 ], [ -123.782387392999937, 48.788351421000115 ], [ -123.782399228, 48.788101040000093 ], [ -123.781485065999945, 48.788082048000042 ], [ -123.7814726229999, 48.788345177000153 ], [ -123.780130987999883, 48.788317289000076 ], [ -123.780090214, 48.789178908000054 ], [ -123.779523493999974, 48.789167123 ], [ -123.7795161, 48.789323322000016 ], [ -123.777654455999965, 48.789284587000097 ], [ -123.777628153999956, 48.789839767000089 ], [ -123.776987772999959, 48.789826436000055 ], [ -123.776983698999985, 48.789912403000059 ], [ -123.777085582999959, 48.789914525000015 ], [ -123.777069899999958, 48.790245486000089 ], [ -123.77968364899999, 48.790299873000038 ], [ -123.779694719999952, 48.790065979000062 ], [ -123.782834455999961, 48.790131227000124 ], [ -123.782856205999948, 48.791831239000082 ], [ -123.782857742999951, 48.791951261000079 ], [ -123.782859377999955, 48.792076255000026 ], [ -123.782938262999906, 48.794815092000071 ], [ -123.781630397999919, 48.794787928000083 ], [ -123.781613109999967, 48.795153453000047 ], [ -123.776180061999952, 48.795040439000054 ], [ -123.776190477999975, 48.794820748000078 ], [ -123.771301400999945, 48.794718813000074 ], [ -123.771324217999961, 48.794238630000045 ], [ -123.769990282999956, 48.794210779000075 ], [ -123.769994121999929, 48.794129992000123 ], [ -123.769905159999951, 48.794128134000111 ], [ -123.769893602, 48.794371243000043 ], [ -123.767323201999915, 48.794317528000064 ], [ -123.767320798999933, 48.794368007000124 ], [ -123.763756085999944, 48.794293410000087 ], [ -123.761887877999968, 48.794254267000071 ], [ -123.761942864999938, 48.793101891000063 ], [ -123.761684207999963, 48.793096469000083 ], [ -123.761668522999969, 48.793425149000065 ], [ -123.759748351999932, 48.793384878000033 ], [ -123.759746546999963, 48.793422697000025 ], [ -123.759331479999958, 48.793413987000108 ], [ -123.759238336999971, 48.795363703000127 ], [ -123.75560084199999, 48.795287307000152 ], [ -123.755507392999931, 48.797240090000059 ], [ -123.755261286999925, 48.797234916000036 ], [ -123.755093073999902, 48.800749189000079 ], [ -123.754108860999963, 48.800728495000058 ], [ -123.754097846000022, 48.800958513000111 ], [ -123.752751510999943, 48.800930190000059 ], [ -123.752648513999972, 48.800799496000096 ], [ -123.75230342, 48.800007024000116 ], [ -123.752176900999942, 48.799716406000115 ], [ -123.751814987999964, 48.798416592000045 ], [ -123.751627781999929, 48.797414197000052 ], [ -123.751608725999958, 48.796764104000047 ], [ -123.751841116999969, 48.796085101000109 ] ], [ [ -123.75388424099999, 48.793601542000083 ], [ -123.753889428, 48.793493207 ], [ -123.753040312999929, 48.793475341000075 ], [ -123.753035123999936, 48.793583677000058 ], [ -123.75388424099999, 48.793601542000083 ] ], [ [ -123.78105725899999, 48.769919052000063 ], [ -123.781070060999951, 48.769648294000064 ], [ -123.780765956999957, 48.769641970000116 ], [ -123.780753153999953, 48.769912729000055 ], [ -123.78105725899999, 48.769919052000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3697500", "BldgCostT": "2550000", "sL_LossRatio": "0.814421252371917", "sL_AssetLoss": "26350", "sL_BldgLoss": "21460", "sL_StrLoss": "11960", "sL_NStrLoss": "9500", "sL_ContLoss": "4890", "geom_point": "0101000020E61000008AF6A1A04EEE5EC0EC74D65D0F6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.720918191999914, 48.826735741000043 ], [ -123.726354777, 48.826851560000073 ], [ -123.726180093999972, 48.83045211200011 ], [ -123.720743091999964, 48.830336286000048 ], [ -123.720918191999914, 48.826735741000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17905750", "BldgCostT": "12085000", "sL_LossRatio": "0.816986472698549", "sL_AssetLoss": "121532", "sL_BldgLoss": "99290", "sL_StrLoss": "56914", "sL_NStrLoss": "42376", "sL_ContLoss": "22242", "geom_point": "0101000020E61000009ECA371588EE5EC088AF7E852F6B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.719456850999975, 48.843712716000049 ], [ -123.719485632999962, 48.843121425000085 ], [ -123.718198699000013, 48.843129450000056 ], [ -123.718187121999961, 48.842319886000055 ], [ -123.719004795999979, 48.842314789000099 ], [ -123.719000934999983, 48.842044934000043 ], [ -123.719538194999984, 48.842041583000075 ], [ -123.719563013999931, 48.841531653000118 ], [ -123.721328763, 48.841569309000086 ], [ -123.721425650999933, 48.839577092000098 ], [ -123.724519792, 48.839643008000088 ], [ -123.724623641, 48.837504564000035 ], [ -123.72533732, 48.837519756000113 ], [ -123.725441928999928, 48.835364779000024 ], [ -123.72795306099999, 48.83541819200007 ], [ -123.728093181999967, 48.832528135000111 ], [ -123.729500550999902, 48.832558045000063 ], [ -123.729527154, 48.832008968000082 ], [ -123.729915224999928, 48.832017213000093 ], [ -123.730024461999918, 48.82976207400003 ], [ -123.730801481999933, 48.82977857700007 ], [ -123.730882319999949, 48.828108991000079 ], [ -123.730961662999903, 48.828110675000097 ], [ -123.731019481999908, 48.826916390000093 ], [ -123.73465465699995, 48.826993519000119 ], [ -123.734559986999955, 48.827068655000083 ], [ -123.734517884999931, 48.827102085000035 ], [ -123.734253033999963, 48.82726930200009 ], [ -123.734162337999976, 48.827326569000029 ], [ -123.734011201999948, 48.827421991000094 ], [ -123.733812495, 48.827593480000097 ], [ -123.73370589299995, 48.827827271000089 ], [ -123.73353640199997, 48.828379688000041 ], [ -123.733331568999944, 48.828774836000086 ], [ -123.733125190999971, 48.82917288500002 ], [ -123.733026312999982, 48.829502383000033 ], [ -123.733007818999951, 48.83016518800008 ], [ -123.733058107999952, 48.831262885000051 ], [ -123.73318539, 48.832345049000018 ], [ -123.733545923999927, 48.833527668000045 ], [ -123.733533896, 48.833749984000072 ], [ -123.733458727999903, 48.835158566000068 ], [ -123.733387480999909, 48.835770082000124 ], [ -123.733080885999968, 48.836437343000085 ], [ -123.732544044999884, 48.837002880000107 ], [ -123.732462690999938, 48.837050149000035 ], [ -123.73229047, 48.837046496000077 ], [ -123.731147578999924, 48.837022240000039 ], [ -123.731187482999971, 48.836198100000097 ], [ -123.730845120999945, 48.836190832000085 ], [ -123.730793700999968, 48.837252630000059 ], [ -123.73177497799999, 48.837273460000098 ], [ -123.732067672999918, 48.837279671000047 ], [ -123.73197649599993, 48.837332648000022 ], [ -123.73121134299997, 48.837538554000112 ], [ -123.729934439999951, 48.837939164000076 ], [ -123.729641844999946, 48.838220377000034 ], [ -123.729360942999961, 48.838401759000078 ], [ -123.729085926999943, 48.838515762000036 ], [ -123.72882252899997, 48.838594799000077 ], [ -123.728650945999959, 48.838646273000101 ], [ -123.728493620999956, 48.838747392000094 ], [ -123.728349743999956, 48.838906587000039 ], [ -123.727987120999927, 48.839424182000045 ], [ -123.727919749999913, 48.839490418000089 ], [ -123.727779912999964, 48.839627865000082 ], [ -123.726160542999963, 48.840696351000062 ], [ -123.725872125999913, 48.840886665000092 ], [ -123.722443090999917, 48.844840577000078 ], [ -123.722436305999921, 48.844848385000049 ], [ -123.722099424999953, 48.845494113000086 ], [ -123.721877918999937, 48.84591869400009 ], [ -123.7216406269999, 48.846649712000044 ], [ -123.721493685, 48.847102502000077 ], [ -123.721521801999984, 48.847308602000069 ], [ -123.72166378899999, 48.847523389000131 ], [ -123.722815913, 48.84866070000006 ], [ -123.722827801999941, 48.848833912000067 ], [ -123.722770796999953, 48.848887699000073 ], [ -123.722738087, 48.848900132 ], [ -123.722564195999951, 48.848966199000088 ], [ -123.722499096999968, 48.8489903890001 ], [ -123.72246572499995, 48.849002826000053 ], [ -123.722268543999959, 48.84871931 ], [ -123.719918557999975, 48.846409408000056 ], [ -123.719106685999989, 48.845444177000047 ], [ -123.718961500999953, 48.845191707000083 ], [ -123.718576, 48.844521336000057 ], [ -123.718543269999941, 48.844464431000098 ], [ -123.718245567999986, 48.843686867 ], [ -123.719456850999975, 48.843712716000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.806242960579244", "sL_AssetLoss": "31075", "sL_BldgLoss": "25054", "sL_StrLoss": "12883", "sL_NStrLoss": "12171", "sL_ContLoss": "6021", "geom_point": "0101000020E61000000D1CD0D215EE5EC0BA6FCEEBFC6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.717947580999976, 48.836631480000079 ], [ -123.717943266999924, 48.836300683000076 ], [ -123.717500710999929, 48.836306554000018 ], [ -123.717655952999934, 48.836248594 ], [ -123.71779091399992, 48.836159590000136 ], [ -123.717949678999943, 48.835945815000073 ], [ -123.717991919999932, 48.832423555000076 ], [ -123.717997046999926, 48.831155785000071 ], [ -123.718002120999927, 48.829906604000136 ], [ -123.718827160999936, 48.829901463000112 ], [ -123.718854184999955, 48.831790449000067 ], [ -123.718036680999916, 48.831795543000048 ], [ -123.718048260999936, 48.832605814000033 ], [ -123.719193589999946, 48.832630265000013 ], [ -123.719153472999935, 48.833454492000023 ], [ -123.719409730999985, 48.833459961000102 ], [ -123.719384912999942, 48.833969905000025 ], [ -123.719406360999955, 48.833970362000102 ], [ -123.71938012, 48.834509536000063 ], [ -123.723236655999969, 48.83459176300012 ], [ -123.723061704999978, 48.838192266000071 ], [ -123.71930357699992, 48.838112139000067 ], [ -123.719249511999962, 48.839222856000035 ], [ -123.718550794999956, 48.839207944000087 ], [ -123.718538994999975, 48.839450274000036 ], [ -123.71797252099995, 48.839438181000055 ], [ -123.717963111999921, 48.838379858000074 ], [ -123.717947580999976, 48.836631480000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79900228", "BldgCostT": "52484857", "sL_LossRatio": "0.724865441165754", "sL_AssetLoss": "891989", "sL_BldgLoss": "646572", "sL_StrLoss": "319262", "sL_NStrLoss": "327310", "sL_ContLoss": "245417", "geom_point": "0101000020E6100000C12364FF80EE5EC06B7339B149684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.717999414999909, 48.827323609000111 ], [ -123.717996015999944, 48.826226124000065 ], [ -123.717994559999951, 48.825758296000089 ], [ -123.71799310599999, 48.825290526000053 ], [ -123.717989379999921, 48.824094095000078 ], [ -123.717987439999916, 48.823462311000064 ], [ -123.718009017999989, 48.818930242000071 ], [ -123.71801958699993, 48.816709402000079 ], [ -123.718011501999953, 48.813662583000053 ], [ -123.71797601699997, 48.813050880000056 ], [ -123.717874832999897, 48.812419784000042 ], [ -123.716468164, 48.805694560000063 ], [ -123.716344680999924, 48.804320452000098 ], [ -123.716377347999952, 48.80351012900006 ], [ -123.71638894199998, 48.803131922000077 ], [ -123.716477244999965, 48.803132896000065 ], [ -123.71655884799999, 48.803133744000036 ], [ -123.716994025999924, 48.803133142000014 ], [ -123.718968937999975, 48.803125790000159 ], [ -123.71955515499991, 48.80312298700008 ], [ -123.720514013999946, 48.803120015000047 ], [ -123.721310488999933, 48.803117241000095 ], [ -123.722329775999967, 48.803113710000076 ], [ -123.723741479999944, 48.803137492000076 ], [ -123.724581203999918, 48.803151805000056 ], [ -123.725622529999924, 48.803130725000123 ], [ -123.733186485999965, 48.803092686000092 ], [ -123.73531077799997, 48.803081921000057 ], [ -123.735964435999932, 48.803078592000055 ], [ -123.7365898, 48.803075395000064 ], [ -123.736656273000037, 48.804311393000084 ], [ -123.736686269999922, 48.804868834000018 ], [ -123.736937806999933, 48.809545031000084 ], [ -123.736953759999935, 48.809841605000038 ], [ -123.736967807999918, 48.810102690000093 ], [ -123.736991204999953, 48.810537691000064 ], [ -123.737086642999955, 48.811567954000104 ], [ -123.737093081999916, 48.811637399000112 ], [ -123.737022239999945, 48.811937533000027 ], [ -123.737007611999971, 48.811999583000116 ], [ -123.736623911999956, 48.812872418000055 ], [ -123.736523314999957, 48.81310129600007 ], [ -123.736321205999943, 48.813821509000086 ], [ -123.736145824999966, 48.814158399000078 ], [ -123.73569309599999, 48.814999404000083 ], [ -123.734894559999958, 48.816756916000024 ], [ -123.7341551199999, 48.818384205000072 ], [ -123.733897, 48.81895219000009 ], [ -123.733781902999979, 48.819361611000083 ], [ -123.733721805999934, 48.819761299000092 ], [ -123.733711879999973, 48.820226242000103 ], [ -123.733709915999952, 48.82031790000007 ], [ -123.733731491999905, 48.820495300000069 ], [ -123.733760495999945, 48.820733505000049 ], [ -123.734154298999925, 48.82159238100008 ], [ -123.734498799, 48.82282518600006 ], [ -123.735043804999918, 48.823983979000062 ], [ -123.735156279999941, 48.824223185000072 ], [ -123.735070068999903, 48.825568876000034 ], [ -123.735029213999937, 48.826206487000121 ], [ -123.734966706999913, 48.82654899200007 ], [ -123.730261378999955, 48.826449146000101 ], [ -123.730296365999948, 48.825726660000036 ], [ -123.730244021999937, 48.825725547000054 ], [ -123.730291826999988, 48.824738358000097 ], [ -123.729306644999923, 48.824717426000042 ], [ -123.729481066999952, 48.821116835000083 ], [ -123.730303864999925, 48.821134318000077 ], [ -123.730368652999928, 48.819796258000068 ], [ -123.73024187599999, 48.81979356500009 ], [ -123.730383204999924, 48.816874600000077 ], [ -123.730083559999969, 48.816876499000074 ], [ -123.730079640999932, 48.816606644000032 ], [ -123.72967101499999, 48.816609231000058 ], [ -123.729659263999977, 48.815799666000018 ], [ -123.728910247, 48.815804405000094 ], [ -123.728863532999966, 48.816768687 ], [ -123.727035644999916, 48.816729812000112 ], [ -123.726996558999957, 48.81753592900008 ], [ -123.728550339999956, 48.817568976000139 ], [ -123.728375860999975, 48.821169586000046 ], [ -123.727697779999957, 48.821155166000089 ], [ -123.727642252999942, 48.822300560000087 ], [ -123.729115103999945, 48.822331875000089 ], [ -123.728940650000013, 48.825932458000061 ], [ -123.728561551999974, 48.825924399 ], [ -123.728525675999961, 48.82666466600007 ], [ -123.727415529999945, 48.826641061000075 ], [ -123.727410135999989, 48.826752293 ], [ -123.724215725999969, 48.826684306000153 ], [ -123.724215604999941, 48.826686771000041 ], [ -123.720006129999916, 48.826597034000045 ], [ -123.720006966999961, 48.826655547000115 ], [ -123.720415677999966, 48.826652994000014 ], [ -123.720427282999978, 48.827462560000079 ], [ -123.71960985199999, 48.827467665000029 ], [ -123.71961371499999, 48.827737521000081 ], [ -123.718796278999918, 48.827742621000034 ], [ -123.718800139999956, 48.828012475000023 ], [ -123.71800157499996, 48.828017452000054 ], [ -123.71800019699999, 48.827575476000085 ], [ -123.717999414999909, 48.827323609000111 ] ], [ [ -123.722860001999933, 48.813945694000068 ], [ -123.722964525999927, 48.811793647000059 ], [ -123.722654532999968, 48.811795592000095 ], [ -123.722639017999967, 48.810716167000059 ], [ -123.722230439, 48.810718727000051 ], [ -123.722218810999919, 48.809909160000132 ], [ -123.723853102999911, 48.809898909000076 ], [ -123.72387283799999, 48.811269843000048 ], [ -123.725221157999925, 48.811298565000079 ], [ -123.725234101999902, 48.811031800000073 ], [ -123.730419355999985, 48.811142101 ], [ -123.730453428999951, 48.810438227000098 ], [ -123.732050542999971, 48.810472151000056 ], [ -123.732056985999961, 48.810338948000023 ], [ -123.729087701999958, 48.810275861000086 ], [ -123.729262085999935, 48.806675187000074 ], [ -123.732856634999933, 48.806751549000055 ], [ -123.732917406999931, 48.805494605000057 ], [ -123.731250403000018, 48.805459206000066 ], [ -123.731244599999954, 48.8055791620001 ], [ -123.73047256699999, 48.805562759000104 ], [ -123.730442901999965, 48.806175680000131 ], [ -123.727475812999913, 48.806112588000104 ], [ -123.727483407999955, 48.806637490000099 ], [ -123.725849222999926, 48.806647792000064 ], [ -123.725841433999946, 48.806108081000026 ], [ -123.725432891999958, 48.806110652000072 ], [ -123.725432291999979, 48.806069087000054 ], [ -123.725372132, 48.806067806000073 ], [ -123.725311360999982, 48.807320502000024 ], [ -123.725234148999945, 48.807318857999988 ], [ -123.725211684, 48.80778190400008 ], [ -123.724369386999953, 48.807763961000042 ], [ -123.72436455499999, 48.807863524000091 ], [ -123.724039062999978, 48.807856589000046 ], [ -123.724014869000015, 48.808355032000087 ], [ -123.718893500999968, 48.808245778000106 ], [ -123.71884964499999, 48.809147227000032 ], [ -123.719241581999967, 48.80915559700005 ], [ -123.719211966, 48.809764433000069 ], [ -123.719650103000035, 48.809773788000072 ], [ -123.719616475999956, 48.810465197000056 ], [ -123.720592253999953, 48.810459101000063 ], [ -123.720603854999979, 48.811268669000135 ], [ -123.721012437999931, 48.81126611300008 ], [ -123.721024046999943, 48.812075682000042 ], [ -123.721432638999929, 48.812073126000051 ], [ -123.721452, 48.813422405000082 ], [ -123.720634795999942, 48.813427516000047 ], [ -123.720636077999927, 48.813516997000065 ], [ -123.722611019999974, 48.813559120000022 ], [ -123.7225925179999, 48.813939992000023 ], [ -123.722860001999933, 48.813945694000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228059251", "BldgCostT": "143340001", "sL_LossRatio": "0.767431066606829", "sL_AssetLoss": "1367918.3", "sL_BldgLoss": "1049783", "sL_StrLoss": "591311", "sL_NStrLoss": "458472", "sL_ContLoss": "318135.3", "geom_point": "0101000020E610000008363B730BEE5EC0A8DCB01218664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713848403, 48.794993699000024 ], [ -123.713833947999973, 48.794926095000044 ], [ -123.713829011999948, 48.794578231000074 ], [ -123.713759663999937, 48.794578661000067 ], [ -123.713568321999972, 48.793683703000063 ], [ -123.713235818999934, 48.792973701000058 ], [ -123.711982117999966, 48.791338774000081 ], [ -123.712270932999942, 48.791429486000069 ], [ -123.712575149999935, 48.791525047000015 ], [ -123.712930343999915, 48.791374917000041 ], [ -123.712837898999979, 48.791318853000099 ], [ -123.712810536999925, 48.791238965000126 ], [ -123.712859163999909, 48.791161629000079 ], [ -123.712969940999955, 48.791120730000074 ], [ -123.713094609999942, 48.791128799000091 ], [ -123.71318711, 48.791183965000066 ], [ -123.713214363999924, 48.791265647000081 ], [ -123.714232135999936, 48.791248687000071 ], [ -123.714721030999982, 48.791370908 ], [ -123.715614642, 48.791594983000024 ], [ -123.716300614999952, 48.791767007000011 ], [ -123.716793002999935, 48.791817111000071 ], [ -123.717262776999945, 48.791860875000062 ], [ -123.718312922999971, 48.791958710000117 ], [ -123.718536180999976, 48.791978795000048 ], [ -123.719879251999942, 48.792094861000074 ], [ -123.719957924999946, 48.795092806000078 ], [ -123.722028385999977, 48.795097295000055 ], [ -123.72226909199999, 48.795096113000071 ], [ -123.723809274999923, 48.795100990000044 ], [ -123.725231016999942, 48.795103931000057 ], [ -123.725307486999924, 48.795104106000032 ], [ -123.725323507999988, 48.795105746000097 ], [ -123.725717396999968, 48.795146201000101 ], [ -123.725622452999971, 48.795365860000061 ], [ -123.725461, 48.7957586590001 ], [ -123.724584913999962, 48.797890301000109 ], [ -123.724101301999923, 48.799029809000103 ], [ -123.724104817999944, 48.799154239000117 ], [ -123.724203661999951, 48.799291170000117 ], [ -123.724229677999929, 48.799327214000051 ], [ -123.72436012299994, 48.79940738100003 ], [ -123.72463355499994, 48.799575415000092 ], [ -123.72468878899997, 48.799609350000026 ], [ -123.724916266999969, 48.799749136000081 ], [ -123.725040094999926, 48.799859003000044 ], [ -123.725090912, 48.7999725620001 ], [ -123.72510669499998, 48.80000785900004 ], [ -123.725122297999974, 48.800042781000052 ], [ -123.725622529999924, 48.803130725000123 ], [ -123.724581203999918, 48.803151805000056 ], [ -123.723741479999944, 48.803137492000076 ], [ -123.722329775999967, 48.803113710000076 ], [ -123.721310488999933, 48.803117241000095 ], [ -123.720514013999946, 48.803120015000047 ], [ -123.71955515499991, 48.80312298700008 ], [ -123.718968937999975, 48.803125790000159 ], [ -123.716994025999924, 48.803133142000014 ], [ -123.71655884799999, 48.803133744000036 ], [ -123.716477244999965, 48.803132896000065 ], [ -123.71638894199998, 48.803131922000077 ], [ -123.716421115999978, 48.802834338000075 ], [ -123.716605381999941, 48.801061283000074 ], [ -123.716603595999942, 48.800595381000065 ], [ -123.716495619999947, 48.799880280000131 ], [ -123.716381855999941, 48.799423694000019 ], [ -123.716169204999986, 48.79884875300008 ], [ -123.715872634999954, 48.79829361900002 ], [ -123.714967058999918, 48.796870307000113 ], [ -123.714480707999911, 48.796107510000091 ], [ -123.714041086999941, 48.795419509000077 ], [ -123.713848403, 48.794993699000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.76343201754386", "sL_AssetLoss": "29184", "sL_BldgLoss": "22280", "sL_StrLoss": "10210", "sL_NStrLoss": "12070", "sL_ContLoss": "6904", "geom_point": "0101000020E6100000FD25D2CB62EB5EC0BB977F1DCD684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.676476646999959, 48.817918321000079 ], [ -123.680264814999958, 48.818000645000069 ], [ -123.679738682999968, 48.818415102000102 ], [ -123.679046729999982, 48.819078119000089 ], [ -123.678770409999942, 48.819342883000054 ], [ -123.677929589999962, 48.819922094000113 ], [ -123.677341472999942, 48.819788407000082 ], [ -123.67729040199994, 48.819777665000082 ], [ -123.676994892999943, 48.81971551500007 ], [ -123.676814420999989, 48.819677536000086 ], [ -123.676393359999963, 48.819598595000123 ], [ -123.676476646999959, 48.817918321000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.841697810998398", "sL_AssetLoss": "7492", "sL_BldgLoss": "6306", "sL_StrLoss": "3830", "sL_NStrLoss": "2476", "sL_ContLoss": "1186", "geom_point": "0101000020E6100000186A7F2D90ED5EC0A2757DB472654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713012113999952, 48.794583287000108 ], [ -123.712996816999947, 48.793503858000072 ], [ -123.712588374999939, 48.793506384000068 ], [ -123.712580732999953, 48.792966670000148 ], [ -123.712172294999931, 48.792969194000136 ], [ -123.712168477999953, 48.792699337000101 ], [ -123.711351607999987, 48.792704381000085 ], [ -123.711343978999977, 48.792164666000126 ], [ -123.710935547999924, 48.792167186000071 ], [ -123.710934786999985, 48.792113311000016 ], [ -123.70985737499997, 48.792090207000065 ], [ -123.709873311999942, 48.791763800000062 ], [ -123.70754101199999, 48.791713746000106 ], [ -123.707541692999925, 48.791699795000042 ], [ -123.709002104, 48.791634373000065 ], [ -123.711473575999918, 48.791523591000058 ], [ -123.711982117999966, 48.791338774000081 ], [ -123.713235818999934, 48.792973701000058 ], [ -123.713568321999972, 48.793683703000063 ], [ -123.713759663999937, 48.794578661000067 ], [ -123.713012113999952, 48.794583287000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.94299674267101", "sL_AssetLoss": "2456", "sL_BldgLoss": "2316", "sL_StrLoss": "1770", "sL_NStrLoss": "546", "sL_ContLoss": "140", "geom_point": "0101000020E6100000D8D90C4742EC5EC075C35B8C26694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.689137053999957, 48.821328143000066 ], [ -123.694572933999936, 48.821445579000084 ], [ -123.694566097999939, 48.821584566000077 ], [ -123.692545005999932, 48.821593245000088 ], [ -123.692408777999958, 48.821593825000015 ], [ -123.690528898999929, 48.821601825000059 ], [ -123.68967062599998, 48.821605487000085 ], [ -123.689123265999982, 48.821607814000131 ], [ -123.689137053999957, 48.821328143000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79257917", "BldgCostT": "52216667", "sL_LossRatio": "0.732416271490988", "sL_AssetLoss": "943884", "sL_BldgLoss": "691316", "sL_StrLoss": "338826", "sL_NStrLoss": "352490", "sL_ContLoss": "252568", "geom_point": "0101000020E6100000411716D4DEEC5EC045FEAA6DD4674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.697199079999962, 48.821838615000061 ], [ -123.69721645199999, 48.821485020000075 ], [ -123.69716874599996, 48.821483992000019 ], [ -123.697345623000032, 48.817883434000144 ], [ -123.697424995999967, 48.817885146000016 ], [ -123.697428206999959, 48.817819770000092 ], [ -123.69702121, 48.817810997000059 ], [ -123.696943713999957, 48.819388365000044 ], [ -123.69254514, 48.819293454000046 ], [ -123.69247601, 48.820697771000063 ], [ -123.688654173999964, 48.820615157000098 ], [ -123.688605116999938, 48.821610013000097 ], [ -123.687572812999932, 48.8216143880001 ], [ -123.687586320999955, 48.82153270200007 ], [ -123.687556899999919, 48.821439301000026 ], [ -123.686938095999921, 48.821105093000071 ], [ -123.685761801999917, 48.820269504000088 ], [ -123.68516843699993, 48.819570027000033 ], [ -123.684347690999942, 48.818602513000066 ], [ -123.683933259999932, 48.818254945000099 ], [ -123.685698674999941, 48.818293203000081 ], [ -123.68565979499999, 48.819080696000071 ], [ -123.685914733999979, 48.81908621900007 ], [ -123.686039043999969, 48.816567953000117 ], [ -123.687687349999919, 48.816603644000089 ], [ -123.68783664099999, 48.813576788000027 ], [ -123.69077657099993, 48.813640384000053 ], [ -123.69079333799999, 48.813299960000059 ], [ -123.692776737000017, 48.813342818000109 ], [ -123.692815600999936, 48.812553107000049 ], [ -123.69584719, 48.812618544000053 ], [ -123.695862995000013, 48.812296981000017 ], [ -123.698509384999966, 48.812354033000084 ], [ -123.698617204999948, 48.810157542000077 ], [ -123.700959255000015, 48.810207979000083 ], [ -123.701008062999946, 48.809212598000073 ], [ -123.702062558999941, 48.809235290000068 ], [ -123.70208844899993, 48.808707023000082 ], [ -123.70295055299999, 48.808725568000106 ], [ -123.70298414599999, 48.808039872000101 ], [ -123.703483114, 48.807819102000046 ], [ -123.704816184999942, 48.806705403000144 ], [ -123.705184885, 48.80626240900007 ], [ -123.70586340899996, 48.806276985000046 ], [ -123.705863735999941, 48.806270310000073 ], [ -123.706458359999942, 48.806283081000068 ], [ -123.706460513999943, 48.806239024 ], [ -123.707228039999976, 48.806255504000035 ], [ -123.707233975999941, 48.806134080000049 ], [ -123.706931726999983, 48.806127590000067 ], [ -123.706970917999982, 48.805326181000098 ], [ -123.707110997999962, 48.805296809000019 ], [ -123.707611701999923, 48.805086110000055 ], [ -123.70793601299999, 48.80485109800005 ], [ -123.70921781499996, 48.803152003000093 ], [ -123.70912183899999, 48.802570153000076 ], [ -123.71129046399993, 48.802616650000061 ], [ -123.711380625999979, 48.800769229000117 ], [ -123.711432021999926, 48.800770331000109 ], [ -123.71155516, 48.798246925000107 ], [ -123.712836030999952, 48.798274368000058 ], [ -123.712839410999948, 48.798205057000104 ], [ -123.713063513999941, 48.798209857000067 ], [ -123.713061833999944, 48.798091430000092 ], [ -123.71265335599999, 48.798093957000063 ], [ -123.712638066999901, 48.797014528000062 ], [ -123.713455003999982, 48.79700947500001 ], [ -123.713439696999956, 48.795930046000144 ], [ -123.713848156999973, 48.795927517000074 ], [ -123.713833947999973, 48.794926095000044 ], [ -123.713848403, 48.794993699000024 ], [ -123.714041086999941, 48.795419509000077 ], [ -123.714480707999911, 48.796107510000091 ], [ -123.714967058999918, 48.796870307000113 ], [ -123.715872634999954, 48.79829361900002 ], [ -123.716169204999986, 48.79884875300008 ], [ -123.716381855999941, 48.799423694000019 ], [ -123.716495619999947, 48.799880280000131 ], [ -123.716603595999942, 48.800595381000065 ], [ -123.716605381999941, 48.801061283000074 ], [ -123.716421115999978, 48.802834338000075 ], [ -123.71638894199998, 48.803131922000077 ], [ -123.716377347999952, 48.80351012900006 ], [ -123.716250342999913, 48.803241583000016 ], [ -123.716038081999969, 48.803132537000046 ], [ -123.715824564999963, 48.803133369000051 ], [ -123.715809647999961, 48.803695331000057 ], [ -123.715805174999943, 48.80386469899999 ], [ -123.715772596999926, 48.804059502 ], [ -123.71555920400003, 48.804391893000094 ], [ -123.714610616999892, 48.805397702000057 ], [ -123.713479901999946, 48.806596592000083 ], [ -123.713336905999981, 48.806824189000103 ], [ -123.712773700999932, 48.806798691000047 ], [ -123.71248649399999, 48.806831294000098 ], [ -123.712220292999959, 48.806908510000106 ], [ -123.711815198999943, 48.80712778700007 ], [ -123.711375398999948, 48.807444501000099 ], [ -123.710460410999985, 48.808275600000101 ], [ -123.709930007999958, 48.808553402000058 ], [ -123.709628586999941, 48.808653313 ], [ -123.709241000999938, 48.808736017000022 ], [ -123.70847957099997, 48.808862915000091 ], [ -123.707104687999944, 48.809092101000033 ], [ -123.706507193999983, 48.809240512000017 ], [ -123.706243683, 48.809343887000153 ], [ -123.705810708999977, 48.809631986000106 ], [ -123.705652396999966, 48.809810600000141 ], [ -123.705455180999977, 48.810282094000044 ], [ -123.704806120999962, 48.811536461000067 ], [ -123.704801710999988, 48.81154499000008 ], [ -123.704630199999954, 48.811650117000049 ], [ -123.703806212999922, 48.812155193000109 ], [ -123.703757752999977, 48.812182065000094 ], [ -123.703267911999944, 48.81245360500008 ], [ -123.702926100999917, 48.812572404000043 ], [ -123.70226890399999, 48.81260608500002 ], [ -123.701772886999933, 48.81270710400004 ], [ -123.701557417999979, 48.812801590000106 ], [ -123.70142351699999, 48.812898799000045 ], [ -123.701015493999947, 48.813312597000035 ], [ -123.70080509899995, 48.813470298000091 ], [ -123.70051461099996, 48.813625294000076 ], [ -123.699510492999934, 48.813992112000044 ], [ -123.699320152999974, 48.814132789000062 ], [ -123.699274788999944, 48.81416629299999 ], [ -123.699210904999958, 48.814276686 ], [ -123.699212696999908, 48.815985206000093 ], [ -123.699237688999943, 48.816140695000094 ], [ -123.699246346999971, 48.816283735000134 ], [ -123.699357864999953, 48.818127164000053 ], [ -123.699381806999966, 48.818523019000096 ], [ -123.699580195999914, 48.821801507000082 ], [ -123.699186420999979, 48.821893673000069 ], [ -123.6991741, 48.821896558000105 ], [ -123.697377196999966, 48.821857846000093 ], [ -123.697199079999962, 48.821838615000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67434417", "BldgCostT": "45536667", "sL_LossRatio": "0.821711338509232", "sL_AssetLoss": "364510", "sL_BldgLoss": "299522", "sL_StrLoss": "185060", "sL_NStrLoss": "114462", "sL_ContLoss": "64988", "geom_point": "0101000020E61000003F0DEFA4CBEB5EC0A7D703396A674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.672430708999968, 48.818392204000162 ], [ -123.672387703, 48.818052405000103 ], [ -123.672389906999953, 48.81785603200013 ], [ -123.672391690000026, 48.817698401 ], [ -123.67246180399998, 48.817491686000061 ], [ -123.672607493999962, 48.817296700000057 ], [ -123.67267759299996, 48.817233317000138 ], [ -123.672742786999933, 48.817174395000038 ], [ -123.67307101199998, 48.816947192000036 ], [ -123.673230286999967, 48.816752510000086 ], [ -123.673605214999967, 48.815860398000027 ], [ -123.673627115999921, 48.815734855000073 ], [ -123.673707798999928, 48.815272400000062 ], [ -123.673116301999954, 48.815157696000071 ], [ -123.672680287999938, 48.815144607 ], [ -123.672192688999957, 48.815185411000051 ], [ -123.671781593, 48.815280349000027 ], [ -123.671497822000021, 48.81534590400004 ], [ -123.670568390999961, 48.81533696500005 ], [ -123.668861856, 48.815320542 ], [ -123.667870406999953, 48.815310987000018 ], [ -123.667952609999986, 48.815174406000047 ], [ -123.668386393999967, 48.814453500000099 ], [ -123.668768271999951, 48.813911542000028 ], [ -123.669147398999954, 48.813373500000075 ], [ -123.66919299599999, 48.813297047000049 ], [ -123.669352210999975, 48.813030110000092 ], [ -123.669481067999953, 48.812709500000011 ], [ -123.669628216999953, 48.81234326500001 ], [ -123.669735588999941, 48.812076103000066 ], [ -123.670368687999954, 48.810886005000064 ], [ -123.670786009999958, 48.80982460100013 ], [ -123.671104297999989, 48.809110698000055 ], [ -123.671243503999946, 48.808870047000099 ], [ -123.671580424999945, 48.808287498000034 ], [ -123.674023300999977, 48.808227198000054 ], [ -123.674969313999924, 48.807964801 ], [ -123.675522293999933, 48.807894914000038 ], [ -123.677250799999939, 48.807868484000032 ], [ -123.677906401999934, 48.80794939599999 ], [ -123.678780670999942, 48.808200904000074 ], [ -123.679475294999961, 48.80840069700011 ], [ -123.679940994999981, 48.808472091000091 ], [ -123.680476598999959, 48.808532409000051 ], [ -123.682544728999972, 48.808482154000011 ], [ -123.683879118999954, 48.808449730000106 ], [ -123.684373706999978, 48.80843770700011 ], [ -123.685222893999935, 48.808456089000096 ], [ -123.685181379999975, 48.806391638 ], [ -123.685169085999988, 48.805780078000105 ], [ -123.685149016999958, 48.804781612000085 ], [ -123.685136289999889, 48.80414870800012 ], [ -123.685118621999933, 48.80327042000004 ], [ -123.685074084999897, 48.801056489000132 ], [ -123.685054670999989, 48.800068191000065 ], [ -123.68505342499999, 48.800005240000139 ], [ -123.685043507999964, 48.799499597000064 ], [ -123.691668725999975, 48.799517765000139 ], [ -123.691861914999905, 48.799518295000077 ], [ -123.694325490999972, 48.799524718000065 ], [ -123.699492473999939, 48.79962774100003 ], [ -123.699456947, 48.800351960000114 ], [ -123.6992684, 48.800347898000062 ], [ -123.699248761999982, 48.800748164000041 ], [ -123.698907614999882, 48.800740814000051 ], [ -123.698888867999955, 48.801122871000089 ], [ -123.698178562999942, 48.801107564000077 ], [ -123.698137084999971, 48.801952588000049 ], [ -123.69270345599999, 48.801835329 ], [ -123.692714310999989, 48.801614713000049 ], [ -123.691534601999976, 48.801589219000064 ], [ -123.691459686, 48.803111048000048 ], [ -123.6912732699999, 48.803107018000034 ], [ -123.691256850999949, 48.803440511000112 ], [ -123.691330976999922, 48.803442114000134 ], [ -123.691221849, 48.805658554000111 ], [ -123.69372132499997, 48.805712557000028 ], [ -123.693671134999974, 48.806732968000084 ], [ -123.69426756699994, 48.806745846000034 ], [ -123.694090493999937, 48.81034646200014 ], [ -123.693741608999943, 48.810338929000054 ], [ -123.693695730999934, 48.811271569000063 ], [ -123.693250913, 48.811261964000025 ], [ -123.69324232299999, 48.811436579000066 ], [ -123.69269181099996, 48.811424689000027 ], [ -123.69268690499996, 48.811524393000134 ], [ -123.691216890999968, 48.811492629000078 ], [ -123.691213749000028, 48.811556429000106 ], [ -123.690002329999956, 48.811530238000095 ], [ -123.689984118999973, 48.811899858000118 ], [ -123.684549357999941, 48.811782187000055 ], [ -123.68457057499991, 48.811352559000035 ], [ -123.682739018999925, 48.811312841000046 ], [ -123.682771200999966, 48.810661700000054 ], [ -123.677660774999964, 48.810550710000093 ], [ -123.677663021999962, 48.810505337000109 ], [ -123.677150659999981, 48.810494196000015 ], [ -123.67715340899997, 48.810438701000088 ], [ -123.676494939999955, 48.810424379999986 ], [ -123.676498300999924, 48.810356564000116 ], [ -123.675962678999909, 48.810344911000072 ], [ -123.675955184999921, 48.810496108000059 ], [ -123.675397816999975, 48.810483979000075 ], [ -123.675394263999976, 48.810555622000052 ], [ -123.67416936199993, 48.810528957000038 ], [ -123.674143244, 48.811055451000072 ], [ -123.67401358099994, 48.811052627000052 ], [ -123.673996756999898, 48.811391753000095 ], [ -123.673942939999961, 48.811390581000076 ], [ -123.67392137799996, 48.811825154000047 ], [ -123.673800403999962, 48.811822519000067 ], [ -123.67377919599997, 48.812249956000109 ], [ -123.673757277999982, 48.812249478000112 ], [ -123.673743311, 48.812530955000042 ], [ -123.673417380999979, 48.812523856 ], [ -123.673403211999982, 48.812809363000092 ], [ -123.673158009999952, 48.812804022000094 ], [ -123.673131131999966, 48.81334556900007 ], [ -123.672986142999974, 48.813342410000082 ], [ -123.672944370999929, 48.814183971000034 ], [ -123.672774136999919, 48.81418026200005 ], [ -123.672770349999922, 48.814256569000037 ], [ -123.67365246899999, 48.814251417000015 ], [ -123.673656083999944, 48.814521276000022 ], [ -123.674064699, 48.814518887000119 ], [ -123.67406108199998, 48.814249028000084 ], [ -123.67855581399999, 48.81422265800007 ], [ -123.678574024999975, 48.815571949000024 ], [ -123.678165402000019, 48.815574354000049 ], [ -123.678179962999963, 48.81665378600006 ], [ -123.677771331999963, 48.816656190000074 ], [ -123.677778607999983, 48.81719590600008 ], [ -123.67573542699995, 48.817207901000153 ], [ -123.67572817199999, 48.816668185 ], [ -123.675319539999975, 48.816670580000071 ], [ -123.675312289999923, 48.816130863000048 ], [ -123.674495035999968, 48.816135648000092 ], [ -123.674502276999959, 48.816675365000073 ], [ -123.674910908999948, 48.816672973000074 ], [ -123.674925399999964, 48.817752406000096 ], [ -123.673699476999957, 48.817759578000057 ], [ -123.673703094999937, 48.818029435000042 ], [ -123.672885806999929, 48.818034209000075 ], [ -123.672886802000022, 48.81810844400006 ], [ -123.673524015999973, 48.818122323000026 ], [ -123.67345301099999, 48.819552984000012 ], [ -123.672903905999974, 48.8196297860001 ], [ -123.672821294999935, 48.819462844000043 ], [ -123.672662797999962, 48.819142387000042 ], [ -123.672430708999968, 48.818392204000162 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142672250", "BldgCostT": "95240000", "sL_LossRatio": "0.756938492738473", "sL_AssetLoss": "1369822", "sL_BldgLoss": "1036871", "sL_StrLoss": "533731", "sL_NStrLoss": "503140", "sL_ContLoss": "332951", "geom_point": "0101000020E6100000E0CD64490AEC5EC091E723BE4D664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.677906401999934, 48.80794939599999 ], [ -123.677250799999939, 48.807868484000032 ], [ -123.675522293999933, 48.807894914000038 ], [ -123.674969313999924, 48.807964801 ], [ -123.674023300999977, 48.808227198000054 ], [ -123.671580424999945, 48.808287498000034 ], [ -123.671981509999924, 48.807605991000088 ], [ -123.672297978999936, 48.807217900000111 ], [ -123.672958996999967, 48.806407209000042 ], [ -123.673236733999929, 48.806171554000123 ], [ -123.673437387999982, 48.806001308000084 ], [ -123.674208564999958, 48.805370897000067 ], [ -123.674722413999916, 48.804950811000026 ], [ -123.674871910999926, 48.804828601000089 ], [ -123.675397908999969, 48.804313781000097 ], [ -123.675801160999967, 48.80380408500011 ], [ -123.676123294999968, 48.80339689500007 ], [ -123.677600914999957, 48.801981897000054 ], [ -123.67797493899991, 48.801671519000095 ], [ -123.678397797999935, 48.801320602000047 ], [ -123.679705672999916, 48.800437773000105 ], [ -123.679981779999963, 48.800251405000076 ], [ -123.680244439999939, 48.800074102000053 ], [ -123.68033869199995, 48.80001046600006 ], [ -123.680449003999982, 48.799935999000112 ], [ -123.681913485999971, 48.799248703000067 ], [ -123.68406522, 48.797886992000024 ], [ -123.684293348999944, 48.79773457200011 ], [ -123.68460775699999, 48.797524517000085 ], [ -123.684986301999942, 48.797271608000116 ], [ -123.684978927999964, 48.79695621900008 ], [ -123.684973885000019, 48.796740309000015 ], [ -123.684936102999984, 48.795119489000044 ], [ -123.684918020999973, 48.794500627000033 ], [ -123.684907256999921, 48.794131902000068 ], [ -123.684879, 48.793164614000098 ], [ -123.686693818999942, 48.793168793000056 ], [ -123.68686291299997, 48.793132004000064 ], [ -123.687061207999974, 48.793024486000022 ], [ -123.688080894999956, 48.792335614000081 ], [ -123.688259291999927, 48.792247510000053 ], [ -123.688474406999944, 48.792212612000107 ], [ -123.690551377999924, 48.792222396000085 ], [ -123.690974703999956, 48.792184605000045 ], [ -123.693348981999975, 48.792201064000075 ], [ -123.693782862999939, 48.792033576000051 ], [ -123.693949914999948, 48.791695471000068 ], [ -123.694009336999954, 48.791575283000093 ], [ -123.694268981999969, 48.791263881000127 ], [ -123.69547857500001, 48.790641617000084 ], [ -123.696662883999934, 48.789600225000108 ], [ -123.696792203999962, 48.789437542000123 ], [ -123.696968499999969, 48.789326002000074 ], [ -123.69708338099997, 48.789283105000074 ], [ -123.697416189999927, 48.789281093000035 ], [ -123.697438629999937, 48.79090024200012 ], [ -123.69662179, 48.790905182000046 ], [ -123.696629261999988, 48.79144489900002 ], [ -123.695403985999974, 48.79145229800006 ], [ -123.695411446, 48.791992015000048 ], [ -123.695003014999884, 48.791994477000102 ], [ -123.695004082999958, 48.79207180500007 ], [ -123.700121075999931, 48.792182151000077 ], [ -123.700088575999942, 48.792845 ], [ -123.702386240999971, 48.792894470000121 ], [ -123.702459513999941, 48.793108497000041 ], [ -123.702682206999896, 48.793377600000063 ], [ -123.702464394999964, 48.79336908800007 ], [ -123.702197206999983, 48.793757903000035 ], [ -123.702503106999984, 48.794313308000035 ], [ -123.702807414999967, 48.79559176100004 ], [ -123.702748390999929, 48.796796805000042 ], [ -123.70258630799999, 48.797227309000014 ], [ -123.702458816999936, 48.797415516000086 ], [ -123.699672727999925, 48.797355532000097 ], [ -123.699631333999946, 48.798199462000042 ], [ -123.699562607999965, 48.798197981000087 ], [ -123.699492473999939, 48.79962774100003 ], [ -123.694325490999972, 48.799524718000065 ], [ -123.691861914999905, 48.799518295000077 ], [ -123.691668725999975, 48.799517765000139 ], [ -123.685043507999964, 48.799499597000064 ], [ -123.68505342499999, 48.800005240000139 ], [ -123.685054670999989, 48.800068191000065 ], [ -123.685074084999897, 48.801056489000132 ], [ -123.685118621999933, 48.80327042000004 ], [ -123.685136289999889, 48.80414870800012 ], [ -123.685149016999958, 48.804781612000085 ], [ -123.685169085999988, 48.805780078000105 ], [ -123.685181379999975, 48.806391638 ], [ -123.685222893999935, 48.808456089000096 ], [ -123.684373706999978, 48.80843770700011 ], [ -123.683879118999954, 48.808449730000106 ], [ -123.682544728999972, 48.808482154000011 ], [ -123.680476598999959, 48.808532409000051 ], [ -123.679940994999981, 48.808472091000091 ], [ -123.679475294999961, 48.80840069700011 ], [ -123.678780670999942, 48.808200904000074 ], [ -123.677906401999934, 48.80794939599999 ] ], [ [ -123.679302573999948, 48.802629666000037 ], [ -123.679303377999972, 48.80261341500006 ], [ -123.679216289999943, 48.802613928 ], [ -123.679216477999958, 48.802627795000092 ], [ -123.679302573999948, 48.802629666000037 ] ], [ [ -123.679824316999941, 48.801776147000098 ], [ -123.679837571999911, 48.80150824400009 ], [ -123.679429681999977, 48.801499381000063 ], [ -123.679454727999911, 48.800993241000135 ], [ -123.679194426999985, 48.800994775000028 ], [ -123.679201712999912, 48.801534494000052 ], [ -123.679610221999923, 48.801532086000073 ], [ -123.679613456999945, 48.801771565000088 ], [ -123.679824316999941, 48.801776147000098 ] ], [ [ -123.694616631999935, 48.793528709000086 ], [ -123.694625604999956, 48.79334615700003 ], [ -123.69420477099996, 48.793348693000077 ], [ -123.694197323999973, 48.792808976000053 ], [ -123.692563577999962, 48.792818804000063 ], [ -123.692571007999959, 48.793358520000041 ], [ -123.692162565999951, 48.793360975000098 ], [ -123.692163458999914, 48.793425882000165 ], [ -123.693114713999961, 48.793446439000085 ], [ -123.693104125999966, 48.793661695000068 ], [ -123.693358147999945, 48.793667183000167 ], [ -123.693365544999921, 48.793516763000078 ], [ -123.694197972999959, 48.793534744000063 ], [ -123.694198712999977, 48.793519685000057 ], [ -123.694616631999935, 48.793528709000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "724895916", "BldgCostT": "464415249", "sL_LossRatio": "0.72919481604602", "sL_AssetLoss": "5692103", "sL_BldgLoss": "4150652", "sL_StrLoss": "1712546", "sL_NStrLoss": "2438106", "sL_ContLoss": "1541451", "geom_point": "0101000020E6100000FC80155412ED5EC0FE94A5CE8A644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.707541692999925, 48.791699795000042 ], [ -123.707608395999969, 48.790334978000018 ], [ -123.707080377999915, 48.790323639000064 ], [ -123.707097456999975, 48.789974255000075 ], [ -123.706789086999947, 48.789967632000085 ], [ -123.706809108999892, 48.789558091000075 ], [ -123.706498801999928, 48.789551426000074 ], [ -123.70651437099994, 48.789232998000109 ], [ -123.706292014, 48.789228221000052 ], [ -123.706305675999914, 48.78894881300009 ], [ -123.706175626999979, 48.788946019000029 ], [ -123.706267449999956, 48.787068145000063 ], [ -123.705962449999987, 48.787070013000097 ], [ -123.70596623699997, 48.787339871000093 ], [ -123.705149453999951, 48.787344871000087 ], [ -123.705160797999937, 48.788154446000071 ], [ -123.70393560499997, 48.788161936000037 ], [ -123.703928054999963, 48.787622219000077 ], [ -123.699844116999941, 48.787647090000078 ], [ -123.699840363999925, 48.787377230000097 ], [ -123.698714277999912, 48.787384063000061 ], [ -123.69871584699996, 48.786508413000099 ], [ -123.698757391999948, 48.785935484000035 ], [ -123.698833607999973, 48.784884805000097 ], [ -123.697798385999988, 48.784889967000119 ], [ -123.69628818699999, 48.784897501000074 ], [ -123.69394729699999, 48.784901003000151 ], [ -123.693931680999953, 48.784111299000067 ], [ -123.696153680999956, 48.784104837000058 ], [ -123.696398726999945, 48.784104119000048 ], [ -123.698824612999985, 48.784097006000088 ], [ -123.698795803999985, 48.782689703000109 ], [ -123.693935507999981, 48.782706480000037 ], [ -123.693940175999941, 48.781283691000112 ], [ -123.698777901999932, 48.781252893000058 ], [ -123.698787420999921, 48.781303933000032 ], [ -123.69884470099997, 48.781610314000041 ], [ -123.699079414999986, 48.782174005000059 ], [ -123.699206262999923, 48.782136237000053 ], [ -123.70318100799993, 48.782103785000068 ], [ -123.704393994999947, 48.782092009000102 ], [ -123.704456899999954, 48.782091886000089 ], [ -123.70556449499999, 48.782090192000048 ], [ -123.705581592999962, 48.780406304000074 ], [ -123.70710089899994, 48.780246103000131 ], [ -123.707363798999936, 48.780273802000053 ], [ -123.707798802999946, 48.780312837000032 ], [ -123.70798520799994, 48.780867911000058 ], [ -123.708229304, 48.781714902000033 ], [ -123.708317597999923, 48.78205020700009 ], [ -123.708443391999964, 48.782535906000156 ], [ -123.708613993999947, 48.783383904000047 ], [ -123.708899208999966, 48.784614706000127 ], [ -123.709139154999932, 48.78556885600009 ], [ -123.70936358599999, 48.78646120100008 ], [ -123.709595776999905, 48.78699509700003 ], [ -123.709908184999946, 48.787502802000105 ], [ -123.7106636499999, 48.788471077000047 ], [ -123.710993061999943, 48.788893284000089 ], [ -123.711067820999972, 48.788989130000097 ], [ -123.71135260199999, 48.789354114000083 ], [ -123.7116794249999, 48.789770557000061 ], [ -123.711998863999952, 48.790177647000107 ], [ -123.712069042999985, 48.790267045000107 ], [ -123.712124408999941, 48.790337597000097 ], [ -123.71220937699999, 48.790449506000051 ], [ -123.71231319099999, 48.790586206000121 ], [ -123.712414401999965, 48.790719545000123 ], [ -123.712687541999955, 48.791057022000054 ], [ -123.712859163999909, 48.791161629000079 ], [ -123.712810536999925, 48.791238965000126 ], [ -123.712837898999979, 48.791318853000099 ], [ -123.712930343999915, 48.791374917000041 ], [ -123.712575149999935, 48.791525047000015 ], [ -123.712270932999942, 48.791429486000069 ], [ -123.711982117999966, 48.791338774000081 ], [ -123.711473575999918, 48.791523591000058 ], [ -123.709002104, 48.791634373000065 ], [ -123.707541692999925, 48.791699795000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112614083", "BldgCostT": "73928333", "sL_LossRatio": "0.774878195446846", "sL_AssetLoss": "840301.1", "sL_BldgLoss": "651131", "sL_StrLoss": "362557", "sL_NStrLoss": "288574", "sL_ContLoss": "189170.1", "geom_point": "0101000020E6100000BD82F96D80ED5EC00CBB0FDD3F684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713373862999916, 48.820317392000071 ], [ -123.713352682999954, 48.818073012000085 ], [ -123.70666138, 48.82018399599999 ], [ -123.706564473999933, 48.820204721000039 ], [ -123.706320477999952, 48.820256897000029 ], [ -123.705851045999978, 48.820363116000102 ], [ -123.705756509999958, 48.820384505000057 ], [ -123.703716396999965, 48.820596604000038 ], [ -123.702954681999969, 48.82073249700003 ], [ -123.702441509999957, 48.820852093000049 ], [ -123.700516434999955, 48.821489898 ], [ -123.700173488, 48.821603513000134 ], [ -123.700605858999921, 48.821388337000073 ], [ -123.701348759999973, 48.821018599000148 ], [ -123.702039304, 48.820674904000057 ], [ -123.703000686999957, 48.820406412000111 ], [ -123.703182014999953, 48.82031560300004 ], [ -123.703498600999978, 48.820100788000019 ], [ -123.703811118, 48.819274003000025 ], [ -123.703943205999948, 48.819135045000095 ], [ -123.703968887999935, 48.819108004000071 ], [ -123.704219896999987, 48.818982716000079 ], [ -123.704999901999926, 48.818916604000101 ], [ -123.703919741999968, 48.81770937400011 ], [ -123.702558518, 48.816187911000029 ], [ -123.702332902999927, 48.816017214000055 ], [ -123.702307566999949, 48.816008076000074 ], [ -123.702088305999922, 48.815928992000053 ], [ -123.70182129199999, 48.815909792000049 ], [ -123.701614526999933, 48.815966598000081 ], [ -123.701466752999977, 48.816147441000091 ], [ -123.701453046, 48.815165117000092 ], [ -123.701861662999974, 48.815162630000046 ], [ -123.70185544899999, 48.814717459000093 ], [ -123.701635516999886, 48.814712728000067 ], [ -123.701653090999955, 48.814354260000044 ], [ -123.70120257799999, 48.814357002000058 ], [ -123.701121291999982, 48.816014672000072 ], [ -123.700928717999929, 48.816010528000099 ], [ -123.700888327999905, 48.816834093000075 ], [ -123.70076287699996, 48.816937700000018 ], [ -123.70061350499995, 48.816960604 ], [ -123.700444501999968, 48.816940703000107 ], [ -123.699421886999957, 48.816262794000046 ], [ -123.699237688999943, 48.816140695000094 ], [ -123.699212696999908, 48.815985206000093 ], [ -123.699210904999958, 48.814276686 ], [ -123.699274788999944, 48.81416629299999 ], [ -123.699320152999974, 48.814132789000062 ], [ -123.699510492999934, 48.813992112000044 ], [ -123.70051461099996, 48.813625294000076 ], [ -123.70080509899995, 48.813470298000091 ], [ -123.701015493999947, 48.813312597000035 ], [ -123.70142351699999, 48.812898799000045 ], [ -123.701557417999979, 48.812801590000106 ], [ -123.701772886999933, 48.81270710400004 ], [ -123.70226890399999, 48.81260608500002 ], [ -123.702926100999917, 48.812572404000043 ], [ -123.703267911999944, 48.81245360500008 ], [ -123.703757752999977, 48.812182065000094 ], [ -123.703806212999922, 48.812155193000109 ], [ -123.704630199999954, 48.811650117000049 ], [ -123.704801710999988, 48.81154499000008 ], [ -123.704806120999962, 48.811536461000067 ], [ -123.705455180999977, 48.810282094000044 ], [ -123.705652396999966, 48.809810600000141 ], [ -123.705810708999977, 48.809631986000106 ], [ -123.706243683, 48.809343887000153 ], [ -123.706507193999983, 48.809240512000017 ], [ -123.707104687999944, 48.809092101000033 ], [ -123.70847957099997, 48.808862915000091 ], [ -123.709241000999938, 48.808736017000022 ], [ -123.709628586999941, 48.808653313 ], [ -123.709930007999958, 48.808553402000058 ], [ -123.710460410999985, 48.808275600000101 ], [ -123.711375398999948, 48.807444501000099 ], [ -123.711815198999943, 48.80712778700007 ], [ -123.712220292999959, 48.806908510000106 ], [ -123.71248649399999, 48.806831294000098 ], [ -123.712773700999932, 48.806798691000047 ], [ -123.713336905999981, 48.806824189000103 ], [ -123.713479901999946, 48.806596592000083 ], [ -123.714610616999892, 48.805397702000057 ], [ -123.71555920400003, 48.804391893000094 ], [ -123.715772596999926, 48.804059502 ], [ -123.715805174999943, 48.80386469899999 ], [ -123.715809647999961, 48.803695331000057 ], [ -123.715824564999963, 48.803133369000051 ], [ -123.716038081999969, 48.803132537000046 ], [ -123.716250342999913, 48.803241583000016 ], [ -123.716377347999952, 48.80351012900006 ], [ -123.716344680999924, 48.804320452000098 ], [ -123.716468164, 48.805694560000063 ], [ -123.717874832999897, 48.812419784000042 ], [ -123.71797601699997, 48.813050880000056 ], [ -123.718011501999953, 48.813662583000053 ], [ -123.71801958699993, 48.816709402000079 ], [ -123.718009017999989, 48.818930242000071 ], [ -123.717987439999916, 48.823462311000064 ], [ -123.717611841999954, 48.82346419800006 ], [ -123.716399420999949, 48.823473342000078 ], [ -123.715241440999961, 48.823482058000074 ], [ -123.71340373699995, 48.823495868000059 ], [ -123.713391229999971, 48.822161393000108 ], [ -123.713379949999975, 48.820965061000017 ], [ -123.713373862999916, 48.820317392000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14037667", "BldgCostT": "9471667", "sL_LossRatio": "0.750652653481942", "sL_AssetLoss": "103807", "sL_BldgLoss": "77923", "sL_StrLoss": "39668", "sL_NStrLoss": "38255", "sL_ContLoss": "25884", "geom_point": "0101000020E6100000593508733BEC5EC0E402A7A9AB694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.688895381999927, 48.827567696000088 ], [ -123.688569198, 48.827120017000077 ], [ -123.688506003000015, 48.827062535000088 ], [ -123.687942293999939, 48.826549665000101 ], [ -123.687655118999899, 48.826288407000092 ], [ -123.687492404999944, 48.826084816000119 ], [ -123.687459723999964, 48.82601301400004 ], [ -123.687363394999977, 48.825801495000064 ], [ -123.68733162699999, 48.825731704000141 ], [ -123.68733288699994, 48.825620820000061 ], [ -123.687335307999945, 48.825414244000079 ], [ -123.687340904999971, 48.824937556000116 ], [ -123.68734737799997, 48.824379767000032 ], [ -123.687349356999931, 48.824211769000087 ], [ -123.687462069, 48.82421421 ], [ -123.687473701999949, 48.823978427000014 ], [ -123.687316718999966, 48.823975030000085 ], [ -123.687088790999951, 48.823096194000058 ], [ -123.686976289999947, 48.822868397000086 ], [ -123.686960875999929, 48.822710396000041 ], [ -123.686994858999967, 48.822635455000082 ], [ -123.687052595999987, 48.822507900000048 ], [ -123.687370401999942, 48.822187599000095 ], [ -123.687550110999936, 48.821743689000087 ], [ -123.687572812999932, 48.8216143880001 ], [ -123.688605116999938, 48.821610013000097 ], [ -123.688576365999893, 48.822193038000066 ], [ -123.689093861999979, 48.822204232000033 ], [ -123.689123265999982, 48.821607814000131 ], [ -123.68967062599998, 48.821605487000085 ], [ -123.690528898999929, 48.821601825000059 ], [ -123.692408777999958, 48.821593825000015 ], [ -123.692545005999932, 48.821593245000088 ], [ -123.694566097999939, 48.821584566000077 ], [ -123.694395829999976, 48.825046110000116 ], [ -123.69286474099999, 48.825013061000071 ], [ -123.692821615999961, 48.825889147000119 ], [ -123.691143109, 48.825852891000146 ], [ -123.691131035999916, 48.826097981000053 ], [ -123.691228136999939, 48.826100080000046 ], [ -123.691189983999919, 48.826874575000026 ], [ -123.691560170999978, 48.826882573000034 ], [ -123.69153198399999, 48.827454851000063 ], [ -123.694415204, 48.827517100000122 ], [ -123.694238064999979, 48.831117596000055 ], [ -123.693770782999962, 48.831107513000049 ], [ -123.693711605, 48.832309995000045 ], [ -123.693634200999924, 48.832250794000068 ], [ -123.693515896999926, 48.832160295000115 ], [ -123.693271523999925, 48.831890391000051 ], [ -123.692697282000012, 48.831256170000131 ], [ -123.692044697999961, 48.830535409000078 ], [ -123.692035057999931, 48.830527944000103 ], [ -123.691746517999945, 48.830304390000059 ], [ -123.691721601999973, 48.830285117000095 ], [ -123.691495300999989, 48.830109794000066 ], [ -123.691369702999964, 48.830012507000035 ], [ -123.691166484999982, 48.829855100000017 ], [ -123.690939291999925, 48.829633897000065 ], [ -123.690504969999964, 48.829016926000072 ], [ -123.690293308999955, 48.82871620300007 ], [ -123.690034313999931, 48.828478096000012 ], [ -123.6898225899999, 48.828329293000159 ], [ -123.689600723999931, 48.828220905000052 ], [ -123.688895381999927, 48.827567696000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9739251", "BldgCostT": "6245001", "sL_LossRatio": "0.849734206947707", "sL_AssetLoss": "32356", "sL_BldgLoss": "27494", "sL_StrLoss": "17869", "sL_NStrLoss": "9625", "sL_ContLoss": "4862", "geom_point": "0101000020E6100000EFE8DA72C9ED5EC050C54B3F7A6C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713553299999958, 48.847924659000086 ], [ -123.713564345999913, 48.847402918000043 ], [ -123.71356461699996, 48.847390995000055 ], [ -123.713307042999986, 48.843942045000105 ], [ -123.716877155999924, 48.844018357000017 ], [ -123.716756401999987, 48.846496086000066 ], [ -123.71745238599999, 48.846510948000102 ], [ -123.717381514999929, 48.847965440000046 ], [ -123.717985653999989, 48.847978338000054 ], [ -123.717874745999922, 48.850254936000042 ], [ -123.71765872099995, 48.850300493000098 ], [ -123.717238910999981, 48.850353973000054 ], [ -123.717101191999987, 48.850371514000038 ], [ -123.716331456999967, 48.850492359000093 ], [ -123.714385384999929, 48.85079794200005 ], [ -123.713489393999978, 48.850938595000059 ], [ -123.713553299999958, 48.847924659000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88084554", "BldgCostT": "58198747", "sL_LossRatio": "0.771626489060385", "sL_AssetLoss": "652349.3", "sL_BldgLoss": "503370", "sL_StrLoss": "284996", "sL_NStrLoss": "218374", "sL_ContLoss": "148979.3", "geom_point": "0101000020E61000006C191D4E68ED5EC014D829771B6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.71534832299993, 48.843956808000037 ], [ -123.715344232999882, 48.843669604000119 ], [ -123.713283407999938, 48.843625538 ], [ -123.71322716399996, 48.842872349000039 ], [ -123.713198301999938, 48.842486 ], [ -123.71340578899999, 48.841999304000126 ], [ -123.713568374999923, 48.841734292000105 ], [ -123.713638600999928, 48.841466404000094 ], [ -123.713618070999956, 48.84102512400009 ], [ -123.713605143999985, 48.840746469000145 ], [ -123.713596142999904, 48.840552682000094 ], [ -123.713585375999955, 48.839963406000095 ], [ -123.713583079, 48.839837503000076 ], [ -123.713574712999986, 48.839378749000019 ], [ -123.713519934999908, 48.83636925900008 ], [ -123.71301112799999, 48.836377877000068 ], [ -123.712275372999954, 48.836390411000096 ], [ -123.710504478999923, 48.83642057200008 ], [ -123.70970109299995, 48.836434245000106 ], [ -123.709029747, 48.836445675000036 ], [ -123.703652407999982, 48.836537005000075 ], [ -123.702453743999953, 48.836531095000041 ], [ -123.699782420999938, 48.836517861000033 ], [ -123.699564415999959, 48.836516762000024 ], [ -123.69902671299991, 48.836514083000054 ], [ -123.698731395999985, 48.836458191000069 ], [ -123.698615405999931, 48.836381807000038 ], [ -123.698046803999929, 48.835711779000043 ], [ -123.696819192999953, 48.83471849700004 ], [ -123.696407698999948, 48.834313198000167 ], [ -123.696247296999957, 48.83422771200005 ], [ -123.695721314999943, 48.834158695000042 ], [ -123.695590918999983, 48.834099101000071 ], [ -123.695474785999949, 48.833968690000063 ], [ -123.69502666299995, 48.833205967000033 ], [ -123.695018991999959, 48.833192905000089 ], [ -123.694831789999952, 48.832988889000035 ], [ -123.694676521999924, 48.83286848900012 ], [ -123.698324182999912, 48.83294711300006 ], [ -123.698268223999932, 48.834086399000093 ], [ -123.699605005999985, 48.834115182000055 ], [ -123.69951728699999, 48.835901990000089 ], [ -123.700323376999947, 48.835919338000082 ], [ -123.700411789999947, 48.834117759 ], [ -123.702738851, 48.834167806000131 ], [ -123.702745100999948, 48.834040316000035 ], [ -123.704716959000024, 48.834082685000091 ], [ -123.704736542999939, 48.833682864000117 ], [ -123.706617741999963, 48.833723250000091 ], [ -123.706603010999956, 48.832675829000053 ], [ -123.707791893999968, 48.832668536000078 ], [ -123.707823815, 48.832015935000079 ], [ -123.709024112999913, 48.832041673000056 ], [ -123.70903157399999, 48.831889064000052 ], [ -123.709252033999988, 48.831893789000077 ], [ -123.709255664999958, 48.831819490000079 ], [ -123.708339842999919, 48.831799855000035 ], [ -123.708428125999916, 48.82999447600011 ], [ -123.705823761999952, 48.829938595000066 ], [ -123.705893244999942, 48.828519190000101 ], [ -123.704779408999954, 48.82849527200004 ], [ -123.704865622999989, 48.826734812000076 ], [ -123.699500525999923, 48.826619438000144 ], [ -123.699677241999922, 48.823018907000069 ], [ -123.705113343000022, 48.823135807000057 ], [ -123.705027145999949, 48.824896277000029 ], [ -123.705877662999953, 48.824914541000055 ], [ -123.705882394999918, 48.824817865000014 ], [ -123.706302513999972, 48.824826886000046 ], [ -123.706420975999933, 48.822406084000065 ], [ -123.706250628999953, 48.822402428000117 ], [ -123.706272704999947, 48.821951265000074 ], [ -123.705995503999958, 48.821945314000054 ], [ -123.705954361999915, 48.822785934000088 ], [ -123.700518298999953, 48.822669077000086 ], [ -123.700554738999941, 48.821926281000088 ], [ -123.6991741, 48.821896558000105 ], [ -123.699186420999979, 48.821893673000069 ], [ -123.699580195999914, 48.821801507000082 ], [ -123.699381806999966, 48.818523019000096 ], [ -123.699357864999953, 48.818127164000053 ], [ -123.699246346999971, 48.816283735000134 ], [ -123.699237688999943, 48.816140695000094 ], [ -123.699421886999957, 48.816262794000046 ], [ -123.700444501999968, 48.816940703000107 ], [ -123.70061350499995, 48.816960604 ], [ -123.70076287699996, 48.816937700000018 ], [ -123.700888327999905, 48.816834093000075 ], [ -123.700862389999955, 48.817362939000077 ], [ -123.701294940999972, 48.817372247000044 ], [ -123.701330933999941, 48.816638229000056 ], [ -123.701470285999932, 48.816641228000066 ], [ -123.701476505999963, 48.816514373000089 ], [ -123.701471872999932, 48.816514401000134 ], [ -123.701466752999977, 48.816147441000091 ], [ -123.701614526999933, 48.815966598000081 ], [ -123.70182129199999, 48.815909792000049 ], [ -123.702088305999922, 48.815928992000053 ], [ -123.702307566999949, 48.816008076000074 ], [ -123.702332902999927, 48.816017214000055 ], [ -123.702558518, 48.816187911000029 ], [ -123.703919741999968, 48.81770937400011 ], [ -123.704999901999926, 48.818916604000101 ], [ -123.704219896999987, 48.818982716000079 ], [ -123.703968887999935, 48.819108004000071 ], [ -123.703943205999948, 48.819135045000095 ], [ -123.703811118, 48.819274003000025 ], [ -123.703498600999978, 48.820100788000019 ], [ -123.703182014999953, 48.82031560300004 ], [ -123.703000686999957, 48.820406412000111 ], [ -123.702039304, 48.820674904000057 ], [ -123.701348759999973, 48.821018599000148 ], [ -123.700605858999921, 48.821388337000073 ], [ -123.700173488, 48.821603513000134 ], [ -123.700516434999955, 48.821489898 ], [ -123.702441509999957, 48.820852093000049 ], [ -123.702954681999969, 48.82073249700003 ], [ -123.703716396999965, 48.820596604000038 ], [ -123.705756509999958, 48.820384505000057 ], [ -123.705851045999978, 48.820363116000102 ], [ -123.706320477999952, 48.820256897000029 ], [ -123.706564473999933, 48.820204721000039 ], [ -123.70666138, 48.82018399599999 ], [ -123.713352682999954, 48.818073012000085 ], [ -123.713373862999916, 48.820317392000071 ], [ -123.713379949999975, 48.820965061000017 ], [ -123.713391229999971, 48.822161393000108 ], [ -123.71340373699995, 48.823495868000059 ], [ -123.715241440999961, 48.823482058000074 ], [ -123.716399420999949, 48.823473342000078 ], [ -123.717611841999954, 48.82346419800006 ], [ -123.717987439999916, 48.823462311000064 ], [ -123.717989379999921, 48.824094095000078 ], [ -123.71799310599999, 48.825290526000053 ], [ -123.717994559999951, 48.825758296000089 ], [ -123.717996015999944, 48.826226124000065 ], [ -123.717999414999909, 48.827323609000111 ], [ -123.71800019699999, 48.827575476000085 ], [ -123.71800157499996, 48.828017452000054 ], [ -123.717982698999919, 48.828017570000071 ], [ -123.717990408999924, 48.828557280000041 ], [ -123.718003255999932, 48.82855720000002 ], [ -123.718004374999921, 48.828915849000019 ], [ -123.718005146999957, 48.829161984000073 ], [ -123.718004313999984, 48.82936683200009 ], [ -123.717184513999982, 48.829371936000044 ], [ -123.717180661999947, 48.829102080000069 ], [ -123.715369495999965, 48.829113333000095 ], [ -123.71535880199994, 48.829332682000128 ], [ -123.715165034, 48.829328539000123 ], [ -123.715102925999986, 48.830602398000082 ], [ -123.715517204999927, 48.8306112550001 ], [ -123.715498172, 48.831001689000033 ], [ -123.71557264399999, 48.831001227000115 ], [ -123.715573631999945, 48.831070630000113 ], [ -123.716719788999939, 48.831095125000097 ], [ -123.71667209899999, 48.832073914000063 ], [ -123.716814278999891, 48.832073030000032 ], [ -123.716810427, 48.83180317500009 ], [ -123.717219179999944, 48.831800633000093 ], [ -123.717192215999944, 48.829911646000049 ], [ -123.718002120999927, 48.829906604000136 ], [ -123.717997046999926, 48.831155785000071 ], [ -123.717991919999932, 48.832423555000076 ], [ -123.717949678999943, 48.835945815000073 ], [ -123.71779091399992, 48.836159590000136 ], [ -123.717655952999934, 48.836248594 ], [ -123.717500710999929, 48.836306554000018 ], [ -123.717943266999924, 48.836300683000076 ], [ -123.717947580999976, 48.836631480000079 ], [ -123.717963111999921, 48.838379858000074 ], [ -123.71797252099995, 48.839438181000055 ], [ -123.717431248999958, 48.839426623000094 ], [ -123.717276866999953, 48.842595431000106 ], [ -123.717373303999963, 48.842594831000135 ], [ -123.71738872, 48.843674250000099 ], [ -123.716979872999929, 48.843676793000022 ], [ -123.716983726, 48.84394664800007 ], [ -123.71534832299993, 48.843956808000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "0.786054677702533", "sL_AssetLoss": "23922", "sL_BldgLoss": "18804", "sL_StrLoss": "9440", "sL_NStrLoss": "9364", "sL_ContLoss": "5118", "geom_point": "0101000020E61000004FACF82B09EE5EC03507AD2C766C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.718294435999965, 48.850149277000106 ], [ -123.718408535999956, 48.847806695000067 ], [ -123.717694632999951, 48.84779145600001 ], [ -123.717870032999954, 48.84419101800006 ], [ -123.717970133999984, 48.84419315600006 ], [ -123.71799505499996, 48.84368151900005 ], [ -123.718245567999986, 48.843686867 ], [ -123.718543269999941, 48.844464431000098 ], [ -123.718576, 48.844521336000057 ], [ -123.718961500999953, 48.845191707000083 ], [ -123.719106685999989, 48.845444177000047 ], [ -123.719918557999975, 48.846409408000056 ], [ -123.722268543999959, 48.84871931 ], [ -123.72246572499995, 48.849002826000053 ], [ -123.721810558999962, 48.849078213000098 ], [ -123.720811870999981, 48.848553446000018 ], [ -123.720783510999951, 48.848549787000103 ], [ -123.720650099999915, 48.848650493000051 ], [ -123.719879185999972, 48.849232393000143 ], [ -123.718790418999944, 48.849926396000065 ], [ -123.71850141099992, 48.850076096000116 ], [ -123.718294435999965, 48.850149277000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94577583", "BldgCostT": "63258333", "sL_LossRatio": "0.782012311397108", "sL_AssetLoss": "757769.4", "sL_BldgLoss": "592585", "sL_StrLoss": "326862", "sL_NStrLoss": "265723", "sL_ContLoss": "165184.4", "geom_point": "0101000020E6100000564004C9B9EC5EC03F8BB52A4F6C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.700175816999945, 48.874105045000064 ], [ -123.700132199, 48.872574433000082 ], [ -123.700184177999958, 48.872501357000054 ], [ -123.700217001999988, 48.872455212000077 ], [ -123.700455696999967, 48.872004488000059 ], [ -123.700553219999975, 48.871710097000118 ], [ -123.700570586999973, 48.870835417000066 ], [ -123.70058557399993, 48.870079993000111 ], [ -123.700569441999903, 48.86990844400011 ], [ -123.700555056, 48.869756021000057 ], [ -123.700453128999968, 48.868674204000079 ], [ -123.700549350999907, 48.867722761000024 ], [ -123.700618311999918, 48.867041119000049 ], [ -123.7006462, 48.866765502000121 ], [ -123.700847126999989, 48.86583297400005 ], [ -123.700864466000013, 48.865752375000078 ], [ -123.700919599999978, 48.865496518000043 ], [ -123.701172194999984, 48.86512170100012 ], [ -123.701706099999967, 48.864565494000075 ], [ -123.702253472999971, 48.864315897000083 ], [ -123.702320167999986, 48.864274824000084 ], [ -123.702670483999924, 48.86405910600007 ], [ -123.702824184999955, 48.863839003000074 ], [ -123.702825813999937, 48.863823896000113 ], [ -123.70288628499999, 48.863267186000094 ], [ -123.703100298999956, 48.862930308000038 ], [ -123.703174595999911, 48.862849231000041 ], [ -123.703421113999937, 48.862580407000074 ], [ -123.703732777999974, 48.862344414000049 ], [ -123.704229890999926, 48.861967994000075 ], [ -123.704632093999976, 48.861625207000024 ], [ -123.705197524999946, 48.861009957000057 ], [ -123.70550509, 48.860675301000072 ], [ -123.705761803999948, 48.860437585000064 ], [ -123.706172594999941, 48.860251788000035 ], [ -123.706760802999938, 48.860139104000083 ], [ -123.707548001999953, 48.85977308500005 ], [ -123.708096891999944, 48.859268495000038 ], [ -123.708543779999971, 48.858343703000088 ], [ -123.709044598999967, 48.857707500000075 ], [ -123.70927140699996, 48.857386194000107 ], [ -123.709376504999966, 48.857129900000139 ], [ -123.70941330699999, 48.856850406000056 ], [ -123.709388788999902, 48.856598495000149 ], [ -123.709203294999952, 48.856132315000139 ], [ -123.708905916999953, 48.855477205000113 ], [ -123.708664998999936, 48.853556398000066 ], [ -123.708461191999973, 48.853491712000015 ], [ -123.708098179999979, 48.853177587000104 ], [ -123.707856007999951, 48.852645308000064 ], [ -123.707483092999937, 48.8521155970001 ], [ -123.707382246999913, 48.852016258000063 ], [ -123.706928610999952, 48.851569401000084 ], [ -123.706434911999949, 48.851225401000072 ], [ -123.705038724999923, 48.850743105000049 ], [ -123.70497337399999, 48.850727509000095 ], [ -123.704744113999979, 48.850672800000048 ], [ -123.704369488999959, 48.850649408000052 ], [ -123.703328510999967, 48.850780307000072 ], [ -123.703226125999961, 48.850804564000079 ], [ -123.703060001, 48.850843897000061 ], [ -123.70281603799998, 48.850820512000077 ], [ -123.702793, 48.850818291000117 ], [ -123.701778803999929, 48.850403710000094 ], [ -123.701073776999976, 48.849985700000055 ], [ -123.700740107999977, 48.849850582000023 ], [ -123.700379111, 48.849780730000127 ], [ -123.700342285999952, 48.849773592000055 ], [ -123.699805397999967, 48.849717472000037 ], [ -123.699517592999882, 48.84968740000015 ], [ -123.699344162999964, 48.849624210000108 ], [ -123.699286188999949, 48.849603109000114 ], [ -123.699026104999945, 48.849439790000076 ], [ -123.698485303999945, 48.848864989000148 ], [ -123.69832119599999, 48.848741600000047 ], [ -123.695707686999981, 48.847689698000046 ], [ -123.695351903999978, 48.847396389000068 ], [ -123.695003908999979, 48.847222186000124 ], [ -123.694362109999929, 48.847041610000133 ], [ -123.694102280999928, 48.846927891000135 ], [ -123.69327401799994, 48.846279295000059 ], [ -123.692141319999962, 48.845234003 ], [ -123.691807492999985, 48.845062563000063 ], [ -123.691210707, 48.844756087000135 ], [ -123.690233519999978, 48.843539306000046 ], [ -123.690212397999971, 48.843361311000102 ], [ -123.690281218999971, 48.843042905000054 ], [ -123.690246291999955, 48.842866498000028 ], [ -123.689695209999968, 48.842091393000061 ], [ -123.689115901999969, 48.841639097000083 ], [ -123.688128195999951, 48.840473413000062 ], [ -123.687955010999985, 48.84006688700002 ], [ -123.68778947899996, 48.839366793000124 ], [ -123.687646283999968, 48.839014996000095 ], [ -123.687427715999945, 48.83875530300007 ], [ -123.687159509999915, 48.838537694000095 ], [ -123.686816778, 48.838393300000099 ], [ -123.685798506999902, 48.838042415000167 ], [ -123.685613112999945, 48.837940208000042 ], [ -123.685110229999978, 48.837457107000041 ], [ -123.684815506999925, 48.837279499000033 ], [ -123.683396809, 48.836523306000103 ], [ -123.682806793999973, 48.836208794000093 ], [ -123.681341792999888, 48.835589509000037 ], [ -123.681086078999954, 48.835450408000042 ], [ -123.680706325999893, 48.835243875000046 ], [ -123.67990270699994, 48.834806786000108 ], [ -123.67968702899999, 48.83475848900013 ], [ -123.678637611999989, 48.83452339700009 ], [ -123.678210411999956, 48.83428210400006 ], [ -123.678040866999979, 48.834186351000078 ], [ -123.677924086999951, 48.834120397000099 ], [ -123.677847341999936, 48.834056063000148 ], [ -123.677328292999931, 48.833620910000015 ], [ -123.677089201999962, 48.833503083000032 ], [ -123.676753510999973, 48.833412904000049 ], [ -123.674502028999953, 48.833063935000041 ], [ -123.672992700999885, 48.832830013 ], [ -123.67272131, 48.832815087000085 ], [ -123.670894689999955, 48.832823087000037 ], [ -123.670498407999958, 48.832775696000041 ], [ -123.669513113999955, 48.832504602 ], [ -123.668762008999934, 48.832339503000078 ], [ -123.667949404999931, 48.832317293000045 ], [ -123.667581104999954, 48.832280399000084 ], [ -123.667075502999964, 48.832185588000087 ], [ -123.666133511999988, 48.831919892000101 ], [ -123.665680476999938, 48.831835200000086 ], [ -123.664876030999935, 48.83176002400004 ], [ -123.664920579999929, 48.830865976000048 ], [ -123.669895197999921, 48.83097456200003 ], [ -123.669900281999944, 48.830872299000106 ], [ -123.672732482999933, 48.830934016000057 ], [ -123.672868414999982, 48.828196664000103 ], [ -123.67386761299997, 48.828218420000034 ], [ -123.673915524999941, 48.827253087000017 ], [ -123.679352052999945, 48.827371296000109 ], [ -123.67932232099993, 48.827971745000106 ], [ -123.679784673999947, 48.827981786000123 ], [ -123.6796064099999, 48.831582255000065 ], [ -123.678144749999959, 48.831550507000038 ], [ -123.678126671, 48.831915390000027 ], [ -123.675623607999938, 48.831860976000044 ], [ -123.675621437, 48.831904743000038 ], [ -123.678703054, 48.831971726000106 ], [ -123.678690248999956, 48.832230222000078 ], [ -123.679495240999941, 48.832247705000086 ], [ -123.679477275999901, 48.832610504000066 ], [ -123.68240925799995, 48.83267412900004 ], [ -123.682375493999984, 48.833356826000077 ], [ -123.684209533999962, 48.833396585000052 ], [ -123.684201886999944, 48.833551346000029 ], [ -123.684955117999948, 48.833567666000086 ], [ -123.68493671399996, 48.833940182000084 ], [ -123.686231993999968, 48.833968233000064 ], [ -123.686143897999926, 48.835752334000084 ], [ -123.687025470999956, 48.835771418000029 ], [ -123.686954090999933, 48.837217447000064 ], [ -123.689395673999954, 48.837270260000039 ], [ -123.689242150999959, 48.840383313000089 ], [ -123.691689934999928, 48.840436203000067 ], [ -123.691728122999947, 48.839661062000069 ], [ -123.692865147999953, 48.839685611000043 ], [ -123.692867079999985, 48.839646390000048 ], [ -123.693829326999918, 48.839667155 ], [ -123.693887702999973, 48.838481111000114 ], [ -123.69548878199997, 48.838515645000051 ], [ -123.695532257, 48.837631717000107 ], [ -123.693990462999949, 48.837598463000134 ], [ -123.694046530999927, 48.836459184000077 ], [ -123.692709685999915, 48.836430333000067 ], [ -123.692821779999946, 48.834153772000036 ], [ -123.688182658999935, 48.834053520000069 ], [ -123.688311991999953, 48.831431836000071 ], [ -123.686979172999912, 48.831402996000079 ], [ -123.687029223999957, 48.830388925000115 ], [ -123.685945897, 48.830365471000107 ], [ -123.685975051999904, 48.829775025000068 ], [ -123.684752388999925, 48.829748542000054 ], [ -123.684752793999905, 48.829740351000076 ], [ -123.683255635999956, 48.829707902000052 ], [ -123.683284761, 48.829118724000125 ], [ -123.682877557999987, 48.829109896000062 ], [ -123.683055560999961, 48.825509407 ], [ -123.684227798999927, 48.825534819000048 ], [ -123.684280972999943, 48.82445863300007 ], [ -123.685768172999957, 48.824490855000128 ], [ -123.685783626999978, 48.824177869000053 ], [ -123.687349356999931, 48.824211769000087 ], [ -123.68734737799997, 48.824379767000032 ], [ -123.687340904999971, 48.824937556000116 ], [ -123.687335307999945, 48.825414244000079 ], [ -123.68733288699994, 48.825620820000061 ], [ -123.68733162699999, 48.825731704000141 ], [ -123.687363394999977, 48.825801495000064 ], [ -123.687459723999964, 48.82601301400004 ], [ -123.687492404999944, 48.826084816000119 ], [ -123.687655118999899, 48.826288407000092 ], [ -123.687942293999939, 48.826549665000101 ], [ -123.688506003000015, 48.827062535000088 ], [ -123.688569198, 48.827120017000077 ], [ -123.688895381999927, 48.827567696000088 ], [ -123.689600723999931, 48.828220905000052 ], [ -123.6898225899999, 48.828329293000159 ], [ -123.690034313999931, 48.828478096000012 ], [ -123.690293308999955, 48.82871620300007 ], [ -123.690504969999964, 48.829016926000072 ], [ -123.690939291999925, 48.829633897000065 ], [ -123.691166484999982, 48.829855100000017 ], [ -123.691369702999964, 48.830012507000035 ], [ -123.691495300999989, 48.830109794000066 ], [ -123.691721601999973, 48.830285117000095 ], [ -123.691746517999945, 48.830304390000059 ], [ -123.692035057999931, 48.830527944000103 ], [ -123.692044697999961, 48.830535409000078 ], [ -123.692697282000012, 48.831256170000131 ], [ -123.693271523999925, 48.831890391000051 ], [ -123.693515896999926, 48.832160295000115 ], [ -123.693634200999924, 48.832250794000068 ], [ -123.693711605, 48.832309995000045 ], [ -123.693685170999956, 48.832847099000084 ], [ -123.694676521999924, 48.83286848900012 ], [ -123.694831789999952, 48.832988889000035 ], [ -123.695018991999959, 48.833192905000089 ], [ -123.69502666299995, 48.833205967000033 ], [ -123.695474785999949, 48.833968690000063 ], [ -123.695590918999983, 48.834099101000071 ], [ -123.695721314999943, 48.834158695000042 ], [ -123.696247296999957, 48.83422771200005 ], [ -123.696407698999948, 48.834313198000167 ], [ -123.696819192999953, 48.83471849700004 ], [ -123.698046803999929, 48.835711779000043 ], [ -123.698615405999931, 48.836381807000038 ], [ -123.698731395999985, 48.836458191000069 ], [ -123.69902671299991, 48.836514083000054 ], [ -123.699564415999959, 48.836516762000024 ], [ -123.699782420999938, 48.836517861000033 ], [ -123.702453743999953, 48.836531095000041 ], [ -123.703652407999982, 48.836537005000075 ], [ -123.709029747, 48.836445675000036 ], [ -123.70970109299995, 48.836434245000106 ], [ -123.710504478999923, 48.83642057200008 ], [ -123.712275372999954, 48.836390411000096 ], [ -123.71301112799999, 48.836377877000068 ], [ -123.713519934999908, 48.83636925900008 ], [ -123.713574712999986, 48.839378749000019 ], [ -123.713583079, 48.839837503000076 ], [ -123.713585375999955, 48.839963406000095 ], [ -123.713596142999904, 48.840552682000094 ], [ -123.713605143999985, 48.840746469000145 ], [ -123.713618070999956, 48.84102512400009 ], [ -123.713638600999928, 48.841466404000094 ], [ -123.713568374999923, 48.841734292000105 ], [ -123.71340578899999, 48.841999304000126 ], [ -123.713198301999938, 48.842486 ], [ -123.71322716399996, 48.842872349000039 ], [ -123.713283407999938, 48.843625538 ], [ -123.711365949999973, 48.843584502000049 ], [ -123.711375875000016, 48.843381332000078 ], [ -123.709984151999933, 48.843351525000131 ], [ -123.7098801, 48.845480163000104 ], [ -123.711359962999964, 48.845511856 ], [ -123.711438603999923, 48.843902060000104 ], [ -123.713307042999986, 48.843942045000105 ], [ -123.71356461699996, 48.847390995000055 ], [ -123.713564345999913, 48.847402918000043 ], [ -123.713553299999958, 48.847924659000086 ], [ -123.713489393999978, 48.850938595000059 ], [ -123.714385384999929, 48.85079794200005 ], [ -123.716331456999967, 48.850492359000093 ], [ -123.717101191999987, 48.850371514000038 ], [ -123.717238910999981, 48.850353973000054 ], [ -123.71765872099995, 48.850300493000098 ], [ -123.717874745999922, 48.850254936000042 ], [ -123.71781024799999, 48.851578755000013 ], [ -123.712906187999948, 48.851473961000096 ], [ -123.712763706999979, 48.854391872000136 ], [ -123.712455542999948, 48.854385279000098 ], [ -123.7124027509999, 48.855466177000046 ], [ -123.712102946999963, 48.855459763000034 ], [ -123.712084725999915, 48.855832792000037 ], [ -123.71301021, 48.85585259100003 ], [ -123.712834392999966, 48.859452954000098 ], [ -123.712029744999967, 48.859435740000073 ], [ -123.711993512, 48.860177386000082 ], [ -123.713862855999949, 48.86021736599999 ], [ -123.713944682999937, 48.858541064000065 ], [ -123.716806070999965, 48.858602199000089 ], [ -123.71656736599999, 48.859173143000135 ], [ -123.716282307999947, 48.859713982000081 ], [ -123.715699885999967, 48.860600753000078 ], [ -123.715009617999939, 48.861483222000075 ], [ -123.714889320999958, 48.861636980000043 ], [ -123.714138956999932, 48.862596219000075 ], [ -123.713666997999894, 48.863199510000051 ], [ -123.711775935999981, 48.865616644000063 ], [ -123.711539412999983, 48.86599813300014 ], [ -123.711260862999964, 48.866626502000059 ], [ -123.711143162999974, 48.867196104000143 ], [ -123.711039493999962, 48.869500944000045 ], [ -123.711017820999984, 48.869982994000047 ], [ -123.710960383999961, 48.870184608000059 ], [ -123.708959368999956, 48.870141765000064 ], [ -123.709004120999978, 48.869227184000081 ], [ -123.708891221999949, 48.869224766000066 ], [ -123.709067377999958, 48.86562446600005 ], [ -123.709581027999917, 48.86563546700004 ], [ -123.709588166999978, 48.865489535000052 ], [ -123.708875744999915, 48.8654742760001 ], [ -123.709051888999952, 48.861873954000053 ], [ -123.709410315999918, 48.861881632000056 ], [ -123.709441208999962, 48.861250062000089 ], [ -123.709950979, 48.861260980000097 ], [ -123.709973512, 48.860800173000094 ], [ -123.710751092999928, 48.86081682300005 ], [ -123.710772011999936, 48.860388879000034 ], [ -123.710171521999911, 48.860376022000054 ], [ -123.710164648, 48.860516617000059 ], [ -123.709132133999944, 48.860494503000112 ], [ -123.709098242, 48.861187341000061 ], [ -123.708871400999968, 48.861182482000096 ], [ -123.708805007999956, 48.86253954500004 ], [ -123.707876333999977, 48.862519643000034 ], [ -123.707841707999947, 48.863227066000036 ], [ -123.70614247099995, 48.863190632000112 ], [ -123.70612306, 48.863586907000112 ], [ -123.704079085999965, 48.86354304600011 ], [ -123.704029377, 48.864556892000053 ], [ -123.704148461999949, 48.864559448000101 ], [ -123.704026860999974, 48.867039526000028 ], [ -123.707585685999931, 48.867115865000059 ], [ -123.707545254999928, 48.867941679000097 ], [ -123.70829511099997, 48.86795774900002 ], [ -123.708118885999951, 48.871558034000017 ], [ -123.706714932999944, 48.871527943000018 ], [ -123.706700045999952, 48.871831868000058 ], [ -123.704335825999948, 48.871781154000104 ], [ -123.704226196999954, 48.874016920000017 ], [ -123.704268241999955, 48.874017823000059 ], [ -123.704286515999954, 48.873645172000067 ], [ -123.705163116000023, 48.873663981000114 ], [ -123.705164081999968, 48.87364429300009 ], [ -123.705494107, 48.873651373 ], [ -123.705551430999947, 48.872481699000019 ], [ -123.706865012999984, 48.872509868000066 ], [ -123.706888303999932, 48.872034331000101 ], [ -123.709524879999933, 48.8720908210001 ], [ -123.708730003999975, 48.872855075000039 ], [ -123.708652892999964, 48.872929242000104 ], [ -123.708580241999954, 48.87299910400008 ], [ -123.70824232299999, 48.873323962000065 ], [ -123.707378568999943, 48.87427585800009 ], [ -123.707273355, 48.874391161000041 ], [ -123.707039270999985, 48.874647658000107 ], [ -123.706910825999927, 48.874788407000061 ], [ -123.706229261999965, 48.874744948000099 ], [ -123.704853817999961, 48.874658687000071 ], [ -123.704263122, 48.874622586000037 ], [ -123.702010688999977, 48.874534578000173 ], [ -123.701273787999966, 48.874480906000052 ], [ -123.700876865999973, 48.874410205000054 ], [ -123.700175816999945, 48.874105045000064 ] ], [ [ -123.701275731999914, 48.868392499000052 ], [ -123.701289986999953, 48.868102138000069 ], [ -123.701238749999959, 48.868101038000113 ], [ -123.701224493999931, 48.868391399000096 ], [ -123.701275731999914, 48.868392499000052 ] ], [ [ -123.712404146999944, 48.850780026000081 ], [ -123.712441846999951, 48.850008026000104 ], [ -123.71183768399996, 48.849995097000019 ], [ -123.711841899999968, 48.849908802000115 ], [ -123.708667475999974, 48.849840814000082 ], [ -123.70870570699999, 48.849059188000098 ], [ -123.708268006999958, 48.849049806000082 ], [ -123.708381756999955, 48.846724592000093 ], [ -123.704378907999939, 48.846638710000022 ], [ -123.704555325999976, 48.843038286000095 ], [ -123.709748013999928, 48.843149670000059 ], [ -123.709755838999953, 48.842989610000068 ], [ -123.709379811999966, 48.842981552000026 ], [ -123.709555830999989, 48.839381099000015 ], [ -123.709794991999956, 48.839386224000037 ], [ -123.709827025999928, 48.838730837000085 ], [ -123.708456726999913, 48.83870146700005 ], [ -123.708448263999941, 48.838874524000119 ], [ -123.70626112399999, 48.838827610000067 ], [ -123.704235861999948, 48.838784127000096 ], [ -123.70424501799998, 48.839437231 ], [ -123.70401692199999, 48.839438623000092 ], [ -123.703987851, 48.840031830000079 ], [ -123.699260183999911, 48.839930170000045 ], [ -123.699249843999951, 48.840140756000011 ], [ -123.700185146999985, 48.840160884000092 ], [ -123.700172262999942, 48.840423365000056 ], [ -123.701580112999949, 48.840453648000036 ], [ -123.701510270999961, 48.841877305000033 ], [ -123.701403475999896, 48.844054081000088 ], [ -123.700265701999967, 48.84402960900011 ], [ -123.700159933999913, 48.84618416600005 ], [ -123.700881281999969, 48.846199683000123 ], [ -123.700760119999984, 48.848668360000048 ], [ -123.703647431999968, 48.848730417000041 ], [ -123.70359865099999, 48.849725485000093 ], [ -123.706112602999951, 48.849779455000011 ], [ -123.706106413999962, 48.849905840000119 ], [ -123.710804141999972, 48.850006533000069 ], [ -123.710768050999917, 48.850745006000068 ], [ -123.712404146999944, 48.850780026000081 ] ], [ [ -123.695972933999954, 48.843774780000054 ], [ -123.695977864999975, 48.843674517000089 ], [ -123.694569921999971, 48.843644162000025 ], [ -123.694578491999934, 48.843470013000086 ], [ -123.693879515000035, 48.843454936000057 ], [ -123.69386134, 48.843824169000065 ], [ -123.694830504999928, 48.843845072000086 ], [ -123.694835169999962, 48.84375025000007 ], [ -123.695972933999954, 48.843774780000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27442501", "BldgCostT": "16980001", "sL_LossRatio": "0.75108609348473", "sL_AssetLoss": "154913", "sL_BldgLoss": "116353", "sL_StrLoss": "62802", "sL_NStrLoss": "53551", "sL_ContLoss": "38560", "geom_point": "0101000020E6100000F18EAE2DD7EA5EC059F70B4D44694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.664835101999984, 48.826900415000061 ], [ -123.664510787999944, 48.825709292000091 ], [ -123.66451048499998, 48.825683159000036 ], [ -123.664508197999936, 48.825476273000028 ], [ -123.664504018999963, 48.825099133000059 ], [ -123.664484158999983, 48.823308412000067 ], [ -123.664451114999935, 48.820327500000154 ], [ -123.665692997999969, 48.820411390000082 ], [ -123.667870406999953, 48.815310987000018 ], [ -123.668861856, 48.815320542 ], [ -123.670568390999961, 48.81533696500005 ], [ -123.671497822000021, 48.81534590400004 ], [ -123.671781593, 48.815280349000027 ], [ -123.672192688999957, 48.815185411000051 ], [ -123.672680287999938, 48.815144607 ], [ -123.673116301999954, 48.815157696000071 ], [ -123.673707798999928, 48.815272400000062 ], [ -123.673627115999921, 48.815734855000073 ], [ -123.673605214999967, 48.815860398000027 ], [ -123.673230286999967, 48.816752510000086 ], [ -123.67307101199998, 48.816947192000036 ], [ -123.672742786999933, 48.817174395000038 ], [ -123.67267759299996, 48.817233317000138 ], [ -123.672607493999962, 48.817296700000057 ], [ -123.67246180399998, 48.817491686000061 ], [ -123.672391690000026, 48.817698401 ], [ -123.672389906999953, 48.81785603200013 ], [ -123.672387703, 48.818052405000103 ], [ -123.672430708999968, 48.818392204000162 ], [ -123.672662797999962, 48.819142387000042 ], [ -123.672821294999935, 48.819462844000043 ], [ -123.672903905999974, 48.8196297860001 ], [ -123.67345301099999, 48.819552984000012 ], [ -123.673363068999905, 48.82136506100008 ], [ -123.674513373999929, 48.821390106000081 ], [ -123.674429257999947, 48.823085540000051 ], [ -123.675332147999939, 48.823105188000078 ], [ -123.675153559999913, 48.826705679000078 ], [ -123.669717120999977, 48.826587255000099 ], [ -123.66972061199999, 48.826517030000048 ], [ -123.668397490999951, 48.826488166000068 ], [ -123.668292994999945, 48.828588542000034 ], [ -123.668188384999965, 48.82858625900009 ], [ -123.668140141999928, 48.829555843000023 ], [ -123.66703753099992, 48.829531776000103 ], [ -123.667029605999957, 48.829690969000126 ], [ -123.663667388999912, 48.829617512 ], [ -123.66375142, 48.829450246000064 ], [ -123.664098904999946, 48.82875858900006 ], [ -123.664218100999989, 48.828634217000051 ], [ -123.664815193999942, 48.828338091000028 ], [ -123.665017493999969, 48.82815601300009 ], [ -123.665082807000019, 48.828019593000086 ], [ -123.665093794999947, 48.827799081000052 ], [ -123.665041704999965, 48.82753210100006 ], [ -123.66498891399999, 48.827370751000053 ], [ -123.664835101999984, 48.826900415000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.829892456236753", "sL_AssetLoss": "38217", "sL_BldgLoss": "31716", "sL_StrLoss": "19210", "sL_NStrLoss": "12506", "sL_ContLoss": "6501", "geom_point": "0101000020E61000002B5A2D6EABEB5EC0783183E714694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.683051077999949, 48.823882614000112 ], [ -123.68311300199997, 48.822629880000086 ], [ -123.682454630999956, 48.822615601000095 ], [ -123.682464943999946, 48.82240702600005 ], [ -123.678212092999928, 48.822314691000059 ], [ -123.678249411999957, 48.821561264000103 ], [ -123.676298167, 48.821518843 ], [ -123.676393359999963, 48.819598595000123 ], [ -123.676814420999989, 48.819677536000086 ], [ -123.676994892999943, 48.81971551500007 ], [ -123.67729040199994, 48.819777665000082 ], [ -123.677341472999942, 48.819788407000082 ], [ -123.677929589999962, 48.819922094000113 ], [ -123.678770409999942, 48.819342883000054 ], [ -123.679046729999982, 48.819078119000089 ], [ -123.679738682999968, 48.818415102000102 ], [ -123.680264814999958, 48.818000645000069 ], [ -123.681912099999963, 48.818036402000068 ], [ -123.681903469999966, 48.818210920000126 ], [ -123.683933259999932, 48.818254945000099 ], [ -123.684347690999942, 48.818602513000066 ], [ -123.68516843699993, 48.819570027000033 ], [ -123.685761801999917, 48.820269504000088 ], [ -123.686938095999921, 48.821105093000071 ], [ -123.687556899999919, 48.821439301000026 ], [ -123.687586320999955, 48.82153270200007 ], [ -123.687572812999932, 48.8216143880001 ], [ -123.687550110999936, 48.821743689000087 ], [ -123.687370401999942, 48.822187599000095 ], [ -123.687052595999987, 48.822507900000048 ], [ -123.686994858999967, 48.822635455000082 ], [ -123.686960875999929, 48.822710396000041 ], [ -123.686976289999947, 48.822868397000086 ], [ -123.687088790999951, 48.823096194000058 ], [ -123.687316718999966, 48.823975030000085 ], [ -123.683051077999949, 48.823882614000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.804998457266276", "sL_AssetLoss": "9723", "sL_BldgLoss": "7827", "sL_StrLoss": "4620", "sL_NStrLoss": "3207", "sL_ContLoss": "1896", "geom_point": "0101000020E6100000C8AF06C522EE5EC0BC0A42DCC96C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.719879185999972, 48.849232393000143 ], [ -123.720650099999915, 48.848650493000051 ], [ -123.720783510999951, 48.848549787000103 ], [ -123.720811870999981, 48.848553446000018 ], [ -123.721810558999962, 48.849078213000098 ], [ -123.72246572499995, 48.849002826000053 ], [ -123.722682637999966, 48.84930119800002 ], [ -123.722844991999978, 48.849629029000035 ], [ -123.72291676899998, 48.849932413000083 ], [ -123.722940992999938, 48.850034721000036 ], [ -123.722941056999929, 48.850061483000118 ], [ -123.722941265999935, 48.850133445000047 ], [ -123.72294213399999, 48.850412303000013 ], [ -123.72294249399998, 48.850535732 ], [ -123.722892488999946, 48.850745179000043 ], [ -123.722886010999957, 48.85077230400006 ], [ -123.718268881999961, 48.850673864000079 ], [ -123.718294435999965, 48.850149277000106 ], [ -123.71850141099992, 48.850076096000116 ], [ -123.718790418999944, 48.849926396000065 ], [ -123.719879185999972, 48.849232393000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.869973446004431", "sL_AssetLoss": "13632.6", "sL_BldgLoss": "11860", "sL_StrLoss": "7730", "sL_NStrLoss": "4130", "sL_ContLoss": "1772.6", "geom_point": "0101000020E6100000F506E3D0F0ED5EC0FF1013BB536D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.716340359999975, 48.856173708000021 ], [ -123.716337593, 48.855979798000114 ], [ -123.715156549999961, 48.855954567000033 ], [ -123.715332174999929, 48.852354180000042 ], [ -123.718548453999958, 48.852422859000114 ], [ -123.718584983999918, 48.85167285800005 ], [ -123.722390544999953, 48.851753996000113 ], [ -123.722290849999965, 48.851899552000141 ], [ -123.719283127000011, 48.854485376000071 ], [ -123.718499034999979, 48.855293989000103 ], [ -123.717996018999955, 48.855950908000082 ], [ -123.717436573999947, 48.857094088000117 ], [ -123.717029080999922, 48.858068782000068 ], [ -123.716890215999967, 48.858400936000095 ], [ -123.716232443999914, 48.858386889000052 ], [ -123.716340359999975, 48.856173708000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45316250", "BldgCostT": "30725000", "sL_LossRatio": "0.856954196179627", "sL_AssetLoss": "181050.4", "sL_BldgLoss": "155151.9", "sL_StrLoss": "106812.9", "sL_NStrLoss": "48339", "sL_ContLoss": "25898.5", "geom_point": "0101000020E610000075785B2B52EC5EC0083102F0706D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684869129999967, 48.872528127000081 ], [ -123.685047144999913, 48.868927885000083 ], [ -123.686682683999891, 48.868963271000048 ], [ -123.686796902999973, 48.866651321000106 ], [ -123.688288125999946, 48.866683564000056 ], [ -123.688349208999952, 48.865446256000034 ], [ -123.69379020599996, 48.865563723000022 ], [ -123.69377785599994, 48.865814491000052 ], [ -123.695113717999945, 48.865843289000019 ], [ -123.695118824999952, 48.865739523000087 ], [ -123.695907046999963, 48.865756507000079 ], [ -123.695952442999953, 48.864833940000025 ], [ -123.696668172999964, 48.864849358000086 ], [ -123.696695089999977, 48.864302121000023 ], [ -123.691816187999962, 48.864196932000041 ], [ -123.691886677999932, 48.862766810000025 ], [ -123.691563263999939, 48.862759829000012 ], [ -123.691740727999957, 48.859159520000084 ], [ -123.692716273999949, 48.859180574000057 ], [ -123.692753928999963, 48.858416242000075 ], [ -123.698194120999958, 48.858533488000042 ], [ -123.698017155999963, 48.862133811000028 ], [ -123.697364957, 48.862119770000064 ], [ -123.697328475999939, 48.862861672000108 ], [ -123.698583734999914, 48.862888693000059 ], [ -123.698664236999946, 48.861250597 ], [ -123.700788989999964, 48.861296301000031 ], [ -123.700859025999989, 48.859869747000069 ], [ -123.701546756999946, 48.859884531000034 ], [ -123.701586842, 48.859067762000031 ], [ -123.702362807, 48.859084438000075 ], [ -123.702407859999965, 48.858166079000036 ], [ -123.703798665999983, 48.858195954000095 ], [ -123.703834242999932, 48.857470312000054 ], [ -123.704866686999964, 48.85749247800004 ], [ -123.704900638999931, 48.85679963700008 ], [ -123.704973950999928, 48.856801210000114 ], [ -123.705012977999985, 48.85600473700007 ], [ -123.706628989999942, 48.856039410000079 ], [ -123.706752157999972, 48.853523861000035 ], [ -123.70518852599993, 48.85349031300008 ], [ -123.705194718999977, 48.853363928000114 ], [ -123.700496666999967, 48.853262989000065 ], [ -123.70054551699991, 48.852267929000021 ], [ -123.698031438999948, 48.852213829000078 ], [ -123.698152753999963, 48.849745169000123 ], [ -123.695265386, 48.849682962000081 ], [ -123.695374704, 48.847461029000058 ], [ -123.69470311399995, 48.8474465480001 ], [ -123.694680723999966, 48.847901535000105 ], [ -123.68924177599996, 48.84778410900006 ], [ -123.689360036999958, 48.845386513000115 ], [ -123.688082278999957, 48.845358886000078 ], [ -123.688151114999982, 48.843963975000101 ], [ -123.687901955999962, 48.843958586000078 ], [ -123.688055580999972, 48.840845552000062 ], [ -123.68377999499999, 48.840752985000115 ], [ -123.683851477999937, 48.839306967000034 ], [ -123.681409796999915, 48.839254028000042 ], [ -123.681432083999979, 48.838803616000085 ], [ -123.679951670999969, 48.838771490000084 ], [ -123.680017453999966, 48.837442922000051 ], [ -123.679928649999951, 48.837440994000076 ], [ -123.679947346999981, 48.837063375000085 ], [ -123.679339551999945, 48.837050180000041 ], [ -123.679347215999925, 48.836895420000097 ], [ -123.678593933999977, 48.836879061000012 ], [ -123.678602798999947, 48.836700130000068 ], [ -123.67604735299993, 48.836644595000081 ], [ -123.676090330999926, 48.835778037000097 ], [ -123.673879427999978, 48.835729940000078 ], [ -123.673892259999903, 48.835471445000088 ], [ -123.673087213999963, 48.835453920000042 ], [ -123.673101139999915, 48.835173484000094 ], [ -123.670019321999959, 48.83510634000001 ], [ -123.670020743999956, 48.83507774100012 ], [ -123.668845381999944, 48.835052110000071 ], [ -123.668870034999898, 48.83455654500009 ], [ -123.664741163999963, 48.8344664030001 ], [ -123.664876030999935, 48.83176002400004 ], [ -123.665680476999938, 48.831835200000086 ], [ -123.666133511999988, 48.831919892000101 ], [ -123.667075502999964, 48.832185588000087 ], [ -123.667581104999954, 48.832280399000084 ], [ -123.667949404999931, 48.832317293000045 ], [ -123.668762008999934, 48.832339503000078 ], [ -123.669513113999955, 48.832504602 ], [ -123.670498407999958, 48.832775696000041 ], [ -123.670894689999955, 48.832823087000037 ], [ -123.67272131, 48.832815087000085 ], [ -123.672992700999885, 48.832830013 ], [ -123.674502028999953, 48.833063935000041 ], [ -123.676753510999973, 48.833412904000049 ], [ -123.677089201999962, 48.833503083000032 ], [ -123.677328292999931, 48.833620910000015 ], [ -123.677847341999936, 48.834056063000148 ], [ -123.677924086999951, 48.834120397000099 ], [ -123.678040866999979, 48.834186351000078 ], [ -123.678210411999956, 48.83428210400006 ], [ -123.678637611999989, 48.83452339700009 ], [ -123.67968702899999, 48.83475848900013 ], [ -123.67990270699994, 48.834806786000108 ], [ -123.680706325999893, 48.835243875000046 ], [ -123.681086078999954, 48.835450408000042 ], [ -123.681341792999888, 48.835589509000037 ], [ -123.682806793999973, 48.836208794000093 ], [ -123.683396809, 48.836523306000103 ], [ -123.684815506999925, 48.837279499000033 ], [ -123.685110229999978, 48.837457107000041 ], [ -123.685613112999945, 48.837940208000042 ], [ -123.685798506999902, 48.838042415000167 ], [ -123.686816778, 48.838393300000099 ], [ -123.687159509999915, 48.838537694000095 ], [ -123.687427715999945, 48.83875530300007 ], [ -123.687646283999968, 48.839014996000095 ], [ -123.68778947899996, 48.839366793000124 ], [ -123.687955010999985, 48.84006688700002 ], [ -123.688128195999951, 48.840473413000062 ], [ -123.689115901999969, 48.841639097000083 ], [ -123.689695209999968, 48.842091393000061 ], [ -123.690246291999955, 48.842866498000028 ], [ -123.690281218999971, 48.843042905000054 ], [ -123.690212397999971, 48.843361311000102 ], [ -123.690233519999978, 48.843539306000046 ], [ -123.691210707, 48.844756087000135 ], [ -123.691807492999985, 48.845062563000063 ], [ -123.692141319999962, 48.845234003 ], [ -123.69327401799994, 48.846279295000059 ], [ -123.694102280999928, 48.846927891000135 ], [ -123.694362109999929, 48.847041610000133 ], [ -123.695003908999979, 48.847222186000124 ], [ -123.695351903999978, 48.847396389000068 ], [ -123.695707686999981, 48.847689698000046 ], [ -123.69832119599999, 48.848741600000047 ], [ -123.698485303999945, 48.848864989000148 ], [ -123.699026104999945, 48.849439790000076 ], [ -123.699286188999949, 48.849603109000114 ], [ -123.699344162999964, 48.849624210000108 ], [ -123.699517592999882, 48.84968740000015 ], [ -123.699805397999967, 48.849717472000037 ], [ -123.700342285999952, 48.849773592000055 ], [ -123.700379111, 48.849780730000127 ], [ -123.700740107999977, 48.849850582000023 ], [ -123.701073776999976, 48.849985700000055 ], [ -123.701778803999929, 48.850403710000094 ], [ -123.702793, 48.850818291000117 ], [ -123.70281603799998, 48.850820512000077 ], [ -123.703060001, 48.850843897000061 ], [ -123.703226125999961, 48.850804564000079 ], [ -123.703328510999967, 48.850780307000072 ], [ -123.704369488999959, 48.850649408000052 ], [ -123.704744113999979, 48.850672800000048 ], [ -123.70497337399999, 48.850727509000095 ], [ -123.705038724999923, 48.850743105000049 ], [ -123.706434911999949, 48.851225401000072 ], [ -123.706928610999952, 48.851569401000084 ], [ -123.707382246999913, 48.852016258000063 ], [ -123.707483092999937, 48.8521155970001 ], [ -123.707856007999951, 48.852645308000064 ], [ -123.708098179999979, 48.853177587000104 ], [ -123.708461191999973, 48.853491712000015 ], [ -123.708664998999936, 48.853556398000066 ], [ -123.708905916999953, 48.855477205000113 ], [ -123.709203294999952, 48.856132315000139 ], [ -123.709388788999902, 48.856598495000149 ], [ -123.70941330699999, 48.856850406000056 ], [ -123.709376504999966, 48.857129900000139 ], [ -123.70927140699996, 48.857386194000107 ], [ -123.709044598999967, 48.857707500000075 ], [ -123.708543779999971, 48.858343703000088 ], [ -123.708096891999944, 48.859268495000038 ], [ -123.707548001999953, 48.85977308500005 ], [ -123.706760802999938, 48.860139104000083 ], [ -123.706172594999941, 48.860251788000035 ], [ -123.705761803999948, 48.860437585000064 ], [ -123.70550509, 48.860675301000072 ], [ -123.705197524999946, 48.861009957000057 ], [ -123.704632093999976, 48.861625207000024 ], [ -123.704229890999926, 48.861967994000075 ], [ -123.703732777999974, 48.862344414000049 ], [ -123.703421113999937, 48.862580407000074 ], [ -123.703174595999911, 48.862849231000041 ], [ -123.703100298999956, 48.862930308000038 ], [ -123.70288628499999, 48.863267186000094 ], [ -123.702825813999937, 48.863823896000113 ], [ -123.702824184999955, 48.863839003000074 ], [ -123.702670483999924, 48.86405910600007 ], [ -123.702320167999986, 48.864274824000084 ], [ -123.702253472999971, 48.864315897000083 ], [ -123.701706099999967, 48.864565494000075 ], [ -123.701172194999984, 48.86512170100012 ], [ -123.700919599999978, 48.865496518000043 ], [ -123.700864466000013, 48.865752375000078 ], [ -123.700847126999989, 48.86583297400005 ], [ -123.7006462, 48.866765502000121 ], [ -123.700618311999918, 48.867041119000049 ], [ -123.700549350999907, 48.867722761000024 ], [ -123.700453128999968, 48.868674204000079 ], [ -123.700555056, 48.869756021000057 ], [ -123.700569441999903, 48.86990844400011 ], [ -123.70058557399993, 48.870079993000111 ], [ -123.700570586999973, 48.870835417000066 ], [ -123.695569109999923, 48.870786297000123 ], [ -123.694505118999984, 48.870764895000057 ], [ -123.693988002999959, 48.870840385000093 ], [ -123.691415090999953, 48.870859734000085 ], [ -123.691439942, 48.870355739000026 ], [ -123.690424990999958, 48.870333828000042 ], [ -123.690398671999972, 48.87086736100008 ], [ -123.68577211899999, 48.87090195600009 ], [ -123.685680739999924, 48.872545690000095 ], [ -123.684869129999967, 48.872528127000081 ] ], [ [ -123.69707721, 48.870292875000096 ], [ -123.697116672999982, 48.869490529000061 ], [ -123.696930043999927, 48.86948651000008 ], [ -123.696890576999948, 48.870288855000062 ], [ -123.69707721, 48.870292875000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.94495709209399", "sL_AssetLoss": "7119.9", "sL_BldgLoss": "6728", "sL_StrLoss": "5510", "sL_NStrLoss": "1218", "sL_ContLoss": "391.9", "geom_point": "0101000020E610000029A9B81692EA5EC0C08BC6F3FC6D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.662398288999967, 48.860962169000139 ], [ -123.662577985999945, 48.857361898000086 ], [ -123.665239021, 48.857420034000043 ], [ -123.66533710099999, 48.857478396000069 ], [ -123.665573298999945, 48.857820298000036 ], [ -123.665942078999947, 48.85789860100008 ], [ -123.66648651399997, 48.857858700000079 ], [ -123.666952302999974, 48.857991186000078 ], [ -123.667141886999971, 48.857855909000094 ], [ -123.66701529800001, 48.857549695000024 ], [ -123.667107358999942, 48.857460814000028 ], [ -123.668017979999931, 48.857480677000105 ], [ -123.667838699999905, 48.861080957000077 ], [ -123.662398288999967, 48.860962169000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.8290296276162", "sL_AssetLoss": "3679", "sL_BldgLoss": "3050", "sL_StrLoss": "1720", "sL_NStrLoss": "1330", "sL_ContLoss": "629", "geom_point": "0101000020E6100000485AE0E1ACEA5EC070E591E45E6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.666231477999986, 48.870968991000041 ], [ -123.666227894999935, 48.870699134000063 ], [ -123.665818823, 48.870701497000042 ], [ -123.665815241999937, 48.870431641000089 ], [ -123.665406171999933, 48.870434001000099 ], [ -123.665391858999897, 48.869354577000074 ], [ -123.66580092, 48.869352215000035 ], [ -123.665797339999983, 48.869082358000064 ], [ -123.667024516999987, 48.86907526600006 ], [ -123.667028104999957, 48.869345122000041 ], [ -123.6674371659999, 48.869342756000066 ], [ -123.667440753999941, 48.869612612000026 ], [ -123.667849817999951, 48.869610242000078 ], [ -123.667853408999918, 48.869880099000028 ], [ -123.668262476, 48.869877729000017 ], [ -123.668276851999963, 48.870957154000081 ], [ -123.666231477999986, 48.870968991000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.76678445229682", "sL_AssetLoss": "8490", "sL_BldgLoss": "6510", "sL_StrLoss": "2980", "sL_NStrLoss": "3530", "sL_ContLoss": "1980", "geom_point": "0101000020E61000002581404644E95EC0ACD5AA9FAF694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.643671798999918, 48.824665148000129 ], [ -123.645779574999906, 48.824264693000018 ], [ -123.645644303999987, 48.826957603000039 ], [ -123.645537420999958, 48.826955248000075 ], [ -123.645512799999935, 48.827445335000064 ], [ -123.64531554899996, 48.827313841000077 ], [ -123.645037657999936, 48.82712858900004 ], [ -123.64477708699998, 48.826954909000179 ], [ -123.644757187999971, 48.826944558000086 ], [ -123.644206919999931, 48.826658795000142 ], [ -123.644070389999953, 48.826587894000063 ], [ -123.643970046999968, 48.826499945000066 ], [ -123.643887996999979, 48.826428015000097 ], [ -123.643766775999921, 48.826267593000097 ], [ -123.643746536999942, 48.826195676000118 ], [ -123.643706707999982, 48.826054508000055 ], [ -123.643647992999945, 48.825327810000026 ], [ -123.643671798999918, 48.824665148000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11498501", "BldgCostT": "7930001", "sL_LossRatio": "0.85933130547418", "sL_AssetLoss": "48096.7", "sL_BldgLoss": "41331", "sL_StrLoss": "26812", "sL_NStrLoss": "14519", "sL_ContLoss": "6765.7", "geom_point": "0101000020E6100000C1262147A9E95EC091FC6FC2106B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.648132394999962, 48.840267595000064 ], [ -123.648058194999962, 48.840010991000035 ], [ -123.647925817999976, 48.839773798000095 ], [ -123.64747670399997, 48.839259307000098 ], [ -123.646608709999938, 48.838497129000082 ], [ -123.645563192999987, 48.837579003000059 ], [ -123.645321313999915, 48.837328588000055 ], [ -123.645172799999941, 48.837087389000089 ], [ -123.644936215999962, 48.83643520400004 ], [ -123.644856891999922, 48.836116310000072 ], [ -123.644893200999888, 48.83588191300008 ], [ -123.64499211899998, 48.835674100000105 ], [ -123.646051502999967, 48.834632391000071 ], [ -123.646232291999965, 48.834337216000087 ], [ -123.646383406999945, 48.833983698000075 ], [ -123.646441682999935, 48.833555199 ], [ -123.646517392999954, 48.833347787000037 ], [ -123.646710984999956, 48.833096992000044 ], [ -123.646960801999981, 48.832838482000071 ], [ -123.647644069999899, 48.832279272000115 ], [ -123.647780995999952, 48.832167184000134 ], [ -123.647886977, 48.832093334000078 ], [ -123.648171715, 48.831894865000038 ], [ -123.648366201999949, 48.831759311000098 ], [ -123.648442693999968, 48.831690850000051 ], [ -123.648651102999921, 48.831504296000027 ], [ -123.648706056999927, 48.831442955000085 ], [ -123.648726033999964, 48.831420642000069 ], [ -123.652686392999954, 48.831507708000089 ], [ -123.652506033999984, 48.83510811100016 ], [ -123.652453543000021, 48.835106958000047 ], [ -123.652453022999964, 48.83511733200001 ], [ -123.653180290999941, 48.835133305000035 ], [ -123.653167099999948, 48.835396679000091 ], [ -123.65784884, 48.835499383000048 ], [ -123.657668862999955, 48.839099771000058 ], [ -123.65413912799994, 48.839022359000047 ], [ -123.65409816199994, 48.839840557000038 ], [ -123.653894099999917, 48.839836078000104 ], [ -123.653848902999968, 48.840738661000032 ], [ -123.64841088899999, 48.840619157000091 ], [ -123.648433759999961, 48.840163504000017 ], [ -123.648366929999938, 48.840162034000102 ], [ -123.648338382999967, 48.840730796000067 ], [ -123.648135743999973, 48.840726338000046 ], [ -123.648151095999964, 48.840599688000047 ], [ -123.648132394999962, 48.840267595000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22586250", "BldgCostT": "15105000", "sL_LossRatio": "0.774617525993957", "sL_AssetLoss": "210145", "sL_BldgLoss": "162782", "sL_StrLoss": "81482", "sL_NStrLoss": "81300", "sL_ContLoss": "47363", "geom_point": "0101000020E61000003A9A654711EA5EC07FD42EBFB6694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.658027848999936, 48.83221813300004 ], [ -123.658197723999962, 48.828818788000028 ], [ -123.653708584999933, 48.828720313000119 ], [ -123.653682450999952, 48.829242299000022 ], [ -123.648513396999988, 48.829128675000042 ], [ -123.648462095999946, 48.829087907000115 ], [ -123.64825322899999, 48.82897416900002 ], [ -123.648411079999946, 48.825828351000077 ], [ -123.64691252099999, 48.825795359000089 ], [ -123.647002699000012, 48.823999141000115 ], [ -123.64711290799994, 48.823982186000094 ], [ -123.648060102999935, 48.823949008000085 ], [ -123.648525802, 48.823912226000054 ], [ -123.648979409999981, 48.823876408000096 ], [ -123.649885710999939, 48.823763907000043 ], [ -123.650304414999965, 48.823689298000062 ], [ -123.650573593000018, 48.823610492000036 ], [ -123.651095899999973, 48.823369710000115 ], [ -123.651497116999948, 48.823100995000068 ], [ -123.65194579099996, 48.822699098000079 ], [ -123.652176598, 48.822467267000036 ], [ -123.652556017, 48.82208620600003 ], [ -123.652976548999945, 48.821715125000047 ], [ -123.653064208999965, 48.821637803000016 ], [ -123.653211644999971, 48.821580058000031 ], [ -123.653418156999962, 48.821499199000051 ], [ -123.653515204999977, 48.821461200000016 ], [ -123.653926857999963, 48.821329812000066 ], [ -123.65398799499998, 48.821310315000112 ], [ -123.654428483999965, 48.821206410000052 ], [ -123.655483186999945, 48.82109169500005 ], [ -123.656003504999944, 48.820996792000116 ], [ -123.65634328299997, 48.820866295000073 ], [ -123.656698158999959, 48.820676909000063 ], [ -123.657517404999922, 48.820239689000047 ], [ -123.657820179999973, 48.820114804000113 ], [ -123.658360200999965, 48.820062596000071 ], [ -123.658412129999974, 48.820067536000082 ], [ -123.659428979999959, 48.820164340000112 ], [ -123.659639685999963, 48.820184396000087 ], [ -123.66010419399997, 48.82019910300005 ], [ -123.661369731999969, 48.820191199000043 ], [ -123.662346788999955, 48.820185106000032 ], [ -123.663428786999972, 48.820258317000054 ], [ -123.664451114999935, 48.820327500000154 ], [ -123.664484158999983, 48.823308412000067 ], [ -123.664504018999963, 48.825099133000059 ], [ -123.664508197999936, 48.825476273000028 ], [ -123.66451048499998, 48.825683159000036 ], [ -123.664510787999944, 48.825709292000091 ], [ -123.664835101999984, 48.826900415000061 ], [ -123.66498891399999, 48.827370751000053 ], [ -123.665041704999965, 48.82753210100006 ], [ -123.665093794999947, 48.827799081000052 ], [ -123.665082807000019, 48.828019593000086 ], [ -123.665017493999969, 48.82815601300009 ], [ -123.664815193999942, 48.828338091000028 ], [ -123.664218100999989, 48.828634217000051 ], [ -123.664098904999946, 48.82875858900006 ], [ -123.66375142, 48.829450246000064 ], [ -123.663667388999912, 48.829617512 ], [ -123.663600579999979, 48.829616051000045 ], [ -123.66359314, 48.829765303000087 ], [ -123.663491713999974, 48.829967190000097 ], [ -123.663170465999897, 48.830290301000083 ], [ -123.663057590999955, 48.830403789000101 ], [ -123.662715189999972, 48.830804505000074 ], [ -123.662704289999951, 48.830887102000048 ], [ -123.66277326, 48.831036358000098 ], [ -123.662793920999931, 48.831081101000109 ], [ -123.662857817999907, 48.83121940299999 ], [ -123.663074719999912, 48.831453902000121 ], [ -123.66325550799999, 48.831566001000056 ], [ -123.663500870999954, 48.831615949000081 ], [ -123.66346491299997, 48.832337149000082 ], [ -123.658027848999936, 48.83221813300004 ] ], [ [ -123.661636716999965, 48.828692796000084 ], [ -123.661638274999945, 48.828661564000093 ], [ -123.660022638999919, 48.82862619600013 ], [ -123.660024299999975, 48.828592916000026 ], [ -123.658853800999935, 48.828567276000051 ], [ -123.658850577999942, 48.828631789000035 ], [ -123.661636716999965, 48.828692796000084 ] ], [ [ -123.661011273999947, 48.824309726000124 ], [ -123.661081398999968, 48.822904485000088 ], [ -123.661061019999948, 48.822904039000079 ], [ -123.661127706999977, 48.821567591000097 ], [ -123.659511743999971, 48.821532203000075 ], [ -123.659528410999968, 48.821198408000051 ], [ -123.659416515999936, 48.821195957000057 ], [ -123.659317933999944, 48.823170078000061 ], [ -123.657609755999943, 48.823132642000111 ], [ -123.657597378, 48.823380321000059 ], [ -123.656144195999971, 48.823348452000083 ], [ -123.656122542, 48.823781455000059 ], [ -123.655346125999927, 48.82376442000006 ], [ -123.65531366499998, 48.824413337000081 ], [ -123.655859048999929, 48.824425304000123 ], [ -123.655824160999927, 48.825122853000039 ], [ -123.65714724599998, 48.825151873000017 ], [ -123.65714527399993, 48.825191325000063 ], [ -123.657859518999913, 48.825206984000083 ], [ -123.657872791999949, 48.824941385000088 ], [ -123.660036012999981, 48.824988781000066 ], [ -123.66007094299998, 48.824289138000069 ], [ -123.661011273999947, 48.824309726000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11382500", "BldgCostT": "7850000", "sL_LossRatio": "0.781547813245875", "sL_AssetLoss": "116474", "sL_BldgLoss": "91030", "sL_StrLoss": "47760", "sL_NStrLoss": "43270", "sL_ContLoss": "25444", "geom_point": "0101000020E6100000A0BEA76A29E95EC07569CBD2316D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.6420032, 48.856315896000076 ], [ -123.64177680099999, 48.85597299900013 ], [ -123.641685073999923, 48.855753435000103 ], [ -123.641520395999947, 48.855359090000043 ], [ -123.641203902999976, 48.854426795000087 ], [ -123.64113291299999, 48.854133189000059 ], [ -123.641162823999977, 48.853620302000117 ], [ -123.637776688999949, 48.853657586000061 ], [ -123.636768101999948, 48.85366865100012 ], [ -123.634273080999918, 48.853696032000158 ], [ -123.63402955399998, 48.853666326000081 ], [ -123.633538582999961, 48.853413986000106 ], [ -123.633259491999937, 48.85322576600003 ], [ -123.633112304999884, 48.853039577000061 ], [ -123.63305669199994, 48.852846366000115 ], [ -123.633079096999921, 48.852403584000129 ], [ -123.63314141299999, 48.852276085000092 ], [ -123.633950193999937, 48.85173448700003 ], [ -123.634371980999958, 48.851721681000058 ], [ -123.635546700999967, 48.851685994000078 ], [ -123.636647676999985, 48.851680329000075 ], [ -123.638951263999928, 48.851668424000074 ], [ -123.639841506999986, 48.851663781000106 ], [ -123.63987441799992, 48.851416687000047 ], [ -123.63987383199995, 48.851371061000044 ], [ -123.639866889999936, 48.850835303000046 ], [ -123.639899405000023, 48.850649488000037 ], [ -123.640521184999912, 48.85006129500006 ], [ -123.640601392999898, 48.849900894000051 ], [ -123.640929321, 48.850080807000012 ], [ -123.641482356999958, 48.850155050000055 ], [ -123.642397063999965, 48.850030140000101 ], [ -123.643750196000013, 48.849700385000098 ], [ -123.644452082999948, 48.849429991000051 ], [ -123.64481523900001, 48.84944623500013 ], [ -123.644819695999956, 48.849392881000014 ], [ -123.644709009999985, 48.848885903000053 ], [ -123.644654387999964, 48.84821249800013 ], [ -123.644667876999961, 48.847898320000105 ], [ -123.644855764999974, 48.847902459000053 ], [ -123.644821004999955, 48.848593851000032 ], [ -123.645401885999945, 48.848606646000057 ], [ -123.64539926799992, 48.848658749000066 ], [ -123.647531513000018, 48.848705691000085 ], [ -123.647515003999928, 48.84903442500012 ], [ -123.648176310999986, 48.849048975000073 ], [ -123.648140456999926, 48.849763097000015 ], [ -123.648216753, 48.849764775000082 ], [ -123.648181465999983, 48.850467613000028 ], [ -123.648202595000015, 48.850468078000091 ], [ -123.648021818999936, 48.854068365000025 ], [ -123.647694652999945, 48.854061167000076 ], [ -123.64767163099998, 48.854519572000108 ], [ -123.647493045999937, 48.854515643000113 ], [ -123.64740442799993, 48.856279900000104 ], [ -123.648731024999961, 48.856309081000113 ], [ -123.648666333999984, 48.85759764400013 ], [ -123.647967811999962, 48.857615617000079 ], [ -123.646817397999939, 48.857648496000053 ], [ -123.645765897999965, 48.857647550000138 ], [ -123.64575309599995, 48.857763706000128 ], [ -123.645643030999963, 48.85876298800008 ], [ -123.64561468, 48.858411153000048 ], [ -123.645409657999934, 48.858183180000033 ], [ -123.644768177999964, 48.857761995000018 ], [ -123.644657067999916, 48.857689034000067 ], [ -123.643386694999919, 48.857231230000089 ], [ -123.642321001999974, 48.856575212000116 ], [ -123.6420032, 48.856315896000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30058584", "BldgCostT": "20258334", "sL_LossRatio": "0.781908743218002", "sL_AssetLoss": "224860", "sL_BldgLoss": "175820", "sL_StrLoss": "96632", "sL_NStrLoss": "79188", "sL_ContLoss": "49040", "geom_point": "0101000020E61000008E7DEAD4ACEA5EC02F642263BD6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.677090256999975, 48.88067887800004 ], [ -123.67607479199998, 48.879611949000051 ], [ -123.675056811999966, 48.878592525000059 ], [ -123.674975767999939, 48.878511354000068 ], [ -123.674914992999945, 48.878466214000085 ], [ -123.674768422999946, 48.878357356000045 ], [ -123.67468577299999, 48.87829598800009 ], [ -123.674667057999926, 48.878282074 ], [ -123.674474382999946, 48.878191091000105 ], [ -123.674297074999984, 48.878107359000069 ], [ -123.673763675999965, 48.878007923000034 ], [ -123.673067672999963, 48.877878215000088 ], [ -123.672458107999972, 48.87776458400009 ], [ -123.671615503999973, 48.877607517000044 ], [ -123.670749829, 48.877624297000075 ], [ -123.668834195999963, 48.877661379000074 ], [ -123.668311338999956, 48.877630165000035 ], [ -123.667791497999985, 48.877539544000051 ], [ -123.667055405999989, 48.877332482000035 ], [ -123.665360035999981, 48.876860298000075 ], [ -123.662477652999954, 48.875938680000068 ], [ -123.662197648999893, 48.875872184000031 ], [ -123.662007772, 48.875849501000054 ], [ -123.66189302599993, 48.875835799000058 ], [ -123.661466049999916, 48.875821955000013 ], [ -123.660284329999953, 48.875899273000059 ], [ -123.66030765099994, 48.875432654000129 ], [ -123.65786913699999, 48.875379290000062 ], [ -123.657867806999931, 48.875405859000068 ], [ -123.656470584999965, 48.875375258000105 ], [ -123.656473693999942, 48.875612864000118 ], [ -123.656882807, 48.87561053400006 ], [ -123.656889471999975, 48.876119563000017 ], [ -123.656366885999915, 48.876116691000036 ], [ -123.655956574999919, 48.876068993000047 ], [ -123.655654697999964, 48.875977707000104 ], [ -123.655348687999918, 48.875867224000025 ], [ -123.653587783999939, 48.875231403000043 ], [ -123.65306874099997, 48.875049739000055 ], [ -123.65274181199996, 48.87493528800006 ], [ -123.652444700999965, 48.874804393000062 ], [ -123.652049884999983, 48.874475005000114 ], [ -123.651684840999934, 48.873835333000052 ], [ -123.651430217999945, 48.873389197000044 ], [ -123.65320621799998, 48.873376733000057 ], [ -123.653574392999943, 48.873374157000164 ], [ -123.654774414999935, 48.873365730000089 ], [ -123.655319864999939, 48.873361852000045 ], [ -123.656727761999946, 48.873351938000056 ], [ -123.656665811999972, 48.871967695000116 ], [ -123.656642021999971, 48.870725952000058 ], [ -123.65662827199999, 48.870008909 ], [ -123.656628090999959, 48.869999903000121 ], [ -123.656609792, 48.86914078600006 ], [ -123.659433878999906, 48.869119799000089 ], [ -123.659428273999978, 48.868856766000057 ], [ -123.659345052999953, 48.864970975000112 ], [ -123.65932689, 48.864123890000037 ], [ -123.657247094999931, 48.863753069000026 ], [ -123.655821422999963, 48.863771879000076 ], [ -123.652053813999942, 48.863821490000092 ], [ -123.652029807999938, 48.862232207 ], [ -123.652028173999923, 48.862111966000107 ], [ -123.657044070999987, 48.862221979000076 ], [ -123.65700417799998, 48.863019299000044 ], [ -123.657490668, 48.863029957 ], [ -123.657517598999959, 48.862491589000093 ], [ -123.659223475999923, 48.862528942000097 ], [ -123.659232238999962, 48.862353630000037 ], [ -123.664672802999945, 48.862472579000098 ], [ -123.664493247999985, 48.866072824000042 ], [ -123.662787236999918, 48.866035555000103 ], [ -123.662778485999979, 48.866210866000067 ], [ -123.662379414999961, 48.866202144000098 ], [ -123.662312440000022, 48.867543674 ], [ -123.663646246999974, 48.867572820000142 ], [ -123.663466591999907, 48.871173033000041 ], [ -123.662778156999977, 48.871157993000097 ], [ -123.662773124999916, 48.871258798000071 ], [ -123.663371522999938, 48.871255358000084 ], [ -123.66338579399995, 48.872334782000053 ], [ -123.662158536, 48.872341837000057 ], [ -123.662165658999967, 48.872881550000045 ], [ -123.664620201999966, 48.872867428000106 ], [ -123.664623775999971, 48.87313728400003 ], [ -123.66707833, 48.873123110000023 ], [ -123.667074740999951, 48.872853253000109 ], [ -123.668302010999952, 48.872846147000125 ], [ -123.668312793999959, 48.873655715000055 ], [ -123.667903698999964, 48.873658085000052 ], [ -123.667907290999921, 48.873927941000105 ], [ -123.666270896999933, 48.873937408000103 ], [ -123.666272233999933, 48.874038167000016 ], [ -123.666638625999965, 48.874046160000084 ], [ -123.666621724999942, 48.874385228000023 ], [ -123.667722405999939, 48.874409232000048 ], [ -123.667692541999926, 48.875008693000026 ], [ -123.668330768999979, 48.875004996000072 ], [ -123.668341554000023, 48.875814564000088 ], [ -123.667932439999902, 48.875816933000081 ], [ -123.667936030999954, 48.876086789000098 ], [ -123.667638745999938, 48.876088511000042 ], [ -123.667634855999935, 48.876166581000064 ], [ -123.668982958999891, 48.876195966000033 ], [ -123.669033528999961, 48.875180309000022 ], [ -123.669872354999967, 48.875198584000053 ], [ -123.66988530799992, 48.874938329000081 ], [ -123.67139765899995, 48.874971262000074 ], [ -123.671405055999955, 48.874822567000074 ], [ -123.676847097999911, 48.874940894000133 ], [ -123.676823998999936, 48.875406375000082 ], [ -123.677179116000033, 48.875414086 ], [ -123.677064497999936, 48.877724011000083 ], [ -123.678011522999924, 48.877744571000029 ], [ -123.677986918, 48.878240619000074 ], [ -123.678458836999965, 48.878250861000041 ], [ -123.678383784999966, 48.879764187000035 ], [ -123.679454954000022, 48.879787427000075 ], [ -123.679518124999959, 48.878513077000029 ], [ -123.680179098999972, 48.878527413000036 ], [ -123.680204026999945, 48.878024392000064 ], [ -123.681582189999986, 48.878054268000042 ], [ -123.68161991099997, 48.877292625000024 ], [ -123.682760066999919, 48.877317328000046 ], [ -123.682888104999947, 48.874730548000059 ], [ -123.685556055999982, 48.874788306000035 ], [ -123.685483122999955, 48.876100002000072 ], [ -123.68567508299995, 48.876892405000042 ], [ -123.686144734999985, 48.878956954000053 ], [ -123.685219486999983, 48.879512903000034 ], [ -123.684766192000012, 48.879726490000067 ], [ -123.683468106999982, 48.880166894000112 ], [ -123.683230962999986, 48.880274654000104 ], [ -123.682924694999926, 48.880413801000032 ], [ -123.682546380999895, 48.880764198000065 ], [ -123.682414899999969, 48.881273990000075 ], [ -123.682333253999943, 48.881705297000103 ], [ -123.682223258999926, 48.882286272 ], [ -123.682168343999976, 48.882576511000124 ], [ -123.682138206999966, 48.882735693000022 ], [ -123.681596134999936, 48.882520815000085 ], [ -123.68074810799996, 48.882184641000052 ], [ -123.68051534099996, 48.882092394000047 ], [ -123.679029438, 48.881503349000155 ], [ -123.677398228999976, 48.880855813000075 ], [ -123.677382336000022, 48.880849483000084 ], [ -123.677267121999989, 48.880783579000116 ], [ -123.677097547999935, 48.880686553000054 ], [ -123.677090256999975, 48.88067887800004 ] ], [ [ -123.662587753999944, 48.873863974000109 ], [ -123.66258544, 48.873688769000097 ], [ -123.661782246999934, 48.873693381000045 ], [ -123.661774612999963, 48.873846202000067 ], [ -123.662587753999944, 48.873863974000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155226750", "BldgCostT": "101895000", "sL_LossRatio": "0.756701815634708", "sL_AssetLoss": "1531861", "sL_BldgLoss": "1159162", "sL_StrLoss": "567732", "sL_NStrLoss": "591430", "sL_ContLoss": "372699", "geom_point": "0101000020E610000016A7318CC1E95EC08147AF61E16E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.649444806999909, 48.867441034000173 ], [ -123.64940401699999, 48.867314242000148 ], [ -123.649015627999958, 48.866106981000087 ], [ -123.648902947999943, 48.865756798000099 ], [ -123.649197360999921, 48.865696580000105 ], [ -123.649289906999954, 48.865616618000104 ], [ -123.649310236999938, 48.865482823000065 ], [ -123.649307434999983, 48.865369678000036 ], [ -123.649269945999933, 48.863843817000074 ], [ -123.648879146999931, 48.863844228000126 ], [ -123.648098877000024, 48.863845094000069 ], [ -123.646970013999962, 48.863845489 ], [ -123.645740518999929, 48.863843701000128 ], [ -123.64572872299999, 48.863060098000055 ], [ -123.645717627999943, 48.862322205000048 ], [ -123.645698021999976, 48.860937233000087 ], [ -123.645694582999937, 48.860694405000082 ], [ -123.64569325799999, 48.860595418000095 ], [ -123.64567337599999, 48.85913958599999 ], [ -123.645643030999963, 48.85876298800008 ], [ -123.64575309599995, 48.857763706000128 ], [ -123.645765897999965, 48.857647550000138 ], [ -123.646817397999939, 48.857648496000053 ], [ -123.647967811999962, 48.857615617000079 ], [ -123.648666333999984, 48.85759764400013 ], [ -123.648600432999899, 48.858910234000057 ], [ -123.64858613399997, 48.859195002000078 ], [ -123.64889675699996, 48.859193254000054 ], [ -123.648905577, 48.859875588000058 ], [ -123.649237018999969, 48.859890640000103 ], [ -123.649581037999965, 48.859906262000067 ], [ -123.649707537999944, 48.859975763000108 ], [ -123.649708351999962, 48.859998315000034 ], [ -123.649725195999949, 48.859998221000041 ], [ -123.6497321799999, 48.860537936000057 ], [ -123.650141171999962, 48.860535631000111 ], [ -123.65014260099997, 48.860645803000104 ], [ -123.650162813999913, 48.862206505000081 ], [ -123.65026455, 48.862208741000096 ], [ -123.651596766999916, 48.862238006 ], [ -123.651603554999937, 48.862102642000117 ], [ -123.652028173999923, 48.862111966000107 ], [ -123.652029807999938, 48.862232207 ], [ -123.652053813999942, 48.863821490000092 ], [ -123.655821422999963, 48.863771879000076 ], [ -123.657247094999931, 48.863753069000026 ], [ -123.65932689, 48.864123890000037 ], [ -123.659345052999953, 48.864970975000112 ], [ -123.659428273999978, 48.868856766000057 ], [ -123.659433878999906, 48.869119799000089 ], [ -123.656609792, 48.86914078600006 ], [ -123.656628090999959, 48.869999903000121 ], [ -123.65662827199999, 48.870008909 ], [ -123.656642021999971, 48.870725952000058 ], [ -123.656665811999972, 48.871967695000116 ], [ -123.656727761999946, 48.873351938000056 ], [ -123.655319864999939, 48.873361852000045 ], [ -123.654774414999935, 48.873365730000089 ], [ -123.653574392999943, 48.873374157000164 ], [ -123.65320621799998, 48.873376733000057 ], [ -123.651430217999945, 48.873389197000044 ], [ -123.651069817999939, 48.872609506000153 ], [ -123.650701521999906, 48.871812594000097 ], [ -123.650229911999986, 48.870792102000145 ], [ -123.650188144999987, 48.870640821000045 ], [ -123.650033970999957, 48.870082313000111 ], [ -123.649831637999966, 48.869175185000088 ], [ -123.649444806999909, 48.867441034000173 ] ], [ [ -123.656867026999976, 48.867509861000073 ], [ -123.656911484999924, 48.86662144400006 ], [ -123.65549359399995, 48.866590371000044 ], [ -123.655533516, 48.865793056000037 ], [ -123.652729146999945, 48.865731542000077 ], [ -123.652644105999983, 48.867427922000083 ], [ -123.656314833999957, 48.867508424000071 ], [ -123.656315365999916, 48.867497774000086 ], [ -123.656867026999976, 48.867509861000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96271750", "BldgCostT": "62065000", "sL_LossRatio": "0.710987647661686", "sL_AssetLoss": "1075262", "sL_BldgLoss": "764498", "sL_StrLoss": "365978", "sL_NStrLoss": "398520", "sL_ContLoss": "310764", "geom_point": "0101000020E61000006D7D9A8B26E95EC0C34861A4386E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.644542083, 48.862303504000081 ], [ -123.644529495999933, 48.8615797020001 ], [ -123.642109385999944, 48.861589388000041 ], [ -123.642109914999978, 48.862310292000053 ], [ -123.64210839499999, 48.863041911000039 ], [ -123.640966313999954, 48.863063591000113 ], [ -123.639740511999946, 48.863069005000057 ], [ -123.639756882999961, 48.86229300100009 ], [ -123.639788516999943, 48.860794667000057 ], [ -123.639789595999972, 48.860744403000076 ], [ -123.640954511999922, 48.860728710000039 ], [ -123.64094890899996, 48.859221222000087 ], [ -123.640948602999941, 48.859143608000146 ], [ -123.64096220199994, 48.859143596000116 ], [ -123.644029958999923, 48.85914033300002 ], [ -123.64567337599999, 48.85913958599999 ], [ -123.64569325799999, 48.860595418000095 ], [ -123.645694582999937, 48.860694405000082 ], [ -123.645698021999976, 48.860937233000087 ], [ -123.645717627999943, 48.862322205000048 ], [ -123.64572872299999, 48.863060098000055 ], [ -123.645740518999929, 48.863843701000128 ], [ -123.644569492999935, 48.863842199000018 ], [ -123.644560625999986, 48.863327534000071 ], [ -123.644555616999966, 48.863037294000023 ], [ -123.644542083, 48.862303504000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179001083", "BldgCostT": "117788333", "sL_LossRatio": "0.786361771258753", "sL_AssetLoss": "1406209", "sL_BldgLoss": "1105789", "sL_StrLoss": "556384", "sL_NStrLoss": "549405", "sL_ContLoss": "300420", "geom_point": "0101000020E61000004AD9226977E95EC08270BB86CF6F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.645904010999942, 48.882508906000062 ], [ -123.645734209999929, 48.882023286000106 ], [ -123.645933179999943, 48.881563193000076 ], [ -123.645344811999962, 48.881413709000107 ], [ -123.645216495999975, 48.880992093000074 ], [ -123.644791292999926, 48.880795603000067 ], [ -123.644348794999985, 48.880366904000098 ], [ -123.644176993999963, 48.878640810000071 ], [ -123.643418829999945, 48.878555163000058 ], [ -123.643417426999989, 48.87844579300004 ], [ -123.643298731999934, 48.878443178000062 ], [ -123.643188992999967, 48.878196388000042 ], [ -123.643080296, 48.877116912000105 ], [ -123.643502006999967, 48.875946200000058 ], [ -123.643459305999926, 48.874712788000103 ], [ -123.644144892999975, 48.873999294000029 ], [ -123.64422308499999, 48.873683097000011 ], [ -123.643724397, 48.873129091000173 ], [ -123.643464985999969, 48.873120501000059 ], [ -123.643347955999928, 48.873028823000062 ], [ -123.643347435999942, 48.872988082000056 ], [ -123.643296312999937, 48.87298836700009 ], [ -123.64293468599999, 48.872705073000134 ], [ -123.64293142599999, 48.872450648000019 ], [ -123.64242383699991, 48.872453478000033 ], [ -123.642110295999942, 48.872224459000108 ], [ -123.642109794999953, 48.87218535100002 ], [ -123.642057154999947, 48.872185643000087 ], [ -123.641697321999985, 48.871922806000093 ], [ -123.641697255999929, 48.871917770000017 ], [ -123.641690478999962, 48.871917808000013 ], [ -123.641284352999946, 48.871621151000092 ], [ -123.641283615999939, 48.871563493000075 ], [ -123.641249338999955, 48.871538662000056 ], [ -123.641283043999977, 48.87151881500008 ], [ -123.641282005999969, 48.871437542000116 ], [ -123.641438712, 48.871351691000037 ], [ -123.641503706999984, 48.871153704000022 ], [ -123.64127473399995, 48.870868570000034 ], [ -123.641274376999974, 48.870840616000073 ], [ -123.641252383999955, 48.870840739000094 ], [ -123.640798090999937, 48.870275008000156 ], [ -123.640668986999941, 48.869790703000056 ], [ -123.64072089199999, 48.869764185000108 ], [ -123.640851515999941, 48.869763459000033 ], [ -123.640850676999918, 48.86969787800011 ], [ -123.641114887999947, 48.869562894000076 ], [ -123.642038522999911, 48.86927940200011 ], [ -123.642064015999978, 48.869044498000072 ], [ -123.642001249999936, 48.868947433000123 ], [ -123.642886476999976, 48.868942501000106 ], [ -123.642876105999946, 48.868132927000033 ], [ -123.644921370999938, 48.868121506000094 ], [ -123.644924839999959, 48.868391363000114 ], [ -123.645742950999974, 48.868386785000126 ], [ -123.645746423, 48.868656642000055 ], [ -123.646564538999925, 48.868652058000116 ], [ -123.646568015999932, 48.868921915000058 ], [ -123.647101967999959, 48.868918920000048 ], [ -123.647109489999949, 48.86876923500003 ], [ -123.647041648999959, 48.86876774400006 ], [ -123.647078124999936, 48.868041868000041 ], [ -123.646976990999946, 48.868039643000053 ], [ -123.64699347599999, 48.867711601000082 ], [ -123.646886206999966, 48.86770924200006 ], [ -123.646901725999911, 48.867400452000027 ], [ -123.646855826, 48.867399442000078 ], [ -123.646860773, 48.867301010000141 ], [ -123.646547152999943, 48.867302770000059 ], [ -123.646538569999919, 48.866636608000043 ], [ -123.644811181999927, 48.866598582000044 ], [ -123.644807397999926, 48.866673806000044 ], [ -123.64416737899991, 48.866659710000107 ], [ -123.644117426999941, 48.86765252000005 ], [ -123.641292393999933, 48.86759025400012 ], [ -123.641207516999941, 48.867168793000083 ], [ -123.64106881399999, 48.866963697000052 ], [ -123.63996158499998, 48.865691896000051 ], [ -123.639430097999963, 48.865640614 ], [ -123.639406308999952, 48.865505324000054 ], [ -123.640135589999915, 48.865496996000054 ], [ -123.640648698999982, 48.865497056000088 ], [ -123.64103700899993, 48.865497083000044 ], [ -123.641014580999979, 48.864673015000065 ], [ -123.640994896, 48.864049373000086 ], [ -123.640989388999941, 48.863875895000135 ], [ -123.640966313999954, 48.863063591000113 ], [ -123.64210839499999, 48.863041911000039 ], [ -123.642109914999978, 48.862310292000053 ], [ -123.642109385999944, 48.861589388000041 ], [ -123.644529495999933, 48.8615797020001 ], [ -123.644542083, 48.862303504000081 ], [ -123.644555616999966, 48.863037294000023 ], [ -123.644560625999986, 48.863327534000071 ], [ -123.644569492999935, 48.863842199000018 ], [ -123.645740518999929, 48.863843701000128 ], [ -123.646970013999962, 48.863845489 ], [ -123.648098877000024, 48.863845094000069 ], [ -123.648879146999931, 48.863844228000126 ], [ -123.649269945999933, 48.863843817000074 ], [ -123.649307434999983, 48.865369678000036 ], [ -123.649310236999938, 48.865482823000065 ], [ -123.649289906999954, 48.865616618000104 ], [ -123.649197360999921, 48.865696580000105 ], [ -123.648902947999943, 48.865756798000099 ], [ -123.649015627999958, 48.866106981000087 ], [ -123.64940401699999, 48.867314242000148 ], [ -123.649444806999909, 48.867441034000173 ], [ -123.649831637999966, 48.869175185000088 ], [ -123.650033970999957, 48.870082313000111 ], [ -123.650188144999987, 48.870640821000045 ], [ -123.650229911999986, 48.870792102000145 ], [ -123.650701521999906, 48.871812594000097 ], [ -123.651069817999939, 48.872609506000153 ], [ -123.651430217999945, 48.873389197000044 ], [ -123.651684840999934, 48.873835333000052 ], [ -123.652049884999983, 48.874475005000114 ], [ -123.652444700999965, 48.874804393000062 ], [ -123.65274181199996, 48.87493528800006 ], [ -123.65306874099997, 48.875049739000055 ], [ -123.653587783999939, 48.875231403000043 ], [ -123.655348687999918, 48.875867224000025 ], [ -123.655654697999964, 48.875977707000104 ], [ -123.655956574999919, 48.876068993000047 ], [ -123.656366885999915, 48.876116691000036 ], [ -123.656889471999975, 48.876119563000017 ], [ -123.656896939999939, 48.87668996100011 ], [ -123.656487818999977, 48.876692290000058 ], [ -123.656491350999914, 48.876962147000043 ], [ -123.656900475000015, 48.87695981800001 ], [ -123.656904008999973, 48.87722967400007 ], [ -123.657313133999949, 48.877227342 ], [ -123.657323742999935, 48.878036911000137 ], [ -123.656914608999941, 48.87803924300006 ], [ -123.656918142, 48.878309099000084 ], [ -123.656509006999954, 48.878311429000085 ], [ -123.656511073999965, 48.878469431000077 ], [ -123.660540781999913, 48.878557631000035 ], [ -123.659950093999925, 48.879144913000061 ], [ -123.659596894999964, 48.879137801000098 ], [ -123.659527879, 48.879201896000055 ], [ -123.659509386999929, 48.879733094000073 ], [ -123.659742412999975, 48.879875603000038 ], [ -123.659525006999942, 48.88002939900008 ], [ -123.659435657999921, 48.880241286000029 ], [ -123.658969008999961, 48.880319481000086 ], [ -123.65715952499994, 48.880609181000096 ], [ -123.65695990599994, 48.880641109000059 ], [ -123.656832182999921, 48.880601901000027 ], [ -123.656653504999966, 48.880386884000124 ], [ -123.656514921999985, 48.880352702000039 ], [ -123.655822509999922, 48.880416584000095 ], [ -123.655900727999921, 48.878854645000118 ], [ -123.65447037099996, 48.878862772000105 ], [ -123.654484455999949, 48.879942198000109 ], [ -123.653257007999954, 48.879949158000038 ], [ -123.653267551999988, 48.880758728000018 ], [ -123.65273767799999, 48.880761728000053 ], [ -123.652727634999962, 48.880962010000097 ], [ -123.652486486999948, 48.88099638900006 ], [ -123.651657308999972, 48.881190093000058 ], [ -123.65114130799995, 48.881408008000079 ], [ -123.650824429999915, 48.881694129 ], [ -123.650531878999985, 48.88174999500005 ], [ -123.650274303999964, 48.881798641000067 ], [ -123.650216761999971, 48.881851103000045 ], [ -123.650140643999947, 48.881898755000087 ], [ -123.64977782899993, 48.882466722000103 ], [ -123.649460418999965, 48.882731323000016 ], [ -123.648562113999972, 48.882849635000035 ], [ -123.648017031999956, 48.882457976000069 ], [ -123.647005935999971, 48.882693356000104 ], [ -123.646788923999949, 48.882783620000048 ], [ -123.646698439999938, 48.882809211000115 ], [ -123.645904010999942, 48.882508906000062 ] ], [ [ -123.654868941999922, 48.878050879000106 ], [ -123.65486542, 48.877781023000082 ], [ -123.654456288999981, 48.877783345000111 ], [ -123.654459809999963, 48.878053201000121 ], [ -123.654868941999922, 48.878050879000106 ] ], [ [ -123.649441909999922, 48.869715395000036 ], [ -123.649435937999968, 48.869253975000014 ], [ -123.648208311999909, 48.869226989000097 ], [ -123.64821122499994, 48.869452443000093 ], [ -123.648620289999926, 48.869450142000098 ], [ -123.648623775999965, 48.869719999000054 ], [ -123.649441909999922, 48.869715395000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.771046770601336", "sL_AssetLoss": "2245", "sL_BldgLoss": "1731", "sL_StrLoss": "391", "sL_NStrLoss": "1340", "sL_ContLoss": "514", "geom_point": "0101000020E6100000FD20FDBC4AEA5EC0DF52AD0992704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.661283103999921, 48.878777499000122 ], [ -123.661353060999929, 48.878776404000106 ], [ -123.661295483999965, 48.879928848000098 ], [ -123.660945342999966, 48.879987961000118 ], [ -123.659959120999957, 48.879757403000063 ], [ -123.660038708999949, 48.879567896 ], [ -123.660862120999965, 48.878897101000149 ], [ -123.661283103999921, 48.878777499000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9416000", "BldgCostT": "6230000", "sL_LossRatio": "0.707555750951291", "sL_AssetLoss": "131926", "sL_BldgLoss": "93345", "sL_StrLoss": "49119", "sL_NStrLoss": "44226", "sL_ContLoss": "38581", "geom_point": "0101000020E610000059BA2F259AEA5EC0A4BDEA9657704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.664038918999964, 48.879465640000014 ], [ -123.664115317999972, 48.877934622000097 ], [ -123.662100661999915, 48.877890613000019 ], [ -123.66211759499997, 48.877551548000028 ], [ -123.661016842999956, 48.877527486000105 ], [ -123.661021523000016, 48.877433844000052 ], [ -123.660208519999983, 48.87741606500007 ], [ -123.660284329999953, 48.875899273000059 ], [ -123.661466049999916, 48.875821955000013 ], [ -123.66189302599993, 48.875835799000058 ], [ -123.662007772, 48.875849501000054 ], [ -123.662197648999893, 48.875872184000031 ], [ -123.662477652999954, 48.875938680000068 ], [ -123.665360035999981, 48.876860298000075 ], [ -123.667055405999989, 48.877332482000035 ], [ -123.667791497999985, 48.877539544000051 ], [ -123.668311338999956, 48.877630165000035 ], [ -123.668834195999963, 48.877661379000074 ], [ -123.670749829, 48.877624297000075 ], [ -123.671615503999973, 48.877607517000044 ], [ -123.672458107999972, 48.87776458400009 ], [ -123.673067672999963, 48.877878215000088 ], [ -123.673763675999965, 48.878007923000034 ], [ -123.674297074999984, 48.878107359000069 ], [ -123.673103124999912, 48.878245418000084 ], [ -123.667272585999939, 48.878919557000096 ], [ -123.664038918999964, 48.879465640000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25088083", "BldgCostT": "17038333", "sL_LossRatio": "0.899502386464525", "sL_AssetLoss": "82674.6", "sL_BldgLoss": "74366", "sL_StrLoss": "54991", "sL_NStrLoss": "19375", "sL_ContLoss": "8308.6", "geom_point": "0101000020E61000003943160E29E75EC09608B729DC684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.606109796999931, 48.820948100000102 ], [ -123.606140400999962, 48.820348853000034 ], [ -123.604768502999903, 48.820318103000062 ], [ -123.605062805, 48.819910188000108 ], [ -123.605074295999927, 48.819844708000112 ], [ -123.604633615999958, 48.819417607000084 ], [ -123.604575506999979, 48.819277498000098 ], [ -123.604574333999963, 48.81924292100004 ], [ -123.604570106999972, 48.819115204000077 ], [ -123.604655989999941, 48.81898008700005 ], [ -123.605069499999985, 48.818581188000039 ], [ -123.605300219999947, 48.818405201000175 ], [ -123.605544525999946, 48.818282804000027 ], [ -123.605847204999961, 48.818217407000077 ], [ -123.607901479, 48.81819543500005 ], [ -123.60963110499992, 48.818176912000169 ], [ -123.609752107999938, 48.818124702000034 ], [ -123.609817106999969, 48.818049489000025 ], [ -123.609802461999976, 48.817799844000056 ], [ -123.609795305999967, 48.817677769000042 ], [ -123.609785081999945, 48.817634109000061 ], [ -123.609720096000018, 48.817356355000044 ], [ -123.611149905, 48.817202492000042 ], [ -123.611966645999971, 48.817246030000085 ], [ -123.612077774999975, 48.817280939000106 ], [ -123.612281528, 48.817287301000164 ], [ -123.61231588699998, 48.817280487000076 ], [ -123.612567347999956, 48.817230606000059 ], [ -123.613028318, 48.81724893300003 ], [ -123.613749259999977, 48.817277616000112 ], [ -123.614636314999984, 48.817312867000084 ], [ -123.614864783999906, 48.817261199000036 ], [ -123.614962662999957, 48.817182271000121 ], [ -123.617877516999926, 48.818527827 ], [ -123.619405096999984, 48.819113487000045 ], [ -123.619387641999936, 48.81945717100011 ], [ -123.618985559999928, 48.819448210000076 ], [ -123.618924890999921, 48.820642580000062 ], [ -123.613489295999926, 48.820521296000052 ], [ -123.613520499999964, 48.819908417000129 ], [ -123.612960524999977, 48.819895906000092 ], [ -123.61294532699999, 48.820194327000124 ], [ -123.611842905999964, 48.820169689000082 ], [ -123.611834791999968, 48.820328954000054 ], [ -123.611583454999916, 48.82032333600003 ], [ -123.61154542199999, 48.821069760000071 ], [ -123.606109796999931, 48.820948100000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33498500", "BldgCostT": "21155000", "sL_LossRatio": "0.790707625118036", "sL_AssetLoss": "135552", "sL_BldgLoss": "107182", "sL_StrLoss": "65261", "sL_NStrLoss": "41921", "sL_ContLoss": "28370", "geom_point": "0101000020E6100000A669BC19DAE85EC0E8105920D1694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.635871233999922, 48.828760560000056 ], [ -123.635906655999946, 48.828058379000076 ], [ -123.632812765999944, 48.827989883000043 ], [ -123.63299460899999, 48.824389472000085 ], [ -123.63565972799999, 48.824448481000104 ], [ -123.635724908999961, 48.824475165000074 ], [ -123.63667362699999, 48.824736756000021 ], [ -123.637220249999956, 48.824959706000058 ], [ -123.637966478999928, 48.825351073000085 ], [ -123.638288032999981, 48.825450079000085 ], [ -123.638674454999887, 48.825530717000092 ], [ -123.639394959999919, 48.825570070000069 ], [ -123.640409427999927, 48.825390628000051 ], [ -123.643671798999918, 48.824665148000129 ], [ -123.643647992999945, 48.825327810000026 ], [ -123.643706707999982, 48.826054508000055 ], [ -123.643746536999942, 48.826195676000118 ], [ -123.643766775999921, 48.826267593000097 ], [ -123.643887996999979, 48.826428015000097 ], [ -123.643970046999968, 48.826499945000066 ], [ -123.644070389999953, 48.826587894000063 ], [ -123.644206919999931, 48.826658795000142 ], [ -123.644757187999971, 48.826944558000086 ], [ -123.64477708699998, 48.826954909000179 ], [ -123.645037657999936, 48.82712858900004 ], [ -123.64531554899996, 48.827313841000077 ], [ -123.645512799999935, 48.827445335000064 ], [ -123.645502436999934, 48.827651605000078 ], [ -123.643329494999961, 48.827603702000047 ], [ -123.643310468999971, 48.827982057000028 ], [ -123.641355238999921, 48.827938917000019 ], [ -123.641307840999943, 48.828880705000103 ], [ -123.635871233999922, 48.828760560000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188636085", "BldgCostT": "125938335", "sL_LossRatio": "0.816201037235878", "sL_AssetLoss": "1102912.1", "sL_BldgLoss": "900198", "sL_StrLoss": "540276", "sL_NStrLoss": "359922", "sL_ContLoss": "202714.1", "geom_point": "0101000020E6100000022DB87A69E85EC05C1F281A986D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.639209313999956, 48.86440149200007 ], [ -123.637545487999915, 48.863411691000088 ], [ -123.637498117999954, 48.863416669000131 ], [ -123.637496700999961, 48.863305009 ], [ -123.636866789999928, 48.863308490000051 ], [ -123.636876502999925, 48.863297782000117 ], [ -123.636675151999953, 48.863032062000045 ], [ -123.636672054, 48.86278776299999 ], [ -123.636583513999966, 48.862785807000073 ], [ -123.636689593999947, 48.862588514000073 ], [ -123.636247811999951, 48.862041588000132 ], [ -123.635560119999951, 48.861641400000039 ], [ -123.634637978999962, 48.861516320000092 ], [ -123.634153509000015, 48.861450603000058 ], [ -123.633714818999977, 48.861301 ], [ -123.633230795999935, 48.861743990000029 ], [ -123.63224951200003, 48.86296449200006 ], [ -123.6317605, 48.863074191000116 ], [ -123.630752703999946, 48.863079884000058 ], [ -123.627542904999956, 48.862656907000037 ], [ -123.622661986999915, 48.861629996000069 ], [ -123.621160395999979, 48.861423513000084 ], [ -123.619832808999931, 48.86107889200013 ], [ -123.619133696999981, 48.860668692000047 ], [ -123.618691283999951, 48.860248500000104 ], [ -123.61784279699999, 48.858931102000028 ], [ -123.617730446999971, 48.857519380000042 ], [ -123.617791434000011, 48.857520739000066 ], [ -123.617789164999976, 48.857336326000052 ], [ -123.617715749999974, 48.857334691000041 ], [ -123.61766677599995, 48.856719295000062 ], [ -123.617203683999946, 48.855686802 ], [ -123.616515810999928, 48.85512419500003 ], [ -123.61583018099999, 48.854724170000097 ], [ -123.615882846999924, 48.853689539000122 ], [ -123.616778620999952, 48.85370951000008 ], [ -123.616798030999988, 48.853328060000088 ], [ -123.621012699999966, 48.853421924000038 ], [ -123.621009207999947, 48.853139654000138 ], [ -123.624689601999989, 48.853119771000088 ], [ -123.624706390999947, 48.854469067000117 ], [ -123.625524277999943, 48.854464633000077 ], [ -123.625527639999987, 48.854734493000052 ], [ -123.626754475999917, 48.85472783000003 ], [ -123.626755220999939, 48.854787404000064 ], [ -123.62680244799995, 48.854788453000083 ], [ -123.626791855999954, 48.854997504000011 ], [ -123.627072718999955, 48.85499597700008 ], [ -123.627098556999982, 48.854486017000113 ], [ -123.629076592999979, 48.854529898000067 ], [ -123.629173038999966, 48.852624539000054 ], [ -123.62821061899993, 48.852603193000036 ], [ -123.628392911999981, 48.849002932000111 ], [ -123.630140637999943, 48.849041690000014 ], [ -123.630190794999976, 48.848050273000126 ], [ -123.633313752, 48.848119457000045 ], [ -123.633354609999955, 48.847310749000044 ], [ -123.638793361999944, 48.847431017000055 ], [ -123.638706327999955, 48.84915764100009 ], [ -123.639346933, 48.849171788000099 ], [ -123.639416943999947, 48.847782500000051 ], [ -123.644667876999961, 48.847898320000105 ], [ -123.644654387999964, 48.84821249800013 ], [ -123.644709009999985, 48.848885903000053 ], [ -123.644819695999956, 48.849392881000014 ], [ -123.64481523900001, 48.84944623500013 ], [ -123.644452082999948, 48.849429991000051 ], [ -123.643750196000013, 48.849700385000098 ], [ -123.642397063999965, 48.850030140000101 ], [ -123.641482356999958, 48.850155050000055 ], [ -123.640929321, 48.850080807000012 ], [ -123.640601392999898, 48.849900894000051 ], [ -123.640521184999912, 48.85006129500006 ], [ -123.639899405000023, 48.850649488000037 ], [ -123.639866889999936, 48.850835303000046 ], [ -123.63987383199995, 48.851371061000044 ], [ -123.63987441799992, 48.851416687000047 ], [ -123.639841506999986, 48.851663781000106 ], [ -123.638951263999928, 48.851668424000074 ], [ -123.636647676999985, 48.851680329000075 ], [ -123.635546700999967, 48.851685994000078 ], [ -123.634371980999958, 48.851721681000058 ], [ -123.633950193999937, 48.85173448700003 ], [ -123.63314141299999, 48.852276085000092 ], [ -123.633079096999921, 48.852403584000129 ], [ -123.63305669199994, 48.852846366000115 ], [ -123.633112304999884, 48.853039577000061 ], [ -123.633259491999937, 48.85322576600003 ], [ -123.633538582999961, 48.853413986000106 ], [ -123.63402955399998, 48.853666326000081 ], [ -123.634273080999918, 48.853696032000158 ], [ -123.636768101999948, 48.85366865100012 ], [ -123.637776688999949, 48.853657586000061 ], [ -123.641162823999977, 48.853620302000117 ], [ -123.64113291299999, 48.854133189000059 ], [ -123.641203902999976, 48.854426795000087 ], [ -123.641520395999947, 48.855359090000043 ], [ -123.641685073999923, 48.855753435000103 ], [ -123.64177680099999, 48.85597299900013 ], [ -123.6420032, 48.856315896000076 ], [ -123.642321001999974, 48.856575212000116 ], [ -123.643386694999919, 48.857231230000089 ], [ -123.644657067999916, 48.857689034000067 ], [ -123.644768177999964, 48.857761995000018 ], [ -123.645409657999934, 48.858183180000033 ], [ -123.64561468, 48.858411153000048 ], [ -123.645643030999963, 48.85876298800008 ], [ -123.64567337599999, 48.85913958599999 ], [ -123.644029958999923, 48.85914033300002 ], [ -123.64096220199994, 48.859143596000116 ], [ -123.640948602999941, 48.859143608000146 ], [ -123.64094890899996, 48.859221222000087 ], [ -123.640954511999922, 48.860728710000039 ], [ -123.639789595999972, 48.860744403000076 ], [ -123.639788516999943, 48.860794667000057 ], [ -123.639756882999961, 48.86229300100009 ], [ -123.639740511999946, 48.863069005000057 ], [ -123.640966313999954, 48.863063591000113 ], [ -123.640989388999941, 48.863875895000135 ], [ -123.640994896, 48.864049373000086 ], [ -123.641014580999979, 48.864673015000065 ], [ -123.64103700899993, 48.865497083000044 ], [ -123.640648698999982, 48.865497056000088 ], [ -123.640135589999915, 48.865496996000054 ], [ -123.639406308999952, 48.865505324000054 ], [ -123.639325912999979, 48.865048100000095 ], [ -123.638965818999978, 48.864680702000051 ], [ -123.639237206999937, 48.864508287000042 ], [ -123.639209313999956, 48.86440149200007 ] ], [ [ -123.634686145999979, 48.856172371000042 ], [ -123.634695008999955, 48.855996878000084 ], [ -123.634581262999959, 48.855994362000096 ], [ -123.634572398999978, 48.856169854000044 ], [ -123.634686145999979, 48.856172371000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29502500", "BldgCostT": "19850000", "sL_LossRatio": "0.868661541330791", "sL_AssetLoss": "96514", "sL_BldgLoss": "83838", "sL_StrLoss": "57800", "sL_NStrLoss": "26038", "sL_ContLoss": "12676", "geom_point": "0101000020E61000003030C8E92DE65EC0E62969CDA8694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.587324485999957, 48.827871487000074 ], [ -123.587370624999892, 48.826975249000128 ], [ -123.586796120999949, 48.826962275000014 ], [ -123.586804992999959, 48.826789981000083 ], [ -123.588760286999957, 48.826606660000046 ], [ -123.588856854999975, 48.826472297000059 ], [ -123.58936909, 48.826095011000056 ], [ -123.589685937999917, 48.825992524000078 ], [ -123.591700499999888, 48.825340999000026 ], [ -123.592539302999981, 48.825115705000044 ], [ -123.593760983, 48.824880099000104 ], [ -123.59471929099999, 48.82489808400009 ], [ -123.595543303999989, 48.825040095000126 ], [ -123.59592121599999, 48.825020696000109 ], [ -123.596138404, 48.824976894000024 ], [ -123.59634009399997, 48.82481019500009 ], [ -123.596431687999939, 48.824616701000117 ], [ -123.59649540199996, 48.82422348300004 ], [ -123.598289703999953, 48.823750199000081 ], [ -123.598651402999977, 48.823595191000024 ], [ -123.599940809999964, 48.822832094000056 ], [ -123.599999494999977, 48.822805336000052 ], [ -123.600170713999958, 48.822727300000111 ], [ -123.600315304999967, 48.822691797000083 ], [ -123.60090541199996, 48.822753707000089 ], [ -123.601291994999926, 48.822694813000084 ], [ -123.602001015999946, 48.822533203000027 ], [ -123.602343803999972, 48.822426497 ], [ -123.602535096999986, 48.822331583000043 ], [ -123.60272302099996, 48.82216911000004 ], [ -123.603320696999958, 48.821522007000063 ], [ -123.603829977999979, 48.821219795000061 ], [ -123.604030122999959, 48.821149747000078 ], [ -123.603890074999953, 48.82388933900009 ], [ -123.603306041999971, 48.823876239000136 ], [ -123.603243816999935, 48.82509305100006 ], [ -123.602227092999925, 48.825070239000127 ], [ -123.602207495999934, 48.825453275000058 ], [ -123.601265941999955, 48.825432141000064 ], [ -123.601242480999986, 48.825890498000078 ], [ -123.600717402999948, 48.825878708000111 ], [ -123.60067900199999, 48.826628810000074 ], [ -123.598952648999941, 48.826590031000109 ], [ -123.598929254999945, 48.827046652000085 ], [ -123.597720930999941, 48.82701949200009 ], [ -123.597716609999935, 48.827103781000098 ], [ -123.595334765999922, 48.827050204000074 ], [ -123.595318928999959, 48.827358840000151 ], [ -123.593645716999958, 48.827321171000023 ], [ -123.593624782999939, 48.827728880000052 ], [ -123.592775469999978, 48.827709749000029 ], [ -123.592760863999956, 48.827994101000058 ], [ -123.587324485999957, 48.827871487000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.945691202872531", "sL_AssetLoss": "2228", "sL_BldgLoss": "2107", "sL_StrLoss": "1720", "sL_NStrLoss": "387", "sL_ContLoss": "121", "geom_point": "0101000020E6100000BC54743DB4E75EC056B693B1EF684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.619450041999968, 48.820117253000092 ], [ -123.619499187, 48.819149560000078 ], [ -123.620183359999942, 48.819411853000091 ], [ -123.622178471999973, 48.820178015000117 ], [ -123.619450041999968, 48.820117253000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25825167", "BldgCostT": "17546667", "sL_LossRatio": "0.913832797070898", "sL_AssetLoss": "79314.4", "sL_BldgLoss": "72480.1", "sL_StrLoss": "55437.1", "sL_NStrLoss": "17043", "sL_ContLoss": "6834.3", "geom_point": "0101000020E6100000F2AACE6A41E95EC079189CB9EE6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.644057840999977, 48.837032184000037 ], [ -123.644103477999948, 48.836124500000025 ], [ -123.642553242999938, 48.836090316000153 ], [ -123.642553819999989, 48.836078852000057 ], [ -123.64129979799999, 48.836051183000038 ], [ -123.641481020999947, 48.832450804000089 ], [ -123.642599644999962, 48.832475486000106 ], [ -123.642652332999944, 48.831428129000074 ], [ -123.643059968999978, 48.831437121000093 ], [ -123.643090547999975, 48.830829139000109 ], [ -123.648527411999964, 48.830948915000086 ], [ -123.648503986999984, 48.831415757000109 ], [ -123.648726033999964, 48.831420642000069 ], [ -123.648706056999927, 48.831442955000085 ], [ -123.648651102999921, 48.831504296000027 ], [ -123.648442693999968, 48.831690850000051 ], [ -123.648366201999949, 48.831759311000098 ], [ -123.648171715, 48.831894865000038 ], [ -123.647886977, 48.832093334000078 ], [ -123.647780995999952, 48.832167184000134 ], [ -123.647644069999899, 48.832279272000115 ], [ -123.646960801999981, 48.832838482000071 ], [ -123.646710984999956, 48.833096992000044 ], [ -123.646517392999954, 48.833347787000037 ], [ -123.646441682999935, 48.833555199 ], [ -123.646383406999945, 48.833983698000075 ], [ -123.646232291999965, 48.834337216000087 ], [ -123.646051502999967, 48.834632391000071 ], [ -123.64499211899998, 48.835674100000105 ], [ -123.644893200999888, 48.83588191300008 ], [ -123.644856891999922, 48.836116310000072 ], [ -123.644936215999962, 48.83643520400004 ], [ -123.645172799999941, 48.837087389000089 ], [ -123.645321313999915, 48.837328588000055 ], [ -123.645563192999987, 48.837579003000059 ], [ -123.646608709999938, 48.838497129000082 ], [ -123.64747670399997, 48.839259307000098 ], [ -123.647925817999976, 48.839773798000095 ], [ -123.648058194999962, 48.840010991000035 ], [ -123.648132394999962, 48.840267595000064 ], [ -123.648151095999964, 48.840599688000047 ], [ -123.648135743999973, 48.840726338000046 ], [ -123.642900383999987, 48.840611012000046 ], [ -123.643081502000015, 48.837010658000075 ], [ -123.644057840999977, 48.837032184000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947916", "BldgCostT": "4791666", "sL_LossRatio": "0.803622432400075", "sL_AssetLoss": "58469", "sL_BldgLoss": "46987", "sL_StrLoss": "25540", "sL_NStrLoss": "21447", "sL_ContLoss": "11482", "geom_point": "0101000020E610000091715A2A4EE85EC00FC169A8EE684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.627144203999961, 48.817922709000058 ], [ -123.632579531999966, 48.818043299000095 ], [ -123.632397681, 48.821643746000063 ], [ -123.630820741999955, 48.821608788000091 ], [ -123.626961936999919, 48.821523147000079 ], [ -123.6270564269999, 48.819656700000088 ], [ -123.627144203999961, 48.817922709000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53629666", "BldgCostT": "35986666", "sL_LossRatio": "0.769795751819192", "sL_AssetLoss": "441130", "sL_BldgLoss": "339580", "sL_StrLoss": "192330", "sL_NStrLoss": "147250", "sL_ContLoss": "101550", "geom_point": "0101000020E61000005E402621EAE95EC08D989F3CA8684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.650392062999941, 48.820561979000047 ], [ -123.650456603999913, 48.819274386000075 ], [ -123.653417836999921, 48.819339470000038 ], [ -123.653460629999984, 48.818484657000077 ], [ -123.657870707999919, 48.818581433000112 ], [ -123.657921803999969, 48.81755876400009 ], [ -123.661010456999918, 48.817626433000022 ], [ -123.661014930999968, 48.817536761000056 ], [ -123.659615689999967, 48.817506116000025 ], [ -123.659735330999951, 48.815109604000035 ], [ -123.659112818999972, 48.815095964000143 ], [ -123.659032059999944, 48.816713205000028 ], [ -123.653596818999944, 48.816593961000073 ], [ -123.65359771, 48.816576176000105 ], [ -123.652216271999976, 48.816545824000102 ], [ -123.652219356999979, 48.816484233000047 ], [ -123.649604450999959, 48.816426731000071 ], [ -123.649493890999977, 48.818631734000114 ], [ -123.644058451999953, 48.818512005000059 ], [ -123.644165866999941, 48.816374686000124 ], [ -123.643883878999972, 48.816368467000132 ], [ -123.64023884199996, 48.816288010000093 ], [ -123.640348193999941, 48.814115577000088 ], [ -123.643938896999927, 48.814345206000048 ], [ -123.645464370999889, 48.814341272000021 ], [ -123.645777841999987, 48.814340469000058 ], [ -123.645747494999924, 48.814944768000082 ], [ -123.64686656399999, 48.814969425000058 ], [ -123.646895822000019, 48.814386539000068 ], [ -123.646502788999953, 48.814377880000038 ], [ -123.646504760999932, 48.814338603000081 ], [ -123.64734423099992, 48.814336444000091 ], [ -123.64851528399997, 48.814333398000088 ], [ -123.649510504999938, 48.814341372000058 ], [ -123.650901599999898, 48.814352509000045 ], [ -123.651226798999971, 48.81435483800005 ], [ -123.652166160999968, 48.814361543000089 ], [ -123.652562120999946, 48.814364386000101 ], [ -123.653597603999941, 48.814371783000091 ], [ -123.654101466999947, 48.814375378000094 ], [ -123.655450123, 48.814384992000065 ], [ -123.656035973999977, 48.814389171000045 ], [ -123.65746607899996, 48.814399340000101 ], [ -123.657847370999932, 48.81440204100015 ], [ -123.659128483999922, 48.814411126000067 ], [ -123.661412492999929, 48.814427300000126 ], [ -123.664002925999966, 48.814437090000077 ], [ -123.668386393999967, 48.814453500000099 ], [ -123.667952609999986, 48.815174406000047 ], [ -123.667870406999953, 48.815310987000018 ], [ -123.665692997999969, 48.820411390000082 ], [ -123.664451114999935, 48.820327500000154 ], [ -123.663428786999972, 48.820258317000054 ], [ -123.662346788999955, 48.820185106000032 ], [ -123.661369731999969, 48.820191199000043 ], [ -123.66010419399997, 48.82019910300005 ], [ -123.659639685999963, 48.820184396000087 ], [ -123.659428979999959, 48.820164340000112 ], [ -123.658412129999974, 48.820067536000082 ], [ -123.658360200999965, 48.820062596000071 ], [ -123.657820179999973, 48.820114804000113 ], [ -123.657517404999922, 48.820239689000047 ], [ -123.656698158999959, 48.820676909000063 ], [ -123.65634328299997, 48.820866295000073 ], [ -123.656003504999944, 48.820996792000116 ], [ -123.655483186999945, 48.82109169500005 ], [ -123.654428483999965, 48.821206410000052 ], [ -123.65398799499998, 48.821310315000112 ], [ -123.653926857999963, 48.821329812000066 ], [ -123.653515204999977, 48.821461200000016 ], [ -123.653418156999962, 48.821499199000051 ], [ -123.653211644999971, 48.821580058000031 ], [ -123.653064208999965, 48.821637803000016 ], [ -123.652976548999945, 48.821715125000047 ], [ -123.652556017, 48.82208620600003 ], [ -123.652176598, 48.822467267000036 ], [ -123.65194579099996, 48.822699098000079 ], [ -123.651497116999948, 48.823100995000068 ], [ -123.651095899999973, 48.823369710000115 ], [ -123.650573593000018, 48.823610492000036 ], [ -123.650304414999965, 48.823689298000062 ], [ -123.649885710999939, 48.823763907000043 ], [ -123.648979409999981, 48.823876408000096 ], [ -123.648525802, 48.823912226000054 ], [ -123.648060102999935, 48.823949008000085 ], [ -123.64711290799994, 48.823982186000094 ], [ -123.647002699000012, 48.823999141000115 ], [ -123.647093271999935, 48.822194911000111 ], [ -123.647555529999963, 48.82220509000004 ], [ -123.647616521, 48.820989821000062 ], [ -123.64808852099999, 48.82100021300004 ], [ -123.648113026999965, 48.820511832000051 ], [ -123.650392062999941, 48.820561979000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68047750", "BldgCostT": "45775000", "sL_LossRatio": "0.775112425595825", "sL_AssetLoss": "519476.9", "sL_BldgLoss": "402653", "sL_StrLoss": "215065", "sL_NStrLoss": "187588", "sL_ContLoss": "116823.9", "geom_point": "0101000020E61000000FDFCA2BBAE75EC0273EA9BC3E684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.619499187, 48.819149560000078 ], [ -123.619526636, 48.818609041000059 ], [ -123.61943082399992, 48.818606906000092 ], [ -123.619405096999984, 48.819113487000045 ], [ -123.617877516999926, 48.818527827 ], [ -123.614962662999957, 48.817182271000121 ], [ -123.614864783999906, 48.817261199000036 ], [ -123.614636314999984, 48.817312867000084 ], [ -123.613749259999977, 48.817277616000112 ], [ -123.613028318, 48.81724893300003 ], [ -123.612567347999956, 48.817230606000059 ], [ -123.61231588699998, 48.817280487000076 ], [ -123.612281528, 48.817287301000164 ], [ -123.612077774999975, 48.817280939000106 ], [ -123.611966645999971, 48.817246030000085 ], [ -123.611149905, 48.817202492000042 ], [ -123.609720096000018, 48.817356355000044 ], [ -123.609712643999956, 48.817324474000038 ], [ -123.609695831999915, 48.817040228000089 ], [ -123.609722060999928, 48.816793005000072 ], [ -123.609799881999933, 48.81664385100003 ], [ -123.609845693999958, 48.816556070000082 ], [ -123.610283790999944, 48.816047717000096 ], [ -123.610273628999963, 48.815579817000113 ], [ -123.610265998000017, 48.814639274000122 ], [ -123.610263374999931, 48.814313489 ], [ -123.610294076999949, 48.81416459900008 ], [ -123.610375294999955, 48.813797813000072 ], [ -123.611159868999948, 48.813815341000058 ], [ -123.611868545999954, 48.813831238000105 ], [ -123.611602051999924, 48.81351453900006 ], [ -123.611269582999952, 48.813119456000095 ], [ -123.610949507999962, 48.812914038000102 ], [ -123.610190793999919, 48.812134716000095 ], [ -123.609969364999969, 48.811995485000082 ], [ -123.60971132, 48.811881568000025 ], [ -123.609031949999988, 48.811653715000055 ], [ -123.608881719999943, 48.811532300000053 ], [ -123.608816971999943, 48.811388449000155 ], [ -123.608814047999971, 48.81112526400004 ], [ -123.608889209999944, 48.810852097000122 ], [ -123.609252015, 48.810672775000093 ], [ -123.609164378999935, 48.810443741000093 ], [ -123.608903217999938, 48.809963880000041 ], [ -123.609060287999952, 48.809898005000051 ], [ -123.609175519999894, 48.809771726000122 ], [ -123.609206757, 48.809639956000126 ], [ -123.60914391299994, 48.80951150200007 ], [ -123.608549128, 48.809039502000076 ], [ -123.60841006599999, 48.808819862000114 ], [ -123.60815264499999, 48.808413337000026 ], [ -123.608058120999928, 48.808212959000102 ], [ -123.608033603, 48.807973605000036 ], [ -123.608082305999943, 48.807818795000038 ], [ -123.608379070999959, 48.807520851000056 ], [ -123.609289203999978, 48.806741908000078 ], [ -123.609547317999912, 48.80688110600007 ], [ -123.609623633999917, 48.806986405000032 ], [ -123.609693126999957, 48.807676402000055 ], [ -123.609784538999989, 48.807884801000093 ], [ -123.609925631999957, 48.808051106000086 ], [ -123.610083808999931, 48.808177226000076 ], [ -123.61032100099996, 48.808299692000084 ], [ -123.611002323999941, 48.808569006000127 ], [ -123.611195996999967, 48.808691410000087 ], [ -123.612817509999928, 48.810020788000095 ], [ -123.613895217999982, 48.809424902000018 ], [ -123.614314020999942, 48.809211700000056 ], [ -123.614543410999929, 48.809141089000043 ], [ -123.61474728599994, 48.809116801000123 ], [ -123.614984822999958, 48.809126592000084 ], [ -123.615230583999931, 48.809187105000106 ], [ -123.615867790999971, 48.809406247000013 ], [ -123.615824085999975, 48.810265687000062 ], [ -123.615495493999958, 48.810258351000058 ], [ -123.615488501999891, 48.810395820000082 ], [ -123.617176047999962, 48.810433481000125 ], [ -123.617147083999967, 48.811003366000065 ], [ -123.617492668999887, 48.811011075000074 ], [ -123.617484827999959, 48.811165378000055 ], [ -123.618882229999883, 48.811196539000044 ], [ -123.61883152499999, 48.812194842000046 ], [ -123.620801426999904, 48.812238738000104 ], [ -123.620827501999983, 48.811724935000044 ], [ -123.62114048699999, 48.811731906000034 ], [ -123.621207759999933, 48.810406040000046 ], [ -123.621244709999928, 48.810406863000026 ], [ -123.621266056999985, 48.80998613900006 ], [ -123.618806640999964, 48.809931337000108 ], [ -123.619070387999969, 48.80985399300009 ], [ -123.619910278999924, 48.809491503000054 ], [ -123.620349305, 48.809417512000095 ], [ -123.622452586999884, 48.80919129400008 ], [ -123.622840790999987, 48.809181008000053 ], [ -123.623251206999967, 48.809213605000132 ], [ -123.623672481999975, 48.809327503000048 ], [ -123.624064899999965, 48.809502909000102 ], [ -123.625475272999921, 48.810336287000055 ], [ -123.625364715999964, 48.810423955000054 ], [ -123.624801968999947, 48.810739458000079 ], [ -123.624715558999952, 48.810781141000042 ], [ -123.624102986, 48.811076686000042 ], [ -123.623977680999957, 48.81113711600004 ], [ -123.623853885999935, 48.811196853000062 ], [ -123.623610381999981, 48.811358167000087 ], [ -123.623539909999963, 48.811422532000023 ], [ -123.623511144999924, 48.811448772000041 ], [ -123.623355094999937, 48.811591275000062 ], [ -123.623228963999978, 48.81179248400008 ], [ -123.62321302699999, 48.811817904000058 ], [ -123.623135258, 48.812091032000041 ], [ -123.623314783999959, 48.812842956000075 ], [ -123.623307409999981, 48.813122138000068 ], [ -123.623232619999925, 48.81330970700008 ], [ -123.623461869, 48.813353968000087 ], [ -123.623490644999947, 48.813359540000093 ], [ -123.624545988999941, 48.813563299000045 ], [ -123.624827598999971, 48.813588491000047 ], [ -123.627265614999928, 48.813525503000101 ], [ -123.628131899999957, 48.813394285000086 ], [ -123.628520704999957, 48.813373188000064 ], [ -123.629041732999937, 48.813403451000092 ], [ -123.629407710999914, 48.813424732000058 ], [ -123.629750548999965, 48.813444640000043 ], [ -123.631006678999952, 48.813517601000115 ], [ -123.632804844999939, 48.813632771000123 ], [ -123.632777387999965, 48.814176532000019 ], [ -123.637196234, 48.814274367000053 ], [ -123.637014752999974, 48.81787484300002 ], [ -123.631579433999946, 48.817754478000055 ], [ -123.631665980999969, 48.816041432000077 ], [ -123.629837292999937, 48.816000873000085 ], [ -123.629803298999931, 48.81667322400012 ], [ -123.624688799999888, 48.81655962300006 ], [ -123.624686791999977, 48.816599250000067 ], [ -123.62376328799995, 48.816578711000055 ], [ -123.623761765000026, 48.81660874300011 ], [ -123.625068024999905, 48.816637791000041 ], [ -123.624935665999942, 48.819250231000076 ], [ -123.624885603999971, 48.820238233000133 ], [ -123.622178471999973, 48.820178015000117 ], [ -123.620183359999942, 48.819411853000091 ], [ -123.619499187, 48.819149560000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24793751", "BldgCostT": "15625001", "sL_LossRatio": "0.766048705626577", "sL_AssetLoss": "203303", "sL_BldgLoss": "155740", "sL_StrLoss": "77720", "sL_NStrLoss": "78020", "sL_ContLoss": "47563", "geom_point": "0101000020E61000005251C43B23E95EC041AB82073C694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.64382346499994, 48.81858996600009 ], [ -123.647088129999958, 48.81866191800006 ], [ -123.646907390999942, 48.822262387000109 ], [ -123.646014663999949, 48.82224272100008 ], [ -123.645920656999976, 48.824114506000129 ], [ -123.645787265999942, 48.824111566000049 ], [ -123.645779574999906, 48.824264693000018 ], [ -123.643671798999918, 48.824665148000129 ], [ -123.640409427999927, 48.825390628000051 ], [ -123.639394959999919, 48.825570070000069 ], [ -123.638674454999887, 48.825530717000092 ], [ -123.638288032999981, 48.825450079000085 ], [ -123.637966478999928, 48.825351073000085 ], [ -123.637220249999956, 48.824959706000058 ], [ -123.63667362699999, 48.824736756000021 ], [ -123.635724908999961, 48.824475165000074 ], [ -123.63565972799999, 48.824448481000104 ], [ -123.63771081499999, 48.824493849000078 ], [ -123.637790701999947, 48.822908785000031 ], [ -123.638752631999978, 48.822930048000025 ], [ -123.638761772999899, 48.822748609000108 ], [ -123.640545330999927, 48.822788011000071 ], [ -123.640665829999975, 48.820394148000062 ], [ -123.641558518999929, 48.820413858000052 ], [ -123.641652693999973, 48.818542067000088 ], [ -123.64382346499994, 48.81858996600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115804918", "BldgCostT": "79601668", "sL_LossRatio": "0.811354603240572", "sL_AssetLoss": "721360.3", "sL_BldgLoss": "585279", "sL_StrLoss": "357464", "sL_NStrLoss": "227815", "sL_ContLoss": "136081.3", "geom_point": "0101000020E6100000FBB83EC514E85EC0C12708E433674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.623251206999967, 48.809213605000132 ], [ -123.622840790999987, 48.809181008000053 ], [ -123.622452586999884, 48.80919129400008 ], [ -123.620349305, 48.809417512000095 ], [ -123.619910278999924, 48.809491503000054 ], [ -123.619070387999969, 48.80985399300009 ], [ -123.618806640999964, 48.809931337000108 ], [ -123.617854905999963, 48.80991011400009 ], [ -123.617852504999973, 48.809570910000083 ], [ -123.617896385, 48.809376295000064 ], [ -123.618029299999975, 48.80911528700004 ], [ -123.619702301999936, 48.807238491000106 ], [ -123.619849013999925, 48.807027306000137 ], [ -123.619907624999939, 48.806810598000041 ], [ -123.619891028000026, 48.806602906000144 ], [ -123.619830803, 48.806448387000088 ], [ -123.619514117999941, 48.806043908000035 ], [ -123.620762696999961, 48.805586000000126 ], [ -123.621919978999969, 48.80539910300007 ], [ -123.622894491999915, 48.805169390000032 ], [ -123.623368109999944, 48.805028605000075 ], [ -123.624531683000015, 48.804611101000063 ], [ -123.625051588999924, 48.804387511000101 ], [ -123.625644698999935, 48.804089702000077 ], [ -123.626431771999933, 48.803585498000068 ], [ -123.62670019699999, 48.803467995000084 ], [ -123.627007496999923, 48.803389211000088 ], [ -123.627450015999983, 48.803351306000096 ], [ -123.628122908999899, 48.803357194000036 ], [ -123.62844731399997, 48.803395091000041 ], [ -123.628794390999943, 48.803469504000113 ], [ -123.62923070899997, 48.803635900000096 ], [ -123.630051427, 48.803084608000098 ], [ -123.630308393999897, 48.802977683000087 ], [ -123.630621044999913, 48.802930469000039 ], [ -123.631713087, 48.80276548900013 ], [ -123.632473660999921, 48.802568810000061 ], [ -123.63313456099999, 48.802299636000079 ], [ -123.633309078999943, 48.802426306000079 ], [ -123.633454580999953, 48.802531994000091 ], [ -123.633653009999975, 48.802724709000117 ], [ -123.633783525999974, 48.802914204000075 ], [ -123.634108477999973, 48.803858597000058 ], [ -123.634167481999938, 48.803933839000102 ], [ -123.634212021999957, 48.803990609000124 ], [ -123.634702003999948, 48.804521404000091 ], [ -123.634975707999942, 48.804730189000097 ], [ -123.634361500999916, 48.805002985000023 ], [ -123.632716395000031, 48.805733604000096 ], [ -123.63244236, 48.805848671000113 ], [ -123.63157290499997, 48.806213795000126 ], [ -123.63003947699994, 48.806872776000134 ], [ -123.627000122999945, 48.808344414000075 ], [ -123.62666784699995, 48.808540709000042 ], [ -123.626452047999948, 48.808740748000098 ], [ -123.626443798999915, 48.808748398000098 ], [ -123.625475272999921, 48.810336287000055 ], [ -123.624064899999965, 48.809502909000102 ], [ -123.623672481999975, 48.809327503000048 ], [ -123.623251206999967, 48.809213605000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181512250", "BldgCostT": "124180000", "sL_LossRatio": "0.830124359824306", "sL_AssetLoss": "998554", "sL_BldgLoss": "828924", "sL_StrLoss": "537139", "sL_NStrLoss": "291785", "sL_ContLoss": "169630", "geom_point": "0101000020E6100000BAD7930A74E85EC0974D90438A664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.617848843, 48.803753024000045 ], [ -123.616858197999974, 48.802669570000091 ], [ -123.617233961999929, 48.802206459000061 ], [ -123.617894329999942, 48.802221191000108 ], [ -123.618845412999974, 48.802242402000026 ], [ -123.618856423999944, 48.802025558000047 ], [ -123.619113417999969, 48.802031287000055 ], [ -123.619131332, 48.801678463000052 ], [ -123.619597689999964, 48.801688859000073 ], [ -123.619631648999956, 48.801019873000058 ], [ -123.622712634000024, 48.801088506000085 ], [ -123.622715925999941, 48.801023549000021 ], [ -123.623651754999969, 48.801044378000036 ], [ -123.623652788999905, 48.801023972000046 ], [ -123.629086149999964, 48.801144743000144 ], [ -123.629081680999917, 48.801233132000107 ], [ -123.630990641999972, 48.801275497000042 ], [ -123.630977016999921, 48.800189289000038 ], [ -123.630568514999965, 48.80019152400007 ], [ -123.630554984999947, 48.799112079000082 ], [ -123.630963475999948, 48.799109843000082 ], [ -123.63094655299993, 48.797760536000098 ], [ -123.631355035999917, 48.797758298000112 ], [ -123.631348261999932, 48.797218576000056 ], [ -123.630817801999953, 48.797221480000047 ], [ -123.631014687999965, 48.797207972000145 ], [ -123.63150000399996, 48.797126703000053 ], [ -123.632243774999921, 48.797002112000079 ], [ -123.632876993999943, 48.79689604000005 ], [ -123.633885134999929, 48.796830060000055 ], [ -123.63485415199996, 48.796839818000059 ], [ -123.637323114999944, 48.796872865000054 ], [ -123.63775127299999, 48.796886328000085 ], [ -123.639631008999956, 48.796945522000087 ], [ -123.639894516999931, 48.796988915000064 ], [ -123.640882479999973, 48.797151611000103 ], [ -123.641630794, 48.797359173000068 ], [ -123.64227499199994, 48.797556863000111 ], [ -123.642336679, 48.797575802000011 ], [ -123.642519961999966, 48.797632029000084 ], [ -123.643152841999935, 48.797918143000032 ], [ -123.6432734699999, 48.797967917000058 ], [ -123.643464590999884, 48.798046704000036 ], [ -123.643638716999973, 48.79813685200002 ], [ -123.644080811999956, 48.798365791000094 ], [ -123.64456295299999, 48.798655250000131 ], [ -123.644573215999927, 48.798661405000111 ], [ -123.645463293999953, 48.799266814000063 ], [ -123.645065816999974, 48.799627499000067 ], [ -123.644719309, 48.79989469500002 ], [ -123.644587300999902, 48.799976539000063 ], [ -123.644059605999956, 48.80030367800002 ], [ -123.643669992999961, 48.800471555000037 ], [ -123.643363296999894, 48.800603685000041 ], [ -123.642748789, 48.800869485000064 ], [ -123.642734937999961, 48.800876995000088 ], [ -123.642476301000031, 48.801016712000063 ], [ -123.641436608999967, 48.801680404000059 ], [ -123.641200554999926, 48.801903954000082 ], [ -123.640815511999932, 48.802268600000033 ], [ -123.640551687999988, 48.802456505000094 ], [ -123.640528519999947, 48.8024685990001 ], [ -123.640033005999953, 48.802727563000076 ], [ -123.640005574999975, 48.80274189600005 ], [ -123.638494794999986, 48.80317250500007 ], [ -123.637187097999984, 48.80370228600011 ], [ -123.636912537999933, 48.80382993500011 ], [ -123.636254598999955, 48.804135739000074 ], [ -123.634975707999942, 48.804730189000097 ], [ -123.634702003999948, 48.804521404000091 ], [ -123.634212021999957, 48.803990609000124 ], [ -123.634167481999938, 48.803933839000102 ], [ -123.634108477999973, 48.803858597000058 ], [ -123.633783525999974, 48.802914204000075 ], [ -123.633653009999975, 48.802724709000117 ], [ -123.633454580999953, 48.802531994000091 ], [ -123.633309078999943, 48.802426306000079 ], [ -123.63313456099999, 48.802299636000079 ], [ -123.632473660999921, 48.802568810000061 ], [ -123.631713087, 48.80276548900013 ], [ -123.630621044999913, 48.802930469000039 ], [ -123.630308393999897, 48.802977683000087 ], [ -123.630051427, 48.803084608000098 ], [ -123.62923070899997, 48.803635900000096 ], [ -123.628794390999943, 48.803469504000113 ], [ -123.62844731399997, 48.803395091000041 ], [ -123.628122908999899, 48.803357194000036 ], [ -123.627450015999983, 48.803351306000096 ], [ -123.627007496999923, 48.803389211000088 ], [ -123.62670019699999, 48.803467995000084 ], [ -123.626431771999933, 48.803585498000068 ], [ -123.625644698999935, 48.804089702000077 ], [ -123.625051588999924, 48.804387511000101 ], [ -123.624531683000015, 48.804611101000063 ], [ -123.623368109999944, 48.805028605000075 ], [ -123.622894491999915, 48.805169390000032 ], [ -123.621919978999969, 48.80539910300007 ], [ -123.620762696999961, 48.805586000000126 ], [ -123.619514117999941, 48.806043908000035 ], [ -123.618556203999944, 48.804953786000105 ], [ -123.618131940999888, 48.8044731130001 ], [ -123.617956615999944, 48.804202415000105 ], [ -123.617848843, 48.803753024000045 ] ], [ [ -123.6399040579999, 48.797264697000109 ], [ -123.639908754999922, 48.797171367000068 ], [ -123.639517801999929, 48.79717353800006 ], [ -123.639518852999956, 48.797256182000126 ], [ -123.6399040579999, 48.797264697000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.843534041959776", "sL_AssetLoss": "6453.8", "sL_BldgLoss": "5444", "sL_StrLoss": "3610", "sL_NStrLoss": "1834", "sL_ContLoss": "1009.8", "geom_point": "0101000020E6100000B1FB6DD348E85EC01E8B0A2816664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.629872606999953, 48.797286274000029 ], [ -123.6305315339999, 48.797241106000101 ], [ -123.630538070999989, 48.797762770000077 ], [ -123.628087178999948, 48.797776152000012 ], [ -123.628084332999947, 48.797548176000085 ], [ -123.628744845999975, 48.797404321000052 ], [ -123.629302921999908, 48.797312374000029 ], [ -123.629872606999953, 48.797286274000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10005000", "BldgCostT": "6900000", "sL_LossRatio": "0.827584582037508", "sL_AssetLoss": "63666", "sL_BldgLoss": "52689", "sL_StrLoss": "31530", "sL_NStrLoss": "21159", "sL_ContLoss": "10977", "geom_point": "0101000020E61000001EAC41902AE55EC0829CDE62D1664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.57706689299998, 48.803322895000093 ], [ -123.575984394999978, 48.802724688000104 ], [ -123.574735430999937, 48.802358550000079 ], [ -123.574789810999945, 48.801307072000057 ], [ -123.58022307899995, 48.801430328000059 ], [ -123.580210673999929, 48.80167071900005 ], [ -123.581476547999955, 48.801699396000039 ], [ -123.581458447999921, 48.802050339000161 ], [ -123.582259440999962, 48.802068476000017 ], [ -123.582257539999958, 48.802105322000024 ], [ -123.58311601299999, 48.802124754000047 ], [ -123.583097588999948, 48.802482193000039 ], [ -123.58493257, 48.802523707000091 ], [ -123.584905227999954, 48.803054582000094 ], [ -123.585158192000023, 48.803060303000088 ], [ -123.584972759999971, 48.806660755000053 ], [ -123.584904223999928, 48.806659205000145 ], [ -123.584593778999974, 48.806406298000063 ], [ -123.583331811999955, 48.805728394000099 ], [ -123.583028707999958, 48.805298284000131 ], [ -123.582453574999988, 48.805165794000096 ], [ -123.582016395999958, 48.804943605000084 ], [ -123.581796179999955, 48.804719998000046 ], [ -123.580811910999941, 48.804509194000048 ], [ -123.579775790999975, 48.804460792000036 ], [ -123.579256211999933, 48.804220092 ], [ -123.57771361099999, 48.803787208000138 ], [ -123.577397799999943, 48.803636186000112 ], [ -123.57706689299998, 48.803322895000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18332666", "BldgCostT": "12146666", "sL_LossRatio": "0.828179535200477", "sL_AssetLoss": "93976", "sL_BldgLoss": "77829", "sL_StrLoss": "47192", "sL_NStrLoss": "30637", "sL_ContLoss": "16147", "geom_point": "0101000020E6100000C61C252BD6E55EC037D98A26E5664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.585065845999935, 48.806790871000025 ], [ -123.585195832999943, 48.804266937000108 ], [ -123.587336111999946, 48.804315311000025 ], [ -123.587378490000035, 48.803491688000094 ], [ -123.588331432999908, 48.803513213000066 ], [ -123.588334353999954, 48.803456412000116 ], [ -123.591201575999918, 48.803521123000117 ], [ -123.591227663999987, 48.803013281000084 ], [ -123.592011922999959, 48.803030968000073 ], [ -123.592168596999926, 48.799979795000077 ], [ -123.596046753999985, 48.800067172000077 ], [ -123.595973117999961, 48.80015830300006 ], [ -123.595907802999974, 48.800393296000081 ], [ -123.59612750499997, 48.800481595000051 ], [ -123.596708382999964, 48.800199593000116 ], [ -123.597091087999956, 48.800188207000083 ], [ -123.597283006999987, 48.800359096000065 ], [ -123.597438314999934, 48.800888900000103 ], [ -123.597168322999948, 48.801069804000122 ], [ -123.596665404999968, 48.80114380600007 ], [ -123.596314289999924, 48.801307593000068 ], [ -123.596375903999942, 48.802001186000091 ], [ -123.596008594999944, 48.803153396000049 ], [ -123.595832697999981, 48.803317208000124 ], [ -123.595561001999982, 48.803327191000086 ], [ -123.595426394999933, 48.80344538800005 ], [ -123.595487090999953, 48.803966591000069 ], [ -123.5954064099999, 48.804118998000064 ], [ -123.594892014, 48.80431130100007 ], [ -123.594534905999964, 48.804141785000049 ], [ -123.594401092999973, 48.804224405000106 ], [ -123.594142897000012, 48.805439300000025 ], [ -123.594019896999967, 48.805521887000062 ], [ -123.593763399999929, 48.80553179800004 ], [ -123.593419494999978, 48.805335307000028 ], [ -123.592847609999936, 48.805329599000117 ], [ -123.592102821999944, 48.80564860000009 ], [ -123.590643013999951, 48.805520390000034 ], [ -123.589652719999947, 48.805867998000075 ], [ -123.589488911999965, 48.805859401000063 ], [ -123.589132499999906, 48.805537513000097 ], [ -123.588926185999952, 48.805474894000014 ], [ -123.58868191, 48.805539008999986 ], [ -123.588918794999969, 48.805979001000019 ], [ -123.589062513999977, 48.806608506000025 ], [ -123.588769406999972, 48.807203885000099 ], [ -123.588954594999962, 48.8078589940001 ], [ -123.58885350299991, 48.808561110000014 ], [ -123.588771499999908, 48.80857958900004 ], [ -123.587410888999955, 48.807461597000085 ], [ -123.587259702999987, 48.807381888000094 ], [ -123.585842387999961, 48.807209595000131 ], [ -123.585404909999937, 48.807067087000064 ], [ -123.585065845999935, 48.806790871000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.775699213302813", "sL_AssetLoss": "76014", "sL_BldgLoss": "58964", "sL_StrLoss": "29934", "sL_NStrLoss": "29030", "sL_ContLoss": "17050", "geom_point": "0101000020E61000005E68320CEDE55EC07FC3448394644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.589969980999982, 48.783920693000056 ], [ -123.595401273999983, 48.784043180000026 ], [ -123.59521670299992, 48.78764376000003 ], [ -123.58978499299991, 48.787521264000056 ], [ -123.589969980999982, 48.783920693000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104288417", "BldgCostT": "71131667", "sL_LossRatio": "0.844505060270546", "sL_AssetLoss": "521316", "sL_BldgLoss": "440254", "sL_StrLoss": "285086", "sL_NStrLoss": "155168", "sL_ContLoss": "81062", "geom_point": "0101000020E61000004FAA85ABA6E65EC0F5A56DB2FC664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.586804992999959, 48.826789981000083 ], [ -123.586895617999929, 48.825029905000093 ], [ -123.586296318, 48.825016367000089 ], [ -123.586297566999988, 48.824992117000129 ], [ -123.58440062599999, 48.824949247000042 ], [ -123.584412612999969, 48.824894000000121 ], [ -123.58421830099995, 48.82448091 ], [ -123.584255216999964, 48.824291496000086 ], [ -123.584511390999936, 48.824002400000055 ], [ -123.585257392999935, 48.823666299000116 ], [ -123.585581393999945, 48.823375814000059 ], [ -123.585677016999938, 48.822225006000075 ], [ -123.586244487, 48.821807700000086 ], [ -123.587684478999932, 48.821475896000045 ], [ -123.587721692999963, 48.821161096000012 ], [ -123.58844009699996, 48.820816512000064 ], [ -123.589080001999932, 48.820866298000062 ], [ -123.590023087999953, 48.821131200000067 ], [ -123.590731004999924, 48.821001594000045 ], [ -123.59107261099993, 48.821081388000074 ], [ -123.591580502999975, 48.821482992000071 ], [ -123.592318804999977, 48.821705210000047 ], [ -123.594165619999927, 48.822451396000062 ], [ -123.594701088999898, 48.822763294000033 ], [ -123.595344392999905, 48.822894394000031 ], [ -123.597317295999972, 48.822704999000102 ], [ -123.598994112999961, 48.821750699000098 ], [ -123.601078307999913, 48.8217222050001 ], [ -123.601427509999951, 48.821243703000036 ], [ -123.601315515999914, 48.820993106000117 ], [ -123.601531886999979, 48.820837798000113 ], [ -123.602063093999959, 48.820861996000083 ], [ -123.602687904999954, 48.820669797000022 ], [ -123.603422396999974, 48.820693993000049 ], [ -123.603788520999956, 48.820466102000069 ], [ -123.603745812999975, 48.820313697000067 ], [ -123.603320905999951, 48.820072986000085 ], [ -123.60333110199997, 48.819884995000109 ], [ -123.603641187999926, 48.819486192000078 ], [ -123.603996689, 48.819628691000098 ], [ -123.604253607, 48.819591584000094 ], [ -123.604072186999971, 48.819080305000128 ], [ -123.60429390199999, 48.818412400000078 ], [ -123.605023097999947, 48.817734511000083 ], [ -123.605169441999962, 48.817709448000095 ], [ -123.605838295999931, 48.817594890000137 ], [ -123.606204681999927, 48.817449603000071 ], [ -123.606668803999924, 48.817617702000099 ], [ -123.607038108, 48.817660395000104 ], [ -123.608697284999948, 48.817535102000086 ], [ -123.609218986999934, 48.816777393000059 ], [ -123.60979950499997, 48.815163788000042 ], [ -123.609823656999936, 48.814621168000052 ], [ -123.609853197999911, 48.813957489000039 ], [ -123.609721920000013, 48.81327529900004 ], [ -123.609159592999944, 48.812999015000102 ], [ -123.608759095000011, 48.812443514000151 ], [ -123.608387289999953, 48.812121688000026 ], [ -123.608044588999917, 48.81196070200005 ], [ -123.607590297999948, 48.811522112000034 ], [ -123.607326106999949, 48.811110500000034 ], [ -123.607098098999984, 48.810211784000053 ], [ -123.606641095999947, 48.809683394000103 ], [ -123.606175891999925, 48.809532387000061 ], [ -123.606106693999948, 48.809434203000087 ], [ -123.606374392999925, 48.808947093000015 ], [ -123.605994105000022, 48.807933104000078 ], [ -123.605787192999983, 48.807636788000096 ], [ -123.605600201999962, 48.8069275920001 ], [ -123.60562452, 48.806612802000117 ], [ -123.605890487999915, 48.806196899000042 ], [ -123.605226807999941, 48.80537228400005 ], [ -123.60513910199991, 48.804788400000071 ], [ -123.60479050899994, 48.80411619600013 ], [ -123.604773318999932, 48.803764399000102 ], [ -123.604462108999925, 48.802777396000089 ], [ -123.604087708999941, 48.802365789000099 ], [ -123.603020277999974, 48.801884400000091 ], [ -123.602813718000021, 48.801652296000029 ], [ -123.602238690999954, 48.801376010000112 ], [ -123.602276798999981, 48.801169505000068 ], [ -123.602694597999985, 48.800824797000125 ], [ -123.602208496999964, 48.80000018600002 ], [ -123.60257351599995, 48.799755198000142 ], [ -123.602582384999934, 48.799467593000074 ], [ -123.602744988999973, 48.799394905000014 ], [ -123.602810593999948, 48.799132891000021 ], [ -123.603025882999987, 48.799006095000053 ], [ -123.60303639899999, 48.798628694000087 ], [ -123.603368098999908, 48.798014886000047 ], [ -123.603360485999971, 48.797366791000108 ], [ -123.603051003999909, 48.796532295000084 ], [ -123.603075094999909, 48.796244590000072 ], [ -123.603303599999919, 48.79602669500008 ], [ -123.602398502999947, 48.795492597000077 ], [ -123.601770897000023, 48.79531599600012 ], [ -123.601710704999931, 48.794767711000134 ], [ -123.60219890899999, 48.794621008000043 ], [ -123.602549288999924, 48.794303396000032 ], [ -123.602538809999913, 48.7934944080001 ], [ -123.601836795999972, 48.792832194000027 ], [ -123.601723925999963, 48.792481804000062 ], [ -123.601240209999929, 48.792016109000045 ], [ -123.600864720999965, 48.791289700000036 ], [ -123.600848706, 48.791064684000069 ], [ -123.600532776999927, 48.790796997000029 ], [ -123.599711792999969, 48.790486501000075 ], [ -123.599436283999978, 48.790208794000129 ], [ -123.599457412999968, 48.78969609800005 ], [ -123.59915468399997, 48.789545104000041 ], [ -123.599192893999941, 48.789176204000114 ], [ -123.599022514999945, 48.78872620300011 ], [ -123.599176585999942, 48.787871609000099 ], [ -123.599137150999979, 48.787820052 ], [ -123.599093811999964, 48.787763393000098 ], [ -123.598948811999918, 48.788133698000095 ], [ -123.598585410999974, 48.788549596000045 ], [ -123.598648400999977, 48.789258802000106 ], [ -123.59843430599993, 48.789530786000071 ], [ -123.598534801999961, 48.789970894000135 ], [ -123.598249289999941, 48.790016498000121 ], [ -123.598057786999931, 48.789882611000081 ], [ -123.59773100699999, 48.790019284000095 ], [ -123.597555401999927, 48.790156113000108 ], [ -123.597614514999947, 48.790524906000094 ], [ -123.597752991999982, 48.790740007000046 ], [ -123.59826270799999, 48.791114598000064 ], [ -123.598209588999936, 48.791241305000042 ], [ -123.598472310999966, 48.791571710000035 ], [ -123.598671495999952, 48.792326587000083 ], [ -123.598946411999975, 48.792560107 ], [ -123.598907896999933, 48.792793703000051 ], [ -123.599157218999935, 48.793098504000042 ], [ -123.599095410999965, 48.793584100000082 ], [ -123.598933292999902, 48.793810592000078 ], [ -123.599050310999957, 48.794448593 ], [ -123.598712683999935, 48.794638104000086 ], [ -123.598769510999915, 48.794890089000063 ], [ -123.598033501999979, 48.795991094000065 ], [ -123.598504120999934, 48.796600602000126 ], [ -123.598519602999929, 48.797025087000051 ], [ -123.594960221999912, 48.796944974000041 ], [ -123.595144848999951, 48.793344449000109 ], [ -123.595887678999972, 48.793361178000083 ], [ -123.595958592999963, 48.791977664000115 ], [ -123.597898977999989, 48.792021339000023 ], [ -123.59791151599994, 48.791776521000088 ], [ -123.597290616999942, 48.791762550000044 ], [ -123.597378372999941, 48.790049397000111 ], [ -123.597229818999935, 48.790046053000076 ], [ -123.597255446999924, 48.789545726000021 ], [ -123.59711884499994, 48.789542652000101 ], [ -123.597145549999965, 48.789021333000072 ], [ -123.596777363999976, 48.789013045000047 ], [ -123.596787002999932, 48.788824898 ], [ -123.596130951999925, 48.788810128000101 ], [ -123.596315458, 48.785209552 ], [ -123.599443457999939, 48.785279941000027 ], [ -123.601746916999943, 48.785331717000133 ], [ -123.601737297999932, 48.785519865000026 ], [ -123.602393304999964, 48.785534601000059 ], [ -123.602366658999955, 48.786055925000042 ], [ -123.602734823999981, 48.786064193000136 ], [ -123.602709254999979, 48.786564524000028 ], [ -123.60284585, 48.786567591000065 ], [ -123.60278459199999, 48.787766282000078 ], [ -123.602954217999951, 48.787770092000052 ], [ -123.602905771999957, 48.788718114000119 ], [ -123.603505554999941, 48.788731580000068 ], [ -123.603491100999946, 48.789014466000012 ], [ -123.603669767, 48.789018477000077 ], [ -123.603651020999934, 48.789385396000057 ], [ -123.60385048099999, 48.789389873000054 ], [ -123.603832916999977, 48.789733683000044 ], [ -123.603952697999929, 48.789736371000103 ], [ -123.603941730999949, 48.789951093000077 ], [ -123.605018072999925, 48.789975244000047 ], [ -123.604890795999907, 48.792467832000042 ], [ -123.606856156999953, 48.79251190300014 ], [ -123.606790184999966, 48.79380485400003 ], [ -123.607126823999977, 48.793812399000075 ], [ -123.607115919999956, 48.79402613500006 ], [ -123.607961307999972, 48.794045078000117 ], [ -123.607777660999986, 48.797645622000068 ], [ -123.607698243999891, 48.79764384300006 ], [ -123.607636659999912, 48.798851094000092 ], [ -123.609264748999948, 48.798887558000104 ], [ -123.609227017999928, 48.799627663000088 ], [ -123.612794067999985, 48.799707466000051 ], [ -123.612610769999932, 48.803307986000114 ], [ -123.610392423999912, 48.803258370000044 ], [ -123.610373435999946, 48.803630953000052 ], [ -123.61345305699993, 48.803699819000016 ], [ -123.613450893999982, 48.803522455000127 ], [ -123.613859422999894, 48.80352028000005 ], [ -123.613852836, 48.802980556000087 ], [ -123.61599841899999, 48.802969111000024 ], [ -123.616024811999935, 48.802449988000099 ], [ -123.616715964999941, 48.802465416000125 ], [ -123.616729697999958, 48.802195205000068 ], [ -123.617233961999929, 48.802206459000061 ], [ -123.616858197999974, 48.802669570000091 ], [ -123.617848843, 48.803753024000045 ], [ -123.617956615999944, 48.804202415000105 ], [ -123.618131940999888, 48.8044731130001 ], [ -123.618556203999944, 48.804953786000105 ], [ -123.619514117999941, 48.806043908000035 ], [ -123.619830803, 48.806448387000088 ], [ -123.619891028000026, 48.806602906000144 ], [ -123.619907624999939, 48.806810598000041 ], [ -123.619849013999925, 48.807027306000137 ], [ -123.619702301999936, 48.807238491000106 ], [ -123.618029299999975, 48.80911528700004 ], [ -123.617896385, 48.809376295000064 ], [ -123.617852504999973, 48.809570910000083 ], [ -123.617854905999963, 48.80991011400009 ], [ -123.61784176599997, 48.809909821000133 ], [ -123.617353673999901, 48.809898935000014 ], [ -123.617295687999913, 48.809883578000019 ], [ -123.61737038399994, 48.808413725000051 ], [ -123.615961750999986, 48.808382291000086 ], [ -123.615964869, 48.808636762000077 ], [ -123.615906902999896, 48.808637071000106 ], [ -123.615867790999971, 48.809406247000013 ], [ -123.615230583999931, 48.809187105000106 ], [ -123.614984822999958, 48.809126592000084 ], [ -123.61474728599994, 48.809116801000123 ], [ -123.614543410999929, 48.809141089000043 ], [ -123.614314020999942, 48.809211700000056 ], [ -123.613895217999982, 48.809424902000018 ], [ -123.612817509999928, 48.810020788000095 ], [ -123.611195996999967, 48.808691410000087 ], [ -123.611002323999941, 48.808569006000127 ], [ -123.61032100099996, 48.808299692000084 ], [ -123.610083808999931, 48.808177226000076 ], [ -123.609925631999957, 48.808051106000086 ], [ -123.609784538999989, 48.807884801000093 ], [ -123.609693126999957, 48.807676402000055 ], [ -123.609623633999917, 48.806986405000032 ], [ -123.609547317999912, 48.80688110600007 ], [ -123.609289203999978, 48.806741908000078 ], [ -123.608379070999959, 48.807520851000056 ], [ -123.608082305999943, 48.807818795000038 ], [ -123.608033603, 48.807973605000036 ], [ -123.608058120999928, 48.808212959000102 ], [ -123.60815264499999, 48.808413337000026 ], [ -123.60841006599999, 48.808819862000114 ], [ -123.608549128, 48.809039502000076 ], [ -123.60914391299994, 48.80951150200007 ], [ -123.609206757, 48.809639956000126 ], [ -123.609175519999894, 48.809771726000122 ], [ -123.609060287999952, 48.809898005000051 ], [ -123.608903217999938, 48.809963880000041 ], [ -123.609164378999935, 48.810443741000093 ], [ -123.609252015, 48.810672775000093 ], [ -123.608889209999944, 48.810852097000122 ], [ -123.608814047999971, 48.81112526400004 ], [ -123.608816971999943, 48.811388449000155 ], [ -123.608881719999943, 48.811532300000053 ], [ -123.609031949999988, 48.811653715000055 ], [ -123.60971132, 48.811881568000025 ], [ -123.609969364999969, 48.811995485000082 ], [ -123.610190793999919, 48.812134716000095 ], [ -123.610949507999962, 48.812914038000102 ], [ -123.611269582999952, 48.813119456000095 ], [ -123.611602051999924, 48.81351453900006 ], [ -123.611868545999954, 48.813831238000105 ], [ -123.611159868999948, 48.813815341000058 ], [ -123.610375294999955, 48.813797813000072 ], [ -123.610294076999949, 48.81416459900008 ], [ -123.610263374999931, 48.814313489 ], [ -123.610265998000017, 48.814639274000122 ], [ -123.610273628999963, 48.815579817000113 ], [ -123.610283790999944, 48.816047717000096 ], [ -123.609845693999958, 48.816556070000082 ], [ -123.609799881999933, 48.81664385100003 ], [ -123.609722060999928, 48.816793005000072 ], [ -123.609695831999915, 48.817040228000089 ], [ -123.609712643999956, 48.817324474000038 ], [ -123.609720096000018, 48.817356355000044 ], [ -123.609785081999945, 48.817634109000061 ], [ -123.609795305999967, 48.817677769000042 ], [ -123.609802461999976, 48.817799844000056 ], [ -123.609817106999969, 48.818049489000025 ], [ -123.609752107999938, 48.818124702000034 ], [ -123.60963110499992, 48.818176912000169 ], [ -123.607901479, 48.81819543500005 ], [ -123.605847204999961, 48.818217407000077 ], [ -123.605544525999946, 48.818282804000027 ], [ -123.605300219999947, 48.818405201000175 ], [ -123.605069499999985, 48.818581188000039 ], [ -123.604655989999941, 48.81898008700005 ], [ -123.604570106999972, 48.819115204000077 ], [ -123.604574333999963, 48.81924292100004 ], [ -123.604575506999979, 48.819277498000098 ], [ -123.604633615999958, 48.819417607000084 ], [ -123.605074295999927, 48.819844708000112 ], [ -123.605062805, 48.819910188000108 ], [ -123.604768502999903, 48.820318103000062 ], [ -123.604073429999943, 48.820302518000098 ], [ -123.604030122999959, 48.821149747000078 ], [ -123.603829977999979, 48.821219795000061 ], [ -123.603320696999958, 48.821522007000063 ], [ -123.60272302099996, 48.82216911000004 ], [ -123.602535096999986, 48.822331583000043 ], [ -123.602343803999972, 48.822426497 ], [ -123.602001015999946, 48.822533203000027 ], [ -123.601291994999926, 48.822694813000084 ], [ -123.60090541199996, 48.822753707000089 ], [ -123.600315304999967, 48.822691797000083 ], [ -123.600170713999958, 48.822727300000111 ], [ -123.599999494999977, 48.822805336000052 ], [ -123.599940809999964, 48.822832094000056 ], [ -123.598651402999977, 48.823595191000024 ], [ -123.598289703999953, 48.823750199000081 ], [ -123.59649540199996, 48.82422348300004 ], [ -123.596431687999939, 48.824616701000117 ], [ -123.59634009399997, 48.82481019500009 ], [ -123.596138404, 48.824976894000024 ], [ -123.59592121599999, 48.825020696000109 ], [ -123.595543303999989, 48.825040095000126 ], [ -123.59471929099999, 48.82489808400009 ], [ -123.593760983, 48.824880099000104 ], [ -123.592539302999981, 48.825115705000044 ], [ -123.591700499999888, 48.825340999000026 ], [ -123.589685937999917, 48.825992524000078 ], [ -123.58936909, 48.826095011000056 ], [ -123.588856854999975, 48.826472297000059 ], [ -123.588760286999957, 48.826606660000046 ], [ -123.586804992999959, 48.826789981000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10502833", "BldgCostT": "7243333", "sL_LossRatio": "0.836600491855865", "sL_AssetLoss": "56114", "sL_BldgLoss": "46945", "sL_StrLoss": "29089", "sL_NStrLoss": "17856", "sL_ContLoss": "9169", "geom_point": "0101000020E6100000BF0A5B796AE65EC0F97601E525634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.596905061999976, 48.77625575600014 ], [ -123.597054291999939, 48.773341835000096 ], [ -123.598451611999963, 48.773373289000091 ], [ -123.598524711999957, 48.771944967000081 ], [ -123.602804548999956, 48.772041193000049 ], [ -123.602902539999917, 48.772043394000022 ], [ -123.602953313999976, 48.772664124000102 ], [ -123.603003179999945, 48.772872725000056 ], [ -123.60300916199999, 48.773346378000049 ], [ -123.603039395999971, 48.773716406000105 ], [ -123.603869881, 48.773726928000016 ], [ -123.603770772999923, 48.775667687000094 ], [ -123.602373380999936, 48.775636302000073 ], [ -123.60230039299995, 48.777064619000029 ], [ -123.596869889999937, 48.77694248100007 ], [ -123.596905061999976, 48.77625575600014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8156250", "BldgCostT": "5625000", "sL_LossRatio": "0.820913320561442", "sL_AssetLoss": "51154", "sL_BldgLoss": "41993", "sL_StrLoss": "25220", "sL_NStrLoss": "16773", "sL_ContLoss": "9161", "geom_point": "0101000020E610000070CAC3DF42E45EC0678ACE6C36664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.566242784999957, 48.799965996000012 ], [ -123.563810802999953, 48.799214004000071 ], [ -123.562871983999955, 48.799199794000103 ], [ -123.562612795999954, 48.799119998000016 ], [ -123.562514201999988, 48.798967688000111 ], [ -123.562567499999929, 48.79885938900005 ], [ -123.563247814999926, 48.798785406000079 ], [ -123.563356808999941, 48.798685697000096 ], [ -123.563285708999899, 48.798541799000091 ], [ -123.562805397999952, 48.798255511000043 ], [ -123.562228697999956, 48.797718595000099 ], [ -123.562253505999962, 48.797520700000106 ], [ -123.562496110999959, 48.797331199000091 ], [ -123.562447789999965, 48.797163056000066 ], [ -123.562651167999917, 48.797167699000056 ], [ -123.562665138999961, 48.796898862000042 ], [ -123.568097862999963, 48.797022735 ], [ -123.568085697999962, 48.797257337000111 ], [ -123.569485028999935, 48.797289199000019 ], [ -123.569444082999922, 48.798079248000079 ], [ -123.570148650999982, 48.79809528300013 ], [ -123.570010452999924, 48.800762405000071 ], [ -123.569682909000022, 48.800732191000058 ], [ -123.567226302999941, 48.800132695000094 ], [ -123.566242784999957, 48.799965996000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80954083", "BldgCostT": "55093333", "sL_LossRatio": "0.819543384327922", "sL_AssetLoss": "445276", "sL_BldgLoss": "364923", "sL_StrLoss": "235162", "sL_NStrLoss": "129761", "sL_ContLoss": "80353", "geom_point": "0101000020E610000034C6DA21B6E85EC007823AC4C3654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.631892363999953, 48.795848683000088 ], [ -123.632707476999911, 48.795159114000093 ], [ -123.633159622999969, 48.794862792000053 ], [ -123.633470842999913, 48.794717805000062 ], [ -123.634082888999941, 48.794437974000054 ], [ -123.634783427999963, 48.794117698000093 ], [ -123.636177710999931, 48.793726803000027 ], [ -123.637423585999926, 48.793475009000062 ], [ -123.638016711999924, 48.793441299000094 ], [ -123.638417717999957, 48.793388909000029 ], [ -123.638712507999969, 48.793314302000098 ], [ -123.639004387999989, 48.793187400000114 ], [ -123.639198990999958, 48.793047490000042 ], [ -123.639331291999923, 48.792904394000068 ], [ -123.63940969799998, 48.792725894000043 ], [ -123.639568797999971, 48.792725004000111 ], [ -123.640109113999927, 48.792389994000132 ], [ -123.640871497999953, 48.792098615000043 ], [ -123.641107494999943, 48.792056104000061 ], [ -123.641334496999946, 48.792085388000089 ], [ -123.641533883999955, 48.792175397000108 ], [ -123.641682903999978, 48.792321091000083 ], [ -123.641704598999965, 48.792483799000124 ], [ -123.641644992999915, 48.792615810000093 ], [ -123.641488520999971, 48.792753912000116 ], [ -123.639420574999974, 48.79423078800005 ], [ -123.638988009999963, 48.794539691000082 ], [ -123.638588879999972, 48.794823697000012 ], [ -123.638496315999944, 48.794933398000076 ], [ -123.638486693999951, 48.795232389000077 ], [ -123.640306693999918, 48.795271695000018 ], [ -123.64000500899999, 48.795945398000107 ], [ -123.63987312099998, 48.796052402000051 ], [ -123.639678890999946, 48.796075196000075 ], [ -123.635798105, 48.79599828400012 ], [ -123.635547288999945, 48.795901792000066 ], [ -123.635328392999909, 48.796063604000025 ], [ -123.635133506999949, 48.796288205000089 ], [ -123.634995644999904, 48.796514913000067 ], [ -123.63485415199996, 48.796839818000059 ], [ -123.633885134999929, 48.796830060000055 ], [ -123.632876993999943, 48.79689604000005 ], [ -123.632243774999921, 48.797002112000079 ], [ -123.63150000399996, 48.797126703000053 ], [ -123.631014687999965, 48.797207972000145 ], [ -123.630817801999953, 48.797221480000047 ], [ -123.630531307, 48.797223047000067 ], [ -123.6305315339999, 48.797241106000101 ], [ -123.629872606999953, 48.797286274000029 ], [ -123.629855021999958, 48.797015533000042 ], [ -123.629903574999929, 48.796861616000079 ], [ -123.630004871999958, 48.796749224000067 ], [ -123.63006205899994, 48.796685804000028 ], [ -123.630324753999929, 48.79654565900011 ], [ -123.630657884999977, 48.796468735000055 ], [ -123.630887452999957, 48.796415739000096 ], [ -123.631292462999951, 48.796227575000103 ], [ -123.631527949999949, 48.796118169000053 ], [ -123.631892363999953, 48.795848683000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.770491803278688", "sL_AssetLoss": "6100", "sL_BldgLoss": "4700", "sL_StrLoss": "2500", "sL_NStrLoss": "2200", "sL_ContLoss": "1400", "geom_point": "0101000020E6100000CF5AC0BAA0ED5EC065682374A3724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.714366458, 48.898678428000025 ], [ -123.714476673999968, 48.896422025000049 ], [ -123.711909403999968, 48.896367170000104 ], [ -123.71193465499999, 48.895850770000052 ], [ -123.711784931999944, 48.895847569000104 ], [ -123.711894929, 48.893598017000109 ], [ -123.711902101999954, 48.893604405000104 ], [ -123.714551948999912, 48.896227874000012 ], [ -123.714572859999947, 48.898682835000045 ], [ -123.714366458, 48.898678428000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.771525112631403", "sL_AssetLoss": "23972", "sL_BldgLoss": "18495", "sL_StrLoss": "8395", "sL_NStrLoss": "10100", "sL_ContLoss": "5477", "geom_point": "0101000020E61000008951638428EB5EC0C7C3739D63714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.671753413999951, 48.886651993000086 ], [ -123.671409081999954, 48.886438296000073 ], [ -123.670959581999952, 48.886493902000012 ], [ -123.670799786999936, 48.88667301800011 ], [ -123.670851774999974, 48.885628366000077 ], [ -123.671125396999955, 48.885558196000112 ], [ -123.67174139699992, 48.884699394000158 ], [ -123.672585504, 48.884685103000017 ], [ -123.67285021, 48.884935793000096 ], [ -123.673254436999954, 48.884959739000081 ], [ -123.673262135999948, 48.88505995800007 ], [ -123.677788287999988, 48.884995230000079 ], [ -123.677735495999968, 48.886059239000126 ], [ -123.677671985999964, 48.886057861000047 ], [ -123.677646220999975, 48.88657713900006 ], [ -123.676255342999937, 48.886546942000017 ], [ -123.676227894999926, 48.887099773000052 ], [ -123.674651535999942, 48.887065527000097 ], [ -123.674716510999943, 48.886849890000057 ], [ -123.674767803999956, 48.886660504000112 ], [ -123.674672281999904, 48.886535201000044 ], [ -123.673770592999958, 48.886486696000055 ], [ -123.673440595999921, 48.886335788000061 ], [ -123.673017393999928, 48.886303007000045 ], [ -123.672653215999972, 48.886600705 ], [ -123.672534191999915, 48.886962390000086 ], [ -123.672418358999948, 48.88701697200009 ], [ -123.672080260999905, 48.887009617000025 ], [ -123.671753413999951, 48.886651993000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770001", "BldgCostT": "2600001", "sL_LossRatio": "0.788419004983079", "sL_AssetLoss": "37527", "sL_BldgLoss": "29587", "sL_StrLoss": "15330", "sL_NStrLoss": "14257", "sL_ContLoss": "7940", "geom_point": "0101000020E610000043115A28FCEC5EC0C5D99D8321704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.699754504999987, 48.877977191000127 ], [ -123.700175816999945, 48.874105045000064 ], [ -123.700876865999973, 48.874410205000054 ], [ -123.701273787999966, 48.874480906000052 ], [ -123.702010688999977, 48.874534578000173 ], [ -123.704263122, 48.874622586000037 ], [ -123.704853817999961, 48.874658687000071 ], [ -123.706229261999965, 48.874744948000099 ], [ -123.706910825999927, 48.874788407000061 ], [ -123.705773114999914, 48.876272308000139 ], [ -123.704767237999974, 48.877632563000091 ], [ -123.704344359999979, 48.877623489000058 ], [ -123.704322201999958, 48.878075308000156 ], [ -123.704005435999974, 48.878068511000052 ], [ -123.703864908999961, 48.877931484000051 ], [ -123.703507413999915, 48.877744899000085 ], [ -123.701838801999941, 48.877304906000113 ], [ -123.701318710999928, 48.877263587000137 ], [ -123.700720283999928, 48.877322003000138 ], [ -123.700516514999961, 48.877467194000054 ], [ -123.700644391999944, 48.877772007 ], [ -123.700563390999946, 48.87788019700011 ], [ -123.700313559999969, 48.877989211000092 ], [ -123.699754504999987, 48.877977191000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.819234734097386", "sL_AssetLoss": "16491", "sL_BldgLoss": "13510", "sL_StrLoss": "8370", "sL_NStrLoss": "5140", "sL_ContLoss": "2981", "geom_point": "0101000020E610000001C822B0E6EC5EC08BBAC5B24F714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.701290523999944, 48.8878147140001 ], [ -123.701332645999983, 48.886957059000068 ], [ -123.700557249999974, 48.886940398000043 ], [ -123.700585455999985, 48.886366276000025 ], [ -123.700251172999984, 48.88635909200007 ], [ -123.700291532, 48.885537700000036 ], [ -123.700114316999958, 48.885533891000129 ], [ -123.700291207999925, 48.881933698000076 ], [ -123.701890412999887, 48.881968062000048 ], [ -123.70195585499998, 48.881969467000026 ], [ -123.701839986999943, 48.882450811000083 ], [ -123.701783315999975, 48.882994585000084 ], [ -123.701826184999945, 48.883482106000073 ], [ -123.70190708199999, 48.883914497000056 ], [ -123.70204951599996, 48.884342895000053 ], [ -123.702258889999953, 48.884823107000017 ], [ -123.702546442999946, 48.885390828000077 ], [ -123.702597470999947, 48.88549152500012 ], [ -123.702822697999977, 48.885936197000078 ], [ -123.703744405999927, 48.88728038400005 ], [ -123.70403577499999, 48.887590294000098 ], [ -123.70434246899994, 48.887880235000075 ], [ -123.704010146999963, 48.887873105000054 ], [ -123.701290523999944, 48.8878147140001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55836083", "BldgCostT": "37508333", "sL_LossRatio": "0.778300958747549", "sL_AssetLoss": "452361", "sL_BldgLoss": "352073", "sL_StrLoss": "193513", "sL_NStrLoss": "158560", "sL_ContLoss": "100288", "geom_point": "0101000020E6100000A5821F0F9CEC5EC0B7A8E4D683724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.703158172999977, 48.90400096500008 ], [ -123.703084186999945, 48.903925392000119 ], [ -123.702749799999978, 48.90351911000009 ], [ -123.70274028599999, 48.903495493000086 ], [ -123.702522695999932, 48.902955590000047 ], [ -123.702519794999944, 48.902946741000079 ], [ -123.702340684999939, 48.902404616000105 ], [ -123.70226519699996, 48.902176196000021 ], [ -123.702046931999931, 48.901839316000071 ], [ -123.702004039999949, 48.9017731120001 ], [ -123.701992913000012, 48.901755900000033 ], [ -123.70168714899998, 48.901459443000078 ], [ -123.701661178999956, 48.901434294000097 ], [ -123.701230386999939, 48.901160206000043 ], [ -123.700575282999949, 48.900901898000086 ], [ -123.700278219999959, 48.900712191000061 ], [ -123.70025108, 48.900280905000038 ], [ -123.700626233999941, 48.900037676000068 ], [ -123.700739815999938, 48.89996018700009 ], [ -123.70089950699996, 48.899851203000033 ], [ -123.700707797999883, 48.899816532000116 ], [ -123.698731184999971, 48.899458926000058 ], [ -123.69533034600002, 48.899588544000082 ], [ -123.693496326999977, 48.899615354000062 ], [ -123.693509695999964, 48.899344150000125 ], [ -123.692939621000022, 48.8993318630001 ], [ -123.692949459000019, 48.899132320000064 ], [ -123.692236307999963, 48.899116946000021 ], [ -123.692259834999945, 48.898639933000091 ], [ -123.69217233399992, 48.89863804600008 ], [ -123.692174084999948, 48.898602548 ], [ -123.691514712999933, 48.898588328000116 ], [ -123.691540187999962, 48.898071956000088 ], [ -123.691390438999974, 48.898068727000073 ], [ -123.691404711999937, 48.89777945 ], [ -123.691097345999978, 48.897772819000039 ], [ -123.69111279400002, 48.897459755000071 ], [ -123.691017560999967, 48.897457701000036 ], [ -123.691011571999979, 48.897579079000053 ], [ -123.685566859999966, 48.897461475000092 ], [ -123.685717542999939, 48.894414878000099 ], [ -123.685771707999933, 48.894197401000028 ], [ -123.685731715999964, 48.894128293000094 ], [ -123.685744915999962, 48.893861376000068 ], [ -123.686158569999918, 48.893870320000097 ], [ -123.686319173999962, 48.890621980000013 ], [ -123.686537859999987, 48.890626708000056 ], [ -123.686668508999958, 48.887983681000087 ], [ -123.687436883999936, 48.888000290000043 ], [ -123.687485631999948, 48.887013698000082 ], [ -123.687728537999945, 48.887018947000094 ], [ -123.687749744999962, 48.886589703000041 ], [ -123.689105372999947, 48.886618990000052 ], [ -123.689121304999958, 48.886296303000101 ], [ -123.687842016000033, 48.88626866600007 ], [ -123.687855026999969, 48.886005289000131 ], [ -123.68726812599999, 48.885992605000055 ], [ -123.687304210999969, 48.885623709000065 ], [ -123.687200779999955, 48.885012699000107 ], [ -123.687372795999948, 48.883608405000132 ], [ -123.687226550999966, 48.883103359000138 ], [ -123.686899780999951, 48.881974900000081 ], [ -123.687219408999937, 48.881378106000057 ], [ -123.687258451999938, 48.881344926000033 ], [ -123.68731462099997, 48.881465352000063 ], [ -123.69127892099999, 48.881592922000038 ], [ -123.69122245799997, 48.882737657000135 ], [ -123.693462851999954, 48.882785980000087 ], [ -123.693354185999979, 48.884991083000031 ], [ -123.694084334999943, 48.885006822000086 ], [ -123.694091890999943, 48.884853454000037 ], [ -123.699535156999943, 48.884970626000047 ], [ -123.699516647999985, 48.885347208000042 ], [ -123.699601176999963, 48.885349026000036 ], [ -123.699424219999969, 48.888949197000066 ], [ -123.69872513699994, 48.888934165000109 ], [ -123.698633390999987, 48.890799911000087 ], [ -123.695606222999956, 48.890734765000083 ], [ -123.695587770999936, 48.891109496000084 ], [ -123.695840562999933, 48.891114940000087 ], [ -123.695818466999924, 48.89156374100007 ], [ -123.696222077, 48.891572431000085 ], [ -123.696217986999955, 48.891655505000095 ], [ -123.696915255999897, 48.891670513000115 ], [ -123.69689977199999, 48.891985147000128 ], [ -123.697719846999959, 48.892002793000103 ], [ -123.697617897999947, 48.894075004000058 ], [ -123.699837996, 48.894122744000043 ], [ -123.69981034099996, 48.894685357000057 ], [ -123.701320575999915, 48.894717806000052 ], [ -123.701287696999927, 48.895387111000112 ], [ -123.703837225999933, 48.895441842000039 ], [ -123.703733571999948, 48.89755413000011 ], [ -123.70384625299998, 48.897556548000061 ], [ -123.703823791000019, 48.898014289000045 ], [ -123.703849880999982, 48.898014849000106 ], [ -123.703808495999951, 48.898858167000121 ], [ -123.704157019999982, 48.898865643000036 ], [ -123.704131693999898, 48.899381791000067 ], [ -123.704604534999959, 48.89939193300004 ], [ -123.704590477999943, 48.899678475000037 ], [ -123.705403721999957, 48.899695913000066 ], [ -123.705388724000017, 48.900001741000111 ], [ -123.706263509999957, 48.900020491000127 ], [ -123.706250600999979, 48.900283815000101 ], [ -123.706398720999942, 48.900286988000026 ], [ -123.706369416999962, 48.900884781000066 ], [ -123.707045834000027, 48.900899273000064 ], [ -123.707016605999911, 48.90149565800008 ], [ -123.707199263999911, 48.901499570000063 ], [ -123.707104924999911, 48.903424624000074 ], [ -123.707699662, 48.903437363000052 ], [ -123.707677775999969, 48.903884043000104 ], [ -123.708233870999962, 48.903895950000035 ], [ -123.708224824999903, 48.904080600000022 ], [ -123.710356707999949, 48.904126222000109 ], [ -123.710414725999968, 48.902940710000074 ], [ -123.711512207999974, 48.902964179000087 ], [ -123.711590365999911, 48.901366233000111 ], [ -123.714706537999987, 48.901432811000063 ], [ -123.714865624999931, 48.903229700000132 ], [ -123.714864276999933, 48.903296233000049 ], [ -123.714860888999965, 48.903465705 ], [ -123.714857583999972, 48.90470820899999 ], [ -123.714857480999981, 48.904744198000095 ], [ -123.714855593, 48.905445606000065 ], [ -123.714855473999947, 48.905490560000104 ], [ -123.714855028, 48.905670478000062 ], [ -123.714850804999926, 48.907242304000121 ], [ -123.714048679999934, 48.907242104000041 ], [ -123.712178954999942, 48.907241646000038 ], [ -123.710950627999935, 48.907241329000051 ], [ -123.709831831999935, 48.907241016000093 ], [ -123.708603591999989, 48.907240668000085 ], [ -123.707981897999971, 48.907240512000044 ], [ -123.705642148999942, 48.907243796000046 ], [ -123.705572116999946, 48.907243903000087 ], [ -123.705560111999915, 48.906878704000093 ], [ -123.70541211699998, 48.906506104000151 ], [ -123.705226010999979, 48.906187704000054 ], [ -123.704732398999951, 48.905608591000011 ], [ -123.70437962299998, 48.905248364 ], [ -123.703158172999977, 48.90400096500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13089334", "BldgCostT": "8763334", "sL_LossRatio": "0.722789979150237", "sL_AssetLoss": "185134", "sL_BldgLoss": "133813", "sL_StrLoss": "66863", "sL_NStrLoss": "66950", "sL_ContLoss": "51321", "geom_point": "0101000020E6100000999B2D2865EB5EC0C69C77CEDC704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.685598750999958, 48.885956508000028 ], [ -123.685655015999956, 48.88481864900006 ], [ -123.685102600999969, 48.88480669800002 ], [ -123.68512734399998, 48.884306437000141 ], [ -123.68466751699999, 48.884296488000082 ], [ -123.684701054999934, 48.883618492000039 ], [ -123.684702099999981, 48.883597355000063 ], [ -123.684699158999976, 48.8835972910001 ], [ -123.684724822999968, 48.883078480000066 ], [ -123.684288572999932, 48.883069039000112 ], [ -123.68425905, 48.883665804 ], [ -123.684202780999925, 48.88480308400009 ], [ -123.678759572, 48.884685132000108 ], [ -123.678759770999932, 48.884681143000066 ], [ -123.678890321999944, 48.884590745000025 ], [ -123.678741652999989, 48.884133564000095 ], [ -123.67846549399999, 48.883892830000022 ], [ -123.678041456999935, 48.883769659000023 ], [ -123.677831028999961, 48.883740465000074 ], [ -123.67774668499996, 48.883498527000029 ], [ -123.677918953999949, 48.883396202000029 ], [ -123.678266291999961, 48.883257323000073 ], [ -123.678436149999982, 48.883088470000104 ], [ -123.678207239999949, 48.882524426 ], [ -123.677838291999947, 48.882161511000099 ], [ -123.677207884999945, 48.881703722000083 ], [ -123.67498714599995, 48.881856761000051 ], [ -123.674413563999963, 48.881896280000049 ], [ -123.673139254, 48.881980796000114 ], [ -123.67314478699997, 48.882130554000092 ], [ -123.672335308999934, 48.882149986000044 ], [ -123.672155616999987, 48.882043194000069 ], [ -123.672330703999975, 48.881826708000112 ], [ -123.673603324999988, 48.88120720200007 ], [ -123.673819903999956, 48.881043384000051 ], [ -123.67384431399995, 48.88088250400007 ], [ -123.673399693999954, 48.881173010000076 ], [ -123.672488511000012, 48.8814919900001 ], [ -123.671814081999955, 48.881927797000102 ], [ -123.671828924999929, 48.882027503000117 ], [ -123.672157904999963, 48.882241185000083 ], [ -123.67314891699999, 48.882242337000051 ], [ -123.673242957999946, 48.88478741800003 ], [ -123.67288669, 48.884764888000028 ], [ -123.672585199999986, 48.884514197000094 ], [ -123.672338503999981, 48.88445299500011 ], [ -123.671753376999931, 48.884564095000037 ], [ -123.67130489799996, 48.884800511000101 ], [ -123.670892104999965, 48.885442790000063 ], [ -123.670860738999934, 48.885448231000034 ], [ -123.670963592999982, 48.883381281000041 ], [ -123.671433472, 48.883391509000042 ], [ -123.671553879999934, 48.880971068000058 ], [ -123.670274682999946, 48.880943220000034 ], [ -123.67038066399999, 48.87881373800014 ], [ -123.66952078099996, 48.878795010000047 ], [ -123.66947021499999, 48.8798106610001 ], [ -123.664027625999921, 48.879691959000063 ], [ -123.664038918999964, 48.879465640000014 ], [ -123.667272585999939, 48.878919557000096 ], [ -123.673103124999912, 48.878245418000084 ], [ -123.674297074999984, 48.878107359000069 ], [ -123.674474382999946, 48.878191091000105 ], [ -123.674667057999926, 48.878282074 ], [ -123.67468577299999, 48.87829598800009 ], [ -123.674768422999946, 48.878357356000045 ], [ -123.674914992999945, 48.878466214000085 ], [ -123.674975767999939, 48.878511354000068 ], [ -123.675056811999966, 48.878592525000059 ], [ -123.67607479199998, 48.879611949000051 ], [ -123.677090256999975, 48.88067887800004 ], [ -123.677097547999935, 48.880686553000054 ], [ -123.677267121999989, 48.880783579000116 ], [ -123.677382336000022, 48.880849483000084 ], [ -123.677398228999976, 48.880855813000075 ], [ -123.679029438, 48.881503349000155 ], [ -123.68051534099996, 48.882092394000047 ], [ -123.68074810799996, 48.882184641000052 ], [ -123.681596134999936, 48.882520815000085 ], [ -123.682138206999966, 48.882735693000022 ], [ -123.682168343999976, 48.882576511000124 ], [ -123.682223258999926, 48.882286272 ], [ -123.682333253999943, 48.881705297000103 ], [ -123.682414899999969, 48.881273990000075 ], [ -123.682546380999895, 48.880764198000065 ], [ -123.682924694999926, 48.880413801000032 ], [ -123.683230962999986, 48.880274654000104 ], [ -123.683468106999982, 48.880166894000112 ], [ -123.684766192000012, 48.879726490000067 ], [ -123.685219486999983, 48.879512903000034 ], [ -123.686144734999985, 48.878956954000053 ], [ -123.687044982999979, 48.880887239000096 ], [ -123.686912906999936, 48.880903807000067 ], [ -123.685761201999981, 48.881459306000103 ], [ -123.685300914999985, 48.881830991000122 ], [ -123.685345491999982, 48.88204609400001 ], [ -123.685511685, 48.882206995000068 ], [ -123.686356114999967, 48.882211295000033 ], [ -123.686729078999946, 48.88246189400013 ], [ -123.686782099999988, 48.883133360000102 ], [ -123.686975415999981, 48.885580893000061 ], [ -123.68683912100002, 48.885983331 ], [ -123.685598750999958, 48.885956508000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22978335", "BldgCostT": "15583335", "sL_LossRatio": "0.744204293345083", "sL_AssetLoss": "258726", "sL_BldgLoss": "192545", "sL_StrLoss": "102980", "sL_NStrLoss": "89565", "sL_ContLoss": "66181", "geom_point": "0101000020E61000007A1529FF60EC5EC0124094DC1F704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.68843969299999, 48.880903801000066 ], [ -123.687593813999939, 48.880818396000059 ], [ -123.687044982999979, 48.880887239000096 ], [ -123.686144734999985, 48.878956954000053 ], [ -123.68567508299995, 48.876892405000042 ], [ -123.685483122999955, 48.876100002000072 ], [ -123.685556055999982, 48.874788306000035 ], [ -123.688330166999918, 48.874848292000088 ], [ -123.688274916999902, 48.875967178000053 ], [ -123.689210003999932, 48.875961593000056 ], [ -123.689214087999957, 48.876258769000039 ], [ -123.68998183399998, 48.876275351000089 ], [ -123.689983136999928, 48.876248928000031 ], [ -123.690098453999923, 48.876251418000031 ], [ -123.690138976999918, 48.875430130000076 ], [ -123.690669806999963, 48.875441591000026 ], [ -123.690807506999988, 48.872649937000084 ], [ -123.694127391999956, 48.87272155600008 ], [ -123.694137081999926, 48.872524819000056 ], [ -123.695915405999941, 48.872563139000142 ], [ -123.695984562999939, 48.871157841000048 ], [ -123.691405262, 48.871059102000082 ], [ -123.691415090999953, 48.870859734000085 ], [ -123.693988002999959, 48.870840385000093 ], [ -123.694505118999984, 48.870764895000057 ], [ -123.695569109999923, 48.870786297000123 ], [ -123.700570586999973, 48.870835417000066 ], [ -123.700553219999975, 48.871710097000118 ], [ -123.700455696999967, 48.872004488000059 ], [ -123.700217001999988, 48.872455212000077 ], [ -123.700184177999958, 48.872501357000054 ], [ -123.700132199, 48.872574433000082 ], [ -123.700175816999945, 48.874105045000064 ], [ -123.699754504999987, 48.877977191000127 ], [ -123.698879725000026, 48.877958379000063 ], [ -123.698886362999971, 48.877823345000067 ], [ -123.69716056399993, 48.877786209000107 ], [ -123.697160501999974, 48.877787485000063 ], [ -123.697044564999928, 48.877784990000116 ], [ -123.697025118999946, 48.878180288000081 ], [ -123.695453201999953, 48.878146438000087 ], [ -123.695403907999946, 48.879147725000088 ], [ -123.695288583999968, 48.879145241000053 ], [ -123.69524814799999, 48.879966527000072 ], [ -123.68993114599995, 48.879851850000065 ], [ -123.689918597999977, 48.880106090000083 ], [ -123.69031990799999, 48.880114755000065 ], [ -123.690285410999977, 48.880813894 ], [ -123.690288351999982, 48.880813958 ], [ -123.690281491999883, 48.880952991000051 ], [ -123.689039710999978, 48.880972193000055 ], [ -123.68843969299999, 48.880903801000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.867044738500315", "sL_AssetLoss": "7935", "sL_BldgLoss": "6880", "sL_StrLoss": "4470", "sL_NStrLoss": "2410", "sL_ContLoss": "1055", "geom_point": "0101000020E61000003128B25A09EC5EC007725833956F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.68577211899999, 48.87090195600009 ], [ -123.690398671999972, 48.87086736100008 ], [ -123.690310941999968, 48.872645770000105 ], [ -123.685680739999924, 48.872545690000095 ], [ -123.68577211899999, 48.87090195600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14108500", "BldgCostT": "9730000", "sL_LossRatio": "0.750533830749642", "sL_AssetLoss": "201843", "sL_BldgLoss": "151490", "sL_StrLoss": "70010", "sL_NStrLoss": "81480", "sL_ContLoss": "50353", "geom_point": "0101000020E610000002EC2FFD43EB5EC0F063D4CE13714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.673254436999954, 48.884959739000081 ], [ -123.673258792999917, 48.884959996000049 ], [ -123.673531298999961, 48.884895897000042 ], [ -123.674152605999936, 48.884442999000015 ], [ -123.674376703999926, 48.883945996000051 ], [ -123.674098400999966, 48.8834716880001 ], [ -123.673795185999936, 48.883212492000084 ], [ -123.673752216999958, 48.883032994000082 ], [ -123.673935424999968, 48.882554504000026 ], [ -123.67387779699996, 48.882293902000079 ], [ -123.673343098999979, 48.882125792000089 ], [ -123.67314478699997, 48.882130554000092 ], [ -123.673139254, 48.881980796000114 ], [ -123.674413563999963, 48.881896280000049 ], [ -123.67498714599995, 48.881856761000051 ], [ -123.677207884999945, 48.881703722000083 ], [ -123.677838291999947, 48.882161511000099 ], [ -123.678207239999949, 48.882524426 ], [ -123.678436149999982, 48.883088470000104 ], [ -123.678266291999961, 48.883257323000073 ], [ -123.677918953999949, 48.883396202000029 ], [ -123.67774668499996, 48.883498527000029 ], [ -123.677831028999961, 48.883740465000074 ], [ -123.678041456999935, 48.883769659000023 ], [ -123.67846549399999, 48.883892830000022 ], [ -123.678741652999989, 48.884133564000095 ], [ -123.678890321999944, 48.884590745000025 ], [ -123.678759770999932, 48.884681143000066 ], [ -123.678771860000012, 48.884437367000054 ], [ -123.677816993999983, 48.884416647000116 ], [ -123.677788287999988, 48.884995230000079 ], [ -123.673262135999948, 48.88505995800007 ], [ -123.673254436999954, 48.884959739000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.753521126760563", "sL_AssetLoss": "15620", "sL_BldgLoss": "11770", "sL_StrLoss": "5910", "sL_NStrLoss": "5860", "sL_ContLoss": "3850", "geom_point": "0101000020E610000007DAF4D21AEB5EC02FA1270A19714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.673242957999946, 48.88478741800003 ], [ -123.67314891699999, 48.882242337000051 ], [ -123.673371975999956, 48.882242595000022 ], [ -123.67363240099999, 48.882340894000023 ], [ -123.673759898999933, 48.882672714000115 ], [ -123.673534511999961, 48.883213895000026 ], [ -123.674006112999948, 48.883786403000094 ], [ -123.674067111999975, 48.884155298000081 ], [ -123.673987604999979, 48.884344693000045 ], [ -123.67359639899999, 48.884670900000039 ], [ -123.673269306999927, 48.884789084000047 ], [ -123.673242957999946, 48.88478741800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.730013106159895", "sL_AssetLoss": "7630", "sL_BldgLoss": "5570", "sL_StrLoss": "2600", "sL_NStrLoss": "2970", "sL_ContLoss": "2060", "geom_point": "0101000020E610000022E052C6A6EC5EC0A29B1E905B734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.698205275999953, 48.90334309100006 ], [ -123.698207899999957, 48.903289755000053 ], [ -123.697688160999959, 48.903278577000052 ], [ -123.697704640999959, 48.902943687000111 ], [ -123.69749947399994, 48.902939273000037 ], [ -123.697505022999934, 48.902826513000107 ], [ -123.696014226999964, 48.902794435000033 ], [ -123.696051119999979, 48.902045258000072 ], [ -123.694669124999919, 48.902015502000054 ], [ -123.69472267699993, 48.900928625000113 ], [ -123.694256974999931, 48.900918593000071 ], [ -123.694277909999954, 48.90049377200009 ], [ -123.693893288999973, 48.900485486000058 ], [ -123.693933803999968, 48.899663445000094 ], [ -123.693494423999965, 48.899653977000078 ], [ -123.693496326999977, 48.899615354000062 ], [ -123.69533034600002, 48.899588544000082 ], [ -123.698731184999971, 48.899458926000058 ], [ -123.700707797999883, 48.899816532000116 ], [ -123.70089950699996, 48.899851203000033 ], [ -123.700739815999938, 48.89996018700009 ], [ -123.700626233999941, 48.900037676000068 ], [ -123.70025108, 48.900280905000038 ], [ -123.700278219999959, 48.900712191000061 ], [ -123.700339816999985, 48.901006414000044 ], [ -123.700819938, 48.903299263000136 ], [ -123.698403001999964, 48.903347343000064 ], [ -123.698205275999953, 48.90334309100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7494000", "BldgCostT": "4695000", "sL_LossRatio": "0.676150305992727", "sL_AssetLoss": "101473", "sL_BldgLoss": "68611", "sL_StrLoss": "30620", "sL_NStrLoss": "37991", "sL_ContLoss": "32862", "geom_point": "0101000020E610000029A079CE10ED5EC01158946D3B764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.703567122999956, 48.925498196000127 ], [ -123.70315771599999, 48.924768092000051 ], [ -123.702618197999968, 48.923234198000046 ], [ -123.702719297, 48.922665886000104 ], [ -123.702600487999973, 48.921992290000055 ], [ -123.702611580999971, 48.921873940000083 ], [ -123.704764949999927, 48.921920116000102 ], [ -123.704991086999911, 48.922103401000065 ], [ -123.705268492999977, 48.922443795000149 ], [ -123.705418988999952, 48.922415305000065 ], [ -123.705516698999958, 48.922667395000076 ], [ -123.705339982999973, 48.922722902000054 ], [ -123.70544321199999, 48.92319860300006 ], [ -123.705362492999939, 48.923352417000075 ], [ -123.705052783999932, 48.923543193000043 ], [ -123.70504158599999, 48.923731199000038 ], [ -123.705477819999885, 48.924682600000025 ], [ -123.705613786999962, 48.924618511000098 ], [ -123.706011307999972, 48.924750995000032 ], [ -123.706042103999948, 48.925021589000103 ], [ -123.705796209999974, 48.924977402000145 ], [ -123.705634009, 48.925068603000035 ], [ -123.705788883999986, 48.925391901000111 ], [ -123.706023946999949, 48.925550848000086 ], [ -123.703567122999956, 48.925498196000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407103214", "BldgCostT": "241363603", "sL_LossRatio": "0.672528938178996", "sL_AssetLoss": "4948480", "sL_BldgLoss": "3327996", "sL_StrLoss": "1313670", "sL_NStrLoss": "2014326", "sL_ContLoss": "1620484", "geom_point": "0101000020E61000003955F67E1FED5EC0E9B84C13D7744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713721609999951, 48.923687086 ], [ -123.713448281999902, 48.923652899000054 ], [ -123.712768085999954, 48.923755495000101 ], [ -123.712488217999962, 48.923335294000061 ], [ -123.712251481999914, 48.922976397000099 ], [ -123.712007090999975, 48.92304051100006 ], [ -123.711504107999943, 48.922252906000089 ], [ -123.711693790999945, 48.922197394000086 ], [ -123.71112179899994, 48.921282993000069 ], [ -123.711357988999978, 48.92114031100003 ], [ -123.711535857999976, 48.921144112000064 ], [ -123.711534428999983, 48.921043505000064 ], [ -123.711610888999985, 48.92110069400006 ], [ -123.711273106999926, 48.921337082 ], [ -123.71166231499997, 48.921901095000067 ], [ -123.711731287999953, 48.921882607 ], [ -123.711851596999935, 48.921693192000077 ], [ -123.711651692, 48.921154812000083 ], [ -123.712103116999941, 48.920270407000075 ], [ -123.710683207999978, 48.918774858000063 ], [ -123.710682736999956, 48.918741547000081 ], [ -123.710651764999952, 48.918741738000087 ], [ -123.710260096999946, 48.918329185000076 ], [ -123.709851094999919, 48.918259403000036 ], [ -123.709447492999914, 48.918264762000057 ], [ -123.709442886999952, 48.917939556000057 ], [ -123.708623978999967, 48.917944590000097 ], [ -123.708620161999931, 48.917674739000084 ], [ -123.707801255999939, 48.917679767000038 ], [ -123.707793630999902, 48.917140064000122 ], [ -123.706974734999932, 48.917145086000097 ], [ -123.706967572999957, 48.9166374980001 ], [ -123.706632755, 48.916630327000114 ], [ -123.706572588999975, 48.917857340000076 ], [ -123.7047159899999, 48.918065689000116 ], [ -123.704066010999895, 48.918474490000044 ], [ -123.703629903999939, 48.918567095000107 ], [ -123.703485292999972, 48.918955889000074 ], [ -123.703796998999948, 48.91966369200005 ], [ -123.703844510999943, 48.920176387 ], [ -123.704023454999941, 48.920724177000061 ], [ -123.702633017999972, 48.920694356000048 ], [ -123.702374806999941, 48.919538401000089 ], [ -123.701878710999935, 48.919243593000083 ], [ -123.701430798999979, 48.918481614000029 ], [ -123.701199280999973, 48.918438895000122 ], [ -123.700920218999912, 48.918044400000106 ], [ -123.700060915999927, 48.918050098000023 ], [ -123.699813891999938, 48.917916217000027 ], [ -123.699863503999964, 48.917618504000117 ], [ -123.699698278999946, 48.917565794000033 ], [ -123.699523595999935, 48.917648400000097 ], [ -123.699194384999913, 48.917560096000059 ], [ -123.698908293999963, 48.917571500000115 ], [ -123.698262600999939, 48.917376396000037 ], [ -123.697797306999945, 48.917172796000045 ], [ -123.697547299999925, 48.916894999000085 ], [ -123.697148695999957, 48.915782701000104 ], [ -123.697040805999947, 48.914811406000126 ], [ -123.697172490999961, 48.914567902000059 ], [ -123.697672187999984, 48.914160603000077 ], [ -123.697496514999955, 48.913297495000073 ], [ -123.697030078999916, 48.91217519200007 ], [ -123.697167388, 48.912112497000109 ], [ -123.697330407999971, 48.912165206000097 ], [ -123.697830797999956, 48.912746311000035 ], [ -123.69841668, 48.913696297000072 ], [ -123.698772504999965, 48.913749003000099 ], [ -123.699044590999932, 48.913693400000035 ], [ -123.699097293999927, 48.91358520600005 ], [ -123.698942099999925, 48.913270404000045 ], [ -123.696295239, 48.909174129000071 ], [ -123.700223336999926, 48.909258585000046 ], [ -123.70024197399999, 48.908879482000074 ], [ -123.696918799999978, 48.908808042000089 ], [ -123.696934293999973, 48.908493334000063 ], [ -123.695720762999912, 48.90846722000002 ], [ -123.695155110999977, 48.907886886000057 ], [ -123.69402369599996, 48.906993911000058 ], [ -123.693967111999925, 48.90684148900003 ], [ -123.6943065899999, 48.90668631000009 ], [ -123.69430549499999, 48.906596608000029 ], [ -123.694045199999948, 48.906516795000066 ], [ -123.693251987999972, 48.906459911000077 ], [ -123.692799109999925, 48.906246194000133 ], [ -123.692902307999972, 48.905804709000094 ], [ -123.692497570999961, 48.90519920600012 ], [ -123.692522184999973, 48.904700146999986 ], [ -123.692629908999933, 48.904753692000064 ], [ -123.692963894999949, 48.905237897000113 ], [ -123.693473587999961, 48.905576811000039 ], [ -123.693785598999938, 48.905565506000066 ], [ -123.693839297999943, 48.905501394000019 ], [ -123.693643524, 48.905143902000127 ], [ -123.693120991999947, 48.904777890000027 ], [ -123.692555533999936, 48.904023972000054 ], [ -123.692557675999979, 48.903980572000059 ], [ -123.692577736999937, 48.903981005000027 ], [ -123.692603313999939, 48.903462448000056 ], [ -123.698059835999914, 48.903354164000071 ], [ -123.698040690999932, 48.903743268000063 ], [ -123.698925924999969, 48.903762301000086 ], [ -123.698929225999947, 48.903695181000089 ], [ -123.69859517, 48.903688 ], [ -123.698611706999927, 48.903351830000126 ], [ -123.698403001999964, 48.903347343000064 ], [ -123.700819938, 48.903299263000136 ], [ -123.700339816999985, 48.901006414000044 ], [ -123.700278219999959, 48.900712191000061 ], [ -123.700575282999949, 48.900901898000086 ], [ -123.701230386999939, 48.901160206000043 ], [ -123.701661178999956, 48.901434294000097 ], [ -123.70168714899998, 48.901459443000078 ], [ -123.701992913000012, 48.901755900000033 ], [ -123.702004039999949, 48.9017731120001 ], [ -123.702046931999931, 48.901839316000071 ], [ -123.70226519699996, 48.902176196000021 ], [ -123.702340684999939, 48.902404616000105 ], [ -123.702519794999944, 48.902946741000079 ], [ -123.702522695999932, 48.902955590000047 ], [ -123.70274028599999, 48.903495493000086 ], [ -123.702749799999978, 48.90351911000009 ], [ -123.703084186999945, 48.903925392000119 ], [ -123.703158172999977, 48.90400096500008 ], [ -123.70437962299998, 48.905248364 ], [ -123.704732398999951, 48.905608591000011 ], [ -123.705226010999979, 48.906187704000054 ], [ -123.70541211699998, 48.906506104000151 ], [ -123.705560111999915, 48.906878704000093 ], [ -123.705572116999946, 48.907243903000087 ], [ -123.705521296999962, 48.907586002000095 ], [ -123.705488722999959, 48.907684604000096 ], [ -123.707186468, 48.909088119000053 ], [ -123.709711171999942, 48.911174425000112 ], [ -123.71033102599992, 48.911719992000016 ], [ -123.713242807999947, 48.914282644000131 ], [ -123.713397975999982, 48.914489823000089 ], [ -123.713462163999978, 48.91465723900005 ], [ -123.71355056299997, 48.914744720000066 ], [ -123.713508092, 48.914832996000023 ], [ -123.714009550999947, 48.915170757000077 ], [ -123.714392983, 48.915168608000087 ], [ -123.715281480999977, 48.915163618000051 ], [ -123.715318804, 48.915324826000131 ], [ -123.715430496999943, 48.915777840000054 ], [ -123.715534980999948, 48.916201571000016 ], [ -123.715628658999918, 48.91643509000005 ], [ -123.715874029999924, 48.917046684000084 ], [ -123.716408662999967, 48.916929248000038 ], [ -123.717202516999976, 48.916389398000078 ], [ -123.717348509999923, 48.916526695000094 ], [ -123.717422516999946, 48.916685099000105 ], [ -123.717558893999978, 48.91674019800012 ], [ -123.719431408, 48.916806307000094 ], [ -123.719427858999893, 48.917493618000059 ], [ -123.71737589199999, 48.917501241000053 ], [ -123.716187797999979, 48.917739891000075 ], [ -123.716280484999942, 48.917935562000032 ], [ -123.716274545999937, 48.918085003000101 ], [ -123.717162824999917, 48.918514764000108 ], [ -123.717661021999945, 48.918781249000126 ], [ -123.718058185999951, 48.91893927500012 ], [ -123.718271372999979, 48.918985265000117 ], [ -123.717993739999926, 48.919366741000083 ], [ -123.717868649999943, 48.919471294000061 ], [ -123.71714233499992, 48.919689163000086 ], [ -123.716306361999983, 48.919929971000073 ], [ -123.71642310299994, 48.920123412000038 ], [ -123.716677589999975, 48.920495518000102 ], [ -123.716974203999925, 48.920759501000084 ], [ -123.717035822999947, 48.920810591000127 ], [ -123.717550728000035, 48.921237601000072 ], [ -123.718097304999944, 48.921630293000028 ], [ -123.719006986999929, 48.922293911000047 ], [ -123.718685080999975, 48.92246450100005 ], [ -123.718510309999942, 48.922471583000096 ], [ -123.718330725999976, 48.922575 ], [ -123.718244403999947, 48.922695698000105 ], [ -123.717762982999929, 48.922892603000093 ], [ -123.717106374999958, 48.922100199000042 ], [ -123.716875004999935, 48.92224076400003 ], [ -123.716713117999944, 48.92233911300012 ], [ -123.716602008999985, 48.922406587000104 ], [ -123.716486353, 48.922476932000095 ], [ -123.716211392000019, 48.92264419400005 ], [ -123.716052753999975, 48.922777968000105 ], [ -123.714169818999935, 48.924365412000107 ], [ -123.713721609999951, 48.923687086 ] ], [ [ -123.704006968000016, 48.91373304899999 ], [ -123.704044930999913, 48.912959656000048 ], [ -123.704001114999983, 48.912958717 ], [ -123.704023782999968, 48.912496909000019 ], [ -123.703394019999919, 48.912483402000142 ], [ -123.70340616599999, 48.912236007000054 ], [ -123.703270631999928, 48.912233099000019 ], [ -123.703287607999954, 48.91188733500011 ], [ -123.702996641999931, 48.911881093000041 ], [ -123.70300203499994, 48.911771280000067 ], [ -123.702498729999959, 48.91176048100003 ], [ -123.702519612999964, 48.91133530400004 ], [ -123.702457954999929, 48.911333981000084 ], [ -123.702474013999989, 48.911007019000081 ], [ -123.701982457000028, 48.910996469000054 ], [ -123.702014422999952, 48.910345790000157 ], [ -123.701632850999985, 48.910337599000094 ], [ -123.701483393, 48.913379282000086 ], [ -123.70223126399999, 48.913395334000036 ], [ -123.702216560999929, 48.913694639000063 ], [ -123.704006968000016, 48.91373304899999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.922647681354628", "sL_AssetLoss": "5197", "sL_BldgLoss": "4795", "sL_StrLoss": "3690", "sL_NStrLoss": "1105", "sL_ContLoss": "402", "geom_point": "0101000020E610000061BA181CC8ED5EC0BB965664F0724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.714572859999947, 48.898682835000045 ], [ -123.714551948999912, 48.896227874000012 ], [ -123.71466304799999, 48.896577387000029 ], [ -123.71674634099999, 48.898630332000039 ], [ -123.71702873699995, 48.898681348000032 ], [ -123.717030814999987, 48.898681711000059 ], [ -123.717191122, 48.89870868200012 ], [ -123.717395555999929, 48.89874307200003 ], [ -123.717086140999939, 48.898736472000046 ], [ -123.714572859999947, 48.898682835000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238648001", "BldgCostT": "153805001", "sL_LossRatio": "0.751355624868193", "sL_AssetLoss": "2076902", "sL_BldgLoss": "1560492", "sL_StrLoss": "769200", "sL_NStrLoss": "791292", "sL_ContLoss": "516410", "geom_point": "0101000020E6100000627D14BF73EE5EC0015E03AEED744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.717380803999959, 48.900348538000046 ], [ -123.71738852799993, 48.900888241000075 ], [ -123.718616470999962, 48.900880597 ], [ -123.718612602999883, 48.900610745000101 ], [ -123.718203289999934, 48.900613294000095 ], [ -123.71819942399999, 48.900343442000114 ], [ -123.717380803999959, 48.900348538000046 ], [ -123.717365356999906, 48.899269130000086 ], [ -123.717622671999962, 48.899267529000099 ], [ -123.718593259999963, 48.899261486000057 ], [ -123.718597127999956, 48.899531337000028 ], [ -123.719006431999929, 48.89952878500003 ], [ -123.719010301999916, 48.899798638000057 ], [ -123.719282948999961, 48.89979693800008 ], [ -123.719318549999954, 48.899066539000074 ], [ -123.72296968399999, 48.899680591000106 ], [ -123.71837452699999, 48.899885766000111 ], [ -123.718252767999942, 48.899891172000011 ], [ -123.718369520999929, 48.900006729000047 ], [ -123.718381724, 48.900018809000109 ], [ -123.718587668999959, 48.900222656000047 ], [ -123.718778586999989, 48.900411609000109 ], [ -123.719735289999988, 48.901358509000062 ], [ -123.719943001999951, 48.901564092000079 ], [ -123.720062588999951, 48.90168240600007 ], [ -123.720096192999932, 48.901715661000061 ], [ -123.72116741399995, 48.902775808000037 ], [ -123.72183189699993, 48.90334579600006 ], [ -123.722102873999972, 48.903573204000097 ], [ -123.7248857299999, 48.905581582000096 ], [ -123.725325575999975, 48.905899016 ], [ -123.72532899299992, 48.905901473000078 ], [ -123.725491125999966, 48.906018461000066 ], [ -123.725568195999969, 48.906074095000108 ], [ -123.725727813999981, 48.906178375000074 ], [ -123.725892305999977, 48.906285846000053 ], [ -123.726540405999941, 48.906709190000093 ], [ -123.726715571999989, 48.906804904000047 ], [ -123.727156395999941, 48.907045715000088 ], [ -123.727906692, 48.907396807000048 ], [ -123.728461814999974, 48.907611299000067 ], [ -123.729267900999943, 48.907907704000138 ], [ -123.730027087999986, 48.908130997000029 ], [ -123.731137, 48.908402064000029 ], [ -123.731942812999989, 48.908598827000048 ], [ -123.731999710999943, 48.908612725000133 ], [ -123.732121019999923, 48.908642345000032 ], [ -123.73370232900001, 48.909028471000049 ], [ -123.734984775999948, 48.909341623000039 ], [ -123.735230496999975, 48.909401586000058 ], [ -123.735342249, 48.909436324000112 ], [ -123.735822526999982, 48.909585577000037 ], [ -123.736739034999985, 48.909870408000124 ], [ -123.736891509999964, 48.909917795000119 ], [ -123.736960606999958, 48.90994749099999 ], [ -123.737778939999913, 48.910299181000049 ], [ -123.737984575999988, 48.910387550000102 ], [ -123.73809989499992, 48.910437104000046 ], [ -123.738985618999905, 48.910865694000108 ], [ -123.740196680999986, 48.911553496000103 ], [ -123.740698491000018, 48.91188838500004 ], [ -123.741378380999961, 48.912401890000062 ], [ -123.741782113999975, 48.912734798000052 ], [ -123.743460489999947, 48.914262960000045 ], [ -123.74467819199999, 48.915371604000036 ], [ -123.74537075399995, 48.91599540700004 ], [ -123.746758852999946, 48.917245615000077 ], [ -123.746625580999989, 48.917242809000115 ], [ -123.746593721999886, 48.917904050000068 ], [ -123.746281940999921, 48.917897489000026 ], [ -123.746254239999956, 48.918472358000038 ], [ -123.740806961, 48.91835756800004 ], [ -123.740809739999975, 48.918300027000043 ], [ -123.739393213999932, 48.918270131000085 ], [ -123.739417064999955, 48.917776651000032 ], [ -123.737704645999941, 48.917740484000049 ], [ -123.737694776999916, 48.917740276000131 ], [ -123.737694838999928, 48.917744386000024 ], [ -123.737695102000018, 48.917762303000075 ], [ -123.737649054999963, 48.917762597000056 ], [ -123.736582759000015, 48.917769413000073 ], [ -123.736573730999964, 48.91795597700014 ], [ -123.736431986999975, 48.920884692000122 ], [ -123.731045958999985, 48.920770706000042 ], [ -123.731018496999937, 48.921336724000085 ], [ -123.729137887999912, 48.921296860000027 ], [ -123.729122038999932, 48.921623269000108 ], [ -123.727899355999938, 48.921597334000083 ], [ -123.727884704999937, 48.921898899000126 ], [ -123.727167427000012, 48.921883678000022 ], [ -123.727105045, 48.923167215000028 ], [ -123.726268272999945, 48.923149453000114 ], [ -123.726251115999972, 48.923502313000043 ], [ -123.726312636999978, 48.923501927000125 ], [ -123.72632046499993, 48.924041627000129 ], [ -123.726729966, 48.924039048000083 ], [ -123.72673388199999, 48.924308898000078 ], [ -123.727143387999931, 48.924306317000095 ], [ -123.72714730499996, 48.92457616700009 ], [ -123.72899489, 48.924564504000081 ], [ -123.729115038999936, 48.92447006200009 ], [ -123.729129837999935, 48.924325462000084 ], [ -123.729052437999911, 48.924220362 ], [ -123.728973537999963, 48.923865862000085 ], [ -123.729065336999952, 48.92384656200003 ], [ -123.72918441799996, 48.923847500000036 ], [ -123.729183051999939, 48.923753689000101 ], [ -123.730821052999957, 48.923743321000067 ], [ -123.73082499099999, 48.924013172000024 ], [ -123.733691503999935, 48.923994971000099 ], [ -123.733695457999943, 48.924264821000044 ], [ -123.734913313999954, 48.924257068000038 ], [ -123.734770901999966, 48.924344300000016 ], [ -123.734253011999968, 48.924518510000105 ], [ -123.732837583999981, 48.924664198000073 ], [ -123.732168305999977, 48.924688799000137 ], [ -123.731657805999959, 48.924650776000064 ], [ -123.73098371699993, 48.924600592000125 ], [ -123.73075142299993, 48.924610995000108 ], [ -123.730354863999963, 48.924736831000168 ], [ -123.72974181599993, 48.924931402000027 ], [ -123.729729495999962, 48.924935290000057 ], [ -123.729437284999932, 48.92508499400008 ], [ -123.729329336999982, 48.925185258000063 ], [ -123.729183100999975, 48.925321004000104 ], [ -123.729033312999917, 48.925542218000039 ], [ -123.728933511999983, 48.925968907000033 ], [ -123.72859976299992, 48.925798486000062 ], [ -123.728261669999981, 48.925625826000086 ], [ -123.72777716799996, 48.925412313999985 ], [ -123.72769036899993, 48.925374054000024 ], [ -123.725716665999983, 48.925390726000046 ], [ -123.724531665999919, 48.925401175000019 ], [ -123.723316832999942, 48.925411857000057 ], [ -123.72218617299994, 48.92542179200008 ], [ -123.722170237999961, 48.925421919 ], [ -123.721490983999956, 48.925427932000034 ], [ -123.723031255999928, 48.923895770000108 ], [ -123.722425358999928, 48.923802635000094 ], [ -123.722309528, 48.923784830000045 ], [ -123.721718639999949, 48.923693978000067 ], [ -123.721017638999967, 48.923530407000086 ], [ -123.721294289999932, 48.923476824000034 ], [ -123.72143590599994, 48.92342398600006 ], [ -123.721769827999964, 48.922936896000081 ], [ -123.721506556999927, 48.922257464000069 ], [ -123.72206752699999, 48.92010033300005 ], [ -123.72212040499997, 48.919950726000081 ], [ -123.722364268999968, 48.920124725000022 ], [ -123.722861445999953, 48.919824389000091 ], [ -123.722861004999913, 48.919659966000062 ], [ -123.722860854999936, 48.919606027000036 ], [ -123.722859301, 48.91902795900009 ], [ -123.72285599599999, 48.918395419000063 ], [ -123.722743607999945, 48.918184040000057 ], [ -123.72258831, 48.91823857100011 ], [ -123.722485787999972, 48.918274589000092 ], [ -123.72111118399998, 48.918757432000113 ], [ -123.720500769999958, 48.918834534000048 ], [ -123.719804475000018, 48.91889371200002 ], [ -123.719762784999915, 48.918897273000091 ], [ -123.71952611599994, 48.918917379000078 ], [ -123.718643129999947, 48.918993178000036 ], [ -123.718334689999935, 48.918986612000012 ], [ -123.718271372999979, 48.918985265000117 ], [ -123.718058185999951, 48.91893927500012 ], [ -123.717661021999945, 48.918781249000126 ], [ -123.717162824999917, 48.918514764000108 ], [ -123.716274545999937, 48.918085003000101 ], [ -123.716280484999942, 48.917935562000032 ], [ -123.716187797999979, 48.917739891000075 ], [ -123.71737589199999, 48.917501241000053 ], [ -123.719427858999893, 48.917493618000059 ], [ -123.719431408, 48.916806307000094 ], [ -123.717558893999978, 48.91674019800012 ], [ -123.717422516999946, 48.916685099000105 ], [ -123.717348509999923, 48.916526695000094 ], [ -123.717202516999976, 48.916389398000078 ], [ -123.716408662999967, 48.916929248000038 ], [ -123.715874029999924, 48.917046684000084 ], [ -123.715628658999918, 48.91643509000005 ], [ -123.715534980999948, 48.916201571000016 ], [ -123.715430496999943, 48.915777840000054 ], [ -123.715318804, 48.915324826000131 ], [ -123.715281480999977, 48.915163618000051 ], [ -123.714392983, 48.915168608000087 ], [ -123.714009550999947, 48.915170757000077 ], [ -123.713508092, 48.914832996000023 ], [ -123.71355056299997, 48.914744720000066 ], [ -123.713462163999978, 48.91465723900005 ], [ -123.713397975999982, 48.914489823000089 ], [ -123.713242807999947, 48.914282644000131 ], [ -123.71033102599992, 48.911719992000016 ], [ -123.709711171999942, 48.911174425000112 ], [ -123.707186468, 48.909088119000053 ], [ -123.705488722999959, 48.907684604000096 ], [ -123.705521296999962, 48.907586002000095 ], [ -123.705572116999946, 48.907243903000087 ], [ -123.705642148999942, 48.907243796000046 ], [ -123.707981897999971, 48.907240512000044 ], [ -123.708603591999989, 48.907240668000085 ], [ -123.709831831999935, 48.907241016000093 ], [ -123.710950627999935, 48.907241329000051 ], [ -123.712178954999942, 48.907241646000038 ], [ -123.714048679999934, 48.907242104000041 ], [ -123.714850804999926, 48.907242304000121 ], [ -123.714855028, 48.905670478000062 ], [ -123.714855473999947, 48.905490560000104 ], [ -123.714855593, 48.905445606000065 ], [ -123.714857480999981, 48.904744198000095 ], [ -123.714857583999972, 48.90470820899999 ], [ -123.714860888999965, 48.903465705 ], [ -123.714864276999933, 48.903296233000049 ], [ -123.714865624999931, 48.903229700000132 ], [ -123.714706537999987, 48.901432811000063 ], [ -123.716168703, 48.90146401900013 ], [ -123.716152874999949, 48.900356170000101 ], [ -123.717380803999959, 48.900348538000046 ] ], [ [ -123.718147987999913, 48.908627490000114 ], [ -123.71890188899999, 48.910772392000133 ], [ -123.719206892, 48.912004293000031 ], [ -123.719486515999932, 48.912451507000128 ], [ -123.719936306999927, 48.9125028 ], [ -123.720246700999922, 48.912203704000071 ], [ -123.720752816999962, 48.911310700000094 ], [ -123.721387405999948, 48.910929004000096 ], [ -123.722298794999958, 48.910617103000035 ], [ -123.722588900999966, 48.909967699000049 ], [ -123.723403608999945, 48.909593103000084 ], [ -123.723647300999971, 48.909564610000075 ], [ -123.723936790999957, 48.909688500000073 ], [ -123.724167192999985, 48.909580301000048 ], [ -123.724285186999964, 48.909345302000048 ], [ -123.724224596999989, 48.908859699000075 ], [ -123.723110112999933, 48.907274487000144 ], [ -123.72186741799996, 48.906229106000062 ], [ -123.721491094999948, 48.905746306 ], [ -123.720994786999981, 48.905326211000073 ], [ -123.720860307999928, 48.904581305000086 ], [ -123.720637319999952, 48.904240897000058 ], [ -123.720283586999955, 48.904260909000115 ], [ -123.719523911999914, 48.904633998000079 ], [ -123.719367818999956, 48.905165198000056 ], [ -123.71904640299999, 48.905563984000061 ], [ -123.718165110999948, 48.906036908000019 ], [ -123.718023300999974, 48.906630812000039 ], [ -123.717757395999968, 48.907092211000098 ], [ -123.717861490999965, 48.907730290000075 ], [ -123.718071700999943, 48.908043610000057 ], [ -123.718147987999913, 48.908627490000114 ] ], [ [ -123.729403927999954, 48.910798276000051 ], [ -123.729407855999966, 48.911068128000117 ], [ -123.72817966699999, 48.911075889000081 ], [ -123.728175745, 48.910806038000096 ], [ -123.725859880999963, 48.910820637000036 ], [ -123.725803033999938, 48.911989936000055 ], [ -123.727551638999941, 48.91202706500016 ], [ -123.72749079099999, 48.91327954400009 ], [ -123.730614003999946, 48.913345789000083 ], [ -123.730554046999913, 48.91458154 ], [ -123.730707375999913, 48.914584790000056 ], [ -123.730683240999937, 48.915082228000117 ], [ -123.732265448999939, 48.91511575000002 ], [ -123.732259668999944, 48.915234972000107 ], [ -123.733263321, 48.915256225000043 ], [ -123.733246822999945, 48.91559664100005 ], [ -123.734933936999965, 48.915632344000109 ], [ -123.73494756299999, 48.915350966000098 ], [ -123.73397446199999, 48.915357163000046 ], [ -123.733958649000016, 48.91427776200004 ], [ -123.733139803999933, 48.914282970000031 ], [ -123.733143753999954, 48.914552821000058 ], [ -123.731915479999927, 48.914560622000103 ], [ -123.731911536999959, 48.914290772000115 ], [ -123.731502113999952, 48.914293369000085 ], [ -123.731490294999958, 48.913483819000135 ], [ -123.731899710999983, 48.913481220000037 ], [ -123.731895767999958, 48.913211370000042 ], [ -123.731076941, 48.913216563000098 ], [ -123.731073004, 48.912946713000096 ], [ -123.730663591999971, 48.912949308000108 ], [ -123.73065572099992, 48.912409606000097 ], [ -123.730246313999956, 48.912412200000112 ], [ -123.730229672999954, 48.911270448000103 ], [ -123.729698972999984, 48.911259195000035 ], [ -123.729721439999977, 48.910796268000126 ], [ -123.729403927999954, 48.910798276000051 ] ], [ [ -123.715249485999934, 48.911156807000062 ], [ -123.715260709999981, 48.91092702800011 ], [ -123.715075594999988, 48.910923077000099 ], [ -123.715078944999959, 48.911157865000071 ], [ -123.715249485999934, 48.911156807000062 ] ], [ [ -123.713437507999942, 48.910898155000027 ], [ -123.714360373, 48.910892442000041 ], [ -123.714362673999986, 48.910845343000119 ], [ -123.713436475999941, 48.910825566000014 ], [ -123.713437507999942, 48.910898155000027 ] ], [ [ -123.713028564999945, 48.910630809000082 ], [ -123.713049542999954, 48.910201709000027 ], [ -123.711639852999937, 48.910171586000075 ], [ -123.71163525899999, 48.91026551500007 ], [ -123.712091508999933, 48.910275266000063 ], [ -123.71208703399995, 48.910366751000048 ], [ -123.712611040999903, 48.910363514000103 ], [ -123.712614877999954, 48.910633366000063 ], [ -123.713028564999945, 48.910630809000082 ] ], [ [ -123.711546823999981, 48.91009671300003 ], [ -123.711558198999938, 48.909864213000091 ], [ -123.711284085000017, 48.909858352000136 ], [ -123.711272709, 48.910090854000039 ], [ -123.711546823999981, 48.91009671300003 ] ], [ [ -123.722841949999975, 48.915530782000076 ], [ -123.72278203299993, 48.916761441000055 ], [ -123.724993323999968, 48.91680844600009 ], [ -123.725053182999929, 48.915577787000132 ], [ -123.722841949999975, 48.915530782000076 ] ], [ [ -123.72590311499999, 48.923502854000077 ], [ -123.725903138999954, 48.923504504000036 ], [ -123.725963083999957, 48.923504127000029 ], [ -123.72590311499999, 48.923502854000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190261958", "BldgCostT": "113248565", "sL_LossRatio": "0.663022964227309", "sL_AssetLoss": "2516305", "sL_BldgLoss": "1668368", "sL_StrLoss": "625026", "sL_NStrLoss": "1043342", "sL_ContLoss": "847937", "geom_point": "0101000020E6100000AB8769BE0EEE5EC027943B2215764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.716306361999983, 48.919929971000073 ], [ -123.71714233499992, 48.919689163000086 ], [ -123.717868649999943, 48.919471294000061 ], [ -123.717993739999926, 48.919366741000083 ], [ -123.718271372999979, 48.918985265000117 ], [ -123.718334689999935, 48.918986612000012 ], [ -123.718643129999947, 48.918993178000036 ], [ -123.71952611599994, 48.918917379000078 ], [ -123.719762784999915, 48.918897273000091 ], [ -123.719804475000018, 48.91889371200002 ], [ -123.720500769999958, 48.918834534000048 ], [ -123.72111118399998, 48.918757432000113 ], [ -123.722485787999972, 48.918274589000092 ], [ -123.72258831, 48.91823857100011 ], [ -123.722743607999945, 48.918184040000057 ], [ -123.72285599599999, 48.918395419000063 ], [ -123.722859301, 48.91902795900009 ], [ -123.722860854999936, 48.919606027000036 ], [ -123.722861004999913, 48.919659966000062 ], [ -123.722861445999953, 48.919824389000091 ], [ -123.722364268999968, 48.920124725000022 ], [ -123.72212040499997, 48.919950726000081 ], [ -123.72206752699999, 48.92010033300005 ], [ -123.721506556999927, 48.922257464000069 ], [ -123.721769827999964, 48.922936896000081 ], [ -123.72143590599994, 48.92342398600006 ], [ -123.721294289999932, 48.923476824000034 ], [ -123.721017638999967, 48.923530407000086 ], [ -123.721718639999949, 48.923693978000067 ], [ -123.722309528, 48.923784830000045 ], [ -123.722425358999928, 48.923802635000094 ], [ -123.723031255999928, 48.923895770000108 ], [ -123.721490983999956, 48.925427932000034 ], [ -123.721409250999955, 48.925426199000064 ], [ -123.720901893999965, 48.92542496100004 ], [ -123.720213675999972, 48.925423277000107 ], [ -123.720210986999959, 48.926540399000089 ], [ -123.719630314999975, 48.926538801000056 ], [ -123.719050887999956, 48.92653730600005 ], [ -123.718460465999968, 48.926535732000048 ], [ -123.717889408999937, 48.926534198000049 ], [ -123.717153210000021, 48.926531987000025 ], [ -123.715967520999968, 48.926521104000173 ], [ -123.71597180599997, 48.926098674000016 ], [ -123.715975075999921, 48.925733500000113 ], [ -123.71597819199999, 48.925409606000073 ], [ -123.717173690999957, 48.925414363000108 ], [ -123.717176724999931, 48.925268484000114 ], [ -123.717188500999896, 48.924552493000121 ], [ -123.717096584999965, 48.924117177000014 ], [ -123.717820322999899, 48.924038900000056 ], [ -123.718667283999977, 48.924002899000115 ], [ -123.718513220999938, 48.923724796000101 ], [ -123.718290185999976, 48.923478449000136 ], [ -123.718096593999945, 48.923264612000089 ], [ -123.717865994999968, 48.923007439000109 ], [ -123.717762982999929, 48.922892603000093 ], [ -123.718244403999947, 48.922695698000105 ], [ -123.718330725999976, 48.922575 ], [ -123.718510309999942, 48.922471583000096 ], [ -123.718685080999975, 48.92246450100005 ], [ -123.719006986999929, 48.922293911000047 ], [ -123.718097304999944, 48.921630293000028 ], [ -123.717550728000035, 48.921237601000072 ], [ -123.717035822999947, 48.920810591000127 ], [ -123.716974203999925, 48.920759501000084 ], [ -123.716677589999975, 48.920495518000102 ], [ -123.71642310299994, 48.920123412000038 ], [ -123.716306361999983, 48.919929971000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207355856", "BldgCostT": "130786109", "sL_LossRatio": "0.74579202201063", "sL_AssetLoss": "1852196", "sL_BldgLoss": "1381353", "sL_StrLoss": "606780", "sL_NStrLoss": "774573", "sL_ContLoss": "470843", "geom_point": "0101000020E610000018388E2F0CEE5EC0D813C041B9764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.722305044999985, 48.929587095000024 ], [ -123.722303273999941, 48.92946435300005 ], [ -123.721938789999982, 48.929466635000082 ], [ -123.721481067999918, 48.92925359 ], [ -123.721480291999924, 48.929199629000031 ], [ -123.721366659999944, 48.929200340000122 ], [ -123.721068722999931, 48.92906166300002 ], [ -123.721066859999937, 48.928932340000088 ], [ -123.720657315999986, 48.928934900000037 ], [ -123.720654636999896, 48.928748709000025 ], [ -123.720365020999964, 48.928666851000081 ], [ -123.718196185999915, 48.928680376000081 ], [ -123.718197566999905, 48.928776665000065 ], [ -123.717905499999958, 48.92877150200011 ], [ -123.716645915999933, 48.928553602000072 ], [ -123.715765895999979, 48.928136315000081 ], [ -123.714863507999937, 48.927035410000087 ], [ -123.714512984999914, 48.92642579600011 ], [ -123.714222813999982, 48.926176596000118 ], [ -123.714297184999978, 48.925762190000057 ], [ -123.714687210999926, 48.925405999000048 ], [ -123.714863297999941, 48.925245186000033 ], [ -123.714927411999923, 48.924894790000074 ], [ -123.71476148899994, 48.924805097000053 ], [ -123.713873784000029, 48.924738196000057 ], [ -123.713872448999936, 48.92461199400001 ], [ -123.713904153999977, 48.924589373000082 ], [ -123.714022134999979, 48.92448991300008 ], [ -123.714169900999977, 48.924448986000094 ], [ -123.714183684, 48.924386397000063 ], [ -123.714169818999935, 48.924365412000107 ], [ -123.716052753999975, 48.922777968000105 ], [ -123.716211392000019, 48.92264419400005 ], [ -123.716486353, 48.922476932000095 ], [ -123.716602008999985, 48.922406587000104 ], [ -123.716713117999944, 48.92233911300012 ], [ -123.716875004999935, 48.92224076400003 ], [ -123.717106374999958, 48.922100199000042 ], [ -123.717762982999929, 48.922892603000093 ], [ -123.717865994999968, 48.923007439000109 ], [ -123.718096593999945, 48.923264612000089 ], [ -123.718290185999976, 48.923478449000136 ], [ -123.718513220999938, 48.923724796000101 ], [ -123.718667283999977, 48.924002899000115 ], [ -123.717820322999899, 48.924038900000056 ], [ -123.717096584999965, 48.924117177000014 ], [ -123.717188500999896, 48.924552493000121 ], [ -123.717176724999931, 48.925268484000114 ], [ -123.717173690999957, 48.925414363000108 ], [ -123.71597819199999, 48.925409606000073 ], [ -123.715975075999921, 48.925733500000113 ], [ -123.71597180599997, 48.926098674000016 ], [ -123.715967520999968, 48.926521104000173 ], [ -123.717153210000021, 48.926531987000025 ], [ -123.717889408999937, 48.926534198000049 ], [ -123.718460465999968, 48.926535732000048 ], [ -123.719050887999956, 48.92653730600005 ], [ -123.719630314999975, 48.926538801000056 ], [ -123.720210986999959, 48.926540399000089 ], [ -123.720210502999919, 48.926607917000112 ], [ -123.720200510999916, 48.927231204000115 ], [ -123.720189119999958, 48.927884102000071 ], [ -123.720181396999962, 48.928182996000032 ], [ -123.720178208999982, 48.928303699000047 ], [ -123.721756911999989, 48.928310304000085 ], [ -123.721751914999956, 48.928888495000088 ], [ -123.72213221599999, 48.929057904000082 ], [ -123.722290027, 48.929055243000064 ], [ -123.723339930999913, 48.929037633000057 ], [ -123.723941537999934, 48.929027512000054 ], [ -123.724719589999935, 48.929014415 ], [ -123.725966864999947, 48.928993428000091 ], [ -123.72597405099999, 48.929333755000116 ], [ -123.725985426999969, 48.929873121000099 ], [ -123.726009040999926, 48.930369129000063 ], [ -123.726027457000015, 48.930691147000054 ], [ -123.725659016999913, 48.931685313000074 ], [ -123.725711357999955, 48.932941092000078 ], [ -123.725515486999939, 48.932916005000045 ], [ -123.724782512999951, 48.932280805000097 ], [ -123.724070710999953, 48.932232389000099 ], [ -123.723823708999959, 48.932144087000019 ], [ -123.723501914999972, 48.931756356000086 ], [ -123.723502732999989, 48.931739575000037 ], [ -123.72348754799999, 48.931739048000061 ], [ -123.723281105999959, 48.931490301000082 ], [ -123.722922725, 48.930251304000066 ], [ -123.722477096999981, 48.929633211000102 ], [ -123.722305044999985, 48.929587095000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102449750", "BldgCostT": "64760000", "sL_LossRatio": "0.712502120136733", "sL_AssetLoss": "1226336", "sL_BldgLoss": "873767", "sL_StrLoss": "425905", "sL_NStrLoss": "447862", "sL_ContLoss": "352569", "geom_point": "0101000020E6100000FD052E6E67EE5EC00A4A7611CB764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.72597405099999, 48.929333755000116 ], [ -123.725966864999947, 48.928993428000091 ], [ -123.724719589999935, 48.929014415 ], [ -123.723941537999934, 48.929027512000054 ], [ -123.723339930999913, 48.929037633000057 ], [ -123.722290027, 48.929055243000064 ], [ -123.72213221599999, 48.929057904000082 ], [ -123.721751914999956, 48.928888495000088 ], [ -123.721756911999989, 48.928310304000085 ], [ -123.720178208999982, 48.928303699000047 ], [ -123.720181396999962, 48.928182996000032 ], [ -123.720189119999958, 48.927884102000071 ], [ -123.720200510999916, 48.927231204000115 ], [ -123.720210502999919, 48.926607917000112 ], [ -123.72338350499993, 48.926603280000066 ], [ -123.724263017999974, 48.92660256100001 ], [ -123.725825510999968, 48.926601162000082 ], [ -123.727828507999945, 48.926599677000127 ], [ -123.728572966999977, 48.926599122000013 ], [ -123.7286514499999, 48.926919704000134 ], [ -123.728715750999967, 48.927470789000012 ], [ -123.728784294, 48.928058587000159 ], [ -123.728925303999972, 48.928608445000044 ], [ -123.729107190999954, 48.929074480000097 ], [ -123.728589348999932, 48.929301822000085 ], [ -123.728169567999913, 48.929486141000062 ], [ -123.728039291999906, 48.929585172000046 ], [ -123.727969476999945, 48.929759374000135 ], [ -123.72806592799995, 48.930058635000115 ], [ -123.728173307999938, 48.930391638000053 ], [ -123.728120236999985, 48.930501325000058 ], [ -123.72795744499993, 48.93056813100003 ], [ -123.72649575899996, 48.930594786000029 ], [ -123.726271522999951, 48.93052334700009 ], [ -123.726009040999926, 48.930369129000063 ], [ -123.725985426999969, 48.929873121000099 ], [ -123.72597405099999, 48.929333755000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93811644", "BldgCostT": "61841523", "sL_LossRatio": "0.725536234560046", "sL_AssetLoss": "1202319", "sL_BldgLoss": "872326", "sL_StrLoss": "407746", "sL_NStrLoss": "464580", "sL_ContLoss": "329993", "geom_point": "0101000020E6100000538A3E9BACEE5EC07D3CE3B1D5764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.7286514499999, 48.926919704000134 ], [ -123.728572966999977, 48.926599122000013 ], [ -123.727828507999945, 48.926599677000127 ], [ -123.725825510999968, 48.926601162000082 ], [ -123.724263017999974, 48.92660256100001 ], [ -123.72338350499993, 48.926603280000066 ], [ -123.720210502999919, 48.926607917000112 ], [ -123.720210986999959, 48.926540399000089 ], [ -123.720213675999972, 48.925423277000107 ], [ -123.720901893999965, 48.92542496100004 ], [ -123.721409250999955, 48.925426199000064 ], [ -123.721490983999956, 48.925427932000034 ], [ -123.722170237999961, 48.925421919 ], [ -123.72218617299994, 48.92542179200008 ], [ -123.723316832999942, 48.925411857000057 ], [ -123.724531665999919, 48.925401175000019 ], [ -123.725716665999983, 48.925390726000046 ], [ -123.72769036899993, 48.925374054000024 ], [ -123.72777716799996, 48.925412313999985 ], [ -123.728261669999981, 48.925625826000086 ], [ -123.72859976299992, 48.925798486000062 ], [ -123.728933511999983, 48.925968907000033 ], [ -123.72929361599995, 48.926190989000133 ], [ -123.729577122999956, 48.9264105170001 ], [ -123.730163876999939, 48.926864764000086 ], [ -123.730791602999943, 48.92735070200014 ], [ -123.731414028999978, 48.927875218000111 ], [ -123.731761, 48.92816760800013 ], [ -123.73256719799997, 48.928834289000058 ], [ -123.733989798999971, 48.929894960000077 ], [ -123.734399184999944, 48.930168551000065 ], [ -123.735737203, 48.930950013000043 ], [ -123.737117360999918, 48.931734134000074 ], [ -123.732912306999964, 48.931784901000043 ], [ -123.732724403999953, 48.931862886000054 ], [ -123.732461689999937, 48.931982735000062 ], [ -123.732260043999943, 48.932074668000013 ], [ -123.730825771999918, 48.93105883700008 ], [ -123.730782131999945, 48.93102793100006 ], [ -123.730776988999949, 48.931024311000058 ], [ -123.730276193999927, 48.930610095000056 ], [ -123.730156087999916, 48.93048765400011 ], [ -123.729912422999959, 48.930239304000054 ], [ -123.729426909999958, 48.929623590000091 ], [ -123.729387006999929, 48.929555086000036 ], [ -123.729107190999954, 48.929074480000097 ], [ -123.728925303999972, 48.928608445000044 ], [ -123.728784294, 48.928058587000159 ], [ -123.728715750999967, 48.927470789000012 ], [ -123.7286514499999, 48.926919704000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11544416", "BldgCostT": "7961666", "sL_LossRatio": "0.810148355192432", "sL_AssetLoss": "93020", "sL_BldgLoss": "75360", "sL_StrLoss": "43580", "sL_NStrLoss": "31780", "sL_ContLoss": "17660", "geom_point": "0101000020E610000032B818C9BFEF5EC0C7B5EBEF36774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.74526595399999, 48.931207384000089 ], [ -123.745245872999988, 48.929858140000114 ], [ -123.746474518999918, 48.929850194000082 ], [ -123.746478539999927, 48.930120043000059 ], [ -123.74688809099996, 48.930117391000074 ], [ -123.746892115999984, 48.930387241000041 ], [ -123.747301668999967, 48.930384588000059 ], [ -123.747305696999931, 48.93065443600009 ], [ -123.747715251999935, 48.93065178200002 ], [ -123.747727341999934, 48.931461328000132 ], [ -123.747317777999953, 48.931463983000093 ], [ -123.747333890999954, 48.932543377000059 ], [ -123.744466897999985, 48.932561919000143 ], [ -123.744446834999962, 48.931212674000101 ], [ -123.74526595399999, 48.931207384000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.849540679084403", "sL_AssetLoss": "39406", "sL_BldgLoss": "33477", "sL_StrLoss": "21113", "sL_NStrLoss": "12364", "sL_ContLoss": "5929", "geom_point": "0101000020E61000009E0C6513A6F05EC0B421BDB0CE774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.75891699899999, 48.934881198000028 ], [ -123.76007999199993, 48.934905522000136 ], [ -123.76103990699994, 48.935725797000032 ], [ -123.762346905999962, 48.936842582000025 ], [ -123.761211222999947, 48.936803481000062 ], [ -123.758828787, 48.936721368000121 ], [ -123.75891699899999, 48.934881198000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155314000", "BldgCostT": "103960000", "sL_LossRatio": "0.780641239148809", "sL_AssetLoss": "1394893", "sL_BldgLoss": "1088911", "sL_StrLoss": "584031", "sL_NStrLoss": "504880", "sL_ContLoss": "305982", "geom_point": "0101000020E61000009D619B3B57EF5EC00513D25C1F774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.743204697999928, 48.935655407000063 ], [ -123.741423981999958, 48.93460529700004 ], [ -123.74077535899994, 48.934142891000121 ], [ -123.740359666999936, 48.933715180000014 ], [ -123.738992238999984, 48.932580952000109 ], [ -123.738504911999911, 48.932225604000074 ], [ -123.73825689399996, 48.932137492000038 ], [ -123.737117360999918, 48.931734134000074 ], [ -123.735737203, 48.930950013000043 ], [ -123.734399184999944, 48.930168551000065 ], [ -123.733989798999971, 48.929894960000077 ], [ -123.73256719799997, 48.928834289000058 ], [ -123.731761, 48.92816760800013 ], [ -123.731414028999978, 48.927875218000111 ], [ -123.730791602999943, 48.92735070200014 ], [ -123.730163876999939, 48.926864764000086 ], [ -123.729577122999956, 48.9264105170001 ], [ -123.72929361599995, 48.926190989000133 ], [ -123.728933511999983, 48.925968907000033 ], [ -123.729033312999917, 48.925542218000039 ], [ -123.729183100999975, 48.925321004000104 ], [ -123.729329336999982, 48.925185258000063 ], [ -123.729437284999932, 48.92508499400008 ], [ -123.729729495999962, 48.924935290000057 ], [ -123.72974181599993, 48.924931402000027 ], [ -123.730354863999963, 48.924736831000168 ], [ -123.73075142299993, 48.924610995000108 ], [ -123.73098371699993, 48.924600592000125 ], [ -123.731657805999959, 48.924650776000064 ], [ -123.732168305999977, 48.924688799000137 ], [ -123.732837583999981, 48.924664198000073 ], [ -123.734253011999968, 48.924518510000105 ], [ -123.734770901999966, 48.924344300000016 ], [ -123.734913313999954, 48.924257068000038 ], [ -123.73533347299994, 48.924254390000087 ], [ -123.735337434999906, 48.924524240000054 ], [ -123.736975456999971, 48.924513784000034 ], [ -123.73700325599999, 48.926402731000046 ], [ -123.736184212999902, 48.926407963000045 ], [ -123.73618727099992, 48.926615863000031 ], [ -123.738078826999981, 48.92665582900004 ], [ -123.737973874999923, 48.928825400000079 ], [ -123.73826762499999, 48.928823519000041 ], [ -123.738271600999923, 48.92909336900005 ], [ -123.738681144999973, 48.929090747000082 ], [ -123.738685124999904, 48.929360596000045 ], [ -123.740732848999968, 48.929347463000077 ], [ -123.740740834999912, 48.929887162000078 ], [ -123.74196948300002, 48.929879264000085 ], [ -123.741981477999943, 48.930688811000046 ], [ -123.741571922999981, 48.930691445 ], [ -123.741575918999928, 48.930961294000035 ], [ -123.740756802999925, 48.930966558000094 ], [ -123.740760794999943, 48.931236407000071 ], [ -123.740068612999934, 48.931240850000101 ], [ -123.739942306999922, 48.931284498000089 ], [ -123.739949649999943, 48.931781363000042 ], [ -123.740435432999931, 48.931778246000107 ], [ -123.740791937999987, 48.931677962000037 ], [ -123.740926238999961, 48.931674962000081 ], [ -123.7410201599999, 48.931774491000048 ], [ -123.741997472999955, 48.931768207000104 ], [ -123.742013469999932, 48.932847603000099 ], [ -123.74160389799999, 48.932850238000114 ], [ -123.741610190999964, 48.933275030000097 ], [ -123.746904202999986, 48.933386517000052 ], [ -123.746866653999959, 48.934165653000022 ], [ -123.74776764299996, 48.934159815000051 ], [ -123.747775655999959, 48.934696301000024 ], [ -123.748459172999929, 48.934710670000086 ], [ -123.748460225999935, 48.934688839000074 ], [ -123.753909426999925, 48.934803237000018 ], [ -123.753895339999971, 48.935096445000127 ], [ -123.754514321, 48.935109422000025 ], [ -123.754444164999981, 48.936570090000011 ], [ -123.753698883999988, 48.936544358000113 ], [ -123.744295106999942, 48.936219203000093 ], [ -123.744119356999974, 48.936128349000072 ], [ -123.743781970999933, 48.935953877000074 ], [ -123.743204697999928, 48.935655407000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26940833", "BldgCostT": "18083333", "sL_LossRatio": "0.866501886003477", "sL_AssetLoss": "104745.3", "sL_BldgLoss": "90762", "sL_StrLoss": "60874", "sL_NStrLoss": "29888", "sL_ContLoss": "13983.3", "geom_point": "0101000020E61000004E5813F25EF05EC044C16B1B6F774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.753775026999904, 48.930909959000083 ], [ -123.755471292999971, 48.93094551800003 ], [ -123.756449844999963, 48.931799498000018 ], [ -123.756652823999943, 48.931976598000098 ], [ -123.75687057499999, 48.932162746000131 ], [ -123.758076230999961, 48.933193129000095 ], [ -123.759078780999971, 48.93404991900011 ], [ -123.759051258999946, 48.934624095000103 ], [ -123.753602066999974, 48.934509959000081 ], [ -123.753775026999904, 48.930909959000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174748416", "BldgCostT": "116886666", "sL_LossRatio": "0.786401584684152", "sL_AssetLoss": "1446345", "sL_BldgLoss": "1137408", "sL_StrLoss": "623309", "sL_NStrLoss": "514099", "sL_ContLoss": "308937", "geom_point": "0101000020E6100000AC9AE63EF5EE5EC0CE6792BB7C774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.736628348999943, 48.936972775000065 ], [ -123.736343664999964, 48.936101488000091 ], [ -123.736255494999924, 48.936099799000012 ], [ -123.73609299499999, 48.936081585000053 ], [ -123.735979699999945, 48.936068870000113 ], [ -123.734493232999952, 48.936320173000126 ], [ -123.734356880999911, 48.93627849600005 ], [ -123.734106996999913, 48.935992312000046 ], [ -123.733750099999952, 48.935841288000105 ], [ -123.731448119999925, 48.935388401000054 ], [ -123.730348315999933, 48.934818696999983 ], [ -123.729541206999968, 48.934643508000086 ], [ -123.728946198999921, 48.934143602000027 ], [ -123.727248899999921, 48.933867308000075 ], [ -123.726572821999952, 48.933457201000088 ], [ -123.726115912999944, 48.932992904000074 ], [ -123.725711357999955, 48.932941092000078 ], [ -123.725659016999913, 48.931685313000074 ], [ -123.726027457000015, 48.930691147000054 ], [ -123.726009040999926, 48.930369129000063 ], [ -123.726271522999951, 48.93052334700009 ], [ -123.72649575899996, 48.930594786000029 ], [ -123.72795744499993, 48.93056813100003 ], [ -123.728120236999985, 48.930501325000058 ], [ -123.728173307999938, 48.930391638000053 ], [ -123.72806592799995, 48.930058635000115 ], [ -123.727969476999945, 48.929759374000135 ], [ -123.728039291999906, 48.929585172000046 ], [ -123.728169567999913, 48.929486141000062 ], [ -123.728589348999932, 48.929301822000085 ], [ -123.729107190999954, 48.929074480000097 ], [ -123.729387006999929, 48.929555086000036 ], [ -123.729426909999958, 48.929623590000091 ], [ -123.729912422999959, 48.930239304000054 ], [ -123.730156087999916, 48.93048765400011 ], [ -123.730276193999927, 48.930610095000056 ], [ -123.730776988999949, 48.931024311000058 ], [ -123.730782131999945, 48.93102793100006 ], [ -123.730825771999918, 48.93105883700008 ], [ -123.732260043999943, 48.932074668000013 ], [ -123.732461689999937, 48.931982735000062 ], [ -123.732724403999953, 48.931862886000054 ], [ -123.732912306999964, 48.931784901000043 ], [ -123.737117360999918, 48.931734134000074 ], [ -123.73825689399996, 48.932137492000038 ], [ -123.738504911999911, 48.932225604000074 ], [ -123.738992238999984, 48.932580952000109 ], [ -123.740359666999936, 48.933715180000014 ], [ -123.74077535899994, 48.934142891000121 ], [ -123.741423981999958, 48.93460529700004 ], [ -123.743204697999928, 48.935655407000063 ], [ -123.743781970999933, 48.935953877000074 ], [ -123.744119356999974, 48.936128349000072 ], [ -123.744295106999942, 48.936219203000093 ], [ -123.741016940999913, 48.936177082000057 ], [ -123.740490618999928, 48.936170297000096 ], [ -123.739589035999956, 48.936156945000093 ], [ -123.73790680099998, 48.936132004000036 ], [ -123.737631624999921, 48.936126101000077 ], [ -123.73673812, 48.936109017000021 ], [ -123.736996572999914, 48.937085316000022 ], [ -123.736628348999943, 48.936972775000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230471167", "BldgCostT": "153846667", "sL_LossRatio": "0.750104193252221", "sL_AssetLoss": "2636927", "sL_BldgLoss": "1977970", "sL_StrLoss": "975255", "sL_NStrLoss": "1002715", "sL_ContLoss": "658957", "geom_point": "0101000020E6100000B5F646C64DF05EC0EB94CB6FE6784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.754056912999943, 48.955302086000081 ], [ -123.752692808999925, 48.954503310000057 ], [ -123.751001544999951, 48.954497057000012 ], [ -123.749515117999977, 48.953659600000023 ], [ -123.749153295999974, 48.953275010000034 ], [ -123.748613979999917, 48.952399304000025 ], [ -123.74857879299995, 48.952342203000057 ], [ -123.748247206999963, 48.952011787000117 ], [ -123.748062931000021, 48.951747836000038 ], [ -123.746571823999901, 48.949612004000109 ], [ -123.746444324999942, 48.949303321000052 ], [ -123.746231192999943, 48.948787388000028 ], [ -123.745747299999962, 48.94830449300018 ], [ -123.745604588999981, 48.948008302000105 ], [ -123.745669084999932, 48.947656497000061 ], [ -123.745416104999933, 48.947217894000019 ], [ -123.74535168599999, 48.946507197000102 ], [ -123.743909689999938, 48.945095801000051 ], [ -123.743780504999947, 48.944718385000051 ], [ -123.744073407999934, 48.94410460400011 ], [ -123.744011917999899, 48.943718607000072 ], [ -123.743437483999955, 48.943614592000131 ], [ -123.742065410999942, 48.943146100000071 ], [ -123.74160899899999, 48.942852707000078 ], [ -123.74096720899999, 48.941894202000057 ], [ -123.74058669099999, 48.941140804000057 ], [ -123.740443499999927, 48.940619506000047 ], [ -123.739430293999987, 48.939501503000024 ], [ -123.738437413999975, 48.937960497000056 ], [ -123.737264504999956, 48.937167204000062 ], [ -123.736996572999914, 48.937085316000022 ], [ -123.73673812, 48.936109017000021 ], [ -123.737631624999921, 48.936126101000077 ], [ -123.73790680099998, 48.936132004000036 ], [ -123.739589035999956, 48.936156945000093 ], [ -123.740490618999928, 48.936170297000096 ], [ -123.741016940999913, 48.936177082000057 ], [ -123.744295106999942, 48.936219203000093 ], [ -123.753698883999988, 48.936544358000113 ], [ -123.754444164999981, 48.936570090000011 ], [ -123.754440029999969, 48.93665616600002 ], [ -123.755396082999965, 48.936676203000083 ], [ -123.755328356999939, 48.93808677700013 ], [ -123.755944847999956, 48.938099692000023 ], [ -123.75590448299999, 48.93894058100004 ], [ -123.757345547999975, 48.938970759000036 ], [ -123.757296210999939, 48.93999916500006 ], [ -123.759749723999931, 48.940050498000112 ], [ -123.759661311999963, 48.941895291000087 ], [ -123.76087069499999, 48.941920574000036 ], [ -123.760825772999908, 48.94285834100004 ], [ -123.761635322999922, 48.94287525700004 ], [ -123.761608770999928, 48.943429732000077 ], [ -123.761604693999956, 48.943514889000021 ], [ -123.761686709999964, 48.943514347000097 ], [ -123.7616911, 48.943422693000088 ], [ -123.761701518999985, 48.943205090000077 ], [ -123.762386971999931, 48.943219408000076 ], [ -123.762412418999943, 48.942687806 ], [ -123.763438733999976, 48.942709236000063 ], [ -123.763580539999907, 48.939745326000065 ], [ -123.764427979999979, 48.939763013000075 ], [ -123.764428905999949, 48.939743648000061 ], [ -123.765761248, 48.939771442000094 ], [ -123.769878734999935, 48.939857232000115 ], [ -123.769875734999928, 48.939920128000018 ], [ -123.770421359999929, 48.939931485000081 ], [ -123.770971743999965, 48.943546485000105 ], [ -123.770132882, 48.943529030000079 ], [ -123.76996538899995, 48.943525544000103 ], [ -123.769950910999952, 48.943828999000125 ], [ -123.769521059999974, 48.943820052000042 ], [ -123.76950621099995, 48.944131209000062 ], [ -123.768036529999932, 48.944100604000063 ], [ -123.768023064999909, 48.944382580000074 ], [ -123.768042874999963, 48.944382993000097 ], [ -123.768021428999987, 48.944832110000036 ], [ -123.768102199999959, 48.944833792000104 ], [ -123.768079576999966, 48.945307584000062 ], [ -123.768118428000022, 48.945308393000111 ], [ -123.768070422, 48.94631372200012 ], [ -123.768332980999958, 48.9463191910001 ], [ -123.76831558799995, 48.946683461000113 ], [ -123.768729488999895, 48.946692081000094 ], [ -123.768720787999939, 48.946874362000095 ], [ -123.7688622699999, 48.94687730800014 ], [ -123.768876643999974, 48.94657617700009 ], [ -123.773797781999932, 48.946678535000046 ], [ -123.774536698999896, 48.947313477000094 ], [ -123.773164146999974, 48.949018697000028 ], [ -123.773163021999949, 48.949020071000071 ], [ -123.77315909, 48.949021490000092 ], [ -123.772840197999926, 48.94911868900008 ], [ -123.772773734999987, 48.949131445 ], [ -123.77222200099996, 48.949237306000029 ], [ -123.771910998999971, 48.949438110000067 ], [ -123.771601017999942, 48.949788390000045 ], [ -123.770952601999952, 48.950542400000081 ], [ -123.770753093999929, 48.950635606 ], [ -123.770563116999938, 48.950672199000103 ], [ -123.768291829999939, 48.95067425400007 ], [ -123.766913881, 48.950675493000119 ], [ -123.766820796999966, 48.950544443000091 ], [ -123.766112505, 48.949547095000092 ], [ -123.76571349799994, 48.949148127000093 ], [ -123.764719508999988, 48.948154098000046 ], [ -123.764267486999984, 48.947679807000071 ], [ -123.763978390999981, 48.947449494000097 ], [ -123.76346466199999, 48.947146357000044 ], [ -123.763454419, 48.947140302 ], [ -123.762918298999978, 48.946885001000091 ], [ -123.762670694999912, 48.946985216000066 ], [ -123.759298562999945, 48.947163219000082 ], [ -123.758855380999961, 48.947186603000098 ], [ -123.758776433999969, 48.950657317000029 ], [ -123.758765409999953, 48.951141398000104 ], [ -123.758741108999914, 48.952501199000046 ], [ -123.758748507999954, 48.953569788000031 ], [ -123.758768251999953, 48.953978295000127 ], [ -123.758788905999936, 48.954405690000065 ], [ -123.758712145999965, 48.954533376000079 ], [ -123.758568010999966, 48.954773199000115 ], [ -123.758080106999941, 48.955330502000024 ], [ -123.75754600099999, 48.955174298000038 ], [ -123.757309180999954, 48.95513329500006 ], [ -123.7570356199999, 48.955121311000042 ], [ -123.756638810999945, 48.955146312000139 ], [ -123.756171675999965, 48.955236034000031 ], [ -123.756156811999944, 48.955238910000062 ], [ -123.755844109999913, 48.955358510000046 ], [ -123.755598994999957, 48.955492088000028 ], [ -123.755083292999956, 48.955889411000101 ], [ -123.754056912999943, 48.955302086000081 ] ], [ [ -123.754345690999955, 48.951863429000085 ], [ -123.75434754199992, 48.951824919000032 ], [ -123.754042342999966, 48.951818523000043 ], [ -123.754215333999952, 48.94821862100008 ], [ -123.75606717299999, 48.948257417000072 ], [ -123.756087785999981, 48.947828062000085 ], [ -123.754172087999933, 48.947787928000032 ], [ -123.754158422999978, 48.948072275000094 ], [ -123.75162050599999, 48.948019052000106 ], [ -123.751590455000013, 48.948643737000033 ], [ -123.751101630999955, 48.948633479000115 ], [ -123.751091205999941, 48.94885014400009 ], [ -123.752019642, 48.948869626000061 ], [ -123.751983555, 48.949619892000065 ], [ -123.752689963999956, 48.949634710000069 ], [ -123.752618043999959, 48.951130351000124 ], [ -123.753348070999948, 48.951125585000121 ], [ -123.753360262999934, 48.951935127000048 ], [ -123.753456389999911, 48.951934499000082 ], [ -123.754342555, 48.951928708000068 ], [ -123.754345690999955, 48.951863429000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "0.812682559125601", "sL_AssetLoss": "42452", "sL_BldgLoss": "34500", "sL_StrLoss": "19140", "sL_NStrLoss": "15360", "sL_ContLoss": "7952", "geom_point": "0101000020E61000006F66706BBDF05EC09246DCCE04784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.758744419999942, 48.938481183000064 ], [ -123.758828787, 48.936721368000121 ], [ -123.761211222999947, 48.936803481000062 ], [ -123.762346905999962, 48.936842582000025 ], [ -123.762509538999936, 48.936820608000069 ], [ -123.764290459999955, 48.93657991000012 ], [ -123.764201935999893, 48.938430950000082 ], [ -123.764194086999936, 48.938595057000086 ], [ -123.758744419999942, 48.938481183000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195048500", "BldgCostT": "133205000", "sL_LossRatio": "0.807486085875654", "sL_AssetLoss": "1167339", "sL_BldgLoss": "942610", "sL_StrLoss": "475732", "sL_NStrLoss": "466878", "sL_ContLoss": "224729", "geom_point": "0101000020E610000083A19B1ED0F05EC07FBBB22C147A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.758159092999932, 48.958007685000034 ], [ -123.758149196999966, 48.956735490000014 ], [ -123.7569415, 48.956740913000019 ], [ -123.756170199999971, 48.956834608000037 ], [ -123.755894717999979, 48.956804504000104 ], [ -123.755665396999959, 48.956693414000043 ], [ -123.755494790999961, 48.95645778900009 ], [ -123.755083292999956, 48.955889411000101 ], [ -123.755598994999957, 48.955492088000028 ], [ -123.755844109999913, 48.955358510000046 ], [ -123.756156811999944, 48.955238910000062 ], [ -123.756171675999965, 48.955236034000031 ], [ -123.756638810999945, 48.955146312000139 ], [ -123.7570356199999, 48.955121311000042 ], [ -123.757309180999954, 48.95513329500006 ], [ -123.75754600099999, 48.955174298000038 ], [ -123.758080106999941, 48.955330502000024 ], [ -123.758568010999966, 48.954773199000115 ], [ -123.758712145999965, 48.954533376000079 ], [ -123.758788905999936, 48.954405690000065 ], [ -123.758768251999953, 48.953978295000127 ], [ -123.758748507999954, 48.953569788000031 ], [ -123.758741108999914, 48.952501199000046 ], [ -123.758765409999953, 48.951141398000104 ], [ -123.758776433999969, 48.950657317000029 ], [ -123.758855380999961, 48.947186603000098 ], [ -123.759298562999945, 48.947163219000082 ], [ -123.762670694999912, 48.946985216000066 ], [ -123.762918298999978, 48.946885001000091 ], [ -123.763454419, 48.947140302 ], [ -123.76346466199999, 48.947146357000044 ], [ -123.763978390999981, 48.947449494000097 ], [ -123.764267486999984, 48.947679807000071 ], [ -123.764719508999988, 48.948154098000046 ], [ -123.76571349799994, 48.949148127000093 ], [ -123.766112505, 48.949547095000092 ], [ -123.766820796999966, 48.950544443000091 ], [ -123.766913881, 48.950675493000119 ], [ -123.767777980999981, 48.952089787000041 ], [ -123.767857679999949, 48.952514901000065 ], [ -123.76804432699997, 48.953510585000025 ], [ -123.768225881999939, 48.954479201000012 ], [ -123.768271694999967, 48.954663093000114 ], [ -123.768331173999982, 48.954855383000087 ], [ -123.768381623, 48.955018504000115 ], [ -123.768403137999954, 48.955076884000064 ], [ -123.768490051999933, 48.955312701000054 ], [ -123.76876451699999, 48.956057095000062 ], [ -123.768804941000013, 48.956185255000122 ], [ -123.768939921999944, 48.956613006000048 ], [ -123.768999686, 48.956988996000092 ], [ -123.769041238999989, 48.957515199000071 ], [ -123.769076195999943, 48.95795809600007 ], [ -123.767925097000017, 48.957961252000132 ], [ -123.767679230999946, 48.957961907 ], [ -123.763795533999925, 48.957972345000016 ], [ -123.76368708499993, 48.960077288000022 ], [ -123.763661781999957, 48.960568319000096 ], [ -123.763660963999953, 48.960584757000042 ], [ -123.762663708, 48.960239638000111 ], [ -123.761954853999953, 48.960026634000023 ], [ -123.76180363499999, 48.959970139000085 ], [ -123.760958956999957, 48.959654506000042 ], [ -123.760690723999957, 48.959537280000077 ], [ -123.760497916999967, 48.959452997000049 ], [ -123.75890104699999, 48.95872688500009 ], [ -123.757794018999931, 48.958223495000055 ], [ -123.757722597999958, 48.958147304000057 ], [ -123.757719810999944, 48.958005800000109 ], [ -123.758159092999932, 48.958007685000034 ] ], [ [ -123.763607551999968, 48.95245987600002 ], [ -123.763639175000023, 48.951799032000089 ], [ -123.763017579999925, 48.951786058000074 ], [ -123.763030551999933, 48.951515029000113 ], [ -123.762860160999949, 48.951511472000064 ], [ -123.762815552999939, 48.952443344000081 ], [ -123.763607551999968, 48.95245987600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196613584", "BldgCostT": "130878334", "sL_LossRatio": "0.761863086983255", "sL_AssetLoss": "1114065", "sL_BldgLoss": "848765", "sL_StrLoss": "397295", "sL_NStrLoss": "451470", "sL_ContLoss": "265300", "geom_point": "0101000020E610000061A70EA8ADF15EC052387128B27A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.781054399, 48.966449487 ], [ -123.78030611, 48.966344897000063 ], [ -123.780023334999939, 48.966339852000054 ], [ -123.778247105999981, 48.966308004000076 ], [ -123.77807422, 48.966304900000118 ], [ -123.777562303999929, 48.966279 ], [ -123.77700629499999, 48.966205296000105 ], [ -123.776980687999952, 48.966199983000067 ], [ -123.776519900999986, 48.966104311000095 ], [ -123.776182385999931, 48.965971095000064 ], [ -123.776053834999956, 48.96593387100009 ], [ -123.775641383999968, 48.965583397000117 ], [ -123.775510881999963, 48.965400503000062 ], [ -123.775541182999916, 48.964877694000066 ], [ -123.775531320999974, 48.964777394000066 ], [ -123.775521001999962, 48.96467280400006 ], [ -123.775452893999926, 48.964525390000112 ], [ -123.775344995999959, 48.964356486000064 ], [ -123.77518550399999, 48.964210900000076 ], [ -123.775009193999963, 48.964100891000015 ], [ -123.774946080999982, 48.96407405300009 ], [ -123.774853617999938, 48.96403473 ], [ -123.77484728599994, 48.963926706000088 ], [ -123.774732710999913, 48.963549299000078 ], [ -123.774836611999916, 48.963234503000088 ], [ -123.774124292999929, 48.962240408000049 ], [ -123.773529595999918, 48.961749099000045 ], [ -123.773379495999961, 48.961768995000078 ], [ -123.773138204999952, 48.962058106 ], [ -123.77264989299999, 48.962304489000068 ], [ -123.772504308999913, 48.962539492000083 ], [ -123.772657594999913, 48.962717609000023 ], [ -123.773056100999952, 48.96286849600007 ], [ -123.773429383999897, 48.963171903000074 ], [ -123.773490609999925, 48.963674599000093 ], [ -123.774339390999927, 48.963804189000037 ], [ -123.774438995999958, 48.963916234000074 ], [ -123.774327501999963, 48.963889490000035 ], [ -123.774055082999894, 48.963877501000105 ], [ -123.772531016999935, 48.963990900000063 ], [ -123.772085004999951, 48.963959115000065 ], [ -123.772004359999954, 48.963947658000087 ], [ -123.771639109999967, 48.963895792000073 ], [ -123.77109528699999, 48.963767396000051 ], [ -123.770672109999907, 48.963628016000015 ], [ -123.770331404999951, 48.96341910000006 ], [ -123.77012797899998, 48.963221206000085 ], [ -123.770018810999929, 48.962880206000136 ], [ -123.769726318999943, 48.961917403000037 ], [ -123.769718998999977, 48.96187431500001 ], [ -123.769667811999952, 48.961572001000057 ], [ -123.769623870999908, 48.961316584000052 ], [ -123.769519283999969, 48.960708600000075 ], [ -123.769386450999988, 48.959934514000039 ], [ -123.769289271, 48.959367953000083 ], [ -123.769238410999932, 48.959071796000089 ], [ -123.769207580999989, 48.958892123000084 ], [ -123.769126514999982, 48.958419498000076 ], [ -123.769076195999943, 48.95795809600007 ], [ -123.769041238999989, 48.957515199000071 ], [ -123.768999686, 48.956988996000092 ], [ -123.768939921999944, 48.956613006000048 ], [ -123.768804941000013, 48.956185255000122 ], [ -123.76876451699999, 48.956057095000062 ], [ -123.768490051999933, 48.955312701000054 ], [ -123.768403137999954, 48.955076884000064 ], [ -123.768381623, 48.955018504000115 ], [ -123.768331173999982, 48.954855383000087 ], [ -123.768271694999967, 48.954663093000114 ], [ -123.768225881999939, 48.954479201000012 ], [ -123.76804432699997, 48.953510585000025 ], [ -123.767857679999949, 48.952514901000065 ], [ -123.767777980999981, 48.952089787000041 ], [ -123.766913881, 48.950675493000119 ], [ -123.768291829999939, 48.95067425400007 ], [ -123.770563116999938, 48.950672199000103 ], [ -123.770753093999929, 48.950635606 ], [ -123.770952601999952, 48.950542400000081 ], [ -123.771601017999942, 48.949788390000045 ], [ -123.771910998999971, 48.949438110000067 ], [ -123.77222200099996, 48.949237306000029 ], [ -123.772773734999987, 48.949131445 ], [ -123.772840197999926, 48.94911868900008 ], [ -123.77315909, 48.949021490000092 ], [ -123.773163021999949, 48.949020071000071 ], [ -123.773164146999974, 48.949018697000028 ], [ -123.774536698999896, 48.947313477000094 ], [ -123.775423851999946, 48.948075754000023 ], [ -123.775432280999937, 48.948082993000043 ], [ -123.776198383999912, 48.948741206000065 ], [ -123.776258991999967, 48.948793315000053 ], [ -123.7768795, 48.949456609000094 ], [ -123.777233407000026, 48.949959403000051 ], [ -123.777568698999985, 48.950511405000093 ], [ -123.777624362999973, 48.950647625000116 ], [ -123.77790839599993, 48.951342692000033 ], [ -123.777954795999932, 48.951528461000102 ], [ -123.77806182599997, 48.951956883000058 ], [ -123.77833239099999, 48.953039713000109 ], [ -123.778440135999986, 48.953494835000093 ], [ -123.778711156999961, 48.954639565000079 ], [ -123.778891921, 48.954668312000081 ], [ -123.779237677999959, 48.954723326000078 ], [ -123.78095648, 48.954679273000075 ], [ -123.781006303999959, 48.955473397000063 ], [ -123.779359415000016, 48.955528729000086 ], [ -123.779075927999941, 48.955460943000041 ], [ -123.778896261999989, 48.955418029000057 ], [ -123.77932049599994, 48.957195322000103 ], [ -123.779467197999949, 48.957809890000121 ], [ -123.779836701999969, 48.959367087000075 ], [ -123.779961865999965, 48.959750688000092 ], [ -123.779979093999927, 48.959803416000106 ], [ -123.780137267, 48.959815484000025 ], [ -123.780424778999986, 48.959837377000142 ], [ -123.782796990999941, 48.95975744400009 ], [ -123.782833313999973, 48.95998630600009 ], [ -123.782950814999964, 48.96057403200011 ], [ -123.782965092999959, 48.961420731000018 ], [ -123.783352153999942, 48.963940629000092 ], [ -123.783215496999944, 48.963839478000061 ], [ -123.782561699999945, 48.963297096000097 ], [ -123.782049901999954, 48.962810893000068 ], [ -123.781418119999955, 48.962095199000011 ], [ -123.780774101999924, 48.961173797000114 ], [ -123.780596995999986, 48.960834998000024 ], [ -123.780451907999975, 48.960867161000095 ], [ -123.780606098999939, 48.961177495000101 ], [ -123.781250280999956, 48.962123187000046 ], [ -123.781868083999967, 48.962818793000046 ], [ -123.782446519999894, 48.963368589000019 ], [ -123.782649294999928, 48.963533987000041 ], [ -123.783149295999948, 48.96394171200005 ], [ -123.78366694199994, 48.964313296000121 ], [ -123.783769492999951, 48.964386918000024 ], [ -123.785048011999976, 48.965155498000101 ], [ -123.785021738999944, 48.965013741000099 ], [ -123.784587540999965, 48.962672095000116 ], [ -123.78519233599998, 48.962684594000052 ], [ -123.785150922999932, 48.963558212000073 ], [ -123.785886095999956, 48.963573400000065 ], [ -123.785893315999914, 48.963421046000079 ], [ -123.785912454999902, 48.963421441 ], [ -123.785910899999976, 48.963322519000023 ], [ -123.786320718999917, 48.963319727000062 ], [ -123.786316475999953, 48.963049882000107 ], [ -123.785906659999981, 48.963052675 ], [ -123.785893938999976, 48.962243140000034 ], [ -123.786157765999988, 48.96224134199999 ], [ -123.78695951099999, 48.965968728000028 ], [ -123.786630536999937, 48.965978488000133 ], [ -123.786427117999935, 48.96598452500006 ], [ -123.787564001999925, 48.966667912000098 ], [ -123.788796824999963, 48.967526322000026 ], [ -123.788793747999989, 48.967709955000089 ], [ -123.788765962999932, 48.969359110000035 ], [ -123.788764081999929, 48.96947251600011 ], [ -123.788735929000012, 48.969457750000061 ], [ -123.788515397000012, 48.96934229900004 ], [ -123.788449335999957, 48.969304689000126 ], [ -123.788080931999943, 48.969095067000083 ], [ -123.78797429499997, 48.969034405000059 ], [ -123.78767708299992, 48.968865285000064 ], [ -123.787472242999939, 48.968748737000048 ], [ -123.786760074999947, 48.968369434000095 ], [ -123.786477814999955, 48.968219147000106 ], [ -123.785561934000029, 48.967731387000065 ], [ -123.785096381999949, 48.967483488000056 ], [ -123.784672110999963, 48.967308081000098 ], [ -123.784097773999974, 48.9671648180001 ], [ -123.78389343799995, 48.967113839000028 ], [ -123.783532034999922, 48.967023694000055 ], [ -123.7828248799999, 48.966847269000013 ], [ -123.782136227999928, 48.966675470000112 ], [ -123.782038180999919, 48.966650995000045 ], [ -123.781779869000033, 48.966598090000062 ], [ -123.781054399, 48.966449487 ] ], [ [ -123.776274630999922, 48.960958906000059 ], [ -123.776345103999944, 48.959478116000085 ], [ -123.776025968999988, 48.959471495000045 ], [ -123.77600685799996, 48.959873003000013 ], [ -123.775348973999925, 48.959859350000031 ], [ -123.775346832999944, 48.959904319000074 ], [ -123.77495209199999, 48.959896125000043 ], [ -123.77492045299999, 48.960560528000023 ], [ -123.773932795999954, 48.960540020000025 ], [ -123.773900123999937, 48.961225786000078 ], [ -123.774530146999936, 48.96123887000013 ], [ -123.774498342999962, 48.961906595000109 ], [ -123.776052730999979, 48.961938857000099 ], [ -123.776037550999945, 48.960960502000063 ], [ -123.776274630999922, 48.960958906000059 ] ], [ [ -123.775230302999915, 48.956253439000129 ], [ -123.775278901999954, 48.955232660000043 ], [ -123.776101561999923, 48.95524973400007 ], [ -123.776113044999974, 48.955008428000035 ], [ -123.773073562999954, 48.954945313000067 ], [ -123.773173831999912, 48.952841123 ], [ -123.772433966999984, 48.952825747000084 ], [ -123.77239506299999, 48.953641911000034 ], [ -123.771921150999916, 48.95363205899999 ], [ -123.771867051999919, 48.954766716000108 ], [ -123.772064249999943, 48.954770816000057 ], [ -123.772063652, 48.954783344000099 ], [ -123.772936818999966, 48.954801493000041 ], [ -123.772919894999973, 48.955156610000088 ], [ -123.77341902299996, 48.955166981000062 ], [ -123.773369097999989, 48.956214787000121 ], [ -123.775230302999915, 48.956253439000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9890668", "BldgCostT": "6611668", "sL_LossRatio": "0.724265556326625", "sL_AssetLoss": "73491", "sL_BldgLoss": "53227", "sL_StrLoss": "25637", "sL_NStrLoss": "27590", "sL_ContLoss": "20264", "geom_point": "0101000020E610000032FA7E2860F15EC019841C0887784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.770421359999929, 48.939931485000081 ], [ -123.772391447999979, 48.939972467000096 ], [ -123.772219886999935, 48.943572445000022 ], [ -123.770971743999965, 48.943546485000105 ], [ -123.770421359999929, 48.939931485000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142719285", "BldgCostT": "92640406", "sL_LossRatio": "0.800838263536177", "sL_AssetLoss": "639273.9", "sL_BldgLoss": "511955", "sL_StrLoss": "304661", "sL_NStrLoss": "207294", "sL_ContLoss": "127318.9", "geom_point": "0101000020E61000007FA9658C0BF25EC0D3CD17DE597A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.783149295999948, 48.96394171200005 ], [ -123.782649294999928, 48.963533987000041 ], [ -123.782446519999894, 48.963368589000019 ], [ -123.781868083999967, 48.962818793000046 ], [ -123.781250280999956, 48.962123187000046 ], [ -123.780606098999939, 48.961177495000101 ], [ -123.780451907999975, 48.960867161000095 ], [ -123.780596995999986, 48.960834998000024 ], [ -123.780774101999924, 48.961173797000114 ], [ -123.781418119999955, 48.962095199000011 ], [ -123.782049901999954, 48.962810893000068 ], [ -123.782561699999945, 48.963297096000097 ], [ -123.783215496999944, 48.963839478000061 ], [ -123.783352153999942, 48.963940629000092 ], [ -123.782965092999959, 48.961420731000018 ], [ -123.782950814999964, 48.96057403200011 ], [ -123.782833313999973, 48.95998630600009 ], [ -123.782796990999941, 48.95975744400009 ], [ -123.780424778999986, 48.959837377000142 ], [ -123.780137267, 48.959815484000025 ], [ -123.779979093999927, 48.959803416000106 ], [ -123.779961865999965, 48.959750688000092 ], [ -123.779836701999969, 48.959367087000075 ], [ -123.779467197999949, 48.957809890000121 ], [ -123.77932049599994, 48.957195322000103 ], [ -123.778896261999989, 48.955418029000057 ], [ -123.779075927999941, 48.955460943000041 ], [ -123.779359415000016, 48.955528729000086 ], [ -123.781006303999959, 48.955473397000063 ], [ -123.78095648, 48.954679273000075 ], [ -123.779237677999959, 48.954723326000078 ], [ -123.778891921, 48.954668312000081 ], [ -123.778711156999961, 48.954639565000079 ], [ -123.778440135999986, 48.953494835000093 ], [ -123.77833239099999, 48.953039713000109 ], [ -123.77806182599997, 48.951956883000058 ], [ -123.777954795999932, 48.951528461000102 ], [ -123.77790839599993, 48.951342692000033 ], [ -123.777624362999973, 48.950647625000116 ], [ -123.777568698999985, 48.950511405000093 ], [ -123.777233407000026, 48.949959403000051 ], [ -123.7768795, 48.949456609000094 ], [ -123.776258991999967, 48.948793315000053 ], [ -123.776198383999912, 48.948741206000065 ], [ -123.775432280999937, 48.948082993000043 ], [ -123.775423851999946, 48.948075754000023 ], [ -123.774536698999896, 48.947313477000094 ], [ -123.773797781999932, 48.946678535000046 ], [ -123.773975314999973, 48.94668222300011 ], [ -123.774327279999952, 48.946689534000079 ], [ -123.774323900999903, 48.946760495000078 ], [ -123.775937126999949, 48.946793992000046 ], [ -123.775895488999964, 48.947669022000106 ], [ -123.777795610999988, 48.947708446000064 ], [ -123.777741661999926, 48.948843107000094 ], [ -123.781266953999975, 48.948916159000063 ], [ -123.781256163999942, 48.949143459000076 ], [ -123.78139126399995, 48.949146255000045 ], [ -123.781383475999917, 48.949310313000048 ], [ -123.781367060999926, 48.949656104000042 ], [ -123.781712182999939, 48.949663249000039 ], [ -123.781600454999975, 48.95201710200017 ], [ -123.78204532299999, 48.952014087000073 ], [ -123.782060210999973, 48.952966514000082 ], [ -123.782394855999939, 48.952973439000047 ], [ -123.782370952999941, 48.953477182000043 ], [ -123.782880668999937, 48.953487729000095 ], [ -123.78283080599999, 48.95453871200008 ], [ -123.782991128, 48.954542029000024 ], [ -123.782972580999967, 48.954932987000106 ], [ -123.783191944999956, 48.954937524000101 ], [ -123.783079211999976, 48.957313861000074 ], [ -123.788443898999944, 48.957424694000061 ], [ -123.788273509999954, 48.961024598000037 ], [ -123.784633508999946, 48.960949426000127 ], [ -123.784611865999977, 48.961405896000088 ], [ -123.784344882999946, 48.961363319000071 ], [ -123.784559101999932, 48.962518710000062 ], [ -123.784551864999983, 48.962671358000101 ], [ -123.784587540999965, 48.962672095000116 ], [ -123.785021738999944, 48.965013741000099 ], [ -123.785048011999976, 48.965155498000101 ], [ -123.783769492999951, 48.964386918000024 ], [ -123.78366694199994, 48.964313296000121 ], [ -123.783149295999948, 48.96394171200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216384702", "BldgCostT": "147252073", "sL_LossRatio": "0.871901603920275", "sL_AssetLoss": "790332.3", "sL_BldgLoss": "689092", "sL_StrLoss": "425195", "sL_NStrLoss": "263897", "sL_ContLoss": "101240.3", "geom_point": "0101000020E6100000F5651ED0C4F25EC024AC8DB1937B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.79365224699994, 48.969331765000085 ], [ -123.793879486999941, 48.968743792000083 ], [ -123.79380817000002, 48.968732082000052 ], [ -123.793245794, 48.968639800000041 ], [ -123.793012701999984, 48.968566754000044 ], [ -123.792654447999922, 48.968454453000035 ], [ -123.792049021999944, 48.968264700000063 ], [ -123.791994204000019, 48.968254090000094 ], [ -123.791606796999957, 48.968179104000022 ], [ -123.791299886, 48.968176390000075 ], [ -123.791063794999914, 48.968203907000067 ], [ -123.790772913999945, 48.968296991000109 ], [ -123.7904272899999, 48.968506109000053 ], [ -123.790307914999943, 48.968578395000044 ], [ -123.788796824999963, 48.967526322000026 ], [ -123.787564001999925, 48.966667912000098 ], [ -123.786427117999935, 48.96598452500006 ], [ -123.786630536999937, 48.965978488000133 ], [ -123.78695951099999, 48.965968728000028 ], [ -123.786157765999988, 48.96224134199999 ], [ -123.786713558999935, 48.962237554000062 ], [ -123.78670507, 48.961697863000055 ], [ -123.787934484999965, 48.961689472000081 ], [ -123.787942987999912, 48.962229162000085 ], [ -123.789172414999967, 48.962220757000104 ], [ -123.789173421999962, 48.962284563000068 ], [ -123.789327620999984, 48.962287744000065 ], [ -123.789362983999965, 48.961540326000055 ], [ -123.789955629999923, 48.961552547000032 ], [ -123.789964371999957, 48.961367740000085 ], [ -123.791239435999927, 48.9613940220001 ], [ -123.791240619999982, 48.961368971000034 ], [ -123.796693034999976, 48.961481188000036 ], [ -123.796664296999921, 48.962090598000088 ], [ -123.796780568999964, 48.962092988000101 ], [ -123.796733767999953, 48.96308544100004 ], [ -123.796770228999947, 48.963086191000087 ], [ -123.796710068999971, 48.964361935000049 ], [ -123.798098257999982, 48.964390460000111 ], [ -123.798088933999964, 48.964588276000079 ], [ -123.798226964999969, 48.964587321000096 ], [ -123.798231271999924, 48.964857166000044 ], [ -123.79864110199999, 48.964854328000051 ], [ -123.798645411999971, 48.965124171000141 ], [ -123.799055243999973, 48.965121334000088 ], [ -123.799058421999945, 48.965320244000125 ], [ -123.799505660999955, 48.96532942500005 ], [ -123.799505167999939, 48.965339922000062 ], [ -123.800086266999969, 48.965351849000122 ], [ -123.800068259999989, 48.966192862000057 ], [ -123.800022781999971, 48.968316066000035 ], [ -123.800114286999971, 48.968401736000047 ], [ -123.80010395799999, 48.968732540000126 ], [ -123.80009297399998, 48.969085938000028 ], [ -123.800065747999966, 48.969577228000134 ], [ -123.79875207399999, 48.969228399000038 ], [ -123.798661293999942, 48.969204299000069 ], [ -123.798392500999938, 48.969174407000018 ], [ -123.797679513999938, 48.969177160000108 ], [ -123.797284201999958, 48.969178687000088 ], [ -123.79647778699993, 48.96917592700003 ], [ -123.796386491999925, 48.969175599000096 ], [ -123.795967600999973, 48.96908770900005 ], [ -123.795871307999946, 48.969334285000038 ], [ -123.795834571999961, 48.970315493000044 ], [ -123.795373198000021, 48.970346538000044 ], [ -123.795212269999936, 48.970374595000067 ], [ -123.795012668999959, 48.970409386000064 ], [ -123.794783772999935, 48.970401989000074 ], [ -123.794454163999944, 48.970359158000036 ], [ -123.794323178999974, 48.970306417000074 ], [ -123.794069811999975, 48.97020441800003 ], [ -123.793794868999896, 48.970015887000038 ], [ -123.79358752199991, 48.969811637000106 ], [ -123.793565480999973, 48.969556254000068 ], [ -123.79365224699994, 48.969331765000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228554818", "BldgCostT": "142954072", "sL_LossRatio": "0.759034490797188", "sL_AssetLoss": "1304058", "sL_BldgLoss": "989825", "sL_StrLoss": "542801", "sL_NStrLoss": "447024", "sL_ContLoss": "314233", "geom_point": "0101000020E6100000BD46F40050F35EC021307B7EBD7C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.80542578399999, 48.982378334000039 ], [ -123.805383391999897, 48.981438375000074 ], [ -123.80527220499999, 48.981027957000023 ], [ -123.805230497999958, 48.980873985000052 ], [ -123.805228760999967, 48.980867579000048 ], [ -123.805226333999926, 48.980858638000036 ], [ -123.804812774999959, 48.980248427000149 ], [ -123.80426620599998, 48.979667534000107 ], [ -123.803197493999946, 48.978531776000104 ], [ -123.802770545, 48.978077963000054 ], [ -123.80234147499999, 48.977622398000101 ], [ -123.802206594999987, 48.977675480000066 ], [ -123.801980849999978, 48.977761928000056 ], [ -123.801820207999981, 48.977823410000028 ], [ -123.80187181399999, 48.977756640000045 ], [ -123.801913388999964, 48.977702873000077 ], [ -123.80192922099998, 48.977682409000089 ], [ -123.801970313999988, 48.977535505000091 ], [ -123.801887607, 48.977348207000112 ], [ -123.801121794, 48.97656768800006 ], [ -123.80002650599998, 48.975626401000085 ], [ -123.799994590999944, 48.975603237000065 ], [ -123.798031889999947, 48.974177172000097 ], [ -123.793509567999962, 48.970890884000028 ], [ -123.790790085999959, 48.96891440000018 ], [ -123.790307914999943, 48.968578395000044 ], [ -123.7904272899999, 48.968506109000053 ], [ -123.790772913999945, 48.968296991000109 ], [ -123.791063794999914, 48.968203907000067 ], [ -123.791299886, 48.968176390000075 ], [ -123.791606796999957, 48.968179104000022 ], [ -123.791994204000019, 48.968254090000094 ], [ -123.792049021999944, 48.968264700000063 ], [ -123.792654447999922, 48.968454453000035 ], [ -123.793012701999984, 48.968566754000044 ], [ -123.793245794, 48.968639800000041 ], [ -123.79380817000002, 48.968732082000052 ], [ -123.793879486999941, 48.968743792000083 ], [ -123.79365224699994, 48.969331765000085 ], [ -123.793565480999973, 48.969556254000068 ], [ -123.79358752199991, 48.969811637000106 ], [ -123.793794868999896, 48.970015887000038 ], [ -123.794069811999975, 48.97020441800003 ], [ -123.794323178999974, 48.970306417000074 ], [ -123.794454163999944, 48.970359158000036 ], [ -123.794783772999935, 48.970401989000074 ], [ -123.795012668999959, 48.970409386000064 ], [ -123.795212269999936, 48.970374595000067 ], [ -123.795373198000021, 48.970346538000044 ], [ -123.795834571999961, 48.970315493000044 ], [ -123.795871307999946, 48.969334285000038 ], [ -123.795967600999973, 48.96908770900005 ], [ -123.796386491999925, 48.969175599000096 ], [ -123.79647778699993, 48.96917592700003 ], [ -123.797284201999958, 48.969178687000088 ], [ -123.797679513999938, 48.969177160000108 ], [ -123.798392500999938, 48.969174407000018 ], [ -123.798661293999942, 48.969204299000069 ], [ -123.79875207399999, 48.969228399000038 ], [ -123.800065747999966, 48.969577228000134 ], [ -123.800788026999925, 48.96982986600009 ], [ -123.80108167599991, 48.969970101000065 ], [ -123.801326988999904, 48.970121973000069 ], [ -123.801366386999987, 48.970162388000091 ], [ -123.80154414499999, 48.970344597000079 ], [ -123.802242327, 48.971060295 ], [ -123.802564, 48.971390031000062 ], [ -123.80281376899994, 48.971646030000059 ], [ -123.803054149999966, 48.971832745 ], [ -123.80373935199998, 48.97236494200007 ], [ -123.804458157999932, 48.971949422000073 ], [ -123.804878511999931, 48.971706394000087 ], [ -123.806508414999939, 48.972974791000048 ], [ -123.806691713999925, 48.973285711000116 ], [ -123.806710831999979, 48.97338111200002 ], [ -123.80674701400001, 48.973561604000089 ], [ -123.80613257499999, 48.973905861000055 ], [ -123.805772912999885, 48.974107405000041 ], [ -123.805820848999957, 48.974573934000084 ], [ -123.805880589999973, 48.975155387000065 ], [ -123.80578648599996, 48.975473298000061 ], [ -123.805701843999941, 48.975967909000097 ], [ -123.80637144499994, 48.975984309000111 ], [ -123.806617605999932, 48.975990346000039 ], [ -123.806644890999976, 48.975991032000081 ], [ -123.80680749899993, 48.975995003000023 ], [ -123.806829063999928, 48.975997905000092 ], [ -123.807227939999976, 48.976051666000089 ], [ -123.807241495999961, 48.976053506000014 ], [ -123.807630810999925, 48.976163212000117 ], [ -123.807905401999946, 48.97627238899999 ], [ -123.808265600999974, 48.976479809000104 ], [ -123.80855458799999, 48.976719008 ], [ -123.80923414599998, 48.977373491000044 ], [ -123.809601927999964, 48.977727671000032 ], [ -123.809768425, 48.97794362700008 ], [ -123.809900440999925, 48.978114836000081 ], [ -123.809957820999927, 48.978288056000039 ], [ -123.809952524, 48.97848882800011 ], [ -123.809876555999892, 48.978739706000113 ], [ -123.809855391999946, 48.978809564000066 ], [ -123.809113877999948, 48.97881476800012 ], [ -123.809109508999938, 48.978544925000072 ], [ -123.808289627999969, 48.978550672000075 ], [ -123.808293990999971, 48.978820515000109 ], [ -123.80706415899995, 48.97882912500004 ], [ -123.807042375999927, 48.97747991100006 ], [ -123.806228469999908, 48.977485603000069 ], [ -123.80619042899994, 48.978295489000089 ], [ -123.806235567999977, 48.978295172000038 ], [ -123.806248624999967, 48.979104701000068 ], [ -123.806152387999944, 48.979105374000085 ], [ -123.80613096799999, 48.979561405000027 ], [ -123.805435770999964, 48.979547179000065 ], [ -123.805437429999955, 48.979650113000069 ], [ -123.805279911999946, 48.97965121400005 ], [ -123.805267225999955, 48.979921176000055 ], [ -123.805441777999988, 48.979919957000028 ], [ -123.805446124999932, 48.980189799000108 ], [ -123.805856080999931, 48.980186936000052 ], [ -123.805885474999954, 48.982009928000132 ], [ -123.806179038999957, 48.98202356200008 ], [ -123.806399759, 48.982072249000062 ], [ -123.807116446999913, 48.98206723700013 ], [ -123.807119090999905, 48.982230915000038 ], [ -123.80717733899999, 48.982243762000124 ], [ -123.80834954, 48.982255376000118 ], [ -123.80834635799998, 48.98205862600004 ], [ -123.808634976999912, 48.982056603000061 ], [ -123.808753075999959, 48.982448566000144 ], [ -123.808772730999976, 48.982513914000037 ], [ -123.808947789999976, 48.982811691000073 ], [ -123.809107720999975, 48.983083753000066 ], [ -123.808913335999989, 48.983138977000117 ], [ -123.808678866999912, 48.98320561000007 ], [ -123.808268253999969, 48.983374682000083 ], [ -123.807330754999896, 48.984007712000086 ], [ -123.806851692999942, 48.984325808000087 ], [ -123.806496762, 48.984532919000053 ], [ -123.806411570999927, 48.984463473000098 ], [ -123.806392785999904, 48.984448164000085 ], [ -123.806366444, 48.984426676000055 ], [ -123.806167533999911, 48.984219959 ], [ -123.806063154999919, 48.984111494000025 ], [ -123.80575864799998, 48.983707098000089 ], [ -123.805552732999928, 48.98329571000005 ], [ -123.805489323999964, 48.983063737000094 ], [ -123.805470589999956, 48.982995216000035 ], [ -123.805450228999973, 48.982920688000029 ], [ -123.805436956, 48.982626313000047 ], [ -123.805426190999952, 48.982387360000047 ], [ -123.80542578399999, 48.982378334000039 ] ], [ [ -123.799658286999971, 48.973483235000103 ], [ -123.799695607999951, 48.972690909000086 ], [ -123.799070506999954, 48.972678079000083 ], [ -123.799023795999972, 48.973669453000056 ], [ -123.799191171999979, 48.97362655400007 ], [ -123.799188933, 48.973486487000088 ], [ -123.799658286999971, 48.973483235000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81906751", "BldgCostT": "54540001", "sL_LossRatio": "0.785706772102125", "sL_AssetLoss": "598913", "sL_BldgLoss": "470570", "sL_StrLoss": "256890", "sL_NStrLoss": "213680", "sL_ContLoss": "128343", "geom_point": "0101000020E61000007580CC7329F45EC04F688AE7097E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.815586136999954, 48.986880380000066 ], [ -123.8166825099999, 48.986175796000076 ], [ -123.817773521000021, 48.98547010500009 ], [ -123.816861706999973, 48.984855189000044 ], [ -123.815898001999926, 48.984210496000046 ], [ -123.813746192999943, 48.985620495000092 ], [ -123.812778113999954, 48.984954002000059 ], [ -123.811415702999938, 48.984026550000102 ], [ -123.811250184999949, 48.983913893000064 ], [ -123.810268877999988, 48.984521739000016 ], [ -123.809695547999979, 48.984026313000037 ], [ -123.809439807999922, 48.983716604000094 ], [ -123.809107720999975, 48.983083753000066 ], [ -123.808947789999976, 48.982811691000073 ], [ -123.808772730999976, 48.982513914000037 ], [ -123.808753075999959, 48.982448566000144 ], [ -123.808634976999912, 48.982056603000061 ], [ -123.809986236999976, 48.982047123000022 ], [ -123.809994983999943, 48.982586808000129 ], [ -123.812044852999961, 48.982572397000062 ], [ -123.812049239999936, 48.982842240000089 ], [ -123.81245921499999, 48.98283935400007 ], [ -123.812463600999976, 48.983109195000061 ], [ -123.814513490999957, 48.983094739000101 ], [ -123.814509092999984, 48.982824898000061 ], [ -123.815739019999967, 48.982816208000024 ], [ -123.815743424999965, 48.983086050000054 ], [ -123.816973356999952, 48.983077347000069 ], [ -123.816977768999891, 48.983347189000028 ], [ -123.816987639, 48.983347118000054 ], [ -123.817387747999959, 48.983344284000111 ], [ -123.817396573999986, 48.98388396899999 ], [ -123.817806558999976, 48.98388106200013 ], [ -123.817814579999933, 48.984371214000056 ], [ -123.817852937999959, 48.984393662000116 ], [ -123.817883253999952, 48.984420265000068 ], [ -123.818225378999969, 48.984417839000059 ], [ -123.818230405999969, 48.984724888000073 ], [ -123.81832883899996, 48.984811263000033 ], [ -123.818529624999925, 48.984955427000067 ], [ -123.819054200999943, 48.984951704000125 ], [ -123.819060508999954, 48.985336593000056 ], [ -123.819274019999924, 48.985489888000068 ], [ -123.819473042999988, 48.985488475000103 ], [ -123.819475437999955, 48.985634499000071 ], [ -123.819646223999882, 48.985757118000016 ], [ -123.819887465999955, 48.98575540300012 ], [ -123.819890369999911, 48.985932403000099 ], [ -123.820014138999966, 48.986021262000079 ], [ -123.820019493999922, 48.986024338000078 ], [ -123.820711896999953, 48.986019415000072 ], [ -123.820716327999932, 48.986289255000038 ], [ -123.82112633199992, 48.98628633900011 ], [ -123.821130765999953, 48.986556179000075 ], [ -123.82154077199999, 48.986553261000026 ], [ -123.821543209999973, 48.986701688000068 ], [ -123.82093119699999, 48.987074706000101 ], [ -123.82049784299997, 48.986785208000136 ], [ -123.82020633799999, 48.986590454000115 ], [ -123.820030014999929, 48.98647264900012 ], [ -123.819941018999927, 48.986413199000083 ], [ -123.81969043399999, 48.986573241000059 ], [ -123.818653391999973, 48.987235614000056 ], [ -123.817351690999928, 48.988069386000049 ], [ -123.816753736999956, 48.987666740000101 ], [ -123.815586136999954, 48.986880380000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106742416", "BldgCostT": "71911666", "sL_LossRatio": "0.820083967309247", "sL_AssetLoss": "513295", "sL_BldgLoss": "420945", "sL_StrLoss": "264419", "sL_NStrLoss": "156526", "sL_ContLoss": "92350", "geom_point": "0101000020E610000085FFE85998F35EC07FDEF179877C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.80613257499999, 48.973905861000055 ], [ -123.80674701400001, 48.973561604000089 ], [ -123.806710831999979, 48.97338111200002 ], [ -123.806691713999925, 48.973285711000116 ], [ -123.806508414999939, 48.972974791000048 ], [ -123.804878511999931, 48.971706394000087 ], [ -123.804458157999932, 48.971949422000073 ], [ -123.80373935199998, 48.97236494200007 ], [ -123.803054149999966, 48.971832745 ], [ -123.80281376899994, 48.971646030000059 ], [ -123.802564, 48.971390031000062 ], [ -123.802242327, 48.971060295 ], [ -123.80154414499999, 48.970344597000079 ], [ -123.801366386999987, 48.970162388000091 ], [ -123.801326988999904, 48.970121973000069 ], [ -123.80108167599991, 48.969970101000065 ], [ -123.800788026999925, 48.96982986600009 ], [ -123.800065747999966, 48.969577228000134 ], [ -123.80009297399998, 48.969085938000028 ], [ -123.80010395799999, 48.968732540000126 ], [ -123.800114286999971, 48.968401736000047 ], [ -123.800022781999971, 48.968316066000035 ], [ -123.8026364299999, 48.968560893000095 ], [ -123.80443314399993, 48.968727795000071 ], [ -123.804943903999984, 48.968719232000055 ], [ -123.805141954999939, 48.968723287000032 ], [ -123.805084923999971, 48.969937135000066 ], [ -123.805280932999935, 48.969935767000095 ], [ -123.805285278000014, 48.970205610000086 ], [ -123.805695152999959, 48.970202748000084 ], [ -123.80570385, 48.970742435000091 ], [ -123.806113725999978, 48.970739571000109 ], [ -123.806118076999979, 48.971009414000065 ], [ -123.806527957999961, 48.971006549000073 ], [ -123.806542854999961, 48.971930014000066 ], [ -123.806698000999972, 48.972084854000045 ], [ -123.806955256999942, 48.97208305500002 ], [ -123.806959497999955, 48.972345832000016 ], [ -123.807235061999947, 48.972620844000112 ], [ -123.807373858999981, 48.972619872000081 ], [ -123.80737614899999, 48.972761649000084 ], [ -123.807503595999933, 48.972888839000056 ], [ -123.807788112999958, 48.972886846000108 ], [ -123.807792473999953, 48.973156689000135 ], [ -123.809432059999949, 48.973145196000139 ], [ -123.809442989999923, 48.97382023500009 ], [ -123.809909037999901, 48.973939063000053 ], [ -123.809945828999972, 48.973951211000056 ], [ -123.81026497299996, 48.97394896900002 ], [ -123.810266727999974, 48.974057167000083 ], [ -123.810692837999923, 48.974197862000096 ], [ -123.810788738999946, 48.974307163000077 ], [ -123.810722931, 48.976909207000105 ], [ -123.81074927199991, 48.978533413000051 ], [ -123.810339331999941, 48.978536294000065 ], [ -123.810343706999973, 48.978806136000109 ], [ -123.809855391999946, 48.978809564000066 ], [ -123.809876555999892, 48.978739706000113 ], [ -123.809952524, 48.97848882800011 ], [ -123.809957820999927, 48.978288056000039 ], [ -123.809900440999925, 48.978114836000081 ], [ -123.809768425, 48.97794362700008 ], [ -123.809601927999964, 48.977727671000032 ], [ -123.80923414599998, 48.977373491000044 ], [ -123.80855458799999, 48.976719008 ], [ -123.808265600999974, 48.976479809000104 ], [ -123.807905401999946, 48.97627238899999 ], [ -123.807630810999925, 48.976163212000117 ], [ -123.807241495999961, 48.976053506000014 ], [ -123.807227939999976, 48.976051666000089 ], [ -123.806829063999928, 48.975997905000092 ], [ -123.80680749899993, 48.975995003000023 ], [ -123.806644890999976, 48.975991032000081 ], [ -123.806617605999932, 48.975990346000039 ], [ -123.80637144499994, 48.975984309000111 ], [ -123.805701843999941, 48.975967909000097 ], [ -123.80578648599996, 48.975473298000061 ], [ -123.805880589999973, 48.975155387000065 ], [ -123.805820848999957, 48.974573934000084 ], [ -123.805772912999885, 48.974107405000041 ], [ -123.80613257499999, 48.973905861000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134389167", "BldgCostT": "89381667", "sL_LossRatio": "0.734914429932023", "sL_AssetLoss": "1357075", "sL_BldgLoss": "997334", "sL_StrLoss": "474794", "sL_NStrLoss": "522540", "sL_ContLoss": "359741", "geom_point": "0101000020E6100000F6C8179BF3F35EC040D0FA29487E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.809112524999975, 48.986748050000124 ], [ -123.809029506999963, 48.986643057000016 ], [ -123.808888883999941, 48.986507241000034 ], [ -123.808726504999953, 48.98635041900009 ], [ -123.808490011999965, 48.986157663000078 ], [ -123.808416246999968, 48.986097539000077 ], [ -123.808153430999951, 48.985883317000045 ], [ -123.808062253999964, 48.98580899900012 ], [ -123.807780655999977, 48.985579467000058 ], [ -123.80721206, 48.985115995000051 ], [ -123.807004234999965, 48.984946585000031 ], [ -123.806496762, 48.984532919000053 ], [ -123.806851692999942, 48.984325808000087 ], [ -123.807330754999896, 48.984007712000086 ], [ -123.808268253999969, 48.983374682000083 ], [ -123.808678866999912, 48.98320561000007 ], [ -123.808913335999989, 48.983138977000117 ], [ -123.809107720999975, 48.983083753000066 ], [ -123.809439807999922, 48.983716604000094 ], [ -123.809695547999979, 48.984026313000037 ], [ -123.810268877999988, 48.984521739000016 ], [ -123.811250184999949, 48.983913893000064 ], [ -123.811415702999938, 48.984026550000102 ], [ -123.812778113999954, 48.984954002000059 ], [ -123.813746192999943, 48.985620495000092 ], [ -123.815898001999926, 48.984210496000046 ], [ -123.816861706999973, 48.984855189000044 ], [ -123.817773521000021, 48.98547010500009 ], [ -123.8166825099999, 48.986175796000076 ], [ -123.815586136999954, 48.986880380000066 ], [ -123.81467827299997, 48.987464538000062 ], [ -123.814360137000023, 48.987669757000113 ], [ -123.814225692999969, 48.987733861000059 ], [ -123.814207931999974, 48.987742303000026 ], [ -123.814012161999969, 48.987753629000117 ], [ -123.813878355999947, 48.987754512 ], [ -123.813875771999946, 48.987663471000118 ], [ -123.813940951999925, 48.987583721000064 ], [ -123.813913464999985, 48.987529117000051 ], [ -123.813821929999946, 48.987356094000042 ], [ -123.813719233999933, 48.987245903000051 ], [ -123.813325110999983, 48.986828926000051 ], [ -123.811794805999966, 48.987789478000074 ], [ -123.812577708999953, 48.988484806000045 ], [ -123.812693288999981, 48.988587439000057 ], [ -123.812998014999934, 48.988858064000034 ], [ -123.813226662999966, 48.988931171000146 ], [ -123.81331006, 48.988958096000061 ], [ -123.813192641999962, 48.98913316600003 ], [ -123.813093919999972, 48.989200534000112 ], [ -123.812849571999934, 48.989782848000075 ], [ -123.812887111999927, 48.990061094000048 ], [ -123.812895556999962, 48.990072813000118 ], [ -123.813017813999949, 48.99024209100002 ], [ -123.813100807999888, 48.990314797000096 ], [ -123.813412612, 48.99058791100002 ], [ -123.812544848999963, 48.991137415 ], [ -123.812268697999968, 48.991312288000117 ], [ -123.812005153999934, 48.991410001000133 ], [ -123.811588362999942, 48.991075761000033 ], [ -123.811502101999977, 48.991006608000056 ], [ -123.811351499999915, 48.99086190600012 ], [ -123.811017383999982, 48.990540901000024 ], [ -123.810448227000023, 48.98980950900004 ], [ -123.810235904999942, 48.989475500000111 ], [ -123.810023219999977, 48.989061315000122 ], [ -123.809967515999972, 48.988881469000034 ], [ -123.809847726999962, 48.988494706000083 ], [ -123.809485032999945, 48.987350485000057 ], [ -123.809280804999958, 48.986960772 ], [ -123.809112524999975, 48.986748050000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2539167", "BldgCostT": "1541667", "sL_LossRatio": "0.581767709632232", "sL_AssetLoss": "31196.3", "sL_BldgLoss": "18149", "sL_StrLoss": "4910", "sL_NStrLoss": "13239", "sL_ContLoss": "13047.3", "geom_point": "0101000020E6100000F73238E773F45EC0853EF59B4B814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.819539887999895, 49.010818794000024 ], [ -123.819332790999965, 49.010712005000059 ], [ -123.819155858999963, 49.010552150000116 ], [ -123.819171585999968, 49.010474041000123 ], [ -123.819173552999956, 49.010458146000111 ], [ -123.818613161999949, 49.010061832000083 ], [ -123.8183349899999, 49.009810501000103 ], [ -123.818179947999923, 49.009692261000076 ], [ -123.818386927999939, 49.009696470000037 ], [ -123.818392312999947, 49.00958128000007 ], [ -123.820171176999949, 49.009617432 ], [ -123.820498106999977, 49.009948598000058 ], [ -123.820489988999952, 49.010325993000095 ], [ -123.820689414999961, 49.010510834000101 ], [ -123.820661155999943, 49.010521661000034 ], [ -123.820389147999961, 49.01064268300005 ], [ -123.820146705999917, 49.010760177000094 ], [ -123.819908506999951, 49.010734800000087 ], [ -123.819539887999895, 49.010818794000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "317078175", "BldgCostT": "196162451", "sL_LossRatio": "0.662786563305308", "sL_AssetLoss": "2837811", "sL_BldgLoss": "1880863", "sL_StrLoss": "749620", "sL_NStrLoss": "1131243", "sL_ContLoss": "956948", "geom_point": "0101000020E6100000BBEBB4C10BF45EC005D04244E27E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.829227491999958, 49.006134612000082 ], [ -123.828851379999918, 49.005741497000031 ], [ -123.82853339199994, 49.005600504000078 ], [ -123.828308383999953, 49.005357269000093 ], [ -123.828102578999932, 49.005134792000064 ], [ -123.827287276999968, 49.004673296000142 ], [ -123.826944508999972, 49.004576501000024 ], [ -123.82600259199998, 49.00463770800004 ], [ -123.82565354899999, 49.004712824000109 ], [ -123.825658555999908, 49.004605325000071 ], [ -123.825119378999958, 49.004609183000071 ], [ -123.825110462999973, 49.00406950200005 ], [ -123.824700313999969, 49.004072434000172 ], [ -123.82469585799997, 49.003802594000085 ], [ -123.824285710999931, 49.003805525000068 ], [ -123.824281256999953, 49.003535685000017 ], [ -123.82370981299999, 49.003539766000131 ], [ -123.823458120999973, 49.003368936000122 ], [ -123.823456517999958, 49.003271701000095 ], [ -123.82331633599992, 49.003272702000103 ], [ -123.822580700999978, 49.002773395000105 ], [ -123.82343250000001, 49.002146803000088 ], [ -123.823726210999965, 49.001720896000087 ], [ -123.823175177999957, 49.001500198000059 ], [ -123.822927805999967, 49.001484502000032 ], [ -123.821908287000014, 49.001841993000077 ], [ -123.820995797999927, 49.002055604000077 ], [ -123.820163298999944, 49.00206130300004 ], [ -123.820038398999927, 49.001963105000129 ], [ -123.819822095999939, 49.002108299000071 ], [ -123.819707394999952, 49.001795007000084 ], [ -123.819908584999951, 49.001595594000051 ], [ -123.819424488999942, 49.001248092000068 ], [ -123.818888707999989, 49.001054405000126 ], [ -123.818486694999976, 49.000769601000172 ], [ -123.818210385999976, 49.000527506000047 ], [ -123.818007993999942, 48.999872297000074 ], [ -123.81760852299999, 48.999714204000028 ], [ -123.818056884999962, 48.999557600000045 ], [ -123.818022192999976, 48.999171604000054 ], [ -123.818511603999923, 48.998969410000043 ], [ -123.818425192999939, 48.998656102000041 ], [ -123.818243907999928, 48.998503689000103 ], [ -123.818065592999957, 48.998469505000045 ], [ -123.817291782999959, 48.998725804000081 ], [ -123.81710981399999, 48.99852069899999 ], [ -123.816577312, 48.998533598000051 ], [ -123.816526535999941, 48.998477620000067 ], [ -123.816326698999958, 48.998257306000021 ], [ -123.816592404999966, 48.997777284000108 ], [ -123.817338117, 48.99743980500007 ], [ -123.817580905999989, 48.997231809 ], [ -123.816878706999901, 48.99686719100005 ], [ -123.815315604999952, 48.995717890000037 ], [ -123.814714534999951, 48.995426265000042 ], [ -123.81471146, 48.995237616000111 ], [ -123.814229213999951, 48.995241021000034 ], [ -123.813889252999957, 48.995117602000036 ], [ -123.813886906, 48.994973563000059 ], [ -123.813500021999985, 48.99497629200004 ], [ -123.813476689999959, 48.994967822000042 ], [ -123.813472437999934, 48.994706614000108 ], [ -123.813062363999961, 48.994709504000092 ], [ -123.813053579999945, 48.994169822000039 ], [ -123.812233442999954, 48.994175598000041 ], [ -123.812229055999964, 48.993905757000057 ], [ -123.811818988999917, 48.993908642000115 ], [ -123.811823373999943, 48.994178484000052 ], [ -123.811413304999945, 48.994181369000081 ], [ -123.811417671999948, 48.994450289000106 ], [ -123.81141365799999, 48.994451239000099 ], [ -123.811007615999983, 48.994454094000069 ], [ -123.81100857399997, 48.994513109000067 ], [ -123.810687589999972, 48.994545813000109 ], [ -123.81046771799997, 48.994439003000096 ], [ -123.810332989999935, 48.994520197000028 ], [ -123.810314055999982, 48.994728841000111 ], [ -123.81022775799994, 48.99472944700004 ], [ -123.809963992999926, 48.994558608000055 ], [ -123.809310695999898, 48.994716692000061 ], [ -123.809307393999958, 48.994735906000081 ], [ -123.808961627999935, 48.994738331000072 ], [ -123.808965504999961, 48.994977790000014 ], [ -123.808744938999922, 48.995009723000074 ], [ -123.807451194999942, 48.995018784000116 ], [ -123.807433319999944, 48.994450402000041 ], [ -123.807424409999911, 48.994426343000086 ], [ -123.807311160999973, 48.994120525 ], [ -123.807310636999944, 48.994087973000056 ], [ -123.807489106, 48.993722600000133 ], [ -123.807573110999968, 48.992956405000029 ], [ -123.807716922999958, 48.992604604000114 ], [ -123.807667517999946, 48.992002097000075 ], [ -123.807826784, 48.991722996000135 ], [ -123.80773241299994, 48.991030788000074 ], [ -123.808226700999967, 48.990253203000044 ], [ -123.808502910999934, 48.989585287000104 ], [ -123.808520313999935, 48.989018402000077 ], [ -123.808405503999921, 48.98868658300006 ], [ -123.807809498999973, 48.988079889000048 ], [ -123.807768692999957, 48.987296616000023 ], [ -123.80754272199999, 48.98680380200004 ], [ -123.806210975999932, 48.985634493000077 ], [ -123.805957908, 48.985239991000057 ], [ -123.80537768899994, 48.984794201000035 ], [ -123.805081607999924, 48.984275800000013 ], [ -123.804790807999936, 48.984079284000067 ], [ -123.804499487999919, 48.98372179400009 ], [ -123.803435199999953, 48.983072406000133 ], [ -123.803458405999933, 48.98275758400009 ], [ -123.804300382999912, 48.982391592000084 ], [ -123.804420011999952, 48.982229197000031 ], [ -123.804265599999908, 48.982014199000112 ], [ -123.804218421999934, 48.981547006000092 ], [ -123.804023111999967, 48.9813775040001 ], [ -123.804030513999948, 48.981319308000131 ], [ -123.804035796999969, 48.981277789000025 ], [ -123.804388504999949, 48.981086990000051 ], [ -123.804345310999963, 48.981005798000076 ], [ -123.804155295999976, 48.980988687000064 ], [ -123.80321819599996, 48.981400316000034 ], [ -123.803196613999944, 48.980941695000091 ], [ -123.802716991999958, 48.980810697000088 ], [ -123.802577511999914, 48.980703901000027 ], [ -123.802821208999916, 48.980548692000141 ], [ -123.803678613999949, 48.980336402000042 ], [ -123.803677887, 48.980218206000089 ], [ -123.80349850099995, 48.980139900000047 ], [ -123.803034287999964, 48.980124200000027 ], [ -123.802310006999974, 48.980219682000055 ], [ -123.801971286999958, 48.980393402000033 ], [ -123.801562903999979, 48.980413406000039 ], [ -123.800829910999965, 48.979896388000064 ], [ -123.799177097000012, 48.979090314000125 ], [ -123.798828604999983, 48.978749898000054 ], [ -123.798627994999961, 48.978050597000042 ], [ -123.798793684999922, 48.976555203000061 ], [ -123.798515575999943, 48.976224795000135 ], [ -123.797893392, 48.975734811000073 ], [ -123.79721548699996, 48.975270502000029 ], [ -123.796265709999929, 48.974846086000134 ], [ -123.796085407999954, 48.97460400600005 ], [ -123.796040977999979, 48.974478696000084 ], [ -123.795282789999973, 48.973953114 ], [ -123.794698508999929, 48.973407685000069 ], [ -123.79395359599998, 48.972927714000036 ], [ -123.792689004999914, 48.972496195000119 ], [ -123.792032114999927, 48.972383705000034 ], [ -123.791139412999925, 48.97203899800008 ], [ -123.790535721999916, 48.971970606000085 ], [ -123.7900995899999, 48.97203609900005 ], [ -123.789701701999917, 48.971922185000039 ], [ -123.789197388999938, 48.972016202000084 ], [ -123.788611013999954, 48.972001994000024 ], [ -123.788039446999932, 48.971901210000091 ], [ -123.788039640999926, 48.971900581000099 ], [ -123.787896264999958, 48.97126451000009 ], [ -123.788080931999943, 48.969095067000083 ], [ -123.788449335999957, 48.969304689000126 ], [ -123.788515397000012, 48.96934229900004 ], [ -123.788735929000012, 48.969457750000061 ], [ -123.788764081999929, 48.96947251600011 ], [ -123.788765962999932, 48.969359110000035 ], [ -123.788793747999989, 48.967709955000089 ], [ -123.788796824999963, 48.967526322000026 ], [ -123.790307914999943, 48.968578395000044 ], [ -123.790790085999959, 48.96891440000018 ], [ -123.793509567999962, 48.970890884000028 ], [ -123.798031889999947, 48.974177172000097 ], [ -123.799994590999944, 48.975603237000065 ], [ -123.80002650599998, 48.975626401000085 ], [ -123.801121794, 48.97656768800006 ], [ -123.801887607, 48.977348207000112 ], [ -123.801970313999988, 48.977535505000091 ], [ -123.80192922099998, 48.977682409000089 ], [ -123.801913388999964, 48.977702873000077 ], [ -123.80187181399999, 48.977756640000045 ], [ -123.801820207999981, 48.977823410000028 ], [ -123.801980849999978, 48.977761928000056 ], [ -123.802206594999987, 48.977675480000066 ], [ -123.80234147499999, 48.977622398000101 ], [ -123.802770545, 48.978077963000054 ], [ -123.803197493999946, 48.978531776000104 ], [ -123.80426620599998, 48.979667534000107 ], [ -123.804812774999959, 48.980248427000149 ], [ -123.805226333999926, 48.980858638000036 ], [ -123.805228760999967, 48.980867579000048 ], [ -123.805230497999958, 48.980873985000052 ], [ -123.80527220499999, 48.981027957000023 ], [ -123.805383391999897, 48.981438375000074 ], [ -123.80542578399999, 48.982378334000039 ], [ -123.805426190999952, 48.982387360000047 ], [ -123.805436956, 48.982626313000047 ], [ -123.805450228999973, 48.982920688000029 ], [ -123.805470589999956, 48.982995216000035 ], [ -123.805489323999964, 48.983063737000094 ], [ -123.805552732999928, 48.98329571000005 ], [ -123.80575864799998, 48.983707098000089 ], [ -123.806063154999919, 48.984111494000025 ], [ -123.806167533999911, 48.984219959 ], [ -123.806366444, 48.984426676000055 ], [ -123.806392785999904, 48.984448164000085 ], [ -123.806411570999927, 48.984463473000098 ], [ -123.806496762, 48.984532919000053 ], [ -123.807004234999965, 48.984946585000031 ], [ -123.80721206, 48.985115995000051 ], [ -123.807780655999977, 48.985579467000058 ], [ -123.808062253999964, 48.98580899900012 ], [ -123.808153430999951, 48.985883317000045 ], [ -123.808416246999968, 48.986097539000077 ], [ -123.808490011999965, 48.986157663000078 ], [ -123.808726504999953, 48.98635041900009 ], [ -123.808888883999941, 48.986507241000034 ], [ -123.809029506999963, 48.986643057000016 ], [ -123.809112524999975, 48.986748050000124 ], [ -123.809280804999958, 48.986960772 ], [ -123.809485032999945, 48.987350485000057 ], [ -123.809847726999962, 48.988494706000083 ], [ -123.809967515999972, 48.988881469000034 ], [ -123.810023219999977, 48.989061315000122 ], [ -123.810235904999942, 48.989475500000111 ], [ -123.810448227000023, 48.98980950900004 ], [ -123.811017383999982, 48.990540901000024 ], [ -123.811351499999915, 48.99086190600012 ], [ -123.811502101999977, 48.991006608000056 ], [ -123.811588362999942, 48.991075761000033 ], [ -123.812005153999934, 48.991410001000133 ], [ -123.812268697999968, 48.991312288000117 ], [ -123.812544848999963, 48.991137415 ], [ -123.813412612, 48.99058791100002 ], [ -123.81395726, 48.990947246000104 ], [ -123.814404494999977, 48.991242311000072 ], [ -123.814953179999961, 48.991614463000069 ], [ -123.815081193999944, 48.991701292000116 ], [ -123.815313646000021, 48.991858969000113 ], [ -123.815109000999954, 48.992088993000038 ], [ -123.814532599999978, 48.992463294000096 ], [ -123.814026183999928, 48.992792099000049 ], [ -123.813091897999939, 48.992156255000104 ], [ -123.812996992999899, 48.992091692000017 ], [ -123.812848028999966, 48.992148022000066 ], [ -123.813020106999957, 48.992263687000047 ], [ -123.813843732999885, 48.992817330000065 ], [ -123.813996659999987, 48.992920131000091 ], [ -123.814938099999935, 48.99355292400007 ], [ -123.815881815999887, 48.994199874000081 ], [ -123.815887040999925, 48.994203467000041 ], [ -123.816853124999952, 48.994865697000051 ], [ -123.817852578999961, 48.995550778000116 ], [ -123.81805905, 48.995691384000118 ], [ -123.818785353999928, 48.996186041000051 ], [ -123.81882572799995, 48.996213538000106 ], [ -123.819813437999969, 48.9968862220001 ], [ -123.82051251199999, 48.99736229100003 ], [ -123.82088437099999, 48.99756238700013 ], [ -123.821347655999901, 48.997811627000047 ], [ -123.821951697999964, 48.99803079500002 ], [ -123.822110368999944, 48.998088343000106 ], [ -123.822170684999975, 48.998103972000081 ], [ -123.824609070999941, 48.998735354000111 ], [ -123.824658624999941, 48.998646967000084 ], [ -123.824707417999946, 48.998559911000036 ], [ -123.825621285999929, 48.998785598000069 ], [ -123.826737712999915, 48.999091095000068 ], [ -123.827613812999957, 48.999397999000095 ], [ -123.827692749999969, 48.999435858000041 ], [ -123.828521326999933, 48.999833229000075 ], [ -123.828602187999962, 48.999872004000046 ], [ -123.828801864, 49.000008705000049 ], [ -123.829263910999913, 49.000324989000084 ], [ -123.830397395999967, 49.001263096000109 ], [ -123.830679802999924, 49.001503888000052 ], [ -123.831067505999968, 49.001830611000045 ], [ -123.83112255499999, 49.001876403000047 ], [ -123.831278650999977, 49.002006352000073 ], [ -123.83101407099997, 49.00197702100008 ], [ -123.830506378, 49.001872629000069 ], [ -123.834191625999921, 49.005709676000045 ], [ -123.834261115999951, 49.006017184000051 ], [ -123.834281615999927, 49.00610774900008 ], [ -123.834291567, 49.006151821000039 ], [ -123.834315532999966, 49.006257845000064 ], [ -123.834318016999973, 49.006268819000049 ], [ -123.83441569699994, 49.006700789000057 ], [ -123.833594693999984, 49.00616660900004 ], [ -123.830402856999925, 49.006952202000051 ], [ -123.830374297, 49.006917909000059 ], [ -123.829227491999958, 49.006134612000082 ] ], [ [ -123.825489389999973, 49.002177685000063 ], [ -123.825484928999956, 49.001907846000108 ], [ -123.825074797999918, 49.001910779000085 ], [ -123.825079255999967, 49.002180620000047 ], [ -123.825489389999973, 49.002177685000063 ] ], [ [ -123.826750584999957, 49.001898782000033 ], [ -123.826766935999956, 49.001547564000042 ], [ -123.828350742999987, 49.00157963500002 ], [ -123.828346895, 49.001347589000076 ], [ -123.827526642999942, 49.001353475000023 ], [ -123.82751770099999, 49.000813794000109 ], [ -123.82710757800001, 49.000816736000068 ], [ -123.827103108999921, 49.000546895000106 ], [ -123.826692990999902, 49.000549835000044 ], [ -123.826688523999906, 49.000279994000067 ], [ -123.826278405999972, 49.000282931000086 ], [ -123.826274712999989, 49.000059731000121 ], [ -123.82627394299999, 49.000013091000014 ], [ -123.825916751999927, 49.000015649000012 ], [ -123.825863825999988, 49.000016028000047 ], [ -123.825868288999942, 49.000285868000105 ], [ -123.825048052999975, 49.00029173700009 ], [ -123.825052509999949, 49.000561577000035 ], [ -123.825462629999947, 49.00055864400008 ], [ -123.825480467999938, 49.001638005000068 ], [ -123.826710855999963, 49.001629195000106 ], [ -123.826715322999959, 49.001899036000054 ], [ -123.826750584999957, 49.001898782000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "520073877", "BldgCostT": "334373789", "sL_LossRatio": "0.735157900541442", "sL_AssetLoss": "4352265", "sL_BldgLoss": "3199602", "sL_StrLoss": "1410336", "sL_NStrLoss": "1789266", "sL_ContLoss": "1152663", "geom_point": "0101000020E61000007BBBFA2560F45EC0FF66EE63FD7E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.813843732999885, 48.992817330000065 ], [ -123.813020106999957, 48.992263687000047 ], [ -123.812848028999966, 48.992148022000066 ], [ -123.812996992999899, 48.992091692000017 ], [ -123.813091897999939, 48.992156255000104 ], [ -123.814026183999928, 48.992792099000049 ], [ -123.814532599999978, 48.992463294000096 ], [ -123.815109000999954, 48.992088993000038 ], [ -123.815313646000021, 48.991858969000113 ], [ -123.815081193999944, 48.991701292000116 ], [ -123.814953179999961, 48.991614463000069 ], [ -123.814404494999977, 48.991242311000072 ], [ -123.81395726, 48.990947246000104 ], [ -123.813412612, 48.99058791100002 ], [ -123.814703106999971, 48.989764798000088 ], [ -123.815239639999902, 48.990120697000052 ], [ -123.815692191999958, 48.990420898000096 ], [ -123.816227606999959, 48.990775328000034 ], [ -123.816695986999932, 48.991085402000159 ], [ -123.818005189999951, 48.99024010400003 ], [ -123.819317099999921, 48.989395698000131 ], [ -123.819858924999963, 48.989761336000093 ], [ -123.820316320999908, 48.990070005000071 ], [ -123.821619405999911, 48.989237094000039 ], [ -123.822134935999941, 48.989584915000094 ], [ -123.822617394999952, 48.989910398000113 ], [ -123.823119897999945, 48.990250326000073 ], [ -123.823574294999943, 48.990557700000089 ], [ -123.822279393999978, 48.991391697000061 ], [ -123.820966096999925, 48.992236093 ], [ -123.82150711499996, 48.992600218000085 ], [ -123.821972216999981, 48.992913206000033 ], [ -123.82130071399996, 48.993346397000018 ], [ -123.820699591999968, 48.993734994000086 ], [ -123.81981517, 48.994298459000071 ], [ -123.819348586999936, 48.994595695000022 ], [ -123.818449696999934, 48.995172867000136 ], [ -123.817986009999956, 48.995470597000057 ], [ -123.817935275999943, 48.995501071000042 ], [ -123.817852578999961, 48.995550778000116 ], [ -123.816853124999952, 48.994865697000051 ], [ -123.815887040999925, 48.994203467000041 ], [ -123.815881815999887, 48.994199874000081 ], [ -123.814938099999935, 48.99355292400007 ], [ -123.813996659999987, 48.992920131000091 ], [ -123.813843732999885, 48.992817330000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124355084", "BldgCostT": "82528334", "sL_LossRatio": "0.740014544358612", "sL_AssetLoss": "1486487", "sL_BldgLoss": "1100022", "sL_StrLoss": "525812", "sL_NStrLoss": "574210", "sL_ContLoss": "386465", "geom_point": "0101000020E61000001F07A04949F45EC0FC8C7E138E7E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.815239639999902, 48.990120697000052 ], [ -123.814703106999971, 48.989764798000088 ], [ -123.813412612, 48.99058791100002 ], [ -123.813100807999888, 48.990314797000096 ], [ -123.813017813999949, 48.99024209100002 ], [ -123.812895556999962, 48.990072813000118 ], [ -123.812887111999927, 48.990061094000048 ], [ -123.812849571999934, 48.989782848000075 ], [ -123.813093919999972, 48.989200534000112 ], [ -123.813192641999962, 48.98913316600003 ], [ -123.81331006, 48.988958096000061 ], [ -123.813226662999966, 48.988931171000146 ], [ -123.812998014999934, 48.988858064000034 ], [ -123.812693288999981, 48.988587439000057 ], [ -123.812577708999953, 48.988484806000045 ], [ -123.811794805999966, 48.987789478000074 ], [ -123.813325110999983, 48.986828926000051 ], [ -123.813719233999933, 48.987245903000051 ], [ -123.813821929999946, 48.987356094000042 ], [ -123.813913464999985, 48.987529117000051 ], [ -123.813940951999925, 48.987583721000064 ], [ -123.813875771999946, 48.987663471000118 ], [ -123.813878355999947, 48.987754512 ], [ -123.814012161999969, 48.987753629000117 ], [ -123.814207931999974, 48.987742303000026 ], [ -123.814225692999969, 48.987733861000059 ], [ -123.814360137000023, 48.987669757000113 ], [ -123.81467827299997, 48.987464538000062 ], [ -123.815586136999954, 48.986880380000066 ], [ -123.816753736999956, 48.987666740000101 ], [ -123.817351690999928, 48.988069386000049 ], [ -123.818653391999973, 48.987235614000056 ], [ -123.81969043399999, 48.986573241000059 ], [ -123.819941018999927, 48.986413199000083 ], [ -123.820030014999929, 48.98647264900012 ], [ -123.82020633799999, 48.986590454000115 ], [ -123.82049784299997, 48.986785208000136 ], [ -123.82093119699999, 48.987074706000101 ], [ -123.820561196999932, 48.987311519000052 ], [ -123.819639404999933, 48.987901486000105 ], [ -123.820176951999954, 48.988264469000057 ], [ -123.820620097999949, 48.988563712000079 ], [ -123.821917500999987, 48.987734303000124 ], [ -123.822186410999947, 48.987913809000091 ], [ -123.822444212999969, 48.988085928000039 ], [ -123.822457779, 48.988094976000099 ], [ -123.822923700999965, 48.988405999000108 ], [ -123.821619405999911, 48.989237094000039 ], [ -123.820316320999908, 48.990070005000071 ], [ -123.819858924999963, 48.989761336000093 ], [ -123.819317099999921, 48.989395698000131 ], [ -123.818005189999951, 48.99024010400003 ], [ -123.816695986999932, 48.991085402000159 ], [ -123.816227606999959, 48.990775328000034 ], [ -123.815692191999958, 48.990420898000096 ], [ -123.815239639999902, 48.990120697000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1311634650", "BldgCostT": "854385306", "sL_LossRatio": "0.73048781267484", "sL_AssetLoss": "7351367", "sL_BldgLoss": "5370084", "sL_StrLoss": "2255291", "sL_NStrLoss": "3114793", "sL_ContLoss": "1981283", "geom_point": "0101000020E610000081F41CAA0CF55EC0B1FEB70E657E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.822186410999947, 48.987913809000091 ], [ -123.821917500999987, 48.987734303000124 ], [ -123.820620097999949, 48.988563712000079 ], [ -123.820176951999954, 48.988264469000057 ], [ -123.819639404999933, 48.987901486000105 ], [ -123.820561196999932, 48.987311519000052 ], [ -123.82093119699999, 48.987074706000101 ], [ -123.821543209999973, 48.986701688000068 ], [ -123.821545206999971, 48.986823102000059 ], [ -123.821955216000021, 48.986820182000045 ], [ -123.821959652999922, 48.987090022000132 ], [ -123.826059749999956, 48.987060738 ], [ -123.826064209999984, 48.987330578000098 ], [ -123.82770425599999, 48.98731882400007 ], [ -123.82770872499999, 48.987588666000136 ], [ -123.828528750999965, 48.987582779000078 ], [ -123.828524276999971, 48.987312938000109 ], [ -123.828934288999918, 48.987309993000096 ], [ -123.828929811999956, 48.987040152000127 ], [ -123.829339820999934, 48.9870372050001 ], [ -123.829335341999951, 48.98676736500002 ], [ -123.830565360999955, 48.986758515000119 ], [ -123.830569845999932, 48.987028357000071 ], [ -123.830979854999953, 48.987025404000114 ], [ -123.830952932999978, 48.98540635900013 ], [ -123.832592911999882, 48.985394536000122 ], [ -123.832597407999941, 48.985664376000024 ], [ -123.83341740299997, 48.985658455000106 ], [ -123.833435403999914, 48.986737817000048 ], [ -123.83582734, 48.986720513000051 ], [ -123.835823938999965, 48.987153556000123 ], [ -123.835550895999987, 48.988337314000034 ], [ -123.834762797999986, 48.988343914000041 ], [ -123.834025486999963, 48.988346998000118 ], [ -123.833830198999962, 48.98834848700006 ], [ -123.83381140799996, 48.98834860000008 ], [ -123.83293302599999, 48.98835380900006 ], [ -123.831296598000023, 48.988360983000078 ], [ -123.83022258499993, 48.988365693000105 ], [ -123.828939005000024, 48.988371199000071 ], [ -123.827988990999941, 48.988377265000061 ], [ -123.827633649999925, 48.98837952100012 ], [ -123.827510613999905, 48.988380310000075 ], [ -123.827100555999962, 48.988382919000102 ], [ -123.82403380099997, 48.988402392000054 ], [ -123.823922606999943, 48.988445209000062 ], [ -123.823453292999943, 48.988760892000151 ], [ -123.822923700999965, 48.988405999000108 ], [ -123.822457779, 48.988094976000099 ], [ -123.822444212999969, 48.988085928000039 ], [ -123.822186410999947, 48.987913809000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133901541", "BldgCostT": "89633048", "sL_LossRatio": "0.753193455454694", "sL_AssetLoss": "1471760", "sL_BldgLoss": "1108520", "sL_StrLoss": "531320", "sL_NStrLoss": "577200", "sL_ContLoss": "363240", "geom_point": "0101000020E6100000911691D5EBF45EC0AC63AE6FD47E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.825266978999963, 48.993405194000083 ], [ -123.824897322999959, 48.993156897000055 ], [ -123.824802391000034, 48.993093140000035 ], [ -123.824274114999966, 48.992738306000071 ], [ -123.823795586999935, 48.992415083000019 ], [ -123.823281384999916, 48.992067796000129 ], [ -123.822830585999952, 48.991763626000129 ], [ -123.822279393999978, 48.991391697000061 ], [ -123.823574294999943, 48.990557700000089 ], [ -123.823119897999945, 48.990250326000073 ], [ -123.822617394999952, 48.989910398000113 ], [ -123.822134935999941, 48.989584915000094 ], [ -123.821619405999911, 48.989237094000039 ], [ -123.822923700999965, 48.988405999000108 ], [ -123.823453292999943, 48.988760892000151 ], [ -123.823922606999943, 48.988445209000062 ], [ -123.82403380099997, 48.988402392000054 ], [ -123.827100555999962, 48.988382919000102 ], [ -123.827510613999905, 48.988380310000075 ], [ -123.827633649999925, 48.98837952100012 ], [ -123.827988990999941, 48.988377265000061 ], [ -123.828939005000024, 48.988371199000071 ], [ -123.83022258499993, 48.988365693000105 ], [ -123.830229713000023, 48.988857593000034 ], [ -123.830237363999984, 48.989341477000067 ], [ -123.830242913999882, 48.989691099000026 ], [ -123.830351206999978, 48.989857311000051 ], [ -123.831117701999986, 48.990402391000067 ], [ -123.831224905999989, 48.990506382 ], [ -123.831489611999984, 48.990979295000059 ], [ -123.831545572, 48.991244291000044 ], [ -123.831524484999932, 48.991491599000021 ], [ -123.831453899999957, 48.991746903000021 ], [ -123.831375077999979, 48.991891908000063 ], [ -123.831309099999942, 48.992013303000128 ], [ -123.831116703, 48.992246292000118 ], [ -123.830937088999931, 48.992380495000099 ], [ -123.830721525999962, 48.992519608000052 ], [ -123.830510606999923, 48.992655693000039 ], [ -123.830042253999977, 48.992954268000076 ], [ -123.829839503999935, 48.993083496000096 ], [ -123.829777957999937, 48.993123313000083 ], [ -123.829539702999952, 48.993277401000114 ], [ -123.829480593999975, 48.993315282000012 ], [ -123.828530600999926, 48.993924396000075 ], [ -123.82845499799997, 48.993848109000098 ], [ -123.828083524999926, 48.993597834000113 ], [ -123.827552089, 48.993239808000112 ], [ -123.826253212999916, 48.994071991000084 ], [ -123.825775852999953, 48.993749252000022 ], [ -123.825266978999963, 48.993405194000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170941052", "BldgCostT": "114923745", "sL_LossRatio": "0.789824906271502", "sL_AssetLoss": "1344628.4", "sL_BldgLoss": "1062021", "sL_StrLoss": "597515", "sL_NStrLoss": "464506", "sL_ContLoss": "282607.4", "geom_point": "0101000020E6100000F42014C65CF55EC01E3678FCEA7E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.831375077999979, 48.991891908000063 ], [ -123.831453899999957, 48.991746903000021 ], [ -123.831524484999932, 48.991491599000021 ], [ -123.831545572, 48.991244291000044 ], [ -123.831489611999984, 48.990979295000059 ], [ -123.831224905999989, 48.990506382 ], [ -123.831117701999986, 48.990402391000067 ], [ -123.830351206999978, 48.989857311000051 ], [ -123.830242913999882, 48.989691099000026 ], [ -123.830237363999984, 48.989341477000067 ], [ -123.830229713000023, 48.988857593000034 ], [ -123.83022258499993, 48.988365693000105 ], [ -123.831296598000023, 48.988360983000078 ], [ -123.83293302599999, 48.98835380900006 ], [ -123.83381140799996, 48.98834860000008 ], [ -123.833830198999962, 48.98834848700006 ], [ -123.834025486999963, 48.988346998000118 ], [ -123.834762797999986, 48.988343914000041 ], [ -123.835550895999987, 48.988337314000034 ], [ -123.835551946999928, 48.988341746000053 ], [ -123.835512502999933, 48.988342032000105 ], [ -123.835535063999927, 48.989691233000052 ], [ -123.835836620999942, 48.989689048000045 ], [ -123.835954959999967, 48.99027796600005 ], [ -123.835981211999965, 48.991846984000091 ], [ -123.83660403, 48.991842469000126 ], [ -123.836686462, 48.991984789000107 ], [ -123.836843315999928, 48.992437130000063 ], [ -123.836875165999984, 48.992592156000036 ], [ -123.836794385999909, 48.993173500000132 ], [ -123.837138094999943, 48.993948810000091 ], [ -123.837174403999967, 48.994136907000048 ], [ -123.837156814999972, 48.994369010000106 ], [ -123.837077398999952, 48.994668216000093 ], [ -123.836930418999913, 48.994834605000101 ], [ -123.83668709899996, 48.994989083000064 ], [ -123.83648950299991, 48.995068913000075 ], [ -123.836472458999964, 48.995072617000098 ], [ -123.83641120399993, 48.995086008000108 ], [ -123.836244011999895, 48.995122504000101 ], [ -123.834884914000028, 48.995192388000127 ], [ -123.83475731, 48.994852004000116 ], [ -123.834646099999958, 48.994747993000068 ], [ -123.834447097999927, 48.994652107000014 ], [ -123.833532396999942, 48.994414687000059 ], [ -123.833164974999946, 48.994328001000028 ], [ -123.832794602999968, 48.994190789000072 ], [ -123.831385695999955, 48.993245394000027 ], [ -123.830510606999923, 48.992655693000039 ], [ -123.830721525999962, 48.992519608000052 ], [ -123.830937088999931, 48.992380495000099 ], [ -123.831116703, 48.992246292000118 ], [ -123.831309099999942, 48.992013303000128 ], [ -123.831375077999979, 48.991891908000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167495583", "BldgCostT": "110598333", "sL_LossRatio": "0.751692409587528", "sL_AssetLoss": "1515886", "sL_BldgLoss": "1139480", "sL_StrLoss": "600030", "sL_NStrLoss": "539450", "sL_ContLoss": "376406", "geom_point": "0101000020E6100000F36E97C34FF55EC06F154008B37F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.830679802999924, 49.001503888000052 ], [ -123.830397395999967, 49.001263096000109 ], [ -123.829263910999913, 49.000324989000084 ], [ -123.829329222999959, 49.000300816000106 ], [ -123.829768636999972, 49.000138291000084 ], [ -123.830048896999969, 49.000034603000074 ], [ -123.830231259999891, 48.999967547000089 ], [ -123.830826891999962, 48.999748495000098 ], [ -123.831017131999943, 48.999678764000144 ], [ -123.831157492999978, 48.999627302000079 ], [ -123.83112175699992, 48.999562919000056 ], [ -123.830952110999988, 48.999257408000084 ], [ -123.830902909999935, 48.999083503000115 ], [ -123.830922003999959, 48.998936205000156 ], [ -123.830372702999938, 48.998569282000091 ], [ -123.829614861999943, 48.998062979000075 ], [ -123.826985643999976, 48.996291043000078 ], [ -123.826069366999917, 48.99567347600005 ], [ -123.825936897999966, 48.995585210000058 ], [ -123.827221808999965, 48.994762698000095 ], [ -123.826745951999982, 48.994423379000047 ], [ -123.826253212999916, 48.994071991000084 ], [ -123.827552089, 48.993239808000112 ], [ -123.828083524999926, 48.993597834000113 ], [ -123.82845499799997, 48.993848109000098 ], [ -123.828530600999926, 48.993924396000075 ], [ -123.829480593999975, 48.993315282000012 ], [ -123.829539702999952, 48.993277401000114 ], [ -123.829777957999937, 48.993123313000083 ], [ -123.829839503999935, 48.993083496000096 ], [ -123.830042253999977, 48.992954268000076 ], [ -123.830510606999923, 48.992655693000039 ], [ -123.831385695999955, 48.993245394000027 ], [ -123.832794602999968, 48.994190789000072 ], [ -123.833164974999946, 48.994328001000028 ], [ -123.833532396999942, 48.994414687000059 ], [ -123.834447097999927, 48.994652107000014 ], [ -123.834646099999958, 48.994747993000068 ], [ -123.83475731, 48.994852004000116 ], [ -123.834884914000028, 48.995192388000127 ], [ -123.834039218999948, 48.995347263000063 ], [ -123.833945717999967, 48.995364401000117 ], [ -123.83367837599998, 48.995475196000079 ], [ -123.834002800999926, 48.995517806000116 ], [ -123.834315795999942, 48.995628604000082 ], [ -123.83523519699996, 48.996117420000097 ], [ -123.835338755999985, 48.996184535000062 ], [ -123.835533501999947, 48.996310723000086 ], [ -123.836183094999967, 48.996641810000014 ], [ -123.83702918299997, 48.997036299000065 ], [ -123.837212327, 48.997132909000044 ], [ -123.837542323999955, 48.997306950000016 ], [ -123.837553000999947, 48.997312586000113 ], [ -123.837744356999977, 48.997367821000054 ], [ -123.838333167999963, 48.997086843000027 ], [ -123.838866815999936, 48.996869058000094 ], [ -123.839282496999957, 48.996889989000039 ], [ -123.839627192999956, 48.997021884000084 ], [ -123.840178101999982, 48.997208706000031 ], [ -123.84018698599999, 48.997348387000073 ], [ -123.840204205999925, 48.997619096000072 ], [ -123.840132795999978, 48.997833006000121 ], [ -123.840120455999966, 48.99785268600003 ], [ -123.839852696999969, 48.998280401000017 ], [ -123.84101797799994, 48.998238878000016 ], [ -123.841031702999928, 48.998238397000058 ], [ -123.841326704999958, 48.998235288000011 ], [ -123.841273090999948, 48.999904698000094 ], [ -123.841038056999963, 48.999906411000062 ], [ -123.841042601000012, 49.000176251000077 ], [ -123.839402137999954, 49.000188197000043 ], [ -123.839397602999981, 48.99991835800008 ], [ -123.838987489999937, 48.99992134000005 ], [ -123.838982957999946, 48.999651501000102 ], [ -123.838572846999966, 48.999654483000064 ], [ -123.838559255999954, 48.998844964000092 ], [ -123.838149151999943, 48.998847944000033 ], [ -123.838144851, 48.998591587000078 ], [ -123.83814462299992, 48.998578105000085 ], [ -123.83773452199992, 48.998581084000122 ], [ -123.837736746999894, 48.998713810000126 ], [ -123.837739046999943, 48.998850923000084 ], [ -123.837328942999932, 48.998853900000078 ], [ -123.837337989, 48.999393579000085 ], [ -123.836107660999986, 48.99940250100007 ], [ -123.836103143999964, 48.9991326620001 ], [ -123.83583637699995, 48.999134595000065 ], [ -123.835788704999942, 49.00016293200013 ], [ -123.836269594, 49.000172632000101 ], [ -123.836251604999958, 49.000327965000096 ], [ -123.8361701809999, 49.00103098000006 ], [ -123.836092152999953, 49.001704625000059 ], [ -123.835800972999934, 49.001675632000108 ], [ -123.834816849999967, 49.001577721000089 ], [ -123.834166794999987, 49.001907567000046 ], [ -123.834122921999921, 49.002057997000044 ], [ -123.834061601999949, 49.002466600000048 ], [ -123.833327457999957, 49.002525290000058 ], [ -123.832835078999935, 49.002522198000094 ], [ -123.832574456999936, 49.002512868000018 ], [ -123.83186728799997, 49.002236436000054 ], [ -123.831278650999977, 49.002006352000073 ], [ -123.83112255499999, 49.001876403000047 ], [ -123.831067505999968, 49.001830611000045 ], [ -123.830679802999924, 49.001503888000052 ] ], [ [ -123.836499693999968, 48.998320169000081 ], [ -123.836490655999938, 48.997780491000078 ], [ -123.836900752999952, 48.997777516000085 ], [ -123.836896231999916, 48.997507676000097 ], [ -123.836486137999941, 48.997510651000077 ], [ -123.836481617999979, 48.997240810000015 ], [ -123.835923975999933, 48.997244852000101 ], [ -123.835873919, 48.998324705000044 ], [ -123.836499693999968, 48.998320169000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186244611", "BldgCostT": "116992388", "sL_LossRatio": "0.712672226119786", "sL_AssetLoss": "2073945", "sL_BldgLoss": "1478043", "sL_StrLoss": "671295", "sL_NStrLoss": "806748", "sL_ContLoss": "595902", "geom_point": "0101000020E61000009F1A796ABFF45EC0BFF33059817F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.825621285999929, 48.998785598000069 ], [ -123.824707417999946, 48.998559911000036 ], [ -123.824658624999941, 48.998646967000084 ], [ -123.824609070999941, 48.998735354000111 ], [ -123.822170684999975, 48.998103972000081 ], [ -123.822110368999944, 48.998088343000106 ], [ -123.821951697999964, 48.99803079500002 ], [ -123.821347655999901, 48.997811627000047 ], [ -123.82088437099999, 48.99756238700013 ], [ -123.82051251199999, 48.99736229100003 ], [ -123.819813437999969, 48.9968862220001 ], [ -123.81882572799995, 48.996213538000106 ], [ -123.818785353999928, 48.996186041000051 ], [ -123.81805905, 48.995691384000118 ], [ -123.817852578999961, 48.995550778000116 ], [ -123.817935275999943, 48.995501071000042 ], [ -123.817986009999956, 48.995470597000057 ], [ -123.818449696999934, 48.995172867000136 ], [ -123.819348586999936, 48.994595695000022 ], [ -123.81981517, 48.994298459000071 ], [ -123.820699591999968, 48.993734994000086 ], [ -123.82130071399996, 48.993346397000018 ], [ -123.821972216999981, 48.992913206000033 ], [ -123.82150711499996, 48.992600218000085 ], [ -123.820966096999925, 48.992236093 ], [ -123.822279393999978, 48.991391697000061 ], [ -123.822830585999952, 48.991763626000129 ], [ -123.823281384999916, 48.992067796000129 ], [ -123.823795586999935, 48.992415083000019 ], [ -123.824274114999966, 48.992738306000071 ], [ -123.824802391000034, 48.993093140000035 ], [ -123.824897322999959, 48.993156897000055 ], [ -123.825266978999963, 48.993405194000083 ], [ -123.825775852999953, 48.993749252000022 ], [ -123.826253212999916, 48.994071991000084 ], [ -123.826745951999982, 48.994423379000047 ], [ -123.827221808999965, 48.994762698000095 ], [ -123.825936897999966, 48.995585210000058 ], [ -123.826069366999917, 48.99567347600005 ], [ -123.826985643999976, 48.996291043000078 ], [ -123.829614861999943, 48.998062979000075 ], [ -123.830372702999938, 48.998569282000091 ], [ -123.830922003999959, 48.998936205000156 ], [ -123.830902909999935, 48.999083503000115 ], [ -123.830952110999988, 48.999257408000084 ], [ -123.83112175699992, 48.999562919000056 ], [ -123.831157492999978, 48.999627302000079 ], [ -123.831017131999943, 48.999678764000144 ], [ -123.830826891999962, 48.999748495000098 ], [ -123.830231259999891, 48.999967547000089 ], [ -123.830048896999969, 49.000034603000074 ], [ -123.829768636999972, 49.000138291000084 ], [ -123.829329222999959, 49.000300816000106 ], [ -123.829263910999913, 49.000324989000084 ], [ -123.828801864, 49.000008705000049 ], [ -123.828602187999962, 48.999872004000046 ], [ -123.828521326999933, 48.999833229000075 ], [ -123.827692749999969, 48.999435858000041 ], [ -123.827613812999957, 48.999397999000095 ], [ -123.826737712999915, 48.999091095000068 ], [ -123.825621285999929, 48.998785598000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.94270890025761", "sL_AssetLoss": "2756.1", "sL_BldgLoss": "2598.2", "sL_StrLoss": "2058", "sL_NStrLoss": "540.2", "sL_ContLoss": "157.9", "geom_point": "0101000020E610000010C9D27F7DF55EC0EF1EA0FB727E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.835550895999987, 48.988337314000034 ], [ -123.835823938999965, 48.987153556000123 ], [ -123.835904027999973, 48.98723352500005 ], [ -123.835922521000015, 48.988339061000076 ], [ -123.835551946999928, 48.988341746000053 ], [ -123.835550895999987, 48.988337314000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802834", "BldgCostT": "1243334", "sL_LossRatio": "0.91643267816553", "sL_AssetLoss": "7479", "sL_BldgLoss": "6854", "sL_StrLoss": "4506", "sL_NStrLoss": "2348", "sL_ContLoss": "625", "geom_point": "0101000020E61000005871AAB530F65EC0292B9F4824804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.846383238, 49.000676941000108 ], [ -123.846902488999902, 49.000673130000052 ], [ -123.847188564999954, 49.001480647000079 ], [ -123.846396956999925, 49.001486457000063 ], [ -123.846383238, 49.000676941000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229623072", "BldgCostT": "153395918", "sL_LossRatio": "0.806197662658811", "sL_AssetLoss": "1323983", "sL_BldgLoss": "1067392", "sL_StrLoss": "614106", "sL_NStrLoss": "453286", "sL_ContLoss": "256591", "geom_point": "0101000020E61000004B187BCCD3F55EC0BF2DE453787F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.843106840999923, 49.000970802000097 ], [ -123.843102286999951, 49.000700963000035 ], [ -123.84271283599999, 49.00070380800009 ], [ -123.842709913999926, 49.000484160000056 ], [ -123.842706994999944, 49.000266203000074 ], [ -123.842275069, 49.000293194000093 ], [ -123.842272946999955, 49.000167275000116 ], [ -123.841452715999978, 49.000173260000047 ], [ -123.84144817, 48.999903420000031 ], [ -123.841273090999948, 48.999904698000094 ], [ -123.841326704999958, 48.998235288000011 ], [ -123.841031702999928, 48.998238397000058 ], [ -123.84101797799994, 48.998238878000016 ], [ -123.839852696999969, 48.998280401000017 ], [ -123.840120455999966, 48.99785268600003 ], [ -123.840132795999978, 48.997833006000121 ], [ -123.840204205999925, 48.997619096000072 ], [ -123.84018698599999, 48.997348387000073 ], [ -123.840178101999982, 48.997208706000031 ], [ -123.839627192999956, 48.997021884000084 ], [ -123.839282496999957, 48.996889989000039 ], [ -123.838866815999936, 48.996869058000094 ], [ -123.838333167999963, 48.997086843000027 ], [ -123.837744356999977, 48.997367821000054 ], [ -123.837553000999947, 48.997312586000113 ], [ -123.837542323999955, 48.997306950000016 ], [ -123.837212327, 48.997132909000044 ], [ -123.83702918299997, 48.997036299000065 ], [ -123.836183094999967, 48.996641810000014 ], [ -123.835533501999947, 48.996310723000086 ], [ -123.835338755999985, 48.996184535000062 ], [ -123.83523519699996, 48.996117420000097 ], [ -123.834315795999942, 48.995628604000082 ], [ -123.834002800999926, 48.995517806000116 ], [ -123.83367837599998, 48.995475196000079 ], [ -123.833945717999967, 48.995364401000117 ], [ -123.834039218999948, 48.995347263000063 ], [ -123.834884914000028, 48.995192388000127 ], [ -123.836244011999895, 48.995122504000101 ], [ -123.83641120399993, 48.995086008000108 ], [ -123.836472458999964, 48.995072617000098 ], [ -123.83648950299991, 48.995068913000075 ], [ -123.83668709899996, 48.994989083000064 ], [ -123.836930418999913, 48.994834605000101 ], [ -123.837077398999952, 48.994668216000093 ], [ -123.837156814999972, 48.994369010000106 ], [ -123.837174403999967, 48.994136907000048 ], [ -123.837138094999943, 48.993948810000091 ], [ -123.836794385999909, 48.993173500000132 ], [ -123.836875165999984, 48.992592156000036 ], [ -123.836843315999928, 48.992437130000063 ], [ -123.836686462, 48.991984789000107 ], [ -123.83660403, 48.991842469000126 ], [ -123.836801306999945, 48.991841038000111 ], [ -123.83680582699999, 48.992110878000091 ], [ -123.838856072999974, 48.992095990000053 ], [ -123.838860603999976, 48.992365829000093 ], [ -123.839680706999943, 48.992359863000061 ], [ -123.839685241999987, 48.992629703000034 ], [ -123.840095293999966, 48.992626718000075 ], [ -123.840090757999974, 48.992356878000102 ], [ -123.84050080899999, 48.99235389100005 ], [ -123.84049627, 48.992084051000056 ], [ -123.841726415999972, 48.99207508300001 ], [ -123.841730961999986, 48.992344923000083 ], [ -123.84255106399992, 48.992338937000085 ], [ -123.842560164999952, 48.992878616000034 ], [ -123.84338027699999, 48.992872623000082 ], [ -123.843389386999974, 48.993412303000042 ], [ -123.843799445999963, 48.993409305000085 ], [ -123.843804004000035, 48.993679143000094 ], [ -123.84421406599995, 48.993676143000116 ], [ -123.844223185999965, 48.994215823000033 ], [ -123.845043315999959, 48.994209819000091 ], [ -123.845047880999971, 48.994479658000039 ], [ -123.845193380999945, 48.994478593000103 ], [ -123.84543547899996, 48.998128412000113 ], [ -123.84544378399994, 48.998128164000015 ], [ -123.84580088499996, 48.998122889000101 ], [ -123.84589117799996, 48.998691915000094 ], [ -123.845945090999948, 48.9987910460001 ], [ -123.843890609999931, 48.998806092000109 ], [ -123.843908846999966, 48.999885449000075 ], [ -123.844729071999922, 48.999879446000108 ], [ -123.844742761999939, 49.000688963000108 ], [ -123.844332643, 49.00069196500008 ], [ -123.84433720499996, 49.000961804000063 ], [ -123.843106840999923, 49.000970802000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2916917", "BldgCostT": "2011667", "sL_LossRatio": "0.844002217977943", "sL_AssetLoss": "16231", "sL_BldgLoss": "13699", "sL_StrLoss": "7780", "sL_NStrLoss": "5919", "sL_ContLoss": "2532", "geom_point": "0101000020E6100000B7472D9CFDF55EC08808079430804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.842726880999948, 49.001759207000063 ], [ -123.84271706799997, 49.001021870000038 ], [ -123.843254576999939, 49.00103267700009 ], [ -123.843247046999949, 49.001195645000024 ], [ -123.843685871999952, 49.001204465000065 ], [ -123.84367362799999, 49.001469518000114 ], [ -123.845197130999949, 49.001500127000035 ], [ -123.845188432, 49.00168860800003 ], [ -123.842726880999948, 49.001759207000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.923526422764228", "sL_AssetLoss": "7872", "sL_BldgLoss": "7270", "sL_StrLoss": "5630", "sL_NStrLoss": "1640", "sL_ContLoss": "602", "geom_point": "0101000020E6100000C294588428F65EC0FE973126F97F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.845950267999953, 48.999330753000052 ], [ -123.846237463999941, 48.999328647 ], [ -123.846676037999941, 49.000135047000128 ], [ -123.845963979999965, 49.000140270000053 ], [ -123.845950267999953, 48.999330753000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127085917", "BldgCostT": "86931667", "sL_LossRatio": "0.791582943575625", "sL_AssetLoss": "935624", "sL_BldgLoss": "740624", "sL_StrLoss": "360794", "sL_NStrLoss": "379830", "sL_ContLoss": "195000", "geom_point": "0101000020E61000007EA6451AE8F55EC0C19B3578DF804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.846242690999958, 49.012929119 ], [ -123.843985405999931, 49.012230891000065 ], [ -123.843945853999926, 49.012218662000066 ], [ -123.843861691999962, 49.012192632000058 ], [ -123.843859696, 49.012192005000031 ], [ -123.841799301999941, 49.011554598000075 ], [ -123.841008112999987, 49.011296396000027 ], [ -123.839605203999909, 49.010710595000084 ], [ -123.837571597999926, 49.009664464000075 ], [ -123.836239403999954, 49.008979111000066 ], [ -123.836236608999954, 49.008977102000088 ], [ -123.836133626999924, 49.008902874000086 ], [ -123.836068498999978, 49.008855974 ], [ -123.835615601999962, 49.008529608000067 ], [ -123.835187022999975, 49.008112007000108 ], [ -123.834767117999931, 49.007595491000124 ], [ -123.834478807999943, 49.006979910000098 ], [ -123.83441569699994, 49.006700789000057 ], [ -123.834318016999973, 49.006268819000049 ], [ -123.834315532999966, 49.006257845000064 ], [ -123.834291567, 49.006151821000039 ], [ -123.834281615999927, 49.00610774900008 ], [ -123.834261115999951, 49.006017184000051 ], [ -123.834191625999921, 49.005709676000045 ], [ -123.830506378, 49.001872629000069 ], [ -123.83101407099997, 49.00197702100008 ], [ -123.831278650999977, 49.002006352000073 ], [ -123.83186728799997, 49.002236436000054 ], [ -123.832574456999936, 49.002512868000018 ], [ -123.832835078999935, 49.002522198000094 ], [ -123.833327457999957, 49.002525290000058 ], [ -123.834061601999949, 49.002466600000048 ], [ -123.834122921999921, 49.002057997000044 ], [ -123.834166794999987, 49.001907567000046 ], [ -123.834816849999967, 49.001577721000089 ], [ -123.835800972999934, 49.001675632000108 ], [ -123.836092152999953, 49.001704625000059 ], [ -123.8361701809999, 49.00103098000006 ], [ -123.836251604999958, 49.000327965000096 ], [ -123.836269594, 49.000172632000101 ], [ -123.839075432999934, 49.000229184000048 ], [ -123.839317946999927, 49.00024335299999 ], [ -123.839313395999937, 49.000341689000045 ], [ -123.840587635999938, 49.000367345000036 ], [ -123.840586468999973, 49.000392586000089 ], [ -123.841100518999937, 49.000402932 ], [ -123.841085334999931, 49.00073124900004 ], [ -123.841486524999965, 49.000739322000037 ], [ -123.841474615999942, 49.000996880000052 ], [ -123.84271706799997, 49.001021870000038 ], [ -123.842726880999948, 49.001759207000063 ], [ -123.845188432, 49.00168860800003 ], [ -123.845150191999949, 49.002517026000049 ], [ -123.84517529299994, 49.002517530000091 ], [ -123.845154922999896, 49.002958832000047 ], [ -123.845522908999939, 49.002966222000097 ], [ -123.845504705999971, 49.003360619000098 ], [ -123.845773523999981, 49.003366017000069 ], [ -123.845731232999952, 49.004282377000024 ], [ -123.845753278999936, 49.0042828200001 ], [ -123.845742746999946, 49.00451104100005 ], [ -123.847314136999927, 49.004542580000141 ], [ -123.847308528999974, 49.004664149000085 ], [ -123.847837823999967, 49.004674767000083 ], [ -123.847812682999972, 49.005220044000055 ], [ -123.848462718999883, 49.005233080000025 ], [ -123.84852603299997, 49.005234350000073 ], [ -123.848519636999967, 49.005373104000064 ], [ -123.848450693999922, 49.006868821000126 ], [ -123.849125648999944, 49.006863856000109 ], [ -123.849359615999944, 49.00686213300007 ], [ -123.849369863, 49.007464578000089 ], [ -123.849377975999928, 49.007941487000103 ], [ -123.848557618999962, 49.007947522000059 ], [ -123.848562204999894, 49.008217362000103 ], [ -123.849672581999968, 49.008209190000052 ], [ -123.849792744999917, 49.008208304000057 ], [ -123.849795709999967, 49.008382538000035 ], [ -123.850782138999946, 49.008402300000114 ], [ -123.850674097, 49.01074855600006 ], [ -123.850667094999935, 49.010900583000073 ], [ -123.850731605999954, 49.010900107000104 ], [ -123.852710087999981, 49.010885502000058 ], [ -123.852714695999936, 49.011155340000037 ], [ -123.85353510500002, 49.01114927400004 ], [ -123.853539716999975, 49.01141911200007 ], [ -123.853949925000023, 49.011416077000092 ], [ -123.853954539999933, 49.011685915000079 ], [ -123.854364747999966, 49.011682878000059 ], [ -123.854369365999943, 49.01195271600006 ], [ -123.854779576999988, 49.011949678000093 ], [ -123.854788112999955, 49.012448275000111 ], [ -123.854788815999882, 49.012489354000081 ], [ -123.854847930999966, 49.012488916000081 ], [ -123.855199030999984, 49.01248631300011 ], [ -123.855203207999949, 49.01273018800002 ], [ -123.855203239999966, 49.01273211700007 ], [ -123.855194561999923, 49.012732350000064 ], [ -123.852060087999959, 49.012821734000106 ], [ -123.846973990999942, 49.01300796800011 ], [ -123.846547991999927, 49.013023552000085 ], [ -123.846242690999958, 49.012929119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.81767899211308", "sL_AssetLoss": "9763", "sL_BldgLoss": "7983", "sL_StrLoss": "4490", "sL_NStrLoss": "3493", "sL_ContLoss": "1780", "geom_point": "0101000020E610000038539DE524F65EC01F20A9CF9F7F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.84589117799996, 48.998691915000094 ], [ -123.84580088499996, 48.998122889000101 ], [ -123.84544378399994, 48.998128164000015 ], [ -123.84543547899996, 48.998128412000113 ], [ -123.845193380999945, 48.994478593000103 ], [ -123.845457949999954, 48.994476653000063 ], [ -123.845462515999913, 48.994746493000044 ], [ -123.845872586999931, 48.994743487000108 ], [ -123.845876106, 48.994951387000114 ], [ -123.845900000999976, 48.996362522000027 ], [ -123.845513591999946, 48.996365355000115 ], [ -123.845489916999952, 48.996365529000045 ], [ -123.84549439599999, 48.996630135000053 ], [ -123.84549888699992, 48.99689541000005 ], [ -123.84550818699995, 48.997444886000075 ], [ -123.845633845999927, 48.997443965000123 ], [ -123.847148555999965, 48.997432853000106 ], [ -123.847162285999957, 48.998242369000145 ], [ -123.84675218699999, 48.998245380000085 ], [ -123.846761335999972, 48.998785058000109 ], [ -123.845945090999948, 48.9987910460001 ], [ -123.84589117799996, 48.998691915000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "271493035", "BldgCostT": "181860974", "sL_LossRatio": "0.802501003768142", "sL_AssetLoss": "1526747", "sL_BldgLoss": "1225216", "sL_StrLoss": "590204", "sL_NStrLoss": "635012", "sL_ContLoss": "301531", "geom_point": "0101000020E6100000F638CAC9DDF75EC0ED512C7598834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.863460043999964, 49.036506011 ], [ -123.863130738, 49.035788800000077 ], [ -123.863105564999955, 49.035706755000078 ], [ -123.862954725999927, 49.035216003000087 ], [ -123.862867482999945, 49.034735092000055 ], [ -123.86283019899993, 49.034295701000119 ], [ -123.862863402999892, 49.033809106000049 ], [ -123.863001095999948, 49.033160624000097 ], [ -123.863602916, 49.03155608700007 ], [ -123.863896804999953, 49.030772368000036 ], [ -123.863939642999952, 49.030658180000138 ], [ -123.863945303999969, 49.030630353000092 ], [ -123.864027928999974, 49.030222188000046 ], [ -123.864002048999964, 49.029744158000035 ], [ -123.863995707999919, 49.029627323000042 ], [ -123.863985712999948, 49.029443127000057 ], [ -123.863895762999917, 49.029080134000026 ], [ -123.863658901999898, 49.028583632000071 ], [ -123.863394292999942, 49.028155918000039 ], [ -123.863167613999934, 49.027886836000036 ], [ -123.863347464999947, 49.027875044000091 ], [ -123.863776848999962, 49.027846951000136 ], [ -123.863927831999931, 49.026889565000033 ], [ -123.864123249999935, 49.025783570000129 ], [ -123.86400407699989, 49.02483068900009 ], [ -123.863988348999897, 49.022019767000053 ], [ -123.86398494899997, 49.021419653000144 ], [ -123.863948229999949, 49.018818701000043 ], [ -123.864087423999962, 49.018821471000045 ], [ -123.864169171999947, 49.017035432000036 ], [ -123.869628260999917, 49.017143930000053 ], [ -123.86952908899994, 49.019316174000082 ], [ -123.872145200999981, 49.019368070000027 ], [ -123.872111766999978, 49.020101268000083 ], [ -123.874102773999979, 49.02014072000005 ], [ -123.873954786999946, 49.023388741000055 ], [ -123.879098689, 49.023490499000033 ], [ -123.87909782199992, 49.02350956300004 ], [ -123.87977706599996, 49.02352298100007 ], [ -123.879738814999925, 49.024364736000159 ], [ -123.880847925999944, 49.024386637000134 ], [ -123.880855100999938, 49.024228663 ], [ -123.883266081999963, 49.024276232 ], [ -123.883272110999926, 49.024143323000018 ], [ -123.885304148, 49.024183374000096 ], [ -123.885289064999981, 49.024849459000094 ], [ -123.885290983999937, 49.02595850200003 ], [ -123.885473010999959, 49.034375417000057 ], [ -123.883494408, 49.034336433000114 ], [ -123.883479361999946, 49.034668037000088 ], [ -123.880201274999948, 49.03460336800002 ], [ -123.878018190999953, 49.034560245000051 ], [ -123.878061455999969, 49.033609144000081 ], [ -123.877156458999977, 49.033591255000012 ], [ -123.877149359, 49.033747296000115 ], [ -123.872202267999938, 49.033649369000031 ], [ -123.872200331999963, 49.033691832000102 ], [ -123.873015631999976, 49.033707986000096 ], [ -123.872874863999968, 49.0367950320001 ], [ -123.865653094999956, 49.036440788000064 ], [ -123.865744502999988, 49.036904516000085 ], [ -123.864735097999969, 49.037868321000069 ], [ -123.864651249999895, 49.037948340000071 ], [ -123.864291475999963, 49.037598012000039 ], [ -123.864197618, 49.037490137000084 ], [ -123.863869555999955, 49.037113145000028 ], [ -123.863460043999964, 49.036506011 ] ], [ [ -123.875673460999948, 49.028464155000066 ], [ -123.875737331999986, 49.027061425000049 ], [ -123.874316845999928, 49.027033307000117 ], [ -123.87422857299994, 49.028970682000129 ], [ -123.870413491999983, 49.028895071000122 ], [ -123.870304146999928, 49.031290372000086 ], [ -123.867870266999915, 49.031242064000061 ], [ -123.867846911999976, 49.031753059000046 ], [ -123.871336097999929, 49.031822297000076 ], [ -123.871427657999945, 49.029815647000071 ], [ -123.874636465, 49.029879220000048 ], [ -123.874701806999937, 49.02844492400002 ], [ -123.875673460999948, 49.028464155000066 ] ], [ [ -123.872504671999963, 49.024795136000172 ], [ -123.872554014999935, 49.023712968000034 ], [ -123.87212328899993, 49.023704430000137 ], [ -123.872073934999932, 49.024786599000102 ], [ -123.872504671999963, 49.024795136000172 ] ], [ [ -123.866632623, 49.024269788000034 ], [ -123.866696949999948, 49.022862868000054 ], [ -123.866521266999897, 49.022859376000014 ], [ -123.866538924999958, 49.02247317800007 ], [ -123.865419077999931, 49.022450915000022 ], [ -123.865411319999978, 49.022620473000131 ], [ -123.865877530999953, 49.022629743000024 ], [ -123.8658032699999, 49.024253302000055 ], [ -123.866632623, 49.024269788000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6333334", "BldgCostT": "4158334", "sL_LossRatio": "0.691627224931151", "sL_AssetLoss": "83879", "sL_BldgLoss": "58013", "sL_StrLoss": "22420", "sL_NStrLoss": "35593", "sL_ContLoss": "25866", "geom_point": "0101000020E6100000A7A30CEA55F85EC07A4D51269C844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.877725336999916, 49.037032684000067 ], [ -123.876516737999978, 49.036973489000097 ], [ -123.876605257999969, 49.035028989000047 ], [ -123.878397833999941, 49.03506442500008 ], [ -123.878405692999948, 49.034891634000068 ], [ -123.880202434999944, 49.034927122000049 ], [ -123.883866903999973, 49.034999406000033 ], [ -123.883769966, 49.037136145000083 ], [ -123.880210046999963, 49.037050577000151 ], [ -123.87853392199996, 49.037038504000066 ], [ -123.877725336999916, 49.037032684000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "0.939747620483225", "sL_AssetLoss": "23219", "sL_BldgLoss": "21820", "sL_StrLoss": "17480", "sL_NStrLoss": "4340", "sL_ContLoss": "1399", "geom_point": "0101000020E6100000F90F6DF013F75EC02ABD3E8CF3824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.861512758999964, 49.02656140900006 ], [ -123.861514884999934, 49.026515054000107 ], [ -123.860366144999944, 49.026492164000075 ], [ -123.860344658999949, 49.026960684000109 ], [ -123.860313524999981, 49.027639547000099 ], [ -123.85893656099995, 49.027520215000024 ], [ -123.858440055999893, 49.027189866000057 ], [ -123.857159293999985, 49.026630258000132 ], [ -123.85719999899996, 49.026620393000073 ], [ -123.857086505999945, 49.026369694 ], [ -123.856807897999914, 49.026146088000104 ], [ -123.856234302999923, 49.026123393000077 ], [ -123.856108309999968, 49.025972406000086 ], [ -123.856128492, 49.025603496000059 ], [ -123.856543190999943, 49.025069399000053 ], [ -123.857125719999885, 49.024650705000056 ], [ -123.857201476999961, 49.024353094000055 ], [ -123.857146310999951, 49.02427328800006 ], [ -123.856389290999971, 49.024089607000107 ], [ -123.856376317999974, 49.024035504000011 ], [ -123.85706688, 49.023733498000112 ], [ -123.857442721999973, 49.023280602000121 ], [ -123.857370002999943, 49.022984394000098 ], [ -123.857547704999945, 49.023020012000082 ], [ -123.857702815999929, 49.023262100000053 ], [ -123.858045001999969, 49.023321899000059 ], [ -123.858984088999946, 49.023018604000136 ], [ -123.85921269899994, 49.022800696000047 ], [ -123.859607320999956, 49.022635503000068 ], [ -123.859834206999921, 49.022327805000081 ], [ -123.860283589999966, 49.022262296000072 ], [ -123.860342706999916, 49.02162289300005 ], [ -123.860226088999966, 49.02122690700002 ], [ -123.860112708999978, 49.021084501000047 ], [ -123.85989469699993, 49.021058902000057 ], [ -123.85914500199999, 49.021164311000057 ], [ -123.858255713999966, 49.021169900000118 ], [ -123.85757098299996, 49.021112993000024 ], [ -123.856870515999987, 49.020956295000083 ], [ -123.856195592999967, 49.020700001000087 ], [ -123.855511766999911, 49.020214667000033 ], [ -123.855522927999942, 49.019971814000044 ], [ -123.855539691999923, 49.01997649 ], [ -123.855757202999939, 49.019929494000074 ], [ -123.855837487999963, 49.019821212000103 ], [ -123.85579259599993, 49.019560602000105 ], [ -123.856243297, 49.019539201000036 ], [ -123.856447723999963, 49.019411104 ], [ -123.856429922999922, 49.019214500000103 ], [ -123.857458113999911, 49.019359793000092 ], [ -123.857567502999942, 49.019331298000083 ], [ -123.857606496999921, 49.019195989000067 ], [ -123.857516391999965, 49.018764499000028 ], [ -123.857273853999956, 49.01846898200008 ], [ -123.85826397299995, 49.01848874500012 ], [ -123.861052766999961, 49.018544358000021 ], [ -123.861045783999927, 49.018696695000109 ], [ -123.863776876999935, 49.018751088000087 ], [ -123.86377394099999, 49.018815232000073 ], [ -123.863948229999949, 49.018818701000043 ], [ -123.86398494899997, 49.021419653000144 ], [ -123.863988348999897, 49.022019767000053 ], [ -123.86400407699989, 49.02483068900009 ], [ -123.864123249999935, 49.025783570000129 ], [ -123.863927831999931, 49.026889565000033 ], [ -123.863776848999962, 49.027846951000136 ], [ -123.863347464999947, 49.027875044000091 ], [ -123.863167613999934, 49.027886836000036 ], [ -123.861458791999922, 49.0277387880001 ], [ -123.861512758999964, 49.02656140900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6186667", "BldgCostT": "4266667", "sL_LossRatio": "0.913907523624035", "sL_AssetLoss": "27726", "sL_BldgLoss": "25339", "sL_StrLoss": "19070", "sL_NStrLoss": "6269", "sL_ContLoss": "2387", "geom_point": "0101000020E61000008DB1B8A48FF65EC0BFF968CCFF814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.851325303999914, 49.018199104000111 ], [ -123.851254096, 49.018136397000042 ], [ -123.850762266999979, 49.018102927 ], [ -123.850542923999981, 49.01808800100013 ], [ -123.85000671, 49.017948397000104 ], [ -123.849436194999896, 49.018221805000117 ], [ -123.848546597, 49.018139207000061 ], [ -123.848246585999959, 49.018186208000067 ], [ -123.847297805, 49.017841610000097 ], [ -123.847166993999977, 49.017579372000114 ], [ -123.847141503999978, 49.017528305000091 ], [ -123.846962080999958, 49.017429999000036 ], [ -123.846863236000033, 49.017422736000128 ], [ -123.846763959999933, 49.017415442000072 ], [ -123.846786877999946, 49.016918760000095 ], [ -123.846481776999951, 49.016912639000068 ], [ -123.846487113999942, 49.016875991000092 ], [ -123.846772293999962, 49.01668511 ], [ -123.847010476999969, 49.016353562000063 ], [ -123.847239889999912, 49.016034188000049 ], [ -123.847863189999927, 49.015786412000061 ], [ -123.848033005, 49.015290787000062 ], [ -123.847891394999962, 49.014959008000055 ], [ -123.848131009, 49.014578701000119 ], [ -123.847989904999935, 49.014400711000093 ], [ -123.847827414999955, 49.014346472000099 ], [ -123.848666667999936, 49.014363299000138 ], [ -123.84865497, 49.013675221000078 ], [ -123.84865393199999, 49.013614128 ], [ -123.848462006, 49.013615540000046 ], [ -123.848243707000037, 49.013617144000065 ], [ -123.848242525999979, 49.013547657000053 ], [ -123.848239121999939, 49.013347307000025 ], [ -123.84760969499996, 49.013351932 ], [ -123.847418676999922, 49.013353335000026 ], [ -123.847417642999986, 49.013292532000072 ], [ -123.847414095999937, 49.013083497000139 ], [ -123.847129335999952, 49.01308558800006 ], [ -123.847128465999987, 49.013104442000042 ], [ -123.847365750000023, 49.013109202000088 ], [ -123.847358142999937, 49.013274130000141 ], [ -123.847333212999914, 49.013814602000124 ], [ -123.847135165999987, 49.013724282000062 ], [ -123.846510293999984, 49.013439301000147 ], [ -123.846319395999984, 49.013423702000125 ], [ -123.846026783999946, 49.013463508000022 ], [ -123.846009535999926, 49.013373727000051 ], [ -123.846021060999988, 49.013232510000108 ], [ -123.846102393999956, 49.013128673000075 ], [ -123.84623672, 49.013049091000063 ], [ -123.846413177999935, 49.013018894000048 ], [ -123.846547991999927, 49.013023552000085 ], [ -123.846973990999942, 49.01300796800011 ], [ -123.852060087999959, 49.012821734000106 ], [ -123.855194561999923, 49.012732350000064 ], [ -123.855203239999966, 49.01273211700007 ], [ -123.855203653999979, 49.012756152000051 ], [ -123.855613869999928, 49.012753111000087 ], [ -123.855623118999944, 49.013292786000065 ], [ -123.856033341999947, 49.013289744000076 ], [ -123.856037967, 49.013559581000059 ], [ -123.856448191999945, 49.013556537000063 ], [ -123.856457448999919, 49.014096212000027 ], [ -123.856867677999972, 49.01409316600013 ], [ -123.856872309999986, 49.014363003000057 ], [ -123.857282539999915, 49.014359957000067 ], [ -123.857291806999925, 49.014899632000045 ], [ -123.857702041999971, 49.014896583000031 ], [ -123.85771131499996, 49.015436258000129 ], [ -123.858121551999929, 49.015433208000019 ], [ -123.858126190999911, 49.015703045000066 ], [ -123.858536432, 49.015699993000105 ], [ -123.858545713999945, 49.016239668000082 ], [ -123.858955959999918, 49.016236615000075 ], [ -123.85897453299999, 49.017315964000026 ], [ -123.857743769999928, 49.017325120000052 ], [ -123.857748406999988, 49.017594958000075 ], [ -123.857473468999899, 49.017597001000098 ], [ -123.857088275999928, 49.017599863000079 ], [ -123.857060312999948, 49.018208793000042 ], [ -123.856929575999956, 49.018049495000135 ], [ -123.856667319999971, 49.017889998000093 ], [ -123.856309110999973, 49.017820203000056 ], [ -123.855824900999934, 49.01746419200002 ], [ -123.855374705999949, 49.017477002000113 ], [ -123.854668596999957, 49.017367836000069 ], [ -123.854591289999945, 49.017355896 ], [ -123.854526710999963, 49.017482686000086 ], [ -123.854720883999946, 49.017697696000027 ], [ -123.854752611000023, 49.017958402000019 ], [ -123.85451038799999, 49.018130697000132 ], [ -123.853788001999988, 49.018334402000029 ], [ -123.852116805999955, 49.018220400000068 ], [ -123.852081285999972, 49.018481002000037 ], [ -123.85197190299999, 49.018536584000032 ], [ -123.851924901999951, 49.018194787000063 ], [ -123.851597087999949, 49.018206202000094 ], [ -123.851272998999903, 49.019170414000044 ], [ -123.851195204999954, 49.018632002000103 ], [ -123.851325303999914, 49.018199104000111 ] ], [ [ -123.850718778999948, 49.014404416000097 ], [ -123.850717222999975, 49.014313012000038 ], [ -123.850714250999943, 49.014138700000068 ], [ -123.850166623999939, 49.014142736000103 ], [ -123.849893792999922, 49.014144746000049 ], [ -123.849897933999941, 49.01438797400008 ], [ -123.850718778999948, 49.014404416000097 ] ], [ [ -123.85101901199999, 49.014406325000088 ], [ -123.850869229999915, 49.014407429000059 ], [ -123.85103320099995, 49.014410712000036 ], [ -123.851129202, 49.014412634000088 ], [ -123.851129079999978, 49.014405512000081 ], [ -123.85101901199999, 49.014406325000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12213751", "BldgCostT": "7950001", "sL_LossRatio": "0.700212922830978", "sL_AssetLoss": "145123", "sL_BldgLoss": "101617", "sL_StrLoss": "51480", "sL_NStrLoss": "50137", "sL_ContLoss": "43506", "geom_point": "0101000020E6100000774AEE4D9FF25EC00ACE431AD37F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.787460902999953, 48.995554293000033 ], [ -123.788138269999934, 48.994505172000046 ], [ -123.788413908999956, 48.995059889000096 ], [ -123.789230292999946, 48.995764900000097 ], [ -123.790110701999978, 48.996055397000049 ], [ -123.790889893999946, 48.996949912000069 ], [ -123.79191139299995, 48.997545204000104 ], [ -123.793393315999978, 48.997939703000078 ], [ -123.793642607999956, 48.998117683000089 ], [ -123.794315595999961, 48.998221694000101 ], [ -123.795184512999981, 48.998710194000054 ], [ -123.795508866999981, 48.998822712000027 ], [ -123.795741419999942, 48.999644771000057 ], [ -123.795743331, 48.999658383000096 ], [ -123.795763572999974, 48.999803264999983 ], [ -123.795854279999958, 49.000582635000036 ], [ -123.793515117999945, 49.000665966000064 ], [ -123.788168626999934, 49.000856293000069 ], [ -123.788152138, 48.999923806000076 ], [ -123.787460902999953, 48.995554293000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13070834", "BldgCostT": "8308334", "sL_LossRatio": "0.635095598614141", "sL_AssetLoss": "155860", "sL_BldgLoss": "98986", "sL_StrLoss": "31716", "sL_NStrLoss": "67270", "sL_ContLoss": "56874", "geom_point": "0101000020E610000012DFEC83AAF55EC08737EF2863814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.841863806999967, 49.013527586000073 ], [ -123.840360516999937, 49.012809795000059 ], [ -123.840181201999911, 49.012792784000048 ], [ -123.840101703999977, 49.012910988000016 ], [ -123.839896799999934, 49.012966501000058 ], [ -123.839814311999959, 49.012912390000039 ], [ -123.839850391999903, 49.01264320600005 ], [ -123.839727591999946, 49.012599100000067 ], [ -123.839553908999903, 49.012896702000049 ], [ -123.839225578999944, 49.012889598000115 ], [ -123.838793007999982, 49.012264404000113 ], [ -123.838365279999962, 49.012113400000082 ], [ -123.838115795999954, 49.011935409000102 ], [ -123.836908799999946, 49.01086439300007 ], [ -123.836314615999939, 49.010553899000044 ], [ -123.835503296999931, 49.010281901000027 ], [ -123.83521251599997, 49.0100768020001 ], [ -123.834404700999968, 49.00993009900008 ], [ -123.833164301999929, 49.009390304000121 ], [ -123.8326552139999, 49.009027373000031 ], [ -123.831102618999978, 49.007920505000072 ], [ -123.8304916969999, 49.007358014 ], [ -123.83048579199999, 49.007051797000081 ], [ -123.830402856999925, 49.006952202000051 ], [ -123.833594693999984, 49.00616660900004 ], [ -123.83441569699994, 49.006700789000057 ], [ -123.834478807999943, 49.006979910000098 ], [ -123.834767117999931, 49.007595491000124 ], [ -123.835187022999975, 49.008112007000108 ], [ -123.835615601999962, 49.008529608000067 ], [ -123.836068498999978, 49.008855974 ], [ -123.836133626999924, 49.008902874000086 ], [ -123.836236608999954, 49.008977102000088 ], [ -123.836239403999954, 49.008979111000066 ], [ -123.837571597999926, 49.009664464000075 ], [ -123.839605203999909, 49.010710595000084 ], [ -123.841008112999987, 49.011296396000027 ], [ -123.841799301999941, 49.011554598000075 ], [ -123.843859696, 49.012192005000031 ], [ -123.843861691999962, 49.012192632000058 ], [ -123.843945853999926, 49.012218662000066 ], [ -123.843985405999931, 49.012230891000065 ], [ -123.846242690999958, 49.012929119 ], [ -123.846547991999927, 49.013023552000085 ], [ -123.846413177999935, 49.013018894000048 ], [ -123.84623672, 49.013049091000063 ], [ -123.846102393999956, 49.013128673000075 ], [ -123.846021060999988, 49.013232510000108 ], [ -123.846009535999926, 49.013373727000051 ], [ -123.846026783999946, 49.013463508000022 ], [ -123.845691616999915, 49.013509103000139 ], [ -123.845570493999958, 49.013608799000089 ], [ -123.845614686999923, 49.013769798000141 ], [ -123.8460736, 49.014216999000062 ], [ -123.846144411999916, 49.014396399000077 ], [ -123.846066300999908, 49.014558799000056 ], [ -123.845047308999966, 49.014961795 ], [ -123.84498052, 49.015142703000031 ], [ -123.844439894999979, 49.015478806000019 ], [ -123.844208989999956, 49.015561412000068 ], [ -123.843948497999975, 49.015545701000057 ], [ -123.843713602999941, 49.015430395000038 ], [ -123.843520380999976, 49.015279404000083 ], [ -123.843135779999955, 49.014390695000024 ], [ -123.842238417, 49.013885094000095 ], [ -123.84206497299999, 49.013719563000095 ], [ -123.841863806999967, 49.013527586000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.836501901140684", "sL_AssetLoss": "3419", "sL_BldgLoss": "2860", "sL_StrLoss": "1650", "sL_NStrLoss": "1210", "sL_ContLoss": "559", "geom_point": "0101000020E6100000E77BFC9459F55EC0833C92FD39844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.833121048999942, 49.032618323000101 ], [ -123.83420146399996, 49.032610519000066 ], [ -123.834215000999947, 49.033420033000013 ], [ -123.833884423999976, 49.033422423000076 ], [ -123.832983831999968, 49.033428927000045 ], [ -123.832970316999976, 49.032619412000059 ], [ -123.833121048999942, 49.032618323000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "335087583", "BldgCostT": "229743333", "sL_LossRatio": "0.822638086064405", "sL_AssetLoss": "2194682", "sL_BldgLoss": "1805429", "sL_StrLoss": "870694", "sL_NStrLoss": "934735", "sL_ContLoss": "389253", "geom_point": "0101000020E6100000762287A9E9F55EC0C1836E4886834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.847273894999958, 49.041367317000095 ], [ -123.847389794999955, 49.038856177000149 ], [ -123.846338848999949, 49.038835104000057 ], [ -123.846418224999965, 49.037115967000055 ], [ -123.845986138999976, 49.037107300000045 ], [ -123.846041557999968, 49.035907221000102 ], [ -123.845576596999976, 49.035897892000037 ], [ -123.845579386999972, 49.035837485000101 ], [ -123.845617055999952, 49.035021890000053 ], [ -123.845573849999937, 49.035021023000063 ], [ -123.844978627999978, 49.035009078000037 ], [ -123.845118278999976, 49.031986073000013 ], [ -123.842671027999955, 49.031936926000121 ], [ -123.842698205999937, 49.031349206000094 ], [ -123.842833220999935, 49.02842942100007 ], [ -123.842639837999982, 49.028425536000093 ], [ -123.842657944999971, 49.028033930000056 ], [ -123.842175043999973, 49.028024224000077 ], [ -123.842192686999937, 49.027642766000035 ], [ -123.841856954999983, 49.027636017000098 ], [ -123.841874860999951, 49.027248971000049 ], [ -123.841349359999938, 49.027238405000055 ], [ -123.84146814599994, 49.024670956000129 ], [ -123.840141971999955, 49.024644281000107 ], [ -123.840173457999981, 49.023964114000115 ], [ -123.839321082999959, 49.023946960000103 ], [ -123.839364637999921, 49.023006420000101 ], [ -123.837238864999961, 49.022963609 ], [ -123.83725305599998, 49.022657452000033 ], [ -123.83669946399999, 49.022646296000111 ], [ -123.836712262999953, 49.022370265000056 ], [ -123.83630646599994, 49.022362086000093 ], [ -123.836327671999939, 49.021904764000034 ], [ -123.835653369999946, 49.02189117000011 ], [ -123.835670413999964, 49.021523736000098 ], [ -123.834882762999953, 49.021507851000145 ], [ -123.834914345999948, 49.020827224000094 ], [ -123.833978979, 49.020808354000096 ], [ -123.833846165999915, 49.02366929300009 ], [ -123.828386397, 49.023558976000047 ], [ -123.82845166599999, 49.022156594000059 ], [ -123.825987694999966, 49.02210671700005 ], [ -123.826035009999941, 49.021091211000076 ], [ -123.825007421999928, 49.021070394000077 ], [ -123.825031779999975, 49.020547842000042 ], [ -123.823517998999989, 49.020517156000039 ], [ -123.823583664999916, 49.019109320000084 ], [ -123.822134433999935, 49.019079923000106 ], [ -123.822177066, 49.018166470000025 ], [ -123.821030448999963, 49.018143198000118 ], [ -123.821100778999963, 49.016636992 ], [ -123.817380907999919, 49.016561406000108 ], [ -123.817394074999982, 49.016279906000122 ], [ -123.817543201999911, 49.016282646000086 ], [ -123.817733037999972, 49.012198746000117 ], [ -123.817954398000012, 49.011458402000081 ], [ -123.818434810999975, 49.011807206000064 ], [ -123.819164888000017, 49.012026510000084 ], [ -123.819876406999967, 49.012093485000065 ], [ -123.820385100999943, 49.012242989000093 ], [ -123.820777594999925, 49.012050697000078 ], [ -123.820804193999976, 49.011196207000118 ], [ -123.821419887999923, 49.011120706000042 ], [ -123.822053113999942, 49.011377103000058 ], [ -123.82391447599997, 49.012388294000061 ], [ -123.82491593599994, 49.012836472000153 ], [ -123.82577607899999, 49.013221391000073 ], [ -123.828397695999968, 49.014731091000115 ], [ -123.82900329, 49.014951909000033 ], [ -123.83154229299997, 49.016210903000072 ], [ -123.83240720399999, 49.016511388000048 ], [ -123.833552406999971, 49.017078189000038 ], [ -123.834295692999959, 49.017351600000012 ], [ -123.834676012, 49.017142299000028 ], [ -123.834908715000012, 49.017203501000068 ], [ -123.835903780999928, 49.017844395000068 ], [ -123.836265507999926, 49.018201894000114 ], [ -123.836734807999932, 49.018387010000083 ], [ -123.836892805999966, 49.018898302000103 ], [ -123.838039996999967, 49.019608987000062 ], [ -123.838498995999956, 49.020083289000127 ], [ -123.838966613999915, 49.020259896000034 ], [ -123.839859409, 49.020379492000139 ], [ -123.840243989999962, 49.020537595000086 ], [ -123.84164059699999, 49.021365101000058 ], [ -123.841958901999931, 49.021695504000057 ], [ -123.843190607999972, 49.022550009000014 ], [ -123.843651006999934, 49.023014288000127 ], [ -123.843561608999948, 49.023374608 ], [ -123.84378890499994, 49.02394860600004 ], [ -123.844860193999935, 49.024210602 ], [ -123.84493371799999, 49.024408592 ], [ -123.844843488999942, 49.024785991000059 ], [ -123.845136297999915, 49.025053787000026 ], [ -123.845369519999949, 49.025106501000032 ], [ -123.845981694999963, 49.025002498000092 ], [ -123.84658170699997, 49.024800288000023 ], [ -123.846727102000017, 49.024583794000108 ], [ -123.847123476999982, 49.024562398000121 ], [ -123.847576492999934, 49.02467639500005 ], [ -123.84707999499993, 49.025139214000021 ], [ -123.847274184999961, 49.025300196000103 ], [ -123.848204696999986, 49.025310092000055 ], [ -123.848249710999951, 49.025293671000085 ], [ -123.84821914199992, 49.02595648600002 ], [ -123.85082303899999, 49.026008649000104 ], [ -123.850981207999922, 49.02611769900011 ], [ -123.851183086999981, 49.02671010000013 ], [ -123.851555418999965, 49.026995 ], [ -123.851794914, 49.027353898000051 ], [ -123.851746117999937, 49.027731296000084 ], [ -123.851120895999941, 49.028698305000091 ], [ -123.851327694999966, 49.028786612000054 ], [ -123.85155821099994, 49.028739600000044 ], [ -123.852003992, 49.028386411000014 ], [ -123.852289301000013, 49.028276794000092 ], [ -123.85235429, 49.028060304000121 ], [ -123.852676207999934, 49.027707099000104 ], [ -123.852752512999956, 49.027373793000088 ], [ -123.852928581999961, 49.027245593000082 ], [ -123.85364980099996, 49.026970786000078 ], [ -123.854534692999962, 49.026829810000024 ], [ -123.854347587999982, 49.026245807000109 ], [ -123.85442610699999, 49.02607488600006 ], [ -123.854971800999962, 49.025926808000065 ], [ -123.855136007999974, 49.025943886000036 ], [ -123.855329786999917, 49.026086303000021 ], [ -123.85556160099999, 49.026029394000055 ], [ -123.85560738, 49.026326993000097 ], [ -123.855759912999957, 49.026469405000043 ], [ -123.856817884999941, 49.026713001000118 ], [ -123.857159293999985, 49.026630258000132 ], [ -123.858440055999893, 49.027189866000057 ], [ -123.85893656099995, 49.027520215000024 ], [ -123.860313524999981, 49.027639547000099 ], [ -123.860252917000011, 49.028961026000069 ], [ -123.854947627999962, 49.028855153000094 ], [ -123.854880578999925, 49.030313355000025 ], [ -123.854215763999932, 49.030300070000045 ], [ -123.85417669899999, 49.031149370000044 ], [ -123.852388680000033, 49.031113618000084 ], [ -123.852383133000018, 49.031234114000092 ], [ -123.852171316999915, 49.031229876000054 ], [ -123.852159194999899, 49.031493161000093 ], [ -123.852447068999979, 49.031498919000036 ], [ -123.852410155999962, 49.032300767000073 ], [ -123.852587711999917, 49.032304318000079 ], [ -123.852540140999963, 49.033337698000068 ], [ -123.85284096499997, 49.033343714000104 ], [ -123.852814255999988, 49.033923985000101 ], [ -123.853015593999899, 49.0339280110001 ], [ -123.852991117999949, 49.034459824000081 ], [ -123.853215318999958, 49.0344643070001 ], [ -123.853189303999926, 49.035029556000062 ], [ -123.853316848999924, 49.035032106000081 ], [ -123.853282052999958, 49.035788206000092 ], [ -123.853280489999946, 49.035822152000101 ], [ -123.853433193999933, 49.035825206000034 ], [ -123.853417910999923, 49.036157296000063 ], [ -123.853552511999951, 49.036159987000048 ], [ -123.85354599299994, 49.035779079000044 ], [ -123.853540149999958, 49.035437676000079 ], [ -123.856493647999955, 49.035415795000091 ], [ -123.856564118999984, 49.03388219300011 ], [ -123.859150081999971, 49.033933786000034 ], [ -123.859260545000012, 49.031526751000065 ], [ -123.859873242999967, 49.031538967000124 ], [ -123.859880628999974, 49.031377966000044 ], [ -123.861360002999945, 49.031407446000053 ], [ -123.861378791999925, 49.030997603000046 ], [ -123.861542919, 49.031000872000071 ], [ -123.861599050999956, 49.029776305000034 ], [ -123.861978872999941, 49.029783869000028 ], [ -123.861996055999953, 49.029408914000079 ], [ -123.86220917699994, 49.029413157000057 ], [ -123.862225734, 49.029051871000036 ], [ -123.862043524999976, 49.029048242000052 ], [ -123.862066669999976, 49.028543180000028 ], [ -123.861647541999957, 49.028534833000109 ], [ -123.861663989999954, 49.028176011000077 ], [ -123.861438955999972, 49.02817152900009 ], [ -123.861458791999922, 49.0277387880001 ], [ -123.863167613999934, 49.027886836000036 ], [ -123.863394292999942, 49.028155918000039 ], [ -123.863658901999898, 49.028583632000071 ], [ -123.863895762999917, 49.029080134000026 ], [ -123.863985712999948, 49.029443127000057 ], [ -123.863995707999919, 49.029627323000042 ], [ -123.864002048999964, 49.029744158000035 ], [ -123.864027928999974, 49.030222188000046 ], [ -123.863945303999969, 49.030630353000092 ], [ -123.863939642999952, 49.030658180000138 ], [ -123.863896804999953, 49.030772368000036 ], [ -123.863602916, 49.03155608700007 ], [ -123.863001095999948, 49.033160624000097 ], [ -123.862863402999892, 49.033809106000049 ], [ -123.86283019899993, 49.034295701000119 ], [ -123.862867482999945, 49.034735092000055 ], [ -123.861942587999962, 49.034788804000108 ], [ -123.862329608999943, 49.034841499 ], [ -123.862524212999958, 49.034919200000147 ], [ -123.862677827, 49.035026804000019 ], [ -123.862721359999938, 49.035100035000013 ], [ -123.86245236, 49.035771681000057 ], [ -123.86215486799999, 49.035702694000058 ], [ -123.862047951999898, 49.035701312000079 ], [ -123.860980283999965, 49.035687413000048 ], [ -123.8607389, 49.035647513000157 ], [ -123.860569084999952, 49.035536 ], [ -123.859186107999946, 49.036489296000042 ], [ -123.858658607, 49.036915104000073 ], [ -123.85829199299999, 49.037211007000053 ], [ -123.85753239899999, 49.037919997000088 ], [ -123.856948394999932, 49.038710223000066 ], [ -123.856570708, 49.039221297000054 ], [ -123.856014558999959, 49.039804478000036 ], [ -123.855999184999945, 49.039820594000076 ], [ -123.855617799999962, 49.040178592000103 ], [ -123.8555283099999, 49.040249168000074 ], [ -123.855227793999944, 49.040486095000063 ], [ -123.854932780999931, 49.040661203000063 ], [ -123.854066987999957, 49.041178619000043 ], [ -123.85324215, 49.04167153300012 ], [ -123.853197222999981, 49.041698395 ], [ -123.851237315999953, 49.042765299000052 ], [ -123.850836960999914, 49.042987066000116 ], [ -123.850603319999934, 49.043116498000124 ], [ -123.849801990999978, 49.043511211000038 ], [ -123.848876961999977, 49.043898258000105 ], [ -123.848865406999934, 49.043903109000084 ], [ -123.847841115999955, 49.04424201100003 ], [ -123.847744615999943, 49.04426167900003 ], [ -123.847028387999941, 49.044407702000072 ], [ -123.846548097, 49.044447608000048 ], [ -123.845931219999912, 49.044457710000053 ], [ -123.845606093999962, 49.044453424 ], [ -123.844794052999958, 49.044442722000092 ], [ -123.844058325999981, 49.044433019000039 ], [ -123.844202887999984, 49.041305709000078 ], [ -123.847273894999958, 49.041367317000095 ] ], [ [ -123.833166919999982, 49.020052589000031 ], [ -123.833182204999929, 49.019723402000139 ], [ -123.832825595999978, 49.019716202000033 ], [ -123.832841568999982, 49.019372287000074 ], [ -123.832816926999982, 49.019371789000061 ], [ -123.832810989999956, 49.019499631000095 ], [ -123.832630434999928, 49.019495985000091 ], [ -123.832605109, 49.020041245000122 ], [ -123.833166919999982, 49.020052589000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130830919", "BldgCostT": "88337625", "sL_LossRatio": "0.843243300769234", "sL_AssetLoss": "488615.8", "sL_BldgLoss": "412022", "sL_StrLoss": "214695", "sL_NStrLoss": "197327", "sL_ContLoss": "76593.8", "geom_point": "0101000020E6100000AF7C3B2E4FF45EC0D187CB7DB4844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.827759806999921, 49.047996314000059 ], [ -123.827739111000014, 49.046885308000078 ], [ -123.826368511999988, 49.046875593000074 ], [ -123.826201921999896, 49.046813707000105 ], [ -123.82608810899994, 49.046732995000049 ], [ -123.826005085999924, 49.046607001000055 ], [ -123.82593460899993, 49.045422993000074 ], [ -123.825801101999929, 49.045266213000097 ], [ -123.825165487000021, 49.04500300300009 ], [ -123.823710444999932, 49.044623159000025 ], [ -123.823193914999976, 49.044488300000083 ], [ -123.823013214999918, 49.044399584000097 ], [ -123.822728889999937, 49.044259988000064 ], [ -123.822285688999912, 49.043944808000056 ], [ -123.822024830999922, 49.043696729000033 ], [ -123.821308097999946, 49.043015179000051 ], [ -123.820939809999956, 49.042619589000019 ], [ -123.820782187999939, 49.042393892000092 ], [ -123.820587885999927, 49.041581098000059 ], [ -123.820388513999944, 49.041402292000079 ], [ -123.819670797999919, 49.041113004000081 ], [ -123.818611796999946, 49.040289909000123 ], [ -123.818553385999934, 49.040260404000058 ], [ -123.817040304999963, 49.039495910000014 ], [ -123.816123889, 49.0391332 ], [ -123.814933413999952, 49.038960304000042 ], [ -123.814612482999948, 49.03886550100006 ], [ -123.814350592999944, 49.038709801000032 ], [ -123.814231122999928, 49.038590709000083 ], [ -123.814196508999927, 49.038556215000121 ], [ -123.814072881999948, 49.038340503000093 ], [ -123.814048677999949, 49.03829829299999 ], [ -123.81396390899999, 49.037979488000055 ], [ -123.813879391999961, 49.037449990000027 ], [ -123.81374759299996, 49.036996902000041 ], [ -123.813717800999953, 49.036086594000075 ], [ -123.813982668000023, 49.034650171000123 ], [ -123.813989009999901, 49.034615810000091 ], [ -123.813528368999982, 49.034631743000084 ], [ -123.812349200999947, 49.034672509000167 ], [ -123.811627602, 49.034683202000096 ], [ -123.811592680999951, 49.034683718000046 ], [ -123.811626098999952, 49.033971385000093 ], [ -123.811776387999913, 49.033974448000109 ], [ -123.811796462999951, 49.033546517000104 ], [ -123.810342523999978, 49.033516875000061 ], [ -123.810480672999944, 49.030573616000012 ], [ -123.809611013999984, 49.030555876000044 ], [ -123.809540774999959, 49.032051767000034 ], [ -123.808618858999921, 49.032032954000037 ], [ -123.808532337999949, 49.033874687000079 ], [ -123.804748541999984, 49.033797388000082 ], [ -123.804702042000017, 49.034785469000049 ], [ -123.80294346099997, 49.034811366000014 ], [ -123.801004043999953, 49.035067676000054 ], [ -123.8010948579999, 49.032963273000071 ], [ -123.803107163999968, 49.033004469000041 ], [ -123.803178932999941, 49.031480523 ], [ -123.80279096299995, 49.031472583000031 ], [ -123.802960488999986, 49.027873054000047 ], [ -123.804358144999981, 49.027901650000047 ], [ -123.804427713999985, 49.026423385000044 ], [ -123.809887760999914, 49.026534920000088 ], [ -123.80986789499994, 49.026958124000068 ], [ -123.810700157000014, 49.026975100000122 ], [ -123.810562031999964, 49.029918377000058 ], [ -123.81161550399996, 49.029939856000077 ], [ -123.81597194499993, 49.030028571000052 ], [ -123.81593266099992, 49.030867651000079 ], [ -123.817529838999945, 49.03090013200007 ], [ -123.817361424999916, 49.034499667000027 ], [ -123.817346886999928, 49.034499371000031 ], [ -123.817294385999944, 49.035621366000044 ], [ -123.817165592999956, 49.035618748000068 ], [ -123.817128822999976, 49.036404468000107 ], [ -123.816978526999932, 49.0364014130001 ], [ -123.816918586999947, 49.037682069 ], [ -123.815619638999962, 49.037655652000048 ], [ -123.815611783999941, 49.037823364000111 ], [ -123.817234268999982, 49.03785635900006 ], [ -123.81719598699999, 49.038674370000123 ], [ -123.818266880999929, 49.038696134000041 ], [ -123.818258102999934, 49.038883796000064 ], [ -123.822269746999936, 49.038965230000066 ], [ -123.822248840999947, 49.039412982000059 ], [ -123.822493360999971, 49.039417940000071 ], [ -123.822495860999965, 49.039364369000033 ], [ -123.827957465999987, 49.039474983000019 ], [ -123.827906397999982, 49.040571553000149 ], [ -123.829493576999965, 49.040603645000068 ], [ -123.829488915999889, 49.04070378100004 ], [ -123.829326051999971, 49.044203145000083 ], [ -123.827381233999958, 49.044163817000047 ], [ -123.827291856999977, 49.046082243000086 ], [ -123.829089793999927, 49.046085018000056 ], [ -123.829086236999927, 49.045871042000101 ], [ -123.83031771399996, 49.0458621880001 ], [ -123.830321454999975, 49.046086900000049 ], [ -123.830559938999926, 49.046087262000107 ], [ -123.834014826999919, 49.045996300000098 ], [ -123.83401213799999, 49.045835547000138 ], [ -123.83437128099996, 49.045832952000048 ], [ -123.834403437999967, 49.045256663000039 ], [ -123.834520137999931, 49.045229263000039 ], [ -123.83655585799994, 49.04527739800011 ], [ -123.838273977999933, 49.045264929000027 ], [ -123.838301232999981, 49.044676973000094 ], [ -123.841246836, 49.044736224000125 ], [ -123.840790713, 49.045200841000096 ], [ -123.840759866999974, 49.045232281000068 ], [ -123.840093132999982, 49.045911424000067 ], [ -123.839337751999921, 49.046680826000106 ], [ -123.839308401999972, 49.046710699000101 ], [ -123.838743100999963, 49.047260003000105 ], [ -123.838326046999953, 49.047665266000074 ], [ -123.837984827999961, 49.047996822000094 ], [ -123.836403382999904, 49.046394593000059 ], [ -123.836066699999961, 49.046804755000089 ], [ -123.836060091999911, 49.046812802000062 ], [ -123.835883394999939, 49.046937083000067 ], [ -123.83546689399995, 49.04716469800006 ], [ -123.834881392999961, 49.046939502000122 ], [ -123.834538892999973, 49.046896500000045 ], [ -123.833703508999989, 49.04687160400006 ], [ -123.833072692999963, 49.046885913000082 ], [ -123.833032053999929, 49.046891565000053 ], [ -123.832790705999955, 49.046925193000042 ], [ -123.832510000999946, 49.047023091000057 ], [ -123.831425503999981, 49.047622701000108 ], [ -123.831073182999958, 49.04772265800004 ], [ -123.830471088999971, 49.047893493000096 ], [ -123.829922016999973, 49.04800130400006 ], [ -123.829624793999926, 49.048014203 ], [ -123.827759806999921, 49.047996314000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204532493", "BldgCostT": "137949075", "sL_LossRatio": "0.759321802354263", "sL_AssetLoss": "3294025", "sL_BldgLoss": "2501225", "sL_StrLoss": "1116555", "sL_NStrLoss": "1384670", "sL_ContLoss": "792800", "geom_point": "0101000020E6100000B400962A0BF45EC0D11C729606864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.809070048999956, 49.057294853000045 ], [ -123.808554422999975, 49.0567168950001 ], [ -123.808121040999978, 49.05628635500009 ], [ -123.80897286, 49.056303732000131 ], [ -123.809078261999971, 49.05406078000005 ], [ -123.81218704399997, 49.054124144000056 ], [ -123.81222307699997, 49.053356218000033 ], [ -123.811262359999915, 49.053336646000041 ], [ -123.811333647999987, 49.051817986000046 ], [ -123.809395350999964, 49.051778472000116 ], [ -123.809350341999959, 49.052736513000049 ], [ -123.80855851699998, 49.052720361000169 ], [ -123.808496979999973, 49.05402962900007 ], [ -123.806477155999971, 49.053988402000058 ], [ -123.806459617999948, 49.054361179000075 ], [ -123.80617746199998, 49.054355417000096 ], [ -123.8061014849999, 49.054279931000082 ], [ -123.80572246499996, 49.05399656500002 ], [ -123.805081913999942, 49.053779904000073 ], [ -123.804917747999966, 49.053665776000045 ], [ -123.804792471999988, 49.053481271000059 ], [ -123.804728286999975, 49.053247576000025 ], [ -123.804731507, 49.053041119000092 ], [ -123.804746682999962, 49.052069361000079 ], [ -123.804748669999952, 49.05194376200005 ], [ -123.804918542999957, 49.051296920000013 ], [ -123.804919039999945, 49.051267455000087 ], [ -123.80492157299993, 49.05111682900008 ], [ -123.804850627999912, 49.050938842000043 ], [ -123.804625162999969, 49.050646885000099 ], [ -123.804294569999911, 49.050119510000101 ], [ -123.80429074599999, 49.050039865 ], [ -123.804266922999929, 49.049545188000138 ], [ -123.802887501, 49.04937469300009 ], [ -123.802106903999913, 49.049257803000081 ], [ -123.801038580999958, 49.049012602000097 ], [ -123.800963125999942, 49.048988736000091 ], [ -123.800328741999977, 49.048788121 ], [ -123.79999224099997, 49.04868172300008 ], [ -123.798894296999904, 49.0483345150001 ], [ -123.798200510999962, 49.048091515000095 ], [ -123.794294900999944, 49.046562108000046 ], [ -123.79144259199991, 49.045832499000106 ], [ -123.790887202999926, 49.045667904000048 ], [ -123.790760496999951, 49.045618411000085 ], [ -123.789628380999929, 49.0451763 ], [ -123.788329167999976, 49.044542568000097 ], [ -123.788074603999988, 49.044418408000055 ], [ -123.78765809799998, 49.044123313000064 ], [ -123.787747799999963, 49.0439036080001 ], [ -123.787860404999947, 49.041528913000079 ], [ -123.787756715999976, 49.041266392000075 ], [ -123.787591798999969, 49.041082907000053 ], [ -123.786915097999966, 49.04056810600013 ], [ -123.786799005999981, 49.040422493000044 ], [ -123.786687245999971, 49.040075134000098 ], [ -123.786682296, 49.040059804000094 ], [ -123.786716797999944, 49.038033888000044 ], [ -123.786733602999959, 49.037047884000089 ], [ -123.782847078999964, 49.037015407000084 ], [ -123.781132290999921, 49.037007896000055 ], [ -123.779504181999926, 49.036504463000085 ], [ -123.779542878999933, 49.03569160000005 ], [ -123.780400315999898, 49.03570932800006 ], [ -123.78040469099993, 49.035617385000066 ], [ -123.788272045999946, 49.035679825000102 ], [ -123.78820534099999, 49.037086561000102 ], [ -123.78821328399999, 49.037086725000094 ], [ -123.788278127999973, 49.035719215000022 ], [ -123.793542299999956, 49.035827523000101 ], [ -123.793547320999934, 49.035721371000108 ], [ -123.801069988999984, 49.035780167000063 ], [ -123.801004043999953, 49.035067676000054 ], [ -123.80294346099997, 49.034811366000014 ], [ -123.804702042000017, 49.034785469000049 ], [ -123.804614838999953, 49.036638275000044 ], [ -123.803959192999969, 49.036624867000043 ], [ -123.803885897999976, 49.038181589000033 ], [ -123.80268295099998, 49.038156978000075 ], [ -123.802673820999985, 49.038350796000095 ], [ -123.80465357099996, 49.038391290000071 ], [ -123.804529103999968, 49.041035544000046 ], [ -123.805251641999988, 49.041050314000103 ], [ -123.80564729299999, 49.041304002000039 ], [ -123.806155985999965, 49.041462090000039 ], [ -123.806731589999956, 49.041488467000036 ], [ -123.806581473999941, 49.04468040299999 ], [ -123.803249254999955, 49.044612293000043 ], [ -123.803207977999975, 49.045488559000034 ], [ -123.808016979999962, 49.045586821000043 ], [ -123.807899468999977, 49.048086741000084 ], [ -123.807982232999919, 49.048088430000114 ], [ -123.807934457999977, 49.049104755000116 ], [ -123.808652090999942, 49.049119399000048 ], [ -123.808697110999958, 49.048161354000086 ], [ -123.80917742599992, 49.048171153000112 ], [ -123.809210028999956, 49.047477165000032 ], [ -123.811988444999912, 49.047533804000096 ], [ -123.812023956999937, 49.046776932000036 ], [ -123.812804671999942, 49.046792834000016 ], [ -123.81282685199993, 49.046319951000072 ], [ -123.818289248, 49.046431055000085 ], [ -123.818235566999931, 49.04757843800013 ], [ -123.821439501999947, 49.047643476000076 ], [ -123.821428515999941, 49.047878643000061 ], [ -123.82459830199997, 49.047942893 ], [ -123.824580141999931, 49.048332160000029 ], [ -123.825842517999973, 49.048323133000075 ], [ -123.825832734999949, 49.047732440000125 ], [ -123.821751095999971, 49.047649735000071 ], [ -123.821774728999983, 49.047143800000079 ], [ -123.818712916999942, 49.047081658000138 ], [ -123.818881270999938, 49.043482191000081 ], [ -123.820349642999957, 49.043512004000085 ], [ -123.820371040999973, 49.043054158000061 ], [ -123.818918869999948, 49.043024675000041 ], [ -123.818922437999902, 49.042948377000059 ], [ -123.817409320999914, 49.042917635000023 ], [ -123.817430274999936, 49.042469887000038 ], [ -123.816639718999951, 49.042453816000048 ], [ -123.816648503999915, 49.042266156000117 ], [ -123.814623980999954, 49.042224974000085 ], [ -123.814744499000014, 49.0419962080001 ], [ -123.814514919999937, 49.04139509700012 ], [ -123.814652294999945, 49.040593297000115 ], [ -123.814274181000016, 49.040020792000121 ], [ -123.813167989999926, 49.039317189000066 ], [ -123.81281870299992, 49.038968311000076 ], [ -123.81207478499999, 49.037786194000056 ], [ -123.811633902999958, 49.037565493000088 ], [ -123.811084002999948, 49.037434402000038 ], [ -123.810205124999982, 49.036546557000058 ], [ -123.810209415999935, 49.036455157000063 ], [ -123.811508326999942, 49.03648163900003 ], [ -123.811592680999951, 49.034683718000046 ], [ -123.811627602, 49.034683202000096 ], [ -123.812349200999947, 49.034672509000167 ], [ -123.813528368999982, 49.034631743000084 ], [ -123.813989009999901, 49.034615810000091 ], [ -123.813982668000023, 49.034650171000123 ], [ -123.813717800999953, 49.036086594000075 ], [ -123.81374759299996, 49.036996902000041 ], [ -123.813879391999961, 49.037449990000027 ], [ -123.81396390899999, 49.037979488000055 ], [ -123.814048677999949, 49.03829829299999 ], [ -123.814072881999948, 49.038340503000093 ], [ -123.814196508999927, 49.038556215000121 ], [ -123.814231122999928, 49.038590709000083 ], [ -123.814350592999944, 49.038709801000032 ], [ -123.814612482999948, 49.03886550100006 ], [ -123.814933413999952, 49.038960304000042 ], [ -123.816123889, 49.0391332 ], [ -123.817040304999963, 49.039495910000014 ], [ -123.818553385999934, 49.040260404000058 ], [ -123.818611796999946, 49.040289909000123 ], [ -123.819670797999919, 49.041113004000081 ], [ -123.820388513999944, 49.041402292000079 ], [ -123.820587885999927, 49.041581098000059 ], [ -123.820782187999939, 49.042393892000092 ], [ -123.820939809999956, 49.042619589000019 ], [ -123.821308097999946, 49.043015179000051 ], [ -123.822024830999922, 49.043696729000033 ], [ -123.822285688999912, 49.043944808000056 ], [ -123.822728889999937, 49.044259988000064 ], [ -123.823013214999918, 49.044399584000097 ], [ -123.823193914999976, 49.044488300000083 ], [ -123.823710444999932, 49.044623159000025 ], [ -123.825165487000021, 49.04500300300009 ], [ -123.825801101999929, 49.045266213000097 ], [ -123.82593460899993, 49.045422993000074 ], [ -123.826005085999924, 49.046607001000055 ], [ -123.82608810899994, 49.046732995000049 ], [ -123.826201921999896, 49.046813707000105 ], [ -123.826368511999988, 49.046875593000074 ], [ -123.827739111000014, 49.046885308000078 ], [ -123.827759806999921, 49.047996314000059 ], [ -123.829624793999926, 49.048014203 ], [ -123.829922016999973, 49.04800130400006 ], [ -123.830471088999971, 49.047893493000096 ], [ -123.831073182999958, 49.04772265800004 ], [ -123.831425503999981, 49.047622701000108 ], [ -123.832510000999946, 49.047023091000057 ], [ -123.832790705999955, 49.046925193000042 ], [ -123.833032053999929, 49.046891565000053 ], [ -123.833072692999963, 49.046885913000082 ], [ -123.833703508999989, 49.04687160400006 ], [ -123.834538892999973, 49.046896500000045 ], [ -123.834881392999961, 49.046939502000122 ], [ -123.83546689399995, 49.04716469800006 ], [ -123.835883394999939, 49.046937083000067 ], [ -123.836060091999911, 49.046812802000062 ], [ -123.836066699999961, 49.046804755000089 ], [ -123.836403382999904, 49.046394593000059 ], [ -123.837984827999961, 49.047996822000094 ], [ -123.838326046999953, 49.047665266000074 ], [ -123.838743100999963, 49.047260003000105 ], [ -123.839308401999972, 49.046710699000101 ], [ -123.839337751999921, 49.046680826000106 ], [ -123.840093132999982, 49.045911424000067 ], [ -123.840759866999974, 49.045232281000068 ], [ -123.840790713, 49.045200841000096 ], [ -123.841246836, 49.044736224000125 ], [ -123.843763495999923, 49.044786783000099 ], [ -123.843643368999949, 49.047384762000014 ], [ -123.844301813999905, 49.047379947000053 ], [ -123.844320090999958, 49.048459295000072 ], [ -123.843909577999952, 49.048462297000057 ], [ -123.843914146999964, 49.048732134000048 ], [ -123.84227208899992, 49.048744130000024 ], [ -123.842265590999943, 49.048359540000014 ], [ -123.841662269999972, 49.048347417000059 ], [ -123.841581971999929, 49.050082225000082 ], [ -123.840837180999955, 49.050067256000013 ], [ -123.840797988999938, 49.050913643000058 ], [ -123.8402223099999, 49.050902068000021 ], [ -123.840195696999942, 49.051476656000069 ], [ -123.839167673999967, 49.051455979000131 ], [ -123.839140386999986, 49.052044780000138 ], [ -123.838914768000024, 49.052040241000029 ], [ -123.838905356999945, 49.05224327700008 ], [ -123.839235614999922, 49.052249922000051 ], [ -123.839068800999911, 49.055849371000122 ], [ -123.838581243999954, 49.055839561000035 ], [ -123.838506941000034, 49.057442296000069 ], [ -123.837036072999979, 49.057442646000084 ], [ -123.834908205999966, 49.057446550000073 ], [ -123.83285768799999, 49.057451614000023 ], [ -123.831529699999933, 49.057454857000039 ], [ -123.831567259999986, 49.056647276000028 ], [ -123.83152221899999, 49.056646367000035 ], [ -123.831689620999981, 49.053046934000143 ], [ -123.831772851999958, 49.053048615000066 ], [ -123.831781518999918, 49.052862248000075 ], [ -123.831545248999987, 49.052857479000032 ], [ -123.831679294999986, 49.049974995000127 ], [ -123.831306438999988, 49.049969863000094 ], [ -123.831207253999978, 49.049969033000131 ], [ -123.831210664999944, 49.05017368300004 ], [ -123.830800137999958, 49.050176639000014 ], [ -123.830813626999912, 49.050986152000043 ], [ -123.830656916999928, 49.050987280000065 ], [ -123.830601053999914, 49.052187990000036 ], [ -123.829732007999922, 49.05217043400004 ], [ -123.829723229999956, 49.052359011000078 ], [ -123.828798116999977, 49.05234031500008 ], [ -123.828790799999965, 49.052497434000074 ], [ -123.82676035899999, 49.05245637300002 ], [ -123.826732079999914, 49.05306309900002 ], [ -123.827845591999932, 49.053085622 ], [ -123.82767789399999, 49.056685048000098 ], [ -123.827123803999953, 49.056673842000102 ], [ -123.827110905999959, 49.056950605000047 ], [ -123.829790954999936, 49.057004782000064 ], [ -123.829769804999955, 49.05745912900008 ], [ -123.823677016999952, 49.057473696000081 ], [ -123.822649593999927, 49.057184076000048 ], [ -123.809070048999956, 49.057294853000045 ] ], [ [ -123.821276771999948, 49.052783707000138 ], [ -123.8212870399999, 49.05256395900004 ], [ -123.819922633999965, 49.052536275000129 ], [ -123.81992398099996, 49.052507457000068 ], [ -123.819237167, 49.052493515000045 ], [ -123.81922554199997, 49.052742082000051 ], [ -123.821276771999948, 49.052783707000138 ] ], [ [ -123.793282898999976, 49.043981125000094 ], [ -123.793331812999924, 49.042947353000059 ], [ -123.79310041, 49.042942597000028 ], [ -123.79311126199994, 49.042713257000081 ], [ -123.791608110999917, 49.042682356000071 ], [ -123.791604468999978, 49.042759278000077 ], [ -123.791577108999931, 49.042758715000112 ], [ -123.791532963999899, 49.04369095000007 ], [ -123.7915522799999, 49.043691348000024 ], [ -123.791540254999944, 49.0439453030001 ], [ -123.793282898999976, 49.043981125000094 ] ], [ [ -123.800292149999933, 49.042660999000084 ], [ -123.800281503999912, 49.042886705000107 ], [ -123.801197730999945, 49.042905469000125 ], [ -123.80120837199992, 49.042679763000095 ], [ -123.800292149999933, 49.042660999000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48661083", "BldgCostT": "31908333", "sL_LossRatio": "0.75281128880898", "sL_AssetLoss": "324370.8", "sL_BldgLoss": "244190", "sL_StrLoss": "128460", "sL_NStrLoss": "115730", "sL_ContLoss": "80180.8", "geom_point": "0101000020E61000009495815ED3F65EC01AAF1E9CF4854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.850453812999945, 49.05743862200007 ], [ -123.850508959999928, 49.056242492000074 ], [ -123.850232442999953, 49.056236958000078 ], [ -123.850370583999961, 49.053240835000047 ], [ -123.848901875999957, 49.053211432000161 ], [ -123.849067922999922, 49.049611953000124 ], [ -123.849456412999956, 49.049619732000068 ], [ -123.849580154999956, 49.046936458000054 ], [ -123.851343666999966, 49.046971754000069 ], [ -123.851397510999959, 49.045803111000041 ], [ -123.850472083999961, 49.045784594000096 ], [ -123.85050503799999, 49.045069646000059 ], [ -123.84954719299995, 49.045050471000081 ], [ -123.849591716999967, 49.044084901000062 ], [ -123.849541721999984, 49.044083899000057 ], [ -123.849498798999946, 49.045014746000099 ], [ -123.847134705999935, 49.04496738000006 ], [ -123.84713866, 49.04520019400011 ], [ -123.846317692, 49.045206217000022 ], [ -123.846326849999969, 49.045745891000067 ], [ -123.848379295999933, 49.045730820000109 ], [ -123.848397658999914, 49.046810167000039 ], [ -123.84757666299997, 49.04681620000008 ], [ -123.847585836999954, 49.047355874000097 ], [ -123.847175333999971, 49.047358887000037 ], [ -123.847179918999956, 49.047628725000038 ], [ -123.845537897999961, 49.047640767000061 ], [ -123.845505870999958, 49.045751909000096 ], [ -123.844684892999965, 49.045757921000067 ], [ -123.84467575099994, 49.045218247000022 ], [ -123.84426526599999, 49.045221251000065 ], [ -123.84425999099993, 49.04490971400007 ], [ -123.844036495999958, 49.044905228000097 ], [ -123.844058325999981, 49.044433019000039 ], [ -123.844794052999958, 49.044442722000092 ], [ -123.845606093999962, 49.044453424 ], [ -123.845931219999912, 49.044457710000053 ], [ -123.846548097, 49.044447608000048 ], [ -123.847028387999941, 49.044407702000072 ], [ -123.847744615999943, 49.04426167900003 ], [ -123.847841115999955, 49.04424201100003 ], [ -123.848865406999934, 49.043903109000084 ], [ -123.848876961999977, 49.043898258000105 ], [ -123.849801990999978, 49.043511211000038 ], [ -123.850603319999934, 49.043116498000124 ], [ -123.850836960999914, 49.042987066000116 ], [ -123.851237315999953, 49.042765299000052 ], [ -123.853197222999981, 49.041698395 ], [ -123.85324215, 49.04167153300012 ], [ -123.854066987999957, 49.041178619000043 ], [ -123.854932780999931, 49.040661203000063 ], [ -123.855227793999944, 49.040486095000063 ], [ -123.8555283099999, 49.040249168000074 ], [ -123.855617799999962, 49.040178592000103 ], [ -123.855999184999945, 49.039820594000076 ], [ -123.856014558999959, 49.039804478000036 ], [ -123.856570708, 49.039221297000054 ], [ -123.856948394999932, 49.038710223000066 ], [ -123.85753239899999, 49.037919997000088 ], [ -123.85829199299999, 49.037211007000053 ], [ -123.858658607, 49.036915104000073 ], [ -123.859186107999946, 49.036489296000042 ], [ -123.860569084999952, 49.035536 ], [ -123.8607389, 49.035647513000157 ], [ -123.860980283999965, 49.035687413000048 ], [ -123.862047951999898, 49.035701312000079 ], [ -123.86215486799999, 49.035702694000058 ], [ -123.86245236, 49.035771681000057 ], [ -123.862721359999938, 49.035100035000013 ], [ -123.862677827, 49.035026804000019 ], [ -123.862524212999958, 49.034919200000147 ], [ -123.862329608999943, 49.034841499 ], [ -123.861942587999962, 49.034788804000108 ], [ -123.862867482999945, 49.034735092000055 ], [ -123.862954725999927, 49.035216003000087 ], [ -123.863105564999955, 49.035706755000078 ], [ -123.863130738, 49.035788800000077 ], [ -123.863460043999964, 49.036506011 ], [ -123.863869555999955, 49.037113145000028 ], [ -123.864197618, 49.037490137000084 ], [ -123.864291475999963, 49.037598012000039 ], [ -123.864651249999895, 49.037948340000071 ], [ -123.864707618999944, 49.038333707000035 ], [ -123.864897433999943, 49.039631697000054 ], [ -123.864786730999938, 49.042762939000042 ], [ -123.86759951099998, 49.042955743000029 ], [ -123.86740330399995, 49.049367584000073 ], [ -123.867327424999957, 49.049368154000092 ], [ -123.867332118999911, 49.049637989000104 ], [ -123.866921599999927, 49.049641074000107 ], [ -123.866926291, 49.049910909000069 ], [ -123.866515769999936, 49.049913992000086 ], [ -123.866518810999949, 49.050089018000058 ], [ -123.864797761999981, 49.050068496000051 ], [ -123.864663034, 49.052896464000113 ], [ -123.864514628, 49.052897575000074 ], [ -123.86448655399991, 49.051278563000047 ], [ -123.864076021999963, 49.051281637000081 ], [ -123.864057315999958, 49.050202296000052 ], [ -123.864467840999936, 49.050199221000121 ], [ -123.86443041499993, 49.048040538000066 ], [ -123.864840920999939, 49.048037462000146 ], [ -123.864817520999935, 49.04668828500008 ], [ -123.865228015999932, 49.046685208000049 ], [ -123.865218650999935, 49.04614553600004 ], [ -123.864808160999971, 49.046148614000074 ], [ -123.864803480999981, 49.045878778000045 ], [ -123.864392991999964, 49.045881853000054 ], [ -123.864369605999968, 49.044532676000131 ], [ -123.863959129999969, 49.044535750000087 ], [ -123.863954452999963, 49.044265913000103 ], [ -123.863543978999942, 49.044268987000088 ], [ -123.863529960999983, 49.043459479000028 ], [ -123.863940429999943, 49.043456408000068 ], [ -123.863940389000021, 49.043454114000092 ], [ -123.861044621999952, 49.04339647700003 ], [ -123.861197803999985, 49.040056291000099 ], [ -123.861107228, 49.040054487000127 ], [ -123.86112620599998, 49.039640611000038 ], [ -123.860803127999972, 49.039634176000099 ], [ -123.860791656999965, 49.039884281000113 ], [ -123.859467493999915, 49.039857894000129 ], [ -123.85939009599997, 49.041544312000035 ], [ -123.8587964099999, 49.041532476000086 ], [ -123.858783102999951, 49.04182234600006 ], [ -123.860493492999964, 49.041856437000085 ], [ -123.86032835499995, 49.045455977000088 ], [ -123.859160791999912, 49.045432709000124 ], [ -123.85912315299997, 49.046252605000149 ], [ -123.857333160999957, 49.046216908000126 ], [ -123.857192746999928, 49.049272744000042 ], [ -123.857074989999916, 49.049270394000168 ], [ -123.856985848999926, 49.051210043000069 ], [ -123.854464601999894, 49.051159710000029 ], [ -123.854407492999968, 49.0524008410001 ], [ -123.858790897999981, 49.05248831100009 ], [ -123.858625590999949, 49.056087789000102 ], [ -123.855987160999945, 49.05603516100004 ], [ -123.855978126999986, 49.056231629000123 ], [ -123.857417975999965, 49.056260357000056 ], [ -123.857365525999953, 49.057401681000066 ], [ -123.853609935999941, 49.057437420000042 ], [ -123.850453812999945, 49.05743862200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210834", "BldgCostT": "4283334", "sL_LossRatio": "0.807507548723579", "sL_AssetLoss": "43716", "sL_BldgLoss": "35301", "sL_StrLoss": "20260", "sL_NStrLoss": "15041", "sL_ContLoss": "8415", "geom_point": "0101000020E6100000C681804A4FF15EC095758B02F5834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.76537319699996, 49.032614999000067 ], [ -123.765545612999986, 49.029015535000049 ], [ -123.766307931999961, 49.029031400000051 ], [ -123.766325676999955, 49.028660771000027 ], [ -123.766427799999988, 49.028679811000089 ], [ -123.767349011999968, 49.029061494000061 ], [ -123.766802204999948, 49.029955906000154 ], [ -123.766233915999948, 49.030474623 ], [ -123.76608758199994, 49.030608197000056 ], [ -123.766135799999958, 49.031120905000044 ], [ -123.766739285999975, 49.031233405000144 ], [ -123.767204179999979, 49.031113796000042 ], [ -123.767267399999966, 49.030843187000094 ], [ -123.767483775999935, 49.03069789500011 ], [ -123.767800284999922, 49.030830398000056 ], [ -123.768033485, 49.030801909000104 ], [ -123.768111992999934, 49.030323738000099 ], [ -123.768182881999948, 49.029891800000051 ], [ -123.768484474000019, 49.029857314000047 ], [ -123.768593784999922, 49.029844802000113 ], [ -123.768658702999957, 49.029663888000108 ], [ -123.769110310999963, 49.029679602000066 ], [ -123.768484295999926, 49.029008812000129 ], [ -123.768525593000021, 49.028954714000065 ], [ -123.769529186999975, 49.029201979000078 ], [ -123.771970805999928, 49.029803488000034 ], [ -123.772149009000017, 49.029749395000039 ], [ -123.772241605000019, 49.029604091000124 ], [ -123.77181319099995, 49.029319309000087 ], [ -123.771727916999936, 49.029104198000056 ], [ -123.77190472499997, 49.029048703000065 ], [ -123.77241400099993, 49.029216704000142 ], [ -123.773950991999925, 49.029511499000044 ], [ -123.774473396999923, 49.029706702000041 ], [ -123.776373754999966, 49.029914396000031 ], [ -123.776289831999947, 49.031674986000098 ], [ -123.77241863099999, 49.03159473300007 ], [ -123.772381414999984, 49.032374081000043 ], [ -123.771829286999932, 49.032362624000022 ], [ -123.771822600999897, 49.032502595000068 ], [ -123.770845638999916, 49.032482314000113 ], [ -123.770833872999944, 49.032728519000081 ], [ -123.76537319699996, 49.032614999000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.797637079672826", "sL_AssetLoss": "33010", "sL_BldgLoss": "26330", "sL_StrLoss": "13620", "sL_NStrLoss": "12710", "sL_ContLoss": "6680", "geom_point": "0101000020E6100000D58A805494F05EC01846383569844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.754495708999968, 49.035731084000062 ], [ -123.753941419999975, 49.035310899000123 ], [ -123.753807960999936, 49.035118003000036 ], [ -123.75380999399998, 49.035075768000098 ], [ -123.755515909999957, 49.035346506000074 ], [ -123.755831310999938, 49.035326586000075 ], [ -123.755935305999969, 49.035064492000068 ], [ -123.756386601999964, 49.035061702000093 ], [ -123.756632507999925, 49.034933503000012 ], [ -123.756765192, 49.03471700300009 ], [ -123.75538290799993, 49.033772789000082 ], [ -123.75538069299995, 49.033633590000086 ], [ -123.75537959799999, 49.033566300000096 ], [ -123.75556961699999, 49.033429497000014 ], [ -123.756432893999985, 49.033532101000063 ], [ -123.757269208999944, 49.033732904000026 ], [ -123.758012690999948, 49.03399376400003 ], [ -123.758091420999946, 49.034021385000095 ], [ -123.758113088999934, 49.034028989000042 ], [ -123.758153755999928, 49.034043246000103 ], [ -123.758328610999968, 49.034104592000034 ], [ -123.758901196999915, 49.033947990000051 ], [ -123.75933200599999, 49.033495111000022 ], [ -123.758595718999956, 49.032788604000082 ], [ -123.75866932400001, 49.0325946580001 ], [ -123.762093615999945, 49.032666091000088 ], [ -123.76194381199997, 49.035788431000086 ], [ -123.75454271299999, 49.035792555000114 ], [ -123.754495708999968, 49.035731084000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561668", "BldgCostT": "1766668", "sL_LossRatio": "0.84789002120238", "sL_AssetLoss": "14621", "sL_BldgLoss": "12397", "sL_StrLoss": "7850", "sL_NStrLoss": "4547", "sL_ContLoss": "2224", "geom_point": "0101000020E6100000E11304F219F35EC0E2035C0C75844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.799788189999916, 49.032936503 ], [ -123.8010948579999, 49.032963273000071 ], [ -123.801004043999953, 49.035067676000054 ], [ -123.801069988999984, 49.035780167000063 ], [ -123.793547320999934, 49.035721371000108 ], [ -123.793581758999906, 49.034993343000046 ], [ -123.795895187999946, 49.035040859000048 ], [ -123.795901772999926, 49.034901501 ], [ -123.79857145299998, 49.034956272000038 ], [ -123.798594389999948, 49.034470265000074 ], [ -123.799250004999976, 49.03448370500012 ], [ -123.799323447999882, 49.032926978000013 ], [ -123.799788189999916, 49.032936503 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.880154303289371", "sL_AssetLoss": "19183", "sL_BldgLoss": "16884", "sL_StrLoss": "11690", "sL_NStrLoss": "5194", "sL_ContLoss": "2299", "geom_point": "0101000020E6100000D9DB5EB93BF45EC0DD5FDAC3A0814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.817394074999982, 49.016279906000122 ], [ -123.817424229999958, 49.015635157000062 ], [ -123.815433693999978, 49.015594657000086 ], [ -123.815447632, 49.015296935000087 ], [ -123.815163501999933, 49.015291151000049 ], [ -123.815245833999938, 49.013532517000115 ], [ -123.815075704999941, 49.013529054000045 ], [ -123.815089589999943, 49.01323246400009 ], [ -123.814420398999985, 49.013218838000064 ], [ -123.814579360999971, 49.009824227000081 ], [ -123.814588961999945, 49.009619187000027 ], [ -123.815335553999887, 49.009634391000063 ], [ -123.816373302999963, 49.010310395000019 ], [ -123.817945231999943, 49.01145174700013 ], [ -123.817952919999939, 49.011457329000088 ], [ -123.817954398000012, 49.011458402000081 ], [ -123.817733037999972, 49.012198746000117 ], [ -123.817543201999911, 49.016282646000086 ], [ -123.817394074999982, 49.016279906000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11068417", "BldgCostT": "7161667", "sL_LossRatio": "0.743868594723074", "sL_AssetLoss": "75309", "sL_BldgLoss": "56020", "sL_StrLoss": "30290", "sL_NStrLoss": "25730", "sL_ContLoss": "19289", "geom_point": "0101000020E61000004FD44EA4E6F15EC0A8F5E93E21814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.777991543, 49.011485287 ], [ -123.77804871599993, 49.010284403000064 ], [ -123.777351991999964, 49.010269974000089 ], [ -123.77737110399994, 49.009868653000147 ], [ -123.775507049999973, 49.009830026000039 ], [ -123.775678601999942, 49.006230419000062 ], [ -123.781136216999982, 49.006343419000146 ], [ -123.781117138999932, 49.006744743000098 ], [ -123.782981074999938, 49.006783272000078 ], [ -123.782924031999983, 49.007984167000139 ], [ -123.783620724999977, 49.007998559000058 ], [ -123.783449778999938, 49.011598169000081 ], [ -123.777991543, 49.011485287 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14959167", "BldgCostT": "10316667", "sL_LossRatio": "0.784716458224892", "sL_AssetLoss": "142166", "sL_BldgLoss": "111560", "sL_StrLoss": "59590", "sL_NStrLoss": "51970", "sL_ContLoss": "30606", "geom_point": "0101000020E6100000158B423FD1F05EC0B3DBDBEBAC7F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.760022592999945, 48.997931110000131 ], [ -123.75932788399993, 48.99726890400008 ], [ -123.759005401999971, 48.996759008000069 ], [ -123.758805608999978, 48.996112403000041 ], [ -123.758881078999977, 48.994861994000082 ], [ -123.758257608999926, 48.99428940100006 ], [ -123.75822789299994, 48.99417258800004 ], [ -123.758254597999951, 48.994109989 ], [ -123.758731676999929, 48.994052993000061 ], [ -123.759085684999917, 48.993906291000087 ], [ -123.75934160099996, 48.99362569200013 ], [ -123.75951229099995, 48.993211297000045 ], [ -123.760435302999923, 48.991855502000085 ], [ -123.760454596999963, 48.991545638000055 ], [ -123.76092693699999, 48.99152744900006 ], [ -123.76153345199999, 48.991606787000116 ], [ -123.761995683999928, 48.991647964000073 ], [ -123.763230562, 48.991663798000069 ], [ -123.764714831999925, 48.991603762000089 ], [ -123.76557120399994, 48.991597298000038 ], [ -123.767081178999931, 48.991600294000094 ], [ -123.767088171999944, 48.992055745000073 ], [ -123.76598564699998, 48.992063070000093 ], [ -123.765936335999953, 48.99309365400002 ], [ -123.764764691999943, 48.9930692450001 ], [ -123.764762789999949, 48.993108983000049 ], [ -123.764643665999927, 48.993106501000099 ], [ -123.76464435299999, 48.993151457000131 ], [ -123.764234288999944, 48.9931541730001 ], [ -123.764238417999977, 48.993424017000052 ], [ -123.763828348999979, 48.993426734000131 ], [ -123.763832474999958, 48.993696578000083 ], [ -123.763422404, 48.993699293000113 ], [ -123.763426528999929, 48.99396913700005 ], [ -123.763016455999946, 48.993971850000037 ], [ -123.763020578999928, 48.994241695000042 ], [ -123.762845384999949, 48.99424285300006 ], [ -123.762821604999914, 48.994739127000081 ], [ -123.762663859999989, 48.994735836000103 ], [ -123.762631095999964, 48.995419552000108 ], [ -123.765051662999937, 48.995470012000126 ], [ -123.764946681999959, 48.997662918000081 ], [ -123.766620436999943, 48.997697777000099 ], [ -123.766448218999983, 49.001297418000085 ], [ -123.765906366999943, 49.001286136000097 ], [ -123.765807509999959, 49.00335162800004 ], [ -123.764690252, 49.003328356000047 ], [ -123.764688766999924, 49.003359356000054 ], [ -123.764133272999928, 49.003347780000105 ], [ -123.764132344999922, 49.003367169000022 ], [ -123.76365001899994, 49.003357116000103 ], [ -123.76364932599995, 49.003371580000085 ], [ -123.762903512999969, 49.00335603200007 ], [ -123.76087377499999, 49.003313690000041 ], [ -123.760995191999882, 49.002629607000124 ], [ -123.760948294999977, 49.002223714000074 ], [ -123.760822289000018, 49.002054197000035 ], [ -123.760381998999932, 49.001787898 ], [ -123.760254886999988, 49.001508706000109 ], [ -123.760332200999969, 49.001302191000015 ], [ -123.761151994999977, 49.000379303000074 ], [ -123.761282611999931, 48.999981989000062 ], [ -123.760878599999927, 48.999400905000115 ], [ -123.760748888999956, 48.998960812000085 ], [ -123.760427591999971, 48.998468088000102 ], [ -123.760022592999945, 48.997931110000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21554917", "BldgCostT": "14601667", "sL_LossRatio": "0.782371983519717", "sL_AssetLoss": "163104", "sL_BldgLoss": "127608", "sL_StrLoss": "75954", "sL_NStrLoss": "51654", "sL_ContLoss": "35496", "geom_point": "0101000020E6100000465167EE21F25EC0BDB0355B797F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.787646735999914, 49.002668064000055 ], [ -123.787757015999944, 49.000341062000061 ], [ -123.787704177999956, 49.000339972000091 ], [ -123.787718468999984, 49.000038404000058 ], [ -123.787415984999939, 49.000032165000057 ], [ -123.787490887999937, 48.99845177100007 ], [ -123.785719618999906, 48.998415226000141 ], [ -123.785752280999958, 48.99772658800002 ], [ -123.78433821099999, 48.997697391000088 ], [ -123.78438094299996, 48.996796986000028 ], [ -123.784371665999942, 48.996796794000133 ], [ -123.784432001999932, 48.995525394000047 ], [ -123.781796651999954, 48.995470931000078 ], [ -123.781799445999951, 48.995412105000078 ], [ -123.781089027999911, 48.995397412000116 ], [ -123.781092575999935, 48.995322771000062 ], [ -123.779459074999977, 48.995288970000075 ], [ -123.779460932999925, 48.995249884 ], [ -123.776960985999921, 48.995198105000043 ], [ -123.776990955999949, 48.994568699000084 ], [ -123.776969597999965, 48.994568256000065 ], [ -123.776971465999935, 48.994688331000148 ], [ -123.775741234999956, 48.994696609000066 ], [ -123.775738845999911, 48.994542743000075 ], [ -123.775529673999955, 48.994538406000032 ], [ -123.771736135999944, 48.994459670000012 ], [ -123.771739392999962, 48.994391415000081 ], [ -123.768413920999976, 48.994322283000095 ], [ -123.76854387799996, 48.991603176000083 ], [ -123.769527513999947, 48.991605102000051 ], [ -123.769639273999957, 48.991605325000101 ], [ -123.774080487999967, 48.991613908000083 ], [ -123.774565789999912, 48.99168520500006 ], [ -123.775610971999953, 48.991958192000048 ], [ -123.778195662999906, 48.991445231000057 ], [ -123.779180179999926, 48.99210899700013 ], [ -123.780845511999985, 48.9928168020001 ], [ -123.782189705999954, 48.993131511000087 ], [ -123.783323714999952, 48.993087407000075 ], [ -123.784483398999953, 48.992855210000123 ], [ -123.785772408999904, 48.992323994000081 ], [ -123.78638292, 48.99193380100008 ], [ -123.787123318999974, 48.992126004000056 ], [ -123.788200787999969, 48.992802592000032 ], [ -123.78798208799999, 48.993722596000097 ], [ -123.78808839899996, 48.994404807000109 ], [ -123.788138269999934, 48.994505172000046 ], [ -123.787460902999953, 48.995554293000033 ], [ -123.788152138, 48.999923806000076 ], [ -123.788168626999934, 49.000856293000069 ], [ -123.793515117999945, 49.000665966000064 ], [ -123.795854279999958, 49.000582635000036 ], [ -123.795763572999974, 48.999803264999983 ], [ -123.795743331, 48.999658383000096 ], [ -123.795741419999942, 48.999644771000057 ], [ -123.795508866999981, 48.998822712000027 ], [ -123.796050793999939, 48.999010703000138 ], [ -123.796160104999899, 48.999036286000042 ], [ -123.796255302999924, 48.998963689000043 ], [ -123.796053613999945, 48.99752519900003 ], [ -123.79557760599999, 48.996890005000111 ], [ -123.795889720999952, 48.996663601000094 ], [ -123.795973278999952, 48.996645452000031 ], [ -123.795971224999946, 48.996688918000125 ], [ -123.796408064999952, 48.996697893000032 ], [ -123.796393489, 48.997006725000048 ], [ -123.797208562999941, 48.997023465000069 ], [ -123.797345816999936, 48.997113975000055 ], [ -123.797340537999929, 48.99722587400008 ], [ -123.797521127999971, 48.997229582000095 ], [ -123.79803982199999, 48.997571623000042 ], [ -123.797938686999885, 48.999715757000033 ], [ -123.797885642999987, 49.000840244000088 ], [ -123.796820195999899, 49.000818370000054 ], [ -123.796748182999963, 49.002344169000025 ], [ -123.793128108999966, 49.002269766000026 ], [ -123.793103963999926, 49.002780456999986 ], [ -123.787646735999914, 49.002668064000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.786713286713287", "sL_AssetLoss": "17160", "sL_BldgLoss": "13500", "sL_StrLoss": "6870", "sL_NStrLoss": "6630", "sL_ContLoss": "3660", "geom_point": "0101000020E6100000DB7AFAC61FF25EC03F2309A978844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.78040469099993, 49.035617385000066 ], [ -123.78047432799994, 49.034153918000058 ], [ -123.785935221999964, 49.034266670000093 ], [ -123.785871465999904, 49.035609816000061 ], [ -123.788273018999945, 49.03565931300006 ], [ -123.788272045999946, 49.035679825000102 ], [ -123.78040469099993, 49.035617385000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42729749", "BldgCostT": "29204999", "sL_LossRatio": "0.813514623786853", "sL_AssetLoss": "272638", "sL_BldgLoss": "221795", "sL_StrLoss": "138745", "sL_NStrLoss": "83050", "sL_ContLoss": "50843", "geom_point": "0101000020E6100000FF91E9D069F25EC091F0FFDB93824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.782931893999901, 49.029154110000022 ], [ -123.78349139699999, 49.029024506000034 ], [ -123.783916907, 49.02906720700004 ], [ -123.78427048399999, 49.028983197000088 ], [ -123.784702803999949, 49.028592883000044 ], [ -123.784574572999958, 49.028511250000044 ], [ -123.784438878999978, 49.028424895000107 ], [ -123.784493288999897, 49.028316609000065 ], [ -123.785841880999953, 49.028000498000011 ], [ -123.786318001, 49.02779111000013 ], [ -123.787577233999968, 49.026917706000049 ], [ -123.787981194999958, 49.026637507000025 ], [ -123.788004834999981, 49.026608314000057 ], [ -123.788450601999955, 49.026057811000072 ], [ -123.788716183999895, 49.026327007000106 ], [ -123.788765791999978, 49.026606935000117 ], [ -123.788775003999916, 49.026658887000053 ], [ -123.788601989999933, 49.026939400000082 ], [ -123.788073691999941, 49.027202892000105 ], [ -123.788040393999964, 49.027698492000056 ], [ -123.787814708999974, 49.028149999000064 ], [ -123.787955715999942, 49.028463304000098 ], [ -123.788175813999914, 49.028570197000079 ], [ -123.788587509999928, 49.028602887 ], [ -123.789679704999955, 49.028460506 ], [ -123.790074496999964, 49.028349403000099 ], [ -123.790453901999953, 49.028095901000064 ], [ -123.790613788999963, 49.027896494000046 ], [ -123.790674501999945, 49.027321089000054 ], [ -123.7910993, 49.026480792000022 ], [ -123.791207005999922, 49.026362583000051 ], [ -123.791468821999942, 49.026542105000019 ], [ -123.791672897999931, 49.026449493 ], [ -123.791667987999986, 49.026099089000063 ], [ -123.791311885999974, 49.026083493000023 ], [ -123.790685614000026, 49.025520899000064 ], [ -123.790656201999965, 49.025341506000117 ], [ -123.790743894999963, 49.024764691000065 ], [ -123.791048308999947, 49.02422349700003 ], [ -123.791134695999958, 49.023548412000018 ], [ -123.791307689999954, 49.023267804000071 ], [ -123.791524502999948, 49.023168100000063 ], [ -123.791820478999966, 49.022823497 ], [ -123.791800805999955, 49.022464592000091 ], [ -123.791493211999978, 49.022034400000088 ], [ -123.791354693999907, 49.02197179200008 ], [ -123.791126893999916, 49.021326608000031 ], [ -123.790833590999924, 49.020994809000115 ], [ -123.790504176999974, 49.020862298000075 ], [ -123.790262719999944, 49.020415100000086 ], [ -123.789934609999989, 49.020299790000081 ], [ -123.789113113999946, 49.020296898 ], [ -123.788937106999953, 49.020378091000076 ], [ -123.788846489999941, 49.02073980200003 ], [ -123.788697100999983, 49.020785392000086 ], [ -123.788233194999975, 49.01996931500004 ], [ -123.787831525999934, 49.019648904000078 ], [ -123.78756309, 49.019191698000029 ], [ -123.786624981999964, 49.018631992000095 ], [ -123.786255880999988, 49.018643394000108 ], [ -123.78535728099996, 49.018874096000047 ], [ -123.783797214999964, 49.018929700000058 ], [ -123.783635195999963, 49.018993790000074 ], [ -123.783630081999974, 49.019018192 ], [ -123.783124369999925, 49.019007747000046 ], [ -123.782707706999986, 49.018226091000045 ], [ -123.78176750399993, 49.017666393000098 ], [ -123.781452794999922, 49.017596611000023 ], [ -123.780446174999966, 49.017576738000116 ], [ -123.780485857999935, 49.016742425000125 ], [ -123.775476338999965, 49.01663870700007 ], [ -123.775546038999963, 49.015176538000084 ], [ -123.775647916999915, 49.013039138000096 ], [ -123.776552197999976, 49.013057878000026 ], [ -123.776552579999958, 49.013049860000102 ], [ -123.777414275999945, 49.01306771000003 ], [ -123.777414443999945, 49.013064181000097 ], [ -123.782872863999955, 49.013177093000103 ], [ -123.782826935999978, 49.014143816000121 ], [ -123.784720758999981, 49.014182926000046 ], [ -123.784751908999951, 49.01352669700001 ], [ -123.783008634999931, 49.013538541000052 ], [ -123.782995938999989, 49.012729012000122 ], [ -123.78340616399997, 49.012726227000037 ], [ -123.7834019299999, 49.012456384000082 ], [ -123.784632594999962, 49.012448023000104 ], [ -123.78462835299996, 49.012178180000014 ], [ -123.784815978999944, 49.012176904000107 ], [ -123.784871865999932, 49.010999459000061 ], [ -123.787201606999986, 49.011047525000095 ], [ -123.790330061, 49.011111991000178 ], [ -123.790279122999962, 49.012187837000099 ], [ -123.791601579999977, 49.01221506100012 ], [ -123.791592115999933, 49.012415063000113 ], [ -123.793480723999977, 49.012453913000073 ], [ -123.79333791799999, 49.015474165000079 ], [ -123.793310522999917, 49.01605351400007 ], [ -123.79237064499992, 49.016034184 ], [ -123.792366678999926, 49.016118012000071 ], [ -123.792349508999976, 49.016480936000036 ], [ -123.787468858999958, 49.016380428000119 ], [ -123.78741634899994, 49.017487893000101 ], [ -123.787914796, 49.017498168 ], [ -123.78792839099998, 49.017211353000036 ], [ -123.792812668999886, 49.017311911999982 ], [ -123.79338732099994, 49.017323728000051 ], [ -123.79336968099993, 49.017696762000114 ], [ -123.793436140999972, 49.017698128000042 ], [ -123.793393275999904, 49.01860462800007 ], [ -123.793854980999981, 49.018614120000073 ], [ -123.793839037999973, 49.018951352000023 ], [ -123.794478979999923, 49.01896450400011 ], [ -123.794459208999953, 49.019382783000061 ], [ -123.79474709499999, 49.019388698000064 ], [ -123.794730314999981, 49.0197437510001 ], [ -123.794936809999967, 49.019747994000078 ], [ -123.794925273999951, 49.019992107000093 ], [ -123.795012221999954, 49.019993893000063 ], [ -123.794992812000018, 49.020404633000084 ], [ -123.795243738999972, 49.020409788000059 ], [ -123.795200927999971, 49.021315799000092 ], [ -123.795399886999974, 49.021319886000107 ], [ -123.795260881, 49.024261720000055 ], [ -123.795357065999937, 49.024263696000077 ], [ -123.795281336999892, 49.025866284000053 ], [ -123.795403760999989, 49.025868799000044 ], [ -123.795233659999923, 49.029468328000043 ], [ -123.795021670999986, 49.029463974000073 ], [ -123.794479043999928, 49.029452827000064 ], [ -123.79447343599999, 49.029571446000077 ], [ -123.79419715599991, 49.029565770000097 ], [ -123.794170555, 49.030128352000098 ], [ -123.792383315999984, 49.030091615000053 ], [ -123.792348322999914, 49.030831094000121 ], [ -123.790905594999955, 49.030801417000134 ], [ -123.790905064999933, 49.030812630000113 ], [ -123.786751109999926, 49.030727074000055 ], [ -123.786735510999947, 49.031055832000057 ], [ -123.786555906999979, 49.03105213000007 ], [ -123.786521643999976, 49.031774235000078 ], [ -123.78106104099993, 49.031661513000053 ], [ -123.781151703999981, 49.029755397000024 ], [ -123.781888393999935, 49.029719492000076 ], [ -123.78220278199997, 49.029662494000014 ], [ -123.782551792999982, 49.029327807000115 ], [ -123.782931893999901, 49.029154110000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199994033", "BldgCostT": "134985546", "sL_LossRatio": "0.767987131327306", "sL_AssetLoss": "1104946.9", "sL_BldgLoss": "848585", "sL_StrLoss": "434661", "sL_NStrLoss": "413924", "sL_ContLoss": "256361.9", "geom_point": "0101000020E61000007689E963BAF15EC03F4C1CF5E7854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.795778757999983, 49.05737371900009 ], [ -123.795818273999942, 49.056537908000088 ], [ -123.794575445999925, 49.056512399000106 ], [ -123.79459805099999, 49.056034503000035 ], [ -123.794246860999976, 49.056027292000131 ], [ -123.79428982599994, 49.055119155000035 ], [ -123.794331203999974, 49.055154402000092 ], [ -123.795253395, 49.05545490100014 ], [ -123.79551279099995, 49.05539940700006 ], [ -123.795497084999951, 49.055299693000038 ], [ -123.795207987999945, 49.055121696000178 ], [ -123.794506698999953, 49.054973612000012 ], [ -123.794304061999952, 49.05481822800008 ], [ -123.794331937000024, 49.054228994000013 ], [ -123.79394920799993, 49.05422113300007 ], [ -123.793836599999949, 49.054096294000018 ], [ -123.792924290999963, 49.053564247000097 ], [ -123.79296288399992, 49.052748939000061 ], [ -123.792282187999916, 49.05273494900009 ], [ -123.792452602999944, 49.049135557000028 ], [ -123.792751316999954, 49.04914169500011 ], [ -123.792794153000017, 49.04823672000002 ], [ -123.788338517999975, 49.048145059000014 ], [ -123.788381963999882, 49.047229037000115 ], [ -123.785919385999989, 49.047178298000034 ], [ -123.785933959999952, 49.046871344000103 ], [ -123.782413377999958, 49.046798707000036 ], [ -123.782473040999889, 49.045544032000102 ], [ -123.780373379999958, 49.045500657000034 ], [ -123.780413396999961, 49.044659860000131 ], [ -123.776821702999925, 49.044585566000137 ], [ -123.776844001999933, 49.044117780000114 ], [ -123.776610878999989, 49.04411295400012 ], [ -123.776551316999971, 49.045362216000065 ], [ -123.776649237999962, 49.045364243000094 ], [ -123.776477618999934, 49.048963632000053 ], [ -123.774821308999961, 49.048929329000075 ], [ -123.774752329999927, 49.050374771000065 ], [ -123.771085838999966, 49.050298745000077 ], [ -123.771051020999948, 49.051027160000046 ], [ -123.766586767999968, 49.050934424000033 ], [ -123.766545982999958, 49.051785870000053 ], [ -123.76617367299994, 49.05177812700007 ], [ -123.765551160999934, 49.051765179000022 ], [ -123.765528368999981, 49.052240793000095 ], [ -123.76513949199996, 49.052232703000072 ], [ -123.76513975499995, 49.052249867000072 ], [ -123.765550305999938, 49.052247145000059 ], [ -123.765554449999925, 49.052516987000033 ], [ -123.765965001999973, 49.052514262000074 ], [ -123.765981586999942, 49.053593629000098 ], [ -123.765160461999955, 49.053599076000111 ], [ -123.765164605, 49.053868919000138 ], [ -123.76476274099997, 49.053871582000035 ], [ -123.764668548999964, 49.055836239000051 ], [ -123.762955700999939, 49.054845404000126 ], [ -123.762558103999964, 49.054721486000119 ], [ -123.76263060799999, 49.054990696000047 ], [ -123.763539616999964, 49.055372297000133 ], [ -123.763650292999912, 49.055523314000055 ], [ -123.763529993999967, 49.055741198000078 ], [ -123.763121126999962, 49.055734105000049 ], [ -123.761576909, 49.05505190700007 ], [ -123.76067848699999, 49.054419506000045 ], [ -123.760562486999959, 49.05412330500009 ], [ -123.760370501999915, 49.053989395000023 ], [ -123.760367077999931, 49.053782893000076 ], [ -123.760695095999935, 49.053717405000036 ], [ -123.760665182999901, 49.053573604000114 ], [ -123.760219497999941, 49.053063699000127 ], [ -123.759817991, 49.052877102000117 ], [ -123.759721204999934, 49.052751799000092 ], [ -123.759547616999924, 49.052722264000103 ], [ -123.75941970599996, 49.052700508000051 ], [ -123.759211989999983, 49.052575199000096 ], [ -123.758710801999911, 49.052021209000053 ], [ -123.758102606999969, 49.051638108000127 ], [ -123.756784401999965, 49.050396196000065 ], [ -123.756562506999913, 49.050280803000085 ], [ -123.756516596999958, 49.049976010000108 ], [ -123.756116906999949, 49.049770887000122 ], [ -123.755977095999981, 49.049528786000046 ], [ -123.756029806999962, 49.049411986000067 ], [ -123.756621484999968, 49.049561598000018 ], [ -123.756755286999976, 49.049470408000055 ], [ -123.756684591999928, 49.049290993000106 ], [ -123.756753705999984, 49.049245407000043 ], [ -123.75719029399994, 49.049261095000077 ], [ -123.758913080999932, 49.049941795000016 ], [ -123.759172006999933, 49.049976006000037 ], [ -123.759206096999904, 49.049544512000082 ], [ -123.759440703999985, 49.049533097000058 ], [ -123.760264792999948, 49.049779496000092 ], [ -123.760466489999942, 49.049571500000063 ], [ -123.760449997999928, 49.049392098000112 ], [ -123.759675984999973, 49.048875097000071 ], [ -123.758378586999982, 49.048218504000012 ], [ -123.757381507000019, 49.047379696000043 ], [ -123.755928906999912, 49.046381304000107 ], [ -123.755374824999976, 49.045871403000014 ], [ -123.755126106999967, 49.044857386000103 ], [ -123.75488789799995, 49.044481412000017 ], [ -123.754612092999935, 49.044357498000096 ], [ -123.753429891999929, 49.04404131000004 ], [ -123.75217440099999, 49.043337788 ], [ -123.751941577999972, 49.043330594000075 ], [ -123.751652397999962, 49.043188201000078 ], [ -123.751443355999982, 49.043143144000112 ], [ -123.751518558999976, 49.041583327000126 ], [ -123.756980250999959, 49.041697550000052 ], [ -123.756955266999938, 49.04221704400004 ], [ -123.758807582999978, 49.042255719000146 ], [ -123.759007809999957, 49.042259897000122 ], [ -123.758959486999984, 49.043265518000069 ], [ -123.761956664999957, 49.04332802400004 ], [ -123.761929874999936, 49.043886251000067 ], [ -123.762283286999931, 49.043893616000069 ], [ -123.762247443999925, 49.044640596000058 ], [ -123.762612820999891, 49.044648209000052 ], [ -123.762596031, 49.044998183000054 ], [ -123.765235505999968, 49.045053141000047 ], [ -123.765247229999943, 49.044808474000028 ], [ -123.767451396999917, 49.044854319000095 ], [ -123.767476668999961, 49.044326427000072 ], [ -123.767783696999984, 49.044332809000053 ], [ -123.767803029999953, 49.043928905000016 ], [ -123.767797371, 49.04392878700002 ], [ -123.767785302, 49.044180960000098 ], [ -123.762323291999962, 49.044067287000061 ], [ -123.762406472999913, 49.042333629000026 ], [ -123.76248775199997, 49.040639523000053 ], [ -123.760829545999954, 49.040604958000088 ], [ -123.761002341999983, 49.037005546000024 ], [ -123.766463521999952, 49.037119288000035 ], [ -123.766403867999955, 49.038365003000095 ], [ -123.770822353999932, 49.038456824000058 ], [ -123.770838786999931, 49.038112992000023 ], [ -123.771524175999943, 49.038127219000039 ], [ -123.771533068999958, 49.037941109000066 ], [ -123.771994846999931, 49.037950692000017 ], [ -123.771999556, 49.037852119000014 ], [ -123.777460860999966, 49.037965302000032 ], [ -123.777434732999936, 49.038513615000028 ], [ -123.779406589999951, 49.038554412000032 ], [ -123.779504181999926, 49.036504463000085 ], [ -123.781132290999921, 49.037007896000055 ], [ -123.782847078999964, 49.037015407000084 ], [ -123.786733602999959, 49.037047884000089 ], [ -123.786716797999944, 49.038033888000044 ], [ -123.786682296, 49.040059804000094 ], [ -123.786687245999971, 49.040075134000098 ], [ -123.786799005999981, 49.040422493000044 ], [ -123.786915097999966, 49.04056810600013 ], [ -123.787591798999969, 49.041082907000053 ], [ -123.787756715999976, 49.041266392000075 ], [ -123.787860404999947, 49.041528913000079 ], [ -123.787747799999963, 49.0439036080001 ], [ -123.78765809799998, 49.044123313000064 ], [ -123.788074603999988, 49.044418408000055 ], [ -123.788329167999976, 49.044542568000097 ], [ -123.789628380999929, 49.0451763 ], [ -123.790760496999951, 49.045618411000085 ], [ -123.790887202999926, 49.045667904000048 ], [ -123.79144259199991, 49.045832499000106 ], [ -123.794294900999944, 49.046562108000046 ], [ -123.798200510999962, 49.048091515000095 ], [ -123.798894296999904, 49.0483345150001 ], [ -123.79999224099997, 49.04868172300008 ], [ -123.800328741999977, 49.048788121 ], [ -123.800963125999942, 49.048988736000091 ], [ -123.801038580999958, 49.049012602000097 ], [ -123.802106903999913, 49.049257803000081 ], [ -123.802887501, 49.04937469300009 ], [ -123.804266922999929, 49.049545188000138 ], [ -123.80429074599999, 49.050039865 ], [ -123.804294569999911, 49.050119510000101 ], [ -123.804625162999969, 49.050646885000099 ], [ -123.804850627999912, 49.050938842000043 ], [ -123.80492157299993, 49.05111682900008 ], [ -123.804919039999945, 49.051267455000087 ], [ -123.804918542999957, 49.051296920000013 ], [ -123.804748669999952, 49.05194376200005 ], [ -123.804746682999962, 49.052069361000079 ], [ -123.804731507, 49.053041119000092 ], [ -123.804728286999975, 49.053247576000025 ], [ -123.804792471999988, 49.053481271000059 ], [ -123.804917747999966, 49.053665776000045 ], [ -123.805081913999942, 49.053779904000073 ], [ -123.80572246499996, 49.05399656500002 ], [ -123.8061014849999, 49.054279931000082 ], [ -123.80617746199998, 49.054355417000096 ], [ -123.803327660999955, 49.054297175000052 ], [ -123.803321731, 49.05442303300002 ], [ -123.803606778999921, 49.054428862000051 ], [ -123.803470182999916, 49.057328316000053 ], [ -123.800274852999934, 49.057347279000055 ], [ -123.795778757999983, 49.05737371900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10006667", "BldgCostT": "6691667", "sL_LossRatio": "0.728413300166198", "sL_AssetLoss": "92059", "sL_BldgLoss": "67057", "sL_StrLoss": "30450", "sL_NStrLoss": "36607", "sL_ContLoss": "25002", "geom_point": "0101000020E6100000E04E7D7B72F15EC0F50B026D23874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.766672899999918, 49.057159705000103 ], [ -123.76646103299997, 49.056967868000086 ], [ -123.766511048999988, 49.055923837000051 ], [ -123.767968694000032, 49.055954135 ], [ -123.768098256999934, 49.053247659000121 ], [ -123.768109950999985, 49.05300336800012 ], [ -123.77357302199999, 49.053116745000061 ], [ -123.773451024999986, 49.055671454000013 ], [ -123.77757943099999, 49.055756948000052 ], [ -123.77755644899996, 49.056239068000053 ], [ -123.779100805999917, 49.056271009000049 ], [ -123.779073247999975, 49.056849525000104 ], [ -123.780014808, 49.05686898700008 ], [ -123.780011320999975, 49.056942206 ], [ -123.784180162999959, 49.057028278000111 ], [ -123.784160537999952, 49.057441167000029 ], [ -123.773193428999903, 49.057503684000054 ], [ -123.771046539999986, 49.057292120000085 ], [ -123.769983788000019, 49.057183145000081 ], [ -123.767041668999951, 49.057385149 ], [ -123.766672899999918, 49.057159705000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21221417", "BldgCostT": "14371667", "sL_LossRatio": "0.7814477319312", "sL_AssetLoss": "179536", "sL_BldgLoss": "140298", "sL_StrLoss": "78636", "sL_NStrLoss": "61662", "sL_ContLoss": "39238", "geom_point": "0101000020E61000007791DF2E3DF15EC0A41D16EE857E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.774565789999912, 48.99168520500006 ], [ -123.774080487999967, 48.991613908000083 ], [ -123.769639273999957, 48.991605325000101 ], [ -123.769527513999947, 48.991605102000051 ], [ -123.76854387799996, 48.991603176000083 ], [ -123.768570250999915, 48.991051333000044 ], [ -123.767072272999968, 48.991020159000072 ], [ -123.767081178999931, 48.991600294000094 ], [ -123.76557120399994, 48.991597298000038 ], [ -123.764714831999925, 48.991603762000089 ], [ -123.763230562, 48.991663798000069 ], [ -123.761995683999928, 48.991647964000073 ], [ -123.76153345199999, 48.991606787000116 ], [ -123.76092693699999, 48.99152744900006 ], [ -123.760454596999963, 48.991545638000055 ], [ -123.760456582999979, 48.991513602000119 ], [ -123.761265105999954, 48.989798912000026 ], [ -123.761313597999958, 48.989358805000037 ], [ -123.761257104, 48.989232084000065 ], [ -123.760872118999941, 48.989091094000024 ], [ -123.760468705999969, 48.988697999000124 ], [ -123.759752404999944, 48.988351890000096 ], [ -123.759220014999983, 48.98833769500007 ], [ -123.759304388999965, 48.988561289000067 ], [ -123.759116605999964, 48.988697993000052 ], [ -123.758870497999922, 48.988699409000127 ], [ -123.758370590999917, 48.988262199000154 ], [ -123.757657691999938, 48.98805990200006 ], [ -123.757615476999945, 48.987961695000102 ], [ -123.757764406999939, 48.98795168300007 ], [ -123.758914786999981, 48.988078489000081 ], [ -123.759078380999966, 48.988050002000072 ], [ -123.759172114999927, 48.987914707000073 ], [ -123.758895518999935, 48.987646901000048 ], [ -123.757961293999983, 48.987356408000025 ], [ -123.75747769099999, 48.987090006000109 ], [ -123.757311094999949, 48.986785307000041 ], [ -123.757378111999955, 48.986739689000089 ], [ -123.757666393999955, 48.986809511000033 ], [ -123.758702292999914, 48.9866043990001 ], [ -123.759206396999943, 48.986618598000121 ], [ -123.760085502999985, 48.986810896000108 ], [ -123.760347982000013, 48.986980402 ], [ -123.760600708999959, 48.98740189300004 ], [ -123.76056758499999, 48.987914702000118 ], [ -123.760815102999956, 48.988003005000088 ], [ -123.761674619999908, 48.987926098000081 ], [ -123.7624348249999, 48.987578502000076 ], [ -123.762926403000023, 48.987611298000083 ], [ -123.763595395999971, 48.987471708000122 ], [ -123.763850992999906, 48.987326489000068 ], [ -123.763629808999923, 48.987129899000152 ], [ -123.763748986999957, 48.987126598000081 ], [ -123.764039790999988, 48.987118503000012 ], [ -123.764629590999959, 48.9872580890001 ], [ -123.765450796999943, 48.987333602000085 ], [ -123.766014818999935, 48.98751869700002 ], [ -123.766305093999932, 48.987723815000066 ], [ -123.766495113999909, 48.987740506000051 ], [ -123.767440291999947, 48.987823512000091 ], [ -123.771422394999917, 48.988921594 ], [ -123.77210661399999, 48.988989899000046 ], [ -123.772322409999944, 48.98890729900009 ], [ -123.772753093999981, 48.988435889000051 ], [ -123.773140494999964, 48.987795008000042 ], [ -123.7731652, 48.987624093000093 ], [ -123.773011216999961, 48.987427602000047 ], [ -123.772099708999974, 48.98683080000005 ], [ -123.769408484999971, 48.986030402000075 ], [ -123.769256006999967, 48.985923582000062 ], [ -123.769757702999954, 48.985530635 ], [ -123.769947475999942, 48.985381984000057 ], [ -123.769986902999918, 48.985351084000101 ], [ -123.770791698999957, 48.984374092000103 ], [ -123.771108378999969, 48.98374319300013 ], [ -123.770899014999884, 48.98337569800006 ], [ -123.770864205999914, 48.9828714860001 ], [ -123.770706140999948, 48.982655853 ], [ -123.770667994999926, 48.982603816000051 ], [ -123.76855039099999, 48.981744990000095 ], [ -123.768395894999941, 48.981457315000071 ], [ -123.768488288999919, 48.981332003000034 ], [ -123.768694688999958, 48.981339105000053 ], [ -123.768982812999937, 48.981490101000091 ], [ -123.769157102999884, 48.981219501000034 ], [ -123.769387596999934, 48.981172493 ], [ -123.77069438499997, 48.981668098000085 ], [ -123.772141506999958, 48.9824229090001 ], [ -123.772730704999987, 48.982598099000036 ], [ -123.772994194999981, 48.982838791000106 ], [ -123.773475112999904, 48.982971201000076 ], [ -123.773146997999973, 48.982991193000039 ], [ -123.773094687999958, 48.983072394000061 ], [ -123.773090203999956, 48.983657689000047 ], [ -123.773228990999925, 48.983827193000089 ], [ -123.773779895999951, 48.984039414000037 ], [ -123.7741749099999, 48.984855492000072 ], [ -123.77561338, 48.986896397000073 ], [ -123.776126894999976, 48.987352104000095 ], [ -123.776786487, 48.987564305000056 ], [ -123.777682113999987, 48.988069898000042 ], [ -123.77791600099998, 48.988105487000048 ], [ -123.777508903999973, 48.988323409000046 ], [ -123.777358522000014, 48.9891523000001 ], [ -123.776954685999925, 48.989622290000121 ], [ -123.776850476, 48.989884295000095 ], [ -123.77688249, 48.990297402000046 ], [ -123.777646592999957, 48.991075005000056 ], [ -123.778195662999906, 48.991445231000057 ], [ -123.775610971999953, 48.991958192000048 ], [ -123.774565789999912, 48.99168520500006 ] ], [ [ -123.766963514999958, 48.990977084000065 ], [ -123.767007046999979, 48.990066820000024 ], [ -123.766237228999955, 48.990050790000048 ], [ -123.766251506999978, 48.99098181500009 ], [ -123.766963514999958, 48.990977084000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.801957602190892", "sL_AssetLoss": "19718", "sL_BldgLoss": "15813", "sL_StrLoss": "8630", "sL_NStrLoss": "7183", "sL_ContLoss": "3905", "geom_point": "0101000020E61000002DA305267FF05EC007AB77D9AB844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.755052834999972, 49.037190715000143 ], [ -123.75505932899992, 49.037055776000116 ], [ -123.753715993999919, 49.037027682000065 ], [ -123.753742263999925, 49.036482201000084 ], [ -123.754768407999933, 49.036628282000031 ], [ -123.754903704999961, 49.036457406000046 ], [ -123.754764715999954, 49.036349206000068 ], [ -123.754791752999964, 49.036275997000118 ], [ -123.754831008999986, 49.036169702000088 ], [ -123.754603271999883, 49.035871794000045 ], [ -123.75454271299999, 49.035792555000114 ], [ -123.76194381199997, 49.035788431000086 ], [ -123.761920920999927, 49.036265528000065 ], [ -123.760565274999976, 49.036237262000036 ], [ -123.760514021999981, 49.037304759000108 ], [ -123.755052834999972, 49.037190715000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.808676307007786", "sL_AssetLoss": "8990", "sL_BldgLoss": "7270", "sL_StrLoss": "4040", "sL_NStrLoss": "3230", "sL_ContLoss": "1720", "geom_point": "0101000020E6100000ADE6CE869BF35EC0BF46B32E45874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.804214232999954, 49.05620656700011 ], [ -123.808121040999978, 49.05628635500009 ], [ -123.808554422999975, 49.0567168950001 ], [ -123.809070048999956, 49.057294853000045 ], [ -123.804161593999964, 49.057324201000071 ], [ -123.804214232999954, 49.05620656700011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14667916", "BldgCostT": "8641666", "sL_LossRatio": "0.798618027888446", "sL_AssetLoss": "48192", "sL_BldgLoss": "38487", "sL_StrLoss": "22150", "sL_NStrLoss": "16337", "sL_ContLoss": "9705", "geom_point": "0101000020E6100000D12B12D1F7EF5EC0D003E5D70B854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.747530995999924, 49.037575405000062 ], [ -123.74715709899999, 49.037155285000011 ], [ -123.74732357000002, 49.037017297000027 ], [ -123.747344406999957, 49.037000004000063 ], [ -123.747714488999961, 49.036998596000046 ], [ -123.748744900999924, 49.037279197000018 ], [ -123.749125993999911, 49.037142499000062 ], [ -123.750139799999914, 49.037170913000061 ], [ -123.750198325999961, 49.037183494000018 ], [ -123.750550592999971, 49.037259194000136 ], [ -123.75075849199996, 49.037418810000084 ], [ -123.750991692999946, 49.037417304 ], [ -123.75140058199996, 49.037316201000081 ], [ -123.751260520999921, 49.037082598000033 ], [ -123.751455244999974, 49.037069257000084 ], [ -123.751470871999956, 49.037068182000056 ], [ -123.75169659, 49.037052714000026 ], [ -123.751831400999933, 49.036917387000123 ], [ -123.75157051299999, 49.036774988000097 ], [ -123.751430934999945, 49.036532258000122 ], [ -123.751532063999946, 49.036534376000162 ], [ -123.752169598999956, 49.036690997000093 ], [ -123.752118746999955, 49.036546661000038 ], [ -123.752543507999945, 49.036555552000038 ], [ -123.752370059999961, 49.040154952000094 ], [ -123.750670300999943, 49.040119360000084 ], [ -123.750537043999941, 49.042882230000046 ], [ -123.749246510999953, 49.042386405000059 ], [ -123.748146494999943, 49.042024587000071 ], [ -123.747652185999954, 49.041937795000074 ], [ -123.747072609999975, 49.041608789000051 ], [ -123.746902077999948, 49.041266997000051 ], [ -123.747119088999924, 49.041113210000056 ], [ -123.747197491999955, 49.040896694000018 ], [ -123.746864287999969, 49.040485106000048 ], [ -123.746650194999958, 49.039919692000076 ], [ -123.747012113, 49.039485296000059 ], [ -123.747325301999979, 49.039384205000054 ], [ -123.747337298999966, 49.039231806000068 ], [ -123.746962798000013, 49.038901404000114 ], [ -123.746767582999951, 49.03851709000002 ], [ -123.746525781999964, 49.038041093000082 ], [ -123.746864879999947, 49.037813296000088 ], [ -123.747150276999918, 49.037757694000092 ], [ -123.747286412999983, 49.037612498000023 ], [ -123.747530995999924, 49.037575405000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16623500", "BldgCostT": "11255000", "sL_LossRatio": "0.748249515465881", "sL_AssetLoss": "178522", "sL_BldgLoss": "133579", "sL_StrLoss": "60989", "sL_NStrLoss": "72590", "sL_ContLoss": "44943", "geom_point": "0101000020E610000049C25B7389EB5EC000E28D50DC814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.686556886999966, 49.021158593000031 ], [ -123.685701815999963, 49.020749802000054 ], [ -123.68571551099997, 49.020687107000043 ], [ -123.686056922999938, 49.020667201000087 ], [ -123.686479401000014, 49.020530509000046 ], [ -123.686283695999947, 49.020315402000044 ], [ -123.68610662599994, 49.020298304000022 ], [ -123.685520684999943, 49.020482106000017 ], [ -123.684890394, 49.020440804000017 ], [ -123.684672510999974, 49.020388099000037 ], [ -123.684450317999946, 49.020208604000118 ], [ -123.683533407999974, 49.020151599000044 ], [ -123.682928385999972, 49.019903792000036 ], [ -123.68249042, 49.019879602000046 ], [ -123.682254110999935, 49.019628992000037 ], [ -123.682014693999946, 49.019099112000134 ], [ -123.681809294999979, 49.019082090000019 ], [ -123.681454993999964, 49.019228803000033 ], [ -123.681124922, 49.019140500000049 ], [ -123.680903601999916, 49.018943914000047 ], [ -123.680670176999968, 49.018872693000056 ], [ -123.680414980999927, 49.019109098000108 ], [ -123.680304300999936, 49.01910909 ], [ -123.679004111000012, 49.01807370900012 ], [ -123.678211511999933, 49.017996790000012 ], [ -123.677564809999978, 49.017757484000072 ], [ -123.676722078999902, 49.017223494000127 ], [ -123.676154694999951, 49.016659494000116 ], [ -123.675455119999967, 49.01644870700008 ], [ -123.675504221999972, 49.016169602000069 ], [ -123.675023802999959, 49.015974413000066 ], [ -123.674687978999927, 49.015373399000111 ], [ -123.67469598299999, 49.015040205000034 ], [ -123.675173680999976, 49.014874900000059 ], [ -123.675155880999981, 49.014641392000073 ], [ -123.674616377999939, 49.014212695 ], [ -123.674093204999949, 49.013954910000052 ], [ -123.673423703999944, 49.013967689000033 ], [ -123.672736484999959, 49.013665802000084 ], [ -123.672733881999932, 49.01343219600011 ], [ -123.672972690000023, 49.012936601000042 ], [ -123.673447190999951, 49.012573389000131 ], [ -123.673326722999931, 49.011791501000054 ], [ -123.672700889999987, 49.010985398000059 ], [ -123.672614625999955, 49.01070770300008 ], [ -123.671809688999971, 49.00988450400007 ], [ -123.671639680999974, 49.009489999000024 ], [ -123.67102989699994, 49.00883630200007 ], [ -123.670830624999979, 49.00869258700007 ], [ -123.67625867799994, 49.008810278000084 ], [ -123.676258480999977, 49.008814232000127 ], [ -123.676566505999915, 49.008820903000114 ], [ -123.676571903, 49.008712488000079 ], [ -123.679821286999967, 49.008782799000066 ], [ -123.679835848999943, 49.008489873000087 ], [ -123.680065386999942, 49.008604201000047 ], [ -123.680605299999911, 49.00911260700007 ], [ -123.681556896999936, 49.009611112000108 ], [ -123.682122019999952, 49.010048299000083 ], [ -123.683481310999937, 49.011308686000106 ], [ -123.683497013999968, 49.011542288000015 ], [ -123.68407911599995, 49.012087806000117 ], [ -123.683949687000023, 49.012647506000107 ], [ -123.68435682, 49.01334530400004 ], [ -123.684187797999925, 49.014040406000042 ], [ -123.684469690999961, 49.014560211000031 ], [ -123.6851434, 49.01484360200002 ], [ -123.684996916, 49.015195401000014 ], [ -123.685277006999939, 49.01573369300008 ], [ -123.686602384999929, 49.016616798000044 ], [ -123.686674783999933, 49.016796204000052 ], [ -123.686471602999944, 49.017048284000076 ], [ -123.687784106999928, 49.017931285000046 ], [ -123.689136709999943, 49.019839687000122 ], [ -123.689480013999926, 49.019873903000089 ], [ -123.690115705999943, 49.020490597000091 ], [ -123.689844489999928, 49.020563197000122 ], [ -123.689859308999985, 49.020698484000064 ], [ -123.689615485, 49.020772597000082 ], [ -123.689825982999977, 49.021265402000026 ], [ -123.68976091599994, 49.021392107000111 ], [ -123.689113597999921, 49.021188485000103 ], [ -123.688647403999965, 49.021137190000054 ], [ -123.688222184999944, 49.020897898000065 ], [ -123.688113403, 49.020952091000034 ], [ -123.688890422999961, 49.021810805000058 ], [ -123.689346816999944, 49.022114205000065 ], [ -123.689924107999957, 49.022353493000089 ], [ -123.690007701, 49.022424697000176 ], [ -123.6899254, 49.022497305000101 ], [ -123.689389399000021, 49.022230989 ], [ -123.688522209999988, 49.022071773000079 ], [ -123.688442915999985, 49.022057207000096 ], [ -123.68764050399993, 49.021432006000083 ], [ -123.687322876999971, 49.021298098000074 ], [ -123.686556886999966, 49.021158593000031 ] ], [ [ -123.680501060999973, 49.013654461000044 ], [ -123.680563303, 49.012402146000042 ], [ -123.679128267999928, 49.012371119000072 ], [ -123.679122876999898, 49.012479534000171 ], [ -123.678784557999947, 49.012472216000056 ], [ -123.678800132999982, 49.01361768200006 ], [ -123.680501060999973, 49.013654461000044 ] ], [ [ -123.682507915999963, 49.010741582000016 ], [ -123.682509449999955, 49.0107106970001 ], [ -123.681936795999931, 49.010698329 ], [ -123.681935262999929, 49.010729213000083 ], [ -123.682507915999963, 49.010741582000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.780870233272803", "sL_AssetLoss": "28636", "sL_BldgLoss": "22361", "sL_StrLoss": "10830", "sL_NStrLoss": "11531", "sL_ContLoss": "6275", "geom_point": "0101000020E61000001112B3A899ED5EC0C3FB60CF0D904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.713652594999985, 49.127323410000031 ], [ -123.713347485999975, 49.12703710500007 ], [ -123.712619885999956, 49.127049895000063 ], [ -123.711777514999966, 49.126507296000092 ], [ -123.711529793999929, 49.126471699 ], [ -123.711039296999942, 49.126628403000069 ], [ -123.710791984999915, 49.126557203000132 ], [ -123.709861400999927, 49.125799490000098 ], [ -123.708980996999955, 49.125305423000071 ], [ -123.709047174999938, 49.123960818000107 ], [ -123.714518425, 49.124077186000065 ], [ -123.714485360999973, 49.124750599000073 ], [ -123.716242242999968, 49.124787907000076 ], [ -123.716228005999966, 49.125309605000027 ], [ -123.715654380999979, 49.125501795000034 ], [ -123.715437992999952, 49.125701194000023 ], [ -123.715071021999961, 49.125839406000132 ], [ -123.714815118999965, 49.126101399000028 ], [ -123.714790710999949, 49.126389102000076 ], [ -123.715225212999925, 49.127034306000034 ], [ -123.715212291999975, 49.127142495000108 ], [ -123.714870396999942, 49.127216611000065 ], [ -123.714614404999963, 49.127397499000054 ], [ -123.714188884999885, 49.127472901000012 ], [ -123.713652594999985, 49.127323410000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.945641025641026", "sL_AssetLoss": "9750", "sL_BldgLoss": "9220", "sL_StrLoss": "7600", "sL_NStrLoss": "1620", "sL_ContLoss": "530", "geom_point": "0101000020E6100000225CB7F71FF25EC06DC0CEEAF07B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.777546089999959, 48.966967401000062 ], [ -123.775389005999941, 48.966199706000083 ], [ -123.775055985999984, 48.965886409000099 ], [ -123.774942195999984, 48.965546009000043 ], [ -123.774884629999931, 48.964563803000132 ], [ -123.774853617999938, 48.96403473 ], [ -123.774946080999982, 48.96407405300009 ], [ -123.775009193999963, 48.964100891000015 ], [ -123.77518550399999, 48.964210900000076 ], [ -123.775344995999959, 48.964356486000064 ], [ -123.775452893999926, 48.964525390000112 ], [ -123.775521001999962, 48.96467280400006 ], [ -123.775531320999974, 48.964777394000066 ], [ -123.775541182999916, 48.964877694000066 ], [ -123.775510881999963, 48.965400503000062 ], [ -123.775641383999968, 48.965583397000117 ], [ -123.776053834999956, 48.96593387100009 ], [ -123.776182385999931, 48.965971095000064 ], [ -123.776519900999986, 48.966104311000095 ], [ -123.776980687999952, 48.966199983000067 ], [ -123.77700629499999, 48.966205296000105 ], [ -123.777562303999929, 48.966279 ], [ -123.77807422, 48.966304900000118 ], [ -123.778247105999981, 48.966308004000076 ], [ -123.780023334999939, 48.966339852000054 ], [ -123.78030611, 48.966344897000063 ], [ -123.781054399, 48.966449487 ], [ -123.781779869000033, 48.966598090000062 ], [ -123.782038180999919, 48.966650995000045 ], [ -123.782136227999928, 48.966675470000112 ], [ -123.7828248799999, 48.966847269000013 ], [ -123.783532034999922, 48.967023694000055 ], [ -123.78389343799995, 48.967113839000028 ], [ -123.784097773999974, 48.9671648180001 ], [ -123.784672110999963, 48.967308081000098 ], [ -123.785096381999949, 48.967483488000056 ], [ -123.785561934000029, 48.967731387000065 ], [ -123.786477814999955, 48.968219147000106 ], [ -123.786760074999947, 48.968369434000095 ], [ -123.787472242999939, 48.968748737000048 ], [ -123.78767708299992, 48.968865285000064 ], [ -123.78797429499997, 48.969034405000059 ], [ -123.788080931999943, 48.969095067000083 ], [ -123.787896264999958, 48.97126451000009 ], [ -123.788039640999926, 48.971900581000099 ], [ -123.788039446999932, 48.971901210000091 ], [ -123.787924198999974, 48.971880895000105 ], [ -123.78718310899994, 48.971633095000094 ], [ -123.786631201999924, 48.971349684000074 ], [ -123.785552904999975, 48.970564904000057 ], [ -123.784452704999978, 48.970042284000073 ], [ -123.783718713999946, 48.969462604000071 ], [ -123.783030325999945, 48.96915210500002 ], [ -123.782519397999948, 48.968696404000099 ], [ -123.78192850899994, 48.968467100000098 ], [ -123.780603700999933, 48.967631108000013 ], [ -123.780259310999952, 48.967507207000047 ], [ -123.777546089999959, 48.966967401000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76151002", "BldgCostT": "50600958", "sL_LossRatio": "0.768672476873197", "sL_AssetLoss": "672380", "sL_BldgLoss": "516840", "sL_StrLoss": "272633", "sL_NStrLoss": "244207", "sL_ContLoss": "155540", "geom_point": "0101000020E61000007188340131EB5EC071893CAC647E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.689142942999965, 48.990118815000081 ], [ -123.690018232999989, 48.990113584000085 ], [ -123.690029899999928, 48.989877756000034 ], [ -123.689139352999945, 48.989858572000117 ], [ -123.689142942999965, 48.990118815000081 ], [ -123.688629257999963, 48.990121883000086 ], [ -123.687912800999982, 48.990126156000073 ], [ -123.687901654999962, 48.989316608000124 ], [ -123.687491613999967, 48.989319052000035 ], [ -123.687480475999962, 48.988509503000081 ], [ -123.687070442, 48.988511946000038 ], [ -123.68705776099992, 48.987589724000053 ], [ -123.687055600999983, 48.987432547000012 ], [ -123.687595150999954, 48.987429333000101 ], [ -123.687632477999927, 48.986675546000058 ], [ -123.683287692999954, 48.986581777000033 ], [ -123.6832405699999, 48.987531575000091 ], [ -123.683203872999925, 48.988271204000043 ], [ -123.682073691999946, 48.988246784000111 ], [ -123.682003901999906, 48.989652630000116 ], [ -123.680887677999976, 48.989628500000052 ], [ -123.680864981999946, 48.990085456000031 ], [ -123.679584168999924, 48.990057753000031 ], [ -123.679551051999951, 48.990724147000087 ], [ -123.679855553999985, 48.990730734000053 ], [ -123.679676674999939, 48.994330273000074 ], [ -123.674220713999958, 48.994212111000131 ], [ -123.674302953, 48.992561176000095 ], [ -123.673293878999957, 48.992539292000117 ], [ -123.673416077, 48.990087048000106 ], [ -123.672523299999909, 48.990067678000067 ], [ -123.672551857, 48.989494789000027 ], [ -123.672094719999976, 48.989484869000073 ], [ -123.672189209999914, 48.987589526000093 ], [ -123.670083676999937, 48.98754380400004 ], [ -123.669937168999965, 48.99047982400009 ], [ -123.668675637999925, 48.990452410000024 ], [ -123.66857077899999, 48.992552425000021 ], [ -123.6689664699999, 48.992561025000022 ], [ -123.668950371999955, 48.992883439000096 ], [ -123.668786742999913, 48.996160536000026 ], [ -123.663330595999952, 48.996041820000052 ], [ -123.663387808, 48.994898742000032 ], [ -123.66169664899995, 48.994861889000042 ], [ -123.661659028999949, 48.99561301300006 ], [ -123.66117647399993, 48.995602492000025 ], [ -123.661169282999936, 48.995746034 ], [ -123.661306947999961, 48.995749035000038 ], [ -123.661126618999944, 48.999348515000058 ], [ -123.65742104799989, 48.999267660000058 ], [ -123.657498117, 48.998946600000131 ], [ -123.65716379399997, 48.998382603000017 ], [ -123.657113797999955, 48.997807194000046 ], [ -123.656920088000021, 48.997627807000065 ], [ -123.65695978899997, 48.997465398000081 ], [ -123.65645091, 48.997244693000013 ], [ -123.655657780999974, 48.996730647000057 ], [ -123.655666369999963, 48.996559598000019 ], [ -123.655425710999964, 48.996554338000088 ], [ -123.655387602999966, 48.996350311000107 ], [ -123.65501267599997, 48.996038395000035 ], [ -123.654715413999938, 48.99517529700011 ], [ -123.654469000999967, 48.995230810000116 ], [ -123.654445486999975, 48.995537002000034 ], [ -123.654227180999939, 48.995546998000059 ], [ -123.65318958899995, 48.994473212000045 ], [ -123.653324411999932, 48.994419009000062 ], [ -123.653489191999981, 48.994534407000089 ], [ -123.653652606999941, 48.994498792000101 ], [ -123.653749377999972, 48.993453398000106 ], [ -123.654173797999974, 48.992534812000024 ], [ -123.654197500999956, 48.992201509000083 ], [ -123.65408301799998, 48.991805604000042 ], [ -123.653762189999952, 48.991348407000103 ], [ -123.653171785999987, 48.991038001000049 ], [ -123.652107008999963, 48.990089391000055 ], [ -123.65213028699999, 48.98993699100005 ], [ -123.652495897999955, 48.98952118799999 ], [ -123.652464104999979, 48.989197911000119 ], [ -123.652651391999925, 48.988863210000041 ], [ -123.652537089999896, 48.988639593000073 ], [ -123.652632591999975, 48.988539891000094 ], [ -123.653082194999982, 48.988447307000037 ], [ -123.65367218899992, 48.988651007000108 ], [ -123.654233714999933, 48.988675207000057 ], [ -123.654682486999974, 48.988545594000065 ], [ -123.655148809999972, 48.988588308000061 ], [ -123.655804013999983, 48.988531300000034 ], [ -123.65634810899995, 48.988356184000089 ], [ -123.656890919999981, 48.988003001000088 ], [ -123.657239591999911, 48.987605599000084 ], [ -123.65758931, 48.987152702000046 ], [ -123.657785487999945, 48.986415001000111 ], [ -123.657919581, 48.986320767000052 ], [ -123.658095514999985, 48.986197093 ], [ -123.658775578999936, 48.985896597000121 ], [ -123.659948316999973, 48.985673005000102 ], [ -123.660505095999952, 48.985391015000069 ], [ -123.661375592999931, 48.985098998000147 ], [ -123.661540876999965, 48.985106093000049 ], [ -123.661487200999957, 48.985170201000066 ], [ -123.660072508999917, 48.985825306000031 ], [ -123.659979399999926, 48.985970589000033 ], [ -123.660435008999954, 48.986246899000065 ], [ -123.661161991999975, 48.98648480100006 ], [ -123.661421204999968, 48.986456292000057 ], [ -123.661827079999924, 48.986157198000086 ], [ -123.661837691999949, 48.985923600000014 ], [ -123.661324108999935, 48.98535109100002 ], [ -123.661555286999928, 48.985268493000071 ], [ -123.66167759699999, 48.985106097000028 ], [ -123.661689200999973, 48.984943800000089 ], [ -123.661494797, 48.984765689000042 ], [ -123.66199708399995, 48.98443819800007 ], [ -123.663008920999971, 48.984468099 ], [ -123.663528602999989, 48.984573509000072 ], [ -123.664540603999939, 48.984549301000065 ], [ -123.665570504999948, 48.983868502000092 ], [ -123.665632681999952, 48.983860464000067 ], [ -123.665856201999972, 48.983831509000048 ], [ -123.667116786999955, 48.98408500500009 ], [ -123.668957802999927, 48.984758594000063 ], [ -123.66898389399995, 48.98465890500006 ], [ -123.668705399999922, 48.984345609000059 ], [ -123.668005308999938, 48.983009693000064 ], [ -123.667815793999978, 48.983172003000028 ], [ -123.667135701999911, 48.983472609000032 ], [ -123.666236896999976, 48.983703307000013 ], [ -123.665853387999974, 48.983706092000062 ], [ -123.6672693, 48.983301600000097 ], [ -123.667826201999929, 48.982992594000045 ], [ -123.668151304999967, 48.982702086000124 ], [ -123.66836924199994, 48.982640793000058 ], [ -123.668571886, 48.982583797000068 ], [ -123.669023984999967, 48.982571002000114 ], [ -123.669751379999923, 48.982739099000057 ], [ -123.669826794999963, 48.983295987000069 ], [ -123.670975415999948, 48.983989050000041 ], [ -123.67106601899998, 48.984043706000143 ], [ -123.672121884999939, 48.984298605000106 ], [ -123.67251801499998, 48.984215995000106 ], [ -123.672723709999929, 48.984385502000059 ], [ -123.67302648899998, 48.984490911000123 ], [ -123.673858887999955, 48.984369795000077 ], [ -123.675021299999969, 48.9843711850001 ], [ -123.67549801399997, 48.984234492000077 ], [ -123.676105294999971, 48.983790201000062 ], [ -123.676279592999947, 48.983528092000014 ], [ -123.676291599999942, 48.983284595000072 ], [ -123.675643518999919, 48.982884402000074 ], [ -123.674174297999969, 48.982496994000016 ], [ -123.673678206999924, 48.982158008000049 ], [ -123.672706406999936, 48.981029997000043 ], [ -123.671490480999921, 48.979048999000078 ], [ -123.67057461499999, 48.977983608000066 ], [ -123.670343518999985, 48.978039196000104 ], [ -123.669927894999901, 48.977600508000108 ], [ -123.669259508999957, 48.976669106000031 ], [ -123.668766393999931, 48.975600891000056 ], [ -123.66853370699999, 48.974505683000075 ], [ -123.668044024999944, 48.973717469000107 ], [ -123.667932094999941, 48.973537303000114 ], [ -123.667761486999936, 48.973052999000039 ], [ -123.66756679300002, 48.970768602000106 ], [ -123.66769778299999, 48.970272995000073 ], [ -123.667885597999955, 48.970029411000084 ], [ -123.667988023999953, 48.969515301000065 ], [ -123.668109601999944, 48.969415608000055 ], [ -123.669077019999975, 48.970147598000047 ], [ -123.669968706999953, 48.970431098000077 ], [ -123.670405311999957, 48.970411090000013 ], [ -123.670718197, 48.970291499000012 ], [ -123.671785001999979, 48.970438206000082 ], [ -123.672305073999951, 48.970435293000037 ], [ -123.673354605999961, 48.970221701000057 ], [ -123.673583998000012, 48.969996685000076 ], [ -123.673230987999915, 48.969206197000076 ], [ -123.673212699999951, 48.968901488000064 ], [ -123.673361401999927, 48.968818900000073 ], [ -123.673635093999962, 48.968826005000047 ], [ -123.67443679199999, 48.969486790000062 ], [ -123.674897792999957, 48.970285800000035 ], [ -123.675272396999944, 48.970570590000086 ], [ -123.675467906999955, 48.970938102000098 ], [ -123.674943107999951, 48.970600610000083 ], [ -123.674304278999927, 48.970801403000074 ], [ -123.674554606999891, 48.971060585000039 ], [ -123.674418813999978, 48.971170205000114 ], [ -123.67418559799998, 48.971126113000061 ], [ -123.673992514999895, 48.970965100000114 ], [ -123.673761603999964, 48.970993596000021 ], [ -123.673389378999971, 48.971769799000064 ], [ -123.673339393999981, 48.972130098000108 ], [ -123.674300103999911, 48.973464589000081 ], [ -123.674594701999979, 48.97415539200005 ], [ -123.67487179299998, 48.974351914000039 ], [ -123.675289789999979, 48.9749245080001 ], [ -123.675764698999984, 48.975749087000054 ], [ -123.675770379999932, 48.976199096000066 ], [ -123.676215217999967, 48.976709 ], [ -123.676288783999937, 48.977023703000064 ], [ -123.676660297999945, 48.977264401000099 ], [ -123.676731592999914, 48.97750650200004 ], [ -123.676652390999948, 48.977722993000036 ], [ -123.676891506999965, 48.978190186000077 ], [ -123.677362795999954, 48.978718515000018 ], [ -123.677392481, 48.978942095000058 ], [ -123.676848484999979, 48.979017596000048 ], [ -123.67668850699998, 48.979369409000086 ], [ -123.676940117999962, 48.97974540200002 ], [ -123.6774770899999, 48.98013848900009 ], [ -123.678309887999916, 48.981032895000155 ], [ -123.678381992999931, 48.981312009000177 ], [ -123.678656797999963, 48.981462999000073 ], [ -123.679588216999946, 48.981592596000034 ], [ -123.681024685999944, 48.981619697000113 ], [ -123.683126112999929, 48.981418795000081 ], [ -123.683944301999972, 48.981242188000074 ], [ -123.686024900999911, 48.98051021 ], [ -123.686569387999896, 48.980426196000089 ], [ -123.687526212999941, 48.980403406000036 ], [ -123.688622879999983, 48.980540091000073 ], [ -123.689093981999918, 48.981049995000014 ], [ -123.690049786, 48.981071295000042 ], [ -123.690299488999983, 48.981205211000031 ], [ -123.690997198999966, 48.98129920700007 ], [ -123.691410616999946, 48.981531405000105 ], [ -123.691663809999952, 48.982069694000089 ], [ -123.69202230599997, 48.982364493000013 ], [ -123.692028991999962, 48.982813102000073 ], [ -123.69236338499995, 48.983261803000119 ], [ -123.692335690000021, 48.984170407000072 ], [ -123.692134211999957, 48.984503701000079 ], [ -123.692137594999963, 48.984747199000076 ], [ -123.692317697, 48.98493518600003 ], [ -123.692876779999963, 48.984886802000034 ], [ -123.693574278999961, 48.986862193000022 ], [ -123.693976805999966, 48.987209709000055 ], [ -123.694249986999978, 48.987164106000066 ], [ -123.6943043099999, 48.987225310000021 ], [ -123.694421605999977, 48.98785478500006 ], [ -123.694630095999955, 48.988015813000096 ], [ -123.694841407999945, 48.988455893000022 ], [ -123.694844021999984, 48.988689400000041 ], [ -123.695093913999941, 48.989011302000115 ], [ -123.695420476999971, 48.989827394000024 ], [ -123.695453821999962, 48.99020620300012 ], [ -123.695246598999972, 48.991133399000049 ], [ -123.695725608999965, 48.991157586000099 ], [ -123.695933606999972, 48.991354082000072 ], [ -123.695932807999952, 48.992227208000045 ], [ -123.696141483999966, 48.992576104000065 ], [ -123.696909177999956, 48.992715694000012 ], [ -123.697124493999922, 48.992453590000061 ], [ -123.697162809999938, 48.992201510000058 ], [ -123.69747880099996, 48.992406608000081 ], [ -123.697953389999938, 48.994067294000111 ], [ -123.698285308999971, 48.994236710000088 ], [ -123.698610212999981, 48.994045908000082 ], [ -123.698857084999943, 48.994169797000083 ], [ -123.699155007999963, 48.994933195000058 ], [ -123.69930650299996, 48.995894504000077 ], [ -123.699702711999919, 48.996500596000082 ], [ -123.699532778999952, 48.996496951000054 ], [ -123.699515905999959, 48.996839378000082 ], [ -123.699359218999973, 48.996836018000096 ], [ -123.69932603499997, 48.997509381000057 ], [ -123.693869654, 48.997392219000091 ], [ -123.693897475999961, 48.996828975000078 ], [ -123.690734561999989, 48.996760933000054 ], [ -123.68877300399997, 48.996718687000069 ], [ -123.688951191999976, 48.993119147000101 ], [ -123.689449462, 48.993129881000122 ], [ -123.689483608999979, 48.992439857000086 ], [ -123.690405531999943, 48.992459713000095 ], [ -123.690399183999915, 48.992000406000059 ], [ -123.689989121999972, 48.992002859000046 ], [ -123.689981667999987, 48.991463160000102 ], [ -123.689571610999977, 48.991465611000109 ], [ -123.689567885999978, 48.991195763000107 ], [ -123.6891578299999, 48.991198212000079 ], [ -123.689151701999961, 48.990753873000067 ], [ -123.689142942999965, 48.990118815000081 ] ], [ [ -123.691629371999909, 48.991993038 ], [ -123.69163464699993, 48.992374098000042 ], [ -123.691653494999912, 48.991992893000031 ], [ -123.691629371999909, 48.991993038 ] ], [ [ -123.689047562999946, 48.989309769000059 ], [ -123.689051798999969, 48.989224164000113 ], [ -123.688720431999954, 48.989217024000062 ], [ -123.688721735999962, 48.989311716000046 ], [ -123.689047562999946, 48.989309769000059 ] ], [ [ -123.668426831, 48.98684355200006 ], [ -123.668459343, 48.986192436000103 ], [ -123.668176331999945, 48.986194075000107 ], [ -123.66817994099992, 48.98646392600007 ], [ -123.667359901999973, 48.986468672000029 ], [ -123.667364599999956, 48.986820453000128 ], [ -123.668426831, 48.98684355200006 ] ], [ [ -123.682872376999953, 48.984660605 ], [ -123.682920218999953, 48.983696425000055 ], [ -123.682592257999971, 48.983689338000055 ], [ -123.682557926999891, 48.984381131000077 ], [ -123.681685965999961, 48.984362284000092 ], [ -123.681683592999946, 48.984410053000019 ], [ -123.678095762999973, 48.984332431000041 ], [ -123.678086583999942, 48.984517022000077 ], [ -123.678404756999939, 48.984515152 ], [ -123.678405419999976, 48.984563995000038 ], [ -123.682872376999953, 48.984660605 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.779856115107914", "sL_AssetLoss": "20850", "sL_BldgLoss": "16260", "sL_StrLoss": "7750", "sL_NStrLoss": "8510", "sL_ContLoss": "4590", "geom_point": "0101000020E61000008394AF36CCE85EC0D655C376DE784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.638093420999937, 48.942338325000087 ], [ -123.638162803999975, 48.94212024100009 ], [ -123.638414890999954, 48.942335694000107 ], [ -123.639525918999979, 48.942815697000079 ], [ -123.639584775999978, 48.942826287000038 ], [ -123.639467799999977, 48.945142605000086 ], [ -123.638250493999962, 48.945115779000034 ], [ -123.6382046, 48.946024034000061 ], [ -123.636504547999934, 48.945986545000054 ], [ -123.63457277099999, 48.944805497000097 ], [ -123.634535313999919, 48.944650974000048 ], [ -123.638093420999937, 48.942338325000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.771033653846154", "sL_AssetLoss": "16640", "sL_BldgLoss": "12830", "sL_StrLoss": "5920", "sL_NStrLoss": "6910", "sL_ContLoss": "3810", "geom_point": "0101000020E6100000DE61EA1948ED5EC0AF9F596D59824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.708587512999941, 49.019992106000146 ], [ -123.708367301999928, 49.019812707000028 ], [ -123.707795115999943, 49.01996080600005 ], [ -123.707453304999902, 49.019962194000101 ], [ -123.707218194999911, 49.019882489000061 ], [ -123.7072583, 49.019838303000036 ], [ -123.707832404, 49.019798406000049 ], [ -123.708021280999944, 49.019617603000071 ], [ -123.707953701999926, 49.019572011000051 ], [ -123.706731894999933, 49.019220212000086 ], [ -123.706334085999984, 49.019213103000077 ], [ -123.706446201999967, 49.019356888000097 ], [ -123.706391815999922, 49.019411102000078 ], [ -123.705679028999896, 49.019299720000106 ], [ -123.70511591599994, 49.019211731000048 ], [ -123.705203269999956, 49.017435517000074 ], [ -123.706145871999965, 49.017455668000117 ], [ -123.706173360999955, 49.016896439000028 ], [ -123.709071417999951, 49.016958341000077 ], [ -123.709402700999973, 49.017558197000028 ], [ -123.709419702, 49.017835902000094 ], [ -123.709598617999973, 49.017988304000049 ], [ -123.709425081999925, 49.0182687940001 ], [ -123.70959480099998, 49.018626295000026 ], [ -123.709425504999956, 49.01928429700007 ], [ -123.709472250999951, 49.019351412000077 ], [ -123.709774698000018, 49.019785599000052 ], [ -123.709707598999898, 49.019858303000071 ], [ -123.708985501999976, 49.020033409000106 ], [ -123.708587512999941, 49.019992106000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.795712484237074", "sL_AssetLoss": "11895", "sL_BldgLoss": "9465", "sL_StrLoss": "4777", "sL_NStrLoss": "4688", "sL_ContLoss": "2430", "geom_point": "0101000020E61000002C5E347D19EC5EC017D013E8767C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.688703178999944, 48.97450825800005 ], [ -123.688025297999957, 48.973994408000046 ], [ -123.687468585999923, 48.974115502000053 ], [ -123.68740210799993, 48.974313507000048 ], [ -123.687210099999916, 48.974269303000085 ], [ -123.686902002999958, 48.973659792000092 ], [ -123.686221608999944, 48.972971889000128 ], [ -123.685940188999922, 48.972387889000082 ], [ -123.68606069599997, 48.972117309000105 ], [ -123.686251120999955, 48.972053201000044 ], [ -123.686946110999912, 48.97204040600009 ], [ -123.687146790999961, 48.971697201000083 ], [ -123.687513600999978, 48.97147068500005 ], [ -123.688314887, 48.971185905000063 ], [ -123.688568993999979, 48.970744416000116 ], [ -123.688441613999927, 48.970448190000084 ], [ -123.688756495999982, 48.970455305000023 ], [ -123.688863223999974, 48.970274401000076 ], [ -123.68897298899999, 48.97026440500008 ], [ -123.689672410999975, 48.9705121900001 ], [ -123.690398309999921, 48.97065180800012 ], [ -123.691258619999985, 48.970557803000084 ], [ -123.691423387999961, 48.970646111000029 ], [ -123.691414686999977, 48.970933792000039 ], [ -123.691946093999945, 48.970822703000067 ], [ -123.692178975999923, 48.970948093000047 ], [ -123.692209384999956, 48.971208699000087 ], [ -123.691966306999959, 48.971335400000093 ], [ -123.691818405, 48.971616007000065 ], [ -123.691575192999935, 48.971769807000094 ], [ -123.691607384999941, 48.972111603000023 ], [ -123.690916185999981, 48.972520392000064 ], [ -123.690675495999955, 48.972953289000017 ], [ -123.690733801999954, 48.973750974000062 ], [ -123.689818203999977, 48.97373125000005 ], [ -123.68977935699999, 48.974516683000104 ], [ -123.689266967, 48.974505641000043 ], [ -123.689266236999956, 48.97452039400013 ], [ -123.688703178999944, 48.97450825800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23710584", "BldgCostT": "16088334", "sL_LossRatio": "0.800954179169898", "sL_AssetLoss": "177954", "sL_BldgLoss": "142533", "sL_StrLoss": "84117", "sL_NStrLoss": "58416", "sL_ContLoss": "35421", "geom_point": "0101000020E610000081B5415853E75EC091FB67171D864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.623807320999958, 49.062004904000034 ], [ -123.623743193999985, 49.061402406000035 ], [ -123.62338350600001, 49.061035005000058 ], [ -123.623518684999937, 49.060845593000082 ], [ -123.62368188399995, 49.060791496000014 ], [ -123.624475521999969, 49.060760104000032 ], [ -123.624663797999958, 49.060542204000058 ], [ -123.624848879999945, 49.059902696000051 ], [ -123.624750408999944, 49.059696185000114 ], [ -123.624431715999918, 49.059437005000042 ], [ -123.624415986999978, 49.059303199000084 ], [ -123.624464989999964, 49.05887020200008 ], [ -123.624257186999927, 49.058583895000034 ], [ -123.623182082999946, 49.057978605000081 ], [ -123.622551314999953, 49.057910304000103 ], [ -123.622145910999947, 49.058343201000113 ], [ -123.621833304999939, 49.058542603000042 ], [ -123.621257789999945, 49.058572503000086 ], [ -123.620830083, 49.058306204000083 ], [ -123.620219785999922, 49.057643998000103 ], [ -123.619792091999898, 49.057339208000037 ], [ -123.619533105999906, 49.057359108000099 ], [ -123.619465390999935, 49.057467404000064 ], [ -123.619525995999936, 49.05784479700003 ], [ -123.619734512999941, 49.058195090000055 ], [ -123.619652996999918, 49.058266302000092 ], [ -123.618520396999912, 49.057409013 ], [ -123.617854697999988, 49.056648390000085 ], [ -123.617684014999952, 49.05618129000009 ], [ -123.617792399999956, 49.056108704000074 ], [ -123.61812180299998, 49.056152812000079 ], [ -123.618507081999937, 49.056320895000106 ], [ -123.618729390999974, 49.056527389000088 ], [ -123.618962186999966, 49.056561597000034 ], [ -123.6190972799999, 49.056453301 ], [ -123.619136505999947, 49.056245398000044 ], [ -123.618935811999947, 49.05552759300015 ], [ -123.618642517999945, 49.055204296000063 ], [ -123.618081498999942, 49.055081809000065 ], [ -123.617900804999977, 49.054920903000088 ], [ -123.61606250899996, 49.052340204000153 ], [ -123.614858989999931, 49.051347505000074 ], [ -123.614233908999921, 49.050631089000035 ], [ -123.613806498999949, 49.050337808000123 ], [ -123.612819201, 49.049074496000053 ], [ -123.612683787999941, 49.048821540000084 ], [ -123.612687884999929, 49.048741534000051 ], [ -123.612730444999954, 49.04874248000003 ], [ -123.612749346, 49.048373320000039 ], [ -123.612440172999968, 49.048366447000028 ], [ -123.612132298999981, 49.047791298000064 ], [ -123.611789191999961, 49.047621789000054 ], [ -123.61115890399999, 49.047598990000047 ], [ -123.610069002999964, 49.046893987000033 ], [ -123.609736267999892, 49.046522605000142 ], [ -123.609793187999983, 49.045412167000109 ], [ -123.60888105099994, 49.045391862000024 ], [ -123.608749483999958, 49.045200598000058 ], [ -123.608595081999951, 49.044885896000025 ], [ -123.608602696999952, 49.044472906000088 ], [ -123.607019397999949, 49.042520299000024 ], [ -123.607001711, 49.042259601000104 ], [ -123.607138306999957, 49.042186984000061 ], [ -123.607468121999929, 49.04228390300004 ], [ -123.60773030799993, 49.04246188300008 ], [ -123.608338387999979, 49.043061506000114 ], [ -123.608775403999914, 49.042968889000115 ], [ -123.609059877000035, 49.042742494000066 ], [ -123.609127325999964, 49.042500304000093 ], [ -123.608719803999918, 49.041772606000066 ], [ -123.607149879999938, 49.040818401000138 ], [ -123.60654429299997, 49.040606115000053 ], [ -123.606465409999899, 49.040795593000077 ], [ -123.60585650499992, 49.040312810000053 ], [ -123.605141001999925, 49.039956684000089 ], [ -123.604412098999916, 49.039735903000093 ], [ -123.604252202999959, 49.039960986000075 ], [ -123.604114109999969, 49.039943887000035 ], [ -123.603889073999966, 49.039396995000111 ], [ -123.603351197, 49.038976790000042 ], [ -123.603157292999967, 49.038924089 ], [ -123.603006710999978, 49.038771794000127 ], [ -123.602732580999955, 49.038764601000047 ], [ -123.602551183999978, 49.038593704000078 ], [ -123.602522396999987, 49.038414308 ], [ -123.602931619999964, 49.038313200000061 ], [ -123.602624095999914, 49.037766315000034 ], [ -123.60237771299991, 49.037668009000058 ], [ -123.602267582999957, 49.037732103000046 ], [ -123.60236929699991, 49.038155112000013 ], [ -123.602301213999965, 49.038217692000032 ], [ -123.602206504999913, 49.038227687000067 ], [ -123.602025010999981, 49.038083893000092 ], [ -123.601231477999974, 49.03688330000012 ], [ -123.601255990999945, 49.036720892000041 ], [ -123.602011587999968, 49.035807999000085 ], [ -123.60175881, 49.035179887000076 ], [ -123.601889501999977, 49.034657204000077 ], [ -123.601868121999971, 49.034073304000053 ], [ -123.601741492999949, 49.033794100000073 ], [ -123.601369696999924, 49.033598993000084 ], [ -123.600859492999973, 49.033241591000078 ], [ -123.60032569099999, 49.033244395000104 ], [ -123.600092282999952, 49.033173197000082 ], [ -123.59956389199999, 49.032402704000084 ], [ -123.599109384999977, 49.03223459600008 ], [ -123.598672899999912, 49.032246013000126 ], [ -123.598575505999975, 49.032164887000107 ], [ -123.598337243999978, 49.031811387000033 ], [ -123.598390370999965, 49.030779531000057 ], [ -123.603850412999932, 49.030901541000063 ], [ -123.603684644999987, 49.034128387000059 ], [ -123.605334953999943, 49.034165210000062 ], [ -123.605198229999942, 49.036828191000076 ], [ -123.606305880999955, 49.036852892000098 ], [ -123.606293689000012, 49.037090411000058 ], [ -123.607193562999953, 49.037110470000066 ], [ -123.60715033699995, 49.037953006000066 ], [ -123.608502766999919, 49.037983138000108 ], [ -123.608485975999955, 49.038310595000127 ], [ -123.61018362599998, 49.038348394000138 ], [ -123.610159034999953, 49.03882828600004 ], [ -123.61035694899999, 49.038832691000053 ], [ -123.610318373999931, 49.039585557000116 ], [ -123.611460254999926, 49.039610964000062 ], [ -123.611420184999957, 49.040393346000052 ], [ -123.612153177999986, 49.040409649 ], [ -123.611968884999939, 49.044008793000074 ], [ -123.61115021799999, 49.043990584000021 ], [ -123.611112149999911, 49.044733695000076 ], [ -123.615291126999978, 49.044826578000077 ], [ -123.615213024999946, 49.046353812000056 ], [ -123.618317312, 49.046422702000065 ], [ -123.618133470999965, 49.050021824000083 ], [ -123.618090907999971, 49.050020880000069 ], [ -123.618043573999941, 49.050947457000106 ], [ -123.620033424, 49.050991570000036 ], [ -123.62000153299999, 49.051616355000078 ], [ -123.620191655999918, 49.051620568000089 ], [ -123.620142989999977, 49.052574027000112 ], [ -123.62132177299992, 49.052600140000088 ], [ -123.621277304999936, 49.053471748000106 ], [ -123.621958203999966, 49.053486826000018 ], [ -123.621890734999909, 49.054809544000115 ], [ -123.622205974999972, 49.054816523000085 ], [ -123.622148650999989, 49.055940446000079 ], [ -123.626569085999918, 49.056038211000065 ], [ -123.626543364999961, 49.056543449000053 ], [ -123.627256092999957, 49.056559195000062 ], [ -123.627137202999918, 49.058895036000131 ], [ -123.628076503999949, 49.058915780000078 ], [ -123.627944890999984, 49.061502327000042 ], [ -123.628775735999938, 49.061520669000103 ], [ -123.628592641999944, 49.065119723000116 ], [ -123.627192008999884, 49.065088798000055 ], [ -123.625068303999939, 49.063239710000097 ], [ -123.623807320999958, 49.062004904000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29994917", "BldgCostT": "20476667", "sL_LossRatio": "0.770277651031784", "sL_AssetLoss": "278115.3", "sL_BldgLoss": "214226", "sL_StrLoss": "109530", "sL_NStrLoss": "104696", "sL_ContLoss": "63889.3", "geom_point": "0101000020E61000003E9CE18283EB5EC07F5182FEC2804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.685426403999955, 49.013654390000099 ], [ -123.685653222999989, 49.01320290200006 ], [ -123.68517849199999, 49.012459515000103 ], [ -123.685228213999963, 49.012144704000079 ], [ -123.683866296999952, 49.010569614000104 ], [ -123.683849991999935, 49.010398713000065 ], [ -123.683997806999969, 49.010190703000056 ], [ -123.683437898999955, 49.010274788000068 ], [ -123.682566313, 49.009488598000104 ], [ -123.68200961699992, 49.008790699000066 ], [ -123.681923086999944, 49.008440390000025 ], [ -123.681592886999937, 49.008252412000083 ], [ -123.680631708999954, 49.006944908000108 ], [ -123.680540778999912, 49.006379494000086 ], [ -123.678308188999921, 49.004971001000087 ], [ -123.677991703999965, 49.004874102000031 ], [ -123.677999598, 49.00554778900009 ], [ -123.678268498999927, 49.00621289900004 ], [ -123.678711067999984, 49.006920229000066 ], [ -123.677030153999937, 49.00688385000003 ], [ -123.67716257399999, 49.004223058000058 ], [ -123.676211326999976, 49.004228637000061 ], [ -123.676207672999936, 49.003958787000059 ], [ -123.67579751, 49.003961190000098 ], [ -123.675793857999963, 49.003691341000014 ], [ -123.675383698999951, 49.003693742000117 ], [ -123.675380048999898, 49.00342389300009 ], [ -123.674742513999917, 49.003427623000022 ], [ -123.674615230999962, 49.005982564000071 ], [ -123.669157921999926, 49.005864147000118 ], [ -123.669234992999947, 49.00432077100006 ], [ -123.666847224999984, 49.004268871000107 ], [ -123.666745337999913, 49.006307096000086 ], [ -123.665688195999962, 49.00608759900004 ], [ -123.664623109999923, 49.005275803000089 ], [ -123.664431991999919, 49.005275802000014 ], [ -123.664120988999912, 49.00544950000009 ], [ -123.66362669199998, 49.005298598000103 ], [ -123.663487897, 49.005183188000075 ], [ -123.663512393999952, 49.005020813000073 ], [ -123.663308089999973, 49.004986700000046 ], [ -123.662988217999924, 49.00464630700003 ], [ -123.662382803999918, 49.004388492000032 ], [ -123.661596604999943, 49.003889989000072 ], [ -123.660947713, 49.003344610000021 ], [ -123.66076420199991, 49.002985612000067 ], [ -123.660350301999927, 49.002619586 ], [ -123.660511184999947, 49.002465794000081 ], [ -123.660345803999959, 49.002232191000076 ], [ -123.659737966999941, 49.001733653 ], [ -123.660363400999984, 49.001747294000019 ], [ -123.660452539999937, 48.999968765000069 ], [ -123.66173599399994, 48.999996747000083 ], [ -123.661816173999952, 48.998395994000063 ], [ -123.667272591999918, 48.998514786000051 ], [ -123.667249703, 48.998972823000067 ], [ -123.668479375999965, 48.998999556000072 ], [ -123.668394488999951, 49.000699136000023 ], [ -123.672111848999933, 49.00077986499999 ], [ -123.672034878999924, 49.002323252000124 ], [ -123.67413523699993, 49.002368808000085 ], [ -123.674135006999947, 49.002351690000118 ], [ -123.676185750999977, 49.002339690000021 ], [ -123.676189404999931, 49.00260953900009 ], [ -123.676599554999896, 49.002607135000041 ], [ -123.676603211999975, 49.002876985000043 ], [ -123.677423516999951, 49.002872171000099 ], [ -123.677412605999976, 49.002067719000095 ], [ -123.677412536999924, 49.002062623000093 ], [ -123.678642974999917, 49.002055393000028 ], [ -123.678653975000017, 49.002864940000023 ], [ -123.679064127999979, 49.002862527000104 ], [ -123.679067797999963, 49.003132377000085 ], [ -123.679333853999978, 49.003130811000048 ], [ -123.679343119999928, 49.002944438000021 ], [ -123.68480011399997, 49.003062338000099 ], [ -123.68466032399995, 49.005880549000082 ], [ -123.684841254999981, 49.005884453000071 ], [ -123.684924123999977, 49.004213679000038 ], [ -123.684953297, 49.004214309000112 ], [ -123.684975448000031, 49.003767680000053 ], [ -123.686437454999975, 49.003799217000044 ], [ -123.686504762, 49.002441214000036 ], [ -123.688082875999967, 49.002475233000062 ], [ -123.688080040999949, 49.002269370000086 ], [ -123.688377619999969, 49.002267595000049 ], [ -123.689310481999939, 49.002262025000043 ], [ -123.689313790999947, 49.002501751000068 ], [ -123.691961714999977, 49.002558749000073 ], [ -123.691783723999933, 49.006158241000044 ], [ -123.69032164, 49.006126777000084 ], [ -123.690280031999947, 49.006967608000075 ], [ -123.693404531999974, 49.00703482300009 ], [ -123.693289561999933, 49.00936112800013 ], [ -123.696427962999934, 49.009428550000045 ], [ -123.696381389999928, 49.010372124000092 ], [ -123.696471219999964, 49.010374052000046 ], [ -123.696352828999949, 49.012772566000081 ], [ -123.696146203999902, 49.012448090000127 ], [ -123.695133875999957, 49.011545093000059 ], [ -123.69473749799999, 49.011412704000108 ], [ -123.694408708999958, 49.011468187000013 ], [ -123.694123889999972, 49.01161491000007 ], [ -123.694284514999978, 49.012422499000103 ], [ -123.69417619699999, 49.012495105000085 ], [ -123.694193693, 49.012621813000116 ], [ -123.693837286999951, 49.012587692000075 ], [ -123.693796280999933, 49.012660303000125 ], [ -123.694062685999938, 49.013134590000043 ], [ -123.694037115999947, 49.013279806000142 ], [ -123.693605600999902, 49.012678812000118 ], [ -123.693413315999962, 49.01266170700012 ], [ -123.693360704, 49.012851083000058 ], [ -123.692751397999984, 49.012207394000065 ], [ -123.69254411199995, 49.012109094000024 ], [ -123.69240689799993, 49.012129103000035 ], [ -123.692123115999976, 49.012247304000027 ], [ -123.692499703999957, 49.012856803000048 ], [ -123.692714513999988, 49.013476407000034 ], [ -123.692444696999971, 49.013792600000095 ], [ -123.6919802, 49.013776903000057 ], [ -123.691844399999923, 49.013886504000062 ], [ -123.691348498999943, 49.013618793 ], [ -123.691089203000018, 49.013647302000074 ], [ -123.691188895999943, 49.013997593000028 ], [ -123.691579003999919, 49.014471903000128 ], [ -123.691513812999943, 49.014652799000054 ], [ -123.691159298999963, 49.014726793000122 ], [ -123.691221107999965, 49.014374993000061 ], [ -123.690806591999916, 49.014063106000066 ], [ -123.690543299999945, 49.013714198000088 ], [ -123.690378612999922, 49.013759807000092 ], [ -123.689965596999969, 49.013510601000107 ], [ -123.689501297999968, 49.013594586000089 ], [ -123.688627752999935, 49.014018993000079 ], [ -123.68762800899998, 49.014504694000053 ], [ -123.688045359999961, 49.014963118000047 ], [ -123.68729052799992, 49.014946853000041 ], [ -123.687233589999977, 49.016095715000041 ], [ -123.68644861099996, 49.015393405000033 ], [ -123.685824326, 49.014668404000048 ], [ -123.685426403999955, 49.013654390000099 ] ], [ [ -123.687848219999964, 49.008912461000129 ], [ -123.687899308999974, 49.007881155000028 ], [ -123.687895027999957, 49.007881062000102 ], [ -123.687843936999968, 49.008912369000022 ], [ -123.687848219999964, 49.008912461000129 ] ], [ [ -123.666526193999943, 49.003241119000037 ], [ -123.666560181999969, 49.002561211000078 ], [ -123.665786290999932, 49.002544375000056 ], [ -123.665752291999951, 49.003224284000048 ], [ -123.666526193999943, 49.003241119000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.785657998423956", "sL_AssetLoss": "12690", "sL_BldgLoss": "9970", "sL_StrLoss": "4810", "sL_NStrLoss": "5160", "sL_ContLoss": "2720", "geom_point": "0101000020E6100000434339B0E0E65EC01D5697D73A824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.605157064999929, 49.018651831000064 ], [ -123.605308906999966, 49.015693193000082 ], [ -123.605837888999986, 49.01617811200002 ], [ -123.606277117000019, 49.016291998000021 ], [ -123.607480991999978, 49.016340488000012 ], [ -123.609474821999953, 49.016059899000048 ], [ -123.609829703999978, 49.016031396000066 ], [ -123.609938909999954, 49.016084097000032 ], [ -123.609733997999953, 49.017281898000121 ], [ -123.609405012999929, 49.018300207000067 ], [ -123.609393488999913, 49.018435491000027 ], [ -123.609602400999933, 49.018703198 ], [ -123.609657819999967, 49.01875216900001 ], [ -123.605157064999929, 49.018651831000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "0.814688505691916", "sL_AssetLoss": "41638", "sL_BldgLoss": "33922", "sL_StrLoss": "19400", "sL_NStrLoss": "14522", "sL_ContLoss": "7716", "geom_point": "0101000020E610000053B27305A1EB5EC08DE843BC9A8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.684938492999976, 49.118537500000045 ], [ -123.684297002999955, 49.117704310000128 ], [ -123.682411405999972, 49.116150491000013 ], [ -123.681890088, 49.116009496000075 ], [ -123.681094387999934, 49.1160237 ], [ -123.680980364, 49.115978148000089 ], [ -123.681007471999948, 49.115433904000078 ], [ -123.680206466999948, 49.115416632000105 ], [ -123.679763920999932, 49.114880102000065 ], [ -123.679461010999958, 49.114791793000059 ], [ -123.679223802999928, 49.114451393000074 ], [ -123.678918696999943, 49.114254912000021 ], [ -123.678068211999928, 49.113171005000069 ], [ -123.678008400999914, 49.112793596000117 ], [ -123.67754119199995, 49.112715315000095 ], [ -123.677323303999927, 49.112870509000061 ], [ -123.677035794999966, 49.112809303000098 ], [ -123.676424289999915, 49.112128490000039 ], [ -123.675570316999966, 49.111917698000056 ], [ -123.674935520999938, 49.111499003000041 ], [ -123.674586090999981, 49.111060306000098 ], [ -123.674076196999977, 49.110748496000106 ], [ -123.673678196999944, 49.110813995000044 ], [ -123.67358088, 49.110633545000042 ], [ -123.681727230999954, 49.110595173000029 ], [ -123.681664984999955, 49.111845352000081 ], [ -123.682367685999964, 49.111860497000102 ], [ -123.682236570999976, 49.114494459000134 ], [ -123.686525594999921, 49.114586795000044 ], [ -123.68647623399994, 49.115580192000088 ], [ -123.68768891299996, 49.115606268000093 ], [ -123.68756492199995, 49.118102662000076 ], [ -123.687523001999949, 49.118054609000083 ], [ -123.687152204999904, 49.118001888000073 ], [ -123.686455289999969, 49.118123008000111 ], [ -123.685502888999935, 49.118659906000062 ], [ -123.684938492999976, 49.118537500000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.835900700190961", "sL_AssetLoss": "7855", "sL_BldgLoss": "6566", "sL_StrLoss": "3940", "sL_NStrLoss": "2626", "sL_ContLoss": "1289", "geom_point": "0101000020E6100000E384CFF74FEB5EC079AAA698417B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.674170201999971, 48.961878705000125 ], [ -123.674169223999968, 48.961734802000159 ], [ -123.674575195999964, 48.961569595000135 ], [ -123.675221191999952, 48.961773300000054 ], [ -123.675981496999967, 48.961373105000035 ], [ -123.676253699999975, 48.961317609000076 ], [ -123.677872006999948, 48.961784710000053 ], [ -123.678533778999963, 48.962213396000102 ], [ -123.67870289199999, 48.962634912000105 ], [ -123.678666016999941, 48.96286849300003 ], [ -123.678969921999965, 48.963236003000091 ], [ -123.679035223999975, 48.963267284000075 ], [ -123.679011021999941, 48.963754479000045 ], [ -123.678123165, 48.96373525000012 ], [ -123.67805745699998, 48.965057398000063 ], [ -123.677888152999984, 48.965053731000062 ], [ -123.677722713999941, 48.964925097000048 ], [ -123.677120194999986, 48.964767011000092 ], [ -123.676720713999941, 48.96452629900012 ], [ -123.676289978999947, 48.964114694000109 ], [ -123.675740492000017, 48.963866891000038 ], [ -123.675024111, 48.963358390000067 ], [ -123.674701619999979, 48.962828605000055 ], [ -123.67453139, 48.962290293000095 ], [ -123.674170201999971, 48.961878705000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "0.837750857698029", "sL_AssetLoss": "32937", "sL_BldgLoss": "27593", "sL_StrLoss": "17090", "sL_NStrLoss": "10503", "sL_ContLoss": "5344", "geom_point": "0101000020E6100000B5869497E3F05EC021E8A200D57A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.770708096999982, 48.96398756000012 ], [ -123.769955615999919, 48.963888297000075 ], [ -123.769462885999985, 48.963738692000028 ], [ -123.767532797999976, 48.962634904000105 ], [ -123.766239110999962, 48.962014006000082 ], [ -123.764262277999961, 48.961415793000086 ], [ -123.763071498, 48.961262013000137 ], [ -123.762055212999911, 48.960925891000066 ], [ -123.76044599, 48.960172505000109 ], [ -123.759388007999974, 48.959783696000088 ], [ -123.757942301999918, 48.959055913000064 ], [ -123.757133607999947, 48.958804136000012 ], [ -123.756874438999944, 48.958684662000095 ], [ -123.756826224999955, 48.95865928300001 ], [ -123.756796829999985, 48.95865947600003 ], [ -123.756739709999948, 48.95863220300005 ], [ -123.756739427999932, 48.958613592000127 ], [ -123.756319862999987, 48.958392730000043 ], [ -123.756239250999911, 48.958393259000047 ], [ -123.755920990999968, 48.958241304000083 ], [ -123.755056807999978, 48.957121797000056 ], [ -123.754590616999948, 48.956821070000053 ], [ -123.754548464999957, 48.9567850890001 ], [ -123.754534977999981, 48.956785177000057 ], [ -123.754284192999961, 48.956623400000041 ], [ -123.754249626, 48.95656688700015 ], [ -123.754249062999961, 48.956529521000078 ], [ -123.754202413999963, 48.956489702000091 ], [ -123.754103813999976, 48.956328503000044 ], [ -123.754076566999942, 48.956310568000099 ], [ -123.753358976999948, 48.955838597000074 ], [ -123.752785545999956, 48.955556679000097 ], [ -123.75260002, 48.955448449000066 ], [ -123.752565861999983, 48.955448673000021 ], [ -123.751858485999961, 48.955100890000047 ], [ -123.751140409999948, 48.954575290000072 ], [ -123.751001544999951, 48.954497057000012 ], [ -123.752692808999925, 48.954503310000057 ], [ -123.754056912999943, 48.955302086000081 ], [ -123.755083292999956, 48.955889411000101 ], [ -123.755494790999961, 48.95645778900009 ], [ -123.755665396999959, 48.956693414000043 ], [ -123.755894717999979, 48.956804504000104 ], [ -123.756170199999971, 48.956834608000037 ], [ -123.7569415, 48.956740913000019 ], [ -123.758149196999966, 48.956735490000014 ], [ -123.758159092999932, 48.958007685000034 ], [ -123.757719810999944, 48.958005800000109 ], [ -123.757722597999958, 48.958147304000057 ], [ -123.757794018999931, 48.958223495000055 ], [ -123.75890104699999, 48.95872688500009 ], [ -123.760497916999967, 48.959452997000049 ], [ -123.760690723999957, 48.959537280000077 ], [ -123.760958956999957, 48.959654506000042 ], [ -123.76180363499999, 48.959970139000085 ], [ -123.761954853999953, 48.960026634000023 ], [ -123.762663708, 48.960239638000111 ], [ -123.763660963999953, 48.960584757000042 ], [ -123.763661781999957, 48.960568319000096 ], [ -123.76368708499993, 48.960077288000022 ], [ -123.763795533999925, 48.957972345000016 ], [ -123.767679230999946, 48.957961907 ], [ -123.767925097000017, 48.957961252000132 ], [ -123.769076195999943, 48.95795809600007 ], [ -123.769126514999982, 48.958419498000076 ], [ -123.769207580999989, 48.958892123000084 ], [ -123.769238410999932, 48.959071796000089 ], [ -123.769289271, 48.959367953000083 ], [ -123.769386450999988, 48.959934514000039 ], [ -123.769519283999969, 48.960708600000075 ], [ -123.769623870999908, 48.961316584000052 ], [ -123.769667811999952, 48.961572001000057 ], [ -123.769718998999977, 48.96187431500001 ], [ -123.769726318999943, 48.961917403000037 ], [ -123.770018810999929, 48.962880206000136 ], [ -123.77012797899998, 48.963221206000085 ], [ -123.770331404999951, 48.96341910000006 ], [ -123.770672109999907, 48.963628016000015 ], [ -123.77109528699999, 48.963767396000051 ], [ -123.771639109999967, 48.963895792000073 ], [ -123.772004359999954, 48.963947658000087 ], [ -123.772085004999951, 48.963959115000065 ], [ -123.772531016999935, 48.963990900000063 ], [ -123.774055082999894, 48.963877501000105 ], [ -123.774327501999963, 48.963889490000035 ], [ -123.774438995999958, 48.963916234000074 ], [ -123.774450886, 48.963929606000072 ], [ -123.774370606000033, 48.964056304000039 ], [ -123.774342405999946, 48.964055890000083 ], [ -123.773484084999936, 48.964043496000016 ], [ -123.772938505999946, 48.964191607000046 ], [ -123.772351991999955, 48.964204403000082 ], [ -123.770708096999982, 48.96398756000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.858724273201139", "sL_AssetLoss": "18609", "sL_BldgLoss": "15980", "sL_StrLoss": "10410", "sL_NStrLoss": "5570", "sL_ContLoss": "2629", "geom_point": "0101000020E6100000BB0942A21EEC5EC02B0C57284E884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.68427, 49.064900300000026 ], [ -123.684705299999905, 49.064663913000118 ], [ -123.684854792999957, 49.064672393000059 ], [ -123.685071082999983, 49.064481602000022 ], [ -123.685672301999929, 49.064378989000097 ], [ -123.685817691999915, 49.063920390000057 ], [ -123.685911996999934, 49.063891992000038 ], [ -123.68650771099999, 49.064312090000023 ], [ -123.687079104999981, 49.064119784000049 ], [ -123.687101598999945, 49.06381359600006 ], [ -123.687346493999968, 49.063668399000036 ], [ -123.687512906, 49.063739590000068 ], [ -123.687706406999936, 49.063990184000083 ], [ -123.687913188999914, 49.063970289000089 ], [ -123.688019415999932, 49.063843507000044 ], [ -123.688418679999984, 49.063948900000113 ], [ -123.688856396999981, 49.063920402000072 ], [ -123.690463399999956, 49.063298099000058 ], [ -123.691234, 49.062601614000137 ], [ -123.691438717999972, 49.062554596000069 ], [ -123.692054867999985, 49.062627268000043 ], [ -123.692453809999918, 49.062674302000097 ], [ -123.692608486999944, 49.06299759400013 ], [ -123.693345089999966, 49.063812197000111 ], [ -123.694805775999939, 49.064568494000127 ], [ -123.694827211999936, 49.064574314000069 ], [ -123.694790493, 49.065316795000101 ], [ -123.692064455999983, 49.065258271000062 ], [ -123.692029420999972, 49.065965862000049 ], [ -123.690951427999977, 49.0659427000001 ], [ -123.690932994999955, 49.066314787000067 ], [ -123.688629781999936, 49.066265264000066 ], [ -123.68861351799994, 49.066593243000106 ], [ -123.68480925599999, 49.066511336000069 ], [ -123.684589009999982, 49.066220504000135 ], [ -123.684196582999959, 49.065539800000067 ], [ -123.684110886999946, 49.065252094000144 ], [ -123.68427, 49.064900300000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14749583", "BldgCostT": "9908333", "sL_LossRatio": "0.790870789170398", "sL_AssetLoss": "105858", "sL_BldgLoss": "83720", "sL_StrLoss": "52080", "sL_NStrLoss": "31640", "sL_ContLoss": "22138", "geom_point": "0101000020E61000001FF0C8710AED5EC0C1D8AD2B078A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.708511193999954, 49.083942 ], [ -123.708181301999929, 49.083782488000082 ], [ -123.707728576999983, 49.083775299000116 ], [ -123.706846087999949, 49.083322399000032 ], [ -123.706018804999957, 49.083030490000027 ], [ -123.705175479999966, 49.082388198000032 ], [ -123.704882609999942, 49.082012205000055 ], [ -123.704221416999943, 49.0817458000001 ], [ -123.703957886999916, 49.081549291000044 ], [ -123.703821874999917, 49.081613394000016 ], [ -123.703881805999984, 49.081928111000096 ], [ -123.704441977999949, 49.082860996000058 ], [ -123.704320185999933, 49.082888089000114 ], [ -123.703517804999976, 49.082335510000107 ], [ -123.703316195999918, 49.081715910000099 ], [ -123.7021157, 49.081047990000052 ], [ -123.701684479999955, 49.080600794000077 ], [ -123.701160790999907, 49.080271800000098 ], [ -123.700650491999966, 49.080085214000057 ], [ -123.700221491, 49.079800410000139 ], [ -123.69907932299995, 49.079276302000061 ], [ -123.698717807999955, 49.078991388000091 ], [ -123.698232810999968, 49.078589795000077 ], [ -123.698092506999942, 49.078329191000094 ], [ -123.697608786999965, 49.077971693000038 ], [ -123.697894911, 49.077934688000042 ], [ -123.697948907, 49.077862010000061 ], [ -123.697726906999932, 49.077584300000119 ], [ -123.696874590999983, 49.077302313000132 ], [ -123.696445282999932, 49.077026001000057 ], [ -123.696503396999972, 49.07719688800006 ], [ -123.6964621179999, 49.077250995000071 ], [ -123.696312082999953, 49.077223996000029 ], [ -123.695137202999945, 49.076449201000067 ], [ -123.695037149999962, 49.076321139000072 ], [ -123.695050595999973, 49.076049284000128 ], [ -123.69508870199995, 49.076017698000072 ], [ -123.69505510099999, 49.075958203 ], [ -123.695057850999959, 49.075902612000057 ], [ -123.695100183999955, 49.075873802000075 ], [ -123.695622996999987, 49.07601479700007 ], [ -123.695805589999964, 49.07531978800013 ], [ -123.695691107999934, 49.075024990000067 ], [ -123.695054219, 49.074515101000067 ], [ -123.695099521999964, 49.073840100000062 ], [ -123.69535618499999, 49.073488300000122 ], [ -123.69536341299991, 49.073127988000103 ], [ -123.695815811000031, 49.072189399000088 ], [ -123.6958521869999, 49.071866094000015 ], [ -123.696148900999944, 49.071539995000116 ], [ -123.69604787699997, 49.071077157000062 ], [ -123.698580172999982, 49.071131422000065 ], [ -123.699543673999983, 49.071324494000052 ], [ -123.699519537999961, 49.071813488000046 ], [ -123.699423179999926, 49.07376546000004 ], [ -123.70067789399998, 49.073792314000087 ], [ -123.700558201999939, 49.076218110000106 ], [ -123.701091026999933, 49.076229509 ], [ -123.701068915999912, 49.07667772100006 ], [ -123.701535437999937, 49.076687699000026 ], [ -123.701483213999936, 49.077746491000056 ], [ -123.702947929999979, 49.077777807000103 ], [ -123.703017918999961, 49.076357934000015 ], [ -123.703379463999951, 49.076365661000061 ], [ -123.703408635999949, 49.075773741000063 ], [ -123.703635580999929, 49.075778591000123 ], [ -123.703664459999928, 49.075192546000046 ], [ -123.704134287, 49.075202584000088 ], [ -123.70597183299995, 49.075241826000116 ], [ -123.70772029799997, 49.077370689000077 ], [ -123.707791605999901, 49.077568599000081 ], [ -123.707654598999966, 49.077649797000042 ], [ -123.707311592999986, 49.077544407000104 ], [ -123.707116905999968, 49.077392011000065 ], [ -123.706871779999972, 49.0773677950001 ], [ -123.706816988999989, 49.077484593000108 ], [ -123.706998183999929, 49.07772670100006 ], [ -123.706766395999978, 49.077763804000099 ], [ -123.706782897999929, 49.07788910800015 ], [ -123.706590302999984, 49.077926099000123 ], [ -123.706803604999891, 49.078420307000073 ], [ -123.706559191999958, 49.078611194000089 ], [ -123.706909411000012, 49.079175190000029 ], [ -123.707362713999913, 49.079289107000108 ], [ -123.707634105999944, 49.079027003000093 ], [ -123.708740522999946, 49.078911701000031 ], [ -123.708793206999971, 49.078767800000044 ], [ -123.708569419999932, 49.078427397000027 ], [ -123.708706022999976, 49.078381905000121 ], [ -123.70925748799999, 49.078665295000064 ], [ -123.709397901999964, 49.07889889100003 ], [ -123.711206519999905, 49.079823200000085 ], [ -123.71128651399999, 49.079723498000106 ], [ -123.710290800999971, 49.079019902000034 ], [ -123.710234707999973, 49.078903084000082 ], [ -123.71045341300001, 49.078893201000085 ], [ -123.711572214999975, 49.079559701000093 ], [ -123.713522582999971, 49.08100529600005 ], [ -123.715238102999933, 49.082146105000049 ], [ -123.715712408999977, 49.082546161000025 ], [ -123.715705426999975, 49.082688565000097 ], [ -123.715656277000022, 49.082674392000087 ], [ -123.714743791999965, 49.082104803000099 ], [ -123.713022199999898, 49.08134990900011 ], [ -123.714047702999949, 49.082190196000127 ], [ -123.713951598999984, 49.082252893000081 ], [ -123.712817414999947, 49.081450994000129 ], [ -123.712005393999988, 49.081159100000129 ], [ -123.711882311999915, 49.081196102000028 ], [ -123.71219009399999, 49.081580589000097 ], [ -123.711971402999964, 49.081644691000058 ], [ -123.712277402999959, 49.082047806000105 ], [ -123.712422991999972, 49.082577599000032 ], [ -123.71296471, 49.083114507000111 ], [ -123.71377919900003, 49.083692631000126 ], [ -123.713733540999925, 49.084623074000028 ], [ -123.71330808, 49.084614024000068 ], [ -123.712265503999973, 49.084071590000136 ], [ -123.7112146959999, 49.08332239500001 ], [ -123.711102504999971, 49.083143006000093 ], [ -123.710316990999914, 49.082761295000054 ], [ -123.71005569099998, 49.082808302000046 ], [ -123.709917302999955, 49.083564588000087 ], [ -123.709312110999974, 49.083442088000048 ], [ -123.709496795999939, 49.083809508000115 ], [ -123.709502, 49.084214010000032 ], [ -123.7096833089999, 49.084483190000078 ], [ -123.70960330299999, 49.084582893000082 ], [ -123.708867689999977, 49.083957607000094 ], [ -123.708511193999954, 49.083942 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331667", "BldgCostT": "4366667", "sL_LossRatio": "0.866641821174571", "sL_AssetLoss": "32199", "sL_BldgLoss": "27905", "sL_StrLoss": "18820", "sL_NStrLoss": "9085", "sL_ContLoss": "4294", "geom_point": "0101000020E6100000938C395B42E85EC0500FB84B6E804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63078268699995, 49.000578138000073 ], [ -123.632348714999949, 49.000612712000169 ], [ -123.632215500999934, 49.000735395000021 ], [ -123.632206099999962, 49.00105870400008 ], [ -123.632784686999955, 49.001424702000044 ], [ -123.63341620599999, 49.001628411000063 ], [ -123.63388650499999, 49.002128307000092 ], [ -123.633929184999943, 49.002290606000045 ], [ -123.634109689999917, 49.002397404000085 ], [ -123.634165990999918, 49.002612496000054 ], [ -123.634703513999966, 49.002951504000094 ], [ -123.634611088999947, 49.003222094000087 ], [ -123.634825508999981, 49.003806002000076 ], [ -123.634458509999916, 49.004132097000088 ], [ -123.634271481999946, 49.0044738980001 ], [ -123.633894202999969, 49.004764489000046 ], [ -123.633051012999971, 49.005191806000049 ], [ -123.632601306999931, 49.00528428800007 ], [ -123.631949609999978, 49.00576428600008 ], [ -123.631475501999915, 49.005965111000101 ], [ -123.630872419999918, 49.005995005000052 ], [ -123.630765857999961, 49.006026822000074 ], [ -123.629920166999938, 49.006008145000138 ], [ -123.629913214999931, 49.006145027000166 ], [ -123.628510389999946, 49.006178699000081 ], [ -123.628126910999981, 49.006127487000086 ], [ -123.627028006, 49.005710201000106 ], [ -123.626570882999957, 49.005344092000065 ], [ -123.62645881399996, 49.005093500000093 ], [ -123.62614068799995, 49.004788695000045 ], [ -123.624866308999913, 49.004489591000024 ], [ -123.624657684999988, 49.00435570500013 ], [ -123.623779595999963, 49.004073686000076 ], [ -123.623557906, 49.003867202000094 ], [ -123.623008407999961, 49.003672105000071 ], [ -123.622057008999917, 49.002948604000046 ], [ -123.621747872999933, 49.002767804000044 ], [ -123.621785461999977, 49.00203002100011 ], [ -123.626781980999965, 49.002140667000063 ], [ -123.626846025999981, 49.00088094200008 ], [ -123.630762922999978, 49.00096751800006 ], [ -123.63078268699995, 49.000578138000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.767441860465116", "sL_AssetLoss": "6020", "sL_BldgLoss": "4620", "sL_StrLoss": "2430", "sL_NStrLoss": "2190", "sL_ContLoss": "1400", "geom_point": "0101000020E61000007F70782076EC5EC098E2E45D797C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.694016308999963, 48.972375093000011 ], [ -123.693932801999964, 48.972330990000103 ], [ -123.693539682999955, 48.972550294000094 ], [ -123.693435708999942, 48.972810910000071 ], [ -123.693201277999975, 48.972749694000058 ], [ -123.693011316999971, 48.97283230200005 ], [ -123.692750809999922, 48.97269840600007 ], [ -123.692651392999963, 48.972429201000118 ], [ -123.692876093999956, 48.971959301000012 ], [ -123.69332481499994, 48.971741299000016 ], [ -123.693620011999911, 48.971415187000026 ], [ -123.693869212999942, 48.97165729200006 ], [ -123.694290407999958, 48.971465003000098 ], [ -123.694454896999943, 48.971546208000106 ], [ -123.695341886999969, 48.971378210000076 ], [ -123.695862696999967, 48.971500692000063 ], [ -123.696032611999939, 48.971913692000093 ], [ -123.696497893999961, 48.971946397000046 ], [ -123.696638806, 48.972261186 ], [ -123.696331095999938, 48.972766792000108 ], [ -123.695924488999964, 48.972994594000049 ], [ -123.695693081999949, 48.973031697000096 ], [ -123.695070315999928, 48.973457497000027 ], [ -123.69503218499996, 48.973628392000094 ], [ -123.695160858999941, 48.973886097000054 ], [ -123.693922730999986, 48.973859473000104 ], [ -123.694072415, 48.973391998000118 ], [ -123.694016308999963, 48.972375093000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.815348608031535", "sL_AssetLoss": "8118", "sL_BldgLoss": "6619", "sL_StrLoss": "4070", "sL_NStrLoss": "2549", "sL_ContLoss": "1499", "geom_point": "0101000020E6100000139D23FA4EE85EC0F622FB9C12854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.628542703999983, 49.037215089000064 ], [ -123.628934050999987, 49.037223732000051 ], [ -123.629344896999953, 49.037668007000079 ], [ -123.629485799999927, 49.038018287000092 ], [ -123.629478682999917, 49.038576605000067 ], [ -123.629686099999972, 49.038647806000043 ], [ -123.629922349, 49.038658082000012 ], [ -123.632735843999953, 49.04091084700007 ], [ -123.628359688, 49.040814280000127 ], [ -123.628542703999983, 49.037215089000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.750862399386738", "sL_AssetLoss": "26090", "sL_BldgLoss": "19590", "sL_StrLoss": "9270", "sL_NStrLoss": "10320", "sL_ContLoss": "6500", "geom_point": "0101000020E6100000DC2EF2BA17EC5EC03C4815E6B9884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.686111635999936, 49.066777490000028 ], [ -123.691576116999954, 49.066895034000034 ], [ -123.69142783599996, 49.069888809000062 ], [ -123.690761392999946, 49.069961904000067 ], [ -123.68793130899995, 49.069251296000097 ], [ -123.686002195999933, 49.068981895000093 ], [ -123.686111635999936, 49.066777490000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.781542898341745", "sL_AssetLoss": "13870", "sL_BldgLoss": "10840", "sL_StrLoss": "5250", "sL_NStrLoss": "5590", "sL_ContLoss": "3030", "geom_point": "0101000020E61000009CA7D7B92BE95EC07BCEE51FE0854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.640620079999906, 49.046867785000082 ], [ -123.640727541, 49.044743832000101 ], [ -123.64393922899994, 49.044742046000046 ], [ -123.644106111, 49.04487309800006 ], [ -123.64492968699993, 49.045219209000074 ], [ -123.645382306999934, 49.045244783000065 ], [ -123.645654189999931, 49.045125190000071 ], [ -123.645942190999946, 49.045142201000019 ], [ -123.646162856999979, 49.045388079000119 ], [ -123.64608211299999, 49.046987646000055 ], [ -123.640620079999906, 49.046867785000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.790365272631022", "sL_AssetLoss": "18890", "sL_BldgLoss": "14930", "sL_StrLoss": "7350", "sL_NStrLoss": "7580", "sL_ContLoss": "3960", "geom_point": "0101000020E61000007D1EC44ADCEC5EC0B672E5A210904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.698281192999957, 49.125355237000079 ], [ -123.69835901099998, 49.123781456000103 ], [ -123.703830212999932, 49.123898366000041 ], [ -123.703773293999987, 49.125052237000027 ], [ -123.703697404999957, 49.125017585000109 ], [ -123.703165989999917, 49.125246912000136 ], [ -123.702889996999915, 49.125184211000047 ], [ -123.702724502999942, 49.125060307000048 ], [ -123.70205310399993, 49.125108812000121 ], [ -123.701844000999969, 49.124903706000097 ], [ -123.701418291999957, 49.124789688000064 ], [ -123.701207812999925, 49.12452909100007 ], [ -123.70102889399999, 49.124494909000092 ], [ -123.700839794999979, 49.124630200000091 ], [ -123.700801282999961, 49.124811103000042 ], [ -123.701714893999977, 49.125389301000105 ], [ -123.703047198999982, 49.126551507000073 ], [ -123.70325829799998, 49.126927494000043 ], [ -123.703663212999956, 49.127283603000095 ], [ -123.703652674999915, 49.127497199000061 ], [ -123.69985300399999, 49.127416036000064 ], [ -123.699573279999981, 49.127129702000083 ], [ -123.699081298999914, 49.126269513000075 ], [ -123.698550006999952, 49.125580206000095 ], [ -123.698281192999957, 49.125355237000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.820380910683012", "sL_AssetLoss": "36544", "sL_BldgLoss": "29980", "sL_StrLoss": "17630", "sL_NStrLoss": "12350", "sL_ContLoss": "6564", "geom_point": "0101000020E6100000A8C4969A94E75EC0129E33168B7F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.618085297999968, 48.99686149200005 ], [ -123.618001701999944, 48.996844490000065 ], [ -123.61724238799999, 48.997280306000043 ], [ -123.617094665999957, 48.997441816000077 ], [ -123.617204219999948, 48.995295445000046 ], [ -123.61491841899999, 48.995244643000078 ], [ -123.614340518999967, 48.994759404000078 ], [ -123.614156792999978, 48.994202616000074 ], [ -123.614269620999949, 48.993490402000155 ], [ -123.614365394999965, 48.993436292000105 ], [ -123.614626699999974, 48.993507491000081 ], [ -123.614829504999975, 48.993479093000118 ], [ -123.614966481999943, 48.993352294000012 ], [ -123.615056725, 48.992974904000093 ], [ -123.615358519999944, 48.993009101000062 ], [ -123.615491402999965, 48.992828202000062 ], [ -123.615683712999953, 48.992745601000067 ], [ -123.615856078999968, 48.99232259200005 ], [ -123.616251195999936, 48.992211498000053 ], [ -123.616378486999935, 48.991473805000076 ], [ -123.616786005000023, 48.991237289000061 ], [ -123.617251598999985, 48.991315705000126 ], [ -123.617871204999929, 48.991754310000083 ], [ -123.618774316999961, 48.992971996000044 ], [ -123.618935090999983, 48.993930361000011 ], [ -123.618056500999941, 48.99391085400007 ], [ -123.618041318999971, 48.994208428000022 ], [ -123.618985255999974, 48.994229386000079 ], [ -123.61907130499999, 48.994742289000023 ], [ -123.619552416999966, 48.995099804000098 ], [ -123.619464717999975, 48.995622495000092 ], [ -123.619806301, 48.995621108000087 ], [ -123.62004011599997, 48.995717909000092 ], [ -123.621362093999963, 48.996556806000093 ], [ -123.622384996999983, 48.99751379400012 ], [ -123.622637814000015, 48.997979603000076 ], [ -123.62292629299999, 48.998194590000018 ], [ -123.622930015999927, 48.998195414000115 ], [ -123.622920741999934, 48.998377556000044 ], [ -123.621022320999913, 48.998335472000093 ], [ -123.620864733999966, 49.001427598000106 ], [ -123.619315995999969, 49.001393240000034 ], [ -123.619070091999973, 49.001292310000053 ], [ -123.618997800999949, 49.000994600000055 ], [ -123.618581797999951, 49.00058299700008 ], [ -123.618101796999923, 49.000487594000113 ], [ -123.617269501999914, 48.999439385000073 ], [ -123.617314703999938, 48.998665985000123 ], [ -123.617379704999962, 48.998520789000089 ], [ -123.617637808999945, 48.998375492000029 ], [ -123.617835411999977, 48.997681904000061 ], [ -123.617834590999962, 48.997583615000053 ], [ -123.61759820099995, 48.997395585000085 ], [ -123.618019089000015, 48.997077995000055 ], [ -123.618085297999968, 48.99686149200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6471834", "BldgCostT": "4463334", "sL_LossRatio": "0.861932113991141", "sL_AssetLoss": "35150.1", "sL_BldgLoss": "30297", "sL_StrLoss": "19810", "sL_NStrLoss": "10487", "sL_ContLoss": "4853.1", "geom_point": "0101000020E6100000BFB69F0839E65EC01BA6CF7162824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.591948582999962, 49.020198604000065 ], [ -123.591932388999936, 49.019893891000017 ], [ -123.592178897999958, 49.019999293000055 ], [ -123.592287803999938, 49.019918087000121 ], [ -123.592036407999927, 49.019488005 ], [ -123.592318400999915, 49.019082108000056 ], [ -123.59236968499998, 49.018811503000045 ], [ -123.59224695799999, 49.018545545000087 ], [ -123.592288060999948, 49.017748971000067 ], [ -123.592700604999962, 49.017828810000033 ], [ -123.594201191999929, 49.018748804000104 ], [ -123.594653904999916, 49.018781604000068 ], [ -123.595213190999971, 49.018599290000076 ], [ -123.595346802999956, 49.01835570400003 ], [ -123.595302590999921, 49.018157695000077 ], [ -123.594677905000012, 49.017324597 ], [ -123.594152206000018, 49.016868783000056 ], [ -123.593853251999988, 49.016422166000083 ], [ -123.593864929999967, 49.016195673000063 ], [ -123.594116899999975, 49.016283486000098 ], [ -123.594438289, 49.016705097000099 ], [ -123.596339503999928, 49.017891388000116 ], [ -123.596600407999986, 49.017998204000037 ], [ -123.59707880799999, 49.017924207000064 ], [ -123.597213591999974, 49.017797406000099 ], [ -123.59722297899998, 49.017562399000035 ], [ -123.597222360999979, 49.017578567000108 ], [ -123.598057319999981, 49.015526482000048 ], [ -123.598196811999955, 49.01547168800009 ], [ -123.597904592999924, 49.015094311000091 ], [ -123.597997586999952, 49.014815093000081 ], [ -123.598203713999936, 49.014769603000076 ], [ -123.598519511999882, 49.014901997000088 ], [ -123.599214485999966, 49.014763906000042 ], [ -123.599141898999974, 49.014431995000074 ], [ -123.599386602999971, 49.014295285000102 ], [ -123.599640783999988, 49.013808191000109 ], [ -123.599390903999975, 49.01351340100004 ], [ -123.599389502999912, 49.013350989000116 ], [ -123.600123896999904, 49.013131692000087 ], [ -123.600190001999948, 49.012842588000133 ], [ -123.600461117999913, 49.012724406000117 ], [ -123.601146997999962, 49.012828393000099 ], [ -123.601986803000017, 49.013247103000062 ], [ -123.602841998999963, 49.013899408000114 ], [ -123.603222824999975, 49.01412175300004 ], [ -123.603182191, 49.01491289300003 ], [ -123.601457109999927, 49.014874349000067 ], [ -123.601334647999977, 49.017256732000064 ], [ -123.60052466499999, 49.017238625000068 ], [ -123.600488353999978, 49.017944750000083 ], [ -123.600258188999959, 49.017939604000063 ], [ -123.600160646999896, 49.019836153000035 ], [ -123.59956904799999, 49.019822923000049 ], [ -123.599535558999932, 49.020473867000092 ], [ -123.598175259999948, 49.020443434000114 ], [ -123.598170407999959, 49.020537699000037 ], [ -123.597609925999933, 49.020525155000051 ], [ -123.597596297999942, 49.020789813000121 ], [ -123.596920886999939, 49.020774692000082 ], [ -123.596748352999924, 49.024124323000073 ], [ -123.594747835999954, 49.024079514000057 ], [ -123.594106877999977, 49.02338169500009 ], [ -123.591948582999962, 49.020198604000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.833909078347381", "sL_AssetLoss": "7237", "sL_BldgLoss": "6035", "sL_StrLoss": "3900", "sL_NStrLoss": "2135", "sL_ContLoss": "1202", "geom_point": "0101000020E61000004F102B92E5EC5EC0F960429A6B804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.700022586999964, 49.001330043000046 ], [ -123.702352041999944, 49.00137995800003 ], [ -123.703392205999961, 49.003561001000044 ], [ -123.703328208999935, 49.003912804 ], [ -123.703098101999956, 49.004039598000141 ], [ -123.703032085999922, 49.004183390000108 ], [ -123.703322900999964, 49.004452607000076 ], [ -123.703621157, 49.005010439000081 ], [ -123.699845221999908, 49.004929555000068 ], [ -123.700022586999964, 49.001330043000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.784046692607004", "sL_AssetLoss": "5140", "sL_BldgLoss": "4030", "sL_StrLoss": "2250", "sL_NStrLoss": "1780", "sL_ContLoss": "1110", "geom_point": "0101000020E6100000C034F381B0EA5EC0CA0A8F47BA7D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.66652363599998, 48.981573761000035 ], [ -123.668370975999977, 48.981613945000092 ], [ -123.668260414999978, 48.981757793000092 ], [ -123.667836336999983, 48.982092266000066 ], [ -123.667800385999954, 48.982119036000036 ], [ -123.667786781999922, 48.982229715000067 ], [ -123.667766168999933, 48.982381972000049 ], [ -123.667738301999975, 48.982588091000082 ], [ -123.667714538, 48.982620366000035 ], [ -123.667714465999893, 48.982620460000099 ], [ -123.667578903999981, 48.982804587000032 ], [ -123.666788081999982, 48.98304389400009 ], [ -123.666265501999959, 48.982713505000085 ], [ -123.665304787999958, 48.982439994000053 ], [ -123.665200151999954, 48.982344744000031 ], [ -123.666483715999902, 48.982372683000072 ], [ -123.66652363599998, 48.981573761000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65247582", "BldgCostT": "44998332", "sL_LossRatio": "0.822044829516416", "sL_AssetLoss": "451979", "sL_BldgLoss": "371547", "sL_StrLoss": "223569", "sL_NStrLoss": "147978", "sL_ContLoss": "80432", "geom_point": "0101000020E610000065C75FBD7EE95EC061FFA7A89B7C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.636743624999951, 48.980802363000102 ], [ -123.636800155999936, 48.979685209000081 ], [ -123.636322945999936, 48.979674691000064 ], [ -123.637546507999986, 48.978144604000114 ], [ -123.637664795999939, 48.977855503000043 ], [ -123.637631403999976, 48.977244508000112 ], [ -123.637315598999976, 48.976220508000033 ], [ -123.637010510999986, 48.975763297000114 ], [ -123.635240792999937, 48.974108406000013 ], [ -123.634314508999964, 48.973357785000054 ], [ -123.634018779999977, 48.97299150000002 ], [ -123.63404894599995, 48.972395936000112 ], [ -123.634332617999959, 48.972402196000068 ], [ -123.634358663999976, 48.971887942000073 ], [ -123.634990711999976, 48.971901887000037 ], [ -123.635016164999982, 48.97139915700005 ], [ -123.635177803999952, 48.9714027220001 ], [ -123.635185688999954, 48.97124697000006 ], [ -123.635112140999979, 48.971245347000071 ], [ -123.63529436399989, 48.967645753000156 ], [ -123.64074712399993, 48.967765898000096 ], [ -123.640716115999965, 48.968379881000025 ], [ -123.640789659999882, 48.968381499000074 ], [ -123.640611499999963, 48.971908984000066 ], [ -123.643178486999929, 48.971965447000088 ], [ -123.643120598999957, 48.973112751000038 ], [ -123.643404998999983, 48.973111166000074 ], [ -123.643408469999912, 48.973381017000101 ], [ -123.64422829899999, 48.973376442000117 ], [ -123.64423177399999, 48.973646294000055 ], [ -123.644641690999933, 48.973644005000061 ], [ -123.64464721, 48.974071905000102 ], [ -123.644935420999943, 48.974078235000015 ], [ -123.645059952999972, 48.971608203000109 ], [ -123.649297167999961, 48.971701196000019 ], [ -123.649388777999974, 48.969880705000051 ], [ -123.654114863999922, 48.969984228000023 ], [ -123.654215291999904, 48.967984318000049 ], [ -123.654581701, 48.967992336000059 ], [ -123.654612011000026, 48.967388627000084 ], [ -123.658178052, 48.967466589 ], [ -123.658177125999927, 48.967467304000095 ], [ -123.657279800999945, 48.967661011000082 ], [ -123.656565414999974, 48.967512908000074 ], [ -123.656375190999981, 48.967549889000047 ], [ -123.656405603999985, 48.967783494000045 ], [ -123.65651758300001, 48.967860517000048 ], [ -123.657521800999959, 48.968551087000044 ], [ -123.657601355999986, 48.968835573000042 ], [ -123.657622191, 48.968910007000026 ], [ -123.657929372999902, 48.969319390000088 ], [ -123.658166109999939, 48.969634884000108 ], [ -123.658692501999965, 48.970052712000069 ], [ -123.659572882999953, 48.97075149500008 ], [ -123.659958284999945, 48.9708753950001 ], [ -123.66011202699994, 48.970969513000107 ], [ -123.660481889999971, 48.971195912000077 ], [ -123.66051860499995, 48.971165031000048 ], [ -123.660751203999894, 48.970969388000135 ], [ -123.661011205999969, 48.970950897000137 ], [ -123.661172405999963, 48.97074298800009 ], [ -123.661240291999917, 48.970768604000092 ], [ -123.661079091999923, 48.970976512000071 ], [ -123.661217020999956, 48.971066305000107 ], [ -123.661205114999973, 48.971183100000104 ], [ -123.660814180999949, 48.9715363 ], [ -123.662306787999952, 48.972796696000103 ], [ -123.662561082999943, 48.973052413000076 ], [ -123.662748147999977, 48.973240486000073 ], [ -123.663400301999957, 48.973896212000071 ], [ -123.663474304999937, 48.974363288000056 ], [ -123.663738216999946, 48.97458689500013 ], [ -123.663754011999956, 48.97471220500006 ], [ -123.663458204999984, 48.975119584000062 ], [ -123.663488489999963, 48.975307592000036 ], [ -123.663814069999944, 48.975467144000085 ], [ -123.664052387, 48.975583897000014 ], [ -123.664436042999952, 48.975619005000098 ], [ -123.665063184999951, 48.975676392000068 ], [ -123.665449796999923, 48.975917091000056 ], [ -123.666766279999962, 48.977339898000039 ], [ -123.667693083999936, 48.978547008000113 ], [ -123.666969388999973, 48.978531264000068 ], [ -123.666994854, 48.978021494000075 ], [ -123.661776731999964, 48.97790782900006 ], [ -123.661783697999965, 48.977768704000034 ], [ -123.660747503999957, 48.977746102000026 ], [ -123.660800302, 48.976691904000063 ], [ -123.659974538999961, 48.976673885000018 ], [ -123.660011755, 48.975931089 ], [ -123.659342061999936, 48.975916471000097 ], [ -123.659353254999957, 48.97569311900002 ], [ -123.658003127999962, 48.975663636000071 ], [ -123.658064627999963, 48.974437066000071 ], [ -123.656592649999965, 48.974404902000046 ], [ -123.656607130999959, 48.974116266000031 ], [ -123.656126398, 48.974119001000076 ], [ -123.656122855999939, 48.973849149000067 ], [ -123.656033263999987, 48.973849659000038 ], [ -123.65596794899993, 48.975151212000128 ], [ -123.650514286999964, 48.97503184100006 ], [ -123.650559595999965, 48.974131089000103 ], [ -123.650392499999924, 48.974127427000063 ], [ -123.650332133999939, 48.975327450000051 ], [ -123.645892017999969, 48.975230052000043 ], [ -123.645899328999974, 48.975795947000044 ], [ -123.645463779999929, 48.975798384 ], [ -123.645304639, 48.978955063000043 ], [ -123.644283222999917, 48.978932627000042 ], [ -123.644257828999983, 48.979436075000116 ], [ -123.643042093999952, 48.979390801000065 ], [ -123.640652192999951, 48.979476211000119 ], [ -123.63998438699997, 48.979578801000109 ], [ -123.639367590999896, 48.97953751500004 ], [ -123.639271181999945, 48.97939359700004 ], [ -123.639280815999925, 48.979070295000092 ], [ -123.63908429899999, 48.978746999000059 ], [ -123.638436505999977, 48.978274210000073 ], [ -123.638218100999964, 48.978311190000106 ], [ -123.637635408, 48.978772683000045 ], [ -123.637193193999963, 48.979442008000014 ], [ -123.63694199299999, 48.980073013000059 ], [ -123.636932881999925, 48.980387694000108 ], [ -123.637175099999936, 48.980811872000061 ], [ -123.636743624999951, 48.980802363000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.901230462254739", "sL_AssetLoss": "3007", "sL_BldgLoss": "2710", "sL_StrLoss": "1980", "sL_NStrLoss": "730", "sL_ContLoss": "297", "geom_point": "0101000020E61000001CCCCB063EEA5EC0B4219CA2E57D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.66064688499992, 48.983075721000041 ], [ -123.66086376599992, 48.983080452000067 ], [ -123.660689992999934, 48.983852794000015 ], [ -123.660160719999936, 48.984097802000093 ], [ -123.659722495999986, 48.984082116000096 ], [ -123.659294789999961, 48.983990018 ], [ -123.659318413999969, 48.983518689000071 ], [ -123.659373048999981, 48.983519882000081 ], [ -123.659393833999943, 48.983105191000035 ], [ -123.660644042999976, 48.983132471000026 ], [ -123.66064688499992, 48.983075721000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.813369907548512", "sL_AssetLoss": "39372", "sL_BldgLoss": "32024", "sL_StrLoss": "18920", "sL_NStrLoss": "13104", "sL_ContLoss": "7348", "geom_point": "0101000020E6100000A3BED133A2E85EC0DD3F16A2C3784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.634199886999937, 48.941422649000046 ], [ -123.637584208999982, 48.941497331000093 ], [ -123.637610607999989, 48.941537359000108 ], [ -123.637778299999979, 48.94179160900007 ], [ -123.638162803999975, 48.94212024100009 ], [ -123.638093420999937, 48.942338325000087 ], [ -123.634535313999919, 48.944650974000048 ], [ -123.63457277099999, 48.944805497000097 ], [ -123.636504547999934, 48.945986545000054 ], [ -123.632754380999955, 48.945903754000049 ], [ -123.632936687999958, 48.942304020000087 ], [ -123.634153916999978, 48.942330907000034 ], [ -123.634199886999937, 48.941422649000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.760412001791312", "sL_AssetLoss": "22330", "sL_BldgLoss": "16980", "sL_StrLoss": "8300", "sL_NStrLoss": "8680", "sL_ContLoss": "5350", "geom_point": "0101000020E6100000CD04A2AB1DEF5EC0DC1833705D694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.735156279999941, 48.824223185000072 ], [ -123.735043804999918, 48.823983979000062 ], [ -123.734498799, 48.82282518600006 ], [ -123.734154298999925, 48.82159238100008 ], [ -123.733760495999945, 48.820733505000049 ], [ -123.735820199999949, 48.821407905000065 ], [ -123.736505077999965, 48.821692873000082 ], [ -123.73731251599996, 48.822028799000101 ], [ -123.737550843999927, 48.822181183000097 ], [ -123.737806844999938, 48.822344826000062 ], [ -123.737897101999948, 48.822402492000094 ], [ -123.737950531999928, 48.822456967000065 ], [ -123.738720514999926, 48.823241702000118 ], [ -123.739137388999936, 48.82365331500008 ], [ -123.739113353999983, 48.824151613000062 ], [ -123.737448605999987, 48.824116374000077 ], [ -123.736728394999957, 48.824120979000064 ], [ -123.736728102999948, 48.824101114000065 ], [ -123.735817887999985, 48.824081830000047 ], [ -123.735697953999988, 48.826564490000109 ], [ -123.734966706999913, 48.82654899200007 ], [ -123.735029213999937, 48.826206487000121 ], [ -123.735070068999903, 48.825568876000034 ], [ -123.735156279999941, 48.824223185000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.791690971547087", "sL_AssetLoss": "30858", "sL_BldgLoss": "24430", "sL_StrLoss": "12510", "sL_NStrLoss": "11920", "sL_ContLoss": "6428", "geom_point": "0101000020E6100000B3B9A449ADEF5EC0EC29DE6D03734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.742316010999971, 48.896684675000159 ], [ -123.747760771999964, 48.89679939300003 ], [ -123.747587475000032, 48.900399577000023 ], [ -123.742142294999923, 48.900284852000084 ], [ -123.742316010999971, 48.896684675000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12284583", "BldgCostT": "8208333", "sL_LossRatio": "0.861687616082369", "sL_AssetLoss": "51902.8", "sL_BldgLoss": "44724", "sL_StrLoss": "30100", "sL_NStrLoss": "14624", "sL_ContLoss": "7178.8", "geom_point": "0101000020E61000003775FD0696F05EC0BFB0EBCDDE764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.756449844999963, 48.931799498000018 ], [ -123.755471292999971, 48.93094551800003 ], [ -123.756377528999948, 48.930964505000063 ], [ -123.756426479999945, 48.929944336000084 ], [ -123.75459218, 48.929905897000062 ], [ -123.754615197999925, 48.929426573000079 ], [ -123.754387202999951, 48.929421793000081 ], [ -123.754403769999968, 48.929076800000097 ], [ -123.753758899000033, 48.929063278000108 ], [ -123.75380685099999, 48.92806506800008 ], [ -123.753611754999966, 48.928060977000051 ], [ -123.75378469, 48.924460940000095 ], [ -123.756028511999943, 48.924507979000126 ], [ -123.75603901, 48.924289196000053 ], [ -123.761487018999915, 48.924403209000026 ], [ -123.761406105999953, 48.926093465000065 ], [ -123.76244568499996, 48.926115189 ], [ -123.762359810999925, 48.9279097880001 ], [ -123.762804881999926, 48.927919085000056 ], [ -123.762795069999981, 48.928124161000063 ], [ -123.763241271999973, 48.928121207000089 ], [ -123.763249499000011, 48.928660903000079 ], [ -123.763659034999947, 48.928658193000096 ], [ -123.763663149999957, 48.92892804000013 ], [ -123.76407269, 48.928925328000041 ], [ -123.764076807999984, 48.929195176000064 ], [ -123.76489589, 48.92918974600007 ], [ -123.764900011999927, 48.929459594000036 ], [ -123.765309556999924, 48.929456878000067 ], [ -123.765317804999967, 48.929996573000039 ], [ -123.76572735299996, 48.929993855000127 ], [ -123.765743859999972, 48.931073245000071 ], [ -123.766153415999923, 48.931070525000059 ], [ -123.76616580299995, 48.931880067000023 ], [ -123.764117986999963, 48.931893653000017 ], [ -123.76411387, 48.931623805000065 ], [ -123.763294746, 48.931629230000084 ], [ -123.763298859999978, 48.931899077000061 ], [ -123.7629749099999, 48.931901220000093 ], [ -123.76297306399999, 48.931939807000091 ], [ -123.762889849999965, 48.93193806900004 ], [ -123.762897520999942, 48.932441481000041 ], [ -123.762477942999965, 48.932444257000064 ], [ -123.762455897, 48.932904916000048 ], [ -123.759136984999984, 48.932835536 ], [ -123.759078780999971, 48.93404991900011 ], [ -123.758076230999961, 48.933193129000095 ], [ -123.75687057499999, 48.932162746000131 ], [ -123.756652823999943, 48.931976598000098 ], [ -123.756449844999963, 48.931799498000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40045582", "BldgCostT": "26618332", "sL_LossRatio": "0.726517681127607", "sL_AssetLoss": "473782", "sL_BldgLoss": "344211", "sL_StrLoss": "174641", "sL_NStrLoss": "169570", "sL_ContLoss": "129571", "geom_point": "0101000020E6100000E1486FD1ECEE5EC023BB0CDEDB734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.740196680999986, 48.911553496000103 ], [ -123.738985618999905, 48.910865694000108 ], [ -123.73809989499992, 48.910437104000046 ], [ -123.737984575999988, 48.910387550000102 ], [ -123.737778939999913, 48.910299181000049 ], [ -123.736960606999958, 48.90994749099999 ], [ -123.736891509999964, 48.909917795000119 ], [ -123.736739034999985, 48.909870408000124 ], [ -123.735822526999982, 48.909585577000037 ], [ -123.735342249, 48.909436324000112 ], [ -123.735230496999975, 48.909401586000058 ], [ -123.734984775999948, 48.909341623000039 ], [ -123.73370232900001, 48.909028471000049 ], [ -123.732121019999923, 48.908642345000032 ], [ -123.731999710999943, 48.908612725000133 ], [ -123.731942812999989, 48.908598827000048 ], [ -123.731137, 48.908402064000029 ], [ -123.730027087999986, 48.908130997000029 ], [ -123.729267900999943, 48.907907704000138 ], [ -123.728461814999974, 48.907611299000067 ], [ -123.727906692, 48.907396807000048 ], [ -123.727156395999941, 48.907045715000088 ], [ -123.726715571999989, 48.906804904000047 ], [ -123.726540405999941, 48.906709190000093 ], [ -123.725892305999977, 48.906285846000053 ], [ -123.725727813999981, 48.906178375000074 ], [ -123.725568195999969, 48.906074095000108 ], [ -123.725491125999966, 48.906018461000066 ], [ -123.72532899299992, 48.905901473000078 ], [ -123.725325575999975, 48.905899016 ], [ -123.7248857299999, 48.905581582000096 ], [ -123.722102873999972, 48.903573204000097 ], [ -123.72183189699993, 48.90334579600006 ], [ -123.72116741399995, 48.902775808000037 ], [ -123.720096192999932, 48.901715661000061 ], [ -123.720062588999951, 48.90168240600007 ], [ -123.719943001999951, 48.901564092000079 ], [ -123.719735289999988, 48.901358509000062 ], [ -123.718778586999989, 48.900411609000109 ], [ -123.718587668999959, 48.900222656000047 ], [ -123.718381724, 48.900018809000109 ], [ -123.718369520999929, 48.900006729000047 ], [ -123.718252767999942, 48.899891172000011 ], [ -123.71837452699999, 48.899885766000111 ], [ -123.72296968399999, 48.899680591000106 ], [ -123.719318549999954, 48.899066539000074 ], [ -123.719332304999952, 48.898784359000011 ], [ -123.717395555999929, 48.89874307200003 ], [ -123.717191122, 48.89870868200012 ], [ -123.717030814999987, 48.898681711000059 ], [ -123.71702873699995, 48.898681348000032 ], [ -123.71674634099999, 48.898630332000039 ], [ -123.71466304799999, 48.896577387000029 ], [ -123.714551948999912, 48.896227874000012 ], [ -123.711902101999954, 48.893604405000104 ], [ -123.711894929, 48.893598017000109 ], [ -123.711960965999978, 48.892247416000046 ], [ -123.712421135999946, 48.892257253000054 ], [ -123.712425951999975, 48.89215872700003 ], [ -123.713386063999934, 48.892179246000111 ], [ -123.713390416999943, 48.892090150000058 ], [ -123.717154099999959, 48.892170505000088 ], [ -123.717260207999956, 48.892323187000066 ], [ -123.717372109999943, 48.893446892000021 ], [ -123.717720492999945, 48.894039309000036 ], [ -123.719082491999956, 48.894804103000105 ], [ -123.719823193999943, 48.89510610800005 ], [ -123.720648510999951, 48.895304559000103 ], [ -123.720552825999988, 48.897268853000092 ], [ -123.720433125999961, 48.897266303000045 ], [ -123.720428450999933, 48.89736226700014 ], [ -123.721469918999944, 48.897384444000103 ], [ -123.721478107999985, 48.897216265000047 ], [ -123.72509925899999, 48.897293296000043 ], [ -123.725246408999965, 48.897445993000083 ], [ -123.726007398999968, 48.898098299000011 ], [ -123.726447004999969, 48.898366096000046 ], [ -123.726944909999972, 48.898901596000037 ], [ -123.728315594, 48.899334509000028 ], [ -123.729090986999964, 48.900049496000072 ], [ -123.729627617999981, 48.900387004000031 ], [ -123.73087699499996, 48.90089260000012 ], [ -123.733215313999935, 48.902091790000028 ], [ -123.73626118, 48.904348882000079 ], [ -123.736191226999921, 48.905794542000052 ], [ -123.734434382999936, 48.9057573750001 ], [ -123.734396663, 48.906536285000044 ], [ -123.736256087999934, 48.906575621000123 ], [ -123.73624232899999, 48.906859941000043 ], [ -123.736937094999945, 48.906874631000058 ], [ -123.736848102999943, 48.907025298000121 ], [ -123.736904580999976, 48.907204701000076 ], [ -123.737388808999953, 48.907516610000123 ], [ -123.737593297, 48.907587790000022 ], [ -123.738275605999945, 48.907592110000081 ], [ -123.738378981999958, 48.907575752000135 ], [ -123.738366085999971, 48.907842475000024 ], [ -123.740172520999948, 48.907880623000054 ], [ -123.740139175999914, 48.908570873000066 ], [ -123.740835024999981, 48.908566405000094 ], [ -123.740839014999921, 48.908836255000082 ], [ -123.742476523999954, 48.908825724000124 ], [ -123.742468526999929, 48.90828602400007 ], [ -123.743696642999936, 48.908278111000072 ], [ -123.743700647999958, 48.908547961000096 ], [ -123.744110021999973, 48.908545320000037 ], [ -123.744118036999964, 48.909085019 ], [ -123.745083490999917, 48.909078787000105 ], [ -123.745131456999928, 48.90808367900005 ], [ -123.745143415999934, 48.90808393000006 ], [ -123.745181402999961, 48.90729581500009 ], [ -123.745738607999954, 48.907426883000021 ], [ -123.746627909000011, 48.907520910000088 ], [ -123.74715920099996, 48.907489598000012 ], [ -123.748082298999933, 48.907160599000122 ], [ -123.748741210999924, 48.906570900000098 ], [ -123.749041318999929, 48.906150365000087 ], [ -123.750686326999983, 48.906184942000074 ], [ -123.750663905999971, 48.906651245000091 ], [ -123.750958544999961, 48.906657436000067 ], [ -123.750923298999979, 48.907390593000095 ], [ -123.751091884999951, 48.907394135000061 ], [ -123.750986788999967, 48.909580247000079 ], [ -123.751085558999989, 48.909579603000083 ], [ -123.751093648999955, 48.910119302000112 ], [ -123.751503035, 48.910116637000037 ], [ -123.751490893999986, 48.909307088000055 ], [ -123.752719033999952, 48.909299078000103 ], [ -123.752723087999982, 48.909568927000088 ], [ -123.75313246899999, 48.909566255000122 ], [ -123.753148693999904, 48.910645652000028 ], [ -123.752739302999942, 48.910648325000068 ], [ -123.752743356999957, 48.910918174000102 ], [ -123.751515176999959, 48.910926184000111 ], [ -123.751519224999953, 48.911196033000053 ], [ -123.752747411999934, 48.911188023000065 ], [ -123.752759572999963, 48.911997572000097 ], [ -123.752350172999954, 48.912000243000101 ], [ -123.752354222999941, 48.912270093000053 ], [ -123.750716605999955, 48.912280765000034 ], [ -123.750720649999948, 48.91255061400004 ], [ -123.750654005999976, 48.912551047000122 ], [ -123.750653182999955, 48.912568167000053 ], [ -123.750494761999974, 48.912564838000087 ], [ -123.750330562999977, 48.915978964 ], [ -123.748657886999979, 48.915943808000073 ], [ -123.748593365999938, 48.917284203000044 ], [ -123.746758852999946, 48.917245615000077 ], [ -123.74537075399995, 48.91599540700004 ], [ -123.74467819199999, 48.915371604000036 ], [ -123.743460489999947, 48.914262960000045 ], [ -123.741782113999975, 48.912734798000052 ], [ -123.741378380999961, 48.912401890000062 ], [ -123.740698491000018, 48.91188838500004 ], [ -123.740196680999986, 48.911553496000103 ] ], [ [ -123.7204193419999, 48.901409100000102 ], [ -123.720440910999912, 48.900966405000176 ], [ -123.720255051, 48.900962447000033 ], [ -123.72026148399999, 48.901410086000062 ], [ -123.7204193419999, 48.901409100000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.755894590846047", "sL_AssetLoss": "7210", "sL_BldgLoss": "5450", "sL_StrLoss": "2740", "sL_NStrLoss": "2710", "sL_ContLoss": "1760", "geom_point": "0101000020E6100000A5B7A241C8EF5EC0A65EB7080C744840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.745240465999984, 48.906070376000066 ], [ -123.748400906999919, 48.906136897000096 ], [ -123.747885199, 48.906793098000051 ], [ -123.747479287999909, 48.907073709000024 ], [ -123.746977007999959, 48.907248905000081 ], [ -123.74605020199999, 48.907263106000144 ], [ -123.745195004999985, 48.90701360900006 ], [ -123.745240465999984, 48.906070376000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.806385591485878", "sL_AssetLoss": "4886", "sL_BldgLoss": "3940", "sL_StrLoss": "2050", "sL_NStrLoss": "1890", "sL_ContLoss": "946", "geom_point": "0101000020E6100000A207C23ECFF05EC0D019A422C6774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.76007999199993, 48.934905522000136 ], [ -123.764366247999988, 48.934995064000063 ], [ -123.764290459999955, 48.93657991000012 ], [ -123.762509538999936, 48.936820608000069 ], [ -123.762346905999962, 48.936842582000025 ], [ -123.76103990699994, 48.935725797000032 ], [ -123.76007999199993, 48.934905522000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33988500", "BldgCostT": "21285000", "sL_LossRatio": "0.738587324030245", "sL_AssetLoss": "244005", "sL_BldgLoss": "180219", "sL_StrLoss": "85229", "sL_NStrLoss": "94990", "sL_ContLoss": "63786", "geom_point": "0101000020E6100000CF34696CD2ED5EC0BF6E8DDFC6704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.715881436999936, 48.886646702000043 ], [ -123.715888489999926, 48.886502186 ], [ -123.71466540099999, 48.886476070000057 ], [ -123.714672039, 48.886340120000042 ], [ -123.712809442999969, 48.886300321000114 ], [ -123.712850223999965, 48.885465777000014 ], [ -123.712154670999894, 48.885450906000045 ], [ -123.712210015999915, 48.884318625000077 ], [ -123.712139137999941, 48.884317110000012 ], [ -123.712238554999985, 48.882283082000136 ], [ -123.708679736, 48.882206924000066 ], [ -123.708763260999888, 48.880500542000114 ], [ -123.705326281999973, 48.880426879000055 ], [ -123.705383902999984, 48.880171788000069 ], [ -123.705044391999962, 48.879301611000123 ], [ -123.704800066999923, 48.87892577200008 ], [ -123.704863369999941, 48.877634625000034 ], [ -123.704767237999974, 48.877632563000091 ], [ -123.705773114999914, 48.876272308000139 ], [ -123.706910825999927, 48.874788407000061 ], [ -123.707039270999985, 48.874647658000107 ], [ -123.707273355, 48.874391161000041 ], [ -123.707378568999943, 48.87427585800009 ], [ -123.70824232299999, 48.873323962000065 ], [ -123.708580241999954, 48.87299910400008 ], [ -123.708652892999964, 48.872929242000104 ], [ -123.708730003999975, 48.872855075000039 ], [ -123.709524879999933, 48.8720908210001 ], [ -123.712330111999947, 48.872150854000061 ], [ -123.712154181999949, 48.875751123000029 ], [ -123.711411777999956, 48.87573524200009 ], [ -123.711374958999954, 48.876488394000063 ], [ -123.71138420799997, 48.876488592000094 ], [ -123.711319519999961, 48.877811768000065 ], [ -123.714194578999965, 48.877873237000074 ], [ -123.714197288999969, 48.877817728000167 ], [ -123.71963978699992, 48.877933879000061 ], [ -123.719527307999982, 48.880242850000059 ], [ -123.72115087099999, 48.880277445000047 ], [ -123.721142258999947, 48.880454376000046 ], [ -123.723852684999926, 48.880512075000105 ], [ -123.723779292999922, 48.882021399000109 ], [ -123.729028289999988, 48.882132944000055 ], [ -123.728889392999989, 48.884995666000066 ], [ -123.728853606999962, 48.88573318200006 ], [ -123.72763008500003, 48.885707204000056 ], [ -123.727618369999959, 48.885948512000049 ], [ -123.726644434999983, 48.885927824000113 ], [ -123.726642831, 48.885960836000024 ], [ -123.725925804999974, 48.885945600000056 ], [ -123.725922604999937, 48.886011454000055 ], [ -123.725659023999953, 48.886005852000054 ], [ -123.725622535999975, 48.886756759000072 ], [ -123.721329704999974, 48.886665425000047 ], [ -123.721324965999912, 48.8867627650001 ], [ -123.715881436999936, 48.886646702000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45870250", "BldgCostT": "29425000", "sL_LossRatio": "0.744324193830065", "sL_AssetLoss": "389372", "sL_BldgLoss": "289819", "sL_StrLoss": "152019", "sL_NStrLoss": "137800", "sL_ContLoss": "99553", "geom_point": "0101000020E61000005B31E055E4EF5EC0A5AEE731EB714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.751039127999917, 48.900264986000103 ], [ -123.751131576999953, 48.898341494000086 ], [ -123.748921567999943, 48.89829503600005 ], [ -123.749094752999895, 48.894694837000031 ], [ -123.750529222999958, 48.894724997000054 ], [ -123.75056645799998, 48.893950396000086 ], [ -123.746615946999938, 48.89386728700007 ], [ -123.746731948999951, 48.891458145000065 ], [ -123.74391925799992, 48.891398884000075 ], [ -123.743869678999914, 48.892427293000033 ], [ -123.738425434999897, 48.892312377000103 ], [ -123.73855999499996, 48.889527827000094 ], [ -123.737634475, 48.889508264000035 ], [ -123.737657555999974, 48.889030796000107 ], [ -123.734291483999954, 48.888959578000041 ], [ -123.734430357999926, 48.886090753000076 ], [ -123.734390459999929, 48.88608990900012 ], [ -123.734386550999929, 48.886170645000014 ], [ -123.72894305899996, 48.886055245000101 ], [ -123.728994013, 48.885005105000111 ], [ -123.729117736999967, 48.882455008000072 ], [ -123.73005358599994, 48.882474868000102 ], [ -123.730057501999937, 48.882394131000083 ], [ -123.73550057199999, 48.882509474000123 ], [ -123.735361773999983, 48.885378317000061 ], [ -123.739909185999963, 48.88547446700003 ], [ -123.739886129999931, 48.885951939000059 ], [ -123.74072742, 48.885969706000054 ], [ -123.743251994999966, 48.886022981000053 ], [ -123.743117724999934, 48.88880755200011 ], [ -123.74399767, 48.888826108000067 ], [ -123.744047241999965, 48.887797692000078 ], [ -123.745406592999956, 48.887826343000029 ], [ -123.745415595999972, 48.887639426000078 ], [ -123.746195210999943, 48.887655849000041 ], [ -123.74815539799998, 48.887697118000062 ], [ -123.748159088999941, 48.887620393000077 ], [ -123.752536530999947, 48.887712424000071 ], [ -123.752542616999932, 48.887585701000077 ], [ -123.754836625999957, 48.887633858000108 ], [ -123.75484032699994, 48.887556716000127 ], [ -123.750478475999898, 48.887465107000068 ], [ -123.750651502999986, 48.883864842000136 ], [ -123.753226391999974, 48.883918944000044 ], [ -123.753268744, 48.883036606000132 ], [ -123.758711945999892, 48.883150768000064 ], [ -123.758661904999968, 48.884195814000073 ], [ -123.760076540999961, 48.884225438 ], [ -123.760448546999939, 48.884233225000102 ], [ -123.76027627199997, 48.887833503000074 ], [ -123.757982246999944, 48.887785461000135 ], [ -123.757813867999971, 48.891300153000039 ], [ -123.753436079999915, 48.891208338000048 ], [ -123.753429996999941, 48.89133506000006 ], [ -123.752188776999958, 48.89130899600007 ], [ -123.752181316999966, 48.891464284000023 ], [ -123.757168908999972, 48.891568932000062 ], [ -123.757138230999942, 48.892209032000089 ], [ -123.758864085999903, 48.892245189000022 ], [ -123.758752029, 48.894584975000029 ], [ -123.758227110999925, 48.894976504000027 ], [ -123.757543278999947, 48.895821362000135 ], [ -123.757195486999976, 48.895814075000018 ], [ -123.757173224999974, 48.89627854000004 ], [ -123.757129710999905, 48.896332298000075 ], [ -123.756614816999928, 48.897524399000112 ], [ -123.756637407999946, 48.898918689000048 ], [ -123.75691758899994, 48.899860581000084 ], [ -123.756912220999965, 48.899972550000044 ], [ -123.75650423899998, 48.899963999000072 ], [ -123.756484326999924, 48.900379260000051 ], [ -123.751039127999917, 48.900264986000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12142000", "BldgCostT": "8110000", "sL_LossRatio": "0.865415665028165", "sL_AssetLoss": "55742", "sL_BldgLoss": "48240", "sL_StrLoss": "33320", "sL_NStrLoss": "14920", "sL_ContLoss": "7502", "geom_point": "0101000020E61000009E47C5FF9DEE5EC0FA6F4EBAE76B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.722443090999917, 48.844840577000078 ], [ -123.725872125999913, 48.840886665000092 ], [ -123.726160542999963, 48.840696351000062 ], [ -123.727779912999964, 48.839627865000082 ], [ -123.727919749999913, 48.839490418000089 ], [ -123.727987120999927, 48.839424182000045 ], [ -123.728349743999956, 48.838906587000039 ], [ -123.728493620999956, 48.838747392000094 ], [ -123.728650945999959, 48.838646273000101 ], [ -123.72882252899997, 48.838594799000077 ], [ -123.729085926999943, 48.838515762000036 ], [ -123.729360942999961, 48.838401759000078 ], [ -123.729641844999946, 48.838220377000034 ], [ -123.729934439999951, 48.837939164000076 ], [ -123.73121134299997, 48.837538554000112 ], [ -123.73197649599993, 48.837332648000022 ], [ -123.732067672999918, 48.837279671000047 ], [ -123.733464539999915, 48.837309302000044 ], [ -123.733415183999924, 48.838329637000093 ], [ -123.733427900999942, 48.838329906000133 ], [ -123.733381667999964, 48.839285628000063 ], [ -123.734926204999937, 48.839318370000072 ], [ -123.734773098999966, 48.842485249000106 ], [ -123.734953331999947, 48.842484099000046 ], [ -123.734969127999989, 48.843563514000024 ], [ -123.733333744999953, 48.843573928000119 ], [ -123.733323738999943, 48.84288858500004 ], [ -123.73313213599999, 48.842884522000055 ], [ -123.733084819999974, 48.843862403000102 ], [ -123.731898891999975, 48.843837247000117 ], [ -123.731848528999947, 48.844877529000016 ], [ -123.726409838999984, 48.844761994000073 ], [ -123.726463030999952, 48.843665920000042 ], [ -123.726405503999956, 48.843664697000087 ], [ -123.72642379899996, 48.84328772000007 ], [ -123.726197788999983, 48.843282913000095 ], [ -123.72604868199997, 48.846354968000121 ], [ -123.725691458, 48.846347368000075 ], [ -123.72553224399995, 48.849626671000088 ], [ -123.723766584999979, 48.849589093000112 ], [ -123.723708238999976, 48.850789813000056 ], [ -123.722886010999957, 48.85077230400006 ], [ -123.722892488999946, 48.850745179000043 ], [ -123.72294249399998, 48.850535732 ], [ -123.72294213399999, 48.850412303000013 ], [ -123.722941265999935, 48.850133445000047 ], [ -123.722941056999929, 48.850061483000118 ], [ -123.722940992999938, 48.850034721000036 ], [ -123.72291676899998, 48.849932413000083 ], [ -123.722844991999978, 48.849629029000035 ], [ -123.722682637999966, 48.84930119800002 ], [ -123.72246572499995, 48.849002826000053 ], [ -123.722499096999968, 48.8489903890001 ], [ -123.722564195999951, 48.848966199000088 ], [ -123.722738087, 48.848900132 ], [ -123.722770796999953, 48.848887699000073 ], [ -123.722827801999941, 48.848833912000067 ], [ -123.722815913, 48.84866070000006 ], [ -123.72166378899999, 48.847523389000131 ], [ -123.721521801999984, 48.847308602000069 ], [ -123.721493685, 48.847102502000077 ], [ -123.7216406269999, 48.846649712000044 ], [ -123.721877918999937, 48.84591869400009 ], [ -123.722099424999953, 48.845494113000086 ], [ -123.722436305999921, 48.844848385000049 ], [ -123.722443090999917, 48.844840577000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390584", "BldgCostT": "2338334", "sL_LossRatio": "0.902876919749081", "sL_AssetLoss": "9246", "sL_BldgLoss": "8348", "sL_StrLoss": "6130", "sL_NStrLoss": "2218", "sL_ContLoss": "898", "geom_point": "0101000020E610000001AD339D21EE5EC0831E415C7F6D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.722390544999953, 48.851753996000113 ], [ -123.724024456, 48.851788791000089 ], [ -123.723849501999908, 48.855389195000072 ], [ -123.72182625, 48.855346106000141 ], [ -123.72167269, 48.858502940000029 ], [ -123.716890215999967, 48.858400936000095 ], [ -123.717029080999922, 48.858068782000068 ], [ -123.717436573999947, 48.857094088000117 ], [ -123.717996018999955, 48.855950908000082 ], [ -123.718499034999979, 48.855293989000103 ], [ -123.719283127000011, 48.854485376000071 ], [ -123.722290849999965, 48.851899552000141 ], [ -123.722390544999953, 48.851753996000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11477417", "BldgCostT": "7651667", "sL_LossRatio": "0.834996345846943", "sL_AssetLoss": "67047", "sL_BldgLoss": "55984", "sL_StrLoss": "34130", "sL_NStrLoss": "21854", "sL_ContLoss": "11063", "geom_point": "0101000020E6100000490E75AB29EF5EC0E9E0CB0A666A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.733026312999982, 48.829502383000033 ], [ -123.733125190999971, 48.82917288500002 ], [ -123.733331568999944, 48.828774836000086 ], [ -123.73353640199997, 48.828379688000041 ], [ -123.73370589299995, 48.827827271000089 ], [ -123.733812495, 48.827593480000097 ], [ -123.734011201999948, 48.827421991000094 ], [ -123.734162337999976, 48.827326569000029 ], [ -123.734253033999963, 48.82726930200009 ], [ -123.734517884999931, 48.827102085000035 ], [ -123.734559986999955, 48.827068655000083 ], [ -123.73465465699995, 48.826993519000119 ], [ -123.735910734999948, 48.827020140000045 ], [ -123.735989768999957, 48.825384008000086 ], [ -123.740181213999946, 48.825472737000027 ], [ -123.740432086999974, 48.826623609000073 ], [ -123.741073278, 48.828254594000022 ], [ -123.741070665999928, 48.828255187000096 ], [ -123.741160882999964, 48.829097704000041 ], [ -123.738098979999933, 48.82903293600009 ], [ -123.738079626999948, 48.829433914000099 ], [ -123.740928792999952, 48.829494185000073 ], [ -123.740755219999983, 48.833094746000086 ], [ -123.739988588999964, 48.833078536000102 ], [ -123.739891598999961, 48.835089561000103 ], [ -123.739260704999978, 48.835076217000086 ], [ -123.73919924099999, 48.836350175000035 ], [ -123.736882963999946, 48.836301152000068 ], [ -123.736878952, 48.836384231000061 ], [ -123.736622031999957, 48.836378791000108 ], [ -123.736585382999948, 48.837137536000085 ], [ -123.732462690999938, 48.837050149000035 ], [ -123.732544044999884, 48.837002880000107 ], [ -123.733080885999968, 48.836437343000085 ], [ -123.733387480999909, 48.835770082000124 ], [ -123.733458727999903, 48.835158566000068 ], [ -123.733533896, 48.833749984000072 ], [ -123.733545923999927, 48.833527668000045 ], [ -123.73318539, 48.832345049000018 ], [ -123.733058107999952, 48.831262885000051 ], [ -123.733007818999951, 48.83016518800008 ], [ -123.733026312999982, 48.829502383000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.769068502276008", "sL_AssetLoss": "9007", "sL_BldgLoss": "6927", "sL_StrLoss": "3339", "sL_NStrLoss": "3588", "sL_ContLoss": "2080", "geom_point": "0101000020E61000000951DFAEEEEE5EC0ECC0181561734840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.73606530699999, 48.903917606000078 ], [ -123.733305396999967, 48.901829797000104 ], [ -123.732493912999928, 48.901376889000062 ], [ -123.730296205999963, 48.900365693000012 ], [ -123.729156852999893, 48.899451614000029 ], [ -123.730719067999985, 48.899484747000031 ], [ -123.730700144999943, 48.899874926000116 ], [ -123.732180938999974, 48.899906311000038 ], [ -123.732162820999974, 48.900280129000123 ], [ -123.73366150799994, 48.900311873000078 ], [ -123.733629222999951, 48.900978410000072 ], [ -123.734575914999951, 48.900998451000085 ], [ -123.734519897999959, 48.902155363000098 ], [ -123.736365420999959, 48.902194406000028 ], [ -123.736272885999952, 48.904106938000034 ], [ -123.73606530699999, 48.903917606000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.964335606869915", "sL_AssetLoss": "4867.6", "sL_BldgLoss": "4694", "sL_StrLoss": "4160", "sL_NStrLoss": "534", "sL_ContLoss": "173.6", "geom_point": "0101000020E6100000B5D871EC6EF05EC05F5C4F19246E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.754136283999955, 48.858619354000034 ], [ -123.759576650999918, 48.858733477000051 ], [ -123.759404401999944, 48.862333900000088 ], [ -123.753963617999929, 48.862219769000092 ], [ -123.754136283999955, 48.858619354000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8816083", "BldgCostT": "5608333", "sL_LossRatio": "0.874244695833901", "sL_AssetLoss": "22011", "sL_BldgLoss": "19243", "sL_StrLoss": "12787", "sL_NStrLoss": "6456", "sL_ContLoss": "2768", "geom_point": "0101000020E6100000CFD9E133C2ED5EC0EA760F33A86E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.716806070999965, 48.858602199000089 ], [ -123.71938494199999, 48.858657231000102 ], [ -123.719209603999971, 48.862257589000073 ], [ -123.71735307799996, 48.862217977000064 ], [ -123.717234159999933, 48.864657530000066 ], [ -123.71681066, 48.864648490000043 ], [ -123.716766890999978, 48.86554613900006 ], [ -123.715525901999968, 48.865519638000151 ], [ -123.715454918999924, 48.866974568000082 ], [ -123.714962946999918, 48.866964058000086 ], [ -123.714921445999934, 48.867814478000064 ], [ -123.714520665999899, 48.867805915000133 ], [ -123.71440096299996, 48.87025818400015 ], [ -123.710960383999961, 48.870184608000059 ], [ -123.711017820999984, 48.869982994000047 ], [ -123.711039493999962, 48.869500944000045 ], [ -123.711143162999974, 48.867196104000143 ], [ -123.711260862999964, 48.866626502000059 ], [ -123.711539412999983, 48.86599813300014 ], [ -123.711775935999981, 48.865616644000063 ], [ -123.713666997999894, 48.863199510000051 ], [ -123.714138956999932, 48.862596219000075 ], [ -123.714889320999958, 48.861636980000043 ], [ -123.715009617999939, 48.861483222000075 ], [ -123.715699885999967, 48.860600753000078 ], [ -123.716282307999947, 48.859713982000081 ], [ -123.71656736599999, 48.859173143000135 ], [ -123.716806070999965, 48.858602199000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177916", "BldgCostT": "2191666", "sL_LossRatio": "0.801923375213278", "sL_AssetLoss": "25788", "sL_BldgLoss": "20680", "sL_StrLoss": "11760", "sL_NStrLoss": "8920", "sL_ContLoss": "5108", "geom_point": "0101000020E6100000A73428BB15ED5EC0139B8F6B43714840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.70204951599996, 48.884342895000053 ], [ -123.70190708199999, 48.883914497000056 ], [ -123.701826184999945, 48.883482106000073 ], [ -123.701783315999975, 48.882994585000084 ], [ -123.701839986999943, 48.882450811000083 ], [ -123.70195585499998, 48.881969467000026 ], [ -123.704304101999966, 48.882019880000023 ], [ -123.704374989, 48.882165695000062 ], [ -123.705702388999924, 48.882698586000046 ], [ -123.705693890999953, 48.882871954000073 ], [ -123.705871095999981, 48.882875753000071 ], [ -123.705842955999969, 48.883449880000043 ], [ -123.706177219999972, 48.883457047000078 ], [ -123.706135187999934, 48.884314711000066 ], [ -123.706910543999939, 48.884331331000091 ], [ -123.706734151999981, 48.887931520000095 ], [ -123.70434246899994, 48.887880235000075 ], [ -123.70403577499999, 48.887590294000098 ], [ -123.703744405999927, 48.88728038400005 ], [ -123.702822697999977, 48.885936197000078 ], [ -123.702597470999947, 48.88549152500012 ], [ -123.702546442999946, 48.885390828000077 ], [ -123.702258889999953, 48.884823107000017 ], [ -123.70204951599996, 48.884342895000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.753614272531529", "sL_AssetLoss": "3251", "sL_BldgLoss": "2450", "sL_StrLoss": "560", "sL_NStrLoss": "1890", "sL_ContLoss": "801", "geom_point": "0101000020E6100000B85342C907EE5EC08CD0952962724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.717960816999963, 48.893623494000039 ], [ -123.717545790999949, 48.892304589000069 ], [ -123.717466500999976, 48.89217716900005 ], [ -123.718834573, 48.892206339000026 ], [ -123.718810750999964, 48.892695043000053 ], [ -123.718923097999948, 48.892697438000077 ], [ -123.718908236999965, 48.893002348000088 ], [ -123.720459361999943, 48.893035399000084 ], [ -123.720428823999967, 48.893662318000047 ], [ -123.720728189999988, 48.89366869400007 ], [ -123.720656670999958, 48.895137014000106 ], [ -123.71953271199996, 48.894774191000096 ], [ -123.718639495999966, 48.894366907000119 ], [ -123.717960816999963, 48.893623494000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.898435004790802", "sL_AssetLoss": "3131", "sL_BldgLoss": "2813", "sL_StrLoss": "2030", "sL_NStrLoss": "783", "sL_ContLoss": "318", "geom_point": "0101000020E6100000455A32E08FEE5EC04099D23CF8724840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.72642849099995, 48.898024306000046 ], [ -123.72600201099999, 48.897802103000124 ], [ -123.72554337399994, 48.897302734000064 ], [ -123.726922879999947, 48.897332042000102 ], [ -123.726895459999938, 48.897896494000072 ], [ -123.728869042999975, 48.897938392000086 ], [ -123.728804621999984, 48.899265630000066 ], [ -123.727792404999931, 48.898870205000037 ], [ -123.726815190999957, 48.89835470500006 ], [ -123.72642849099995, 48.898024306000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8772501", "BldgCostT": "6050001", "sL_LossRatio": "0.902095962597567", "sL_AssetLoss": "25239", "sL_BldgLoss": "22768", "sL_StrLoss": "16511", "sL_NStrLoss": "6257", "sL_ContLoss": "2471", "geom_point": "0101000020E610000067E0DB4FA1F55EC047862C3D606F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.834657985999939, 48.872855455000057 ], [ -123.834824487999953, 48.86925497300011 ], [ -123.83525389199994, 48.869263665000126 ], [ -123.83528610899999, 48.868566783000034 ], [ -123.83610331200002, 48.868583319000066 ], [ -123.836147828999984, 48.867620001000013 ], [ -123.841589436999953, 48.867729952000104 ], [ -123.841462428999989, 48.870485136000063 ], [ -123.840859604999963, 48.870978145000045 ], [ -123.839339775, 48.872227700000067 ], [ -123.838692603999931, 48.872003969000076 ], [ -123.838648435999957, 48.8720507560001 ], [ -123.837817293999962, 48.872919360000033 ], [ -123.834657985999939, 48.872855455000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5594583", "BldgCostT": "3858333", "sL_LossRatio": "0.86602236857488", "sL_AssetLoss": "25661", "sL_BldgLoss": "22223", "sL_StrLoss": "14680", "sL_NStrLoss": "7543", "sL_ContLoss": "3438", "geom_point": "0101000020E61000002C95E0A2CDF35EC0F30EA617EB674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.806792729999984, 48.81000580700001 ], [ -123.81222758399997, 48.810117260000027 ], [ -123.812059555999923, 48.813718047000073 ], [ -123.806624286, 48.813606586000063 ], [ -123.806792729999984, 48.81000580700001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8252917", "BldgCostT": "5691667", "sL_LossRatio": "0.846335886048014", "sL_AssetLoss": "40101.1", "sL_BldgLoss": "33939", "sL_StrLoss": "21760", "sL_NStrLoss": "12179", "sL_ContLoss": "6162.1", "geom_point": "0101000020E61000003AF2D5C8CDF35EC0E5F0492712664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.80758411799998, 48.79539148200007 ], [ -123.813017281, 48.795502898000052 ], [ -123.812921452999944, 48.797557979000025 ], [ -123.812849366999927, 48.79910377100002 ], [ -123.811304630999985, 48.799072122000062 ], [ -123.811286225999964, 48.799466509000084 ], [ -123.805852608999928, 48.799355005000088 ], [ -123.805901920999972, 48.798300951000101 ], [ -123.806007046000033, 48.796053747000066 ], [ -123.806021059999949, 48.795754145000046 ], [ -123.807565683999911, 48.795785871000142 ], [ -123.80758411799998, 48.79539148200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.810884353741497", "sL_AssetLoss": "3675", "sL_BldgLoss": "2980", "sL_StrLoss": "1820", "sL_NStrLoss": "1160", "sL_ContLoss": "695", "geom_point": "0101000020E61000005E8EEC84B6F45EC0FC702DE6A9654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.823287864999912, 48.792399360000097 ], [ -123.824107101999971, 48.792416059000111 ], [ -123.824069037999934, 48.79470457000015 ], [ -123.824063055999943, 48.795063195000154 ], [ -123.824055527999946, 48.796019319000052 ], [ -123.823120750999976, 48.796000267000075 ], [ -123.823155417999885, 48.795253308000021 ], [ -123.823287864999912, 48.792399360000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8180417", "BldgCostT": "5641667", "sL_LossRatio": "0.852947251428628", "sL_AssetLoss": "40668.4", "sL_BldgLoss": "34688", "sL_StrLoss": "22210", "sL_NStrLoss": "12478", "sL_ContLoss": "5980.4", "geom_point": "0101000020E61000009D485954FEF25EC094E4147802684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.795185052999898, 48.810638022000099 ], [ -123.800619952999938, 48.810750066000061 ], [ -123.800451031999927, 48.814350831000127 ], [ -123.798370770999938, 48.814307978000095 ], [ -123.798361157999977, 48.814512682000064 ], [ -123.792925827999909, 48.814400524000042 ], [ -123.79309532799995, 48.810799771000035 ], [ -123.795175426999933, 48.810842727000114 ], [ -123.795185052999898, 48.810638022000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106575001", "BldgCostT": "73500001", "sL_LossRatio": "0.829872688671782", "sL_AssetLoss": "696450.2", "sL_BldgLoss": "577965", "sL_StrLoss": "344816", "sL_NStrLoss": "233149", "sL_ContLoss": "118485.2", "geom_point": "0101000020E61000006B8CB543ECF25EC01D50E39C60644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.794128422999933, 48.796001529000094 ], [ -123.79423409099995, 48.793754681000081 ], [ -123.793305376999982, 48.79373549200011 ], [ -123.793308081999896, 48.793677980000034 ], [ -123.791603918999968, 48.793642747000028 ], [ -123.791619267999977, 48.793316733000033 ], [ -123.786277147999954, 48.79320610900001 ], [ -123.786278677999931, 48.79317369100005 ], [ -123.785700127999974, 48.793161695000073 ], [ -123.785706218999948, 48.793032663000091 ], [ -123.785142915999984, 48.793020980000065 ], [ -123.785147131999949, 48.792931695000078 ], [ -123.785097553999961, 48.7929306670001 ], [ -123.785034095999919, 48.794274472000055 ], [ -123.784054657999931, 48.794254150000043 ], [ -123.784027087999974, 48.794837694000037 ], [ -123.782938262999906, 48.794815092000071 ], [ -123.782859377999955, 48.792076255000026 ], [ -123.782857742999951, 48.791951261000079 ], [ -123.782856205999948, 48.791831239000082 ], [ -123.782834455999961, 48.790131227000124 ], [ -123.783632960999938, 48.790147806000043 ], [ -123.783671788, 48.789326054000085 ], [ -123.783691828999977, 48.788901873000142 ], [ -123.784632953999932, 48.788921406000057 ], [ -123.785204002999976, 48.788933254000092 ], [ -123.785216154999986, 48.788675875000088 ], [ -123.785228687000014, 48.7884104010001 ], [ -123.782811794999972, 48.788360235000013 ], [ -123.782788749999952, 48.786559586000116 ], [ -123.782777060999962, 48.785645443000092 ], [ -123.782776256999938, 48.784652457000099 ], [ -123.78278198199996, 48.783101592000044 ], [ -123.782876359999946, 48.783103552000121 ], [ -123.782887096999929, 48.782876336000122 ], [ -123.78582837499999, 48.782937385000089 ], [ -123.785857912999958, 48.782311508000085 ], [ -123.788502367999968, 48.782366326000037 ], [ -123.788539446999977, 48.781579671000074 ], [ -123.789065667999949, 48.781590571000059 ], [ -123.78921099199998, 48.778506479000022 ], [ -123.79035193799993, 48.778530104000033 ], [ -123.79042983699999, 48.776875903000132 ], [ -123.793438132999967, 48.776938138000013 ], [ -123.793456347999893, 48.776550803000099 ], [ -123.793485367999921, 48.77593367700004 ], [ -123.797613292999984, 48.776018935000053 ], [ -123.797620609, 48.775863078000086 ], [ -123.798380430999885, 48.775878754000161 ], [ -123.798398998999915, 48.775482996000065 ], [ -123.799283034999945, 48.775501228000095 ], [ -123.799304120999963, 48.775051643000019 ], [ -123.79933502199999, 48.774392716000101 ], [ -123.80245746099996, 48.774457053000049 ], [ -123.80252831599995, 48.772943963000081 ], [ -123.800900767999963, 48.772955283000059 ], [ -123.800890611999961, 48.772316869000079 ], [ -123.800887889999913, 48.772145726000062 ], [ -123.802112665999942, 48.772137207000114 ], [ -123.802108366999931, 48.771867355000019 ], [ -123.802578884999946, 48.771864080000114 ], [ -123.80258093899999, 48.771820188000049 ], [ -123.803457084999977, 48.771838224000071 ], [ -123.803554227999882, 48.769762700000044 ], [ -123.80378340099999, 48.76981269200008 ], [ -123.804152113999947, 48.769791297000019 ], [ -123.804299887999932, 48.769664602000027 ], [ -123.804377164999892, 48.769425726000044 ], [ -123.804816553999927, 48.769434765000035 ], [ -123.804859833999899, 48.768509434000116 ], [ -123.805888342999978, 48.768530586000082 ], [ -123.805876916999935, 48.768907294000066 ], [ -123.805988994999908, 48.769125898000084 ], [ -123.80651745499992, 48.769784161000096 ], [ -123.806814520999978, 48.770154145000106 ], [ -123.806832684999932, 48.77017680900012 ], [ -123.806992696999927, 48.770415297000106 ], [ -123.80701527199993, 48.770513992000076 ], [ -123.806954515999934, 48.770621703000124 ], [ -123.806769902999989, 48.770793696000069 ], [ -123.806594893999986, 48.770901788000096 ], [ -123.806029697999989, 48.771075798000069 ], [ -123.805817592999929, 48.771193105000059 ], [ -123.8055926, 48.771501192000194 ], [ -123.805567516999957, 48.77183409500006 ], [ -123.805735005999935, 48.772146600000099 ], [ -123.806198810999931, 48.77263281200009 ], [ -123.806782906999956, 48.773073788000033 ], [ -123.806857182999934, 48.77316991600005 ], [ -123.806867693999948, 48.773293608000074 ], [ -123.806702907999963, 48.773680414000125 ], [ -123.80668564599992, 48.773783260000137 ], [ -123.806684103999942, 48.773792606000058 ], [ -123.806289275000012, 48.774185499000033 ], [ -123.806189101999962, 48.774350094000063 ], [ -123.806160205999916, 48.774533392000116 ], [ -123.80620581, 48.774696447000025 ], [ -123.806256807999929, 48.774878688000051 ], [ -123.806348810999907, 48.775003994000059 ], [ -123.806560807, 48.775121890000044 ], [ -123.806922381999939, 48.77562041700002 ], [ -123.80714931299994, 48.775933295000129 ], [ -123.807056078999935, 48.776242298000035 ], [ -123.806867819999979, 48.776549298000127 ], [ -123.807163494999941, 48.776415693000061 ], [ -123.807388, 48.776352694000089 ], [ -123.807845856999961, 48.776315205000088 ], [ -123.807959620999924, 48.776305897000036 ], [ -123.808298900999887, 48.776316507000026 ], [ -123.808689522999913, 48.776419096000026 ], [ -123.809383816999983, 48.776658055000098 ], [ -123.809459101999963, 48.77668397200005 ], [ -123.810161400999974, 48.776925674000154 ], [ -123.810345285999929, 48.776988964000026 ], [ -123.81037116899995, 48.776997866000059 ], [ -123.810299212999965, 48.778539796000118 ], [ -123.809709221999952, 48.778527691000072 ], [ -123.80970059899991, 48.778712410000061 ], [ -123.806901118999988, 48.778654927000062 ], [ -123.806859934000016, 48.77953607700006 ], [ -123.803727591, 48.779471672000035 ], [ -123.803684254999979, 48.780397453000013 ], [ -123.803197529999949, 48.780387437000101 ], [ -123.803195052999939, 48.780440333000072 ], [ -123.804990382999975, 48.780477267 ], [ -123.804976220999947, 48.780779996000035 ], [ -123.806967029999953, 48.780820916000025 ], [ -123.806798703999945, 48.784421864000066 ], [ -123.806153340999984, 48.784408603000053 ], [ -123.806108230999911, 48.785373279000098 ], [ -123.804905325, 48.785348551 ], [ -123.804894793999921, 48.785573608000078 ], [ -123.80086701099999, 48.785490712000083 ], [ -123.800853745999945, 48.785773706000057 ], [ -123.796170778999979, 48.785677135000135 ], [ -123.79615537199993, 48.78600512200007 ], [ -123.795753211999951, 48.785996819000047 ], [ -123.795723563999942, 48.78662781200007 ], [ -123.796880653999921, 48.786651697000075 ], [ -123.796861268999962, 48.787064467000057 ], [ -123.799032, 48.787109241000074 ], [ -123.79900136699996, 48.787762150000056 ], [ -123.799136734999976, 48.787764941000084 ], [ -123.799134008999943, 48.787823074000116 ], [ -123.801391157999888, 48.787869581000088 ], [ -123.801222378999938, 48.791470481000069 ], [ -123.800296093999961, 48.791451401000103 ], [ -123.800290048999969, 48.791580303000053 ], [ -123.79884611199995, 48.791550545000092 ], [ -123.798769134999972, 48.793190899000059 ], [ -123.799697839999936, 48.793210041000101 ], [ -123.799625405999976, 48.794754104000091 ], [ -123.799528911999985, 48.796810906000125 ], [ -123.794095628999926, 48.796698804000052 ], [ -123.794128422999933, 48.796001529000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.869975265583572", "sL_AssetLoss": "5619.7", "sL_BldgLoss": "4889", "sL_StrLoss": "3220", "sL_NStrLoss": "1669", "sL_ContLoss": "730.7", "geom_point": "0101000020E6100000B57C8FC040F35EC0C4E1B31246674840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.79979079099995, 48.805888575000104 ], [ -123.80183345399999, 48.805874384000049 ], [ -123.80186357300002, 48.807763341000026 ], [ -123.799820832999927, 48.807777534000117 ], [ -123.79979079099995, 48.805888575000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.874772525286724", "sL_AssetLoss": "23629", "sL_BldgLoss": "20670", "sL_StrLoss": "14410", "sL_NStrLoss": "6260", "sL_ContLoss": "2959", "geom_point": "0101000020E6100000ADFB641839F25EC04D0B033B23634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.782742606999975, 48.774425510000121 ], [ -123.782728869999957, 48.772638057000066 ], [ -123.782877553999967, 48.7726084130001 ], [ -123.784611804999912, 48.772262584000032 ], [ -123.788960581999973, 48.771581399000091 ], [ -123.788883067999947, 48.773226539000106 ], [ -123.784914889999982, 48.773144252000087 ], [ -123.784901861999955, 48.773420248000086 ], [ -123.784922307999963, 48.773420673000011 ], [ -123.784867729999988, 48.774576898000092 ], [ -123.784752317999974, 48.77702162900006 ], [ -123.784361874999959, 48.777013525000058 ], [ -123.784335830999936, 48.777565038000077 ], [ -123.784100997999957, 48.777560164000107 ], [ -123.784069357999925, 48.77823014300003 ], [ -123.783849479999915, 48.778225578000047 ], [ -123.783813291999962, 48.778991747000056 ], [ -123.782777558999939, 48.778970237000067 ], [ -123.782742606999975, 48.774425510000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19038500", "BldgCostT": "13130000", "sL_LossRatio": "0.885570552346248", "sL_AssetLoss": "73986.2", "sL_BldgLoss": "65520", "sL_StrLoss": "46218", "sL_NStrLoss": "19302", "sL_ContLoss": "8466.2", "geom_point": "0101000020E610000087FA8657CCF45EC0745BC75DA9634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.821506115999981, 48.780510269000033 ], [ -123.821535035999958, 48.779887386000091 ], [ -123.821254642999975, 48.779881663000069 ], [ -123.821259211000012, 48.779783292000054 ], [ -123.821263007999974, 48.779701541000058 ], [ -123.820125341000036, 48.779678314000101 ], [ -123.820124065999934, 48.779705750000041 ], [ -123.819388674999942, 48.779690729000059 ], [ -123.819387320999979, 48.779719873000062 ], [ -123.819360769999918, 48.780291167000037 ], [ -123.814122986999934, 48.780184037000055 ], [ -123.813929351999917, 48.780180071000053 ], [ -123.814024933999946, 48.778128540000061 ], [ -123.81154948899993, 48.778077815000074 ], [ -123.811585391999969, 48.777308025000067 ], [ -123.811624116999951, 48.777313710000051 ], [ -123.812815927999978, 48.7773742050001 ], [ -123.81318688199994, 48.777374593000033 ], [ -123.813461289999978, 48.777319003000066 ], [ -123.814739693999954, 48.776949496000093 ], [ -123.815057792999966, 48.776891187000082 ], [ -123.815385699, 48.776882533000034 ], [ -123.815479490999948, 48.776880056000039 ], [ -123.81578849499999, 48.776871907000043 ], [ -123.817725691999968, 48.777530597000109 ], [ -123.820600970999976, 48.777851593000051 ], [ -123.821311396999988, 48.777930903000019 ], [ -123.821737105999929, 48.777924296000023 ], [ -123.822063997999948, 48.777850792000059 ], [ -123.822674945999935, 48.777677156000045 ], [ -123.822865364999984, 48.777623035000026 ], [ -123.823960379999946, 48.777311802000021 ], [ -123.824658652, 48.777113408000147 ], [ -123.825016006999988, 48.777026980000116 ], [ -123.825905765999934, 48.776934334000053 ], [ -123.826413041999928, 48.776881530000075 ], [ -123.828082722999952, 48.776923642000021 ], [ -123.829636635999961, 48.776848402000091 ], [ -123.829917471, 48.776834796000038 ], [ -123.830704183999984, 48.776866995000098 ], [ -123.832358668999973, 48.777325901000111 ], [ -123.83265348799992, 48.777358998000089 ], [ -123.83546449499994, 48.777376409000055 ], [ -123.83654570299997, 48.777391093000077 ], [ -123.837665873999953, 48.777411997000058 ], [ -123.837681476999947, 48.779709758000138 ], [ -123.837580847999973, 48.779707719000051 ], [ -123.837579658999942, 48.779733520000093 ], [ -123.83214826399994, 48.779623350000087 ], [ -123.83214925599998, 48.779601851000059 ], [ -123.83045880499995, 48.779567506 ], [ -123.83046060799991, 48.779528521000046 ], [ -123.828879148999988, 48.779496365000071 ], [ -123.828892342999922, 48.779211226000093 ], [ -123.827698423999962, 48.77918693500007 ], [ -123.827704301999958, 48.779059950000025 ], [ -123.82766510099998, 48.779059152000102 ], [ -123.827659534999924, 48.779179366000044 ], [ -123.827004971999926, 48.779166042000028 ], [ -123.826967436999922, 48.77997648300007 ], [ -123.826937588999925, 48.780620980000023 ], [ -123.821506115999981, 48.780510269000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.760342368045649", "sL_AssetLoss": "7010", "sL_BldgLoss": "5330", "sL_StrLoss": "2740", "sL_NStrLoss": "2590", "sL_ContLoss": "1680", "geom_point": "0101000020E6100000FE63635616EB5EC0C06D5444595F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.671625648999978, 48.744392321000113 ], [ -123.67487368099998, 48.7444083070001 ], [ -123.674821700999971, 48.745458030000059 ], [ -123.671574377999974, 48.745387185 ], [ -123.671625648999978, 48.744392321000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153751", "BldgCostT": "2175001", "sL_LossRatio": "0.873741994510521", "sL_AssetLoss": "12241.6", "sL_BldgLoss": "10696", "sL_StrLoss": "7470", "sL_NStrLoss": "3226", "sL_ContLoss": "1545.6", "geom_point": "0101000020E61000009AFED3AA69E85EC07441BFE76E624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.629712055999903, 48.771089860000117 ], [ -123.629743413999918, 48.770469042000059 ], [ -123.629311679999887, 48.770459451000086 ], [ -123.629427128999936, 48.768174050000013 ], [ -123.62896003899999, 48.768163673000039 ], [ -123.628763111999945, 48.766802241000036 ], [ -123.629128591999958, 48.766721448000041 ], [ -123.63207583599997, 48.766086408000021 ], [ -123.632261296999914, 48.766293401000055 ], [ -123.632374715999916, 48.766688006000045 ], [ -123.632269098999984, 48.766985604000091 ], [ -123.632319684999928, 48.767750392000011 ], [ -123.632473419999926, 48.768082303000028 ], [ -123.632955514999963, 48.768466798000098 ], [ -123.633551379999943, 48.769362600000129 ], [ -123.634530494999979, 48.770355297000037 ], [ -123.635167334999949, 48.770706951000129 ], [ -123.635141966999939, 48.771210329000056 ], [ -123.634766005999936, 48.771201997000041 ], [ -123.629712055999903, 48.771089860000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.767676767676768", "sL_AssetLoss": "12870", "sL_BldgLoss": "9880", "sL_StrLoss": "5190", "sL_NStrLoss": "4690", "sL_ContLoss": "2990", "geom_point": "0101000020E6100000240FE1EBEDEA5EC092C581804A634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.670351295999936, 48.776486502000047 ], [ -123.669297211999989, 48.776114795000112 ], [ -123.668680105999968, 48.775802905000035 ], [ -123.667772492999958, 48.774989689000044 ], [ -123.66768761299997, 48.774801690000061 ], [ -123.667790198999981, 48.774270409000025 ], [ -123.667780244999904, 48.774231889000063 ], [ -123.668212688999944, 48.774241339000064 ], [ -123.668211023999902, 48.774274843000079 ], [ -123.669925729999989, 48.774312294000026 ], [ -123.669886804999948, 48.775096168000132 ], [ -123.671952303999959, 48.775141243000107 ], [ -123.671934844999953, 48.7754931220001 ], [ -123.672352611999912, 48.775502234000044 ], [ -123.67234466799999, 48.775662364000048 ], [ -123.672993697999942, 48.775676517000129 ], [ -123.672978221, 48.775988594000118 ], [ -123.673978180999939, 48.776010393000043 ], [ -123.673963576999981, 48.776304991000124 ], [ -123.674458680999948, 48.776315780000083 ], [ -123.674448562999956, 48.776519937000046 ], [ -123.67456533, 48.776522481000129 ], [ -123.673758416999974, 48.776844006000012 ], [ -123.673200884999972, 48.77691949700008 ], [ -123.671840483999958, 48.776890995000016 ], [ -123.670351295999936, 48.776486502000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.913169319826339", "sL_AssetLoss": "2764", "sL_BldgLoss": "2524", "sL_StrLoss": "1900", "sL_NStrLoss": "624", "sL_ContLoss": "240", "geom_point": "0101000020E61000007C34AC1448E95EC0111426293C624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.646220348999961, 48.768738337000073 ], [ -123.645803895999947, 48.768629105000066 ], [ -123.644346682999981, 48.768619194000038 ], [ -123.644170781999918, 48.768556499000042 ], [ -123.643922021999956, 48.768288803000083 ], [ -123.643886912999946, 48.76777599200004 ], [ -123.64403089299999, 48.767343092000083 ], [ -123.644273909999967, 48.767035503000102 ], [ -123.644853594999944, 48.766690812000043 ], [ -123.644879297000017, 48.766574009000109 ], [ -123.643817074, 48.766087517000059 ], [ -123.643817540999962, 48.766086773000104 ], [ -123.643864086999926, 48.766012576000051 ], [ -123.643887332999924, 48.765975472000022 ], [ -123.643897514999978, 48.765959234000078 ], [ -123.645586235999957, 48.765996509000097 ], [ -123.645556411999948, 48.766591010000049 ], [ -123.645859859999987, 48.766597704000077 ], [ -123.645836951999982, 48.767054393000066 ], [ -123.645923586999942, 48.767056304000029 ], [ -123.645890497999929, 48.767715973000072 ], [ -123.646122918999978, 48.767721101000056 ], [ -123.64608836799999, 48.768409929000029 ], [ -123.64623665499991, 48.76841320000004 ], [ -123.646220348999961, 48.768738337000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.80408503543143", "sL_AssetLoss": "9596", "sL_BldgLoss": "7716", "sL_StrLoss": "4590", "sL_NStrLoss": "3126", "sL_ContLoss": "1880", "geom_point": "0101000020E61000005BB5E70976EA5EC01460F5D3C1604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.660748479999967, 48.756479417000044 ], [ -123.660775158999925, 48.755944029 ], [ -123.660564704999985, 48.755939414000039 ], [ -123.660598887999967, 48.75525350700012 ], [ -123.662437892999947, 48.755295906000079 ], [ -123.662886143, 48.755306238000067 ], [ -123.663117676999917, 48.755311564000131 ], [ -123.663185601999942, 48.755313151000067 ], [ -123.663270503999982, 48.7553151010001 ], [ -123.663293507999967, 48.755315160000102 ], [ -123.664980219999975, 48.755319736000068 ], [ -123.665524540999968, 48.755321215000052 ], [ -123.666240175999945, 48.755323143000069 ], [ -123.66617678099999, 48.756598310000108 ], [ -123.660748479999967, 48.756479417000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22098667", "BldgCostT": "14976667", "sL_LossRatio": "0.779063237789304", "sL_AssetLoss": "165613", "sL_BldgLoss": "129023", "sL_StrLoss": "79923", "sL_NStrLoss": "49100", "sL_ContLoss": "36590", "geom_point": "0101000020E6100000B2B0C82BE7EA5EC0F95D64449A634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.655300400999963, 48.780639773000061 ], [ -123.655301279999946, 48.780622160000078 ], [ -123.655233971000015, 48.780622543000064 ], [ -123.655223431999971, 48.779812960000086 ], [ -123.655660001999962, 48.779810477000083 ], [ -123.655679627999916, 48.779417695000028 ], [ -123.657379363999937, 48.779455014000099 ], [ -123.657423004999913, 48.778580935000022 ], [ -123.660140127999952, 48.778640536000097 ], [ -123.66031058, 48.775222396000039 ], [ -123.661947266, 48.775258264000101 ], [ -123.662024595999981, 48.773706233000105 ], [ -123.665965258999961, 48.773792490000076 ], [ -123.666314318000019, 48.773918694000066 ], [ -123.667230294999939, 48.775227509000011 ], [ -123.66784980599999, 48.775754488000075 ], [ -123.668370988999925, 48.776056407000105 ], [ -123.670929410999975, 48.777086086000054 ], [ -123.671461801999939, 48.777217106000059 ], [ -123.674212413999953, 48.777237106000022 ], [ -123.674701302999949, 48.777152992000062 ], [ -123.675397157999967, 48.776777059000018 ], [ -123.675370989999934, 48.777305224000031 ], [ -123.675886287999973, 48.777316446000064 ], [ -123.675863685999914, 48.777772758000104 ], [ -123.676886279999948, 48.777795021000038 ], [ -123.676867107999925, 48.778182250000064 ], [ -123.677650675999971, 48.778199302000054 ], [ -123.677650178999954, 48.778209349000086 ], [ -123.678200117999978, 48.778221314000113 ], [ -123.678319431999938, 48.775810041000057 ], [ -123.683750012999923, 48.775928036000089 ], [ -123.683606333999975, 48.778838462000138 ], [ -123.684204031999968, 48.778834915000097 ], [ -123.684152689999962, 48.775056880000115 ], [ -123.684560982, 48.775054455000046 ], [ -123.684546304999984, 48.773975016000072 ], [ -123.68491098199992, 48.773972848000021 ], [ -123.68510449399993, 48.775372697000122 ], [ -123.685123, 48.776953783000117 ], [ -123.68510839599999, 48.778488097000015 ], [ -123.685099408999989, 48.779138581000019 ], [ -123.685091883999974, 48.779704344000073 ], [ -123.684958875999982, 48.779866369000075 ], [ -123.684943397999945, 48.780411924000049 ], [ -123.684940384999948, 48.78051660600012 ], [ -123.683818842999983, 48.780540337000055 ], [ -123.68381403799998, 48.780186637000071 ], [ -123.683405704000023, 48.780189058000055 ], [ -123.683403403999947, 48.780019773000049 ], [ -123.683396687999917, 48.779525003000053 ], [ -123.679400347999945, 48.779438192000093 ], [ -123.679375379999911, 48.779943006000067 ], [ -123.680952040999941, 48.779933700000122 ], [ -123.68095569099998, 48.780203560000075 ], [ -123.681684380999954, 48.780199253000042 ], [ -123.681772361999947, 48.780198732 ], [ -123.681777572999977, 48.780583498000112 ], [ -123.681102514999935, 48.780597764000092 ], [ -123.679411744999982, 48.780633475000116 ], [ -123.679279738999981, 48.780640371000082 ], [ -123.679143503999967, 48.780647507 ], [ -123.677470910999929, 48.780647569000031 ], [ -123.676865398999965, 48.780647603000062 ], [ -123.674895908999972, 48.780647012000053 ], [ -123.674765410999925, 48.780646893000075 ], [ -123.674162885000015, 48.780646561000026 ], [ -123.673917294999967, 48.780646433000136 ], [ -123.672372845999945, 48.780653314000162 ], [ -123.672019102000021, 48.780687961000076 ], [ -123.67166990799997, 48.780657808000122 ], [ -123.671510840999986, 48.78065884300009 ], [ -123.671401014999958, 48.780734857000013 ], [ -123.671402633999946, 48.780839404000041 ], [ -123.671264156999968, 48.780731968000062 ], [ -123.671169656999936, 48.780658617 ], [ -123.666339061999977, 48.780654933000029 ], [ -123.665628045999966, 48.780657588000047 ], [ -123.664930585999969, 48.780660202000085 ], [ -123.663806419999929, 48.780662597000088 ], [ -123.663491012999899, 48.780663276000112 ], [ -123.662769576999949, 48.780664816000112 ], [ -123.662678100999983, 48.780664987000129 ], [ -123.662524576999942, 48.780665323000058 ], [ -123.662374859999886, 48.780665659000107 ], [ -123.661046808999942, 48.78066857500005 ], [ -123.661033215, 48.780668569000035 ], [ -123.657733499999921, 48.780650863000055 ], [ -123.657496017999975, 48.780649579000091 ], [ -123.65700679299999, 48.78064785600008 ], [ -123.655976847999952, 48.780642980000039 ], [ -123.655300400999963, 48.780639773000061 ] ], [ [ -123.66910934899991, 48.779927290000025 ], [ -123.669107706999981, 48.779803710000039 ], [ -123.668849187999939, 48.779798064000069 ], [ -123.668863824999903, 48.779503467000069 ], [ -123.668561970999932, 48.779496875000078 ], [ -123.668541198999947, 48.779914881000074 ], [ -123.66910934899991, 48.779927290000025 ] ], [ [ -123.668375101000024, 48.779363622000062 ], [ -123.668384196999909, 48.779180578000094 ], [ -123.668303397999949, 48.779178813000037 ], [ -123.668294300999946, 48.779361857 ], [ -123.668375101000024, 48.779363622000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.837526547949681", "sL_AssetLoss": "24484", "sL_BldgLoss": "20506", "sL_StrLoss": "13370", "sL_NStrLoss": "7136", "sL_ContLoss": "3978", "geom_point": "0101000020E610000022E60E7289E95EC0B6F61D479C634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.646697914999947, 48.780405117000051 ], [ -123.646744426999973, 48.779477792000129 ], [ -123.64587235599997, 48.779458562000045 ], [ -123.645979758999914, 48.777317919000097 ], [ -123.64605301, 48.775857847000083 ], [ -123.647229905999936, 48.775883798000052 ], [ -123.651483513999949, 48.775977484000066 ], [ -123.651397646999953, 48.77769298200009 ], [ -123.652269686999944, 48.777712167000061 ], [ -123.652152606999962, 48.780051917000016 ], [ -123.652130596999953, 48.780491726000051 ], [ -123.646697914999947, 48.780405117000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6520167", "BldgCostT": "4496667", "sL_LossRatio": "0.797924583132548", "sL_AssetLoss": "54369.8", "sL_BldgLoss": "43383", "sL_StrLoss": "24159", "sL_NStrLoss": "19224", "sL_ContLoss": "10986.8", "geom_point": "0101000020E6100000A9185BC6D5E95EC0D726C2440B614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.650063702999944, 48.761183409000111 ], [ -123.650505397999908, 48.760649286000039 ], [ -123.651307214999974, 48.76064499400011 ], [ -123.651446256999947, 48.760430108000023 ], [ -123.65186749599999, 48.75977909100002 ], [ -123.651844218999926, 48.759068397000092 ], [ -123.651740229999959, 48.758771177000064 ], [ -123.651731106999932, 48.758745103000066 ], [ -123.651093589999959, 48.757839307000147 ], [ -123.64991478099995, 48.757135798000036 ], [ -123.649412334999951, 48.756969798000092 ], [ -123.649989158000011, 48.755588627000137 ], [ -123.649986638999906, 48.755524880000031 ], [ -123.649888722999904, 48.755366745000096 ], [ -123.650234970999961, 48.755329878000104 ], [ -123.651981892999956, 48.755400536000089 ], [ -123.652248986999936, 48.75537471500008 ], [ -123.653674158999962, 48.755236877000129 ], [ -123.654772669999957, 48.755188928000045 ], [ -123.654697438999918, 48.755413521000051 ], [ -123.657288932999947, 48.755404538000043 ], [ -123.657893004999934, 48.755402413000091 ], [ -123.657934778999973, 48.755402280000091 ], [ -123.65783559499998, 48.757390212000146 ], [ -123.657355854999935, 48.757379678000078 ], [ -123.657227616999975, 48.757376863000076 ], [ -123.65721577699999, 48.757614098000069 ], [ -123.657163093999912, 48.75866967200006 ], [ -123.656536401999986, 48.75883489400006 ], [ -123.655979276999972, 48.758981596000048 ], [ -123.655698514999941, 48.759265816000095 ], [ -123.655496708999976, 48.759470106000066 ], [ -123.655499586999895, 48.75967659300003 ], [ -123.655885079999933, 48.759954296000039 ], [ -123.656022591999971, 48.760204892000075 ], [ -123.656006006, 48.760996800000058 ], [ -123.6557108169999, 48.761331506000076 ], [ -123.655411321999949, 48.761341499000018 ], [ -123.65475610099999, 48.761112197000074 ], [ -123.653953511999973, 48.761170605000096 ], [ -123.653289901999955, 48.76143549600009 ], [ -123.652061094999937, 48.762099093000067 ], [ -123.651505602000015, 48.762254403000114 ], [ -123.650783695999976, 48.762258710000026 ], [ -123.650386517999934, 48.762080601000058 ], [ -123.650084, 48.761831391000086 ], [ -123.650063702999944, 48.761183409000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.762843068261787", "sL_AssetLoss": "11368", "sL_BldgLoss": "8672", "sL_StrLoss": "3262", "sL_NStrLoss": "5410", "sL_ContLoss": "2696", "geom_point": "0101000020E6100000257ED64606EB5EC0E507F00ED75F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.67137155099999, 48.749322320000061 ], [ -123.671573467999949, 48.745404829000016 ], [ -123.672403512, 48.745422947000051 ], [ -123.67234929599999, 48.746516620000065 ], [ -123.673463140999971, 48.746540923000033 ], [ -123.673284701999989, 48.750141855000045 ], [ -123.672654769999951, 48.750128112000056 ], [ -123.672561977, 48.751999966000021 ], [ -123.672438533999951, 48.751997273000036 ], [ -123.672302027999962, 48.751994294000063 ], [ -123.671385004999934, 48.751974279000109 ], [ -123.671382829999956, 48.752018096000015 ], [ -123.671316963999942, 48.752016658000095 ], [ -123.671310348999924, 48.750509542000025 ], [ -123.671318786999947, 48.750345655000089 ], [ -123.67137155099999, 48.749322320000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20110000", "BldgCostT": "13450000", "sL_LossRatio": "0.722575613313616", "sL_AssetLoss": "197452", "sL_BldgLoss": "142674", "sL_StrLoss": "65130", "sL_NStrLoss": "77544", "sL_ContLoss": "54778", "geom_point": "0101000020E61000007E5F4CC881EB5EC080C1244B9C604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.683382364999929, 48.758991243000011 ], [ -123.68302849399997, 48.758979941000135 ], [ -123.682542742999956, 48.758980694000044 ], [ -123.67571312599992, 48.758831776000065 ], [ -123.675724263999911, 48.758606836000062 ], [ -123.675798370999942, 48.757110141000062 ], [ -123.675046853999973, 48.757093765000086 ], [ -123.676644792999966, 48.756234566000117 ], [ -123.676693099999909, 48.75620859100006 ], [ -123.676757042999924, 48.756160387000108 ], [ -123.677475201999954, 48.755618992000073 ], [ -123.677121404000019, 48.755656004000045 ], [ -123.676350595999935, 48.755986700000108 ], [ -123.676268293999954, 48.756022009000027 ], [ -123.676216047999958, 48.756051874000015 ], [ -123.674417308999978, 48.757080044000126 ], [ -123.67309180399999, 48.757051141000055 ], [ -123.673103458999933, 48.756816000000128 ], [ -123.670247414999949, 48.756753666000115 ], [ -123.670317867999955, 48.755334051000048 ], [ -123.670412694, 48.755334304000073 ], [ -123.671421240000015, 48.755402427000092 ], [ -123.671325397999965, 48.753172414000076 ], [ -123.672554508999923, 48.753199238000043 ], [ -123.672694754999952, 48.753202298000119 ], [ -123.674517389999934, 48.753242048000047 ], [ -123.674541570999949, 48.752753878000057 ], [ -123.677703378999951, 48.75282275900009 ], [ -123.67772171799993, 48.752452002999988 ], [ -123.676037789999938, 48.752415331000059 ], [ -123.676092382999954, 48.751312441000088 ], [ -123.675968052999949, 48.75130973200006 ], [ -123.675968869999977, 48.751293236000045 ], [ -123.675403533999898, 48.751280917000038 ], [ -123.675430249999962, 48.750741341000051 ], [ -123.675231759, 48.750737014000038 ], [ -123.675410050999972, 48.747136083000058 ], [ -123.675931199999923, 48.747147440000077 ], [ -123.675933131999912, 48.74710839500009 ], [ -123.67610989399995, 48.747112246 ], [ -123.676115205999977, 48.747004919000041 ], [ -123.675431991000011, 48.746990030000028 ], [ -123.675559633999981, 48.744411670000041 ], [ -123.676647877, 48.744416997000059 ], [ -123.677666097999989, 48.744781710000112 ], [ -123.677807399999935, 48.744863113000044 ], [ -123.677869689999923, 48.744977198000086 ], [ -123.677887867999971, 48.74740267700011 ], [ -123.677901907, 48.749270297000152 ], [ -123.677914892999951, 48.751621818000082 ], [ -123.677915014999925, 48.751640699000077 ], [ -123.67796566599992, 48.753615544000048 ], [ -123.681579915999976, 48.752991100000102 ], [ -123.682383254999976, 48.753003611000118 ], [ -123.683126765999944, 48.753032642000051 ], [ -123.683097384999954, 48.753628003000102 ], [ -123.681409969999905, 48.753591339000081 ], [ -123.679935515999944, 48.753559281000037 ], [ -123.679897479999937, 48.754328925000031 ], [ -123.679828324999946, 48.755728161000015 ], [ -123.681299299999978, 48.755760143000018 ], [ -123.68128790599998, 48.755990815000146 ], [ -123.681633812999934, 48.755998333 ], [ -123.681699181999988, 48.754674660000063 ], [ -123.68229474499995, 48.754687602000089 ], [ -123.682333998999937, 48.75389247300005 ], [ -123.687762054999922, 48.754010268000066 ], [ -123.687701151999988, 48.755246783000096 ], [ -123.688345909999981, 48.755260756000034 ], [ -123.688234465999969, 48.757523820000138 ], [ -123.688697530999946, 48.757533853000027 ], [ -123.688686522999944, 48.75775742900003 ], [ -123.68963225, 48.757751772000105 ], [ -123.689635945999953, 48.758021633000034 ], [ -123.690044099999938, 48.758019189000024 ], [ -123.690047796999934, 48.758289050000059 ], [ -123.691212739999941, 48.758282069000082 ], [ -123.691680423999969, 48.75827926200003 ], [ -123.69168413, 48.758549122000041 ], [ -123.693724921999888, 48.758536855000123 ], [ -123.693731707999959, 48.759029557000112 ], [ -123.685504603999931, 48.759027155000062 ], [ -123.684685352999935, 48.75902687100006 ], [ -123.684492654999957, 48.759026801000061 ], [ -123.683382364999929, 48.758991243000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.814287876494627", "sL_AssetLoss": "19821", "sL_BldgLoss": "16140", "sL_StrLoss": "8980", "sL_NStrLoss": "7160", "sL_ContLoss": "3681", "geom_point": "0101000020E6100000ED9AEB8F8BE95EC0E87837DC68614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.649954721999947, 48.764132512000046 ], [ -123.650019237999956, 48.762843989000039 ], [ -123.64905706799999, 48.762822793000097 ], [ -123.649147036000016, 48.76102654400011 ], [ -123.646492983999948, 48.760968030000107 ], [ -123.646504688999954, 48.760734578000047 ], [ -123.646513489999947, 48.760559054000062 ], [ -123.64555957499995, 48.760538007000051 ], [ -123.645571028999953, 48.760309661000122 ], [ -123.645527787, 48.760308707 ], [ -123.645577887999963, 48.759309875000078 ], [ -123.649725463999957, 48.759082697000082 ], [ -123.65039918699992, 48.759114339000114 ], [ -123.65031521599991, 48.758093621000036 ], [ -123.650624804999964, 48.758390499000015 ], [ -123.650935564999941, 48.759160645000094 ], [ -123.65107419499995, 48.759504194000044 ], [ -123.651121610999951, 48.759863104000047 ], [ -123.650895009999942, 48.760270501000086 ], [ -123.650834685999911, 48.760286561000107 ], [ -123.650135510999945, 48.760472710000059 ], [ -123.64985109099996, 48.760644991000134 ], [ -123.649625597999915, 48.761122106000101 ], [ -123.649578602, 48.761698888000076 ], [ -123.649760509999965, 48.76198519200009 ], [ -123.65024138199999, 48.762334094000067 ], [ -123.651418609999936, 48.762848293000076 ], [ -123.652061714999945, 48.763249893000129 ], [ -123.652531882999966, 48.763697094000086 ], [ -123.652782104999986, 48.764181305000115 ], [ -123.652776428999957, 48.764194624000034 ], [ -123.649954721999947, 48.764132512000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.82878775543434", "sL_AssetLoss": "12283", "sL_BldgLoss": "10180", "sL_StrLoss": "6430", "sL_NStrLoss": "3750", "sL_ContLoss": "2103", "geom_point": "0101000020E61000008782DFA7E6E95EC06978CCA38F614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.652226208999963, 48.762260093000094 ], [ -123.653550515999925, 48.761523800000056 ], [ -123.654186189999905, 48.761277413000123 ], [ -123.654731401999967, 48.761310096000102 ], [ -123.65541439399999, 48.761566489000067 ], [ -123.655702200999926, 48.76159209600015 ], [ -123.655905016999895, 48.761509494000023 ], [ -123.656133186, 48.76123890000008 ], [ -123.656341883999929, 48.760689194000079 ], [ -123.65622760699992, 48.760122283000086 ], [ -123.65585242, 48.75955840400011 ], [ -123.655955689999971, 48.759260691000051 ], [ -123.65611768199993, 48.759098301000094 ], [ -123.656443205999977, 48.758978707999987 ], [ -123.656533125999943, 48.758960204000104 ], [ -123.657154979999973, 48.758832239000093 ], [ -123.657146824999984, 48.758995611000032 ], [ -123.657067243999961, 48.760590022000052 ], [ -123.656800472999919, 48.760584164000129 ], [ -123.65669864199999, 48.762623924000074 ], [ -123.656078466999929, 48.762610301000095 ], [ -123.6560692259999, 48.762795340000068 ], [ -123.65551309199999, 48.762783121000055 ], [ -123.655508508999958, 48.762874854000074 ], [ -123.655452733999979, 48.762873628000129 ], [ -123.655383879999945, 48.764251952000095 ], [ -123.65310473199996, 48.764201846000105 ], [ -123.653052114999923, 48.763954908000123 ], [ -123.652771982999923, 48.763443591000083 ], [ -123.652346506999919, 48.76305050800002 ], [ -123.651167399999949, 48.762445192000058 ], [ -123.652226208999963, 48.762260093000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9845333", "BldgCostT": "6293333", "sL_LossRatio": "0.761924260636401", "sL_AssetLoss": "75707", "sL_BldgLoss": "57683", "sL_StrLoss": "28292", "sL_NStrLoss": "29391", "sL_ContLoss": "18024", "geom_point": "0101000020E610000032EEBC4380EC5EC0EFB28085A3604840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.694904664999953, 48.759029846000033 ], [ -123.694910169999957, 48.758917736000051 ], [ -123.694301879999941, 48.758904592000057 ], [ -123.694328011999929, 48.758372587000089 ], [ -123.694166206999967, 48.758369090000016 ], [ -123.694175498999954, 48.758179930000026 ], [ -123.692997375999965, 48.758154460000057 ], [ -123.6930247, 48.757598457 ], [ -123.693065867999934, 48.756760776000142 ], [ -123.693121611999956, 48.755626434000135 ], [ -123.69313828199995, 48.755287187000064 ], [ -123.693174333999963, 48.754553542000053 ], [ -123.696578095999982, 48.754627093000096 ], [ -123.696614274999959, 48.75388972800009 ], [ -123.69610971500002, 48.75387883300003 ], [ -123.696110482999984, 48.753934467000121 ], [ -123.69488611899996, 48.753941857000093 ], [ -123.694884884999937, 48.75385237200009 ], [ -123.693065266999952, 48.753813036000111 ], [ -123.691618679999948, 48.75378174300004 ], [ -123.691621146999935, 48.753961498000145 ], [ -123.692029268999988, 48.753959048000077 ], [ -123.692044094999972, 48.755038490000118 ], [ -123.691635965, 48.755040939 ], [ -123.691639669999986, 48.755310799000064 ], [ -123.690415270999949, 48.755318142000121 ], [ -123.690411573999981, 48.755048282000047 ], [ -123.690003442999966, 48.755050726000043 ], [ -123.689984963999976, 48.753701423000102 ], [ -123.69145598599998, 48.753692606000058 ], [ -123.691482535999967, 48.753152683000081 ], [ -123.691149586, 48.753154680000122 ], [ -123.691121872999972, 48.751564964000075 ], [ -123.693540814999949, 48.751527403000132 ], [ -123.696998459, 48.751477582000064 ], [ -123.69697830299999, 48.751888454000031 ], [ -123.698123252999949, 48.75191316800003 ], [ -123.698121174999983, 48.751763243 ], [ -123.698753716999988, 48.751759409000044 ], [ -123.698731510999934, 48.758125692000107 ], [ -123.698733073999946, 48.758243292000046 ], [ -123.698425678, 48.759022245000068 ], [ -123.697974446999964, 48.759030518000053 ], [ -123.694904664999953, 48.759029846000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.762790697674419", "sL_AssetLoss": "6450", "sL_BldgLoss": "4920", "sL_StrLoss": "2550", "sL_NStrLoss": "2370", "sL_ContLoss": "1530", "geom_point": "0101000020E610000081297FCE8FE85EC00A19025F55624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.632370140999967, 48.766065708000063 ], [ -123.632429487999971, 48.766066680000101 ], [ -123.633258110999989, 48.76669220600008 ], [ -123.634431492999951, 48.767945496000017 ], [ -123.634705403999988, 48.769230199000098 ], [ -123.634913712999932, 48.769553488000028 ], [ -123.635214846999929, 48.769764102000039 ], [ -123.63517817499995, 48.770491855000039 ], [ -123.634607514999985, 48.770032007000118 ], [ -123.632730706999908, 48.767874310000089 ], [ -123.632628582999956, 48.767459897000045 ], [ -123.632644202999941, 48.766534093000097 ], [ -123.632370140999967, 48.766065708000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.905849582172702", "sL_AssetLoss": "1795", "sL_BldgLoss": "1626", "sL_StrLoss": "1140", "sL_NStrLoss": "486", "sL_ContLoss": "169", "geom_point": "0101000020E6100000C90AFAE2FDE65EC04402A150AA614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.60863481, 48.761216982000072 ], [ -123.610091365999907, 48.76124962100009 ], [ -123.609800460999949, 48.76484794900005 ], [ -123.608451343999945, 48.764817719000071 ], [ -123.60863481, 48.761216982000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8845000", "BldgCostT": "6100000", "sL_LossRatio": "0.837281675612357", "sL_AssetLoss": "57197", "sL_BldgLoss": "47890", "sL_StrLoss": "29780", "sL_NStrLoss": "18110", "sL_ContLoss": "9307", "geom_point": "0101000020E61000004DAACF3841EB5EC08804BE68B0624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.678650665999953, 48.772869341000131 ], [ -123.678697151999955, 48.771929609000082 ], [ -123.677761007999948, 48.771909241000039 ], [ -123.677741116999982, 48.772311179000049 ], [ -123.673268531999938, 48.772213759000117 ], [ -123.673248856000015, 48.772610587000067 ], [ -123.66781868599999, 48.772492058000111 ], [ -123.667997628999942, 48.76889126600004 ], [ -123.669085966999958, 48.768915044000053 ], [ -123.669114816999951, 48.768334191000115 ], [ -123.669788050999927, 48.76834889500001 ], [ -123.669790091, 48.768307809000063 ], [ -123.671147661999939, 48.768337446000032 ], [ -123.671139306999976, 48.769715116000086 ], [ -123.671229493999959, 48.769868404000086 ], [ -123.67512472099996, 48.769831693000128 ], [ -123.67538300199999, 48.769828294000028 ], [ -123.678209779999975, 48.76981563800004 ], [ -123.679399609999905, 48.769810310000075 ], [ -123.682073066999962, 48.769769145000069 ], [ -123.684519804000018, 48.769731392000054 ], [ -123.684690163999946, 48.769713808000077 ], [ -123.684656171999947, 48.771879813000062 ], [ -123.684136120999966, 48.771868530000098 ], [ -123.68412032399999, 48.772188629000013 ], [ -123.683161395999917, 48.772659698 ], [ -123.682750840999972, 48.772958448000168 ], [ -123.678650665999953, 48.772869341000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.870300751879699", "sL_AssetLoss": "2660", "sL_BldgLoss": "2315", "sL_StrLoss": "1470", "sL_NStrLoss": "845", "sL_ContLoss": "345", "geom_point": "0101000020E61000003186E6F8F0E75EC0910EEE5293624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.62115635399999, 48.769942825000065 ], [ -123.626597059999966, 48.769847251000051 ], [ -123.62656878199999, 48.770406342000072 ], [ -123.621138986999981, 48.770285437000076 ], [ -123.62115635399999, 48.769942825000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21950001", "BldgCostT": "13400001", "sL_LossRatio": "0.78774328643767", "sL_AssetLoss": "100144.3", "sL_BldgLoss": "78888", "sL_StrLoss": "48750", "sL_NStrLoss": "30138", "sL_ContLoss": "21256.3", "geom_point": "0101000020E6100000DEB22A5F23E95EC0EADECCE0D6624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.640548281999884, 48.777161437000132 ], [ -123.64051365099999, 48.774825780000121 ], [ -123.640625716999949, 48.774828257000109 ], [ -123.640685657999953, 48.773636144000108 ], [ -123.640495945999959, 48.773631949000162 ], [ -123.64046118399996, 48.771288098000078 ], [ -123.640679397, 48.769761479000103 ], [ -123.638848267999919, 48.769983403 ], [ -123.638484595999927, 48.770096711000114 ], [ -123.638271846999928, 48.771026183000053 ], [ -123.638431953999913, 48.772856423000071 ], [ -123.638435311999956, 48.77324912400011 ], [ -123.637510717999987, 48.773228659000097 ], [ -123.637513804, 48.773167356000066 ], [ -123.636989402999959, 48.773155746000015 ], [ -123.63705627599991, 48.77182773400007 ], [ -123.636645668999947, 48.771818641000024 ], [ -123.636676483999921, 48.771206781000018 ], [ -123.636725048999949, 48.770242457000094 ], [ -123.637578403999939, 48.770285507000089 ], [ -123.63859639199994, 48.770054808000047 ], [ -123.639475218999948, 48.769663100000059 ], [ -123.639990302999976, 48.769435311000066 ], [ -123.640175303999939, 48.769100598000136 ], [ -123.640106189999926, 48.769002300000061 ], [ -123.639620097999952, 48.769292799000056 ], [ -123.639429209999889, 48.769294192000075 ], [ -123.639333573999949, 48.769204495000125 ], [ -123.639249497999955, 48.767901399000081 ], [ -123.639433512999972, 48.767387204000123 ], [ -123.639848395999977, 48.766854585 ], [ -123.640240099999971, 48.766608188000063 ], [ -123.640971292999907, 48.766334704 ], [ -123.641875847, 48.766176018000081 ], [ -123.642837798999949, 48.766182911000101 ], [ -123.642988803999984, 48.766183988000158 ], [ -123.643658814999966, 48.766339982000105 ], [ -123.643801512999943, 48.766373204000047 ], [ -123.644048602999987, 48.76653408700011 ], [ -123.644080504, 48.76680328500008 ], [ -123.643478009, 48.767697698000056 ], [ -123.643496097999915, 48.768021008000105 ], [ -123.643735207999953, 48.768694693000057 ], [ -123.644215902999946, 48.768908310000086 ], [ -123.644527893999964, 48.768959603000027 ], [ -123.64533118199995, 48.768892597000089 ], [ -123.646149512999912, 48.769086306000119 ], [ -123.646134310999955, 48.770012108000053 ], [ -123.646153627999979, 48.770068558000034 ], [ -123.646130993999989, 48.770519797000055 ], [ -123.646285478999943, 48.770523204000078 ], [ -123.64625831099994, 48.771064886000062 ], [ -123.646905975999942, 48.771079169000096 ], [ -123.647034321999911, 48.77115850000007 ], [ -123.647204392999981, 48.771205289000179 ], [ -123.647029833999909, 48.774686626000147 ], [ -123.646190617999963, 48.774668120000051 ], [ -123.646070270999957, 48.774665465000098 ], [ -123.646018449999957, 48.775698449000046 ], [ -123.642482182999942, 48.775620393000089 ], [ -123.642465034999987, 48.775961692000038 ], [ -123.64495905699998, 48.776016755000093 ], [ -123.644895430999895, 48.777284401000053 ], [ -123.64477831899994, 48.779617466000076 ], [ -123.644692419999956, 48.7796155710001 ], [ -123.644654422999935, 48.780372467000078 ], [ -123.643763464999935, 48.780358220000089 ], [ -123.643557139999984, 48.777243017000075 ], [ -123.643245752000013, 48.777234587000038 ], [ -123.640548281999884, 48.777161437000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.89919624916276", "sL_AssetLoss": "2986", "sL_BldgLoss": "2685", "sL_StrLoss": "1960", "sL_NStrLoss": "725", "sL_ContLoss": "301", "geom_point": "0101000020E6100000DD29FC9DD6E85EC0A68DB83A5F624840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63883292300001, 48.766419442000064 ], [ -123.63993496899991, 48.766443822000021 ], [ -123.639304008999943, 48.7669827980001 ], [ -123.63889231099995, 48.767758989000093 ], [ -123.638831603999932, 48.768325787000059 ], [ -123.638917, 48.769566296000093 ], [ -123.638821810999957, 48.769675901000056 ], [ -123.638197106999925, 48.769831192000019 ], [ -123.6367696, 48.769893805000102 ], [ -123.63674301499999, 48.769885693000099 ], [ -123.636827000999986, 48.768217898000017 ], [ -123.637841185999918, 48.76824035300011 ], [ -123.637862482999964, 48.767817222000097 ], [ -123.638229575999944, 48.767825348000081 ], [ -123.638255896, 48.767302330000049 ], [ -123.638709768, 48.76731237500006 ], [ -123.638743213999945, 48.766647639000041 ], [ -123.638821356, 48.766649368000074 ], [ -123.63883292300001, 48.766419442000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.934834299301531", "sL_AssetLoss": "2691.6", "sL_BldgLoss": "2516.2", "sL_StrLoss": "2093", "sL_NStrLoss": "423.2", "sL_ContLoss": "175.4", "geom_point": "0101000020E61000009935CA5D78E65EC06EB3E34CB4614840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.598943500999965, 48.763163658000039 ], [ -123.600421703999956, 48.763139509000062 ], [ -123.602397438999958, 48.763225782000092 ], [ -123.602125964999956, 48.760709760000054 ], [ -123.602796104999967, 48.760724820000078 ], [ -123.602612192999942, 48.764325549000041 ], [ -123.598657723, 48.76423662200007 ], [ -123.598636385999953, 48.764169895000123 ], [ -123.598943500999965, 48.763163658000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.939743990009366", "sL_AssetLoss": "320.3", "sL_BldgLoss": "301", "sL_StrLoss": "112", "sL_NStrLoss": "189", "sL_ContLoss": "19.3", "geom_point": "0101000020E6100000E0DED2BDD0E85EC08E39320353634840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.63708952599994, 48.774750023000117 ], [ -123.638448403999973, 48.774780100000086 ], [ -123.638468462999953, 48.777125469000076 ], [ -123.637013073999967, 48.77714968500009 ], [ -123.636968641999914, 48.777150404000103 ], [ -123.63708952599994, 48.774750023000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "291762463", "BldgCostT": "171595279", "sL_LossRatio": "0.653737761257322", "sL_AssetLoss": "2756717", "sL_BldgLoss": "1802170", "sL_StrLoss": "731270", "sL_NStrLoss": "1070900", "sL_ContLoss": "954547", "geom_point": "0101000020E6100000EB443F434DE45EC001C5234C2C594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.546681262000035, 48.700258263000137 ], [ -123.54669248499998, 48.700043268000051 ], [ -123.546278993999962, 48.700033746000081 ], [ -123.546230795999946, 48.699999314000081 ], [ -123.546173774999886, 48.69975719600005 ], [ -123.546140613999924, 48.699739135000115 ], [ -123.546103539999976, 48.699718959000101 ], [ -123.54551328299999, 48.699397606000026 ], [ -123.545344447, 48.699305681000112 ], [ -123.546307556999963, 48.697586450000074 ], [ -123.546555063999946, 48.696999681000079 ], [ -123.546693784999931, 48.693953991000036 ], [ -123.547283231999984, 48.693930022000075 ], [ -123.547300764999974, 48.693846301000072 ], [ -123.547313390999975, 48.693785875000124 ], [ -123.547317702, 48.693765394000081 ], [ -123.547318769999947, 48.693724902000092 ], [ -123.547331360999934, 48.693247441000047 ], [ -123.547348280999969, 48.69260609600007 ], [ -123.547347345999967, 48.692527769 ], [ -123.547339271999974, 48.691862123000121 ], [ -123.547330520999978, 48.691142479000092 ], [ -123.547329599999955, 48.691066102000057 ], [ -123.547330586999948, 48.690969701000022 ], [ -123.547339417999979, 48.690404944000051 ], [ -123.547340269999893, 48.690350977000065 ], [ -123.547343491999982, 48.69014487400009 ], [ -123.547667011999934, 48.690278169000052 ], [ -123.547670195999956, 48.690571754000061 ], [ -123.54959369, 48.690616021 ], [ -123.54956727199999, 48.691122849000088 ], [ -123.54980061299996, 48.691128217000077 ], [ -123.549726278999941, 48.692554386000054 ], [ -123.554226339, 48.69265780500006 ], [ -123.554088119999975, 48.695314361000115 ], [ -123.554203598999919, 48.695317013000114 ], [ -123.554087929999966, 48.697540026000077 ], [ -123.554196531999963, 48.697542519000059 ], [ -123.554093498999976, 48.699522572000063 ], [ -123.554183826000028, 48.699524645000054 ], [ -123.554184508000034, 48.699511558000047 ], [ -123.555088660999957, 48.699532311000034 ], [ -123.555098680999947, 48.699339681000026 ], [ -123.557060390999936, 48.699384682000044 ], [ -123.55723598299997, 48.696006023000088 ], [ -123.559837641999962, 48.696065649000062 ], [ -123.559965106999982, 48.693610082000077 ], [ -123.560611905999906, 48.693624896000081 ], [ -123.560615684999945, 48.693552099000058 ], [ -123.562342892999979, 48.693591638000036 ], [ -123.56234511699995, 48.693548741000022 ], [ -123.563370100000014, 48.693572191000072 ], [ -123.563400705, 48.692981733000131 ], [ -123.564988892999935, 48.693474106000039 ], [ -123.565589682999985, 48.693768094000056 ], [ -123.566282387999962, 48.694173296000031 ], [ -123.566883885999928, 48.694978399000078 ], [ -123.567596998999974, 48.694780209000037 ], [ -123.575329202, 48.694760885000015 ], [ -123.577314390999945, 48.694731191000081 ], [ -123.577315140999985, 48.692897246000015 ], [ -123.577315196999962, 48.692793411000089 ], [ -123.57730941899996, 48.692327297000119 ], [ -123.577160208999956, 48.691931814000085 ], [ -123.577159201999919, 48.690949299000046 ], [ -123.57885492299999, 48.690953602 ], [ -123.578868472999957, 48.690953655000051 ], [ -123.57930143599998, 48.690955662000064 ], [ -123.579491650999941, 48.690956521000025 ], [ -123.579790333999981, 48.690957900000043 ], [ -123.580075447999945, 48.69095920300007 ], [ -123.580129803999952, 48.690959449000047 ], [ -123.580441913999934, 48.690960896000078 ], [ -123.580612190999915, 48.690974110000106 ], [ -123.58088510499999, 48.690995293000078 ], [ -123.581210588999951, 48.691077500000056 ], [ -123.58148480600002, 48.691205390000114 ], [ -123.583167793999934, 48.692433294000118 ], [ -123.583592511999925, 48.692749396000046 ], [ -123.583801504999911, 48.69285328799999 ], [ -123.584077016999927, 48.692904593000115 ], [ -123.584343508999964, 48.692867398000089 ], [ -123.584559488999915, 48.692809198000063 ], [ -123.585808988999958, 48.692071389000091 ], [ -123.58630988, 48.692409929000043 ], [ -123.586774029999916, 48.692679813000048 ], [ -123.587073867, 48.692695221000108 ], [ -123.587108598999961, 48.692720540000018 ], [ -123.5894587559999, 48.694432158000076 ], [ -123.591192755999941, 48.69569488700003 ], [ -123.590640293999968, 48.69606998500003 ], [ -123.590599125999958, 48.69634388500004 ], [ -123.590691589999921, 48.69655057600005 ], [ -123.590720837000035, 48.696696371000066 ], [ -123.590688515999958, 48.696850658000081 ], [ -123.59057882, 48.697004150000083 ], [ -123.591079649999955, 48.697186739000173 ], [ -123.590760531999933, 48.697244412000124 ], [ -123.58990106, 48.697334937000058 ], [ -123.589468090999972, 48.697363901000109 ], [ -123.589051306999977, 48.697368006 ], [ -123.588616713, 48.697373209000055 ], [ -123.588191914999953, 48.697378299000057 ], [ -123.587711522999939, 48.697432301000035 ], [ -123.587266500999959, 48.697510512000122 ], [ -123.586510781, 48.697772794000102 ], [ -123.586185789999945, 48.697944805000127 ], [ -123.585844406999911, 48.698172282000101 ], [ -123.585528009999962, 48.698467106000059 ], [ -123.58511728799999, 48.699048749000077 ], [ -123.584496297999976, 48.699928207000028 ], [ -123.584392409, 48.700021556000046 ], [ -123.584016792999961, 48.700358987000129 ], [ -123.583503809999954, 48.700680824000131 ], [ -123.583423746999955, 48.700731072000075 ], [ -123.581489734999934, 48.699579288000038 ], [ -123.580643561, 48.699331892000039 ], [ -123.58034873599992, 48.699024017000056 ], [ -123.579126705999983, 48.698291015000088 ], [ -123.579005887999955, 48.698265893000091 ], [ -123.578280495999962, 48.697900801000102 ], [ -123.570283194999959, 48.698065134000061 ], [ -123.571308103999968, 48.698452101000072 ], [ -123.57160797899999, 48.698610403000032 ], [ -123.571888809999933, 48.69882342600004 ], [ -123.572835401999967, 48.699541513000092 ], [ -123.57289117899991, 48.699597587000078 ], [ -123.573009606999975, 48.699716698000017 ], [ -123.573172781999972, 48.69997100700003 ], [ -123.573181561999917, 48.700000363000129 ], [ -123.573208349999931, 48.700090374000098 ], [ -123.573386796999955, 48.700689715000053 ], [ -123.57267153, 48.700847416000038 ], [ -123.572560518999978, 48.700871898000081 ], [ -123.572283987999938, 48.700889897000103 ], [ -123.571750163999951, 48.700893569000108 ], [ -123.570010837999959, 48.70090552500006 ], [ -123.569861379999963, 48.700906544000141 ], [ -123.569698270999979, 48.700907660000084 ], [ -123.567401603999912, 48.70092340000015 ], [ -123.567279269999958, 48.70092422700003 ], [ -123.567075441999989, 48.7009256320001 ], [ -123.566355167, 48.700930552000052 ], [ -123.564690184999989, 48.700941897000078 ], [ -123.563950050999935, 48.700951208000099 ], [ -123.563799492999976, 48.70095308100008 ], [ -123.560884407999964, 48.701062209000106 ], [ -123.560158190999957, 48.701066302000086 ], [ -123.557231390999959, 48.701086600000103 ], [ -123.553975813999912, 48.701114522000118 ], [ -123.553636066999914, 48.701117422000067 ], [ -123.55344581899999, 48.701119050000045 ], [ -123.553309918999958, 48.701120216000049 ], [ -123.552834320999978, 48.701124288000102 ], [ -123.552616949999972, 48.701126156000051 ], [ -123.550796188999954, 48.701141693000039 ], [ -123.548124615999924, 48.701079818000011 ], [ -123.547843995, 48.700855294000107 ], [ -123.546681262000035, 48.700258263000137 ] ], [ [ -123.565663389999926, 48.699878785000095 ], [ -123.56576989699991, 48.697822269000056 ], [ -123.565519366999922, 48.697816544000041 ], [ -123.565412848999969, 48.699873060000101 ], [ -123.565663389999926, 48.699878785000095 ] ], [ [ -123.548673488999967, 48.69937091300006 ], [ -123.548703474999954, 48.698795930000088 ], [ -123.54859487, 48.69879343100007 ], [ -123.548606316999965, 48.698573957000058 ], [ -123.547896157999958, 48.698557614000073 ], [ -123.547965606999924, 48.697226344000086 ], [ -123.547463356, 48.697214783000071 ], [ -123.547352437999976, 48.699340508000041 ], [ -123.548673488999967, 48.69937091300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21014250", "BldgCostT": "12075000", "sL_LossRatio": "0.710659749124682", "sL_AssetLoss": "101963", "sL_BldgLoss": "72461", "sL_StrLoss": "34961", "sL_NStrLoss": "37500", "sL_ContLoss": "29502", "geom_point": "0101000020E61000005E8B79CAA8E35EC01C97715383584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.559293222999912, 48.69279963000006 ], [ -123.55929591, 48.692747868000083 ], [ -123.558044981999942, 48.692719197000059 ], [ -123.55806345699996, 48.692363555000043 ], [ -123.554595978999942, 48.692284007000104 ], [ -123.554629988999977, 48.691630213000032 ], [ -123.553361174999978, 48.691601077000058 ], [ -123.553389153999959, 48.691063481000086 ], [ -123.552748484999981, 48.691048763000055 ], [ -123.552788360999912, 48.690282766000109 ], [ -123.555648573, 48.690241490000034 ], [ -123.557322515999957, 48.690142001 ], [ -123.557490414999961, 48.690252308000062 ], [ -123.558750788999959, 48.690904896000156 ], [ -123.558850860999954, 48.690952519000049 ], [ -123.561219612999935, 48.692079750000033 ], [ -123.5621841599999, 48.692538714000086 ], [ -123.562581293999969, 48.692727683000044 ], [ -123.563094020999955, 48.692886650000048 ], [ -123.559293222999912, 48.69279963000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.951088375006525", "sL_AssetLoss": "1915.7", "sL_BldgLoss": "1822", "sL_StrLoss": "1510", "sL_NStrLoss": "312", "sL_ContLoss": "93.7", "geom_point": "0101000020E6100000724CBB3D6DE25EC080DA0308FA584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.537938316999941, 48.695407113000087 ], [ -123.537935440999917, 48.695137242000058 ], [ -123.537527782999987, 48.695139145000077 ], [ -123.537524910999949, 48.69486927300008 ], [ -123.537117253999938, 48.69487117400012 ], [ -123.53711566599992, 48.694721852000029 ], [ -123.537154288999943, 48.694738715000021 ], [ -123.537848901999922, 48.694948492000044 ], [ -123.538147293999913, 48.695079803000077 ], [ -123.538627194999904, 48.69539921100008 ], [ -123.538638005999928, 48.69540384400009 ], [ -123.537938316999941, 48.695407113000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257536744", "BldgCostT": "175129076", "sL_LossRatio": "0.920332357561754", "sL_AssetLoss": "504011.4", "sL_BldgLoss": "463858", "sL_StrLoss": "371747", "sL_NStrLoss": "92111", "sL_ContLoss": "40153.4", "geom_point": "0101000020E6100000214E40760BE35EC0E71A8FE7ED574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.540912487999975, 48.689900776000073 ], [ -123.540879138999955, 48.688968918000036 ], [ -123.540838598999954, 48.687836767000093 ], [ -123.541118614999931, 48.687835452000087 ], [ -123.541104157999939, 48.686486097000106 ], [ -123.541511744999966, 48.686484181000026 ], [ -123.541508852000021, 48.686214310000096 ], [ -123.542324023999981, 48.686210476000021 ], [ -123.542321123999926, 48.685940604000066 ], [ -123.542728706999981, 48.685938685000082 ], [ -123.542725808999975, 48.685668814000095 ], [ -123.543948549999953, 48.685663048000059 ], [ -123.543945644999923, 48.685393177000073 ], [ -123.545168381999986, 48.68538739600006 ], [ -123.54517420699996, 48.685927139000071 ], [ -123.545581789999972, 48.685925209000068 ], [ -123.545584705999957, 48.686195080000054 ], [ -123.546399874999963, 48.686191217000022 ], [ -123.546391116999985, 48.685381604000028 ], [ -123.54703314299995, 48.685378558000131 ], [ -123.547045385999951, 48.685143904000086 ], [ -123.543714807999976, 48.685067142000086 ], [ -123.54374646299999, 48.684461198000079 ], [ -123.542806711999987, 48.684439520000097 ], [ -123.542834135999968, 48.683914769000111 ], [ -123.540696399999888, 48.683865425000107 ], [ -123.540661843999899, 48.682900284000112 ], [ -123.54066994499999, 48.682745422000039 ], [ -123.54965950899999, 48.682485827000043 ], [ -123.550893065999944, 48.682409198000116 ], [ -123.550958406999911, 48.682792310000103 ], [ -123.551150316999951, 48.683432203000109 ], [ -123.551497812, 48.684119032000055 ], [ -123.549193254999963, 48.684066025000057 ], [ -123.549191877999931, 48.684092434000092 ], [ -123.551511347999977, 48.684145785000069 ], [ -123.551800913999941, 48.684718105000037 ], [ -123.553155698999944, 48.686577985000056 ], [ -123.55346373899999, 48.686945975000128 ], [ -123.553922004999947, 48.687493385000025 ], [ -123.554849985999923, 48.688300702000085 ], [ -123.555205414999946, 48.688582574000037 ], [ -123.555596601999966, 48.688892815000067 ], [ -123.557322515999957, 48.690142001 ], [ -123.555648573, 48.690241490000034 ], [ -123.552788360999912, 48.690282766000109 ], [ -123.552806252000011, 48.689939043000024 ], [ -123.550516906999974, 48.689950003000057 ], [ -123.550520890999948, 48.690315433000087 ], [ -123.549298164999968, 48.690333029000016 ], [ -123.549296996999942, 48.690225710000071 ], [ -123.547666526999947, 48.690233473000056 ], [ -123.547667011999934, 48.690278169000052 ], [ -123.547343491999982, 48.69014487400009 ], [ -123.547340269999893, 48.690350977000065 ], [ -123.547339417999979, 48.690404944000051 ], [ -123.547330586999948, 48.690969701000022 ], [ -123.546404004999943, 48.690943009000058 ], [ -123.54579163399994, 48.690892223000041 ], [ -123.545740699999982, 48.690888010000094 ], [ -123.545508573999896, 48.690848894000048 ], [ -123.545027893999958, 48.690767898000047 ], [ -123.544242490999935, 48.690555997000125 ], [ -123.543253310999944, 48.690221393000073 ], [ -123.542726165999952, 48.690066654000105 ], [ -123.542323315999937, 48.689948404000098 ], [ -123.542193414999971, 48.689918460000079 ], [ -123.541559201, 48.68977220400005 ], [ -123.541546076999964, 48.689806722000085 ], [ -123.54152928399999, 48.689850797000055 ], [ -123.541479656999954, 48.68991586300011 ], [ -123.541360390999927, 48.690072185000098 ], [ -123.54109627699998, 48.690322998000113 ], [ -123.540821983999976, 48.69050871400006 ], [ -123.540074908999941, 48.690991691000072 ], [ -123.539655411999959, 48.690711586000042 ], [ -123.539628007999966, 48.690704916000065 ], [ -123.539518507999958, 48.69067822900012 ], [ -123.53951705099999, 48.690541810000134 ], [ -123.53992467099999, 48.6905399 ], [ -123.539918899999961, 48.690000158000025 ], [ -123.54073413199994, 48.689996336000043 ], [ -123.540733099, 48.689899929000021 ], [ -123.540912487999975, 48.689900776000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19475700", "BldgCostT": "12802213", "sL_LossRatio": "0.843673872753542", "sL_AssetLoss": "99873.9", "sL_BldgLoss": "84261", "sL_StrLoss": "55088", "sL_NStrLoss": "29173", "sL_ContLoss": "15612.9", "geom_point": "0101000020E6100000A395731051E25EC0AB4A74F983584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.53629907700001, 48.694605102000075 ], [ -123.536296209999975, 48.694335231000139 ], [ -123.535888558999943, 48.694337128000043 ], [ -123.535885694999962, 48.694067257 ], [ -123.535138765999946, 48.694070729000039 ], [ -123.534913677999924, 48.693907997000053 ], [ -123.534963219999966, 48.693438292000053 ], [ -123.534986712999952, 48.69321580200009 ], [ -123.535270897999965, 48.692962298000069 ], [ -123.535254889999948, 48.692772891000082 ], [ -123.53517155599998, 48.692721154000033 ], [ -123.535463734999979, 48.692719796000119 ], [ -123.535455450999976, 48.691938530000094 ], [ -123.535455149999962, 48.691910183000061 ], [ -123.535437553999927, 48.691910265000089 ], [ -123.534721574999978, 48.691913590000084 ], [ -123.534638141999935, 48.691749186000045 ], [ -123.534621103999939, 48.690139884000125 ], [ -123.534759997999984, 48.690024220000048 ], [ -123.53502750299999, 48.690022979000112 ], [ -123.535026751999965, 48.689952118000136 ], [ -123.535774684000017, 48.689876475000105 ], [ -123.536656535999938, 48.689880661000132 ], [ -123.53665796899999, 48.690015394000078 ], [ -123.537065586, 48.690013495000066 ], [ -123.537068455999957, 48.690283366000095 ], [ -123.538291312999903, 48.690277659000124 ], [ -123.53829418799999, 48.69054753000006 ], [ -123.539109429999911, 48.690543718000072 ], [ -123.53911095899997, 48.690687016000048 ], [ -123.539017585999957, 48.69071490400006 ], [ -123.53845790299999, 48.691038991000092 ], [ -123.537857985999935, 48.691224411000043 ], [ -123.537576801999975, 48.69133507300009 ], [ -123.537390410999961, 48.691474941000109 ], [ -123.53730220199995, 48.691605382000013 ], [ -123.537278175999958, 48.691712490000064 ], [ -123.537166472999971, 48.691888628000058 ], [ -123.537042320999987, 48.692083294000035 ], [ -123.536943372999957, 48.692160466000068 ], [ -123.53686099599993, 48.692213597000062 ], [ -123.536682843999984, 48.692310745000086 ], [ -123.536558710999927, 48.692417369000033 ], [ -123.536558000999946, 48.692453257000075 ], [ -123.536486514, 48.692641090000023 ], [ -123.536455846999914, 48.692820337000043 ], [ -123.536344535999945, 48.692962945000055 ], [ -123.536220077999957, 48.693087502000019 ], [ -123.536026755999899, 48.693265317000055 ], [ -123.535968430999958, 48.693471224000056 ], [ -123.53596708799995, 48.693538799000095 ], [ -123.535965768999986, 48.693605810000093 ], [ -123.53605065899994, 48.693816931000072 ], [ -123.536098617999983, 48.693912096000105 ], [ -123.5361509089999, 48.694078196000099 ], [ -123.536286185999927, 48.694229623000048 ], [ -123.536325184999967, 48.694273304000063 ], [ -123.536528512999951, 48.694419695000065 ], [ -123.536690021999945, 48.694536008000078 ], [ -123.536842472999965, 48.69460257100009 ], [ -123.53629907700001, 48.694605102000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59923833", "BldgCostT": "40698333", "sL_LossRatio": "0.780171396592296", "sL_AssetLoss": "370777.5", "sL_BldgLoss": "289270", "sL_StrLoss": "169386", "sL_NStrLoss": "119884", "sL_ContLoss": "81507.5", "geom_point": "0101000020E610000011B3EAB5D1E25EC0623D39330F594840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.542462454, 48.69804240900006 ], [ -123.542240185999958, 48.69793990000008 ], [ -123.541929018999909, 48.698068104000065 ], [ -123.541809590999904, 48.698041215000046 ], [ -123.54130239899996, 48.697927098000065 ], [ -123.54093112299995, 48.69772412800004 ], [ -123.540968364999955, 48.697012231000066 ], [ -123.540609695999976, 48.697013914000131 ], [ -123.540543198999941, 48.696787798000067 ], [ -123.540397881, 48.696666885000077 ], [ -123.540395829999952, 48.69647514900003 ], [ -123.539988160999911, 48.696477060000078 ], [ -123.53998527499999, 48.696207190000059 ], [ -123.539577607999959, 48.696209100000075 ], [ -123.539574723999962, 48.695939228000029 ], [ -123.539167059999983, 48.695941138000101 ], [ -123.539164176999975, 48.695671266000055 ], [ -123.538756515999978, 48.695673173000081 ], [ -123.538754172999944, 48.695453625000034 ], [ -123.539111595999913, 48.695606793000046 ], [ -123.540563891999952, 48.696090094000084 ], [ -123.540891908000035, 48.696175193000101 ], [ -123.541231387999972, 48.696195702000054 ], [ -123.541135421999925, 48.695567002000097 ], [ -123.54105460199996, 48.695425505000088 ], [ -123.540877391999913, 48.695284408000141 ], [ -123.540545604, 48.695168597000084 ], [ -123.540168974999958, 48.69508049100002 ], [ -123.539980691999943, 48.6949960150001 ], [ -123.539923121999976, 48.69485219900011 ], [ -123.539980391999933, 48.694612895000027 ], [ -123.541766312, 48.694840706000022 ], [ -123.542060485999983, 48.694845704000038 ], [ -123.54228030099992, 48.694794012000081 ], [ -123.54248190699991, 48.694701293000065 ], [ -123.542644783999961, 48.694518494000086 ], [ -123.542694803999936, 48.694339309000107 ], [ -123.54267282699999, 48.694230028000092 ], [ -123.542657113999951, 48.694151909000077 ], [ -123.542506492999962, 48.693841993000092 ], [ -123.54273321, 48.693787698000108 ], [ -123.542942794999973, 48.693696105000079 ], [ -123.54316851399993, 48.69350569800006 ], [ -123.543355609999963, 48.693209228000065 ], [ -123.543434796999946, 48.693083716000025 ], [ -123.543667000999932, 48.692924097000038 ], [ -123.543939502999962, 48.692851095000073 ], [ -123.545274111999959, 48.692833207000028 ], [ -123.545627475999964, 48.692796288000096 ], [ -123.545909709999989, 48.692717088000066 ], [ -123.546523798999928, 48.692467182000065 ], [ -123.546720395999927, 48.69241758400004 ], [ -123.5468632799999, 48.692461488000049 ], [ -123.54691278, 48.69255280000008 ], [ -123.547089591999935, 48.692597399000157 ], [ -123.547348280999969, 48.69260609600007 ], [ -123.547331360999934, 48.693247441000047 ], [ -123.547318769999947, 48.693724902000092 ], [ -123.547317702, 48.693765394000081 ], [ -123.547313390999975, 48.693785875000124 ], [ -123.547300764999974, 48.693846301000072 ], [ -123.547283231999984, 48.693930022000075 ], [ -123.546693784999931, 48.693953991000036 ], [ -123.546555063999946, 48.696999681000079 ], [ -123.546307556999963, 48.697586450000074 ], [ -123.545344447, 48.699305681000112 ], [ -123.545180463999955, 48.699216399000058 ], [ -123.544601687999986, 48.698901291000112 ], [ -123.543633087999979, 48.698582306000041 ], [ -123.542462454, 48.69804240900006 ] ], [ [ -123.542390304999969, 48.696236464 ], [ -123.542406539999945, 48.69592593200008 ], [ -123.542020707999939, 48.695927747000049 ], [ -123.542023930999946, 48.696228010000091 ], [ -123.542390304999969, 48.696236464 ] ], [ [ -123.54242465099999, 48.695579521000077 ], [ -123.542458584999935, 48.694930450000122 ], [ -123.542334067999946, 48.69492757800009 ], [ -123.54233829699993, 48.694846715000047 ], [ -123.542009118999928, 48.694848265000111 ], [ -123.542012017999951, 48.695118135000079 ], [ -123.542419674999962, 48.695116217000134 ], [ -123.54242465099999, 48.695579521000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92281553", "BldgCostT": "60883746", "sL_LossRatio": "0.864980236495885", "sL_AssetLoss": "264199.1", "sL_BldgLoss": "228527", "sL_StrLoss": "165625", "sL_NStrLoss": "62902", "sL_ContLoss": "35672.1", "geom_point": "0101000020E61000005F5F0C618CE35EC00FEA3267C3574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.563400705, 48.692981733000131 ], [ -123.563405263999982, 48.692893770000069 ], [ -123.563094020999955, 48.692886650000048 ], [ -123.562581293999969, 48.692727683000044 ], [ -123.5621841599999, 48.692538714000086 ], [ -123.561219612999935, 48.692079750000033 ], [ -123.558850860999954, 48.690952519000049 ], [ -123.558750788999959, 48.690904896000156 ], [ -123.557490414999961, 48.690252308000062 ], [ -123.557322515999957, 48.690142001 ], [ -123.555596601999966, 48.688892815000067 ], [ -123.555205414999946, 48.688582574000037 ], [ -123.554849985999923, 48.688300702000085 ], [ -123.553922004999947, 48.687493385000025 ], [ -123.55346373899999, 48.686945975000128 ], [ -123.553155698999944, 48.686577985000056 ], [ -123.551800913999941, 48.684718105000037 ], [ -123.551511347999977, 48.684145785000069 ], [ -123.552522396999933, 48.684169025000074 ], [ -123.552473542999977, 48.685107537000071 ], [ -123.553768807999987, 48.685137296000114 ], [ -123.55372983700002, 48.685886334000088 ], [ -123.553733439999945, 48.685886316000044 ], [ -123.553736398999931, 48.686156186000055 ], [ -123.554143982999932, 48.68615422700006 ], [ -123.55414694399991, 48.686424099000092 ], [ -123.554369024999943, 48.686423029000082 ], [ -123.554480843999954, 48.684273220000122 ], [ -123.558688014999959, 48.684369745 ], [ -123.55870113499995, 48.684117065000102 ], [ -123.557180664999962, 48.684082200000027 ], [ -123.557185439999927, 48.683990298000047 ], [ -123.553902771, 48.683914951000062 ], [ -123.553889295999937, 48.684173988000104 ], [ -123.551497812, 48.684119032000055 ], [ -123.551150316999951, 48.683432203000109 ], [ -123.550958406999911, 48.682792310000103 ], [ -123.550893065999944, 48.682409198000116 ], [ -123.54965950899999, 48.682485827000043 ], [ -123.54066994499999, 48.682745422000039 ], [ -123.540675464999936, 48.682639863000112 ], [ -123.539943890999936, 48.682622965000078 ], [ -123.539863439, 48.684160633000026 ], [ -123.534443826999947, 48.684035300000069 ], [ -123.53444471899995, 48.684018278000096 ], [ -123.534399136, 48.684017223000069 ], [ -123.53431610799997, 48.683808906000102 ], [ -123.53395781899998, 48.683270598000064 ], [ -123.533465996999908, 48.682948701000022 ], [ -123.533017591999979, 48.682914515000107 ], [ -123.53253921799994, 48.682737898000042 ], [ -123.532182594999952, 48.682495792000019 ], [ -123.532003606999965, 48.682245101000085 ], [ -123.532078446999918, 48.681728995000142 ], [ -123.532146682999937, 48.681258316000076 ], [ -123.532252777999986, 48.680526466000046 ], [ -123.532434338999963, 48.679274074000034 ], [ -123.532697285999987, 48.679230572000094 ], [ -123.53620102099994, 48.679298991000074 ], [ -123.536664822999938, 48.679300706000085 ], [ -123.539145958999967, 48.679308744000068 ], [ -123.541021128999958, 48.679314803000103 ], [ -123.541632715, 48.679316739000051 ], [ -123.542026809, 48.679318027000079 ], [ -123.542583888999957, 48.679319807000105 ], [ -123.542665380999921, 48.679320054000051 ], [ -123.544132758, 48.679324734000119 ], [ -123.544662522999971, 48.679326435000121 ], [ -123.546550770999914, 48.679332411000111 ], [ -123.547257291999969, 48.679334648000051 ], [ -123.548656531999981, 48.679339058000039 ], [ -123.55058588199995, 48.67934510500006 ], [ -123.555244702999957, 48.679302030000031 ], [ -123.555190782999958, 48.680339111000087 ], [ -123.557720763999967, 48.680397164000091 ], [ -123.557778862999911, 48.679278513000021 ], [ -123.560264393999944, 48.679255389000048 ], [ -123.560744405999955, 48.679284393000046 ], [ -123.560924820999972, 48.679336299000084 ], [ -123.560999705999961, 48.679462394000105 ], [ -123.561035682999915, 48.679629998000031 ], [ -123.561040080999959, 48.679750465000062 ], [ -123.561153378999933, 48.682854099000103 ], [ -123.562542821999926, 48.682873300000075 ], [ -123.56248029299995, 48.683109791000078 ], [ -123.56175980099998, 48.684108306000063 ], [ -123.561535780999918, 48.684504201000081 ], [ -123.561257327999897, 48.684851198000068 ], [ -123.561061002999949, 48.685236995000018 ], [ -123.561039859999937, 48.685323108000048 ], [ -123.56102490799999, 48.685384002000085 ], [ -123.561066199999956, 48.686548601000077 ], [ -123.561108483999973, 48.687824914000018 ], [ -123.561102522999988, 48.690163808000058 ], [ -123.561193095999982, 48.690163142000117 ], [ -123.562062570999927, 48.690156885000079 ], [ -123.568078514999968, 48.690113306000036 ], [ -123.569556500999951, 48.690077597000034 ], [ -123.571978308999974, 48.690021989000108 ], [ -123.572119712999935, 48.690831880000118 ], [ -123.572683518999952, 48.690811424000067 ], [ -123.573430792999943, 48.690784274000087 ], [ -123.573903002999913, 48.690767108000067 ], [ -123.574272037999933, 48.690761001000034 ], [ -123.574660689999945, 48.690754601000044 ], [ -123.575363403999944, 48.69080838900009 ], [ -123.576031990999951, 48.690918296000113 ], [ -123.576331807999964, 48.690945809000098 ], [ -123.577159201999919, 48.690949299000046 ], [ -123.577160208999956, 48.691931814000085 ], [ -123.57730941899996, 48.692327297000119 ], [ -123.577315196999962, 48.692793411000089 ], [ -123.577315140999985, 48.692897246000015 ], [ -123.577314390999945, 48.694731191000081 ], [ -123.575329202, 48.694760885000015 ], [ -123.567596998999974, 48.694780209000037 ], [ -123.566883885999928, 48.694978399000078 ], [ -123.566282387999962, 48.694173296000031 ], [ -123.565589682999985, 48.693768094000056 ], [ -123.564988892999935, 48.693474106000039 ], [ -123.563400705, 48.692981733000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188658514", "BldgCostT": "124916362", "sL_LossRatio": "0.936173261575003", "sL_AssetLoss": "183259.56", "sL_BldgLoss": "171562.7", "sL_StrLoss": "145669.9", "sL_NStrLoss": "25892.8", "sL_ContLoss": "11696.86", "geom_point": "0101000020E61000005FA5A24E4C2C5FC0AB511FB3F9B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.701724399999989, 49.450474904000053 ], [ -124.700503901999966, 49.449906002000077 ], [ -124.700072735999953, 49.449707243000091 ], [ -124.69842444899993, 49.449152341000065 ], [ -124.698318706999942, 49.448796280000074 ], [ -124.697681555999978, 49.449396073000095 ], [ -124.697540922, 49.449494263000105 ], [ -124.697373680999959, 49.449559746000098 ], [ -124.697297367999951, 49.44956561000005 ], [ -124.697235002999932, 49.449570399000073 ], [ -124.697221741999925, 49.449571429000088 ], [ -124.697033992999962, 49.44953227200007 ], [ -124.696523868999918, 49.449300788000095 ], [ -124.69641474, 49.449251273000066 ], [ -124.69588883599999, 49.449082053000026 ], [ -124.69554902000003, 49.449157144000068 ], [ -124.695360367999953, 49.449175185000051 ], [ -124.695135720999971, 49.449196660000084 ], [ -124.695030739999979, 49.449206709000052 ], [ -124.694189068999947, 49.449237082000138 ], [ -124.692060552999976, 49.449197021000025 ], [ -124.692109105999975, 49.448942898000048 ], [ -124.692246797999957, 49.44870609900007 ], [ -124.692471577, 49.448442767000067 ], [ -124.692691621999941, 49.448185001000098 ], [ -124.693377288999926, 49.447086407000057 ], [ -124.691705166999967, 49.446819437000045 ], [ -124.690585106999947, 49.446640609000099 ], [ -124.690410933999956, 49.446973677000145 ], [ -124.690111390999974, 49.447546496000044 ], [ -124.690064687999964, 49.447584451000118 ], [ -124.689848231999946, 49.447760404000057 ], [ -124.689702296999911, 49.447878999000125 ], [ -124.689430266, 49.448020447000061 ], [ -124.689289617999933, 49.448093594000106 ], [ -124.688842319999964, 49.44821510100013 ], [ -124.68852078599997, 49.448229201000089 ], [ -124.688515482999961, 49.448656608000135 ], [ -124.686076194999913, 49.447817097000033 ], [ -124.685881358999978, 49.447447890000042 ], [ -124.68567467299998, 49.447056294000085 ], [ -124.684773289999924, 49.445506612000038 ], [ -124.684410655999926, 49.44529869600008 ], [ -124.684404393999955, 49.445295095000091 ], [ -124.683604289999934, 49.444981202000037 ], [ -124.682853106999957, 49.444694891000047 ], [ -124.682768193999905, 49.444662214000061 ], [ -124.68257052, 49.444586124000061 ], [ -124.68234863, 49.444500706000056 ], [ -124.68206510100002, 49.444341609000062 ], [ -124.68140500500003, 49.443807990000067 ], [ -124.6804283, 49.443019502000013 ], [ -124.679853709999961, 49.442536096000033 ], [ -124.679113386999973, 49.441913231000093 ], [ -124.677288498999985, 49.440377810000086 ], [ -124.677353477999986, 49.438926096000031 ], [ -124.677390705999983, 49.438831186000122 ], [ -124.677467616999962, 49.438778312000075 ], [ -124.677496102999953, 49.43875869500004 ], [ -124.677626835999945, 49.438767505000023 ], [ -124.677194501999978, 49.437703307000064 ], [ -124.677259191999937, 49.437405901000012 ], [ -124.677281715999968, 49.436726393000058 ], [ -124.677309960999963, 49.435872189000051 ], [ -124.679101813000017, 49.436242328000112 ], [ -124.679405655, 49.436318397000036 ], [ -124.679717522999937, 49.436396497000025 ], [ -124.684545459999953, 49.438403511000061 ], [ -124.688429004999989, 49.44004972900008 ], [ -124.689103199, 49.440335370000028 ], [ -124.688629395999925, 49.440329639000034 ], [ -124.688653619, 49.44103486700007 ], [ -124.688420586999911, 49.441038271000075 ], [ -124.688239973999956, 49.441040908000055 ], [ -124.688250626999945, 49.441351108000084 ], [ -124.688417907999948, 49.441353132000103 ], [ -124.689400531999937, 49.441365017000081 ], [ -124.689384479999916, 49.441931144000066 ], [ -124.690373129999955, 49.441943093000077 ], [ -124.69035368899992, 49.442629220000065 ], [ -124.690363839999975, 49.442629071000091 ], [ -124.690374161999983, 49.442929215000113 ], [ -124.692422613999966, 49.442953942000024 ], [ -124.692411851999964, 49.443334331000123 ], [ -124.693141109999928, 49.443343124000044 ], [ -124.693134631999939, 49.443572196000048 ], [ -124.693741400999926, 49.443579510000063 ], [ -124.693734523000018, 49.443822838000067 ], [ -124.694477788999961, 49.443831791000065 ], [ -124.694438444999932, 49.445224629000052 ], [ -124.694781748999915, 49.445228763000031 ], [ -124.694796572999962, 49.444703831000069 ], [ -124.696663101999945, 49.444726287000094 ], [ -124.696667708999911, 49.4445629780001 ], [ -124.69816426599999, 49.444580960000081 ], [ -124.69816815399993, 49.444442914000092 ], [ -124.698818521999925, 49.444450722000084 ], [ -124.700137191999914, 49.445009182000049 ], [ -124.702058931999929, 49.445822986000117 ], [ -124.703031174999978, 49.446234672000045 ], [ -124.703623832999952, 49.446485624000033 ], [ -124.703578339999922, 49.448107340000064 ], [ -124.702081665999941, 49.448089433000071 ], [ -124.702077789, 49.44822747700006 ], [ -124.700931950999973, 49.448213754000037 ], [ -124.700927514999975, 49.448371592000058 ], [ -124.702222668999937, 49.448387103000144 ], [ -124.702205817999953, 49.448987132000134 ], [ -124.702503694999947, 49.448990697000056 ], [ -124.702500213999954, 49.449114669000096 ], [ -124.704271436999989, 49.449135851000037 ], [ -124.704239393999956, 49.450278624000106 ], [ -124.709349934999949, 49.450339579000072 ], [ -124.709370407999984, 49.449606508000052 ], [ -124.709962814999969, 49.449613558000053 ], [ -124.70997507099996, 49.449174538000101 ], [ -124.710420197999923, 49.44936296500007 ], [ -124.71241436399994, 49.44996798600009 ], [ -124.71215960799999, 49.450207025000047 ], [ -124.711873186999952, 49.450344921000088 ], [ -124.711527307999958, 49.450637779000033 ], [ -124.711435086999956, 49.451127102000079 ], [ -124.711468383999957, 49.452921657000111 ], [ -124.711469233999935, 49.452966885000087 ], [ -124.711441837999956, 49.452998182000094 ], [ -124.711271329999974, 49.453193100000092 ], [ -124.71092210299993, 49.453210589000108 ], [ -124.710266781999906, 49.453721095000034 ], [ -124.710624299999949, 49.454100601000043 ], [ -124.710806576999957, 49.454386203000077 ], [ -124.71089119199992, 49.454713014000099 ], [ -124.710899901999966, 49.455737213000077 ], [ -124.710849572999976, 49.455740305000084 ], [ -124.71073756499996, 49.455755451000073 ], [ -124.710639292999957, 49.455778033000065 ], [ -124.710459692999947, 49.455771705000046 ], [ -124.710362210999946, 49.45574614300007 ], [ -124.710223981999945, 49.455739211000122 ], [ -124.710140308999939, 49.455713450000083 ], [ -124.709987628999954, 49.455688725000073 ], [ -124.709890450999978, 49.455672165000088 ], [ -124.709806460999971, 49.455637436000124 ], [ -124.70973625699996, 49.455602487000107 ], [ -124.709665431999937, 49.455549569000063 ], [ -124.709608056999954, 49.455487441000074 ], [ -124.709577961999969, 49.455415929000061 ], [ -124.709534396999956, 49.455353603000077 ], [ -124.709504618999986, 49.455291057000132 ], [ -124.709419059999959, 49.455211367000103 ], [ -124.709333803999982, 49.455140679000074 ], [ -124.709276124000027, 49.455069549000058 ], [ -124.709232560999965, 49.455007223000017 ], [ -124.70917583100001, 49.454963088000035 ], [ -124.709119099999924, 49.454918951000074 ], [ -124.709048275999933, 49.454866033000044 ], [ -124.709019142999949, 49.454821477000067 ], [ -124.70898840699995, 49.454731973000023 ], [ -124.708970554999979, 49.454615301000025 ], [ -124.708954587, 49.454552557000106 ], [ -124.708924209999935, 49.454472064000115 ], [ -124.708866499999942, 49.454400947000096 ], [ -124.708836743999939, 49.454338423000067 ], [ -124.708751809999981, 49.45427670200008 ], [ -124.708653085999956, 49.454215200000128 ], [ -124.708582886999949, 49.454180250000057 ], [ -124.708484750999986, 49.454136732000066 ], [ -124.70838721899996, 49.454056945000033 ], [ -124.708271507999939, 49.453998921000114 ], [ -124.708172759999954, 49.453941245000131 ], [ -124.708075212999972, 49.453861494000115 ], [ -124.707952094999882, 49.453779015000123 ], [ -124.707628186999912, 49.453281994000164 ], [ -124.707426609999956, 49.452900797000062 ], [ -124.707395205999958, 49.452741086000124 ], [ -124.70748751399999, 49.452546893000076 ], [ -124.70718576299997, 49.452463234000057 ], [ -124.706992961999944, 49.452409771000092 ], [ -124.706384144999944, 49.45224092600008 ], [ -124.706155380999988, 49.45217748300005 ], [ -124.704958582999964, 49.45184560000007 ], [ -124.70475851599997, 49.451790088000109 ], [ -124.704656098999948, 49.451761705000102 ], [ -124.704277014999946, 49.451613183000056 ], [ -124.704077882999911, 49.451486693000021 ], [ -124.703813191999956, 49.451243199000039 ], [ -124.70353750699995, 49.451095089000091 ], [ -124.702348782999977, 49.450719106000044 ], [ -124.701724399999989, 49.450474904000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "296228917", "BldgCostT": "189816667", "sL_LossRatio": "0.837689842919896", "sL_AssetLoss": "481773.3", "sL_BldgLoss": "403576.6", "sL_StrLoss": "295029.8", "sL_NStrLoss": "108546.8", "sL_ContLoss": "78196.7", "geom_point": "0101000020E610000066229D68B42C5FC0090013C066B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.727386720999931, 49.467780700000041 ], [ -124.726881512999938, 49.467564206000112 ], [ -124.726163999, 49.467574095000074 ], [ -124.725601302999962, 49.467663907000045 ], [ -124.725130106999941, 49.467589790000098 ], [ -124.724108396999924, 49.466795088 ], [ -124.723720920999966, 49.466773705000016 ], [ -124.723506002999926, 49.466976006000024 ], [ -124.723244805999968, 49.466997286000066 ], [ -124.722889302999974, 49.466713910000045 ], [ -124.722844699999882, 49.465392199000057 ], [ -124.722520004999978, 49.464408089000074 ], [ -124.722014099999981, 49.463389793000033 ], [ -124.721668097999924, 49.462145092000057 ], [ -124.721405290999954, 49.461753399000017 ], [ -124.721307176, 49.461340396000026 ], [ -124.720758293, 49.46062970600012 ], [ -124.720559494999932, 49.46010129700003 ], [ -124.720198203999928, 49.45959430500011 ], [ -124.719559383999965, 49.459081591 ], [ -124.719068388999958, 49.458900698000015 ], [ -124.7184052, 49.458829509000026 ], [ -124.716745106999952, 49.457954985000043 ], [ -124.714389197999964, 49.45726001100013 ], [ -124.714213371999904, 49.457248765000017 ], [ -124.713475886999944, 49.457201597000115 ], [ -124.712199303999938, 49.456978 ], [ -124.711262493, 49.456894501000129 ], [ -124.709084609999948, 49.456700288000086 ], [ -124.708354203999974, 49.455919809000143 ], [ -124.707856998999929, 49.455162197000071 ], [ -124.707040391999939, 49.454679304000095 ], [ -124.706938209999947, 49.454492785000113 ], [ -124.706615798999962, 49.454361694000042 ], [ -124.706105390999966, 49.453982898000042 ], [ -124.705437576999927, 49.45377639400003 ], [ -124.703653370999916, 49.453786118000053 ], [ -124.703659618999922, 49.453563459000087 ], [ -124.70294687399999, 49.453554936000089 ], [ -124.702916817999949, 49.453544295000036 ], [ -124.702082084000025, 49.453359090000049 ], [ -124.701369205999939, 49.453072811000062 ], [ -124.700762889999979, 49.452690827000026 ], [ -124.700071601999952, 49.452255296000089 ], [ -124.698415899999958, 49.45145209200011 ], [ -124.697636108999916, 49.4508595880001 ], [ -124.697187896999949, 49.450668809000078 ], [ -124.696424892999943, 49.450517796000028 ], [ -124.694491113999987, 49.450483595000073 ], [ -124.693715398999956, 49.450422391000089 ], [ -124.693021403, 49.450252902000074 ], [ -124.691958397999912, 49.450241506000069 ], [ -124.691581383999946, 49.450138997000089 ], [ -124.690906684999902, 49.450176006000071 ], [ -124.6905142, 49.4499751910001 ], [ -124.68837899, 49.449681802 ], [ -124.688179399999967, 49.449513696000039 ], [ -124.687103203999968, 49.449107784000056 ], [ -124.685319394999951, 49.448558093000045 ], [ -124.684919199999953, 49.448203502000084 ], [ -124.68398869, 49.446884782000062 ], [ -124.683933311999951, 49.446806296000126 ], [ -124.683739006999943, 49.446340600000099 ], [ -124.682474993999946, 49.445666889000108 ], [ -124.681551805999945, 49.44531938800003 ], [ -124.68067488299999, 49.444712697000121 ], [ -124.679758893999974, 49.443735695000093 ], [ -124.678955386999959, 49.443217298000064 ], [ -124.678456016999974, 49.442720304000076 ], [ -124.677266816999975, 49.44186570600008 ], [ -124.676327891999932, 49.441051101000014 ], [ -124.674718534, 49.439979709000056 ], [ -124.674733574999962, 49.439455117000065 ], [ -124.67489675399996, 49.439457112000092 ], [ -124.674908705999911, 49.439040137000134 ], [ -124.674136920999985, 49.439030699000106 ], [ -124.674155118999948, 49.43839626500008 ], [ -124.673168548999939, 49.438384193000019 ], [ -124.673044641999979, 49.438254092000136 ], [ -124.672387992, 49.437564606000116 ], [ -124.671798688, 49.437256989000069 ], [ -124.670873888999964, 49.43721710800007 ], [ -124.670522207999937, 49.436997787000109 ], [ -124.66969717899994, 49.436721495 ], [ -124.669304091999919, 49.436493611000103 ], [ -124.667959206, 49.436297097000107 ], [ -124.666637995999977, 49.435973797000095 ], [ -124.665797480999942, 49.435607796000056 ], [ -124.66517762299999, 49.435230301000082 ], [ -124.664516380999899, 49.434429903000108 ], [ -124.663934191999928, 49.433485708000056 ], [ -124.662532804999955, 49.4320743070001 ], [ -124.662393993999984, 49.431769884000047 ], [ -124.66232501599994, 49.431618605 ], [ -124.661326389999957, 49.430625913000128 ], [ -124.660142391999969, 49.429878201000058 ], [ -124.65850941099994, 49.4284624860001 ], [ -124.656542708999964, 49.427429893000102 ], [ -124.654362198999976, 49.42572370300006 ], [ -124.653803301999957, 49.425515797000052 ], [ -124.651929625999927, 49.425588404000102 ], [ -124.651651285999947, 49.425559772000064 ], [ -124.651389989999984, 49.425532892000049 ], [ -124.650720091999943, 49.425290789 ], [ -124.650256594999959, 49.425027302000096 ], [ -124.649307783999944, 49.424725398000078 ], [ -124.647741615999934, 49.424451897000012 ], [ -124.646373199999957, 49.423984808000085 ], [ -124.644916692999971, 49.423277015000068 ], [ -124.6442478109999, 49.423061904000051 ], [ -124.642945191999956, 49.422459511000028 ], [ -124.641278293999932, 49.422096310000022 ], [ -124.640723191999953, 49.421619212000031 ], [ -124.640453303999934, 49.420956884000063 ], [ -124.640433006999928, 49.420327409000052 ], [ -124.640334316999883, 49.420266197000053 ], [ -124.64085168299998, 49.420105201000048 ], [ -124.642216518999973, 49.41991696700007 ], [ -124.642273472999989, 49.419993330000082 ], [ -124.642498888999953, 49.420150964000129 ], [ -124.642681790999958, 49.420255759000085 ], [ -124.643379311999979, 49.420522878000099 ], [ -124.645362707999936, 49.42117601900005 ], [ -124.645907525999988, 49.42135539300007 ], [ -124.646376559999936, 49.421509243000116 ], [ -124.646651892999955, 49.421599549000078 ], [ -124.647162806000011, 49.421767109000065 ], [ -124.647839595999955, 49.422034694000089 ], [ -124.64837649399999, 49.422331200000073 ], [ -124.649579994999968, 49.423104907000045 ], [ -124.650132597999971, 49.423381712000051 ], [ -124.65017209799997, 49.423393524000069 ], [ -124.650502467999956, 49.423492412000037 ], [ -124.65171679599996, 49.423855901000053 ], [ -124.652390135999951, 49.424049044000071 ], [ -124.652953302999947, 49.424210595000048 ], [ -124.653382981, 49.424379895000115 ], [ -124.653436814999964, 49.424401108000062 ], [ -124.653537517, 49.424456813000162 ], [ -124.653861096999947, 49.424635808000119 ], [ -124.654858165999954, 49.425348082000028 ], [ -124.655108113999987, 49.425526640000037 ], [ -124.655611553999961, 49.425886260000077 ], [ -124.656037086999916, 49.426190268000035 ], [ -124.656960655999953, 49.426849983000103 ], [ -124.65709184699999, 49.426943692000087 ], [ -124.657136784999977, 49.42697579500004 ], [ -124.65729917099999, 49.427076341000038 ], [ -124.657908013999972, 49.427453321000051 ], [ -124.658344014999955, 49.427723297000092 ], [ -124.658892895999912, 49.428115312000052 ], [ -124.659029136999962, 49.428212628000097 ], [ -124.659074037999957, 49.42824468500001 ], [ -124.659857199999976, 49.428803990000084 ], [ -124.659964963000021, 49.428885746000063 ], [ -124.661763509999943, 49.430250320000013 ], [ -124.662390164999962, 49.430736814000042 ], [ -124.662714470999944, 49.431088841000097 ], [ -124.662810097999937, 49.431192625000037 ], [ -124.66344686799998, 49.431883758000026 ], [ -124.6638702199999, 49.432253454000083 ], [ -124.664488367000018, 49.432652536 ], [ -124.664849684999922, 49.432813686000053 ], [ -124.66514816899992, 49.432946836000035 ], [ -124.665934919999927, 49.433139219000083 ], [ -124.666856693999975, 49.433332322000069 ], [ -124.66755612799993, 49.433473418000062 ], [ -124.667574498999954, 49.433477127000067 ], [ -124.668044396, 49.43357192700006 ], [ -124.668695753999913, 49.433662908000038 ], [ -124.669012007999953, 49.433707103000053 ], [ -124.669618504999946, 49.433760713000019 ], [ -124.669864124999918, 49.43378239300003 ], [ -124.670864597999966, 49.433826991000025 ], [ -124.671481509999936, 49.433902740000072 ], [ -124.671589592999979, 49.433915991000021 ], [ -124.672058027999981, 49.434036519000088 ], [ -124.672419881999971, 49.434129603 ], [ -124.673055886999961, 49.434294806 ], [ -124.67359901699993, 49.434481511000108 ], [ -124.674207476999925, 49.434740016000056 ], [ -124.675414700999966, 49.435409907000121 ], [ -124.675957889999935, 49.435592888000031 ], [ -124.677309960999963, 49.435872189000051 ], [ -124.677281715999968, 49.436726393000058 ], [ -124.677259191999937, 49.437405901000012 ], [ -124.677194501999978, 49.437703307000064 ], [ -124.677626835999945, 49.438767505000023 ], [ -124.677496102999953, 49.43875869500004 ], [ -124.677467616999962, 49.438778312000075 ], [ -124.677390705999983, 49.438831186000122 ], [ -124.677353477999986, 49.438926096000031 ], [ -124.677288498999985, 49.440377810000086 ], [ -124.679113386999973, 49.441913231000093 ], [ -124.679853709999961, 49.442536096000033 ], [ -124.6804283, 49.443019502000013 ], [ -124.68140500500003, 49.443807990000067 ], [ -124.68206510100002, 49.444341609000062 ], [ -124.68234863, 49.444500706000056 ], [ -124.68257052, 49.444586124000061 ], [ -124.682768193999905, 49.444662214000061 ], [ -124.682853106999957, 49.444694891000047 ], [ -124.683604289999934, 49.444981202000037 ], [ -124.684404393999955, 49.445295095000091 ], [ -124.684410655999926, 49.44529869600008 ], [ -124.684773289999924, 49.445506612000038 ], [ -124.68567467299998, 49.447056294000085 ], [ -124.685881358999978, 49.447447890000042 ], [ -124.686076194999913, 49.447817097000033 ], [ -124.688515482999961, 49.448656608000135 ], [ -124.68852078599997, 49.448229201000089 ], [ -124.688842319999964, 49.44821510100013 ], [ -124.689289617999933, 49.448093594000106 ], [ -124.689430266, 49.448020447000061 ], [ -124.689702296999911, 49.447878999000125 ], [ -124.689848231999946, 49.447760404000057 ], [ -124.690064687999964, 49.447584451000118 ], [ -124.690111390999974, 49.447546496000044 ], [ -124.690410933999956, 49.446973677000145 ], [ -124.690585106999947, 49.446640609000099 ], [ -124.691705166999967, 49.446819437000045 ], [ -124.693377288999926, 49.447086407000057 ], [ -124.692691621999941, 49.448185001000098 ], [ -124.692471577, 49.448442767000067 ], [ -124.692246797999957, 49.44870609900007 ], [ -124.692109105999975, 49.448942898000048 ], [ -124.692060552999976, 49.449197021000025 ], [ -124.694189068999947, 49.449237082000138 ], [ -124.695030739999979, 49.449206709000052 ], [ -124.695135720999971, 49.449196660000084 ], [ -124.695360367999953, 49.449175185000051 ], [ -124.69554902000003, 49.449157144000068 ], [ -124.69588883599999, 49.449082053000026 ], [ -124.69641474, 49.449251273000066 ], [ -124.696523868999918, 49.449300788000095 ], [ -124.697033992999962, 49.44953227200007 ], [ -124.697221741999925, 49.449571429000088 ], [ -124.697235002999932, 49.449570399000073 ], [ -124.697297367999951, 49.44956561000005 ], [ -124.697373680999959, 49.449559746000098 ], [ -124.697540922, 49.449494263000105 ], [ -124.697681555999978, 49.449396073000095 ], [ -124.698318706999942, 49.448796280000074 ], [ -124.69842444899993, 49.449152341000065 ], [ -124.700072735999953, 49.449707243000091 ], [ -124.700503901999966, 49.449906002000077 ], [ -124.701724399999989, 49.450474904000053 ], [ -124.702348782999977, 49.450719106000044 ], [ -124.70353750699995, 49.451095089000091 ], [ -124.703813191999956, 49.451243199000039 ], [ -124.704077882999911, 49.451486693000021 ], [ -124.704277014999946, 49.451613183000056 ], [ -124.704656098999948, 49.451761705000102 ], [ -124.70475851599997, 49.451790088000109 ], [ -124.704958582999964, 49.45184560000007 ], [ -124.706155380999988, 49.45217748300005 ], [ -124.706384144999944, 49.45224092600008 ], [ -124.706992961999944, 49.452409771000092 ], [ -124.70718576299997, 49.452463234000057 ], [ -124.70748751399999, 49.452546893000076 ], [ -124.707395205999958, 49.452741086000124 ], [ -124.707426609999956, 49.452900797000062 ], [ -124.707628186999912, 49.453281994000164 ], [ -124.707952094999882, 49.453779015000123 ], [ -124.708075212999972, 49.453861494000115 ], [ -124.708172759999954, 49.453941245000131 ], [ -124.708271507999939, 49.453998921000114 ], [ -124.70838721899996, 49.454056945000033 ], [ -124.708484750999986, 49.454136732000066 ], [ -124.708582886999949, 49.454180250000057 ], [ -124.708653085999956, 49.454215200000128 ], [ -124.708751809999981, 49.45427670200008 ], [ -124.708836743999939, 49.454338423000067 ], [ -124.708866499999942, 49.454400947000096 ], [ -124.708924209999935, 49.454472064000115 ], [ -124.708954587, 49.454552557000106 ], [ -124.708970554999979, 49.454615301000025 ], [ -124.70898840699995, 49.454731973000023 ], [ -124.709019142999949, 49.454821477000067 ], [ -124.709048275999933, 49.454866033000044 ], [ -124.709119099999924, 49.454918951000074 ], [ -124.70917583100001, 49.454963088000035 ], [ -124.709232560999965, 49.455007223000017 ], [ -124.709276124000027, 49.455069549000058 ], [ -124.709333803999982, 49.455140679000074 ], [ -124.709419059999959, 49.455211367000103 ], [ -124.709504618999986, 49.455291057000132 ], [ -124.709534396999956, 49.455353603000077 ], [ -124.709577961999969, 49.455415929000061 ], [ -124.709608056999954, 49.455487441000074 ], [ -124.709665431999937, 49.455549569000063 ], [ -124.70973625699996, 49.455602487000107 ], [ -124.709806460999971, 49.455637436000124 ], [ -124.709890450999978, 49.455672165000088 ], [ -124.709987628999954, 49.455688725000073 ], [ -124.710140308999939, 49.455713450000083 ], [ -124.710223981999945, 49.455739211000122 ], [ -124.710362210999946, 49.45574614300007 ], [ -124.710459692999947, 49.455771705000046 ], [ -124.710639292999957, 49.455778033000065 ], [ -124.71073756499996, 49.455755451000073 ], [ -124.710849572999976, 49.455740305000084 ], [ -124.710899901999966, 49.455737213000077 ], [ -124.71089119199992, 49.454713014000099 ], [ -124.710806576999957, 49.454386203000077 ], [ -124.710624299999949, 49.454100601000043 ], [ -124.710266781999906, 49.453721095000034 ], [ -124.71092210299993, 49.453210589000108 ], [ -124.711271329999974, 49.453193100000092 ], [ -124.711441837999956, 49.452998182000094 ], [ -124.711469233999935, 49.452966885000087 ], [ -124.711468383999957, 49.452921657000111 ], [ -124.711435086999956, 49.451127102000079 ], [ -124.711527307999958, 49.450637779000033 ], [ -124.711873186999952, 49.450344921000088 ], [ -124.71215960799999, 49.450207025000047 ], [ -124.71241436399994, 49.44996798600009 ], [ -124.713623310999964, 49.450264001000029 ], [ -124.714181307999951, 49.450355583000011 ], [ -124.715070919999945, 49.450501602000053 ], [ -124.723348710999929, 49.451297887000116 ], [ -124.723316577, 49.452460936000101 ], [ -124.717804477999934, 49.452395894000048 ], [ -124.717807410999967, 49.452290199000053 ], [ -124.717019154999946, 49.452280875000035 ], [ -124.717021554999945, 49.452194447000082 ], [ -124.716595624999954, 49.452189407000027 ], [ -124.716578526999953, 49.452804996000062 ], [ -124.71664148799999, 49.45280574100007 ], [ -124.716637267999914, 49.452957649000012 ], [ -124.718712317999945, 49.452982189000167 ], [ -124.71869154299999, 49.453731386000094 ], [ -124.71926634299993, 49.453738176000087 ], [ -124.719256908, 49.454078600000059 ], [ -124.723952187999942, 49.454133955000046 ], [ -124.723943877999901, 49.454434889000083 ], [ -124.725171161, 49.454449325000041 ], [ -124.72513907299998, 49.455612363000029 ], [ -124.725221028999925, 49.45561332700003 ], [ -124.725194032999966, 49.456591820000021 ], [ -124.72522038799994, 49.45659212900005 ], [ -124.725212519999957, 49.456877336000083 ], [ -124.725271404999958, 49.456878028000105 ], [ -124.72525544799997, 49.457456366000024 ], [ -124.725379735, 49.457457826000038 ], [ -124.725363315999971, 49.458052942000108 ], [ -124.725438669999932, 49.458053827000114 ], [ -124.725432078999972, 49.458292750000084 ], [ -124.725625477, 49.458295023000069 ], [ -124.725616686999928, 49.458613689000053 ], [ -124.725874486999885, 49.458616718000037 ], [ -124.725815591999918, 49.460752242000105 ], [ -124.726918676999944, 49.460765196000111 ], [ -124.726912739999989, 49.46098062600003 ], [ -124.730195466999945, 49.461019112000045 ], [ -124.730181692999921, 49.461520259000082 ], [ -124.728402308999989, 49.46254808700008 ], [ -124.728012091999915, 49.462824410000117 ], [ -124.72769431299993, 49.463216094000046 ], [ -124.727329081999969, 49.463445393000057 ], [ -124.72725481, 49.46367179000007 ], [ -124.726855718999971, 49.464108997000075 ], [ -124.72574341, 49.465034792000019 ], [ -124.725257008999947, 49.465339598000099 ], [ -124.724684477, 49.465563197000044 ], [ -124.724722285999974, 49.465842300000119 ], [ -124.725118981999955, 49.466501699000041 ], [ -124.725557986999917, 49.466854907000084 ], [ -124.726433807999939, 49.467013009000077 ], [ -124.727178293999899, 49.467010206000033 ], [ -124.727457493999907, 49.467078503000081 ], [ -124.728533125999945, 49.467062804000115 ], [ -124.72887129799993, 49.466867709000098 ], [ -124.72901370299995, 49.46659568500008 ], [ -124.730000094, 49.466347891000048 ], [ -124.73197099399998, 49.466263888000036 ], [ -124.73265719299998, 49.466172690000043 ], [ -124.733554691999984, 49.465791004000046 ], [ -124.733655698999939, 49.465510496000036 ], [ -124.73379029099999, 49.465417908000049 ], [ -124.73421341000001, 49.46533100200012 ], [ -124.735167495999946, 49.465721201000036 ], [ -124.736073017999928, 49.465617297000122 ], [ -124.73615539499994, 49.46594060000006 ], [ -124.735997703999899, 49.466212600000112 ], [ -124.735375487999974, 49.466554403000039 ], [ -124.734939282999974, 49.46667830100008 ], [ -124.732901077999927, 49.466843495000113 ], [ -124.731440207, 49.46727081100007 ], [ -124.730719912999973, 49.467586990000065 ], [ -124.729965710999963, 49.467760708000064 ], [ -124.729041873999918, 49.467783494000045 ], [ -124.72834920199989, 49.467676699000101 ], [ -124.727386720999931, 49.467780700000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.958487202343054", "sL_AssetLoss": "785.3", "sL_BldgLoss": "752.7", "sL_StrLoss": "666", "sL_NStrLoss": "86.7", "sL_ContLoss": "32.6", "geom_point": "0101000020E6100000C240C69268305FC03CE8C88022B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.756152261999972, 49.445696520000077 ], [ -124.756862643999924, 49.445685728000115 ], [ -124.756891142999976, 49.447034630000132 ], [ -124.756058741999979, 49.447047275000024 ], [ -124.755912628, 49.44704949500003 ], [ -124.755864450999965, 49.445700892000055 ], [ -124.756152261999972, 49.445696520000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47377750", "BldgCostT": "30730000", "sL_LossRatio": "0.878836593803516", "sL_AssetLoss": "58341.79", "sL_BldgLoss": "51272.9", "sL_StrLoss": "43081.1", "sL_NStrLoss": "8191.8", "sL_ContLoss": "7068.89", "geom_point": "0101000020E6100000100C5A27B22D5FC01135664C20B74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.70814728199997, 49.434731590000126 ], [ -124.708230861999965, 49.431740589000071 ], [ -124.707248428999947, 49.431728875000097 ], [ -124.707285050999943, 49.430419213000093 ], [ -124.706475879999928, 49.430409559000047 ], [ -124.70657655299999, 49.426811077000082 ], [ -124.708298450999919, 49.426831615000062 ], [ -124.708325238999947, 49.425872719000047 ], [ -124.713834163999977, 49.425938245000054 ], [ -124.713825829999948, 49.426237811000128 ], [ -124.717423546999953, 49.426280453000103 ], [ -124.717367599999989, 49.428297245000103 ], [ -124.717453067999912, 49.428298257000073 ], [ -124.717423098999944, 49.429378601000103 ], [ -124.722479744999958, 49.429438329000035 ], [ -124.72238030499993, 49.433036811000107 ], [ -124.72148289899998, 49.43302622900012 ], [ -124.721432971999917, 49.43483143 ], [ -124.715922977, 49.434766292000063 ], [ -124.715923575999966, 49.434744726000076 ], [ -124.713659466999943, 49.4347178780001 ], [ -124.713657261999984, 49.434797124000063 ], [ -124.70814728199997, 49.434731590000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73024500", "BldgCostT": "51330000", "sL_LossRatio": "0.977193410216566", "sL_AssetLoss": "27478.9", "sL_BldgLoss": "26852.2", "sL_StrLoss": "12078", "sL_NStrLoss": "14774.2", "sL_ContLoss": "626.7", "geom_point": "0101000020E6100000B6547B64F52D5FC09FE85F3791B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.716385477999921, 49.44895516800004 ], [ -124.716395157999926, 49.44860665200013 ], [ -124.71639569099996, 49.448587481000104 ], [ -124.716442977000014, 49.448588041000086 ], [ -124.721907333999937, 49.448652595000091 ], [ -124.721904943999931, 49.448739023000044 ], [ -124.72263071099999, 49.448747576000052 ], [ -124.72262778899993, 49.4488532720001 ], [ -124.723415987999914, 49.448862555000041 ], [ -124.723348710999929, 49.451297887000116 ], [ -124.715070919999945, 49.450501602000053 ], [ -124.714181307999951, 49.450355583000011 ], [ -124.713623310999964, 49.450264001000029 ], [ -124.71241436399994, 49.44996798600009 ], [ -124.710420197999923, 49.44936296500007 ], [ -124.70997507099996, 49.449174538000101 ], [ -124.709979018999917, 49.449033122000053 ], [ -124.710900695999939, 49.44904408400005 ], [ -124.710904989999975, 49.448890144000075 ], [ -124.715525808999928, 49.448944986000065 ], [ -124.716385477999921, 49.44895516800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.959720179460876", "sL_AssetLoss": "2427.27", "sL_BldgLoss": "2329.5", "sL_StrLoss": "1933", "sL_NStrLoss": "396.5", "sL_ContLoss": "97.77", "geom_point": "0101000020E61000007B775C3BEE2C5FC0BB4ED99FFAB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.698818521999925, 49.444450722000084 ], [ -124.703679278, 49.44450895500006 ], [ -124.703623832999952, 49.446485624000033 ], [ -124.703031174999978, 49.446234672000045 ], [ -124.702058931999929, 49.445822986000117 ], [ -124.700137191999914, 49.445009182000049 ], [ -124.698818521999925, 49.444450722000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.955197132616487", "sL_AssetLoss": "1116", "sL_BldgLoss": "1066", "sL_StrLoss": "850", "sL_NStrLoss": "216", "sL_ContLoss": "50", "geom_point": "0101000020E6100000642263BD2A285FC026576FDCFBB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.627210036999927, 49.397658010000072 ], [ -124.628449915999965, 49.397640547999984 ], [ -124.628476678999945, 49.398449771000145 ], [ -124.628063379999958, 49.398455593000072 ], [ -124.628081217999949, 49.398995074000062 ], [ -124.62684130599996, 49.399012531000018 ], [ -124.626805657999938, 49.397933567000095 ], [ -124.627218951999907, 49.397927750000065 ], [ -124.627210036999927, 49.397658010000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8089251", "BldgCostT": "5315001", "sL_LossRatio": "0.930289289731461", "sL_AssetLoss": "12715.937", "sL_BldgLoss": "11829.5", "sL_StrLoss": "9948.7", "sL_NStrLoss": "1880.8", "sL_ContLoss": "886.437", "geom_point": "0101000020E610000070227EEE192E5FC0814C7CFFB0B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.717628095999942, 49.425444748000125 ], [ -124.723136982999947, 49.425509802000079 ], [ -124.723037599999941, 49.429108306000103 ], [ -124.717528284999915, 49.429043248000028 ], [ -124.717628095999942, 49.425444748000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171838053", "BldgCostT": "110348746", "sL_LossRatio": "0.812411923250851", "sL_AssetLoss": "260894.62", "sL_BldgLoss": "211953.9", "sL_StrLoss": "150527.6", "sL_NStrLoss": "61426.3", "sL_ContLoss": "48940.72", "geom_point": "0101000020E6100000BF69E9C0A8295FC096CF8F127DB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.679101813000017, 49.436242328000112 ], [ -124.677309960999963, 49.435872189000051 ], [ -124.675957889999935, 49.435592888000031 ], [ -124.675414700999966, 49.435409907000121 ], [ -124.674207476999925, 49.434740016000056 ], [ -124.67359901699993, 49.434481511000108 ], [ -124.673055886999961, 49.434294806 ], [ -124.672419881999971, 49.434129603 ], [ -124.672058027999981, 49.434036519000088 ], [ -124.671589592999979, 49.433915991000021 ], [ -124.671481509999936, 49.433902740000072 ], [ -124.670864597999966, 49.433826991000025 ], [ -124.669864124999918, 49.43378239300003 ], [ -124.669618504999946, 49.433760713000019 ], [ -124.669012007999953, 49.433707103000053 ], [ -124.668695753999913, 49.433662908000038 ], [ -124.668044396, 49.43357192700006 ], [ -124.667574498999954, 49.433477127000067 ], [ -124.66755612799993, 49.433473418000062 ], [ -124.666856693999975, 49.433332322000069 ], [ -124.665934919999927, 49.433139219000083 ], [ -124.66514816899992, 49.432946836000035 ], [ -124.664849684999922, 49.432813686000053 ], [ -124.664488367000018, 49.432652536 ], [ -124.6638702199999, 49.432253454000083 ], [ -124.66344686799998, 49.431883758000026 ], [ -124.662810097999937, 49.431192625000037 ], [ -124.662714470999944, 49.431088841000097 ], [ -124.662390164999962, 49.430736814000042 ], [ -124.661763509999943, 49.430250320000013 ], [ -124.659964963000021, 49.428885746000063 ], [ -124.659857199999976, 49.428803990000084 ], [ -124.659074037999957, 49.42824468500001 ], [ -124.659029136999962, 49.428212628000097 ], [ -124.658892895999912, 49.428115312000052 ], [ -124.658344014999955, 49.427723297000092 ], [ -124.657908013999972, 49.427453321000051 ], [ -124.65729917099999, 49.427076341000038 ], [ -124.657136784999977, 49.42697579500004 ], [ -124.65709184699999, 49.426943692000087 ], [ -124.656960655999953, 49.426849983000103 ], [ -124.656037086999916, 49.426190268000035 ], [ -124.655611553999961, 49.425886260000077 ], [ -124.655108113999987, 49.425526640000037 ], [ -124.654858165999954, 49.425348082000028 ], [ -124.653861096999947, 49.424635808000119 ], [ -124.653537517, 49.424456813000162 ], [ -124.653436814999964, 49.424401108000062 ], [ -124.653382981, 49.424379895000115 ], [ -124.652953302999947, 49.424210595000048 ], [ -124.652390135999951, 49.424049044000071 ], [ -124.65171679599996, 49.423855901000053 ], [ -124.650502467999956, 49.423492412000037 ], [ -124.65017209799997, 49.423393524000069 ], [ -124.650132597999971, 49.423381712000051 ], [ -124.649579994999968, 49.423104907000045 ], [ -124.64837649399999, 49.422331200000073 ], [ -124.647839595999955, 49.422034694000089 ], [ -124.647162806000011, 49.421767109000065 ], [ -124.646651892999955, 49.421599549000078 ], [ -124.646376559999936, 49.421509243000116 ], [ -124.645907525999988, 49.42135539300007 ], [ -124.645362707999936, 49.42117601900005 ], [ -124.643379311999979, 49.420522878000099 ], [ -124.642681790999958, 49.420255759000085 ], [ -124.642498888999953, 49.420150964000129 ], [ -124.642273472999989, 49.419993330000082 ], [ -124.642216518999973, 49.41991696700007 ], [ -124.642071915999978, 49.419723031000103 ], [ -124.641814920999963, 49.419378323000082 ], [ -124.641229568999989, 49.418578896000135 ], [ -124.641040155999946, 49.418320171000062 ], [ -124.640761057999953, 49.417973788000062 ], [ -124.639486275999943, 49.416027385000092 ], [ -124.639309065999939, 49.415708333000097 ], [ -124.638032143999936, 49.413409274000088 ], [ -124.63765353299999, 49.412727521000043 ], [ -124.637596218999988, 49.412624299000157 ], [ -124.637378782999988, 49.412110448000128 ], [ -124.637317201999906, 49.411964865000087 ], [ -124.637139089999977, 49.411544 ], [ -124.636925393999931, 49.410474898000103 ], [ -124.63658100399999, 49.409777596000069 ], [ -124.636540434999944, 49.409729279000054 ], [ -124.635769406999927, 49.408810689000092 ], [ -124.63442659, 49.407320939000037 ], [ -124.633193106999954, 49.405952287000048 ], [ -124.633113278999986, 49.405864192000081 ], [ -124.632414658999949, 49.405093068000028 ], [ -124.63211019499991, 49.40475699400011 ], [ -124.631791697999972, 49.404539697000104 ], [ -124.631224283999927, 49.40430750500007 ], [ -124.630417874999964, 49.404025054000051 ], [ -124.628321324999931, 49.403290698000049 ], [ -124.62776303499993, 49.403109706000123 ], [ -124.627584816, 49.403051895000054 ], [ -124.627017504999941, 49.402905987000075 ], [ -124.626634978999974, 49.402807599000013 ], [ -124.626279094999958, 49.402742535000073 ], [ -124.625683101999968, 49.402633587000068 ], [ -124.624867595999916, 49.402597999000101 ], [ -124.624310398, 49.402627799000065 ], [ -124.624013598999937, 49.402662769000081 ], [ -124.623090221999959, 49.402771602000051 ], [ -124.622462918999972, 49.402795205000061 ], [ -124.622415448999945, 49.402792131000126 ], [ -124.622374618999942, 49.402789501 ], [ -124.621803215999932, 49.402752604000106 ], [ -124.620636109999978, 49.402546908000041 ], [ -124.619971902999978, 49.402379192000048 ], [ -124.620062319999988, 49.401887105000107 ], [ -124.620148734999987, 49.400635223000045 ], [ -124.620178686999964, 49.400201088000131 ], [ -124.620196495999934, 49.400004245000105 ], [ -124.620277389999956, 49.399108893000033 ], [ -124.620441434999989, 49.396618413000112 ], [ -124.620444210999921, 49.396576059000033 ], [ -124.620476001, 49.396093803000042 ], [ -124.620525163999957, 49.396083951000058 ], [ -124.620919287999968, 49.396004990000066 ], [ -124.621945719999971, 49.39575651500008 ], [ -124.624146266999929, 49.395337693000059 ], [ -124.624132155, 49.395812232000075 ], [ -124.625081256, 49.395798893000098 ], [ -124.625090158999981, 49.396068633000013 ], [ -124.62632999799996, 49.396051195000027 ], [ -124.6263469149999, 49.396563434000015 ], [ -124.626496314999912, 49.396565329000062 ], [ -124.626389477999965, 49.400163895000084 ], [ -124.625820970999925, 49.400156682000073 ], [ -124.625816064999981, 49.400321808000051 ], [ -124.625334061999965, 49.400315691000053 ], [ -124.625331441999947, 49.400403869000087 ], [ -124.62769990299995, 49.400433908000117 ], [ -124.627695401999972, 49.400585679000116 ], [ -124.62829153, 49.40059323100008 ], [ -124.628341684, 49.39890165 ], [ -124.633847281, 49.398971244000045 ], [ -124.633840773999964, 49.399191594000051 ], [ -124.635063648999974, 49.399207013000101 ], [ -124.635063091999911, 49.399225885000078 ], [ -124.636871781999901, 49.399248667000087 ], [ -124.636868294999928, 49.399367001000073 ], [ -124.63761896199999, 49.399376448000062 ], [ -124.637512984999944, 49.40297500900008 ], [ -124.636707642999937, 49.402964875000073 ], [ -124.636693778999984, 49.403435329000068 ], [ -124.636200892999952, 49.40342912300008 ], [ -124.636189610999978, 49.403811803000124 ], [ -124.63652997299999, 49.403816088000077 ], [ -124.636488973999946, 49.405207024000092 ], [ -124.636676751999914, 49.405209388000074 ], [ -124.636669486999935, 49.405455884000077 ], [ -124.636899757999956, 49.405458782000039 ], [ -124.6368916799999, 49.405732900000061 ], [ -124.63715996399999, 49.405736276000042 ], [ -124.637151987999943, 49.406007019000093 ], [ -124.637370772999986, 49.406009771000058 ], [ -124.637364538999961, 49.406221378000069 ], [ -124.641216742999973, 49.40626977300014 ], [ -124.641146331999948, 49.408666662000044 ], [ -124.643114116999968, 49.408691330000103 ], [ -124.643061994999968, 49.410467998000101 ], [ -124.643312016999985, 49.410471129000037 ], [ -124.643206456999948, 49.41406963700009 ], [ -124.643099105999923, 49.414068293000057 ], [ -124.643094982999941, 49.414208839000104 ], [ -124.643103452999981, 49.414208945000091 ], [ -124.64308937, 49.414688935000108 ], [ -124.643321273999959, 49.414691840000067 ], [ -124.64330875499995, 49.415118602000042 ], [ -124.643606788999932, 49.415122333000078 ], [ -124.643591878999985, 49.415630692000143 ], [ -124.644392689999933, 49.415640715000109 ], [ -124.644383697999913, 49.415947512000088 ], [ -124.645222840999978, 49.415909564000067 ], [ -124.645226628999964, 49.41597775499999 ], [ -124.647335213999966, 49.416004103000027 ], [ -124.647342947999931, 49.415739669000075 ], [ -124.652850577999942, 49.415808296000144 ], [ -124.652827668999976, 49.41659473100011 ], [ -124.653322806999938, 49.416600886000012 ], [ -124.653278816999944, 49.41811150000008 ], [ -124.653271258999965, 49.418371057000016 ], [ -124.653218011999968, 49.42019937100013 ], [ -124.652775738999935, 49.420193873000144 ], [ -124.652779446999915, 49.420304231000081 ], [ -124.655276058999931, 49.420335246000072 ], [ -124.655269007999962, 49.420577729000044 ], [ -124.655777055999948, 49.420584033000104 ], [ -124.655757093999924, 49.421270737000064 ], [ -124.656121214999985, 49.421265522000034 ], [ -124.656130295999944, 49.421535258000084 ], [ -124.656543781999972, 49.421529333000109 ], [ -124.656566043999987, 49.422190483000094 ], [ -124.656802213999967, 49.422193411000073 ], [ -124.656797212999948, 49.422365570000053 ], [ -124.657154810999913, 49.422370002000093 ], [ -124.657146912999977, 49.422641954000042 ], [ -124.657569611999975, 49.422647192000078 ], [ -124.657565474999956, 49.422789687 ], [ -124.657743114999988, 49.422791888000084 ], [ -124.657735674999941, 49.423048209000108 ], [ -124.658410904999968, 49.423056571000082 ], [ -124.658399311, 49.423456126000069 ], [ -124.658628720999943, 49.423458967000045 ], [ -124.658622195999982, 49.423683894000149 ], [ -124.659240911999945, 49.42369155100004 ], [ -124.659228733999925, 49.424111510000088 ], [ -124.659724217999965, 49.42411764000007 ], [ -124.659710378999932, 49.424595072000095 ], [ -124.660127533999969, 49.424600230000095 ], [ -124.660118697999962, 49.424905152000058 ], [ -124.660770927999948, 49.424913215000053 ], [ -124.660761303999948, 49.425245487000055 ], [ -124.661482421999949, 49.425254397000025 ], [ -124.661467676999976, 49.42576371800007 ], [ -124.661910536999969, 49.425769188000118 ], [ -124.661880597999968, 49.426803671000094 ], [ -124.664036079, 49.426830266000124 ], [ -124.66411890199997, 49.423963710000038 ], [ -124.669627535999908, 49.424031483000071 ], [ -124.669523992999956, 49.427629945000085 ], [ -124.66619162399995, 49.427588981000092 ], [ -124.666141262999929, 49.429334644000093 ], [ -124.666396080999903, 49.429337780000061 ], [ -124.666383276999952, 49.429781634000094 ], [ -124.666898189999955, 49.429787969000053 ], [ -124.666884720999946, 49.430255079000034 ], [ -124.667184207, 49.430258763000076 ], [ -124.667169201999968, 49.430779195000099 ], [ -124.668822976999962, 49.430799522000072 ], [ -124.668815004999942, 49.431076382000107 ], [ -124.669460270999977, 49.431084306000088 ], [ -124.669457542999936, 49.431179084000078 ], [ -124.670158548999908, 49.431187689000041 ], [ -124.670154287999964, 49.431335847000071 ], [ -124.674784885999912, 49.431392568000049 ], [ -124.674762959999953, 49.432157416000102 ], [ -124.675943188999952, 49.432171841000105 ], [ -124.675937083999926, 49.432384974000051 ], [ -124.676530880999962, 49.432392226000069 ], [ -124.676493101999981, 49.433711789000107 ], [ -124.677562116999965, 49.433724838000074 ], [ -124.677747313999987, 49.433727098000055 ], [ -124.677744320999963, 49.433831756000046 ], [ -124.678389395999915, 49.433839623000061 ], [ -124.678389459999934, 49.433837393000012 ], [ -124.680149453999945, 49.433858840000021 ], [ -124.680149589999957, 49.433854137000061 ], [ -124.681438917999955, 49.433869830000063 ], [ -124.681440238999983, 49.433823469000096 ], [ -124.686950072999963, 49.433890360000142 ], [ -124.686947447999898, 49.433982784000072 ], [ -124.688099234999953, 49.433996732000075 ], [ -124.688065525999917, 49.435184541000076 ], [ -124.688666986999976, 49.43519181900011 ], [ -124.688638149999989, 49.436208312000055 ], [ -124.688914042999969, 49.436211650000068 ], [ -124.689678610999948, 49.436220896000066 ], [ -124.689669085999981, 49.436556889000052 ], [ -124.689576600999942, 49.439819312000033 ], [ -124.689155306999936, 49.439814218000066 ], [ -124.689140513999916, 49.440335821000097 ], [ -124.689103199, 49.440335370000028 ], [ -124.688429004999989, 49.44004972900008 ], [ -124.684545459999953, 49.438403511000061 ], [ -124.679717522999937, 49.436396497000025 ], [ -124.679405655, 49.436318397000036 ], [ -124.679101813000017, 49.436242328000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8089249", "BldgCostT": "5314999", "sL_LossRatio": "0.916673473782702", "sL_AssetLoss": "13466.3", "sL_BldgLoss": "12344.2", "sL_StrLoss": "10638.3", "sL_NStrLoss": "1705.9", "sL_ContLoss": "1122.1", "geom_point": "0101000020E6100000C19240BDF82C5FC021EA3E0029B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.699977222999976, 49.43691904000007 ], [ -124.705487452999989, 49.436984989000102 ], [ -124.705391284999934, 49.440418721000121 ], [ -124.705386671999989, 49.440583416000024 ], [ -124.699876013999983, 49.440517462000052 ], [ -124.699949391999965, 49.437908645000078 ], [ -124.699977222999976, 49.43691904000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7543084", "BldgCostT": "4938334", "sL_LossRatio": "0.887506909095119", "sL_AssetLoss": "17277.95", "sL_BldgLoss": "15334.3", "sL_StrLoss": "12590.2", "sL_NStrLoss": "2744.1", "sL_ContLoss": "1943.65", "geom_point": "0101000020E61000005AF5F38554275FC02941DA5ABAB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.615710710999963, 49.398582591000086 ], [ -124.613868385, 49.397826303000059 ], [ -124.612533393999939, 49.397520102000023 ], [ -124.611658147999933, 49.397581264000074 ], [ -124.611228414999971, 49.397611301000062 ], [ -124.610986623999963, 49.397678108000051 ], [ -124.610996694999983, 49.397342646000048 ], [ -124.610811235999947, 49.397340267000104 ], [ -124.610829328999941, 49.396737659000046 ], [ -124.610832672999891, 49.396626261000058 ], [ -124.610659016999989, 49.396624033000116 ], [ -124.61063027199998, 49.396623665000035 ], [ -124.610630724999936, 49.396608575000059 ], [ -124.61064683499994, 49.39607209400004 ], [ -124.610701222, 49.394260834000157 ], [ -124.616079210999928, 49.394411406000117 ], [ -124.617451895999963, 49.394269586000064 ], [ -124.617459473999958, 49.394269639000115 ], [ -124.616920304999923, 49.395111790000037 ], [ -124.616947915999972, 49.395489203000118 ], [ -124.617650719999958, 49.395937806000106 ], [ -124.61811031299996, 49.396893496000132 ], [ -124.618959796999974, 49.39761980300004 ], [ -124.618942388999983, 49.397925991000129 ], [ -124.618379018, 49.398401697000082 ], [ -124.617554703999929, 49.398494292000123 ], [ -124.616243516999972, 49.398413104000035 ], [ -124.615710710999963, 49.398582591000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9934917", "BldgCostT": "6851667", "sL_LossRatio": "0.950877009219811", "sL_AssetLoss": "13174.89", "sL_BldgLoss": "12527.7", "sL_StrLoss": "10462.4", "sL_NStrLoss": "2065.3", "sL_ContLoss": "647.19", "geom_point": "0101000020E6100000A8F71AA371275FC050D446331EB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.618192897999961, 49.402389500000012 ], [ -124.61717000299997, 49.402268399000057 ], [ -124.61649501, 49.402278386000013 ], [ -124.615688477999967, 49.402108897000055 ], [ -124.614101941999934, 49.401893994000041 ], [ -124.613724841999954, 49.401842905000144 ], [ -124.612019706999931, 49.401611904000106 ], [ -124.611464193999936, 49.401439615000044 ], [ -124.610757502999945, 49.400936809000065 ], [ -124.610690898999934, 49.400832426000093 ], [ -124.610495698999955, 49.400526587000101 ], [ -124.61050231199998, 49.400310189000024 ], [ -124.610701223999939, 49.400073702000036 ], [ -124.610751595999915, 49.399452787000051 ], [ -124.610451082999973, 49.398585034000043 ], [ -124.610959200999915, 49.398591553000081 ], [ -124.610966739999952, 49.39834041100012 ], [ -124.61124782199991, 49.398240803000071 ], [ -124.611736116, 49.397954493000114 ], [ -124.61194735, 49.397923233000071 ], [ -124.612544188999948, 49.397834897000067 ], [ -124.613431496999979, 49.39797590900006 ], [ -124.615541297999968, 49.398837504000035 ], [ -124.615760394999967, 49.398824711000074 ], [ -124.615989001999964, 49.398659505000133 ], [ -124.61630399799999, 49.398573993000113 ], [ -124.618083294999948, 49.398631015000042 ], [ -124.618414209999941, 49.398581210000074 ], [ -124.618821708999945, 49.39840459100003 ], [ -124.619209998, 49.398084089000065 ], [ -124.619402476999966, 49.397622693000073 ], [ -124.619028682999982, 49.397168401000052 ], [ -124.618197295999934, 49.396604391000032 ], [ -124.617852006999954, 49.395782590000117 ], [ -124.617079991999972, 49.395360996000079 ], [ -124.617167906999924, 49.395098984000093 ], [ -124.617760541999957, 49.394273986000023 ], [ -124.617790832999916, 49.39427469 ], [ -124.618071041999954, 49.394282208000092 ], [ -124.618996639, 49.394328273000056 ], [ -124.619016238999947, 49.394329252000048 ], [ -124.619347408999914, 49.394339702000089 ], [ -124.620056550999934, 49.394345305000073 ], [ -124.620052101999988, 49.394494487000038 ], [ -124.620076721999965, 49.394494801000114 ], [ -124.620071806999988, 49.394345426000029 ], [ -124.62031598799993, 49.394347354000104 ], [ -124.620444210999921, 49.396576059000033 ], [ -124.620441434999989, 49.396618413000112 ], [ -124.620277389999956, 49.399108893000033 ], [ -124.620196495999934, 49.400004245000105 ], [ -124.620178686999964, 49.400201088000131 ], [ -124.620148734999987, 49.400635223000045 ], [ -124.620062319999988, 49.401887105000107 ], [ -124.619971902999978, 49.402379192000048 ], [ -124.619872370999985, 49.402722899000068 ], [ -124.619866031999933, 49.402833074000057 ], [ -124.619819779999972, 49.402825303000036 ], [ -124.619041026, 49.402616694000081 ], [ -124.618192897999961, 49.402389500000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419084", "BldgCostT": "1668334", "sL_LossRatio": "0.953756034712001", "sL_AssetLoss": "2669.97", "sL_BldgLoss": "2546.5", "sL_StrLoss": "2025.7", "sL_NStrLoss": "520.8", "sL_ContLoss": "123.47", "geom_point": "0101000020E61000004A4EC343DA265FC0E86E742198B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.604538918999936, 49.395365299000041 ], [ -124.603354794000026, 49.394200080000104 ], [ -124.604644818999986, 49.394214084000041 ], [ -124.60513971799999, 49.394226601000099 ], [ -124.605861059999967, 49.39423881700003 ], [ -124.60808157699995, 49.394187394000078 ], [ -124.609816147999979, 49.394236029000076 ], [ -124.609758687999928, 49.396148375000031 ], [ -124.609748705999948, 49.396480619000066 ], [ -124.605159535999931, 49.396421603000114 ], [ -124.604538918999936, 49.395365299000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12592500", "BldgCostT": "8475000", "sL_LossRatio": "0.770577990461774", "sL_AssetLoss": "30718.5", "sL_BldgLoss": "23671", "sL_StrLoss": "16131", "sL_NStrLoss": "7540", "sL_ContLoss": "7047.5", "geom_point": "0101000020E61000003F666F4284225FC04A59863856AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.537611124999927, 49.369219454000081 ], [ -124.537611758999944, 49.369199369000043 ], [ -124.537547639999929, 49.369200222000089 ], [ -124.536904562999922, 49.369208775000097 ], [ -124.536183560000012, 49.36921836000009 ], [ -124.536191966999937, 49.369488113000138 ], [ -124.535638333999884, 49.369495470000118 ], [ -124.53560063899999, 49.369018910000044 ], [ -124.535625115999963, 49.368617786000108 ], [ -124.535652150999937, 49.368174487000047 ], [ -124.535654242999911, 49.366667206000038 ], [ -124.53565537799993, 49.365844687000077 ], [ -124.535655748999929, 49.365600752000063 ], [ -124.535656336999963, 49.365177379000052 ], [ -124.536057466, 49.365172048000083 ], [ -124.536074276999983, 49.365711556000036 ], [ -124.536487320999967, 49.365706066000044 ], [ -124.536504135999934, 49.366245574000068 ], [ -124.536917183999989, 49.366240082000047 ], [ -124.536925592999964, 49.36650983700013 ], [ -124.537338642999913, 49.36650434300001 ], [ -124.537347056999948, 49.366774097000103 ], [ -124.538173159999957, 49.366763106000036 ], [ -124.53823751299997, 49.368825400000084 ], [ -124.543125712999952, 49.36889131700007 ], [ -124.543076604999953, 49.370451820000014 ], [ -124.543012460999961, 49.372489947000069 ], [ -124.541357181999928, 49.372467650000033 ], [ -124.53751015399996, 49.372415732000029 ], [ -124.537548063999949, 49.371215701000068 ], [ -124.537607113999982, 49.36934641300013 ], [ -124.537611124999927, 49.369219454000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "210619080", "BldgCostT": "142228368", "sL_LossRatio": "0.869299380086872", "sL_AssetLoss": "214060.316", "sL_BldgLoss": "186082.5", "sL_StrLoss": "133740.1", "sL_NStrLoss": "52342.4", "sL_ContLoss": "27977.816", "geom_point": "0101000020E6100000A9A6FB6B3F245FC03C6D535D3CB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.60513971799999, 49.394226601000099 ], [ -124.604644818999986, 49.394214084000041 ], [ -124.603354794000026, 49.394200080000104 ], [ -124.602573478999943, 49.393431201000062 ], [ -124.601931602999969, 49.393187698000062 ], [ -124.600518017999931, 49.392946996000035 ], [ -124.599955697, 49.39261229400006 ], [ -124.59766489899999, 49.391636712000015 ], [ -124.596134303999975, 49.390749394000082 ], [ -124.595025002999961, 49.390117096000026 ], [ -124.591867088999905, 49.389179998000031 ], [ -124.590951165999925, 49.388752994000029 ], [ -124.588494499999953, 49.387607612000068 ], [ -124.587475505999961, 49.387198891000075 ], [ -124.586114099999989, 49.386417005000098 ], [ -124.58500558599998, 49.385380201000018 ], [ -124.583988418000033, 49.384638203000058 ], [ -124.582071995, 49.383692492000115 ], [ -124.579937386, 49.382489002000028 ], [ -124.579156393999966, 49.382167212000091 ], [ -124.578042387999943, 49.381805411000116 ], [ -124.577182614999955, 49.38166299400006 ], [ -124.576027631999978, 49.381354928000043 ], [ -124.575933005999957, 49.381329687000061 ], [ -124.574869794999969, 49.380804197000053 ], [ -124.574020492999949, 49.380564913000086 ], [ -124.573635279999962, 49.380375039000043 ], [ -124.573503301999892, 49.380309985000075 ], [ -124.571845482999905, 49.380207400000138 ], [ -124.570719009999891, 49.379852788000015 ], [ -124.570026093999928, 49.379746011000087 ], [ -124.568515006, 49.379838588000048 ], [ -124.566011179999919, 49.379539500000121 ], [ -124.55786621399993, 49.379451205000066 ], [ -124.554518287999983, 49.379029595000155 ], [ -124.553040625999955, 49.378707052000109 ], [ -124.553074630999944, 49.377619216000085 ], [ -124.552385705999967, 49.377610004000061 ], [ -124.552432176999972, 49.376124092000062 ], [ -124.552441662999954, 49.375820692000083 ], [ -124.552045737999933, 49.3758153960001 ], [ -124.552040278, 49.375989941000093 ], [ -124.551962862999943, 49.378464608000115 ], [ -124.551193259999962, 49.378454309000134 ], [ -124.549824125999962, 49.378309003000055 ], [ -124.547410006999939, 49.377334798000057 ], [ -124.54650236099998, 49.377036550000085 ], [ -124.546572831, 49.374792248000105 ], [ -124.548495935999981, 49.37481805600008 ], [ -124.551220354999927, 49.374854559 ], [ -124.551993296999967, 49.374864903000059 ], [ -124.551998066999914, 49.374712438000081 ], [ -124.550725534999941, 49.374695405000061 ], [ -124.549877487999964, 49.37468404600007 ], [ -124.549885594999921, 49.374425241000012 ], [ -124.54993597099994, 49.372817076000082 ], [ -124.548678455999948, 49.372800221000091 ], [ -124.548715782000031, 49.371609641000148 ], [ -124.548791267999945, 49.369201587000063 ], [ -124.551521077999951, 49.369238160000101 ], [ -124.55154566100002, 49.368452414000039 ], [ -124.551058610999974, 49.368445894000068 ], [ -124.551113722999958, 49.366684871000061 ], [ -124.549193947999925, 49.366659150000039 ], [ -124.549211868999976, 49.366087244 ], [ -124.547242024999946, 49.366060817000061 ], [ -124.547311063999985, 49.368260328000076 ], [ -124.545245751999957, 49.368287960000075 ], [ -124.545237296999957, 49.368018206 ], [ -124.544411173999947, 49.368029248000035 ], [ -124.544402723999951, 49.367759495000065 ], [ -124.542750486, 49.367781561000037 ], [ -124.542672250999985, 49.365281657000018 ], [ -124.542101562999932, 49.36527397000004 ], [ -124.542114606999988, 49.364859685000098 ], [ -124.542076384999945, 49.364859170000067 ], [ -124.542091817000014, 49.364369099000093 ], [ -124.542008013999947, 49.364367969000035 ], [ -124.54201839199996, 49.364038413000095 ], [ -124.541970630999984, 49.364037770000095 ], [ -124.541972261999916, 49.363985990000074 ], [ -124.545703487999901, 49.363899806000049 ], [ -124.548588043000038, 49.3639047570001 ], [ -124.550390915999955, 49.363907799000096 ], [ -124.5508467699999, 49.363908610000081 ], [ -124.553367336999912, 49.363912981000105 ], [ -124.555877693999932, 49.3639173 ], [ -124.555878808999978, 49.364713594000122 ], [ -124.554759084999915, 49.364698644000072 ], [ -124.55475295199993, 49.364895133000076 ], [ -124.555879083999983, 49.364910168000108 ], [ -124.555886756999925, 49.370388901000112 ], [ -124.554259111999912, 49.37036716900009 ], [ -124.554256985999956, 49.370435283000077 ], [ -124.555886851999944, 49.370457044 ], [ -124.555890188999925, 49.372839103000011 ], [ -124.555890443, 49.373082532000069 ], [ -124.560661460999981, 49.374040024000124 ], [ -124.563989018999962, 49.373925258000078 ], [ -124.564153426999951, 49.373945115000062 ], [ -124.565297370999986, 49.37408335200012 ], [ -124.575062187999919, 49.375262708000044 ], [ -124.574929689000015, 49.377017792000068 ], [ -124.574521997999966, 49.37729679600006 ], [ -124.575132767999932, 49.377782563000054 ], [ -124.57523857599989, 49.377866723000082 ], [ -124.575332122999967, 49.377941102000065 ], [ -124.575532298999974, 49.378098603000119 ], [ -124.576097490999985, 49.378428206000095 ], [ -124.579736707, 49.379810702000043 ], [ -124.580718085999933, 49.380260107000019 ], [ -124.581154610999945, 49.380519064000062 ], [ -124.581548096999953, 49.380752498000042 ], [ -124.584994828999982, 49.382620485000075 ], [ -124.585688506999972, 49.382996392000081 ], [ -124.58629334799997, 49.38330318100008 ], [ -124.586640773999974, 49.38347940700001 ], [ -124.586912474999949, 49.383617201000035 ], [ -124.587183943999918, 49.383746567000074 ], [ -124.587582036999947, 49.383936340000098 ], [ -124.588106388999933, 49.384186297000035 ], [ -124.589666822999959, 49.384886184000074 ], [ -124.589782279999923, 49.384937972000074 ], [ -124.590367403999977, 49.385200406000052 ], [ -124.590640691999951, 49.385355109000017 ], [ -124.590815329999899, 49.385524906000043 ], [ -124.590854605999965, 49.385563106000099 ], [ -124.590989316999966, 49.385803907000124 ], [ -124.591011295999962, 49.385843200000032 ], [ -124.591099903000014, 49.386325002000063 ], [ -124.591078904999918, 49.387138118000095 ], [ -124.591076992999945, 49.387212088000069 ], [ -124.591193985999965, 49.387664504000028 ], [ -124.59144418399994, 49.388128590000079 ], [ -124.591638088999957, 49.388316494 ], [ -124.59177164299993, 49.388412115000051 ], [ -124.591817288999948, 49.388444803000056 ], [ -124.592236302999964, 49.388651897000088 ], [ -124.592331671999929, 49.388682611000071 ], [ -124.594601606999944, 49.389413413000057 ], [ -124.596295661999974, 49.390001883000089 ], [ -124.596461203999979, 49.390059395000016 ], [ -124.596852166999966, 49.390262059000094 ], [ -124.597118510999934, 49.390400090000071 ], [ -124.597353593999955, 49.390592984000065 ], [ -124.597521128999972, 49.39075347199999 ], [ -124.597727145999983, 49.390950858000096 ], [ -124.598203108999925, 49.391406778000032 ], [ -124.598405166999953, 49.391551599000088 ], [ -124.598930899000024, 49.39183108600011 ], [ -124.599777221999943, 49.392095252000047 ], [ -124.599951140999934, 49.392149553000131 ], [ -124.600024282999954, 49.392172360000082 ], [ -124.601081700999913, 49.392502401000101 ], [ -124.601396485999928, 49.392565889000089 ], [ -124.602077513999959, 49.392645999000109 ], [ -124.604155287999944, 49.392890410000099 ], [ -124.604583279999972, 49.392120099000124 ], [ -124.605508278999963, 49.390252848000038 ], [ -124.605817469999934, 49.389539532000072 ], [ -124.605978469999968, 49.38890170700008 ], [ -124.606043164999932, 49.387302333000051 ], [ -124.60777519, 49.387383106000051 ], [ -124.607848081, 49.387382470000013 ], [ -124.607916967, 49.387381864000091 ], [ -124.60835771499994, 49.387377999000101 ], [ -124.608690047999957, 49.38734186500006 ], [ -124.608765099999957, 49.387333691 ], [ -124.608755993999978, 49.387389076 ], [ -124.608633719999929, 49.388133103000044 ], [ -124.608619069999989, 49.388947410000135 ], [ -124.608610020999933, 49.389451917000052 ], [ -124.608599859999941, 49.390019056000071 ], [ -124.608597001999939, 49.390177393000059 ], [ -124.608470492999942, 49.392095406000038 ], [ -124.608429087999923, 49.392693386000104 ], [ -124.60844709, 49.392769711000064 ], [ -124.608637141999949, 49.392965722000028 ], [ -124.60855878199996, 49.393114277000031 ], [ -124.608440195999947, 49.393192998000053 ], [ -124.608360540999968, 49.39339618300005 ], [ -124.60823900099993, 49.39370619800011 ], [ -124.60808157699995, 49.394187394000078 ], [ -124.605861059999967, 49.39423881700003 ], [ -124.60513971799999, 49.394226601000099 ] ], [ [ -124.572856486, 49.377284908000028 ], [ -124.57288511299997, 49.376356403000081 ], [ -124.571323303999989, 49.376335799000131 ], [ -124.571330898999946, 49.37608972500005 ], [ -124.568748671999984, 49.376055610000051 ], [ -124.568741204999981, 49.376297096000066 ], [ -124.569222568999976, 49.376303460000052 ], [ -124.569204777999957, 49.37687903500003 ], [ -124.572381385999947, 49.376920980000122 ], [ -124.57237035899999, 49.377278498000067 ], [ -124.572856486, 49.377284908000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14207417", "BldgCostT": "9301667", "sL_LossRatio": "0.669443678553808", "sL_AssetLoss": "29957.86", "sL_BldgLoss": "20055.1", "sL_StrLoss": "12215.6", "sL_NStrLoss": "7839.5", "sL_ContLoss": "9902.76", "geom_point": "0101000020E6100000D2ECAAD591225FC037D8827BF1AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.536741396, 49.376253815000013 ], [ -124.535861038999926, 49.375472737000095 ], [ -124.535861650999962, 49.374954100000053 ], [ -124.53582052099992, 49.373169186000062 ], [ -124.538740275999984, 49.373208647000055 ], [ -124.538756762999967, 49.372686347000048 ], [ -124.542160745, 49.372732253000031 ], [ -124.544259104, 49.372760498000041 ], [ -124.544238477999912, 49.373416383000055 ], [ -124.544145929999956, 49.376359107 ], [ -124.543430231999977, 49.376349478000094 ], [ -124.541373811999932, 49.375966090000126 ], [ -124.54078349199996, 49.376010293000093 ], [ -124.53940458999989, 49.376406205000137 ], [ -124.538637885999904, 49.376534392000053 ], [ -124.537479317999896, 49.376504502000103 ], [ -124.536741396, 49.376253815000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11360000", "BldgCostT": "7625000", "sL_LossRatio": "0.724086698129698", "sL_AssetLoss": "18307.2", "sL_BldgLoss": "13256", "sL_StrLoss": "9114", "sL_NStrLoss": "4142", "sL_ContLoss": "5051.2", "geom_point": "0101000020E6100000FACF5803AD285FC019F022E1B5B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.625800800999968, 49.402785387000065 ], [ -124.624903191999962, 49.402700004000017 ], [ -124.622580100999969, 49.402930701000074 ], [ -124.621498489999979, 49.403107294 ], [ -124.619866031999933, 49.402833074000057 ], [ -124.619872370999985, 49.402722899000068 ], [ -124.619971902999978, 49.402379192000048 ], [ -124.620636109999978, 49.402546908000041 ], [ -124.621803215999932, 49.402752604000106 ], [ -124.622374618999942, 49.402789501 ], [ -124.622415448999945, 49.402792131000126 ], [ -124.622462918999972, 49.402795205000061 ], [ -124.623090221999959, 49.402771602000051 ], [ -124.624013598999937, 49.402662769000081 ], [ -124.624310398, 49.402627799000065 ], [ -124.624867595999916, 49.402597999000101 ], [ -124.625683101999968, 49.402633587000068 ], [ -124.626279094999958, 49.402742535000073 ], [ -124.626634978999974, 49.402807599000013 ], [ -124.627017504999941, 49.402905987000075 ], [ -124.627584816, 49.403051895000054 ], [ -124.62776303499993, 49.403109706000123 ], [ -124.628321324999931, 49.403290698000049 ], [ -124.630417874999964, 49.404025054000051 ], [ -124.631224283999927, 49.40430750500007 ], [ -124.631791697999972, 49.404539697000104 ], [ -124.63211019499991, 49.40475699400011 ], [ -124.632414658999949, 49.405093068000028 ], [ -124.633113278999986, 49.405864192000081 ], [ -124.633193106999954, 49.405952287000048 ], [ -124.63442659, 49.407320939000037 ], [ -124.635769406999927, 49.408810689000092 ], [ -124.636540434999944, 49.409729279000054 ], [ -124.63658100399999, 49.409777596000069 ], [ -124.636925393999931, 49.410474898000103 ], [ -124.637139089999977, 49.411544 ], [ -124.637317201999906, 49.411964865000087 ], [ -124.637378782999988, 49.412110448000128 ], [ -124.637596218999988, 49.412624299000157 ], [ -124.63765353299999, 49.412727521000043 ], [ -124.638032143999936, 49.413409274000088 ], [ -124.639309065999939, 49.415708333000097 ], [ -124.639486275999943, 49.416027385000092 ], [ -124.640761057999953, 49.417973788000062 ], [ -124.641040155999946, 49.418320171000062 ], [ -124.641229568999989, 49.418578896000135 ], [ -124.641814920999963, 49.419378323000082 ], [ -124.642071915999978, 49.419723031000103 ], [ -124.642216518999973, 49.41991696700007 ], [ -124.64085168299998, 49.420105201000048 ], [ -124.640334316999883, 49.420266197000053 ], [ -124.63998438199998, 49.420118102000075 ], [ -124.639666400999914, 49.420078197000052 ], [ -124.639452993999925, 49.419891613000068 ], [ -124.639372504999969, 49.418723796000059 ], [ -124.639073695999954, 49.418475886000117 ], [ -124.639065099999968, 49.417783790000087 ], [ -124.638942987999926, 49.417434798000045 ], [ -124.638612004999956, 49.416997586000036 ], [ -124.638546987000012, 49.416738391000152 ], [ -124.638177395999904, 49.416365299000113 ], [ -124.637552622999976, 49.415429602000096 ], [ -124.637528001999968, 49.415062109000061 ], [ -124.637283092999951, 49.414758815000013 ], [ -124.63686480299998, 49.413793100000177 ], [ -124.636799997999972, 49.413075313000057 ], [ -124.636183923999965, 49.411149803000058 ], [ -124.63503819499999, 49.409069001000034 ], [ -124.634362110999916, 49.408188907000088 ], [ -124.634256003999909, 49.407884090000074 ], [ -124.633339200999913, 49.406881503000079 ], [ -124.63243148199993, 49.406119495000041 ], [ -124.630474883999938, 49.404843399000065 ], [ -124.629896290999966, 49.40446460400009 ], [ -124.627174505999989, 49.403477610000024 ], [ -124.626429585999958, 49.403037497000078 ], [ -124.625800800999968, 49.402785387000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61639000", "BldgCostT": "41245000", "sL_LossRatio": "0.895079185014821", "sL_AssetLoss": "111882.28", "sL_BldgLoss": "100143.5", "sL_StrLoss": "83963.8", "sL_NStrLoss": "16179.7", "sL_ContLoss": "11738.78", "geom_point": "0101000020E6100000FFB8CBB848255FC0C0236C7089AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.59173034, 49.376773527000047 ], [ -124.591747935999962, 49.376195173000042 ], [ -124.589389554999983, 49.37616446300008 ], [ -124.588495758999954, 49.375931882000089 ], [ -124.58750300199992, 49.376139860000144 ], [ -124.587215820999958, 49.376136111000058 ], [ -124.587303714999976, 49.373256134000023 ], [ -124.585914046999932, 49.37323798500006 ], [ -124.585956621999955, 49.371844184000068 ], [ -124.583413338999918, 49.371810923000098 ], [ -124.583462558999898, 49.370202345000024 ], [ -124.581689530999938, 49.370179123000092 ], [ -124.581615896999921, 49.372582484000105 ], [ -124.580334329, 49.372565681000054 ], [ -124.580310189999963, 49.373352815000011 ], [ -124.578244579999989, 49.373325699000098 ], [ -124.578244307, 49.3733345670001 ], [ -124.57704559699999, 49.373318813000076 ], [ -124.57702855, 49.373873390000028 ], [ -124.578696563, 49.373895308000087 ], [ -124.578668322999974, 49.374815034000022 ], [ -124.579130201999959, 49.374821099000066 ], [ -124.579092942, 49.376034946000111 ], [ -124.575062187999919, 49.375262708000044 ], [ -124.565297370999986, 49.37408335200012 ], [ -124.564153426999951, 49.373945115000062 ], [ -124.563989018999962, 49.373925258000078 ], [ -124.560661460999981, 49.374040024000124 ], [ -124.555890443, 49.373082532000069 ], [ -124.555890188999925, 49.372839103000011 ], [ -124.555886851999944, 49.370457044 ], [ -124.557686554999947, 49.370481044000059 ], [ -124.557674565, 49.370865902000041 ], [ -124.56096165699995, 49.370909660000024 ], [ -124.560958918999958, 49.370997754000086 ], [ -124.565876677999981, 49.371063033000084 ], [ -124.565866089999986, 49.371404799000068 ], [ -124.566765265999962, 49.371416711000109 ], [ -124.566733930999945, 49.372428839000065 ], [ -124.568172219999923, 49.372447877000063 ], [ -124.568194953, 49.371712877000057 ], [ -124.572703312999977, 49.371772429000018 ], [ -124.572708776999974, 49.37159522300005 ], [ -124.572695443999976, 49.371595046000039 ], [ -124.57275059899996, 49.369806019000087 ], [ -124.570915581999927, 49.369830974000052 ], [ -124.57088119399998, 49.368751976000048 ], [ -124.571294255999959, 49.36874636000011 ], [ -124.571285656999962, 49.368476611000098 ], [ -124.572524834, 49.368459757000061 ], [ -124.572533439000011, 49.368729507000054 ], [ -124.572783890999958, 49.368726099000106 ], [ -124.572806385999968, 49.367996381000076 ], [ -124.572851556999964, 49.367996977000075 ], [ -124.57288434599991, 49.366933282000105 ], [ -124.574998354999948, 49.366961140000029 ], [ -124.575664764999928, 49.36696991400008 ], [ -124.57567104499995, 49.366765750000127 ], [ -124.578245895999927, 49.366799610000029 ], [ -124.578254054999931, 49.366533914000094 ], [ -124.583755727999957, 49.366606058000038 ], [ -124.583706520999897, 49.368214646000069 ], [ -124.589025327999963, 49.368284126000034 ], [ -124.588982848999976, 49.369677936000095 ], [ -124.590054559999956, 49.369691904000035 ], [ -124.59010239399997, 49.368121213000038 ], [ -124.590207123999946, 49.368122578000076 ], [ -124.590247263999956, 49.366804314000085 ], [ -124.592077154999984, 49.366828138000052 ], [ -124.592152631999951, 49.364345955000076 ], [ -124.597654064999972, 49.364417392000078 ], [ -124.597560087999952, 49.367520038000066 ], [ -124.597711351999919, 49.367521998000065 ], [ -124.597602345999988, 49.371120690000055 ], [ -124.597177204999952, 49.371115181000128 ], [ -124.59712003599995, 49.37300169800011 ], [ -124.596776130999928, 49.372997239000071 ], [ -124.596744968999943, 49.374025296000099 ], [ -124.597395057999947, 49.37403372400005 ], [ -124.597390979999915, 49.37416830500009 ], [ -124.597561859999956, 49.374170520000114 ], [ -124.597536065999989, 49.375021911000097 ], [ -124.598846864000024, 49.37503888800012 ], [ -124.598737928999981, 49.378637542000085 ], [ -124.59838777299997, 49.378633008000108 ], [ -124.598374765999949, 49.379062547000075 ], [ -124.594743653999942, 49.3775574820001 ], [ -124.59173034, 49.376773527000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8111000", "BldgCostT": "5330000", "sL_LossRatio": "0.967112131342167", "sL_AssetLoss": "11657.49", "sL_BldgLoss": "11274.1", "sL_StrLoss": "10253", "sL_NStrLoss": "1021.1", "sL_ContLoss": "383.39", "geom_point": "0101000020E6100000F3B3686C35275FC03D60A26A89B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.610333410999928, 49.382064961 ], [ -124.610346854999946, 49.38161722800001 ], [ -124.609057121999939, 49.381600663000015 ], [ -124.60916526199999, 49.378002016000096 ], [ -124.609622653, 49.378007892000021 ], [ -124.609655506999957, 49.37691412500007 ], [ -124.61457445899994, 49.376977198000091 ], [ -124.614577012999959, 49.37689184700011 ], [ -124.618075945999948, 49.376936576000105 ], [ -124.617769873999976, 49.377733392000025 ], [ -124.617757792999953, 49.377764902000074 ], [ -124.617650106999974, 49.37791198700009 ], [ -124.61751066399998, 49.378103349000099 ], [ -124.617477901, 49.378148294000084 ], [ -124.617301995999981, 49.378291523000058 ], [ -124.617153503999987, 49.378412415000113 ], [ -124.616889801999932, 49.378579091000034 ], [ -124.616689498999975, 49.378648298000094 ], [ -124.616640745999973, 49.378665125000097 ], [ -124.616083203999935, 49.378857696000097 ], [ -124.615659496999953, 49.379033192000058 ], [ -124.615489695999955, 49.379144394000086 ], [ -124.614814625999912, 49.379994401000076 ], [ -124.614050788999961, 49.380680289000111 ], [ -124.613825719999923, 49.380981597000094 ], [ -124.613587584999976, 49.381671611000101 ], [ -124.613517816999945, 49.381796698000109 ], [ -124.613406116999954, 49.381894296000063 ], [ -124.612022205999935, 49.382694596000078 ], [ -124.611431483999979, 49.382426994000141 ], [ -124.610664491999941, 49.382160614000071 ], [ -124.610348036999937, 49.382069186000102 ], [ -124.610333410999928, 49.382064961 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.989279406581795", "sL_AssetLoss": "1512.323", "sL_BldgLoss": "1496.11", "sL_StrLoss": "1423", "sL_NStrLoss": "73.11", "sL_ContLoss": "16.213", "geom_point": "0101000020E6100000CD080CE5462A5FC0E8A6AC2A24AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.659314217999963, 49.331893459000106 ], [ -124.659305149999952, 49.331623719000078 ], [ -124.658892415999986, 49.331629645000142 ], [ -124.658856150999952, 49.330550687000056 ], [ -124.659268874999924, 49.330544760000102 ], [ -124.659250738999944, 49.330005282000066 ], [ -124.659663457999926, 49.329999354000059 ], [ -124.659627179, 49.328920396000079 ], [ -124.660039889999922, 49.328914468000072 ], [ -124.66002174499998, 49.328374987000061 ], [ -124.660434450999944, 49.328369058000135 ], [ -124.660425376999953, 49.328099318000085 ], [ -124.66044426500001, 49.32809904700008 ], [ -124.660468886999979, 49.327247255000081 ], [ -124.66070039100002, 49.327250124000066 ], [ -124.660735045999971, 49.326050958000096 ], [ -124.660837875999931, 49.326052232000016 ], [ -124.660850365999949, 49.325619961000086 ], [ -124.661170543999944, 49.325623926000034 ], [ -124.661181374999913, 49.325248968000018 ], [ -124.661601122999969, 49.325254165000089 ], [ -124.661611176999912, 49.324905978000047 ], [ -124.662071854999965, 49.324911680000078 ], [ -124.662083783999933, 49.324498488000124 ], [ -124.662552251999898, 49.32450428500006 ], [ -124.662562784999963, 49.324139299000095 ], [ -124.663605017999913, 49.32415218700006 ], [ -124.663620071999944, 49.323630124000069 ], [ -124.66431843499997, 49.323638754000136 ], [ -124.664321850999968, 49.323520242000036 ], [ -124.665303617999925, 49.323532367000048 ], [ -124.665306919, 49.323417765000052 ], [ -124.665896975999928, 49.323425049000036 ], [ -124.665107462999956, 49.324148968000067 ], [ -124.664946094999905, 49.324441323000059 ], [ -124.66484923499999, 49.324610787000076 ], [ -124.664846365999949, 49.324983323 ], [ -124.664786651999947, 49.324994063000062 ], [ -124.664442346999948, 49.325079633000044 ], [ -124.66400015, 49.325189554000126 ], [ -124.663693264999921, 49.325630392000107 ], [ -124.662529792999948, 49.326503466000119 ], [ -124.661790290999974, 49.327594214000079 ], [ -124.66148229400001, 49.327881112000036 ], [ -124.661345004999987, 49.328351061000063 ], [ -124.661097021, 49.328654902000075 ], [ -124.66082681499995, 49.328822572000043 ], [ -124.660703751999904, 49.328942541000089 ], [ -124.660640553999926, 49.329083976000057 ], [ -124.66066545799994, 49.329268792000057 ], [ -124.66047295499996, 49.32988836100003 ], [ -124.659815617999953, 49.33084417700011 ], [ -124.659757002999982, 49.331016259000123 ], [ -124.659779515999929, 49.331284774000032 ], [ -124.659915149999946, 49.33161535000005 ], [ -124.65995544399999, 49.331713575000087 ], [ -124.660010252999939, 49.332005876000039 ], [ -124.659961332999956, 49.332128569000098 ], [ -124.659776795999946, 49.332328806000078 ], [ -124.65932963399996, 49.333289941000054 ], [ -124.659264471999961, 49.334448400000056 ], [ -124.659102980999975, 49.334708308000145 ], [ -124.658659912999951, 49.335051140000111 ], [ -124.658416303999957, 49.335391922 ], [ -124.657883860000013, 49.335877652000143 ], [ -124.657573717000034, 49.335998023000109 ], [ -124.657218515999929, 49.336014305000027 ], [ -124.656672222999958, 49.336122747000076 ], [ -124.65556898399997, 49.336470843000029 ], [ -124.655259917999928, 49.336602011000117 ], [ -124.65485705399999, 49.336885015000099 ], [ -124.654231463999977, 49.337213846000083 ], [ -124.653732686999945, 49.337342664000033 ], [ -124.653715659999989, 49.337340515000044 ], [ -124.65370764599993, 49.337101356000076 ], [ -124.654120424999974, 49.337095448000113 ], [ -124.654102340999913, 49.336555967000017 ], [ -124.65451511599997, 49.336550058000107 ], [ -124.654506071999904, 49.336280318000057 ], [ -124.654918845999973, 49.336274408000122 ], [ -124.654909799, 49.336004668000101 ], [ -124.655735338999989, 49.335992842000095 ], [ -124.655726289999947, 49.335723102000017 ], [ -124.656551823999919, 49.335711269000051 ], [ -124.656542769999973, 49.335441531000065 ], [ -124.657368300999934, 49.33542969300008 ], [ -124.657359239999977, 49.335159953000094 ], [ -124.657772003999966, 49.335154032000041 ], [ -124.65775388199998, 49.334614552000048 ], [ -124.658166640000019, 49.334608630000076 ], [ -124.65815757699994, 49.334338890000026 ], [ -124.65857033199994, 49.334332967000094 ], [ -124.658515940999962, 49.332714529000079 ], [ -124.658928682999942, 49.332708604000096 ], [ -124.658901481999976, 49.331899385000071 ], [ -124.659314217999963, 49.331893459000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.955823630784751", "sL_AssetLoss": "4758.2", "sL_BldgLoss": "4548", "sL_StrLoss": "3889", "sL_NStrLoss": "659", "sL_ContLoss": "210.2", "geom_point": "0101000020E6100000A3A2E2E631275FC04362B30AB8AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.610343482999895, 49.363125304000064 ], [ -124.615324143999942, 49.363189156000018 ], [ -124.615167741999954, 49.363247983000115 ], [ -124.614885893999968, 49.363353991000039 ], [ -124.614792148999982, 49.363409084000089 ], [ -124.614629610999913, 49.363504610000064 ], [ -124.614549298999989, 49.363574899000071 ], [ -124.614454379999984, 49.363658001000061 ], [ -124.614303985, 49.363855892000046 ], [ -124.614248713999928, 49.364044170000035 ], [ -124.614202890999962, 49.364200198000113 ], [ -124.61422502, 49.364885498000035 ], [ -124.614311101999988, 49.365360779000099 ], [ -124.61432188299996, 49.365420403000037 ], [ -124.615231843999965, 49.366788085000081 ], [ -124.61023546899996, 49.366724033000068 ], [ -124.610343482999895, 49.363125304000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.923076923076923", "sL_AssetLoss": "1339", "sL_BldgLoss": "1236", "sL_StrLoss": "1000", "sL_NStrLoss": "236", "sL_ContLoss": "103", "geom_point": "0101000020E6100000EB5F8A594C245FC05A89D40F45AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.566385485999916, 49.331301451000073 ], [ -124.566376925999961, 49.33103169900005 ], [ -124.56633396899997, 49.331032282000095 ], [ -124.567096557999932, 49.330179927000103 ], [ -124.567066539999985, 49.328323669000056 ], [ -124.567529495999963, 49.328317389000119 ], [ -124.567555194999898, 49.329126645000095 ], [ -124.567142463999957, 49.3291322440001 ], [ -124.567168158999905, 49.329941499000057 ], [ -124.567580896999971, 49.329935901000042 ], [ -124.567623732999948, 49.331284660000101 ], [ -124.566385485999916, 49.331301451000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994112520232653", "sL_AssetLoss": "562.21", "sL_BldgLoss": "558.9", "sL_StrLoss": "531", "sL_NStrLoss": "27.9", "sL_ContLoss": "3.31", "geom_point": "0101000020E6100000BD70C6B41F295FC051FB296584AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.641830008999946, 49.340299016000102 ], [ -124.64019840399996, 49.340133601000034 ], [ -124.640180167, 49.340133413000025 ], [ -124.640166527999938, 49.339723173000039 ], [ -124.644707371999957, 49.339658633000042 ], [ -124.644727394999933, 49.340259324000044 ], [ -124.643392302999985, 49.340295214000065 ], [ -124.641830008999946, 49.340299016000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.946545541711306", "sL_AssetLoss": "2044.17", "sL_BldgLoss": "1934.9", "sL_StrLoss": "1663", "sL_NStrLoss": "271.9", "sL_ContLoss": "109.27", "geom_point": "0101000020E6100000B0B05C469C235FC0ADB4D66116AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.555886756999925, 49.370388901000112 ], [ -124.555879083999983, 49.364910168000108 ], [ -124.556672656999964, 49.364920756000096 ], [ -124.556614121999985, 49.366798454000119 ], [ -124.557101154999927, 49.366804949 ], [ -124.556988993999937, 49.370403603000121 ], [ -124.555886756999925, 49.370388901000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38068416", "BldgCostT": "23811666", "sL_LossRatio": "0.770103754918099", "sL_AssetLoss": "65548.7", "sL_BldgLoss": "50479.3", "sL_StrLoss": "34137.3", "sL_NStrLoss": "16342", "sL_ContLoss": "15069.4", "geom_point": "0101000020E61000007E3CFC4E36235FC0A9C40AF127AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.555878808999978, 49.364713594000122 ], [ -124.555877693999932, 49.3639173 ], [ -124.553367336999912, 49.363912981000105 ], [ -124.5508467699999, 49.363908610000081 ], [ -124.550390915999955, 49.363907799000096 ], [ -124.548588043000038, 49.3639047570001 ], [ -124.545703487999901, 49.363899806000049 ], [ -124.541972261999916, 49.363985990000074 ], [ -124.542083943999984, 49.360439096000071 ], [ -124.542162520999952, 49.360440155000092 ], [ -124.542175864999948, 49.360016298000033 ], [ -124.542393583999981, 49.360019231000102 ], [ -124.542462880999906, 49.357817598000096 ], [ -124.542545279999928, 49.357818708000096 ], [ -124.542560907000038, 49.357322200000056 ], [ -124.543180326999945, 49.357330542000042 ], [ -124.543201118999974, 49.35666961400009 ], [ -124.544413547999966, 49.356685933000115 ], [ -124.544415475000037, 49.356624644000114 ], [ -124.54567155399999, 49.356641537000037 ], [ -124.549915915999961, 49.35669850900014 ], [ -124.549915755999962, 49.356703596000074 ], [ -124.550698784999952, 49.356714089000064 ], [ -124.550698389, 49.356726782000116 ], [ -124.550767285999925, 49.356727705 ], [ -124.551518656, 49.356737768000087 ], [ -124.551518024999979, 49.356757968000053 ], [ -124.552375626, 49.356769446000101 ], [ -124.552351140999917, 49.357552733000091 ], [ -124.553061047999947, 49.357562230000063 ], [ -124.553057343999953, 49.357680775000048 ], [ -124.554368105999956, 49.35769829700012 ], [ -124.554349776999928, 49.358285397000081 ], [ -124.558141801999909, 49.358336000000115 ], [ -124.558120330999955, 49.359025564000049 ], [ -124.559486891999981, 49.359043767000109 ], [ -124.559374936000026, 49.362642466000068 ], [ -124.557637882999956, 49.362619325000054 ], [ -124.557612911999968, 49.363420907000034 ], [ -124.557427856999965, 49.36341844 ], [ -124.557386878999978, 49.364733710000088 ], [ -124.555878808999978, 49.364713594000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26118083", "BldgCostT": "16538333", "sL_LossRatio": "0.923776314817226", "sL_AssetLoss": "28420.3", "sL_BldgLoss": "26254", "sL_StrLoss": "20402", "sL_NStrLoss": "5852", "sL_ContLoss": "2166.3", "geom_point": "0101000020E610000011F3B4151E275FC05F39ADA175AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.617984019999966, 49.355958122000061 ], [ -124.617975169999951, 49.355688378000131 ], [ -124.617149283999979, 49.355699938000058 ], [ -124.617131592999911, 49.35516044900006 ], [ -124.61630571499991, 49.355172003000057 ], [ -124.616296873999929, 49.354902259 ], [ -124.615883937999939, 49.354908033000086 ], [ -124.615848582999973, 49.353829056000109 ], [ -124.615435656999921, 49.353834828000117 ], [ -124.61541798399999, 49.353295339000049 ], [ -124.613353364999952, 49.353324180000058 ], [ -124.613362190999936, 49.353593926000066 ], [ -124.611710484999904, 49.353616973000044 ], [ -124.61169285299999, 49.353077482000053 ], [ -124.611279930999913, 49.353083241000057 ], [ -124.61125349299995, 49.352274005000041 ], [ -124.61249223799993, 49.352256727000018 ], [ -124.612483421, 49.351986983000081 ], [ -124.613309244999968, 49.35197545700003 ], [ -124.613291597999975, 49.351435967000072 ], [ -124.61370450599999, 49.351430202000124 ], [ -124.613695681999971, 49.351160458000024 ], [ -124.614108585999986, 49.351154691 ], [ -124.614064447999951, 49.34980596700013 ], [ -124.61034839300001, 49.349857809000099 ], [ -124.610401238999955, 49.351476281000053 ], [ -124.60916251, 49.351493535000031 ], [ -124.609171309999979, 49.351763281000153 ], [ -124.606693836999952, 49.351797752000088 ], [ -124.606685050999914, 49.35152800600008 ], [ -124.604207584999983, 49.351562423000097 ], [ -124.60418126499998, 49.350753184000062 ], [ -124.604594169000023, 49.350747453000089 ], [ -124.604550290999924, 49.34939872200011 ], [ -124.604963184999988, 49.349392988000041 ], [ -124.604910523999934, 49.34777451100004 ], [ -124.605323402999929, 49.34776877700012 ], [ -124.605297065999977, 49.346959539000082 ], [ -124.60612281100002, 49.346948065000092 ], [ -124.606114028999983, 49.346678319000048 ], [ -124.607352635999973, 49.346661098 ], [ -124.607273536999926, 49.344233384000056 ], [ -124.609750629999937, 49.344198905000027 ], [ -124.609759431999976, 49.344468651000049 ], [ -124.610172281999937, 49.344462899000114 ], [ -124.610181086999916, 49.344732644000068 ], [ -124.610593938999898, 49.344726892000075 ], [ -124.610611550999963, 49.345266383000045 ], [ -124.611024408999953, 49.345260627000066 ], [ -124.611042028999918, 49.345800119000067 ], [ -124.611454887999912, 49.345794361000124 ], [ -124.61146370199998, 49.346064108000043 ], [ -124.61187656499996, 49.346058350000092 ], [ -124.611885377999926, 49.346328094000114 ], [ -124.612298244999948, 49.3463223360001 ], [ -124.612315877999933, 49.34686182600008 ], [ -124.613141617999958, 49.346850302000128 ], [ -124.613150438999952, 49.347120047000061 ], [ -124.614389055999979, 49.347102751000115 ], [ -124.614371397999946, 49.346563261000092 ], [ -124.614784264999969, 49.346557492000045 ], [ -124.614748946999953, 49.345478512000078 ], [ -124.615161804999957, 49.345472743000037 ], [ -124.615099983999926, 49.343584528000115 ], [ -124.614687142999941, 49.343590297000105 ], [ -124.614678313999931, 49.343320553000062 ], [ -124.614265472999932, 49.343326320000124 ], [ -124.614256646999976, 49.343056575000077 ], [ -124.612605295999956, 49.343079631000059 ], [ -124.612578843999955, 49.342270395000035 ], [ -124.611340347999942, 49.342287671000065 ], [ -124.611331537999945, 49.342017926000011 ], [ -124.610918708999961, 49.342023680000104 ], [ -124.610892285999981, 49.341214444000087 ], [ -124.610479463, 49.341220198000016 ], [ -124.610453047999954, 49.340410961000096 ], [ -124.610865865999969, 49.340405207000089 ], [ -124.610857057999922, 49.340135461000017 ], [ -124.612508313999939, 49.340112431000144 ], [ -124.61249068199993, 49.339572940000139 ], [ -124.613729109999937, 49.339555653000019 ], [ -124.613720287999953, 49.339285907000068 ], [ -124.6141330949999, 49.339280142000085 ], [ -124.614115443999964, 49.338740651000123 ], [ -124.615216646999926, 49.338725263000079 ], [ -124.615353849999963, 49.338723346000151 ], [ -124.615360355999925, 49.338922056000094 ], [ -124.61541566899993, 49.340611562000056 ], [ -124.615002851999989, 49.340617332000114 ], [ -124.615038170999981, 49.341696313000121 ], [ -124.615450996999982, 49.34169054300002 ], [ -124.615459829999907, 49.34196028700007 ], [ -124.615872657999944, 49.341954516000087 ], [ -124.615890326999988, 49.342494005000134 ], [ -124.616303159999958, 49.34248823100009 ], [ -124.616311997999944, 49.342757976000051 ], [ -124.61672483199996, 49.342752202000057 ], [ -124.616742510999984, 49.343291692000051 ], [ -124.617155351999926, 49.343285915000081 ], [ -124.617164183999989, 49.343555361000035 ], [ -124.6172120899999, 49.345016733000115 ], [ -124.615535216999973, 49.345492714000088 ], [ -124.615492726999932, 49.345661016000072 ], [ -124.614905093999965, 49.347988862000129 ], [ -124.614883691999978, 49.34807364800006 ], [ -124.614830956, 49.34828241600011 ], [ -124.614658694999932, 49.348964808000026 ], [ -124.614658329999912, 49.349003307 ], [ -124.614646086999954, 49.350307494000035 ], [ -124.61469303299998, 49.350637071000101 ], [ -124.614763190999923, 49.351129908000068 ], [ -124.614904486999976, 49.351554692000107 ], [ -124.615329900999981, 49.352278385 ], [ -124.615582317999937, 49.352584783000118 ], [ -124.61582901099996, 49.352884196000083 ], [ -124.617179697000012, 49.354361295000068 ], [ -124.618165693999941, 49.355431513000035 ], [ -124.618520632999932, 49.35574735100009 ], [ -124.618528898999955, 49.355754699000073 ], [ -124.618779153999981, 49.355946988000028 ], [ -124.617984019999966, 49.355958122000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.932906303922154", "sL_AssetLoss": "6363.34", "sL_BldgLoss": "5936.4", "sL_StrLoss": "4481.8", "sL_NStrLoss": "1454.6", "sL_ContLoss": "426.94", "geom_point": "0101000020E6100000909F11959B235FC0C587024B68AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.553599420999973, 49.348407912000035 ], [ -124.553696395, 49.345302277000073 ], [ -124.559190319999942, 49.34554240100011 ], [ -124.559098900999956, 49.348481311000064 ], [ -124.553599420999973, 49.348407912000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24214167", "BldgCostT": "16016667", "sL_LossRatio": "0.753378579108872", "sL_AssetLoss": "52174.3", "sL_BldgLoss": "39307", "sL_StrLoss": "27696", "sL_NStrLoss": "11611", "sL_ContLoss": "12867.3", "geom_point": "0101000020E61000002682618E18235FC021F9CE58C9AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.545514303999951, 49.354162599000091 ], [ -124.54554699, 49.353121797000036 ], [ -124.542524116999985, 49.353081113 ], [ -124.542637358, 49.34948238000009 ], [ -124.542945382999932, 49.349486530000057 ], [ -124.542968675999944, 49.348746057000042 ], [ -124.543016575999985, 49.347223284000123 ], [ -124.544104071999982, 49.34723792700003 ], [ -124.544184277999932, 49.344686005000057 ], [ -124.547481374999947, 49.344730335000101 ], [ -124.547487970999967, 49.344519966000078 ], [ -124.552955461999943, 49.345269871000042 ], [ -124.552965842, 49.345270325000037 ], [ -124.552909175999929, 49.347084270000025 ], [ -124.550505398999974, 49.347052083000023 ], [ -124.54961190600001, 49.347040105000062 ], [ -124.549603283999943, 49.347315475000123 ], [ -124.550074152999954, 49.347321788000052 ], [ -124.55314442699995, 49.347362901000032 ], [ -124.553032005999938, 49.350961656 ], [ -124.549808213999981, 49.350918484000054 ], [ -124.548094970999941, 49.350895503000089 ], [ -124.548087282999958, 49.351140734000126 ], [ -124.548770859999962, 49.351149907000035 ], [ -124.548772121999889, 49.351109637 ], [ -124.549857907999979, 49.351124199000012 ], [ -124.554271915999934, 49.351183282000143 ], [ -124.554159571999932, 49.354782017000048 ], [ -124.550998706999962, 49.354739727000023 ], [ -124.550997445999911, 49.354779996000026 ], [ -124.550930355, 49.35477909800008 ], [ -124.54564055899999, 49.354708113000108 ], [ -124.54549723099997, 49.354706186000051 ], [ -124.545514303999951, 49.354162599000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14031250", "BldgCostT": "9205000", "sL_LossRatio": "0.931668844295824", "sL_AssetLoss": "15804.65", "sL_BldgLoss": "14724.7", "sL_StrLoss": "11570.6", "sL_NStrLoss": "3154.1", "sL_ContLoss": "1079.95", "geom_point": "0101000020E6100000E71EB704C5205FC08C56414E10AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.510286005999959, 49.354299125000097 ], [ -124.510303933999978, 49.353741785000075 ], [ -124.508826996, 49.3537214360001 ], [ -124.508942857999941, 49.350122743000085 ], [ -124.514442469999921, 49.350198412000076 ], [ -124.514408519999947, 49.351256905000099 ], [ -124.515885380999947, 49.351277178000018 ], [ -124.515863276999966, 49.351966986000086 ], [ -124.515702806999968, 49.351976989000086 ], [ -124.515673404999959, 49.35203689500004 ], [ -124.515859170999931, 49.352095112000029 ], [ -124.515837782999981, 49.352762533000053 ], [ -124.513830097, 49.353796900000091 ], [ -124.513185588999988, 49.353913700000057 ], [ -124.512083680999964, 49.353909396000105 ], [ -124.510773387999905, 49.354251197000174 ], [ -124.510286005999959, 49.354299125000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.948040958173697", "sL_AssetLoss": "3651.53", "sL_BldgLoss": "3461.8", "sL_StrLoss": "2910", "sL_NStrLoss": "551.8", "sL_ContLoss": "189.73", "geom_point": "0101000020E61000007EA8978CE1205FC0C66030455AAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.510269885999946, 49.35480027100008 ], [ -124.510278485999919, 49.354532938000048 ], [ -124.510451784999972, 49.354551705000056 ], [ -124.511912285, 49.354154403000102 ], [ -124.514123582999957, 49.353990601000142 ], [ -124.51462719599995, 49.353749911000072 ], [ -124.515758193999957, 49.352953801000105 ], [ -124.515831970999955, 49.352943902000057 ], [ -124.515770054999919, 49.354875872000086 ], [ -124.510269885999946, 49.35480027100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217639751", "BldgCostT": "141475001", "sL_LossRatio": "0.877347425810827", "sL_AssetLoss": "423365.35", "sL_BldgLoss": "371438.5", "sL_StrLoss": "275348.2", "sL_NStrLoss": "96090.3", "sL_ContLoss": "51926.85", "geom_point": "0101000020E6100000A3B338089F205FC0153A652431AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.52401179899999, 49.367929014000033 ], [ -124.524076055999956, 49.365913378000101 ], [ -124.523257152000028, 49.365902205000069 ], [ -124.523255596999945, 49.365950956000063 ], [ -124.522342727999941, 49.365938494000147 ], [ -124.522293948999916, 49.367466797000056 ], [ -124.524009454999941, 49.36749021 ], [ -124.523995513999964, 49.367927475000073 ], [ -124.523867716999959, 49.367915397000026 ], [ -124.523067082999916, 49.367866591000102 ], [ -124.522382285999981, 49.367764582000113 ], [ -124.521714385999957, 49.367565591000073 ], [ -124.519447187, 49.366388763000032 ], [ -124.518897310999961, 49.366158067000093 ], [ -124.517291632, 49.365616323000019 ], [ -124.517002494999971, 49.365518767000033 ], [ -124.513953186999942, 49.364489875000096 ], [ -124.513414185999963, 49.3643079960001 ], [ -124.51254348399999, 49.364000518000068 ], [ -124.511788492999983, 49.363733897000024 ], [ -124.511484387999971, 49.363563203000062 ], [ -124.5112077799999, 49.363325396000107 ], [ -124.511173684999932, 49.363296103000074 ], [ -124.510813687999956, 49.362854611000039 ], [ -124.510582092999982, 49.362633960000053 ], [ -124.510286415999971, 49.362352294000118 ], [ -124.510029886999931, 49.362155291000128 ], [ -124.509529502999925, 49.361929697000015 ], [ -124.50851871199994, 49.361573705000055 ], [ -124.507897405999969, 49.361427489000114 ], [ -124.507460278999986, 49.361413304000088 ], [ -124.507040108999945, 49.361474996000069 ], [ -124.506414202999935, 49.361636268000034 ], [ -124.50571018799991, 49.361817686000101 ], [ -124.505641238999942, 49.36183544400005 ], [ -124.505568085999954, 49.361854306000033 ], [ -124.50497063399996, 49.361980023000122 ], [ -124.50478539199996, 49.362018991000099 ], [ -124.504403516999943, 49.362052285000075 ], [ -124.504225683999948, 49.362067768 ], [ -124.504007115, 49.362086817000012 ], [ -124.503858191999939, 49.362099810000046 ], [ -124.503707019999979, 49.362095 ], [ -124.502438910999956, 49.36216749800014 ], [ -124.500896295999951, 49.362216294000049 ], [ -124.500695079999943, 49.362227206000099 ], [ -124.499625520999956, 49.362285098000079 ], [ -124.498140036, 49.362312355000022 ], [ -124.497838592999983, 49.362317913 ], [ -124.497670783999979, 49.362313249000046 ], [ -124.49634299399996, 49.362276494000099 ], [ -124.495290489, 49.362189791000098 ], [ -124.494798410999962, 49.362174005000099 ], [ -124.49360171299999, 49.362208594000023 ], [ -124.492966005999961, 49.36229249100009 ], [ -124.49255470699994, 49.362416394000029 ], [ -124.491666693999917, 49.362719930000033 ], [ -124.49054277099999, 49.363104120000052 ], [ -124.490269932999951, 49.363197360000051 ], [ -124.490234435999952, 49.36320949300007 ], [ -124.490097195999923, 49.363172499000036 ], [ -124.488908098999957, 49.363017187000068 ], [ -124.488571090999983, 49.362815014000041 ], [ -124.487577882999972, 49.361846505000109 ], [ -124.485393208999966, 49.361587285000063 ], [ -124.485058803999962, 49.361420703000135 ], [ -124.48473119599997, 49.36109169500007 ], [ -124.484641592999964, 49.360876596000089 ], [ -124.484650719999976, 49.359173204000108 ], [ -124.484684628999915, 49.359171996000129 ], [ -124.485836637999952, 49.359151208000121 ], [ -124.485785971999974, 49.360700616000074 ], [ -124.486056710999918, 49.360704404000103 ], [ -124.486081793999944, 49.359937201000015 ], [ -124.48638458299996, 49.35994143800005 ], [ -124.486396302999964, 49.3595829080001 ], [ -124.486600283999906, 49.359585762000108 ], [ -124.486605904, 49.359413813000096 ], [ -124.486915159999967, 49.359418138000052 ], [ -124.486920300999941, 49.359260821000127 ], [ -124.487375906999944, 49.359267192000097 ], [ -124.487382693999947, 49.359059432000095 ], [ -124.487719658999964, 49.359064142000094 ], [ -124.487721783999945, 49.358999039 ], [ -124.487904123999925, 49.359001588000076 ], [ -124.487931423999896, 49.358165543000098 ], [ -124.48846667399999, 49.358173022000109 ], [ -124.488467704999962, 49.358141457000038 ], [ -124.488545175999946, 49.358142538000052 ], [ -124.488554017999931, 49.357871657000018 ], [ -124.488662832999935, 49.357873178000027 ], [ -124.488677337999945, 49.357428759000136 ], [ -124.489242815999944, 49.357436657000108 ], [ -124.48924451799995, 49.357384473000067 ], [ -124.489768431999948, 49.357391788 ], [ -124.48981778199996, 49.355878483000048 ], [ -124.494210600999921, 49.355939716000151 ], [ -124.49423819499999, 49.355091035 ], [ -124.490853232999939, 49.355043866000081 ], [ -124.490970493999953, 49.35144520000005 ], [ -124.495106741999948, 49.351502822000057 ], [ -124.495189582999942, 49.351683404000028 ], [ -124.495622993, 49.351929799000082 ], [ -124.496446602000034, 49.352249722000096 ], [ -124.496407975999929, 49.353439507000139 ], [ -124.497205875999924, 49.353450595000083 ], [ -124.498035793999989, 49.354254107000031 ], [ -124.498526804999983, 49.354608692000077 ], [ -124.499087097999904, 49.354879291000017 ], [ -124.500263912999941, 49.355125701000055 ], [ -124.501175523999933, 49.355158405000047 ], [ -124.501461553999917, 49.35514683300007 ], [ -124.501452902999944, 49.355414189000037 ], [ -124.502092456999947, 49.355423047000066 ], [ -124.502081491999959, 49.355762021 ], [ -124.504052705999968, 49.355789297000079 ], [ -124.503988265, 49.35778408900012 ], [ -124.508775450999963, 49.357850180000042 ], [ -124.50872800599997, 49.359323479000047 ], [ -124.509916496999907, 49.359339854000062 ], [ -124.50990367199995, 49.359738391000079 ], [ -124.510525917, 49.359746960000031 ], [ -124.510567909999963, 49.3584414070001 ], [ -124.510693114999938, 49.35844313000004 ], [ -124.510715444999946, 49.357748809000022 ], [ -124.514931861999983, 49.357806768000074 ], [ -124.514932073999901, 49.357800113000046 ], [ -124.515844158999968, 49.357812629000101 ], [ -124.515844438, 49.35780393600006 ], [ -124.521344973999973, 49.357879254000068 ], [ -124.521277217, 49.360001173000128 ], [ -124.521291002999988, 49.360001361000116 ], [ -124.521256819999948, 49.361071827000053 ], [ -124.522162617999982, 49.361084204000051 ], [ -124.522201567999957, 49.3598638 ], [ -124.527702357999914, 49.359938794000072 ], [ -124.527643925999982, 49.361776474000095 ], [ -124.530700256999921, 49.361818021000012 ], [ -124.530586056999979, 49.365416675000084 ], [ -124.529596147999925, 49.365403228000055 ], [ -124.529532175999961, 49.367417513000127 ], [ -124.529928849999962, 49.367412263000041 ], [ -124.52988698899999, 49.366063489000084 ], [ -124.531126130999908, 49.366047079000083 ], [ -124.531092617999946, 49.364968060000074 ], [ -124.535636024999988, 49.364907783000014 ], [ -124.535644426999937, 49.36517753700015 ], [ -124.535656336999963, 49.365177379000052 ], [ -124.535655748999929, 49.365600752000063 ], [ -124.53565537799993, 49.365844687000077 ], [ -124.535654242999911, 49.366667206000038 ], [ -124.535652150999937, 49.368174487000047 ], [ -124.535625115999963, 49.368617786000108 ], [ -124.53560063899999, 49.369018910000044 ], [ -124.530110744999945, 49.368504165000068 ], [ -124.528407421999944, 49.368344392000097 ], [ -124.524459415999928, 49.367971318000102 ], [ -124.52401179899999, 49.367929014000033 ] ], [ [ -124.529524160999969, 49.367687486000065 ], [ -124.529523883999943, 49.367678562000023 ], [ -124.52952360099999, 49.367687493000048 ], [ -124.529524160999969, 49.367687486000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15876250", "BldgCostT": "9475000", "sL_LossRatio": "0.845497985957361", "sL_AssetLoss": "24254.7", "sL_BldgLoss": "20507.3", "sL_StrLoss": "13692", "sL_NStrLoss": "6815.3", "sL_ContLoss": "3747.4", "geom_point": "0101000020E6100000C081E22A031F5FC017B3A9E346AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.481538973999974, 49.359231150000063 ], [ -124.483426497999957, 49.359157491000083 ], [ -124.484153132999964, 49.35918132400009 ], [ -124.484379797999978, 49.359179755000063 ], [ -124.48425889799995, 49.360009305000133 ], [ -124.484259481999942, 49.360936493000025 ], [ -124.484633698999957, 49.361507602000096 ], [ -124.485138574999937, 49.361779596000126 ], [ -124.48750458799995, 49.362181190000072 ], [ -124.488635784999971, 49.363165293000108 ], [ -124.489686612999932, 49.363396733000101 ], [ -124.489576964999955, 49.363434206000051 ], [ -124.489271012999936, 49.363538794000064 ], [ -124.488852700999956, 49.363625689000116 ], [ -124.488241192999979, 49.363683815000044 ], [ -124.487215797999966, 49.363694603000042 ], [ -124.486527004, 49.363635500000051 ], [ -124.48606940799999, 49.363512033000106 ], [ -124.48593219299994, 49.363451398000038 ], [ -124.485806080999922, 49.363381041000075 ], [ -124.485455410999961, 49.36316965500005 ], [ -124.485203261, 49.363028971000091 ], [ -124.485077458999911, 49.362967623000038 ], [ -124.484839616, 49.362844737000025 ], [ -124.484647061999951, 49.362764418000047 ], [ -124.48442811299999, 49.362605297000052 ], [ -124.483833509999911, 49.362274682000056 ], [ -124.483527475999921, 49.362143835000026 ], [ -124.483415588999961, 49.362095999000069 ], [ -124.483270706999974, 49.36204045700002 ], [ -124.483201444999963, 49.362013908000094 ], [ -124.483095642999956, 49.361973338000048 ], [ -124.481551331999952, 49.361381340000044 ], [ -124.481545617999956, 49.360925788000067 ], [ -124.481541104999962, 49.360561195000095 ], [ -124.481531182999916, 49.359576855000107 ], [ -124.481528812999954, 49.359341490000084 ], [ -124.481538973999974, 49.359231150000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11644167", "BldgCostT": "7766667", "sL_LossRatio": "0.887517614901202", "sL_AssetLoss": "30357.82", "sL_BldgLoss": "26943.1", "sL_StrLoss": "21143", "sL_NStrLoss": "5800.1", "sL_ContLoss": "3414.72", "geom_point": "0101000020E61000000E79E328E91E5FC0472C941223AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.485112035, 49.349525994000018 ], [ -124.48551631, 49.349401779000047 ], [ -124.485455841999936, 49.351250937000053 ], [ -124.485403662999886, 49.351250206000032 ], [ -124.485324924999986, 49.353657815000091 ], [ -124.484779086999936, 49.354003394000102 ], [ -124.484073336999984, 49.354741004000118 ], [ -124.479788833999947, 49.354680881000078 ], [ -124.47986624, 49.352322700000116 ], [ -124.483035924999967, 49.351574236000062 ], [ -124.482963343999941, 49.35129234300009 ], [ -124.48296310399999, 49.351292224000126 ], [ -124.482212841999981, 49.35086169900007 ], [ -124.482707208999955, 49.350394454000089 ], [ -124.483073679999947, 49.350385952000053 ], [ -124.483197463999915, 49.350383081000082 ], [ -124.48368258, 49.350371824000021 ], [ -124.483934992999963, 49.350134972000077 ], [ -124.484186386999951, 49.349899143000123 ], [ -124.484742289999957, 49.349639599000078 ], [ -124.485112035, 49.349525994000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.946046128500824", "sL_AssetLoss": "2428", "sL_BldgLoss": "2297", "sL_StrLoss": "1808", "sL_NStrLoss": "489", "sL_ContLoss": "131", "geom_point": "0101000020E61000003F10ACECF31F5FC0B2C267CA52AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.50030039499994, 49.354936297000066 ], [ -124.499132879999962, 49.354591599000152 ], [ -124.497653081999943, 49.353467893000094 ], [ -124.497648015999928, 49.353456736000091 ], [ -124.499792826999951, 49.353486502000131 ], [ -124.499756224999942, 49.354616374000052 ], [ -124.501025849999934, 49.354633973000027 ], [ -124.501016780999976, 49.354914153000081 ], [ -124.500711215999942, 49.354867897000069 ], [ -124.50030039499994, 49.354936297000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "439928852", "BldgCostT": "290146546", "sL_LossRatio": "0.888317712762807", "sL_AssetLoss": "518082.656", "sL_BldgLoss": "460222", "sL_StrLoss": "289510.5", "sL_NStrLoss": "170711.5", "sL_ContLoss": "57860.656", "geom_point": "0101000020E6100000DB72BA6E421E5FC0037798DDB0AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.475890376999956, 49.363072395000117 ], [ -124.475742494999906, 49.362989398000131 ], [ -124.475663691999941, 49.362990404000051 ], [ -124.475662313999976, 49.362944398000074 ], [ -124.475413340999964, 49.36280466400008 ], [ -124.47531547499996, 49.362724985000092 ], [ -124.475242587999986, 49.362725915000105 ], [ -124.475242402999982, 49.362719719000062 ], [ -124.475241708999988, 49.362696511000088 ], [ -124.475147089999922, 49.362695177000084 ], [ -124.47448839599997, 49.362141293000086 ], [ -124.473633693999972, 49.361630103000039 ], [ -124.473555273999949, 49.361569442000103 ], [ -124.47355108, 49.361429102000081 ], [ -124.473506723999961, 49.361398735000101 ], [ -124.473337384, 49.361400893000109 ], [ -124.473132321, 49.361242264000062 ], [ -124.473129275999966, 49.361140318000025 ], [ -124.472732798999971, 49.360868868000097 ], [ -124.472708004000012, 49.36086918400008 ], [ -124.472707475999968, 49.360851532000027 ], [ -124.472436439999981, 49.360665963000059 ], [ -124.472309821999914, 49.360604393000138 ], [ -124.47230778600003, 49.360604418000037 ], [ -124.472111023999929, 49.360452203000108 ], [ -124.471449630999984, 49.360237287000075 ], [ -124.471448079999945, 49.360185344000065 ], [ -124.471228237999952, 49.36007843600003 ], [ -124.470970865999945, 49.36008171200006 ], [ -124.47061521099999, 49.359966138000118 ], [ -124.470613940999954, 49.359923580000036 ], [ -124.470200057999932, 49.359831227000022 ], [ -124.469522712999947, 49.359611111000085 ], [ -124.469404725999979, 49.359561904000024 ], [ -124.469372555999897, 49.359562313 ], [ -124.468968786999966, 49.35943109500009 ], [ -124.46894621, 49.359417489000087 ], [ -124.468944798, 49.359370091000123 ], [ -124.468776785999964, 49.359300021000109 ], [ -124.468751817999973, 49.359300338000018 ], [ -124.466541800999934, 49.357968394000096 ], [ -124.4664210299999, 49.357863202000033 ], [ -124.466420614999947, 49.357849269000063 ], [ -124.466279960999927, 49.357712534000072 ], [ -124.466248507, 49.357712934000091 ], [ -124.465996900999983, 49.357493782000169 ], [ -124.465996128999947, 49.357467797000041 ], [ -124.465725809999938, 49.357257657000069 ], [ -124.465127494999962, 49.356736499000071 ], [ -124.463474586999908, 49.355776496000097 ], [ -124.462232305000015, 49.355198307000158 ], [ -124.460702603999906, 49.354678512000127 ], [ -124.459676392999981, 49.354449187000093 ], [ -124.458431203999936, 49.354256906000046 ], [ -124.458110253999962, 49.35422919100008 ], [ -124.456897904999977, 49.354124490000054 ], [ -124.453433658999941, 49.354181969000123 ], [ -124.453511107999987, 49.353970746000059 ], [ -124.45542276599997, 49.353866530000055 ], [ -124.456336302999929, 49.353816691000127 ], [ -124.457226776999931, 49.353804186000033 ], [ -124.457865392999921, 49.353835785000129 ], [ -124.458080777999939, 49.353869211000088 ], [ -124.458638632999978, 49.353955717000133 ], [ -124.459908710999983, 49.35423483200011 ], [ -124.461301365999958, 49.35459218000004 ], [ -124.462993641999944, 49.35520759700006 ], [ -124.46342955199999, 49.355420810000069 ], [ -124.46431642, 49.355973443000025 ], [ -124.466432006999923, 49.35747597700005 ], [ -124.466801768999972, 49.357692076000021 ], [ -124.467279581999946, 49.357971331000023 ], [ -124.467331683999959, 49.357935237000085 ], [ -124.467403814999969, 49.357694779000092 ], [ -124.46747742300002, 49.357449318000114 ], [ -124.467480088999963, 49.35744039800003 ], [ -124.467383979999937, 49.357327573000113 ], [ -124.467375061999945, 49.357317065000139 ], [ -124.466454367999944, 49.356236245000062 ], [ -124.466068503999978, 49.355783199000065 ], [ -124.466402108999944, 49.355679887000072 ], [ -124.466513783999986, 49.355547394000048 ], [ -124.466514938, 49.355199252000027 ], [ -124.466524798999956, 49.352181208000104 ], [ -124.46648792699996, 49.351928722000139 ], [ -124.466567698999967, 49.351942966000117 ], [ -124.466985492999981, 49.352017590000088 ], [ -124.467990876999977, 49.35206610000008 ], [ -124.468156853999972, 49.352096591000041 ], [ -124.468192910999932, 49.352103202000073 ], [ -124.468346424999964, 49.352131397000072 ], [ -124.468604902999971, 49.352216084000112 ], [ -124.469080900000023, 49.352506392000123 ], [ -124.469425369999968, 49.35248779500008 ], [ -124.469818301999936, 49.352546489000133 ], [ -124.46982445099999, 49.352533485000045 ], [ -124.470150680999936, 49.352574753000148 ], [ -124.470324076999987, 49.352596699000067 ], [ -124.47137751799994, 49.352729945000085 ], [ -124.47398528799999, 49.353100413000064 ], [ -124.475371412999948, 49.353222673000083 ], [ -124.47538116799997, 49.35354873100011 ], [ -124.476207071999951, 49.353538185000019 ], [ -124.476198322999934, 49.353245811000107 ], [ -124.476738598999944, 49.353224724000079 ], [ -124.47714655799993, 49.353160260000017 ], [ -124.477433194999975, 49.353097273000103 ], [ -124.477445929999959, 49.35352235400007 ], [ -124.476938682999915, 49.353528838000074 ], [ -124.476620025999949, 49.353532909000094 ], [ -124.476633066999952, 49.353968499000068 ], [ -124.476637039999957, 49.353970364000126 ], [ -124.476913940999978, 49.355560963000116 ], [ -124.476476239999926, 49.355532663000133 ], [ -124.476007739999972, 49.355564863000048 ], [ -124.475027581999953, 49.355538974000034 ], [ -124.47505696799999, 49.356521388000111 ], [ -124.473818032999986, 49.356537194000097 ], [ -124.473809972999959, 49.356267430000088 ], [ -124.473396995999948, 49.356272697000108 ], [ -124.473413115999946, 49.356812222000066 ], [ -124.473000135999882, 49.356817486000125 ], [ -124.473032368999966, 49.357896535000123 ], [ -124.47261937899998, 49.357901799000047 ], [ -124.472635489999945, 49.358441324000083 ], [ -124.472222496999933, 49.358446585000081 ], [ -124.47224527799996, 49.359209613000139 ], [ -124.472383684999954, 49.359254126000046 ], [ -124.472659659999948, 49.359250610000068 ], [ -124.47266244399998, 49.359343780000074 ], [ -124.472942539999963, 49.359433863000099 ], [ -124.473250740999944, 49.359454063000015 ], [ -124.47348827299993, 49.359327430000135 ], [ -124.473485662999934, 49.359240083000074 ], [ -124.473656192999925, 49.359237907000072 ], [ -124.473673443999957, 49.359228711000043 ], [ -124.473678537999945, 49.359074191000026 ], [ -124.473733468999953, 49.359074965000012 ], [ -124.473861238999973, 49.359023364000052 ], [ -124.473892300999978, 49.359021970000079 ], [ -124.473890600999979, 49.358965054000095 ], [ -124.47554259099995, 49.358943975000095 ], [ -124.475546625999968, 49.359078799 ], [ -124.475750451999957, 49.359103400000052 ], [ -124.477481900999976, 49.359127780000101 ], [ -124.478352083999965, 49.359140022000112 ], [ -124.478376189999977, 49.358406406000057 ], [ -124.479050867999916, 49.358415893000036 ], [ -124.479079210999927, 49.357552921000064 ], [ -124.480385326999965, 49.357571275000076 ], [ -124.4803860599999, 49.357548953000055 ], [ -124.484820988999957, 49.357611156000111 ], [ -124.484533291999981, 49.358126514000055 ], [ -124.484379797999978, 49.359179755000063 ], [ -124.484153132999964, 49.35918132400009 ], [ -124.483426497999957, 49.359157491000083 ], [ -124.481538973999974, 49.359231150000063 ], [ -124.481528812999954, 49.359341490000084 ], [ -124.481531182999916, 49.359576855000107 ], [ -124.481541104999962, 49.360561195000095 ], [ -124.481545617999956, 49.360925788000067 ], [ -124.481551331999952, 49.361381340000044 ], [ -124.481289150999913, 49.361303862000035 ], [ -124.480601561999919, 49.361100698000079 ], [ -124.479622474999985, 49.360960018000057 ], [ -124.479432230999976, 49.360937624000108 ], [ -124.478032614999961, 49.360772949000157 ], [ -124.4771760309999, 49.360671788000069 ], [ -124.476487426999967, 49.360567607000107 ], [ -124.475912369999946, 49.360482993000062 ], [ -124.4759418, 49.362012598000035 ], [ -124.476004399999965, 49.362222121000045 ], [ -124.475890376999956, 49.363072395000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.990157410368475", "sL_AssetLoss": "2814.3", "sL_BldgLoss": "2786.6", "sL_StrLoss": "2610", "sL_NStrLoss": "176.6", "sL_ContLoss": "27.7", "geom_point": "0101000020E610000098491628101F5FC0AF6A9C8FE3AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.485404674000037, 49.357619329000066 ], [ -124.485886506999947, 49.357626073000034 ], [ -124.485836637999952, 49.359151208000121 ], [ -124.484684628999915, 49.359171996000129 ], [ -124.484650719999976, 49.359173204000108 ], [ -124.48465210099998, 49.358915508000059 ], [ -124.484789701999944, 49.358473990000064 ], [ -124.485321223999961, 49.357837402000136 ], [ -124.485404674000037, 49.357619329000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17784251", "BldgCostT": "12265001", "sL_LossRatio": "0.93757742962979", "sL_AssetLoss": "32368.1", "sL_BldgLoss": "30347.6", "sL_StrLoss": "24120", "sL_NStrLoss": "6227.6", "sL_ContLoss": "2020.5", "geom_point": "0101000020E610000022B60D06CB1E5FC010B1C1C2C9AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.48007425, 49.347575118000044 ], [ -124.482307172, 49.34760647300002 ], [ -124.482144986999984, 49.350407527000115 ], [ -124.482212841999981, 49.35086169900007 ], [ -124.48296310399999, 49.351292224000126 ], [ -124.482963343999941, 49.35129234300009 ], [ -124.483035924999967, 49.351574236000062 ], [ -124.47986624, 49.352322700000116 ], [ -124.479906954999961, 49.351082223000105 ], [ -124.479959133999955, 49.351082957000074 ], [ -124.479979652999972, 49.350457756000011 ], [ -124.48007425, 49.347575118000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144115502", "BldgCostT": "95025002", "sL_LossRatio": "0.913444150360329", "sL_AssetLoss": "229605.51", "sL_BldgLoss": "209731.81", "sL_StrLoss": "170123.7", "sL_NStrLoss": "39608.11", "sL_ContLoss": "19873.7", "geom_point": "0101000020E6100000AADF2B3EEE1D5FC05FEFDD6AC6AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.476198322999934, 49.353245811000107 ], [ -124.476190580999955, 49.35298722600011 ], [ -124.475364021999951, 49.352975580000056 ], [ -124.475371412999948, 49.353222673000083 ], [ -124.47398528799999, 49.353100413000064 ], [ -124.47137751799994, 49.352729945000085 ], [ -124.470324076999987, 49.352596699000067 ], [ -124.470150680999936, 49.352574753000148 ], [ -124.46982445099999, 49.352533485000045 ], [ -124.469818301999936, 49.352546489000133 ], [ -124.469425369999968, 49.35248779500008 ], [ -124.469080900000023, 49.352506392000123 ], [ -124.468604902999971, 49.352216084000112 ], [ -124.468346424999964, 49.352131397000072 ], [ -124.468192910999932, 49.352103202000073 ], [ -124.468156853999972, 49.352096591000041 ], [ -124.467990876999977, 49.35206610000008 ], [ -124.466985492999981, 49.352017590000088 ], [ -124.466567698999967, 49.351942966000117 ], [ -124.46648792699996, 49.351928722000139 ], [ -124.464874738999981, 49.351640602000046 ], [ -124.464714102999949, 49.351611893000033 ], [ -124.463802501999965, 49.351516989000096 ], [ -124.463804321999959, 49.351302118000049 ], [ -124.463806791999929, 49.351015815000068 ], [ -124.46367418399997, 49.351074206000057 ], [ -124.462860412999973, 49.35101580400007 ], [ -124.46139188899997, 49.350997591000116 ], [ -124.45923867399992, 49.351134935000118 ], [ -124.458276494999922, 49.351196291000107 ], [ -124.456909507999981, 49.35127038500012 ], [ -124.456921369999961, 49.350551651000082 ], [ -124.456936599999949, 49.349632607000039 ], [ -124.456958908999965, 49.348342208000119 ], [ -124.456150733999948, 49.348334310000126 ], [ -124.455545398999931, 49.348328400000078 ], [ -124.454135978999929, 49.348313601000044 ], [ -124.45377571899999, 49.348310302000115 ], [ -124.453785505999917, 49.347112409000076 ], [ -124.454246962999946, 49.34725772600013 ], [ -124.454354841999987, 49.347256365000057 ], [ -124.454602565999934, 49.347253259000134 ], [ -124.454837079999919, 49.347268287000084 ], [ -124.455071030999974, 49.347265341000153 ], [ -124.455305299, 49.347271369000026 ], [ -124.455525511999923, 49.347268628000087 ], [ -124.455719080999955, 49.347270515000098 ], [ -124.455829490999974, 49.347280647000083 ], [ -124.456468679999915, 49.347244300000042 ], [ -124.457246921999968, 49.34724683700005 ], [ -124.457605077, 49.347248001000018 ], [ -124.458343219999946, 49.347250390000056 ], [ -124.459174557000011, 49.347252405000063 ], [ -124.459333497000017, 49.347252785000123 ], [ -124.459330791, 49.348366112000122 ], [ -124.459151098999925, 49.348364356000104 ], [ -124.458306401999963, 49.34835608500002 ], [ -124.458300083, 49.348888818000042 ], [ -124.458291120999931, 49.349643000000114 ], [ -124.460927085999927, 49.349662287000051 ], [ -124.461419612, 49.349665889000036 ], [ -124.462069975999924, 49.349670776000011 ], [ -124.463826204, 49.34968389000008 ], [ -124.463829837999953, 49.349475114000029 ], [ -124.463835992999933, 49.349123997000071 ], [ -124.463841621999975, 49.348803802000106 ], [ -124.463843966999917, 49.348574750000076 ], [ -124.463846001999968, 49.348380906000095 ], [ -124.463859298999964, 49.347526010000138 ], [ -124.463871811, 49.346648590000044 ], [ -124.463876921999926, 49.3463705 ], [ -124.463882656999928, 49.346002009000081 ], [ -124.463889109999911, 49.3455893940001 ], [ -124.462355394999946, 49.345594581000071 ], [ -124.462337210999948, 49.344692394000035 ], [ -124.461781598999934, 49.344025716000033 ], [ -124.461737117999917, 49.343751400000059 ], [ -124.462777722999988, 49.343642905000067 ], [ -124.462560546999953, 49.342769421000071 ], [ -124.46238357199999, 49.342465358000041 ], [ -124.462115661999917, 49.342167218000043 ], [ -124.461801225999977, 49.341903535000014 ], [ -124.46160037099996, 49.341740450000025 ], [ -124.461523777999943, 49.341628144000033 ], [ -124.46149808399997, 49.34159048300009 ], [ -124.461494656999946, 49.341581232000117 ], [ -124.461806839999966, 49.341577283000078 ], [ -124.461814831999945, 49.341847047000044 ], [ -124.462640545999989, 49.341836600000086 ], [ -124.462656540999944, 49.34237612900003 ], [ -124.463069402999935, 49.342370903000102 ], [ -124.463093401999927, 49.343180195000024 ], [ -124.463506268999978, 49.343174968000078 ], [ -124.463530276999933, 49.343984260000056 ], [ -124.463117401999952, 49.343989488000084 ], [ -124.46312082299994, 49.344104864000037 ], [ -124.463125403000021, 49.344259252000022 ], [ -124.463286225000033, 49.344257216000095 ], [ -124.463538278999977, 49.344254025000104 ], [ -124.463545887999913, 49.344510505000095 ], [ -124.463546282999971, 49.34452378900005 ], [ -124.463556133999958, 49.344523664000029 ], [ -124.463959160999977, 49.344518559000072 ], [ -124.463975170999944, 49.345058088000087 ], [ -124.464388054999944, 49.345052856000045 ], [ -124.464396061999949, 49.34532262000004 ], [ -124.464808948000012, 49.34531738800009 ], [ -124.464824968999935, 49.345856916000095 ], [ -124.46565074899999, 49.34584644600006 ], [ -124.46569082399999, 49.34719526500011 ], [ -124.466103724999968, 49.347190028000071 ], [ -124.466111741999953, 49.347459791000084 ], [ -124.466937548999965, 49.347449312000087 ], [ -124.466961615999963, 49.348258603000033 ], [ -124.467787434999963, 49.34824811700004 ], [ -124.467851655999979, 49.350406224000089 ], [ -124.468264581999961, 49.350400979000021 ], [ -124.468269035999953, 49.350550539000032 ], [ -124.468296703999926, 49.351480032 ], [ -124.468709641000018, 49.351474785000036 ], [ -124.468685543999968, 49.350665496000069 ], [ -124.47075019099999, 49.350639238000078 ], [ -124.470782367999931, 49.351718291000097 ], [ -124.471608243999981, 49.351707778000041 ], [ -124.471616292999926, 49.351977541000061 ], [ -124.47202923199994, 49.351972282000062 ], [ -124.472037283999924, 49.352242045000054 ], [ -124.472533602999945, 49.352235722000039 ], [ -124.472588434999963, 49.350573086000068 ], [ -124.472634753999927, 49.349168538000086 ], [ -124.476339147999951, 49.349220783000085 ], [ -124.478134192999974, 49.349246052000126 ], [ -124.478128668999901, 49.349414182000032 ], [ -124.47935445799996, 49.349431422000102 ], [ -124.47932026, 49.350473045000051 ], [ -124.479254785999913, 49.35246706900012 ], [ -124.47751049799993, 49.352878889000088 ], [ -124.477509885999964, 49.352878965000045 ], [ -124.477500955999986, 49.353005677000091 ], [ -124.47743042099998, 49.353004684000069 ], [ -124.477433194999975, 49.353097273000103 ], [ -124.47714655799993, 49.353160260000017 ], [ -124.476738598999944, 49.353224724000079 ], [ -124.476198322999934, 49.353245811000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127701304", "BldgCostT": "86783747", "sL_LossRatio": "0.919143416655714", "sL_AssetLoss": "272379.8", "sL_BldgLoss": "250356.1", "sL_StrLoss": "191119", "sL_NStrLoss": "59237.1", "sL_ContLoss": "22023.7", "geom_point": "0101000020E61000006104A636651D5FC0A7A346951FAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.457865392999921, 49.353835785000129 ], [ -124.457226776999931, 49.353804186000033 ], [ -124.456336302999929, 49.353816691000127 ], [ -124.45542276599997, 49.353866530000055 ], [ -124.453511107999987, 49.353970746000059 ], [ -124.451604449999934, 49.353683358000112 ], [ -124.451448848999988, 49.353605525000049 ], [ -124.451315837, 49.353468601000124 ], [ -124.451266245999989, 49.35330587300006 ], [ -124.45126618099998, 49.353102489000079 ], [ -124.451270801999939, 49.352552609000057 ], [ -124.452721701999934, 49.352565191000124 ], [ -124.452712293999966, 49.351403090000076 ], [ -124.452768062999922, 49.351010521000049 ], [ -124.452744979999949, 49.350838290000127 ], [ -124.452757927999954, 49.350271505000144 ], [ -124.452771780999939, 49.34966410300013 ], [ -124.45278329599995, 49.349210057000043 ], [ -124.452793063999962, 49.348823620000054 ], [ -124.452806316999954, 49.348300907000095 ], [ -124.453549310999961, 49.34830811000009 ], [ -124.45377571899999, 49.348310302000115 ], [ -124.454135978999929, 49.348313601000044 ], [ -124.455545398999931, 49.348328400000078 ], [ -124.456150733999948, 49.348334310000126 ], [ -124.456958908999965, 49.348342208000119 ], [ -124.456936599999949, 49.349632607000039 ], [ -124.456921369999961, 49.350551651000082 ], [ -124.456909507999981, 49.35127038500012 ], [ -124.458276494999922, 49.351196291000107 ], [ -124.45923867399992, 49.351134935000118 ], [ -124.46139188899997, 49.350997591000116 ], [ -124.462860412999973, 49.35101580400007 ], [ -124.46367418399997, 49.351074206000057 ], [ -124.463806791999929, 49.351015815000068 ], [ -124.463804321999959, 49.351302118000049 ], [ -124.463802501999965, 49.351516989000096 ], [ -124.464714102999949, 49.351611893000033 ], [ -124.464874738999981, 49.351640602000046 ], [ -124.46648792699996, 49.351928722000139 ], [ -124.466524798999956, 49.352181208000104 ], [ -124.466514938, 49.355199252000027 ], [ -124.466513783999986, 49.355547394000048 ], [ -124.466402108999944, 49.355679887000072 ], [ -124.466068503999978, 49.355783199000065 ], [ -124.466454367999944, 49.356236245000062 ], [ -124.467375061999945, 49.357317065000139 ], [ -124.467383979999937, 49.357327573000113 ], [ -124.467480088999963, 49.35744039800003 ], [ -124.46747742300002, 49.357449318000114 ], [ -124.467403814999969, 49.357694779000092 ], [ -124.467331683999959, 49.357935237000085 ], [ -124.467279581999946, 49.357971331000023 ], [ -124.466801768999972, 49.357692076000021 ], [ -124.466432006999923, 49.35747597700005 ], [ -124.46431642, 49.355973443000025 ], [ -124.46342955199999, 49.355420810000069 ], [ -124.462993641999944, 49.35520759700006 ], [ -124.461301365999958, 49.35459218000004 ], [ -124.459908710999983, 49.35423483200011 ], [ -124.458638632999978, 49.353955717000133 ], [ -124.458080777999939, 49.353869211000088 ], [ -124.457865392999921, 49.353835785000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148119168", "BldgCostT": "95641668", "sL_LossRatio": "0.883267467083414", "sL_AssetLoss": "236818.3", "sL_BldgLoss": "209173.9", "sL_StrLoss": "162589", "sL_NStrLoss": "46584.9", "sL_ContLoss": "27644.4", "geom_point": "0101000020E610000069E1600C381D5FC001366B193EAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.459330791, 49.348366112000122 ], [ -124.459333497000017, 49.347252785000123 ], [ -124.459174557000011, 49.347252405000063 ], [ -124.458343219999946, 49.347250390000056 ], [ -124.457605077, 49.347248001000018 ], [ -124.457246921999968, 49.34724683700005 ], [ -124.456468679999915, 49.347244300000042 ], [ -124.455829490999974, 49.347280647000083 ], [ -124.455719080999955, 49.347270515000098 ], [ -124.455525511999923, 49.347268628000087 ], [ -124.455305299, 49.347271369000026 ], [ -124.455071030999974, 49.347265341000153 ], [ -124.454837079999919, 49.347268287000084 ], [ -124.454602565999934, 49.347253259000134 ], [ -124.454354841999987, 49.347256365000057 ], [ -124.454246962999946, 49.34725772600013 ], [ -124.453785505999917, 49.347112409000076 ], [ -124.45377571899999, 49.348310302000115 ], [ -124.453549310999961, 49.34830811000009 ], [ -124.452806316999954, 49.348300907000095 ], [ -124.451836990999951, 49.348290592000041 ], [ -124.451589504999973, 49.348287994000017 ], [ -124.450445493999936, 49.348276091000088 ], [ -124.450285673999971, 49.348274572000037 ], [ -124.449775265999932, 49.348269697000063 ], [ -124.449135103999978, 49.348263587000112 ], [ -124.449101899999988, 49.347118192000032 ], [ -124.449199215999897, 49.346964804000038 ], [ -124.449194850999959, 49.346835403000028 ], [ -124.449188565999947, 49.34664656200006 ], [ -124.449171689999915, 49.346142642000068 ], [ -124.449160596999917, 49.345792395000046 ], [ -124.44914164799998, 49.345191703000076 ], [ -124.449111429, 49.344245286000103 ], [ -124.449099091999955, 49.343792355000069 ], [ -124.449091243999959, 49.343328685000124 ], [ -124.449078115999924, 49.342896880000097 ], [ -124.449061811999982, 49.34235799500005 ], [ -124.449053826999929, 49.342065310000081 ], [ -124.449278388999943, 49.340901106000118 ], [ -124.449290682999958, 49.340805339000092 ], [ -124.449352813999923, 49.340321597000091 ], [ -124.44933433199999, 49.340082114000012 ], [ -124.449333593999967, 49.340072912000096 ], [ -124.44924551499993, 49.339829491000046 ], [ -124.448935374999948, 49.339356996000085 ], [ -124.450878768999942, 49.339392957000044 ], [ -124.45191168299999, 49.339552661000027 ], [ -124.452514934999954, 49.339772156000045 ], [ -124.452561905999971, 49.339789253000056 ], [ -124.451804327999966, 49.339778410000044 ], [ -124.451782479, 49.340432203000091 ], [ -124.451034599999943, 49.34042149400009 ], [ -124.45104083499993, 49.340633502000053 ], [ -124.451866531999926, 49.340623132000097 ], [ -124.451898284, 49.341702194000035 ], [ -124.449833993, 49.341728110000062 ], [ -124.449873629999942, 49.343076941000156 ], [ -124.450699368999921, 49.343066579 ], [ -124.450731099999956, 49.344145641000082 ], [ -124.45155685499995, 49.344135272000123 ], [ -124.451572729999938, 49.344674803000075 ], [ -124.45281137799995, 49.344659239000059 ], [ -124.452819321999968, 49.344929005000019 ], [ -124.453232206999985, 49.34492381200004 ], [ -124.453240153999914, 49.345193578000092 ], [ -124.454891699999934, 49.34517279800005 ], [ -124.454915566999915, 49.345982094000107 ], [ -124.455328459999976, 49.345976895000085 ], [ -124.455312544999984, 49.345437365000102 ], [ -124.45544979, 49.345435637000051 ], [ -124.455452840999925, 49.345364363000051 ], [ -124.45557614099999, 49.345283864000073 ], [ -124.45658064, 49.345308463000038 ], [ -124.456586740999967, 49.345396963000056 ], [ -124.456625979999913, 49.345420818 ], [ -124.457789872999982, 49.345406141000069 ], [ -124.457781901999908, 49.345136377000138 ], [ -124.459020557999963, 49.34512074500001 ], [ -124.4590125799999, 49.3448509810001 ], [ -124.459425462999917, 49.344845767000038 ], [ -124.459417481999964, 49.344576003000093 ], [ -124.459004601999965, 49.344581216000087 ], [ -124.458964713999947, 49.343232392000125 ], [ -124.459377582999977, 49.343227179000117 ], [ -124.459337686999902, 49.341878356000066 ], [ -124.460576260999957, 49.341862709000054 ], [ -124.460568274999943, 49.341592944000112 ], [ -124.461494656999946, 49.341581232000117 ], [ -124.46149808399997, 49.34159048300009 ], [ -124.461523777999943, 49.341628144000033 ], [ -124.46160037099996, 49.341740450000025 ], [ -124.461801225999977, 49.341903535000014 ], [ -124.462115661999917, 49.342167218000043 ], [ -124.46238357199999, 49.342465358000041 ], [ -124.462560546999953, 49.342769421000071 ], [ -124.462777722999988, 49.343642905000067 ], [ -124.461737117999917, 49.343751400000059 ], [ -124.461781598999934, 49.344025716000033 ], [ -124.462337210999948, 49.344692394000035 ], [ -124.462355394999946, 49.345594581000071 ], [ -124.463889109999911, 49.3455893940001 ], [ -124.463882656999928, 49.346002009000081 ], [ -124.463876921999926, 49.3463705 ], [ -124.463871811, 49.346648590000044 ], [ -124.463859298999964, 49.347526010000138 ], [ -124.463846001999968, 49.348380906000095 ], [ -124.463843966999917, 49.348574750000076 ], [ -124.463841621999975, 49.348803802000106 ], [ -124.463835992999933, 49.349123997000071 ], [ -124.463829837999953, 49.349475114000029 ], [ -124.463826204, 49.34968389000008 ], [ -124.462069975999924, 49.349670776000011 ], [ -124.461419612, 49.349665889000036 ], [ -124.460927085999927, 49.349662287000051 ], [ -124.458291120999931, 49.349643000000114 ], [ -124.458300083, 49.348888818000042 ], [ -124.458306401999963, 49.34835608500002 ], [ -124.459151098999925, 49.348364356000104 ], [ -124.459330791, 49.348366112000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "473500557", "BldgCostT": "289483224", "sL_LossRatio": "0.652044326322571", "sL_AssetLoss": "1208356.5", "sL_BldgLoss": "787902", "sL_StrLoss": "371575", "sL_NStrLoss": "416327", "sL_ContLoss": "420454.5", "geom_point": "0101000020E6100000F010ED3A861C5FC0FE778DC83DAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.447371255999926, 49.349048200000034 ], [ -124.447085513, 49.348266598000102 ], [ -124.445753251999975, 49.348269314000056 ], [ -124.444337088999958, 49.348272197 ], [ -124.442993209999941, 49.348274392000093 ], [ -124.441619299999971, 49.347899092000034 ], [ -124.44165049799993, 49.347177703000064 ], [ -124.441658998999941, 49.346147207000051 ], [ -124.441666642999905, 49.345184170000024 ], [ -124.441672208999989, 49.345100559000038 ], [ -124.441617841999943, 49.344998946000061 ], [ -124.441635029999958, 49.34425724200004 ], [ -124.441636307999985, 49.344203241000073 ], [ -124.441657565999961, 49.343287530000111 ], [ -124.441792133999954, 49.343283517000089 ], [ -124.442349989999983, 49.343266908000054 ], [ -124.442480585999959, 49.343265888000069 ], [ -124.44356478199991, 49.343257400000056 ], [ -124.444370605999936, 49.343303205000019 ], [ -124.444378085999958, 49.342342897000059 ], [ -124.445791707999916, 49.342347897000131 ], [ -124.446199771999929, 49.342348784000066 ], [ -124.446351581999977, 49.342349111000054 ], [ -124.446750567, 49.34234999600011 ], [ -124.447122876999956, 49.342350794000048 ], [ -124.447714006999931, 49.342353001000056 ], [ -124.448526185999981, 49.342356001000034 ], [ -124.449048042999948, 49.342357947000046 ], [ -124.449061811999982, 49.34235799500005 ], [ -124.449078115999924, 49.342896880000097 ], [ -124.449091243999959, 49.343328685000124 ], [ -124.449099091999955, 49.343792355000069 ], [ -124.449111429, 49.344245286000103 ], [ -124.44914164799998, 49.345191703000076 ], [ -124.449160596999917, 49.345792395000046 ], [ -124.449171689999915, 49.346142642000068 ], [ -124.449188565999947, 49.34664656200006 ], [ -124.449194850999959, 49.346835403000028 ], [ -124.449199215999897, 49.346964804000038 ], [ -124.449101899999988, 49.347118192000032 ], [ -124.449135103999978, 49.348263587000112 ], [ -124.449127471999986, 49.348734103000027 ], [ -124.449119329999945, 49.349237774000088 ], [ -124.449113199999971, 49.349616193000017 ], [ -124.448116415, 49.349601897000099 ], [ -124.448059701999966, 49.34958796600008 ], [ -124.447520206999968, 49.349455612000021 ], [ -124.447449658999915, 49.349262638000049 ], [ -124.447371255999926, 49.349048200000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218276166", "BldgCostT": "148446666", "sL_LossRatio": "0.911750237535877", "sL_AssetLoss": "463445.78", "sL_BldgLoss": "422546.8", "sL_StrLoss": "296317", "sL_NStrLoss": "126229.8", "sL_ContLoss": "40898.98", "geom_point": "0101000020E61000004C35DC15741C5FC0712AE7C5E8AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.435130292999972, 49.351264465000028 ], [ -124.435081080999907, 49.34999284200007 ], [ -124.437388745999982, 49.35000727900011 ], [ -124.438955249999978, 49.350055103000095 ], [ -124.438972039999953, 49.349026538000047 ], [ -124.440883214999957, 49.349121438000111 ], [ -124.441943240999962, 49.349174045000026 ], [ -124.442421579000012, 49.349197797000102 ], [ -124.444055177999971, 49.349294192000102 ], [ -124.445092088, 49.349457783000069 ], [ -124.445185384999945, 49.349472501000015 ], [ -124.44665966399999, 49.349780726000091 ], [ -124.447508692000014, 49.350085500000077 ], [ -124.44750977299999, 49.35002634400005 ], [ -124.44751370899999, 49.349810581000071 ], [ -124.447516685999943, 49.34964923600004 ], [ -124.447520206999968, 49.349455612000021 ], [ -124.448059701999966, 49.34958796600008 ], [ -124.448116415, 49.349601897000099 ], [ -124.449113199999971, 49.349616193000017 ], [ -124.449119329999945, 49.349237774000088 ], [ -124.449127471999986, 49.348734103000027 ], [ -124.449135103999978, 49.348263587000112 ], [ -124.449775265999932, 49.348269697000063 ], [ -124.450285673999971, 49.348274572000037 ], [ -124.450445493999936, 49.348276091000088 ], [ -124.451589504999973, 49.348287994000017 ], [ -124.451836990999951, 49.348290592000041 ], [ -124.452806316999954, 49.348300907000095 ], [ -124.452793063999962, 49.348823620000054 ], [ -124.45278329599995, 49.349210057000043 ], [ -124.452771780999939, 49.34966410300013 ], [ -124.452757927999954, 49.350271505000144 ], [ -124.452744979999949, 49.350838290000127 ], [ -124.452768062999922, 49.351010521000049 ], [ -124.452712293999966, 49.351403090000076 ], [ -124.452721701999934, 49.352565191000124 ], [ -124.451270801999939, 49.352552609000057 ], [ -124.450603595999951, 49.352548863000024 ], [ -124.448165841000019, 49.352535193000087 ], [ -124.447917750999977, 49.352533802000025 ], [ -124.447458416999922, 49.352531207000027 ], [ -124.446442549999958, 49.352525768000113 ], [ -124.442461717999976, 49.352504393000089 ], [ -124.440756028999928, 49.352480672000063 ], [ -124.438918394999973, 49.352455087000173 ], [ -124.437807384999957, 49.352439994000093 ], [ -124.437020215999908, 49.352531198000094 ], [ -124.436451217, 49.352655518000084 ], [ -124.436432246999956, 49.352659089000035 ], [ -124.4361941129999, 49.352864710000119 ], [ -124.436072396999975, 49.353008229000068 ], [ -124.435919165999906, 49.352947160000092 ], [ -124.435733383999931, 49.352835660000018 ], [ -124.435610821999944, 49.352762091000095 ], [ -124.435526900999903, 49.352718155000083 ], [ -124.43530119499998, 49.352532049000089 ], [ -124.4352726179999, 49.352496418000058 ], [ -124.435229986999914, 49.352451959000128 ], [ -124.435185807999986, 49.352353567000101 ], [ -124.435153595999978, 49.352192057000053 ], [ -124.435155568999932, 49.351993414000077 ], [ -124.43515695499994, 49.351857989000088 ], [ -124.435152207999963, 49.35183819100007 ], [ -124.435130292999972, 49.351264465000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200101654", "BldgCostT": "116836953", "sL_LossRatio": "0.679836402557568", "sL_AssetLoss": "484335.2", "sL_BldgLoss": "329268.7", "sL_StrLoss": "179874.7", "sL_NStrLoss": "149394", "sL_ContLoss": "155066.5", "geom_point": "0101000020E6100000FBE4A273E11B5FC03A9DD66D50AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.434129484999971, 49.349985359000087 ], [ -124.431836677999968, 49.349938597000076 ], [ -124.42823417699999, 49.349895398000044 ], [ -124.428298339, 49.348532638000108 ], [ -124.428303995999912, 49.348325695000057 ], [ -124.431077613999904, 49.348468606000097 ], [ -124.431217072999942, 49.348412094000054 ], [ -124.431313710999973, 49.348321702000099 ], [ -124.431308087999966, 49.347755417000066 ], [ -124.431232587999958, 49.347668794000079 ], [ -124.431082710999945, 49.34762980900004 ], [ -124.428317307999961, 49.347569797000034 ], [ -124.428333608999978, 49.34684458200006 ], [ -124.428341650999926, 49.34637501000006 ], [ -124.428346201999943, 49.346107600000032 ], [ -124.428300723999939, 49.345913617000051 ], [ -124.428248502999949, 49.345704702000027 ], [ -124.428249113999925, 49.345666238000028 ], [ -124.428279211999964, 49.343828405000089 ], [ -124.428264808999955, 49.343724696000017 ], [ -124.428322436999977, 49.343325708000094 ], [ -124.42832410699998, 49.343314207000027 ], [ -124.42833706099999, 49.342516584000052 ], [ -124.428340502999959, 49.342304498000047 ], [ -124.430874502999956, 49.342298062000076 ], [ -124.432030802, 49.342295117000049 ], [ -124.434454046999974, 49.342306152000106 ], [ -124.435280693999943, 49.342309909000065 ], [ -124.438723124999953, 49.342325499000026 ], [ -124.439012108999975, 49.342326801000084 ], [ -124.43976947799996, 49.3423295260001 ], [ -124.439926594, 49.342330098000069 ], [ -124.441125737, 49.342333853000078 ], [ -124.441783098999977, 49.342335228000096 ], [ -124.441668528999983, 49.342960958000077 ], [ -124.441657565999961, 49.343287530000111 ], [ -124.441636307999985, 49.344203241000073 ], [ -124.441635029999958, 49.34425724200004 ], [ -124.441617841999943, 49.344998946000061 ], [ -124.441672208999989, 49.345100559000038 ], [ -124.441666642999905, 49.345184170000024 ], [ -124.441658998999941, 49.346147207000051 ], [ -124.44165049799993, 49.347177703000064 ], [ -124.441619299999971, 49.347899092000034 ], [ -124.442993209999941, 49.348274392000093 ], [ -124.444337088999958, 49.348272197 ], [ -124.445753251999975, 49.348269314000056 ], [ -124.447085513, 49.348266598000102 ], [ -124.447371255999926, 49.349048200000034 ], [ -124.447449658999915, 49.349262638000049 ], [ -124.447520206999968, 49.349455612000021 ], [ -124.447516685999943, 49.34964923600004 ], [ -124.44751370899999, 49.349810581000071 ], [ -124.44750977299999, 49.35002634400005 ], [ -124.447508692000014, 49.350085500000077 ], [ -124.44665966399999, 49.349780726000091 ], [ -124.445185384999945, 49.349472501000015 ], [ -124.445092088, 49.349457783000069 ], [ -124.444055177999971, 49.349294192000102 ], [ -124.442421579000012, 49.349197797000102 ], [ -124.441943240999962, 49.349174045000026 ], [ -124.440883214999957, 49.349121438000111 ], [ -124.438972039999953, 49.349026538000047 ], [ -124.438955249999978, 49.350055103000095 ], [ -124.437388745999982, 49.35000727900011 ], [ -124.435081080999907, 49.34999284200007 ], [ -124.434272460999921, 49.34998742500008 ], [ -124.434129484999971, 49.349985359000087 ] ], [ [ -124.432159274999947, 49.344647150000078 ], [ -124.432153417999956, 49.344445407000116 ], [ -124.432048170999906, 49.344443881000117 ], [ -124.432041240999965, 49.344648613000096 ], [ -124.432159274999947, 49.344647150000078 ] ], [ [ -124.429529421999987, 49.343522754000062 ], [ -124.429533407999955, 49.343405166000096 ], [ -124.429231925999929, 49.343400788000089 ], [ -124.429235335999934, 49.343518483000068 ], [ -124.429529421999987, 49.343522754000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158554917", "BldgCostT": "106511667", "sL_LossRatio": "0.888071554869798", "sL_AssetLoss": "339219.4", "sL_BldgLoss": "301251.1", "sL_StrLoss": "228928.1", "sL_NStrLoss": "72323", "sL_ContLoss": "37968.3", "geom_point": "0101000020E61000002B848210D81B5FC079939D8641AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.424834442999952, 49.356070425000119 ], [ -124.424834211999951, 49.355831504000022 ], [ -124.424837910999983, 49.354994483000056 ], [ -124.424839396999985, 49.354504833000099 ], [ -124.424841206999943, 49.353927904000081 ], [ -124.424846192999951, 49.353134086000104 ], [ -124.423891499999954, 49.353132806000062 ], [ -124.423912886999929, 49.352060192000046 ], [ -124.423924493999948, 49.351313291000068 ], [ -124.423939283999971, 49.350516892000087 ], [ -124.423949985999926, 49.349755604000059 ], [ -124.42525420299998, 49.34975119300006 ], [ -124.426330401999962, 49.349735391000117 ], [ -124.428234694, 49.349760303000082 ], [ -124.42823417699999, 49.349895398000044 ], [ -124.431836677999968, 49.349938597000076 ], [ -124.434129484999971, 49.349985359000087 ], [ -124.434272460999921, 49.34998742500008 ], [ -124.435081080999907, 49.34999284200007 ], [ -124.435130292999972, 49.351264465000028 ], [ -124.435152207999963, 49.35183819100007 ], [ -124.43515695499994, 49.351857989000088 ], [ -124.435155568999932, 49.351993414000077 ], [ -124.435153595999978, 49.352192057000053 ], [ -124.435185807999986, 49.352353567000101 ], [ -124.435229986999914, 49.352451959000128 ], [ -124.4352726179999, 49.352496418000058 ], [ -124.43530119499998, 49.352532049000089 ], [ -124.435526900999903, 49.352718155000083 ], [ -124.435610821999944, 49.352762091000095 ], [ -124.435733383999931, 49.352835660000018 ], [ -124.435919165999906, 49.352947160000092 ], [ -124.436072396999975, 49.353008229000068 ], [ -124.4361941129999, 49.352864710000119 ], [ -124.436432246999956, 49.352659089000035 ], [ -124.436451217, 49.352655518000084 ], [ -124.437020215999908, 49.352531198000094 ], [ -124.437807384999957, 49.352439994000093 ], [ -124.438918394999973, 49.352455087000173 ], [ -124.440756028999928, 49.352480672000063 ], [ -124.442461717999976, 49.352504393000089 ], [ -124.446442549999958, 49.352525768000113 ], [ -124.447458416999922, 49.352531207000027 ], [ -124.447917750999977, 49.352533802000025 ], [ -124.448165841000019, 49.352535193000087 ], [ -124.450603595999951, 49.352548863000024 ], [ -124.451270801999939, 49.352552609000057 ], [ -124.45126618099998, 49.353102489000079 ], [ -124.451266245999989, 49.35330587300006 ], [ -124.451315837, 49.353468601000124 ], [ -124.451448848999988, 49.353605525000049 ], [ -124.451604449999934, 49.353683358000112 ], [ -124.453511107999987, 49.353970746000059 ], [ -124.449426752999969, 49.354218311000068 ], [ -124.448394606999983, 49.354353848000116 ], [ -124.443848558999903, 49.355075208000073 ], [ -124.442148126999939, 49.355405359000017 ], [ -124.439366337999942, 49.35610243900004 ], [ -124.438405529999926, 49.356324436000129 ], [ -124.437824819, 49.356409639000077 ], [ -124.437721937999967, 49.3564149810001 ], [ -124.437295593999977, 49.356437126000095 ], [ -124.436049600999951, 49.35634349 ], [ -124.435343204999953, 49.356281090000067 ], [ -124.433863984999945, 49.356167793000047 ], [ -124.433420827999967, 49.356133888000045 ], [ -124.433124399999926, 49.356111215000048 ], [ -124.431820823999956, 49.356014001000112 ], [ -124.430525729999957, 49.35594930500006 ], [ -124.43000570199996, 49.355949003000013 ], [ -124.4292745179999, 49.356007704000092 ], [ -124.428143201999916, 49.356145188000042 ], [ -124.426571310999975, 49.356328507000036 ], [ -124.425500784999912, 49.356336295000105 ], [ -124.424834699999934, 49.356302285000098 ], [ -124.424834557999944, 49.356160527000057 ], [ -124.424834442999952, 49.356070425000119 ] ], [ [ -124.441079771999938, 49.353094578000018 ], [ -124.441074148999945, 49.352902141000087 ], [ -124.438183470999959, 49.352938149000082 ], [ -124.438175604999984, 49.352668382000026 ], [ -124.437762654000011, 49.352673520000067 ], [ -124.437757351999963, 49.352491652000019 ], [ -124.437344809999956, 49.352510812000041 ], [ -124.43734969899999, 49.352678656000116 ], [ -124.436936747999965, 49.35268379200015 ], [ -124.43695246799993, 49.353223326000055 ], [ -124.436539509999989, 49.353228460000068 ], [ -124.436547367999978, 49.353498226000056 ], [ -124.435345328999972, 49.353513161000073 ], [ -124.435308488999937, 49.353513618000058 ], [ -124.435300637999973, 49.35324385100008 ], [ -124.434887679999946, 49.353248979000028 ], [ -124.43487983199995, 49.352979213000033 ], [ -124.434466876999963, 49.352984339000045 ], [ -124.434396265999908, 49.350556434000062 ], [ -124.433570395999965, 49.350566680000078 ], [ -124.433562556999945, 49.35029691300015 ], [ -124.429020283999989, 49.350353166000083 ], [ -124.42910626299999, 49.353320613000029 ], [ -124.430758098999917, 49.353300177000058 ], [ -124.430773749999958, 49.353839712000124 ], [ -124.43118671299996, 49.353834599000081 ], [ -124.431194542999933, 49.354104366000094 ], [ -124.433672332999933, 49.354073656000011 ], [ -124.433689940999955, 49.354679318000116 ], [ -124.433703701999946, 49.355152725000075 ], [ -124.433290728999921, 49.355157846000104 ], [ -124.433306408999954, 49.355697382000095 ], [ -124.434958321999972, 49.355676884000047 ], [ -124.43495047299993, 49.355407117000034 ], [ -124.435833057999972, 49.355396155000108 ], [ -124.436186562999964, 49.355294363000091 ], [ -124.436181542999933, 49.355121961000073 ], [ -124.43668909199999, 49.35511565200008 ], [ -124.436767340999978, 49.355099964000054 ], [ -124.437004461999948, 49.355007807000035 ], [ -124.436999627999967, 49.354841927000095 ], [ -124.437365869999951, 49.354837373000052 ], [ -124.437406092999964, 49.353645274000051 ], [ -124.4376433799999, 49.353648701000076 ], [ -124.437652998999965, 49.353363580000057 ], [ -124.437957068999978, 49.353367970000129 ], [ -124.437967804999914, 49.353049687000109 ], [ -124.441079771999938, 49.353094578000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141024583", "BldgCostT": "96313333", "sL_LossRatio": "0.906523089376672", "sL_AssetLoss": "314274.4", "sL_BldgLoss": "284897", "sL_StrLoss": "223458", "sL_NStrLoss": "61439", "sL_ContLoss": "29377.4", "geom_point": "0101000020E610000034845B25B51A5FC02F5372D224AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.422572137999936, 49.35594123800017 ], [ -124.422157052999978, 49.355835114000101 ], [ -124.422155948999929, 49.355835128000074 ], [ -124.422156502999883, 49.355854323000031 ], [ -124.421540614999941, 49.355672799000025 ], [ -124.420768409999965, 49.355443696000052 ], [ -124.420489525999926, 49.35535214900009 ], [ -124.420489118999967, 49.355338045000032 ], [ -124.420424280999939, 49.35531669400013 ], [ -124.420383059999949, 49.355317200000059 ], [ -124.420165562999941, 49.355245804000091 ], [ -124.419655394999936, 49.355078333000044 ], [ -124.419654963999974, 49.355063362000081 ], [ -124.419634235999951, 49.355056537000046 ], [ -124.41959063099992, 49.355057073000076 ], [ -124.418821273999967, 49.354804511000104 ], [ -124.418821047999955, 49.354796658000083 ], [ -124.418798208999974, 49.354796939000032 ], [ -124.418734345999951, 49.354775974000056 ], [ -124.418404215999914, 49.354667597000102 ], [ -124.418403748999978, 49.354651328000031 ], [ -124.418054175999927, 49.354536207000109 ], [ -124.418005797999967, 49.354536800000091 ], [ -124.417570108999954, 49.354393765000097 ], [ -124.41756961599998, 49.354376629000072 ], [ -124.417264157999981, 49.354276032000058 ], [ -124.417213395999937, 49.354276655000035 ], [ -124.416736010999955, 49.354119926000052 ], [ -124.416735493999951, 49.354101923000023 ], [ -124.416474153999943, 49.354015854000146 ], [ -124.416421004999975, 49.354016505000033 ], [ -124.416401686999947, 49.354010162000073 ], [ -124.416389364999986, 49.354006126000051 ], [ -124.415901922000032, 49.353846086000097 ], [ -124.41590138, 49.353827212000056 ], [ -124.415684158, 49.353755669000087 ], [ -124.415628613999957, 49.353756349000051 ], [ -124.415067842999974, 49.35357222500005 ], [ -124.415067275999945, 49.353552492000119 ], [ -124.414894172999965, 49.353495478000134 ], [ -124.414836262999955, 49.353496187000118 ], [ -124.414233770999985, 49.353298358000117 ], [ -124.414233181000014, 49.35327776700008 ], [ -124.414230905999943, 49.353277017000039 ], [ -124.414104196999986, 49.353235282000078 ], [ -124.414043903999953, 49.35323602100005 ], [ -124.41378230399998, 49.353150131000106 ], [ -124.413399708999933, 49.353024502000075 ], [ -124.413398262999934, 49.352974054000079 ], [ -124.413251535999919, 49.352975847000074 ], [ -124.41256565599997, 49.352750627000034 ], [ -124.412564618999966, 49.352714381000084 ], [ -124.41245920099999, 49.352715670000059 ], [ -124.411731613999976, 49.352476745000033 ], [ -124.411730982999956, 49.352454703000078 ], [ -124.411666877999949, 49.352455486000082 ], [ -124.410897580999944, 49.35220285500008 ], [ -124.410897355, 49.352195018000053 ], [ -124.410874563999968, 49.352195297 ], [ -124.410200798999966, 49.351974031000061 ], [ -124.410030217, 49.35162457000007 ], [ -124.40999438599998, 49.351581098000075 ], [ -124.410004000999933, 49.35110060300012 ], [ -124.41000463, 49.350882762000076 ], [ -124.410017793999899, 49.350098980000098 ], [ -124.41004642199999, 49.350066086000048 ], [ -124.410051821999929, 49.349708838000076 ], [ -124.410324877999983, 49.349695052000094 ], [ -124.416449461999889, 49.349385928000025 ], [ -124.416444383999973, 49.349615887000084 ], [ -124.41644188399998, 49.349727917000052 ], [ -124.416438011999986, 49.350174081000048 ], [ -124.416420687, 49.352157808000037 ], [ -124.41791578199999, 49.352163506000082 ], [ -124.420793998999912, 49.352152398000058 ], [ -124.420788194999943, 49.353128091000073 ], [ -124.421261420999912, 49.353128578000103 ], [ -124.421583287999937, 49.353128899000119 ], [ -124.422184025999968, 49.353129914000128 ], [ -124.423891499999954, 49.353132806000062 ], [ -124.424846192999951, 49.353134086000104 ], [ -124.424841206999943, 49.353927904000081 ], [ -124.424839396999985, 49.354504833000099 ], [ -124.424837910999983, 49.354994483000056 ], [ -124.424834211999951, 49.355831504000022 ], [ -124.424834442999952, 49.356070425000119 ], [ -124.424834557999944, 49.356160527000057 ], [ -124.424834699999934, 49.356302285000098 ], [ -124.422741891999962, 49.356005194000055 ], [ -124.42257284, 49.355965554000115 ], [ -124.422572137999936, 49.35594123800017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.986399262332872", "sL_AssetLoss": "867.6", "sL_BldgLoss": "855.8", "sL_StrLoss": "793", "sL_NStrLoss": "62.8", "sL_ContLoss": "11.8", "geom_point": "0101000020E6100000A002BBF5F51A5FC0E22129758BAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.420924778, 49.356120135000111 ], [ -124.420917003999946, 49.355850366000041 ], [ -124.420504021999974, 49.35585544200007 ], [ -124.420489525999926, 49.35535214900009 ], [ -124.420768409999965, 49.355443696000052 ], [ -124.421540614999941, 49.355672799000025 ], [ -124.422156502999883, 49.355854323000031 ], [ -124.422158463999963, 49.355922343000074 ], [ -124.422163729999937, 49.356104897000058 ], [ -124.420924778, 49.356120135000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205439144", "BldgCostT": "137851523", "sL_LossRatio": "0.900255051653645", "sL_AssetLoss": "454288.37", "sL_BldgLoss": "408975.4", "sL_StrLoss": "312468.3", "sL_NStrLoss": "96507.1", "sL_ContLoss": "45312.97", "geom_point": "0101000020E6100000BD8401535F1A5FC0C330EDBC89AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.405312474999974, 49.357236807000028 ], [ -124.405463095999949, 49.356258810000035 ], [ -124.402098954999957, 49.35627566800008 ], [ -124.401592473999926, 49.356278212000099 ], [ -124.400053187999916, 49.356273456000032 ], [ -124.399820027999922, 49.356333014000043 ], [ -124.399368270999915, 49.35658644300014 ], [ -124.396375786999954, 49.355678957000066 ], [ -124.394323928999967, 49.355142639000114 ], [ -124.394061807999947, 49.355045157000099 ], [ -124.393213077999974, 49.354645511000037 ], [ -124.393578481999924, 49.35437 ], [ -124.39364167899997, 49.354322348000103 ], [ -124.393692594999948, 49.354283949000049 ], [ -124.394149695999914, 49.353939302000072 ], [ -124.394464594999988, 49.353664096000095 ], [ -124.394626929999902, 49.353462193000091 ], [ -124.39475639699999, 49.353301190000067 ], [ -124.394855497999984, 49.353102793000083 ], [ -124.394976598999946, 49.352863410000062 ], [ -124.395064079999983, 49.352522603000054 ], [ -124.395063700999913, 49.352256191000116 ], [ -124.395061202999983, 49.352009494000129 ], [ -124.394966116999981, 49.351616594000035 ], [ -124.394860104999935, 49.351382805000135 ], [ -124.394773205999982, 49.351190711000065 ], [ -124.394581892999938, 49.350955599000045 ], [ -124.394178792999966, 49.350600405000073 ], [ -124.396173585999975, 49.349996305000083 ], [ -124.397955515999911, 49.349464593000093 ], [ -124.39816774699996, 49.349437746000071 ], [ -124.398197300999925, 49.349433990000101 ], [ -124.398494099999965, 49.349441091000081 ], [ -124.398759309999932, 49.349489097000067 ], [ -124.398953504999952, 49.349563085000113 ], [ -124.399146902999988, 49.349738784000117 ], [ -124.399457853999962, 49.350356291000054 ], [ -124.399551394999932, 49.350542001000107 ], [ -124.399684883999925, 49.350807106000047 ], [ -124.399999142999917, 49.350767448000099 ], [ -124.400444814999915, 49.350711194000041 ], [ -124.4010669099999, 49.350822114000067 ], [ -124.403294018999986, 49.351217794000057 ], [ -124.403599997999919, 49.351242110000044 ], [ -124.403827221999933, 49.351220081000086 ], [ -124.403857995999914, 49.351217112000029 ], [ -124.403921017999963, 49.35120426700005 ], [ -124.404166998999969, 49.351154087000097 ], [ -124.40459303199998, 49.35095972200002 ], [ -124.404635202999927, 49.350940481000059 ], [ -124.404533197999967, 49.350785103000078 ], [ -124.404423678999933, 49.350291124000087 ], [ -124.405481539999982, 49.35052932900004 ], [ -124.405601143999931, 49.350556264000012 ], [ -124.405993392999932, 49.350644603000084 ], [ -124.406708096999949, 49.350838322000058 ], [ -124.406882061999966, 49.35088547000003 ], [ -124.406906487999933, 49.350892087000027 ], [ -124.408497681999961, 49.351414696000084 ], [ -124.407570629999924, 49.351425991000035 ], [ -124.407583952999957, 49.351892816000046 ], [ -124.407873922999926, 49.351897084000015 ], [ -124.407852091, 49.352532166000039 ], [ -124.40792815899999, 49.352533285000014 ], [ -124.407836452999902, 49.355200851000099 ], [ -124.40809140099999, 49.35519774500009 ], [ -124.408114274999932, 49.355998904000067 ], [ -124.408224918999949, 49.356000532000053 ], [ -124.408227819999937, 49.355916154000077 ], [ -124.413251772999971, 49.355989960000024 ], [ -124.413258024999948, 49.355807480000138 ], [ -124.418758151999924, 49.355888013000033 ], [ -124.418736981, 49.356508006000112 ], [ -124.423003417999908, 49.356570282000135 ], [ -124.422989695999931, 49.356094730000081 ], [ -124.422576713999931, 49.356099814000167 ], [ -124.422573292999942, 49.355981251000102 ], [ -124.42257284, 49.355965554000115 ], [ -124.422741891999962, 49.356005194000055 ], [ -124.424834699999934, 49.356302285000098 ], [ -124.425500784999912, 49.356336295000105 ], [ -124.426571310999975, 49.356328507000036 ], [ -124.428143201999916, 49.356145188000042 ], [ -124.4292745179999, 49.356007704000092 ], [ -124.43000570199996, 49.355949003000013 ], [ -124.430525729999957, 49.35594930500006 ], [ -124.431820823999956, 49.356014001000112 ], [ -124.433124399999926, 49.356111215000048 ], [ -124.433420827999967, 49.356133888000045 ], [ -124.433863984999945, 49.356167793000047 ], [ -124.435343204999953, 49.356281090000067 ], [ -124.436049600999951, 49.35634349 ], [ -124.437295593999977, 49.356437126000095 ], [ -124.437721937999967, 49.3564149810001 ], [ -124.437824819, 49.356409639000077 ], [ -124.438405529999926, 49.356324436000129 ], [ -124.439366337999942, 49.35610243900004 ], [ -124.442148126999939, 49.355405359000017 ], [ -124.443848558999903, 49.355075208000073 ], [ -124.448394606999983, 49.354353848000116 ], [ -124.449426752999969, 49.354218311000068 ], [ -124.453511107999987, 49.353970746000059 ], [ -124.453433658999941, 49.354181969000123 ], [ -124.452604590999925, 49.354195708000098 ], [ -124.449225304999985, 49.354517584000114 ], [ -124.444265090000016, 49.355353609000119 ], [ -124.437723994999942, 49.356739311000069 ], [ -124.437298398999971, 49.356836838000071 ], [ -124.437301455999958, 49.356746281000092 ], [ -124.436645901999952, 49.356880756000095 ], [ -124.436648957999964, 49.356985655000059 ], [ -124.436558757999961, 49.357006325000093 ], [ -124.436096643999988, 49.357012067 ], [ -124.43541535599995, 49.357185362000067 ], [ -124.43541775499996, 49.357267769000089 ], [ -124.435313484999966, 49.357291660000023 ], [ -124.434981228999959, 49.357295786000137 ], [ -124.434185037999924, 49.357498297000056 ], [ -124.434186537999963, 49.357549867000053 ], [ -124.434068187999969, 49.357576983000051 ], [ -124.433865794999988, 49.357579494000092 ], [ -124.433364816999955, 49.357706912000062 ], [ -124.43336571899999, 49.357737925000059 ], [ -124.426683084, 49.359268693000111 ], [ -124.424432321999959, 49.359520806 ], [ -124.42191227899994, 49.359579193000066 ], [ -124.420156790999926, 49.359817 ], [ -124.418424805999962, 49.359874010000055 ], [ -124.41760531199999, 49.360180204000116 ], [ -124.417018096999925, 49.360295604000036 ], [ -124.415679816999926, 49.36022290700005 ], [ -124.414817708999976, 49.359989391000042 ], [ -124.413424294999928, 49.359881100000038 ], [ -124.411240117999967, 49.359593396000058 ], [ -124.408543602999956, 49.359157602000089 ], [ -124.406018187999962, 49.358999498000053 ], [ -124.405560608999934, 49.358922991000064 ], [ -124.405564506999966, 49.358820543000085 ], [ -124.405567282999954, 49.358657558000097 ], [ -124.405574167999958, 49.358068295000102 ], [ -124.405464329999973, 49.358021219000101 ], [ -124.405347917999975, 49.357726080000063 ], [ -124.405312474999974, 49.357236807000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128535585", "BldgCostT": "86758335", "sL_LossRatio": "0.906183122419029", "sL_AssetLoss": "285503", "sL_BldgLoss": "258718", "sL_StrLoss": "198720", "sL_NStrLoss": "59998", "sL_ContLoss": "26785", "geom_point": "0101000020E6100000A30492EA5A1A5FC0D6A0B3F5A1AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.420788194999943, 49.353128091000073 ], [ -124.420793998999912, 49.352152398000058 ], [ -124.41791578199999, 49.352163506000082 ], [ -124.416420687, 49.352157808000037 ], [ -124.416438011999986, 49.350174081000048 ], [ -124.41644188399998, 49.349727917000052 ], [ -124.416444383999973, 49.349615887000084 ], [ -124.416449461999889, 49.349385928000025 ], [ -124.410324877999983, 49.349695052000094 ], [ -124.410051821999929, 49.349708838000076 ], [ -124.41004642199999, 49.350066086000048 ], [ -124.410017793999899, 49.350098980000098 ], [ -124.41000463, 49.350882762000076 ], [ -124.410004000999933, 49.35110060300012 ], [ -124.40999438599998, 49.351581098000075 ], [ -124.410030217, 49.35162457000007 ], [ -124.410200798999966, 49.351974031000061 ], [ -124.410151528999961, 49.351957851000058 ], [ -124.410018880999971, 49.351914283000056 ], [ -124.409646545999962, 49.351792004000053 ], [ -124.409643075999981, 49.351670595000058 ], [ -124.409289971999911, 49.351674902000056 ], [ -124.408812532999931, 49.35151810100006 ], [ -124.408809471, 49.351410896000054 ], [ -124.408497681999961, 49.351414696000084 ], [ -124.406906487999933, 49.350892087000027 ], [ -124.406882061999966, 49.35088547000003 ], [ -124.406708096999949, 49.350838322000058 ], [ -124.405993392999932, 49.350644603000084 ], [ -124.405601143999931, 49.350556264000012 ], [ -124.405481539999982, 49.35052932900004 ], [ -124.404423678999933, 49.350291124000087 ], [ -124.402450742999974, 49.349943814000056 ], [ -124.402378677999948, 49.349931155000085 ], [ -124.401566125999963, 49.349788082000018 ], [ -124.401278379999965, 49.349729258000174 ], [ -124.400275336000021, 49.349524169000105 ], [ -124.400015459999935, 49.349470759000077 ], [ -124.399182974999974, 49.349299612 ], [ -124.398727858999905, 49.349206050000078 ], [ -124.398800664999953, 49.349088288000075 ], [ -124.398902692999968, 49.348923290000116 ], [ -124.398909198999959, 49.348794056000052 ], [ -124.39893519599994, 49.348276515000173 ], [ -124.398938576999967, 49.348209550000028 ], [ -124.398981933999949, 49.347346579000011 ], [ -124.398983602999962, 49.347292338000031 ], [ -124.398984997999946, 49.347244715000052 ], [ -124.399021299, 49.346008693000059 ], [ -124.401799624999953, 49.345973913000051 ], [ -124.403841015999944, 49.346042999000112 ], [ -124.403983566999941, 49.34604269200004 ], [ -124.406337848999954, 49.346037820000078 ], [ -124.409974903999938, 49.34603013600011 ], [ -124.410047457999923, 49.346029127000023 ], [ -124.411447310999947, 49.346034646000057 ], [ -124.412383410999979, 49.34603835500004 ], [ -124.41407421599996, 49.346045007000065 ], [ -124.41495781199994, 49.346066984000068 ], [ -124.418634098, 49.346033488000025 ], [ -124.420869811999978, 49.346094996000083 ], [ -124.420864658999946, 49.346333399000052 ], [ -124.4208108, 49.348824294000039 ], [ -124.420807818999933, 49.348963589000043 ], [ -124.420806693999964, 49.349211196000056 ], [ -124.420804301999951, 49.349751103000067 ], [ -124.423949985999926, 49.349755604000059 ], [ -124.423939283999971, 49.350516892000087 ], [ -124.423924493999948, 49.351313291000068 ], [ -124.423912886999929, 49.352060192000046 ], [ -124.423891499999954, 49.353132806000062 ], [ -124.422184025999968, 49.353129914000128 ], [ -124.421583287999937, 49.353128899000119 ], [ -124.421261420999912, 49.353128578000103 ], [ -124.420788194999943, 49.353128091000073 ] ], [ [ -124.406603748999942, 49.349278848000026 ], [ -124.40662023699997, 49.348799591000088 ], [ -124.406566109999943, 49.348798793000093 ], [ -124.406587343999959, 49.348181574000094 ], [ -124.404999001999983, 49.348158163000043 ], [ -124.405008415999973, 49.348488661000083 ], [ -124.405834261, 49.348478618000094 ], [ -124.405849639999985, 49.349018160000099 ], [ -124.406262565999953, 49.349013136000032 ], [ -124.406270257999907, 49.349282906000013 ], [ -124.406603748999942, 49.349278848000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115637750", "BldgCostT": "76805000", "sL_LossRatio": "0.933666937868967", "sL_AssetLoss": "207471.2", "sL_BldgLoss": "193709", "sL_StrLoss": "157965.1", "sL_NStrLoss": "35743.9", "sL_ContLoss": "13762.2", "geom_point": "0101000020E6100000537D31A5BF1A5FC0609FAD41E7AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.42823417699999, 49.349895398000044 ], [ -124.428234694, 49.349760303000082 ], [ -124.426330401999962, 49.349735391000117 ], [ -124.42525420299998, 49.34975119300006 ], [ -124.423949985999926, 49.349755604000059 ], [ -124.420804301999951, 49.349751103000067 ], [ -124.420806693999964, 49.349211196000056 ], [ -124.420807818999933, 49.348963589000043 ], [ -124.4208108, 49.348824294000039 ], [ -124.420864658999946, 49.346333399000052 ], [ -124.420869811999978, 49.346094996000083 ], [ -124.418634098, 49.346033488000025 ], [ -124.41495781199994, 49.346066984000068 ], [ -124.41407421599996, 49.346045007000065 ], [ -124.412383410999979, 49.34603835500004 ], [ -124.411447310999947, 49.346034646000057 ], [ -124.410047457999923, 49.346029127000023 ], [ -124.409974903999938, 49.34603013600011 ], [ -124.406337848999954, 49.346037820000078 ], [ -124.403983566999941, 49.34604269200004 ], [ -124.403841015999944, 49.346042999000112 ], [ -124.401799624999953, 49.345973913000051 ], [ -124.399021299, 49.346008693000059 ], [ -124.399051424999925, 49.344846002000025 ], [ -124.399062281999946, 49.344425997000087 ], [ -124.399073369999954, 49.344105436000071 ], [ -124.399107919999921, 49.343106204000044 ], [ -124.399128405999974, 49.342378715000073 ], [ -124.3991301699999, 49.342315707000111 ], [ -124.399132199999968, 49.342244756000092 ], [ -124.399133966999941, 49.342181748000058 ], [ -124.399134738999976, 49.342154739000129 ], [ -124.399138098999956, 49.342035512000095 ], [ -124.399138611999888, 49.342017506000062 ], [ -124.399154399999972, 49.341983014000071 ], [ -124.399291798999954, 49.341683211000024 ], [ -124.399500389999929, 49.341379303000046 ], [ -124.399270251999965, 49.341247512000088 ], [ -124.399180803999968, 49.341196305000032 ], [ -124.399164411999919, 49.340822581000104 ], [ -124.399152294999936, 49.340546907000011 ], [ -124.39903209199997, 49.340442497000048 ], [ -124.399361904999978, 49.33921790600003 ], [ -124.399831514999903, 49.339228349000081 ], [ -124.400011144999922, 49.339232347000149 ], [ -124.400197410999937, 49.339236506000105 ], [ -124.400731794999928, 49.339281564000025 ], [ -124.401091421999951, 49.339311899000087 ], [ -124.401361485999985, 49.339375291000053 ], [ -124.401641586999915, 49.339509015000019 ], [ -124.401942576999915, 49.339355896 ], [ -124.40370110399999, 49.339328790000103 ], [ -124.404708296999956, 49.339312190000022 ], [ -124.405838484999933, 49.339360287000119 ], [ -124.40722044599994, 49.339353291000059 ], [ -124.40753689499995, 49.339351685000061 ], [ -124.40792919499998, 49.339349711000061 ], [ -124.40990466699995, 49.339344793000059 ], [ -124.41001970399995, 49.339344477000068 ], [ -124.410033466999934, 49.339344471000047 ], [ -124.410090709999977, 49.339344414000031 ], [ -124.410221389999947, 49.339344492000038 ], [ -124.413318469, 49.339346495000058 ], [ -124.416522330999925, 49.339348480000083 ], [ -124.416497020999941, 49.340088925000096 ], [ -124.417336591999941, 49.340101215000089 ], [ -124.417362289999971, 49.339348986000076 ], [ -124.42084258599999, 49.339351008000079 ], [ -124.42400904899992, 49.339351312000062 ], [ -124.42399333899999, 49.33981309500011 ], [ -124.422864599999954, 49.339796640000039 ], [ -124.422755773999967, 49.342993019000041 ], [ -124.422575805999912, 49.342990394000076 ], [ -124.422543027999922, 49.343952935000118 ], [ -124.42277217499999, 49.343956277000096 ], [ -124.422746969999977, 49.344696528000057 ], [ -124.423079108999929, 49.344701370000102 ], [ -124.423067192999966, 49.345051373000054 ], [ -124.423064639999936, 49.345126376000074 ], [ -124.423739967999978, 49.345136221000125 ], [ -124.425565622999969, 49.34516281200009 ], [ -124.425560876999938, 49.344998596000103 ], [ -124.426528230999921, 49.344986660000046 ], [ -124.426579412999942, 49.343479876000039 ], [ -124.427582539999889, 49.34349446600006 ], [ -124.427579134999988, 49.343376771000052 ], [ -124.425704965999984, 49.343349506000081 ], [ -124.425711921999962, 49.343144870000081 ], [ -124.424503633999933, 49.343127275000086 ], [ -124.424626018999987, 49.339528617000063 ], [ -124.424651415999946, 49.33952898800004 ], [ -124.424657456999952, 49.339351365000084 ], [ -124.425615252999933, 49.339351453000056 ], [ -124.428194728999955, 49.339351605000111 ], [ -124.428360178999966, 49.339351611000048 ], [ -124.437384631999961, 49.339351657000073 ], [ -124.437409924999884, 49.339351662000119 ], [ -124.43749258900003, 49.33935163700005 ], [ -124.438555414999982, 49.339351606000086 ], [ -124.439060922999943, 49.33932740200013 ], [ -124.4401884899999, 49.339269903000094 ], [ -124.44039449399996, 49.339259389000098 ], [ -124.441962181999884, 49.339259453000047 ], [ -124.441962137999965, 49.339588 ], [ -124.441909168999956, 49.339690734000072 ], [ -124.441899055999954, 49.341831957000103 ], [ -124.441783098999977, 49.342335228000096 ], [ -124.441125737, 49.342333853000078 ], [ -124.439926594, 49.342330098000069 ], [ -124.43976947799996, 49.3423295260001 ], [ -124.439012108999975, 49.342326801000084 ], [ -124.438723124999953, 49.342325499000026 ], [ -124.435280693999943, 49.342309909000065 ], [ -124.434454046999974, 49.342306152000106 ], [ -124.432030802, 49.342295117000049 ], [ -124.430874502999956, 49.342298062000076 ], [ -124.428340502999959, 49.342304498000047 ], [ -124.42833706099999, 49.342516584000052 ], [ -124.42832410699998, 49.343314207000027 ], [ -124.428322436999977, 49.343325708000094 ], [ -124.428264808999955, 49.343724696000017 ], [ -124.428279211999964, 49.343828405000089 ], [ -124.428249113999925, 49.345666238000028 ], [ -124.428248502999949, 49.345704702000027 ], [ -124.428300723999939, 49.345913617000051 ], [ -124.428346201999943, 49.346107600000032 ], [ -124.428341650999926, 49.34637501000006 ], [ -124.428333608999978, 49.34684458200006 ], [ -124.428317307999961, 49.347569797000034 ], [ -124.431082710999945, 49.34762980900004 ], [ -124.431232587999958, 49.347668794000079 ], [ -124.431308087999966, 49.347755417000066 ], [ -124.431313710999973, 49.348321702000099 ], [ -124.431217072999942, 49.348412094000054 ], [ -124.431077613999904, 49.348468606000097 ], [ -124.428303995999912, 49.348325695000057 ], [ -124.428298339, 49.348532638000108 ], [ -124.42823417699999, 49.349895398000044 ] ], [ [ -124.427687782999953, 49.347131259000022 ], [ -124.427686772999948, 49.347096396000069 ], [ -124.426457168999946, 49.347078515000135 ], [ -124.426491545999951, 49.346066571000094 ], [ -124.426351152000024, 49.346068305000124 ], [ -124.426286944999958, 49.347958150000082 ], [ -124.426472461999978, 49.347955860000042 ], [ -124.426480262, 49.348225629000062 ], [ -124.427306097, 49.348215433000099 ], [ -124.427274874999938, 49.347136359000032 ], [ -124.427687782999953, 49.347131259000022 ] ], [ [ -124.41430831199996, 49.343839294000119 ], [ -124.414309480999933, 49.343805173000128 ], [ -124.417045247, 49.343845250000058 ], [ -124.417049102999982, 49.343732398000057 ], [ -124.416288286999972, 49.343721260000073 ], [ -124.416289480999964, 49.343686332000082 ], [ -124.415327053999988, 49.343672235000085 ], [ -124.415375339999954, 49.34226073600005 ], [ -124.415400500999951, 49.341525157000078 ], [ -124.413816536999931, 49.341501936000036 ], [ -124.413790703999922, 49.34225638300007 ], [ -124.413739278999984, 49.343758162000036 ], [ -124.413892400999927, 49.343760407000026 ], [ -124.413889910999941, 49.343833158000102 ], [ -124.41430831199996, 49.343839294000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24256083", "BldgCostT": "16728333", "sL_LossRatio": "0.925778935710554", "sL_AssetLoss": "49083.64", "sL_BldgLoss": "45440.6", "sL_StrLoss": "36549.8", "sL_NStrLoss": "8890.8", "sL_ContLoss": "3643.04", "geom_point": "0101000020E6100000D2EF35E3B81A5FC09113BBF0E2AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.418545805999926, 49.338247791000057 ], [ -124.418616439999937, 49.33617850800006 ], [ -124.41787299399995, 49.336187632000133 ], [ -124.417865244000026, 49.335917862000031 ], [ -124.417452428999951, 49.335922926000116 ], [ -124.41742143499999, 49.334843846000069 ], [ -124.417834242999959, 49.334838782000126 ], [ -124.417818741999909, 49.334299243000039 ], [ -124.414415406999979, 49.33434094700003 ], [ -124.414384053, 49.33387499300003 ], [ -124.414089699999948, 49.333862458000119 ], [ -124.414088057999962, 49.333805223000091 ], [ -124.413045399999987, 49.33381797800007 ], [ -124.410003083999953, 49.333688338000051 ], [ -124.409945629999982, 49.332245397000079 ], [ -124.409947508999963, 49.330347569000018 ], [ -124.410272657999897, 49.33034360200007 ], [ -124.410280364999934, 49.330613373000133 ], [ -124.412344226999963, 49.330588167000066 ], [ -124.412351945999887, 49.330857938000051 ], [ -124.414003040999944, 49.3308377480001 ], [ -124.414010771999983, 49.331107517000106 ], [ -124.41442354699997, 49.331102466000083 ], [ -124.414439008, 49.331642007000085 ], [ -124.414851788999911, 49.331636954000018 ], [ -124.414863697999962, 49.332052401000091 ], [ -124.414890454999949, 49.332985806000089 ], [ -124.416954411999981, 49.33296051700006 ], [ -124.416946665999944, 49.332690747000107 ], [ -124.419010608999884, 49.332665421000073 ], [ -124.419018365999975, 49.332935192 ], [ -124.420596143999958, 49.332915806000123 ], [ -124.420669526999944, 49.33291490400007 ], [ -124.42070058899999, 49.33399398299999 ], [ -124.420644629999941, 49.333994671000042 ], [ -124.420287789999946, 49.333999057000064 ], [ -124.420303316999977, 49.334538597000119 ], [ -124.420668872999968, 49.334534104000063 ], [ -124.420716119999966, 49.334533523000026 ], [ -124.42075495099999, 49.335882371000025 ], [ -124.420734173999932, 49.335882627000018 ], [ -124.420342135999988, 49.335887446000115 ], [ -124.420349963999968, 49.336159474000048 ], [ -124.420749783999966, 49.336165314000084 ], [ -124.424115753999928, 49.336214421000072 ], [ -124.42400904899992, 49.339351312000062 ], [ -124.42084258599999, 49.339351008000079 ], [ -124.417362289999971, 49.339348986000076 ], [ -124.417400480999959, 49.33823103400001 ], [ -124.418545805999926, 49.338247791000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9959083", "BldgCostT": "6868333", "sL_LossRatio": "0.921724242309584", "sL_AssetLoss": "21143.2", "sL_BldgLoss": "19488.2", "sL_StrLoss": "15453.2", "sL_NStrLoss": "4035", "sL_ContLoss": "1655", "geom_point": "0101000020E6100000EE98E3AA6C1A5FC0D7325BAA39AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.410025280999918, 49.338675319000053 ], [ -124.410051335999981, 49.335538354000121 ], [ -124.410078789999915, 49.335538310000082 ], [ -124.410106331999913, 49.335538263000068 ], [ -124.413683785999979, 49.335547057000042 ], [ -124.413630213999937, 49.337111633000092 ], [ -124.416597296999939, 49.337155120000084 ], [ -124.416522330999925, 49.339348480000083 ], [ -124.413318469, 49.339346495000058 ], [ -124.410221389999947, 49.339344492000038 ], [ -124.410090709999977, 49.339344414000031 ], [ -124.410033466999934, 49.339344471000047 ], [ -124.41001970399995, 49.339344477000068 ], [ -124.410022200999975, 49.339044182000094 ], [ -124.410023925999937, 49.33883718800012 ], [ -124.410025280999918, 49.338675319000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72647416", "BldgCostT": "50101666", "sL_LossRatio": "0.904931014836299", "sL_AssetLoss": "205529.7", "sL_BldgLoss": "185990.2", "sL_StrLoss": "142832.2", "sL_NStrLoss": "43158", "sL_ContLoss": "19539.5", "geom_point": "0101000020E6100000B1325C15CF1B5FC0F16BFB8910AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.441657565999961, 49.343287530000111 ], [ -124.441668528999983, 49.342960958000077 ], [ -124.441783098999977, 49.342335228000096 ], [ -124.441899055999954, 49.341831957000103 ], [ -124.441909168999956, 49.339690734000072 ], [ -124.441962137999965, 49.339588 ], [ -124.441962181999884, 49.339259453000047 ], [ -124.44039449399996, 49.339259389000098 ], [ -124.4401884899999, 49.339269903000094 ], [ -124.439060922999943, 49.33932740200013 ], [ -124.438555414999982, 49.339351606000086 ], [ -124.43749258900003, 49.33935163700005 ], [ -124.437409924999884, 49.339351662000119 ], [ -124.437384631999961, 49.339351657000073 ], [ -124.428360178999966, 49.339351611000048 ], [ -124.428194728999955, 49.339351605000111 ], [ -124.425615252999933, 49.339351453000056 ], [ -124.424657456999952, 49.339351365000084 ], [ -124.424670049999989, 49.338981017000023 ], [ -124.424838883999897, 49.338983477000035 ], [ -124.424875101999945, 49.337918219000116 ], [ -124.42557759099995, 49.337928449000039 ], [ -124.425615979000014, 49.336798809000094 ], [ -124.425025137999967, 49.33679020600006 ], [ -124.425076153999925, 49.335289434000103 ], [ -124.424867515999935, 49.335292007000092 ], [ -124.424844149999942, 49.334482699000048 ], [ -124.425103685999886, 49.334479499000054 ], [ -124.42514746499991, 49.333191513000031 ], [ -124.425219843999983, 49.333192567 ], [ -124.425218000999934, 49.333128763000083 ], [ -124.425630790999946, 49.333123671000116 ], [ -124.425584038999901, 49.331505055000051 ], [ -124.425996816999941, 49.331499962000088 ], [ -124.425973436, 49.330690654000065 ], [ -124.430101134999973, 49.330639646000066 ], [ -124.430108951999927, 49.330909414000139 ], [ -124.431347265999946, 49.330894083000011 ], [ -124.431355087999933, 49.331163852000032 ], [ -124.431767862999962, 49.331158738000099 ], [ -124.431760036999961, 49.330888969000057 ], [ -124.435062201999969, 49.330848009000071 ], [ -124.43507004599995, 49.331117776000056 ], [ -124.435482817999954, 49.331112650000129 ], [ -124.435490664, 49.331382418000075 ], [ -124.43590343799994, 49.331377290000049 ], [ -124.43591128599999, 49.331647058000073 ], [ -124.436324063999976, 49.331641928000082 ], [ -124.436339762999978, 49.332181464000072 ], [ -124.436752545999965, 49.332176333000078 ], [ -124.436783955999957, 49.333255403000074 ], [ -124.437609537999919, 49.333245137000134 ], [ -124.437625251999947, 49.333784672000029 ], [ -124.438038046999949, 49.333779536000094 ], [ -124.438085209999926, 49.33539814300012 ], [ -124.438498017999962, 49.335393004000075 ], [ -124.438537335999939, 49.33674184200008 ], [ -124.437711697999973, 49.336752117000145 ], [ -124.43772741699992, 49.337291652000069 ], [ -124.436901770999924, 49.337301921000098 ], [ -124.436909624999942, 49.33757168800004 ], [ -124.436496798999926, 49.337576821000063 ], [ -124.436512265999966, 49.338108135000063 ], [ -124.439294894999975, 49.338148332000117 ], [ -124.43929265300001, 49.338214907000165 ], [ -124.440872140999957, 49.338237692000064 ], [ -124.440850795999935, 49.338871944000061 ], [ -124.441902941999956, 49.338858820000034 ], [ -124.441895059999922, 49.338589053000064 ], [ -124.441964318999936, 49.338588190000017 ], [ -124.44269900799999, 49.338579019000093 ], [ -124.442814651999925, 49.335138457000077 ], [ -124.443428878999967, 49.335147301000092 ], [ -124.444409601999965, 49.337513412000092 ], [ -124.443159864, 49.339276230000081 ], [ -124.443352679, 49.339278935000074 ], [ -124.444404374999976, 49.339293671000107 ], [ -124.444569664999932, 49.339295981000134 ], [ -124.448935374999948, 49.339356996000085 ], [ -124.44924551499993, 49.339829491000046 ], [ -124.449333593999967, 49.340072912000096 ], [ -124.44933433199999, 49.340082114000012 ], [ -124.449352813999923, 49.340321597000091 ], [ -124.449290682999958, 49.340805339000092 ], [ -124.449278388999943, 49.340901106000118 ], [ -124.449053826999929, 49.342065310000081 ], [ -124.449061811999982, 49.34235799500005 ], [ -124.449048042999948, 49.342357947000046 ], [ -124.448526185999981, 49.342356001000034 ], [ -124.447714006999931, 49.342353001000056 ], [ -124.447122876999956, 49.342350794000048 ], [ -124.446750567, 49.34234999600011 ], [ -124.446351581999977, 49.342349111000054 ], [ -124.446199771999929, 49.342348784000066 ], [ -124.445791707999916, 49.342347897000131 ], [ -124.444378085999958, 49.342342897000059 ], [ -124.444370605999936, 49.343303205000019 ], [ -124.44356478199991, 49.343257400000056 ], [ -124.442480585999959, 49.343265888000069 ], [ -124.442349989999983, 49.343266908000054 ], [ -124.441792133999954, 49.343283517000089 ], [ -124.441657565999961, 49.343287530000111 ] ], [ [ -124.433769856999945, 49.338866990000099 ], [ -124.433778435999898, 49.338613209000059 ], [ -124.431986320999954, 49.338587238000038 ], [ -124.431977730999932, 49.338841020000054 ], [ -124.433769856999945, 49.338866990000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.903924385394973", "sL_AssetLoss": "3807.73", "sL_BldgLoss": "3441.9", "sL_StrLoss": "2453.3", "sL_NStrLoss": "988.6", "sL_ContLoss": "365.83", "geom_point": "0101000020E6100000B5A4DDC7551C5FC0E4B44C2BAAA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.44112772499993, 49.326454672000068 ], [ -124.44108047499995, 49.324836065000063 ], [ -124.441406270999906, 49.324832002000058 ], [ -124.441493194999936, 49.324830917000071 ], [ -124.441485316999916, 49.324561150000079 ], [ -124.443548897999946, 49.32453539000003 ], [ -124.443556786, 49.324805156000068 ], [ -124.443969503999966, 49.3248 ], [ -124.443977393999901, 49.325069767000052 ], [ -124.444802834999933, 49.325059449000086 ], [ -124.44482652, 49.32586875200009 ], [ -124.444001065999913, 49.325879069000031 ], [ -124.444008956999937, 49.32614883700014 ], [ -124.443596228000018, 49.32615399400003 ], [ -124.443604116999936, 49.326423761000058 ], [ -124.441478106, 49.326450302000097 ], [ -124.44112772499993, 49.326454672000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57303418", "BldgCostT": "38366668", "sL_LossRatio": "0.870519908572083", "sL_AssetLoss": "127129.66", "sL_BldgLoss": "110668.9", "sL_StrLoss": "81684.9", "sL_NStrLoss": "28984", "sL_ContLoss": "16460.76", "geom_point": "0101000020E610000041AC59C2B5195FC0C3A9BD258CAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.400731794999928, 49.339281564000025 ], [ -124.400197410999937, 49.339236506000105 ], [ -124.400011144999922, 49.339232347000149 ], [ -124.399831514999903, 49.339228349000081 ], [ -124.399361904999978, 49.33921790600003 ], [ -124.39922851399993, 49.339139397000082 ], [ -124.399193920999977, 49.33902370800007 ], [ -124.39918327799991, 49.338842302000053 ], [ -124.398988055999894, 49.335510140000054 ], [ -124.398821075999933, 49.332873311000107 ], [ -124.398795003999936, 49.332462092000114 ], [ -124.398470216999939, 49.332745057000132 ], [ -124.39606577499994, 49.332695024000017 ], [ -124.395751276999945, 49.332635369000087 ], [ -124.395089948999953, 49.332672980000105 ], [ -124.395068221999949, 49.332674224000087 ], [ -124.39506745099996, 49.332674271 ], [ -124.389541970999971, 49.33298850400012 ], [ -124.389663589999927, 49.329489221000095 ], [ -124.39011835, 49.329495994000112 ], [ -124.390165847999967, 49.328128830000104 ], [ -124.391646886999979, 49.328150873000048 ], [ -124.391690358999981, 49.326898365000041 ], [ -124.397187016999908, 49.326979997000109 ], [ -124.397169990999927, 49.327472253000046 ], [ -124.39854719499999, 49.327492663000072 ], [ -124.398527673000032, 49.328057555000072 ], [ -124.398646244999952, 49.328056120000042 ], [ -124.398638600999959, 49.327786347000036 ], [ -124.399051351999958, 49.327781351000034 ], [ -124.39903606099989, 49.327241805000085 ], [ -124.399448807999974, 49.327236808000045 ], [ -124.39944115900002, 49.326967035000095 ], [ -124.409759728, 49.326841612000109 ], [ -124.409859886999982, 49.330348639000078 ], [ -124.409947508999963, 49.330347569000018 ], [ -124.409945629999982, 49.332245397000079 ], [ -124.410003083999953, 49.333688338000051 ], [ -124.413045399999987, 49.33381797800007 ], [ -124.412024063999922, 49.333830461000083 ], [ -124.412031781999957, 49.334100232000054 ], [ -124.411359932999943, 49.334108440000051 ], [ -124.41155070399999, 49.334111242000105 ], [ -124.411549298999915, 49.334152226000114 ], [ -124.412080485999923, 49.334160028000092 ], [ -124.412068575999911, 49.33450757 ], [ -124.413718545999984, 49.334531788000056 ], [ -124.413683785999979, 49.335547057000042 ], [ -124.410106331999913, 49.335538263000068 ], [ -124.410078789999915, 49.335538310000082 ], [ -124.410051335999981, 49.335538354000121 ], [ -124.410025280999918, 49.338675319000053 ], [ -124.410023925999937, 49.33883718800012 ], [ -124.410022200999975, 49.339044182000094 ], [ -124.41001970399995, 49.339344477000068 ], [ -124.40990466699995, 49.339344793000059 ], [ -124.40792919499998, 49.339349711000061 ], [ -124.40753689499995, 49.339351685000061 ], [ -124.40722044599994, 49.339353291000059 ], [ -124.405838484999933, 49.339360287000119 ], [ -124.404708296999956, 49.339312190000022 ], [ -124.40370110399999, 49.339328790000103 ], [ -124.401942576999915, 49.339355896 ], [ -124.401641586999915, 49.339509015000019 ], [ -124.401361485999985, 49.339375291000053 ], [ -124.401091421999951, 49.339311899000087 ], [ -124.400731794999928, 49.339281564000025 ] ], [ [ -124.409941413999917, 49.333202721000077 ], [ -124.409929240999986, 49.332776579000111 ], [ -124.409516448999938, 49.332781614000055 ], [ -124.409470227999989, 49.331162987 ], [ -124.404104109999977, 49.331228313000096 ], [ -124.404096435999961, 49.330958541000065 ], [ -124.402858104999964, 49.330973581000144 ], [ -124.402835103999976, 49.330164266000054 ], [ -124.402422332999905, 49.330169275000067 ], [ -124.402437664999979, 49.33070881900008 ], [ -124.401314933999913, 49.33072243900002 ], [ -124.401233798999925, 49.333073902000095 ], [ -124.404843398999958, 49.333127214000108 ], [ -124.404841980999933, 49.333168401000052 ], [ -124.405696238999951, 49.333181000000124 ], [ -124.405697640999961, 49.333140230000076 ], [ -124.409941413999917, 49.333202721000077 ] ], [ [ -124.403232534999958, 49.329619709000077 ], [ -124.403224867999981, 49.329349938000043 ], [ -124.402812102999945, 49.329354949000049 ], [ -124.402819768999962, 49.329624721000059 ], [ -124.403232534999958, 49.329619709000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7779917", "BldgCostT": "5101667", "sL_LossRatio": "0.9124495481267", "sL_AssetLoss": "18235.2", "sL_BldgLoss": "16638.7", "sL_StrLoss": "13092.7", "sL_NStrLoss": "3546", "sL_ContLoss": "1596.5", "geom_point": "0101000020E6100000BE0D835C161A5FC04EC5BE4BC6A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.40611985799994, 49.3196926580001 ], [ -124.406149437999915, 49.318832473000029 ], [ -124.406026281999971, 49.318830657000106 ], [ -124.406025310999965, 49.318858900000087 ], [ -124.405231437999987, 49.318847190000035 ], [ -124.405230778999965, 49.318866320000097 ], [ -124.404215123000014, 49.318851330000079 ], [ -124.404214640999953, 49.318865344000109 ], [ -124.398718931999937, 49.318784068000085 ], [ -124.398761826999944, 49.317542443 ], [ -124.408673533999959, 49.317901963000097 ], [ -124.408906016999978, 49.31791037500011 ], [ -124.418239882999941, 49.318247957000104 ], [ -124.418232571999965, 49.318462197000017 ], [ -124.417234388999958, 49.318447585000051 ], [ -124.417221952999952, 49.318811722000135 ], [ -124.415302233999967, 49.31878359300002 ], [ -124.415293888999955, 49.31902767000004 ], [ -124.41262959099997, 49.318988575000027 ], [ -124.412627085999958, 49.319061735000062 ], [ -124.411640576999957, 49.319047243000121 ], [ -124.411615685999962, 49.319773559000168 ], [ -124.40611985799994, 49.3196926580001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.907412761603985", "sL_AssetLoss": "4496.3", "sL_BldgLoss": "4080", "sL_StrLoss": "3026.1", "sL_NStrLoss": "1053.9", "sL_ContLoss": "416.3", "geom_point": "0101000020E61000006803343AF51E5FC06EDB18B7A8AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.482307172, 49.34760647300002 ], [ -124.485573513999938, 49.347652256000075 ], [ -124.48551631, 49.349401779000047 ], [ -124.485112035, 49.349525994000018 ], [ -124.484742289999957, 49.349639599000078 ], [ -124.484186386999951, 49.349899143000123 ], [ -124.483934992999963, 49.350134972000077 ], [ -124.48368258, 49.350371824000021 ], [ -124.483197463999915, 49.350383081000082 ], [ -124.483073679999947, 49.350385952000053 ], [ -124.482707208999955, 49.350394454000089 ], [ -124.482212841999981, 49.35086169900007 ], [ -124.482144986999984, 49.350407527000115 ], [ -124.482307172, 49.34760647300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5336000", "BldgCostT": "3680000", "sL_LossRatio": "0.944419726890038", "sL_AssetLoss": "9350.08", "sL_BldgLoss": "8830.4", "sL_StrLoss": "7312.8", "sL_NStrLoss": "1517.6", "sL_ContLoss": "519.68", "geom_point": "0101000020E610000085F514736F1E5FC02F206A9123AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.472862656999936, 49.335184804000065 ], [ -124.47836043699999, 49.335262309 ], [ -124.478303818999962, 49.336986174000046 ], [ -124.478242236999961, 49.338861050000098 ], [ -124.472744030999976, 49.338783539000104 ], [ -124.472830933999944, 49.336147244000124 ], [ -124.472862656999936, 49.335184804000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60439833", "BldgCostT": "40683333", "sL_LossRatio": "0.91366363198657", "sL_AssetLoss": "119922.58", "sL_BldgLoss": "109568.9", "sL_StrLoss": "87063.6", "sL_NStrLoss": "22505.3", "sL_ContLoss": "10353.68", "geom_point": "0101000020E6100000011864051E1D5FC0A5155B18D4AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.455391585999934, 49.34017998500007 ], [ -124.455407792999935, 49.339693895000018 ], [ -124.455000218999913, 49.339688073000112 ], [ -124.454999663999956, 49.339704725000068 ], [ -124.454365197999962, 49.339695659000085 ], [ -124.454365039, 49.339700441000105 ], [ -124.453443148999924, 49.339687261000051 ], [ -124.453440704999977, 49.339760465000062 ], [ -124.452788861999963, 49.339751140000075 ], [ -124.45278748099993, 49.339792480000014 ], [ -124.452561905999971, 49.339789253000056 ], [ -124.452514934999954, 49.339772156000045 ], [ -124.45191168299999, 49.339552661000027 ], [ -124.450878768999942, 49.339392957000044 ], [ -124.448935374999948, 49.339356996000085 ], [ -124.444569664999932, 49.339295981000134 ], [ -124.444404374999976, 49.339293671000107 ], [ -124.443352679, 49.339278935000074 ], [ -124.443159864, 49.339276230000081 ], [ -124.444409601999965, 49.337513412000092 ], [ -124.443428878999967, 49.335147301000092 ], [ -124.443885911999971, 49.335153879000174 ], [ -124.443892647999945, 49.334953345000017 ], [ -124.44386866499994, 49.334952999000052 ], [ -124.443989523999932, 49.331354276000091 ], [ -124.44524012899997, 49.331372267000027 ], [ -124.445246383999972, 49.331185807000068 ], [ -124.450052423999963, 49.33125481000009 ], [ -124.450172091999974, 49.327677019000063 ], [ -124.455668943999967, 49.32775567900007 ], [ -124.455639708999939, 49.32863287100011 ], [ -124.456549164999942, 49.328645858000122 ], [ -124.456512774999979, 49.329738353000081 ], [ -124.456911840999922, 49.329744050000087 ], [ -124.456928433999948, 49.32924579200008 ], [ -124.457208098999928, 49.32924978300013 ], [ -124.45724348199991, 49.328186997000039 ], [ -124.457943035999989, 49.328196977000076 ], [ -124.457952069000015, 49.327925514000128 ], [ -124.46344896299999, 49.32800377800006 ], [ -124.463437814999978, 49.328339994000025 ], [ -124.463584279999978, 49.328342076000069 ], [ -124.46346495, 49.331940837000062 ], [ -124.4623391799999, 49.331924833000095 ], [ -124.462306058999928, 49.332922862000039 ], [ -124.461509099999958, 49.332911526000061 ], [ -124.461492556999971, 49.333409781000107 ], [ -124.455995023999947, 49.333331418000022 ], [ -124.456031428999964, 49.332238930000102 ], [ -124.45093190299994, 49.332165990000142 ], [ -124.450961227999954, 49.331288803000135 ], [ -124.450742942999938, 49.331285676000086 ], [ -124.450720769999961, 49.33194880000007 ], [ -124.450742984999948, 49.331949119000029 ], [ -124.450727551999989, 49.332410677000091 ], [ -124.450835008999945, 49.332412217000076 ], [ -124.450816115999928, 49.332977280000087 ], [ -124.451006937999949, 49.332980014000078 ], [ -124.450988707999954, 49.333525330000029 ], [ -124.451148066, 49.333527612000083 ], [ -124.451140578999954, 49.333751557000078 ], [ -124.451092606999936, 49.335186598000057 ], [ -124.453395282999935, 49.335219559000102 ], [ -124.453391336999985, 49.335337779000049 ], [ -124.453520479999924, 49.335339626000078 ], [ -124.458779989999954, 49.335414718000052 ], [ -124.45875721499999, 49.336099396000122 ], [ -124.459900889999943, 49.336115691 ], [ -124.45988334, 49.336643631000143 ], [ -124.460589423999949, 49.336653685000023 ], [ -124.460645153999934, 49.334976400000066 ], [ -124.463985463999947, 49.335023902000017 ], [ -124.466142888999954, 49.335054527000047 ], [ -124.466133919999962, 49.335325443000073 ], [ -124.466110002999955, 49.336047841000081 ], [ -124.467066513999953, 49.336061406000056 ], [ -124.467018991999979, 49.337497665000036 ], [ -124.466947434999923, 49.339660128000091 ], [ -124.466873246999938, 49.339659077000142 ], [ -124.466860953999941, 49.340030530000057 ], [ -124.463663490999963, 49.339985152000061 ], [ -124.461362628, 49.339952440000047 ], [ -124.461407953999952, 49.338587680000096 ], [ -124.460945651999936, 49.338581102000013 ], [ -124.460889929999965, 49.340258378000065 ], [ -124.455391585999934, 49.34017998500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111418834", "BldgCostT": "74868334", "sL_LossRatio": "0.820794311531317", "sL_AssetLoss": "107054.47", "sL_BldgLoss": "87869.7", "sL_StrLoss": "55719", "sL_NStrLoss": "32150.7", "sL_ContLoss": "19184.77", "geom_point": "0101000020E61000001FC3C669C61F5FC0C5F4A53387A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.494992713999963, 49.329895040000103 ], [ -124.495035394999988, 49.32858091300006 ], [ -124.491407461, 49.328530351000083 ], [ -124.491410223999978, 49.328445479000123 ], [ -124.488259547999988, 49.328401470000138 ], [ -124.488376943999967, 49.324802662000074 ], [ -124.493873517999958, 49.32487938000007 ], [ -124.493870759999979, 49.324964252000015 ], [ -124.494173724999968, 49.324968473000041 ], [ -124.494184321999967, 49.32464233000011 ], [ -124.493803387999904, 49.324637023000051 ], [ -124.49392034399996, 49.321038189000063 ], [ -124.49556377299993, 49.321061075000074 ], [ -124.495663049999933, 49.318002425000067 ], [ -124.50115883, 49.318078773000131 ], [ -124.501145221999963, 49.318499615000057 ], [ -124.501109954999919, 49.319590142000067 ], [ -124.501861294999983, 49.31960055800004 ], [ -124.501839196999953, 49.320284220000097 ], [ -124.50328466399999, 49.320265422000055 ], [ -124.503325729999929, 49.321614225000062 ], [ -124.501795560999966, 49.32163412200007 ], [ -124.501744960999986, 49.323199408000065 ], [ -124.501091424999942, 49.323190348000011 ], [ -124.501030839999927, 49.325063521000132 ], [ -124.500022206999944, 49.325049530000086 ], [ -124.499979578999941, 49.325048939000048 ], [ -124.499937033999942, 49.326363323000031 ], [ -124.499980423999958, 49.326363926000077 ], [ -124.500606353999927, 49.326372609000011 ], [ -124.50048990399992, 49.329971421000025 ], [ -124.499866011, 49.329962766000101 ], [ -124.494992713999963, 49.329895040000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16267558", "BldgCostT": "9728642", "sL_LossRatio": "0.724791880370107", "sL_AssetLoss": "50264.36", "sL_BldgLoss": "36431.2", "sL_StrLoss": "19519.4", "sL_NStrLoss": "16911.8", "sL_ContLoss": "13833.16", "geom_point": "0101000020E610000092F6374FD21E5FC011846DBC22A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.479642918999929, 49.323497059000047 ], [ -124.479644171999951, 49.323458861000077 ], [ -124.478632782999952, 49.323444632000047 ], [ -124.478644030999973, 49.323101988000083 ], [ -124.477807473, 49.3230902110001 ], [ -124.477925666999923, 49.319491387000092 ], [ -124.479311174999935, 49.31951088700005 ], [ -124.479323831999935, 49.319125122000095 ], [ -124.484819717999983, 49.319202300000036 ], [ -124.484794656999924, 49.319968912000057 ], [ -124.485256949999922, 49.319975391000106 ], [ -124.485139322999942, 49.323574221000086 ], [ -124.479642918999929, 49.323497059000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223912228", "BldgCostT": "147599857", "sL_LossRatio": "0.789527169308714", "sL_AssetLoss": "429534.3", "sL_BldgLoss": "339129", "sL_StrLoss": "212916", "sL_NStrLoss": "126213", "sL_ContLoss": "90405.3", "geom_point": "0101000020E6100000DE12036E271F5FC0F5F410AE7CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.4935812, 49.317704136000053 ], [ -124.493630791999962, 49.316178194000067 ], [ -124.491622718999949, 49.316150188000073 ], [ -124.491732592999966, 49.312773503000123 ], [ -124.490785190999958, 49.312760276000056 ], [ -124.490788744999975, 49.312651096000153 ], [ -124.490249378999962, 49.312643563000073 ], [ -124.49025240499995, 49.312550632000104 ], [ -124.489695263, 49.312542848000142 ], [ -124.489707412999934, 49.3121699450001 ], [ -124.488888409, 49.31215849700002 ], [ -124.488878627999895, 49.312458558000102 ], [ -124.488576783999974, 49.312454337000062 ], [ -124.483383533999969, 49.312381585 ], [ -124.483402571999974, 49.31179967100006 ], [ -124.48240453199999, 49.311785661000023 ], [ -124.482424017999932, 49.3111903920001 ], [ -124.481356745999946, 49.311175399000078 ], [ -124.48135415899992, 49.311254348000062 ], [ -124.475859220999908, 49.311176992000057 ], [ -124.475876441999972, 49.310653191000085 ], [ -124.475329832999961, 49.310645480000105 ], [ -124.475333903999953, 49.310521658000084 ], [ -124.474689516999931, 49.310512564000085 ], [ -124.474699747999978, 49.310201600000021 ], [ -124.471881930999956, 49.310161792000088 ], [ -124.471889708999967, 49.309925838000041 ], [ -124.470625897999966, 49.30990796 ], [ -124.470629281999919, 49.30980538400005 ], [ -124.470188787999973, 49.309799149000078 ], [ -124.470193458999987, 49.30965759900004 ], [ -124.469659276999948, 49.309650035000125 ], [ -124.469661941999973, 49.309569294000028 ], [ -124.469099060999923, 49.309561321000118 ], [ -124.469104492999932, 49.30939681900005 ], [ -124.468489549999958, 49.309388106000029 ], [ -124.468491756999981, 49.309321294000043 ], [ -124.467800027999914, 49.309311488000105 ], [ -124.467806285000037, 49.309122195000057 ], [ -124.46723361799998, 49.309114074000092 ], [ -124.467315855999942, 49.306626602000087 ], [ -124.462371087999955, 49.306556354000065 ], [ -124.46237829499999, 49.306339051000116 ], [ -124.460443066999957, 49.306311497000081 ], [ -124.460427868999986, 49.306769181000078 ], [ -124.460388966999972, 49.306768626000121 ], [ -124.460378384999942, 49.307087282000069 ], [ -124.45991793599994, 49.307080721000048 ], [ -124.459940598999978, 49.30597815400003 ], [ -124.459947710999955, 49.305632947000063 ], [ -124.459948013999949, 49.305620028000099 ], [ -124.459939003999949, 49.30517 ], [ -124.45993746299996, 49.305041782000082 ], [ -124.459936509999949, 49.304960832000098 ], [ -124.459934987999986, 49.304834997000086 ], [ -124.459911013999914, 49.30447537700006 ], [ -124.4598552, 49.303638511000045 ], [ -124.459830298999961, 49.301809178000035 ], [ -124.459828080999969, 49.301645918000062 ], [ -124.459815302999942, 49.300707032000112 ], [ -124.459855402999921, 49.300707604000124 ], [ -124.459860928999916, 49.300541203000058 ], [ -124.45981303799999, 49.300540520000069 ], [ -124.459805642999982, 49.299997030000029 ], [ -124.459798099999958, 49.299443010000104 ], [ -124.462520706999968, 49.299498317000072 ], [ -124.462761190999956, 49.299503209000171 ], [ -124.465108463999968, 49.299488430000132 ], [ -124.466932301999947, 49.299476894000122 ], [ -124.467117528999921, 49.29947708200006 ], [ -124.47067639799999, 49.299480501000083 ], [ -124.470980916999963, 49.299480753000076 ], [ -124.47148964299997, 49.299481164000071 ], [ -124.473278252999975, 49.299482591000093 ], [ -124.475671549999959, 49.299484438000079 ], [ -124.47614477499999, 49.29948478900009 ], [ -124.478607030999981, 49.299495234000062 ], [ -124.478561744999951, 49.300875447000045 ], [ -124.477370060999988, 49.300858660000117 ], [ -124.4773425449999, 49.301696575000079 ], [ -124.474190193999959, 49.301652105000137 ], [ -124.474159469999961, 49.302585752000013 ], [ -124.471750733999926, 49.302551709000113 ], [ -124.471745992999928, 49.302695505000081 ], [ -124.474245622999931, 49.30273083100009 ], [ -124.474226611999981, 49.303308582000106 ], [ -124.47638777899995, 49.303339077000096 ], [ -124.476365275999981, 49.304023829000087 ], [ -124.479515103999972, 49.304068197000085 ], [ -124.479511022999986, 49.304192686000043 ], [ -124.48000607199999, 49.304199651000076 ], [ -124.480036122999948, 49.303282995000082 ], [ -124.480232569999927, 49.303285758000087 ], [ -124.480256831999966, 49.302545536000068 ], [ -124.479722289999984, 49.302538016 ], [ -124.479821881999953, 49.299500365000071 ], [ -124.481990476999925, 49.299509494000084 ], [ -124.481979165999945, 49.300003945000043 ], [ -124.481974009999959, 49.300228628000063 ], [ -124.481939100999966, 49.30174906600012 ], [ -124.481935712999942, 49.301896801000048 ], [ -124.481905894999969, 49.303188923000086 ], [ -124.481883520999972, 49.304160511000063 ], [ -124.481875224999968, 49.304520328000052 ], [ -124.481827782999957, 49.306576992000053 ], [ -124.482569360999946, 49.306561374000061 ], [ -124.483119545999955, 49.306549797000109 ], [ -124.483161694999978, 49.306548892000052 ], [ -124.485894002999942, 49.306414404000058 ], [ -124.487009593, 49.30642099700006 ], [ -124.487359072999965, 49.306451122000063 ], [ -124.487708510999965, 49.306482089000077 ], [ -124.488702788999944, 49.306669797000104 ], [ -124.489627784, 49.306961706000067 ], [ -124.491500345999938, 49.307821354000055 ], [ -124.492065624999924, 49.308080858000054 ], [ -124.492308956999963, 49.30819254199999 ], [ -124.492938398999954, 49.30848149300008 ], [ -124.493449768999966, 49.308725663000104 ], [ -124.493649918999949, 49.308821219000066 ], [ -124.494298632, 49.309130939000077 ], [ -124.494808610999968, 49.309374410000089 ], [ -124.495785916999964, 49.309751598000098 ], [ -124.496124978999958, 49.309828731000053 ], [ -124.497858613999966, 49.310223027000113 ], [ -124.499023313999956, 49.310487901000045 ], [ -124.500421790999937, 49.310792124000081 ], [ -124.500748327999986, 49.310863172000033 ], [ -124.502118892999988, 49.311161305000105 ], [ -124.503226775999948, 49.311402264000087 ], [ -124.503308988999933, 49.311195492000131 ], [ -124.504743923999982, 49.311451198000064 ], [ -124.507251243999974, 49.311821985000051 ], [ -124.50763848299999, 49.31187927600007 ], [ -124.508370667999898, 49.311987528000074 ], [ -124.508765356999959, 49.312045909000069 ], [ -124.508731023999971, 49.30990853200008 ], [ -124.508713237999956, 49.308838028000153 ], [ -124.508558833, 49.308556936000059 ], [ -124.507776110999913, 49.30785120400008 ], [ -124.506761689999948, 49.307046805000013 ], [ -124.507031571, 49.30685879300006 ], [ -124.507265017999941, 49.306781011000055 ], [ -124.50996594799993, 49.306756822000104 ], [ -124.510113212999926, 49.306755490000064 ], [ -124.510163285999923, 49.307903321000026 ], [ -124.510208986999956, 49.308951416000127 ], [ -124.510251656999969, 49.309932193000144 ], [ -124.510310830999984, 49.310014933000019 ], [ -124.51032580899999, 49.310684783000056 ], [ -124.510357640999956, 49.312108384000027 ], [ -124.510388098999954, 49.312443632000054 ], [ -124.511245923999965, 49.312479769000085 ], [ -124.511878417999952, 49.312471387000102 ], [ -124.512072599999925, 49.312444355000082 ], [ -124.513714078999953, 49.312216106000086 ], [ -124.514087296999932, 49.312164220000042 ], [ -124.514205998999969, 49.31240619400009 ], [ -124.514214760999963, 49.312411380000135 ], [ -124.514270973999913, 49.31244457600009 ], [ -124.514365091999935, 49.312500211000042 ], [ -124.515000100999927, 49.312714095000032 ], [ -124.515316188999975, 49.312758993000017 ], [ -124.516314385, 49.312790687000124 ], [ -124.518878495999928, 49.312893411000069 ], [ -124.51968739599999, 49.312829197000021 ], [ -124.519701087999977, 49.312828108000069 ], [ -124.520319382999958, 49.31270159800011 ], [ -124.521185308, 49.31248569200006 ], [ -124.523015294999965, 49.311687106000058 ], [ -124.524229502999987, 49.31132300900002 ], [ -124.524737401999971, 49.311256086000114 ], [ -124.525542385000037, 49.311244721000129 ], [ -124.525677892999909, 49.311242804000059 ], [ -124.526298386999954, 49.3113071020001 ], [ -124.526950246999931, 49.311451429000087 ], [ -124.527693206999942, 49.311615907000025 ], [ -124.528164905, 49.311694398000036 ], [ -124.529038036999907, 49.311785300000025 ], [ -124.530233289999913, 49.311909698000143 ], [ -124.532404491999912, 49.311702502000045 ], [ -124.534333510999943, 49.311809712000191 ], [ -124.534379071999979, 49.312056352000091 ], [ -124.531514323999914, 49.312017465000018 ], [ -124.531515906999928, 49.312068514000089 ], [ -124.531103311999971, 49.312073983000076 ], [ -124.531111674999963, 49.312343740000088 ], [ -124.530699076999937, 49.312349206000064 ], [ -124.530707437999979, 49.312618964000116 ], [ -124.530294837999961, 49.312624429000024 ], [ -124.530303195999963, 49.312894186000023 ], [ -124.529890593999951, 49.312899650000112 ], [ -124.529898948999957, 49.313169407000039 ], [ -124.528661133999961, 49.31318579100008 ], [ -124.528652784999949, 49.312916034000096 ], [ -124.528240181999962, 49.312921492000058 ], [ -124.528231835999989, 49.312651733000074 ], [ -124.527819234999953, 49.31265719000001 ], [ -124.527810889999969, 49.312387432000072 ], [ -124.527398291999944, 49.312392888000048 ], [ -124.527389948999911, 49.312123130000082 ], [ -124.526977351999918, 49.312128583000046 ], [ -124.526973836, 49.312014890000086 ], [ -124.526533367999946, 49.312008886000037 ], [ -124.526460921999941, 49.314288017000052 ], [ -124.525024329999937, 49.314268422000033 ], [ -124.525014082999959, 49.314590453000051 ], [ -124.522371386999978, 49.314554355000041 ], [ -124.522360195999966, 49.314905418000031 ], [ -124.52017452099993, 49.314875514000022 ], [ -124.520168018999939, 49.315079172 ], [ -124.51727260399997, 49.315039490000053 ], [ -124.517261521999941, 49.315385943000088 ], [ -124.515898679999978, 49.315367238000093 ], [ -124.515858237999964, 49.316630375000052 ], [ -124.510362604999969, 49.316554774000082 ], [ -124.51045016799999, 49.313829973000033 ], [ -124.510232461, 49.313826971000061 ], [ -124.507226854999956, 49.313785500000087 ], [ -124.507229803000016, 49.313693958000066 ], [ -124.506580235999962, 49.313684985000052 ], [ -124.506587424, 49.313461873000122 ], [ -124.505725595999948, 49.313449961000082 ], [ -124.505714371999929, 49.313798135000063 ], [ -124.500219091999924, 49.313722018000114 ], [ -124.500220151999926, 49.313689276000105 ], [ -124.499104553, 49.313673790000081 ], [ -124.499107373999919, 49.313586644000068 ], [ -124.497204722999982, 49.313560206000083 ], [ -124.497185478999981, 49.314153811000082 ], [ -124.499193468999948, 49.314181714000078 ], [ -124.499076939999981, 49.317780590000076 ], [ -124.4935812, 49.317704136000053 ] ], [ [ -124.464688106999915, 49.301725035000068 ], [ -124.464715150999922, 49.300908231000086 ], [ -124.46322266699994, 49.300887013000093 ], [ -124.46321075199991, 49.301246499000072 ], [ -124.463232851, 49.30124681300002 ], [ -124.463225519999952, 49.301468007000025 ], [ -124.46467941, 49.301488676000119 ], [ -124.464671590999956, 49.301724801000098 ], [ -124.464688106999915, 49.301725035000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.942169158798037", "sL_AssetLoss": "5226.45", "sL_BldgLoss": "4924.2", "sL_StrLoss": "3790.1", "sL_NStrLoss": "1134.1", "sL_ContLoss": "302.25", "geom_point": "0101000020E61000004CCE81CC6B205FC0FD853F3FE3A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.505829283999958, 49.295404443000031 ], [ -124.505821063999988, 49.295134683000121 ], [ -124.506645980999934, 49.295123928000073 ], [ -124.506629532999938, 49.29458440500008 ], [ -124.50786689499995, 49.294568262000105 ], [ -124.507875124999899, 49.294838024000057 ], [ -124.508287581999966, 49.29483264000001 ], [ -124.508295813999936, 49.295102401000044 ], [ -124.508708272999954, 49.29509701500011 ], [ -124.508716507999949, 49.295366777000041 ], [ -124.508827460999953, 49.295365328000109 ], [ -124.509041966999987, 49.296711869000049 ], [ -124.507107799999986, 49.296737114000138 ], [ -124.507116026999938, 49.297006876000097 ], [ -124.503816229, 49.297049874000095 ], [ -124.50379160199999, 49.296240590000131 ], [ -124.504204070999933, 49.296235220000021 ], [ -124.504195859999967, 49.295965459000151 ], [ -124.504608326999943, 49.295960087000047 ], [ -124.504591899999951, 49.295420565000086 ], [ -124.505829283999958, 49.295404443000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151919260", "BldgCostT": "97595715", "sL_LossRatio": "0.833678950483581", "sL_AssetLoss": "377103.2", "sL_BldgLoss": "314383", "sL_StrLoss": "214172", "sL_NStrLoss": "100211", "sL_ContLoss": "62720.2", "geom_point": "0101000020E610000049824786A21F5FC0E059ED2784A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.504743923999982, 49.311451198000064 ], [ -124.503308988999933, 49.311195492000131 ], [ -124.503226775999948, 49.311402264000087 ], [ -124.502118892999988, 49.311161305000105 ], [ -124.500748327999986, 49.310863172000033 ], [ -124.500421790999937, 49.310792124000081 ], [ -124.499023313999956, 49.310487901000045 ], [ -124.497858613999966, 49.310223027000113 ], [ -124.496124978999958, 49.309828731000053 ], [ -124.495785916999964, 49.309751598000098 ], [ -124.494808610999968, 49.309374410000089 ], [ -124.494298632, 49.309130939000077 ], [ -124.493649918999949, 49.308821219000066 ], [ -124.493449768999966, 49.308725663000104 ], [ -124.492938398999954, 49.30848149300008 ], [ -124.492308956999963, 49.30819254199999 ], [ -124.492065624999924, 49.308080858000054 ], [ -124.491500345999938, 49.307821354000055 ], [ -124.489627784, 49.306961706000067 ], [ -124.488702788999944, 49.306669797000104 ], [ -124.487708510999965, 49.306482089000077 ], [ -124.487359072999965, 49.306451122000063 ], [ -124.487009593, 49.30642099700006 ], [ -124.485894002999942, 49.306414404000058 ], [ -124.483161694999978, 49.306548892000052 ], [ -124.483119545999955, 49.306549797000109 ], [ -124.482569360999946, 49.306561374000061 ], [ -124.481827782999957, 49.306576992000053 ], [ -124.481875224999968, 49.304520328000052 ], [ -124.481883520999972, 49.304160511000063 ], [ -124.481905894999969, 49.303188923000086 ], [ -124.481935712999942, 49.301896801000048 ], [ -124.481939100999966, 49.30174906600012 ], [ -124.481974009999959, 49.300228628000063 ], [ -124.481979165999945, 49.300003945000043 ], [ -124.481990476999925, 49.299509494000084 ], [ -124.481991122999915, 49.299482041000026 ], [ -124.481985771, 49.299455115000072 ], [ -124.481962586999956, 49.299338328000047 ], [ -124.48193347499992, 49.299121599000046 ], [ -124.481928896999989, 49.298968445000142 ], [ -124.485267472999936, 49.299015303000076 ], [ -124.485333796999967, 49.296984836000078 ], [ -124.484050990999904, 49.296966844000039 ], [ -124.48406773399995, 49.296454686000054 ], [ -124.481948890999917, 49.296424933000068 ], [ -124.481947469999938, 49.296377755000016 ], [ -124.481941832999894, 49.296188926000141 ], [ -124.48194648299993, 49.296088218000072 ], [ -124.481950187, 49.296008903000029 ], [ -124.48194534699999, 49.295847054000049 ], [ -124.481953412999985, 49.295658047000046 ], [ -124.48195104899996, 49.295579286000084 ], [ -124.481948011, 49.295478193000108 ], [ -124.481946180999955, 49.295417298000089 ], [ -124.481944760999937, 49.295370301000069 ], [ -124.48194317, 49.295316343000103 ], [ -124.481951237999937, 49.295127337000075 ], [ -124.481948543999948, 49.295037393000058 ], [ -124.481955813999932, 49.294821408000075 ], [ -124.481962831999908, 49.294596427000066 ], [ -124.482046284999981, 49.294401209000085 ], [ -124.482110011999936, 49.294262398000022 ], [ -124.482019825999913, 49.29124669900002 ], [ -124.482511306999982, 49.291253605000065 ], [ -124.482522823999957, 49.290901625000117 ], [ -124.482009291999958, 49.290894410000092 ], [ -124.481944628999955, 49.288731904000073 ], [ -124.482886615999959, 49.288736870000086 ], [ -124.483752838999962, 49.288741453000092 ], [ -124.48461987099995, 49.288746026000062 ], [ -124.486021283999932, 49.288753412000062 ], [ -124.486187282999964, 49.288735894000126 ], [ -124.486455845999913, 49.288707577000068 ], [ -124.487085714000017, 49.2886411590001 ], [ -124.487136504999967, 49.28863579100009 ], [ -124.489929329999939, 49.28888531899999 ], [ -124.489839857999939, 49.291633291000068 ], [ -124.488673389999988, 49.291616977999986 ], [ -124.488662795999986, 49.291942058000046 ], [ -124.489895375999936, 49.29195929600008 ], [ -124.489778181999924, 49.295558282000115 ], [ -124.489592727999948, 49.295555689000011 ], [ -124.489585097999949, 49.295789954000057 ], [ -124.490867873999903, 49.295807881 ], [ -124.490775258999946, 49.29865366800005 ], [ -124.491963503999955, 49.298670261000062 ], [ -124.491930554999968, 49.299683395000059 ], [ -124.491846453999969, 49.302269213000073 ], [ -124.487330671999956, 49.302206087000116 ], [ -124.487272271999956, 49.303996122000044 ], [ -124.485706615999973, 49.303974191000094 ], [ -124.485699667999981, 49.304186906000041 ], [ -124.485877617999989, 49.304189400000084 ], [ -124.48587854099999, 49.304161143000108 ], [ -124.491372662999979, 49.304237990000018 ], [ -124.491370073, 49.304317597000093 ], [ -124.492585522999931, 49.304334559000075 ], [ -124.492548788999954, 49.305464425000068 ], [ -124.494377124999971, 49.305489915000116 ], [ -124.494351077999966, 49.306291971000036 ], [ -124.496304301999885, 49.306319168000094 ], [ -124.496226995999933, 49.308702583000063 ], [ -124.498963005999912, 49.308740622000101 ], [ -124.499968210999953, 49.308754579000038 ], [ -124.499965165000035, 49.308848689000079 ], [ -124.500088620999946, 49.308850403000044 ], [ -124.500099612000014, 49.308510642000059 ], [ -124.498954523999927, 49.308494743000011 ], [ -124.49648666799996, 49.308460436000111 ], [ -124.496512616999965, 49.307660299000105 ], [ -124.496443414999973, 49.307659337000111 ], [ -124.496556308, 49.30417809500004 ], [ -124.49647372599999, 49.304176946000055 ], [ -124.496498542999959, 49.303411645000075 ], [ -124.496239665999937, 49.303408043000097 ], [ -124.496261109999978, 49.302746818000124 ], [ -124.49460814399994, 49.302723802000109 ], [ -124.494698447999923, 49.299942253000012 ], [ -124.494386304000017, 49.299937903000114 ], [ -124.494428181999965, 49.298648097000118 ], [ -124.493618875999942, 49.298636816000077 ], [ -124.492237801999948, 49.298617551000163 ], [ -124.49224493, 49.298398338000034 ], [ -124.490932768000022, 49.298380018000067 ], [ -124.491049879999977, 49.294781046 ], [ -124.492342351999966, 49.294799091000087 ], [ -124.49235484899998, 49.294414677000084 ], [ -124.493790200999982, 49.294434699000178 ], [ -124.494164410999971, 49.294439916000051 ], [ -124.494231892999892, 49.292361519000089 ], [ -124.499724632999985, 49.292437942000099 ], [ -124.499656556999966, 49.294542254000078 ], [ -124.501756284999956, 49.294571395000105 ], [ -124.501748149999983, 49.294823152000099 ], [ -124.502168784999967, 49.294828985000095 ], [ -124.502052534999976, 49.298427969000109 ], [ -124.499932210999958, 49.298398550000044 ], [ -124.499913087999971, 49.298989689000074 ], [ -124.501398748999989, 49.298970392000086 ], [ -124.501406945, 49.299240154000074 ], [ -124.501819438999959, 49.299234792000085 ], [ -124.501839209999929, 49.299885257000049 ], [ -124.501850002999959, 49.299885406000094 ], [ -124.501844443999943, 49.300057472000027 ], [ -124.501860433999965, 49.300583600000031 ], [ -124.501827430999924, 49.300584030000074 ], [ -124.501825275999963, 49.300650713000017 ], [ -124.502084139999965, 49.300654302000098 ], [ -124.501994548999932, 49.303427488000047 ], [ -124.502494709999979, 49.303434421000105 ], [ -124.502494924999965, 49.30342775500003 ], [ -124.503146165999951, 49.303436778000034 ], [ -124.503147499999983, 49.303395470000112 ], [ -124.504310918999934, 49.303411581000077 ], [ -124.504311053999984, 49.303407399 ], [ -124.505049492999945, 49.303417619000072 ], [ -124.505049825999961, 49.303407318000112 ], [ -124.50640301299994, 49.303426032000118 ], [ -124.506404271999941, 49.303386951000071 ], [ -124.507018924999912, 49.303395446000117 ], [ -124.507019847999956, 49.303366767000064 ], [ -124.508961608000021, 49.303393579000073 ], [ -124.50895538599994, 49.303189837000062 ], [ -124.509933017999955, 49.30317706600006 ], [ -124.509958551999944, 49.303985145000063 ], [ -124.509989442999938, 49.304962566000015 ], [ -124.510069771999937, 49.305884513000095 ], [ -124.510113212999926, 49.306755490000064 ], [ -124.50996594799993, 49.306756822000104 ], [ -124.507265017999941, 49.306781011000055 ], [ -124.507031571, 49.30685879300006 ], [ -124.506761689999948, 49.307046805000013 ], [ -124.507776110999913, 49.30785120400008 ], [ -124.508558833, 49.308556936000059 ], [ -124.508713237999956, 49.308838028000153 ], [ -124.508731023999971, 49.30990853200008 ], [ -124.508765356999959, 49.312045909000069 ], [ -124.508370667999898, 49.311987528000074 ], [ -124.50763848299999, 49.31187927600007 ], [ -124.507251243999974, 49.311821985000051 ], [ -124.504743923999982, 49.311451198000064 ] ], [ [ -124.486439469999937, 49.299530003000072 ], [ -124.486445455999927, 49.299346621000034 ], [ -124.485323498999918, 49.299330897000068 ], [ -124.485317163999952, 49.29952485300003 ], [ -124.485289628999965, 49.300367763000118 ], [ -124.486411610999966, 49.300383486000037 ], [ -124.486439469999937, 49.299530003000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4623084", "BldgCostT": "3188334", "sL_LossRatio": "0.918625798254428", "sL_AssetLoss": "12041.9", "sL_BldgLoss": "11062", "sL_StrLoss": "8109", "sL_NStrLoss": "2953", "sL_ContLoss": "979.9", "geom_point": "0101000020E61000000B2A053858195FC081923CB6E9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.393304001999965, 49.274608845000031 ], [ -124.393304889999968, 49.274583186000086 ], [ -124.391962953999936, 49.274563210000039 ], [ -124.392087680999964, 49.270964219000085 ], [ -124.394524109999963, 49.271000476000104 ], [ -124.394530291999928, 49.270821780000034 ], [ -124.400020312999985, 49.270903275000101 ], [ -124.399896200999976, 49.274502276000042 ], [ -124.398801520999939, 49.274486048000043 ], [ -124.39879446899999, 49.274690402000061 ], [ -124.393304001999965, 49.274608845000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.95681775268658", "sL_AssetLoss": "7361.59", "sL_BldgLoss": "7043.7", "sL_StrLoss": "5946", "sL_NStrLoss": "1097.7", "sL_ContLoss": "317.89", "geom_point": "0101000020E61000003550AE637B175FC09B1DEBDAC5A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.364260598999948, 49.25810013299999 ], [ -124.364281849999884, 49.257497161000053 ], [ -124.363936525, 49.257491927000103 ], [ -124.364063378999944, 49.253892875000084 ], [ -124.369551342999983, 49.253975922000052 ], [ -124.369530163000022, 49.25457889799999 ], [ -124.369875466999986, 49.254584115000036 ], [ -124.369749060999965, 49.258183169000077 ], [ -124.364260598999948, 49.25810013299999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54072417", "BldgCostT": "35081667", "sL_LossRatio": "0.902566171281517", "sL_AssetLoss": "105850.3", "sL_BldgLoss": "95536.9", "sL_StrLoss": "71805.4", "sL_NStrLoss": "23731.5", "sL_ContLoss": "10313.4", "geom_point": "0101000020E610000080C486D9111E5FC0B00AABE33EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.459804147999989, 49.29904464400007 ], [ -124.459826755999984, 49.297559506000034 ], [ -124.459828247999965, 49.297460364000045 ], [ -124.459829621999944, 49.29737047400004 ], [ -124.459844586999921, 49.296387607999989 ], [ -124.459816257999989, 49.296252555000116 ], [ -124.463365448, 49.296303096000052 ], [ -124.463336018999954, 49.297191201000118 ], [ -124.467234414999936, 49.297246581000117 ], [ -124.467309206999957, 49.294983656000106 ], [ -124.467324089999948, 49.29498386700002 ], [ -124.467415363999962, 49.292221951000052 ], [ -124.46908268699994, 49.292245593000111 ], [ -124.46909509299995, 49.291869804000051 ], [ -124.468689616999981, 49.291864058000073 ], [ -124.46869329699993, 49.291752606000024 ], [ -124.467160456, 49.29173086600013 ], [ -124.467128519, 49.292697154000081 ], [ -124.461635802999922, 49.292619073000026 ], [ -124.461684353999914, 49.291155357000086 ], [ -124.459797821, 49.291128474000047 ], [ -124.459844889999943, 49.288641705 ], [ -124.459844220999969, 49.288332905000111 ], [ -124.459838337999926, 49.28561936200002 ], [ -124.461175685999933, 49.285638425000037 ], [ -124.461153224999961, 49.286315452000046 ], [ -124.46328243, 49.286345767000114 ], [ -124.463396262999979, 49.282909625000045 ], [ -124.464476158999901, 49.282924984000076 ], [ -124.464491846999977, 49.282451052000042 ], [ -124.464893021999956, 49.28245675400008 ], [ -124.464923181999978, 49.281545359000084 ], [ -124.470414591999955, 49.281623274000012 ], [ -124.470295911999969, 49.285222296000036 ], [ -124.470262288999919, 49.285221819000114 ], [ -124.470219001999979, 49.286534362000069 ], [ -124.471453003999954, 49.286551833000033 ], [ -124.471493102999972, 49.285335033000131 ], [ -124.476984971999983, 49.285412614000087 ], [ -124.476964789999954, 49.286027253000064 ], [ -124.47718984799999, 49.286030426000124 ], [ -124.477191238999964, 49.28598807700012 ], [ -124.481796722999945, 49.28605291100012 ], [ -124.481944628999955, 49.288731904000073 ], [ -124.482009291999958, 49.290894410000092 ], [ -124.480968542999975, 49.2908797790001 ], [ -124.480988988999954, 49.290255515000077 ], [ -124.478993106999951, 49.290227429000026 ], [ -124.479004753999945, 49.289872269000107 ], [ -124.478808714999957, 49.289869508000045 ], [ -124.478767789999935, 49.291117268000036 ], [ -124.475197440999963, 49.291066929000074 ], [ -124.475117181999963, 49.293507953000123 ], [ -124.474536674999953, 49.293499758000031 ], [ -124.474501320999977, 49.294574565000119 ], [ -124.474304560999911, 49.294571786000077 ], [ -124.474261714999955, 49.29587414300007 ], [ -124.474316105999961, 49.295874910000087 ], [ -124.474284069999925, 49.296848609000094 ], [ -124.478070526999971, 49.296902016000082 ], [ -124.478058521999955, 49.297267751000099 ], [ -124.478679824999915, 49.297276502000067 ], [ -124.478607030999981, 49.299495234000062 ], [ -124.47614477499999, 49.29948478900009 ], [ -124.475671549999959, 49.299484438000079 ], [ -124.473278252999975, 49.299482591000093 ], [ -124.47148964299997, 49.299481164000071 ], [ -124.470980916999963, 49.299480753000076 ], [ -124.47067639799999, 49.299480501000083 ], [ -124.467117528999921, 49.29947708200006 ], [ -124.466932301999947, 49.299476894000122 ], [ -124.465108463999968, 49.299488430000132 ], [ -124.462761190999956, 49.299503209000171 ], [ -124.462520706999968, 49.299498317000072 ], [ -124.459798099999958, 49.299443010000104 ], [ -124.459804147999989, 49.29904464400007 ] ], [ [ -124.468652214999949, 49.299096000000141 ], [ -124.468668476999966, 49.298603563000029 ], [ -124.467740391999911, 49.298590405000063 ], [ -124.467724120999932, 49.299082842000104 ], [ -124.468652214999949, 49.299096000000141 ] ], [ [ -124.466149190999971, 49.287458530000059 ], [ -124.466171518999957, 49.286783335000095 ], [ -124.46471687499999, 49.286762669000083 ], [ -124.464724602000018, 49.28652921700003 ], [ -124.463403648999986, 49.2865104320001 ], [ -124.463373546999989, 49.287419078000028 ], [ -124.466149190999971, 49.287458530000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "0.907515512483789", "sL_AssetLoss": "8875.11", "sL_BldgLoss": "8054.3", "sL_StrLoss": "5924.8", "sL_NStrLoss": "2129.5", "sL_ContLoss": "820.81", "geom_point": "0101000020E6100000C3028850DF195FC0B566D07506A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.401571856999979, 49.271794557000113 ], [ -124.407062003999954, 49.271875695000027 ], [ -124.406938435999933, 49.275474697000057 ], [ -124.401447862999973, 49.275393554000082 ], [ -124.401571856999979, 49.271794557000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81395083", "BldgCostT": "56893333", "sL_LossRatio": "0.893081525519244", "sL_AssetLoss": "63030.08", "sL_BldgLoss": "56291", "sL_StrLoss": "26288.9", "sL_NStrLoss": "30002.1", "sL_ContLoss": "6739.08", "geom_point": "0101000020E6100000AF552F7D771B5FC08FE088E668A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.42540872599993, 49.287185130000132 ], [ -124.425407588999974, 49.286618417000035 ], [ -124.425406283999919, 49.285979787000038 ], [ -124.425404745999955, 49.285223955000085 ], [ -124.425403998999954, 49.284852183000055 ], [ -124.425023980999967, 49.281399001000111 ], [ -124.42356333, 49.280818267000079 ], [ -124.422739221999962, 49.280490596000121 ], [ -124.42235439400001, 49.280496692000078 ], [ -124.421345158999941, 49.280620395000078 ], [ -124.421418784999929, 49.27845676800009 ], [ -124.423884204, 49.278492780000079 ], [ -124.423898909999934, 49.278059929000051 ], [ -124.429389837999949, 49.278139931000084 ], [ -124.429267984999953, 49.281738925000056 ], [ -124.42811916, 49.281722210000027 ], [ -124.42808562399992, 49.282711860000113 ], [ -124.4292600199999, 49.282728947000066 ], [ -124.429236858999957, 49.283412969000047 ], [ -124.43100039700002, 49.283438604000018 ], [ -124.430997929999961, 49.283511554000015 ], [ -124.433855495999964, 49.283553030000107 ], [ -124.433844198999964, 49.283887617000069 ], [ -124.436414821999975, 49.283924864000014 ], [ -124.436379520999978, 49.284972082000124 ], [ -124.436356505999953, 49.285654825000051 ], [ -124.436383783999958, 49.285655220000052 ], [ -124.436032899999958, 49.287261649000108 ], [ -124.436039209999976, 49.288447100000013 ], [ -124.436283915999979, 49.2891853040001 ], [ -124.436096951999943, 49.289202352000046 ], [ -124.43527800899993, 49.289276994000062 ], [ -124.433730705999949, 49.289332005000091 ], [ -124.43312012799997, 49.289339588000118 ], [ -124.433042933999914, 49.289340558000049 ], [ -124.43297581799996, 49.289341392000075 ], [ -124.43279057899997, 49.289343698000103 ], [ -124.43247325, 49.289347649000057 ], [ -124.431265726999982, 49.289362653000133 ], [ -124.431224481999934, 49.289363151000082 ], [ -124.430193421999931, 49.289375967000026 ], [ -124.428859910999932, 49.289392496000055 ], [ -124.42737519399999, 49.289410914000037 ], [ -124.426137906999941, 49.289426232000025 ], [ -124.425601726999929, 49.289432857000079 ], [ -124.425413286999969, 49.289435202000028 ], [ -124.425411466999975, 49.288534326000054 ], [ -124.42540872599993, 49.287185130000132 ] ], [ [ -124.430810220999916, 49.287184841000062 ], [ -124.430810567999941, 49.287174607000054 ], [ -124.42977975399999, 49.287159627000058 ], [ -124.429779406999927, 49.287169860000084 ], [ -124.430810220999916, 49.287184841000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.910915188230203", "sL_AssetLoss": "1848.8", "sL_BldgLoss": "1684.1", "sL_StrLoss": "1146.1", "sL_NStrLoss": "538", "sL_ContLoss": "164.7", "geom_point": "0101000020E61000002D75B1E5AC1C5FC08CF358AF79A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.445360854999961, 49.27784052000009 ], [ -124.445404344999972, 49.276542660000096 ], [ -124.450895131000024, 49.276621568000103 ], [ -124.45087367799999, 49.277264044000042 ], [ -124.450986764999982, 49.27726566700008 ], [ -124.45097153899999, 49.277721693000046 ], [ -124.449089115999968, 49.277622593000046 ], [ -124.445360854999961, 49.27784052000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "0.871516860023853", "sL_AssetLoss": "9223", "sL_BldgLoss": "8038", "sL_StrLoss": "5263", "sL_NStrLoss": "2775", "sL_ContLoss": "1185", "geom_point": "0101000020E610000018F81FD3B9185FC037FFAF3AF2A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.383659402999925, 49.271176710000113 ], [ -124.38914944599999, 49.271258758000087 ], [ -124.389024489999926, 49.274857743000069 ], [ -124.38353402099996, 49.274775690000091 ], [ -124.383659402999925, 49.271176710000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19253500", "BldgCostT": "12310000", "sL_LossRatio": "0.949718906246262", "sL_AssetLoss": "20900.5", "sL_BldgLoss": "19849.6", "sL_StrLoss": "16061.6", "sL_NStrLoss": "3788", "sL_ContLoss": "1050.9", "geom_point": "0101000020E610000072DA5BE3D6195FC083E6630CE6A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.399990234999947, 49.28223925900005 ], [ -124.39948129699998, 49.282141511000169 ], [ -124.399170096, 49.282151174000028 ], [ -124.398580607000014, 49.282169501000027 ], [ -124.398106010999982, 49.282270509000085 ], [ -124.397572604999965, 49.282322886000046 ], [ -124.397332499999948, 49.282315787000066 ], [ -124.396956513999953, 49.282267006000083 ], [ -124.396577761999964, 49.282182995000028 ], [ -124.394390785999974, 49.281698025000033 ], [ -124.393967211999978, 49.281604098000102 ], [ -124.393736062999949, 49.281524549000032 ], [ -124.393010284999932, 49.281274795000101 ], [ -124.39174639, 49.280596773000077 ], [ -124.391534183999937, 49.280482901000035 ], [ -124.391210206999943, 49.280309085000063 ], [ -124.39084959899999, 49.280158037000092 ], [ -124.390726782999963, 49.280106601000092 ], [ -124.390451512999931, 49.280045696000066 ], [ -124.390128717, 49.2800066860001 ], [ -124.38952598899999, 49.28000039700003 ], [ -124.38901552599998, 49.280039564000013 ], [ -124.388179080999976, 49.280103695000115 ], [ -124.385980269999934, 49.280190728000036 ], [ -124.386033576000017, 49.278658590000077 ], [ -124.388896275999912, 49.278701338000054 ], [ -124.388914288999956, 49.278182661000109 ], [ -124.39440517099996, 49.278264440000143 ], [ -124.394383987999944, 49.278876485000055 ], [ -124.395529665999959, 49.278893514000075 ], [ -124.395513820999923, 49.27935164400008 ], [ -124.397017538999961, 49.279373975000091 ], [ -124.39701085899999, 49.279567313000086 ], [ -124.399902743999945, 49.279610202000093 ], [ -124.399896106999961, 49.279802630000056 ], [ -124.401575441999967, 49.279827499000092 ], [ -124.401599230999949, 49.279137079000066 ], [ -124.407090247999946, 49.279218214000096 ], [ -124.407033535000011, 49.280869814000098 ], [ -124.407819121, 49.280881399000059 ], [ -124.407805482999891, 49.281278751000052 ], [ -124.409967417999937, 49.281310603000044 ], [ -124.40998219699999, 49.280879392000095 ], [ -124.410127236999969, 49.280881528000066 ], [ -124.410156138999966, 49.280038194000021 ], [ -124.410856314999947, 49.280048499000053 ], [ -124.41085761399998, 49.280010611000137 ], [ -124.411598075999947, 49.280021504000032 ], [ -124.411602290999909, 49.279898429000077 ], [ -124.415088123999965, 49.279949645000045 ], [ -124.415123608999963, 49.278911013000048 ], [ -124.415725659999964, 49.278919847000076 ], [ -124.415733095999954, 49.27870212900006 ], [ -124.421224085999981, 49.278782545000034 ], [ -124.42116077, 49.280642993000093 ], [ -124.420397088999948, 49.280736591000078 ], [ -124.41883039, 49.280928594000059 ], [ -124.417903206999966, 49.281122583000105 ], [ -124.417816675999958, 49.281140692000108 ], [ -124.417628327999978, 49.281180110000022 ], [ -124.415612208999946, 49.28185808000012 ], [ -124.415041594999963, 49.282073898000036 ], [ -124.414852751999959, 49.282112900000058 ], [ -124.41481131399992, 49.282121459000145 ], [ -124.41447170099994, 49.282191608000076 ], [ -124.414392978999928, 49.282202007000087 ], [ -124.41342272899999, 49.28233035000008 ], [ -124.413185797999915, 49.282361707000085 ], [ -124.410807409, 49.282424912000081 ], [ -124.409573853999959, 49.282407986000081 ], [ -124.409021215999985, 49.28240039399999 ], [ -124.408330896999985, 49.282345213000028 ], [ -124.407517156999944, 49.282236467000146 ], [ -124.407096201999963, 49.282180202000077 ], [ -124.405961389999945, 49.28210770600009 ], [ -124.405498501999958, 49.282109896000073 ], [ -124.404344378999951, 49.282206838000072 ], [ -124.402901784, 49.282328009000089 ], [ -124.400976575999891, 49.282394096000083 ], [ -124.4007051899999, 49.282376609000018 ], [ -124.399990234999947, 49.28223925900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.93814071672654", "sL_AssetLoss": "4565.2", "sL_BldgLoss": "4282.8", "sL_StrLoss": "3592", "sL_NStrLoss": "690.8", "sL_ContLoss": "282.4", "geom_point": "0101000020E6100000F3F03BD9CF1B5FC09434DA05DEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.432610744999934, 49.278375547000074 ], [ -124.436529590999939, 49.278432355000085 ], [ -124.436589487999981, 49.279101401000055 ], [ -124.436586734999963, 49.279391293000138 ], [ -124.436577069999913, 49.280393336000074 ], [ -124.43657092, 49.281037089000044 ], [ -124.436567415999946, 49.281401222000035 ], [ -124.436561341999919, 49.282033572000032 ], [ -124.432489141999923, 49.281974543000032 ], [ -124.432610744999934, 49.278375547000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.909518477043673", "sL_AssetLoss": "8930", "sL_BldgLoss": "8122", "sL_StrLoss": "5830", "sL_NStrLoss": "2292", "sL_ContLoss": "808", "geom_point": "0101000020E6100000F37C618D0E175FC0D3D1378AA8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.359467761, 49.254427105000048 ], [ -124.359476366999914, 49.253873576000061 ], [ -124.35948657699997, 49.253234559000113 ], [ -124.359423586999981, 49.253035546000071 ], [ -124.359406838, 49.253010884000034 ], [ -124.359200943999937, 49.25270797400006 ], [ -124.359122691, 49.25259285700011 ], [ -124.359016579999917, 49.252436784000118 ], [ -124.358977479999979, 49.252379230000059 ], [ -124.358949520999914, 49.252338107000107 ], [ -124.358464556999962, 49.251624656000033 ], [ -124.35820292899993, 49.251376716000081 ], [ -124.357941294999989, 49.251206188000047 ], [ -124.357920007999923, 49.251197765000015 ], [ -124.361522781999938, 49.251252523000034 ], [ -124.361412957999931, 49.254363807000111 ], [ -124.36141477399994, 49.254363834000024 ], [ -124.361287712999953, 49.257962879000083 ], [ -124.360678426000021, 49.257953627000092 ], [ -124.3605844399999, 49.260614490000144 ], [ -124.360006173999949, 49.26060570600005 ], [ -124.360007767999946, 49.260590250000135 ], [ -124.359950992999984, 49.260448053000097 ], [ -124.359478013999961, 49.259885418000088 ], [ -124.359410177999976, 49.259629627000059 ], [ -124.35939979299998, 49.25856448100005 ], [ -124.359435254999966, 49.25640593700011 ], [ -124.359448432999926, 49.255602540000062 ], [ -124.359467761, 49.254427105000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38433720", "BldgCostT": "25010413", "sL_LossRatio": "0.783871462548992", "sL_AssetLoss": "113436.2", "sL_BldgLoss": "88919.4", "sL_StrLoss": "56788.4", "sL_NStrLoss": "32131", "sL_ContLoss": "24516.8", "geom_point": "0101000020E6100000641337D94C175FC0E15F67B754A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.381173508999893, 49.280127624000102 ], [ -124.381526631999932, 49.278863627000128 ], [ -124.381530275000017, 49.277687487000023 ], [ -124.381533072999943, 49.276778520000036 ], [ -124.381534974999937, 49.276167467000093 ], [ -124.38153528199993, 49.276068366000104 ], [ -124.381535520999961, 49.275987425000018 ], [ -124.381536066999956, 49.275816583000093 ], [ -124.381537284999965, 49.275411751000078 ], [ -124.381538314999901, 49.275078672000134 ], [ -124.381541537999965, 49.274043411000044 ], [ -124.381542368999973, 49.273766874000096 ], [ -124.38154421800003, 49.273655325000114 ], [ -124.381561815999987, 49.272593682000043 ], [ -124.38156214199995, 49.27257566400008 ], [ -124.381567279, 49.272265672000103 ], [ -124.381436, 49.272091763000063 ], [ -124.38136768199999, 49.272056538000093 ], [ -124.38123096899993, 49.271986056000038 ], [ -124.379103021999967, 49.271458128000063 ], [ -124.378581254999915, 49.271377375000014 ], [ -124.378457543999971, 49.271366105000055 ], [ -124.378191133999948, 49.271341805000098 ], [ -124.37741780099999, 49.271339865000094 ], [ -124.377280474999949, 49.271339518000126 ], [ -124.376424162999953, 49.271309994000049 ], [ -124.376356594999891, 49.271299820000081 ], [ -124.376290660999985, 49.271269469000039 ], [ -124.376156583999958, 49.271207718000063 ], [ -124.376062067999925, 49.271044232000065 ], [ -124.376077067999987, 49.269752650000065 ], [ -124.376058683999972, 49.269718264000083 ], [ -124.375993303999948, 49.269595658000149 ], [ -124.375882977999979, 49.269491374000104 ], [ -124.375673, 49.269408977000076 ], [ -124.375404312999962, 49.269353078000066 ], [ -124.375176282000027, 49.269305611000057 ], [ -124.373080139999942, 49.268869422000094 ], [ -124.37261662899999, 49.268851631000047 ], [ -124.371851501999942, 49.268906594000029 ], [ -124.370975992999917, 49.268969499000022 ], [ -124.368038278999933, 49.2691804930001 ], [ -124.367600519999897, 49.269211931000036 ], [ -124.367490418999964, 49.269219833000115 ], [ -124.365817457999952, 49.269339941000034 ], [ -124.365721743999984, 49.269346807000112 ], [ -124.365626031999952, 49.269353676000016 ], [ -124.36505019399999, 49.269395008000053 ], [ -124.363627148, 49.269497159000096 ], [ -124.363305347999969, 49.269471564000114 ], [ -124.361511370999921, 49.269055288000068 ], [ -124.360860519999946, 49.26890424000009 ], [ -124.36040688199995, 49.268762312 ], [ -124.360143639999976, 49.268626229000105 ], [ -124.360005045999969, 49.268554569000045 ], [ -124.359775897999896, 49.268705033000089 ], [ -124.359632450999982, 49.268878397000073 ], [ -124.359510601999887, 49.269139415000076 ], [ -124.359495433999911, 49.269385600000049 ], [ -124.359391391999964, 49.271073998000126 ], [ -124.359288382999964, 49.271281716000097 ], [ -124.358013566999958, 49.271262336000078 ], [ -124.358091077999987, 49.269071917000048 ], [ -124.357276270999961, 49.269059522000084 ], [ -124.357277896999918, 49.269013621000063 ], [ -124.355935525999911, 49.268993188000167 ], [ -124.355937001999948, 49.268951514000022 ], [ -124.355918147999958, 49.268951227000095 ], [ -124.355834967999954, 49.271298710000117 ], [ -124.353148380999954, 49.271276007000019 ], [ -124.347305037999945, 49.271282151000037 ], [ -124.347318531, 49.269977035000117 ], [ -124.347284310999925, 49.269743325000043 ], [ -124.347225028999929, 49.269596622000059 ], [ -124.347093496999889, 49.269432515000112 ], [ -124.346071805999927, 49.268701212000117 ], [ -124.350375516, 49.26603039400004 ], [ -124.351239302999929, 49.265410697000029 ], [ -124.351333668999956, 49.265322416000032 ], [ -124.351526190999977, 49.265142282000056 ], [ -124.353022208, 49.263031587000071 ], [ -124.353276922999953, 49.262741088000027 ], [ -124.353531908999983, 49.262519877000088 ], [ -124.353903010999971, 49.262313978000101 ], [ -124.354183630999941, 49.262221086000054 ], [ -124.354547028999932, 49.2621563820001 ], [ -124.358928947, 49.262173571000055 ], [ -124.358868587999936, 49.261939503000079 ], [ -124.358859041999949, 49.261743103000065 ], [ -124.358923115999985, 49.26156223800011 ], [ -124.359142509999955, 49.26137560500009 ], [ -124.359674881999965, 49.261074020000123 ], [ -124.359844932999962, 49.260946358000098 ], [ -124.36076069799995, 49.260960269000115 ], [ -124.360681962999948, 49.263189287000102 ], [ -124.361325711999939, 49.263199061000137 ], [ -124.361316349999953, 49.263464231000079 ], [ -124.361356903999962, 49.263463753000032 ], [ -124.361349481999952, 49.26319397200011 ], [ -124.361761700999921, 49.26318911400012 ], [ -124.361739426999961, 49.262379775000078 ], [ -124.362151637999915, 49.262374914000056 ], [ -124.362144209999911, 49.262105134000059 ], [ -124.36255642, 49.262100273000023 ], [ -124.362548992999905, 49.261830494000058 ], [ -124.365846644, 49.261791550000069 ], [ -124.365876431999965, 49.262870667000122 ], [ -124.365052000999967, 49.262880413000047 ], [ -124.36506688799993, 49.263419972000086 ], [ -124.365479107999974, 49.263415100000032 ], [ -124.36550144499995, 49.264224439000017 ], [ -124.365089217999966, 49.264229311000065 ], [ -124.365096661, 49.264499089000054 ], [ -124.364684432, 49.264503960000141 ], [ -124.36468821899993, 49.264641272000084 ], [ -124.364736523999952, 49.266392416000031 ], [ -124.365148768999987, 49.266387545 ], [ -124.36516446199991, 49.266956312000097 ], [ -124.365475078999964, 49.266961016000074 ], [ -124.367843590999925, 49.266996849000073 ], [ -124.367856792999987, 49.266621506000121 ], [ -124.373346269999928, 49.26670435800002 ], [ -124.373329094999917, 49.267194312000122 ], [ -124.378634603999927, 49.267274121000057 ], [ -124.378628554, 49.267447293000075 ], [ -124.380073461, 49.267468984000075 ], [ -124.38000762199998, 49.269354886000052 ], [ -124.382178296999953, 49.26938743500007 ], [ -124.382175969999963, 49.269454205000052 ], [ -124.383457553999932, 49.26947340200006 ], [ -124.383367400999987, 49.272061013000091 ], [ -124.383413911, 49.272061710000067 ], [ -124.38338492699998, 49.272893595000021 ], [ -124.383479458999958, 49.27289501000012 ], [ -124.3833958699999, 49.275294066000129 ], [ -124.383399407999931, 49.275294119000058 ], [ -124.383396878999946, 49.275366702000035 ], [ -124.384838859999917, 49.27538828100009 ], [ -124.384713557999959, 49.278987239000109 ], [ -124.38259194699999, 49.278955484000079 ], [ -124.382584184999956, 49.27917809200008 ], [ -124.381455519999975, 49.279161181000113 ], [ -124.38143579699998, 49.279726469000117 ], [ -124.385030617999988, 49.279780289000051 ], [ -124.385015, 49.28022893100011 ], [ -124.384530200999961, 49.280248119000099 ], [ -124.383568925999981, 49.280283178000026 ], [ -124.38185290499996, 49.280416893000115 ], [ -124.381388834999896, 49.280453056000049 ], [ -124.38100455499989, 49.280442862000051 ], [ -124.381173508999893, 49.280127624000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.940828402366864", "sL_AssetLoss": "2433.6", "sL_BldgLoss": "2289.6", "sL_StrLoss": "1860.7", "sL_NStrLoss": "428.9", "sL_ContLoss": "144", "geom_point": "0101000020E6100000AD207A10CA1E5FC0C341CE3D9CA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.480093173999961, 49.296398842000059 ], [ -124.480143947999963, 49.294849655000043 ], [ -124.480093569999951, 49.29484894600008 ], [ -124.480211512999944, 49.291249966000088 ], [ -124.48197700599998, 49.291274791000085 ], [ -124.481977943999951, 49.291246110000046 ], [ -124.482019825999913, 49.29124669900002 ], [ -124.482110011999936, 49.294262398000022 ], [ -124.482046284999981, 49.294401209000085 ], [ -124.481962831999908, 49.294596427000066 ], [ -124.481955813999932, 49.294821408000075 ], [ -124.481948543999948, 49.295037393000058 ], [ -124.481951237999937, 49.295127337000075 ], [ -124.48194317, 49.295316343000103 ], [ -124.481944760999937, 49.295370301000069 ], [ -124.481946180999955, 49.295417298000089 ], [ -124.481948011, 49.295478193000108 ], [ -124.48195104899996, 49.295579286000084 ], [ -124.481953412999985, 49.295658047000046 ], [ -124.48194534699999, 49.295847054000049 ], [ -124.481950187, 49.296008903000029 ], [ -124.48194648299993, 49.296088218000072 ], [ -124.481941832999894, 49.296188926000141 ], [ -124.481947469999938, 49.296377755000016 ], [ -124.481948890999917, 49.296424933000068 ], [ -124.480093173999961, 49.296398842000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259285908", "BldgCostT": "168090778", "sL_LossRatio": "0.82169958089352", "sL_AssetLoss": "562816.4", "sL_BldgLoss": "462466", "sL_StrLoss": "295459", "sL_NStrLoss": "167007", "sL_ContLoss": "100350.4", "geom_point": "0101000020E6100000E4F46018111C5FC09E587D017FA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.421425473999975, 49.305372992000073 ], [ -124.420374872999972, 49.305352292000059 ], [ -124.41977495899998, 49.305373901000038 ], [ -124.419067445999971, 49.305399391 ], [ -124.417691898999962, 49.305448891000069 ], [ -124.417675799999969, 49.304886554000127 ], [ -124.417673376999957, 49.304800802000038 ], [ -124.417660857999977, 49.304362908000037 ], [ -124.417648243000016, 49.303922276000051 ], [ -124.417579099999983, 49.30150459700009 ], [ -124.417626385999952, 49.299999795000076 ], [ -124.41764084499998, 49.299540849000095 ], [ -124.417643422999944, 49.299459399000064 ], [ -124.41764356799996, 49.299199489000038 ], [ -124.417644473999943, 49.297715068000059 ], [ -124.417644677999974, 49.297373191000091 ], [ -124.417645099999945, 49.296673386000052 ], [ -124.417645732999944, 49.296149345000075 ], [ -124.417646566999949, 49.29545658900004 ], [ -124.417647020999965, 49.295087749000061 ], [ -124.41764735299995, 49.294795445000062 ], [ -124.417648533, 49.293837818000107 ], [ -124.41764949599991, 49.293040389000033 ], [ -124.417649535999942, 49.293019165000096 ], [ -124.4176518599999, 49.291305085000047 ], [ -124.417654407000015, 49.289434299000021 ], [ -124.417655253999897, 49.287891990000034 ], [ -124.41765543299999, 49.287585915000093 ], [ -124.417655904999918, 49.286704322000062 ], [ -124.417656512999898, 49.28566891100013 ], [ -124.41765656599992, 49.285418252000078 ], [ -124.417656597999894, 49.285103502000027 ], [ -124.417656676999954, 49.284590602000058 ], [ -124.417656753, 49.284221916000078 ], [ -124.417656848999954, 49.283798948000033 ], [ -124.417656870999949, 49.283744989000077 ], [ -124.417657189999915, 49.281901593000079 ], [ -124.417628327999978, 49.281180110000022 ], [ -124.417816675999958, 49.281140692000108 ], [ -124.417903206999966, 49.281122583000105 ], [ -124.41883039, 49.280928594000059 ], [ -124.420397088999948, 49.280736591000078 ], [ -124.42116077, 49.280642993000093 ], [ -124.421101597999893, 49.282381527000069 ], [ -124.420499497999941, 49.282372722000112 ], [ -124.42049208499995, 49.282590440000043 ], [ -124.419873882999937, 49.282581397000065 ], [ -124.419831631, 49.28382175400003 ], [ -124.419796279999957, 49.283821237000041 ], [ -124.419790615999943, 49.283987488000044 ], [ -124.420883113999935, 49.284003467000048 ], [ -124.420863251999933, 49.284586893000025 ], [ -124.420882050999964, 49.284587169000055 ], [ -124.420866483999973, 49.285044422000084 ], [ -124.420985873999967, 49.285046167000132 ], [ -124.420969309999975, 49.285532766000088 ], [ -124.42100360299996, 49.285533268000123 ], [ -124.420973684000018, 49.286412155000114 ], [ -124.421880213999913, 49.286425403000095 ], [ -124.421989285999956, 49.283219396000092 ], [ -124.42257388599991, 49.283227936000053 ], [ -124.422590551000013, 49.282737863000122 ], [ -124.421947395999936, 49.282728468000144 ], [ -124.421969945999933, 49.28206559700007 ], [ -124.421296310999963, 49.282055752000041 ], [ -124.421345158999941, 49.280620395000078 ], [ -124.42235439400001, 49.280496692000078 ], [ -124.422739221999962, 49.280490596000121 ], [ -124.42356333, 49.280818267000079 ], [ -124.425023980999967, 49.281399001000111 ], [ -124.425403998999954, 49.284852183000055 ], [ -124.425404745999955, 49.285223955000085 ], [ -124.425406283999919, 49.285979787000038 ], [ -124.425407588999974, 49.286618417000035 ], [ -124.42540872599993, 49.287185130000132 ], [ -124.425411466999975, 49.288534326000054 ], [ -124.425413286999969, 49.289435202000028 ], [ -124.425601726999929, 49.289432857000079 ], [ -124.426137906999941, 49.289426232000025 ], [ -124.42737519399999, 49.289410914000037 ], [ -124.428859910999932, 49.289392496000055 ], [ -124.430193421999931, 49.289375967000026 ], [ -124.431224481999934, 49.289363151000082 ], [ -124.431265726999982, 49.289362653000133 ], [ -124.43247325, 49.289347649000057 ], [ -124.43279057899997, 49.289343698000103 ], [ -124.43297581799996, 49.289341392000075 ], [ -124.433042933999914, 49.289340558000049 ], [ -124.43312012799997, 49.289339588000118 ], [ -124.433730705999949, 49.289332005000091 ], [ -124.43527800899993, 49.289276994000062 ], [ -124.436096951999943, 49.289202352000046 ], [ -124.436283915999979, 49.2891853040001 ], [ -124.436039209999976, 49.288447100000013 ], [ -124.436032899999958, 49.287261649000108 ], [ -124.436383783999958, 49.285655220000052 ], [ -124.438586724999965, 49.285687090000081 ], [ -124.438607521, 49.285069314000047 ], [ -124.444099303999934, 49.28514856700005 ], [ -124.444043944999976, 49.286798874000098 ], [ -124.446036081999964, 49.286827552000062 ], [ -124.44603942900001, 49.28672760400007 ], [ -124.449453091999956, 49.286776663000083 ], [ -124.451020631999967, 49.286799154000029 ], [ -124.451055294999932, 49.285761195000134 ], [ -124.44946392599995, 49.285738361000057 ], [ -124.447191573999945, 49.28570571600013 ], [ -124.447216193999978, 49.284970256000086 ], [ -124.447136915, 49.284969116000042 ], [ -124.447217409999922, 49.282564545000085 ], [ -124.445871814, 49.282545190000057 ], [ -124.445900824999953, 49.281679254000039 ], [ -124.44563895899995, 49.281675487000065 ], [ -124.445668628999911, 49.280790003000057 ], [ -124.44537530199996, 49.280785781000141 ], [ -124.445396832999947, 49.280143310000078 ], [ -124.445283737999929, 49.280141681000082 ], [ -124.445360854999961, 49.27784052000009 ], [ -124.449089115999968, 49.277622593000046 ], [ -124.45097153899999, 49.277721693000046 ], [ -124.450957198999916, 49.27815115600005 ], [ -124.451250508999948, 49.278155364000064 ], [ -124.451249958999981, 49.27817184700011 ], [ -124.453828414999933, 49.278208796000051 ], [ -124.453708456999962, 49.281807817000171 ], [ -124.452847058999936, 49.281795480000028 ], [ -124.452834941999967, 49.282158818000035 ], [ -124.458224491999914, 49.282235892000045 ], [ -124.458112846999967, 49.285594744 ], [ -124.459838337999926, 49.28561936200002 ], [ -124.459844220999969, 49.288332905000111 ], [ -124.459844889999943, 49.288641705 ], [ -124.459797821, 49.291128474000047 ], [ -124.458965791999944, 49.291116607000106 ], [ -124.45896631899997, 49.291100796000052 ], [ -124.458363506999916, 49.291092194000036 ], [ -124.458359085999959, 49.291225175000065 ], [ -124.452866560999951, 49.291146649000062 ], [ -124.452923759999948, 49.289431893000042 ], [ -124.452764383999977, 49.289429611000067 ], [ -124.452718018999946, 49.290819446000071 ], [ -124.452795517999974, 49.290820556000064 ], [ -124.452773790999927, 49.291471825000023 ], [ -124.452831853999911, 49.291472657000078 ], [ -124.452775862999971, 49.293151035000072 ], [ -124.452805657999988, 49.293151463000051 ], [ -124.452685581999901, 49.296750402000015 ], [ -124.45266094299997, 49.29675004800005 ], [ -124.452645722999989, 49.29720616500002 ], [ -124.45271822200003, 49.297207203000042 ], [ -124.452719359999975, 49.297173099000126 ], [ -124.457645156999959, 49.297243533000042 ], [ -124.45765628, 49.296909121000041 ], [ -124.457849462999917, 49.296911878000074 ], [ -124.457872311999978, 49.296224824000056 ], [ -124.459816257999989, 49.296252555000116 ], [ -124.459844586999921, 49.296387607999989 ], [ -124.459829621999944, 49.29737047400004 ], [ -124.459828247999965, 49.297460364000045 ], [ -124.459826755999984, 49.297559506000034 ], [ -124.459804147999989, 49.29904464400007 ], [ -124.459798099999958, 49.299443010000104 ], [ -124.459805642999982, 49.299997030000029 ], [ -124.45981303799999, 49.300540520000069 ], [ -124.458899551999963, 49.300527495000139 ], [ -124.458894021999967, 49.300693895000038 ], [ -124.459815302999942, 49.300707032000112 ], [ -124.459828080999969, 49.301645918000062 ], [ -124.459830298999961, 49.301809178000035 ], [ -124.4598552, 49.303638511000045 ], [ -124.458098109999966, 49.303376704000073 ], [ -124.458014062999951, 49.303373742000119 ], [ -124.456858747999917, 49.303332915000091 ], [ -124.455782880999934, 49.302610109000057 ], [ -124.454852472999974, 49.302190207000073 ], [ -124.456474906999972, 49.302213397000074 ], [ -124.456482632999951, 49.301981306000101 ], [ -124.457689412999954, 49.301998538000113 ], [ -124.457726398999938, 49.300886575000057 ], [ -124.454184318999964, 49.300835955000082 ], [ -124.45418387899997, 49.300849152000104 ], [ -124.453971106999958, 49.300846108000044 ], [ -124.453938950999969, 49.301810524000096 ], [ -124.452847661999911, 49.301487954000045 ], [ -124.452472698999912, 49.301471705000026 ], [ -124.452188623999945, 49.301493556000068 ], [ -124.451068592999917, 49.301579780000019 ], [ -124.450599196, 49.301615898000151 ], [ -124.449963304999955, 49.301606687000096 ], [ -124.449558797999927, 49.301496510000121 ], [ -124.449237400999962, 49.301330808000039 ], [ -124.44882198899991, 49.301054766000021 ], [ -124.448110642999922, 49.301534224000079 ], [ -124.448014421999943, 49.301864116000139 ], [ -124.447505097999908, 49.301890997000108 ], [ -124.444536640999928, 49.30205360900009 ], [ -124.444015126999929, 49.302082148000082 ], [ -124.44394674499992, 49.30208589700009 ], [ -124.442518164999953, 49.302164120000079 ], [ -124.442338636999963, 49.302173941000063 ], [ -124.441926811, 49.302196490000021 ], [ -124.441734776, 49.302206982000058 ], [ -124.441296447999932, 49.302230979000072 ], [ -124.438824982999918, 49.302375306000037 ], [ -124.438507601999945, 49.302404369000051 ], [ -124.437849195999917, 49.302464692000051 ], [ -124.437709128999984, 49.302486348000109 ], [ -124.43725238899998, 49.302556892000084 ], [ -124.43712759899995, 49.302583670000075 ], [ -124.436970631999927, 49.302617318000109 ], [ -124.436383193999987, 49.30274330200011 ], [ -124.435067700999952, 49.303082490000122 ], [ -124.434504605999933, 49.303276017000044 ], [ -124.43093131499991, 49.304712096000088 ], [ -124.42973879399996, 49.305191707000056 ], [ -124.429366257999931, 49.305302864000076 ], [ -124.429079512999976, 49.305388425000025 ], [ -124.429016911999938, 49.305407090000116 ], [ -124.428924679999938, 49.305425402000033 ], [ -124.428640622999964, 49.30548179900007 ], [ -124.428345901999975, 49.305540492000013 ], [ -124.42744581, 49.305659693000109 ], [ -124.426975959999965, 49.30569356700007 ], [ -124.426863106999946, 49.305701691000131 ], [ -124.426539627999929, 49.305696981000075 ], [ -124.426231328999933, 49.305692505000117 ], [ -124.42494170099999, 49.305628706000029 ], [ -124.42490088699999, 49.30562573400006 ], [ -124.424860215999971, 49.305622767000109 ], [ -124.424475389999955, 49.305594801000062 ], [ -124.42443799499992, 49.305592077000028 ], [ -124.424073422999982, 49.305565579000088 ], [ -124.424017454999955, 49.305561506000032 ], [ -124.423247729999929, 49.305505532000048 ], [ -124.423054413999935, 49.305491466000056 ], [ -124.421425473999975, 49.305372992000073 ] ], [ [ -124.426999493999944, 49.30289008400009 ], [ -124.427108530999973, 49.299675869000055 ], [ -124.427259397999975, 49.299678065000123 ], [ -124.427272747999893, 49.299284459000035 ], [ -124.427281860999955, 49.299015772000075 ], [ -124.427358448999925, 49.299016887000043 ], [ -124.427367124999989, 49.298761106000022 ], [ -124.427402477999948, 49.297718633000095 ], [ -124.427420060999978, 49.297200170000103 ], [ -124.428432306, 49.297214899000082 ], [ -124.428455157999977, 49.296540594000142 ], [ -124.42962814799999, 49.296557651000072 ], [ -124.429690702999949, 49.294710335000097 ], [ -124.429695223999957, 49.294576819000035 ], [ -124.42986381299994, 49.294579270000064 ], [ -124.435188116999939, 49.294656523000036 ], [ -124.435066670999944, 49.298255435000101 ], [ -124.433994525999964, 49.29823990000007 ], [ -124.433963843999948, 49.299148396000071 ], [ -124.434264924, 49.299152760000034 ], [ -124.434259902999926, 49.299301450000065 ], [ -124.434224694999955, 49.300344143000125 ], [ -124.43433110299992, 49.300345685000096 ], [ -124.434334810999971, 49.300235850000014 ], [ -124.434847285999979, 49.300243275000135 ], [ -124.434864918999949, 49.299720862000093 ], [ -124.436843854999921, 49.299749511000059 ], [ -124.438860918, 49.299778676000095 ], [ -124.438879187999959, 49.299235961000122 ], [ -124.440894548999964, 49.299265062000117 ], [ -124.440987664999966, 49.296495505000074 ], [ -124.445616754999961, 49.296562203000128 ], [ -124.445651374999969, 49.29552934500007 ], [ -124.445519414999978, 49.29552744600003 ], [ -124.44553923699999, 49.294936113000098 ], [ -124.445513850999959, 49.294935747000096 ], [ -124.445542358999916, 49.294085287 ], [ -124.445323995999956, 49.294082145000033 ], [ -124.44537890399998, 49.292444204000084 ], [ -124.445054983999938, 49.292439542000103 ], [ -124.445085543999937, 49.291528065000058 ], [ -124.442444402000021, 49.291490015000051 ], [ -124.44243648399997, 49.291725771000074 ], [ -124.436943925999969, 49.291646435000125 ], [ -124.436949838999908, 49.291470971000059 ], [ -124.432716948999939, 49.291409638000097 ], [ -124.432699509999964, 49.291925711000097 ], [ -124.429684851999951, 49.29188192900002 ], [ -124.427206943999963, 49.291845880000089 ], [ -124.427217992999942, 49.291520040000073 ], [ -124.426333530999941, 49.291507158000044 ], [ -124.426368155999938, 49.290486676000029 ], [ -124.42558169499992, 49.290475216000104 ], [ -124.425567866, 49.290882592000109 ], [ -124.424633989999947, 49.290868976000084 ], [ -124.424606474999933, 49.291679013000135 ], [ -124.423481543999955, 49.291662602000031 ], [ -124.423460763999913, 49.292273940000037 ], [ -124.422502160999926, 49.29225994600008 ], [ -124.422494037999982, 49.292498764000065 ], [ -124.421284611999951, 49.292481095000063 ], [ -124.421255536, 49.293335193000104 ], [ -124.420921643999961, 49.293330312000116 ], [ -124.420913155000022, 49.293579637000036 ], [ -124.420971488999939, 49.293580490000096 ], [ -124.420946746999931, 49.294307174000039 ], [ -124.424564801999949, 49.294359999000051 ], [ -124.424531445999946, 49.295341853000096 ], [ -124.426877575, 49.295376042000015 ], [ -124.426768027999941, 49.298605165000048 ], [ -124.426755481999976, 49.298974940000051 ], [ -124.425111795999968, 49.298950993000048 ], [ -124.421451088999916, 49.298897568 ], [ -124.421433547999968, 49.299412829000111 ], [ -124.423270057999915, 49.299439645000049 ], [ -124.423195000999954, 49.301646853000101 ], [ -124.423637739999933, 49.30175276300011 ], [ -124.423829533999935, 49.30184142300002 ], [ -124.42390260599997, 49.301840522000091 ], [ -124.42390362, 49.301875671000047 ], [ -124.42432673899998, 49.302071263000087 ], [ -124.424325148999984, 49.302182754000057 ], [ -124.424336694999965, 49.302583228000096 ], [ -124.426460028999941, 49.302614171000116 ], [ -124.426443331999963, 49.303106167000081 ], [ -124.426874350999981, 49.303112443000025 ], [ -124.426881952999963, 49.302888373000037 ], [ -124.426999493999944, 49.30289008400009 ] ], [ [ -124.455675506999924, 49.285809578000062 ], [ -124.455675819999939, 49.285800193000028 ], [ -124.452684351999949, 49.285757379000074 ], [ -124.452684038999934, 49.285766763000083 ], [ -124.455675506999924, 49.285809578000062 ] ], [ [ -124.452732123999965, 49.282184511000011 ], [ -124.45273253199997, 49.282172278000132 ], [ -124.452724627999913, 49.282172165000105 ], [ -124.452724220999954, 49.282184398000012 ], [ -124.452732123999965, 49.282184511000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.945994780164626", "sL_AssetLoss": "2490.5", "sL_BldgLoss": "2356", "sL_StrLoss": "1841", "sL_NStrLoss": "515", "sL_ContLoss": "134.5", "geom_point": "0101000020E6100000345D36D7FC1B5FC0D6A50C3DDEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.436529590999939, 49.278432355000085 ], [ -124.438101725999971, 49.278455105000042 ], [ -124.437980547999928, 49.282054107000114 ], [ -124.436561341999919, 49.282033572000032 ], [ -124.436567415999946, 49.281401222000035 ], [ -124.43657092, 49.281037089000044 ], [ -124.436577069999913, 49.280393336000074 ], [ -124.436586734999963, 49.279391293000138 ], [ -124.436589487999981, 49.279101401000055 ], [ -124.436529590999939, 49.278432355000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.962886220976294", "sL_AssetLoss": "164.09", "sL_BldgLoss": "158", "sL_StrLoss": "56", "sL_NStrLoss": "102", "sL_ContLoss": "6.09", "geom_point": "0101000020E6100000F291F71E6C1A5FC099721121A6A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.412590829999928, 49.310345228000109 ], [ -124.412583116999897, 49.310075456000085 ], [ -124.411757914999939, 49.310085542000088 ], [ -124.411747379999937, 49.309716929000075 ], [ -124.411734784999936, 49.309276226000115 ], [ -124.413797753000011, 49.309251002000074 ], [ -124.413811084999921, 49.309716829000124 ], [ -124.413828638999973, 49.310330089000075 ], [ -124.412590829999928, 49.310345228000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70786917", "BldgCostT": "43871667", "sL_LossRatio": "0.871761122702727", "sL_AssetLoss": "134172.65", "sL_BldgLoss": "116966.5", "sL_StrLoss": "84070.2", "sL_NStrLoss": "32896.3", "sL_ContLoss": "17206.15", "geom_point": "0101000020E6100000A3FCBD77481A5FC0808506414BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.398761826999944, 49.317542443 ], [ -124.398811680999984, 49.316099315000024 ], [ -124.398484685999961, 49.316094470000102 ], [ -124.398492045999916, 49.315881401000084 ], [ -124.397604566, 49.315868248000086 ], [ -124.397728966, 49.312269474000075 ], [ -124.397976819999954, 49.312273148000045 ], [ -124.397994887, 49.311750379000081 ], [ -124.403489758999939, 49.311831693000023 ], [ -124.403464416999952, 49.312567533000092 ], [ -124.40410398100002, 49.312576979000056 ], [ -124.404084336999958, 49.313147569000087 ], [ -124.404669734999942, 49.313140454000106 ], [ -124.404692978999918, 49.312465048000043 ], [ -124.4060739199999, 49.312485423000034 ], [ -124.406078730999965, 49.312345482000055 ], [ -124.406100145999972, 49.312345797000013 ], [ -124.40612977799999, 49.31148398100008 ], [ -124.407670964999951, 49.311506700000038 ], [ -124.407654963999946, 49.310945197000109 ], [ -124.408067571999979, 49.31094017 ], [ -124.408059882, 49.310670398000063 ], [ -124.408438684999936, 49.31066578100004 ], [ -124.409297699999954, 49.310655306000065 ], [ -124.409322686999971, 49.311531024000018 ], [ -124.41162463499991, 49.311564881000052 ], [ -124.411590884999924, 49.31254982100009 ], [ -124.41372251699994, 49.312581129000058 ], [ -124.41371101299994, 49.312917314000082 ], [ -124.415304377999973, 49.312940689000101 ], [ -124.415292753999964, 49.31328069500011 ], [ -124.417214598999962, 49.313257136000061 ], [ -124.417218342999931, 49.313387580000082 ], [ -124.417276438, 49.313388431000114 ], [ -124.417342935999983, 49.311440759000021 ], [ -124.417966153999913, 49.311449885000087 ], [ -124.422837805999933, 49.311521090000056 ], [ -124.422832950999918, 49.311663811000052 ], [ -124.423570387999973, 49.311674571000019 ], [ -124.423502076999952, 49.313683248000068 ], [ -124.423517811999915, 49.313683478000065 ], [ -124.423395409999927, 49.317282273000039 ], [ -124.418275390999952, 49.317207468000056 ], [ -124.418239882999941, 49.318247957000104 ], [ -124.408906016999978, 49.31791037500011 ], [ -124.408673533999959, 49.317901963000097 ], [ -124.398761826999944, 49.317542443 ] ], [ [ -124.404555429, 49.31442242300011 ], [ -124.40456235399995, 49.314221223000047 ], [ -124.404047156000019, 49.31422748500011 ], [ -124.404040704999943, 49.314414823000085 ], [ -124.404555429, 49.31442242300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147901965", "BldgCostT": "93484490", "sL_LossRatio": "0.807424520947162", "sL_AssetLoss": "333632.3", "sL_BldgLoss": "269382.9", "sL_StrLoss": "183729", "sL_NStrLoss": "85653.9", "sL_ContLoss": "64249.4", "geom_point": "0101000020E61000000230E918651A5FC0A2CF9A611BA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.375638513999931, 49.311243088000047 ], [ -124.375717412999947, 49.308991307000028 ], [ -124.374972166999896, 49.308980103000103 ], [ -124.374963020999957, 49.309240998000057 ], [ -124.369468504999986, 49.309158234000023 ], [ -124.369493932999916, 49.308435272000047 ], [ -124.369199594999913, 49.308438760000087 ], [ -124.369229505999925, 49.309517868000057 ], [ -124.369642110999948, 49.30951297700009 ], [ -124.369664549999953, 49.310322308000103 ], [ -124.365951054999954, 49.310366267000127 ], [ -124.365943594999962, 49.310096490000056 ], [ -124.365530984999907, 49.310101367000136 ], [ -124.365516068999952, 49.309561812000041 ], [ -124.364690859999939, 49.309571562000023 ], [ -124.364683407999948, 49.309301784000056 ], [ -124.362207789999943, 49.30933099600005 ], [ -124.36220133099999, 49.309096806000106 ], [ -124.360294331999953, 49.30906788600003 ], [ -124.360290434999968, 49.309178063000083 ], [ -124.358641603999956, 49.309153032000012 ], [ -124.359057889999974, 49.307839289000114 ], [ -124.35908696499996, 49.307760524000081 ], [ -124.359394498999961, 49.306927011000056 ], [ -124.35940074399997, 49.306910098000088 ], [ -124.359754090999957, 49.305952291000061 ], [ -124.361425070999942, 49.306054477000082 ], [ -124.362194056999911, 49.30610148200001 ], [ -124.367529389999916, 49.306427482000046 ], [ -124.367876416999948, 49.306448229000061 ], [ -124.368453183999932, 49.306482679000091 ], [ -124.370159565, 49.306584610000108 ], [ -124.374647016999944, 49.306852517000038 ], [ -124.377513274999927, 49.307024310000045 ], [ -124.378707785999921, 49.307055753000078 ], [ -124.378977904999942, 49.307053299000074 ], [ -124.379074262999964, 49.30705243400007 ], [ -124.379830941999955, 49.307045584000051 ], [ -124.380764149999905, 49.307003769000112 ], [ -124.38213783599997, 49.306942414000076 ], [ -124.389958631999889, 49.306593843000044 ], [ -124.39561850199999, 49.306376476000025 ], [ -124.395582635999958, 49.305432443000065 ], [ -124.395487723999963, 49.302933084000081 ], [ -124.395483110000015, 49.302812142000064 ], [ -124.395470307999972, 49.302474598000053 ], [ -124.395465329999951, 49.302343409000116 ], [ -124.395455973999958, 49.302096856000048 ], [ -124.39539927299991, 49.300604123 ], [ -124.395394871999912, 49.300488738000048 ], [ -124.395367481999926, 49.299692593000103 ], [ -124.395431392999967, 49.299692024000073 ], [ -124.397380139999925, 49.299674834000022 ], [ -124.397340911999976, 49.300809804000025 ], [ -124.398877368999976, 49.300832583000016 ], [ -124.39884736399992, 49.301701495000032 ], [ -124.398893918999974, 49.301702186000057 ], [ -124.3988600799999, 49.302682123000118 ], [ -124.399322662999921, 49.302688977000109 ], [ -124.399298668999947, 49.303383993000104 ], [ -124.402596283999955, 49.303432794000052 ], [ -124.402580136999973, 49.303901459000059 ], [ -124.403359847999965, 49.303912984000078 ], [ -124.403369141999974, 49.303643090000094 ], [ -124.406850088999946, 49.303694471000064 ], [ -124.406866828999966, 49.303207276000144 ], [ -124.409581891999963, 49.303247273000053 ], [ -124.409588657999947, 49.303050017 ], [ -124.409478093999965, 49.303048390000086 ], [ -124.409598753999887, 49.299530700000062 ], [ -124.412164978999925, 49.299487237000044 ], [ -124.41297350799999, 49.299499117000032 ], [ -124.413112048999949, 49.299544870000062 ], [ -124.413220594999927, 49.29958161200009 ], [ -124.413375391999963, 49.299578506000024 ], [ -124.413510021, 49.299498915000115 ], [ -124.413661146999942, 49.299451406000074 ], [ -124.413870768999956, 49.299474063000076 ], [ -124.414671891999916, 49.299444696000144 ], [ -124.416068580999962, 49.299424599000041 ], [ -124.416344897999963, 49.299420601000051 ], [ -124.416834910999938, 49.299476401000128 ], [ -124.417643422999944, 49.299459399000064 ], [ -124.41764084499998, 49.299540849000095 ], [ -124.417626385999952, 49.299999795000076 ], [ -124.417579099999983, 49.30150459700009 ], [ -124.417648243000016, 49.303922276000051 ], [ -124.417660857999977, 49.304362908000037 ], [ -124.417673376999957, 49.304800802000038 ], [ -124.417675799999969, 49.304886554000127 ], [ -124.417691898999962, 49.305448891000069 ], [ -124.419067445999971, 49.305399391 ], [ -124.41977495899998, 49.305373901000038 ], [ -124.420374872999972, 49.305352292000059 ], [ -124.421425473999975, 49.305372992000073 ], [ -124.423054413999935, 49.305491466000056 ], [ -124.423247729999929, 49.305505532000048 ], [ -124.424017454999955, 49.305561506000032 ], [ -124.424073422999982, 49.305565579000088 ], [ -124.42443799499992, 49.305592077000028 ], [ -124.424475389999955, 49.305594801000062 ], [ -124.424860215999971, 49.305622767000109 ], [ -124.42490088699999, 49.30562573400006 ], [ -124.42494170099999, 49.305628706000029 ], [ -124.426231328999933, 49.305692505000117 ], [ -124.426539627999929, 49.305696981000075 ], [ -124.426863106999946, 49.305701691000131 ], [ -124.426975959999965, 49.30569356700007 ], [ -124.42744581, 49.305659693000109 ], [ -124.428345901999975, 49.305540492000013 ], [ -124.428640622999964, 49.30548179900007 ], [ -124.428924679999938, 49.305425402000033 ], [ -124.429016911999938, 49.305407090000116 ], [ -124.429079512999976, 49.305388425000025 ], [ -124.429366257999931, 49.305302864000076 ], [ -124.42973879399996, 49.305191707000056 ], [ -124.43093131499991, 49.304712096000088 ], [ -124.434504605999933, 49.303276017000044 ], [ -124.435067700999952, 49.303082490000122 ], [ -124.436383193999987, 49.30274330200011 ], [ -124.436970631999927, 49.302617318000109 ], [ -124.43712759899995, 49.302583670000075 ], [ -124.43725238899998, 49.302556892000084 ], [ -124.437709128999984, 49.302486348000109 ], [ -124.437849195999917, 49.302464692000051 ], [ -124.438507601999945, 49.302404369000051 ], [ -124.438824982999918, 49.302375306000037 ], [ -124.441296447999932, 49.302230979000072 ], [ -124.441734776, 49.302206982000058 ], [ -124.441926811, 49.302196490000021 ], [ -124.442338636999963, 49.302173941000063 ], [ -124.442518164999953, 49.302164120000079 ], [ -124.44394674499992, 49.30208589700009 ], [ -124.444015126999929, 49.302082148000082 ], [ -124.444536640999928, 49.30205360900009 ], [ -124.447505097999908, 49.301890997000108 ], [ -124.448014421999943, 49.301864116000139 ], [ -124.448110642999922, 49.301534224000079 ], [ -124.44882198899991, 49.301054766000021 ], [ -124.449237400999962, 49.301330808000039 ], [ -124.449558797999927, 49.301496510000121 ], [ -124.449963304999955, 49.301606687000096 ], [ -124.450599196, 49.301615898000151 ], [ -124.451068592999917, 49.301579780000019 ], [ -124.452188623999945, 49.301493556000068 ], [ -124.452472698999912, 49.301471705000026 ], [ -124.452847661999911, 49.301487954000045 ], [ -124.453938950999969, 49.301810524000096 ], [ -124.453926731999928, 49.302176965000086 ], [ -124.454852472999974, 49.302190207000073 ], [ -124.455782880999934, 49.302610109000057 ], [ -124.456858747999917, 49.303332915000091 ], [ -124.458014062999951, 49.303373742000119 ], [ -124.458098109999966, 49.303376704000073 ], [ -124.4598552, 49.303638511000045 ], [ -124.459911013999914, 49.30447537700006 ], [ -124.459934987999986, 49.304834997000086 ], [ -124.459936509999949, 49.304960832000098 ], [ -124.45993746299996, 49.305041782000082 ], [ -124.459939003999949, 49.30517 ], [ -124.459948013999949, 49.305620028000099 ], [ -124.459947710999955, 49.305632947000063 ], [ -124.459940598999978, 49.30597815400003 ], [ -124.45991793599994, 49.307080721000048 ], [ -124.454883974999973, 49.307008859000064 ], [ -124.454924111999929, 49.30580453900005 ], [ -124.453518199999905, 49.305784427000084 ], [ -124.453518622999965, 49.305771734000089 ], [ -124.452699369999962, 49.305760006000064 ], [ -124.452738288999967, 49.304593829000083 ], [ -124.450920119999978, 49.304567779000095 ], [ -124.449159200999944, 49.304542520000027 ], [ -124.449061558, 49.307461462000092 ], [ -124.443567124999973, 49.307382464000028 ], [ -124.443646394999959, 49.305021123000067 ], [ -124.439752724999934, 49.304964971000068 ], [ -124.439760742999979, 49.304726718000069 ], [ -124.439684982999935, 49.304725624000127 ], [ -124.439681533999973, 49.304828102000037 ], [ -124.438848189999973, 49.304816066000136 ], [ -124.438844005999897, 49.304940323000011 ], [ -124.437700049999961, 49.30492379 ], [ -124.437686083999949, 49.305338250000098 ], [ -124.437069826999945, 49.305329339000082 ], [ -124.436997142999985, 49.305328287000073 ], [ -124.43699016699999, 49.305535167000116 ], [ -124.43648888, 49.30552791499999 ], [ -124.436414188999947, 49.307742643000047 ], [ -124.43636984699999, 49.309057373 ], [ -124.435585969999963, 49.30904602800009 ], [ -124.430875244999953, 49.30897773 ], [ -124.430889647999948, 49.308552201000076 ], [ -124.429939936999986, 49.308538407000114 ], [ -124.429948880999973, 49.308274349000087 ], [ -124.426935741999941, 49.30823053000011 ], [ -124.426948922999941, 49.307842085000047 ], [ -124.426215938, 49.307831413 ], [ -124.426217085999951, 49.307797592000071 ], [ -124.424307369999937, 49.30776976300006 ], [ -124.42430807699999, 49.307748982000071 ], [ -124.42422530099995, 49.307747775000095 ], [ -124.423777850999969, 49.307741250000049 ], [ -124.423778200999934, 49.307730966000051 ], [ -124.423069825999974, 49.307720631000031 ], [ -124.423093930999968, 49.307011945000063 ], [ -124.422818558999964, 49.307007925000065 ], [ -124.42282301699997, 49.306876917000103 ], [ -124.420368377, 49.306841062000075 ], [ -124.420370095999942, 49.306790627000048 ], [ -124.419113594999956, 49.306772252000073 ], [ -124.419108539999968, 49.306920508000125 ], [ -124.417448335999936, 49.306896207000129 ], [ -124.417446174999938, 49.306959549000098 ], [ -124.414206711999952, 49.306912058000123 ], [ -124.412237595999983, 49.306883143000022 ], [ -124.412237464999976, 49.306886978000122 ], [ -124.40875627299998, 49.306835772000035 ], [ -124.408739549999936, 49.307322965000068 ], [ -124.408485292999956, 49.307319220000061 ], [ -124.40379195899996, 49.307249995000042 ], [ -124.403782665, 49.307519887000055 ], [ -124.399098547999969, 49.307450594000144 ], [ -124.399097277999928, 49.307487403000053 ], [ -124.39749038799998, 49.307463586000097 ], [ -124.397477232999904, 49.307844143000047 ], [ -124.395145738999958, 49.30780954200003 ], [ -124.395143642999969, 49.307870101000084 ], [ -124.394344889999985, 49.307858235000033 ], [ -124.394343113999952, 49.307909520000052 ], [ -124.393260310999921, 49.307893426000106 ], [ -124.3932593709999, 49.307920547000094 ], [ -124.390586948999939, 49.307880778000019 ], [ -124.390580771999964, 49.308058713000037 ], [ -124.386661381999943, 49.30800026900004 ], [ -124.386651928999981, 49.308271910000087 ], [ -124.384266656999969, 49.308236273000105 ], [ -124.38426283699999, 49.308345870000096 ], [ -124.383644246999893, 49.308336619000038 ], [ -124.383640719999917, 49.308437784000091 ], [ -124.383124027999955, 49.308430055000017 ], [ -124.383123499999925, 49.308445198000065 ], [ -124.381234854999931, 49.308416922000013 ], [ -124.381133285999937, 49.311325539000109 ], [ -124.379447665999976, 49.311300275000072 ], [ -124.375638513999931, 49.311243088000047 ] ], [ [ -124.377653215999928, 49.307672686000082 ], [ -124.377661472999989, 49.307436708000097 ], [ -124.375844198, 49.307409409000051 ], [ -124.375835931999973, 49.307645387000044 ], [ -124.377653215999928, 49.307672686000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.978573416195158", "sL_AssetLoss": "1078.1", "sL_BldgLoss": "1055", "sL_StrLoss": "947", "sL_NStrLoss": "108", "sL_ContLoss": "23.1", "geom_point": "0101000020E6100000EA57DF652B175FC045A509C2B2A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.361390017999952, 49.309610500000083 ], [ -124.363040440999924, 49.309591042000108 ], [ -124.363062773999957, 49.310400374000118 ], [ -124.362650160999976, 49.31040524100009 ], [ -124.362657601999942, 49.310675019000087 ], [ -124.361007143999956, 49.310694471000019 ], [ -124.360984845999937, 49.309885138000034 ], [ -124.361397453, 49.309880277000033 ], [ -124.361390017999952, 49.309610500000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15924584", "BldgCostT": "9508334", "sL_LossRatio": "0.842575797228314", "sL_AssetLoss": "33243.3", "sL_BldgLoss": "28010", "sL_StrLoss": "17286", "sL_NStrLoss": "10724", "sL_ContLoss": "5233.3", "geom_point": "0101000020E6100000769D78942B175FC03F850AAB04A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.363582686999976, 49.314282407000121 ], [ -124.363579649999963, 49.314172389000092 ], [ -124.361929075999953, 49.314191855000061 ], [ -124.361921634999987, 49.313922078000104 ], [ -124.360683711, 49.313936661000113 ], [ -124.360676277999943, 49.313666884000135 ], [ -124.360263639, 49.313671742000032 ], [ -124.360256206999935, 49.313401965000075 ], [ -124.359018294999942, 49.313416531000058 ], [ -124.359010871999914, 49.313146753000083 ], [ -124.358598235999935, 49.313151606000048 ], [ -124.358605657999945, 49.313421383000083 ], [ -124.35720414799999, 49.313437853999986 ], [ -124.35745356299999, 49.31263254000001 ], [ -124.357456305999932, 49.312623692000059 ], [ -124.357470914000018, 49.312582545000055 ], [ -124.35751453599994, 49.312459767000121 ], [ -124.357936909999978, 49.311270327000031 ], [ -124.363497724999917, 49.311204839000055 ], [ -124.36350517299995, 49.311474615000073 ], [ -124.365568276999952, 49.311450253000046 ], [ -124.365575735, 49.311720029000085 ], [ -124.365988356999949, 49.31171515300008 ], [ -124.366058192999958, 49.314240228000131 ], [ -124.363582686999976, 49.314282407000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202672580", "BldgCostT": "133728368", "sL_LossRatio": "0.865608651139783", "sL_AssetLoss": "479104.5", "sL_BldgLoss": "414717", "sL_StrLoss": "265178", "sL_NStrLoss": "149539", "sL_ContLoss": "64387.5", "geom_point": "0101000020E610000089B03CA3C8185FC06DDABDC30AA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.367977681999889, 49.305763165 ], [ -124.368710249999978, 49.304677491000078 ], [ -124.369087995999905, 49.304117694000112 ], [ -124.367677123999897, 49.304108105000118 ], [ -124.367408293999944, 49.304113482000048 ], [ -124.367467285999965, 49.302886513000018 ], [ -124.367559383999989, 49.300970997000029 ], [ -124.367559666, 49.300692840000075 ], [ -124.367560328999929, 49.300000265000072 ], [ -124.367560913999966, 49.29940558300013 ], [ -124.367582250999973, 49.298192996000111 ], [ -124.367582822000017, 49.298161001000025 ], [ -124.367573163999907, 49.298012779000082 ], [ -124.367561458999944, 49.297833139000026 ], [ -124.367540909999889, 49.297516801000036 ], [ -124.367523399999968, 49.297036708000128 ], [ -124.367578093999967, 49.296967294000069 ], [ -124.367606451999919, 49.296953565000123 ], [ -124.367720606999953, 49.296898293000012 ], [ -124.369285807999944, 49.296881660000111 ], [ -124.370238693999937, 49.29687151500007 ], [ -124.370451386999946, 49.29328209500008 ], [ -124.370463659999928, 49.292869921000054 ], [ -124.370485388999938, 49.292140048000078 ], [ -124.370538359999927, 49.29035810500006 ], [ -124.370565201999952, 49.289456200000089 ], [ -124.372532951000011, 49.28945462500009 ], [ -124.373068917999973, 49.289454183000046 ], [ -124.378734771999987, 49.289449347000108 ], [ -124.379174714999976, 49.289448978000053 ], [ -124.38027504099999, 49.289448009000111 ], [ -124.38161481199991, 49.289446783000088 ], [ -124.38462075699999, 49.28944270000008 ], [ -124.385927078999913, 49.289440893000126 ], [ -124.38657430799999, 49.289440005000117 ], [ -124.387331284999917, 49.289445698000115 ], [ -124.388870514999894, 49.289457257000024 ], [ -124.389369187999989, 49.289460973000104 ], [ -124.38963977899999, 49.289462168000092 ], [ -124.38982955799996, 49.289463029000075 ], [ -124.390065898, 49.289464081000112 ], [ -124.390863827999965, 49.289467663000082 ], [ -124.39109749, 49.28946869300006 ], [ -124.392610514999987, 49.289475449000108 ], [ -124.394732008999952, 49.289484881000149 ], [ -124.395758955999895, 49.289489439000086 ], [ -124.396695123999962, 49.289485875000011 ], [ -124.398482998999938, 49.289479026000024 ], [ -124.399583277999952, 49.289474788000128 ], [ -124.399995747999981, 49.28947320500005 ], [ -124.400533417999938, 49.289471130000102 ], [ -124.404203572999933, 49.289463439000023 ], [ -124.405523627999941, 49.289460660000088 ], [ -124.40689889399998, 49.289457732000074 ], [ -124.408232852999916, 49.28945488300009 ], [ -124.408727821999989, 49.289453816000091 ], [ -124.409181514999929, 49.289452833000027 ], [ -124.409992693000035, 49.289451098000022 ], [ -124.412014724999949, 49.28944671900004 ], [ -124.412935859999976, 49.289444715000059 ], [ -124.416236490999978, 49.28943744500004 ], [ -124.417654407000015, 49.289434299000021 ], [ -124.4176518599999, 49.291305085000047 ], [ -124.417649535999942, 49.293019165000096 ], [ -124.41764949599991, 49.293040389000033 ], [ -124.417648533, 49.293837818000107 ], [ -124.41764735299995, 49.294795445000062 ], [ -124.417647020999965, 49.295087749000061 ], [ -124.417646566999949, 49.29545658900004 ], [ -124.417645732999944, 49.296149345000075 ], [ -124.417645099999945, 49.296673386000052 ], [ -124.417644677999974, 49.297373191000091 ], [ -124.417644473999943, 49.297715068000059 ], [ -124.41764356799996, 49.299199489000038 ], [ -124.417643422999944, 49.299459399000064 ], [ -124.416834910999938, 49.299476401000128 ], [ -124.416344897999963, 49.299420601000051 ], [ -124.416068580999962, 49.299424599000041 ], [ -124.414671891999916, 49.299444696000144 ], [ -124.413870768999956, 49.299474063000076 ], [ -124.413661146999942, 49.299451406000074 ], [ -124.413510021, 49.299498915000115 ], [ -124.413375391999963, 49.299578506000024 ], [ -124.413220594999927, 49.29958161200009 ], [ -124.413112048999949, 49.299544870000062 ], [ -124.41297350799999, 49.299499117000032 ], [ -124.413097747999984, 49.299500942000087 ], [ -124.413104507999961, 49.299303420000051 ], [ -124.414020372999971, 49.299316868000084 ], [ -124.414021772999945, 49.299275943000083 ], [ -124.414047063999973, 49.299276314000075 ], [ -124.414061743999923, 49.298847120000062 ], [ -124.413918415999902, 49.298845017000097 ], [ -124.41391843699999, 49.298844409000075 ], [ -124.413093485, 49.298832295000082 ], [ -124.413093792999945, 49.298823334000112 ], [ -124.412293355999978, 49.298811574000055 ], [ -124.412319906999983, 49.298036110000048 ], [ -124.412208599999985, 49.298034474000083 ], [ -124.412331819999977, 49.294435588000056 ], [ -124.414045816999987, 49.294460764000071 ], [ -124.414078361999941, 49.293509085000068 ], [ -124.413645127999985, 49.29350272300006 ], [ -124.413695438999952, 49.292031881000099 ], [ -124.413656451999927, 49.292031308000041 ], [ -124.413643581999978, 49.292407584000102 ], [ -124.412112434000022, 49.292385088000117 ], [ -124.412084964999977, 49.293187321000062 ], [ -124.40659228600002, 49.293106441000077 ], [ -124.406617214999955, 49.292380879000049 ], [ -124.406390722999944, 49.292377538000039 ], [ -124.406398965999983, 49.292137668000109 ], [ -124.4054126, 49.292123113000045 ], [ -124.405414163, 49.292077669000072 ], [ -124.401147544999958, 49.292014603000041 ], [ -124.401158466999945, 49.291697800000094 ], [ -124.400024913999957, 49.291681016000105 ], [ -124.400024698999985, 49.291687224000093 ], [ -124.3990218, 49.291672365000068 ], [ -124.399021458999982, 49.291682249000054 ], [ -124.398199389999945, 49.291670062000051 ], [ -124.398196630999948, 49.291749969000108 ], [ -124.397089317999956, 49.291733544000088 ], [ -124.397088787999905, 49.291748897000069 ], [ -124.39547173699999, 49.291724889000093 ], [ -124.395443666999938, 49.292536235000107 ], [ -124.390335728999929, 49.292460242000075 ], [ -124.390222744, 49.295715256000065 ], [ -124.388565578999959, 49.29569055000006 ], [ -124.388560584999965, 49.295834298000017 ], [ -124.38776911799998, 49.295822489000031 ], [ -124.387766356000014, 49.295901917000037 ], [ -124.386184984999915, 49.295878305000087 ], [ -124.386134093999942, 49.297340634000044 ], [ -124.386192337999972, 49.297341505000084 ], [ -124.386189009999967, 49.297437118000104 ], [ -124.387712486999959, 49.297459866000096 ], [ -124.387681657999963, 49.29834652400006 ], [ -124.389550880999977, 49.29837440400005 ], [ -124.389554603, 49.298267232000057 ], [ -124.391931474999964, 49.298302637000049 ], [ -124.391957047999966, 49.297565190000078 ], [ -124.397450229999976, 49.297646813 ], [ -124.397380139999925, 49.299674834000022 ], [ -124.395431392999967, 49.299692024000073 ], [ -124.395367481999926, 49.299692593000103 ], [ -124.395394871999912, 49.300488738000048 ], [ -124.39539927299991, 49.300604123 ], [ -124.395455973999958, 49.302096856000048 ], [ -124.395465329999951, 49.302343409000116 ], [ -124.395470307999972, 49.302474598000053 ], [ -124.395483110000015, 49.302812142000064 ], [ -124.395487723999963, 49.302933084000081 ], [ -124.395582635999958, 49.305432443000065 ], [ -124.39561850199999, 49.306376476000025 ], [ -124.389958631999889, 49.306593843000044 ], [ -124.38213783599997, 49.306942414000076 ], [ -124.380764149999905, 49.307003769000112 ], [ -124.379830941999955, 49.307045584000051 ], [ -124.379074262999964, 49.30705243400007 ], [ -124.378977904999942, 49.307053299000074 ], [ -124.378707785999921, 49.307055753000078 ], [ -124.377513274999927, 49.307024310000045 ], [ -124.374647016999944, 49.306852517000038 ], [ -124.370159565, 49.306584610000108 ], [ -124.368453183999932, 49.306482679000091 ], [ -124.367876416999948, 49.306448229000061 ], [ -124.367529389999916, 49.306427482000046 ], [ -124.367629493999956, 49.306279208000085 ], [ -124.367977681999889, 49.305763165 ] ], [ [ -124.375134875999962, 49.30538186800004 ], [ -124.375190353, 49.303798891000049 ], [ -124.379699899999963, 49.303866608000114 ], [ -124.380684242999934, 49.303881365000017 ], [ -124.380681210999981, 49.30396815000006 ], [ -124.381043945, 49.303973586000104 ], [ -124.381023264999939, 49.303233767000066 ], [ -124.381013958999944, 49.302900843000018 ], [ -124.38142650499999, 49.302895911000057 ], [ -124.381418961999913, 49.302626136000121 ], [ -124.38179898199995, 49.30262159100009 ], [ -124.381840690999979, 49.301426459 ], [ -124.380190236999937, 49.301401728000016 ], [ -124.378694526999979, 49.301379294000043 ], [ -124.378740807999947, 49.300055666000063 ], [ -124.376648231999965, 49.300024244000063 ], [ -124.37666263199999, 49.299612936000059 ], [ -124.374007192999969, 49.299573005000092 ], [ -124.373944623999947, 49.301357245000133 ], [ -124.373542082, 49.301351186000048 ], [ -124.373530127999985, 49.301691939000079 ], [ -124.374041263, 49.301699633000084 ], [ -124.374033034999982, 49.301934243000119 ], [ -124.374828548000011, 49.301946212000082 ], [ -124.374708340999959, 49.305375453000103 ], [ -124.375134875999962, 49.30538186800004 ] ], [ [ -124.387290241999949, 49.302775647000061 ], [ -124.387265995999925, 49.303472712000087 ], [ -124.390021477999966, 49.303513805000172 ], [ -124.39186605899998, 49.303541274000104 ], [ -124.391893597999982, 49.302747284000112 ], [ -124.391778780999971, 49.302745574000063 ], [ -124.391775417999938, 49.302842498000075 ], [ -124.390117257999989, 49.302817805000075 ], [ -124.387290241999949, 49.302775647000061 ] ], [ [ -124.380447566, 49.295844418000037 ], [ -124.380450728999918, 49.295753849000029 ], [ -124.379041460999943, 49.295732713000064 ], [ -124.377220214999952, 49.295705371000096 ], [ -124.37722619699997, 49.295534412000094 ], [ -124.375816771999951, 49.295513231000086 ], [ -124.375799749999942, 49.29599923600005 ], [ -124.377688880000036, 49.296027622000125 ], [ -124.377674489999933, 49.296438933000026 ], [ -124.378889483999927, 49.296457171000071 ], [ -124.380243703999952, 49.296477484000057 ], [ -124.380265911, 49.295841695000078 ], [ -124.380447566, 49.295844418000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229191175", "BldgCostT": "152627451", "sL_LossRatio": "0.813185998331639", "sL_AssetLoss": "365736.13", "sL_BldgLoss": "297411.5", "sL_StrLoss": "185529.1", "sL_NStrLoss": "111882.4", "sL_ContLoss": "68324.63", "geom_point": "0101000020E6100000E2E314FC3A185FC0F56D1BC208A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.369502491999967, 49.286681442000067 ], [ -124.369525909999979, 49.28646990700004 ], [ -124.369434994999963, 49.285968894000028 ], [ -124.369502238999971, 49.285783774000059 ], [ -124.369526052999902, 49.28571816400013 ], [ -124.36952927599998, 49.285709197000102 ], [ -124.373054121999985, 49.285869971000103 ], [ -124.37317709699991, 49.285711341000088 ], [ -124.373436080999966, 49.285377266000118 ], [ -124.373687, 49.285053611000066 ], [ -124.373714802999984, 49.285025365000102 ], [ -124.373933402999967, 49.284803407000034 ], [ -124.373785495999968, 49.284711208000068 ], [ -124.37322522, 49.283611692000093 ], [ -124.37304885399999, 49.283209072000055 ], [ -124.372974014999912, 49.283038205000075 ], [ -124.371022605999954, 49.283056080000094 ], [ -124.366638631999962, 49.283043548000101 ], [ -124.366656247999941, 49.282543268000062 ], [ -124.366481605, 49.28254062600012 ], [ -124.366593036999944, 49.279376086000077 ], [ -124.366130350999953, 49.279369087000141 ], [ -124.366056960999913, 49.281452797000064 ], [ -124.363512368999977, 49.281414267000073 ], [ -124.36347779499998, 49.282394294000042 ], [ -124.365868403999954, 49.282430493000064 ], [ -124.365846887999936, 49.283041266000055 ], [ -124.362616930999963, 49.283031894000011 ], [ -124.361781224999959, 49.28292741000012 ], [ -124.359327697999959, 49.282934288000035 ], [ -124.359320914999941, 49.284401150000072 ], [ -124.359319335, 49.284735175000044 ], [ -124.359318859999973, 49.284843194000096 ], [ -124.359316294999971, 49.28539159000006 ], [ -124.358475352999974, 49.285397684000017 ], [ -124.352741912999974, 49.285438959000039 ], [ -124.351433314, 49.285448337000098 ], [ -124.351472717999982, 49.284339647000117 ], [ -124.353223095999979, 49.284366350000042 ], [ -124.353256481999935, 49.283425908000034 ], [ -124.352873636999931, 49.283420070000034 ], [ -124.352901263999982, 49.282642039000038 ], [ -124.349196746999937, 49.282585477000104 ], [ -124.34919858799999, 49.282533733000051 ], [ -124.34746515599997, 49.282507222000042 ], [ -124.347464484999989, 49.282526055000076 ], [ -124.345515095999957, 49.282496208000047 ], [ -124.34532159299999, 49.281233225000072 ], [ -124.34544870900001, 49.278894331000053 ], [ -124.345933768999956, 49.278901762000082 ], [ -124.345947146999919, 49.278526554000045 ], [ -124.346010789000019, 49.278487447 ], [ -124.34920084399999, 49.278536261000063 ], [ -124.34920344799994, 49.278463075000047 ], [ -124.354694291999962, 49.278546873000074 ], [ -124.35468343399998, 49.278853016000042 ], [ -124.355193949999958, 49.278860794000131 ], [ -124.355249274999935, 49.277300322000023 ], [ -124.355510304999939, 49.277304298000068 ], [ -124.355563341, 49.275808015000088 ], [ -124.353206610999948, 49.275772099000029 ], [ -124.35332342, 49.272481060000054 ], [ -124.351195455, 49.272448586000053 ], [ -124.351135544999963, 49.274134387000124 ], [ -124.347319197, 49.274076042000047 ], [ -124.347305037999945, 49.271282151000037 ], [ -124.353148380999954, 49.271276007000019 ], [ -124.355834967999954, 49.271298710000117 ], [ -124.355802647999937, 49.272210776000065 ], [ -124.358824454999976, 49.272256750000118 ], [ -124.358742736999929, 49.274566902000061 ], [ -124.361099410999969, 49.27460269700002 ], [ -124.361075249999942, 49.275286664000063 ], [ -124.361097252999983, 49.275286999000059 ], [ -124.361067766999909, 49.276121656000058 ], [ -124.362105417999942, 49.276137400000025 ], [ -124.362120593999919, 49.275707488000087 ], [ -124.367611135999979, 49.275790631000085 ], [ -124.367523177999942, 49.2782903640001 ], [ -124.37275329699996, 49.278369303 ], [ -124.372735857999942, 49.278866515000075 ], [ -124.373742490999973, 49.278881679000037 ], [ -124.373738295999914, 49.279001348000044 ], [ -124.373811708999966, 49.279002453000054 ], [ -124.373813242999958, 49.278958687000035 ], [ -124.377096281999982, 49.279008076000054 ], [ -124.377219108999938, 49.275496763000056 ], [ -124.377613856999943, 49.275502694000082 ], [ -124.377641271999948, 49.274718695000068 ], [ -124.373143334999924, 49.274651020000078 ], [ -124.373239633999944, 49.271904530000043 ], [ -124.371883854999979, 49.271884095000118 ], [ -124.371909467999942, 49.27115415300009 ], [ -124.371939997999974, 49.270284054000072 ], [ -124.369947374999953, 49.270253988000015 ], [ -124.369934188999977, 49.270629330000077 ], [ -124.367479354999929, 49.27059224 ], [ -124.367473197999971, 49.270767190000107 ], [ -124.366299517, 49.270749437000113 ], [ -124.366287327999913, 49.271095589000076 ], [ -124.366264507, 49.27174371900005 ], [ -124.365429316999922, 49.27173107800013 ], [ -124.365427775999962, 49.271774839000045 ], [ -124.364801411999977, 49.271765354000067 ], [ -124.364800252999913, 49.27179825400011 ], [ -124.359310188999984, 49.271714968000047 ], [ -124.359325488999986, 49.271282280000094 ], [ -124.359288382999964, 49.271281716000097 ], [ -124.359391391999964, 49.271073998000126 ], [ -124.359495433999911, 49.269385600000049 ], [ -124.359510601999887, 49.269139415000076 ], [ -124.359632450999982, 49.268878397000073 ], [ -124.359775897999896, 49.268705033000089 ], [ -124.360005045999969, 49.268554569000045 ], [ -124.360143639999976, 49.268626229000105 ], [ -124.36040688199995, 49.268762312 ], [ -124.360860519999946, 49.26890424000009 ], [ -124.361511370999921, 49.269055288000068 ], [ -124.363305347999969, 49.269471564000114 ], [ -124.363627148, 49.269497159000096 ], [ -124.36505019399999, 49.269395008000053 ], [ -124.365626031999952, 49.269353676000016 ], [ -124.365721743999984, 49.269346807000112 ], [ -124.365817457999952, 49.269339941000034 ], [ -124.367490418999964, 49.269219833000115 ], [ -124.367600519999897, 49.269211931000036 ], [ -124.368038278999933, 49.2691804930001 ], [ -124.370975992999917, 49.268969499000022 ], [ -124.371851501999942, 49.268906594000029 ], [ -124.37261662899999, 49.268851631000047 ], [ -124.373080139999942, 49.268869422000094 ], [ -124.375176282000027, 49.269305611000057 ], [ -124.375404312999962, 49.269353078000066 ], [ -124.375673, 49.269408977000076 ], [ -124.375882977999979, 49.269491374000104 ], [ -124.375993303999948, 49.269595658000149 ], [ -124.376058683999972, 49.269718264000083 ], [ -124.376077067999987, 49.269752650000065 ], [ -124.376062067999925, 49.271044232000065 ], [ -124.376156583999958, 49.271207718000063 ], [ -124.376290660999985, 49.271269469000039 ], [ -124.376356594999891, 49.271299820000081 ], [ -124.376424162999953, 49.271309994000049 ], [ -124.377280474999949, 49.271339518000126 ], [ -124.37741780099999, 49.271339865000094 ], [ -124.378191133999948, 49.271341805000098 ], [ -124.378457543999971, 49.271366105000055 ], [ -124.378581254999915, 49.271377375000014 ], [ -124.379103021999967, 49.271458128000063 ], [ -124.38123096899993, 49.271986056000038 ], [ -124.38136768199999, 49.272056538000093 ], [ -124.381436, 49.272091763000063 ], [ -124.381567279, 49.272265672000103 ], [ -124.38156214199995, 49.27257566400008 ], [ -124.381561815999987, 49.272593682000043 ], [ -124.38154421800003, 49.273655325000114 ], [ -124.381542368999973, 49.273766874000096 ], [ -124.381541537999965, 49.274043411000044 ], [ -124.381538314999901, 49.275078672000134 ], [ -124.381537284999965, 49.275411751000078 ], [ -124.381536066999956, 49.275816583000093 ], [ -124.381535520999961, 49.275987425000018 ], [ -124.38153528199993, 49.276068366000104 ], [ -124.381534974999937, 49.276167467000093 ], [ -124.381533072999943, 49.276778520000036 ], [ -124.381530275000017, 49.277687487000023 ], [ -124.381526631999932, 49.278863627000128 ], [ -124.381173508999893, 49.280127624000102 ], [ -124.38100455499989, 49.280442862000051 ], [ -124.381388834999896, 49.280453056000049 ], [ -124.38185290499996, 49.280416893000115 ], [ -124.383568925999981, 49.280283178000026 ], [ -124.384530200999961, 49.280248119000099 ], [ -124.385015, 49.28022893100011 ], [ -124.384905320000016, 49.283379223000097 ], [ -124.38163425799992, 49.283330256000099 ], [ -124.38132077899995, 49.283325558000065 ], [ -124.381317778999971, 49.283411512000036 ], [ -124.376886092999897, 49.283345 ], [ -124.375826311999958, 49.283329068000036 ], [ -124.375828617999929, 49.283263178000048 ], [ -124.375495423999951, 49.283258167000028 ], [ -124.375494389999943, 49.283287669000046 ], [ -124.37579148099999, 49.283292138000014 ], [ -124.375774317, 49.283782329000168 ], [ -124.375753005, 49.284390966000039 ], [ -124.37634222699999, 49.284399826000076 ], [ -124.376265706, 49.286585775000091 ], [ -124.379160754999958, 49.286629259000073 ], [ -124.379160108999912, 49.286647737000067 ], [ -124.37972424499999, 49.28665620000011 ], [ -124.379737383999924, 49.286280055000113 ], [ -124.381482328999937, 49.286306217000103 ], [ -124.384572040999927, 49.286352474000047 ], [ -124.384647411999978, 49.284188271000041 ], [ -124.387643922999985, 49.284233047000036 ], [ -124.387711651999922, 49.282284469000061 ], [ -124.385908357999952, 49.282257532000052 ], [ -124.385980269999934, 49.280190728000036 ], [ -124.388179080999976, 49.280103695000115 ], [ -124.38901552599998, 49.280039564000013 ], [ -124.38952598899999, 49.28000039700003 ], [ -124.390128717, 49.2800066860001 ], [ -124.390451512999931, 49.280045696000066 ], [ -124.390726782999963, 49.280106601000092 ], [ -124.39084959899999, 49.280158037000092 ], [ -124.391210206999943, 49.280309085000063 ], [ -124.391534183999937, 49.280482901000035 ], [ -124.39174639, 49.280596773000077 ], [ -124.393010284999932, 49.281274795000101 ], [ -124.393736062999949, 49.281524549000032 ], [ -124.393967211999978, 49.281604098000102 ], [ -124.394390785999974, 49.281698025000033 ], [ -124.396577761999964, 49.282182995000028 ], [ -124.396956513999953, 49.282267006000083 ], [ -124.397332499999948, 49.282315787000066 ], [ -124.397572604999965, 49.282322886000046 ], [ -124.398106010999982, 49.282270509000085 ], [ -124.398580607000014, 49.282169501000027 ], [ -124.399170096, 49.282151174000028 ], [ -124.39948129699998, 49.282141511000169 ], [ -124.399990234999947, 49.28223925900005 ], [ -124.4007051899999, 49.282376609000018 ], [ -124.400976575999891, 49.282394096000083 ], [ -124.402901784, 49.282328009000089 ], [ -124.404344378999951, 49.282206838000072 ], [ -124.405498501999958, 49.282109896000073 ], [ -124.405961389999945, 49.28210770600009 ], [ -124.407096201999963, 49.282180202000077 ], [ -124.407517156999944, 49.282236467000146 ], [ -124.408330896999985, 49.282345213000028 ], [ -124.409021215999985, 49.28240039399999 ], [ -124.409573853999959, 49.282407986000081 ], [ -124.410807409, 49.282424912000081 ], [ -124.413185797999915, 49.282361707000085 ], [ -124.41342272899999, 49.28233035000008 ], [ -124.414392978999928, 49.282202007000087 ], [ -124.41447170099994, 49.282191608000076 ], [ -124.41481131399992, 49.282121459000145 ], [ -124.414852751999959, 49.282112900000058 ], [ -124.415041594999963, 49.282073898000036 ], [ -124.415612208999946, 49.28185808000012 ], [ -124.417628327999978, 49.281180110000022 ], [ -124.417657189999915, 49.281901593000079 ], [ -124.417656870999949, 49.283744989000077 ], [ -124.417656848999954, 49.283798948000033 ], [ -124.417656753, 49.284221916000078 ], [ -124.417656676999954, 49.284590602000058 ], [ -124.417656597999894, 49.285103502000027 ], [ -124.41765656599992, 49.285418252000078 ], [ -124.417656512999898, 49.28566891100013 ], [ -124.417655904999918, 49.286704322000062 ], [ -124.41765543299999, 49.287585915000093 ], [ -124.417655253999897, 49.287891990000034 ], [ -124.417654407000015, 49.289434299000021 ], [ -124.416236490999978, 49.28943744500004 ], [ -124.412935859999976, 49.289444715000059 ], [ -124.412014724999949, 49.28944671900004 ], [ -124.409992693000035, 49.289451098000022 ], [ -124.409181514999929, 49.289452833000027 ], [ -124.408727821999989, 49.289453816000091 ], [ -124.408232852999916, 49.28945488300009 ], [ -124.40689889399998, 49.289457732000074 ], [ -124.405523627999941, 49.289460660000088 ], [ -124.404203572999933, 49.289463439000023 ], [ -124.400533417999938, 49.289471130000102 ], [ -124.399995747999981, 49.28947320500005 ], [ -124.399583277999952, 49.289474788000128 ], [ -124.398482998999938, 49.289479026000024 ], [ -124.396695123999962, 49.289485875000011 ], [ -124.395758955999895, 49.289489439000086 ], [ -124.394732008999952, 49.289484881000149 ], [ -124.392610514999987, 49.289475449000108 ], [ -124.39109749, 49.28946869300006 ], [ -124.390863827999965, 49.289467663000082 ], [ -124.390065898, 49.289464081000112 ], [ -124.38982955799996, 49.289463029000075 ], [ -124.38963977899999, 49.289462168000092 ], [ -124.389369187999989, 49.289460973000104 ], [ -124.388870514999894, 49.289457257000024 ], [ -124.387331284999917, 49.289445698000115 ], [ -124.38657430799999, 49.289440005000117 ], [ -124.385927078999913, 49.289440893000126 ], [ -124.38462075699999, 49.28944270000008 ], [ -124.38161481199991, 49.289446783000088 ], [ -124.38027504099999, 49.289448009000111 ], [ -124.379174714999976, 49.289448978000053 ], [ -124.378734771999987, 49.289449347000108 ], [ -124.373068917999973, 49.289454183000046 ], [ -124.372532951000011, 49.28945462500009 ], [ -124.370565201999952, 49.289456200000089 ], [ -124.369376789999933, 49.289458995000075 ], [ -124.369382495999972, 49.289326134000092 ], [ -124.369476843999919, 49.287124131000063 ], [ -124.369487681999928, 49.286871834000038 ], [ -124.369491599999932, 49.286779906000156 ], [ -124.369502491999967, 49.286681442000067 ] ], [ [ -124.399817443999922, 49.286566660000055 ], [ -124.399843414999964, 49.285813853 ], [ -124.405335217999948, 49.285895076 ], [ -124.40532217, 49.286274601000116 ], [ -124.407851248999947, 49.286311912 ], [ -124.407845304, 49.286485093000074 ], [ -124.412478586999939, 49.286553293000097 ], [ -124.41247690299997, 49.286602529000056 ], [ -124.414202541999927, 49.286627878000083 ], [ -124.414273809999926, 49.284543261000081 ], [ -124.410675504999944, 49.284490370000114 ], [ -124.41066073099995, 49.28492157900007 ], [ -124.40516903199989, 49.284840626000076 ], [ -124.405182693999961, 49.284443276000097 ], [ -124.402203946999961, 49.284399251000153 ], [ -124.402237054999901, 49.283438078000074 ], [ -124.400861749999976, 49.283417723000092 ], [ -124.400821719999939, 49.284578824000072 ], [ -124.395330080999898, 49.284497371 ], [ -124.395336414999974, 49.284314276000046 ], [ -124.39313667299993, 49.284281570000097 ], [ -124.393116729999974, 49.284857215000066 ], [ -124.392367938999882, 49.284846072000065 ], [ -124.392365475999966, 49.284917154000034 ], [ -124.392617441999974, 49.284920904000089 ], [ -124.392598474999957, 49.285468227000138 ], [ -124.392603774999941, 49.285468306000091 ], [ -124.392594466999924, 49.285736909000079 ], [ -124.394041155999943, 49.285758430000058 ], [ -124.394046957999976, 49.285590909000121 ], [ -124.399538723999939, 49.285672427000122 ], [ -124.399508026999968, 49.286562075000077 ], [ -124.399817443999922, 49.286566660000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59012999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.975672434469762", "sL_AssetLoss": "1167.4", "sL_BldgLoss": "1139", "sL_StrLoss": "1010", "sL_NStrLoss": "129", "sL_ContLoss": "28.4", "geom_point": "0101000020E6100000704A502E13145FC0C3CB3E55A6A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.313322883999945, 49.286958440000056 ], [ -124.313308551999981, 49.286418871000066 ], [ -124.312071289999921, 49.286432930000075 ], [ -124.312064129999897, 49.286163145000039 ], [ -124.3116517119999, 49.286167829000078 ], [ -124.311645578999929, 49.285936640000081 ], [ -124.311955593999983, 49.285936087000046 ], [ -124.313067195999963, 49.285934104000063 ], [ -124.313289366999982, 49.285933713000119 ], [ -124.315358272999958, 49.285930172000072 ], [ -124.31536347299999, 49.286125629000068 ], [ -124.314951055999984, 49.286130324000091 ], [ -124.314965407999949, 49.28666989200012 ], [ -124.314552984999963, 49.2866745850001 ], [ -124.314560157999921, 49.286944368 ], [ -124.313322883999945, 49.286958440000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15612229", "BldgCostT": "10354858", "sL_LossRatio": "0.864329704624987", "sL_AssetLoss": "43321.2", "sL_BldgLoss": "37443.8", "sL_StrLoss": "26019.6", "sL_NStrLoss": "11424.2", "sL_ContLoss": "5877.4", "geom_point": "0101000020E610000086353A8CAE125FC0DDE939AFD2A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.299867723999924, 49.296457705000066 ], [ -124.299059002999954, 49.296401700000075 ], [ -124.298347390999965, 49.296398608000082 ], [ -124.29676840599997, 49.296479986000122 ], [ -124.296066560999947, 49.296483028000132 ], [ -124.29430578799996, 49.296490609000038 ], [ -124.293894473999956, 49.296557742000104 ], [ -124.289903195999926, 49.29654396100004 ], [ -124.274570949999941, 49.296676258000076 ], [ -124.274568574999989, 49.296676271000067 ], [ -124.274569725999953, 49.296663365000043 ], [ -124.27488108799993, 49.296668338000117 ], [ -124.274903280999979, 49.296071780000091 ], [ -124.277674373999972, 49.296115996000026 ], [ -124.277679975999931, 49.295965148000114 ], [ -124.280224687999933, 49.296005689000076 ], [ -124.280235690999945, 49.295709011000014 ], [ -124.283322017, 49.295758100000036 ], [ -124.283325970999925, 49.295651288000101 ], [ -124.283737893999955, 49.295657833000092 ], [ -124.283774009999931, 49.294681996000108 ], [ -124.288667975999942, 49.29475963600008 ], [ -124.288688140999952, 49.294213216000038 ], [ -124.293355277999979, 49.294287052000151 ], [ -124.293360157999984, 49.294154433000095 ], [ -124.294483450999977, 49.294172174000025 ], [ -124.294508150999931, 49.293500560000098 ], [ -124.30000067499999, 49.293587137 ], [ -124.299979906999965, 49.294153666000071 ], [ -124.300638086999982, 49.294164022000075 ], [ -124.300587380999957, 49.295547719000062 ], [ -124.30300758199999, 49.29558576400008 ], [ -124.302931872999963, 49.297654505000047 ], [ -124.302629026999924, 49.297508894000082 ], [ -124.301619804999959, 49.297023682000038 ], [ -124.301216998999934, 49.296830006000057 ], [ -124.300745737999975, 49.296648165000065 ], [ -124.300674638999951, 49.296620714000056 ], [ -124.300574798999946, 49.296582205000099 ], [ -124.299867723999924, 49.296457705000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8612833", "BldgCostT": "5443333", "sL_LossRatio": "0.718929661882998", "sL_AssetLoss": "31900.2", "sL_BldgLoss": "22934", "sL_StrLoss": "12090", "sL_NStrLoss": "10844", "sL_ContLoss": "8966.2", "geom_point": "0101000020E61000001EA0871CD3155FC0C9E327DD2FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.338600438999919, 49.28433269600005 ], [ -124.338608235, 49.28411503700007 ], [ -124.3371737, 49.284092960000045 ], [ -124.33727756799999, 49.281195344000054 ], [ -124.337481197999949, 49.281196702000088 ], [ -124.33772558199999, 49.28119833500012 ], [ -124.337890692999963, 49.281199419000068 ], [ -124.3385337079999, 49.281203709000074 ], [ -124.33949814499999, 49.281210139000045 ], [ -124.339855448999941, 49.281212517000029 ], [ -124.343469796999955, 49.281236501000045 ], [ -124.34532159299999, 49.281233225000072 ], [ -124.345515095999957, 49.282496208000047 ], [ -124.344161269999972, 49.28247545900004 ], [ -124.344091958999954, 49.284417033000089 ], [ -124.338600438999919, 49.28433269600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158307667", "BldgCostT": "102711667", "sL_LossRatio": "0.817239862939871", "sL_AssetLoss": "453669.5", "sL_BldgLoss": "370756.8", "sL_StrLoss": "247624.3", "sL_NStrLoss": "123132.5", "sL_ContLoss": "82912.7", "geom_point": "0101000020E6100000604F225F55165FC0EED2239997A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.320544705999978, 49.303258898000088 ], [ -124.317084306999988, 49.302694611000035 ], [ -124.317042345999965, 49.30268687600006 ], [ -124.317039183999967, 49.302568318000098 ], [ -124.31643646000002, 49.302575186000126 ], [ -124.315798195999932, 49.302457524000033 ], [ -124.315794335999911, 49.302312635000071 ], [ -124.315057758999956, 49.302321021000061 ], [ -124.314554056999967, 49.302228158000041 ], [ -124.314549500999988, 49.302056940000043 ], [ -124.313679083999943, 49.302066840000109 ], [ -124.312459588999957, 49.301841988000042 ], [ -124.31081186099999, 49.30148276700006 ], [ -124.310387324999951, 49.301390203000047 ], [ -124.309257094999978, 49.301031285000128 ], [ -124.308383192999898, 49.300691816000089 ], [ -124.307969105000026, 49.300479104000068 ], [ -124.307327968999942, 49.299993419000074 ], [ -124.306868585999936, 49.299645387000041 ], [ -124.306139281999918, 49.299260682000082 ], [ -124.305968093999979, 49.299170386000064 ], [ -124.305100190999909, 49.298756946000012 ], [ -124.310145909999946, 49.298835987000068 ], [ -124.310136716999949, 49.299088223000091 ], [ -124.313450302999982, 49.299140002000073 ], [ -124.313422264999943, 49.299910840000067 ], [ -124.314079553999974, 49.299903367000113 ], [ -124.314086726999946, 49.300173150000056 ], [ -124.31491179599999, 49.300163764000025 ], [ -124.314918975999959, 49.300433547000083 ], [ -124.316981658999964, 49.300410054000089 ], [ -124.316988849, 49.300679837000089 ], [ -124.31822646499991, 49.300665724000069 ], [ -124.318233661999955, 49.300935507000105 ], [ -124.319471283999988, 49.30092138000002 ], [ -124.319478487999959, 49.301191163000098 ], [ -124.319621248999951, 49.301189532000102 ], [ -124.31963352799994, 49.300850703000044 ], [ -124.321156172999949, 49.300874374000088 ], [ -124.321188415999956, 49.299983839000092 ], [ -124.321778391999914, 49.299993005000033 ], [ -124.321851937999938, 49.297960899000067 ], [ -124.321782677999963, 49.29795982300007 ], [ -124.321832832999959, 49.296573970000104 ], [ -124.321043633999949, 49.296561708000056 ], [ -124.321173922999975, 49.2929629200001 ], [ -124.324147569999965, 49.29300909400007 ], [ -124.324194874999975, 49.291699991000044 ], [ -124.329687241, 49.291785059000034 ], [ -124.329574197999932, 49.294923509000064 ], [ -124.329675032999944, 49.294925068000055 ], [ -124.329635358999951, 49.296026540000106 ], [ -124.332668287999979, 49.296073393 ], [ -124.332658799999962, 49.296337284000053 ], [ -124.333073488999972, 49.296343683000053 ], [ -124.333066423999981, 49.296540254000099 ], [ -124.3334112899999, 49.296545575000067 ], [ -124.333405913999954, 49.296695129000035 ], [ -124.333659373, 49.296699038000035 ], [ -124.333770585999943, 49.293603934000046 ], [ -124.334246614999941, 49.293611275000039 ], [ -124.334257984999908, 49.293294745000054 ], [ -124.335271027999951, 49.293310362000028 ], [ -124.335287568999945, 49.292849570000072 ], [ -124.335291020999961, 49.292849623000038 ], [ -124.335335237999971, 49.291617768000059 ], [ -124.337449252999988, 49.291650325000063 ], [ -124.340827613999963, 49.291702269000083 ], [ -124.34080819699993, 49.292245029000135 ], [ -124.340856445999947, 49.292245770000051 ], [ -124.340825194999965, 49.293119317000105 ], [ -124.342368166999989, 49.293101400000118 ], [ -124.342401523999982, 49.294329558000136 ], [ -124.342437788999945, 49.294330115000072 ], [ -124.34246814699999, 49.293480749000025 ], [ -124.347960756999953, 49.293564889000052 ], [ -124.34794603099999, 49.293978261000127 ], [ -124.348901458999947, 49.293992868000053 ], [ -124.348918488999971, 49.293514511000112 ], [ -124.354151442999978, 49.293594365000089 ], [ -124.354217582999937, 49.291730637000065 ], [ -124.354240048999955, 49.291730979000071 ], [ -124.354273852999981, 49.290778346000067 ], [ -124.354120538999936, 49.29077601100002 ], [ -124.354119825999973, 49.290796067000059 ], [ -124.34862753299997, 49.29071224100003 ], [ -124.34867214099998, 49.289459429000061 ], [ -124.348755664999928, 49.287113388000058 ], [ -124.35049648299993, 49.287139987000046 ], [ -124.350497196999981, 49.287119931000099 ], [ -124.351373424999949, 49.287133309000133 ], [ -124.351433314, 49.285448337000098 ], [ -124.352741912999974, 49.285438959000039 ], [ -124.358475352999974, 49.285397684000017 ], [ -124.359316294999971, 49.28539159000006 ], [ -124.359318859999973, 49.284843194000096 ], [ -124.359319335, 49.284735175000044 ], [ -124.359320914999941, 49.284401150000072 ], [ -124.359327697999959, 49.282934288000035 ], [ -124.361781224999959, 49.28292741000012 ], [ -124.362616930999963, 49.283031894000011 ], [ -124.365846887999936, 49.283041266000055 ], [ -124.365750419, 49.285779416000047 ], [ -124.365820851999956, 49.285780482000135 ], [ -124.365865537999966, 49.284512106000065 ], [ -124.369642608, 49.284569189000116 ], [ -124.369671310999976, 49.283752573000129 ], [ -124.368200996999988, 49.283730368000093 ], [ -124.36820574799998, 49.283595298000094 ], [ -124.366620047999987, 49.283571328000058 ], [ -124.366638631999962, 49.283043548000101 ], [ -124.371022605999954, 49.283056080000094 ], [ -124.372974014999912, 49.283038205000075 ], [ -124.37304885399999, 49.283209072000055 ], [ -124.37322522, 49.283611692000093 ], [ -124.373785495999968, 49.284711208000068 ], [ -124.373933402999967, 49.284803407000034 ], [ -124.373714802999984, 49.285025365000102 ], [ -124.373687, 49.285053611000066 ], [ -124.373436080999966, 49.285377266000118 ], [ -124.37317709699991, 49.285711341000088 ], [ -124.373054121999985, 49.285869971000103 ], [ -124.36952927599998, 49.285709197000102 ], [ -124.369526052999902, 49.28571816400013 ], [ -124.369502238999971, 49.285783774000059 ], [ -124.369434994999963, 49.285968894000028 ], [ -124.369525909999979, 49.28646990700004 ], [ -124.369502491999967, 49.286681442000067 ], [ -124.369491599999932, 49.286779906000156 ], [ -124.369487681999928, 49.286871834000038 ], [ -124.369476843999919, 49.287124131000063 ], [ -124.369382495999972, 49.289326134000092 ], [ -124.369376789999933, 49.289458995000075 ], [ -124.370565201999952, 49.289456200000089 ], [ -124.370538359999927, 49.29035810500006 ], [ -124.370485388999938, 49.292140048000078 ], [ -124.370463659999928, 49.292869921000054 ], [ -124.370451386999946, 49.29328209500008 ], [ -124.370238693999937, 49.29687151500007 ], [ -124.369285807999944, 49.296881660000111 ], [ -124.367720606999953, 49.296898293000012 ], [ -124.367606451999919, 49.296953565000123 ], [ -124.367578093999967, 49.296967294000069 ], [ -124.367523399999968, 49.297036708000128 ], [ -124.367540909999889, 49.297516801000036 ], [ -124.367561458999944, 49.297833139000026 ], [ -124.367573163999907, 49.298012779000082 ], [ -124.367582822000017, 49.298161001000025 ], [ -124.367582250999973, 49.298192996000111 ], [ -124.367560913999966, 49.29940558300013 ], [ -124.365993789999919, 49.299386503000072 ], [ -124.363044902999931, 49.299352583000122 ], [ -124.357746650999971, 49.299417995000084 ], [ -124.357004159999974, 49.299427130000069 ], [ -124.356828606999983, 49.299429289000045 ], [ -124.355833637999964, 49.299424247000076 ], [ -124.355434569999957, 49.299422199000048 ], [ -124.354159304999911, 49.299415699000036 ], [ -124.354157686999912, 49.299997508000097 ], [ -124.354157500999975, 49.300069632000046 ], [ -124.354156196999966, 49.300543688000083 ], [ -124.354155881999986, 49.300660702000101 ], [ -124.354155507999948, 49.300800114000033 ], [ -124.353712846999898, 49.300800497000097 ], [ -124.34932361300001, 49.300804218000088 ], [ -124.348732997999917, 49.300804687 ], [ -124.347892410999961, 49.300792842000135 ], [ -124.346449243, 49.300772474000063 ], [ -124.345750016999972, 49.300762597000073 ], [ -124.345751238999981, 49.300662034000062 ], [ -124.345759446, 49.300004945000062 ], [ -124.345763297999923, 49.299694316000064 ], [ -124.345791822999942, 49.297389187000078 ], [ -124.344321104999949, 49.297384849000153 ], [ -124.342208896999978, 49.297378614000074 ], [ -124.339975575, 49.297408972000049 ], [ -124.337579005999942, 49.297441497000108 ], [ -124.329898132999958, 49.297565035000041 ], [ -124.328642956999929, 49.297585177000059 ], [ -124.325302582999925, 49.298758900000074 ], [ -124.325302804, 49.298991582000085 ], [ -124.325302998999959, 49.299270520000064 ], [ -124.325303590999908, 49.299999397000072 ], [ -124.325304124999931, 49.300673709000058 ], [ -124.325304424999928, 49.301063349000039 ], [ -124.322966395999941, 49.30113410200007 ], [ -124.32314359499999, 49.302908610000024 ], [ -124.323370820999983, 49.302909887000055 ], [ -124.323599703999889, 49.302911205000044 ], [ -124.323599241999915, 49.302981703000079 ], [ -124.323597960999962, 49.303170044000083 ], [ -124.323595000999916, 49.303613192000036 ], [ -124.32202150699996, 49.303460101000098 ], [ -124.320544705999978, 49.303258898000088 ] ], [ [ -124.362985548999973, 49.297268532000039 ], [ -124.36298640099993, 49.29724440300005 ], [ -124.36288247799996, 49.297242829000034 ], [ -124.362881624999929, 49.297266957000048 ], [ -124.362985548999973, 49.297268532000039 ] ], [ [ -124.366190548, 49.292235267000116 ], [ -124.366196782999907, 49.29205829400005 ], [ -124.363172905999974, 49.292012516000057 ], [ -124.363185981999948, 49.291642032000063 ], [ -124.362656364999907, 49.291634005000063 ], [ -124.362652282999989, 49.291749609000128 ], [ -124.362658390999911, 49.291749702000061 ], [ -124.36263865399998, 49.292308744000088 ], [ -124.362668924999966, 49.292309202000069 ], [ -124.36262200500002, 49.293638122000111 ], [ -124.363754263999937, 49.293655278000124 ], [ -124.363684761999977, 49.295625076000064 ], [ -124.364229778999984, 49.295633330000037 ], [ -124.364265716999938, 49.294614494 ], [ -124.365997673999942, 49.29464070600006 ], [ -124.366082482999985, 49.292233632000027 ], [ -124.366190548, 49.292235267000116 ] ], [ [ -124.365456804999965, 49.287139879000087 ], [ -124.365496069999935, 49.286025675000147 ], [ -124.363627462999929, 49.285997381000065 ], [ -124.363658225, 49.287112645000029 ], [ -124.365456804999965, 49.287139879000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.889808419132021", "sL_AssetLoss": "12276.8", "sL_BldgLoss": "10924", "sL_StrLoss": "7840", "sL_NStrLoss": "3084", "sL_ContLoss": "1352.8", "geom_point": "0101000020E610000074292AF2D6145FC0292EE0C830A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.319528799999944, 49.28264281100008 ], [ -124.320079403999941, 49.282420003000041 ], [ -124.320470201999925, 49.282326993000083 ], [ -124.320645341, 49.282303068000076 ], [ -124.320842880999976, 49.282276100000125 ], [ -124.322491789999944, 49.28227264300007 ], [ -124.324316704999916, 49.282268781000035 ], [ -124.32701478499996, 49.282262991000088 ], [ -124.327635717999925, 49.282261800000114 ], [ -124.328083674999959, 49.282219204000022 ], [ -124.328548500999915, 49.282127398000092 ], [ -124.328978415, 49.281974689000066 ], [ -124.329865103999964, 49.281497814000048 ], [ -124.330202386999986, 49.281361694000083 ], [ -124.330518872999932, 49.281268498000088 ], [ -124.33092248599999, 49.281199095000026 ], [ -124.331491325999949, 49.281157503000038 ], [ -124.332843899999929, 49.281165692000101 ], [ -124.335857134999969, 49.281185864000136 ], [ -124.33586029199995, 49.281302730000071 ], [ -124.335447916999954, 49.281307498000047 ], [ -124.335455204999917, 49.281577280000107 ], [ -124.332980944999917, 49.281605854000091 ], [ -124.332988217999954, 49.28187563600008 ], [ -124.329689181999953, 49.281913653000053 ], [ -124.329710946999981, 49.282723001000107 ], [ -124.329298561, 49.282727746000013 ], [ -124.329320319999937, 49.283537094000039 ], [ -124.328083138999887, 49.283551322000093 ], [ -124.328075890999969, 49.283281540000054 ], [ -124.327663499, 49.283286280000063 ], [ -124.327649012000023, 49.282746713000058 ], [ -124.326411850999961, 49.282760924000051 ], [ -124.326426324999915, 49.283300490000087 ], [ -124.323127184999962, 49.283338320000063 ], [ -124.323119965999965, 49.283068537000112 ], [ -124.32270757500001, 49.283073259000041 ], [ -124.322693140999903, 49.282533693000083 ], [ -124.321455981999947, 49.282547850000086 ], [ -124.321463192999943, 49.282817633000015 ], [ -124.320226025999972, 49.282831778000158 ], [ -124.320240431999949, 49.283371345000027 ], [ -124.319828038999972, 49.28337605700009 ], [ -124.319835239999989, 49.28364584000014 ], [ -124.319422844999949, 49.283650550000097 ], [ -124.319430043999901, 49.283920334000115 ], [ -124.31901764499996, 49.283925043000082 ], [ -124.319024841999976, 49.284194826000039 ], [ -124.318612440999971, 49.284199534000024 ], [ -124.318634026999973, 49.285008885000096 ], [ -124.318221619999917, 49.285013591000094 ], [ -124.318228812999948, 49.28528337400013 ], [ -124.31781640199992, 49.285288079000026 ], [ -124.317823593999961, 49.285557863000072 ], [ -124.316998767999948, 49.285567269000104 ], [ -124.317005954999956, 49.285837052000048 ], [ -124.316043082999983, 49.285848024000067 ], [ -124.316261903999973, 49.285796701000024 ], [ -124.316607495999961, 49.285662505000111 ], [ -124.316919302999978, 49.285473803000123 ], [ -124.316928047999951, 49.285466593000073 ], [ -124.317155707999945, 49.285279486000015 ], [ -124.317353593999925, 49.285051202000055 ], [ -124.318694384999986, 49.283304993000073 ], [ -124.318923489, 49.283047500000123 ], [ -124.3191895099999, 49.282832900000066 ], [ -124.319528799999944, 49.28264281100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.871630881681133", "sL_AssetLoss": "2189", "sL_BldgLoss": "1908", "sL_StrLoss": "1370", "sL_NStrLoss": "538", "sL_ContLoss": "281", "geom_point": "0101000020E61000000B0FD408C1135FC05A6FAB8BA1A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.30751193899998, 49.285625327000027 ], [ -124.307760779999967, 49.285627798000064 ], [ -124.308083691999954, 49.285660042000032 ], [ -124.308179789999969, 49.285669639000048 ], [ -124.308551911999984, 49.285706801000067 ], [ -124.309370874999942, 49.285850202000113 ], [ -124.309768918999936, 49.285897440000035 ], [ -124.309886590999938, 49.285911400000053 ], [ -124.310181147999941, 49.285923751000063 ], [ -124.31040786799997, 49.285933262000107 ], [ -124.310414456, 49.286181868000057 ], [ -124.310002036999933, 49.286186545000056 ], [ -124.310009185999917, 49.286456329000053 ], [ -124.308771921999977, 49.286470352000116 ], [ -124.308779063999964, 49.286740137000038 ], [ -124.307541793999974, 49.286754146000078 ], [ -124.30751193899998, 49.285625327000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29709084", "BldgCostT": "18653334", "sL_LossRatio": "0.696449189121978", "sL_AssetLoss": "112594", "sL_BldgLoss": "78416", "sL_StrLoss": "43348", "sL_NStrLoss": "35068", "sL_ContLoss": "34178", "geom_point": "0101000020E61000008B1AF109BE135FC0E6400FB5EDA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.30951408599995, 49.306386074000038 ], [ -124.306300096999919, 49.305516379000039 ], [ -124.30405274, 49.30513260900004 ], [ -124.30220341499998, 49.305069000000103 ], [ -124.301495793999891, 49.305128837000055 ], [ -124.301492298999975, 49.30488210000005 ], [ -124.301490638999908, 49.304793533000087 ], [ -124.301469605999955, 49.303663769000053 ], [ -124.30134880199995, 49.303547549000051 ], [ -124.301348088999973, 49.301997085000046 ], [ -124.301352793999968, 49.301936460000043 ], [ -124.301753275999943, 49.301931949000057 ], [ -124.301746169999916, 49.301662165000032 ], [ -124.302484029999931, 49.301653851000033 ], [ -124.301371865999926, 49.301636371000022 ], [ -124.301619804999959, 49.297023682000038 ], [ -124.302629026999924, 49.297508894000082 ], [ -124.302931872999963, 49.297654505000047 ], [ -124.302917037999961, 49.298059846000122 ], [ -124.30361801, 49.298070854000102 ], [ -124.303487333999925, 49.301642536000053 ], [ -124.303808913999944, 49.301638908000015 ], [ -124.303829637999954, 49.302424237000068 ], [ -124.303837388999938, 49.302718045000042 ], [ -124.303424831999976, 49.302722699000064 ], [ -124.303431948999943, 49.302992483 ], [ -124.303019387999939, 49.302997136000059 ], [ -124.303026503999959, 49.303266921000102 ], [ -124.301788814999938, 49.303280872000066 ], [ -124.301795923999933, 49.30355065600007 ], [ -124.302208487999934, 49.303546008000097 ], [ -124.302215597999989, 49.303815792000094 ], [ -124.303453299999916, 49.303801837000101 ], [ -124.303446182999977, 49.303532052000016 ], [ -124.30468387599997, 49.303518084000082 ], [ -124.304705249999927, 49.304327436000023 ], [ -124.310068663999942, 49.304266749000085 ], [ -124.310075817999987, 49.304536533000061 ], [ -124.31090096299999, 49.304527175000018 ], [ -124.310908118999947, 49.304796958000068 ], [ -124.311320692999971, 49.304792276000036 ], [ -124.311323715999904, 49.304906127000038 ], [ -124.311327853999984, 49.305062060000061 ], [ -124.312153006999964, 49.305052692000075 ], [ -124.312160170999974, 49.305322475000018 ], [ -124.315460793999989, 49.305284947000054 ], [ -124.315474092999949, 49.305784455000051 ], [ -124.316198601999972, 49.305795747000104 ], [ -124.316198028999978, 49.305811514 ], [ -124.317097369999956, 49.305825524000063 ], [ -124.31709687299994, 49.30583919900004 ], [ -124.318150031999906, 49.305855597000082 ], [ -124.318149954999953, 49.305857741000061 ], [ -124.320033962999958, 49.305887048000109 ], [ -124.319991318999939, 49.307063851000066 ], [ -124.318862294, 49.307070252000102 ], [ -124.318914728999928, 49.307543430000109 ], [ -124.317224406999955, 49.307458367000045 ], [ -124.316355103999982, 49.307300442000091 ], [ -124.312538969999963, 49.30696097200007 ], [ -124.312290931999954, 49.306935739000068 ], [ -124.30951408599995, 49.306386074000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6539583", "BldgCostT": "4038333", "sL_LossRatio": "0.914817548553767", "sL_AssetLoss": "8670.8", "sL_BldgLoss": "7932.2", "sL_StrLoss": "5672.2", "sL_NStrLoss": "2260", "sL_ContLoss": "738.6", "geom_point": "0101000020E610000071223461FF155FC08C4258AEB3A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.344520591999981, 49.311553730000064 ], [ -124.344517148999955, 49.311427253000062 ], [ -124.344243171999977, 49.311430441000041 ], [ -124.344104524999977, 49.311432054000043 ], [ -124.344102785999937, 49.311368051000045 ], [ -124.3440971859999, 49.3111622750001 ], [ -124.343682989999962, 49.311167092000112 ], [ -124.342859319999917, 49.311176667000034 ], [ -124.342847502999973, 49.31074201400007 ], [ -124.342844651999968, 49.310637108000087 ], [ -124.342645856999951, 49.310639418000015 ], [ -124.342432033999927, 49.310641903000068 ], [ -124.342428967999936, 49.310529066000115 ], [ -124.342424701999931, 49.310372123000072 ], [ -124.342127298999941, 49.310375577000045 ], [ -124.342012087999962, 49.310376915000113 ], [ -124.342010434999963, 49.310316117000077 ], [ -124.342004758999977, 49.310107136000049 ], [ -124.341608748999988, 49.310111734000039 ], [ -124.341592143999932, 49.31011192800004 ], [ -124.34159190599992, 49.310103166000083 ], [ -124.341584817999973, 49.309842148000023 ], [ -124.341090204999972, 49.30984788900011 ], [ -124.340759594999895, 49.309851726000076 ], [ -124.340754859999961, 49.309677256000057 ], [ -124.340737627999957, 49.309042386000058 ], [ -124.342800649999944, 49.309018430000073 ], [ -124.342807982999915, 49.309288210000041 ], [ -124.345696222999933, 49.309254609000043 ], [ -124.345762527, 49.311688327000056 ], [ -124.345360057999983, 49.311701774000021 ], [ -124.344889113999955, 49.311717503000068 ], [ -124.344525790999967, 49.31174467400011 ], [ -124.344520591999981, 49.311553730000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6658000", "BldgCostT": "4120000", "sL_LossRatio": "0.813268568215843", "sL_AssetLoss": "15296.3", "sL_BldgLoss": "12440", "sL_StrLoss": "7582", "sL_NStrLoss": "4858", "sL_ContLoss": "2856.3", "geom_point": "0101000020E6100000AD4BAEDEB8165FC0A6CF71E2E9A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.35404329, 49.312623218000084 ], [ -124.354037047999924, 49.312395549000023 ], [ -124.352386526999936, 49.312414879000052 ], [ -124.352349595999939, 49.311065985000027 ], [ -124.356063164999981, 49.311022464000061 ], [ -124.356070571999936, 49.311292242000064 ], [ -124.357936909999978, 49.311270327000031 ], [ -124.35751453599994, 49.312459767000121 ], [ -124.357470914000018, 49.312582545000055 ], [ -124.357456305999932, 49.312623692000059 ], [ -124.357184334999971, 49.312623655000053 ], [ -124.35404329, 49.312623218000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418465708", "BldgCostT": "258561552", "sL_LossRatio": "0.674043348430943", "sL_AssetLoss": "1116644.8", "sL_BldgLoss": "752667", "sL_StrLoss": "371813", "sL_NStrLoss": "380854", "sL_ContLoss": "363977.8", "geom_point": "0101000020E610000045640F82C8155FC082F37002D3A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.334606047999941, 49.311242220000025 ], [ -124.330908357999959, 49.310053835000168 ], [ -124.328218172999968, 49.309180575000049 ], [ -124.327701377999986, 49.309227573000079 ], [ -124.327398811999984, 49.309259352000034 ], [ -124.325577954999986, 49.309294308000048 ], [ -124.32468081499999, 49.309340511000073 ], [ -124.323475829999921, 49.309300202000031 ], [ -124.323520393999942, 49.309196172000071 ], [ -124.323704084999989, 49.308767607000114 ], [ -124.323867889, 49.308324504000062 ], [ -124.323908834999941, 49.308213723000037 ], [ -124.323947656999934, 49.3081087300001 ], [ -124.324136400999947, 49.307598138000102 ], [ -124.324180855999927, 49.307477819000091 ], [ -124.324333039999914, 49.307107675000054 ], [ -124.322352150999947, 49.307077024000101 ], [ -124.322368083999976, 49.306636687000022 ], [ -124.32250558799997, 49.306638822000103 ], [ -124.322508662999923, 49.306553818000118 ], [ -124.321685525999953, 49.306563235000034 ], [ -124.321678309000021, 49.30629345300008 ], [ -124.320853138999922, 49.306302889000079 ], [ -124.320834174999959, 49.305593535000121 ], [ -124.320366459999988, 49.30558626600002 ], [ -124.320379408999912, 49.305228844000069 ], [ -124.319999136999954, 49.305233189000084 ], [ -124.320006345999928, 49.305502971000053 ], [ -124.318768609999921, 49.305517105000028 ], [ -124.318761407999915, 49.30524732300006 ], [ -124.317523678999933, 49.305261443000099 ], [ -124.317516483999938, 49.304991660000105 ], [ -124.315453609999949, 49.305015163000121 ], [ -124.315451956999979, 49.304953095000016 ], [ -124.315446427000012, 49.30474538000005 ], [ -124.314208706999949, 49.30475946500006 ], [ -124.31420153099999, 49.304489681000078 ], [ -124.311726102999984, 49.304517810000114 ], [ -124.31171894199997, 49.304248027000085 ], [ -124.310893803999974, 49.3042573910001 ], [ -124.310886645999943, 49.30398760700006 ], [ -124.310061510999944, 49.303996966000128 ], [ -124.310054356999899, 49.303727182000053 ], [ -124.308404094999972, 49.303745881000118 ], [ -124.308396950999921, 49.303476098000061 ], [ -124.30757182399995, 49.303485438000052 ], [ -124.307561091999943, 49.303079883000059 ], [ -124.307550406999923, 49.302676086000055 ], [ -124.308571651999927, 49.302664526000072 ], [ -124.307825763999944, 49.302652847000019 ], [ -124.307834970999977, 49.302400613000074 ], [ -124.306304447999977, 49.302376631000115 ], [ -124.306312734999949, 49.30269008600002 ], [ -124.305405058999952, 49.302700344000108 ], [ -124.304662505999985, 49.302708731000038 ], [ -124.304658814999982, 49.302568967000056 ], [ -124.304653052999953, 49.302350732000065 ], [ -124.304521157999901, 49.30234866200005 ], [ -124.304652744999956, 49.298749926000063 ], [ -124.305100190999909, 49.298756946000012 ], [ -124.305968093999979, 49.299170386000064 ], [ -124.306139281999918, 49.299260682000082 ], [ -124.306868585999936, 49.299645387000041 ], [ -124.307327968999942, 49.299993419000074 ], [ -124.307969105000026, 49.300479104000068 ], [ -124.308383192999898, 49.300691816000089 ], [ -124.309257094999978, 49.301031285000128 ], [ -124.310387324999951, 49.301390203000047 ], [ -124.31081186099999, 49.30148276700006 ], [ -124.312459588999957, 49.301841988000042 ], [ -124.313679083999943, 49.302066840000109 ], [ -124.313343700999937, 49.302070652000097 ], [ -124.313319396999987, 49.302738747000035 ], [ -124.312916749999971, 49.302732461000026 ], [ -124.312935141999972, 49.303424620000065 ], [ -124.314585389999962, 49.303405856000026 ], [ -124.314592568999956, 49.303675639000083 ], [ -124.315005131999968, 49.303670944000018 ], [ -124.315012311999965, 49.303940728000065 ], [ -124.317487706999913, 49.303912529000073 ], [ -124.317494900999989, 49.304182311000048 ], [ -124.318320036999978, 49.304172900000019 ], [ -124.318312838999958, 49.303903117000061 ], [ -124.319137968999925, 49.30389370000011 ], [ -124.31912356199993, 49.303354135000127 ], [ -124.31871100099994, 49.303358844000108 ], [ -124.318703802999892, 49.303089061000037 ], [ -124.31746612699996, 49.303103180000029 ], [ -124.317458932999941, 49.302833398000125 ], [ -124.317046374999961, 49.302838100000073 ], [ -124.317042345999965, 49.30268687600006 ], [ -124.317084306999988, 49.302694611000035 ], [ -124.320544705999978, 49.303258898000088 ], [ -124.32202150699996, 49.303460101000098 ], [ -124.323595000999916, 49.303613192000036 ], [ -124.323597960999962, 49.303170044000083 ], [ -124.323599241999915, 49.302981703000079 ], [ -124.323599703999889, 49.302911205000044 ], [ -124.323370820999983, 49.302909887000055 ], [ -124.32314359499999, 49.302908610000024 ], [ -124.322966395999941, 49.30113410200007 ], [ -124.325304424999928, 49.301063349000039 ], [ -124.325304124999931, 49.300673709000058 ], [ -124.325303590999908, 49.299999397000072 ], [ -124.325302998999959, 49.299270520000064 ], [ -124.325302804, 49.298991582000085 ], [ -124.325302582999925, 49.298758900000074 ], [ -124.328642956999929, 49.297585177000059 ], [ -124.329898132999958, 49.297565035000041 ], [ -124.337579005999942, 49.297441497000108 ], [ -124.339975575, 49.297408972000049 ], [ -124.342208896999978, 49.297378614000074 ], [ -124.344321104999949, 49.297384849000153 ], [ -124.345791822999942, 49.297389187000078 ], [ -124.345763297999923, 49.299694316000064 ], [ -124.345759446, 49.300004945000062 ], [ -124.345751238999981, 49.300662034000062 ], [ -124.345750016999972, 49.300762597000073 ], [ -124.346449243, 49.300772474000063 ], [ -124.347892410999961, 49.300792842000135 ], [ -124.348732997999917, 49.300804687 ], [ -124.34932361300001, 49.300804218000088 ], [ -124.353712846999898, 49.300800497000097 ], [ -124.354155507999948, 49.300800114000033 ], [ -124.354155881999986, 49.300660702000101 ], [ -124.354156196999966, 49.300543688000083 ], [ -124.354157500999975, 49.300069632000046 ], [ -124.354157686999912, 49.299997508000097 ], [ -124.354159304999911, 49.299415699000036 ], [ -124.355434569999957, 49.299422199000048 ], [ -124.355833637999964, 49.299424247000076 ], [ -124.356828606999983, 49.299429289000045 ], [ -124.357004159999974, 49.299427130000069 ], [ -124.357746650999971, 49.299417995000084 ], [ -124.363044902999931, 49.299352583000122 ], [ -124.365993789999919, 49.299386503000072 ], [ -124.367560913999966, 49.29940558300013 ], [ -124.367560328999929, 49.300000265000072 ], [ -124.367559666, 49.300692840000075 ], [ -124.367559383999989, 49.300970997000029 ], [ -124.367467285999965, 49.302886513000018 ], [ -124.367408293999944, 49.304113482000048 ], [ -124.367677123999897, 49.304108105000118 ], [ -124.369087995999905, 49.304117694000112 ], [ -124.368710249999978, 49.304677491000078 ], [ -124.367977681999889, 49.305763165 ], [ -124.367629493999956, 49.306279208000085 ], [ -124.367529389999916, 49.306427482000046 ], [ -124.362194056999911, 49.30610148200001 ], [ -124.361425070999942, 49.306054477000082 ], [ -124.359754090999957, 49.305952291000061 ], [ -124.35940074399997, 49.306910098000088 ], [ -124.359394498999961, 49.306927011000056 ], [ -124.35908696499996, 49.307760524000081 ], [ -124.359057889999974, 49.307839289000114 ], [ -124.358641603999956, 49.309153032000012 ], [ -124.35856374799999, 49.309151849000038 ], [ -124.358553906999958, 49.309429777000091 ], [ -124.35846841299994, 49.309699574000035 ], [ -124.358306294999977, 49.310211064000015 ], [ -124.353031522999984, 49.310130804000039 ], [ -124.353113192, 49.307831938000078 ], [ -124.35262070099995, 49.307824431 ], [ -124.351848377999943, 49.307833470000084 ], [ -124.351842662999957, 49.3076245970001 ], [ -124.350416977999942, 49.307602843000076 ], [ -124.350420729999925, 49.307497373000039 ], [ -124.348123726999972, 49.307462284000096 ], [ -124.348135040999978, 49.30787685400005 ], [ -124.346484665999952, 49.307896098000143 ], [ -124.346462605999974, 49.307086760000061 ], [ -124.34586400499991, 49.307093734000055 ], [ -124.345224844999947, 49.307101177000057 ], [ -124.345196419, 49.306057207000023 ], [ -124.344326940999963, 49.306043888000083 ], [ -124.344328199999964, 49.306008601000073 ], [ -124.342510976999932, 49.305980741000056 ], [ -124.342532952999989, 49.305366036000095 ], [ -124.341564825999953, 49.305351182000081 ], [ -124.341554185999925, 49.305648638000058 ], [ -124.341029904999971, 49.305640589000056 ], [ -124.341024173999955, 49.305800750000103 ], [ -124.340546635999942, 49.305793418000079 ], [ -124.340543660999955, 49.305876562000073 ], [ -124.339498909999975, 49.305860512000137 ], [ -124.339490030999968, 49.306108387000037 ], [ -124.333995950999949, 49.306023819000124 ], [ -124.333999185999971, 49.305933811000038 ], [ -124.33322419199996, 49.305921860000083 ], [ -124.3332306399999, 49.306160735000084 ], [ -124.332818055999923, 49.306165494 ], [ -124.332825335, 49.306435276000052 ], [ -124.33201109299992, 49.306444665000036 ], [ -124.33117499799998, 49.306454300000041 ], [ -124.33117215499999, 49.306348818000117 ], [ -124.331167728, 49.306184519000027 ], [ -124.329865438999974, 49.30619951500011 ], [ -124.329517397999936, 49.306203520000047 ], [ -124.329531918999962, 49.30674308200004 ], [ -124.329320474999975, 49.306745515000109 ], [ -124.329291287999965, 49.307555445000027 ], [ -124.332029262999967, 49.307523914000079 ], [ -124.33203653799994, 49.30779369600004 ], [ -124.333274322999927, 49.307779420000045 ], [ -124.333281604999939, 49.308049201000046 ], [ -124.333694202999979, 49.308044439000071 ], [ -124.333700863999965, 49.308291253000057 ], [ -124.333701484999963, 49.308314220000064 ], [ -124.333835766, 49.308312669000095 ], [ -124.334939283999987, 49.308299926000082 ], [ -124.334944382999964, 49.308488666000088 ], [ -124.334946573999957, 49.308569706000107 ], [ -124.335420398999986, 49.308564232000037 ], [ -124.335771775999916, 49.308560170000106 ], [ -124.335775847999955, 49.30871074800006 ], [ -124.33577751199999, 49.308772276000106 ], [ -124.33577907199998, 49.308829951000114 ], [ -124.33619167499999, 49.308825180000028 ], [ -124.336220865, 49.309904302000099 ], [ -124.335348436999979, 49.309914387000063 ], [ -124.334570414000012, 49.309923376000121 ], [ -124.334563125000031, 49.309653595000078 ], [ -124.333325292999987, 49.309667886000049 ], [ -124.333318012999911, 49.309398105000113 ], [ -124.332492794999979, 49.309407624000073 ], [ -124.332500070999941, 49.309677404000105 ], [ -124.3320874599999, 49.309682163000055 ], [ -124.332102010999932, 49.310221725000119 ], [ -124.332514626999966, 49.310216966000013 ], [ -124.332521903999947, 49.310486748000081 ], [ -124.3333471399999, 49.310477227000064 ], [ -124.333354421999942, 49.310747009000053 ], [ -124.334179660999908, 49.310737483000089 ], [ -124.3341869489999, 49.311007263000128 ], [ -124.334599569999924, 49.311002499000111 ], [ -124.334606047999941, 49.311242220000025 ] ], [ [ -124.36357215, 49.304854812000023 ], [ -124.363529009999979, 49.306077029000072 ], [ -124.36428287199999, 49.306068130000043 ], [ -124.364347355999911, 49.304240322000091 ], [ -124.364617981000023, 49.304244418000046 ], [ -124.364701059999959, 49.301888977000075 ], [ -124.364204456999971, 49.301881460000089 ], [ -124.364204067999964, 49.301892486000064 ], [ -124.3596622539999, 49.301823628000086 ], [ -124.359660886, 49.301862298000067 ], [ -124.359428244999961, 49.301858766000059 ], [ -124.359426715999945, 49.301901965000106 ], [ -124.360041404999961, 49.301911297000032 ], [ -124.359991601999937, 49.303319347000055 ], [ -124.361218946999941, 49.303337970000086 ], [ -124.361203061999944, 49.303787356000065 ], [ -124.361315970999925, 49.303789068000093 ], [ -124.361286848999939, 49.304613043000096 ], [ -124.361670508000017, 49.304618861000073 ], [ -124.361666667999913, 49.304727536000122 ], [ -124.362827571999915, 49.30474513200005 ], [ -124.36282409899998, 49.304843481000098 ], [ -124.36357215, 49.304854812000023 ] ], [ [ -124.330578577999958, 49.30182782100006 ], [ -124.330582325999899, 49.301723724000055 ], [ -124.329924943999984, 49.301713564000103 ], [ -124.329921194999926, 49.301817661000022 ], [ -124.330578577999958, 49.30182782100006 ] ], [ [ -124.329346626999936, 49.301679926000062 ], [ -124.329350991999945, 49.301558766000014 ], [ -124.328829226000011, 49.301550697000039 ], [ -124.328835806999948, 49.301368113000116 ], [ -124.328377044999982, 49.301361016000094 ], [ -124.328370424, 49.301544702000065 ], [ -124.328713570999966, 49.301550010000028 ], [ -124.328709243999981, 49.30167006700006 ], [ -124.329346626999936, 49.301679926000062 ] ], [ [ -124.346847944999951, 49.306082486000015 ], [ -124.346860481999954, 49.306542392000011 ], [ -124.3475995699999, 49.306533775000055 ], [ -124.347615235999967, 49.306094223000052 ], [ -124.346847944999951, 49.306082486000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204775084", "BldgCostT": "137748334", "sL_LossRatio": "0.925127010891356", "sL_AssetLoss": "455177.5", "sL_BldgLoss": "421097", "sL_StrLoss": "336037", "sL_NStrLoss": "85060", "sL_ContLoss": "34080.5", "geom_point": "0101000020E6100000EF8B8D712C155FC04FF4F92823A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.332844490999932, 49.317760410000048 ], [ -124.333055604999913, 49.31739459300006 ], [ -124.333016097999931, 49.316009519000062 ], [ -124.333043324999934, 49.31536720400009 ], [ -124.333238428999891, 49.314986818000101 ], [ -124.333635949999973, 49.314635508000094 ], [ -124.333900662999937, 49.314345254000081 ], [ -124.334013798999962, 49.314065236000062 ], [ -124.334012799999968, 49.313711443000052 ], [ -124.332917877999989, 49.313695468000084 ], [ -124.332062044999944, 49.313682251000081 ], [ -124.33171830699996, 49.31360945400008 ], [ -124.331443151999963, 49.313425150000057 ], [ -124.331147447999939, 49.313812164000105 ], [ -124.330857404999932, 49.313965232000065 ], [ -124.330652791999924, 49.314074586000075 ], [ -124.33042466499991, 49.31428095200004 ], [ -124.330354407999948, 49.314344547000118 ], [ -124.330176991000016, 49.314691058000058 ], [ -124.330172816999919, 49.314740784000087 ], [ -124.330152869999907, 49.314978748000037 ], [ -124.329904897999981, 49.314994726000073 ], [ -124.329871439999948, 49.315006412000052 ], [ -124.329665496999937, 49.315078311000072 ], [ -124.329611976999956, 49.315105798000104 ], [ -124.329490419999928, 49.315168301000043 ], [ -124.329340990999967, 49.315308303000101 ], [ -124.329316468999963, 49.315343955000053 ], [ -124.329222123999912, 49.315481097000038 ], [ -124.329217286999963, 49.315614190000105 ], [ -124.327806707999954, 49.315622082000118 ], [ -124.32635362399995, 49.315627497000023 ], [ -124.32563810799999, 49.315630804000072 ], [ -124.325278492999971, 49.315632444000094 ], [ -124.324279915999981, 49.315650277000067 ], [ -124.323660870999959, 49.315663189000098 ], [ -124.323639388999965, 49.31466095899999 ], [ -124.323616414999918, 49.313015993000128 ], [ -124.323602911999956, 49.312058899000057 ], [ -124.323119865999971, 49.312055395000051 ], [ -124.322297527000018, 49.312049421000054 ], [ -124.323475829999921, 49.309300202000031 ], [ -124.32468081499999, 49.309340511000073 ], [ -124.325577954999986, 49.309294308000048 ], [ -124.327398811999984, 49.309259352000034 ], [ -124.327701377999986, 49.309227573000079 ], [ -124.328218172999968, 49.309180575000049 ], [ -124.330908357999959, 49.310053835000168 ], [ -124.334606047999941, 49.311242220000025 ], [ -124.334628726999981, 49.31208162100009 ], [ -124.335041357999913, 49.312076854000018 ], [ -124.335048649999948, 49.312346635000061 ], [ -124.335461283999933, 49.312341866000061 ], [ -124.335483165999975, 49.31315120700004 ], [ -124.334657887999967, 49.313160743000068 ], [ -124.334665177999952, 49.313430523000122 ], [ -124.335077818999977, 49.313425756000086 ], [ -124.335114282999896, 49.314774658000069 ], [ -124.339240809999978, 49.314726906000089 ], [ -124.339248124999955, 49.31499668500004 ], [ -124.339660779999917, 49.314991902000031 ], [ -124.339668096999958, 49.315261681000024 ], [ -124.340080754999974, 49.315256897000012 ], [ -124.340088075000011, 49.315526677000065 ], [ -124.340500733999974, 49.315521890000063 ], [ -124.340508055999976, 49.315791670000081 ], [ -124.343396679999913, 49.315758123000066 ], [ -124.343433372999968, 49.317107019000041 ], [ -124.34384604399996, 49.317102221000077 ], [ -124.343868069, 49.317911559000024 ], [ -124.344280745999967, 49.317906759000081 ], [ -124.344308835999954, 49.318938587000147 ], [ -124.343734287999965, 49.318960272000055 ], [ -124.343376582999937, 49.318973768000085 ], [ -124.343376628999977, 49.318941557000109 ], [ -124.343378302999938, 49.318183382000036 ], [ -124.343272607999907, 49.317986497000106 ], [ -124.343049880999956, 49.317872295000043 ], [ -124.342903189999973, 49.317822412000112 ], [ -124.342719007999975, 49.317823195000102 ], [ -124.342544004, 49.317871799000045 ], [ -124.340499506999919, 49.317885399000048 ], [ -124.340476698999936, 49.317370198000027 ], [ -124.340461698999931, 49.317097186000069 ], [ -124.340000079999982, 49.316360969000065 ], [ -124.339834743999987, 49.316149135000039 ], [ -124.339671528999958, 49.315940032000057 ], [ -124.339230437999916, 49.315513783000043 ], [ -124.338991282999956, 49.315359785000084 ], [ -124.338699860999938, 49.315245472000086 ], [ -124.338249282999953, 49.315161128000057 ], [ -124.33636945399995, 49.315183531000123 ], [ -124.335934198999979, 49.315247039 ], [ -124.335683577999944, 49.315335901000111 ], [ -124.335495881000014, 49.31547253500004 ], [ -124.335398741999967, 49.315688892000033 ], [ -124.335342248999936, 49.316113796000081 ], [ -124.335350883999951, 49.316710392000118 ], [ -124.335356093999906, 49.317068193000082 ], [ -124.335369856999961, 49.317565278000082 ], [ -124.335495204999987, 49.317711246000087 ], [ -124.335688248999972, 49.317770937000027 ], [ -124.335940312999938, 49.317756813000102 ], [ -124.336695377999959, 49.317516392000101 ], [ -124.337451711999933, 49.317393005000071 ], [ -124.337866792999947, 49.317393985000116 ], [ -124.337862214, 49.317906995000023 ], [ -124.337256799999977, 49.317921096000056 ], [ -124.334709916999969, 49.318697021000034 ], [ -124.334659991, 49.318712231000106 ], [ -124.334146861999912, 49.318868547000079 ], [ -124.333616091999957, 49.319030226000038 ], [ -124.33344578099999, 49.319082100000088 ], [ -124.333017390999913, 49.319146606000061 ], [ -124.333003278999954, 49.319147348000072 ], [ -124.332608294999943, 49.31916819900006 ], [ -124.3326085, 49.318641894000059 ], [ -124.332608546999921, 49.31851585400009 ], [ -124.332608612999962, 49.318358089000057 ], [ -124.332616996999889, 49.318310595000064 ], [ -124.332648299999988, 49.318133702000083 ], [ -124.332708199999942, 49.318019685000088 ], [ -124.332844490999932, 49.317760410000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.880281690140845", "sL_AssetLoss": "2272", "sL_BldgLoss": "2000", "sL_StrLoss": "1310", "sL_NStrLoss": "690", "sL_ContLoss": "272", "geom_point": "0101000020E6100000BC75822617165FC017F35235EAA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.345360057999983, 49.311701774000021 ], [ -124.345762527, 49.311688327000056 ], [ -124.345769720999954, 49.311952403000049 ], [ -124.344531837999952, 49.311966813000069 ], [ -124.344525790999967, 49.31174467400011 ], [ -124.344889113999955, 49.311717503000068 ], [ -124.345360057999983, 49.311701774000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149860751", "BldgCostT": "102145001", "sL_LossRatio": "0.920305330386723", "sL_AssetLoss": "379215.45", "sL_BldgLoss": "348994", "sL_StrLoss": "270959.7", "sL_NStrLoss": "78034.3", "sL_ContLoss": "30221.45", "geom_point": "0101000020E61000004B5BE88C20155FC095BA852A8CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.331147447999939, 49.313812164000105 ], [ -124.331443151999963, 49.313425150000057 ], [ -124.33171830699996, 49.31360945400008 ], [ -124.332062044999944, 49.313682251000081 ], [ -124.332917877999989, 49.313695468000084 ], [ -124.334012799999968, 49.313711443000052 ], [ -124.334013798999962, 49.314065236000062 ], [ -124.333900662999937, 49.314345254000081 ], [ -124.333635949999973, 49.314635508000094 ], [ -124.333238428999891, 49.314986818000101 ], [ -124.333043324999934, 49.31536720400009 ], [ -124.333016097999931, 49.316009519000062 ], [ -124.333055604999913, 49.31739459300006 ], [ -124.332844490999932, 49.317760410000048 ], [ -124.332708199999942, 49.318019685000088 ], [ -124.332648299999988, 49.318133702000083 ], [ -124.332616996999889, 49.318310595000064 ], [ -124.332608612999962, 49.318358089000057 ], [ -124.332608546999921, 49.31851585400009 ], [ -124.3326085, 49.318641894000059 ], [ -124.332608294999943, 49.31916819900006 ], [ -124.331431117999941, 49.319180696000032 ], [ -124.330039742999986, 49.319194548000091 ], [ -124.329970952999943, 49.319195257000089 ], [ -124.32927208599996, 49.319202202000042 ], [ -124.328557090999965, 49.319209210000032 ], [ -124.32786259299999, 49.319216402000087 ], [ -124.326415900999976, 49.319231903000066 ], [ -124.32635362399995, 49.315627497000023 ], [ -124.327806707999954, 49.315622082000118 ], [ -124.329217286999963, 49.315614190000105 ], [ -124.329222123999912, 49.315481097000038 ], [ -124.329316468999963, 49.315343955000053 ], [ -124.329340990999967, 49.315308303000101 ], [ -124.329490419999928, 49.315168301000043 ], [ -124.329611976999956, 49.315105798000104 ], [ -124.329665496999937, 49.315078311000072 ], [ -124.329871439999948, 49.315006412000052 ], [ -124.329904897999981, 49.314994726000073 ], [ -124.330152869999907, 49.314978748000037 ], [ -124.330172816999919, 49.314740784000087 ], [ -124.330176991000016, 49.314691058000058 ], [ -124.330354407999948, 49.314344547000118 ], [ -124.33042466499991, 49.31428095200004 ], [ -124.330652791999924, 49.314074586000075 ], [ -124.330857404999932, 49.313965232000065 ], [ -124.331147447999939, 49.313812164000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145066583", "BldgCostT": "99518333", "sL_LossRatio": "0.944831257059214", "sL_AssetLoss": "311118.2", "sL_BldgLoss": "293954.2", "sL_StrLoss": "247261.2", "sL_NStrLoss": "46693", "sL_ContLoss": "17164", "geom_point": "0101000020E61000008BBF2F26A4155FC057F01D2DB5A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.333017390999913, 49.319146606000061 ], [ -124.33344578099999, 49.319082100000088 ], [ -124.333616091999957, 49.319030226000038 ], [ -124.334146861999912, 49.318868547000079 ], [ -124.334659991, 49.318712231000106 ], [ -124.334709916999969, 49.318697021000034 ], [ -124.337256799999977, 49.317921096000056 ], [ -124.337862214, 49.317906995000023 ], [ -124.337866792999947, 49.317393985000116 ], [ -124.337451711999933, 49.317393005000071 ], [ -124.336695377999959, 49.317516392000101 ], [ -124.335940312999938, 49.317756813000102 ], [ -124.335688248999972, 49.317770937000027 ], [ -124.335495204999987, 49.317711246000087 ], [ -124.335369856999961, 49.317565278000082 ], [ -124.335356093999906, 49.317068193000082 ], [ -124.335350883999951, 49.316710392000118 ], [ -124.335342248999936, 49.316113796000081 ], [ -124.335398741999967, 49.315688892000033 ], [ -124.335495881000014, 49.31547253500004 ], [ -124.335683577999944, 49.315335901000111 ], [ -124.335934198999979, 49.315247039 ], [ -124.33636945399995, 49.315183531000123 ], [ -124.338249282999953, 49.315161128000057 ], [ -124.338699860999938, 49.315245472000086 ], [ -124.338991282999956, 49.315359785000084 ], [ -124.339230437999916, 49.315513783000043 ], [ -124.339671528999958, 49.315940032000057 ], [ -124.339834743999987, 49.316149135000039 ], [ -124.340000079999982, 49.316360969000065 ], [ -124.340461698999931, 49.317097186000069 ], [ -124.340476698999936, 49.317370198000027 ], [ -124.340499506999919, 49.317885399000048 ], [ -124.342544004, 49.317871799000045 ], [ -124.342719007999975, 49.317823195000102 ], [ -124.342903189999973, 49.317822412000112 ], [ -124.343049880999956, 49.317872295000043 ], [ -124.343272607999907, 49.317986497000106 ], [ -124.343378302999938, 49.318183382000036 ], [ -124.343376628999977, 49.318941557000109 ], [ -124.343376582999937, 49.318973768000085 ], [ -124.343376305999968, 49.31908560600003 ], [ -124.343375389999977, 49.319512867000057 ], [ -124.343375338999948, 49.319526388000099 ], [ -124.343374584999964, 49.319863995000041 ], [ -124.337845983999941, 49.319889798000105 ], [ -124.337848533999988, 49.319572186000102 ], [ -124.337851913999899, 49.319149998000057 ], [ -124.336669590999975, 49.319153390000039 ], [ -124.335892399999963, 49.319168391000048 ], [ -124.334929993999978, 49.319176482000081 ], [ -124.334833607999897, 49.319177304000092 ], [ -124.334796145, 49.319188688000061 ], [ -124.334177595999975, 49.319376987000133 ], [ -124.334148907999989, 49.320175004000113 ], [ -124.333981789999953, 49.320310108000101 ], [ -124.333661305999968, 49.32035472000009 ], [ -124.332770704999959, 49.320348200000126 ], [ -124.332440095999956, 49.320290800000109 ], [ -124.332101791999989, 49.320217201000027 ], [ -124.332074928999987, 49.320216481000095 ], [ -124.331882287999946, 49.320211226000026 ], [ -124.331419206999925, 49.320198593000029 ], [ -124.331431117999941, 49.319180696000032 ], [ -124.332608294999943, 49.31916819900006 ], [ -124.333003278999954, 49.319147348000072 ], [ -124.333017390999913, 49.319146606000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126597251", "BldgCostT": "86365001", "sL_LossRatio": "0.877144057796463", "sL_AssetLoss": "426434.4", "sL_BldgLoss": "374044.4", "sL_StrLoss": "255403.4", "sL_NStrLoss": "118641", "sL_ContLoss": "52390", "geom_point": "0101000020E6100000AF6CFEE36D155FC0DF66F9D329A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.331395208999965, 49.320727943000044 ], [ -124.331419206999925, 49.320198593000029 ], [ -124.331882287999946, 49.320211226000026 ], [ -124.332074928999987, 49.320216481000095 ], [ -124.332101791999989, 49.320217201000027 ], [ -124.332440095999956, 49.320290800000109 ], [ -124.332770704999959, 49.320348200000126 ], [ -124.333661305999968, 49.32035472000009 ], [ -124.333981789999953, 49.320310108000101 ], [ -124.334148907999989, 49.320175004000113 ], [ -124.334177595999975, 49.319376987000133 ], [ -124.334796145, 49.319188688000061 ], [ -124.334833607999897, 49.319177304000092 ], [ -124.334929993999978, 49.319176482000081 ], [ -124.335892399999963, 49.319168391000048 ], [ -124.336669590999975, 49.319153390000039 ], [ -124.337851913999899, 49.319149998000057 ], [ -124.337848533999988, 49.319572186000102 ], [ -124.337845983999941, 49.319889798000105 ], [ -124.337839397999957, 49.320650417000117 ], [ -124.337834194999914, 49.321177812 ], [ -124.33782591399995, 49.322022898000057 ], [ -124.33781819699999, 49.322812209000098 ], [ -124.337810298, 49.323607838000029 ], [ -124.335384083999941, 49.323599314000063 ], [ -124.331368733, 49.323586924000047 ], [ -124.331368311999967, 49.322682188000108 ], [ -124.331372804999944, 49.321222190000057 ], [ -124.331395208999965, 49.320727943000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "387317609", "BldgCostT": "235753672", "sL_LossRatio": "0.669285491367738", "sL_AssetLoss": "1129819.8", "sL_BldgLoss": "756172", "sL_StrLoss": "348526", "sL_NStrLoss": "407646", "sL_ContLoss": "373647.8", "geom_point": "0101000020E6100000C18F0087F3145FC09525649425A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.323784610999979, 49.323303051000032 ], [ -124.323771649999983, 49.322330657000123 ], [ -124.32376369499994, 49.321295390000088 ], [ -124.323753295999907, 49.32025279600002 ], [ -124.323753320999955, 49.320243766000054 ], [ -124.323754950999927, 49.31925814500002 ], [ -124.326415900999976, 49.319231903000066 ], [ -124.32786259299999, 49.319216402000087 ], [ -124.328557090999965, 49.319209210000032 ], [ -124.32927208599996, 49.319202202000042 ], [ -124.329970952999943, 49.319195257000089 ], [ -124.330039742999986, 49.319194548000091 ], [ -124.331431117999941, 49.319180696000032 ], [ -124.331419206999925, 49.320198593000029 ], [ -124.331395208999965, 49.320727943000044 ], [ -124.331372804999944, 49.321222190000057 ], [ -124.331368311999967, 49.322682188000108 ], [ -124.331269189999986, 49.32264739000005 ], [ -124.329960604999968, 49.322642514000052 ], [ -124.328547504999932, 49.322638694000048 ], [ -124.328547096999898, 49.322800768 ], [ -124.328545202999948, 49.323578392000115 ], [ -124.328535526999985, 49.324042475000063 ], [ -124.328531956999939, 49.324213547000063 ], [ -124.328522681999956, 49.324659089000114 ], [ -124.328467617999962, 49.324777991000126 ], [ -124.328315329999953, 49.324734669000073 ], [ -124.328209244, 49.324704479000069 ], [ -124.326843533999977, 49.324315824000074 ], [ -124.326510708999976, 49.324221090000066 ], [ -124.326270085999951, 49.324152074000033 ], [ -124.325290084999921, 49.323870983000084 ], [ -124.324942138999987, 49.32376026100011 ], [ -124.32478591899995, 49.323746143000037 ], [ -124.323978827999966, 49.323515061000116 ], [ -124.32368238, 49.323430182000038 ], [ -124.323739950999979, 49.323359067000112 ], [ -124.323784610999979, 49.323303051000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129709166", "BldgCostT": "83351666", "sL_LossRatio": "0.855404181337094", "sL_AssetLoss": "351574.62", "sL_BldgLoss": "300738.4", "sL_StrLoss": "210895.9", "sL_NStrLoss": "89842.5", "sL_ContLoss": "50836.22", "geom_point": "0101000020E61000001725F81145155FC09C6BF2109DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.328044062999979, 49.326500586000066 ], [ -124.32800276399999, 49.326444890000111 ], [ -124.326757113, 49.326457402000052 ], [ -124.326220691999936, 49.325700997000155 ], [ -124.326001542999961, 49.325385232000059 ], [ -124.325927798999942, 49.325132085000071 ], [ -124.326011517999945, 49.324719302000105 ], [ -124.326147585999962, 49.324583500000095 ], [ -124.326510708999976, 49.324221090000066 ], [ -124.326843533999977, 49.324315824000074 ], [ -124.328209244, 49.324704479000069 ], [ -124.328315329999953, 49.324734669000073 ], [ -124.328467617999962, 49.324777991000126 ], [ -124.328522681999956, 49.324659089000114 ], [ -124.328531956999939, 49.324213547000063 ], [ -124.328535526999985, 49.324042475000063 ], [ -124.328545202999948, 49.323578392000115 ], [ -124.328547096999898, 49.322800768 ], [ -124.328547504999932, 49.322638694000048 ], [ -124.329960604999968, 49.322642514000052 ], [ -124.331269189999986, 49.32264739000005 ], [ -124.331368311999967, 49.322682188000108 ], [ -124.331368733, 49.323586924000047 ], [ -124.335384083999941, 49.323599314000063 ], [ -124.337810298, 49.323607838000029 ], [ -124.337809287999974, 49.323701574000069 ], [ -124.337803284999907, 49.324262108000042 ], [ -124.337800695999974, 49.324719391000023 ], [ -124.337795086999904, 49.325144200000089 ], [ -124.337791064999976, 49.325485264000051 ], [ -124.337787078999924, 49.326133330000069 ], [ -124.337784422999945, 49.326514049000117 ], [ -124.337784171999914, 49.326635574000072 ], [ -124.337945253999976, 49.327013406000049 ], [ -124.337909681999989, 49.32723789500006 ], [ -124.337730558999979, 49.327708619000134 ], [ -124.337619957999934, 49.327662662000087 ], [ -124.337517530999975, 49.327620082000095 ], [ -124.337127729999963, 49.327458100000094 ], [ -124.336142756999919, 49.327051404000052 ], [ -124.335173964999953, 49.326731324000072 ], [ -124.334880855999941, 49.326646271000108 ], [ -124.333630955999979, 49.326283581000034 ], [ -124.33348420399993, 49.326240949000081 ], [ -124.3324948899999, 49.325953542000036 ], [ -124.331897794999946, 49.325780068 ], [ -124.330106881999967, 49.325259706000068 ], [ -124.328834255999936, 49.325623993000065 ], [ -124.328695496999941, 49.325663712000072 ], [ -124.328937318999962, 49.326000810000068 ], [ -124.329382166999963, 49.326620901000112 ], [ -124.329679955999936, 49.327036011000146 ], [ -124.329970018999958, 49.327440360000097 ], [ -124.330639519999963, 49.328373484000096 ], [ -124.32934708399992, 49.328371498000152 ], [ -124.329324028999935, 49.328288400000105 ], [ -124.32886569599998, 49.327632465000079 ], [ -124.32857752699999, 49.327219993000064 ], [ -124.328148848999888, 49.32664188600004 ], [ -124.328044062999979, 49.326500586000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37130334", "BldgCostT": "25343334", "sL_LossRatio": "0.923289968046631", "sL_AssetLoss": "82019.52", "sL_BldgLoss": "75727.8", "sL_StrLoss": "62734.2", "sL_NStrLoss": "12993.6", "sL_ContLoss": "6291.72", "geom_point": "0101000020E61000001AD8F88621185FC090D2B6ABA1AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.374306244999957, 49.336283787000099 ], [ -124.374338675000018, 49.335359565000026 ], [ -124.373920685999948, 49.33535328100001 ], [ -124.373932021999948, 49.335030274000111 ], [ -124.373126776000021, 49.335018161000114 ], [ -124.373253127999931, 49.331419519000107 ], [ -124.373522592999976, 49.331423573000073 ], [ -124.373571195999929, 49.33003892200005 ], [ -124.379068193999913, 49.330121476000031 ], [ -124.379057126999967, 49.330437849000084 ], [ -124.381211133999955, 49.33047012100004 ], [ -124.381085400999979, 49.334068777000027 ], [ -124.380789215999926, 49.334064343000101 ], [ -124.380776410999943, 49.334430785000045 ], [ -124.37987214199994, 49.334417239000054 ], [ -124.379837680999984, 49.335402724000126 ], [ -124.379591408999957, 49.335463091000129 ], [ -124.379267705999936, 49.33563680200011 ], [ -124.379248779999898, 49.335656450000052 ], [ -124.378926552999971, 49.335990736000106 ], [ -124.378919194999938, 49.33599835900003 ], [ -124.379816883, 49.335997483000057 ], [ -124.379803984999953, 49.336366303000027 ], [ -124.374306244999957, 49.336283787000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10215250", "BldgCostT": "7045000", "sL_LossRatio": "0.948839607533999", "sL_AssetLoss": "20169.9", "sL_BldgLoss": "19138", "sL_StrLoss": "16180", "sL_NStrLoss": "2958", "sL_ContLoss": "1031.9", "geom_point": "0101000020E6100000ED5E93DAB0185FC05958A27921AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.385697761999921, 49.337465554000062 ], [ -124.385695570999971, 49.337387539000112 ], [ -124.384457069999954, 49.337402384000065 ], [ -124.38444950200001, 49.33713261000009 ], [ -124.383211006999943, 49.337147440000038 ], [ -124.38320344499999, 49.33687766600012 ], [ -124.382790615, 49.336882607000121 ], [ -124.382760377999944, 49.335803511000059 ], [ -124.383173198999927, 49.335798570000051 ], [ -124.383165638999941, 49.335528797000045 ], [ -124.383578457999974, 49.335523855000112 ], [ -124.383577689999981, 49.33549652400005 ], [ -124.387645725999917, 49.335498069000053 ], [ -124.387905154999885, 49.339096536000042 ], [ -124.385642104999974, 49.339062775000066 ], [ -124.385697761999921, 49.337465554000062 ] ], [ [ -124.385719296000019, 49.336847525000081 ], [ -124.385738109999977, 49.336307572000067 ], [ -124.385665270999979, 49.336308445000043 ], [ -124.385680420999918, 49.336847993000085 ], [ -124.385719296000019, 49.336847525000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.975418666144354", "sL_AssetLoss": "2042.2", "sL_BldgLoss": "1992", "sL_StrLoss": "1780", "sL_NStrLoss": "212", "sL_ContLoss": "50.2", "geom_point": "0101000020E6100000B978B27ACB165FC0B89B960E0CA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.356955103999965, 49.313440778000022 ], [ -124.35694769199999, 49.313171000000111 ], [ -124.356122420999952, 49.313180688000081 ], [ -124.35611501299995, 49.312910911000081 ], [ -124.354464475999976, 49.312930270000038 ], [ -124.354457077999939, 49.31266049200012 ], [ -124.354044444999971, 49.312665327000026 ], [ -124.35404329, 49.312623218000084 ], [ -124.357184334999971, 49.312623655000053 ], [ -124.357456305999932, 49.312623692000059 ], [ -124.35745356299999, 49.31263254000001 ], [ -124.35720414799999, 49.313437853999986 ], [ -124.356955103999965, 49.313440778000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230941062", "BldgCostT": "155023191", "sL_LossRatio": "0.907546500394056", "sL_AssetLoss": "496630.2", "sL_BldgLoss": "450715", "sL_StrLoss": "350721", "sL_NStrLoss": "99994", "sL_ContLoss": "45915.2", "geom_point": "0101000020E610000036BEC3484A175FC08CCA3437B2AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.367847796999968, 49.349184591000032 ], [ -124.368048213999927, 49.34896349100012 ], [ -124.368161371999975, 49.348911191000113 ], [ -124.368321307000016, 49.348942383000072 ], [ -124.368679107, 49.349110193000065 ], [ -124.36871854599994, 49.349128691000068 ], [ -124.36872987799994, 49.349134005000082 ], [ -124.369058310999947, 49.349184904000026 ], [ -124.3694277069999, 49.349163494000081 ], [ -124.369647492999945, 49.34905249300013 ], [ -124.369847693999986, 49.348759298000076 ], [ -124.369941832999942, 49.348670846000054 ], [ -124.370103581999956, 49.348518842 ], [ -124.370238914999959, 49.348391706000037 ], [ -124.370103533999909, 49.348254054000066 ], [ -124.37006407899996, 49.348213918000056 ], [ -124.369933397999944, 49.348081002000036 ], [ -124.369780190999961, 49.347822210000068 ], [ -124.369746593999977, 49.347736723000018 ], [ -124.369535287999952, 49.347199197000052 ], [ -124.370117787999931, 49.34714230100009 ], [ -124.370338864999923, 49.347104197000064 ], [ -124.370463700999949, 49.347082709000084 ], [ -124.370835585999941, 49.346953290000037 ], [ -124.371120638999969, 49.346818843000058 ], [ -124.3711684149999, 49.346796299000076 ], [ -124.371355676999926, 49.346672194000107 ], [ -124.371466400999921, 49.346537906000052 ], [ -124.37150751199999, 49.346346807000032 ], [ -124.371534526999952, 49.345767215000116 ], [ -124.371574382999967, 49.344912094000037 ], [ -124.3715847199999, 49.344678566000034 ], [ -124.371586711999925, 49.344633658000106 ], [ -124.371594780999928, 49.3444507130001 ], [ -124.371753433999984, 49.344275771000099 ], [ -124.371753152999929, 49.344275285000073 ], [ -124.371589683999929, 49.344007696000048 ], [ -124.371617707999974, 49.343094510000121 ], [ -124.372087105999952, 49.343082706000111 ], [ -124.372467937999929, 49.343041120000095 ], [ -124.37288370600001, 49.342995698000088 ], [ -124.373757099999921, 49.342847749000043 ], [ -124.374465212999937, 49.342727792000098 ], [ -124.374921418999975, 49.342739209000044 ], [ -124.374950213999966, 49.342192309000076 ], [ -124.375114602999929, 49.341740295000058 ], [ -124.374864492999933, 49.341694211000032 ], [ -124.374684515999931, 49.341700024000055 ], [ -124.374389500999925, 49.341709589000104 ], [ -124.374071871999945, 49.341784890000049 ], [ -124.37352482299994, 49.341973802000055 ], [ -124.373455494999945, 49.341972750000053 ], [ -124.373373583, 49.341971499000067 ], [ -124.373279388999947, 49.341912494000049 ], [ -124.373237405999987, 49.341816397000123 ], [ -124.373331007999951, 49.341420884000108 ], [ -124.373367471999941, 49.340240528000088 ], [ -124.373389714999959, 49.339521362000035 ], [ -124.373411388999926, 49.338818889000031 ], [ -124.371769103999938, 49.338786992000117 ], [ -124.371194427999953, 49.338866080000109 ], [ -124.37092607799994, 49.338903003000091 ], [ -124.37070770899993, 49.338975402000109 ], [ -124.370404883999981, 49.339177803000076 ], [ -124.370270975, 49.339347689000085 ], [ -124.370119392999982, 49.339653456000029 ], [ -124.369967495999944, 49.339959809000064 ], [ -124.369770610999922, 49.340125103000027 ], [ -124.369569108999926, 49.340183295000045 ], [ -124.369390390999911, 49.340180617000037 ], [ -124.36926522, 49.340181385000086 ], [ -124.36906090799999, 49.340125208000096 ], [ -124.368889711999941, 49.340027202000059 ], [ -124.368820716999963, 49.339915496000096 ], [ -124.36876694299994, 49.339558631000067 ], [ -124.368740492999947, 49.339383209000083 ], [ -124.36862777499999, 49.339136853000063 ], [ -124.368580798999972, 49.339034184000148 ], [ -124.368442, 49.338932481000022 ], [ -124.368386509999937, 49.338891794000091 ], [ -124.368212682999967, 49.338827902000034 ], [ -124.368084221999979, 49.338826246000053 ], [ -124.367423621999976, 49.33881779500004 ], [ -124.36550871, 49.338796992000056 ], [ -124.36447781, 49.338782294000069 ], [ -124.364464423999934, 49.338779737000081 ], [ -124.363808399999954, 49.338654283000025 ], [ -124.363242194999955, 49.338408992000083 ], [ -124.363204465999928, 49.338384212000143 ], [ -124.362954608999985, 49.338220093000061 ], [ -124.362740519999974, 49.338012497000129 ], [ -124.362088596999968, 49.337120486000046 ], [ -124.36194729899999, 49.336966381000053 ], [ -124.361863495999955, 49.336874995000137 ], [ -124.36173294299999, 49.336781241000075 ], [ -124.361380700999959, 49.336528297000079 ], [ -124.361121084999922, 49.336403701000023 ], [ -124.360719296999932, 49.336255394000062 ], [ -124.360272891999969, 49.336160496000055 ], [ -124.359857608999988, 49.336122609000036 ], [ -124.359802240999969, 49.336120241000089 ], [ -124.358314295999946, 49.336056902000081 ], [ -124.357954277999966, 49.335932597000109 ], [ -124.35653398699999, 49.33545829800002 ], [ -124.355268366999951, 49.334972047000058 ], [ -124.35511907099999, 49.334914702000049 ], [ -124.354636494999966, 49.334640016000087 ], [ -124.354490227, 49.334538157000082 ], [ -124.35410379299995, 49.334269133000106 ], [ -124.352993268999967, 49.332899332000046 ], [ -124.352482323999965, 49.332336026000057 ], [ -124.351969135999951, 49.331770243000079 ], [ -124.351805405999983, 49.331677671000108 ], [ -124.351540488999916, 49.331527859000026 ], [ -124.351209253000022, 49.331376090000099 ], [ -124.350487880999978, 49.331045526 ], [ -124.349436637999986, 49.330810305000035 ], [ -124.349387011999951, 49.330799198000143 ], [ -124.34914184099992, 49.33077117800012 ], [ -124.349121694999937, 49.330768884000115 ], [ -124.34895974699999, 49.330750374000054 ], [ -124.348837001999968, 49.330727650000028 ], [ -124.348043173999926, 49.330580644000115 ], [ -124.347667273999917, 49.330441686000015 ], [ -124.347258217999951, 49.330229305000103 ], [ -124.346884259999939, 49.330035444000011 ], [ -124.346682449999946, 49.329160751000074 ], [ -124.344946632999964, 49.328261051000055 ], [ -124.346400013999954, 49.327037743000091 ], [ -124.346482645, 49.326917474000055 ], [ -124.346513360999964, 49.326635952000103 ], [ -124.348088407999981, 49.326530995000127 ], [ -124.348618985999977, 49.32651089900007 ], [ -124.348741314999984, 49.326107137000072 ], [ -124.348649233999978, 49.325840356000121 ], [ -124.348621106999985, 49.325358895000086 ], [ -124.347279096999927, 49.323936497000048 ], [ -124.348877222999974, 49.323960918000104 ], [ -124.348883037999926, 49.323797693000046 ], [ -124.350058584999886, 49.323815642000056 ], [ -124.350059592999969, 49.323787321000097 ], [ -124.352200152999941, 49.323819972000074 ], [ -124.35220321099996, 49.323733975000053 ], [ -124.35443318599998, 49.323767944000103 ], [ -124.35524065599995, 49.323780233000015 ], [ -124.35534815699999, 49.320751045000073 ], [ -124.360844021999981, 49.320834526000098 ], [ -124.360716734999983, 49.324433210000052 ], [ -124.357679240999943, 49.324387106000103 ], [ -124.357571883999952, 49.327416280000065 ], [ -124.355431153999945, 49.327383736000087 ], [ -124.355428100999973, 49.327469732000033 ], [ -124.354252459999927, 49.32745184200008 ], [ -124.35425145399995, 49.327480162000022 ], [ -124.351686963999938, 49.327441092000079 ], [ -124.351655201999904, 49.328334024000178 ], [ -124.350955268999954, 49.328323350000112 ], [ -124.350911940999964, 49.329540839000074 ], [ -124.350825847999928, 49.329539526000062 ], [ -124.350812342999959, 49.329918946000092 ], [ -124.35524009099997, 49.329986396000017 ], [ -124.355218414999968, 49.330597054000101 ], [ -124.355897301999988, 49.330607380000103 ], [ -124.355826083999915, 49.332614417000059 ], [ -124.35624323199994, 49.332609522000013 ], [ -124.356235820000023, 49.332339745000056 ], [ -124.359743526999921, 49.332298526000045 ], [ -124.359868313999968, 49.32877327900011 ], [ -124.36101186199997, 49.328790621000103 ], [ -124.361014270999988, 49.328722507000066 ], [ -124.362049408999923, 49.328738195000064 ], [ -124.362109824999948, 49.327028929000058 ], [ -124.367606446999943, 49.327112066000062 ], [ -124.367605818999905, 49.327129887000076 ], [ -124.368351719999964, 49.327141146000081 ], [ -124.368282595999943, 49.329104189000049 ], [ -124.368697025999921, 49.329110443000076 ], [ -124.368570325999954, 49.332709092000115 ], [ -124.36824939399996, 49.332704250000049 ], [ -124.368209676999982, 49.333831998000036 ], [ -124.362712257999959, 49.333748893000127 ], [ -124.362759298999947, 49.332417668000083 ], [ -124.359953160999922, 49.332375139000135 ], [ -124.359958416999945, 49.332565861000084 ], [ -124.360784011999925, 49.332556141000154 ], [ -124.360791448999947, 49.332825919000108 ], [ -124.361617047999971, 49.332816193000035 ], [ -124.361654261999945, 49.334165077000051 ], [ -124.361241450999927, 49.334169940000066 ], [ -124.361248892999953, 49.33443971600007 ], [ -124.360836079999956, 49.334444579000035 ], [ -124.360843517999939, 49.33471435500006 ], [ -124.360430701999917, 49.334719216000103 ], [ -124.360445574999943, 49.335258769000042 ], [ -124.360858395999983, 49.335253907000066 ], [ -124.360873273, 49.335793461000051 ], [ -124.361286097999965, 49.335788599000104 ], [ -124.361293538999973, 49.336058376000025 ], [ -124.361706365999964, 49.336053512000042 ], [ -124.361713809999983, 49.336323287 ], [ -124.362539467999966, 49.336313556000086 ], [ -124.362546916, 49.336583333000071 ], [ -124.362959745999888, 49.336578465000073 ], [ -124.362967197999936, 49.336848240000066 ], [ -124.363380030999963, 49.336843371000079 ], [ -124.363387484, 49.337113147000103 ], [ -124.363800317999932, 49.337108276000031 ], [ -124.363807773999909, 49.337378052000133 ], [ -124.36504628499992, 49.337363429000114 ], [ -124.365031360999922, 49.336823877000086 ], [ -124.366682690999937, 49.33680436000013 ], [ -124.366675219999948, 49.336534584000077 ], [ -124.367088048999975, 49.336529701000146 ], [ -124.367080576999982, 49.336259926000118 ], [ -124.367906231999896, 49.336250156000162 ], [ -124.36789875299992, 49.335980381000034 ], [ -124.370788524999952, 49.335946138000082 ], [ -124.370796018999968, 49.33621591400005 ], [ -124.371208844999913, 49.336211017000018 ], [ -124.371216339999975, 49.336480792000025 ], [ -124.372454826999899, 49.336466089000091 ], [ -124.372460111999928, 49.336656187000081 ], [ -124.377128069999955, 49.336726344000084 ], [ -124.377025647999943, 49.339650087000095 ], [ -124.377499120999929, 49.339644445000097 ], [ -124.377491589, 49.339374670000019 ], [ -124.379555848, 49.339350046000057 ], [ -124.379548304999972, 49.339080272000061 ], [ -124.37993896199994, 49.339075608000094 ], [ -124.379988599999962, 49.337656103000121 ], [ -124.385486512999989, 49.337738330000022 ], [ -124.385425227999974, 49.339496834000045 ], [ -124.384513505999948, 49.339346141000071 ], [ -124.383121882999916, 49.33903345300012 ], [ -124.38254441399998, 49.339045447000011 ], [ -124.383235520999932, 49.33911030600008 ], [ -124.382834651999971, 49.339105822000114 ], [ -124.38203809799991, 49.339096896000086 ], [ -124.381719614999938, 49.33927840000009 ], [ -124.381363289999939, 49.339567887000044 ], [ -124.381118008999962, 49.339767211000087 ], [ -124.380859382999944, 49.339889314000047 ], [ -124.379945196999984, 49.340154708000114 ], [ -124.37993305, 49.340159012000122 ], [ -124.379569088999986, 49.340288600000079 ], [ -124.37923438699994, 49.340460903000064 ], [ -124.379164980999931, 49.340557096000104 ], [ -124.37931669299995, 49.341803306000088 ], [ -124.379352030999911, 49.342088152000066 ], [ -124.379390816999944, 49.342400726000065 ], [ -124.379416506999988, 49.342607707000063 ], [ -124.379358296999925, 49.342777894000029 ], [ -124.379165587, 49.342977492000074 ], [ -124.37836609499999, 49.343659497000075 ], [ -124.37827850199993, 49.343734302 ], [ -124.376783788999916, 49.34501030200007 ], [ -124.376686299999989, 49.345163615000047 ], [ -124.376636297999966, 49.345333914000108 ], [ -124.376635869999916, 49.345482244000046 ], [ -124.37663478899999, 49.345847797000026 ], [ -124.376628090999986, 49.346824416000139 ], [ -124.376574891999937, 49.346845531000085 ], [ -124.373573205999904, 49.348037698000056 ], [ -124.373138982999961, 49.348209842000124 ], [ -124.371155687999988, 49.348995996000099 ], [ -124.370406998999968, 49.349203392000049 ], [ -124.369948683999965, 49.349289198000044 ], [ -124.369414912999929, 49.349329796000092 ], [ -124.368716691999964, 49.349313898000098 ], [ -124.368201457999987, 49.349237223000024 ], [ -124.368147711999967, 49.349229246000057 ], [ -124.367847796999968, 49.349184591000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.927688592129564", "sL_AssetLoss": "5631.2", "sL_BldgLoss": "5224", "sL_StrLoss": "4270", "sL_NStrLoss": "954", "sL_ContLoss": "407.2", "geom_point": "0101000020E61000003D7850FD01165FC03EEEB66606A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.343734287999965, 49.318960272000055 ], [ -124.344308835999954, 49.318938587000147 ], [ -124.344394355999938, 49.322079739000067 ], [ -124.343731118999969, 49.322030451000103 ], [ -124.343410084, 49.321940766000054 ], [ -124.343407604999982, 49.321855764000077 ], [ -124.343389320999961, 49.321226296000063 ], [ -124.343385680999944, 49.321100413000067 ], [ -124.343373195999902, 49.320670509000102 ], [ -124.343374584999964, 49.319863995000041 ], [ -124.343375338999948, 49.319526388000099 ], [ -124.343375389999977, 49.319512867000057 ], [ -124.343376305999968, 49.31908560600003 ], [ -124.343376582999937, 49.318973768000085 ], [ -124.343734287999965, 49.318960272000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.885576501534415", "sL_AssetLoss": "2281", "sL_BldgLoss": "2020", "sL_StrLoss": "1340", "sL_NStrLoss": "680", "sL_ContLoss": "261", "geom_point": "0101000020E6100000FB9A1F5E5B175FC0CDA30B7F40A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.364007194999957, 49.314707073000136 ], [ -124.36399974199999, 49.31443729600003 ], [ -124.363587097000035, 49.314442166000092 ], [ -124.363582686999976, 49.314282407000121 ], [ -124.366058192999958, 49.314240228000131 ], [ -124.366070430999926, 49.314682699000102 ], [ -124.364007194999957, 49.314707073000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206700994", "BldgCostT": "141049076", "sL_LossRatio": "0.909950419045895", "sL_AssetLoss": "489274.57", "sL_BldgLoss": "445215.6", "sL_StrLoss": "355483.6", "sL_NStrLoss": "89732", "sL_ContLoss": "44058.97", "geom_point": "0101000020E6100000449A91A4D8155FC084DA677C7CAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.33633358, 49.335025158000043 ], [ -124.335068717999974, 49.333677962000102 ], [ -124.334782773999976, 49.333379359000034 ], [ -124.334428550999988, 49.333009429000079 ], [ -124.333426689999897, 49.33196309700002 ], [ -124.332673533999952, 49.331036460000064 ], [ -124.332533918999943, 49.330864652000052 ], [ -124.331945014000027, 49.330150702000076 ], [ -124.333338700999917, 49.330165000000164 ], [ -124.334658772999916, 49.330163799000083 ], [ -124.335105591999962, 49.330163512000041 ], [ -124.335812507999975, 49.330151758000099 ], [ -124.336541510999936, 49.330139610000082 ], [ -124.337833857999954, 49.330118116000087 ], [ -124.337859617999982, 49.329515404000112 ], [ -124.33785249399989, 49.329350055000077 ], [ -124.337843978999942, 49.329152286000095 ], [ -124.337842383999956, 49.329114573000048 ], [ -124.337590285999937, 49.328591304000021 ], [ -124.337570403999948, 49.328379477000055 ], [ -124.33757225, 49.328365681000044 ], [ -124.337607686999974, 49.328106394000017 ], [ -124.337730558999979, 49.327708619000134 ], [ -124.338428318999902, 49.327996589000065 ], [ -124.338945949999953, 49.328211456000126 ], [ -124.339512895999974, 49.32844680300007 ], [ -124.340241063999926, 49.328749052000092 ], [ -124.340524149999936, 49.328422041000053 ], [ -124.34053693499996, 49.328425380000098 ], [ -124.340977202999966, 49.328540728000057 ], [ -124.342057404999963, 49.328823744000019 ], [ -124.342203971999965, 49.328839493000011 ], [ -124.344340204000019, 49.329082848000034 ], [ -124.344414243999964, 49.328857172000028 ], [ -124.344529558999966, 49.32870586600005 ], [ -124.344629188999974, 49.32857510400008 ], [ -124.344887520999961, 49.328310820000119 ], [ -124.344912855999922, 49.328289485000013 ], [ -124.344946632999964, 49.328261051000055 ], [ -124.346682449999946, 49.329160751000074 ], [ -124.346884259999939, 49.330035444000011 ], [ -124.347258217999951, 49.330229305000103 ], [ -124.347667273999917, 49.330441686000015 ], [ -124.348043173999926, 49.330580644000115 ], [ -124.348837001999968, 49.330727650000028 ], [ -124.34895974699999, 49.330750374000054 ], [ -124.349121694999937, 49.330768884000115 ], [ -124.34914184099992, 49.33077117800012 ], [ -124.349203578999933, 49.331353626000059 ], [ -124.34921959699993, 49.331534929000043 ], [ -124.349237079, 49.331732413000076 ], [ -124.349238212999936, 49.331732471000102 ], [ -124.349246761999936, 49.331942690000076 ], [ -124.349267263999963, 49.332445829000044 ], [ -124.349303491999947, 49.333335124000051 ], [ -124.348984917999942, 49.33346842400006 ], [ -124.3488690719999, 49.333531332000078 ], [ -124.346784294999935, 49.333607501000053 ], [ -124.347721354999948, 49.334537986000043 ], [ -124.346179354999933, 49.335122380000051 ], [ -124.345866488999917, 49.3351264080001 ], [ -124.345585505999907, 49.335123363000029 ], [ -124.3444547799999, 49.335111097000137 ], [ -124.343176628999942, 49.335091517000116 ], [ -124.342419377999988, 49.335079912000012 ], [ -124.34111109699991, 49.335059834000056 ], [ -124.340946142999954, 49.335057293000084 ], [ -124.340555688999984, 49.335051315000051 ], [ -124.337241049999975, 49.335030802000084 ], [ -124.336901328999943, 49.335028681000033 ], [ -124.33633358, 49.335025158000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118158168", "BldgCostT": "79486668", "sL_LossRatio": "0.919924949224339", "sL_AssetLoss": "234561.2", "sL_BldgLoss": "215778.7", "sL_StrLoss": "161347.7", "sL_NStrLoss": "54431", "sL_ContLoss": "18782.5", "geom_point": "0101000020E6100000B3187E688D165FC0B1845A7803AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.355764792999963, 49.340665442000066 ], [ -124.354584807999984, 49.339387384000084 ], [ -124.353359380999947, 49.339814410000031 ], [ -124.351042128999907, 49.337768484000016 ], [ -124.349079599999953, 49.337857956000072 ], [ -124.348898473999967, 49.337866210000065 ], [ -124.349094115999918, 49.336363876000121 ], [ -124.348653596999924, 49.335463697000044 ], [ -124.348646300999945, 49.335199411000097 ], [ -124.34840110499999, 49.33521296300011 ], [ -124.347721354999948, 49.334537986000043 ], [ -124.346784294999935, 49.333607501000053 ], [ -124.3488690719999, 49.333531332000078 ], [ -124.348984917999942, 49.33346842400006 ], [ -124.349303491999947, 49.333335124000051 ], [ -124.349267263999963, 49.332445829000044 ], [ -124.349246761999936, 49.331942690000076 ], [ -124.349238212999936, 49.331732471000102 ], [ -124.349237079, 49.331732413000076 ], [ -124.34921959699993, 49.331534929000043 ], [ -124.349203578999933, 49.331353626000059 ], [ -124.34914184099992, 49.33077117800012 ], [ -124.349387011999951, 49.330799198000143 ], [ -124.349436637999986, 49.330810305000035 ], [ -124.350487880999978, 49.331045526 ], [ -124.351209253000022, 49.331376090000099 ], [ -124.351540488999916, 49.331527859000026 ], [ -124.351805405999983, 49.331677671000108 ], [ -124.351969135999951, 49.331770243000079 ], [ -124.352482323999965, 49.332336026000057 ], [ -124.352993268999967, 49.332899332000046 ], [ -124.35410379299995, 49.334269133000106 ], [ -124.354490227, 49.334538157000082 ], [ -124.354636494999966, 49.334640016000087 ], [ -124.35511907099999, 49.334914702000049 ], [ -124.355001606999934, 49.33500740200008 ], [ -124.354923096999926, 49.335126795000072 ], [ -124.354919683999924, 49.335300511000106 ], [ -124.355195678999934, 49.3356612010001 ], [ -124.35547169100002, 49.336099200000035 ], [ -124.35547602199992, 49.336111354000138 ], [ -124.355619214999976, 49.336515490000053 ], [ -124.355705087999979, 49.336757593000065 ], [ -124.355931683999955, 49.337396099000074 ], [ -124.355994439999961, 49.337726373000052 ], [ -124.35607081299996, 49.3381282960001 ], [ -124.356142897, 49.338808884000109 ], [ -124.356158288999936, 49.338955902000038 ], [ -124.356227108999946, 49.339148700000095 ], [ -124.356376510999951, 49.339393994000062 ], [ -124.35675657799996, 49.339846835000131 ], [ -124.357023104999968, 49.340164390000062 ], [ -124.357759400999981, 49.341042394000027 ], [ -124.358006804999945, 49.341318005000062 ], [ -124.35827446199994, 49.342087350000071 ], [ -124.358422413000014, 49.342512501000094 ], [ -124.358060013999975, 49.342417 ], [ -124.357755593999968, 49.342272549000072 ], [ -124.357466196999923, 49.3421351880001 ], [ -124.357249134999932, 49.341982190000046 ], [ -124.357039484999987, 49.3418344110001 ], [ -124.356424598999951, 49.341333584000061 ], [ -124.356095990999933, 49.341009418000077 ], [ -124.355943606, 49.340859101000021 ], [ -124.355764792999963, 49.340665442000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163032750", "BldgCostT": "110205000", "sL_LossRatio": "0.926665370961138", "sL_AssetLoss": "361707.7", "sL_BldgLoss": "335182", "sL_StrLoss": "270940", "sL_NStrLoss": "64242", "sL_ContLoss": "26525.7", "geom_point": "0101000020E6100000A52C220E42165FC0B2B385734FAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.344403885999924, 49.338345421000014 ], [ -124.344418544999968, 49.3373572920001 ], [ -124.344427699999983, 49.336639133000105 ], [ -124.344430851999974, 49.33648080000011 ], [ -124.344441505999924, 49.335946191000069 ], [ -124.3444547799999, 49.335111097000137 ], [ -124.345585505999907, 49.335123363000029 ], [ -124.345866488999917, 49.3351264080001 ], [ -124.346179354999933, 49.335122380000051 ], [ -124.347721354999948, 49.334537986000043 ], [ -124.34840110499999, 49.33521296300011 ], [ -124.348646300999945, 49.335199411000097 ], [ -124.348653596999924, 49.335463697000044 ], [ -124.349094115999918, 49.336363876000121 ], [ -124.348898473999967, 49.337866210000065 ], [ -124.349079599999953, 49.337857956000072 ], [ -124.351042128999907, 49.337768484000016 ], [ -124.353359380999947, 49.339814410000031 ], [ -124.353169294999972, 49.339878642000023 ], [ -124.353125798999912, 49.339893329000091 ], [ -124.352748240999915, 49.340020894000077 ], [ -124.352393389999975, 49.340140792000064 ], [ -124.351950191999933, 49.340290587000048 ], [ -124.351595720999967, 49.340410400000032 ], [ -124.350575746999937, 49.340704889000072 ], [ -124.350294259999927, 49.340786151000081 ], [ -124.349967086, 49.340880599000066 ], [ -124.349260002999955, 49.341119198000165 ], [ -124.349045496999977, 49.341154587000048 ], [ -124.348567182999915, 49.341169284000053 ], [ -124.34694262, 49.341219144000036 ], [ -124.346860050999936, 49.341221682000068 ], [ -124.346422710999889, 49.341235110000113 ], [ -124.346315452999974, 49.341217376000024 ], [ -124.346249097999987, 49.341206401000129 ], [ -124.344956596999936, 49.340812090000092 ], [ -124.344953573999945, 49.340549073000055 ], [ -124.344952828999936, 49.340486042000038 ], [ -124.344948883999905, 49.340142313000094 ], [ -124.344938950999932, 49.339559475000087 ], [ -124.344934200999958, 49.339282497000113 ], [ -124.343911293999938, 49.338775338000076 ], [ -124.344403885999924, 49.338345421000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141096834", "BldgCostT": "95573334", "sL_LossRatio": "0.923540604084227", "sL_AssetLoss": "314569.71", "sL_BldgLoss": "290517.9", "sL_StrLoss": "230811", "sL_NStrLoss": "59706.9", "sL_ContLoss": "24051.81", "geom_point": "0101000020E6100000DDECFE67C3165FC0F0573B69E5AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.355445698999944, 49.349421704000065 ], [ -124.354877094999935, 49.348241105000092 ], [ -124.354498192999955, 49.348028887000098 ], [ -124.353325086999973, 49.347926308000034 ], [ -124.35458897699999, 49.347776793000058 ], [ -124.357053007000019, 49.347792390000052 ], [ -124.357451084999965, 49.347715493000045 ], [ -124.357665513999905, 49.34749758900012 ], [ -124.357740898999978, 49.346749907000103 ], [ -124.357615609999968, 49.346203005000092 ], [ -124.357242798999948, 49.345648985 ], [ -124.356625211999983, 49.345260202000134 ], [ -124.356403794999892, 49.345208903000078 ], [ -124.355061507999935, 49.345422588000055 ], [ -124.354632496999912, 49.345347092000033 ], [ -124.354195197999928, 49.345203375000025 ], [ -124.354200747, 49.345047213000022 ], [ -124.354106929999915, 49.345048312000102 ], [ -124.354104344999982, 49.344954136000148 ], [ -124.35386639799998, 49.344781266000062 ], [ -124.353711410999921, 49.344783082000049 ], [ -124.353685920999979, 49.344757725000058 ], [ -124.353682909999932, 49.344647960000017 ], [ -124.35363583899999, 49.344613763000034 ], [ -124.35341753099999, 49.344516660000117 ], [ -124.35330111599994, 49.344518023000056 ], [ -124.353265822, 49.344500157000041 ], [ -124.35326440599999, 49.344448551000035 ], [ -124.352891239999934, 49.344282564000139 ], [ -124.35278799699995, 49.344254167000045 ], [ -124.352737353999942, 49.344254760000098 ], [ -124.352431272999979, 49.344190575000042 ], [ -124.352430319999925, 49.344155791000055 ], [ -124.351846879999982, 49.343995316000097 ], [ -124.351599945999951, 49.343998203000062 ], [ -124.351597663999954, 49.343914880000106 ], [ -124.351157347999973, 49.343733516000071 ], [ -124.35100177599999, 49.34373533400008 ], [ -124.350763829999934, 49.343630687000065 ], [ -124.350762187999948, 49.343570749000136 ], [ -124.350520264999915, 49.343471098000094 ], [ -124.350404055999917, 49.343472457000075 ], [ -124.350382083999989, 49.343462794000089 ], [ -124.34914930399998, 49.343224991000056 ], [ -124.346970740999907, 49.342454763000013 ], [ -124.347091833999912, 49.342356934000101 ], [ -124.34694262, 49.341219144000036 ], [ -124.348567182999915, 49.341169284000053 ], [ -124.349045496999977, 49.341154587000048 ], [ -124.349260002999955, 49.341119198000165 ], [ -124.349967086, 49.340880599000066 ], [ -124.350294259999927, 49.340786151000081 ], [ -124.350575746999937, 49.340704889000072 ], [ -124.351595720999967, 49.340410400000032 ], [ -124.351950191999933, 49.340290587000048 ], [ -124.352393389999975, 49.340140792000064 ], [ -124.352748240999915, 49.340020894000077 ], [ -124.353125798999912, 49.339893329000091 ], [ -124.353169294999972, 49.339878642000023 ], [ -124.353359380999947, 49.339814410000031 ], [ -124.354584807999984, 49.339387384000084 ], [ -124.355764792999963, 49.340665442000066 ], [ -124.355943606, 49.340859101000021 ], [ -124.356095990999933, 49.341009418000077 ], [ -124.356424598999951, 49.341333584000061 ], [ -124.357039484999987, 49.3418344110001 ], [ -124.357249134999932, 49.341982190000046 ], [ -124.357466196999923, 49.3421351880001 ], [ -124.357755593999968, 49.342272549000072 ], [ -124.358060013999975, 49.342417 ], [ -124.358422413000014, 49.342512501000094 ], [ -124.35827446199994, 49.342087350000071 ], [ -124.358006804999945, 49.341318005000062 ], [ -124.357759400999981, 49.341042394000027 ], [ -124.357023104999968, 49.340164390000062 ], [ -124.35675657799996, 49.339846835000131 ], [ -124.356376510999951, 49.339393994000062 ], [ -124.356227108999946, 49.339148700000095 ], [ -124.356158288999936, 49.338955902000038 ], [ -124.356142897, 49.338808884000109 ], [ -124.35607081299996, 49.3381282960001 ], [ -124.35640412199993, 49.338134419000056 ], [ -124.359597739999941, 49.338192977000084 ], [ -124.359756691999976, 49.338195891000048 ], [ -124.359754944999935, 49.338384103000088 ], [ -124.359750376999926, 49.338871181000037 ], [ -124.359747570999957, 49.33917101100009 ], [ -124.359749161999929, 49.33930297800007 ], [ -124.35974431699999, 49.339517097000098 ], [ -124.359814703999959, 49.33970448900002 ], [ -124.359956304999926, 49.339860581000025 ], [ -124.360744715999914, 49.340395506000071 ], [ -124.360536500999942, 49.340564298000061 ], [ -124.36043379399996, 49.340747290000152 ], [ -124.36040227899997, 49.341338165000138 ], [ -124.360392908999955, 49.341514488000016 ], [ -124.3603802209999, 49.342076174000105 ], [ -124.360373609999954, 49.342371093000054 ], [ -124.360392894999947, 49.343651391000037 ], [ -124.360632898999967, 49.343943905000081 ], [ -124.36090860299997, 49.34415870600008 ], [ -124.361826279999946, 49.344733407000042 ], [ -124.361494195999981, 49.344984008000011 ], [ -124.360827195999917, 49.345370912000078 ], [ -124.360471681999954, 49.345545600000065 ], [ -124.360416613999917, 49.345572637000082 ], [ -124.360339538999966, 49.345610534000031 ], [ -124.360022304999958, 49.345766396000073 ], [ -124.359717162999942, 49.345952035000089 ], [ -124.359596402999941, 49.346025509000064 ], [ -124.35958570499993, 49.346852874000064 ], [ -124.359567987, 49.348223199000124 ], [ -124.359291327999941, 49.348323677000018 ], [ -124.359301364999951, 49.348347427000064 ], [ -124.359400463999947, 49.348433637000014 ], [ -124.359527499999928, 49.348626336000031 ], [ -124.359620832999894, 49.348883927000038 ], [ -124.359356525999985, 49.349075573000071 ], [ -124.358976449999915, 49.349298754000081 ], [ -124.358914460999927, 49.34934019500006 ], [ -124.359165493999967, 49.349008691000115 ], [ -124.359197178999949, 49.348639800000115 ], [ -124.358846598999961, 49.34842759900009 ], [ -124.358446304999958, 49.348387799000086 ], [ -124.356343115999934, 49.348484600000099 ], [ -124.355277730999916, 49.350248801000049 ], [ -124.35506548099994, 49.350245573000031 ], [ -124.355081501999905, 49.350153793000118 ], [ -124.355400516999907, 49.349755008000045 ], [ -124.355445698999944, 49.349421704000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128517167", "BldgCostT": "86686667", "sL_LossRatio": "0.938676859759179", "sL_AssetLoss": "253850.34", "sL_BldgLoss": "238283.44", "sL_StrLoss": "198785.1", "sL_NStrLoss": "39498.34", "sL_ContLoss": "15566.9", "geom_point": "0101000020E610000074725D631D175FC0FB8C9F2177AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.359750376999926, 49.338871181000037 ], [ -124.359754944999935, 49.338384103000088 ], [ -124.359756691999976, 49.338195891000048 ], [ -124.359597739999941, 49.338192977000084 ], [ -124.35640412199993, 49.338134419000056 ], [ -124.35607081299996, 49.3381282960001 ], [ -124.355994439999961, 49.337726373000052 ], [ -124.355931683999955, 49.337396099000074 ], [ -124.355705087999979, 49.336757593000065 ], [ -124.355619214999976, 49.336515490000053 ], [ -124.35547602199992, 49.336111354000138 ], [ -124.35547169100002, 49.336099200000035 ], [ -124.355195678999934, 49.3356612010001 ], [ -124.354919683999924, 49.335300511000106 ], [ -124.354923096999926, 49.335126795000072 ], [ -124.355001606999934, 49.33500740200008 ], [ -124.35511907099999, 49.334914702000049 ], [ -124.355268366999951, 49.334972047000058 ], [ -124.35653398699999, 49.33545829800002 ], [ -124.357954277999966, 49.335932597000109 ], [ -124.358314295999946, 49.336056902000081 ], [ -124.359802240999969, 49.336120241000089 ], [ -124.359857608999988, 49.336122609000036 ], [ -124.360272891999969, 49.336160496000055 ], [ -124.360719296999932, 49.336255394000062 ], [ -124.361121084999922, 49.336403701000023 ], [ -124.361380700999959, 49.336528297000079 ], [ -124.36173294299999, 49.336781241000075 ], [ -124.361863495999955, 49.336874995000137 ], [ -124.36194729899999, 49.336966381000053 ], [ -124.362088596999968, 49.337120486000046 ], [ -124.362740519999974, 49.338012497000129 ], [ -124.362954608999985, 49.338220093000061 ], [ -124.363204465999928, 49.338384212000143 ], [ -124.363242194999955, 49.338408992000083 ], [ -124.363808399999954, 49.338654283000025 ], [ -124.364464423999934, 49.338779737000081 ], [ -124.36447781, 49.338782294000069 ], [ -124.36550871, 49.338796992000056 ], [ -124.365501957999967, 49.339542841000089 ], [ -124.365501611999932, 49.339580891000033 ], [ -124.36572079699998, 49.340384410000041 ], [ -124.365682893999946, 49.340680896000066 ], [ -124.365169424999976, 49.341901802000052 ], [ -124.364987816999943, 49.342177199000041 ], [ -124.3642508, 49.342756502000064 ], [ -124.36410352299994, 49.342873493000056 ], [ -124.364017284999989, 49.342942001000061 ], [ -124.363193536999944, 49.343627513000094 ], [ -124.362579263999976, 49.34413871200006 ], [ -124.362196423999961, 49.344457303000155 ], [ -124.361826279999946, 49.344733407000042 ], [ -124.36090860299997, 49.34415870600008 ], [ -124.360632898999967, 49.343943905000081 ], [ -124.360392894999947, 49.343651391000037 ], [ -124.360373609999954, 49.342371093000054 ], [ -124.3603802209999, 49.342076174000105 ], [ -124.360392908999955, 49.341514488000016 ], [ -124.36040227899997, 49.341338165000138 ], [ -124.36043379399996, 49.340747290000152 ], [ -124.360536500999942, 49.340564298000061 ], [ -124.360744715999914, 49.340395506000071 ], [ -124.359956304999926, 49.339860581000025 ], [ -124.359814703999959, 49.33970448900002 ], [ -124.35974431699999, 49.339517097000098 ], [ -124.359749161999929, 49.33930297800007 ], [ -124.359747570999957, 49.33917101100009 ], [ -124.359750376999926, 49.338871181000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120455666", "BldgCostT": "77711666", "sL_LossRatio": "0.902153056420568", "sL_AssetLoss": "227067.9", "sL_BldgLoss": "204850", "sL_StrLoss": "161857", "sL_NStrLoss": "42993", "sL_ContLoss": "22217.9", "geom_point": "0101000020E61000009ED9E7318A175FC0C4A59EC304AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.367244891, 49.349041407000129 ], [ -124.36495110499996, 49.348360492000062 ], [ -124.364504533999963, 49.348228017000018 ], [ -124.364488428999948, 49.348223240000074 ], [ -124.364171119999966, 49.348129094000058 ], [ -124.363928385999941, 49.348057151000063 ], [ -124.362823517999942, 49.347729686000044 ], [ -124.362428588999961, 49.347568623 ], [ -124.362335300999987, 49.347530597000109 ], [ -124.361882404999932, 49.347306802000091 ], [ -124.361812018999956, 49.347261273000072 ], [ -124.361472267999972, 49.34704140000008 ], [ -124.360894972999944, 49.346533738000062 ], [ -124.360022304999958, 49.345766396000073 ], [ -124.360339538999966, 49.345610534000031 ], [ -124.360416613999917, 49.345572637000082 ], [ -124.360471681999954, 49.345545600000065 ], [ -124.360827195999917, 49.345370912000078 ], [ -124.361494195999981, 49.344984008000011 ], [ -124.361826279999946, 49.344733407000042 ], [ -124.362196423999961, 49.344457303000155 ], [ -124.362579263999976, 49.34413871200006 ], [ -124.363193536999944, 49.343627513000094 ], [ -124.364017284999989, 49.342942001000061 ], [ -124.36410352299994, 49.342873493000056 ], [ -124.3642508, 49.342756502000064 ], [ -124.364987816999943, 49.342177199000041 ], [ -124.365169424999976, 49.341901802000052 ], [ -124.365682893999946, 49.340680896000066 ], [ -124.36572079699998, 49.340384410000041 ], [ -124.365501611999932, 49.339580891000033 ], [ -124.365501957999967, 49.339542841000089 ], [ -124.36550871, 49.338796992000056 ], [ -124.367423621999976, 49.33881779500004 ], [ -124.368084221999979, 49.338826246000053 ], [ -124.368212682999967, 49.338827902000034 ], [ -124.368386509999937, 49.338891794000091 ], [ -124.368442, 49.338932481000022 ], [ -124.368580798999972, 49.339034184000148 ], [ -124.36862777499999, 49.339136853000063 ], [ -124.368740492999947, 49.339383209000083 ], [ -124.36876694299994, 49.339558631000067 ], [ -124.368820716999963, 49.339915496000096 ], [ -124.368889711999941, 49.340027202000059 ], [ -124.36906090799999, 49.340125208000096 ], [ -124.36926522, 49.340181385000086 ], [ -124.369390390999911, 49.340180617000037 ], [ -124.369569108999926, 49.340183295000045 ], [ -124.369770610999922, 49.340125103000027 ], [ -124.369967495999944, 49.339959809000064 ], [ -124.370119392999982, 49.339653456000029 ], [ -124.370270975, 49.339347689000085 ], [ -124.370404883999981, 49.339177803000076 ], [ -124.37070770899993, 49.338975402000109 ], [ -124.37092607799994, 49.338903003000091 ], [ -124.371194427999953, 49.338866080000109 ], [ -124.371769103999938, 49.338786992000117 ], [ -124.373411388999926, 49.338818889000031 ], [ -124.373389714999959, 49.339521362000035 ], [ -124.373367471999941, 49.340240528000088 ], [ -124.373331007999951, 49.341420884000108 ], [ -124.373237405999987, 49.341816397000123 ], [ -124.373279388999947, 49.341912494000049 ], [ -124.373373583, 49.341971499000067 ], [ -124.373455494999945, 49.341972750000053 ], [ -124.37352482299994, 49.341973802000055 ], [ -124.374071871999945, 49.341784890000049 ], [ -124.374389500999925, 49.341709589000104 ], [ -124.374684515999931, 49.341700024000055 ], [ -124.374864492999933, 49.341694211000032 ], [ -124.375114602999929, 49.341740295000058 ], [ -124.374950213999966, 49.342192309000076 ], [ -124.374921418999975, 49.342739209000044 ], [ -124.374465212999937, 49.342727792000098 ], [ -124.373757099999921, 49.342847749000043 ], [ -124.37288370600001, 49.342995698000088 ], [ -124.372467937999929, 49.343041120000095 ], [ -124.372087105999952, 49.343082706000111 ], [ -124.371617707999974, 49.343094510000121 ], [ -124.371589683999929, 49.344007696000048 ], [ -124.371753152999929, 49.344275285000073 ], [ -124.371753433999984, 49.344275771000099 ], [ -124.371594780999928, 49.3444507130001 ], [ -124.371586711999925, 49.344633658000106 ], [ -124.3715847199999, 49.344678566000034 ], [ -124.371574382999967, 49.344912094000037 ], [ -124.371534526999952, 49.345767215000116 ], [ -124.37150751199999, 49.346346807000032 ], [ -124.371466400999921, 49.346537906000052 ], [ -124.371355676999926, 49.346672194000107 ], [ -124.3711684149999, 49.346796299000076 ], [ -124.371120638999969, 49.346818843000058 ], [ -124.370835585999941, 49.346953290000037 ], [ -124.370463700999949, 49.347082709000084 ], [ -124.370338864999923, 49.347104197000064 ], [ -124.370117787999931, 49.34714230100009 ], [ -124.369535287999952, 49.347199197000052 ], [ -124.369746593999977, 49.347736723000018 ], [ -124.369780190999961, 49.347822210000068 ], [ -124.369933397999944, 49.348081002000036 ], [ -124.37006407899996, 49.348213918000056 ], [ -124.370103533999909, 49.348254054000066 ], [ -124.370238914999959, 49.348391706000037 ], [ -124.370103581999956, 49.348518842 ], [ -124.369941832999942, 49.348670846000054 ], [ -124.369847693999986, 49.348759298000076 ], [ -124.369647492999945, 49.34905249300013 ], [ -124.3694277069999, 49.349163494000081 ], [ -124.369058310999947, 49.349184904000026 ], [ -124.36872987799994, 49.349134005000082 ], [ -124.36871854599994, 49.349128691000068 ], [ -124.368679107, 49.349110193000065 ], [ -124.368321307000016, 49.348942383000072 ], [ -124.368161371999975, 49.348911191000113 ], [ -124.368048213999927, 49.34896349100012 ], [ -124.367847796999968, 49.349184591000032 ], [ -124.367244891, 49.349041407000129 ] ], [ [ -124.367752782999958, 49.345613123000092 ], [ -124.367725195999967, 49.34461808300005 ], [ -124.366486503999951, 49.344632736000072 ], [ -124.366479031999958, 49.344362960000062 ], [ -124.365653240999947, 49.344372722000116 ], [ -124.365645772999926, 49.344102946000078 ], [ -124.365093998999924, 49.344109465000017 ], [ -124.365071483999913, 49.344747346000105 ], [ -124.364954175999983, 49.344745572000072 ], [ -124.364947604999912, 49.344931722000105 ], [ -124.365063825, 49.344933479000183 ], [ -124.365041280999961, 49.345572167000064 ], [ -124.367752782999958, 49.345613123000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239640743", "BldgCostT": "160554075", "sL_LossRatio": "0.913604274825238", "sL_AssetLoss": "556081.68", "sL_BldgLoss": "508038.6", "sL_StrLoss": "395701.1", "sL_NStrLoss": "112337.5", "sL_ContLoss": "48043.08", "geom_point": "0101000020E610000095DDBBBCAF175FC015A61044EDAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.380874587999955, 49.354194294000102 ], [ -124.378244691999924, 49.353721414000098 ], [ -124.375686006999899, 49.353859582000034 ], [ -124.37451976199999, 49.353626862000112 ], [ -124.373859005999947, 49.353495002000031 ], [ -124.372578387999951, 49.353473607000069 ], [ -124.371645290999979, 49.353601810000072 ], [ -124.371445055999956, 49.353749366000073 ], [ -124.370527976999981, 49.353760244000043 ], [ -124.37050594099999, 49.354134664000043 ], [ -124.36981553899993, 49.354157964000137 ], [ -124.369630313999949, 49.354143898000061 ], [ -124.369288908999934, 49.354088887000081 ], [ -124.36866657399996, 49.354070714000066 ], [ -124.368455305999973, 49.354054669000085 ], [ -124.368214751999972, 49.354057517000101 ], [ -124.366656596999974, 49.354011993000036 ], [ -124.364554797999986, 49.353694402 ], [ -124.363471907999951, 49.353356799000068 ], [ -124.361755013999954, 49.352486603000067 ], [ -124.360635820999931, 49.352337098000071 ], [ -124.360462987999966, 49.352123501000101 ], [ -124.360562095999938, 49.350215004000127 ], [ -124.360905679999988, 49.350202197000087 ], [ -124.361651821999942, 49.349753601000025 ], [ -124.362990913999965, 49.349404608000043 ], [ -124.363411785999972, 49.349200997000054 ], [ -124.363572106, 49.34901011000008 ], [ -124.363445701999979, 49.348948910000104 ], [ -124.362579916999934, 49.348977407000071 ], [ -124.36165388199997, 49.348826398000021 ], [ -124.361230914999965, 49.348525904000063 ], [ -124.360703302999951, 49.348837803000052 ], [ -124.359924484999937, 49.34904430600006 ], [ -124.359246686999981, 49.349403191000142 ], [ -124.358709401999988, 49.349885991000164 ], [ -124.358313027999898, 49.350396224000093 ], [ -124.358112969999965, 49.350398575000064 ], [ -124.358914460999927, 49.34934019500006 ], [ -124.358976449999915, 49.349298754000081 ], [ -124.359356525999985, 49.349075573000071 ], [ -124.359620832999894, 49.348883927000038 ], [ -124.359527499999928, 49.348626336000031 ], [ -124.359400463999947, 49.348433637000014 ], [ -124.359301364999951, 49.348347427000064 ], [ -124.359291327999941, 49.348323677000018 ], [ -124.359567987, 49.348223199000124 ], [ -124.35958570499993, 49.346852874000064 ], [ -124.359596402999941, 49.346025509000064 ], [ -124.359717162999942, 49.345952035000089 ], [ -124.360022304999958, 49.345766396000073 ], [ -124.360894972999944, 49.346533738000062 ], [ -124.361472267999972, 49.34704140000008 ], [ -124.361812018999956, 49.347261273000072 ], [ -124.361882404999932, 49.347306802000091 ], [ -124.362335300999987, 49.347530597000109 ], [ -124.362428588999961, 49.347568623 ], [ -124.362823517999942, 49.347729686000044 ], [ -124.363928385999941, 49.348057151000063 ], [ -124.364171119999966, 49.348129094000058 ], [ -124.364488428999948, 49.348223240000074 ], [ -124.364504533999963, 49.348228017000018 ], [ -124.36495110499996, 49.348360492000062 ], [ -124.367244891, 49.349041407000129 ], [ -124.367847796999968, 49.349184591000032 ], [ -124.368147711999967, 49.349229246000057 ], [ -124.368201457999987, 49.349237223000024 ], [ -124.368716691999964, 49.349313898000098 ], [ -124.369414912999929, 49.349329796000092 ], [ -124.369948683999965, 49.349289198000044 ], [ -124.370406998999968, 49.349203392000049 ], [ -124.371155687999988, 49.348995996000099 ], [ -124.373138982999961, 49.348209842000124 ], [ -124.373573205999904, 49.348037698000056 ], [ -124.376574891999937, 49.346845531000085 ], [ -124.376628090999986, 49.346824416000139 ], [ -124.376909804999983, 49.346713376000068 ], [ -124.377015488999959, 49.346954398 ], [ -124.37752688799999, 49.347943191000027 ], [ -124.377633822999954, 49.348150901000018 ], [ -124.377621223999981, 49.349248736000071 ], [ -124.37761911799997, 49.349434287000101 ], [ -124.37766366799994, 49.349709630000071 ], [ -124.377961864999989, 49.351551966000102 ], [ -124.378060135999974, 49.351767664000121 ], [ -124.37831252299999, 49.352338519000028 ], [ -124.378255330999963, 49.35267609600006 ], [ -124.378686465999948, 49.352829446000072 ], [ -124.379777088999987, 49.353217354000044 ], [ -124.380829770999952, 49.353523861000028 ], [ -124.381211066999938, 49.353634857000031 ], [ -124.381214019999902, 49.353635456000085 ], [ -124.381461015999946, 49.353686324000115 ], [ -124.381991815999967, 49.35373206600007 ], [ -124.382387871999953, 49.353814496000084 ], [ -124.382882673999944, 49.353630172000074 ], [ -124.38290856799992, 49.353569097000062 ], [ -124.382950130999987, 49.353470954000045 ], [ -124.382888889999904, 49.35333411900006 ], [ -124.382872498999973, 49.35313315300013 ], [ -124.382933939999972, 49.352831638000062 ], [ -124.383105003999972, 49.352856702000039 ], [ -124.383173431999978, 49.352867612000082 ], [ -124.383647743999973, 49.352951 ], [ -124.383754578999969, 49.352969780000102 ], [ -124.384373308999955, 49.353078527000029 ], [ -124.38458185799999, 49.354114430000081 ], [ -124.384599496999982, 49.354201852000045 ], [ -124.384379289999956, 49.354597444000056 ], [ -124.382232610999893, 49.354528905000031 ], [ -124.380874587999955, 49.354194294000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126943333", "BldgCostT": "87283333", "sL_LossRatio": "0.939631369032167", "sL_AssetLoss": "254238", "sL_BldgLoss": "238890", "sL_StrLoss": "195950", "sL_NStrLoss": "42940", "sL_ContLoss": "15348", "geom_point": "0101000020E6100000B2D25A8759185FC05F6B429C7FAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.377015488999959, 49.346954398 ], [ -124.376909804999983, 49.346713376000068 ], [ -124.376628090999986, 49.346824416000139 ], [ -124.37663478899999, 49.345847797000026 ], [ -124.376635869999916, 49.345482244000046 ], [ -124.376636297999966, 49.345333914000108 ], [ -124.376686299999989, 49.345163615000047 ], [ -124.376783788999916, 49.34501030200007 ], [ -124.37827850199993, 49.343734302 ], [ -124.37836609499999, 49.343659497000075 ], [ -124.379165587, 49.342977492000074 ], [ -124.379358296999925, 49.342777894000029 ], [ -124.379416506999988, 49.342607707000063 ], [ -124.379390816999944, 49.342400726000065 ], [ -124.379352030999911, 49.342088152000066 ], [ -124.37931669299995, 49.341803306000088 ], [ -124.380611797999947, 49.341739891000095 ], [ -124.380672201999943, 49.342099670000081 ], [ -124.380740416999956, 49.34250598900006 ], [ -124.38071838899999, 49.342663213000129 ], [ -124.380646, 49.342845796000063 ], [ -124.38060753900001, 49.342907318000115 ], [ -124.380332801999927, 49.343346892000078 ], [ -124.380243725999918, 49.343650704000062 ], [ -124.382022413999977, 49.343603605000105 ], [ -124.38261729299991, 49.343619704000105 ], [ -124.382563202999947, 49.344145391000062 ], [ -124.382481591, 49.344908391000047 ], [ -124.384783691999985, 49.345351444000144 ], [ -124.386118376999917, 49.345533403000083 ], [ -124.387431334999974, 49.345512384000045 ], [ -124.387623993999938, 49.345509309000143 ], [ -124.387749180999947, 49.345507309 ], [ -124.387753276999945, 49.34689086100007 ], [ -124.384027932999928, 49.346119661000074 ], [ -124.383891003999977, 49.346315878000105 ], [ -124.383470782999893, 49.346918158000072 ], [ -124.381314439999969, 49.347250840000051 ], [ -124.381284199000021, 49.349700903000105 ], [ -124.38180193, 49.352040653000088 ], [ -124.382551163999921, 49.352093617000072 ], [ -124.382896985999963, 49.352392717000036 ], [ -124.382679287999949, 49.352793464000072 ], [ -124.382933939999972, 49.352831638000062 ], [ -124.382872498999973, 49.35313315300013 ], [ -124.382888889999904, 49.35333411900006 ], [ -124.382950130999987, 49.353470954000045 ], [ -124.38290856799992, 49.353569097000062 ], [ -124.382882673999944, 49.353630172000074 ], [ -124.382387871999953, 49.353814496000084 ], [ -124.381991815999967, 49.35373206600007 ], [ -124.381461015999946, 49.353686324000115 ], [ -124.381214019999902, 49.353635456000085 ], [ -124.381211066999938, 49.353634857000031 ], [ -124.380829770999952, 49.353523861000028 ], [ -124.379777088999987, 49.353217354000044 ], [ -124.378686465999948, 49.352829446000072 ], [ -124.378255330999963, 49.35267609600006 ], [ -124.37831252299999, 49.352338519000028 ], [ -124.378060135999974, 49.351767664000121 ], [ -124.377961864999989, 49.351551966000102 ], [ -124.37766366799994, 49.349709630000071 ], [ -124.37761911799997, 49.349434287000101 ], [ -124.377621223999981, 49.349248736000071 ], [ -124.377633822999954, 49.348150901000018 ], [ -124.37752688799999, 49.347943191000027 ], [ -124.377015488999959, 49.346954398 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170035416", "BldgCostT": "115791666", "sL_LossRatio": "0.950811336996484", "sL_AssetLoss": "310752.5", "sL_BldgLoss": "295467", "sL_StrLoss": "252337", "sL_NStrLoss": "43130", "sL_ContLoss": "15285.5", "geom_point": "0101000020E6100000A97FF72BB0185FC0A2B9C279C0AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.381284199000021, 49.349700903000105 ], [ -124.381314439999969, 49.347250840000051 ], [ -124.383470782999893, 49.346918158000072 ], [ -124.383891003999977, 49.346315878000105 ], [ -124.384027932999928, 49.346119661000074 ], [ -124.387753276999945, 49.34689086100007 ], [ -124.389689616999945, 49.347294049 ], [ -124.391483681999915, 49.347667548000125 ], [ -124.39264213, 49.347908726000085 ], [ -124.392415254, 49.348393129000044 ], [ -124.392300431999914, 49.348638139000059 ], [ -124.392008784999945, 49.348573351000034 ], [ -124.390910872999925, 49.348329437000075 ], [ -124.390810300999931, 49.34908671700002 ], [ -124.390680692999979, 49.349334132000081 ], [ -124.390551484999918, 49.349488808000068 ], [ -124.389649593999962, 49.350108189000096 ], [ -124.389286078999987, 49.350354796 ], [ -124.388949704999902, 49.35045600100009 ], [ -124.38859051699994, 49.350500200000056 ], [ -124.387827094999949, 49.350501397000073 ], [ -124.387878961999959, 49.353677957000095 ], [ -124.387881094999955, 49.353810089000014 ], [ -124.387842920999944, 49.353805232000099 ], [ -124.387281184999949, 49.35373360400007 ], [ -124.386376002999896, 49.353576999000047 ], [ -124.385652691999923, 49.353410488000129 ], [ -124.38535871, 49.35331880300005 ], [ -124.38485241399998, 49.353162751000077 ], [ -124.384373308999955, 49.353078527000029 ], [ -124.383754578999969, 49.352969780000102 ], [ -124.383647743999973, 49.352951 ], [ -124.383173431999978, 49.352867612000082 ], [ -124.383105003999972, 49.352856702000039 ], [ -124.382933939999972, 49.352831638000062 ], [ -124.382679287999949, 49.352793464000072 ], [ -124.382896985999963, 49.352392717000036 ], [ -124.382551163999921, 49.352093617000072 ], [ -124.38180193, 49.352040653000088 ], [ -124.381284199000021, 49.349700903000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150577667", "BldgCostT": "103846667", "sL_LossRatio": "0.964264779596049", "sL_AssetLoss": "254362.5", "sL_BldgLoss": "245272.8", "sL_StrLoss": "216893.2", "sL_NStrLoss": "28379.6", "sL_ContLoss": "9089.7", "geom_point": "0101000020E6100000056AB5B0FC185FC0558C4EF113AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.387786902999949, 49.34416494900006 ], [ -124.387738386999928, 49.342971513000066 ], [ -124.387318706999935, 49.342975258000074 ], [ -124.387284146999946, 49.340879196000088 ], [ -124.387722189999977, 49.341067513000034 ], [ -124.387736564999912, 49.341069322000131 ], [ -124.388954499999926, 49.341224501000063 ], [ -124.390207310999983, 49.341383577000038 ], [ -124.391469809999933, 49.341544603000045 ], [ -124.392154412999972, 49.341631300000088 ], [ -124.392385785999977, 49.341699496000025 ], [ -124.392944308999958, 49.341975212000065 ], [ -124.393277279999936, 49.342089897000079 ], [ -124.393277977999958, 49.342245829000099 ], [ -124.393284013999974, 49.343601287000048 ], [ -124.39325521399995, 49.344390283000052 ], [ -124.393247230000014, 49.345416301000036 ], [ -124.393238182999966, 49.346190301000057 ], [ -124.393204299999965, 49.346850493000062 ], [ -124.39304049399999, 49.347406996000075 ], [ -124.392841093999962, 49.347527296000131 ], [ -124.392736661999948, 49.347727466000066 ], [ -124.39264213, 49.347908726000085 ], [ -124.391483681999915, 49.347667548000125 ], [ -124.389689616999945, 49.347294049 ], [ -124.387753276999945, 49.34689086100007 ], [ -124.387749180999947, 49.345507309 ], [ -124.387786902999949, 49.34416494900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105506833", "BldgCostT": "72763333", "sL_LossRatio": "0.907344198405388", "sL_AssetLoss": "252073.8", "sL_BldgLoss": "228717.7", "sL_StrLoss": "176856.7", "sL_NStrLoss": "51861", "sL_ContLoss": "23356.1", "geom_point": "0101000020E61000003888525292185FC067D56BA3CFAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.38261729299991, 49.343619704000105 ], [ -124.382022413999977, 49.343603605000105 ], [ -124.380243725999918, 49.343650704000062 ], [ -124.380332801999927, 49.343346892000078 ], [ -124.38060753900001, 49.342907318000115 ], [ -124.380646, 49.342845796000063 ], [ -124.38071838899999, 49.342663213000129 ], [ -124.380740416999956, 49.34250598900006 ], [ -124.380672201999943, 49.342099670000081 ], [ -124.380611797999947, 49.341739891000095 ], [ -124.37931669299995, 49.341803306000088 ], [ -124.379164980999931, 49.340557096000104 ], [ -124.37923438699994, 49.340460903000064 ], [ -124.379569088999986, 49.340288600000079 ], [ -124.37993305, 49.340159012000122 ], [ -124.379945196999984, 49.340154708000114 ], [ -124.380859382999944, 49.339889314000047 ], [ -124.381118008999962, 49.339767211000087 ], [ -124.381363289999939, 49.339567887000044 ], [ -124.381719614999938, 49.33927840000009 ], [ -124.38203809799991, 49.339096896000086 ], [ -124.382834651999971, 49.339105822000114 ], [ -124.383235520999932, 49.33911030600008 ], [ -124.38254441399998, 49.339045447000011 ], [ -124.383121882999916, 49.33903345300012 ], [ -124.384513505999948, 49.339346141000071 ], [ -124.385425227999974, 49.339496834000045 ], [ -124.385404566999924, 49.340089672000069 ], [ -124.385771328999951, 49.340085275000071 ], [ -124.38577702299996, 49.340287995000033 ], [ -124.384020414999966, 49.340215177000069 ], [ -124.385533192, 49.340551091000094 ], [ -124.38781762399999, 49.340811811000044 ], [ -124.387817616999939, 49.340811960000117 ], [ -124.387722189999977, 49.341067513000034 ], [ -124.387284146999946, 49.340879196000088 ], [ -124.387318706999935, 49.342975258000074 ], [ -124.387738386999928, 49.342971513000066 ], [ -124.387786902999949, 49.34416494900006 ], [ -124.387749180999947, 49.345507309 ], [ -124.387623993999938, 49.345509309000143 ], [ -124.387431334999974, 49.345512384000045 ], [ -124.386118376999917, 49.345533403000083 ], [ -124.384783691999985, 49.345351444000144 ], [ -124.382481591, 49.344908391000047 ], [ -124.382563202999947, 49.344145391000062 ], [ -124.38261729299991, 49.343619704000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.986351531291611", "sL_AssetLoss": "901.2", "sL_BldgLoss": "888.9", "sL_StrLoss": "820", "sL_NStrLoss": "68.9", "sL_ContLoss": "12.3", "geom_point": "0101000020E6100000B8BE7AA2CC185FC0473F75078CAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.387009897999945, 49.340070417000064 ], [ -124.387952829999961, 49.340059096000047 ], [ -124.38792731499997, 49.340377094000068 ], [ -124.387017459, 49.340339399000129 ], [ -124.387009897999945, 49.340070417000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.987126673532441", "sL_AssetLoss": "971", "sL_BldgLoss": "958.5", "sL_StrLoss": "885", "sL_NStrLoss": "73.5", "sL_ContLoss": "12.5", "geom_point": "0101000020E6100000D7D41E9B49185FC0F114EE6CFAAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.379591408999957, 49.335463091000129 ], [ -124.379837680999984, 49.335402724000126 ], [ -124.379816883, 49.335997483000057 ], [ -124.378919194999938, 49.33599835900003 ], [ -124.378926552999971, 49.335990736000106 ], [ -124.379248779999898, 49.335656450000052 ], [ -124.379267705999936, 49.33563680200011 ], [ -124.379591408999957, 49.335463091000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167646750", "BldgCostT": "114675000", "sL_LossRatio": "0.982877506428057", "sL_AssetLoss": "252720.2", "sL_BldgLoss": "248393", "sL_StrLoss": "225405", "sL_NStrLoss": "22988", "sL_ContLoss": "4327.2", "geom_point": "0101000020E61000006339111638195FC0D1451A4772AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.387722189999977, 49.341067513000034 ], [ -124.387817616999939, 49.340811960000117 ], [ -124.38781762399999, 49.340811811000044 ], [ -124.385533192, 49.340551091000094 ], [ -124.384020414999966, 49.340215177000069 ], [ -124.38577702299996, 49.340287995000033 ], [ -124.385778904999967, 49.340355048000092 ], [ -124.387017481, 49.340340190000063 ], [ -124.387017459, 49.340339399000129 ], [ -124.38792731499997, 49.340377094000068 ], [ -124.387952829999961, 49.340059096000047 ], [ -124.388248465999951, 49.340055545000133 ], [ -124.388263644999981, 49.340595090000114 ], [ -124.389089363999958, 49.340585169000086 ], [ -124.389096958999971, 49.340854942000128 ], [ -124.390335543999967, 49.340840047000057 ], [ -124.390334006, 49.340785461000081 ], [ -124.390154471999935, 49.340782789000073 ], [ -124.390164127999981, 49.340504938000038 ], [ -124.389582167999947, 49.340496274000017 ], [ -124.389592129999969, 49.340209708000089 ], [ -124.38906526599996, 49.340201861000033 ], [ -124.389073966999916, 49.339951656000018 ], [ -124.388529760999958, 49.339943548000143 ], [ -124.388539861999959, 49.339653164000012 ], [ -124.387994459, 49.339645035000053 ], [ -124.388013487999942, 49.339098151000073 ], [ -124.387905154999885, 49.339096536000042 ], [ -124.387645725999917, 49.335498069000053 ], [ -124.383577689999981, 49.33549652400005 ], [ -124.383570893999945, 49.335254081000095 ], [ -124.383983709999981, 49.335249137000069 ], [ -124.383976143999945, 49.334979363000066 ], [ -124.384388958000017, 49.334974419000062 ], [ -124.384366256999954, 49.334165098000078 ], [ -124.385191869999929, 49.334155203000094 ], [ -124.385184298999945, 49.333885430000059 ], [ -124.385597102999938, 49.333880481000087 ], [ -124.385589529999962, 49.33361070800008 ], [ -124.387438764999914, 49.333588521000095 ], [ -124.388066339999938, 49.333580984000065 ], [ -124.388073927, 49.333850758000075 ], [ -124.388486730999929, 49.333845798000013 ], [ -124.388501909999945, 49.334385345000079 ], [ -124.389327524999928, 49.334375422000036 ], [ -124.389335119999927, 49.334645195000093 ], [ -124.389747931, 49.334640232000105 ], [ -124.38975552699992, 49.334910006000079 ], [ -124.390581151999939, 49.334900073000085 ], [ -124.390567473999951, 49.3344146660001 ], [ -124.389615438999925, 49.334400491000039 ], [ -124.389633671999931, 49.333875902000059 ], [ -124.38966099699995, 49.333089717000085 ], [ -124.389538516999949, 49.333087892000059 ], [ -124.389541970999971, 49.33298850400012 ], [ -124.39506745099996, 49.332674271 ], [ -124.395068221999949, 49.332674224000087 ], [ -124.395089948999953, 49.332672980000105 ], [ -124.395751276999945, 49.332635369000087 ], [ -124.39606577499994, 49.332695024000017 ], [ -124.398470216999939, 49.332745057000132 ], [ -124.398795003999936, 49.332462092000114 ], [ -124.398821075999933, 49.332873311000107 ], [ -124.398988055999894, 49.335510140000054 ], [ -124.39918327799991, 49.338842302000053 ], [ -124.399193920999977, 49.33902370800007 ], [ -124.39922851399993, 49.339139397000082 ], [ -124.399361904999978, 49.33921790600003 ], [ -124.39903209199997, 49.340442497000048 ], [ -124.399152294999936, 49.340546907000011 ], [ -124.399164411999919, 49.340822581000104 ], [ -124.399180803999968, 49.341196305000032 ], [ -124.399270251999965, 49.341247512000088 ], [ -124.399500389999929, 49.341379303000046 ], [ -124.399291798999954, 49.341683211000024 ], [ -124.399154399999972, 49.341983014000071 ], [ -124.399138611999888, 49.342017506000062 ], [ -124.399138098999956, 49.342035512000095 ], [ -124.399134738999976, 49.342154739000129 ], [ -124.399133966999941, 49.342181748000058 ], [ -124.399132199999968, 49.342244756000092 ], [ -124.3991301699999, 49.342315707000111 ], [ -124.399128405999974, 49.342378715000073 ], [ -124.399107919999921, 49.343106204000044 ], [ -124.399073369999954, 49.344105436000071 ], [ -124.399062281999946, 49.344425997000087 ], [ -124.399051424999925, 49.344846002000025 ], [ -124.399021299, 49.346008693000059 ], [ -124.398984997999946, 49.347244715000052 ], [ -124.398983602999962, 49.347292338000031 ], [ -124.398981933999949, 49.347346579000011 ], [ -124.398938576999967, 49.348209550000028 ], [ -124.39893519599994, 49.348276515000173 ], [ -124.398909198999959, 49.348794056000052 ], [ -124.398902692999968, 49.348923290000116 ], [ -124.398800664999953, 49.349088288000075 ], [ -124.398727858999905, 49.349206050000078 ], [ -124.394843181999974, 49.348377927000023 ], [ -124.39291930199991, 49.347967755000141 ], [ -124.39264213, 49.347908726000085 ], [ -124.392736661999948, 49.347727466000066 ], [ -124.392841093999962, 49.347527296000131 ], [ -124.39304049399999, 49.347406996000075 ], [ -124.393204299999965, 49.346850493000062 ], [ -124.393238182999966, 49.346190301000057 ], [ -124.393247230000014, 49.345416301000036 ], [ -124.39325521399995, 49.344390283000052 ], [ -124.393284013999974, 49.343601287000048 ], [ -124.393277977999958, 49.342245829000099 ], [ -124.393277279999936, 49.342089897000079 ], [ -124.392944308999958, 49.341975212000065 ], [ -124.392385785999977, 49.341699496000025 ], [ -124.392154412999972, 49.341631300000088 ], [ -124.391469809999933, 49.341544603000045 ], [ -124.390207310999983, 49.341383577000038 ], [ -124.388954499999926, 49.341224501000063 ], [ -124.387736564999912, 49.341069322000131 ], [ -124.387722189999977, 49.341067513000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165333833", "BldgCostT": "114023333", "sL_LossRatio": "0.931754701788889", "sL_AssetLoss": "355233.41", "sL_BldgLoss": "330990.4", "sL_StrLoss": "269850.1", "sL_NStrLoss": "61140.3", "sL_ContLoss": "24243.01", "geom_point": "0101000020E6100000804E7B2940195FC0F49517CB3AAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.405560608999934, 49.358922991000064 ], [ -124.403914787999938, 49.358647792000035 ], [ -124.40241520699999, 49.358683384000081 ], [ -124.402068190999955, 49.358633498000124 ], [ -124.39943420099999, 49.35800970800004 ], [ -124.393295709999947, 49.35618528600007 ], [ -124.389654917999934, 49.355483201 ], [ -124.38776862799989, 49.355301999000112 ], [ -124.387237708999919, 49.355250991000098 ], [ -124.385923587999969, 49.355033102000085 ], [ -124.38446571499999, 49.354600202000022 ], [ -124.384379289999956, 49.354597444000056 ], [ -124.384599496999982, 49.354201852000045 ], [ -124.38458185799999, 49.354114430000081 ], [ -124.384373308999955, 49.353078527000029 ], [ -124.38485241399998, 49.353162751000077 ], [ -124.38535871, 49.35331880300005 ], [ -124.385652691999923, 49.353410488000129 ], [ -124.386376002999896, 49.353576999000047 ], [ -124.387281184999949, 49.35373360400007 ], [ -124.387842920999944, 49.353805232000099 ], [ -124.387881094999955, 49.353810089000014 ], [ -124.387878961999959, 49.353677957000095 ], [ -124.387827094999949, 49.350501397000073 ], [ -124.38859051699994, 49.350500200000056 ], [ -124.388949704999902, 49.35045600100009 ], [ -124.389286078999987, 49.350354796 ], [ -124.389649593999962, 49.350108189000096 ], [ -124.390551484999918, 49.349488808000068 ], [ -124.390680692999979, 49.349334132000081 ], [ -124.390810300999931, 49.34908671700002 ], [ -124.390910872999925, 49.348329437000075 ], [ -124.392008784999945, 49.348573351000034 ], [ -124.392300431999914, 49.348638139000059 ], [ -124.392415254, 49.348393129000044 ], [ -124.39264213, 49.347908726000085 ], [ -124.39291930199991, 49.347967755000141 ], [ -124.394843181999974, 49.348377927000023 ], [ -124.398727858999905, 49.349206050000078 ], [ -124.399182974999974, 49.349299612 ], [ -124.400015459999935, 49.349470759000077 ], [ -124.400275336000021, 49.349524169000105 ], [ -124.401278379999965, 49.349729258000174 ], [ -124.401566125999963, 49.349788082000018 ], [ -124.402378677999948, 49.349931155000085 ], [ -124.402450742999974, 49.349943814000056 ], [ -124.404423678999933, 49.350291124000087 ], [ -124.404533197999967, 49.350785103000078 ], [ -124.404635202999927, 49.350940481000059 ], [ -124.40459303199998, 49.35095972200002 ], [ -124.404166998999969, 49.351154087000097 ], [ -124.403921017999963, 49.35120426700005 ], [ -124.403857995999914, 49.351217112000029 ], [ -124.403827221999933, 49.351220081000086 ], [ -124.403599997999919, 49.351242110000044 ], [ -124.403294018999986, 49.351217794000057 ], [ -124.4010669099999, 49.350822114000067 ], [ -124.400444814999915, 49.350711194000041 ], [ -124.399999142999917, 49.350767448000099 ], [ -124.399684883999925, 49.350807106000047 ], [ -124.399551394999932, 49.350542001000107 ], [ -124.399457853999962, 49.350356291000054 ], [ -124.399146902999988, 49.349738784000117 ], [ -124.398953504999952, 49.349563085000113 ], [ -124.398759309999932, 49.349489097000067 ], [ -124.398494099999965, 49.349441091000081 ], [ -124.398197300999925, 49.349433990000101 ], [ -124.39816774699996, 49.349437746000071 ], [ -124.397955515999911, 49.349464593000093 ], [ -124.396173585999975, 49.349996305000083 ], [ -124.394178792999966, 49.350600405000073 ], [ -124.394581892999938, 49.350955599000045 ], [ -124.394773205999982, 49.351190711000065 ], [ -124.394860104999935, 49.351382805000135 ], [ -124.394966116999981, 49.351616594000035 ], [ -124.395061202999983, 49.352009494000129 ], [ -124.395063700999913, 49.352256191000116 ], [ -124.395064079999983, 49.352522603000054 ], [ -124.394976598999946, 49.352863410000062 ], [ -124.394855497999984, 49.353102793000083 ], [ -124.39475639699999, 49.353301190000067 ], [ -124.394626929999902, 49.353462193000091 ], [ -124.394464594999988, 49.353664096000095 ], [ -124.394149695999914, 49.353939302000072 ], [ -124.393692594999948, 49.354283949000049 ], [ -124.39364167899997, 49.354322348000103 ], [ -124.393578481999924, 49.35437 ], [ -124.393213077999974, 49.354645511000037 ], [ -124.394061807999947, 49.355045157000099 ], [ -124.394323928999967, 49.355142639000114 ], [ -124.396375786999954, 49.355678957000066 ], [ -124.399368270999915, 49.35658644300014 ], [ -124.399820027999922, 49.356333014000043 ], [ -124.400053187999916, 49.356273456000032 ], [ -124.401592473999926, 49.356278212000099 ], [ -124.402098954999957, 49.35627566800008 ], [ -124.405463095999949, 49.356258810000035 ], [ -124.405312474999974, 49.357236807000028 ], [ -124.405347917999975, 49.357726080000063 ], [ -124.405464329999973, 49.358021219000101 ], [ -124.405574167999958, 49.358068295000102 ], [ -124.405567282999954, 49.358657558000097 ], [ -124.405564506999966, 49.358820543000085 ], [ -124.405560608999934, 49.358922991000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63181416", "BldgCostT": "41571666", "sL_LossRatio": "0.956669739350565", "sL_AssetLoss": "77523.974", "sL_BldgLoss": "74164.84", "sL_StrLoss": "64196.4", "sL_NStrLoss": "9968.44", "sL_ContLoss": "3359.134", "geom_point": "0101000020E6100000E112471EC8205FC0973603F9E5AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.523855109999928, 49.372519591000064 ], [ -124.521813776000016, 49.370639596000046 ], [ -124.521050604999971, 49.370497190000016 ], [ -124.519970389999941, 49.3698549120001 ], [ -124.518641399999979, 49.369223896000044 ], [ -124.517279595999966, 49.368783893000092 ], [ -124.515738589999955, 49.368425004000123 ], [ -124.513998610999948, 49.367818188000065 ], [ -124.513243528999965, 49.367607231000129 ], [ -124.511664310999961, 49.367165998000075 ], [ -124.506515423999971, 49.366351305000109 ], [ -124.50473430199996, 49.366194600000021 ], [ -124.504344384999982, 49.366082100000028 ], [ -124.503952496999958, 49.365908406000109 ], [ -124.503388106999964, 49.365429790000121 ], [ -124.502801097999935, 49.365167792000065 ], [ -124.501640661999957, 49.365188478000093 ], [ -124.50165276099996, 49.364814580000065 ], [ -124.500511057999958, 49.364829409000102 ], [ -124.50050284699995, 49.364559650000082 ], [ -124.500294750999927, 49.36456235200005 ], [ -124.499907143999977, 49.36456738300005 ], [ -124.499881334999912, 49.365363939000098 ], [ -124.499431784999956, 49.365357706000061 ], [ -124.499400189999932, 49.365228988000105 ], [ -124.499067685999989, 49.365099398000048 ], [ -124.497555791999943, 49.364776099000018 ], [ -124.496119497999942, 49.364677895000106 ], [ -124.494996409999914, 49.364854492000049 ], [ -124.494360775999922, 49.364800296000041 ], [ -124.493512993999957, 49.364559702000122 ], [ -124.490958287999931, 49.363404605000014 ], [ -124.490234435999952, 49.36320949300007 ], [ -124.490269932999951, 49.363197360000051 ], [ -124.49054277099999, 49.363104120000052 ], [ -124.491666693999917, 49.362719930000033 ], [ -124.49255470699994, 49.362416394000029 ], [ -124.492966005999961, 49.36229249100009 ], [ -124.49360171299999, 49.362208594000023 ], [ -124.494798410999962, 49.362174005000099 ], [ -124.495290489, 49.362189791000098 ], [ -124.49634299399996, 49.362276494000099 ], [ -124.497670783999979, 49.362313249000046 ], [ -124.497838592999983, 49.362317913 ], [ -124.498140036, 49.362312355000022 ], [ -124.499625520999956, 49.362285098000079 ], [ -124.500695079999943, 49.362227206000099 ], [ -124.500896295999951, 49.362216294000049 ], [ -124.502438910999956, 49.36216749800014 ], [ -124.503707019999979, 49.362095 ], [ -124.503858191999939, 49.362099810000046 ], [ -124.504007115, 49.362086817000012 ], [ -124.504225683999948, 49.362067768 ], [ -124.504403516999943, 49.362052285000075 ], [ -124.50478539199996, 49.362018991000099 ], [ -124.50497063399996, 49.361980023000122 ], [ -124.505568085999954, 49.361854306000033 ], [ -124.505641238999942, 49.36183544400005 ], [ -124.50571018799991, 49.361817686000101 ], [ -124.506414202999935, 49.361636268000034 ], [ -124.507040108999945, 49.361474996000069 ], [ -124.507460278999986, 49.361413304000088 ], [ -124.507897405999969, 49.361427489000114 ], [ -124.50851871199994, 49.361573705000055 ], [ -124.509529502999925, 49.361929697000015 ], [ -124.510029886999931, 49.362155291000128 ], [ -124.510286415999971, 49.362352294000118 ], [ -124.510582092999982, 49.362633960000053 ], [ -124.510813687999956, 49.362854611000039 ], [ -124.511173684999932, 49.363296103000074 ], [ -124.5112077799999, 49.363325396000107 ], [ -124.511484387999971, 49.363563203000062 ], [ -124.511788492999983, 49.363733897000024 ], [ -124.51254348399999, 49.364000518000068 ], [ -124.513414185999963, 49.3643079960001 ], [ -124.513953186999942, 49.364489875000096 ], [ -124.517002494999971, 49.365518767000033 ], [ -124.517291632, 49.365616323000019 ], [ -124.518897310999961, 49.366158067000093 ], [ -124.519447187, 49.366388763000032 ], [ -124.521714385999957, 49.367565591000073 ], [ -124.522382285999981, 49.367764582000113 ], [ -124.523067082999916, 49.367866591000102 ], [ -124.523867716999959, 49.367915397000026 ], [ -124.523995513999964, 49.367927475000073 ], [ -124.52399461600001, 49.367955678000058 ], [ -124.524010941999933, 49.367955901000052 ], [ -124.52401179899999, 49.367929014000033 ], [ -124.524459415999928, 49.367971318000102 ], [ -124.528407421999944, 49.368344392000097 ], [ -124.530110744999945, 49.368504165000068 ], [ -124.53560063899999, 49.369018910000044 ], [ -124.535638333999884, 49.369495470000118 ], [ -124.534952742, 49.369504579000072 ], [ -124.534944340999928, 49.369234824000067 ], [ -124.53411819599999, 49.369245792000079 ], [ -124.534109798999964, 49.368976038000028 ], [ -124.533283658999963, 49.368987001000022 ], [ -124.533292049999929, 49.369256755000059 ], [ -124.531639754999944, 49.36927866300001 ], [ -124.531631372999982, 49.369008909000058 ], [ -124.530095218999975, 49.369029256000061 ], [ -124.52956601399994, 49.36903626000003 ], [ -124.529552743999957, 49.368608613000063 ], [ -124.529549270999965, 49.368496750000048 ], [ -124.529497874999961, 49.368497430000083 ], [ -124.52949467499991, 49.368598218000066 ], [ -124.529491603999944, 49.368694893000068 ], [ -124.524956788999958, 49.36863317600006 ], [ -124.52494481399999, 49.369009038000037 ], [ -124.52689033899999, 49.36903553900013 ], [ -124.526826355999958, 49.371046242000041 ], [ -124.529321670999948, 49.371080181000131 ], [ -124.529224492999916, 49.374138951000099 ], [ -124.527966287999931, 49.374049192 ], [ -124.525465609999983, 49.373379784000129 ], [ -124.52462801199999, 49.373013801000106 ], [ -124.523855109999928, 49.372519591000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33570000", "BldgCostT": "22680000", "sL_LossRatio": "0.909083962695375", "sL_AssetLoss": "73288.5", "sL_BldgLoss": "66625.4", "sL_StrLoss": "49748.4", "sL_NStrLoss": "16877", "sL_ContLoss": "6663.1", "geom_point": "0101000020E61000001A18DC830E1F5FC0DF3F715BB6AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.482997080999937, 49.368004798000122 ], [ -124.481395445999908, 49.366650631000013 ], [ -124.481373298999927, 49.366631905000141 ], [ -124.480690400999961, 49.365911190000062 ], [ -124.478991412999932, 49.36478895900008 ], [ -124.478991427999958, 49.364788499000042 ], [ -124.478954402999975, 49.364764512000086 ], [ -124.478286308999955, 49.364323192000022 ], [ -124.47776230699999, 49.364080263000041 ], [ -124.477762105999901, 49.364073563000055 ], [ -124.477703080999987, 49.364043807000016 ], [ -124.477684192999973, 49.364044048000082 ], [ -124.477343286999897, 49.36388600100004 ], [ -124.477342569999948, 49.363862063000042 ], [ -124.477181010999971, 49.363780616000106 ], [ -124.477117722999964, 49.363781425000091 ], [ -124.476924269999969, 49.363691736000106 ], [ -124.476923036999935, 49.363650562000068 ], [ -124.476898840000032, 49.363638363000057 ], [ -124.476682797999928, 49.363517118000054 ], [ -124.476551260999926, 49.363518798000072 ], [ -124.476505256999971, 49.363497469000031 ], [ -124.476502819999922, 49.363416112000031 ], [ -124.476212643999986, 49.363253259000054 ], [ -124.476084798999949, 49.363254891000089 ], [ -124.47608256599996, 49.363180256000099 ], [ -124.475890376999956, 49.363072395000117 ], [ -124.476004399999965, 49.362222121000045 ], [ -124.4759418, 49.362012598000035 ], [ -124.475912369999946, 49.360482993000062 ], [ -124.476487426999967, 49.360567607000107 ], [ -124.4771760309999, 49.360671788000069 ], [ -124.478032614999961, 49.360772949000157 ], [ -124.479432230999976, 49.360937624000108 ], [ -124.479622474999985, 49.360960018000057 ], [ -124.480601561999919, 49.361100698000079 ], [ -124.481289150999913, 49.361303862000035 ], [ -124.481551331999952, 49.361381340000044 ], [ -124.483095642999956, 49.361973338000048 ], [ -124.483201444999963, 49.362013908000094 ], [ -124.483270706999974, 49.36204045700002 ], [ -124.483415588999961, 49.362095999000069 ], [ -124.483527475999921, 49.362143835000026 ], [ -124.483833509999911, 49.362274682000056 ], [ -124.48442811299999, 49.362605297000052 ], [ -124.484647061999951, 49.362764418000047 ], [ -124.484839616, 49.362844737000025 ], [ -124.485077458999911, 49.362967623000038 ], [ -124.485203261, 49.363028971000091 ], [ -124.485455410999961, 49.36316965500005 ], [ -124.485806080999922, 49.363381041000075 ], [ -124.48593219299994, 49.363451398000038 ], [ -124.48606940799999, 49.363512033000106 ], [ -124.486527004, 49.363635500000051 ], [ -124.487215797999966, 49.363694603000042 ], [ -124.488241192999979, 49.363683815000044 ], [ -124.488852700999956, 49.363625689000116 ], [ -124.489271012999936, 49.363538794000064 ], [ -124.489576964999955, 49.363434206000051 ], [ -124.489686612999932, 49.363396733000101 ], [ -124.490563202999951, 49.363589788000091 ], [ -124.493104089999974, 49.364717705000032 ], [ -124.494480077000034, 49.365130798000102 ], [ -124.49497998799994, 49.365241805000039 ], [ -124.495296797999913, 49.365201999000057 ], [ -124.495742294999957, 49.365306479000026 ], [ -124.494379945999967, 49.365287531000092 ], [ -124.494383088999911, 49.365190873000103 ], [ -124.490051790999942, 49.365130519000076 ], [ -124.490057432999919, 49.364957504000131 ], [ -124.488789274999959, 49.364939800000116 ], [ -124.488775675999989, 49.365356441000102 ], [ -124.49073979399995, 49.365383854000086 ], [ -124.490742496999985, 49.365300932000082 ], [ -124.496032723999946, 49.365374590000066 ], [ -124.496242379999913, 49.365423759000095 ], [ -124.496181890999935, 49.367286111000091 ], [ -124.49432358899999, 49.367238601000047 ], [ -124.493749099999931, 49.367318294000057 ], [ -124.49291599799993, 49.36755331100008 ], [ -124.490865311999968, 49.367633090000091 ], [ -124.489188914999943, 49.367781196000053 ], [ -124.488409995, 49.367980586 ], [ -124.487309390999897, 49.368480494000039 ], [ -124.486496895999935, 49.368949100000087 ], [ -124.486169405999945, 49.369061584000136 ], [ -124.485893013999927, 49.369038803000102 ], [ -124.485595507999946, 49.368718300000047 ], [ -124.484663591999904, 49.36840639900003 ], [ -124.483387193999974, 49.368161493000073 ], [ -124.482997080999937, 49.368004798000122 ] ], [ [ -124.48760480599999, 49.364346103000067 ], [ -124.48760545199994, 49.3643263210001 ], [ -124.485260535999956, 49.364293520000089 ], [ -124.485259888999963, 49.364313303000039 ], [ -124.48760480599999, 49.364346103000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42447666", "BldgCostT": "28746666", "sL_LossRatio": "0.866240019972058", "sL_AssetLoss": "145803.7", "sL_BldgLoss": "126301", "sL_StrLoss": "92033.8", "sL_NStrLoss": "34267.2", "sL_ContLoss": "19502.7", "geom_point": "0101000020E6100000A1586E69F5115FC0DF9F41F9F1A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.286074398999943, 49.331862605000026 ], [ -124.285588512999979, 49.331707401000081 ], [ -124.284844278999941, 49.331697399000063 ], [ -124.284781949999953, 49.33167903800009 ], [ -124.284780968999897, 49.33164131400008 ], [ -124.284741039999957, 49.331628163000076 ], [ -124.284327642999955, 49.331542101000096 ], [ -124.284317499999958, 49.331542213000041 ], [ -124.283137909999965, 49.33119470000009 ], [ -124.283117361999956, 49.331182824000095 ], [ -124.283117327999932, 49.331181573 ], [ -124.283109462999946, 49.331178260000087 ], [ -124.280343496999976, 49.329579599000034 ], [ -124.278952904, 49.328982911 ], [ -124.276519604999976, 49.328551390000037 ], [ -124.27644197099994, 49.32852606800008 ], [ -124.276441039999909, 49.328489999000048 ], [ -124.276103237999976, 49.328415583000066 ], [ -124.275609159999988, 49.328254426000058 ], [ -124.275582422999918, 49.327219698000114 ], [ -124.275087613999972, 49.327211804000058 ], [ -124.275307820999956, 49.32235961300006 ], [ -124.275825135999966, 49.314379524000067 ], [ -124.275627713999938, 49.314070320000035 ], [ -124.275620997999937, 49.313853270000067 ], [ -124.275580686999916, 49.31255085700009 ], [ -124.275575910999962, 49.312396561000106 ], [ -124.275548687999944, 49.311516770000061 ], [ -124.275669979, 49.311390347000064 ], [ -124.275691511999938, 49.311343825000066 ], [ -124.27573832799996, 49.311126459 ], [ -124.275665861999968, 49.310983341000082 ], [ -124.275586284999946, 49.310859437000026 ], [ -124.275985274999954, 49.310855033000095 ], [ -124.275992242999934, 49.311124820000011 ], [ -124.276404875999958, 49.311120262000053 ], [ -124.276444422999973, 49.312650604000119 ], [ -124.279719411999977, 49.31270278500012 ], [ -124.280160515999967, 49.312697899000028 ], [ -124.280160823999893, 49.312709811000104 ], [ -124.28070626499999, 49.31271849000008 ], [ -124.280703332999934, 49.31279754100008 ], [ -124.282024800999949, 49.312818556000089 ], [ -124.282688899999982, 49.313325104000086 ], [ -124.284549002999981, 49.314474509000057 ], [ -124.284844412999988, 49.314722308000086 ], [ -124.285186790999987, 49.315240711000108 ], [ -124.285222314999942, 49.315528405000123 ], [ -124.284971225999954, 49.316104268000103 ], [ -124.284950324999954, 49.316152203000058 ], [ -124.284694813999963, 49.317459607000067 ], [ -124.284707786999959, 49.317945306000063 ], [ -124.285030114, 49.318697296000053 ], [ -124.285902295999961, 49.320000408000055 ], [ -124.286077318999958, 49.32018838200009 ], [ -124.284962074999953, 49.320200789000118 ], [ -124.284912120999962, 49.321550661000082 ], [ -124.284931223999934, 49.321550450000061 ], [ -124.284938245999939, 49.321820235000139 ], [ -124.285350965999967, 49.321815645000079 ], [ -124.285363113999949, 49.322282334000107 ], [ -124.285455751999962, 49.322354206000107 ], [ -124.285777735999943, 49.322350624000073 ], [ -124.285784760999917, 49.322620410000077 ], [ -124.28702294199995, 49.32260662500007 ], [ -124.28700887799998, 49.322067055000041 ], [ -124.287961488999883, 49.322056442000125 ], [ -124.288253332999901, 49.322294316000061 ], [ -124.28827520099999, 49.323132399000059 ], [ -124.28786246899999, 49.323136999000049 ], [ -124.287883579999971, 49.323946355000018 ], [ -124.287470843999955, 49.323950954000068 ], [ -124.28747787799999, 49.324220739000111 ], [ -124.287065136999956, 49.324225336 ], [ -124.287072170999963, 49.32449512200003 ], [ -124.286659427999936, 49.324499718000077 ], [ -124.28668052, 49.325309073 ], [ -124.286267771000013, 49.325313668000028 ], [ -124.286281828999932, 49.325853238000093 ], [ -124.285869073999933, 49.325857832000082 ], [ -124.28587610199996, 49.326127617000026 ], [ -124.285463344999982, 49.326132209000058 ], [ -124.285477395999962, 49.326671780000019 ], [ -124.284239110999977, 49.326685547000118 ], [ -124.284267184999948, 49.327764688000109 ], [ -124.283854414999951, 49.32776927500008 ], [ -124.283882480999978, 49.328848416000014 ], [ -124.284295258999961, 49.328843829000093 ], [ -124.284302278999959, 49.329113615000104 ], [ -124.284715059999911, 49.329109026000047 ], [ -124.284722081999959, 49.32937881200013 ], [ -124.285134865999922, 49.329374222000091 ], [ -124.285148911999968, 49.329913791000095 ], [ -124.285561699999974, 49.329909200000024 ], [ -124.285570718999978, 49.330255522000094 ], [ -124.285235884999949, 49.3301184950001 ], [ -124.284264374999935, 49.329729499000045 ], [ -124.28379822299999, 49.329507008000064 ], [ -124.283387686999973, 49.329269090000089 ], [ -124.28319989000002, 49.329030286000069 ], [ -124.283005197999941, 49.328460110000087 ], [ -124.282893592999955, 49.328132509000071 ], [ -124.282857831999976, 49.327973956000029 ], [ -124.282636110999974, 49.326991486000033 ], [ -124.282785102999952, 49.326867783000118 ], [ -124.283354989999964, 49.326514097000093 ], [ -124.28532189, 49.325303096000027 ], [ -124.28469614, 49.324857228000056 ], [ -124.284334685999937, 49.324599693000039 ], [ -124.284690577999982, 49.324381715000136 ], [ -124.285202716, 49.32406799000006 ], [ -124.285294386999965, 49.323928092000088 ], [ -124.285369498999941, 49.323719486000037 ], [ -124.285330023999961, 49.323458067000033 ], [ -124.285284495999974, 49.323156513000121 ], [ -124.285201767999979, 49.32277776300004 ], [ -124.285143411, 49.322510602000087 ], [ -124.284977251, 49.322307316000057 ], [ -124.284630477999912, 49.321883096000136 ], [ -124.28445010899992, 49.321816394000059 ], [ -124.284208106, 49.321780991000082 ], [ -124.283095744999926, 49.321829274000017 ], [ -124.282066910999973, 49.321873904000057 ], [ -124.281773002999941, 49.32189446600011 ], [ -124.28132236, 49.321925992000068 ], [ -124.280622529, 49.321974969000046 ], [ -124.280546484, 49.321980295000046 ], [ -124.279400972999923, 49.322022669000098 ], [ -124.27937349099993, 49.322023692000123 ], [ -124.277965453999983, 49.322075756000139 ], [ -124.276974100999965, 49.322112412000102 ], [ -124.276720905999966, 49.322191189000101 ], [ -124.276541105999911, 49.322296401000109 ], [ -124.276468581, 49.322476961000113 ], [ -124.276444095, 49.322537911000033 ], [ -124.276445677999973, 49.322930039 ], [ -124.276433448999967, 49.323245419000088 ], [ -124.276448123999984, 49.323539805000067 ], [ -124.276450049999966, 49.323964192000105 ], [ -124.276451119999976, 49.324197576000117 ], [ -124.276452768999931, 49.324560571000099 ], [ -124.276453972999917, 49.324822693000037 ], [ -124.276454427, 49.32497156300014 ], [ -124.276456673999959, 49.325731236000109 ], [ -124.27645744899999, 49.326006305000114 ], [ -124.276457791, 49.326123511000048 ], [ -124.275600901999923, 49.326134993000046 ], [ -124.275643546999945, 49.327032070000058 ], [ -124.275651027999956, 49.327189008000119 ], [ -124.275654098999951, 49.327289896000089 ], [ -124.275682914999919, 49.327354508000035 ], [ -124.27570869699997, 49.327412301000031 ], [ -124.275869608000036, 49.327522905000066 ], [ -124.27607786899992, 49.327589755000048 ], [ -124.277040799999938, 49.327898912000158 ], [ -124.278337972999935, 49.328262669000033 ], [ -124.278609800999973, 49.328338891000058 ], [ -124.279292609999956, 49.328463200000066 ], [ -124.279951403999945, 49.328570906000039 ], [ -124.280233387999928, 49.328567301000106 ], [ -124.280994233999962, 49.328943091000063 ], [ -124.281723638999921, 49.329303341000092 ], [ -124.281941390999961, 49.329410890000105 ], [ -124.282590517999935, 49.330001811000024 ], [ -124.282968011999941, 49.330204096000067 ], [ -124.284013713999968, 49.330744607000035 ], [ -124.28500667499999, 49.330960905 ], [ -124.285248114999945, 49.331013508000105 ], [ -124.286281624, 49.331139694000044 ], [ -124.286306046999954, 49.330936125000079 ], [ -124.286531520000011, 49.330955053000025 ], [ -124.286531601999954, 49.330958289000115 ], [ -124.286645084999989, 49.331075107000089 ], [ -124.287020980999927, 49.331187592000084 ], [ -124.288070975999958, 49.331129 ], [ -124.288071362999972, 49.331143869000066 ], [ -124.288310437999925, 49.33114436400011 ], [ -124.288338655999937, 49.331227591000065 ], [ -124.288486424, 49.331225944000089 ], [ -124.288498333999968, 49.331682158000028 ], [ -124.287065488999929, 49.331852702000042 ], [ -124.286074398999943, 49.331862605000026 ] ], [ [ -124.278327721999958, 49.321623688000102 ], [ -124.278320735999955, 49.321353902000105 ], [ -124.278562078999983, 49.32135123200009 ], [ -124.278627245999971, 49.31959673500004 ], [ -124.277449119999957, 49.319577966000061 ], [ -124.277502280999968, 49.321632816000069 ], [ -124.278327721999958, 49.321623688000102 ] ], [ [ -124.284455346999934, 49.319126968 ], [ -124.284406227999966, 49.317238468000014 ], [ -124.283993544999944, 49.317243055000077 ], [ -124.28397656599999, 49.316590033000054 ], [ -124.282896747, 49.316572883000077 ], [ -124.282885603999915, 49.316873662000063 ], [ -124.28264240399993, 49.316869798000049 ], [ -124.282567989, 49.318878069000071 ], [ -124.28279754499999, 49.318875520000105 ], [ -124.282804553999981, 49.319145306000095 ], [ -124.284455346999934, 49.319126968 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7825166", "BldgCostT": "5396666", "sL_LossRatio": "0.939344627139027", "sL_AssetLoss": "14693.01", "sL_BldgLoss": "13801.8", "sL_StrLoss": "11045.7", "sL_NStrLoss": "2756.1", "sL_ContLoss": "891.21", "geom_point": "0101000020E6100000628CDD7816225FC02FF14FC2AFAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.534741819999923, 49.374936349000052 ], [ -124.53476406599999, 49.374233526000076 ], [ -124.532952423999987, 49.374208985000053 ], [ -124.532692399999945, 49.374103285000032 ], [ -124.530503207999971, 49.374175758000071 ], [ -124.529561120999986, 49.374162963000096 ], [ -124.529550664999988, 49.374162218000102 ], [ -124.529664947999933, 49.370564214000105 ], [ -124.530757575999985, 49.370579054000103 ], [ -124.535167021999882, 49.370638828000082 ], [ -124.535122511999958, 49.372045469000106 ], [ -124.53508726599992, 49.373159263000034 ], [ -124.53582052099992, 49.373169186000062 ], [ -124.535861650999962, 49.374954100000053 ], [ -124.535861038999926, 49.375472737000095 ], [ -124.535691594999903, 49.375322398000066 ], [ -124.534741819999923, 49.374936349000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8156250", "BldgCostT": "5625000", "sL_LossRatio": "0.883334521856949", "sL_AssetLoss": "28046", "sL_BldgLoss": "24774", "sL_StrLoss": "17360", "sL_NStrLoss": "7414", "sL_ContLoss": "3272", "geom_point": "0101000020E61000000337BD514C125FC0F5F23B4DE6A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.283258458999981, 49.31239367300001 ], [ -124.283322138999949, 49.312291663000032 ], [ -124.284365406999953, 49.312357104000114 ], [ -124.284382377999947, 49.31189853100004 ], [ -124.284318113999944, 49.311897510000023 ], [ -124.284372624999975, 49.310424667000106 ], [ -124.284337802999957, 49.310424115000075 ], [ -124.284374827999955, 49.309423701000085 ], [ -124.285011975, 49.309391459000025 ], [ -124.28501191799991, 49.309390655000051 ], [ -124.285009148999976, 49.309348883000077 ], [ -124.284950092999964, 49.308490713000054 ], [ -124.287744598999936, 49.308479211000076 ], [ -124.287746907999932, 49.308645322000118 ], [ -124.287757588999966, 49.30941900300008 ], [ -124.28776682699997, 49.310084514000053 ], [ -124.287773034999972, 49.310534259000107 ], [ -124.287793455, 49.31200925700012 ], [ -124.287795208999938, 49.312135292000114 ], [ -124.2878027, 49.31267509500006 ], [ -124.287803337999961, 49.312810054000082 ], [ -124.287804267999945, 49.313017042000062 ], [ -124.287809067999945, 49.314060504000047 ], [ -124.287810435999944, 49.314363631000084 ], [ -124.286712359999967, 49.314398586000088 ], [ -124.286607423999939, 49.314663473000095 ], [ -124.285100017999952, 49.314775989000111 ], [ -124.284863192999921, 49.31444309000004 ], [ -124.282613257999941, 49.312967627000091 ], [ -124.283057049999954, 49.312974679000064 ], [ -124.283056215999949, 49.312942621000111 ], [ -124.282968238999942, 49.312858563000134 ], [ -124.283050605999961, 49.312726626000014 ], [ -124.283042018999964, 49.312396075000066 ], [ -124.283258458999981, 49.31239367300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.975342465753425", "sL_AssetLoss": "1277.5", "sL_BldgLoss": "1246", "sL_StrLoss": "1110", "sL_NStrLoss": "136", "sL_ContLoss": "31.5", "geom_point": "0101000020E6100000E4EFE6C2AB115FC09531154DADA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.275525413999944, 49.310319457000055 ], [ -124.275536298999938, 49.309395993000059 ], [ -124.276360785999927, 49.309413955000139 ], [ -124.276363047999936, 49.309501542000113 ], [ -124.276775667999942, 49.30949698300001 ], [ -124.27679658699995, 49.310306343000015 ], [ -124.276383960999937, 49.310310901000058 ], [ -124.276390932999945, 49.310580689000098 ], [ -124.275522189999933, 49.310590282000128 ], [ -124.275525413999944, 49.310319457000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129314084", "BldgCostT": "88918334", "sL_LossRatio": "0.8733126734157", "sL_AssetLoss": "488998.4", "sL_BldgLoss": "427048.5", "sL_StrLoss": "292967.5", "sL_NStrLoss": "134081", "sL_ContLoss": "61949.9", "geom_point": "0101000020E610000032B98B0FF7115FC0D4DC651AA8A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.284013713999968, 49.330744607000035 ], [ -124.282968011999941, 49.330204096000067 ], [ -124.282590517999935, 49.330001811000024 ], [ -124.281941390999961, 49.329410890000105 ], [ -124.281723638999921, 49.329303341000092 ], [ -124.280994233999962, 49.328943091000063 ], [ -124.280233387999928, 49.328567301000106 ], [ -124.279951403999945, 49.328570906000039 ], [ -124.279292609999956, 49.328463200000066 ], [ -124.278609800999973, 49.328338891000058 ], [ -124.278337972999935, 49.328262669000033 ], [ -124.277040799999938, 49.327898912000158 ], [ -124.27607786899992, 49.327589755000048 ], [ -124.275869608000036, 49.327522905000066 ], [ -124.27570869699997, 49.327412301000031 ], [ -124.275682914999919, 49.327354508000035 ], [ -124.275654098999951, 49.327289896000089 ], [ -124.275651027999956, 49.327189008000119 ], [ -124.275643546999945, 49.327032070000058 ], [ -124.275600901999923, 49.326134993000046 ], [ -124.276457791, 49.326123511000048 ], [ -124.27645744899999, 49.326006305000114 ], [ -124.276456673999959, 49.325731236000109 ], [ -124.276454427, 49.32497156300014 ], [ -124.276453972999917, 49.324822693000037 ], [ -124.276452768999931, 49.324560571000099 ], [ -124.276451119999976, 49.324197576000117 ], [ -124.276450049999966, 49.323964192000105 ], [ -124.276448123999984, 49.323539805000067 ], [ -124.276433448999967, 49.323245419000088 ], [ -124.276445677999973, 49.322930039 ], [ -124.276444095, 49.322537911000033 ], [ -124.276468581, 49.322476961000113 ], [ -124.276541105999911, 49.322296401000109 ], [ -124.276720905999966, 49.322191189000101 ], [ -124.276974100999965, 49.322112412000102 ], [ -124.277965453999983, 49.322075756000139 ], [ -124.27937349099993, 49.322023692000123 ], [ -124.279400972999923, 49.322022669000098 ], [ -124.280546484, 49.321980295000046 ], [ -124.280622529, 49.321974969000046 ], [ -124.28132236, 49.321925992000068 ], [ -124.281773002999941, 49.32189446600011 ], [ -124.282066910999973, 49.321873904000057 ], [ -124.283095744999926, 49.321829274000017 ], [ -124.284208106, 49.321780991000082 ], [ -124.28445010899992, 49.321816394000059 ], [ -124.284630477999912, 49.321883096000136 ], [ -124.284977251, 49.322307316000057 ], [ -124.285143411, 49.322510602000087 ], [ -124.285201767999979, 49.32277776300004 ], [ -124.285284495999974, 49.323156513000121 ], [ -124.285330023999961, 49.323458067000033 ], [ -124.285369498999941, 49.323719486000037 ], [ -124.285294386999965, 49.323928092000088 ], [ -124.285202716, 49.32406799000006 ], [ -124.284690577999982, 49.324381715000136 ], [ -124.284334685999937, 49.324599693000039 ], [ -124.28469614, 49.324857228000056 ], [ -124.28532189, 49.325303096000027 ], [ -124.283354989999964, 49.326514097000093 ], [ -124.282785102999952, 49.326867783000118 ], [ -124.282636110999974, 49.326991486000033 ], [ -124.282857831999976, 49.327973956000029 ], [ -124.282893592999955, 49.328132509000071 ], [ -124.283005197999941, 49.328460110000087 ], [ -124.28319989000002, 49.329030286000069 ], [ -124.283387686999973, 49.329269090000089 ], [ -124.28379822299999, 49.329507008000064 ], [ -124.284264374999935, 49.329729499000045 ], [ -124.285235884999949, 49.3301184950001 ], [ -124.285570718999978, 49.330255522000094 ], [ -124.285575751999957, 49.330448771000071 ], [ -124.285988543999949, 49.330444177000082 ], [ -124.286000694000023, 49.330910490000072 ], [ -124.286306046999954, 49.330936125000079 ], [ -124.286281624, 49.331139694000044 ], [ -124.285248114999945, 49.331013508000105 ], [ -124.28500667499999, 49.330960905 ], [ -124.284013713999968, 49.330744607000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212444500", "BldgCostT": "145570000", "sL_LossRatio": "0.92727066424413", "sL_AssetLoss": "438366.99", "sL_BldgLoss": "406484.85", "sL_StrLoss": "326292.8", "sL_NStrLoss": "80192.05", "sL_ContLoss": "31882.14", "geom_point": "0101000020E61000008F0D38A682155FC04762D562E8AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.343829280999927, 49.341422495000053 ], [ -124.343737592999958, 49.341391253000062 ], [ -124.343482494999989, 49.341394219000023 ], [ -124.343384198999928, 49.341357887000122 ], [ -124.343267232999921, 49.34134725300008 ], [ -124.343265661999979, 49.341289598000081 ], [ -124.342448413999961, 49.341136372000094 ], [ -124.341750107999957, 49.341144482000118 ], [ -124.341608841999943, 49.341112960000039 ], [ -124.341605180999963, 49.34097826600005 ], [ -124.341551838999948, 49.340968263000043 ], [ -124.341339861000023, 49.34087937900005 ], [ -124.341189539999959, 49.340881125000053 ], [ -124.341189392, 49.340875741000019 ], [ -124.341141281, 49.34087500400004 ], [ -124.339846821999984, 49.34020007200008 ], [ -124.339847126999956, 49.340191543000167 ], [ -124.339635582999961, 49.340089557000056 ], [ -124.339634886999931, 49.340089565000049 ], [ -124.339633593999906, 49.340088891000072 ], [ -124.339513801999928, 49.340006871000057 ], [ -124.339513708999974, 49.340003416000059 ], [ -124.339460339999931, 49.339958363000036 ], [ -124.339361685999947, 49.339902716000012 ], [ -124.339115722, 49.339734303000029 ], [ -124.338847668999932, 49.339612777000113 ], [ -124.33875418299999, 49.339560043000048 ], [ -124.338731924999948, 49.339560302000066 ], [ -124.338675001999889, 49.339534493000052 ], [ -124.338674473000012, 49.339515082000041 ], [ -124.338544138999907, 49.339441563000051 ], [ -124.33839029799995, 49.339294395000053 ], [ -124.33825554199997, 49.339295956000043 ], [ -124.338251909999926, 49.339162008000095 ], [ -124.33811157300002, 49.339027760000057 ], [ -124.337958450999949, 49.339029532000083 ], [ -124.337910698999977, 49.338966610000149 ], [ -124.337831779999973, 49.338898561000114 ], [ -124.337829416, 49.338811338000042 ], [ -124.337747309999941, 49.338762112000026 ], [ -124.337674516999968, 49.338762955000114 ], [ -124.337261609, 49.338406906000088 ], [ -124.33622930099996, 49.33789698800004 ], [ -124.335734879999919, 49.337717128000037 ], [ -124.335728242999934, 49.337471860000036 ], [ -124.335249889999929, 49.337464496000081 ], [ -124.335077462999934, 49.337461842000025 ], [ -124.333567294999966, 49.336713513000106 ], [ -124.331719509999942, 49.335519995 ], [ -124.330823903999942, 49.335044313000047 ], [ -124.329546898999979, 49.334124293000073 ], [ -124.329020001999979, 49.333464899000035 ], [ -124.327764321999936, 49.332336899000076 ], [ -124.327543918999979, 49.332069366000077 ], [ -124.326171002999928, 49.330402801000055 ], [ -124.326123716, 49.330201472000113 ], [ -124.325985690999957, 49.329613807000044 ], [ -124.325588620999952, 49.32897237 ], [ -124.325587140999971, 49.32891728000007 ], [ -124.325828592000022, 49.328914510000111 ], [ -124.325997612999927, 49.328826879000111 ], [ -124.325992667999941, 49.328642764000101 ], [ -124.325579896999926, 49.328647498000059 ], [ -124.325571287999978, 49.328326872000055 ], [ -124.326412210999976, 49.328392795000077 ], [ -124.32642623299995, 49.328392735000094 ], [ -124.326679001999977, 49.328391489000047 ], [ -124.32700629, 49.328389304000027 ], [ -124.327909905999931, 49.328382598000111 ], [ -124.328113512999948, 49.328381295000057 ], [ -124.328222903, 49.32838041800003 ], [ -124.32934708399992, 49.328371498000152 ], [ -124.330639519999963, 49.328373484000096 ], [ -124.330641086999947, 49.328375948 ], [ -124.330977900999969, 49.328904403000109 ], [ -124.331232877999966, 49.329233011000035 ], [ -124.331945014000027, 49.330150702000076 ], [ -124.332533918999943, 49.330864652000052 ], [ -124.332673533999952, 49.331036460000064 ], [ -124.333426689999897, 49.33196309700002 ], [ -124.334428550999988, 49.333009429000079 ], [ -124.334782773999976, 49.333379359000034 ], [ -124.335068717999974, 49.333677962000102 ], [ -124.33633358, 49.335025158000043 ], [ -124.336901328999943, 49.335028681000033 ], [ -124.337241049999975, 49.335030802000084 ], [ -124.340555688999984, 49.335051315000051 ], [ -124.340946142999954, 49.335057293000084 ], [ -124.34111109699991, 49.335059834000056 ], [ -124.342419377999988, 49.335079912000012 ], [ -124.343176628999942, 49.335091517000116 ], [ -124.3444547799999, 49.335111097000137 ], [ -124.344441505999924, 49.335946191000069 ], [ -124.344430851999974, 49.33648080000011 ], [ -124.344427699999983, 49.336639133000105 ], [ -124.344418544999968, 49.3373572920001 ], [ -124.344403885999924, 49.338345421000014 ], [ -124.343911293999938, 49.338775338000076 ], [ -124.344934200999958, 49.339282497000113 ], [ -124.344938950999932, 49.339559475000087 ], [ -124.344948883999905, 49.340142313000094 ], [ -124.344952828999936, 49.340486042000038 ], [ -124.344953573999945, 49.340549073000055 ], [ -124.344956596999936, 49.340812090000092 ], [ -124.346249097999987, 49.341206401000129 ], [ -124.346315452999974, 49.341217376000024 ], [ -124.346422710999889, 49.341235110000113 ], [ -124.346860050999936, 49.341221682000068 ], [ -124.34694262, 49.341219144000036 ], [ -124.347091833999912, 49.342356934000101 ], [ -124.346970740999907, 49.342454763000013 ], [ -124.346563310999898, 49.342310709000095 ], [ -124.344705913999974, 49.341846405000119 ], [ -124.343825754999926, 49.341521094000029 ], [ -124.343829280999927, 49.341422495000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205964219", "BldgCostT": "126935412", "sL_LossRatio": "0.794203179152232", "sL_AssetLoss": "594995.1", "sL_BldgLoss": "472547", "sL_StrLoss": "285903", "sL_NStrLoss": "186644", "sL_ContLoss": "122448.1", "geom_point": "0101000020E6100000A847435B88135FC07F6783654FA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.305276356999954, 49.325941368000088 ], [ -124.305275529999918, 49.325910124000117 ], [ -124.304862777999929, 49.325914786000048 ], [ -124.304827128999975, 49.32456587000005 ], [ -124.304001645999946, 49.324575188000054 ], [ -124.303966020999894, 49.32322627200007 ], [ -124.304378749999913, 49.323221613000086 ], [ -124.30436706199994, 49.322779197000045 ], [ -124.30416834, 49.322785563000089 ], [ -124.304175939999979, 49.322471463000134 ], [ -124.30414312, 49.322414681000083 ], [ -124.303944647999955, 49.322416922000023 ], [ -124.303923272999953, 49.321607572000083 ], [ -124.303097840999911, 49.321616883000026 ], [ -124.30310496199999, 49.321886666000076 ], [ -124.302279525999936, 49.321895970000078 ], [ -124.30230087299999, 49.322705322000033 ], [ -124.301062695999917, 49.322719269000125 ], [ -124.301048479, 49.322179702000049 ], [ -124.29988907, 49.322192749000052 ], [ -124.299810316000034, 49.32219363500009 ], [ -124.299803213999922, 49.321923852000062 ], [ -124.29939049499994, 49.32192849299999 ], [ -124.299383395999925, 49.321658709000076 ], [ -124.29814524499993, 49.321672625000062 ], [ -124.298138151999979, 49.321402841000115 ], [ -124.297312722999933, 49.32141211000004 ], [ -124.297383609999969, 49.324109951000025 ], [ -124.296970870999971, 49.32411458400005 ], [ -124.296985045999975, 49.324654153000054 ], [ -124.296572302999934, 49.324658784000057 ], [ -124.296586472999948, 49.325198352000079 ], [ -124.296173726999953, 49.325202982000121 ], [ -124.296187893999971, 49.325742550000022 ], [ -124.295775141999968, 49.325747179000068 ], [ -124.295782221999957, 49.326016963000029 ], [ -124.294543959999899, 49.326030842000073 ], [ -124.294536884999957, 49.325761057000129 ], [ -124.293711381999955, 49.325770302000066 ], [ -124.293704311999988, 49.325500518000077 ], [ -124.293291563, 49.325505139000065 ], [ -124.293220896, 49.322807294000029 ], [ -124.292808168999926, 49.322811911000066 ], [ -124.29278697899997, 49.322002559000062 ], [ -124.292374256999892, 49.322007174000042 ], [ -124.292347697999915, 49.320992430000096 ], [ -124.292227839999939, 49.320990363000092 ], [ -124.292168628999903, 49.32093002000002 ], [ -124.291933300999943, 49.320932651000099 ], [ -124.291926782999951, 49.320683545000101 ], [ -124.2916447899999, 49.320396149000047 ], [ -124.290268352999988, 49.320411526000093 ], [ -124.290289501999922, 49.321220880000048 ], [ -124.289051358999956, 49.321234699000115 ], [ -124.289030228999948, 49.32042534400005 ], [ -124.288617521999939, 49.320429946000026 ], [ -124.28860344099999, 49.319890377000036 ], [ -124.288190736999965, 49.319894978000043 ], [ -124.288178463999984, 49.319424524000063 ], [ -124.288164340999941, 49.319423963000098 ], [ -124.288083587999907, 49.319356445000018 ], [ -124.287763962999932, 49.319360008000025 ], [ -124.287756743, 49.319083158000083 ], [ -124.287575439999927, 49.318931563000042 ], [ -124.287643911999936, 49.318821618000065 ], [ -124.287337196999957, 49.318825036000085 ], [ -124.287330161999961, 49.318555250000038 ], [ -124.286917469999949, 49.318559846000014 ], [ -124.286910440000014, 49.31829006100007 ], [ -124.285672365999957, 49.318303842000041 ], [ -124.285686415999962, 49.318843414000042 ], [ -124.286099110999928, 49.318838822000039 ], [ -124.28611533399993, 49.319461729000125 ], [ -124.285114112999935, 49.318210197000013 ], [ -124.285064712999912, 49.317418301000039 ], [ -124.285371871, 49.31614020500006 ], [ -124.285551141999974, 49.316156311000022 ], [ -124.287151089999966, 49.316299841000038 ], [ -124.287356093999932, 49.316318248000108 ], [ -124.28748767899999, 49.316365339000114 ], [ -124.28783705499994, 49.316396081000136 ], [ -124.287839337999969, 49.316595063000079 ], [ -124.287865398999926, 49.317504621000097 ], [ -124.287889098999983, 49.318331975000035 ], [ -124.287893394999926, 49.318481807000076 ], [ -124.287999406999916, 49.318775107000064 ], [ -124.288009006, 49.318789810000098 ], [ -124.288152890999982, 49.31901068900001 ], [ -124.288246648999959, 49.319070517000057 ], [ -124.288320797999944, 49.319117797000089 ], [ -124.288948205999958, 49.319113450000046 ], [ -124.289105978999928, 49.319112344000104 ], [ -124.289140804999974, 49.319112111000024 ], [ -124.291846506999931, 49.319093273000078 ], [ -124.292039299999914, 49.3190919460001 ], [ -124.29322277599999, 49.319083696000106 ], [ -124.293209393, 49.317954602000086 ], [ -124.293258870999978, 49.317964279000094 ], [ -124.29612247599999, 49.318524825000083 ], [ -124.29615498699999, 49.318531213000071 ], [ -124.29630068799996, 49.318559731000057 ], [ -124.296384923999966, 49.318576416000042 ], [ -124.297085412999934, 49.318715222000037 ], [ -124.297532192999967, 49.318827623000061 ], [ -124.299261590999919, 49.319537111000095 ], [ -124.299894968999936, 49.319696491000059 ], [ -124.300507585999966, 49.319786276000073 ], [ -124.301262478999945, 49.319893594000028 ], [ -124.30233892699998, 49.320042815000079 ], [ -124.302589205999965, 49.320077299000069 ], [ -124.303969180999971, 49.320401083000036 ], [ -124.304295700999944, 49.320477715000152 ], [ -124.304287697999939, 49.319681840000101 ], [ -124.30543509099999, 49.31994027600004 ], [ -124.30668224499999, 49.320221168000018 ], [ -124.307114186999968, 49.32031845300002 ], [ -124.30852472299992, 49.320543065000045 ], [ -124.309992901999962, 49.320693855000115 ], [ -124.311289850999927, 49.320847210000117 ], [ -124.311457060999942, 49.320866993000053 ], [ -124.311475359999946, 49.320869144000078 ], [ -124.311703961999982, 49.32089612300004 ], [ -124.31257984299998, 49.321003422000068 ], [ -124.312678080999959, 49.321013679000046 ], [ -124.312760713999921, 49.321022303000028 ], [ -124.313654932999967, 49.321115608000092 ], [ -124.314692672999954, 49.32142345100003 ], [ -124.315206669999924, 49.321580124000064 ], [ -124.315800801999956, 49.321761188000082 ], [ -124.316801276999982, 49.321960389 ], [ -124.318207869999952, 49.322210838000053 ], [ -124.318234455999985, 49.322215556000046 ], [ -124.318981089999951, 49.322348487000099 ], [ -124.319074108999985, 49.32236507000006 ], [ -124.319140558999948, 49.322376899000076 ], [ -124.319770820999949, 49.322489082000068 ], [ -124.320816249999922, 49.322661965000108 ], [ -124.321179881999953, 49.322762711000053 ], [ -124.321359154999982, 49.322812350000049 ], [ -124.321466883999904, 49.322842208000083 ], [ -124.321657172999906, 49.322892707000079 ], [ -124.321964170999962, 49.322974174000095 ], [ -124.322421760999973, 49.323095635000115 ], [ -124.322524099999924, 49.323122778000013 ], [ -124.32368238, 49.323430182000038 ], [ -124.323978827999966, 49.323515061000116 ], [ -124.32478591899995, 49.323746143000037 ], [ -124.324942138999987, 49.32376026100011 ], [ -124.325290084999921, 49.323870983000084 ], [ -124.326270085999951, 49.324152074000033 ], [ -124.326510708999976, 49.324221090000066 ], [ -124.326147585999962, 49.324583500000095 ], [ -124.326011517999945, 49.324719302000105 ], [ -124.325927798999942, 49.325132085000071 ], [ -124.326001542999961, 49.325385232000059 ], [ -124.326220691999936, 49.325700997000155 ], [ -124.326757113, 49.326457402000052 ], [ -124.32800276399999, 49.326444890000111 ], [ -124.328044062999979, 49.326500586000066 ], [ -124.328148848999888, 49.32664188600004 ], [ -124.32857752699999, 49.327219993000064 ], [ -124.32886569599998, 49.327632465000079 ], [ -124.329324028999935, 49.328288400000105 ], [ -124.32934708399992, 49.328371498000152 ], [ -124.328222903, 49.32838041800003 ], [ -124.328113512999948, 49.328381295000057 ], [ -124.327909905999931, 49.328382598000111 ], [ -124.32700629, 49.328389304000027 ], [ -124.326679001999977, 49.328391489000047 ], [ -124.32642623299995, 49.328392735000094 ], [ -124.326412210999976, 49.328392795000077 ], [ -124.325571287999978, 49.328326872000055 ], [ -124.325565408, 49.328107937 ], [ -124.32515264199999, 49.328112672000067 ], [ -124.325145399999911, 49.327842891000053 ], [ -124.324732635999965, 49.327847624000064 ], [ -124.324718156999921, 49.327308061000089 ], [ -124.3243053959999, 49.327312793000047 ], [ -124.32430035000003, 49.327124675000036 ], [ -124.32408863899991, 49.327145764000093 ], [ -124.324008320999951, 49.327046332000073 ], [ -124.323911592999963, 49.327047441000083 ], [ -124.323884674999974, 49.327020623000088 ], [ -124.323881141999962, 49.326888889000017 ], [ -124.32360785799996, 49.326550570000066 ], [ -124.323459781999972, 49.326268392000017 ], [ -124.323227258999964, 49.325979037000096 ], [ -124.322192879999989, 49.32469179600016 ], [ -124.32090622299998, 49.323959702000131 ], [ -124.320331507999981, 49.323533906000065 ], [ -124.319469995999953, 49.323237610000049 ], [ -124.318474505, 49.323051100000043 ], [ -124.317203404999987, 49.322921509000082 ], [ -124.316777872999978, 49.322928411000078 ], [ -124.316343834999941, 49.322935449000092 ], [ -124.316340652999941, 49.322816108000033 ], [ -124.31510248099994, 49.322830206000063 ], [ -124.315095295999953, 49.322560423000027 ], [ -124.314006728999942, 49.322572806000075 ], [ -124.31386383899995, 49.322614463000029 ], [ -124.313858191999955, 49.322614452000046 ], [ -124.313864309999971, 49.322844290000084 ], [ -124.313451583999978, 49.322848981000078 ], [ -124.31346880599996, 49.323496346000077 ], [ -124.313119205999939, 49.323662351000038 ], [ -124.313060383999982, 49.323663020000133 ], [ -124.31306110099996, 49.323689942000087 ], [ -124.311954669999963, 49.324215306000085 ], [ -124.311423790999967, 49.324221331000032 ], [ -124.311430244999897, 49.324464310000081 ], [ -124.311372391999939, 49.324491779000049 ], [ -124.311018217999958, 49.32449579700004 ], [ -124.311022521999959, 49.324657898000098 ], [ -124.310790103999935, 49.324768249000094 ], [ -124.310612640999963, 49.324770262000072 ], [ -124.310614797999961, 49.324851483000018 ], [ -124.310405186999944, 49.324951004000113 ], [ -124.310241714999947, 49.325044332000097 ], [ -124.310207057999946, 49.325044725000055 ], [ -124.31020756599996, 49.325063827000122 ], [ -124.309759438999947, 49.325319662 ], [ -124.308975980999946, 49.325328540000093 ], [ -124.30895452399993, 49.324519192000025 ], [ -124.30936726199999, 49.324514516000107 ], [ -124.309360107999979, 49.324244732000025 ], [ -124.309772843999951, 49.324240055000068 ], [ -124.309765687999942, 49.323970273000057 ], [ -124.30894021899995, 49.323979626000074 ], [ -124.308947370999988, 49.32424940900011 ], [ -124.308121897999953, 49.324258757000095 ], [ -124.30812904599999, 49.324528539000077 ], [ -124.307716305999918, 49.32453321100018 ], [ -124.307723450999944, 49.324802993000027 ], [ -124.307310709999953, 49.324807664000033 ], [ -124.307324997999928, 49.325347229000052 ], [ -124.306912250999972, 49.325351898000129 ], [ -124.306919392999959, 49.325621681000023 ], [ -124.306506643999967, 49.325626348000092 ], [ -124.306515494999971, 49.325960786000046 ], [ -124.308826, 49.325996956000083 ], [ -124.308243502999971, 49.326514711000094 ], [ -124.308032214999955, 49.326830907000108 ], [ -124.307861311999886, 49.327651303000032 ], [ -124.30734928899993, 49.328098493000027 ], [ -124.306437414999934, 49.328433206000092 ], [ -124.304970607999934, 49.328646782000057 ], [ -124.303520483999989, 49.328959311000098 ], [ -124.303631913999979, 49.325915575000074 ], [ -124.305276356999954, 49.325941368000088 ] ], [ [ -124.301034261999945, 49.321640135000088 ], [ -124.301041370999897, 49.321909918000088 ], [ -124.301866806999925, 49.321900621000097 ], [ -124.301859693999958, 49.321630837000043 ], [ -124.301034261999945, 49.321640135000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13344917", "BldgCostT": "8731667", "sL_LossRatio": "0.93162543975867", "sL_AssetLoss": "20062.14", "sL_BldgLoss": "18690.4", "sL_StrLoss": "14146.3", "sL_NStrLoss": "4544.1", "sL_ContLoss": "1371.74", "geom_point": "0101000020E6100000B267091134135FC08609613D07AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.302136612999931, 49.327024991000023 ], [ -124.302541939999912, 49.326941463000054 ], [ -124.303127338999957, 49.326902263000044 ], [ -124.303234497999966, 49.327012615000115 ], [ -124.303240258999963, 49.327012549000059 ], [ -124.303240421999959, 49.327018713000086 ], [ -124.303268338999928, 49.327047463000056 ], [ -124.303243711999968, 49.327143317000015 ], [ -124.303261624999905, 49.327821899000114 ], [ -124.303065294999925, 49.327824114000052 ], [ -124.30286233899993, 49.328294863000103 ], [ -124.302861372999956, 49.328300781000046 ], [ -124.302870217999953, 49.328635903000148 ], [ -124.302683499999915, 49.328638008000041 ], [ -124.30246193499994, 49.328810777000065 ], [ -124.302464560999951, 49.328910340000085 ], [ -124.302317600999956, 49.328911995000034 ], [ -124.302055280999951, 49.329047507000098 ], [ -124.302058900999896, 49.329184774000041 ], [ -124.301783549999939, 49.329187877000074 ], [ -124.301576440999966, 49.329294864000104 ], [ -124.301236818999939, 49.329325906000122 ], [ -124.301239067999944, 49.329411292000088 ], [ -124.300907600999949, 49.329467604000037 ], [ -124.297903446999939, 49.329501384000011 ], [ -124.297386417999974, 49.329519357000102 ], [ -124.296718286999948, 49.329378802000051 ], [ -124.296427788999949, 49.329145424000032 ], [ -124.296683888999979, 49.328907253000075 ], [ -124.296680220999988, 49.328767629000062 ], [ -124.296720194999949, 49.32870507700008 ], [ -124.29690349, 49.32870302000002 ], [ -124.297086938999982, 49.328532409000054 ], [ -124.297077274999964, 49.328164642000047 ], [ -124.29708232099992, 49.328161286000082 ], [ -124.29729751499994, 49.328158870000088 ], [ -124.297374938999894, 49.328014364000055 ], [ -124.297373449999967, 49.327967685000047 ], [ -124.297937011999934, 49.327592908000021 ], [ -124.298785508, 49.327394892000129 ], [ -124.300352573999987, 49.327386396000072 ], [ -124.300676709999962, 49.327311296000126 ], [ -124.300818463999988, 49.327309700000086 ], [ -124.301012839999942, 49.327256563000077 ], [ -124.301592011999986, 49.327137218000082 ], [ -124.301589215999911, 49.32703115800004 ], [ -124.302136612999931, 49.327024991000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "833866325", "BldgCostT": "525639512", "sL_LossRatio": "0.735012318642212", "sL_AssetLoss": "1651156", "sL_BldgLoss": "1213620", "sL_StrLoss": "502522", "sL_NStrLoss": "711098", "sL_ContLoss": "437536", "geom_point": "0101000020E6100000030810B26A145FC0FBC7B4360DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.313643495999926, 49.319389804000181 ], [ -124.31366749599999, 49.319184904000103 ], [ -124.313788884999923, 49.318946506000053 ], [ -124.314516586999943, 49.318326818000088 ], [ -124.315613778999989, 49.318319606000131 ], [ -124.315822053999966, 49.31836229099999 ], [ -124.31593721199999, 49.318385893000034 ], [ -124.316218978999956, 49.318500109000091 ], [ -124.316490518999956, 49.318670796000021 ], [ -124.316689507999939, 49.318867493000042 ], [ -124.316833004999964, 49.31915690800006 ], [ -124.316843865999914, 49.319346997000103 ], [ -124.317776462999916, 49.319334488000017 ], [ -124.321117094999977, 49.319291013000125 ], [ -124.323754950999927, 49.31925814500002 ], [ -124.323753320999955, 49.320243766000054 ], [ -124.323753295999907, 49.32025279600002 ], [ -124.32376369499994, 49.321295390000088 ], [ -124.323771649999983, 49.322330657000123 ], [ -124.323784610999979, 49.323303051000032 ], [ -124.323739950999979, 49.323359067000112 ], [ -124.32368238, 49.323430182000038 ], [ -124.322524099999924, 49.323122778000013 ], [ -124.322421760999973, 49.323095635000115 ], [ -124.321964170999962, 49.322974174000095 ], [ -124.321657172999906, 49.322892707000079 ], [ -124.321466883999904, 49.322842208000083 ], [ -124.321359154999982, 49.322812350000049 ], [ -124.321179881999953, 49.322762711000053 ], [ -124.320816249999922, 49.322661965000108 ], [ -124.319770820999949, 49.322489082000068 ], [ -124.319140558999948, 49.322376899000076 ], [ -124.319074108999985, 49.32236507000006 ], [ -124.318981089999951, 49.322348487000099 ], [ -124.318234455999985, 49.322215556000046 ], [ -124.318207869999952, 49.322210838000053 ], [ -124.316801276999982, 49.321960389 ], [ -124.315800801999956, 49.321761188000082 ], [ -124.315206669999924, 49.321580124000064 ], [ -124.314692672999954, 49.32142345100003 ], [ -124.313654932999967, 49.321115608000092 ], [ -124.31365491899993, 49.321040895000095 ], [ -124.313644870999923, 49.320560956000129 ], [ -124.313633201999892, 49.319937897000031 ], [ -124.313643495999926, 49.319389804000181 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "504372012", "BldgCostT": "326512419", "sL_LossRatio": "0.721456581228663", "sL_AssetLoss": "1204705.9", "sL_BldgLoss": "869143", "sL_StrLoss": "435197", "sL_NStrLoss": "433946", "sL_ContLoss": "335562.9", "geom_point": "0101000020E610000040854456CE135FC03F1206D0B5A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.30426823199997, 49.317941409000092 ], [ -124.304243317999962, 49.315634835000026 ], [ -124.30563529599999, 49.315610808000031 ], [ -124.307099989999969, 49.315589608000046 ], [ -124.308417582999979, 49.315505798000039 ], [ -124.309450391999945, 49.315440094000046 ], [ -124.309920302999942, 49.315447394000053 ], [ -124.31002869799994, 49.315447361000075 ], [ -124.310634404999973, 49.31544713500007 ], [ -124.312065018999974, 49.315446576000049 ], [ -124.312507276999938, 49.31544641200005 ], [ -124.312491095999988, 49.316193292000044 ], [ -124.312490210999954, 49.316355247000018 ], [ -124.31248818899995, 49.316725321000035 ], [ -124.316558913, 49.316672597000142 ], [ -124.315956896999964, 49.31716189600013 ], [ -124.315617152999977, 49.317437145000049 ], [ -124.315245990999955, 49.317737797000063 ], [ -124.315034809999943, 49.317908361000079 ], [ -124.314516586999943, 49.318326818000088 ], [ -124.313788884999923, 49.318946506000053 ], [ -124.31366749599999, 49.319184904000103 ], [ -124.313643495999926, 49.319389804000181 ], [ -124.313633201999892, 49.319937897000031 ], [ -124.313644870999923, 49.320560956000129 ], [ -124.31365491899993, 49.321040895000095 ], [ -124.313654932999967, 49.321115608000092 ], [ -124.312760713999921, 49.321022303000028 ], [ -124.312678080999959, 49.321013679000046 ], [ -124.31257984299998, 49.321003422000068 ], [ -124.311703961999982, 49.32089612300004 ], [ -124.311475359999946, 49.320869144000078 ], [ -124.311457060999942, 49.320866993000053 ], [ -124.311289850999927, 49.320847210000117 ], [ -124.309992901999962, 49.320693855000115 ], [ -124.30852472299992, 49.320543065000045 ], [ -124.307114186999968, 49.32031845300002 ], [ -124.30668224499999, 49.320221168000018 ], [ -124.30543509099999, 49.31994027600004 ], [ -124.304287697999939, 49.319681840000101 ], [ -124.30428561399998, 49.319550363000097 ], [ -124.304279241999964, 49.318957777000101 ], [ -124.304274564999972, 49.318525989000136 ], [ -124.304270684999921, 49.318166264000062 ], [ -124.30426823199997, 49.317941409000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111451136", "BldgCostT": "69947079", "sL_LossRatio": "0.853337429455065", "sL_AssetLoss": "300446.8", "sL_BldgLoss": "256382.5", "sL_StrLoss": "167925.5", "sL_NStrLoss": "88457", "sL_ContLoss": "44064.3", "geom_point": "0101000020E61000009735D9F581145FC0A1B61ECF78A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.315822053999966, 49.31836229099999 ], [ -124.315613778999989, 49.318319606000131 ], [ -124.314516586999943, 49.318326818000088 ], [ -124.315034809999943, 49.317908361000079 ], [ -124.315245990999955, 49.317737797000063 ], [ -124.315617152999977, 49.317437145000049 ], [ -124.315956896999964, 49.31716189600013 ], [ -124.316558913, 49.316672597000142 ], [ -124.317314417999938, 49.31615778900003 ], [ -124.317661935999979, 49.315934093000116 ], [ -124.318825996999962, 49.315184819000116 ], [ -124.319245318, 49.314916774000032 ], [ -124.319621646999934, 49.314678457000106 ], [ -124.319851823999969, 49.314532696000114 ], [ -124.32024700299999, 49.314282437000109 ], [ -124.32054156399991, 49.314074855000058 ], [ -124.321149881999972, 49.313646148000075 ], [ -124.321168058999945, 49.313633309000124 ], [ -124.32147339699999, 49.313362591000043 ], [ -124.321771849999919, 49.313016163000107 ], [ -124.322048574999968, 49.312585691000059 ], [ -124.322297527000018, 49.312049421000054 ], [ -124.323119865999971, 49.312055395000051 ], [ -124.323602911999956, 49.312058899000057 ], [ -124.323616414999918, 49.313015993000128 ], [ -124.323639388999965, 49.31466095899999 ], [ -124.323660870999959, 49.315663189000098 ], [ -124.32366422399997, 49.315840676000036 ], [ -124.323668137999945, 49.316047524000048 ], [ -124.323676800999962, 49.316506218000043 ], [ -124.323678984999944, 49.31662314800014 ], [ -124.323680853999974, 49.316721388000026 ], [ -124.323684243999978, 49.316901398000027 ], [ -124.323709404999988, 49.318235699000056 ], [ -124.32037100299999, 49.3182576990001 ], [ -124.319160714999896, 49.318274006000067 ], [ -124.318772463999963, 49.318279280000105 ], [ -124.318096221999923, 49.31828848500006 ], [ -124.317741388999977, 49.318293290000064 ], [ -124.317776462999916, 49.319334488000017 ], [ -124.316843865999914, 49.319346997000103 ], [ -124.316833004999964, 49.31915690800006 ], [ -124.316689507999939, 49.318867493000042 ], [ -124.316490518999956, 49.318670796000021 ], [ -124.316218978999956, 49.318500109000091 ], [ -124.31593721199999, 49.318385893000034 ], [ -124.315822053999966, 49.31836229099999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261932199", "BldgCostT": "167460271", "sL_LossRatio": "0.821910585423834", "sL_AssetLoss": "510180.8", "sL_BldgLoss": "419323", "sL_StrLoss": "211873", "sL_NStrLoss": "207450", "sL_ContLoss": "90857.8", "geom_point": "0101000020E6100000613035F8B1145FC0FFE2E7F9B2A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.32563810799999, 49.315630804000072 ], [ -124.32635362399995, 49.315627497000023 ], [ -124.326415900999976, 49.319231903000066 ], [ -124.323754950999927, 49.31925814500002 ], [ -124.321117094999977, 49.319291013000125 ], [ -124.317776462999916, 49.319334488000017 ], [ -124.317741388999977, 49.318293290000064 ], [ -124.318096221999923, 49.31828848500006 ], [ -124.318772463999963, 49.318279280000105 ], [ -124.319160714999896, 49.318274006000067 ], [ -124.32037100299999, 49.3182576990001 ], [ -124.323709404999988, 49.318235699000056 ], [ -124.323684243999978, 49.316901398000027 ], [ -124.323680853999974, 49.316721388000026 ], [ -124.323678984999944, 49.31662314800014 ], [ -124.323676800999962, 49.316506218000043 ], [ -124.323668137999945, 49.316047524000048 ], [ -124.32366422399997, 49.315840676000036 ], [ -124.323660870999959, 49.315663189000098 ], [ -124.324279915999981, 49.315650277000067 ], [ -124.325278492999971, 49.315632444000094 ], [ -124.32563810799999, 49.315630804000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168782001", "BldgCostT": "113720001", "sL_LossRatio": "0.881259842645432", "sL_AssetLoss": "500945.1", "sL_BldgLoss": "441462.8", "sL_StrLoss": "303908.5", "sL_NStrLoss": "137554.3", "sL_ContLoss": "59482.3", "geom_point": "0101000020E610000089C304FB10145FC0CFBB0C5A23A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.312491095999988, 49.316193292000044 ], [ -124.312507276999938, 49.31544641200005 ], [ -124.312065018999974, 49.315446576000049 ], [ -124.310634404999973, 49.31544713500007 ], [ -124.31002869799994, 49.315447361000075 ], [ -124.309920302999942, 49.315447394000053 ], [ -124.309450391999945, 49.315440094000046 ], [ -124.309430588999959, 49.314553111000087 ], [ -124.309416501000015, 49.313809311000057 ], [ -124.307095763999939, 49.313823370000115 ], [ -124.307094521999929, 49.312893962000018 ], [ -124.307093572, 49.312189494000052 ], [ -124.307087703999969, 49.310957960000053 ], [ -124.307729506999962, 49.310959029000074 ], [ -124.307834595999907, 49.310903941000042 ], [ -124.308178872999974, 49.310547465000056 ], [ -124.30838409899998, 49.310271610000051 ], [ -124.308488385999937, 49.310050005000051 ], [ -124.308695220999937, 49.309919121000156 ], [ -124.309510948, 49.309899467000093 ], [ -124.309674816999987, 49.310003745000046 ], [ -124.309659195999956, 49.310281664000051 ], [ -124.310188178999965, 49.310458635000082 ], [ -124.310440297999946, 49.310542983000026 ], [ -124.310768564999947, 49.310652791000059 ], [ -124.311399383999984, 49.310878690000038 ], [ -124.31163838, 49.310921091000068 ], [ -124.31245160099995, 49.310933811000055 ], [ -124.312491366999907, 49.312145192000052 ], [ -124.313063712999963, 49.312139631 ], [ -124.317293466999971, 49.312098406000082 ], [ -124.31725745199995, 49.313090550000076 ], [ -124.317319720999976, 49.313089841000114 ], [ -124.31732691699996, 49.313359623000025 ], [ -124.318152204999976, 49.313350211000099 ], [ -124.318154424999946, 49.313433396000036 ], [ -124.319858350999979, 49.313459900000034 ], [ -124.319908625999972, 49.312072836000091 ], [ -124.322297527000018, 49.312049421000054 ], [ -124.322048574999968, 49.312585691000059 ], [ -124.321771849999919, 49.313016163000107 ], [ -124.32147339699999, 49.313362591000043 ], [ -124.321168058999945, 49.313633309000124 ], [ -124.321149881999972, 49.313646148000075 ], [ -124.32054156399991, 49.314074855000058 ], [ -124.32024700299999, 49.314282437000109 ], [ -124.319851823999969, 49.314532696000114 ], [ -124.319621646999934, 49.314678457000106 ], [ -124.319245318, 49.314916774000032 ], [ -124.318825996999962, 49.315184819000116 ], [ -124.317661935999979, 49.315934093000116 ], [ -124.317314417999938, 49.31615778900003 ], [ -124.316558913, 49.316672597000142 ], [ -124.31248818899995, 49.316725321000035 ], [ -124.312490210999954, 49.316355247000018 ], [ -124.312491095999988, 49.316193292000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26250500", "BldgCostT": "17840000", "sL_LossRatio": "0.954800590952345", "sL_AssetLoss": "53520.39", "sL_BldgLoss": "51101.3", "sL_StrLoss": "44055.2", "sL_NStrLoss": "7046.1", "sL_ContLoss": "2419.09", "geom_point": "0101000020E61000008178C0E99B145FC0CF421228A8A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.322352150999947, 49.307077024000101 ], [ -124.324333039999914, 49.307107675000054 ], [ -124.324180855999927, 49.307477819000091 ], [ -124.324136400999947, 49.307598138000102 ], [ -124.323947656999934, 49.3081087300001 ], [ -124.323908834999941, 49.308213723000037 ], [ -124.323867889, 49.308324504000062 ], [ -124.323704084999989, 49.308767607000114 ], [ -124.323520393999942, 49.309196172000071 ], [ -124.323475829999921, 49.309300202000031 ], [ -124.322297527000018, 49.312049421000054 ], [ -124.319908625999972, 49.312072836000091 ], [ -124.31996295299993, 49.310573838000082 ], [ -124.320276913999948, 49.310578719000084 ], [ -124.320304783999944, 49.309809544000089 ], [ -124.320455918000036, 49.309811893000074 ], [ -124.320479913999975, 49.309149547000075 ], [ -124.322168160999951, 49.309175772000046 ], [ -124.322155874999936, 49.308716772000047 ], [ -124.322292867999963, 49.308715205000041 ], [ -124.322352150999947, 49.307077024000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170838584", "BldgCostT": "115588334", "sL_LossRatio": "0.916088486292654", "sL_AssetLoss": "379624.9", "sL_BldgLoss": "347770", "sL_StrLoss": "282676", "sL_NStrLoss": "65094", "sL_ContLoss": "31854.9", "geom_point": "0101000020E61000007C47B688E2135FC0F0CA47B57CA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.309674816999987, 49.310003745000046 ], [ -124.309510948, 49.309899467000093 ], [ -124.308695220999937, 49.309919121000156 ], [ -124.308488385999937, 49.310050005000051 ], [ -124.30838409899998, 49.310271610000051 ], [ -124.308178872999974, 49.310547465000056 ], [ -124.307834595999907, 49.310903941000042 ], [ -124.307729506999962, 49.310959029000074 ], [ -124.307087703999969, 49.310957960000053 ], [ -124.307029234999945, 49.309359215000036 ], [ -124.307075391999916, 49.309299629000066 ], [ -124.307085306999966, 49.308953223000067 ], [ -124.307042455999934, 49.308953187000036 ], [ -124.306968489999988, 49.308953186000053 ], [ -124.305516055999959, 49.308954776000078 ], [ -124.303816331999911, 49.308956632000125 ], [ -124.302558823999931, 49.308958005000122 ], [ -124.302344458999954, 49.308958212000093 ], [ -124.301872098000018, 49.308958725000089 ], [ -124.30168071199995, 49.308930518000054 ], [ -124.301552190999956, 49.308783427000101 ], [ -124.301539561999945, 49.308768977000057 ], [ -124.301541755999978, 49.308463606000011 ], [ -124.301543881999976, 49.308163209000078 ], [ -124.30154263899999, 49.308085982000094 ], [ -124.301541162999953, 49.307996049000081 ], [ -124.301522594999966, 49.306853877 ], [ -124.301509726999882, 49.30606240300007 ], [ -124.30150417599998, 49.305721260000034 ], [ -124.301496296999957, 49.305163042000039 ], [ -124.301495793999891, 49.305128837000055 ], [ -124.30220341499998, 49.305069000000103 ], [ -124.30405274, 49.30513260900004 ], [ -124.306300096999919, 49.305516379000039 ], [ -124.30951408599995, 49.306386074000038 ], [ -124.312290931999954, 49.306935739000068 ], [ -124.312538969999963, 49.30696097200007 ], [ -124.316355103999982, 49.307300442000091 ], [ -124.317224406999955, 49.307458367000045 ], [ -124.318914728999928, 49.307543430000109 ], [ -124.318862294, 49.307070252000102 ], [ -124.319991318999939, 49.307063851000066 ], [ -124.319903548999918, 49.309485765000034 ], [ -124.319862633999932, 49.309485129000059 ], [ -124.319846270999932, 49.309936565000065 ], [ -124.319278305999916, 49.309927733000102 ], [ -124.319273057999965, 49.310072479000048 ], [ -124.317368081999973, 49.310042834000072 ], [ -124.317293466999971, 49.312098406000082 ], [ -124.313063712999963, 49.312139631 ], [ -124.312491366999907, 49.312145192000052 ], [ -124.31245160099995, 49.310933811000055 ], [ -124.31163838, 49.310921091000068 ], [ -124.311399383999984, 49.310878690000038 ], [ -124.310768564999947, 49.310652791000059 ], [ -124.310440297999946, 49.310542983000026 ], [ -124.310188178999965, 49.310458635000082 ], [ -124.309659195999956, 49.310281664000051 ], [ -124.309674816999987, 49.310003745000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.979187314172448", "sL_AssetLoss": "3531.5", "sL_BldgLoss": "3458", "sL_StrLoss": "3110", "sL_NStrLoss": "348", "sL_ContLoss": "73.5", "geom_point": "0101000020E61000003B17A9A48C145FC03E549E6957A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.321096439999934, 49.307057574000041 ], [ -124.321699001999889, 49.307066909000078 ], [ -124.321714398, 49.307642364000039 ], [ -124.320476609999957, 49.307656516000044 ], [ -124.320460695999984, 49.30706118600002 ], [ -124.321096439999934, 49.307057574000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.919263824984808", "sL_AssetLoss": "11519", "sL_BldgLoss": "10589", "sL_StrLoss": "8310", "sL_NStrLoss": "2279", "sL_ContLoss": "930", "geom_point": "0101000020E61000004BE82E8973115FC0F40C2B2680A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.26869648899999, 49.296217500000097 ], [ -124.269761100999915, 49.295891395000062 ], [ -124.270284501999953, 49.295912785000084 ], [ -124.270432194999941, 49.29576611400006 ], [ -124.270670203999927, 49.295449894000086 ], [ -124.270777189999976, 49.294773400000089 ], [ -124.272054517999976, 49.293616901000092 ], [ -124.272781582999983, 49.292520294000042 ], [ -124.273222778999923, 49.291463498000027 ], [ -124.273325922999945, 49.290670201000069 ], [ -124.273186307999964, 49.290033582000042 ], [ -124.273689097999949, 49.289236093000071 ], [ -124.273966796999943, 49.289018296000137 ], [ -124.274183778999927, 49.289015904000095 ], [ -124.274190731999937, 49.289285692000121 ], [ -124.274603182999897, 49.289281142000078 ], [ -124.274617094999954, 49.289820719000041 ], [ -124.275442004999931, 49.289811615000055 ], [ -124.275455926999939, 49.290351191000042 ], [ -124.275868386999946, 49.290346637000013 ], [ -124.275896240999955, 49.291425788000076 ], [ -124.274658835999944, 49.291439447000059 ], [ -124.274651878999947, 49.291169659000047 ], [ -124.273414480999989, 49.291183303000068 ], [ -124.273449231999948, 49.292532243000039 ], [ -124.273036753999932, 49.292536788000056 ], [ -124.273043703999932, 49.292806577000093 ], [ -124.273868662999959, 49.292797485000101 ], [ -124.273903428999958, 49.294146424000118 ], [ -124.27349093799991, 49.294150971000064 ], [ -124.273497889999973, 49.29442075900004 ], [ -124.273085397999949, 49.294425305000111 ], [ -124.273092345999885, 49.29469509300008 ], [ -124.271854857999955, 49.294708722000053 ], [ -124.271861800999929, 49.294978509000039 ], [ -124.271036802999959, 49.294987588000069 ], [ -124.271057617999958, 49.295796953000028 ], [ -124.270645113999947, 49.295801489000063 ], [ -124.270652048999949, 49.29607127800007 ], [ -124.270239540999967, 49.296075813000058 ], [ -124.270246474999951, 49.296345601000041 ], [ -124.269833964999961, 49.296350136000065 ], [ -124.26984089599992, 49.29661992500013 ], [ -124.268190846999957, 49.296638047000023 ], [ -124.268197769999972, 49.296907835000084 ], [ -124.26778525499995, 49.296912363000089 ], [ -124.267826781999929, 49.298531093000086 ], [ -124.267017616999965, 49.298539969000053 ], [ -124.267023106999957, 49.298520507000035 ], [ -124.267423798999957, 49.298066193000118 ], [ -124.267483194999983, 49.297184593000033 ], [ -124.267600511999945, 49.296949600000019 ], [ -124.26869648899999, 49.296217500000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.975067126965861", "sL_AssetLoss": "1303.5", "sL_BldgLoss": "1271", "sL_StrLoss": "1130", "sL_NStrLoss": "141", "sL_ContLoss": "32.5", "geom_point": "0101000020E6100000CEEEDAEF5A125FC00FBC738B6DA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.28643783199999, 49.28429240600007 ], [ -124.287943758999944, 49.284275628000032 ], [ -124.287918116999947, 49.284382402000062 ], [ -124.287406775999926, 49.284775395000047 ], [ -124.28710548399999, 49.284859492000066 ], [ -124.286393306999955, 49.284912188000035 ], [ -124.28562666599997, 49.284826505000098 ], [ -124.285620031999898, 49.284571374000045 ], [ -124.286444850999914, 49.28456219200006 ], [ -124.28643783199999, 49.28429240600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7491667", "BldgCostT": "5166667", "sL_LossRatio": "0.922278797194735", "sL_AssetLoss": "18736.2", "sL_BldgLoss": "17280", "sL_StrLoss": "13790", "sL_NStrLoss": "3490", "sL_ContLoss": "1456.2", "geom_point": "0101000020E610000069A5F72A85125FC07440962E92A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.28733991699994, 49.287250874000016 ], [ -124.287332890999892, 49.286981087000044 ], [ -124.286095602999964, 49.286994867000061 ], [ -124.286088584999987, 49.286725079000064 ], [ -124.284851301999979, 49.286738846000091 ], [ -124.28484429199996, 49.28646905900009 ], [ -124.283194588999891, 49.286487394000062 ], [ -124.283179731999937, 49.285915016000018 ], [ -124.283693083999978, 49.285779501000071 ], [ -124.285335018999959, 49.28552739600012 ], [ -124.286180006999956, 49.285167108000046 ], [ -124.287162500999912, 49.285443411000074 ], [ -124.288272986999971, 49.285340908000109 ], [ -124.28893431299997, 49.284820994000064 ], [ -124.290176000999935, 49.284437890000113 ], [ -124.29052599, 49.284164488000037 ], [ -124.290482082, 49.283707573000065 ], [ -124.291785014999974, 49.283693012000114 ], [ -124.291792063999978, 49.283962798000104 ], [ -124.292204465999973, 49.283958187000032 ], [ -124.292211516999942, 49.284227973000114 ], [ -124.292623921999976, 49.284223359000116 ], [ -124.292630976999988, 49.284493146000059 ], [ -124.293043383999972, 49.284488531000122 ], [ -124.293050440999963, 49.284758318000122 ], [ -124.293462848999937, 49.284753701000092 ], [ -124.293469907, 49.285023487000103 ], [ -124.293882319999966, 49.285018869000076 ], [ -124.29388937899995, 49.285288656000063 ], [ -124.294301792999974, 49.285284036000114 ], [ -124.294322980999979, 49.286093394000048 ], [ -124.29308572, 49.286107248000079 ], [ -124.293092776999956, 49.286377035000029 ], [ -124.29268035299998, 49.286381651000099 ], [ -124.292687406999931, 49.286651436000078 ], [ -124.291037703, 49.286669882000105 ], [ -124.291030658999944, 49.286400096000079 ], [ -124.290205810999964, 49.286409310000074 ], [ -124.290198770999964, 49.286139524000106 ], [ -124.289373927999975, 49.286148732000072 ], [ -124.289402071999959, 49.287227879000127 ], [ -124.28733991699994, 49.287250874000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13231250", "BldgCostT": "9125000", "sL_LossRatio": "0.916246553212823", "sL_AssetLoss": "35903", "sL_BldgLoss": "32896", "sL_StrLoss": "25550", "sL_NStrLoss": "7346", "sL_ContLoss": "3007", "geom_point": "0101000020E61000009802EB9B68105FC0783A8013C4A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.253801553999935, 49.298715943000047 ], [ -124.253793901999956, 49.29841435500002 ], [ -124.254618961999981, 49.298405399000067 ], [ -124.254598414999933, 49.297596031000083 ], [ -124.255010936999923, 49.297591551000039 ], [ -124.254998783999966, 49.297112955000017 ], [ -124.252912323999951, 49.297079232000037 ], [ -124.253047899999956, 49.293480531000043 ], [ -124.255228893999913, 49.293515781000075 ], [ -124.25532008499999, 49.293517254000086 ], [ -124.255313815999926, 49.293270432000078 ], [ -124.256551275999968, 49.293256981000106 ], [ -124.256510125999938, 49.291638242000062 ], [ -124.256922599999911, 49.291633756000053 ], [ -124.256902019000023, 49.290824387000079 ], [ -124.258139414999974, 49.290810919000101 ], [ -124.258160015999948, 49.291620288000054 ], [ -124.25930573, 49.291607806000066 ], [ -124.259397433999979, 49.291606807000115 ], [ -124.259411182999955, 49.292146386000127 ], [ -124.259823658999977, 49.292141889000071 ], [ -124.259851163999912, 49.293221047000024 ], [ -124.259438678999956, 49.293225544000101 ], [ -124.25946617699999, 49.29430470100003 ], [ -124.259053681999958, 49.294309197000103 ], [ -124.259074299999924, 49.295118565000088 ], [ -124.258661799999956, 49.295123060000044 ], [ -124.25866866899996, 49.295392849000073 ], [ -124.258471777999929, 49.295394993000038 ], [ -124.258405192999959, 49.297167924000085 ], [ -124.2578884, 49.297159592000064 ], [ -124.257891727999919, 49.297290359000058 ], [ -124.257675036999927, 49.297292718000115 ], [ -124.257479206999946, 49.29729484900006 ], [ -124.257499803999934, 49.298104218000098 ], [ -124.2579123299999, 49.298099728000054 ], [ -124.257923313, 49.298531242000116 ], [ -124.257928006999947, 49.29871561100007 ], [ -124.257806554999931, 49.29871536600011 ], [ -124.25754614099999, 49.298714812000057 ], [ -124.256137326999948, 49.298711944000033 ], [ -124.256003729999975, 49.298711680000032 ], [ -124.255495826999919, 49.298700274000062 ], [ -124.255099570999931, 49.298707160000113 ], [ -124.25502576699995, 49.298708451000024 ], [ -124.254546123999944, 49.298716795000125 ], [ -124.254355154999985, 49.298720128000092 ], [ -124.254132890999955, 49.298741042000138 ], [ -124.253801553999935, 49.298715943000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109854333", "BldgCostT": "75288333", "sL_LossRatio": "0.891306123560323", "sL_AssetLoss": "301161.4", "sL_BldgLoss": "268427", "sL_StrLoss": "204516", "sL_NStrLoss": "63911", "sL_ContLoss": "32734.4", "geom_point": "0101000020E61000008145B03792125FC0AD6A0F9CAFA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.307098276999952, 49.314883084000073 ], [ -124.306112335999927, 49.314327282000136 ], [ -124.30533026399999, 49.314337399000102 ], [ -124.305334563999949, 49.313853793000121 ], [ -124.303613129999974, 49.31388714600012 ], [ -124.299855823999948, 49.313911472000044 ], [ -124.299852785000013, 49.31378545000004 ], [ -124.299838300999937, 49.313184639000077 ], [ -124.29991563399993, 49.312950015000069 ], [ -124.299940148999923, 49.311345353000064 ], [ -124.299935525999956, 49.308752369000132 ], [ -124.298332576999925, 49.308721528000099 ], [ -124.298383396999938, 49.307336994000082 ], [ -124.300006394999954, 49.307362540000099 ], [ -124.300023157999973, 49.306905434000058 ], [ -124.300646432999912, 49.30691523800008 ], [ -124.300629246999947, 49.306262440000076 ], [ -124.30021666, 49.306267083000044 ], [ -124.300202458999962, 49.305727515000072 ], [ -124.299789874999945, 49.305732156000083 ], [ -124.29976858400002, 49.304922802000085 ], [ -124.299356005999982, 49.304927444000064 ], [ -124.299334721999955, 49.304118089000035 ], [ -124.296859297, 49.304145899000027 ], [ -124.296852215999962, 49.303876113000115 ], [ -124.295201940999931, 49.303894624000073 ], [ -124.29520901299999, 49.304164410000027 ], [ -124.295189005999958, 49.30416463400006 ], [ -124.295174181999968, 49.30456779200005 ], [ -124.294393874999983, 49.304555477000051 ], [ -124.294398006999984, 49.304713226000104 ], [ -124.292747700999925, 49.304731703000101 ], [ -124.292742407999981, 49.304529395000031 ], [ -124.292003019, 49.30451771 ], [ -124.291926069999974, 49.306606366000025 ], [ -124.29131782599994, 49.306596750000075 ], [ -124.291309358999953, 49.306826481000051 ], [ -124.291302518999927, 49.306826372000032 ], [ -124.29130040699999, 49.306883696000043 ], [ -124.287753419999902, 49.306862422000094 ], [ -124.285784079999956, 49.306928387000077 ], [ -124.285778087999944, 49.306912309000055 ], [ -124.284290938999945, 49.306942001000081 ], [ -124.284131895999934, 49.307228043000073 ], [ -124.28407699899995, 49.306904801 ], [ -124.283670688999905, 49.306127207000017 ], [ -124.282363987999986, 49.304505007000017 ], [ -124.281647412999959, 49.303972405000081 ], [ -124.278422193999916, 49.302083899000046 ], [ -124.275949590999929, 49.301166689000105 ], [ -124.274928389999943, 49.300520105000089 ], [ -124.27456652099994, 49.300379918000033 ], [ -124.274570825999959, 49.300264231 ], [ -124.27425488199998, 49.300259185000066 ], [ -124.274235818999941, 49.300251800000076 ], [ -124.273983616999928, 49.300154094000071 ], [ -124.272751792999955, 49.299897698000116 ], [ -124.270923208999989, 49.299934704000059 ], [ -124.270014121000017, 49.299865782000055 ], [ -124.2701362399999, 49.296592463000131 ], [ -124.274569725999953, 49.296663365000043 ], [ -124.274568574999989, 49.296676271000067 ], [ -124.274570949999941, 49.296676258000076 ], [ -124.289903195999926, 49.29654396100004 ], [ -124.293894473999956, 49.296557742000104 ], [ -124.29430578799996, 49.296490609000038 ], [ -124.296066560999947, 49.296483028000132 ], [ -124.29676840599997, 49.296479986000122 ], [ -124.298347390999965, 49.296398608000082 ], [ -124.299059002999954, 49.296401700000075 ], [ -124.299867723999924, 49.296457705000066 ], [ -124.300574798999946, 49.296582205000099 ], [ -124.300674638999951, 49.296620714000056 ], [ -124.300745737999975, 49.296648165000065 ], [ -124.301216998999934, 49.296830006000057 ], [ -124.301619804999959, 49.297023682000038 ], [ -124.301371865999926, 49.301636371000022 ], [ -124.300094273999918, 49.301616277000029 ], [ -124.30009597199998, 49.301680745000063 ], [ -124.30133361899999, 49.301666813000061 ], [ -124.3013407239999, 49.301936597000122 ], [ -124.301352793999968, 49.301936460000043 ], [ -124.301348088999973, 49.301997085000046 ], [ -124.30134880199995, 49.303547549000051 ], [ -124.301469605999955, 49.303663769000053 ], [ -124.301490638999908, 49.304793533000087 ], [ -124.301492298999975, 49.30488210000005 ], [ -124.301495793999891, 49.305128837000055 ], [ -124.301496296999957, 49.305163042000039 ], [ -124.30150417599998, 49.305721260000034 ], [ -124.301509726999882, 49.30606240300007 ], [ -124.301522594999966, 49.306853877 ], [ -124.301541162999953, 49.307996049000081 ], [ -124.30154263899999, 49.308085982000094 ], [ -124.301543881999976, 49.308163209000078 ], [ -124.301541755999978, 49.308463606000011 ], [ -124.301539561999945, 49.308768977000057 ], [ -124.301552190999956, 49.308783427000101 ], [ -124.30168071199995, 49.308930518000054 ], [ -124.301872098000018, 49.308958725000089 ], [ -124.302344458999954, 49.308958212000093 ], [ -124.302558823999931, 49.308958005000122 ], [ -124.303816331999911, 49.308956632000125 ], [ -124.305516055999959, 49.308954776000078 ], [ -124.306968489999988, 49.308953186000053 ], [ -124.307042455999934, 49.308953187000036 ], [ -124.307085306999966, 49.308953223000067 ], [ -124.307075391999916, 49.309299629000066 ], [ -124.307029234999945, 49.309359215000036 ], [ -124.307087703999969, 49.310957960000053 ], [ -124.307093572, 49.312189494000052 ], [ -124.307094521999929, 49.312893962000018 ], [ -124.307095763999939, 49.313823370000115 ], [ -124.307096460999972, 49.314141352000078 ], [ -124.307097703999958, 49.314646222000071 ], [ -124.307098276999952, 49.314883084000073 ] ], [ [ -124.305722906999932, 49.311602280000059 ], [ -124.305719345999989, 49.311467589000067 ], [ -124.303096567999944, 49.311426438000112 ], [ -124.303079335999925, 49.311897187000092 ], [ -124.305318872999962, 49.311932329000044 ], [ -124.305310272999947, 49.311606942000125 ], [ -124.305722906999932, 49.311602280000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28234000", "BldgCostT": "19000000", "sL_LossRatio": "0.890529675968369", "sL_AssetLoss": "75810.5", "sL_BldgLoss": "67511.5", "sL_StrLoss": "49940.5", "sL_NStrLoss": "17571", "sL_ContLoss": "8299", "geom_point": "0101000020E6100000997F91239F115FC070F5F7ADB1A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.277686631999941, 49.280881269000105 ], [ -124.277679660999965, 49.280611481000065 ], [ -124.277267285, 49.280616041000073 ], [ -124.277274251999941, 49.280885829000091 ], [ -124.277686631999941, 49.280881269000105 ], [ -124.27769360399995, 49.281151057000073 ], [ -124.278105985999957, 49.281146497000115 ], [ -124.278112958999955, 49.28141628400008 ], [ -124.278525343999945, 49.281411721000062 ], [ -124.278532318999936, 49.281681510000027 ], [ -124.278944705999919, 49.281676945000086 ], [ -124.278951682999946, 49.281946733000076 ], [ -124.281013623999954, 49.281923889000026 ], [ -124.281027602999984, 49.282463464000053 ], [ -124.281439995999961, 49.28245889100009 ], [ -124.281460971999948, 49.283268254000106 ], [ -124.28104857199996, 49.283272827000062 ], [ -124.281055562999981, 49.283542615000052 ], [ -124.280643160999915, 49.283547187000046 ], [ -124.280650148999939, 49.283816974000096 ], [ -124.280237743999962, 49.283821546000098 ], [ -124.280244730999968, 49.284091332000067 ], [ -124.279419917999931, 49.284100470000041 ], [ -124.279426897999926, 49.284370257 ], [ -124.277364854999973, 49.284393074000029 ], [ -124.277357884, 49.28412328700005 ], [ -124.276533068999953, 49.284132402000054 ], [ -124.276526104999917, 49.28386261400005 ], [ -124.276113701, 49.283867170000065 ], [ -124.276106736999964, 49.283597383000028 ], [ -124.27486952799994, 49.283611041000057 ], [ -124.274876484999979, 49.283880829000083 ], [ -124.274464079999987, 49.283885379000054 ], [ -124.27447103399993, 49.284155167000058 ], [ -124.274058624999952, 49.28415971600004 ], [ -124.274065577999963, 49.284429504000101 ], [ -124.273653168999914, 49.284434051000055 ], [ -124.273667067999952, 49.284973628000039 ], [ -124.273254652999981, 49.284978173000056 ], [ -124.27326160099993, 49.285247962000021 ], [ -124.272024348999963, 49.285261591000051 ], [ -124.272017408, 49.284991803000025 ], [ -124.271642274999977, 49.284995932000115 ], [ -124.271581066999914, 49.283344243000087 ], [ -124.271577288999964, 49.283242634000025 ], [ -124.271559674999949, 49.283234265000068 ], [ -124.271556423999968, 49.283107822000019 ], [ -124.27136731599991, 49.283109903000124 ], [ -124.271296776999989, 49.283029318000047 ], [ -124.271267684999913, 49.282925324000068 ], [ -124.271333239999962, 49.282719337000081 ], [ -124.271359476999962, 49.282636897000039 ], [ -124.271349189999967, 49.28203064200008 ], [ -124.27235345299999, 49.2820195870001 ], [ -124.272346510999938, 49.281749799000103 ], [ -124.272758898999911, 49.281745256000093 ], [ -124.272751954999961, 49.281475467000064 ], [ -124.273164340999955, 49.281470923 ], [ -124.273157393999938, 49.28120113500011 ], [ -124.27356977699999, 49.281196589000096 ], [ -124.273562828999971, 49.280926801000135 ], [ -124.273975209999918, 49.280922255000107 ], [ -124.273947407999941, 49.279843101000047 ], [ -124.273535035999927, 49.279847648000036 ], [ -124.27351419199999, 49.279038282000037 ], [ -124.27392655599999, 49.279033735000084 ], [ -124.273898756999955, 49.277954580000035 ], [ -124.274311112999939, 49.27795003300011 ], [ -124.2742416, 49.275252146000106 ], [ -124.273416932999965, 49.275261239000024 ], [ -124.27340998599999, 49.274991450000122 ], [ -124.270523663999981, 49.275023228000116 ], [ -124.270516733999969, 49.274753440000048 ], [ -124.269692073999963, 49.274762505000112 ], [ -124.269681465999952, 49.274349259000061 ], [ -124.269671296999917, 49.273953138000131 ], [ -124.273794524999957, 49.273907750000077 ], [ -124.273801473999967, 49.274177538000082 ], [ -124.274626122999919, 49.27416844300005 ], [ -124.274591359999974, 49.272819498000047 ], [ -124.272529793999979, 49.272842225000026 ], [ -124.272522852999955, 49.272572436000104 ], [ -124.269224358999907, 49.272608722000086 ], [ -124.269216515999915, 49.272303104000088 ], [ -124.269203590999922, 49.271799354000088 ], [ -124.269615895999948, 49.271794824000047 ], [ -124.269608971, 49.271525034000057 ], [ -124.272495089999921, 49.271493280000072 ], [ -124.272502030999945, 49.271763069000016 ], [ -124.274563552999894, 49.271740344000108 ], [ -124.274542696999902, 49.270930977000042 ], [ -124.272893508999957, 49.270949160000065 ], [ -124.272892448999968, 49.270908038000037 ], [ -124.275574064999944, 49.270857696000107 ], [ -124.276606895999976, 49.271013296000014 ], [ -124.276611147000011, 49.271178003000095 ], [ -124.277023445999987, 49.271173447000152 ], [ -124.277044341999954, 49.271982813000072 ], [ -124.276219729000019, 49.271991925000094 ], [ -124.276289342999988, 49.274689812000084 ], [ -124.275877013999946, 49.274694366000062 ], [ -124.275918773999933, 49.276313097000113 ], [ -124.277155797999981, 49.27629942900009 ], [ -124.2771767, 49.277108794000078 ], [ -124.276764351999958, 49.277113352000136 ], [ -124.276771316999913, 49.277383140000033 ], [ -124.275946615999942, 49.277392251000066 ], [ -124.275967496999897, 49.27820161600004 ], [ -124.275555139999966, 49.278206170000082 ], [ -124.275576015999917, 49.279015535000099 ], [ -124.275163650999986, 49.279020087000049 ], [ -124.275177564999964, 49.279559665000122 ], [ -124.27641467199993, 49.279546003000078 ], [ -124.276407708999955, 49.279276215 ], [ -124.276820075000018, 49.279271658000035 ], [ -124.27681311, 49.279001869000048 ], [ -124.277225473999977, 49.278997311000118 ], [ -124.277218505999883, 49.278727523000065 ], [ -124.27763086799996, 49.278722964000032 ], [ -124.277623897999945, 49.278453176000035 ], [ -124.27803625699994, 49.278448616000034 ], [ -124.278029284999931, 49.278178827000026 ], [ -124.278441641999947, 49.27817426500016 ], [ -124.278434667999989, 49.277904476000067 ], [ -124.278847021999951, 49.277899913000105 ], [ -124.278840045999956, 49.277630124000098 ], [ -124.280077102999954, 49.277616424000023 ], [ -124.280098053999922, 49.278425788000114 ], [ -124.279685693999937, 49.278430357000033 ], [ -124.279692674999964, 49.278700144000091 ], [ -124.279280313999919, 49.278704711000046 ], [ -124.279287293999971, 49.2789744990001 ], [ -124.278874929999972, 49.27897906500008 ], [ -124.278881907999946, 49.279248854000116 ], [ -124.27846954099999, 49.279253417000106 ], [ -124.27847651499998, 49.279523205000054 ], [ -124.278064146999924, 49.279527767000026 ], [ -124.278071120000021, 49.279797556000091 ], [ -124.278895860999924, 49.279788429000078 ], [ -124.278902837999922, 49.280058217000096 ], [ -124.279315210999954, 49.280053652000035 ], [ -124.279336149999978, 49.280863015000051 ], [ -124.277686631999941, 49.280881269000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.97046723479283", "sL_AssetLoss": "1361.2", "sL_BldgLoss": "1321", "sL_StrLoss": "1160", "sL_NStrLoss": "161", "sL_ContLoss": "40.2", "geom_point": "0101000020E61000006EC6E54FC6115FC053D0CC1724A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.277093100999977, 49.273871333000066 ], [ -124.278330064999949, 49.273857652000075 ], [ -124.278364929999938, 49.275206594000075 ], [ -124.27712793299996, 49.275220275000024 ], [ -124.277093100999977, 49.273871333000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.856005308560053", "sL_AssetLoss": "3014", "sL_BldgLoss": "2580", "sL_StrLoss": "1560", "sL_NStrLoss": "1020", "sL_ContLoss": "434", "geom_point": "0101000020E6100000DA100CB560115FC00E50963170A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.271271152999986, 49.277443794000106 ], [ -124.271259597999943, 49.27676480600006 ], [ -124.270568343999955, 49.276762423000058 ], [ -124.27055831700001, 49.276372174000116 ], [ -124.271795347999941, 49.276358563 ], [ -124.271802285999911, 49.276628353000063 ], [ -124.272214629999908, 49.276623812000075 ], [ -124.272235451999961, 49.277433179000077 ], [ -124.271271152999986, 49.277443794000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.97537020247809", "sL_AssetLoss": "1323.6", "sL_BldgLoss": "1291", "sL_StrLoss": "1150", "sL_NStrLoss": "141", "sL_ContLoss": "32.6", "geom_point": "0101000020E6100000F361EE4165115FC0A636E5C8D2A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.27129411099996, 49.278792867000028 ], [ -124.272270153999969, 49.278782122000045 ], [ -124.272325685999988, 49.280940432000115 ], [ -124.271330814999914, 49.280951384000097 ], [ -124.271298832999946, 49.279070278000098 ], [ -124.27129411099996, 49.278792867000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075001", "BldgCostT": "3500001", "sL_LossRatio": "0.896904005481841", "sL_AssetLoss": "16053", "sL_BldgLoss": "14398", "sL_StrLoss": "10560", "sL_NStrLoss": "3838", "sL_ContLoss": "1655", "geom_point": "0101000020E6100000C6CD365834115FC0B6FA4564B3A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.26575722699999, 49.298283918000045 ], [ -124.265744532999975, 49.297788318000109 ], [ -124.265722676999985, 49.29693497500007 ], [ -124.26613519299994, 49.296930456000105 ], [ -124.266107546999962, 49.295851302000095 ], [ -124.266520052999937, 49.295846781000108 ], [ -124.266499312999912, 49.295037415000102 ], [ -124.266911810999943, 49.295032892000094 ], [ -124.266897980999929, 49.2944933160001 ], [ -124.26731047599999, 49.29448879100012 ], [ -124.267303557999924, 49.294219003000165 ], [ -124.267716051999969, 49.294214478000058 ], [ -124.26770913199999, 49.29394469000011 ], [ -124.268121622999956, 49.293940162000055 ], [ -124.268107777999916, 49.293400586000111 ], [ -124.268520262999971, 49.293396058000063 ], [ -124.268513338999952, 49.293126270000059 ], [ -124.26892582399995, 49.293121740000053 ], [ -124.268918898, 49.292851952000071 ], [ -124.26933137899999, 49.29284742100004 ], [ -124.269324449999914, 49.2925776330001 ], [ -124.269736927999929, 49.292573100000013 ], [ -124.269729997999946, 49.292303311000111 ], [ -124.270142473999954, 49.292298778000038 ], [ -124.270135542999952, 49.292028989000066 ], [ -124.27137296299999, 49.292015380000116 ], [ -124.271379902999939, 49.292285168000078 ], [ -124.271792377999986, 49.292280628000036 ], [ -124.271778495999982, 49.291741052000098 ], [ -124.27219096599994, 49.291736511000074 ], [ -124.27217707899996, 49.291196935000109 ], [ -124.272279471, 49.291195807000079 ], [ -124.272094623999934, 49.292474705000053 ], [ -124.27129730299994, 49.293579884000067 ], [ -124.27056771499997, 49.294092601000074 ], [ -124.270475608999945, 49.294273496000159 ], [ -124.270067300999955, 49.294969899000172 ], [ -124.269233707999916, 49.295753208000086 ], [ -124.268934510999884, 49.295881400000027 ], [ -124.268440501999947, 49.295914194000055 ], [ -124.268114886999967, 49.296026699000059 ], [ -124.266229921999965, 49.297072104000108 ], [ -124.266330078999957, 49.297268601000063 ], [ -124.266884806999926, 49.297460898000118 ], [ -124.267164906999966, 49.29765600200006 ], [ -124.267124677999973, 49.297918561000053 ], [ -124.26641405699999, 49.297840460000032 ], [ -124.266341110999946, 49.297830576000152 ], [ -124.265884052999937, 49.298282530000051 ], [ -124.26575722699999, 49.298283918000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.901042273403184", "sL_AssetLoss": "14593.1", "sL_BldgLoss": "13149", "sL_StrLoss": "9510", "sL_NStrLoss": "3639", "sL_ContLoss": "1444.1", "geom_point": "0101000020E61000008B272FF0E40F5FC017AB59A918A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.245507313999937, 49.298658502000059 ], [ -124.245588621999971, 49.296509555000071 ], [ -124.251081409999969, 49.296598618000068 ], [ -124.251011787, 49.298444512000103 ], [ -124.252143781999962, 49.298432249 ], [ -124.252149642999953, 49.29866353000012 ], [ -124.250060508999951, 49.298661969000101 ], [ -124.247903819999962, 49.298660363000117 ], [ -124.245507313999937, 49.298658502000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899584", "BldgCostT": "4758334", "sL_LossRatio": "0.937973126419379", "sL_AssetLoss": "16908.8", "sL_BldgLoss": "15860", "sL_StrLoss": "12880", "sL_NStrLoss": "2980", "sL_ContLoss": "1048.8", "geom_point": "0101000020E6100000FDF99DC308125FC0C12322E3EEA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.278886475999983, 49.274503568000036 ], [ -124.27900255899999, 49.271374170000051 ], [ -124.280021694999931, 49.271527671000115 ], [ -124.28074432199999, 49.271469649000011 ], [ -124.280744046999942, 49.271477497000035 ], [ -124.284164864, 49.27098659900004 ], [ -124.284509792999984, 49.270992080000092 ], [ -124.28437672199999, 49.274590942000053 ], [ -124.278886475999983, 49.274503568000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.863166268894193", "sL_AssetLoss": "2514", "sL_BldgLoss": "2170", "sL_StrLoss": "1520", "sL_NStrLoss": "650", "sL_ContLoss": "344", "geom_point": "0101000020E6100000091F845F6E115FC02199695611A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.272114593999959, 49.288768841000056 ], [ -124.273574969999984, 49.288752751000089 ], [ -124.273188921999946, 49.289052303000048 ], [ -124.272723078999917, 49.289641996000086 ], [ -124.272396804999985, 49.29038398700007 ], [ -124.272357604999939, 49.290655218000026 ], [ -124.271750731999958, 49.290661899000042 ], [ -124.271716027999972, 49.289312957000121 ], [ -124.272128477999942, 49.289308417 ], [ -124.272114593999959, 49.288768841000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30748745", "BldgCostT": "18109077", "sL_LossRatio": "0.65678578641105", "sL_AssetLoss": "106461.5", "sL_BldgLoss": "69922.4", "sL_StrLoss": "32410.4", "sL_NStrLoss": "37512", "sL_ContLoss": "36539.1", "geom_point": "0101000020E61000004F0F7EA0E4115FC04F90BF51FEA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.28192499799998, 49.309005856000084 ], [ -124.281958068999955, 49.308113489000071 ], [ -124.281861749999948, 49.308111957000037 ], [ -124.281914757999957, 49.306681616000041 ], [ -124.280840797999971, 49.306664535000039 ], [ -124.280859636999963, 49.306156515000062 ], [ -124.280621720999989, 49.306152729000068 ], [ -124.280632365999978, 49.30586570400007 ], [ -124.280136820999942, 49.305857818000064 ], [ -124.280140471999943, 49.30575940900011 ], [ -124.279392399999935, 49.305747499000084 ], [ -124.279413876999939, 49.30516877700007 ], [ -124.278761311999958, 49.305158384000066 ], [ -124.278770414999897, 49.304913205000119 ], [ -124.278153103999941, 49.304903369000044 ], [ -124.278159419999938, 49.304733290000051 ], [ -124.277649094999958, 49.30472515700005 ], [ -124.277664710999929, 49.304304824000084 ], [ -124.27720190399998, 49.304297446000113 ], [ -124.277213428, 49.30398732200014 ], [ -124.276637100999935, 49.303978131000036 ], [ -124.276649219999925, 49.30365211600018 ], [ -124.27606010199996, 49.303642718000027 ], [ -124.276090109999927, 49.302835643000037 ], [ -124.274476091999958, 49.302809878000112 ], [ -124.27455590799994, 49.300665120000147 ], [ -124.276161617999961, 49.301443 ], [ -124.277887207999953, 49.302143683000097 ], [ -124.280438279999927, 49.303473900000114 ], [ -124.281416997999898, 49.30411049900006 ], [ -124.282515894999975, 49.305051894000044 ], [ -124.28335979699996, 49.306300903000079 ], [ -124.283652599999954, 49.30699030400006 ], [ -124.283789785999943, 49.307520101000044 ], [ -124.283787015999962, 49.308447201000021 ], [ -124.283498236999947, 49.309030857000081 ], [ -124.28192499799998, 49.309005856000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168619838", "BldgCostT": "101022244", "sL_LossRatio": "0.657277844193138", "sL_AssetLoss": "606703.7", "sL_BldgLoss": "398772.9", "sL_StrLoss": "192164.9", "sL_NStrLoss": "206608", "sL_ContLoss": "207930.8", "geom_point": "0101000020E61000006E14694DF9105FC07A3FD95A00A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.272793835999977, 49.312801649000058 ], [ -124.271952944999938, 49.312353485000067 ], [ -124.271184125999966, 49.311857639000053 ], [ -124.269053505999963, 49.310483509000029 ], [ -124.267986899999954, 49.309795537000099 ], [ -124.26770110399994, 49.309609104000117 ], [ -124.267626015999909, 49.309560134000073 ], [ -124.267151937999969, 49.309250820000102 ], [ -124.265055783999983, 49.307883157000028 ], [ -124.26476702399998, 49.307694744000059 ], [ -124.264313449999946, 49.30739877400007 ], [ -124.262491514999979, 49.306213389000071 ], [ -124.261422286999931, 49.305517703000099 ], [ -124.261140782999959, 49.305333890000107 ], [ -124.259116983999931, 49.304012456000052 ], [ -124.257891134999952, 49.303211948000147 ], [ -124.25782352, 49.303167794000103 ], [ -124.257362009999952, 49.302866394000027 ], [ -124.256305341999905, 49.302176358000054 ], [ -124.25625743699996, 49.302527659000049 ], [ -124.255995490999908, 49.302711260000137 ], [ -124.255791656999961, 49.30285413900004 ], [ -124.255411100999964, 49.30321707500012 ], [ -124.254595130999988, 49.303974480000072 ], [ -124.254474282, 49.304008526000096 ], [ -124.254427134999972, 49.304093283000022 ], [ -124.25421585, 49.304010644000122 ], [ -124.253964518999936, 49.303678011000066 ], [ -124.253115551999926, 49.303305106000046 ], [ -124.252496336999968, 49.302889094000136 ], [ -124.252099941999958, 49.302723360000115 ], [ -124.251586121999964, 49.302609713000052 ], [ -124.25155440199994, 49.30260579800008 ], [ -124.251089606999969, 49.302548570000049 ], [ -124.250747696999923, 49.302431400000039 ], [ -124.249938957999987, 49.301904273000034 ], [ -124.249719231999947, 49.301827805000102 ], [ -124.249490319999907, 49.301812394000109 ], [ -124.24944550799998, 49.3018214760001 ], [ -124.249223078999975, 49.301866586000145 ], [ -124.248894233999977, 49.302022380000039 ], [ -124.24798743499997, 49.302017583000065 ], [ -124.24780189799999, 49.301181886000073 ], [ -124.247687458999962, 49.300683099000018 ], [ -124.247729903000021, 49.300469551000056 ], [ -124.247882883999935, 49.300129941000115 ], [ -124.248024956999956, 49.300006211000053 ], [ -124.248457121999976, 49.299770168000066 ], [ -124.248212596999949, 49.299514125 ], [ -124.248085112999931, 49.299323017000091 ], [ -124.247955494999985, 49.298935635000092 ], [ -124.249345197999943, 49.298814112000109 ], [ -124.251008903999889, 49.298713244000091 ], [ -124.252150415999921, 49.298694052000073 ], [ -124.252150617999945, 49.298702039000069 ], [ -124.252563150999933, 49.298697568000094 ], [ -124.252569987999962, 49.298967358000077 ], [ -124.252982523, 49.298962885000016 ], [ -124.252989363999944, 49.299232675000098 ], [ -124.253401900999989, 49.299228200000059 ], [ -124.253408743999927, 49.299497990000127 ], [ -124.25382128399994, 49.299493514000119 ], [ -124.253807455999919, 49.298948531000072 ], [ -124.253846348999929, 49.298970675000056 ], [ -124.253882681, 49.299002154000085 ], [ -124.254067789999965, 49.298804283000045 ], [ -124.254086072999939, 49.298782437000099 ], [ -124.254132890999955, 49.298741042000138 ], [ -124.254355154999985, 49.298720128000092 ], [ -124.254546123999944, 49.298716795000125 ], [ -124.25502576699995, 49.298708451000024 ], [ -124.255099570999931, 49.298707160000113 ], [ -124.255495826999919, 49.298700274000062 ], [ -124.256003729999975, 49.298711680000032 ], [ -124.256137326999948, 49.298711944000033 ], [ -124.25754614099999, 49.298714812000057 ], [ -124.257806554999931, 49.29871536600011 ], [ -124.257928006999947, 49.29871561100007 ], [ -124.257932930999957, 49.298909095000049 ], [ -124.2578377899999, 49.298910132000074 ], [ -124.257520397999926, 49.298913586000076 ], [ -124.257540993999982, 49.299722954000167 ], [ -124.257128453999954, 49.299727443000108 ], [ -124.257146008999925, 49.300417502000116 ], [ -124.257149043999945, 49.300536811000057 ], [ -124.257285462999974, 49.300535327000091 ], [ -124.257561591999931, 49.300532321000098 ], [ -124.257567737999935, 49.30077382200006 ], [ -124.257568456999934, 49.300802111000039 ], [ -124.257600804999953, 49.30080175900013 ], [ -124.257981005999937, 49.300797620000047 ], [ -124.257984391999955, 49.300930591000103 ], [ -124.258019010999973, 49.300931149000085 ], [ -124.258013901999973, 49.301067127000046 ], [ -124.258400426999913, 49.301062917000102 ], [ -124.258406785999981, 49.301312613000064 ], [ -124.258407296999934, 49.301332707000057 ], [ -124.258444272999924, 49.301332304000063 ], [ -124.258819851999959, 49.301328213000055 ], [ -124.25882505099996, 49.301532309000031 ], [ -124.25882672399996, 49.30159800200007 ], [ -124.25894761099994, 49.301596685000085 ], [ -124.259239279999974, 49.301593506000117 ], [ -124.259242428999968, 49.301717058000101 ], [ -124.259243591999962, 49.301762714000091 ], [ -124.259368183999953, 49.301764721000019 ], [ -124.259727993999917, 49.301770517000158 ], [ -124.259794655999968, 49.29999441600004 ], [ -124.265287883000013, 49.300082757 ], [ -124.265193404999977, 49.302607922000135 ], [ -124.267105491, 49.302586968000085 ], [ -124.267098571999966, 49.30231717900012 ], [ -124.268423811, 49.302302640000043 ], [ -124.268748812999888, 49.302299070000068 ], [ -124.268746331999949, 49.302202485000052 ], [ -124.268741885999958, 49.302029283000046 ], [ -124.269320692999955, 49.30202292600007 ], [ -124.269567002, 49.302020219000035 ], [ -124.269564811999928, 49.301934968000083 ], [ -124.269560068999937, 49.301750431000059 ], [ -124.270093234999976, 49.301744573000121 ], [ -124.270385179999963, 49.301741362000016 ], [ -124.270382581999968, 49.301640316 ], [ -124.27037824199995, 49.301471574000104 ], [ -124.270865766, 49.301466213000019 ], [ -124.271203347999915, 49.301462500000149 ], [ -124.271200342, 49.301345656000137 ], [ -124.271196407999923, 49.301192712000038 ], [ -124.271608957999916, 49.301188173000085 ], [ -124.271595072999943, 49.300648597000077 ], [ -124.272420164, 49.300639513000093 ], [ -124.272413217999897, 49.300369726000078 ], [ -124.27391208899999, 49.300353210000047 ], [ -124.273930137999969, 49.300361955000078 ], [ -124.274065345999972, 49.300427459000055 ], [ -124.274084258999963, 49.301160904000021 ], [ -124.273259157999917, 49.30117 ], [ -124.273266110999927, 49.301439787000064 ], [ -124.272441005999966, 49.30144887700007 ], [ -124.272461847999963, 49.3022582400001 ], [ -124.272874407999893, 49.30225369500004 ], [ -124.272881357999921, 49.302523484000055 ], [ -124.273293918999954, 49.302518938000084 ], [ -124.273314776999925, 49.303328300000082 ], [ -124.272902207999934, 49.303332846000053 ], [ -124.27296476599993, 49.305760934000048 ], [ -124.273377355, 49.305756388000127 ], [ -124.273391261999933, 49.306295962000078 ], [ -124.274216445999954, 49.306286866000121 ], [ -124.274209486999894, 49.306017078000117 ], [ -124.277922795, 49.305976070000078 ], [ -124.277929773999944, 49.306245857000057 ], [ -124.278754955999915, 49.306236728000016 ], [ -124.278747972999938, 49.305966940000069 ], [ -124.279985740999933, 49.305953236000057 ], [ -124.279992730999979, 49.306223023 ], [ -124.280405320999975, 49.306218451000035 ], [ -124.280433288999944, 49.307297597000016 ], [ -124.279608089999954, 49.307306739000104 ], [ -124.279615077999935, 49.307576525000115 ], [ -124.278789873999983, 49.307585661000097 ], [ -124.278796856999975, 49.30785544800014 ], [ -124.277971646999958, 49.307864577000032 ], [ -124.27797862499996, 49.308134365000043 ], [ -124.277566017999959, 49.308138927000122 ], [ -124.277572995999932, 49.308408714000038 ], [ -124.275922557999962, 49.308426951000079 ], [ -124.275936493999922, 49.308966525000152 ], [ -124.276349107999948, 49.308961967000052 ], [ -124.276360785999927, 49.309413955000139 ], [ -124.275536298999938, 49.309395993000059 ], [ -124.275525413999944, 49.310319457000055 ], [ -124.275522189999933, 49.310590282000128 ], [ -124.275153047999964, 49.310594356000081 ], [ -124.275146084999918, 49.310324569000102 ], [ -124.274733458999961, 49.310329122000034 ], [ -124.274719533999985, 49.309789547000044 ], [ -124.274306912999961, 49.309794099000015 ], [ -124.274296737999919, 49.30939964700007 ], [ -124.274279074999981, 49.308714951000034 ], [ -124.273453848999964, 49.308724048000094 ], [ -124.273460804999942, 49.308993835000138 ], [ -124.273048187999962, 49.308998382000027 ], [ -124.273055140999972, 49.309268169000113 ], [ -124.272642524999981, 49.309272714000052 ], [ -124.272642776999959, 49.309282504000031 ], [ -124.274122807999959, 49.309306152 ], [ -124.27411930699999, 49.309400169000099 ], [ -124.274004038999948, 49.31249607700002 ], [ -124.274376515999961, 49.31249196900005 ], [ -124.274383474999979, 49.312761756000064 ], [ -124.274796121999913, 49.312757205000011 ], [ -124.274747383, 49.310868696000043 ], [ -124.275586284999946, 49.310859437000026 ], [ -124.275665861999968, 49.310983341000082 ], [ -124.27573832799996, 49.311126459 ], [ -124.275691511999938, 49.311343825000066 ], [ -124.275669979, 49.311390347000064 ], [ -124.275548687999944, 49.311516770000061 ], [ -124.275575910999962, 49.312396561000106 ], [ -124.275580686999916, 49.31255085700009 ], [ -124.275620997999937, 49.313853270000067 ], [ -124.275627713999938, 49.314070320000035 ], [ -124.27517694099997, 49.313883099000101 ], [ -124.274959832999983, 49.313794581000074 ], [ -124.274652972999945, 49.313669491000027 ], [ -124.27299070499997, 49.312906576000096 ], [ -124.272793835999977, 49.312801649000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145332842", "BldgCostT": "82588762", "sL_LossRatio": "0.660868560677949", "sL_AssetLoss": "363567", "sL_BldgLoss": "240270", "sL_StrLoss": "118778", "sL_NStrLoss": "121492", "sL_ContLoss": "123297", "geom_point": "0101000020E610000048A92247C0125FC098EE220A35A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.293258870999978, 49.317964279000094 ], [ -124.293209393, 49.317954602000086 ], [ -124.29322277599999, 49.319083696000106 ], [ -124.292039299999914, 49.3190919460001 ], [ -124.291846506999931, 49.319093273000078 ], [ -124.289140804999974, 49.319112111000024 ], [ -124.289105978999928, 49.319112344000104 ], [ -124.288948205999958, 49.319113450000046 ], [ -124.288320797999944, 49.319117797000089 ], [ -124.288246648999959, 49.319070517000057 ], [ -124.288152890999982, 49.31901068900001 ], [ -124.288009006, 49.318789810000098 ], [ -124.287999406999916, 49.318775107000064 ], [ -124.287893394999926, 49.318481807000076 ], [ -124.287889098999983, 49.318331975000035 ], [ -124.287865398999926, 49.317504621000097 ], [ -124.287839337999969, 49.316595063000079 ], [ -124.28783705499994, 49.316396081000136 ], [ -124.28748767899999, 49.316365339000114 ], [ -124.287356093999932, 49.316318248000108 ], [ -124.287151089999966, 49.316299841000038 ], [ -124.285551141999974, 49.316156311000022 ], [ -124.285371871, 49.31614020500006 ], [ -124.285487417999946, 49.315659397000054 ], [ -124.285377906999912, 49.315166602000048 ], [ -124.285100017999952, 49.314775989000111 ], [ -124.286607423999939, 49.314663473000095 ], [ -124.286712359999967, 49.314398586000088 ], [ -124.287810435999944, 49.314363631000084 ], [ -124.287809067999945, 49.314060504000047 ], [ -124.287804267999945, 49.313017042000062 ], [ -124.287803337999961, 49.312810054000082 ], [ -124.2878027, 49.31267509500006 ], [ -124.287795208999938, 49.312135292000114 ], [ -124.287793455, 49.31200925700012 ], [ -124.287773034999972, 49.310534259000107 ], [ -124.28776682699997, 49.310084514000053 ], [ -124.287757588999966, 49.30941900300008 ], [ -124.287746907999932, 49.308645322000118 ], [ -124.287744598999936, 49.308479211000076 ], [ -124.284950092999964, 49.308490713000054 ], [ -124.285009148999976, 49.309348883000077 ], [ -124.28501191799991, 49.309390655000051 ], [ -124.285011975, 49.309391459000025 ], [ -124.284374827999955, 49.309423701000085 ], [ -124.284388842999988, 49.309045001000072 ], [ -124.284065395999946, 49.309039865000031 ], [ -124.284177800999927, 49.308712102000051 ], [ -124.284205189999966, 49.307659612000087 ], [ -124.284131895999934, 49.307228043000073 ], [ -124.284290938999945, 49.306942001000081 ], [ -124.285778087999944, 49.306912309000055 ], [ -124.285784079999956, 49.306928387000077 ], [ -124.287753419999902, 49.306862422000094 ], [ -124.29130040699999, 49.306883696000043 ], [ -124.291260821999927, 49.307957678000065 ], [ -124.29118592, 49.307956495000049 ], [ -124.291165849999913, 49.308500979000073 ], [ -124.290950693999903, 49.308497577000011 ], [ -124.290900717999989, 49.309853183000037 ], [ -124.289956280999974, 49.309838242000055 ], [ -124.289857414999972, 49.312518209000046 ], [ -124.290024100999929, 49.312520847000059 ], [ -124.289993229999979, 49.313357692000039 ], [ -124.290861106999941, 49.313371421000085 ], [ -124.290861346999961, 49.313364924000062 ], [ -124.295865106999898, 49.313443942000049 ], [ -124.295848026999934, 49.312792901000059 ], [ -124.297549267999983, 49.312773811000106 ], [ -124.297671803999933, 49.309437182000103 ], [ -124.298305940999924, 49.309447170000062 ], [ -124.298332576999925, 49.308721528000099 ], [ -124.299935525999956, 49.308752369000132 ], [ -124.299940148999923, 49.311345353000064 ], [ -124.29991563399993, 49.312950015000069 ], [ -124.299838300999937, 49.313184639000077 ], [ -124.299852785000013, 49.31378545000004 ], [ -124.299855823999948, 49.313911472000044 ], [ -124.299861186, 49.314134692000046 ], [ -124.299862313999952, 49.314479489000085 ], [ -124.29986338399999, 49.315011504000047 ], [ -124.299863173999981, 49.315407011000055 ], [ -124.299863014999971, 49.315696553000116 ], [ -124.300426514999984, 49.315700008000086 ], [ -124.300430154999987, 49.316095582000166 ], [ -124.300433139999939, 49.316417043000108 ], [ -124.300434845999973, 49.316599313000033 ], [ -124.300436186999946, 49.316747058000054 ], [ -124.300454573999957, 49.317201667000049 ], [ -124.300514051000022, 49.318672868000107 ], [ -124.300518897999936, 49.318803478000092 ], [ -124.300507585999966, 49.319786276000073 ], [ -124.299894968999936, 49.319696491000059 ], [ -124.299261590999919, 49.319537111000095 ], [ -124.297532192999967, 49.318827623000061 ], [ -124.297085412999934, 49.318715222000037 ], [ -124.296384923999966, 49.318576416000042 ], [ -124.29630068799996, 49.318559731000057 ], [ -124.29615498699999, 49.318531213000071 ], [ -124.29612247599999, 49.318524825000083 ], [ -124.293258870999978, 49.317964279000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113733167", "BldgCostT": "75286667", "sL_LossRatio": "0.878794226754307", "sL_AssetLoss": "311242.6", "sL_BldgLoss": "273518.2", "sL_StrLoss": "201887.2", "sL_NStrLoss": "71631", "sL_ContLoss": "37724.4", "geom_point": "0101000020E610000082A4B31F6B135FC0F70B7E347FA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.300430154999987, 49.316095582000166 ], [ -124.300426514999984, 49.315700008000086 ], [ -124.299863014999971, 49.315696553000116 ], [ -124.299863173999981, 49.315407011000055 ], [ -124.29986338399999, 49.315011504000047 ], [ -124.299862313999952, 49.314479489000085 ], [ -124.299861186, 49.314134692000046 ], [ -124.299855823999948, 49.313911472000044 ], [ -124.303613129999974, 49.31388714600012 ], [ -124.305334563999949, 49.313853793000121 ], [ -124.30533026399999, 49.314337399000102 ], [ -124.306112335999927, 49.314327282000136 ], [ -124.307098276999952, 49.314883084000073 ], [ -124.307097703999958, 49.314646222000071 ], [ -124.307096460999972, 49.314141352000078 ], [ -124.307095763999939, 49.313823370000115 ], [ -124.309416501000015, 49.313809311000057 ], [ -124.309430588999959, 49.314553111000087 ], [ -124.309450391999945, 49.315440094000046 ], [ -124.308417582999979, 49.315505798000039 ], [ -124.307099989999969, 49.315589608000046 ], [ -124.30563529599999, 49.315610808000031 ], [ -124.304243317999962, 49.315634835000026 ], [ -124.30426823199997, 49.317941409000092 ], [ -124.304270684999921, 49.318166264000062 ], [ -124.304274564999972, 49.318525989000136 ], [ -124.304279241999964, 49.318957777000101 ], [ -124.30428561399998, 49.319550363000097 ], [ -124.304287697999939, 49.319681840000101 ], [ -124.304295700999944, 49.320477715000152 ], [ -124.303969180999971, 49.320401083000036 ], [ -124.302589205999965, 49.320077299000069 ], [ -124.30233892699998, 49.320042815000079 ], [ -124.301262478999945, 49.319893594000028 ], [ -124.300507585999966, 49.319786276000073 ], [ -124.300518897999936, 49.318803478000092 ], [ -124.300514051000022, 49.318672868000107 ], [ -124.300454573999957, 49.317201667000049 ], [ -124.300436186999946, 49.316747058000054 ], [ -124.300434845999973, 49.316599313000033 ], [ -124.300433139999939, 49.316417043000108 ], [ -124.300430154999987, 49.316095582000166 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227643667", "BldgCostT": "138576667", "sL_LossRatio": "0.88807201525374", "sL_AssetLoss": "381808", "sL_BldgLoss": "339073", "sL_StrLoss": "246228", "sL_NStrLoss": "92845", "sL_ContLoss": "42735", "geom_point": "0101000020E61000002AA58017EA105FC01F605A920BA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.270482108999929, 49.326783101000068 ], [ -124.270507512999956, 49.326102448000029 ], [ -124.268521853999985, 49.326070662000063 ], [ -124.26853273099999, 49.325779575000048 ], [ -124.268526380999916, 49.325779644000107 ], [ -124.268519448999953, 49.325509857000064 ], [ -124.267693942999927, 49.325518917000053 ], [ -124.267687013999975, 49.325249129000042 ], [ -124.267274262999976, 49.325253657000104 ], [ -124.267267874999973, 49.325004817000035 ], [ -124.266100727999941, 49.324986102000061 ], [ -124.266235361999946, 49.321387536000039 ], [ -124.266349411999911, 49.321389365000059 ], [ -124.266344961999934, 49.321215896000126 ], [ -124.266757681999962, 49.321211373000068 ], [ -124.266743837999982, 49.320671798000049 ], [ -124.267981978999927, 49.320658219000052 ], [ -124.268001435999921, 49.321415848000072 ], [ -124.269918304, 49.321446546000132 ], [ -124.270891802999969, 49.32143584400005 ], [ -124.270892478999926, 49.321462134000129 ], [ -124.271731136999961, 49.321475547000077 ], [ -124.271722894999968, 49.32169656300001 ], [ -124.27172419, 49.321696549000059 ], [ -124.271738085999971, 49.322236123000089 ], [ -124.272563539000018, 49.322227035000054 ], [ -124.272570490999925, 49.322496823000037 ], [ -124.272983220999947, 49.322492277000052 ], [ -124.272984483999934, 49.322541336000128 ], [ -124.274152211999962, 49.322559986000059 ], [ -124.274113646, 49.323595555000047 ], [ -124.27507633399992, 49.323610921000082 ], [ -124.274998093, 49.320581019000016 ], [ -124.275410803999975, 49.320576465000094 ], [ -124.275352789999886, 49.318330231000068 ], [ -124.272685090999985, 49.3182876300001 ], [ -124.272671702, 49.318646910000034 ], [ -124.26717626, 49.318558947000028 ], [ -124.267309366999882, 49.314998475000067 ], [ -124.26594500899995, 49.315013428000029 ], [ -124.265912072999939, 49.315893786000032 ], [ -124.263453529999964, 49.315854311000088 ], [ -124.263419402999929, 49.315723487000071 ], [ -124.262965183999967, 49.314685306000037 ], [ -124.262926239999928, 49.314526478000111 ], [ -124.262919084, 49.31449729800002 ], [ -124.263038197999975, 49.314270800000024 ], [ -124.262889289999976, 49.313894811000097 ], [ -124.262448319999947, 49.313305200000144 ], [ -124.261581410999952, 49.311641690000037 ], [ -124.260716502999955, 49.310715996000027 ], [ -124.259568013999939, 49.309909902000101 ], [ -124.257867112999961, 49.309011204000093 ], [ -124.257466196999957, 49.308384614000069 ], [ -124.256572899999966, 49.307891803000075 ], [ -124.256233508999969, 49.307552804000068 ], [ -124.255563186999922, 49.307119902000139 ], [ -124.254882701999961, 49.306857795999981 ], [ -124.253162089999989, 49.305715595000109 ], [ -124.252679424999897, 49.305503597000076 ], [ -124.252681712999959, 49.305442879000026 ], [ -124.252544571999977, 49.305444366000081 ], [ -124.252318975999984, 49.305345277000121 ], [ -124.252316513999986, 49.305248153 ], [ -124.252171458999939, 49.305178547000061 ], [ -124.252141065999965, 49.305178876000127 ], [ -124.252137792999918, 49.305265695000067 ], [ -124.251741907999985, 49.305091807000061 ], [ -124.250109820999938, 49.304704398000112 ], [ -124.248431791999934, 49.304539326000075 ], [ -124.248547902999988, 49.304023403000052 ], [ -124.248553621999974, 49.303217798000098 ], [ -124.248521250999914, 49.303191380000044 ], [ -124.248409684999956, 49.303100200000067 ], [ -124.248137392999965, 49.303032811000016 ], [ -124.245601048000012, 49.303188022000107 ], [ -124.24488579299999, 49.303231805000074 ], [ -124.244086865999961, 49.303280669000102 ], [ -124.244084424999969, 49.302267534000073 ], [ -124.244400262999989, 49.302272666000093 ], [ -124.244394006, 49.302024204000091 ], [ -124.244806567999916, 49.302019759000096 ], [ -124.244799771999936, 49.301749969000092 ], [ -124.245624888999927, 49.301741077000024 ], [ -124.245618087999901, 49.30147128600008 ], [ -124.246030644999934, 49.301466837000127 ], [ -124.245996609999978, 49.30011706600002 ], [ -124.245452456999914, 49.300108231000053 ], [ -124.245485161999937, 49.299243938000117 ], [ -124.245507313999937, 49.298658502000059 ], [ -124.247903819999962, 49.298660363000117 ], [ -124.250060508999951, 49.298661969000101 ], [ -124.252149642999953, 49.29866353000012 ], [ -124.252150415999921, 49.298694052000073 ], [ -124.251008903999889, 49.298713244000091 ], [ -124.249345197999943, 49.298814112000109 ], [ -124.247955494999985, 49.298935635000092 ], [ -124.248085112999931, 49.299323017000091 ], [ -124.248212596999949, 49.299514125 ], [ -124.248457121999976, 49.299770168000066 ], [ -124.248024956999956, 49.300006211000053 ], [ -124.247882883999935, 49.300129941000115 ], [ -124.247729903000021, 49.300469551000056 ], [ -124.247687458999962, 49.300683099000018 ], [ -124.24780189799999, 49.301181886000073 ], [ -124.24798743499997, 49.302017583000065 ], [ -124.248894233999977, 49.302022380000039 ], [ -124.249223078999975, 49.301866586000145 ], [ -124.24944550799998, 49.3018214760001 ], [ -124.249490319999907, 49.301812394000109 ], [ -124.249719231999947, 49.301827805000102 ], [ -124.249938957999987, 49.301904273000034 ], [ -124.250747696999923, 49.302431400000039 ], [ -124.251089606999969, 49.302548570000049 ], [ -124.25155440199994, 49.30260579800008 ], [ -124.251586121999964, 49.302609713000052 ], [ -124.252099941999958, 49.302723360000115 ], [ -124.252496336999968, 49.302889094000136 ], [ -124.253115551999926, 49.303305106000046 ], [ -124.253964518999936, 49.303678011000066 ], [ -124.25421585, 49.304010644000122 ], [ -124.254427134999972, 49.304093283000022 ], [ -124.254474282, 49.304008526000096 ], [ -124.254595130999988, 49.303974480000072 ], [ -124.255411100999964, 49.30321707500012 ], [ -124.255791656999961, 49.30285413900004 ], [ -124.255995490999908, 49.302711260000137 ], [ -124.25625743699996, 49.302527659000049 ], [ -124.256305341999905, 49.302176358000054 ], [ -124.257362009999952, 49.302866394000027 ], [ -124.25782352, 49.303167794000103 ], [ -124.257891134999952, 49.303211948000147 ], [ -124.259116983999931, 49.304012456000052 ], [ -124.261140782999959, 49.305333890000107 ], [ -124.261422286999931, 49.305517703000099 ], [ -124.262491514999979, 49.306213389000071 ], [ -124.264313449999946, 49.30739877400007 ], [ -124.26476702399998, 49.307694744000059 ], [ -124.265055783999983, 49.307883157000028 ], [ -124.267151937999969, 49.309250820000102 ], [ -124.267626015999909, 49.309560134000073 ], [ -124.26770110399994, 49.309609104000117 ], [ -124.267986899999954, 49.309795537000099 ], [ -124.269053505999963, 49.310483509000029 ], [ -124.271184125999966, 49.311857639000053 ], [ -124.271952944999938, 49.312353485000067 ], [ -124.272793835999977, 49.312801649000058 ], [ -124.27299070499997, 49.312906576000096 ], [ -124.274652972999945, 49.313669491000027 ], [ -124.274959832999983, 49.313794581000074 ], [ -124.27517694099997, 49.313883099000101 ], [ -124.275627713999938, 49.314070320000035 ], [ -124.275825135999966, 49.314379524000067 ], [ -124.275307820999956, 49.32235961300006 ], [ -124.275087613999972, 49.327211804000058 ], [ -124.271522233, 49.32715485700006 ], [ -124.271179585999931, 49.327008895000112 ], [ -124.270482108999929, 49.326783101000068 ] ], [ [ -124.26933036299999, 49.31499270300003 ], [ -124.269330974999988, 49.314976286000068 ], [ -124.268722526999937, 49.314982968000059 ], [ -124.26933036299999, 49.31499270300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121929833", "BldgCostT": "78278333", "sL_LossRatio": "0.7722265321955", "sL_AssetLoss": "464040", "sL_BldgLoss": "358344", "sL_StrLoss": "215667", "sL_NStrLoss": "142677", "sL_ContLoss": "105696", "geom_point": "0101000020E6100000D4CDFF8AC00E5FC0FF2F09DDC6A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.231561475999953, 49.307287896000055 ], [ -124.230524918999947, 49.306525999000073 ], [ -124.229870192999925, 49.306216893000062 ], [ -124.229251592, 49.305665688000069 ], [ -124.228722415999925, 49.305410805000072 ], [ -124.227783290000019, 49.304782694000082 ], [ -124.226588686999918, 49.304318408000043 ], [ -124.226208013999937, 49.303899696000087 ], [ -124.225897609999947, 49.303012404000057 ], [ -124.225712600999927, 49.302807410000121 ], [ -124.225589196999962, 49.30227750200013 ], [ -124.224976902, 49.301987003000093 ], [ -124.223514113999926, 49.30174200800014 ], [ -124.223382190999942, 49.301455815000111 ], [ -124.22387120499998, 49.301172405000074 ], [ -124.22395851099999, 49.300864688000026 ], [ -124.223845309999959, 49.300668201000121 ], [ -124.223397113999937, 49.300349194000034 ], [ -124.222945841999888, 49.300233742000032 ], [ -124.22269002099992, 49.300168305000071 ], [ -124.221576502999966, 49.300179708000023 ], [ -124.221073605999933, 49.300400406000101 ], [ -124.220320683999944, 49.300571391000098 ], [ -124.219641909999936, 49.300910304000077 ], [ -124.219607813999971, 49.301216508000017 ], [ -124.219902877999957, 49.301519893000084 ], [ -124.219909308999902, 49.301707899000064 ], [ -124.21912992099999, 49.302526797000056 ], [ -124.21903509699996, 49.303112105000089 ], [ -124.218900107999914, 49.303203286000034 ], [ -124.217909105999979, 49.30318620100013 ], [ -124.216942993999922, 49.303079406000137 ], [ -124.216622881999939, 49.302929791000054 ], [ -124.215599519999913, 49.302716206000049 ], [ -124.214611205, 49.302250495000067 ], [ -124.214372199999957, 49.30202828900007 ], [ -124.213599681999966, 49.301927195000147 ], [ -124.213317991999986, 49.301679412000098 ], [ -124.212984391999981, 49.301538394 ], [ -124.212955311999934, 49.301475702000076 ], [ -124.213158384999943, 49.301311892000037 ], [ -124.213086608999916, 49.301159497000057 ], [ -124.213204413, 49.300915995000025 ], [ -124.213103008999965, 49.300718011000079 ], [ -124.213152196999943, 49.300520105000089 ], [ -124.212794680999977, 49.299903392000097 ], [ -124.212607591999969, 49.299745649000087 ], [ -124.216195735999975, 49.299804953000034 ], [ -124.21622934899996, 49.29893123400003 ], [ -124.217268242999921, 49.298948382000034 ], [ -124.217284729999946, 49.298519558000038 ], [ -124.217709635999981, 49.298526569000032 ], [ -124.21771682399995, 49.298339569000106 ], [ -124.218103298999935, 49.298345944000047 ], [ -124.21810674299999, 49.298256365 ], [ -124.217890116999968, 49.298258648000115 ], [ -124.217870169999969, 49.297449268000051 ], [ -124.218282697999911, 49.297444919000085 ], [ -124.218276046999932, 49.29717512600007 ], [ -124.219202122999974, 49.297165358000093 ], [ -124.219207430999944, 49.297027180000107 ], [ -124.21833721899999, 49.297012832000092 ], [ -124.218475477999945, 49.29341417400007 ], [ -124.219564812999948, 49.293432135000074 ], [ -124.221120770999974, 49.293457769000099 ], [ -124.222327452999963, 49.294819171000064 ], [ -124.223076102999954, 49.295663792000049 ], [ -124.223383497000015, 49.295962894000127 ], [ -124.223833783999964, 49.296401000000117 ], [ -124.224344620999958, 49.296806393000061 ], [ -124.224951116999947, 49.297185498000026 ], [ -124.225409708999905, 49.297410785000089 ], [ -124.223924832999941, 49.298867327000018 ], [ -124.223193895999955, 49.299582695 ], [ -124.223604183999939, 49.299704700000085 ], [ -124.223899418999949, 49.299819308000039 ], [ -124.224262611999961, 49.300022951000066 ], [ -124.224302994, 49.300045594000096 ], [ -124.224555272999936, 49.300272990000089 ], [ -124.224815785999965, 49.300721108000033 ], [ -124.22484990199996, 49.301014261000027 ], [ -124.22638432399998, 49.301027749000042 ], [ -124.226608250999945, 49.301029625000055 ], [ -124.226603784999938, 49.302582399000109 ], [ -124.22660439699996, 49.302818303000045 ], [ -124.226703393999941, 49.303213285000034 ], [ -124.226836297999952, 49.303402798000029 ], [ -124.227051997999965, 49.303548509000102 ], [ -124.227311196999935, 49.303669815000013 ], [ -124.227863493999948, 49.303780611000022 ], [ -124.228450707999983, 49.303771294000029 ], [ -124.230946485999937, 49.303733 ], [ -124.230971280999981, 49.303441696000057 ], [ -124.231184389999925, 49.303187786000123 ], [ -124.231929296, 49.302680510000108 ], [ -124.232312579999942, 49.302860827000067 ], [ -124.232788117999917, 49.303007844000028 ], [ -124.235269417999973, 49.303095220000067 ], [ -124.235378925999896, 49.303106014000072 ], [ -124.235519774999901, 49.30308849900004 ], [ -124.237031699999932, 49.302900738000105 ], [ -124.237316137, 49.302828857000115 ], [ -124.237744925999934, 49.302611707000018 ], [ -124.23809953599999, 49.302284399000094 ], [ -124.238709201999967, 49.301646190000099 ], [ -124.239270500999922, 49.301232233000057 ], [ -124.240153696999982, 49.300844213000097 ], [ -124.242863206999942, 49.300018254000157 ], [ -124.242827457, 49.30096160900009 ], [ -124.243224926999943, 49.300957333000071 ], [ -124.243954275999954, 49.300949482000071 ], [ -124.243974651999935, 49.301758855000095 ], [ -124.243236937999981, 49.301766795000106 ], [ -124.242796761999927, 49.301771530000032 ], [ -124.242783657999965, 49.302117297000066 ], [ -124.241548728999945, 49.302097205000067 ], [ -124.24154153899994, 49.302286788000032 ], [ -124.242554414000011, 49.302303268000053 ], [ -124.242556710999935, 49.30224269500011 ], [ -124.243244167999961, 49.302253875000062 ], [ -124.244084424999969, 49.302267534000073 ], [ -124.244086865999961, 49.303280669000102 ], [ -124.24488579299999, 49.303231805000074 ], [ -124.245601048000012, 49.303188022000107 ], [ -124.248137392999965, 49.303032811000016 ], [ -124.248409684999956, 49.303100200000067 ], [ -124.248521250999914, 49.303191380000044 ], [ -124.248553621999974, 49.303217798000098 ], [ -124.248547902999988, 49.304023403000052 ], [ -124.248431791999934, 49.304539326000075 ], [ -124.247475005999902, 49.304445192000038 ], [ -124.245716715999947, 49.30450930100006 ], [ -124.243878017999975, 49.304708697000059 ], [ -124.242576405999955, 49.304912291000115 ], [ -124.240401698999932, 49.305474886000098 ], [ -124.239774394999955, 49.305131698000054 ], [ -124.23983498399997, 49.304788400000078 ], [ -124.239624014999919, 49.304574791000014 ], [ -124.239432179999952, 49.304081994000029 ], [ -124.238915390999949, 49.303764404000042 ], [ -124.238626287999978, 49.303785801000082 ], [ -124.238604989999942, 49.304000803000058 ], [ -124.239059603000015, 49.304580504000064 ], [ -124.239058014999927, 49.305067593000089 ], [ -124.239283403999977, 49.305306810000062 ], [ -124.240093200999951, 49.30578399300007 ], [ -124.240174601999982, 49.306251086000039 ], [ -124.240538487999956, 49.306508900000068 ], [ -124.240486521999983, 49.306644204000072 ], [ -124.240722378999976, 49.306800596000059 ], [ -124.239181237999915, 49.306775493000032 ], [ -124.239179553999946, 49.306819810000022 ], [ -124.24054302899998, 49.306842020000019 ], [ -124.240535085999966, 49.307051358000059 ], [ -124.240443179999886, 49.307075699000038 ], [ -124.23998549, 49.306981705000091 ], [ -124.239380903999972, 49.306988784000048 ], [ -124.238060291999901, 49.307551391000104 ], [ -124.237749715999911, 49.307752203000057 ], [ -124.23753671899999, 49.308078406000092 ], [ -124.237666479999945, 49.308284895000071 ], [ -124.238296792999947, 49.308754900000054 ], [ -124.238569292999941, 49.309192099 ], [ -124.239034886999889, 49.309627891000019 ], [ -124.239608511000014, 49.310053698000097 ], [ -124.240124395999942, 49.310317191000138 ], [ -124.24067299, 49.310797198000039 ], [ -124.241301911999969, 49.311141803000119 ], [ -124.242373893999925, 49.312155912000087 ], [ -124.242323909999953, 49.312443601000034 ], [ -124.242644882999926, 49.312576005000082 ], [ -124.242649375999989, 49.312763997000104 ], [ -124.24234930199998, 49.312893598000144 ], [ -124.241842282, 49.312962 ], [ -124.241366520999989, 49.313201202000116 ], [ -124.241104988999936, 49.31320410000005 ], [ -124.240572218999944, 49.312795300000047 ], [ -124.239949896, 49.312658605000145 ], [ -124.23834948299999, 49.311956491000061 ], [ -124.238083403999923, 49.311751391000065 ], [ -124.238102105999985, 49.311400991000042 ], [ -124.237689605999918, 49.310883995000083 ], [ -124.237453811999927, 49.310751586000038 ], [ -124.236941705999953, 49.31069320200001 ], [ -124.23655111099994, 49.310472499000078 ], [ -124.235663716999952, 49.309600799000059 ], [ -124.2352171199999, 49.309354405000107 ], [ -124.234821994999962, 49.308989891000053 ], [ -124.234627199999977, 49.308874514000067 ], [ -124.234253777999939, 49.308806093000037 ], [ -124.23381736, 49.308562815000087 ], [ -124.23295592199996, 49.308082598000119 ], [ -124.232186488999929, 49.307551412000045 ], [ -124.231561475999953, 49.307287896000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46451001", "BldgCostT": "30935001", "sL_LossRatio": "0.777122562050475", "sL_AssetLoss": "138020.7", "sL_BldgLoss": "107259", "sL_StrLoss": "69978", "sL_NStrLoss": "37281", "sL_ContLoss": "30761.7", "geom_point": "0101000020E6100000B1DC56A3EC0C5FC0AB979D4DE0A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.203659492999947, 49.306772089000077 ], [ -124.203081420999979, 49.306013508000035 ], [ -124.202758296999946, 49.305661497000109 ], [ -124.202668587999952, 49.305595487000062 ], [ -124.202493067999967, 49.305466348000067 ], [ -124.20246041199999, 49.305442295000013 ], [ -124.20210220599995, 49.305286886000019 ], [ -124.201615581999988, 49.305077097000051 ], [ -124.201313877999937, 49.304882197000076 ], [ -124.200957692999964, 49.304535109000042 ], [ -124.199987303999947, 49.303582690000077 ], [ -124.199630598999988, 49.303320092000064 ], [ -124.199212400999926, 49.30308360900009 ], [ -124.197940483999901, 49.302558920000159 ], [ -124.19787058499999, 49.302530095000115 ], [ -124.19776727199995, 49.302505170000117 ], [ -124.19765012, 49.302476895000112 ], [ -124.197074676999961, 49.302395299000089 ], [ -124.196492410999966, 49.302349604000085 ], [ -124.196284943999899, 49.302303355000056 ], [ -124.196154656999923, 49.302274300000114 ], [ -124.195872490999932, 49.302211396000061 ], [ -124.195541692999896, 49.302095106000088 ], [ -124.195223895999959, 49.301927798000058 ], [ -124.195335885999981, 49.301749242000064 ], [ -124.195708909999979, 49.301154500000081 ], [ -124.195675490999974, 49.30072540400004 ], [ -124.195630091999973, 49.300142191000077 ], [ -124.195639887, 49.300021621000091 ], [ -124.195641606999985, 49.300000385000061 ], [ -124.195651175999956, 49.299882402000058 ], [ -124.195858883999932, 49.29959510400009 ], [ -124.196569896, 49.299120814000027 ], [ -124.196728281999967, 49.298864199000086 ], [ -124.196754196999947, 49.298656703000091 ], [ -124.196639610999981, 49.298318096000095 ], [ -124.19554315, 49.297120916000026 ], [ -124.196401584999961, 49.297020305000075 ], [ -124.196729600999987, 49.296749228000074 ], [ -124.196960615999956, 49.296777700000113 ], [ -124.197167382999936, 49.296511993000067 ], [ -124.19730020899999, 49.29627749600008 ], [ -124.197400316999946, 49.295998303000076 ], [ -124.197432608999975, 49.295702015000046 ], [ -124.197440914999945, 49.295626208000094 ], [ -124.197329212999946, 49.295319207000055 ], [ -124.197314729999974, 49.29523424500006 ], [ -124.197293396999939, 49.29510879500004 ], [ -124.197336906999979, 49.29494479300007 ], [ -124.197473091999925, 49.294797689000113 ], [ -124.197644235999931, 49.294706475000112 ], [ -124.198031492999959, 49.294500004000078 ], [ -124.198464572999939, 49.294315518000069 ], [ -124.198853091, 49.294150006000081 ], [ -124.198594209999939, 49.293809902000099 ], [ -124.198453660999974, 49.293559725000101 ], [ -124.198442612999969, 49.293539991000024 ], [ -124.198415097999941, 49.293364006000047 ], [ -124.198468494999958, 49.2919893010001 ], [ -124.198533896, 49.291825590000023 ], [ -124.198680714999966, 49.291688504000035 ], [ -124.198977894, 49.291537809 ], [ -124.19962749799997, 49.291331606000028 ], [ -124.199828512999957, 49.291215187000084 ], [ -124.19994247599999, 49.291092748000075 ], [ -124.199997603999975, 49.291033500000054 ], [ -124.200058679999984, 49.2908400970001 ], [ -124.200045797999977, 49.290464495000045 ], [ -124.199949391999922, 49.290222495000123 ], [ -124.199927958999965, 49.290187557000138 ], [ -124.199829318999932, 49.290026895000032 ], [ -124.19903140299999, 49.289628292000046 ], [ -124.19871350399994, 49.289429508000111 ], [ -124.19857019899996, 49.289193888000028 ], [ -124.198516891999958, 49.288797812000034 ], [ -124.19849729399999, 49.288063807000071 ], [ -124.19998243799995, 49.288387936000042 ], [ -124.202577675999919, 49.288954277000109 ], [ -124.204574581999935, 49.289389988000025 ], [ -124.205554083999985, 49.289603687000067 ], [ -124.205974498999964, 49.289674583000121 ], [ -124.207144382999985, 49.289725507000092 ], [ -124.207593, 49.289720663000047 ], [ -124.20786599099992, 49.289717687000113 ], [ -124.209366499999987, 49.289699429000109 ], [ -124.212267456999925, 49.289664024000039 ], [ -124.212876003999895, 49.289656609000055 ], [ -124.213188089999974, 49.289669545 ], [ -124.213454917999968, 49.289680608000069 ], [ -124.21409921599999, 49.2897885020001 ], [ -124.214872885999981, 49.28996060800003 ], [ -124.215257986999944, 49.290131219000074 ], [ -124.215251179999939, 49.29030811300008 ], [ -124.210728084999985, 49.290233280000066 ], [ -124.21071311799993, 49.29062122400007 ], [ -124.210119785999936, 49.290611394000088 ], [ -124.210100520999916, 49.291110537000066 ], [ -124.209350241999942, 49.291098101000024 ], [ -124.209349690999943, 49.291112356000056 ], [ -124.206293855999945, 49.291061654000089 ], [ -124.206268105999953, 49.29172743100002 ], [ -124.203160321999974, 49.291675778000062 ], [ -124.20313711599999, 49.292274695000117 ], [ -124.203356851999914, 49.292278350000018 ], [ -124.203349270999951, 49.292474004000056 ], [ -124.204131817999951, 49.292465852000113 ], [ -124.204151535999955, 49.293275237000074 ], [ -124.203317893999895, 49.293283922000072 ], [ -124.2033001, 49.293743195000012 ], [ -124.203152473999978, 49.293760795000019 ], [ -124.201045323999921, 49.294223601000077 ], [ -124.199501260999952, 49.294836255000057 ], [ -124.198880886999945, 49.295082396000033 ], [ -124.198350301999952, 49.295385790000076 ], [ -124.198325590999957, 49.295467015000035 ], [ -124.198731489999929, 49.295758911000092 ], [ -124.198724585999955, 49.296011005 ], [ -124.19838060599993, 49.296572204000078 ], [ -124.19812618899999, 49.296845592000054 ], [ -124.197702008999954, 49.297002300000074 ], [ -124.197610895999958, 49.297228694000069 ], [ -124.197959201999979, 49.29852049800008 ], [ -124.197966095999931, 49.298790388000057 ], [ -124.197270660999919, 49.298778786000092 ], [ -124.197289428999937, 49.299553404000079 ], [ -124.197701977999927, 49.299549129000113 ], [ -124.197709779999983, 49.299871074000094 ], [ -124.198408322999953, 49.299882724000071 ], [ -124.19875380699996, 49.300058597000096 ], [ -124.199223691999961, 49.300765009000145 ], [ -124.199239899999938, 49.300863301000057 ], [ -124.199011792999926, 49.301072692000119 ], [ -124.198948991999913, 49.301874506000146 ], [ -124.199157793999916, 49.301979913000068 ], [ -124.199474097999925, 49.302012587000029 ], [ -124.199838603999964, 49.302224904000141 ], [ -124.200499205999989, 49.302298893000085 ], [ -124.2009930899999, 49.302761798000084 ], [ -124.201772402999936, 49.303122088000052 ], [ -124.202168421999943, 49.303001106000053 ], [ -124.202260203999955, 49.302261902000076 ], [ -124.202438396, 49.302287509000024 ], [ -124.202642085999955, 49.30276179 ], [ -124.203004295999904, 49.30293840300007 ], [ -124.202985112999926, 49.303253109000075 ], [ -124.20324550399999, 49.303771510000054 ], [ -124.203680706999933, 49.304146096000061 ], [ -124.203906578999934, 49.304943696000059 ], [ -124.204505087999948, 49.305746908000081 ], [ -124.204908911999908, 49.305959097000013 ], [ -124.204954208999951, 49.306120084000057 ], [ -124.205205081999978, 49.306252503000046 ], [ -124.205266815999948, 49.306567296000054 ], [ -124.205643088000031, 49.306778102000031 ], [ -124.206235491999962, 49.306745315000093 ], [ -124.206484996999905, 49.306832210000024 ], [ -124.20690819399999, 49.307260888 ], [ -124.206972406999981, 49.307691002000055 ], [ -124.207125554999962, 49.307808461000079 ], [ -124.206852554999898, 49.308059812000074 ], [ -124.206703502, 49.308198193000038 ], [ -124.206242102999937, 49.308685602000018 ], [ -124.205886909999947, 49.308452003000056 ], [ -124.204316695999964, 49.307297908000116 ], [ -124.203988894999952, 49.307065608000087 ], [ -124.203659492999947, 49.306772089000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39431963", "BldgCostT": "26697906", "sL_LossRatio": "0.759965480849567", "sL_AssetLoss": "181928", "sL_BldgLoss": "138259", "sL_StrLoss": "73448", "sL_NStrLoss": "64811", "sL_ContLoss": "43669", "geom_point": "0101000020E6100000C50DE81AA00D5FC052068A2FC5A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.212547022999942, 49.299124434000113 ], [ -124.212540404, 49.29885464000003 ], [ -124.211175557, 49.298868954000056 ], [ -124.210884971999974, 49.298656823000073 ], [ -124.210883631999963, 49.298602151000068 ], [ -124.21081112200001, 49.298602911000067 ], [ -124.210542193999956, 49.298406588000027 ], [ -124.210465282999948, 49.29836922600002 ], [ -124.210464484999974, 49.298336679000052 ], [ -124.210399674999962, 49.298337358000033 ], [ -124.20976219399995, 49.298027698000091 ], [ -124.209343416999943, 49.297727194000061 ], [ -124.209016703999936, 49.297865306000119 ], [ -124.209026900999973, 49.298314008000077 ], [ -124.208996080999938, 49.298352053000038 ], [ -124.208488155999959, 49.298357366000062 ], [ -124.208601992999931, 49.297796992000023 ], [ -124.20850279199999, 49.297698708000077 ], [ -124.208731514999926, 49.29747229500007 ], [ -124.207557346999934, 49.297573591000081 ], [ -124.207549291999925, 49.297243948000045 ], [ -124.207569393999947, 49.297233011000095 ], [ -124.208026306999955, 49.297344097000085 ], [ -124.208807112000031, 49.297166104000077 ], [ -124.209078984999948, 49.296461090000037 ], [ -124.209657684999982, 49.29601390200007 ], [ -124.209830896999947, 49.295768910000021 ], [ -124.209757897999907, 49.29559090900009 ], [ -124.209468483999956, 49.29552109800008 ], [ -124.208824191999923, 49.295034015000091 ], [ -124.208523205999967, 49.294613884000022 ], [ -124.208073507, 49.294222201000089 ], [ -124.206909077999953, 49.293847698000043 ], [ -124.206309703, 49.29381340200009 ], [ -124.206332872999951, 49.293214372000129 ], [ -124.21093382399998, 49.293290673000065 ], [ -124.21102632099992, 49.290892982000059 ], [ -124.216518375999968, 49.290983804000057 ], [ -124.216379971999942, 49.294582472000144 ], [ -124.215323437, 49.294565022 ], [ -124.215324198999951, 49.294596026000136 ], [ -124.21706057599999, 49.29462469900006 ], [ -124.216993121999977, 49.296379055000095 ], [ -124.217018540999959, 49.296378787000044 ], [ -124.217045115999923, 49.297457961000127 ], [ -124.216951597, 49.297458946000084 ], [ -124.216922203999985, 49.298223349000075 ], [ -124.215825595999959, 49.298205244000066 ], [ -124.215840719999974, 49.298819958000088 ], [ -124.215015642, 49.298828638000074 ], [ -124.215022274999967, 49.299098432000086 ], [ -124.212547022999942, 49.299124434000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8634000", "BldgCostT": "5745000", "sL_LossRatio": "0.710460016124079", "sL_AssetLoss": "41676.8", "sL_BldgLoss": "29609.7", "sL_StrLoss": "14994.7", "sL_NStrLoss": "14615", "sL_ContLoss": "12067.1", "geom_point": "0101000020E610000072410104C1105FC02173E98891A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.26332039099999, 49.26829062900002 ], [ -124.264592882999963, 49.268311091000072 ], [ -124.264458274999967, 49.271909944000072 ], [ -124.262828694999911, 49.271883737000053 ], [ -124.258968383999971, 49.271821557000067 ], [ -124.259103417999967, 49.268222711000121 ], [ -124.261010522000021, 49.26825344700007 ], [ -124.26332039099999, 49.26829062900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147765495", "BldgCostT": "96149077", "sL_LossRatio": "0.782382549836789", "sL_AssetLoss": "639141.3", "sL_BldgLoss": "500053", "sL_StrLoss": "301384", "sL_NStrLoss": "198669", "sL_ContLoss": "139088.3", "geom_point": "0101000020E610000095A47397270D5FC0FC63E64433A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.213188089999974, 49.289669545 ], [ -124.212876003999895, 49.289656609000055 ], [ -124.212267456999925, 49.289664024000039 ], [ -124.209366499999987, 49.289699429000109 ], [ -124.20786599099992, 49.289717687000113 ], [ -124.207593, 49.289720663000047 ], [ -124.207144382999985, 49.289725507000092 ], [ -124.205974498999964, 49.289674583000121 ], [ -124.205554083999985, 49.289603687000067 ], [ -124.204574581999935, 49.289389988000025 ], [ -124.202577675999919, 49.288954277000109 ], [ -124.19998243799995, 49.288387936000042 ], [ -124.19849729399999, 49.288063807000071 ], [ -124.195587354999986, 49.2874330530001 ], [ -124.194481666999948, 49.287193354000053 ], [ -124.194114690999982, 49.287113817000062 ], [ -124.193546695999984, 49.286990798000083 ], [ -124.193228711999964, 49.286956260000089 ], [ -124.193056891999959, 49.286937614000131 ], [ -124.192470198999928, 49.286940400000034 ], [ -124.191842501999957, 49.286973988000113 ], [ -124.19121808499996, 49.287031194000114 ], [ -124.190920105999936, 49.287058512000115 ], [ -124.190583219999965, 49.287065502000154 ], [ -124.190144321999966, 49.287013098000067 ], [ -124.189754323999949, 49.286903902000098 ], [ -124.18950681599992, 49.286733192000085 ], [ -124.189397446999934, 49.286617368000059 ], [ -124.189396157999965, 49.286616013000071 ], [ -124.189339307999916, 49.28655579900002 ], [ -124.188190591999899, 49.284802596000098 ], [ -124.188135419999938, 49.284492905000022 ], [ -124.188156998999958, 49.284186307000013 ], [ -124.18831008599993, 49.283783694000086 ], [ -124.188951188999965, 49.282420696000081 ], [ -124.189134304999925, 49.28212848200014 ], [ -124.18917279599998, 49.281916604000052 ], [ -124.189132809999961, 49.281366350000049 ], [ -124.18910881099994, 49.281035883000094 ], [ -124.189083409999981, 49.280686114000105 ], [ -124.189068190999933, 49.280476794000073 ], [ -124.189054020999919, 49.280281604000088 ], [ -124.189066005999933, 49.280216507000034 ], [ -124.189088784999925, 49.280093105000141 ], [ -124.189314726999982, 49.279878749000019 ], [ -124.190023087999947, 49.279206707000064 ], [ -124.190034194999953, 49.279189470000084 ], [ -124.190070666999958, 49.279132789000123 ], [ -124.190137295999961, 49.279029292000111 ], [ -124.190257008999964, 49.278843279000107 ], [ -124.190306293999967, 49.27872596600011 ], [ -124.190691838999967, 49.277807692000046 ], [ -124.190749405999938, 49.277670671000067 ], [ -124.190927796999944, 49.277245783000055 ], [ -124.19170302899991, 49.275398817000081 ], [ -124.195590979, 49.27545221200009 ], [ -124.195783548999941, 49.275454852000102 ], [ -124.197715481000031, 49.275481315000029 ], [ -124.19771604099995, 49.274759317000125 ], [ -124.195553160999935, 49.274047371000073 ], [ -124.195690706, 49.274048223000065 ], [ -124.198691987999922, 49.27406711000009 ], [ -124.199230324, 49.274068898000081 ], [ -124.199907183, 49.274072996000029 ], [ -124.199933278999964, 49.273648499000082 ], [ -124.199940764999965, 49.273523771000093 ], [ -124.19996048699997, 49.273193392000039 ], [ -124.199981297999912, 49.27283450000003 ], [ -124.19983270199999, 49.272416993000036 ], [ -124.199775407999965, 49.272124408000046 ], [ -124.199780499999974, 49.271921891000027 ], [ -124.199808810999954, 49.2710149010001 ], [ -124.199918364999988, 49.270492770000047 ], [ -124.20003223799992, 49.270430850000018 ], [ -124.200104892999931, 49.270391378000049 ], [ -124.200346781999926, 49.270317170000091 ], [ -124.200640296999964, 49.270292289000032 ], [ -124.200969017999952, 49.270313980000068 ], [ -124.201278502999983, 49.270407393000028 ], [ -124.201528402999941, 49.270514201000054 ], [ -124.201313505999948, 49.270707813000129 ], [ -124.201210684999936, 49.270916700000043 ], [ -124.201331513999932, 49.271236492000071 ], [ -124.201470680999961, 49.27136489300004 ], [ -124.201807882999972, 49.271523598000037 ], [ -124.202015185999969, 49.271560296000104 ], [ -124.20289100899997, 49.271571303000037 ], [ -124.20362258499999, 49.271549882000087 ], [ -124.203632598999917, 49.271961388000115 ], [ -124.202807962999941, 49.271969976000065 ], [ -124.202821084999982, 49.272509569000071 ], [ -124.203233406999956, 49.272505275000128 ], [ -124.20325479899999, 49.273384645000121 ], [ -124.203930384, 49.273395885000106 ], [ -124.203929996999975, 49.273405903000068 ], [ -124.204373168999922, 49.27341327500006 ], [ -124.204371058999968, 49.273467774000061 ], [ -124.204803355999914, 49.273474963000055 ], [ -124.204802904999923, 49.273486614000078 ], [ -124.205418433999952, 49.273496847000047 ], [ -124.20527922199993, 49.277095596000031 ], [ -124.199807065999977, 49.277004505 ], [ -124.199759908999908, 49.278219696000065 ], [ -124.202001751999902, 49.278257048000093 ], [ -124.201862260999974, 49.281855767000081 ], [ -124.196371313999961, 49.281764200000062 ], [ -124.196398933999916, 49.281053860000029 ], [ -124.193884565999952, 49.281011836000118 ], [ -124.193939350999969, 49.279604738000067 ], [ -124.193709686999952, 49.279600897000044 ], [ -124.193691032999979, 49.280079975000042 ], [ -124.192440412999971, 49.280059048000084 ], [ -124.192358867999957, 49.282151657000057 ], [ -124.193913595999959, 49.282177669000113 ], [ -124.193773464999964, 49.285776356000049 ], [ -124.191364933, 49.285736049000036 ], [ -124.191362049999952, 49.285809989000015 ], [ -124.191674534999919, 49.285815222000103 ], [ -124.191675782999965, 49.285783189000014 ], [ -124.197167196999942, 49.285874995000015 ], [ -124.197160255999975, 49.286053540000047 ], [ -124.197941279999938, 49.286066575000099 ], [ -124.197927115999974, 49.286431135000058 ], [ -124.198138322999952, 49.286434658000111 ], [ -124.19814660199998, 49.286221550000036 ], [ -124.203638079999976, 49.286313027000062 ], [ -124.20361939799993, 49.286795369000082 ], [ -124.205142351999882, 49.286820690000049 ], [ -124.205136662999962, 49.286967718 ], [ -124.205358826999941, 49.28697141 ], [ -124.205360373999937, 49.286931431000049 ], [ -124.205726945999984, 49.28693752100007 ], [ -124.205849836, 49.283760634000018 ], [ -124.210349695999952, 49.283835297000053 ], [ -124.210458911999922, 49.2810044410001 ], [ -124.214867663999939, 49.281077410000073 ], [ -124.214908092999949, 49.280026848000063 ], [ -124.220076053999975, 49.280112154000065 ], [ -124.220398869999897, 49.280117474000072 ], [ -124.220345618999929, 49.281505503000091 ], [ -124.220980431999976, 49.281515963000054 ], [ -124.220895691999914, 49.283725405000027 ], [ -124.221802936999921, 49.283740347000112 ], [ -124.221792802999957, 49.284004685000113 ], [ -124.223653182999954, 49.284035300000014 ], [ -124.223515354, 49.28763401500003 ], [ -124.221515771999947, 49.28760110800004 ], [ -124.221433993999952, 49.289733661000078 ], [ -124.219707887999974, 49.289705224000073 ], [ -124.218327060999968, 49.289682455000026 ], [ -124.218318779999919, 49.289898037000057 ], [ -124.21526889899999, 49.289847686000066 ], [ -124.215257986999944, 49.290131219000074 ], [ -124.214872885999981, 49.28996060800003 ], [ -124.21409921599999, 49.2897885020001 ], [ -124.213454917999968, 49.289680608000069 ], [ -124.213188089999974, 49.289669545 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.904649636423303", "sL_AssetLoss": "11579.4", "sL_BldgLoss": "10475.3", "sL_StrLoss": "7535", "sL_NStrLoss": "2940.3", "sL_ContLoss": "1104.1", "geom_point": "0101000020E610000094D13383990F5FC00E5ABC167CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.242594563999916, 49.269022696000043 ], [ -124.242184536999929, 49.267528109000054 ], [ -124.244358900999941, 49.267470570000114 ], [ -124.244337640999959, 49.268032491000049 ], [ -124.244910310999941, 49.268041804000035 ], [ -124.24477417699994, 49.2716406320001 ], [ -124.243306298999983, 49.271616758000064 ], [ -124.242594563999916, 49.269022696000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47942584", "BldgCostT": "31383334", "sL_LossRatio": "0.814005340120015", "sL_AssetLoss": "163928.9", "sL_BldgLoss": "133439", "sL_StrLoss": "87592", "sL_NStrLoss": "45847", "sL_ContLoss": "30489.9", "geom_point": "0101000020E6100000BFF417F6CB0E5FC08093755157A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.22660439699996, 49.302818303000045 ], [ -124.226603784999938, 49.302582399000109 ], [ -124.226608250999945, 49.301029625000055 ], [ -124.22638432399998, 49.301027749000042 ], [ -124.22484990199996, 49.301014261000027 ], [ -124.224815785999965, 49.300721108000033 ], [ -124.224555272999936, 49.300272990000089 ], [ -124.224302994, 49.300045594000096 ], [ -124.224262611999961, 49.300022951000066 ], [ -124.223899418999949, 49.299819308000039 ], [ -124.223604183999939, 49.299704700000085 ], [ -124.223193895999955, 49.299582695 ], [ -124.223924832999941, 49.298867327000018 ], [ -124.225409708999905, 49.297410785000089 ], [ -124.224951116999947, 49.297185498000026 ], [ -124.224344620999958, 49.296806393000061 ], [ -124.223833783999964, 49.296401000000117 ], [ -124.223383497000015, 49.295962894000127 ], [ -124.223076102999954, 49.295663792000049 ], [ -124.222327452999963, 49.294819171000064 ], [ -124.221120770999974, 49.293457769000099 ], [ -124.223967847999972, 49.29350461700011 ], [ -124.223927911999951, 49.294547294000033 ], [ -124.224798079, 49.294561598000051 ], [ -124.224793643999959, 49.294677448000115 ], [ -124.225641265999968, 49.294668459000086 ], [ -124.225647956999921, 49.294938253000048 ], [ -124.226060461999921, 49.294933876000087 ], [ -124.226065677999927, 49.295144115000042 ], [ -124.228758167999956, 49.29518829600007 ], [ -124.228708043999987, 49.296500521000048 ], [ -124.229888505999938, 49.29651987000004 ], [ -124.229875834999945, 49.296851778000089 ], [ -124.230624998999971, 49.296864052000053 ], [ -124.230606897999962, 49.297338423000021 ], [ -124.231828382999964, 49.297358422000116 ], [ -124.231813887999948, 49.297738559000045 ], [ -124.232275390999959, 49.297746111000031 ], [ -124.23226371299998, 49.298052417000079 ], [ -124.232525798999987, 49.298056706000068 ], [ -124.232509806999985, 49.298476258 ], [ -124.232738615999921, 49.298480001000037 ], [ -124.232736220999982, 49.298542859000051 ], [ -124.237419804999945, 49.298619373000065 ], [ -124.237427033999936, 49.29842915800009 ], [ -124.242920034999912, 49.298518636 ], [ -124.242863206999942, 49.300018254000157 ], [ -124.240153696999982, 49.300844213000097 ], [ -124.239270500999922, 49.301232233000057 ], [ -124.238709201999967, 49.301646190000099 ], [ -124.23809953599999, 49.302284399000094 ], [ -124.237744925999934, 49.302611707000018 ], [ -124.237316137, 49.302828857000115 ], [ -124.237031699999932, 49.302900738000105 ], [ -124.235519774999901, 49.30308849900004 ], [ -124.235378925999896, 49.303106014000072 ], [ -124.235269417999973, 49.303095220000067 ], [ -124.232788117999917, 49.303007844000028 ], [ -124.232312579999942, 49.302860827000067 ], [ -124.231929296, 49.302680510000108 ], [ -124.231184389999925, 49.303187786000123 ], [ -124.230971280999981, 49.303441696000057 ], [ -124.230946485999937, 49.303733 ], [ -124.228450707999983, 49.303771294000029 ], [ -124.227863493999948, 49.303780611000022 ], [ -124.227311196999935, 49.303669815000013 ], [ -124.227051997999965, 49.303548509000102 ], [ -124.226836297999952, 49.303402798000029 ], [ -124.226703393999941, 49.303213285000034 ], [ -124.22660439699996, 49.302818303000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16731750", "BldgCostT": "10065000", "sL_LossRatio": "0.838732626417314", "sL_AssetLoss": "31683.16", "sL_BldgLoss": "26573.7", "sL_StrLoss": "17011.6", "sL_NStrLoss": "9562.1", "sL_ContLoss": "5109.46", "geom_point": "0101000020E610000035A760C75E105FC03800D18286A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.253107773999915, 49.267886162000131 ], [ -124.25859719, 49.267974847000112 ], [ -124.258462117999954, 49.271573694000061 ], [ -124.252972277999916, 49.271485001000038 ], [ -124.253107773999915, 49.267886162000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80237501", "BldgCostT": "50290001", "sL_LossRatio": "0.781301895052248", "sL_AssetLoss": "249903.4", "sL_BldgLoss": "195250", "sL_StrLoss": "119774", "sL_NStrLoss": "75476", "sL_ContLoss": "54653.4", "geom_point": "0101000020E6100000005A2D8FF90F5FC0CC7CB4F6C6A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.246089335999969, 49.286019984000092 ], [ -124.246097428999946, 49.285805959000129 ], [ -124.244976807999961, 49.285787756000119 ], [ -124.24507355499999, 49.283230752000087 ], [ -124.24104171799992, 49.283165160000131 ], [ -124.241178173999955, 49.279566398000078 ], [ -124.241374614999984, 49.279569597000055 ], [ -124.241464616999949, 49.277195384000045 ], [ -124.242842606999901, 49.278226391000025 ], [ -124.242977606999958, 49.278179104000074 ], [ -124.243218211999988, 49.278100208000097 ], [ -124.244086958999944, 49.278119578000037 ], [ -124.244601947999953, 49.278131042000048 ], [ -124.24482193599998, 49.278135948000063 ], [ -124.244928476999945, 49.278138309000042 ], [ -124.244570930999942, 49.276677208000102 ], [ -124.245205829999975, 49.276687528000075 ], [ -124.245236325999912, 49.275881289000047 ], [ -124.246158711, 49.275896275000093 ], [ -124.24615918899994, 49.275883612000015 ], [ -124.248349128999934, 49.275919160000086 ], [ -124.248349200999954, 49.275917265000054 ], [ -124.2528994199999, 49.275990985000121 ], [ -124.252974526999964, 49.273996475000054 ], [ -124.253089637999963, 49.27399833700013 ], [ -124.253149711999953, 49.272402775000053 ], [ -124.258639661999965, 49.2724914570001 ], [ -124.258504580999954, 49.276090279000073 ], [ -124.258389464999965, 49.276088423000019 ], [ -124.258329563999965, 49.27768397900013 ], [ -124.253779170999962, 49.277610490000036 ], [ -124.253704091999907, 49.27960498800006 ], [ -124.25248189899996, 49.279585218000129 ], [ -124.252479445999981, 49.279650319000019 ], [ -124.250972186999959, 49.279625917000068 ], [ -124.250956877999926, 49.280031918000056 ], [ -124.253650208999929, 49.280075508000067 ], [ -124.253607022999986, 49.281222660000054 ], [ -124.253514718999966, 49.283674282000021 ], [ -124.253005417999972, 49.283666045000125 ], [ -124.252996510999978, 49.283902494000067 ], [ -124.252565447999984, 49.283895521000062 ], [ -124.252558703999966, 49.284074505000078 ], [ -124.251658121, 49.284059929000072 ], [ -124.25158088299996, 49.286109023000023 ], [ -124.250134533, 49.286085600000028 ], [ -124.247393598999977, 49.286041157000057 ], [ -124.246089335999969, 49.286019984000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18011584", "BldgCostT": "11478334", "sL_LossRatio": "0.833878663506928", "sL_AssetLoss": "47219.1", "sL_BldgLoss": "39375", "sL_StrLoss": "25279", "sL_NStrLoss": "14096", "sL_ContLoss": "7844.1", "geom_point": "0101000020E6100000BE388EAB130E5FC03F696EA63EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.224612821999983, 49.269563968000035 ], [ -124.224612969999924, 49.269560070000104 ], [ -124.220483450999936, 49.26949208200007 ], [ -124.220196558999987, 49.269487353000045 ], [ -124.220221292999966, 49.268842546000073 ], [ -124.21852153699993, 49.268814511000087 ], [ -124.218530786999935, 49.268573540000062 ], [ -124.217606717999942, 49.268558288000143 ], [ -124.21761535899999, 49.268333346000034 ], [ -124.216999308999974, 49.268323173000084 ], [ -124.217006231999946, 49.268143021000085 ], [ -124.216348495999966, 49.268132156000036 ], [ -124.216418587999925, 49.266308683000062 ], [ -124.211145014999943, 49.266221425000012 ], [ -124.211149247999927, 49.266111613000064 ], [ -124.210635855999939, 49.266103105000113 ], [ -124.210587094999951, 49.264911995000055 ], [ -124.210776220999946, 49.264923293000031 ], [ -124.212794012999936, 49.265043796000057 ], [ -124.214194202999948, 49.265127395000064 ], [ -124.214504461999979, 49.265166599000089 ], [ -124.215670003999975, 49.265313880000093 ], [ -124.216758801999958, 49.265495689000041 ], [ -124.218947594999946, 49.265959513000155 ], [ -124.21941631599995, 49.266106360000059 ], [ -124.219857928999971, 49.26624472400006 ], [ -124.221589417999951, 49.266787198000102 ], [ -124.223114001999988, 49.26726689100007 ], [ -124.227863316999958, 49.268760999000037 ], [ -124.22787569099998, 49.268764904000079 ], [ -124.229545012999935, 49.269355008000041 ], [ -124.230104274999974, 49.269604412000042 ], [ -124.230102379999948, 49.269654101000036 ], [ -124.224612821999983, 49.269563968000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.891712182379482", "sL_AssetLoss": "7579.8", "sL_BldgLoss": "6759", "sL_StrLoss": "5100", "sL_NStrLoss": "1659", "sL_ContLoss": "820.8", "geom_point": "0101000020E61000005B334B653E115FC048DE399421A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.26826414599999, 49.283413875000065 ], [ -124.268236465999962, 49.282334718000072 ], [ -124.267824071999954, 49.282339245000038 ], [ -124.267796402999963, 49.281260088000089 ], [ -124.269033555999911, 49.281246506000137 ], [ -124.26904048099999, 49.281516295000088 ], [ -124.271102411999976, 49.281493628000121 ], [ -124.271116282999941, 49.282033206000037 ], [ -124.271349189999967, 49.28203064200008 ], [ -124.271359476999962, 49.282636897000039 ], [ -124.271333239999962, 49.282719337000081 ], [ -124.271267684999913, 49.282925324000068 ], [ -124.271296776999989, 49.283029318000047 ], [ -124.27136731599991, 49.283109903000124 ], [ -124.270731624999911, 49.283116897000113 ], [ -124.27071082499999, 49.282307530000047 ], [ -124.269886039999946, 49.282316600000073 ], [ -124.269913754999962, 49.283395755000093 ], [ -124.26826414599999, 49.283413875000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10482750", "BldgCostT": "7020000", "sL_LossRatio": "0.734524462434116", "sL_AssetLoss": "19418.55", "sL_BldgLoss": "14263.4", "sL_StrLoss": "9751", "sL_NStrLoss": "4512.4", "sL_ContLoss": "5155.15", "geom_point": "0101000020E6100000BE6955A6F30F5FC0196D972EABA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.250107882999941, 49.266880125000057 ], [ -124.250101065999971, 49.266610333000074 ], [ -124.24968880099999, 49.266614793000031 ], [ -124.249675171999968, 49.266075210000039 ], [ -124.249262908999924, 49.266079669000121 ], [ -124.249256096999943, 49.265809877 ], [ -124.24884383899996, 49.265814334000083 ], [ -124.248837029999947, 49.265544543000026 ], [ -124.248736680999983, 49.265545627000087 ], [ -124.248424771999964, 49.265548998000035 ], [ -124.248411158999957, 49.265009414000083 ], [ -124.248385483, 49.265009692000056 ], [ -124.248518155999975, 49.264765584000052 ], [ -124.245902938999947, 49.260720293000034 ], [ -124.245579178999918, 49.25984541 ], [ -124.246390205999958, 49.259844003000083 ], [ -124.246822669, 49.259887640000109 ], [ -124.247045098999976, 49.259892489000023 ], [ -124.247045204999949, 49.2598967220001 ], [ -124.247175021999979, 49.259895320000069 ], [ -124.249107842999976, 49.259937432000157 ], [ -124.249113061999964, 49.260144246000053 ], [ -124.249937486999926, 49.260135329000057 ], [ -124.249944300999942, 49.260405121000112 ], [ -124.250356513999961, 49.260400661000119 ], [ -124.250363329999942, 49.260670452000085 ], [ -124.251187761999986, 49.260661526000085 ], [ -124.251215049999956, 49.261740692000096 ], [ -124.249566150999954, 49.261758540000123 ], [ -124.249593404, 49.262837708000106 ], [ -124.250005636999973, 49.262833248000085 ], [ -124.250019268999978, 49.263372832000123 ], [ -124.252492696999965, 49.263346041000069 ], [ -124.25249396399991, 49.263396059000037 ], [ -124.251238411999964, 49.265555601000123 ], [ -124.252369521, 49.266315897000034 ], [ -124.25215556299996, 49.26631821600003 ], [ -124.252169219000024, 49.266857799000086 ], [ -124.250107882999941, 49.266880125000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "0.881070812882257", "sL_AssetLoss": "9107.1", "sL_BldgLoss": "8024", "sL_StrLoss": "5620", "sL_NStrLoss": "2404", "sL_ContLoss": "1083.1", "geom_point": "0101000020E610000042435ABE090F5FC0FA06EC8B00A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.234263171999885, 49.274754405000095 ], [ -124.234284224999925, 49.274201250000068 ], [ -124.233528477999982, 49.274188888000026 ], [ -124.233541719999934, 49.273841107000031 ], [ -124.233075382999957, 49.273833477000046 ], [ -124.23317777499993, 49.271144764000148 ], [ -124.233624992999978, 49.27140959900003 ], [ -124.234808078999905, 49.27218519200013 ], [ -124.236954632999968, 49.273820452000095 ], [ -124.236963623999927, 49.273827301000026 ], [ -124.238290388999971, 49.274820188000035 ], [ -124.234263171999885, 49.274754405000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268923628", "BldgCostT": "175975010", "sL_LossRatio": "0.763913011269901", "sL_AssetLoss": "1024578.7", "sL_BldgLoss": "782689", "sL_StrLoss": "418401", "sL_NStrLoss": "364288", "sL_ContLoss": "241889.7", "geom_point": "0101000020E6100000A813449B6B0C5FC09F1F25FAA5A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.210112409999951, 49.314558493000064 ], [ -124.208354186999912, 49.313506006000068 ], [ -124.206803810999958, 49.312073294000072 ], [ -124.206334211999916, 49.311925097000092 ], [ -124.205887206999989, 49.311651706000042 ], [ -124.205025823999918, 49.311381106000098 ], [ -124.203726299999971, 49.311124706000037 ], [ -124.203009702999964, 49.31048528600008 ], [ -124.202977596000025, 49.310260190000101 ], [ -124.202666892999957, 49.309985402000095 ], [ -124.201715194999935, 49.309859997000054 ], [ -124.201172699999915, 49.309613713000026 ], [ -124.200985786, 49.309256197000082 ], [ -124.200577277999926, 49.30886449500013 ], [ -124.200612585999963, 49.308647999000065 ], [ -124.200449813999981, 49.308146692000058 ], [ -124.199975282999972, 49.307871796000079 ], [ -124.199872016999976, 49.307621196000063 ], [ -124.199642652999955, 49.307369750000134 ], [ -124.199392591999967, 49.3070956070001 ], [ -124.198327209999945, 49.306279606000025 ], [ -124.1982621, 49.305919303000081 ], [ -124.197643087999921, 49.305305401000098 ], [ -124.197200896999959, 49.305211401000079 ], [ -124.196154403999955, 49.305195808000093 ], [ -124.195278886999944, 49.305410809000065 ], [ -124.194953394, 49.305063310000044 ], [ -124.195051196999984, 49.304505002000042 ], [ -124.194910207999939, 49.304335489000039 ], [ -124.194673091999945, 49.304265705000041 ], [ -124.194096194999986, 49.304254389000079 ], [ -124.193691094999934, 49.303996602000026 ], [ -124.193087701999943, 49.304093386000027 ], [ -124.191777199999962, 49.304520704000069 ], [ -124.191566899999899, 49.304945088000096 ], [ -124.19183591299999, 49.305284100000087 ], [ -124.191843811999959, 49.305573190000118 ], [ -124.190018688999984, 49.306302392000056 ], [ -124.189913699999963, 49.306510296000042 ], [ -124.189941399999924, 49.307102801000056 ], [ -124.189643616999916, 49.30736769700011 ], [ -124.189634208999962, 49.307528602000069 ], [ -124.189288007999934, 49.30801 ], [ -124.188804779999927, 49.307878998000014 ], [ -124.187991691999983, 49.307320704000091 ], [ -124.187088494999983, 49.306943309000097 ], [ -124.186732797000019, 49.306974593000021 ], [ -124.18630050299997, 49.307293605000098 ], [ -124.186022591999958, 49.307738012000073 ], [ -124.186119485999981, 49.308347493000092 ], [ -124.186915115999966, 49.308826107000115 ], [ -124.18761840399999, 49.308890206000093 ], [ -124.188561387999954, 49.309194894000036 ], [ -124.188825610999942, 49.309362995000086 ], [ -124.189252181999976, 49.309917004000056 ], [ -124.189561102999946, 49.310714588000053 ], [ -124.189574103999945, 49.311289903000059 ], [ -124.189724216999977, 49.311782698000087 ], [ -124.189634606999917, 49.312090398000102 ], [ -124.189271704999953, 49.312426486000092 ], [ -124.188584991999974, 49.312487707000031 ], [ -124.188165476999956, 49.312204296000104 ], [ -124.187850012999931, 49.311694400000057 ], [ -124.187044996999973, 49.311396798000018 ], [ -124.186604899999949, 49.311446611000065 ], [ -124.186511894999981, 49.311564792000048 ], [ -124.186458692999921, 49.312221401000066 ], [ -124.186241701999947, 49.312322487000074 ], [ -124.185961310999971, 49.312631602000103 ], [ -124.185727103999952, 49.312624403000086 ], [ -124.185387116999919, 49.312295396000067 ], [ -124.185187406999944, 49.31192939200011 ], [ -124.185279405999935, 49.311225900000075 ], [ -124.18517210899995, 49.310723092 ], [ -124.184769847999959, 49.31026694800007 ], [ -124.184732511999982, 49.310224608000048 ], [ -124.184457396999946, 49.310200392000048 ], [ -124.18421321999989, 49.310391302000014 ], [ -124.183763897999981, 49.310513795000112 ], [ -124.18265309899999, 49.310156286000023 ], [ -124.182330708, 49.30990699100014 ], [ -124.182060701999987, 49.310045209000087 ], [ -124.18178999099996, 49.309733297000029 ], [ -124.181040697999947, 49.309469791000133 ], [ -124.180760696999926, 49.309194910000052 ], [ -124.18048629499998, 49.30870220700006 ], [ -124.180240614999988, 49.308732092000071 ], [ -124.179907699999958, 49.309184998000077 ], [ -124.179798680999909, 49.309240493000111 ], [ -124.179549795999904, 49.309216285000069 ], [ -124.179471417999949, 49.309141225000076 ], [ -124.179523195999934, 49.307822750000064 ], [ -124.182516824999965, 49.307873143000108 ], [ -124.182575556999964, 49.306375020000132 ], [ -124.182596075999982, 49.306375365000129 ], [ -124.182616286, 49.305859821000084 ], [ -124.182913125999917, 49.305864813000028 ], [ -124.182926693999931, 49.305518628000073 ], [ -124.183218294, 49.30552353100007 ], [ -124.183230600999934, 49.305209534000063 ], [ -124.18418189199997, 49.305225525000061 ], [ -124.184200687000015, 49.304745657000062 ], [ -124.186755607999928, 49.304788563000102 ], [ -124.186785625999946, 49.304021019000096 ], [ -124.187374713999958, 49.304030904000093 ], [ -124.187399737999954, 49.303390832000069 ], [ -124.187663273999959, 49.303395253000161 ], [ -124.187672435999971, 49.303160874000092 ], [ -124.186647369999918, 49.303171405000064 ], [ -124.186640889, 49.302901609000116 ], [ -124.186228311999955, 49.302905844000072 ], [ -124.186221834999955, 49.302636048000053 ], [ -124.185809258999925, 49.302640283000095 ], [ -124.18578983499998, 49.301830894 ], [ -124.1877252, 49.301811016000059 ], [ -124.187755460999966, 49.301036834000101 ], [ -124.187834131999963, 49.301038154000061 ], [ -124.187833221999966, 49.30100031800005 ], [ -124.18948346799999, 49.300983341000126 ], [ -124.189476972999941, 49.300713545000022 ], [ -124.191127208999887, 49.30069654400004 ], [ -124.191120704999932, 49.300426749000088 ], [ -124.191533261999936, 49.30042249600011 ], [ -124.191526755999973, 49.300152700000105 ], [ -124.191939308999935, 49.300148444000051 ], [ -124.191932801999926, 49.299878649000057 ], [ -124.192345353999897, 49.299874392000042 ], [ -124.19233884399992, 49.299604596000094 ], [ -124.192751393999913, 49.299600338000104 ], [ -124.192744880999896, 49.299330542000028 ], [ -124.193157429999957, 49.299326283000021 ], [ -124.1931444, 49.298786692000093 ], [ -124.194382025999943, 49.298773904000058 ], [ -124.194380978999945, 49.298730528000078 ], [ -124.19436150699994, 49.298730202000073 ], [ -124.194373516999974, 49.298421807000054 ], [ -124.194362465999987, 49.297964518000079 ], [ -124.194391335999967, 49.297964219000043 ], [ -124.19446981, 49.295948845000019 ], [ -124.194501631999955, 49.295131585000078 ], [ -124.194831698999948, 49.295137102000076 ], [ -124.194894709999957, 49.293518390000031 ], [ -124.195030575000018, 49.293520660000105 ], [ -124.195097700999938, 49.291795991000065 ], [ -124.196208987999952, 49.291814554000069 ], [ -124.196259055999974, 49.290527271000038 ], [ -124.193921591999967, 49.290488212000056 ], [ -124.193932586999949, 49.290205849000124 ], [ -124.193376698999913, 49.29019655300003 ], [ -124.191326712999938, 49.290162245000076 ], [ -124.191356014999926, 49.289410902000043 ], [ -124.190782724999934, 49.289401300000073 ], [ -124.19073542299995, 49.290613819000029 ], [ -124.18884557899996, 49.290582147000052 ], [ -124.189012273999978, 49.288439076000088 ], [ -124.189030287, 49.288207103000033 ], [ -124.189062149999984, 49.287549938000083 ], [ -124.189062756999974, 49.287537646000075 ], [ -124.189086603999968, 49.287045814000095 ], [ -124.189342199999942, 49.286797995000043 ], [ -124.18950681599992, 49.286733192000085 ], [ -124.189754323999949, 49.286903902000098 ], [ -124.190144321999966, 49.287013098000067 ], [ -124.190583219999965, 49.287065502000154 ], [ -124.190920105999936, 49.287058512000115 ], [ -124.19121808499996, 49.287031194000114 ], [ -124.191842501999957, 49.286973988000113 ], [ -124.192470198999928, 49.286940400000034 ], [ -124.193056891999959, 49.286937614000131 ], [ -124.193228711999964, 49.286956260000089 ], [ -124.193546695999984, 49.286990798000083 ], [ -124.194114690999982, 49.287113817000062 ], [ -124.194481666999948, 49.287193354000053 ], [ -124.195587354999986, 49.2874330530001 ], [ -124.19849729399999, 49.288063807000071 ], [ -124.198516891999958, 49.288797812000034 ], [ -124.19857019899996, 49.289193888000028 ], [ -124.19871350399994, 49.289429508000111 ], [ -124.19903140299999, 49.289628292000046 ], [ -124.199829318999932, 49.290026895000032 ], [ -124.199927958999965, 49.290187557000138 ], [ -124.199949391999922, 49.290222495000123 ], [ -124.200045797999977, 49.290464495000045 ], [ -124.200058679999984, 49.2908400970001 ], [ -124.199997603999975, 49.291033500000054 ], [ -124.19994247599999, 49.291092748000075 ], [ -124.199828512999957, 49.291215187000084 ], [ -124.19962749799997, 49.291331606000028 ], [ -124.198977894, 49.291537809 ], [ -124.198680714999966, 49.291688504000035 ], [ -124.198533896, 49.291825590000023 ], [ -124.198468494999958, 49.2919893010001 ], [ -124.198415097999941, 49.293364006000047 ], [ -124.198442612999969, 49.293539991000024 ], [ -124.198453660999974, 49.293559725000101 ], [ -124.198594209999939, 49.293809902000099 ], [ -124.198853091, 49.294150006000081 ], [ -124.198464572999939, 49.294315518000069 ], [ -124.198031492999959, 49.294500004000078 ], [ -124.197644235999931, 49.294706475000112 ], [ -124.197473091999925, 49.294797689000113 ], [ -124.197336906999979, 49.29494479300007 ], [ -124.197293396999939, 49.29510879500004 ], [ -124.197314729999974, 49.29523424500006 ], [ -124.197329212999946, 49.295319207000055 ], [ -124.197440914999945, 49.295626208000094 ], [ -124.197432608999975, 49.295702015000046 ], [ -124.197400316999946, 49.295998303000076 ], [ -124.19730020899999, 49.29627749600008 ], [ -124.197167382999936, 49.296511993000067 ], [ -124.196960615999956, 49.296777700000113 ], [ -124.196729600999987, 49.296749228000074 ], [ -124.196401584999961, 49.297020305000075 ], [ -124.19554315, 49.297120916000026 ], [ -124.196639610999981, 49.298318096000095 ], [ -124.196754196999947, 49.298656703000091 ], [ -124.196728281999967, 49.298864199000086 ], [ -124.196569896, 49.299120814000027 ], [ -124.195858883999932, 49.29959510400009 ], [ -124.195651175999956, 49.299882402000058 ], [ -124.195641606999985, 49.300000385000061 ], [ -124.195639887, 49.300021621000091 ], [ -124.195630091999973, 49.300142191000077 ], [ -124.195675490999974, 49.30072540400004 ], [ -124.195708909999979, 49.301154500000081 ], [ -124.195335885999981, 49.301749242000064 ], [ -124.195223895999959, 49.301927798000058 ], [ -124.195541692999896, 49.302095106000088 ], [ -124.195872490999932, 49.302211396000061 ], [ -124.196154656999923, 49.302274300000114 ], [ -124.196284943999899, 49.302303355000056 ], [ -124.196492410999966, 49.302349604000085 ], [ -124.197074676999961, 49.302395299000089 ], [ -124.19765012, 49.302476895000112 ], [ -124.19776727199995, 49.302505170000117 ], [ -124.19787058499999, 49.302530095000115 ], [ -124.197940483999901, 49.302558920000159 ], [ -124.199212400999926, 49.30308360900009 ], [ -124.199630598999988, 49.303320092000064 ], [ -124.199987303999947, 49.303582690000077 ], [ -124.200957692999964, 49.304535109000042 ], [ -124.201313877999937, 49.304882197000076 ], [ -124.201615581999988, 49.305077097000051 ], [ -124.20210220599995, 49.305286886000019 ], [ -124.200988601999967, 49.306217199000123 ], [ -124.200768115999935, 49.306480906000026 ], [ -124.200620504999918, 49.306813279000032 ], [ -124.20058491, 49.307058499000057 ], [ -124.200736786999954, 49.307358107000049 ], [ -124.200880507999898, 49.307481111000115 ], [ -124.201611317999948, 49.307878603000034 ], [ -124.201910325, 49.308202312000027 ], [ -124.202207490999925, 49.308524013000053 ], [ -124.202453508999909, 49.308884609000117 ], [ -124.202610723999911, 49.309114999000023 ], [ -124.202646605999973, 49.309168411000016 ], [ -124.202684779, 49.309225198000036 ], [ -124.20287122399999, 49.309380399000119 ], [ -124.203106115999944, 49.309523806000108 ], [ -124.203526088, 49.309682106000075 ], [ -124.204303870999965, 49.310110895000022 ], [ -124.204534126999974, 49.310303959000045 ], [ -124.204643389999887, 49.310395588000056 ], [ -124.204860522, 49.31053869600003 ], [ -124.205151397999956, 49.310656994000084 ], [ -124.20545150199996, 49.310716897000077 ], [ -124.207144216999922, 49.311436607000168 ], [ -124.207751702999985, 49.311694888000076 ], [ -124.208053702999933, 49.311845702000035 ], [ -124.208233126999943, 49.31200440500006 ], [ -124.208356094999914, 49.312200906000022 ], [ -124.208462188999945, 49.312478202000101 ], [ -124.208624717999925, 49.312650100000035 ], [ -124.208905254999962, 49.312872459000069 ], [ -124.209034226999989, 49.31297466500007 ], [ -124.210301197999911, 49.313978707000111 ], [ -124.21089021599991, 49.31422961500008 ], [ -124.211053102999969, 49.314298998000069 ], [ -124.211575494999934, 49.314438200000033 ], [ -124.211809598999977, 49.314428507000081 ], [ -124.211959474999958, 49.31439049600003 ], [ -124.212347408999946, 49.314135012000108 ], [ -124.212561718999936, 49.31399539300002 ], [ -124.212709920999941, 49.313822298000083 ], [ -124.212746181999961, 49.313667204000062 ], [ -124.21267521599999, 49.313475099000065 ], [ -124.212450201999957, 49.313142781000096 ], [ -124.212125515999944, 49.312867460000085 ], [ -124.211156509999952, 49.312045701000052 ], [ -124.210560677, 49.311423465000075 ], [ -124.210221114999939, 49.311068795000082 ], [ -124.209797898999952, 49.310636809000052 ], [ -124.209451080999955, 49.310362790000063 ], [ -124.208892286, 49.310013488000038 ], [ -124.208411107999922, 49.309712698000084 ], [ -124.206732683999974, 49.308971895000042 ], [ -124.206242102999937, 49.308685602000018 ], [ -124.206703502, 49.308198193000038 ], [ -124.206852554999898, 49.308059812000074 ], [ -124.207125554999962, 49.307808461000079 ], [ -124.208025284999948, 49.308498502000134 ], [ -124.208142915999971, 49.308838900000097 ], [ -124.208446892999987, 49.308890193000138 ], [ -124.20859662, 49.308816106000037 ], [ -124.208803007999975, 49.30885028400008 ], [ -124.208975916999947, 49.309109497000087 ], [ -124.209238110999962, 49.309169302000051 ], [ -124.209326189999913, 49.309375805000101 ], [ -124.209647499999946, 49.30957949400009 ], [ -124.210440508999966, 49.309931301000063 ], [ -124.210854097, 49.31003381000005 ], [ -124.211262797999908, 49.310381300000103 ], [ -124.211595612999986, 49.310503793000102 ], [ -124.211835184999956, 49.310752998000048 ], [ -124.212039184999952, 49.311227305000031 ], [ -124.212293601999932, 49.311449486000079 ], [ -124.212353104999977, 49.311664497000031 ], [ -124.21269091299996, 49.311957908000082 ], [ -124.213104513999923, 49.312520499000122 ], [ -124.213711199999949, 49.312621598000078 ], [ -124.213916598999944, 49.312557485000085 ], [ -124.214102792999981, 49.312356696000094 ], [ -124.214407601999952, 49.312426498000065 ], [ -124.214645078999951, 49.313071602000015 ], [ -124.214579106999935, 49.313188408 ], [ -124.21387180399995, 49.313591491000089 ], [ -124.213945804999952, 49.31374388600009 ], [ -124.213884792000016, 49.314095614000031 ], [ -124.214165084999962, 49.314326395000066 ], [ -124.21438160299999, 49.314737997000087 ], [ -124.214252378, 49.315018498000015 ], [ -124.214019703999952, 49.315143993000042 ], [ -124.213911784999979, 49.31520220000003 ], [ -124.213677999000012, 49.315222206000044 ], [ -124.211554682, 49.314965793000056 ], [ -124.210112409999951, 49.314558493000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88569667", "BldgCostT": "60576667", "sL_LossRatio": "0.887117722439649", "sL_AssetLoss": "115492", "sL_BldgLoss": "102455", "sL_StrLoss": "64684", "sL_NStrLoss": "37771", "sL_ContLoss": "13037", "geom_point": "0101000020E610000002E57461BD0B5FC05631D79A94A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.181062232999963, 49.294964966000109 ], [ -124.181084475999981, 49.294397925000062 ], [ -124.179570913999953, 49.294372428000088 ], [ -124.179591889999955, 49.293838087000026 ], [ -124.178629173999965, 49.293821858000044 ], [ -124.180459309999932, 49.292779159000133 ], [ -124.180683554, 49.292651399000107 ], [ -124.18081799199993, 49.292574799000072 ], [ -124.180855480999952, 49.292562530000019 ], [ -124.181079595999947, 49.29248918400009 ], [ -124.181441813999982, 49.292432307000055 ], [ -124.184145803999968, 49.292185212000092 ], [ -124.185537387999901, 49.29197900500003 ], [ -124.186110904999964, 49.291974287000137 ], [ -124.186327715999965, 49.291972502000093 ], [ -124.18667059199997, 49.292093965000042 ], [ -124.186554712999978, 49.295057310000082 ], [ -124.181062232999963, 49.294964966000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13827084", "BldgCostT": "9008334", "sL_LossRatio": "0.941201353637902", "sL_AssetLoss": "31677.6", "sL_BldgLoss": "29815", "sL_StrLoss": "25500", "sL_NStrLoss": "4315", "sL_ContLoss": "1862.6", "geom_point": "0101000020E610000092C1CDB9860B5FC01B8AD042E1A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.179664295999956, 49.305976205 ], [ -124.179442691, 49.305862296000065 ], [ -124.179246795999973, 49.305923480000118 ], [ -124.179266631999965, 49.305647113000042 ], [ -124.179264827999958, 49.30459993100007 ], [ -124.179106125, 49.304204837000022 ], [ -124.178658458999934, 49.303743121000124 ], [ -124.177479096999932, 49.30300616600006 ], [ -124.177354808999894, 49.302941290000064 ], [ -124.177068105999922, 49.302788794000023 ], [ -124.176781988999949, 49.302551692000137 ], [ -124.1766534019999, 49.302326300000068 ], [ -124.176687661999907, 49.301983341000032 ], [ -124.181938955999968, 49.302071835000071 ], [ -124.181922504999946, 49.30249138000007 ], [ -124.182151273999963, 49.302495230000034 ], [ -124.182010168999909, 49.306093791000094 ], [ -124.181179379999946, 49.306079810000043 ], [ -124.18117893699997, 49.306091112000061 ], [ -124.179694192999975, 49.306066110000081 ], [ -124.179664295999956, 49.305976205 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123757917", "BldgCostT": "81641667", "sL_LossRatio": "0.808915584901404", "sL_AssetLoss": "431724.9", "sL_BldgLoss": "349229", "sL_StrLoss": "233852", "sL_NStrLoss": "115377", "sL_ContLoss": "82495.9", "geom_point": "0101000020E61000004D734421360D5FC001B26365ACA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.200988601999967, 49.306217199000123 ], [ -124.20210220599995, 49.305286886000019 ], [ -124.20246041199999, 49.305442295000013 ], [ -124.202493067999967, 49.305466348000067 ], [ -124.202668587999952, 49.305595487000062 ], [ -124.202758296999946, 49.305661497000109 ], [ -124.203081420999979, 49.306013508000035 ], [ -124.203659492999947, 49.306772089000077 ], [ -124.203988894999952, 49.307065608000087 ], [ -124.204316695999964, 49.307297908000116 ], [ -124.205886909999947, 49.308452003000056 ], [ -124.206242102999937, 49.308685602000018 ], [ -124.206732683999974, 49.308971895000042 ], [ -124.208411107999922, 49.309712698000084 ], [ -124.208892286, 49.310013488000038 ], [ -124.209451080999955, 49.310362790000063 ], [ -124.209797898999952, 49.310636809000052 ], [ -124.210221114999939, 49.311068795000082 ], [ -124.210560677, 49.311423465000075 ], [ -124.211156509999952, 49.312045701000052 ], [ -124.212125515999944, 49.312867460000085 ], [ -124.212450201999957, 49.313142781000096 ], [ -124.21267521599999, 49.313475099000065 ], [ -124.212746181999961, 49.313667204000062 ], [ -124.212709920999941, 49.313822298000083 ], [ -124.212561718999936, 49.31399539300002 ], [ -124.212347408999946, 49.314135012000108 ], [ -124.211959474999958, 49.31439049600003 ], [ -124.211809598999977, 49.314428507000081 ], [ -124.211575494999934, 49.314438200000033 ], [ -124.211053102999969, 49.314298998000069 ], [ -124.21089021599991, 49.31422961500008 ], [ -124.210301197999911, 49.313978707000111 ], [ -124.209034226999989, 49.31297466500007 ], [ -124.208905254999962, 49.312872459000069 ], [ -124.208624717999925, 49.312650100000035 ], [ -124.208462188999945, 49.312478202000101 ], [ -124.208356094999914, 49.312200906000022 ], [ -124.208233126999943, 49.31200440500006 ], [ -124.208053702999933, 49.311845702000035 ], [ -124.207751702999985, 49.311694888000076 ], [ -124.207144216999922, 49.311436607000168 ], [ -124.20545150199996, 49.310716897000077 ], [ -124.205151397999956, 49.310656994000084 ], [ -124.204860522, 49.31053869600003 ], [ -124.204643389999887, 49.310395588000056 ], [ -124.204534126999974, 49.310303959000045 ], [ -124.204303870999965, 49.310110895000022 ], [ -124.203526088, 49.309682106000075 ], [ -124.203106115999944, 49.309523806000108 ], [ -124.20287122399999, 49.309380399000119 ], [ -124.202684779, 49.309225198000036 ], [ -124.202646605999973, 49.309168411000016 ], [ -124.202610723999911, 49.309114999000023 ], [ -124.202453508999909, 49.308884609000117 ], [ -124.202207490999925, 49.308524013000053 ], [ -124.201910325, 49.308202312000027 ], [ -124.201611317999948, 49.307878603000034 ], [ -124.200880507999898, 49.307481111000115 ], [ -124.200736786999954, 49.307358107000049 ], [ -124.20058491, 49.307058499000057 ], [ -124.200620504999918, 49.306813279000032 ], [ -124.200768115999935, 49.306480906000026 ], [ -124.200988601999967, 49.306217199000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14277500", "BldgCostT": "9350000", "sL_LossRatio": "0.664635193876235", "sL_AssetLoss": "21944.67", "sL_BldgLoss": "14585.2", "sL_StrLoss": "9823", "sL_NStrLoss": "4762.2", "sL_ContLoss": "7359.47", "geom_point": "0101000020E61000002E58F49852095FC08B04A61557AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.14298348199999, 49.337864298000063 ], [ -124.143677512999986, 49.337462589000012 ], [ -124.144212377999949, 49.337375795000064 ], [ -124.144294946999977, 49.337291514000086 ], [ -124.147479804999989, 49.337346126000099 ], [ -124.147469695999973, 49.337598909000121 ], [ -124.149307450999984, 49.337630379000082 ], [ -124.14929194299999, 49.338018567000084 ], [ -124.148578492, 49.338060804000101 ], [ -124.147552898999919, 49.338385491000068 ], [ -124.147486604, 49.338530786000021 ], [ -124.147693893999985, 49.339158887000067 ], [ -124.147644717999924, 49.339356801000044 ], [ -124.147428805999979, 49.339547693000057 ], [ -124.147138113999972, 49.340063298000075 ], [ -124.146744185999921, 49.340283993000121 ], [ -124.14653819599999, 49.340320990000109 ], [ -124.145476002999885, 49.340232684000078 ], [ -124.144207598999955, 49.339570508000065 ], [ -124.143571983999891, 49.339433804000087 ], [ -124.143418410999914, 49.339326899000056 ], [ -124.142677281999951, 49.338300093000072 ], [ -124.142841082999965, 49.33818039300013 ], [ -124.14298348199999, 49.337864298000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21023750", "BldgCostT": "13025000", "sL_LossRatio": "0.908315874535575", "sL_AssetLoss": "28796.37", "sL_BldgLoss": "26156.2", "sL_StrLoss": "19169", "sL_NStrLoss": "6987.2", "sL_ContLoss": "2640.17", "geom_point": "0101000020E610000090E63C21430A5FC0E2C777ADADAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.162083011999982, 49.350996908000099 ], [ -124.161872796999916, 49.350773312000058 ], [ -124.16165339299998, 49.35083881500006 ], [ -124.161332615999967, 49.350653699000034 ], [ -124.160937599999983, 49.350864485000066 ], [ -124.160622004999965, 49.35093000400007 ], [ -124.159581008999965, 49.350518402000063 ], [ -124.159395714999931, 49.35031330400011 ], [ -124.159232597999932, 49.349783487000089 ], [ -124.158096613999959, 49.349525690000142 ], [ -124.157490104999937, 49.348839196000029 ], [ -124.157059745999931, 49.348485134000093 ], [ -124.157077966999978, 49.348027204000111 ], [ -124.158990112999959, 49.348059769000074 ], [ -124.159003308, 49.34772785100003 ], [ -124.159644346999968, 49.347738761000066 ], [ -124.159651891999928, 49.347548866000118 ], [ -124.162358588999922, 49.34759489000006 ], [ -124.162360813999953, 49.347603004000064 ], [ -124.162558901999887, 49.347816604000045 ], [ -124.162639801999902, 49.348300890000125 ], [ -124.162512303999961, 49.348698199000047 ], [ -124.162667481999932, 49.348930403000104 ], [ -124.162641505999957, 49.349578390000062 ], [ -124.162494103999919, 49.349688111000042 ], [ -124.162041596999984, 49.349792012000059 ], [ -124.161866892, 49.349955812000047 ], [ -124.161925709999963, 49.350108206000051 ], [ -124.162330593999968, 49.350391596000108 ], [ -124.16252951, 49.350667901000122 ], [ -124.162546477, 49.350784698000112 ], [ -124.162330776999937, 49.350975498000047 ], [ -124.162083011999982, 49.350996908000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8798334", "BldgCostT": "5858334", "sL_LossRatio": "0.732165708501251", "sL_AssetLoss": "26178.5", "sL_BldgLoss": "19167", "sL_StrLoss": "11939", "sL_NStrLoss": "7228", "sL_ContLoss": "7011.5", "geom_point": "0101000020E61000004D35AB257A055FC0BBBB8C6AAAA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.08261148899993, 49.293441802000103 ], [ -124.083955790999966, 49.293312195000112 ], [ -124.084754695999933, 49.293340596000064 ], [ -124.085265, 49.293453190000079 ], [ -124.085607404999948, 49.293314996000078 ], [ -124.086819293999952, 49.293430403000052 ], [ -124.087190318999944, 49.293398995000061 ], [ -124.087773000999931, 49.293618406000107 ], [ -124.087680091999914, 49.293763598000041 ], [ -124.087725690999932, 49.293978708000054 ], [ -124.08722039899996, 49.294190906000082 ], [ -124.087723203999957, 49.294464309000077 ], [ -124.088086616999988, 49.294784800000109 ], [ -124.088150276999954, 49.295118098000025 ], [ -124.088003004999962, 49.295334493000084 ], [ -124.087509620999938, 49.295465598000085 ], [ -124.087098505999933, 49.295478400000064 ], [ -124.085235078999943, 49.295189296000075 ], [ -124.08302671499996, 49.29417670100004 ], [ -124.082314609999969, 49.29372369700009 ], [ -124.082352085999943, 49.293544307000047 ], [ -124.08261148899993, 49.293441802000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209266333", "BldgCostT": "145288333", "sL_LossRatio": "0.862559485530547", "sL_AssetLoss": "202150", "sL_BldgLoss": "174366.4", "sL_StrLoss": "114661.4", "sL_NStrLoss": "59705", "sL_ContLoss": "27783.6", "geom_point": "0101000020E610000064D109DBAE095FC00DE2455750A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.167333690999925, 49.297052111 ], [ -124.16752040099999, 49.296762991000037 ], [ -124.167157206999931, 49.296540795000084 ], [ -124.167085592999982, 49.296388402000105 ], [ -124.167326287999913, 49.296116396000087 ], [ -124.166915895, 49.295653602000087 ], [ -124.166788582999956, 49.294952797000072 ], [ -124.166258583999962, 49.294058399000107 ], [ -124.165940989999967, 49.293944501000034 ], [ -124.16544650099992, 49.293950201000023 ], [ -124.164793300999946, 49.29365970000007 ], [ -124.164572814999957, 49.293679607000115 ], [ -124.164260320000025, 49.293863300000048 ], [ -124.164119111999938, 49.294260702000038 ], [ -124.163847707999977, 49.294397385000103 ], [ -124.163281012999931, 49.294267793000131 ], [ -124.162909307999897, 49.294280596000128 ], [ -124.16264359799996, 49.294139596000015 ], [ -124.162329794999962, 49.294242198000084 ], [ -124.161984299999943, 49.294155308000086 ], [ -124.16187050099991, 49.2940042910001 ], [ -124.162042989999975, 49.293705210000098 ], [ -124.16141911499993, 49.293468806000106 ], [ -124.161284204999959, 49.293595601000071 ], [ -124.161117900999969, 49.293544307000047 ], [ -124.160374393999973, 49.292382101000079 ], [ -124.16008609, 49.292366492000077 ], [ -124.160079992999925, 49.292114393000077 ], [ -124.159410495999964, 49.291734103000074 ], [ -124.158366382999972, 49.291762600000048 ], [ -124.157826923999906, 49.291436514000068 ], [ -124.157459304999975, 49.291214296000113 ], [ -124.157148184999926, 49.290885306000114 ], [ -124.157099699999947, 49.290543513000074 ], [ -124.156961214999953, 49.290509290000031 ], [ -124.156411310999928, 49.290460899000024 ], [ -124.155795698999938, 49.290591892000037 ], [ -124.155605712999915, 49.290711490000035 ], [ -124.15490138499996, 49.290645995000077 ], [ -124.154231087, 49.290761409000019 ], [ -124.15375698699999, 49.291044790000072 ], [ -124.153339485999936, 49.291507697000078 ], [ -124.153027209999962, 49.291627309000027 ], [ -124.152352695999966, 49.292192714000059 ], [ -124.152147601999928, 49.292248312000012 ], [ -124.151906883999956, 49.292555897000113 ], [ -124.150512209999945, 49.292893405000029 ], [ -124.150431590999972, 49.292984591000071 ], [ -124.150505012999972, 49.293145494000051 ], [ -124.150352906999927, 49.293183990000067 ], [ -124.14955159499999, 49.292984593000021 ], [ -124.148807694999945, 49.292353693000031 ], [ -124.148531782999953, 49.292275305000018 ], [ -124.147091893999942, 49.292496098000093 ], [ -124.145991587999973, 49.293037309000084 ], [ -124.145495405999952, 49.293070012000072 ], [ -124.14521480799999, 49.292785204000026 ], [ -124.144700488999945, 49.292520307000082 ], [ -124.144333420999914, 49.292154302000121 ], [ -124.144112906999965, 49.292094483000049 ], [ -124.143896806999976, 49.292249703000046 ], [ -124.143511319999959, 49.292279601000047 ], [ -124.142901590999884, 49.292097306000059 ], [ -124.142422708999931, 49.291624506000055 ], [ -124.142557685999947, 49.291497702000072 ], [ -124.142528101, 49.291372392000049 ], [ -124.142291093999987, 49.291267014000063 ], [ -124.142190418000013, 49.291060501000047 ], [ -124.141952900999939, 49.290928002000044 ], [ -124.141373510999969, 49.290204497000104 ], [ -124.141153688999921, 49.290136098000097 ], [ -124.141039614999968, 49.290100602000102 ], [ -124.140713711999965, 49.290193105000057 ], [ -124.140320796999944, 49.290503599000083 ], [ -124.139503495999946, 49.29020601100013 ], [ -124.138829103999953, 49.290257205000017 ], [ -124.138245798999932, 49.29001079500005 ], [ -124.137188000999984, 49.289976608000046 ], [ -124.136640600999939, 49.290134712000032 ], [ -124.136274201999967, 49.290336992000015 ], [ -124.136208899999986, 49.290507891000033 ], [ -124.136295706999974, 49.290695900000038 ], [ -124.135843715999926, 49.290735797000139 ], [ -124.135381480999939, 49.290443795 ], [ -124.135368082999932, 49.290372603000066 ], [ -124.135723619999979, 49.29030560100005 ], [ -124.135788286999968, 49.29015179500005 ], [ -124.135405394999964, 49.289607789000087 ], [ -124.135195608999979, 49.289456786000116 ], [ -124.134904886999948, 49.289405506000044 ], [ -124.134677097999926, 49.289056606000052 ], [ -124.134181584999936, 49.289052300000023 ], [ -124.13408411099999, 49.288991108000097 ], [ -124.134076209999989, 49.288639298000064 ], [ -124.134343203999919, 49.288331693000046 ], [ -124.134823496999914, 49.288236309000084 ], [ -124.134791709999931, 49.28807529000008 ], [ -124.134887601999964, 49.288019799000033 ], [ -124.135492492999973, 49.288095289000054 ], [ -124.135773381999982, 49.2882719 ], [ -124.136130697999974, 49.288313203000037 ], [ -124.136850411999887, 49.28792860100004 ], [ -124.137644, 49.287687999000056 ], [ -124.137941294999976, 49.287504211000062 ], [ -124.138000828999964, 49.287437977000131 ], [ -124.138490292999975, 49.28785109500005 ], [ -124.138493527999927, 49.287769205000089 ], [ -124.138554821999904, 49.28771439900008 ], [ -124.138963481999923, 49.287527894000092 ], [ -124.139070408999942, 49.287259696 ], [ -124.139453915999965, 49.286876501000059 ], [ -124.140292178999914, 49.287111500000037 ], [ -124.141468167999946, 49.287371275000055 ], [ -124.141984781999923, 49.287485394000043 ], [ -124.142189893999941, 49.287578996000022 ], [ -124.142760289999927, 49.288189312000142 ], [ -124.144331119999919, 49.289172300000082 ], [ -124.144995307999977, 49.289569095000033 ], [ -124.145978410999959, 49.289998296000064 ], [ -124.146333790999947, 49.290112403000066 ], [ -124.148522295999925, 49.290733290000013 ], [ -124.149013089999926, 49.29079480900009 ], [ -124.150479689999941, 49.290813597000067 ], [ -124.151941992999966, 49.290835987000023 ], [ -124.152354902999932, 49.290715200000072 ], [ -124.153170507999945, 49.290438871000042 ], [ -124.153399388999944, 49.29036130900009 ], [ -124.153812882999915, 49.290136295000075 ], [ -124.153838998999959, 49.290122085000107 ], [ -124.15432178399999, 49.289970094000097 ], [ -124.154839290999945, 49.289842108000038 ], [ -124.155351309999958, 49.289750898000115 ], [ -124.155820692999967, 49.289694094000012 ], [ -124.15619698099999, 49.289558297000042 ], [ -124.156528107999961, 49.28952430600004 ], [ -124.156826285999955, 49.289522200000114 ], [ -124.157653311, 49.289662397000022 ], [ -124.158164606999989, 49.289828600000064 ], [ -124.158461309999922, 49.289970501 ], [ -124.158888724999954, 49.290210107000078 ], [ -124.159041760999955, 49.290432570000121 ], [ -124.159050972999935, 49.290445994000137 ], [ -124.159238213999956, 49.290645505000015 ], [ -124.159586713999929, 49.290934991000114 ], [ -124.160193796999948, 49.291318886000106 ], [ -124.160702027999932, 49.29159633700003 ], [ -124.161084078, 49.291804894000052 ], [ -124.162539916999918, 49.290780002000076 ], [ -124.163965498999943, 49.291937687000051 ], [ -124.164041711999928, 49.292019763000091 ], [ -124.164209302999978, 49.292200203000057 ], [ -124.164838016, 49.292526010000117 ], [ -124.1650838, 49.293154009000091 ], [ -124.165097494999941, 49.29315529400008 ], [ -124.165502635999985, 49.293193590000065 ], [ -124.165769610999945, 49.293218804000091 ], [ -124.166133494999912, 49.29329519000013 ], [ -124.166722993999954, 49.293502291000024 ], [ -124.166980712999958, 49.293656197000111 ], [ -124.16733300599995, 49.29398889900002 ], [ -124.167809598, 49.294619998000094 ], [ -124.167999397999893, 49.294996807000089 ], [ -124.168271493999953, 49.295275111000144 ], [ -124.168629675999966, 49.29549359 ], [ -124.16975242599996, 49.296186907000099 ], [ -124.170540446999922, 49.296590130000034 ], [ -124.170865862999975, 49.296699149000048 ], [ -124.171208181999972, 49.296833685000081 ], [ -124.171732637, 49.296903747000066 ], [ -124.171733755999981, 49.296903898000018 ], [ -124.17174697399993, 49.296905679000055 ], [ -124.171748093999952, 49.296905831000096 ], [ -124.171803134999934, 49.296906252000078 ], [ -124.172328063999942, 49.296910357000058 ], [ -124.17231277499998, 49.297298256000019 ], [ -124.170292648, 49.297264060000039 ], [ -124.170248355999917, 49.298386504000078 ], [ -124.167701559999941, 49.298343338000045 ], [ -124.16746621, 49.297950800000081 ], [ -124.167529298999938, 49.297715796000013 ], [ -124.167333690999925, 49.297052111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25176577", "BldgCostT": "16387409", "sL_LossRatio": "0.837267541680555", "sL_AssetLoss": "79503.5", "sL_BldgLoss": "66565.7", "sL_StrLoss": "43636.7", "sL_NStrLoss": "22929", "sL_ContLoss": "12937.8", "geom_point": "0101000020E610000019FA0E1B380B5FC0A42C4B8DB3A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.177793377999976, 49.30477279600013 ], [ -124.17712848499994, 49.304634599000089 ], [ -124.176594394999981, 49.304748601000057 ], [ -124.176324987999976, 49.304949408 ], [ -124.175720910999971, 49.304963595000075 ], [ -124.175552807999978, 49.304839687000012 ], [ -124.175575194999979, 49.304623214000053 ], [ -124.175180806999933, 49.304294197000075 ], [ -124.17497531, 49.304278600000131 ], [ -124.174674199999984, 49.304389707000034 ], [ -124.174563911999897, 49.304319906000039 ], [ -124.17428251399997, 49.304087701000128 ], [ -124.173777591999936, 49.303086504000113 ], [ -124.173575701999965, 49.302106591000076 ], [ -124.173069685999934, 49.30166229600006 ], [ -124.172812100000016, 49.301215085000131 ], [ -124.172133091999939, 49.301007196000079 ], [ -124.170911637999964, 49.301003414000022 ], [ -124.170958497999905, 49.299815515000077 ], [ -124.176451531999987, 49.299908373000079 ], [ -124.176365976999975, 49.302083613000043 ], [ -124.176441500999914, 49.302084888000138 ], [ -124.176445655999942, 49.301979257000028 ], [ -124.176687661999907, 49.301983341000032 ], [ -124.1766534019999, 49.302326300000068 ], [ -124.176781988999949, 49.302551692000137 ], [ -124.177068105999922, 49.302788794000023 ], [ -124.177354808999894, 49.302941290000064 ], [ -124.177479096999932, 49.30300616600006 ], [ -124.178658458999934, 49.303743121000124 ], [ -124.179106125, 49.304204837000022 ], [ -124.179264827999958, 49.30459993100007 ], [ -124.179266631999965, 49.305647113000042 ], [ -124.179246795999973, 49.305923480000118 ], [ -124.179086991999895, 49.305973389000016 ], [ -124.178753699999945, 49.305867994000067 ], [ -124.178183599999969, 49.305037711000111 ], [ -124.177793377999976, 49.30477279600013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100073327", "BldgCostT": "65357409", "sL_LossRatio": "0.918055960193968", "sL_AssetLoss": "127068.18", "sL_BldgLoss": "116655.7", "sL_StrLoss": "98455.7", "sL_NStrLoss": "18200", "sL_ContLoss": "10412.48", "geom_point": "0101000020E610000001AE2B66040A5FC07EFCB5270EA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.166980712999958, 49.293656197000111 ], [ -124.166722993999954, 49.293502291000024 ], [ -124.166133494999912, 49.29329519000013 ], [ -124.165769610999945, 49.293218804000091 ], [ -124.165502635999985, 49.293193590000065 ], [ -124.165097494999941, 49.29315529400008 ], [ -124.1650838, 49.293154009000091 ], [ -124.164838016, 49.292526010000117 ], [ -124.164209302999978, 49.292200203000057 ], [ -124.164041711999928, 49.292019763000091 ], [ -124.163965498999943, 49.291937687000051 ], [ -124.162539916999918, 49.290780002000076 ], [ -124.161084078, 49.291804894000052 ], [ -124.160702027999932, 49.29159633700003 ], [ -124.160193796999948, 49.291318886000106 ], [ -124.159586713999929, 49.290934991000114 ], [ -124.159238213999956, 49.290645505000015 ], [ -124.159050972999935, 49.290445994000137 ], [ -124.159041760999955, 49.290432570000121 ], [ -124.158888724999954, 49.290210107000078 ], [ -124.158461309999922, 49.289970501 ], [ -124.158164606999989, 49.289828600000064 ], [ -124.157653311, 49.289662397000022 ], [ -124.156826285999955, 49.289522200000114 ], [ -124.156528107999961, 49.28952430600004 ], [ -124.15619698099999, 49.289558297000042 ], [ -124.155820692999967, 49.289694094000012 ], [ -124.155351309999958, 49.289750898000115 ], [ -124.154839290999945, 49.289842108000038 ], [ -124.15432178399999, 49.289970094000097 ], [ -124.153838998999959, 49.290122085000107 ], [ -124.153812882999915, 49.290136295000075 ], [ -124.153399388999944, 49.29036130900009 ], [ -124.153170507999945, 49.290438871000042 ], [ -124.152354902999932, 49.290715200000072 ], [ -124.151941992999966, 49.290835987000023 ], [ -124.150479689999941, 49.290813597000067 ], [ -124.149013089999926, 49.29079480900009 ], [ -124.148522295999925, 49.290733290000013 ], [ -124.146333790999947, 49.290112403000066 ], [ -124.145978410999959, 49.289998296000064 ], [ -124.144995307999977, 49.289569095000033 ], [ -124.144331119999919, 49.289172300000082 ], [ -124.142760289999927, 49.288189312000142 ], [ -124.142189893999941, 49.287578996000022 ], [ -124.141984781999923, 49.287485394000043 ], [ -124.141468167999946, 49.287371275000055 ], [ -124.140292178999914, 49.287111500000037 ], [ -124.139453915999965, 49.286876501000059 ], [ -124.138526489999933, 49.286607390000022 ], [ -124.138200505, 49.286512807000094 ], [ -124.137984592999942, 49.286415417000143 ], [ -124.137964321999974, 49.286402308000049 ], [ -124.137714085999988, 49.286240600000035 ], [ -124.136947502999973, 49.285490101000086 ], [ -124.136303928999951, 49.284925303000122 ], [ -124.135692691999949, 49.284478099000061 ], [ -124.13600749499993, 49.284370101000029 ], [ -124.136050508999929, 49.284364082000145 ], [ -124.136265806999972, 49.284333992000086 ], [ -124.136437399, 49.284337005000104 ], [ -124.136641391999916, 49.284388203000056 ], [ -124.13701279699994, 49.284548600000079 ], [ -124.138475714999984, 49.285304807000088 ], [ -124.140380515999979, 49.28593630100012 ], [ -124.140855156000015, 49.286143070000044 ], [ -124.141757702999897, 49.286536206000108 ], [ -124.142011101999984, 49.286554101000021 ], [ -124.142260087999958, 49.286512392000105 ], [ -124.142435223999954, 49.286428097000076 ], [ -124.142542391999967, 49.28632279300011 ], [ -124.142645717999983, 49.28607790500007 ], [ -124.14302477899993, 49.285872002000069 ], [ -124.142039005999962, 49.285105101000106 ], [ -124.141861721999973, 49.284968805000084 ], [ -124.141768719999959, 49.284717905000022 ], [ -124.141836907999931, 49.284558804 ], [ -124.141982669999919, 49.284453293000112 ], [ -124.142180809999957, 49.284376489000103 ], [ -124.14238449599992, 49.284366496000153 ], [ -124.142578701999966, 49.284389701000102 ], [ -124.142790089999934, 49.28446079900003 ], [ -124.144337810999957, 49.285401190000044 ], [ -124.144670116999947, 49.285507787000029 ], [ -124.144995183999967, 49.285553896000124 ], [ -124.145464570999962, 49.28555651300006 ], [ -124.145698408999948, 49.285557793000102 ], [ -124.146817268999939, 49.286021788000021 ], [ -124.147144097999984, 49.28633618900006 ], [ -124.147176886999929, 49.2864781110001 ], [ -124.147114312999932, 49.286739001000036 ], [ -124.14683320099999, 49.287103309000088 ], [ -124.146727580999965, 49.287408401000079 ], [ -124.147007124999931, 49.28741395100009 ], [ -124.147740682999981, 49.287428499000043 ], [ -124.147756454, 49.287428795000046 ], [ -124.148902819999989, 49.28745090300005 ], [ -124.149026902999964, 49.287453290000059 ], [ -124.149355482999951, 49.287413007000083 ], [ -124.149584338999901, 49.287350941000135 ], [ -124.149820800000015, 49.287286813000087 ], [ -124.148751884999967, 49.285917434000069 ], [ -124.148935585999979, 49.285840363000048 ], [ -124.149103023999928, 49.285839021000108 ], [ -124.14910699099994, 49.28600975800007 ], [ -124.149519433999941, 49.286005656000079 ], [ -124.149515482999931, 49.285835710000114 ], [ -124.150040915999966, 49.285831492000113 ], [ -124.151584867999958, 49.286123518000132 ], [ -124.151606779999938, 49.287064322000028 ], [ -124.152019231999972, 49.287060210000085 ], [ -124.152025517999945, 49.287330010000062 ], [ -124.152437970999969, 49.287325897000073 ], [ -124.152448629999967, 49.287783172000033 ], [ -124.153129351999965, 49.287794814000065 ], [ -124.153145222999939, 49.287396239000081 ], [ -124.153881995999953, 49.287408836000068 ], [ -124.15388399699999, 49.287358557000061 ], [ -124.15668396199996, 49.287406381000082 ], [ -124.156706914999944, 49.28682882600009 ], [ -124.157458596999973, 49.286841652000092 ], [ -124.157665134999959, 49.286863584000059 ], [ -124.159415149, 49.286944306000052 ], [ -124.160115513999983, 49.286878160000064 ], [ -124.160245295999971, 49.286850206000047 ], [ -124.161192442999933, 49.286485539000111 ], [ -124.163349057999952, 49.286522235000099 ], [ -124.163447508, 49.286582797000058 ], [ -124.1634600309999, 49.286601900000015 ], [ -124.163442963999969, 49.287032921000019 ], [ -124.163817813999941, 49.28703929300007 ], [ -124.164158569999969, 49.287316689000136 ], [ -124.164198497000015, 49.287331839000061 ], [ -124.164183521999973, 49.287710198000092 ], [ -124.164469143999895, 49.287715052000067 ], [ -124.164442770999983, 49.288381433000097 ], [ -124.165460747999944, 49.288398728000125 ], [ -124.16542687899999, 49.289254957000011 ], [ -124.166395565999892, 49.289271406000061 ], [ -124.166330855999931, 49.290908079000083 ], [ -124.166450463999979, 49.290910109 ], [ -124.166448543999948, 49.290958659000111 ], [ -124.167016244999928, 49.290968294000052 ], [ -124.16701048, 49.291114178000029 ], [ -124.168418202999987, 49.291138059000076 ], [ -124.168417210999948, 49.291163166000089 ], [ -124.168934984999964, 49.291171944000041 ], [ -124.168930419999938, 49.291287602000111 ], [ -124.169598666999946, 49.291298928000074 ], [ -124.169588012999924, 49.291568875000046 ], [ -124.17016276399994, 49.291578614000066 ], [ -124.170129921999944, 49.292410919000055 ], [ -124.170784091999948, 49.292422000000109 ], [ -124.170767822999906, 49.29283446500007 ], [ -124.171224, 49.292842189000069 ], [ -124.171205125999933, 49.293320817000044 ], [ -124.171528018999965, 49.293326283000056 ], [ -124.171513924999914, 49.293683741000052 ], [ -124.172454605, 49.293699660000115 ], [ -124.172328063999942, 49.296910357000058 ], [ -124.171803134999934, 49.296906252000078 ], [ -124.171748093999952, 49.296905831000096 ], [ -124.17174697399993, 49.296905679000055 ], [ -124.171733755999981, 49.296903898000018 ], [ -124.171732637, 49.296903747000066 ], [ -124.171208181999972, 49.296833685000081 ], [ -124.170865862999975, 49.296699149000048 ], [ -124.170540446999922, 49.296590130000034 ], [ -124.16975242599996, 49.296186907000099 ], [ -124.168629675999966, 49.29549359 ], [ -124.168271493999953, 49.295275111000144 ], [ -124.167999397999893, 49.294996807000089 ], [ -124.167809598, 49.294619998000094 ], [ -124.16733300599995, 49.29398889900002 ], [ -124.166980712999958, 49.293656197000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72384084", "BldgCostT": "50888334", "sL_LossRatio": "0.962809583325561", "sL_AssetLoss": "64328.4", "sL_BldgLoss": "61936", "sL_StrLoss": "39560", "sL_NStrLoss": "22376", "sL_ContLoss": "2392.4", "geom_point": "0101000020E6100000EEE724C6780B5FC0DF48C94058A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.180266903999936, 49.289841618000018 ], [ -124.180780227999932, 49.289850265000041 ], [ -124.180855480999952, 49.292562530000019 ], [ -124.18081799199993, 49.292574799000072 ], [ -124.180683554, 49.292651399000107 ], [ -124.180459309999932, 49.292779159000133 ], [ -124.178629173999965, 49.293821858000044 ], [ -124.177747078999943, 49.293806982000028 ], [ -124.177888476999925, 49.290208359000054 ], [ -124.178831682999913, 49.290224266000109 ], [ -124.178837247999923, 49.290082583000078 ], [ -124.179614507999958, 49.290095685000061 ], [ -124.179619822999982, 49.28996030200004 ], [ -124.180261822999967, 49.289971121000093 ], [ -124.180266903999936, 49.289841618000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48755417", "BldgCostT": "32941667", "sL_LossRatio": "0.820849436661918", "sL_AssetLoss": "185572.4", "sL_BldgLoss": "152327", "sL_StrLoss": "104360", "sL_NStrLoss": "47967", "sL_ContLoss": "33245.4", "geom_point": "0101000020E6100000DA4812842B0B5FC0DFBFFDA986A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.178575337, 49.288419318000095 ], [ -124.178578593999973, 49.288336405000109 ], [ -124.176988383999984, 49.288309577000071 ], [ -124.176994709999988, 49.28814866700003 ], [ -124.173740573999908, 49.288093693000064 ], [ -124.173754995999928, 49.287727470000092 ], [ -124.168439201999945, 49.287637456000027 ], [ -124.168474384, 49.286746552000103 ], [ -124.167695328999969, 49.286733339000087 ], [ -124.167724446999927, 49.285996275000045 ], [ -124.167837484999936, 49.283134691000051 ], [ -124.168530325999981, 49.283146443000078 ], [ -124.168569353999885, 49.282157954000063 ], [ -124.168751985999975, 49.28220249200006 ], [ -124.169599609999963, 49.282305997000037 ], [ -124.170288516999932, 49.282358207000087 ], [ -124.171058616999943, 49.28251070800011 ], [ -124.171566795999965, 49.282685905000086 ], [ -124.171971325999934, 49.28290013900007 ], [ -124.173098114000013, 49.283496887000112 ], [ -124.173406902999943, 49.28329319900007 ], [ -124.177077688999972, 49.282623310000055 ], [ -124.178062172999915, 49.282630576000052 ], [ -124.179807853999989, 49.282643459000049 ], [ -124.180870605999957, 49.282651302000083 ], [ -124.180812289999963, 49.283934666000057 ], [ -124.180770527, 49.28485429900006 ], [ -124.18076104099994, 49.285052884000031 ], [ -124.180739215999921, 49.285510089000105 ], [ -124.180694950999921, 49.286494572000088 ], [ -124.180694591999952, 49.286633935000118 ], [ -124.180693933999962, 49.28673958600006 ], [ -124.180741543999943, 49.288455828000089 ], [ -124.178575337, 49.288419318000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225813429", "BldgCostT": "151464987", "sL_LossRatio": "0.843490118506331", "sL_AssetLoss": "743091.1", "sL_BldgLoss": "626790", "sL_StrLoss": "372213", "sL_NStrLoss": "254577", "sL_ContLoss": "116301.1", "geom_point": "0101000020E6100000D50E90796E0B5FC024CE6129D8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.180855480999952, 49.292562530000019 ], [ -124.180780227999932, 49.289850265000041 ], [ -124.185216866999937, 49.289924899000077 ], [ -124.18523658099997, 49.289421142000116 ], [ -124.185054621999925, 49.289418085000129 ], [ -124.185158432999955, 49.286765206000076 ], [ -124.184889477999917, 49.286760686000086 ], [ -124.184897376999956, 49.286558829000128 ], [ -124.184143994999928, 49.286546166000015 ], [ -124.184067036, 49.288511790000058 ], [ -124.180741543999943, 49.288455828000089 ], [ -124.180693933999962, 49.28673958600006 ], [ -124.180694591999952, 49.286633935000118 ], [ -124.180694950999921, 49.286494572000088 ], [ -124.180739215999921, 49.285510089000105 ], [ -124.18076104099994, 49.285052884000031 ], [ -124.180770527, 49.28485429900006 ], [ -124.180812289999963, 49.283934666000057 ], [ -124.180870605999957, 49.282651302000083 ], [ -124.179807853999989, 49.282643459000049 ], [ -124.178062172999915, 49.282630576000052 ], [ -124.177077688999972, 49.282623310000055 ], [ -124.173406902999943, 49.28329319900007 ], [ -124.173098114000013, 49.283496887000112 ], [ -124.171971325999934, 49.28290013900007 ], [ -124.171566795999965, 49.282685905000086 ], [ -124.171058616999943, 49.28251070800011 ], [ -124.170288516999932, 49.282358207000087 ], [ -124.169599609999963, 49.282305997000037 ], [ -124.168751985999975, 49.28220249200006 ], [ -124.168569353999885, 49.282157954000063 ], [ -124.168627447999981, 49.280686559000024 ], [ -124.168412751999966, 49.280688731000083 ], [ -124.167958144999943, 49.280693328000069 ], [ -124.167937524, 49.279820290000025 ], [ -124.166692066999971, 49.279799152000052 ], [ -124.166686451999936, 49.279941243000103 ], [ -124.166168884999948, 49.279932456000026 ], [ -124.166162239999906, 49.280100556000043 ], [ -124.165484436999961, 49.280089043000089 ], [ -124.165478019999938, 49.280251273000033 ], [ -124.164940613999974, 49.280242142000127 ], [ -124.164935706999984, 49.280366186000066 ], [ -124.162637269999934, 49.280327104000079 ], [ -124.162634115999964, 49.280406743000071 ], [ -124.158203780999941, 49.280331271000058 ], [ -124.158181567999989, 49.280890751000172 ], [ -124.15269082199994, 49.280796963000029 ], [ -124.15283412399998, 49.277198303000056 ], [ -124.154993951, 49.277235229000077 ], [ -124.155179694, 49.277313414000055 ], [ -124.15628459, 49.277575411000022 ], [ -124.156968368999927, 49.277795791000095 ], [ -124.157092798999898, 49.277835907000032 ], [ -124.157412387, 49.277986307000106 ], [ -124.158178405999976, 49.278584497000089 ], [ -124.158420672999981, 49.278701295000083 ], [ -124.158834788999982, 49.278900898000074 ], [ -124.159689013, 49.2791818990001 ], [ -124.159729420999938, 49.279190853000081 ], [ -124.160142387999898, 49.27928239200007 ], [ -124.160786086, 49.279330296000055 ], [ -124.161428204999936, 49.279313286000068 ], [ -124.161964713999964, 49.279222498000109 ], [ -124.162459394000024, 49.279044601000066 ], [ -124.162204919999951, 49.278812498000015 ], [ -124.161574469999906, 49.278429900000013 ], [ -124.161476811999961, 49.278260790000068 ], [ -124.161766902999958, 49.278217994000023 ], [ -124.16247080299999, 49.278305594000116 ], [ -124.162949806999947, 49.278280493000061 ], [ -124.163223600999956, 49.278199596000029 ], [ -124.164690890999935, 49.277497108000034 ], [ -124.165511990999946, 49.277398595000129 ], [ -124.16565411399999, 49.277347791000103 ], [ -124.16597679299997, 49.277105785000096 ], [ -124.16610160499998, 49.277076412000063 ], [ -124.16623343799999, 49.277068675000088 ], [ -124.166459508999978, 49.277055382000043 ], [ -124.167205418999941, 49.277193191000087 ], [ -124.16744831199999, 49.277301798000103 ], [ -124.167560491999964, 49.277453995000087 ], [ -124.167562112999931, 49.277654807000069 ], [ -124.168233822999966, 49.277585206000069 ], [ -124.168259948999932, 49.277579165000134 ], [ -124.168462504999937, 49.277532400000062 ], [ -124.168706488999931, 49.277440206000058 ], [ -124.168852605999987, 49.277045588000121 ], [ -124.168834116999975, 49.276469094000042 ], [ -124.168622812999942, 49.275734508000014 ], [ -124.168633813999946, 49.275629404000043 ], [ -124.168718984999927, 49.275489492000055 ], [ -124.169193519999951, 49.275193198000089 ], [ -124.169658585999954, 49.275518894000079 ], [ -124.169881294999954, 49.27561809600008 ], [ -124.170595013, 49.275804887000071 ], [ -124.170938600999932, 49.275869193000091 ], [ -124.171442088999953, 49.275918298000136 ], [ -124.171866493999943, 49.276021809000049 ], [ -124.172608984, 49.276002794000092 ], [ -124.172756502999931, 49.27595310300007 ], [ -124.172843095999937, 49.275847396000074 ], [ -124.172891692999912, 49.2752765910001 ], [ -124.17298870800002, 49.274834406000139 ], [ -124.172972925999929, 49.274794916000097 ], [ -124.172936212999957, 49.274703005000021 ], [ -124.172809418999961, 49.27457479200006 ], [ -124.171603385999944, 49.273987203000097 ], [ -124.171312689999979, 49.273801305000049 ], [ -124.171065790999975, 49.273549600000102 ], [ -124.170835948, 49.273188965000031 ], [ -124.17065986199998, 49.272912680000076 ], [ -124.170654491999954, 49.272904305000104 ], [ -124.170610607999933, 49.272541612000047 ], [ -124.170592303999967, 49.272390111000099 ], [ -124.171663424999934, 49.272605194000107 ], [ -124.172303413999941, 49.27284059700002 ], [ -124.172935595999931, 49.273391701000072 ], [ -124.173582309999972, 49.273474301000107 ], [ -124.173746599999973, 49.273437302000055 ], [ -124.17374500699998, 49.273364683000104 ], [ -124.173633688999942, 49.273284905000061 ], [ -124.173178896999943, 49.273226505000167 ], [ -124.173348080999943, 49.272943445000095 ], [ -124.175693890999952, 49.273414390000077 ], [ -124.176942626999931, 49.273725694000049 ], [ -124.177001096999959, 49.273736360000029 ], [ -124.177587236999941, 49.273743546000105 ], [ -124.180104783, 49.27422778000011 ], [ -124.18006097199995, 49.275344592000025 ], [ -124.18111671399997, 49.275362381000079 ], [ -124.181150252999927, 49.274506897 ], [ -124.181595041999969, 49.274514389000103 ], [ -124.18212780499999, 49.274616844000036 ], [ -124.182245876999914, 49.274525348000068 ], [ -124.185427115999957, 49.274578857000023 ], [ -124.185454032999985, 49.273890645000101 ], [ -124.183558759000022, 49.273858777000029 ], [ -124.185121920999919, 49.273280773000046 ], [ -124.186686046999952, 49.27272277800008 ], [ -124.187353391999977, 49.272557719000069 ], [ -124.188339050999943, 49.272313890000078 ], [ -124.189300552999924, 49.272045648000123 ], [ -124.190913834999961, 49.271595507000022 ], [ -124.192249615999927, 49.271222778000073 ], [ -124.192615466999925, 49.27112069300005 ], [ -124.192726133999969, 49.27145807000003 ], [ -124.19293459, 49.272093806000029 ], [ -124.192941085999976, 49.272349610000028 ], [ -124.192931204999923, 49.272428689000094 ], [ -124.192757895999961, 49.272850086000105 ], [ -124.19234035, 49.273865418000106 ], [ -124.192278867999974, 49.274014792000145 ], [ -124.192262977999945, 49.274052729000068 ], [ -124.192098658999953, 49.274444852000023 ], [ -124.19170302899991, 49.275398817000081 ], [ -124.190927796999944, 49.277245783000055 ], [ -124.190749405999938, 49.277670671000067 ], [ -124.190691838999967, 49.277807692000046 ], [ -124.190306293999967, 49.27872596600011 ], [ -124.190257008999964, 49.278843279000107 ], [ -124.190137295999961, 49.279029292000111 ], [ -124.190070666999958, 49.279132789000123 ], [ -124.190034194999953, 49.279189470000084 ], [ -124.190023087999947, 49.279206707000064 ], [ -124.189314726999982, 49.279878749000019 ], [ -124.189088784999925, 49.280093105000141 ], [ -124.189066005999933, 49.280216507000034 ], [ -124.189054020999919, 49.280281604000088 ], [ -124.189068190999933, 49.280476794000073 ], [ -124.189083409999981, 49.280686114000105 ], [ -124.18910881099994, 49.281035883000094 ], [ -124.189132809999961, 49.281366350000049 ], [ -124.18917279599998, 49.281916604000052 ], [ -124.189134304999925, 49.28212848200014 ], [ -124.188951188999965, 49.282420696000081 ], [ -124.18831008599993, 49.283783694000086 ], [ -124.188156998999958, 49.284186307000013 ], [ -124.188135419999938, 49.284492905000022 ], [ -124.188190591999899, 49.284802596000098 ], [ -124.189339307999916, 49.28655579900002 ], [ -124.189396157999965, 49.286616013000071 ], [ -124.189397446999934, 49.286617368000059 ], [ -124.18950681599992, 49.286733192000085 ], [ -124.189342199999942, 49.286797995000043 ], [ -124.189086603999968, 49.287045814000095 ], [ -124.189062756999974, 49.287537646000075 ], [ -124.189062149999984, 49.287549938000083 ], [ -124.189030287, 49.288207103000033 ], [ -124.189012273999978, 49.288439076000088 ], [ -124.18884557899996, 49.290582147000052 ], [ -124.185735461999954, 49.290529952000021 ], [ -124.185723818999918, 49.290827572000097 ], [ -124.186023018999975, 49.290832598000122 ], [ -124.18599898799999, 49.291446989000121 ], [ -124.18669543099999, 49.291458683 ], [ -124.18667059199997, 49.292093965000042 ], [ -124.186327715999965, 49.291972502000093 ], [ -124.186110904999964, 49.291974287000137 ], [ -124.185537387999901, 49.29197900500003 ], [ -124.184145803999968, 49.292185212000092 ], [ -124.181441813999982, 49.292432307000055 ], [ -124.181079595999947, 49.29248918400009 ], [ -124.180855480999952, 49.292562530000019 ] ], [ [ -124.18514048599998, 49.282069667000023 ], [ -124.185157063999952, 49.281645950000033 ], [ -124.184068321999987, 49.281627647000036 ], [ -124.184067981999959, 49.281636318000096 ], [ -124.184071304999975, 49.281775116000027 ], [ -124.18477861799991, 49.281787007000055 ], [ -124.184732908999948, 49.282955027000106 ], [ -124.184837065999915, 49.282956778000049 ], [ -124.18484953699999, 49.282638112000015 ], [ -124.18494824599999, 49.282639770000081 ], [ -124.184970665999955, 49.282066812000053 ], [ -124.18514048599998, 49.282069667000023 ] ], [ [ -124.182788471999984, 49.280128117000118 ], [ -124.182798872999953, 49.279862613000041 ], [ -124.181599272999961, 49.279842419000062 ], [ -124.18166691799992, 49.278116687000114 ], [ -124.181033107999937, 49.278106013000048 ], [ -124.180999562999943, 49.278961492000064 ], [ -124.180159062, 49.278947330000094 ], [ -124.180118186999948, 49.279989212000018 ], [ -124.177414303999953, 49.279943609000036 ], [ -124.177410483999935, 49.280040878000108 ], [ -124.174687850999987, 49.27999489100003 ], [ -124.174645549, 49.281069917000131 ], [ -124.176729079999987, 49.281105115000081 ], [ -124.176716936999966, 49.281414042000051 ], [ -124.177208653999969, 49.281409033000081 ], [ -124.177248468999963, 49.280395816000087 ], [ -124.178621264999933, 49.280418979000054 ], [ -124.178635431999936, 49.280058150000038 ], [ -124.182788471999984, 49.280128117000118 ] ], [ [ -124.18794902399992, 49.274824393000046 ], [ -124.187950572999924, 49.274784719000088 ], [ -124.186633924999981, 49.274762614000053 ], [ -124.186601821999929, 49.275583931000014 ], [ -124.187553936999933, 49.275599917000058 ], [ -124.187567854999898, 49.275243657000047 ], [ -124.187769653999965, 49.275247045000107 ], [ -124.187786270999965, 49.2748216620001 ], [ -124.18794902399992, 49.274824393000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89906584", "BldgCostT": "62763334", "sL_LossRatio": "0.835295494937547", "sL_AssetLoss": "27727.074", "sL_BldgLoss": "23160.3", "sL_StrLoss": "18274.9", "sL_NStrLoss": "4885.4", "sL_ContLoss": "4566.774", "geom_point": "0101000020E6100000529E0E9EE8085FC0217E171991A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.140770976999988, 49.282314281000041 ], [ -124.140764753999989, 49.282044479000056 ], [ -124.14015845199998, 49.282050465000054 ], [ -124.139348921999954, 49.281619802000108 ], [ -124.138947224, 49.281702898000091 ], [ -124.138579007999979, 49.281702812000013 ], [ -124.138203975999929, 49.281634201000031 ], [ -124.137496366999969, 49.281467591000116 ], [ -124.136496181000027, 49.281232097000071 ], [ -124.136132270999937, 49.281066191000079 ], [ -124.136118510999935, 49.281059896000073 ], [ -124.135917300999935, 49.280943135000022 ], [ -124.135742689000026, 49.280841799000051 ], [ -124.135417511999918, 49.28059310400009 ], [ -124.135196708, 49.280346294000076 ], [ -124.134561889999972, 49.279291005000097 ], [ -124.134535098999933, 49.279137506000048 ], [ -124.134679397999903, 49.278247786000058 ], [ -124.134845888999976, 49.277693395000014 ], [ -124.134866197999955, 49.277565904000028 ], [ -124.13477220599998, 49.277135696000094 ], [ -124.13496271299999, 49.276667285000016 ], [ -124.134990702999929, 49.276484097000058 ], [ -124.134942983999949, 49.276234818000113 ], [ -124.134823477999987, 49.276030093000053 ], [ -124.134660007999983, 49.275862602000139 ], [ -124.134396607999918, 49.275717594000113 ], [ -124.134657908999941, 49.275469095000076 ], [ -124.135048688999916, 49.275211194000107 ], [ -124.135532620999953, 49.274962900000133 ], [ -124.136417091999959, 49.274755793000068 ], [ -124.136888814999963, 49.274707302000074 ], [ -124.138148638999937, 49.274732599000089 ], [ -124.13876034599997, 49.274744699000124 ], [ -124.139735263, 49.274763971000041 ], [ -124.139818877999943, 49.274765629000129 ], [ -124.143073011999931, 49.274829909000097 ], [ -124.14308329899994, 49.275274981000102 ], [ -124.143495651999942, 49.275270900000081 ], [ -124.143501888999978, 49.275540702000129 ], [ -124.143914244999934, 49.275536621000086 ], [ -124.143932966999927, 49.276346025000073 ], [ -124.14434532699994, 49.276341942000059 ], [ -124.144364055999944, 49.277151346000096 ], [ -124.143951686999955, 49.2771554300001 ], [ -124.143964168999958, 49.2776950330001 ], [ -124.143551795999926, 49.277699115000104 ], [ -124.143558032999977, 49.277968917000088 ], [ -124.142320904999934, 49.277981156000081 ], [ -124.142333368999971, 49.278520759000045 ], [ -124.142745750999907, 49.278516682000038 ], [ -124.142751984999947, 49.278786482000044 ], [ -124.143164366999954, 49.278782403000037 ], [ -124.143170602999987, 49.279052204000081 ], [ -124.143582989999985, 49.279048123000102 ], [ -124.14360794599996, 49.28012733000007 ], [ -124.142370762999974, 49.28013956899999 ], [ -124.142376995999953, 49.280409370000051 ], [ -124.141964598999934, 49.280413448000111 ], [ -124.141977059999988, 49.280953051 ], [ -124.14032745499999, 49.28096934400002 ], [ -124.140321233999927, 49.28069954200005 ], [ -124.139908833999968, 49.280703612000103 ], [ -124.139890176000023, 49.279894206000051 ], [ -124.14030257, 49.279890137000059 ], [ -124.140296348999968, 49.279620335000104 ], [ -124.13988395799997, 49.279624404000053 ], [ -124.139877739999946, 49.27935460300008 ], [ -124.139052961999965, 49.279362738000088 ], [ -124.139059175999989, 49.27963253900009 ], [ -124.138646786999971, 49.279636604000132 ], [ -124.13865299899993, 49.279906406000066 ], [ -124.137828212999963, 49.279914532000113 ], [ -124.137834419999976, 49.280184334000111 ], [ -124.13742202499995, 49.280188394000135 ], [ -124.137428231999962, 49.280458197000023 ], [ -124.137015833999925, 49.280462256000135 ], [ -124.137022035999948, 49.280732058000119 ], [ -124.137434436999968, 49.280727999000085 ], [ -124.137440643999952, 49.280997800000122 ], [ -124.138677848999961, 49.280985614000102 ], [ -124.138684060999935, 49.281255416000079 ], [ -124.141158484999949, 49.281231003000116 ], [ -124.141164709999941, 49.281500804000089 ], [ -124.141989521999932, 49.281492653000093 ], [ -124.142008214999962, 49.282302058000028 ], [ -124.140770976999988, 49.282314281000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.991406515511968", "sL_AssetLoss": "617.91", "sL_BldgLoss": "612.6", "sL_StrLoss": "574", "sL_NStrLoss": "38.6", "sL_ContLoss": "5.31", "geom_point": "0101000020E6100000E914BBE8310A5FC064E7D096B1A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.157971687, 49.286430656000043 ], [ -124.161192442999933, 49.286485539000111 ], [ -124.160245295999971, 49.286850206000047 ], [ -124.160115513999983, 49.286878160000064 ], [ -124.159415149, 49.286944306000052 ], [ -124.157665134999959, 49.286863584000059 ], [ -124.157458596999973, 49.286841652000092 ], [ -124.157955027999918, 49.28685012000004 ], [ -124.157971687, 49.286430656000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "315187476", "BldgCostT": "212686279", "sL_LossRatio": "0.869453844831834", "sL_AssetLoss": "397412.7", "sL_BldgLoss": "345532", "sL_StrLoss": "261547", "sL_NStrLoss": "83985", "sL_ContLoss": "51880.7", "geom_point": "0101000020E61000007542013E6C085FC03E4B0CD9ABA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.137053055999971, 49.282081068000075 ], [ -124.137046851999955, 49.281811266000041 ], [ -124.136222033999942, 49.281819381000034 ], [ -124.13621583399997, 49.281549579000057 ], [ -124.135803427999974, 49.28155363300003 ], [ -124.135809624999936, 49.281823435000057 ], [ -124.136222033999942, 49.281819381000034 ], [ -124.136228233999958, 49.282089182000078 ], [ -124.137053055999971, 49.282081068000075 ], [ -124.137059260999962, 49.282350870000094 ], [ -124.137884086999946, 49.282342750000069 ], [ -124.137890295999938, 49.282612552000082 ], [ -124.138302711999955, 49.282608489000083 ], [ -124.138308921999936, 49.282878290000092 ], [ -124.138721338999972, 49.282874227000036 ], [ -124.138727553999942, 49.283144029000063 ], [ -124.139552392999974, 49.28313589600004 ], [ -124.139558611, 49.283405698000109 ], [ -124.140795876, 49.283393488000065 ], [ -124.140802101999938, 49.283663289000053 ], [ -124.141214523999977, 49.283659216000032 ], [ -124.141220752, 49.283929018000087 ], [ -124.1432828799999, 49.283908631000045 ], [ -124.143289118999959, 49.284178432000026 ], [ -124.143701546999949, 49.284174351000054 ], [ -124.143707786999983, 49.284444152000084 ], [ -124.144120217999912, 49.284440069000013 ], [ -124.144126460000024, 49.284709870000064 ], [ -124.144538891999915, 49.284705786000082 ], [ -124.144545138999931, 49.284975586000094 ], [ -124.146194874999964, 49.284959232000119 ], [ -124.146201129999938, 49.285229033000043 ], [ -124.147026000999972, 49.28522084700009 ], [ -124.147032260999964, 49.285490648000064 ], [ -124.14868201199999, 49.28547425700004 ], [ -124.148688281999924, 49.285744058000049 ], [ -124.148924759999929, 49.285741707000113 ], [ -124.148935585999979, 49.285840363000048 ], [ -124.148751884999967, 49.285917434000069 ], [ -124.149820800000015, 49.287286813000087 ], [ -124.149584338999901, 49.287350941000135 ], [ -124.149355482999951, 49.287413007000083 ], [ -124.149026902999964, 49.287453290000059 ], [ -124.148902819999989, 49.28745090300005 ], [ -124.147756454, 49.287428795000046 ], [ -124.147740682999981, 49.287428499000043 ], [ -124.147007124999931, 49.28741395100009 ], [ -124.146727580999965, 49.287408401000079 ], [ -124.14683320099999, 49.287103309000088 ], [ -124.147114312999932, 49.286739001000036 ], [ -124.147176886999929, 49.2864781110001 ], [ -124.147144097999984, 49.28633618900006 ], [ -124.146817268999939, 49.286021788000021 ], [ -124.145698408999948, 49.285557793000102 ], [ -124.145464570999962, 49.28555651300006 ], [ -124.144995183999967, 49.285553896000124 ], [ -124.144670116999947, 49.285507787000029 ], [ -124.144337810999957, 49.285401190000044 ], [ -124.142790089999934, 49.28446079900003 ], [ -124.142578701999966, 49.284389701000102 ], [ -124.14238449599992, 49.284366496000153 ], [ -124.142180809999957, 49.284376489000103 ], [ -124.141982669999919, 49.284453293000112 ], [ -124.141836907999931, 49.284558804 ], [ -124.141768719999959, 49.284717905000022 ], [ -124.141861721999973, 49.284968805000084 ], [ -124.142039005999962, 49.285105101000106 ], [ -124.14302477899993, 49.285872002000069 ], [ -124.142645717999983, 49.28607790500007 ], [ -124.142542391999967, 49.28632279300011 ], [ -124.142435223999954, 49.286428097000076 ], [ -124.142260087999958, 49.286512392000105 ], [ -124.142011101999984, 49.286554101000021 ], [ -124.141757702999897, 49.286536206000108 ], [ -124.140855156000015, 49.286143070000044 ], [ -124.140380515999979, 49.28593630100012 ], [ -124.138475714999984, 49.285304807000088 ], [ -124.13701279699994, 49.284548600000079 ], [ -124.136641391999916, 49.284388203000056 ], [ -124.136437399, 49.284337005000104 ], [ -124.136265806999972, 49.284333992000086 ], [ -124.136050508999929, 49.284364082000145 ], [ -124.13600749499993, 49.284370101000029 ], [ -124.135692691999949, 49.284478099000061 ], [ -124.135635460999936, 49.284433558000039 ], [ -124.135510989999972, 49.284336670000073 ], [ -124.134890795999951, 49.283853915000101 ], [ -124.13468288699994, 49.283728696000054 ], [ -124.13428381899999, 49.283576 ], [ -124.132612682999962, 49.28328600100005 ], [ -124.132052114999908, 49.28311878800006 ], [ -124.131718014999961, 49.282921195000057 ], [ -124.131218992999933, 49.2824858930001 ], [ -124.130883291999979, 49.282328809000056 ], [ -124.130611412999954, 49.282258388000038 ], [ -124.129712212999905, 49.282141995000082 ], [ -124.129431421999968, 49.282054304000084 ], [ -124.128544603999984, 49.281631087000093 ], [ -124.128256188999927, 49.281527101000108 ], [ -124.128069683, 49.281384302000042 ], [ -124.127951299999921, 49.28125530700008 ], [ -124.127856808999965, 49.281076291000034 ], [ -124.127820081999957, 49.280862300000081 ], [ -124.127879904999958, 49.28057348800013 ], [ -124.128213797999948, 49.280195687000059 ], [ -124.128283103999934, 49.27994308800011 ], [ -124.12808049399996, 49.27975501100012 ], [ -124.127785784999915, 49.279603092000059 ], [ -124.127401586999937, 49.279491095000012 ], [ -124.126817204999952, 49.279235212000096 ], [ -124.126508886999957, 49.279064558000101 ], [ -124.126333500999948, 49.278967500000149 ], [ -124.125993634999972, 49.278744707000087 ], [ -124.125516605999934, 49.278379892000046 ], [ -124.124666197999971, 49.277706350000066 ], [ -124.124325428999924, 49.277436400000127 ], [ -124.124231510999948, 49.277279897 ], [ -124.123394995999902, 49.277346413000082 ], [ -124.122432503999974, 49.277271190000086 ], [ -124.1222402759999, 49.277200289000056 ], [ -124.12207089499995, 49.277077601000045 ], [ -124.121880193999942, 49.276765487000084 ], [ -124.121847162999956, 49.276734954000077 ], [ -124.121701480999945, 49.276600297000108 ], [ -124.121192728999944, 49.276263110000109 ], [ -124.121015297, 49.276145495000115 ], [ -124.120897689999964, 49.275995811000072 ], [ -124.120839896999954, 49.27582909000003 ], [ -124.121036773999933, 49.275614695000087 ], [ -124.121252001, 49.275488801000044 ], [ -124.121526693999925, 49.275420606000075 ], [ -124.121900411999945, 49.27541808800008 ], [ -124.122181321999932, 49.275333010000075 ], [ -124.122352106, 49.275184698000054 ], [ -124.122422790999948, 49.274966213000027 ], [ -124.12228688799992, 49.27476131100007 ], [ -124.1218123099999, 49.274473994000111 ], [ -124.121586486999945, 49.274420488000111 ], [ -124.121359580999979, 49.274425597000167 ], [ -124.120593293999931, 49.274560810000068 ], [ -124.120287093999977, 49.274559112000119 ], [ -124.119650983999989, 49.274494900000029 ], [ -124.119318588999946, 49.274392810000045 ], [ -124.119303148999961, 49.274375947000046 ], [ -124.11910818399997, 49.27416309500007 ], [ -124.11908170199996, 49.273631499000061 ], [ -124.119138518999975, 49.273484786000019 ], [ -124.119287470999936, 49.273365894000058 ], [ -124.119363699999951, 49.273336951000019 ], [ -124.119505103999984, 49.273283198000058 ], [ -124.12071179899999, 49.27305938500011 ], [ -124.121508315, 49.272958007000049 ], [ -124.12331165599997, 49.272962734000039 ], [ -124.124688185999929, 49.272966290000092 ], [ -124.127925406999964, 49.272974651 ], [ -124.129474052999967, 49.272978606000045 ], [ -124.130114114000023, 49.27298023300002 ], [ -124.130981119999916, 49.272982446000114 ], [ -124.13192968599995, 49.272984853000018 ], [ -124.131990376999951, 49.272984997000044 ], [ -124.132373204999965, 49.273029402000127 ], [ -124.13270109199999, 49.273139506000099 ], [ -124.132910797999969, 49.273320484000067 ], [ -124.133280283999952, 49.273704539000057 ], [ -124.133319493999949, 49.273745298000037 ], [ -124.133738790999985, 49.273974012000046 ], [ -124.134693890999955, 49.274233595000034 ], [ -124.13505240299996, 49.274436102000031 ], [ -124.135532620999953, 49.274962900000133 ], [ -124.135048688999916, 49.275211194000107 ], [ -124.134657908999941, 49.275469095000076 ], [ -124.134396607999918, 49.275717594000113 ], [ -124.134660007999983, 49.275862602000139 ], [ -124.134823477999987, 49.276030093000053 ], [ -124.134942983999949, 49.276234818000113 ], [ -124.134990702999929, 49.276484097000058 ], [ -124.13496271299999, 49.276667285000016 ], [ -124.13477220599998, 49.277135696000094 ], [ -124.134866197999955, 49.277565904000028 ], [ -124.134845888999976, 49.277693395000014 ], [ -124.134679397999903, 49.278247786000058 ], [ -124.134535098999933, 49.279137506000048 ], [ -124.134561889999972, 49.279291005000097 ], [ -124.135196708, 49.280346294000076 ], [ -124.135417511999918, 49.28059310400009 ], [ -124.135742689000026, 49.280841799000051 ], [ -124.135917300999935, 49.280943135000022 ], [ -124.136118510999935, 49.281059896000073 ], [ -124.136132270999937, 49.281066191000079 ], [ -124.136496181000027, 49.281232097000071 ], [ -124.137496366999969, 49.281467591000116 ], [ -124.138203975999929, 49.281634201000031 ], [ -124.138579007999979, 49.281702812000013 ], [ -124.138947224, 49.281702898000091 ], [ -124.139348921999954, 49.281619802000108 ], [ -124.14015845199998, 49.282050465000054 ], [ -124.137053055999971, 49.282081068000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.818706697459584", "sL_AssetLoss": "86.6", "sL_BldgLoss": "70.9", "sL_StrLoss": "14.5", "sL_NStrLoss": "56.4", "sL_ContLoss": "15.7", "geom_point": "0101000020E6100000DC9B636935095FC07640E9763CA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.143258177999911, 49.282840227000101 ], [ -124.144420058999955, 49.282815631000112 ], [ -124.144495475999989, 49.282830123000053 ], [ -124.144507667999918, 49.283356779000066 ], [ -124.143270404999967, 49.283369029000021 ], [ -124.143258177999911, 49.282840227000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.902571711177052", "sL_AssetLoss": "2022", "sL_BldgLoss": "1825", "sL_StrLoss": "1260", "sL_NStrLoss": "565", "sL_ContLoss": "197", "geom_point": "0101000020E61000007E24DBAF31095FC0422A204839A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.143167873, 49.251792266000045 ], [ -124.143291611, 49.251224297000093 ], [ -124.143847600999962, 49.251409400000107 ], [ -124.144183058999943, 49.251494271000062 ], [ -124.144196034999979, 49.252055661000078 ], [ -124.143733347999955, 49.252060243000081 ], [ -124.143724553999931, 49.252280150000054 ], [ -124.14322628099994, 49.252090661000075 ], [ -124.143167873, 49.251792266000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100915917", "BldgCostT": "65711667", "sL_LossRatio": "0.827505848475135", "sL_AssetLoss": "105604.45", "sL_BldgLoss": "87388.3", "sL_StrLoss": "69313.1", "sL_NStrLoss": "18075.2", "sL_ContLoss": "18216.15", "geom_point": "0101000020E610000000689C9FC5085FC08C967EBAE8A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.137833517, 49.286434601000053 ], [ -124.13675621, 49.285564488000027 ], [ -124.136406500999954, 49.285963212000119 ], [ -124.135485513999953, 49.285672705000138 ], [ -124.135483955, 49.285604718000059 ], [ -124.13527645, 49.285606758000064 ], [ -124.135133276000019, 49.285561596000065 ], [ -124.134913189999949, 49.285608607 ], [ -124.134912717999939, 49.285610332000019 ], [ -124.134770600999943, 49.285611728000021 ], [ -124.134764569999973, 49.285761715000085 ], [ -124.134751594999898, 49.285763787000072 ], [ -124.134323602, 49.285668388000104 ], [ -124.133210705999915, 49.285671298000061 ], [ -124.133254722999951, 49.28764100300004 ], [ -124.133110703999975, 49.287290608000013 ], [ -124.13294779899995, 49.285637098000024 ], [ -124.131868105999942, 49.285261098000056 ], [ -124.131628405999962, 49.285092997000071 ], [ -124.131242306999951, 49.285024698000086 ], [ -124.129672189999937, 49.283700207 ], [ -124.129752208999918, 49.283546305000037 ], [ -124.130106889999965, 49.283460905 ], [ -124.130710806999929, 49.283446687000087 ], [ -124.1307741, 49.283176110000085 ], [ -124.130656215000016, 49.282790101000124 ], [ -124.130280112999941, 49.282631993000017 ], [ -124.128984780999957, 49.282473893000052 ], [ -124.128345279999934, 49.282219 ], [ -124.12784939, 49.28218770000008 ], [ -124.127627422, 49.282055201000063 ], [ -124.126964384999951, 49.281306099000076 ], [ -124.126423105999919, 49.280474287000075 ], [ -124.125534704999964, 49.280088393 ], [ -124.12512690100003, 49.27974939200007 ], [ -124.1236654, 49.279584206000074 ], [ -124.12304772, 49.279599901000026 ], [ -124.12259050899992, 49.279450293000082 ], [ -124.122138202999963, 49.27951869800016 ], [ -124.121600097999973, 49.27946880300015 ], [ -124.120948993999917, 49.279215291000106 ], [ -124.120330417, 49.279256597000064 ], [ -124.120164625999934, 49.279176904000053 ], [ -124.119690393999946, 49.278291009000029 ], [ -124.119671513999918, 49.278003293000033 ], [ -124.119869494999989, 49.277714189000108 ], [ -124.11988820099999, 49.277282688000106 ], [ -124.120223798999973, 49.276973600000133 ], [ -124.12063349899995, 49.276779907000055 ], [ -124.120571493999975, 49.276519310000033 ], [ -124.12014151399994, 49.276344098000038 ], [ -124.118792916999965, 49.276275801000047 ], [ -124.118163117999956, 49.276381202000046 ], [ -124.117637520999935, 49.276232998000083 ], [ -124.11753133499991, 49.276263747000087 ], [ -124.117532973999957, 49.276223378000104 ], [ -124.11752938799998, 49.276064712000057 ], [ -124.117289154999966, 49.276067035000032 ], [ -124.117280211999969, 49.275643393000045 ], [ -124.117557674, 49.275181995000047 ], [ -124.117294991000023, 49.275068005000037 ], [ -124.117151911999926, 49.274871507000071 ], [ -124.11722547, 49.274718336000028 ], [ -124.117498907999916, 49.274715691000061 ], [ -124.117496296999931, 49.274600099000061 ], [ -124.117502907999977, 49.274597991000036 ], [ -124.117494276999977, 49.27451067400002 ], [ -124.117492813999945, 49.274445887000077 ], [ -124.117860311999948, 49.274442332000071 ], [ -124.118125096000014, 49.274709110000067 ], [ -124.11834530499999, 49.274697707000044 ], [ -124.118261032999968, 49.27443845300008 ], [ -124.118317512999965, 49.274437907000056 ], [ -124.118311413999933, 49.274168104000104 ], [ -124.118173586999902, 49.274169436000101 ], [ -124.117960596999978, 49.273514189000124 ], [ -124.11749880399999, 49.273166710000041 ], [ -124.117537886, 49.273095493000056 ], [ -124.117990806999927, 49.273010006000064 ], [ -124.117986483999985, 49.272839096000034 ], [ -124.11805703899995, 49.272821248000106 ], [ -124.118280913999982, 49.272819082000126 ], [ -124.118279689999937, 49.272764928000143 ], [ -124.11839720299993, 49.272735202000085 ], [ -124.118639605999959, 49.272579902000061 ], [ -124.118635379999915, 49.272545786000038 ], [ -124.118687148, 49.272545286000067 ], [ -124.118685252999981, 49.272461464000095 ], [ -124.118674943999963, 49.27200567799999 ], [ -124.130632471999988, 49.271889275 ], [ -124.130638637999979, 49.272159079000126 ], [ -124.131463296999968, 49.272151005000062 ], [ -124.131469468999953, 49.272420807000053 ], [ -124.133943454999951, 49.272396552000018 ], [ -124.133955825999976, 49.272936158000093 ], [ -124.13519283299992, 49.2729240090001 ], [ -124.135186640999947, 49.272654206000034 ], [ -124.135598972999958, 49.272650155000115 ], [ -124.135574196999983, 49.271570944000061 ], [ -124.137635814999967, 49.271550661000042 ], [ -124.137629609999962, 49.271280858000125 ], [ -124.139278893999986, 49.271264606000081 ], [ -124.139291320999959, 49.271804211000088 ], [ -124.139703646999976, 49.271800144000039 ], [ -124.139709863999954, 49.272069946000052 ], [ -124.140122190999975, 49.272065878000042 ], [ -124.140115971999961, 49.271796076000058 ], [ -124.141621060999952, 49.271781213000082 ], [ -124.141666545999954, 49.270645609000098 ], [ -124.142220023, 49.270655135000084 ], [ -124.142251265999946, 49.269874820000076 ], [ -124.145263710999984, 49.269926616000141 ], [ -124.145321562999968, 49.268479318000068 ], [ -124.142524588999919, 49.268431231000115 ], [ -124.142534120999983, 49.268193136000015 ], [ -124.142013892999913, 49.268184183000038 ], [ -124.14199721599999, 49.268600687000145 ], [ -124.141970869999938, 49.268600233000043 ], [ -124.141949743999987, 49.269127786000112 ], [ -124.136460424999953, 49.2690331700001 ], [ -124.136491459999959, 49.26826042200004 ], [ -124.135015515999925, 49.268234935000066 ], [ -124.135127437999969, 49.265450197000085 ], [ -124.13538811299999, 49.265527191000068 ], [ -124.1375480899999, 49.265604203000144 ], [ -124.137600412999944, 49.264920507000127 ], [ -124.137770172999964, 49.26468128900008 ], [ -124.137774707999938, 49.26468136700008 ], [ -124.13782949699997, 49.265322203000061 ], [ -124.13812728799995, 49.265733801000053 ], [ -124.138794106999939, 49.265970191000065 ], [ -124.139122692999962, 49.265940302000054 ], [ -124.140322604999966, 49.265531499000105 ], [ -124.142777899999928, 49.265265205000112 ], [ -124.143729118999971, 49.265408999000059 ], [ -124.14440002399999, 49.265347803000033 ], [ -124.145104802999953, 49.265467391000044 ], [ -124.145888292999956, 49.265467408000056 ], [ -124.149018892999962, 49.266480002000051 ], [ -124.150297883999926, 49.266575496000065 ], [ -124.15107428499999, 49.266783397000019 ], [ -124.1511997, 49.26690868900009 ], [ -124.151293787000029, 49.267401504000091 ], [ -124.152102219999961, 49.267861498000066 ], [ -124.152503543999927, 49.268009217000092 ], [ -124.15247114499995, 49.268822926000027 ], [ -124.150802032999934, 49.268794349000075 ], [ -124.150743057999961, 49.270274065000123 ], [ -124.149085722, 49.270245665000061 ], [ -124.148949782999978, 49.273653100000089 ], [ -124.147041034000026, 49.273620359000105 ], [ -124.147012345999897, 49.274338647000015 ], [ -124.14223488199994, 49.274256551000065 ], [ -124.142239896999911, 49.274473732000047 ], [ -124.143064591999917, 49.27446557600004 ], [ -124.143073011999931, 49.274829909000097 ], [ -124.139818877999943, 49.274765629000129 ], [ -124.139735263, 49.274763971000041 ], [ -124.13876034599997, 49.274744699000124 ], [ -124.138148638999937, 49.274732599000089 ], [ -124.136888814999963, 49.274707302000074 ], [ -124.136417091999959, 49.274755793000068 ], [ -124.135532620999953, 49.274962900000133 ], [ -124.13505240299996, 49.274436102000031 ], [ -124.134693890999955, 49.274233595000034 ], [ -124.133738790999985, 49.273974012000046 ], [ -124.133319493999949, 49.273745298000037 ], [ -124.133280283999952, 49.273704539000057 ], [ -124.132910797999969, 49.273320484000067 ], [ -124.13270109199999, 49.273139506000099 ], [ -124.132373204999965, 49.273029402000127 ], [ -124.131990376999951, 49.272984997000044 ], [ -124.13192968599995, 49.272984853000018 ], [ -124.130981119999916, 49.272982446000114 ], [ -124.130114114000023, 49.27298023300002 ], [ -124.129474052999967, 49.272978606000045 ], [ -124.127925406999964, 49.272974651 ], [ -124.124688185999929, 49.272966290000092 ], [ -124.12331165599997, 49.272962734000039 ], [ -124.121508315, 49.272958007000049 ], [ -124.12071179899999, 49.27305938500011 ], [ -124.119505103999984, 49.273283198000058 ], [ -124.119363699999951, 49.273336951000019 ], [ -124.119287470999936, 49.273365894000058 ], [ -124.119138518999975, 49.273484786000019 ], [ -124.11908170199996, 49.273631499000061 ], [ -124.11910818399997, 49.27416309500007 ], [ -124.119303148999961, 49.274375947000046 ], [ -124.119318588999946, 49.274392810000045 ], [ -124.119650983999989, 49.274494900000029 ], [ -124.120287093999977, 49.274559112000119 ], [ -124.120593293999931, 49.274560810000068 ], [ -124.121359580999979, 49.274425597000167 ], [ -124.121586486999945, 49.274420488000111 ], [ -124.1218123099999, 49.274473994000111 ], [ -124.12228688799992, 49.27476131100007 ], [ -124.122422790999948, 49.274966213000027 ], [ -124.122352106, 49.275184698000054 ], [ -124.122181321999932, 49.275333010000075 ], [ -124.121900411999945, 49.27541808800008 ], [ -124.121526693999925, 49.275420606000075 ], [ -124.121252001, 49.275488801000044 ], [ -124.121036773999933, 49.275614695000087 ], [ -124.120839896999954, 49.27582909000003 ], [ -124.120897689999964, 49.275995811000072 ], [ -124.121015297, 49.276145495000115 ], [ -124.121192728999944, 49.276263110000109 ], [ -124.121701480999945, 49.276600297000108 ], [ -124.121847162999956, 49.276734954000077 ], [ -124.121880193999942, 49.276765487000084 ], [ -124.12207089499995, 49.277077601000045 ], [ -124.1222402759999, 49.277200289000056 ], [ -124.122432503999974, 49.277271190000086 ], [ -124.123394995999902, 49.277346413000082 ], [ -124.124231510999948, 49.277279897 ], [ -124.124325428999924, 49.277436400000127 ], [ -124.124666197999971, 49.277706350000066 ], [ -124.125516605999934, 49.278379892000046 ], [ -124.125993634999972, 49.278744707000087 ], [ -124.126333500999948, 49.278967500000149 ], [ -124.126508886999957, 49.279064558000101 ], [ -124.126817204999952, 49.279235212000096 ], [ -124.127401586999937, 49.279491095000012 ], [ -124.127785784999915, 49.279603092000059 ], [ -124.12808049399996, 49.27975501100012 ], [ -124.128283103999934, 49.27994308800011 ], [ -124.128213797999948, 49.280195687000059 ], [ -124.127879904999958, 49.28057348800013 ], [ -124.127820081999957, 49.280862300000081 ], [ -124.127856808999965, 49.281076291000034 ], [ -124.127951299999921, 49.28125530700008 ], [ -124.128069683, 49.281384302000042 ], [ -124.128256188999927, 49.281527101000108 ], [ -124.128544603999984, 49.281631087000093 ], [ -124.129431421999968, 49.282054304000084 ], [ -124.129712212999905, 49.282141995000082 ], [ -124.130611412999954, 49.282258388000038 ], [ -124.130883291999979, 49.282328809000056 ], [ -124.131218992999933, 49.2824858930001 ], [ -124.131718014999961, 49.282921195000057 ], [ -124.132052114999908, 49.28311878800006 ], [ -124.132612682999962, 49.28328600100005 ], [ -124.13428381899999, 49.283576 ], [ -124.13468288699994, 49.283728696000054 ], [ -124.134890795999951, 49.283853915000101 ], [ -124.135510989999972, 49.284336670000073 ], [ -124.135635460999936, 49.284433558000039 ], [ -124.135692691999949, 49.284478099000061 ], [ -124.136303928999951, 49.284925303000122 ], [ -124.136947502999973, 49.285490101000086 ], [ -124.137714085999988, 49.286240600000035 ], [ -124.137964321999974, 49.286402308000049 ], [ -124.137984592999942, 49.286415417000143 ], [ -124.138200505, 49.286512807000094 ], [ -124.138526489999933, 49.286607390000022 ], [ -124.139453915999965, 49.286876501000059 ], [ -124.139070408999942, 49.287259696 ], [ -124.138963481999923, 49.287527894000092 ], [ -124.138554821999904, 49.28771439900008 ], [ -124.138493527999927, 49.287769205000089 ], [ -124.138490292999975, 49.28785109500005 ], [ -124.138000828999964, 49.287437977000131 ], [ -124.13831640399998, 49.287086885000043 ], [ -124.138265090999965, 49.286611198000045 ], [ -124.137833517, 49.286434601000053 ] ], [ [ -124.139728512999937, 49.272879353000057 ], [ -124.13974094699995, 49.27341895700004 ], [ -124.14015328499994, 49.273414890000019 ], [ -124.140159504999986, 49.273684691000064 ], [ -124.141396526000023, 49.273672477000105 ], [ -124.141408978999948, 49.274212081 ], [ -124.141523733999961, 49.27421094700005 ], [ -124.141566991, 49.273131066000076 ], [ -124.141384074999934, 49.273132872000104 ], [ -124.14137784799999, 49.272863071000089 ], [ -124.139728512999937, 49.272879353000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101576333", "BldgCostT": "64103333", "sL_LossRatio": "0.873180899558649", "sL_AssetLoss": "220686", "sL_BldgLoss": "192698.8", "sL_StrLoss": "142981.8", "sL_NStrLoss": "49717", "sL_ContLoss": "27987.2", "geom_point": "0101000020E61000001E4AC4C6020C5FC04196FDA136A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.180104783, 49.27422778000011 ], [ -124.177587236999941, 49.273743546000105 ], [ -124.177001096999959, 49.273736360000029 ], [ -124.176942626999931, 49.273725694000049 ], [ -124.175693890999952, 49.273414390000077 ], [ -124.173348080999943, 49.272943445000095 ], [ -124.173390008999988, 49.272873298000064 ], [ -124.172942788999933, 49.272024493000039 ], [ -124.173277915999975, 49.271624292000098 ], [ -124.173293282999936, 49.271094500000032 ], [ -124.173503814999989, 49.270678605000036 ], [ -124.174228494999937, 49.270013506000105 ], [ -124.174709808999964, 49.269963687000072 ], [ -124.174968113999967, 49.269826891000065 ], [ -124.175664702999981, 49.269703004000107 ], [ -124.177892685999893, 49.269715807000033 ], [ -124.178533494999968, 49.269466608000066 ], [ -124.178992193999989, 49.269713014000033 ], [ -124.180051982999927, 49.269738600000082 ], [ -124.180699408999914, 49.269839802000078 ], [ -124.181563408999978, 49.269732903000069 ], [ -124.18240709599999, 49.269328512000051 ], [ -124.182885622999919, 49.2692957040001 ], [ -124.183429591999953, 49.269047895000078 ], [ -124.184167405999972, 49.268868409000135 ], [ -124.185750311999968, 49.268915388000096 ], [ -124.186757681999907, 49.269040800000091 ], [ -124.187774014999917, 49.269002306000111 ], [ -124.188319814999915, 49.268862793000061 ], [ -124.189529907999926, 49.268877 ], [ -124.189921106999975, 49.268710580000104 ], [ -124.190005214999985, 49.268674798000092 ], [ -124.190093512999908, 49.268552196000051 ], [ -124.190081269999965, 49.268866077000084 ], [ -124.190007654999988, 49.270753213000077 ], [ -124.190130982999932, 49.270751943000029 ], [ -124.190200043999965, 49.268981391000075 ], [ -124.190223842999941, 49.268371233000074 ], [ -124.19035191799999, 49.268193397000097 ], [ -124.190503153999956, 49.268111213000012 ], [ -124.190715272999924, 49.268114768000075 ], [ -124.190789879999969, 49.268135 ], [ -124.191214115999969, 49.268643408000074 ], [ -124.191757890999966, 49.268889794000124 ], [ -124.192692098999942, 49.26888980400004 ], [ -124.19307108799994, 49.268696109000111 ], [ -124.193327603999961, 49.268486797000037 ], [ -124.193313184999951, 49.268405596000015 ], [ -124.193034628999953, 49.267891884000072 ], [ -124.196222018999975, 49.267945187000045 ], [ -124.196231060999978, 49.267712588000037 ], [ -124.196113856999915, 49.267710630000074 ], [ -124.196148880999928, 49.266809669000082 ], [ -124.195517490000015, 49.266799116000072 ], [ -124.195566602999975, 49.26553614200003 ], [ -124.192266847000013, 49.265480935000092 ], [ -124.192269874999937, 49.265403195000069 ], [ -124.191215098, 49.265385527000063 ], [ -124.191305917999941, 49.264990307000083 ], [ -124.191121702999951, 49.264741101000077 ], [ -124.190193794999956, 49.264434914000063 ], [ -124.189987097999946, 49.264437695000076 ], [ -124.189852993000017, 49.264583009000027 ], [ -124.18979740799989, 49.265158408000104 ], [ -124.1894969, 49.26521681100013 ], [ -124.189123801999969, 49.265156992000051 ], [ -124.188804996999963, 49.264476213000101 ], [ -124.189060599999948, 49.262476604000042 ], [ -124.189019607999953, 49.261938183000034 ], [ -124.188846402999971, 49.261589307000023 ], [ -124.188399108999988, 49.261314407000071 ], [ -124.187652089999972, 49.261096510000094 ], [ -124.187315281999972, 49.26076750300011 ], [ -124.183299881000011, 49.257857897000086 ], [ -124.181189405999973, 49.256899409000049 ], [ -124.180316349999899, 49.256588433000083 ], [ -124.180331155999951, 49.256210772000081 ], [ -124.178975053999963, 49.256187899000075 ], [ -124.178627609000017, 49.256107503000102 ], [ -124.17780160599996, 49.256061998000057 ], [ -124.177370600999978, 49.255841206000049 ], [ -124.17645510600002, 49.255536866000035 ], [ -124.176475613999969, 49.255014877000086 ], [ -124.176826469999966, 49.255113616000074 ], [ -124.180502780999916, 49.256063358000048 ], [ -124.181653354999966, 49.256412417000021 ], [ -124.182004702999933, 49.256519008000069 ], [ -124.183061578999954, 49.25691133100004 ], [ -124.184207389999955, 49.257415876000017 ], [ -124.184221207999968, 49.257423025000058 ], [ -124.184870021999956, 49.257758713000015 ], [ -124.186862303999987, 49.25878948200004 ], [ -124.188991526, 49.259891017000058 ], [ -124.189721325999955, 49.260188677000016 ], [ -124.190355766999915, 49.260396464000046 ], [ -124.191152534999972, 49.260561970000055 ], [ -124.194398361999944, 49.261019640000015 ], [ -124.195059261999987, 49.261147733 ], [ -124.195661026999957, 49.261314458000072 ], [ -124.196103116999907, 49.261492004000075 ], [ -124.196445520999944, 49.261691297000027 ], [ -124.19680748899998, 49.261951193000101 ], [ -124.197229412999988, 49.262309307000073 ], [ -124.197541194999985, 49.262573902000071 ], [ -124.197636167999946, 49.262515487000087 ], [ -124.19764670099994, 49.262508996000072 ], [ -124.198028979, 49.262811591000109 ], [ -124.198423630999969, 49.26303513800012 ], [ -124.198673021999952, 49.263176443000106 ], [ -124.198747803999964, 49.263218795000064 ], [ -124.198799242999911, 49.263238691 ], [ -124.199204995999978, 49.263395693000056 ], [ -124.199667103999985, 49.263518602000076 ], [ -124.199622571999925, 49.263605199000096 ], [ -124.198974169999985, 49.264638708000071 ], [ -124.197809283999945, 49.266878968000107 ], [ -124.197763317999886, 49.26710777300007 ], [ -124.197786561999948, 49.267322442000065 ], [ -124.198206154999966, 49.268717674000129 ], [ -124.198217479999954, 49.268789998000038 ], [ -124.198263350999966, 49.269083236000085 ], [ -124.19822714799993, 49.269205639000099 ], [ -124.197153767999936, 49.269187720000069 ], [ -124.197148234999972, 49.269330119000067 ], [ -124.198139205999951, 49.269319845000027 ], [ -124.198087182999927, 49.269376497000096 ], [ -124.197237111999954, 49.269871842000093 ], [ -124.196976822999957, 49.269926019000103 ], [ -124.193069297999969, 49.270292837000049 ], [ -124.192830015999945, 49.270371637000018 ], [ -124.192694663999944, 49.270497216000066 ], [ -124.192587281999977, 49.27068086600012 ], [ -124.192529511999979, 49.270859060000042 ], [ -124.192615466999925, 49.27112069300005 ], [ -124.192249615999927, 49.271222778000073 ], [ -124.190913834999961, 49.271595507000022 ], [ -124.189300552999924, 49.272045648000123 ], [ -124.188339050999943, 49.272313890000078 ], [ -124.187353391999977, 49.272557719000069 ], [ -124.186686046999952, 49.27272277800008 ], [ -124.185121920999919, 49.273280773000046 ], [ -124.183558759000022, 49.273858777000029 ], [ -124.183261697999953, 49.273853779000063 ], [ -124.183267668999989, 49.273701297000095 ], [ -124.182647683999932, 49.273690863000127 ], [ -124.182693926999931, 49.272510346000061 ], [ -124.18042357599991, 49.272472108000045 ], [ -124.180450096999934, 49.271795864000048 ], [ -124.179884923, 49.271786338000055 ], [ -124.179868728999978, 49.272199138000076 ], [ -124.178239439999942, 49.272171659000037 ], [ -124.178238563999969, 49.272193980000075 ], [ -124.177193975999955, 49.272176349000077 ], [ -124.177190323999966, 49.272269277000063 ], [ -124.178764267999938, 49.272295838000112 ], [ -124.178760154999978, 49.272400616000034 ], [ -124.179341652999966, 49.272410423000096 ], [ -124.179337362999917, 49.272519744000085 ], [ -124.180171228999981, 49.272533802000041 ], [ -124.180104783, 49.27422778000011 ] ], [ [ -124.190004809999976, 49.271218079000043 ], [ -124.189998976999945, 49.270975668000084 ], [ -124.189989574999984, 49.271216690000095 ], [ -124.188858969999941, 49.271197730000068 ], [ -124.188858925999952, 49.271198863000066 ], [ -124.190004809999976, 49.271218079000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44175167", "BldgCostT": "28021667", "sL_LossRatio": "0.748282196839707", "sL_AssetLoss": "72266.72", "sL_BldgLoss": "54075.9", "sL_StrLoss": "38010.6", "sL_NStrLoss": "16065.3", "sL_ContLoss": "18190.82", "geom_point": "0101000020E6100000B1E819D2930A5FC08ACE539939A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.158178405999976, 49.278584497000089 ], [ -124.157412387, 49.277986307000106 ], [ -124.157092798999898, 49.277835907000032 ], [ -124.156968368999927, 49.277795791000095 ], [ -124.15628459, 49.277575411000022 ], [ -124.155179694, 49.277313414000055 ], [ -124.154993951, 49.277235229000077 ], [ -124.15726415099999, 49.277273996000133 ], [ -124.157286374999984, 49.27671451200009 ], [ -124.158781490999985, 49.276740018000069 ], [ -124.15880434599994, 49.276164148000063 ], [ -124.159467924999944, 49.276175461000072 ], [ -124.159468920999956, 49.276150364000024 ], [ -124.159944221999964, 49.276158466000041 ], [ -124.159949908999977, 49.276015076000085 ], [ -124.162091840999935, 49.276051556000063 ], [ -124.162121062999972, 49.275313928000081 ], [ -124.162809153999888, 49.275325638000012 ], [ -124.162879334999928, 49.273553341000067 ], [ -124.163242673999918, 49.273559523000074 ], [ -124.163288283999975, 49.272407448000052 ], [ -124.164222783999946, 49.272423342000089 ], [ -124.164246379999938, 49.271826970000056 ], [ -124.165257224999934, 49.271844153000089 ], [ -124.165316021999956, 49.270357293000082 ], [ -124.16597851799996, 49.270368550000072 ], [ -124.16676698699996, 49.270719896000109 ], [ -124.168117996999925, 49.271424887000116 ], [ -124.16825970599993, 49.27160440799999 ], [ -124.168898406999972, 49.271840807000032 ], [ -124.16951209099993, 49.27220251400005 ], [ -124.170099203999911, 49.272107107000053 ], [ -124.170578970999941, 49.272154243000088 ], [ -124.170925586999942, 49.272188295000056 ], [ -124.171304312999922, 49.272473101000053 ], [ -124.171663424999934, 49.272605194000107 ], [ -124.170592303999967, 49.272390111000099 ], [ -124.170610607999933, 49.272541612000047 ], [ -124.170654491999954, 49.272904305000104 ], [ -124.17065986199998, 49.272912680000076 ], [ -124.170835948, 49.273188965000031 ], [ -124.171065790999975, 49.273549600000102 ], [ -124.171312689999979, 49.273801305000049 ], [ -124.171603385999944, 49.273987203000097 ], [ -124.172809418999961, 49.27457479200006 ], [ -124.172936212999957, 49.274703005000021 ], [ -124.172972925999929, 49.274794916000097 ], [ -124.17298870800002, 49.274834406000139 ], [ -124.172891692999912, 49.2752765910001 ], [ -124.172843095999937, 49.275847396000074 ], [ -124.172756502999931, 49.27595310300007 ], [ -124.172608984, 49.276002794000092 ], [ -124.171866493999943, 49.276021809000049 ], [ -124.171442088999953, 49.275918298000136 ], [ -124.170938600999932, 49.275869193000091 ], [ -124.170595013, 49.275804887000071 ], [ -124.169881294999954, 49.27561809600008 ], [ -124.169658585999954, 49.275518894000079 ], [ -124.169193519999951, 49.275193198000089 ], [ -124.168718984999927, 49.275489492000055 ], [ -124.168633813999946, 49.275629404000043 ], [ -124.168622812999942, 49.275734508000014 ], [ -124.168834116999975, 49.276469094000042 ], [ -124.168852605999987, 49.277045588000121 ], [ -124.168706488999931, 49.277440206000058 ], [ -124.168462504999937, 49.277532400000062 ], [ -124.168259948999932, 49.277579165000134 ], [ -124.168233822999966, 49.277585206000069 ], [ -124.167562112999931, 49.277654807000069 ], [ -124.167560491999964, 49.277453995000087 ], [ -124.16744831199999, 49.277301798000103 ], [ -124.167205418999941, 49.277193191000087 ], [ -124.166459508999978, 49.277055382000043 ], [ -124.16623343799999, 49.277068675000088 ], [ -124.16610160499998, 49.277076412000063 ], [ -124.16597679299997, 49.277105785000096 ], [ -124.16565411399999, 49.277347791000103 ], [ -124.165511990999946, 49.277398595000129 ], [ -124.164690890999935, 49.277497108000034 ], [ -124.163223600999956, 49.278199596000029 ], [ -124.162949806999947, 49.278280493000061 ], [ -124.16247080299999, 49.278305594000116 ], [ -124.161766902999958, 49.278217994000023 ], [ -124.161476811999961, 49.278260790000068 ], [ -124.161574469999906, 49.278429900000013 ], [ -124.162204919999951, 49.278812498000015 ], [ -124.162459394000024, 49.279044601000066 ], [ -124.161964713999964, 49.279222498000109 ], [ -124.161428204999936, 49.279313286000068 ], [ -124.160786086, 49.279330296000055 ], [ -124.160142387999898, 49.27928239200007 ], [ -124.159729420999938, 49.279190853000081 ], [ -124.159689013, 49.2791818990001 ], [ -124.158834788999982, 49.278900898000074 ], [ -124.158420672999981, 49.278701295000083 ], [ -124.158178405999976, 49.278584497000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7330417", "BldgCostT": "4791667", "sL_LossRatio": "0.874693428612418", "sL_AssetLoss": "29275.4", "sL_BldgLoss": "25607", "sL_StrLoss": "18430", "sL_NStrLoss": "7177", "sL_ContLoss": "3668.4", "geom_point": "0101000020E6100000073044D2170A5FC0B1F8B08B60A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.169173493999935, 49.253306115000022 ], [ -124.16621612299997, 49.253156600000082 ], [ -124.1654519, 49.253380210000046 ], [ -124.164959005999933, 49.253411486000118 ], [ -124.1635903199999, 49.253102503000022 ], [ -124.161596914, 49.253041196000055 ], [ -124.16035638699999, 49.252900206000113 ], [ -124.159463698999971, 49.252964291000126 ], [ -124.15641173399996, 49.253460018000048 ], [ -124.156418753999944, 49.253283274000054 ], [ -124.156034684999909, 49.253287119000113 ], [ -124.156027452999965, 49.253469147000089 ], [ -124.150537714, 49.253431513000081 ], [ -124.150603557999929, 49.251778958000088 ], [ -124.150606488000022, 49.251705423000047 ], [ -124.151533740999923, 49.251875447000053 ], [ -124.151817850999947, 49.252028476000085 ], [ -124.15223368, 49.252140993000062 ], [ -124.153292798999971, 49.252427596000125 ], [ -124.154528199999902, 49.252706210000071 ], [ -124.155403894999949, 49.252778807000091 ], [ -124.156478678999932, 49.252747649000028 ], [ -124.157923016999987, 49.25260485600004 ], [ -124.158856804, 49.252562278000042 ], [ -124.159112027999981, 49.252565528000098 ], [ -124.159900988999965, 49.25257559300006 ], [ -124.162281265999965, 49.252751188000097 ], [ -124.168339223999936, 49.253033339000105 ], [ -124.169398745999956, 49.253109837000075 ], [ -124.170288743999905, 49.253273483000086 ], [ -124.170689969999927, 49.253386438000064 ], [ -124.171758571999973, 49.253687241000073 ], [ -124.171746457999944, 49.253994790000071 ], [ -124.171078120999979, 49.25398346700004 ], [ -124.170929609999973, 49.25375621000007 ], [ -124.170707682999975, 49.253623695000044 ], [ -124.169173493999935, 49.253306115000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52414083", "BldgCostT": "35148333", "sL_LossRatio": "0.867529429105923", "sL_AssetLoss": "191315.7", "sL_BldgLoss": "165972", "sL_StrLoss": "124001", "sL_NStrLoss": "41971", "sL_ContLoss": "25343.7", "geom_point": "0101000020E6100000EF8586EEE7075FC09161B24429A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.1257489, 49.254475409000051 ], [ -124.124692699999983, 49.253955586000117 ], [ -124.122150390999948, 49.253944197000095 ], [ -124.122133064999929, 49.253945675000132 ], [ -124.122853101999979, 49.252450682000088 ], [ -124.122694253999938, 49.252517308000073 ], [ -124.122636600999982, 49.252541511000061 ], [ -124.122353404999956, 49.252586111 ], [ -124.120801004, 49.252613100000119 ], [ -124.11946340899999, 49.252762606000026 ], [ -124.118675125, 49.252768677000084 ], [ -124.117220218999989, 49.252703823000068 ], [ -124.117215739999963, 49.252703627000109 ], [ -124.117200392999962, 49.25270555900002 ], [ -124.11603865799999, 49.252853254000073 ], [ -124.115211869999925, 49.252996371000108 ], [ -124.114184000999956, 49.253291715000017 ], [ -124.11279299499995, 49.253671701 ], [ -124.11261379799997, 49.253012205000125 ], [ -124.112637221999947, 49.252611705000085 ], [ -124.112630192999958, 49.252172505000011 ], [ -124.112638888999982, 49.252074391000065 ], [ -124.112664569999964, 49.251784495000024 ], [ -124.112703940999936, 49.251340584000076 ], [ -124.11612256399999, 49.251400317000105 ], [ -124.116100974999966, 49.251932252000138 ], [ -124.116402402999952, 49.251937513000016 ], [ -124.116403829999953, 49.251902330000043 ], [ -124.116978704999923, 49.25191236400007 ], [ -124.116982611999902, 49.251816045000069 ], [ -124.117500500999981, 49.251825081000085 ], [ -124.117506498999916, 49.251677158000085 ], [ -124.11853843599998, 49.251695154000082 ], [ -124.118539658999978, 49.251664983000097 ], [ -124.119152967999952, 49.251675674000055 ], [ -124.119154936999962, 49.251627099000068 ], [ -124.119750207999971, 49.251637471000073 ], [ -124.119751513999944, 49.251605213000055 ], [ -124.121924958999927, 49.251643060000021 ], [ -124.121920912999954, 49.251464553000076 ], [ -124.122745229999936, 49.251456544000114 ], [ -124.1227207539999, 49.250377325000066 ], [ -124.123132900999934, 49.250373318000094 ], [ -124.123126779999922, 49.250103513000091 ], [ -124.124775367999987, 49.250087474000075 ], [ -124.124781496999972, 49.250357278000109 ], [ -124.125193645, 49.250353264000054 ], [ -124.125186564999979, 49.250041789000072 ], [ -124.124925336, 49.250037250000069 ], [ -124.124924168999911, 49.250066161000099 ], [ -124.123960238999956, 49.250049407000091 ], [ -124.123958731999949, 49.250086684000067 ], [ -124.122798161999953, 49.250066501000113 ], [ -124.122796386999966, 49.250110412000019 ], [ -124.120790187999901, 49.250075495000047 ], [ -124.120777023, 49.250400662000068 ], [ -124.118598021999944, 49.250362694000046 ], [ -124.118599256999957, 49.25041730800011 ], [ -124.11653850499999, 49.250437245000143 ], [ -124.116536011999955, 49.25032672400004 ], [ -124.11528996199992, 49.250304968000059 ], [ -124.11529506, 49.250179393000053 ], [ -124.114883827999975, 49.250183362000044 ], [ -124.11488128299996, 49.250070381000057 ], [ -124.112819789999961, 49.250034348000014 ], [ -124.112927803999966, 49.248816076000075 ], [ -124.113703018999942, 49.248825396000015 ], [ -124.118658514999964, 49.248841741000085 ], [ -124.122137436999964, 49.248853141000048 ], [ -124.126289295999953, 49.248860183000076 ], [ -124.131682967999964, 49.248910725 ], [ -124.131690870999961, 49.249075912000102 ], [ -124.129532777999955, 49.249038525000074 ], [ -124.129531866999969, 49.249061100000077 ], [ -124.131691952999958, 49.249098521000029 ], [ -124.131735747999983, 49.250013911000067 ], [ -124.131754274999977, 49.250403101000124 ], [ -124.131802898999979, 49.251378004000038 ], [ -124.131807462999944, 49.251515294000015 ], [ -124.131904888999927, 49.251641689000031 ], [ -124.132048167999969, 49.252464511000028 ], [ -124.132052152999933, 49.252513215000064 ], [ -124.132011301999952, 49.252525584000054 ], [ -124.131328105999927, 49.25272079700003 ], [ -124.130825278999936, 49.252968594000045 ], [ -124.129631406, 49.254176285000014 ], [ -124.129395101999989, 49.254737401000106 ], [ -124.129159074999947, 49.254559394000054 ], [ -124.128390116999967, 49.254620695000028 ], [ -124.128058888999959, 49.254552306000136 ], [ -124.127210796999933, 49.254102191000115 ], [ -124.126711487999941, 49.253962697000084 ], [ -124.126189402999927, 49.253939897000052 ], [ -124.125944713999928, 49.254023895000088 ], [ -124.126080087999981, 49.254964541000106 ], [ -124.125957155999956, 49.254962406000097 ], [ -124.1257489, 49.254475409000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140365834", "BldgCostT": "94383334", "sL_LossRatio": "0.814204143423673", "sL_AssetLoss": "674558.1", "sL_BldgLoss": "549228", "sL_StrLoss": "341582", "sL_NStrLoss": "207646", "sL_ContLoss": "125330.1", "geom_point": "0101000020E610000062E9C74F78085FC08FE5C01FBC9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.132048167999969, 49.252464511000028 ], [ -124.131904888999927, 49.251641689000031 ], [ -124.131807462999944, 49.251515294000015 ], [ -124.131802898999979, 49.251378004000038 ], [ -124.131754274999977, 49.250403101000124 ], [ -124.131735747999983, 49.250013911000067 ], [ -124.131691952999958, 49.249098521000029 ], [ -124.132195471999978, 49.249107237000082 ], [ -124.132196433999965, 49.249083334 ], [ -124.131782339, 49.249076165000119 ], [ -124.131782284999971, 49.249077494000041 ], [ -124.131690870999961, 49.249075912000102 ], [ -124.131682967999964, 49.248910725 ], [ -124.126289295999953, 49.248860183000076 ], [ -124.122137436999964, 49.248853141000048 ], [ -124.118658514999964, 49.248841741000085 ], [ -124.113703018999942, 49.248825396000015 ], [ -124.113667618999926, 49.248702693000105 ], [ -124.113719603999968, 49.24843709000006 ], [ -124.113776065999929, 49.248311549000029 ], [ -124.113965494999974, 49.247890398000052 ], [ -124.113778189999948, 49.24784031400003 ], [ -124.113586394, 49.247729799000091 ], [ -124.113220388999977, 49.247377710000087 ], [ -124.113490019999958, 49.24716189700009 ], [ -124.113553873999962, 49.247076849000081 ], [ -124.11403861299999, 49.246431399000066 ], [ -124.114538352999944, 49.245727012000025 ], [ -124.115028622999901, 49.245036003000031 ], [ -124.115224642999976, 49.244790322000028 ], [ -124.115520300999975, 49.244419808000082 ], [ -124.11584653099996, 49.244424687000048 ], [ -124.11911970199999, 49.244473614000114 ], [ -124.120193797999917, 49.244489607000077 ], [ -124.120553194999928, 49.24452741300005 ], [ -124.121184112999984, 49.244675201000092 ], [ -124.12279249099997, 49.245122793000036 ], [ -124.123392089, 49.245229512 ], [ -124.124349882, 49.245237205000123 ], [ -124.124630250999985, 49.245209553000059 ], [ -124.12468340199996, 49.245204308000041 ], [ -124.125632685999946, 49.244978595000113 ], [ -124.135081477999947, 49.245134782000015 ], [ -124.135004688999956, 49.24704623800006 ], [ -124.135358888999974, 49.247052359000051 ], [ -124.13539079899999, 49.246257885000027 ], [ -124.135556751999943, 49.246260753000051 ], [ -124.135588036999977, 49.24548178800007 ], [ -124.136306327999961, 49.245494197000021 ], [ -124.136319936999925, 49.245155193000102 ], [ -124.136949288999944, 49.245165559000071 ], [ -124.138930429999931, 49.245183139000041 ], [ -124.141811607999927, 49.24512053200003 ], [ -124.141797426999943, 49.245474838000057 ], [ -124.142436870999916, 49.245485848000072 ], [ -124.142429932999946, 49.246017147000074 ], [ -124.144911503999978, 49.246219786000033 ], [ -124.144885205999969, 49.246877878000127 ], [ -124.146086461999971, 49.246898523000034 ], [ -124.146070429999938, 49.247299957000024 ], [ -124.148505196999949, 49.247341762000055 ], [ -124.148500498999937, 49.24745956100007 ], [ -124.148555991999942, 49.2474605130001 ], [ -124.14867200799999, 49.250062867000089 ], [ -124.148720278999974, 49.251064611000096 ], [ -124.145760862999921, 49.251013801000099 ], [ -124.145314718999913, 49.251006134000065 ], [ -124.144171321999934, 49.250986476000108 ], [ -124.144183058999943, 49.251494271000062 ], [ -124.143847600999962, 49.251409400000107 ], [ -124.143291611, 49.251224297000093 ], [ -124.143167873, 49.251792266000045 ], [ -124.14322628099994, 49.252090661000075 ], [ -124.142812208999942, 49.251933190000074 ], [ -124.141074901999943, 49.251608490000059 ], [ -124.139595797999959, 49.251901811000067 ], [ -124.137743503999957, 49.251992998000063 ], [ -124.13510102199993, 49.251810701000082 ], [ -124.133238897999959, 49.252153891 ], [ -124.132052152999933, 49.252513215000064 ], [ -124.132048167999969, 49.252464511000028 ] ], [ [ -124.143776531999933, 49.250980357000067 ], [ -124.143801272999966, 49.250980112000072 ], [ -124.143776558999917, 49.250979687000083 ], [ -124.143776531999933, 49.250980357000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.911427579020493", "sL_AssetLoss": "2879", "sL_BldgLoss": "2624", "sL_StrLoss": "2080", "sL_NStrLoss": "544", "sL_ContLoss": "255", "geom_point": "0101000020E6100000D9B8591712055FC00BC73DA7EA9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.079168752999962, 49.219218257000129 ], [ -124.079162876999945, 49.218948447000017 ], [ -124.07875098399991, 49.218952295000093 ], [ -124.078739238999972, 49.218412674000071 ], [ -124.078327348999949, 49.218416520000055 ], [ -124.07831560899993, 49.217876899000046 ], [ -124.077903722999949, 49.217880744000112 ], [ -124.077886118999942, 49.217071313000112 ], [ -124.078881654999947, 49.217062017000018 ], [ -124.079533630999947, 49.217055926000029 ], [ -124.079545384999932, 49.217595546000091 ], [ -124.079957266999912, 49.217591695000095 ], [ -124.079963145999955, 49.217861506000084 ], [ -124.080375031, 49.217857654000099 ], [ -124.08040444099997, 49.219206705000033 ], [ -124.079371771999959, 49.219216360000132 ], [ -124.079168752999962, 49.219218257000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58441333", "BldgCostT": "36358333", "sL_LossRatio": "0.860134180961148", "sL_AssetLoss": "124488.6", "sL_BldgLoss": "107076.9", "sL_StrLoss": "81711.9", "sL_NStrLoss": "25365", "sL_ContLoss": "17411.7", "geom_point": "0101000020E6100000FCAFD6FDE1045FC06BDE9298F79D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.078176170999981, 49.238366720000109 ], [ -124.07720790899999, 49.237886116000062 ], [ -124.076925490999912, 49.237647918000086 ], [ -124.07611820599999, 49.236695310000037 ], [ -124.075609387999947, 49.236190109000056 ], [ -124.075305986999979, 49.235993909000108 ], [ -124.075274351999951, 49.235979993000072 ], [ -124.074948787999944, 49.235837094000033 ], [ -124.074820496999934, 49.235787094000059 ], [ -124.072586218999959, 49.235394297000056 ], [ -124.071715800999982, 49.235303997000095 ], [ -124.070408362999942, 49.235228425000066 ], [ -124.069627380999961, 49.235099226000024 ], [ -124.069039667999931, 49.234942833000034 ], [ -124.068626945999966, 49.234803051 ], [ -124.068008879999965, 49.234650619000128 ], [ -124.06745924099999, 49.234602063000104 ], [ -124.066013369999965, 49.234458187000016 ], [ -124.065043136999961, 49.234359772000047 ], [ -124.064725869999918, 49.234335830000113 ], [ -124.064507444999904, 49.234319338000034 ], [ -124.064822622999955, 49.231678661000082 ], [ -124.064615131999957, 49.229764703000107 ], [ -124.067727756999957, 49.229716063000104 ], [ -124.06767849000002, 49.230900130000116 ], [ -124.066840832999958, 49.230885121000078 ], [ -124.066837031999953, 49.230976423000044 ], [ -124.067378963999943, 49.230986136000119 ], [ -124.067329222999945, 49.23218136600012 ], [ -124.068485906999953, 49.232202084000058 ], [ -124.06858986499995, 49.229702575000097 ], [ -124.070128912999962, 49.229678479000022 ], [ -124.070181628999975, 49.228509966000061 ], [ -124.071989964999958, 49.228582252000059 ], [ -124.072858958999973, 49.228585247000069 ], [ -124.072902518999982, 49.227188112000171 ], [ -124.07427872, 49.227212694000031 ], [ -124.075154242999986, 49.227228323000098 ], [ -124.075135487999958, 49.227680836000076 ], [ -124.075033071999911, 49.230151773000095 ], [ -124.076077386999941, 49.230170407000053 ], [ -124.07606560699999, 49.230454749000103 ], [ -124.078544812999965, 49.230498943000036 ], [ -124.07844389199991, 49.232937986000131 ], [ -124.07871105599996, 49.232942745000074 ], [ -124.078678647999979, 49.233726024000063 ], [ -124.07997535599999, 49.233749113000044 ], [ -124.079916691999983, 49.235167889000095 ], [ -124.080047440999962, 49.235170216000093 ], [ -124.080028886999941, 49.235618952000046 ], [ -124.080762040999943, 49.235631998000088 ], [ -124.080656101999978, 49.238194995000107 ], [ -124.082635873999919, 49.238230200000089 ], [ -124.082671607999913, 49.237364856000106 ], [ -124.086997232999948, 49.237441648000072 ], [ -124.087019769000023, 49.236894647000014 ], [ -124.087050258999952, 49.236154575000064 ], [ -124.087062820999961, 49.235849660000113 ], [ -124.092548115999989, 49.235946791000046 ], [ -124.092513086999986, 49.236799511000086 ], [ -124.09254606899998, 49.236800094000081 ], [ -124.092508732999931, 49.237708918000081 ], [ -124.093145801999981, 49.237720180000025 ], [ -124.093136500999933, 49.237946658000112 ], [ -124.08926330099996, 49.237346247000076 ], [ -124.08926474, 49.237603863000047 ], [ -124.089333304999954, 49.237509990000035 ], [ -124.089336147000012, 49.238722665000054 ], [ -124.089338125999959, 49.239561123000023 ], [ -124.088086926999921, 49.239549751000062 ], [ -124.087752079999944, 49.239581626000067 ], [ -124.086811787999935, 49.239853073000063 ], [ -124.086565661999913, 49.239897320000097 ], [ -124.085450722999909, 49.24007651600003 ], [ -124.085015925000036, 49.240202973000088 ], [ -124.084564290999964, 49.240371418000038 ], [ -124.08423650499995, 49.240233212000071 ], [ -124.08324429, 49.239997720000133 ], [ -124.082080884999968, 49.239821315000079 ], [ -124.081037486999918, 49.239596606000084 ], [ -124.080608197999965, 49.239457508000022 ], [ -124.078897291999965, 49.238648213000054 ], [ -124.078178804999979, 49.2383680290001 ], [ -124.078176170999981, 49.238366720000109 ] ], [ [ -124.070492968999957, 49.232475385000022 ], [ -124.070493807999924, 49.232455192000096 ], [ -124.069102949999902, 49.232430303000037 ], [ -124.069093446999929, 49.232658836000034 ], [ -124.069558350999984, 49.232667157000137 ], [ -124.069567009999957, 49.232458818000069 ], [ -124.070492968999957, 49.232475385000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.857829813924315", "sL_AssetLoss": "478.3", "sL_BldgLoss": "410.3", "sL_StrLoss": "83.3", "sL_NStrLoss": "327", "sL_ContLoss": "68", "geom_point": "0101000020E6100000B2E0975DE4045FC0D9F66EDAA99B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.076232745999974, 49.216816866000087 ], [ -124.076226886999962, 49.216547055000028 ], [ -124.075403139999977, 49.216554727000059 ], [ -124.075397284999895, 49.216284916000056 ], [ -124.074985412999922, 49.216288751000036 ], [ -124.07496785799998, 49.215479319000032 ], [ -124.077027183999988, 49.215460134000132 ], [ -124.077033045999968, 49.215729944000081 ], [ -124.077444912999937, 49.215726103000115 ], [ -124.077450778999903, 49.215995913000043 ], [ -124.077862648999954, 49.21599207100008 ], [ -124.077880250999911, 49.216801502000045 ], [ -124.076232745999974, 49.216816866000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150135168", "BldgCostT": "93886668", "sL_LossRatio": "0.770796744931391", "sL_AssetLoss": "721938.7", "sL_BldgLoss": "556468", "sL_StrLoss": "341412", "sL_NStrLoss": "215056", "sL_ContLoss": "165470.7", "geom_point": "0101000020E6100000F7411183A7065FC00CE8E0F4899F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.101365394999931, 49.253069711000137 ], [ -124.100024613999963, 49.253025397000087 ], [ -124.099716801999961, 49.25302186600004 ], [ -124.098822956999967, 49.253011603000061 ], [ -124.097768315999957, 49.25299949200005 ], [ -124.097550081999913, 49.252996994000043 ], [ -124.096882406999939, 49.25298929800001 ], [ -124.09601670099994, 49.252979343000113 ], [ -124.095975712999987, 49.252978855000087 ], [ -124.09563089699999, 49.252974902000084 ], [ -124.095344782999973, 49.252983855000103 ], [ -124.095097505999902, 49.252991609000027 ], [ -124.092310236999964, 49.253259857000096 ], [ -124.09217278499996, 49.253273086000014 ], [ -124.091581615999971, 49.253260792000042 ], [ -124.091111091999892, 49.253219201000064 ], [ -124.08931541199992, 49.252952400000012 ], [ -124.088975702999946, 49.252901398000105 ], [ -124.089031017999929, 49.251857109000127 ], [ -124.089103462, 49.251325344000037 ], [ -124.08918441499999, 49.250731700000074 ], [ -124.089192106999917, 49.250544307000091 ], [ -124.089204701999961, 49.25023958500006 ], [ -124.08922137899998, 49.249500690000119 ], [ -124.089238009999974, 49.248762696000085 ], [ -124.089288597999925, 49.248700589000059 ], [ -124.08992858799995, 49.24792680200008 ], [ -124.089533810999967, 49.247813594000036 ], [ -124.088998182999987, 49.247782611000062 ], [ -124.08877961799999, 49.247376826000099 ], [ -124.083322250000023, 49.245491262000044 ], [ -124.082906216999945, 49.245349505000021 ], [ -124.081309515000015, 49.244805390000089 ], [ -124.08092708199996, 49.244698639000028 ], [ -124.080930846999962, 49.244607562000077 ], [ -124.080948994999943, 49.244168524000017 ], [ -124.080943655999945, 49.24392399100001 ], [ -124.080915582999921, 49.244603131000069 ], [ -124.08091181199994, 49.244694376000027 ], [ -124.080420674000024, 49.24455728100007 ], [ -124.079614407999941, 49.244373691000078 ], [ -124.078991284, 49.244272613000049 ], [ -124.079032771999934, 49.244165300000077 ], [ -124.079059082999891, 49.244091231000034 ], [ -124.079282872999926, 49.243461161000013 ], [ -124.07948455899998, 49.243131616000113 ], [ -124.079812736999926, 49.242829556000039 ], [ -124.080123331, 49.242620774000024 ], [ -124.08079177899999, 49.242245643000096 ], [ -124.081654898999929, 49.241761187000108 ], [ -124.082036410999976, 49.241929998000082 ], [ -124.083883102999948, 49.242545401000037 ], [ -124.084438221000013, 49.242827999000028 ], [ -124.086141191999928, 49.243801786000063 ], [ -124.086543727999967, 49.24386029500009 ], [ -124.086561798, 49.244486314000085 ], [ -124.08661738699999, 49.244570195000044 ], [ -124.086866508999989, 49.244754600000093 ], [ -124.088055776999951, 49.245430693000067 ], [ -124.089224020999907, 49.246094750000076 ], [ -124.090365842000011, 49.246743795000064 ], [ -124.090548113999958, 49.246847381000109 ], [ -124.091380777999959, 49.247293391000092 ], [ -124.091721905999989, 49.247397141000079 ], [ -124.091764516999902, 49.247410100000067 ], [ -124.091924103999958, 49.247435407000104 ], [ -124.092084898999957, 49.247462511000094 ], [ -124.09314471499999, 49.247460605000043 ], [ -124.093298031999922, 49.247455778000109 ], [ -124.093827224999956, 49.247439140000047 ], [ -124.094019463999956, 49.247433112000088 ], [ -124.093623758999954, 49.246109996000058 ], [ -124.093619316999977, 49.246005767000014 ], [ -124.093908874999926, 49.24601088200005 ], [ -124.09389774899995, 49.24628184900012 ], [ -124.097951143999978, 49.246353378000023 ], [ -124.097945758999913, 49.246484799000022 ], [ -124.09825621799996, 49.246490271000056 ], [ -124.098277191999927, 49.245978266000044 ], [ -124.098852752999946, 49.245988408000109 ], [ -124.098871694999957, 49.245525880000066 ], [ -124.098993997999969, 49.245528035000142 ], [ -124.0990071, 49.245208082000062 ], [ -124.098284084999989, 49.245214958000105 ], [ -124.098290068999972, 49.245484765000121 ], [ -124.094168946999957, 49.245523875000075 ], [ -124.094162983999965, 49.245254067000147 ], [ -124.093587517999964, 49.245259517000122 ], [ -124.093477167999978, 49.242669584000069 ], [ -124.093370744999902, 49.241735021000089 ], [ -124.093749106999923, 49.241732141000057 ], [ -124.094023885999917, 49.241730046000022 ], [ -124.094323298999939, 49.241727765000157 ], [ -124.094471074999959, 49.241726650000047 ], [ -124.09466079, 49.24172520300003 ], [ -124.095025411999927, 49.241718664000132 ], [ -124.09649630399997, 49.241692302000068 ], [ -124.09995152099999, 49.24163030700003 ], [ -124.100080268999989, 49.240158604000094 ], [ -124.102207809999967, 49.240196050000051 ], [ -124.102158598999921, 49.241399954 ], [ -124.102321081999904, 49.24139840400003 ], [ -124.102297060999945, 49.240319175000074 ], [ -124.104357399999984, 49.24029949600007 ], [ -124.104351383999983, 49.240029689000025 ], [ -124.105587578999945, 49.240017863000077 ], [ -124.105593601999942, 49.240287671000075 ], [ -124.106417735999969, 49.240279779000062 ], [ -124.106435821999966, 49.241089200000047 ], [ -124.105611672999913, 49.241097090000046 ], [ -124.105613353999956, 49.241172400000032 ], [ -124.10792155599998, 49.241212905000076 ], [ -124.107917091999937, 49.241322438000061 ], [ -124.108896272999985, 49.241339606000118 ], [ -124.108933486999931, 49.24042591400007 ], [ -124.113669539999989, 49.240508825000134 ], [ -124.114055911999984, 49.240515579000075 ], [ -124.114419369999936, 49.240521932000021 ], [ -124.114419100999925, 49.240528526000041 ], [ -124.114408759999918, 49.240783182000015 ], [ -124.115953679, 49.240810173000099 ], [ -124.116615197999977, 49.240821723000145 ], [ -124.1194632, 49.24087140200001 ], [ -124.11946157399997, 49.240911581000013 ], [ -124.12005288099995, 49.24092188700012 ], [ -124.120040065999945, 49.241238353000028 ], [ -124.12001573099991, 49.241839367000075 ], [ -124.120010235999928, 49.241975069000077 ], [ -124.123946602999951, 49.242043588000122 ], [ -124.123943940999979, 49.242109461000055 ], [ -124.124726576999976, 49.242123068000055 ], [ -124.124711750999936, 49.242490150000066 ], [ -124.126419837999904, 49.242519825000102 ], [ -124.126411124999919, 49.242735719000116 ], [ -124.128292682, 49.242768377000104 ], [ -124.128266276999952, 49.243423334000084 ], [ -124.128637309999959, 49.243429770000077 ], [ -124.128592227999945, 49.244548166000101 ], [ -124.1286214779999, 49.244548673000054 ], [ -124.128618929999959, 49.244611902000088 ], [ -124.129290956999981, 49.244623556000064 ], [ -124.1292876399999, 49.244705882000062 ], [ -124.129608236999971, 49.244711440000088 ], [ -124.129613924999916, 49.244570237000111 ], [ -124.135100338999933, 49.244665204000043 ], [ -124.135081477999947, 49.245134782000015 ], [ -124.125632685999946, 49.244978595000113 ], [ -124.12468340199996, 49.245204308000041 ], [ -124.124630250999985, 49.245209553000059 ], [ -124.124349882, 49.245237205000123 ], [ -124.123392089, 49.245229512 ], [ -124.12279249099997, 49.245122793000036 ], [ -124.121184112999984, 49.244675201000092 ], [ -124.120553194999928, 49.24452741300005 ], [ -124.120193797999917, 49.244489607000077 ], [ -124.11911970199999, 49.244473614000114 ], [ -124.11584653099996, 49.244424687000048 ], [ -124.115520300999975, 49.244419808000082 ], [ -124.115224642999976, 49.244790322000028 ], [ -124.115028622999901, 49.245036003000031 ], [ -124.114538352999944, 49.245727012000025 ], [ -124.11403861299999, 49.246431399000066 ], [ -124.113553873999962, 49.247076849000081 ], [ -124.113490019999958, 49.24716189700009 ], [ -124.113220388999977, 49.247377710000087 ], [ -124.113586394, 49.247729799000091 ], [ -124.113778189999948, 49.24784031400003 ], [ -124.113965494999974, 49.247890398000052 ], [ -124.113776065999929, 49.248311549000029 ], [ -124.113719603999968, 49.24843709000006 ], [ -124.113667618999926, 49.248702693000105 ], [ -124.113703018999942, 49.248825396000015 ], [ -124.112927803999966, 49.248816076000075 ], [ -124.112819789999961, 49.250034348000014 ], [ -124.112771481999943, 49.250033503000083 ], [ -124.112773339999961, 49.24998781100004 ], [ -124.11228626799999, 49.249979291000074 ], [ -124.112287374999966, 49.249952043000114 ], [ -124.111923755999939, 49.249945682000117 ], [ -124.111923822999984, 49.249944046000039 ], [ -124.111456538999917, 49.249935869000076 ], [ -124.111456762999978, 49.249930360000079 ], [ -124.110970920999975, 49.249921856000071 ], [ -124.110982399999926, 49.249639793000043 ], [ -124.110414119, 49.249629843000058 ], [ -124.110441551999955, 49.248955905000045 ], [ -124.108134884999942, 49.24891548900009 ], [ -124.108129341999927, 49.249051479000123 ], [ -124.105806870999956, 49.249010736000045 ], [ -124.105773393999954, 49.249831135000122 ], [ -124.105102519999917, 49.249819356000117 ], [ -124.10509557499995, 49.249989452000101 ], [ -124.104917901999954, 49.249986332000077 ], [ -124.104887972, 49.250719416000024 ], [ -124.104887949999949, 49.25071996200009 ], [ -124.104893955999927, 49.250720067000053 ], [ -124.104913347999982, 49.250720408000134 ], [ -124.104913274999944, 49.250722171000092 ], [ -124.104909011999965, 49.250826590000059 ], [ -124.10489475199995, 49.251175868000118 ], [ -124.105431654999961, 49.25118529500007 ], [ -124.105430948999967, 49.251202589000073 ], [ -124.107280443999954, 49.251235044000083 ], [ -124.107417283999951, 49.251237445000051 ], [ -124.107416295999954, 49.251261688000021 ], [ -124.107401970999959, 49.251613017000096 ], [ -124.107907973999943, 49.251621890000116 ], [ -124.107902044999946, 49.251356956000031 ], [ -124.107899896999953, 49.251261023000048 ], [ -124.107895402999958, 49.25106019000004 ], [ -124.109956183999884, 49.251040408000108 ], [ -124.109970241000013, 49.251667297000012 ], [ -124.109971103999968, 49.251705720000132 ], [ -124.110185155999929, 49.251709469000083 ], [ -124.110618595999966, 49.251717058000047 ], [ -124.110635392999981, 49.251304386000093 ], [ -124.112703940999936, 49.251340584000076 ], [ -124.112664569999964, 49.251784495000024 ], [ -124.112638888999982, 49.252074391000065 ], [ -124.112630192999958, 49.252172505000011 ], [ -124.112637221999947, 49.252611705000085 ], [ -124.11261379799997, 49.253012205000125 ], [ -124.11279299499995, 49.253671701 ], [ -124.111491934999961, 49.254036051000078 ], [ -124.110883583999936, 49.254206401 ], [ -124.110557321999948, 49.254295203000055 ], [ -124.110277497999945, 49.254323591000045 ], [ -124.110105916999885, 49.254323367000033 ], [ -124.109831312999944, 49.254323 ], [ -124.10955090299997, 49.254299212000035 ], [ -124.109486295999915, 49.254293928000052 ], [ -124.10935379299994, 49.254283086000093 ], [ -124.109287775999974, 49.254271375000066 ], [ -124.108058990999922, 49.254053288000129 ], [ -124.10594103199999, 49.253869439000063 ], [ -124.105811390000014, 49.253858202000075 ], [ -124.105114902999944, 49.253767610000047 ], [ -124.104604090999942, 49.253668599000086 ], [ -124.103638997999937, 49.253434699000131 ], [ -124.102685712999957, 49.253246798000077 ], [ -124.102575668999947, 49.253231377000098 ], [ -124.101702899999964, 49.253108888000014 ], [ -124.101365394999931, 49.253069711000137 ] ], [ [ -124.093576336999931, 49.251125194000053 ], [ -124.093589299999906, 49.250809564000093 ], [ -124.095547426999971, 49.25084413900008 ], [ -124.095551326999939, 49.250749111000118 ], [ -124.096028933999918, 49.250757540000052 ], [ -124.09603151, 49.250694724 ], [ -124.096298071999954, 49.250699427000015 ], [ -124.096324397, 49.250057561000062 ], [ -124.096268357999975, 49.250056572000084 ], [ -124.096273484999969, 49.249931595000064 ], [ -124.096273748999977, 49.249925152000088 ], [ -124.096248241999902, 49.249924702000079 ], [ -124.092615852999955, 49.249860557000041 ], [ -124.092627671999935, 49.25039601600011 ], [ -124.092215516999943, 49.250399913000109 ], [ -124.0922280599999, 49.25096836000008 ], [ -124.092724022999988, 49.250977126000087 ], [ -124.09272021699999, 49.251069740000062 ], [ -124.093307104999951, 49.251080112000054 ], [ -124.093305450999935, 49.251120409000073 ], [ -124.093576336999931, 49.251125194000053 ] ], [ [ -124.102357401999953, 49.243029922000069 ], [ -124.102357920999964, 49.243017239000054 ], [ -124.102357119999937, 49.243017246000107 ], [ -124.102357401999953, 49.243029922000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106598417", "BldgCostT": "73306667", "sL_LossRatio": "0.824893078920995", "sL_AssetLoss": "615641", "sL_BldgLoss": "507838", "sL_StrLoss": "297067", "sL_NStrLoss": "210771", "sL_ContLoss": "107803", "geom_point": "0101000020E61000007F158D73E3055FC009671AC1049F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.089224020999907, 49.246094750000076 ], [ -124.088055776999951, 49.245430693000067 ], [ -124.086866508999989, 49.244754600000093 ], [ -124.08661738699999, 49.244570195000044 ], [ -124.086561798, 49.244486314000085 ], [ -124.086543727999967, 49.24386029500009 ], [ -124.086546900999949, 49.243016709000088 ], [ -124.08823922, 49.243017008000017 ], [ -124.088256793999975, 49.242324012000026 ], [ -124.088333394999921, 49.242163289000118 ], [ -124.088515794, 49.241966719000047 ], [ -124.089134304999959, 49.241612995 ], [ -124.089266089999967, 49.241477596 ], [ -124.089316520999986, 49.241352407000129 ], [ -124.089337622999921, 49.240739703000109 ], [ -124.089337922999931, 49.239964611000083 ], [ -124.089338125999959, 49.239561123000023 ], [ -124.089336147000012, 49.238722665000054 ], [ -124.089333304999954, 49.237509990000035 ], [ -124.08926474, 49.237603863000047 ], [ -124.08926330099996, 49.237346247000076 ], [ -124.093136500999933, 49.237946658000112 ], [ -124.09309088599997, 49.239057338000109 ], [ -124.093232648999972, 49.239055997000079 ], [ -124.09443793199992, 49.239044583000123 ], [ -124.094458810999924, 49.239989308000069 ], [ -124.099080020999978, 49.240070832000107 ], [ -124.099077150999975, 49.240140934000095 ], [ -124.100080268999989, 49.240158604000094 ], [ -124.09995152099999, 49.24163030700003 ], [ -124.09649630399997, 49.241692302000068 ], [ -124.095025411999927, 49.241718664000132 ], [ -124.09466079, 49.24172520300003 ], [ -124.094471074999959, 49.241726650000047 ], [ -124.094323298999939, 49.241727765000157 ], [ -124.094023885999917, 49.241730046000022 ], [ -124.093749106999923, 49.241732141000057 ], [ -124.093370744999902, 49.241735021000089 ], [ -124.093477167999978, 49.242669584000069 ], [ -124.093587517999964, 49.245259517000122 ], [ -124.093338762999963, 49.245261871000046 ], [ -124.093355087999896, 49.246001098000079 ], [ -124.093619316999977, 49.246005767000014 ], [ -124.093623758999954, 49.246109996000058 ], [ -124.094019463999956, 49.247433112000088 ], [ -124.093827224999956, 49.247439140000047 ], [ -124.093298031999922, 49.247455778000109 ], [ -124.09314471499999, 49.247460605000043 ], [ -124.092084898999957, 49.247462511000094 ], [ -124.091924103999958, 49.247435407000104 ], [ -124.091764516999902, 49.247410100000067 ], [ -124.091721905999989, 49.247397141000079 ], [ -124.091380777999959, 49.247293391000092 ], [ -124.090548113999958, 49.246847381000109 ], [ -124.090365842000011, 49.246743795000064 ], [ -124.089224020999907, 49.246094750000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129812001", "BldgCostT": "88790001", "sL_LossRatio": "0.859755994639733", "sL_AssetLoss": "604298.2", "sL_BldgLoss": "519549", "sL_StrLoss": "343542", "sL_NStrLoss": "176007", "sL_ContLoss": "84749.2", "geom_point": "0101000020E610000085B610A284045FC0EF7D89FCA39E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.068483496999988, 49.243329570000107 ], [ -124.068490511, 49.243161 ], [ -124.067005791999975, 49.243134410000046 ], [ -124.066499972999964, 49.243125347000039 ], [ -124.066500387999952, 49.243144696000066 ], [ -124.066502836999959, 49.243258343000072 ], [ -124.065541689999989, 49.24307878000009 ], [ -124.064566949999929, 49.243282552000011 ], [ -124.0640256679999, 49.242668065000046 ], [ -124.061726692999969, 49.241911919000081 ], [ -124.061038636999939, 49.241724865000052 ], [ -124.060057425999915, 49.241557764000042 ], [ -124.058515104999955, 49.241355473000034 ], [ -124.058442601999928, 49.241345945000049 ], [ -124.057511424, 49.241131122000084 ], [ -124.057798647999959, 49.24111126800009 ], [ -124.060333187999959, 49.24093609100008 ], [ -124.060076986999917, 49.240770410000088 ], [ -124.059413810999899, 49.240341504000135 ], [ -124.059019279000026, 49.240059182000081 ], [ -124.058187789999963, 49.23946413300007 ], [ -124.05668016700001, 49.238323117000085 ], [ -124.056256191999964, 49.238002242000043 ], [ -124.056184873999925, 49.237949866000093 ], [ -124.061111128999968, 49.238038517000113 ], [ -124.060999738999925, 49.240705879000089 ], [ -124.06100950699999, 49.240705790000085 ], [ -124.06150186799999, 49.240701266000073 ], [ -124.061498900999979, 49.240562904000093 ], [ -124.061496085, 49.240431455000049 ], [ -124.062500649999919, 49.24042222 ], [ -124.062506923999962, 49.240271858000085 ], [ -124.062348473, 49.240269013000081 ], [ -124.062381644999917, 49.239474158000029 ], [ -124.06223991899995, 49.239471612000031 ], [ -124.062366210999969, 49.236445356000083 ], [ -124.061177162999954, 49.236423992000041 ], [ -124.061184668999928, 49.236244221000121 ], [ -124.05806623299999, 49.236188129000013 ], [ -124.058001496999935, 49.237735950000072 ], [ -124.056079838999935, 49.237701340000115 ], [ -124.056083550999986, 49.237875453000093 ], [ -124.055360121999968, 49.237344147000059 ], [ -124.055210083999967, 49.237038284000036 ], [ -124.053957230999984, 49.234484543000072 ], [ -124.06214725199996, 49.234631025000056 ], [ -124.062410020999963, 49.234662940000078 ], [ -124.062451741999965, 49.234667992000034 ], [ -124.062628200999967, 49.234655652000107 ], [ -124.064610988999974, 49.234638820000036 ], [ -124.064507444999904, 49.234319338000034 ], [ -124.064725869999918, 49.234335830000113 ], [ -124.065043136999961, 49.234359772000047 ], [ -124.066013369999965, 49.234458187000016 ], [ -124.06745924099999, 49.234602063000104 ], [ -124.068008879999965, 49.234650619000128 ], [ -124.068626945999966, 49.234803051 ], [ -124.069039667999931, 49.234942833000034 ], [ -124.069627380999961, 49.235099226000024 ], [ -124.070408362999942, 49.235228425000066 ], [ -124.071715800999982, 49.235303997000095 ], [ -124.072586218999959, 49.235394297000056 ], [ -124.074820496999934, 49.235787094000059 ], [ -124.074948787999944, 49.235837094000033 ], [ -124.075274351999951, 49.235979993000072 ], [ -124.075305986999979, 49.235993909000108 ], [ -124.075609387999947, 49.236190109000056 ], [ -124.07611820599999, 49.236695310000037 ], [ -124.076925490999912, 49.237647918000086 ], [ -124.07720790899999, 49.237886116000062 ], [ -124.078176170999981, 49.238366720000109 ], [ -124.078178804999979, 49.2383680290001 ], [ -124.078897291999965, 49.238648213000054 ], [ -124.080608197999965, 49.239457508000022 ], [ -124.081037486999918, 49.239596606000084 ], [ -124.082080884999968, 49.239821315000079 ], [ -124.08324429, 49.239997720000133 ], [ -124.08423650499995, 49.240233212000071 ], [ -124.084564290999964, 49.240371418000038 ], [ -124.085015925000036, 49.240202973000088 ], [ -124.085450722999909, 49.24007651600003 ], [ -124.086565661999913, 49.239897320000097 ], [ -124.086811787999935, 49.239853073000063 ], [ -124.087752079999944, 49.239581626000067 ], [ -124.088086926999921, 49.239549751000062 ], [ -124.089338125999959, 49.239561123000023 ], [ -124.089337922999931, 49.239964611000083 ], [ -124.089337622999921, 49.240739703000109 ], [ -124.089316520999986, 49.241352407000129 ], [ -124.089266089999967, 49.241477596 ], [ -124.089134304999959, 49.241612995 ], [ -124.088515794, 49.241966719000047 ], [ -124.088333394999921, 49.242163289000118 ], [ -124.088256793999975, 49.242324012000026 ], [ -124.08823922, 49.243017008000017 ], [ -124.086546900999949, 49.243016709000088 ], [ -124.086543727999967, 49.24386029500009 ], [ -124.086141191999928, 49.243801786000063 ], [ -124.084438221000013, 49.242827999000028 ], [ -124.083883102999948, 49.242545401000037 ], [ -124.082036410999976, 49.241929998000082 ], [ -124.081654898999929, 49.241761187000108 ], [ -124.08079177899999, 49.242245643000096 ], [ -124.080123331, 49.242620774000024 ], [ -124.079812736999926, 49.242829556000039 ], [ -124.07948455899998, 49.243131616000113 ], [ -124.079282872999926, 49.243461161000013 ], [ -124.079059082999891, 49.244091231000034 ], [ -124.079032771999934, 49.244165300000077 ], [ -124.078991284, 49.244272613000049 ], [ -124.07802391300001, 49.244100501000048 ], [ -124.076705117999964, 49.243962693000064 ], [ -124.076636752999931, 49.243958761000059 ], [ -124.075537614999973, 49.243895670000036 ], [ -124.074734926999952, 49.243849570000101 ], [ -124.073872155999936, 49.243800022000116 ], [ -124.073565204999952, 49.243782389000046 ], [ -124.07136184499997, 49.243666006000097 ], [ -124.068799234999972, 49.243530599000103 ], [ -124.068476347999962, 49.2435014080001 ], [ -124.068480882999935, 49.243392379000078 ], [ -124.068483496999988, 49.243329570000107 ] ], [ [ -124.075547219999976, 49.241660481000103 ], [ -124.075547845999949, 49.241645392000116 ], [ -124.078620178999969, 49.241700151000025 ], [ -124.078684382999953, 49.240148688000026 ], [ -124.077975896999959, 49.240136069000059 ], [ -124.077984877999967, 49.24054862 ], [ -124.077572803999928, 49.240552464000082 ], [ -124.077584545999954, 49.241092084000101 ], [ -124.076348310999961, 49.241103610000074 ], [ -124.07634244799999, 49.240833800000068 ], [ -124.075381941, 49.240842746000055 ], [ -124.075373204999948, 49.241053496000056 ], [ -124.075477169999928, 49.241055351000057 ], [ -124.075452156999916, 49.241658785000027 ], [ -124.075547219999976, 49.241660481000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216354419", "BldgCostT": "133996645", "sL_LossRatio": "0.71244291792137", "sL_AssetLoss": "1340466.69", "sL_BldgLoss": "955006", "sL_StrLoss": "457116", "sL_NStrLoss": "497890", "sL_ContLoss": "385460.69", "geom_point": "0101000020E6100000824A334847045FC0A9AE64438E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.060267363999955, 49.248679572000043 ], [ -124.05887061599999, 49.248178391000053 ], [ -124.05773306899998, 49.24741419 ], [ -124.057280296999963, 49.247048595000052 ], [ -124.057246508999981, 49.245290524000033 ], [ -124.057245664999925, 49.245246613000042 ], [ -124.05723515499993, 49.244700028000103 ], [ -124.057221098999946, 49.243969218000089 ], [ -124.057221789, 49.243850839000103 ], [ -124.057224847999962, 49.243337788000133 ], [ -124.057234305999941, 49.241750972000048 ], [ -124.057012196999949, 49.241751428000086 ], [ -124.057511424, 49.241131122000084 ], [ -124.058442601999928, 49.241345945000049 ], [ -124.058515104999955, 49.241355473000034 ], [ -124.060057425999915, 49.241557764000042 ], [ -124.061038636999939, 49.241724865000052 ], [ -124.061726692999969, 49.241911919000081 ], [ -124.0640256679999, 49.242668065000046 ], [ -124.064566949999929, 49.243282552000011 ], [ -124.065541689999989, 49.24307878000009 ], [ -124.066502836999959, 49.243258343000072 ], [ -124.066504892999973, 49.24335382200011 ], [ -124.066989956, 49.243349343000041 ], [ -124.067130314999972, 49.243375564000132 ], [ -124.067173312999927, 49.243383595000061 ], [ -124.068156173999952, 49.243472462000092 ], [ -124.068159105999911, 49.243608402000113 ], [ -124.068472016999976, 49.243605508 ], [ -124.068476347999962, 49.2435014080001 ], [ -124.068799234999972, 49.243530599000103 ], [ -124.07136184499997, 49.243666006000097 ], [ -124.073565204999952, 49.243782389000046 ], [ -124.073872155999936, 49.243800022000116 ], [ -124.074734926999952, 49.243849570000101 ], [ -124.075537614999973, 49.243895670000036 ], [ -124.076636752999931, 49.243958761000059 ], [ -124.076705117999964, 49.243962693000064 ], [ -124.07802391300001, 49.244100501000048 ], [ -124.078991284, 49.244272613000049 ], [ -124.079614407999941, 49.244373691000078 ], [ -124.080420674000024, 49.24455728100007 ], [ -124.08091181199994, 49.244694376000027 ], [ -124.080909503999962, 49.244750193000094 ], [ -124.079922703999969, 49.244485446000112 ], [ -124.079536848999979, 49.244456080000163 ], [ -124.07928209, 49.244475850000121 ], [ -124.079117721999964, 49.244534131000066 ], [ -124.078829845999934, 49.244691076000059 ], [ -124.078678930999956, 49.245087190000014 ], [ -124.078637333999936, 49.245316961000093 ], [ -124.077071575999966, 49.245289068000091 ], [ -124.077050219999961, 49.245804657000036 ], [ -124.076671834, 49.245797913000054 ], [ -124.076660118999939, 49.246080665000079 ], [ -124.076188318999968, 49.246072254000126 ], [ -124.076178213999981, 49.246316076000056 ], [ -124.075634580999974, 49.246306382000036 ], [ -124.075597740999967, 49.24719508900008 ], [ -124.074656118999926, 49.247178291000097 ], [ -124.074649412, 49.247340011000098 ], [ -124.07434956699997, 49.247334661000068 ], [ -124.074327399999987, 49.247869022000074 ], [ -124.074434274999987, 49.247868027000038 ], [ -124.074441998999959, 49.248223911000089 ], [ -124.075137657999974, 49.248236323000079 ], [ -124.074504973999922, 49.248237602000103 ], [ -124.073752610999961, 49.248239118000043 ], [ -124.072814704000024, 49.24824100700009 ], [ -124.072943687999924, 49.24850530700008 ], [ -124.072993944999936, 49.248578686000037 ], [ -124.073256485999963, 49.24896231100012 ], [ -124.073759090999943, 49.249696592000085 ], [ -124.073814678999909, 49.249777799000078 ], [ -124.073976607999967, 49.249913640000059 ], [ -124.073988474999922, 49.249923564000092 ], [ -124.07435199399994, 49.250228487000108 ], [ -124.074610107999902, 49.250393395000103 ], [ -124.074719129999906, 49.250449233000062 ], [ -124.075251276999921, 49.250721692000063 ], [ -124.074822377999922, 49.251066100000074 ], [ -124.074401473999941, 49.25125219600006 ], [ -124.074731192999977, 49.251444511000074 ], [ -124.075757403999944, 49.25159329600006 ], [ -124.07582700099999, 49.251668390000084 ], [ -124.075818796999954, 49.251767289000021 ], [ -124.075666385999938, 49.252197602000081 ], [ -124.075636886999945, 49.252281708000083 ], [ -124.075492219999916, 49.252361105000048 ], [ -124.075343879999963, 49.25236109100009 ], [ -124.072887782999928, 49.252034604000102 ], [ -124.072528812999963, 49.251984106000052 ], [ -124.070905979, 49.251954208000029 ], [ -124.070906357999917, 49.251945219000042 ], [ -124.07093391799998, 49.251283 ], [ -124.068521710999917, 49.251122809000094 ], [ -124.067554675999986, 49.251048542000049 ], [ -124.06741582699999, 49.251037867000043 ], [ -124.067283287999928, 49.251027696000037 ], [ -124.066600905999962, 49.25093269900006 ], [ -124.06645911399994, 49.250893307000126 ], [ -124.06558579199999, 49.250650701000048 ], [ -124.065160781999936, 49.250505306000072 ], [ -124.065088805999963, 49.25046927000006 ], [ -124.06477621499999, 49.250312889000071 ], [ -124.064302387999973, 49.250060250000033 ], [ -124.06422737900003, 49.250020259000095 ], [ -124.063981204999934, 49.249888994000102 ], [ -124.063731416999971, 49.249790002000033 ], [ -124.063456521999953, 49.249714821000047 ], [ -124.062807399999969, 49.249537263000093 ], [ -124.062537001999928, 49.249463302000073 ], [ -124.060672105999956, 49.248824802000087 ], [ -124.060436134000014, 49.248740137000063 ], [ -124.060267363999955, 49.248679572000043 ] ], [ [ -124.069506135999987, 49.248723350000063 ], [ -124.069492095999976, 49.248073433000066 ], [ -124.068828643999922, 49.248061562000025 ], [ -124.068830564999985, 49.248015392000049 ], [ -124.068079219999959, 49.248001942000094 ], [ -124.068082865999941, 49.247914330000121 ], [ -124.068080103999947, 49.247914281000085 ], [ -124.068051920999963, 49.248591472000122 ], [ -124.067441932999969, 49.248580548000056 ], [ -124.067445421999977, 49.24874241100013 ], [ -124.068165106999984, 49.248735758000102 ], [ -124.068167138999954, 49.248715263000037 ], [ -124.069081418999929, 49.248727281000122 ], [ -124.069506135999987, 49.248723350000063 ] ], [ [ -124.062629120999929, 49.246961090000063 ], [ -124.062631765, 49.246897745000048 ], [ -124.062459167999975, 49.246899332000055 ], [ -124.062453376999954, 49.246629522000077 ], [ -124.061973627, 49.246633934000023 ], [ -124.061972667999939, 49.246656927000039 ], [ -124.061946611999971, 49.246656459000128 ], [ -124.061934414999925, 49.246948614000111 ], [ -124.062629120999929, 49.246961090000063 ] ], [ [ -124.062766576999962, 49.244737595000082 ], [ -124.062777843999982, 49.244467628000045 ], [ -124.062610626999984, 49.244469167000126 ], [ -124.06259936099994, 49.244739134000106 ], [ -124.062766576999962, 49.244737595000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.817456155683738", "sL_AssetLoss": "17163", "sL_BldgLoss": "14030", "sL_StrLoss": "7810", "sL_NStrLoss": "6220", "sL_ContLoss": "3133", "geom_point": "0101000020E6100000E905653B1B055FC0C610E77E5A9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.07928209, 49.244475850000121 ], [ -124.079536848999979, 49.244456080000163 ], [ -124.079922703999969, 49.244485446000112 ], [ -124.080909503999962, 49.244750193000094 ], [ -124.080885045999963, 49.245341863000121 ], [ -124.080369149999953, 49.245332686000076 ], [ -124.080368525999958, 49.245347775000027 ], [ -124.078637333999936, 49.245316961000093 ], [ -124.078678930999956, 49.245087190000014 ], [ -124.078829845999934, 49.244691076000059 ], [ -124.079117721999964, 49.244534131000066 ], [ -124.07928209, 49.244475850000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162827500", "BldgCostT": "110380000", "sL_LossRatio": "0.801802045245848", "sL_AssetLoss": "1025079.7", "sL_BldgLoss": "821911", "sL_StrLoss": "473099", "sL_NStrLoss": "348812", "sL_ContLoss": "203168.7", "geom_point": "0101000020E61000009E0A7E3CF0045FC09B92B4341AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.079487414999974, 49.254979592000019 ], [ -124.079159214999947, 49.254965308000038 ], [ -124.078544509999944, 49.255150499000123 ], [ -124.077950702999942, 49.255012304000019 ], [ -124.077886166, 49.254947790000053 ], [ -124.077885040999945, 49.254896078000073 ], [ -124.077821114999978, 49.254852932000091 ], [ -124.077791550999962, 49.254853208000085 ], [ -124.076728546999945, 49.253790547000094 ], [ -124.076319491, 49.253381607000058 ], [ -124.075555288999979, 49.252938700000094 ], [ -124.073225388999944, 49.252601090000041 ], [ -124.072688808999914, 49.252596894000071 ], [ -124.072238392999978, 49.252709412000065 ], [ -124.071839387999944, 49.252685204000088 ], [ -124.071238463999933, 49.252578810000081 ], [ -124.071237788999923, 49.252547672000055 ], [ -124.070889519999952, 49.252503120000014 ], [ -124.070783864999939, 49.25248960400009 ], [ -124.07073709499997, 49.252490037000015 ], [ -124.070294599, 49.252411688000059 ], [ -124.069284318999976, 49.252142504000119 ], [ -124.068519649999971, 49.252125577000065 ], [ -124.06729248699996, 49.252098400000065 ], [ -124.066042483999965, 49.252145394000131 ], [ -124.064387608999979, 49.251917493000079 ], [ -124.063802388999989, 49.251860075000096 ], [ -124.063794107999939, 49.251474728000069 ], [ -124.063665496999946, 49.251475913000021 ], [ -124.063625737999985, 49.251480863000054 ], [ -124.063472039999965, 49.251480163000089 ], [ -124.063449430999981, 49.251479264000075 ], [ -124.063435045999938, 49.251824033000069 ], [ -124.063052483999968, 49.251786496000115 ], [ -124.061641983999948, 49.2514118980001 ], [ -124.060839107999982, 49.251122787000078 ], [ -124.058446116999946, 49.249759802000035 ], [ -124.057155195999897, 49.249192871000041 ], [ -124.057160196999973, 49.2490555870001 ], [ -124.057309808999946, 49.248148514000057 ], [ -124.057300727999959, 49.247764076000081 ], [ -124.057299907999919, 49.247728682000023 ], [ -124.057280296999963, 49.247048595000052 ], [ -124.05773306899998, 49.24741419 ], [ -124.05887061599999, 49.248178391000053 ], [ -124.060267363999955, 49.248679572000043 ], [ -124.060436134000014, 49.248740137000063 ], [ -124.060672105999956, 49.248824802000087 ], [ -124.062537001999928, 49.249463302000073 ], [ -124.062807399999969, 49.249537263000093 ], [ -124.063456521999953, 49.249714821000047 ], [ -124.063731416999971, 49.249790002000033 ], [ -124.063981204999934, 49.249888994000102 ], [ -124.06422737900003, 49.250020259000095 ], [ -124.064302387999973, 49.250060250000033 ], [ -124.06477621499999, 49.250312889000071 ], [ -124.065088805999963, 49.25046927000006 ], [ -124.065160781999936, 49.250505306000072 ], [ -124.06558579199999, 49.250650701000048 ], [ -124.06645911399994, 49.250893307000126 ], [ -124.066600905999962, 49.25093269900006 ], [ -124.067283287999928, 49.251027696000037 ], [ -124.06741582699999, 49.251037867000043 ], [ -124.067554675999986, 49.251048542000049 ], [ -124.068521710999917, 49.251122809000094 ], [ -124.07093391799998, 49.251283 ], [ -124.070906357999917, 49.251945219000042 ], [ -124.070905979, 49.251954208000029 ], [ -124.072528812999963, 49.251984106000052 ], [ -124.072887782999928, 49.252034604000102 ], [ -124.075343879999963, 49.25236109100009 ], [ -124.075492219999916, 49.252361105000048 ], [ -124.075636886999945, 49.252281708000083 ], [ -124.075666385999938, 49.252197602000081 ], [ -124.075818796999954, 49.251767289000021 ], [ -124.07582700099999, 49.251668390000084 ], [ -124.075757403999944, 49.25159329600006 ], [ -124.074731192999977, 49.251444511000074 ], [ -124.074401473999941, 49.25125219600006 ], [ -124.074822377999922, 49.251066100000074 ], [ -124.075251276999921, 49.250721692000063 ], [ -124.074719129999906, 49.250449233000062 ], [ -124.074610107999902, 49.250393395000103 ], [ -124.07435199399994, 49.250228487000108 ], [ -124.073988474999922, 49.249923564000092 ], [ -124.073976607999967, 49.249913640000059 ], [ -124.073814678999909, 49.249777799000078 ], [ -124.073759090999943, 49.249696592000085 ], [ -124.073256485999963, 49.24896231100012 ], [ -124.072993944999936, 49.248578686000037 ], [ -124.072943687999924, 49.24850530700008 ], [ -124.072814704000024, 49.24824100700009 ], [ -124.073752610999961, 49.248239118000043 ], [ -124.074504973999922, 49.248237602000103 ], [ -124.075137657999974, 49.248236323000079 ], [ -124.07939057599998, 49.248312104000021 ], [ -124.079379887999934, 49.247821922000071 ], [ -124.079780117999945, 49.247818181000063 ], [ -124.07978972199993, 49.247712630000073 ], [ -124.079768482999967, 49.246738835000059 ], [ -124.08190285699996, 49.246718865000076 ], [ -124.08190859699999, 49.246579955000122 ], [ -124.081607316999964, 49.246574599000049 ], [ -124.081608719999906, 49.246540645000039 ], [ -124.080851491999951, 49.246527179000047 ], [ -124.080924781999954, 49.244754291000064 ], [ -124.08150419899999, 49.244909737000086 ], [ -124.083322250000023, 49.245491262000044 ], [ -124.08877961799999, 49.247376826000099 ], [ -124.088998182999987, 49.247782611000062 ], [ -124.087383342999928, 49.247689205000015 ], [ -124.086361824999955, 49.247630082000036 ], [ -124.085423514999931, 49.247575781000158 ], [ -124.085114718999989, 49.247557902000018 ], [ -124.085074698999946, 49.248427813000056 ], [ -124.085059071999936, 49.248748180000057 ], [ -124.085030114999967, 49.249343496000044 ], [ -124.085022776999963, 49.249520990000057 ], [ -124.08501682499994, 49.249664925000033 ], [ -124.085014512999976, 49.249721406000099 ], [ -124.08498748, 49.250209804000065 ], [ -124.084979111999985, 49.250368380000126 ], [ -124.084967201999945, 49.250593912000092 ], [ -124.08494775099993, 49.250961397000061 ], [ -124.084911088999931, 49.251654915000117 ], [ -124.08489504399995, 49.251958467000058 ], [ -124.084881103999919, 49.25222199600006 ], [ -124.084866677999955, 49.252429239000016 ], [ -124.084830703999913, 49.252944944000014 ], [ -124.084733361999923, 49.254380470000051 ], [ -124.08469124, 49.255001515000046 ], [ -124.084648335999972, 49.255633727000045 ], [ -124.084627434999931, 49.255938928000035 ], [ -124.084596538000014, 49.256389979000119 ], [ -124.084545101999979, 49.256918891000069 ], [ -124.0845413, 49.25700168000003 ], [ -124.083578391999978, 49.25720841300005 ], [ -124.083014818999956, 49.257241198000088 ], [ -124.082224307999965, 49.256960583000065 ], [ -124.081402296999954, 49.255754307000124 ], [ -124.080762412999945, 49.255382596000111 ], [ -124.080058019999925, 49.255263006000078 ], [ -124.079487414999974, 49.254979592000019 ] ], [ [ -124.082247127999892, 49.246985503000097 ], [ -124.082427343999882, 49.246983815000092 ], [ -124.082247021999976, 49.246980610000051 ], [ -124.082247127999892, 49.246985503000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134051915", "BldgCostT": "90711665", "sL_LossRatio": "0.863592522743425", "sL_AssetLoss": "520062.4", "sL_BldgLoss": "449122", "sL_StrLoss": "302130", "sL_NStrLoss": "146992", "sL_ContLoss": "70940.4", "geom_point": "0101000020E61000005182FE424F065FC0513CB2E269A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.084733361999923, 49.254380470000051 ], [ -124.084830703999913, 49.252944944000014 ], [ -124.084866677999955, 49.252429239000016 ], [ -124.084881103999919, 49.25222199600006 ], [ -124.08489504399995, 49.251958467000058 ], [ -124.084911088999931, 49.251654915000117 ], [ -124.08494775099993, 49.250961397000061 ], [ -124.084967201999945, 49.250593912000092 ], [ -124.084979111999985, 49.250368380000126 ], [ -124.08498748, 49.250209804000065 ], [ -124.085014512999976, 49.249721406000099 ], [ -124.08501682499994, 49.249664925000033 ], [ -124.085022776999963, 49.249520990000057 ], [ -124.085030114999967, 49.249343496000044 ], [ -124.085059071999936, 49.248748180000057 ], [ -124.085074698999946, 49.248427813000056 ], [ -124.085114718999989, 49.247557902000018 ], [ -124.085423514999931, 49.247575781000158 ], [ -124.086361824999955, 49.247630082000036 ], [ -124.087383342999928, 49.247689205000015 ], [ -124.088998182999987, 49.247782611000062 ], [ -124.089533810999967, 49.247813594000036 ], [ -124.08992858799995, 49.24792680200008 ], [ -124.089288597999925, 49.248700589000059 ], [ -124.089238009999974, 49.248762696000085 ], [ -124.08922137899998, 49.249500690000119 ], [ -124.089204701999961, 49.25023958500006 ], [ -124.089192106999917, 49.250544307000091 ], [ -124.08918441499999, 49.250731700000074 ], [ -124.089103462, 49.251325344000037 ], [ -124.089031017999929, 49.251857109000127 ], [ -124.088975702999946, 49.252901398000105 ], [ -124.08931541199992, 49.252952400000012 ], [ -124.091111091999892, 49.253219201000064 ], [ -124.091581615999971, 49.253260792000042 ], [ -124.09217278499996, 49.253273086000014 ], [ -124.092310236999964, 49.253259857000096 ], [ -124.095097505999902, 49.252991609000027 ], [ -124.095344782999973, 49.252983855000103 ], [ -124.09563089699999, 49.252974902000084 ], [ -124.095975712999987, 49.252978855000087 ], [ -124.09601670099994, 49.252979343000113 ], [ -124.096882406999939, 49.25298929800001 ], [ -124.097550081999913, 49.252996994000043 ], [ -124.097768315999957, 49.25299949200005 ], [ -124.098822956999967, 49.253011603000061 ], [ -124.099716801999961, 49.25302186600004 ], [ -124.100024613999963, 49.253025397000087 ], [ -124.101365394999931, 49.253069711000137 ], [ -124.101702899999964, 49.253108888000014 ], [ -124.102575668999947, 49.253231377000098 ], [ -124.102685712999957, 49.253246798000077 ], [ -124.103638997999937, 49.253434699000131 ], [ -124.104604090999942, 49.253668599000086 ], [ -124.105114902999944, 49.253767610000047 ], [ -124.105811390000014, 49.253858202000075 ], [ -124.10594103199999, 49.253869439000063 ], [ -124.108058990999922, 49.254053288000129 ], [ -124.109287775999974, 49.254271375000066 ], [ -124.10935379299994, 49.254283086000093 ], [ -124.109486295999915, 49.254293928000052 ], [ -124.10955090299997, 49.254299212000035 ], [ -124.109831312999944, 49.254323 ], [ -124.110105916999885, 49.254323367000033 ], [ -124.110277497999945, 49.254323591000045 ], [ -124.110557321999948, 49.254295203000055 ], [ -124.110883583999936, 49.254206401 ], [ -124.111491934999961, 49.254036051000078 ], [ -124.11279299499995, 49.253671701 ], [ -124.114184000999956, 49.253291715000017 ], [ -124.115211869999925, 49.252996371000108 ], [ -124.11603865799999, 49.252853254000073 ], [ -124.117200392999962, 49.25270555900002 ], [ -124.117215739999963, 49.252703627000109 ], [ -124.117220218999989, 49.252703823000068 ], [ -124.118675125, 49.252768677000084 ], [ -124.11946340899999, 49.252762606000026 ], [ -124.120801004, 49.252613100000119 ], [ -124.122353404999956, 49.252586111 ], [ -124.122636600999982, 49.252541511000061 ], [ -124.122694253999938, 49.252517308000073 ], [ -124.122853101999979, 49.252450682000088 ], [ -124.122133064999929, 49.253945675000132 ], [ -124.120614218999918, 49.254075197000091 ], [ -124.11868431, 49.254418410000035 ], [ -124.116641786999978, 49.254644907000085 ], [ -124.1162731, 49.25475601199999 ], [ -124.115976198999959, 49.255037986000076 ], [ -124.115898992999959, 49.255245905000066 ], [ -124.115047383, 49.255298606000068 ], [ -124.113078180999949, 49.255677401000128 ], [ -124.112749794999942, 49.255798515 ], [ -124.111001819999956, 49.255949103 ], [ -124.110170602999943, 49.256020702000058 ], [ -124.109220492999953, 49.255895301000059 ], [ -124.10658291499999, 49.255362698000091 ], [ -124.104746194999962, 49.254921193000023 ], [ -124.104236684999975, 49.254835701000104 ], [ -124.103564505999927, 49.25495109400012 ], [ -124.102919520999976, 49.254965301000063 ], [ -124.100699087999956, 49.254590709000119 ], [ -124.09906620799994, 49.254147799000108 ], [ -124.097419008999935, 49.254199099000076 ], [ -124.096109615999978, 49.254607804000059 ], [ -124.095160385, 49.254607793000062 ], [ -124.092997713000017, 49.254358597000142 ], [ -124.091423986999956, 49.254093706000113 ], [ -124.089897905, 49.254630603000102 ], [ -124.089001608999951, 49.255133407000059 ], [ -124.088477795999964, 49.255668895000056 ], [ -124.087525595999949, 49.25611039700005 ], [ -124.085548100000025, 49.256785511000075 ], [ -124.0845413, 49.25700168000003 ], [ -124.084545101999979, 49.256918891000069 ], [ -124.084596538000014, 49.256389979000119 ], [ -124.084627434999931, 49.255938928000035 ], [ -124.084648335999972, 49.255633727000045 ], [ -124.08469124, 49.255001515000046 ], [ -124.084733361999923, 49.254380470000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104925000", "BldgCostT": "71625000", "sL_LossRatio": "0.802913266584593", "sL_AssetLoss": "642509", "sL_BldgLoss": "515879", "sL_StrLoss": "319485", "sL_NStrLoss": "196394", "sL_ContLoss": "126630", "geom_point": "0101000020E61000005F12A96126025FC08AA2495A589F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.04181235599998, 49.248611262000061 ], [ -124.04186527399996, 49.247356772000089 ], [ -124.04117982299999, 49.24736295000011 ], [ -124.04116353799995, 49.247515363000055 ], [ -124.041037280999916, 49.247518129000106 ], [ -124.041045391999901, 49.247903889000014 ], [ -124.040047415999965, 49.247912879000076 ], [ -124.040021639999964, 49.247932663000064 ], [ -124.039810766999921, 49.248000464000015 ], [ -124.039814639999989, 49.248184838000022 ], [ -124.038578213999983, 49.248195960000011 ], [ -124.038574961999956, 49.248040955000093 ], [ -124.038551038999984, 49.248034563000012 ], [ -124.038390264999961, 49.247927787000066 ], [ -124.037748272999977, 49.247933555000067 ], [ -124.037753926999983, 49.248203368000112 ], [ -124.036517499999945, 49.248214469000111 ], [ -124.036511850999958, 49.247944657000033 ], [ -124.035687568999947, 49.247952049000077 ], [ -124.035681924999921, 49.247682237000042 ], [ -124.034033371999953, 49.247697006000124 ], [ -124.034027735999956, 49.247427193000085 ], [ -124.03320346299995, 49.247434568000116 ], [ -124.033197831, 49.24716475500005 ], [ -124.032785697999884, 49.247168440000074 ], [ -124.0327800699999, 49.246898628000075 ], [ -124.031543671999898, 49.246909674000086 ], [ -124.031532428999981, 49.246370048000095 ], [ -124.031120299999913, 49.246373728000044 ], [ -124.031109063999963, 49.245834102000074 ], [ -124.030696940999945, 49.245837779000041 ], [ -124.030693276999969, 49.245661843000107 ], [ -124.030430198, 49.245570296000054 ], [ -124.030279201000013, 49.245571643000112 ], [ -124.030278070999927, 49.245517358 ], [ -124.030192738999915, 49.245487663000063 ], [ -124.029823262999969, 49.245305845000097 ], [ -124.02944934699994, 49.245309177000102 ], [ -124.029445412999976, 49.245119903000081 ], [ -124.029284630999925, 49.245040782000025 ], [ -124.029031619999927, 49.24504303700008 ], [ -124.029028958999973, 49.244914963000035 ], [ -124.028969895999978, 49.244885896000028 ], [ -124.027374712000011, 49.244856743000085 ], [ -124.026637960999921, 49.244383436000064 ], [ -124.026633616999959, 49.243903677000034 ], [ -124.026621899999924, 49.243689453000066 ], [ -124.026599946999937, 49.243520939000035 ], [ -124.026424983999931, 49.242178599000027 ], [ -124.026342903999989, 49.241979006000079 ], [ -124.026322197999917, 49.241432095000022 ], [ -124.027561097999978, 49.241410612000031 ], [ -124.028923045999989, 49.241415077000156 ], [ -124.029902288999978, 49.241418297000081 ], [ -124.029901701999975, 49.241723486000097 ], [ -124.029863809999966, 49.241840803000116 ], [ -124.02962179299999, 49.242111007000148 ], [ -124.029564986999929, 49.242252199000035 ], [ -124.029565608999917, 49.242690688000103 ], [ -124.029904295000037, 49.243378389000092 ], [ -124.029888011999944, 49.243826509 ], [ -124.029769886999986, 49.244022494 ], [ -124.02953839099996, 49.244236093 ], [ -124.030656108999892, 49.24497231100009 ], [ -124.031013803999883, 49.244724895000076 ], [ -124.031098000999947, 49.244585089000054 ], [ -124.031121389999939, 49.243159386000045 ], [ -124.031827984999921, 49.243166882000018 ], [ -124.031849798999943, 49.242327202000048 ], [ -124.031851871999947, 49.242236332000054 ], [ -124.031870294999962, 49.241422692000128 ], [ -124.033704639999925, 49.241428833 ], [ -124.03396356899998, 49.241429717000081 ], [ -124.034591684999938, 49.241431806000065 ], [ -124.034589389999923, 49.241780689000059 ], [ -124.034586601999962, 49.242200594000046 ], [ -124.03458486699995, 49.242680609000082 ], [ -124.034583215999987, 49.243155892000075 ], [ -124.033730924999972, 49.243187101000075 ], [ -124.032438487999983, 49.243173500000147 ], [ -124.03244141, 49.243979409000097 ], [ -124.032448382999959, 49.245205801000047 ], [ -124.03242199099995, 49.245407898000039 ], [ -124.032330202, 49.245567389000023 ], [ -124.032187303999976, 49.245699790000074 ], [ -124.031908324000014, 49.245868502000043 ], [ -124.03218378699999, 49.246104906000063 ], [ -124.033002110999988, 49.246393595000043 ], [ -124.033694727999901, 49.246633913000075 ], [ -124.034574014999976, 49.246939005000087 ], [ -124.035265294999931, 49.247178508000118 ], [ -124.035594303999957, 49.247252907000075 ], [ -124.035914998999928, 49.247297514000081 ], [ -124.036854903999966, 49.24730739200006 ], [ -124.039895102999978, 49.247250111000028 ], [ -124.040731882999978, 49.247229293000025 ], [ -124.041284157999939, 49.247103279000079 ], [ -124.041301364000034, 49.247099361000039 ], [ -124.041345893999974, 49.247089211000073 ], [ -124.041387035999946, 49.247071499000064 ], [ -124.041677305999954, 49.246946600000122 ], [ -124.042002597999925, 49.246881403000081 ], [ -124.042518991999899, 49.246778207000062 ], [ -124.042877599999926, 49.246736994000095 ], [ -124.043172284999983, 49.246746005000084 ], [ -124.043461618999956, 49.246788119000087 ], [ -124.044195902999917, 49.246952716000116 ], [ -124.045423913999983, 49.246965024000097 ], [ -124.045422205999955, 49.24720179200007 ], [ -124.04521274199999, 49.248256906000037 ], [ -124.043960079000016, 49.248245897000032 ], [ -124.043382816999952, 49.248295705000075 ], [ -124.04181235599998, 49.248611262000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168810750", "BldgCostT": "117180000", "sL_LossRatio": "0.867756357532418", "sL_AssetLoss": "482191.8", "sL_BldgLoss": "418425", "sL_StrLoss": "288528", "sL_NStrLoss": "129897", "sL_ContLoss": "63766.8", "geom_point": "0101000020E6100000ECBCB64C80015FC02DA3AA6CCC9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.02294080599998, 49.243107403000124 ], [ -124.02201669899992, 49.242999091000044 ], [ -124.021316502, 49.243014805000023 ], [ -124.020044077999941, 49.243241197000081 ], [ -124.019273678999923, 49.243194194000068 ], [ -124.01837279399993, 49.242878113000089 ], [ -124.018134372999924, 49.242740127000069 ], [ -124.018286118999981, 49.242541970000055 ], [ -124.018538017999944, 49.242323700000057 ], [ -124.018866971, 49.242115125000105 ], [ -124.019232859999988, 49.241965756000042 ], [ -124.019618979999976, 49.24187271300007 ], [ -124.020077958999977, 49.241793911000023 ], [ -124.020839046999981, 49.241720747000066 ], [ -124.021361307999911, 49.241415093000072 ], [ -124.020767388999928, 49.238765197000056 ], [ -124.020771482999919, 49.237990434000046 ], [ -124.020772602999912, 49.237773893000067 ], [ -124.020892609, 49.237772604000021 ], [ -124.021358902999978, 49.237767602000126 ], [ -124.021560393999977, 49.237708299000047 ], [ -124.021662179999964, 49.237638992000036 ], [ -124.021868774000026, 49.237494077000072 ], [ -124.021899861999927, 49.237472289000017 ], [ -124.022105062999941, 49.237390509000079 ], [ -124.022399903999911, 49.237331991000104 ], [ -124.025189031000011, 49.237354281000059 ], [ -124.026323693999942, 49.237361502000049 ], [ -124.026329625999907, 49.237761603000102 ], [ -124.026331104999926, 49.237860350000098 ], [ -124.02634347799993, 49.238697046000041 ], [ -124.026363229999973, 49.240028201000023 ], [ -124.026364501, 49.240113800000117 ], [ -124.026358010999928, 49.240316366000087 ], [ -124.026352541999955, 49.240487116000104 ], [ -124.026322197999917, 49.241432095000022 ], [ -124.026342903999989, 49.241979006000079 ], [ -124.026424983999931, 49.242178599000027 ], [ -124.026599946999937, 49.243520939000035 ], [ -124.026621899999924, 49.243689453000066 ], [ -124.026633616999959, 49.243903677000034 ], [ -124.026637960999921, 49.244383436000064 ], [ -124.026369708999979, 49.244211100000037 ], [ -124.025733816999931, 49.243991793000063 ], [ -124.02499718199999, 49.243602992000049 ], [ -124.02294080599998, 49.243107403000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98099834", "BldgCostT": "67183334", "sL_LossRatio": "0.863046071538309", "sL_AssetLoss": "442616", "sL_BldgLoss": "381998", "sL_StrLoss": "261961", "sL_NStrLoss": "120037", "sL_ContLoss": "60618", "geom_point": "0101000020E61000001166E26FDE015FC04644CE4EC89E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.029901701999975, 49.241723486000097 ], [ -124.029902288999978, 49.241418297000081 ], [ -124.028923045999989, 49.241415077000156 ], [ -124.027561097999978, 49.241410612000031 ], [ -124.026322197999917, 49.241432095000022 ], [ -124.026352541999955, 49.240487116000104 ], [ -124.026358010999928, 49.240316366000087 ], [ -124.026364501, 49.240113800000117 ], [ -124.026363229999973, 49.240028201000023 ], [ -124.02634347799993, 49.238697046000041 ], [ -124.026331104999926, 49.237860350000098 ], [ -124.026329625999907, 49.237761603000102 ], [ -124.026323693999942, 49.237361502000049 ], [ -124.027650493999957, 49.237368687000064 ], [ -124.028014133999974, 49.237369768000043 ], [ -124.028512354999947, 49.237371231000068 ], [ -124.0290021389999, 49.237372695000047 ], [ -124.029158341999931, 49.237410647000026 ], [ -124.029223087, 49.23750277400012 ], [ -124.029224540999962, 49.238207305000095 ], [ -124.029224760999952, 49.238304130000095 ], [ -124.029226583999957, 49.238765751000066 ], [ -124.029228109999934, 49.239162256000014 ], [ -124.030755401999926, 49.239167600000059 ], [ -124.031862825999895, 49.239171630000037 ], [ -124.03186490899995, 49.239295442000106 ], [ -124.031875011999929, 49.239889072 ], [ -124.031883018999935, 49.240356752000039 ], [ -124.031886726999986, 49.240575326000148 ], [ -124.03188839799999, 49.240673011000041 ], [ -124.03188672200001, 49.240743221000116 ], [ -124.031871714999951, 49.24136380200008 ], [ -124.031870294999962, 49.241422692000128 ], [ -124.031851871999947, 49.242236332000054 ], [ -124.031849798999943, 49.242327202000048 ], [ -124.031827984999921, 49.243166882000018 ], [ -124.031121389999939, 49.243159386000045 ], [ -124.031098000999947, 49.244585089000054 ], [ -124.031013803999883, 49.244724895000076 ], [ -124.030656108999892, 49.24497231100009 ], [ -124.02953839099996, 49.244236093 ], [ -124.029769886999986, 49.244022494 ], [ -124.029888011999944, 49.243826509 ], [ -124.029904295000037, 49.243378389000092 ], [ -124.029565608999917, 49.242690688000103 ], [ -124.029564986999929, 49.242252199000035 ], [ -124.02962179299999, 49.242111007000148 ], [ -124.029863809999966, 49.241840803000116 ], [ -124.029901701999975, 49.241723486000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128020999", "BldgCostT": "82714999", "sL_LossRatio": "0.835702009689149", "sL_AssetLoss": "484975.5", "sL_BldgLoss": "405295", "sL_StrLoss": "278220", "sL_NStrLoss": "127075", "sL_ContLoss": "79680.5", "geom_point": "0101000020E610000097D7A5A1E1015FC0AB69728C3F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.029158341999931, 49.237410647000026 ], [ -124.0290021389999, 49.237372695000047 ], [ -124.028512354999947, 49.237371231000068 ], [ -124.028014133999974, 49.237369768000043 ], [ -124.027650493999957, 49.237368687000064 ], [ -124.026323693999942, 49.237361502000049 ], [ -124.026321482999947, 49.236897951000046 ], [ -124.026315520999944, 49.235647519000096 ], [ -124.026312891999964, 49.235096889000069 ], [ -124.026314710999969, 49.235039152000098 ], [ -124.026319260999969, 49.234895191000078 ], [ -124.026340525999927, 49.234221306000087 ], [ -124.02643775300001, 49.234220682000078 ], [ -124.028278308000012, 49.23420900900004 ], [ -124.028827688999954, 49.234205517000106 ], [ -124.029225995999937, 49.234202981000109 ], [ -124.030324035999968, 49.234195980000081 ], [ -124.031878699999979, 49.234197957000049 ], [ -124.032160150999928, 49.234198305000078 ], [ -124.031869133999976, 49.234489795000094 ], [ -124.031860446999985, 49.234635528000133 ], [ -124.031859911999902, 49.234644187000043 ], [ -124.031826922999983, 49.235194912000047 ], [ -124.03155214499999, 49.235363674000098 ], [ -124.031752328999985, 49.235561824000058 ], [ -124.031844382999935, 49.23573290100007 ], [ -124.03186048699996, 49.235762774000051 ], [ -124.03184691699991, 49.236956418000034 ], [ -124.031850822999928, 49.237868588000069 ], [ -124.031855005999901, 49.23831974900002 ], [ -124.031862825999895, 49.239171630000037 ], [ -124.030755401999926, 49.239167600000059 ], [ -124.029228109999934, 49.239162256000014 ], [ -124.029226583999957, 49.238765751000066 ], [ -124.029224760999952, 49.238304130000095 ], [ -124.029224540999962, 49.238207305000095 ], [ -124.029223087, 49.23750277400012 ], [ -124.029158341999931, 49.237410647000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168085136", "BldgCostT": "113612079", "sL_LossRatio": "0.834110814768088", "sL_AssetLoss": "626488.7", "sL_BldgLoss": "522561", "sL_StrLoss": "303917", "sL_NStrLoss": "218644", "sL_ContLoss": "103927.7", "geom_point": "0101000020E61000006BFED3CB37025FC08E394BA0739E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.031883018999935, 49.240356752000039 ], [ -124.031875011999929, 49.239889072 ], [ -124.03186490899995, 49.239295442000106 ], [ -124.031862825999895, 49.239171630000037 ], [ -124.031855005999901, 49.23831974900002 ], [ -124.031850822999928, 49.237868588000069 ], [ -124.03184691699991, 49.236956418000034 ], [ -124.03186048699996, 49.235762774000051 ], [ -124.031844382999935, 49.23573290100007 ], [ -124.031752328999985, 49.235561824000058 ], [ -124.03155214499999, 49.235363674000098 ], [ -124.031826922999983, 49.235194912000047 ], [ -124.031859911999902, 49.234644187000043 ], [ -124.031860446999985, 49.234635528000133 ], [ -124.031869133999976, 49.234489795000094 ], [ -124.032160150999928, 49.234198305000078 ], [ -124.032215098999984, 49.234198369000111 ], [ -124.034564217999929, 49.23420130300012 ], [ -124.034706557999954, 49.234243508000091 ], [ -124.034895786999968, 49.234246046000074 ], [ -124.03612575799994, 49.234269353000059 ], [ -124.03706641799999, 49.234287371000107 ], [ -124.037054486999935, 49.234731928000066 ], [ -124.037027903999913, 49.235425651000085 ], [ -124.036979262999978, 49.23615406400004 ], [ -124.03695789899993, 49.236529148000024 ], [ -124.036960860999955, 49.23654703100005 ], [ -124.037036455999925, 49.237008675000077 ], [ -124.037161411999932, 49.23713699000006 ], [ -124.03725606899998, 49.237333612000036 ], [ -124.037318136999929, 49.237462512000079 ], [ -124.037369593999955, 49.237569364000045 ], [ -124.037617629999957, 49.237934907000067 ], [ -124.037641868999984, 49.23795783300006 ], [ -124.038545380999935, 49.238811652000066 ], [ -124.038058909999975, 49.239008265000066 ], [ -124.037788597000016, 49.239117522000129 ], [ -124.037553282999937, 49.23916461300005 ], [ -124.037200759999976, 49.239166379000096 ], [ -124.036266845999975, 49.239171067000044 ], [ -124.035424186999961, 49.239175311000018 ], [ -124.035422945999969, 49.239327610000082 ], [ -124.03541941, 49.239774002000082 ], [ -124.035501293999957, 49.239881699000108 ], [ -124.035659981999956, 49.239960193000059 ], [ -124.035908384999985, 49.239992693000069 ], [ -124.036586348999933, 49.239994762000023 ], [ -124.036862105999973, 49.239995589000095 ], [ -124.0370287099999, 49.240048194000089 ], [ -124.03708459799995, 49.240090597000126 ], [ -124.03733922, 49.240009699000055 ], [ -124.038475184999953, 49.239759394 ], [ -124.038636513999947, 49.23980729800013 ], [ -124.038770452999955, 49.239934858000041 ], [ -124.038851502999947, 49.240011992000113 ], [ -124.039045189999953, 49.240364890000109 ], [ -124.039083813999952, 49.240571197000058 ], [ -124.039093403999956, 49.240622394000077 ], [ -124.038996480999941, 49.24070519200005 ], [ -124.038852911, 49.240727804000045 ], [ -124.037194301999975, 49.240740909000081 ], [ -124.037171696999934, 49.241438289000037 ], [ -124.03676460199992, 49.241437288000078 ], [ -124.034591684999938, 49.241431806000065 ], [ -124.03396356899998, 49.241429717000081 ], [ -124.033704639999925, 49.241428833 ], [ -124.031870294999962, 49.241422692000128 ], [ -124.031871714999951, 49.24136380200008 ], [ -124.03188672200001, 49.240743221000116 ], [ -124.03188839799999, 49.240673011000041 ], [ -124.031886726999986, 49.240575326000148 ], [ -124.031883018999935, 49.240356752000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171035666", "BldgCostT": "114746666", "sL_LossRatio": "0.910628196298521", "sL_AssetLoss": "580065.5", "sL_BldgLoss": "528224", "sL_StrLoss": "409900", "sL_NStrLoss": "118324", "sL_ContLoss": "51841.5", "geom_point": "0101000020E6100000055152BBFA015FC02002D4F5C09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.025602211999953, 49.234222208000105 ], [ -124.025644353999951, 49.232142999000068 ], [ -124.025652195999911, 49.231756111000038 ], [ -124.026076621999962, 49.23175759800008 ], [ -124.026331869999936, 49.231758522000106 ], [ -124.026359328999931, 49.231758619000033 ], [ -124.027058499999953, 49.231761101000046 ], [ -124.028020253999912, 49.231769774000057 ], [ -124.02841785499993, 49.23177333600006 ], [ -124.029789593999965, 49.231784913000077 ], [ -124.029750265999937, 49.231415906000016 ], [ -124.029792196999907, 49.230979992000051 ], [ -124.029948081999962, 49.230538087000063 ], [ -124.030273908999945, 49.23003979100011 ], [ -124.03052797399998, 49.23014203000006 ], [ -124.030925496999927, 49.230301999000083 ], [ -124.031076704999947, 49.230362413000087 ], [ -124.031471693999947, 49.230462312000093 ], [ -124.031957399999939, 49.230497305000036 ], [ -124.03234501799993, 49.23048189400005 ], [ -124.032673492999919, 49.230437404000035 ], [ -124.033001976999941, 49.230359696000058 ], [ -124.033805894999944, 49.230104191000038 ], [ -124.034477588999906, 49.230088592000122 ], [ -124.034750691999974, 49.230119698000095 ], [ -124.03527308299999, 49.230290304000107 ], [ -124.035909074999978, 49.230632392000103 ], [ -124.035880033999945, 49.230667792000098 ], [ -124.035359307999911, 49.231302097 ], [ -124.035072006999897, 49.231769588000077 ], [ -124.03492669399999, 49.232219914000062 ], [ -124.034880804999972, 49.23249180500013 ], [ -124.034885097999933, 49.232876383000068 ], [ -124.034891260999956, 49.233542781000025 ], [ -124.03489579, 49.234148814 ], [ -124.034895786999968, 49.234246046000074 ], [ -124.034706557999954, 49.234243508000091 ], [ -124.034564217999929, 49.23420130300012 ], [ -124.032215098999984, 49.234198369000111 ], [ -124.032160150999928, 49.234198305000078 ], [ -124.031878699999979, 49.234197957000049 ], [ -124.030324035999968, 49.234195980000081 ], [ -124.029225995999937, 49.234202981000109 ], [ -124.028827688999954, 49.234205517000106 ], [ -124.028278308000012, 49.23420900900004 ], [ -124.02643775300001, 49.234220682000078 ], [ -124.026340525999927, 49.234221306000087 ], [ -124.025602211999953, 49.234222208000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177847751", "BldgCostT": "120340001", "sL_LossRatio": "0.806970611895542", "sL_AssetLoss": "679969", "sL_BldgLoss": "548715", "sL_StrLoss": "302740", "sL_NStrLoss": "245975", "sL_ContLoss": "131254", "geom_point": "0101000020E6100000090E5096F1015FC0D48DB1F24F9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.028987276999914, 49.230060398 ], [ -124.029173905999968, 49.22986661000003 ], [ -124.029239162999929, 49.229711127000051 ], [ -124.029280795999938, 49.229612002000124 ], [ -124.029276142999933, 49.229432699000078 ], [ -124.02927038899999, 49.229210207000015 ], [ -124.027843119999957, 49.229119301 ], [ -124.0267933799999, 49.229053290000074 ], [ -124.026607616999939, 49.229002199000057 ], [ -124.026539209999939, 49.228900092000082 ], [ -124.026554794999981, 49.228760803000064 ], [ -124.027463085999955, 49.228147095000054 ], [ -124.027675091999953, 49.228002392000064 ], [ -124.027868516999945, 49.227809698000094 ], [ -124.027920802999915, 49.227709797000045 ], [ -124.027981276999981, 49.227301060000052 ], [ -124.027991914999944, 49.227229397000016 ], [ -124.027972805999923, 49.226967903000123 ], [ -124.028183685999977, 49.226967970000025 ], [ -124.02932402199994, 49.226968294000116 ], [ -124.029914523999935, 49.226968484000054 ], [ -124.032226284999979, 49.226969119000053 ], [ -124.032971893999942, 49.227085335000048 ], [ -124.032501408999934, 49.22782681200006 ], [ -124.03317009599999, 49.228074006000028 ], [ -124.03384601199997, 49.22834741000004 ], [ -124.033987823999979, 49.228466191000038 ], [ -124.034013805, 49.228563903000115 ], [ -124.033967912999984, 49.228675601000106 ], [ -124.033592300999914, 49.229122498000052 ], [ -124.033512204999965, 49.229328194000047 ], [ -124.033505915999967, 49.229477495000026 ], [ -124.033651041999946, 49.229780716000093 ], [ -124.033805894999944, 49.230104191000038 ], [ -124.033001976999941, 49.230359696000058 ], [ -124.032673492999919, 49.230437404000035 ], [ -124.03234501799993, 49.23048189400005 ], [ -124.031957399999939, 49.230497305000036 ], [ -124.031471693999947, 49.230462312000093 ], [ -124.031076704999947, 49.230362413000087 ], [ -124.030925496999927, 49.230301999000083 ], [ -124.03052797399998, 49.23014203000006 ], [ -124.030273908999945, 49.23003979100011 ], [ -124.029948081999962, 49.230538087000063 ], [ -124.029792196999907, 49.230979992000051 ], [ -124.029750265999937, 49.231415906000016 ], [ -124.029789593999965, 49.231784913000077 ], [ -124.02841785499993, 49.23177333600006 ], [ -124.028020253999912, 49.231769774000057 ], [ -124.027058499999953, 49.231761101000046 ], [ -124.027024496999971, 49.231592087000102 ], [ -124.027048717999946, 49.231022588000052 ], [ -124.027160901999977, 49.23096428000008 ], [ -124.027403420999974, 49.230940806000035 ], [ -124.027606037999988, 49.23093967500008 ], [ -124.028383408999929, 49.230935392000063 ], [ -124.028502588999956, 49.230907816000119 ], [ -124.028604613999974, 49.230832291000091 ], [ -124.028673510999937, 49.230729100000097 ], [ -124.028807614999948, 49.230350708000046 ], [ -124.028987276999914, 49.230060398 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152421750", "BldgCostT": "90630000", "sL_LossRatio": "0.79473850883223", "sL_AssetLoss": "388407", "sL_BldgLoss": "308682", "sL_StrLoss": "206470", "sL_NStrLoss": "102212", "sL_ContLoss": "79725", "geom_point": "0101000020E6100000E2EBCFD16C025FC044DB4A12789D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.041519312999952, 49.234422332000051 ], [ -124.04016384899991, 49.23438150000004 ], [ -124.038915219, 49.23434399300006 ], [ -124.037206153999975, 49.234292629000045 ], [ -124.03706641799999, 49.234287371000107 ], [ -124.03612575799994, 49.234269353000059 ], [ -124.034895786999968, 49.234246046000074 ], [ -124.03489579, 49.234148814 ], [ -124.034891260999956, 49.233542781000025 ], [ -124.034885097999933, 49.232876383000068 ], [ -124.034880804999972, 49.23249180500013 ], [ -124.03492669399999, 49.232219914000062 ], [ -124.035072006999897, 49.231769588000077 ], [ -124.035359307999911, 49.231302097 ], [ -124.035880033999945, 49.230667792000098 ], [ -124.035909074999978, 49.230632392000103 ], [ -124.03527308299999, 49.230290304000107 ], [ -124.034750691999974, 49.230119698000095 ], [ -124.034477588999906, 49.230088592000122 ], [ -124.033805894999944, 49.230104191000038 ], [ -124.033651041999946, 49.229780716000093 ], [ -124.033505915999967, 49.229477495000026 ], [ -124.033512204999965, 49.229328194000047 ], [ -124.033592300999914, 49.229122498000052 ], [ -124.033967912999984, 49.228675601000106 ], [ -124.034013805, 49.228563903000115 ], [ -124.033987823999979, 49.228466191000038 ], [ -124.03384601199997, 49.22834741000004 ], [ -124.03317009599999, 49.228074006000028 ], [ -124.032501408999934, 49.22782681200006 ], [ -124.032971893999942, 49.227085335000048 ], [ -124.033049457999965, 49.22687335800007 ], [ -124.033085538999927, 49.226442732000059 ], [ -124.033155031999968, 49.226357571000122 ], [ -124.033180870999914, 49.226135636000045 ], [ -124.033231202999971, 49.22608073100011 ], [ -124.033348996999933, 49.226053176000079 ], [ -124.033947761999968, 49.226008250000099 ], [ -124.035014645000032, 49.22582692400001 ], [ -124.035109421999962, 49.225792635000062 ], [ -124.035197344999943, 49.225756396000129 ], [ -124.035768496999935, 49.225521015000119 ], [ -124.036070864999914, 49.225346442000031 ], [ -124.03629076499999, 49.225204955000045 ], [ -124.036533472999949, 49.225048727000051 ], [ -124.036714816999947, 49.22488918600007 ], [ -124.036814215999982, 49.22480172200008 ], [ -124.037309979999947, 49.224368671000079 ], [ -124.037533052999905, 49.224674356000023 ], [ -124.039431626999928, 49.227314605000117 ], [ -124.040287500999938, 49.22853337300009 ], [ -124.041545088999925, 49.230324038000063 ], [ -124.04172265699999, 49.230576907000035 ], [ -124.041819887999964, 49.230548955000117 ], [ -124.041855937999983, 49.230605425000128 ], [ -124.042053664999941, 49.230895339 ], [ -124.04262470599997, 49.231736756000025 ], [ -124.04365666399994, 49.233136657000031 ], [ -124.044481427, 49.234341009000076 ], [ -124.044294874999977, 49.234339427000101 ], [ -124.044369833999923, 49.23444883600007 ], [ -124.042774034, 49.234444928000087 ], [ -124.04276031899991, 49.234444847000098 ], [ -124.042132195999926, 49.234433445000064 ], [ -124.041519312999952, 49.234422332000051 ] ], [ [ -124.040560446999962, 49.232168146000028 ], [ -124.040561381999964, 49.232145970000069 ], [ -124.040478442999941, 49.232144463000118 ], [ -124.040496230999921, 49.231722919000035 ], [ -124.040421566999925, 49.23172156300015 ], [ -124.040467296999921, 49.230637818000069 ], [ -124.040270469999953, 49.23063959100007 ], [ -124.040268437999941, 49.230542827000065 ], [ -124.038689173999927, 49.230514121000049 ], [ -124.038763079999967, 49.228764107000082 ], [ -124.038582888999898, 49.228765728000013 ], [ -124.038577232999927, 49.228495914000035 ], [ -124.037753274999886, 49.228503319 ], [ -124.037826754999941, 49.232010893000073 ], [ -124.038238760999945, 49.232007191000079 ], [ -124.03824054099999, 49.232092077000068 ], [ -124.038708512999989, 49.232100587000041 ], [ -124.038707081999988, 49.232134462000047 ], [ -124.040560446999962, 49.232168146000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "304966333", "BldgCostT": "190993333", "sL_LossRatio": "0.832657736024124", "sL_AssetLoss": "379368", "sL_BldgLoss": "315883.7", "sL_StrLoss": "221769", "sL_NStrLoss": "94114.7", "sL_ContLoss": "63484.3", "geom_point": "0101000020E6100000F94B3FD9BB015FC0FF254622F69C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.024533407999925, 49.229441405000067 ], [ -124.024345914999941, 49.229399196000088 ], [ -124.02275890599999, 49.229384582000108 ], [ -124.020937095999969, 49.22937550000006 ], [ -124.020494610999933, 49.229293494000103 ], [ -124.020214693999989, 49.229196496000064 ], [ -124.01972105399993, 49.228910322000139 ], [ -124.018965367999925, 49.228472181 ], [ -124.019541985999979, 49.228078495000055 ], [ -124.02143608499992, 49.226788246000091 ], [ -124.021588458999929, 49.226684428000041 ], [ -124.021812247999947, 49.226532003000095 ], [ -124.022139318999976, 49.226309158000049 ], [ -124.022437718, 49.226081222000154 ], [ -124.022671142999954, 49.22590293300005 ], [ -124.022974368999883, 49.225578665000057 ], [ -124.023047750000018, 49.225500160000081 ], [ -124.023322733, 49.224906432000033 ], [ -124.023382111999965, 49.22461390700002 ], [ -124.02340745099994, 49.224489016000092 ], [ -124.023435573, 49.224350271000127 ], [ -124.023465875999975, 49.223870175000101 ], [ -124.023541076999962, 49.222677455000088 ], [ -124.023505914999973, 49.222536354000027 ], [ -124.024254012999947, 49.22252849500007 ], [ -124.025994403, 49.222509914000092 ], [ -124.026389393999949, 49.222480190000063 ], [ -124.026413425999948, 49.222474913000042 ], [ -124.026691307999968, 49.22241370700003 ], [ -124.027046319999926, 49.22229320200006 ], [ -124.027362410999942, 49.222119006000057 ], [ -124.02797564799998, 49.221570104000122 ], [ -124.028280824999939, 49.221393833000072 ], [ -124.02881753699999, 49.221193846000112 ], [ -124.02944207899999, 49.221045910000043 ], [ -124.0296047, 49.221007388000018 ], [ -124.029743449999955, 49.220970354000052 ], [ -124.030000178999956, 49.221194928000031 ], [ -124.03028494499992, 49.221444014000014 ], [ -124.031182717999954, 49.222229296000073 ], [ -124.03104887899994, 49.222279102000101 ], [ -124.031235724999974, 49.222433620000054 ], [ -124.031776292999922, 49.222880761000035 ], [ -124.031854788999937, 49.222945696000096 ], [ -124.032352298999953, 49.223185199000106 ], [ -124.033174192999979, 49.223603610000033 ], [ -124.033568098999964, 49.22385929200005 ], [ -124.033828826000018, 49.224118898000128 ], [ -124.034037326999936, 49.224559719000105 ], [ -124.034181365999927, 49.224864206000142 ], [ -124.034270095999943, 49.225051847000074 ], [ -124.034360202999977, 49.225242280000046 ], [ -124.03489410099999, 49.225715248000022 ], [ -124.034928911999927, 49.225746123000107 ], [ -124.035014645000032, 49.22582692400001 ], [ -124.033947761999968, 49.226008250000099 ], [ -124.033348996999933, 49.226053176000079 ], [ -124.033231202999971, 49.22608073100011 ], [ -124.033180870999914, 49.226135636000045 ], [ -124.033155031999968, 49.226357571000122 ], [ -124.033085538999927, 49.226442732000059 ], [ -124.033049457999965, 49.22687335800007 ], [ -124.032971893999942, 49.227085335000048 ], [ -124.032226284999979, 49.226969119000053 ], [ -124.029914523999935, 49.226968484000054 ], [ -124.02932402199994, 49.226968294000116 ], [ -124.028183685999977, 49.226967970000025 ], [ -124.027972805999923, 49.226967903000123 ], [ -124.027991914999944, 49.227229397000016 ], [ -124.027981276999981, 49.227301060000052 ], [ -124.027920802999915, 49.227709797000045 ], [ -124.027868516999945, 49.227809698000094 ], [ -124.027675091999953, 49.228002392000064 ], [ -124.027463085999955, 49.228147095000054 ], [ -124.026554794999981, 49.228760803000064 ], [ -124.026539209999939, 49.228900092000082 ], [ -124.026607616999939, 49.229002199000057 ], [ -124.0267933799999, 49.229053290000074 ], [ -124.027843119999957, 49.229119301 ], [ -124.02927038899999, 49.229210207000015 ], [ -124.029276142999933, 49.229432699000078 ], [ -124.029280795999938, 49.229612002000124 ], [ -124.029239162999929, 49.229711127000051 ], [ -124.029173905999968, 49.22986661000003 ], [ -124.028987276999914, 49.230060398 ], [ -124.028807614999948, 49.230350708000046 ], [ -124.028673510999937, 49.230729100000097 ], [ -124.028604613999974, 49.230832291000091 ], [ -124.028502588999956, 49.230907816000119 ], [ -124.028383408999929, 49.230935392000063 ], [ -124.027606037999988, 49.23093967500008 ], [ -124.027403420999974, 49.230940806000035 ], [ -124.027160901999977, 49.23096428000008 ], [ -124.027048717999946, 49.231022588000052 ], [ -124.027024496999971, 49.231592087000102 ], [ -124.027058499999953, 49.231761101000046 ], [ -124.026359328999931, 49.231758619000033 ], [ -124.026331869999936, 49.231758522000106 ], [ -124.026076621999962, 49.23175759800008 ], [ -124.025652195999911, 49.231756111000038 ], [ -124.025563097999978, 49.230738878000125 ], [ -124.025548707999917, 49.230574688000047 ], [ -124.025411519999977, 49.230315504000046 ], [ -124.025031202999955, 49.230062815000053 ], [ -124.024770484, 49.229609592000038 ], [ -124.024663712999967, 49.22950769800007 ], [ -124.024533407999925, 49.229441405000067 ] ], [ [ -124.029423987999934, 49.224260026000081 ], [ -124.029418382999907, 49.223990211000078 ], [ -124.029006439999975, 49.223993882000023 ], [ -124.02898963199999, 49.223184439000065 ], [ -124.029401567999955, 49.223180769000045 ], [ -124.029384750999952, 49.222371325000019 ], [ -124.027737035999934, 49.222385998000021 ], [ -124.027742631999985, 49.222655813000152 ], [ -124.027330701999986, 49.222659478000068 ], [ -124.02733629399998, 49.222929293000064 ], [ -124.026924360999942, 49.222932956000115 ], [ -124.02692995299999, 49.223202770000086 ], [ -124.02528220799999, 49.223217407000028 ], [ -124.025276624999933, 49.22294759200004 ], [ -124.024677766999957, 49.222952908000103 ], [ -124.024620358999982, 49.224302739000031 ], [ -124.029423987999934, 49.224260026000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143802834", "BldgCostT": "97523334", "sL_LossRatio": "0.878527329469377", "sL_AssetLoss": "426523.1", "sL_BldgLoss": "374712.2", "sL_StrLoss": "275247.2", "sL_NStrLoss": "99465", "sL_ContLoss": "51810.9", "geom_point": "0101000020E6100000DD3E264A69015FC0CFA0BA1CA39D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.019306188999934, 49.234154500000038 ], [ -124.019451345999983, 49.23374299000006 ], [ -124.019884966999882, 49.233110516000067 ], [ -124.019963734999976, 49.232995562000077 ], [ -124.020134718999898, 49.232746203000076 ], [ -124.020724195999961, 49.232088737000105 ], [ -124.020821623999922, 49.231980095000054 ], [ -124.020855105999914, 49.231942772000075 ], [ -124.020848326999968, 49.231812096000084 ], [ -124.020774971999955, 49.231729709 ], [ -124.01869015199999, 49.231182493000091 ], [ -124.018447647999906, 49.231118830000121 ], [ -124.017594344999935, 49.231017628000075 ], [ -124.017401577, 49.230969058000021 ], [ -124.017305761, 49.230801563000099 ], [ -124.017340053999973, 49.230577158000038 ], [ -124.01737512599999, 49.230497322000069 ], [ -124.017826492, 49.229469597000069 ], [ -124.018126777999925, 49.229087095000111 ], [ -124.018388515999945, 49.228839789000091 ], [ -124.018965367999925, 49.228472181 ], [ -124.01972105399993, 49.228910322000139 ], [ -124.020214693999989, 49.229196496000064 ], [ -124.020494610999933, 49.229293494000103 ], [ -124.020937095999969, 49.22937550000006 ], [ -124.02275890599999, 49.229384582000108 ], [ -124.024345914999941, 49.229399196000088 ], [ -124.024533407999925, 49.229441405000067 ], [ -124.024663712999967, 49.22950769800007 ], [ -124.024770484, 49.229609592000038 ], [ -124.025031202999955, 49.230062815000053 ], [ -124.025411519999977, 49.230315504000046 ], [ -124.025548707999917, 49.230574688000047 ], [ -124.025563097999978, 49.230738878000125 ], [ -124.025652195999911, 49.231756111000038 ], [ -124.025644353999951, 49.232142999000068 ], [ -124.025602211999953, 49.234222208000105 ], [ -124.024169911999977, 49.234212187000018 ], [ -124.022907545999928, 49.234208852000066 ], [ -124.020744002999933, 49.234162887000075 ], [ -124.019306188999934, 49.234154500000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97208084", "BldgCostT": "66568334", "sL_LossRatio": "0.817980533419172", "sL_AssetLoss": "562297", "sL_BldgLoss": "459948", "sL_StrLoss": "286639", "sL_NStrLoss": "173309", "sL_ContLoss": "102349", "geom_point": "0101000020E6100000CAF133C380015FC0D0EFFB372F9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.020780143999943, 49.236437919000046 ], [ -124.020744002999933, 49.234162887000075 ], [ -124.022907545999928, 49.234208852000066 ], [ -124.024169911999977, 49.234212187000018 ], [ -124.025602211999953, 49.234222208000105 ], [ -124.026340525999927, 49.234221306000087 ], [ -124.026319260999969, 49.234895191000078 ], [ -124.026314710999969, 49.235039152000098 ], [ -124.026312891999964, 49.235096889000069 ], [ -124.026315520999944, 49.235647519000096 ], [ -124.026321482999947, 49.236897951000046 ], [ -124.026323693999942, 49.237361502000049 ], [ -124.025189031000011, 49.237354281000059 ], [ -124.022399903999911, 49.237331991000104 ], [ -124.022105062999941, 49.237390509000079 ], [ -124.021899861999927, 49.237472289000017 ], [ -124.021868774000026, 49.237494077000072 ], [ -124.021662179999964, 49.237638992000036 ], [ -124.021560393999977, 49.237708299000047 ], [ -124.021358902999978, 49.237767602000126 ], [ -124.020892609, 49.237772604000021 ], [ -124.020772602999912, 49.237773893000067 ], [ -124.020778867999979, 49.236725108000066 ], [ -124.020780143999943, 49.236437919000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102067833", "BldgCostT": "69423333", "sL_LossRatio": "0.797469242006168", "sL_AssetLoss": "770125", "sL_BldgLoss": "614151", "sL_StrLoss": "330730", "sL_NStrLoss": "283421", "sL_ContLoss": "155974", "geom_point": "0101000020E61000008FC237452E015FC0EFB9E1B17E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.017720831999938, 49.242500786000093 ], [ -124.017746283999941, 49.241904657000127 ], [ -124.017425772999971, 49.241907479000062 ], [ -124.017421838999965, 49.241716058000115 ], [ -124.017322368999956, 49.241638527000063 ], [ -124.017008139999945, 49.241641293000036 ], [ -124.017002968999947, 49.241389567000056 ], [ -124.016980017999941, 49.241371678000064 ], [ -124.01659050799995, 49.241375107000124 ], [ -124.016582699999958, 49.240994745000101 ], [ -124.016443587999959, 49.240836673000075 ], [ -124.015755263999907, 49.240842728000075 ], [ -124.015749729999953, 49.240572913000051 ], [ -124.015337647999928, 49.240576535000073 ], [ -124.015332115999925, 49.240306721000088 ], [ -124.014978124999956, 49.24030983100009 ], [ -124.015775950999952, 49.238732735000035 ], [ -124.015624501, 49.238419490000098 ], [ -124.015529200999964, 49.238240395000062 ], [ -124.015847597999965, 49.237471890000066 ], [ -124.01613375099997, 49.236803054000035 ], [ -124.016247917999948, 49.236536184000045 ], [ -124.016254596999957, 49.236520509000094 ], [ -124.016486308999987, 49.235968470000067 ], [ -124.01652200599996, 49.235883414000099 ], [ -124.01668478799999, 49.235157097000112 ], [ -124.016804597999908, 49.234600115000035 ], [ -124.016947663999986, 49.234111171000045 ], [ -124.019306188999934, 49.234154500000038 ], [ -124.020744002999933, 49.234162887000075 ], [ -124.020780143999943, 49.236437919000046 ], [ -124.020778867999979, 49.236725108000066 ], [ -124.020772602999912, 49.237773893000067 ], [ -124.020771482999919, 49.237990434000046 ], [ -124.020767388999928, 49.238765197000056 ], [ -124.021361307999911, 49.241415093000072 ], [ -124.020839046999981, 49.241720747000066 ], [ -124.020077958999977, 49.241793911000023 ], [ -124.019618979999976, 49.24187271300007 ], [ -124.019232859999988, 49.241965756000042 ], [ -124.018866971, 49.242115125000105 ], [ -124.018538017999944, 49.242323700000057 ], [ -124.018286118999981, 49.242541970000055 ], [ -124.018134372999924, 49.242740127000069 ], [ -124.017720831999938, 49.242500786000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236352411", "BldgCostT": "154400743", "sL_LossRatio": "0.8102089610615", "sL_AssetLoss": "1172017.4", "sL_BldgLoss": "949579", "sL_StrLoss": "579733", "sL_NStrLoss": "369846", "sL_ContLoss": "222438.4", "geom_point": "0101000020E61000003FF4FEBB95005FC0F2C67A51589E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.014920035999964, 49.240310342000029 ], [ -124.014914506, 49.24004052700009 ], [ -124.013436952999953, 49.240053501000034 ], [ -124.013267638999963, 49.240088762000063 ], [ -124.012823723999986, 49.240058879000095 ], [ -124.012029960999925, 49.240065834000113 ], [ -124.012026215999981, 49.239882600000087 ], [ -124.011985438999957, 49.239869163 ], [ -124.011881923999923, 49.239797269000057 ], [ -124.011612371999945, 49.2397996300001 ], [ -124.011608442999957, 49.239607323000016 ], [ -124.011498217999986, 49.239530766000037 ], [ -124.01119478699999, 49.239533422000058 ], [ -124.01118376899997, 49.238993792000024 ], [ -124.01077169899996, 49.238997399000034 ], [ -124.010766192999967, 49.238727583000077 ], [ -124.010354123999974, 49.238731188000052 ], [ -124.010348620999963, 49.238461373000121 ], [ -124.009499926999965, 49.238468794000042 ], [ -124.009436339999951, 49.2386329630001 ], [ -124.009340711999968, 49.238624300000055 ], [ -124.008073138999947, 49.238509463000128 ], [ -124.0079372599999, 49.238482439000087 ], [ -124.007464163999956, 49.23848656600012 ], [ -124.007462156999921, 49.238387950000103 ], [ -124.006637380999976, 49.238223911000013 ], [ -124.005810421999954, 49.238231114 ], [ -124.005807411999982, 49.238082917000078 ], [ -124.00496078099998, 49.237968646000127 ], [ -124.00374463299994, 49.237979220000064 ], [ -124.003741081999976, 49.237804009000044 ], [ -124.003459238999966, 49.23776596400009 ], [ -124.002853095999939, 49.237728429000128 ], [ -124.00283353099999, 49.238183307000028 ], [ -124.001818802999949, 49.238121200000073 ], [ -124.00054190199991, 49.238158204000065 ], [ -123.999654012999926, 49.238454505000099 ], [ -123.999173941, 49.238549945000081 ], [ -123.997053883999953, 49.238971390000117 ], [ -123.99579085699996, 49.23912751400011 ], [ -123.99554094699999, 49.239129668000011 ], [ -123.994703879999989, 49.239283832000069 ], [ -123.994704078999931, 49.239293670000066 ], [ -123.994128768999985, 49.239411692000033 ], [ -123.994110053999975, 49.239411854000146 ], [ -123.994109954999956, 49.239326406000096 ], [ -123.994111873999913, 49.239280108000031 ], [ -123.993918799999946, 49.238591601000024 ], [ -123.99725809200001, 49.238174602000093 ], [ -123.997503287999962, 49.238056694000043 ], [ -123.99767178599997, 49.237906792000054 ], [ -123.997761602999915, 49.237733813000077 ], [ -123.997762903999927, 49.237542904000087 ], [ -123.997583904999942, 49.237175807000021 ], [ -123.997170685999919, 49.236318192000034 ], [ -123.996993703, 49.235968294000067 ], [ -123.996993717999956, 49.235490099000039 ], [ -123.997877386999974, 49.235497111000043 ], [ -123.99826549099997, 49.235500192000046 ], [ -123.998262018, 49.235581198000055 ], [ -123.99831999599995, 49.235667806 ], [ -123.998617896999974, 49.235856997000063 ], [ -123.998725695999937, 49.235966201000025 ], [ -123.998757122999962, 49.236128803 ], [ -123.998693702999958, 49.236325696000108 ], [ -123.998905394999923, 49.236827607000059 ], [ -123.998985524999966, 49.237019766000117 ], [ -123.998989508999941, 49.237029371000091 ], [ -123.999026080999968, 49.237117091000115 ], [ -123.999145022999969, 49.237223702000037 ], [ -123.999289677999926, 49.237305604000014 ], [ -123.999445418999954, 49.23735531200002 ], [ -123.999643619, 49.237372509000053 ], [ -123.999868489999983, 49.237345201000046 ], [ -124.000001183999927, 49.23731618800015 ], [ -124.000137203999913, 49.237286438000154 ], [ -124.00109714899996, 49.237076485000053 ], [ -124.00120820399998, 49.23705219100006 ], [ -124.001580706999917, 49.236913197000021 ], [ -124.001885683999959, 49.23689104400006 ], [ -124.002025304999918, 49.236880911000057 ], [ -124.003170595999961, 49.236895802000099 ], [ -124.004479789999962, 49.237091099000082 ], [ -124.007541789999905, 49.237597016000102 ], [ -124.00782334899999, 49.237641837000091 ], [ -124.008149818999954, 49.237693809000071 ], [ -124.009240930999979, 49.237850513000112 ], [ -124.009380117999967, 49.237870504000057 ], [ -124.009612874999974, 49.237882894000052 ], [ -124.009641292999945, 49.236900153000086 ], [ -124.009666624999937, 49.236396745000093 ], [ -124.009678405, 49.23616284900006 ], [ -124.009687785999972, 49.235976309000108 ], [ -124.009732106999977, 49.235006503000129 ], [ -124.009735608999961, 49.234931825000047 ], [ -124.009740665, 49.234823878000071 ], [ -124.009779601999952, 49.23399446500013 ], [ -124.010390505999979, 49.23400446200008 ], [ -124.010624295999918, 49.234008271000114 ], [ -124.010871826999974, 49.234012301000078 ], [ -124.011488852, 49.234022366 ], [ -124.011708692999889, 49.234025966000097 ], [ -124.015638323999951, 49.234089911000126 ], [ -124.016947663999986, 49.234111171000045 ], [ -124.016804597999908, 49.234600115000035 ], [ -124.01668478799999, 49.235157097000112 ], [ -124.01652200599996, 49.235883414000099 ], [ -124.016486308999987, 49.235968470000067 ], [ -124.016254596999957, 49.236520509000094 ], [ -124.016247917999948, 49.236536184000045 ], [ -124.01613375099997, 49.236803054000035 ], [ -124.015847597999965, 49.237471890000066 ], [ -124.015529200999964, 49.238240395000062 ], [ -124.015624501, 49.238419490000098 ], [ -124.015775950999952, 49.238732735000035 ], [ -124.014978124999956, 49.24030983100009 ], [ -124.014920035999964, 49.240310342000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82288727", "BldgCostT": "56074856", "sL_LossRatio": "0.832644567351512", "sL_AssetLoss": "428544.2", "sL_BldgLoss": "356825", "sL_StrLoss": "227599", "sL_NStrLoss": "129226", "sL_ContLoss": "71719.2", "geom_point": "0101000020E61000009104C86D47005FC0CACFA1670E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.004486281999959, 49.235757786000114 ], [ -124.004493400999962, 49.235400405000114 ], [ -124.002377798999973, 49.235388309000029 ], [ -124.001927116, 49.235386223000077 ], [ -124.001728794999963, 49.235385295000086 ], [ -124.001584222999938, 49.235359435000127 ], [ -124.00150407699999, 49.235345089000127 ], [ -124.001309700999954, 49.235238005000056 ], [ -124.001147707999948, 49.235047699000056 ], [ -124.001110306999976, 49.23476789900009 ], [ -124.001015308999968, 49.234615685000058 ], [ -124.000853895999953, 49.234509210000041 ], [ -124.000606889000025, 49.2344434030001 ], [ -123.99999895399999, 49.234436970000033 ], [ -123.998793494, 49.234424199000109 ], [ -123.99856790599999, 49.234470400000113 ], [ -123.998391993000013, 49.234571599000049 ], [ -123.998288505999966, 49.234807389000103 ], [ -123.99826549099997, 49.235500192000046 ], [ -123.997877386999974, 49.235497111000043 ], [ -123.996993717999956, 49.235490099000039 ], [ -123.997012707999914, 49.233873387000088 ], [ -123.997912990999964, 49.233862703000057 ], [ -123.998906072999887, 49.233850903000061 ], [ -124.000001840999957, 49.233864460000142 ], [ -124.001307572999977, 49.233880560000067 ], [ -124.004247137999982, 49.233916783000048 ], [ -124.005902326999902, 49.233937153000049 ], [ -124.006666026999952, 49.233946538000026 ], [ -124.006902411999974, 49.233949445000071 ], [ -124.008096345999917, 49.233968137000012 ], [ -124.008755513000025, 49.23397843900009 ], [ -124.009779601999952, 49.23399446500013 ], [ -124.009740665, 49.234823878000071 ], [ -124.009735608999961, 49.234931825000047 ], [ -124.009732106999977, 49.235006503000129 ], [ -124.009687785999972, 49.235976309000108 ], [ -124.007416903000021, 49.235967701000099 ], [ -124.005603578999938, 49.236231293000046 ], [ -124.005007000999939, 49.236479597000084 ], [ -124.004524114999953, 49.235898883000097 ], [ -124.004486281999959, 49.235757786000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82063417", "BldgCostT": "56331667", "sL_LossRatio": "0.852177354769719", "sL_AssetLoss": "432038", "sL_BldgLoss": "368173", "sL_StrLoss": "239844", "sL_NStrLoss": "128329", "sL_ContLoss": "63865", "geom_point": "0101000020E6100000DFB4F89838005FC02F9AC6DD3D9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.004479789999962, 49.237091099000082 ], [ -124.003170595999961, 49.236895802000099 ], [ -124.002025304999918, 49.236880911000057 ], [ -124.001885683999959, 49.23689104400006 ], [ -124.001580706999917, 49.236913197000021 ], [ -124.00120820399998, 49.23705219100006 ], [ -124.00109714899996, 49.237076485000053 ], [ -124.000137203999913, 49.237286438000154 ], [ -124.000001183999927, 49.23731618800015 ], [ -123.999868489999983, 49.237345201000046 ], [ -123.999643619, 49.237372509000053 ], [ -123.999445418999954, 49.23735531200002 ], [ -123.999289677999926, 49.237305604000014 ], [ -123.999145022999969, 49.237223702000037 ], [ -123.999026080999968, 49.237117091000115 ], [ -123.998989508999941, 49.237029371000091 ], [ -123.998985524999966, 49.237019766000117 ], [ -123.998905394999923, 49.236827607000059 ], [ -123.998693702999958, 49.236325696000108 ], [ -123.998757122999962, 49.236128803 ], [ -123.998725695999937, 49.235966201000025 ], [ -123.998617896999974, 49.235856997000063 ], [ -123.99831999599995, 49.235667806 ], [ -123.998262018, 49.235581198000055 ], [ -123.99826549099997, 49.235500192000046 ], [ -123.998288505999966, 49.234807389000103 ], [ -123.998391993000013, 49.234571599000049 ], [ -123.99856790599999, 49.234470400000113 ], [ -123.998793494, 49.234424199000109 ], [ -123.99999895399999, 49.234436970000033 ], [ -124.000606889000025, 49.2344434030001 ], [ -124.000853895999953, 49.234509210000041 ], [ -124.001015308999968, 49.234615685000058 ], [ -124.001110306999976, 49.23476789900009 ], [ -124.001147707999948, 49.235047699000056 ], [ -124.001309700999954, 49.235238005000056 ], [ -124.00150407699999, 49.235345089000127 ], [ -124.001584222999938, 49.235359435000127 ], [ -124.001728794999963, 49.235385295000086 ], [ -124.001927116, 49.235386223000077 ], [ -124.002377798999973, 49.235388309000029 ], [ -124.004493400999962, 49.235400405000114 ], [ -124.004486281999959, 49.235757786000114 ], [ -124.004524114999953, 49.235898883000097 ], [ -124.005007000999939, 49.236479597000084 ], [ -124.005603578999938, 49.236231293000046 ], [ -124.007416903000021, 49.235967701000099 ], [ -124.009687785999972, 49.235976309000108 ], [ -124.009678405, 49.23616284900006 ], [ -124.009666624999937, 49.236396745000093 ], [ -124.009641292999945, 49.236900153000086 ], [ -124.009612874999974, 49.237882894000052 ], [ -124.009380117999967, 49.237870504000057 ], [ -124.009240930999979, 49.237850513000112 ], [ -124.008149818999954, 49.237693809000071 ], [ -124.00782334899999, 49.237641837000091 ], [ -124.007541789999905, 49.237597016000102 ], [ -124.004479789999962, 49.237091099000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80741478", "BldgCostT": "54799857", "sL_LossRatio": "0.849749633610161", "sL_AssetLoss": "327520", "sL_BldgLoss": "278310", "sL_StrLoss": "187597", "sL_NStrLoss": "90713", "sL_ContLoss": "49210", "geom_point": "0101000020E61000009B85245090FF5EC04252B06B209E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.993918799999946, 49.238591601000024 ], [ -123.993955310999965, 49.237365009000044 ], [ -123.993532297999948, 49.237371603000049 ], [ -123.993276411999915, 49.237353298000045 ], [ -123.993039403999916, 49.237281412000122 ], [ -123.992860808999964, 49.237190696000091 ], [ -123.992746319999952, 49.237077800000101 ], [ -123.992677110000017, 49.23693158600004 ], [ -123.992605192999974, 49.236434995000181 ], [ -123.991821092999899, 49.236509586000103 ], [ -123.991268194999961, 49.236505609000105 ], [ -123.990787484999913, 49.236451608000053 ], [ -123.990645898999944, 49.236456208000071 ], [ -123.990136238000019, 49.236546958000069 ], [ -123.990009706999942, 49.236569496000051 ], [ -123.989645314999947, 49.236110689000029 ], [ -123.988839794999933, 49.235378995000133 ], [ -123.988742092999985, 49.235049564000086 ], [ -123.988698500999973, 49.234902689000073 ], [ -123.988656036999927, 49.234261976000013 ], [ -123.988652901999956, 49.234214896000083 ], [ -123.98868768600002, 49.232966703000052 ], [ -123.988831487999988, 49.232718992000017 ], [ -123.989383016999938, 49.23209 ], [ -123.99028791299996, 49.232424699000049 ], [ -123.991168275999939, 49.232750297000052 ], [ -123.992651607999974, 49.233298892000022 ], [ -123.993093597999973, 49.233455803000062 ], [ -123.99403019199994, 49.233788299000018 ], [ -123.994710201999951, 49.233868394000119 ], [ -123.99589388699998, 49.233870965000115 ], [ -123.997012707999914, 49.233873387000088 ], [ -123.996993717999956, 49.235490099000039 ], [ -123.996993703, 49.235968294000067 ], [ -123.997170685999919, 49.236318192000034 ], [ -123.997583904999942, 49.237175807000021 ], [ -123.997762903999927, 49.237542904000087 ], [ -123.997761602999915, 49.237733813000077 ], [ -123.99767178599997, 49.237906792000054 ], [ -123.997503287999962, 49.238056694000043 ], [ -123.99725809200001, 49.238174602000093 ], [ -123.993918799999946, 49.238591601000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143165667", "BldgCostT": "94841667", "sL_LossRatio": "0.907035040004885", "sL_AssetLoss": "271829.3", "sL_BldgLoss": "246558.7", "sL_StrLoss": "200692.8", "sL_NStrLoss": "45865.9", "sL_ContLoss": "25270.6", "geom_point": "0101000020E6100000B0519CC41CFF5EC0BA710F325E9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.986442703999927, 49.23834509400006 ], [ -123.986107889999985, 49.238312795000098 ], [ -123.985627506999919, 49.238313705000046 ], [ -123.984833705999989, 49.238418587000062 ], [ -123.984037882999942, 49.238413695000105 ], [ -123.982854598999978, 49.238324908000024 ], [ -123.982233766999968, 49.238302034000057 ], [ -123.981876115999981, 49.238288855000079 ], [ -123.981515896999937, 49.238275609000119 ], [ -123.979466107999926, 49.237124286000082 ], [ -123.97947218799996, 49.237118942000023 ], [ -123.979708712, 49.23691095600001 ], [ -123.979779908999916, 49.236788944000125 ], [ -123.979819026999948, 49.236646518000079 ], [ -123.979784800999951, 49.23648741800011 ], [ -123.979199215999984, 49.235752525000088 ], [ -123.979071233999903, 49.235539422000052 ], [ -123.979062004999918, 49.235278146000056 ], [ -123.979232559999943, 49.234702380000087 ], [ -123.979827560999979, 49.234747735000049 ], [ -123.980278238, 49.234716224000081 ], [ -123.980497897999953, 49.234700863000057 ], [ -123.981150081999957, 49.234599623000086 ], [ -123.981236113999941, 49.234824354000111 ], [ -123.981267105999947, 49.234905301000069 ], [ -123.981291026999941, 49.234944650000017 ], [ -123.981352098999949, 49.235044971 ], [ -123.981402862999943, 49.235128399000061 ], [ -123.981553769999906, 49.235287903000078 ], [ -123.98175825, 49.235445704000085 ], [ -123.982013544999944, 49.235572011000045 ], [ -123.982823593999925, 49.235753732000042 ], [ -123.983093918999941, 49.235817307000062 ], [ -123.983330987999963, 49.235888364000076 ], [ -123.984048656999931, 49.236364588000136 ], [ -123.984809285, 49.235978136000028 ], [ -123.984955623999923, 49.235958339000106 ], [ -123.985104024999956, 49.235985420000091 ], [ -123.986569908999982, 49.236519728000097 ], [ -123.986792393999977, 49.236547288000018 ], [ -123.987009498999925, 49.236541419000027 ], [ -123.987527712999949, 49.236426846000121 ], [ -123.987777111999918, 49.236372119000116 ], [ -123.987992707999965, 49.236402198000057 ], [ -123.98825579799994, 49.236568309000091 ], [ -123.988384082999957, 49.236775109000035 ], [ -123.988369843999962, 49.237104342000059 ], [ -123.990120487999903, 49.237117207000075 ], [ -123.990124300999938, 49.236838990000081 ], [ -123.990009706999942, 49.236569496000051 ], [ -123.990136238000019, 49.236546958000069 ], [ -123.990645898999944, 49.236456208000071 ], [ -123.990787484999913, 49.236451608000053 ], [ -123.991268194999961, 49.236505609000105 ], [ -123.991821092999899, 49.236509586000103 ], [ -123.992605192999974, 49.236434995000181 ], [ -123.992677110000017, 49.23693158600004 ], [ -123.992746319999952, 49.237077800000101 ], [ -123.992860808999964, 49.237190696000091 ], [ -123.993039403999916, 49.237281412000122 ], [ -123.993276411999915, 49.237353298000045 ], [ -123.993532297999948, 49.237371603000049 ], [ -123.993955310999965, 49.237365009000044 ], [ -123.993918799999946, 49.238591601000024 ], [ -123.992519394999988, 49.238927506000032 ], [ -123.992153584000022, 49.239063555 ], [ -123.992141390999905, 49.239068087000113 ], [ -123.991836890999934, 49.239126406000025 ], [ -123.991248015999972, 49.239098299000069 ], [ -123.990452619999985, 49.238956498000078 ], [ -123.989709506999972, 49.23890759000011 ], [ -123.989100903999926, 49.23882065300009 ], [ -123.988912919999962, 49.238793798000067 ], [ -123.987629400999964, 49.238610392000048 ], [ -123.986937624999939, 49.238455740000063 ], [ -123.986442703999927, 49.23834509400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146743500", "BldgCostT": "99255000", "sL_LossRatio": "0.836245186497093", "sL_AssetLoss": "211566.3", "sL_BldgLoss": "176921.3", "sL_StrLoss": "130661.3", "sL_NStrLoss": "46260", "sL_ContLoss": "34645", "geom_point": "0101000020E61000004B0D4CF20CFF5EC075866F82EB9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.987992707999965, 49.236402198000057 ], [ -123.987777111999918, 49.236372119000116 ], [ -123.987527712999949, 49.236426846000121 ], [ -123.987009498999925, 49.236541419000027 ], [ -123.986792393999977, 49.236547288000018 ], [ -123.986569908999982, 49.236519728000097 ], [ -123.985104024999956, 49.235985420000091 ], [ -123.984955623999923, 49.235958339000106 ], [ -123.984809285, 49.235978136000028 ], [ -123.984048656999931, 49.236364588000136 ], [ -123.983330987999963, 49.235888364000076 ], [ -123.983093918999941, 49.235817307000062 ], [ -123.982823593999925, 49.235753732000042 ], [ -123.982013544999944, 49.235572011000045 ], [ -123.98175825, 49.235445704000085 ], [ -123.981553769999906, 49.235287903000078 ], [ -123.981402862999943, 49.235128399000061 ], [ -123.981352098999949, 49.235044971 ], [ -123.981291026999941, 49.234944650000017 ], [ -123.981267105999947, 49.234905301000069 ], [ -123.981236113999941, 49.234824354000111 ], [ -123.981150081999957, 49.234599623000086 ], [ -123.981071191999945, 49.234361293000106 ], [ -123.981069681999927, 49.234187590000069 ], [ -123.981067924999977, 49.233991266000054 ], [ -123.981065395999934, 49.233706584000068 ], [ -123.981080883999979, 49.232970404000049 ], [ -123.981108771999985, 49.232109488000035 ], [ -123.981112824999926, 49.231984159000056 ], [ -123.981124864, 49.231327995000107 ], [ -123.982268591999954, 49.231218837000078 ], [ -123.98337506699994, 49.231113481000115 ], [ -123.983893603999931, 49.231086286000057 ], [ -123.984808, 49.23113849100006 ], [ -123.986480715999932, 49.231296708000045 ], [ -123.98715029899995, 49.231393802000063 ], [ -123.988095104999928, 49.231600504 ], [ -123.989217798999974, 49.232027208000041 ], [ -123.989383016999938, 49.23209 ], [ -123.988831487999988, 49.232718992000017 ], [ -123.98868768600002, 49.232966703000052 ], [ -123.988652901999956, 49.234214896000083 ], [ -123.988656036999927, 49.234261976000013 ], [ -123.988698500999973, 49.234902689000073 ], [ -123.988742092999985, 49.235049564000086 ], [ -123.988839794999933, 49.235378995000133 ], [ -123.989645314999947, 49.236110689000029 ], [ -123.990009706999942, 49.236569496000051 ], [ -123.990124300999938, 49.236838990000081 ], [ -123.990120487999903, 49.237117207000075 ], [ -123.988369843999962, 49.237104342000059 ], [ -123.988384082999957, 49.236775109000035 ], [ -123.98825579799994, 49.236568309000091 ], [ -123.987992707999965, 49.236402198000057 ] ], [ [ -123.988016251999966, 49.234606597000067 ], [ -123.988008048999916, 49.234195347000082 ], [ -123.985946771999977, 49.234156879000061 ], [ -123.985950702999929, 49.234354383000024 ], [ -123.98553866899999, 49.234357900000091 ], [ -123.985549405999947, 49.234897534000041 ], [ -123.985137367999982, 49.234901049000086 ], [ -123.985148098999957, 49.235440685000043 ], [ -123.98638422799992, 49.235430135000122 ], [ -123.986378855999959, 49.235160318000133 ], [ -123.987614976, 49.235149756000062 ], [ -123.987604216999927, 49.234610121000074 ], [ -123.988016251999966, 49.234606597000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131915250", "BldgCostT": "87975000", "sL_LossRatio": "0.941357340551225", "sL_AssetLoss": "245870.5", "sL_BldgLoss": "231452", "sL_StrLoss": "197229", "sL_NStrLoss": "34223", "sL_ContLoss": "14418.5", "geom_point": "0101000020E61000006D1E136BA9FE5EC0028B26C41A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.988522292999932, 49.239313291000045 ], [ -123.988198155999925, 49.239192716000069 ], [ -123.988181095999963, 49.239192862000039 ], [ -123.987782811, 49.239051205000052 ], [ -123.987692426999928, 49.239033678000105 ], [ -123.987691841999947, 49.239004373000085 ], [ -123.987640739, 49.238985363000097 ], [ -123.987383388, 49.23892982100007 ], [ -123.987166428999913, 49.238931675000082 ], [ -123.986864942999929, 49.238873209000111 ], [ -123.986863835999955, 49.238817689000072 ], [ -123.986819237999953, 49.238808063000072 ], [ -123.986475339, 49.23877806300009 ], [ -123.98617403899999, 49.238784563000131 ], [ -123.986039377999973, 49.2388087490001 ], [ -123.986039980000029, 49.238839059000043 ], [ -123.985992010999965, 49.238841789000098 ], [ -123.985638894999965, 49.238944719000123 ], [ -123.985596373999968, 49.238945082000022 ], [ -123.985538955999942, 49.238973851000068 ], [ -123.985090158999952, 49.239104668000017 ], [ -123.984678853000034, 49.239118381000061 ], [ -123.984374800999959, 49.239084101000074 ], [ -123.984329066999948, 49.239074624000061 ], [ -123.983547390999945, 49.238809101000058 ], [ -123.98206437099999, 49.238828640000108 ], [ -123.981834037999988, 49.238794163000122 ], [ -123.981432207999944, 49.238883045000094 ], [ -123.981230037999964, 49.238927762000138 ], [ -123.981210001999926, 49.238929530000057 ], [ -123.980703992999963, 49.238885992000085 ], [ -123.979294787999933, 49.238475800000067 ], [ -123.978561505999949, 49.238176709000072 ], [ -123.977939497999927, 49.23804708800008 ], [ -123.977362874999926, 49.237717092000032 ], [ -123.977351212999977, 49.237126097000072 ], [ -123.97693915499994, 49.237129582000094 ], [ -123.976933831999958, 49.236859763000062 ], [ -123.976863524999942, 49.236860358000065 ], [ -123.976843140999947, 49.237328157000036 ], [ -123.976677864999971, 49.237325057000106 ], [ -123.976605792999948, 49.237283809000111 ], [ -123.975873189999916, 49.237003210000054 ], [ -123.975140402999926, 49.236829408000112 ], [ -123.97500209499999, 49.236712612000076 ], [ -123.972953707, 49.236019093000081 ], [ -123.972843590999929, 49.235957815000106 ], [ -123.972782796999965, 49.235661593000039 ], [ -123.972244711999906, 49.235538260000084 ], [ -123.97233429299996, 49.235349090000078 ], [ -123.973369598999952, 49.234876309000107 ], [ -123.973386100999917, 49.2348687510001 ], [ -123.973951591999977, 49.234610505 ], [ -123.974025029999922, 49.23381312599999 ], [ -123.974037507999981, 49.233677499000081 ], [ -123.974097705999952, 49.233024100000073 ], [ -123.97427387499998, 49.232153943000064 ], [ -123.974310666999884, 49.231972329000037 ], [ -123.974359377999974, 49.231731523000107 ], [ -123.974494745999891, 49.231063234000032 ], [ -123.974828046999946, 49.231102737000072 ], [ -123.975586912999972, 49.231192677000102 ], [ -123.977164797999947, 49.231354660000065 ], [ -123.978054711999931, 49.231401041000083 ], [ -123.978708675999911, 49.231415115000047 ], [ -123.97985143699999, 49.231423001000046 ], [ -123.980771144999949, 49.231351989000068 ], [ -123.981124864, 49.231327995000107 ], [ -123.981112824999926, 49.231984159000056 ], [ -123.981108771999985, 49.232109488000035 ], [ -123.981080883999979, 49.232970404000049 ], [ -123.981065395999934, 49.233706584000068 ], [ -123.981067924999977, 49.233991266000054 ], [ -123.981069681999927, 49.234187590000069 ], [ -123.981071191999945, 49.234361293000106 ], [ -123.981150081999957, 49.234599623000086 ], [ -123.980497897999953, 49.234700863000057 ], [ -123.980278238, 49.234716224000081 ], [ -123.979827560999979, 49.234747735000049 ], [ -123.979232559999943, 49.234702380000087 ], [ -123.979062004999918, 49.235278146000056 ], [ -123.979071233999903, 49.235539422000052 ], [ -123.979199215999984, 49.235752525000088 ], [ -123.979784800999951, 49.23648741800011 ], [ -123.979819026999948, 49.236646518000079 ], [ -123.979779908999916, 49.236788944000125 ], [ -123.979708712, 49.23691095600001 ], [ -123.97947218799996, 49.237118942000023 ], [ -123.979466107999926, 49.237124286000082 ], [ -123.981515896999937, 49.238275609000119 ], [ -123.981876115999981, 49.238288855000079 ], [ -123.982233766999968, 49.238302034000057 ], [ -123.982854598999978, 49.238324908000024 ], [ -123.984037882999942, 49.238413695000105 ], [ -123.984833705999989, 49.238418587000062 ], [ -123.985627506999919, 49.238313705000046 ], [ -123.986107889999985, 49.238312795000098 ], [ -123.986442703999927, 49.23834509400006 ], [ -123.986937624999939, 49.238455740000063 ], [ -123.987629400999964, 49.238610392000048 ], [ -123.988912919999962, 49.238793798000067 ], [ -123.989100903999926, 49.23882065300009 ], [ -123.989709506999972, 49.23890759000011 ], [ -123.990452619999985, 49.238956498000078 ], [ -123.991248015999972, 49.239098299000069 ], [ -123.991836890999934, 49.239126406000025 ], [ -123.992141390999905, 49.239068087000113 ], [ -123.992153584000022, 49.239063555 ], [ -123.992519394999988, 49.238927506000032 ], [ -123.993918799999946, 49.238591601000024 ], [ -123.994111873999913, 49.239280108000031 ], [ -123.994109954999956, 49.239326406000096 ], [ -123.994110053999975, 49.239411854000146 ], [ -123.994012525, 49.239412693000098 ], [ -123.993472506, 49.23953605300008 ], [ -123.993472709999963, 49.239546274000055 ], [ -123.99326149299999, 49.239589602000137 ], [ -123.992068001999939, 49.239680695000047 ], [ -123.991822385999953, 49.239781808000075 ], [ -123.991411000999946, 49.239811707000058 ], [ -123.990649008999966, 49.239818502000048 ], [ -123.990311438999953, 49.239771963000088 ], [ -123.990259606999956, 49.239769671000033 ], [ -123.989512796000014, 49.239666487000136 ], [ -123.988522311999958, 49.239314219000086 ], [ -123.988522292999932, 49.239313291000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "361945000", "BldgCostT": "243100000", "sL_LossRatio": "0.920282615149613", "sL_AssetLoss": "575312.4", "sL_BldgLoss": "529450", "sL_StrLoss": "422354", "sL_NStrLoss": "107096", "sL_ContLoss": "45862.4", "geom_point": "0101000020E610000061038EA9E0FD5EC04BC91759D79C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.967302607999983, 49.229123513000104 ], [ -123.964494267999939, 49.227861240000031 ], [ -123.961838338999939, 49.226667374000073 ], [ -123.961719604000038, 49.226614006000062 ], [ -123.960722600999958, 49.226163009000061 ], [ -123.960711530999973, 49.226157644000075 ], [ -123.960593202999974, 49.226100339 ], [ -123.95807730599995, 49.224882095000034 ], [ -123.957373188999924, 49.224357299000069 ], [ -123.956515223999958, 49.223498438000021 ], [ -123.956262660999926, 49.223245601000059 ], [ -123.955932849999897, 49.222915434000036 ], [ -123.955735692999923, 49.22271810400013 ], [ -123.95570445099996, 49.222688488000102 ], [ -123.955489395999948, 49.222484709000078 ], [ -123.95520540099993, 49.222299312000082 ], [ -123.955417617999956, 49.221934103000052 ], [ -123.955439222000024, 49.221737166000032 ], [ -123.955440492999983, 49.221725693000067 ], [ -123.955368886999935, 49.221576595000016 ], [ -123.955333433999968, 49.221549060000079 ], [ -123.955096882999968, 49.221365305000084 ], [ -123.95492581799995, 49.221140714000086 ], [ -123.954888116999953, 49.221091201000021 ], [ -123.954850645999954, 49.221096910000021 ], [ -123.954636699999966, 49.221129613000116 ], [ -123.95413379699994, 49.221085008000095 ], [ -123.953744506999954, 49.220983894000028 ], [ -123.953461641999965, 49.220864499000086 ], [ -123.953431995999935, 49.220851988000078 ], [ -123.95326941799999, 49.220713793000151 ], [ -123.952953507999922, 49.220191897000049 ], [ -123.952850203999958, 49.220107102000014 ], [ -123.952632421999908, 49.220005703000034 ], [ -123.952424181999959, 49.219967492000151 ], [ -123.951539891999943, 49.219954305000101 ], [ -123.951286614999958, 49.21947678900014 ], [ -123.951689298999938, 49.219303412000059 ], [ -123.952362696999913, 49.219029899000063 ], [ -123.953506561999959, 49.218482201000072 ], [ -123.954155698999941, 49.218171358000056 ], [ -123.954211379999933, 49.218144699000035 ], [ -123.954254604000013, 49.218123955000117 ], [ -123.954617008999932, 49.218193838000097 ], [ -123.955274850999984, 49.218320695000067 ], [ -123.95712432299996, 49.218472821000077 ], [ -123.95833133, 49.218603716000061 ], [ -123.958346186, 49.218606127000065 ], [ -123.959053277999971, 49.218720936000082 ], [ -123.961768560999971, 49.21874990400007 ], [ -123.961702470999953, 49.220256053000085 ], [ -123.961774964000014, 49.220255449000057 ], [ -123.961790672999925, 49.221064909000084 ], [ -123.962202599999912, 49.221061478000067 ], [ -123.962207837999969, 49.221331298000031 ], [ -123.962619766999964, 49.221327865000085 ], [ -123.962630249999904, 49.221867506000123 ], [ -123.96304218399996, 49.221864072000095 ], [ -123.963053808999973, 49.222462303000036 ], [ -123.963057914000018, 49.222673532000073 ], [ -123.962772803999897, 49.222675909000088 ], [ -123.96182209399997, 49.222683828000065 ], [ -123.961816857999949, 49.222414009000076 ], [ -123.9614049199999, 49.222417438000072 ], [ -123.961436329999927, 49.224036358000092 ], [ -123.960612427999962, 49.224043214000112 ], [ -123.960622888999936, 49.22458285400004 ], [ -123.960210933999974, 49.224586279000086 ], [ -123.96021616199999, 49.224856098000075 ], [ -123.960628119999953, 49.224852673000065 ], [ -123.960633349999981, 49.225122493000086 ], [ -123.961457271999933, 49.225115637000094 ], [ -123.96146774199994, 49.225655278000104 ], [ -123.961879707999941, 49.225651847000087 ], [ -123.961890183999913, 49.226191487000079 ], [ -123.962714121999966, 49.226184623000023 ], [ -123.96272460599999, 49.22672426200004 ], [ -123.963136578999965, 49.226720827000122 ], [ -123.96314182399999, 49.226990648000026 ], [ -123.963965775999952, 49.226983774000125 ], [ -123.963976273999918, 49.227523413000057 ], [ -123.964800234000023, 49.227516533000056 ], [ -123.964809240999955, 49.227979083000029 ], [ -123.964981548999916, 49.228054746000083 ], [ -123.966458678999913, 49.228042396000085 ], [ -123.966463941999976, 49.228312216000063 ], [ -123.967287913999925, 49.228305319000057 ], [ -123.96729318199999, 49.228575138000039 ], [ -123.968117157999984, 49.228568235000097 ], [ -123.968122431, 49.228838054000128 ], [ -123.968946409999944, 49.228831145000093 ], [ -123.968941134, 49.228561326000047 ], [ -123.97017709699999, 49.228550951000109 ], [ -123.970187663999923, 49.229090589000108 ], [ -123.970951991999982, 49.229084167000103 ], [ -123.970967851999944, 49.22872117200005 ], [ -123.971004556999958, 49.228721862 ], [ -123.971001071999979, 49.228544028000023 ], [ -123.971413059999961, 49.228540563000095 ], [ -123.971407768999967, 49.228270745000032 ], [ -123.975115631999955, 49.228239503000111 ], [ -123.97511032199999, 49.227969684000044 ], [ -123.976346266999911, 49.227959243000043 ], [ -123.976340949999965, 49.227689425000094 ], [ -123.977404829999983, 49.227680427000116 ], [ -123.977535039, 49.227505762000114 ], [ -123.977573016999912, 49.227482729000045 ], [ -123.977571564999934, 49.227409153000046 ], [ -123.977696069999979, 49.22740809900003 ], [ -123.977980188999965, 49.227235780000079 ], [ -123.977978216999972, 49.227135847000099 ], [ -123.978263945999942, 49.227133427000076 ], [ -123.978389560999986, 49.227100482000047 ], [ -123.978379533999941, 49.226592721000053 ], [ -123.979129190999984, 49.226586369000124 ], [ -123.979151338999955, 49.226495963000112 ], [ -123.979200777999949, 49.22644920300008 ], [ -123.97919814399998, 49.226315920000062 ], [ -123.979342987999971, 49.226314692000059 ], [ -123.979456039999931, 49.22620776200008 ], [ -123.979606302999954, 49.226119824000058 ], [ -123.979604776999949, 49.226042609000068 ], [ -123.979740207999939, 49.226041460000054 ], [ -123.980013623, 49.225881449000028 ], [ -123.980011404999942, 49.225769297000049 ], [ -123.980423369, 49.225765800000083 ], [ -123.980418029999953, 49.225495982000048 ], [ -123.980829988999986, 49.225492484000014 ], [ -123.98081379099996, 49.224674190000023 ], [ -123.981061996999941, 49.225048390000069 ], [ -123.98135411899996, 49.225253499000061 ], [ -123.981700563999951, 49.225296694000029 ], [ -123.981702500999944, 49.225300692000076 ], [ -123.981709909, 49.225508802000064 ], [ -123.981599935999952, 49.225765192000054 ], [ -123.981113846999932, 49.226216188000102 ], [ -123.980240257999967, 49.226521295000033 ], [ -123.980117867000018, 49.226622531000025 ], [ -123.980076357999948, 49.227198008000052 ], [ -123.980023800999959, 49.22730237500005 ], [ -123.979900796999971, 49.227385616000014 ], [ -123.978804068999978, 49.227741440000045 ], [ -123.978528510999979, 49.22783080100006 ], [ -123.97883099199997, 49.228005765000042 ], [ -123.979886629999953, 49.228342488000095 ], [ -123.979933548999909, 49.228357528000039 ], [ -123.981495718999938, 49.228857927000014 ], [ -123.982534320999918, 49.229429316000093 ], [ -123.982871978999967, 49.229553587000076 ], [ -123.983292268999975, 49.22960737100005 ], [ -123.98331572599993, 49.230016598000105 ], [ -123.98333433099999, 49.230377078000046 ], [ -123.983350291999969, 49.230642093000043 ], [ -123.983362931999963, 49.230882336000072 ], [ -123.98337506699994, 49.231113481000115 ], [ -123.982268591999954, 49.231218837000078 ], [ -123.981124864, 49.231327995000107 ], [ -123.980771144999949, 49.231351989000068 ], [ -123.97985143699999, 49.231423001000046 ], [ -123.978708675999911, 49.231415115000047 ], [ -123.978054711999931, 49.231401041000083 ], [ -123.977164797999947, 49.231354660000065 ], [ -123.975586912999972, 49.231192677000102 ], [ -123.974828046999946, 49.231102737000072 ], [ -123.974494745999891, 49.231063234000032 ], [ -123.972682036999942, 49.230844617000088 ], [ -123.972391567999978, 49.230824130000059 ], [ -123.969357693999939, 49.230610084000048 ], [ -123.969451511999978, 49.230284997000105 ], [ -123.969403714999913, 49.230184199000085 ], [ -123.96924760899999, 49.230083102000044 ], [ -123.96806978, 49.2298106040001 ], [ -123.968033454999926, 49.229765728000082 ], [ -123.967946101999971, 49.229657915000061 ], [ -123.96791650399993, 49.229520510000029 ], [ -123.968006904999939, 49.229336698000118 ], [ -123.967302607999983, 49.229123513000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121521585", "BldgCostT": "80158335", "sL_LossRatio": "0.852460464969994", "sL_AssetLoss": "400619.4", "sL_BldgLoss": "341512.2", "sL_StrLoss": "224460.2", "sL_NStrLoss": "117052", "sL_ContLoss": "59107.2", "geom_point": "0101000020E610000043CE04BBC8FD5EC021902A0E909D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.96443440599991, 49.236550297000036 ], [ -123.963307591999921, 49.235866690000051 ], [ -123.962965199999985, 49.235204388000056 ], [ -123.962522106999984, 49.234992195000117 ], [ -123.96276619299999, 49.234827014000068 ], [ -123.962888981, 49.234116298000131 ], [ -123.962773703999943, 49.233855696000063 ], [ -123.962074221999927, 49.233196303000057 ], [ -123.962196515999921, 49.233042506000054 ], [ -123.962827184999952, 49.23298260800005 ], [ -123.963969611999985, 49.23314500500009 ], [ -123.964240607999969, 49.232962710000038 ], [ -123.964401200999959, 49.232727698000105 ], [ -123.964409592999914, 49.232448596000097 ], [ -123.964094417999945, 49.231847495000075 ], [ -123.964118914999958, 49.231649607000115 ], [ -123.964254204999961, 49.231569043000043 ], [ -123.964427333999964, 49.231567598000083 ], [ -123.964523438999947, 49.231529363000078 ], [ -123.964651786999951, 49.231510702000023 ], [ -123.964940279999965, 49.231517095000072 ], [ -123.965178494999947, 49.231082687000047 ], [ -123.96512871000003, 49.230652610000071 ], [ -123.965112149999953, 49.230630335000079 ], [ -123.965106938999952, 49.230590763000073 ], [ -123.96505897899999, 49.230482869000063 ], [ -123.965002864, 49.230483337000074 ], [ -123.964854114999952, 49.230283259000096 ], [ -123.964852779999944, 49.230214728000064 ], [ -123.964803472, 49.230215141000052 ], [ -123.964762402, 49.230159898000132 ], [ -123.96443640499993, 49.229993530000051 ], [ -123.964435524999914, 49.229948349000018 ], [ -123.964349284999955, 49.229949070000039 ], [ -123.964070292999935, 49.229806689000057 ], [ -123.964020765999976, 49.229809963000015 ], [ -123.964020282, 49.229785156000041 ], [ -123.963955738000024, 49.229767463000037 ], [ -123.963476738999972, 49.229740663000044 ], [ -123.962799938999936, 49.229797363000046 ], [ -123.962585138999927, 49.229776064000113 ], [ -123.96252543899999, 49.229739153000054 ], [ -123.962414693, 49.229424991000066 ], [ -123.962254921999957, 49.229294955000086 ], [ -123.962253237999974, 49.22929126300005 ], [ -123.962113606999964, 49.229158123000076 ], [ -123.962087073999911, 49.229158344000062 ], [ -123.961506488999973, 49.228685801000069 ], [ -123.960771395999942, 49.22826850400002 ], [ -123.960314706999895, 49.228155984000111 ], [ -123.959861374999903, 49.227810760000139 ], [ -123.95985937, 49.227707237000089 ], [ -123.959754738999933, 49.227627463000019 ], [ -123.959546763999981, 49.22756029400005 ], [ -123.959465564999917, 49.227560970000056 ], [ -123.95859411099994, 49.227261594000026 ], [ -123.958190411999936, 49.226931199000028 ], [ -123.957346585999943, 49.226659203000096 ], [ -123.956954017, 49.226619179000089 ], [ -123.95695244699999, 49.226537834000077 ], [ -123.956247338999901, 49.226537563000072 ], [ -123.956128802999942, 49.226560314000018 ], [ -123.956129926999978, 49.226618536000039 ], [ -123.955875909999975, 49.226644884000066 ], [ -123.953290912999989, 49.227197498000059 ], [ -123.952760884999975, 49.227219503000079 ], [ -123.95275211799995, 49.227207752000069 ], [ -123.952580101999956, 49.226919901000059 ], [ -123.952845703999984, 49.226529709 ], [ -123.95286961, 49.226422993000043 ], [ -123.953324920999975, 49.22568070500008 ], [ -123.953368776, 49.225638941000092 ], [ -123.953451062999974, 49.225560576000127 ], [ -123.953871985999982, 49.225159795000074 ], [ -123.954166098999934, 49.225336490000053 ], [ -123.9545446179999, 49.225500904000107 ], [ -123.954833773999923, 49.225626495000085 ], [ -123.955469591999972, 49.22583300100009 ], [ -123.95579209099995, 49.225895895000086 ], [ -123.955952506999907, 49.225928612000075 ], [ -123.956276765999959, 49.225968694000059 ], [ -123.956572089999938, 49.226005198000053 ], [ -123.957393794999945, 49.226072097000035 ], [ -123.958307597999976, 49.226260504000088 ], [ -123.958045485999975, 49.2258845160001 ], [ -123.957821594999956, 49.225702899000062 ], [ -123.956229307999976, 49.224753402000083 ], [ -123.955225889999937, 49.224482292000076 ], [ -123.955258087999965, 49.224310896000098 ], [ -123.955179915999977, 49.224123900000066 ], [ -123.95418500699995, 49.223225392000053 ], [ -123.954003956999927, 49.222995978000071 ], [ -123.953752220999959, 49.222676905000107 ], [ -123.953390220999921, 49.222330593000052 ], [ -123.953839301999935, 49.222164400000096 ], [ -123.954060686999966, 49.222122698000071 ], [ -123.954141742999951, 49.222121669000046 ], [ -123.954431281999973, 49.22211799600003 ], [ -123.954771788999935, 49.222173988000037 ], [ -123.95520540099993, 49.222299312000082 ], [ -123.955489395999948, 49.222484709000078 ], [ -123.95570445099996, 49.222688488000102 ], [ -123.955735692999923, 49.22271810400013 ], [ -123.955932849999897, 49.222915434000036 ], [ -123.956262660999926, 49.223245601000059 ], [ -123.956515223999958, 49.223498438000021 ], [ -123.957373188999924, 49.224357299000069 ], [ -123.95807730599995, 49.224882095000034 ], [ -123.960593202999974, 49.226100339 ], [ -123.960711530999973, 49.226157644000075 ], [ -123.960722600999958, 49.226163009000061 ], [ -123.961719604000038, 49.226614006000062 ], [ -123.961838338999939, 49.226667374000073 ], [ -123.964494267999939, 49.227861240000031 ], [ -123.967302607999983, 49.229123513000104 ], [ -123.968006904999939, 49.229336698000118 ], [ -123.96791650399993, 49.229520510000029 ], [ -123.967946101999971, 49.229657915000061 ], [ -123.968033454999926, 49.229765728000082 ], [ -123.96806978, 49.2298106040001 ], [ -123.96924760899999, 49.230083102000044 ], [ -123.969403714999913, 49.230184199000085 ], [ -123.969451511999978, 49.230284997000105 ], [ -123.969357693999939, 49.230610084000048 ], [ -123.972391567999978, 49.230824130000059 ], [ -123.972682036999942, 49.230844617000088 ], [ -123.974494745999891, 49.231063234000032 ], [ -123.974359377999974, 49.231731523000107 ], [ -123.974310666999884, 49.231972329000037 ], [ -123.97427387499998, 49.232153943000064 ], [ -123.974097705999952, 49.233024100000073 ], [ -123.974037507999981, 49.233677499000081 ], [ -123.974025029999922, 49.23381312599999 ], [ -123.973951591999977, 49.234610505 ], [ -123.973386100999917, 49.2348687510001 ], [ -123.973369598999952, 49.234876309000107 ], [ -123.97233429299996, 49.235349090000078 ], [ -123.972244711999906, 49.235538260000084 ], [ -123.971720089999934, 49.235418010000046 ], [ -123.969880396999969, 49.234777199000142 ], [ -123.969648703999965, 49.234805612000088 ], [ -123.969457399999982, 49.234942413000084 ], [ -123.969150194999912, 49.235359589000019 ], [ -123.969250797999905, 49.235591786000015 ], [ -123.970030082000036, 49.236071792000054 ], [ -123.969992501999968, 49.236305302000062 ], [ -123.969802512999934, 49.236396504 ], [ -123.968469678999924, 49.236380798000035 ], [ -123.96797091, 49.236142987000079 ], [ -123.967310007999984, 49.236040403000104 ], [ -123.967063707999927, 49.236087398000059 ], [ -123.966228961999903, 49.236049986000118 ], [ -123.966304438999913, 49.23432672400007 ], [ -123.966222082999977, 49.234325171000044 ], [ -123.966146695999939, 49.23604629800009 ], [ -123.96604628199999, 49.236041796000073 ], [ -123.965499410999882, 49.236198501000132 ], [ -123.965282794999922, 49.236416412000089 ], [ -123.964929699999985, 49.236581605000012 ], [ -123.96443440599991, 49.236550297000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105859667", "BldgCostT": "71566667", "sL_LossRatio": "0.868313045508947", "sL_AssetLoss": "359698.5", "sL_BldgLoss": "312330.9", "sL_StrLoss": "209748.9", "sL_NStrLoss": "102582", "sL_ContLoss": "47367.6", "geom_point": "0101000020E6100000F144DFF6E7FC5EC0DBC4D16E579C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.950486611999921, 49.222590587000084 ], [ -123.949653301999959, 49.221979486000102 ], [ -123.948778748999942, 49.221457107000084 ], [ -123.94873573699999, 49.221431396000064 ], [ -123.948594605999958, 49.22134708800008 ], [ -123.948486944999956, 49.221268126000027 ], [ -123.948318275999924, 49.221144436000031 ], [ -123.9480564, 49.220952388000057 ], [ -123.948049623, 49.220943443000102 ], [ -123.947884010999971, 49.220723990000103 ], [ -123.947850621999976, 49.220454996000107 ], [ -123.947876987999976, 49.220353801000087 ], [ -123.948265319999919, 49.220168484000069 ], [ -123.948825311999954, 49.220068381000054 ], [ -123.948745786999964, 49.219942624000119 ], [ -123.94829219899999, 49.219558511000038 ], [ -123.948192519999935, 49.219423359000103 ], [ -123.947972618999955, 49.219125269000095 ], [ -123.947838673999939, 49.218943652000114 ], [ -123.947188102999974, 49.218061682000076 ], [ -123.946950383999976, 49.217729394000081 ], [ -123.946966799, 49.217693326000038 ], [ -123.94710532, 49.217389285000088 ], [ -123.947108517999965, 49.216696021000089 ], [ -123.947143388999947, 49.215906108000119 ], [ -123.948421103999962, 49.215924998000098 ], [ -123.948364785999942, 49.218318191000066 ], [ -123.949741406999948, 49.218337187 ], [ -123.95113698699997, 49.218357384000072 ], [ -123.951155903999961, 49.21870621500009 ], [ -123.951208797, 49.218814408000092 ], [ -123.95134278399992, 49.218950780000036 ], [ -123.951689298999938, 49.219303412000059 ], [ -123.951286614999958, 49.21947678900014 ], [ -123.951539891999943, 49.219954305000101 ], [ -123.952424181999959, 49.219967492000151 ], [ -123.952632421999908, 49.220005703000034 ], [ -123.952850203999958, 49.220107102000014 ], [ -123.952953507999922, 49.220191897000049 ], [ -123.95326941799999, 49.220713793000151 ], [ -123.953431995999935, 49.220851988000078 ], [ -123.953461641999965, 49.220864499000086 ], [ -123.953744506999954, 49.220983894000028 ], [ -123.95413379699994, 49.221085008000095 ], [ -123.954636699999966, 49.221129613000116 ], [ -123.954850645999954, 49.221096910000021 ], [ -123.954888116999953, 49.221091201000021 ], [ -123.95492581799995, 49.221140714000086 ], [ -123.955096882999968, 49.221365305000084 ], [ -123.955333433999968, 49.221549060000079 ], [ -123.955368886999935, 49.221576595000016 ], [ -123.955440492999983, 49.221725693000067 ], [ -123.955439222000024, 49.221737166000032 ], [ -123.955417617999956, 49.221934103000052 ], [ -123.95520540099993, 49.222299312000082 ], [ -123.954771788999935, 49.222173988000037 ], [ -123.954431281999973, 49.22211799600003 ], [ -123.954141742999951, 49.222121669000046 ], [ -123.954060686999966, 49.222122698000071 ], [ -123.953839301999935, 49.222164400000096 ], [ -123.953390220999921, 49.222330593000052 ], [ -123.953752220999959, 49.222676905000107 ], [ -123.954003956999927, 49.222995978000071 ], [ -123.95418500699995, 49.223225392000053 ], [ -123.955179915999977, 49.224123900000066 ], [ -123.955258087999965, 49.224310896000098 ], [ -123.955225889999937, 49.224482292000076 ], [ -123.956229307999976, 49.224753402000083 ], [ -123.957821594999956, 49.225702899000062 ], [ -123.958045485999975, 49.2258845160001 ], [ -123.958307597999976, 49.226260504000088 ], [ -123.957393794999945, 49.226072097000035 ], [ -123.956572089999938, 49.226005198000053 ], [ -123.956276765999959, 49.225968694000059 ], [ -123.955952506999907, 49.225928612000075 ], [ -123.95579209099995, 49.225895895000086 ], [ -123.955469591999972, 49.22583300100009 ], [ -123.954833773999923, 49.225626495000085 ], [ -123.9545446179999, 49.225500904000107 ], [ -123.954166098999934, 49.225336490000053 ], [ -123.953871985999982, 49.225159795000074 ], [ -123.953470767999946, 49.224881462000063 ], [ -123.952721696999973, 49.224361809000101 ], [ -123.950486611999921, 49.222590587000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121287750", "BldgCostT": "83175000", "sL_LossRatio": "0.824078112897299", "sL_AssetLoss": "756546", "sL_BldgLoss": "623453", "sL_StrLoss": "375088", "sL_NStrLoss": "248365", "sL_ContLoss": "133093", "geom_point": "0101000020E6100000CF44BF5394FC5EC0ABD3E4D6E29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.950022096999959, 49.229319591 ], [ -123.948995695999969, 49.228798294000057 ], [ -123.948613614999928, 49.22890940200007 ], [ -123.94825590799999, 49.228893689000053 ], [ -123.94812880799995, 49.228741298000067 ], [ -123.948052587999911, 49.228319809 ], [ -123.948376387999957, 49.22801069700008 ], [ -123.948111591, 49.227780005000056 ], [ -123.948340091999967, 49.227525110000073 ], [ -123.948695791999981, 49.227469500000034 ], [ -123.94873420199994, 49.227270110000049 ], [ -123.948388396999974, 49.227166187000137 ], [ -123.947977618999971, 49.227250196000064 ], [ -123.947900415999953, 49.227207519000039 ], [ -123.947898678999962, 49.22711674500006 ], [ -123.947486699999942, 49.227120125000056 ], [ -123.94747122199999, 49.226310662000024 ], [ -123.947431180999942, 49.226310990000094 ], [ -123.947671994999894, 49.225687796000081 ], [ -123.947017111999912, 49.222984707000066 ], [ -123.947125011999958, 49.222876503000045 ], [ -123.946636689999949, 49.221774103000044 ], [ -123.94614257399995, 49.221464366000085 ], [ -123.94614256599999, 49.221464013000094 ], [ -123.946142017999946, 49.221464018000049 ], [ -123.946011981999931, 49.221382504000054 ], [ -123.945776700999915, 49.22116392900012 ], [ -123.945723906999959, 49.221114883000041 ], [ -123.94572033799993, 49.220927744000029 ], [ -123.945524196999983, 49.220929350000112 ], [ -123.945493781999971, 49.220901092000084 ], [ -123.945302972999968, 49.220646088000066 ], [ -123.94529811699995, 49.22039147300012 ], [ -123.945113587999941, 49.22039298300006 ], [ -123.944958793999916, 49.220186102000078 ], [ -123.944535420999941, 49.219318259000083 ], [ -123.944865616999977, 49.219315558000055 ], [ -123.944863469999973, 49.219202933000076 ], [ -123.944475553999936, 49.219195538000065 ], [ -123.944443284999977, 49.219129393000117 ], [ -123.943914787999958, 49.218702112000074 ], [ -123.943547803999962, 49.218219290000064 ], [ -123.943143099999958, 49.21793439000006 ], [ -123.942806318999942, 49.217495806000066 ], [ -123.942452948999957, 49.217227146000013 ], [ -123.942467155999978, 49.216906382000033 ], [ -123.942347958999946, 49.21690735400005 ], [ -123.942342957999983, 49.216644370000076 ], [ -123.942003559999961, 49.216370437000137 ], [ -123.94192580899994, 49.216371070000051 ], [ -123.941924584999953, 49.216306695000043 ], [ -123.941672552999933, 49.216103273000044 ], [ -123.94150879299994, 49.216104607000076 ], [ -123.941505429999921, 49.215927540000109 ], [ -123.941266374999913, 49.215566856000095 ], [ -123.941086659999925, 49.215568320000045 ], [ -123.94108133099995, 49.215287662000051 ], [ -123.940961238999961, 49.215106462000065 ], [ -123.940928538999927, 49.214796364000065 ], [ -123.940897669999941, 49.214760268000134 ], [ -123.940659416999935, 49.214762209000043 ], [ -123.940649206999936, 49.214224254000015 ], [ -123.940540638999948, 49.213928863000035 ], [ -123.940626289999898, 49.213458051000046 ], [ -123.940633874999946, 49.213416356000053 ], [ -123.940623574999933, 49.212873455000057 ], [ -123.940949782999951, 49.212870798000033 ], [ -123.941016438999952, 49.212784563000078 ], [ -123.941018337999964, 49.212643662000126 ], [ -123.941030852999958, 49.212628694000031 ], [ -123.941025189999962, 49.212330456000068 ], [ -123.941281930999978, 49.212328364000022 ], [ -123.941430237999924, 49.212150964000067 ], [ -123.941433663999987, 49.212148997000035 ], [ -123.941426084999961, 49.211749832000095 ], [ -123.941762374999911, 49.211693595000078 ], [ -123.942134034999953, 49.211511825000073 ], [ -123.942736279999934, 49.211506911000058 ], [ -123.943233837999941, 49.211412564000092 ], [ -123.94332733499999, 49.211400449000074 ], [ -123.943329812999963, 49.211344501000056 ], [ -123.944471008999969, 49.211212205000017 ], [ -123.945793908, 49.210760682000085 ], [ -123.946819704999939, 49.210554191000092 ], [ -123.947710801999918, 49.210484387000029 ], [ -123.948111791999963, 49.210535699000111 ], [ -123.949026713999942, 49.210356208000036 ], [ -123.949755389999922, 49.210359103000059 ], [ -123.950833196999909, 49.210087696000109 ], [ -123.950833041999942, 49.210091219000077 ], [ -123.950955955999945, 49.210090207000107 ], [ -123.951052937999961, 49.210067863000049 ], [ -123.951170798999954, 49.21005673700013 ], [ -123.95125124499999, 49.211164188000083 ], [ -123.951238801999949, 49.211695193000018 ], [ -123.951155000999933, 49.211946595000015 ], [ -123.950596979999958, 49.211941393000096 ], [ -123.94968305899999, 49.211992948000095 ], [ -123.948101657, 49.21208212300008 ], [ -123.947754597999946, 49.212101700000112 ], [ -123.947439888999938, 49.212208195000073 ], [ -123.947247685999983, 49.212459402000135 ], [ -123.947139114999942, 49.213676487000086 ], [ -123.947128499999934, 49.214133805000067 ], [ -123.947140826999927, 49.215598515000032 ], [ -123.947143388999947, 49.215906108000119 ], [ -123.947108517999965, 49.216696021000089 ], [ -123.94710532, 49.217389285000088 ], [ -123.946966799, 49.217693326000038 ], [ -123.946950383999976, 49.217729394000081 ], [ -123.947188102999974, 49.218061682000076 ], [ -123.947838673999939, 49.218943652000114 ], [ -123.947972618999955, 49.219125269000095 ], [ -123.948192519999935, 49.219423359000103 ], [ -123.94829219899999, 49.219558511000038 ], [ -123.948745786999964, 49.219942624000119 ], [ -123.948825311999954, 49.220068381000054 ], [ -123.948265319999919, 49.220168484000069 ], [ -123.947876987999976, 49.220353801000087 ], [ -123.947850621999976, 49.220454996000107 ], [ -123.947884010999971, 49.220723990000103 ], [ -123.948049623, 49.220943443000102 ], [ -123.9480564, 49.220952388000057 ], [ -123.948318275999924, 49.221144436000031 ], [ -123.948486944999956, 49.221268126000027 ], [ -123.948594605999958, 49.22134708800008 ], [ -123.94873573699999, 49.221431396000064 ], [ -123.948778748999942, 49.221457107000084 ], [ -123.949653301999959, 49.221979486000102 ], [ -123.950486611999921, 49.222590587000084 ], [ -123.952721696999973, 49.224361809000101 ], [ -123.953470767999946, 49.224881462000063 ], [ -123.953871985999982, 49.225159795000074 ], [ -123.953451062999974, 49.225560576000127 ], [ -123.953368776, 49.225638941000092 ], [ -123.953324920999975, 49.22568070500008 ], [ -123.95286961, 49.226422993000043 ], [ -123.952845703999984, 49.226529709 ], [ -123.952580101999956, 49.226919901000059 ], [ -123.95275211799995, 49.227207752000069 ], [ -123.952760884999975, 49.227219503000079 ], [ -123.952741794999952, 49.227220295000066 ], [ -123.952453009999942, 49.227159091000061 ], [ -123.952048024999925, 49.226775904000085 ], [ -123.952026696999908, 49.226361492000095 ], [ -123.952193615999974, 49.22574910500007 ], [ -123.95189199099994, 49.225112499 ], [ -123.951347800999883, 49.22462249200008 ], [ -123.950791993999971, 49.22433059300004 ], [ -123.950566079999959, 49.22402579400007 ], [ -123.95021818599993, 49.223803603000135 ], [ -123.949384613999925, 49.223316497000027 ], [ -123.948611784999954, 49.223070204000074 ], [ -123.948161214, 49.22321830900006 ], [ -123.948000823999948, 49.223444705000084 ], [ -123.948024118999967, 49.223894805000072 ], [ -123.948303806999931, 49.224881694000061 ], [ -123.948180811999919, 49.226340097000019 ], [ -123.948737584999918, 49.226740307000107 ], [ -123.950219393999987, 49.227419688000069 ], [ -123.95155699499999, 49.227670311000089 ], [ -123.951904899999974, 49.227963704000061 ], [ -123.952241622999935, 49.227592004 ], [ -123.952431990999941, 49.227492302000023 ], [ -123.952747308999975, 49.22746240700009 ], [ -123.952915589999961, 49.227587715000077 ], [ -123.9529761, 49.227919588000091 ], [ -123.952951292999913, 49.228090512000094 ], [ -123.952478895999946, 49.228490713000021 ], [ -123.950448893999962, 49.229352293000098 ], [ -123.950022096999959, 49.229319591 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166974334", "BldgCostT": "109053334", "sL_LossRatio": "0.874020298152", "sL_AssetLoss": "513268.4", "sL_BldgLoss": "448607", "sL_StrLoss": "316598", "sL_NStrLoss": "132009", "sL_ContLoss": "64661.4", "geom_point": "0101000020E6100000D418ADA3EAFC5EC07F7623A0809B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.951155903999961, 49.21870621500009 ], [ -123.95113698699997, 49.218357384000072 ], [ -123.949741406999948, 49.218337187 ], [ -123.948364785999942, 49.218318191000066 ], [ -123.948421103999962, 49.215924998000098 ], [ -123.947143388999947, 49.215906108000119 ], [ -123.947140826999927, 49.215598515000032 ], [ -123.947128499999934, 49.214133805000067 ], [ -123.947139114999942, 49.213676487000086 ], [ -123.947247685999983, 49.212459402000135 ], [ -123.947439888999938, 49.212208195000073 ], [ -123.947754597999946, 49.212101700000112 ], [ -123.948101657, 49.21208212300008 ], [ -123.94968305899999, 49.211992948000095 ], [ -123.950596979999958, 49.211941393000096 ], [ -123.951155000999933, 49.211946595000015 ], [ -123.951238801999949, 49.211695193000018 ], [ -123.95125124499999, 49.211164188000083 ], [ -123.95195295299996, 49.2112090460001 ], [ -123.952920993999939, 49.211278743000058 ], [ -123.953756791, 49.211300022000039 ], [ -123.954058478999926, 49.211364266000039 ], [ -123.955243203999927, 49.211778438000067 ], [ -123.95659762899993, 49.212014819000103 ], [ -123.956389222999988, 49.212231483000053 ], [ -123.956299852999905, 49.212485504000092 ], [ -123.956351276999953, 49.213093380000053 ], [ -123.956380253999953, 49.213994364000065 ], [ -123.956394747999965, 49.214371884000109 ], [ -123.955945668999959, 49.215609598000114 ], [ -123.955879298999918, 49.215774 ], [ -123.955599230999979, 49.216467451000057 ], [ -123.955327467, 49.216876494000118 ], [ -123.954910396999963, 49.217407053000017 ], [ -123.95437834499991, 49.218024572000083 ], [ -123.954254604000013, 49.218123955000117 ], [ -123.954211379999933, 49.218144699000035 ], [ -123.954155698999941, 49.218171358000056 ], [ -123.953506561999959, 49.218482201000072 ], [ -123.952362696999913, 49.219029899000063 ], [ -123.951689298999938, 49.219303412000059 ], [ -123.95134278399992, 49.218950780000036 ], [ -123.951208797, 49.218814408000092 ], [ -123.951155903999961, 49.21870621500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "306433501", "BldgCostT": "205440001", "sL_LossRatio": "0.897741002551293", "sL_AssetLoss": "745308.5", "sL_BldgLoss": "669094", "sL_StrLoss": "497726", "sL_NStrLoss": "171368", "sL_ContLoss": "76214.5", "geom_point": "0101000020E610000063399698E3FD5EC084D183ED6D9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.986069384999965, 49.219248015000126 ], [ -123.986070753999954, 49.219216432000096 ], [ -123.985730543999964, 49.219210078000046 ], [ -123.985714305999934, 49.219208260000094 ], [ -123.985590259999981, 49.219205935000119 ], [ -123.982997428, 49.218864935000106 ], [ -123.982783669999961, 49.218815972000066 ], [ -123.981695831999957, 49.218566794000019 ], [ -123.98177020199995, 49.21844859 ], [ -123.981685597999927, 49.218404395000029 ], [ -123.979975199, 49.218662205000086 ], [ -123.979555022999961, 49.218674915000115 ], [ -123.97964539899999, 49.216597030000045 ], [ -123.97900622899999, 49.216602450000011 ], [ -123.979000899999974, 49.216332631000064 ], [ -123.978865521999921, 49.216333778000063 ], [ -123.978852139999987, 49.216339963000031 ], [ -123.978432737999981, 49.216474563000062 ], [ -123.978014538999929, 49.216508563000076 ], [ -123.977665894999944, 49.216343940000115 ], [ -123.97735336, 49.216346584000092 ], [ -123.977350369999954, 49.216194951000034 ], [ -123.977104443999963, 49.216078826000057 ], [ -123.976936154999919, 49.21608025000004 ], [ -123.976933973999977, 49.21596956100003 ], [ -123.976693714999968, 49.215812436000064 ], [ -123.976518957999986, 49.21581391400008 ], [ -123.976516645999979, 49.215696634000061 ], [ -123.97640354, 49.215622663000104 ], [ -123.97627053799999, 49.215444862 ], [ -123.976341239999954, 49.215191662000109 ], [ -123.976504818999942, 49.215096326000015 ], [ -123.976503009999988, 49.215004457000141 ], [ -123.976664799, 49.215003089000071 ], [ -123.976912084999938, 49.214858965000133 ], [ -123.97689361299993, 49.21392169700006 ], [ -123.976481747999955, 49.213925180000039 ], [ -123.976473582999972, 49.213510682000084 ], [ -123.976060247999925, 49.21343931800002 ], [ -123.976064569999934, 49.213658842 ], [ -123.972769662999966, 49.213686639000073 ], [ -123.972764367999929, 49.213416821000038 ], [ -123.965762710999982, 49.213475578000029 ], [ -123.965778482999923, 49.214285038000064 ], [ -123.964954742999964, 49.214291923000062 ], [ -123.964959996999966, 49.214561743000083 ], [ -123.964548124999936, 49.214565183000062 ], [ -123.964562272999956, 49.215292316000081 ], [ -123.964574537999979, 49.215329863000129 ], [ -123.964563157999962, 49.215337757000064 ], [ -123.964590131, 49.216723743000045 ], [ -123.964178239999953, 49.216727183000039 ], [ -123.964183487999961, 49.216997003000095 ], [ -123.963771596999933, 49.217000441000032 ], [ -123.963776842999906, 49.217270260000085 ], [ -123.962953053999982, 49.217277132000106 ], [ -123.96295829499995, 49.217546952000056 ], [ -123.962134501999969, 49.217553817000081 ], [ -123.962155452999966, 49.218633098000105 ], [ -123.96177354699995, 49.218636278000069 ], [ -123.961768560999971, 49.21874990400007 ], [ -123.959053277999971, 49.218720936000082 ], [ -123.958346186, 49.218606127000065 ], [ -123.95833133, 49.218603716000061 ], [ -123.95712432299996, 49.218472821000077 ], [ -123.955274850999984, 49.218320695000067 ], [ -123.954617008999932, 49.218193838000097 ], [ -123.954254604000013, 49.218123955000117 ], [ -123.95437834499991, 49.218024572000083 ], [ -123.954910396999963, 49.217407053000017 ], [ -123.955327467, 49.216876494000118 ], [ -123.955599230999979, 49.216467451000057 ], [ -123.955879298999918, 49.215774 ], [ -123.955945668999959, 49.215609598000114 ], [ -123.956394747999965, 49.214371884000109 ], [ -123.956380253999953, 49.213994364000065 ], [ -123.956351276999953, 49.213093380000053 ], [ -123.956299852999905, 49.212485504000092 ], [ -123.956389222999988, 49.212231483000053 ], [ -123.95659762899993, 49.212014819000103 ], [ -123.95774447299999, 49.211356717000086 ], [ -123.957841598999934, 49.211310095000051 ], [ -123.958070996999979, 49.211199937000124 ], [ -123.958567928999983, 49.210969932000054 ], [ -123.959310110999951, 49.210626401000077 ], [ -123.959764145999912, 49.210531448000019 ], [ -123.960147845999956, 49.210508993000133 ], [ -123.960726385999976, 49.210390280000041 ], [ -123.961719791999954, 49.209945337000129 ], [ -123.962086936999967, 49.209861336000095 ], [ -123.962271306999952, 49.209847111000059 ], [ -123.96239659299998, 49.209837464000088 ], [ -123.963915652999972, 49.209916585000066 ], [ -123.96431780099999, 49.209879152000077 ], [ -123.964554638999942, 49.209795386000025 ], [ -123.964694093999981, 49.209696133000065 ], [ -123.964725958999935, 49.209673469000037 ], [ -123.964740888999955, 49.209622949000021 ], [ -123.964772652999955, 49.209515876000069 ], [ -123.964674282999937, 49.209036779000037 ], [ -123.964693437999969, 49.208818336000014 ], [ -123.964815479999984, 49.208631538000127 ], [ -123.965000520999951, 49.208477455000079 ], [ -123.965410226999964, 49.208267296000081 ], [ -123.966000497999957, 49.208100144000042 ], [ -123.966792637999916, 49.207957504000042 ], [ -123.966825468999957, 49.207943536000158 ], [ -123.96710708199997, 49.207823874000084 ], [ -123.967808449999922, 49.207373375000039 ], [ -123.968371506999958, 49.207137270000061 ], [ -123.968657908999944, 49.207802692000072 ], [ -123.968141982999967, 49.208528602000072 ], [ -123.968414711999955, 49.208815596000143 ], [ -123.968487193999962, 49.208946598000075 ], [ -123.968671896000018, 49.209143698000034 ], [ -123.968942392999935, 49.20935768500005 ], [ -123.968531687, 49.209584906000089 ], [ -123.968363758999899, 49.20967782000011 ], [ -123.968075092999953, 49.209837518000079 ], [ -123.968525902999929, 49.210726580000092 ], [ -123.968511481999897, 49.210899199000082 ], [ -123.968415202999964, 49.211062202000036 ], [ -123.968247702999946, 49.211222899000113 ], [ -123.968432819999947, 49.211382196000031 ], [ -123.968801910999957, 49.211566500000075 ], [ -123.970778200999931, 49.212171003000094 ], [ -123.970956003999902, 49.21218161200008 ], [ -123.971139910999938, 49.212149004000054 ], [ -123.971646094999983, 49.2119261940001 ], [ -123.972235695, 49.212405970000169 ], [ -123.972592090999981, 49.212695972000112 ], [ -123.972920500999976, 49.212963205000044 ], [ -123.973127784999974, 49.213083196000099 ], [ -123.973257014999959, 49.213109093000092 ], [ -123.97496380599992, 49.213132096000038 ], [ -123.975547880999926, 49.213105291000019 ], [ -123.975753792999939, 49.213040709000019 ], [ -123.976063684999986, 49.212853795000036 ], [ -123.97646181399989, 49.21268931000003 ], [ -123.977000614999938, 49.212506710000063 ], [ -123.977130708999979, 49.21263792700006 ], [ -123.977470987999936, 49.212981113000076 ], [ -123.977494387999968, 49.212999286000112 ], [ -123.97815697, 49.213514415000077 ], [ -123.97904667499995, 49.2143468720001 ], [ -123.979354459999954, 49.214776739000101 ], [ -123.979537133999955, 49.215149349000022 ], [ -123.97981566299994, 49.215463404000047 ], [ -123.980269034999964, 49.215826672000084 ], [ -123.980452679999971, 49.215925550000094 ], [ -123.981463842999943, 49.216426213000055 ], [ -123.981853844999989, 49.216700940000145 ], [ -123.98207983399999, 49.216772706000057 ], [ -123.983270507999947, 49.216932746000083 ], [ -123.984689972999931, 49.217004292000055 ], [ -123.984887332999932, 49.217007039000038 ], [ -123.985079592, 49.217009694000119 ], [ -123.98635847599995, 49.217027388000069 ], [ -123.98757484599993, 49.216973541000065 ], [ -123.989056633999937, 49.218078097000102 ], [ -123.98928542299997, 49.218275055000049 ], [ -123.98933696899995, 49.218511023000062 ], [ -123.988477995999915, 49.218642725000066 ], [ -123.988064793999953, 49.218742118000122 ], [ -123.987686695999969, 49.218920520000019 ], [ -123.987439587999987, 49.219081628000083 ], [ -123.987196816999955, 49.219303096000083 ], [ -123.98720343, 49.219374973000072 ], [ -123.986069384999965, 49.219248015000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188464395", "BldgCostT": "126706524", "sL_LossRatio": "0.861690042666959", "sL_AssetLoss": "575269.5", "sL_BldgLoss": "495704", "sL_StrLoss": "342422", "sL_NStrLoss": "153282", "sL_ContLoss": "79565.5", "geom_point": "0101000020E61000002111C7781CFE5EC0DD9FCDA2DE9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.972235695, 49.212405970000169 ], [ -123.971646094999983, 49.2119261940001 ], [ -123.971139910999938, 49.212149004000054 ], [ -123.970956003999902, 49.21218161200008 ], [ -123.970778200999931, 49.212171003000094 ], [ -123.968801910999957, 49.211566500000075 ], [ -123.968432819999947, 49.211382196000031 ], [ -123.968247702999946, 49.211222899000113 ], [ -123.968415202999964, 49.211062202000036 ], [ -123.968511481999897, 49.210899199000082 ], [ -123.968525902999929, 49.210726580000092 ], [ -123.968075092999953, 49.209837518000079 ], [ -123.968363758999899, 49.20967782000011 ], [ -123.968531687, 49.209584906000089 ], [ -123.968942392999935, 49.20935768500005 ], [ -123.968671896000018, 49.209143698000034 ], [ -123.968487193999962, 49.208946598000075 ], [ -123.968414711999955, 49.208815596000143 ], [ -123.968141982999967, 49.208528602000072 ], [ -123.968657908999944, 49.207802692000072 ], [ -123.968371506999958, 49.207137270000061 ], [ -123.967808449999922, 49.207373375000039 ], [ -123.96710708199997, 49.207823874000084 ], [ -123.966825468999957, 49.207943536000158 ], [ -123.966792637999916, 49.207957504000042 ], [ -123.966000497999957, 49.208100144000042 ], [ -123.965410226999964, 49.208267296000081 ], [ -123.965000520999951, 49.208477455000079 ], [ -123.964815479999984, 49.208631538000127 ], [ -123.964693437999969, 49.208818336000014 ], [ -123.964674282999937, 49.209036779000037 ], [ -123.964772652999955, 49.209515876000069 ], [ -123.964740888999955, 49.209622949000021 ], [ -123.964725958999935, 49.209673469000037 ], [ -123.964694093999981, 49.209696133000065 ], [ -123.964554638999942, 49.209795386000025 ], [ -123.96431780099999, 49.209879152000077 ], [ -123.963915652999972, 49.209916585000066 ], [ -123.96239659299998, 49.209837464000088 ], [ -123.962271306999952, 49.209847111000059 ], [ -123.962086936999967, 49.209861336000095 ], [ -123.961719791999954, 49.209945337000129 ], [ -123.960726385999976, 49.210390280000041 ], [ -123.960147845999956, 49.210508993000133 ], [ -123.959764145999912, 49.210531448000019 ], [ -123.959310110999951, 49.210626401000077 ], [ -123.958567928999983, 49.210969932000054 ], [ -123.958070996999979, 49.211199937000124 ], [ -123.957841598999934, 49.211310095000051 ], [ -123.95774447299999, 49.211356717000086 ], [ -123.95659762899993, 49.212014819000103 ], [ -123.955243203999927, 49.211778438000067 ], [ -123.954058478999926, 49.211364266000039 ], [ -123.953756791, 49.211300022000039 ], [ -123.952920993999939, 49.211278743000058 ], [ -123.95195295299996, 49.2112090460001 ], [ -123.95125124499999, 49.211164188000083 ], [ -123.951170798999954, 49.21005673700013 ], [ -123.951495739, 49.210026063000029 ], [ -123.95171653899996, 49.210055463000067 ], [ -123.951780403999948, 49.210083416000032 ], [ -123.952103823999934, 49.210080749000099 ], [ -123.952106617999945, 49.210226192000057 ], [ -123.952284538999919, 49.210304062000056 ], [ -123.952758638999939, 49.210222263000091 ], [ -123.953201689999929, 49.210341559000057 ], [ -123.954168199999984, 49.210333578000068 ], [ -123.954164276999947, 49.210129805000044 ], [ -123.954239909999941, 49.210142606000041 ], [ -123.95428606099999, 49.210062740000126 ], [ -123.954639618999963, 49.210059819000072 ], [ -123.95470213899992, 49.210039762000122 ], [ -123.955003238999922, 49.21003336200004 ], [ -123.955089393999955, 49.210056099000063 ], [ -123.955922723999947, 49.210049206000093 ], [ -123.956206598999955, 49.210252297000089 ], [ -123.956110414999955, 49.210307798000045 ], [ -123.956445090999978, 49.210530008000063 ], [ -123.956944087999915, 49.210750694000126 ], [ -123.957177116999972, 49.21077500500008 ], [ -123.957936674999971, 49.210572248000055 ], [ -123.958234961999949, 49.210569772000028 ], [ -123.958313938999964, 49.210534563000081 ], [ -123.958700626, 49.21041051000006 ], [ -123.958699813999942, 49.210368527000057 ], [ -123.958980015999927, 49.210293725000092 ], [ -123.959293192999922, 49.21029112500004 ], [ -123.959520909999966, 49.21022838600004 ], [ -123.959520253, 49.21019442500004 ], [ -123.959911287999887, 49.210168196000026 ], [ -123.960616588999969, 49.20972961100005 ], [ -123.961544685999968, 49.209443290000053 ], [ -123.961898307999931, 49.20919 ], [ -123.961975104999979, 49.209189361000014 ], [ -123.962004737999933, 49.209170263000125 ], [ -123.962220239999951, 49.209131263000096 ], [ -123.962269880999941, 49.209081090000026 ], [ -123.962388192999981, 49.209050191000095 ], [ -123.962485797999975, 49.208942882000031 ], [ -123.962644686999937, 49.208768195000111 ], [ -123.962679927999943, 49.208643761000118 ], [ -123.963223149999919, 49.208639230000117 ], [ -123.963494692, 49.208689888000073 ], [ -123.963569062999937, 49.208636346000091 ], [ -123.963890834, 49.208633661000093 ], [ -123.9640197, 49.208575497000055 ], [ -123.964015670999942, 49.208368265000047 ], [ -123.964034152999915, 49.208362600000058 ], [ -123.964549012999939, 49.208358301000068 ], [ -123.964837144999976, 49.208250041000056 ], [ -123.964834726000035, 49.20812572100003 ], [ -123.965018932999953, 49.208084511000031 ], [ -123.965245771999932, 49.208082616000127 ], [ -123.96524482699999, 49.20803397800011 ], [ -123.966864602999934, 49.207671596000125 ], [ -123.967094490999969, 49.20748080200012 ], [ -123.967372207999944, 49.206948094000055 ], [ -123.967282094999931, 49.206898417000076 ], [ -123.96727854299999, 49.206716288000102 ], [ -123.967451190999938, 49.206714842000039 ], [ -123.967587720999944, 49.206740204000063 ], [ -123.967681235, 49.206712916000122 ], [ -123.967690348999952, 49.206712838000051 ], [ -123.96769029799998, 49.206710271000098 ], [ -123.96806608699994, 49.206600607000063 ], [ -123.968405904999912, 49.206408291000038 ], [ -123.969107, 49.206492406000088 ], [ -123.969313010999969, 49.206419689000022 ], [ -123.96949677799995, 49.206036532000091 ], [ -123.9697594, 49.206040600000044 ], [ -123.969782183999925, 49.206240905000108 ], [ -123.969879348999925, 49.206333921000073 ], [ -123.970302187999962, 49.206738699000041 ], [ -123.97082258099995, 49.207070890000075 ], [ -123.971613718999947, 49.207391908000041 ], [ -123.972007398999949, 49.207483102000069 ], [ -123.972331398999955, 49.207477409000091 ], [ -123.972745353, 49.207416708000117 ], [ -123.97382769799999, 49.207258005000021 ], [ -123.974410298999899, 49.207203188000086 ], [ -123.974875615999977, 49.20722540200012 ], [ -123.975161330999967, 49.20727850400003 ], [ -123.975556596999922, 49.207397604000072 ], [ -123.975835717999956, 49.207532668000098 ], [ -123.976127486999971, 49.207673905000028 ], [ -123.976871492, 49.208068804000035 ], [ -123.976881075, 49.208075382000132 ], [ -123.977351015999957, 49.208397396000144 ], [ -123.977836477999958, 49.208901797000117 ], [ -123.977855307999974, 49.208914925000116 ], [ -123.977911689999971, 49.208954292000108 ], [ -123.978155998999938, 49.209124816000063 ], [ -123.978499497999977, 49.209267181000016 ], [ -123.978891689999955, 49.209332194000062 ], [ -123.980486523999957, 49.209404394000067 ], [ -123.981407079999926, 49.209525198000073 ], [ -123.98343497799999, 49.210141189000048 ], [ -123.983613384, 49.210201290000057 ], [ -123.983463693999937, 49.210396597000077 ], [ -123.983257689999959, 49.210498105000049 ], [ -123.982957496000012, 49.210555518000049 ], [ -123.981091417999963, 49.210603794000122 ], [ -123.98079749599999, 49.210611396000019 ], [ -123.979326621999959, 49.21068557100012 ], [ -123.977978039, 49.21103846799999 ], [ -123.977461062000017, 49.211224167000069 ], [ -123.977184393999892, 49.211435989000059 ], [ -123.977104284999939, 49.211542543000078 ], [ -123.976988291999959, 49.212253515000079 ], [ -123.977000614999938, 49.212506710000063 ], [ -123.97646181399989, 49.21268931000003 ], [ -123.976063684999986, 49.212853795000036 ], [ -123.975753792999939, 49.213040709000019 ], [ -123.975547880999926, 49.213105291000019 ], [ -123.97496380599992, 49.213132096000038 ], [ -123.973257014999959, 49.213109093000092 ], [ -123.973127784999974, 49.213083196000099 ], [ -123.972920500999976, 49.212963205000044 ], [ -123.972592090999981, 49.212695972000112 ], [ -123.972235695, 49.212405970000169 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149275335", "BldgCostT": "101443335", "sL_LossRatio": "0.798794540957782", "sL_AssetLoss": "902063", "sL_BldgLoss": "720563", "sL_StrLoss": "361253", "sL_NStrLoss": "359310", "sL_ContLoss": "181500", "geom_point": "0101000020E6100000345FDA4759FE5EC01EA32356529A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.974875615999977, 49.20722540200012 ], [ -123.974410298999899, 49.207203188000086 ], [ -123.97382769799999, 49.207258005000021 ], [ -123.972745353, 49.207416708000117 ], [ -123.972331398999955, 49.207477409000091 ], [ -123.972007398999949, 49.207483102000069 ], [ -123.971613718999947, 49.207391908000041 ], [ -123.97082258099995, 49.207070890000075 ], [ -123.970302187999962, 49.206738699000041 ], [ -123.969879348999925, 49.206333921000073 ], [ -123.969782183999925, 49.206240905000108 ], [ -123.9697594, 49.206040600000044 ], [ -123.970224500000015, 49.205065089000072 ], [ -123.970392499999932, 49.204264182000038 ], [ -123.971287048999955, 49.204272365000037 ], [ -123.971300770999932, 49.204272478000092 ], [ -123.972907215999939, 49.204287150000049 ], [ -123.97354971799993, 49.204293005000061 ], [ -123.974824709999893, 49.204302508000083 ], [ -123.974880902999985, 49.203013300000087 ], [ -123.976160182999962, 49.203018400000147 ], [ -123.977270406999978, 49.203033790000056 ], [ -123.977259112999889, 49.204206894000073 ], [ -123.977258094999925, 49.204323911000124 ], [ -123.977231901999986, 49.205303984000082 ], [ -123.977234408999976, 49.205307540000028 ], [ -123.977709908999927, 49.206169299000052 ], [ -123.977705003999944, 49.206310786000081 ], [ -123.977699205999954, 49.206477947000103 ], [ -123.977351015999957, 49.208397396000144 ], [ -123.976881075, 49.208075382000132 ], [ -123.976871492, 49.208068804000035 ], [ -123.976127486999971, 49.207673905000028 ], [ -123.975835717999956, 49.207532668000098 ], [ -123.975556596999922, 49.207397604000072 ], [ -123.975161330999967, 49.20727850400003 ], [ -123.974875615999977, 49.20722540200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100770750", "BldgCostT": "65925000", "sL_LossRatio": "0.696070762902336", "sL_AssetLoss": "1959897", "sL_BldgLoss": "1364227", "sL_StrLoss": "562927", "sL_NStrLoss": "801300", "sL_ContLoss": "595670", "geom_point": "0101000020E61000007231ED3851FE5EC034D108B2F5994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.970033697999924, 49.203273588000059 ], [ -123.969655606999964, 49.201900434000031 ], [ -123.9696438499999, 49.201299164000034 ], [ -123.969474145000021, 49.201300588000073 ], [ -123.969099960000023, 49.200485240000084 ], [ -123.969366708000038, 49.200875342000117 ], [ -123.969416667999923, 49.200952893000085 ], [ -123.969592792999947, 49.20094089100008 ], [ -123.969990109999955, 49.200855598000054 ], [ -123.971224681999956, 49.200594295000094 ], [ -123.972797212999978, 49.20022770500001 ], [ -123.973287239999962, 49.200580658000028 ], [ -123.97292429099997, 49.200615485000078 ], [ -123.973122094999965, 49.200796602000054 ], [ -123.974393502999959, 49.20167241000005 ], [ -123.974667600999936, 49.201833306000069 ], [ -123.974950498999974, 49.201952007000038 ], [ -123.975263701999964, 49.202034503000057 ], [ -123.975650388999924, 49.202096705000045 ], [ -123.976165903, 49.202100895000072 ], [ -123.978674085999955, 49.202132701000018 ], [ -123.978975080999959, 49.202685798000033 ], [ -123.97823020699991, 49.203257094000072 ], [ -123.978189621999945, 49.203466198000086 ], [ -123.978290601000012, 49.203604005000045 ], [ -123.979223509999912, 49.204288783000095 ], [ -123.980180655999931, 49.205036643000035 ], [ -123.980255485999962, 49.205095118000038 ], [ -123.979280880999937, 49.205649494000056 ], [ -123.97759748199995, 49.204404094000068 ], [ -123.977259112999889, 49.204206894000073 ], [ -123.977270406999978, 49.203033790000056 ], [ -123.976160182999962, 49.203018400000147 ], [ -123.974880902999985, 49.203013300000087 ], [ -123.974824709999893, 49.204302508000083 ], [ -123.97354971799993, 49.204293005000061 ], [ -123.972907215999939, 49.204287150000049 ], [ -123.971300770999932, 49.204272478000092 ], [ -123.971287048999955, 49.204272365000037 ], [ -123.970392499999932, 49.204264182000038 ], [ -123.970224500000015, 49.205065089000072 ], [ -123.9697594, 49.206040600000044 ], [ -123.96949677799995, 49.206036532000091 ], [ -123.96994550799991, 49.205100900000048 ], [ -123.970033697999924, 49.203273588000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90006832", "BldgCostT": "61313332", "sL_LossRatio": "0.768938279829762", "sL_AssetLoss": "846579", "sL_BldgLoss": "650967", "sL_StrLoss": "323582", "sL_NStrLoss": "327385", "sL_ContLoss": "195612", "geom_point": "0101000020E61000009E7F603365FE5EC091E8E94C6F994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.972619818999974, 49.195178298000044 ], [ -123.971997012000017, 49.193927499000075 ], [ -123.97437340299993, 49.194992409000093 ], [ -123.97470968599994, 49.195161139000056 ], [ -123.97617821299994, 49.195898002000028 ], [ -123.976217120999976, 49.199318613000088 ], [ -123.977525306999951, 49.199697995000051 ], [ -123.97752863, 49.199999029000018 ], [ -123.977536109999946, 49.200677789000103 ], [ -123.977591001999926, 49.200835482000102 ], [ -123.977735199, 49.200986806000074 ], [ -123.977884003999975, 49.201066195000109 ], [ -123.978464305999978, 49.201249006000076 ], [ -123.978577620999886, 49.201325004000061 ], [ -123.978656800999929, 49.201428196000016 ], [ -123.978707204000017, 49.201594009000111 ], [ -123.978674085999955, 49.202132701000018 ], [ -123.976165903, 49.202100895000072 ], [ -123.975650388999924, 49.202096705000045 ], [ -123.975263701999964, 49.202034503000057 ], [ -123.974950498999974, 49.201952007000038 ], [ -123.974667600999936, 49.201833306000069 ], [ -123.974393502999959, 49.20167241000005 ], [ -123.973122094999965, 49.200796602000054 ], [ -123.97292429099997, 49.200615485000078 ], [ -123.973287239999962, 49.200580658000028 ], [ -123.972797212999978, 49.20022770500001 ], [ -123.972803767999949, 49.200001768000092 ], [ -123.972819240999968, 49.199470879000067 ], [ -123.972848040999978, 49.198481254000043 ], [ -123.97285769199999, 49.198149688000044 ], [ -123.972835163999918, 49.197520090000047 ], [ -123.972769298999978, 49.195679001000045 ], [ -123.972619818999974, 49.195178298000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100657249", "BldgCostT": "65734999", "sL_LossRatio": "0.764925636422081", "sL_AssetLoss": "765294", "sL_BldgLoss": "585393", "sL_StrLoss": "312196", "sL_NStrLoss": "273197", "sL_ContLoss": "179901", "geom_point": "0101000020E610000035A2201D43FE5EC0BC38E81AFF984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.97437340299993, 49.194992409000093 ], [ -123.971997012000017, 49.193927499000075 ], [ -123.972619818999974, 49.195178298000044 ], [ -123.972769298999978, 49.195679001000045 ], [ -123.972835163999918, 49.197520090000047 ], [ -123.97285769199999, 49.198149688000044 ], [ -123.971253475999916, 49.197579292000107 ], [ -123.970708004999977, 49.197384388000017 ], [ -123.96949271699998, 49.196953591000089 ], [ -123.969642399999927, 49.196822298000029 ], [ -123.969794510999947, 49.196605415000093 ], [ -123.96984621799993, 49.196456898000108 ], [ -123.96985010899999, 49.196211198000086 ], [ -123.96968251, 49.195717296000105 ], [ -123.96934709199995, 49.195106660000064 ], [ -123.968999343999926, 49.19481294800007 ], [ -123.967935946999958, 49.194203113000114 ], [ -123.968337564999956, 49.193861303000048 ], [ -123.96837071899995, 49.193761066000064 ], [ -123.968795346999954, 49.193425988000079 ], [ -123.97073980299993, 49.191851694000079 ], [ -123.972139308999957, 49.192550706000091 ], [ -123.975377407999943, 49.194199099000073 ], [ -123.978480095999942, 49.195780907000049 ], [ -123.977530098999978, 49.196594211000047 ], [ -123.977434282999965, 49.196715799000089 ], [ -123.977525306999951, 49.199697995000051 ], [ -123.976217120999976, 49.199318613000088 ], [ -123.97617821299994, 49.195898002000028 ], [ -123.97470968599994, 49.195161139000056 ], [ -123.97437340299993, 49.194992409000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121798833", "BldgCostT": "83493333", "sL_LossRatio": "0.85066593874046", "sL_AssetLoss": "439605", "sL_BldgLoss": "373957", "sL_StrLoss": "203290", "sL_NStrLoss": "170667", "sL_ContLoss": "65648", "geom_point": "0101000020E610000091A33141EAFD5EC072D8F98E4C994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.968769383999984, 49.198698270000108 ], [ -123.96849072899991, 49.198610193000121 ], [ -123.967944141999951, 49.198614775000067 ], [ -123.967940094999932, 49.198407506000123 ], [ -123.96782026699999, 49.198345949000071 ], [ -123.96752713699999, 49.198348406000036 ], [ -123.967524722999897, 49.198224604000124 ], [ -123.967131938999898, 49.198086463000067 ], [ -123.967123065999942, 49.19808192400005 ], [ -123.966698405999963, 49.198085479000078 ], [ -123.966694057999945, 49.197862509000068 ], [ -123.966686538999951, 49.197858663000027 ], [ -123.966524455999888, 49.197817071000024 ], [ -123.966075572999955, 49.197820827000022 ], [ -123.966041521999927, 49.197793304000101 ], [ -123.965868037999911, 49.197738245000089 ], [ -123.965864424999964, 49.197552728000076 ], [ -123.965452693999936, 49.197556171000059 ], [ -123.965448596999948, 49.197345635000111 ], [ -123.965305319999942, 49.197287538000083 ], [ -123.965035714999942, 49.197289791000131 ], [ -123.965033525999957, 49.197177329000048 ], [ -123.964653229999911, 49.197023123000079 ], [ -123.964381890999974, 49.197025388000036 ], [ -123.964204583999944, 49.196901928000081 ], [ -123.96420339399999, 49.19684071300005 ], [ -123.96400114799998, 49.196758702000054 ], [ -123.963958948999931, 49.196759054000061 ], [ -123.963788367999911, 49.196674337000054 ], [ -123.963787559999972, 49.19663270500007 ], [ -123.963551028999959, 49.196492594000041 ], [ -123.963424552999967, 49.196493649000068 ], [ -123.963372566999979, 49.196467830000088 ], [ -123.963370976999926, 49.196385936000098 ], [ -123.963175538999963, 49.196270162000133 ], [ -123.963086945999947, 49.196226599000113 ], [ -123.962956117999965, 49.196227691000047 ], [ -123.962954833999916, 49.196161638000028 ], [ -123.96257133899999, 49.195973063000054 ], [ -123.962554163999982, 49.195961177000115 ], [ -123.962539161, 49.195961302000121 ], [ -123.962538953999982, 49.195950652000136 ], [ -123.962168834999943, 49.195694523000064 ], [ -123.962122208, 49.19569491200005 ], [ -123.962121567999986, 49.195661812000047 ], [ -123.961783514999922, 49.195427868000145 ], [ -123.961705262999914, 49.195428520000107 ], [ -123.961704184999959, 49.195372969000132 ], [ -123.961463438999942, 49.195206363000061 ], [ -123.96134559799998, 49.195161649000077 ], [ -123.960876607999978, 49.19516555200012 ], [ -123.960873057999947, 49.194982347000071 ], [ -123.960649650999969, 49.194897575000056 ], [ -123.959819014999979, 49.194904482000126 ], [ -123.959635072999944, 49.194844981000081 ], [ -123.959631033999941, 49.194636179000092 ], [ -123.959154824, 49.194640135000022 ], [ -123.958925173999958, 49.19452071400007 ], [ -123.958864133999938, 49.194488971000062 ], [ -123.958801902999966, 49.194347346000086 ], [ -123.958798318, 49.19416178100002 ], [ -123.958703124999957, 49.194104156000066 ], [ -123.95863196, 49.194104747000104 ], [ -123.958278071999985, 49.193770122000068 ], [ -123.958679417999988, 49.193294290000054 ], [ -123.959637794999963, 49.193888694000108 ], [ -123.960219904999946, 49.193496302000028 ], [ -123.960468000999938, 49.193404685000104 ], [ -123.960666091999954, 49.19338949500014 ], [ -123.960859990999907, 49.193438203000078 ], [ -123.961441808999965, 49.193679707000051 ], [ -123.9614625899999, 49.193767491000074 ], [ -123.960930111999943, 49.194403002000044 ], [ -123.961817821999915, 49.194735891000072 ], [ -123.962452102999947, 49.194716397000029 ], [ -123.96252690299994, 49.194887104000017 ], [ -123.962651618999928, 49.195044295000116 ], [ -123.962849192, 49.195199287000051 ], [ -123.963359293999972, 49.195449394000015 ], [ -123.966920793999961, 49.197191489000076 ], [ -123.967577089, 49.197486598000069 ], [ -123.967896482999905, 49.197552113000015 ], [ -123.968278174999952, 49.197571899000081 ], [ -123.96891361199999, 49.197403688000065 ], [ -123.96925601, 49.197161683000033 ], [ -123.96949271699998, 49.196953591000089 ], [ -123.970708004999977, 49.197384388000017 ], [ -123.971253475999916, 49.197579292000107 ], [ -123.97285769199999, 49.198149688000044 ], [ -123.972848040999978, 49.198481254000043 ], [ -123.972819240999968, 49.199470879000067 ], [ -123.972803767999949, 49.200001768000092 ], [ -123.972797212999978, 49.20022770500001 ], [ -123.971224681999956, 49.200594295000094 ], [ -123.969990109999955, 49.200855598000054 ], [ -123.969592792999947, 49.20094089100008 ], [ -123.969416667999923, 49.200952893000085 ], [ -123.969366708000038, 49.200875342000117 ], [ -123.969099960000023, 49.200485240000084 ], [ -123.969099204000017, 49.200483592000069 ], [ -123.96832419499998, 49.199455305000129 ], [ -123.967956090000015, 49.199227102000044 ], [ -123.967949405999917, 49.198884596000042 ], [ -123.968772889999968, 49.198877691000106 ], [ -123.968769383999984, 49.198698270000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105377311", "BldgCostT": "70263190", "sL_LossRatio": "0.755693374344999", "sL_AssetLoss": "998090", "sL_BldgLoss": "754250", "sL_StrLoss": "387090", "sL_NStrLoss": "367160", "sL_ContLoss": "243840", "geom_point": "0101000020E6100000C12C7AC8D0FD5EC08B9398F3CE984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.96252690299994, 49.194887104000017 ], [ -123.962452102999947, 49.194716397000029 ], [ -123.961817821999915, 49.194735891000072 ], [ -123.960930111999943, 49.194403002000044 ], [ -123.9614625899999, 49.193767491000074 ], [ -123.961441808999965, 49.193679707000051 ], [ -123.960859990999907, 49.193438203000078 ], [ -123.960666091999954, 49.19338949500014 ], [ -123.960468000999938, 49.193404685000104 ], [ -123.960219904999946, 49.193496302000028 ], [ -123.959637794999963, 49.193888694000108 ], [ -123.958679417999988, 49.193294290000054 ], [ -123.958278071999985, 49.193770122000068 ], [ -123.95863196, 49.194104747000104 ], [ -123.958312371000019, 49.194107399000103 ], [ -123.95757072399995, 49.193519203000086 ], [ -123.957524103999972, 49.193194484000081 ], [ -123.957616678999969, 49.193023592000038 ], [ -123.958752398999977, 49.192807101000042 ], [ -123.959261293999973, 49.192911092000088 ], [ -123.959836407999958, 49.192852696000088 ], [ -123.960513202999906, 49.19297230100004 ], [ -123.961017900999977, 49.192859792000021 ], [ -123.962200262999914, 49.192815897000045 ], [ -123.962553199999959, 49.192802805000099 ], [ -123.963943284, 49.192925298000041 ], [ -123.964143985999911, 49.192708906000057 ], [ -123.964330798999981, 49.191707588 ], [ -123.965006291999956, 49.191153603000039 ], [ -123.965662679, 49.190889836000061 ], [ -123.965647554999933, 49.190874547000057 ], [ -123.96554295299994, 49.190768881000075 ], [ -123.965450874999931, 49.19067589100009 ], [ -123.965687370999945, 49.190189597000057 ], [ -123.965897396999978, 49.190246698000117 ], [ -123.96812639299999, 49.190725501000102 ], [ -123.96923147699998, 49.191005688000146 ], [ -123.969935587999956, 49.191271096000044 ], [ -123.97152581099999, 49.192062802000159 ], [ -123.97073980299993, 49.191851694000079 ], [ -123.968795346999954, 49.193425988000079 ], [ -123.96837071899995, 49.193761066000064 ], [ -123.968337564999956, 49.193861303000048 ], [ -123.967935946999958, 49.194203113000114 ], [ -123.968999343999926, 49.19481294800007 ], [ -123.96934709199995, 49.195106660000064 ], [ -123.96968251, 49.195717296000105 ], [ -123.96985010899999, 49.196211198000086 ], [ -123.96984621799993, 49.196456898000108 ], [ -123.969794510999947, 49.196605415000093 ], [ -123.969642399999927, 49.196822298000029 ], [ -123.96949271699998, 49.196953591000089 ], [ -123.96925601, 49.197161683000033 ], [ -123.96891361199999, 49.197403688000065 ], [ -123.968278174999952, 49.197571899000081 ], [ -123.967896482999905, 49.197552113000015 ], [ -123.967577089, 49.197486598000069 ], [ -123.966920793999961, 49.197191489000076 ], [ -123.963359293999972, 49.195449394000015 ], [ -123.962849192, 49.195199287000051 ], [ -123.962651618999928, 49.195044295000116 ], [ -123.96252690299994, 49.194887104000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93014144", "BldgCostT": "62056523", "sL_LossRatio": "0.772395269652538", "sL_AssetLoss": "809412", "sL_BldgLoss": "625186", "sL_StrLoss": "312017", "sL_NStrLoss": "313169", "sL_ContLoss": "184226", "geom_point": "0101000020E6100000DB7A4454FAFD5EC061C646E632984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.971625401999987, 49.191980889000014 ], [ -123.971271558999931, 49.191808125000115 ], [ -123.970023783, 49.191198893000092 ], [ -123.969276498999989, 49.190919218000083 ], [ -123.968891543999945, 49.190815637000085 ], [ -123.9681787909999, 49.190623908000056 ], [ -123.965967900999928, 49.190140903000049 ], [ -123.965897396999978, 49.190246698000117 ], [ -123.965687370999945, 49.190189597000057 ], [ -123.965113389999914, 49.1900230090001 ], [ -123.964395501999917, 49.189728502000023 ], [ -123.963810801999969, 49.189460793000137 ], [ -123.96238327899999, 49.188560406000121 ], [ -123.962464219999958, 49.188434979000057 ], [ -123.962574407999952, 49.188266892000037 ], [ -123.962581374999971, 49.188216027000131 ], [ -123.962614802999965, 49.187972316000078 ], [ -123.965509891999915, 49.188010788000042 ], [ -123.965544123999962, 49.187136197000036 ], [ -123.966172560999951, 49.187147154000044 ], [ -123.967273897999931, 49.187166338000061 ], [ -123.968044215999939, 49.187179747000108 ], [ -123.968057907999963, 49.187179988000089 ], [ -123.968605777999983, 49.187190290000053 ], [ -123.968770299999989, 49.187190695 ], [ -123.969441279999955, 49.187199737000107 ], [ -123.969582563999921, 49.187201651000059 ], [ -123.972003401999956, 49.187234209000088 ], [ -123.972277888999969, 49.187237902000099 ], [ -123.972247277999898, 49.188190894000087 ], [ -123.972221232999956, 49.189072006000103 ], [ -123.972210542999932, 49.189456719000106 ], [ -123.972197393999949, 49.18993149700006 ], [ -123.972167998999979, 49.190919598000072 ], [ -123.97214071599997, 49.191891604000048 ], [ -123.972020043, 49.191889333000056 ], [ -123.971842428999963, 49.191885973000105 ], [ -123.971769391999956, 49.191884604000059 ], [ -123.971625401999987, 49.191980889000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132816246", "BldgCostT": "82624078", "sL_LossRatio": "0.723709481917292", "sL_AssetLoss": "1151708", "sL_BldgLoss": "833502", "sL_StrLoss": "400410", "sL_NStrLoss": "433092", "sL_ContLoss": "318206", "geom_point": "0101000020E6100000593C3FD65DFE5EC014B0EB5117984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.972277888999969, 49.187237902000099 ], [ -123.972304515999966, 49.186316021000088 ], [ -123.972306529999926, 49.186246268000076 ], [ -123.972312704999979, 49.186031906000068 ], [ -123.972333394, 49.185398409000115 ], [ -123.973232605999911, 49.185400892000061 ], [ -123.973452610999985, 49.185449098000085 ], [ -123.97366558, 49.185531486000038 ], [ -123.973893896999982, 49.185704216000019 ], [ -123.973517301999919, 49.186009502000012 ], [ -123.973469186999978, 49.18610770100004 ], [ -123.973451119999964, 49.18664849600011 ], [ -123.974372199999934, 49.186620794000056 ], [ -123.974904686999963, 49.186261600000122 ], [ -123.975063483000014, 49.186234899000056 ], [ -123.975904090999961, 49.186230008000088 ], [ -123.976756991999963, 49.18622438700006 ], [ -123.976967818999967, 49.186264400000077 ], [ -123.977119705999911, 49.18633389700009 ], [ -123.977438719, 49.186626194000056 ], [ -123.978331516999987, 49.186681690000107 ], [ -123.978319786999975, 49.187077694999985 ], [ -123.978294724999927, 49.187130039000166 ], [ -123.978271490999973, 49.187178492000065 ], [ -123.97817458599998, 49.187263088000087 ], [ -123.977852490999965, 49.187450695000081 ], [ -123.977746212999989, 49.187593701000019 ], [ -123.977704690999929, 49.187759515000074 ], [ -123.97768731799998, 49.188253498000087 ], [ -123.975615822999913, 49.188253296000035 ], [ -123.975618620999967, 49.189920091000083 ], [ -123.975617893999967, 49.190912438000048 ], [ -123.972167998999979, 49.190919598000072 ], [ -123.972197393999949, 49.18993149700006 ], [ -123.972210542999932, 49.189456719000106 ], [ -123.972221232999956, 49.189072006000103 ], [ -123.972247277999898, 49.188190894000087 ], [ -123.972277888999969, 49.187237902000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4503000", "BldgCostT": "2370000", "sL_LossRatio": "0.574008024966563", "sL_AssetLoss": "44860", "sL_BldgLoss": "25750", "sL_StrLoss": "13360", "sL_NStrLoss": "12390", "sL_ContLoss": "19110", "geom_point": "0101000020E61000005C60EA4207FE5EC069CC1C79BD974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.970854823999957, 49.183249903000039 ], [ -123.972400797999939, 49.183162006000053 ], [ -123.972355807999989, 49.184601892000039 ], [ -123.972333394, 49.185398409000115 ], [ -123.972312704999979, 49.186031906000068 ], [ -123.972306529999926, 49.186246268000076 ], [ -123.972304515999966, 49.186316021000088 ], [ -123.972277888999969, 49.187237902000099 ], [ -123.972003401999956, 49.187234209000088 ], [ -123.969582563999921, 49.187201651000059 ], [ -123.969441279999955, 49.187199737000107 ], [ -123.968770299999989, 49.187190695 ], [ -123.968605777999983, 49.187190290000053 ], [ -123.968057907999963, 49.187179988000089 ], [ -123.968044215999939, 49.187179747000108 ], [ -123.967273897999931, 49.187166338000061 ], [ -123.966172560999951, 49.187147154000044 ], [ -123.965544123999962, 49.187136197000036 ], [ -123.965502090999919, 49.186725751000033 ], [ -123.965480719999988, 49.186516999000119 ], [ -123.965459586999941, 49.18631059900008 ], [ -123.965422051999951, 49.185934152000058 ], [ -123.965374821999958, 49.185460800000094 ], [ -123.965288203999961, 49.184588384000079 ], [ -123.966056001999931, 49.184522789000042 ], [ -123.966989996999956, 49.184387285000099 ], [ -123.967730010999986, 49.184238308000019 ], [ -123.968518694999943, 49.184006406000037 ], [ -123.969679309999933, 49.183579008000081 ], [ -123.970373382, 49.183348891000016 ], [ -123.970854823999957, 49.183249903000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "293555334", "BldgCostT": "201443334", "sL_LossRatio": "0.823594158622455", "sL_AssetLoss": "1457259", "sL_BldgLoss": "1200190", "sL_StrLoss": "587310", "sL_NStrLoss": "612880", "sL_ContLoss": "257069", "geom_point": "0101000020E610000084B7C5048EFE5EC04F6ECACBD0974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.976967818999967, 49.186264400000077 ], [ -123.976756991999963, 49.18622438700006 ], [ -123.975904090999961, 49.186230008000088 ], [ -123.975063483000014, 49.186234899000056 ], [ -123.974904686999963, 49.186261600000122 ], [ -123.974372199999934, 49.186620794000056 ], [ -123.973451119999964, 49.18664849600011 ], [ -123.973469186999978, 49.18610770100004 ], [ -123.973517301999919, 49.186009502000012 ], [ -123.973893896999982, 49.185704216000019 ], [ -123.97366558, 49.185531486000038 ], [ -123.973452610999985, 49.185449098000085 ], [ -123.973232605999911, 49.185400892000061 ], [ -123.972333394, 49.185398409000115 ], [ -123.972355807999989, 49.184601892000039 ], [ -123.973332995999954, 49.184607437000068 ], [ -123.976264597999887, 49.184624 ], [ -123.978471189999979, 49.184634813000081 ], [ -123.979039989999976, 49.184639195000102 ], [ -123.979250843999964, 49.184772629000115 ], [ -123.980254104999943, 49.185407601000129 ], [ -123.980650490999935, 49.185655413000134 ], [ -123.980775806999986, 49.185768488000065 ], [ -123.980808544999917, 49.185832825 ], [ -123.980827597999934, 49.185870307000052 ], [ -123.980834580999897, 49.186150503000064 ], [ -123.98080449599999, 49.187475401000057 ], [ -123.980788118999925, 49.188262104000074 ], [ -123.97889891599999, 49.188261793000031 ], [ -123.97768731799998, 49.188253498000087 ], [ -123.977704690999929, 49.187759515000074 ], [ -123.977746212999989, 49.187593701000019 ], [ -123.977852490999965, 49.187450695000081 ], [ -123.97817458599998, 49.187263088000087 ], [ -123.978271490999973, 49.187178492000065 ], [ -123.978294724999927, 49.187130039000166 ], [ -123.978319786999975, 49.187077694999985 ], [ -123.978331516999987, 49.186681690000107 ], [ -123.977438719, 49.186626194000056 ], [ -123.977119705999911, 49.18633389700009 ], [ -123.976967818999967, 49.186264400000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151374970", "BldgCostT": "100635413", "sL_LossRatio": "0.782957282402683", "sL_AssetLoss": "857375", "sL_BldgLoss": "671288", "sL_StrLoss": "335700", "sL_NStrLoss": "335588", "sL_ContLoss": "186087", "geom_point": "0101000020E61000005EE21A02B4FE5EC00B51E0F8B5974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.979250843999964, 49.184772629000115 ], [ -123.979039989999976, 49.184639195000102 ], [ -123.978471189999979, 49.184634813000081 ], [ -123.976264597999887, 49.184624 ], [ -123.973332995999954, 49.184607437000068 ], [ -123.972355807999989, 49.184601892000039 ], [ -123.972400797999939, 49.183162006000053 ], [ -123.97250524899998, 49.183163182000058 ], [ -123.973441553, 49.183173740000079 ], [ -123.973713374999988, 49.183176797000044 ], [ -123.974006691999989, 49.183210195000115 ], [ -123.974255881999923, 49.183279695000074 ], [ -123.97451087899999, 49.183387711000115 ], [ -123.975029895999967, 49.183607585000047 ], [ -123.975570735999952, 49.183716779000065 ], [ -123.976364634, 49.183743442000058 ], [ -123.976651525999941, 49.183762184000109 ], [ -123.977025526999938, 49.183786615000102 ], [ -123.977216246999944, 49.18379906900001 ], [ -123.977591051999951, 49.183754767000096 ], [ -123.978032964999912, 49.183547953000065 ], [ -123.978188550999917, 49.183475143000088 ], [ -123.978280522999938, 49.183445087000109 ], [ -123.978436065999972, 49.183394233000101 ], [ -123.978777715999954, 49.183355622000128 ], [ -123.979139687999961, 49.183356850000038 ], [ -123.979194571, 49.183357000000129 ], [ -123.979653549999938, 49.183358538000036 ], [ -123.979919600999906, 49.183387843000105 ], [ -123.98021719499998, 49.183479862000176 ], [ -123.980424589999942, 49.183596331000075 ], [ -123.980502659999956, 49.183663630000055 ], [ -123.98078532199996, 49.183907427000101 ], [ -123.981121273999975, 49.184063214000012 ], [ -123.981321292999951, 49.184097582000042 ], [ -123.98158562699993, 49.184103422000113 ], [ -123.981743824999981, 49.184091109000114 ], [ -123.981933622999961, 49.184045111000088 ], [ -123.982449894999903, 49.183836886000051 ], [ -123.983161592999977, 49.184431008000061 ], [ -123.983400439999926, 49.184677286000046 ], [ -123.983479108, 49.184758409000061 ], [ -123.983527830999961, 49.184837077000054 ], [ -123.983660083999936, 49.185050684 ], [ -123.983899380999986, 49.185437094000058 ], [ -123.984155422999947, 49.185854305000113 ], [ -123.984404036999962, 49.186175332000047 ], [ -123.984516296, 49.186320309000045 ], [ -123.984257889999952, 49.186337999000067 ], [ -123.984056008999957, 49.186408 ], [ -123.983769609999953, 49.186596304000048 ], [ -123.983661109999957, 49.186725708000033 ], [ -123.983636507999947, 49.18827410799999 ], [ -123.981226500999966, 49.188268588000028 ], [ -123.980788118999925, 49.188262104000074 ], [ -123.98080449599999, 49.187475401000057 ], [ -123.980834580999897, 49.186150503000064 ], [ -123.980827597999934, 49.185870307000052 ], [ -123.980808544999917, 49.185832825 ], [ -123.980775806999986, 49.185768488000065 ], [ -123.980650490999935, 49.185655413000134 ], [ -123.980254104999943, 49.185407601000129 ], [ -123.979250843999964, 49.184772629000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92403533", "BldgCostT": "60735546", "sL_LossRatio": "0.734805289336407", "sL_AssetLoss": "906730", "sL_BldgLoss": "666270", "sL_StrLoss": "326400", "sL_NStrLoss": "339870", "sL_ContLoss": "240460", "geom_point": "0101000020E61000005390760EABFE5EC0C62DDE763E984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.976242415999963, 49.191023229000095 ], [ -123.975617893999967, 49.190912438000048 ], [ -123.975618620999967, 49.189920091000083 ], [ -123.975615822999913, 49.188253296000035 ], [ -123.97768731799998, 49.188253498000087 ], [ -123.97889891599999, 49.188261793000031 ], [ -123.980788118999925, 49.188262104000074 ], [ -123.981226500999966, 49.188268588000028 ], [ -123.981199921, 49.18897759500009 ], [ -123.982276022999955, 49.188978893000098 ], [ -123.982971402999937, 49.189068402000032 ], [ -123.98562539699999, 49.18904060600007 ], [ -123.985614208999976, 49.189742803000051 ], [ -123.984582098999923, 49.18976848700003 ], [ -123.98368428, 49.18985710500008 ], [ -123.983320900999971, 49.18985929000015 ], [ -123.982387221999915, 49.189796798000032 ], [ -123.9811731, 49.189750581000091 ], [ -123.979776905999984, 49.189764106000027 ], [ -123.979513307999966, 49.189766088000056 ], [ -123.979365410999932, 49.189767198000055 ], [ -123.979253928999967, 49.189786253000129 ], [ -123.978426147999969, 49.189927820000023 ], [ -123.978292631999921, 49.190097317000031 ], [ -123.978263313999904, 49.190456047000076 ], [ -123.978226275999972, 49.190897470000046 ], [ -123.978163338999934, 49.190989941000041 ], [ -123.97799046099999, 49.191055141000078 ], [ -123.977574968999946, 49.191047334000075 ], [ -123.977031524999958, 49.191037133000016 ], [ -123.976242415999963, 49.191023229000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "320232247", "BldgCostT": "180039609", "sL_LossRatio": "0.609370276934947", "sL_AssetLoss": "3097167.8", "sL_BldgLoss": "1887322", "sL_StrLoss": "696470", "sL_NStrLoss": "1190852", "sL_ContLoss": "1209845.8", "geom_point": "0101000020E6100000F3CF3DD2BDFE5EC0855E26EDBA984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.97152581099999, 49.192062802000159 ], [ -123.969935587999956, 49.191271096000044 ], [ -123.96923147699998, 49.191005688000146 ], [ -123.96812639299999, 49.190725501000102 ], [ -123.965897396999978, 49.190246698000117 ], [ -123.965967900999928, 49.190140903000049 ], [ -123.9681787909999, 49.190623908000056 ], [ -123.968891543999945, 49.190815637000085 ], [ -123.969276498999989, 49.190919218000083 ], [ -123.970023783, 49.191198893000092 ], [ -123.971271558999931, 49.191808125000115 ], [ -123.971625401999987, 49.191980889000014 ], [ -123.971769391999956, 49.191884604000059 ], [ -123.971842428999963, 49.191885973000105 ], [ -123.972020043, 49.191889333000056 ], [ -123.97214071599997, 49.191891604000048 ], [ -123.972167998999979, 49.190919598000072 ], [ -123.975617893999967, 49.190912438000048 ], [ -123.976242415999963, 49.191023229000095 ], [ -123.977031524999958, 49.191037133000016 ], [ -123.977574968999946, 49.191047334000075 ], [ -123.97799046099999, 49.191055141000078 ], [ -123.978163338999934, 49.190989941000041 ], [ -123.978226275999972, 49.190897470000046 ], [ -123.978263313999904, 49.190456047000076 ], [ -123.978292631999921, 49.190097317000031 ], [ -123.978426147999969, 49.189927820000023 ], [ -123.979253928999967, 49.189786253000129 ], [ -123.979365410999932, 49.189767198000055 ], [ -123.979513307999966, 49.189766088000056 ], [ -123.979776905999984, 49.189764106000027 ], [ -123.9811731, 49.189750581000091 ], [ -123.982387221999915, 49.189796798000032 ], [ -123.983320900999971, 49.18985929000015 ], [ -123.98368428, 49.18985710500008 ], [ -123.984582098999923, 49.18976848700003 ], [ -123.985614208999976, 49.189742803000051 ], [ -123.985610500999925, 49.191029518000093 ], [ -123.985600215, 49.191565389000097 ], [ -123.985591890999928, 49.191997089000012 ], [ -123.985581995999937, 49.192479592000026 ], [ -123.985554580999946, 49.193808102000048 ], [ -123.985551800999957, 49.193903494000111 ], [ -123.985343082999933, 49.194343872000054 ], [ -123.985339008999944, 49.194352487000131 ], [ -123.985317396999974, 49.194470886000026 ], [ -123.98531980599995, 49.194571685000064 ], [ -123.985358773999934, 49.196205052000074 ], [ -123.98537903899998, 49.196687181000051 ], [ -123.985387079999938, 49.196880914000147 ], [ -123.985400494999908, 49.197457445000076 ], [ -123.985365810999909, 49.197626087000032 ], [ -123.985264803999954, 49.197701807000072 ], [ -123.985000092999925, 49.197900190000063 ], [ -123.984811466999972, 49.198042575000024 ], [ -123.98459608499995, 49.19820511000011 ], [ -123.984502593999949, 49.198305100000077 ], [ -123.983330402999982, 49.197825697000056 ], [ -123.981511472999927, 49.197022138000122 ], [ -123.979771794999976, 49.196253495000065 ], [ -123.978490518999962, 49.195602442000116 ], [ -123.972196957999941, 49.192403940000105 ], [ -123.97152581099999, 49.192062802000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "258271001", "BldgCostT": "169990001", "sL_LossRatio": "0.748830284218094", "sL_AssetLoss": "1663652", "sL_BldgLoss": "1245793", "sL_StrLoss": "641936", "sL_NStrLoss": "603857", "sL_ContLoss": "417859", "geom_point": "0101000020E61000001715CCF3FBFE5EC05FA4C46CD1994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.98748492, 49.206463789000033 ], [ -123.986659757999959, 49.206275578000096 ], [ -123.985464345000011, 49.206264971000074 ], [ -123.984325669999976, 49.206245816000084 ], [ -123.98427072599999, 49.206244886000022 ], [ -123.983552482, 49.206232797000069 ], [ -123.982280483999915, 49.206216190000049 ], [ -123.979576889, 49.206192605000069 ], [ -123.979577716999984, 49.206015196000116 ], [ -123.979465693999899, 49.205816787000046 ], [ -123.979280880999937, 49.205649494000056 ], [ -123.980255485999962, 49.205095118000038 ], [ -123.980180655999931, 49.205036643000035 ], [ -123.979223509999912, 49.204288783000095 ], [ -123.978290601000012, 49.203604005000045 ], [ -123.978189621999945, 49.203466198000086 ], [ -123.97823020699991, 49.203257094000072 ], [ -123.978975080999959, 49.202685798000033 ], [ -123.978674085999955, 49.202132701000018 ], [ -123.978707204000017, 49.201594009000111 ], [ -123.978656800999929, 49.201428196000016 ], [ -123.978577620999886, 49.201325004000061 ], [ -123.978464305999978, 49.201249006000076 ], [ -123.977884003999975, 49.201066195000109 ], [ -123.977735199, 49.200986806000074 ], [ -123.977591001999926, 49.200835482000102 ], [ -123.977536109999946, 49.200677789000103 ], [ -123.97752863, 49.199999029000018 ], [ -123.977525306999951, 49.199697995000051 ], [ -123.977434282999965, 49.196715799000089 ], [ -123.977530098999978, 49.196594211000047 ], [ -123.978480095999942, 49.195780907000049 ], [ -123.975377407999943, 49.194199099000073 ], [ -123.972139308999957, 49.192550706000091 ], [ -123.97073980299993, 49.191851694000079 ], [ -123.97152581099999, 49.192062802000159 ], [ -123.972196957999941, 49.192403940000105 ], [ -123.978490518999962, 49.195602442000116 ], [ -123.979771794999976, 49.196253495000065 ], [ -123.981511472999927, 49.197022138000122 ], [ -123.983330402999982, 49.197825697000056 ], [ -123.984502593999949, 49.198305100000077 ], [ -123.984785386999988, 49.1984229 ], [ -123.985122780999987, 49.198561579000085 ], [ -123.988636163999928, 49.200005706000105 ], [ -123.994422873, 49.202383764000096 ], [ -123.995595499999979, 49.20286559100002 ], [ -123.995587665999935, 49.203047207000083 ], [ -123.995564891999933, 49.203576391000098 ], [ -123.994821983999955, 49.203565287000046 ], [ -123.994554091999973, 49.20348278400008 ], [ -123.994347797999964, 49.203242198000112 ], [ -123.994221918000036, 49.203140793000067 ], [ -123.994074187999985, 49.203065989000102 ], [ -123.993849398999956, 49.203031209000088 ], [ -123.993653399999928, 49.203060887000028 ], [ -123.993433114, 49.203144989000087 ], [ -123.992929387999965, 49.203471510000064 ], [ -123.992174587999955, 49.203958997000043 ], [ -123.991912344999903, 49.204128773000022 ], [ -123.99169071299994, 49.204272290000105 ], [ -123.991633208999971, 49.20442970400012 ], [ -123.990600495999942, 49.204429395 ], [ -123.990327216999958, 49.204343307000087 ], [ -123.990026077999914, 49.204169307000022 ], [ -123.98966210299993, 49.203961691000103 ], [ -123.989524460999974, 49.203911373000047 ], [ -123.989428511999961, 49.203876299000065 ], [ -123.988969921999967, 49.203793912000059 ], [ -123.98866351400001, 49.203807988000072 ], [ -123.988359682999914, 49.203854504000084 ], [ -123.98793981099999, 49.203956595000072 ], [ -123.987681817999956, 49.204053514000059 ], [ -123.98749442399999, 49.204265197 ], [ -123.987501784999935, 49.204506691000056 ], [ -123.987631795999931, 49.204671206000157 ], [ -123.987841589999945, 49.204830913000073 ], [ -123.987992313999953, 49.204897590000058 ], [ -123.988184736999955, 49.205196232000041 ], [ -123.988476815999931, 49.205649499000117 ], [ -123.988763091999928, 49.206099701000056 ], [ -123.98882872399993, 49.206389894000104 ], [ -123.98870511799997, 49.206647806 ], [ -123.98800569299999, 49.20658260200004 ], [ -123.98748492, 49.206463789000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127580334", "BldgCostT": "79838334", "sL_LossRatio": "0.720749742279324", "sL_AssetLoss": "1082761.4", "sL_BldgLoss": "780400", "sL_StrLoss": "401722", "sL_NStrLoss": "378678", "sL_ContLoss": "302361.4", "geom_point": "0101000020E61000009F71024F71FF5EC0F8CF4F481D994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.985343082999933, 49.194343872000054 ], [ -123.985551800999957, 49.193903494000111 ], [ -123.985554580999946, 49.193808102000048 ], [ -123.985581995999937, 49.192479592000026 ], [ -123.985591890999928, 49.191997089000012 ], [ -123.985600215, 49.191565389000097 ], [ -123.985610500999925, 49.191029518000093 ], [ -123.985614208999976, 49.189742803000051 ], [ -123.98562539699999, 49.18904060600007 ], [ -123.982971402999937, 49.189068402000032 ], [ -123.982276022999955, 49.188978893000098 ], [ -123.981199921, 49.18897759500009 ], [ -123.981226500999966, 49.188268588000028 ], [ -123.983636507999947, 49.18827410799999 ], [ -123.983661109999957, 49.186725708000033 ], [ -123.983769609999953, 49.186596304000048 ], [ -123.984056008999957, 49.186408 ], [ -123.984257889999952, 49.186337999000067 ], [ -123.984516296, 49.186320309000045 ], [ -123.984524467999947, 49.186327660000131 ], [ -123.9849705929999, 49.186730378000036 ], [ -123.984989991999953, 49.186747906000086 ], [ -123.985008524999969, 49.186759521000099 ], [ -123.985274799999942, 49.18692668900006 ], [ -123.985525191999898, 49.187083895000079 ], [ -123.986517989999982, 49.187711110000109 ], [ -123.987174486999962, 49.18825199400009 ], [ -123.98733194899999, 49.188227253000029 ], [ -123.987353991999953, 49.188223789000048 ], [ -123.987887888999978, 49.18814640100004 ], [ -123.988167102999952, 49.18818949399999 ], [ -123.988775723999979, 49.188382695000094 ], [ -123.990849277000024, 49.188365599000043 ], [ -123.990842960999913, 49.188956250000082 ], [ -123.9908398099999, 49.189251398000081 ], [ -123.990829883999979, 49.190083311000137 ], [ -123.990180705999961, 49.190068496000087 ], [ -123.990039412999963, 49.190132503000051 ], [ -123.989939333999956, 49.190227200000059 ], [ -123.989972585999936, 49.190251901000089 ], [ -123.990485096999933, 49.19076480300005 ], [ -123.990852799999971, 49.191075097000095 ], [ -123.992022001999914, 49.191939703000109 ], [ -123.992063184999949, 49.19200260000013 ], [ -123.992068755, 49.192011011000027 ], [ -123.992362988999972, 49.192456602000107 ], [ -123.992507856999964, 49.193386002000125 ], [ -123.992511188999956, 49.193407592000078 ], [ -123.992491124999944, 49.193553995000102 ], [ -123.992408200999961, 49.193696503000119 ], [ -123.992289699999944, 49.193772613000128 ], [ -123.991686419999922, 49.193900910000089 ], [ -123.991650417999935, 49.193940807000047 ], [ -123.991755959999963, 49.193949068000101 ], [ -123.992030210999971, 49.193875807000104 ], [ -123.992213487999976, 49.193855811000098 ], [ -123.99238341299997, 49.193888687000054 ], [ -123.992528211999911, 49.194009635000079 ], [ -123.992818715999974, 49.194013975000068 ], [ -123.992842187999955, 49.194060289000063 ], [ -123.992924666999954, 49.194052317000121 ], [ -123.992990931999955, 49.194045902000035 ], [ -123.993176951999942, 49.194288550000131 ], [ -123.993194695999975, 49.194311705000111 ], [ -123.993312594999935, 49.194415372000087 ], [ -123.993456300999952, 49.194541710000074 ], [ -123.99507214499999, 49.195611435000039 ], [ -123.995297576999945, 49.195760659000058 ], [ -123.995338502999971, 49.195787751000111 ], [ -123.995421212999972, 49.195842477000092 ], [ -123.995816881999986, 49.196142506000093 ], [ -123.996874195999951, 49.197126590000089 ], [ -123.997599767999986, 49.197948276000048 ], [ -123.997796898, 49.198171514000101 ], [ -123.997803783999942, 49.198179302000057 ], [ -123.998033795999973, 49.198439805000071 ], [ -123.998095169999957, 49.19850934500009 ], [ -123.99888121199993, 49.199399590000063 ], [ -123.999156863999957, 49.199756495000067 ], [ -123.999199417999975, 49.199811644000086 ], [ -123.999138701, 49.199851952000095 ], [ -123.999100600999952, 49.199877306000097 ], [ -123.999189843999972, 49.19999409900003 ], [ -123.99971540899999, 49.200681956000082 ], [ -123.999868642999957, 49.200882532000101 ], [ -124.00057089499991, 49.201801640000049 ], [ -124.000594813999925, 49.201832900000014 ], [ -124.000838117999976, 49.202217579000127 ], [ -124.001017313999981, 49.20250080200001 ], [ -124.001141802999911, 49.202794801000103 ], [ -124.001273519, 49.203112390000101 ], [ -124.00138908199996, 49.203611595000062 ], [ -124.001428575999981, 49.204130318000104 ], [ -124.001445192999981, 49.204349210000018 ], [ -124.001449269999966, 49.204399033000087 ], [ -124.001451641999935, 49.204428141000029 ], [ -124.001454175999953, 49.204459191000062 ], [ -124.000890257999984, 49.20436319200013 ], [ -124.0007774799999, 49.204344008000092 ], [ -124.000233991999949, 49.204227265000078 ], [ -124.000212570999963, 49.204222658000035 ], [ -124.000155662999958, 49.204210433000185 ], [ -124.000006343, 49.204178342000048 ], [ -123.99938740099995, 49.20404539600009 ], [ -123.997678690999976, 49.203597604000045 ], [ -123.996823378999935, 49.203332300000078 ], [ -123.995595499999979, 49.20286559100002 ], [ -123.994422873, 49.202383764000096 ], [ -123.988636163999928, 49.200005706000105 ], [ -123.985122780999987, 49.198561579000085 ], [ -123.984785386999988, 49.1984229 ], [ -123.984502593999949, 49.198305100000077 ], [ -123.98459608499995, 49.19820511000011 ], [ -123.984811466999972, 49.198042575000024 ], [ -123.985000092999925, 49.197900190000063 ], [ -123.985264803999954, 49.197701807000072 ], [ -123.985365810999909, 49.197626087000032 ], [ -123.985400494999908, 49.197457445000076 ], [ -123.985387079999938, 49.196880914000147 ], [ -123.98537903899998, 49.196687181000051 ], [ -123.985358773999934, 49.196205052000074 ], [ -123.98531980599995, 49.194571685000064 ], [ -123.985317396999974, 49.194470886000026 ], [ -123.985339008999944, 49.194352487000131 ], [ -123.985343082999933, 49.194343872000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45666832", "BldgCostT": "29348332", "sL_LossRatio": "0.709716510371869", "sL_AssetLoss": "373322.3", "sL_BldgLoss": "264953", "sL_StrLoss": "123275", "sL_NStrLoss": "141678", "sL_ContLoss": "108369.3", "geom_point": "0101000020E610000041FECA31B6FF5EC02E302B14E9984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.993176951999942, 49.194288550000131 ], [ -123.992990931999955, 49.194045902000035 ], [ -123.992924666999954, 49.194052317000121 ], [ -123.992842187999955, 49.194060289000063 ], [ -123.992818715999974, 49.194013975000068 ], [ -123.992528211999911, 49.194009635000079 ], [ -123.99238341299997, 49.193888687000054 ], [ -123.992213487999976, 49.193855811000098 ], [ -123.992030210999971, 49.193875807000104 ], [ -123.991755959999963, 49.193949068000101 ], [ -123.991650417999935, 49.193940807000047 ], [ -123.991686419999922, 49.193900910000089 ], [ -123.992289699999944, 49.193772613000128 ], [ -123.992408200999961, 49.193696503000119 ], [ -123.992491124999944, 49.193553995000102 ], [ -123.992511188999956, 49.193407592000078 ], [ -123.992507856999964, 49.193386002000125 ], [ -123.992362988999972, 49.192456602000107 ], [ -123.992068755, 49.192011011000027 ], [ -123.992063184999949, 49.19200260000013 ], [ -123.992143191, 49.192002279000071 ], [ -123.992220866999986, 49.192001953000059 ], [ -123.992651117999955, 49.192003591000123 ], [ -123.99409225, 49.192009054000039 ], [ -123.995519522000023, 49.192014433000111 ], [ -123.996591179999911, 49.192018446000162 ], [ -123.996580030999965, 49.192495487000045 ], [ -123.996579826999977, 49.192504491000072 ], [ -123.996226199999981, 49.194002535000031 ], [ -123.995961869999945, 49.194698483000153 ], [ -123.996090157999959, 49.194734812000043 ], [ -123.99613071499995, 49.194751902000071 ], [ -123.99646840299999, 49.194930038000102 ], [ -123.997493203999966, 49.195649602000039 ], [ -123.998527589, 49.196178490000108 ], [ -123.998052369999982, 49.196546950000091 ], [ -123.997423607999934, 49.196883705000111 ], [ -123.99841186499998, 49.197974526000053 ], [ -123.999374289999963, 49.199125141000167 ], [ -123.999561129999975, 49.199128613000056 ], [ -123.99999775399999, 49.199136722000041 ], [ -124.000246531999963, 49.199251192000077 ], [ -124.000079772, 49.199302112000048 ], [ -124.000068627999923, 49.199307503000107 ], [ -123.99997862499994, 49.199350933000062 ], [ -123.999666635999972, 49.19950155600003 ], [ -123.999199417999975, 49.199811644000086 ], [ -123.999156863999957, 49.199756495000067 ], [ -123.99888121199993, 49.199399590000063 ], [ -123.998095169999957, 49.19850934500009 ], [ -123.998033795999973, 49.198439805000071 ], [ -123.997803783999942, 49.198179302000057 ], [ -123.997796898, 49.198171514000101 ], [ -123.997599767999986, 49.197948276000048 ], [ -123.996874195999951, 49.197126590000089 ], [ -123.995816881999986, 49.196142506000093 ], [ -123.995421212999972, 49.195842477000092 ], [ -123.995338502999971, 49.195787751000111 ], [ -123.995297576999945, 49.195760659000058 ], [ -123.99507214499999, 49.195611435000039 ], [ -123.993456300999952, 49.194541710000074 ], [ -123.993312594999935, 49.194415372000087 ], [ -123.993194695999975, 49.194311705000111 ], [ -123.993176951999942, 49.194288550000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143468499", "BldgCostT": "94314999", "sL_LossRatio": "0.759842589948601", "sL_AssetLoss": "1120640", "sL_BldgLoss": "851510", "sL_StrLoss": "457666", "sL_NStrLoss": "393844", "sL_ContLoss": "269130", "geom_point": "0101000020E6100000A3A9C89538005FC01FA56D5743994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.99841186499998, 49.197974526000053 ], [ -123.997423607999934, 49.196883705000111 ], [ -123.998052369999982, 49.196546950000091 ], [ -123.998527589, 49.196178490000108 ], [ -123.999076873, 49.196447108000072 ], [ -123.999346938999977, 49.196543956 ], [ -123.999585633999942, 49.196573613000105 ], [ -123.999711481999952, 49.196561934000108 ], [ -123.999793058999941, 49.196554373000012 ], [ -123.999909131999985, 49.196543592000069 ], [ -124.000391755999928, 49.196417494000087 ], [ -124.001262030999953, 49.196172506000067 ], [ -124.001880786999934, 49.195946256000077 ], [ -124.002332165999945, 49.195781229000083 ], [ -124.002752597999944, 49.195627505000118 ], [ -124.003304797999988, 49.195541304000159 ], [ -124.004650328999972, 49.195552926000111 ], [ -124.007126198999984, 49.195574305000079 ], [ -124.007777321, 49.195580902000096 ], [ -124.007764217999963, 49.196524295000053 ], [ -124.007922843999978, 49.196523551000091 ], [ -124.008279923999922, 49.196521872000062 ], [ -124.008425294999981, 49.196521202000078 ], [ -124.008426210999957, 49.196771266000049 ], [ -124.008434879999953, 49.199175902000079 ], [ -124.007731, 49.199168758000049 ], [ -124.007242520999952, 49.199163793000082 ], [ -124.006937880999985, 49.199160376000037 ], [ -124.00650641499999, 49.199155542000085 ], [ -124.005708709999979, 49.199147079000056 ], [ -124.005704201999961, 49.197622561000081 ], [ -124.005408557999928, 49.197620113 ], [ -124.005173720999935, 49.197618157000058 ], [ -124.004712722999955, 49.197560092000089 ], [ -124.004415428999906, 49.197617620000138 ], [ -124.003542085999968, 49.19761494300014 ], [ -124.003545860999935, 49.198388506000128 ], [ -124.003548579999972, 49.199123317000087 ], [ -124.002839434999885, 49.199115637000055 ], [ -124.001555682999935, 49.19910168100008 ], [ -124.001095145999955, 49.199095843000052 ], [ -124.000678963000013, 49.199143941000074 ], [ -124.000246531999963, 49.199251192000077 ], [ -123.99999775399999, 49.199136722000041 ], [ -123.999561129999975, 49.199128613000056 ], [ -123.999374289999963, 49.199125141000167 ], [ -123.99841186499998, 49.197974526000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84595887", "BldgCostT": "55262080", "sL_LossRatio": "0.816111183702306", "sL_AssetLoss": "374241.9", "sL_BldgLoss": "305423", "sL_StrLoss": "213360", "sL_NStrLoss": "92063", "sL_ContLoss": "68818.9", "geom_point": "0101000020E61000004FC90FE88E005FC0EAAA2790E5984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.007126198999984, 49.195574305000079 ], [ -124.007128718, 49.194717998000094 ], [ -124.004355291999943, 49.194706316000094 ], [ -124.004368075999935, 49.193866407000051 ], [ -124.005882205, 49.193889004000035 ], [ -124.006259007999944, 49.193959003000039 ], [ -124.006337587999923, 49.193821803000056 ], [ -124.007047714999914, 49.193219309 ], [ -124.007322196999937, 49.192986399000091 ], [ -124.007427278999955, 49.192932491000057 ], [ -124.007493464, 49.192924860000055 ], [ -124.007541710999959, 49.192919295000088 ], [ -124.008415998, 49.193155203000089 ], [ -124.009736478999983, 49.193632499000117 ], [ -124.01092292099996, 49.194071306000161 ], [ -124.011847608000025, 49.194411597000062 ], [ -124.012428107999966, 49.194656501000061 ], [ -124.012577316999909, 49.194758299000036 ], [ -124.012692, 49.194960299000059 ], [ -124.012692968999986, 49.195018480000051 ], [ -124.012702581999918, 49.195611504000041 ], [ -124.012269529999941, 49.195608812000017 ], [ -124.009866213, 49.195593899000059 ], [ -124.008397491999943, 49.195584761000106 ], [ -124.007777321, 49.195580902000096 ], [ -124.007126198999984, 49.195574305000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104820250", "BldgCostT": "70825000", "sL_LossRatio": "0.775217970529424", "sL_AssetLoss": "791162", "sL_BldgLoss": "613323", "sL_StrLoss": "336196", "sL_NStrLoss": "277127", "sL_ContLoss": "177839", "geom_point": "0101000020E61000004FC43AD9B6005FC04FA7653943994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.008426210999957, 49.196771266000049 ], [ -124.008425294999981, 49.196521202000078 ], [ -124.008279923999922, 49.196521872000062 ], [ -124.007922843999978, 49.196523551000091 ], [ -124.007764217999963, 49.196524295000053 ], [ -124.007777321, 49.195580902000096 ], [ -124.008397491999943, 49.195584761000106 ], [ -124.009866213, 49.195593899000059 ], [ -124.012269529999941, 49.195608812000017 ], [ -124.012702581999918, 49.195611504000041 ], [ -124.013069163999958, 49.19561050300014 ], [ -124.01328884899999, 49.195609909000055 ], [ -124.013463536999922, 49.195609441000045 ], [ -124.014063009000012, 49.195607813000024 ], [ -124.014068712999958, 49.196917992000053 ], [ -124.014067903999887, 49.19732140300011 ], [ -124.014069473999925, 49.197926496000029 ], [ -124.01407240199994, 49.19923669500006 ], [ -124.013393995999962, 49.199228698000077 ], [ -124.012031739999927, 49.19921490100004 ], [ -124.011812049999904, 49.199212696000053 ], [ -124.011447612999973, 49.199208996000017 ], [ -124.010929803999929, 49.199203460000057 ], [ -124.009813805999954, 49.199191492000075 ], [ -124.009186860999975, 49.199184408000093 ], [ -124.008434879999953, 49.199175902000079 ], [ -124.008426210999957, 49.196771266000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "410013749", "BldgCostT": "270434999", "sL_LossRatio": "0.833731218884634", "sL_AssetLoss": "1653323", "sL_BldgLoss": "1378427", "sL_StrLoss": "912191", "sL_NStrLoss": "466236", "sL_ContLoss": "274896", "geom_point": "0101000020E610000082EE501C19015FC0E9DC38524B994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.025075285999918, 49.205317300000033 ], [ -124.023352523999961, 49.20479903000011 ], [ -124.022235188999957, 49.204466995000082 ], [ -124.021842464999978, 49.204349947 ], [ -124.020549321999951, 49.203961531000054 ], [ -124.019955787999919, 49.203728207000026 ], [ -124.019546290000036, 49.203425407000147 ], [ -124.018941836999943, 49.202902832000078 ], [ -124.018816228999981, 49.202794256000097 ], [ -124.018600443999944, 49.202548064000062 ], [ -124.018271100999968, 49.202006269000066 ], [ -124.018228203999954, 49.201932435000053 ], [ -124.017943497999966, 49.201442423000067 ], [ -124.017792022999984, 49.201181672000104 ], [ -124.017681809999942, 49.201063547000011 ], [ -124.017521890999944, 49.200892191000044 ], [ -124.01703000199997, 49.200560802000069 ], [ -124.016957466999955, 49.200521638000048 ], [ -124.016257908999961, 49.200144084000023 ], [ -124.015896651999924, 49.19998647200002 ], [ -124.01588502, 49.199981405000131 ], [ -124.01510411699999, 49.199642899 ], [ -124.015479461999945, 49.199205125000042 ], [ -124.015590508999978, 49.199075585000074 ], [ -124.016222108999969, 49.19905569900007 ], [ -124.016496287000038, 49.199089498000077 ], [ -124.01683370799999, 49.199215492000107 ], [ -124.017410712999933, 49.199480008000137 ], [ -124.018290381999961, 49.200006568000113 ], [ -124.01861818199994, 49.200202812000015 ], [ -124.01964109499994, 49.200815887000076 ], [ -124.020126600999944, 49.201071509000023 ], [ -124.020895875999969, 49.201363 ], [ -124.022603005999883, 49.201850798000123 ], [ -124.022764090999956, 49.20186730500015 ], [ -124.0229235, 49.201828793000125 ], [ -124.023732729999963, 49.20127633700011 ], [ -124.024853927999956, 49.200999758000115 ], [ -124.025365379999968, 49.200838941000036 ], [ -124.025762786999948, 49.200619310000036 ], [ -124.026012687999952, 49.200386185000077 ], [ -124.026160760999943, 49.200128668000055 ], [ -124.026186707999955, 49.199990628000116 ], [ -124.026243130999916, 49.199690450000027 ], [ -124.026270589999967, 49.199544486 ], [ -124.025244208999965, 49.199495094000056 ], [ -124.025181442999923, 49.199509340000063 ], [ -124.025119597999961, 49.1995234010001 ], [ -124.025037515999955, 49.199584005000055 ], [ -124.024988506999961, 49.199769494000073 ], [ -124.024892702999963, 49.199926291000075 ], [ -124.024795409999953, 49.200009926000099 ], [ -124.024771725999983, 49.200030302000137 ], [ -124.024354393999971, 49.200264885000145 ], [ -124.024112484999932, 49.200310789000078 ], [ -124.02377349899993, 49.200220907000109 ], [ -124.023372863999967, 49.200004954000086 ], [ -124.023266822999958, 49.199947795000021 ], [ -124.022306704999892, 49.199630313000064 ], [ -124.021992312999942, 49.200009912000034 ], [ -124.021670579999949, 49.200398403000094 ], [ -124.020884289999955, 49.200120207000104 ], [ -124.020670465999984, 49.199998878000045 ], [ -124.019703405999905, 49.199450189000132 ], [ -124.01877718599998, 49.198949604000056 ], [ -124.019852322999924, 49.198048207000049 ], [ -124.019875213999967, 49.197895592000116 ], [ -124.01977181499997, 49.197522670000126 ], [ -124.019677, 49.19717249500011 ], [ -124.019493770999972, 49.196934992000081 ], [ -124.015748184999936, 49.196923712000086 ], [ -124.014068712999958, 49.196917992000053 ], [ -124.014063009000012, 49.195607813000024 ], [ -124.013463536999922, 49.195609441000045 ], [ -124.01328884899999, 49.195609909000055 ], [ -124.013069163999958, 49.19561050300014 ], [ -124.012702581999918, 49.195611504000041 ], [ -124.012692968999986, 49.195018480000051 ], [ -124.012692, 49.194960299000059 ], [ -124.012577316999909, 49.194758299000036 ], [ -124.012428107999966, 49.194656501000061 ], [ -124.011847608000025, 49.194411597000062 ], [ -124.01092292099996, 49.194071306000161 ], [ -124.009736478999983, 49.193632499000117 ], [ -124.008415998, 49.193155203000089 ], [ -124.007541710999959, 49.192919295000088 ], [ -124.007493464, 49.192924860000055 ], [ -124.007427278999955, 49.192932491000057 ], [ -124.007322196999937, 49.192986399000091 ], [ -124.007047714999914, 49.193219309 ], [ -124.006337587999923, 49.193821803000056 ], [ -124.006259007999944, 49.193959003000039 ], [ -124.005882205, 49.193889004000035 ], [ -124.004368075999935, 49.193866407000051 ], [ -124.004355291999943, 49.194706316000094 ], [ -124.007128718, 49.194717998000094 ], [ -124.007126198999984, 49.195574305000079 ], [ -124.004650328999972, 49.195552926000111 ], [ -124.003304797999988, 49.195541304000159 ], [ -124.002752597999944, 49.195627505000118 ], [ -124.002332165999945, 49.195781229000083 ], [ -124.001880786999934, 49.195946256000077 ], [ -124.001262030999953, 49.196172506000067 ], [ -124.000391755999928, 49.196417494000087 ], [ -123.999909131999985, 49.196543592000069 ], [ -123.999793058999941, 49.196554373000012 ], [ -123.999711481999952, 49.196561934000108 ], [ -123.999585633999942, 49.196573613000105 ], [ -123.999346938999977, 49.196543956 ], [ -123.999076873, 49.196447108000072 ], [ -123.998527589, 49.196178490000108 ], [ -123.997493203999966, 49.195649602000039 ], [ -123.99646840299999, 49.194930038000102 ], [ -123.99613071499995, 49.194751902000071 ], [ -123.996090157999959, 49.194734812000043 ], [ -123.995961869999945, 49.194698483000153 ], [ -123.996226199999981, 49.194002535000031 ], [ -123.996579826999977, 49.192504491000072 ], [ -123.996580030999965, 49.192495487000045 ], [ -123.996591179999911, 49.192018446000162 ], [ -123.997026845999955, 49.192091344000119 ], [ -123.999816984999981, 49.192092970000061 ], [ -124.00000995299996, 49.192092142000035 ], [ -123.999975215999939, 49.19289940900007 ], [ -123.999494506999937, 49.192890487000057 ], [ -123.99944625899991, 49.194011420000017 ], [ -123.997912841999934, 49.19398294300003 ], [ -123.997914025999989, 49.194041859000102 ], [ -123.997090632, 49.194048971000065 ], [ -123.997106538999958, 49.19484038100007 ], [ -123.997132625999882, 49.194858204000148 ], [ -123.997930309999916, 49.194851314000132 ], [ -123.99793422099999, 49.195045641000021 ], [ -123.999999939999952, 49.195013063000012 ], [ -124.000409139999988, 49.19506496200011 ], [ -124.001226927999966, 49.194970729000012 ], [ -124.001223942999928, 49.194822806000083 ], [ -124.001635646, 49.194819236000093 ], [ -124.001630196999926, 49.194549418000094 ], [ -124.003688701999948, 49.194531547000068 ], [ -124.003683243999916, 49.194261728000079 ], [ -124.003271544999933, 49.19426530600002 ], [ -124.003266086999986, 49.193995487000038 ], [ -124.002854389999982, 49.193999063 ], [ -124.00284893599995, 49.193729246000046 ], [ -124.002025547999921, 49.193736392000076 ], [ -124.002030996999963, 49.194006211000023 ], [ -124.000795906999912, 49.194016921000078 ], [ -124.000779574999939, 49.193207466000054 ], [ -124.001602955999971, 49.193200328000025 ], [ -124.001597508999964, 49.192930509000085 ], [ -124.002009194999957, 49.192926938000063 ], [ -124.002003745999971, 49.192657120000057 ], [ -124.00323880199997, 49.192646397000026 ], [ -124.003244257999981, 49.1929162160001 ], [ -124.003655946999928, 49.192912638000024 ], [ -124.003661405999935, 49.193182457000034 ], [ -124.004484783999928, 49.193175298 ], [ -124.004490247999925, 49.193445115000046 ], [ -124.00490193899995, 49.193441534000108 ], [ -124.004896473999963, 49.193171716000087 ], [ -124.005308163999956, 49.193168133000057 ], [ -124.005302694999941, 49.192898315000107 ], [ -124.005714381999951, 49.192894731000116 ], [ -124.005708911999974, 49.192624913000024 ], [ -124.006532280999949, 49.192617740000053 ], [ -124.006526806999972, 49.192347922000117 ], [ -124.008173534999955, 49.19233355800008 ], [ -124.008179018999968, 49.19260337500004 ], [ -124.009002387, 49.192596185000141 ], [ -124.009007875999885, 49.192866001000041 ], [ -124.009831248999888, 49.192858805000107 ], [ -124.009836740999944, 49.193128623000106 ], [ -124.010248429999962, 49.193125023000029 ], [ -124.010253923999969, 49.193394839000071 ], [ -124.011077305999976, 49.193387634000025 ], [ -124.011082804999916, 49.19365745100005 ], [ -124.011906190000033, 49.193650239000107 ], [ -124.01191169499999, 49.193920057000057 ], [ -124.012323387999928, 49.193916449000092 ], [ -124.012328894999939, 49.194186266000081 ], [ -124.013152288999947, 49.194179044000023 ], [ -124.013163310999957, 49.194718679000054 ], [ -124.013986713999927, 49.194711453000131 ], [ -124.013981196999936, 49.194441636000086 ], [ -124.015787160999963, 49.194425766000066 ], [ -124.01644880500001, 49.194293884000061 ], [ -124.016440330999913, 49.193880287000127 ], [ -124.016949365999977, 49.193875806000101 ], [ -124.017589563999977, 49.193870167000043 ], [ -124.018087104999964, 49.193865781000028 ], [ -124.018090184999963, 49.194015874000108 ], [ -124.018094167999919, 49.194209888000024 ], [ -124.018103717999963, 49.194675232000058 ], [ -124.018512615999924, 49.19467162600008 ], [ -124.01852691699996, 49.194336171000067 ], [ -124.018535051999962, 49.194145349000102 ], [ -124.018548471, 49.193830599000137 ], [ -124.017379767999898, 49.193809104000074 ], [ -124.01667646099996, 49.193796163000044 ], [ -124.016202053999933, 49.193787431000061 ], [ -124.016207522999963, 49.193659308000086 ], [ -124.016215591999966, 49.193470253000044 ], [ -124.01621994199995, 49.193368326000098 ], [ -124.015841478999945, 49.193361358000089 ], [ -124.015371848999976, 49.19335271100006 ], [ -124.01537725, 49.193226229000061 ], [ -124.015391353999945, 49.192895919000087 ], [ -124.01435804, 49.192876885000075 ], [ -124.014361865999945, 49.19278732 ], [ -124.013915013999949, 49.192779085000019 ], [ -124.013257474999989, 49.192766964000107 ], [ -124.012056961999917, 49.192744825000048 ], [ -124.012064757999937, 49.192562522000046 ], [ -124.011267142999941, 49.192547806000029 ], [ -124.011286382999941, 49.192098152000035 ], [ -124.011286756999965, 49.192089392000057 ], [ -124.011261487999903, 49.192088925000057 ], [ -124.010376138999973, 49.192072583000041 ], [ -124.010389277999977, 49.191765642000064 ], [ -124.01039789499994, 49.191564327000066 ], [ -124.010431860999944, 49.190770826000062 ], [ -124.008294411999941, 49.190731341000109 ], [ -124.007744835000011, 49.190721182000082 ], [ -124.007485676999949, 49.190612237000025 ], [ -124.007087423999934, 49.190433092000013 ], [ -124.005509895999964, 49.18972344000013 ], [ -124.005216576999899, 49.189591482000061 ], [ -124.005187334999931, 49.189579460000061 ], [ -124.003494824999947, 49.188883345000121 ], [ -124.002423431999915, 49.1884519810001 ], [ -124.002342640999984, 49.188423856000071 ], [ -124.002386013999981, 49.187414580000045 ], [ -124.00076656099999, 49.187384544000096 ], [ -124.000769538, 49.187315341000037 ], [ -124.00000050199999, 49.187301069000092 ], [ -123.999999525999954, 49.187323744000032 ], [ -124.000012152999915, 49.18732397900002 ], [ -123.999998601999934, 49.187638930000055 ], [ -123.999996052999933, 49.18763809100011 ], [ -123.999675238999941, 49.187532725000068 ], [ -123.999362171999962, 49.187429896000118 ], [ -123.999314425999913, 49.187417503000113 ], [ -123.999321331999951, 49.18717893700012 ], [ -123.999326837999959, 49.186986948000069 ], [ -123.999861266999915, 49.186918691000116 ], [ -123.999955062999945, 49.186920431000075 ], [ -123.999955655999884, 49.186906634000131 ], [ -124.000024301999986, 49.186897866000052 ], [ -124.002233645999937, 49.18661565200005 ], [ -124.002695452999902, 49.187134771000103 ], [ -124.004488085999967, 49.189116184000092 ], [ -124.004513312999947, 49.189144058000025 ], [ -124.004680368, 49.189192755000072 ], [ -124.007422627999944, 49.189992203000038 ], [ -124.010403781999983, 49.189907080000104 ], [ -124.01041015199992, 49.188963456000074 ], [ -124.010701381999979, 49.189054938000048 ], [ -124.010819004999959, 49.190041834000056 ], [ -124.013555114999988, 49.19116168200005 ], [ -124.01460405099999, 49.191907224 ], [ -124.018150709999958, 49.192557808000103 ], [ -124.022399465999982, 49.194619914 ], [ -124.022931318999923, 49.194490624000125 ], [ -124.02325471599994, 49.194574422000095 ], [ -124.023759734999956, 49.194705230000039 ], [ -124.02465211199997, 49.194457420000084 ], [ -124.024707623999973, 49.194492694000097 ], [ -124.024642576999952, 49.196023192000027 ], [ -124.023938543999975, 49.196010285000028 ], [ -124.023565764999958, 49.196003450000035 ], [ -124.0218364, 49.195971721000056 ], [ -124.021842366999962, 49.19626140500003 ], [ -124.023077505999936, 49.196250469000042 ], [ -124.023083070999959, 49.196520285000034 ], [ -124.023494785999958, 49.196516637000109 ], [ -124.023500354999939, 49.196786453000087 ], [ -124.024323788999965, 49.196779153000072 ], [ -124.024340505999945, 49.197588601000106 ], [ -124.023928781999984, 49.197592253000025 ], [ -124.023934352999973, 49.197862069000088 ], [ -124.024757802999929, 49.197854765000102 ], [ -124.02476337799996, 49.198124581000108 ], [ -124.025847114, 49.198114959000122 ], [ -124.026314138999936, 49.198021463000039 ], [ -124.026428739999986, 49.198025776000044 ], [ -124.026765081999898, 49.198038432000061 ], [ -124.026928039000026, 49.198044562000121 ], [ -124.027214938999933, 49.198202863000063 ], [ -124.027238239999932, 49.198315663000052 ], [ -124.027387854999986, 49.198558481000077 ], [ -124.027395459999966, 49.198797909000142 ], [ -124.027408872999942, 49.199219279000069 ], [ -124.02767783899999, 49.199660929000025 ], [ -124.027679017, 49.199717865000132 ], [ -124.027712330999975, 49.199717568000054 ], [ -124.02772292899999, 49.199734969000062 ], [ -124.028109119999954, 49.200599961000108 ], [ -124.028113131999973, 49.200793462000107 ], [ -124.028195188999945, 49.200792733000064 ], [ -124.028198773999961, 49.200800761000046 ], [ -124.028539425999952, 49.201491004000061 ], [ -124.028541669999981, 49.201599243000061 ], [ -124.028592619999955, 49.201598789000045 ], [ -124.029111802999978, 49.202650730000109 ], [ -124.029329330999957, 49.202941551000052 ], [ -124.02898142, 49.202944652000049 ], [ -124.028987018999956, 49.203214467000045 ], [ -124.027339937999983, 49.203229130000103 ], [ -124.027334348999915, 49.202959315000037 ], [ -124.026638519999906, 49.202965503000115 ], [ -124.026572139999985, 49.202980862000068 ], [ -124.026356064999945, 49.202968013000017 ], [ -124.02568727699996, 49.202973955000111 ], [ -124.025685570999926, 49.202891419000125 ], [ -124.025087192999962, 49.202709418000097 ], [ -124.024034631999967, 49.202718755000028 ], [ -124.024039012999978, 49.202930886000033 ], [ -124.024258068999956, 49.202986638000027 ], [ -124.024451972999913, 49.20298491800002 ], [ -124.02445754699994, 49.203254735000066 ], [ -124.024869316999968, 49.203251081000097 ], [ -124.024874894, 49.203520897000061 ], [ -124.025286665999886, 49.203517242000089 ], [ -124.025292244999918, 49.203787058000081 ], [ -124.026115793999963, 49.20377974400013 ], [ -124.026121378, 49.204049559000033 ], [ -124.026533155999971, 49.204045900000068 ], [ -124.026544327999915, 49.204585531000077 ], [ -124.027367889999979, 49.204578208000072 ], [ -124.027373479999966, 49.20484802300011 ], [ -124.027785262999956, 49.204844360000074 ], [ -124.027790856999928, 49.205114175000112 ], [ -124.028614426999965, 49.205106843000053 ], [ -124.028620023999935, 49.205376658000034 ], [ -124.029369679999917, 49.205369979000103 ], [ -124.02942834199996, 49.203986746000062 ], [ -124.029456756999963, 49.203987265000109 ], [ -124.029476565999914, 49.203520146000109 ], [ -124.029809770999961, 49.203526237000119 ], [ -124.029944772999954, 49.203672628000056 ], [ -124.030454459999987, 49.204104260000101 ], [ -124.03099472699995, 49.204494998000072 ], [ -124.031868032999938, 49.204987265000021 ], [ -124.03192234, 49.205012409000055 ], [ -124.032453147999888, 49.205258165000032 ], [ -124.033273274999956, 49.205549567000055 ], [ -124.034018799999956, 49.205756766000107 ], [ -124.033718576999888, 49.206105342000079 ], [ -124.033306994999975, 49.206583284000047 ], [ -124.03330241299993, 49.20658603400004 ], [ -124.0330891, 49.206715507000112 ], [ -124.032731256999938, 49.20706443800011 ], [ -124.032128281999945, 49.207423096000035 ], [ -124.027343197999983, 49.205999487000042 ], [ -124.025075285999918, 49.205317300000033 ] ], [ [ -124.020201064999981, 49.196545782000065 ], [ -124.020188635999929, 49.195941465000104 ], [ -124.019162135999977, 49.195922602000046 ], [ -124.019182137999934, 49.19545329700005 ], [ -124.018531223999972, 49.195441331000048 ], [ -124.018532039999926, 49.19548105100003 ], [ -124.016473505999954, 49.195499188000028 ], [ -124.016474286999966, 49.195537357000013 ], [ -124.016851937999931, 49.19576236300005 ], [ -124.016859096999937, 49.195765659000067 ], [ -124.017302451999939, 49.195761754000053 ], [ -124.017306761999961, 49.195971789000076 ], [ -124.017434179999952, 49.196030460000031 ], [ -124.017719698999926, 49.196027944000065 ], [ -124.017721317999971, 49.196106879000041 ], [ -124.017811937999937, 49.196125163000026 ], [ -124.018019638999974, 49.196218762000093 ], [ -124.018338951999951, 49.196292351000096 ], [ -124.019783801999949, 49.196279601000093 ], [ -124.019789087, 49.196536629000036 ], [ -124.019895806999969, 49.1965484770001 ], [ -124.020201064999981, 49.196545782000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101750749", "BldgCostT": "67489999", "sL_LossRatio": "0.804703480197498", "sL_AssetLoss": "550486", "sL_BldgLoss": "442978", "sL_StrLoss": "260588", "sL_NStrLoss": "182390", "sL_ContLoss": "107508", "geom_point": "0101000020E61000002AA82C333A015FC0D48241467E994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.01964109499994, 49.200815887000076 ], [ -124.01861818199994, 49.200202812000015 ], [ -124.018290381999961, 49.200006568000113 ], [ -124.017410712999933, 49.199480008000137 ], [ -124.01683370799999, 49.199215492000107 ], [ -124.016496287000038, 49.199089498000077 ], [ -124.016222108999969, 49.19905569900007 ], [ -124.015590508999978, 49.199075585000074 ], [ -124.015479461999945, 49.199205125000042 ], [ -124.01510411699999, 49.199642899 ], [ -124.014548012999967, 49.199402998000046 ], [ -124.014527842999939, 49.199395944000031 ], [ -124.01407240199994, 49.19923669500006 ], [ -124.014069473999925, 49.197926496000029 ], [ -124.014067903999887, 49.19732140300011 ], [ -124.014068712999958, 49.196917992000053 ], [ -124.015748184999936, 49.196923712000086 ], [ -124.019493770999972, 49.196934992000081 ], [ -124.019677, 49.19717249500011 ], [ -124.01977181499997, 49.197522670000126 ], [ -124.019875213999967, 49.197895592000116 ], [ -124.019852322999924, 49.198048207000049 ], [ -124.01877718599998, 49.198949604000056 ], [ -124.019703405999905, 49.199450189000132 ], [ -124.020670465999984, 49.199998878000045 ], [ -124.020884289999955, 49.200120207000104 ], [ -124.021670579999949, 49.200398403000094 ], [ -124.021992312999942, 49.200009912000034 ], [ -124.022306704999892, 49.199630313000064 ], [ -124.023266822999958, 49.199947795000021 ], [ -124.023372863999967, 49.200004954000086 ], [ -124.02377349899993, 49.200220907000109 ], [ -124.024112484999932, 49.200310789000078 ], [ -124.024354393999971, 49.200264885000145 ], [ -124.024771725999983, 49.200030302000137 ], [ -124.024795409999953, 49.200009926000099 ], [ -124.024892702999963, 49.199926291000075 ], [ -124.024988506999961, 49.199769494000073 ], [ -124.025037515999955, 49.199584005000055 ], [ -124.025119597999961, 49.1995234010001 ], [ -124.025181442999923, 49.199509340000063 ], [ -124.025244208999965, 49.199495094000056 ], [ -124.026270589999967, 49.199544486 ], [ -124.026243130999916, 49.199690450000027 ], [ -124.026186707999955, 49.199990628000116 ], [ -124.026160760999943, 49.200128668000055 ], [ -124.026012687999952, 49.200386185000077 ], [ -124.025762786999948, 49.200619310000036 ], [ -124.025365379999968, 49.200838941000036 ], [ -124.024853927999956, 49.200999758000115 ], [ -124.023732729999963, 49.20127633700011 ], [ -124.0229235, 49.201828793000125 ], [ -124.022764090999956, 49.20186730500015 ], [ -124.022603005999883, 49.201850798000123 ], [ -124.020895875999969, 49.201363 ], [ -124.020126600999944, 49.201071509000023 ], [ -124.01964109499994, 49.200815887000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "323728744", "BldgCostT": "203282446", "sL_LossRatio": "0.719277250813702", "sL_AssetLoss": "1404692", "sL_BldgLoss": "1010363", "sL_StrLoss": "485444", "sL_NStrLoss": "524919", "sL_ContLoss": "394329", "geom_point": "0101000020E61000006BFC03FED3005FC0FA1F77B6EC994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.017584311999926, 49.206502100000066 ], [ -124.017357499999918, 49.206448405000103 ], [ -124.017162717999938, 49.206449304000031 ], [ -124.016821750999924, 49.206491804000102 ], [ -124.016740809999959, 49.206501907000096 ], [ -124.016633727999945, 49.206485785000055 ], [ -124.016502295999956, 49.206466001000123 ], [ -124.013012711999963, 49.205677702000095 ], [ -124.00942718099999, 49.204855208000026 ], [ -124.008710094999941, 49.204594397000058 ], [ -124.008106808, 49.204209589000058 ], [ -124.007060413, 49.203409504000057 ], [ -124.006610795999961, 49.202957301 ], [ -124.006488498999929, 49.202770481000101 ], [ -124.006361421999955, 49.202280079000097 ], [ -124.006340542999951, 49.201807862000059 ], [ -124.00649616299998, 49.200768934000102 ], [ -124.006497446999944, 49.20057898200006 ], [ -124.006500253999931, 49.200163028000063 ], [ -124.006501204999907, 49.200001256000071 ], [ -124.00650641499999, 49.199155542000085 ], [ -124.006937880999985, 49.199160376000037 ], [ -124.007242520999952, 49.199163793000082 ], [ -124.007731, 49.199168758000049 ], [ -124.008434879999953, 49.199175902000079 ], [ -124.009186860999975, 49.199184408000093 ], [ -124.009813805999954, 49.199191492000075 ], [ -124.010929803999929, 49.199203460000057 ], [ -124.011447612999973, 49.199208996000017 ], [ -124.011812049999904, 49.199212696000053 ], [ -124.012031739999927, 49.19921490100004 ], [ -124.013393995999962, 49.199228698000077 ], [ -124.01407240199994, 49.19923669500006 ], [ -124.014527842999939, 49.199395944000031 ], [ -124.014548012999967, 49.199402998000046 ], [ -124.01510411699999, 49.199642899 ], [ -124.01588502, 49.199981405000131 ], [ -124.015896651999924, 49.19998647200002 ], [ -124.016257908999961, 49.200144084000023 ], [ -124.016957466999955, 49.200521638000048 ], [ -124.01703000199997, 49.200560802000069 ], [ -124.017521890999944, 49.200892191000044 ], [ -124.017681809999942, 49.201063547000011 ], [ -124.017792022999984, 49.201181672000104 ], [ -124.017943497999966, 49.201442423000067 ], [ -124.018228203999954, 49.201932435000053 ], [ -124.018271100999968, 49.202006269000066 ], [ -124.018600443999944, 49.202548064000062 ], [ -124.018816228999981, 49.202794256000097 ], [ -124.018941836999943, 49.202902832000078 ], [ -124.019546290000036, 49.203425407000147 ], [ -124.019955787999919, 49.203728207000026 ], [ -124.020549321999951, 49.203961531000054 ], [ -124.021842464999978, 49.204349947 ], [ -124.02146543, 49.204669885000058 ], [ -124.020778881999945, 49.204914792000089 ], [ -124.020300504999938, 49.205133831000047 ], [ -124.019920540999948, 49.205360962000078 ], [ -124.018794204999963, 49.20614162100005 ], [ -124.018355399999948, 49.206428926000093 ], [ -124.01784308399999, 49.2066400900001 ], [ -124.017584311999926, 49.206502100000066 ] ], [ [ -124.018286519999961, 49.203579175000073 ], [ -124.01828097899994, 49.20330935900013 ], [ -124.017045662999919, 49.203320243000071 ], [ -124.017040128999966, 49.203050427000029 ], [ -124.016628358, 49.203054052000091 ], [ -124.01661176499999, 49.202244602000036 ], [ -124.016931809000013, 49.202241785000105 ], [ -124.016932238999956, 49.202201763000133 ], [ -124.017021473999975, 49.202140782000114 ], [ -124.017017993999929, 49.201971161000031 ], [ -124.017272962999954, 49.201968916000027 ], [ -124.017427615999964, 49.20186322800005 ], [ -124.017424123999916, 49.201693083000059 ], [ -124.017319938999947, 49.201595962000027 ], [ -124.017139920999966, 49.201430358000053 ], [ -124.017006926999926, 49.201431528000093 ], [ -124.017004345999979, 49.201305635000026 ], [ -124.016849355999966, 49.201163051000037 ], [ -124.015766131999982, 49.201172583000108 ], [ -124.015771657999963, 49.201442400000062 ], [ -124.015359900999968, 49.201446021000017 ], [ -124.015370948999973, 49.201985654000048 ], [ -124.014135664999969, 49.201996508000114 ], [ -124.014113593999966, 49.20091724100017 ], [ -124.012878336999975, 49.20092808100005 ], [ -124.012883847999944, 49.201197898000046 ], [ -124.011236826999891, 49.201212330000047 ], [ -124.011231324, 49.200942514000054 ], [ -124.010819571999946, 49.200946118000033 ], [ -124.010797574999984, 49.199866850000063 ], [ -124.009974084999968, 49.199874055000087 ], [ -124.009971312999966, 49.199737843000086 ], [ -124.008734647999987, 49.199678155000122 ], [ -124.008760804999923, 49.200964119000112 ], [ -124.00917255899999, 49.200960522000067 ], [ -124.00917585099991, 49.201122285000011 ], [ -124.009290938999982, 49.201230463000059 ], [ -124.009259839999984, 49.201801863000043 ], [ -124.009269905999943, 49.202039132 ], [ -124.009606284999947, 49.202036192000058 ], [ -124.00961177799999, 49.20230600900004 ], [ -124.010023540999896, 49.202302408000065 ], [ -124.010029037999985, 49.202572224000036 ], [ -124.010440803999984, 49.20256862400003 ], [ -124.010446301999977, 49.20283844000005 ], [ -124.010858071999976, 49.202834837000083 ], [ -124.010863570999973, 49.203104654000057 ], [ -124.011275343999941, 49.203101049000054 ], [ -124.011280844999987, 49.203370866000071 ], [ -124.011400230999953, 49.203369821000088 ], [ -124.011459177999981, 49.2036652990001 ], [ -124.011671101, 49.203924501000074 ], [ -124.011708121999959, 49.204127170000014 ], [ -124.011709982999946, 49.204218308000101 ], [ -124.011725153, 49.204220400000096 ], [ -124.011731706999953, 49.204256283000063 ], [ -124.011886423999968, 49.204425801000092 ], [ -124.012153621999971, 49.204549545000056 ], [ -124.012399299999984, 49.204710392000095 ], [ -124.01241453099999, 49.204710258000063 ], [ -124.012458790999972, 49.204853103000104 ], [ -124.01280577599999, 49.205029697000086 ], [ -124.013286101999967, 49.205079487000063 ], [ -124.01379026299999, 49.20524600100007 ], [ -124.013795615999953, 49.205507739000076 ], [ -124.014207405999983, 49.205504123000033 ], [ -124.01421292400002, 49.205773939000046 ], [ -124.015036509999973, 49.205766705000023 ], [ -124.015042031999926, 49.20603652100003 ], [ -124.015865621999964, 49.206029279000134 ], [ -124.015860094999979, 49.205759463000099 ], [ -124.016271886999945, 49.205755841000069 ], [ -124.01626635599996, 49.205486025000035 ], [ -124.016509400999922, 49.205483885000049 ], [ -124.016539708999915, 49.204773829000068 ], [ -124.017075679999948, 49.204783690000063 ], [ -124.017073333999974, 49.204669325000111 ], [ -124.017485115999975, 49.204665698000134 ], [ -124.01747958, 49.204395881000046 ], [ -124.017891360999926, 49.20439225300008 ], [ -124.017874745000015, 49.203582805000082 ], [ -124.018286519999961, 49.203579175000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "427572772", "BldgCostT": "258548450", "sL_LossRatio": "0.669317548500457", "sL_AssetLoss": "1245246", "sL_BldgLoss": "833465", "sL_StrLoss": "336664", "sL_NStrLoss": "496801", "sL_ContLoss": "411781", "geom_point": "0101000020E610000004093AB54E015FC07FA0B2ED769A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.02925529099997, 49.214367806000105 ], [ -124.027804940999971, 49.212718578000057 ], [ -124.027338313999934, 49.212187897000028 ], [ -124.026950636999942, 49.211803183000022 ], [ -124.026584105999973, 49.211439397000035 ], [ -124.025940285, 49.21087118800007 ], [ -124.025222107999966, 49.210343001000119 ], [ -124.024552214999957, 49.209967812000102 ], [ -124.02322379799989, 49.209339297000099 ], [ -124.023134970999934, 49.209303390000102 ], [ -124.02124577399999, 49.208539494 ], [ -124.019050906999922, 49.207840883000124 ], [ -124.017935818999902, 49.207520806000026 ], [ -124.01665808599995, 49.207153995000034 ], [ -124.015778037999937, 49.206928137000133 ], [ -124.014474706999977, 49.206593661000042 ], [ -124.013234000999958, 49.206275200000071 ], [ -124.012610704999958, 49.206129197000116 ], [ -124.012416676999976, 49.206083767000038 ], [ -124.010893734999925, 49.205727035000038 ], [ -124.010880806999964, 49.205723994000103 ], [ -124.008866451, 49.205267188000086 ], [ -124.00885320699993, 49.20526473000011 ], [ -124.00857391199996, 49.205213153000059 ], [ -124.007888554999965, 49.205140170000099 ], [ -124.006597490999965, 49.205042948000042 ], [ -124.005622011999961, 49.204969479000056 ], [ -124.004207071999986, 49.204864065000024 ], [ -124.001553500999961, 49.20447725600016 ], [ -124.001454175999953, 49.204459191000062 ], [ -124.001451641999935, 49.204428141000029 ], [ -124.001449269999966, 49.204399033000087 ], [ -124.001445192999981, 49.204349210000018 ], [ -124.001428575999981, 49.204130318000104 ], [ -124.00138908199996, 49.203611595000062 ], [ -124.001273519, 49.203112390000101 ], [ -124.001141802999911, 49.202794801000103 ], [ -124.001017313999981, 49.20250080200001 ], [ -124.000838117999976, 49.202217579000127 ], [ -124.000594813999925, 49.201832900000014 ], [ -124.00057089499991, 49.201801640000049 ], [ -123.999868642999957, 49.200882532000101 ], [ -123.99971540899999, 49.200681956000082 ], [ -123.999189843999972, 49.19999409900003 ], [ -123.999100600999952, 49.199877306000097 ], [ -123.999138701, 49.199851952000095 ], [ -123.999199417999975, 49.199811644000086 ], [ -123.999666635999972, 49.19950155600003 ], [ -123.99997862499994, 49.199350933000062 ], [ -124.000068627999923, 49.199307503000107 ], [ -124.000079772, 49.199302112000048 ], [ -124.000246531999963, 49.199251192000077 ], [ -124.000678963000013, 49.199143941000074 ], [ -124.001095145999955, 49.199095843000052 ], [ -124.001555682999935, 49.19910168100008 ], [ -124.002839434999885, 49.199115637000055 ], [ -124.003548579999972, 49.199123317000087 ], [ -124.003545860999935, 49.198388506000128 ], [ -124.003542085999968, 49.19761494300014 ], [ -124.004415428999906, 49.197617620000138 ], [ -124.004712722999955, 49.197560092000089 ], [ -124.005173720999935, 49.197618157000058 ], [ -124.005408557999928, 49.197620113 ], [ -124.005704201999961, 49.197622561000081 ], [ -124.005708709999979, 49.199147079000056 ], [ -124.00650641499999, 49.199155542000085 ], [ -124.006501204999907, 49.200001256000071 ], [ -124.006500253999931, 49.200163028000063 ], [ -124.006497446999944, 49.20057898200006 ], [ -124.00649616299998, 49.200768934000102 ], [ -124.006340542999951, 49.201807862000059 ], [ -124.006361421999955, 49.202280079000097 ], [ -124.006488498999929, 49.202770481000101 ], [ -124.006610795999961, 49.202957301 ], [ -124.007060413, 49.203409504000057 ], [ -124.008106808, 49.204209589000058 ], [ -124.008710094999941, 49.204594397000058 ], [ -124.00942718099999, 49.204855208000026 ], [ -124.013012711999963, 49.205677702000095 ], [ -124.016502295999956, 49.206466001000123 ], [ -124.016633727999945, 49.206485785000055 ], [ -124.016740809999959, 49.206501907000096 ], [ -124.016821750999924, 49.206491804000102 ], [ -124.017162717999938, 49.206449304000031 ], [ -124.017357499999918, 49.206448405000103 ], [ -124.017584311999926, 49.206502100000066 ], [ -124.01784308399999, 49.2066400900001 ], [ -124.018355399999948, 49.206428926000093 ], [ -124.018794204999963, 49.20614162100005 ], [ -124.019920540999948, 49.205360962000078 ], [ -124.020300504999938, 49.205133831000047 ], [ -124.020778881999945, 49.204914792000089 ], [ -124.02146543, 49.204669885000058 ], [ -124.021842464999978, 49.204349947 ], [ -124.022235188999957, 49.204466995000082 ], [ -124.023352523999961, 49.20479903000011 ], [ -124.025075285999918, 49.205317300000033 ], [ -124.027343197999983, 49.205999487000042 ], [ -124.032128281999945, 49.207423096000035 ], [ -124.032731256999938, 49.20706443800011 ], [ -124.0330891, 49.206715507000112 ], [ -124.03330241299993, 49.20658603400004 ], [ -124.033306994999975, 49.206583284000047 ], [ -124.033718576999888, 49.206105342000079 ], [ -124.034018799999956, 49.205756766000107 ], [ -124.035043452999957, 49.206044665000022 ], [ -124.034915095999949, 49.206452915000106 ], [ -124.034893947999947, 49.206661412000038 ], [ -124.034864279999951, 49.206940921000111 ], [ -124.03515745299994, 49.207925339000091 ], [ -124.035176512999939, 49.207989284000114 ], [ -124.035245010999986, 49.20821924500008 ], [ -124.035221435999986, 49.208646496 ], [ -124.035117762999931, 49.21049701000009 ], [ -124.035103986999928, 49.210742307000025 ], [ -124.035155, 49.210769382000088 ], [ -124.035126317999953, 49.211512590000048 ], [ -124.035107863999954, 49.211974195000089 ], [ -124.035103548999984, 49.212083038000067 ], [ -124.035045456999953, 49.212289071000029 ], [ -124.034786076000032, 49.212681403000047 ], [ -124.034600573999938, 49.212850923000133 ], [ -124.034440690999972, 49.212959627000075 ], [ -124.034377434999939, 49.213002620000076 ], [ -124.034035479999943, 49.213174672 ], [ -124.033736393999945, 49.213272770000074 ], [ -124.033175067999963, 49.213457360000042 ], [ -124.032873275999918, 49.213556612000104 ], [ -124.03284583599999, 49.213565656000043 ], [ -124.032317518999932, 49.213739409000041 ], [ -124.0323150299999, 49.213726381000122 ], [ -124.032302887999933, 49.21366260100006 ], [ -124.032291802999978, 49.213602992000098 ], [ -124.032227907999967, 49.213555898000024 ], [ -124.032139505999965, 49.213538090000014 ], [ -124.032041715999981, 49.213579502000108 ], [ -124.031836691999928, 49.213724294000023 ], [ -124.031569403, 49.213817607000045 ], [ -124.030599385999921, 49.214049295000066 ], [ -124.03030090099999, 49.214035684000081 ], [ -124.030164303, 49.213956710000033 ], [ -124.030163896999952, 49.21412778800002 ], [ -124.03008501299999, 49.214210096000052 ], [ -124.029400626999987, 49.214337102000037 ], [ -124.02925529099997, 49.214367806000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206981709", "BldgCostT": "127288566", "sL_LossRatio": "0.718001287430471", "sL_AssetLoss": "624033.7", "sL_BldgLoss": "448057", "sL_StrLoss": "195077", "sL_NStrLoss": "252980", "sL_ContLoss": "175976.7", "geom_point": "0101000020E6100000FEE58BA4FA005FC028815A2DAC9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.016120245999943, 49.209668035000078 ], [ -124.015812027999971, 49.209602618000091 ], [ -124.015356976999968, 49.209616177000044 ], [ -124.014272577999961, 49.209706365000088 ], [ -124.013954954999917, 49.209624017000074 ], [ -124.013307068999936, 49.209296235000075 ], [ -124.0119947799999, 49.208759993000037 ], [ -124.011713158999896, 49.20878233600007 ], [ -124.011588775999911, 49.208792195000086 ], [ -124.011476899999963, 49.20879296500005 ], [ -124.01125714899996, 49.208794464000022 ], [ -124.011163495999938, 49.208795092000052 ], [ -124.011534080999979, 49.208149197000047 ], [ -124.011910691999958, 49.207457391000041 ], [ -124.013160284999913, 49.207742392000085 ], [ -124.013805984999948, 49.207171807000059 ], [ -124.012260807999922, 49.206806509000053 ], [ -124.012546715999974, 49.206279601000105 ], [ -124.012610704999958, 49.206129197000116 ], [ -124.013234000999958, 49.206275200000071 ], [ -124.014474706999977, 49.206593661000042 ], [ -124.015778037999937, 49.206928137000133 ], [ -124.01665808599995, 49.207153995000034 ], [ -124.016568416999988, 49.207197147000109 ], [ -124.016513118999924, 49.207223750000047 ], [ -124.016162392999959, 49.207392499000029 ], [ -124.016297015999953, 49.207452590000059 ], [ -124.017787488999929, 49.208200395000077 ], [ -124.018915793999966, 49.208725390000033 ], [ -124.019684272999953, 49.209082914000128 ], [ -124.019796207999903, 49.209134980000023 ], [ -124.020044186999939, 49.209250380000157 ], [ -124.020043529999967, 49.20926577400013 ], [ -124.01963801, 49.209575988000019 ], [ -124.019200379999958, 49.209770588000062 ], [ -124.018774373999989, 49.20998935800003 ], [ -124.018449505999968, 49.21001702700007 ], [ -124.018062469999919, 49.209963562000048 ], [ -124.017638812, 49.209884203000087 ], [ -124.016120245999943, 49.209668035000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100660220", "BldgCostT": "66190413", "sL_LossRatio": "0.864285305672441", "sL_AssetLoss": "256267.46", "sL_BldgLoss": "221488.2", "sL_StrLoss": "167213.5", "sL_NStrLoss": "54274.7", "sL_ContLoss": "34779.26", "geom_point": "0101000020E6100000ADE631B1D6005FC09DAEA3810A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.019594598999944, 49.214231296000058 ], [ -124.019361604999958, 49.21422699600005 ], [ -124.019291089999967, 49.214270697000138 ], [ -124.018653006999926, 49.214405804000108 ], [ -124.018229792999975, 49.214390802000011 ], [ -124.017587476999921, 49.214302394000057 ], [ -124.017246096999898, 49.214201592000023 ], [ -124.017110003999989, 49.214080313000039 ], [ -124.017038923999976, 49.213850304000097 ], [ -124.017464896999968, 49.213478994000049 ], [ -124.017473900999903, 49.213363914000055 ], [ -124.017416282999989, 49.213267405000167 ], [ -124.017247579999918, 49.213201297000083 ], [ -124.016965016999947, 49.213170005000045 ], [ -124.016682028999952, 49.21320219300005 ], [ -124.01615452399993, 49.21326219900007 ], [ -124.015616208999987, 49.21324419400009 ], [ -124.015459279999902, 49.213212516000041 ], [ -124.01504230899998, 49.21312830100004 ], [ -124.01489112599991, 49.213110113000091 ], [ -124.014485497999956, 49.213061308000121 ], [ -124.014488658999966, 49.21305193400007 ], [ -124.014526411999952, 49.212939601000059 ], [ -124.014502600999933, 49.212822991000088 ], [ -124.01440051799996, 49.212740106000098 ], [ -124.014044475999967, 49.212566095000092 ], [ -124.01389358599999, 49.212565991000133 ], [ -124.013440803999956, 49.212632395000071 ], [ -124.013132011999943, 49.212732904000028 ], [ -124.012951408, 49.212850297000053 ], [ -124.011706636, 49.212470747000097 ], [ -124.011405109999927, 49.212378789000105 ], [ -124.011028493999973, 49.212142207000028 ], [ -124.010870410999956, 49.212116792000039 ], [ -124.010772424999956, 49.212164505000082 ], [ -124.010808908999948, 49.212272286000058 ], [ -124.011489816999955, 49.213027697000037 ], [ -124.011570575999954, 49.213159806000128 ], [ -124.011560609999918, 49.213329796000018 ], [ -124.011368104999946, 49.21372419000005 ], [ -124.011021636999928, 49.213730708000085 ], [ -124.010936413999957, 49.213732301000029 ], [ -124.01085686, 49.213733810000051 ], [ -124.01083552399993, 49.213734197000051 ], [ -124.010360105999894, 49.213817307000035 ], [ -124.009250492999982, 49.213311715000017 ], [ -124.007845891999963, 49.212671705000041 ], [ -124.007822590999965, 49.212661110000049 ], [ -124.007585300999921, 49.212555382000033 ], [ -124.006635427999939, 49.212132198000035 ], [ -124.006222314999917, 49.212027252000034 ], [ -124.005377604999978, 49.211812714000118 ], [ -124.004750302000033, 49.211729971000061 ], [ -124.004210104999956, 49.211658704000101 ], [ -124.003610668999954, 49.211555515000128 ], [ -124.003108598999972, 49.211469104000066 ], [ -124.002861117999913, 49.211131300000027 ], [ -124.002820299999939, 49.210901012000065 ], [ -124.002864199999962, 49.210262490000055 ], [ -124.002952681999915, 49.210054308000089 ], [ -124.003127701999958, 49.209874792000065 ], [ -124.003469457000037, 49.209685389000079 ], [ -124.003907500999958, 49.209442607000028 ], [ -124.004287400999928, 49.209127192000047 ], [ -124.00431343000001, 49.209105594000064 ], [ -124.004483581, 49.208964302000048 ], [ -124.004653696999981, 49.208809213000073 ], [ -124.00531363099995, 49.208207362000039 ], [ -124.005946716999944, 49.207629983000068 ], [ -124.007444284999906, 49.20798539400004 ], [ -124.009120482999947, 49.208352703000116 ], [ -124.00931529199994, 49.208395392000085 ], [ -124.010804094999983, 49.208733616000103 ], [ -124.011163495999938, 49.208795092000052 ], [ -124.01125714899996, 49.208794464000022 ], [ -124.011476899999963, 49.20879296500005 ], [ -124.011588775999911, 49.208792195000086 ], [ -124.011713158999896, 49.20878233600007 ], [ -124.0119947799999, 49.208759993000037 ], [ -124.013307068999936, 49.209296235000075 ], [ -124.013954954999917, 49.209624017000074 ], [ -124.014272577999961, 49.209706365000088 ], [ -124.015356976999968, 49.209616177000044 ], [ -124.015812027999971, 49.209602618000091 ], [ -124.016120245999943, 49.209668035000078 ], [ -124.017638812, 49.209884203000087 ], [ -124.018062469999919, 49.209963562000048 ], [ -124.018449505999968, 49.21001702700007 ], [ -124.018774373999989, 49.20998935800003 ], [ -124.019200379999958, 49.209770588000062 ], [ -124.01963801, 49.209575988000019 ], [ -124.020043529999967, 49.20926577400013 ], [ -124.020006501999944, 49.210134666000037 ], [ -124.019293671999932, 49.210121573000045 ], [ -124.019287760999973, 49.21026022100007 ], [ -124.020332478999961, 49.21027940900008 ], [ -124.020321781999897, 49.210530469000048 ], [ -124.020573562999985, 49.210535093000026 ], [ -124.020802576999955, 49.210539297000025 ], [ -124.020763506999941, 49.21145643700013 ], [ -124.02074412799999, 49.211911320000098 ], [ -124.02198054499992, 49.211934011000096 ], [ -124.022838486999945, 49.211949748000052 ], [ -124.022785832, 49.213186999000143 ], [ -124.022941256999928, 49.213189849000102 ], [ -124.022894449999981, 49.214289722000089 ], [ -124.021981853999961, 49.21390505600003 ], [ -124.02116271599999, 49.213613600000059 ], [ -124.021307301999968, 49.213761211000111 ], [ -124.021327293999946, 49.214031704000064 ], [ -124.021265794999977, 49.214414090000055 ], [ -124.02092980599997, 49.214792766000087 ], [ -124.020653393999964, 49.21510428600012 ], [ -124.020269588999938, 49.21477489700009 ], [ -124.020237831999964, 49.214729664000089 ], [ -124.020073092999937, 49.214494907000059 ], [ -124.019783597999961, 49.214302299000089 ], [ -124.019594598999944, 49.214231296000058 ] ], [ [ -124.006976438999956, 49.210684663000109 ], [ -124.007585538999962, 49.21059916300004 ], [ -124.007627214999957, 49.210600975000133 ], [ -124.007644988999957, 49.210186513000039 ], [ -124.007669738999937, 49.209609321000059 ], [ -124.007086255, 49.209614411000075 ], [ -124.00698253799996, 49.209630263000115 ], [ -124.005888739999961, 49.209661062000109 ], [ -124.005232609999922, 49.209757037000074 ], [ -124.00523551699996, 49.209900398000045 ], [ -124.004875587999919, 49.209903530000069 ], [ -124.004631338999971, 49.210024963000087 ], [ -124.004535274999938, 49.210446220000094 ], [ -124.004834626999951, 49.210443616000106 ], [ -124.004834934999948, 49.210458823000089 ], [ -124.00484613199994, 49.211011172000077 ], [ -124.005096838999933, 49.211198463000073 ], [ -124.005200111999969, 49.211250029000034 ], [ -124.005632836999936, 49.211246262000067 ], [ -124.00587703799998, 49.211198363000058 ], [ -124.00608344299999, 49.211089104000131 ], [ -124.006081075999958, 49.210972493000043 ], [ -124.006307456999934, 49.210970521000078 ], [ -124.006359138999954, 49.210943163000138 ], [ -124.006491266999944, 49.210887833000029 ], [ -124.006487434999883, 49.210699088000069 ], [ -124.006951652999931, 49.210695043000044 ], [ -124.006976438999956, 49.210684663000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43617166", "BldgCostT": "27661666", "sL_LossRatio": "0.802149797576607", "sL_AssetLoss": "140645.8", "sL_BldgLoss": "112819", "sL_StrLoss": "75007", "sL_NStrLoss": "37812", "sL_ContLoss": "27826.8", "geom_point": "0101000020E61000009FE6D3198E015FC02637ABBA1E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.02442013299995, 49.212124455000058 ], [ -124.02444696099991, 49.211493556000107 ], [ -124.023329250999936, 49.211473070000125 ], [ -124.023349768999964, 49.210990810000027 ], [ -124.023303978999976, 49.210989971000082 ], [ -124.023310863999967, 49.210828134000039 ], [ -124.02218804799999, 49.21080754200004 ], [ -124.022225180999968, 49.209935224000034 ], [ -124.021571378999951, 49.209923229000083 ], [ -124.021582819999963, 49.209654528000051 ], [ -124.020988535999962, 49.209643620000115 ], [ -124.020917270999959, 49.209642312000028 ], [ -124.020918455999933, 49.209614482000099 ], [ -124.020937146999984, 49.209175688000059 ], [ -124.020872809999929, 49.209174507000021 ], [ -124.020873818999974, 49.209223499000039 ], [ -124.020045019999912, 49.20923082100007 ], [ -124.020044186999939, 49.209250380000157 ], [ -124.019796207999903, 49.209134980000023 ], [ -124.019684272999953, 49.209082914000128 ], [ -124.018915793999966, 49.208725390000033 ], [ -124.017787488999929, 49.208200395000077 ], [ -124.016297015999953, 49.207452590000059 ], [ -124.016162392999959, 49.207392499000029 ], [ -124.016513118999924, 49.207223750000047 ], [ -124.016568416999988, 49.207197147000109 ], [ -124.01665808599995, 49.207153995000034 ], [ -124.017935818999902, 49.207520806000026 ], [ -124.019050906999922, 49.207840883000124 ], [ -124.02124577399999, 49.208539494 ], [ -124.023134970999934, 49.209303390000102 ], [ -124.02322379799989, 49.209339297000099 ], [ -124.024552214999957, 49.209967812000102 ], [ -124.025222107999966, 49.210343001000119 ], [ -124.025940285, 49.21087118800007 ], [ -124.026584105999973, 49.211439397000035 ], [ -124.026950636999942, 49.211803183000022 ], [ -124.027338313999934, 49.212187897000028 ], [ -124.027804940999971, 49.212718578000057 ], [ -124.02925529099997, 49.214367806000105 ], [ -124.029362625999966, 49.214490399000042 ], [ -124.027739690999965, 49.214821849000074 ], [ -124.027682, 49.214833634000065 ], [ -124.025785622999976, 49.215220922000128 ], [ -124.024743901999955, 49.215460311000143 ], [ -124.02464130899989, 49.215506450000085 ], [ -124.024549541999946, 49.215425143000047 ], [ -124.024029114999919, 49.214964120000026 ], [ -124.023084356999931, 49.214369767000036 ], [ -124.02299513299999, 49.214332159000108 ], [ -124.02345057399999, 49.214328125000058 ], [ -124.023439431999961, 49.213788494000021 ], [ -124.023703188999917, 49.213786157000079 ], [ -124.023722132999964, 49.213340831 ], [ -124.024145916999942, 49.213348598000096 ], [ -124.024179359999948, 49.212562240000132 ], [ -124.024401342999965, 49.212566308000127 ], [ -124.02442013299995, 49.212124455000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138647496", "BldgCostT": "87057056", "sL_LossRatio": "0.814815777174378", "sL_AssetLoss": "300188.1", "sL_BldgLoss": "244598", "sL_StrLoss": "170005", "sL_NStrLoss": "74593", "sL_ContLoss": "55590.1", "geom_point": "0101000020E61000007556E122F9005FC020FD40037B9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.013522711999912, 49.216267112 ], [ -124.013756582999989, 49.215544695000126 ], [ -124.013197481999953, 49.215468699000098 ], [ -124.012837099999942, 49.215393603000102 ], [ -124.012433691999917, 49.215268310000056 ], [ -124.011917301999944, 49.215059699000044 ], [ -124.011639811999956, 49.214908802000124 ], [ -124.011521718999958, 49.214846202000047 ], [ -124.011077906999986, 49.214416695000125 ], [ -124.010857179999959, 49.214155983000133 ], [ -124.010360105999894, 49.213817307000035 ], [ -124.01083552399993, 49.213734197000051 ], [ -124.01085686, 49.213733810000051 ], [ -124.010936413999957, 49.213732301000029 ], [ -124.011021636999928, 49.213730708000085 ], [ -124.011368104999946, 49.21372419000005 ], [ -124.011560609999918, 49.213329796000018 ], [ -124.011570575999954, 49.213159806000128 ], [ -124.011489816999955, 49.213027697000037 ], [ -124.010808908999948, 49.212272286000058 ], [ -124.010772424999956, 49.212164505000082 ], [ -124.010870410999956, 49.212116792000039 ], [ -124.011028493999973, 49.212142207000028 ], [ -124.011405109999927, 49.212378789000105 ], [ -124.011706636, 49.212470747000097 ], [ -124.012951408, 49.212850297000053 ], [ -124.013132011999943, 49.212732904000028 ], [ -124.013440803999956, 49.212632395000071 ], [ -124.01389358599999, 49.212565991000133 ], [ -124.014044475999967, 49.212566095000092 ], [ -124.01440051799996, 49.212740106000098 ], [ -124.014502600999933, 49.212822991000088 ], [ -124.014526411999952, 49.212939601000059 ], [ -124.014488658999966, 49.21305193400007 ], [ -124.014485497999956, 49.213061308000121 ], [ -124.01489112599991, 49.213110113000091 ], [ -124.01504230899998, 49.21312830100004 ], [ -124.015459279999902, 49.213212516000041 ], [ -124.015616208999987, 49.21324419400009 ], [ -124.01615452399993, 49.21326219900007 ], [ -124.016682028999952, 49.21320219300005 ], [ -124.016965016999947, 49.213170005000045 ], [ -124.017247579999918, 49.213201297000083 ], [ -124.017416282999989, 49.213267405000167 ], [ -124.017473900999903, 49.213363914000055 ], [ -124.017464896999968, 49.213478994000049 ], [ -124.017038923999976, 49.213850304000097 ], [ -124.017110003999989, 49.214080313000039 ], [ -124.017246096999898, 49.214201592000023 ], [ -124.017587476999921, 49.214302394000057 ], [ -124.018229792999975, 49.214390802000011 ], [ -124.018653006999926, 49.214405804000108 ], [ -124.019291089999967, 49.214270697000138 ], [ -124.019361604999958, 49.21422699600005 ], [ -124.019594598999944, 49.214231296000058 ], [ -124.019783597999961, 49.214302299000089 ], [ -124.020073092999937, 49.214494907000059 ], [ -124.020237831999964, 49.214729664000089 ], [ -124.020269588999938, 49.21477489700009 ], [ -124.020653393999964, 49.21510428600012 ], [ -124.020426753999971, 49.215260696000087 ], [ -124.020375015999917, 49.215296412000036 ], [ -124.019764389999949, 49.215620992000048 ], [ -124.019490678999944, 49.215766398000056 ], [ -124.019284156999902, 49.21596499700005 ], [ -124.019264691999965, 49.215983691000083 ], [ -124.019146378999935, 49.216217515000018 ], [ -124.018465292999906, 49.216105926000075 ], [ -124.017884496999983, 49.216117719000053 ], [ -124.017119679999922, 49.216200015000084 ], [ -124.016754183999936, 49.216180707000028 ], [ -124.016113477999966, 49.216055404000016 ], [ -124.015855490999982, 49.216634217000092 ], [ -124.015768311999921, 49.217006232000102 ], [ -124.015127405999934, 49.216980905000042 ], [ -124.01476767699998, 49.216972515000109 ], [ -124.014575438999927, 49.21696803100015 ], [ -124.013301991999967, 49.216938302000059 ], [ -124.013522711999912, 49.216267112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159564416", "BldgCostT": "103421666", "sL_LossRatio": "0.903041078854939", "sL_AssetLoss": "304441.3", "sL_BldgLoss": "274923", "sL_StrLoss": "208798", "sL_NStrLoss": "66125", "sL_ContLoss": "29518.3", "geom_point": "0101000020E61000006CBF6B864A015FC07ECD93E7D19B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.019808490999935, 49.218545511000045 ], [ -124.019601915999942, 49.218467796000084 ], [ -124.018947110999989, 49.219282391000021 ], [ -124.017982494999913, 49.218963884000075 ], [ -124.017809095999965, 49.219105708000058 ], [ -124.017624093000023, 49.219167104000178 ], [ -124.017544615999938, 49.219169997000051 ], [ -124.017345085999963, 49.219177296000083 ], [ -124.0165648099999, 49.219138602000029 ], [ -124.016307410999957, 49.219063700000113 ], [ -124.016231281000032, 49.218917299000097 ], [ -124.016220701999984, 49.218554297000018 ], [ -124.015580458999963, 49.218551295000047 ], [ -124.015109810999888, 49.218549107000094 ], [ -124.015127405999934, 49.216980905000042 ], [ -124.015768311999921, 49.217006232000102 ], [ -124.015855490999982, 49.216634217000092 ], [ -124.016113477999966, 49.216055404000016 ], [ -124.016754183999936, 49.216180707000028 ], [ -124.017119679999922, 49.216200015000084 ], [ -124.017884496999983, 49.216117719000053 ], [ -124.018465292999906, 49.216105926000075 ], [ -124.019146378999935, 49.216217515000018 ], [ -124.019264691999965, 49.215983691000083 ], [ -124.019284156999902, 49.21596499700005 ], [ -124.019490678999944, 49.215766398000056 ], [ -124.019764389999949, 49.215620992000048 ], [ -124.020375015999917, 49.215296412000036 ], [ -124.020426753999971, 49.215260696000087 ], [ -124.020653393999964, 49.21510428600012 ], [ -124.02092980599997, 49.214792766000087 ], [ -124.021265794999977, 49.214414090000055 ], [ -124.021327293999946, 49.214031704000064 ], [ -124.021307301999968, 49.213761211000111 ], [ -124.02116271599999, 49.213613600000059 ], [ -124.021981853999961, 49.21390505600003 ], [ -124.022894449999981, 49.214289722000089 ], [ -124.022892606, 49.214333067000062 ], [ -124.02299513299999, 49.214332159000108 ], [ -124.023084356999931, 49.214369767000036 ], [ -124.024029114999919, 49.214964120000026 ], [ -124.024549541999946, 49.215425143000047 ], [ -124.02464130899989, 49.215506450000085 ], [ -124.024051610999933, 49.215771696000097 ], [ -124.023675304999955, 49.216072817000089 ], [ -124.023390181999901, 49.216487108000067 ], [ -124.023152090999986, 49.217085123000047 ], [ -124.023130588999933, 49.217081869 ], [ -124.023002172999924, 49.217062574000089 ], [ -124.022993811999982, 49.217083739000024 ], [ -124.022935105999949, 49.217232631000059 ], [ -124.022912975999986, 49.217288734000043 ], [ -124.02286619600001, 49.217507329000114 ], [ -124.022829066999975, 49.217680694000101 ], [ -124.022840307999928, 49.218674029000056 ], [ -124.022838948999933, 49.218801862000049 ], [ -124.022838097999937, 49.218850603000092 ], [ -124.022835794999963, 49.218976573000084 ], [ -124.0228253699999, 49.219549902000026 ], [ -124.022818006999941, 49.219954725000044 ], [ -124.022801145999935, 49.220882905000074 ], [ -124.022833487999904, 49.221090595000113 ], [ -124.02221076499994, 49.22109625500012 ], [ -124.021743957999959, 49.221100485000072 ], [ -124.021355295999939, 49.221104008000097 ], [ -124.021242128, 49.221092256000112 ], [ -124.021059167999937, 49.221073304000086 ], [ -124.020911403999946, 49.221057990000091 ], [ -124.021217012999941, 49.220325307000053 ], [ -124.021218298999926, 49.220199294000082 ], [ -124.021157594, 49.220013617000092 ], [ -124.021110263999987, 49.219944435000116 ], [ -124.020967338999981, 49.219735523000104 ], [ -124.020806282999956, 49.21950021100011 ], [ -124.020678596999986, 49.219342994000037 ], [ -124.020411719999942, 49.219167003000052 ], [ -124.020330506999983, 49.219077309000063 ], [ -124.020320685999963, 49.218985299000046 ], [ -124.020419705999956, 49.218657491000087 ], [ -124.020033716999976, 49.218586783000049 ], [ -124.019808490999935, 49.218545511000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106995417", "BldgCostT": "69896667", "sL_LossRatio": "0.902339925166089", "sL_AssetLoss": "189499.65", "sL_BldgLoss": "170993.1", "sL_StrLoss": "136514.8", "sL_NStrLoss": "34478.3", "sL_ContLoss": "18506.55", "geom_point": "0101000020E61000000BF8B15920015FC0E1C80391459C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.012930386, 49.221208041000118 ], [ -124.013089337999958, 49.220851162000031 ], [ -124.013255480999959, 49.220870139000063 ], [ -124.014638920999957, 49.221028280000048 ], [ -124.015260117999958, 49.221034300000042 ], [ -124.01573861299994, 49.220976493000116 ], [ -124.016207267999903, 49.220899182000096 ], [ -124.016420452999952, 49.220864017000096 ], [ -124.016499912999947, 49.220850906000138 ], [ -124.01726388499999, 49.220791992 ], [ -124.018158819999911, 49.220780604000041 ], [ -124.018109702999965, 49.220549205000054 ], [ -124.017992989999954, 49.220422802 ], [ -124.017294799999945, 49.22003540900004 ], [ -124.017020902999974, 49.219960110000052 ], [ -124.016304278999897, 49.219874001000022 ], [ -124.015017098, 49.219562195000066 ], [ -124.015101512999948, 49.21935119200004 ], [ -124.015109810999888, 49.218549107000094 ], [ -124.015580458999963, 49.218551295000047 ], [ -124.016220701999984, 49.218554297000018 ], [ -124.016231281000032, 49.218917299000097 ], [ -124.016307410999957, 49.219063700000113 ], [ -124.0165648099999, 49.219138602000029 ], [ -124.017345085999963, 49.219177296000083 ], [ -124.017544615999938, 49.219169997000051 ], [ -124.017624093000023, 49.219167104000178 ], [ -124.017809095999965, 49.219105708000058 ], [ -124.017982494999913, 49.218963884000075 ], [ -124.018947110999989, 49.219282391000021 ], [ -124.019601915999942, 49.218467796000084 ], [ -124.019808490999935, 49.218545511000045 ], [ -124.020033716999976, 49.218586783000049 ], [ -124.020419705999956, 49.218657491000087 ], [ -124.020320685999963, 49.218985299000046 ], [ -124.020330506999983, 49.219077309000063 ], [ -124.020411719999942, 49.219167003000052 ], [ -124.020678596999986, 49.219342994000037 ], [ -124.020806282999956, 49.21950021100011 ], [ -124.020967338999981, 49.219735523000104 ], [ -124.021110263999987, 49.219944435000116 ], [ -124.021157594, 49.220013617000092 ], [ -124.021218298999926, 49.220199294000082 ], [ -124.021217012999941, 49.220325307000053 ], [ -124.020911403999946, 49.221057990000091 ], [ -124.02087149399992, 49.221175993000045 ], [ -124.020853287999969, 49.221229791000027 ], [ -124.020710295999933, 49.221432511000025 ], [ -124.020330190999942, 49.221819907000061 ], [ -124.019554006999911, 49.222487250000071 ], [ -124.01934984899998, 49.222609574000082 ], [ -124.019085355999934, 49.222699256000091 ], [ -124.018708889999957, 49.222744567000035 ], [ -124.015073612999913, 49.222573268000076 ], [ -124.014523176999901, 49.22245146200008 ], [ -124.013400245999961, 49.222017511000033 ], [ -124.013212331999981, 49.221912063000069 ], [ -124.013149716999948, 49.221876925000153 ], [ -124.013091595999953, 49.2218158270001 ], [ -124.012955404999957, 49.221672560000059 ], [ -124.012884982999964, 49.221458763000058 ], [ -124.012896708999961, 49.221313107000135 ], [ -124.01289963499994, 49.221277165000103 ], [ -124.012930386, 49.221208041000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66533228", "BldgCostT": "43734857", "sL_LossRatio": "0.886008461090264", "sL_AssetLoss": "171112.7", "sL_BldgLoss": "151607.3", "sL_StrLoss": "107272.3", "sL_NStrLoss": "44335", "sL_ContLoss": "19505.4", "geom_point": "0101000020E61000008F75CCD4BF005FC0EFE0692AF29B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.010023702999916, 49.219172103000062 ], [ -124.010028195999908, 49.218907506000114 ], [ -124.009522983999915, 49.218915203000051 ], [ -124.009199202999952, 49.218884091000078 ], [ -124.008866525999949, 49.218804102000057 ], [ -124.007075582999931, 49.218274896000132 ], [ -124.005963806999887, 49.217874298000083 ], [ -124.005952899999926, 49.21723209600006 ], [ -124.007270205999959, 49.217256488000011 ], [ -124.007280189999932, 49.217375285000045 ], [ -124.007303797999938, 49.217656018000127 ], [ -124.007590598999982, 49.217686487000115 ], [ -124.009205061999978, 49.217722969000071 ], [ -124.009998579999916, 49.217740896000109 ], [ -124.010013158999968, 49.217323282000059 ], [ -124.010028786999939, 49.216875198000075 ], [ -124.013301991999967, 49.216938302000059 ], [ -124.014575438999927, 49.21696803100015 ], [ -124.01476767699998, 49.216972515000109 ], [ -124.015127405999934, 49.216980905000042 ], [ -124.015109810999888, 49.218549107000094 ], [ -124.015101512999948, 49.21935119200004 ], [ -124.015017098, 49.219562195000066 ], [ -124.014574592999935, 49.220221193000079 ], [ -124.013566032999961, 49.220001854000024 ], [ -124.013316436999943, 49.219983447000075 ], [ -124.012362595999917, 49.219913088000091 ], [ -124.012146920999939, 49.219887672000013 ], [ -124.011473898999952, 49.219808416000014 ], [ -124.011070003999976, 49.219727090000085 ], [ -124.011007910999922, 49.219706369000043 ], [ -124.01055330299999, 49.219554589000033 ], [ -124.010232596999984, 49.219419104000025 ], [ -124.010093201999936, 49.219310208000067 ], [ -124.01005779800002, 49.219241202000077 ], [ -124.010023702999916, 49.219172103000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88816667", "BldgCostT": "58546667", "sL_LossRatio": "0.899516075919998", "sL_AssetLoss": "205590.1", "sL_BldgLoss": "184931.6", "sL_StrLoss": "132615", "sL_NStrLoss": "52316.6", "sL_ContLoss": "20658.5", "geom_point": "0101000020E61000003C0202E756005FC0DC066297B09B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.007270205999959, 49.217256488000011 ], [ -124.005952899999926, 49.21723209600006 ], [ -124.005694417999962, 49.217231117000019 ], [ -124.00454070399999, 49.217226733000096 ], [ -124.003620411999961, 49.217223234000116 ], [ -124.00340077, 49.217222397000171 ], [ -124.003008101999939, 49.21722090400003 ], [ -124.002343328999984, 49.217201379000109 ], [ -124.001630064999958, 49.217180409000015 ], [ -124.001347595999945, 49.217172096000112 ], [ -124.000645013999986, 49.216825892000074 ], [ -124.000028115999982, 49.216730392000024 ], [ -123.998808097999955, 49.216541501000101 ], [ -123.997929286999948, 49.21633878800008 ], [ -123.997642191999915, 49.21621999300001 ], [ -123.997520500999912, 49.216114202 ], [ -123.997567394999948, 49.215676703000071 ], [ -123.997642656999943, 49.214974808000072 ], [ -123.997662793999922, 49.214786991000047 ], [ -123.997836201999974, 49.214423713000016 ], [ -123.99811237599999, 49.214221703000078 ], [ -123.99849721899993, 49.214077604000103 ], [ -123.998787295999961, 49.214635009000119 ], [ -123.99927707799999, 49.21504649200002 ], [ -123.999947392999957, 49.215345292000094 ], [ -124.000004194999946, 49.215358384000076 ], [ -124.000484532999948, 49.215469066000075 ], [ -124.001833526999917, 49.21577991000008 ], [ -124.00295202699999, 49.216037601 ], [ -124.004904136999926, 49.216117566000108 ], [ -124.005197813999985, 49.216129590000058 ], [ -124.007383510999929, 49.216854294000058 ], [ -124.008259899, 49.21685788800005 ], [ -124.008325302999978, 49.216483598000096 ], [ -124.008403782999963, 49.216381490000053 ], [ -124.008560584999913, 49.216276413000124 ], [ -124.009668588999958, 49.215837612000058 ], [ -124.010075411999978, 49.21598019099999 ], [ -124.011038504999973, 49.216041188000112 ], [ -124.011350800999963, 49.215155489000026 ], [ -124.011639811999956, 49.214908802000124 ], [ -124.011917301999944, 49.215059699000044 ], [ -124.012433691999917, 49.215268310000056 ], [ -124.012837099999942, 49.215393603000102 ], [ -124.013197481999953, 49.215468699000098 ], [ -124.013756582999989, 49.215544695000126 ], [ -124.013522711999912, 49.216267112 ], [ -124.013301991999967, 49.216938302000059 ], [ -124.010028786999939, 49.216875198000075 ], [ -124.010013158999968, 49.217323282000059 ], [ -124.009998579999916, 49.217740896000109 ], [ -124.009205061999978, 49.217722969000071 ], [ -124.007590598999982, 49.217686487000115 ], [ -124.007303797999938, 49.217656018000127 ], [ -124.007280189999932, 49.217375285000045 ], [ -124.007270205999959, 49.217256488000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157084667", "BldgCostT": "99076667", "sL_LossRatio": "0.890972284136868", "sL_AssetLoss": "306874.08", "sL_BldgLoss": "273416.3", "sL_StrLoss": "195482.6", "sL_NStrLoss": "77933.7", "sL_ContLoss": "33457.78", "geom_point": "0101000020E6100000E0824B4B55005FC0737013626C9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.99849721899993, 49.214077604000103 ], [ -123.99850231299996, 49.213834094000035 ], [ -123.998505109999911, 49.213702303000048 ], [ -123.999153886999935, 49.21370350600008 ], [ -123.999737602999943, 49.21336949300013 ], [ -124.000054177999985, 49.213186243000145 ], [ -124.000434765999969, 49.212965928000074 ], [ -124.000792613999977, 49.212758786000109 ], [ -124.002293224000013, 49.211965022000079 ], [ -124.002631279999918, 49.211786195000073 ], [ -124.002960475999927, 49.211567502000051 ], [ -124.003108598999972, 49.211469104000066 ], [ -124.003610668999954, 49.211555515000128 ], [ -124.004210104999956, 49.211658704000101 ], [ -124.004750302000033, 49.211729971000061 ], [ -124.005377604999978, 49.211812714000118 ], [ -124.006222314999917, 49.212027252000034 ], [ -124.006635427999939, 49.212132198000035 ], [ -124.007585300999921, 49.212555382000033 ], [ -124.007822590999965, 49.212661110000049 ], [ -124.007845891999963, 49.212671705000041 ], [ -124.009250492999982, 49.213311715000017 ], [ -124.010360105999894, 49.213817307000035 ], [ -124.010857179999959, 49.214155983000133 ], [ -124.011077906999986, 49.214416695000125 ], [ -124.011521718999958, 49.214846202000047 ], [ -124.011639811999956, 49.214908802000124 ], [ -124.011350800999963, 49.215155489000026 ], [ -124.011038504999973, 49.216041188000112 ], [ -124.010075411999978, 49.21598019099999 ], [ -124.009668588999958, 49.215837612000058 ], [ -124.008560584999913, 49.216276413000124 ], [ -124.008403782999963, 49.216381490000053 ], [ -124.008325302999978, 49.216483598000096 ], [ -124.008259899, 49.21685788800005 ], [ -124.007383510999929, 49.216854294000058 ], [ -124.005197813999985, 49.216129590000058 ], [ -124.004904136999926, 49.216117566000108 ], [ -124.00295202699999, 49.216037601 ], [ -124.001833526999917, 49.21577991000008 ], [ -124.000484532999948, 49.215469066000075 ], [ -124.000004194999946, 49.215358384000076 ], [ -123.999947392999957, 49.215345292000094 ], [ -123.99927707799999, 49.21504649200002 ], [ -123.998787295999961, 49.214635009000119 ], [ -123.99849721899993, 49.214077604000103 ] ], [ [ -124.000613139, 49.214794063000085 ], [ -124.00062934099995, 49.214797957000023 ], [ -124.001206437999912, 49.214792956000053 ], [ -124.001241283999946, 49.213983060000011 ], [ -124.000375241999933, 49.213990565000096 ], [ -124.000369796999934, 49.213720748000107 ], [ -123.999999938999935, 49.213723951000127 ], [ -123.999999938999935, 49.214488062000015 ], [ -124.000089523, 49.214532768000034 ], [ -124.000386133999925, 49.214530200000048 ], [ -124.000389204, 49.214682315000104 ], [ -124.000613139, 49.214794063000085 ] ], [ [ -124.002853593999944, 49.215028969000109 ], [ -124.003173861999983, 49.215045749000126 ], [ -124.003572619999929, 49.215042285000038 ], [ -124.002853593999944, 49.215028969000109 ] ], [ [ -124.002498947999953, 49.215051609000092 ], [ -124.002538205999926, 49.215023127000016 ], [ -124.00143684599999, 49.215002717000061 ], [ -124.001451177999954, 49.215060699000119 ], [ -124.001632640999915, 49.21505912600005 ], [ -124.001636263999927, 49.215238458000087 ], [ -124.001744237999986, 49.215262663000026 ], [ -124.002106238999914, 49.215296663000061 ], [ -124.002452839999961, 49.215085062000078 ], [ -124.002456990999988, 49.215082050000021 ], [ -124.002456383000023, 49.21505197900008 ], [ -124.002498947999953, 49.215051609000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199650525", "BldgCostT": "125867532", "sL_LossRatio": "0.716272877894888", "sL_AssetLoss": "830796.5", "sL_BldgLoss": "595077", "sL_StrLoss": "251127", "sL_NStrLoss": "343950", "sL_ContLoss": "235719.5", "geom_point": "0101000020E6100000BEA57B210D005FC07713185FF29A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.99921413, 49.209888217000064 ], [ -123.999203788999978, 49.20856480900008 ], [ -123.999974273999896, 49.208300955000055 ], [ -124.000029302999948, 49.208282102000048 ], [ -124.000219476999973, 49.208165004000101 ], [ -124.000566532999969, 49.207846587000056 ], [ -124.000903390999937, 49.207537504000058 ], [ -124.001227089999986, 49.207283224000015 ], [ -124.002233587999925, 49.207798905000089 ], [ -124.002284683999932, 49.207886309000116 ], [ -124.002241979999923, 49.207985524000094 ], [ -124.001695605999942, 49.208443613000057 ], [ -124.001646613, 49.208531825000087 ], [ -124.00167719299999, 49.208617028000056 ], [ -124.002346107, 49.20907238800006 ], [ -124.002483403999946, 49.20910290500008 ], [ -124.002620111999974, 49.209080190000073 ], [ -124.003545592999942, 49.208449915000067 ], [ -124.004483581, 49.208964302000048 ], [ -124.00431343000001, 49.209105594000064 ], [ -124.004287400999928, 49.209127192000047 ], [ -124.003907500999958, 49.209442607000028 ], [ -124.003469457000037, 49.209685389000079 ], [ -124.003127701999958, 49.209874792000065 ], [ -124.002952681999915, 49.210054308000089 ], [ -124.002864199999962, 49.210262490000055 ], [ -124.002820299999939, 49.210901012000065 ], [ -124.002861117999913, 49.211131300000027 ], [ -124.003108598999972, 49.211469104000066 ], [ -124.002960475999927, 49.211567502000051 ], [ -124.002631279999918, 49.211786195000073 ], [ -124.002293224000013, 49.211965022000079 ], [ -124.000792613999977, 49.212758786000109 ], [ -124.000434765999969, 49.212965928000074 ], [ -124.000054177999985, 49.213186243000145 ], [ -123.999737602999943, 49.21336949300013 ], [ -123.999153886999935, 49.21370350600008 ], [ -123.998505109999911, 49.213702303000048 ], [ -123.998494919999985, 49.213143807000066 ], [ -123.998495837999897, 49.212904280000018 ], [ -123.9984998, 49.211916595000055 ], [ -123.998431307999951, 49.211787481000094 ], [ -123.99784398499996, 49.211155298000094 ], [ -123.99901771699993, 49.210654902000016 ], [ -123.999068686999962, 49.210607171000056 ], [ -123.999150695999958, 49.210530386000123 ], [ -123.999218094999947, 49.210396607000128 ], [ -123.99921413, 49.209888217000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97301249", "BldgCostT": "64664999", "sL_LossRatio": "0.759123617855262", "sL_AssetLoss": "854650", "sL_BldgLoss": "648785", "sL_StrLoss": "332415", "sL_NStrLoss": "316370", "sL_ContLoss": "205865", "geom_point": "0101000020E61000003187D506C4FF5EC0930C08C6249B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.997211986, 49.209048314000064 ], [ -123.999203788999978, 49.20856480900008 ], [ -123.99921413, 49.209888217000064 ], [ -123.999218094999947, 49.210396607000128 ], [ -123.999150695999958, 49.210530386000123 ], [ -123.999068686999962, 49.210607171000056 ], [ -123.99901771699993, 49.210654902000016 ], [ -123.99784398499996, 49.211155298000094 ], [ -123.998431307999951, 49.211787481000094 ], [ -123.9984998, 49.211916595000055 ], [ -123.998495837999897, 49.212904280000018 ], [ -123.998494919999985, 49.213143807000066 ], [ -123.998505109999911, 49.213702303000048 ], [ -123.99850231299996, 49.213834094000035 ], [ -123.99849721899993, 49.214077604000103 ], [ -123.99811237599999, 49.214221703000078 ], [ -123.997836201999974, 49.214423713000016 ], [ -123.997662793999922, 49.214786991000047 ], [ -123.997433567999963, 49.214783066000066 ], [ -123.995782108999961, 49.214754693000074 ], [ -123.994493697999957, 49.215525802000101 ], [ -123.99420037099999, 49.215648215000094 ], [ -123.994028052999965, 49.215666591000065 ], [ -123.993292158999907, 49.215142401 ], [ -123.993455675999968, 49.215008602000111 ], [ -123.993607176999944, 49.214834001000035 ], [ -123.993658007999969, 49.214728651000073 ], [ -123.993893503999985, 49.214240598000053 ], [ -123.993939785999942, 49.213611690000079 ], [ -123.993969809999939, 49.213203796000045 ], [ -123.994023646999963, 49.212722844000048 ], [ -123.994052481999972, 49.212465191000099 ], [ -123.994073671, 49.211938336000074 ], [ -123.994103329999959, 49.211200899000055 ], [ -123.99414497, 49.210163589000054 ], [ -123.994187414999928, 49.209975309000093 ], [ -123.994401484999983, 49.209940595000027 ], [ -123.99529731599992, 49.209619607000093 ], [ -123.996285215999976, 49.209293101000114 ], [ -123.997211986, 49.209048314000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277101333", "BldgCostT": "184728333", "sL_LossRatio": "0.816389833392162", "sL_AssetLoss": "1575196", "sL_BldgLoss": "1285974", "sL_StrLoss": "643743", "sL_NStrLoss": "642231", "sL_ContLoss": "289222", "geom_point": "0101000020E6100000A26AD4A6DEFF5EC01F322FD16A9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.995587665999935, 49.203047207000083 ], [ -123.995595499999979, 49.20286559100002 ], [ -123.996823378999935, 49.203332300000078 ], [ -123.997678690999976, 49.203597604000045 ], [ -123.99938740099995, 49.20404539600009 ], [ -124.000006343, 49.204178342000048 ], [ -124.000155662999958, 49.204210433000185 ], [ -124.000212570999963, 49.204222658000035 ], [ -124.000233991999949, 49.204227265000078 ], [ -124.0007774799999, 49.204344008000092 ], [ -124.000890257999984, 49.20436319200013 ], [ -124.001454175999953, 49.204459191000062 ], [ -124.001516585999966, 49.205399492000062 ], [ -124.00157601399998, 49.205643711000107 ], [ -124.001822723999922, 49.205966145000012 ], [ -124.002494219999974, 49.206298232000073 ], [ -124.001227089999986, 49.207283224000015 ], [ -124.000903390999937, 49.207537504000058 ], [ -124.000566532999969, 49.207846587000056 ], [ -124.000219476999973, 49.208165004000101 ], [ -124.000029302999948, 49.208282102000048 ], [ -123.999974273999896, 49.208300955000055 ], [ -123.999203788999978, 49.20856480900008 ], [ -123.997211986, 49.209048314000064 ], [ -123.996285215999976, 49.209293101000114 ], [ -123.99529731599992, 49.209619607000093 ], [ -123.994401484999983, 49.209940595000027 ], [ -123.994187414999928, 49.209975309000093 ], [ -123.994351307999949, 49.20887978700005 ], [ -123.994440714999911, 49.208745507000046 ], [ -123.994716414999942, 49.208524696000083 ], [ -123.994975406999913, 49.208337701000076 ], [ -123.995112305999953, 49.208185419000102 ], [ -123.995192807999956, 49.208004092000117 ], [ -123.995193394999959, 49.207830301000072 ], [ -123.995196285999967, 49.207191999 ], [ -123.995182974999977, 49.206801807000048 ], [ -123.995182390999915, 49.206672481000034 ], [ -123.995178701999933, 49.205851795000065 ], [ -123.995222406999943, 49.205697698000037 ], [ -123.995454996999911, 49.205391401000036 ], [ -123.995501596999986, 49.205265283000053 ], [ -123.995539800999964, 49.20431610100011 ], [ -123.995564891999933, 49.203576391000098 ], [ -123.995587665999935, 49.203047207000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228071919", "BldgCostT": "138450257", "sL_LossRatio": "0.668025260407215", "sL_AssetLoss": "1102120", "sL_BldgLoss": "736244", "sL_StrLoss": "307016", "sL_NStrLoss": "429228", "sL_ContLoss": "365876", "geom_point": "0101000020E610000006323D1F6D005FC0BFCCC9EE769A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.001695605999942, 49.208443613000057 ], [ -124.002241979999923, 49.207985524000094 ], [ -124.002284683999932, 49.207886309000116 ], [ -124.002233587999925, 49.207798905000089 ], [ -124.001227089999986, 49.207283224000015 ], [ -124.002494219999974, 49.206298232000073 ], [ -124.001822723999922, 49.205966145000012 ], [ -124.00157601399998, 49.205643711000107 ], [ -124.001516585999966, 49.205399492000062 ], [ -124.001454175999953, 49.204459191000062 ], [ -124.001553500999961, 49.20447725600016 ], [ -124.004207071999986, 49.204864065000024 ], [ -124.005622011999961, 49.204969479000056 ], [ -124.006597490999965, 49.205042948000042 ], [ -124.007888554999965, 49.205140170000099 ], [ -124.00857391199996, 49.205213153000059 ], [ -124.00885320699993, 49.20526473000011 ], [ -124.008866451, 49.205267188000086 ], [ -124.010880806999964, 49.205723994000103 ], [ -124.010893734999925, 49.205727035000038 ], [ -124.012416676999976, 49.206083767000038 ], [ -124.012610704999958, 49.206129197000116 ], [ -124.012546715999974, 49.206279601000105 ], [ -124.012260807999922, 49.206806509000053 ], [ -124.013805984999948, 49.207171807000059 ], [ -124.013160284999913, 49.207742392000085 ], [ -124.011910691999958, 49.207457391000041 ], [ -124.011534080999979, 49.208149197000047 ], [ -124.011163495999938, 49.208795092000052 ], [ -124.010804094999983, 49.208733616000103 ], [ -124.00931529199994, 49.208395392000085 ], [ -124.009120482999947, 49.208352703000116 ], [ -124.007444284999906, 49.20798539400004 ], [ -124.005946716999944, 49.207629983000068 ], [ -124.00531363099995, 49.208207362000039 ], [ -124.004653696999981, 49.208809213000073 ], [ -124.004483581, 49.208964302000048 ], [ -124.003545592999942, 49.208449915000067 ], [ -124.002620111999974, 49.209080190000073 ], [ -124.002483403999946, 49.20910290500008 ], [ -124.002346107, 49.20907238800006 ], [ -124.00167719299999, 49.208617028000056 ], [ -124.001646613, 49.208531825000087 ], [ -124.001695605999942, 49.208443613000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164893667", "BldgCostT": "102961667", "sL_LossRatio": "0.751076421317371", "sL_AssetLoss": "1087864", "sL_BldgLoss": "817069", "sL_StrLoss": "426167", "sL_NStrLoss": "390902", "sL_ContLoss": "270795", "geom_point": "0101000020E610000074CB053680FF5EC091239510499A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.992579614999926, 49.206965004000047 ], [ -123.991832997999964, 49.206469298000044 ], [ -123.99059669799999, 49.206736209000027 ], [ -123.990301984999959, 49.206732505000097 ], [ -123.98870511799997, 49.206647806 ], [ -123.98882872399993, 49.206389894000104 ], [ -123.988763091999928, 49.206099701000056 ], [ -123.988476815999931, 49.205649499000117 ], [ -123.988184736999955, 49.205196232000041 ], [ -123.987992313999953, 49.204897590000058 ], [ -123.987841589999945, 49.204830913000073 ], [ -123.987631795999931, 49.204671206000157 ], [ -123.987501784999935, 49.204506691000056 ], [ -123.98749442399999, 49.204265197 ], [ -123.987681817999956, 49.204053514000059 ], [ -123.98793981099999, 49.203956595000072 ], [ -123.988359682999914, 49.203854504000084 ], [ -123.98866351400001, 49.203807988000072 ], [ -123.988969921999967, 49.203793912000059 ], [ -123.989428511999961, 49.203876299000065 ], [ -123.989524460999974, 49.203911373000047 ], [ -123.98966210299993, 49.203961691000103 ], [ -123.990026077999914, 49.204169307000022 ], [ -123.990327216999958, 49.204343307000087 ], [ -123.990600495999942, 49.204429395 ], [ -123.991633208999971, 49.20442970400012 ], [ -123.99169071299994, 49.204272290000105 ], [ -123.991912344999903, 49.204128773000022 ], [ -123.992174587999955, 49.203958997000043 ], [ -123.992929387999965, 49.203471510000064 ], [ -123.993433114, 49.203144989000087 ], [ -123.993653399999928, 49.203060887000028 ], [ -123.993849398999956, 49.203031209000088 ], [ -123.994074187999985, 49.203065989000102 ], [ -123.994221918000036, 49.203140793000067 ], [ -123.994347797999964, 49.203242198000112 ], [ -123.994554091999973, 49.20348278400008 ], [ -123.994821983999955, 49.203565287000046 ], [ -123.995564891999933, 49.203576391000098 ], [ -123.995539800999964, 49.20431610100011 ], [ -123.995501596999986, 49.205265283000053 ], [ -123.995454996999911, 49.205391401000036 ], [ -123.995222406999943, 49.205697698000037 ], [ -123.995178701999933, 49.205851795000065 ], [ -123.995182390999915, 49.206672481000034 ], [ -123.995182974999977, 49.206801807000048 ], [ -123.995196285999967, 49.207191999 ], [ -123.995193394999959, 49.207830301000072 ], [ -123.994040403999975, 49.207820602000012 ], [ -123.993810116999953, 49.207753196000127 ], [ -123.993479491999921, 49.207565192000075 ], [ -123.992579614999926, 49.206965004000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139465145", "BldgCostT": "90876524", "sL_LossRatio": "0.784939990664986", "sL_AssetLoss": "972682", "sL_BldgLoss": "763497", "sL_StrLoss": "411824", "sL_NStrLoss": "351673", "sL_ContLoss": "209185", "geom_point": "0101000020E61000005162BE5956FF5EC0CE8798F9AB9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.985421815000024, 49.20810020000004 ], [ -123.985458399999942, 49.207573193000073 ], [ -123.98546109599999, 49.20731666100005 ], [ -123.985462797999972, 49.207154614000032 ], [ -123.985466584999969, 49.206845806000082 ], [ -123.985465808999933, 49.206640591000031 ], [ -123.985464345000011, 49.206264971000074 ], [ -123.986659757999959, 49.206275578000096 ], [ -123.98748492, 49.206463789000033 ], [ -123.98800569299999, 49.20658260200004 ], [ -123.98870511799997, 49.206647806 ], [ -123.990301984999959, 49.206732505000097 ], [ -123.99059669799999, 49.206736209000027 ], [ -123.991832997999964, 49.206469298000044 ], [ -123.992579614999926, 49.206965004000047 ], [ -123.993479491999921, 49.207565192000075 ], [ -123.993810116999953, 49.207753196000127 ], [ -123.994040403999975, 49.207820602000012 ], [ -123.995193394999959, 49.207830301000072 ], [ -123.995192807999956, 49.208004092000117 ], [ -123.995112305999953, 49.208185419000102 ], [ -123.994975406999913, 49.208337701000076 ], [ -123.994716414999942, 49.208524696000083 ], [ -123.994440714999911, 49.208745507000046 ], [ -123.994351307999949, 49.20887978700005 ], [ -123.994187414999928, 49.209975309000093 ], [ -123.993490164999983, 49.20999074500002 ], [ -123.993298109999955, 49.209995006000071 ], [ -123.993133469999975, 49.209998650000074 ], [ -123.991008304, 49.210045710000074 ], [ -123.989327212999925, 49.210082910000047 ], [ -123.988620491999967, 49.210092190000118 ], [ -123.98671680299999, 49.210121480000119 ], [ -123.986534607999985, 49.210127210000032 ], [ -123.985602179999916, 49.210156430000048 ], [ -123.985366617999929, 49.210163800000032 ], [ -123.985421815000024, 49.20810020000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "331139417", "BldgCostT": "220906667", "sL_LossRatio": "0.819879735181618", "sL_AssetLoss": "1114590.3", "sL_BldgLoss": "913830", "sL_StrLoss": "577113", "sL_NStrLoss": "336717", "sL_ContLoss": "200760.3", "geom_point": "0101000020E6100000417940551CFF5EC04679294C4A9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.980269034999964, 49.215826672000084 ], [ -123.97981566299994, 49.215463404000047 ], [ -123.979537133999955, 49.215149349000022 ], [ -123.979354459999954, 49.214776739000101 ], [ -123.97904667499995, 49.2143468720001 ], [ -123.97815697, 49.213514415000077 ], [ -123.977494387999968, 49.212999286000112 ], [ -123.977470987999936, 49.212981113000076 ], [ -123.977130708999979, 49.21263792700006 ], [ -123.977000614999938, 49.212506710000063 ], [ -123.976988291999959, 49.212253515000079 ], [ -123.977104284999939, 49.211542543000078 ], [ -123.977184393999892, 49.211435989000059 ], [ -123.977461062000017, 49.211224167000069 ], [ -123.977978039, 49.21103846799999 ], [ -123.979326621999959, 49.21068557100012 ], [ -123.98079749599999, 49.210611396000019 ], [ -123.981091417999963, 49.210603794000122 ], [ -123.982957496000012, 49.210555518000049 ], [ -123.983257689999959, 49.210498105000049 ], [ -123.983463693999937, 49.210396597000077 ], [ -123.983613384, 49.210201290000057 ], [ -123.98416889399999, 49.210202710000075 ], [ -123.984773097999934, 49.210186903000093 ], [ -123.985366617999929, 49.210163800000032 ], [ -123.985602179999916, 49.210156430000048 ], [ -123.986534607999985, 49.210127210000032 ], [ -123.98671680299999, 49.210121480000119 ], [ -123.988620491999967, 49.210092190000118 ], [ -123.989327212999925, 49.210082910000047 ], [ -123.991008304, 49.210045710000074 ], [ -123.993133469999975, 49.209998650000074 ], [ -123.993298109999955, 49.209995006000071 ], [ -123.993490164999983, 49.20999074500002 ], [ -123.994187414999928, 49.209975309000093 ], [ -123.99414497, 49.210163589000054 ], [ -123.994103329999959, 49.211200899000055 ], [ -123.994073671, 49.211938336000074 ], [ -123.994052481999972, 49.212465191000099 ], [ -123.994023646999963, 49.212722844000048 ], [ -123.993969809999939, 49.213203796000045 ], [ -123.993939785999942, 49.213611690000079 ], [ -123.993893503999985, 49.214240598000053 ], [ -123.993658007999969, 49.214728651000073 ], [ -123.993607176999944, 49.214834001000035 ], [ -123.993455675999968, 49.215008602000111 ], [ -123.993292158999907, 49.215142401 ], [ -123.992757395999931, 49.215549344000074 ], [ -123.992479335999988, 49.215699035000029 ], [ -123.99214284599995, 49.215803521000112 ], [ -123.991102599, 49.216003834000027 ], [ -123.988936197999948, 49.216423572000039 ], [ -123.98807439899997, 49.216873928000112 ], [ -123.987843654999963, 49.216943445000055 ], [ -123.98757484599993, 49.216973541000065 ], [ -123.98635847599995, 49.217027388000069 ], [ -123.985079592, 49.217009694000119 ], [ -123.984887332999932, 49.217007039000038 ], [ -123.984689972999931, 49.217004292000055 ], [ -123.983270507999947, 49.216932746000083 ], [ -123.98207983399999, 49.216772706000057 ], [ -123.981853844999989, 49.216700940000145 ], [ -123.981463842999943, 49.216426213000055 ], [ -123.980452679999971, 49.215925550000094 ], [ -123.980269034999964, 49.215826672000084 ] ], [ [ -123.990115061999973, 49.215902333000038 ], [ -123.99010559499996, 49.215428379000052 ], [ -123.989693718, 49.215431909000088 ], [ -123.989688331999943, 49.215162092000064 ], [ -123.988040834999964, 49.215176197000062 ], [ -123.988035456999967, 49.214906378000073 ], [ -123.98762358499999, 49.214909900000066 ], [ -123.987618208999919, 49.21464008300007 ], [ -123.986794467999957, 49.214647123000084 ], [ -123.986799839999918, 49.214916941000098 ], [ -123.986387967999946, 49.214920459000076 ], [ -123.986393336999981, 49.215190278000108 ], [ -123.985569587999919, 49.215197310000079 ], [ -123.985575594, 49.215499402000027 ], [ -123.989038377999975, 49.215564042000054 ], [ -123.989024613999973, 49.2158820020001 ], [ -123.990115061999973, 49.215902333000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128531583", "BldgCostT": "82803333", "sL_LossRatio": "0.751508384417028", "sL_AssetLoss": "1036208", "sL_BldgLoss": "778719", "sL_StrLoss": "399019", "sL_NStrLoss": "379700", "sL_ContLoss": "257489", "geom_point": "0101000020E6100000FDEC1DC1CFFE5EC0BAB0EA83979A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.977709908999927, 49.206169299000052 ], [ -123.977234408999976, 49.205307540000028 ], [ -123.977231901999986, 49.205303984000082 ], [ -123.977258094999925, 49.204323911000124 ], [ -123.977259112999889, 49.204206894000073 ], [ -123.97759748199995, 49.204404094000068 ], [ -123.979280880999937, 49.205649494000056 ], [ -123.979465693999899, 49.205816787000046 ], [ -123.979577716999984, 49.206015196000116 ], [ -123.979576889, 49.206192605000069 ], [ -123.982280483999915, 49.206216190000049 ], [ -123.983552482, 49.206232797000069 ], [ -123.98427072599999, 49.206244886000022 ], [ -123.984325669999976, 49.206245816000084 ], [ -123.985464345000011, 49.206264971000074 ], [ -123.985465808999933, 49.206640591000031 ], [ -123.985466584999969, 49.206845806000082 ], [ -123.985462797999972, 49.207154614000032 ], [ -123.98546109599999, 49.20731666100005 ], [ -123.985458399999942, 49.207573193000073 ], [ -123.985421815000024, 49.20810020000004 ], [ -123.985366617999929, 49.210163800000032 ], [ -123.984773097999934, 49.210186903000093 ], [ -123.98416889399999, 49.210202710000075 ], [ -123.983613384, 49.210201290000057 ], [ -123.98343497799999, 49.210141189000048 ], [ -123.981407079999926, 49.209525198000073 ], [ -123.980486523999957, 49.209404394000067 ], [ -123.978891689999955, 49.209332194000062 ], [ -123.978499497999977, 49.209267181000016 ], [ -123.978155998999938, 49.209124816000063 ], [ -123.977911689999971, 49.208954292000108 ], [ -123.977855307999974, 49.208914925000116 ], [ -123.977836477999958, 49.208901797000117 ], [ -123.977351015999957, 49.208397396000144 ], [ -123.977699205999954, 49.206477947000103 ], [ -123.977705003999944, 49.206310786000081 ], [ -123.977709908999927, 49.206169299000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "446567751", "BldgCostT": "287900001", "sL_LossRatio": "0.884402372576709", "sL_AssetLoss": "728768.85", "sL_BldgLoss": "644524.9", "sL_StrLoss": "511325.9", "sL_NStrLoss": "133199", "sL_ContLoss": "84243.95", "geom_point": "0101000020E6100000E6656F8460005FC021B42FEAA49C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.003411107999952, 49.229867331000072 ], [ -124.003148725999949, 49.229811136000116 ], [ -124.001068075999967, 49.229787892000026 ], [ -124.000001225999981, 49.229781953000099 ], [ -123.9974532, 49.229767718000055 ], [ -123.996505138999979, 49.229703911000101 ], [ -123.996491409999948, 49.229703007000111 ], [ -123.995881285999971, 49.229626816000078 ], [ -123.994139702999988, 49.229537698000065 ], [ -123.993681215999985, 49.22947789600002 ], [ -123.993212306999908, 49.229373707 ], [ -123.993008746999934, 49.229307269000095 ], [ -123.992600710999938, 49.229174103000041 ], [ -123.991761012000012, 49.22882359600009 ], [ -123.989961911999927, 49.228257912000046 ], [ -123.987759012999931, 49.227607304000124 ], [ -123.98588653199999, 49.22713869600009 ], [ -123.985523402999917, 49.227047811000077 ], [ -123.984545803999978, 49.227124088000025 ], [ -123.983676581999987, 49.227076299000032 ], [ -123.983092695999957, 49.227251795 ], [ -123.982828392999963, 49.227271995000059 ], [ -123.9825887, 49.22726219200009 ], [ -123.982323502, 49.22717618700004 ], [ -123.98205150199999, 49.226962203000021 ], [ -123.981528332999943, 49.226466202000033 ], [ -123.981113846999932, 49.226216188000102 ], [ -123.981599935999952, 49.225765192000054 ], [ -123.981709909, 49.225508802000064 ], [ -123.981702500999944, 49.225300692000076 ], [ -123.981700563999951, 49.225296694000029 ], [ -123.98135411899996, 49.225253499000061 ], [ -123.981061996999941, 49.225048390000069 ], [ -123.98081379099996, 49.224674190000023 ], [ -123.980808625999941, 49.224413211000126 ], [ -123.981220577999977, 49.224409712000075 ], [ -123.981215235, 49.224139894000125 ], [ -123.986158624, 49.22409779400008 ], [ -123.98618010399997, 49.225177065000047 ], [ -123.985768147, 49.225180582000142 ], [ -123.98578425, 49.225990035000052 ], [ -123.985372286, 49.225993551000066 ], [ -123.985377652999901, 49.226263368000076 ], [ -123.986201584999918, 49.226256337000081 ], [ -123.986205735999974, 49.226464868 ], [ -123.986650260999966, 49.226522370000062 ], [ -123.987442862999956, 49.226515596000162 ], [ -123.98744577399999, 49.226661751000059 ], [ -123.987940118999944, 49.226781207000045 ], [ -123.988272179999939, 49.22677836600014 ], [ -123.988274161999939, 49.226877690000094 ], [ -123.98875840299999, 49.227044069000023 ], [ -123.989101507999976, 49.227041132000089 ], [ -123.989103936999939, 49.227162788000058 ], [ -123.989365988999921, 49.2272528230001 ], [ -123.989727060999897, 49.227259554000064 ], [ -123.989725065999949, 49.227305655000073 ], [ -123.989930843999957, 49.227303891000069 ], [ -123.989933719999968, 49.227447880000064 ], [ -123.99029111199998, 49.227570666000105 ], [ -123.990760188999928, 49.227566643000081 ], [ -123.9907637109999, 49.227742707000139 ], [ -123.991009928999972, 49.227834365000078 ], [ -123.991177563999941, 49.227832927000051 ], [ -123.991178849999955, 49.227897248000019 ], [ -123.991718533, 49.228098147000019 ], [ -123.992006923999924, 49.228095670000101 ], [ -123.99200914, 49.228206324000034 ], [ -123.992139543999912, 49.228254868000107 ], [ -123.993273089999946, 49.228275965000108 ], [ -123.993266601999935, 49.228426090000042 ], [ -123.99377518099999, 49.228435551000118 ], [ -123.993757220999925, 49.228851300000095 ], [ -123.993891194999946, 49.228889064000064 ], [ -123.99449505699998, 49.228883866000075 ], [ -123.994498083999943, 49.229034621000054 ], [ -123.996891538999989, 49.229133073000042 ], [ -123.998620366999916, 49.229118138000047 ], [ -123.998604050999916, 49.228308688000041 ], [ -124.000251978, 49.228294430000126 ], [ -124.000257424999958, 49.228564246000133 ], [ -124.001081391999932, 49.22855710700005 ], [ -124.001086843999943, 49.228826924000032 ], [ -124.001498830999978, 49.22882335300001 ], [ -124.001504284999925, 49.229093168000162 ], [ -124.003976211999912, 49.229071710000042 ], [ -124.003954340999925, 49.227992445000098 ], [ -124.005408949999932, 49.227979792000049 ], [ -124.005503743999938, 49.225772516000092 ], [ -124.010571667999955, 49.225866121000067 ], [ -124.01058115099994, 49.22564474100006 ], [ -124.016065079000029, 49.225745762 ], [ -124.016058184999977, 49.22590717200007 ], [ -124.016622268999939, 49.225917547000101 ], [ -124.016619775999914, 49.225975925000064 ], [ -124.017365043999959, 49.225989628000086 ], [ -124.017362877999986, 49.22604039400003 ], [ -124.018071022999919, 49.226053410000119 ], [ -124.018069066999956, 49.226099226 ], [ -124.01818243699995, 49.226101310000018 ], [ -124.018284453999939, 49.223710426000089 ], [ -124.019156869999932, 49.223726453000097 ], [ -124.019176274999936, 49.223271448000069 ], [ -124.014571834999927, 49.223311983000031 ], [ -124.014577359, 49.223581799000087 ], [ -124.013341536999974, 49.223592647000032 ], [ -124.01334705399999, 49.223862464000078 ], [ -124.01211122499997, 49.223873299000061 ], [ -124.012100203, 49.223333667000091 ], [ -124.01004050599991, 49.223351698000087 ], [ -124.010046007, 49.223621513000055 ], [ -124.008810181999962, 49.223632314000064 ], [ -124.008793702999967, 49.222822866000037 ], [ -124.008381768000021, 49.222826462000043 ], [ -124.008376276999968, 49.222556646000051 ], [ -124.00796434399993, 49.222560242000071 ], [ -124.007958854999956, 49.222290425000047 ], [ -124.007546923999897, 49.222294019000088 ], [ -124.007535951999927, 49.221754387000011 ], [ -124.007124025999985, 49.221757979000095 ], [ -124.007107574999921, 49.220948530000086 ], [ -124.00751949499994, 49.220944938000102 ], [ -124.007514008999934, 49.22067512200011 ], [ -124.009161678999959, 49.220660737000074 ], [ -124.009161211999938, 49.220637825000075 ], [ -124.008160725999943, 49.22061935000005 ], [ -124.008216454999939, 49.219319671000079 ], [ -124.007898490999963, 49.219322446000021 ], [ -124.007895119999958, 49.219156688000055 ], [ -124.007586611999955, 49.219055303000111 ], [ -124.007069193999982, 49.219059815000044 ], [ -124.007065623999935, 49.218884087000056 ], [ -124.006786680999966, 49.218792413000045 ], [ -124.006239907999955, 49.21879717900007 ], [ -124.006236137999963, 49.218611479000074 ], [ -124.006018838999921, 49.218540062000031 ], [ -124.005987174999945, 49.218529516000096 ], [ -124.004998730999901, 49.218538121000101 ], [ -124.004993258999946, 49.218268304000098 ], [ -124.004581360999978, 49.218271888000082 ], [ -124.004577061999953, 49.218059821000104 ], [ -124.004408074999944, 49.218003530000097 ], [ -124.003752101000018, 49.218009232000078 ], [ -124.003747527999948, 49.217783498000095 ], [ -124.00361854099999, 49.217740529000082 ], [ -124.00251095499999, 49.217750148000079 ], [ -124.002505496999973, 49.21748033100009 ], [ -124.002439623, 49.217480903000087 ], [ -124.002361224, 49.21930397700006 ], [ -123.99687808699997, 49.219202259000063 ], [ -123.996961906999971, 49.21725845000006 ], [ -123.99673358199999, 49.217260421000091 ], [ -123.996728156999922, 49.216990604000117 ], [ -123.996316267999958, 49.216994158000098 ], [ -123.996294572999972, 49.215914888000064 ], [ -123.995496635000038, 49.215921768000051 ], [ -123.994924838999978, 49.216290563000079 ], [ -123.99457293899998, 49.216433663000096 ], [ -123.994081739999984, 49.216410963000044 ], [ -123.993670892999916, 49.216207354000062 ], [ -123.993416823999937, 49.216209539000033 ], [ -123.99341423099996, 49.216080154000053 ], [ -123.993135656000021, 49.215942093000059 ], [ -123.99176389499999, 49.215953880000022 ], [ -123.991774692999982, 49.216493516000064 ], [ -123.991675981999947, 49.216494363000102 ], [ -123.991544705999985, 49.219530643000056 ], [ -123.986061565999947, 49.219428374000124 ], [ -123.986069384999965, 49.219248015000126 ], [ -123.98720343, 49.219374973000072 ], [ -123.987196816999955, 49.219303096000083 ], [ -123.987439587999987, 49.219081628000083 ], [ -123.987686695999969, 49.218920520000019 ], [ -123.988064793999953, 49.218742118000122 ], [ -123.988477995999915, 49.218642725000066 ], [ -123.98933696899995, 49.218511023000062 ], [ -123.98928542299997, 49.218275055000049 ], [ -123.989056633999937, 49.218078097000102 ], [ -123.98757484599993, 49.216973541000065 ], [ -123.987843654999963, 49.216943445000055 ], [ -123.98807439899997, 49.216873928000112 ], [ -123.988936197999948, 49.216423572000039 ], [ -123.991102599, 49.216003834000027 ], [ -123.99214284599995, 49.215803521000112 ], [ -123.992479335999988, 49.215699035000029 ], [ -123.992757395999931, 49.215549344000074 ], [ -123.993292158999907, 49.215142401 ], [ -123.994028052999965, 49.215666591000065 ], [ -123.99420037099999, 49.215648215000094 ], [ -123.994493697999957, 49.215525802000101 ], [ -123.995782108999961, 49.214754693000074 ], [ -123.997433567999963, 49.214783066000066 ], [ -123.997662793999922, 49.214786991000047 ], [ -123.997642656999943, 49.214974808000072 ], [ -123.997567394999948, 49.215676703000071 ], [ -123.997520500999912, 49.216114202 ], [ -123.997642191999915, 49.21621999300001 ], [ -123.997929286999948, 49.21633878800008 ], [ -123.998808097999955, 49.216541501000101 ], [ -124.000028115999982, 49.216730392000024 ], [ -124.000645013999986, 49.216825892000074 ], [ -124.001347595999945, 49.217172096000112 ], [ -124.001630064999958, 49.217180409000015 ], [ -124.002343328999984, 49.217201379000109 ], [ -124.003008101999939, 49.21722090400003 ], [ -124.00340077, 49.217222397000171 ], [ -124.003620411999961, 49.217223234000116 ], [ -124.00454070399999, 49.217226733000096 ], [ -124.005694417999962, 49.217231117000019 ], [ -124.005952899999926, 49.21723209600006 ], [ -124.005963806999887, 49.217874298000083 ], [ -124.007075582999931, 49.218274896000132 ], [ -124.008866525999949, 49.218804102000057 ], [ -124.009199202999952, 49.218884091000078 ], [ -124.009522983999915, 49.218915203000051 ], [ -124.010028195999908, 49.218907506000114 ], [ -124.010023702999916, 49.219172103000062 ], [ -124.01005779800002, 49.219241202000077 ], [ -124.010093201999936, 49.219310208000067 ], [ -124.010232596999984, 49.219419104000025 ], [ -124.01055330299999, 49.219554589000033 ], [ -124.011007910999922, 49.219706369000043 ], [ -124.011070003999976, 49.219727090000085 ], [ -124.011473898999952, 49.219808416000014 ], [ -124.012146920999939, 49.219887672000013 ], [ -124.012362595999917, 49.219913088000091 ], [ -124.013316436999943, 49.219983447000075 ], [ -124.013566032999961, 49.220001854000024 ], [ -124.014574592999935, 49.220221193000079 ], [ -124.015017098, 49.219562195000066 ], [ -124.016304278999897, 49.219874001000022 ], [ -124.017020902999974, 49.219960110000052 ], [ -124.017294799999945, 49.22003540900004 ], [ -124.017992989999954, 49.220422802 ], [ -124.018109702999965, 49.220549205000054 ], [ -124.018158819999911, 49.220780604000041 ], [ -124.01726388499999, 49.220791992 ], [ -124.016499912999947, 49.220850906000138 ], [ -124.016420452999952, 49.220864017000096 ], [ -124.016207267999903, 49.220899182000096 ], [ -124.01573861299994, 49.220976493000116 ], [ -124.015260117999958, 49.221034300000042 ], [ -124.014638920999957, 49.221028280000048 ], [ -124.013255480999959, 49.220870139000063 ], [ -124.013089337999958, 49.220851162000031 ], [ -124.012930386, 49.221208041000118 ], [ -124.01289963499994, 49.221277165000103 ], [ -124.012896708999961, 49.221313107000135 ], [ -124.012884982999964, 49.221458763000058 ], [ -124.012955404999957, 49.221672560000059 ], [ -124.013091595999953, 49.2218158270001 ], [ -124.013149716999948, 49.221876925000153 ], [ -124.013212331999981, 49.221912063000069 ], [ -124.013400245999961, 49.222017511000033 ], [ -124.014523176999901, 49.22245146200008 ], [ -124.015073612999913, 49.222573268000076 ], [ -124.018708889999957, 49.222744567000035 ], [ -124.019085355999934, 49.222699256000091 ], [ -124.01934984899998, 49.222609574000082 ], [ -124.019554006999911, 49.222487250000071 ], [ -124.020330190999942, 49.221819907000061 ], [ -124.020710295999933, 49.221432511000025 ], [ -124.020853287999969, 49.221229791000027 ], [ -124.02087149399992, 49.221175993000045 ], [ -124.020911403999946, 49.221057990000091 ], [ -124.021059167999937, 49.221073304000086 ], [ -124.021242128, 49.221092256000112 ], [ -124.021355295999939, 49.221104008000097 ], [ -124.021743957999959, 49.221100485000072 ], [ -124.02221076499994, 49.22109625500012 ], [ -124.022833487999904, 49.221090595000113 ], [ -124.022894428999976, 49.221366323000055 ], [ -124.023409512999976, 49.222384216000087 ], [ -124.02347766299998, 49.22242689600008 ], [ -124.023505914999973, 49.222536354000027 ], [ -124.023541076999962, 49.222677455000088 ], [ -124.023465875999975, 49.223870175000101 ], [ -124.023435573, 49.224350271000127 ], [ -124.02340745099994, 49.224489016000092 ], [ -124.023382111999965, 49.22461390700002 ], [ -124.023322733, 49.224906432000033 ], [ -124.023047750000018, 49.225500160000081 ], [ -124.022974368999883, 49.225578665000057 ], [ -124.022671142999954, 49.22590293300005 ], [ -124.022437718, 49.226081222000154 ], [ -124.022139318999976, 49.226309158000049 ], [ -124.021812247999947, 49.226532003000095 ], [ -124.021588458999929, 49.226684428000041 ], [ -124.02143608499992, 49.226788246000091 ], [ -124.019541985999979, 49.228078495000055 ], [ -124.018965367999925, 49.228472181 ], [ -124.018388515999945, 49.228839789000091 ], [ -124.017352563999964, 49.228642291000035 ], [ -124.016088318999962, 49.228401244000061 ], [ -124.015712590999925, 49.228329589000104 ], [ -124.014238094999925, 49.228091699000096 ], [ -124.013904993999944, 49.228117113000053 ], [ -124.01319084499994, 49.228321493000117 ], [ -124.013095095999944, 49.22834890500009 ], [ -124.012833266999962, 49.228426274000064 ], [ -124.012326593999973, 49.228576 ], [ -124.011473264999935, 49.2288280940001 ], [ -124.010906313999939, 49.228995596000097 ], [ -124.010572214, 49.229086215000088 ], [ -124.010524362999888, 49.229099205000132 ], [ -124.010321240999986, 49.22915429200004 ], [ -124.009296937, 49.229432137000074 ], [ -124.007636807999987, 49.22988244099999 ], [ -124.00709828399999, 49.230036497000086 ], [ -124.006897725999949, 49.230093878000083 ], [ -124.005952550999979, 49.23034382600008 ], [ -124.005768596999971, 49.230363922000031 ], [ -124.005494797999958, 49.230393881000047 ], [ -124.005001475999933, 49.230378449000057 ], [ -124.004704889999985, 49.230318955000108 ], [ -124.003939722000013, 49.230051847000063 ], [ -124.003411107999952, 49.229867331000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.921768020990204", "sL_AssetLoss": "12882.2", "sL_BldgLoss": "11874.4", "sL_StrLoss": "8832", "sL_NStrLoss": "3042.4", "sL_ContLoss": "1007.8", "geom_point": "0101000020E6100000AA2B1BADD5FE5EC044880A59069C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.979975199, 49.218662205000086 ], [ -123.981685597999927, 49.218404395000029 ], [ -123.98177020199995, 49.21844859 ], [ -123.981695831999957, 49.218566794000019 ], [ -123.982783669999961, 49.218815972000066 ], [ -123.982997428, 49.218864935000106 ], [ -123.985590259999981, 49.219205935000119 ], [ -123.985714305999934, 49.219208260000094 ], [ -123.985730543999964, 49.219210078000046 ], [ -123.985019871999924, 49.219196800000091 ], [ -123.985016631999912, 49.219271505000037 ], [ -123.979533536999924, 49.219168905000068 ], [ -123.979555022999961, 49.218674915000115 ], [ -123.979975199, 49.218662205000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "534629084", "BldgCostT": "351178334", "sL_LossRatio": "0.893597819485994", "sL_AssetLoss": "1083010.7", "sL_BldgLoss": "967776", "sL_StrLoss": "746458", "sL_NStrLoss": "221318", "sL_ContLoss": "115234.7", "geom_point": "0101000020E6100000FBE9BAE812005FC0C177380D939D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.99028791299996, 49.232424699000049 ], [ -123.989383016999938, 49.23209 ], [ -123.989217798999974, 49.232027208000041 ], [ -123.988095104999928, 49.231600504 ], [ -123.98715029899995, 49.231393802000063 ], [ -123.986480715999932, 49.231296708000045 ], [ -123.984808, 49.23113849100006 ], [ -123.983893603999931, 49.231086286000057 ], [ -123.98337506699994, 49.231113481000115 ], [ -123.983362931999963, 49.230882336000072 ], [ -123.983350291999969, 49.230642093000043 ], [ -123.98333433099999, 49.230377078000046 ], [ -123.98331572599993, 49.230016598000105 ], [ -123.983292268999975, 49.22960737100005 ], [ -123.982871978999967, 49.229553587000076 ], [ -123.982534320999918, 49.229429316000093 ], [ -123.981495718999938, 49.228857927000014 ], [ -123.979933548999909, 49.228357528000039 ], [ -123.979886629999953, 49.228342488000095 ], [ -123.97883099199997, 49.228005765000042 ], [ -123.978528510999979, 49.22783080100006 ], [ -123.978804068999978, 49.227741440000045 ], [ -123.979900796999971, 49.227385616000014 ], [ -123.980023800999959, 49.22730237500005 ], [ -123.980076357999948, 49.227198008000052 ], [ -123.980117867000018, 49.226622531000025 ], [ -123.980240257999967, 49.226521295000033 ], [ -123.981113846999932, 49.226216188000102 ], [ -123.981528332999943, 49.226466202000033 ], [ -123.98205150199999, 49.226962203000021 ], [ -123.982323502, 49.22717618700004 ], [ -123.9825887, 49.22726219200009 ], [ -123.982828392999963, 49.227271995000059 ], [ -123.983092695999957, 49.227251795 ], [ -123.983676581999987, 49.227076299000032 ], [ -123.984545803999978, 49.227124088000025 ], [ -123.985523402999917, 49.227047811000077 ], [ -123.98588653199999, 49.22713869600009 ], [ -123.987759012999931, 49.227607304000124 ], [ -123.989961911999927, 49.228257912000046 ], [ -123.991761012000012, 49.22882359600009 ], [ -123.992600710999938, 49.229174103000041 ], [ -123.993008746999934, 49.229307269000095 ], [ -123.993212306999908, 49.229373707 ], [ -123.993681215999985, 49.22947789600002 ], [ -123.994139702999988, 49.229537698000065 ], [ -123.995881285999971, 49.229626816000078 ], [ -123.996491409999948, 49.229703007000111 ], [ -123.996505138999979, 49.229703911000101 ], [ -123.9974532, 49.229767718000055 ], [ -124.000001225999981, 49.229781953000099 ], [ -124.001068075999967, 49.229787892000026 ], [ -124.003148725999949, 49.229811136000116 ], [ -124.003411107999952, 49.229867331000072 ], [ -124.003939722000013, 49.230051847000063 ], [ -124.004704889999985, 49.230318955000108 ], [ -124.005001475999933, 49.230378449000057 ], [ -124.005494797999958, 49.230393881000047 ], [ -124.005768596999971, 49.230363922000031 ], [ -124.005952550999979, 49.23034382600008 ], [ -124.006897725999949, 49.230093878000083 ], [ -124.00709828399999, 49.230036497000086 ], [ -124.007636807999987, 49.22988244099999 ], [ -124.009296937, 49.229432137000074 ], [ -124.010321240999986, 49.22915429200004 ], [ -124.010524362999888, 49.229099205000132 ], [ -124.010572214, 49.229086215000088 ], [ -124.010906313999939, 49.228995596000097 ], [ -124.011473264999935, 49.2288280940001 ], [ -124.012326593999973, 49.228576 ], [ -124.012833266999962, 49.228426274000064 ], [ -124.013095095999944, 49.22834890500009 ], [ -124.01319084499994, 49.228321493000117 ], [ -124.013904993999944, 49.228117113000053 ], [ -124.014238094999925, 49.228091699000096 ], [ -124.015712590999925, 49.228329589000104 ], [ -124.016088318999962, 49.228401244000061 ], [ -124.017352563999964, 49.228642291000035 ], [ -124.018388515999945, 49.228839789000091 ], [ -124.018126777999925, 49.229087095000111 ], [ -124.017826492, 49.229469597000069 ], [ -124.01737512599999, 49.230497322000069 ], [ -124.017340053999973, 49.230577158000038 ], [ -124.017305761, 49.230801563000099 ], [ -124.017401577, 49.230969058000021 ], [ -124.017594344999935, 49.231017628000075 ], [ -124.018447647999906, 49.231118830000121 ], [ -124.01869015199999, 49.231182493000091 ], [ -124.020774971999955, 49.231729709 ], [ -124.020848326999968, 49.231812096000084 ], [ -124.020855105999914, 49.231942772000075 ], [ -124.020821623999922, 49.231980095000054 ], [ -124.020724195999961, 49.232088737000105 ], [ -124.020134718999898, 49.232746203000076 ], [ -124.019963734999976, 49.232995562000077 ], [ -124.019884966999882, 49.233110516000067 ], [ -124.019451345999983, 49.23374299000006 ], [ -124.019306188999934, 49.234154500000038 ], [ -124.016947663999986, 49.234111171000045 ], [ -124.015638323999951, 49.234089911000126 ], [ -124.011708692999889, 49.234025966000097 ], [ -124.011488852, 49.234022366 ], [ -124.010871826999974, 49.234012301000078 ], [ -124.010624295999918, 49.234008271000114 ], [ -124.010390505999979, 49.23400446200008 ], [ -124.009779601999952, 49.23399446500013 ], [ -124.008755513000025, 49.23397843900009 ], [ -124.008096345999917, 49.233968137000012 ], [ -124.006902411999974, 49.233949445000071 ], [ -124.006666026999952, 49.233946538000026 ], [ -124.005902326999902, 49.233937153000049 ], [ -124.004247137999982, 49.233916783000048 ], [ -124.001307572999977, 49.233880560000067 ], [ -124.000001840999957, 49.233864460000142 ], [ -123.998906072999887, 49.233850903000061 ], [ -123.997912990999964, 49.233862703000057 ], [ -123.997012707999914, 49.233873387000088 ], [ -123.99589388699998, 49.233870965000115 ], [ -123.994710201999951, 49.233868394000119 ], [ -123.99403019199994, 49.233788299000018 ], [ -123.993093597999973, 49.233455803000062 ], [ -123.992651607999974, 49.233298892000022 ], [ -123.991168275999939, 49.232750297000052 ], [ -123.99028791299996, 49.232424699000049 ] ], [ [ -124.008461573999966, 49.231731274000069 ], [ -124.008473151999922, 49.231461310000086 ], [ -124.008145500999944, 49.231464170000088 ], [ -124.00814001, 49.231194354000081 ], [ -124.005642114999915, 49.231216132000121 ], [ -124.005189039999962, 49.231226063000058 ], [ -124.004839510999943, 49.231223117000035 ], [ -124.001148744999952, 49.23125516200011 ], [ -124.001137124999985, 49.231525126000072 ], [ -124.004437433999954, 49.23149647400006 ], [ -124.00444290399993, 49.231766290000024 ], [ -124.004854915, 49.231762706000048 ], [ -124.004871335999951, 49.232572154000088 ], [ -124.006931417, 49.232554214000061 ], [ -124.006914963999947, 49.231744767000038 ], [ -124.008461573999966, 49.231731274000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125196685", "BldgCostT": "79679571", "sL_LossRatio": "0.707050129228644", "sL_AssetLoss": "296729.88", "sL_BldgLoss": "209802.9", "sL_StrLoss": "135692.9", "sL_NStrLoss": "74110", "sL_ContLoss": "86926.98", "geom_point": "0101000020E61000001F646912C2015FC0DF62F2C4FB9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.022993811999982, 49.217083739000024 ], [ -124.023002172999924, 49.217062574000089 ], [ -124.023130588999933, 49.217081869 ], [ -124.023152090999986, 49.217085123000047 ], [ -124.023390181999901, 49.216487108000067 ], [ -124.023675304999955, 49.216072817000089 ], [ -124.024051610999933, 49.215771696000097 ], [ -124.02464130899989, 49.215506450000085 ], [ -124.024743901999955, 49.215460311000143 ], [ -124.025785622999976, 49.215220922000128 ], [ -124.027682, 49.214833634000065 ], [ -124.027739690999965, 49.214821849000074 ], [ -124.029362625999966, 49.214490399000042 ], [ -124.02925529099997, 49.214367806000105 ], [ -124.029400626999987, 49.214337102000037 ], [ -124.029505091999951, 49.214461503000038 ], [ -124.029857502999974, 49.214884794000035 ], [ -124.030197075, 49.215237359000056 ], [ -124.030071514, 49.215273203000066 ], [ -124.032670789999955, 49.2179976010001 ], [ -124.033326926999976, 49.218772883000064 ], [ -124.033399804999974, 49.218858986000072 ], [ -124.034122029999963, 49.219849136000065 ], [ -124.03386611800002, 49.219914660000065 ], [ -124.031352147999939, 49.220558434000054 ], [ -124.03119795399999, 49.2205979 ], [ -124.030199533999962, 49.220853557000112 ], [ -124.029743449999955, 49.220970354000052 ], [ -124.0296047, 49.221007388000018 ], [ -124.02944207899999, 49.221045910000043 ], [ -124.02881753699999, 49.221193846000112 ], [ -124.028280824999939, 49.221393833000072 ], [ -124.02797564799998, 49.221570104000122 ], [ -124.027362410999942, 49.222119006000057 ], [ -124.027046319999926, 49.22229320200006 ], [ -124.026691307999968, 49.22241370700003 ], [ -124.026413425999948, 49.222474913000042 ], [ -124.026389393999949, 49.222480190000063 ], [ -124.025994403, 49.222509914000092 ], [ -124.024254012999947, 49.22252849500007 ], [ -124.023505914999973, 49.222536354000027 ], [ -124.02347766299998, 49.22242689600008 ], [ -124.023409512999976, 49.222384216000087 ], [ -124.022894428999976, 49.221366323000055 ], [ -124.022833487999904, 49.221090595000113 ], [ -124.022801145999935, 49.220882905000074 ], [ -124.022818006999941, 49.219954725000044 ], [ -124.0228253699999, 49.219549902000026 ], [ -124.022835794999963, 49.218976573000084 ], [ -124.022838097999937, 49.218850603000092 ], [ -124.022838948999933, 49.218801862000049 ], [ -124.022840307999928, 49.218674029000056 ], [ -124.022829066999975, 49.217680694000101 ], [ -124.02286619600001, 49.217507329000114 ], [ -124.022912975999986, 49.217288734000043 ], [ -124.022935105999949, 49.217232631000059 ], [ -124.022993811999982, 49.217083739000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173838666", "BldgCostT": "111906666", "sL_LossRatio": "0.663828513257943", "sL_AssetLoss": "505704.4", "sL_BldgLoss": "335701", "sL_StrLoss": "160157", "sL_NStrLoss": "175544", "sL_ContLoss": "170003.4", "geom_point": "0101000020E6100000604DAFDE32025FC0D4ABF167329C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.031352147999939, 49.220558434000054 ], [ -124.03386611800002, 49.219914660000065 ], [ -124.034122029999963, 49.219849136000065 ], [ -124.033399804999974, 49.218858986000072 ], [ -124.033326926999976, 49.218772883000064 ], [ -124.032670789999955, 49.2179976010001 ], [ -124.030071514, 49.215273203000066 ], [ -124.030197075, 49.215237359000056 ], [ -124.030661587999973, 49.215104816000078 ], [ -124.031079494, 49.214792818000106 ], [ -124.031254718999904, 49.214705010000102 ], [ -124.031463607999981, 49.214663244000121 ], [ -124.03231160199999, 49.21449380200005 ], [ -124.032705584, 49.21451990700011 ], [ -124.032954982999954, 49.214621709000049 ], [ -124.034704197999957, 49.215524291000065 ], [ -124.035711178999946, 49.216104497000082 ], [ -124.03612779499997, 49.216406512000027 ], [ -124.035929992999968, 49.216576734000036 ], [ -124.035684273999976, 49.216788144000077 ], [ -124.035447379999979, 49.216992003000058 ], [ -124.036543, 49.217521604000041 ], [ -124.03707590199997, 49.217831110000105 ], [ -124.036826418999951, 49.218021994 ], [ -124.036579105000015, 49.218127292000077 ], [ -124.036309204999966, 49.218183587000063 ], [ -124.03550709299999, 49.218173512000099 ], [ -124.035487771999911, 49.219343695000063 ], [ -124.035501875999941, 49.219419554000169 ], [ -124.035534216999949, 49.21959404800009 ], [ -124.035535898999939, 49.219602991000073 ], [ -124.035652295999981, 49.219867088000051 ], [ -124.036150221999975, 49.220485803000088 ], [ -124.036774329999957, 49.220390901 ], [ -124.037308295999964, 49.220511309000116 ], [ -124.039078647999986, 49.221150423000012 ], [ -124.039132901999963, 49.221227002000042 ], [ -124.039135937999959, 49.221318900000043 ], [ -124.03905361699999, 49.221416516000055 ], [ -124.038289338999931, 49.221875313000126 ], [ -124.037331494999975, 49.222236016000082 ], [ -124.037890337999954, 49.223070054000061 ], [ -124.03810057500003, 49.223256647000049 ], [ -124.038283993999954, 49.223373257000027 ], [ -124.038387853999922, 49.223439248000112 ], [ -124.038229870999928, 49.223547644000114 ], [ -124.038082608999957, 49.223648711000038 ], [ -124.037904629999929, 49.223770825000024 ], [ -124.03787973499999, 49.223873001000065 ], [ -124.03766344099995, 49.224056366000106 ], [ -124.037434390999962, 49.224249384000068 ], [ -124.037309979999947, 49.224368671000079 ], [ -124.036814215999982, 49.22480172200008 ], [ -124.036714816999947, 49.22488918600007 ], [ -124.036533472999949, 49.225048727000051 ], [ -124.03629076499999, 49.225204955000045 ], [ -124.036070864999914, 49.225346442000031 ], [ -124.035768496999935, 49.225521015000119 ], [ -124.035197344999943, 49.225756396000129 ], [ -124.035109421999962, 49.225792635000062 ], [ -124.035014645000032, 49.22582692400001 ], [ -124.034928911999927, 49.225746123000107 ], [ -124.03489410099999, 49.225715248000022 ], [ -124.034360202999977, 49.225242280000046 ], [ -124.034270095999943, 49.225051847000074 ], [ -124.034181365999927, 49.224864206000142 ], [ -124.034037326999936, 49.224559719000105 ], [ -124.033828826000018, 49.224118898000128 ], [ -124.033568098999964, 49.22385929200005 ], [ -124.033174192999979, 49.223603610000033 ], [ -124.032352298999953, 49.223185199000106 ], [ -124.031854788999937, 49.222945696000096 ], [ -124.031776292999922, 49.222880761000035 ], [ -124.031235724999974, 49.222433620000054 ], [ -124.03104887899994, 49.222279102000101 ], [ -124.031182717999954, 49.222229296000073 ], [ -124.03028494499992, 49.221444014000014 ], [ -124.030000178999956, 49.221194928000031 ], [ -124.029743449999955, 49.220970354000052 ], [ -124.030199533999962, 49.220853557000112 ], [ -124.03119795399999, 49.2205979 ], [ -124.031352147999939, 49.220558434000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116836500", "BldgCostT": "76980000", "sL_LossRatio": "0.825832188208044", "sL_AssetLoss": "435178", "sL_BldgLoss": "359384", "sL_StrLoss": "233233", "sL_NStrLoss": "126151", "sL_ContLoss": "75794", "geom_point": "0101000020E6100000098849B850025FC062C8D203769B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.032705584, 49.21451990700011 ], [ -124.03231160199999, 49.21449380200005 ], [ -124.031463607999981, 49.214663244000121 ], [ -124.031254718999904, 49.214705010000102 ], [ -124.031079494, 49.214792818000106 ], [ -124.030661587999973, 49.215104816000078 ], [ -124.030197075, 49.215237359000056 ], [ -124.029857502999974, 49.214884794000035 ], [ -124.029505091999951, 49.214461503000038 ], [ -124.029400626999987, 49.214337102000037 ], [ -124.03008501299999, 49.214210096000052 ], [ -124.030163896999952, 49.21412778800002 ], [ -124.030164303, 49.213956710000033 ], [ -124.03030090099999, 49.214035684000081 ], [ -124.030599385999921, 49.214049295000066 ], [ -124.031569403, 49.213817607000045 ], [ -124.031836691999928, 49.213724294000023 ], [ -124.032041715999981, 49.213579502000108 ], [ -124.032139505999965, 49.213538090000014 ], [ -124.032227907999967, 49.213555898000024 ], [ -124.032291802999978, 49.213602992000098 ], [ -124.032302887999933, 49.21366260100006 ], [ -124.0323150299999, 49.213726381000122 ], [ -124.032317518999932, 49.213739409000041 ], [ -124.03284583599999, 49.213565656000043 ], [ -124.032873275999918, 49.213556612000104 ], [ -124.033175067999963, 49.213457360000042 ], [ -124.033736393999945, 49.213272770000074 ], [ -124.034035479999943, 49.213174672 ], [ -124.034377434999939, 49.213002620000076 ], [ -124.034440690999972, 49.212959627000075 ], [ -124.034600573999938, 49.212850923000133 ], [ -124.034786076000032, 49.212681403000047 ], [ -124.035045456999953, 49.212289071000029 ], [ -124.035103548999984, 49.212083038000067 ], [ -124.035107863999954, 49.211974195000089 ], [ -124.035126317999953, 49.211512590000048 ], [ -124.035593664999936, 49.211544621000044 ], [ -124.035823818999972, 49.211560400000067 ], [ -124.036236965999976, 49.211588493000065 ], [ -124.037109503999915, 49.211647793000097 ], [ -124.037680706999936, 49.211697801000057 ], [ -124.037984789999925, 49.211805110000086 ], [ -124.038132802999925, 49.211970694000094 ], [ -124.038219993999945, 49.212145209 ], [ -124.038175694999921, 49.212382984000051 ], [ -124.038095809999973, 49.212495296000085 ], [ -124.038066298999979, 49.212536807000113 ], [ -124.037831400999977, 49.212741395000116 ], [ -124.03764148399992, 49.212890985000087 ], [ -124.037637, 49.212894491000043 ], [ -124.037545816, 49.213020454000095 ], [ -124.037520482999966, 49.213055393000104 ], [ -124.037485610999951, 49.213167301000105 ], [ -124.037478324999967, 49.213256914000084 ], [ -124.037466638999973, 49.213400705000012 ], [ -124.037425503999941, 49.213907205000034 ], [ -124.037771719999938, 49.213918289000034 ], [ -124.037884384999941, 49.213921909000121 ], [ -124.04034357700003, 49.213993632000097 ], [ -124.040337983999962, 49.214938953000093 ], [ -124.040335697999922, 49.214992924000086 ], [ -124.040331290999916, 49.21504231500009 ], [ -124.040320700999985, 49.215161287000043 ], [ -124.04028362, 49.215577244000016 ], [ -124.04019057899994, 49.215767343000024 ], [ -124.039319200999941, 49.216488893000061 ], [ -124.039096421999943, 49.216700461000087 ], [ -124.03897708199996, 49.216813773000055 ], [ -124.038801874999962, 49.216980098000072 ], [ -124.03866694, 49.217073584000083 ], [ -124.038568698999953, 49.217141588000125 ], [ -124.038380801999921, 49.217206615000116 ], [ -124.037897805999989, 49.217273394000024 ], [ -124.036543, 49.217521604000041 ], [ -124.035447379999979, 49.216992003000058 ], [ -124.035684273999976, 49.216788144000077 ], [ -124.035929992999968, 49.216576734000036 ], [ -124.03612779499997, 49.216406512000027 ], [ -124.035711178999946, 49.216104497000082 ], [ -124.034704197999957, 49.215524291000065 ], [ -124.032954982999954, 49.214621709000049 ], [ -124.032705584, 49.21451990700011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158121582", "BldgCostT": "99208332", "sL_LossRatio": "0.85612413021024", "sL_AssetLoss": "429471.6", "sL_BldgLoss": "367681", "sL_StrLoss": "264800", "sL_NStrLoss": "102881", "sL_ContLoss": "61790.6", "geom_point": "0101000020E6100000CB4E373783025FC06371BD75179B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.041846794999969, 49.217611925000021 ], [ -124.041282310999961, 49.217593391000079 ], [ -124.04082572199998, 49.217622004000084 ], [ -124.040487685999906, 49.217763496000039 ], [ -124.040323900999951, 49.217549894000044 ], [ -124.040297299999963, 49.21736661300011 ], [ -124.040309273999966, 49.216205314000028 ], [ -124.040281761999893, 49.215977920000142 ], [ -124.040243313999923, 49.215889146000052 ], [ -124.04019057899994, 49.215767343000024 ], [ -124.04028362, 49.215577244000016 ], [ -124.040320700999985, 49.215161287000043 ], [ -124.040331290999916, 49.21504231500009 ], [ -124.040335697999922, 49.214992924000086 ], [ -124.040337983999962, 49.214938953000093 ], [ -124.04034357700003, 49.213993632000097 ], [ -124.037884384999941, 49.213921909000121 ], [ -124.037771719999938, 49.213918289000034 ], [ -124.037425503999941, 49.213907205000034 ], [ -124.037466638999973, 49.213400705000012 ], [ -124.037478324999967, 49.213256914000084 ], [ -124.037485610999951, 49.213167301000105 ], [ -124.037520482999966, 49.213055393000104 ], [ -124.037545816, 49.213020454000095 ], [ -124.037637, 49.212894491000043 ], [ -124.03764148399992, 49.212890985000087 ], [ -124.037831400999977, 49.212741395000116 ], [ -124.038066298999979, 49.212536807000113 ], [ -124.038095809999973, 49.212495296000085 ], [ -124.038175694999921, 49.212382984000051 ], [ -124.038219993999945, 49.212145209 ], [ -124.038132802999925, 49.211970694000094 ], [ -124.037984789999925, 49.211805110000086 ], [ -124.037680706999936, 49.211697801000057 ], [ -124.037109503999915, 49.211647793000097 ], [ -124.036236965999976, 49.211588493000065 ], [ -124.035823818999972, 49.211560400000067 ], [ -124.035593664999936, 49.211544621000044 ], [ -124.035126317999953, 49.211512590000048 ], [ -124.035155, 49.210769382000088 ], [ -124.035103986999928, 49.210742307000025 ], [ -124.035117762999931, 49.21049701000009 ], [ -124.035221435999986, 49.208646496 ], [ -124.035245010999986, 49.20821924500008 ], [ -124.035176512999939, 49.207989284000114 ], [ -124.03515745299994, 49.207925339000091 ], [ -124.034864279999951, 49.206940921000111 ], [ -124.034893947999947, 49.206661412000038 ], [ -124.035175781999953, 49.206482883000049 ], [ -124.035370079999964, 49.206417054000028 ], [ -124.035526426999965, 49.206364115000021 ], [ -124.036160528999986, 49.20635224900014 ], [ -124.037836118999905, 49.206815869000174 ], [ -124.038780715999962, 49.207149111000064 ], [ -124.039635467999972, 49.207532003000047 ], [ -124.03988923299994, 49.20766895900006 ], [ -124.039964332, 49.207709453000064 ], [ -124.040379712999979, 49.20793363000012 ], [ -124.040501290999956, 49.208022947000089 ], [ -124.041039810999948, 49.208418628000089 ], [ -124.041041596999918, 49.208503741000065 ], [ -124.041140200999934, 49.208502852000045 ], [ -124.041230709999979, 49.208581059000018 ], [ -124.041459260999915, 49.208778589000083 ], [ -124.041470412999914, 49.209309471000012 ], [ -124.041058595999971, 49.209313183000042 ], [ -124.041064260999988, 49.209582998000037 ], [ -124.04065244, 49.209586709000064 ], [ -124.040714743999928, 49.212554663000084 ], [ -124.04112659099998, 49.212550951000026 ], [ -124.041143591999941, 49.213360392000091 ], [ -124.041555443999968, 49.213356680000111 ], [ -124.041566781999933, 49.213896306000031 ], [ -124.043539886999923, 49.213878498000049 ], [ -124.043570027, 49.214086430000123 ], [ -124.04382877099998, 49.215925644000059 ], [ -124.04386926299999, 49.216213468000035 ], [ -124.044073951999934, 49.217668421000049 ], [ -124.044099149999965, 49.217847368000086 ], [ -124.043427611999974, 49.217663790000067 ], [ -124.04285082299999, 49.217644879000019 ], [ -124.041846794999969, 49.217611925000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109131167", "BldgCostT": "74581667", "sL_LossRatio": "0.911216732020691", "sL_AssetLoss": "383552", "sL_BldgLoss": "349499", "sL_StrLoss": "274329", "sL_NStrLoss": "75170", "sL_ContLoss": "34053", "geom_point": "0101000020E61000000E0931FAFE025FC0820B8175FF9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.044830891999979, 49.219978999000098 ], [ -124.044538179999975, 49.219436195000064 ], [ -124.044456460999953, 49.219221937000079 ], [ -124.044322012999956, 49.218869499000078 ], [ -124.044172906999933, 49.218371589000121 ], [ -124.044099149999965, 49.217847368000086 ], [ -124.044073951999934, 49.217668421000049 ], [ -124.04386926299999, 49.216213468000035 ], [ -124.04382877099998, 49.215925644000059 ], [ -124.043570027, 49.214086430000123 ], [ -124.043848256999951, 49.214091479000047 ], [ -124.047877877999952, 49.214102407000027 ], [ -124.047849884999962, 49.21489960200006 ], [ -124.04785461199999, 49.215700208000079 ], [ -124.047813885999943, 49.215787712000044 ], [ -124.047731914999957, 49.215846505000037 ], [ -124.047071569999986, 49.216026119000027 ], [ -124.047073503999954, 49.215911103000067 ], [ -124.046697316999968, 49.216472499000098 ], [ -124.046651891999957, 49.216671494000131 ], [ -124.04668580699996, 49.217250012000079 ], [ -124.046701446999961, 49.217516116000063 ], [ -124.04663412599993, 49.217647308000053 ], [ -124.046372727999966, 49.218156635000035 ], [ -124.046336458999946, 49.218365770000062 ], [ -124.046352233, 49.218546141000019 ], [ -124.046603765999947, 49.219023406000048 ], [ -124.046807507999944, 49.219398056000045 ], [ -124.046814725000033, 49.219422980000012 ], [ -124.046939257999938, 49.219853333000053 ], [ -124.047645468999931, 49.219762620000068 ], [ -124.047960365000023, 49.219777323000059 ], [ -124.048277552999963, 49.219836227000016 ], [ -124.048540668999934, 49.219940915000073 ], [ -124.049512484999951, 49.220483412000128 ], [ -124.050358861999896, 49.220811112000064 ], [ -124.0505193799999, 49.220910414000073 ], [ -124.0506170699999, 49.22103369500006 ], [ -124.0506525799999, 49.221167608000052 ], [ -124.050648697999989, 49.222111096000056 ], [ -124.050860594999961, 49.222195103000104 ], [ -124.051027285, 49.222308804000122 ], [ -124.05109991199997, 49.222442505000117 ], [ -124.051113453999946, 49.223348545000121 ], [ -124.05111361799996, 49.223357598000071 ], [ -124.050847205999958, 49.223397702000071 ], [ -124.050085400999976, 49.223512388000131 ], [ -124.04975779899992, 49.223561702000083 ], [ -124.049744126999897, 49.223564106000062 ], [ -124.049456484999965, 49.22361482000008 ], [ -124.047979998999978, 49.222672408000022 ], [ -124.047630770999945, 49.222449750000109 ], [ -124.046590512999927, 49.221786494000092 ], [ -124.046568576999931, 49.221768674 ], [ -124.046268373999965, 49.221524849000033 ], [ -124.046192491999975, 49.221463201000063 ], [ -124.045673906999951, 49.220973901000029 ], [ -124.045168516999951, 49.220433490000069 ], [ -124.044830891999979, 49.219978999000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185641863", "BldgCostT": "115781935", "sL_LossRatio": "0.813361883129619", "sL_AssetLoss": "663822.6", "sL_BldgLoss": "539928", "sL_StrLoss": "340831", "sL_NStrLoss": "199097", "sL_ContLoss": "123894.6", "geom_point": "0101000020E610000036904EFACE025FC0EA56CF496F9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.047282013999975, 49.227202196000064 ], [ -124.046956721999948, 49.227106290000037 ], [ -124.046758608999937, 49.227151338000112 ], [ -124.046476744999921, 49.227165132000032 ], [ -124.045512335999916, 49.227030598000056 ], [ -124.044536969999939, 49.226895886000108 ], [ -124.044179652, 49.226811976000072 ], [ -124.043501403999954, 49.226561992000015 ], [ -124.043129924999931, 49.226489508000107 ], [ -124.043014282999962, 49.225703071000098 ], [ -124.042952075999921, 49.225279993000122 ], [ -124.042925774999915, 49.225100795000039 ], [ -124.042895689999909, 49.224896162000057 ], [ -124.042893057999919, 49.224878246000046 ], [ -124.042851187999958, 49.224593352000049 ], [ -124.042830669999944, 49.224453943000086 ], [ -124.04282594499989, 49.224422089000093 ], [ -124.042750457999958, 49.224031699000093 ], [ -124.042260184999961, 49.223170857000113 ], [ -124.042179515999948, 49.223029199000095 ], [ -124.042165293999943, 49.223008404000048 ], [ -124.041545021999937, 49.222101001000041 ], [ -124.041265814999946, 49.221595297000135 ], [ -124.041157857999906, 49.221425714000098 ], [ -124.040977330999937, 49.221142079000067 ], [ -124.040596817999926, 49.220544100000076 ], [ -124.039795898999984, 49.219593213000117 ], [ -124.039336292999934, 49.219172403000051 ], [ -124.039323623999962, 49.219163096000045 ], [ -124.03878410099999, 49.218767109000083 ], [ -124.038520783999928, 49.218601195000126 ], [ -124.038419570999977, 49.218547241000081 ], [ -124.0373627, 49.217983948000068 ], [ -124.037238676999934, 49.217917870000058 ], [ -124.03707590199997, 49.217831110000105 ], [ -124.036543, 49.217521604000041 ], [ -124.037897805999989, 49.217273394000024 ], [ -124.038380801999921, 49.217206615000116 ], [ -124.038568698999953, 49.217141588000125 ], [ -124.03866694, 49.217073584000083 ], [ -124.038801874999962, 49.216980098000072 ], [ -124.03897708199996, 49.216813773000055 ], [ -124.039096421999943, 49.216700461000087 ], [ -124.039319200999941, 49.216488893000061 ], [ -124.04019057899994, 49.215767343000024 ], [ -124.040243313999923, 49.215889146000052 ], [ -124.040281761999893, 49.215977920000142 ], [ -124.040309273999966, 49.216205314000028 ], [ -124.040297299999963, 49.21736661300011 ], [ -124.040323900999951, 49.217549894000044 ], [ -124.040487685999906, 49.217763496000039 ], [ -124.04082572199998, 49.217622004000084 ], [ -124.041282310999961, 49.217593391000079 ], [ -124.041846794999969, 49.217611925000021 ], [ -124.04285082299999, 49.217644879000019 ], [ -124.043427611999974, 49.217663790000067 ], [ -124.044099149999965, 49.217847368000086 ], [ -124.044172906999933, 49.218371589000121 ], [ -124.044322012999956, 49.218869499000078 ], [ -124.044456460999953, 49.219221937000079 ], [ -124.044538179999975, 49.219436195000064 ], [ -124.044830891999979, 49.219978999000098 ], [ -124.045168516999951, 49.220433490000069 ], [ -124.045673906999951, 49.220973901000029 ], [ -124.046192491999975, 49.221463201000063 ], [ -124.046268373999965, 49.221524849000033 ], [ -124.046568576999931, 49.221768674 ], [ -124.046590512999927, 49.221786494000092 ], [ -124.047630770999945, 49.222449750000109 ], [ -124.047979998999978, 49.222672408000022 ], [ -124.049456484999965, 49.22361482000008 ], [ -124.0483749469999, 49.223774857000059 ], [ -124.047965464999905, 49.223835445000091 ], [ -124.04761062299994, 49.224027002000064 ], [ -124.048034980999958, 49.225021606000041 ], [ -124.047932119, 49.225280898000108 ], [ -124.049314609999939, 49.226242296000045 ], [ -124.049399307, 49.22634740000008 ], [ -124.048620887999931, 49.226913107000065 ], [ -124.048684291999933, 49.227037607000035 ], [ -124.048643918999943, 49.227672601000073 ], [ -124.048727409999955, 49.228068399000115 ], [ -124.048199707999942, 49.228056201000122 ], [ -124.04806648, 49.228026792000016 ], [ -124.04798739599994, 49.227947901000022 ], [ -124.0479492, 49.227649195000062 ], [ -124.047851109999939, 49.227536692000058 ], [ -124.047282013999975, 49.227202196000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110583583", "BldgCostT": "73558333", "sL_LossRatio": "0.812762371647598", "sL_AssetLoss": "390429", "sL_BldgLoss": "317326", "sL_StrLoss": "162164", "sL_NStrLoss": "155162", "sL_ContLoss": "73103", "geom_point": "0101000020E61000002A130A538C025FC0B417A8F79A9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.040287500999938, 49.22853337300009 ], [ -124.039431626999928, 49.227314605000117 ], [ -124.037533052999905, 49.224674356000023 ], [ -124.037309979999947, 49.224368671000079 ], [ -124.037434390999962, 49.224249384000068 ], [ -124.03766344099995, 49.224056366000106 ], [ -124.03787973499999, 49.223873001000065 ], [ -124.037904629999929, 49.223770825000024 ], [ -124.038082608999957, 49.223648711000038 ], [ -124.038229870999928, 49.223547644000114 ], [ -124.038387853999922, 49.223439248000112 ], [ -124.038283993999954, 49.223373257000027 ], [ -124.03810057500003, 49.223256647000049 ], [ -124.037890337999954, 49.223070054000061 ], [ -124.037331494999975, 49.222236016000082 ], [ -124.038289338999931, 49.221875313000126 ], [ -124.03905361699999, 49.221416516000055 ], [ -124.039135937999959, 49.221318900000043 ], [ -124.039132901999963, 49.221227002000042 ], [ -124.039078647999986, 49.221150423000012 ], [ -124.037308295999964, 49.220511309000116 ], [ -124.036774329999957, 49.220390901 ], [ -124.036150221999975, 49.220485803000088 ], [ -124.035652295999981, 49.219867088000051 ], [ -124.035535898999939, 49.219602991000073 ], [ -124.035534216999949, 49.21959404800009 ], [ -124.035501875999941, 49.219419554000169 ], [ -124.035487771999911, 49.219343695000063 ], [ -124.03550709299999, 49.218173512000099 ], [ -124.036309204999966, 49.218183587000063 ], [ -124.036579105000015, 49.218127292000077 ], [ -124.036826418999951, 49.218021994 ], [ -124.03707590199997, 49.217831110000105 ], [ -124.037238676999934, 49.217917870000058 ], [ -124.0373627, 49.217983948000068 ], [ -124.038419570999977, 49.218547241000081 ], [ -124.038520783999928, 49.218601195000126 ], [ -124.03878410099999, 49.218767109000083 ], [ -124.039323623999962, 49.219163096000045 ], [ -124.039336292999934, 49.219172403000051 ], [ -124.039795898999984, 49.219593213000117 ], [ -124.040596817999926, 49.220544100000076 ], [ -124.040977330999937, 49.221142079000067 ], [ -124.041157857999906, 49.221425714000098 ], [ -124.041265814999946, 49.221595297000135 ], [ -124.041545021999937, 49.222101001000041 ], [ -124.042165293999943, 49.223008404000048 ], [ -124.042179515999948, 49.223029199000095 ], [ -124.042260184999961, 49.223170857000113 ], [ -124.042750457999958, 49.224031699000093 ], [ -124.04282594499989, 49.224422089000093 ], [ -124.042830669999944, 49.224453943000086 ], [ -124.042851187999958, 49.224593352000049 ], [ -124.042893057999919, 49.224878246000046 ], [ -124.042895689999909, 49.224896162000057 ], [ -124.042925774999915, 49.225100795000039 ], [ -124.042952075999921, 49.225279993000122 ], [ -124.043014282999962, 49.225703071000098 ], [ -124.043129924999931, 49.226489508000107 ], [ -124.043169090999953, 49.226688848000038 ], [ -124.043223683999926, 49.226966603000022 ], [ -124.043407626999951, 49.228364630000058 ], [ -124.042332762999962, 49.228340146000029 ], [ -124.041467931999961, 49.22832041000008 ], [ -124.040768691999972, 49.228306790000026 ], [ -124.040386121999944, 49.228486958000069 ], [ -124.040287500999938, 49.22853337300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236481130", "BldgCostT": "155326155", "sL_LossRatio": "0.764934110692891", "sL_AssetLoss": "698861.5", "sL_BldgLoss": "534583", "sL_StrLoss": "257195", "sL_NStrLoss": "277388", "sL_ContLoss": "164278.5", "geom_point": "0101000020E6100000DEB3222806035FC041FA166B729D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.041855937999983, 49.230605425000128 ], [ -124.041819887999964, 49.230548955000117 ], [ -124.04172265699999, 49.230576907000035 ], [ -124.041545088999925, 49.230324038000063 ], [ -124.040287500999938, 49.22853337300009 ], [ -124.040386121999944, 49.228486958000069 ], [ -124.040768691999972, 49.228306790000026 ], [ -124.041467931999961, 49.22832041000008 ], [ -124.042332762999962, 49.228340146000029 ], [ -124.043407626999951, 49.228364630000058 ], [ -124.043223683999926, 49.226966603000022 ], [ -124.043169090999953, 49.226688848000038 ], [ -124.043129924999931, 49.226489508000107 ], [ -124.043501403999954, 49.226561992000015 ], [ -124.044179652, 49.226811976000072 ], [ -124.044536969999939, 49.226895886000108 ], [ -124.045512335999916, 49.227030598000056 ], [ -124.046476744999921, 49.227165132000032 ], [ -124.046758608999937, 49.227151338000112 ], [ -124.046956721999948, 49.227106290000037 ], [ -124.047282013999975, 49.227202196000064 ], [ -124.047851109999939, 49.227536692000058 ], [ -124.0479492, 49.227649195000062 ], [ -124.04798739599994, 49.227947901000022 ], [ -124.04806648, 49.228026792000016 ], [ -124.048199707999942, 49.228056201000122 ], [ -124.048727409999955, 49.228068399000115 ], [ -124.048643918999943, 49.227672601000073 ], [ -124.048684291999933, 49.227037607000035 ], [ -124.048620887999931, 49.226913107000065 ], [ -124.049399307, 49.22634740000008 ], [ -124.049314609999939, 49.226242296000045 ], [ -124.047932119, 49.225280898000108 ], [ -124.048034980999958, 49.225021606000041 ], [ -124.04761062299994, 49.224027002000064 ], [ -124.047965464999905, 49.223835445000091 ], [ -124.0483749469999, 49.223774857000059 ], [ -124.049456484999965, 49.22361482000008 ], [ -124.050273864999937, 49.224242825000012 ], [ -124.05078658799998, 49.224776100000078 ], [ -124.051216594999914, 49.225481616000046 ], [ -124.05144878399993, 49.226258401000102 ], [ -124.051509491999965, 49.22677673800009 ], [ -124.051516499999977, 49.226836692000028 ], [ -124.051518061999943, 49.22703190600005 ], [ -124.05151852799996, 49.227091294000083 ], [ -124.051521393999948, 49.227451128000013 ], [ -124.051525879999957, 49.228019090000025 ], [ -124.051521277999925, 49.228080495000015 ], [ -124.051492101999926, 49.228467714000026 ], [ -124.05147932399997, 49.228637708000072 ], [ -124.051466843999947, 49.22879219200005 ], [ -124.051440016999919, 49.229124998000039 ], [ -124.051433491999944, 49.229205884000095 ], [ -124.051424970999932, 49.229503034000111 ], [ -124.05138145899997, 49.23101451300014 ], [ -124.051376795999957, 49.231176007000101 ], [ -124.051373599999962, 49.231287405000046 ], [ -124.05140031699996, 49.231788015000078 ], [ -124.051412816999957, 49.232021889000023 ], [ -124.05154, 49.23255459700006 ], [ -124.051599800999924, 49.232730682000131 ], [ -124.051617211999897, 49.232781925000076 ], [ -124.051704891000014, 49.233040082000045 ], [ -124.051762950999887, 49.233169440000033 ], [ -124.051863004999944, 49.233392300000048 ], [ -124.052128149999959, 49.233878216000093 ], [ -124.052349804999963, 49.234284401000068 ], [ -124.052402509999965, 49.234402386000049 ], [ -124.052184869999948, 49.234425623000071 ], [ -124.051818052999963, 49.23446477600006 ], [ -124.051082579999971, 49.234462281000063 ], [ -124.050935635999977, 49.234461950000082 ], [ -124.049191015999924, 49.234457879000033 ], [ -124.048338268999956, 49.234455877000073 ], [ -124.048173568, 49.234456518000059 ], [ -124.047091742999925, 49.234453338000058 ], [ -124.046451522, 49.234451437000132 ], [ -124.045224798999953, 49.234449040000136 ], [ -124.044555078999906, 49.234449511000037 ], [ -124.044369833999923, 49.23444883600007 ], [ -124.044294874999977, 49.234339427000101 ], [ -124.044481427, 49.234341009000076 ], [ -124.04365666399994, 49.233136657000031 ], [ -124.04262470599997, 49.231736756000025 ], [ -124.042053664999941, 49.230895339 ], [ -124.041855937999983, 49.230605425000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149610999", "BldgCostT": "100704999", "sL_LossRatio": "0.839170381358521", "sL_AssetLoss": "659565.7", "sL_BldgLoss": "553488", "sL_StrLoss": "367941", "sL_NStrLoss": "185547", "sL_ContLoss": "106077.7", "geom_point": "0101000020E6100000A37C2147A7035FC0318FEB95689D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.052660089999961, 49.234771813000037 ], [ -124.052417371999951, 49.234423715000034 ], [ -124.052402509999965, 49.234402386000049 ], [ -124.052349804999963, 49.234284401000068 ], [ -124.052128149999959, 49.233878216000093 ], [ -124.051863004999944, 49.233392300000048 ], [ -124.051762950999887, 49.233169440000033 ], [ -124.051704891000014, 49.233040082000045 ], [ -124.051617211999897, 49.232781925000076 ], [ -124.051599800999924, 49.232730682000131 ], [ -124.05154, 49.23255459700006 ], [ -124.051412816999957, 49.232021889000023 ], [ -124.05140031699996, 49.231788015000078 ], [ -124.051373599999962, 49.231287405000046 ], [ -124.051376795999957, 49.231176007000101 ], [ -124.05138145899997, 49.23101451300014 ], [ -124.051424970999932, 49.229503034000111 ], [ -124.051433491999944, 49.229205884000095 ], [ -124.051440016999919, 49.229124998000039 ], [ -124.051466843999947, 49.22879219200005 ], [ -124.05147932399997, 49.228637708000072 ], [ -124.051492101999926, 49.228467714000026 ], [ -124.051521277999925, 49.228080495000015 ], [ -124.051525879999957, 49.228019090000025 ], [ -124.051521393999948, 49.227451128000013 ], [ -124.05151852799996, 49.227091294000083 ], [ -124.051518061999943, 49.22703190600005 ], [ -124.051516499999977, 49.226836692000028 ], [ -124.051509491999965, 49.22677673800009 ], [ -124.05144878399993, 49.226258401000102 ], [ -124.051216594999914, 49.225481616000046 ], [ -124.05078658799998, 49.224776100000078 ], [ -124.050273864999937, 49.224242825000012 ], [ -124.049456484999965, 49.22361482000008 ], [ -124.049744126999897, 49.223564106000062 ], [ -124.04975779899992, 49.223561702000083 ], [ -124.050085400999976, 49.223512388000131 ], [ -124.050847205999958, 49.223397702000071 ], [ -124.05111361799996, 49.223357598000071 ], [ -124.051660964999954, 49.223288669000034 ], [ -124.052120498999955, 49.223230795000092 ], [ -124.052144208999948, 49.223156488000036 ], [ -124.053991395999972, 49.222620800000115 ], [ -124.054045394999932, 49.222587443000066 ], [ -124.05578529, 49.222603722000095 ], [ -124.057460006999918, 49.22261931700006 ], [ -124.057672211999929, 49.223711432000073 ], [ -124.057921256000014, 49.224993145000056 ], [ -124.05795021199998, 49.226679378000085 ], [ -124.058028395999983, 49.228005819000032 ], [ -124.063856637999962, 49.228050588000031 ], [ -124.064744558999919, 49.228127041000022 ], [ -124.064615131999957, 49.229764703000107 ], [ -124.064822622999955, 49.231678661000082 ], [ -124.064507444999904, 49.234319338000034 ], [ -124.064610988999974, 49.234638820000036 ], [ -124.062628200999967, 49.234655652000107 ], [ -124.062451741999965, 49.234667992000034 ], [ -124.062410020999963, 49.234662940000078 ], [ -124.06214725199996, 49.234631025000056 ], [ -124.053957230999984, 49.234484543000072 ], [ -124.055210083999967, 49.237038284000036 ], [ -124.055360121999968, 49.237344147000059 ], [ -124.054341111999989, 49.236608166000075 ], [ -124.054024857999963, 49.236327844000073 ], [ -124.053593447999958, 49.235946407000021 ], [ -124.053014787, 49.235280506999985 ], [ -124.052660089999961, 49.234771813000037 ] ], [ [ -124.054159699999957, 49.225925972000084 ], [ -124.054245286999929, 49.223883039000071 ], [ -124.05337092299996, 49.223867259000045 ], [ -124.053330170999985, 49.224839602000124 ], [ -124.052482756999936, 49.224824302000059 ], [ -124.052447222, 49.225671725000062 ], [ -124.052527133, 49.225670996000133 ], [ -124.052532863999929, 49.225940809000058 ], [ -124.054159699999957, 49.225925972000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160639208", "BldgCostT": "87176685", "sL_LossRatio": "0.580107058384165", "sL_AssetLoss": "1285280", "sL_BldgLoss": "745600", "sL_StrLoss": "219826", "sL_NStrLoss": "525774", "sL_ContLoss": "539680", "geom_point": "0101000020E6100000BABBABE444035FC028D42F4B9A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.054013617999928, 49.244164590000011 ], [ -124.053804108999927, 49.244017496000055 ], [ -124.053070309999939, 49.244429195000087 ], [ -124.052550792999966, 49.244610711000078 ], [ -124.051154701999948, 49.244842087000066 ], [ -124.051098229999937, 49.241708698000103 ], [ -124.050438342999968, 49.240656623000099 ], [ -124.050373991999962, 49.240554002000124 ], [ -124.049852989999977, 49.239722509000039 ], [ -124.04792906199999, 49.239724210000126 ], [ -124.045167594, 49.239726608000097 ], [ -124.042829926999929, 49.239728601000095 ], [ -124.042820638999927, 49.239297176000051 ], [ -124.042782321999965, 49.23799182700003 ], [ -124.042770648999976, 49.237515503000083 ], [ -124.042764696999939, 49.237271209000035 ], [ -124.042760237999985, 49.23711979400013 ], [ -124.042739938999901, 49.236425310000051 ], [ -124.042749827999913, 49.235464729000093 ], [ -124.04275463099998, 49.234996954000046 ], [ -124.042759425, 49.2345293300001 ], [ -124.04276031899991, 49.234444847000098 ], [ -124.042774034, 49.234444928000087 ], [ -124.044369833999923, 49.23444883600007 ], [ -124.044555078999906, 49.234449511000037 ], [ -124.045224798999953, 49.234449040000136 ], [ -124.046451522, 49.234451437000132 ], [ -124.047091742999925, 49.234453338000058 ], [ -124.048173568, 49.234456518000059 ], [ -124.048338268999956, 49.234455877000073 ], [ -124.049191015999924, 49.234457879000033 ], [ -124.050935635999977, 49.234461950000082 ], [ -124.051082579999971, 49.234462281000063 ], [ -124.051818052999963, 49.23446477600006 ], [ -124.052184869999948, 49.234425623000071 ], [ -124.052402509999965, 49.234402386000049 ], [ -124.052417371999951, 49.234423715000034 ], [ -124.052660089999961, 49.234771813000037 ], [ -124.053014787, 49.235280506999985 ], [ -124.053593447999958, 49.235946407000021 ], [ -124.054024857999963, 49.236327844000073 ], [ -124.054341111999989, 49.236608166000075 ], [ -124.055360121999968, 49.237344147000059 ], [ -124.056083550999986, 49.237875453000093 ], [ -124.056085099999905, 49.237948068000023 ], [ -124.056184873999925, 49.237949866000093 ], [ -124.056256191999964, 49.238002242000043 ], [ -124.05668016700001, 49.238323117000085 ], [ -124.058187789999963, 49.23946413300007 ], [ -124.059019279000026, 49.240059182000081 ], [ -124.059413810999899, 49.240341504000135 ], [ -124.060076986999917, 49.240770410000088 ], [ -124.060333187999959, 49.24093609100008 ], [ -124.057798647999959, 49.24111126800009 ], [ -124.057511424, 49.241131122000084 ], [ -124.057012196999949, 49.241751428000086 ], [ -124.057234305999941, 49.241750972000048 ], [ -124.057224847999962, 49.243337788000133 ], [ -124.057221789, 49.243850839000103 ], [ -124.057221098999946, 49.243969218000089 ], [ -124.05723515499993, 49.244700028000103 ], [ -124.057245664999925, 49.245246613000042 ], [ -124.057246508999981, 49.245290524000033 ], [ -124.057280296999963, 49.247048595000052 ], [ -124.056912489999917, 49.246752104000066 ], [ -124.056647351, 49.246492596000095 ], [ -124.056203026999981, 49.246057700000058 ], [ -124.055477917999937, 49.245346900000051 ], [ -124.05451480799999, 49.244516488000031 ], [ -124.054013617999928, 49.244164590000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "168749335", "BldgCostT": "104168335", "sL_LossRatio": "0.796478048386445", "sL_AssetLoss": "618975", "sL_BldgLoss": "493000", "sL_StrLoss": "311823", "sL_NStrLoss": "181177", "sL_ContLoss": "125975", "geom_point": "0101000020E6100000227F0FE2B3025FC014B2CAB7849E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.044486255999971, 49.241506211000058 ], [ -124.042801081, 49.241454988000015 ], [ -124.042072021999942, 49.241452936000037 ], [ -124.041920952999988, 49.24145252000006 ], [ -124.039864205, 49.241446706000026 ], [ -124.039823992999942, 49.240709508000052 ], [ -124.039793392999911, 49.240583329000088 ], [ -124.039745715, 49.240386595000054 ], [ -124.039623816999921, 49.24008641000011 ], [ -124.039443310999928, 49.239812097000055 ], [ -124.03897216899999, 49.239287125000033 ], [ -124.038744255000026, 49.239033181000131 ], [ -124.038545380999935, 49.238811652000066 ], [ -124.037641868999984, 49.23795783300006 ], [ -124.037617629999957, 49.237934907000067 ], [ -124.037369593999955, 49.237569364000045 ], [ -124.037318136999929, 49.237462512000079 ], [ -124.03725606899998, 49.237333612000036 ], [ -124.037161411999932, 49.23713699000006 ], [ -124.037036455999925, 49.237008675000077 ], [ -124.036960860999955, 49.23654703100005 ], [ -124.03695789899993, 49.236529148000024 ], [ -124.036979262999978, 49.23615406400004 ], [ -124.037027903999913, 49.235425651000085 ], [ -124.037054486999935, 49.234731928000066 ], [ -124.03706641799999, 49.234287371000107 ], [ -124.037206153999975, 49.234292629000045 ], [ -124.038915219, 49.23434399300006 ], [ -124.04016384899991, 49.23438150000004 ], [ -124.041519312999952, 49.234422332000051 ], [ -124.042132195999926, 49.234433445000064 ], [ -124.04276031899991, 49.234444847000098 ], [ -124.042759425, 49.2345293300001 ], [ -124.04275463099998, 49.234996954000046 ], [ -124.042749827999913, 49.235464729000093 ], [ -124.042739938999901, 49.236425310000051 ], [ -124.042760237999985, 49.23711979400013 ], [ -124.042764696999939, 49.237271209000035 ], [ -124.042770648999976, 49.237515503000083 ], [ -124.042782321999965, 49.23799182700003 ], [ -124.042820638999927, 49.239297176000051 ], [ -124.042829926999929, 49.239728601000095 ], [ -124.045167594, 49.239726608000097 ], [ -124.04792906199999, 49.239724210000126 ], [ -124.049852989999977, 49.239722509000039 ], [ -124.050373991999962, 49.240554002000124 ], [ -124.050438342999968, 49.240656623000099 ], [ -124.051098229999937, 49.241708698000103 ], [ -124.04831859599993, 49.241649496000079 ], [ -124.047831298999967, 49.241630277000112 ], [ -124.047417776999978, 49.241613927000074 ], [ -124.04537121499996, 49.241533096000076 ], [ -124.044486255999971, 49.241506211000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "264407416", "BldgCostT": "176611666", "sL_LossRatio": "0.892550438830878", "sL_AssetLoss": "925333.7", "sL_BldgLoss": "825907", "sL_StrLoss": "630505", "sL_NStrLoss": "195402", "sL_ContLoss": "99426.7", "geom_point": "0101000020E61000009115892A38035FC09177AB3A6D9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.054294098999932, 49.248322799000029 ], [ -124.05272241499992, 49.248039404000082 ], [ -124.051114486999964, 49.248170742000092 ], [ -124.05097919399999, 49.248181792000061 ], [ -124.048901483999941, 49.248056503000036 ], [ -124.04703429499996, 49.24811910500005 ], [ -124.045416976999945, 49.248258699000061 ], [ -124.04521274199999, 49.248256906000037 ], [ -124.045422205999955, 49.24720179200007 ], [ -124.045423913999983, 49.246965024000097 ], [ -124.045404899999966, 49.246275913000105 ], [ -124.045370168999952, 49.244899998000093 ], [ -124.045366279999939, 49.244746399000029 ], [ -124.045380780999949, 49.24401109500009 ], [ -124.045393101999977, 49.241991800000108 ], [ -124.045388598999978, 49.241897541000121 ], [ -124.04538599199995, 49.241843045000024 ], [ -124.04537121499996, 49.241533096000076 ], [ -124.047417776999978, 49.241613927000074 ], [ -124.047831298999967, 49.241630277000112 ], [ -124.04831859599993, 49.241649496000079 ], [ -124.051098229999937, 49.241708698000103 ], [ -124.051154701999948, 49.244842087000066 ], [ -124.052550792999966, 49.244610711000078 ], [ -124.053070309999939, 49.244429195000087 ], [ -124.053804108999927, 49.244017496000055 ], [ -124.054013617999928, 49.244164590000011 ], [ -124.05451480799999, 49.244516488000031 ], [ -124.055477917999937, 49.245346900000051 ], [ -124.056203026999981, 49.246057700000058 ], [ -124.056647351, 49.246492596000095 ], [ -124.056912489999917, 49.246752104000066 ], [ -124.057280296999963, 49.247048595000052 ], [ -124.057299907999919, 49.247728682000023 ], [ -124.057300727999959, 49.247764076000081 ], [ -124.057309808999946, 49.248148514000057 ], [ -124.057160196999973, 49.2490555870001 ], [ -124.057155195999897, 49.249192871000041 ], [ -124.056740416999958, 49.249010706000035 ], [ -124.054294098999932, 49.248322799000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211184122", "BldgCostT": "144818705", "sL_LossRatio": "0.867178493348665", "sL_AssetLoss": "471266.3", "sL_BldgLoss": "408672", "sL_StrLoss": "266970", "sL_NStrLoss": "141702", "sL_ContLoss": "62594.3", "geom_point": "0101000020E610000023BE24DFB6025FC0C3C89239169F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.039864205, 49.241446706000026 ], [ -124.041920952999988, 49.24145252000006 ], [ -124.042072021999942, 49.241452936000037 ], [ -124.042801081, 49.241454988000015 ], [ -124.044486255999971, 49.241506211000058 ], [ -124.04537121499996, 49.241533096000076 ], [ -124.04538599199995, 49.241843045000024 ], [ -124.045388598999978, 49.241897541000121 ], [ -124.045393101999977, 49.241991800000108 ], [ -124.045380780999949, 49.24401109500009 ], [ -124.04534516399994, 49.244010872000061 ], [ -124.043236, 49.243997403000037 ], [ -124.043205303999926, 49.24326128200012 ], [ -124.043173116999981, 49.242396303000049 ], [ -124.04268309699999, 49.242398208000125 ], [ -124.041962405999953, 49.242400493 ], [ -124.041960188999923, 49.243091688000106 ], [ -124.041954885999985, 49.244759306000049 ], [ -124.041577715999921, 49.244767570000057 ], [ -124.041371788, 49.244772112000064 ], [ -124.040704908999942, 49.24478672100004 ], [ -124.040485090999951, 49.244791564000053 ], [ -124.039867916999967, 49.244805106000079 ], [ -124.039868172999917, 49.243953396000066 ], [ -124.03986822899995, 49.243139503000101 ], [ -124.039865487999975, 49.242326393000099 ], [ -124.039864687999952, 49.241786986000143 ], [ -124.039864205, 49.241446706000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113627417", "BldgCostT": "74206667", "sL_LossRatio": "0.840708830363198", "sL_AssetLoss": "449755", "sL_BldgLoss": "378113", "sL_StrLoss": "272341", "sL_NStrLoss": "105772", "sL_ContLoss": "71642", "geom_point": "0101000020E61000006112812CBC025FC0C550B1DE669F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.039895102999978, 49.247250111000028 ], [ -124.039855299999928, 49.246469712000092 ], [ -124.039855499999973, 49.245651205000065 ], [ -124.039867916999967, 49.244805106000079 ], [ -124.040485090999951, 49.244791564000053 ], [ -124.040704908999942, 49.24478672100004 ], [ -124.041371788, 49.244772112000064 ], [ -124.041577715999921, 49.244767570000057 ], [ -124.041954885999985, 49.244759306000049 ], [ -124.041960188999923, 49.243091688000106 ], [ -124.041962405999953, 49.242400493 ], [ -124.04268309699999, 49.242398208000125 ], [ -124.043173116999981, 49.242396303000049 ], [ -124.043205303999926, 49.24326128200012 ], [ -124.043236, 49.243997403000037 ], [ -124.04534516399994, 49.244010872000061 ], [ -124.045380780999949, 49.24401109500009 ], [ -124.045366279999939, 49.244746399000029 ], [ -124.045370168999952, 49.244899998000093 ], [ -124.045404899999966, 49.246275913000105 ], [ -124.045423913999983, 49.246965024000097 ], [ -124.044195902999917, 49.246952716000116 ], [ -124.043461618999956, 49.246788119000087 ], [ -124.043172284999983, 49.246746005000084 ], [ -124.042877599999926, 49.246736994000095 ], [ -124.042518991999899, 49.246778207000062 ], [ -124.042002597999925, 49.246881403000081 ], [ -124.041677305999954, 49.246946600000122 ], [ -124.041387035999946, 49.247071499000064 ], [ -124.041345893999974, 49.247089211000073 ], [ -124.041301364000034, 49.247099361000039 ], [ -124.041284157999939, 49.247103279000079 ], [ -124.040731882999978, 49.247229293000025 ], [ -124.039895102999978, 49.247250111000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119193749", "BldgCostT": "81674999", "sL_LossRatio": "0.803797548578454", "sL_AssetLoss": "788930", "sL_BldgLoss": "634140", "sL_StrLoss": "383880", "sL_NStrLoss": "250260", "sL_ContLoss": "154790", "geom_point": "0101000020E6100000813410894A025FC01FD8F9D0689F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.032448382999959, 49.245205801000047 ], [ -124.03244141, 49.243979409000097 ], [ -124.032438487999983, 49.243173500000147 ], [ -124.033730924999972, 49.243187101000075 ], [ -124.034583215999987, 49.243155892000075 ], [ -124.03458486699995, 49.242680609000082 ], [ -124.034586601999962, 49.242200594000046 ], [ -124.035702007999959, 49.242211003000065 ], [ -124.035698305999958, 49.243174392000093 ], [ -124.03575870399996, 49.243594995000059 ], [ -124.035766483999964, 49.244157899000122 ], [ -124.034578911999944, 49.244164200000036 ], [ -124.034576106999964, 49.244780908000024 ], [ -124.035785, 49.24491991000005 ], [ -124.036179788999974, 49.244931590000078 ], [ -124.036850904999966, 49.244870002000027 ], [ -124.039238361999949, 49.244818663000061 ], [ -124.039389503999956, 49.244815387000116 ], [ -124.039867916999967, 49.244805106000079 ], [ -124.039855499999973, 49.245651205000065 ], [ -124.039855299999928, 49.246469712000092 ], [ -124.039895102999978, 49.247250111000028 ], [ -124.036854903999966, 49.24730739200006 ], [ -124.035914998999928, 49.247297514000081 ], [ -124.035594303999957, 49.247252907000075 ], [ -124.035265294999931, 49.247178508000118 ], [ -124.034574014999976, 49.246939005000087 ], [ -124.033694727999901, 49.246633913000075 ], [ -124.033002110999988, 49.246393595000043 ], [ -124.03218378699999, 49.246104906000063 ], [ -124.031908324000014, 49.245868502000043 ], [ -124.032187303999976, 49.245699790000074 ], [ -124.032330202, 49.245567389000023 ], [ -124.03242199099995, 49.245407898000039 ], [ -124.032448382999959, 49.245205801000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128900084", "BldgCostT": "84463334", "sL_LossRatio": "0.746352722950869", "sL_AssetLoss": "794860.1", "sL_BldgLoss": "593246", "sL_StrLoss": "330574", "sL_NStrLoss": "262672", "sL_ContLoss": "201614.1", "geom_point": "0101000020E610000043BF746268025FC0CF535F8E059F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.035698305999958, 49.243174392000093 ], [ -124.035702007999959, 49.242211003000065 ], [ -124.034586601999962, 49.242200594000046 ], [ -124.034589389999923, 49.241780689000059 ], [ -124.034591684999938, 49.241431806000065 ], [ -124.03676460199992, 49.241437288000078 ], [ -124.037171696999934, 49.241438289000037 ], [ -124.037194301999975, 49.240740909000081 ], [ -124.038852911, 49.240727804000045 ], [ -124.038996480999941, 49.24070519200005 ], [ -124.039093403999956, 49.240622394000077 ], [ -124.039083813999952, 49.240571197000058 ], [ -124.039045189999953, 49.240364890000109 ], [ -124.038851502999947, 49.240011992000113 ], [ -124.038770452999955, 49.239934858000041 ], [ -124.038636513999947, 49.23980729800013 ], [ -124.038475184999953, 49.239759394 ], [ -124.03733922, 49.240009699000055 ], [ -124.03708459799995, 49.240090597000126 ], [ -124.0370287099999, 49.240048194000089 ], [ -124.036862105999973, 49.239995589000095 ], [ -124.036586348999933, 49.239994762000023 ], [ -124.035908384999985, 49.239992693000069 ], [ -124.035659981999956, 49.239960193000059 ], [ -124.035501293999957, 49.239881699000108 ], [ -124.03541941, 49.239774002000082 ], [ -124.035422945999969, 49.239327610000082 ], [ -124.035424186999961, 49.239175311000018 ], [ -124.036266845999975, 49.239171067000044 ], [ -124.037200759999976, 49.239166379000096 ], [ -124.037553282999937, 49.23916461300005 ], [ -124.037788597000016, 49.239117522000129 ], [ -124.038058909999975, 49.239008265000066 ], [ -124.038545380999935, 49.238811652000066 ], [ -124.038744255000026, 49.239033181000131 ], [ -124.03897216899999, 49.239287125000033 ], [ -124.039443310999928, 49.239812097000055 ], [ -124.039623816999921, 49.24008641000011 ], [ -124.039745715, 49.240386595000054 ], [ -124.039793392999911, 49.240583329000088 ], [ -124.039823992999942, 49.240709508000052 ], [ -124.039864205, 49.241446706000026 ], [ -124.039864687999952, 49.241786986000143 ], [ -124.039865487999975, 49.242326393000099 ], [ -124.03986822899995, 49.243139503000101 ], [ -124.039868172999917, 49.243953396000066 ], [ -124.039867916999967, 49.244805106000079 ], [ -124.039389503999956, 49.244815387000116 ], [ -124.039238361999949, 49.244818663000061 ], [ -124.036850904999966, 49.244870002000027 ], [ -124.036179788999974, 49.244931590000078 ], [ -124.035785, 49.24491991000005 ], [ -124.034576106999964, 49.244780908000024 ], [ -124.034578911999944, 49.244164200000036 ], [ -124.035766483999964, 49.244157899000122 ], [ -124.03575870399996, 49.243594995000059 ], [ -124.035698305999958, 49.243174392000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.968219248584663", "sL_AssetLoss": "1554.4", "sL_BldgLoss": "1505", "sL_StrLoss": "1310", "sL_NStrLoss": "195", "sL_ContLoss": "49.4", "geom_point": "0101000020E6100000FEC08F49CA015FC0529AEEF199994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.027712330999975, 49.199717568000054 ], [ -124.028090756999973, 49.199714200000109 ], [ -124.028109119999954, 49.200599961000108 ], [ -124.02772292899999, 49.199734969000062 ], [ -124.027712330999975, 49.199717568000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "318125918", "BldgCostT": "218661668", "sL_LossRatio": "0.95281171247703", "sL_AssetLoss": "815888.9", "sL_BldgLoss": "777388.5", "sL_StrLoss": "657233", "sL_NStrLoss": "120155.5", "sL_ContLoss": "38500.4", "geom_point": "0101000020E6100000CF15E7A0B2025FC0F183CA2A329A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.045628431999944, 49.211160957000033 ], [ -124.045622741000017, 49.210891144000058 ], [ -124.04479907699999, 49.210898598000057 ], [ -124.044782018999967, 49.210089157000105 ], [ -124.045193843999954, 49.210085431000046 ], [ -124.045188153999945, 49.209815616000043 ], [ -124.045230767999925, 49.209815231000064 ], [ -124.045235549999916, 49.209701567000081 ], [ -124.045168179999976, 49.209700345000051 ], [ -124.045276900999966, 49.207116161000059 ], [ -124.044719474999923, 49.207121205000064 ], [ -124.04472516099996, 49.207391019000063 ], [ -124.043077949999983, 49.207405908000034 ], [ -124.043073232999987, 49.207181708000086 ], [ -124.043066596999964, 49.206866279000067 ], [ -124.041419403, 49.206881144000072 ], [ -124.04141373799996, 49.206611330000115 ], [ -124.04100194099999, 49.206615042000173 ], [ -124.040964816999988, 49.20484676000013 ], [ -124.039316748999951, 49.20481679600006 ], [ -124.039320819999929, 49.205010991000059 ], [ -124.039018668999987, 49.205013711000063 ], [ -124.038993896999941, 49.205600710000105 ], [ -124.038964023999981, 49.205600167000057 ], [ -124.038931794999939, 49.206363818000057 ], [ -124.03893730499999, 49.206363769000113 ], [ -124.03894061799997, 49.206521892000097 ], [ -124.038942957999893, 49.206633583000027 ], [ -124.039189833999927, 49.206631361000042 ], [ -124.039766551999932, 49.206626172000021 ], [ -124.039772022999927, 49.206887088000052 ], [ -124.039772208999977, 49.206895985000067 ], [ -124.039791875999953, 49.206895809000123 ], [ -124.040184008999958, 49.206892277000094 ], [ -124.040187730999932, 49.207069683000114 ], [ -124.040189668999943, 49.207162091000022 ], [ -124.04042878499996, 49.20715993800011 ], [ -124.041013270999926, 49.207154671000126 ], [ -124.041016840999973, 49.207324712000073 ], [ -124.041039810999948, 49.208418628000089 ], [ -124.040501290999956, 49.208022947000089 ], [ -124.040379712999979, 49.20793363000012 ], [ -124.039964332, 49.207709453000064 ], [ -124.03988923299994, 49.20766895900006 ], [ -124.039635467999972, 49.207532003000047 ], [ -124.038780715999962, 49.207149111000064 ], [ -124.037836118999905, 49.206815869000174 ], [ -124.036160528999986, 49.20635224900014 ], [ -124.035526426999965, 49.206364115000021 ], [ -124.035370079999964, 49.206417054000028 ], [ -124.035175781999953, 49.206482883000049 ], [ -124.034893947999947, 49.206661412000038 ], [ -124.034915095999949, 49.206452915000106 ], [ -124.035043452999957, 49.206044665000022 ], [ -124.034018799999956, 49.205756766000107 ], [ -124.033273274999956, 49.205549567000055 ], [ -124.032453147999888, 49.205258165000032 ], [ -124.03192234, 49.205012409000055 ], [ -124.031868032999938, 49.204987265000021 ], [ -124.03099472699995, 49.204494998000072 ], [ -124.030454459999987, 49.204104260000101 ], [ -124.029944772999954, 49.203672628000056 ], [ -124.029809770999961, 49.203526237000119 ], [ -124.029817187, 49.203526372000098 ], [ -124.029810557999951, 49.203207127000013 ], [ -124.029529848999957, 49.203209629000121 ], [ -124.029395022999935, 49.203029376000131 ], [ -124.029393185999965, 49.202940982000094 ], [ -124.029329330999957, 49.202941551000052 ], [ -124.029111802999978, 49.202650730000109 ], [ -124.028592619999955, 49.201598789000045 ], [ -124.029365182999982, 49.201591905000022 ], [ -124.029359581999955, 49.201322090000062 ], [ -124.029771335999939, 49.201318420000085 ], [ -124.029743321999916, 49.199969343000127 ], [ -124.030312383999927, 49.199964267000063 ], [ -124.03033973399999, 49.199318946000076 ], [ -124.031210704999964, 49.199348549000057 ], [ -124.03226821, 49.199384498000036 ], [ -124.03275124699995, 49.199816454000086 ], [ -124.033405164999976, 49.19943245600011 ], [ -124.034370203999941, 49.199499703000065 ], [ -124.040290540999962, 49.199603292000063 ], [ -124.040787984999952, 49.202805062000031 ], [ -124.041726386999969, 49.202384663000025 ], [ -124.047659052999975, 49.202891018000045 ], [ -124.047721062999983, 49.202948866000028 ], [ -124.047850134000015, 49.202978224000077 ], [ -124.048838927999938, 49.202977221000083 ], [ -124.048675552999953, 49.202827401000022 ], [ -124.050622930999921, 49.20286837400009 ], [ -124.051167070999952, 49.202862922000094 ], [ -124.053481914999949, 49.202839687000044 ], [ -124.053393372999963, 49.204953350000075 ], [ -124.053391134999956, 49.205006756000081 ], [ -124.053256782999966, 49.205004330000115 ], [ -124.052320390999938, 49.204987415000033 ], [ -124.052319100999966, 49.205018192000061 ], [ -124.052472051999985, 49.205020956000077 ], [ -124.05246275699993, 49.205242731000055 ], [ -124.052544386999926, 49.205244205000092 ], [ -124.053912811999979, 49.205268919000048 ], [ -124.053840792999921, 49.206988427000056 ], [ -124.054586506999939, 49.207001887000061 ], [ -124.054554850999978, 49.208388846000027 ], [ -124.054365479999902, 49.208426402000093 ], [ -124.053975602999955, 49.208781107000078 ], [ -124.053567798999921, 49.208335302000116 ], [ -124.052975390999933, 49.208286808000075 ], [ -124.052614475999974, 49.208731196000052 ], [ -124.052476800999969, 49.208704107000074 ], [ -124.052302689999976, 49.208905006000045 ], [ -124.051988587999929, 49.20896048900007 ], [ -124.051747494999958, 49.209250990000086 ], [ -124.049794406999979, 49.210438807000067 ], [ -124.049431095999964, 49.210751075000132 ], [ -124.048502791999951, 49.210734276000025 ], [ -124.048511262999952, 49.211134821000051 ], [ -124.045628431999944, 49.211160957000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46163166", "BldgCostT": "31836666", "sL_LossRatio": "0.898015405347615", "sL_AssetLoss": "201099", "sL_BldgLoss": "180590", "sL_StrLoss": "131890", "sL_NStrLoss": "48700", "sL_ContLoss": "20509", "geom_point": "0101000020E61000002071D9322A035FC0E3B60939E79B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.0506170699999, 49.22103369500006 ], [ -124.0505193799999, 49.220910414000073 ], [ -124.050358861999896, 49.220811112000064 ], [ -124.049512484999951, 49.220483412000128 ], [ -124.048540668999934, 49.219940915000073 ], [ -124.048277552999963, 49.219836227000016 ], [ -124.047960365000023, 49.219777323000059 ], [ -124.047645468999931, 49.219762620000068 ], [ -124.046939257999938, 49.219853333000053 ], [ -124.046814725000033, 49.219422980000012 ], [ -124.046807507999944, 49.219398056000045 ], [ -124.046603765999947, 49.219023406000048 ], [ -124.046352233, 49.218546141000019 ], [ -124.046336458999946, 49.218365770000062 ], [ -124.046372727999966, 49.218156635000035 ], [ -124.04663412599993, 49.217647308000053 ], [ -124.046701446999961, 49.217516116000063 ], [ -124.04668580699996, 49.217250012000079 ], [ -124.046651891999957, 49.216671494000131 ], [ -124.046697316999968, 49.216472499000098 ], [ -124.047073503999954, 49.215911103000067 ], [ -124.047071569999986, 49.216026119000027 ], [ -124.047731914999957, 49.215846505000037 ], [ -124.047813885999943, 49.215787712000044 ], [ -124.04785461199999, 49.215700208000079 ], [ -124.047849884999962, 49.21489960200006 ], [ -124.047877877999952, 49.214102407000027 ], [ -124.043848256999951, 49.214091479000047 ], [ -124.043570027, 49.214086430000123 ], [ -124.043539886999923, 49.213878498000049 ], [ -124.045465565999933, 49.213861084000094 ], [ -124.045488067999969, 49.213326268000138 ], [ -124.045580929999957, 49.213327952000093 ], [ -124.045596384999925, 49.212960570000085 ], [ -124.04936810599996, 49.213028874000052 ], [ -124.04973189, 49.213919599000057 ], [ -124.050270903999944, 49.214724310000044 ], [ -124.050054288999959, 49.214879512000081 ], [ -124.049666685999938, 49.215423592000043 ], [ -124.048316886999913, 49.216506002000138 ], [ -124.04797208699992, 49.217102696000097 ], [ -124.047460304999959, 49.217575509000092 ], [ -124.047375298999924, 49.218096809000066 ], [ -124.047477816999944, 49.218392997000109 ], [ -124.047702790999949, 49.218660793000062 ], [ -124.048358280999935, 49.219132194000089 ], [ -124.048696582999952, 49.219345683000057 ], [ -124.048684962999985, 49.219345473000061 ], [ -124.048688212999963, 49.219499028000023 ], [ -124.04893601399999, 49.219496778000128 ], [ -124.049102368999925, 49.21960175600001 ], [ -124.049105826999934, 49.219765101000107 ], [ -124.049357593999957, 49.219762813000031 ], [ -124.049519931999953, 49.219865254000105 ], [ -124.049523445999966, 49.220031171000066 ], [ -124.04977917799998, 49.220028847000073 ], [ -124.04990430399998, 49.220107804000087 ], [ -124.050166680999922, 49.220213201000021 ], [ -124.051116476999951, 49.220356995 ], [ -124.052117809999942, 49.220869693000047 ], [ -124.052723417999943, 49.220953800000082 ], [ -124.05384440399996, 49.220755789000094 ], [ -124.054355291999968, 49.220478868000065 ], [ -124.054356209999952, 49.221115606000041 ], [ -124.054265152999932, 49.222259859000125 ], [ -124.054249103999922, 49.2224616130001 ], [ -124.054197926999933, 49.22249321300005 ], [ -124.054045394999932, 49.222587443000066 ], [ -124.053991395999972, 49.222620800000115 ], [ -124.052144208999948, 49.223156488000036 ], [ -124.052120498999955, 49.223230795000092 ], [ -124.051660964999954, 49.223288669000034 ], [ -124.05111361799996, 49.223357598000071 ], [ -124.051113453999946, 49.223348545000121 ], [ -124.05109991199997, 49.222442505000117 ], [ -124.051027285, 49.222308804000122 ], [ -124.050860594999961, 49.222195103000104 ], [ -124.050648697999989, 49.222111096000056 ], [ -124.0506525799999, 49.221167608000052 ], [ -124.0506170699999, 49.22103369500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.924901526076756", "sL_AssetLoss": "4645.9", "sL_BldgLoss": "4297", "sL_StrLoss": "3480", "sL_NStrLoss": "817", "sL_ContLoss": "348.9", "geom_point": "0101000020E6100000D85CFB2388045FC0BB18984F359D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.069599045999936, 49.228837694000092 ], [ -124.069651522999933, 49.22757516900004 ], [ -124.06967001199996, 49.227130306000028 ], [ -124.071349280999982, 49.227160348000083 ], [ -124.072902518999982, 49.227188112000171 ], [ -124.072858958999973, 49.228585247000069 ], [ -124.071989964999958, 49.228582252000059 ], [ -124.070181628999975, 49.228509966000061 ], [ -124.070128912999962, 49.229678479000022 ], [ -124.06858986499995, 49.229702575000097 ], [ -124.068626557999949, 49.228820285000097 ], [ -124.069599045999936, 49.228837694000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.911073173205321", "sL_AssetLoss": "5916.1", "sL_BldgLoss": "5390", "sL_StrLoss": "4020", "sL_NStrLoss": "1370", "sL_ContLoss": "526.1", "geom_point": "0101000020E61000008B83D77089045FC0E8C2A3E85C994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.070087871999959, 49.199332701000074 ], [ -124.070082049999939, 49.199062889000054 ], [ -124.068635070999989, 49.199076287000082 ], [ -124.068435129999941, 49.199078137000051 ], [ -124.068406067999902, 49.197729077000076 ], [ -124.068626476999953, 49.197727037000028 ], [ -124.068817786999986, 49.197725266000134 ], [ -124.068811973999956, 49.197455454000135 ], [ -124.072105702999949, 49.197424924000074 ], [ -124.07209403899999, 49.196885300000083 ], [ -124.073740882999942, 49.196870001000029 ], [ -124.073758407999946, 49.19767943600008 ], [ -124.072523252999957, 49.19769091400007 ], [ -124.07255242799998, 49.199039973000076 ], [ -124.071317240000013, 49.199051438 ], [ -124.071323067999955, 49.19932125 ], [ -124.070087871999959, 49.199332701000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79514084", "BldgCostT": "53158334", "sL_LossRatio": "0.828755801420341", "sL_AssetLoss": "369995.6", "sL_BldgLoss": "306636", "sL_StrLoss": "203097", "sL_NStrLoss": "103539", "sL_ContLoss": "63359.6", "geom_point": "0101000020E6100000700C9E9536035FC057A0B358CC984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.047659052999975, 49.202891018000045 ], [ -124.041726386999969, 49.202384663000025 ], [ -124.040787984999952, 49.202805062000031 ], [ -124.040290540999962, 49.199603292000063 ], [ -124.034370203999941, 49.199499703000065 ], [ -124.034250849, 49.199400919 ], [ -124.034067814999958, 49.199249388000055 ], [ -124.033684869999931, 49.198934468000076 ], [ -124.033556559999937, 49.198693517000031 ], [ -124.033584387999952, 49.198457211000054 ], [ -124.033709668999904, 49.198250580000021 ], [ -124.033948566999953, 49.198049650000016 ], [ -124.034909937999913, 49.197474734000082 ], [ -124.038941052999974, 49.195063836000045 ], [ -124.03913861599996, 49.194884026000103 ], [ -124.039410238999963, 49.194636805000123 ], [ -124.039487158999918, 49.194566826000106 ], [ -124.039683598, 49.194298460000049 ], [ -124.03969177599997, 49.194284204000063 ], [ -124.039883360999937, 49.193950030000082 ], [ -124.039970732999976, 49.193965808000087 ], [ -124.04007663599999, 49.193984940000057 ], [ -124.042214313999949, 49.194371489000069 ], [ -124.042748416, 49.194387500000104 ], [ -124.043394694999961, 49.194310996000134 ], [ -124.044051091999918, 49.194187783000103 ], [ -124.04443921499994, 49.194186802000075 ], [ -124.044767585, 49.194254982000089 ], [ -124.045777205000022, 49.194464578000073 ], [ -124.04592195699999, 49.194494641000091 ], [ -124.04632326699999, 49.194577952000017 ], [ -124.046518955999929, 49.194607156000046 ], [ -124.046797286999947, 49.194633423000028 ], [ -124.047058583999984, 49.194658055000097 ], [ -124.047196189999951, 49.19467478100006 ], [ -124.047485304999981, 49.194717146000094 ], [ -124.047747043999962, 49.194759752000074 ], [ -124.04806381899995, 49.194810853000043 ], [ -124.048352724999972, 49.194844210000056 ], [ -124.048614056999952, 49.194868826000111 ], [ -124.04888929399999, 49.194902296000102 ], [ -124.049191957999938, 49.194935535000099 ], [ -124.049288220999955, 49.194943669000075 ], [ -124.049618738999953, 49.19499462600006 ], [ -124.049852768999955, 49.195028479000015 ], [ -124.050086638999957, 49.195053335000097 ], [ -124.050361681999945, 49.19507781800008 ], [ -124.050622983999943, 49.195102441000081 ], [ -124.050884317999973, 49.195127051000036 ], [ -124.050980562999911, 49.195135161000081 ], [ -124.051187183999957, 49.19516926500004 ], [ -124.05140799899999, 49.194527284000067 ], [ -124.051487921999978, 49.193603093000064 ], [ -124.051466192999911, 49.193368609000053 ], [ -124.05139980099996, 49.193217890000071 ], [ -124.051210203, 49.193097396000063 ], [ -124.050876499999987, 49.192947288000084 ], [ -124.050658077999955, 49.192889875000027 ], [ -124.050137388999985, 49.192753 ], [ -124.049683415999979, 49.192561093000066 ], [ -124.049502575999938, 49.192459698000057 ], [ -124.049382114999972, 49.192324209000034 ], [ -124.049225701999944, 49.19203150500001 ], [ -124.049083317999958, 49.191898303000066 ], [ -124.049013581999972, 49.191860111000096 ], [ -124.048282914999959, 49.191657728000067 ], [ -124.048123191999963, 49.191613503000063 ], [ -124.047106791999965, 49.1912321820001 ], [ -124.046607275999975, 49.190981570000098 ], [ -124.04583521799999, 49.190594200000071 ], [ -124.045492424, 49.190421761 ], [ -124.043712590999974, 49.189526402000119 ], [ -124.044254814999988, 49.189053693000034 ], [ -124.044460101999931, 49.188801692000084 ], [ -124.044628298999982, 49.188453500000065 ], [ -124.044665214999938, 49.18822936400003 ], [ -124.044683599999971, 49.188117793000039 ], [ -124.044654591999972, 49.187816079000058 ], [ -124.044650194999946, 49.187770504000113 ], [ -124.044526791999928, 49.187444111000055 ], [ -124.044366098999916, 49.187242147000049 ], [ -124.044008675999962, 49.186793028000039 ], [ -124.043953922999918, 49.186724209000062 ], [ -124.042867696999963, 49.185596894000042 ], [ -124.042627182999979, 49.185395157000109 ], [ -124.046647210999978, 49.185468111000056 ], [ -124.046767478999968, 49.182605714000076 ], [ -124.052246409999952, 49.182704902000062 ], [ -124.052246351999941, 49.182706238000073 ], [ -124.053332768999951, 49.182725873000066 ], [ -124.05329941299999, 49.183522465000102 ], [ -124.05508595299996, 49.183554730000054 ], [ -124.055031097999958, 49.184865903000038 ], [ -124.05497871199999, 49.186117976000034 ], [ -124.057035636999942, 49.186155085000074 ], [ -124.056885199999968, 49.189754112000124 ], [ -124.051405428999956, 49.189655161000111 ], [ -124.051425481999942, 49.189176786000097 ], [ -124.050938798999979, 49.189167984000065 ], [ -124.050869122999956, 49.190829659000016 ], [ -124.05062490399996, 49.190825241000042 ], [ -124.05062231399999, 49.190887002000068 ], [ -124.051509231999916, 49.190903043000056 ], [ -124.051504409999922, 49.191018075000073 ], [ -124.054000448999957, 49.191063178 ], [ -124.053947699999938, 49.192323104000117 ], [ -124.055982452999956, 49.192359830000051 ], [ -124.055954644999943, 49.193024696000094 ], [ -124.056178084999942, 49.193028727000105 ], [ -124.056170123999919, 49.193219087000024 ], [ -124.056550897999941, 49.193225954000056 ], [ -124.05662678099992, 49.191411083000148 ], [ -124.062106769999929, 49.191509767000106 ], [ -124.062029118999973, 49.193372207000067 ], [ -124.063554930999985, 49.193399635000056 ], [ -124.063518836999947, 49.194265928000071 ], [ -124.064625303999918, 49.194255733000034 ], [ -124.064631095999943, 49.19452554700004 ], [ -124.065454480999975, 49.194517953000087 ], [ -124.065442889999971, 49.193978326000021 ], [ -124.067089642999946, 49.193963122000042 ], [ -124.067095447, 49.194232935000102 ], [ -124.068604138999973, 49.194218984000088 ], [ -124.068742205999953, 49.19421770700005 ], [ -124.068765459999952, 49.195296956000107 ], [ -124.068611010999987, 49.195298385000044 ], [ -124.066706966, 49.195315988000083 ], [ -124.06671276799996, 49.19558580000011 ], [ -124.063462594999947, 49.195615777000114 ], [ -124.063404973999951, 49.196998631000085 ], [ -124.062601684999947, 49.196984194000073 ], [ -124.062567686999955, 49.19779975000008 ], [ -124.057774917999936, 49.19771348900013 ], [ -124.057771696999922, 49.197790568000059 ], [ -124.052290975999981, 49.197691664000018 ], [ -124.052306512999905, 49.197320934000039 ], [ -124.048488259999928, 49.197251865000048 ], [ -124.048494705999957, 49.197098338000039 ], [ -124.047053216999984, 49.197072228000081 ], [ -124.047057821999942, 49.196962636000087 ], [ -124.045046749999983, 49.196926176000098 ], [ -124.045084072999956, 49.196038864000066 ], [ -124.044356278999928, 49.196025660000011 ], [ -124.044363161999939, 49.195862067000071 ], [ -124.043300146999954, 49.195842773000088 ], [ -124.043283430999963, 49.196239831000085 ], [ -124.040479900999955, 49.196188894000045 ], [ -124.040443863999911, 49.197043599000047 ], [ -124.038104812999961, 49.197001046000075 ], [ -124.038071477999893, 49.197790687000087 ], [ -124.038116753999958, 49.197791511000091 ], [ -124.038107724999975, 49.198005401000081 ], [ -124.038350354999935, 49.19800321900005 ], [ -124.038367302999944, 49.198812664000108 ], [ -124.038546894999939, 49.198811050000124 ], [ -124.038575812999966, 49.198125855000058 ], [ -124.038671559999969, 49.198127598000085 ], [ -124.03871627, 49.197068156000071 ], [ -124.044196886999927, 49.197167751000045 ], [ -124.044179064999952, 49.197591269000092 ], [ -124.047962174999924, 49.197659853000047 ], [ -124.04793741499995, 49.198249337000028 ], [ -124.048379595999933, 49.19825734500008 ], [ -124.048352197999932, 49.198909791000077 ], [ -124.048906815999942, 49.198919833000069 ], [ -124.048874027999915, 49.199700797000048 ], [ -124.049438844999926, 49.199711020000088 ], [ -124.049407922999961, 49.200447737000083 ], [ -124.051162625999936, 49.20047947800002 ], [ -124.05115938699997, 49.200556717000076 ], [ -124.05288106700003, 49.200587832000117 ], [ -124.052847235999963, 49.201395271000131 ], [ -124.053541891999913, 49.20140781800005 ], [ -124.053481914999949, 49.202839687000044 ], [ -124.051167070999952, 49.202862922000094 ], [ -124.050622930999921, 49.20286837400009 ], [ -124.048675552999953, 49.202827401000022 ], [ -124.048838927999938, 49.202977221000083 ], [ -124.047850134000015, 49.202978224000077 ], [ -124.047721062999983, 49.202948866000028 ], [ -124.047659052999975, 49.202891018000045 ] ], [ [ -124.048207684999937, 49.187179741000108 ], [ -124.048247322999913, 49.186235640000056 ], [ -124.047964761999978, 49.18623052099999 ], [ -124.047702697999966, 49.186225774000057 ], [ -124.047702752999925, 49.186224437000078 ], [ -124.04694864199999, 49.186210772000045 ], [ -124.046923742999979, 49.18680341800011 ], [ -124.04690892, 49.18715620800004 ], [ -124.048207684999937, 49.187179741000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87594001", "BldgCostT": "58650001", "sL_LossRatio": "0.818717768406404", "sL_AssetLoss": "460456.6", "sL_BldgLoss": "376984", "sL_StrLoss": "243832", "sL_NStrLoss": "133152", "sL_ContLoss": "83472.6", "geom_point": "0101000020E6100000118302E733045FC03F0476B1409B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.064744558999919, 49.228127041000022 ], [ -124.063856637999962, 49.228050588000031 ], [ -124.058028395999983, 49.228005819000032 ], [ -124.05795021199998, 49.226679378000085 ], [ -124.057921256000014, 49.224993145000056 ], [ -124.057672211999929, 49.223711432000073 ], [ -124.057460006999918, 49.22261931700006 ], [ -124.05578529, 49.222603722000095 ], [ -124.054045394999932, 49.222587443000066 ], [ -124.054197926999933, 49.22249321300005 ], [ -124.054249103999922, 49.2224616130001 ], [ -124.054265152999932, 49.222259859000125 ], [ -124.054356209999952, 49.221115606000041 ], [ -124.054355291999968, 49.220478868000065 ], [ -124.054469805999986, 49.220416797000013 ], [ -124.055439696999926, 49.220164809000089 ], [ -124.05709564199995, 49.219594868000073 ], [ -124.057016507999919, 49.221486745000036 ], [ -124.057674277999979, 49.221498596000096 ], [ -124.057759286999982, 49.219465581000044 ], [ -124.058962810999958, 49.219268887000105 ], [ -124.059536275999946, 49.219075197000087 ], [ -124.060736053, 49.218123313000028 ], [ -124.060759656999949, 49.218123738000038 ], [ -124.06076048499996, 49.218103928000083 ], [ -124.061223597999941, 49.217736487000103 ], [ -124.061615425999918, 49.216789404000039 ], [ -124.061622992999929, 49.21527830000008 ], [ -124.061640326999964, 49.215222451000095 ], [ -124.062289664999923, 49.215234122 ], [ -124.062335232999914, 49.214141628000057 ], [ -124.063192898999958, 49.213563504000078 ], [ -124.063434299999955, 49.213264491000096 ], [ -124.063400886999958, 49.213020890000038 ], [ -124.06302429199998, 49.212727508000043 ], [ -124.062612908999981, 49.212066705000026 ], [ -124.061803107999978, 49.211515501000058 ], [ -124.061689980999986, 49.211364070000087 ], [ -124.061730489999931, 49.210393062000037 ], [ -124.064369145999947, 49.210440469000098 ], [ -124.064388407999971, 49.209978127000049 ], [ -124.065128311999956, 49.2099914080001 ], [ -124.065132583999969, 49.209888845000059 ], [ -124.066078779999955, 49.209905822000074 ], [ -124.066124493999951, 49.208807525000054 ], [ -124.06617345699999, 49.207631135000149 ], [ -124.065144812999932, 49.207612677000036 ], [ -124.063660904999949, 49.207586034000087 ], [ -124.063685956999961, 49.206984886000029 ], [ -124.05965079399999, 49.206912331000069 ], [ -124.059680174, 49.206208781000043 ], [ -124.059037813999979, 49.206197217000103 ], [ -124.059073053999953, 49.205353585000047 ], [ -124.056301565999988, 49.205303648000083 ], [ -124.05635269699998, 49.204081279000022 ], [ -124.05640491299999, 49.202832890000138 ], [ -124.056452097999923, 49.201704708000172 ], [ -124.061933300999911, 49.201803399 ], [ -124.061909389999954, 49.202376716000039 ], [ -124.062621395999955, 49.202370166000108 ], [ -124.062738570999926, 49.199559457000056 ], [ -124.068219533999965, 49.199657830000071 ], [ -124.068083992999931, 49.202918287000088 ], [ -124.068069919999985, 49.203256798000062 ], [ -124.066909965999955, 49.203236002000047 ], [ -124.066876430999955, 49.204042115000064 ], [ -124.069292362999974, 49.204085414000055 ], [ -124.069219544999939, 49.205837889000094 ], [ -124.071150953999961, 49.205872466000123 ], [ -124.071190126, 49.204928781000049 ], [ -124.071444317999976, 49.204933328000095 ], [ -124.07143965399996, 49.204717484000078 ], [ -124.071027878, 49.204721304000032 ], [ -124.071010394000012, 49.203911869000102 ], [ -124.073481011999917, 49.20388893100003 ], [ -124.073486851999974, 49.204158742000089 ], [ -124.073898623999924, 49.204154914000128 ], [ -124.073881093999944, 49.203345480000038 ], [ -124.073469329999952, 49.203349308000085 ], [ -124.073456446999927, 49.202754170000041 ], [ -124.073451806999955, 49.202539873000084 ], [ -124.076487089999915, 49.202511621000099 ], [ -124.077157626999963, 49.202505369000107 ], [ -124.077181071999988, 49.203584614000079 ], [ -124.077592837999958, 49.203580772000095 ], [ -124.077616182999961, 49.204654957000102 ], [ -124.077616292999934, 49.204660017000037 ], [ -124.077612766999962, 49.204660050000044 ], [ -124.07720451599999, 49.204663858000046 ], [ -124.077217241999989, 49.205249529000085 ], [ -124.077222101999936, 49.205473291000061 ], [ -124.077068083999933, 49.205474728000048 ], [ -124.076810320999954, 49.205477131000059 ], [ -124.076818514999928, 49.205854463000058 ], [ -124.07682789899998, 49.206286565000106 ], [ -124.076619511999951, 49.20628850700011 ], [ -124.076522762999986, 49.208625673000014 ], [ -124.076482661999961, 49.20862495800003 ], [ -124.076430331, 49.209888973000083 ], [ -124.074719350999928, 49.209858431000107 ], [ -124.07466753199995, 49.211108912000014 ], [ -124.074043082999978, 49.211097759000054 ], [ -124.074016042999972, 49.211750027000058 ], [ -124.072881141999972, 49.211729747000035 ], [ -124.072830762999942, 49.212944253000053 ], [ -124.072736698999933, 49.212942572000074 ], [ -124.072732845999894, 49.213035448000056 ], [ -124.072650176999971, 49.215028152000073 ], [ -124.071129852999931, 49.215000965000101 ], [ -124.071125819999935, 49.215098089000058 ], [ -124.069251615999946, 49.215064545000097 ], [ -124.06921209599993, 49.216015434000091 ], [ -124.068927734999946, 49.216010341000057 ], [ -124.068889435999949, 49.21693163900003 ], [ -124.068261430999982, 49.216920390000034 ], [ -124.068125192999958, 49.220196349000105 ], [ -124.067938905999966, 49.220193011000113 ], [ -124.06785210299995, 49.22227985000012 ], [ -124.066415392999915, 49.222254100000036 ], [ -124.066414244999947, 49.222281685000013 ], [ -124.065541001999947, 49.22226602400012 ], [ -124.065525928999975, 49.222627907000096 ], [ -124.065276295999965, 49.222623428000155 ], [ -124.065257044999925, 49.223085612000013 ], [ -124.063656378999937, 49.223056883000083 ], [ -124.063571091999975, 49.22510254700007 ], [ -124.062833378000022, 49.225089299000075 ], [ -124.062817683999981, 49.225465566 ], [ -124.061491146999984, 49.225441730000043 ], [ -124.061468333000022, 49.225988324000056 ], [ -124.061458400999939, 49.226226282000034 ], [ -124.06350620299996, 49.226263071000076 ], [ -124.066848801999967, 49.226323037000036 ], [ -124.066833623999983, 49.22668767100005 ], [ -124.067840387999937, 49.226705712000083 ], [ -124.067815617999941, 49.227301088000104 ], [ -124.067828223999982, 49.227301314000016 ], [ -124.06781070999989, 49.227722285000091 ], [ -124.067727756999957, 49.229716063000104 ], [ -124.064615131999957, 49.229764703000107 ], [ -124.064744558999919, 49.228127041000022 ] ], [ [ -124.061337638999959, 49.226872806000131 ], [ -124.061355878999933, 49.226435812000076 ], [ -124.060886547, 49.226427374000124 ], [ -124.060875476999939, 49.226692510000099 ], [ -124.060262939, 49.226681496000047 ], [ -124.060253352999894, 49.22691101800006 ], [ -124.060463978999962, 49.226914805000057 ], [ -124.060455259999969, 49.227123578000047 ], [ -124.060623826999958, 49.227126610000035 ], [ -124.060632383999945, 49.226921681000071 ], [ -124.061312392999966, 49.226933907000067 ], [ -124.061314959999947, 49.226872398000062 ], [ -124.061337638999959, 49.226872806000131 ] ], [ [ -124.074733863999981, 49.204686877000093 ], [ -124.074728014999963, 49.204417065000086 ], [ -124.07390446699999, 49.204424725000067 ], [ -124.073916441999984, 49.204977528000015 ], [ -124.074328461999954, 49.204984888000112 ], [ -124.074322087999946, 49.204690707000054 ], [ -124.074733863999981, 49.204686877000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101234582", "BldgCostT": "67818332", "sL_LossRatio": "0.929817917301351", "sL_AssetLoss": "214621.16", "sL_BldgLoss": "199558.6", "sL_StrLoss": "161133.8", "sL_NStrLoss": "38424.8", "sL_ContLoss": "15062.56", "geom_point": "0101000020E61000001DE63E187C025FC05D3086ACCD954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.054846590999929, 49.179772686000028 ], [ -124.054840853999949, 49.179502872000093 ], [ -124.052371434999941, 49.179525403000056 ], [ -124.052365714999922, 49.179255589000036 ], [ -124.052079866, 49.179258194000106 ], [ -124.051954146999961, 49.17925933800008 ], [ -124.051948426999914, 49.17898952400008 ], [ -124.051536861999978, 49.17899327300006 ], [ -124.051525429, 49.178453643000068 ], [ -124.051113868999892, 49.178457390000027 ], [ -124.051108151999983, 49.178187576000091 ], [ -124.050696593999987, 49.178191321000064 ], [ -124.050679457999934, 49.177381877000123 ], [ -124.051091011000025, 49.177378131000097 ], [ -124.051079582999961, 49.176838503000056 ], [ -124.05149113099999, 49.17683475600009 ], [ -124.051490950999948, 49.176826289000047 ], [ -124.05092678799997, 49.17681608300007 ], [ -124.050937169999912, 49.176568400000093 ], [ -124.05021137599999, 49.176555266000058 ], [ -124.050231213999979, 49.176082217000122 ], [ -124.049216168999948, 49.176063840000069 ], [ -124.049229161999946, 49.175754183000045 ], [ -124.048624166, 49.175743226000058 ], [ -124.048628445999938, 49.175641234000032 ], [ -124.046655400999924, 49.17560547500009 ], [ -124.046669453999982, 49.175270952000091 ], [ -124.044633947999969, 49.175234024000133 ], [ -124.04469611699993, 49.173755588000077 ], [ -124.043060478999934, 49.173725886000099 ], [ -124.043089419999944, 49.173038185000038 ], [ -124.040693234999949, 49.172994626000026 ], [ -124.040722355999918, 49.17230344700009 ], [ -124.040331484999967, 49.172296336000031 ], [ -124.040330543999943, 49.172318671000021 ], [ -124.038860409999927, 49.172291915000116 ], [ -124.038799163999968, 49.173744105000068 ], [ -124.035689942999952, 49.173687451000063 ], [ -124.035662673999965, 49.174332981000106 ], [ -124.032047615999957, 49.174266997000068 ], [ -124.031932476999927, 49.17698736600002 ], [ -124.031718043999916, 49.176983448000037 ], [ -124.031654105999976, 49.178493772000039 ], [ -124.031056044999929, 49.178254623000051 ], [ -124.029965748, 49.177589446000049 ], [ -124.029653148999955, 49.177398744000122 ], [ -124.029468157999958, 49.177212971000131 ], [ -124.029446734999965, 49.177191480000012 ], [ -124.029282735999956, 49.176921919000051 ], [ -124.029055419999935, 49.176281754000087 ], [ -124.029049357999924, 49.176264650000107 ], [ -124.028699867999975, 49.175280185000055 ], [ -124.028604394999945, 49.175011351000109 ], [ -124.028424239999978, 49.174800026000113 ], [ -124.028364610999958, 49.174765133000015 ], [ -124.028119314999955, 49.17462156200002 ], [ -124.02694230599991, 49.174097549000088 ], [ -124.02447331299993, 49.173016759000113 ], [ -124.023657391999933, 49.172737059000042 ], [ -124.022958068999955, 49.172553145000073 ], [ -124.022401050000028, 49.172469991000042 ], [ -124.022169047999938, 49.172447646000109 ], [ -124.022513412, 49.170369799000071 ], [ -124.021859771999956, 49.17030247600006 ], [ -124.02190913, 49.169603378000026 ], [ -124.021912952999955, 49.169554036000051 ], [ -124.023921578999989, 49.169590907000106 ], [ -124.023898225999957, 49.170140489000069 ], [ -124.023981747999983, 49.170142021000039 ], [ -124.02408573299999, 49.167694711000095 ], [ -124.027290312999952, 49.167753454000078 ], [ -124.027311841999946, 49.167245901000143 ], [ -124.025819323999926, 49.167218554000037 ], [ -124.025832013999917, 49.166919616000065 ], [ -124.023840969999952, 49.166883103000025 ], [ -124.023847744999912, 49.166723634000093 ], [ -124.022134686999919, 49.166692188000027 ], [ -124.02242444499997, 49.162951807000077 ], [ -124.021547539999972, 49.162138548000037 ], [ -124.021602692999934, 49.160841861000122 ], [ -124.021604226999955, 49.160805830000051 ], [ -124.026158992999981, 49.160889413000092 ], [ -124.026163146999977, 49.160791542000027 ], [ -124.031639463999937, 49.160891782000121 ], [ -124.031637404999984, 49.160940425000049 ], [ -124.032203247000027, 49.160950767000038 ], [ -124.032178516999963, 49.161535302000104 ], [ -124.032068806999959, 49.164128320000088 ], [ -124.033707853999914, 49.164158258000064 ], [ -124.033768532999929, 49.162722936000073 ], [ -124.038358729999956, 49.162806646000092 ], [ -124.039245093999952, 49.162822788000099 ], [ -124.039231019999974, 49.16315663600006 ], [ -124.039093356999956, 49.166421918000033 ], [ -124.037672988999987, 49.166396049000113 ], [ -124.037647804999949, 49.166992899 ], [ -124.038187287999946, 49.167002727000039 ], [ -124.038183708999924, 49.167087579000111 ], [ -124.043505698000018, 49.167184388000109 ], [ -124.043503264999984, 49.167242241000082 ], [ -124.044572562999917, 49.167261661000047 ], [ -124.044480060999959, 49.169461591000065 ], [ -124.046322230999976, 49.169495021000081 ], [ -124.04629334000002, 49.170182727000075 ], [ -124.048689386999968, 49.170226161000102 ], [ -124.048662852999925, 49.170858521000113 ], [ -124.050689151999975, 49.170895211000165 ], [ -124.050661683999948, 49.171550484000129 ], [ -124.052473927999927, 49.171583266000098 ], [ -124.052447653999977, 49.172210596000085 ], [ -124.054252898999948, 49.172243221 ], [ -124.054239942999942, 49.172552880000119 ], [ -124.054844897, 49.172563806000085 ], [ -124.05482510899999, 49.173036858000089 ], [ -124.055840088999943, 49.17305518200002 ], [ -124.055829732999939, 49.173302867000075 ], [ -124.056058014999905, 49.173306987000089 ], [ -124.056126431999957, 49.171670314000089 ], [ -124.057041108999925, 49.171686818000133 ], [ -124.061604094999964, 49.171769028000057 ], [ -124.061568012999928, 49.172634621000093 ], [ -124.062712005999956, 49.172655201000083 ], [ -124.062673666999956, 49.173575462000038 ], [ -124.062562052999951, 49.176254311000065 ], [ -124.060121969999926, 49.176210398000066 ], [ -124.060133616999934, 49.176755735000043 ], [ -124.059857331999979, 49.176758272000072 ], [ -124.059823535999925, 49.177568182000101 ], [ -124.060150906999951, 49.177565177000069 ], [ -124.06015667, 49.177834991000047 ], [ -124.060979778999979, 49.177827431000011 ], [ -124.060985546999987, 49.17809724500006 ], [ -124.061808661999962, 49.178089679000081 ], [ -124.061831750999957, 49.179168934000053 ], [ -124.061399148999925, 49.179172911000073 ], [ -124.060597053999956, 49.179180281000079 ], [ -124.060591287999927, 49.178910467000094 ], [ -124.059768159999962, 49.178918024000097 ], [ -124.059762398999965, 49.178648209000052 ], [ -124.058939273999925, 49.178655761000115 ], [ -124.058933517999918, 49.178385947000038 ], [ -124.058110397999911, 49.178393493000058 ], [ -124.058104645999975, 49.178123678000105 ], [ -124.057281530999944, 49.178131218000075 ], [ -124.057280378999934, 49.178077139000031 ], [ -124.05275063, 49.17799535700005 ], [ -124.052760111999987, 49.178442394000058 ], [ -124.054817916999951, 49.178423615000071 ], [ -124.054823650999978, 49.178693429000106 ], [ -124.056469901999961, 49.178678380000086 ], [ -124.056492875999936, 49.179757636000069 ], [ -124.054846590999929, 49.179772686000028 ] ], [ [ -124.052747357999948, 49.17790277700005 ], [ -124.052769970000014, 49.17736283700004 ], [ -124.052325667, 49.177366888000073 ], [ -124.05233710899995, 49.177906517000146 ], [ -124.052747357999948, 49.17790277700005 ] ], [ [ -124.059327726999953, 49.177569251000115 ], [ -124.059327801, 49.177572731000048 ], [ -124.059455722999957, 49.177571557000114 ], [ -124.059327726999953, 49.177569251000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151951167", "BldgCostT": "99356667", "sL_LossRatio": "0.758023317233465", "sL_AssetLoss": "1130237", "sL_BldgLoss": "856746", "sL_StrLoss": "482243", "sL_NStrLoss": "374503", "sL_ContLoss": "273491", "geom_point": "0101000020E610000013AC81186E015FC052A6FBADDB974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.03275124699995, 49.199816454000086 ], [ -124.03226821, 49.199384498000036 ], [ -124.031210704999964, 49.199348549000057 ], [ -124.03033973399999, 49.199318946000076 ], [ -124.030439503999958, 49.196964850000079 ], [ -124.03254687499999, 49.197003341000027 ], [ -124.032578059999977, 49.196266702000116 ], [ -124.032632126999928, 49.196267689000145 ], [ -124.032724979999969, 49.194074099000012 ], [ -124.033161144999937, 49.194082060000071 ], [ -124.033181646999964, 49.193597579000034 ], [ -124.032709587999946, 49.19358896300011 ], [ -124.032742388999949, 49.192813994000048 ], [ -124.02965472299995, 49.192757584000049 ], [ -124.029677882999977, 49.19221126700004 ], [ -124.025750311999928, 49.192139385000097 ], [ -124.025778019999933, 49.191487058000114 ], [ -124.022540833999969, 49.191427703000059 ], [ -124.022574405999961, 49.190638592000042 ], [ -124.021821131999985, 49.190624766000035 ], [ -124.0217669, 49.191899015000054 ], [ -124.02411322599994, 49.191942061000049 ], [ -124.024093276999949, 49.192411371000077 ], [ -124.024795529999892, 49.19242424400003 ], [ -124.024707623999973, 49.194492694000097 ], [ -124.02465211199997, 49.194457420000084 ], [ -124.023759734999956, 49.194705230000039 ], [ -124.02325471599994, 49.194574422000095 ], [ -124.022931318999923, 49.194490624000125 ], [ -124.022399465999982, 49.194619914 ], [ -124.018150709999958, 49.192557808000103 ], [ -124.01460405099999, 49.191907224 ], [ -124.013555114999988, 49.19116168200005 ], [ -124.010819004999959, 49.190041834000056 ], [ -124.010701381999979, 49.189054938000048 ], [ -124.01041015199992, 49.188963456000074 ], [ -124.010403781999983, 49.189907080000104 ], [ -124.007422627999944, 49.189992203000038 ], [ -124.004680368, 49.189192755000072 ], [ -124.004513312999947, 49.189144058000025 ], [ -124.004488085999967, 49.189116184000092 ], [ -124.002695452999902, 49.187134771000103 ], [ -124.002233645999937, 49.18661565200005 ], [ -124.000024301999986, 49.186897866000052 ], [ -123.999955655999884, 49.186906634000131 ], [ -123.999961430999932, 49.18677242100005 ], [ -123.999320550999983, 49.186760523000025 ], [ -123.999255711, 49.184425690000118 ], [ -123.99946154099996, 49.18266832000004 ], [ -123.99901838199996, 49.18249762500006 ], [ -123.997395755999932, 49.181872643000126 ], [ -123.997253559999976, 49.181798483000065 ], [ -123.996797821999962, 49.18156078100003 ], [ -123.99661873399999, 49.181422379000054 ], [ -123.99776006899999, 49.180932912000067 ], [ -123.997945003999988, 49.180853586000097 ], [ -123.998171346999953, 49.180756516000095 ], [ -123.998837104999964, 49.180470992000046 ], [ -123.99938631099991, 49.180235416000095 ], [ -123.999397792999943, 49.180230489000067 ], [ -123.999598987999903, 49.180175700000099 ], [ -123.999795686999946, 49.180157704000067 ], [ -124.000002407999929, 49.180156582000116 ], [ -124.002266376999955, 49.1801441470001 ], [ -124.004064375999917, 49.180145917000075 ], [ -124.004833616999917, 49.180146692000058 ], [ -124.00484114299995, 49.179749569000116 ], [ -124.005916601999928, 49.179728775000029 ], [ -124.005652429999955, 49.179331259000094 ], [ -124.006817220999977, 49.179327266000101 ], [ -124.006854241999989, 49.178272582000083 ], [ -124.00807778699999, 49.178267233000071 ], [ -124.008150977999918, 49.177455294000012 ], [ -124.009678024999943, 49.177465642000094 ], [ -124.014032486999952, 49.177548631000029 ], [ -124.01416047, 49.177504171000052 ], [ -124.01646014, 49.177510513000144 ], [ -124.016702547999955, 49.177451036 ], [ -124.016879130999925, 49.177328232000036 ], [ -124.01694114799993, 49.177159171000078 ], [ -124.01687356799999, 49.174641446000045 ], [ -124.017070439999912, 49.174569455000068 ], [ -124.01712590899993, 49.175749742000107 ], [ -124.018874893999978, 49.175699082000023 ], [ -124.019678941, 49.17567576500015 ], [ -124.019698753999947, 49.174932475000062 ], [ -124.019714867999966, 49.174326923000059 ], [ -124.020368244999986, 49.174309579000102 ], [ -124.020875919999966, 49.174307936000012 ], [ -124.022344072999914, 49.17430318600006 ], [ -124.022374570999915, 49.173320729000061 ], [ -124.022169047999938, 49.172447646000109 ], [ -124.022401050000028, 49.172469991000042 ], [ -124.022958068999955, 49.172553145000073 ], [ -124.023657391999933, 49.172737059000042 ], [ -124.02447331299993, 49.173016759000113 ], [ -124.02694230599991, 49.174097549000088 ], [ -124.028119314999955, 49.17462156200002 ], [ -124.028364610999958, 49.174765133000015 ], [ -124.028424239999978, 49.174800026000113 ], [ -124.028604394999945, 49.175011351000109 ], [ -124.028699867999975, 49.175280185000055 ], [ -124.029049357999924, 49.176264650000107 ], [ -124.029055419999935, 49.176281754000087 ], [ -124.029282735999956, 49.176921919000051 ], [ -124.029446734999965, 49.177191480000012 ], [ -124.029468157999958, 49.177212971000131 ], [ -124.029653148999955, 49.177398744000122 ], [ -124.029965748, 49.177589446000049 ], [ -124.031056044999929, 49.178254623000051 ], [ -124.031654105999976, 49.178493772000039 ], [ -124.031626288999917, 49.179150867000047 ], [ -124.02752706699999, 49.179075892000107 ], [ -124.027414216999929, 49.181735787 ], [ -124.027450282999922, 49.18173644700007 ], [ -124.027297569999917, 49.185335457000043 ], [ -124.021818383999957, 49.185235001000123 ], [ -124.021820795999986, 49.185178312000097 ], [ -124.020364333999936, 49.18515156200008 ], [ -124.020364946999962, 49.185137162000089 ], [ -124.01964020699991, 49.185123844000024 ], [ -124.019793512, 49.181524844000073 ], [ -124.021938478, 49.181564246000036 ], [ -124.022076304999985, 49.17832459100002 ], [ -124.026175451999961, 49.178399774000084 ], [ -124.026250188999953, 49.176639231000095 ], [ -124.024873720999921, 49.176614003000026 ], [ -124.024915494999945, 49.175630554000072 ], [ -124.022964009999953, 49.175594756000045 ], [ -124.022990291, 49.174976630000067 ], [ -124.022129602999954, 49.174960831000085 ], [ -124.022119683999961, 49.175194013000088 ], [ -124.022109689999979, 49.175193829000108 ], [ -124.022073230999965, 49.176050911000054 ], [ -124.020870732999967, 49.176028826000035 ], [ -124.020870382999959, 49.176037041000079 ], [ -124.020142351999979, 49.176023663000116 ], [ -124.020064154999929, 49.177860055000068 ], [ -124.019982157999962, 49.177858549000064 ], [ -124.019960179999913, 49.178374657000056 ], [ -124.018565207, 49.178349009000044 ], [ -124.018509195999982, 49.179663290000086 ], [ -124.017604542999933, 49.17964664600003 ], [ -124.017579778999959, 49.18022744200006 ], [ -124.017620960999963, 49.180228200000037 ], [ -124.017526090999951, 49.182453069000111 ], [ -124.017528198999969, 49.182453108000075 ], [ -124.01737471699991, 49.186052099000065 ], [ -124.016312166999953, 49.186032543000053 ], [ -124.016286699999952, 49.186629334000109 ], [ -124.019180792999975, 49.186682577000091 ], [ -124.019071214999911, 49.189254015000067 ], [ -124.019335842999979, 49.189258879000143 ], [ -124.019331251999972, 49.189366629000098 ], [ -124.019578216999918, 49.189371169 ], [ -124.019683808999901, 49.186892657000101 ], [ -124.020703150999964, 49.186911386000084 ], [ -124.020752733, 49.185746879000128 ], [ -124.026231977999913, 49.185847390000042 ], [ -124.026169062999955, 49.18732914000001 ], [ -124.029358252999927, 49.187387512000086 ], [ -124.029345814999942, 49.187680919000108 ], [ -124.030558026999941, 49.187703082000041 ], [ -124.030550726999948, 49.187875406000074 ], [ -124.031789991999958, 49.18789804900009 ], [ -124.031762274999934, 49.188552670000036 ], [ -124.031917515999979, 49.188555505000132 ], [ -124.031962086, 49.187502762000101 ], [ -124.032643072999932, 49.187515197000039 ], [ -124.03266849299996, 49.186914578 ], [ -124.038147899999956, 49.187014482000095 ], [ -124.038084318, 49.188521002000094 ], [ -124.038170414999925, 49.188522569000078 ], [ -124.038178591999937, 49.188328817000112 ], [ -124.039246773999949, 49.188348260000069 ], [ -124.039263169999941, 49.18795954400008 ], [ -124.040103041999899, 49.187974823000033 ], [ -124.040104537000019, 49.187939364000044 ], [ -124.040543848999974, 49.187947353000091 ], [ -124.040563946999953, 49.187470575000063 ], [ -124.041086975, 49.1874800840001 ], [ -124.041175942999971, 49.185368784000062 ], [ -124.042627182999979, 49.185395157000109 ], [ -124.042867696999963, 49.185596894000042 ], [ -124.043953922999918, 49.186724209000062 ], [ -124.044008675999962, 49.186793028000039 ], [ -124.044366098999916, 49.187242147000049 ], [ -124.044526791999928, 49.187444111000055 ], [ -124.044650194999946, 49.187770504000113 ], [ -124.044654591999972, 49.187816079000058 ], [ -124.044683599999971, 49.188117793000039 ], [ -124.044665214999938, 49.18822936400003 ], [ -124.044628298999982, 49.188453500000065 ], [ -124.044460101999931, 49.188801692000084 ], [ -124.044254814999988, 49.189053693000034 ], [ -124.043712590999974, 49.189526402000119 ], [ -124.045492424, 49.190421761 ], [ -124.04583521799999, 49.190594200000071 ], [ -124.046607275999975, 49.190981570000098 ], [ -124.047106791999965, 49.1912321820001 ], [ -124.048123191999963, 49.191613503000063 ], [ -124.048282914999959, 49.191657728000067 ], [ -124.049013581999972, 49.191860111000096 ], [ -124.049083317999958, 49.191898303000066 ], [ -124.049225701999944, 49.19203150500001 ], [ -124.049382114999972, 49.192324209000034 ], [ -124.049502575999938, 49.192459698000057 ], [ -124.049683415999979, 49.192561093000066 ], [ -124.050137388999985, 49.192753 ], [ -124.050658077999955, 49.192889875000027 ], [ -124.050876499999987, 49.192947288000084 ], [ -124.051210203, 49.193097396000063 ], [ -124.05139980099996, 49.193217890000071 ], [ -124.051466192999911, 49.193368609000053 ], [ -124.051487921999978, 49.193603093000064 ], [ -124.05140799899999, 49.194527284000067 ], [ -124.051187183999957, 49.19516926500004 ], [ -124.050980562999911, 49.195135161000081 ], [ -124.050884317999973, 49.195127051000036 ], [ -124.050622983999943, 49.195102441000081 ], [ -124.050361681999945, 49.19507781800008 ], [ -124.050086638999957, 49.195053335000097 ], [ -124.049852768999955, 49.195028479000015 ], [ -124.049618738999953, 49.19499462600006 ], [ -124.049288220999955, 49.194943669000075 ], [ -124.049191957999938, 49.194935535000099 ], [ -124.04888929399999, 49.194902296000102 ], [ -124.048614056999952, 49.194868826000111 ], [ -124.048352724999972, 49.194844210000056 ], [ -124.04806381899995, 49.194810853000043 ], [ -124.047747043999962, 49.194759752000074 ], [ -124.047485304999981, 49.194717146000094 ], [ -124.047196189999951, 49.19467478100006 ], [ -124.047058583999984, 49.194658055000097 ], [ -124.046797286999947, 49.194633423000028 ], [ -124.046518955999929, 49.194607156000046 ], [ -124.04632326699999, 49.194577952000017 ], [ -124.04592195699999, 49.194494641000091 ], [ -124.045777205000022, 49.194464578000073 ], [ -124.044767585, 49.194254982000089 ], [ -124.04443921499994, 49.194186802000075 ], [ -124.044051091999918, 49.194187783000103 ], [ -124.043394694999961, 49.194310996000134 ], [ -124.042748416, 49.194387500000104 ], [ -124.042214313999949, 49.194371489000069 ], [ -124.04007663599999, 49.193984940000057 ], [ -124.039970732999976, 49.193965808000087 ], [ -124.039883360999937, 49.193950030000082 ], [ -124.03969177599997, 49.194284204000063 ], [ -124.039683598, 49.194298460000049 ], [ -124.039487158999918, 49.194566826000106 ], [ -124.039410238999963, 49.194636805000123 ], [ -124.03913861599996, 49.194884026000103 ], [ -124.038941052999974, 49.195063836000045 ], [ -124.034909937999913, 49.197474734000082 ], [ -124.033948566999953, 49.198049650000016 ], [ -124.033709668999904, 49.198250580000021 ], [ -124.033584387999952, 49.198457211000054 ], [ -124.033556559999937, 49.198693517000031 ], [ -124.033684869999931, 49.198934468000076 ], [ -124.034067814999958, 49.199249388000055 ], [ -124.034250849, 49.199400919 ], [ -124.034370203999941, 49.199499703000065 ], [ -124.033405164999976, 49.19943245600011 ], [ -124.03275124699995, 49.199816454000086 ] ], [ [ -124.00881893599994, 49.183290088 ], [ -124.008861136999926, 49.182304762000108 ], [ -124.008074536999985, 49.182290222000105 ], [ -124.008040674999947, 49.183080538000127 ], [ -124.006917833999978, 49.183059773000117 ], [ -124.006888548999925, 49.183742847000069 ], [ -124.007297189999974, 49.183750405000083 ], [ -124.007318109999972, 49.183262340000056 ], [ -124.00881893599994, 49.183290088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124060751", "BldgCostT": "81115001", "sL_LossRatio": "0.796374840070964", "sL_AssetLoss": "654978", "sL_BldgLoss": "521608", "sL_StrLoss": "315275", "sL_NStrLoss": "206333", "sL_ContLoss": "133370", "geom_point": "0101000020E6100000F3AB7B5C82005FC0835BA1BC4D964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.999459577999929, 49.177553596000102 ], [ -123.999454383999989, 49.177178736000016 ], [ -123.999446174999946, 49.176589893000084 ], [ -123.999457115999931, 49.175603208000084 ], [ -123.999473291999962, 49.173888998000081 ], [ -123.999483958999917, 49.172779507000108 ], [ -123.999486008999924, 49.172563513000057 ], [ -123.999487478999981, 49.172410628000065 ], [ -123.999490193999961, 49.172126210000044 ], [ -123.999471098999948, 49.171241561000016 ], [ -123.99944898299999, 49.170218203000019 ], [ -123.999732101999939, 49.170206368000031 ], [ -123.999992574999922, 49.170195517000117 ], [ -124.000210918000022, 49.170186402000041 ], [ -124.000364112999975, 49.170186575000059 ], [ -124.002106280999953, 49.170188408000094 ], [ -124.002577586999976, 49.170188899000081 ], [ -124.004232921999971, 49.170194248000094 ], [ -124.00560496199995, 49.170198678000084 ], [ -124.006637607999934, 49.170201982000066 ], [ -124.006652102999965, 49.170023888000046 ], [ -124.006615503999924, 49.169918795000058 ], [ -124.006511896999939, 49.169840389000036 ], [ -124.005735099999953, 49.169580997000033 ], [ -124.005066703999901, 49.169348003000074 ], [ -124.003699397999952, 49.16879768600004 ], [ -124.00464737399993, 49.167877002000111 ], [ -124.004957389999973, 49.167678297000109 ], [ -124.005442006999957, 49.167466697000165 ], [ -124.005650686999957, 49.16732919 ], [ -124.005972000999961, 49.167028110000096 ], [ -124.008407405999947, 49.168068082000097 ], [ -124.00888820699997, 49.168273388000053 ], [ -124.00937066699997, 49.168527861000086 ], [ -124.009418908999962, 49.168553282000055 ], [ -124.009594103, 49.168685304000057 ], [ -124.009693191999943, 49.168867208000037 ], [ -124.009808394999979, 49.170306508000046 ], [ -124.009770143999944, 49.171817411000035 ], [ -124.009762683999938, 49.172111097000112 ], [ -124.010637944999942, 49.172113385000053 ], [ -124.01487399899996, 49.172124384000078 ], [ -124.016933806999958, 49.172124496000023 ], [ -124.017880912999928, 49.172155507000049 ], [ -124.018514874999951, 49.172196864000057 ], [ -124.019832442999984, 49.172282792000061 ], [ -124.020452025999944, 49.172323184000078 ], [ -124.020673638999952, 49.172337637000048 ], [ -124.021480120999968, 49.172390208000103 ], [ -124.021625513999965, 49.172399674000076 ], [ -124.021765002999956, 49.172408787000052 ], [ -124.022169047999938, 49.172447646000109 ], [ -124.022374570999915, 49.173320729000061 ], [ -124.022344072999914, 49.17430318600006 ], [ -124.020875919999966, 49.174307936000012 ], [ -124.020368244999986, 49.174309579000102 ], [ -124.019714867999966, 49.174326923000059 ], [ -124.019698753999947, 49.174932475000062 ], [ -124.019678941, 49.17567576500015 ], [ -124.018874893999978, 49.175699082000023 ], [ -124.01712590899993, 49.175749742000107 ], [ -124.017070439999912, 49.174569455000068 ], [ -124.01687356799999, 49.174641446000045 ], [ -124.01694114799993, 49.177159171000078 ], [ -124.016879130999925, 49.177328232000036 ], [ -124.016702547999955, 49.177451036 ], [ -124.01646014, 49.177510513000144 ], [ -124.01416047, 49.177504171000052 ], [ -124.014032486999952, 49.177548631000029 ], [ -124.009678024999943, 49.177465642000094 ], [ -124.008150977999918, 49.177455294000012 ], [ -124.00807778699999, 49.178267233000071 ], [ -124.006854241999989, 49.178272582000083 ], [ -124.006817220999977, 49.179327266000101 ], [ -124.005652429999955, 49.179331259000094 ], [ -124.005916601999928, 49.179728775000029 ], [ -124.00484114299995, 49.179749569000116 ], [ -124.004833616999917, 49.180146692000058 ], [ -124.004064375999917, 49.180145917000075 ], [ -124.002266376999955, 49.1801441470001 ], [ -124.000002407999929, 49.180156582000116 ], [ -123.999795686999946, 49.180157704000067 ], [ -123.999598987999903, 49.180175700000099 ], [ -123.999397792999943, 49.180230489000067 ], [ -123.999443547999988, 49.178249586000078 ], [ -123.999459577999929, 49.177553596000102 ] ], [ [ -124.014579391999916, 49.17598908300009 ], [ -124.014608469999985, 49.175308067000039 ], [ -124.012570437999941, 49.175270485000077 ], [ -124.012573685999939, 49.175194533000109 ], [ -124.011639144999904, 49.175177288000057 ], [ -124.011558905999962, 49.177053626000031 ], [ -124.012232061999924, 49.177066050000064 ], [ -124.012241381999957, 49.176848044000089 ], [ -124.01314597799994, 49.176864731000052 ], [ -124.013184492999983, 49.175963365000072 ], [ -124.014579391999916, 49.17598908300009 ] ], [ [ -124.00928142399998, 49.174553337000091 ], [ -124.009285512999952, 49.174457815000061 ], [ -124.006835659999979, 49.174412513000036 ], [ -124.00683156499997, 49.174508034000027 ], [ -124.00928142399998, 49.174553337000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98769332", "BldgCostT": "67173332", "sL_LossRatio": "0.851132380073801", "sL_AssetLoss": "433600", "sL_BldgLoss": "369051", "sL_StrLoss": "239905", "sL_NStrLoss": "129146", "sL_ContLoss": "64549", "geom_point": "0101000020E61000000B31B86216005FC0ACEA50139E954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.995175396, 49.17026389300004 ], [ -123.99517590399995, 49.169043690000066 ], [ -123.995206196999973, 49.16891370400004 ], [ -123.995407885999938, 49.168651804000014 ], [ -123.995592205999941, 49.168510297000118 ], [ -123.995923694999988, 49.168385899000072 ], [ -123.996163308999883, 49.16832818500005 ], [ -123.99661239799994, 49.168939907000045 ], [ -123.996826185999979, 49.169066286000039 ], [ -123.997175090999946, 49.169143996000066 ], [ -123.997617709999972, 49.169165865000075 ], [ -123.998228089999941, 49.169195993000088 ], [ -123.99855832, 49.169324594000095 ], [ -123.99859500599996, 49.168312183000118 ], [ -123.998561599999974, 49.168070188000115 ], [ -123.99849980099999, 49.167912402000049 ], [ -123.99815940299996, 49.167448605000068 ], [ -123.997952183999985, 49.166945003000073 ], [ -123.997905508999949, 49.166660496000112 ], [ -123.998605600999952, 49.166665889000107 ], [ -123.998729, 49.166666819000021 ], [ -123.998817550999959, 49.166667491000069 ], [ -123.999142492999908, 49.166670005000057 ], [ -123.999661653999965, 49.166674819000043 ], [ -124.000004416, 49.166678008000112 ], [ -124.00020818900002, 49.166679898000069 ], [ -124.001234215999958, 49.16668900700008 ], [ -124.00173141099998, 49.166695492000024 ], [ -124.003230905999928, 49.166718787 ], [ -124.003696321999954, 49.166726358000027 ], [ -124.004107931999926, 49.16673302500007 ], [ -124.004190137999942, 49.166734348000027 ], [ -124.005150703999959, 49.166749887000059 ], [ -124.007303437999951, 49.166782708 ], [ -124.008772300999937, 49.166805074000102 ], [ -124.010225919999939, 49.166827191000088 ], [ -124.010635295999961, 49.16683340800008 ], [ -124.010839190999917, 49.166969498000142 ], [ -124.010837816000034, 49.167220519000118 ], [ -124.010837193999961, 49.167335914000049 ], [ -124.010901177999941, 49.167441589000134 ], [ -124.011062614999958, 49.16757689500006 ], [ -124.011771096999922, 49.167767394000101 ], [ -124.011906995999936, 49.167858199000122 ], [ -124.011996093, 49.167955293000048 ], [ -124.012005110999922, 49.168128303000088 ], [ -124.01047448199995, 49.168125291000088 ], [ -124.010274205999977, 49.168163899000049 ], [ -124.009988397999933, 49.168294003000078 ], [ -124.009418908999962, 49.168553282000055 ], [ -124.00937066699997, 49.168527861000086 ], [ -124.00888820699997, 49.168273388000053 ], [ -124.008407405999947, 49.168068082000097 ], [ -124.005972000999961, 49.167028110000096 ], [ -124.005650686999957, 49.16732919 ], [ -124.005442006999957, 49.167466697000165 ], [ -124.004957389999973, 49.167678297000109 ], [ -124.00464737399993, 49.167877002000111 ], [ -124.003699397999952, 49.16879768600004 ], [ -124.005066703999901, 49.169348003000074 ], [ -124.005735099999953, 49.169580997000033 ], [ -124.006511896999939, 49.169840389000036 ], [ -124.006615503999924, 49.169918795000058 ], [ -124.006652102999965, 49.170023888000046 ], [ -124.006637607999934, 49.170201982000066 ], [ -124.00560496199995, 49.170198678000084 ], [ -124.004232921999971, 49.170194248000094 ], [ -124.002577586999976, 49.170188899000081 ], [ -124.002106280999953, 49.170188408000094 ], [ -124.000364112999975, 49.170186575000059 ], [ -124.000210918000022, 49.170186402000041 ], [ -123.999992574999922, 49.170195517000117 ], [ -123.999732101999939, 49.170206368000031 ], [ -123.99944898299999, 49.170218203000019 ], [ -123.999471098999948, 49.171241561000016 ], [ -123.999490193999961, 49.172126210000044 ], [ -123.999013609999963, 49.172120003000082 ], [ -123.998886877999922, 49.172101914000066 ], [ -123.998455097999951, 49.172040299000052 ], [ -123.995926018999967, 49.171360816000067 ], [ -123.995034202999946, 49.171121197000033 ], [ -123.99450678, 49.170973921000062 ], [ -123.99182489399999, 49.170224908000058 ], [ -123.994575223999945, 49.170256918000064 ], [ -123.995175396, 49.17026389300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128505667", "BldgCostT": "87471667", "sL_LossRatio": "0.914752671667744", "sL_AssetLoss": "289790.9", "sL_BldgLoss": "265087", "sL_StrLoss": "212432", "sL_NStrLoss": "52655", "sL_ContLoss": "24703.9", "geom_point": "0101000020E61000003F1CC1193E005FC07A4A73D04A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.017880912999928, 49.172155507000049 ], [ -124.016933806999958, 49.172124496000023 ], [ -124.01487399899996, 49.172124384000078 ], [ -124.010637944999942, 49.172113385000053 ], [ -124.009762683999938, 49.172111097000112 ], [ -124.009770143999944, 49.171817411000035 ], [ -124.009808394999979, 49.170306508000046 ], [ -124.009693191999943, 49.168867208000037 ], [ -124.009594103, 49.168685304000057 ], [ -124.009418908999962, 49.168553282000055 ], [ -124.009988397999933, 49.168294003000078 ], [ -124.010274205999977, 49.168163899000049 ], [ -124.01047448199995, 49.168125291000088 ], [ -124.012005110999922, 49.168128303000088 ], [ -124.011996093, 49.167955293000048 ], [ -124.011906995999936, 49.167858199000122 ], [ -124.011771096999922, 49.167767394000101 ], [ -124.011062614999958, 49.16757689500006 ], [ -124.010901177999941, 49.167441589000134 ], [ -124.010837193999961, 49.167335914000049 ], [ -124.010837816000034, 49.167220519000118 ], [ -124.010839190999917, 49.166969498000142 ], [ -124.010635295999961, 49.16683340800008 ], [ -124.010225919999939, 49.166827191000088 ], [ -124.008772300999937, 49.166805074000102 ], [ -124.007303437999951, 49.166782708 ], [ -124.005150703999959, 49.166749887000059 ], [ -124.004190137999942, 49.166734348000027 ], [ -124.004107931999926, 49.16673302500007 ], [ -124.003696321999954, 49.166726358000027 ], [ -124.003230905999928, 49.166718787 ], [ -124.00173141099998, 49.166695492000024 ], [ -124.001234215999958, 49.16668900700008 ], [ -124.00020818900002, 49.166679898000069 ], [ -124.000004416, 49.166678008000112 ], [ -123.999661653999965, 49.166674819000043 ], [ -123.999142492999908, 49.166670005000057 ], [ -123.998817550999959, 49.166667491000069 ], [ -123.998729, 49.166666819000021 ], [ -123.998605600999952, 49.166665889000107 ], [ -123.997905508999949, 49.166660496000112 ], [ -123.997672525999988, 49.166658442000042 ], [ -123.997028830999966, 49.166652774000077 ], [ -123.996671965999965, 49.166649638000123 ], [ -123.996621998999956, 49.166649192000072 ], [ -123.996580759999944, 49.166626426000079 ], [ -123.996654070999952, 49.166189311000032 ], [ -123.996658721999893, 49.16617989900007 ], [ -123.9966616299999, 49.16614738300008 ], [ -123.996679608999941, 49.165948832000026 ], [ -123.996698793999954, 49.165248599000044 ], [ -123.99669116799997, 49.164502866000078 ], [ -123.996684461999962, 49.163970129000084 ], [ -123.996675604999979, 49.16317890200002 ], [ -123.994367854999908, 49.163139206000054 ], [ -123.993501416999933, 49.163131498000034 ], [ -123.991962852999933, 49.163091629000114 ], [ -123.990781915999932, 49.163060984000033 ], [ -123.990804389999965, 49.164347302000046 ], [ -123.99079068199994, 49.164347513000045 ], [ -123.989515404999935, 49.164367788000078 ], [ -123.989501696999966, 49.164367999000035 ], [ -123.988293096999882, 49.164369693000047 ], [ -123.988288255999947, 49.163970438000028 ], [ -123.98828412899995, 49.16362670600008 ], [ -123.988290593000016, 49.163065793000079 ], [ -123.987290610999963, 49.163058799000055 ], [ -123.986069201999925, 49.163103514000056 ], [ -123.985297476999946, 49.162602799000119 ], [ -123.98467565599999, 49.162692006000093 ], [ -123.984395271999986, 49.162680469000158 ], [ -123.984191781999982, 49.162633424000056 ], [ -123.98373129399998, 49.162445610000113 ], [ -123.983366603, 49.162228977000069 ], [ -123.982711680999969, 49.161880806000056 ], [ -123.982383167999956, 49.161778300000137 ], [ -123.98195439899996, 49.161776573000068 ], [ -123.981796184999894, 49.161317065000013 ], [ -123.981804964, 49.161051564000083 ], [ -123.981814263999979, 49.160835572000074 ], [ -123.981742375999929, 49.160694680000042 ], [ -123.981624193999949, 49.16057538400009 ], [ -123.981262781999959, 49.160347992000048 ], [ -123.98093748899997, 49.160202407000099 ], [ -123.980727201, 49.16015609 ], [ -123.980698260999986, 49.160156505000117 ], [ -123.980535206999917, 49.160158800000055 ], [ -123.979819293999967, 49.160237209000059 ], [ -123.978906077, 49.160348851000087 ], [ -123.978458053999972, 49.159937909000064 ], [ -123.978312891999934, 49.159842433000044 ], [ -123.97816301099999, 49.159791901000069 ], [ -123.977998836000012, 49.159786109000095 ], [ -123.977804632999892, 49.159840986000106 ], [ -123.977341100999951, 49.160197007000093 ], [ -123.97715376799998, 49.159630585000109 ], [ -123.977074705999911, 49.159391439000082 ], [ -123.985009640999962, 49.159511253000069 ], [ -123.984952030999963, 49.160841102000091 ], [ -123.985800683999912, 49.160856979000073 ], [ -123.985765371999932, 49.161672413000126 ], [ -123.987937855999945, 49.161713026000015 ], [ -123.987928077999968, 49.161939069 ], [ -123.98906992799999, 49.16196039700003 ], [ -123.98904470199993, 49.162543852000063 ], [ -123.992966476, 49.162510191000109 ], [ -123.99301022499999, 49.16149632500003 ], [ -123.993566783999981, 49.161506697000029 ], [ -123.993586024999928, 49.16106063900002 ], [ -123.994902541, 49.161085161000102 ], [ -123.995065500999928, 49.161151206000092 ], [ -123.995817313999922, 49.161656801000092 ], [ -123.99604141099995, 49.16188899800013 ], [ -123.995893987999963, 49.162115394000097 ], [ -123.99594999199995, 49.162195197000074 ], [ -123.996243113999967, 49.162408794000086 ], [ -123.996782192999916, 49.162611013000031 ], [ -123.996913615999944, 49.162951407000023 ], [ -123.997831312999935, 49.162934298000081 ], [ -123.999156292999913, 49.163337397000092 ], [ -123.99960740399996, 49.163234800000069 ], [ -124.000884186999897, 49.16330460800004 ], [ -124.000999676999925, 49.163297469000057 ], [ -124.001004168999941, 49.163520255000051 ], [ -124.001801252999883, 49.163513342000016 ], [ -124.00181268599998, 49.163247213000076 ], [ -124.001896913999957, 49.163242006000083 ], [ -124.004850303999902, 49.164133506000063 ], [ -124.006759594999934, 49.164854214000066 ], [ -124.007009383999943, 49.165032206000049 ], [ -124.008169317999958, 49.165462300000058 ], [ -124.008973077999926, 49.165851093000093 ], [ -124.01067240399999, 49.16644791000008 ], [ -124.010739197999925, 49.166366709000016 ], [ -124.010433596999945, 49.166135989000104 ], [ -124.009739106999945, 49.165655997000044 ], [ -124.009253400999924, 49.165443789000079 ], [ -124.009594517999943, 49.165315595000074 ], [ -124.00968641299994, 49.16512619100007 ], [ -124.009474875999928, 49.164902595000122 ], [ -124.009004386999919, 49.164627698000089 ], [ -124.008657686, 49.164522299000083 ], [ -124.008661524999951, 49.164028103000177 ], [ -124.008930235999969, 49.163847428000075 ], [ -124.009389850999924, 49.163855925000092 ], [ -124.009922178999929, 49.163891393000092 ], [ -124.010144915999931, 49.163961955000076 ], [ -124.010116911999958, 49.164616483000039 ], [ -124.01083967199996, 49.164629835000028 ], [ -124.010752250999957, 49.166673737000046 ], [ -124.010944719999941, 49.166672053000035 ], [ -124.010955705999947, 49.167211690000087 ], [ -124.011778653999954, 49.167204482000052 ], [ -124.011784151999905, 49.167474300000045 ], [ -124.012195627999958, 49.167470693000041 ], [ -124.012201127999973, 49.167740512000137 ], [ -124.012612605999962, 49.167736904000101 ], [ -124.012619798999964, 49.168089622000132 ], [ -124.014524343999938, 49.168124748000032 ], [ -124.014522265999986, 49.168173425000091 ], [ -124.018063918999971, 49.168238656000057 ], [ -124.018035355999956, 49.168908864000052 ], [ -124.018154456999952, 49.168911055000088 ], [ -124.018122640999977, 49.169657604000065 ], [ -124.018436877999974, 49.169663385000057 ], [ -124.018444254999949, 49.169490277000122 ], [ -124.021912952999955, 49.169554036000051 ], [ -124.02190913, 49.169603378000026 ], [ -124.021859771999956, 49.17030247600006 ], [ -124.022513412, 49.170369799000071 ], [ -124.022169047999938, 49.172447646000109 ], [ -124.021765002999956, 49.172408787000052 ], [ -124.021625513999965, 49.172399674000076 ], [ -124.021480120999968, 49.172390208000103 ], [ -124.020673638999952, 49.172337637000048 ], [ -124.020452025999944, 49.172323184000078 ], [ -124.019832442999984, 49.172282792000061 ], [ -124.018514874999951, 49.172196864000057 ], [ -124.017880912999928, 49.172155507000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.935352813619029", "sL_AssetLoss": "12036.1", "sL_BldgLoss": "11258", "sL_StrLoss": "9030", "sL_NStrLoss": "2228", "sL_ContLoss": "778.1", "geom_point": "0101000020E61000001E8A027D62015FC0A26C1D5E08954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.021658700999964, 49.16668344600005 ], [ -124.02169074199999, 49.16593021400007 ], [ -124.020869617999935, 49.165915128000094 ], [ -124.021022763999937, 49.162316020000056 ], [ -124.021539585999918, 49.162325516000045 ], [ -124.021547539999972, 49.162138548000037 ], [ -124.02242444499997, 49.162951807000077 ], [ -124.022134686999919, 49.166692188000027 ], [ -124.021658700999964, 49.16668344600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135930250", "BldgCostT": "88435000", "sL_LossRatio": "0.836795791175018", "sL_AssetLoss": "392014.4", "sL_BldgLoss": "328036", "sL_StrLoss": "229883", "sL_NStrLoss": "98153", "sL_ContLoss": "63978.4", "geom_point": "0101000020E610000029F665A392FF5EC0215567F75C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.98859248199993, 49.170249192000085 ], [ -123.988453209999975, 49.169284909000055 ], [ -123.988705507, 49.168933901000074 ], [ -123.988741997999981, 49.168565390000012 ], [ -123.988761789999941, 49.167378898000024 ], [ -123.988739403999929, 49.16662839600005 ], [ -123.988748688999962, 49.166359606000093 ], [ -123.988750078999928, 49.166318801000088 ], [ -123.989129909999932, 49.166214414000045 ], [ -123.990943975999983, 49.165715894000137 ], [ -123.991201206999932, 49.1656288880001 ], [ -123.991399810999923, 49.165503803000064 ], [ -123.991538885999944, 49.165360497000073 ], [ -123.99159720099999, 49.165185108000081 ], [ -123.99155409299999, 49.165010507000055 ], [ -123.991447395999941, 49.164847299000051 ], [ -123.991120802999959, 49.164635893000089 ], [ -123.990853188999949, 49.164391794000089 ], [ -123.990804389999965, 49.164347302000046 ], [ -123.990781915999932, 49.163060984000033 ], [ -123.991962852999933, 49.163091629000114 ], [ -123.993501416999933, 49.163131498000034 ], [ -123.994367854999908, 49.163139206000054 ], [ -123.996675604999979, 49.16317890200002 ], [ -123.996684461999962, 49.163970129000084 ], [ -123.99669116799997, 49.164502866000078 ], [ -123.996698793999954, 49.165248599000044 ], [ -123.996679608999941, 49.165948832000026 ], [ -123.9966616299999, 49.16614738300008 ], [ -123.996658721999893, 49.16617989900007 ], [ -123.996654070999952, 49.166189311000032 ], [ -123.996580759999944, 49.166626426000079 ], [ -123.996621998999956, 49.166649192000072 ], [ -123.996671965999965, 49.166649638000123 ], [ -123.997028830999966, 49.166652774000077 ], [ -123.997672525999988, 49.166658442000042 ], [ -123.997905508999949, 49.166660496000112 ], [ -123.997952183999985, 49.166945003000073 ], [ -123.99815940299996, 49.167448605000068 ], [ -123.99849980099999, 49.167912402000049 ], [ -123.998561599999974, 49.168070188000115 ], [ -123.99859500599996, 49.168312183000118 ], [ -123.99855832, 49.169324594000095 ], [ -123.998228089999941, 49.169195993000088 ], [ -123.997617709999972, 49.169165865000075 ], [ -123.997175090999946, 49.169143996000066 ], [ -123.996826185999979, 49.169066286000039 ], [ -123.99661239799994, 49.168939907000045 ], [ -123.996163308999883, 49.16832818500005 ], [ -123.995923694999988, 49.168385899000072 ], [ -123.995592205999941, 49.168510297000118 ], [ -123.995407885999938, 49.168651804000014 ], [ -123.995206196999973, 49.16891370400004 ], [ -123.99517590399995, 49.169043690000066 ], [ -123.995175396, 49.17026389300004 ], [ -123.994575223999945, 49.170256918000064 ], [ -123.99182489399999, 49.170224908000058 ], [ -123.990206756999953, 49.169774170000032 ], [ -123.98997496099993, 49.169872298000058 ], [ -123.98935520199997, 49.170134710000099 ], [ -123.98922019199992, 49.170183504000093 ], [ -123.989097126000033, 49.170205233000104 ], [ -123.98908388699999, 49.170207594000047 ], [ -123.988906706999927, 49.170238891000089 ], [ -123.98859248199993, 49.170249192000085 ] ], [ [ -123.99283461399996, 49.166559320000061 ], [ -123.992831396, 49.166398414000064 ], [ -123.992712443999977, 49.166396197000076 ], [ -123.992705356, 49.16656043200004 ], [ -123.99283461399996, 49.166559320000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113264084", "BldgCostT": "73723334", "sL_LossRatio": "0.818911338789995", "sL_AssetLoss": "480452.5", "sL_BldgLoss": "393448", "sL_StrLoss": "253797", "sL_NStrLoss": "139651", "sL_ContLoss": "87004.5", "geom_point": "0101000020E6100000589496BA39FF5EC09F9C1D803F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.98605283799999, 49.164691188000106 ], [ -123.986069201999925, 49.163103514000056 ], [ -123.987290610999963, 49.163058799000055 ], [ -123.988290593000016, 49.163065793000079 ], [ -123.98828412899995, 49.16362670600008 ], [ -123.988288255999947, 49.163970438000028 ], [ -123.988293096999882, 49.164369693000047 ], [ -123.989501696999966, 49.164367999000035 ], [ -123.989515404999935, 49.164367788000078 ], [ -123.99079068199994, 49.164347513000045 ], [ -123.990804389999965, 49.164347302000046 ], [ -123.990853188999949, 49.164391794000089 ], [ -123.991120802999959, 49.164635893000089 ], [ -123.991447395999941, 49.164847299000051 ], [ -123.99155409299999, 49.165010507000055 ], [ -123.99159720099999, 49.165185108000081 ], [ -123.991538885999944, 49.165360497000073 ], [ -123.991399810999923, 49.165503803000064 ], [ -123.991201206999932, 49.1656288880001 ], [ -123.990943975999983, 49.165715894000137 ], [ -123.989129909999932, 49.166214414000045 ], [ -123.988750078999928, 49.166318801000088 ], [ -123.988748688999962, 49.166359606000093 ], [ -123.988739403999929, 49.16662839600005 ], [ -123.988761789999941, 49.167378898000024 ], [ -123.988741997999981, 49.168565390000012 ], [ -123.988705507, 49.168933901000074 ], [ -123.988453209999975, 49.169284909000055 ], [ -123.988439643, 49.169283483000065 ], [ -123.986015322999918, 49.169030407000072 ], [ -123.98601636399998, 49.168768604000022 ], [ -123.986019552999977, 49.16798323200009 ], [ -123.98603066699998, 49.166850175000043 ], [ -123.986032780999935, 49.16663269100011 ], [ -123.98605283799999, 49.164691188000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145242167", "BldgCostT": "96481667", "sL_LossRatio": "0.861430556605797", "sL_AssetLoss": "484015.8", "sL_BldgLoss": "416946", "sL_StrLoss": "294468", "sL_NStrLoss": "122478", "sL_ContLoss": "67069.8", "geom_point": "0101000020E610000043489341A4FE5EC07E01491AD4944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.972640919999947, 49.162473345000116 ], [ -123.971923581999974, 49.161892499000039 ], [ -123.971351012999946, 49.16129188900004 ], [ -123.970943552999955, 49.160643945000032 ], [ -123.970619417999927, 49.160002084000084 ], [ -123.970442507999962, 49.159252230000071 ], [ -123.970439543999959, 49.159138296000059 ], [ -123.970425607999942, 49.158603549000084 ], [ -123.970576370999936, 49.157691479000057 ], [ -123.97067446899996, 49.157364481000052 ], [ -123.970718087999956, 49.157219044000065 ], [ -123.970887396999927, 49.156654554000099 ], [ -123.97104749499999, 49.156200656000053 ], [ -123.971308401999949, 49.155461006000024 ], [ -123.97137210699999, 49.155280359000116 ], [ -123.9714736599999, 49.154992459000098 ], [ -123.971678639999979, 49.154404321000108 ], [ -123.971689727999944, 49.154372461000037 ], [ -123.97195114499999, 49.154409799000064 ], [ -123.972807166, 49.154508781000125 ], [ -123.973116365999942, 49.154543837000134 ], [ -123.973407015999953, 49.154576804000108 ], [ -123.973869815999961, 49.154708883000055 ], [ -123.97396380099994, 49.154757730000064 ], [ -123.973770942999977, 49.157009661000046 ], [ -123.973569991999938, 49.157188653000091 ], [ -123.97332241499997, 49.157503924000075 ], [ -123.973233441999966, 49.15761725400008 ], [ -123.973094162999928, 49.157889288000064 ], [ -123.973007431999918, 49.158172351000132 ], [ -123.972967986999933, 49.158301154000092 ], [ -123.972902171999962, 49.159245436000063 ], [ -123.972942157999938, 49.159522642000077 ], [ -123.97310404299999, 49.159863376 ], [ -123.973958191999913, 49.160544001000119 ], [ -123.974229530999963, 49.160712237000119 ], [ -123.97444510599999, 49.160845905 ], [ -123.974775982999958, 49.160987104000043 ], [ -123.975127598, 49.161063985000098 ], [ -123.975693881999959, 49.161116970000094 ], [ -123.976690871999921, 49.161033955000022 ], [ -123.977266008999948, 49.160979014000048 ], [ -123.977338502999942, 49.160729144000094 ], [ -123.977341100999951, 49.160197007000093 ], [ -123.977804632999892, 49.159840986000106 ], [ -123.977998836000012, 49.159786109000095 ], [ -123.97816301099999, 49.159791901000069 ], [ -123.978312891999934, 49.159842433000044 ], [ -123.978458053999972, 49.159937909000064 ], [ -123.978906077, 49.160348851000087 ], [ -123.979819293999967, 49.160237209000059 ], [ -123.980535206999917, 49.160158800000055 ], [ -123.980698260999986, 49.160156505000117 ], [ -123.980727201, 49.16015609 ], [ -123.98093748899997, 49.160202407000099 ], [ -123.981262781999959, 49.160347992000048 ], [ -123.981624193999949, 49.16057538400009 ], [ -123.981742375999929, 49.160694680000042 ], [ -123.981814263999979, 49.160835572000074 ], [ -123.981804964, 49.161051564000083 ], [ -123.981796184999894, 49.161317065000013 ], [ -123.98195439899996, 49.161776573000068 ], [ -123.982383167999956, 49.161778300000137 ], [ -123.982711680999969, 49.161880806000056 ], [ -123.983366603, 49.162228977000069 ], [ -123.98373129399998, 49.162445610000113 ], [ -123.984191781999982, 49.162633424000056 ], [ -123.984395271999986, 49.162680469000158 ], [ -123.98467565599999, 49.162692006000093 ], [ -123.985297476999946, 49.162602799000119 ], [ -123.986069201999925, 49.163103514000056 ], [ -123.98605283799999, 49.164691188000106 ], [ -123.986032780999935, 49.16663269100011 ], [ -123.98603066699998, 49.166850175000043 ], [ -123.986019552999977, 49.16798323200009 ], [ -123.98601636399998, 49.168768604000022 ], [ -123.986015322999918, 49.169030407000072 ], [ -123.983352795999963, 49.168804989000108 ], [ -123.98305230699999, 49.168791700000078 ], [ -123.982190189999955, 49.168753497000111 ], [ -123.981964303999987, 49.168747508000074 ], [ -123.981671263999942, 49.168017091000102 ], [ -123.981459800999986, 49.167647531000036 ], [ -123.981256423999952, 49.16741165300003 ], [ -123.980485221999956, 49.16651714000011 ], [ -123.979418141999972, 49.165687595000037 ], [ -123.979364505999968, 49.165658071000081 ], [ -123.978334130999968, 49.165090940000013 ], [ -123.977521418, 49.164715468000111 ], [ -123.973904674999972, 49.163219306000016 ], [ -123.973228212, 49.162853347000109 ], [ -123.973090741999982, 49.162778951000128 ], [ -123.972928147999966, 49.162671544000013 ], [ -123.97269783299997, 49.162519422000059 ], [ -123.972640919999947, 49.162473345000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169169751", "BldgCostT": "105785001", "sL_LossRatio": "0.777599486770436", "sL_AssetLoss": "772519.8", "sL_BldgLoss": "600711", "sL_StrLoss": "336298", "sL_NStrLoss": "264413", "sL_ContLoss": "171808.8", "geom_point": "0101000020E61000003FF36A67F5FD5EC0134705EB8B944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.97721506699996, 49.167491501000015 ], [ -123.976421241999958, 49.16723149000007 ], [ -123.976331658999953, 49.167245094000101 ], [ -123.97416090199999, 49.16674331400008 ], [ -123.973687032999976, 49.166627117000139 ], [ -123.973663313999936, 49.166621291000119 ], [ -123.973207098999964, 49.166396606000092 ], [ -123.972999529999967, 49.166223076000072 ], [ -123.972876587000016, 49.166120268000036 ], [ -123.972848266999975, 49.165780469000062 ], [ -123.972814909999911, 49.16538038700002 ], [ -123.973057511999968, 49.165378343000071 ], [ -123.973041209999948, 49.164546469000122 ], [ -123.972744921999933, 49.164540893000023 ], [ -123.972584898999969, 49.162621340000086 ], [ -123.969382760999963, 49.163113612000146 ], [ -123.96808207499997, 49.162990977000035 ], [ -123.968084003999948, 49.162946824000109 ], [ -123.967496199999914, 49.162935732000058 ], [ -123.966828703999923, 49.162872786000079 ], [ -123.966709372999972, 49.162861536000023 ], [ -123.966633695999988, 49.162854414000044 ], [ -123.96616813299994, 49.162846793000114 ], [ -123.966172912999951, 49.162737492000133 ], [ -123.9639529299999, 49.162756045000044 ], [ -123.963953987999929, 49.162810536000087 ], [ -123.963631461999952, 49.162805259000095 ], [ -123.96327519099999, 49.162799419000102 ], [ -123.962676493999979, 49.162789611000036 ], [ -123.961069497, 49.162784390000112 ], [ -123.961091740999919, 49.161349032000025 ], [ -123.961099467999986, 49.160848795000042 ], [ -123.960329886999943, 49.160841847000093 ], [ -123.959549124999967, 49.160834804000089 ], [ -123.959621121999945, 49.159488846000094 ], [ -123.959648005999952, 49.158986085000038 ], [ -123.959613201999929, 49.158654992000052 ], [ -123.959642494999969, 49.157080511000046 ], [ -123.959674004, 49.155176488000038 ], [ -123.960110905999954, 49.155180129000072 ], [ -123.960439901999976, 49.15518285700005 ], [ -123.961107807999966, 49.155188389000095 ], [ -123.962908543999902, 49.155194709000085 ], [ -123.96367619499992, 49.155197393 ], [ -123.964663350999899, 49.155224771000107 ], [ -123.964891304, 49.155231113000049 ], [ -123.964978806999966, 49.155233417000019 ], [ -123.965773165999977, 49.155254453000047 ], [ -123.966314470999947, 49.155268846000126 ], [ -123.966867887999953, 49.155328242000159 ], [ -123.96723081699993, 49.155367196000022 ], [ -123.968083719999925, 49.15537085200004 ], [ -123.968250693999906, 49.155371555000087 ], [ -123.968341692999914, 49.155371946000066 ], [ -123.968747247999914, 49.15533997600005 ], [ -123.96906760899999, 49.155282076000084 ], [ -123.969453631999954, 49.15513266100006 ], [ -123.970377364999962, 49.154559358000064 ], [ -123.970669894999972, 49.154417176000045 ], [ -123.97096853, 49.154323762000089 ], [ -123.971655974999962, 49.154370185000154 ], [ -123.971689727999944, 49.154372461000037 ], [ -123.971678639999979, 49.154404321000108 ], [ -123.9714736599999, 49.154992459000098 ], [ -123.97137210699999, 49.155280359000116 ], [ -123.971308401999949, 49.155461006000024 ], [ -123.97104749499999, 49.156200656000053 ], [ -123.970887396999927, 49.156654554000099 ], [ -123.970718087999956, 49.157219044000065 ], [ -123.97067446899996, 49.157364481000052 ], [ -123.970576370999936, 49.157691479000057 ], [ -123.970425607999942, 49.158603549000084 ], [ -123.970439543999959, 49.159138296000059 ], [ -123.970442507999962, 49.159252230000071 ], [ -123.970619417999927, 49.160002084000084 ], [ -123.970943552999955, 49.160643945000032 ], [ -123.971351012999946, 49.16129188900004 ], [ -123.971923581999974, 49.161892499000039 ], [ -123.972640919999947, 49.162473345000116 ], [ -123.97269783299997, 49.162519422000059 ], [ -123.972928147999966, 49.162671544000013 ], [ -123.973090741999982, 49.162778951000128 ], [ -123.973228212, 49.162853347000109 ], [ -123.973904674999972, 49.163219306000016 ], [ -123.977521418, 49.164715468000111 ], [ -123.978334130999968, 49.165090940000013 ], [ -123.979364505999968, 49.165658071000081 ], [ -123.979418141999972, 49.165687595000037 ], [ -123.980485221999956, 49.16651714000011 ], [ -123.981256423999952, 49.16741165300003 ], [ -123.981459800999986, 49.167647531000036 ], [ -123.981671263999942, 49.168017091000102 ], [ -123.981964303999987, 49.168747508000074 ], [ -123.98132326299995, 49.168740879000076 ], [ -123.980813380999948, 49.168648472000015 ], [ -123.97917752599993, 49.168134223000074 ], [ -123.97721506699996, 49.167491501000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22916083", "BldgCostT": "13858333", "sL_LossRatio": "0.76912318697972", "sL_AssetLoss": "100102.3", "sL_BldgLoss": "76991", "sL_StrLoss": "43525", "sL_NStrLoss": "33466", "sL_ContLoss": "23111.3", "geom_point": "0101000020E61000003A604F221FFE5EC0EFB6A031F2944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.970250499999963, 49.164493908000082 ], [ -123.970263528999979, 49.164195382000045 ], [ -123.968830966999917, 49.16416837200007 ], [ -123.968834012999963, 49.164098636000077 ], [ -123.968034342999957, 49.164083550000043 ], [ -123.96808207499997, 49.162990977000035 ], [ -123.969382760999963, 49.163113612000146 ], [ -123.972584898999969, 49.162621340000086 ], [ -123.972744921999933, 49.164540893000023 ], [ -123.972228408999968, 49.16453116800006 ], [ -123.970250499999963, 49.164493908000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94330250", "BldgCostT": "58895000", "sL_LossRatio": "0.748962191597395", "sL_AssetLoss": "693047", "sL_BldgLoss": "519066", "sL_StrLoss": "273253", "sL_NStrLoss": "245813", "sL_ContLoss": "173981", "geom_point": "0101000020E6100000DED991C9ADFD5EC091E477A23D954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.959634088999962, 49.167704496000042 ], [ -123.959636196999924, 49.167345282000035 ], [ -123.958108679999924, 49.167333399000036 ], [ -123.958126309999926, 49.166559292000088 ], [ -123.9580691099999, 49.165583901000119 ], [ -123.958221425999952, 49.165584659000103 ], [ -123.961025589999977, 49.165598505000041 ], [ -123.961028409999983, 49.16468899100007 ], [ -123.9610486399999, 49.163750913000065 ], [ -123.961069497, 49.162784390000112 ], [ -123.962676493999979, 49.162789611000036 ], [ -123.96327519099999, 49.162799419000102 ], [ -123.963631461999952, 49.162805259000095 ], [ -123.963953987999929, 49.162810536000087 ], [ -123.963958167999976, 49.163025869000052 ], [ -123.963546722999951, 49.163029302000069 ], [ -123.96356766599996, 49.164108593000059 ], [ -123.963156211999902, 49.164112026000069 ], [ -123.963166679, 49.164651671000115 ], [ -123.962755220999952, 49.16465510200004 ], [ -123.962758087999987, 49.164802951000077 ], [ -123.962971156999984, 49.16492316800003 ], [ -123.963171911999922, 49.164921493000122 ], [ -123.96317416699999, 49.165037708000078 ], [ -123.96319004, 49.165046662000094 ], [ -123.96336834, 49.165019463000064 ], [ -123.963379973999935, 49.16545949100005 ], [ -123.963593845, 49.165457705000016 ], [ -123.963614790999941, 49.166536995000065 ], [ -123.964474583999944, 49.166529817000054 ], [ -123.964564084999921, 49.164484831000074 ], [ -123.970040703999928, 49.164588201000107 ], [ -123.969957958999942, 49.166483887000027 ], [ -123.971021303999919, 49.166474949000097 ], [ -123.971016026999934, 49.166205127000133 ], [ -123.971838968, 49.166198204000075 ], [ -123.97183368599994, 49.165928383000086 ], [ -123.972245151999957, 49.165924919000048 ], [ -123.972234586999917, 49.165385275000041 ], [ -123.972601295999979, 49.165382187 ], [ -123.972814909999911, 49.16538038700002 ], [ -123.972848266999975, 49.165780469000062 ], [ -123.972876587000016, 49.166120268000036 ], [ -123.971912864999965, 49.16653797400005 ], [ -123.971449991999989, 49.166624696000085 ], [ -123.96872362699996, 49.166611136000057 ], [ -123.966775521999978, 49.166598624000081 ], [ -123.96633579399996, 49.166595789000077 ], [ -123.966216555999935, 49.166596246000026 ], [ -123.963253045, 49.166582793000075 ], [ -123.962643383999989, 49.166580021000115 ], [ -123.961034094999931, 49.166560395000026 ], [ -123.96102303899994, 49.167625461000107 ], [ -123.961008992999922, 49.168851665000119 ], [ -123.961007967999976, 49.168968712000016 ], [ -123.960998019999934, 49.169940290000106 ], [ -123.960995422999972, 49.17019314600001 ], [ -123.960991241999977, 49.170382170000082 ], [ -123.959521319999965, 49.170369588000092 ], [ -123.959527974999972, 49.169933927000066 ], [ -123.959549195999969, 49.16854670200005 ], [ -123.959634088999962, 49.167704496000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106063728", "BldgCostT": "67114857", "sL_LossRatio": "0.727111968897388", "sL_AssetLoss": "791702", "sL_BldgLoss": "575656", "sL_StrLoss": "283816", "sL_NStrLoss": "291840", "sL_ContLoss": "216046", "geom_point": "0101000020E61000008878A9E049FD5EC015E2E4C023954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.959514584999937, 49.162776492000063 ], [ -123.961069497, 49.162784390000112 ], [ -123.9610486399999, 49.163750913000065 ], [ -123.961028409999983, 49.16468899100007 ], [ -123.961025589999977, 49.165598505000041 ], [ -123.958221425999952, 49.165584659000103 ], [ -123.9580691099999, 49.165583901000119 ], [ -123.958126309999926, 49.166559292000088 ], [ -123.958108679999924, 49.167333399000036 ], [ -123.95812148100002, 49.167854187000081 ], [ -123.958097603999988, 49.168522815000095 ], [ -123.956636096999958, 49.168505903000089 ], [ -123.956125593999928, 49.1684916970001 ], [ -123.955951082999945, 49.168487192000029 ], [ -123.955208484, 49.168468007000108 ], [ -123.955208566999929, 49.168440872000119 ], [ -123.955211886999976, 49.166551812000129 ], [ -123.955222758999952, 49.165562252000022 ], [ -123.955227236999974, 49.165157414000092 ], [ -123.955227877999988, 49.165095897000086 ], [ -123.955228591999955, 49.164611492000105 ], [ -123.95522940099994, 49.164188308000057 ], [ -123.955230124999943, 49.164059719000058 ], [ -123.955231898999955, 49.163753943000124 ], [ -123.955231934999972, 49.163752286000062 ], [ -123.955237599999975, 49.162756604000023 ], [ -123.956703378999975, 49.162763693000073 ], [ -123.958233605999979, 49.162771091000138 ], [ -123.959514584999937, 49.162776492000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185318833", "BldgCostT": "125143333", "sL_LossRatio": "0.777751297374269", "sL_AssetLoss": "1678390", "sL_BldgLoss": "1305370", "sL_StrLoss": "603490", "sL_NStrLoss": "701880", "sL_ContLoss": "373020", "geom_point": "0101000020E6100000DFD0317303FD5EC0E914602F7F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.954591880999885, 49.171129573000051 ], [ -123.953486249999941, 49.171012465000047 ], [ -123.953290724999945, 49.171033061000109 ], [ -123.95262133499989, 49.170984313000055 ], [ -123.952139367999976, 49.170923214000027 ], [ -123.951794077999963, 49.170879445000054 ], [ -123.951800927999955, 49.17078593200003 ], [ -123.951817398999964, 49.170412525000032 ], [ -123.951661821999934, 49.169737594000026 ], [ -123.95137670299998, 49.1685005060001 ], [ -123.951155196999963, 49.16755709800011 ], [ -123.950912607999939, 49.16653129600008 ], [ -123.950810512999936, 49.166110610000047 ], [ -123.950571307999923, 49.165102007000051 ], [ -123.951159851999961, 49.165105856000039 ], [ -123.952465404999955, 49.164254604000114 ], [ -123.952950108, 49.164606890000059 ], [ -123.952969564999975, 49.16472526200004 ], [ -123.953015258999955, 49.165002923000031 ], [ -123.953034389, 49.165119095000115 ], [ -123.953551013999956, 49.165119898000064 ], [ -123.953786341999916, 49.165116506000061 ], [ -123.954439509999929, 49.1651071000001 ], [ -123.955227877999988, 49.165095897000086 ], [ -123.955227236999974, 49.165157414000092 ], [ -123.955222758999952, 49.165562252000022 ], [ -123.955211886999976, 49.166551812000129 ], [ -123.955208566999929, 49.168440872000119 ], [ -123.955208484, 49.168468007000108 ], [ -123.95520064899992, 49.169178880000054 ], [ -123.95519230299999, 49.169934461000075 ], [ -123.95518779599999, 49.170339699000046 ], [ -123.956637328999975, 49.17035100600004 ], [ -123.956633572999948, 49.170803550000059 ], [ -123.956630603999912, 49.171154438000016 ], [ -123.956628699999953, 49.171387299000045 ], [ -123.956273290999931, 49.171305798 ], [ -123.95622655399994, 49.171300929000054 ], [ -123.955923905999938, 49.171269367000036 ], [ -123.955175045999937, 49.171191319000101 ], [ -123.954591880999885, 49.171129573000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113139720", "BldgCostT": "72320413", "sL_LossRatio": "0.752125895459432", "sL_AssetLoss": "932901", "sL_BldgLoss": "701659", "sL_StrLoss": "361609", "sL_NStrLoss": "340050", "sL_ContLoss": "231242", "geom_point": "0101000020E6100000A7ADBFC255FD5EC0C1423913CB954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.956633572999948, 49.170803550000059 ], [ -123.956637328999975, 49.17035100600004 ], [ -123.95518779599999, 49.170339699000046 ], [ -123.95519230299999, 49.169934461000075 ], [ -123.95520064899992, 49.169178880000054 ], [ -123.955208484, 49.168468007000108 ], [ -123.955951082999945, 49.168487192000029 ], [ -123.956125593999928, 49.1684916970001 ], [ -123.956636096999958, 49.168505903000089 ], [ -123.958097603999988, 49.168522815000095 ], [ -123.95812148100002, 49.167854187000081 ], [ -123.958108679999924, 49.167333399000036 ], [ -123.959636196999924, 49.167345282000035 ], [ -123.959634088999962, 49.167704496000042 ], [ -123.959549195999969, 49.16854670200005 ], [ -123.959527974999972, 49.169933927000066 ], [ -123.959521319999965, 49.170369588000092 ], [ -123.960991241999977, 49.170382170000082 ], [ -123.960989791999907, 49.170507007000062 ], [ -123.96097695499995, 49.171640278000041 ], [ -123.96097208799992, 49.172067518000119 ], [ -123.960960058999902, 49.172909174000061 ], [ -123.960956087999989, 49.173184702000064 ], [ -123.960739896999968, 49.173362598000033 ], [ -123.959448107999918, 49.172724004000088 ], [ -123.958151903, 49.172100045000079 ], [ -123.958085538999967, 49.172068100000089 ], [ -123.957837491999953, 49.171948699000019 ], [ -123.956628699999953, 49.171387299000045 ], [ -123.956630603999912, 49.171154438000016 ], [ -123.956633572999948, 49.170803550000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "533827417", "BldgCostT": "350451667", "sL_LossRatio": "0.771754900979144", "sL_AssetLoss": "3136006", "sL_BldgLoss": "2420228", "sL_StrLoss": "1288987", "sL_NStrLoss": "1131241", "sL_ContLoss": "715778", "geom_point": "0101000020E610000013185701E3FD5EC03D818EFBFB954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.964864502999887, 49.177526805000092 ], [ -123.964669304, 49.17670070200009 ], [ -123.964445911999974, 49.17645148900008 ], [ -123.963215998999971, 49.176294413000115 ], [ -123.963081980000013, 49.176277303000028 ], [ -123.962851025999967, 49.176247802000042 ], [ -123.96254919899998, 49.176237387000121 ], [ -123.962398040999958, 49.176232150000082 ], [ -123.961615404999918, 49.176205109000094 ], [ -123.961614031999886, 49.176195182000114 ], [ -123.961567705999954, 49.175863296000109 ], [ -123.961400801999957, 49.175747902000104 ], [ -123.960658683999938, 49.175762191000025 ], [ -123.959978087999957, 49.175975809000121 ], [ -123.959927990999972, 49.175969777000049 ], [ -123.959208110999924, 49.175883200000079 ], [ -123.958536631999948, 49.175954272000112 ], [ -123.95846750099993, 49.17596159200005 ], [ -123.958432347999917, 49.17593517299999 ], [ -123.958313973999964, 49.175846110000109 ], [ -123.957994089999914, 49.175605491000042 ], [ -123.957813995999942, 49.175525793000091 ], [ -123.95748602499998, 49.175520101000174 ], [ -123.957122123, 49.175233806000058 ], [ -123.956655603999963, 49.175175398000064 ], [ -123.956364680999954, 49.175024404000084 ], [ -123.956232160999946, 49.174635697000056 ], [ -123.956132574999984, 49.174343693000019 ], [ -123.956111187999952, 49.174321863000038 ], [ -123.955712693999942, 49.17391500499999 ], [ -123.955257917999987, 49.173855195000108 ], [ -123.95502867099998, 49.17393160600011 ], [ -123.954351289999948, 49.174157353000048 ], [ -123.954343707999911, 49.174159892000013 ], [ -123.953896183999959, 49.174389200000078 ], [ -123.95302270499991, 49.173937792000068 ], [ -123.952552721999979, 49.173900330000031 ], [ -123.951896206999905, 49.173847986000105 ], [ -123.951665676999966, 49.173704258000036 ], [ -123.95161703799999, 49.173673941000089 ], [ -123.951368690999914, 49.173519103000039 ], [ -123.951163384999973, 49.173482562000082 ], [ -123.950736197999944, 49.173406493000122 ], [ -123.950363397999965, 49.173264692000032 ], [ -123.950362856999959, 49.17305031900009 ], [ -123.950362075999948, 49.172753105000041 ], [ -123.950361582999946, 49.172564907000044 ], [ -123.950235059999912, 49.171126192000052 ], [ -123.950188181999948, 49.170593159000084 ], [ -123.950184329999942, 49.170559168000061 ], [ -123.950176352999932, 49.170488469000063 ], [ -123.950189541999961, 49.170490889000106 ], [ -123.951800927999955, 49.17078593200003 ], [ -123.951794077999963, 49.170879445000054 ], [ -123.952139367999976, 49.170923214000027 ], [ -123.95262133499989, 49.170984313000055 ], [ -123.953290724999945, 49.171033061000109 ], [ -123.953486249999941, 49.171012465000047 ], [ -123.954591880999885, 49.171129573000051 ], [ -123.955175045999937, 49.171191319000101 ], [ -123.955923905999938, 49.171269367000036 ], [ -123.95622655399994, 49.171300929000054 ], [ -123.956273290999931, 49.171305798 ], [ -123.956628699999953, 49.171387299000045 ], [ -123.957837491999953, 49.171948699000019 ], [ -123.958085538999967, 49.172068100000089 ], [ -123.958151903, 49.172100045000079 ], [ -123.959448107999918, 49.172724004000088 ], [ -123.960739896999968, 49.173362598000033 ], [ -123.960956087999989, 49.173184702000064 ], [ -123.960960058999902, 49.172909174000061 ], [ -123.96097208799992, 49.172067518000119 ], [ -123.96097695499995, 49.171640278000041 ], [ -123.960989791999907, 49.170507007000062 ], [ -123.960991241999977, 49.170382170000082 ], [ -123.960995422999972, 49.17019314600001 ], [ -123.960998019999934, 49.169940290000106 ], [ -123.961007967999976, 49.168968712000016 ], [ -123.961008992999922, 49.168851665000119 ], [ -123.96102303899994, 49.167625461000107 ], [ -123.961034094999931, 49.166560395000026 ], [ -123.962643383999989, 49.166580021000115 ], [ -123.963253045, 49.166582793000075 ], [ -123.966216555999935, 49.166596246000026 ], [ -123.96633579399996, 49.166595789000077 ], [ -123.966775521999978, 49.166598624000081 ], [ -123.96872362699996, 49.166611136000057 ], [ -123.971449991999989, 49.166624696000085 ], [ -123.971912864999965, 49.16653797400005 ], [ -123.972876587000016, 49.166120268000036 ], [ -123.972999529999967, 49.166223076000072 ], [ -123.973207098999964, 49.166396606000092 ], [ -123.973663313999936, 49.166621291000119 ], [ -123.973687032999976, 49.166627117000139 ], [ -123.97416090199999, 49.16674331400008 ], [ -123.976331658999953, 49.167245094000101 ], [ -123.976421241999958, 49.16723149000007 ], [ -123.97721506699996, 49.167491501000015 ], [ -123.97917752599993, 49.168134223000074 ], [ -123.980813380999948, 49.168648472000015 ], [ -123.98132326299995, 49.168740879000076 ], [ -123.981964303999987, 49.168747508000074 ], [ -123.982190189999955, 49.168753497000111 ], [ -123.982297239999951, 49.169192242000101 ], [ -123.982393403999978, 49.169849620000036 ], [ -123.982447548999929, 49.170281928000094 ], [ -123.982646863999918, 49.171873236000039 ], [ -123.982844273999902, 49.172868441000048 ], [ -123.982928016999963, 49.173290473000115 ], [ -123.98299991099999, 49.17351792200008 ], [ -123.982683700999971, 49.173512 ], [ -123.982684121999952, 49.173533235 ], [ -123.98300665899994, 49.173539275000053 ], [ -123.98338957599999, 49.174750676000059 ], [ -123.983423703999975, 49.174829102000075 ], [ -123.983185572999929, 49.17478832700003 ], [ -123.982701287999987, 49.174705393000046 ], [ -123.981864292999944, 49.174666996000049 ], [ -123.981187121999952, 49.174466200000083 ], [ -123.980546305999937, 49.174003293000048 ], [ -123.980433089999963, 49.173806691000046 ], [ -123.980344782999978, 49.17379254500004 ], [ -123.980007011999959, 49.173738407000037 ], [ -123.979649881999961, 49.173749791000013 ], [ -123.9791355, 49.17409590000009 ], [ -123.978683293999978, 49.174172805000111 ], [ -123.978396596999971, 49.174119570000123 ], [ -123.978215186999961, 49.174085904000087 ], [ -123.977426009999988, 49.173678595000119 ], [ -123.976866412999954, 49.173882194000065 ], [ -123.976632598999984, 49.17378538800007 ], [ -123.97659222899992, 49.17379032100007 ], [ -123.976480708999958, 49.173803909000092 ], [ -123.976252691, 49.174030293000058 ], [ -123.975925779999955, 49.174097300000085 ], [ -123.975057905999932, 49.173906411000068 ], [ -123.974262704999944, 49.17395770100007 ], [ -123.973821891999961, 49.173845209000021 ], [ -123.973679125999979, 49.173720123000038 ], [ -123.976103116, 49.173765694000068 ], [ -123.976102187999942, 49.173718497000088 ], [ -123.975279124999929, 49.173725451000031 ], [ -123.97525262, 49.172376345000011 ], [ -123.975664139999978, 49.172372868000046 ], [ -123.975658837999902, 49.172103047000036 ], [ -123.976893391999909, 49.172092610000085 ], [ -123.976904010999959, 49.172632252000078 ], [ -123.977315533999928, 49.172628771000063 ], [ -123.977304908999912, 49.172089127000014 ], [ -123.97936249899999, 49.172071695000035 ], [ -123.979351852999955, 49.171532054000068 ], [ -123.979763367, 49.171528562000063 ], [ -123.979758040999954, 49.171258741000024 ], [ -123.978523507999952, 49.171269210000048 ], [ -123.97851819, 49.170999388000034 ], [ -123.977695172999958, 49.171006359000039 ], [ -123.977673916999976, 49.169927075000089 ], [ -123.978085416999988, 49.169923591000085 ], [ -123.978080101999922, 49.169653769000021 ], [ -123.978491597999906, 49.169650283000081 ], [ -123.978470328999933, 49.168570998000106 ], [ -123.976824372999943, 49.168584934000101 ], [ -123.97683499, 49.169124576000108 ], [ -123.976423495999953, 49.169128057000052 ], [ -123.976434110999946, 49.169667700000076 ], [ -123.974788116999932, 49.169681607000065 ], [ -123.974782819999916, 49.16941178500015 ], [ -123.973548330999932, 49.169422200000028 ], [ -123.973543040999957, 49.169152378000042 ], [ -123.973131545999976, 49.16915584600013 ], [ -123.973115680999967, 49.168346382000031 ], [ -123.972704193999945, 49.16834984900008 ], [ -123.972683048999954, 49.167270562000041 ], [ -123.972271568999957, 49.167274027000047 ], [ -123.972266287999986, 49.16700420600008 ], [ -123.971031857999918, 49.167014594000079 ], [ -123.971037134999946, 49.167284415000019 ], [ -123.969922605999955, 49.167293782000115 ], [ -123.969883604999893, 49.168187223000061 ], [ -123.969820106, 49.168186026000079 ], [ -123.969860673999975, 49.170262829000066 ], [ -123.970683679999951, 49.170255914000094 ], [ -123.970694232999946, 49.170795557000076 ], [ -123.971517248999973, 49.170788636000097 ], [ -123.97153309, 49.171598100000054 ], [ -123.969887030999956, 49.171611938000048 ], [ -123.969892301999934, 49.171881759000094 ], [ -123.965777125999949, 49.171916251000027 ], [ -123.965782374999975, 49.17218607300007 ], [ -123.966193894999961, 49.172182631000062 ], [ -123.966199147999944, 49.172452452000122 ], [ -123.967022192999949, 49.172445563000061 ], [ -123.967027447999953, 49.172715385000032 ], [ -123.967438972999972, 49.172711938000049 ], [ -123.967444229999899, 49.172981760000049 ], [ -123.969090337999958, 49.172967957000068 ], [ -123.969095603999932, 49.173237779000033 ], [ -123.969918660999951, 49.173230868000068 ], [ -123.969924223999953, 49.173515507000047 ], [ -123.969877511999982, 49.173553194000071 ], [ -123.969851983999945, 49.173791056000063 ], [ -123.96975377099993, 49.174706087000047 ], [ -123.969714993999986, 49.175067199000054 ], [ -123.969298489999943, 49.175460211000036 ], [ -123.968946806999924, 49.175792091000091 ], [ -123.968855422000019, 49.176062705000028 ], [ -123.968889253999947, 49.176242472000041 ], [ -123.969093278999935, 49.177326057000059 ], [ -123.96801588799994, 49.177770233000075 ], [ -123.967968200999962, 49.17762649700007 ], [ -123.967731713999953, 49.177475508000093 ], [ -123.967249813999928, 49.177452693000042 ], [ -123.966937116999986, 49.177607993000031 ], [ -123.966589294999935, 49.177979689000118 ], [ -123.966096047999926, 49.178105737000116 ], [ -123.966043410999973, 49.178119190000075 ], [ -123.965672860000012, 49.178067907000099 ], [ -123.965313003999981, 49.178018096000109 ], [ -123.965203393999928, 49.177898048000088 ], [ -123.964864502999887, 49.177526805000092 ] ], [ [ -123.964526844999952, 49.171117103000071 ], [ -123.96452160299998, 49.170847281000107 ], [ -123.96411009399999, 49.170850717000093 ], [ -123.964094373999956, 49.170041251000029 ], [ -123.964505877999912, 49.1700378150001 ], [ -123.964474425999981, 49.168418881000058 ], [ -123.963651447999965, 49.168425752000076 ], [ -123.963646209999951, 49.168155929000164 ], [ -123.963234722999957, 49.168159364000118 ], [ -123.963271368999969, 49.170048120000082 ], [ -123.962859865999931, 49.170051552000054 ], [ -123.962870332999955, 49.170591197000086 ], [ -123.962458824999956, 49.170594626000124 ], [ -123.962472346999988, 49.171292108000024 ], [ -123.962491138999965, 49.171292163000018 ], [ -123.962576437999942, 49.171344863000051 ], [ -123.962566875999968, 49.171673190000078 ], [ -123.963302781999957, 49.171667053000128 ], [ -123.963297545999978, 49.171397231000086 ], [ -123.96412057299996, 49.171390361000135 ], [ -123.964115332999967, 49.171120540000118 ], [ -123.964526844999952, 49.171117103000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122741499", "BldgCostT": "80229999", "sL_LossRatio": "0.754253085749448", "sL_AssetLoss": "1105080", "sL_BldgLoss": "833510", "sL_StrLoss": "426400", "sL_NStrLoss": "407110", "sL_ContLoss": "271570", "geom_point": "0101000020E610000001A337818EFD5EC01111C49AC6964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.962876316999953, 49.179565005000015 ], [ -123.962542910999971, 49.179508305000091 ], [ -123.960837388999934, 49.179484100000089 ], [ -123.958752491999959, 49.179454511000088 ], [ -123.958789990999946, 49.178661895000097 ], [ -123.957006408, 49.178638879000083 ], [ -123.957018918999964, 49.178284263000123 ], [ -123.957034699999909, 49.177838012000073 ], [ -123.95704578499999, 49.177491488000086 ], [ -123.957109001999925, 49.177144213000112 ], [ -123.957122019999986, 49.177147225000041 ], [ -123.958526891999938, 49.17747459900005 ], [ -123.958932206999961, 49.176764592000069 ], [ -123.961614031999886, 49.176195182000114 ], [ -123.961615404999918, 49.176205109000094 ], [ -123.962398040999958, 49.176232150000082 ], [ -123.96254919899998, 49.176237387000121 ], [ -123.962851025999967, 49.176247802000042 ], [ -123.963081980000013, 49.176277303000028 ], [ -123.963215998999971, 49.176294413000115 ], [ -123.964445911999974, 49.17645148900008 ], [ -123.964669304, 49.17670070200009 ], [ -123.964864502999887, 49.177526805000092 ], [ -123.965203393999928, 49.177898048000088 ], [ -123.965313003999981, 49.178018096000109 ], [ -123.965672860000012, 49.178067907000099 ], [ -123.966043410999973, 49.178119190000075 ], [ -123.966096047999926, 49.178105737000116 ], [ -123.966589294999935, 49.177979689000118 ], [ -123.966937116999986, 49.177607993000031 ], [ -123.967249813999928, 49.177452693000042 ], [ -123.967731713999953, 49.177475508000093 ], [ -123.967968200999962, 49.17762649700007 ], [ -123.96801588799994, 49.177770233000075 ], [ -123.96656230499994, 49.178369506000088 ], [ -123.966464075999951, 49.179330196000073 ], [ -123.965116053999964, 49.179008294000042 ], [ -123.964666696999984, 49.17890101700003 ], [ -123.963593981999978, 49.178669108000051 ], [ -123.963407980999961, 49.178629496000035 ], [ -123.962876316999953, 49.179565005000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230499417", "BldgCostT": "159956667", "sL_LossRatio": "0.820101019634588", "sL_AssetLoss": "1313804", "sL_BldgLoss": "1077452", "sL_StrLoss": "535600", "sL_NStrLoss": "541852", "sL_ContLoss": "236352", "geom_point": "0101000020E6100000F4852DC9C3FD5EC0EF5811DA17974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.964277894999967, 49.18208308700018 ], [ -123.963490893999989, 49.181961093000083 ], [ -123.962901612999971, 49.181957998 ], [ -123.960726693999959, 49.181946606000068 ], [ -123.960738787999944, 49.181106692000057 ], [ -123.960758096999911, 49.180790597000083 ], [ -123.960787507999953, 49.180308879000094 ], [ -123.960837388999934, 49.179484100000089 ], [ -123.962542910999971, 49.179508305000091 ], [ -123.962876316999953, 49.179565005000015 ], [ -123.963407980999961, 49.178629496000035 ], [ -123.963593981999978, 49.178669108000051 ], [ -123.964666696999984, 49.17890101700003 ], [ -123.965116053999964, 49.179008294000042 ], [ -123.966464075999951, 49.179330196000073 ], [ -123.966640210999927, 49.179371381000074 ], [ -123.966698905999976, 49.17938510500008 ], [ -123.967876286999967, 49.179636889000093 ], [ -123.969068598999925, 49.179891686000076 ], [ -123.971597914999961, 49.180420191000074 ], [ -123.971401395000029, 49.180777589000122 ], [ -123.9709490799999, 49.181305579000124 ], [ -123.970703707999974, 49.181591995000048 ], [ -123.969807286999966, 49.181128678000029 ], [ -123.969692982999973, 49.181069597000047 ], [ -123.96917020099994, 49.180767111000101 ], [ -123.969041017999984, 49.180617905000055 ], [ -123.968705707999959, 49.180669199000079 ], [ -123.968458008999932, 49.18075279300006 ], [ -123.967914881999945, 49.181136891000037 ], [ -123.967717173, 49.181236800000171 ], [ -123.967482694999916, 49.181302590000072 ], [ -123.967206483, 49.181317205000063 ], [ -123.966873807999946, 49.181247 ], [ -123.966634799999909, 49.181101114000114 ], [ -123.96656429799998, 49.181024730000082 ], [ -123.966424094000033, 49.18087290500003 ], [ -123.965730208999986, 49.18012770900004 ], [ -123.96542560599994, 49.180228198000059 ], [ -123.964972583999952, 49.180306098000095 ], [ -123.96454280899998, 49.180323210000054 ], [ -123.963890610999954, 49.18022170299999 ], [ -123.963413985999949, 49.181058198000038 ], [ -123.964492081999964, 49.181324396000051 ], [ -123.96454932099999, 49.181364202000054 ], [ -123.964572805999964, 49.181452001000125 ], [ -123.964277894999967, 49.18208308700018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141584083", "BldgCostT": "94168333", "sL_LossRatio": "0.798783406213222", "sL_AssetLoss": "1042583", "sL_BldgLoss": "832798", "sL_StrLoss": "449657", "sL_NStrLoss": "383141", "sL_ContLoss": "209785", "geom_point": "0101000020E610000005C4904153FD5EC07FD7904D2C974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.962665289999947, 49.183597805000041 ], [ -123.962245715, 49.183568296000075 ], [ -123.960783792999948, 49.183549613000025 ], [ -123.960800098000021, 49.183179802000033 ], [ -123.960739489000019, 49.182747409000079 ], [ -123.958663891999947, 49.182719795000054 ], [ -123.956869198999982, 49.182694802000078 ], [ -123.954864901999954, 49.182667496000064 ], [ -123.954884315999934, 49.181853899000046 ], [ -123.95490412499997, 49.181030295000035 ], [ -123.954923411999971, 49.180247292000011 ], [ -123.954957993999955, 49.179399698000061 ], [ -123.954988382999929, 49.17861408900005 ], [ -123.957006408, 49.178638879000083 ], [ -123.958789990999946, 49.178661895000097 ], [ -123.958752491999959, 49.179454511000088 ], [ -123.960837388999934, 49.179484100000089 ], [ -123.960787507999953, 49.180308879000094 ], [ -123.960758096999911, 49.180790597000083 ], [ -123.960738787999944, 49.181106692000057 ], [ -123.960726693999959, 49.181946606000068 ], [ -123.962901612999971, 49.181957998 ], [ -123.962744688999962, 49.18225399500016 ], [ -123.962680788999961, 49.182774203000072 ], [ -123.962665289999947, 49.183597805000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153122251", "BldgCostT": "102450001", "sL_LossRatio": "0.755591300707313", "sL_AssetLoss": "1497639", "sL_BldgLoss": "1131603", "sL_StrLoss": "567724", "sL_NStrLoss": "563879", "sL_ContLoss": "366036", "geom_point": "0101000020E610000016CC67927BFD5EC0DC9D2077B2974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.95678769899996, 49.184613033000083 ], [ -123.955949678999943, 49.184029832000071 ], [ -123.954938931999976, 49.183322697000115 ], [ -123.954227316999933, 49.182827429000064 ], [ -123.953127312999968, 49.182062742000063 ], [ -123.953206766999983, 49.182020860000115 ], [ -123.953221791999965, 49.182012954000072 ], [ -123.95324937499997, 49.181998419000138 ], [ -123.953421798999926, 49.18191161000005 ], [ -123.953467111999942, 49.181901054000065 ], [ -123.953598128999886, 49.181870609000072 ], [ -123.953636488999976, 49.181861688000012 ], [ -123.953962394999976, 49.181839085000078 ], [ -123.954884315999934, 49.181853899000046 ], [ -123.954864901999954, 49.182667496000064 ], [ -123.956869198999982, 49.182694802000078 ], [ -123.958663891999947, 49.182719795000054 ], [ -123.960739489000019, 49.182747409000079 ], [ -123.960800098000021, 49.183179802000033 ], [ -123.960783792999948, 49.183549613000025 ], [ -123.962245715, 49.183568296000075 ], [ -123.962665289999947, 49.183597805000041 ], [ -123.962649208999963, 49.184371900000016 ], [ -123.96264651599999, 49.184526800000057 ], [ -123.962780262999942, 49.184532389000054 ], [ -123.963918518999932, 49.184579983000056 ], [ -123.964610110999971, 49.184608895000046 ], [ -123.965288203999961, 49.184588384000079 ], [ -123.965374821999958, 49.185460800000094 ], [ -123.965422051999951, 49.185934152000058 ], [ -123.965459586999941, 49.18631059900008 ], [ -123.965480719999988, 49.186516999000119 ], [ -123.965502090999919, 49.186725751000033 ], [ -123.965544123999962, 49.187136197000036 ], [ -123.965509891999915, 49.188010788000042 ], [ -123.962614802999965, 49.187972316000078 ], [ -123.962581374999971, 49.188216027000131 ], [ -123.962574407999952, 49.188266892000037 ], [ -123.962464219999958, 49.188434979000057 ], [ -123.96238327899999, 49.188560406000121 ], [ -123.960280487999952, 49.187067031 ], [ -123.958970398999924, 49.186136575000113 ], [ -123.95678769899996, 49.184613033000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190228978", "BldgCostT": "127004857", "sL_LossRatio": "0.755676601002324", "sL_AssetLoss": "1541019", "sL_BldgLoss": "1164512", "sL_StrLoss": "518580", "sL_NStrLoss": "645932", "sL_ContLoss": "376507", "geom_point": "0101000020E61000009F2A3AED04FD5EC00EE44D3CEF964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.95508470499999, 49.176986108000087 ], [ -123.955371093999958, 49.176955503000045 ], [ -123.956181879999974, 49.17697090900004 ], [ -123.957109001999925, 49.177144213000112 ], [ -123.95704578499999, 49.177491488000086 ], [ -123.957034699999909, 49.177838012000073 ], [ -123.957018918999964, 49.178284263000123 ], [ -123.957006408, 49.178638879000083 ], [ -123.954988382999929, 49.17861408900005 ], [ -123.954957993999955, 49.179399698000061 ], [ -123.954923411999971, 49.180247292000011 ], [ -123.95490412499997, 49.181030295000035 ], [ -123.954884315999934, 49.181853899000046 ], [ -123.953962394999976, 49.181839085000078 ], [ -123.953636488999976, 49.181861688000012 ], [ -123.953598128999886, 49.181870609000072 ], [ -123.953467111999942, 49.181901054000065 ], [ -123.953421798999926, 49.18191161000005 ], [ -123.95324937499997, 49.181998419000138 ], [ -123.953221791999965, 49.182012954000072 ], [ -123.953206766999983, 49.182020860000115 ], [ -123.953127312999968, 49.182062742000063 ], [ -123.953072558999978, 49.1820327820001 ], [ -123.952533202999987, 49.181737682000083 ], [ -123.952454008999908, 49.181694339000011 ], [ -123.951816211999983, 49.181393135000064 ], [ -123.950946625999947, 49.181019768000077 ], [ -123.950185602999937, 49.180693004000034 ], [ -123.949181606999929, 49.18014709200007 ], [ -123.949414691999948, 49.18014520100008 ], [ -123.95072268399997, 49.180170089000072 ], [ -123.95117569899999, 49.179905883000053 ], [ -123.951186792999977, 49.178567101000041 ], [ -123.951279199999988, 49.176966905000064 ], [ -123.952347708000019, 49.176981801000103 ], [ -123.953346198999952, 49.176996304000077 ], [ -123.954153007999963, 49.177007587000141 ], [ -123.954798189999934, 49.177016612000081 ], [ -123.95508470499999, 49.176986108000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288145583", "BldgCostT": "184538333", "sL_LossRatio": "0.733405881211039", "sL_AssetLoss": "1241479", "sL_BldgLoss": "910508", "sL_StrLoss": "472958", "sL_NStrLoss": "437550", "sL_ContLoss": "330971", "geom_point": "0101000020E6100000E2EF59CFF7FC5EC08269E74DA8964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.947298688, 49.177216616000038 ], [ -123.946837875999989, 49.176167302000032 ], [ -123.946834053999964, 49.176158613000055 ], [ -123.946352126999955, 49.175063977000022 ], [ -123.946419600999917, 49.17505145100003 ], [ -123.94644883699999, 49.175046010000109 ], [ -123.946937734999935, 49.176138124000033 ], [ -123.946941591999973, 49.176146801000087 ], [ -123.948143896999937, 49.175924793000036 ], [ -123.948476410999902, 49.175926758000109 ], [ -123.948505712999946, 49.175926930000045 ], [ -123.949378494999905, 49.175932107000079 ], [ -123.95513048499997, 49.176005402000115 ], [ -123.955134200999936, 49.175174307000091 ], [ -123.955050559000014, 49.174110188000071 ], [ -123.95502867099998, 49.17393160600011 ], [ -123.955257917999987, 49.173855195000108 ], [ -123.955712693999942, 49.17391500499999 ], [ -123.956111187999952, 49.174321863000038 ], [ -123.956132574999984, 49.174343693000019 ], [ -123.956232160999946, 49.174635697000056 ], [ -123.956364680999954, 49.175024404000084 ], [ -123.956655603999963, 49.175175398000064 ], [ -123.957122123, 49.175233806000058 ], [ -123.95748602499998, 49.175520101000174 ], [ -123.957813995999942, 49.175525793000091 ], [ -123.957994089999914, 49.175605491000042 ], [ -123.958313973999964, 49.175846110000109 ], [ -123.958432347999917, 49.17593517299999 ], [ -123.95846750099993, 49.17596159200005 ], [ -123.958536631999948, 49.175954272000112 ], [ -123.959208110999924, 49.175883200000079 ], [ -123.959927990999972, 49.175969777000049 ], [ -123.959978087999957, 49.175975809000121 ], [ -123.960658683999938, 49.175762191000025 ], [ -123.961400801999957, 49.175747902000104 ], [ -123.961567705999954, 49.175863296000109 ], [ -123.961614031999886, 49.176195182000114 ], [ -123.958932206999961, 49.176764592000069 ], [ -123.958526891999938, 49.17747459900005 ], [ -123.957122019999986, 49.177147225000041 ], [ -123.957109001999925, 49.177144213000112 ], [ -123.956181879999974, 49.17697090900004 ], [ -123.955371093999958, 49.176955503000045 ], [ -123.95508470499999, 49.176986108000087 ], [ -123.954798189999934, 49.177016612000081 ], [ -123.954153007999963, 49.177007587000141 ], [ -123.953346198999952, 49.176996304000077 ], [ -123.952347708000019, 49.176981801000103 ], [ -123.951279199999988, 49.176966905000064 ], [ -123.951186792999977, 49.178567101000041 ], [ -123.95117569899999, 49.179905883000053 ], [ -123.95072268399997, 49.180170089000072 ], [ -123.949414691999948, 49.18014520100008 ], [ -123.949181606999929, 49.18014709200007 ], [ -123.948616524999963, 49.179690601000061 ], [ -123.948274814999976, 49.17932659100007 ], [ -123.94787270399999, 49.17853010500005 ], [ -123.947302510999947, 49.177225305000071 ], [ -123.947298688, 49.177216616000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "212129001", "BldgCostT": "142820001", "sL_LossRatio": "0.790116252778483", "sL_AssetLoss": "1149908", "sL_BldgLoss": "908561", "sL_StrLoss": "429497", "sL_NStrLoss": "479064", "sL_ContLoss": "241347", "geom_point": "0101000020E6100000ED9DEAF3C5FC5EC0EFDEF6A94F964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.946937734999935, 49.176138124000033 ], [ -123.94644883699999, 49.175046010000109 ], [ -123.946419600999917, 49.17505145100003 ], [ -123.946352126999955, 49.175063977000022 ], [ -123.946348320999959, 49.175055253000075 ], [ -123.946065829999952, 49.174408374000073 ], [ -123.945947738999948, 49.174227826000049 ], [ -123.945872131999934, 49.174139933000014 ], [ -123.945617583999962, 49.173882942000056 ], [ -123.945293049, 49.173690333000074 ], [ -123.944668182999948, 49.173408289000079 ], [ -123.94433221099996, 49.173257786000072 ], [ -123.943830767999913, 49.173036582000087 ], [ -123.942956855999938, 49.172653415000084 ], [ -123.942480210999989, 49.172429990000097 ], [ -123.942250540999922, 49.172293228000058 ], [ -123.942061348, 49.172103353000118 ], [ -123.941879155, 49.171920518000093 ], [ -123.941872489, 49.171912651000063 ], [ -123.941783486999938, 49.171807440000059 ], [ -123.941896813999961, 49.171768899000028 ], [ -123.941947993999946, 49.171760805000083 ], [ -123.942222950999948, 49.171717276000024 ], [ -123.942321792999905, 49.171725286000054 ], [ -123.942600203999916, 49.171962394000047 ], [ -123.943291285999948, 49.172235801000035 ], [ -123.943430602999968, 49.17232944700006 ], [ -123.943450146999979, 49.17234536200003 ], [ -123.943467520999945, 49.172354264000063 ], [ -123.943846494999889, 49.172608999000026 ], [ -123.943928686999953, 49.172590503000094 ], [ -123.944137349999892, 49.172663191000034 ], [ -123.945089504999913, 49.172994897000052 ], [ -123.945891706999987, 49.173429288000101 ], [ -123.946518382999926, 49.173909292000104 ], [ -123.94744999299999, 49.173047603000043 ], [ -123.947376490999943, 49.17279559700011 ], [ -123.947158830999939, 49.172528697000125 ], [ -123.94693978299992, 49.172260097000034 ], [ -123.94685866399999, 49.17196222300003 ], [ -123.946807913999962, 49.17177580500006 ], [ -123.947101213999943, 49.171666864000073 ], [ -123.947107010999943, 49.171664708000044 ], [ -123.947161075999958, 49.17166775099999 ], [ -123.948220204999942, 49.171727411000163 ], [ -123.948440285999951, 49.171846846000086 ], [ -123.948857983999972, 49.172073498000024 ], [ -123.950182319999968, 49.173195801000169 ], [ -123.950363397999965, 49.173264692000032 ], [ -123.950736197999944, 49.173406493000122 ], [ -123.951163384999973, 49.173482562000082 ], [ -123.951368690999914, 49.173519103000039 ], [ -123.95161703799999, 49.173673941000089 ], [ -123.951665676999966, 49.173704258000036 ], [ -123.951896206999905, 49.173847986000105 ], [ -123.952552721999979, 49.173900330000031 ], [ -123.95302270499991, 49.173937792000068 ], [ -123.953896183999959, 49.174389200000078 ], [ -123.954343707999911, 49.174159892000013 ], [ -123.954351289999948, 49.174157353000048 ], [ -123.95502867099998, 49.17393160600011 ], [ -123.955050559000014, 49.174110188000071 ], [ -123.955134200999936, 49.175174307000091 ], [ -123.95513048499997, 49.176005402000115 ], [ -123.949378494999905, 49.175932107000079 ], [ -123.948505712999946, 49.175926930000045 ], [ -123.948476410999902, 49.175926758000109 ], [ -123.948143896999937, 49.175924793000036 ], [ -123.946941591999973, 49.176146801000087 ], [ -123.946937734999935, 49.176138124000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "331953790", "BldgCostT": "226033048", "sL_LossRatio": "0.858316317315316", "sL_AssetLoss": "1633265", "sL_BldgLoss": "1401858", "sL_StrLoss": "688669", "sL_NStrLoss": "713189", "sL_ContLoss": "231407", "geom_point": "0101000020E6100000011124E76BFC5EC05FAE8F986A964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.94423617, 49.173353206000037 ], [ -123.94433221099996, 49.173257786000072 ], [ -123.944668182999948, 49.173408289000079 ], [ -123.945293049, 49.173690333000074 ], [ -123.945617583999962, 49.173882942000056 ], [ -123.945872131999934, 49.174139933000014 ], [ -123.945947738999948, 49.174227826000049 ], [ -123.946065829999952, 49.174408374000073 ], [ -123.946348320999959, 49.175055253000075 ], [ -123.946352126999955, 49.175063977000022 ], [ -123.946834053999964, 49.176158613000055 ], [ -123.946837875999989, 49.176167302000032 ], [ -123.945478197999975, 49.176417899000043 ], [ -123.944047810999962, 49.17668319400012 ], [ -123.942703097999967, 49.176932203 ], [ -123.94221640399999, 49.175852194000093 ], [ -123.941807008999902, 49.174944807000045 ], [ -123.941398995999947, 49.17403739800011 ], [ -123.942753734999954, 49.173775148000061 ], [ -123.94419480399992, 49.173482986000067 ], [ -123.94423617, 49.173353206000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "497318176", "BldgCostT": "339415127", "sL_LossRatio": "0.827458432149421", "sL_AssetLoss": "1843492", "sL_BldgLoss": "1525413", "sL_StrLoss": "741568", "sL_NStrLoss": "783845", "sL_ContLoss": "318079", "geom_point": "0101000020E6100000180F078D89FC5EC02922B348CD964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.944570144999943, 49.177843346000053 ], [ -123.944526601999954, 49.177757680000134 ], [ -123.944034147999929, 49.177850477000057 ], [ -123.943780180999951, 49.177898295000027 ], [ -123.943615384999958, 49.177929028000101 ], [ -123.942978614999959, 49.178047785000111 ], [ -123.94275429299995, 49.178190730000075 ], [ -123.942745749999943, 49.178138218000043 ], [ -123.942741570999942, 49.178112497000086 ], [ -123.942740065999942, 49.178103117000063 ], [ -123.942712592999953, 49.17793411600006 ], [ -123.942341099999965, 49.177190706000019 ], [ -123.942141672, 49.177102246000047 ], [ -123.942703097999967, 49.176932203 ], [ -123.944047810999962, 49.17668319400012 ], [ -123.945478197999975, 49.176417899000043 ], [ -123.946837875999989, 49.176167302000032 ], [ -123.947298688, 49.177216616000038 ], [ -123.947302510999947, 49.177225305000071 ], [ -123.94787270399999, 49.17853010500005 ], [ -123.948274814999976, 49.17932659100007 ], [ -123.948616524999963, 49.179690601000061 ], [ -123.949181606999929, 49.18014709200007 ], [ -123.947145208999956, 49.180103804000062 ], [ -123.945651109999943, 49.180072593000034 ], [ -123.945498884999935, 49.179670791000085 ], [ -123.944570144999943, 49.177843346000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "200940229", "BldgCostT": "119225842", "sL_LossRatio": "0.695985447301559", "sL_AssetLoss": "1815196", "sL_BldgLoss": "1263350", "sL_StrLoss": "612400", "sL_NStrLoss": "650950", "sL_ContLoss": "551846", "geom_point": "0101000020E61000002901CEDEDBFC5EC0410DD75172974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.955308250999977, 49.185321484000028 ], [ -123.954775203999986, 49.185269100000049 ], [ -123.95274970899996, 49.185252315000113 ], [ -123.950972903999926, 49.18522299200005 ], [ -123.948975605999934, 49.185189494000142 ], [ -123.947578599999972, 49.185159290000037 ], [ -123.947379980999969, 49.183944389000018 ], [ -123.947217304, 49.183499988000101 ], [ -123.94707430199999, 49.183324415000058 ], [ -123.947043859999937, 49.183299486000102 ], [ -123.946369107999928, 49.18274727900009 ], [ -123.946193727999969, 49.182571500000051 ], [ -123.94618082799991, 49.182558520000065 ], [ -123.946178715999935, 49.182556435000059 ], [ -123.946132813999938, 49.182510379000114 ], [ -123.945981621999977, 49.182304001000041 ], [ -123.94587447699999, 49.182089497000078 ], [ -123.945769187999986, 49.181743502000074 ], [ -123.945771425999979, 49.18098793100004 ], [ -123.945772787999928, 49.180514402 ], [ -123.945651109999943, 49.180072593000034 ], [ -123.947145208999956, 49.180103804000062 ], [ -123.949181606999929, 49.18014709200007 ], [ -123.950185602999937, 49.180693004000034 ], [ -123.950946625999947, 49.181019768000077 ], [ -123.951816211999983, 49.181393135000064 ], [ -123.952454008999908, 49.181694339000011 ], [ -123.952533202999987, 49.181737682000083 ], [ -123.953072558999978, 49.1820327820001 ], [ -123.953127312999968, 49.182062742000063 ], [ -123.954227316999933, 49.182827429000064 ], [ -123.954938931999976, 49.183322697000115 ], [ -123.955949678999943, 49.184029832000071 ], [ -123.95678769899996, 49.184613033000083 ], [ -123.958970398999924, 49.186136575000113 ], [ -123.958498289999937, 49.186242882000023 ], [ -123.956872344999979, 49.186211172000128 ], [ -123.956683663999968, 49.186043727000069 ], [ -123.955492437999951, 49.185417811000022 ], [ -123.955308250999977, 49.185321484000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218814091", "BldgCostT": "135371792", "sL_LossRatio": "0.72562592284604", "sL_AssetLoss": "1302357", "sL_BldgLoss": "945024", "sL_StrLoss": "410874", "sL_NStrLoss": "534150", "sL_ContLoss": "357333", "geom_point": "0101000020E61000004779BEB006FD5EC0D831B5DF39984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.94871459299992, 49.192610595000097 ], [ -123.949201001999953, 49.191447012000062 ], [ -123.949221903999941, 49.191095185000108 ], [ -123.948835222999961, 49.19101830200001 ], [ -123.948626084999958, 49.190821800000045 ], [ -123.949304810999962, 49.190411605000044 ], [ -123.948813299999983, 49.190551202000037 ], [ -123.948604493999966, 49.19044441300008 ], [ -123.948601496999956, 49.190300514000057 ], [ -123.948936098999951, 49.190084689000045 ], [ -123.948968000999983, 49.190064101000118 ], [ -123.94880038299999, 49.18993019300008 ], [ -123.948765826999988, 49.189793779000055 ], [ -123.948609110999911, 49.189175406000047 ], [ -123.949203223999987, 49.188756703000081 ], [ -123.949191094999946, 49.188743037000066 ], [ -123.948894799999934, 49.188409214000046 ], [ -123.94900209599993, 49.18821971400007 ], [ -123.948860403999959, 49.188058809000026 ], [ -123.948944194999939, 49.1880217960001 ], [ -123.948843702999966, 49.187896407000011 ], [ -123.948776409999951, 49.187923487000049 ], [ -123.948755224999957, 49.187766877000044 ], [ -123.948728995999943, 49.18757321300005 ], [ -123.948522305999973, 49.187302036000077 ], [ -123.948518388000011, 49.187296905000032 ], [ -123.948600344999946, 49.187088705000036 ], [ -123.948635578999955, 49.186999194000087 ], [ -123.94839890899999, 49.186821209000087 ], [ -123.94781859599999, 49.186673092000078 ], [ -123.94752350899995, 49.186305603000029 ], [ -123.946833494999979, 49.186096303000063 ], [ -123.946719575999907, 49.185818495000056 ], [ -123.946760706999939, 49.185272392000037 ], [ -123.946762994999958, 49.185241700000091 ], [ -123.946664536999975, 49.184783809000095 ], [ -123.946626101999954, 49.184605109000103 ], [ -123.94644517899998, 49.184444193000076 ], [ -123.946454392999939, 49.184192108000062 ], [ -123.946089211999961, 49.183754905000058 ], [ -123.946031415000022, 49.183543098000037 ], [ -123.946028951999963, 49.18353413300013 ], [ -123.946027928999939, 49.183530383000104 ], [ -123.945971402999987, 49.183323285 ], [ -123.945832308999982, 49.183252099000114 ], [ -123.945528933999952, 49.182810980000021 ], [ -123.945508789999963, 49.182781681000023 ], [ -123.945070297999962, 49.182144110000138 ], [ -123.944653202999973, 49.181859191000058 ], [ -123.944583160999912, 49.1810690840001 ], [ -123.944583003999966, 49.181067407000079 ], [ -123.94413665899998, 49.181039576000025 ], [ -123.944135921999973, 49.181000782000091 ], [ -123.943815307999927, 49.181003402000051 ], [ -123.943785095, 49.180966201000054 ], [ -123.94383819399998, 49.180803898000072 ], [ -123.944289298999934, 49.180736909000061 ], [ -123.944300856999988, 49.180729144000082 ], [ -123.94442490499992, 49.180645795000018 ], [ -123.944375706999949, 49.180224188000103 ], [ -123.944028485999979, 49.18006469400008 ], [ -123.944274777999937, 49.179982099000014 ], [ -123.944284706999952, 49.179811189000048 ], [ -123.943795412999961, 49.179311296000044 ], [ -123.943448413999974, 49.179116192000095 ], [ -123.943123409999941, 49.178579293000041 ], [ -123.942791496000012, 49.178419812000129 ], [ -123.942774628999985, 49.178315978000036 ], [ -123.94276468799994, 49.178254740000078 ], [ -123.94275429299995, 49.178190730000075 ], [ -123.942978614999959, 49.178047785000111 ], [ -123.943615384999958, 49.177929028000101 ], [ -123.943780180999951, 49.177898295000027 ], [ -123.944034147999929, 49.177850477000057 ], [ -123.944526601999954, 49.177757680000134 ], [ -123.944570144999943, 49.177843346000053 ], [ -123.945498884999935, 49.179670791000085 ], [ -123.945651109999943, 49.180072593000034 ], [ -123.945772787999928, 49.180514402 ], [ -123.945771425999979, 49.18098793100004 ], [ -123.945769187999986, 49.181743502000074 ], [ -123.94587447699999, 49.182089497000078 ], [ -123.945981621999977, 49.182304001000041 ], [ -123.946132813999938, 49.182510379000114 ], [ -123.946178715999935, 49.182556435000059 ], [ -123.94618082799991, 49.182558520000065 ], [ -123.946193727999969, 49.182571500000051 ], [ -123.946369107999928, 49.18274727900009 ], [ -123.947043859999937, 49.183299486000102 ], [ -123.94707430199999, 49.183324415000058 ], [ -123.947217304, 49.183499988000101 ], [ -123.947379980999969, 49.183944389000018 ], [ -123.947578599999972, 49.185159290000037 ], [ -123.947707396999988, 49.185751509000056 ], [ -123.947827812999961, 49.185973610000126 ], [ -123.947933002999918, 49.186079795000111 ], [ -123.948005020999958, 49.186152495000016 ], [ -123.948333201999958, 49.186388401000137 ], [ -123.949703509999935, 49.187024993000122 ], [ -123.95031331199999, 49.18743551100011 ], [ -123.950391173999947, 49.187535141000048 ], [ -123.950393038999934, 49.187648643000038 ], [ -123.95087572499996, 49.188206213000072 ], [ -123.951510185999922, 49.189052108000091 ], [ -123.951667190999942, 49.189005573000074 ], [ -123.951748478999917, 49.189089955000036 ], [ -123.951869383999949, 49.189052637000017 ], [ -123.952161516999951, 49.189050093000048 ], [ -123.952504705999942, 49.189102520000048 ], [ -123.952763267999956, 49.189177672000056 ], [ -123.952948323999948, 49.189178485000063 ], [ -123.955031815999973, 49.189625997000071 ], [ -123.956269418999966, 49.19010329200006 ], [ -123.957004387999973, 49.190226194000026 ], [ -123.957465991, 49.190234903000011 ], [ -123.958003011999949, 49.190242449000074 ], [ -123.958562193999981, 49.190250286000065 ], [ -123.958577482999914, 49.190775596000016 ], [ -123.958646218999959, 49.191301799000037 ], [ -123.960206892999935, 49.191355708000103 ], [ -123.961158603999976, 49.191382696000083 ], [ -123.961889919999962, 49.191215607000046 ], [ -123.962522387999954, 49.191174400000108 ], [ -123.962393114999927, 49.190307494000123 ], [ -123.964022304999958, 49.19026630200009 ], [ -123.964395501999917, 49.189728502000023 ], [ -123.965113389999914, 49.1900230090001 ], [ -123.965687370999945, 49.190189597000057 ], [ -123.965450874999931, 49.19067589100009 ], [ -123.96554295299994, 49.190768881000075 ], [ -123.965647554999933, 49.190874547000057 ], [ -123.965662679, 49.190889836000061 ], [ -123.965006291999956, 49.191153603000039 ], [ -123.964330798999981, 49.191707588 ], [ -123.964143985999911, 49.192708906000057 ], [ -123.963943284, 49.192925298000041 ], [ -123.962553199999959, 49.192802805000099 ], [ -123.962200262999914, 49.192815897000045 ], [ -123.961017900999977, 49.192859792000021 ], [ -123.960513202999906, 49.19297230100004 ], [ -123.959836407999958, 49.192852696000088 ], [ -123.959261293999973, 49.192911092000088 ], [ -123.958752398999977, 49.192807101000042 ], [ -123.957616678999969, 49.193023592000038 ], [ -123.956941410999946, 49.192822798000158 ], [ -123.956163700999966, 49.192342804000063 ], [ -123.956040591999937, 49.192415492000059 ], [ -123.95578249199994, 49.19321870100007 ], [ -123.955778604999963, 49.193218611000049 ], [ -123.955358187999963, 49.193209721000123 ], [ -123.955177207999924, 49.193205904000067 ], [ -123.954017799999988, 49.192864110000073 ], [ -123.953936300999899, 49.192901089000081 ], [ -123.953720064999956, 49.192353445000101 ], [ -123.953546594999978, 49.191914114000063 ], [ -123.953421002999946, 49.191798801000033 ], [ -123.952675901999982, 49.191633599000049 ], [ -123.952184500999962, 49.191737492000094 ], [ -123.95218332899999, 49.191738122000054 ], [ -123.951842023, 49.191924083000082 ], [ -123.951750406999906, 49.191974000000101 ], [ -123.951702730999926, 49.192041237000076 ], [ -123.9515899149999, 49.192200407 ], [ -123.950353705999987, 49.192912495000016 ], [ -123.94929180499993, 49.193298510000076 ], [ -123.948934095999931, 49.193338297000125 ], [ -123.948547489999896, 49.193178801000066 ], [ -123.948352218999972, 49.19296520600011 ], [ -123.948320489999915, 49.192829911000054 ], [ -123.94871459299992, 49.192610595000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45849250", "BldgCostT": "27100000", "sL_LossRatio": "0.701843314964724", "sL_AssetLoss": "183864.4", "sL_BldgLoss": "129044", "sL_StrLoss": "60637", "sL_NStrLoss": "68407", "sL_ContLoss": "54820.4", "geom_point": "0101000020E6100000758E3B8475FB5EC0E4CD026956974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.926467392999953, 49.18368131200004 ], [ -123.926487038999966, 49.183240871000137 ], [ -123.926254311999941, 49.183236392 ], [ -123.926248833999963, 49.183359156000137 ], [ -123.925562154999966, 49.183345937000098 ], [ -123.925593700999983, 49.18330910100012 ], [ -123.925811302999975, 49.182470186000053 ], [ -123.925655797999966, 49.182200986000034 ], [ -123.92595039099993, 49.181839308000079 ], [ -123.92624820399999, 49.181648395000074 ], [ -123.926487284999922, 49.181214095000037 ], [ -123.92645579, 49.180980505000072 ], [ -123.927549000999974, 49.180738390000094 ], [ -123.927463092999943, 49.180567514000053 ], [ -123.927198818999926, 49.180407995000103 ], [ -123.927332101999966, 49.180191510000022 ], [ -123.927564592999929, 49.180125997000061 ], [ -123.927989197999949, 49.180114594000017 ], [ -123.928251081999946, 49.180184401000105 ], [ -123.92872322399991, 49.180503399000045 ], [ -123.929066986999956, 49.18052759600004 ], [ -123.930245096999897, 49.18114850900016 ], [ -123.930850285999909, 49.181223999000075 ], [ -123.930951187999966, 49.181430501000065 ], [ -123.931463105999939, 49.181642686000011 ], [ -123.931603893999963, 49.181820790000138 ], [ -123.932930212999977, 49.182701575000131 ], [ -123.932886916999934, 49.183675293000086 ], [ -123.931951936999965, 49.183657349000036 ], [ -123.931946185999919, 49.183786615000102 ], [ -123.926467392999953, 49.18368131200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17975077", "BldgCostT": "10477409", "sL_LossRatio": "0.748892518623011", "sL_AssetLoss": "80814", "sL_BldgLoss": "60521", "sL_StrLoss": "30091", "sL_NStrLoss": "30430", "sL_ContLoss": "20293", "geom_point": "0101000020E6100000459FB0404BFC5EC0AF9B315042964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.942064919999964, 49.177068205000047 ], [ -123.941890015999945, 49.176555498000042 ], [ -123.941218780999961, 49.176544101000054 ], [ -123.941050889999971, 49.176418711000032 ], [ -123.940774812999962, 49.176358893000064 ], [ -123.940774286999982, 49.176304791000085 ], [ -123.940994507999932, 49.17628489800007 ], [ -123.941158688999977, 49.176283399000077 ], [ -123.941338998999981, 49.17639028900004 ], [ -123.941749416999969, 49.176341805000021 ], [ -123.941481516999957, 49.17595729700011 ], [ -123.941656885999976, 49.175739397000022 ], [ -123.941578509999943, 49.175245211000075 ], [ -123.941065885999976, 49.174269591000069 ], [ -123.94086029099995, 49.173604508000025 ], [ -123.940904313999965, 49.172956492000068 ], [ -123.941344707999946, 49.172297097000083 ], [ -123.941411003999946, 49.171907606000062 ], [ -123.941600167000033, 49.171843854 ], [ -123.941783486999938, 49.171807440000059 ], [ -123.941872489, 49.171912651000063 ], [ -123.941879155, 49.171920518000093 ], [ -123.942061348, 49.172103353000118 ], [ -123.942250540999922, 49.172293228000058 ], [ -123.942480210999989, 49.172429990000097 ], [ -123.942956855999938, 49.172653415000084 ], [ -123.943830767999913, 49.173036582000087 ], [ -123.94433221099996, 49.173257786000072 ], [ -123.94423617, 49.173353206000037 ], [ -123.94419480399992, 49.173482986000067 ], [ -123.942753734999954, 49.173775148000061 ], [ -123.941398995999947, 49.17403739800011 ], [ -123.941807008999902, 49.174944807000045 ], [ -123.94221640399999, 49.175852194000093 ], [ -123.942703097999967, 49.176932203 ], [ -123.942141672, 49.177102246000047 ], [ -123.942064919999964, 49.177068205000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153138465", "BldgCostT": "98616539", "sL_LossRatio": "0.719912387408936", "sL_AssetLoss": "1463260", "sL_BldgLoss": "1053419", "sL_StrLoss": "494890", "sL_NStrLoss": "558529", "sL_ContLoss": "409841", "geom_point": "0101000020E6100000626A2B5902FD5EC0FE2DCFBDE6974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.947707396999988, 49.185751509000056 ], [ -123.947578599999972, 49.185159290000037 ], [ -123.948975605999934, 49.185189494000142 ], [ -123.950972903999926, 49.18522299200005 ], [ -123.95274970899996, 49.185252315000113 ], [ -123.954775203999986, 49.185269100000049 ], [ -123.955308250999977, 49.185321484000028 ], [ -123.955492437999951, 49.185417811000022 ], [ -123.956683663999968, 49.186043727000069 ], [ -123.956872344999979, 49.186211172000128 ], [ -123.957367990999913, 49.18656818400008 ], [ -123.95742279199996, 49.186614515000038 ], [ -123.957501816999965, 49.186681302000018 ], [ -123.957945691999967, 49.187056406000131 ], [ -123.958517122999922, 49.187530896000091 ], [ -123.958749911999945, 49.187724406000086 ], [ -123.959438304999949, 49.188250689000093 ], [ -123.954686206999938, 49.188224589000114 ], [ -123.951047164, 49.188204057000057 ], [ -123.950950350999946, 49.188205287000173 ], [ -123.95087572499996, 49.188206213000072 ], [ -123.950393038999934, 49.187648643000038 ], [ -123.950391173999947, 49.187535141000048 ], [ -123.95031331199999, 49.18743551100011 ], [ -123.949703509999935, 49.187024993000122 ], [ -123.948333201999958, 49.186388401000137 ], [ -123.948005020999958, 49.186152495000016 ], [ -123.947933002999918, 49.186079795000111 ], [ -123.947827812999961, 49.185973610000126 ], [ -123.947707396999988, 49.185751509000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125490561", "BldgCostT": "80978190", "sL_LossRatio": "0.772262740631181", "sL_AssetLoss": "882315", "sL_BldgLoss": "681379", "sL_StrLoss": "374543", "sL_NStrLoss": "306836", "sL_ContLoss": "200936", "geom_point": "0101000020E610000056E4FF445BFD5EC07CF601ED33984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.958577482999914, 49.190775596000016 ], [ -123.958562193999981, 49.190250286000065 ], [ -123.958003011999949, 49.190242449000074 ], [ -123.957465991, 49.190234903000011 ], [ -123.957004387999973, 49.190226194000026 ], [ -123.956269418999966, 49.19010329200006 ], [ -123.955031815999973, 49.189625997000071 ], [ -123.952948323999948, 49.189178485000063 ], [ -123.952763267999956, 49.189177672000056 ], [ -123.952504705999942, 49.189102520000048 ], [ -123.952161516999951, 49.189050093000048 ], [ -123.951869383999949, 49.189052637000017 ], [ -123.951748478999917, 49.189089955000036 ], [ -123.951667190999942, 49.189005573000074 ], [ -123.951510185999922, 49.189052108000091 ], [ -123.95087572499996, 49.188206213000072 ], [ -123.950950350999946, 49.188205287000173 ], [ -123.951047164, 49.188204057000057 ], [ -123.954686206999938, 49.188224589000114 ], [ -123.959438304999949, 49.188250689000093 ], [ -123.958749911999945, 49.187724406000086 ], [ -123.958517122999922, 49.187530896000091 ], [ -123.957945691999967, 49.187056406000131 ], [ -123.957501816999965, 49.186681302000018 ], [ -123.95742279199996, 49.186614515000038 ], [ -123.957367990999913, 49.18656818400008 ], [ -123.956872344999979, 49.186211172000128 ], [ -123.958498289999937, 49.186242882000023 ], [ -123.958970398999924, 49.186136575000113 ], [ -123.960280487999952, 49.187067031 ], [ -123.96238327899999, 49.188560406000121 ], [ -123.963810801999969, 49.189460793000137 ], [ -123.964395501999917, 49.189728502000023 ], [ -123.964022304999958, 49.19026630200009 ], [ -123.962393114999927, 49.190307494000123 ], [ -123.962522387999954, 49.191174400000108 ], [ -123.961889919999962, 49.191215607000046 ], [ -123.961158603999976, 49.191382696000083 ], [ -123.960206892999935, 49.191355708000103 ], [ -123.958646218999959, 49.191301799000037 ], [ -123.958577482999914, 49.190775596000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23594584", "BldgCostT": "16008334", "sL_LossRatio": "0.902203709256007", "sL_AssetLoss": "93388", "sL_BldgLoss": "84255", "sL_StrLoss": "64020", "sL_NStrLoss": "20235", "sL_ContLoss": "9133", "geom_point": "0101000020E6100000C2F45A5CE5FB5EC09E63C42E9F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.936291216000015, 49.170700494000052 ], [ -123.936800267999942, 49.17005029200012 ], [ -123.936801823999986, 49.170048304000034 ], [ -123.936154600999956, 49.169244988000067 ], [ -123.935898090999956, 49.168679608000033 ], [ -123.935500710999989, 49.168763597000044 ], [ -123.93532099399999, 49.168612697000107 ], [ -123.935304908999939, 49.168504392000067 ], [ -123.935535281999989, 49.168340597000075 ], [ -123.935435312999928, 49.168179696000067 ], [ -123.93552041099997, 49.167575789000047 ], [ -123.935392618999956, 49.167370696000063 ], [ -123.935199094, 49.167299486000026 ], [ -123.934884815999979, 49.167312307000053 ], [ -123.934742206999914, 49.167114396000059 ], [ -123.934671008999928, 49.166909294000064 ], [ -123.934875284999947, 49.166808203000052 ], [ -123.93507501299996, 49.166491987 ], [ -123.934920298999941, 49.166304007000065 ], [ -123.93466418300001, 49.166180097000037 ], [ -123.93435208399994, 49.166029101000042 ], [ -123.933924076999958, 49.165925198000068 ], [ -123.933637193999971, 49.165927989000053 ], [ -123.933186407999955, 49.16608470200007 ], [ -123.933190998999976, 49.166237092000102 ], [ -123.933710608999903, 49.166889395000076 ], [ -123.933719287999935, 49.167410597000114 ], [ -123.93390320899999, 49.167706893000059 ], [ -123.932564914999944, 49.168041506000087 ], [ -123.932414795999989, 49.168005912000034 ], [ -123.931487088999944, 49.166818208000109 ], [ -123.930889997999969, 49.166462103000065 ], [ -123.930748321999971, 49.166274105000127 ], [ -123.930087114999935, 49.166064708000114 ], [ -123.929420705, 49.16563749900012 ], [ -123.929431392999959, 49.165485106000062 ], [ -123.929694404999907, 49.165156433000099 ], [ -123.930015704999974, 49.165153487000111 ], [ -123.931266274999956, 49.164973374000034 ], [ -123.931312878999947, 49.165070604000036 ], [ -123.931474508999941, 49.165227718000018 ], [ -123.932174829999937, 49.165657155000062 ], [ -123.932528622999953, 49.165836825000063 ], [ -123.932729317999957, 49.165885710000104 ], [ -123.932991364999964, 49.165883628000152 ], [ -123.933060991999952, 49.165883101000084 ], [ -123.93350567799996, 49.165743889000083 ], [ -123.933814694999967, 49.16572818800006 ], [ -123.934222375999965, 49.165804476000112 ], [ -123.934805392, 49.165976873000069 ], [ -123.934955696999964, 49.166048183000065 ], [ -123.934991640999954, 49.166075843000044 ], [ -123.93519817399995, 49.166234682000052 ], [ -123.935389993999962, 49.166422272000055 ], [ -123.935630298999953, 49.166657269000098 ], [ -123.935848346999961, 49.166992832000084 ], [ -123.936146850999975, 49.16746141800008 ], [ -123.936465062999957, 49.167912923000053 ], [ -123.936475604999956, 49.167927899000041 ], [ -123.93667461299999, 49.16823060200003 ], [ -123.937678551999952, 49.169787946000021 ], [ -123.937848854999956, 49.170119891000162 ], [ -123.937981496999939, 49.170218765000072 ], [ -123.938176866999953, 49.170263941000016 ], [ -123.939515562999972, 49.170207609000038 ], [ -123.940063348999942, 49.170187278000071 ], [ -123.940222790999911, 49.170181350000071 ], [ -123.940748253999971, 49.170161839000066 ], [ -123.94075033299994, 49.170170747000093 ], [ -123.940848090999907, 49.170600503000088 ], [ -123.941313920999917, 49.171252360000047 ], [ -123.941551410999978, 49.171533079000042 ], [ -123.940425123999958, 49.171855636000075 ], [ -123.939846232999955, 49.17186035000001 ], [ -123.939849265999925, 49.172020550000084 ], [ -123.939455211, 49.172133396000085 ], [ -123.939028295999918, 49.172136870000024 ], [ -123.939030529999982, 49.172255012000051 ], [ -123.93848528399991, 49.172411149 ], [ -123.937432026999957, 49.172419705000067 ], [ -123.937040197000016, 49.171818610000052 ], [ -123.93659550299999, 49.171525213000116 ], [ -123.936616288999929, 49.171166297000042 ], [ -123.936291216000015, 49.170700494000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104452084", "BldgCostT": "70563334", "sL_LossRatio": "0.857603500295493", "sL_AssetLoss": "424375.6", "sL_BldgLoss": "363946", "sL_StrLoss": "256870", "sL_NStrLoss": "107076", "sL_ContLoss": "60429.6", "geom_point": "0101000020E6100000CB61A4D5D8FA5EC0416150A6D1964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.916139224999952, 49.183411605000103 ], [ -123.915686096999963, 49.183297710000062 ], [ -123.915266493999965, 49.182958713000112 ], [ -123.915347887999957, 49.182832007000044 ], [ -123.9158521, 49.182685298000067 ], [ -123.915892398999972, 49.18261260600012 ], [ -123.915904285999943, 49.182512898000063 ], [ -123.915441508999933, 49.181977404000115 ], [ -123.914306180999958, 49.181456203000067 ], [ -123.914792905999974, 49.181074503000062 ], [ -123.9153007099999, 49.181007491000059 ], [ -123.915445505999969, 49.180699898000107 ], [ -123.915250983999954, 49.180603104000056 ], [ -123.91402720899994, 49.180413702000095 ], [ -123.913819607999983, 49.180316789000059 ], [ -123.913858695999977, 49.180254108000064 ], [ -123.91446120099999, 49.180150198000078 ], [ -123.914579381999971, 49.179933694000091 ], [ -123.914549794999971, 49.179771300000027 ], [ -123.913992181000012, 49.179308495000022 ], [ -123.913947191999938, 49.179118996000071 ], [ -123.914621513999975, 49.178493792000076 ], [ -123.915017805999923, 49.178372810000035 ], [ -123.915498323999941, 49.178378500000044 ], [ -123.915824418999989, 49.178250299000126 ], [ -123.916187322, 49.177797405000085 ], [ -123.91635149399994, 49.177004114000027 ], [ -123.916267893999958, 49.176249305000042 ], [ -123.915287711999952, 49.174430591000068 ], [ -123.915093392999935, 49.174235393000082 ], [ -123.915025482, 49.173597402000091 ], [ -123.915214610999925, 49.173370896000087 ], [ -123.915196097999981, 49.173173006000098 ], [ -123.915943815, 49.172752794000104 ], [ -123.916361192999972, 49.172299895000016 ], [ -123.916573001999964, 49.171911092000087 ], [ -123.917155497999957, 49.17152939400011 ], [ -123.917781507999933, 49.17055240300008 ], [ -123.918027506, 49.17041570300011 ], [ -123.918440182999973, 49.170519703000103 ], [ -123.918803006999937, 49.170823005000031 ], [ -123.91938991399995, 49.170629302000087 ], [ -123.919186606999943, 49.170865799000133 ], [ -123.919453211999922, 49.171114996000071 ], [ -123.919587195999924, 49.171688892000084 ], [ -123.918885594999921, 49.172324104000104 ], [ -123.918512183999923, 49.172893791000092 ], [ -123.918516288999967, 49.173137407000063 ], [ -123.918768403999948, 49.173432188000071 ], [ -123.918988481999975, 49.173447799000037 ], [ -123.919093787999913, 49.173195803000077 ], [ -123.919410715999959, 49.173346700000103 ], [ -123.919748615999978, 49.173702794000107 ], [ -123.919814011999904, 49.17428670200006 ], [ -123.920152489999936, 49.174806493000084 ], [ -123.920597392000033, 49.175189700000047 ], [ -123.920791506999961, 49.175232401000052 ], [ -123.921133111999907, 49.175131296000096 ], [ -123.921340487999913, 49.17520099500009 ], [ -123.921383281999937, 49.175327791000029 ], [ -123.921047005999938, 49.175662508000038 ], [ -123.921110180999932, 49.176183698000024 ], [ -123.921193006999928, 49.176183787000127 ], [ -123.921325608, 49.175921710000054 ], [ -123.921933699999926, 49.17537618700004 ], [ -123.921856900999956, 49.175008795000096 ], [ -123.922006112999966, 49.174117205000115 ], [ -123.922139502, 49.173963406000013 ], [ -123.922319395999963, 49.174078795000064 ], [ -123.922179408999966, 49.174628496000018 ], [ -123.922373883999924, 49.174787996000063 ], [ -123.922606985999934, 49.175470196000106 ], [ -123.922038506999982, 49.1758618940001 ], [ -123.921655991999927, 49.1759545110001 ], [ -123.921439295999917, 49.176101114000076 ], [ -123.921257410999914, 49.176694993000048 ], [ -123.921598009999983, 49.177313087000059 ], [ -123.92172139199999, 49.177330190000085 ], [ -123.922333789999982, 49.176992700000056 ], [ -123.922909589999975, 49.177042490000105 ], [ -123.923347983, 49.176967099000073 ], [ -123.923382695999976, 49.176606708000129 ], [ -123.923503384999918, 49.17644440400003 ], [ -123.923844204999966, 49.176297688000076 ], [ -123.924090598999939, 49.176277795000011 ], [ -123.924222515999986, 49.175997194000047 ], [ -123.924548213999984, 49.175877490000111 ], [ -123.924797585999968, 49.175965793000039 ], [ -123.924952803999943, 49.17620801200006 ], [ -123.925340299999917, 49.176420204000088 ], [ -123.925802877999928, 49.176865898000131 ], [ -123.926105588999945, 49.177646405000083 ], [ -123.92620039799999, 49.177636403000101 ], [ -123.926279708999957, 49.17741139800011 ], [ -123.926524995999955, 49.177318798000087 ], [ -123.926417011, 49.178156304000041 ], [ -123.926054318999917, 49.178609200000039 ], [ -123.925495495999925, 49.178838506000027 ], [ -123.92521509, 49.179237302000026 ], [ -123.924671606999979, 49.179529195000093 ], [ -123.92450020699998, 49.17994371100005 ], [ -123.92394442199999, 49.18028120400006 ], [ -123.923950391999981, 49.180595889000102 ], [ -123.924187396999983, 49.180765390000026 ], [ -123.924164007999963, 49.181007488000077 ], [ -123.924445506999959, 49.181347892000119 ], [ -123.924128889999949, 49.182015902000096 ], [ -123.923847011999925, 49.182350600000092 ], [ -123.923788114, 49.182927399000064 ], [ -123.923491116999969, 49.183163805000085 ], [ -123.923254276999927, 49.183021393000054 ], [ -123.922650704999967, 49.182990011000101 ], [ -123.922592196999986, 49.182856205000064 ], [ -123.923190519999977, 49.182508698000078 ], [ -123.923349302999952, 49.182148307000041 ], [ -123.923195087999929, 49.182041498000068 ], [ -123.922701500999977, 49.182035800000037 ], [ -123.922073584999907, 49.18222099200004 ], [ -123.92164208699991, 49.182683807000053 ], [ -123.921577495999955, 49.182890414000028 ], [ -123.921100996999897, 49.183002889000065 ], [ -123.920832796999946, 49.18335611100008 ], [ -123.920615203999972, 49.18349280800004 ], [ -123.919406104999894, 49.183457190000048 ], [ -123.91880589, 49.183623792000105 ], [ -123.918299780999973, 49.183636594000092 ], [ -123.916139224999952, 49.183411605000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1055197748", "BldgCostT": "655484330", "sL_LossRatio": "0.720428209077717", "sL_AssetLoss": "5380736", "sL_BldgLoss": "3876434", "sL_StrLoss": "1608035", "sL_NStrLoss": "2268399", "sL_ContLoss": "1504302", "geom_point": "0101000020E61000005973918C66FC5EC090BDBF8397954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.94403369199992, 49.172374004000076 ], [ -123.942630285999954, 49.1714141080001 ], [ -123.942175610999954, 49.171354304000047 ], [ -123.941734174999951, 49.171480733000095 ], [ -123.941551410999978, 49.171533079000042 ], [ -123.941313920999917, 49.171252360000047 ], [ -123.940848090999907, 49.170600503000088 ], [ -123.94075033299994, 49.170170747000093 ], [ -123.940748253999971, 49.170161839000066 ], [ -123.94040150699999, 49.168645087000094 ], [ -123.940277908999988, 49.168311305000017 ], [ -123.94027521799994, 49.168307787000039 ], [ -123.939469284999944, 49.16726210400001 ], [ -123.939627521999938, 49.167247097000036 ], [ -123.940068683999925, 49.167867897000093 ], [ -123.940211101999978, 49.167839088000086 ], [ -123.940267486999957, 49.167773497000034 ], [ -123.940149317999953, 49.167192202000066 ], [ -123.939792604, 49.165902204000098 ], [ -123.940009106999952, 49.165873010000034 ], [ -123.940835169999929, 49.165666892000054 ], [ -123.940939742999916, 49.165640795000044 ], [ -123.940365291999925, 49.165347589000113 ], [ -123.939200811999982, 49.16419788100005 ], [ -123.939822506999946, 49.163927983000129 ], [ -123.93993299099999, 49.163878695000115 ], [ -123.941113596999912, 49.163365502000097 ], [ -123.941930944999939, 49.163011504000124 ], [ -123.94227449899995, 49.162862707000066 ], [ -123.942692012999927, 49.163284186000048 ], [ -123.943720722999927, 49.164322664000053 ], [ -123.944218489999955, 49.164825096000058 ], [ -123.944328711999901, 49.165277498000044 ], [ -123.94442348099993, 49.165672802000088 ], [ -123.944707593999965, 49.166719206000046 ], [ -123.945013216999911, 49.168176695000085 ], [ -123.945287767999986, 49.169318427000043 ], [ -123.945524846999973, 49.170304390000062 ], [ -123.947013315000021, 49.170351990000057 ], [ -123.947025921999924, 49.170352389000072 ], [ -123.947128784, 49.170355682000057 ], [ -123.947326528999923, 49.170408967000057 ], [ -123.948601987999908, 49.170450392000099 ], [ -123.949449307999885, 49.170503444000062 ], [ -123.950188181999948, 49.170593159000084 ], [ -123.950235059999912, 49.171126192000052 ], [ -123.950361582999946, 49.172564907000044 ], [ -123.950362075999948, 49.172753105000041 ], [ -123.950362856999959, 49.17305031900009 ], [ -123.950363397999965, 49.173264692000032 ], [ -123.950182319999968, 49.173195801000169 ], [ -123.948857983999972, 49.172073498000024 ], [ -123.948440285999951, 49.171846846000086 ], [ -123.948220204999942, 49.171727411000163 ], [ -123.947161075999958, 49.17166775099999 ], [ -123.947107010999943, 49.171664708000044 ], [ -123.947101213999943, 49.171666864000073 ], [ -123.946807913999962, 49.17177580500006 ], [ -123.94685866399999, 49.17196222300003 ], [ -123.94693978299992, 49.172260097000034 ], [ -123.947158830999939, 49.172528697000125 ], [ -123.947376490999943, 49.17279559700011 ], [ -123.94744999299999, 49.173047603000043 ], [ -123.946518382999926, 49.173909292000104 ], [ -123.945891706999987, 49.173429288000101 ], [ -123.945089504999913, 49.172994897000052 ], [ -123.944137349999892, 49.172663191000034 ], [ -123.943928686999953, 49.172590503000094 ], [ -123.944090003999989, 49.172445210000085 ], [ -123.94403369199992, 49.172374004000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1507935568", "BldgCostT": "979825228", "sL_LossRatio": "0.740401202176645", "sL_AssetLoss": "7899937.2", "sL_BldgLoss": "5849123", "sL_StrLoss": "2427276", "sL_NStrLoss": "3421847", "sL_ContLoss": "2050814.2", "geom_point": "0101000020E6100000D2CA05BAF8FB5EC0721B6D2C13954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.936146850999975, 49.16746141800008 ], [ -123.935848346999961, 49.166992832000084 ], [ -123.935630298999953, 49.166657269000098 ], [ -123.935389993999962, 49.166422272000055 ], [ -123.93519817399995, 49.166234682000052 ], [ -123.934991640999954, 49.166075843000044 ], [ -123.934955696999964, 49.166048183000065 ], [ -123.934805392, 49.165976873000069 ], [ -123.934222375999965, 49.165804476000112 ], [ -123.933814694999967, 49.16572818800006 ], [ -123.93350567799996, 49.165743889000083 ], [ -123.933060991999952, 49.165883101000084 ], [ -123.932991364999964, 49.165883628000152 ], [ -123.932729317999957, 49.165885710000104 ], [ -123.932528622999953, 49.165836825000063 ], [ -123.932174829999937, 49.165657155000062 ], [ -123.931474508999941, 49.165227718000018 ], [ -123.931312878999947, 49.165070604000036 ], [ -123.931266274999956, 49.164973374000034 ], [ -123.931252704999963, 49.164945107000065 ], [ -123.931231584999964, 49.16480339600006 ], [ -123.931245180999909, 49.1647695300001 ], [ -123.931282511999925, 49.164676491000087 ], [ -123.93289251099999, 49.163137798000022 ], [ -123.933011994999944, 49.163165413000094 ], [ -123.933177314999938, 49.163203605000049 ], [ -123.933678596999982, 49.163177201000067 ], [ -123.934077537999926, 49.16309061500003 ], [ -123.934227882999892, 49.163058003000039 ], [ -123.934324412999942, 49.163036670000096 ], [ -123.934366298, 49.163027389000021 ], [ -123.934769509999967, 49.162989193000058 ], [ -123.934670591999975, 49.16284139400004 ], [ -123.934613202999941, 49.162651209000096 ], [ -123.93464041799993, 49.162408595000066 ], [ -123.934836988999933, 49.161313695000089 ], [ -123.93502168299996, 49.16030239100003 ], [ -123.935092294999947, 49.159884095000031 ], [ -123.935187784999954, 49.159338391000077 ], [ -123.937658894999942, 49.160034089000142 ], [ -123.940151590999974, 49.160735595000048 ], [ -123.939210513999981, 49.161473187000084 ], [ -123.941113596999912, 49.163365502000097 ], [ -123.93993299099999, 49.163878695000115 ], [ -123.939822506999946, 49.163927983000129 ], [ -123.939200811999982, 49.16419788100005 ], [ -123.940365291999925, 49.165347589000113 ], [ -123.940939742999916, 49.165640795000044 ], [ -123.940835169999929, 49.165666892000054 ], [ -123.940009106999952, 49.165873010000034 ], [ -123.939792604, 49.165902204000098 ], [ -123.940149317999953, 49.167192202000066 ], [ -123.940267486999957, 49.167773497000034 ], [ -123.940211101999978, 49.167839088000086 ], [ -123.940068683999925, 49.167867897000093 ], [ -123.939627521999938, 49.167247097000036 ], [ -123.939469284999944, 49.16726210400001 ], [ -123.94027521799994, 49.168307787000039 ], [ -123.940277908999988, 49.168311305000017 ], [ -123.94040150699999, 49.168645087000094 ], [ -123.940748253999971, 49.170161839000066 ], [ -123.940222790999911, 49.170181350000071 ], [ -123.940063348999942, 49.170187278000071 ], [ -123.939515562999972, 49.170207609000038 ], [ -123.938176866999953, 49.170263941000016 ], [ -123.937981496999939, 49.170218765000072 ], [ -123.937848854999956, 49.170119891000162 ], [ -123.937678551999952, 49.169787946000021 ], [ -123.93667461299999, 49.16823060200003 ], [ -123.936475604999956, 49.167927899000041 ], [ -123.936465062999957, 49.167912923000053 ], [ -123.936146850999975, 49.16746141800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "391415872", "BldgCostT": "263711380", "sL_LossRatio": "0.816023260226394", "sL_AssetLoss": "1723457", "sL_BldgLoss": "1406381", "sL_StrLoss": "718200", "sL_NStrLoss": "688181", "sL_ContLoss": "317076", "geom_point": "0101000020E610000082BBCC133CFC5EC02808ABD292944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.938578122999942, 49.158634765000031 ], [ -123.938861761999988, 49.158212027000111 ], [ -123.93900308799999, 49.158251662000055 ], [ -123.940054115999956, 49.158546838000142 ], [ -123.94171450099999, 49.15901310900005 ], [ -123.942161881999965, 49.159121600000034 ], [ -123.944789512999961, 49.161763505000053 ], [ -123.944171577999967, 49.162035324000044 ], [ -123.943531894, 49.16231668400011 ], [ -123.942809993999958, 49.162630169000138 ], [ -123.94227449899995, 49.162862707000066 ], [ -123.941930944999939, 49.163011504000124 ], [ -123.941113596999912, 49.163365502000097 ], [ -123.939210513999981, 49.161473187000084 ], [ -123.940151590999974, 49.160735595000048 ], [ -123.937658894999942, 49.160034089000142 ], [ -123.937946299999936, 49.159592232000072 ], [ -123.938172007999952, 49.159245191000061 ], [ -123.938257419999914, 49.159112695000076 ], [ -123.938562011999963, 49.158658769000077 ], [ -123.938578122999942, 49.158634765000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224262185", "BldgCostT": "138930859", "sL_LossRatio": "0.697113444845355", "sL_AssetLoss": "1908434", "sL_BldgLoss": "1330395", "sL_StrLoss": "601810", "sL_NStrLoss": "728585", "sL_ContLoss": "578039", "geom_point": "0101000020E61000008276B94E84FC5EC0A7D28172FC944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.945504460999956, 49.16146992100002 ], [ -123.946080411999972, 49.161233399000061 ], [ -123.946230215999947, 49.161384154000075 ], [ -123.946964243999915, 49.162122859000071 ], [ -123.947942008999959, 49.163106789000054 ], [ -123.948564808999976, 49.163743596000053 ], [ -123.947793883999935, 49.163935719000122 ], [ -123.947121094999957, 49.164103411000092 ], [ -123.947637577999984, 49.166314481000093 ], [ -123.947660483999982, 49.166412602 ], [ -123.946948392999971, 49.166486947000124 ], [ -123.946165379999954, 49.166568691000045 ], [ -123.944707593999965, 49.166719206000046 ], [ -123.94442348099993, 49.165672802000088 ], [ -123.944328711999901, 49.165277498000044 ], [ -123.944218489999955, 49.164825096000058 ], [ -123.943720722999927, 49.164322664000053 ], [ -123.942692012999927, 49.163284186000048 ], [ -123.94227449899995, 49.162862707000066 ], [ -123.942809993999958, 49.162630169000138 ], [ -123.943531894, 49.16231668400011 ], [ -123.944171577999967, 49.162035324000044 ], [ -123.944789512999961, 49.161763505000053 ], [ -123.945504460999956, 49.16146992100002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124855084", "BldgCostT": "78798334", "sL_LossRatio": "0.740317558978315", "sL_AssetLoss": "1068274", "sL_BldgLoss": "790862", "sL_StrLoss": "388122", "sL_NStrLoss": "402740", "sL_ContLoss": "277412", "geom_point": "0101000020E61000009D51E2299AFC5EC02F7CD866BE944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.946230215999947, 49.161384154000075 ], [ -123.946080411999972, 49.161233399000061 ], [ -123.945504460999956, 49.16146992100002 ], [ -123.944789512999961, 49.161763505000053 ], [ -123.942161881999965, 49.159121600000034 ], [ -123.942526207999919, 49.158844893000058 ], [ -123.942603508999923, 49.158819498000106 ], [ -123.942655517999981, 49.158802405000053 ], [ -123.942797545999937, 49.158789608000127 ], [ -123.94347718, 49.15829159400009 ], [ -123.94432346399995, 49.157527626000068 ], [ -123.94437801199993, 49.157558294000111 ], [ -123.945231074999938, 49.1584057970001 ], [ -123.945308553999922, 49.158482222000053 ], [ -123.945812681999939, 49.158979701000106 ], [ -123.946217512999937, 49.159380029 ], [ -123.946423419, 49.159583670000089 ], [ -123.946643681999916, 49.159801496000071 ], [ -123.947384657999962, 49.16054927100005 ], [ -123.947511748999915, 49.160677503000045 ], [ -123.947873678999912, 49.161042775000126 ], [ -123.948073508999983, 49.161244391 ], [ -123.94920909399994, 49.162340311000087 ], [ -123.949259253000022, 49.162361177000044 ], [ -123.94958978299999, 49.162498891 ], [ -123.949748294999949, 49.162789113000066 ], [ -123.950086981999931, 49.163251194000075 ], [ -123.950138679999952, 49.163321597000099 ], [ -123.950571307999923, 49.165102007000051 ], [ -123.950810512999936, 49.166110610000047 ], [ -123.950015922999981, 49.166181226000106 ], [ -123.949166502999901, 49.166256704000013 ], [ -123.947660483999982, 49.166412602 ], [ -123.947637577999984, 49.166314481000093 ], [ -123.947121094999957, 49.164103411000092 ], [ -123.947793883999935, 49.163935719000122 ], [ -123.948564808999976, 49.163743596000053 ], [ -123.947942008999959, 49.163106789000054 ], [ -123.946964243999915, 49.162122859000071 ], [ -123.946230215999947, 49.161384154000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175809144", "BldgCostT": "119066523", "sL_LossRatio": "0.803171788921269", "sL_AssetLoss": "1346659.6", "sL_BldgLoss": "1081599", "sL_StrLoss": "537225", "sL_NStrLoss": "544374", "sL_ContLoss": "265060.6", "geom_point": "0101000020E61000001E747DDDB1FC5EC0BF0743788F954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.950189541999961, 49.170490889000106 ], [ -123.950176352999932, 49.170488469000063 ], [ -123.950184329999942, 49.170559168000061 ], [ -123.950188181999948, 49.170593159000084 ], [ -123.949449307999885, 49.170503444000062 ], [ -123.948601987999908, 49.170450392000099 ], [ -123.947326528999923, 49.170408967000057 ], [ -123.947128784, 49.170355682000057 ], [ -123.947025921999924, 49.170352389000072 ], [ -123.947013315000021, 49.170351990000057 ], [ -123.945524846999973, 49.170304390000062 ], [ -123.945287767999986, 49.169318427000043 ], [ -123.945013216999911, 49.168176695000085 ], [ -123.944707593999965, 49.166719206000046 ], [ -123.946165379999954, 49.166568691000045 ], [ -123.946948392999971, 49.166486947000124 ], [ -123.947660483999982, 49.166412602 ], [ -123.949166502999901, 49.166256704000013 ], [ -123.950015922999981, 49.166181226000106 ], [ -123.950810512999936, 49.166110610000047 ], [ -123.950912607999939, 49.16653129600008 ], [ -123.951155196999963, 49.16755709800011 ], [ -123.95137670299998, 49.1685005060001 ], [ -123.951661821999934, 49.169737594000026 ], [ -123.951817398999964, 49.170412525000032 ], [ -123.951800927999955, 49.17078593200003 ], [ -123.950189541999961, 49.170490889000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75417645", "BldgCostT": "47686524", "sL_LossRatio": "0.746799232907443", "sL_AssetLoss": "531357", "sL_BldgLoss": "396817", "sL_StrLoss": "212730", "sL_NStrLoss": "184087", "sL_ContLoss": "134540", "geom_point": "0101000020E610000082148612F7FC5EC0581FF6DFD6944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.950571307999923, 49.165102007000051 ], [ -123.950138679999952, 49.163321597000099 ], [ -123.950086981999931, 49.163251194000075 ], [ -123.949748294999949, 49.162789113000066 ], [ -123.94958978299999, 49.162498891 ], [ -123.949530920999962, 49.16219188500002 ], [ -123.949508512999941, 49.162074996000094 ], [ -123.949510800999974, 49.161389939000109 ], [ -123.949511272, 49.161255018000112 ], [ -123.949512703, 49.160830491000105 ], [ -123.950248103999954, 49.160834952000179 ], [ -123.951033190999979, 49.160839711000037 ], [ -123.95174357799999, 49.160843644000067 ], [ -123.952368807999946, 49.160847102000041 ], [ -123.955279590999965, 49.160864591000042 ], [ -123.95524450799995, 49.161725708000063 ], [ -123.955243579999916, 49.161864530000081 ], [ -123.955237599999975, 49.162756604000023 ], [ -123.955231934999972, 49.163752286000062 ], [ -123.955231898999955, 49.163753943000124 ], [ -123.955230124999943, 49.164059719000058 ], [ -123.95522940099994, 49.164188308000057 ], [ -123.955228591999955, 49.164611492000105 ], [ -123.955227877999988, 49.165095897000086 ], [ -123.954439509999929, 49.1651071000001 ], [ -123.953786341999916, 49.165116506000061 ], [ -123.953551013999956, 49.165119898000064 ], [ -123.953034389, 49.165119095000115 ], [ -123.953015258999955, 49.165002923000031 ], [ -123.952969564999975, 49.16472526200004 ], [ -123.952950108, 49.164606890000059 ], [ -123.952465404999955, 49.164254604000114 ], [ -123.951159851999961, 49.165105856000039 ], [ -123.950571307999923, 49.165102007000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130536999", "BldgCostT": "82899999", "sL_LossRatio": "0.732254472035659", "sL_AssetLoss": "1137681", "sL_BldgLoss": "833072", "sL_StrLoss": "408797", "sL_NStrLoss": "424275", "sL_ContLoss": "304609", "geom_point": "0101000020E610000015A649A5EFFC5EC0FF0CA9816A944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.953338016999936, 49.15750480700008 ], [ -123.955332509999948, 49.156296394000108 ], [ -123.955335868999924, 49.157051372000126 ], [ -123.955340095999944, 49.157994001000091 ], [ -123.955329689999971, 49.158481876000053 ], [ -123.955319489999951, 49.158960691000054 ], [ -123.95530406099999, 49.15944430800009 ], [ -123.955302086999978, 49.159507217000019 ], [ -123.955292887, 49.159795123000087 ], [ -123.955287004999946, 49.159979491000065 ], [ -123.955283337999958, 49.160415919000108 ], [ -123.955279590999965, 49.160864591000042 ], [ -123.952368807999946, 49.160847102000041 ], [ -123.95174357799999, 49.160843644000067 ], [ -123.951033190999979, 49.160839711000037 ], [ -123.950248103999954, 49.160834952000179 ], [ -123.949512703, 49.160830491000105 ], [ -123.949511272, 49.161255018000112 ], [ -123.949510800999974, 49.161389939000109 ], [ -123.949508512999941, 49.162074996000094 ], [ -123.949530920999962, 49.16219188500002 ], [ -123.94958978299999, 49.162498891 ], [ -123.949259253000022, 49.162361177000044 ], [ -123.94920909399994, 49.162340311000087 ], [ -123.948073508999983, 49.161244391 ], [ -123.948216909999971, 49.160914791000046 ], [ -123.948199202999945, 49.160609219 ], [ -123.948153103, 49.15981228600004 ], [ -123.94815677899993, 49.159368338000093 ], [ -123.948160388999923, 49.158932606000064 ], [ -123.949520802000023, 49.158936909000033 ], [ -123.950975687999971, 49.158941197000104 ], [ -123.952683121999911, 49.157908410000047 ], [ -123.953338016999936, 49.15750480700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121395894", "BldgCostT": "74996523", "sL_LossRatio": "0.751899975808275", "sL_AssetLoss": "756457", "sL_BldgLoss": "568780", "sL_StrLoss": "304426", "sL_NStrLoss": "264354", "sL_ContLoss": "187677", "geom_point": "0101000020E6100000BE795F6C0CFD5EC00167C62E13944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.949543053999946, 49.15698201600005 ], [ -123.949560914999921, 49.155136605000031 ], [ -123.951071995999939, 49.155137499000084 ], [ -123.952441702999963, 49.155143695000085 ], [ -123.953827904000022, 49.15515021300007 ], [ -123.955361994999976, 49.155156889000068 ], [ -123.957212493999975, 49.155164995000064 ], [ -123.957573225999951, 49.155166928 ], [ -123.958272720999958, 49.155170701000031 ], [ -123.958223079999954, 49.157081502000096 ], [ -123.958180896999977, 49.158978101000095 ], [ -123.957481705999982, 49.158974019 ], [ -123.956739921999912, 49.158969706000093 ], [ -123.956031781999954, 49.158965301000116 ], [ -123.955319489999951, 49.158960691000054 ], [ -123.955329689999971, 49.158481876000053 ], [ -123.955340095999944, 49.157994001000091 ], [ -123.955335868999924, 49.157051372000126 ], [ -123.955332509999948, 49.156296394000108 ], [ -123.953338016999936, 49.15750480700008 ], [ -123.952683121999911, 49.157908410000047 ], [ -123.950975687999971, 49.158941197000104 ], [ -123.949520802000023, 49.158936909000033 ], [ -123.94952649899993, 49.157501601000092 ], [ -123.949542396999931, 49.157047089000038 ], [ -123.949543053999946, 49.15698201600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71488167", "BldgCostT": "45146667", "sL_LossRatio": "0.754127428614676", "sL_AssetLoss": "554946", "sL_BldgLoss": "418500", "sL_StrLoss": "212040", "sL_NStrLoss": "206460", "sL_ContLoss": "136446", "geom_point": "0101000020E61000002157985BADFC5EC0A50E138919944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.946624089999958, 49.157048309000075 ], [ -123.946629931999922, 49.156573990000027 ], [ -123.946642252999979, 49.155566426000064 ], [ -123.946647820999885, 49.155116200000094 ], [ -123.94803789299999, 49.155125596000062 ], [ -123.948904449999986, 49.155131873000094 ], [ -123.949560914999921, 49.155136605000031 ], [ -123.949543053999946, 49.15698201600005 ], [ -123.949542396999931, 49.157047089000038 ], [ -123.94952649899993, 49.157501601000092 ], [ -123.949520802000023, 49.158936909000033 ], [ -123.948160388999923, 49.158932606000064 ], [ -123.946600107, 49.158927202000044 ], [ -123.946605768999987, 49.158481338000094 ], [ -123.946618781, 49.157464799000053 ], [ -123.946624089999958, 49.157048309000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253642319", "BldgCostT": "169636980", "sL_LossRatio": "0.776143903539133", "sL_AssetLoss": "2711483", "sL_BldgLoss": "2104501", "sL_StrLoss": "904462", "sL_NStrLoss": "1200039", "sL_ContLoss": "606982", "geom_point": "0101000020E6100000C9F076EF6EFC5EC0CA23036914944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.945812681999939, 49.158979701000106 ], [ -123.945308553999922, 49.158482222000053 ], [ -123.945231074999938, 49.1584057970001 ], [ -123.94437801199993, 49.157558294000111 ], [ -123.94432346399995, 49.157527626000068 ], [ -123.944310249999916, 49.157520224000038 ], [ -123.943900705999908, 49.15728991100012 ], [ -123.943806111999962, 49.157167391000016 ], [ -123.943764289999947, 49.157028793000087 ], [ -123.94316854099992, 49.157017477000117 ], [ -123.943038695999917, 49.157015003000019 ], [ -123.942526054999945, 49.156885811000038 ], [ -123.940122881999926, 49.156280231000089 ], [ -123.93996981399999, 49.156241531000049 ], [ -123.939530188999981, 49.156130502000039 ], [ -123.938865486999987, 49.15596258500004 ], [ -123.93897752399999, 49.155089557000103 ], [ -123.939832915999929, 49.15509499500012 ], [ -123.940126535000019, 49.155096502000049 ], [ -123.940538282, 49.155098587000062 ], [ -123.941257314999959, 49.155103308000029 ], [ -123.941580406999947, 49.155105417000065 ], [ -123.941950563999981, 49.155107814000125 ], [ -123.942046856999951, 49.155108455000075 ], [ -123.942147041999974, 49.155109097000057 ], [ -123.942512988999979, 49.15511148700007 ], [ -123.94288279700001, 49.155113889000098 ], [ -123.943759592999953, 49.155119617000054 ], [ -123.945271099999928, 49.155112489000125 ], [ -123.946647820999885, 49.155116200000094 ], [ -123.946642252999979, 49.155566426000064 ], [ -123.946629931999922, 49.156573990000027 ], [ -123.946624089999958, 49.157048309000075 ], [ -123.946618781, 49.157464799000053 ], [ -123.946605768999987, 49.158481338000094 ], [ -123.946600107, 49.158927202000044 ], [ -123.948160388999923, 49.158932606000064 ], [ -123.94815677899993, 49.159368338000093 ], [ -123.948153103, 49.15981228600004 ], [ -123.948199202999945, 49.160609219 ], [ -123.948216909999971, 49.160914791000046 ], [ -123.948073508999983, 49.161244391 ], [ -123.947873678999912, 49.161042775000126 ], [ -123.947511748999915, 49.160677503000045 ], [ -123.947384657999962, 49.16054927100005 ], [ -123.946643681999916, 49.159801496000071 ], [ -123.946423419, 49.159583670000089 ], [ -123.946217512999937, 49.159380029 ], [ -123.945812681999939, 49.158979701000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161376664", "BldgCostT": "95423724", "sL_LossRatio": "0.680332659305491", "sL_AssetLoss": "1599835", "sL_BldgLoss": "1088420", "sL_StrLoss": "468120", "sL_NStrLoss": "620300", "sL_ContLoss": "511415", "geom_point": "0101000020E6100000A515947916FC5EC0B9F2796229944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.935377417999987, 49.158307392000033 ], [ -123.93555520699999, 49.157335230000115 ], [ -123.935576400999977, 49.157219251000129 ], [ -123.935645963999917, 49.15683888800001 ], [ -123.935693774999976, 49.156577461000033 ], [ -123.935753693999985, 49.15624970600004 ], [ -123.935858411999931, 49.155675677000048 ], [ -123.935952906999944, 49.155157608000088 ], [ -123.93663214899999, 49.155298693000084 ], [ -123.93664520899992, 49.155301394000048 ], [ -123.937280026999986, 49.155507202000081 ], [ -123.9372969, 49.155189590000077 ], [ -123.937545517999979, 49.155082701000062 ], [ -123.938096529999925, 49.155085128000046 ], [ -123.93870290400001, 49.155087804000061 ], [ -123.93896058899999, 49.15508943300005 ], [ -123.93897752399999, 49.155089557000103 ], [ -123.938865486999987, 49.15596258500004 ], [ -123.939530188999981, 49.156130502000039 ], [ -123.93996981399999, 49.156241531000049 ], [ -123.940122881999926, 49.156280231000089 ], [ -123.942526054999945, 49.156885811000038 ], [ -123.943038695999917, 49.157015003000019 ], [ -123.94316854099992, 49.157017477000117 ], [ -123.943764289999947, 49.157028793000087 ], [ -123.943806111999962, 49.157167391000016 ], [ -123.943900705999908, 49.15728991100012 ], [ -123.944310249999916, 49.157520224000038 ], [ -123.94432346399995, 49.157527626000068 ], [ -123.94347718, 49.15829159400009 ], [ -123.942797545999937, 49.158789608000127 ], [ -123.942655517999981, 49.158802405000053 ], [ -123.942603508999923, 49.158819498000106 ], [ -123.942526207999919, 49.158844893000058 ], [ -123.942161881999965, 49.159121600000034 ], [ -123.94171450099999, 49.15901310900005 ], [ -123.940054115999956, 49.158546838000142 ], [ -123.93900308799999, 49.158251662000055 ], [ -123.938861761999988, 49.158212027000111 ], [ -123.938578122999942, 49.158634765000031 ], [ -123.938562011999963, 49.158658769000077 ], [ -123.938257419999914, 49.159112695000076 ], [ -123.938172007999952, 49.159245191000061 ], [ -123.937946299999936, 49.159592232000072 ], [ -123.937658894999942, 49.160034089000142 ], [ -123.935187784999954, 49.159338391000077 ], [ -123.935253086999964, 49.158983497000101 ], [ -123.935377417999987, 49.158307392000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302279249", "BldgCostT": "193207659", "sL_LossRatio": "0.73740158794153", "sL_AssetLoss": "2217462", "sL_BldgLoss": "1635160", "sL_StrLoss": "720730", "sL_NStrLoss": "914430", "sL_ContLoss": "582302", "geom_point": "0101000020E61000003E3DF010CAFB5EC0C10F4A6FEA934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.934009206000027, 49.157956903000112 ], [ -123.933460305999915, 49.157914009000081 ], [ -123.933430755999908, 49.157914749 ], [ -123.93267570799999, 49.157933995000086 ], [ -123.931313719999977, 49.157968203000046 ], [ -123.929924779999979, 49.157990095000024 ], [ -123.92983478399999, 49.156163996000011 ], [ -123.931217005999954, 49.156138290000072 ], [ -123.931172682999943, 49.155285499000051 ], [ -123.932539478999971, 49.155264992000106 ], [ -123.932496198999928, 49.15439059300008 ], [ -123.932444400999955, 49.153397294000122 ], [ -123.933778701999969, 49.153368807000071 ], [ -123.933874677999967, 49.153366693000066 ], [ -123.933888393999922, 49.153366398000109 ], [ -123.934607085999986, 49.153351110000116 ], [ -123.934840037999919, 49.153346135000049 ], [ -123.935245911000024, 49.153337503000039 ], [ -123.936285413999926, 49.153315201000119 ], [ -123.937046774999956, 49.153298691000089 ], [ -123.937696392999953, 49.153284597000088 ], [ -123.938390282999976, 49.153269918000049 ], [ -123.939037484999972, 49.15325619000005 ], [ -123.938903115999963, 49.153991937000043 ], [ -123.93870290400001, 49.155087804000061 ], [ -123.938096529999925, 49.155085128000046 ], [ -123.937545517999979, 49.155082701000062 ], [ -123.9372969, 49.155189590000077 ], [ -123.937280026999986, 49.155507202000081 ], [ -123.93664520899992, 49.155301394000048 ], [ -123.93663214899999, 49.155298693000084 ], [ -123.935952906999944, 49.155157608000088 ], [ -123.935858411999931, 49.155675677000048 ], [ -123.935753693999985, 49.15624970600004 ], [ -123.935693774999976, 49.156577461000033 ], [ -123.935645963999917, 49.15683888800001 ], [ -123.935576400999977, 49.157219251000129 ], [ -123.93555520699999, 49.157335230000115 ], [ -123.935377417999987, 49.158307392000033 ], [ -123.934778873999903, 49.158141219000044 ], [ -123.934255498999931, 49.157995907000029 ], [ -123.93411529299999, 49.157974299000074 ], [ -123.934061664999945, 49.157965519000172 ], [ -123.934009206000027, 49.157956903000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311181472", "BldgCostT": "184941040", "sL_LossRatio": "0.662623162972473", "sL_AssetLoss": "3413871", "sL_BldgLoss": "2262110", "sL_StrLoss": "896960", "sL_NStrLoss": "1365150", "sL_ContLoss": "1151761", "geom_point": "0101000020E6100000D471A19776FB5EC05FD582AC61944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.929911016999966, 49.164688997000049 ], [ -123.929798692999938, 49.164573615000101 ], [ -123.929154599999919, 49.164686088000046 ], [ -123.9291524, 49.164560790000088 ], [ -123.929407585999925, 49.164270191000057 ], [ -123.929197190999901, 49.163966895000051 ], [ -123.929259511999987, 49.163623608000059 ], [ -123.929021100999961, 49.163347303000108 ], [ -123.928594984999933, 49.163314606000057 ], [ -123.928573758999946, 49.163321326000158 ], [ -123.928573655999941, 49.163315845000021 ], [ -123.928162204, 49.163319153000096 ], [ -123.928164664999912, 49.163450832000095 ], [ -123.928158783999962, 49.163452694000107 ], [ -123.926147283999981, 49.162209397000062 ], [ -123.925721610999958, 49.161557089 ], [ -123.923961811999931, 49.162011406000062 ], [ -123.923441179999955, 49.162042793000111 ], [ -123.921312006000022, 49.158200305000129 ], [ -123.921432412999977, 49.158046408000075 ], [ -123.921710778999952, 49.157973511000101 ], [ -123.921890248999915, 49.1579720780001 ], [ -123.921889406999981, 49.157926731000046 ], [ -123.921965115999953, 49.157906905000104 ], [ -123.922363511999976, 49.15789550100002 ], [ -123.923031692000023, 49.157700413000029 ], [ -123.923415012999911, 49.1577160040001 ], [ -123.924737387999969, 49.157237504000129 ], [ -123.925501011999955, 49.157050905000048 ], [ -123.925663489999948, 49.156942693000097 ], [ -123.9255095, 49.15602550900006 ], [ -123.925639988999976, 49.155638089000099 ], [ -123.925885379999912, 49.155545502000045 ], [ -123.926981513999948, 49.155528403000112 ], [ -123.92736197100001, 49.155400247000081 ], [ -123.92884589599997, 49.155308563000126 ], [ -123.929056034999945, 49.155300146000116 ], [ -123.929183696, 49.155298347000077 ], [ -123.930345882, 49.155282 ], [ -123.930363675999942, 49.155280699000066 ], [ -123.930521700999947, 49.153438796000046 ], [ -123.930655184999964, 49.150656793000046 ], [ -123.930770513, 49.150683289000035 ], [ -123.931277683999923, 49.150676 ], [ -123.932305793, 49.15066059700009 ], [ -123.932444400999955, 49.153397294000122 ], [ -123.932496198999928, 49.15439059300008 ], [ -123.932539478999971, 49.155264992000106 ], [ -123.931172682999943, 49.155285499000051 ], [ -123.931217005999954, 49.156138290000072 ], [ -123.92983478399999, 49.156163996000011 ], [ -123.929924779999979, 49.157990095000024 ], [ -123.931313719999977, 49.157968203000046 ], [ -123.93267570799999, 49.157933995000086 ], [ -123.933430755999908, 49.157914749 ], [ -123.933460305999915, 49.157914009000081 ], [ -123.934009206000027, 49.157956903000112 ], [ -123.934061664999945, 49.157965519000172 ], [ -123.93411529299999, 49.157974299000074 ], [ -123.934255498999931, 49.157995907000029 ], [ -123.934778873999903, 49.158141219000044 ], [ -123.935377417999987, 49.158307392000033 ], [ -123.935253086999964, 49.158983497000101 ], [ -123.935187784999954, 49.159338391000077 ], [ -123.935092294999947, 49.159884095000031 ], [ -123.93502168299996, 49.16030239100003 ], [ -123.934836988999933, 49.161313695000089 ], [ -123.93464041799993, 49.162408595000066 ], [ -123.934613202999941, 49.162651209000096 ], [ -123.934670591999975, 49.16284139400004 ], [ -123.934769509999967, 49.162989193000058 ], [ -123.934366298, 49.163027389000021 ], [ -123.934324412999942, 49.163036670000096 ], [ -123.934227882999892, 49.163058003000039 ], [ -123.934077537999926, 49.16309061500003 ], [ -123.933678596999982, 49.163177201000067 ], [ -123.933177314999938, 49.163203605000049 ], [ -123.933011994999944, 49.163165413000094 ], [ -123.93289251099999, 49.163137798000022 ], [ -123.931282511999925, 49.164676491000087 ], [ -123.931245180999909, 49.1647695300001 ], [ -123.931231584999964, 49.16480339600006 ], [ -123.931252704999963, 49.164945107000065 ], [ -123.931266274999956, 49.164973374000034 ], [ -123.930015704999974, 49.165153487000111 ], [ -123.929694404999907, 49.165156433000099 ], [ -123.929873597, 49.164932501000067 ], [ -123.929911016999966, 49.164688997000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74779834", "BldgCostT": "49893334", "sL_LossRatio": "0.78416473894633", "sL_AssetLoss": "533013", "sL_BldgLoss": "417970", "sL_StrLoss": "238473", "sL_NStrLoss": "179497", "sL_ContLoss": "115043", "geom_point": "0101000020E6100000ED9138F176FB5EC023FEEE3E43934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.927391513999964, 49.15539029300006 ], [ -123.927562810999916, 49.155109699000093 ], [ -123.927852777999988, 49.155179499000077 ], [ -123.927935204999955, 49.155125401000127 ], [ -123.928292286999962, 49.154456008000111 ], [ -123.928176839999978, 49.153525490000035 ], [ -123.928065916999984, 49.152631594000056 ], [ -123.928248092999951, 49.152100400000037 ], [ -123.928302393999942, 49.151325601000075 ], [ -123.928011490999936, 49.150482508000032 ], [ -123.92745370199998, 49.149947000000104 ], [ -123.927226774999951, 49.14882469400002 ], [ -123.927272509999966, 49.148311993000036 ], [ -123.927507810999941, 49.14768960100006 ], [ -123.927495989999954, 49.147104196000058 ], [ -123.926906408999969, 49.147064386000103 ], [ -123.926487408999918, 49.146635710000076 ], [ -123.926579089999933, 49.146490396000011 ], [ -123.926797490999888, 49.146399306000035 ], [ -123.927103411999937, 49.146577303000043 ], [ -123.927280187999955, 49.146521704000087 ], [ -123.927207616999951, 49.146294806000057 ], [ -123.9309096369999, 49.146846630000056 ], [ -123.930847882999927, 49.147186212000122 ], [ -123.930839134999971, 49.147211571000184 ], [ -123.930792889999964, 49.147345502000078 ], [ -123.930754905999962, 49.147850980000051 ], [ -123.930732508999967, 49.148149401000097 ], [ -123.930624117999983, 49.150586803000053 ], [ -123.930655184999964, 49.150656793000046 ], [ -123.930521700999947, 49.153438796000046 ], [ -123.930363675999942, 49.155280699000066 ], [ -123.930345882, 49.155282 ], [ -123.929183696, 49.155298347000077 ], [ -123.929056034999945, 49.155300146000116 ], [ -123.92884589599997, 49.155308563000126 ], [ -123.92736197100001, 49.155400247000081 ], [ -123.927391513999964, 49.15539029300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191424040", "BldgCostT": "119098047", "sL_LossRatio": "0.713891228856636", "sL_AssetLoss": "1882742", "sL_BldgLoss": "1344073", "sL_StrLoss": "623043", "sL_NStrLoss": "721030", "sL_ContLoss": "538669", "geom_point": "0101000020E610000008826CFEC4FB5EC023A71BCD36934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.932444400999955, 49.153397294000122 ], [ -123.932305793, 49.15066059700009 ], [ -123.931277683999923, 49.150676 ], [ -123.930770513, 49.150683289000035 ], [ -123.930655184999964, 49.150656793000046 ], [ -123.930624117999983, 49.150586803000053 ], [ -123.930732508999967, 49.148149401000097 ], [ -123.931725917000023, 49.148140494000117 ], [ -123.93213709399997, 49.148136807000128 ], [ -123.932959682999964, 49.148133162000086 ], [ -123.933127708999933, 49.14813239000005 ], [ -123.933514631999955, 49.148175260000116 ], [ -123.933514028999966, 49.148163207000024 ], [ -123.933510875999929, 49.148153073000046 ], [ -123.933382298, 49.147736515000055 ], [ -123.933156678999936, 49.147233300000046 ], [ -123.932898418999955, 49.14688070600009 ], [ -123.932458006999966, 49.146403092000057 ], [ -123.931848082999963, 49.145856395000067 ], [ -123.93108190699995, 49.145221193000104 ], [ -123.930877459999962, 49.145085397000116 ], [ -123.93043919699997, 49.144794254000047 ], [ -123.928757697, 49.143677184000126 ], [ -123.928328807999918, 49.143312314000056 ], [ -123.928025102999982, 49.142996700000019 ], [ -123.92781082499999, 49.142641299000097 ], [ -123.927772191999949, 49.142523499000049 ], [ -123.92752930599994, 49.141795682000136 ], [ -123.927233104999956, 49.140603997000056 ], [ -123.92708812099994, 49.140358945000038 ], [ -123.927068290999898, 49.140325405000056 ], [ -123.927132145, 49.140181764000062 ], [ -123.927371500999939, 49.140602087000104 ], [ -123.927632291999927, 49.14179050100006 ], [ -123.927941897000011, 49.142619494000044 ], [ -123.928159221999962, 49.142966807000029 ], [ -123.928462695999968, 49.143287788000066 ], [ -123.928889295999966, 49.143642800000087 ], [ -123.930848641999944, 49.144961137000074 ], [ -123.931226015999982, 49.145214984000035 ], [ -123.931962582999944, 49.145837004000079 ], [ -123.932600902000019, 49.146422893000114 ], [ -123.932976289999942, 49.146822813000028 ], [ -123.933258224999975, 49.147199192000123 ], [ -123.933491190999959, 49.147719710000054 ], [ -123.933734088999969, 49.14749379100008 ], [ -123.933852015999918, 49.147552808000064 ], [ -123.934306592999945, 49.147553630000097 ], [ -123.934890306999961, 49.147554686 ], [ -123.936754897, 49.147486000000143 ], [ -123.936056683999936, 49.149471209000112 ], [ -123.936288704999967, 49.149465415000165 ], [ -123.936521915999933, 49.149459599000089 ], [ -123.936982894999971, 49.149448091000068 ], [ -123.936842446999918, 49.150226912000086 ], [ -123.936665185999956, 49.151209716000082 ], [ -123.936285413999926, 49.153315201000119 ], [ -123.935245911000024, 49.153337503000039 ], [ -123.934840037999919, 49.153346135000049 ], [ -123.934607085999986, 49.153351110000116 ], [ -123.933888393999922, 49.153366398000109 ], [ -123.933874677999967, 49.153366693000066 ], [ -123.933778701999969, 49.153368807000071 ], [ -123.932444400999955, 49.153397294000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141604250", "BldgCostT": "93560000", "sL_LossRatio": "0.749422747603212", "sL_AssetLoss": "1438279", "sL_BldgLoss": "1077879", "sL_StrLoss": "524239", "sL_NStrLoss": "553640", "sL_ContLoss": "360400", "geom_point": "0101000020E61000009288CF2119FC5EC02E9DACA457934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.938903115999963, 49.153991937000043 ], [ -123.939037484999972, 49.15325619000005 ], [ -123.938390282999976, 49.153269918000049 ], [ -123.937696392999953, 49.153284597000088 ], [ -123.937046774999956, 49.153298691000089 ], [ -123.936285413999926, 49.153315201000119 ], [ -123.936665185999956, 49.151209716000082 ], [ -123.936842446999918, 49.150226912000086 ], [ -123.936982894999971, 49.149448091000068 ], [ -123.936521915999933, 49.149459599000089 ], [ -123.936288704999967, 49.149465415000165 ], [ -123.936056683999936, 49.149471209000112 ], [ -123.936754897, 49.147486000000143 ], [ -123.937336894999973, 49.147489102000122 ], [ -123.937925779999929, 49.147491289000094 ], [ -123.938021310999943, 49.14749041400011 ], [ -123.93824865299996, 49.147488272000089 ], [ -123.93855338499999, 49.147485390000057 ], [ -123.939063073999989, 49.147484299000062 ], [ -123.939153919999981, 49.147846297000058 ], [ -123.939307786999976, 49.148175207000094 ], [ -123.939545109999969, 49.148508407000037 ], [ -123.939875111, 49.148820890000103 ], [ -123.940440595999974, 49.14924857000004 ], [ -123.94057759599994, 49.149352205000085 ], [ -123.940998196999928, 49.149565510000102 ], [ -123.941372719999961, 49.149864492000134 ], [ -123.941634188999956, 49.150145915000081 ], [ -123.941823483999954, 49.150419701000011 ], [ -123.941959714999896, 49.150747403000054 ], [ -123.942098099999924, 49.151365111000075 ], [ -123.942094986999948, 49.151713603000111 ], [ -123.942007394999948, 49.152237806000109 ], [ -123.94164620899997, 49.152970180000125 ], [ -123.941409965999952, 49.153325696000117 ], [ -123.941203000999934, 49.153637113000102 ], [ -123.941051185, 49.153797382000036 ], [ -123.94064828099999, 49.15422270100003 ], [ -123.939832915999929, 49.15509499500012 ], [ -123.93897752399999, 49.155089557000103 ], [ -123.93896058899999, 49.15508943300005 ], [ -123.93870290400001, 49.155087804000061 ], [ -123.938903115999963, 49.153991937000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190484166", "BldgCostT": "128916666", "sL_LossRatio": "0.80773954231039", "sL_AssetLoss": "1473007", "sL_BldgLoss": "1189806", "sL_StrLoss": "589818", "sL_NStrLoss": "599988", "sL_ContLoss": "283201", "geom_point": "0101000020E6100000E41F75225EFC5EC08176A8226C934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.942098099999924, 49.151365111000075 ], [ -123.941959714999896, 49.150747403000054 ], [ -123.941823483999954, 49.150419701000011 ], [ -123.941634188999956, 49.150145915000081 ], [ -123.941372719999961, 49.149864492000134 ], [ -123.940998196999928, 49.149565510000102 ], [ -123.94057759599994, 49.149352205000085 ], [ -123.940440595999974, 49.14924857000004 ], [ -123.939875111, 49.148820890000103 ], [ -123.939545109999969, 49.148508407000037 ], [ -123.939307786999976, 49.148175207000094 ], [ -123.939153919999981, 49.147846297000058 ], [ -123.939063073999989, 49.147484299000062 ], [ -123.939105824999928, 49.147484736000081 ], [ -123.939685990999948, 49.147490804000022 ], [ -123.93984350599996, 49.147491095000106 ], [ -123.940600608999915, 49.14749675700017 ], [ -123.941190810999942, 49.147501181000059 ], [ -123.942013083999967, 49.147507316000024 ], [ -123.943862614999972, 49.147521101000073 ], [ -123.943855428999939, 49.148428950000074 ], [ -123.943854985999963, 49.148482899000065 ], [ -123.943853943999926, 49.148617954000038 ], [ -123.943853256999901, 49.148701030000041 ], [ -123.943848791999969, 49.14926563800006 ], [ -123.943846801999939, 49.149520007000099 ], [ -123.943840373999947, 49.150291353000057 ], [ -123.943839285999914, 49.150426249000112 ], [ -123.943831900999925, 49.151314509000045 ], [ -123.944621980999926, 49.151315304000065 ], [ -123.945326384999959, 49.151315987000025 ], [ -123.946061796999928, 49.151316010000045 ], [ -123.946742883999946, 49.151315996000079 ], [ -123.946694084999976, 49.153228706000114 ], [ -123.946658837, 49.154666494000011 ], [ -123.946647820999885, 49.155116200000094 ], [ -123.945271099999928, 49.155112489000125 ], [ -123.943759592999953, 49.155119617000054 ], [ -123.94288279700001, 49.155113889000098 ], [ -123.942512988999979, 49.15511148700007 ], [ -123.942147041999974, 49.155109097000057 ], [ -123.942046856999951, 49.155108455000075 ], [ -123.941950563999981, 49.155107814000125 ], [ -123.941580406999947, 49.155105417000065 ], [ -123.941257314999959, 49.155103308000029 ], [ -123.940538282, 49.155098587000062 ], [ -123.940126535000019, 49.155096502000049 ], [ -123.939832915999929, 49.15509499500012 ], [ -123.94064828099999, 49.15422270100003 ], [ -123.941051185, 49.153797382000036 ], [ -123.941203000999934, 49.153637113000102 ], [ -123.941409965999952, 49.153325696000117 ], [ -123.94164620899997, 49.152970180000125 ], [ -123.942007394999948, 49.152237806000109 ], [ -123.942094986999948, 49.151713603000111 ], [ -123.942098099999924, 49.151365111000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99889335", "BldgCostT": "63523335", "sL_LossRatio": "0.742891501485788", "sL_AssetLoss": "833228", "sL_BldgLoss": "618998", "sL_StrLoss": "288079", "sL_NStrLoss": "330919", "sL_ContLoss": "214230", "geom_point": "0101000020E6100000A328138E8BFC5EC0831EB5B212934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.943846801999939, 49.149520007000099 ], [ -123.943848791999969, 49.14926563800006 ], [ -123.943853256999901, 49.148701030000041 ], [ -123.943853943999926, 49.148617954000038 ], [ -123.943854985999963, 49.148482899000065 ], [ -123.943855428999939, 49.148428950000074 ], [ -123.943862614999972, 49.147521101000073 ], [ -123.943867507, 49.146917584000029 ], [ -123.943869530999947, 49.146665760000118 ], [ -123.943870772999958, 49.146513546000079 ], [ -123.943870838999956, 49.146503892000077 ], [ -123.943871487999928, 49.146426674000089 ], [ -123.943872314, 49.146324025000062 ], [ -123.943877996999944, 49.145622190000061 ], [ -123.946306213999961, 49.145628901000038 ], [ -123.946272559999898, 49.146077596000076 ], [ -123.946239617999979, 49.146517405000125 ], [ -123.94639503799999, 49.146518177000061 ], [ -123.946749082999972, 49.14651990100009 ], [ -123.946736091999981, 49.147065174000076 ], [ -123.946724899999978, 49.147533488000121 ], [ -123.946705698999963, 49.148278733000069 ], [ -123.946716498999962, 49.14843742500009 ], [ -123.946781592999969, 49.148515211000095 ], [ -123.947223096999963, 49.149373695000058 ], [ -123.947689902999983, 49.149411406000063 ], [ -123.949618495999943, 49.149414894000124 ], [ -123.949612764999955, 49.150108805000123 ], [ -123.949610811999918, 49.150345733000044 ], [ -123.949610695, 49.150360750000111 ], [ -123.949609499999923, 49.150504647000091 ], [ -123.949602704999947, 49.151328198000044 ], [ -123.948078490999976, 49.151317200000044 ], [ -123.947446900999978, 49.151316628000103 ], [ -123.946742883999946, 49.151315996000079 ], [ -123.946061796999928, 49.151316010000045 ], [ -123.945326384999959, 49.151315987000025 ], [ -123.944621980999926, 49.151315304000065 ], [ -123.943831900999925, 49.151314509000045 ], [ -123.943839285999914, 49.150426249000112 ], [ -123.943840373999947, 49.150291353000057 ], [ -123.943846801999939, 49.149520007000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153946418", "BldgCostT": "98271668", "sL_LossRatio": "0.74124562936444", "sL_AssetLoss": "1412266", "sL_BldgLoss": "1046836", "sL_StrLoss": "525026", "sL_NStrLoss": "521810", "sL_ContLoss": "365430", "geom_point": "0101000020E61000000378D2C2E5FC5EC0AEF73CFB21934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.949612764999955, 49.150108805000123 ], [ -123.949618495999943, 49.149414894000124 ], [ -123.947689902999983, 49.149411406000063 ], [ -123.947223096999963, 49.149373695000058 ], [ -123.946781592999969, 49.148515211000095 ], [ -123.946716498999962, 49.14843742500009 ], [ -123.946705698999963, 49.148278733000069 ], [ -123.946724899999978, 49.147533488000121 ], [ -123.946736091999981, 49.147065174000076 ], [ -123.946749082999972, 49.14651990100009 ], [ -123.947027118, 49.146521607000096 ], [ -123.949639995999959, 49.146534495000033 ], [ -123.94963615599994, 49.147040971000145 ], [ -123.949632314999974, 49.147548300000111 ], [ -123.952490497999946, 49.147562180000122 ], [ -123.954409775000016, 49.147571090000085 ], [ -123.955432156999962, 49.147575809000024 ], [ -123.955422300999928, 49.148734603000094 ], [ -123.955417098999945, 49.149540494000057 ], [ -123.955413404999931, 49.149926029000049 ], [ -123.955412138, 49.150061091000055 ], [ -123.955410071999935, 49.150277105000043 ], [ -123.955409910999904, 49.150291434000032 ], [ -123.95540936399999, 49.150349069000129 ], [ -123.955409096, 49.150376034000068 ], [ -123.95539961899999, 49.151370909000065 ], [ -123.955391971999973, 49.15222229900013 ], [ -123.952463182999978, 49.152320988000071 ], [ -123.949592998999975, 49.152326691000063 ], [ -123.94959767099995, 49.151845128000062 ], [ -123.949602704999947, 49.151328198000044 ], [ -123.949609499999923, 49.150504647000091 ], [ -123.949610695, 49.150360750000111 ], [ -123.949610811999918, 49.150345733000044 ], [ -123.949612764999955, 49.150108805000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174862385", "BldgCostT": "116337078", "sL_LossRatio": "0.74148271039384", "sL_AssetLoss": "1474354", "sL_BldgLoss": "1093208", "sL_StrLoss": "485770", "sL_NStrLoss": "607438", "sL_ContLoss": "381146", "geom_point": "0101000020E61000005D651150C2FC5EC003968EFFA3934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.946694084999976, 49.153228706000114 ], [ -123.946742883999946, 49.151315996000079 ], [ -123.947446900999978, 49.151316628000103 ], [ -123.948078490999976, 49.151317200000044 ], [ -123.949602704999947, 49.151328198000044 ], [ -123.94959767099995, 49.151845128000062 ], [ -123.949592998999975, 49.152326691000063 ], [ -123.952463182999978, 49.152320988000071 ], [ -123.952460114999909, 49.153233099000026 ], [ -123.952451363999927, 49.154142453000134 ], [ -123.952445885999964, 49.154709185000044 ], [ -123.952441702999963, 49.155143695000085 ], [ -123.951071995999939, 49.155137499000084 ], [ -123.949560914999921, 49.155136605000031 ], [ -123.948904449999986, 49.155131873000094 ], [ -123.94803789299999, 49.155125596000062 ], [ -123.946647820999885, 49.155116200000094 ], [ -123.946658837, 49.154666494000011 ], [ -123.946694084999976, 49.153228706000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141278166", "BldgCostT": "86226666", "sL_LossRatio": "0.763840652943279", "sL_AssetLoss": "650592.5", "sL_BldgLoss": "496949", "sL_StrLoss": "278949", "sL_NStrLoss": "218000", "sL_ContLoss": "153643.5", "geom_point": "0101000020E610000056CCF74237FD5EC004E6A6D5A9934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.952460114999909, 49.153233099000026 ], [ -123.952463182999978, 49.152320988000071 ], [ -123.955391971999973, 49.15222229900013 ], [ -123.95539961899999, 49.151370909000065 ], [ -123.956828134999967, 49.151367121000135 ], [ -123.958313807999957, 49.151363195000037 ], [ -123.958301986999984, 49.153137498000056 ], [ -123.959698737999958, 49.153145108000047 ], [ -123.960346309999935, 49.153278398000076 ], [ -123.961129211999932, 49.153295004000093 ], [ -123.961107807999966, 49.155188389000095 ], [ -123.960439901999976, 49.15518285700005 ], [ -123.960110905999954, 49.155180129000072 ], [ -123.959674004, 49.155176488000038 ], [ -123.958999657999982, 49.15517372000005 ], [ -123.958272720999958, 49.155170701000031 ], [ -123.957573225999951, 49.155166928 ], [ -123.957212493999975, 49.155164995000064 ], [ -123.955361994999976, 49.155156889000068 ], [ -123.953827904000022, 49.15515021300007 ], [ -123.952441702999963, 49.155143695000085 ], [ -123.952445885999964, 49.154709185000044 ], [ -123.952451363999927, 49.154142453000134 ], [ -123.952460114999909, 49.153233099000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144077500", "BldgCostT": "87400000", "sL_LossRatio": "0.752983630687416", "sL_AssetLoss": "842430", "sL_BldgLoss": "634336", "sL_StrLoss": "333108", "sL_NStrLoss": "301228", "sL_ContLoss": "208094", "geom_point": "0101000020E6100000A128B78A51FD5EC04B0C2CF47F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.955279590999965, 49.160864591000042 ], [ -123.955283337999958, 49.160415919000108 ], [ -123.955287004999946, 49.159979491000065 ], [ -123.955292887, 49.159795123000087 ], [ -123.955302086999978, 49.159507217000019 ], [ -123.95530406099999, 49.15944430800009 ], [ -123.955319489999951, 49.158960691000054 ], [ -123.956031781999954, 49.158965301000116 ], [ -123.956739921999912, 49.158969706000093 ], [ -123.957481705999982, 49.158974019 ], [ -123.958180896999977, 49.158978101000095 ], [ -123.958223079999954, 49.157081502000096 ], [ -123.958272720999958, 49.155170701000031 ], [ -123.958999657999982, 49.15517372000005 ], [ -123.959674004, 49.155176488000038 ], [ -123.959642494999969, 49.157080511000046 ], [ -123.959613201999929, 49.158654992000052 ], [ -123.959648005999952, 49.158986085000038 ], [ -123.959621121999945, 49.159488846000094 ], [ -123.959549124999967, 49.160834804000089 ], [ -123.960329886999943, 49.160841847000093 ], [ -123.961099467999986, 49.160848795000042 ], [ -123.961091740999919, 49.161349032000025 ], [ -123.961069497, 49.162784390000112 ], [ -123.959514584999937, 49.162776492000063 ], [ -123.958233605999979, 49.162771091000138 ], [ -123.956703378999975, 49.162763693000073 ], [ -123.955237599999975, 49.162756604000023 ], [ -123.955243579999916, 49.161864530000081 ], [ -123.95524450799995, 49.161725708000063 ], [ -123.955279590999965, 49.160864591000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.839855508729681", "sL_AssetLoss": "3322", "sL_BldgLoss": "2790", "sL_StrLoss": "1620", "sL_NStrLoss": "1170", "sL_ContLoss": "532", "geom_point": "0101000020E6100000BBD7E6521EFE5EC0B9E0EBEF95924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.970353860999936, 49.145385662000123 ], [ -123.970378603999976, 49.144818430000086 ], [ -123.97101730899999, 49.145352793000079 ], [ -123.971054054999954, 49.145398861000039 ], [ -123.970353860999936, 49.145385662000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125505250", "BldgCostT": "82870000", "sL_LossRatio": "0.782040950579722", "sL_AssetLoss": "851270", "sL_BldgLoss": "665728", "sL_StrLoss": "386122", "sL_NStrLoss": "279606", "sL_ContLoss": "185542", "geom_point": "0101000020E61000003E26529A8DFD5EC0B4D850DE05934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.960346309999935, 49.153278398000076 ], [ -123.959698737999958, 49.153145108000047 ], [ -123.958301986999984, 49.153137498000056 ], [ -123.958313807999957, 49.151363195000037 ], [ -123.956828134999967, 49.151367121000135 ], [ -123.95539961899999, 49.151370909000065 ], [ -123.955409096, 49.150376034000068 ], [ -123.95540936399999, 49.150349069000129 ], [ -123.955409910999904, 49.150291434000032 ], [ -123.955410071999935, 49.150277105000043 ], [ -123.955412138, 49.150061091000055 ], [ -123.955413404999931, 49.149926029000049 ], [ -123.955417098999945, 49.149540494000057 ], [ -123.955422300999928, 49.148734603000094 ], [ -123.955432156999962, 49.147575809000024 ], [ -123.957779156999962, 49.14756362300011 ], [ -123.959224579999926, 49.147556800000096 ], [ -123.9603412099999, 49.147550966000054 ], [ -123.960338373999917, 49.147271735000054 ], [ -123.960275251999946, 49.147086847000068 ], [ -123.960034681999957, 49.146794109000105 ], [ -123.959956693, 49.14660532900006 ], [ -123.959960165999959, 49.146463121000082 ], [ -123.959963213999941, 49.145831002000108 ], [ -123.959975069, 49.145748362000127 ], [ -123.960062741999934, 49.145591536000019 ], [ -123.960251081999942, 49.145451037000093 ], [ -123.960484262999969, 49.145350084000064 ], [ -123.960758291999952, 49.14530286800003 ], [ -123.961284726999978, 49.145212155000088 ], [ -123.961760716999962, 49.14507167800005 ], [ -123.962341936000016, 49.144842240000081 ], [ -123.962606139999977, 49.144692275000061 ], [ -123.962770345999957, 49.144599098000107 ], [ -123.96289451399997, 49.144512114000086 ], [ -123.96319965899994, 49.144298332000048 ], [ -123.96335107799996, 49.144192253000035 ], [ -123.96354766099995, 49.143894294000042 ], [ -123.964204201999905, 49.144059201000083 ], [ -123.964330435999955, 49.144090896000094 ], [ -123.964726333999977, 49.14419035100007 ], [ -123.964997868999973, 49.143557005000069 ], [ -123.96530396499999, 49.142309843000085 ], [ -123.965311149999948, 49.142280575000036 ], [ -123.967536029999962, 49.143295667000096 ], [ -123.966043711999987, 49.143308163000043 ], [ -123.966048957999988, 49.1435779870001 ], [ -123.965637673999964, 49.143581428000054 ], [ -123.965649980999927, 49.144214761000114 ], [ -123.965750430999961, 49.144216659000044 ], [ -123.9655930699999, 49.147815787000127 ], [ -123.962427724999941, 49.14775592200008 ], [ -123.962431019999926, 49.147926075000079 ], [ -123.962003452, 49.147929639000054 ], [ -123.961954513999913, 49.14904685500003 ], [ -123.966565697999926, 49.14913405100004 ], [ -123.966537428999956, 49.149780841000094 ], [ -123.966580958999913, 49.149780477000057 ], [ -123.966565209999914, 49.148971008000096 ], [ -123.966976537999983, 49.148967564000017 ], [ -123.966966034, 49.148427918000095 ], [ -123.967788680999888, 49.148421025000069 ], [ -123.967783426000025, 49.148151203000076 ], [ -123.968194745999952, 49.148147754000078 ], [ -123.968189487999979, 49.147877932000036 ], [ -123.969012124999963, 49.14787103000004 ], [ -123.969001600999917, 49.147331384000083 ], [ -123.970235541999969, 49.147321022000085 ], [ -123.970230273, 49.147051198000092 ], [ -123.970641583999978, 49.14704774100008 ], [ -123.970631043999916, 49.146508097000073 ], [ -123.971072610999968, 49.146504384000075 ], [ -123.971117355999937, 49.145478228000052 ], [ -123.97155918299994, 49.146032163000015 ], [ -123.97186539199997, 49.146416112000033 ], [ -123.972077485999989, 49.146797436000021 ], [ -123.971928083999941, 49.1468795420001 ], [ -123.970836683999934, 49.147479552000085 ], [ -123.964165905999963, 49.151146209000053 ], [ -123.961136652999969, 49.152811565000086 ], [ -123.961129211999932, 49.153295004000093 ], [ -123.960346309999935, 49.153278398000076 ] ], [ [ -123.961032354999986, 49.150366529000053 ], [ -123.961036234999966, 49.15027801800003 ], [ -123.959184662, 49.150242935000101 ], [ -123.959187342999911, 49.150381870000096 ], [ -123.961032354999986, 49.150366529000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80799001", "BldgCostT": "54780001", "sL_LossRatio": "0.842571940041884", "sL_AssetLoss": "381533", "sL_BldgLoss": "321469", "sL_StrLoss": "203613", "sL_NStrLoss": "117856", "sL_ContLoss": "60064", "geom_point": "0101000020E6100000C2D3E94847FD5EC0716F3436AA924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.955466490999939, 49.143770831000069 ], [ -123.955958106999944, 49.143773008000018 ], [ -123.961263129999963, 49.144017641000104 ], [ -123.961274007999961, 49.1444573120001 ], [ -123.961325623000022, 49.144522507000026 ], [ -123.961760716999962, 49.14507167800005 ], [ -123.961284726999978, 49.145212155000088 ], [ -123.960758291999952, 49.14530286800003 ], [ -123.960484262999969, 49.145350084000064 ], [ -123.960251081999942, 49.145451037000093 ], [ -123.960062741999934, 49.145591536000019 ], [ -123.959975069, 49.145748362000127 ], [ -123.959963213999941, 49.145831002000108 ], [ -123.959960165999959, 49.146463121000082 ], [ -123.959956693, 49.14660532900006 ], [ -123.960034681999957, 49.146794109000105 ], [ -123.960275251999946, 49.147086847000068 ], [ -123.960338373999917, 49.147271735000054 ], [ -123.9603412099999, 49.147550966000054 ], [ -123.959224579999926, 49.147556800000096 ], [ -123.957779156999962, 49.14756362300011 ], [ -123.955432156999962, 49.147575809000024 ], [ -123.954409775000016, 49.147571090000085 ], [ -123.952490497999946, 49.147562180000122 ], [ -123.952501400999893, 49.147044617000091 ], [ -123.952511803, 49.146548583000069 ], [ -123.955442420999958, 49.146562897000059 ], [ -123.955448687999976, 49.146109165000091 ], [ -123.955452372999957, 49.145619340000053 ], [ -123.955455034999929, 49.145256944000053 ], [ -123.955456484999928, 49.14505839200006 ], [ -123.955458450999942, 49.144807270000079 ], [ -123.955459002999959, 49.144735336000068 ], [ -123.955466490999939, 49.143770831000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148450583", "BldgCostT": "96098333", "sL_LossRatio": "0.785122439720849", "sL_AssetLoss": "776541.3", "sL_BldgLoss": "609680", "sL_StrLoss": "345039", "sL_NStrLoss": "264641", "sL_ContLoss": "166861.3", "geom_point": "0101000020E61000000B54B6DDFEFC5EC0EED8848B47924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.95255767299993, 49.144614946000104 ], [ -123.952579676, 49.143759193000051 ], [ -123.949662838999956, 49.143746892000109 ], [ -123.949669898999929, 49.142875759000077 ], [ -123.949671436, 49.142686907000062 ], [ -123.949674611999953, 49.142298096000033 ], [ -123.949681405999925, 49.141460800000068 ], [ -123.951102997999953, 49.141461716000045 ], [ -123.951239811999955, 49.141435503000046 ], [ -123.951298608999977, 49.141375391000103 ], [ -123.951277284999946, 49.141298406000061 ], [ -123.950783195999946, 49.140793705000178 ], [ -123.950661188999945, 49.140732898000088 ], [ -123.950495715999935, 49.140697290000084 ], [ -123.949688226999967, 49.140684599000032 ], [ -123.949695799999944, 49.139953490000025 ], [ -123.951188403999979, 49.139957703000086 ], [ -123.951728233999958, 49.139959392000044 ], [ -123.952602988999956, 49.13996208300005 ], [ -123.952975594999913, 49.139963091000041 ], [ -123.953249508999988, 49.139963818000091 ], [ -123.954036810999952, 49.139965905000068 ], [ -123.955499282999966, 49.139969398000069 ], [ -123.955478306999936, 49.142316690000087 ], [ -123.955474595999959, 49.142773983000083 ], [ -123.955471246999977, 49.143187837000021 ], [ -123.955466490999939, 49.143770831000069 ], [ -123.955459002999959, 49.144735336000068 ], [ -123.955458450999942, 49.144807270000079 ], [ -123.955456484999928, 49.14505839200006 ], [ -123.955455034999929, 49.145256944000053 ], [ -123.955452372999957, 49.145619340000053 ], [ -123.955448687999976, 49.146109165000091 ], [ -123.955442420999958, 49.146562897000059 ], [ -123.952511803, 49.146548583000069 ], [ -123.952521564000023, 49.146135822000105 ], [ -123.952530022999895, 49.145775707000091 ], [ -123.952532490999943, 49.145671899000078 ], [ -123.952542776999948, 49.145236044000058 ], [ -123.95255461, 49.144734002000057 ], [ -123.95255767299993, 49.144614946000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "216046083", "BldgCostT": "133368333", "sL_LossRatio": "0.750142332491737", "sL_AssetLoss": "1317338", "sL_BldgLoss": "988191", "sL_StrLoss": "537851", "sL_NStrLoss": "450340", "sL_ContLoss": "329147", "geom_point": "0101000020E610000063B203D7AAFC5EC00DBADFFC61924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.94963615599994, 49.147040971000145 ], [ -123.949639995999959, 49.146534495000033 ], [ -123.947027118, 49.146521607000096 ], [ -123.946749082999972, 49.14651990100009 ], [ -123.94639503799999, 49.146518177000061 ], [ -123.946239617999979, 49.146517405000125 ], [ -123.946272559999898, 49.146077596000076 ], [ -123.946306213999961, 49.145628901000038 ], [ -123.943877996999944, 49.145622190000061 ], [ -123.943884707, 49.144694791000049 ], [ -123.943888872999977, 49.144227776000086 ], [ -123.94389341399993, 49.143723278000024 ], [ -123.943896540999916, 49.143453882000102 ], [ -123.94390980299994, 49.14231175900008 ], [ -123.943919037999976, 49.141513934000088 ], [ -123.943937283999944, 49.139940947000056 ], [ -123.945159490999984, 49.139938205000121 ], [ -123.945351390999974, 49.139937797000051 ], [ -123.945541201999902, 49.139937351000107 ], [ -123.948477109999928, 49.139948293000053 ], [ -123.949695799999944, 49.139953490000025 ], [ -123.949688226999967, 49.140684599000032 ], [ -123.950495715999935, 49.140697290000084 ], [ -123.950661188999945, 49.140732898000088 ], [ -123.950783195999946, 49.140793705000178 ], [ -123.951277284999946, 49.141298406000061 ], [ -123.951298608999977, 49.141375391000103 ], [ -123.951239811999955, 49.141435503000046 ], [ -123.951102997999953, 49.141461716000045 ], [ -123.949681405999925, 49.141460800000068 ], [ -123.949674611999953, 49.142298096000033 ], [ -123.949671436, 49.142686907000062 ], [ -123.949669898999929, 49.142875759000077 ], [ -123.949662838999956, 49.143746892000109 ], [ -123.952579676, 49.143759193000051 ], [ -123.95255767299993, 49.144614946000104 ], [ -123.95255461, 49.144734002000057 ], [ -123.952542776999948, 49.145236044000058 ], [ -123.952532490999943, 49.145671899000078 ], [ -123.952530022999895, 49.145775707000091 ], [ -123.952521564000023, 49.146135822000105 ], [ -123.952511803, 49.146548583000069 ], [ -123.952501400999893, 49.147044617000091 ], [ -123.952490497999946, 49.147562180000122 ], [ -123.949632314999974, 49.147548300000111 ], [ -123.94963615599994, 49.147040971000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98235811", "BldgCostT": "65583190", "sL_LossRatio": "0.751443989453221", "sL_AssetLoss": "642698.6", "sL_BldgLoss": "482952", "sL_StrLoss": "240716", "sL_NStrLoss": "242236", "sL_ContLoss": "159746.6", "geom_point": "0101000020E6100000DD6CDDB436FC5EC0B23CEEDF65924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.937342470999951, 49.145009552000026 ], [ -123.936057243999954, 49.143647599000083 ], [ -123.938180398000014, 49.143849011000043 ], [ -123.938148458999947, 49.143226572000138 ], [ -123.938148284, 49.143223171000081 ], [ -123.938131898999984, 49.142903397000048 ], [ -123.938113990999938, 49.142553612000029 ], [ -123.938106900999983, 49.142415787000083 ], [ -123.938108807999967, 49.142124887000058 ], [ -123.938110874999964, 49.141899840000079 ], [ -123.938111276999962, 49.141857859000069 ], [ -123.938113567999963, 49.141612061000082 ], [ -123.938116829, 49.141261162000035 ], [ -123.938116892999915, 49.14125086300006 ], [ -123.93811781, 49.1411540020001 ], [ -123.938119125999961, 49.141010050000069 ], [ -123.938120169999962, 49.140901105000054 ], [ -123.938120405999967, 49.140874303000025 ], [ -123.93812771199994, 49.139874854000055 ], [ -123.941072678999944, 49.139908397000092 ], [ -123.941559628999954, 49.139913935000045 ], [ -123.941868802999934, 49.139917459000067 ], [ -123.943937283999944, 49.139940947000056 ], [ -123.943919037999976, 49.141513934000088 ], [ -123.94390980299994, 49.14231175900008 ], [ -123.943896540999916, 49.143453882000102 ], [ -123.94389341399993, 49.143723278000024 ], [ -123.943888872999977, 49.144227776000086 ], [ -123.943884707, 49.144694791000049 ], [ -123.943877996999944, 49.145622190000061 ], [ -123.943872314, 49.146324025000062 ], [ -123.943871487999928, 49.146426674000089 ], [ -123.943870838999956, 49.146503892000077 ], [ -123.943870772999958, 49.146513546000079 ], [ -123.943869530999947, 49.146665760000118 ], [ -123.943867507, 49.146917584000029 ], [ -123.943862614999972, 49.147521101000073 ], [ -123.942013083999967, 49.147507316000024 ], [ -123.941190810999942, 49.147501181000059 ], [ -123.940600608999915, 49.14749675700017 ], [ -123.93984350599996, 49.147491095000106 ], [ -123.939685990999948, 49.147490804000022 ], [ -123.939105824999928, 49.147484736000081 ], [ -123.939063073999989, 49.147484299000062 ], [ -123.93855338499999, 49.147485390000057 ], [ -123.93824865299996, 49.147488272000089 ], [ -123.938156924999973, 49.147179003000055 ], [ -123.938131877999965, 49.146334953000121 ], [ -123.937342470999951, 49.145009552000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211902084", "BldgCostT": "136208334", "sL_LossRatio": "0.822544604411816", "sL_AssetLoss": "838969.7", "sL_BldgLoss": "690090", "sL_StrLoss": "435044", "sL_NStrLoss": "255046", "sL_ContLoss": "148879.7", "geom_point": "0101000020E61000005E0F817E7AFC5EC09E69884B8A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.961263129999963, 49.144017641000104 ], [ -123.955958106999944, 49.143773008000018 ], [ -123.955466490999939, 49.143770831000069 ], [ -123.955471246999977, 49.143187837000021 ], [ -123.955474595999959, 49.142773983000083 ], [ -123.955478306999936, 49.142316690000087 ], [ -123.955499282999966, 49.139969398000069 ], [ -123.954036810999952, 49.139965905000068 ], [ -123.953249508999988, 49.139963818000091 ], [ -123.952975594999913, 49.139963091000041 ], [ -123.952602988999956, 49.13996208300005 ], [ -123.951728233999958, 49.139959392000044 ], [ -123.951188403999979, 49.139957703000086 ], [ -123.949695799999944, 49.139953490000025 ], [ -123.948477109999928, 49.139948293000053 ], [ -123.945541201999902, 49.139937351000107 ], [ -123.945351390999974, 49.139937797000051 ], [ -123.945159490999984, 49.139938205000121 ], [ -123.943937283999944, 49.139940947000056 ], [ -123.941868802999934, 49.139917459000067 ], [ -123.941559628999954, 49.139913935000045 ], [ -123.941072678999944, 49.139908397000092 ], [ -123.93812771199994, 49.139874854000055 ], [ -123.938137378999926, 49.138876784000082 ], [ -123.93815031299998, 49.13753756800007 ], [ -123.938150383999954, 49.137527649000056 ], [ -123.938157444999945, 49.136799214000078 ], [ -123.938158637999976, 49.136673101000028 ], [ -123.93816429599994, 49.136081545000067 ], [ -123.93514704899998, 49.136064433000094 ], [ -123.935105917999977, 49.136064204000064 ], [ -123.934392676999963, 49.136060133000043 ], [ -123.933281983999905, 49.136053853000071 ], [ -123.932719797999937, 49.136050633000139 ], [ -123.931376122999907, 49.136042977000059 ], [ -123.931361194999951, 49.136042890000105 ], [ -123.931023297999985, 49.136003005000084 ], [ -123.931004625999933, 49.135998198000117 ], [ -123.930660391999965, 49.135909584000039 ], [ -123.930078226999939, 49.135637253 ], [ -123.929928256999958, 49.135560403000071 ], [ -123.92909946499995, 49.135135713000132 ], [ -123.928923856999944, 49.135046184000018 ], [ -123.928661972999947, 49.134912674000148 ], [ -123.928531655999933, 49.13484620600007 ], [ -123.927025308999987, 49.134078174000152 ], [ -123.926907469999918, 49.133973696000098 ], [ -123.926834285999959, 49.13390877200009 ], [ -123.926697483999959, 49.133721538000025 ], [ -123.926661943999989, 49.133535347000105 ], [ -123.926660113999958, 49.133410812000136 ], [ -123.926658531000015, 49.133302860000128 ], [ -123.926653369999954, 49.132952061000026 ], [ -123.926648724999907, 49.132637211000066 ], [ -123.92664554699995, 49.132421343000054 ], [ -123.926635777999962, 49.131755740000109 ], [ -123.926630666999984, 49.131409419000072 ], [ -123.926575079000017, 49.131243546000093 ], [ -123.92642065199999, 49.131113568000082 ], [ -123.926603225999912, 49.131011675000138 ], [ -123.926690137999955, 49.130906186000068 ], [ -123.926726402000014, 49.12926069400006 ], [ -123.926698093999946, 49.129095402000111 ], [ -123.926617610999955, 49.128996608000129 ], [ -123.926461503, 49.128966487000092 ], [ -123.925708484999959, 49.128965493000059 ], [ -123.923907919999948, 49.128964996 ], [ -123.923949712999971, 49.128117524000054 ], [ -123.92395062099996, 49.128099495000093 ], [ -123.924184322999963, 49.125640869000115 ], [ -123.924087693999937, 49.125609388000079 ], [ -123.923995101999978, 49.125536408000102 ], [ -123.923989486999943, 49.125489275000106 ], [ -123.923965206999966, 49.12528548700007 ], [ -123.923845606999976, 49.12520399700005 ], [ -123.92360741899995, 49.125172296000045 ], [ -123.923360966999923, 49.125169830000118 ], [ -123.922510162999941, 49.125161313000085 ], [ -123.919923327999967, 49.125135410000041 ], [ -123.919932310999968, 49.124781637000112 ], [ -123.919936946999911, 49.124585413000055 ], [ -123.923217795, 49.124752061000059 ], [ -123.923256461, 49.124754003000092 ], [ -123.923822145999949, 49.124840555000112 ], [ -123.923995581999975, 49.125046361000081 ], [ -123.925700542999962, 49.127069172000041 ], [ -123.925905561999983, 49.12756193200007 ], [ -123.926768903999942, 49.128944576 ], [ -123.92817615099996, 49.130355573000038 ], [ -123.93000586699999, 49.130222169000014 ], [ -123.930748569999963, 49.13028235300002 ], [ -123.931365297999932, 49.130332304000042 ], [ -123.93210964599993, 49.130392618000094 ], [ -123.932109908999948, 49.130396282000049 ], [ -123.933203243999941, 49.130477144000047 ], [ -123.933253545999932, 49.13057629900004 ], [ -123.932948811, 49.13268703600005 ], [ -123.932900248999914, 49.133023572000127 ], [ -123.932842451999988, 49.133423837000059 ], [ -123.932893877999973, 49.133603668000063 ], [ -123.933185567999914, 49.133664700000082 ], [ -123.933798659000018, 49.133641818000108 ], [ -123.934034534999952, 49.133786992000104 ], [ -123.934865410999976, 49.134196479000074 ], [ -123.93567705199996, 49.134513731000027 ], [ -123.93647629099992, 49.134773117000094 ], [ -123.93734762299999, 49.134979830000134 ], [ -123.938346330999963, 49.135156566000042 ], [ -123.939300835999973, 49.135249600000037 ], [ -123.940288263999975, 49.135279296000093 ], [ -123.941110166999977, 49.135273422000104 ], [ -123.941922800999961, 49.135198905000017 ], [ -123.944701896999973, 49.134877376000077 ], [ -123.946715883999943, 49.134637598000083 ], [ -123.947597206999973, 49.134590409000097 ], [ -123.948423709999958, 49.134573787000129 ], [ -123.949568299999939, 49.134659058000054 ], [ -123.949784082999912, 49.134675144000035 ], [ -123.949820014999958, 49.134677806000155 ], [ -123.951015394999899, 49.13486719000008 ], [ -123.95154835699995, 49.135000827000091 ], [ -123.951783205999973, 49.135059697000024 ], [ -123.95178316099998, 49.135060718000062 ], [ -123.951787149, 49.135060686000038 ], [ -123.951815897999921, 49.135067892000102 ], [ -123.951900569999935, 49.135094950000088 ], [ -123.951905063999916, 49.135329581000065 ], [ -123.952616438999939, 49.135323714000016 ], [ -123.952728198999949, 49.135359426000051 ], [ -123.952732667999953, 49.135592622000075 ], [ -123.953296362999964, 49.135587968000017 ], [ -123.95355723299997, 49.135696707000101 ], [ -123.953560282999959, 49.13585565699999 ], [ -123.953878423999967, 49.135853028000042 ], [ -123.953972540999942, 49.135906326000097 ], [ -123.953976681999947, 49.136122083000075 ], [ -123.954348128999925, 49.136119014000059 ], [ -123.954388347999952, 49.136141789000078 ], [ -123.954393084999978, 49.13638851000006 ], [ -123.954804309999972, 49.136385110000056 ], [ -123.954809493999988, 49.136654934000084 ], [ -123.955195087999954, 49.136651744000098 ], [ -123.955221083999959, 49.136670397000046 ], [ -123.955225906999928, 49.13692135700007 ], [ -123.955543335999963, 49.136918730000083 ], [ -123.955638724, 49.137000572000048 ], [ -123.955642322999921, 49.13718777900008 ], [ -123.955854870999957, 49.137186019000048 ], [ -123.956056921999902, 49.137359369000137 ], [ -123.956063934999975, 49.13772402300004 ], [ -123.95647517, 49.137720616000166 ], [ -123.956480363999958, 49.137990441000106 ], [ -123.956789513999979, 49.137987880000061 ], [ -123.956893331999964, 49.138076946000112 ], [ -123.956896796999942, 49.138256858000013 ], [ -123.957101066999968, 49.138255165000082 ], [ -123.957451390999964, 49.138555708000091 ], [ -123.958617095999898, 49.139298206000092 ], [ -123.95946338399996, 49.139675401000048 ], [ -123.962066403999955, 49.140655907000095 ], [ -123.963582002999914, 49.141316017000079 ], [ -123.964164957999941, 49.141569915000048 ], [ -123.96536050899999, 49.142090607000036 ], [ -123.965324453999969, 49.142229444000058 ], [ -123.965311149999948, 49.142280575000036 ], [ -123.96530396499999, 49.142309843000085 ], [ -123.964997868999973, 49.143557005000069 ], [ -123.964726333999977, 49.14419035100007 ], [ -123.964330435999955, 49.144090896000094 ], [ -123.964204201999905, 49.144059201000083 ], [ -123.96354766099995, 49.143894294000042 ], [ -123.96335107799996, 49.144192253000035 ], [ -123.96319965899994, 49.144298332000048 ], [ -123.96289451399997, 49.144512114000086 ], [ -123.962770345999957, 49.144599098000107 ], [ -123.962606139999977, 49.144692275000061 ], [ -123.962341936000016, 49.144842240000081 ], [ -123.961760716999962, 49.14507167800005 ], [ -123.961325623000022, 49.144522507000026 ], [ -123.961274007999961, 49.1444573120001 ], [ -123.961263129999963, 49.144017641000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185268275", "BldgCostT": "115959019", "sL_LossRatio": "0.735690939040061", "sL_AssetLoss": "834869.6", "sL_BldgLoss": "614206", "sL_StrLoss": "301436", "sL_NStrLoss": "312770", "sL_ContLoss": "220663.6", "geom_point": "0101000020E61000009B5124466CFB5EC03E14EC5C24914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.927745434999949, 49.136305123000028 ], [ -123.926250184000011, 49.135144445000023 ], [ -123.925085942999942, 49.134041524000111 ], [ -123.924773772999941, 49.133745799000025 ], [ -123.923838339999989, 49.133138243000118 ], [ -123.923218447999957, 49.132842071000056 ], [ -123.9226875899999, 49.132739174 ], [ -123.922087105999964, 49.132712253000108 ], [ -123.921806974999953, 49.132716491000124 ], [ -123.921648331999918, 49.1327188610001 ], [ -123.921511386, 49.131424097000085 ], [ -123.921349456999977, 49.130755325000038 ], [ -123.921347329999932, 49.130746408000064 ], [ -123.921212584, 49.130388102000055 ], [ -123.920964216999934, 49.129880794000023 ], [ -123.92062049399999, 49.129359005000055 ], [ -123.920285126999943, 49.128973681000062 ], [ -123.920189965999938, 49.128864318000083 ], [ -123.91950050399997, 49.12807209700005 ], [ -123.917810921999902, 49.126140998000075 ], [ -123.916482071999908, 49.124689679 ], [ -123.916637397000031, 49.124663441000088 ], [ -123.916725884999934, 49.12464862000008 ], [ -123.916741381999927, 49.12464609400012 ], [ -123.91759311099996, 49.124491393000056 ], [ -123.919923273999956, 49.1245848430001 ], [ -123.919936946999911, 49.124585413000055 ], [ -123.919932310999968, 49.124781637000112 ], [ -123.919923327999967, 49.125135410000041 ], [ -123.922510162999941, 49.125161313000085 ], [ -123.923360966999923, 49.125169830000118 ], [ -123.92360741899995, 49.125172296000045 ], [ -123.923845606999976, 49.12520399700005 ], [ -123.923965206999966, 49.12528548700007 ], [ -123.923989486999943, 49.125489275000106 ], [ -123.923995101999978, 49.125536408000102 ], [ -123.924087693999937, 49.125609388000079 ], [ -123.924184322999963, 49.125640869000115 ], [ -123.92395062099996, 49.128099495000093 ], [ -123.923949712999971, 49.128117524000054 ], [ -123.923907919999948, 49.128964996 ], [ -123.925708484999959, 49.128965493000059 ], [ -123.926461503, 49.128966487000092 ], [ -123.926617610999955, 49.128996608000129 ], [ -123.926698093999946, 49.129095402000111 ], [ -123.926726402000014, 49.12926069400006 ], [ -123.926690137999955, 49.130906186000068 ], [ -123.926603225999912, 49.131011675000138 ], [ -123.92642065199999, 49.131113568000082 ], [ -123.926575079000017, 49.131243546000093 ], [ -123.926630666999984, 49.131409419000072 ], [ -123.926635777999962, 49.131755740000109 ], [ -123.92664554699995, 49.132421343000054 ], [ -123.926648724999907, 49.132637211000066 ], [ -123.926653369999954, 49.132952061000026 ], [ -123.926658531000015, 49.133302860000128 ], [ -123.926660113999958, 49.133410812000136 ], [ -123.926661943999989, 49.133535347000105 ], [ -123.926697483999959, 49.133721538000025 ], [ -123.926834285999959, 49.13390877200009 ], [ -123.926907469999918, 49.133973696000098 ], [ -123.927025308999987, 49.134078174000152 ], [ -123.928531655999933, 49.13484620600007 ], [ -123.928661972999947, 49.134912674000148 ], [ -123.928923856999944, 49.135046184000018 ], [ -123.92909946499995, 49.135135713000132 ], [ -123.929928256999958, 49.135560403000071 ], [ -123.930078226999939, 49.135637253 ], [ -123.930660391999965, 49.135909584000039 ], [ -123.931004625999933, 49.135998198000117 ], [ -123.931023297999985, 49.136003005000084 ], [ -123.931361194999951, 49.136042890000105 ], [ -123.931376122999907, 49.136042977000059 ], [ -123.932719797999937, 49.136050633000139 ], [ -123.933281983999905, 49.136053853000071 ], [ -123.934392676999963, 49.136060133000043 ], [ -123.935105917999977, 49.136064204000064 ], [ -123.93514704899998, 49.136064433000094 ], [ -123.93816429599994, 49.136081545000067 ], [ -123.938158637999976, 49.136673101000028 ], [ -123.938157444999945, 49.136799214000078 ], [ -123.938150383999954, 49.137527649000056 ], [ -123.93815031299998, 49.13753756800007 ], [ -123.938137378999926, 49.138876784000082 ], [ -123.93812771199994, 49.139874854000055 ], [ -123.938120405999967, 49.140874303000025 ], [ -123.938120169999962, 49.140901105000054 ], [ -123.938119125999961, 49.141010050000069 ], [ -123.93811781, 49.1411540020001 ], [ -123.938116892999915, 49.14125086300006 ], [ -123.938116829, 49.141261162000035 ], [ -123.938113567999963, 49.141612061000082 ], [ -123.938111276999962, 49.141857859000069 ], [ -123.938110874999964, 49.141899840000079 ], [ -123.938108807999967, 49.142124887000058 ], [ -123.938106900999983, 49.142415787000083 ], [ -123.938113990999938, 49.142553612000029 ], [ -123.938131898999984, 49.142903397000048 ], [ -123.938148284, 49.143223171000081 ], [ -123.938148458999947, 49.143226572000138 ], [ -123.938180398000014, 49.143849011000043 ], [ -123.936057243999954, 49.143647599000083 ], [ -123.936030792999972, 49.143610348000031 ], [ -123.934902816999937, 49.142376477000077 ], [ -123.933215541999971, 49.140902774000061 ], [ -123.93297702299995, 49.140312398000084 ], [ -123.93287374399992, 49.139992417000038 ], [ -123.932831444999977, 49.139861442000047 ], [ -123.932528554999976, 49.139503245000071 ], [ -123.93147710399991, 49.13841508200013 ], [ -123.930889566999952, 49.137997256000084 ], [ -123.928860902999958, 49.136917605000072 ], [ -123.928858812999948, 49.136916395000064 ], [ -123.927745434999949, 49.136305123000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "353456571", "BldgCostT": "225681485", "sL_LossRatio": "0.705936969647584", "sL_AssetLoss": "1276274", "sL_BldgLoss": "900969", "sL_StrLoss": "394882", "sL_NStrLoss": "506087", "sL_ContLoss": "375305", "geom_point": "0101000020E6100000D5D3C4F172FB5EC0990BA6AB05924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.933514631999955, 49.148175260000116 ], [ -123.933127708999933, 49.14813239000005 ], [ -123.932959682999964, 49.148133162000086 ], [ -123.93213709399997, 49.148136807000128 ], [ -123.931542594999911, 49.146812297000103 ], [ -123.931184608999942, 49.146144506000056 ], [ -123.930848402, 49.145788594000123 ], [ -123.930447493999978, 49.145472010000042 ], [ -123.930291219999987, 49.145362901000034 ], [ -123.928654110999929, 49.144219980000088 ], [ -123.926519316999986, 49.142881200000083 ], [ -123.92629559099997, 49.142740903000046 ], [ -123.924972407999988, 49.141884198000106 ], [ -123.923339002999953, 49.140599002000037 ], [ -123.922994190999972, 49.140327713000062 ], [ -123.921948593999957, 49.139574510000052 ], [ -123.921542398000028, 49.139164104000038 ], [ -123.920948306999918, 49.138466353000148 ], [ -123.920869576999976, 49.138373901000065 ], [ -123.920866954999923, 49.138366631000125 ], [ -123.92079886499999, 49.138178833000048 ], [ -123.920744938, 49.138030031000071 ], [ -123.920685504999938, 49.137866107 ], [ -123.9207036, 49.137461202000033 ], [ -123.920716578999958, 49.137439863000083 ], [ -123.921087908999951, 49.136829215 ], [ -123.921299198999947, 49.136391979000052 ], [ -123.921441407999978, 49.136211894000034 ], [ -123.921597409999919, 49.136091602000121 ], [ -123.921752701999978, 49.135988300000058 ], [ -123.921987701999939, 49.135878492000096 ], [ -123.922333106999986, 49.135778898000069 ], [ -123.922136387999984, 49.135431086000061 ], [ -123.921984609999967, 49.135026503000091 ], [ -123.921835909999984, 49.134492299000051 ], [ -123.92180164299999, 49.134168453000015 ], [ -123.921752145999932, 49.133700651000026 ], [ -123.921741883999971, 49.133603330000057 ], [ -123.921682511999933, 49.133042178000061 ], [ -123.921653436999947, 49.132767091000069 ], [ -123.921648331999918, 49.1327188610001 ], [ -123.921806974999953, 49.132716491000124 ], [ -123.922087105999964, 49.132712253000108 ], [ -123.9226875899999, 49.132739174 ], [ -123.923218447999957, 49.132842071000056 ], [ -123.923838339999989, 49.133138243000118 ], [ -123.924773772999941, 49.133745799000025 ], [ -123.925085942999942, 49.134041524000111 ], [ -123.926250184000011, 49.135144445000023 ], [ -123.927745434999949, 49.136305123000028 ], [ -123.928858812999948, 49.136916395000064 ], [ -123.928860902999958, 49.136917605000072 ], [ -123.930889566999952, 49.137997256000084 ], [ -123.93147710399991, 49.13841508200013 ], [ -123.932528554999976, 49.139503245000071 ], [ -123.932831444999977, 49.139861442000047 ], [ -123.93287374399992, 49.139992417000038 ], [ -123.93297702299995, 49.140312398000084 ], [ -123.933215541999971, 49.140902774000061 ], [ -123.934902816999937, 49.142376477000077 ], [ -123.936030792999972, 49.143610348000031 ], [ -123.936057243999954, 49.143647599000083 ], [ -123.937342470999951, 49.145009552000026 ], [ -123.938131877999965, 49.146334953000121 ], [ -123.938156924999973, 49.147179003000055 ], [ -123.93824865299996, 49.147488272000089 ], [ -123.938021310999943, 49.14749041400011 ], [ -123.937925779999929, 49.147491289000094 ], [ -123.937336894999973, 49.147489102000122 ], [ -123.936754897, 49.147486000000143 ], [ -123.934890306999961, 49.147554686 ], [ -123.934306592999945, 49.147553630000097 ], [ -123.933852015999918, 49.147552808000064 ], [ -123.933734088999969, 49.14749379100008 ], [ -123.933491190999959, 49.147719710000054 ], [ -123.933258224999975, 49.147199192000123 ], [ -123.932976289999942, 49.146822813000028 ], [ -123.932600902000019, 49.146422893000114 ], [ -123.931962582999944, 49.145837004000079 ], [ -123.931226015999982, 49.145214984000035 ], [ -123.930848641999944, 49.144961137000074 ], [ -123.928889295999966, 49.143642800000087 ], [ -123.928462695999968, 49.143287788000066 ], [ -123.928159221999962, 49.142966807000029 ], [ -123.927941897000011, 49.142619494000044 ], [ -123.927632291999927, 49.14179050100006 ], [ -123.927371500999939, 49.140602087000104 ], [ -123.927132145, 49.140181764000062 ], [ -123.927068290999898, 49.140325405000056 ], [ -123.92708812099994, 49.140358945000038 ], [ -123.927233104999956, 49.140603997000056 ], [ -123.92752930599994, 49.141795682000136 ], [ -123.927772191999949, 49.142523499000049 ], [ -123.92781082499999, 49.142641299000097 ], [ -123.928025102999982, 49.142996700000019 ], [ -123.928328807999918, 49.143312314000056 ], [ -123.928757697, 49.143677184000126 ], [ -123.93043919699997, 49.144794254000047 ], [ -123.930877459999962, 49.145085397000116 ], [ -123.93108190699995, 49.145221193000104 ], [ -123.931848082999963, 49.145856395000067 ], [ -123.932458006999966, 49.146403092000057 ], [ -123.932898418999955, 49.14688070600009 ], [ -123.933156678999936, 49.147233300000046 ], [ -123.933382298, 49.147736515000055 ], [ -123.933510875999929, 49.148153073000046 ], [ -123.933514028999966, 49.148163207000024 ], [ -123.933514631999955, 49.148175260000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.833001301564534", "sL_AssetLoss": "11294.1", "sL_BldgLoss": "9408", "sL_StrLoss": "5740", "sL_NStrLoss": "3668", "sL_ContLoss": "1886.1", "geom_point": "0101000020E6100000D8FC32F714F45EC0EC2941983E904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.81015937399998, 49.127533478000068 ], [ -123.81017115899999, 49.127282968000038 ], [ -123.809864781999963, 49.127276732000048 ], [ -123.809735101999934, 49.127094086000028 ], [ -123.809427945999943, 49.126888105000063 ], [ -123.809510283999927, 49.126888641000022 ], [ -123.812507464, 49.126065831000076 ], [ -123.818233974999941, 49.126501363000067 ], [ -123.818228494999971, 49.126618281000049 ], [ -123.81787680399998, 49.126611149000077 ], [ -123.817843018999923, 49.12733178800007 ], [ -123.815648064999934, 49.127287250000037 ], [ -123.815630648999942, 49.127658342000103 ], [ -123.810179113999965, 49.127547531000069 ], [ -123.81015937399998, 49.127533478000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899583", "BldgCostT": "4758333", "sL_LossRatio": "0.802769738170559", "sL_AssetLoss": "59428", "sL_BldgLoss": "47707", "sL_StrLoss": "25670", "sL_NStrLoss": "22037", "sL_ContLoss": "11721", "geom_point": "0101000020E6100000422FBBAB07F95EC0DE318683CE8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.894552419999968, 49.129993805 ], [ -123.893421413999974, 49.129570808000096 ], [ -123.892638609999935, 49.129495305000077 ], [ -123.891405506999916, 49.128767509000056 ], [ -123.8905717909999, 49.128108096000055 ], [ -123.889831000999919, 49.127403211000058 ], [ -123.888788384999927, 49.126230546000038 ], [ -123.888919753999957, 49.125621387000052 ], [ -123.889306622999939, 49.123827700000021 ], [ -123.889306301999909, 49.123706008000099 ], [ -123.889305963999945, 49.123566394000107 ], [ -123.889305481999955, 49.123359427000032 ], [ -123.88930243099999, 49.122073120000024 ], [ -123.889296507999916, 49.119581179000065 ], [ -123.889406793999953, 49.119293384000059 ], [ -123.889304673999973, 49.117193901000121 ], [ -123.892538445999961, 49.11725730200002 ], [ -123.892399631999979, 49.120323787000075 ], [ -123.892375518000023, 49.120856470000106 ], [ -123.89128905799997, 49.120835180000071 ], [ -123.891157939999985, 49.123729727000111 ], [ -123.892708832999944, 49.12376011500006 ], [ -123.892545895999959, 49.127359247000079 ], [ -123.891840862999985, 49.127345436000077 ], [ -123.891835683999915, 49.127459762000093 ], [ -123.892171377999901, 49.127466338000083 ], [ -123.892148294999956, 49.127976065000105 ], [ -123.89373315200001, 49.128007100000033 ], [ -123.893697171999989, 49.128802208000053 ], [ -123.894395976999988, 49.128815885000051 ], [ -123.894371508999953, 49.129356729000087 ], [ -123.895129881999949, 49.129371566000032 ], [ -123.895103920999972, 49.129945657000071 ], [ -123.896090081999958, 49.129964944000079 ], [ -123.896079299999968, 49.130203484000141 ], [ -123.895598413999934, 49.130210296000094 ], [ -123.894552419999968, 49.129993805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44382834", "BldgCostT": "29873334", "sL_LossRatio": "0.829509200751067", "sL_AssetLoss": "223362.2", "sL_BldgLoss": "185281", "sL_StrLoss": "116555", "sL_NStrLoss": "68726", "sL_ContLoss": "38081.2", "geom_point": "0101000020E6100000BF036EA362FA5EC0616366B864904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.921494739999972, 49.140217032000045 ], [ -123.921497107999954, 49.140164030000093 ], [ -123.921457989999951, 49.140164341000052 ], [ -123.921140114999957, 49.139708593000186 ], [ -123.92113860399995, 49.13962715600011 ], [ -123.921058586999948, 49.139627795000131 ], [ -123.920721371999946, 49.139307839000011 ], [ -123.92071735299993, 49.139090783000043 ], [ -123.92049448299997, 49.139092559000055 ], [ -123.920323902999939, 49.138930707000064 ], [ -123.920301302999945, 49.138834979000151 ], [ -123.920296109000034, 49.138554407000051 ], [ -123.92023517599992, 49.13855489300007 ], [ -123.919893512999977, 49.137107701000076 ], [ -123.919856961, 49.137050208000097 ], [ -123.919844910999956, 49.136399066000116 ], [ -123.919433681999976, 49.1364023430001 ], [ -123.919428690999936, 49.136132515000043 ], [ -123.919189141999965, 49.136134423000051 ], [ -123.919188511999934, 49.136106488000109 ], [ -123.919352598999922, 49.1360423940001 ], [ -123.919416710999926, 49.135853 ], [ -123.91864368099999, 49.134833292000053 ], [ -123.918412998999941, 49.134161010000085 ], [ -123.918160593999943, 49.133883311000027 ], [ -123.917343306, 49.133431785000063 ], [ -123.916606694, 49.132870703000052 ], [ -123.915849686999962, 49.132021901 ], [ -123.915592588999957, 49.131447898000076 ], [ -123.915285086, 49.131081893000044 ], [ -123.914798203999908, 49.130717298000086 ], [ -123.914510793999952, 49.130674611000082 ], [ -123.914385307999964, 49.130657492000118 ], [ -123.914322510999966, 49.130864008000081 ], [ -123.915337598999898, 49.132476204000071 ], [ -123.915824602, 49.132778098000088 ], [ -123.916292599999935, 49.132899190000067 ], [ -123.916664652999927, 49.133246328000013 ], [ -123.915673581999897, 49.133227137000056 ], [ -123.915697820999924, 49.134542964000062 ], [ -123.914875390999953, 49.134549484000026 ], [ -123.914880356999973, 49.134819312000054 ], [ -123.913238609999937, 49.134832310000064 ], [ -123.912822969999965, 49.134764712000042 ], [ -123.912819316999929, 49.134565759000047 ], [ -123.91228906299996, 49.134569950000085 ], [ -123.91216667899999, 49.134507093000074 ], [ -123.911014589999965, 49.133652606000041 ], [ -123.910352100999987, 49.133485993000086 ], [ -123.909826214999924, 49.133148398000067 ], [ -123.90921880400002, 49.132937587000086 ], [ -123.908693199, 49.132654190000061 ], [ -123.908257267999929, 49.132484388000101 ], [ -123.908236790999979, 49.13136349400002 ], [ -123.908647979999955, 49.131360260000072 ], [ -123.90864304599998, 49.131090430000057 ], [ -123.909054233999953, 49.131087193000099 ], [ -123.909049298999932, 49.130817365000077 ], [ -123.910694037, 49.130804402000095 ], [ -123.910693, 49.130747872000022 ], [ -123.906178441999927, 49.130660123000027 ], [ -123.90634033799995, 49.127060988000068 ], [ -123.907336124999929, 49.127080359000047 ], [ -123.907335620999973, 49.127052704000114 ], [ -123.907646749999969, 49.127050259000022 ], [ -123.907679009999981, 49.126332560000073 ], [ -123.907036137999981, 49.126320056000097 ], [ -123.907106405999983, 49.124757190000082 ], [ -123.905378102999919, 49.12472355700001 ], [ -123.90537745599994, 49.124737938000024 ], [ -123.899905671999988, 49.124631274000052 ], [ -123.899989990000023, 49.122762187 ], [ -123.8984000299999, 49.122731140000056 ], [ -123.898484672000023, 49.120856149000069 ], [ -123.898562499999954, 49.119131973000066 ], [ -123.89915986299999, 49.1191436410001 ], [ -123.899164581999955, 49.119039088000122 ], [ -123.90184547199999, 49.119091408000017 ], [ -123.901843808999942, 49.118999712000125 ], [ -123.902254895999974, 49.11899649900009 ], [ -123.902250001999931, 49.118726670000036 ], [ -123.902661085999981, 49.118723457000101 ], [ -123.902651291999931, 49.118183798000103 ], [ -123.904295614999953, 49.118170930000097 ], [ -123.90430052100001, 49.118440758000091 ], [ -123.90471160299991, 49.118437538000059 ], [ -123.904716511999965, 49.118707367000106 ], [ -123.905538680999911, 49.118700920000023 ], [ -123.905543593999951, 49.11897075000013 ], [ -123.905954679999979, 49.118967525000116 ], [ -123.905959608999964, 49.119238141000061 ], [ -123.905970661999959, 49.119238356000068 ], [ -123.905962797999962, 49.119413207000065 ], [ -123.90597001499998, 49.119809352000054 ], [ -123.906293584999901, 49.119815649 ], [ -123.906275178999948, 49.120224929000059 ], [ -123.90694348699995, 49.120237933000034 ], [ -123.906943007999942, 49.12024860000011 ], [ -123.907648061999936, 49.120262315000033 ], [ -123.907633577999945, 49.120584561000037 ], [ -123.908201260999974, 49.120595600000136 ], [ -123.908194612999949, 49.120743549000053 ], [ -123.908385051999986, 49.120747252000058 ], [ -123.90885484599994, 49.120756385000071 ], [ -123.908850534999971, 49.120852358000036 ], [ -123.912108587, 49.120915637000081 ], [ -123.912198156999978, 49.118918359000126 ], [ -123.911709887, 49.118922217000097 ], [ -123.911697808999975, 49.118263335000044 ], [ -123.911943712999928, 49.118455194000077 ], [ -123.912475386999944, 49.118933007000138 ], [ -123.912540760999917, 49.119004562000107 ], [ -123.913036477999981, 49.119547192 ], [ -123.913520408999943, 49.12023570200008 ], [ -123.914062642999923, 49.121277365 ], [ -123.91461577299998, 49.12233989800005 ], [ -123.914974615999938, 49.122887197000104 ], [ -123.915392741999966, 49.123387514000086 ], [ -123.91640149299991, 49.124594505000061 ], [ -123.916438492999987, 49.124637058000111 ], [ -123.916482071999908, 49.124689679 ], [ -123.917810921999902, 49.126140998000075 ], [ -123.91950050399997, 49.12807209700005 ], [ -123.920189965999938, 49.128864318000083 ], [ -123.920285126999943, 49.128973681000062 ], [ -123.92062049399999, 49.129359005000055 ], [ -123.920964216999934, 49.129880794000023 ], [ -123.921212584, 49.130388102000055 ], [ -123.921347329999932, 49.130746408000064 ], [ -123.921349456999977, 49.130755325000038 ], [ -123.921511386, 49.131424097000085 ], [ -123.921648331999918, 49.1327188610001 ], [ -123.921653436999947, 49.132767091000069 ], [ -123.921682511999933, 49.133042178000061 ], [ -123.921741883999971, 49.133603330000057 ], [ -123.921752145999932, 49.133700651000026 ], [ -123.92180164299999, 49.134168453000015 ], [ -123.921835909999984, 49.134492299000051 ], [ -123.921984609999967, 49.135026503000091 ], [ -123.922136387999984, 49.135431086000061 ], [ -123.922333106999986, 49.135778898000069 ], [ -123.921987701999939, 49.135878492000096 ], [ -123.921752701999978, 49.135988300000058 ], [ -123.921597409999919, 49.136091602000121 ], [ -123.921441407999978, 49.136211894000034 ], [ -123.921299198999947, 49.136391979000052 ], [ -123.921087908999951, 49.136829215 ], [ -123.920716578999958, 49.137439863000083 ], [ -123.9207036, 49.137461202000033 ], [ -123.920685504999938, 49.137866107 ], [ -123.920744938, 49.138030031000071 ], [ -123.92079886499999, 49.138178833000048 ], [ -123.920866954999923, 49.138366631000125 ], [ -123.920869576999976, 49.138373901000065 ], [ -123.920948306999918, 49.138466353000148 ], [ -123.921542398000028, 49.139164104000038 ], [ -123.921948593999957, 49.139574510000052 ], [ -123.922994190999972, 49.140327713000062 ], [ -123.923339002999953, 49.140599002000037 ], [ -123.924972407999988, 49.141884198000106 ], [ -123.92629559099997, 49.142740903000046 ], [ -123.926519316999986, 49.142881200000083 ], [ -123.928654110999929, 49.144219980000088 ], [ -123.930291219999987, 49.145362901000034 ], [ -123.930447493999978, 49.145472010000042 ], [ -123.930848402, 49.145788594000123 ], [ -123.931184608999942, 49.146144506000056 ], [ -123.931542594999911, 49.146812297000103 ], [ -123.93213709399997, 49.148136807000128 ], [ -123.931725917000023, 49.148140494000117 ], [ -123.930732508999967, 49.148149401000097 ], [ -123.930754905999962, 49.147850980000051 ], [ -123.930792889999964, 49.147345502000078 ], [ -123.930839134999971, 49.147211571000184 ], [ -123.930847882999927, 49.147186212000122 ], [ -123.9309096369999, 49.146846630000056 ], [ -123.927207616999951, 49.146294806000057 ], [ -123.927018713999956, 49.145704190000068 ], [ -123.92753269399995, 49.145422214000114 ], [ -123.927388284999935, 49.144973594000113 ], [ -123.927067008999956, 49.144705900000169 ], [ -123.926545388999926, 49.143882690000055 ], [ -123.926044896999912, 49.143553705 ], [ -123.92552954699994, 49.143099372000137 ], [ -123.924902789999962, 49.142546808000084 ], [ -123.923567895999952, 49.141522815000023 ], [ -123.922595390999973, 49.140891806000099 ], [ -123.921625700999968, 49.140404791000023 ], [ -123.921494739999972, 49.140217032000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.811534500514933", "sL_AssetLoss": "4855", "sL_BldgLoss": "3940", "sL_StrLoss": "2070", "sL_NStrLoss": "1870", "sL_ContLoss": "915", "geom_point": "0101000020E6100000C898FDB222F95EC015C52FE5118E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.889899080999911, 49.109703425000099 ], [ -123.893277898999941, 49.109439308000027 ], [ -123.895374639999972, 49.109687778000065 ], [ -123.895345436999918, 49.110333927000042 ], [ -123.893754681999923, 49.110302787000116 ], [ -123.889875366999902, 49.110226751000063 ], [ -123.889899080999911, 49.109703425000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182251", "BldgCostT": "1505001", "sL_LossRatio": "0.846470059275844", "sL_AssetLoss": "10898.2", "sL_BldgLoss": "9225", "sL_StrLoss": "5713", "sL_NStrLoss": "3512", "sL_ContLoss": "1673.2", "geom_point": "0101000020E6100000EC871A7D73F95EC0ED2ECC193C8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.896363512999955, 49.111486096000057 ], [ -123.896353788999932, 49.110946437000031 ], [ -123.895942767999955, 49.110949627000124 ], [ -123.895933048999964, 49.110409967000123 ], [ -123.895522031999946, 49.110413156000078 ], [ -123.895509263999969, 49.109703730000028 ], [ -123.897397382999912, 49.109927438000049 ], [ -123.898251288, 49.109941630000023 ], [ -123.89865310499998, 49.109951343000091 ], [ -123.900161688999972, 49.109980338000064 ], [ -123.900975966999937, 49.110004116000013 ], [ -123.901364868999906, 49.110009453000067 ], [ -123.901612246999932, 49.110221842000037 ], [ -123.901642475999907, 49.11024773500008 ], [ -123.902401277999957, 49.11089932100009 ], [ -123.90087502199998, 49.11091124200005 ], [ -123.900879907999965, 49.111181072000072 ], [ -123.900468884999924, 49.111184278000017 ], [ -123.900473767999983, 49.111454107000078 ], [ -123.898829667, 49.111466921000023 ], [ -123.89883941699999, 49.112006580000049 ], [ -123.898428386999967, 49.112009781000033 ], [ -123.89843326, 49.112279610000016 ], [ -123.89761119399999, 49.112286006000076 ], [ -123.897616063999976, 49.112555836000119 ], [ -123.896793994999882, 49.112562225 ], [ -123.896798858999901, 49.11283205600003 ], [ -123.895474169999957, 49.112842338000135 ], [ -123.893951021999953, 49.112854144000018 ], [ -123.893921596999945, 49.112854371000061 ], [ -123.893902202999953, 49.111775050000077 ], [ -123.894701291999951, 49.111768860000033 ], [ -123.895135287999963, 49.111765495000064 ], [ -123.895130433999952, 49.111495665000071 ], [ -123.896363512999955, 49.111486096000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.818847209515096", "sL_AssetLoss": "4372", "sL_BldgLoss": "3580", "sL_StrLoss": "1930", "sL_NStrLoss": "1650", "sL_ContLoss": "792", "geom_point": "0101000020E610000097853CA3E9F95EC0B679CA07908E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.905876050999922, 49.114650257000051 ], [ -123.905871135999945, 49.114380428000089 ], [ -123.90546008699999, 49.114383652000093 ], [ -123.905450264999899, 49.113843994000021 ], [ -123.904628175999974, 49.113850438000078 ], [ -123.904637988999966, 49.114390098000115 ], [ -123.903404841999944, 49.114399755000065 ], [ -123.903390141999978, 49.113590266000102 ], [ -123.904623268999899, 49.11358060900006 ], [ -123.904613456999982, 49.11304095000002 ], [ -123.904202418999944, 49.113044170000073 ], [ -123.904192609999939, 49.112504512000093 ], [ -123.903781574999925, 49.112507731000079 ], [ -123.903773096999927, 49.112040960000108 ], [ -123.90495947299992, 49.11300510300007 ], [ -123.906092844999961, 49.113889625000063 ], [ -123.907055629999959, 49.11464099400014 ], [ -123.905876050999922, 49.114650257000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.815866576515664", "sL_AssetLoss": "4437", "sL_BldgLoss": "3620", "sL_StrLoss": "1930", "sL_NStrLoss": "1690", "sL_ContLoss": "817", "geom_point": "0101000020E6100000DE482C6B13F95EC056DAA0FECC904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.886311195999895, 49.124407157000078 ], [ -123.886520894999975, 49.124411277000036 ], [ -123.888567813999899, 49.127287799000044 ], [ -123.889879490999945, 49.128518304000124 ], [ -123.892387607999922, 49.130082100000038 ], [ -123.893252510999943, 49.130849691000016 ], [ -123.893996712000018, 49.131833890000046 ], [ -123.894886105999987, 49.133256695000085 ], [ -123.894938182999923, 49.133544701000083 ], [ -123.894842280999981, 49.133542825000127 ], [ -123.890454583999926, 49.13345690400007 ], [ -123.890474572999949, 49.133015911 ], [ -123.893566889999988, 49.132916461000043 ], [ -123.893601006999958, 49.132574130000108 ], [ -123.89404499699999, 49.132578704000132 ], [ -123.89405879499999, 49.132332196000078 ], [ -123.894009075999975, 49.132160093000032 ], [ -123.893801391999943, 49.131818306000092 ], [ -123.892653523000021, 49.130434201000114 ], [ -123.8924386, 49.130251685000118 ], [ -123.889963993999956, 49.128745993000074 ], [ -123.889631285999954, 49.12850361200001 ], [ -123.888836698999953, 49.12778820700003 ], [ -123.888430295999953, 49.127361509000082 ], [ -123.887876597999977, 49.126629820000048 ], [ -123.887781200999939, 49.126503733000071 ], [ -123.887368403999943, 49.125958191000038 ], [ -123.886311195999895, 49.124407157000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91900084", "BldgCostT": "61908334", "sL_LossRatio": "0.795699253432242", "sL_AssetLoss": "588828", "sL_BldgLoss": "468530", "sL_StrLoss": "271299", "sL_NStrLoss": "197231", "sL_ContLoss": "120298", "geom_point": "0101000020E61000004F2ABFB18CF75EC07F78E968CD914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.892370519999986, 49.163871169000032 ], [ -123.892355973999912, 49.163061686000042 ], [ -123.89193871, 49.163064910000045 ], [ -123.891880204999964, 49.162884484000088 ], [ -123.89118780599992, 49.161738011000061 ], [ -123.890974499, 49.161183295000086 ], [ -123.891087721999966, 49.161182421000063 ], [ -123.891082879999942, 49.160912593000084 ], [ -123.890863522999936, 49.160914285000032 ], [ -123.890432001999969, 49.160197006000033 ], [ -123.890266176999916, 49.159325393000096 ], [ -123.89023013799999, 49.159252537000043 ], [ -123.890221315999952, 49.158760313000109 ], [ -123.889987544999883, 49.158762115000094 ], [ -123.889376270999961, 49.157526318000066 ], [ -123.889364658999966, 49.156877854000115 ], [ -123.888953255999951, 49.15688102200005 ], [ -123.888948427999978, 49.156611194000106 ], [ -123.8886944, 49.156613149000108 ], [ -123.888531554999972, 49.156308410000079 ], [ -123.888527375, 49.15607470300008 ], [ -123.887293185999937, 49.156084193000034 ], [ -123.887291183999977, 49.155972077000058 ], [ -123.887475496999983, 49.155901587000066 ], [ -123.887105506999944, 49.155193684000025 ], [ -123.886858710999945, 49.15435060100004 ], [ -123.887438619999926, 49.153860704000081 ], [ -123.88751879599999, 49.153669892000039 ], [ -123.886674308999901, 49.152453598000093 ], [ -123.886479384999987, 49.152338191000069 ], [ -123.88557619, 49.152091188000043 ], [ -123.885575443999954, 49.152049392 ], [ -123.885427510999932, 49.152050527000064 ], [ -123.884749324999916, 49.151865051000122 ], [ -123.884747911999924, 49.151785871000094 ], [ -123.884515300999951, 49.151787653000042 ], [ -123.884335404999945, 49.151724507000019 ], [ -123.884331749999944, 49.151519193000119 ], [ -123.883762896999926, 49.151523548000014 ], [ -123.883584409999969, 49.151460895000049 ], [ -123.882677846999911, 49.151055090000057 ], [ -123.882671932999969, 49.150722296000041 ], [ -123.881552515999942, 49.150730848000066 ], [ -123.881514688999957, 49.15072029200013 ], [ -123.880606972999956, 49.150275476000054 ], [ -123.880605606999964, 49.150198342000074 ], [ -123.880451963999946, 49.150199513000096 ], [ -123.880267883999949, 49.150109305000043 ], [ -123.880191826999933, 49.150064223000129 ], [ -123.880189478999966, 49.149931649000052 ], [ -123.879970973999946, 49.149933314000052 ], [ -123.879776060999916, 49.149817781000081 ], [ -123.87977335399998, 49.14966495500007 ], [ -123.879521471999951, 49.149666873000044 ], [ -123.879360298, 49.149571336000115 ], [ -123.87935246, 49.149128429000079 ], [ -123.878197929999942, 49.149137216000021 ], [ -123.877700489999967, 49.148766604000073 ], [ -123.877697567999974, 49.148601288000094 ], [ -123.87748081299992, 49.148602935000021 ], [ -123.877283613999978, 49.148456011000043 ], [ -123.877281468999982, 49.148334584000033 ], [ -123.877122260999954, 49.148335795000108 ], [ -123.8771094, 49.1483262120001 ], [ -123.877067, 49.148226497000017 ], [ -123.877325989, 49.14815250600001 ], [ -123.877072176999931, 49.147767893 ], [ -123.877437117999975, 49.147468804 ], [ -123.87743649, 49.147360606000049 ], [ -123.876799417999962, 49.147023096000112 ], [ -123.87641819, 49.147179704000123 ], [ -123.876266995999984, 49.147154113000092 ], [ -123.876057897999928, 49.146911987000095 ], [ -123.875835510999977, 49.146750398000052 ], [ -123.875848932999943, 49.146456397000108 ], [ -123.875435211999942, 49.146459535000083 ], [ -123.875188341999916, 49.146280154000138 ], [ -123.875182027999955, 49.14592172200004 ], [ -123.874770714999954, 49.14592483900006 ], [ -123.87476121399996, 49.145385179000186 ], [ -123.873964993999962, 49.145391209000081 ], [ -123.873938251999959, 49.14537177600004 ], [ -123.873932456999967, 49.145042151000098 ], [ -123.87393889699996, 49.14503059900003 ], [ -123.873932169999946, 49.145025908000072 ], [ -123.873924360999979, 49.144581918000029 ], [ -123.873302139999907, 49.144586625000073 ], [ -123.873099243999931, 49.144445157000028 ], [ -123.873092273999987, 49.144048480000073 ], [ -123.872536366999967, 49.144052683000041 ], [ -123.872266338999907, 49.143864399000037 ], [ -123.872264941999944, 49.143784868000097 ], [ -123.87215348899997, 49.143785710000031 ], [ -123.871849893, 49.143574016000088 ], [ -123.871837120999899, 49.142845994000069 ], [ -123.87196428599999, 49.142597999 ], [ -123.871878001, 49.142401496000033 ], [ -123.871829, 49.142383090000102 ], [ -123.871815775999934, 49.141629330000058 ], [ -123.872638331999966, 49.141623116000034 ], [ -123.872628855999949, 49.141083455000043 ], [ -123.873453146999935, 49.141077222000064 ], [ -123.87347782099998, 49.140537303 ], [ -123.872208111999953, 49.140546901000086 ], [ -123.872203375999973, 49.140277071000121 ], [ -123.87161354599999, 49.140281526000102 ], [ -123.871532296999973, 49.142057824000062 ], [ -123.870931486, 49.142045941000035 ], [ -123.870842991999965, 49.142012697000062 ], [ -123.87004641, 49.141903010000121 ], [ -123.869646189, 49.142020510000044 ], [ -123.869274321999953, 49.142013149000086 ], [ -123.869385715999925, 49.141834705000051 ], [ -123.869327703999971, 49.141638090000065 ], [ -123.8675206, 49.140994393 ], [ -123.867107717999957, 49.140934599000012 ], [ -123.866327998999978, 49.140985806000103 ], [ -123.865384382999977, 49.14039049900002 ], [ -123.86490074699995, 49.14051308500008 ], [ -123.864909056999963, 49.140331945000113 ], [ -123.864626547999961, 49.140334060000086 ], [ -123.864385428, 49.140113387000085 ], [ -123.864379911999976, 49.13979617500005 ], [ -123.864031353999948, 49.139798785000082 ], [ -123.863968001999979, 49.139762065000063 ], [ -123.863963955999935, 49.139529422000088 ], [ -123.863571674999918, 49.139532358000054 ], [ -123.863552499999969, 49.139521244000058 ], [ -123.863548005999988, 49.139262667000061 ], [ -123.86313674799996, 49.13926574300006 ], [ -123.863132060999988, 49.138995911000073 ], [ -123.862464293999949, 49.139000901000067 ], [ -123.862457649999968, 49.139145533000033 ], [ -123.86231850199998, 49.13910021200013 ], [ -123.86124810199999, 49.139071702000187 ], [ -123.86058329799998, 49.139373599000074 ], [ -123.859598512999952, 49.139570196000058 ], [ -123.858790214999985, 49.139567297 ], [ -123.857978595999896, 49.139410687000108 ], [ -123.857632198999909, 49.140043002000013 ], [ -123.857511310999939, 49.140142701000094 ], [ -123.857194604999947, 49.140164102 ], [ -123.857030116999951, 49.140084294000054 ], [ -123.857311312999954, 49.13965849800006 ], [ -123.857294116999952, 49.139533096000029 ], [ -123.857155799999987, 49.139453407000083 ], [ -123.856991691999966, 49.139454787000076 ], [ -123.856978108999911, 49.139525994000032 ], [ -123.854799284999956, 49.139533107000076 ], [ -123.85479699699999, 49.139416408000059 ], [ -123.854129983999897, 49.13962859500009 ], [ -123.853781508999958, 49.139379290000129 ], [ -123.853329792999958, 49.139400706000067 ], [ -123.853327080999961, 49.139202693000115 ], [ -123.852544319999978, 49.139154298000065 ], [ -123.852267483999952, 49.138967706000074 ], [ -123.851412292999939, 49.138721313000048 ], [ -123.850838817999943, 49.138906497000015 ], [ -123.850522511999955, 49.138845299000145 ], [ -123.8501116899999, 49.138875208000123 ], [ -123.849733893999925, 49.139228387000095 ], [ -123.849416486999985, 49.139114397000107 ], [ -123.847991884999971, 49.139178497000096 ], [ -123.847557808, 49.139433394000015 ], [ -123.847397686999955, 49.139652199000089 ], [ -123.84710217899999, 49.139654368000059 ], [ -123.847108868999925, 49.140046860000076 ], [ -123.84700056899996, 49.140194845000039 ], [ -123.846160975999965, 49.140201002000026 ], [ -123.846372687999946, 49.139883497000078 ], [ -123.846561207999954, 49.138875204000023 ], [ -123.846188823999967, 49.138742703000041 ], [ -123.845325514999956, 49.138694307000037 ], [ -123.84484159, 49.138527712000055 ], [ -123.842339590999984, 49.138069088000094 ], [ -123.841872477999971, 49.137913802000071 ], [ -123.842010549999955, 49.134936324000101 ], [ -123.847434904999972, 49.13504496000008 ], [ -123.847426032999934, 49.134524533000032 ], [ -123.847837253999941, 49.134521513999985 ], [ -123.847814243999935, 49.133172351000027 ], [ -123.847403033999967, 49.133175369000043 ], [ -123.847384635, 49.132096039000047 ], [ -123.848207037999913, 49.13209 ], [ -123.848197830999965, 49.131550334000089 ], [ -123.847786634999963, 49.131553354000069 ], [ -123.847782033, 49.131283522000011 ], [ -123.847370836999971, 49.131286540000062 ], [ -123.847366238999925, 49.131016708000061 ], [ -123.846543852999929, 49.131022740000056 ], [ -123.846539258999954, 49.130752908000069 ], [ -123.846128066999981, 49.130755922000077 ], [ -123.846123474999914, 49.130486090000026 ], [ -123.845301098999954, 49.130492113000095 ], [ -123.8452965099999, 49.130222280000119 ], [ -123.844885323999989, 49.130225290000105 ], [ -123.844871567999945, 49.129415791000056 ], [ -123.848161004999952, 49.12939167100005 ], [ -123.84816560899999, 49.129661505000108 ], [ -123.84968288499999, 49.129650348000069 ], [ -123.849719183999966, 49.128864626000087 ], [ -123.848382885999968, 49.128837914000108 ], [ -123.848437629999978, 49.12765361600006 ], [ -123.847071111999952, 49.127626283000041 ], [ -123.847083711999957, 49.127353825000107 ], [ -123.84640120200001, 49.127340166000138 ], [ -123.846425591999974, 49.126812994000083 ], [ -123.846841345999962, 49.126812018000045 ], [ -123.850560676999976, 49.126806166000073 ], [ -123.850709230999925, 49.128065393000092 ], [ -123.850710309999897, 49.12807436100006 ], [ -123.850935238999966, 49.129980414000059 ], [ -123.853105219999946, 49.129942214000053 ], [ -123.853109039999964, 49.130164815000057 ], [ -123.853931410999934, 49.130158735000059 ], [ -123.853936045999959, 49.13042856800012 ], [ -123.854347232999899, 49.130425525000128 ], [ -123.85435186899997, 49.13069535800004 ], [ -123.854763058999936, 49.130692314000044 ], [ -123.854767698, 49.130962147000098 ], [ -123.855590080999946, 49.130956054000102 ], [ -123.855594724999946, 49.131225887000056 ], [ -123.856005916999933, 49.131222839000081 ], [ -123.856010563999959, 49.131492672000107 ], [ -123.856421759999961, 49.131489621000057 ], [ -123.856412462999984, 49.130949958000073 ], [ -123.85764603699999, 49.130940801000072 ], [ -123.857650692, 49.131210633000059 ], [ -123.858061884999969, 49.131207577000069 ], [ -123.85805722899994, 49.130937745000011 ], [ -123.859290801, 49.13092857 ], [ -123.859295464999903, 49.131198402000031 ], [ -123.860117850999956, 49.131192279000068 ], [ -123.860122518999972, 49.131462110000029 ], [ -123.86053371399997, 49.131459046 ], [ -123.860552395999946, 49.132538373000088 ], [ -123.860823665999987, 49.132536351000091 ], [ -123.86091091899999, 49.13063793000002 ], [ -123.856719493999918, 49.130554528000047 ], [ -123.856750649999967, 49.129877941000061 ], [ -123.864651243999987, 49.129738222000071 ], [ -123.864235534999963, 49.128386919000071 ], [ -123.864198723999905, 49.128267312000027 ], [ -123.864196020999941, 49.128258488000021 ], [ -123.863655748999975, 49.12650220000009 ], [ -123.864048419999961, 49.125566302000088 ], [ -123.864168443, 49.125077402000102 ], [ -123.864223099999904, 49.12489249000005 ], [ -123.864207896999957, 49.124759359000102 ], [ -123.868774797999919, 49.126638553000149 ], [ -123.875167076999929, 49.126545051000036 ], [ -123.875064380999945, 49.12879467400009 ], [ -123.869592190999967, 49.128686470000069 ], [ -123.869605971999974, 49.128385361000035 ], [ -123.86893424599999, 49.1283720590001 ], [ -123.868915036999965, 49.12879162600008 ], [ -123.866655157999944, 49.128746845000123 ], [ -123.86666400099999, 49.129254256000102 ], [ -123.86748635399999, 49.129248080000082 ], [ -123.867491061999914, 49.12951791100005 ], [ -123.868724595999964, 49.129508637000136 ], [ -123.868752885999967, 49.131127624000058 ], [ -123.867108118999909, 49.131139989000097 ], [ -123.867124310999912, 49.13206829600005 ], [ -123.867131635999954, 49.13248828600014 ], [ -123.867131650999909, 49.132489146000076 ], [ -123.867132645999902, 49.132489138000039 ], [ -123.867622309999973, 49.132485459000044 ], [ -123.868776461999971, 49.132476780000076 ], [ -123.86878589399997, 49.133016442000056 ], [ -123.869197098999962, 49.133013347000038 ], [ -123.869201817999937, 49.133283178000099 ], [ -123.870024235999949, 49.133276984000098 ], [ -123.870033679999921, 49.133816646000056 ], [ -123.870856108999988, 49.133810446000062 ], [ -123.870860835999963, 49.134080277000066 ], [ -123.871683265999962, 49.13407407000004 ], [ -123.871687997, 49.134343901000079 ], [ -123.872099214999963, 49.134340795000071 ], [ -123.872103949999953, 49.134610626000018 ], [ -123.872515169999957, 49.134607519000021 ], [ -123.872519904999976, 49.13487735000006 ], [ -123.872931127999919, 49.134874242000144 ], [ -123.872935865999963, 49.135144072000053 ], [ -123.873758313999929, 49.135137851000081 ], [ -123.873763056999934, 49.135407682000107 ], [ -123.874585509999974, 49.135401454000011 ], [ -123.874590255999934, 49.135671284000082 ], [ -123.875001485, 49.135668169000034 ], [ -123.875006233999954, 49.135937999000092 ], [ -123.875828694999967, 49.135931763000094 ], [ -123.875833450999977, 49.136201593000067 ], [ -123.876655913999983, 49.136195351000062 ], [ -123.876660674999968, 49.13646518200008 ], [ -123.87707191, 49.136462059000074 ], [ -123.877076669999923, 49.136731889000082 ], [ -123.877487906999988, 49.136728765000043 ], [ -123.877492670999985, 49.13699859500008 ], [ -123.877903909999986, 49.136995469000027 ], [ -123.877908674999958, 49.137265299000042 ], [ -123.878319915999896, 49.137262172000128 ], [ -123.878328981999985, 49.137775193000031 ], [ -123.878329452999978, 49.137801831000097 ], [ -123.878368701999989, 49.137801533000093 ], [ -123.879974434999937, 49.137789305000091 ], [ -123.879983988999953, 49.138328965000078 ], [ -123.880395238999967, 49.13832583100006 ], [ -123.880404796999926, 49.13886549000005 ], [ -123.880816051999957, 49.138862354000075 ], [ -123.880825615, 49.139402014000034 ], [ -123.881236874999942, 49.139398876000016 ], [ -123.881246442999938, 49.139938535000077 ], [ -123.881657704999938, 49.13993539600002 ], [ -123.881676852999973, 49.141014715000061 ], [ -123.882088125999928, 49.141011574000046 ], [ -123.882097702999943, 49.141551234000062 ], [ -123.882508978999965, 49.141548091000111 ], [ -123.882518561999959, 49.14208775000003 ], [ -123.88292984399996, 49.142084606000012 ], [ -123.88293463699992, 49.142354436000097 ], [ -123.883345919, 49.142351290000072 ], [ -123.883355511999952, 49.142890949000062 ], [ -123.884178085999949, 49.142884653000074 ], [ -123.884187687999926, 49.143424312000072 ], [ -123.884598978999961, 49.143421161000056 ], [ -123.884613389999942, 49.144230651000015 ], [ -123.885024686999913, 49.144227498000092 ], [ -123.885029493999923, 49.144497328000128 ], [ -123.885440792999958, 49.144494173000041 ], [ -123.885469641999947, 49.14611315100008 ], [ -123.885880957, 49.146109995000117 ], [ -123.885885765999944, 49.146379825000039 ], [ -123.886297081999928, 49.146376667000091 ], [ -123.886311521999986, 49.147186156000075 ], [ -123.88672284399992, 49.147182998000119 ], [ -123.886727659999963, 49.147452827000052 ], [ -123.88755030699997, 49.147446506000058 ], [ -123.887569588999952, 49.14852582200006 ], [ -123.887980920999937, 49.148522660000097 ], [ -123.887990567999935, 49.14906231700008 ], [ -123.888193329000018, 49.14906075800009 ], [ -123.888234690999951, 49.149293288000088 ], [ -123.88841246599999, 49.149649807000088 ], [ -123.888416378999977, 49.149868640000086 ], [ -123.888521182999938, 49.149867834000069 ], [ -123.888839173999969, 49.150505528000018 ], [ -123.88884220499996, 49.150674961000085 ], [ -123.888923352999882, 49.150674337000105 ], [ -123.88969263499996, 49.152216956000139 ], [ -123.889693900999958, 49.152287599000054 ], [ -123.889727733999948, 49.152287337000111 ], [ -123.890098312999953, 49.153030404000063 ], [ -123.890788585999957, 49.154058693000138 ], [ -123.891528489999956, 49.154728009000046 ], [ -123.891982506999938, 49.155684862000086 ], [ -123.891969703999933, 49.15596738000005 ], [ -123.891405414999952, 49.155956331000027 ], [ -123.891411983999916, 49.156322335000056 ], [ -123.891823381, 49.156319158000045 ], [ -123.891837914999925, 49.157128644000124 ], [ -123.892660722999963, 49.157122285000057 ], [ -123.892665572999988, 49.157392114000096 ], [ -123.892961538999913, 49.157389825000152 ], [ -123.893080334999979, 49.157575591000111 ], [ -123.893096788999983, 49.158490645000029 ], [ -123.892933685999964, 49.158144704000037 ], [ -123.892674119999981, 49.158200299000015 ], [ -123.892662015, 49.158335596 ], [ -123.892970893999973, 49.15871160400016 ], [ -123.892977569999942, 49.158739030000071 ], [ -123.89268982099999, 49.15874125400007 ], [ -123.892709219999958, 49.159820568000022 ], [ -123.892304716999931, 49.159823694000039 ], [ -123.892297794999976, 49.159823748000065 ], [ -123.892298203999971, 49.15984659 ], [ -123.892302641999947, 49.160093576000072 ], [ -123.892714070999958, 49.160090396000065 ], [ -123.892728620999947, 49.160899880000066 ], [ -123.892523431999933, 49.160901467000016 ], [ -123.892348644999927, 49.160902818000075 ], [ -123.892317184999939, 49.160903060000095 ], [ -123.892322033999932, 49.161172889000049 ], [ -123.892439619999948, 49.161171980000105 ], [ -123.892608672999955, 49.161170673000044 ], [ -123.89273347299995, 49.161169709000099 ], [ -123.892738321999929, 49.161439536000074 ], [ -123.893561201999944, 49.161433172000088 ], [ -123.893570911999987, 49.161972828000032 ], [ -123.893982356, 49.161969643000099 ], [ -123.894006642999955, 49.163318783000129 ], [ -123.893595186999974, 49.163321968000083 ], [ -123.89360489799995, 49.163861623000059 ], [ -123.892370519999986, 49.163871169000032 ] ], [ [ -123.874262073999944, 49.140395866000048 ], [ -123.874259709999961, 49.140261519000035 ], [ -123.873848442999972, 49.140264631 ], [ -123.873850606999937, 49.14038773900009 ], [ -123.874262073999944, 49.140395866000048 ] ], [ [ -123.864995759999886, 49.138442232000088 ], [ -123.865020529999953, 49.137902313000083 ], [ -123.863524566999899, 49.137913511000093 ], [ -123.863533942999965, 49.138453173000116 ], [ -123.864995759999886, 49.138442232000088 ] ], [ [ -123.862702069999941, 49.137919660000122 ], [ -123.86269270299999, 49.137379997000046 ], [ -123.862538692999976, 49.137381148000074 ], [ -123.862513893999946, 49.137921066000018 ], [ -123.862702069999941, 49.137919660000122 ] ], [ [ -123.868038865999935, 49.13733992600001 ], [ -123.868045335999966, 49.137710333000101 ], [ -123.868868220999914, 49.137726630000088 ], [ -123.868851917999933, 49.136794077000026 ], [ -123.870085633999949, 49.13678478600005 ], [ -123.870076185999906, 49.136245125000109 ], [ -123.869664952999955, 49.136248223000067 ], [ -123.869660232999962, 49.135978391000059 ], [ -123.869249001999947, 49.135981489000059 ], [ -123.869244282999915, 49.135711658000062 ], [ -123.868833053999936, 49.135714754000105 ], [ -123.868823621, 49.135175092000054 ], [ -123.867589945999924, 49.135184369000072 ], [ -123.867599364999975, 49.135724031000066 ], [ -123.866776905999956, 49.135730208000105 ], [ -123.866781610999951, 49.136000040000084 ], [ -123.867192841999966, 49.135996952000035 ], [ -123.867211672999971, 49.137076276000087 ], [ -123.866800431999962, 49.137079365000069 ], [ -123.866805137999933, 49.137349195000127 ], [ -123.868038865999935, 49.13733992600001 ] ], [ [ -123.866399566999945, 49.137677718000063 ], [ -123.866398596999915, 49.137622113000084 ], [ -123.865164860999954, 49.137631365000111 ], [ -123.865165240999943, 49.137653241000088 ], [ -123.866399566999945, 49.137677718000063 ] ], [ [ -123.870500641999953, 49.137861125000057 ], [ -123.870474396999967, 49.13843462300008 ], [ -123.870525838999967, 49.138435641000108 ], [ -123.870515773999927, 49.137861009000119 ], [ -123.870500641999953, 49.137861125000057 ] ], [ [ -123.859357614, 49.134793827000067 ], [ -123.859351434999923, 49.134436385000114 ], [ -123.860585093999973, 49.134427195000093 ], [ -123.86057575199996, 49.133887532000109 ], [ -123.860164536999932, 49.133890596000064 ], [ -123.860161363999964, 49.13370722400002 ], [ -123.860159868999972, 49.133620765000103 ], [ -123.859337441999983, 49.133626889000055 ], [ -123.859338253999965, 49.133673803000065 ], [ -123.859342106999961, 49.133896721000042 ], [ -123.858108459999968, 49.13390589699999 ], [ -123.858122434000023, 49.134715392000061 ], [ -123.858533656999967, 49.13471233600005 ], [ -123.858534780999918, 49.13477745600003 ], [ -123.859357614, 49.134793827000067 ] ], [ [ -123.86716459799996, 49.134377964000102 ], [ -123.867174011999978, 49.134917627000036 ], [ -123.867585235999954, 49.134914537000071 ], [ -123.867575816999974, 49.13437487500007 ], [ -123.86716459799996, 49.134377964000102 ] ], [ [ -123.867103411999963, 49.130870157000047 ], [ -123.867094002, 49.130330494000077 ], [ -123.866402154999903, 49.130335688000088 ], [ -123.86637740399999, 49.130875608000096 ], [ -123.867103411999963, 49.130870157000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9902250", "BldgCostT": "5355000", "sL_LossRatio": "0.67764379425027", "sL_AssetLoss": "49011", "sL_BldgLoss": "33212", "sL_StrLoss": "15793", "sL_NStrLoss": "17419", "sL_ContLoss": "15799", "geom_point": "0101000020E61000006B58DF0281F45EC0EBCB2D0840914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.819092516999959, 49.135996807000048 ], [ -123.818457683999924, 49.135730500000101 ], [ -123.818136998999975, 49.135408586000075 ], [ -123.81811775499996, 49.135314168000029 ], [ -123.817974078999953, 49.134609694000083 ], [ -123.818161597999961, 49.134383205000063 ], [ -123.81839378399999, 49.134310598000098 ], [ -123.818418893999961, 49.134183796000052 ], [ -123.817892790999949, 49.133863408000074 ], [ -123.817369900999935, 49.133696707000055 ], [ -123.817264242999926, 49.133611531000106 ], [ -123.81726531299995, 49.133588711000094 ], [ -123.822737956999916, 49.133699575000072 ], [ -123.822629174999946, 49.13602474400011 ], [ -123.8222053099999, 49.136028203000137 ], [ -123.82142049, 49.135800288000098 ], [ -123.820764701999948, 49.135929909000083 ], [ -123.820079691999965, 49.135917112000101 ], [ -123.819710917999942, 49.136082306000098 ], [ -123.819092516999959, 49.135996807000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.82518304740527", "sL_AssetLoss": "20582.1", "sL_BldgLoss": "16984", "sL_StrLoss": "9760", "sL_NStrLoss": "7224", "sL_ContLoss": "3598.1", "geom_point": "0101000020E6100000150A4B1BD2F55EC0A49E2E20EE8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.840705015999973, 49.126207807000149 ], [ -123.840695891999957, 49.125668140000087 ], [ -123.840284742999927, 49.125671134000122 ], [ -123.840275623999972, 49.125131467000081 ], [ -123.839453332999938, 49.125137449000057 ], [ -123.839448777999976, 49.124867615 ], [ -123.839037635999915, 49.124870604000115 ], [ -123.839028530999926, 49.124330937000096 ], [ -123.838617391999918, 49.124333924000148 ], [ -123.8385991899999, 49.12325458900002 ], [ -123.837776930999979, 49.123260558000069 ], [ -123.837763292999966, 49.122451058000131 ], [ -123.8402300299999, 49.122433131000022 ], [ -123.840248265999904, 49.123512465000061 ], [ -123.841070528999964, 49.12350647800006 ], [ -123.841075094999894, 49.123776311000015 ], [ -123.841486227999923, 49.123773316000097 ], [ -123.841495358999978, 49.124312982000092 ], [ -123.843139909999977, 49.124300983000055 ], [ -123.843153635999982, 49.125110484000082 ], [ -123.844798212999962, 49.125098461000043 ], [ -123.844816549999933, 49.1261777940001 ], [ -123.843583091999932, 49.12618681300011 ], [ -123.843578512999969, 49.12591698000012 ], [ -123.843167360999942, 49.125919984000063 ], [ -123.84315821099996, 49.12538031600009 ], [ -123.841924770999967, 49.125389318000011 ], [ -123.841938476999928, 49.126198819000159 ], [ -123.840705015999973, 49.126207807000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113141750", "BldgCostT": "77765000", "sL_LossRatio": "0.846621869451843", "sL_AssetLoss": "628699.8", "sL_BldgLoss": "532271", "sL_StrLoss": "336112", "sL_NStrLoss": "196159", "sL_ContLoss": "96428.8", "geom_point": "0101000020E6100000D18ACAE16EF65EC0B6661292588F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.850935238999966, 49.129980414000059 ], [ -123.850710309999897, 49.12807436100006 ], [ -123.850709230999925, 49.128065393000092 ], [ -123.850560676999976, 49.126806166000073 ], [ -123.846841345999962, 49.126812018000045 ], [ -123.846425591999974, 49.126812994000083 ], [ -123.846567706999977, 49.1237411050001 ], [ -123.847294487999946, 49.123755649000046 ], [ -123.847325813999959, 49.12307822200011 ], [ -123.847355505999943, 49.123078815000014 ], [ -123.84737523699998, 49.122652121000122 ], [ -123.848095477999948, 49.122666530000068 ], [ -123.848104124999935, 49.122479461000069 ], [ -123.848082259999913, 49.12247902400005 ], [ -123.848105591999939, 49.121974255000019 ], [ -123.846447730999969, 49.121941083000138 ], [ -123.84661421299991, 49.118341991000108 ], [ -123.846797851999952, 49.11834566600006 ], [ -123.846833491999988, 49.117575027000065 ], [ -123.844977141999919, 49.117537855000052 ], [ -123.84500914799996, 49.116846391000095 ], [ -123.844687673999914, 49.116839950000056 ], [ -123.84468945199994, 49.116801558000091 ], [ -123.844516453999987, 49.116798091000113 ], [ -123.844515283999968, 49.11682336200009 ], [ -123.843169028999981, 49.116796377000071 ], [ -123.843166332999928, 49.116854595000127 ], [ -123.84177662699993, 49.116826722000098 ], [ -123.841737919999929, 49.117661728000073 ], [ -123.841552715999939, 49.117658012000064 ], [ -123.841480997999923, 49.119204930000109 ], [ -123.841089472999911, 49.119197073000059 ], [ -123.841005481999915, 49.121008236000122 ], [ -123.839359914999974, 49.120975199000064 ], [ -123.839355719999972, 49.121065577000081 ], [ -123.836509059999969, 49.121008367000123 ], [ -123.836495518999925, 49.121299747000094 ], [ -123.835245584999939, 49.121274603000103 ], [ -123.835245366999914, 49.121279277000085 ], [ -123.832190653999973, 49.121217768000164 ], [ -123.832083869, 49.123510849000091 ], [ -123.830293828999913, 49.123474765000019 ], [ -123.830285406, 49.123655492000111 ], [ -123.82481392399994, 49.123545011000033 ], [ -123.824832531999931, 49.123146771000066 ], [ -123.823631405999961, 49.123122481000145 ], [ -123.823636897999961, 49.123005001000095 ], [ -123.822691953999964, 49.122985882000151 ], [ -123.822703003999948, 49.122618635000052 ], [ -123.822702586999952, 49.121205455000087 ], [ -123.822702400999958, 49.120502789000099 ], [ -123.822680619999971, 49.119742779000063 ], [ -123.822658213999915, 49.118960092000158 ], [ -123.822955486999959, 49.118972392000053 ], [ -123.822976392999948, 49.118973240000095 ], [ -123.823222612, 49.118983422000092 ], [ -123.823856507999935, 49.119009603000038 ], [ -123.823841478999967, 49.118832697000123 ], [ -123.823776182999907, 49.118676501000046 ], [ -123.823603391999967, 49.118508191000046 ], [ -123.823339811999972, 49.118347988000046 ], [ -123.822668202, 49.118014606000038 ], [ -123.82252199599999, 49.117861284000085 ], [ -123.822536124, 49.117729616000112 ], [ -123.822728226, 49.115938986000032 ], [ -123.822778643999982, 49.115468824000033 ], [ -123.82278170799998, 49.115440298000067 ], [ -123.822785624999966, 49.115308442000085 ], [ -123.822836313, 49.113598210000127 ], [ -123.822843291999959, 49.113363957000089 ], [ -123.822893297999926, 49.111677001000032 ], [ -123.825874495, 49.11170857900003 ], [ -123.827191996999971, 49.111722507000081 ], [ -123.828392595999958, 49.112443269 ], [ -123.829043610999989, 49.112834084000056 ], [ -123.829522213999951, 49.113121396000089 ], [ -123.83021786799999, 49.113601834000178 ], [ -123.830866785999888, 49.114049972000053 ], [ -123.830829225999963, 49.114856204000027 ], [ -123.825974164999948, 49.11475818800006 ], [ -123.825937396999961, 49.115545613000059 ], [ -123.826087032999908, 49.115548638000071 ], [ -123.826061647999978, 49.116092328000029 ], [ -123.826588056, 49.116102965000046 ], [ -123.826615669999953, 49.115511389000105 ], [ -123.83088289599999, 49.115597522000094 ], [ -123.830934454999962, 49.114490793000108 ], [ -123.831396312999942, 49.114500105000012 ], [ -123.832633282999922, 49.115687907000066 ], [ -123.833095898999915, 49.115952896000103 ], [ -123.833375202999946, 49.116012613000123 ], [ -123.833664101999943, 49.11604088700004 ], [ -123.834848702999949, 49.115941401000029 ], [ -123.835715302999958, 49.115941304000081 ], [ -123.835735803999967, 49.115941298000109 ], [ -123.836167007999975, 49.115999490000057 ], [ -123.836550687999988, 49.116079199000076 ], [ -123.838111308999942, 49.116432087000078 ], [ -123.838111003999984, 49.115997111000105 ], [ -123.838491900999941, 49.115606712000087 ], [ -123.839247696999934, 49.115485015000061 ], [ -123.83999710099998, 49.115489217000061 ], [ -123.840807892999976, 49.11549378400008 ], [ -123.84472658599999, 49.115508442000092 ], [ -123.845630853999978, 49.115511787000067 ], [ -123.85046659599999, 49.115529600000073 ], [ -123.851645656999949, 49.115520213000096 ], [ -123.85587986299997, 49.115486445000116 ], [ -123.855948402999957, 49.115485898000067 ], [ -123.856757242999905, 49.115486666000017 ], [ -123.864246302999945, 49.115493409000059 ], [ -123.872420591000022, 49.115015192000058 ], [ -123.873878789999978, 49.114934004000119 ], [ -123.873906757999976, 49.11490579500007 ], [ -123.874029397999919, 49.114782087000059 ], [ -123.874151516000012, 49.114451871000028 ], [ -123.874227750999978, 49.114245645000068 ], [ -123.877219094999987, 49.115078293000074 ], [ -123.877298851999967, 49.115102721000078 ], [ -123.877543080999914, 49.115177501000069 ], [ -123.877868193999944, 49.115193796000028 ], [ -123.878395792999981, 49.115149292000055 ], [ -123.878607690999942, 49.115155304000083 ], [ -123.878763810999914, 49.115185404000037 ], [ -123.878924383999973, 49.11526509600003 ], [ -123.879080003999945, 49.115395107000069 ], [ -123.879225698999932, 49.115651994000054 ], [ -123.879218032999944, 49.116222918000105 ], [ -123.879217100999981, 49.116292999000095 ], [ -123.879945154999945, 49.116267263000061 ], [ -123.880116959999953, 49.116261209000065 ], [ -123.879825895999915, 49.116640393000083 ], [ -123.879175597999946, 49.118561703000111 ], [ -123.879155590999929, 49.119030204000047 ], [ -123.879629192999971, 49.119448891 ], [ -123.880100998999978, 49.119679712000071 ], [ -123.880361190999949, 49.119712403000058 ], [ -123.881249593999911, 49.119598506000081 ], [ -123.881513392999935, 49.119722406000079 ], [ -123.882446885999954, 49.119886208000054 ], [ -123.882805790999981, 49.120054191000108 ], [ -123.883154779, 49.120348997000093 ], [ -123.883871597999971, 49.120585502000054 ], [ -123.884244585999937, 49.120790502000077 ], [ -123.884676404999965, 49.121128111000075 ], [ -123.885038395999956, 49.121485591000116 ], [ -123.885459606999945, 49.122131439000029 ], [ -123.885438648999951, 49.122592839000106 ], [ -123.885415574, 49.1231008150001 ], [ -123.87994423899994, 49.122988521000075 ], [ -123.879945511999978, 49.122960566000138 ], [ -123.879497908999937, 49.122951745000101 ], [ -123.879536588999898, 49.122102570000052 ], [ -123.877957620999936, 49.122071437000081 ], [ -123.877889789999969, 49.119594736000067 ], [ -123.873781493999957, 49.119526067000038 ], [ -123.873786158999962, 49.119423927000085 ], [ -123.872719418999907, 49.119402839000017 ], [ -123.872714575999979, 49.11950882499999 ], [ -123.871852254000018, 49.119500291000087 ], [ -123.866596397999984, 49.119273952000036 ], [ -123.866521694999932, 49.119250797000092 ], [ -123.865675051999958, 49.119222490000027 ], [ -123.86520269199994, 49.119206698000028 ], [ -123.86515164299999, 49.119211701000033 ], [ -123.864194002, 49.119170403000105 ], [ -123.86404478899999, 49.119378198000085 ], [ -123.86403499499994, 49.119591498000027 ], [ -123.864181693999981, 49.120274295000073 ], [ -123.864268688999985, 49.122704998000117 ], [ -123.864244797999945, 49.122967223000067 ], [ -123.86418590699999, 49.123613796000122 ], [ -123.864180398999963, 49.124018652000096 ], [ -123.86417959399995, 49.124077619000033 ], [ -123.864175588999927, 49.124369538000032 ], [ -123.864174308999964, 49.124464615000129 ], [ -123.864207896999957, 49.124759359000102 ], [ -123.864223099999904, 49.12489249000005 ], [ -123.864168443, 49.125077402000102 ], [ -123.864048419999961, 49.125566302000088 ], [ -123.863655748999975, 49.12650220000009 ], [ -123.864196020999941, 49.128258488000021 ], [ -123.864198723999905, 49.128267312000027 ], [ -123.864235534999963, 49.128386919000071 ], [ -123.864651243999987, 49.129738222000071 ], [ -123.856750649999967, 49.129877941000061 ], [ -123.856885212999941, 49.12695546700008 ], [ -123.858811589999974, 49.126993820000052 ], [ -123.858800373999912, 49.126344485000047 ], [ -123.858389221999971, 49.126347542000083 ], [ -123.858379904999978, 49.12580787800006 ], [ -123.85796875699999, 49.125810934000143 ], [ -123.857954789999951, 49.125001437000101 ], [ -123.858777073999988, 49.124995323000078 ], [ -123.85877241299994, 49.124725491000078 ], [ -123.860005832999917, 49.124716309000121 ], [ -123.86001516499999, 49.125255974000019 ], [ -123.860426308999962, 49.12525291000005 ], [ -123.86043097699999, 49.125522742000058 ], [ -123.860462172999931, 49.12552251000011 ], [ -123.860490285999987, 49.124910851000017 ], [ -123.86124303599999, 49.124925817000062 ], [ -123.861226173999952, 49.12395216200008 ], [ -123.86071254499997, 49.123941950000109 ], [ -123.860738605000023, 49.123374857000087 ], [ -123.86073337899991, 49.123374753000043 ], [ -123.860746391999939, 49.123091589000111 ], [ -123.85997783399992, 49.123097316000042 ], [ -123.859963834, 49.122287819000093 ], [ -123.860374954999941, 49.12228475600007 ], [ -123.860360949, 49.121475260000054 ], [ -123.860772061999953, 49.121472195000059 ], [ -123.860767391999943, 49.121202363000094 ], [ -123.860818024999929, 49.121201985000027 ], [ -123.860835714999936, 49.120817012 ], [ -123.85990180499999, 49.120798438000115 ], [ -123.85994963199991, 49.119758016000084 ], [ -123.858686204999955, 49.119732875000075 ], [ -123.858688544999936, 49.119868509000057 ], [ -123.857455247999951, 49.119877675000083 ], [ -123.85745232799998, 49.119708309000039 ], [ -123.855340101, 49.119666221000102 ], [ -123.855350253999973, 49.119445839000029 ], [ -123.853755957999965, 49.119414045000077 ], [ -123.853727532999983, 49.120030626000059 ], [ -123.85369351099996, 49.120029947000035 ], [ -123.853683852999922, 49.120239440000056 ], [ -123.854043669999939, 49.120246618000088 ], [ -123.85387775699995, 49.123845711000094 ], [ -123.852797649999928, 49.123824160000034 ], [ -123.85278610099999, 49.124074514000078 ], [ -123.854750976999952, 49.124113710000131 ], [ -123.854716911999958, 49.124852902000079 ], [ -123.854782521999965, 49.124854211000056 ], [ -123.854722270999957, 49.126161577000062 ], [ -123.855320381999988, 49.126173501000075 ], [ -123.855154544999934, 49.129772563000067 ], [ -123.851867484999943, 49.129706993000156 ], [ -123.851870861999927, 49.129904091000114 ], [ -123.853104409999972, 49.129894982000067 ], [ -123.853105219999946, 49.129942214000053 ], [ -123.850935238999966, 49.129980414000059 ] ], [ [ -123.86228898899999, 49.128548967 ], [ -123.862240228999951, 49.129610632000016 ], [ -123.862969369999973, 49.12962511500006 ], [ -123.862963412999946, 49.129281976000094 ], [ -123.862552236999989, 49.12928504900006 ], [ -123.862539552999934, 49.128553945000121 ], [ -123.86228898899999, 49.128548967 ] ], [ [ -123.871187129999953, 49.118155662000035 ], [ -123.871134337999976, 49.119310216 ], [ -123.871645829, 49.119320337000012 ], [ -123.87169924899996, 49.118151795000074 ], [ -123.871187129999953, 49.118155662000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206857000", "BldgCostT": "139510000", "sL_LossRatio": "0.811296416770609", "sL_AssetLoss": "1337921.6", "sL_BldgLoss": "1085451", "sL_StrLoss": "565608", "sL_NStrLoss": "519843", "sL_ContLoss": "252470.6", "geom_point": "0101000020E6100000BD68F1F705F75EC0A1D2256F428E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.850244418999964, 49.110647503000052 ], [ -123.850264277999926, 49.109387004000048 ], [ -123.851366687, 49.109372998000076 ], [ -123.851552600999938, 49.109350598000056 ], [ -123.851776894999929, 49.109265001000061 ], [ -123.852128002, 49.109040597000053 ], [ -123.852324892999945, 49.108956211000113 ], [ -123.852527887999926, 49.108917989000098 ], [ -123.853368989999922, 49.108916273000069 ], [ -123.85412527599999, 49.108914698000028 ], [ -123.854326094999948, 49.108864705000052 ], [ -123.854502902999982, 49.108769202000104 ], [ -123.854616888999956, 49.108641708000086 ], [ -123.854676214, 49.1084852890001 ], [ -123.854747092999929, 49.107777890000072 ], [ -123.85252600099993, 49.107711084000108 ], [ -123.852183989999943, 49.107679095000087 ], [ -123.85198340699999, 49.107606594000096 ], [ -123.851847090999982, 49.107505694000054 ], [ -123.851778305999986, 49.107364713000052 ], [ -123.851778300999953, 49.106772103000054 ], [ -123.854331691999931, 49.106812296000086 ], [ -123.855079379999964, 49.106920904000098 ], [ -123.85560308499997, 49.105653307000139 ], [ -123.855614417999917, 49.105497795000133 ], [ -123.855684594999943, 49.104478713000056 ], [ -123.856283393999959, 49.104433010000058 ], [ -123.856843503, 49.104439880000015 ], [ -123.856870221999912, 49.104440202000042 ], [ -123.857327300999899, 49.10449889300002 ], [ -123.857363451999959, 49.104499593000085 ], [ -123.858116569999964, 49.104513976000078 ], [ -123.859517901999965, 49.104540696000072 ], [ -123.859678, 49.104689789000147 ], [ -123.85991070199999, 49.104986199000095 ], [ -123.860568197999953, 49.106106214000128 ], [ -123.86072248499994, 49.106238605000101 ], [ -123.860801298999974, 49.106306207000038 ], [ -123.860815404999968, 49.106315309000074 ], [ -123.861060524999914, 49.106473499000124 ], [ -123.861195567999971, 49.106535897000072 ], [ -123.862286777999941, 49.107040093000109 ], [ -123.863097504999985, 49.107417296000101 ], [ -123.864121243999932, 49.108107155000056 ], [ -123.864276383999965, 49.108211694000026 ], [ -123.865492294999981, 49.109095892000077 ], [ -123.865864156999976, 49.109426235000072 ], [ -123.866409003999976, 49.109910209000077 ], [ -123.867238191999931, 49.110723705000041 ], [ -123.869171806999958, 49.112139998000067 ], [ -123.869351205999976, 49.112257016000093 ], [ -123.869700953999967, 49.112476628000081 ], [ -123.87061195699998, 49.11304864500007 ], [ -123.870621916999966, 49.113054875000081 ], [ -123.871274877999909, 49.113443353000044 ], [ -123.872327756999979, 49.113827125000064 ], [ -123.874227750999978, 49.114245645000068 ], [ -123.874151516000012, 49.114451871000028 ], [ -123.874029397999919, 49.114782087000059 ], [ -123.873906757999976, 49.11490579500007 ], [ -123.873878789999978, 49.114934004000119 ], [ -123.872420591000022, 49.115015192000058 ], [ -123.864246302999945, 49.115493409000059 ], [ -123.856757242999905, 49.115486666000017 ], [ -123.855948402999957, 49.115485898000067 ], [ -123.85587986299997, 49.115486445000116 ], [ -123.851645656999949, 49.115520213000096 ], [ -123.85046659599999, 49.115529600000073 ], [ -123.85035059700003, 49.11353610200004 ], [ -123.850331988999983, 49.11302978500003 ], [ -123.850329991999956, 49.112975827000071 ], [ -123.850282367999981, 49.111680692000107 ], [ -123.850244418999964, 49.110647503000052 ] ], [ [ -123.861595743999956, 49.110494581000069 ], [ -123.86161950599994, 49.109977151000109 ], [ -123.860862196999946, 49.109962091000035 ], [ -123.860871741999929, 49.109754309000067 ], [ -123.860857293999956, 49.109754023000086 ], [ -123.860823978999946, 49.110479234000096 ], [ -123.861595743999956, 49.110494581000069 ] ], [ [ -123.859098106999966, 49.108698704000069 ], [ -123.85914305099999, 49.107721092000048 ], [ -123.85724597799998, 49.107735195000068 ], [ -123.85723668199995, 49.107195529000059 ], [ -123.856414692, 49.107201630000112 ], [ -123.85642398100002, 49.107741296000064 ], [ -123.856012979999946, 49.107744344000011 ], [ -123.856022263999989, 49.108284012000148 ], [ -123.855702840999967, 49.108286379000035 ], [ -123.855616205999965, 49.108574626000042 ], [ -123.855617146999975, 49.108629357000062 ], [ -123.859098106999966, 49.108698704000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.761085373924553", "sL_AssetLoss": "15110", "sL_BldgLoss": "11500", "sL_StrLoss": "5490", "sL_NStrLoss": "6010", "sL_ContLoss": "3610", "geom_point": "0101000020E610000075408EBD49F75EC025A1A13DE68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.863307967999944, 49.101752926000096 ], [ -123.86328924499999, 49.100673593000117 ], [ -123.862878305999956, 49.100676666000048 ], [ -123.862864269999989, 49.09986716600006 ], [ -123.863971806, 49.099858882000085 ], [ -123.864299300999946, 49.10008968900005 ], [ -123.864856502999913, 49.100606688000049 ], [ -123.864988752, 49.101200607000131 ], [ -123.864531439999951, 49.101204033000037 ], [ -123.864540814999955, 49.101743698000064 ], [ -123.863307967999944, 49.101752926000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88751250", "BldgCostT": "58500000", "sL_LossRatio": "0.756494731557332", "sL_AssetLoss": "641366", "sL_BldgLoss": "485190", "sL_StrLoss": "262163", "sL_NStrLoss": "223027", "sL_ContLoss": "156176", "geom_point": "0101000020E61000003E1A6FA704F75EC0D4A71C93C58C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.878607690999942, 49.115155304000083 ], [ -123.878395792999981, 49.115149292000055 ], [ -123.877868193999944, 49.115193796000028 ], [ -123.877543080999914, 49.115177501000069 ], [ -123.877298851999967, 49.115102721000078 ], [ -123.877219094999987, 49.115078293000074 ], [ -123.874227750999978, 49.114245645000068 ], [ -123.872327756999979, 49.113827125000064 ], [ -123.871274877999909, 49.113443353000044 ], [ -123.870621916999966, 49.113054875000081 ], [ -123.87061195699998, 49.11304864500007 ], [ -123.869700953999967, 49.112476628000081 ], [ -123.869351205999976, 49.112257016000093 ], [ -123.869171806999958, 49.112139998000067 ], [ -123.867238191999931, 49.110723705000041 ], [ -123.866409003999976, 49.109910209000077 ], [ -123.865864156999976, 49.109426235000072 ], [ -123.865492294999981, 49.109095892000077 ], [ -123.864276383999965, 49.108211694000026 ], [ -123.864121243999932, 49.108107155000056 ], [ -123.863097504999985, 49.107417296000101 ], [ -123.862286777999941, 49.107040093000109 ], [ -123.861195567999971, 49.106535897000072 ], [ -123.861060524999914, 49.106473499000124 ], [ -123.860815404999968, 49.106315309000074 ], [ -123.860801298999974, 49.106306207000038 ], [ -123.86072248499994, 49.106238605000101 ], [ -123.860568197999953, 49.106106214000128 ], [ -123.85991070199999, 49.104986199000095 ], [ -123.859678, 49.104689789000147 ], [ -123.859517901999965, 49.104540696000072 ], [ -123.858534828999964, 49.103621500000095 ], [ -123.858396007999914, 49.103491711000103 ], [ -123.857948072999974, 49.102967569000057 ], [ -123.857547982999989, 49.102499394000105 ], [ -123.857363208999956, 49.102351592000119 ], [ -123.857072404999926, 49.10212880100007 ], [ -123.855075611999965, 49.101016379000043 ], [ -123.854844118999921, 49.100887389000029 ], [ -123.854117487999957, 49.10047120100009 ], [ -123.854540007999958, 49.100151802000035 ], [ -123.854676051999959, 49.099991637000073 ], [ -123.854728112, 49.099930390000047 ], [ -123.854805603999949, 49.099732913000047 ], [ -123.854802406999966, 49.099148292000102 ], [ -123.854743207999917, 49.099007613 ], [ -123.854613211999919, 49.09886000500012 ], [ -123.854258494999954, 49.098598889000151 ], [ -123.853099110999949, 49.097952486000032 ], [ -123.852559199999973, 49.097612099000074 ], [ -123.852418702999955, 49.09748409500007 ], [ -123.852349003999976, 49.097364781000081 ], [ -123.852324416, 49.097214801000142 ], [ -123.852340684999902, 49.09654294400007 ], [ -123.852365286999913, 49.095526892000109 ], [ -123.850477411999975, 49.095517991000044 ], [ -123.850483335999968, 49.095171914000041 ], [ -123.850507508999939, 49.09376370600009 ], [ -123.85050834399999, 49.093714362000057 ], [ -123.850510445999959, 49.093592612000123 ], [ -123.850522728, 49.092877896000076 ], [ -123.850524401999948, 49.092779208000096 ], [ -123.850564451999944, 49.090232580000048 ], [ -123.850623497999933, 49.08648020400009 ], [ -123.854901960999911, 49.086592161000041 ], [ -123.854899042999975, 49.086655525000069 ], [ -123.855168297999967, 49.086660898000062 ], [ -123.855029764999927, 49.089669944000043 ], [ -123.856169541999975, 49.089692680000027 ], [ -123.856141308999909, 49.090306201 ], [ -123.857482931999968, 49.09033294700005 ], [ -123.857317390999938, 49.093932211000073 ], [ -123.854130607999977, 49.093868655000058 ], [ -123.854132775999986, 49.09399500400005 ], [ -123.85700897699995, 49.093973685000101 ], [ -123.857022913999984, 49.094783187000104 ], [ -123.857844697999951, 49.094777083000068 ], [ -123.857853997999939, 49.095316751000027 ], [ -123.858264894999976, 49.095313696000062 ], [ -123.858278468999984, 49.09610093000002 ], [ -123.858280638999972, 49.096104563000033 ], [ -123.858286173999943, 49.096166079000056 ], [ -123.860335079999942, 49.096206872000032 ], [ -123.860331210999945, 49.095983103000101 ], [ -123.860444108999957, 49.096492097000066 ], [ -123.860795106999916, 49.097011888000068 ], [ -123.861291627999933, 49.097464665000103 ], [ -123.86120552600002, 49.099339817000072 ], [ -123.86121119699996, 49.099339775000097 ], [ -123.861225204, 49.100149275000035 ], [ -123.861168335999977, 49.100149700000088 ], [ -123.861159707999974, 49.100337599000021 ], [ -123.860817353999892, 49.100330788000079 ], [ -123.860818934999926, 49.100422174000109 ], [ -123.86040799499996, 49.100425237000131 ], [ -123.860435008999943, 49.101987668000078 ], [ -123.860963807, 49.101998187000049 ], [ -123.860953207999941, 49.102228983000103 ], [ -123.862344669999942, 49.102256652000079 ], [ -123.862342561999938, 49.102302566000056 ], [ -123.865056361999962, 49.102356478000019 ], [ -123.864823084999955, 49.103332598000051 ], [ -123.86485419899999, 49.103611694000016 ], [ -123.864557312999949, 49.104684195000047 ], [ -123.864568485999953, 49.105232494000063 ], [ -123.864662685999932, 49.10597879600008 ], [ -123.864959093999971, 49.106480107000031 ], [ -123.865281687999982, 49.106891693000065 ], [ -123.865767703999936, 49.107283404000071 ], [ -123.866167402999906, 49.107370193000101 ], [ -123.866954501999913, 49.107760492000118 ], [ -123.867641701999958, 49.107881489000079 ], [ -123.86785120299993, 49.108059497000049 ], [ -123.868373984999906, 49.108280297000114 ], [ -123.869440315999938, 49.108848607000027 ], [ -123.871018699999922, 49.109060789000068 ], [ -123.871695602999949, 49.109290110000124 ], [ -123.871905292999926, 49.109611897000065 ], [ -123.871835706999917, 49.110242907000043 ], [ -123.871932712999964, 49.110349703000104 ], [ -123.871557410999984, 49.110784102000054 ], [ -123.871387492999958, 49.111360916000081 ], [ -123.87164527799996, 49.11194339900004 ], [ -123.87185359799993, 49.112131407000113 ], [ -123.872379605999981, 49.112335001000098 ], [ -123.87275468699994, 49.112699600000056 ], [ -123.873401417, 49.112866199000116 ], [ -123.873982395000013, 49.113131108000076 ], [ -123.874932011999988, 49.113421700000032 ], [ -123.875726499999942, 49.113370388000099 ], [ -123.876032191999954, 49.11362959300007 ], [ -123.877602391999943, 49.114102488000135 ], [ -123.879045687999948, 49.114280506000078 ], [ -123.879088479999965, 49.114307159000148 ], [ -123.879973989999911, 49.114858689000137 ], [ -123.880296897999955, 49.115359986000023 ], [ -123.880207093999957, 49.115711791000138 ], [ -123.880256596, 49.116079293000048 ], [ -123.880116959999953, 49.116261209000065 ], [ -123.879945154999945, 49.116267263000061 ], [ -123.879217100999981, 49.116292999000095 ], [ -123.879218032999944, 49.116222918000105 ], [ -123.879225698999932, 49.115651994000054 ], [ -123.879080003999945, 49.115395107000069 ], [ -123.878924383999973, 49.11526509600003 ], [ -123.878763810999914, 49.115185404000037 ], [ -123.878607690999942, 49.115155304000083 ] ], [ [ -123.855623836999882, 49.096149599000057 ], [ -123.855428717, 49.096144355000092 ], [ -123.855206808999938, 49.096145999000029 ], [ -123.854991742, 49.096154532000064 ], [ -123.855005528999953, 49.096957094000054 ], [ -123.855416437999963, 49.096954050000051 ], [ -123.85541787399994, 49.097037583000066 ], [ -123.85557752299998, 49.097155642000061 ], [ -123.855623836999882, 49.096149599000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50513416", "BldgCostT": "33781666", "sL_LossRatio": "0.76502036212168", "sL_AssetLoss": "398043", "sL_BldgLoss": "304511", "sL_StrLoss": "179426", "sL_NStrLoss": "125085", "sL_ContLoss": "93532", "geom_point": "0101000020E6100000E55285D4E7F75EC0AF39D594C38D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.871260894999949, 49.10796128800007 ], [ -123.870874687999901, 49.107865795000059 ], [ -123.870450787999985, 49.107931402000112 ], [ -123.869377196999949, 49.107571004000135 ], [ -123.867977897999936, 49.107536905000046 ], [ -123.867672504999987, 49.107304684000049 ], [ -123.867424310999951, 49.107234886000121 ], [ -123.867093788999952, 49.107039792000094 ], [ -123.866737312999987, 49.107078293000029 ], [ -123.865704000999983, 49.106770590000075 ], [ -123.865440289999981, 49.10652991000012 ], [ -123.865198397999976, 49.106055694000055 ], [ -123.865089707999942, 49.105265192000118 ], [ -123.865181192999927, 49.105101506000011 ], [ -123.865231400999932, 49.103185887000087 ], [ -123.865384121999938, 49.102580480000029 ], [ -123.866113398999957, 49.102592354000073 ], [ -123.866076587999885, 49.10339579 ], [ -123.866628679999977, 49.103406743000029 ], [ -123.866609033999936, 49.103835634000042 ], [ -123.866720302999937, 49.103837842000075 ], [ -123.866700542999979, 49.104269243000125 ], [ -123.866922121999892, 49.104273638000073 ], [ -123.866851274999959, 49.105820395000073 ], [ -123.867489115999888, 49.105833044000171 ], [ -123.867464491999954, 49.104420445000052 ], [ -123.868100644999956, 49.104415663000104 ], [ -123.868182564999955, 49.102626016000109 ], [ -123.872719795999956, 49.102699691000034 ], [ -123.875098819999934, 49.102688209000078 ], [ -123.875701609999936, 49.102643419000039 ], [ -123.875732914999929, 49.102648299000052 ], [ -123.875879615999978, 49.102671227000059 ], [ -123.876022505999941, 49.102748813000083 ], [ -123.876153112999958, 49.102885614000101 ], [ -123.876287110999982, 49.103248417000032 ], [ -123.876394408999943, 49.103357733000102 ], [ -123.876505211999969, 49.103424708000034 ], [ -123.876531505999964, 49.103440612000064 ], [ -123.876731193999973, 49.103473434000144 ], [ -123.878101805999933, 49.103518432000037 ], [ -123.878068018, 49.104353522000039 ], [ -123.878058083, 49.104599486000041 ], [ -123.878007285999942, 49.105854452000095 ], [ -123.875704502999923, 49.105808991000117 ], [ -123.875718498999916, 49.105502167000132 ], [ -123.873690288999967, 49.105462086000102 ], [ -123.873675915999954, 49.105776874000085 ], [ -123.873512920999957, 49.105773651000085 ], [ -123.873491959999967, 49.106232695000124 ], [ -123.876053000999917, 49.106283304000087 ], [ -123.876006030999932, 49.107313177000101 ], [ -123.877942730999976, 49.107351407000081 ], [ -123.877919547999952, 49.107879213000075 ], [ -123.878135487999913, 49.108486885000033 ], [ -123.878552042999914, 49.10895620900007 ], [ -123.878572826999942, 49.108974223000082 ], [ -123.879436087999977, 49.109723853000112 ], [ -123.879640928999947, 49.109901697000105 ], [ -123.879787127000014, 49.11014774100007 ], [ -123.879864213999952, 49.110438365000014 ], [ -123.879903862999981, 49.110955211000054 ], [ -123.879954129999931, 49.111611226000086 ], [ -123.879971599999934, 49.111839078000045 ], [ -123.880157316999913, 49.112087683000077 ], [ -123.880192953999966, 49.112116318000062 ], [ -123.880876996, 49.112665694000121 ], [ -123.881000080999982, 49.112848302000025 ], [ -123.881004528999981, 49.112876622000037 ], [ -123.881028689999937, 49.113031609000096 ], [ -123.880948798999952, 49.113224592000023 ], [ -123.880759100999967, 49.113392009000059 ], [ -123.880514305999924, 49.113508716000055 ], [ -123.879632206999986, 49.113730899000103 ], [ -123.879348694999948, 49.113795902000092 ], [ -123.879348405999934, 49.11379643900014 ], [ -123.87932360899994, 49.113774895000034 ], [ -123.879061394999965, 49.113605398000047 ], [ -123.878455189999954, 49.113440196000035 ], [ -123.877180494999934, 49.113404602000088 ], [ -123.873796877999965, 49.11277369900008 ], [ -123.873476800999981, 49.112470286000139 ], [ -123.87248450499996, 49.112162695000109 ], [ -123.872054623999929, 49.111806603000112 ], [ -123.871785116999973, 49.111358 ], [ -123.872026087, 49.110942101 ], [ -123.872325003999904, 49.110013607000091 ], [ -123.872608005999936, 49.109760099 ], [ -123.871916986999935, 49.10864059700004 ], [ -123.87150131, 49.108364294000097 ], [ -123.871260894999949, 49.10796128800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.801851851851852", "sL_AssetLoss": "5400", "sL_BldgLoss": "4330", "sL_StrLoss": "2220", "sL_NStrLoss": "2110", "sL_ContLoss": "1070", "geom_point": "0101000020E61000007072A6A6B0F75EC05565634EE58D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.86896358499996, 49.108221892000081 ], [ -123.869358403999925, 49.108083806000103 ], [ -123.870415090999956, 49.108228994000086 ], [ -123.870627183999915, 49.108515290000064 ], [ -123.871411695999925, 49.108797287000051 ], [ -123.871622000999949, 49.109047911000069 ], [ -123.87147269699993, 49.109120610000048 ], [ -123.870947697999952, 49.1089269060001 ], [ -123.870414405999981, 49.10890409900005 ], [ -123.869465813999952, 49.108713302000098 ], [ -123.868951414999955, 49.108321607000079 ], [ -123.86896358499996, 49.108221892000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119444334", "BldgCostT": "77903334", "sL_LossRatio": "0.733593710832961", "sL_AssetLoss": "1256637", "sL_BldgLoss": "921861", "sL_StrLoss": "486152", "sL_NStrLoss": "435709", "sL_ContLoss": "334776", "geom_point": "0101000020E610000082A3B29BB8F85EC0C5A8A598878C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.890374259999973, 49.10598623000007 ], [ -123.890382179999918, 49.1058113980001 ], [ -123.890171744999961, 49.105807270000049 ], [ -123.890205738999924, 49.105056914000038 ], [ -123.889671284999935, 49.105061035000098 ], [ -123.889656812999974, 49.104251542000085 ], [ -123.89006777899999, 49.104248373000118 ], [ -123.890065708999941, 49.104132575000079 ], [ -123.890038821999951, 49.102629387000036 ], [ -123.890216828999911, 49.102628014000075 ], [ -123.89026504799989, 49.101563534000064 ], [ -123.889702931999963, 49.101552504000054 ], [ -123.888375740999919, 49.101562726000054 ], [ -123.888395008999964, 49.102642050000064 ], [ -123.888805962999967, 49.10263888700004 ], [ -123.888830059000014, 49.103988042000069 ], [ -123.888419093999985, 49.103991206000103 ], [ -123.88842128, 49.104113612000098 ], [ -123.888433546000016, 49.104800700000034 ], [ -123.888022573999933, 49.104803862000082 ], [ -123.888027389999962, 49.105073692000097 ], [ -123.886383492999968, 49.105086327000052 ], [ -123.886379957999978, 49.104887878000071 ], [ -123.881470926999953, 49.104791286000129 ], [ -123.881445999, 49.105339283000028 ], [ -123.881200521000011, 49.105334448000065 ], [ -123.881174020999964, 49.105916889000106 ], [ -123.878007285999942, 49.105854452000095 ], [ -123.878058083, 49.104599486000041 ], [ -123.878068018, 49.104353522000039 ], [ -123.878101805999933, 49.103518432000037 ], [ -123.878133611999942, 49.102820225000073 ], [ -123.878114501999917, 49.102026824000077 ], [ -123.878092221999964, 49.10110052100012 ], [ -123.878065791999987, 49.100003386000026 ], [ -123.878064723999955, 49.099958414000106 ], [ -123.878057888999976, 49.099675508000125 ], [ -123.878042991999962, 49.098350416000081 ], [ -123.878074252999909, 49.096721274000082 ], [ -123.878075442999943, 49.096659173 ], [ -123.87808411499999, 49.096206339000098 ], [ -123.87809653, 49.095558726000064 ], [ -123.878132532, 49.093682413000082 ], [ -123.878149214999937, 49.091875204000061 ], [ -123.88023870699999, 49.091870659000129 ], [ -123.880758925999942, 49.091869546000048 ], [ -123.880821479999938, 49.091869398000092 ], [ -123.880833133999914, 49.091300066000024 ], [ -123.880854391999904, 49.090257053000073 ], [ -123.880857108000015, 49.090125487000087 ], [ -123.881536056, 49.090129950000055 ], [ -123.883591209999963, 49.090143410000088 ], [ -123.883903085999975, 49.090322979000106 ], [ -123.883843456999969, 49.090141313000068 ], [ -123.883576625999979, 49.089328336000058 ], [ -123.883544993999948, 49.089231897000083 ], [ -123.883328310999943, 49.088280205000068 ], [ -123.883113409999964, 49.086602098000057 ], [ -123.883092757999961, 49.086440753 ], [ -123.883223203999961, 49.086447966000073 ], [ -123.884030602999971, 49.086492687000082 ], [ -123.884087282999943, 49.086493162000068 ], [ -123.884593800999966, 49.086497343000083 ], [ -123.886445644, 49.086512629000048 ], [ -123.887050892999952, 49.086517609000033 ], [ -123.886871593999956, 49.087839524000032 ], [ -123.888066423999987, 49.087848056000112 ], [ -123.888041511, 49.08839809800002 ], [ -123.888044420999947, 49.08844525100006 ], [ -123.888053049999883, 49.088583284000094 ], [ -123.888076583999947, 49.088961766000068 ], [ -123.888099289999971, 49.089325997000088 ], [ -123.8885644099999, 49.089328800000033 ], [ -123.888598357999953, 49.089324852000075 ], [ -123.889258909, 49.089247891000106 ], [ -123.889506704999974, 49.089274409000133 ], [ -123.891812494999968, 49.089349498000146 ], [ -123.891844067999898, 49.089623535000094 ], [ -123.891950179999967, 49.090542696000085 ], [ -123.89194450399999, 49.090891797000033 ], [ -123.891927092999936, 49.091961602000026 ], [ -123.891974795999943, 49.09333888700008 ], [ -123.891978694999963, 49.093451293000122 ], [ -123.891423691999933, 49.093410701000096 ], [ -123.890678349999959, 49.093508057000051 ], [ -123.89107, 49.094119783000089 ], [ -123.892121990999968, 49.095122105000087 ], [ -123.892635385999967, 49.095508613000085 ], [ -123.893262609999937, 49.096102706000046 ], [ -123.893980236999965, 49.096754474000107 ], [ -123.89410198799996, 49.096865036000047 ], [ -123.894438990999973, 49.097171085000156 ], [ -123.894785951999935, 49.097486177000093 ], [ -123.895433813999929, 49.098440925000048 ], [ -123.895756114999969, 49.098826622000047 ], [ -123.895905082999931, 49.099004923000059 ], [ -123.895532203999977, 49.099595633000071 ], [ -123.895466293999931, 49.099782800000142 ], [ -123.895389242999968, 49.10000169700001 ], [ -123.895068988999952, 49.100911396000051 ], [ -123.894987531999931, 49.10101116900011 ], [ -123.894935796999931, 49.101074515000072 ], [ -123.894789030999931, 49.101193069000075 ], [ -123.894768211000013, 49.101209904 ], [ -123.894375171999968, 49.101465193000124 ], [ -123.894147785999934, 49.101612881000023 ], [ -123.893857480999898, 49.101859380000057 ], [ -123.89338119199995, 49.102466081000053 ], [ -123.893170501999961, 49.102586274000018 ], [ -123.892983922, 49.102644224000123 ], [ -123.89279158099994, 49.102703992000095 ], [ -123.892611954999936, 49.1027241560001 ], [ -123.893007691999955, 49.103251298000075 ], [ -123.89416420399999, 49.104518603000102 ], [ -123.894836118999962, 49.105119869000127 ], [ -123.894844272999961, 49.105127189000079 ], [ -123.894504005999949, 49.105327703000079 ], [ -123.894378803, 49.105464892000057 ], [ -123.89433049199998, 49.105594488000101 ], [ -123.89433197399994, 49.106468096000107 ], [ -123.894277122999981, 49.106713792000093 ], [ -123.894221075999894, 49.106840405000142 ], [ -123.894170405999944, 49.10695489000009 ], [ -123.893985006999984, 49.107278789000112 ], [ -123.893504703999966, 49.108117984000032 ], [ -123.893419720999958, 49.108481564000101 ], [ -123.893272085999953, 49.109113201000127 ], [ -123.89327648299998, 49.109358890000038 ], [ -123.893277898999941, 49.109439308000027 ], [ -123.889899080999911, 49.109703425000099 ], [ -123.890038451999956, 49.106627527000086 ], [ -123.890324750999966, 49.106633143000117 ], [ -123.890354074999948, 49.105985833000041 ], [ -123.890374259999973, 49.10598623000007 ] ], [ [ -123.88392851899998, 49.088973261000092 ], [ -123.883931254999979, 49.088913023000039 ], [ -123.883630192999988, 49.088915328000077 ], [ -123.883631115999961, 49.088967407000077 ], [ -123.88392851899998, 49.088973261000092 ] ], [ [ -123.886760807999963, 49.103194352000038 ], [ -123.88676561699998, 49.103464183000021 ], [ -123.887176576999948, 49.103461026000097 ], [ -123.887171767000012, 49.10319119400009 ], [ -123.886760807999963, 49.103194352000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14989083", "BldgCostT": "9918333", "sL_LossRatio": "0.702513130552324", "sL_AssetLoss": "148699", "sL_BldgLoss": "104463", "sL_StrLoss": "44256", "sL_NStrLoss": "60207", "sL_ContLoss": "44236", "geom_point": "0101000020E6100000CE92F8C36CF85EC0B097BFA5108E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.880514305999924, 49.113508716000055 ], [ -123.880759100999967, 49.113392009000059 ], [ -123.880948798999952, 49.113224592000023 ], [ -123.881028689999937, 49.113031609000096 ], [ -123.881004528999981, 49.112876622000037 ], [ -123.881000080999982, 49.112848302000025 ], [ -123.880876996, 49.112665694000121 ], [ -123.880192953999966, 49.112116318000062 ], [ -123.880157316999913, 49.112087683000077 ], [ -123.879971599999934, 49.111839078000045 ], [ -123.879954129999931, 49.111611226000086 ], [ -123.879903862999981, 49.110955211000054 ], [ -123.879864213999952, 49.110438365000014 ], [ -123.879787127000014, 49.11014774100007 ], [ -123.879640928999947, 49.109901697000105 ], [ -123.879436087999977, 49.109723853000112 ], [ -123.878572826999942, 49.108974223000082 ], [ -123.878552042999914, 49.10895620900007 ], [ -123.878135487999913, 49.108486885000033 ], [ -123.877919547999952, 49.107879213000075 ], [ -123.877942730999976, 49.107351407000081 ], [ -123.878273553999946, 49.107357935000074 ], [ -123.878320434999964, 49.10632893700005 ], [ -123.883790018999917, 49.106436701000092 ], [ -123.883639424999927, 49.109750515 ], [ -123.883626453999952, 49.110035917000033 ], [ -123.883262640999959, 49.110028757000109 ], [ -123.883261768999901, 49.110047960000067 ], [ -123.884031429999965, 49.110063105000087 ], [ -123.883942835999932, 49.112012740000068 ], [ -123.884621826999947, 49.112026095000047 ], [ -123.884568663999971, 49.113196286000104 ], [ -123.884883551999948, 49.1131938730001 ], [ -123.884889477999963, 49.113527068000074 ], [ -123.884992303999965, 49.113529090000085 ], [ -123.884981440999937, 49.113768232000027 ], [ -123.884962038, 49.114195409000068 ], [ -123.881448843999962, 49.113769213000175 ], [ -123.879632206999986, 49.113730899000103 ], [ -123.880514305999924, 49.113508716000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164388166", "BldgCostT": "107851666", "sL_LossRatio": "0.716035297068268", "sL_AssetLoss": "2555793", "sL_BldgLoss": "1830038", "sL_StrLoss": "823898", "sL_NStrLoss": "1006140", "sL_ContLoss": "725755", "geom_point": "0101000020E61000000B99133091F95EC0F3A0B867068C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.901637672999982, 49.110020048000095 ], [ -123.901364868999906, 49.110009453000067 ], [ -123.900975966999937, 49.110004116000013 ], [ -123.900161688999972, 49.109980338000064 ], [ -123.89865310499998, 49.109951343000091 ], [ -123.898251288, 49.109941630000023 ], [ -123.897397382999912, 49.109927438000049 ], [ -123.895509263999969, 49.109703730000028 ], [ -123.895509001999983, 49.109689247000112 ], [ -123.895374692999923, 49.109686619000094 ], [ -123.895374639999972, 49.109687778000065 ], [ -123.893277898999941, 49.109439308000027 ], [ -123.89327648299998, 49.109358890000038 ], [ -123.893272085999953, 49.109113201000127 ], [ -123.893419720999958, 49.108481564000101 ], [ -123.893504703999966, 49.108117984000032 ], [ -123.893985006999984, 49.107278789000112 ], [ -123.894170405999944, 49.10695489000009 ], [ -123.894221075999894, 49.106840405000142 ], [ -123.894277122999981, 49.106713792000093 ], [ -123.89433197399994, 49.106468096000107 ], [ -123.89433049199998, 49.105594488000101 ], [ -123.894378803, 49.105464892000057 ], [ -123.894504005999949, 49.105327703000079 ], [ -123.894844272999961, 49.105127189000079 ], [ -123.894836118999962, 49.105119869000127 ], [ -123.89416420399999, 49.104518603000102 ], [ -123.893007691999955, 49.103251298000075 ], [ -123.892611954999936, 49.1027241560001 ], [ -123.89279158099994, 49.102703992000095 ], [ -123.892983922, 49.102644224000123 ], [ -123.893170501999961, 49.102586274000018 ], [ -123.89338119199995, 49.102466081000053 ], [ -123.893857480999898, 49.101859380000057 ], [ -123.894147785999934, 49.101612881000023 ], [ -123.894375171999968, 49.101465193000124 ], [ -123.894768211000013, 49.101209904 ], [ -123.894789030999931, 49.101193069000075 ], [ -123.894935796999931, 49.101074515000072 ], [ -123.894987531999931, 49.10101116900011 ], [ -123.895068988999952, 49.100911396000051 ], [ -123.895389242999968, 49.10000169700001 ], [ -123.895466293999931, 49.099782800000142 ], [ -123.895532203999977, 49.099595633000071 ], [ -123.895905082999931, 49.099004923000059 ], [ -123.895756114999969, 49.098826622000047 ], [ -123.895433813999929, 49.098440925000048 ], [ -123.894785951999935, 49.097486177000093 ], [ -123.894438990999973, 49.097171085000156 ], [ -123.89410198799996, 49.096865036000047 ], [ -123.893980236999965, 49.096754474000107 ], [ -123.893262609999937, 49.096102706000046 ], [ -123.892635385999967, 49.095508613000085 ], [ -123.892121990999968, 49.095122105000087 ], [ -123.89107, 49.094119783000089 ], [ -123.890678349999959, 49.093508057000051 ], [ -123.891423691999933, 49.093410701000096 ], [ -123.891978694999963, 49.093451293000122 ], [ -123.891974795999943, 49.09333888700008 ], [ -123.891927092999936, 49.091961602000026 ], [ -123.89194450399999, 49.090891797000033 ], [ -123.891950179999967, 49.090542696000085 ], [ -123.891844067999898, 49.089623535000094 ], [ -123.891812494999968, 49.089349498000146 ], [ -123.889506704999974, 49.089274409000133 ], [ -123.889258909, 49.089247891000106 ], [ -123.888598357999953, 49.089324852000075 ], [ -123.8885644099999, 49.089328800000033 ], [ -123.888099289999971, 49.089325997000088 ], [ -123.888076583999947, 49.088961766000068 ], [ -123.888053049999883, 49.088583284000094 ], [ -123.888044420999947, 49.08844525100006 ], [ -123.888041511, 49.08839809800002 ], [ -123.888066423999987, 49.087848056000112 ], [ -123.886871593999956, 49.087839524000032 ], [ -123.887050892999952, 49.086517609000033 ], [ -123.886445644, 49.086512629000048 ], [ -123.884593800999966, 49.086497343000083 ], [ -123.884087282999943, 49.086493162000068 ], [ -123.884030602999971, 49.086492687000082 ], [ -123.883223203999961, 49.086447966000073 ], [ -123.883092757999961, 49.086440753 ], [ -123.883009234999989, 49.085788313000094 ], [ -123.882940211999951, 49.085249335000121 ], [ -123.882929824999962, 49.08516821700001 ], [ -123.882896364999951, 49.08490687100003 ], [ -123.884096788999912, 49.084930506000042 ], [ -123.884097324, 49.084918719 ], [ -123.884354095999925, 49.084923773000114 ], [ -123.884381645999895, 49.084317024000043 ], [ -123.885066305999956, 49.084330496000078 ], [ -123.885067820999922, 49.084297140000082 ], [ -123.88560272399998, 49.084307663000082 ], [ -123.885598009999967, 49.084042606000011 ], [ -123.885857820999917, 49.08404061200013 ], [ -123.885874325999936, 49.083676861000114 ], [ -123.882730970999901, 49.083614993000012 ], [ -123.882717552999978, 49.083510188000112 ], [ -123.882737505999899, 49.083071065000105 ], [ -123.88266114399994, 49.083069561000073 ], [ -123.882651435999961, 49.082993730000098 ], [ -123.881875707999953, 49.076933729000068 ], [ -123.882018173999967, 49.076915520000085 ], [ -123.883059494999941, 49.076782589000032 ], [ -123.884148392999947, 49.076895269000012 ], [ -123.884808640999935, 49.076849688000031 ], [ -123.884788483999969, 49.076824415000026 ], [ -123.884464795000014, 49.076418513000128 ], [ -123.884723880999957, 49.076310345000131 ], [ -123.884775708999911, 49.076288691000116 ], [ -123.884916392999926, 49.076172516000078 ], [ -123.884934176999977, 49.076112542000075 ], [ -123.884953488999955, 49.076047201000094 ], [ -123.88490580699991, 49.075893999000066 ], [ -123.884443513999912, 49.075440902000061 ], [ -123.884302005000023, 49.075244488000095 ], [ -123.884234585999977, 49.074952296000063 ], [ -123.884238923999987, 49.074795942000101 ], [ -123.884241000999978, 49.074720906000088 ], [ -123.884329975999918, 49.074506503000102 ], [ -123.884551910999946, 49.074197404000053 ], [ -123.88472249099999, 49.074054892000028 ], [ -123.884755418999944, 49.074034882000028 ], [ -123.884933521999955, 49.073926702000058 ], [ -123.885527482999919, 49.073705995000118 ], [ -123.885876111999934, 49.073649797000023 ], [ -123.886310588999947, 49.073651051000084 ], [ -123.886466812999956, 49.073651498000046 ], [ -123.886781085999957, 49.073688292000028 ], [ -123.887755021999922, 49.073973850000073 ], [ -123.888901542999974, 49.074310024000063 ], [ -123.889216012999952, 49.074402220000067 ], [ -123.890668431999956, 49.074828034000099 ], [ -123.889952871, 49.074833553000119 ], [ -123.889951200999974, 49.074740079000044 ], [ -123.888837471999977, 49.074718207000096 ], [ -123.888826663999936, 49.074956789000048 ], [ -123.888722690999913, 49.074954746000053 ], [ -123.888725511999965, 49.075112880000091 ], [ -123.88771221199994, 49.075120678000133 ], [ -123.887708833999966, 49.075195216000111 ], [ -123.885028990999956, 49.075142511000102 ], [ -123.88503637099997, 49.075557949000014 ], [ -123.886124467999963, 49.075579357000045 ], [ -123.886068075999987, 49.076822546000123 ], [ -123.887526591999944, 49.076851224000087 ], [ -123.887487739999926, 49.077708301000051 ], [ -123.888652902999951, 49.077731197000098 ], [ -123.888550380999945, 49.079993931000047 ], [ -123.891056852999938, 49.0800431400001 ], [ -123.891029463999985, 49.080648337000113 ], [ -123.891482774999972, 49.08065723000005 ], [ -123.89145874799999, 49.081188218000079 ], [ -123.891744595999967, 49.081193825000064 ], [ -123.89171924399993, 49.081754181000122 ], [ -123.891920223999989, 49.081758122000096 ], [ -123.89189972299998, 49.082211266000101 ], [ -123.891999447999979, 49.08221322100006 ], [ -123.891996474000038, 49.082278974000126 ], [ -123.891983506, 49.082565616000117 ], [ -123.892556304999957, 49.082576848000059 ], [ -123.892555909, 49.082554780000066 ], [ -123.89564476599999, 49.08257033000006 ], [ -123.89913001799998, 49.082587720000099 ], [ -123.899130034, 49.082588640000068 ], [ -123.899202091999911, 49.082588079000075 ], [ -123.89995178099997, 49.082591804000117 ], [ -123.899971112999964, 49.083661561000099 ], [ -123.899560316999924, 49.08366476400009 ], [ -123.899565190999951, 49.083934596000027 ], [ -123.899154392999932, 49.083937796000079 ], [ -123.89915926499998, 49.084207627000062 ], [ -123.897516061999951, 49.084220416000043 ], [ -123.897511199999954, 49.083950585000082 ], [ -123.895868004999954, 49.083963351000136 ], [ -123.895863149999954, 49.083693519000121 ], [ -123.893809166999986, 49.083709443000018 ], [ -123.893799480999974, 49.083169780000048 ], [ -123.892977895999962, 49.083176140000084 ], [ -123.892974410999955, 49.082981774000061 ], [ -123.892946290999987, 49.083603603000071 ], [ -123.89379206699999, 49.083620178000047 ], [ -123.893728602999929, 49.085024096999987 ], [ -123.894604721999926, 49.085041261000057 ], [ -123.894442065999982, 49.088640612000049 ], [ -123.893224219999965, 49.088616752000057 ], [ -123.893223116999962, 49.088641141000039 ], [ -123.892768563999979, 49.08863223300002 ], [ -123.892736028999977, 49.089351551000085 ], [ -123.895038668999987, 49.089396661000094 ], [ -123.894978349999988, 49.090731639000076 ], [ -123.89499505199997, 49.090731966000043 ], [ -123.894977716999961, 49.091115591000062 ], [ -123.898161658999967, 49.091177885000036 ], [ -123.898133867999917, 49.091793879000143 ], [ -123.898379488999964, 49.09179868000011 ], [ -123.898266918, 49.094293868000079 ], [ -123.898748325999975, 49.094303278000034 ], [ -123.898738784000017, 49.094514828000023 ], [ -123.900950058999939, 49.094558020000122 ], [ -123.900919779999938, 49.095229959000065 ], [ -123.90179796799994, 49.095247100000059 ], [ -123.901679714999972, 49.097872334000108 ], [ -123.901876244999968, 49.09787616900006 ], [ -123.901976901999944, 49.095641390000026 ], [ -123.902011526999914, 49.095642066000025 ], [ -123.902130546999942, 49.092999286000058 ], [ -123.902361701999922, 49.093003797000023 ], [ -123.902381761999919, 49.092558291000088 ], [ -123.902387135999902, 49.092558396000051 ], [ -123.90254866, 49.088970885000037 ], [ -123.905141264999926, 49.08902143600006 ], [ -123.905185085999932, 49.088046847000044 ], [ -123.903277712999937, 49.088009662000069 ], [ -123.903439683999977, 49.084410294000101 ], [ -123.908906753999958, 49.084516785000048 ], [ -123.908751224999918, 49.087982061000069 ], [ -123.909368899999905, 49.087994076000058 ], [ -123.909407569999971, 49.091597325000073 ], [ -123.908858209999948, 49.091586641000085 ], [ -123.90875398299994, 49.093908503000165 ], [ -123.909432518999935, 49.093921698000024 ], [ -123.909433815999947, 49.094042409000082 ], [ -123.910007332999953, 49.094056643000073 ], [ -123.90998081399999, 49.094647712000082 ], [ -123.91044326299999, 49.094644066000036 ], [ -123.910455431999978, 49.095309418000063 ], [ -123.91061244199993, 49.095312469000099 ], [ -123.910580508999971, 49.096024401000079 ], [ -123.910871976999928, 49.096030065000015 ], [ -123.91086297, 49.096230893000048 ], [ -123.911781755000021, 49.096248741000075 ], [ -123.911764809999937, 49.096626729000086 ], [ -123.911766523, 49.096626762000078 ], [ -123.911782076999913, 49.096279834000093 ], [ -123.912677422999934, 49.096297219000121 ], [ -123.912687428999902, 49.097209686000056 ], [ -123.917197625999947, 49.097569736000054 ], [ -123.917089612999945, 49.0999852200001 ], [ -123.916006641999985, 49.099964237000158 ], [ -123.915929786999968, 49.101681888000059 ], [ -123.917912555999976, 49.101720296000053 ], [ -123.91775164299996, 49.105319589000061 ], [ -123.917472971, 49.105314193000083 ], [ -123.917441868999916, 49.106009695000161 ], [ -123.911972256999974, 49.105903641000083 ], [ -123.912133618999974, 49.102304360000048 ], [ -123.912412272999987, 49.102309770000033 ], [ -123.912439018999976, 49.10171302100008 ], [ -123.910456255999947, 49.101674513000042 ], [ -123.91048796099993, 49.100967799000102 ], [ -123.910074513999973, 49.100959764000052 ], [ -123.910063801999939, 49.101198490000094 ], [ -123.909328042, 49.101184188000076 ], [ -123.909302503, 49.101753108000011 ], [ -123.903833409999933, 49.10164664000007 ], [ -123.903881407999975, 49.100580120000124 ], [ -123.903135416999987, 49.100565576000108 ], [ -123.903093241999926, 49.10150236100003 ], [ -123.898771035999957, 49.101417992000052 ], [ -123.898767868999968, 49.101488167000049 ], [ -123.897827096999933, 49.101469781000027 ], [ -123.897827987999904, 49.101519047000082 ], [ -123.898411238999941, 49.102292262000049 ], [ -123.897846019999946, 49.102518637000038 ], [ -123.897846927999964, 49.102568920000095 ], [ -123.897793016999913, 49.102569339000105 ], [ -123.897673237999953, 49.105222885000082 ], [ -123.897072537999961, 49.105211140000094 ], [ -123.897073662999944, 49.105273615000087 ], [ -123.897028473999981, 49.105273966000084 ], [ -123.897028338999931, 49.105276982000071 ], [ -123.898729529999969, 49.105310234000093 ], [ -123.898745000999924, 49.104967338000066 ], [ -123.898951487999966, 49.104971372000065 ], [ -123.89898082799999, 49.104321041000041 ], [ -123.904450224999962, 49.104427755000081 ], [ -123.904288261999966, 49.108027012000065 ], [ -123.904081758999936, 49.108022988000052 ], [ -123.90405248899999, 49.108673317000139 ], [ -123.899705215999973, 49.108588512000054 ], [ -123.899599748999961, 49.108586452000061 ], [ -123.89960292799999, 49.108762218000045 ], [ -123.899905637999922, 49.108759859000088 ], [ -123.900835935999964, 49.108752603000049 ], [ -123.900850697999928, 49.109567976000072 ], [ -123.900855478, 49.109831922000076 ], [ -123.901155377999928, 49.109829581000035 ], [ -123.901677502999931, 49.109825504000121 ], [ -123.90167261199997, 49.10955567400012 ], [ -123.904960684999949, 49.109529944000073 ], [ -123.904970624, 49.110076391000035 ], [ -123.904718222999946, 49.110081845000146 ], [ -123.901637672999982, 49.110020048000095 ] ], [ [ -123.896329482999988, 49.109597286000124 ], [ -123.89631629899999, 49.108865477000094 ], [ -123.895719103999966, 49.108853795000066 ], [ -123.895705383999911, 49.109157421000099 ], [ -123.895685196999963, 49.109157026000027 ], [ -123.895665068999932, 49.109602442000018 ], [ -123.896329482999988, 49.109597286000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.941321499013807", "sL_AssetLoss": "2028", "sL_BldgLoss": "1909", "sL_StrLoss": "1550", "sL_NStrLoss": "359", "sL_ContLoss": "119", "geom_point": "0101000020E61000004ABF33905DFA5EC0D7ABE185218C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.911255153999917, 49.094097921000127 ], [ -123.911570820999913, 49.094095430000067 ], [ -123.912653569999989, 49.094122276000029 ], [ -123.912667979999981, 49.095436104000044 ], [ -123.911279851999964, 49.095447071000116 ], [ -123.911255153999917, 49.094097921000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.944581890153389", "sL_AssetLoss": "2021", "sL_BldgLoss": "1909", "sL_StrLoss": "1560", "sL_NStrLoss": "349", "sL_ContLoss": "112", "geom_point": "0101000020E6100000E30E0664D0FA5EC0EC2983B4908D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.918924976, 49.1088798910001 ], [ -123.918919993999978, 49.108610062000025 ], [ -123.918508992999989, 49.108613335000044 ], [ -123.91847412700001, 49.106724532000115 ], [ -123.918885111999899, 49.106721262000086 ], [ -123.918820338999979, 49.103213487000069 ], [ -123.919578139999913, 49.103207454000028 ], [ -123.919366793, 49.103891522 ], [ -123.91904910199996, 49.108508422000114 ], [ -123.919072497999977, 49.108878717000053 ], [ -123.918924976, 49.1088798910001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141577832", "BldgCostT": "90798332", "sL_LossRatio": "0.745675037122795", "sL_AssetLoss": "1271456", "sL_BldgLoss": "948093", "sL_StrLoss": "484163", "sL_NStrLoss": "463930", "sL_ContLoss": "323363", "geom_point": "0101000020E61000002B756E7F53FB5EC0A2DFBE0E1C8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.920125817000013, 49.10503646100009 ], [ -123.920031569999978, 49.104572631000096 ], [ -123.919948201999929, 49.104417 ], [ -123.919366793, 49.103891522 ], [ -123.919578139999913, 49.103207454000028 ], [ -123.92005320399997, 49.103203668000113 ], [ -123.920063183000011, 49.103743325000011 ], [ -123.920474140999914, 49.103740049000045 ], [ -123.92048412299999, 49.104279706000085 ], [ -123.920895087999924, 49.104276429000031 ], [ -123.92089836699995, 49.104453726000024 ], [ -123.921008838999967, 49.104463462000048 ], [ -123.921162780999978, 49.104544162000145 ], [ -123.921690912, 49.104539945000028 ], [ -123.921721194999975, 49.104495583000173 ], [ -123.921717013999952, 49.104269869000142 ], [ -123.921790306999966, 49.104269283000079 ], [ -123.921798076999949, 49.104095132000104 ], [ -123.921200713999937, 49.10408358700014 ], [ -123.921218262999901, 49.103690388000047 ], [ -123.921150935999961, 49.103689087000078 ], [ -123.921212159999982, 49.102317419000094 ], [ -123.920330387999925, 49.102300369 ], [ -123.92034766299993, 49.101913492000108 ], [ -123.923731324999963, 49.101091259000022 ], [ -123.924379931999965, 49.101129223000065 ], [ -123.924383830999943, 49.10066501000005 ], [ -123.924353220999933, 49.098412842000059 ], [ -123.926614031999961, 49.098456459000076 ], [ -123.926536834999951, 49.100190660000067 ], [ -123.926780530999935, 49.100195359000061 ], [ -123.926763028999915, 49.100588561000095 ], [ -123.926830353999947, 49.100589859000081 ], [ -123.92681692499994, 49.10089153100003 ], [ -123.927414250999959, 49.100903045000045 ], [ -123.927374123999982, 49.101804784000073 ], [ -123.927836584999952, 49.101813697000061 ], [ -123.92783618, 49.101792029000052 ], [ -123.928247122999949, 49.101788725000119 ], [ -123.928216926999966, 49.100169755000124 ], [ -123.928433844999958, 49.100168010000111 ], [ -123.928453937999961, 49.099429862000115 ], [ -123.928614055999972, 49.09942678500002 ], [ -123.928582546999948, 49.097737994000035 ], [ -123.9295067, 49.097730557000055 ], [ -123.929506837999966, 49.097669962000076 ], [ -123.929587238999929, 49.097614063000023 ], [ -123.930849338999977, 49.097609262000034 ], [ -123.930934437999909, 49.097662063000051 ], [ -123.930933825999944, 49.09771905500007 ], [ -123.931048, 49.097718134000047 ], [ -123.931043572999926, 49.097481537000085 ], [ -123.929359419999969, 49.097449118000029 ], [ -123.929372757999957, 49.097149047000123 ], [ -123.933140700999957, 49.097227075000056 ], [ -123.933205672999975, 49.098079651000091 ], [ -123.933231707999951, 49.09851010700001 ], [ -123.933117714999952, 49.098511029000065 ], [ -123.933132891999918, 49.099320513000087 ], [ -123.933280649999929, 49.09931931800002 ], [ -123.933417387999938, 49.101579942000029 ], [ -123.932965009, 49.101616041000064 ], [ -123.932023620999956, 49.101691142000078 ], [ -123.931879509999987, 49.102157890000107 ], [ -123.931925949999965, 49.10273927700009 ], [ -123.931951096999953, 49.103054134000068 ], [ -123.932022887999977, 49.10395280200003 ], [ -123.931215363999982, 49.103940554000104 ], [ -123.931120296999921, 49.103939090000132 ], [ -123.930642989999981, 49.103962302000127 ], [ -123.930288103999885, 49.104009533000074 ], [ -123.929921590999982, 49.104058302000041 ], [ -123.929479508999947, 49.104121789000025 ], [ -123.929168, 49.104202294000082 ], [ -123.92893399699993, 49.104324819000041 ], [ -123.927943833999947, 49.10510174300007 ], [ -123.927381296999911, 49.105543095 ], [ -123.927825698999968, 49.105797489000025 ], [ -123.927993503, 49.105931295000175 ], [ -123.928065987999929, 49.106085795000041 ], [ -123.928062107999978, 49.107774393000035 ], [ -123.925543713999986, 49.107776200000103 ], [ -123.92527271499992, 49.107315297000099 ], [ -123.924848700999988, 49.106788407000117 ], [ -123.924770085999967, 49.106616697000064 ], [ -123.924772179999948, 49.106446493000085 ], [ -123.924769091999963, 49.106376347 ], [ -123.924751675999929, 49.105985002000097 ], [ -123.924719005, 49.105858294000065 ], [ -123.924618802999944, 49.105712189000059 ], [ -123.923913619999922, 49.105105994000084 ], [ -123.923292200999981, 49.105477700000094 ], [ -123.923030997999916, 49.105594203000052 ], [ -123.922919276999949, 49.105621447000082 ], [ -123.922757100999974, 49.105661001000094 ], [ -123.922499191999975, 49.10568520500005 ], [ -123.922383314999962, 49.10569610699999 ], [ -123.922134292999942, 49.105754309000091 ], [ -123.922001395999942, 49.105880615000011 ], [ -123.92147449799991, 49.107414933000072 ], [ -123.921341287999951, 49.107637534000041 ], [ -123.921163374999935, 49.107790730000062 ], [ -123.920874890999968, 49.107907617000073 ], [ -123.920594256999948, 49.107571689000061 ], [ -123.920499668999952, 49.107391530000015 ], [ -123.920473434999977, 49.107151491000096 ], [ -123.920563565999942, 49.106819107 ], [ -123.920701400999988, 49.10639848100007 ], [ -123.920728758999985, 49.106183769000026 ], [ -123.920712231, 49.105941186000088 ], [ -123.920581511999927, 49.105650515000129 ], [ -123.920246595999956, 49.105243234000056 ], [ -123.920125817000013, 49.10503646100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16360833", "BldgCostT": "11283333", "sL_LossRatio": "0.865873026289884", "sL_AssetLoss": "76189", "sL_BldgLoss": "65970", "sL_StrLoss": "42890", "sL_NStrLoss": "23080", "sL_ContLoss": "10219", "geom_point": "0101000020E610000017026F37F7FB5EC0DFD77191358D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.936070498999982, 49.101619047000042 ], [ -123.938175882999957, 49.101576053 ], [ -123.938213743999967, 49.102017590000102 ], [ -123.938245442999957, 49.104779041000072 ], [ -123.938035726999914, 49.104776873000041 ], [ -123.937915097999934, 49.104774560000138 ], [ -123.935621815, 49.1047305640001 ], [ -123.935708629999979, 49.102771909000055 ], [ -123.935759928999943, 49.101614474000044 ], [ -123.936070498999982, 49.101619047000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129352228", "BldgCostT": "86114857", "sL_LossRatio": "0.80907718723347", "sL_AssetLoss": "712864", "sL_BldgLoss": "576762", "sL_StrLoss": "341531", "sL_NStrLoss": "235231", "sL_ContLoss": "136102", "geom_point": "0101000020E61000006B89F8FB83FB5EC0DFC4FB37D08D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.92554991499999, 49.113320387000101 ], [ -123.925306398999936, 49.113256246000027 ], [ -123.925139205000022, 49.113261128000083 ], [ -123.92497960899999, 49.11266547300005 ], [ -123.925019273999951, 49.112481605000042 ], [ -123.925123220999978, 49.112299 ], [ -123.925527041999956, 49.111969018000138 ], [ -123.926479738999888, 49.111190418000056 ], [ -123.926592748999923, 49.111019674 ], [ -123.926568983999971, 49.110785065000094 ], [ -123.926473888999936, 49.110615735000088 ], [ -123.925945377999938, 49.11018947600008 ], [ -123.926840510999952, 49.109544799000076 ], [ -123.926311507999969, 49.109191489000096 ], [ -123.926156660999965, 49.10896939100008 ], [ -123.925668585999915, 49.108269323000044 ], [ -123.925652809999988, 49.108246711000042 ], [ -123.925553694999948, 49.108013299000042 ], [ -123.925543713999986, 49.107776200000103 ], [ -123.928062107999978, 49.107774393000035 ], [ -123.928065987999929, 49.106085795000041 ], [ -123.927993503, 49.105931295000175 ], [ -123.927825698999968, 49.105797489000025 ], [ -123.927381296999911, 49.105543095 ], [ -123.927943833999947, 49.10510174300007 ], [ -123.92893399699993, 49.104324819000041 ], [ -123.929168, 49.104202294000082 ], [ -123.929479508999947, 49.104121789000025 ], [ -123.929921590999982, 49.104058302000041 ], [ -123.930288103999885, 49.104009533000074 ], [ -123.930642989999981, 49.103962302000127 ], [ -123.931120296999921, 49.103939090000132 ], [ -123.931215363999982, 49.103940554000104 ], [ -123.932022887999977, 49.10395280200003 ], [ -123.931951096999953, 49.103054134000068 ], [ -123.931925949999965, 49.10273927700009 ], [ -123.931879509999987, 49.102157890000107 ], [ -123.932023620999956, 49.101691142000078 ], [ -123.932965009, 49.101616041000064 ], [ -123.933417387999938, 49.101579942000029 ], [ -123.93481965299999, 49.10160061900006 ], [ -123.934822187999956, 49.10173566300012 ], [ -123.935233129999943, 49.101732334000062 ], [ -123.93524327199999, 49.102271990000119 ], [ -123.935654217999939, 49.102268660000057 ], [ -123.93566388699999, 49.1027829840001 ], [ -123.935669436999916, 49.10307814300009 ], [ -123.934797217000025, 49.10308521000006 ], [ -123.934111435999924, 49.103090762000129 ], [ -123.934025626999983, 49.103091455 ], [ -123.934023612999937, 49.102984171000038 ], [ -123.934020562999947, 49.102821628000115 ], [ -123.933890558999948, 49.102822680000024 ], [ -123.933198661999967, 49.102828276000018 ], [ -123.933229021999949, 49.104447242000091 ], [ -123.933228179999972, 49.104447249000017 ], [ -123.933231937999949, 49.104534562000083 ], [ -123.932980637999904, 49.104545163000068 ], [ -123.932819814999917, 49.104544249000071 ], [ -123.932828175999973, 49.104990219000051 ], [ -123.932993847999953, 49.10498888000005 ], [ -123.933007775999954, 49.105696278000025 ], [ -123.933010952999922, 49.105857656000104 ], [ -123.933013890999959, 49.107611751000057 ], [ -123.933018074999978, 49.110116186000042 ], [ -123.932924294999964, 49.110116944000033 ], [ -123.932927873999958, 49.11030781200008 ], [ -123.932858773999925, 49.110342374000012 ], [ -123.932800298999936, 49.110363083000045 ], [ -123.932513890999985, 49.110464524000101 ], [ -123.932178164999968, 49.110534627000035 ], [ -123.931495302999949, 49.110656626000072 ], [ -123.931107092999952, 49.110766220000109 ], [ -123.930848505999904, 49.110887312000038 ], [ -123.930535598999981, 49.111092006000021 ], [ -123.92911928599996, 49.112222896000084 ], [ -123.928167777999988, 49.112997111 ], [ -123.927796015999931, 49.113298565000015 ], [ -123.927292606999941, 49.113706712000045 ], [ -123.926912449, 49.114014897000075 ], [ -123.926683004999944, 49.11389796200006 ], [ -123.92554991499999, 49.113320387000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235949834", "BldgCostT": "159133334", "sL_LossRatio": "0.841834488796083", "sL_AssetLoss": "1129042.6", "sL_BldgLoss": "950467", "sL_StrLoss": "621843", "sL_NStrLoss": "328624", "sL_ContLoss": "178575.6", "geom_point": "0101000020E6100000CC30105FC1FA5EC07EFBE727A48E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.919948060999957, 49.122111223000076 ], [ -123.919944938999947, 49.121342603000109 ], [ -123.916393902999971, 49.121307213000101 ], [ -123.914847387999913, 49.121295302000078 ], [ -123.914551767, 49.121059256000073 ], [ -123.913810433999942, 49.120467285000075 ], [ -123.913520408999943, 49.12023570200008 ], [ -123.913036477999981, 49.119547192 ], [ -123.912540760999917, 49.119004562000107 ], [ -123.912475386999944, 49.118933007000138 ], [ -123.911943712999928, 49.118455194000077 ], [ -123.911697808999975, 49.118263335000044 ], [ -123.911695048999945, 49.118112730000114 ], [ -123.911506688999978, 49.118114218000102 ], [ -123.911280706999932, 49.117937897000019 ], [ -123.911279026999949, 49.117846146000069 ], [ -123.911164275999909, 49.117847053000084 ], [ -123.910863610999982, 49.117612458000103 ], [ -123.910860638999964, 49.117450234000088 ], [ -123.910858068, 49.117309733000056 ], [ -123.910682347999938, 49.117311120000103 ], [ -123.910479459999976, 49.117312720000065 ], [ -123.90961235199994, 49.116636129000071 ], [ -123.90961004499998, 49.116509971000028 ], [ -123.909452267999967, 49.116511214000127 ], [ -123.909195276999952, 49.11631068100008 ], [ -123.909194048999979, 49.116243380000078 ], [ -123.909109878999942, 49.116244043000087 ], [ -123.908778206999912, 49.11598523100011 ], [ -123.908778053999953, 49.115976787000108 ], [ -123.908767493999974, 49.115976871000029 ], [ -123.908361142999937, 49.115659780000101 ], [ -123.908358188999927, 49.115497926000089 ], [ -123.908357137999985, 49.115440364000115 ], [ -123.908285044999928, 49.11544093200007 ], [ -123.908082736999958, 49.11544252400008 ], [ -123.907944084999883, 49.115334326000017 ], [ -123.907941153999914, 49.115173768000048 ], [ -123.907740363999949, 49.115175348000015 ], [ -123.907527031999962, 49.115008870000032 ], [ -123.907524097999925, 49.114847971000103 ], [ -123.907520253999934, 49.114637343000041 ], [ -123.907256464999989, 49.114639417000042 ], [ -123.907055629999959, 49.11464099400014 ], [ -123.906092844999961, 49.113889625000063 ], [ -123.90495947299992, 49.11300510300007 ], [ -123.903773096999927, 49.112040960000108 ], [ -123.903770482999917, 49.111897128000116 ], [ -123.903766869999984, 49.111698242000088 ], [ -123.903548108, 49.111699954000052 ], [ -123.903355361999985, 49.11170146200007 ], [ -123.902982716999958, 49.111398605000026 ], [ -123.90267126699996, 49.111131155000074 ], [ -123.902520985999956, 49.111002111000118 ], [ -123.90251910399995, 49.110898400000089 ], [ -123.902401277999957, 49.11089932100009 ], [ -123.901642475999907, 49.11024773500008 ], [ -123.901612246999932, 49.110221842000037 ], [ -123.901364868999906, 49.110009453000067 ], [ -123.901637672999982, 49.110020048000095 ], [ -123.904718222999946, 49.110081845000146 ], [ -123.904970624, 49.110076391000035 ], [ -123.9049803179999, 49.110609263000072 ], [ -123.905391334999962, 49.11060604000005 ], [ -123.905396244999949, 49.110875870000093 ], [ -123.906218284999966, 49.11086942 ], [ -123.90621337, 49.110599590000064 ], [ -123.906624387999926, 49.110596363000091 ], [ -123.90661455299994, 49.110056704000066 ], [ -123.907847593999975, 49.110047013000028 ], [ -123.907857440999962, 49.110586672000053 ], [ -123.908679473999939, 49.110580204000044 ], [ -123.908689330999934, 49.111119862000074 ], [ -123.909100350999907, 49.111116626000097 ], [ -123.909115144999973, 49.111926114000013 ], [ -123.908704115999967, 49.111929350000032 ], [ -123.908709045999942, 49.112199179000079 ], [ -123.907475953999921, 49.112208879000107 ], [ -123.90748579699999, 49.112748538000112 ], [ -123.907896832999967, 49.112745306000129 ], [ -123.907901757999966, 49.113015136000101 ], [ -123.908312793999968, 49.113011902000082 ], [ -123.908317721999978, 49.113281731000015 ], [ -123.909139798999945, 49.113275260000115 ], [ -123.909154592999954, 49.114084747000071 ], [ -123.909565639999983, 49.114081510000062 ], [ -123.909570573999957, 49.114351339000095 ], [ -123.909981621999961, 49.114348099000075 ], [ -123.909986557999943, 49.114617928 ], [ -123.91039760799994, 49.114614687000099 ], [ -123.910402545999929, 49.114884516000082 ], [ -123.911224650999941, 49.114878029000117 ], [ -123.911229592999945, 49.115147858000086 ], [ -123.91164064899999, 49.115144613000076 ], [ -123.911660429999927, 49.116223928000096 ], [ -123.912071493999989, 49.116220682000041 ], [ -123.912091281999963, 49.117299996000021 ], [ -123.912502355999919, 49.117296748000101 ], [ -123.912507305999966, 49.117566577000076 ], [ -123.912918379999965, 49.117563327000035 ], [ -123.912923333, 49.117833155000049 ], [ -123.913334409999933, 49.117829904000075 ], [ -123.91333936499997, 49.11809973200009 ], [ -123.913750442999969, 49.118096480000112 ], [ -123.913755400999918, 49.118366308000098 ], [ -123.914166480999981, 49.118363053000074 ], [ -123.914170402999943, 49.118576435000115 ], [ -123.915404269999954, 49.118600352000051 ], [ -123.915389792000013, 49.117813624000057 ], [ -123.916211942999936, 49.11780710200005 ], [ -123.916197032999918, 49.116997617 ], [ -123.916608102999973, 49.116994354000092 ], [ -123.916593184999925, 49.116184869000094 ], [ -123.917004248999916, 49.116181604000047 ], [ -123.916994298999981, 49.115641947 ], [ -123.917405357999954, 49.115638680000046 ], [ -123.917400379999933, 49.115368853000085 ], [ -123.91822249199997, 49.115362317000091 ], [ -123.918217510999952, 49.115092488000116 ], [ -123.918628563999974, 49.115089218000037 ], [ -123.918623580999963, 49.114819389000061 ], [ -123.91903463099996, 49.11481611800005 ], [ -123.919029647999949, 49.114546290000071 ], [ -123.920673840999939, 49.114533188000095 ], [ -123.920658859, 49.113723704000087 ], [ -123.921480942999935, 49.113717144000105 ], [ -123.92146594799999, 49.11290765900003 ], [ -123.921876983999965, 49.112904378000025 ], [ -123.921871983999949, 49.112634549000077 ], [ -123.922283015999966, 49.112631266000108 ], [ -123.92226800899999, 49.11182178200005 ], [ -123.923090058999932, 49.111815211000113 ], [ -123.923075040999919, 49.111005727000105 ], [ -123.923486059999959, 49.111002440000057 ], [ -123.923466025999957, 49.109923127000087 ], [ -123.923877035999979, 49.10991983800006 ], [ -123.92385699499999, 49.108840526000023 ], [ -123.923445991999984, 49.108843813000128 ], [ -123.92343096899998, 49.10803432900007 ], [ -123.922197986999919, 49.108044185000033 ], [ -123.922227992999964, 49.109663155000085 ], [ -123.922639001999983, 49.109659872000115 ], [ -123.92265901799999, 49.110739184000082 ], [ -123.922248001999918, 49.110742469000023 ], [ -123.922253002999923, 49.111012297000137 ], [ -123.921430964999971, 49.111018862000059 ], [ -123.921445956999932, 49.11182834700007 ], [ -123.921034930999951, 49.1118316270001 ], [ -123.92103992599999, 49.11210145400004 ], [ -123.919806842999932, 49.112111287000026 ], [ -123.919791875999962, 49.111301802000114 ], [ -123.919380852999922, 49.111305076000093 ], [ -123.919335978999939, 49.108876619000107 ], [ -123.919072497999977, 49.108878717000053 ], [ -123.91904910199996, 49.108508422000114 ], [ -123.919366793, 49.103891522 ], [ -123.919948201999929, 49.104417 ], [ -123.920031569999978, 49.104572631000096 ], [ -123.920125817000013, 49.10503646100009 ], [ -123.920246595999956, 49.105243234000056 ], [ -123.920581511999927, 49.105650515000129 ], [ -123.920712231, 49.105941186000088 ], [ -123.920728758999985, 49.106183769000026 ], [ -123.920701400999988, 49.10639848100007 ], [ -123.920563565999942, 49.106819107 ], [ -123.920473434999977, 49.107151491000096 ], [ -123.920499668999952, 49.107391530000015 ], [ -123.920594256999948, 49.107571689000061 ], [ -123.920874890999968, 49.107907617000073 ], [ -123.921163374999935, 49.107790730000062 ], [ -123.921341287999951, 49.107637534000041 ], [ -123.92147449799991, 49.107414933000072 ], [ -123.922001395999942, 49.105880615000011 ], [ -123.922134292999942, 49.105754309000091 ], [ -123.922383314999962, 49.10569610699999 ], [ -123.922499191999975, 49.10568520500005 ], [ -123.922757100999974, 49.105661001000094 ], [ -123.922919276999949, 49.105621447000082 ], [ -123.923030997999916, 49.105594203000052 ], [ -123.923292200999981, 49.105477700000094 ], [ -123.923913619999922, 49.105105994000084 ], [ -123.924618802999944, 49.105712189000059 ], [ -123.924719005, 49.105858294000065 ], [ -123.924751675999929, 49.105985002000097 ], [ -123.924769091999963, 49.106376347 ], [ -123.924772179999948, 49.106446493000085 ], [ -123.924770085999967, 49.106616697000064 ], [ -123.924848700999988, 49.106788407000117 ], [ -123.92527271499992, 49.107315297000099 ], [ -123.925543713999986, 49.107776200000103 ], [ -123.925553694999948, 49.108013299000042 ], [ -123.925652809999988, 49.108246711000042 ], [ -123.925668585999915, 49.108269323000044 ], [ -123.926156660999965, 49.10896939100008 ], [ -123.926311507999969, 49.109191489000096 ], [ -123.926840510999952, 49.109544799000076 ], [ -123.925945377999938, 49.11018947600008 ], [ -123.926473888999936, 49.110615735000088 ], [ -123.926568983999971, 49.110785065000094 ], [ -123.926592748999923, 49.111019674 ], [ -123.926479738999888, 49.111190418000056 ], [ -123.925527041999956, 49.111969018000138 ], [ -123.925123220999978, 49.112299 ], [ -123.925019273999951, 49.112481605000042 ], [ -123.92497960899999, 49.11266547300005 ], [ -123.925139205000022, 49.113261128000083 ], [ -123.925306398999936, 49.113256246000027 ], [ -123.92554991499999, 49.113320387000101 ], [ -123.926683004999944, 49.11389796200006 ], [ -123.926912449, 49.114014897000075 ], [ -123.925907040999945, 49.114829508000106 ], [ -123.925736577999928, 49.114967600000043 ], [ -123.925051958999958, 49.115918980000039 ], [ -123.924460484999912, 49.116740908000068 ], [ -123.92438979899994, 49.116839115000069 ], [ -123.923966257999936, 49.117126318000018 ], [ -123.923305778999961, 49.11750982700007 ], [ -123.923005040999939, 49.117745376000052 ], [ -123.92288577599993, 49.117902700000037 ], [ -123.922833445999984, 49.117971717000039 ], [ -123.922641798999905, 49.118523668000087 ], [ -123.92262360099997, 49.118778192000022 ], [ -123.922651745999985, 49.118920694000046 ], [ -123.922793353999964, 49.119637023000031 ], [ -123.922762600999988, 49.119866066000064 ], [ -123.92263919899996, 49.12026895000006 ], [ -123.922635081999957, 49.120974924000038 ], [ -123.922548299999974, 49.121232613000068 ], [ -123.922381199999975, 49.121449103000032 ], [ -123.922166734999948, 49.12168320800005 ], [ -123.922131711999896, 49.121721420000078 ], [ -123.921708486999975, 49.122183333000109 ], [ -123.921618866999935, 49.122281166000057 ], [ -123.921505838999948, 49.122404526000011 ], [ -123.921301201999967, 49.12262787700007 ], [ -123.921146251999986, 49.122796993000044 ], [ -123.919956102999933, 49.12409587500013 ], [ -123.919948060999957, 49.122111223000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "315322500", "BldgCostT": "210810000", "sL_LossRatio": "0.887403747427345", "sL_AssetLoss": "1083997", "sL_BldgLoss": "961943", "sL_StrLoss": "699379", "sL_NStrLoss": "262564", "sL_ContLoss": "122054", "geom_point": "0101000020E6100000A1B1D5694DFB5EC0F1C4D6E03B8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.919923273999956, 49.1245848430001 ], [ -123.91759311099996, 49.124491393000056 ], [ -123.916741381999927, 49.12464609400012 ], [ -123.916725884999934, 49.12464862000008 ], [ -123.916637397000031, 49.124663441000088 ], [ -123.916482071999908, 49.124689679 ], [ -123.916438492999987, 49.124637058000111 ], [ -123.91640149299991, 49.124594505000061 ], [ -123.915392741999966, 49.123387514000086 ], [ -123.914974615999938, 49.122887197000104 ], [ -123.91461577299998, 49.12233989800005 ], [ -123.914062642999923, 49.121277365 ], [ -123.913520408999943, 49.12023570200008 ], [ -123.913810433999942, 49.120467285000075 ], [ -123.914551767, 49.121059256000073 ], [ -123.914847387999913, 49.121295302000078 ], [ -123.916393902999971, 49.121307213000101 ], [ -123.919944938999947, 49.121342603000109 ], [ -123.919948060999957, 49.122111223000076 ], [ -123.919956102999933, 49.12409587500013 ], [ -123.921146251999986, 49.122796993000044 ], [ -123.921301201999967, 49.12262787700007 ], [ -123.921505838999948, 49.122404526000011 ], [ -123.921618866999935, 49.122281166000057 ], [ -123.921708486999975, 49.122183333000109 ], [ -123.922131711999896, 49.121721420000078 ], [ -123.922166734999948, 49.12168320800005 ], [ -123.922381199999975, 49.121449103000032 ], [ -123.922548299999974, 49.121232613000068 ], [ -123.922635081999957, 49.120974924000038 ], [ -123.92263919899996, 49.12026895000006 ], [ -123.922762600999988, 49.119866066000064 ], [ -123.922793353999964, 49.119637023000031 ], [ -123.922651745999985, 49.118920694000046 ], [ -123.92262360099997, 49.118778192000022 ], [ -123.922641798999905, 49.118523668000087 ], [ -123.922833445999984, 49.117971717000039 ], [ -123.92288577599993, 49.117902700000037 ], [ -123.923005040999939, 49.117745376000052 ], [ -123.923305778999961, 49.11750982700007 ], [ -123.923966257999936, 49.117126318000018 ], [ -123.92438979899994, 49.116839115000069 ], [ -123.924460484999912, 49.116740908000068 ], [ -123.925051958999958, 49.115918980000039 ], [ -123.925736577999928, 49.114967600000043 ], [ -123.925907040999945, 49.114829508000106 ], [ -123.926912449, 49.114014897000075 ], [ -123.927292606999941, 49.113706712000045 ], [ -123.927796015999931, 49.113298565000015 ], [ -123.928167777999988, 49.112997111 ], [ -123.92911928599996, 49.112222896000084 ], [ -123.930535598999981, 49.111092006000021 ], [ -123.930848505999904, 49.110887312000038 ], [ -123.931107092999952, 49.110766220000109 ], [ -123.931495302999949, 49.110656626000072 ], [ -123.932178164999968, 49.110534627000035 ], [ -123.932513890999985, 49.110464524000101 ], [ -123.932800298999936, 49.110363083000045 ], [ -123.932858773999925, 49.110342374000012 ], [ -123.932927873999958, 49.11030781200008 ], [ -123.932934414999977, 49.110656599000059 ], [ -123.933004907999987, 49.110656029000012 ], [ -123.932977302999987, 49.111465858000024 ], [ -123.932949594999911, 49.111466082000071 ], [ -123.932959425999982, 49.111990307000035 ], [ -123.932917880999966, 49.11320898600011 ], [ -123.932825653999927, 49.122292463000079 ], [ -123.932911117999964, 49.123070719000097 ], [ -123.932640066999966, 49.123072908000069 ], [ -123.930484897999975, 49.122796802000025 ], [ -123.930489366999936, 49.12286986100009 ], [ -123.927595199999985, 49.123113555000074 ], [ -123.927000474999929, 49.123118331000029 ], [ -123.926995445999978, 49.122848504000011 ], [ -123.926390282999961, 49.122853361000054 ], [ -123.926374113999927, 49.123216348000042 ], [ -123.924243975999957, 49.123395633000072 ], [ -123.924391160999974, 49.123858883000011 ], [ -123.924527397999924, 49.124371799000123 ], [ -123.923951110999937, 49.124754836000079 ], [ -123.923822145999949, 49.124840555000112 ], [ -123.923256461, 49.124754003000092 ], [ -123.923217795, 49.124752061000059 ], [ -123.919936946999911, 49.124585413000055 ], [ -123.919923273999956, 49.1245848430001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.917479369842461", "sL_AssetLoss": "2666", "sL_BldgLoss": "2446", "sL_StrLoss": "1870", "sL_NStrLoss": "576", "sL_ContLoss": "220", "geom_point": "0101000020E6100000DBB97A5FE6F95EC0E4F2A30A148A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.903594835999982, 49.079585209000115 ], [ -123.903589939999961, 49.079315378000061 ], [ -123.90317918099997, 49.079318593000075 ], [ -123.903174286999956, 49.07904876200012 ], [ -123.902763528999941, 49.079051976000081 ], [ -123.902748856999935, 49.078242482000043 ], [ -123.903159608999914, 49.078239268000125 ], [ -123.90315957099989, 49.078237224000084 ], [ -123.903500312999967, 49.078226309000094 ], [ -123.903579346999948, 49.078213337000065 ], [ -123.903824091999965, 49.078173208000081 ], [ -123.90425660899993, 49.078041801000062 ], [ -123.904428701999976, 49.077989504000087 ], [ -123.90447812799999, 49.077969087000071 ], [ -123.904761802999985, 49.077851891000115 ], [ -123.905074100999954, 49.077684532000013 ], [ -123.905614299999954, 49.077680295000093 ], [ -123.905624113, 49.078219957000044 ], [ -123.906445612999974, 49.078213508000083 ], [ -123.906465255999962, 49.079292832000121 ], [ -123.905643735999917, 49.079299281000047 ], [ -123.905648643999953, 49.079569112000051 ], [ -123.903594835999982, 49.079585209000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.939212755356253", "sL_AssetLoss": "2007", "sL_BldgLoss": "1885", "sL_StrLoss": "1520", "sL_NStrLoss": "365", "sL_ContLoss": "122", "geom_point": "0101000020E610000084EB7A3790FA5EC0F5709737668C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.912677422999934, 49.096297219000121 ], [ -123.917250558999953, 49.096385898000072 ], [ -123.917197625999947, 49.097569736000054 ], [ -123.912687428999902, 49.097209686000056 ], [ -123.912677422999934, 49.096297219000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.964968561529578", "sL_AssetLoss": "1558.6", "sL_BldgLoss": "1504", "sL_StrLoss": "1290", "sL_NStrLoss": "214", "sL_ContLoss": "54.6", "geom_point": "0101000020E61000002A7DB64839FE5EC077B2827CDC894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.973417998999963, 49.078747584000041 ], [ -123.973412726, 49.078477759000052 ], [ -123.9730019799999, 49.07848122200005 ], [ -123.972996710999936, 49.078211396 ], [ -123.972585967999976, 49.078214858000059 ], [ -123.972575429999921, 49.077675206000031 ], [ -123.972164692999968, 49.077678667000086 ], [ -123.97215416, 49.077139015000057 ], [ -123.971743426, 49.077142474000055 ], [ -123.971732898, 49.076602822000119 ], [ -123.971322167999929, 49.076606279000082 ], [ -123.971311643999982, 49.076066627000039 ], [ -123.97090092, 49.076070083000083 ], [ -123.970885142999933, 49.075260604000029 ], [ -123.970474423999988, 49.07526406000003 ], [ -123.970466887, 49.074877205000028 ], [ -123.97087296299999, 49.07516213800006 ], [ -123.97177594, 49.075971710000054 ], [ -123.973052121999928, 49.077729497000121 ], [ -123.97329469099995, 49.077970026000067 ], [ -123.974074733999885, 49.078589038000111 ], [ -123.974370393999934, 49.078739549000034 ], [ -123.973417998999963, 49.078747584000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27173666", "BldgCostT": "18476666", "sL_LossRatio": "0.844635245136069", "sL_AssetLoss": "118844.2", "sL_BldgLoss": "100380", "sL_StrLoss": "67071", "sL_NStrLoss": "33309", "sL_ContLoss": "18464.2", "geom_point": "0101000020E6100000721EC2B64DFF5EC067A35270A18A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.995787031999896, 49.088002220000092 ], [ -123.995781634999943, 49.087732396000071 ], [ -123.99454918099994, 49.087743022000012 ], [ -123.994538400999929, 49.087203375000065 ], [ -123.99207351699998, 49.087224587000087 ], [ -123.992084267999971, 49.087764235000051 ], [ -123.990851812999935, 49.087774822000085 ], [ -123.990824964999959, 49.086425702000085 ], [ -123.990414157999965, 49.086429228000064 ], [ -123.99039805599989, 49.085619756000071 ], [ -123.989576453999987, 49.085626803 ], [ -123.989587179999901, 49.086166451000111 ], [ -123.98917637299995, 49.086169972000086 ], [ -123.989203173999954, 49.087519092000086 ], [ -123.987559905999944, 49.08753316500011 ], [ -123.987549201999954, 49.086993517000074 ], [ -123.983030253999985, 49.087032092000086 ], [ -123.983024927000017, 49.086762267000118 ], [ -123.981792490999922, 49.086772757000105 ], [ -123.98178717199994, 49.086502932000052 ], [ -123.980554741999953, 49.086513409000112 ], [ -123.980517548999927, 49.084624635000075 ], [ -123.980928341999956, 49.084621144000074 ], [ -123.980915833, 49.08398598600013 ], [ -123.980853937999967, 49.080843594000029 ], [ -123.980032411999943, 49.080850572000053 ], [ -123.98002179299999, 49.080310922000102 ], [ -123.979611033999987, 49.080314409000088 ], [ -123.979605726999949, 49.080044584000042 ], [ -123.97755194299999, 49.080061997000037 ], [ -123.977562534999961, 49.080601648000105 ], [ -123.977151771999942, 49.080605126000101 ], [ -123.977157066999936, 49.080874951000069 ], [ -123.976746303999946, 49.080878428000041 ], [ -123.976756887999898, 49.08141808000002 ], [ -123.976346117999981, 49.081421554000052 ], [ -123.976351407999942, 49.08169138100002 ], [ -123.975119095999915, 49.081701797000044 ], [ -123.975140228999948, 49.082781100000012 ], [ -123.974729449000023, 49.082784569000111 ], [ -123.974734730999927, 49.083054395000012 ], [ -123.973502382999953, 49.08306479500007 ], [ -123.973497108999965, 49.082794971000048 ], [ -123.973086327999937, 49.082798434000068 ], [ -123.973065239999926, 49.081719131000071 ], [ -123.973886782999983, 49.081712202000091 ], [ -123.97387095299996, 49.080902725000023 ], [ -123.974281717999972, 49.080899260000081 ], [ -123.974271160999976, 49.080359607000084 ], [ -123.975092680000031, 49.080352670000153 ], [ -123.975067371999955, 49.079059884000038 ], [ -123.975083909999952, 49.079066481000027 ], [ -123.975626905999917, 49.07923187800008 ], [ -123.975988356999949, 49.079341969000062 ], [ -123.976453781999965, 49.079428204000109 ], [ -123.97648812099996, 49.079432153000077 ], [ -123.976987251999915, 49.079489592000066 ], [ -123.97894699699998, 49.079559766000088 ], [ -123.980572891999969, 49.079757829000052 ], [ -123.980865497999957, 49.079792158000082 ], [ -123.981208406999926, 49.07983282900004 ], [ -123.981779412999927, 49.079849853000063 ], [ -123.982380302999914, 49.079807986000098 ], [ -123.98276970799995, 49.079722539000088 ], [ -123.983165164999917, 49.079592171000073 ], [ -123.983513413999944, 49.079446494000166 ], [ -123.987861064999933, 49.077050405000115 ], [ -123.988413681999987, 49.076827483000038 ], [ -123.98900409799991, 49.07667821600004 ], [ -123.989457022999929, 49.076641663000061 ], [ -123.992274169999916, 49.076674382000057 ], [ -123.992280014999963, 49.076967741000033 ], [ -123.991458554999937, 49.076974799000084 ], [ -123.991474665999959, 49.077784273000084 ], [ -123.99188540399993, 49.077780744000037 ], [ -123.99189615, 49.078320392000094 ], [ -123.993128372999976, 49.078309796000084 ], [ -123.993136136999937, 49.078699158000077 ], [ -123.992239378999955, 49.079233387 ], [ -123.991770041, 49.079627206000069 ], [ -123.991698678999967, 49.079687099000104 ], [ -123.991478271999981, 49.07997749500008 ], [ -123.991419791999959, 49.080224085000062 ], [ -123.99139134499994, 49.081183715000066 ], [ -123.991389801999958, 49.081236693000044 ], [ -123.991416478999952, 49.081894222000066 ], [ -123.991440891999986, 49.082496690000021 ], [ -123.991509685, 49.082981231000119 ], [ -123.991619381999925, 49.083753535000085 ], [ -123.992048109999971, 49.083721171000057 ], [ -123.993412180999982, 49.083280561000024 ], [ -123.99420763199997, 49.08259376800013 ], [ -123.994964096999951, 49.082241685000028 ], [ -123.995140879999937, 49.081696977000057 ], [ -123.995980092999957, 49.081316819000094 ], [ -123.996201593999928, 49.081314035000041 ], [ -123.99950359099995, 49.082628205000056 ], [ -123.999557710999966, 49.083342975000043 ], [ -123.999889214999939, 49.083563157000086 ], [ -124.001309135999946, 49.083563109000053 ], [ -124.002254164999897, 49.084179218000067 ], [ -124.00255720899996, 49.084569621000057 ], [ -124.002961699999915, 49.085477862000118 ], [ -124.003095296999959, 49.086844504000133 ], [ -124.003072999, 49.086859651000069 ], [ -124.002749228999917, 49.08686246400007 ], [ -124.00275279899995, 49.087039714000056 ], [ -124.000004500999921, 49.086849601000075 ], [ -123.998790351999972, 49.086809618000103 ], [ -123.998061624999977, 49.086920723000127 ], [ -123.994515810999985, 49.087008745000084 ], [ -123.995103689999937, 49.087176099000025 ], [ -123.9953044799999, 49.087267483000034 ], [ -123.995836293999929, 49.087509497000084 ], [ -123.99650582, 49.087996017000108 ], [ -123.995787031999896, 49.088002220000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.9375", "sL_AssetLoss": "2144", "sL_BldgLoss": "2010", "sL_StrLoss": "1620", "sL_NStrLoss": "390", "sL_ContLoss": "134", "geom_point": "0101000020E61000006FE7CAB977FA5EC05C578AEC1C8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.912898677999976, 49.094084935000076 ], [ -123.912893728999975, 49.093815106000044 ], [ -123.914126361999976, 49.093805350000068 ], [ -123.914131318, 49.094075180000132 ], [ -123.914542198999953, 49.094071925000037 ], [ -123.91456202599997, 49.095151244000128 ], [ -123.914151137999951, 49.095154499000103 ], [ -123.914156093999964, 49.095424328000043 ], [ -123.912667979999981, 49.095436104000044 ], [ -123.912653569999989, 49.094122276000029 ], [ -123.911570820999913, 49.094095430000067 ], [ -123.912898677999976, 49.094084935000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923749", "BldgCostT": "4774999", "sL_LossRatio": "0.891609606225056", "sL_AssetLoss": "25908.2", "sL_BldgLoss": "23100", "sL_StrLoss": "16770", "sL_NStrLoss": "6330", "sL_ContLoss": "2808.2", "geom_point": "0101000020E6100000F664176F98FD5EC005D52FA6D3904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.968981163999942, 49.133244094000062 ], [ -123.968642091999982, 49.133000113000065 ], [ -123.965515995999937, 49.133103556000059 ], [ -123.964173076999913, 49.133147972000067 ], [ -123.961080956000032, 49.133081384000029 ], [ -123.95555902299999, 49.132949026000055 ], [ -123.95501463, 49.132954376000072 ], [ -123.955094666999969, 49.131132703000105 ], [ -123.956871544999899, 49.131166454000102 ], [ -123.95687259499999, 49.13114254700011 ], [ -123.959953685999963, 49.131201001000136 ], [ -123.960060405, 49.128766019000118 ], [ -123.965532810999932, 49.128869624000117 ], [ -123.965423961999974, 49.131359868000054 ], [ -123.968688945999958, 49.131421548000048 ], [ -123.968665417999901, 49.13196065900005 ], [ -123.969252257999941, 49.131971734000025 ], [ -123.969248375999939, 49.132060710000069 ], [ -123.970403621999978, 49.132082504000103 ], [ -123.970361944999965, 49.133038259000088 ], [ -123.970284335999949, 49.13304763400005 ], [ -123.969835204999967, 49.132984216000096 ], [ -123.969379448999959, 49.133072874000028 ], [ -123.968991637999935, 49.133236655000104 ], [ -123.968981163999942, 49.133244094000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.95450643776824", "sL_AssetLoss": "1747.5", "sL_BldgLoss": "1668", "sL_StrLoss": "1400", "sL_NStrLoss": "268", "sL_ContLoss": "79.5", "geom_point": "0101000020E6100000B126A2A1B7FB5EC0E17F8692248F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.932825653999927, 49.122292463000079 ], [ -123.932917880999966, 49.11320898600011 ], [ -123.932959425999982, 49.111990307000035 ], [ -123.933025503999886, 49.115513491000044 ], [ -123.933436559999976, 49.115510168000036 ], [ -123.93349226, 49.118478266000132 ], [ -123.933081179999974, 49.118481590000073 ], [ -123.933167245999954, 49.123068648000114 ], [ -123.932911117999964, 49.123070719000097 ], [ -123.932825653999927, 49.122292463000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.961915513041412", "sL_AssetLoss": "1683.1", "sL_BldgLoss": "1619", "sL_StrLoss": "1380", "sL_NStrLoss": "239", "sL_ContLoss": "64.1", "geom_point": "0101000020E6100000C9ABB5289AFC5EC0862F5DD2628B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.946506015999901, 49.089363597 ], [ -123.946498278999954, 49.088956662000022 ], [ -123.946238245999936, 49.088958794000092 ], [ -123.946087445999964, 49.088960030000123 ], [ -123.946082961999963, 49.088724036000073 ], [ -123.946072064, 49.088150548000065 ], [ -123.947304547999977, 49.088140439000064 ], [ -123.947319947999986, 49.088949922000097 ], [ -123.947730780999962, 49.088946548000067 ], [ -123.947746189999918, 49.089756031000078 ], [ -123.94677090299993, 49.089764035 ], [ -123.946513667999966, 49.089766145000034 ], [ -123.946506015999901, 49.089363597 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.813573293034758", "sL_AssetLoss": "14558", "sL_BldgLoss": "11844", "sL_StrLoss": "6490", "sL_NStrLoss": "5354", "sL_ContLoss": "2714", "geom_point": "0101000020E61000001AF7496207FB5EC003361060CB8C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.92034766299993, 49.101913492000108 ], [ -123.920491090999974, 49.098701056000039 ], [ -123.921129105999967, 49.098713393000075 ], [ -123.921145285999955, 49.098350871000108 ], [ -123.924353220999933, 49.098412842000059 ], [ -123.924383830999943, 49.10066501000005 ], [ -123.924379931999965, 49.101129223000065 ], [ -123.923731324999963, 49.101091259000022 ], [ -123.92034766299993, 49.101913492000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.846953654980029", "sL_AssetLoss": "15773", "sL_BldgLoss": "13359", "sL_StrLoss": "8173", "sL_NStrLoss": "5186", "sL_ContLoss": "2414", "geom_point": "0101000020E6100000DAC40B1A61F95EC03D8C7BB9708A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.892555909, 49.082554780000066 ], [ -123.89255259399998, 49.082369821000036 ], [ -123.892455875999985, 49.082370569000041 ], [ -123.892352981999963, 49.079672671000019 ], [ -123.892979729999965, 49.079667824000111 ], [ -123.893736529999941, 49.079661967000042 ], [ -123.89374137099999, 49.079931798000132 ], [ -123.894152136999978, 49.079928617000036 ], [ -123.8941664199999, 49.080724194000013 ], [ -123.894166669999919, 49.080738113000052 ], [ -123.89457744299996, 49.080734930000077 ], [ -123.894582289999946, 49.081004760000042 ], [ -123.896225386999959, 49.08099201400011 ], [ -123.896230241999916, 49.081261846000125 ], [ -123.896641018999944, 49.081258655000106 ], [ -123.896645876999955, 49.081528487000142 ], [ -123.89787821199991, 49.081518906999989 ], [ -123.897873347999976, 49.081249076000113 ], [ -123.899105676999937, 49.081239482000086 ], [ -123.899100805999964, 49.080969652000078 ], [ -123.901976221000012, 49.080947216000013 ], [ -123.901981108, 49.08121704800012 ], [ -123.902391882999964, 49.081213837000043 ], [ -123.902406550999956, 49.082023330000041 ], [ -123.90199576899991, 49.082026542000058 ], [ -123.90200065499999, 49.082296373000077 ], [ -123.89994673299999, 49.082312406000071 ], [ -123.899941855999913, 49.082042574000134 ], [ -123.899120290999946, 49.082048977000071 ], [ -123.899126962999958, 49.08241857700002 ], [ -123.89913001799998, 49.082587720000099 ], [ -123.89564476599999, 49.08257033000006 ], [ -123.892555909, 49.082554780000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.851939863068489", "sL_AssetLoss": "8500.6", "sL_BldgLoss": "7242", "sL_StrLoss": "4700", "sL_NStrLoss": "2542", "sL_ContLoss": "1258.6", "geom_point": "0101000020E6100000E49D8535FCFF5EC0B15B781C8E8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.997940376999964, 49.104601185000107 ], [ -124.003184272999974, 49.104698676000076 ], [ -124.003006491999955, 49.104764809000116 ], [ -124.002433606999929, 49.105199895000055 ], [ -124.002054606999963, 49.10573950000002 ], [ -124.001985062999978, 49.105975138000133 ], [ -124.001942507999942, 49.106119296 ], [ -124.001826846999975, 49.106207527000059 ], [ -124.001631306999968, 49.106356690000048 ], [ -124.001232791999897, 49.106502549000055 ], [ -124.000013839999966, 49.106948727000024 ], [ -123.999104921999944, 49.1072814 ], [ -123.998631586999949, 49.10762469700007 ], [ -123.998289261999915, 49.108209953000021 ], [ -123.997785637999954, 49.108200579000048 ], [ -123.997940376999964, 49.104601185000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.809490084985836", "sL_AssetLoss": "4236", "sL_BldgLoss": "3429", "sL_StrLoss": "1873", "sL_NStrLoss": "1556", "sL_ContLoss": "807", "geom_point": "0101000020E6100000A1EAE3E34BFE5EC0C2AA9396BE904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.97234886899993, 49.129584923999985 ], [ -123.975993624999916, 49.129653541000046 ], [ -123.975877336999972, 49.129980356000011 ], [ -123.975628645999933, 49.130337010000048 ], [ -123.975319487999968, 49.130780340000086 ], [ -123.972942510999957, 49.132129639000077 ], [ -123.972178738999929, 49.132468275000043 ], [ -123.971500469999953, 49.132730149000089 ], [ -123.971275127999974, 49.132801664000056 ], [ -123.971297555999953, 49.132287106000092 ], [ -123.971423636999972, 49.132289482000054 ], [ -123.97145299, 49.131616009 ], [ -123.971905308999965, 49.131624534000075 ], [ -123.971984270999911, 49.129812316000034 ], [ -123.9723386739999, 49.129818995000051 ], [ -123.97234886899993, 49.129584923999985 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.931146213041717", "sL_AssetLoss": "2469", "sL_BldgLoss": "2299", "sL_StrLoss": "1810", "sL_NStrLoss": "489", "sL_ContLoss": "170", "geom_point": "0101000020E61000004C12322D3DFA5EC06DD286267D8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.909368899999905, 49.087994076000058 ], [ -123.910658600999966, 49.088019149000061 ], [ -123.910497172999925, 49.091618507000106 ], [ -123.909407569999971, 49.091597325000073 ], [ -123.909368899999905, 49.087994076000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10005000", "BldgCostT": "6900000", "sL_LossRatio": "0.863036408850348", "sL_AssetLoss": "47049", "sL_BldgLoss": "40605", "sL_StrLoss": "26520", "sL_NStrLoss": "14085", "sL_ContLoss": "6444", "geom_point": "0101000020E610000032D989DC9DFB5EC04E9253E089904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.932900248999914, 49.133023572000127 ], [ -123.932948811, 49.13268703600005 ], [ -123.933253545999932, 49.13057629900004 ], [ -123.933203243999941, 49.130477144000047 ], [ -123.932109908999948, 49.130396282000049 ], [ -123.93210964599993, 49.130392618000094 ], [ -123.931365297999932, 49.130332304000042 ], [ -123.930748569999963, 49.13028235300002 ], [ -123.93000586699999, 49.130222169000014 ], [ -123.92817615099996, 49.130355573000038 ], [ -123.926768903999942, 49.128944576 ], [ -123.925905561999983, 49.12756193200007 ], [ -123.925700542999962, 49.127069172000041 ], [ -123.923995581999975, 49.125046361000081 ], [ -123.923822145999949, 49.124840555000112 ], [ -123.923951110999937, 49.124754836000079 ], [ -123.924527397999924, 49.124371799000123 ], [ -123.924391160999974, 49.123858883000011 ], [ -123.924243975999957, 49.123395633000072 ], [ -123.926374113999927, 49.123216348000042 ], [ -123.926350434999961, 49.123747924000092 ], [ -123.925367117999926, 49.123728967000083 ], [ -123.925371062999943, 49.123941006000109 ], [ -123.92619331399996, 49.123934413000093 ], [ -123.926198339999985, 49.124204240000104 ], [ -123.926609467999924, 49.124200942000087 ], [ -123.926614494999924, 49.124470768000059 ], [ -123.927025625999946, 49.124467468000034 ], [ -123.927030655999957, 49.12473729500006 ], [ -123.927441786999978, 49.124733993000049 ], [ -123.927446820999947, 49.125003818999986 ], [ -123.927857953999975, 49.125000517000075 ], [ -123.927862988999962, 49.12527034400005 ], [ -123.928274123999969, 49.125267039000072 ], [ -123.928279161999939, 49.125536866000054 ], [ -123.928690298999982, 49.125533559000104 ], [ -123.928695340000033, 49.125803387000182 ], [ -123.929106479999959, 49.125800078000061 ], [ -123.929111522999932, 49.126069905000065 ], [ -123.929522665999983, 49.126066595000118 ], [ -123.929527709999917, 49.126336423000083 ], [ -123.929938853999957, 49.126333111000093 ], [ -123.929943900999973, 49.126602938000104 ], [ -123.930355046999921, 49.126599626000086 ], [ -123.930360096999948, 49.126869453000026 ], [ -123.930771244999974, 49.126866139000086 ], [ -123.930776295999962, 49.127135965 ], [ -123.931187447999918, 49.127132649000082 ], [ -123.931192501999973, 49.127402477000025 ], [ -123.931603652999939, 49.127399160000031 ], [ -123.931608710999967, 49.127668987000106 ], [ -123.932019866, 49.127665667 ], [ -123.932024923999947, 49.127935495000024 ], [ -123.933258396999946, 49.127925530000127 ], [ -123.933263462999918, 49.128195356000063 ], [ -123.933674621999984, 49.128192032000129 ], [ -123.933684756, 49.128731685000034 ], [ -123.934095918999958, 49.1287283590001 ], [ -123.934100988999916, 49.128998186000025 ], [ -123.934512155999954, 49.128994858000105 ], [ -123.934517226999958, 49.129264684000084 ], [ -123.934928395999975, 49.129261355000025 ], [ -123.934933469999976, 49.129531182000079 ], [ -123.935755810999979, 49.129524520000075 ], [ -123.935765967999913, 49.130064173000072 ], [ -123.936177142999924, 49.130060839000087 ], [ -123.93618222399999, 49.130330666000091 ], [ -123.936593401999971, 49.130327330000092 ], [ -123.93659848399993, 49.130597156000064 ], [ -123.937009663999902, 49.130593820000087 ], [ -123.937014749999932, 49.130863647000041 ], [ -123.937425929999932, 49.130860308000045 ], [ -123.937431018999945, 49.131130134000081 ], [ -123.937842202, 49.131126795000121 ], [ -123.937847290999926, 49.131396621000107 ], [ -123.93825847799998, 49.13139328000004 ], [ -123.938263569999975, 49.13166310600009 ], [ -123.93867475899998, 49.131659764000126 ], [ -123.938679852999925, 49.13192959 ], [ -123.939091041999959, 49.131926246000042 ], [ -123.939096141, 49.132196071000052 ], [ -123.939507331999891, 49.132192726000099 ], [ -123.93951243099994, 49.132462552000014 ], [ -123.940334819999975, 49.132455856000021 ], [ -123.940345026999978, 49.132995508000185 ], [ -123.941578623999973, 49.132985454000085 ], [ -123.941585543999921, 49.133350828000083 ], [ -123.934606612999957, 49.133611677000104 ], [ -123.933798659000018, 49.133641818000108 ], [ -123.933185567999914, 49.133664700000082 ], [ -123.932893877999973, 49.133603668000063 ], [ -123.932842451999988, 49.133423837000059 ], [ -123.932900248999914, 49.133023572000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128267168", "BldgCostT": "87516668", "sL_LossRatio": "0.807209915974548", "sL_AssetLoss": "910224.2", "sL_BldgLoss": "734742", "sL_StrLoss": "415124", "sL_NStrLoss": "319618", "sL_ContLoss": "175482.2", "geom_point": "0101000020E6100000636E424A41FC5EC0F691BEBDA98B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.960786186999954, 49.105400728000063 ], [ -123.960784254999979, 49.105300656000097 ], [ -123.960373286999967, 49.105304077000028 ], [ -123.960368079999938, 49.10503425100007 ], [ -123.960315876999942, 49.105034686000096 ], [ -123.959957114999909, 49.105037670000051 ], [ -123.959957210999931, 49.105042657000105 ], [ -123.95996232, 49.105307495000133 ], [ -123.956411888999952, 49.105336968000117 ], [ -123.956373828999958, 49.106204334000061 ], [ -123.956211474999975, 49.10620124800009 ], [ -123.956189848999912, 49.10669403600005 ], [ -123.954401329999925, 49.106660034000065 ], [ -123.954400976999949, 49.10666808000007 ], [ -123.948931203999905, 49.106563906000105 ], [ -123.948935614999982, 49.106463753000071 ], [ -123.948313686999953, 49.106451890000109 ], [ -123.94832474199994, 49.106200927000067 ], [ -123.947845284999914, 49.106191779000063 ], [ -123.947848227999913, 49.106124979000157 ], [ -123.947129361999941, 49.106111260000027 ], [ -123.947187041999911, 49.104802737000085 ], [ -123.945798793999927, 49.104776229000059 ], [ -123.945836807999939, 49.103914349000036 ], [ -123.945626239999953, 49.10391032700003 ], [ -123.945636850999946, 49.103669760000059 ], [ -123.944980030999943, 49.103657211000098 ], [ -123.945039285999925, 49.102314243000095 ], [ -123.945138835999927, 49.100057868000071 ], [ -123.94602091599991, 49.100074720000059 ], [ -123.946107807999965, 49.098104187000132 ], [ -123.946958572999904, 49.098120433000133 ], [ -123.9470278, 49.098121755000093 ], [ -123.947052099999951, 49.097570408000117 ], [ -123.948053896999966, 49.097589530000093 ], [ -123.948306400999982, 49.09759434900009 ], [ -123.948306081999988, 49.097577642000026 ], [ -123.948049540999975, 49.097579750000115 ], [ -123.947895175999989, 49.097581017000081 ], [ -123.947893132999965, 49.097473718000074 ], [ -123.947888253999963, 49.097217478000111 ], [ -123.947879762999918, 49.096771536000098 ], [ -123.948290659999955, 49.096768162000032 ], [ -123.948285519, 49.096498335000035 ], [ -123.948650792999942, 49.096495334000046 ], [ -123.948723818999937, 49.094837040000073 ], [ -123.947065094, 49.094805382000089 ], [ -123.943565114999927, 49.094738498000048 ], [ -123.943601088999955, 49.093923593000049 ], [ -123.941989608999947, 49.093892759000035 ], [ -123.942010077999939, 49.093429426000043 ], [ -123.941175006999956, 49.093413439000123 ], [ -123.941196243999912, 49.09293292100007 ], [ -123.940146398999971, 49.092912813000069 ], [ -123.940156179999988, 49.092691595000083 ], [ -123.939561391000012, 49.092680199000014 ], [ -123.939622344999933, 49.09130199600007 ], [ -123.937142285999983, 49.091254439000124 ], [ -123.937172743999895, 49.090566552000084 ], [ -123.935987884999989, 49.090543811000032 ], [ -123.936013778999964, 49.089959347000082 ], [ -123.934911780999968, 49.089938184000111 ], [ -123.934917497999962, 49.089809212000027 ], [ -123.934807347999964, 49.089807096000101 ], [ -123.934598120999922, 49.089803076000067 ], [ -123.934604315999977, 49.090133059000053 ], [ -123.933782625999953, 49.09013970900002 ], [ -123.933807929999958, 49.091488851000079 ], [ -123.932986216999936, 49.091495496000093 ], [ -123.932988223, 49.091602566000113 ], [ -123.933962851999965, 49.091621300000071 ], [ -123.935342994999971, 49.091647813000101 ], [ -123.935183461999955, 49.095247188000037 ], [ -123.934930575999914, 49.095242331000058 ], [ -123.93491791699995, 49.095527903000075 ], [ -123.935116523999952, 49.095526294000145 ], [ -123.935121593999924, 49.095796122000131 ], [ -123.935532485999943, 49.095792792000026 ], [ -123.935537556999947, 49.096062621000058 ], [ -123.935948449999927, 49.096059290000049 ], [ -123.935953524999888, 49.096329118000064 ], [ -123.936775315999938, 49.096322451000013 ], [ -123.936780394999971, 49.096592279000063 ], [ -123.937191293999931, 49.096588944000054 ], [ -123.937196372999907, 49.096858772000111 ], [ -123.937607273999959, 49.096855434000169 ], [ -123.937612356999963, 49.097125263000073 ], [ -123.938434161999965, 49.097118584000057 ], [ -123.938439249999959, 49.097388411000054 ], [ -123.938850153999965, 49.097385071000105 ], [ -123.938855242999978, 49.097654898000087 ], [ -123.939266149999938, 49.097651555000063 ], [ -123.939271242999922, 49.097921383000021 ], [ -123.939682150999928, 49.097918038000095 ], [ -123.93969233899999, 49.098457693000086 ], [ -123.940925079999957, 49.098447652000061 ], [ -123.940930179999924, 49.098717479000136 ], [ -123.94134109599996, 49.098714128000054 ], [ -123.941351302999948, 49.099253783000059 ], [ -123.942173142999977, 49.099247078000062 ], [ -123.942178248999966, 49.099516905000108 ], [ -123.942589173, 49.099513550000069 ], [ -123.942594280999941, 49.099783377000087 ], [ -123.943005206999885, 49.099780021000086 ], [ -123.943010317999949, 49.100049849000072 ], [ -123.943421243999964, 49.1000464910001 ], [ -123.943426360999965, 49.100316318000075 ], [ -123.943837287999969, 49.100312958000117 ], [ -123.943852638999914, 49.101122440000019 ], [ -123.943030768999932, 49.101129158000084 ], [ -123.943046107999962, 49.101938639000082 ], [ -123.94188476799998, 49.10194812100012 ], [ -123.941402339999968, 49.101952056000094 ], [ -123.941401208999963, 49.101892241000115 ], [ -123.941401127999967, 49.101887975000061 ], [ -123.941397235999915, 49.101682229000119 ], [ -123.941230670999943, 49.101683587000103 ], [ -123.94122316, 49.101853504000104 ], [ -123.941221405999983, 49.101893208000085 ], [ -123.94109134299994, 49.10483541400005 ], [ -123.938035726999914, 49.104776873000041 ], [ -123.938245442999957, 49.104779041000072 ], [ -123.938213743999967, 49.102017590000102 ], [ -123.938175882999957, 49.101576053 ], [ -123.936070498999982, 49.101619047000042 ], [ -123.935759928999943, 49.101614474000044 ], [ -123.935781345999914, 49.101131240000086 ], [ -123.93646587299996, 49.101144379000083 ], [ -123.939269013999976, 49.101198132000036 ], [ -123.939333105999935, 49.101199360000074 ], [ -123.939332350999919, 49.101159313000039 ], [ -123.939162000999929, 49.10116069900009 ], [ -123.938510478999945, 49.101165997000102 ], [ -123.938506715999921, 49.100966463000063 ], [ -123.938505390999936, 49.100896171000045 ], [ -123.938166903999942, 49.100898921000059 ], [ -123.937683521999929, 49.100902850000104 ], [ -123.937683212999971, 49.100886437000085 ], [ -123.937678439999928, 49.100633022000082 ], [ -123.936856575999911, 49.100639696000073 ], [ -123.936853579999976, 49.100480544000085 ], [ -123.93685149599996, 49.100369868000101 ], [ -123.936440566999977, 49.100373202000064 ], [ -123.936425335999971, 49.099563718000084 ], [ -123.936014412999953, 49.09956705200009 ], [ -123.935999190999922, 49.098757568000046 ], [ -123.934766439999962, 49.098767558000063 ], [ -123.934756305999954, 49.098227903000108 ], [ -123.933523569999963, 49.098237878000091 ], [ -123.933528628999937, 49.098507706000078 ], [ -123.933231707999951, 49.09851010700001 ], [ -123.933205672999975, 49.098079651000091 ], [ -123.933140700999957, 49.097227075000056 ], [ -123.929372757999957, 49.097149047000123 ], [ -123.929454853999985, 49.095302153000112 ], [ -123.928948134, 49.095306233000052 ], [ -123.928938062999976, 49.094766575000094 ], [ -123.928527178999943, 49.094769882000094 ], [ -123.928522145999935, 49.094500053000083 ], [ -123.92811126399999, 49.094503358000068 ], [ -123.928106231999962, 49.09423352800011 ], [ -123.927695352999962, 49.09423683200005 ], [ -123.927690323999983, 49.093967003000053 ], [ -123.927279446999989, 49.093970305000035 ], [ -123.927269395999986, 49.093430647000027 ], [ -123.92644764799995, 49.093437246000065 ], [ -123.926437604999961, 49.092897588000085 ], [ -123.926026734999965, 49.092900884000109 ], [ -123.926016696999937, 49.092361228000051 ], [ -123.925605833999938, 49.092364523000107 ], [ -123.925600816999975, 49.092094693000028 ], [ -123.924779090999962, 49.092101280000051 ], [ -123.924769065999925, 49.091561622000029 ], [ -123.924358207999944, 49.091564913000063 ], [ -123.924348188999957, 49.091025255000019 ], [ -123.923937333999987, 49.091028544 ], [ -123.923922312999977, 49.090219058000109 ], [ -123.923511464999962, 49.090222346000083 ], [ -123.923506458999967, 49.089952516000047 ], [ -123.923095614999966, 49.089955803000045 ], [ -123.923085608999926, 49.089416143000051 ], [ -123.922674768999968, 49.089419429000017 ], [ -123.922659767999946, 49.088609941000072 ], [ -123.923070600999935, 49.088606656000067 ], [ -123.92306559799999, 49.088336827000063 ], [ -123.923476430999969, 49.088333541000075 ], [ -123.923466421999962, 49.087793882000049 ], [ -123.923877249999961, 49.087790595000065 ], [ -123.923872241999959, 49.087520766000118 ], [ -123.924283066999948, 49.087517477000127 ], [ -123.924273049999897, 49.086977818000086 ], [ -123.924683869999939, 49.086974527000052 ], [ -123.92467886, 49.086704698000091 ], [ -123.92508967699996, 49.086701407000092 ], [ -123.925079652999941, 49.086161748000123 ], [ -123.92466883799996, 49.086165040000047 ], [ -123.924634966999946, 49.084340925000056 ], [ -123.923919607999949, 49.084327111000114 ], [ -123.923983124999921, 49.082901514000056 ], [ -123.924067892, 49.080998874000059 ], [ -123.921852634999951, 49.080956067000123 ], [ -123.921969174999973, 49.078342750000033 ], [ -123.921918793999964, 49.078341775000112 ], [ -123.921966877999949, 49.07726347200002 ], [ -123.920207197999943, 49.077229434000046 ], [ -123.920273083, 49.075753092000063 ], [ -123.919700838999987, 49.075742017000046 ], [ -123.91969144799998, 49.075952425000047 ], [ -123.91923689099994, 49.075943625999983 ], [ -123.919230336999988, 49.076090436000122 ], [ -123.918900015999952, 49.076084040000083 ], [ -123.918890834999942, 49.076289643000074 ], [ -123.918623827999966, 49.07628447300003 ], [ -123.91851445899999, 49.078733146000033 ], [ -123.913048044999925, 49.078627143000112 ], [ -123.913056817, 49.078431268000067 ], [ -123.910558044999931, 49.078451007000069 ], [ -123.910553111999945, 49.078181177000062 ], [ -123.910142361999945, 49.078184417000095 ], [ -123.910127570999933, 49.077374924000132 ], [ -123.910538313999893, 49.077371685000102 ], [ -123.91053765199996, 49.077335480000023 ], [ -123.910347120999958, 49.077331776000086 ], [ -123.910361149999957, 49.077018933000012 ], [ -123.910296438999978, 49.07701767500005 ], [ -123.910306181, 49.076800430000105 ], [ -123.91120020799994, 49.076900093000113 ], [ -123.91192467799999, 49.076907795000068 ], [ -123.912525809, 49.076831217000077 ], [ -123.912977909999967, 49.076723799000057 ], [ -123.913301949999905, 49.076602394000112 ], [ -123.913371872999974, 49.076576220000113 ], [ -123.913624727999945, 49.076481504000036 ], [ -123.914256586999954, 49.076208293000057 ], [ -123.913584816999972, 49.07563230000008 ], [ -123.913506887999972, 49.075539008000092 ], [ -123.913498301999965, 49.075426202000088 ], [ -123.913547798999929, 49.075297498000076 ], [ -123.913789790999928, 49.075086899000041 ], [ -123.913829978999928, 49.075059578000037 ], [ -123.914356077999955, 49.074701617000123 ], [ -123.914802585999936, 49.074397805000075 ], [ -123.9150428199999, 49.074286200000117 ], [ -123.916104793999949, 49.073568292000118 ], [ -123.916360208999933, 49.073452590000066 ], [ -123.916717324999965, 49.073387501000106 ], [ -123.918410218999895, 49.073393193000122 ], [ -123.918470592999981, 49.07427703399999 ], [ -123.92044808499999, 49.074310815000061 ], [ -123.92098646299999, 49.074351868000072 ], [ -123.921424321999979, 49.074439576000053 ], [ -123.922020041999943, 49.074636636000086 ], [ -123.923399343999947, 49.075295547000032 ], [ -123.926123888999882, 49.076829705000087 ], [ -123.92699031899997, 49.077184147 ], [ -123.927599306999937, 49.077360718000136 ], [ -123.927933912999919, 49.07741092900006 ], [ -123.928301743999938, 49.077466123000058 ], [ -123.928890637999942, 49.077449546000096 ], [ -123.929454928999974, 49.077370355000099 ], [ -123.929773208999961, 49.077273742000038 ], [ -123.930152313999898, 49.077158637000075 ], [ -123.930500448999936, 49.076987924000051 ], [ -123.93264600900001, 49.075486435000087 ], [ -123.934190386999944, 49.074431750000038 ], [ -123.934614181999919, 49.074219234000033 ], [ -123.935892270999915, 49.073770981000102 ], [ -123.936320402999968, 49.073677423000085 ], [ -123.93671103299998, 49.073657890000028 ], [ -123.937089590999946, 49.073694890000077 ], [ -123.937470820999962, 49.073794963000076 ], [ -123.937807054999936, 49.073923908000019 ], [ -123.938870010999949, 49.074535101000066 ], [ -123.93919375199998, 49.074667401000092 ], [ -123.939595978999975, 49.074757981000054 ], [ -123.940062635999965, 49.07481287300007 ], [ -123.9407577599999, 49.074836095000116 ], [ -123.941291392999958, 49.074811254000039 ], [ -123.941360767999967, 49.07480799800004 ], [ -123.941877623, 49.074748554000109 ], [ -123.942443589999954, 49.07463061800015 ], [ -123.94287953299991, 49.074483153000166 ], [ -123.943063163999952, 49.074378383000116 ], [ -123.943566981999979, 49.074091006000074 ], [ -123.945069745, 49.073229033000054 ], [ -123.94880181399999, 49.070916661000069 ], [ -123.948784596999985, 49.071307867000058 ], [ -123.949131949999952, 49.071314497000081 ], [ -123.948973550999966, 49.074914006000093 ], [ -123.947169179999904, 49.074879554000091 ], [ -123.947132324999927, 49.075716249000052 ], [ -123.945980085, 49.075694233000029 ], [ -123.94594731899997, 49.076437676000111 ], [ -123.944737987999972, 49.076414556000017 ], [ -123.944725385999959, 49.076700305000031 ], [ -123.941738887999961, 49.076643152000045 ], [ -123.941606727999954, 49.079635273000058 ], [ -123.941329544999988, 49.079629964000027 ], [ -123.941253510999971, 49.081350978000032 ], [ -123.936272756, 49.081255464000066 ], [ -123.936195672999943, 49.082995884000098 ], [ -123.939156431999962, 49.083052690000038 ], [ -123.939150211000012, 49.083193373000015 ], [ -123.939072070999956, 49.084960038000091 ], [ -123.939068298999985, 49.085045312000084 ], [ -123.939828128999977, 49.085059877000084 ], [ -123.939767594, 49.086428888000086 ], [ -123.940538685999968, 49.086443663000082 ], [ -123.940512849999948, 49.087028131000103 ], [ -123.941614780999956, 49.087049236000027 ], [ -123.941584389999932, 49.087737128000036 ], [ -123.942769180999974, 49.087759807000019 ], [ -123.942708323999966, 49.089138020000043 ], [ -123.945188274999978, 49.089185448000052 ], [ -123.945178518999953, 49.089406667000034 ], [ -123.945773269, 49.089418033000086 ], [ -123.945752080999966, 49.089898555000069 ], [ -123.94680186, 49.08991860800009 ], [ -123.946781440999985, 49.090381944000107 ], [ -123.947019022999882, 49.090386481000095 ], [ -123.947616459999949, 49.090397888000055 ], [ -123.947580558999945, 49.091212800000065 ], [ -123.949191949999943, 49.091243549000112 ], [ -123.949102235999973, 49.093281446000042 ], [ -123.954260789, 49.093379722000059 ], [ -123.954201657999974, 49.094726184000073 ], [ -123.956656483999922, 49.094772864000063 ], [ -123.956645659999964, 49.095019612000037 ], [ -123.95713718099995, 49.095028951000117 ], [ -123.957118963999974, 49.095444356000016 ], [ -123.959122334999947, 49.095482401000034 ], [ -123.959099160000022, 49.096011358000041 ], [ -123.959538250999941, 49.096019692000056 ], [ -123.959531401999953, 49.096176060000083 ], [ -123.962255561999953, 49.096227722000016 ], [ -123.96223383899995, 49.096724307000073 ], [ -123.962166848999956, 49.098255567000074 ], [ -123.96270766799995, 49.098265814000051 ], [ -123.962690886999965, 49.098649460000104 ], [ -123.962875581999981, 49.098652959000091 ], [ -123.963168273999926, 49.098658503000046 ], [ -123.963112431999946, 49.099935515000105 ], [ -123.963068452999934, 49.100941135000056 ], [ -123.963298953999953, 49.100945501000126 ], [ -123.965262229999894, 49.10098266600005 ], [ -123.965267187999928, 49.100869168000081 ], [ -123.970736328999948, 49.100972512000112 ], [ -123.970707002999944, 49.101645608000084 ], [ -123.971199552999977, 49.101654902000064 ], [ -123.97104275699995, 49.105254273000114 ], [ -123.969020565999955, 49.105216104000078 ], [ -123.969004294999962, 49.105589223000024 ], [ -123.968454731999941, 49.105578844000085 ], [ -123.968426508999954, 49.1062258360001 ], [ -123.964296421999933, 49.106147740000104 ], [ -123.964168801999961, 49.109067132000057 ], [ -123.95869872599999, 49.108963455000037 ], [ -123.958856486999977, 49.105364121000093 ], [ -123.960786186999954, 49.105400728000063 ] ], [ [ -123.928314967999981, 49.080809402000078 ], [ -123.928352259999912, 49.079970587000048 ], [ -123.92736871299995, 49.079951626000074 ], [ -123.927331404999933, 49.080790440000023 ], [ -123.928314967999981, 49.080809402000078 ] ], [ [ -123.93527067, 49.079594981000071 ], [ -123.935230856999922, 49.080493517000086 ], [ -123.935819576999933, 49.080504825000062 ], [ -123.935866527999934, 49.079444897000023 ], [ -123.93536401599998, 49.079435245000077 ], [ -123.935362969999957, 49.079458828000092 ], [ -123.934509096999989, 49.079442422000056 ], [ -123.934502988999952, 49.079580232000097 ], [ -123.93527067, 49.079594981000071 ] ], [ [ -123.913007460999964, 49.077608171000115 ], [ -123.91300771499999, 49.077622047000084 ], [ -123.913093086999964, 49.077621371000049 ], [ -123.913093603000036, 49.077609844000065 ], [ -123.913007460999964, 49.077608171000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9932500", "BldgCostT": "6850000", "sL_LossRatio": "0.87983502940674", "sL_AssetLoss": "40977", "sL_BldgLoss": "36053", "sL_StrLoss": "25260", "sL_NStrLoss": "10793", "sL_ContLoss": "4924", "geom_point": "0101000020E6100000C36DE1374DFC5EC06A21B71531914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.93567705199996, 49.134513731000027 ], [ -123.934865410999976, 49.134196479000074 ], [ -123.934034534999952, 49.133786992000104 ], [ -123.933798659000018, 49.133641818000108 ], [ -123.934606612999957, 49.133611677000104 ], [ -123.941585543999921, 49.133350828000083 ], [ -123.94158884499997, 49.133525106000064 ], [ -123.942000047999954, 49.1335217520001 ], [ -123.94202050199999, 49.134601054000093 ], [ -123.942495989999955, 49.134597174000135 ], [ -123.942525607999983, 49.133927200000102 ], [ -123.944057533999981, 49.133956477000041 ], [ -123.944058445999957, 49.133935838000077 ], [ -123.945084836999968, 49.133955441000104 ], [ -123.94508971, 49.133845064000099 ], [ -123.946358029999956, 49.133869273000073 ], [ -123.946358958999937, 49.13384819500007 ], [ -123.951831931999934, 49.133952496000127 ], [ -123.951783205999973, 49.135059697000024 ], [ -123.95154835699995, 49.135000827000091 ], [ -123.951015394999899, 49.13486719000008 ], [ -123.949820014999958, 49.134677806000155 ], [ -123.949784082999912, 49.134675144000035 ], [ -123.949568299999939, 49.134659058000054 ], [ -123.948423709999958, 49.134573787000129 ], [ -123.947597206999973, 49.134590409000097 ], [ -123.946715883999943, 49.134637598000083 ], [ -123.944701896999973, 49.134877376000077 ], [ -123.941922800999961, 49.135198905000017 ], [ -123.941110166999977, 49.135273422000104 ], [ -123.940288263999975, 49.135279296000093 ], [ -123.939300835999973, 49.135249600000037 ], [ -123.938346330999963, 49.135156566000042 ], [ -123.93734762299999, 49.134979830000134 ], [ -123.93647629099992, 49.134773117000094 ], [ -123.93567705199996, 49.134513731000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20392500", "BldgCostT": "13800000", "sL_LossRatio": "0.862208266961175", "sL_AssetLoss": "95798.2", "sL_BldgLoss": "82598", "sL_StrLoss": "56040", "sL_NStrLoss": "26558", "sL_ContLoss": "13200.2", "geom_point": "0101000020E6100000DA7EA61C5BFE5EC0AD1DC5396A914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.975219381999963, 49.139774605000078 ], [ -123.975245262999962, 49.139179781000095 ], [ -123.974270204, 49.139161434000087 ], [ -123.972523020999986, 49.139128536000058 ], [ -123.972523095999961, 49.139126804000057 ], [ -123.972057002999946, 49.139118023 ], [ -123.972097929999933, 49.138178829000076 ], [ -123.971051023999962, 49.138159100000109 ], [ -123.971108014999956, 49.136851895000042 ], [ -123.971097904999951, 49.13685170400008 ], [ -123.971254803999926, 49.133252508000055 ], [ -123.971255475999925, 49.133252521 ], [ -123.971275127999974, 49.132801664000056 ], [ -123.971500469999953, 49.132730149000089 ], [ -123.972178738999929, 49.132468275000043 ], [ -123.972942510999957, 49.132129639000077 ], [ -123.975319487999968, 49.130780340000086 ], [ -123.975092025, 49.131382140000071 ], [ -123.97505306, 49.131616431000097 ], [ -123.975020123999983, 49.132845955000072 ], [ -123.974709698999959, 49.134265163000116 ], [ -123.978487273999974, 49.134458532000053 ], [ -123.9783973199999, 49.135135691000094 ], [ -123.974606339, 49.134985891000021 ], [ -123.974541765999945, 49.136443624000101 ], [ -123.97447338799999, 49.136892859000071 ], [ -123.978046717999945, 49.136969667000066 ], [ -123.978864266999921, 49.136987232000074 ], [ -123.979479368999989, 49.137087215000058 ], [ -123.980178589999952, 49.137349499000059 ], [ -123.980930300999916, 49.137633218000069 ], [ -123.981090837999915, 49.137676237000093 ], [ -123.979263809999935, 49.137666524000046 ], [ -123.978520904999939, 49.137643007000065 ], [ -123.978394086999941, 49.137639005000047 ], [ -123.978039121999956, 49.138255725000128 ], [ -123.977060878999978, 49.139809231000136 ], [ -123.975219381999963, 49.139774605000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92086833", "BldgCostT": "61773333", "sL_LossRatio": "0.926062893209652", "sL_AssetLoss": "208511.54", "sL_BldgLoss": "193094.8", "sL_StrLoss": "153285.3", "sL_NStrLoss": "39809.5", "sL_ContLoss": "15416.74", "geom_point": "0101000020E61000007D4FC4A63EFE5EC0A261C64E57934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.972902171999962, 49.159245436000063 ], [ -123.972967986999933, 49.158301154000092 ], [ -123.973007431999918, 49.158172351000132 ], [ -123.973094162999928, 49.157889288000064 ], [ -123.973233441999966, 49.15761725400008 ], [ -123.97332241499997, 49.157503924000075 ], [ -123.973569991999938, 49.157188653000091 ], [ -123.973770942999977, 49.157009661000046 ], [ -123.97396380099994, 49.154757730000064 ], [ -123.973869815999961, 49.154708883000055 ], [ -123.973407015999953, 49.154576804000108 ], [ -123.973116365999942, 49.154543837000134 ], [ -123.972807166, 49.154508781000125 ], [ -123.97195114499999, 49.154409799000064 ], [ -123.971689727999944, 49.154372461000037 ], [ -123.971655974999962, 49.154370185000154 ], [ -123.97096853, 49.154323762000089 ], [ -123.970669894999972, 49.154417176000045 ], [ -123.970377364999962, 49.154559358000064 ], [ -123.969453631999954, 49.15513266100006 ], [ -123.96906760899999, 49.155282076000084 ], [ -123.968747247999914, 49.15533997600005 ], [ -123.968341692999914, 49.155371946000066 ], [ -123.968250693999906, 49.155371555000087 ], [ -123.968083719999925, 49.15537085200004 ], [ -123.96723081699993, 49.155367196000022 ], [ -123.966867887999953, 49.155328242000159 ], [ -123.966314470999947, 49.155268846000126 ], [ -123.965773165999977, 49.155254453000047 ], [ -123.964978806999966, 49.155233417000019 ], [ -123.964891304, 49.155231113000049 ], [ -123.964663350999899, 49.155224771000107 ], [ -123.96367619499992, 49.155197393 ], [ -123.962908543999902, 49.155194709000085 ], [ -123.961107807999966, 49.155188389000095 ], [ -123.961129211999932, 49.153295004000093 ], [ -123.961136652999969, 49.152811565000086 ], [ -123.964165905999963, 49.151146209000053 ], [ -123.970836683999934, 49.147479552000085 ], [ -123.971928083999941, 49.1468795420001 ], [ -123.972077485999989, 49.146797436000021 ], [ -123.97186539199997, 49.146416112000033 ], [ -123.97155918299994, 49.146032163000015 ], [ -123.971117355999937, 49.145478228000052 ], [ -123.971120761999885, 49.145400119000037 ], [ -123.971054054999954, 49.145398861000039 ], [ -123.97101730899999, 49.145352793000079 ], [ -123.970378603999976, 49.144818430000086 ], [ -123.970510844999978, 49.141786514000131 ], [ -123.973419240999974, 49.141841312000096 ], [ -123.973409759999939, 49.141357224000039 ], [ -123.973821023999946, 49.141353756000093 ], [ -123.973815736999981, 49.141083933000125 ], [ -123.974352903999957, 49.141079401000113 ], [ -123.975049520999931, 49.141073520000077 ], [ -123.975065191999988, 49.141872289000077 ], [ -123.975984805999985, 49.141889585000044 ], [ -123.97596194599997, 49.142415148000055 ], [ -123.976718967999929, 49.14240874700009 ], [ -123.978777441999981, 49.142391314000122 ], [ -123.978782754999912, 49.142661137000083 ], [ -123.979605303999975, 49.142654160000092 ], [ -123.97961062199991, 49.142923983000124 ], [ -123.980433173999955, 49.142917000000118 ], [ -123.980459792999937, 49.144266111000064 ], [ -123.980471235999985, 49.144266013000092 ], [ -123.980471129999927, 49.145075617000074 ], [ -123.97677411599993, 49.145106953000017 ], [ -123.976779419999971, 49.145376775000038 ], [ -123.976643701999947, 49.145377924000044 ], [ -123.976567099999954, 49.147139411000104 ], [ -123.976576300999909, 49.14713958400008 ], [ -123.976556715999948, 49.147589907000032 ], [ -123.976576828999939, 49.147590285 ], [ -123.976561983999915, 49.147931610000086 ], [ -123.976603246999971, 49.147932385000033 ], [ -123.97657544899999, 49.148571581000098 ], [ -123.976607684999919, 49.14857218700007 ], [ -123.97656886799993, 49.149464752000064 ], [ -123.976602740999979, 49.149465389000071 ], [ -123.976446201999948, 49.153064504000113 ], [ -123.97446127099991, 49.153027179000048 ], [ -123.974471320999967, 49.153539433000063 ], [ -123.97617180499999, 49.153571411 ], [ -123.976015217999986, 49.157170502000028 ], [ -123.975759979999935, 49.157165704000121 ], [ -123.975746521999952, 49.157474998000126 ], [ -123.980018401, 49.157555221000067 ], [ -123.980004966999957, 49.157864606000068 ], [ -123.98152356599995, 49.157893084000094 ], [ -123.981513836999966, 49.158117275000087 ], [ -123.98428107899997, 49.158169112000031 ], [ -123.984259075999901, 49.158676861000131 ], [ -123.984316728999914, 49.158677940000111 ], [ -123.984790091999969, 49.158686800000055 ], [ -123.984759564999976, 49.15939142300001 ], [ -123.984943090999977, 49.159394857000031 ], [ -123.985014625999952, 49.159396195000085 ], [ -123.985009640999962, 49.159511253000069 ], [ -123.977074705999911, 49.159391439000082 ], [ -123.97715376799998, 49.159630585000109 ], [ -123.977341100999951, 49.160197007000093 ], [ -123.977338502999942, 49.160729144000094 ], [ -123.977266008999948, 49.160979014000048 ], [ -123.976690871999921, 49.161033955000022 ], [ -123.975693881999959, 49.161116970000094 ], [ -123.975127598, 49.161063985000098 ], [ -123.974775982999958, 49.160987104000043 ], [ -123.97444510599999, 49.160845905 ], [ -123.974229530999963, 49.160712237000119 ], [ -123.973958191999913, 49.160544001000119 ], [ -123.97310404299999, 49.159863376 ], [ -123.972942157999938, 49.159522642000077 ], [ -123.972902171999962, 49.159245436000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62627417", "BldgCostT": "40981667", "sL_LossRatio": "0.884667440061872", "sL_AssetLoss": "206880", "sL_BldgLoss": "183020", "sL_StrLoss": "130337", "sL_NStrLoss": "52683", "sL_ContLoss": "23860", "geom_point": "0101000020E610000081A5FC9CA9FD5EC0D5E70F7283914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.962066403999955, 49.140655907000095 ], [ -123.95946338399996, 49.139675401000048 ], [ -123.958617095999898, 49.139298206000092 ], [ -123.957451390999964, 49.138555708000091 ], [ -123.957101066999968, 49.138255165000082 ], [ -123.958130516999958, 49.138246625000072 ], [ -123.958135718999941, 49.138516449000043 ], [ -123.9585469599999, 49.138513036000035 ], [ -123.958552163999954, 49.138782861000017 ], [ -123.959374653999944, 49.13877602900007 ], [ -123.959379860999903, 49.139045853000056 ], [ -123.959905794999926, 49.139041482000039 ], [ -123.959909885999963, 49.138948169000074 ], [ -123.959573745999975, 49.138941797000086 ], [ -123.959585904999955, 49.138664466000066 ], [ -123.95927075099999, 49.138658490000068 ], [ -123.959298081999989, 49.138035260000038 ], [ -123.959278689999934, 49.138034892000078 ], [ -123.959303690999917, 49.137464755000046 ], [ -123.958629899999934, 49.13745197700004 ], [ -123.95864004699996, 49.137220651000028 ], [ -123.957897187999976, 49.137206558000109 ], [ -123.957911950999957, 49.13687010900005 ], [ -123.957502993999967, 49.136862348000072 ], [ -123.95752340099996, 49.136397371000051 ], [ -123.956810095999941, 49.136383832000028 ], [ -123.956833108999945, 49.135859639000017 ], [ -123.956026, 49.135844313000035 ], [ -123.956048112999966, 49.135340813 ], [ -123.95550521199999, 49.135330501000077 ], [ -123.955531010999948, 49.134743183000047 ], [ -123.954936527, 49.134731887000079 ], [ -123.95501463, 49.132954376000072 ], [ -123.95555902299999, 49.132949026000055 ], [ -123.961080956000032, 49.133081384000029 ], [ -123.964173076999913, 49.133147972000067 ], [ -123.965515995999937, 49.133103556000059 ], [ -123.968642091999982, 49.133000113000065 ], [ -123.968981163999942, 49.133244094000062 ], [ -123.968991637999935, 49.133236655000104 ], [ -123.969379448999959, 49.133072874000028 ], [ -123.969835204999967, 49.132984216000096 ], [ -123.970284335999949, 49.13304763400005 ], [ -123.970361944999965, 49.133038259000088 ], [ -123.970246661999937, 49.135681707000074 ], [ -123.969961651999967, 49.135676331000099 ], [ -123.969940079000011, 49.136170912000097 ], [ -123.969312292000012, 49.136159069000065 ], [ -123.96928997899991, 49.136670427000041 ], [ -123.968712442999944, 49.136659528000067 ], [ -123.968679798999986, 49.137407440000118 ], [ -123.968396709999951, 49.137402097000077 ], [ -123.968422008999966, 49.138700495000116 ], [ -123.967974076999909, 49.138704251000085 ], [ -123.96794338299999, 49.139407152000089 ], [ -123.967858029999917, 49.13940554100008 ], [ -123.967853255999898, 49.139514866000084 ], [ -123.9688490299999, 49.13950651400009 ], [ -123.96886481099996, 49.14031598300005 ], [ -123.968042299999979, 49.140322883000088 ], [ -123.968047553999909, 49.140592706000092 ], [ -123.968458814, 49.140589257000109 ], [ -123.968485103999953, 49.141938373000052 ], [ -123.968073833999966, 49.141941824000064 ], [ -123.968094858999933, 49.143021115000046 ], [ -123.967683579999971, 49.143024564 ], [ -123.967688835999965, 49.143294387000076 ], [ -123.967536029999962, 49.143295667000096 ], [ -123.965311149999948, 49.142280575000036 ], [ -123.965324453999969, 49.142229444000058 ], [ -123.96536050899999, 49.142090607000036 ], [ -123.964164957999941, 49.141569915000048 ], [ -123.963582002999914, 49.141316017000079 ], [ -123.962066403999955, 49.140655907000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.7375", "sL_AssetLoss": "960", "sL_BldgLoss": "708", "sL_StrLoss": "144", "sL_NStrLoss": "564", "sL_ContLoss": "252", "geom_point": "0101000020E61000002338899C19005FC05C231F47B58D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.003184272999974, 49.104698676000076 ], [ -124.003410028999966, 49.104702868000061 ], [ -124.003255709999948, 49.108302269000035 ], [ -123.998289261999915, 49.108209953000021 ], [ -123.998631586999949, 49.10762469700007 ], [ -123.999104921999944, 49.1072814 ], [ -124.000013839999966, 49.106948727000024 ], [ -124.001232791999897, 49.106502549000055 ], [ -124.001631306999968, 49.106356690000048 ], [ -124.001826846999975, 49.106207527000059 ], [ -124.001942507999942, 49.106119296 ], [ -124.001985062999978, 49.105975138000133 ], [ -124.002054606999963, 49.10573950000002 ], [ -124.002433606999929, 49.105199895000055 ], [ -124.003006491999955, 49.104764809000116 ], [ -124.003184272999974, 49.104698676000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.797041420118343", "sL_AssetLoss": "16900", "sL_BldgLoss": "13470", "sL_StrLoss": "6870", "sL_NStrLoss": "6600", "sL_ContLoss": "3430", "geom_point": "0101000020E6100000484484C12DFB5EC07763C59974884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.92104797199994, 49.068112716000122 ], [ -123.921042985, 49.067842886000115 ], [ -123.920632320999957, 49.06784616300007 ], [ -123.920622350999921, 49.067306502000093 ], [ -123.920211690999921, 49.067309776000101 ], [ -123.920196741999959, 49.066500285000053 ], [ -123.921018047999894, 49.066493733000122 ], [ -123.921013058999961, 49.066223903000015 ], [ -123.921834357999927, 49.066217346000016 ], [ -123.921829366999987, 49.065947516000094 ], [ -123.922519074999911, 49.065942005000075 ], [ -123.92260468299996, 49.064021109000073 ], [ -123.928069405999963, 49.064126628000032 ], [ -123.92790940699993, 49.067726146000048 ], [ -123.922444261999914, 49.067620619000095 ], [ -123.92245891499999, 49.067291836000024 ], [ -123.922264985999931, 49.067293386000102 ], [ -123.922279967999913, 49.068102878000012 ], [ -123.92104797199994, 49.068112716000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.979032893203571", "sL_AssetLoss": "1244.33", "sL_BldgLoss": "1218.24", "sL_StrLoss": "1028.54", "sL_NStrLoss": "189.7", "sL_ContLoss": "26.09", "geom_point": "0101000020E61000005FC3A1F1A3265FC07864490C44A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.603902939999955, 49.250278191000064 ], [ -124.606554433, 49.250312459000021 ], [ -124.606525247999969, 49.251284741000099 ], [ -124.60644638799999, 49.253911793000029 ], [ -124.600958036999927, 49.253840790000012 ], [ -124.601053219999983, 49.250682416000117 ], [ -124.601066507000013, 49.25024146100003 ], [ -124.603902939999955, 49.250278191000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.865148336829488", "sL_AssetLoss": "3337", "sL_BldgLoss": "2887", "sL_StrLoss": "1556", "sL_NStrLoss": "1331", "sL_ContLoss": "450", "geom_point": "0101000020E6100000CC0BF2AB20065FC015C2308157994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.095209320999956, 49.199367063000111 ], [ -124.095203363999929, 49.199097253000105 ], [ -124.092733000999928, 49.199120654000112 ], [ -124.09271516699999, 49.198311224000093 ], [ -124.09353860799996, 49.198303430000173 ], [ -124.093532658999919, 49.198033620000096 ], [ -124.093944376999943, 49.198029721000083 ], [ -124.093920572999949, 49.196950480000098 ], [ -124.093508863999944, 49.196954380000143 ], [ -124.093496897999941, 49.196411611000038 ], [ -124.093491017999952, 49.1961449510001 ], [ -124.09360755799996, 49.196143847000059 ], [ -124.095137826, 49.196129346000077 ], [ -124.095143783999958, 49.196399155000044 ], [ -124.095555489, 49.196395251000084 ], [ -124.095561447999955, 49.196665060000065 ], [ -124.096384861999951, 49.196657246 ], [ -124.096390823999982, 49.19692705500006 ], [ -124.097214241999922, 49.196919236000078 ], [ -124.097220211999939, 49.197189045000123 ], [ -124.098043632, 49.1971812190001 ], [ -124.098049604999957, 49.197451029000021 ], [ -124.098461318999981, 49.197447114000113 ], [ -124.098503149999942, 49.199335780000098 ], [ -124.095209320999956, 49.199367063000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6781167", "BldgCostT": "4676667", "sL_LossRatio": "0.816291654799203", "sL_AssetLoss": "47398.5", "sL_BldgLoss": "38691", "sL_StrLoss": "22343", "sL_NStrLoss": "16348", "sL_ContLoss": "8707.5", "geom_point": "0101000020E610000077A9320883FB5EC010BCAD3677894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.926123888999882, 49.076829705000087 ], [ -123.923399343999947, 49.075295547000032 ], [ -123.922020041999943, 49.074636636000086 ], [ -123.921424321999979, 49.074439576000053 ], [ -123.92098646299999, 49.074351868000072 ], [ -123.92044808499999, 49.074310815000061 ], [ -123.918470592999981, 49.07427703399999 ], [ -123.918410218999895, 49.073393193000122 ], [ -123.916717324999965, 49.073387501000106 ], [ -123.916360208999933, 49.073452590000066 ], [ -123.916104793999949, 49.073568292000118 ], [ -123.9150428199999, 49.074286200000117 ], [ -123.914802585999936, 49.074397805000075 ], [ -123.914356077999955, 49.074701617000123 ], [ -123.913829978999928, 49.075059578000037 ], [ -123.913789790999928, 49.075086899000041 ], [ -123.913547798999929, 49.075297498000076 ], [ -123.913498301999965, 49.075426202000088 ], [ -123.913506887999972, 49.075539008000092 ], [ -123.913584816999972, 49.07563230000008 ], [ -123.914256586999954, 49.076208293000057 ], [ -123.913624727999945, 49.076481504000036 ], [ -123.913371872999974, 49.076576220000113 ], [ -123.913301949999905, 49.076602394000112 ], [ -123.912977909999967, 49.076723799000057 ], [ -123.912525809, 49.076831217000077 ], [ -123.91192467799999, 49.076907795000068 ], [ -123.91120020799994, 49.076900093000113 ], [ -123.910306181, 49.076800430000105 ], [ -123.910380231999937, 49.075148926000097 ], [ -123.910394896999961, 49.075150287000021 ], [ -123.912063794999966, 49.074992200000061 ], [ -123.912510291999979, 49.074772893000095 ], [ -123.913114508999968, 49.074049390000013 ], [ -123.913795921999977, 49.073899900000065 ], [ -123.91426801099999, 49.073545301000088 ], [ -123.914989696999967, 49.072514088000069 ], [ -123.91534309799998, 49.072403013000049 ], [ -123.91623199199995, 49.072306199000089 ], [ -123.917245408999946, 49.072387409000065 ], [ -123.919012478999946, 49.072364593000032 ], [ -123.921302113999971, 49.072562598000054 ], [ -123.922018304999938, 49.072790395000069 ], [ -123.923017919999936, 49.072756202000029 ], [ -123.923377490999925, 49.073031090000043 ], [ -123.924177711999945, 49.072575389000122 ], [ -123.924392024999989, 49.072377725000109 ], [ -123.926622860999913, 49.072420789000034 ], [ -123.926515765999966, 49.074828013000044 ], [ -123.927545271999961, 49.074847871000081 ], [ -123.9274984, 49.075901871000056 ], [ -123.92763239199995, 49.07590445500005 ], [ -123.927637012, 49.075800566000098 ], [ -123.928919661999913, 49.075825291000093 ], [ -123.92901157299994, 49.073756995000075 ], [ -123.930772782999938, 49.073790920000086 ], [ -123.930784014999972, 49.073537938000051 ], [ -123.932026930999953, 49.073561862000084 ], [ -123.932070318999962, 49.072583967000085 ], [ -123.93359570899996, 49.072613309000076 ], [ -123.933613404999932, 49.072625210000083 ], [ -123.933754397999948, 49.072894400000067 ], [ -123.934506505999948, 49.072824591000035 ], [ -123.935690907999941, 49.0725099040001 ], [ -123.936909203999932, 49.072508410000069 ], [ -123.937569982999975, 49.072656504000072 ], [ -123.938078589999918, 49.072777608000102 ], [ -123.93921779099999, 49.072894400000067 ], [ -123.940022809999931, 49.07280750500005 ], [ -123.940658908999964, 49.072415889000112 ], [ -123.941881508999927, 49.0725312060001 ], [ -123.94223450599992, 49.072455697000052 ], [ -123.942806218, 49.07228060100006 ], [ -123.943198785, 49.07199 ], [ -123.94349850899998, 49.07123090200016 ], [ -123.943769195999948, 49.071077095000078 ], [ -123.94390118799997, 49.070751001000083 ], [ -123.944005095999941, 49.070436207000085 ], [ -123.943823315999964, 49.070302295000019 ], [ -123.943853696999895, 49.070276481000107 ], [ -123.948825805999974, 49.070371502000064 ], [ -123.94880181399999, 49.070916661000069 ], [ -123.945069745, 49.073229033000054 ], [ -123.943566981999979, 49.074091006000074 ], [ -123.943063163999952, 49.074378383000116 ], [ -123.94287953299991, 49.074483153000166 ], [ -123.942443589999954, 49.07463061800015 ], [ -123.941877623, 49.074748554000109 ], [ -123.941360767999967, 49.07480799800004 ], [ -123.941291392999958, 49.074811254000039 ], [ -123.9407577599999, 49.074836095000116 ], [ -123.940062635999965, 49.07481287300007 ], [ -123.939595978999975, 49.074757981000054 ], [ -123.93919375199998, 49.074667401000092 ], [ -123.938870010999949, 49.074535101000066 ], [ -123.937807054999936, 49.073923908000019 ], [ -123.937470820999962, 49.073794963000076 ], [ -123.937089590999946, 49.073694890000077 ], [ -123.93671103299998, 49.073657890000028 ], [ -123.936320402999968, 49.073677423000085 ], [ -123.935892270999915, 49.073770981000102 ], [ -123.934614181999919, 49.074219234000033 ], [ -123.934190386999944, 49.074431750000038 ], [ -123.93264600900001, 49.075486435000087 ], [ -123.930500448999936, 49.076987924000051 ], [ -123.930152313999898, 49.077158637000075 ], [ -123.929773208999961, 49.077273742000038 ], [ -123.929454928999974, 49.077370355000099 ], [ -123.928890637999942, 49.077449546000096 ], [ -123.928301743999938, 49.077466123000058 ], [ -123.927933912999919, 49.07741092900006 ], [ -123.927599306999937, 49.077360718000136 ], [ -123.92699031899997, 49.077184147 ], [ -123.926123888999882, 49.076829705000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.996110923233006", "sL_AssetLoss": "236.56", "sL_BldgLoss": "235.64", "sL_StrLoss": "210.93", "sL_NStrLoss": "24.71", "sL_ContLoss": "0.92", "geom_point": "0101000020E61000004CF700FE251A5FC0FE3B2EECE1894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.405210966999931, 49.078433282000027 ], [ -124.405264980999974, 49.076854735000047 ], [ -124.40604581499997, 49.077290895000026 ], [ -124.406631588, 49.077194091000074 ], [ -124.407153081999979, 49.076782501000025 ], [ -124.408453995999977, 49.076289688000088 ], [ -124.40880452099999, 49.076078901000052 ], [ -124.409762909, 49.075104795000065 ], [ -124.410186572999976, 49.0749050780001 ], [ -124.41080110199999, 49.074914166000077 ], [ -124.410727208999973, 49.077081285000077 ], [ -124.410678344999937, 49.078514258000091 ], [ -124.408600865999986, 49.078483522000106 ], [ -124.405210966999931, 49.078433282000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.783536585365854", "sL_AssetLoss": "6560", "sL_BldgLoss": "5140", "sL_StrLoss": "2480", "sL_NStrLoss": "2660", "sL_ContLoss": "1420", "geom_point": "0101000020E6100000983AE18822FA5EC0AF672164CD884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.907886977999951, 49.067137516000081 ], [ -123.909529612999904, 49.067124583000073 ], [ -123.90955916599998, 49.068743571000027 ], [ -123.909148493999922, 49.068746806000014 ], [ -123.909168188999956, 49.069826131000106 ], [ -123.90875750899994, 49.069829365000068 ], [ -123.90876735199997, 49.070369028000087 ], [ -123.907124609999983, 49.070381952000062 ], [ -123.907100046999986, 49.06903279400013 ], [ -123.907510719999948, 49.069029565000058 ], [ -123.907491061999963, 49.067950241000048 ], [ -123.907901727999928, 49.067947010000111 ], [ -123.907886977999951, 49.067137516000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.807785501489573", "sL_AssetLoss": "25175", "sL_BldgLoss": "20336", "sL_StrLoss": "11017", "sL_NStrLoss": "9319", "sL_ContLoss": "4839", "geom_point": "0101000020E61000009BE426EEA1FA5EC0B4B9622D5B864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.916103671999977, 49.051908095000108 ], [ -123.916104400999942, 49.051891771000044 ], [ -123.912537042999958, 49.051822503000089 ], [ -123.912550395999986, 49.051524232000062 ], [ -123.912002841999978, 49.05151358900013 ], [ -123.912046532999952, 49.050537850000048 ], [ -123.911049665999911, 49.050518466000035 ], [ -123.911210906999955, 49.046918878000064 ], [ -123.916673600999928, 49.047024979000042 ], [ -123.916630009999949, 49.048000727000044 ], [ -123.917626825999946, 49.048020058000084 ], [ -123.917613505999938, 49.048318331000097 ], [ -123.918161024999961, 49.048328945000101 ], [ -123.918160296999972, 49.048345269000045 ], [ -123.92172739599998, 49.048414351000105 ], [ -123.921566960999954, 49.05201394800013 ], [ -123.916103671999977, 49.051908095000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2039667", "BldgCostT": "1406667", "sL_LossRatio": "0.982455236196632", "sL_AssetLoss": "853.759", "sL_BldgLoss": "838.78", "sL_StrLoss": "716.86", "sL_NStrLoss": "121.92", "sL_ContLoss": "14.979", "geom_point": "0101000020E6100000188487A30A265FC017079FFF01A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.593157766999951, 49.260039972000072 ], [ -124.593159049999883, 49.259997654000067 ], [ -124.592161331999989, 49.259984646000085 ], [ -124.59217356, 49.259581534000063 ], [ -124.590216883999958, 49.259555997000049 ], [ -124.590326200999968, 49.255956710000056 ], [ -124.590692076000011, 49.255961488000061 ], [ -124.590706412999936, 49.255489318000116 ], [ -124.59619494199994, 49.255560842000065 ], [ -124.596168469999952, 49.256436126000082 ], [ -124.597759137999972, 49.256456802000038 ], [ -124.597757858999955, 49.256499122000115 ], [ -124.598755501999975, 49.25651207700011 ], [ -124.598701779999899, 49.258291619000033 ], [ -124.598682153999931, 49.25894170100004 ], [ -124.598646838, 49.260111370000054 ], [ -124.593157766999951, 49.260039972000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.978028786874276", "sL_AssetLoss": "3227.86", "sL_BldgLoss": "3156.94", "sL_StrLoss": "2803.94", "sL_NStrLoss": "353", "sL_ContLoss": "70.92", "geom_point": "0101000020E6100000E42A9AF70D255FC04B3172DC4AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.576715322, 49.25539075800004 ], [ -124.576784410999949, 49.253137459000094 ], [ -124.575296404999989, 49.253117827000061 ], [ -124.575309244999914, 49.252699446000186 ], [ -124.574723609, 49.252691713000111 ], [ -124.574834111, 49.249092404000066 ], [ -124.580321858999966, 49.249164736000104 ], [ -124.58030906499999, 49.249583120000104 ], [ -124.580894664999903, 49.249590822000073 ], [ -124.580845781, 49.25118992300002 ], [ -124.583345368999915, 49.251222763000072 ], [ -124.583235522999956, 49.25482206900007 ], [ -124.582223800999927, 49.254808784000033 ], [ -124.582203818999972, 49.255462993000094 ], [ -124.576715322, 49.25539075800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.899446864227881", "sL_AssetLoss": "3742.3", "sL_BldgLoss": "3366", "sL_StrLoss": "2590", "sL_NStrLoss": "776", "sL_ContLoss": "376.3", "geom_point": "0101000020E61000007817FFA97E065FC0543CAA7121994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.101790978999986, 49.199034593000064 ], [ -124.101784983999949, 49.198764785000087 ], [ -124.101373260999978, 49.198768710000117 ], [ -124.101367268999937, 49.198498902000075 ], [ -124.100955546999955, 49.198502827 ], [ -124.100949558999943, 49.198233019000064 ], [ -124.100537839999944, 49.198236942000108 ], [ -124.100531852999936, 49.19796713300012 ], [ -124.099708420999931, 49.197974977000065 ], [ -124.099666542999913, 49.19608631100003 ], [ -124.099254842999954, 49.196090230000031 ], [ -124.099218966999914, 49.194471373000084 ], [ -124.10045403, 49.194459610000116 ], [ -124.100448043999947, 49.194189801000022 ], [ -124.101131466, 49.194183287000079 ], [ -124.102506467999973, 49.194170168000021 ], [ -124.102512464999975, 49.194439977000087 ], [ -124.103747525999921, 49.194428180000088 ], [ -124.103783548999957, 49.196047035000134 ], [ -124.102136749999929, 49.196062763000036 ], [ -124.102142744999981, 49.196332572000145 ], [ -124.101821264999941, 49.196335640000029 ], [ -124.101731040999965, 49.196336500000029 ], [ -124.101737034999985, 49.196606310000057 ], [ -124.102148738999929, 49.196602381000055 ], [ -124.102154734999914, 49.196872190000107 ], [ -124.102496251000019, 49.196868931000061 ], [ -124.102566440999951, 49.196868261000105 ], [ -124.102567710999935, 49.196925388000047 ], [ -124.102572439999946, 49.197138069000019 ], [ -124.10283375099999, 49.197135574000065 ], [ -124.102984149999898, 49.197134139000092 ], [ -124.102986667, 49.197247373000046 ], [ -124.103008150999983, 49.19821337500013 ], [ -124.103419868999978, 49.198209442000049 ], [ -124.10343787799998, 49.199018869000014 ], [ -124.101790978999986, 49.199034593000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.773771969355566", "sL_AssetLoss": "22190", "sL_BldgLoss": "17170", "sL_StrLoss": "7960", "sL_NStrLoss": "9210", "sL_ContLoss": "5020", "geom_point": "0101000020E6100000A55AB86AA6F85EC0E961CB9FAD854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.889046821999898, 49.047077025000121 ], [ -123.884994803999987, 49.046756415000047 ], [ -123.883905413999955, 49.046761613000079 ], [ -123.883914594999908, 49.046604401000067 ], [ -123.883914765999961, 49.046578555000067 ], [ -123.883916111999895, 49.046365861000076 ], [ -123.883921284999971, 49.045554301000024 ], [ -123.883924170999975, 49.045435920000038 ], [ -123.883945962999974, 49.044536386000104 ], [ -123.883949894999915, 49.044374563000098 ], [ -123.883968867999926, 49.043591630000037 ], [ -123.883977793999961, 49.04322359800009 ], [ -123.88395347299999, 49.042943404 ], [ -123.880788523999968, 49.043044149000096 ], [ -123.880843001999935, 49.041845214000062 ], [ -123.883207256999953, 49.041891844000119 ], [ -123.883203705999904, 49.041691358000023 ], [ -123.88332186699995, 49.041690453000058 ], [ -123.884435060999962, 49.041681927000099 ], [ -123.884439214999944, 49.041916120000032 ], [ -123.886305031999896, 49.041952861000063 ], [ -123.886278483999916, 49.04253864 ], [ -123.886376065999968, 49.042540561000045 ], [ -123.886361210999894, 49.042868343000073 ], [ -123.886356045999946, 49.04298229000004 ], [ -123.88640029, 49.042983161000052 ], [ -123.886356779999971, 49.043943238000111 ], [ -123.886429146999944, 49.043944663000033 ], [ -123.88638987399996, 49.044811213000024 ], [ -123.887438162999914, 49.044831839000032 ], [ -123.88742603399993, 49.045099601000118 ], [ -123.888443643999935, 49.04511961400005 ], [ -123.888380719999986, 49.046509296000117 ], [ -123.889036609999934, 49.046504245000072 ], [ -123.889046821999898, 49.047077025000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.857864316300862", "sL_AssetLoss": "10415.4", "sL_BldgLoss": "8935", "sL_StrLoss": "5423", "sL_NStrLoss": "3512", "sL_ContLoss": "1480.4", "geom_point": "0101000020E61000002D0B05F0BFF85EC0292071B8A4834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.885473010999959, 49.034375417000057 ], [ -123.885290983999937, 49.02595850200003 ], [ -123.885289064999981, 49.024849459000094 ], [ -123.885304148, 49.024183374000096 ], [ -123.885851671999944, 49.024194158000064 ], [ -123.888721959999927, 49.02447440200006 ], [ -123.888569178999958, 49.027850532000045 ], [ -123.887590860999964, 49.027831286000044 ], [ -123.887538302999957, 49.028992062000022 ], [ -123.887935790999933, 49.028999883000033 ], [ -123.887772814999934, 49.032599537000067 ], [ -123.886416302999947, 49.032572841000054 ], [ -123.886333859999965, 49.03439236800012 ], [ -123.885473010999959, 49.034375417000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.859270539295796", "sL_AssetLoss": "5384.8", "sL_BldgLoss": "4627", "sL_StrLoss": "2385", "sL_NStrLoss": "2242", "sL_ContLoss": "757.8", "geom_point": "0101000020E6100000F75DF0ED86FB5EC0D8F2CAF536874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.927458529999967, 49.054512300000077 ], [ -123.932922149999953, 49.05461757500008 ], [ -123.932796309999901, 49.057455925000049 ], [ -123.932762557999979, 49.058217154000054 ], [ -123.927298515999965, 49.058111871000108 ], [ -123.927303753999951, 49.057994031000121 ], [ -123.927458529999967, 49.054512300000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.915906909788868", "sL_AssetLoss": "3334.4", "sL_BldgLoss": "3054", "sL_StrLoss": "2064", "sL_NStrLoss": "990", "sL_ContLoss": "280.4", "geom_point": "0101000020E6100000C59A5F07ADF95EC0B0CF39CB6E844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.899113991999968, 49.036171065000062 ], [ -123.899109128999953, 49.035901231000089 ], [ -123.89869872699991, 49.035904428 ], [ -123.89869386399999, 49.03563459500009 ], [ -123.89828346399996, 49.035637790000052 ], [ -123.898264027999957, 49.03455845600012 ], [ -123.898674420999967, 49.034555260000062 ], [ -123.898664697999891, 49.03401559400006 ], [ -123.89907508499995, 49.034012396000058 ], [ -123.899065358999962, 49.033472730000092 ], [ -123.899475742999925, 49.033469531000087 ], [ -123.899470876999928, 49.033199697000015 ], [ -123.90357467699998, 49.033167637000112 ], [ -123.903584450999958, 49.033707303000043 ], [ -123.903994834999978, 49.033704089000054 ], [ -123.904029063999985, 49.035592920000077 ], [ -123.90238746599999, 49.035605769000064 ], [ -123.902392345999942, 49.035875603000072 ], [ -123.901571542999974, 49.03588201900002 ], [ -123.901576419999927, 49.036151853000092 ], [ -123.899113991999968, 49.036171065000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.778251262626263", "sL_AssetLoss": "12672", "sL_BldgLoss": "9862", "sL_StrLoss": "4806", "sL_NStrLoss": "5056", "sL_ContLoss": "2810", "geom_point": "0101000020E6100000E5A184D361005FC09042A38595894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.00331486499995, 49.07302502700005 ], [ -124.008780821999935, 49.073126441000056 ], [ -124.008627023999964, 49.076726027000113 ], [ -124.003160644999952, 49.076624605000049 ], [ -124.00331486499995, 49.07302502700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311833", "BldgCostT": "3663333", "sL_LossRatio": "0.817491052044828", "sL_AssetLoss": "34086", "sL_BldgLoss": "27865", "sL_StrLoss": "16201", "sL_NStrLoss": "11664", "sL_ContLoss": "6221", "geom_point": "0101000020E61000002D28CAADA2FE5EC047D31375EA904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.978039121999956, 49.138255725000128 ], [ -123.978394086999941, 49.137639005000047 ], [ -123.978520904999939, 49.137643007000065 ], [ -123.979263809999935, 49.137666524000046 ], [ -123.981090837999915, 49.137676237000093 ], [ -123.980930300999916, 49.137633218000069 ], [ -123.980178589999952, 49.137349499000059 ], [ -123.979479368999989, 49.137087215000058 ], [ -123.978864266999921, 49.136987232000074 ], [ -123.978046717999945, 49.136969667000066 ], [ -123.97447338799999, 49.136892859000071 ], [ -123.974541765999945, 49.136443624000101 ], [ -123.974606339, 49.134985891000021 ], [ -123.9783973199999, 49.135135691000094 ], [ -123.978487273999974, 49.134458532000053 ], [ -123.974709698999959, 49.134265163000116 ], [ -123.975020123999983, 49.132845955000072 ], [ -123.97505306, 49.131616431000097 ], [ -123.975092025, 49.131382140000071 ], [ -123.975319487999968, 49.130780340000086 ], [ -123.975628645999933, 49.130337010000048 ], [ -123.975877336999972, 49.129980356000011 ], [ -123.975993624999916, 49.129653541000046 ], [ -123.976493711000018, 49.129662946000103 ], [ -123.976645993999966, 49.126159720000039 ], [ -123.977401876999934, 49.126173932000036 ], [ -123.977424691999914, 49.125648838000046 ], [ -123.982896769999968, 49.125751561000079 ], [ -123.982740796999948, 49.129350816000105 ], [ -123.982631939000015, 49.129348775000075 ], [ -123.982604327999951, 49.129985817000026 ], [ -123.977812363999973, 49.129895873000116 ], [ -123.977702825999941, 49.132417031000095 ], [ -123.977861361999913, 49.132420010000054 ], [ -123.977789936999969, 49.134063934000011 ], [ -123.979974484999957, 49.134104960000109 ], [ -123.979887917999946, 49.136099383000044 ], [ -123.981734041999971, 49.136134019000039 ], [ -123.981577943999952, 49.139733215000092 ], [ -123.980700088999953, 49.139716750000019 ], [ -123.980693115999884, 49.139877437000052 ], [ -123.977060878999978, 49.139809231000136 ], [ -123.978039121999956, 49.138255725000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.934263845114813", "sL_AssetLoss": "1332.6", "sL_BldgLoss": "1245", "sL_StrLoss": "946", "sL_NStrLoss": "299", "sL_ContLoss": "87.6", "geom_point": "0101000020E61000002CBE3EC6DE055FC04C672FF46B8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.091594646999923, 49.091183952000058 ], [ -124.091588729999927, 49.090914137000048 ], [ -124.090767068, 49.090921905000073 ], [ -124.090761154999925, 49.090652089000102 ], [ -124.090350324999946, 49.090655972000036 ], [ -124.090344415999965, 49.090386156000065 ], [ -124.089933588999898, 49.090390037000049 ], [ -124.089915868, 49.089580590000018 ], [ -124.090737509999911, 49.089572828000037 ], [ -124.090731598999952, 49.089303014000109 ], [ -124.091142416999986, 49.089299130000072 ], [ -124.091095113999984, 49.087140608000055 ], [ -124.091963569999947, 49.087132395 ], [ -124.09232751499998, 49.087128951000089 ], [ -124.092330149999938, 49.087249033000077 ], [ -124.092333434999915, 49.087398766000064 ], [ -124.09278724899994, 49.087394470000106 ], [ -124.093155040999989, 49.087390988000045 ], [ -124.093157704999953, 49.087512338000053 ], [ -124.093172812999939, 49.088200432000107 ], [ -124.092762002999947, 49.08820432300007 ], [ -124.092785690999975, 49.089283583000025 ], [ -124.09237487199999, 49.089287473000041 ], [ -124.092398552999896, 49.090366733000103 ], [ -124.092809380999967, 49.090362844000076 ], [ -124.092827147999941, 49.091172289000077 ], [ -124.091594646999923, 49.091183952000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.840635268346112", "sL_AssetLoss": "3652", "sL_BldgLoss": "3070", "sL_StrLoss": "1770", "sL_NStrLoss": "1300", "sL_ContLoss": "582", "geom_point": "0101000020E61000001C5C5BF4E5FF5EC0737EABF1298B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.995103689999937, 49.087176099000025 ], [ -123.994515810999985, 49.087008745000084 ], [ -123.998061624999977, 49.086920723000127 ], [ -123.998790351999972, 49.086809618000103 ], [ -124.000004500999921, 49.086849601000075 ], [ -124.00275279899995, 49.087039714000056 ], [ -124.002760097999953, 49.087402110000028 ], [ -124.00111683899992, 49.087416375 ], [ -124.001111413, 49.087146552000036 ], [ -123.997414097999965, 49.087178561000037 ], [ -123.997424907999957, 49.087718208000098 ], [ -123.997014088999975, 49.087721757000047 ], [ -123.997019492999954, 49.087991581000026 ], [ -123.99650582, 49.087996017000108 ], [ -123.995836293999929, 49.087509497000084 ], [ -123.9953044799999, 49.087267483000034 ], [ -123.995103689999937, 49.087176099000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.867081018915017", "sL_AssetLoss": "8173.4", "sL_BldgLoss": "7087", "sL_StrLoss": "4760", "sL_NStrLoss": "2327", "sL_ContLoss": "1086.4", "geom_point": "0101000020E61000008DE6A7BCC6095FC0A3B7154E148D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.15214470699999, 49.100370634000065 ], [ -124.155561052999985, 49.100429283000089 ], [ -124.155554686999906, 49.100590052000022 ], [ -124.155418504999929, 49.104028918000083 ], [ -124.149948613999953, 49.103934964000089 ], [ -124.150091583999981, 49.100335336000029 ], [ -124.15214470699999, 49.100370634000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.762265656162744", "sL_AssetLoss": "2507", "sL_BldgLoss": "1911", "sL_StrLoss": "431", "sL_NStrLoss": "1480", "sL_ContLoss": "596", "geom_point": "0101000020E61000009B040C1EA8FB5EC045AA9CB4F8884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.932612228999986, 49.071528161000124 ], [ -123.932607178999916, 49.071258332000056 ], [ -123.932196489, 49.071261650000089 ], [ -123.932191441, 49.070991820000096 ], [ -123.931370063999964, 49.070998452000083 ], [ -123.931365020999962, 49.07072862200009 ], [ -123.930954334999967, 49.070731936000037 ], [ -123.930949292999941, 49.070462106000065 ], [ -123.930538607999935, 49.070465418 ], [ -123.930528530999936, 49.069925759000107 ], [ -123.930117850000016, 49.0699290700001 ], [ -123.930097701999927, 49.068849751000101 ], [ -123.931329713999958, 49.068839815000032 ], [ -123.931334755999913, 49.06910964500009 ], [ -123.933388115999961, 49.069093057000025 ], [ -123.933398225999937, 49.069632716000115 ], [ -123.933808902999957, 49.06962939400006 ], [ -123.933844304999965, 49.071518199000117 ], [ -123.932612228999986, 49.071528161000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.78833352796917", "sL_AssetLoss": "17126", "sL_BldgLoss": "13501", "sL_StrLoss": "7270", "sL_NStrLoss": "6231", "sL_ContLoss": "3625", "geom_point": "0101000020E6100000D004B3D775F95EC0A7A89FDCDB844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.895167958999963, 49.036106350000075 ], [ -123.900629350999935, 49.036213269000044 ], [ -123.900475992999958, 49.039620424000084 ], [ -123.900467329999941, 49.039812903000097 ], [ -123.899690872999926, 49.039797719000028 ], [ -123.89500551699993, 49.039705976000079 ], [ -123.895167958999963, 49.036106350000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.777304964539007", "sL_AssetLoss": "7050", "sL_BldgLoss": "5480", "sL_StrLoss": "2590", "sL_NStrLoss": "2890", "sL_ContLoss": "1570", "geom_point": "0101000020E6100000679DAF615FF85EC002045A57D8844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.87853392199996, 49.037038504000066 ], [ -123.880210046999963, 49.037050577000151 ], [ -123.883769966, 49.037136145000083 ], [ -123.883703593999925, 49.038599020000028 ], [ -123.881910876999939, 49.038563674000073 ], [ -123.88190303099995, 49.038736465000078 ], [ -123.880458626999982, 49.038707964 ], [ -123.87826327899991, 49.038664607000072 ], [ -123.878255, 49.038342172000036 ], [ -123.877725336999916, 49.037032684000067 ], [ -123.87853392199996, 49.037038504000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.826978701025506", "sL_AssetLoss": "7606", "sL_BldgLoss": "6290", "sL_StrLoss": "3740", "sL_NStrLoss": "2550", "sL_ContLoss": "1316", "geom_point": "0101000020E6100000EE5FD530AE055FC05CE49EAEEE894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.086009180999966, 49.079030781000064 ], [ -124.086115344999925, 49.076445747000015 ], [ -124.086123695999973, 49.076242383000128 ], [ -124.087911471999945, 49.0762742040001 ], [ -124.091590206999953, 49.076339587000092 ], [ -124.091486516999936, 49.078871642000145 ], [ -124.091400914999966, 49.078851894000088 ], [ -124.090263386999965, 49.078844695000029 ], [ -124.089987818999973, 49.078852895000033 ], [ -124.087197104, 49.078935910000048 ], [ -124.086009180999966, 49.079030781000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.791332263242376", "sL_AssetLoss": "6230", "sL_BldgLoss": "4930", "sL_StrLoss": "2420", "sL_NStrLoss": "2510", "sL_ContLoss": "1300", "geom_point": "0101000020E6100000952CE58422F95EC00C4D0269B9864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.891980599999954, 49.057978902000102 ], [ -123.89213376899994, 49.053546411000063 ], [ -123.892260290999928, 49.049884128 ], [ -123.892292384, 49.048955114000094 ], [ -123.892298034999925, 49.048025668000037 ], [ -123.893033647999914, 49.048040102000073 ], [ -123.892923662, 49.050474236000071 ], [ -123.893726868999977, 49.050489990000116 ], [ -123.893564265999942, 49.054089533000095 ], [ -123.892277748999945, 49.054064297000124 ], [ -123.892230912999963, 49.055100388000078 ], [ -123.892681586999927, 49.055109229000031 ], [ -123.892553535999951, 49.057942222000079 ], [ -123.892273600999914, 49.057974400000035 ], [ -123.891980490999984, 49.057982029000058 ], [ -123.891980599999954, 49.057978902000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035334", "BldgCostT": "2093334", "sL_LossRatio": "0.859242724491113", "sL_AssetLoss": "13170.9", "sL_BldgLoss": "11317", "sL_StrLoss": "6718", "sL_NStrLoss": "4599", "sL_ContLoss": "1853.9", "geom_point": "0101000020E6100000979E02C3E6FF5EC0EBFC1D82918A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.003992540999889, 49.087391397000019 ], [ -124.003987098999943, 49.087121573000104 ], [ -124.00316547599999, 49.087128718000017 ], [ -124.003160039999983, 49.086858895000105 ], [ -124.003072999, 49.086859651000069 ], [ -124.003095296999959, 49.086844504000133 ], [ -124.002961699999915, 49.085477862000118 ], [ -124.00255720899996, 49.084569621000057 ], [ -124.002254164999897, 49.084179218000067 ], [ -124.001309135999946, 49.083563109000053 ], [ -123.999889214999939, 49.083563157000086 ], [ -123.999557710999966, 49.083342975000043 ], [ -123.99950359099995, 49.082628205000056 ], [ -123.996201593999928, 49.081314035000041 ], [ -123.995980092999957, 49.081316819000094 ], [ -123.995140879999937, 49.081696977000057 ], [ -123.994964096999951, 49.082241685000028 ], [ -123.99420763199997, 49.08259376800013 ], [ -123.993412180999982, 49.083280561000024 ], [ -123.992048109999971, 49.083721171000057 ], [ -123.991619381999925, 49.083753535000085 ], [ -123.991509685, 49.082981231000119 ], [ -123.991440891999986, 49.082496690000021 ], [ -123.991416478999952, 49.081894222000066 ], [ -123.991389801999958, 49.081236693000044 ], [ -123.99139134499994, 49.081183715000066 ], [ -123.991419791999959, 49.080224085000062 ], [ -123.991478271999981, 49.07997749500008 ], [ -123.991698678999967, 49.079687099000104 ], [ -123.991770041, 49.079627206000069 ], [ -123.992239378999955, 49.079233387 ], [ -123.993136136999937, 49.078699158000077 ], [ -123.993147402999966, 49.079264210000105 ], [ -123.997766011999914, 49.079350346000098 ], [ -123.99767788099993, 49.081401416000034 ], [ -124.003031742999909, 49.0815010150001 ], [ -124.002952399999955, 49.083352385000076 ], [ -124.004321719999965, 49.083340478000089 ], [ -124.004327160999964, 49.083610300000018 ], [ -124.004737944999974, 49.083606726000014 ], [ -124.004748832999965, 49.08414637200012 ], [ -124.005159619999972, 49.084142795000055 ], [ -124.005165593999919, 49.084438732000088 ], [ -124.005170512999939, 49.084682441000027 ], [ -124.005581304999978, 49.084678862000111 ], [ -124.005597651999963, 49.085488331000093 ], [ -124.006008449999925, 49.085484752000085 ], [ -124.00603025499997, 49.086564042000091 ], [ -124.006441063999958, 49.086560461000097 ], [ -124.006457423999962, 49.087369929000047 ], [ -124.003992540999889, 49.087391397000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.769672131147541", "sL_AssetLoss": "12200", "sL_BldgLoss": "9390", "sL_StrLoss": "4490", "sL_NStrLoss": "4900", "sL_ContLoss": "2810", "geom_point": "0101000020E61000002B4025F8B0055FC05A0AED412D8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.085975860999923, 49.07984205900005 ], [ -124.086001008999958, 49.079229732000094 ], [ -124.086164300999954, 49.079233497000132 ], [ -124.089050583999935, 49.079133901000056 ], [ -124.089990550999985, 49.079038145000048 ], [ -124.090308895999954, 49.079005713000107 ], [ -124.091239320999975, 49.079041298000085 ], [ -124.091475402999919, 49.079143037000051 ], [ -124.091442793999946, 49.079939270000118 ], [ -124.089507107999935, 49.079904882000065 ], [ -124.085975860999923, 49.07984205900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.78585086042065", "sL_AssetLoss": "5230", "sL_BldgLoss": "4110", "sL_StrLoss": "2270", "sL_NStrLoss": "1840", "sL_ContLoss": "1120", "geom_point": "0101000020E61000003062022B45F85EC0AE6C17814E854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.878362734999939, 49.042537920000044 ], [ -123.878300378999981, 49.040109555000143 ], [ -123.87907064599996, 49.040103691000063 ], [ -123.879080157999965, 49.040643360000061 ], [ -123.879901044999926, 49.040637104000034 ], [ -123.879905805999925, 49.040906938000084 ], [ -123.880316251999929, 49.040903808000067 ], [ -123.880340065999945, 49.042252982000072 ], [ -123.879929609999962, 49.042256112000118 ], [ -123.87993437099999, 49.042525947000044 ], [ -123.878362734999939, 49.042537920000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7421583", "BldgCostT": "5118333", "sL_LossRatio": "0.859119283643505", "sL_AssetLoss": "34217.6", "sL_BldgLoss": "29397", "sL_StrLoss": "18130", "sL_NStrLoss": "11267", "sL_ContLoss": "4820.6", "geom_point": "0101000020E6100000483F12DDD0FE5EC0593A383BC6894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.975067371999955, 49.079059884000038 ], [ -123.975066267999978, 49.079003542000102 ], [ -123.974929025999941, 49.079004701000024 ], [ -123.974754519999976, 49.078935093000027 ], [ -123.974653101999976, 49.078883465000054 ], [ -123.974650239999932, 49.078737185000193 ], [ -123.974370393999934, 49.078739549000034 ], [ -123.974074733999885, 49.078589038000111 ], [ -123.97329469099995, 49.077970026000067 ], [ -123.973052121999928, 49.077729497000121 ], [ -123.97177594, 49.075971710000054 ], [ -123.97087296299999, 49.07516213800006 ], [ -123.970466887, 49.074877205000028 ], [ -123.970458654999916, 49.074454581000097 ], [ -123.970869365999988, 49.074451126000064 ], [ -123.970864106999926, 49.074181300000049 ], [ -123.973328362999936, 49.07416054400008 ], [ -123.973333634999946, 49.074430370000073 ], [ -123.974155057999894, 49.074423440000047 ], [ -123.974149779999934, 49.074153614000117 ], [ -123.975381905999967, 49.074143208000038 ], [ -123.975387188999989, 49.074413034000017 ], [ -123.976619320999959, 49.074402615000061 ], [ -123.976624611999952, 49.074672441000075 ], [ -123.9778567499999, 49.074662007000036 ], [ -123.977862046999959, 49.074931833000065 ], [ -123.981147761999964, 49.074903948000021 ], [ -123.981137132999947, 49.074364297000031 ], [ -123.982779970999928, 49.07435032000005 ], [ -123.982785293999939, 49.074620145000104 ], [ -123.984017427999916, 49.074609647000038 ], [ -123.984028088999963, 49.075149297000031 ], [ -123.984849520999958, 49.07514229 ], [ -123.984854854999966, 49.075412115000105 ], [ -123.986087007999984, 49.075401595000109 ], [ -123.986076325999989, 49.074861946000041 ], [ -123.985254898999969, 49.074868960000117 ], [ -123.985249561999979, 49.074599135000021 ], [ -123.984428140999967, 49.0746061440001 ], [ -123.984422806999959, 49.074336318000114 ], [ -123.984012098999941, 49.074339822000056 ], [ -123.984006768999947, 49.074069996000034 ], [ -123.982774647999975, 49.07408049400005 ], [ -123.982758677999954, 49.07327101800005 ], [ -123.98645498, 49.07323948600002 ], [ -123.986460321999957, 49.07350931000007 ], [ -123.99015663699997, 49.073477658000066 ], [ -123.99017272699993, 49.074287132000023 ], [ -123.989762017999951, 49.074290655000063 ], [ -123.989767379999989, 49.074560479000063 ], [ -123.990588799999969, 49.074553432000116 ], [ -123.990578069, 49.074013783000062 ], [ -123.993453006999985, 49.073989072000117 ], [ -123.993469149999939, 49.074798546000046 ], [ -123.991826302999982, 49.074812676000114 ], [ -123.991831674999972, 49.075082500000072 ], [ -123.992242388999941, 49.075078970000035 ], [ -123.992274169999916, 49.076674382000057 ], [ -123.989457022999929, 49.076641663000061 ], [ -123.98900409799991, 49.07667821600004 ], [ -123.988413681999987, 49.076827483000038 ], [ -123.987861064999933, 49.077050405000115 ], [ -123.983513413999944, 49.079446494000166 ], [ -123.983165164999917, 49.079592171000073 ], [ -123.98276970799995, 49.079722539000088 ], [ -123.982380302999914, 49.079807986000098 ], [ -123.981779412999927, 49.079849853000063 ], [ -123.981208406999926, 49.07983282900004 ], [ -123.980865497999957, 49.079792158000082 ], [ -123.980572891999969, 49.079757829000052 ], [ -123.97894699699998, 49.079559766000088 ], [ -123.976987251999915, 49.079489592000066 ], [ -123.97648812099996, 49.079432153000077 ], [ -123.976453781999965, 49.079428204000109 ], [ -123.975988356999949, 49.079341969000062 ], [ -123.975626905999917, 49.07923187800008 ], [ -123.975083909999952, 49.079066481000027 ], [ -123.975067371999955, 49.079059884000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.859580804031612", "sL_AssetLoss": "8731", "sL_BldgLoss": "7505", "sL_StrLoss": "4770", "sL_NStrLoss": "2735", "sL_ContLoss": "1226", "geom_point": "0101000020E6100000FCDE096A760B5FC05D02E8DEE08C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.176333800999913, 49.099310596000031 ], [ -124.176957806999937, 49.0990158070001 ], [ -124.177103788999972, 49.098861989000021 ], [ -124.177084308999923, 49.098609905000046 ], [ -124.176586987999926, 49.098407692000109 ], [ -124.176623100999905, 49.098228208000052 ], [ -124.176728571999888, 49.098172162000054 ], [ -124.177219005999959, 49.098180475000092 ], [ -124.178025991999959, 49.098464590000084 ], [ -124.17852070299989, 49.098541501000085 ], [ -124.179041377999923, 49.098473197000025 ], [ -124.17930854899997, 49.098215874000068 ], [ -124.180463783999969, 49.098235427000091 ], [ -124.180426698999909, 49.099184845000075 ], [ -124.181883989999989, 49.099209493000053 ], [ -124.181834868999886, 49.100467954000074 ], [ -124.181743479999938, 49.102809169000068 ], [ -124.180965921999984, 49.102796021000117 ], [ -124.180965348999962, 49.10281068900013 ], [ -124.180270054999966, 49.102798927000094 ], [ -124.180266226999919, 49.102896906000112 ], [ -124.180052003999904, 49.102893281000085 ], [ -124.17770200799994, 49.102853488000029 ], [ -124.177449094999986, 49.102456712000034 ], [ -124.176958805999931, 49.101993791000041 ], [ -124.17680469699998, 49.10128459000007 ], [ -124.175939510999953, 49.100555401000072 ], [ -124.17603048299999, 49.099780598000052 ], [ -124.176333800999913, 49.099310596000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.915183191885738", "sL_AssetLoss": "3864.8", "sL_BldgLoss": "3537", "sL_StrLoss": "2620", "sL_NStrLoss": "917", "sL_ContLoss": "327.8", "geom_point": "0101000020E61000003161B0F2B60A5FC09BA22B2A458D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.165278026999928, 49.101312815000043 ], [ -124.16573227799995, 49.101320564000041 ], [ -124.1663248, 49.101885611000107 ], [ -124.166795293999925, 49.102069295000028 ], [ -124.167713510999945, 49.10266319800013 ], [ -124.168432601999939, 49.102916697000055 ], [ -124.168835085999945, 49.103164497000108 ], [ -124.17065308399998, 49.103813606000138 ], [ -124.170606263999915, 49.105005640000044 ], [ -124.166686266999989, 49.104938891000089 ], [ -124.165136226999962, 49.104912458000072 ], [ -124.165165488999961, 49.104169680000084 ], [ -124.165278026999928, 49.101312815000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "0.933811331589357", "sL_AssetLoss": "5015.36", "sL_BldgLoss": "4683.4", "sL_StrLoss": "3492.2", "sL_NStrLoss": "1191.2", "sL_ContLoss": "331.96", "geom_point": "0101000020E610000088F8661F140D5FC0982ABDDBE18C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.196442635, 49.10201071700007 ], [ -124.196551608999954, 49.099196184000043 ], [ -124.19715056699999, 49.099206227000096 ], [ -124.19715228699999, 49.099161799000036 ], [ -124.197883246999979, 49.099174050000038 ], [ -124.197895775999953, 49.098850216000088 ], [ -124.198537397999985, 49.098860966000046 ], [ -124.198546762999939, 49.098618831000081 ], [ -124.19899815399998, 49.098626392000014 ], [ -124.198977289999959, 49.098645502000061 ], [ -124.198964617999948, 49.099275005000067 ], [ -124.199281905999925, 49.099937312000115 ], [ -124.199816712999976, 49.100516895000041 ], [ -124.200190505999942, 49.100710598000063 ], [ -124.200764887999924, 49.100588098000102 ], [ -124.20086939, 49.100434299000042 ], [ -124.201113908999943, 49.10031470900006 ], [ -124.201549996999958, 49.100273398000091 ], [ -124.202215883999955, 49.099997103000085 ], [ -124.202923190999954, 49.099819095000093 ], [ -124.203594287999962, 49.099793407000078 ], [ -124.204707295999967, 49.09994439400004 ], [ -124.207379692999936, 49.099934396000087 ], [ -124.207690492999987, 49.099804796000114 ], [ -124.20844120199996, 49.099122604000051 ], [ -124.208681693999964, 49.098840601000056 ], [ -124.208861988999956, 49.098407706000081 ], [ -124.209146810999982, 49.098242498000104 ], [ -124.209976514999966, 49.09800040700005 ], [ -124.211827812999957, 49.097538903000064 ], [ -124.212655183999942, 49.097511245000071 ], [ -124.212648194999986, 49.097693399000093 ], [ -124.212540468, 49.100500913000104 ], [ -124.212169924999941, 49.100494753000071 ], [ -124.21215876899997, 49.100785422000115 ], [ -124.210802685999965, 49.100762869000079 ], [ -124.21079053199999, 49.101079255000037 ], [ -124.210374037999912, 49.101072325000082 ], [ -124.210359135999937, 49.101460164000073 ], [ -124.209243455999939, 49.1014415920001 ], [ -124.209229410999939, 49.101806892000084 ], [ -124.208633090999939, 49.101796961000083 ], [ -124.208628293999965, 49.101921707000102 ], [ -124.203895346999929, 49.101842766000104 ], [ -124.203877328999937, 49.102310023000037 ], [ -124.203235655999933, 49.10229930400007 ], [ -124.203226314999966, 49.102541439000092 ], [ -124.202495300999914, 49.102529223000076 ], [ -124.202482803999928, 49.102853056000107 ], [ -124.201883797999926, 49.10284304300005 ], [ -124.201882081999912, 49.102887471000038 ], [ -124.196412233, 49.10279587900007 ], [ -124.196442635, 49.10201071700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16148167", "BldgCostT": "11136667", "sL_LossRatio": "0.852938001025669", "sL_AssetLoss": "74098", "sL_BldgLoss": "63201", "sL_StrLoss": "38635", "sL_NStrLoss": "24566", "sL_ContLoss": "10897", "geom_point": "0101000020E61000005072453112FA5EC00D6C00FCF4874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.89351672, 49.068568859000095 ], [ -123.89357505599996, 49.067278017 ], [ -123.892372356999928, 49.067254432000063 ], [ -123.892452107999986, 49.065490596000096 ], [ -123.892535097999968, 49.063654966000101 ], [ -123.893066231999953, 49.06366538200006 ], [ -123.893086000999986, 49.063227978000086 ], [ -123.897483462999958, 49.063314122000087 ], [ -123.897491914999947, 49.063126734000051 ], [ -123.896000542999957, 49.063097539000047 ], [ -123.896020678999889, 49.062651400000092 ], [ -123.893901794000016, 49.062609885000064 ], [ -123.894064400999923, 49.059010389000086 ], [ -123.898506935999961, 49.059097383000108 ], [ -123.898533553000021, 49.058506899000065 ], [ -123.903997574999963, 49.058613643000072 ], [ -123.903875006999925, 49.061339748000115 ], [ -123.907970308999936, 49.061419571000059 ], [ -123.908037594999925, 49.059920137000042 ], [ -123.90871054199999, 49.05993323900006 ], [ -123.911991336999961, 49.05999705300011 ], [ -123.912013487999928, 49.059502479000024 ], [ -123.911678047999942, 49.059495959000053 ], [ -123.911799787999897, 49.056778007000098 ], [ -123.911839272999956, 49.055896419000113 ], [ -123.917303019999935, 49.056002489000036 ], [ -123.917294031999958, 49.0562036950001 ], [ -123.920267922999955, 49.056261311000057 ], [ -123.920214544999936, 49.057457958000057 ], [ -123.923335485999985, 49.057518334000086 ], [ -123.923295368999973, 49.058418970000076 ], [ -123.923598528999932, 49.058424830000057 ], [ -123.923529028999923, 49.05998527800007 ], [ -123.924715582999966, 49.060008205000067 ], [ -123.92467088399998, 49.061012332000047 ], [ -123.924668442999959, 49.061067137000087 ], [ -123.925434991999978, 49.061060992000066 ], [ -123.925450022999939, 49.061870483000071 ], [ -123.92503940899999, 49.061873775000073 ], [ -123.92504441799997, 49.062143605000124 ], [ -123.924620370999918, 49.062147004000046 ], [ -123.924555339000023, 49.063607740000037 ], [ -123.919090683999983, 49.063502042000081 ], [ -123.919092912999943, 49.063452092000077 ], [ -123.916827004999931, 49.063408183000085 ], [ -123.916867712999988, 49.062497239000066 ], [ -123.914036757999924, 49.062442313000112 ], [ -123.914106176999937, 49.060890885000092 ], [ -123.913463671999935, 49.060878409000097 ], [ -123.913340694999945, 49.063625917000095 ], [ -123.908295453999983, 49.063527814000039 ], [ -123.908228170999948, 49.065027240000113 ], [ -123.905469810999989, 49.064973504000065 ], [ -123.90536948099998, 49.067206304000102 ], [ -123.904757780999944, 49.067194377000064 ], [ -123.904721800999965, 49.067994817000027 ], [ -123.90240164899997, 49.06794955000003 ], [ -123.902375636999963, 49.068527574000072 ], [ -123.900312675999942, 49.068487283000067 ], [ -123.900304362999975, 49.068671825000123 ], [ -123.89908705500001, 49.068648031000095 ], [ -123.898838597999969, 49.068349713 ], [ -123.898618303999967, 49.068234410000066 ], [ -123.896677736999933, 49.06863078 ], [ -123.89351672, 49.068568859000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.851823285680974", "sL_AssetLoss": "5575.1", "sL_BldgLoss": "4749", "sL_StrLoss": "2462", "sL_NStrLoss": "2287", "sL_ContLoss": "826.1", "geom_point": "0101000020E61000006BA3190F9FFA5EC0A870C28C42894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.912591142999972, 49.071992071000132 ], [ -123.912607045999962, 49.071636984000051 ], [ -123.913189808999945, 49.071648302000014 ], [ -123.913205642, 49.071294697000077 ], [ -123.913677424999946, 49.071303857 ], [ -123.913685631999925, 49.071120508 ], [ -123.914386189999945, 49.071134108000066 ], [ -123.914391109999954, 49.071024126000097 ], [ -123.915203072999986, 49.071039882000051 ], [ -123.915206079999933, 49.070972646000023 ], [ -123.915823646000021, 49.070984626000076 ], [ -123.915824556999965, 49.070964261000043 ], [ -123.916454834999982, 49.070976484000049 ], [ -123.916455031999945, 49.070972077000093 ], [ -123.921920555999918, 49.07107790800012 ], [ -123.921911434999942, 49.071282475000068 ], [ -123.922848132999945, 49.07130058400007 ], [ -123.922801497999941, 49.072346993000039 ], [ -123.923481882999937, 49.072360142000051 ], [ -123.922738907999985, 49.072551202000071 ], [ -123.921933794999958, 49.072611006000038 ], [ -123.921644495999928, 49.072541207000086 ], [ -123.920545897999943, 49.072378795000091 ], [ -123.919765808999927, 49.07238590500004 ], [ -123.918241714999937, 49.072199398000087 ], [ -123.916322591999915, 49.072116792000045 ], [ -123.91621031499993, 49.071955802000062 ], [ -123.915771019999966, 49.071886006000078 ], [ -123.914309481, 49.072042693000093 ], [ -123.914257200999899, 49.072132410000094 ], [ -123.91457717899999, 49.072400197000093 ], [ -123.914025212999931, 49.073006901000028 ], [ -123.913600708999979, 49.073657787000066 ], [ -123.91339779099998, 49.073802999000058 ], [ -123.912851191999962, 49.073952608000091 ], [ -123.912350705000023, 49.074253096000085 ], [ -123.911979982999952, 49.074885397000052 ], [ -123.910584475999983, 49.075040697000048 ], [ -123.910385601999963, 49.075029185000091 ], [ -123.91045783, 49.073418236000087 ], [ -123.910876970999965, 49.073426385000033 ], [ -123.910865175999945, 49.072781320000082 ], [ -123.911454225999961, 49.07277667000011 ], [ -123.911460534999961, 49.072635858000133 ], [ -123.91192997899999, 49.072644980000092 ], [ -123.911950440999988, 49.072188269000108 ], [ -123.912201104999937, 49.072193139000021 ], [ -123.912210442999978, 49.071984675000081 ], [ -123.912591142999972, 49.071992071000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.854372110151807", "sL_AssetLoss": "17107.3", "sL_BldgLoss": "14616", "sL_StrLoss": "8990", "sL_NStrLoss": "5626", "sL_ContLoss": "2491.3", "geom_point": "0101000020E6100000D7D3F5E1ECFD5EC0D046CFA93B874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.969766104999977, 49.054033924000052 ], [ -123.971314077999949, 49.054063170000056 ], [ -123.97130216799998, 49.054336926000111 ], [ -123.97127806099999, 49.054890981000092 ], [ -123.971203943999981, 49.056594344000068 ], [ -123.971157450999982, 49.057662808000082 ], [ -123.970414317999911, 49.057648771000061 ], [ -123.969378329999984, 49.057629193000039 ], [ -123.969316157999941, 49.05905664800013 ], [ -123.96431707399995, 49.058962040000068 ], [ -123.96385193499998, 49.058953225000025 ], [ -123.963859811999924, 49.058772888000064 ], [ -123.964009131999916, 49.05535360500005 ], [ -123.965788160999949, 49.055387308000086 ], [ -123.965850436999972, 49.053959847000101 ], [ -123.96804590499994, 49.054001399000072 ], [ -123.969766104999977, 49.054033924000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.767412935323383", "sL_AssetLoss": "8844", "sL_BldgLoss": "6787", "sL_StrLoss": "3007", "sL_NStrLoss": "3780", "sL_ContLoss": "2057", "geom_point": "0101000020E61000002D90243116FC5EC094A69C8A2F894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.936756574999961, 49.072384495000065 ], [ -123.935811500999932, 49.072329007000086 ], [ -123.934630027999944, 49.072455877000074 ], [ -123.93469320399997, 49.07103022700008 ], [ -123.940158775999933, 49.071135131000077 ], [ -123.940134600999897, 49.071682143000025 ], [ -123.942011085, 49.07171809500008 ], [ -123.942039608999963, 49.071072108000109 ], [ -123.942165427999925, 49.071074517000049 ], [ -123.942186630999956, 49.070594311000015 ], [ -123.943344883999927, 49.070616484000048 ], [ -123.943360302999977, 49.070267038000104 ], [ -123.943687214999926, 49.070273295000021 ], [ -123.94363600299998, 49.070501686000085 ], [ -123.943311082999941, 49.070756699000107 ], [ -123.94335011599999, 49.071286501000053 ], [ -123.942967492999927, 49.072081205000089 ], [ -123.942683986999924, 49.072246404000047 ], [ -123.941934702999973, 49.072467099000072 ], [ -123.940396600999918, 49.072281991000054 ], [ -123.939952908999942, 49.072726302000063 ], [ -123.939420213999952, 49.072757702000068 ], [ -123.938709101999962, 49.072746297000052 ], [ -123.936756574999961, 49.072384495000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.891692040017399", "sL_AssetLoss": "2299", "sL_BldgLoss": "2050", "sL_StrLoss": "1370", "sL_NStrLoss": "680", "sL_ContLoss": "249", "geom_point": "0101000020E61000008267AD2E88095FC044078FFCE29F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.148555991999942, 49.2474605130001 ], [ -124.149309574999947, 49.247473441000061 ], [ -124.149166091, 49.251072258000086 ], [ -124.148720278999974, 49.251064611000096 ], [ -124.14867200799999, 49.250062867000089 ], [ -124.148555991999942, 49.2474605130001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.895182541509965", "sL_AssetLoss": "3908.7", "sL_BldgLoss": "3499", "sL_StrLoss": "2650", "sL_NStrLoss": "849", "sL_ContLoss": "409.7", "geom_point": "0101000020E6100000801819CB910F5FC018DFC44E80A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.242842606999901, 49.278226391000025 ], [ -124.241464616999949, 49.277195384000045 ], [ -124.241484729999968, 49.276664798000127 ], [ -124.241657458999939, 49.2766676110001 ], [ -124.242184871999925, 49.276676197000043 ], [ -124.242186304999976, 49.276638415000058 ], [ -124.244570930999942, 49.276677208000102 ], [ -124.244928476999945, 49.278138309000042 ], [ -124.24482193599998, 49.278135948000063 ], [ -124.244601947999953, 49.278131042000048 ], [ -124.244086958999944, 49.278119578000037 ], [ -124.243218211999988, 49.278100208000097 ], [ -124.242977606999958, 49.278179104000074 ], [ -124.242842606999901, 49.278226391000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20493917", "BldgCostT": "13396667", "sL_LossRatio": "0.770846791534784", "sL_AssetLoss": "111146.6", "sL_BldgLoss": "85677", "sL_StrLoss": "54350", "sL_NStrLoss": "31327", "sL_ContLoss": "25469.6", "geom_point": "0101000020E6100000061E00ED5E0A5FC021DFA5D425A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.162281265999965, 49.252751188000097 ], [ -124.159900988999965, 49.25257559300006 ], [ -124.159112027999981, 49.252565528000098 ], [ -124.158856804, 49.252562278000042 ], [ -124.157923016999987, 49.25260485600004 ], [ -124.156478678999932, 49.252747649000028 ], [ -124.155403894999949, 49.252778807000091 ], [ -124.154528199999902, 49.252706210000071 ], [ -124.153292798999971, 49.252427596000125 ], [ -124.15223368, 49.252140993000062 ], [ -124.151817850999947, 49.252028476000085 ], [ -124.151533740999923, 49.251875447000053 ], [ -124.150606488000022, 49.251705423000047 ], [ -124.150628912999949, 49.251142576000063 ], [ -124.151093289999906, 49.251150533000072 ], [ -124.151158785999883, 49.249506185000016 ], [ -124.154163514999951, 49.249557623000136 ], [ -124.154165466, 49.249508559000056 ], [ -124.156508956999915, 49.24954862000002 ], [ -124.156515179999928, 49.249391917 ], [ -124.157221767999928, 49.249403986000061 ], [ -124.157222149999967, 49.249394334000108 ], [ -124.158217613999938, 49.249411329000104 ], [ -124.158218311000013, 49.249393759000107 ], [ -124.163214369999949, 49.249478915000076 ], [ -124.163216911999911, 49.249414683000047 ], [ -124.163850004999958, 49.249425457000065 ], [ -124.163850185999976, 49.249420898000039 ], [ -124.169337241999969, 49.249514124000065 ], [ -124.169333871999982, 49.249599606000032 ], [ -124.16985292899993, 49.249608411000082 ], [ -124.169852596999974, 49.249616800000098 ], [ -124.170418507999912, 49.249626396000068 ], [ -124.17041553699994, 49.249701783000049 ], [ -124.171081886999971, 49.249713079000095 ], [ -124.17108055099996, 49.249747023000033 ], [ -124.172132851999933, 49.249764852000055 ], [ -124.171991130999913, 49.253363687000103 ], [ -124.17177146299997, 49.253359966000048 ], [ -124.171758571999973, 49.253687241000073 ], [ -124.170689969999927, 49.253386438000064 ], [ -124.170288743999905, 49.253273483000086 ], [ -124.169398745999956, 49.253109837000075 ], [ -124.168339223999936, 49.253033339000105 ], [ -124.162281265999965, 49.252751188000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196650937", "BldgCostT": "127620364", "sL_LossRatio": "0.826885847255519", "sL_AssetLoss": "671817.4", "sL_BldgLoss": "555516.3", "sL_StrLoss": "377444.3", "sL_NStrLoss": "178072", "sL_ContLoss": "116301.1", "geom_point": "0101000020E61000007F84B3BE750D5FC03F491D912DA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.236954632999968, 49.273820452000095 ], [ -124.234808078999905, 49.27218519200013 ], [ -124.233624992999978, 49.27140959900003 ], [ -124.23317777499993, 49.271144764000148 ], [ -124.233195284999937, 49.270684922000029 ], [ -124.23321243, 49.2702346740001 ], [ -124.237749838999932, 49.270308832000055 ], [ -124.237754189999961, 49.270194268000061 ], [ -124.236321427999911, 49.270170871000069 ], [ -124.236407763999921, 49.267899387000064 ], [ -124.232995542999959, 49.26784359099999 ], [ -124.233009711999941, 49.267471505000131 ], [ -124.231669316999927, 49.267449557000077 ], [ -124.231675340999985, 49.26729145900007 ], [ -124.231267343999946, 49.267284775000071 ], [ -124.231179218999927, 49.269596575000079 ], [ -124.231026144999959, 49.269594067000128 ], [ -124.230105244999905, 49.269578974000048 ], [ -124.230104274999974, 49.269604412000042 ], [ -124.229545012999935, 49.269355008000041 ], [ -124.22787569099998, 49.268764904000079 ], [ -124.227863316999958, 49.268760999000037 ], [ -124.223114001999988, 49.26726689100007 ], [ -124.221589417999951, 49.266787198000102 ], [ -124.219857928999971, 49.26624472400006 ], [ -124.21941631599995, 49.266106360000059 ], [ -124.218947594999946, 49.265959513000155 ], [ -124.216758801999958, 49.265495689000041 ], [ -124.215670003999975, 49.265313880000093 ], [ -124.214504461999979, 49.265166599000089 ], [ -124.214194202999948, 49.265127395000064 ], [ -124.212794012999936, 49.265043796000057 ], [ -124.210776220999946, 49.264923293000031 ], [ -124.210587094999951, 49.264911995000055 ], [ -124.210089921999938, 49.264852344000062 ], [ -124.20925131099996, 49.264751716000028 ], [ -124.208723862999946, 49.264688410000034 ], [ -124.208592893999963, 49.264672707000052 ], [ -124.207986865999942, 49.264559807000076 ], [ -124.205727515999939, 49.264138855000041 ], [ -124.205507336999972, 49.264097834000054 ], [ -124.205285643999972, 49.264056513000043 ], [ -124.204099514999953, 49.263835504000099 ], [ -124.203474158999981, 49.263753893000029 ], [ -124.203245693999975, 49.263724105000101 ], [ -124.202726543999987, 49.263699965000072 ], [ -124.202430079999928, 49.263686202000024 ], [ -124.200221558999914, 49.263667392000073 ], [ -124.200002921999896, 49.263644699000039 ], [ -124.199622571999925, 49.263605199000096 ], [ -124.199667103999985, 49.263518602000076 ], [ -124.199204995999978, 49.263395693000056 ], [ -124.198799242999911, 49.263238691 ], [ -124.198747803999964, 49.263218795000064 ], [ -124.198673021999952, 49.263176443000106 ], [ -124.198423630999969, 49.26303513800012 ], [ -124.198028979, 49.262811591000109 ], [ -124.19764670099994, 49.262508996000072 ], [ -124.197636167999946, 49.262515487000087 ], [ -124.197541194999985, 49.262573902000071 ], [ -124.197229412999988, 49.262309307000073 ], [ -124.19680748899998, 49.261951193000101 ], [ -124.196445520999944, 49.261691297000027 ], [ -124.196103116999907, 49.261492004000075 ], [ -124.195661026999957, 49.261314458000072 ], [ -124.195059261999987, 49.261147733 ], [ -124.194398361999944, 49.261019640000015 ], [ -124.191152534999972, 49.260561970000055 ], [ -124.190355766999915, 49.260396464000046 ], [ -124.189721325999955, 49.260188677000016 ], [ -124.188991526, 49.259891017000058 ], [ -124.186862303999987, 49.25878948200004 ], [ -124.184870021999956, 49.257758713000015 ], [ -124.184221207999968, 49.257423025000058 ], [ -124.184207389999955, 49.257415876000017 ], [ -124.183061578999954, 49.25691133100004 ], [ -124.182004702999933, 49.256519008000069 ], [ -124.181653354999966, 49.256412417000021 ], [ -124.180502780999916, 49.256063358000048 ], [ -124.176826469999966, 49.255113616000074 ], [ -124.176475613999969, 49.255014877000086 ], [ -124.176476704999942, 49.254987130000139 ], [ -124.176370650999957, 49.25498533800009 ], [ -124.175216039999952, 49.25466039100008 ], [ -124.175256937999933, 49.253620091000066 ], [ -124.174175182999988, 49.253601796000105 ], [ -124.174267421999929, 49.251256776000034 ], [ -124.174168426, 49.251255101 ], [ -124.174309971999904, 49.24765625200012 ], [ -124.175348211999918, 49.247673814000045 ], [ -124.175368814999956, 49.247149654000104 ], [ -124.175371862999924, 49.247072077000027 ], [ -124.175528125999946, 49.247074719000089 ], [ -124.175563005999905, 49.246187180000092 ], [ -124.181049704000017, 49.246279810000026 ], [ -124.181024995999948, 49.246910412000069 ], [ -124.182292996999962, 49.246931779000121 ], [ -124.182264221999944, 49.24766665500006 ], [ -124.186799775999944, 49.247742964000096 ], [ -124.186776551999984, 49.248337522000071 ], [ -124.187736077999915, 49.248353641000108 ], [ -124.187671454999986, 49.250008912000034 ], [ -124.18817896099992, 49.250017434000036 ], [ -124.188170546999956, 49.250233025000057 ], [ -124.193298585999969, 49.250319002000012 ], [ -124.193252607999966, 49.251500285000105 ], [ -124.194279921999936, 49.251517479000078 ], [ -124.19425219499999, 49.252230213000125 ], [ -124.194240882999978, 49.252520986 ], [ -124.195190919999945, 49.252536878000086 ], [ -124.197967946999967, 49.252583285000121 ], [ -124.197957420999941, 49.252854427000109 ], [ -124.199324813999951, 49.252877251000029 ], [ -124.199307655999974, 49.253319551000068 ], [ -124.203453388999904, 49.253388645000022 ], [ -124.203372672999961, 49.255473955000099 ], [ -124.203328856999988, 49.256605893000028 ], [ -124.206248583999979, 49.256654458000106 ], [ -124.208510199, 49.256692022000038 ], [ -124.20849261799999, 49.257147478000029 ], [ -124.210505552999933, 49.257180871000081 ], [ -124.210496992999964, 49.257402881000118 ], [ -124.21098583899996, 49.25741098500005 ], [ -124.212213501999955, 49.25743132700007 ], [ -124.212160731999958, 49.258801258000084 ], [ -124.212074865999938, 49.261030172000041 ], [ -124.21135767199999, 49.26101829100007 ], [ -124.211332473999988, 49.261672089000072 ], [ -124.21072227, 49.261661977000124 ], [ -124.210709066999982, 49.26200440300007 ], [ -124.21065521599995, 49.262003511000046 ], [ -124.210646907999916, 49.262218983000025 ], [ -124.211080435999989, 49.262226169 ], [ -124.211076915999911, 49.262317502000016 ], [ -124.212346596999964, 49.262338536000051 ], [ -124.212339212999936, 49.262530212000065 ], [ -124.215973773999949, 49.262590343000099 ], [ -124.215969552999965, 49.262700155000097 ], [ -124.216772450999926, 49.26271342200009 ], [ -124.216702379999944, 49.264536906000082 ], [ -124.217777094, 49.264554655000069 ], [ -124.217800804999982, 49.263937275000096 ], [ -124.220694631999962, 49.263985013000109 ], [ -124.223289683999923, 49.264027756000104 ], [ -124.223277368999931, 49.264349429000063 ], [ -124.224468460999972, 49.264369027000072 ], [ -124.224460135999919, 49.264586615000091 ], [ -124.22589399599994, 49.264610190000056 ], [ -124.225916077999969, 49.264032605000118 ], [ -124.223578119999971, 49.263994156000066 ], [ -124.223654951999919, 49.261987001000087 ], [ -124.220922044999952, 49.261941992000096 ], [ -124.221005711999979, 49.25975941100004 ], [ -124.221020824999954, 49.259365129000116 ], [ -124.220871691999918, 49.259366704000065 ], [ -124.220231392999949, 49.259373470000071 ], [ -124.220211436999975, 49.258564084000042 ], [ -124.219799234, 49.258568438000118 ], [ -124.219794982999971, 49.258395937000074 ], [ -124.216326889999891, 49.258338681000041 ], [ -124.216349896999972, 49.257739985000072 ], [ -124.216465188999933, 49.254739816000033 ], [ -124.221046147, 49.254815423000124 ], [ -124.221677753, 49.254825831000097 ], [ -124.221746175999925, 49.25303984300006 ], [ -124.227233774999917, 49.253130125000034 ], [ -124.227155347999911, 49.255183524000124 ], [ -124.227392893999976, 49.255187425000024 ], [ -124.227255440999954, 49.258786302000011 ], [ -124.226535193, 49.258774470000056 ], [ -124.226495042999943, 49.259825136000046 ], [ -124.22647152199994, 49.260440625000044 ], [ -124.22920434699995, 49.260485493000068 ], [ -124.22919760799999, 49.260662095000058 ], [ -124.230172211999943, 49.260678080000055 ], [ -124.230204194999914, 49.25983937600013 ], [ -124.230206402999926, 49.259781482000058 ], [ -124.228457662, 49.259752794000093 ], [ -124.228595025999965, 49.256153921000099 ], [ -124.234083004999931, 49.256243855000029 ], [ -124.233992186999942, 49.25863071900001 ], [ -124.235740889999988, 49.258659318000092 ], [ -124.235723996000033, 49.259103716000027 ], [ -124.236372664999948, 49.259114318000066 ], [ -124.23638472, 49.25986281800008 ], [ -124.23949441399995, 49.260046894000055 ], [ -124.239687003999933, 49.259929382000081 ], [ -124.239982203999929, 49.259854908000086 ], [ -124.240578241000023, 49.25985390800011 ], [ -124.242235142999974, 49.259851121000047 ], [ -124.242112379000019, 49.263092222000118 ], [ -124.241597065999926, 49.263083829000067 ], [ -124.241505097999948, 49.265510842000054 ], [ -124.2422679579999, 49.265523266000052 ], [ -124.242233405999954, 49.266435411000074 ], [ -124.244396734999967, 49.266470613000116 ], [ -124.244358900999941, 49.267470570000114 ], [ -124.242184536999929, 49.267528109000054 ], [ -124.242594563999916, 49.269022696000043 ], [ -124.243306298999983, 49.271616758000064 ], [ -124.239877918999952, 49.271560922000049 ], [ -124.239815815999989, 49.273197935000049 ], [ -124.239956692999925, 49.273196424000098 ], [ -124.239976983999952, 49.274005801000065 ], [ -124.23978508899998, 49.274007859000072 ], [ -124.239753363999981, 49.274844048000041 ], [ -124.238885177999975, 49.27482989100011 ], [ -124.238290388999971, 49.274820188000035 ], [ -124.236963623999927, 49.273827301000026 ], [ -124.236954632999968, 49.273820452000095 ] ], [ [ -124.239296335999953, 49.271235565000097 ], [ -124.239306139999911, 49.270977196000089 ], [ -124.239144000999971, 49.270974552000055 ], [ -124.239134194999949, 49.27123292000006 ], [ -124.239296335999953, 49.271235565000097 ] ], [ [ -124.191565048999919, 49.258110121000087 ], [ -124.191610167999968, 49.25695217700013 ], [ -124.188472523999977, 49.256899559000082 ], [ -124.188477003999964, 49.256784781000114 ], [ -124.187539506999912, 49.256769042000037 ], [ -124.187533475999928, 49.2569234750001 ], [ -124.18865126299994, 49.256942240000051 ], [ -124.188631670999939, 49.257444261000103 ], [ -124.189594559999961, 49.257460417000068 ], [ -124.189570519999947, 49.258076684000109 ], [ -124.191565048999919, 49.258110121000087 ] ], [ [ -124.194059259999975, 49.256678443000069 ], [ -124.194070457999928, 49.256390642000014 ], [ -124.193983951999954, 49.25638919500004 ], [ -124.193972661999936, 49.25667933800009 ], [ -124.194059259999975, 49.256678443000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.985968683728902", "sL_AssetLoss": "688.46", "sL_BldgLoss": "678.8", "sL_StrLoss": "626", "sL_NStrLoss": "52.8", "sL_ContLoss": "9.66", "geom_point": "0101000020E610000032E3AFC1E9085FC0DF471C4F579F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.136839796999965, 49.244502924000074 ], [ -124.141832881999903, 49.244589028000135 ], [ -124.141811607999927, 49.24512053200003 ], [ -124.138930429999931, 49.245183139000041 ], [ -124.136949288999944, 49.245165559000071 ], [ -124.136839796999965, 49.244502924000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.976610942644631", "sL_AssetLoss": "3459.31", "sL_BldgLoss": "3378.4", "sL_StrLoss": "3000", "sL_NStrLoss": "378.4", "sL_ContLoss": "80.91", "geom_point": "0101000020E6100000649FB6FCB60F5FC04BE31FCF91A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.247998904999946, 49.26501386900005 ], [ -124.247978490999955, 49.264204494000047 ], [ -124.247153997999987, 49.264213397000027 ], [ -124.247160798999943, 49.264483189000089 ], [ -124.246839813999941, 49.264486654000073 ], [ -124.245924055, 49.264496533000035 ], [ -124.245917261000031, 49.264226741000037 ], [ -124.245505012999942, 49.264231187000128 ], [ -124.245498223999917, 49.263961394000027 ], [ -124.245085979999899, 49.263965839000029 ], [ -124.24507240199999, 49.263426254000066 ], [ -124.244660161999931, 49.263430697000068 ], [ -124.244653375999988, 49.263160904000074 ], [ -124.24424113799995, 49.263165345000047 ], [ -124.244220784999982, 49.262355967000097 ], [ -124.24380855500003, 49.262360407000124 ], [ -124.24379499199992, 49.261820822000146 ], [ -124.243382764999964, 49.261825260000158 ], [ -124.243348869999963, 49.26047629600005 ], [ -124.24376108499996, 49.260471859000027 ], [ -124.243747522, 49.259932273000061 ], [ -124.24420744399994, 49.259927321000077 ], [ -124.244571944999961, 49.259923394000047 ], [ -124.24457002599992, 49.259847159000046 ], [ -124.245579178999918, 49.25984541 ], [ -124.245902938999947, 49.260720293000034 ], [ -124.248518155999975, 49.264765584000052 ], [ -124.248385483, 49.265009692000056 ], [ -124.247998904999946, 49.26501386900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.980724611815099", "sL_AssetLoss": "1120.6", "sL_BldgLoss": "1099", "sL_StrLoss": "993", "sL_NStrLoss": "106", "sL_ContLoss": "21.6", "geom_point": "0101000020E6100000612D25689F155FC0A4ABF03E79A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.336316060999948, 49.261134307000091 ], [ -124.340577875999912, 49.26119990800008 ], [ -124.340034289999963, 49.261489591000093 ], [ -124.33923751899999, 49.261562206000121 ], [ -124.336300303999934, 49.262190300000078 ], [ -124.336278164999911, 49.262191431000048 ], [ -124.336316060999948, 49.261134307000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.855533199195171", "sL_AssetLoss": "2485", "sL_BldgLoss": "2126", "sL_StrLoss": "1450", "sL_NStrLoss": "676", "sL_ContLoss": "359", "geom_point": "0101000020E61000003F5611EAF9115FC056634B87B5A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.280021694999931, 49.271527671000115 ], [ -124.27900255899999, 49.271374170000051 ], [ -124.279019971999944, 49.270904712000117 ], [ -124.284164864, 49.27098659900004 ], [ -124.280744046999942, 49.271477497000035 ], [ -124.28074432199999, 49.271469649000011 ], [ -124.280021694999931, 49.271527671000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.991803701221712", "sL_AssetLoss": "969.95", "sL_BldgLoss": "962", "sL_StrLoss": "907", "sL_NStrLoss": "55", "sL_ContLoss": "7.95", "geom_point": "0101000020E6100000A80E03A7480F5FC0EEFBC3D83AA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.23638472, 49.25986281800008 ], [ -124.236372664999948, 49.259114318000066 ], [ -124.23853611299991, 49.259149646000054 ], [ -124.238525372, 49.259432652000065 ], [ -124.242248693999969, 49.259493350000106 ], [ -124.242235142999974, 49.259851121000047 ], [ -124.240578241000023, 49.25985390800011 ], [ -124.239982203999929, 49.259854908000086 ], [ -124.239687003999933, 49.259929382000081 ], [ -124.23949441399995, 49.260046894000055 ], [ -124.23638472, 49.25986281800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.920633234169146", "sL_AssetLoss": "3764.8", "sL_BldgLoss": "3466", "sL_StrLoss": "2459", "sL_NStrLoss": "1007", "sL_ContLoss": "298.8", "geom_point": "0101000020E610000045200B8F85115FC0D9607EFA91A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.276606895999976, 49.271013296000014 ], [ -124.275574064999944, 49.270857696000107 ], [ -124.272892448999968, 49.270908038000037 ], [ -124.272886565999954, 49.270679370000074 ], [ -124.272061973999953, 49.270688454000059 ], [ -124.272055036999944, 49.270418664000012 ], [ -124.271230448999987, 49.270427740000102 ], [ -124.271223515999935, 49.270157951000087 ], [ -124.270811224999974, 49.270162487000093 ], [ -124.270790431999913, 49.269353119000058 ], [ -124.272439569999932, 49.269334967000056 ], [ -124.272446511999945, 49.269604757000131 ], [ -124.273271084999976, 49.269595671000069 ], [ -124.273278028999982, 49.269865461000137 ], [ -124.27451489399999, 49.269851822000113 ], [ -124.27449404099994, 49.269042455000076 ], [ -124.275730885999934, 49.269028803000076 ], [ -124.275744801, 49.269568380000088 ], [ -124.276157085999955, 49.269563826000102 ], [ -124.276191886999968, 49.270912771000056 ], [ -124.276604183999964, 49.270908216000038 ], [ -124.276606895999976, 49.271013296000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.976583356639801", "sL_AssetLoss": "3933.1", "sL_BldgLoss": "3841", "sL_StrLoss": "3420", "sL_NStrLoss": "421", "sL_ContLoss": "92.1", "geom_point": "0101000020E61000008801222FF1115FC0DA10B1FBEDA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.279127525999968, 49.256847272000087 ], [ -124.279113581, 49.2563076940001 ], [ -124.281586627999928, 49.256280283000116 ], [ -124.281593614999963, 49.256550072000081 ], [ -124.282005790999946, 49.256545498000101 ], [ -124.28201277899997, 49.25681528700008 ], [ -124.282424958999925, 49.256810713000078 ], [ -124.282444482999978, 49.257564201000086 ], [ -124.282445931999945, 49.257620079000063 ], [ -124.282341757999916, 49.25762123500008 ], [ -124.282033745999939, 49.257624655000043 ], [ -124.282038026999956, 49.257789868000039 ], [ -124.282040733999963, 49.257894442000065 ], [ -124.281845770999965, 49.257896607000056 ], [ -124.2808041709999, 49.257908160000071 ], [ -124.280811155, 49.258177949000071 ], [ -124.278338011999949, 49.258205343000029 ], [ -124.278317104999971, 49.257395976000069 ], [ -124.278729288999926, 49.257391414000068 ], [ -124.278715347999977, 49.256851835000127 ], [ -124.279127525999968, 49.256847272000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.991001872093725", "sL_AssetLoss": "496.77", "sL_BldgLoss": "492.3", "sL_StrLoss": "462", "sL_NStrLoss": "30.3", "sL_ContLoss": "4.47", "geom_point": "0101000020E610000063019F6122105FC0323CD5A5EFA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.251238411999964, 49.265555601000123 ], [ -124.25249396399991, 49.263396059000037 ], [ -124.252567824999915, 49.26631374800008 ], [ -124.252369521, 49.266315897000034 ], [ -124.251238411999964, 49.265555601000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140892840", "BldgCostT": "96694200", "sL_LossRatio": "0.890263402082133", "sL_AssetLoss": "345722.4", "sL_BldgLoss": "307784", "sL_StrLoss": "222462", "sL_NStrLoss": "85322", "sL_ContLoss": "37938.4", "geom_point": "0101000020E61000005F11BA5393155FC0412F798F75A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.309768918999936, 49.285897440000035 ], [ -124.309370874999942, 49.285850202000113 ], [ -124.308551911999984, 49.285706801000067 ], [ -124.308179789999969, 49.285669639000048 ], [ -124.308083691999954, 49.285660042000032 ], [ -124.307760779999967, 49.285627798000064 ], [ -124.30751193899998, 49.285625327000027 ], [ -124.30750611799999, 49.285405222000101 ], [ -124.307918530999956, 49.285400554000063 ], [ -124.307911394999948, 49.285130770000144 ], [ -124.308323803999912, 49.285126099000088 ], [ -124.308273831999912, 49.283237607000032 ], [ -124.308686227999942, 49.283232937000029 ], [ -124.308679085999927, 49.282963151000061 ], [ -124.30909147899996, 49.282958479000065 ], [ -124.309084335999927, 49.282688695000147 ], [ -124.30949672499996, 49.282684021000058 ], [ -124.309475290999927, 49.28187466800005 ], [ -124.310712439999961, 49.281860638000047 ], [ -124.310719590999923, 49.282130422000051 ], [ -124.311956744999947, 49.282116381000044 ], [ -124.311949585999955, 49.281846596000015 ], [ -124.313186732999924, 49.281832542000132 ], [ -124.313172405000032, 49.281292972000102 ], [ -124.316059043999957, 49.281260125000109 ], [ -124.316051862999956, 49.28099034300007 ], [ -124.318113733999937, 49.280966836000061 ], [ -124.31810654399996, 49.280697052000065 ], [ -124.319343657999966, 49.280682932000083 ], [ -124.319358054999967, 49.281222499000073 ], [ -124.319770428999917, 49.281217788000106 ], [ -124.319763228999975, 49.28094800500002 ], [ -124.321000349999935, 49.280933866000083 ], [ -124.320985934999953, 49.280394299000136 ], [ -124.321810673999948, 49.280384865000052 ], [ -124.321803462, 49.280115082000087 ], [ -124.322215827999969, 49.280110364000095 ], [ -124.322208612999958, 49.279840580000027 ], [ -124.324270432, 49.27981696500008 ], [ -124.324263207999977, 49.279547182000016 ], [ -124.328386813999927, 49.279499841000096 ], [ -124.328415802999984, 49.280578972000072 ], [ -124.327591063999975, 49.280588452000117 ], [ -124.327598306999988, 49.280858235000039 ], [ -124.329247792999936, 49.280839269000062 ], [ -124.329233287999941, 49.280299703000033 ], [ -124.329645654, 49.280294959000102 ], [ -124.329638399999965, 49.280025176000066 ], [ -124.330875491999905, 49.280010931000113 ], [ -124.330868232999947, 49.279741149000117 ], [ -124.331280592999974, 49.279736398000061 ], [ -124.331273328999913, 49.279466616000065 ], [ -124.331685689999958, 49.279461862000026 ], [ -124.331668224999973, 49.278813374000094 ], [ -124.327398152999962, 49.278747320000029 ], [ -124.327427386999901, 49.277936507000064 ], [ -124.324090199999929, 49.277884766000049 ], [ -124.324067122999963, 49.278523546000095 ], [ -124.319284063999959, 49.278449208000033 ], [ -124.319286074999951, 49.27852466100012 ], [ -124.319698427999967, 49.278519952000124 ], [ -124.319705628999884, 49.278789735000053 ], [ -124.320117984999982, 49.278785024000065 ], [ -124.320132388999966, 49.279324592000116 ], [ -124.320544747999989, 49.279319878000052 ], [ -124.320566361, 49.280129230000071 ], [ -124.31932926199994, 49.280143363000036 ], [ -124.319322063999934, 49.279873580000043 ], [ -124.31890969899996, 49.279878288000127 ], [ -124.318895306999977, 49.279338721000109 ], [ -124.318482948999971, 49.279343428000104 ], [ -124.318475754999966, 49.279073644000121 ], [ -124.31723868, 49.279087755000099 ], [ -124.317245865999922, 49.279357538000077 ], [ -124.315596422999974, 49.279376334000069 ], [ -124.3156036, 49.279646118000038 ], [ -124.315191236999965, 49.279650813000018 ], [ -124.315198411999916, 49.279920597000149 ], [ -124.31354894899999, 49.279939363000025 ], [ -124.313541781999987, 49.279669578000068 ], [ -124.313129417999903, 49.279674266000029 ], [ -124.313115089999883, 49.279134698000099 ], [ -124.312702729999941, 49.279139383000071 ], [ -124.312695567999967, 49.278869599000082 ], [ -124.311870853999935, 49.278878967000033 ], [ -124.31184938199999, 49.278069613000071 ], [ -124.312674085999902, 49.278060246000038 ], [ -124.31266692399997, 49.277790461000123 ], [ -124.313903967999948, 49.277776399000082 ], [ -124.31391113599993, 49.278046183000065 ], [ -124.314735836999986, 49.278036801000077 ], [ -124.314728663999944, 49.27776701700008 ], [ -124.314873588999959, 49.277765368000082 ], [ -124.314948054999931, 49.275715212000044 ], [ -124.314955997999945, 49.27571178800013 ], [ -124.316543390999954, 49.274894289000066 ], [ -124.316794988999959, 49.274720042000098 ], [ -124.318926758999922, 49.274753252000039 ], [ -124.318977442999952, 49.273354411000071 ], [ -124.320386055999933, 49.273376332000055 ], [ -124.320364671999926, 49.272575285000102 ], [ -124.320776974999916, 49.272570572000092 ], [ -124.320762568999925, 49.27203100400007 ], [ -124.323236361999975, 49.272002695000033 ], [ -124.323258012999958, 49.272812047000087 ], [ -124.323155872999962, 49.272813215000085 ], [ -124.326100229999923, 49.272858902000074 ], [ -124.32608361799997, 49.273319379000093 ], [ -124.326099380999935, 49.273319198000131 ], [ -124.326150972999969, 49.27188916800003 ], [ -124.326348483999979, 49.271903402000085 ], [ -124.327409093999904, 49.271503201000044 ], [ -124.328039787999955, 49.270868111 ], [ -124.328979532999952, 49.270857304000089 ], [ -124.328969466999922, 49.270482619000049 ], [ -124.32830534299994, 49.27047233800004 ], [ -124.328458703999956, 49.270106090000063 ], [ -124.328086508999959, 49.269607598000022 ], [ -124.327895880999932, 49.269608995000034 ], [ -124.32777951499996, 49.269488435000042 ], [ -124.327874063999928, 49.266864713000089 ], [ -124.331063068999981, 49.26691406000004 ], [ -124.33107778699997, 49.26650482700007 ], [ -124.331131088999911, 49.266720693000131 ], [ -124.331299814999966, 49.266915906000037 ], [ -124.332089814999961, 49.2671323000001 ], [ -124.332530493, 49.267136591000053 ], [ -124.333089403999963, 49.267004184 ], [ -124.333706694999975, 49.266420216000071 ], [ -124.33411519199997, 49.265238095 ], [ -124.334440902999987, 49.265117089000114 ], [ -124.335253079999916, 49.265152694000037 ], [ -124.335535511999922, 49.264914792000063 ], [ -124.335861481999984, 49.264785195000059 ], [ -124.336006702999924, 49.264558787000055 ], [ -124.336037489999981, 49.264101874000097 ], [ -124.336209578999956, 49.264104526000096 ], [ -124.336269865999938, 49.262422904000097 ], [ -124.33947618399999, 49.261684702000075 ], [ -124.34024361099992, 49.261622104000018 ], [ -124.340988685999889, 49.261236099000044 ], [ -124.341018073000015, 49.261206674000093 ], [ -124.341804832999983, 49.261218763000137 ], [ -124.341793931999959, 49.261523826000023 ], [ -124.342375879999963, 49.261532764000052 ], [ -124.342493352999909, 49.258243554000074 ], [ -124.342535079999934, 49.258190063000093 ], [ -124.34595777, 49.258242568000078 ], [ -124.345943210999948, 49.257707292000049 ], [ -124.34668371399998, 49.257698661000077 ], [ -124.346691960999962, 49.257467154000089 ], [ -124.346761316999974, 49.25746821700006 ], [ -124.346760219999979, 49.257427902000138 ], [ -124.347328755999953, 49.257421272000073 ], [ -124.347329006, 49.257414240000131 ], [ -124.345162019999975, 49.257381038000112 ], [ -124.345186174, 49.256703564000077 ], [ -124.345413986999915, 49.256660093000029 ], [ -124.34642848699994, 49.25607190300012 ], [ -124.346715196999952, 49.256006387000063 ], [ -124.34691660499999, 49.255797003000062 ], [ -124.346725905999932, 49.254889806000051 ], [ -124.346775888999971, 49.254197693000037 ], [ -124.346896760999982, 49.25380662700006 ], [ -124.347613754999927, 49.253817606000069 ], [ -124.347655606999965, 49.252641895000124 ], [ -124.34770114599999, 49.25263080800007 ], [ -124.347858099999897, 49.252592594000049 ], [ -124.348001873999976, 49.252629824000067 ], [ -124.348523485999962, 49.252764894000066 ], [ -124.349251402999982, 49.252746395000074 ], [ -124.349504474999918, 49.252624896000057 ], [ -124.350037503999957, 49.252368987000118 ], [ -124.350222628999973, 49.25210982500009 ], [ -124.353163653999943, 49.252154743000069 ], [ -124.353147400999958, 49.252612861000067 ], [ -124.35312945, 49.253118826000062 ], [ -124.354064183999967, 49.253133086000084 ], [ -124.35406121699998, 49.253024669000126 ], [ -124.354708605999974, 49.253017080000134 ], [ -124.354723117999953, 49.252607618000063 ], [ -124.354761183999969, 49.251533638000076 ], [ -124.356021561999981, 49.251552845000028 ], [ -124.356035153999983, 49.251169069000063 ], [ -124.357920007999923, 49.251197765000015 ], [ -124.357941294999989, 49.251206188000047 ], [ -124.35820292899993, 49.251376716000081 ], [ -124.358464556999962, 49.251624656000033 ], [ -124.358949520999914, 49.252338107000107 ], [ -124.358977479999979, 49.252379230000059 ], [ -124.359016579999917, 49.252436784000118 ], [ -124.359122691, 49.25259285700011 ], [ -124.359200943999937, 49.25270797400006 ], [ -124.359406838, 49.253010884000034 ], [ -124.359423586999981, 49.253035546000071 ], [ -124.35948657699997, 49.253234559000113 ], [ -124.359476366999914, 49.253873576000061 ], [ -124.359467761, 49.254427105000048 ], [ -124.359448432999926, 49.255602540000062 ], [ -124.359435254999966, 49.25640593700011 ], [ -124.35939979299998, 49.25856448100005 ], [ -124.359410177999976, 49.259629627000059 ], [ -124.359478013999961, 49.259885418000088 ], [ -124.359950992999984, 49.260448053000097 ], [ -124.360007767999946, 49.260590250000135 ], [ -124.360006173999949, 49.26060570600005 ], [ -124.359805492999968, 49.260602656000103 ], [ -124.35979337399999, 49.260945575000015 ], [ -124.359844932999962, 49.260946358000098 ], [ -124.359674881999965, 49.261074020000123 ], [ -124.359142509999955, 49.26137560500009 ], [ -124.358923115999985, 49.26156223800011 ], [ -124.358859041999949, 49.261743103000065 ], [ -124.358868587999936, 49.261939503000079 ], [ -124.358928947, 49.262173571000055 ], [ -124.354547028999932, 49.2621563820001 ], [ -124.354183630999941, 49.262221086000054 ], [ -124.353903010999971, 49.262313978000101 ], [ -124.353531908999983, 49.262519877000088 ], [ -124.353276922999953, 49.262741088000027 ], [ -124.353022208, 49.263031587000071 ], [ -124.351526190999977, 49.265142282000056 ], [ -124.351333668999956, 49.265322416000032 ], [ -124.351239302999929, 49.265410697000029 ], [ -124.350375516, 49.26603039400004 ], [ -124.346071805999927, 49.268701212000117 ], [ -124.347093496999889, 49.269432515000112 ], [ -124.347225028999929, 49.269596622000059 ], [ -124.347284310999925, 49.269743325000043 ], [ -124.347318531, 49.269977035000117 ], [ -124.347305037999945, 49.271282151000037 ], [ -124.347319197, 49.274076042000047 ], [ -124.345645229999903, 49.274050407000104 ], [ -124.345694020999971, 49.27268200200011 ], [ -124.343349228999926, 49.272646051000038 ], [ -124.343387518999947, 49.271573620000019 ], [ -124.33956720899999, 49.271514936000152 ], [ -124.339559946999941, 49.271717881000043 ], [ -124.33806754799997, 49.271694919 ], [ -124.338064789999947, 49.271771918000141 ], [ -124.337319329, 49.27176044099999 ], [ -124.337313768999962, 49.271915637000099 ], [ -124.333581377999934, 49.271858095000063 ], [ -124.333578141999936, 49.271948177000127 ], [ -124.334544055999984, 49.271963081000116 ], [ -124.334414862999949, 49.275561999000075 ], [ -124.334331109999965, 49.275560707000118 ], [ -124.334232214999986, 49.278315095000053 ], [ -124.332908308999976, 49.278294665000054 ], [ -124.332905661999931, 49.27836833 ], [ -124.33413073, 49.278354189000027 ], [ -124.33413800799994, 49.278623970000091 ], [ -124.334550359, 49.278619208000066 ], [ -124.334543077999953, 49.278349426000084 ], [ -124.335780125999975, 49.278335129000027 ], [ -124.335772839, 49.278065348000069 ], [ -124.337834571999977, 49.278041491000096 ], [ -124.33784187, 49.278311273000085 ], [ -124.338254217999975, 49.278306497000074 ], [ -124.338268820999986, 49.278846061000102 ], [ -124.338681172999941, 49.278841283000041 ], [ -124.338688474999969, 49.279111065000059 ], [ -124.339100829999893, 49.27910628500004 ], [ -124.339139178999943, 49.280522345000101 ], [ -124.342040196999974, 49.280566922000084 ], [ -124.342101808999971, 49.278842999000055 ], [ -124.34544870900001, 49.278894331000053 ], [ -124.34532159299999, 49.281233225000072 ], [ -124.343469796999955, 49.281236501000045 ], [ -124.339855448999941, 49.281212517000029 ], [ -124.33949814499999, 49.281210139000045 ], [ -124.3385337079999, 49.281203709000074 ], [ -124.337890692999963, 49.281199419000068 ], [ -124.33772558199999, 49.28119833500012 ], [ -124.337481197999949, 49.281196702000088 ], [ -124.33727756799999, 49.281195344000054 ], [ -124.337283981999946, 49.281016394000083 ], [ -124.335853003999958, 49.281032949000114 ], [ -124.335857134999969, 49.281185864000136 ], [ -124.332843899999929, 49.281165692000101 ], [ -124.331491325999949, 49.281157503000038 ], [ -124.33092248599999, 49.281199095000026 ], [ -124.330518872999932, 49.281268498000088 ], [ -124.330202386999986, 49.281361694000083 ], [ -124.329865103999964, 49.281497814000048 ], [ -124.328978415, 49.281974689000066 ], [ -124.328548500999915, 49.282127398000092 ], [ -124.328083674999959, 49.282219204000022 ], [ -124.327635717999925, 49.282261800000114 ], [ -124.32701478499996, 49.282262991000088 ], [ -124.324316704999916, 49.282268781000035 ], [ -124.322491789999944, 49.28227264300007 ], [ -124.320842880999976, 49.282276100000125 ], [ -124.320645341, 49.282303068000076 ], [ -124.320470201999925, 49.282326993000083 ], [ -124.320079403999941, 49.282420003000041 ], [ -124.319528799999944, 49.28264281100008 ], [ -124.3191895099999, 49.282832900000066 ], [ -124.318923489, 49.283047500000123 ], [ -124.318694384999986, 49.283304993000073 ], [ -124.317353593999925, 49.285051202000055 ], [ -124.317155707999945, 49.285279486000015 ], [ -124.316928047999951, 49.285466593000073 ], [ -124.316919302999978, 49.285473803000123 ], [ -124.316607495999961, 49.285662505000111 ], [ -124.316261903999973, 49.285796701000024 ], [ -124.316043082999983, 49.285848024000067 ], [ -124.315356297, 49.285855846000082 ], [ -124.315358272999958, 49.285930172000072 ], [ -124.313289366999982, 49.285933713000119 ], [ -124.313067195999963, 49.285934104000063 ], [ -124.311955593999983, 49.285936087000046 ], [ -124.311645578999929, 49.285936640000081 ], [ -124.311644554999958, 49.285898044000064 ], [ -124.310407305999931, 49.285912084000074 ], [ -124.31040786799997, 49.285933262000107 ], [ -124.310181147999941, 49.285923751000063 ], [ -124.309886590999938, 49.285911400000053 ], [ -124.309768918999936, 49.285897440000035 ] ], [ [ -124.331827546999989, 49.271725063000062 ], [ -124.331830818999919, 49.271634067000114 ], [ -124.331653150999912, 49.271636115000071 ], [ -124.331650050999897, 49.271722320000087 ], [ -124.331827546999989, 49.271725063000062 ] ], [ [ -124.34201241699999, 49.266724057000054 ], [ -124.339589394, 49.266686799000098 ], [ -124.339587273999953, 49.266686786000065 ], [ -124.33906352199989, 49.266692857000095 ], [ -124.339021, 49.267880830000081 ], [ -124.341191749999936, 49.267914205000082 ], [ -124.341193678999915, 49.26786024600009 ], [ -124.341270765999965, 49.267861431000043 ], [ -124.341260341999956, 49.267476973000043 ], [ -124.34167259900002, 49.267472186000049 ], [ -124.341657966999961, 49.266932621000109 ], [ -124.342005108999942, 49.266928590000099 ], [ -124.34201241699999, 49.266724057000054 ] ], [ [ -124.349048877999934, 49.263463598000087 ], [ -124.349053338999951, 49.263338225 ], [ -124.348782497999977, 49.263341387000018 ], [ -124.348778296999967, 49.26345946000005 ], [ -124.349048877999934, 49.263463598000087 ] ], [ [ -124.349645851999966, 49.261442233000032 ], [ -124.349657541999946, 49.26111351 ], [ -124.349334401999968, 49.261108569000079 ], [ -124.34934359599994, 49.261445764000023 ], [ -124.349645851999966, 49.261442233000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5169250", "BldgCostT": "3565000", "sL_LossRatio": "0.926220500879883", "sL_AssetLoss": "13013.1", "sL_BldgLoss": "12053", "sL_StrLoss": "8999", "sL_NStrLoss": "3054", "sL_ContLoss": "960.1", "geom_point": "0101000020E6100000CB81FD5B72115FC073E7D37407A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.269927429999925, 49.264009168000058 ], [ -124.275416418999953, 49.264096999000081 ], [ -124.275282661999967, 49.267695887000087 ], [ -124.2697932499999, 49.267608050000106 ], [ -124.269927429999925, 49.264009168000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.874352941176471", "sL_AssetLoss": "2125", "sL_BldgLoss": "1858", "sL_StrLoss": "1340", "sL_NStrLoss": "518", "sL_ContLoss": "267", "geom_point": "0101000020E6100000DD27470122165FC0D0C00277A4A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.34529032899999, 49.253782010000052 ], [ -124.34653711899989, 49.253801118000084 ], [ -124.346345077999956, 49.254499597000091 ], [ -124.346564208999951, 49.255530685000053 ], [ -124.346423182999956, 49.255865393000079 ], [ -124.345951008999947, 49.256167397000056 ], [ -124.345195177999926, 49.256451039000105 ], [ -124.34529032899999, 49.253782010000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.97794984009426", "sL_AssetLoss": "1188.2", "sL_BldgLoss": "1162", "sL_StrLoss": "1040", "sL_NStrLoss": "122", "sL_ContLoss": "26.2", "geom_point": "0101000020E6100000909BE97744155FC0293CCBA018A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.331170421999985, 49.266050069000116 ], [ -124.33347331499999, 49.266085643000046 ], [ -124.3334269899999, 49.266280700000102 ], [ -124.333226914999941, 49.266471493000061 ], [ -124.33298189199995, 49.26657259300007 ], [ -124.332473305999955, 49.26659678500004 ], [ -124.332533509999948, 49.266794803000089 ], [ -124.332425891999918, 49.266875998000096 ], [ -124.331888405999933, 49.26682898700011 ], [ -124.331468413999986, 49.266518493000085 ], [ -124.331392685999958, 49.266284902000073 ], [ -124.331170421999985, 49.266050069000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.790911231457499", "sL_AssetLoss": "424.7", "sL_BldgLoss": "335.9", "sL_StrLoss": "64.9", "sL_NStrLoss": "271", "sL_ContLoss": "88.8", "geom_point": "0101000020E61000008754CD8366155FC0D7129788DCA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.333611197999986, 49.264064448000042 ], [ -124.335591716999915, 49.264095002000012 ], [ -124.335531602999978, 49.264241184000049 ], [ -124.335340891, 49.264350894000081 ], [ -124.335172581999956, 49.264739702000099 ], [ -124.334930012999976, 49.264940507000127 ], [ -124.33423049299995, 49.264930494000055 ], [ -124.333876988999918, 49.265078603000035 ], [ -124.333624207999932, 49.265450286 ], [ -124.333550250999949, 49.265761693000066 ], [ -124.333611197999986, 49.264064448000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52864083", "BldgCostT": "34248333", "sL_LossRatio": "0.821533394101264", "sL_AssetLoss": "213489.8", "sL_BldgLoss": "175389", "sL_StrLoss": "109331", "sL_NStrLoss": "66058", "sL_ContLoss": "38100.8", "geom_point": "0101000020E6100000FC418623020D5FC0DF802AC915A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.197786561999948, 49.267322442000065 ], [ -124.197763317999886, 49.26710777300007 ], [ -124.197809283999945, 49.266878968000107 ], [ -124.198974169999985, 49.264638708000071 ], [ -124.199622571999925, 49.263605199000096 ], [ -124.200002921999896, 49.263644699000039 ], [ -124.200221558999914, 49.263667392000073 ], [ -124.202430079999928, 49.263686202000024 ], [ -124.202726543999987, 49.263699965000072 ], [ -124.203245693999975, 49.263724105000101 ], [ -124.203474158999981, 49.263753893000029 ], [ -124.204099514999953, 49.263835504000099 ], [ -124.205285643999972, 49.264056513000043 ], [ -124.205507336999972, 49.264097834000054 ], [ -124.205727515999939, 49.264138855000041 ], [ -124.207986865999942, 49.264559807000076 ], [ -124.208592893999963, 49.264672707000052 ], [ -124.208723862999946, 49.264688410000034 ], [ -124.20925131099996, 49.264751716000028 ], [ -124.210089921999938, 49.264852344000062 ], [ -124.210587094999951, 49.264911995000055 ], [ -124.210635855999939, 49.266103105000113 ], [ -124.210346292999958, 49.266098305000071 ], [ -124.210353684999959, 49.26590663100005 ], [ -124.208151802999964, 49.265870105000047 ], [ -124.208073502999937, 49.267897753000064 ], [ -124.207862221999974, 49.267894245000072 ], [ -124.207842522999897, 49.26840425600011 ], [ -124.202353155999944, 49.268312990000013 ], [ -124.202379357999973, 49.267636656000093 ], [ -124.201804277999912, 49.267627079000064 ], [ -124.201817777999949, 49.267278712000056 ], [ -124.201786776999967, 49.267278196000106 ], [ -124.201709828999952, 49.269263706000046 ], [ -124.19822714799993, 49.269205639000099 ], [ -124.198263350999966, 49.269083236000085 ], [ -124.198217479999954, 49.268789998000038 ], [ -124.198206154999966, 49.268717674000129 ], [ -124.197786561999948, 49.267322442000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56491809", "BldgCostT": "34938643", "sL_LossRatio": "0.769023122930763", "sL_AssetLoss": "274134.8", "sL_BldgLoss": "210816", "sL_StrLoss": "122335", "sL_NStrLoss": "88481", "sL_ContLoss": "63318.8", "geom_point": "0101000020E6100000F14A40E9970C5FC0D1A34EE5D9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.193069297999969, 49.270292837000049 ], [ -124.196976822999957, 49.269926019000103 ], [ -124.197237111999954, 49.269871842000093 ], [ -124.198087182999927, 49.269376497000096 ], [ -124.198139205999951, 49.269319845000027 ], [ -124.198619411999942, 49.269314863000076 ], [ -124.198625948999961, 49.269584660000085 ], [ -124.199862841999973, 49.269571820000124 ], [ -124.199856298999947, 49.269302024000034 ], [ -124.20109318399993, 49.269289171000054 ], [ -124.201098131999984, 49.269492954000022 ], [ -124.201880639999985, 49.269520263000103 ], [ -124.201880430999907, 49.269550848000051 ], [ -124.202748924, 49.269541810000085 ], [ -124.202764662999954, 49.270189129000102 ], [ -124.202817238999955, 49.270191263000058 ], [ -124.202811670999921, 49.270350750000077 ], [ -124.203180905999915, 49.270346905000039 ], [ -124.203194030999896, 49.270886498000039 ], [ -124.203606339999908, 49.270882203000035 ], [ -124.20362258499999, 49.271549882000087 ], [ -124.20289100899997, 49.271571303000037 ], [ -124.202015185999969, 49.271560296000104 ], [ -124.201807882999972, 49.271523598000037 ], [ -124.201470680999961, 49.27136489300004 ], [ -124.201331513999932, 49.271236492000071 ], [ -124.201210684999936, 49.270916700000043 ], [ -124.201313505999948, 49.270707813000129 ], [ -124.201528402999941, 49.270514201000054 ], [ -124.201278502999983, 49.270407393000028 ], [ -124.200969017999952, 49.270313980000068 ], [ -124.200640296999964, 49.270292289000032 ], [ -124.200346781999926, 49.270317170000091 ], [ -124.200104892999931, 49.270391378000049 ], [ -124.20003223799992, 49.270430850000018 ], [ -124.199918364999988, 49.270492770000047 ], [ -124.199808810999954, 49.2710149010001 ], [ -124.199780499999974, 49.271921891000027 ], [ -124.199775407999965, 49.272124408000046 ], [ -124.19983270199999, 49.272416993000036 ], [ -124.199981297999912, 49.27283450000003 ], [ -124.19996048699997, 49.273193392000039 ], [ -124.199940764999965, 49.273523771000093 ], [ -124.199933278999964, 49.273648499000082 ], [ -124.199907183, 49.274072996000029 ], [ -124.199230324, 49.274068898000081 ], [ -124.198691987999922, 49.27406711000009 ], [ -124.195690706, 49.274048223000065 ], [ -124.195553160999935, 49.274047371000073 ], [ -124.19771604099995, 49.274759317000125 ], [ -124.197715481000031, 49.275481315000029 ], [ -124.195783548999941, 49.275454852000102 ], [ -124.195590979, 49.27545221200009 ], [ -124.19170302899991, 49.275398817000081 ], [ -124.192098658999953, 49.274444852000023 ], [ -124.192262977999945, 49.274052729000068 ], [ -124.192278867999974, 49.274014792000145 ], [ -124.19234035, 49.273865418000106 ], [ -124.192757895999961, 49.272850086000105 ], [ -124.192931204999923, 49.272428689000094 ], [ -124.192941085999976, 49.272349610000028 ], [ -124.19293459, 49.272093806000029 ], [ -124.192726133999969, 49.27145807000003 ], [ -124.192615466999925, 49.27112069300005 ], [ -124.192529511999979, 49.270859060000042 ], [ -124.192587281999977, 49.27068086600012 ], [ -124.192694663999944, 49.270497216000066 ], [ -124.192830015999945, 49.270371637000018 ], [ -124.193069297999969, 49.270292837000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99057597928522", "sL_AssetLoss": "664.26", "sL_BldgLoss": "658", "sL_StrLoss": "616", "sL_NStrLoss": "42", "sL_ContLoss": "6.26", "geom_point": "0101000020E61000002CFFADA623235FC0166C9F6548AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.548599849999931, 49.337748128000037 ], [ -124.549657473999957, 49.337733949000054 ], [ -124.549670611999943, 49.338152344000036 ], [ -124.54968288799995, 49.338543211000086 ], [ -124.549290791999979, 49.338548468000084 ], [ -124.548591060999968, 49.338557847000082 ], [ -124.548444448999987, 49.338559812000049 ], [ -124.548419053999936, 49.337750550000074 ], [ -124.548599849999931, 49.337748128000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88292719", "BldgCostT": "61045412", "sL_LossRatio": "0.990519184218581", "sL_AssetLoss": "14376.4", "sL_BldgLoss": "14240.1", "sL_StrLoss": "8996", "sL_NStrLoss": "5244.1", "sL_ContLoss": "136.3", "geom_point": "0101000020E6100000BFB23D4058255FC038E712D411A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.581236052999913, 49.292516677000016 ], [ -124.581242905999943, 49.292292669000055 ], [ -124.58056464199997, 49.292283760000025 ], [ -124.580571331999934, 49.292065151000024 ], [ -124.580084036999935, 49.292058747000134 ], [ -124.58008818699993, 49.291923228 ], [ -124.579419019999989, 49.291914430000055 ], [ -124.579519905999945, 49.288620440000109 ], [ -124.579529250999911, 49.288315330000025 ], [ -124.579872500999898, 49.288319844000078 ], [ -124.579879549999973, 49.288089639000134 ], [ -124.581796585999911, 49.288114826000069 ], [ -124.581805287999941, 49.287830186000086 ], [ -124.58389961599994, 49.287857663000054 ], [ -124.583955207999978, 49.286036734000042 ], [ -124.587692578999949, 49.286085667000101 ], [ -124.588722960999931, 49.286099135000015 ], [ -124.588248391999954, 49.286293604000086 ], [ -124.587338800999987, 49.287133885000074 ], [ -124.586654200999973, 49.288051086000053 ], [ -124.58613059399994, 49.289273100000038 ], [ -124.586190005999981, 49.289875507000026 ], [ -124.586628601999934, 49.290220192000035 ], [ -124.586543500999966, 49.290580487000049 ], [ -124.586042906999964, 49.290885304000028 ], [ -124.58516639, 49.290967898000062 ], [ -124.5850718, 49.291042006000069 ], [ -124.585629510999979, 49.291295490000074 ], [ -124.58577871199995, 49.291634398000028 ], [ -124.585961682999965, 49.291776895000105 ], [ -124.587215287000021, 49.292262504000149 ], [ -124.587721131999942, 49.292390952000112 ], [ -124.586735368999939, 49.292378060000033 ], [ -124.586728949999952, 49.29258867700004 ], [ -124.581236052999913, 49.292516677000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5976417", "BldgCostT": "4121667", "sL_LossRatio": "0.969384879910135", "sL_AssetLoss": "7985.27", "sL_BldgLoss": "7740.8", "sL_StrLoss": "6743", "sL_NStrLoss": "997.8", "sL_ContLoss": "244.47", "geom_point": "0101000020E61000000B195D18081F5FC0445DD68AD7A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.489929329999939, 49.28888531899999 ], [ -124.487136504999967, 49.28863579100009 ], [ -124.487085714000017, 49.2886411590001 ], [ -124.486455845999913, 49.288707577000068 ], [ -124.486187282999964, 49.288735894000126 ], [ -124.486021283999932, 49.288753412000062 ], [ -124.48461987099995, 49.288746026000062 ], [ -124.483752838999962, 49.288741453000092 ], [ -124.482886615999959, 49.288736870000086 ], [ -124.481944628999955, 49.288731904000073 ], [ -124.481796722999945, 49.28605291100012 ], [ -124.482683194999979, 49.286065368000074 ], [ -124.482674759999981, 49.286323221000046 ], [ -124.483815467999989, 49.286339239000121 ], [ -124.483803858999977, 49.286694402000059 ], [ -124.484603159999935, 49.286705619000053 ], [ -124.484582764999985, 49.28732988800008 ], [ -124.486578524999956, 49.287357870000044 ], [ -124.486562814999942, 49.287839366000135 ], [ -124.488116996999977, 49.287861132000039 ], [ -124.488112193999925, 49.288008477000076 ], [ -124.489957036999954, 49.288034284000034 ], [ -124.489929329999939, 49.28888531899999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39588303", "BldgCostT": "25013746", "sL_LossRatio": "0.983017397134455", "sL_AssetLoss": "20466.474", "sL_BldgLoss": "20118.9", "sL_StrLoss": "18452.1", "sL_NStrLoss": "1666.8", "sL_ContLoss": "347.574", "geom_point": "0101000020E61000006F4095E44A235FC00F8511F393A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.548792584999958, 49.304687103000063 ], [ -124.548821830999941, 49.303752693000057 ], [ -124.546839667999976, 49.30372605400003 ], [ -124.54695245399995, 49.300127052000029 ], [ -124.547785352999981, 49.300138250000053 ], [ -124.547872078999916, 49.297368867000039 ], [ -124.55336549899998, 49.297442563000061 ], [ -124.55328889899998, 49.299897895000072 ], [ -124.55389852699993, 49.299906056000069 ], [ -124.553880062999937, 49.300498118000107 ], [ -124.55443504299997, 49.300505545000071 ], [ -124.554430289999942, 49.300658008000021 ], [ -124.556762363999965, 49.300689184000099 ], [ -124.556757302999955, 49.300851807000058 ], [ -124.556650336999951, 49.304288194000051 ], [ -124.554302584999931, 49.304256809000016 ], [ -124.554286871999949, 49.304760751000067 ], [ -124.55061497, 49.304711562000072 ], [ -124.548792584999958, 49.304687103000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.962117903930131", "sL_AssetLoss": "916", "sL_BldgLoss": "881.3", "sL_StrLoss": "782", "sL_NStrLoss": "99.3", "sL_ContLoss": "34.7", "geom_point": "0101000020E610000022F45C74AC235FC0DB7016FEA5AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.557755464999957, 49.340593613000081 ], [ -124.55842009, 49.340584651000114 ], [ -124.5584456509999, 49.341393909000011 ], [ -124.557704324999989, 49.341403904000067 ], [ -124.55743297099994, 49.341407562000057 ], [ -124.556381475999913, 49.341421728000121 ], [ -124.556365643999982, 49.34091987900009 ], [ -124.556355947999947, 49.340612469000106 ], [ -124.557755464999957, 49.340593613000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.98838780341052", "sL_AssetLoss": "2775.53", "sL_BldgLoss": "2743.3", "sL_StrLoss": "2548", "sL_NStrLoss": "195.3", "sL_ContLoss": "32.23", "geom_point": "0101000020E6100000E75B176553245FC065D253A2F4A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.566464368, 49.320775521000044 ], [ -124.566455810999955, 49.320505768000061 ], [ -124.566043151, 49.320511362000055 ], [ -124.566034594999962, 49.320241610000046 ], [ -124.565621937999978, 49.320247202000097 ], [ -124.565587724999958, 49.319168192000106 ], [ -124.56682566799995, 49.319151411000064 ], [ -124.566834227999976, 49.319421164000026 ], [ -124.567246878999967, 49.319415568000068 ], [ -124.567255439999911, 49.319685320000112 ], [ -124.567668091999963, 49.319679721000035 ], [ -124.56765952799995, 49.319409970000038 ], [ -124.569722772999981, 49.319381958000122 ], [ -124.569757075999959, 49.320460966000056 ], [ -124.568106444999955, 49.320483379000045 ], [ -124.568115010999946, 49.320753131000082 ], [ -124.566464368, 49.320775521000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9983251", "BldgCostT": "6885001", "sL_LossRatio": "0.993731572974906", "sL_AssetLoss": "3087.856", "sL_BldgLoss": "3068.5", "sL_StrLoss": "2884.7", "sL_NStrLoss": "183.8", "sL_ContLoss": "19.356", "geom_point": "0101000020E6100000CEEA0D8CF6255FC0E527D53E9DA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.590480749999983, 49.299838435000062 ], [ -124.595974527999928, 49.299909964000086 ], [ -124.595865545999942, 49.303509019000018 ], [ -124.590371341999926, 49.303437484000042 ], [ -124.590480749999983, 49.299838435000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40556334", "BldgCostT": "27023334", "sL_LossRatio": "0.774729265358887", "sL_AssetLoss": "21739.091", "sL_BldgLoss": "16841.91", "sL_StrLoss": "14097.31", "sL_NStrLoss": "2744.6", "sL_ContLoss": "4897.181", "geom_point": "0101000020E61000004FC39E138E295FC08F25C52A52A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.638551675999906, 49.301761837000129 ], [ -124.638557005999928, 49.301580289000064 ], [ -124.637726155999943, 49.301569816000104 ], [ -124.637735992, 49.30123499500008 ], [ -124.636641434999888, 49.301221190000042 ], [ -124.636649736999956, 49.300938818000049 ], [ -124.63298351499999, 49.300892495000042 ], [ -124.633057700999984, 49.298375930000077 ], [ -124.63360481299999, 49.298489195000094 ], [ -124.634760195999931, 49.298895108000053 ], [ -124.63543601, 49.29896629600006 ], [ -124.63606502, 49.298832400000023 ], [ -124.636547095999973, 49.29882529000006 ], [ -124.637572095999985, 49.299071713000096 ], [ -124.639590211999959, 49.299339387000039 ], [ -124.641960604999937, 49.299882006000047 ], [ -124.64382159299997, 49.299629888000027 ], [ -124.646027576, 49.299787996000084 ], [ -124.649783591999935, 49.298960613000077 ], [ -124.652326405999986, 49.298906491000075 ], [ -124.654093796999959, 49.298665792000115 ], [ -124.654952118999958, 49.298446397000077 ], [ -124.656501920999972, 49.297875303000076 ], [ -124.658260895999959, 49.297040710000033 ], [ -124.6590751949999, 49.296696092000055 ], [ -124.660340515, 49.295894207000089 ], [ -124.661315407999965, 49.295035486000124 ], [ -124.662324617999957, 49.294364602000073 ], [ -124.662593910999945, 49.294087463000032 ], [ -124.663389011999982, 49.294097303000029 ], [ -124.663285273999946, 49.29769645500005 ], [ -124.662821585999964, 49.297690717000087 ], [ -124.662812573999929, 49.298003266000073 ], [ -124.662573916999975, 49.298000312000049 ], [ -124.66254572099993, 49.298977970000067 ], [ -124.661060098999982, 49.298959570000051 ], [ -124.661056467, 49.299085307000063 ], [ -124.660542028999956, 49.299078931000082 ], [ -124.660534261999985, 49.299347819000097 ], [ -124.656366399999925, 49.299296069 ], [ -124.656323278999977, 49.300784220000061 ], [ -124.655234200999985, 49.300770670000141 ], [ -124.655233637, 49.300790147000022 ], [ -124.654196009000017, 49.300777228000072 ], [ -124.654193597999893, 49.300860272000087 ], [ -124.653018685999953, 49.300845632000119 ], [ -124.653017853999955, 49.300874303000072 ], [ -124.650255823999913, 49.300839835000041 ], [ -124.65023757799996, 49.301466669000064 ], [ -124.64905131899998, 49.301451844000042 ], [ -124.64904414399993, 49.30169809900007 ], [ -124.647883376999957, 49.301683579000091 ], [ -124.647880901999955, 49.301768428000109 ], [ -124.644048986999934, 49.301720409000097 ], [ -124.644045753999976, 49.301830923000047 ], [ -124.638551675999906, 49.301761837000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.992904926008514", "sL_AssetLoss": "2959.8", "sL_BldgLoss": "2938.8", "sL_StrLoss": "2780", "sL_NStrLoss": "158.8", "sL_ContLoss": "21", "geom_point": "0101000020E6100000A64819CC3A235FC0E13B395C0EAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.547522718999943, 49.343411785000079 ], [ -124.553021595999937, 49.34348549500011 ], [ -124.552966558999984, 49.345247419000039 ], [ -124.552965842, 49.345270325000037 ], [ -124.552955461999943, 49.345269871000042 ], [ -124.547487970999967, 49.344519966000078 ], [ -124.547522718999943, 49.343411785000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204838367", "BldgCostT": "139787782", "sL_LossRatio": "0.941552358277876", "sL_AssetLoss": "267285.72", "sL_BldgLoss": "251663.5", "sL_StrLoss": "181147.7", "sL_NStrLoss": "70515.8", "sL_ContLoss": "15622.22", "geom_point": "0101000020E6100000FE0915B973215FC0F26DC152DDA64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.514205998999969, 49.31240619400009 ], [ -124.514087296999932, 49.312164220000042 ], [ -124.513714078999953, 49.312216106000086 ], [ -124.512072599999925, 49.312444355000082 ], [ -124.511878417999952, 49.312471387000102 ], [ -124.511245923999965, 49.312479769000085 ], [ -124.510388098999954, 49.312443632000054 ], [ -124.510357640999956, 49.312108384000027 ], [ -124.51032580899999, 49.310684783000056 ], [ -124.510310830999984, 49.310014933000019 ], [ -124.510251656999969, 49.309932193000144 ], [ -124.510208986999956, 49.308951416000127 ], [ -124.510163285999923, 49.307903321000026 ], [ -124.510113212999926, 49.306755490000064 ], [ -124.510069771999937, 49.305884513000095 ], [ -124.509989442999938, 49.304962566000015 ], [ -124.509958551999944, 49.303985145000063 ], [ -124.509933017999955, 49.30317706600006 ], [ -124.510192960999973, 49.303173668000071 ], [ -124.510200206999983, 49.303410663000079 ], [ -124.512513912999935, 49.303442539000081 ], [ -124.512499067999954, 49.303905233000165 ], [ -124.512514140999926, 49.303905440000086 ], [ -124.51249851199999, 49.304392593000024 ], [ -124.512502070999943, 49.304392642000067 ], [ -124.512474623999978, 49.305248146000039 ], [ -124.512619518999955, 49.305250141000052 ], [ -124.512552103999951, 49.307351468000043 ], [ -124.512565247999987, 49.30735164900004 ], [ -124.512548906999911, 49.307860939000129 ], [ -124.512694773999954, 49.307862946000071 ], [ -124.512662916999929, 49.308855972000096 ], [ -124.513618899999955, 49.308869125000051 ], [ -124.513579602999954, 49.310094783000082 ], [ -124.51374266899991, 49.310097025000054 ], [ -124.513740578999929, 49.310162216 ], [ -124.515411410999917, 49.310185182000062 ], [ -124.515396542999952, 49.310649462000065 ], [ -124.515694936999921, 49.310653561000052 ], [ -124.51573495299999, 49.309403700000068 ], [ -124.516142275999968, 49.309409294000055 ], [ -124.516159466999966, 49.308872209000114 ], [ -124.516898936999979, 49.308882361000052 ], [ -124.516940610999953, 49.307579626000049 ], [ -124.51866879499994, 49.307603329000067 ], [ -124.518731050999946, 49.305654765000071 ], [ -124.520759657000013, 49.305682554000022 ], [ -124.520798838999909, 49.304454413000038 ], [ -124.52242507899993, 49.304476663000081 ], [ -124.522447671999927, 49.303767690000029 ], [ -124.522281532999926, 49.303765417000072 ], [ -124.52231543799995, 49.302701577000114 ], [ -124.518937872999956, 49.302655333000075 ], [ -124.519052822999925, 49.299056354000086 ], [ -124.519678339999984, 49.299064927000053 ], [ -124.519758939999988, 49.296539965000136 ], [ -124.521805305999948, 49.296567984000021 ], [ -124.52181832799999, 49.296159431000049 ], [ -124.519622793999957, 49.296129369000042 ], [ -124.519689143999983, 49.294050777000109 ], [ -124.51863658299996, 49.294036348000098 ], [ -124.518751533999946, 49.290437323000049 ], [ -124.524244086999929, 49.290512501000059 ], [ -124.524218540999968, 49.291315327000099 ], [ -124.528115991000021, 49.291368502000054 ], [ -124.528076164, 49.292623412000097 ], [ -124.528449453999926, 49.292628497000045 ], [ -124.528406667999917, 49.293976947000047 ], [ -124.529275503999926, 49.293988779000109 ], [ -124.529161360999979, 49.297587796000137 ], [ -124.527269401999959, 49.297562023000033 ], [ -124.527265491999941, 49.297685144000049 ], [ -124.525219073999921, 49.297657228000105 ], [ -124.525172338999965, 49.299126677000089 ], [ -124.526651716999979, 49.299146860000107 ], [ -124.526617489, 49.300224087000082 ], [ -124.527889935999909, 49.300241432000064 ], [ -124.527836199999982, 49.301933970000022 ], [ -124.528002333999922, 49.30193623300007 ], [ -124.527898992999937, 49.30519123100008 ], [ -124.528904095999962, 49.305204919000147 ], [ -124.52885103599999, 49.306877164000042 ], [ -124.531614697999913, 49.306914753000044 ], [ -124.531567095999961, 49.308417692000042 ], [ -124.534645577, 49.308459479000113 ], [ -124.534586349999969, 49.310333181000082 ], [ -124.534531812999944, 49.312058424000021 ], [ -124.534379071999979, 49.312056352000091 ], [ -124.534333510999943, 49.311809712000191 ], [ -124.532404491999912, 49.311702502000045 ], [ -124.530233289999913, 49.311909698000143 ], [ -124.529038036999907, 49.311785300000025 ], [ -124.528164905, 49.311694398000036 ], [ -124.527693206999942, 49.311615907000025 ], [ -124.526950246999931, 49.311451429000087 ], [ -124.526298386999954, 49.3113071020001 ], [ -124.525677892999909, 49.311242804000059 ], [ -124.525542385000037, 49.311244721000129 ], [ -124.524737401999971, 49.311256086000114 ], [ -124.524229502999987, 49.31132300900002 ], [ -124.523015294999965, 49.311687106000058 ], [ -124.521185308, 49.31248569200006 ], [ -124.520319382999958, 49.31270159800011 ], [ -124.519701087999977, 49.312828108000069 ], [ -124.51968739599999, 49.312829197000021 ], [ -124.518878495999928, 49.312893411000069 ], [ -124.516314385, 49.312790687000124 ], [ -124.515316188999975, 49.312758993000017 ], [ -124.515000100999927, 49.312714095000032 ], [ -124.514365091999935, 49.312500211000042 ], [ -124.514270973999913, 49.31244457600009 ], [ -124.514214760999963, 49.312411380000135 ], [ -124.514205998999969, 49.31240619400009 ] ], [ [ -124.529067226, 49.311021473000025 ], [ -124.529084358999924, 49.310481510000017 ], [ -124.528990228999959, 49.310482755000123 ], [ -124.528990130999944, 49.310479559000086 ], [ -124.528904300999969, 49.310478391000061 ], [ -124.528886990999936, 49.311023859000059 ], [ -124.529067226, 49.311021473000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.997635082270203", "sL_AssetLoss": "677.402", "sL_BldgLoss": "675.8", "sL_StrLoss": "654", "sL_NStrLoss": "21.8", "sL_ContLoss": "1.602", "geom_point": "0101000020E61000000CE8A64900255FC03F11727BD5A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.579151875999941, 49.304410676000025 ], [ -124.579143252999984, 49.304140925000048 ], [ -124.578318211999957, 49.304152198000033 ], [ -124.578309595999912, 49.303882447000021 ], [ -124.577897077999964, 49.303888081000103 ], [ -124.577888463999926, 49.303618329000145 ], [ -124.576238398999948, 49.303640853000104 ], [ -124.576229792, 49.303371100000057 ], [ -124.575817278999978, 49.303376728000025 ], [ -124.575791467999977, 49.302567473000096 ], [ -124.577854001999953, 49.302539322000044 ], [ -124.57786261699998, 49.302809074000038 ], [ -124.579100142999948, 49.302792167000057 ], [ -124.57910876399994, 49.303061919000058 ], [ -124.57952127599998, 49.303056280000106 ], [ -124.5795299, 49.303326031000012 ], [ -124.57994241199998, 49.303320391000028 ], [ -124.579951039999926, 49.303590142000061 ], [ -124.580363553999959, 49.303584500000071 ], [ -124.580389441999955, 49.30439375400001 ], [ -124.579151875999941, 49.304410676000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187111658", "BldgCostT": "122161133", "sL_LossRatio": "0.871846734667879", "sL_AssetLoss": "217437.3", "sL_BldgLoss": "189572", "sL_StrLoss": "153470.6", "sL_NStrLoss": "36101.4", "sL_ContLoss": "27865.3", "geom_point": "0101000020E6100000C236E2C9EE235FC07CF85BD0B5A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.556760264, 49.340337155000093 ], [ -124.556692181999949, 49.338179133000082 ], [ -124.55627937099996, 49.33818469400007 ], [ -124.55623683499999, 49.336835928000028 ], [ -124.557062429999945, 49.336824808000138 ], [ -124.557053916999934, 49.33655505500014 ], [ -124.558705095999954, 49.336532795000039 ], [ -124.558679535, 49.335723536000025 ], [ -124.556615595999958, 49.335751357000085 ], [ -124.55659007, 49.334942098000042 ], [ -124.555764505999917, 49.334953215000048 ], [ -124.555756000999921, 49.334683462000086 ], [ -124.554517661999981, 49.334700128000101 ], [ -124.554526159999938, 49.334969881000056 ], [ -124.554113376999965, 49.334975433000082 ], [ -124.554121871999925, 49.335245186000073 ], [ -124.552883517999987, 49.335261836000079 ], [ -124.552875030999985, 49.334992081000067 ], [ -124.551636681999952, 49.335008716000047 ], [ -124.551645162999975, 49.335278469000059 ], [ -124.55205794799997, 49.335272925000083 ], [ -124.552083400999933, 49.336082186000091 ], [ -124.550845023999926, 49.33609881400011 ], [ -124.550853500999935, 49.3363685670001 ], [ -124.55044070699995, 49.336374105000097 ], [ -124.550449181999966, 49.336643859000105 ], [ -124.54921079199994, 49.33666046900008 ], [ -124.549227726999973, 49.337199977000132 ], [ -124.548814925999977, 49.337205510000111 ], [ -124.548823393999911, 49.337475264000034 ], [ -124.547892465999965, 49.337487738000114 ], [ -124.547584979999939, 49.337491856000057 ], [ -124.547581428999976, 49.337378614000116 ], [ -124.547576518999932, 49.337222102000105 ], [ -124.547151572999951, 49.337227792000128 ], [ -124.54675091599999, 49.337233155000057 ], [ -124.546746289999973, 49.337085589000033 ], [ -124.546742458999972, 49.336963402000052 ], [ -124.54641065, 49.336967842000114 ], [ -124.54632965899999, 49.336968926000083 ], [ -124.546328724999924, 49.336939102000045 ], [ -124.546321206999963, 49.336699172000039 ], [ -124.545613453999977, 49.336708640000076 ], [ -124.545495609999989, 49.336710216000064 ], [ -124.545494380999955, 49.336670971000068 ], [ -124.545487160999983, 49.336440461000073 ], [ -124.544795006999905, 49.33644971700005 ], [ -124.544661569999946, 49.336451500000059 ], [ -124.544660177999958, 49.336407062000049 ], [ -124.544653124999968, 49.33618174500004 ], [ -124.544240329999965, 49.336187262000131 ], [ -124.544172802999981, 49.334029226000098 ], [ -124.544585579999975, 49.334023709000093 ], [ -124.544568693999963, 49.333484200000044 ], [ -124.546219779999944, 49.333462119000075 ], [ -124.546202877999917, 49.332922610000061 ], [ -124.546615644, 49.332917086000066 ], [ -124.546607191999968, 49.332647331000075 ], [ -124.547432719999961, 49.332636280000031 ], [ -124.547424260999961, 49.332366526000101 ], [ -124.548249784999882, 49.332355468000095 ], [ -124.54824132399996, 49.332085714000073 ], [ -124.549812386999974, 49.332064654000114 ], [ -124.551130635, 49.332046966000043 ], [ -124.55112215699998, 49.331777211000038 ], [ -124.551534912999927, 49.331771671000126 ], [ -124.551526433999953, 49.331501916000036 ], [ -124.552764693999961, 49.331485284000038 ], [ -124.552739234999962, 49.33067602200002 ], [ -124.554802964999922, 49.330648273000087 ], [ -124.554811464999943, 49.33091802600012 ], [ -124.556049707999989, 49.330901360000027 ], [ -124.556041202999921, 49.330631606000082 ], [ -124.556866694999911, 49.330620488000065 ], [ -124.556858185999943, 49.330350734000099 ], [ -124.557270928999955, 49.33034517300004 ], [ -124.557262417999979, 49.330075419000039 ], [ -124.557675159999945, 49.330069857000083 ], [ -124.557666645999959, 49.329800103000068 ], [ -124.558079384000024, 49.329794538000073 ], [ -124.55807086899992, 49.329524786000022 ], [ -124.558896340000018, 49.329513652000053 ], [ -124.558879301999966, 49.328974146000142 ], [ -124.559704763999932, 49.32896300700002 ], [ -124.559696240999969, 49.3286932540001 ], [ -124.560108968999927, 49.328687682000094 ], [ -124.560091916999937, 49.328148177000081 ], [ -124.561330088999938, 49.328131454000037 ], [ -124.561321557999975, 49.327861701000117 ], [ -124.561734277999918, 49.32785612400005 ], [ -124.561725743999943, 49.327586371000137 ], [ -124.562551181999964, 49.327575212000049 ], [ -124.562542642000011, 49.327305459000044 ], [ -124.562955358999915, 49.32729987700003 ], [ -124.562938277999947, 49.326760372000123 ], [ -124.564589123999951, 49.326738031000097 ], [ -124.564572024999975, 49.326198526000063 ], [ -124.564159317999966, 49.326204113000124 ], [ -124.564125129999965, 49.325125103000097 ], [ -124.563299733999969, 49.325136273000034 ], [ -124.56328264899993, 49.324596768000106 ], [ -124.562869954999954, 49.324602351000046 ], [ -124.562810179999985, 49.322714081000122 ], [ -124.561572145999946, 49.32273081900005 ], [ -124.561555081, 49.322191313000076 ], [ -124.561142408999942, 49.322196889000061 ], [ -124.561133878999968, 49.321927136000056 ], [ -124.560721206999972, 49.321932711000045 ], [ -124.560695625999969, 49.321123451000069 ], [ -124.559870296000014, 49.321134596 ], [ -124.55981064299999, 49.319246323000094 ], [ -124.560223290999943, 49.319240752000113 ], [ -124.560189198999979, 49.318161739000118 ], [ -124.560601838999943, 49.31815616500014 ], [ -124.560550688, 49.316537645000089 ], [ -124.560138062, 49.316543217000081 ], [ -124.560129538999945, 49.31627346500008 ], [ -124.558891663999958, 49.316290172000059 ], [ -124.558849087999988, 49.314941404000045 ], [ -124.558436473999933, 49.314946970000037 ], [ -124.558419449, 49.314407462000098 ], [ -124.558006840999951, 49.314413026000167 ], [ -124.557981309999931, 49.31360376500006 ], [ -124.558393913999936, 49.31359820100004 ], [ -124.558385401999956, 49.313328447000053 ], [ -124.559623202999887, 49.313311746000089 ], [ -124.55960616599998, 49.312772238000143 ], [ -124.557955780999976, 49.312794504000088 ], [ -124.55788771099995, 49.310636471000066 ], [ -124.557475132999983, 49.310642033000136 ], [ -124.557483638999926, 49.310911788000027 ], [ -124.556245896999926, 49.31092846600005 ], [ -124.556237396999961, 49.310658712000105 ], [ -124.555824818999938, 49.310664268000032 ], [ -124.555816322999988, 49.310394514000095 ], [ -124.55540374499995, 49.310400068000028 ], [ -124.555395250999979, 49.310130314000105 ], [ -124.554982676999941, 49.310135868000025 ], [ -124.554965690999936, 49.309596359000103 ], [ -124.554553121999945, 49.30960191 ], [ -124.55452765199999, 49.308792647000082 ], [ -124.554940215999949, 49.308787095000078 ], [ -124.554889268999943, 49.307168568000094 ], [ -124.555301817999947, 49.307163015000071 ], [ -124.555284832, 49.306623506000101 ], [ -124.55569737799999, 49.306617953000099 ], [ -124.555680387, 49.306078443000033 ], [ -124.554030223999945, 49.306100651000044 ], [ -124.554004765999949, 49.305291386000064 ], [ -124.554417302, 49.305285836000039 ], [ -124.554408812999938, 49.305016082000051 ], [ -124.556884001999961, 49.304982755000097 ], [ -124.556875501, 49.304713 ], [ -124.557700559, 49.304701880000067 ], [ -124.557692053999986, 49.304432125000133 ], [ -124.558517107999961, 49.304420999000065 ], [ -124.558508595999911, 49.304151245000114 ], [ -124.558921120999969, 49.304145680000012 ], [ -124.558912608999918, 49.303875925000114 ], [ -124.559737650999963, 49.303864790000077 ], [ -124.559703585999912, 49.3027857740001 ], [ -124.560116098999941, 49.302780204000037 ], [ -124.560107579999922, 49.302510450000028 ], [ -124.560520090999901, 49.302504879000033 ], [ -124.560511570999935, 49.302235125000045 ], [ -124.560924076999939, 49.302229552000028 ], [ -124.560915555999927, 49.301959798000034 ], [ -124.561328060999983, 49.301954225000038 ], [ -124.561319536999932, 49.301684471000101 ], [ -124.562144540999924, 49.301673319000024 ], [ -124.562136012999957, 49.301403565000093 ], [ -124.562548513999957, 49.301397987000058 ], [ -124.562539981999976, 49.301128233000036 ], [ -124.562952479999936, 49.301122653000114 ], [ -124.562943945999976, 49.300852900000109 ], [ -124.565006422999915, 49.300824981000112 ], [ -124.565014966999982, 49.301094734000095 ], [ -124.565839960999966, 49.301083555000041 ], [ -124.565831411999966, 49.300813802000015 ], [ -124.566243906999944, 49.300808211000053 ], [ -124.566235354999932, 49.300538457000115 ], [ -124.567885322999985, 49.300516078000051 ], [ -124.56791956299999, 49.30159509100011 ], [ -124.568332063999947, 49.301589493000023 ], [ -124.568340626999955, 49.301859246000042 ], [ -124.568753128999958, 49.301853645000087 ], [ -124.56880452099999, 49.30347216300008 ], [ -124.568392005999939, 49.303477764000021 ], [ -124.56840913299996, 49.304017270000067 ], [ -124.567584090999944, 49.304028466000034 ], [ -124.567592650999956, 49.304298220000106 ], [ -124.568417696999973, 49.304287023000036 ], [ -124.568426259999939, 49.304556775000037 ], [ -124.568838786999933, 49.304551175 ], [ -124.568847351999963, 49.304820927000037 ], [ -124.569672406999942, 49.304809721000112 ], [ -124.569655265999984, 49.304270216000148 ], [ -124.570480310999983, 49.304259004000116 ], [ -124.570471735999917, 49.3039892520001 ], [ -124.571709293999945, 49.303972423000047 ], [ -124.571717877999959, 49.304242176000088 ], [ -124.572130399999949, 49.304236563000138 ], [ -124.572156153, 49.305045821000057 ], [ -124.573393737999979, 49.305028973000042 ], [ -124.57338514599999, 49.304759221000047 ], [ -124.574210197999975, 49.30474798200008 ], [ -124.574193006999977, 49.304208478000071 ], [ -124.573780485999947, 49.304214099000049 ], [ -124.573746113999945, 49.303135089000108 ], [ -124.574983650999926, 49.303118226000024 ], [ -124.57500085, 49.303657730000062 ], [ -124.575413366999953, 49.303652105000019 ], [ -124.575421967999986, 49.303921858000116 ], [ -124.575834487999941, 49.303916231000116 ], [ -124.57584309100001, 49.304185984000071 ], [ -124.576255611999954, 49.304180357000128 ], [ -124.576264219999956, 49.304450109000065 ], [ -124.577089264999969, 49.304438849000107 ], [ -124.577097875999954, 49.30470860100008 ], [ -124.577510401, 49.3047029700001 ], [ -124.577579315, 49.306860983000085 ], [ -124.57592914199995, 49.306883503000059 ], [ -124.575911930999936, 49.306344 ], [ -124.575086852999974, 49.306355251000099 ], [ -124.57507825299993, 49.30608549800008 ], [ -124.574253176999918, 49.306096743000069 ], [ -124.574244581999935, 49.305826991000025 ], [ -124.573419511999987, 49.305838230000091 ], [ -124.573428102999983, 49.30610798200005 ], [ -124.572603027999918, 49.306119215000066 ], [ -124.572628791999989, 49.306928473000056 ], [ -124.570978612999966, 49.306950922000034 ], [ -124.570961455999935, 49.306411416000088 ], [ -124.570548915999922, 49.30641702500003 ], [ -124.570531763999966, 49.305877520000045 ], [ -124.570119227999939, 49.305883127000072 ], [ -124.570136374999962, 49.306422633000096 ], [ -124.568486212999971, 49.306445046000107 ], [ -124.56847764699998, 49.306175293000059 ], [ -124.567240029999979, 49.306192087000056 ], [ -124.567231471999946, 49.305922334000115 ], [ -124.566406398999945, 49.305933523000078 ], [ -124.566414951999917, 49.306203276000119 ], [ -124.565589871999961, 49.306214459000088 ], [ -124.565598420999962, 49.306484212000065 ], [ -124.566423505999978, 49.306473030000042 ], [ -124.566432058999951, 49.306742783000068 ], [ -124.56725714599996, 49.306731593000087 ], [ -124.567274264, 49.30727110000003 ], [ -124.569749549999955, 49.307237496000063 ], [ -124.569758122999929, 49.307507248000036 ], [ -124.570995769999982, 49.307490427000062 ], [ -124.571004348999935, 49.307760179000084 ], [ -124.572654555, 49.307737729000088 ], [ -124.572671730999929, 49.30827723500007 ], [ -124.575559616999982, 49.30823788900004 ], [ -124.575576825999974, 49.308777393000085 ], [ -124.575989384999943, 49.308771766000049 ], [ -124.57600659799999, 49.309311270000102 ], [ -124.576419161999951, 49.309305641000044 ], [ -124.576470817999933, 49.310924151000023 ], [ -124.570282150999972, 49.311008425000054 ], [ -124.570273573999941, 49.310738673000053 ], [ -124.567798112999952, 49.31077228900002 ], [ -124.567763863999943, 49.309693278000061 ], [ -124.567351295999941, 49.309698876000027 ], [ -124.567368413999986, 49.310238381000062 ], [ -124.566955841999985, 49.310243977000049 ], [ -124.566964399999932, 49.310513731000057 ], [ -124.564076368999935, 49.310552861000062 ], [ -124.564067826999974, 49.310283108000114 ], [ -124.563655253999954, 49.310288693000111 ], [ -124.563646713000011, 49.31001894000007 ], [ -124.561996424999933, 49.310041261000087 ], [ -124.561987893999955, 49.309771508000054 ], [ -124.561575322999914, 49.309777085000086 ], [ -124.561600909999925, 49.310586345000033 ], [ -124.559538021999941, 49.31061420800004 ], [ -124.559555057999916, 49.311153716000028 ], [ -124.559967638999979, 49.311148146000029 ], [ -124.559984679999943, 49.311687653 ], [ -124.560397265999939, 49.311682082000097 ], [ -124.560405789999976, 49.311951836000055 ], [ -124.560818375999972, 49.311946263000081 ], [ -124.56082690199996, 49.312216016000029 ], [ -124.561239492999945, 49.312210443 ], [ -124.561299184999925, 49.314098717 ], [ -124.561711791999954, 49.314093141000122 ], [ -124.561754444999963, 49.315441908000082 ], [ -124.562167061, 49.315436329000157 ], [ -124.562260932999962, 49.318403613000044 ], [ -124.561848290999976, 49.318409192000061 ], [ -124.561882421999911, 49.31948820500002 ], [ -124.563533024999941, 49.319465881000077 ], [ -124.563534011999977, 49.319497009000038 ], [ -124.563601365999887, 49.321623905000074 ], [ -124.564426700999931, 49.321612733000073 ], [ -124.564443796999953, 49.322152238000108 ], [ -124.56485647, 49.322146650000029 ], [ -124.564865018999939, 49.322416403000027 ], [ -124.565277694999907, 49.322410812000093 ], [ -124.565303351999944, 49.323220070000048 ], [ -124.565716033999948, 49.323214479000093 ], [ -124.56573314299996, 49.323753984000085 ], [ -124.56697120099993, 49.323737201000071 ], [ -124.566988326999962, 49.324276705000095 ], [ -124.567401014999973, 49.324271109000101 ], [ -124.567418143999973, 49.324810612000071 ], [ -124.56783084099996, 49.324805013000052 ], [ -124.567839406999894, 49.325074766000135 ], [ -124.568252102999949, 49.325069165000087 ], [ -124.568294951999974, 49.326417925000044 ], [ -124.567882243999975, 49.326423526000077 ], [ -124.56788541, 49.326523234 ], [ -124.567037789999944, 49.326545727000045 ], [ -124.567044725999935, 49.32697462400008 ], [ -124.566661239999959, 49.326979823000052 ], [ -124.566669800999989, 49.327249576000064 ], [ -124.566257086999926, 49.327255171000097 ], [ -124.566274205, 49.327794674000067 ], [ -124.565861484999942, 49.327800268000097 ], [ -124.565878598999944, 49.328339773000025 ], [ -124.567066539999985, 49.328323669000056 ], [ -124.567096557999932, 49.330179927000103 ], [ -124.56633396899997, 49.331032282000095 ], [ -124.56513868399999, 49.331048478000056 ], [ -124.565121575999981, 49.330508973000086 ], [ -124.564708831999951, 49.330514564000069 ], [ -124.564700282999951, 49.330244811000092 ], [ -124.5642875399999, 49.330250400000139 ], [ -124.564261893999969, 49.329441142000022 ], [ -124.563436424999978, 49.329452313000097 ], [ -124.56342788100001, 49.329182562 ], [ -124.562603016999986, 49.329193719000074 ], [ -124.562602416999979, 49.329193727000089 ], [ -124.56260242899998, 49.329194098000066 ], [ -124.562610956999919, 49.329463479000069 ], [ -124.562198221999921, 49.329469060000079 ], [ -124.562206760999956, 49.329738813000056 ], [ -124.561794022999976, 49.329744393000048 ], [ -124.561802557999968, 49.33001414500005 ], [ -124.56138981899997, 49.330019723000085 ], [ -124.56139835299993, 49.330289475 ], [ -124.560985608999985, 49.330295051000071 ], [ -124.560994141999956, 49.330564804000112 ], [ -124.560581397999925, 49.330570379000065 ], [ -124.560589926999967, 49.330840131000109 ], [ -124.559351686999932, 49.330856848000124 ], [ -124.559368732999957, 49.33139635400002 ], [ -124.559781482999938, 49.331390783000082 ], [ -124.559798533, 49.331930288000137 ], [ -124.561036799999926, 49.331913567000058 ], [ -124.561045331999964, 49.332183320000063 ], [ -124.561458089000013, 49.332177743000088 ], [ -124.561509296999972, 49.333796258000106 ], [ -124.56027098499996, 49.333812985000108 ], [ -124.560279511999937, 49.334082737000095 ], [ -124.561517832999954, 49.334066010000129 ], [ -124.561534903, 49.334605515000057 ], [ -124.56194768099999, 49.334599937000064 ], [ -124.561956218, 49.334869689000108 ], [ -124.562368997999926, 49.33486410900008 ], [ -124.562403159, 49.335943118000102 ], [ -124.561577580999952, 49.335954278000074 ], [ -124.561586118, 49.336224030000075 ], [ -124.561173325999931, 49.336229607000071 ], [ -124.561181860999966, 49.336499360000083 ], [ -124.560356272999982, 49.336510511000071 ], [ -124.560373331999941, 49.337050015000031 ], [ -124.559960533999941, 49.337055589000094 ], [ -124.559969062000022, 49.337325341000032 ], [ -124.559143459, 49.337336484000069 ], [ -124.559160505999941, 49.337875989000132 ], [ -124.558747700999973, 49.337881558000042 ], [ -124.558790307999971, 49.339230320000098 ], [ -124.558377490999987, 49.339235889000044 ], [ -124.558386010999982, 49.339505641000109 ], [ -124.557973190999931, 49.339511208000019 ], [ -124.557998743999946, 49.340320466000058 ], [ -124.557594088999977, 49.340325921000094 ], [ -124.556760264, 49.340337155000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10908083", "BldgCostT": "7313333", "sL_LossRatio": "0.728605637193653", "sL_AssetLoss": "24049.91", "sL_BldgLoss": "17522.9", "sL_StrLoss": "11768.4", "sL_NStrLoss": "5754.5", "sL_ContLoss": "6527.01", "geom_point": "0101000020E61000004921148440235FC092A6E6174AA84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.548121365999947, 49.312924816000077 ], [ -124.553616628, 49.312998498000034 ], [ -124.553504327999917, 49.31659743800008 ], [ -124.548008639000031, 49.316523751000084 ], [ -124.548121365999947, 49.312924816000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.926564495530013", "sL_AssetLoss": "1566", "sL_BldgLoss": "1451", "sL_StrLoss": "1070", "sL_NStrLoss": "381", "sL_ContLoss": "115", "geom_point": "0101000020E61000005C43803E97205FC0EAC9C2F8E5A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.509041966999987, 49.296711869000049 ], [ -124.508827460999953, 49.295365328000109 ], [ -124.509128966999967, 49.295361389000057 ], [ -124.509137205999934, 49.295631150000069 ], [ -124.509549667999948, 49.295625762000093 ], [ -124.509582629999969, 49.296704805000083 ], [ -124.509041966999987, 49.296711869000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.987527373131486", "sL_AssetLoss": "1575.45", "sL_BldgLoss": "1555.8", "sL_StrLoss": "1383.1", "sL_NStrLoss": "172.7", "sL_ContLoss": "19.65", "geom_point": "0101000020E6100000A019E5159F235FC06C214C7A2DAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.55371179199993, 49.34480914300012 ], [ -124.559210844999939, 49.344882537000046 ], [ -124.559190319999942, 49.34554240100011 ], [ -124.553696395, 49.345302277000073 ], [ -124.55371179199993, 49.34480914300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994515539305302", "sL_AssetLoss": "519.65", "sL_BldgLoss": "516.8", "sL_StrLoss": "491", "sL_NStrLoss": "25.8", "sL_ContLoss": "2.85", "geom_point": "0101000020E610000058D83EAA02235FC0CB0DC8567EAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.54640574199999, 49.339396714000038 ], [ -124.547644202999962, 49.339380134000081 ], [ -124.547669587999962, 49.340189396000021 ], [ -124.546431105999943, 49.340205976000043 ], [ -124.54640574199999, 49.339396714000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6065834", "BldgCostT": "4183334", "sL_LossRatio": "0.987258477483285", "sL_AssetLoss": "3923.2988", "sL_BldgLoss": "3873.31", "sL_StrLoss": "3625.05", "sL_NStrLoss": "248.26", "sL_ContLoss": "49.9888", "geom_point": "0101000020E6100000A3A0A1A0502E5FC02942C9688DAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.719643529999985, 49.356968891000065 ], [ -124.719646559999887, 49.356859305000121 ], [ -124.719137417999889, 49.356853279000063 ], [ -124.71914051, 49.356741475000035 ], [ -124.718785412999964, 49.356737270000103 ], [ -124.718787479999932, 49.356662534000108 ], [ -124.718384300999929, 49.356657759000029 ], [ -124.718384988999915, 49.356632892000029 ], [ -124.717866281999946, 49.356626746000117 ], [ -124.717929480999942, 49.354343869000061 ], [ -124.719446696999938, 49.354437791000052 ], [ -124.720296697999956, 49.354712705000082 ], [ -124.721383887999977, 49.354724090000083 ], [ -124.723398091999968, 49.355242491000077 ], [ -124.724881592999907, 49.35512998800003 ], [ -124.726082714999976, 49.35519399000011 ], [ -124.726706098999955, 49.354932012000091 ], [ -124.727269714999963, 49.35488780100011 ], [ -124.72791839199999, 49.354950512000094 ], [ -124.729172575999968, 49.354571695000104 ], [ -124.729717532999956, 49.354510238000067 ], [ -124.729650048999972, 49.356970537000109 ], [ -124.725147475999975, 49.356917575000104 ], [ -124.725144273999959, 49.357033849000025 ], [ -124.719643529999985, 49.356968891000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.978540123923228", "sL_AssetLoss": "661.7", "sL_BldgLoss": "647.5", "sL_StrLoss": "564", "sL_NStrLoss": "83.5", "sL_ContLoss": "14.2", "geom_point": "0101000020E6100000F107EA315D315FC0F0CE6FD293A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.77089914599999, 49.294654782000123 ], [ -124.77096121299995, 49.292312663000068 ], [ -124.771593163999924, 49.292390326000046 ], [ -124.771799791999953, 49.294665025 ], [ -124.77089914599999, 49.294654782000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994031509329127", "sL_AssetLoss": "557.93", "sL_BldgLoss": "554.6", "sL_StrLoss": "527", "sL_NStrLoss": "27.6", "sL_ContLoss": "3.33", "geom_point": "0101000020E610000014C0DE0E1E295FC01DE1F6FC97AB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.642275441999971, 49.341042566000034 ], [ -124.642266461999924, 49.340772824000062 ], [ -124.640202396999911, 49.340802139000061 ], [ -124.640180167, 49.340133413000025 ], [ -124.64019840399996, 49.340133601000034 ], [ -124.641830008999946, 49.340299016000102 ], [ -124.643392302999985, 49.340295214000065 ], [ -124.644727394999933, 49.340259324000044 ], [ -124.644743338999945, 49.340737596000039 ], [ -124.643963226, 49.340748698000091 ], [ -124.643917712999951, 49.340749346000102 ], [ -124.64392670299999, 49.341019086000159 ], [ -124.642275441999971, 49.341042566000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671417", "BldgCostT": "3221667", "sL_LossRatio": "0.965706175912893", "sL_AssetLoss": "5157.78", "sL_BldgLoss": "4980.9", "sL_StrLoss": "4315.9", "sL_NStrLoss": "665", "sL_ContLoss": "176.88", "geom_point": "0101000020E61000005BF488B0652A5FC03C6C223397AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.659758892999903, 49.34653079000001 ], [ -124.665258312999967, 49.346598793000069 ], [ -124.665165696999949, 49.349812703000012 ], [ -124.665154602999962, 49.350197664000021 ], [ -124.664615065999953, 49.35019100500007 ], [ -124.659654756999942, 49.350129657000082 ], [ -124.659758892999903, 49.34653079000001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97073249", "BldgCostT": "64769999", "sL_LossRatio": "0.912206364099165", "sL_AssetLoss": "147029.45", "sL_BldgLoss": "134121.2", "sL_StrLoss": "109864.3", "sL_NStrLoss": "24256.9", "sL_ContLoss": "12908.25", "geom_point": "0101000020E6100000D1E8718CA2265FC03AE2C1FD1DB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.608637141999949, 49.392965722000028 ], [ -124.60844709, 49.392769711000064 ], [ -124.608429087999923, 49.392693386000104 ], [ -124.608470492999942, 49.392095406000038 ], [ -124.608597001999939, 49.390177393000059 ], [ -124.608599859999941, 49.390019056000071 ], [ -124.608610020999933, 49.389451917000052 ], [ -124.608619069999989, 49.388947410000135 ], [ -124.608633719999929, 49.388133103000044 ], [ -124.608755993999978, 49.387389076 ], [ -124.608765099999957, 49.387333691 ], [ -124.608690047999957, 49.38734186500006 ], [ -124.60835771499994, 49.387377999000101 ], [ -124.607916967, 49.387381864000091 ], [ -124.607848081, 49.387382470000013 ], [ -124.60777519, 49.387383106000051 ], [ -124.606043164999932, 49.387302333000051 ], [ -124.605978469999968, 49.38890170700008 ], [ -124.605817469999934, 49.389539532000072 ], [ -124.605508278999963, 49.390252848000038 ], [ -124.604583279999972, 49.392120099000124 ], [ -124.604155287999944, 49.392890410000099 ], [ -124.602077513999959, 49.392645999000109 ], [ -124.601396485999928, 49.392565889000089 ], [ -124.601081700999913, 49.392502401000101 ], [ -124.600024282999954, 49.392172360000082 ], [ -124.599951140999934, 49.392149553000131 ], [ -124.599777221999943, 49.392095252000047 ], [ -124.598930899000024, 49.39183108600011 ], [ -124.598405166999953, 49.391551599000088 ], [ -124.598203108999925, 49.391406778000032 ], [ -124.597727145999983, 49.390950858000096 ], [ -124.597521128999972, 49.39075347199999 ], [ -124.597353593999955, 49.390592984000065 ], [ -124.597118510999934, 49.390400090000071 ], [ -124.596852166999966, 49.390262059000094 ], [ -124.596461203999979, 49.390059395000016 ], [ -124.596295661999974, 49.390001883000089 ], [ -124.594601606999944, 49.389413413000057 ], [ -124.592331671999929, 49.388682611000071 ], [ -124.592236302999964, 49.388651897000088 ], [ -124.591817288999948, 49.388444803000056 ], [ -124.59177164299993, 49.388412115000051 ], [ -124.591638088999957, 49.388316494 ], [ -124.59144418399994, 49.388128590000079 ], [ -124.591193985999965, 49.387664504000028 ], [ -124.591076992999945, 49.387212088000069 ], [ -124.591078904999918, 49.387138118000095 ], [ -124.591099903000014, 49.386325002000063 ], [ -124.591011295999962, 49.385843200000032 ], [ -124.590989316999966, 49.385803907000124 ], [ -124.590854605999965, 49.385563106000099 ], [ -124.590815329999899, 49.385524906000043 ], [ -124.590640691999951, 49.385355109000017 ], [ -124.590367403999977, 49.385200406000052 ], [ -124.589782279999923, 49.384937972000074 ], [ -124.589666822999959, 49.384886184000074 ], [ -124.588106388999933, 49.384186297000035 ], [ -124.587582036999947, 49.383936340000098 ], [ -124.587183943999918, 49.383746567000074 ], [ -124.586912474999949, 49.383617201000035 ], [ -124.586640773999974, 49.38347940700001 ], [ -124.58629334799997, 49.38330318100008 ], [ -124.585688506999972, 49.382996392000081 ], [ -124.584994828999982, 49.382620485000075 ], [ -124.581548096999953, 49.380752498000042 ], [ -124.581154610999945, 49.380519064000062 ], [ -124.580718085999933, 49.380260107000019 ], [ -124.579736707, 49.379810702000043 ], [ -124.576097490999985, 49.378428206000095 ], [ -124.575532298999974, 49.378098603000119 ], [ -124.575332122999967, 49.377941102000065 ], [ -124.57523857599989, 49.377866723000082 ], [ -124.575132767999932, 49.377782563000054 ], [ -124.574521997999966, 49.37729679600006 ], [ -124.574929689000015, 49.377017792000068 ], [ -124.575062187999919, 49.375262708000044 ], [ -124.579092942, 49.376034946000111 ], [ -124.579019733999985, 49.378419733 ], [ -124.578883132999977, 49.378417940000091 ], [ -124.578863180999988, 49.379067768000013 ], [ -124.579678432999955, 49.379078467000163 ], [ -124.579680471999907, 49.379011984000101 ], [ -124.585183628999971, 49.379084054000089 ], [ -124.585174408999961, 49.379385671000094 ], [ -124.585776425999981, 49.379393538000073 ], [ -124.585774994999909, 49.379440373000101 ], [ -124.590547019999946, 49.379502615000028 ], [ -124.59054891599996, 49.379440355000057 ], [ -124.591351785999947, 49.379450806000136 ], [ -124.591390857999926, 49.37816697300007 ], [ -124.592896050999926, 49.378186550000123 ], [ -124.592899897, 49.378060035000082 ], [ -124.591691675999954, 49.378044322000086 ], [ -124.59173034, 49.376773527000047 ], [ -124.594743653999942, 49.3775574820001 ], [ -124.598374765999949, 49.379062547000075 ], [ -124.598373189999961, 49.379114609000048 ], [ -124.598504479999974, 49.379116309000082 ], [ -124.598664375999959, 49.379182578000034 ], [ -124.598634338999929, 49.38017465900009 ], [ -124.599409153999957, 49.380184687000053 ], [ -124.599343120999904, 49.382366778000133 ], [ -124.599300250999974, 49.383783314000034 ], [ -124.594400170999904, 49.383719801000076 ], [ -124.594392155, 49.383983749000016 ], [ -124.594959354999929, 49.383991113000079 ], [ -124.594885724999969, 49.3864162590001 ], [ -124.595113495, 49.386419215000053 ], [ -124.595109158999904, 49.386562061000106 ], [ -124.59555178799998, 49.386567805000055 ], [ -124.595545863999945, 49.386763009000049 ], [ -124.595984183999988, 49.386768694000047 ], [ -124.595979396999923, 49.386926475000038 ], [ -124.596496573999943, 49.386933181000046 ], [ -124.596490450999951, 49.387135104000016 ], [ -124.597027667999924, 49.38714206700007 ], [ -124.597023936999946, 49.38726513100012 ], [ -124.597435058999949, 49.38727045800011 ], [ -124.597430017999926, 49.387436762000057 ], [ -124.597922850999936, 49.387443145000077 ], [ -124.59791614, 49.387664667000102 ], [ -124.598484843999969, 49.387672032000083 ], [ -124.598479947999948, 49.387833682000064 ], [ -124.599015831999978, 49.387840618000062 ], [ -124.599007401, 49.388119161000084 ], [ -124.599528630999913, 49.388125905000045 ], [ -124.599523785999978, 49.388286001000019 ], [ -124.599886827999953, 49.388290697000123 ], [ -124.599862665999979, 49.389089260000041 ], [ -124.600471940999967, 49.389097137000064 ], [ -124.600564334999959, 49.38604192300005 ], [ -124.600880417999946, 49.386046008000037 ], [ -124.600909433999931, 49.385086221000066 ], [ -124.600856797999953, 49.385085541000109 ], [ -124.600905649999916, 49.383469615000074 ], [ -124.60096558399999, 49.381486921000111 ], [ -124.605597029999956, 49.381546679000074 ], [ -124.605581306999952, 49.381064210000055 ], [ -124.606545990999933, 49.381249201000081 ], [ -124.607377833999976, 49.381408712000059 ], [ -124.608663292999964, 49.381655196000061 ], [ -124.608859557999921, 49.381698260000093 ], [ -124.60890912799999, 49.381709136000083 ], [ -124.60891836399999, 49.381991941000109 ], [ -124.608316510999884, 49.382000317000049 ], [ -124.608314724, 49.382059732000101 ], [ -124.6103327899999, 49.382085656000093 ], [ -124.610333410999928, 49.382064961 ], [ -124.610348036999937, 49.382069186000102 ], [ -124.610664491999941, 49.382160614000071 ], [ -124.611431483999979, 49.382426994000141 ], [ -124.612022205999935, 49.382694596000078 ], [ -124.613406116999954, 49.381894296000063 ], [ -124.613517816999945, 49.381796698000109 ], [ -124.613587584999976, 49.381671611000101 ], [ -124.613825719999923, 49.380981597000094 ], [ -124.614050788999961, 49.380680289000111 ], [ -124.614814625999912, 49.379994401000076 ], [ -124.615489695999955, 49.379144394000086 ], [ -124.615659496999953, 49.379033192000058 ], [ -124.616083203999935, 49.378857696000097 ], [ -124.616640745999973, 49.378665125000097 ], [ -124.616689498999975, 49.378648298000094 ], [ -124.616889801999932, 49.378579091000034 ], [ -124.617153503999987, 49.378412415000113 ], [ -124.617301995999981, 49.378291523000058 ], [ -124.617477901, 49.378148294000084 ], [ -124.61751066399998, 49.378103349000099 ], [ -124.617650106999974, 49.37791198700009 ], [ -124.617757792999953, 49.377764902000074 ], [ -124.617769873999976, 49.377733392000025 ], [ -124.618075945999948, 49.376936576000105 ], [ -124.620079972, 49.376962144000117 ], [ -124.620051099999955, 49.37793059900013 ], [ -124.621290177999967, 49.37794639000002 ], [ -124.621307217999941, 49.377374316000108 ], [ -124.623568602999981, 49.377403097000098 ], [ -124.625101157999936, 49.377422575000097 ], [ -124.626810243999955, 49.377444271000051 ], [ -124.626785724999976, 49.378270756000141 ], [ -124.626766652999962, 49.378913629000124 ], [ -124.62670347699995, 49.381042939000096 ], [ -124.626263209999976, 49.381037352000071 ], [ -124.62411837499999, 49.38101011200007 ], [ -124.624063178999961, 49.382866799000055 ], [ -124.62115085, 49.382829743000038 ], [ -124.621067920999963, 49.385613167000081 ], [ -124.620129941999949, 49.385601216000076 ], [ -124.62009664699994, 49.386717888000064 ], [ -124.615179200999989, 49.386655099000066 ], [ -124.615157488, 49.387380709000062 ], [ -124.61497573199992, 49.387378384 ], [ -124.614916594999954, 49.389354210000128 ], [ -124.612609779999957, 49.389324674000072 ], [ -124.611019227999989, 49.389304280000069 ], [ -124.611006461999963, 49.389729606000074 ], [ -124.610999185999944, 49.389729513000105 ], [ -124.610966422999965, 49.390821004000045 ], [ -124.610351074999969, 49.390813108000017 ], [ -124.609793799, 49.390805954000044 ], [ -124.609782896999917, 49.39116883300013 ], [ -124.609217894999958, 49.39116157700002 ], [ -124.609256158, 49.392332588000095 ], [ -124.609273866999985, 49.392874564000131 ], [ -124.609856825999955, 49.392882050000011 ], [ -124.609816147999979, 49.394236029000076 ], [ -124.60808157699995, 49.394187394000078 ], [ -124.60823900099993, 49.39370619800011 ], [ -124.608360540999968, 49.39339618300005 ], [ -124.608440195999947, 49.393192998000053 ], [ -124.60855878199996, 49.393114277000031 ], [ -124.608637141999949, 49.392965722000028 ] ], [ [ -124.601192701999963, 49.389650045000081 ], [ -124.601179390999931, 49.390090366000038 ], [ -124.601264527999902, 49.390091466000086 ], [ -124.601277836999927, 49.389651146000091 ], [ -124.601192701999963, 49.389650045000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7588334", "BldgCostT": "5233334", "sL_LossRatio": "0.955826782368396", "sL_AssetLoss": "9553.3", "sL_BldgLoss": "9131.3", "sL_StrLoss": "7824", "sL_NStrLoss": "1307.3", "sL_ContLoss": "422", "geom_point": "0101000020E610000015ECD86BEE275FC0227E0FA848B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.620444210999921, 49.396576059000033 ], [ -124.62031598799993, 49.394347354000104 ], [ -124.620071806999988, 49.394345426000029 ], [ -124.620063803999955, 49.394102120000042 ], [ -124.620056550999934, 49.394345305000073 ], [ -124.619347408999914, 49.394339702000089 ], [ -124.619016238999947, 49.394329252000048 ], [ -124.618996639, 49.394328273000056 ], [ -124.618071041999954, 49.394282208000092 ], [ -124.617790832999916, 49.39427469 ], [ -124.617760541999957, 49.394273986000023 ], [ -124.617787907999954, 49.394235890000083 ], [ -124.618446682999917, 49.393704693000061 ], [ -124.618922402999914, 49.392682112000067 ], [ -124.619396290999958, 49.39241429000009 ], [ -124.62011821, 49.392277757000031 ], [ -124.620083541999989, 49.393440248000083 ], [ -124.620455306999958, 49.393435037000131 ], [ -124.620419805999916, 49.392356070000083 ], [ -124.621659552999944, 49.392338683000091 ], [ -124.62165067199993, 49.392068941000034 ], [ -124.622063917999938, 49.392063142000012 ], [ -124.62205503499996, 49.391793401000015 ], [ -124.622468278999989, 49.391787601000061 ], [ -124.622459392999957, 49.391517859000061 ], [ -124.622872634999979, 49.39151205800006 ], [ -124.62286374599995, 49.391242317000042 ], [ -124.626169659999931, 49.391195855000049 ], [ -124.626151848999925, 49.39065637200008 ], [ -124.626565081999956, 49.390650558000054 ], [ -124.626556175, 49.390380816000047 ], [ -124.627382636999954, 49.390369184000072 ], [ -124.627373724999956, 49.390099443000111 ], [ -124.628200183000018, 49.39008780500005 ], [ -124.628191266, 49.389818063000121 ], [ -124.630670623999904, 49.389783112000082 ], [ -124.630706347999961, 49.390862075 ], [ -124.63029311299999, 49.390867904000075 ], [ -124.630310970999972, 49.391407386000125 ], [ -124.629897729999954, 49.391413213000085 ], [ -124.629906656999978, 49.391682954000018 ], [ -124.627427202999939, 49.391717890000038 ], [ -124.62741828899999, 49.391448148000045 ], [ -124.626178567999972, 49.391465596000046 ], [ -124.626240915999972, 49.393353785000023 ], [ -124.62582766, 49.393359599000071 ], [ -124.625836563999911, 49.393629339000043 ], [ -124.625423305000012, 49.39363515100009 ], [ -124.625432207999893, 49.393904893000105 ], [ -124.62501894599994, 49.393910703000138 ], [ -124.625027846999942, 49.394180444000057 ], [ -124.624614584999961, 49.394186254000076 ], [ -124.62462348299999, 49.394455995000087 ], [ -124.624210215999952, 49.394461802000137 ], [ -124.624219113999956, 49.394731544000081 ], [ -124.624164266999941, 49.394732314000088 ], [ -124.624146266999929, 49.395337693000059 ], [ -124.621945719999971, 49.39575651500008 ], [ -124.620919287999968, 49.396004990000066 ], [ -124.620525163999957, 49.396083951000058 ], [ -124.620476001, 49.396093803000042 ], [ -124.620444210999921, 49.396576059000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.963631326253763", "sL_AssetLoss": "5919.38", "sL_BldgLoss": "5704.1", "sL_StrLoss": "4851", "sL_NStrLoss": "853.1", "sL_ContLoss": "215.28", "geom_point": "0101000020E6100000D5A29111082B5FC051299FB33FB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.669687009999961, 49.394353579000068 ], [ -124.669677863999965, 49.394083843000061 ], [ -124.669264610999974, 49.394089812000054 ], [ -124.66920975299999, 49.392471399000044 ], [ -124.669622993999965, 49.392465432000037 ], [ -124.669613848999944, 49.392195697000098 ], [ -124.670027087999983, 49.392189727000087 ], [ -124.67000879299998, 49.391650256000069 ], [ -124.670422027999976, 49.391644285000119 ], [ -124.67041287799999, 49.391374550000087 ], [ -124.67082611, 49.391368576000062 ], [ -124.670816957999989, 49.391098841 ], [ -124.671230185999917, 49.391092868 ], [ -124.671221032999981, 49.390823132000101 ], [ -124.672047484999936, 49.390811180000057 ], [ -124.672038329999978, 49.390541446000022 ], [ -124.673691221999917, 49.390517524000103 ], [ -124.673700389999979, 49.390787258000103 ], [ -124.674113612999946, 49.390781274000091 ], [ -124.674122783999934, 49.391051009000144 ], [ -124.674536010999987, 49.391045023000039 ], [ -124.674554352999962, 49.391584492000078 ], [ -124.674967584999962, 49.39157850600008 ], [ -124.674976758999918, 49.391848240000122 ], [ -124.675389992999925, 49.39184225200011 ], [ -124.67540834499998, 49.392381720000046 ], [ -124.675821585, 49.392375730000012 ], [ -124.675849119999967, 49.393184933000072 ], [ -124.675435873999959, 49.393190923000063 ], [ -124.675445050999926, 49.393460658000102 ], [ -124.674618554999967, 49.393472635000109 ], [ -124.674627728999951, 49.393742370000048 ], [ -124.673801227999888, 49.393754341000012 ], [ -124.673810396999968, 49.394024075000075 ], [ -124.672157385999938, 49.394048001000108 ], [ -124.672166544999953, 49.394317735000058 ], [ -124.669687009999961, 49.394353579000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27027334", "BldgCostT": "17958334", "sL_LossRatio": "0.845435720251238", "sL_AssetLoss": "43703.5", "sL_BldgLoss": "36948.5", "sL_StrLoss": "28561.6", "sL_NStrLoss": "8386.9", "sL_ContLoss": "6755", "geom_point": "0101000020E61000004288B710DC275FC0E0C7C9AB10AD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.624232568999957, 49.357364020000055 ], [ -124.624277158999973, 49.355863022000058 ], [ -124.619918797999944, 49.355807512000055 ], [ -124.619963386999942, 49.354311185000086 ], [ -124.619169712999934, 49.354322308000064 ], [ -124.619178570999935, 49.354592051000033 ], [ -124.618352702999971, 49.354603621000066 ], [ -124.618361556999929, 49.354873364000056 ], [ -124.618774489999907, 49.354867581000107 ], [ -124.618783345999987, 49.355137325 ], [ -124.619196284999973, 49.355131539000126 ], [ -124.619222854999975, 49.355940772000061 ], [ -124.618779153999981, 49.355946988000028 ], [ -124.618528898999955, 49.355754699000073 ], [ -124.618520632999932, 49.35574735100009 ], [ -124.618165693999941, 49.355431513000035 ], [ -124.617179697000012, 49.354361295000068 ], [ -124.61582901099996, 49.352884196000083 ], [ -124.615582317999937, 49.352584783000118 ], [ -124.615329900999981, 49.352278385 ], [ -124.614904486999976, 49.351554692000107 ], [ -124.614763190999923, 49.351129908000068 ], [ -124.61469303299998, 49.350637071000101 ], [ -124.614646086999954, 49.350307494000035 ], [ -124.614658329999912, 49.349003307 ], [ -124.614658694999932, 49.348964808000026 ], [ -124.614830956, 49.34828241600011 ], [ -124.614883691999978, 49.34807364800006 ], [ -124.614905093999965, 49.347988862000129 ], [ -124.615492726999932, 49.345661016000072 ], [ -124.615535216999973, 49.345492714000088 ], [ -124.6172120899999, 49.345016733000115 ], [ -124.61726146599996, 49.346522850000078 ], [ -124.616848599, 49.346528628000037 ], [ -124.616866283999954, 49.347068117000077 ], [ -124.616453411999942, 49.3470738930001 ], [ -124.61646225199992, 49.347343638000083 ], [ -124.615636503999966, 49.347355185000026 ], [ -124.615645339999958, 49.347624931000077 ], [ -124.616883965999975, 49.347607606000075 ], [ -124.616919334999949, 49.34868658400012 ], [ -124.61650645099999, 49.348692361000118 ], [ -124.616515291999974, 49.348962106000066 ], [ -124.616102403999946, 49.348967881000071 ], [ -124.616120080999906, 49.349507370000076 ], [ -124.616532970999941, 49.349501595000049 ], [ -124.616568335999958, 49.350580572000098 ], [ -124.615742534999981, 49.350592121000027 ], [ -124.615751370999945, 49.350861866000095 ], [ -124.615338467999948, 49.35086763900005 ], [ -124.615347302999979, 49.351137383000065 ], [ -124.615760207999969, 49.351131611000064 ], [ -124.61577788299995, 49.351671100000054 ], [ -124.617016610999912, 49.35165377400007 ], [ -124.617078520999982, 49.353541985000035 ], [ -124.618730219999961, 49.353518861000055 ], [ -124.618721365999932, 49.353249117000047 ], [ -124.619995565999929, 49.353231262000051 ], [ -124.620026034999981, 49.352208715000081 ], [ -124.62436249799994, 49.352263948000058 ], [ -124.624363149999908, 49.352241971000062 ], [ -124.62093695599998, 49.352198348000044 ], [ -124.621002320999978, 49.350002965000073 ], [ -124.618778907999953, 49.349974598000074 ], [ -124.618886218999947, 49.346375771000055 ], [ -124.623299459999913, 49.346432033000049 ], [ -124.622035103999934, 49.347434998000033 ], [ -124.622661016999956, 49.348443294000091 ], [ -124.623703596999974, 49.349579798000065 ], [ -124.62408271399994, 49.349834791000113 ], [ -124.624554993999979, 49.349972901000086 ], [ -124.624802398, 49.349960110000097 ], [ -124.625456389999925, 49.349743600000089 ], [ -124.626063, 49.349762098000078 ], [ -124.626728788999941, 49.349483011000068 ], [ -124.627955901999925, 49.349547097 ], [ -124.62833539899999, 49.349784887000091 ], [ -124.628140493999965, 49.350119598000106 ], [ -124.628146301999962, 49.350263386000108 ], [ -124.628258986999953, 49.350334692000047 ], [ -124.628561301999966, 49.350365997000054 ], [ -124.629189689999976, 49.350213611000086 ], [ -124.629233807999952, 49.350257687000088 ], [ -124.62866369799994, 49.350553998000045 ], [ -124.628558987999952, 49.35066360200004 ], [ -124.628658112999943, 49.350751896000077 ], [ -124.629591805999951, 49.350657908000116 ], [ -124.629911905999947, 49.350665121000098 ], [ -124.62985294899994, 49.352658137000034 ], [ -124.62551644199999, 49.35260312500008 ], [ -124.625481522999962, 49.353779744000086 ], [ -124.629650302999892, 49.353832630000063 ], [ -124.629619413999961, 49.354011996000061 ], [ -124.629691592000015, 49.354101714000144 ], [ -124.629830837999975, 49.354134522000017 ], [ -124.629745396999937, 49.357022378000067 ], [ -124.629733221999942, 49.357433827000101 ], [ -124.624232568999957, 49.357364020000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.992747804585835", "sL_AssetLoss": "1569.18", "sL_BldgLoss": "1557.8", "sL_StrLoss": "1472", "sL_NStrLoss": "85.8", "sL_ContLoss": "11.38", "geom_point": "0101000020E61000004C0F33C9822A5FC0B8C9872423A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.664046805999959, 49.303957475000061 ], [ -124.667031569999892, 49.303994335000084 ], [ -124.666928092999925, 49.307593437000016 ], [ -124.663049236999925, 49.307545519000016 ], [ -124.661433296999945, 49.30752551500013 ], [ -124.661537199999927, 49.303926418000053 ], [ -124.664046805999959, 49.303957475000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.990001179141436", "sL_AssetLoss": "2009.937", "sL_BldgLoss": "1989.84", "sL_StrLoss": "1875", "sL_NStrLoss": "114.84", "sL_ContLoss": "20.097", "geom_point": "0101000020E61000006DFFEB587C2F5FC0D3C202EBFAAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.73851145499999, 49.353388440000046 ], [ -124.738624108999929, 49.353153185000089 ], [ -124.739028119999887, 49.353272806000049 ], [ -124.739240475000017, 49.353034893000043 ], [ -124.740096591999972, 49.352725911000064 ], [ -124.740454116999899, 49.35267459600005 ], [ -124.74102131399998, 49.352378395000081 ], [ -124.74117240399994, 49.35198100900007 ], [ -124.741120486999989, 49.351701906000059 ], [ -124.739562709999959, 49.350853104000095 ], [ -124.739985493999981, 49.349955809000036 ], [ -124.739379006999926, 49.349515694000033 ], [ -124.7393841199999, 49.349410341000073 ], [ -124.743864989, 49.349462466000048 ], [ -124.74385446399998, 49.349850552000106 ], [ -124.744027703999976, 49.349852563000042 ], [ -124.743930108999919, 49.353451490000126 ], [ -124.73851145499999, 49.353388440000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.990410845664214", "sL_AssetLoss": "1209.7", "sL_BldgLoss": "1198.1", "sL_StrLoss": "1120", "sL_NStrLoss": "78.1", "sL_ContLoss": "11.6", "geom_point": "0101000020E610000038CF01175E275FC08C14468AB3AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.615324143999942, 49.363189156000018 ], [ -124.615844798999959, 49.363195818000094 ], [ -124.61573721299996, 49.366794551000062 ], [ -124.615231843999965, 49.366788085000081 ], [ -124.61432188299996, 49.365420403000037 ], [ -124.614311101999988, 49.365360779000099 ], [ -124.61422502, 49.364885498000035 ], [ -124.614202890999962, 49.364200198000113 ], [ -124.614248713999928, 49.364044170000035 ], [ -124.614303985, 49.363855892000046 ], [ -124.614454379999984, 49.363658001000061 ], [ -124.614549298999989, 49.363574899000071 ], [ -124.614629610999913, 49.363504610000064 ], [ -124.614792148999982, 49.363409084000089 ], [ -124.614885893999968, 49.363353991000039 ], [ -124.615167741999954, 49.363247983000115 ], [ -124.615324143999942, 49.363189156000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.960658887227237", "sL_AssetLoss": "1832.18", "sL_BldgLoss": "1760.1", "sL_StrLoss": "1431.5", "sL_NStrLoss": "328.6", "sL_ContLoss": "72.08", "geom_point": "0101000020E6100000AD57685290285FC02C5789C363AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.632704962999966, 49.363847129000128 ], [ -124.632687097999934, 49.363307646000116 ], [ -124.63227409299995, 49.363313479000048 ], [ -124.632247301999911, 49.362504253000104 ], [ -124.632660297999948, 49.362498420000115 ], [ -124.632633498999937, 49.361689195000075 ], [ -124.633459479999942, 49.361677524000051 ], [ -124.6334435589999, 49.361197004000054 ], [ -124.633441605999934, 49.361138040000093 ], [ -124.633641295999908, 49.361135217000033 ], [ -124.633854589999927, 49.361132202000093 ], [ -124.633852136999948, 49.361058157000059 ], [ -124.63384565299998, 49.360862461000039 ], [ -124.634409374999933, 49.360854490000101 ], [ -124.63508460099996, 49.360844939000117 ], [ -124.635138276999953, 49.362463387000076 ], [ -124.634725279999941, 49.362469229000112 ], [ -124.634761058, 49.363548196000075 ], [ -124.634348052999954, 49.363554036000075 ], [ -124.634356995999937, 49.363823779000015 ], [ -124.632704962999966, 49.363847129000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44480167", "BldgCostT": "29676667", "sL_LossRatio": "0.958888115451517", "sL_AssetLoss": "56184.97", "sL_BldgLoss": "53875.1", "sL_StrLoss": "46108.2", "sL_NStrLoss": "7766.9", "sL_ContLoss": "2309.87", "geom_point": "0101000020E61000001CC2295A962A5FC0E612162E0EAB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.657676396999989, 49.344600834000119 ], [ -124.657667333999939, 49.344331095 ], [ -124.657254494999947, 49.344337017000043 ], [ -124.657248473, 49.344157792000019 ], [ -124.657247516999959, 49.344129331000062 ], [ -124.657035918999938, 49.344126704000089 ], [ -124.657045913999937, 49.343781972000102 ], [ -124.656362813999948, 49.343773488000096 ], [ -124.656370495999951, 49.343508676000091 ], [ -124.656016618999942, 49.343504280000055 ], [ -124.656025402999958, 49.343201495000123 ], [ -124.655977240999917, 49.343200897000024 ], [ -124.655988810999958, 49.343545553000062 ], [ -124.65459544199993, 49.343565512000097 ], [ -124.654337475999967, 49.343569206000062 ], [ -124.654334456999948, 49.343479154000086 ], [ -124.65433379599996, 49.34345945400004 ], [ -124.654301294999968, 49.342490247000029 ], [ -124.654714120999969, 49.342484335000051 ], [ -124.654696027999975, 49.341944856000048 ], [ -124.65490209599993, 49.341941906000073 ], [ -124.65497870199999, 49.339303351000083 ], [ -124.656259958999925, 49.339319278000097 ], [ -124.656256753999941, 49.339223804000078 ], [ -124.656669551999983, 49.339217886000093 ], [ -124.656660494999954, 49.338948146000092 ], [ -124.657073288999968, 49.338942228000143 ], [ -124.657046112999979, 49.338133010000028 ], [ -124.657458901999917, 49.338127089000061 ], [ -124.657449839999984, 49.337857350000064 ], [ -124.655798696999966, 49.337881021000044 ], [ -124.655789646999963, 49.337611280000083 ], [ -124.655376861999954, 49.337617195000085 ], [ -124.655385910999925, 49.337886935000064 ], [ -124.653734765999971, 49.33791057600007 ], [ -124.653715659999989, 49.337340515000044 ], [ -124.653732686999945, 49.337342664000033 ], [ -124.654231463999977, 49.337213846000083 ], [ -124.65485705399999, 49.336885015000099 ], [ -124.655259917999928, 49.336602011000117 ], [ -124.65556898399997, 49.336470843000029 ], [ -124.656672222999958, 49.336122747000076 ], [ -124.657218515999929, 49.336014305000027 ], [ -124.657573717000034, 49.335998023000109 ], [ -124.657883860000013, 49.335877652000143 ], [ -124.658416303999957, 49.335391922 ], [ -124.658659912999951, 49.335051140000111 ], [ -124.659102980999975, 49.334708308000145 ], [ -124.659264471999961, 49.334448400000056 ], [ -124.65932963399996, 49.333289941000054 ], [ -124.659776795999946, 49.332328806000078 ], [ -124.659961332999956, 49.332128569000098 ], [ -124.660010252999939, 49.332005876000039 ], [ -124.65995544399999, 49.331713575000087 ], [ -124.659915149999946, 49.33161535000005 ], [ -124.659779515999929, 49.331284774000032 ], [ -124.659757002999982, 49.331016259000123 ], [ -124.659815617999953, 49.33084417700011 ], [ -124.66047295499996, 49.32988836100003 ], [ -124.66066545799994, 49.329268792000057 ], [ -124.660640553999926, 49.329083976000057 ], [ -124.660703751999904, 49.328942541000089 ], [ -124.66082681499995, 49.328822572000043 ], [ -124.661097021, 49.328654902000075 ], [ -124.661345004999987, 49.328351061000063 ], [ -124.66148229400001, 49.327881112000036 ], [ -124.661790290999974, 49.327594214000079 ], [ -124.662529792999948, 49.326503466000119 ], [ -124.663693264999921, 49.325630392000107 ], [ -124.66400015, 49.325189554000126 ], [ -124.664442346999948, 49.325079633000044 ], [ -124.664786651999947, 49.324994063000062 ], [ -124.664846365999949, 49.324983323 ], [ -124.66484923499999, 49.324610787000076 ], [ -124.664946094999905, 49.324441323000059 ], [ -124.665107462999956, 49.324148968000067 ], [ -124.665896975999928, 49.323425049000036 ], [ -124.665898186, 49.323425064000105 ], [ -124.665898194999926, 49.323424780000074 ], [ -124.666518990999975, 49.323432439000022 ], [ -124.666520171999977, 49.323391395000087 ], [ -124.667047933999967, 49.323397904000032 ], [ -124.667049653999968, 49.323338109000147 ], [ -124.667490232999938, 49.323343539000035 ], [ -124.667492841999987, 49.323252819000089 ], [ -124.667872178999971, 49.323257495000071 ], [ -124.667879740999922, 49.322994429000026 ], [ -124.669049580999953, 49.323008838000078 ], [ -124.669066126999908, 49.322432656000117 ], [ -124.669536478999959, 49.322438447000103 ], [ -124.669545224999979, 49.322133768000114 ], [ -124.675041763999957, 49.322201276000044 ], [ -124.674989000999929, 49.324046859000099 ], [ -124.674033897999976, 49.324114895000079 ], [ -124.672742415999977, 49.32377310700015 ], [ -124.67201221, 49.324539393000038 ], [ -124.67176247799992, 49.324939596000021 ], [ -124.671667610999961, 49.324949499000098 ], [ -124.671500600999963, 49.324898288000107 ], [ -124.671506685999958, 49.324654698000103 ], [ -124.67111182, 49.32437269800004 ], [ -124.670919709999936, 49.324421209000064 ], [ -124.670964415999919, 49.324932401000041 ], [ -124.670835719999943, 49.325213 ], [ -124.669685615, 49.325328408000097 ], [ -124.668183311999968, 49.325314103000082 ], [ -124.66641488099998, 49.325510700000038 ], [ -124.665437899999958, 49.325893797000077 ], [ -124.664271725999981, 49.326873604000092 ], [ -124.663591513999961, 49.327909007000123 ], [ -124.66345169899995, 49.328629712000144 ], [ -124.663502486999931, 49.32892590100009 ], [ -124.663945692000013, 49.329810395000059 ], [ -124.663850206999982, 49.330684782000056 ], [ -124.664365010999973, 49.331244496000082 ], [ -124.664299805, 49.331317200000058 ], [ -124.663913300999965, 49.331304402000121 ], [ -124.663438726, 49.331553603 ], [ -124.662273702, 49.332893795000125 ], [ -124.661989305999924, 49.333427904000089 ], [ -124.661587289999943, 49.333802392000059 ], [ -124.66151971799998, 49.334020725000123 ], [ -124.661450537999926, 49.334021720000067 ], [ -124.661457294999948, 49.334222420000074 ], [ -124.661268025999945, 49.334833954000047 ], [ -124.661065021999917, 49.334836872000018 ], [ -124.661071390999936, 49.335026042000074 ], [ -124.660695843, 49.335381918000081 ], [ -124.660670418000038, 49.335382284000104 ], [ -124.660671192, 49.335405277000064 ], [ -124.660406663999936, 49.33565594300007 ], [ -124.660266728999915, 49.335657955000059 ], [ -124.660270985999915, 49.335784509000028 ], [ -124.659878307, 49.336156603000077 ], [ -124.659872257999936, 49.336203360000127 ], [ -124.659872107999888, 49.336203362000035 ], [ -124.659872138999916, 49.336204280000068 ], [ -124.659767341999952, 49.337014477000018 ], [ -124.659486550999986, 49.337018509000046 ], [ -124.65949845099999, 49.337372344000116 ], [ -124.659328225999957, 49.337560522000096 ], [ -124.659091911999909, 49.337563914000015 ], [ -124.659100270999929, 49.337812513000095 ], [ -124.658833541, 49.338107363000105 ], [ -124.658697262999908, 49.338109320000051 ], [ -124.658702695999949, 49.338270900000047 ], [ -124.657720297999958, 49.339543403000036 ], [ -124.657416990999948, 49.340312490000052 ], [ -124.65765900699995, 49.340570283000083 ], [ -124.658639500999982, 49.341077292000072 ], [ -124.659123101999981, 49.341528797000052 ], [ -124.659638898999987, 49.341765199000051 ], [ -124.660582299999987, 49.341921795000069 ], [ -124.661351395999958, 49.341929009000062 ], [ -124.662517406999925, 49.341777998000062 ], [ -124.663063892999972, 49.341248190000044 ], [ -124.663083190999956, 49.339789803000073 ], [ -124.66297141599999, 49.339305605000057 ], [ -124.662776698999906, 49.339281385000085 ], [ -124.662453513999935, 49.339447996000082 ], [ -124.66236607899999, 49.339296999000084 ], [ -124.663233105999936, 49.338096389000086 ], [ -124.664559895999986, 49.337448401000117 ], [ -124.665056804999921, 49.337063886000116 ], [ -124.665479596999958, 49.336939991000058 ], [ -124.666342899999975, 49.337233289000054 ], [ -124.667243878999969, 49.337391397000054 ], [ -124.668133495999925, 49.337684788000089 ], [ -124.668743180999968, 49.337774502000059 ], [ -124.66980588199999, 49.337875704000055 ], [ -124.671014883999973, 49.337777393000088 ], [ -124.672020996999962, 49.337808698000082 ], [ -124.674196729999949, 49.338023094000093 ], [ -124.67416492199996, 49.339134598000108 ], [ -124.67706314199998, 49.339170091 ], [ -124.677008491999985, 49.339957902000087 ], [ -124.676883199999921, 49.340346702000069 ], [ -124.67762769399999, 49.340380902000042 ], [ -124.679163102999951, 49.340786274000074 ], [ -124.679105821999883, 49.342795237000061 ], [ -124.67360683599999, 49.342727938000102 ], [ -124.673684106999985, 49.340028987000089 ], [ -124.673629877999957, 49.34002832300007 ], [ -124.673639861999931, 49.340322692000136 ], [ -124.672814257999974, 49.340334647000049 ], [ -124.672823403999985, 49.340604384000095 ], [ -124.672410597999942, 49.340610359000053 ], [ -124.67242888499996, 49.34114983400007 ], [ -124.673254503999928, 49.341137882000119 ], [ -124.673281947999925, 49.341947093000108 ], [ -124.671217864999946, 49.341976964000018 ], [ -124.671208727999911, 49.341707226000025 ], [ -124.670383098999977, 49.341719164000047 ], [ -124.670364832999965, 49.341179688000075 ], [ -124.668713588999978, 49.341203545000035 ], [ -124.668722712999923, 49.341473283000042 ], [ -124.667897085999968, 49.341485203000104 ], [ -124.667906203999934, 49.341754940000108 ], [ -124.667493388999972, 49.341760898000054 ], [ -124.667511622999939, 49.342300374000068 ], [ -124.667098802999959, 49.342306331000032 ], [ -124.667107917999928, 49.342576069000067 ], [ -124.666695094999952, 49.342582024000066 ], [ -124.666704207, 49.342851762000066 ], [ -124.666316526999935, 49.342857353000092 ], [ -124.666308237999928, 49.343145254000028 ], [ -124.666014244999957, 49.343141629000087 ], [ -124.666001949999924, 49.343568561000133 ], [ -124.665732721999987, 49.343565240000011 ], [ -124.665725653999957, 49.343810667000078 ], [ -124.665535924999944, 49.343808326000051 ], [ -124.665262540999933, 49.343804953000109 ], [ -124.665257943999933, 49.343964478000053 ], [ -124.664824258999914, 49.343959126000065 ], [ -124.664820832999951, 49.344077990000109 ], [ -124.664335127999919, 49.344071992000117 ], [ -124.66433411599999, 49.344107101000098 ], [ -124.663853575999909, 49.344101166000044 ], [ -124.663853496999963, 49.34410391400008 ], [ -124.663021409999928, 49.344093631000113 ], [ -124.663016072999966, 49.344278534000061 ], [ -124.661587012999973, 49.344260860000084 ], [ -124.660555811, 49.344248094000093 ], [ -124.660557207999929, 49.344289604000025 ], [ -124.660144369999927, 49.344295536000061 ], [ -124.660153445999953, 49.344565275 ], [ -124.657676396999989, 49.344600834000119 ] ], [ [ -124.666649532999941, 49.341233333000069 ], [ -124.666640420999954, 49.340963595000048 ], [ -124.667053229999908, 49.340957641000031 ], [ -124.667044116999932, 49.340687902000091 ], [ -124.667456922999975, 49.340681946000089 ], [ -124.667447807999935, 49.340412208 ], [ -124.667860610999966, 49.340406250000086 ], [ -124.667847847999965, 49.340028687000036 ], [ -124.666718236999927, 49.340014767000042 ], [ -124.666720442999932, 49.339938111000059 ], [ -124.666588812999976, 49.339936488000063 ], [ -124.666551444999968, 49.341234749000073 ], [ -124.666649532999941, 49.341233333000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998421930655124", "sL_AssetLoss": "110.895", "sL_BldgLoss": "110.72", "sL_StrLoss": "108", "sL_NStrLoss": "2.72", "sL_ContLoss": "0.175", "geom_point": "0101000020E61000002BBC4F7EA02B5FC00FE40B209DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.681353625999961, 49.324288367000065 ], [ -124.682591627999955, 49.324270346000056 ], [ -124.682615545999909, 49.324972071000062 ], [ -124.682633074999913, 49.325486340000026 ], [ -124.682637598, 49.325619029000073 ], [ -124.682224919999967, 49.325625038000048 ], [ -124.682234110999943, 49.325894774000091 ], [ -124.681139156999919, 49.325910711000084 ], [ -124.681023497999931, 49.325712897000095 ], [ -124.680574170999989, 49.325648058000084 ], [ -124.680561470999976, 49.325274997000093 ], [ -124.680546656999951, 49.324839848000067 ], [ -124.680959330999954, 49.324833845000065 ], [ -124.680955408999978, 49.324718708000042 ], [ -124.680950144999912, 49.32456410800004 ], [ -124.681362813999968, 49.324558104000047 ], [ -124.681353625999961, 49.324288367000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14986417", "BldgCostT": "10071667", "sL_LossRatio": "0.990070066888537", "sL_AssetLoss": "9431.3022", "sL_BldgLoss": "9337.65", "sL_StrLoss": "8891.32", "sL_NStrLoss": "446.33", "sL_ContLoss": "93.6522", "geom_point": "0101000020E610000092BAE854872C5FC0B9E21C5466AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.69910984499991, 49.352026073000047 ], [ -124.699119203999913, 49.351692924000062 ], [ -124.698756752999927, 49.351688565000067 ], [ -124.69876122, 49.351529560000088 ], [ -124.698336846999922, 49.351524454000128 ], [ -124.698342603999961, 49.351319611000029 ], [ -124.69802144799999, 49.351315747000115 ], [ -124.698027795999934, 49.35108987200006 ], [ -124.697767651999925, 49.35108674 ], [ -124.697793175999948, 49.350178892 ], [ -124.69735629099992, 49.350173633000054 ], [ -124.697365853999912, 49.349833621000123 ], [ -124.697200505999973, 49.349831629000079 ], [ -124.697208697999883, 49.349540394000073 ], [ -124.697020316999954, 49.349538125 ], [ -124.69702748499999, 49.349283299000028 ], [ -124.696821824999986, 49.349280821000036 ], [ -124.696829049999963, 49.349024 ], [ -124.69648152699996, 49.349019813000041 ], [ -124.696487644999976, 49.34880243700011 ], [ -124.696203030999953, 49.34879900600005 ], [ -124.696208558999913, 49.348602562000096 ], [ -124.695863128999946, 49.3485983980001 ], [ -124.695868779999941, 49.348397710000079 ], [ -124.695535428999946, 49.348393690000101 ], [ -124.695540961999981, 49.348197248000041 ], [ -124.695195527999957, 49.348193082000073 ], [ -124.695201024999903, 49.347997954000043 ], [ -124.694763123999934, 49.347992671000071 ], [ -124.694770073999962, 49.347746034000046 ], [ -124.694275019999978, 49.347740059000039 ], [ -124.694283426999974, 49.347441814000071 ], [ -124.693731117999903, 49.347435146000073 ], [ -124.693737139999925, 49.347221617000095 ], [ -124.693175410999942, 49.347214832000098 ], [ -124.693182498999988, 49.346963584000079 ], [ -124.692730408999978, 49.346958121000092 ], [ -124.692736695999926, 49.346735361000079 ], [ -124.692260905999944, 49.346729609000143 ], [ -124.692279239999934, 49.346080144000041 ], [ -124.691505915999983, 49.346070792000049 ], [ -124.691515516999971, 49.345730889000052 ], [ -124.69135013099995, 49.345728888000103 ], [ -124.691360703999933, 49.345354636000124 ], [ -124.691058642999934, 49.345350981000088 ], [ -124.691059131999964, 49.345333694000068 ], [ -124.690577925999975, 49.345327870000055 ], [ -124.690583443999984, 49.345132661000058 ], [ -124.69014552099999, 49.345127358000099 ], [ -124.690155862999958, 49.344761606000063 ], [ -124.689829431999925, 49.344757652000055 ], [ -124.689834821999938, 49.344567065000092 ], [ -124.689354023999982, 49.344561240000068 ], [ -124.689362221999971, 49.344271515000095 ], [ -124.688785621999969, 49.344264526000096 ], [ -124.688796684999929, 49.343873671000068 ], [ -124.68824762499996, 49.343867014000111 ], [ -124.688323952999923, 49.341171354000046 ], [ -124.688391993999957, 49.341141399000072 ], [ -124.689096197999902, 49.34118548600005 ], [ -124.690005904999936, 49.341621295000095 ], [ -124.690880408999945, 49.3418250040001 ], [ -124.691370807999974, 49.342096985000062 ], [ -124.692598207999978, 49.342564195000108 ], [ -124.693319993999921, 49.343094006000157 ], [ -124.693974598999944, 49.343353201000106 ], [ -124.694385006999951, 49.343680687000059 ], [ -124.694710898999944, 49.344341599000046 ], [ -124.695997096999946, 49.34491549400007 ], [ -124.696662300999918, 49.345436805000062 ], [ -124.697442799999919, 49.345677512000037 ], [ -124.697783512999976, 49.345996504000084 ], [ -124.699270098999975, 49.346792613000062 ], [ -124.699865186999901, 49.347261194000104 ], [ -124.700182005, 49.347670008000065 ], [ -124.700468093999945, 49.348817904000022 ], [ -124.700942589999954, 49.349369010000018 ], [ -124.701899082999944, 49.349938694000045 ], [ -124.702469787999974, 49.350551095000036 ], [ -124.703675, 49.35111800500006 ], [ -124.704467398999952, 49.351385687000054 ], [ -124.70462675499995, 49.351492085000075 ], [ -124.704609974999968, 49.352092074000048 ], [ -124.69910984499991, 49.352026073000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311833", "BldgCostT": "3663333", "sL_LossRatio": "0.964038338258517", "sL_AssetLoss": "6395.7", "sL_BldgLoss": "6165.7", "sL_StrLoss": "5462.1", "sL_NStrLoss": "703.6", "sL_ContLoss": "230", "geom_point": "0101000020E61000006033654C66275FC0BED5DFB746B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.614649988999986, 49.390986388000066 ], [ -124.620154622999962, 49.391056679000044 ], [ -124.620122340999927, 49.392139233000123 ], [ -124.620116815999964, 49.392143697000051 ], [ -124.618911476999983, 49.392375898000061 ], [ -124.618657312999986, 49.392605193000094 ], [ -124.618210804999975, 49.393654791000074 ], [ -124.617483825999955, 49.394231603000065 ], [ -124.617459473999958, 49.394269639000115 ], [ -124.617451895999963, 49.394269586000064 ], [ -124.616079210999928, 49.394411406000117 ], [ -124.610701222, 49.394260834000157 ], [ -124.610738323999925, 49.393025095000077 ], [ -124.611595509999916, 49.393036090000045 ], [ -124.611607111999959, 49.392649416000097 ], [ -124.613760365999951, 49.39267700500006 ], [ -124.613782867999987, 49.391925869000019 ], [ -124.61450231, 49.391935077000042 ], [ -124.614504543999914, 49.391860486000034 ], [ -124.61462377299992, 49.391862012000054 ], [ -124.61462522299999, 49.391813615000068 ], [ -124.614649988999986, 49.390986388000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.794572701498582", "sL_AssetLoss": "12345", "sL_BldgLoss": "9809", "sL_StrLoss": "5059", "sL_NStrLoss": "4750", "sL_ContLoss": "2536", "geom_point": "0101000020E6100000E55EFD2B6DF75EC00DA6E5302D884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.864580389999944, 49.06474431700007 ], [ -123.864542060999966, 49.06253919200001 ], [ -123.866522416999942, 49.062578536000018 ], [ -123.866485645999944, 49.063381973000105 ], [ -123.867746621000023, 49.063407006000062 ], [ -123.86766556699996, 49.065178951000057 ], [ -123.865569855999951, 49.064883725000158 ], [ -123.865254814999957, 49.06483934200002 ], [ -123.865243302999971, 49.06483769700003 ], [ -123.864580389999944, 49.06474431700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "0.767338129496403", "sL_AssetLoss": "20850", "sL_BldgLoss": "15999", "sL_StrLoss": "5249", "sL_NStrLoss": "10750", "sL_ContLoss": "4851", "geom_point": "0101000020E6100000676257E66FF75EC083F3B1D4DD864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.866227142999918, 49.056932786000054 ], [ -123.866222454999956, 49.056662952000103 ], [ -123.865811875999952, 49.056666033000049 ], [ -123.865797815999926, 49.055856528000092 ], [ -123.866208386999944, 49.055853447000104 ], [ -123.866203697999978, 49.055583612000063 ], [ -123.864971992999926, 49.055592849000043 ], [ -123.864939219999926, 49.053704004000096 ], [ -123.865349770999956, 49.053700926000097 ], [ -123.865335721999941, 49.05289142100002 ], [ -123.864663034, 49.052896464000113 ], [ -123.864797761999981, 49.050068496000051 ], [ -123.866518810999949, 49.050089018000058 ], [ -123.866529838999966, 49.050723498000139 ], [ -123.866119311999981, 49.050726580000088 ], [ -123.866128684999964, 49.051266250000019 ], [ -123.866539218999932, 49.05126316900008 ], [ -123.866548598999913, 49.051802838000086 ], [ -123.866959134999931, 49.051799756000094 ], [ -123.866987291000015, 49.053418765000124 ], [ -123.867808391999915, 49.053412594000058 ], [ -123.867860063999927, 49.056380779000094 ], [ -123.86744949, 49.056383865000036 ], [ -123.867458879999973, 49.056923535000045 ], [ -123.866227142999918, 49.056932786000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8896417", "BldgCostT": "5871667", "sL_LossRatio": "0.732435262757045", "sL_AssetLoss": "84032", "sL_BldgLoss": "61548", "sL_StrLoss": "27810", "sL_NStrLoss": "33738", "sL_ContLoss": "22484", "geom_point": "0101000020E610000029127E6FB4F85EC0C70855285A894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.881859645999938, 49.0768082250001 ], [ -123.881815975, 49.076467195000077 ], [ -123.881513436999924, 49.07489676700007 ], [ -123.88151172, 49.074887795000095 ], [ -123.881491815999979, 49.074782900000116 ], [ -123.881058809999971, 49.07252586300006 ], [ -123.880925697999899, 49.071832010000023 ], [ -123.880793383999929, 49.071466556000104 ], [ -123.880715497, 49.071251505000127 ], [ -123.880710514999976, 49.071240605000128 ], [ -123.880589293999932, 49.070976949000091 ], [ -123.88080228299998, 49.070970374000083 ], [ -123.881128795000038, 49.070960293000105 ], [ -123.881704913999968, 49.071045790000021 ], [ -123.883389705999932, 49.071104188000056 ], [ -123.883945398, 49.071478702000093 ], [ -123.884879314999978, 49.071713698000089 ], [ -123.88516449299999, 49.071604092000108 ], [ -123.88535170199998, 49.071269412000049 ], [ -123.885500298999915, 49.070377798000095 ], [ -123.885450219999939, 49.069118803000052 ], [ -123.885678898999956, 49.068865315000096 ], [ -123.88601759099997, 49.068745692000093 ], [ -123.886509810999939, 49.068670202000071 ], [ -123.886867606999942, 49.068729985000118 ], [ -123.887249508999929, 49.068672993000099 ], [ -123.88784149199995, 49.068831096000089 ], [ -123.88793958399998, 49.068982099000017 ], [ -123.888251001999947, 49.06887239700005 ], [ -123.889421207999987, 49.069232709000119 ], [ -123.890214085999972, 49.069171494000059 ], [ -123.890449906999947, 49.069251296000097 ], [ -123.890848558999934, 49.069271246000021 ], [ -123.890586184999947, 49.069266096000085 ], [ -123.890586109999973, 49.069267762000102 ], [ -123.88988444200001, 49.069253986000042 ], [ -123.889881285999977, 49.06932367900005 ], [ -123.88600500299998, 49.069247490000095 ], [ -123.885923506999973, 49.071044291000092 ], [ -123.890144048999943, 49.071127240000052 ], [ -123.890143414999898, 49.071141233000056 ], [ -123.890896721999965, 49.07115602 ], [ -123.890828307999953, 49.07266784300004 ], [ -123.891557133999953, 49.072662214000097 ], [ -123.891561961999983, 49.072932047000094 ], [ -123.892273012999951, 49.072926552000084 ], [ -123.892185197999979, 49.075272683000016 ], [ -123.892013737999932, 49.075222420000031 ], [ -123.892011322999977, 49.075087532000147 ], [ -123.89156536199998, 49.075090978000063 ], [ -123.890774891999953, 49.074859243000091 ], [ -123.890774317999927, 49.074827216000088 ], [ -123.890668431999956, 49.074828034000099 ], [ -123.889216012999952, 49.074402220000067 ], [ -123.888901542999974, 49.074310024000063 ], [ -123.887755021999922, 49.073973850000073 ], [ -123.886781085999957, 49.073688292000028 ], [ -123.886466812999956, 49.073651498000046 ], [ -123.886310588999947, 49.073651051000084 ], [ -123.885876111999934, 49.073649797000023 ], [ -123.885527482999919, 49.073705995000118 ], [ -123.884933521999955, 49.073926702000058 ], [ -123.884755418999944, 49.074034882000028 ], [ -123.88472249099999, 49.074054892000028 ], [ -123.884551910999946, 49.074197404000053 ], [ -123.884329975999918, 49.074506503000102 ], [ -123.884241000999978, 49.074720906000088 ], [ -123.884238923999987, 49.074795942000101 ], [ -123.884234585999977, 49.074952296000063 ], [ -123.884302005000023, 49.075244488000095 ], [ -123.884443513999912, 49.075440902000061 ], [ -123.88490580699991, 49.075893999000066 ], [ -123.884953488999955, 49.076047201000094 ], [ -123.884934176999977, 49.076112542000075 ], [ -123.884916392999926, 49.076172516000078 ], [ -123.884775708999911, 49.076288691000116 ], [ -123.884723880999957, 49.076310345000131 ], [ -123.884464795000014, 49.076418513000128 ], [ -123.884788483999969, 49.076824415000026 ], [ -123.884808640999935, 49.076849688000031 ], [ -123.884148392999947, 49.076895269000012 ], [ -123.883059494999941, 49.076782589000032 ], [ -123.882018173999967, 49.076915520000085 ], [ -123.881875707999953, 49.076933729000068 ], [ -123.881872621999932, 49.076909644000118 ], [ -123.881859645999938, 49.0768082250001 ] ], [ [ -123.88232536799994, 49.073272898000042 ], [ -123.882388253, 49.071888879000021 ], [ -123.881684894, 49.071875017000096 ], [ -123.881690613999965, 49.072198270000023 ], [ -123.882101316999979, 49.072195132000026 ], [ -123.882120428999954, 49.07327446400005 ], [ -123.88232536799994, 49.073272898000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.79305740987984", "sL_AssetLoss": "5992", "sL_BldgLoss": "4752", "sL_StrLoss": "2340", "sL_NStrLoss": "2412", "sL_ContLoss": "1240", "geom_point": "0101000020E6100000157E99BDE6F85EC09506C07095874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.885265184, 49.059495399000106 ], [ -123.885894197999988, 49.059408505000135 ], [ -123.887028802999936, 49.059435589000024 ], [ -123.888572610999987, 49.059209199000115 ], [ -123.889296599999952, 49.05842010000007 ], [ -123.889745816999962, 49.058219297000051 ], [ -123.891975178999971, 49.058135702000143 ], [ -123.891955752999962, 49.058697696000074 ], [ -123.891414514999965, 49.058687074000026 ], [ -123.891365101999966, 49.059779570000067 ], [ -123.889622962999979, 49.059745362000093 ], [ -123.889611345, 49.060002013000066 ], [ -123.887917187999946, 49.059968721000125 ], [ -123.88791597799991, 49.059995455000049 ], [ -123.884211552999972, 49.059922563000114 ], [ -123.884354088999956, 49.05988849200007 ], [ -123.885265184, 49.059495399000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21438250", "BldgCostT": "14785000", "sL_LossRatio": "0.818846612147626", "sL_AssetLoss": "122526", "sL_BldgLoss": "100330", "sL_StrLoss": "52820", "sL_NStrLoss": "47510", "sL_ContLoss": "22196", "geom_point": "0101000020E6100000060264E898F85EC00FF70D236F884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.884818100999937, 49.063268632000053 ], [ -123.88482289199996, 49.06353846600004 ], [ -123.88484196899999, 49.063538319000017 ], [ -123.884854217999958, 49.063268355000098 ], [ -123.884818100999937, 49.063268632000053 ], [ -123.884798938999936, 49.062189299000046 ], [ -123.884903212999944, 49.062188499000094 ], [ -123.884950141, 49.061154171000076 ], [ -123.89041444199999, 49.06126160600008 ], [ -123.890251545999945, 49.064861082000071 ], [ -123.889595659999941, 49.064848202000086 ], [ -123.889590225999967, 49.064968220000083 ], [ -123.889559661999954, 49.065643287000086 ], [ -123.891779891999988, 49.065686873000089 ], [ -123.892244385999945, 49.068494979000022 ], [ -123.892208076999935, 49.069297922000011 ], [ -123.891986245999973, 49.069293571000095 ], [ -123.89179148, 49.069231301000094 ], [ -123.889718606999963, 49.068996285000075 ], [ -123.887589900999927, 49.068561901000052 ], [ -123.886312593999932, 49.068428095000058 ], [ -123.885467782999939, 49.068570501000053 ], [ -123.88507427899998, 49.068842500000109 ], [ -123.885090994, 49.070534492000078 ], [ -123.884907193999965, 49.071003006000069 ], [ -123.88474579199999, 49.071112715000062 ], [ -123.884227212, 49.071223803000066 ], [ -123.883455300999913, 49.070924706 ], [ -123.880632520999981, 49.070829304000078 ], [ -123.880515293999949, 49.070815902000042 ], [ -123.880301083999953, 49.070349898000146 ], [ -123.8800933799999, 49.069897986000129 ], [ -123.87990420199999, 49.069486400000123 ], [ -123.879775893999977, 49.069208186000047 ], [ -123.879519899999934, 49.06882491100005 ], [ -123.878397813999925, 49.06758631900005 ], [ -123.87800950499999, 49.067157689000076 ], [ -123.87766181799995, 49.067285902000094 ], [ -123.87754089799995, 49.067326799000107 ], [ -123.877365994999963, 49.067323303000052 ], [ -123.877019673999939, 49.067218539000059 ], [ -123.876752943000028, 49.06713784300009 ], [ -123.875639486999958, 49.066801003000045 ], [ -123.875441803999962, 49.066787205000068 ], [ -123.875204913999966, 49.066823905000078 ], [ -123.875145758999949, 49.066867069000068 ], [ -123.873810274999926, 49.066262283000071 ], [ -123.874826497999962, 49.066123701000059 ], [ -123.875790286999944, 49.065566796000084 ], [ -123.876177003999913, 49.065042710000085 ], [ -123.876345283999953, 49.063701092000059 ], [ -123.876539695999952, 49.063070210000085 ], [ -123.877035695999922, 49.062436410000046 ], [ -123.877230062999914, 49.062361193000051 ], [ -123.88140010699999, 49.060747299000028 ], [ -123.88271229899999, 49.060417361000106 ], [ -123.882668647999949, 49.061378480000023 ], [ -123.881764290999925, 49.061360653000058 ], [ -123.881753323999988, 49.061602003000068 ], [ -123.88154466, 49.061597888000065 ], [ -123.88152753599999, 49.061974707000076 ], [ -123.881502980000036, 49.061974223000036 ], [ -123.881485055999974, 49.062368606000071 ], [ -123.879069644999959, 49.062320951000039 ], [ -123.879066600999977, 49.062387864000044 ], [ -123.879039993999967, 49.062972666000029 ], [ -123.879016991999947, 49.06297221100008 ], [ -123.878998544999916, 49.063377671000119 ], [ -123.879040996999947, 49.063378509000053 ], [ -123.878961484999977, 49.065126024000065 ], [ -123.87969477899999, 49.065140498000133 ], [ -123.879671741999942, 49.065646921000088 ], [ -123.880293187999911, 49.065659183000065 ], [ -123.880217755999936, 49.067317943000077 ], [ -123.883581489999955, 49.067384249000042 ], [ -123.883669848999943, 49.065438152000063 ], [ -123.88409889899999, 49.065446602000073 ], [ -123.884099511999949, 49.065433098000057 ], [ -123.884035135999937, 49.065433592000076 ], [ -123.88401120199994, 49.064084425000019 ], [ -123.88360056599997, 49.064087570000083 ], [ -123.883598222, 49.063955344000092 ], [ -123.883586212999944, 49.063278071000056 ], [ -123.884818100999937, 49.063268632000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72100894", "BldgCostT": "47841523", "sL_LossRatio": "0.734353679988163", "sL_AssetLoss": "608290", "sL_BldgLoss": "446700", "sL_StrLoss": "203600", "sL_NStrLoss": "243100", "sL_ContLoss": "161590", "geom_point": "0101000020E610000071B7887B2EF85EC0460C1A7EE0864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.8730823, 49.065932599000064 ], [ -123.870554592999923, 49.065360976000079 ], [ -123.870543015999885, 49.065362611000111 ], [ -123.870312398999943, 49.06537113100012 ], [ -123.86991163799999, 49.065385922000068 ], [ -123.86974991799994, 49.065391903000034 ], [ -123.86924883899998, 49.06537704900002 ], [ -123.869237662999979, 49.064736380000113 ], [ -123.870469592999896, 49.064727096000055 ], [ -123.870464878999911, 49.064457261 ], [ -123.870875519999956, 49.064454163000057 ], [ -123.870866088999961, 49.06391449500007 ], [ -123.870044815999933, 49.063920688000074 ], [ -123.870030682999968, 49.063111186000093 ], [ -123.87120291699992, 49.063102343 ], [ -123.871204377999931, 49.063070338000081 ], [ -123.871672820999919, 49.063079618000103 ], [ -123.871672853999925, 49.06307889100006 ], [ -123.871668482999937, 49.062828958000061 ], [ -123.87207911099992, 49.062825855000057 ], [ -123.872074386999927, 49.062556021000056 ], [ -123.872485011999942, 49.062552917000062 ], [ -123.872470840999981, 49.061743415000123 ], [ -123.872060223999966, 49.061746518000078 ], [ -123.87205550099999, 49.061476684000134 ], [ -123.871234268999942, 49.061482886000114 ], [ -123.871229552, 49.061213052000028 ], [ -123.870818937999928, 49.061216151000025 ], [ -123.870814222999982, 49.060946317000074 ], [ -123.86999299899999, 49.060952510000064 ], [ -123.869997708999961, 49.061222345000111 ], [ -123.868765866999951, 49.061231624000065 ], [ -123.86877057, 49.061501459000105 ], [ -123.866717485, 49.061516895000103 ], [ -123.866684639999932, 49.059628052000043 ], [ -123.867095240999959, 49.059624968000023 ], [ -123.867085851999917, 49.059085298000085 ], [ -123.867496449, 49.059082212000064 ], [ -123.867491752999939, 49.05881237800002 ], [ -123.86872353699998, 49.058803112000064 ], [ -123.868709427999974, 49.057993609000036 ], [ -123.869120015999954, 49.057990517000121 ], [ -123.86908708199995, 49.056101674000075 ], [ -123.86867651099999, 49.056104765000057 ], [ -123.868653000999984, 49.05475559100006 ], [ -123.869063560999962, 49.054752500000042 ], [ -123.868969492999895, 49.049355801000019 ], [ -123.86740330399995, 49.049367584000073 ], [ -123.86759951099998, 49.042955743000029 ], [ -123.864786730999938, 49.042762939000042 ], [ -123.864897433999943, 49.039631697000054 ], [ -123.864707618999944, 49.038333707000035 ], [ -123.864651249999895, 49.037948340000071 ], [ -123.865022310999947, 49.038276488000129 ], [ -123.868273988999931, 49.041152096000076 ], [ -123.873634604999921, 49.045851116000108 ], [ -123.876421206999936, 49.048292100000019 ], [ -123.876767004999977, 49.048652012000048 ], [ -123.877035789999951, 49.049053698000108 ], [ -123.877162954, 49.049014514000163 ], [ -123.877178602999976, 49.049009702000049 ], [ -123.877312186, 49.049287897000042 ], [ -123.877465784999984, 49.049906095000054 ], [ -123.877474767999928, 49.050209698000089 ], [ -123.877578683999928, 49.053732703000051 ], [ -123.877622685999967, 49.057481308000092 ], [ -123.87823480699997, 49.057489454000049 ], [ -123.878471196999911, 49.057492598000032 ], [ -123.883780089, 49.057520805000131 ], [ -123.883804797, 49.056978102000109 ], [ -123.88380630599994, 49.056944905000115 ], [ -123.883737702999952, 49.05682819000004 ], [ -123.88378959799995, 49.053878598000026 ], [ -123.883753738999957, 49.052417840000025 ], [ -123.883745915999953, 49.052098895000015 ], [ -123.883758708999935, 49.051456112000011 ], [ -123.883770435999949, 49.051184421000059 ], [ -123.883793719999943, 49.050644298000101 ], [ -123.883811314999932, 49.050236688000027 ], [ -123.883826407999976, 49.049664095000033 ], [ -123.883835782999952, 49.049304901000049 ], [ -123.883859103999967, 49.048400197000035 ], [ -123.883874784999989, 49.047433108000064 ], [ -123.883878109999941, 49.047228792000041 ], [ -123.883905413999955, 49.046761613000079 ], [ -123.884994803999987, 49.046756415000047 ], [ -123.889046821999898, 49.047077025000121 ], [ -123.889060666999953, 49.047853413000055 ], [ -123.889471166999954, 49.047850250000053 ], [ -123.889473306999918, 49.047970198000051 ], [ -123.892298034999925, 49.048025668000037 ], [ -123.892292384, 49.048955114000094 ], [ -123.892260290999928, 49.049884128 ], [ -123.89213376899994, 49.053546411000063 ], [ -123.891980599999954, 49.057978902000102 ], [ -123.891980490999984, 49.057982029000058 ], [ -123.889810074999943, 49.05803849600003 ], [ -123.889089899999973, 49.058296191000089 ], [ -123.887860318999984, 49.059169305000111 ], [ -123.886918994999974, 49.059328796000045 ], [ -123.885973889999974, 49.059308902000119 ], [ -123.885181194999944, 49.059424204000081 ], [ -123.884666381, 49.059687703000137 ], [ -123.883788704999958, 49.0599142350001 ], [ -123.88273609, 49.059893495000026 ], [ -123.882718163000035, 49.0602882270001 ], [ -123.881260687999983, 49.06059630200005 ], [ -123.878297583999981, 49.061886707000056 ], [ -123.877255321999925, 49.062220380000035 ], [ -123.877087514999957, 49.062274101000064 ], [ -123.876815913999948, 49.062429298000048 ], [ -123.876481492999972, 49.062890708000083 ], [ -123.875724100999932, 49.065001409000011 ], [ -123.875340314999946, 49.065652300000082 ], [ -123.875041817999957, 49.065878698000049 ], [ -123.874511200999962, 49.066053914000101 ], [ -123.873515559999987, 49.066128814000102 ], [ -123.8730823, 49.065932599000064 ] ], [ [ -123.875902879999956, 49.059307981000089 ], [ -123.875924617999914, 49.058830857000046 ], [ -123.874890110999957, 49.058810398000034 ], [ -123.874908433999963, 49.058408444000086 ], [ -123.874896035999939, 49.058408199000098 ], [ -123.874928288999925, 49.057700591000099 ], [ -123.874918679999951, 49.057700401000041 ], [ -123.874932059999978, 49.057406861000082 ], [ -123.874448182999942, 49.057410528000091 ], [ -123.874443448999912, 49.057140693000086 ], [ -123.874032869999937, 49.057143804000106 ], [ -123.874028138999961, 49.056873970000105 ], [ -123.873617559999957, 49.056877078000056 ], [ -123.873613669999884, 49.056655152000062 ], [ -123.872381349999927, 49.056630753000029 ], [ -123.872385825999942, 49.05688639600001 ], [ -123.871564667999948, 49.0568926 ], [ -123.87160241499997, 49.059051277000087 ], [ -123.871191817999915, 49.059054377000074 ], [ -123.871201250999931, 49.059594046000072 ], [ -123.872022452999929, 49.059587844000113 ], [ -123.872027173999982, 49.059857678000085 ], [ -123.872437777999977, 49.059854574000092 ], [ -123.872442500999952, 49.060124409000139 ], [ -123.873263708999914, 49.060118198000097 ], [ -123.873258981999953, 49.059848364000082 ], [ -123.873669584999945, 49.059845256000102 ], [ -123.87366485499993, 49.059575422000108 ], [ -123.873725566999923, 49.059574963000045 ], [ -123.873739694999927, 49.059265190000048 ], [ -123.875902879999956, 49.059307981000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148381584", "BldgCostT": "101123334", "sL_LossRatio": "0.763940717575809", "sL_AssetLoss": "1521840.6", "sL_BldgLoss": "1162596", "sL_StrLoss": "589655", "sL_NStrLoss": "572941", "sL_ContLoss": "359244.6", "geom_point": "0101000020E610000032571F7227F85EC0C44BD45E06864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.877312186, 49.049287897000042 ], [ -123.877178602999976, 49.049009702000049 ], [ -123.877162954, 49.049014514000163 ], [ -123.877035789999951, 49.049053698000108 ], [ -123.876767004999977, 49.048652012000048 ], [ -123.876421206999936, 49.048292100000019 ], [ -123.873634604999921, 49.045851116000108 ], [ -123.868273988999931, 49.041152096000076 ], [ -123.865022310999947, 49.038276488000129 ], [ -123.864651249999895, 49.037948340000071 ], [ -123.864735097999969, 49.037868321000069 ], [ -123.865744502999988, 49.036904516000085 ], [ -123.865653094999956, 49.036440788000064 ], [ -123.872874863999968, 49.0367950320001 ], [ -123.872851489999945, 49.037307591000037 ], [ -123.872129463999983, 49.037293285000061 ], [ -123.872102792999954, 49.037877908000084 ], [ -123.871162834999964, 49.037859277000081 ], [ -123.871160056999898, 49.037920131000099 ], [ -123.870579909999961, 49.037908628000082 ], [ -123.870578635999948, 49.037936547000108 ], [ -123.870001767999952, 49.037925105000063 ], [ -123.870003307999966, 49.038013439000117 ], [ -123.87082415499999, 49.038007248000078 ], [ -123.870833575999967, 49.03854691900009 ], [ -123.871244003999934, 49.038543821000083 ], [ -123.871262856999977, 49.039623163000023 ], [ -123.871673293999891, 49.039620062000076 ], [ -123.87168272599996, 49.040159733000038 ], [ -123.872093164999967, 49.04015663200002 ], [ -123.872112037999955, 49.041235973000035 ], [ -123.872522487999916, 49.041232872000116 ], [ -123.872550814999926, 49.042851882000065 ], [ -123.871319423999921, 49.042861186000039 ], [ -123.871328852999952, 49.043400857000059 ], [ -123.872149789, 49.043394656000032 ], [ -123.87215450799999, 49.043664491000101 ], [ -123.875088447999957, 49.043642279000089 ], [ -123.875135684999933, 49.042605475000101 ], [ -123.878366109999945, 49.042669346000032 ], [ -123.87837770499999, 49.043120826000077 ], [ -123.880582464, 49.04305070600001 ], [ -123.880582008, 49.043060748000073 ], [ -123.880787840999972, 49.043059177000018 ], [ -123.880788523999968, 49.043044149000096 ], [ -123.88395347299999, 49.042943404 ], [ -123.883977793999961, 49.04322359800009 ], [ -123.883968867999926, 49.043591630000037 ], [ -123.883949894999915, 49.044374563000098 ], [ -123.883945962999974, 49.044536386000104 ], [ -123.883924170999975, 49.045435920000038 ], [ -123.883921284999971, 49.045554301000024 ], [ -123.883916111999895, 49.046365861000076 ], [ -123.883914765999961, 49.046578555000067 ], [ -123.883914594999908, 49.046604401000067 ], [ -123.883905413999955, 49.046761613000079 ], [ -123.883878109999941, 49.047228792000041 ], [ -123.883874784999989, 49.047433108000064 ], [ -123.883859103999967, 49.048400197000035 ], [ -123.883835782999952, 49.049304901000049 ], [ -123.883826407999976, 49.049664095000033 ], [ -123.883811314999932, 49.050236688000027 ], [ -123.883793719999943, 49.050644298000101 ], [ -123.883770435999949, 49.051184421000059 ], [ -123.883758708999935, 49.051456112000011 ], [ -123.883745915999953, 49.052098895000015 ], [ -123.883753738999957, 49.052417840000025 ], [ -123.88378959799995, 49.053878598000026 ], [ -123.883737702999952, 49.05682819000004 ], [ -123.88380630599994, 49.056944905000115 ], [ -123.883804797, 49.056978102000109 ], [ -123.883780089, 49.057520805000131 ], [ -123.878471196999911, 49.057492598000032 ], [ -123.87823480699997, 49.057489454000049 ], [ -123.877622685999967, 49.057481308000092 ], [ -123.877578683999928, 49.053732703000051 ], [ -123.877474767999928, 49.050209698000089 ], [ -123.877465784999984, 49.049906095000054 ], [ -123.877312186, 49.049287897000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.794168842471714", "sL_AssetLoss": "4596", "sL_BldgLoss": "3650", "sL_StrLoss": "2100", "sL_NStrLoss": "1550", "sL_ContLoss": "946", "geom_point": "0101000020E6100000449C983F30F85EC0D2B3EE5936854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.878292532, 49.042538454000038 ], [ -123.87826877399999, 49.041189281000108 ], [ -123.877858325, 49.041192403000075 ], [ -123.877853574999946, 49.040922569000095 ], [ -123.877443128, 49.04092569000003 ], [ -123.87742888799994, 49.040116186000063 ], [ -123.878300378999981, 49.040109555000143 ], [ -123.878362734999939, 49.042537920000044 ], [ -123.878292532, 49.042538454000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.823232616134083", "sL_AssetLoss": "17243", "sL_BldgLoss": "14195", "sL_StrLoss": "8450", "sL_NStrLoss": "5745", "sL_ContLoss": "3048", "geom_point": "0101000020E610000055CCB52625F85EC0555B3D69D9844840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.876441386999929, 49.038628593000077 ], [ -123.876516737999978, 49.036973489000097 ], [ -123.877725336999916, 49.037032684000067 ], [ -123.878255, 49.038342172000036 ], [ -123.87826327899991, 49.038664607000072 ], [ -123.876441386999929, 49.038628593000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4623083", "BldgCostT": "3188333", "sL_LossRatio": "0.788720447180112", "sL_AssetLoss": "45977", "sL_BldgLoss": "36263", "sL_StrLoss": "17873", "sL_NStrLoss": "18390", "sL_ContLoss": "9714", "geom_point": "0101000020E6100000697782DC49F85EC03F571995ED894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.88103233399994, 49.08206339000003 ], [ -123.881146587999964, 49.079550803000075 ], [ -123.880181859999979, 49.079531781000114 ], [ -123.880184517999936, 49.07947336000008 ], [ -123.879929638999926, 49.079830262000087 ], [ -123.879460237999979, 49.079690563000028 ], [ -123.879789559999963, 49.079229382000065 ], [ -123.878528706999958, 49.079238985000089 ], [ -123.878557265, 49.080857983000065 ], [ -123.876914162999938, 49.080870478000129 ], [ -123.876909412999979, 49.080600645000111 ], [ -123.876498638999919, 49.08060376500007 ], [ -123.876489141999954, 49.080064099 ], [ -123.876078374999963, 49.080067218000075 ], [ -123.876059388999977, 49.078987885000075 ], [ -123.876247778999954, 49.078986455000063 ], [ -123.875762526999935, 49.078976866000104 ], [ -123.875774227999955, 49.078720180000062 ], [ -123.875643884999974, 49.078721169000076 ], [ -123.87562490899991, 49.077641836000069 ], [ -123.875823450999988, 49.077640330000072 ], [ -123.875862153999961, 49.076791241000052 ], [ -123.876283002999941, 49.0765375020001 ], [ -123.87741061499996, 49.075963602000058 ], [ -123.878457799, 49.075218436000121 ], [ -123.878459479999918, 49.075313861000048 ], [ -123.879281334999945, 49.075330081000089 ], [ -123.879263307999963, 49.07430872500008 ], [ -123.87936288399996, 49.074113495000034 ], [ -123.879566496999956, 49.073166415000053 ], [ -123.87948669399999, 49.072609614000065 ], [ -123.879326400999972, 49.072216307000105 ], [ -123.879637095999897, 49.072213939000065 ], [ -123.879646623999946, 49.072753606000042 ], [ -123.880057332999982, 49.072750475000092 ], [ -123.880028817999971, 49.071136184000068 ], [ -123.87985278799998, 49.071132710000072 ], [ -123.87988481, 49.071112704 ], [ -123.880390008999925, 49.07098310100011 ], [ -123.880589293999932, 49.070976949000091 ], [ -123.880710514999976, 49.071240605000128 ], [ -123.880715497, 49.071251505000127 ], [ -123.880793383999929, 49.071466556000104 ], [ -123.880925697999899, 49.071832010000023 ], [ -123.881058809999971, 49.07252586300006 ], [ -123.881491815999979, 49.074782900000116 ], [ -123.88151172, 49.074887795000095 ], [ -123.881513436999924, 49.07489676700007 ], [ -123.881815975, 49.076467195000077 ], [ -123.881859645999938, 49.0768082250001 ], [ -123.881872621999932, 49.076909644000118 ], [ -123.881875707999953, 49.076933729000068 ], [ -123.882651435999961, 49.082993730000098 ], [ -123.88266114399994, 49.083069561000073 ], [ -123.880988076999969, 49.083036592000063 ], [ -123.88103233399994, 49.08206339000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86093250", "BldgCostT": "57615000", "sL_LossRatio": "0.782917205150251", "sL_AssetLoss": "648193.7", "sL_BldgLoss": "507482", "sL_StrLoss": "278347", "sL_NStrLoss": "229135", "sL_ContLoss": "140711.7", "geom_point": "0101000020E61000002D4686EAE0F55EC0251C1761CC884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.854901960999911, 49.086592161000041 ], [ -123.850623497999933, 49.08648020400009 ], [ -123.849367822999966, 49.086457687000085 ], [ -123.847807819, 49.086429698000082 ], [ -123.845416899999947, 49.086386803000039 ], [ -123.845152307999925, 49.086309385000099 ], [ -123.844883511999939, 49.086088807000102 ], [ -123.844731492999983, 49.085795697000037 ], [ -123.84426298899993, 49.084183196000026 ], [ -123.844131716999925, 49.083857200000054 ], [ -123.84380017499997, 49.083246201000073 ], [ -123.843719508999968, 49.082980704000093 ], [ -123.84368369299996, 49.082718806000038 ], [ -123.843684116999952, 49.08191268800006 ], [ -123.843703228999985, 49.08166520700005 ], [ -123.843718223999986, 49.081471211000078 ], [ -123.843667087999918, 49.081096392000084 ], [ -123.843452210999942, 49.080656104000077 ], [ -123.843409914999967, 49.080613253000088 ], [ -123.843265398999961, 49.080466901000072 ], [ -123.843092442999961, 49.080343052000096 ], [ -123.84303371799993, 49.08030100400002 ], [ -123.842709002999953, 49.080134101000034 ], [ -123.840971305999943, 49.079437296000023 ], [ -123.840767221999954, 49.079325100000084 ], [ -123.840568900999955, 49.079177008000023 ], [ -123.839875302999985, 49.078557793000144 ], [ -123.839008380999971, 49.078079187000128 ], [ -123.838540113999969, 49.077736586000114 ], [ -123.838272895000017, 49.077451997000132 ], [ -123.836917125999946, 49.075839511000055 ], [ -123.836694453999925, 49.075592125000064 ], [ -123.833103810999958, 49.071602494000054 ], [ -123.832321802999957, 49.070686005000042 ], [ -123.832118504000022, 49.070446768000068 ], [ -123.831787612999932, 49.070057400000067 ], [ -123.831702994999944, 49.069989717000048 ], [ -123.83446673799989, 49.070045451000055 ], [ -123.834479240999954, 49.069776325000099 ], [ -123.83262597, 49.069738961000098 ], [ -123.83266774499999, 49.068840589000047 ], [ -123.83188729699998, 49.068824844000069 ], [ -123.831912662999969, 49.068279523000051 ], [ -123.831492015999956, 49.068271035000066 ], [ -123.831511751000022, 49.067846838000101 ], [ -123.831357937999925, 49.067843733000117 ], [ -123.831378914999945, 49.067392851000079 ], [ -123.829696414999916, 49.067358881000082 ], [ -123.829624052999918, 49.06891293600011 ], [ -123.828706804999968, 49.068668510000073 ], [ -123.826853280999956, 49.068044084000135 ], [ -123.826763980999942, 49.068013988000082 ], [ -123.824368394999937, 49.067332411000045 ], [ -123.823328894999989, 49.066985308000092 ], [ -123.82312382899994, 49.0668907740001 ], [ -123.82295678199992, 49.06681379900008 ], [ -123.822082347999981, 49.066310663000067 ], [ -123.820943910999958, 49.065655635000063 ], [ -123.82095832499999, 49.065347291000094 ], [ -123.820387923999974, 49.065335721000061 ], [ -123.818875032999969, 49.064465173000023 ], [ -123.81881930599999, 49.064433100000073 ], [ -123.818523917999926, 49.064113712000015 ], [ -123.818295607999957, 49.063733493000029 ], [ -123.818214477999959, 49.063653151000082 ], [ -123.81816089299997, 49.063600104000102 ], [ -123.817918609999978, 49.063460101000082 ], [ -123.816127682999962, 49.062577098000055 ], [ -123.815625390999969, 49.06226511300008 ], [ -123.815352974999954, 49.062010092000023 ], [ -123.815128800999958, 49.061629004000046 ], [ -123.814934773999966, 49.061480995000132 ], [ -123.813581255999935, 49.060951693000035 ], [ -123.813266386999913, 49.060757089000077 ], [ -123.812492212, 49.059829816000025 ], [ -123.811732995999975, 49.059051451000109 ], [ -123.81144115799999, 49.05883115400011 ], [ -123.811195176999902, 49.058770298000077 ], [ -123.810821646999955, 49.058717657000066 ], [ -123.810548344999916, 49.058628752000125 ], [ -123.81033413399993, 49.058559098000046 ], [ -123.810130564999923, 49.058439662000104 ], [ -123.80998845, 49.058306106000046 ], [ -123.813297857999913, 49.058373521000107 ], [ -123.813327093999973, 49.057750193000039 ], [ -123.809614037999921, 49.057674549000097 ], [ -123.809603650999946, 49.057895644000013 ], [ -123.809070048999956, 49.057294853000045 ], [ -123.822649593999927, 49.057184076000048 ], [ -123.823677016999952, 49.057473696000081 ], [ -123.829769804999955, 49.05745912900008 ], [ -123.829722634999939, 49.058472446000067 ], [ -123.831480716999948, 49.058507948000056 ], [ -123.831529699999933, 49.057454857000039 ], [ -123.83285768799999, 49.057451614000023 ], [ -123.834908205999966, 49.057446550000073 ], [ -123.837036072999979, 49.057442646000084 ], [ -123.838506941000034, 49.057442296000069 ], [ -123.838449135999937, 49.058689078000057 ], [ -123.83836302399996, 49.058687345000081 ], [ -123.838206718999942, 49.062058174000107 ], [ -123.834655458000015, 49.061986658000116 ], [ -123.832742444999937, 49.061948084000043 ], [ -123.832852317999937, 49.059584628000053 ], [ -123.831580344999978, 49.059558961000107 ], [ -123.831610555999973, 49.058909455000091 ], [ -123.831511343999935, 49.058907453000089 ], [ -123.831412051999976, 49.061042057000122 ], [ -123.832634193999965, 49.061066719000017 ], [ -123.83258731799998, 49.062074966000068 ], [ -123.83387271, 49.06210089000011 ], [ -123.8338569739999, 49.062439538000085 ], [ -123.834629383999953, 49.06245510800008 ], [ -123.836198845999945, 49.062486729000106 ], [ -123.836190630999937, 49.06266371099999 ], [ -123.838295079999938, 49.062706075000087 ], [ -123.838157468999938, 49.06567342200001 ], [ -123.839387021, 49.06569815400011 ], [ -123.839334549999975, 49.066830143000118 ], [ -123.840085363999961, 49.066845239000017 ], [ -123.840060036999972, 49.067391809000114 ], [ -123.840682774999962, 49.067404325000076 ], [ -123.84055059799999, 49.070257350000041 ], [ -123.84281727099993, 49.070302878000078 ], [ -123.842760405999925, 49.071531467000092 ], [ -123.84561364299995, 49.071588708000057 ], [ -123.845548818999987, 49.072991056000106 ], [ -123.849839975999927, 49.07307700100008 ], [ -123.849782437999977, 49.074324114000049 ], [ -123.851707827999974, 49.074362620000102 ], [ -123.851788408999965, 49.072614486000084 ], [ -123.852934103999971, 49.072637383000014 ], [ -123.852987424999981, 49.071479913000132 ], [ -123.85619079199995, 49.071543867000102 ], [ -123.85619665899999, 49.071416332000176 ], [ -123.85593274199999, 49.071411067000085 ], [ -123.856098309999979, 49.067811679000066 ], [ -123.856961752999965, 49.067828903000063 ], [ -123.857007572999976, 49.066832287000096 ], [ -123.855513003999988, 49.066802468000141 ], [ -123.855532929999981, 49.066369358000074 ], [ -123.854846305999928, 49.066355652000084 ], [ -123.854893638999911, 49.065327121000045 ], [ -123.854519255999961, 49.065319646000027 ], [ -123.854624907, 49.063024097999985 ], [ -123.853685264999939, 49.06300533100012 ], [ -123.853710466999971, 49.06245793700004 ], [ -123.853148977999965, 49.062446718000118 ], [ -123.853188900999967, 49.061579815000073 ], [ -123.852758315999935, 49.061571211000107 ], [ -123.852841197999979, 49.059771736000073 ], [ -123.851788489999976, 49.059750691000033 ], [ -123.851818913000017, 49.059090458000121 ], [ -123.850378979, 49.0590616550001 ], [ -123.850453812999945, 49.05743862200007 ], [ -123.853609935999941, 49.057437420000042 ], [ -123.857365525999953, 49.057401681000066 ], [ -123.85733527799999, 49.058059846000027 ], [ -123.858387950999941, 49.058080836000094 ], [ -123.858348126999886, 49.058947746000051 ], [ -123.858778687999987, 49.058956328000072 ], [ -123.858753546999978, 49.059503727000092 ], [ -123.859315000999956, 49.059514916000104 ], [ -123.859209589999978, 49.061810482000055 ], [ -123.860149209999975, 49.061829200000119 ], [ -123.860101996999944, 49.062857739000066 ], [ -123.860476360999911, 49.062865194000089 ], [ -123.86045648299995, 49.063298307000132 ], [ -123.86101949, 49.063309518 ], [ -123.86105801599993, 49.06246988700012 ], [ -123.864542060999966, 49.06253919200001 ], [ -123.864580389999944, 49.06474431700007 ], [ -123.865243302999971, 49.06483769700003 ], [ -123.865254814999957, 49.06483934200002 ], [ -123.865569855999951, 49.064883725000158 ], [ -123.86766556699996, 49.065178951000057 ], [ -123.86758196699995, 49.067006437000082 ], [ -123.86448824899999, 49.066944995000071 ], [ -123.864203301999964, 49.0669393310001 ], [ -123.864103747999977, 49.069111916000082 ], [ -123.861511032999957, 49.069060348000114 ], [ -123.861407210999985, 49.071323134000039 ], [ -123.861671126999951, 49.071328386000069 ], [ -123.861505976999965, 49.074927763000105 ], [ -123.858302368999901, 49.074863967000063 ], [ -123.85828746299994, 49.07518834100005 ], [ -123.85714170199999, 49.075165502000083 ], [ -123.857123167999987, 49.075568584000052 ], [ -123.857088478999955, 49.076322967000088 ], [ -123.85476257199997, 49.076276566000097 ], [ -123.85468403499999, 49.077982590000055 ], [ -123.855734851999898, 49.078003560000106 ], [ -123.855571264999952, 49.081558438000094 ], [ -123.855569218999932, 49.081602890000063 ], [ -123.852187136999959, 49.081535362000096 ], [ -123.850102613999951, 49.081493687000091 ], [ -123.850104665999964, 49.081449235000044 ], [ -123.850181936999945, 49.079774390000068 ], [ -123.849131082999961, 49.079753367000102 ], [ -123.84915283, 49.079282204000059 ], [ -123.848605692, 49.079271254000091 ], [ -123.848612487999929, 49.07912406500008 ], [ -123.847891774999965, 49.079109636000048 ], [ -123.847924635999959, 49.07839808300011 ], [ -123.84610295399996, 49.078361591000018 ], [ -123.84612369200002, 49.077912906000122 ], [ -123.845393654999981, 49.077898273000102 ], [ -123.845423498999949, 49.077252821000094 ], [ -123.84442054099999, 49.077232710000082 ], [ -123.844317299999943, 49.079464528000145 ], [ -123.845828313999931, 49.079494824000086 ], [ -123.845805456999969, 49.079989245000071 ], [ -123.847020600999883, 49.080013593000039 ], [ -123.846997162999926, 49.080520847000045 ], [ -123.84726382199996, 49.0805261880001 ], [ -123.847224667999967, 49.081373687000053 ], [ -123.84729967199992, 49.081375190000109 ], [ -123.847298845999916, 49.081393076000019 ], [ -123.847279864, 49.081803947000033 ], [ -123.852163374999975, 49.081901642000041 ], [ -123.85250930899997, 49.081908555000012 ], [ -123.85241175499999, 49.084025161000049 ], [ -123.855017747, 49.084077194000031 ], [ -123.854901960999911, 49.086592161000041 ] ], [ [ -123.843474809000014, 49.07709296900002 ], [ -123.843564702999942, 49.075150300000118 ], [ -123.840129458999954, 49.075081314000052 ], [ -123.840042507999897, 49.07695737100007 ], [ -123.84188670899999, 49.076994420000105 ], [ -123.841883625999969, 49.077061029000035 ], [ -123.843474809000014, 49.07709296900002 ] ], [ [ -123.82431036, 49.060961476000045 ], [ -123.824321276999953, 49.060727575000023 ], [ -123.825535751999908, 49.060752163000046 ], [ -123.825540632999946, 49.060647505000063 ], [ -123.825772408999981, 49.060652196000085 ], [ -123.82577827399993, 49.06052644100005 ], [ -123.824159310999974, 49.060493664000056 ], [ -123.82418586599999, 49.059924709000029 ], [ -123.819511876999954, 49.059829944000114 ], [ -123.819520836999928, 49.059638381000077 ], [ -123.817605820999972, 49.059599495000029 ], [ -123.817650340999947, 49.058648470000016 ], [ -123.814898865999936, 49.058592539000124 ], [ -123.814880715999948, 49.058979781000083 ], [ -123.817101051999984, 49.059024920000134 ], [ -123.817050360999957, 49.060107502000079 ], [ -123.818796955999929, 49.060142979000091 ], [ -123.818769138999954, 49.060737514000046 ], [ -123.820017246999939, 49.06076284800011 ], [ -123.81997776299994, 49.061607186000124 ], [ -123.823295879999947, 49.061674465000095 ], [ -123.823291178999952, 49.061775145000063 ], [ -123.823623877000017, 49.061781885000116 ], [ -123.823662789999972, 49.060948359000129 ], [ -123.82431036, 49.060961476000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006834", "BldgCostT": "2763334", "sL_LossRatio": "0.800209832134293", "sL_AssetLoss": "33360", "sL_BldgLoss": "26695", "sL_StrLoss": "14067", "sL_NStrLoss": "12628", "sL_ContLoss": "6665", "geom_point": "0101000020E6100000F04CECCAFCF75EC0E0D23958E2884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.872258588999955, 49.073079547000042 ], [ -123.872253864999962, 49.072809713000034 ], [ -123.871843154999965, 49.072812817000028 ], [ -123.87182426699998, 49.071733481000074 ], [ -123.871413566999948, 49.071736583000067 ], [ -123.871399406999927, 49.070927081000065 ], [ -123.871810102, 49.070923979000035 ], [ -123.871805379999941, 49.07065414500007 ], [ -123.872216071999929, 49.070651042000065 ], [ -123.872192453999958, 49.069301873000015 ], [ -123.871781772999952, 49.069304975000087 ], [ -123.87177233099996, 49.068765308000089 ], [ -123.87136165499993, 49.06876840900005 ], [ -123.871333341999971, 49.067149405000109 ], [ -123.872975993999958, 49.067136992000066 ], [ -123.872990175, 49.067946493000093 ], [ -123.873811513999939, 49.067940278000087 ], [ -123.873806781999946, 49.067670444000015 ], [ -123.874109845999925, 49.067668149000106 ], [ -123.87411805, 49.067488285000096 ], [ -123.87334223, 49.067472933000012 ], [ -123.873370006999934, 49.066864142 ], [ -123.87297126599999, 49.066867158000072 ], [ -123.872970011999968, 49.066795543000069 ], [ -123.872311632999981, 49.066782508000088 ], [ -123.872315625999974, 49.066695043000045 ], [ -123.871687302999973, 49.066682599000018 ], [ -123.873228597999969, 49.066341603000055 ], [ -123.873810274999926, 49.066262283000071 ], [ -123.875145758999949, 49.066867069000068 ], [ -123.875204913999966, 49.066823905000078 ], [ -123.875441803999962, 49.066787205000068 ], [ -123.875639486999958, 49.066801003000045 ], [ -123.876752943000028, 49.06713784300009 ], [ -123.877019673999939, 49.067218539000059 ], [ -123.877365994999963, 49.067323303000052 ], [ -123.87754089799995, 49.067326799000107 ], [ -123.87766181799995, 49.067285902000094 ], [ -123.87800950499999, 49.067157689000076 ], [ -123.878397813999925, 49.06758631900005 ], [ -123.879519899999934, 49.06882491100005 ], [ -123.879775893999977, 49.069208186000047 ], [ -123.87990420199999, 49.069486400000123 ], [ -123.8800933799999, 49.069897986000129 ], [ -123.880301083999953, 49.070349898000146 ], [ -123.880515293999949, 49.070815902000042 ], [ -123.879960294999961, 49.070752402000039 ], [ -123.879644002999925, 49.070602799000056 ], [ -123.879181484999904, 49.070749493000037 ], [ -123.878812897999936, 49.071112189000139 ], [ -123.878786415999954, 49.0711116660001 ], [ -123.878871083999968, 49.069251209000107 ], [ -123.878352654999944, 49.069255156000082 ], [ -123.878352096999947, 49.069223541000042 ], [ -123.877119465999897, 49.069199196000078 ], [ -123.877120616999918, 49.069264526000083 ], [ -123.876709935999941, 49.069267646000057 ], [ -123.876719431999945, 49.069807313000084 ], [ -123.875898063999927, 49.069813550000035 ], [ -123.875902807999978, 49.070083383000068 ], [ -123.875492119999976, 49.070086498000158 ], [ -123.875511086999936, 49.071165833000087 ], [ -123.874689694999972, 49.071172062000123 ], [ -123.874699169999971, 49.071711728000089 ], [ -123.875109870999935, 49.071708615000013 ], [ -123.875128829999966, 49.072787950000127 ], [ -123.873896702999957, 49.072797285000071 ], [ -123.873901435999983, 49.073067119000015 ], [ -123.872258588999955, 49.073079547000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30711500", "BldgCostT": "20420000", "sL_LossRatio": "0.727963586621763", "sL_AssetLoss": "375027", "sL_BldgLoss": "273006", "sL_StrLoss": "131186", "sL_NStrLoss": "141820", "sL_ContLoss": "102021", "geom_point": "0101000020E6100000B11E7375F2F75EC08F9C7DCCA48B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.875732914999929, 49.102648299000052 ], [ -123.875701609999936, 49.102643419000039 ], [ -123.875098819999934, 49.102688209000078 ], [ -123.872719795999956, 49.102699691000034 ], [ -123.868182564999955, 49.102626016000109 ], [ -123.868186553999962, 49.102538877000065 ], [ -123.868349537000014, 49.102542108000065 ], [ -123.868371173999961, 49.102069379000092 ], [ -123.870412296999945, 49.102109820000088 ], [ -123.870491886999943, 49.100369128000096 ], [ -123.87210032299997, 49.100400968000052 ], [ -123.872131257999968, 49.099723866000041 ], [ -123.873384572999925, 49.09974866000006 ], [ -123.873452053999983, 49.098270656000082 ], [ -123.873224066999967, 49.098266147000032 ], [ -123.873249738999945, 49.097703894000091 ], [ -123.868994146999938, 49.09761963800004 ], [ -123.869158800999983, 49.094020376000067 ], [ -123.870272563999961, 49.094042443000042 ], [ -123.870328221999898, 49.092825002000076 ], [ -123.870405879999964, 49.09282654000009 ], [ -123.870463288999957, 49.091570701000073 ], [ -123.8723768499999, 49.091608587000131 ], [ -123.872381514999972, 49.091506449000114 ], [ -123.873340810999977, 49.091525429000079 ], [ -123.87342547799993, 49.08967066900005 ], [ -123.873866007999979, 49.089679383000018 ], [ -123.873866459999988, 49.089669481000051 ], [ -123.874337667, 49.089678798000058 ], [ -123.874338141999942, 49.0896683920001 ], [ -123.876358026999966, 49.089708311000031 ], [ -123.876359260999919, 49.089681241000108 ], [ -123.876821032999914, 49.089690362000027 ], [ -123.87682644899995, 49.089571553000049 ], [ -123.877634178, 49.089587502000064 ], [ -123.877662149999935, 49.088973471000052 ], [ -123.879078970999927, 49.089001434000046 ], [ -123.879084598999938, 49.088877807000109 ], [ -123.881726171999958, 49.088929889000021 ], [ -123.881986827999953, 49.08892789700009 ], [ -123.881980864999903, 49.088591279000063 ], [ -123.880633310999912, 49.088564722000072 ], [ -123.880630116999939, 49.088634952000064 ], [ -123.876068418999935, 49.088544924000097 ], [ -123.876041062999889, 49.089144963000123 ], [ -123.873367614999978, 49.089092111000056 ], [ -123.873363956999938, 49.089172230000067 ], [ -123.867896421999916, 49.089063932000094 ], [ -123.867953624999942, 49.087813966000091 ], [ -123.867896698999942, 49.087812836000111 ], [ -123.867900815999974, 49.087722885000062 ], [ -123.866808164999924, 49.087701208000041 ], [ -123.866812337999988, 49.087610049000048 ], [ -123.86581143399998, 49.087590182000056 ], [ -123.865925742999963, 49.085094653000063 ], [ -123.865181362, 49.085079872000044 ], [ -123.865333794999941, 49.081752766000136 ], [ -123.86534626599996, 49.081480546000044 ], [ -123.868373683999948, 49.081540628 ], [ -123.869296989999924, 49.081781511000031 ], [ -123.869627112999922, 49.081976598000089 ], [ -123.869740214, 49.082147504000027 ], [ -123.870320286999942, 49.082358299000077 ], [ -123.871954514999942, 49.082651599000087 ], [ -123.872287387999947, 49.08289230500008 ], [ -123.872449424, 49.082828203000084 ], [ -123.872697794999922, 49.082889507000061 ], [ -123.873134195999938, 49.082715698000115 ], [ -123.873539825999956, 49.082433705000021 ], [ -123.87378478199993, 49.082403802000101 ], [ -123.87401658499999, 49.082277096000055 ], [ -123.874575926999967, 49.081710547000085 ], [ -123.875703930999919, 49.081732847000104 ], [ -123.875693664999943, 49.081958012000058 ], [ -123.875607110999965, 49.083856461000082 ], [ -123.876193040999908, 49.083868039000023 ], [ -123.87618611399995, 49.084020001000077 ], [ -123.877452104000028, 49.084045007000086 ], [ -123.877410018999939, 49.084968859000135 ], [ -123.878765637999891, 49.084995619000068 ], [ -123.878768835999907, 49.084925388000045 ], [ -123.879910653999957, 49.084947914000089 ], [ -123.87991519499991, 49.084848115000113 ], [ -123.882896364999951, 49.08490687100003 ], [ -123.882929824999962, 49.08516821700001 ], [ -123.882940211999951, 49.085249335000121 ], [ -123.883009234999989, 49.085788313000094 ], [ -123.883092757999961, 49.086440753 ], [ -123.883113409999964, 49.086602098000057 ], [ -123.883328310999943, 49.088280205000068 ], [ -123.883544993999948, 49.089231897000083 ], [ -123.883576625999979, 49.089328336000058 ], [ -123.883843456999969, 49.090141313000068 ], [ -123.883903085999975, 49.090322979000106 ], [ -123.883591209999963, 49.090143410000088 ], [ -123.881536056, 49.090129950000055 ], [ -123.880857108000015, 49.090125487000087 ], [ -123.880854391999904, 49.090257053000073 ], [ -123.880833133999914, 49.091300066000024 ], [ -123.880821479999938, 49.091869398000092 ], [ -123.880758925999942, 49.091869546000048 ], [ -123.88023870699999, 49.091870659000129 ], [ -123.878149214999937, 49.091875204000061 ], [ -123.878132532, 49.093682413000082 ], [ -123.87809653, 49.095558726000064 ], [ -123.87808411499999, 49.096206339000098 ], [ -123.878075442999943, 49.096659173 ], [ -123.878074252999909, 49.096721274000082 ], [ -123.878042991999962, 49.098350416000081 ], [ -123.878057888999976, 49.099675508000125 ], [ -123.878064723999955, 49.099958414000106 ], [ -123.878065791999987, 49.100003386000026 ], [ -123.878092221999964, 49.10110052100012 ], [ -123.878114501999917, 49.102026824000077 ], [ -123.878133611999942, 49.102820225000073 ], [ -123.878101805999933, 49.103518432000037 ], [ -123.876731193999973, 49.103473434000144 ], [ -123.876531505999964, 49.103440612000064 ], [ -123.876505211999969, 49.103424708000034 ], [ -123.876394408999943, 49.103357733000102 ], [ -123.876287110999982, 49.103248417000032 ], [ -123.876153112999958, 49.102885614000101 ], [ -123.876022505999941, 49.102748813000083 ], [ -123.875879615999978, 49.102671227000059 ], [ -123.875732914999929, 49.102648299000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.928625377643505", "sL_AssetLoss": "2648", "sL_BldgLoss": "2459", "sL_StrLoss": "1920", "sL_NStrLoss": "539", "sL_ContLoss": "189", "geom_point": "0101000020E6100000A81C309BC2F75EC06704445671884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.871039992999954, 49.066669775000079 ], [ -123.871042637999935, 49.066611860000066 ], [ -123.870913246999947, 49.066612836000019 ], [ -123.870903813999931, 49.066073168000052 ], [ -123.869671851999911, 49.066082457000064 ], [ -123.869662433999935, 49.065542790000087 ], [ -123.869251782999967, 49.065545883000091 ], [ -123.86924883899998, 49.06537704900002 ], [ -123.86974991799994, 49.065391903000034 ], [ -123.86991163799999, 49.065385922000068 ], [ -123.870312398999943, 49.06537113100012 ], [ -123.870543015999885, 49.065362611000111 ], [ -123.870554592999923, 49.065360976000079 ], [ -123.8730823, 49.065932599000064 ], [ -123.873515559999987, 49.066128814000102 ], [ -123.873186014999987, 49.066153605000061 ], [ -123.87264038899994, 49.066266092000028 ], [ -123.871770290999919, 49.066605111000108 ], [ -123.871451810999929, 49.066677934000083 ], [ -123.871039992999954, 49.066669775000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.70654095462581", "sL_AssetLoss": "1697", "sL_BldgLoss": "1199", "sL_StrLoss": "245", "sL_NStrLoss": "954", "sL_ContLoss": "498", "geom_point": "0101000020E6100000B8B66C8430F75EC044A0E16A708C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.862836203999933, 49.098248167000108 ], [ -123.862831525999979, 49.097978334000082 ], [ -123.862420606999933, 49.097981405000048 ], [ -123.86240658299999, 49.097171904000085 ], [ -123.861379400999965, 49.097179574000052 ], [ -123.860984204999951, 49.096883783000045 ], [ -123.860392110999939, 49.095908191000021 ], [ -123.86123229, 49.096171707000089 ], [ -123.861465383000024, 49.096178803000051 ], [ -123.861852904999964, 49.09644649700008 ], [ -123.862626301999939, 49.096755611000106 ], [ -123.863766690999967, 49.097699804000072 ], [ -123.864062436000012, 49.09786289500002 ], [ -123.864068964999888, 49.098238945000055 ], [ -123.862836203999933, 49.098248167000108 ] ], [ [ -123.861166133999987, 49.096735204000019 ], [ -123.861164510999956, 49.096641442000092 ], [ -123.861074560999981, 49.09664211300003 ], [ -123.861070372999919, 49.096733300000025 ], [ -123.861166133999987, 49.096735204000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9983250", "BldgCostT": "6885000", "sL_LossRatio": "0.83105728513619", "sL_AssetLoss": "61729.8", "sL_BldgLoss": "51301", "sL_StrLoss": "29954", "sL_NStrLoss": "21347", "sL_ContLoss": "10428.8", "geom_point": "0101000020E61000002EE26C21E5F35EC071A94A5BDC874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.814627151999957, 49.065524001000014 ], [ -123.814655677999923, 49.064915548000101 ], [ -123.812036093999907, 49.064862235000071 ], [ -123.812145702999928, 49.062526924000096 ], [ -123.811582885999925, 49.062515462000064 ], [ -123.811547624999932, 49.063266528000035 ], [ -123.806083274999963, 49.063155083000041 ], [ -123.806238777999951, 49.059850766000089 ], [ -123.804044699999949, 49.059805939000078 ], [ -123.804161593999964, 49.057324201000071 ], [ -123.809070048999956, 49.057294853000045 ], [ -123.809603650999946, 49.057895644000013 ], [ -123.809584751999964, 49.058297876000054 ], [ -123.80998845, 49.058306106000046 ], [ -123.810130564999923, 49.058439662000104 ], [ -123.81033413399993, 49.058559098000046 ], [ -123.810548344999916, 49.058628752000125 ], [ -123.810821646999955, 49.058717657000066 ], [ -123.811195176999902, 49.058770298000077 ], [ -123.81144115799999, 49.05883115400011 ], [ -123.811732995999975, 49.059051451000109 ], [ -123.812492212, 49.059829816000025 ], [ -123.813266386999913, 49.060757089000077 ], [ -123.813581255999935, 49.060951693000035 ], [ -123.814934773999966, 49.061480995000132 ], [ -123.815128800999958, 49.061629004000046 ], [ -123.815352974999954, 49.062010092000023 ], [ -123.815625390999969, 49.06226511300008 ], [ -123.816127682999962, 49.062577098000055 ], [ -123.817918609999978, 49.063460101000082 ], [ -123.81816089299997, 49.063600104000102 ], [ -123.818214477999959, 49.063653151000082 ], [ -123.818295607999957, 49.063733493000029 ], [ -123.818523917999926, 49.064113712000015 ], [ -123.81881930599999, 49.064433100000073 ], [ -123.818875032999969, 49.064465173000023 ], [ -123.820387923999974, 49.065335721000061 ], [ -123.820106064999948, 49.065330003000035 ], [ -123.820091800999961, 49.065635011000097 ], [ -123.817810239999972, 49.065588696000127 ], [ -123.817494101999898, 49.065356092000059 ], [ -123.81676498899995, 49.065136696000138 ], [ -123.816637901000021, 49.06497580800005 ], [ -123.816087891999956, 49.064755006000112 ], [ -123.815580179000023, 49.064722294000035 ], [ -123.815361204999988, 49.064767788000104 ], [ -123.81507870899992, 49.065031297000068 ], [ -123.814951322999931, 49.065530594000059 ], [ -123.814627151999957, 49.065524001000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45339750", "BldgCostT": "31005000", "sL_LossRatio": "0.833228085335815", "sL_AssetLoss": "270789", "sL_BldgLoss": "225629", "sL_StrLoss": "137463", "sL_NStrLoss": "88166", "sL_ContLoss": "45160", "geom_point": "0101000020E610000044F8B416E8F25EC0E8FABAE37F884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.806860087999979, 49.076576014000061 ], [ -123.805514269999918, 49.075470401000082 ], [ -123.804185991999987, 49.074342583000067 ], [ -123.803484413999925, 49.073895820000089 ], [ -123.802366805999981, 49.073184111000046 ], [ -123.80035712599998, 49.072196312000166 ], [ -123.799975549999942, 49.072008734000043 ], [ -123.799920722999929, 49.071981778000065 ], [ -123.799653310999986, 49.071850354000055 ], [ -123.799546397999933, 49.071797801000123 ], [ -123.799177722, 49.071700202000116 ], [ -123.798323806999974, 49.071535900000121 ], [ -123.798100877999957, 49.071505341000048 ], [ -123.797583291999899, 49.071434413000084 ], [ -123.796971209999953, 49.071350510000059 ], [ -123.796014622999948, 49.071219381000105 ], [ -123.79588199299999, 49.071201193000029 ], [ -123.795320403999966, 49.071073512000105 ], [ -123.79480992, 49.070880205000059 ], [ -123.794364787999896, 49.070661189000056 ], [ -123.792997783999965, 49.069868500000013 ], [ -123.792170614999975, 49.069200294000019 ], [ -123.791268079999895, 49.06841879800006 ], [ -123.788940142999948, 49.066361514000043 ], [ -123.788468496999968, 49.065944708000046 ], [ -123.788404710999927, 49.065899791000028 ], [ -123.787817400999984, 49.065486291000092 ], [ -123.787247912999945, 49.065154801000126 ], [ -123.786548410999927, 49.064858580000113 ], [ -123.786434175999915, 49.064810189000099 ], [ -123.785321701999976, 49.064481888000053 ], [ -123.783936242999971, 49.064058895000095 ], [ -123.782686026999897, 49.063677150000039 ], [ -123.782534453999958, 49.06363087600004 ], [ -123.782123228, 49.06350530100007 ], [ -123.781360892999956, 49.063231104000124 ], [ -123.780713106999926, 49.062907902000049 ], [ -123.779510312999918, 49.062236290000016 ], [ -123.779183811999943, 49.061999894000074 ], [ -123.778995076999962, 49.061856399000128 ], [ -123.778559676000015, 49.061381697000087 ], [ -123.777936373000031, 49.060487904000034 ], [ -123.777346095999974, 49.05984599300011 ], [ -123.777049817999952, 49.059523825000085 ], [ -123.776488219000015, 49.059057255000056 ], [ -123.776315944999965, 49.0589141620001 ], [ -123.775702257, 49.058536652000015 ], [ -123.775094534999937, 49.058292600000144 ], [ -123.774844162999926, 49.058222907000086 ], [ -123.774332150999925, 49.058080434000054 ], [ -123.773606445999974, 49.05775915300007 ], [ -123.773193428999903, 49.057503684000054 ], [ -123.784160537999952, 49.057441167000029 ], [ -123.784116193999964, 49.058374138000048 ], [ -123.784806019999948, 49.058388365000063 ], [ -123.784693479999987, 49.060756731000083 ], [ -123.78796554299997, 49.06082415300007 ], [ -123.787985939999942, 49.060394279000064 ], [ -123.788387755999949, 49.060402552 ], [ -123.788438182000036, 49.059339588000014 ], [ -123.793902043999964, 49.059451929000033 ], [ -123.793896127999943, 49.059576950000064 ], [ -123.798091400999951, 49.059663020000066 ], [ -123.798060545999945, 49.060316267000104 ], [ -123.799432891999942, 49.06034438700005 ], [ -123.799330521999963, 49.062512973000047 ], [ -123.799843608999964, 49.062523482000095 ], [ -123.799814075999976, 49.063149208000034 ], [ -123.802648244999986, 49.063207211000055 ], [ -123.802582304999987, 49.064606055000098 ], [ -123.801911595999982, 49.06435911300008 ], [ -123.801570494999964, 49.064424590000066 ], [ -123.801347198, 49.064938808000072 ], [ -123.801431222999952, 49.065064103000026 ], [ -123.802189086999945, 49.065437204000069 ], [ -123.80253070699996, 49.065700557000184 ], [ -123.80247856699999, 49.066806541000062 ], [ -123.800547479999977, 49.06676702900009 ], [ -123.800431768999943, 49.069219087000064 ], [ -123.801807939999918, 49.069247248000039 ], [ -123.801789095999936, 49.069646822000074 ], [ -123.802278748999925, 49.069656837000061 ], [ -123.802257954999945, 49.070097800000049 ], [ -123.802619226999965, 49.070105188000127 ], [ -123.802753062999926, 49.067266262000089 ], [ -123.804420176999912, 49.06730034100012 ], [ -123.805169685999957, 49.067772898000037 ], [ -123.806444788999983, 49.068735712000077 ], [ -123.80610779499996, 49.068972097000078 ], [ -123.806236416999965, 49.06931250500007 ], [ -123.805901523999978, 49.069773903000076 ], [ -123.806069993000023, 49.069989000000106 ], [ -123.806468305999957, 49.07012000400011 ], [ -123.807107479999942, 49.070646998000079 ], [ -123.807206413999936, 49.070834997000105 ], [ -123.807963493999978, 49.071171109000062 ], [ -123.808585699999952, 49.071554209000105 ], [ -123.808716689999983, 49.072002807000047 ], [ -123.809133611999954, 49.072360294000127 ], [ -123.809454623999926, 49.07280750400011 ], [ -123.809557791999936, 49.073193492000044 ], [ -123.809494681999951, 49.073472594000073 ], [ -123.809196390999901, 49.073690510000063 ], [ -123.809286201999967, 49.074139107000065 ], [ -123.810130909999941, 49.074718804 ], [ -123.810395587999949, 49.075022195000038 ], [ -123.811471414, 49.075546304000063 ], [ -123.812039296999927, 49.076048334000092 ], [ -123.81169853199999, 49.076041396000065 ], [ -123.811683064999897, 49.076370784000105 ], [ -123.812264987999953, 49.076382632000033 ], [ -123.812575191999926, 49.076904994000145 ], [ -123.813102698999955, 49.077271008000089 ], [ -123.81360691699993, 49.078004507000038 ], [ -123.813969078999918, 49.078343395000026 ], [ -123.814194311999927, 49.078810504000039 ], [ -123.81406550299999, 49.07924210100002 ], [ -123.814622601999929, 49.079823186000098 ], [ -123.814631287999958, 49.080033483000065 ], [ -123.811865925999982, 49.079977220000053 ], [ -123.811842326, 49.080479782000054 ], [ -123.811366599999957, 49.080223688000046 ], [ -123.810702188, 49.079807591000083 ], [ -123.810413204999975, 49.079582793000071 ], [ -123.810050893999957, 49.079199912000028 ], [ -123.809620417999923, 49.078662074000114 ], [ -123.809043205999956, 49.077940892000065 ], [ -123.809012029999934, 49.077917102000036 ], [ -123.80894913899999, 49.077869045000071 ], [ -123.80870650699994, 49.077683704000066 ], [ -123.80846657599993, 49.077548198000031 ], [ -123.806860087999979, 49.076576014000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.785949747271262", "sL_AssetLoss": "13651", "sL_BldgLoss": "10729", "sL_StrLoss": "5420", "sL_NStrLoss": "5309", "sL_ContLoss": "2922", "geom_point": "0101000020E6100000B933341AD0F45EC0B5AF55E5EF894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.822793735999952, 49.076250926000071 ], [ -123.82571608799995, 49.076310088000049 ], [ -123.825913891999946, 49.076990396000035 ], [ -123.826558905999917, 49.077822191000088 ], [ -123.82700409899999, 49.078242288000041 ], [ -123.826993702000024, 49.078458784000048 ], [ -123.826627710999901, 49.078739307000049 ], [ -123.826579676999984, 49.079081199000065 ], [ -123.826431115999966, 49.079280505000057 ], [ -123.825954391999915, 49.079347493000064 ], [ -123.825332083999953, 49.079072603000029 ], [ -123.824917704999933, 49.078787785000067 ], [ -123.82368357799993, 49.077051699 ], [ -123.822793735999952, 49.076250926000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.808667972575906", "sL_AssetLoss": "20420", "sL_BldgLoss": "16513", "sL_StrLoss": "8760", "sL_NStrLoss": "7753", "sL_ContLoss": "3907", "geom_point": "0101000020E6100000FB5C6DC5BEF45EC0B0530F45BF884840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.821540823999982, 49.068347453000079 ], [ -123.821561604999943, 49.067902799000059 ], [ -123.820938460999983, 49.067890163000065 ], [ -123.820842738999929, 49.067819744000104 ], [ -123.820943910999958, 49.065655635000063 ], [ -123.822082347999981, 49.066310663000067 ], [ -123.82295678199992, 49.06681379900008 ], [ -123.82312382899994, 49.0668907740001 ], [ -123.823328894999989, 49.066985308000092 ], [ -123.824368394999937, 49.067332411000045 ], [ -123.826763980999942, 49.068013988000082 ], [ -123.826853280999956, 49.068044084000135 ], [ -123.828706804999968, 49.068668510000073 ], [ -123.829624052999918, 49.06891293600011 ], [ -123.829609182999917, 49.069232266000085 ], [ -123.826972210999926, 49.069178971000092 ], [ -123.826943009999951, 49.069805329000125 ], [ -123.821477855999902, 49.069694669000128 ], [ -123.821527603999968, 49.068630286000051 ], [ -123.82155859, 49.06862891 ], [ -123.821540823999982, 49.068347453000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.82025718238789", "sL_AssetLoss": "24574", "sL_BldgLoss": "20157", "sL_StrLoss": "11900", "sL_NStrLoss": "8257", "sL_ContLoss": "4417", "geom_point": "0101000020E61000004A16281093F45EC0244EDD4B50894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.818872409999955, 49.071760686000083 ], [ -123.818587013999903, 49.071087107000039 ], [ -123.818367413999937, 49.071017302000051 ], [ -123.818281889999966, 49.070793697000092 ], [ -123.8176857, 49.07032940800012 ], [ -123.816991216999952, 49.069803898000067 ], [ -123.816934393999958, 49.069641509000071 ], [ -123.815638709999988, 49.068402710000072 ], [ -123.81656724699999, 49.068421582000042 ], [ -123.81665601499999, 49.068556197000099 ], [ -123.817074299999959, 49.06901200500009 ], [ -123.817677996999961, 49.069471780000079 ], [ -123.817675743999956, 49.069519905000135 ], [ -123.817747880999889, 49.069521370000096 ], [ -123.818561635999941, 49.069766612000173 ], [ -123.818549666999971, 49.070022357000042 ], [ -123.819029644999929, 49.070032100000049 ], [ -123.81901002099994, 49.070451447000053 ], [ -123.819824741, 49.070467980000053 ], [ -123.819794482999953, 49.071114836000099 ], [ -123.822199535999957, 49.071163605000081 ], [ -123.823462100999976, 49.071907403000132 ], [ -123.824142399999971, 49.072469993000041 ], [ -123.824570665999943, 49.073035252000096 ], [ -123.824487695999963, 49.074812675000082 ], [ -123.82441198299999, 49.074811143000048 ], [ -123.824359554999887, 49.075934175000022 ], [ -123.82270919699998, 49.075900752000095 ], [ -123.822696906999937, 49.076163787000041 ], [ -123.822335120999981, 49.075838203000053 ], [ -123.821776103999952, 49.075140411000028 ], [ -123.821302881999912, 49.074747302000027 ], [ -123.820727692999967, 49.073915490000097 ], [ -123.820243698999917, 49.073549495000059 ], [ -123.820013011999905, 49.072867300000055 ], [ -123.819320007999977, 49.072296207000129 ], [ -123.818872409999955, 49.071760686000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22216416", "BldgCostT": "15321666", "sL_LossRatio": "0.837061171466586", "sL_AssetLoss": "133634.2", "sL_BldgLoss": "111860", "sL_StrLoss": "68845", "sL_NStrLoss": "43015", "sL_ContLoss": "21774.2", "geom_point": "0101000020E610000011C73680E9F55EC0E9CDB06AF38A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.838532924999981, 49.090927917000045 ], [ -123.838673860999975, 49.087890107000035 ], [ -123.844141189999945, 49.087999891000031 ], [ -123.844130112999892, 49.088239268000073 ], [ -123.844878378999937, 49.088254271000039 ], [ -123.844778779999956, 49.090407278000093 ], [ -123.847284023, 49.090457472000075 ], [ -123.847401813999952, 49.087908222000124 ], [ -123.849636425999918, 49.08795294500004 ], [ -123.849638049999953, 49.087917751000084 ], [ -123.846722002999968, 49.08785938100003 ], [ -123.846725148999965, 49.087791301000053 ], [ -123.845804573999956, 49.087772858000115 ], [ -123.845815471999956, 49.0875371710001 ], [ -123.842085452999953, 49.08746236200011 ], [ -123.842205253999907, 49.084875675000077 ], [ -123.841666393999944, 49.084864857000106 ], [ -123.841691646999934, 49.084319699000069 ], [ -123.840358578999897, 49.084292924000067 ], [ -123.840419019999928, 49.082988922 ], [ -123.840195152999968, 49.082984424000095 ], [ -123.84027544599995, 49.081252182000135 ], [ -123.84030419099993, 49.080631965000052 ], [ -123.838793144999954, 49.080601593000068 ], [ -123.838796233999972, 49.080534984000089 ], [ -123.837077900999944, 49.080500419000025 ], [ -123.837186215999921, 49.080354402000125 ], [ -123.837957581999945, 49.079908600000095 ], [ -123.838077799999965, 49.07962799400007 ], [ -123.837529596999943, 49.078840513000053 ], [ -123.836373881999947, 49.077892429000073 ], [ -123.836394694999967, 49.077444134000075 ], [ -123.835813157999951, 49.077432425000026 ], [ -123.835335180999962, 49.077040294000021 ], [ -123.834912294999953, 49.076296791000068 ], [ -123.83435498299994, 49.075661601 ], [ -123.832995505999961, 49.074673193000045 ], [ -123.832100812999911, 49.074399799000112 ], [ -123.831808487999936, 49.074052294000118 ], [ -123.831762299999951, 49.073808690000078 ], [ -123.831070314, 49.073328797000102 ], [ -123.830079702, 49.073075285000073 ], [ -123.829773207999907, 49.072909172000074 ], [ -123.829910830999935, 49.069953539000075 ], [ -123.831702994999944, 49.069989717000048 ], [ -123.831787612999932, 49.070057400000067 ], [ -123.832118504000022, 49.070446768000068 ], [ -123.832321802999957, 49.070686005000042 ], [ -123.833103810999958, 49.071602494000054 ], [ -123.836694453999925, 49.075592125000064 ], [ -123.836917125999946, 49.075839511000055 ], [ -123.838272895000017, 49.077451997000132 ], [ -123.838540113999969, 49.077736586000114 ], [ -123.839008380999971, 49.078079187000128 ], [ -123.839875302999985, 49.078557793000144 ], [ -123.840568900999955, 49.079177008000023 ], [ -123.840767221999954, 49.079325100000084 ], [ -123.840971305999943, 49.079437296000023 ], [ -123.842709002999953, 49.080134101000034 ], [ -123.84303371799993, 49.08030100400002 ], [ -123.843092442999961, 49.080343052000096 ], [ -123.843265398999961, 49.080466901000072 ], [ -123.843409914999967, 49.080613253000088 ], [ -123.843452210999942, 49.080656104000077 ], [ -123.843667087999918, 49.081096392000084 ], [ -123.843718223999986, 49.081471211000078 ], [ -123.843703228999985, 49.08166520700005 ], [ -123.843684116999952, 49.08191268800006 ], [ -123.84368369299996, 49.082718806000038 ], [ -123.843719508999968, 49.082980704000093 ], [ -123.84380017499997, 49.083246201000073 ], [ -123.844131716999925, 49.083857200000054 ], [ -123.84426298899993, 49.084183196000026 ], [ -123.844731492999983, 49.085795697000037 ], [ -123.844883511999939, 49.086088807000102 ], [ -123.845152307999925, 49.086309385000099 ], [ -123.845416899999947, 49.086386803000039 ], [ -123.847807819, 49.086429698000082 ], [ -123.849367822999966, 49.086457687000085 ], [ -123.850623497999933, 49.08648020400009 ], [ -123.850564451999944, 49.090232580000048 ], [ -123.850524401999948, 49.092779208000096 ], [ -123.850522728, 49.092877896000076 ], [ -123.850510445999959, 49.093592612000123 ], [ -123.85050834399999, 49.093714362000057 ], [ -123.850507508999939, 49.09376370600009 ], [ -123.850483335999968, 49.095171914000041 ], [ -123.850477411999975, 49.095517991000044 ], [ -123.848097917999951, 49.095487505000051 ], [ -123.84778413399999, 49.09559809900005 ], [ -123.84704359599999, 49.095859111000038 ], [ -123.846699395999948, 49.095401791000029 ], [ -123.846314692999897, 49.094754697000077 ], [ -123.846133421999951, 49.094532197000014 ], [ -123.84592921499997, 49.09436150600002 ], [ -123.845785163999963, 49.094283243000071 ], [ -123.845637401999923, 49.09420294700007 ], [ -123.845519508999971, 49.094138906000069 ], [ -123.844618334999964, 49.093653429000064 ], [ -123.844583489999948, 49.093633310000044 ], [ -123.843741459999976, 49.093146802000078 ], [ -123.843054567999943, 49.092852015000098 ], [ -123.842270644999971, 49.092584112000019 ], [ -123.841382168999971, 49.092329409000108 ], [ -123.840315334999971, 49.092084610000043 ], [ -123.839844351999901, 49.091913930000089 ], [ -123.839469661999885, 49.091732590000113 ], [ -123.839097082999899, 49.091506230000086 ], [ -123.838717247999938, 49.091229321000093 ], [ -123.83837876399997, 49.090924817000101 ], [ -123.838532924999981, 49.090927917000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27695000", "BldgCostT": "19100000", "sL_LossRatio": "0.815181736685547", "sL_AssetLoss": "196328", "sL_BldgLoss": "160043", "sL_StrLoss": "89847", "sL_NStrLoss": "70196", "sL_ContLoss": "36285", "geom_point": "0101000020E61000009A3898D1B8F45EC02783C4F23E8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.834674780999947, 49.08783176300004 ], [ -123.833389120999954, 49.086411647000034 ], [ -123.83321585499999, 49.086257949000078 ], [ -123.833071182999944, 49.086129620000037 ], [ -123.832771993999927, 49.085944371000053 ], [ -123.832414649999947, 49.085774138000069 ], [ -123.832077023999986, 49.085650245000039 ], [ -123.831553778999961, 49.085517200000012 ], [ -123.831030917999925, 49.085434604000142 ], [ -123.830736126, 49.08542031900005 ], [ -123.830457667999951, 49.085406821000078 ], [ -123.827614379999943, 49.085563757000038 ], [ -123.826478340999941, 49.085513817000013 ], [ -123.826490181999986, 49.085259987 ], [ -123.824761052000014, 49.085225010000109 ], [ -123.823816460000018, 49.084807826 ], [ -123.823065132999901, 49.084579162000082 ], [ -123.822657101999965, 49.084528572000103 ], [ -123.821480228999945, 49.084507425 ], [ -123.821166780999974, 49.084414356000103 ], [ -123.82118313399998, 49.08406466700005 ], [ -123.820080616999974, 49.084042314000051 ], [ -123.819301858999921, 49.083602896000073 ], [ -123.819110296999938, 49.083494798000089 ], [ -123.815848320999947, 49.082106882000062 ], [ -123.815813602999981, 49.08209211000009 ], [ -123.8152886, 49.081888431000046 ], [ -123.81311878299999, 49.081046551000071 ], [ -123.813122071999928, 49.080976457000084 ], [ -123.815426727999949, 49.081023325000039 ], [ -123.816500698999903, 49.0816631960001 ], [ -123.817057193999943, 49.082144616000079 ], [ -123.81730608699992, 49.082224404000073 ], [ -123.817468200999912, 49.082187399000112 ], [ -123.81767080399996, 49.08199650900012 ], [ -123.817570084999929, 49.081629096000079 ], [ -123.816391225999951, 49.080360711000012 ], [ -123.816492093999898, 49.078208133000047 ], [ -123.820407121999907, 49.07828760000006 ], [ -123.820479927999955, 49.076730957000045 ], [ -123.817202374999979, 49.076664438000158 ], [ -123.817207455999949, 49.076555946000084 ], [ -123.815451055999986, 49.076520259000027 ], [ -123.815343757999983, 49.078809020000037 ], [ -123.815009386999989, 49.077581499000068 ], [ -123.814184068999936, 49.07642168000006 ], [ -123.814495794999971, 49.076428020000016 ], [ -123.814511241999966, 49.076098631 ], [ -123.813946018999928, 49.076087135000066 ], [ -123.813805389999956, 49.075889498000052 ], [ -123.813061204999897, 49.074824211000085 ], [ -123.81241399399994, 49.07455931000009 ], [ -123.811116792999925, 49.073146511000033 ], [ -123.810989992999964, 49.072895791000057 ], [ -123.810981189999922, 49.072310510000086 ], [ -123.810030700999931, 49.071121186000063 ], [ -123.811331100999922, 49.071058590000142 ], [ -123.81239049199999, 49.070627005000027 ], [ -123.812685503999916, 49.070248205000105 ], [ -123.813873012999949, 49.070014589000074 ], [ -123.814622394999944, 49.069775407000122 ], [ -123.814746807999967, 49.069890708000081 ], [ -123.815200318999928, 49.069977607000055 ], [ -123.815574419999962, 49.070182703000071 ], [ -123.815839620999967, 49.07047750300012 ], [ -123.816351297999987, 49.070824994000098 ], [ -123.816661012999958, 49.071307799000074 ], [ -123.817314397999951, 49.071941596000045 ], [ -123.817414389999925, 49.072166607000057 ], [ -123.817717895999976, 49.072280609000124 ], [ -123.818120120999936, 49.072602400000093 ], [ -123.81886920599996, 49.073236208000083 ], [ -123.819053582999928, 49.073566607000068 ], [ -123.819383896, 49.073780215000042 ], [ -123.819608277999947, 49.074093599000037 ], [ -123.820370812999897, 49.074637589000083 ], [ -123.820563718999921, 49.075588996000079 ], [ -123.82132329699999, 49.075952209000015 ], [ -123.822168206999947, 49.076531804000062 ], [ -123.823309603999945, 49.077602800000072 ], [ -123.823937914999988, 49.078336298000082 ], [ -123.82411588599993, 49.079143795000064 ], [ -123.824269502999954, 49.079385888000012 ], [ -123.825033782999924, 49.080082402000102 ], [ -123.825268883999954, 49.080233301000142 ], [ -123.826121912999938, 49.08046119000003 ], [ -123.826804599999946, 49.080348713000092 ], [ -123.827642496999957, 49.080432709000043 ], [ -123.828289883999943, 49.080697606000101 ], [ -123.828939579999911, 49.081808495000139 ], [ -123.828825400999946, 49.082439394000055 ], [ -123.828898191999912, 49.082717212000013 ], [ -123.829082385, 49.083013408000042 ], [ -123.82926078199999, 49.083110205 ], [ -123.829865101999985, 49.083141605000023 ], [ -123.830519688999971, 49.083056089000067 ], [ -123.83079250199998, 49.082937896000011 ], [ -123.830816485999975, 49.082794108000087 ], [ -123.83071709399999, 49.082497798000105 ], [ -123.830043599999968, 49.081495192000098 ], [ -123.829762893999884, 49.080381498000037 ], [ -123.829525893999971, 49.080140795000055 ], [ -123.829521809999946, 49.079826008000126 ], [ -123.82973301, 49.079383090000071 ], [ -123.830424477999912, 49.078928798000042 ], [ -123.830942493999927, 49.078861803000052 ], [ -123.831527899999941, 49.078569892000118 ], [ -123.832251986999964, 49.078363328000108 ], [ -123.833616502999973, 49.078390841000086 ], [ -123.83356326699996, 49.079535940000056 ], [ -123.834247349999927, 49.079549727000014 ], [ -123.834183532999987, 49.080922761000089 ], [ -123.835527991, 49.080949843000056 ], [ -123.835525587999925, 49.080951089000138 ], [ -123.83437449799996, 49.080968214000066 ], [ -123.834128591999942, 49.081042309000047 ], [ -123.834021106999941, 49.081160503000078 ], [ -123.834057401999942, 49.08165470200003 ], [ -123.834365713999915, 49.082074793000075 ], [ -123.834586914999988, 49.08220020600006 ], [ -123.835064191999919, 49.082007906000094 ], [ -123.835404496999971, 49.081959490000045 ], [ -123.835519744999914, 49.081825382000083 ], [ -123.835393183999955, 49.084549779000099 ], [ -123.834406636, 49.084529908000022 ], [ -123.83439469399994, 49.084786829000087 ], [ -123.835714113999984, 49.084813403000069 ], [ -123.835698430999912, 49.085151023000044 ], [ -123.836014922999965, 49.085157395000117 ], [ -123.836004594999906, 49.085379785000065 ], [ -123.8362135299999, 49.085383991000121 ], [ -123.836192539999928, 49.08583593500007 ], [ -123.836383950999931, 49.085839787000033 ], [ -123.836371403999948, 49.086109987000057 ], [ -123.836912446999946, 49.086120874000123 ], [ -123.83689015799996, 49.086600957000016 ], [ -123.837382559, 49.086610863000068 ], [ -123.83733611, 49.087611529000128 ], [ -123.838291387999959, 49.087630742000073 ], [ -123.83814816099999, 49.090717361000024 ], [ -123.837305194999928, 49.089958985000088 ], [ -123.837183266999972, 49.089849273000013 ], [ -123.836386836999949, 49.089295624000023 ], [ -123.835782356, 49.0888754160001 ], [ -123.835175638999914, 49.088303721000045 ], [ -123.834674780999947, 49.08783176300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.789690721649485", "sL_AssetLoss": "4850", "sL_BldgLoss": "3830", "sL_StrLoss": "2150", "sL_NStrLoss": "1680", "sL_ContLoss": "1020", "geom_point": "0101000020E6100000631E220333F35EC0284B4ACD60874840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.797973488999958, 49.057916385000027 ], [ -123.79797854499995, 49.057809321000057 ], [ -123.79576031500001, 49.057763828000049 ], [ -123.795778757999983, 49.05737371900009 ], [ -123.800274852999934, 49.057347279000055 ], [ -123.803470182999916, 49.057328316000053 ], [ -123.803437206999902, 49.058028243000081 ], [ -123.797973488999958, 49.057916385000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61346083", "BldgCostT": "41308333", "sL_LossRatio": "0.829266071782569", "sL_AssetLoss": "316285.7", "sL_BldgLoss": "262285", "sL_StrLoss": "164215", "sL_NStrLoss": "98070", "sL_ContLoss": "54000.7", "geom_point": "0101000020E61000000190C99871F35EC05E0510C2CC8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.803096497999917, 49.08880768700007 ], [ -123.803015006999942, 49.088591706000059 ], [ -123.802735505999976, 49.088367994000045 ], [ -123.802267005999965, 49.088062090000079 ], [ -123.801118602999964, 49.087550492000069 ], [ -123.800846408999959, 49.087376510000077 ], [ -123.800298399999988, 49.086928499000059 ], [ -123.80000474299996, 49.086722737000073 ], [ -123.79982169, 49.086594511000023 ], [ -123.799630606999955, 49.086527493000098 ], [ -123.799469309999935, 49.086524201000088 ], [ -123.79922739, 49.086604801000128 ], [ -123.799111182999937, 49.086719494000093 ], [ -123.797848398999975, 49.08597589500004 ], [ -123.797210230999895, 49.08562987400007 ], [ -123.796674522000032, 49.085369487000058 ], [ -123.796249266999922, 49.085278598000059 ], [ -123.79563348799995, 49.085128809000032 ], [ -123.795047803999964, 49.085132105000113 ], [ -123.794608398999955, 49.085023093000103 ], [ -123.794372589999966, 49.084802103000115 ], [ -123.793713488999913, 49.08372668700008 ], [ -123.792958986999963, 49.082816893000043 ], [ -123.792546148999961, 49.082470203000092 ], [ -123.791540803999965, 49.08162590000007 ], [ -123.790469079999966, 49.080803098000111 ], [ -123.78974730099999, 49.080157792000136 ], [ -123.789574288, 49.079911100000068 ], [ -123.789486103999977, 49.079405794000081 ], [ -123.78934399299996, 49.07920111 ], [ -123.789111320999936, 49.079061200000062 ], [ -123.78871641399995, 49.078965702000104 ], [ -123.786979804999987, 49.078895714000041 ], [ -123.787041578999919, 49.07814219600003 ], [ -123.7892015, 49.078197498000129 ], [ -123.789553187999971, 49.07813720300009 ], [ -123.789873007999972, 49.077998695000062 ], [ -123.790205508999946, 49.077792998000071 ], [ -123.790612292999967, 49.077637499000048 ], [ -123.790896097999948, 49.077565817000057 ], [ -123.791234981999978, 49.07754489800007 ], [ -123.791651194999986, 49.077564195000079 ], [ -123.79274379, 49.07774429400007 ], [ -123.793127494999936, 49.077873804000049 ], [ -123.793492599999965, 49.0780505910001 ], [ -123.794235488999945, 49.07848021100007 ], [ -123.794953014999962, 49.078752494000106 ], [ -123.795775108999976, 49.078954003000092 ], [ -123.797381607999952, 49.078999488000079 ], [ -123.798436439999975, 49.079029315000128 ], [ -123.798661601999953, 49.079035690000062 ], [ -123.799107523999965, 49.079039645000108 ], [ -123.799997246999908, 49.079047465000066 ], [ -123.801466232999957, 49.079060388000059 ], [ -123.802215730999976, 49.079066957000101 ], [ -123.803379776999932, 49.07907719100006 ], [ -123.80439399799999, 49.079086069000041 ], [ -123.80575042199996, 49.079097953 ], [ -123.806385495999962, 49.079103485000068 ], [ -123.806407838999974, 49.079104105000049 ], [ -123.809661488999922, 49.079191009000084 ], [ -123.810050893999957, 49.079199912000028 ], [ -123.810413204999975, 49.079582793000071 ], [ -123.810702188, 49.079807591000083 ], [ -123.811366599999957, 49.080223688000046 ], [ -123.811842326, 49.080479782000054 ], [ -123.811834325999911, 49.080650171000045 ], [ -123.811393729999935, 49.080641200000102 ], [ -123.811392472999927, 49.080667935000044 ], [ -123.811356050999947, 49.081443380000039 ], [ -123.8096177, 49.081407968000093 ], [ -123.809617180999936, 49.08141902300013 ], [ -123.809596971999909, 49.081418611000096 ], [ -123.809589956999986, 49.081418468000017 ], [ -123.80958746, 49.081471597000082 ], [ -123.809595433999931, 49.081471759000088 ], [ -123.811361323999947, 49.081507732000063 ], [ -123.811334062999961, 49.082088126000059 ], [ -123.811535554, 49.082092229000054 ], [ -123.811366492999966, 49.085691467000117 ], [ -123.810110298999959, 49.085665883000061 ], [ -123.810024230999929, 49.087496977000114 ], [ -123.811790073999987, 49.08753293700007 ], [ -123.811760685999943, 49.088158624000052 ], [ -123.813096363999961, 49.08818580500013 ], [ -123.81306650499999, 49.088821886000048 ], [ -123.815725106999963, 49.088875937000076 ], [ -123.815646494999925, 49.090552566000092 ], [ -123.81509962299999, 49.090607804000101 ], [ -123.81477636399994, 49.091085453000048 ], [ -123.814765889999961, 49.091100903000076 ], [ -123.814406682999916, 49.091379110000098 ], [ -123.812831784999958, 49.09237200200004 ], [ -123.812451677999945, 49.092511098000053 ], [ -123.811585137999927, 49.092705186000096 ], [ -123.811283298999925, 49.092772799000024 ], [ -123.810582010999951, 49.092875607000053 ], [ -123.810252005, 49.092881507000072 ], [ -123.809275403999948, 49.092698588000118 ], [ -123.807155593999966, 49.091893409000086 ], [ -123.806527901, 49.091712193000063 ], [ -123.806236382999941, 49.091566694000043 ], [ -123.805802785999973, 49.091215590000125 ], [ -123.8048892899999, 49.090624993000034 ], [ -123.803867997999973, 49.090144804000012 ], [ -123.803482579999965, 49.089845994 ], [ -123.803284704999967, 49.089545584000078 ], [ -123.803107225999966, 49.089160097000018 ], [ -123.803096749999924, 49.088815628000127 ], [ -123.803096497999917, 49.08880768700007 ] ], [ [ -123.806281079999962, 49.088309172000017 ], [ -123.806307379999936, 49.087750626000123 ], [ -123.804541532, 49.087714577000014 ], [ -123.804674800999962, 49.084886342000054 ], [ -123.80174720199993, 49.084826511000131 ], [ -123.801882698, 49.081954483000047 ], [ -123.800228841999967, 49.081920648000128 ], [ -123.800206859999932, 49.082386253000038 ], [ -123.795525734999984, 49.082290347000104 ], [ -123.795512481999978, 49.082570457000131 ], [ -123.798782062999976, 49.082637465000062 ], [ -123.798687422999933, 49.084640696000108 ], [ -123.799857045999957, 49.084664642000106 ], [ -123.799804932999962, 49.085768194000089 ], [ -123.802698010999947, 49.08582737100005 ], [ -123.802640382999968, 49.087049258 ], [ -123.802690083999963, 49.087050274000056 ], [ -123.802666580999954, 49.087548613000081 ], [ -123.802694113999934, 49.087549175000042 ], [ -123.802681348999897, 49.087819830000051 ], [ -123.803191811999966, 49.087830263000043 ], [ -123.803176553999933, 49.08815384900003 ], [ -123.803493092999958, 49.08815164700011 ], [ -123.803494717999953, 49.088252276000013 ], [ -123.806281079999962, 49.088309172000017 ] ], [ [ -123.793943432999953, 49.081929765000055 ], [ -123.793940422999967, 49.081740912000058 ], [ -123.792708047999923, 49.081749383000087 ], [ -123.792710516999989, 49.081904452000096 ], [ -123.793943432999953, 49.081929765000055 ] ], [ [ -123.791873594999984, 49.08094550600007 ], [ -123.791869304999949, 49.080675668000062 ], [ -123.794334, 49.080658732000146 ], [ -123.794338301999971, 49.080928570000026 ], [ -123.794804132999957, 49.080925364000052 ], [ -123.794831453999933, 49.080348066000028 ], [ -123.793615369999912, 49.080323110000108 ], [ -123.79361625199999, 49.080304491000035 ], [ -123.793659154999958, 49.079398404000081 ], [ -123.791634742999975, 49.079356827000062 ], [ -123.791625257999925, 49.079556971000081 ], [ -123.790389278999925, 49.079531569000018 ], [ -123.79038830899999, 49.079552001000096 ], [ -123.790208106999955, 49.07954829600002 ], [ -123.790211722999985, 49.079776182000039 ], [ -123.790794689999984, 49.0797881660001 ], [ -123.790780150999979, 49.080094839000047 ], [ -123.791009901999971, 49.080099561000139 ], [ -123.791007897999961, 49.080141837000099 ], [ -123.791039166999937, 49.080141623000074 ], [ -123.791040913999922, 49.080251594000046 ], [ -123.791043824, 49.080434782000069 ], [ -123.79126151199992, 49.080439255 ], [ -123.791250104999946, 49.080679913000104 ], [ -123.791458521999942, 49.080678485000107 ], [ -123.791460208999951, 49.080784652000098 ], [ -123.791610818999942, 49.08078774700008 ], [ -123.79160325399998, 49.080947360000046 ], [ -123.791873594999984, 49.08094550600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8489750", "BldgCostT": "5855000", "sL_LossRatio": "0.871656386049251", "sL_AssetLoss": "41437.2", "sL_BldgLoss": "36119", "sL_StrLoss": "24052", "sL_NStrLoss": "12067", "sL_ContLoss": "5318.2", "geom_point": "0101000020E6100000DD2F9FAC98F45EC01EE028FDAD8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.823045399999955, 49.093493504000094 ], [ -123.81982149699995, 49.091245898000054 ], [ -123.819412008999947, 49.090934002000054 ], [ -123.819094810999957, 49.090782604000083 ], [ -123.81866730199998, 49.090678512000125 ], [ -123.817610780999985, 49.090539003000046 ], [ -123.816839788999971, 49.09049460800005 ], [ -123.816236254999964, 49.09049380800009 ], [ -123.816286665999968, 49.089418359000021 ], [ -123.817202249999937, 49.089436954000043 ], [ -123.817234664999972, 49.088745081000106 ], [ -123.822702043999982, 49.088855955000028 ], [ -123.822584148999923, 49.091378437000088 ], [ -123.826133773, 49.091450271000092 ], [ -123.82603785799995, 49.093505630000038 ], [ -123.825965805999971, 49.095049481000089 ], [ -123.82577079, 49.095045538000051 ], [ -123.823045399999955, 49.093493504000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62534978", "BldgCostT": "41979857", "sL_LossRatio": "0.822473004151812", "sL_AssetLoss": "330699", "sL_BldgLoss": "271991", "sL_StrLoss": "169089", "sL_NStrLoss": "102902", "sL_ContLoss": "58708", "geom_point": "0101000020E6100000E3AE0C47A3F55EC021819244278C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.83930110599999, 49.104245384000137 ], [ -123.839173602999935, 49.103905964000027 ], [ -123.838533040999934, 49.103095851000099 ], [ -123.838376130999919, 49.102567435000033 ], [ -123.838356212999912, 49.102544925000124 ], [ -123.838397889999939, 49.101646940000123 ], [ -123.841112969999941, 49.101701483000113 ], [ -123.841066445999971, 49.098948576000083 ], [ -123.84147737499994, 49.098945581000123 ], [ -123.841472812999953, 49.098675746000076 ], [ -123.842294663999922, 49.098669753000117 ], [ -123.842276399999918, 49.097590413000049 ], [ -123.84145456499999, 49.097596407000012 ], [ -123.8414526, 49.097480212000029 ], [ -123.841350839, 49.097480963000088 ], [ -123.841357038999959, 49.096688462 ], [ -123.841349338999947, 49.095438229000074 ], [ -123.840596274999911, 49.09544371700008 ], [ -123.840591718999988, 49.095173882000076 ], [ -123.84018082199999, 49.095176873000092 ], [ -123.840176266999947, 49.09490703900007 ], [ -123.839578173999939, 49.094911389000053 ], [ -123.839543979999974, 49.095648645000026 ], [ -123.834075765, 49.095538629000096 ], [ -123.834076527999983, 49.095522200000062 ], [ -123.833506444999955, 49.095510714000056 ], [ -123.833534165999978, 49.094914706000061 ], [ -123.82816958799998, 49.094806476000038 ], [ -123.828229290999971, 49.093525918000054 ], [ -123.828337383999965, 49.091207262000083 ], [ -123.82887413, 49.091218103000124 ], [ -123.828881537999962, 49.091059152000078 ], [ -123.82849252699999, 49.091051295000064 ], [ -123.828648191999932, 49.087711528000078 ], [ -123.826377952999962, 49.087665648000097 ], [ -123.826478340999941, 49.085513817000013 ], [ -123.827614379999943, 49.085563757000038 ], [ -123.830457667999951, 49.085406821000078 ], [ -123.830736126, 49.08542031900005 ], [ -123.831030917999925, 49.085434604000142 ], [ -123.831553778999961, 49.085517200000012 ], [ -123.832077023999986, 49.085650245000039 ], [ -123.832414649999947, 49.085774138000069 ], [ -123.832771993999927, 49.085944371000053 ], [ -123.833071182999944, 49.086129620000037 ], [ -123.83321585499999, 49.086257949000078 ], [ -123.833389120999954, 49.086411647000034 ], [ -123.834674780999947, 49.08783176300004 ], [ -123.835175638999914, 49.088303721000045 ], [ -123.835782356, 49.0888754160001 ], [ -123.836386836999949, 49.089295624000023 ], [ -123.837183266999972, 49.089849273000013 ], [ -123.837305194999928, 49.089958985000088 ], [ -123.83814816099999, 49.090717361000024 ], [ -123.83813875899996, 49.090919992000131 ], [ -123.83837876399997, 49.090924817000101 ], [ -123.838717247999938, 49.091229321000093 ], [ -123.839097082999899, 49.091506230000086 ], [ -123.839469661999885, 49.091732590000113 ], [ -123.839844351999901, 49.091913930000089 ], [ -123.840315334999971, 49.092084610000043 ], [ -123.841382168999971, 49.092329409000108 ], [ -123.842270644999971, 49.092584112000019 ], [ -123.843054567999943, 49.092852015000098 ], [ -123.843741459999976, 49.093146802000078 ], [ -123.844583489999948, 49.093633310000044 ], [ -123.844618334999964, 49.093653429000064 ], [ -123.845519508999971, 49.094138906000069 ], [ -123.845637401999923, 49.09420294700007 ], [ -123.845785163999963, 49.094283243000071 ], [ -123.84592921499997, 49.09436150600002 ], [ -123.846133421999951, 49.094532197000014 ], [ -123.846314692999897, 49.094754697000077 ], [ -123.846699395999948, 49.095401791000029 ], [ -123.84704359599999, 49.095859111000038 ], [ -123.847642362999977, 49.096446210000103 ], [ -123.847737361999961, 49.096539433000046 ], [ -123.847161173999936, 49.09680711200005 ], [ -123.845941521000015, 49.096788997000047 ], [ -123.84476389699999, 49.096777103000058 ], [ -123.844748031000023, 49.097301356000159 ], [ -123.8447172, 49.098318892000066 ], [ -123.844769794999976, 49.098659488000102 ], [ -123.844978148999971, 49.098927712000069 ], [ -123.845370406000015, 49.099432603000082 ], [ -123.845840717999963, 49.100011647000045 ], [ -123.846175717999984, 49.100424090000111 ], [ -123.846320612999961, 49.100694497000099 ], [ -123.846337797999951, 49.100912790000116 ], [ -123.847518460999964, 49.1009040470001 ], [ -123.84853211199993, 49.100896526000028 ], [ -123.848603501999932, 49.100896 ], [ -123.850332481999928, 49.100882890000079 ], [ -123.8503151029999, 49.102414775000099 ], [ -123.850304802999972, 49.103321217000044 ], [ -123.850307155999971, 49.103474477000049 ], [ -123.850321995999963, 49.104431096000084 ], [ -123.847769015, 49.10438460200011 ], [ -123.846955180999927, 49.104372792000035 ], [ -123.844634204999934, 49.104341589000065 ], [ -123.844378384999956, 49.104368014000045 ], [ -123.843539792999962, 49.104331414000107 ], [ -123.843297209999932, 49.104296830000123 ], [ -123.843164494999982, 49.104277897000038 ], [ -123.842480864999956, 49.104271313000041 ], [ -123.842384768999977, 49.104270397000093 ], [ -123.841721419999928, 49.104344622000013 ], [ -123.841566214999915, 49.104361993000026 ], [ -123.83985851099996, 49.104297996000135 ], [ -123.839792935999938, 49.104291810000099 ], [ -123.83930110599999, 49.104245384000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.865087869695671", "sL_AssetLoss": "27996", "sL_BldgLoss": "24219", "sL_StrLoss": "16270", "sL_NStrLoss": "7949", "sL_ContLoss": "3777", "geom_point": "0101000020E61000005E3800B034F45EC03BCA7F50B08A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.813590540999883, 49.084922022000036 ], [ -123.813606168999939, 49.084588990000022 ], [ -123.812953137999941, 49.084575706000116 ], [ -123.81311878299999, 49.081046551000071 ], [ -123.8152886, 49.081888431000046 ], [ -123.815813602999981, 49.08209211000009 ], [ -123.815848320999947, 49.082106882000062 ], [ -123.819110296999938, 49.083494798000089 ], [ -123.819301858999921, 49.083602896000073 ], [ -123.820080616999974, 49.084042314000051 ], [ -123.819104763999974, 49.084022519000037 ], [ -123.819057461999961, 49.08503308100007 ], [ -123.813590540999883, 49.084922022000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.813008130081301", "sL_AssetLoss": "4797", "sL_BldgLoss": "3900", "sL_StrLoss": "2060", "sL_NStrLoss": "1840", "sL_ContLoss": "897", "geom_point": "0101000020E6100000558BE31BA5F45EC000C103A0DD8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.821132308999921, 49.085151518000053 ], [ -123.821166780999974, 49.084414356000103 ], [ -123.821480228999945, 49.084507425 ], [ -123.822657101999965, 49.084528572000103 ], [ -123.823065132999901, 49.084579162000082 ], [ -123.823816460000018, 49.084807826 ], [ -123.824761052000014, 49.085225010000109 ], [ -123.821132308999921, 49.085151518000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118952250", "BldgCostT": "80565000", "sL_LossRatio": "0.817452082526161", "sL_AssetLoss": "708749.8", "sL_BldgLoss": "579369", "sL_StrLoss": "349613", "sL_NStrLoss": "229756", "sL_ContLoss": "129380.8", "geom_point": "0101000020E61000004DACEF7079F65EC0A58B7F65C68C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.855684594999943, 49.104478713000056 ], [ -123.85569209099999, 49.104315905000107 ], [ -123.854865815999958, 49.103453502000086 ], [ -123.854651376999954, 49.103229699000075 ], [ -123.854344785999928, 49.103348794000077 ], [ -123.854039199999988, 49.103388616000132 ], [ -123.850304802999972, 49.103321217000044 ], [ -123.8503151029999, 49.102414775000099 ], [ -123.850332481999928, 49.100882890000079 ], [ -123.848603501999932, 49.100896 ], [ -123.84853211199993, 49.100896526000028 ], [ -123.847518460999964, 49.1009040470001 ], [ -123.846337797999951, 49.100912790000116 ], [ -123.846320612999961, 49.100694497000099 ], [ -123.846175717999984, 49.100424090000111 ], [ -123.845840717999963, 49.100011647000045 ], [ -123.845370406000015, 49.099432603000082 ], [ -123.844978148999971, 49.098927712000069 ], [ -123.844769794999976, 49.098659488000102 ], [ -123.8447172, 49.098318892000066 ], [ -123.844748031000023, 49.097301356000159 ], [ -123.84476389699999, 49.096777103000058 ], [ -123.845941521000015, 49.096788997000047 ], [ -123.847161173999936, 49.09680711200005 ], [ -123.847737361999961, 49.096539433000046 ], [ -123.847642362999977, 49.096446210000103 ], [ -123.84704359599999, 49.095859111000038 ], [ -123.84778413399999, 49.09559809900005 ], [ -123.848097917999951, 49.095487505000051 ], [ -123.850477411999975, 49.095517991000044 ], [ -123.852365286999913, 49.095526892000109 ], [ -123.852340684999902, 49.09654294400007 ], [ -123.852324416, 49.097214801000142 ], [ -123.852349003999976, 49.097364781000081 ], [ -123.852418702999955, 49.09748409500007 ], [ -123.852559199999973, 49.097612099000074 ], [ -123.853099110999949, 49.097952486000032 ], [ -123.854258494999954, 49.098598889000151 ], [ -123.854613211999919, 49.09886000500012 ], [ -123.854743207999917, 49.099007613 ], [ -123.854802406999966, 49.099148292000102 ], [ -123.854805603999949, 49.099732913000047 ], [ -123.854728112, 49.099930390000047 ], [ -123.854676051999959, 49.099991637000073 ], [ -123.854540007999958, 49.100151802000035 ], [ -123.854117487999957, 49.10047120100009 ], [ -123.854844118999921, 49.100887389000029 ], [ -123.855075611999965, 49.101016379000043 ], [ -123.857072404999926, 49.10212880100007 ], [ -123.857363208999956, 49.102351592000119 ], [ -123.857547982999989, 49.102499394000105 ], [ -123.857948072999974, 49.102967569000057 ], [ -123.858396007999914, 49.103491711000103 ], [ -123.858534828999964, 49.103621500000095 ], [ -123.859517901999965, 49.104540696000072 ], [ -123.858116569999964, 49.104513976000078 ], [ -123.857363451999959, 49.104499593000085 ], [ -123.857327300999899, 49.10449889300002 ], [ -123.856870221999912, 49.104440202000042 ], [ -123.856843503, 49.104439880000015 ], [ -123.856283393999959, 49.104433010000058 ], [ -123.855684594999943, 49.104478713000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99126917", "BldgCostT": "67891667", "sL_LossRatio": "0.827890941061149", "sL_AssetLoss": "593734", "sL_BldgLoss": "491547", "sL_StrLoss": "293705", "sL_NStrLoss": "197842", "sL_ContLoss": "102187", "geom_point": "0101000020E61000002762F8256EF65EC07E32EF068B8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.850298317999915, 49.107771978000066 ], [ -123.850321776999948, 49.106657496000047 ], [ -123.846825816999967, 49.106638892000021 ], [ -123.846506906999963, 49.106726989000059 ], [ -123.846113279999884, 49.106981209000018 ], [ -123.845096679999955, 49.106590696000062 ], [ -123.843981399999933, 49.106144203000049 ], [ -123.843727820999931, 49.106004008000077 ], [ -123.843534183999935, 49.105839796000033 ], [ -123.84340218799997, 49.105647993000041 ], [ -123.843337202999948, 49.105455815000077 ], [ -123.843325686999918, 49.105345729000064 ], [ -123.843291923999985, 49.105022378000037 ], [ -123.843297209999932, 49.104296830000123 ], [ -123.843539792999962, 49.104331414000107 ], [ -123.844378384999956, 49.104368014000045 ], [ -123.844634204999934, 49.104341589000065 ], [ -123.846955180999927, 49.104372792000035 ], [ -123.847769015, 49.10438460200011 ], [ -123.850321995999963, 49.104431096000084 ], [ -123.850307155999971, 49.103474477000049 ], [ -123.850304802999972, 49.103321217000044 ], [ -123.854039199999988, 49.103388616000132 ], [ -123.854344785999928, 49.103348794000077 ], [ -123.854651376999954, 49.103229699000075 ], [ -123.854865815999958, 49.103453502000086 ], [ -123.85569209099999, 49.104315905000107 ], [ -123.855684594999943, 49.104478713000056 ], [ -123.855614417999917, 49.105497795000133 ], [ -123.85560308499997, 49.105653307000139 ], [ -123.855079379999964, 49.106920904000098 ], [ -123.854331691999931, 49.106812296000086 ], [ -123.851778300999953, 49.106772103000054 ], [ -123.851778305999986, 49.107364713000052 ], [ -123.851847090999982, 49.107505694000054 ], [ -123.85198340699999, 49.107606594000096 ], [ -123.852183989999943, 49.107679095000087 ], [ -123.85252600099993, 49.107711084000108 ], [ -123.854747092999929, 49.107777890000072 ], [ -123.854676214, 49.1084852890001 ], [ -123.854616888999956, 49.108641708000086 ], [ -123.854502902999982, 49.108769202000104 ], [ -123.854326094999948, 49.108864705000052 ], [ -123.85412527599999, 49.108914698000028 ], [ -123.853368989999922, 49.108916273000069 ], [ -123.852527887999926, 49.108917989000098 ], [ -123.852324892999945, 49.108956211000113 ], [ -123.852128002, 49.109040597000053 ], [ -123.851776894999929, 49.109265001000061 ], [ -123.851552600999938, 49.109350598000056 ], [ -123.851366687, 49.109372998000076 ], [ -123.850264277999926, 49.109387004000048 ], [ -123.850298317999915, 49.107771978000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.870508735303813", "sL_AssetLoss": "18202", "sL_BldgLoss": "15845", "sL_StrLoss": "10590", "sL_NStrLoss": "5255", "sL_ContLoss": "2357", "geom_point": "0101000020E61000009D83A1ED9CF35EC09FB40D2FCA8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.805863495, 49.118657594000055 ], [ -123.804763024999943, 49.118609095000089 ], [ -123.804653284999944, 49.118609256000106 ], [ -123.804695799999976, 49.11852187900007 ], [ -123.805358794999947, 49.11749069700015 ], [ -123.805370511999939, 49.117345404000048 ], [ -123.805117987999907, 49.117015 ], [ -123.805209201999901, 49.116790007000127 ], [ -123.80512271799995, 49.116520802000117 ], [ -123.805417391999953, 49.116040798000093 ], [ -123.805428084999917, 49.115842803000106 ], [ -123.805065916999936, 49.115459704000031 ], [ -123.805104176999947, 49.115126472000036 ], [ -123.805160772999955, 49.115047666000059 ], [ -123.805157692999927, 49.11485749900006 ], [ -123.805343692999955, 49.114827393000091 ], [ -123.80549030499999, 49.114682098000081 ], [ -123.805901591999913, 49.113834701000059 ], [ -123.805911975999919, 49.113555596000026 ], [ -123.805783605999963, 49.113240798000064 ], [ -123.805251485999932, 49.112632701000074 ], [ -123.804928732999926, 49.111889989000119 ], [ -123.804984220999941, 49.111889602000069 ], [ -123.804820338999946, 49.111571662000038 ], [ -123.809393838999966, 49.111471163000068 ], [ -123.809442438999923, 49.111495563000076 ], [ -123.809442773999976, 49.111588559000069 ], [ -123.809626680999941, 49.111587269000061 ], [ -123.809629300999958, 49.11174827200005 ], [ -123.807983181999987, 49.111757003000065 ], [ -123.80648770099998, 49.111800285000072 ], [ -123.806814088999914, 49.112613313000075 ], [ -123.806975772999976, 49.113016149000032 ], [ -123.807106014999974, 49.113340595000103 ], [ -123.807112514999986, 49.113356696000068 ], [ -123.807306985999986, 49.11367408800006 ], [ -123.806811586999956, 49.114542174000135 ], [ -123.806508814999958, 49.115072698000077 ], [ -123.806651601999988, 49.115271378000074 ], [ -123.807171395999944, 49.116990186000038 ], [ -123.807535982999966, 49.117300199000056 ], [ -123.808875311999941, 49.118222712000041 ], [ -123.808977674999966, 49.118314895000033 ], [ -123.809106699999944, 49.118716506000034 ], [ -123.808065572999951, 49.118697438000027 ], [ -123.80696459, 49.118677296000072 ], [ -123.805863495, 49.118657594000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "220005750", "BldgCostT": "149520000", "sL_LossRatio": "0.817328917997861", "sL_AssetLoss": "1360832.8", "sL_BldgLoss": "1112248", "sL_StrLoss": "680498", "sL_NStrLoss": "431750", "sL_ContLoss": "248584.8", "geom_point": "0101000020E6100000AAC0CA80B7F35EC042225D01BF8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.836167007999975, 49.115999490000057 ], [ -123.835735803999967, 49.115941298000109 ], [ -123.835715302999958, 49.115941304000081 ], [ -123.834848702999949, 49.115941401000029 ], [ -123.833664101999943, 49.11604088700004 ], [ -123.833375202999946, 49.116012613000123 ], [ -123.833095898999915, 49.115952896000103 ], [ -123.832633282999922, 49.115687907000066 ], [ -123.831396312999942, 49.114500105000012 ], [ -123.83208407699999, 49.114513969000036 ], [ -123.832087413999915, 49.114442321000041 ], [ -123.83309731699994, 49.11446267000013 ], [ -123.833219416999967, 49.111838941000016 ], [ -123.833248597999955, 49.111839530000154 ], [ -123.833252745999985, 49.111750392000033 ], [ -123.833226452999952, 49.111749862000039 ], [ -123.83325037900002, 49.111235679000032 ], [ -123.83320998399995, 49.111234864000068 ], [ -123.833231693999949, 49.110768307000029 ], [ -123.833229611999911, 49.1107682660001 ], [ -123.833232856999985, 49.11069853500009 ], [ -123.832434286999941, 49.110682445000066 ], [ -123.832573477999972, 49.107692057000087 ], [ -123.832067808999952, 49.107681864000078 ], [ -123.83190446, 49.111190388000061 ], [ -123.831335326999977, 49.111178914000092 ], [ -123.831204591999963, 49.113985798000108 ], [ -123.830870089999934, 49.113979053000094 ], [ -123.830866785999888, 49.114049972000053 ], [ -123.83021786799999, 49.113601834000178 ], [ -123.829522213999951, 49.113121396000089 ], [ -123.829043610999989, 49.112834084000056 ], [ -123.828392595999958, 49.112443269 ], [ -123.827191996999971, 49.111722507000081 ], [ -123.825874495, 49.11170857900003 ], [ -123.822893297999926, 49.111677001000032 ], [ -123.81812486699999, 49.111702813000051 ], [ -123.818165372999886, 49.110838367000085 ], [ -123.820737527999938, 49.110890514000054 ], [ -123.820776211999927, 49.110063930000145 ], [ -123.822454559999969, 49.110097923000119 ], [ -123.822455043999938, 49.110087571000079 ], [ -123.822912089999974, 49.110096823000049 ], [ -123.825635271999943, 49.110151911000067 ], [ -123.825647573999944, 49.109888451000053 ], [ -123.822915224999932, 49.109833179000077 ], [ -123.820473893999974, 49.109783734000118 ], [ -123.820572259999949, 49.107682043000068 ], [ -123.819539788, 49.107661115000049 ], [ -123.819562977999965, 49.107165847000026 ], [ -123.818702387000016, 49.107148395000046 ], [ -123.818762158999974, 49.105872294000058 ], [ -123.818545257, 49.105867895000074 ], [ -123.818588642999941, 49.10494168000006 ], [ -123.814971472999957, 49.10486824700007 ], [ -123.814912894999935, 49.106116722000095 ], [ -123.812948904000038, 49.106076799000043 ], [ -123.812945217999982, 49.106155270000123 ], [ -123.812810443, 49.10615252900002 ], [ -123.812787389999926, 49.106643373000118 ], [ -123.814756919999979, 49.106683411000063 ], [ -123.814588018999956, 49.110282518000062 ], [ -123.813439081999931, 49.110259167000095 ], [ -123.813434776999941, 49.110350846000102 ], [ -123.808332718999964, 49.110247002000129 ], [ -123.807138574999954, 49.11025535700005 ], [ -123.807129821000018, 49.109715684000051 ], [ -123.806718798999924, 49.109718557000107 ], [ -123.80671662, 49.109584245000114 ], [ -123.80548301499999, 49.109559082000047 ], [ -123.80548573599999, 49.109727167000088 ], [ -123.804373056999907, 49.109734925000076 ], [ -123.804321492999961, 49.10923021100006 ], [ -123.804001376999921, 49.108935399000082 ], [ -123.803858605999963, 49.108576486000111 ], [ -123.80366274, 49.108344916000092 ], [ -123.803685012999921, 49.107872670000106 ], [ -123.803830607999913, 49.107713493000105 ], [ -123.803454699999989, 49.107347404000109 ], [ -123.803212690999914, 49.106800494000076 ], [ -123.80282341899999, 49.106470101000127 ], [ -123.80276039099999, 49.106011496000107 ], [ -123.802183392999964, 49.105053008000077 ], [ -123.802464204999964, 49.104637210000121 ], [ -123.80247590499999, 49.104422094000078 ], [ -123.801808197999947, 49.103878091000063 ], [ -123.801820291, 49.103697196000049 ], [ -123.801995617999978, 49.103543399000074 ], [ -123.802553486999926, 49.103324006000101 ], [ -123.803244692999925, 49.102851214000083 ], [ -123.803335783999955, 49.102544996000077 ], [ -123.802890793999921, 49.102170408000113 ], [ -123.801924912999979, 49.101673395000077 ], [ -123.801360577999958, 49.101578 ], [ -123.800599486999957, 49.101033903 ], [ -123.800580205999964, 49.100773285000109 ], [ -123.801263510999945, 49.100625192000074 ], [ -123.801273808999966, 49.100381587000058 ], [ -123.801244376999989, 49.100247800000091 ], [ -123.80092661099998, 49.100123807000159 ], [ -123.800474894999951, 49.099272201000119 ], [ -123.801429184999918, 49.098958800000027 ], [ -123.80171770799997, 49.099030090000063 ], [ -123.80222290899998, 49.09896310000007 ], [ -123.802357389999912, 49.098800800000014 ], [ -123.800492689999913, 49.096942206000072 ], [ -123.800434506999949, 49.096762700000077 ], [ -123.80131622299993, 49.097044703000066 ], [ -123.802284112, 49.097595893000104 ], [ -123.802681203999981, 49.097601589000078 ], [ -123.803223974999952, 49.097265495000102 ], [ -123.803219800999941, 49.097121605000041 ], [ -123.80287379399995, 49.096826790000058 ], [ -123.803227403999955, 49.096688687000061 ], [ -123.803517895999931, 49.096317634000108 ], [ -123.803602085999955, 49.096210094000106 ], [ -123.803089586999974, 49.095727300000107 ], [ -123.803096900999961, 49.095458092000051 ], [ -123.803219410999986, 49.095402605000032 ], [ -123.80368598699998, 49.095435306000113 ], [ -123.804457203999959, 49.095708798000025 ], [ -123.805025282999907, 49.095218894000062 ], [ -123.804135694999928, 49.094469692000104 ], [ -123.803866086999932, 49.09386018900004 ], [ -123.803829208999957, 49.093293288 ], [ -123.803606394999946, 49.093015612000066 ], [ -123.803055884999978, 49.092794902000144 ], [ -123.80282340399998, 49.092860402000049 ], [ -123.802688919999966, 49.09299570400006 ], [ -123.802926408999923, 49.093254896000133 ], [ -123.802817811999915, 49.093336095000083 ], [ -123.802265596999973, 49.093133792000089 ], [ -123.801157776999915, 49.092331997000038 ], [ -123.800487392999969, 49.091580011000097 ], [ -123.800444894999956, 49.09141910200006 ], [ -123.800509506999916, 49.091292285000094 ], [ -123.800741613999918, 49.091246802000036 ], [ -123.801334604999965, 49.0914575010001 ], [ -123.801719604999988, 49.091500287000017 ], [ -123.801928400999884, 49.091768004000123 ], [ -123.802121518999954, 49.091776595000063 ], [ -123.802460388, 49.091656906000068 ], [ -123.802804495999979, 49.091718215000064 ], [ -123.803413193, 49.092118391000049 ], [ -123.804987194999967, 49.092907410000116 ], [ -123.808154488999961, 49.093857302000067 ], [ -123.809280011999959, 49.094092294000099 ], [ -123.809569595999932, 49.094099395000065 ], [ -123.809566803999971, 49.094026807000091 ], [ -123.809167593000012, 49.093823093000019 ], [ -123.807596717999914, 49.093338897000073 ], [ -123.807137315999924, 49.092811998000116 ], [ -123.806335412999957, 49.092376092000073 ], [ -123.803471883999975, 49.091470301000129 ], [ -123.802510217999938, 49.091350706000149 ], [ -123.802138486999951, 49.0911912 ], [ -123.802025991, 49.091038789000052 ], [ -123.801190605999977, 49.090973305000077 ], [ -123.801085709999981, 49.090920704000027 ], [ -123.800747512, 49.090751105000081 ], [ -123.800199185999986, 49.090728297000027 ], [ -123.799043210999955, 49.090385086000047 ], [ -123.79831691, 49.090326697000144 ], [ -123.797889411999904, 49.090068907000081 ], [ -123.797669495999969, 49.090088908000034 ], [ -123.797645509999967, 49.090259798000019 ], [ -123.79796269299996, 49.090419305000111 ], [ -123.797936799999974, 49.090473406000051 ], [ -123.79758020899996, 49.090457690000093 ], [ -123.796772997999938, 49.090590200000072 ], [ -123.79676179099998, 49.090652903000056 ], [ -123.797189194999973, 49.090883614000056 ], [ -123.797306177999985, 49.091315093000077 ], [ -123.798146598999907, 49.091678302000062 ], [ -123.798134992999962, 49.091803597000045 ], [ -123.797602006999938, 49.091807901000031 ], [ -123.797174096999981, 49.091612813000062 ], [ -123.796733491999973, 49.091525909000019 ], [ -123.796372411999954, 49.091231091000076 ], [ -123.795895592999983, 49.091297990000015 ], [ -123.795646283999986, 49.091226793000018 ], [ -123.795399080999957, 49.091085795000033 ], [ -123.795201889999973, 49.090789595000039 ], [ -123.795157289999949, 49.090628600000102 ], [ -123.795344612999926, 49.090356591000074 ], [ -123.79492438799997, 49.089775507000049 ], [ -123.79449898099989, 49.089688693000028 ], [ -123.794148986999957, 49.089195898000106 ], [ -123.793970075999979, 49.089107594000019 ], [ -123.793820104999952, 49.08916171200012 ], [ -123.793806808999975, 49.089251405000027 ], [ -123.79389590199996, 49.089674395000088 ], [ -123.793693095999942, 49.089811114000042 ], [ -123.793960295999938, 49.090195705000113 ], [ -123.793877907, 49.09030388300004 ], [ -123.7937825899999, 49.090268292000118 ], [ -123.793416126999929, 49.089928236000105 ], [ -123.793486027999933, 49.088452395000097 ], [ -123.794148018999948, 49.088465981000112 ], [ -123.794189837999966, 49.087582744000059 ], [ -123.79318676199992, 49.087562156000153 ], [ -123.792821412999928, 49.087157213000111 ], [ -123.792881618999957, 49.085886353000078 ], [ -123.791739553999918, 49.085862898000109 ], [ -123.79136239499995, 49.085400407000073 ], [ -123.791427799999937, 49.085229493000071 ], [ -123.790080584999956, 49.083924901000081 ], [ -123.788893797999933, 49.083358089000058 ], [ -123.788626310999973, 49.08295498800004 ], [ -123.787890204999968, 49.082348299000053 ], [ -123.78765268599993, 49.081953806000037 ], [ -123.787486121999962, 49.081909601000056 ], [ -123.787233481999962, 49.081542193000139 ], [ -123.787260193999927, 49.081389807000065 ], [ -123.785997100999921, 49.079509808000061 ], [ -123.785846885999888, 49.078665298000068 ], [ -123.785750706999949, 49.078619704000154 ], [ -123.785217883999962, 49.078705196000051 ], [ -123.784219879999966, 49.077967951000169 ], [ -123.784095797, 49.077876287000024 ], [ -123.784048897999952, 49.077525903000051 ], [ -123.784400703999935, 49.077298006000021 ], [ -123.784579889999961, 49.077404902000126 ], [ -123.785048995999929, 49.0767084 ], [ -123.785085091999974, 49.076322503000021 ], [ -123.784754084999946, 49.076179990000092 ], [ -123.784419988999971, 49.075876699000098 ], [ -123.783800402999958, 49.075709988000092 ], [ -123.783669398999962, 49.075180195000023 ], [ -123.7830302, 49.074572110000084 ], [ -123.783151815999958, 49.074463907000101 ], [ -123.783452214999969, 49.07447100600011 ], [ -123.783463808999926, 49.074345710000046 ], [ -123.781926902999928, 49.073140801000129 ], [ -123.782227215999953, 49.073093793000041 ], [ -123.783065513999944, 49.073304599000082 ], [ -123.784657107999962, 49.073563788000044 ], [ -123.785066885999953, 49.0735153030001 ], [ -123.784969804999932, 49.073335906000075 ], [ -123.784404110999958, 49.073177809000128 ], [ -123.783270089999988, 49.073230511000062 ], [ -123.782967877999965, 49.073160696000031 ], [ -123.781441219999948, 49.071957300000058 ], [ -123.781246209999964, 49.071696604000081 ], [ -123.780778898, 49.071584086 ], [ -123.780642488999959, 49.071683811000078 ], [ -123.780465097999922, 49.071666701000076 ], [ -123.779042682999929, 49.070920393000073 ], [ -123.778113793000017, 49.070162792000076 ], [ -123.777728897999935, 49.069984691000066 ], [ -123.777490490999938, 49.069627295000046 ], [ -123.77763777499996, 49.069446395000071 ], [ -123.777372286999977, 49.069078890000142 ], [ -123.77741087699999, 49.06895219700008 ], [ -123.777588717999961, 49.068906600000034 ], [ -123.777655000999943, 49.068788392000087 ], [ -123.777501090999948, 49.068574796000043 ], [ -123.777511780999944, 49.068385294000095 ], [ -123.777123493999952, 49.06810900300006 ], [ -123.776711393999975, 49.067995111000066 ], [ -123.776391283999914, 49.067690293000076 ], [ -123.776443816999986, 49.067492396000027 ], [ -123.776345504999981, 49.067322895000082 ], [ -123.776002093999978, 49.067307201000105 ], [ -123.775713, 49.067129196000039 ], [ -123.775456201999987, 49.066572309 ], [ -123.775387435999946, 49.066512856 ], [ -123.775391816999928, 49.06642107400009 ], [ -123.775278566999972, 49.06641872900007 ], [ -123.774971907999969, 49.066153594000049 ], [ -123.77506700399999, 49.066108009000047 ], [ -123.775794719999965, 49.066337295000061 ], [ -123.776100804999956, 49.066550999000086 ], [ -123.776567181999937, 49.066664905000039 ], [ -123.777341023999966, 49.067090702000058 ], [ -123.777545691999975, 49.067124915000072 ], [ -123.77763998499999, 49.066999603000163 ], [ -123.775336819999964, 49.065035604000094 ], [ -123.775468701, 49.064692407000045 ], [ -123.775400002, 49.064648201000054 ], [ -123.775099295999951, 49.064703789000056 ], [ -123.774982094999928, 49.065028505000086 ], [ -123.774750614999931, 49.065227902000082 ], [ -123.774476793999909, 49.065212190000125 ], [ -123.774315997999963, 49.065374594000097 ], [ -123.774083097999906, 49.065367403000074 ], [ -123.773627502999943, 49.065118189000053 ], [ -123.773154484999978, 49.06458269600008 ], [ -123.772571402999944, 49.06412699400007 ], [ -123.771786000999938, 49.063826409000114 ], [ -123.770391199999949, 49.063009002000044 ], [ -123.769606589999924, 49.062788194000113 ], [ -123.768627891, 49.062309696000113 ], [ -123.768490113999974, 49.062175791000058 ], [ -123.768117188999952, 49.062034796000034 ], [ -123.767713807999939, 49.061569095000102 ], [ -123.767473401999936, 49.061130397000113 ], [ -123.768024703999956, 49.060532302000112 ], [ -123.767487484999975, 49.060184700000057 ], [ -123.767499285999946, 49.060086493000043 ], [ -123.768754785999988, 49.06069889700008 ], [ -123.768931179999967, 49.060597793000063 ], [ -123.768349210999929, 49.06015199400008 ], [ -123.768593895999956, 49.060114995000063 ], [ -123.768821611999968, 49.059825800000056 ], [ -123.769081011999972, 49.059770308000111 ], [ -123.770768808999904, 49.060046586000034 ], [ -123.770765288999911, 49.059704813000025 ], [ -123.770610600999959, 49.059535303000061 ], [ -123.770145604, 49.059546693000087 ], [ -123.769912587999954, 49.059458397000071 ], [ -123.769757884999962, 49.05918069100008 ], [ -123.769272896999965, 49.058860204000041 ], [ -123.769459287999922, 49.058544106000085 ], [ -123.769195887999928, 49.058293410000026 ], [ -123.768712595999929, 49.058062697000032 ], [ -123.767530210999922, 49.057683808000029 ], [ -123.767041668999951, 49.057385149 ], [ -123.769983788000019, 49.057183145000081 ], [ -123.771046539999986, 49.057292120000085 ], [ -123.773193428999903, 49.057503684000054 ], [ -123.773606445999974, 49.05775915300007 ], [ -123.774332150999925, 49.058080434000054 ], [ -123.774844162999926, 49.058222907000086 ], [ -123.775094534999937, 49.058292600000144 ], [ -123.775702257, 49.058536652000015 ], [ -123.776315944999965, 49.0589141620001 ], [ -123.776488219000015, 49.059057255000056 ], [ -123.777049817999952, 49.059523825000085 ], [ -123.777346095999974, 49.05984599300011 ], [ -123.777936373000031, 49.060487904000034 ], [ -123.778559676000015, 49.061381697000087 ], [ -123.778995076999962, 49.061856399000128 ], [ -123.779183811999943, 49.061999894000074 ], [ -123.779510312999918, 49.062236290000016 ], [ -123.780713106999926, 49.062907902000049 ], [ -123.781360892999956, 49.063231104000124 ], [ -123.782123228, 49.06350530100007 ], [ -123.782534453999958, 49.06363087600004 ], [ -123.782686026999897, 49.063677150000039 ], [ -123.783936242999971, 49.064058895000095 ], [ -123.785321701999976, 49.064481888000053 ], [ -123.786434175999915, 49.064810189000099 ], [ -123.786548410999927, 49.064858580000113 ], [ -123.787247912999945, 49.065154801000126 ], [ -123.787817400999984, 49.065486291000092 ], [ -123.788404710999927, 49.065899791000028 ], [ -123.788468496999968, 49.065944708000046 ], [ -123.788940142999948, 49.066361514000043 ], [ -123.791268079999895, 49.06841879800006 ], [ -123.792170614999975, 49.069200294000019 ], [ -123.792997783999965, 49.069868500000013 ], [ -123.794364787999896, 49.070661189000056 ], [ -123.79480992, 49.070880205000059 ], [ -123.795320403999966, 49.071073512000105 ], [ -123.79588199299999, 49.071201193000029 ], [ -123.796014622999948, 49.071219381000105 ], [ -123.796971209999953, 49.071350510000059 ], [ -123.797583291999899, 49.071434413000084 ], [ -123.798100877999957, 49.071505341000048 ], [ -123.798323806999974, 49.071535900000121 ], [ -123.799177722, 49.071700202000116 ], [ -123.799546397999933, 49.071797801000123 ], [ -123.799653310999986, 49.071850354000055 ], [ -123.799920722999929, 49.071981778000065 ], [ -123.799975549999942, 49.072008734000043 ], [ -123.80035712599998, 49.072196312000166 ], [ -123.802366805999981, 49.073184111000046 ], [ -123.803484413999925, 49.073895820000089 ], [ -123.804185991999987, 49.074342583000067 ], [ -123.805514269999918, 49.075470401000082 ], [ -123.806860087999979, 49.076576014000061 ], [ -123.80846657599993, 49.077548198000031 ], [ -123.80870650699994, 49.077683704000066 ], [ -123.80894913899999, 49.077869045000071 ], [ -123.809012029999934, 49.077917102000036 ], [ -123.809043205999956, 49.077940892000065 ], [ -123.809620417999923, 49.078662074000114 ], [ -123.810050893999957, 49.079199912000028 ], [ -123.809661488999922, 49.079191009000084 ], [ -123.806407838999974, 49.079104105000049 ], [ -123.806385495999962, 49.079103485000068 ], [ -123.80575042199996, 49.079097953 ], [ -123.80439399799999, 49.079086069000041 ], [ -123.803379776999932, 49.07907719100006 ], [ -123.802215730999976, 49.079066957000101 ], [ -123.801466232999957, 49.079060388000059 ], [ -123.799997246999908, 49.079047465000066 ], [ -123.799107523999965, 49.079039645000108 ], [ -123.798661601999953, 49.079035690000062 ], [ -123.798436439999975, 49.079029315000128 ], [ -123.797381607999952, 49.078999488000079 ], [ -123.795775108999976, 49.078954003000092 ], [ -123.794953014999962, 49.078752494000106 ], [ -123.794235488999945, 49.07848021100007 ], [ -123.793492599999965, 49.0780505910001 ], [ -123.793127494999936, 49.077873804000049 ], [ -123.79274379, 49.07774429400007 ], [ -123.791651194999986, 49.077564195000079 ], [ -123.791234981999978, 49.07754489800007 ], [ -123.790896097999948, 49.077565817000057 ], [ -123.790612292999967, 49.077637499000048 ], [ -123.790205508999946, 49.077792998000071 ], [ -123.789873007999972, 49.077998695000062 ], [ -123.789553187999971, 49.07813720300009 ], [ -123.7892015, 49.078197498000129 ], [ -123.787041578999919, 49.07814219600003 ], [ -123.786979804999987, 49.078895714000041 ], [ -123.78871641399995, 49.078965702000104 ], [ -123.789111320999936, 49.079061200000062 ], [ -123.78934399299996, 49.07920111 ], [ -123.789486103999977, 49.079405794000081 ], [ -123.789574288, 49.079911100000068 ], [ -123.78974730099999, 49.080157792000136 ], [ -123.790469079999966, 49.080803098000111 ], [ -123.791540803999965, 49.08162590000007 ], [ -123.792546148999961, 49.082470203000092 ], [ -123.792958986999963, 49.082816893000043 ], [ -123.793713488999913, 49.08372668700008 ], [ -123.794372589999966, 49.084802103000115 ], [ -123.794608398999955, 49.085023093000103 ], [ -123.795047803999964, 49.085132105000113 ], [ -123.79563348799995, 49.085128809000032 ], [ -123.796249266999922, 49.085278598000059 ], [ -123.796674522000032, 49.085369487000058 ], [ -123.797210230999895, 49.08562987400007 ], [ -123.797848398999975, 49.08597589500004 ], [ -123.799111182999937, 49.086719494000093 ], [ -123.79922739, 49.086604801000128 ], [ -123.799469309999935, 49.086524201000088 ], [ -123.799630606999955, 49.086527493000098 ], [ -123.79982169, 49.086594511000023 ], [ -123.80000474299996, 49.086722737000073 ], [ -123.800298399999988, 49.086928499000059 ], [ -123.800846408999959, 49.087376510000077 ], [ -123.801118602999964, 49.087550492000069 ], [ -123.802267005999965, 49.088062090000079 ], [ -123.802735505999976, 49.088367994000045 ], [ -123.803015006999942, 49.088591706000059 ], [ -123.803096497999917, 49.08880768700007 ], [ -123.803096749999924, 49.088815628000127 ], [ -123.803107225999966, 49.089160097000018 ], [ -123.803284704999967, 49.089545584000078 ], [ -123.803482579999965, 49.089845994 ], [ -123.803867997999973, 49.090144804000012 ], [ -123.8048892899999, 49.090624993000034 ], [ -123.805802785999973, 49.091215590000125 ], [ -123.806236382999941, 49.091566694000043 ], [ -123.806527901, 49.091712193000063 ], [ -123.807155593999966, 49.091893409000086 ], [ -123.809275403999948, 49.092698588000118 ], [ -123.810252005, 49.092881507000072 ], [ -123.810582010999951, 49.092875607000053 ], [ -123.811283298999925, 49.092772799000024 ], [ -123.811585137999927, 49.092705186000096 ], [ -123.812451677999945, 49.092511098000053 ], [ -123.812831784999958, 49.09237200200004 ], [ -123.814406682999916, 49.091379110000098 ], [ -123.814765889999961, 49.091100903000076 ], [ -123.81477636399994, 49.091085453000048 ], [ -123.81509962299999, 49.090607804000101 ], [ -123.815646494999925, 49.090552566000092 ], [ -123.815556344999948, 49.092475145000037 ], [ -123.814805450999984, 49.092459886000086 ], [ -123.81312297599996, 49.092425676000111 ], [ -123.813023461999975, 49.094545401000076 ], [ -123.810594115999933, 49.09449595899999 ], [ -123.810478795999927, 49.096949357000078 ], [ -123.80828544699996, 49.096904670000086 ], [ -123.80821941, 49.098308093000135 ], [ -123.808211592999896, 49.098474209000145 ], [ -123.806531571999969, 49.098439951000046 ], [ -123.806515743999981, 49.098776049000044 ], [ -123.805648414999922, 49.098758353000072 ], [ -123.805610154999911, 49.099570441000047 ], [ -123.805614532, 49.099570531000026 ], [ -123.805525090999964, 49.101468865000037 ], [ -123.80585393199999, 49.101475575000045 ], [ -123.805938092999952, 49.099689034000043 ], [ -123.809073271999978, 49.099752960000082 ], [ -123.809128870999984, 49.098570986000034 ], [ -123.809196308999987, 49.097137207000038 ], [ -123.814664653999927, 49.097248487000066 ], [ -123.814548609999989, 49.099721740000078 ], [ -123.81727050899994, 49.09977702700008 ], [ -123.817270361999945, 49.099780170000045 ], [ -123.817723361999953, 49.099789364000031 ], [ -123.821557752999965, 49.099867114000098 ], [ -123.821528938999933, 49.10048316800011 ], [ -123.822981138999978, 49.100512578000107 ], [ -123.822957603999953, 49.101016109000085 ], [ -123.825913063999934, 49.101075904000041 ], [ -123.825883494999943, 49.101709335000045 ], [ -123.826637974999969, 49.101724586000046 ], [ -123.826610046000013, 49.102323089000066 ], [ -123.828172055999957, 49.102354647000084 ], [ -123.828112207999979, 49.103638011000058 ], [ -123.828984704999982, 49.103655630000112 ], [ -123.828939398999978, 49.104627523 ], [ -123.829602366999936, 49.104640905000046 ], [ -123.829665343999977, 49.103289530000097 ], [ -123.835134458999974, 49.103399768000074 ], [ -123.835100068999964, 49.10413958200008 ], [ -123.837223828, 49.104182316000106 ], [ -123.837161551999927, 49.105523290000122 ], [ -123.837806345999979, 49.10553625600005 ], [ -123.837932141999957, 49.102826632000074 ], [ -123.838342753999939, 49.102834886000096 ], [ -123.838356212999912, 49.102544925000124 ], [ -123.838376130999919, 49.102567435000033 ], [ -123.838533040999934, 49.103095851000099 ], [ -123.839173602999935, 49.103905964000027 ], [ -123.83930110599999, 49.104245384000137 ], [ -123.839792935999938, 49.104291810000099 ], [ -123.83985851099996, 49.104297996000135 ], [ -123.841566214999915, 49.104361993000026 ], [ -123.841721419999928, 49.104344622000013 ], [ -123.842384768999977, 49.104270397000093 ], [ -123.842480864999956, 49.104271313000041 ], [ -123.843164494999982, 49.104277897000038 ], [ -123.843297209999932, 49.104296830000123 ], [ -123.843291923999985, 49.105022378000037 ], [ -123.843325686999918, 49.105345729000064 ], [ -123.843337202999948, 49.105455815000077 ], [ -123.84340218799997, 49.105647993000041 ], [ -123.843534183999935, 49.105839796000033 ], [ -123.843727820999931, 49.106004008000077 ], [ -123.843981399999933, 49.106144203000049 ], [ -123.845096679999955, 49.106590696000062 ], [ -123.846113279999884, 49.106981209000018 ], [ -123.846506906999963, 49.106726989000059 ], [ -123.846825816999967, 49.106638892000021 ], [ -123.850321776999948, 49.106657496000047 ], [ -123.850298317999915, 49.107771978000066 ], [ -123.850264277999926, 49.109387004000048 ], [ -123.850244418999964, 49.110647503000052 ], [ -123.850282367999981, 49.111680692000107 ], [ -123.850329991999956, 49.112975827000071 ], [ -123.850331988999983, 49.11302978500003 ], [ -123.85035059700003, 49.11353610200004 ], [ -123.85046659599999, 49.115529600000073 ], [ -123.845630853999978, 49.115511787000067 ], [ -123.84472658599999, 49.115508442000092 ], [ -123.840807892999976, 49.11549378400008 ], [ -123.83999710099998, 49.115489217000061 ], [ -123.839247696999934, 49.115485015000061 ], [ -123.838491900999941, 49.115606712000087 ], [ -123.838111003999984, 49.115997111000105 ], [ -123.838111308999942, 49.116432087000078 ], [ -123.836550687999988, 49.116079199000076 ], [ -123.836167007999975, 49.115999490000057 ] ], [ [ -123.84801488799999, 49.109155145000088 ], [ -123.84807737599999, 49.107802917000072 ], [ -123.846559972999927, 49.107814056000045 ], [ -123.846555381999934, 49.10754422100004 ], [ -123.845322384999974, 49.107553257000092 ], [ -123.845313216999926, 49.107013589000083 ], [ -123.844902222999906, 49.107016598000037 ], [ -123.844906803999919, 49.107286433000048 ], [ -123.844495806999973, 49.107289439000034 ], [ -123.844500386999954, 49.107559274000131 ], [ -123.84326738799993, 49.107568287000042 ], [ -123.843245779999961, 49.106293098 ], [ -123.843234546999952, 49.106535623000099 ], [ -123.840003947999918, 49.106470787000099 ], [ -123.839878261999928, 49.109180398000049 ], [ -123.838848210999913, 49.109159705000053 ], [ -123.83877508099999, 49.110735391000077 ], [ -123.839615235999986, 49.11075227000012 ], [ -123.839570894999937, 49.111707980000062 ], [ -123.841187135999945, 49.11174043200004 ], [ -123.84112165099999, 49.113152845000116 ], [ -123.841404244999922, 49.113158518000063 ], [ -123.841405415999958, 49.113133247000086 ], [ -123.843407909999939, 49.113173415000027 ], [ -123.84340933699994, 49.113142596000067 ], [ -123.846416182999931, 49.113202841000025 ], [ -123.84642752799999, 49.112957571000052 ], [ -123.847147047999982, 49.112971974000054 ], [ -123.847207368999975, 49.111667286000078 ], [ -123.847815741, 49.111679461000101 ], [ -123.847847345999966, 49.110995648000049 ], [ -123.847834356999954, 49.110233511000096 ], [ -123.847882585999983, 49.110233157000017 ], [ -123.847932483999941, 49.109153497000101 ], [ -123.84801488799999, 49.109155145000088 ] ], [ [ -123.811745926999905, 49.100856445000083 ], [ -123.811748964999978, 49.100791785000112 ], [ -123.811360518999933, 49.100783878000108 ], [ -123.81135748, 49.100848539000033 ], [ -123.811745926999905, 49.100856445000083 ] ], [ [ -123.798350672999973, 49.076694786000132 ], [ -123.798458467, 49.074413042000089 ], [ -123.797198362999907, 49.074387220000084 ], [ -123.797207009999923, 49.074204293000022 ], [ -123.796148635999913, 49.074182592000049 ], [ -123.796174633999954, 49.073632818000071 ], [ -123.793972590999942, 49.073587637000053 ], [ -123.794023312999983, 49.07251607900011 ], [ -123.792656208999972, 49.072488006000064 ], [ -123.792668331999906, 49.07223203800001 ], [ -123.789851120999955, 49.072174133000026 ], [ -123.789882091999942, 49.071521065000105 ], [ -123.789097034999941, 49.07150491500007 ], [ -123.789115310999975, 49.071119657000082 ], [ -123.787375422999943, 49.071083845000047 ], [ -123.787273724999977, 49.073225898000032 ], [ -123.786762513000014, 49.073215369000067 ], [ -123.78673525899994, 49.07378922600013 ], [ -123.787925135999956, 49.073813725000058 ], [ -123.78789937, 49.07435655800009 ], [ -123.790621471999941, 49.074412556000013 ], [ -123.790586058999963, 49.075159513000067 ], [ -123.79259416599993, 49.075200779000085 ], [ -123.792610836999955, 49.07484883500004 ], [ -123.798076526000017, 49.074960962000056 ], [ -123.797994946999893, 49.076687498000119 ], [ -123.798350672999973, 49.076694786000132 ] ], [ [ -123.784438766999955, 49.06672657000005 ], [ -123.784440143999973, 49.066697614000105 ], [ -123.781864583999962, 49.066644474000036 ], [ -123.78186320599994, 49.06667343000008 ], [ -123.784438766999955, 49.06672657000005 ] ], [ [ -123.777221964999953, 49.062789083000048 ], [ -123.777234326, 49.062529837000099 ], [ -123.777127429999922, 49.062527625000058 ], [ -123.777183363999967, 49.061354596000122 ], [ -123.775089442999956, 49.061311252000024 ], [ -123.775073183999936, 49.06165193100005 ], [ -123.773759162999951, 49.061624709000085 ], [ -123.77373550599999, 49.062120067000102 ], [ -123.775572492999927, 49.062158118000099 ], [ -123.77554404199999, 49.062754356000049 ], [ -123.777221964999953, 49.062789083000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.946295375435107", "sL_AssetLoss": "2011", "sL_BldgLoss": "1903", "sL_StrLoss": "1560", "sL_NStrLoss": "343", "sL_ContLoss": "108", "geom_point": "0101000020E61000002E3A174E2BF65EC06C770FD0FD8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.84536364599991, 49.109981763000071 ], [ -123.84535447699993, 49.10944209500007 ], [ -123.844943460999943, 49.109445104000052 ], [ -123.84492971499995, 49.108635602000078 ], [ -123.846984753999919, 49.10862054200004 ], [ -123.846989346999976, 49.108890376000012 ], [ -123.847811367999952, 49.108884342000152 ], [ -123.847829760999943, 49.109963677000025 ], [ -123.84536364599991, 49.109981763000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5831417", "BldgCostT": "4021667", "sL_LossRatio": "0.818283310831862", "sL_AssetLoss": "38516", "sL_BldgLoss": "31517", "sL_StrLoss": "18047", "sL_NStrLoss": "13470", "sL_ContLoss": "6999", "geom_point": "0101000020E61000000EC746627AF45EC0DA14FA26EE8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.819198820999958, 49.09532403900009 ], [ -123.81926177099993, 49.093979390000086 ], [ -123.816654610999962, 49.093926477000061 ], [ -123.816696659999948, 49.093029319000031 ], [ -123.816117945999906, 49.093017565000068 ], [ -123.816236254999964, 49.09049380800009 ], [ -123.816839788999971, 49.09049460800005 ], [ -123.817610780999985, 49.090539003000046 ], [ -123.81866730199998, 49.090678512000125 ], [ -123.819094810999957, 49.090782604000083 ], [ -123.819412008999947, 49.090934002000054 ], [ -123.81982149699995, 49.091245898000054 ], [ -123.823045399999955, 49.093493504000094 ], [ -123.82577079, 49.095045538000051 ], [ -123.824686178999983, 49.095023598000047 ], [ -123.824666975999975, 49.095434811000075 ], [ -123.819198820999958, 49.09532403900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139672334", "BldgCostT": "92353334", "sL_LossRatio": "0.774417175238851", "sL_AssetLoss": "963154", "sL_BldgLoss": "745883", "sL_StrLoss": "416641", "sL_NStrLoss": "329242", "sL_ContLoss": "217271", "geom_point": "0101000020E61000007EC45C1019F45EC0B00662B83E8F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.809195185999911, 49.126732011000058 ], [ -123.809207393999912, 49.126472613 ], [ -123.808729543999902, 49.126462882000055 ], [ -123.808743507999978, 49.126166262000062 ], [ -123.808334722000026, 49.126169125000082 ], [ -123.808120904999939, 49.125513187000081 ], [ -123.807223279999974, 49.125168598000158 ], [ -123.807337807999929, 49.123781408000063 ], [ -123.80715178399997, 49.123324207000032 ], [ -123.806654298999916, 49.123003800000021 ], [ -123.806060491999986, 49.122818502 ], [ -123.805910743999945, 49.122725837000118 ], [ -123.805825994999935, 49.122667701000104 ], [ -123.805689885999982, 49.12248995200008 ], [ -123.805168387999942, 49.121808897000093 ], [ -123.804507507999944, 49.119906088000093 ], [ -123.80445320299998, 49.119097189000051 ], [ -123.804569503999943, 49.118718306000055 ], [ -123.80462061899999, 49.118638808000085 ], [ -123.804638967999963, 49.118638680000082 ], [ -123.804653284999944, 49.118609256000106 ], [ -123.804763024999943, 49.118609095000089 ], [ -123.805863495, 49.118657594000055 ], [ -123.80696459, 49.118677296000072 ], [ -123.808065572999951, 49.118697438000027 ], [ -123.809106699999944, 49.118716506000034 ], [ -123.808977674999966, 49.118314895000033 ], [ -123.808875311999941, 49.118222712000041 ], [ -123.807535982999966, 49.117300199000056 ], [ -123.807171395999944, 49.116990186000038 ], [ -123.806651601999988, 49.115271378000074 ], [ -123.806508814999958, 49.115072698000077 ], [ -123.806811586999956, 49.114542174000135 ], [ -123.807306985999986, 49.11367408800006 ], [ -123.807112514999986, 49.113356696000068 ], [ -123.807106014999974, 49.113340595000103 ], [ -123.806975772999976, 49.113016149000032 ], [ -123.806814088999914, 49.112613313000075 ], [ -123.80648770099998, 49.111800285000072 ], [ -123.807983181999987, 49.111757003000065 ], [ -123.809629300999958, 49.11174827200005 ], [ -123.809657420999969, 49.113476122000115 ], [ -123.809449603999894, 49.113477579000048 ], [ -123.809451272999979, 49.113938327000049 ], [ -123.809870041999943, 49.113946854000034 ], [ -123.80988234099999, 49.113685371000024 ], [ -123.81535262899996, 49.113796614000044 ], [ -123.815322791999961, 49.114432507000068 ], [ -123.81589374699999, 49.1144441020001 ], [ -123.815873525999933, 49.114875176000083 ], [ -123.816125766000013, 49.114880297000056 ], [ -123.816111905999932, 49.115175796000109 ], [ -123.81880225399999, 49.115230384000014 ], [ -123.8188386, 49.114454531000099 ], [ -123.817996719999925, 49.114437457000101 ], [ -123.81812486699999, 49.111702813000051 ], [ -123.822893297999926, 49.111677001000032 ], [ -123.822843291999959, 49.113363957000089 ], [ -123.822836313, 49.113598210000127 ], [ -123.822785624999966, 49.115308442000085 ], [ -123.82278170799998, 49.115440298000067 ], [ -123.822778643999982, 49.115468824000033 ], [ -123.822728226, 49.115938986000032 ], [ -123.822536124, 49.117729616000112 ], [ -123.82252199599999, 49.117861284000085 ], [ -123.822668202, 49.118014606000038 ], [ -123.823339811999972, 49.118347988000046 ], [ -123.823603391999967, 49.118508191000046 ], [ -123.823776182999907, 49.118676501000046 ], [ -123.823841478999967, 49.118832697000123 ], [ -123.823856507999935, 49.119009603000038 ], [ -123.823222612, 49.118983422000092 ], [ -123.822976392999948, 49.118973240000095 ], [ -123.822955486999959, 49.118972392000053 ], [ -123.822658213999915, 49.118960092000158 ], [ -123.822680619999971, 49.119742779000063 ], [ -123.822702400999958, 49.120502789000099 ], [ -123.822702586999952, 49.121205455000087 ], [ -123.822703003999948, 49.122618635000052 ], [ -123.822691953999964, 49.122985882000151 ], [ -123.821592638999959, 49.122963628000086 ], [ -123.821640130999953, 49.121948708000033 ], [ -123.821136982999988, 49.121938519000089 ], [ -123.821158021999949, 49.121489013000065 ], [ -123.820782697999945, 49.12148141100004 ], [ -123.820789513999955, 49.121335807000072 ], [ -123.818275472999957, 49.121284853000105 ], [ -123.818269500000028, 49.12141229500007 ], [ -123.81593961599999, 49.12136502000002 ], [ -123.815894756999938, 49.122321151000115 ], [ -123.814049422999943, 49.122283672000108 ], [ -123.814049328999971, 49.122285686000041 ], [ -123.814289482999968, 49.122290566000096 ], [ -123.814287653999941, 49.122329520000029 ], [ -123.815588037999959, 49.122355931000136 ], [ -123.815560169999969, 49.12294981900002 ], [ -123.815664171999956, 49.122951931000081 ], [ -123.815663613999959, 49.122963794000079 ], [ -123.818397174000012, 49.123019259000088 ], [ -123.818233974999941, 49.126501363000067 ], [ -123.812507464, 49.126065831000076 ], [ -123.809510283999927, 49.126888641000022 ], [ -123.809427945999943, 49.126888105000063 ], [ -123.809195185999911, 49.126732011000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.818010642652476", "sL_AssetLoss": "12215", "sL_BldgLoss": "9992", "sL_StrLoss": "5840", "sL_NStrLoss": "4152", "sL_ContLoss": "2223", "geom_point": "0101000020E6100000AB937530C9EB5EC0B4A815C7FD934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.683052102999966, 49.157741703000092 ], [ -123.683916312999941, 49.156845805000032 ], [ -123.683956117999969, 49.15672050400007 ], [ -123.683830275999981, 49.156541095000094 ], [ -123.682862401999941, 49.156942705000041 ], [ -123.682040915999949, 49.157063698000087 ], [ -123.681930620999964, 49.156992500000086 ], [ -123.68202227799999, 49.156650696000106 ], [ -123.681421033999982, 49.156458211000036 ], [ -123.681447834999958, 49.155920543000079 ], [ -123.681639000999951, 49.155761998000102 ], [ -123.681768242999965, 49.155536912000045 ], [ -123.682767842000018, 49.155558432000134 ], [ -123.682807368999988, 49.154764962000051 ], [ -123.683983026999954, 49.154790259000031 ], [ -123.68441059, 49.154827689000093 ], [ -123.684471065999986, 49.154800757000046 ], [ -123.686034931999927, 49.154834381000057 ], [ -123.686158309999982, 49.155240707000097 ], [ -123.686465220999978, 49.155625304000097 ], [ -123.686242108999963, 49.15633739500003 ], [ -123.686292387, 49.157039503000057 ], [ -123.686114399999965, 49.157112193000067 ], [ -123.685798712999926, 49.157069399000079 ], [ -123.685485811999968, 49.157196199000047 ], [ -123.684288899999956, 49.158013704000027 ], [ -123.68400199499996, 49.15805931200002 ], [ -123.683149889999981, 49.157858400000116 ], [ -123.683052102999966, 49.157741703000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.859002045919527", "sL_AssetLoss": "17596", "sL_BldgLoss": "15115", "sL_StrLoss": "10410", "sL_NStrLoss": "4705", "sL_ContLoss": "2481", "geom_point": "0101000020E610000070070BA330F35EC078CC48D644924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.796397206, 49.142536483000093 ], [ -123.794381463999983, 49.141831506000074 ], [ -123.794032858999955, 49.141700218000089 ], [ -123.79407618499998, 49.14078632100005 ], [ -123.794727904999945, 49.140853397000093 ], [ -123.79562149599991, 49.141081312000033 ], [ -123.797751114, 49.141290596000054 ], [ -123.800005807, 49.141743511000044 ], [ -123.800490197, 49.141955710000069 ], [ -123.801243399999947, 49.141987106000045 ], [ -123.802179695999939, 49.142232006 ], [ -123.803387912999966, 49.142205004000097 ], [ -123.80435124499999, 49.142268057000067 ], [ -123.804234505999901, 49.144741861000121 ], [ -123.804208897999956, 49.144740514000063 ], [ -123.803480511999965, 49.144646402000063 ], [ -123.80295819199999, 49.14453759500001 ], [ -123.802505692999958, 49.144404105000099 ], [ -123.801991013999952, 49.144307995000091 ], [ -123.800359409999913, 49.144109898000067 ], [ -123.799996296999907, 49.144053880000094 ], [ -123.799457806999953, 49.143970792000054 ], [ -123.798821511999947, 49.143754199000057 ], [ -123.798637067999948, 49.143670517000039 ], [ -123.798345513999934, 49.143538201000027 ], [ -123.798279093999923, 49.143500806000084 ], [ -123.798256555999927, 49.143488133000041 ], [ -123.797034015999955, 49.14279989900006 ], [ -123.796397206, 49.142536483000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "0.819031844710175", "sL_AssetLoss": "35742.2", "sL_BldgLoss": "29274", "sL_StrLoss": "17020", "sL_NStrLoss": "12254", "sL_ContLoss": "6468.2", "geom_point": "0101000020E6100000CB29434D9BF15EC0C039867436914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.772475994999965, 49.134324093000046 ], [ -123.770375406999904, 49.133623337000124 ], [ -123.770245199999977, 49.133579899000082 ], [ -123.765730902999977, 49.13178189200007 ], [ -123.765395508, 49.131646562000078 ], [ -123.764736914999972, 49.131359320000065 ], [ -123.76307192900002, 49.130624267000123 ], [ -123.762850182999969, 49.130526404000065 ], [ -123.762297217999958, 49.130350096000029 ], [ -123.76184541, 49.130261508000054 ], [ -123.761253195999984, 49.130189686000058 ], [ -123.761114558999907, 49.130182750000095 ], [ -123.760762795999966, 49.130165099000052 ], [ -123.760292393999961, 49.13017781500006 ], [ -123.759151011, 49.13042150400004 ], [ -123.758913415999928, 49.130435503000058 ], [ -123.75874029199997, 49.130418398000131 ], [ -123.757738614999965, 49.130176010000042 ], [ -123.75746668499994, 49.130135204000076 ], [ -123.756934103999967, 49.130161912000084 ], [ -123.756646408, 49.130248709000057 ], [ -123.756270710999971, 49.130429998000054 ], [ -123.756203205999981, 49.130479396000062 ], [ -123.755920092999958, 49.130686505000028 ], [ -123.755510979999926, 49.13107610300009 ], [ -123.755084304999968, 49.131690380000038 ], [ -123.755042558999946, 49.130415536000015 ], [ -123.755130896999916, 49.130408976000062 ], [ -123.755313791999953, 49.130395399000093 ], [ -123.756624192999979, 49.129936796000045 ], [ -123.759082036, 49.130335397000081 ], [ -123.759167322999957, 49.130349216000077 ], [ -123.75918018699997, 49.130351301000118 ], [ -123.760407184999934, 49.129948192000093 ], [ -123.761078892999933, 49.13005080700011 ], [ -123.761639807, 49.129876993000039 ], [ -123.762217181999958, 49.130007996000074 ], [ -123.763354214999964, 49.129990890000087 ], [ -123.764596489999931, 49.130559195000082 ], [ -123.766166697999935, 49.13104340000011 ], [ -123.766540312999965, 49.131301196000024 ], [ -123.768249105, 49.131829593000113 ], [ -123.77063479399996, 49.132731108000016 ], [ -123.770994992999988, 49.132954713000039 ], [ -123.771874008999987, 49.133118501000077 ], [ -123.772551884000038, 49.133474597000067 ], [ -123.77384490499999, 49.133789292000088 ], [ -123.77488521399999, 49.133692503000098 ], [ -123.775873307999959, 49.13376649900006 ], [ -123.777692500999976, 49.134339103000094 ], [ -123.779563991999908, 49.13476771300008 ], [ -123.780806095999978, 49.13529039300002 ], [ -123.783156313999953, 49.135723399000135 ], [ -123.784102186999945, 49.13603910800007 ], [ -123.78416329799991, 49.136059504000059 ], [ -123.784415988999925, 49.136190012000078 ], [ -123.78444805, 49.136201634000038 ], [ -123.78460569899994, 49.136280304000117 ], [ -123.784818186999956, 49.136701792000032 ], [ -123.785292392999935, 49.137274291000047 ], [ -123.785775411999964, 49.137496508000069 ], [ -123.785888722999985, 49.138539100000045 ], [ -123.785988396999969, 49.138781197000164 ], [ -123.786483878999917, 49.13895779700006 ], [ -123.786959682999964, 49.139484698000054 ], [ -123.787717307999941, 49.139803683000039 ], [ -123.788249955, 49.139850456000012 ], [ -123.788234925999944, 49.140166674000078 ], [ -123.787617274999974, 49.139999550000049 ], [ -123.787276289999923, 49.139882352000058 ], [ -123.786343748999968, 49.13956179900007 ], [ -123.78608503299999, 49.139442983000045 ], [ -123.785888098, 49.139293042000112 ], [ -123.785707229999957, 49.139036254000089 ], [ -123.785629005999979, 49.138534025000098 ], [ -123.785612798999921, 49.138429998000113 ], [ -123.785463992999965, 49.138245904000044 ], [ -123.785258307999968, 49.138107502000089 ], [ -123.784774787999964, 49.137907510000069 ], [ -123.784357896999893, 49.137775592000054 ], [ -123.78127527699999, 49.136991592000093 ], [ -123.781006290999983, 49.136912123000059 ], [ -123.779931488999964, 49.136594590000122 ], [ -123.778467824999908, 49.136123895000054 ], [ -123.777384880999961, 49.135775594000066 ], [ -123.776616583999953, 49.135561015000071 ], [ -123.776108133999941, 49.135418995000052 ], [ -123.775811391, 49.135336110000026 ], [ -123.775632867999946, 49.135286258000079 ], [ -123.775469777999945, 49.135240701000043 ], [ -123.774272930999985, 49.134874275000058 ], [ -123.773173196999963, 49.134537565000116 ], [ -123.772475994999965, 49.134324093000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.770942408376963", "sL_AssetLoss": "7640", "sL_BldgLoss": "5890", "sL_StrLoss": "2720", "sL_NStrLoss": "3170", "sL_ContLoss": "1750", "geom_point": "0101000020E6100000DB8F2D2EC2EC5EC02258F20404944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.69761688499996, 49.156302271000094 ], [ -123.697674800999948, 49.155132208000076 ], [ -123.698529211999968, 49.155346097000056 ], [ -123.699014112999976, 49.155658003000042 ], [ -123.69986777699999, 49.155914394000057 ], [ -123.700390598999903, 49.155910087000095 ], [ -123.700692297999964, 49.156043994000079 ], [ -123.700571199999985, 49.156197809000055 ], [ -123.701137390999975, 49.156454212000035 ], [ -123.701265293999938, 49.156750408000057 ], [ -123.701161400999979, 49.157191902000122 ], [ -123.70141020600002, 49.157280208000088 ], [ -123.701233193999926, 49.157335796000076 ], [ -123.700258586999965, 49.157287306000036 ], [ -123.698814595999977, 49.157035213000057 ], [ -123.698317293999963, 49.156850103000032 ], [ -123.697997188000031, 49.156438501000146 ], [ -123.69761688499996, 49.156302271000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.832654391396448", "sL_AssetLoss": "12274", "sL_BldgLoss": "10220", "sL_StrLoss": "6510", "sL_NStrLoss": "3710", "sL_ContLoss": "2054", "geom_point": "0101000020E61000004F7ABEEA31EC5EC07C05924554934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.690237476999954, 49.149295659000046 ], [ -123.690248570000037, 49.14907222000015 ], [ -123.690168934999946, 49.149070511000112 ], [ -123.690174553999967, 49.148957349000028 ], [ -123.690350613999925, 49.14905399000002 ], [ -123.691108091999951, 49.149256199000071 ], [ -123.69177288399996, 49.149693503000023 ], [ -123.692079578999952, 49.150023898000057 ], [ -123.692213609999939, 49.150859898000071 ], [ -123.69268290899997, 49.151063483000094 ], [ -123.693115404999972, 49.151573387000035 ], [ -123.693119619999962, 49.151888202000094 ], [ -123.69292928599999, 49.152060501000115 ], [ -123.692355696999968, 49.152163003000048 ], [ -123.692054705999979, 49.152299808000109 ], [ -123.691412192999948, 49.152358202000087 ], [ -123.691113210999944, 49.152584605000087 ], [ -123.690826394999988, 49.152684299000086 ], [ -123.690620819999978, 49.152658706000047 ], [ -123.690385404999958, 49.152480600000025 ], [ -123.689342113999899, 49.152442202000053 ], [ -123.68882028199999, 49.152328192000077 ], [ -123.688427909999959, 49.152068020000151 ], [ -123.688511091999942, 49.150393989000101 ], [ -123.688950175999977, 49.150403417000064 ], [ -123.688994020999957, 49.149520799000058 ], [ -123.689458523999988, 49.149530770000048 ], [ -123.689471016999946, 49.14927921000006 ], [ -123.690237476999954, 49.149295659000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.821546440358322", "sL_AssetLoss": "8484", "sL_BldgLoss": "6970", "sL_StrLoss": "4040", "sL_NStrLoss": "2930", "sL_ContLoss": "1514", "geom_point": "0101000020E6100000628FA23187EF5EC0762345C7828D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.745032036999959, 49.107722822000063 ], [ -123.74506085799996, 49.107127657000099 ], [ -123.744531212999931, 49.10711655100004 ], [ -123.744563222999943, 49.106455649000097 ], [ -123.744198829999931, 49.10644800700009 ], [ -123.744180017999938, 49.106836361000013 ], [ -123.743573137999959, 49.106823629000111 ], [ -123.742988297999929, 49.106411712000124 ], [ -123.742239306999977, 49.105769408000072 ], [ -123.739930890999972, 49.104424998000127 ], [ -123.739765110999954, 49.104282506000111 ], [ -123.739678606999988, 49.104021892000056 ], [ -123.740524084999919, 49.103701506000093 ], [ -123.740729899999948, 49.103745613000022 ], [ -123.743135097999954, 49.105251002000088 ], [ -123.745366688999979, 49.106945802000084 ], [ -123.746102325999985, 49.108044199000048 ], [ -123.745974245999918, 49.10804151500006 ], [ -123.745806701999967, 49.107968392 ], [ -123.745541181999954, 49.107619497000044 ], [ -123.745294476999931, 49.107539694000153 ], [ -123.745282906999989, 49.107692085000075 ], [ -123.745584551999954, 49.10803334700006 ], [ -123.745380052999934, 49.108029061000082 ], [ -123.7451735, 49.107801799000072 ], [ -123.745032036999959, 49.107722822000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.830626671761559", "sL_AssetLoss": "20936", "sL_BldgLoss": "17390", "sL_StrLoss": "10640", "sL_NStrLoss": "6750", "sL_ContLoss": "3546", "geom_point": "0101000020E61000003EDAACB840EC5EC01C487254C9924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.689627606999977, 49.145388093000037 ], [ -123.688417686999927, 49.14510750500007 ], [ -123.688062593999973, 49.145127399000067 ], [ -123.687828207, 49.145056191000045 ], [ -123.688148986999948, 49.14452360000007 ], [ -123.688837709999973, 49.14380859300006 ], [ -123.689732778999925, 49.144083499 ], [ -123.690645497999924, 49.144536403000075 ], [ -123.691669186999903, 49.14516020100011 ], [ -123.691904304, 49.145427895000068 ], [ -123.693023298999961, 49.14600620400013 ], [ -123.693248190999952, 49.146346591000118 ], [ -123.693751108999933, 49.147980101000023 ], [ -123.694371210999947, 49.148283502000034 ], [ -123.694526696999958, 49.148507110000097 ], [ -123.694420714999922, 49.148831802000096 ], [ -123.693742011999959, 49.149284693000041 ], [ -123.693330810999953, 49.149404292000014 ], [ -123.692688313999966, 49.149408593000082 ], [ -123.691817904999965, 49.148945694000062 ], [ -123.691702912999986, 49.148712190000019 ], [ -123.690344613999983, 49.148649506000048 ], [ -123.69027520500002, 49.148586803000093 ], [ -123.690257409000012, 49.148172399000011 ], [ -123.690667310999942, 49.147162608000087 ], [ -123.690429884999929, 49.146840806000071 ], [ -123.690043818999968, 49.146617199000048 ], [ -123.689776113999983, 49.14615139900004 ], [ -123.68941707499998, 49.146018994000016 ], [ -123.689672209999983, 49.145521886000147 ], [ -123.689627606999977, 49.145388093000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.93633125556545", "sL_AssetLoss": "2246", "sL_BldgLoss": "2103", "sL_StrLoss": "1680", "sL_NStrLoss": "423", "sL_ContLoss": "143", "geom_point": "0101000020E61000009FC7CD150AEC5EC01E73B74E50944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.687326508999945, 49.159353898000042 ], [ -123.687086010999934, 49.15893229200001 ], [ -123.686306400999968, 49.159044804000082 ], [ -123.686003609999915, 49.158947990000087 ], [ -123.686083407999945, 49.158821207000088 ], [ -123.686847596999897, 49.158456589000075 ], [ -123.687958209999948, 49.157424091000053 ], [ -123.688313393999948, 49.157350002000065 ], [ -123.68848109599999, 49.157574990000072 ], [ -123.688513201999939, 49.15789828500003 ], [ -123.68881829799993, 49.15822020400006 ], [ -123.689043604999966, 49.158668792000086 ], [ -123.689721391999939, 49.158970815000067 ], [ -123.689897329999923, 49.159115836000083 ], [ -123.689876913999953, 49.159526891000048 ], [ -123.688397591999944, 49.159544691000079 ], [ -123.688153682999911, 49.159699992000078 ], [ -123.68790179299998, 49.159403700000048 ], [ -123.687326508999945, 49.159353898000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35173417", "BldgCostT": "22311667", "sL_LossRatio": "0.77729544061931", "sL_AssetLoss": "231742", "sL_BldgLoss": "180132", "sL_StrLoss": "98082", "sL_NStrLoss": "82050", "sL_ContLoss": "51610", "geom_point": "0101000020E61000009944411938EF5EC02FCDE7BB5F944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.743350981999981, 49.162766295000054 ], [ -123.742678196, 49.162618208 ], [ -123.741688808999982, 49.162615303000088 ], [ -123.738707340999923, 49.162347103000073 ], [ -123.734610816999989, 49.161978442000134 ], [ -123.734742357, 49.15927776000008 ], [ -123.733350376999979, 49.159248466000044 ], [ -123.733228725999979, 49.161744609000088 ], [ -123.732071102999953, 49.161498683000097 ], [ -123.731507785999966, 49.161438898000064 ], [ -123.731061616999966, 49.161441643000025 ], [ -123.729656699999964, 49.161450296000126 ], [ -123.729024495, 49.161346302000062 ], [ -123.728684222999959, 49.161225581000096 ], [ -123.728526690999971, 49.161169691000033 ], [ -123.727137380000016, 49.160967534000136 ], [ -123.727059728999961, 49.160956225000035 ], [ -123.725806081999963, 49.16077379900004 ], [ -123.72451017799996, 49.160357897000033 ], [ -123.723431703999921, 49.16019563900003 ], [ -123.723587987, 49.159441496000085 ], [ -123.723650601999935, 49.157491183000104 ], [ -123.723650688999911, 49.156929213000097 ], [ -123.725117714999925, 49.156743204000058 ], [ -123.725839719999925, 49.156688200000112 ], [ -123.72811629399996, 49.156671878000019 ], [ -123.728080316000018, 49.157408481000083 ], [ -123.729346294999957, 49.157435187000026 ], [ -123.729327598999973, 49.157818168000105 ], [ -123.72930316599998, 49.158318662000092 ], [ -123.72971653499999, 49.158327379000035 ], [ -123.729685135999944, 49.158970659000069 ], [ -123.729964391999928, 49.158976547000066 ], [ -123.730019338999938, 49.157850654000114 ], [ -123.730079927999952, 49.156609145000068 ], [ -123.731328306999927, 49.156470793000096 ], [ -123.733719117999911, 49.156277891000059 ], [ -123.733803533999946, 49.15627538300005 ], [ -123.73877139899993, 49.156127493000099 ], [ -123.740702001999949, 49.156071705000052 ], [ -123.743879159999977, 49.155946773000039 ], [ -123.74650909099995, 49.155843268000062 ], [ -123.748588586999986, 49.155761391000077 ], [ -123.750694161999959, 49.155756538000041 ], [ -123.751192178999986, 49.155755390000124 ], [ -123.751190292999979, 49.156535959000045 ], [ -123.751189616999952, 49.156832789000092 ], [ -123.751188645999889, 49.157228655000019 ], [ -123.751188384, 49.157335008000089 ], [ -123.751215440999971, 49.157948122000036 ], [ -123.751217814999933, 49.158001996000117 ], [ -123.75124923599995, 49.15826204400004 ], [ -123.746170679999949, 49.158155857000089 ], [ -123.746173652999985, 49.158094521000088 ], [ -123.743522287999937, 49.158038988000065 ], [ -123.743560401999943, 49.15725333000006 ], [ -123.741021220999954, 49.157200085000063 ], [ -123.740951534999965, 49.158634892000073 ], [ -123.740909532, 49.158634012000014 ], [ -123.740900872999958, 49.158812295000097 ], [ -123.740948042999918, 49.158813285000065 ], [ -123.740889636999952, 49.160015804000167 ], [ -123.744149856999954, 49.160084155000085 ], [ -123.744156625999963, 49.15994458600008 ], [ -123.749632192999911, 49.160059161000056 ], [ -123.749469640999962, 49.163418580000048 ], [ -123.749314799999951, 49.16338439599999 ], [ -123.747791184999969, 49.163280526000023 ], [ -123.747267106, 49.163244792000029 ], [ -123.743772236999988, 49.162817764000039 ], [ -123.743350981999981, 49.162766295000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22337917", "BldgCostT": "15141667", "sL_LossRatio": "0.859145642201835", "sL_AssetLoss": "104640", "sL_BldgLoss": "89901", "sL_StrLoss": "61140", "sL_NStrLoss": "28761", "sL_ContLoss": "14739", "geom_point": "0101000020E6100000A7BA8097D9F45EC0226FF3A53B934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.830279203999979, 49.157594394000093 ], [ -123.829247609999939, 49.157093584000073 ], [ -123.828418994999979, 49.156644597000081 ], [ -123.826996298, 49.155659509000017 ], [ -123.826233185999982, 49.154983091000076 ], [ -123.826086206999946, 49.15481379100008 ], [ -123.825069316999986, 49.153642338000097 ], [ -123.824149303999931, 49.152582403000075 ], [ -123.823750000999937, 49.152038511000065 ], [ -123.823579890999937, 49.151808098000025 ], [ -123.823318786999963, 49.151151694000177 ], [ -123.82297421199999, 49.150698981000126 ], [ -123.82647025299994, 49.150769622000098 ], [ -123.826419456999986, 49.151856843000061 ], [ -123.831162647999975, 49.15195250200005 ], [ -123.831149829999944, 49.152227438000089 ], [ -123.83164884699994, 49.152237490000061 ], [ -123.831588585999953, 49.153530297 ], [ -123.831704399000031, 49.153529463000076 ], [ -123.831699882999899, 49.153259630000086 ], [ -123.832111260999937, 49.153256665000107 ], [ -123.832088660999972, 49.151907502000064 ], [ -123.831677295999953, 49.151910466000096 ], [ -123.831663743999954, 49.15110096700009 ], [ -123.83125238299999, 49.151103929000065 ], [ -123.831243353000033, 49.150564263000085 ], [ -123.830831996999933, 49.150567225000067 ], [ -123.830827413999941, 49.150293130000044 ], [ -123.830030799999932, 49.150277076000101 ], [ -123.830038768999941, 49.15010621400004 ], [ -123.827470216999984, 49.150054409000042 ], [ -123.82749507799997, 49.149522027000074 ], [ -123.827300841999886, 49.149518107000091 ], [ -123.827322596, 49.149052313 ], [ -123.824843182, 49.149002244000059 ], [ -123.824847361999957, 49.148912827000061 ], [ -123.820544437999928, 49.148825797000086 ], [ -123.820517071000026, 49.14940998000003 ], [ -123.820163596999976, 49.149285806000108 ], [ -123.819979304999933, 49.149183899000072 ], [ -123.819698618999894, 49.14888910500008 ], [ -123.819509496999942, 49.148481014000033 ], [ -123.819056599999954, 49.147679302000036 ], [ -123.818706875999951, 49.147449986000019 ], [ -123.818652621999931, 49.147414400000073 ], [ -123.815647881999894, 49.146055799000067 ], [ -123.815342094999949, 49.145975708000037 ], [ -123.814458395999978, 49.145832603000088 ], [ -123.808410816999981, 49.145043206000061 ], [ -123.80793230099998, 49.144936204000118 ], [ -123.805746465999974, 49.144821339000046 ], [ -123.805798192999987, 49.143724457000083 ], [ -123.809544502999984, 49.143800761000108 ], [ -123.809574600999937, 49.143161434000064 ], [ -123.810137189999963, 49.143256005000133 ], [ -123.811445909999946, 49.143633389000094 ], [ -123.813260385999982, 49.143908298000049 ], [ -123.813950789999964, 49.144227301000093 ], [ -123.814994496999972, 49.144419537000012 ], [ -123.81496488, 49.145050216000094 ], [ -123.816667475999921, 49.145084764000046 ], [ -123.81665862199999, 49.14527344600004 ], [ -123.817289863, 49.145286248000069 ], [ -123.817272879999976, 49.145648263000041 ], [ -123.819080520999933, 49.145684902000063 ], [ -123.81906082099999, 49.146105161 ], [ -123.81952143099997, 49.146114492000038 ], [ -123.819508574999958, 49.146388796000103 ], [ -123.82050590099999, 49.146408993000087 ], [ -123.820549476999958, 49.145478730000065 ], [ -123.82420077899998, 49.146305300000073 ], [ -123.825425005999961, 49.14662 ], [ -123.825579016999967, 49.146685530000106 ], [ -123.826047706999958, 49.146884884000073 ], [ -123.826818857999939, 49.1469558470001 ], [ -123.826956923999916, 49.1469685510001 ], [ -123.828230482999984, 49.147085705000052 ], [ -123.828942966999961, 49.147196986000047 ], [ -123.829807913999971, 49.147332053000127 ], [ -123.830011298999977, 49.147457567000082 ], [ -123.829890333999955, 49.147473664000096 ], [ -123.829806080999958, 49.147484857000038 ], [ -123.829245440999941, 49.147298070000062 ], [ -123.828825291999976, 49.14735028300003 ], [ -123.828817804999957, 49.147480221000095 ], [ -123.829095586999983, 49.147663536000081 ], [ -123.829712567999934, 49.147882399000132 ], [ -123.829744580999957, 49.147893766000095 ], [ -123.830648967999934, 49.148005432000097 ], [ -123.830770659999928, 49.148067856000054 ], [ -123.831243039999919, 49.148119064000106 ], [ -123.831797459999947, 49.148295828000123 ], [ -123.832433137999928, 49.14866120200012 ], [ -123.833149639999988, 49.149233331000097 ], [ -123.834006545999941, 49.149198069000093 ], [ -123.835685511999941, 49.149648228000061 ], [ -123.837565578999971, 49.150085460000099 ], [ -123.837873914999975, 49.150302313000033 ], [ -123.837885213999954, 49.150350278000076 ], [ -123.837849471999917, 49.151119327000082 ], [ -123.83536590599995, 49.151069420000077 ], [ -123.83537506199994, 49.151613907000041 ], [ -123.834963696999949, 49.151616882000035 ], [ -123.834977300999981, 49.152426380000122 ], [ -123.834565931, 49.152429354000041 ], [ -123.834579529999971, 49.153238852000086 ], [ -123.834168150999957, 49.153241825000094 ], [ -123.834177213999936, 49.15378149 ], [ -123.833765829999919, 49.153784461000072 ], [ -123.833779417999963, 49.154593959000138 ], [ -123.833368027999967, 49.154596929000022 ], [ -123.833386135999916, 49.15567625900006 ], [ -123.832974738999937, 49.155679228000068 ], [ -123.833006413999968, 49.157568056000038 ], [ -123.832595, 49.157571023000123 ], [ -123.832608567999927, 49.158380521000012 ], [ -123.832194249999972, 49.158383507000103 ], [ -123.830290838999986, 49.157599204000057 ], [ -123.830279203999979, 49.157594394000093 ] ], [ [ -123.830944829999936, 49.157313045000045 ], [ -123.830940314999935, 49.157043212000069 ], [ -123.830634904999982, 49.157045410000087 ], [ -123.830622313999953, 49.157315366000034 ], [ -123.830944829999936, 49.157313045000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58867666", "BldgCostT": "38596666", "sL_LossRatio": "0.821352659809509", "sL_AssetLoss": "310041", "sL_BldgLoss": "254653", "sL_StrLoss": "160139", "sL_NStrLoss": "94514", "sL_ContLoss": "55388", "geom_point": "0101000020E61000007A55E37C9CF25EC046283ABBCA904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.803654982999944, 49.136689000000111 ], [ -123.803473710999953, 49.136600706000046 ], [ -123.802928408999932, 49.136738793000113 ], [ -123.803316809999913, 49.136998088000084 ], [ -123.802657383999971, 49.13699380600012 ], [ -123.800433408999965, 49.136774501000062 ], [ -123.797617792999944, 49.136371401000105 ], [ -123.797011798999932, 49.13621330900007 ], [ -123.795844912999939, 49.136159199000133 ], [ -123.795184603999957, 49.136028197000023 ], [ -123.79489708700001, 49.136075211000112 ], [ -123.794470986999954, 49.13596119300005 ], [ -123.792536016999946, 49.135813093000159 ], [ -123.792136090999946, 49.135699202000055 ], [ -123.791010893999967, 49.135679200000048 ], [ -123.789734312999911, 49.135525400000034 ], [ -123.788346019999949, 49.135283300000019 ], [ -123.785895810999975, 49.134616789000162 ], [ -123.785776212999934, 49.13457795900009 ], [ -123.784075883999947, 49.134025705000091 ], [ -123.781717301999933, 49.133098591000092 ], [ -123.780625902999972, 49.131747012000119 ], [ -123.779247803999937, 49.131234305000056 ], [ -123.777678308999981, 49.130876794000116 ], [ -123.775776010999962, 49.13011478900011 ], [ -123.775637788999987, 49.130007991000113 ], [ -123.775661681999935, 49.129837098000031 ], [ -123.774659903999961, 49.128944083000171 ], [ -123.774164601, 49.128767601000021 ], [ -123.773753679999956, 49.128716297000089 ], [ -123.773315398999941, 49.128818804000097 ], [ -123.77315562099993, 49.129107899000118 ], [ -123.772895402999922, 49.129117885000021 ], [ -123.771611810999943, 49.128503375000065 ], [ -123.771685715999965, 49.126959642000081 ], [ -123.771634440999975, 49.126959985000049 ], [ -123.771632576999977, 49.126839699000122 ], [ -123.76959032799999, 49.126797382000071 ], [ -123.769424434999934, 49.126700296000045 ], [ -123.769510037000018, 49.1249139190001 ], [ -123.768415909999973, 49.124891230000067 ], [ -123.768106881, 49.12440949900008 ], [ -123.767581987999961, 49.124188702000048 ], [ -123.766959091999979, 49.123770013000055 ], [ -123.767208886999953, 49.123110598000018 ], [ -123.767412304999979, 49.122848502000039 ], [ -123.768115494, 49.122331508000059 ], [ -123.768621005999961, 49.122147796000107 ], [ -123.768764296999947, 49.122331233000068 ], [ -123.769012608999958, 49.122649093000057 ], [ -123.76935619599999, 49.122781612000111 ], [ -123.769769216999975, 49.122805801000048 ], [ -123.770368713, 49.122586495000057 ], [ -123.770820117999918, 49.122511005000092 ], [ -123.771381210999962, 49.122589303000055 ], [ -123.772353295999949, 49.123301396000095 ], [ -123.77385680899998, 49.124020704 ], [ -123.774745384999974, 49.124707106000102 ], [ -123.774993679999952, 49.124804001000079 ], [ -123.77548871, 49.124899384000109 ], [ -123.776061917999968, 49.124796800000055 ], [ -123.776763202999987, 49.124900807000074 ], [ -123.777639099999959, 49.1247513120001 ], [ -123.778006006999988, 49.124613102000104 ], [ -123.77859882199999, 49.124825303000065 ], [ -123.779571592999929, 49.124809715000026 ], [ -123.780259094999977, 49.12495780200009 ], [ -123.783864499999979, 49.126696686000038 ], [ -123.784980298999983, 49.127040013000055 ], [ -123.786234695999923, 49.12757120100013 ], [ -123.788550580999967, 49.128274798000071 ], [ -123.789597093999987, 49.128672110000068 ], [ -123.790726393999975, 49.128952701000102 ], [ -123.79106781899999, 49.128974306000067 ], [ -123.790980847999919, 49.130806840000048 ], [ -123.788965631999972, 49.130765451000052 ], [ -123.788971904999954, 49.131160662000049 ], [ -123.788560703999948, 49.131163471000029 ], [ -123.788573543999973, 49.131972981000011 ], [ -123.788964178999919, 49.131970313000089 ], [ -123.789001376999977, 49.131187308000101 ], [ -123.791574890999954, 49.13124015500005 ], [ -123.791579510999924, 49.131142813000118 ], [ -123.791439101999984, 49.131143775000041 ], [ -123.791426216999952, 49.130334265000094 ], [ -123.791617936999927, 49.130332951000064 ], [ -123.79167098299996, 49.129214968000078 ], [ -123.792140357, 49.129224600000043 ], [ -123.793078417999965, 49.129502407000082 ], [ -123.793585421999978, 49.129491006000087 ], [ -123.79421450800001, 49.129315884000093 ], [ -123.795268992999937, 49.12935290100004 ], [ -123.795557585999973, 49.12922967300009 ], [ -123.795570320999929, 49.129229934000122 ], [ -123.795599708999973, 49.129368597000038 ], [ -123.795751899999985, 49.129458301000078 ], [ -123.7966574229999, 49.129559401000073 ], [ -123.797365212999964, 49.130130489000059 ], [ -123.79795832399995, 49.130369803000093 ], [ -123.799250293999961, 49.130530715000098 ], [ -123.80002110599996, 49.130787083000058 ], [ -123.800736344999976, 49.130881454000111 ], [ -123.80068870699999, 49.1318895960001 ], [ -123.800909716999939, 49.13188806400008 ], [ -123.800914064999915, 49.132157898000081 ], [ -123.802147684999923, 49.132149334000069 ], [ -123.802138977, 49.131609663000084 ], [ -123.802376237999979, 49.131608014000101 ], [ -123.802393847999923, 49.131235050000043 ], [ -123.803765208999963, 49.130895309000081 ], [ -123.804822594999948, 49.13088820600008 ], [ -123.806061802999935, 49.131311207000095 ], [ -123.806243389999977, 49.131480692000082 ], [ -123.806359001999965, 49.131912206000052 ], [ -123.807146697999897, 49.132266795000085 ], [ -123.807928487999945, 49.132332291000097 ], [ -123.808899313999959, 49.132172804000064 ], [ -123.809804899999932, 49.132184201000079 ], [ -123.811951215999926, 49.132620001000113 ], [ -123.812696289999906, 49.132883506000056 ], [ -123.813140385999986, 49.133276597000105 ], [ -123.813101803999956, 49.133439008000082 ], [ -123.813435509999962, 49.133733790000065 ], [ -123.814648, 49.134084088000073 ], [ -123.815311989999955, 49.134403090000035 ], [ -123.816041910999971, 49.134623897000125 ], [ -123.816567212999956, 49.134961388000058 ], [ -123.816829440999982, 49.135423263000071 ], [ -123.816948899999986, 49.135633710000064 ], [ -123.81666319899989, 49.135805985000061 ], [ -123.817109589999987, 49.136199109000053 ], [ -123.81699078099993, 49.136532301000024 ], [ -123.8150931, 49.13693248500006 ], [ -123.813158606999963, 49.13691968800002 ], [ -123.812365403999948, 49.136979489000112 ], [ -123.811800704999897, 49.136821511000058 ], [ -123.810485717999981, 49.136884100000067 ], [ -123.809885554999966, 49.136854071000123 ], [ -123.80989360800001, 49.136682982000075 ], [ -123.808059880999977, 49.136695830000058 ], [ -123.807917093999933, 49.136677592000126 ], [ -123.807451974999964, 49.136707494000063 ], [ -123.807233810999932, 49.136790087000101 ], [ -123.806985614999959, 49.136630602000025 ], [ -123.805955508999929, 49.136537999000076 ], [ -123.805449684999985, 49.136640591000067 ], [ -123.805465887999986, 49.136767300000088 ], [ -123.806445982999932, 49.137210293000059 ], [ -123.80545939599989, 49.137234487000057 ], [ -123.804127974999972, 49.137100597000035 ], [ -123.803850289999957, 49.136993811000117 ], [ -123.803654982999944, 49.136689000000111 ] ], [ [ -123.809944423999966, 49.135603160000123 ], [ -123.809960823, 49.135254698000082 ], [ -123.809665246999955, 49.135248683000022 ], [ -123.809689161000037, 49.134740574000055 ], [ -123.807955973999952, 49.134705284000084 ], [ -123.807925727999987, 49.135347437000114 ], [ -123.80877966599995, 49.135341458000013 ], [ -123.808784054999947, 49.135611294000029 ], [ -123.809944423999966, 49.135603160000123 ] ], [ [ -123.805861038000018, 49.13465626600005 ], [ -123.805916849999946, 49.133472416000139 ], [ -123.802580671999934, 49.133495656000044 ], [ -123.802577760999966, 49.133315351000057 ], [ -123.80229588899999, 49.133309595000078 ], [ -123.802299753999989, 49.13322774300007 ], [ -123.801753885999915, 49.133231534000096 ], [ -123.801758236999916, 49.133501371000079 ], [ -123.80216945599993, 49.133498514000095 ], [ -123.802182517999952, 49.13430802000002 ], [ -123.802593741999956, 49.134305162000089 ], [ -123.80259570299998, 49.134426575000113 ], [ -123.803281930999958, 49.134440585000071 ], [ -123.803274242000015, 49.134603493000029 ], [ -123.805861038000018, 49.13465626600005 ] ], [ [ -123.800538066999962, 49.134347189000117 ], [ -123.800528927999892, 49.133779766000075 ], [ -123.800117706999941, 49.133782617000101 ], [ -123.800113363999955, 49.133512780000075 ], [ -123.79970214699992, 49.133515629000058 ], [ -123.799692511999979, 49.132916743000131 ], [ -123.796975779999968, 49.132861159000115 ], [ -123.796972705999963, 49.132926087000094 ], [ -123.794532819, 49.132876109000044 ], [ -123.794502519999952, 49.133515505000055 ], [ -123.794902588999946, 49.13352370300003 ], [ -123.794881500999978, 49.13396878000006 ], [ -123.798009103999959, 49.134032823000048 ], [ -123.798003175999909, 49.13415808900006 ], [ -123.799171669999936, 49.134181993000063 ], [ -123.799165183999918, 49.134319120000093 ], [ -123.800538066999962, 49.134347189000117 ] ], [ [ -123.786086467999951, 49.13073541300011 ], [ -123.786086006999952, 49.130706242 ], [ -123.785602395999916, 49.130696291000085 ], [ -123.78560101, 49.130725423000072 ], [ -123.786086467999951, 49.13073541300011 ] ], [ [ -123.785522970999949, 49.130392709000063 ], [ -123.785563993999972, 49.129530462000091 ], [ -123.78377954199999, 49.129493723000088 ], [ -123.783749705999966, 49.130120321000049 ], [ -123.784897560000019, 49.130143957000016 ], [ -123.784886343999958, 49.130379605000016 ], [ -123.785522970999949, 49.130392709000063 ] ], [ [ -123.783265215999961, 49.129255966000095 ], [ -123.78328001, 49.128945357000148 ], [ -123.782780359999919, 49.128935062000053 ], [ -123.782765562999941, 49.129245671000064 ], [ -123.783265215999961, 49.129255966000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.831931595178021", "sL_AssetLoss": "7134", "sL_BldgLoss": "5935", "sL_StrLoss": "3820", "sL_NStrLoss": "2115", "sL_ContLoss": "1199", "geom_point": "0101000020E6100000C45EE64329EB5EC0231A5909C8924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.673151890999932, 49.1478860920001 ], [ -123.673361287999967, 49.147067197000126 ], [ -123.672906611999977, 49.146880593000148 ], [ -123.67313268099997, 49.146439097000062 ], [ -123.673296696999955, 49.146356494000067 ], [ -123.673612701999971, 49.146336611000017 ], [ -123.673773577999938, 49.146201295000012 ], [ -123.67352418800003, 49.145986194000066 ], [ -123.673338903999962, 49.145447904000051 ], [ -123.673365193999985, 49.145304002000074 ], [ -123.673568412999941, 49.145221406000097 ], [ -123.673830604999949, 49.145301184000076 ], [ -123.67403850699999, 49.14548920700004 ], [ -123.674572508999944, 49.145449293000098 ], [ -123.67468370399996, 49.145503404000095 ], [ -123.675909010999959, 49.146853599000046 ], [ -123.67610599399994, 49.147266611000042 ], [ -123.676094897999988, 49.147383396000109 ], [ -123.675741687999903, 49.147601311000066 ], [ -123.675181202999937, 49.147730890000105 ], [ -123.675014890999947, 49.147705291000044 ], [ -123.674820391999972, 49.147481702000071 ], [ -123.674475400999938, 49.147374801000062 ], [ -123.674276212999942, 49.147745096000087 ], [ -123.673949007999937, 49.1479088930001 ], [ -123.673360702999929, 49.148030004000077 ], [ -123.673151890999932, 49.1478860920001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.826874417365828", "sL_AssetLoss": "7509", "sL_BldgLoss": "6209", "sL_StrLoss": "3950", "sL_NStrLoss": "2259", "sL_ContLoss": "1300", "geom_point": "0101000020E610000091E31CAF9FEB5EC0136B0AC7A0914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.679619974999966, 49.136507972000075 ], [ -123.683433744999931, 49.136590136000059 ], [ -123.683331835999923, 49.138637184000117 ], [ -123.682541986999965, 49.138674296000083 ], [ -123.682257894999935, 49.138819586000047 ], [ -123.682150405999963, 49.13904610900007 ], [ -123.68190509, 49.139199901 ], [ -123.681442214999947, 49.139337997000055 ], [ -123.680934592999961, 49.139358004000044 ], [ -123.680679701999949, 49.138819603000073 ], [ -123.680211104999913, 49.138607411000066 ], [ -123.680030704999922, 49.137475195000022 ], [ -123.679613001999968, 49.136982384000071 ], [ -123.679619974999966, 49.136507972000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57953083", "BldgCostT": "38968333", "sL_LossRatio": "0.817637369769053", "sL_AssetLoss": "328205.4", "sL_BldgLoss": "268353", "sL_StrLoss": "168970", "sL_NStrLoss": "99383", "sL_ContLoss": "59852.4", "geom_point": "0101000020E61000004B7A5A76EFF65EC007168FA407984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.855040810999952, 49.199774390000101 ], [ -123.85462649699997, 49.1996690100001 ], [ -123.854010893999941, 49.199737302000095 ], [ -123.853501401999964, 49.199677492000077 ], [ -123.853512295999948, 49.199552201000081 ], [ -123.854004280999987, 49.199314294000054 ], [ -123.853995798999961, 49.198918401000064 ], [ -123.854540492999945, 49.198609404000102 ], [ -123.854332295999967, 49.198493987000127 ], [ -123.854372297999973, 49.198429888000078 ], [ -123.85528419299996, 49.197974194000068 ], [ -123.855803082999927, 49.197844590000088 ], [ -123.85622521399992, 49.197642291000058 ], [ -123.856400309999927, 49.197452901000084 ], [ -123.856139605999942, 49.197373085000024 ], [ -123.856805491999921, 49.197018495000101 ], [ -123.857442603999942, 49.19653570800007 ], [ -123.857342519000014, 49.19631210000005 ], [ -123.857772890999982, 49.195805101000097 ], [ -123.85784740299998, 49.195373496000116 ], [ -123.85822890499999, 49.195154193000072 ], [ -123.858443718999965, 49.194909304000085 ], [ -123.857706491999949, 49.194358093000034 ], [ -123.857150985999951, 49.194056194000069 ], [ -123.85676698199994, 49.19398639500011 ], [ -123.85632791099998, 49.194153640000074 ], [ -123.854330838999942, 49.193117255000075 ], [ -123.851310895999958, 49.191170751000115 ], [ -123.851327889999979, 49.190803113000065 ], [ -123.851739335, 49.19081131600008 ], [ -123.851762204999929, 49.190316523000078 ], [ -123.849928989999938, 49.190279960000105 ], [ -123.84696385299999, 49.188368421000078 ], [ -123.847950641999887, 49.18449668300007 ], [ -123.848139514, 49.184500455 ], [ -123.848140278999935, 49.184483916000033 ], [ -123.85002983599999, 49.184521639000089 ], [ -123.85012291299995, 49.182509060000022 ], [ -123.85402441, 49.18258684400012 ], [ -123.854528809999977, 49.182596890000056 ], [ -123.85454437099996, 49.182259709000114 ], [ -123.854472090999977, 49.182258270000041 ], [ -123.85265581099999, 49.182222082000123 ], [ -123.852715510999985, 49.180929548000051 ], [ -123.849183763999974, 49.180859096000091 ], [ -123.849192632999944, 49.180667385000035 ], [ -123.848950929999944, 49.180662559000034 ], [ -123.849014301999958, 49.180418511000099 ], [ -123.851058988999938, 49.174023597000037 ], [ -123.851405656999972, 49.174373951000057 ], [ -123.851484702999954, 49.174453826000111 ], [ -123.85177261599992, 49.17474480100006 ], [ -123.852421698999947, 49.175557765000129 ], [ -123.852584886999949, 49.175736222000062 ], [ -123.852753960999948, 49.175886912000131 ], [ -123.852820547999968, 49.175946227000097 ], [ -123.853085560999887, 49.176118480000106 ], [ -123.853084706999965, 49.17613698100012 ], [ -123.850554564999953, 49.176086524000063 ], [ -123.850508102999981, 49.177091546000042 ], [ -123.852622071000027, 49.17713370700006 ], [ -123.852613215999952, 49.177325420000038 ], [ -123.854828102999988, 49.177369550000044 ], [ -123.854768463999932, 49.178662094000067 ], [ -123.85496129799999, 49.178665933000104 ], [ -123.854964843999966, 49.178589068000079 ], [ -123.855811561999943, 49.17860592400006 ], [ -123.855828972, 49.178228437000023 ], [ -123.855700166999981, 49.178225873000045 ], [ -123.855703557999931, 49.178152347000022 ], [ -123.854885141999944, 49.178136053000046 ], [ -123.85495589099996, 49.176602574000157 ], [ -123.855188941999984, 49.176632789000081 ], [ -123.856371606999943, 49.1772673380001 ], [ -123.856367097000017, 49.177267605000047 ], [ -123.856342982999962, 49.177392904000058 ], [ -123.856594401, 49.177606500000095 ], [ -123.857129482999952, 49.177702004000032 ], [ -123.858154293999974, 49.178161998000107 ], [ -123.858662680999942, 49.178238897000071 ], [ -123.859480694999931, 49.178773008000036 ], [ -123.861559098, 49.17908200800008 ], [ -123.861810238999965, 49.179335905000102 ], [ -123.861824009999935, 49.179349806000104 ], [ -123.861764197999918, 49.179389573 ], [ -123.861661300999941, 49.179457999000071 ], [ -123.860865402999963, 49.179517795000045 ], [ -123.859658192000012, 49.179490789000099 ], [ -123.859384909999932, 49.179574804000019 ], [ -123.859414699999888, 49.179681606 ], [ -123.859622593999973, 49.179769913000023 ], [ -123.86023979699992, 49.179819801000093 ], [ -123.860792706999959, 49.17996928500002 ], [ -123.860730920999984, 49.180107123000063 ], [ -123.860712286999913, 49.180148705000093 ], [ -123.862359993999974, 49.180245600000127 ], [ -123.862477305999946, 49.179866803000039 ], [ -123.862696417000038, 49.179747095000025 ], [ -123.862378196999941, 49.179641693000093 ], [ -123.862553587999983, 49.179479390000026 ], [ -123.862806649, 49.179509879000072 ], [ -123.862896617999951, 49.179520706000126 ], [ -123.863133216999941, 49.179725799000082 ], [ -123.863794495999912, 49.179794097000112 ], [ -123.864029723, 49.179935101000119 ], [ -123.864310690999986, 49.180338192000114 ], [ -123.864313599999946, 49.180509099000069 ], [ -123.862760306999917, 49.180305401000048 ], [ -123.862721698999962, 49.180476287000047 ], [ -123.863867378999913, 49.180809599000042 ], [ -123.865169895999927, 49.18160859400011 ], [ -123.865505093999943, 49.181894795000083 ], [ -123.864901206, 49.181934700000028 ], [ -123.863991884999962, 49.181716807000029 ], [ -123.86325229699996, 49.181785200000043 ], [ -123.86318569299999, 49.181920497000185 ], [ -123.863380496, 49.182008802000048 ], [ -123.863577286999899, 49.182304995000017 ], [ -123.862230793999956, 49.182179695000066 ], [ -123.862133382999943, 49.182198193000012 ], [ -123.861960501999974, 49.182524291000028 ], [ -123.86320539899998, 49.183035585000091 ], [ -123.863553091999918, 49.183303407000075 ], [ -123.863499908000023, 49.183430107000042 ], [ -123.862305911999968, 49.183430104000124 ], [ -123.861590708999969, 49.183254901000133 ], [ -123.861136310999953, 49.183249189000101 ], [ -123.860849391999935, 49.183341788000064 ], [ -123.860893013999942, 49.183467196000052 ], [ -123.861308505999929, 49.183589586000046 ], [ -123.861654408999954, 49.183848786000119 ], [ -123.862439701999946, 49.184031108000056 ], [ -123.863655604999977, 49.184481188000049 ], [ -123.865094811999953, 49.185171888000049 ], [ -123.865964021999972, 49.185426899000056 ], [ -123.866601500999934, 49.185835603000037 ], [ -123.867348607999972, 49.18615320300006 ], [ -123.869345884999987, 49.187325299000079 ], [ -123.871669701999934, 49.189089897 ], [ -123.872348381999984, 49.189444597000076 ], [ -123.873439087999913, 49.190229368000082 ], [ -123.873585489999954, 49.190334699000104 ], [ -123.873585692999967, 49.190424399000072 ], [ -123.873035595, 49.190383102000126 ], [ -123.873164784999972, 49.190652298000096 ], [ -123.872960303999889, 49.190753393000101 ], [ -123.870915993999958, 49.190021407000053 ], [ -123.870670611999941, 49.190051296000085 ], [ -123.870319284999979, 49.190341793000044 ], [ -123.870682302999924, 49.190770502000106 ], [ -123.872730809999965, 49.191726203000144 ], [ -123.872996517999965, 49.19194970000008 ], [ -123.87301151299998, 49.192048005000061 ], [ -123.872914603999931, 49.192084992000069 ], [ -123.87194979399996, 49.19182161500003 ], [ -123.8712851, 49.192213191000079 ], [ -123.869962318999967, 49.191962602000096 ], [ -123.869671698000033, 49.191838712000063 ], [ -123.869289902999952, 49.192003905000021 ], [ -123.867958796999972, 49.191932700000073 ], [ -123.866374488999924, 49.19166630300009 ], [ -123.864768408999979, 49.191650690000074 ], [ -123.863551916999967, 49.191956905000012 ], [ -123.862476306999966, 49.192405497000053 ], [ -123.861176596999883, 49.192594900000103 ], [ -123.860479605999927, 49.192789986000044 ], [ -123.860099791, 49.193053507000052 ], [ -123.859969577999919, 49.193494994000034 ], [ -123.859993715999963, 49.194133095000041 ], [ -123.860205798999914, 49.194429295000077 ], [ -123.861414985999915, 49.194563200000076 ], [ -123.862541304999979, 49.194555984000026 ], [ -123.86305248299999, 49.194749695000084 ], [ -123.863725101999961, 49.194798207000076 ], [ -123.864938293999899, 49.195112898000104 ], [ -123.865101693000014, 49.194940607000099 ], [ -123.865305778999939, 49.19489499900012 ], [ -123.865431203999918, 49.195010402000079 ], [ -123.865437617999973, 49.195343599000118 ], [ -123.865741504999932, 49.195494593000021 ], [ -123.866486105999982, 49.195668410000081 ], [ -123.866818191999954, 49.19585489500006 ], [ -123.86729370899999, 49.196300692000065 ], [ -123.867296288999952, 49.196480212000104 ], [ -123.867050780999975, 49.196510095000086 ], [ -123.866636894999957, 49.196396102000065 ], [ -123.865491806999941, 49.196871788000053 ], [ -123.865303208999975, 49.197116789000056 ], [ -123.865071581000024, 49.197207892000129 ], [ -123.864995105999938, 49.19747848500004 ], [ -123.864764286999915, 49.197677905000063 ], [ -123.8640300819999, 49.198033994000099 ], [ -123.86389780899998, 49.198412802000114 ], [ -123.863445576999979, 49.198434198000044 ], [ -123.862668085999957, 49.198656304000039 ], [ -123.862023393999948, 49.198741808000065 ], [ -123.861480301999961, 49.199016688000057 ], [ -123.861161907999929, 49.198973908000035 ], [ -123.860617397999988, 49.199184703000064 ], [ -123.859822708999971, 49.199261589000038 ], [ -123.859345687999962, 49.199472397000072 ], [ -123.85860448899993, 49.199523705000047 ], [ -123.858233205999937, 49.199462509000107 ], [ -123.857687491999968, 49.199620515000085 ], [ -123.857137204999958, 49.199579186000065 ], [ -123.856536309999967, 49.199754405000164 ], [ -123.856152475, 49.199711694000015 ], [ -123.855040810999952, 49.199774390000101 ] ], [ [ -123.86269537699998, 49.18696898000011 ], [ -123.862789616999962, 49.184919302000047 ], [ -123.860430540999914, 49.184872480000095 ], [ -123.860441872999942, 49.184626257000069 ], [ -123.85929881499996, 49.184603551000031 ], [ -123.85933845699999, 49.18374271700003 ], [ -123.859330268999912, 49.183742554000069 ], [ -123.859378229999919, 49.182701002000087 ], [ -123.855601039999939, 49.182625886000018 ], [ -123.855567504999925, 49.183352858000042 ], [ -123.859303201999978, 49.183427150000107 ], [ -123.859215833999912, 49.185324348000023 ], [ -123.859341914999902, 49.185326853000035 ], [ -123.859274155999955, 49.186798239000076 ], [ -123.862670784999935, 49.186865671000064 ], [ -123.86266606099997, 49.186968399000101 ], [ -123.86269537699998, 49.18696898000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38009251", "BldgCostT": "25245001", "sL_LossRatio": "0.704936591322487", "sL_AssetLoss": "471702", "sL_BldgLoss": "332520", "sL_StrLoss": "163110", "sL_NStrLoss": "169410", "sL_ContLoss": "139182", "geom_point": "0101000020E6100000DF4D2AF99CEF5EC02FB938C70C8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.753997004999945, 49.112232511000052 ], [ -123.752892291999984, 49.111645702000033 ], [ -123.752130002999962, 49.111030401000058 ], [ -123.750371492999975, 49.109918104000037 ], [ -123.747499797999964, 49.107525502000016 ], [ -123.746826698999953, 49.107457087000043 ], [ -123.746273808999916, 49.107100989000067 ], [ -123.74593910599998, 49.106662394000047 ], [ -123.745905899999954, 49.106267894000091 ], [ -123.745358892999917, 49.106370400000124 ], [ -123.744819974999984, 49.10612119700005 ], [ -123.743918998999945, 49.105362098000022 ], [ -123.74350511199998, 49.105149892000085 ], [ -123.742850802999968, 49.104443507000084 ], [ -123.741717785999981, 49.103811101000055 ], [ -123.741630381999983, 49.103497797000067 ], [ -123.741723306, 49.103343993000095 ], [ -123.741886701999988, 49.103269899000061 ], [ -123.742161700999986, 49.103349692000066 ], [ -123.742353909999935, 49.103321206000025 ], [ -123.742365523999979, 49.103168805000053 ], [ -123.742239996999942, 49.103043488000054 ], [ -123.735759411999979, 49.099324895000095 ], [ -123.734876184999976, 49.098926091000067 ], [ -123.7346146, 49.098729506 ], [ -123.733993790999975, 49.098525902000091 ], [ -123.7324051799999, 49.0975745000001 ], [ -123.731397611999981, 49.097157200000062 ], [ -123.72905170199999, 49.095912496000011 ], [ -123.728335288000011, 49.095639006000056 ], [ -123.727590110999941, 49.095238787000028 ], [ -123.727107704999938, 49.095133407000041 ], [ -123.727096393999943, 49.095196103000099 ], [ -123.727580199999935, 49.095535002000062 ], [ -123.727929687999975, 49.095946599000058 ], [ -123.727614091999953, 49.096047789000103 ], [ -123.727713379999926, 49.096281302000122 ], [ -123.728713386, 49.097103107000045 ], [ -123.729075979999905, 49.09754179300009 ], [ -123.728885203999951, 49.09764141300009 ], [ -123.728866352999944, 49.097712515000076 ], [ -123.726798221999971, 49.097668810000073 ], [ -123.726973858999912, 49.094069774000054 ], [ -123.730442764999964, 49.094143057000082 ], [ -123.730437211999913, 49.093764550000095 ], [ -123.730539184999927, 49.093763903000124 ], [ -123.730588133999944, 49.092759182000073 ], [ -123.730635387999911, 49.092718011000045 ], [ -123.730592352999949, 49.092672554000082 ], [ -123.730623922999897, 49.092024555000066 ], [ -123.730775914999953, 49.092061397000101 ], [ -123.731150493999948, 49.092462989000076 ], [ -123.731767611999913, 49.092406094000062 ], [ -123.732243221999923, 49.092240803000081 ], [ -123.732554302999986, 49.091923296000061 ], [ -123.733207599999929, 49.091577186000059 ], [ -123.733985112999932, 49.091474601000066 ], [ -123.733801190999898, 49.090989004000043 ], [ -123.734141202999979, 49.09085218600007 ], [ -123.734416087999961, 49.090904898000097 ], [ -123.735245221999932, 49.091403403000051 ], [ -123.736031204999946, 49.09175799700008 ], [ -123.736107819999958, 49.091803525000032 ], [ -123.736006755999952, 49.093883 ], [ -123.73331466399999, 49.093826275000033 ], [ -123.73331746099997, 49.094016155000126 ], [ -123.734139256999981, 49.094010931000106 ], [ -123.734143237999973, 49.094280773000094 ], [ -123.73496503799997, 49.09427554300008 ], [ -123.734969021999945, 49.09454538500006 ], [ -123.735379925999936, 49.094542768000089 ], [ -123.735383910999971, 49.094812610000126 ], [ -123.735794815999924, 49.094809992000066 ], [ -123.735798803999941, 49.095079834000067 ], [ -123.736209710999958, 49.095077213000138 ], [ -123.736213701999972, 49.095347054000037 ], [ -123.736624611999957, 49.095344434000069 ], [ -123.736636589999989, 49.096153959000048 ], [ -123.735541008999974, 49.096160945000086 ], [ -123.735539011999961, 49.096202022000107 ], [ -123.736968597, 49.096232122000053 ], [ -123.736944834999946, 49.096721218000035 ], [ -123.737523557999964, 49.096733397000023 ], [ -123.737670352999956, 49.093711037000098 ], [ -123.73865578799996, 49.09373176800009 ], [ -123.739159602999962, 49.094014003000055 ], [ -123.740032017999965, 49.094602206000026 ], [ -123.741378113999971, 49.09575290300009 ], [ -123.742998320999988, 49.096711267000103 ], [ -123.742963735, 49.097425019000042 ], [ -123.737942284999974, 49.097319492000054 ], [ -123.737910109999959, 49.097982024000018 ], [ -123.740293481999984, 49.098032140000036 ], [ -123.740270209999977, 49.098511838000114 ], [ -123.740793192999945, 49.098522828000085 ], [ -123.740712034999902, 49.100195974 ], [ -123.744339966, 49.100272140000094 ], [ -123.744312107999974, 49.100847355000091 ], [ -123.744911481999978, 49.100859926000069 ], [ -123.744814719, 49.102858252000075 ], [ -123.746734598, 49.102898498000108 ], [ -123.746847497999937, 49.100564882000157 ], [ -123.749559089999977, 49.10062166600008 ], [ -123.750366683999943, 49.10135439000004 ], [ -123.752292414999914, 49.102834092000094 ], [ -123.752626898999949, 49.103191597000027 ], [ -123.75311979699994, 49.104061812000054 ], [ -123.75390818699999, 49.104533193000051 ], [ -123.754576080999968, 49.105203999 ], [ -123.75683789499999, 49.107078301000051 ], [ -123.757295414999973, 49.107515496000119 ], [ -123.75766220699991, 49.108106505000066 ], [ -123.757746505999989, 49.108200867000036 ], [ -123.757738644999918, 49.108364123000108 ], [ -123.756136442999946, 49.10833070700005 ], [ -123.75614223099997, 49.108711583000066 ], [ -123.75655324899995, 49.108708890000081 ], [ -123.75656827899999, 49.109697379000067 ], [ -123.757941230999961, 49.109726008000067 ], [ -123.757930651, 49.109945738000057 ], [ -123.758648018999978, 49.109960691000019 ], [ -123.758601700000014, 49.110922946000038 ], [ -123.759063247999961, 49.110932564000102 ], [ -123.758916613999943, 49.11132809700004 ], [ -123.758741205999939, 49.111481898000093 ], [ -123.757869089999986, 49.111810889000083 ], [ -123.757279782999959, 49.111833705000073 ], [ -123.756803892999955, 49.111961937000103 ], [ -123.756597994999979, 49.112017408000064 ], [ -123.756014081000032, 49.112399099000093 ], [ -123.755754987999964, 49.112473209000079 ], [ -123.755370213999981, 49.112367791000047 ], [ -123.754401703999989, 49.111825189000122 ], [ -123.754589090999986, 49.112453210000048 ], [ -123.75441390499995, 49.112544402000012 ], [ -123.754317302999951, 49.112518692 ], [ -123.753997004999945, 49.112232511000052 ] ], [ [ -123.754495605999963, 49.108553864000072 ], [ -123.754494067999971, 49.108452500000034 ], [ -123.754083051999928, 49.108455186000128 ], [ -123.754080514999984, 49.108287793000088 ], [ -123.75366933199993, 49.108279205000017 ], [ -123.753673231, 49.108536691000062 ], [ -123.754495605999963, 49.108553864000072 ] ], [ [ -123.752391112999987, 49.10572276900006 ], [ -123.752429641, 49.104924463000103 ], [ -123.752034319999922, 49.104916200000041 ], [ -123.75199578599991, 49.105714506000076 ], [ -123.752391112999987, 49.10572276900006 ] ], [ [ -123.734574962999986, 49.095689445000048 ], [ -123.734574046999981, 49.095627368000116 ], [ -123.734163134999932, 49.095629982000077 ], [ -123.734159155999947, 49.095360140000061 ], [ -123.733748245999919, 49.095362753000096 ], [ -123.733744266999963, 49.095092911000059 ], [ -123.732922453999919, 49.095098132000025 ], [ -123.732918480999942, 49.094828290000088 ], [ -123.732410181999967, 49.094831517000109 ], [ -123.732370677999981, 49.095642978000107 ], [ -123.734574962999986, 49.095689445000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.798892988929889", "sL_AssetLoss": "5420", "sL_BldgLoss": "4330", "sL_StrLoss": "2200", "sL_NStrLoss": "2130", "sL_ContLoss": "1090", "geom_point": "0101000020E610000023CC61B581F55EC04F2687B2E4944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.835266786999981, 49.161802135000094 ], [ -123.835943556999908, 49.161815738 ], [ -123.836680104999971, 49.162700512000143 ], [ -123.83749336799994, 49.16401269500011 ], [ -123.835145149999946, 49.164415416000068 ], [ -123.835266786999981, 49.161802135000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.779624460796752", "sL_AssetLoss": "7882", "sL_BldgLoss": "6145", "sL_StrLoss": "2665", "sL_NStrLoss": "3480", "sL_ContLoss": "1737", "geom_point": "0101000020E61000000B9BE01F5FF05EC0AF98F0CFB5934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.75491014399995, 49.154370742 ], [ -123.754910228999918, 49.153606188000076 ], [ -123.754910465999927, 49.152188579000082 ], [ -123.756703453999961, 49.152225955000105 ], [ -123.75663429399998, 49.153660097000106 ], [ -123.756776337999952, 49.153663057000124 ], [ -123.756675168999962, 49.155760922000127 ], [ -123.754909892999976, 49.155744753000107 ], [ -123.75491014399995, 49.154370742 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109652206", "BldgCostT": "75647039", "sL_LossRatio": "0.851685848850629", "sL_AssetLoss": "320610", "sL_BldgLoss": "273059", "sL_StrLoss": "160259", "sL_NStrLoss": "112800", "sL_ContLoss": "47551", "geom_point": "0101000020E6100000B1EF2F274DF25EC09777172038934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.795151718999975, 49.157565076000068 ], [ -123.795151604999944, 49.157557896000107 ], [ -123.79000136399992, 49.157452308000067 ], [ -123.79000440899992, 49.157388247000029 ], [ -123.787861990999929, 49.157344252000073 ], [ -123.788033128999956, 49.153745448000087 ], [ -123.790154092999913, 49.15378900300005 ], [ -123.79014958, 49.153505208000112 ], [ -123.788994467999942, 49.153481492000047 ], [ -123.789080818999963, 49.15166463900006 ], [ -123.788903915999924, 49.151661006000054 ], [ -123.78889925699994, 49.151759031000019 ], [ -123.785683816999935, 49.15169294400004 ], [ -123.785630086999987, 49.152821709000065 ], [ -123.780155281999896, 49.152708962000119 ], [ -123.780177760999948, 49.152237916000026 ], [ -123.780303006999958, 49.149613045000066 ], [ -123.779391054999948, 49.149594238000148 ], [ -123.779395010999977, 49.149846427000071 ], [ -123.778983654999948, 49.14984920200007 ], [ -123.778992116999959, 49.15038887500009 ], [ -123.777346675999979, 49.150399965000119 ], [ -123.777314237999946, 49.148326544000021 ], [ -123.774268830999972, 49.148263620000101 ], [ -123.774440988999928, 49.144664788000014 ], [ -123.776160389, 49.144700325000017 ], [ -123.776223190999985, 49.143386328000098 ], [ -123.781696888999974, 49.143499277000068 ], [ -123.781671591999924, 49.144029870000068 ], [ -123.782607487999954, 49.144049154000072 ], [ -123.782595255999965, 49.144305822000092 ], [ -123.78251183499999, 49.146056195000021 ], [ -123.783602010999942, 49.146078648000064 ], [ -123.783606548999941, 49.145983417000146 ], [ -123.789080569999911, 49.14609599000007 ], [ -123.789014879999968, 49.147478328000027 ], [ -123.79063309699994, 49.147511553000136 ], [ -123.790605456999913, 49.14809359200008 ], [ -123.792511964999974, 49.148132705000137 ], [ -123.792467642999966, 49.149066802000043 ], [ -123.794826436999955, 49.149115147000082 ], [ -123.794813346999945, 49.14939131600002 ], [ -123.794655839999933, 49.152713988000123 ], [ -123.794511235999934, 49.152711026000048 ], [ -123.7944693849999, 49.15359378900007 ], [ -123.791384269999938, 49.153530544000049 ], [ -123.791388791999921, 49.15381433900005 ], [ -123.793508072999927, 49.153857794000039 ], [ -123.793505034999924, 49.153921855000114 ], [ -123.795093923999985, 49.153954407000064 ], [ -123.795082611999945, 49.153247714000024 ], [ -123.795747998999971, 49.153243130000085 ], [ -123.796316757999989, 49.15323920900007 ], [ -123.796325410999927, 49.153778879000065 ], [ -123.796736795999948, 49.153776041000071 ], [ -123.79674545099999, 49.154315712000013 ], [ -123.797156842999968, 49.154312872000112 ], [ -123.797169831999909, 49.155122378000044 ], [ -123.795935640999943, 49.155130892000045 ], [ -123.795939962999952, 49.155400726000067 ], [ -123.795579181999969, 49.155403213000042 ], [ -123.795540801999948, 49.156213072000085 ], [ -123.796364341999919, 49.156207395000095 ], [ -123.796385972999985, 49.15755657000004 ], [ -123.795476831999935, 49.157562837000064 ], [ -123.795476750999939, 49.157564554000047 ], [ -123.795414043000022, 49.157563270000097 ], [ -123.795151718999975, 49.157565076000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131725916", "BldgCostT": "84011666", "sL_LossRatio": "0.751475774578333", "sL_AssetLoss": "750046.8", "sL_BldgLoss": "563642", "sL_StrLoss": "301746", "sL_NStrLoss": "261896", "sL_ContLoss": "186404.8", "geom_point": "0101000020E6100000BCC93D97C8F05EC04CC0B7026D914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.793623409999938, 49.147402730000053 ], [ -123.793701529999964, 49.145755373000036 ], [ -123.789794141999948, 49.145675214000072 ], [ -123.789782759000019, 49.145914826000102 ], [ -123.784308757999938, 49.145802290000084 ], [ -123.784404267999889, 49.143796612000074 ], [ -123.784451279999956, 49.142809316000061 ], [ -123.784480128999959, 49.142203428000059 ], [ -123.786790184999973, 49.142250953000023 ], [ -123.78679692899999, 49.142109143000148 ], [ -123.782667725999943, 49.14202415700008 ], [ -123.782702561999898, 49.141293100000098 ], [ -123.779902868999926, 49.141235387000016 ], [ -123.780008397999921, 49.139023481000081 ], [ -123.780027935999911, 49.138613941000038 ], [ -123.779647218999983, 49.138606087000014 ], [ -123.779661795, 49.138300588000028 ], [ -123.77904551499995, 49.138287872000042 ], [ -123.77904563499996, 49.138285378 ], [ -123.778021779999989, 49.138264245000101 ], [ -123.778027628999922, 49.13814173100004 ], [ -123.777557970000018, 49.138132033000048 ], [ -123.777575775999964, 49.137759210000077 ], [ -123.777184278999982, 49.137751124000047 ], [ -123.777186069999942, 49.137713644 ], [ -123.776676161999944, 49.137703111000043 ], [ -123.776684936, 49.137519478000037 ], [ -123.776274658999967, 49.137511001000057 ], [ -123.776282841999929, 49.137339768000075 ], [ -123.775247733999961, 49.137318375000049 ], [ -123.775254789999963, 49.137170757000078 ], [ -123.77353816099999, 49.137135257000061 ], [ -123.773424141999925, 49.13951824800008 ], [ -123.7732349569999, 49.139514334000097 ], [ -123.773195380999937, 49.140341351000139 ], [ -123.77276987, 49.140332546000089 ], [ -123.77275458099993, 49.140651961000067 ], [ -123.767281238999928, 49.140538558000053 ], [ -123.767296838999982, 49.140213454000055 ], [ -123.76482237, 49.140162093000114 ], [ -123.764832308999985, 49.139955184000037 ], [ -123.763753143999963, 49.139932766000165 ], [ -123.76378704699999, 49.139227287000082 ], [ -123.763299570999948, 49.139217156000043 ], [ -123.76333065599998, 49.138570398000063 ], [ -123.76296749699992, 49.138562850000028 ], [ -123.76301042199999, 49.137669910000085 ], [ -123.76300765299996, 49.137669853000062 ], [ -123.763113825999952, 49.135461083000045 ], [ -123.762862282999933, 49.135455855000011 ], [ -123.763000805999951, 49.132574066000068 ], [ -123.761931822999941, 49.132551838000076 ], [ -123.76194409599999, 49.132296651000026 ], [ -123.76182042799995, 49.132294079000062 ], [ -123.76179839400001, 49.132752254000074 ], [ -123.75910726799999, 49.132696246000108 ], [ -123.759098044999973, 49.132887814000064 ], [ -123.759545375999949, 49.132897128000053 ], [ -123.759372109999987, 49.136496002000079 ], [ -123.759159693999948, 49.136491579000122 ], [ -123.759030948999936, 49.139165103000032 ], [ -123.758092171999948, 49.139145551000098 ], [ -123.7580741299999, 49.139520025000103 ], [ -123.757753718999936, 49.139513351000105 ], [ -123.757727346999943, 49.140060633000104 ], [ -123.752254111999918, 49.139946465000065 ], [ -123.752377277999969, 49.137396558000056 ], [ -123.751759748999987, 49.137383659000108 ], [ -123.751815511999936, 49.136229439000076 ], [ -123.751030691999944, 49.136213040000044 ], [ -123.751030011999916, 49.136098097000065 ], [ -123.750408700999955, 49.134642301000078 ], [ -123.749273782999978, 49.135257102000025 ], [ -123.748666194999885, 49.135417307000083 ], [ -123.748182504999974, 49.13545039600011 ], [ -123.74792629599996, 49.135424302000025 ], [ -123.747825533999929, 49.135396016000087 ], [ -123.747244547999927, 49.135232976000097 ], [ -123.746854803999938, 49.135123608000129 ], [ -123.746316596999989, 49.134948878000053 ], [ -123.745395895999962, 49.134650007000069 ], [ -123.744970011999925, 49.134534782000088 ], [ -123.744607592999898, 49.134468607000059 ], [ -123.7439346, 49.134423010000027 ], [ -123.743910891999974, 49.134424467000045 ], [ -123.742939517999943, 49.134484244000078 ], [ -123.741423580999978, 49.134577496000112 ], [ -123.741300555999956, 49.134593901000052 ], [ -123.739281500999979, 49.134862994000081 ], [ -123.737904506999953, 49.134988100000058 ], [ -123.737655014999959, 49.134989714000078 ], [ -123.737695375, 49.134159451000137 ], [ -123.736531059999905, 49.134134967000122 ], [ -123.736528267999972, 49.134192372000015 ], [ -123.735681288999942, 49.134174553000086 ], [ -123.735650214999936, 49.134813221000051 ], [ -123.734136680999939, 49.134765599000104 ], [ -123.733103688999961, 49.13482510800003 ], [ -123.732933616999958, 49.134834903000097 ], [ -123.733014304999955, 49.131998696000039 ], [ -123.733199710999941, 49.132001351000042 ], [ -123.735536483999965, 49.132034704000084 ], [ -123.736268119999977, 49.132027498000099 ], [ -123.737105701999937, 49.131982095000083 ], [ -123.737958598999953, 49.13184689100008 ], [ -123.738482135999945, 49.131726956000122 ], [ -123.73877569099993, 49.13165969300006 ], [ -123.739266624999971, 49.131476297000113 ], [ -123.739547507999958, 49.131331791000072 ], [ -123.739083387999983, 49.131103198000112 ], [ -123.737789596999988, 49.130590593000079 ], [ -123.737201409999926, 49.130294493000036 ], [ -123.736945624999976, 49.130064903000054 ], [ -123.736497913999969, 49.129583507000063 ], [ -123.736360513999898, 49.129507693000079 ], [ -123.73604751, 49.129410999000122 ], [ -123.736159500999918, 49.129192716000077 ], [ -123.733403117999941, 49.128289001000049 ], [ -123.733077302999988, 49.128229905000062 ], [ -123.732304194999969, 49.128218987000054 ], [ -123.731664793999983, 49.12827400900003 ], [ -123.73125487599998, 49.128395990000072 ], [ -123.730776808999934, 49.128679486000053 ], [ -123.730360509999969, 49.129915392000107 ], [ -123.730185370999962, 49.130898193000085 ], [ -123.73012289899998, 49.131248706000044 ], [ -123.730130620999958, 49.131792902000022 ], [ -123.730192688999978, 49.132104763000086 ], [ -123.730241712999927, 49.132350892000026 ], [ -123.730436300999941, 49.132967415000039 ], [ -123.730696990999917, 49.133602508000045 ], [ -123.731035993999967, 49.134232911000034 ], [ -123.731108091999957, 49.13449560500009 ], [ -123.731113902999965, 49.134938811000097 ], [ -123.730392409999922, 49.134983780000084 ], [ -123.729366759999948, 49.135047670000162 ], [ -123.72856570899998, 49.135097588000107 ], [ -123.726662801999936, 49.135248287000103 ], [ -123.726651808000028, 49.13477349300004 ], [ -123.726547903999972, 49.130031208000041 ], [ -123.726874962999915, 49.128354637000015 ], [ -123.727537398999971, 49.128224911000039 ], [ -123.730790214999956, 49.127434804000117 ], [ -123.731717711999949, 49.127209491000052 ], [ -123.732429996999926, 49.127169589000054 ], [ -123.734367386, 49.127471501000109 ], [ -123.736395807999926, 49.128375900000023 ], [ -123.73768190599999, 49.128224886000076 ], [ -123.739219494999929, 49.128502592000139 ], [ -123.740482803999981, 49.128539704000033 ], [ -123.741167891999964, 49.128633694000058 ], [ -123.742701923999974, 49.128444303000023 ], [ -123.743073786999958, 49.128576705000064 ], [ -123.743683091999984, 49.128976904000098 ], [ -123.743943004999934, 49.129029593000041 ], [ -123.744490288999913, 49.128981199000108 ], [ -123.745200104000034, 49.128778908000129 ], [ -123.745714646999943, 49.128537558000062 ], [ -123.745714723999953, 49.128537530000067 ], [ -123.74582171099992, 49.128499739000048 ], [ -123.74651361199993, 49.12819912700008 ], [ -123.746689787999983, 49.128110637000063 ], [ -123.747329751999956, 49.127867876000046 ], [ -123.747578612999988, 49.128004862000083 ], [ -123.747578694999902, 49.128004922000045 ], [ -123.74762891799999, 49.12804228900012 ], [ -123.747868282999931, 49.128355904000031 ], [ -123.748074295, 49.128427201000079 ], [ -123.748458686999953, 49.128486999000067 ], [ -123.749148148999936, 49.128427758000029 ], [ -123.749148193999972, 49.128427762000058 ], [ -123.74920766599999, 49.128433840000085 ], [ -123.74930210899997, 49.12846301200009 ], [ -123.749778420000013, 49.128784605000092 ], [ -123.750137272999922, 49.128917094000087 ], [ -123.750578764999943, 49.129014597000051 ], [ -123.750578931999925, 49.129014649000077 ], [ -123.750980057999982, 49.129138970000071 ], [ -123.751720182999918, 49.129296082000046 ], [ -123.751879694999943, 49.129351454000044 ], [ -123.752315516999886, 49.129721804000049 ], [ -123.752661389999972, 49.129881292000071 ], [ -123.752746401999957, 49.129883497000023 ], [ -123.752794135999949, 49.129908413000038 ], [ -123.75367060799999, 49.13003899600006 ], [ -123.754194232999936, 49.130254869000055 ], [ -123.754201990999931, 49.130258712000064 ], [ -123.754205436999897, 49.130259495000068 ], [ -123.75453639399997, 49.130395944000014 ], [ -123.754837469999956, 49.130424488000095 ], [ -123.754918714999931, 49.130421326000032 ], [ -123.754930008999935, 49.130423888000024 ], [ -123.755042475, 49.130415540000101 ], [ -123.755042558999946, 49.130415536000015 ], [ -123.755084304999968, 49.131690380000038 ], [ -123.755510979999926, 49.13107610300009 ], [ -123.755920092999958, 49.130686505000028 ], [ -123.756203205999981, 49.130479396000062 ], [ -123.756270710999971, 49.130429998000054 ], [ -123.756646408, 49.130248709000057 ], [ -123.756934103999967, 49.130161912000084 ], [ -123.75746668499994, 49.130135204000076 ], [ -123.757738614999965, 49.130176010000042 ], [ -123.75874029199997, 49.130418398000131 ], [ -123.758913415999928, 49.130435503000058 ], [ -123.759151011, 49.13042150400004 ], [ -123.760292393999961, 49.13017781500006 ], [ -123.760762795999966, 49.130165099000052 ], [ -123.761114558999907, 49.130182750000095 ], [ -123.761253195999984, 49.130189686000058 ], [ -123.76184541, 49.130261508000054 ], [ -123.762297217999958, 49.130350096000029 ], [ -123.762850182999969, 49.130526404000065 ], [ -123.76307192900002, 49.130624267000123 ], [ -123.764736914999972, 49.131359320000065 ], [ -123.765395508, 49.131646562000078 ], [ -123.765730902999977, 49.13178189200007 ], [ -123.770245199999977, 49.133579899000082 ], [ -123.770375406999904, 49.133623337000124 ], [ -123.772475994999965, 49.134324093000046 ], [ -123.773173196999963, 49.134537565000116 ], [ -123.774272930999985, 49.134874275000058 ], [ -123.775469777999945, 49.135240701000043 ], [ -123.775632867999946, 49.135286258000079 ], [ -123.775811391, 49.135336110000026 ], [ -123.776108133999941, 49.135418995000052 ], [ -123.776616583999953, 49.135561015000071 ], [ -123.777384880999961, 49.135775594000066 ], [ -123.778467824999908, 49.136123895000054 ], [ -123.779931488999964, 49.136594590000122 ], [ -123.781006290999983, 49.136912123000059 ], [ -123.78127527699999, 49.136991592000093 ], [ -123.784357896999893, 49.137775592000054 ], [ -123.784774787999964, 49.137907510000069 ], [ -123.785258307999968, 49.138107502000089 ], [ -123.785463992999965, 49.138245904000044 ], [ -123.785612798999921, 49.138429998000113 ], [ -123.785629005999979, 49.138534025000098 ], [ -123.785707229999957, 49.139036254000089 ], [ -123.785888098, 49.139293042000112 ], [ -123.78608503299999, 49.139442983000045 ], [ -123.786343748999968, 49.13956179900007 ], [ -123.787276289999923, 49.139882352000058 ], [ -123.787617274999974, 49.139999550000049 ], [ -123.788234925999944, 49.140166674000078 ], [ -123.788155499999959, 49.141837618000075 ], [ -123.792284696999971, 49.141922394000083 ], [ -123.792275143999944, 49.142123750000046 ], [ -123.794011091999948, 49.142159343000102 ], [ -123.794032858999955, 49.141700218000089 ], [ -123.794381463999983, 49.141831506000074 ], [ -123.796397206, 49.142536483000093 ], [ -123.797034015999955, 49.14279989900006 ], [ -123.798256555999927, 49.143488133000041 ], [ -123.798279093999923, 49.143500806000084 ], [ -123.798345513999934, 49.143538201000027 ], [ -123.798637067999948, 49.143670517000039 ], [ -123.798821511999947, 49.143754199000057 ], [ -123.799457806999953, 49.143970792000054 ], [ -123.799996296999907, 49.144053880000094 ], [ -123.800359409999913, 49.144109898000067 ], [ -123.801991013999952, 49.144307995000091 ], [ -123.802505692999958, 49.144404105000099 ], [ -123.80295819199999, 49.14453759500001 ], [ -123.803480511999965, 49.144646402000063 ], [ -123.804208897999956, 49.144740514000063 ], [ -123.804234505999901, 49.144741861000121 ], [ -123.804224778999966, 49.144947974000146 ], [ -123.803957639999979, 49.144942524000015 ], [ -123.80394418499999, 49.145227580000039 ], [ -123.80333768, 49.145215205000113 ], [ -123.803280326, 49.146429993000048 ], [ -123.799152926000019, 49.146345685000064 ], [ -123.799097621999962, 49.147514793 ], [ -123.793623409999938, 49.147402730000053 ] ], [ [ -123.750315839000038, 49.132115644000102 ], [ -123.75032029799999, 49.132023410000116 ], [ -123.749747360999962, 49.13201143000007 ], [ -123.749742901999952, 49.132103664000091 ], [ -123.750315839000038, 49.132115644000102 ] ], [ [ -123.746348349999892, 49.132235817000044 ], [ -123.746328287, 49.132650133000055 ], [ -123.748089586999981, 49.132687007000143 ], [ -123.74810963500002, 49.132272690000072 ], [ -123.746348349999892, 49.132235817000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794166", "BldgCostT": "2616666", "sL_LossRatio": "0.875517279946315", "sL_AssetLoss": "17882", "sL_BldgLoss": "15656", "sL_StrLoss": "10620", "sL_NStrLoss": "5036", "sL_ContLoss": "2226", "geom_point": "0101000020E6100000317BD976DAF05EC00CE15EBAC5934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.764118745999923, 49.155913878000099 ], [ -123.762846401, 49.155817221000099 ], [ -123.760488493999944, 49.155795752000131 ], [ -123.760624065999977, 49.152979671000111 ], [ -123.765545702999987, 49.153081932000063 ], [ -123.76609885499991, 49.153093411000079 ], [ -123.766078079, 49.153526023000083 ], [ -123.765950302999926, 49.156186609000066 ], [ -123.765266943999947, 49.156084862000107 ], [ -123.764647427999961, 49.155992602000047 ], [ -123.764118745999923, 49.155913878000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37547333", "BldgCostT": "24428333", "sL_LossRatio": "0.726629300675001", "sL_AssetLoss": "222162.8", "sL_BldgLoss": "161430", "sL_StrLoss": "86734", "sL_NStrLoss": "74696", "sL_ContLoss": "60732.8", "geom_point": "0101000020E610000065FA04D444F45EC050336ADF58934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.82507389899996, 49.158765623000058 ], [ -123.825164573999942, 49.156826341000063 ], [ -123.824896409999909, 49.156820924000058 ], [ -123.824940810999948, 49.15587137700004 ], [ -123.822243670999967, 49.155816858000051 ], [ -123.82227277199992, 49.155195262000106 ], [ -123.817298229999921, 49.155094530000056 ], [ -123.817299315999932, 49.155071376000066 ], [ -123.814508229999944, 49.155014757000103 ], [ -123.814559327999945, 49.153927159000048 ], [ -123.813765369999885, 49.153911040000018 ], [ -123.813840646999964, 49.152309231000046 ], [ -123.808468373999929, 49.15220000500009 ], [ -123.808629710999952, 49.148775010000072 ], [ -123.808633471999912, 49.148695161000077 ], [ -123.807994756999975, 49.148682157000067 ], [ -123.806925330999988, 49.148660375000112 ], [ -123.806931632999934, 49.148526682000103 ], [ -123.806987049999975, 49.147351031000042 ], [ -123.805628465, 49.147323344000021 ], [ -123.805746465999974, 49.144821339000046 ], [ -123.80793230099998, 49.144936204000118 ], [ -123.808410816999981, 49.145043206000061 ], [ -123.814458395999978, 49.145832603000088 ], [ -123.815342094999949, 49.145975708000037 ], [ -123.815647881999894, 49.146055799000067 ], [ -123.818652621999931, 49.147414400000073 ], [ -123.818706875999951, 49.147449986000019 ], [ -123.819056599999954, 49.147679302000036 ], [ -123.819509496999942, 49.148481014000033 ], [ -123.819698618999894, 49.14888910500008 ], [ -123.819979304999933, 49.149183899000072 ], [ -123.820163596999976, 49.149285806000108 ], [ -123.820517071000026, 49.14940998000003 ], [ -123.82048891699999, 49.150010959000092 ], [ -123.819376656, 49.149988435000061 ], [ -123.819356327999955, 49.150422137000113 ], [ -123.819409095999944, 49.150423206000035 ], [ -123.819384168999989, 49.150955033000116 ], [ -123.820980210999949, 49.150987350000065 ], [ -123.820995591999917, 49.150658951000018 ], [ -123.82297421199999, 49.150698981000126 ], [ -123.823318786999963, 49.151151694000177 ], [ -123.823579890999937, 49.151808098000025 ], [ -123.823750000999937, 49.152038511000065 ], [ -123.824149303999931, 49.152582403000075 ], [ -123.825069316999986, 49.153642338000097 ], [ -123.826086206999946, 49.15481379100008 ], [ -123.826233185999982, 49.154983091000076 ], [ -123.826996298, 49.155659509000017 ], [ -123.828418994999979, 49.156644597000081 ], [ -123.829247609999939, 49.157093584000073 ], [ -123.830279203999979, 49.157594394000093 ], [ -123.830290838999986, 49.157599204000057 ], [ -123.832194249999972, 49.158383507000103 ], [ -123.831374306999976, 49.158389414000048 ], [ -123.8313697899999, 49.158119581000101 ], [ -123.830584542999972, 49.158125232000103 ], [ -123.83054952399999, 49.15887608600012 ], [ -123.82507389899996, 49.158765623000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7298417", "BldgCostT": "4561667", "sL_LossRatio": "0.702783482097473", "sL_AssetLoss": "49183", "sL_BldgLoss": "34565", "sL_StrLoss": "17050", "sL_NStrLoss": "17515", "sL_ContLoss": "14618", "geom_point": "0101000020E6100000C32B289002F25EC049B54FC7E3934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.778754811999974, 49.153532919000099 ], [ -123.784229708999945, 49.153645737000076 ], [ -123.784058276999957, 49.157244535000096 ], [ -123.77858295499999, 49.157131709000105 ], [ -123.778754811999974, 49.153532919000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9342083", "BldgCostT": "6233333", "sL_LossRatio": "0.718404893651794", "sL_AssetLoss": "85662", "sL_BldgLoss": "61540", "sL_StrLoss": "28560", "sL_NStrLoss": "32980", "sL_ContLoss": "24122", "geom_point": "0101000020E6100000E89D4CD439F35EC07CACE8286A954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.796279133999946, 49.168216104000081 ], [ -123.796155621999958, 49.16813170299999 ], [ -123.795524861999979, 49.167700695000086 ], [ -123.794341415999938, 49.166891990000131 ], [ -123.794126450999897, 49.166697193000076 ], [ -123.792972591999927, 49.165651319000155 ], [ -123.794341441999904, 49.165679364000098 ], [ -123.7943438, 49.165629637000066 ], [ -123.799560434999989, 49.165736354000053 ], [ -123.799566192999947, 49.165614666000081 ], [ -123.805042562999986, 49.16572642400012 ], [ -123.805018606999965, 49.166233959000095 ], [ -123.80587466299994, 49.166251404000043 ], [ -123.805785222999972, 49.168147033000089 ], [ -123.806622551999936, 49.168164089000072 ], [ -123.806619183999928, 49.168235485000068 ], [ -123.807296231999942, 49.168249272000054 ], [ -123.807287817999935, 49.16842767900004 ], [ -123.80782338799996, 49.168438582000135 ], [ -123.801092302999947, 49.1694119960001 ], [ -123.800984234999973, 49.169396702 ], [ -123.799989321999988, 49.169255877000118 ], [ -123.798022286999952, 49.168977408000089 ], [ -123.797459110999966, 49.168861402000061 ], [ -123.796905312999954, 49.168603309000062 ], [ -123.796368394999959, 49.168277114000034 ], [ -123.796279133999946, 49.168216104000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.796152652807943", "sL_AssetLoss": "32230", "sL_BldgLoss": "25660", "sL_StrLoss": "13790", "sL_NStrLoss": "11870", "sL_ContLoss": "6570", "geom_point": "0101000020E61000002E296F2E5BF05EC0312C985B4E924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.752664947999989, 49.141322742000092 ], [ -123.758138345999896, 49.141436889000047 ], [ -123.757964938999976, 49.145035712000094 ], [ -123.755565590999964, 49.144985710000086 ], [ -123.754997339999946, 49.144973859000089 ], [ -123.755004134999922, 49.144719827000074 ], [ -123.752886052999955, 49.143500663000069 ], [ -123.752574198, 49.143201601000101 ], [ -123.752664947999989, 49.141322742000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.844179211899478", "sL_AssetLoss": "10003.8", "sL_BldgLoss": "8445", "sL_StrLoss": "5320", "sL_NStrLoss": "3125", "sL_ContLoss": "1558.8", "geom_point": "0101000020E61000008490A0B6D5F05EC0ED354E5400944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.760488493999944, 49.155795752000131 ], [ -123.762846401, 49.155817221000099 ], [ -123.764118745999923, 49.155913878000099 ], [ -123.764647427999961, 49.155992602000047 ], [ -123.765266943999947, 49.156084862000107 ], [ -123.765950302999926, 49.156186609000066 ], [ -123.765926021000013, 49.156692184000065 ], [ -123.760450809999966, 49.156578436000054 ], [ -123.760488493999944, 49.155795752000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "0.84053800248402", "sL_AssetLoss": "33011", "sL_BldgLoss": "27747", "sL_StrLoss": "17320", "sL_NStrLoss": "10427", "sL_ContLoss": "5264", "geom_point": "0101000020E61000002EE1D05B3CF05EC06CE77FE215944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.754909892999976, 49.155744753000107 ], [ -123.756675168999962, 49.155760922000127 ], [ -123.756602781999959, 49.157261812000066 ], [ -123.755219027999914, 49.157232971000127 ], [ -123.755167084999925, 49.158309244000122 ], [ -123.751647709999943, 49.158235812000051 ], [ -123.751646041999919, 49.158270331000047 ], [ -123.75124923599995, 49.15826204400004 ], [ -123.751217814999933, 49.158001996000117 ], [ -123.751215440999971, 49.157948122000036 ], [ -123.751188384, 49.157335008000089 ], [ -123.751188645999889, 49.157228655000019 ], [ -123.751189616999952, 49.156832789000092 ], [ -123.751190292999979, 49.156535959000045 ], [ -123.751192178999986, 49.155755390000124 ], [ -123.752298579999916, 49.155752255000095 ], [ -123.753807107999961, 49.155747967000096 ], [ -123.754909892999976, 49.155744753000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137311667", "BldgCostT": "93541667", "sL_LossRatio": "0.812611247768353", "sL_AssetLoss": "747206", "sL_BldgLoss": "607188", "sL_StrLoss": "376739", "sL_NStrLoss": "230449", "sL_ContLoss": "140018", "geom_point": "0101000020E610000015A08E43D4F25EC08F8CA3AC3E964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.803802912999927, 49.182304997000081 ], [ -123.803443616999957, 49.182226696000036 ], [ -123.802607193999961, 49.18224949100005 ], [ -123.80205541699992, 49.182020203000015 ], [ -123.800872118999948, 49.181028899000104 ], [ -123.800251716999938, 49.180836596000063 ], [ -123.798839265999945, 49.180697082000037 ], [ -123.798795910999971, 49.180692800000045 ], [ -123.79820750599994, 49.180786792000141 ], [ -123.797897286999941, 49.181104391000083 ], [ -123.797698797999885, 49.180808201000062 ], [ -123.796882197999935, 49.180256993000079 ], [ -123.795861002999956, 49.179912285000107 ], [ -123.795135194999943, 49.18005329699999 ], [ -123.794458807999916, 49.179742904000079 ], [ -123.794371822999963, 49.179665079000124 ], [ -123.793980942999951, 49.179315419000048 ], [ -123.793261495999943, 49.178671806000096 ], [ -123.792804105999949, 49.178414087000078 ], [ -123.792390192999974, 49.178308700000066 ], [ -123.791952708999986, 49.178374197000089 ], [ -123.791084215999931, 49.178081158000133 ], [ -123.790870012999932, 49.178008872000142 ], [ -123.790779392000019, 49.177978308000029 ], [ -123.790281014999948, 49.177684892000116 ], [ -123.78997220399999, 49.177281812000054 ], [ -123.789487676999954, 49.176920221000074 ], [ -123.788682, 49.176318990000041 ], [ -123.78794999199998, 49.175991510000102 ], [ -123.787492417999943, 49.175679607000092 ], [ -123.785647999, 49.175377599000058 ], [ -123.784773203999947, 49.174716783000093 ], [ -123.783587110999932, 49.17432089600014 ], [ -123.782754395999987, 49.17370558600004 ], [ -123.78120520399996, 49.172969292000097 ], [ -123.7793349, 49.172577606000075 ], [ -123.778621985999962, 49.172617500000143 ], [ -123.777545891, 49.17224720400003 ], [ -123.776893822999966, 49.171847 ], [ -123.775788698999961, 49.171341386000066 ], [ -123.775545797999953, 49.170786004000036 ], [ -123.775076924999965, 49.170296557000043 ], [ -123.774877211999978, 49.17008810600008 ], [ -123.774287574999931, 49.169229295000044 ], [ -123.774239226999953, 49.169192367000036 ], [ -123.77425111299999, 49.168944052000043 ], [ -123.77490096699999, 49.16895748000006 ], [ -123.774911196999938, 49.168743668000062 ], [ -123.775633779999936, 49.168758594000053 ], [ -123.775635970999957, 49.1687127860001 ], [ -123.776156557999954, 49.168723537000112 ], [ -123.776157850999979, 49.168696499000056 ], [ -123.776640162, 49.16870645700002 ], [ -123.776643734999951, 49.168631710000078 ], [ -123.781421188999943, 49.168730232000065 ], [ -123.78142364199999, 49.168678828000054 ], [ -123.785555796000011, 49.168763870000134 ], [ -123.785579098999918, 49.168274529000044 ], [ -123.787842266999931, 49.168321039000048 ], [ -123.787871640000034, 49.167703584000023 ], [ -123.791707079999952, 49.167782297000031 ], [ -123.791809400999938, 49.165627474000097 ], [ -123.792972591999927, 49.165651319000155 ], [ -123.794126450999897, 49.166697193000076 ], [ -123.794341415999938, 49.166891990000131 ], [ -123.795524861999979, 49.167700695000086 ], [ -123.796155621999958, 49.16813170299999 ], [ -123.796279133999946, 49.168216104000081 ], [ -123.796368394999959, 49.168277114000034 ], [ -123.796905312999954, 49.168603309000062 ], [ -123.797459110999966, 49.168861402000061 ], [ -123.798022286999952, 49.168977408000089 ], [ -123.799989321999988, 49.169255877000118 ], [ -123.800984234999973, 49.169396702 ], [ -123.801092302999947, 49.1694119960001 ], [ -123.802059191999916, 49.169600204000034 ], [ -123.803781983999954, 49.17022632500003 ], [ -123.80465030799995, 49.170541887000127 ], [ -123.804697514999972, 49.171970959000063 ], [ -123.804727602999989, 49.172881288000063 ], [ -123.804956139999888, 49.173663888000142 ], [ -123.804306116999925, 49.173650640000091 ], [ -123.804308554, 49.173599038000077 ], [ -123.802746108999955, 49.173567177000109 ], [ -123.802743245999935, 49.17362775600003 ], [ -123.804958780999982, 49.173672929000183 ], [ -123.805738796999961, 49.176343788000061 ], [ -123.808834691999948, 49.176386096000037 ], [ -123.808998417999987, 49.176438750000059 ], [ -123.8099797039999, 49.176754283000029 ], [ -123.809506607999964, 49.177194888000081 ], [ -123.809288306999974, 49.177522785000079 ], [ -123.809174000999988, 49.17785268800008 ], [ -123.809142556999959, 49.178003735000075 ], [ -123.809094301999963, 49.178235713000028 ], [ -123.809070686999959, 49.178590891000034 ], [ -123.809142189999974, 49.178906607000087 ], [ -123.809500720999964, 49.179792813000091 ], [ -123.809466683999943, 49.179933502000011 ], [ -123.809210299999961, 49.180138194000058 ], [ -123.808966778999917, 49.180214189000054 ], [ -123.80860301499996, 49.180224893000101 ], [ -123.805956089999981, 49.179669413000042 ], [ -123.805497291, 49.179659998000055 ], [ -123.805142089999933, 49.179693298000103 ], [ -123.805247698999963, 49.180243885000031 ], [ -123.805206605, 49.1805339000001 ], [ -123.80512571099996, 49.180765504000107 ], [ -123.804890113999988, 49.181108166000065 ], [ -123.804728598999972, 49.181342977000135 ], [ -123.804394079999909, 49.181829496000034 ], [ -123.806609126999916, 49.182944564000088 ], [ -123.80712579599998, 49.184089513000082 ], [ -123.805828466999984, 49.183486238000043 ], [ -123.805658681999915, 49.183407302000084 ], [ -123.804632885999951, 49.182793489000062 ], [ -123.804136186999955, 49.182625506000072 ], [ -123.803802912999927, 49.182304997000081 ] ], [ [ -123.801807803999949, 49.176491079000108 ], [ -123.801815754999922, 49.176322915000043 ], [ -123.801318932999919, 49.176312775000063 ], [ -123.8013109799999, 49.176480939000058 ], [ -123.801807803999949, 49.176491079000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.851602404737151", "sL_AssetLoss": "22123", "sL_BldgLoss": "18840", "sL_StrLoss": "12280", "sL_NStrLoss": "6560", "sL_ContLoss": "3283", "geom_point": "0101000020E6100000C6971E8720EF5EC02C4E10D058924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.73371119499997, 49.141478376000094 ], [ -123.739184562999952, 49.141593485000072 ], [ -123.739009691999968, 49.145192278000138 ], [ -123.7335359, 49.145077160000099 ], [ -123.73371119499997, 49.141478376000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "390499630", "BldgCostT": "266729573", "sL_LossRatio": "0.824049713235213", "sL_AssetLoss": "2398202.4", "sL_BldgLoss": "1976238", "sL_StrLoss": "970262", "sL_NStrLoss": "1005976", "sL_ContLoss": "421964.4", "geom_point": "0101000020E6100000C1B2E3D0ACED5EC08379E27B77924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.72331038699997, 49.160177387000012 ], [ -123.723367062999969, 49.15901951700004 ], [ -123.722521442999906, 49.159001635000031 ], [ -123.722550070999944, 49.158416972000097 ], [ -123.718007105999945, 49.158320784000075 ], [ -123.718002907, 49.158406358000022 ], [ -123.717264251999936, 49.158390700000062 ], [ -123.717187955, 49.159945250000057 ], [ -123.716825299999925, 49.160010388000082 ], [ -123.716329702999957, 49.159950602000073 ], [ -123.715933603999972, 49.16001610600005 ], [ -123.714337229999941, 49.159858162000027 ], [ -123.714134300999902, 49.159838096000044 ], [ -123.713569388999986, 49.159652907000101 ], [ -123.713539306999948, 49.159473494000046 ], [ -123.712857705999951, 49.158785609000098 ], [ -123.712601919999912, 49.158247297000038 ], [ -123.712439191999977, 49.158319905999988 ], [ -123.71200400099994, 49.159644394000111 ], [ -123.71185541199999, 49.159754094000071 ], [ -123.711639771999941, 49.15977735000007 ], [ -123.711716547999984, 49.158216860000074 ], [ -123.710767630999925, 49.158196689000135 ], [ -123.710692809999898, 49.159716843000041 ], [ -123.710309277999954, 49.159682090000025 ], [ -123.710223201999966, 49.159674298000056 ], [ -123.709396101999971, 49.159463501000047 ], [ -123.7086072099999, 49.159017788000043 ], [ -123.707379217, 49.158512206000076 ], [ -123.706696185999959, 49.158580495000081 ], [ -123.706409815999947, 49.158788492000035 ], [ -123.706399209999958, 49.159040483000112 ], [ -123.706779808999954, 49.159721304000065 ], [ -123.706590304999963, 49.159822404000096 ], [ -123.705695897999959, 49.159665794000091 ], [ -123.704859198999969, 49.159615905000038 ], [ -123.704225217999976, 49.159449305000095 ], [ -123.703697702999989, 49.159030611000048 ], [ -123.703461793999963, 49.158918789000033 ], [ -123.703480510999938, 49.158539721000054 ], [ -123.702972067999966, 49.158528875000073 ], [ -123.702948097999979, 49.158441010000033 ], [ -123.703066994, 49.158116192000065 ], [ -123.703406399999963, 49.157879807000079 ], [ -123.704450192999957, 49.157909691000093 ], [ -123.70467830399997, 49.157522301000036 ], [ -123.70464921099996, 49.157395609000091 ], [ -123.703238019999986, 49.156541104000027 ], [ -123.701305396999956, 49.155680808000106 ], [ -123.699978186999928, 49.154960199000115 ], [ -123.69926378699999, 49.154793501000064 ], [ -123.698753007, 49.15456278400012 ], [ -123.698709601999923, 49.154446011000054 ], [ -123.698843193, 49.154246699000083 ], [ -123.698704410999952, 49.154094289000113 ], [ -123.69851235000003, 49.154014998000079 ], [ -123.698586268000028, 49.15252094300007 ], [ -123.698766521999985, 49.152524796000051 ], [ -123.698781288999967, 49.15222629700002 ], [ -123.698267646999938, 49.152215316000074 ], [ -123.698271239999968, 49.152142701000116 ], [ -123.699042673999955, 49.15179839400006 ], [ -123.699541497999988, 49.15212028500013 ], [ -123.699421700999949, 49.152489185000086 ], [ -123.69960329599995, 49.152685713000068 ], [ -123.699783304999954, 49.152784012000041 ], [ -123.700677477999989, 49.152913595000065 ], [ -123.701217790999948, 49.153332294000087 ], [ -123.701562105999955, 49.15348330800002 ], [ -123.701932623999966, 49.153463304000056 ], [ -123.702354594999989, 49.153316603000128 ], [ -123.702816517999977, 49.152900802000083 ], [ -123.702825495999903, 49.152667194000067 ], [ -123.702673585999946, 49.152514808000042 ], [ -123.701316190999975, 49.151596206000093 ], [ -123.700967376999969, 49.151193194 ], [ -123.700947507999913, 49.15111767000009 ], [ -123.700823406999945, 49.150646289000051 ], [ -123.699915605999948, 49.15044400200005 ], [ -123.69982880400002, 49.150183412000018 ], [ -123.699044193999924, 49.149901386000089 ], [ -123.698558292999934, 49.149498312000041 ], [ -123.698652617999969, 49.14940010400008 ], [ -123.699035120999966, 49.149343101000085 ], [ -123.699075801999967, 49.149243393000042 ], [ -123.69959320699999, 49.148961406000076 ], [ -123.699759767999964, 49.148569811000094 ], [ -123.699777315999967, 49.148528503000122 ], [ -123.699754558999956, 49.148522045000021 ], [ -123.699531304999965, 49.148458695000059 ], [ -123.69732279599998, 49.148498500000073 ], [ -123.696853394999948, 49.148240807000043 ], [ -123.696658389999953, 49.148025690000068 ], [ -123.695652005999975, 49.147681007000081 ], [ -123.695373689999897, 49.147350609000078 ], [ -123.695172592999981, 49.146703989000052 ], [ -123.695657181999962, 49.146115799000036 ], [ -123.695774814999965, 49.145665807000078 ], [ -123.694932389999948, 49.145211495000083 ], [ -123.694342611999943, 49.144280006000038 ], [ -123.694178410999925, 49.144227287000106 ], [ -123.692673521999936, 49.144460903000116 ], [ -123.691831399999941, 49.14414188500006 ], [ -123.691671919999948, 49.143522403000063 ], [ -123.69100298699999, 49.14361639100008 ], [ -123.690436309999967, 49.143404084000061 ], [ -123.690394812999926, 49.143322995000069 ], [ -123.690431791999941, 49.143097893000117 ], [ -123.690999489999911, 49.142393011000088 ], [ -123.691217587999972, 49.141349007000073 ], [ -123.69115590599999, 49.140725020000055 ], [ -123.694600183999938, 49.140798854000096 ], [ -123.694553955999979, 49.141731887000077 ], [ -123.695471308999942, 49.141751533000026 ], [ -123.6954473699999, 49.142234855000048 ], [ -123.696314208999965, 49.142253413000041 ], [ -123.696312201999973, 49.142293949000084 ], [ -123.698728922999948, 49.14234564900007 ], [ -123.698689614999964, 49.143140407000033 ], [ -123.69921060199999, 49.143151545000066 ], [ -123.699282255999947, 49.141702430000088 ], [ -123.704755566999964, 49.141819289000075 ], [ -123.704652938999956, 49.143899682000054 ], [ -123.704588729999955, 49.145201193000055 ], [ -123.705824955999972, 49.145227549000083 ], [ -123.705838808999928, 49.144946600000011 ], [ -123.708514552999986, 49.145003598000102 ], [ -123.708593376999971, 49.143403092000064 ], [ -123.705501756999965, 49.14333722900011 ], [ -123.705509551999938, 49.143179179000114 ], [ -123.705631914999969, 49.140697713000037 ], [ -123.705097802999944, 49.140686326000058 ], [ -123.705138264999945, 49.139865926000041 ], [ -123.704218220999934, 49.139846305000063 ], [ -123.704395762999965, 49.136247540000078 ], [ -123.705384676999969, 49.136268630000082 ], [ -123.705492579999941, 49.134080183000016 ], [ -123.702844697, 49.13402369100001 ], [ -123.702831729999957, 49.134286399000125 ], [ -123.699089676, 49.134206453000047 ], [ -123.699034935999947, 49.135313590000059 ], [ -123.698503607999925, 49.13530222800005 ], [ -123.69849052799999, 49.135566703000059 ], [ -123.697916442999912, 49.135554424000084 ], [ -123.697883041999901, 49.136229615000026 ], [ -123.69581604299999, 49.136185378000064 ], [ -123.69572845499999, 49.137954264000051 ], [ -123.69172505899995, 49.137868472 ], [ -123.691756695999956, 49.137782789 ], [ -123.692082307999982, 49.137466590000031 ], [ -123.692290505999949, 49.136727502000063 ], [ -123.692362291999927, 49.135917092000071 ], [ -123.692144188000015, 49.135018390000027 ], [ -123.691878695999904, 49.134696503000086 ], [ -123.691807403, 49.134435894000042 ], [ -123.692193589999974, 49.133624104000084 ], [ -123.692400185999972, 49.133431218000091 ], [ -123.692543198999942, 49.133434284000089 ], [ -123.6925503, 49.133291065000066 ], [ -123.692627371999961, 49.133219100000076 ], [ -123.692843406999941, 49.133017386000084 ], [ -123.693048697999927, 49.132988903000111 ], [ -123.693873789999955, 49.133182598000097 ], [ -123.69423410399996, 49.133521609000105 ], [ -123.69455208499997, 49.133672497000084 ], [ -123.69563441299999, 49.133621193000046 ], [ -123.695821087999946, 49.133350601000082 ], [ -123.695928710999965, 49.132217007000072 ], [ -123.695802816999958, 49.131641840000079 ], [ -123.697482585999978, 49.131677797000108 ], [ -123.697510166999948, 49.131120286000041 ], [ -123.698818008999979, 49.131920690000101 ], [ -123.699858400999943, 49.131823902000065 ], [ -123.700534109000017, 49.131135986000047 ], [ -123.700472600999902, 49.130741485000065 ], [ -123.700631998999953, 49.13024440800011 ], [ -123.701349314999931, 49.129691897000029 ], [ -123.702036099999972, 49.12969936700005 ], [ -123.70291329399997, 49.129708916000048 ], [ -123.704107582999967, 49.129845695000043 ], [ -123.705828208999961, 49.130312801000045 ], [ -123.707940599999944, 49.131396598 ], [ -123.709277402999973, 49.131865206000072 ], [ -123.71003490399994, 49.132229809000066 ], [ -123.712143215999959, 49.133817796000116 ], [ -123.712742585999962, 49.134588295000057 ], [ -123.712847698999923, 49.135153709000079 ], [ -123.712711796999955, 49.135326006000106 ], [ -123.712452199, 49.135408606000048 ], [ -123.710928593999981, 49.135291815000087 ], [ -123.711265909999909, 49.135757599000051 ], [ -123.711257112999959, 49.136153501000102 ], [ -123.710973505999959, 49.136461095000065 ], [ -123.709669380999969, 49.137322802000014 ], [ -123.70959201, 49.137611905000085 ], [ -123.709541281999947, 49.137962204000118 ], [ -123.710073200999958, 49.138651613000064 ], [ -123.71043591199999, 49.138245689 ], [ -123.711106878999928, 49.138151701000076 ], [ -123.711950996999974, 49.137768609000091 ], [ -123.712799310999941, 49.137583393000071 ], [ -123.713792688999973, 49.137019403000053 ], [ -123.7143248, 49.136889796000034 ], [ -123.715475799, 49.13680150400009 ], [ -123.716450006999963, 49.136877008000063 ], [ -123.717883900999936, 49.1373982960001 ], [ -123.718593497999905, 49.137285714000051 ], [ -123.719033622999987, 49.137292899000037 ], [ -123.719916000999959, 49.136783005000034 ], [ -123.720409282999952, 49.136644798000127 ], [ -123.720805791999965, 49.136624912000059 ], [ -123.7211194059999, 49.136550785000118 ], [ -123.721115293999929, 49.136263187000111 ], [ -123.720643588999963, 49.135870100000048 ], [ -123.720224104999915, 49.135278985000106 ], [ -123.718961014999977, 49.134135392000076 ], [ -123.718775007999909, 49.133632589000079 ], [ -123.718838217999931, 49.133236697000072 ], [ -123.718667391999986, 49.132877798999985 ], [ -123.718109093999956, 49.132224096000094 ], [ -123.718527699999953, 49.131718503000073 ], [ -123.718704611999925, 49.13163588900003 ], [ -123.719757122999951, 49.1314864020001 ], [ -123.718578008999941, 49.131403783000081 ], [ -123.717600096999917, 49.131148799000087 ], [ -123.716912584999974, 49.130019394000037 ], [ -123.717016813999962, 49.12963198900011 ], [ -123.717218104999944, 49.129542318000048 ], [ -123.717426, 49.129449697000055 ], [ -123.717862782999973, 49.129392802000069 ], [ -123.718522290999942, 49.129532402000066 ], [ -123.718896082999905, 49.129781592000036 ], [ -123.719581902999948, 49.129723209000076 ], [ -123.720408214999949, 49.129201771000112 ], [ -123.720532108999976, 49.129123587 ], [ -123.721200899999957, 49.128885794000063 ], [ -123.722406196999927, 49.128797495000086 ], [ -123.723470997999968, 49.128521214000045 ], [ -123.724228218999912, 49.128750505 ], [ -123.72492612399995, 49.128736202000077 ], [ -123.726874962999915, 49.128354637000015 ], [ -123.726547903999972, 49.130031208000041 ], [ -123.726651808000028, 49.13477349300004 ], [ -123.726662801999936, 49.135248287000103 ], [ -123.72856570899998, 49.135097588000107 ], [ -123.729366759999948, 49.135047670000162 ], [ -123.730392409999922, 49.134983780000084 ], [ -123.731113902999965, 49.134938811000097 ], [ -123.731108091999957, 49.13449560500009 ], [ -123.731035993999967, 49.134232911000034 ], [ -123.730696990999917, 49.133602508000045 ], [ -123.730436300999941, 49.132967415000039 ], [ -123.730241712999927, 49.132350892000026 ], [ -123.730192688999978, 49.132104763000086 ], [ -123.730130620999958, 49.131792902000022 ], [ -123.73012289899998, 49.131248706000044 ], [ -123.730185370999962, 49.130898193000085 ], [ -123.730360509999969, 49.129915392000107 ], [ -123.730776808999934, 49.128679486000053 ], [ -123.73125487599998, 49.128395990000072 ], [ -123.731664793999983, 49.12827400900003 ], [ -123.732304194999969, 49.128218987000054 ], [ -123.733077302999988, 49.128229905000062 ], [ -123.733403117999941, 49.128289001000049 ], [ -123.736159500999918, 49.129192716000077 ], [ -123.73604751, 49.129410999000122 ], [ -123.736360513999898, 49.129507693000079 ], [ -123.736497913999969, 49.129583507000063 ], [ -123.736945624999976, 49.130064903000054 ], [ -123.737201409999926, 49.130294493000036 ], [ -123.737789596999988, 49.130590593000079 ], [ -123.739083387999983, 49.131103198000112 ], [ -123.739547507999958, 49.131331791000072 ], [ -123.739266624999971, 49.131476297000113 ], [ -123.73877569099993, 49.13165969300006 ], [ -123.738482135999945, 49.131726956000122 ], [ -123.737958598999953, 49.13184689100008 ], [ -123.737105701999937, 49.131982095000083 ], [ -123.736268119999977, 49.132027498000099 ], [ -123.735536483999965, 49.132034704000084 ], [ -123.733199710999941, 49.132001351000042 ], [ -123.733014304999955, 49.131998696000039 ], [ -123.732933616999958, 49.134834903000097 ], [ -123.733103688999961, 49.13482510800003 ], [ -123.734136680999939, 49.134765599000104 ], [ -123.735650214999936, 49.134813221000051 ], [ -123.735546486, 49.136944988000117 ], [ -123.730073671999975, 49.13682969200012 ], [ -123.730109026999941, 49.136104869000071 ], [ -123.729950977, 49.136101534000019 ], [ -123.729940824999957, 49.136309627000038 ], [ -123.727491881999939, 49.136257941000096 ], [ -123.727418406999945, 49.137762485000053 ], [ -123.724362162999981, 49.137697904000049 ], [ -123.724328519999958, 49.138385859000046 ], [ -123.723797147999932, 49.138374622000114 ], [ -123.723784212999988, 49.138639072000068 ], [ -123.722951640999966, 49.13862146000006 ], [ -123.722866878999966, 49.140353575000049 ], [ -123.725707396999923, 49.140413636000069 ], [ -123.725640916999964, 49.141773739000087 ], [ -123.726203561999981, 49.14178562700004 ], [ -123.726106267999967, 49.143776535000086 ], [ -123.727638530999954, 49.143808895000078 ], [ -123.727462757999916, 49.147407656000013 ], [ -123.725048637999961, 49.147356664000064 ], [ -123.725025368999979, 49.147832503000103 ], [ -123.729262319999975, 49.147921964000098 ], [ -123.729234821999967, 49.148485332000092 ], [ -123.729515744999958, 49.148491258000107 ], [ -123.729396520999941, 49.150934071000087 ], [ -123.729912578999972, 49.150944954000117 ], [ -123.729736955999911, 49.154543680000081 ], [ -123.729372781999956, 49.154536 ], [ -123.724262085999925, 49.15442809200011 ], [ -123.724275190999919, 49.154160226000144 ], [ -123.72258455, 49.154124476000099 ], [ -123.722575856, 49.154302057000066 ], [ -123.722352661999963, 49.154297335000116 ], [ -123.722346499999944, 49.154423185000084 ], [ -123.726234132999934, 49.154505360000066 ], [ -123.726186652999928, 49.155476687000025 ], [ -123.728172622, 49.15551861200013 ], [ -123.72811629399996, 49.156671878000019 ], [ -123.725839719999925, 49.156688200000112 ], [ -123.725117714999925, 49.156743204000058 ], [ -123.723650688999911, 49.156929213000097 ], [ -123.723650601999935, 49.157491183000104 ], [ -123.723587987, 49.159441496000085 ], [ -123.723431703999921, 49.16019563900003 ], [ -123.72331038699997, 49.160177387000012 ] ], [ [ -123.712592886999943, 49.156962873000083 ], [ -123.712602136999919, 49.156774784000064 ], [ -123.712580549, 49.156774326000075 ], [ -123.712571299, 49.156962415000081 ], [ -123.712592886999943, 49.156962873000083 ] ], [ [ -123.714956073999971, 49.153222328000048 ], [ -123.715097058999973, 49.150352045000076 ], [ -123.712873438999907, 49.150304826000067 ], [ -123.71287024399993, 49.150369806000043 ], [ -123.71256452099999, 49.150363311000028 ], [ -123.712493910999939, 49.151799312000023 ], [ -123.712016, 49.151789156000056 ], [ -123.712005402999949, 49.152004624 ], [ -123.709228240999963, 49.151945565000098 ], [ -123.709224567999939, 49.152020149000123 ], [ -123.712543098999944, 49.152090713000092 ], [ -123.712530055999949, 49.152355957000118 ], [ -123.713764571999945, 49.152382182000061 ], [ -123.713724564999893, 49.15319618200008 ], [ -123.714956073999971, 49.153222328000048 ] ], [ [ -123.722559267999955, 49.149514843000127 ], [ -123.722510037999939, 49.150520456000052 ], [ -123.723654246999899, 49.150544657000069 ], [ -123.723779251999972, 49.147989862000045 ], [ -123.722807807999985, 49.147969316000022 ], [ -123.72277054700001, 49.148730568000069 ], [ -123.717296377999958, 49.1486146250001 ], [ -123.717324897999944, 49.148033366000085 ], [ -123.715477007999979, 49.147994164000053 ], [ -123.715382439, 49.14991994300005 ], [ -123.717057695, 49.149955483000028 ], [ -123.717085006999937, 49.149398889000103 ], [ -123.722559267999955, 49.149514843000127 ] ], [ [ -123.71180053099999, 49.142641404000095 ], [ -123.711870025999971, 49.141228230000124 ], [ -123.711233001, 49.141214685000087 ], [ -123.711238563999927, 49.141101573000107 ], [ -123.711091144999969, 49.141098438000064 ], [ -123.711016060999953, 49.142624724000093 ], [ -123.71180053099999, 49.142641404000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19375061", "BldgCostT": "12478190", "sL_LossRatio": "0.757897946260349", "sL_AssetLoss": "127913", "sL_BldgLoss": "96945", "sL_StrLoss": "52025", "sL_NStrLoss": "44920", "sL_ContLoss": "30968", "geom_point": "0101000020E61000002A4C007A71EF5EC0E955CF0FC4934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.730217726999967, 49.155553220000058 ], [ -123.730372507999988, 49.152381025000075 ], [ -123.73584715, 49.152496303000092 ], [ -123.735729042999978, 49.154922796000058 ], [ -123.736015216999988, 49.154928814000087 ], [ -123.736138977999957, 49.152385867000127 ], [ -123.741613635999954, 49.152500851000092 ], [ -123.741559835999936, 49.153608989000062 ], [ -123.744445300999971, 49.153669481000065 ], [ -123.744407204999916, 49.154455143000092 ], [ -123.749171777999948, 49.154554859000051 ], [ -123.749168809999986, 49.154616196000077 ], [ -123.749864133999935, 49.154630730000065 ], [ -123.749865803999938, 49.15459621100014 ], [ -123.75008417199993, 49.154600775000077 ], [ -123.750136453999943, 49.153519814000056 ], [ -123.751159687999916, 49.153541193000137 ], [ -123.751228790999932, 49.152111737000013 ], [ -123.754910465999927, 49.152188579000082 ], [ -123.754910228999918, 49.153606188000076 ], [ -123.75491014399995, 49.154370742 ], [ -123.754909892999976, 49.155744753000107 ], [ -123.753807107999961, 49.155747967000096 ], [ -123.752298579999916, 49.155752255000095 ], [ -123.751192178999986, 49.155755390000124 ], [ -123.750694161999959, 49.155756538000041 ], [ -123.748588586999986, 49.155761391000077 ], [ -123.74650909099995, 49.155843268000062 ], [ -123.743879159999977, 49.155946773000039 ], [ -123.740702001999949, 49.156071705000052 ], [ -123.73877139899993, 49.156127493000099 ], [ -123.733803533999946, 49.15627538300005 ], [ -123.733719117999911, 49.156277891000059 ], [ -123.731328306999927, 49.156470793000096 ], [ -123.730079927999952, 49.156609145000068 ], [ -123.730130235999923, 49.155578228000074 ], [ -123.730216416999937, 49.155580045000157 ], [ -123.730217726999967, 49.155553220000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.941944194419442", "sL_AssetLoss": "2222", "sL_BldgLoss": "2093", "sL_StrLoss": "1690", "sL_NStrLoss": "403", "sL_ContLoss": "129", "geom_point": "0101000020E6100000E95784AC38F05EC0CDEF6E447B924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.752491118999927, 49.144921558000064 ], [ -123.752574198, 49.143201601000101 ], [ -123.752886052999955, 49.143500663000069 ], [ -123.755004134999922, 49.144719827000074 ], [ -123.754997339999946, 49.144973859000089 ], [ -123.752491118999927, 49.144921558000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.819256315046284", "sL_AssetLoss": "19121", "sL_BldgLoss": "15665", "sL_StrLoss": "8705", "sL_NStrLoss": "6960", "sL_ContLoss": "3456", "geom_point": "0101000020E610000061040961A0EF5EC0CECC067856914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.744740656999937, 49.136219378000128 ], [ -123.744762414999954, 49.13577042 ], [ -123.743097034999934, 49.135735507000071 ], [ -123.743080036999956, 49.13608600500001 ], [ -123.737607305, 49.135971092000091 ], [ -123.737655014999959, 49.134989714000078 ], [ -123.737904506999953, 49.134988100000058 ], [ -123.739281500999979, 49.134862994000081 ], [ -123.741300555999956, 49.134593901000052 ], [ -123.741423580999978, 49.134577496000112 ], [ -123.742939517999943, 49.134484244000078 ], [ -123.743910891999974, 49.134424467000045 ], [ -123.7439346, 49.134423010000027 ], [ -123.744607592999898, 49.134468607000059 ], [ -123.744970011999925, 49.134534782000088 ], [ -123.745395895999962, 49.134650007000069 ], [ -123.746316596999989, 49.134948878000053 ], [ -123.746854803999938, 49.135123608000129 ], [ -123.747244547999927, 49.135232976000097 ], [ -123.747825533999929, 49.135396016000087 ], [ -123.74792629599996, 49.135424302000025 ], [ -123.748182504999974, 49.13545039600011 ], [ -123.748666194999885, 49.135417307000083 ], [ -123.749273782999978, 49.135257102000025 ], [ -123.750408700999955, 49.134642301000078 ], [ -123.751030011999916, 49.136098097000065 ], [ -123.751030691999944, 49.136213040000044 ], [ -123.750220100000021, 49.136196098000028 ], [ -123.750213435999939, 49.136333928000056 ], [ -123.744740656999937, 49.136219378000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "353013417", "BldgCostT": "243941667", "sL_LossRatio": "0.846462541271525", "sL_AssetLoss": "1164604.4", "sL_BldgLoss": "985794", "sL_StrLoss": "561532", "sL_NStrLoss": "424262", "sL_ContLoss": "178810.4", "geom_point": "0101000020E61000003216D91094F45EC0711019FB37964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.816523491999959, 49.179937209000123 ], [ -123.816595986999957, 49.177925996000049 ], [ -123.815008493999954, 49.177959498000114 ], [ -123.814720400999974, 49.17787719100005 ], [ -123.812180095999963, 49.176600913000115 ], [ -123.811013864999936, 49.176093738000063 ], [ -123.810789799999952, 49.175996294000143 ], [ -123.8099797039999, 49.176754283000029 ], [ -123.808998417999987, 49.176438750000059 ], [ -123.808834691999948, 49.176386096000037 ], [ -123.805738796999961, 49.176343788000061 ], [ -123.804958780999982, 49.173672929000183 ], [ -123.805217580999965, 49.17367820300008 ], [ -123.805218005999933, 49.173669225000069 ], [ -123.804956139999888, 49.173663888000142 ], [ -123.804727602999989, 49.172881288000063 ], [ -123.804697514999972, 49.171970959000063 ], [ -123.80465030799995, 49.170541887000127 ], [ -123.803781983999954, 49.17022632500003 ], [ -123.802059191999916, 49.169600204000034 ], [ -123.801092302999947, 49.1694119960001 ], [ -123.80782338799996, 49.168438582000135 ], [ -123.808391501999949, 49.168450143000015 ], [ -123.808383347999964, 49.168623170000068 ], [ -123.813089409999975, 49.168718832000117 ], [ -123.813099188, 49.16851090800003 ], [ -123.818575930999955, 49.168621978 ], [ -123.81857590499996, 49.168622545000098 ], [ -123.823968534999949, 49.168731636000103 ], [ -123.823961888000028, 49.168873683000101 ], [ -123.826585849999972, 49.168926667000058 ], [ -123.826570600999958, 49.169252917000051 ], [ -123.831666684999931, 49.169355635000088 ], [ -123.831501904999953, 49.172889224000116 ], [ -123.831833031999949, 49.17289588900011 ], [ -123.83184290299999, 49.172684181000129 ], [ -123.832620542999948, 49.172699832000028 ], [ -123.832632084999943, 49.172452200000052 ], [ -123.83522892199997, 49.172504423000142 ], [ -123.835254506999945, 49.171954863000039 ], [ -123.835817376999955, 49.171966174000126 ], [ -123.83581978799999, 49.171914377000071 ], [ -123.83618162099999, 49.171921647000012 ], [ -123.836185075999978, 49.171847418000034 ], [ -123.836133320999977, 49.171846379000115 ], [ -123.836145288999887, 49.171589154000046 ], [ -123.834621979999952, 49.171558539000102 ], [ -123.834789554999986, 49.167959741000097 ], [ -123.835200559999947, 49.16796800300007 ], [ -123.835278021999983, 49.166303918000054 ], [ -123.83525072399999, 49.166303370000044 ], [ -123.83529254699998, 49.165404854000052 ], [ -123.835099272999955, 49.165400968 ], [ -123.835145149999946, 49.164415416000068 ], [ -123.83749336799994, 49.16401269500011 ], [ -123.837588313999973, 49.165007994000028 ], [ -123.837766194999944, 49.165661708000137 ], [ -123.83779337799993, 49.165728444000123 ], [ -123.837923586999977, 49.166048494000059 ], [ -123.838102517999971, 49.166298001000037 ], [ -123.838472818999975, 49.166674600000071 ], [ -123.838524166999932, 49.166706606000105 ], [ -123.838632603999898, 49.166774209000081 ], [ -123.839358314999942, 49.167083204000114 ], [ -123.841291905999981, 49.167705487000021 ], [ -123.84218271099995, 49.168146701000055 ], [ -123.842423419999974, 49.168218101 ], [ -123.842669992999959, 49.168219502000071 ], [ -123.841710701999915, 49.168955804000078 ], [ -123.841453995999984, 49.169468486000085 ], [ -123.841365214999939, 49.169520706000149 ], [ -123.841231199999982, 49.169543203000096 ], [ -123.840842205999948, 49.169510206000034 ], [ -123.83993959599999, 49.169378710000061 ], [ -123.839413301999983, 49.169350994000062 ], [ -123.839312201999988, 49.170729494000057 ], [ -123.839469709999918, 49.174184412000102 ], [ -123.839204200000012, 49.174211585000073 ], [ -123.838661185999968, 49.17426720100012 ], [ -123.837819184999901, 49.174403236000011 ], [ -123.837084094999938, 49.174521998000088 ], [ -123.835300208999968, 49.174978698000068 ], [ -123.832798066999914, 49.175595235000031 ], [ -123.832438202999953, 49.175683901000056 ], [ -123.832052889999943, 49.175716701000056 ], [ -123.83174750799995, 49.175695879000081 ], [ -123.829766995999989, 49.175560795000074 ], [ -123.829543537999939, 49.175571935000058 ], [ -123.827864185999914, 49.1756557060001 ], [ -123.826304301999969, 49.175597197000101 ], [ -123.825880191999914, 49.175581496000056 ], [ -123.825234550999966, 49.17552947100004 ], [ -123.822404891, 49.175301398000059 ], [ -123.819415989, 49.174792500000095 ], [ -123.819185897999915, 49.174817591000092 ], [ -123.819031818999974, 49.174889190000066 ], [ -123.818868599999973, 49.175007491000073 ], [ -123.818644313999968, 49.175259599000093 ], [ -123.818509281999951, 49.175374171000065 ], [ -123.818375890999974, 49.175487388000079 ], [ -123.818295882999948, 49.175527204000147 ], [ -123.818116301999908, 49.175557798000092 ], [ -123.818806814999959, 49.175944604000094 ], [ -123.819827401999987, 49.176570409000071 ], [ -123.822224287999987, 49.177985905000035 ], [ -123.822972140999951, 49.178532253000114 ], [ -123.823444642999931, 49.178877414000056 ], [ -123.824427327999956, 49.17959525800007 ], [ -123.82499058599997, 49.180006701000075 ], [ -123.825895275999969, 49.180827392000026 ], [ -123.826200942999932, 49.181200007 ], [ -123.826429716999925, 49.181478909000099 ], [ -123.826450393999934, 49.181504111000066 ], [ -123.826429449999978, 49.18209153800013 ], [ -123.82637981799995, 49.183482067000121 ], [ -123.826317814999982, 49.185219690000032 ], [ -123.82400964699994, 49.184543618000106 ], [ -123.820899107999978, 49.183632389000095 ], [ -123.820843216999918, 49.183615996000086 ], [ -123.816411489999936, 49.181970023000062 ], [ -123.816258022999961, 49.18191300200008 ], [ -123.816348300999948, 49.181827491000064 ], [ -123.816440605999986, 49.181556488000076 ], [ -123.81651001299997, 49.180924795000102 ], [ -123.816523491999959, 49.179937209000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "356034130", "BldgCostT": "231682164", "sL_LossRatio": "0.76280584929192", "sL_AssetLoss": "1793653", "sL_BldgLoss": "1368209", "sL_StrLoss": "727606", "sL_NStrLoss": "640603", "sL_ContLoss": "425444", "geom_point": "0101000020E61000001CEE3B0A40F55EC089E4554A0D984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.819946289999947, 49.202584307000045 ], [ -123.819570386999899, 49.202343609000081 ], [ -123.81869371199997, 49.202430497000094 ], [ -123.818388398999943, 49.202262396000059 ], [ -123.818301808999962, 49.201956188000089 ], [ -123.818297219999977, 49.201714100000046 ], [ -123.81858910299999, 49.201037593000038 ], [ -123.818564395999928, 49.200389599000054 ], [ -123.818372606999958, 49.199634784000054 ], [ -123.818483075999922, 49.198861395000016 ], [ -123.818311692999941, 49.198367209000011 ], [ -123.818500210999986, 49.197313305000101 ], [ -123.818432812999916, 49.19664818800004 ], [ -123.818123982999907, 49.196200998000023 ], [ -123.818412180999985, 49.196145498000121 ], [ -123.818551187999944, 49.196279290000078 ], [ -123.818894890999943, 49.196276497000042 ], [ -123.819507599999923, 49.195947488000108 ], [ -123.820373088999972, 49.195204109 ], [ -123.820462514, 49.194879301000114 ], [ -123.82074581399999, 49.194527605000061 ], [ -123.820755998999971, 49.193465085000099 ], [ -123.820663781999954, 49.19292680100007 ], [ -123.820400701000011, 49.192730209000082 ], [ -123.819126801999957, 49.192955208000072 ], [ -123.818713494999884, 49.192770111000087 ], [ -123.818393014999941, 49.192465292000058 ], [ -123.818718002999958, 49.192230303000088 ], [ -123.81869640799999, 49.191780299000101 ], [ -123.818817214999939, 49.191653494000057 ], [ -123.8192689099999, 49.191488308000039 ], [ -123.819648004999976, 49.191152194000026 ], [ -123.820152892999914, 49.191059605000071 ], [ -123.821269593999972, 49.190565392000067 ], [ -123.82183127799999, 49.190452895000057 ], [ -123.82180048699999, 49.190183693000101 ], [ -123.821544886999945, 49.188926193000071 ], [ -123.821287819999952, 49.188514390000122 ], [ -123.821590283999953, 49.188520505000035 ], [ -123.821607363999988, 49.18815605000006 ], [ -123.821057187999955, 49.188144925000081 ], [ -123.820728700999936, 49.187618687000047 ], [ -123.820296095999964, 49.187061011000011 ], [ -123.820414781999915, 49.184529833000049 ], [ -123.82148257099999, 49.184551429000031 ], [ -123.821482885999956, 49.184544715000072 ], [ -123.818966107999955, 49.184493795000051 ], [ -123.818988157999939, 49.184023850000116 ], [ -123.81763261499999, 49.18399640000009 ], [ -123.817568340999955, 49.185365426000047 ], [ -123.817078588999962, 49.185243105000019 ], [ -123.815960100999945, 49.184845799000072 ], [ -123.813675094999951, 49.184375800000041 ], [ -123.812783418, 49.184310300000043 ], [ -123.8115818799999, 49.184679193000136 ], [ -123.811672311999956, 49.185263087000109 ], [ -123.811103885999955, 49.185742990000058 ], [ -123.81070651099995, 49.185791507000047 ], [ -123.810292098999952, 49.185632010000106 ], [ -123.809717083999928, 49.185627703000108 ], [ -123.808930411999953, 49.185416895000081 ], [ -123.807680295999887, 49.184462702000047 ], [ -123.807375620999906, 49.184348701000026 ], [ -123.80712579599998, 49.184089513000082 ], [ -123.806609126999916, 49.182944564000088 ], [ -123.804394079999909, 49.181829496000034 ], [ -123.804728598999972, 49.181342977000135 ], [ -123.804890113999988, 49.181108166000065 ], [ -123.80512571099996, 49.180765504000107 ], [ -123.805206605, 49.1805339000001 ], [ -123.805247698999963, 49.180243885000031 ], [ -123.805142089999933, 49.179693298000103 ], [ -123.805497291, 49.179659998000055 ], [ -123.805956089999981, 49.179669413000042 ], [ -123.80860301499996, 49.180224893000101 ], [ -123.808966778999917, 49.180214189000054 ], [ -123.809210299999961, 49.180138194000058 ], [ -123.809466683999943, 49.179933502000011 ], [ -123.809500720999964, 49.179792813000091 ], [ -123.809142189999974, 49.178906607000087 ], [ -123.809070686999959, 49.178590891000034 ], [ -123.809094301999963, 49.178235713000028 ], [ -123.809142556999959, 49.178003735000075 ], [ -123.809174000999988, 49.17785268800008 ], [ -123.809288306999974, 49.177522785000079 ], [ -123.809506607999964, 49.177194888000081 ], [ -123.8099797039999, 49.176754283000029 ], [ -123.810789799999952, 49.175996294000143 ], [ -123.811013864999936, 49.176093738000063 ], [ -123.812180095999963, 49.176600913000115 ], [ -123.814720400999974, 49.17787719100005 ], [ -123.815008493999954, 49.177959498000114 ], [ -123.816595986999957, 49.177925996000049 ], [ -123.816523491999959, 49.179937209000123 ], [ -123.81651001299997, 49.180924795000102 ], [ -123.816440605999986, 49.181556488000076 ], [ -123.816348300999948, 49.181827491000064 ], [ -123.816258022999961, 49.18191300200008 ], [ -123.816411489999936, 49.181970023000062 ], [ -123.820843216999918, 49.183615996000086 ], [ -123.820899107999978, 49.183632389000095 ], [ -123.82400964699994, 49.184543618000106 ], [ -123.826317814999982, 49.185219690000032 ], [ -123.82637981799995, 49.183482067000121 ], [ -123.826429449999978, 49.18209153800013 ], [ -123.826450393999934, 49.181504111000066 ], [ -123.826429716999925, 49.181478909000099 ], [ -123.826200942999932, 49.181200007 ], [ -123.825895275999969, 49.180827392000026 ], [ -123.82499058599997, 49.180006701000075 ], [ -123.824427327999956, 49.17959525800007 ], [ -123.823444642999931, 49.178877414000056 ], [ -123.822972140999951, 49.178532253000114 ], [ -123.822224287999987, 49.177985905000035 ], [ -123.819827401999987, 49.176570409000071 ], [ -123.818806814999959, 49.175944604000094 ], [ -123.818116301999908, 49.175557798000092 ], [ -123.818295882999948, 49.175527204000147 ], [ -123.818375890999974, 49.175487388000079 ], [ -123.818509281999951, 49.175374171000065 ], [ -123.818644313999968, 49.175259599000093 ], [ -123.818868599999973, 49.175007491000073 ], [ -123.819031818999974, 49.174889190000066 ], [ -123.819185897999915, 49.174817591000092 ], [ -123.819415989, 49.174792500000095 ], [ -123.822404891, 49.175301398000059 ], [ -123.825234550999966, 49.17552947100004 ], [ -123.825880191999914, 49.175581496000056 ], [ -123.826304301999969, 49.175597197000101 ], [ -123.827864185999914, 49.1756557060001 ], [ -123.829543537999939, 49.175571935000058 ], [ -123.829766995999989, 49.175560795000074 ], [ -123.83174750799995, 49.175695879000081 ], [ -123.832052889999943, 49.175716701000056 ], [ -123.832438202999953, 49.175683901000056 ], [ -123.832798066999914, 49.175595235000031 ], [ -123.835300208999968, 49.174978698000068 ], [ -123.837084094999938, 49.174521998000088 ], [ -123.837819184999901, 49.174403236000011 ], [ -123.838661185999968, 49.17426720100012 ], [ -123.839204200000012, 49.174211585000073 ], [ -123.839469709999918, 49.174184412000102 ], [ -123.839525449999925, 49.174182157000061 ], [ -123.840531088999981, 49.174141694000106 ], [ -123.841276329999971, 49.174130547000104 ], [ -123.841578075999948, 49.174126039000079 ], [ -123.842869699999937, 49.174106701 ], [ -123.844757709999968, 49.17397519400005 ], [ -123.845137184999928, 49.173977300000089 ], [ -123.845993095999944, 49.174053895000128 ], [ -123.84620191599997, 49.174074308000087 ], [ -123.846866494, 49.1740758890001 ], [ -123.847476487999984, 49.174016020000096 ], [ -123.849232308999888, 49.173807890000056 ], [ -123.849285669999972, 49.173808981000086 ], [ -123.849841695999928, 49.17382010700004 ], [ -123.850621399999966, 49.174000516000056 ], [ -123.851058988999938, 49.174023597000037 ], [ -123.849014301999958, 49.180418511000099 ], [ -123.848950929999944, 49.180662559000034 ], [ -123.846977593999924, 49.180623138000023 ], [ -123.847028685999987, 49.179519902000074 ], [ -123.846522212999929, 49.179509778000131 ], [ -123.846500763999956, 49.179972833000136 ], [ -123.842682253999911, 49.179896433000096 ], [ -123.842603857999961, 49.181585819000063 ], [ -123.845671304999911, 49.181647203000118 ], [ -123.845504523999963, 49.185245943 ], [ -123.844700368999909, 49.18522985900011 ], [ -123.844695960999914, 49.18532494500009 ], [ -123.845454537999927, 49.185340117000123 ], [ -123.84528772699997, 49.188938837000066 ], [ -123.845209582, 49.188937274000104 ], [ -123.845105647999944, 49.191179135000077 ], [ -123.845062489999961, 49.191178272000059 ], [ -123.845044367999947, 49.191569135000066 ], [ -123.844253500999955, 49.191553316000117 ], [ -123.844242747999942, 49.191785155000062 ], [ -123.843949077999966, 49.19177928000007 ], [ -123.843901492999976, 49.192805060000111 ], [ -123.843888202999935, 49.192804794000118 ], [ -123.843834255999951, 49.193967659000066 ], [ -123.842888160999934, 49.193948726000045 ], [ -123.842827377999953, 49.195258272000061 ], [ -123.84394805899997, 49.195280699000065 ], [ -123.843990380999955, 49.194368442000076 ], [ -123.84640716199999, 49.194416767000114 ], [ -123.84647446, 49.192964400000115 ], [ -123.847249578999978, 49.192979887 ], [ -123.84727465899995, 49.192438418000094 ], [ -123.848048293999938, 49.192453870000087 ], [ -123.848057338999965, 49.192258537000043 ], [ -123.849041227000015, 49.192278180000066 ], [ -123.849056916999984, 49.191939160000047 ], [ -123.851273327999976, 49.191983379000071 ], [ -123.851310895999958, 49.191170751000115 ], [ -123.854330838999942, 49.193117255000075 ], [ -123.85632791099998, 49.194153640000074 ], [ -123.855417297999935, 49.194500493000128 ], [ -123.854582208999958, 49.194650086000081 ], [ -123.854105100999945, 49.194833793000036 ], [ -123.852366094999979, 49.19589049000006 ], [ -123.850878813999941, 49.196440295000059 ], [ -123.850610293, 49.196793504000048 ], [ -123.84993361, 49.197284786000111 ], [ -123.84860948699999, 49.197807499000071 ], [ -123.848061278999978, 49.197801796000086 ], [ -123.84743271399995, 49.19795990100004 ], [ -123.846990304999963, 49.197818883000153 ], [ -123.846430115999908, 49.197975607000096 ], [ -123.844429312000017, 49.19817918900003 ], [ -123.84343591699999, 49.198636406000062 ], [ -123.842189695999977, 49.198780305000099 ], [ -123.84022341299999, 49.19937989800011 ], [ -123.838045808999951, 49.19975580000002 ], [ -123.837620209999955, 49.199721701000044 ], [ -123.837340502999965, 49.199472389000036 ], [ -123.836970797999953, 49.199502298000034 ], [ -123.83655689099993, 49.199388407000129 ], [ -123.83550131, 49.199495185000075 ], [ -123.835255988999961, 49.199567799000128 ], [ -123.834618184999968, 49.19996949400015 ], [ -123.8334442, 49.200418113000069 ], [ -123.832916011999941, 49.20079118900005 ], [ -123.831698814999967, 49.201106008000053 ], [ -123.831024413999941, 49.201002004000017 ], [ -123.830678909999946, 49.200761299000106 ], [ -123.830850612999939, 49.200445193000114 ], [ -123.831475414999986, 49.199965195000075 ], [ -123.831459010999964, 49.199802792000057 ], [ -123.831592803999968, 49.199676098000033 ], [ -123.83110541299996, 49.199255908000069 ], [ -123.830802283, 49.199213203000106 ], [ -123.828170979999939, 49.200231498000093 ], [ -123.827668282, 49.200586199000043 ], [ -123.82730409600002, 49.200993489000012 ], [ -123.826340418999948, 49.201557500000057 ], [ -123.82460481, 49.202110088000012 ], [ -123.82412691199994, 49.202185492000034 ], [ -123.823795409999917, 49.202142795000078 ], [ -123.823519220999984, 49.202036001000124 ], [ -123.823404198999981, 49.201714090000046 ], [ -123.822758289999939, 49.201699897000076 ], [ -123.82038518, 49.202598596000016 ], [ -123.819946289999947, 49.202584307000045 ] ], [ [ -123.827018046999925, 49.197474326000126 ], [ -123.827044609999959, 49.196906232000103 ], [ -123.827405220999978, 49.196913503000104 ], [ -123.827472774999976, 49.195468438000056 ], [ -123.827688368999958, 49.195472784000124 ], [ -123.82772460899993, 49.194697442000063 ], [ -123.829142299999887, 49.194726010000082 ], [ -123.829197396999973, 49.193546420000075 ], [ -123.827191229999968, 49.193505988000013 ], [ -123.82706581399998, 49.196188466000066 ], [ -123.823608336999939, 49.196118697000053 ], [ -123.823544946999974, 49.197472248000111 ], [ -123.822424411999975, 49.197449613000067 ], [ -123.822392038999936, 49.198140476000042 ], [ -123.822062449999933, 49.198133815000105 ], [ -123.822042745999951, 49.198554231000102 ], [ -123.823883345999946, 49.198591411000059 ], [ -123.823886944999956, 49.198514559000046 ], [ -123.824009457999964, 49.198517032000098 ], [ -123.824028561999953, 49.198109061000061 ], [ -123.824948040999971, 49.198127621000054 ], [ -123.824959537999987, 49.197881984000084 ], [ -123.825731534999974, 49.197897561000111 ], [ -123.825752531999939, 49.197448802000082 ], [ -123.827018046999925, 49.197474326000126 ] ], [ [ -123.82702412499999, 49.189724359000053 ], [ -123.827041061999964, 49.189362087000085 ], [ -123.82564249, 49.189333874000035 ], [ -123.825521985999927, 49.191909693000071 ], [ -123.825508323999927, 49.192201715000053 ], [ -123.825140267, 49.192194288000074 ], [ -123.824184340999977, 49.192174990000076 ], [ -123.824167817999964, 49.192527945000037 ], [ -123.825913479999926, 49.192563179000068 ], [ -123.825919915999975, 49.192425572000076 ], [ -123.825955881999946, 49.191656672000128 ], [ -123.826038952999951, 49.189880687000027 ], [ -123.826874496999949, 49.189897541000114 ], [ -123.826882726999912, 49.189721507000037 ], [ -123.82702412499999, 49.189724359000053 ] ], [ [ -123.837509375999986, 49.185973630000113 ], [ -123.837554070999914, 49.185012858000093 ], [ -123.838382687999953, 49.185029485000051 ], [ -123.838401158999915, 49.184632277000077 ], [ -123.839243498999934, 49.184649174000121 ], [ -123.839245059999897, 49.184615593000117 ], [ -123.835350920999986, 49.184537424000034 ], [ -123.83551848399999, 49.180938695000087 ], [ -123.837149003999926, 49.180971443000033 ], [ -123.837207286999956, 49.179718633000043 ], [ -123.841025773999959, 49.179795227000028 ], [ -123.841105782999975, 49.17807225500011 ], [ -123.839344664999928, 49.17803694600007 ], [ -123.839396992999923, 49.176910947000124 ], [ -123.839067722999985, 49.176904342000036 ], [ -123.839095431999979, 49.17630816000004 ], [ -123.838850051999927, 49.176303237000134 ], [ -123.838881352999948, 49.175629834000027 ], [ -123.837967559, 49.175611497000041 ], [ -123.837942003999927, 49.176161054000055 ], [ -123.837636773, 49.176154928000102 ], [ -123.837578960999906, 49.177397960000071 ], [ -123.836220100999981, 49.177370673000063 ], [ -123.836222529999972, 49.177514800000061 ], [ -123.835118997, 49.177522786000104 ], [ -123.835113775999943, 49.177634920000081 ], [ -123.833305600999978, 49.177598567000103 ], [ -123.83330260399994, 49.177662864000091 ], [ -123.827824761, 49.177552545000083 ], [ -123.827866457999917, 49.176660042000044 ], [ -123.826918584999959, 49.176640924000019 ], [ -123.826927054999956, 49.176459697000077 ], [ -123.825806842999953, 49.176437093000068 ], [ -123.825764503999977, 49.177342512000088 ], [ -123.827660421999937, 49.17738076200007 ], [ -123.827572338999985, 49.179265864000044 ], [ -123.827998524999884, 49.179274459000069 ], [ -123.827830384999956, 49.182873185000112 ], [ -123.827045582999943, 49.182857358000092 ], [ -123.827020333999954, 49.183397538000101 ], [ -123.82861000399997, 49.183429589000077 ], [ -123.828646761999963, 49.182642630000046 ], [ -123.834125204999964, 49.182752907000051 ], [ -123.833967052999967, 49.186147187000095 ], [ -123.834053214999983, 49.186148918000171 ], [ -123.833970128999923, 49.187931975000083 ], [ -123.83546521599996, 49.187962020000036 ], [ -123.835508735999952, 49.187027413000109 ], [ -123.836911282999964, 49.187055579000109 ], [ -123.836962140999972, 49.18596264500011 ], [ -123.837509375999986, 49.185973630000113 ] ], [ [ -123.813270199999963, 49.181861932000103 ], [ -123.81328429, 49.181562386000095 ], [ -123.813169269999932, 49.181560051000083 ], [ -123.813199490999978, 49.180917589000032 ], [ -123.812403833999923, 49.180923189000055 ], [ -123.812403599999953, 49.180908921000061 ], [ -123.811791667999927, 49.180896494000095 ], [ -123.811749062999922, 49.181801662000048 ], [ -123.811770187, 49.181802090000083 ], [ -123.81175471799996, 49.182130709000035 ], [ -123.81223617800002, 49.182140487000083 ], [ -123.81225026199999, 49.181841224000067 ], [ -123.813270199999963, 49.181861932000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.842697297233023", "sL_AssetLoss": "16819.8", "sL_BldgLoss": "14174", "sL_StrLoss": "8840", "sL_NStrLoss": "5334", "sL_ContLoss": "2645.8", "geom_point": "0101000020E6100000A7112B8A34F65EC02E7AE1ADF7974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.84727752299996, 49.190227021000112 ], [ -123.847341472999986, 49.188846214000137 ], [ -123.84559864500001, 49.188811381000043 ], [ -123.84576543199999, 49.185212660000026 ], [ -123.845962897999968, 49.185216608000083 ], [ -123.845998066, 49.184457663000039 ], [ -123.847950641999887, 49.18449668300007 ], [ -123.84696385299999, 49.188368421000078 ], [ -123.849928989999938, 49.190279960000105 ], [ -123.84727752299996, 49.190227021000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5313500", "BldgCostT": "3455000", "sL_LossRatio": "0.667615632641753", "sL_AssetLoss": "49808.6", "sL_BldgLoss": "33253", "sL_StrLoss": "13226", "sL_NStrLoss": "20027", "sL_ContLoss": "16555.6", "geom_point": "0101000020E6100000CB3D4DFB60F55EC01442A43207934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.835685511999941, 49.149648228000061 ], [ -123.834006545999941, 49.149198069000093 ], [ -123.833149639999988, 49.149233331000097 ], [ -123.832433137999928, 49.14866120200012 ], [ -123.831797459999947, 49.148295828000123 ], [ -123.831243039999919, 49.148119064000106 ], [ -123.830770659999928, 49.148067856000054 ], [ -123.830648967999934, 49.148005432000097 ], [ -123.829744580999957, 49.147893766000095 ], [ -123.829712567999934, 49.147882399000132 ], [ -123.829095586999983, 49.147663536000081 ], [ -123.828817804999957, 49.147480221000095 ], [ -123.828825291999976, 49.14735028300003 ], [ -123.829245440999941, 49.147298070000062 ], [ -123.829806080999958, 49.147484857000038 ], [ -123.829890333999955, 49.147473664000096 ], [ -123.830011298999977, 49.147457567000082 ], [ -123.829807913999971, 49.147332053000127 ], [ -123.829990783999932, 49.14736060000012 ], [ -123.83110499499999, 49.147595599000049 ], [ -123.833086952999921, 49.147724714000077 ], [ -123.833094610999922, 49.147725209000065 ], [ -123.833552348999959, 49.14785061500006 ], [ -123.833702706999972, 49.147891790000052 ], [ -123.836662513999968, 49.148848622000095 ], [ -123.837935873, 49.149260215000062 ], [ -123.837885213999954, 49.150350278000076 ], [ -123.837873914999975, 49.150302313000033 ], [ -123.837565578999971, 49.150085460000099 ], [ -123.835685511999941, 49.149648228000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "394004311", "BldgCostT": "261594614", "sL_LossRatio": "0.804706419019866", "sL_AssetLoss": "1569601", "sL_BldgLoss": "1263068", "sL_StrLoss": "790731", "sL_NStrLoss": "472337", "sL_ContLoss": "306533", "geom_point": "0101000020E6100000F847BD4CB9F65EC09E1981A15C954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.857704322999965, 49.177616502000049 ], [ -123.856880102000019, 49.177461294000132 ], [ -123.856560797, 49.177256192000129 ], [ -123.856371606999943, 49.1772673380001 ], [ -123.855188941999984, 49.176632789000081 ], [ -123.85495589099996, 49.176602574000157 ], [ -123.8550511709999, 49.174537258000029 ], [ -123.856351538999931, 49.174563145000022 ], [ -123.856361430999982, 49.174348590000157 ], [ -123.856954489999964, 49.174360391000107 ], [ -123.856966720999935, 49.174095004000016 ], [ -123.858239698999952, 49.174120324000043 ], [ -123.858290328999971, 49.173021134000059 ], [ -123.858620696999978, 49.173027702000113 ], [ -123.858622938999972, 49.172979026000036 ], [ -123.858498990999976, 49.172976562 ], [ -123.858529142999885, 49.17232186300005 ], [ -123.858453628999897, 49.172320362000079 ], [ -123.858468858999984, 49.171989664000058 ], [ -123.85717325499995, 49.171963897000111 ], [ -123.856631604999961, 49.171967916000057 ], [ -123.856626815999903, 49.172071806000055 ], [ -123.854970867999981, 49.17203884000007 ], [ -123.854969848999971, 49.172060946000052 ], [ -123.854333545999935, 49.172048273000044 ], [ -123.854330926, 49.172105062000142 ], [ -123.852722017999966, 49.172072999000129 ], [ -123.852710080999927, 49.172331498000034 ], [ -123.85285507199994, 49.172334389000135 ], [ -123.852846032999977, 49.172530109000064 ], [ -123.853250868999964, 49.172538179000121 ], [ -123.853085560999887, 49.176118480000106 ], [ -123.852820547999968, 49.175946227000097 ], [ -123.852753960999948, 49.175886912000131 ], [ -123.852584886999949, 49.175736222000062 ], [ -123.852421698999947, 49.175557765000129 ], [ -123.85177261599992, 49.17474480100006 ], [ -123.851484702999954, 49.174453826000111 ], [ -123.851405656999972, 49.174373951000057 ], [ -123.851058988999938, 49.174023597000037 ], [ -123.850621399999966, 49.174000516000056 ], [ -123.849841695999928, 49.17382010700004 ], [ -123.849285669999972, 49.173808981000086 ], [ -123.849232308999888, 49.173807890000056 ], [ -123.847476487999984, 49.174016020000096 ], [ -123.846866494, 49.1740758890001 ], [ -123.84620191599997, 49.174074308000087 ], [ -123.845993095999944, 49.174053895000128 ], [ -123.845137184999928, 49.173977300000089 ], [ -123.844757709999968, 49.17397519400005 ], [ -123.842869699999937, 49.174106701 ], [ -123.841578075999948, 49.174126039000079 ], [ -123.841276329999971, 49.174130547000104 ], [ -123.840531088999981, 49.174141694000106 ], [ -123.839525449999925, 49.174182157000061 ], [ -123.839469709999918, 49.174184412000102 ], [ -123.839312201999988, 49.170729494000057 ], [ -123.839413301999983, 49.169350994000062 ], [ -123.83993959599999, 49.169378710000061 ], [ -123.840842205999948, 49.169510206000034 ], [ -123.841231199999982, 49.169543203000096 ], [ -123.841365214999939, 49.169520706000149 ], [ -123.841453995999984, 49.169468486000085 ], [ -123.841710701999915, 49.168955804000078 ], [ -123.842669992999959, 49.168219502000071 ], [ -123.842423419999974, 49.168218101 ], [ -123.84218271099995, 49.168146701000055 ], [ -123.841291905999981, 49.167705487000021 ], [ -123.839358314999942, 49.167083204000114 ], [ -123.838632603999898, 49.166774209000081 ], [ -123.838524166999932, 49.166706606000105 ], [ -123.838472818999975, 49.166674600000071 ], [ -123.838102517999971, 49.166298001000037 ], [ -123.837923586999977, 49.166048494000059 ], [ -123.83779337799993, 49.165728444000123 ], [ -123.837766194999944, 49.165661708000137 ], [ -123.837588313999973, 49.165007994000028 ], [ -123.83749336799994, 49.16401269500011 ], [ -123.836680104999971, 49.162700512000143 ], [ -123.835943556999908, 49.161815738 ], [ -123.838739010999944, 49.161871880000056 ], [ -123.838756866999972, 49.161487620000088 ], [ -123.841096712999914, 49.161534557000024 ], [ -123.841147831999962, 49.160433275000067 ], [ -123.8466236899999, 49.160542921000101 ], [ -123.846550102999927, 49.162132283000062 ], [ -123.84703162999989, 49.16214191200001 ], [ -123.847066240999979, 49.161394225000045 ], [ -123.848932539999979, 49.161431522000079 ], [ -123.848939270999963, 49.16128597000003 ], [ -123.850981137999966, 49.161326739000096 ], [ -123.851318393999918, 49.161333469000098 ], [ -123.851319675999932, 49.16130572900007 ], [ -123.852528175, 49.161329837000032 ], [ -123.85253931799997, 49.161088500000119 ], [ -123.85242068399999, 49.161086134000101 ], [ -123.852434568999968, 49.160785397000048 ], [ -123.852505137999955, 49.159256976000044 ], [ -123.852417994999911, 49.159255238000107 ], [ -123.852584147999934, 49.155656344000121 ], [ -123.85272170699993, 49.155659087000039 ], [ -123.852793628999962, 49.15410096600003 ], [ -123.85354678499999, 49.154430392000066 ], [ -123.85452500699995, 49.154738011000092 ], [ -123.854928299999969, 49.154987196000043 ], [ -123.856100506999965, 49.155427288000105 ], [ -123.85661299499999, 49.155730694000027 ], [ -123.857883389999984, 49.15619781400008 ], [ -123.858473718999932, 49.156338639000097 ], [ -123.858504184999958, 49.156345895000079 ], [ -123.858797, 49.156613702000094 ], [ -123.859598392999942, 49.156976899000036 ], [ -123.860038792999916, 49.157089404000018 ], [ -123.86060769, 49.157518100000054 ], [ -123.861077191, 49.15761350200011 ], [ -123.861520801999959, 49.157915386000091 ], [ -123.862195410999959, 49.158107708000045 ], [ -123.862837282999976, 49.158651699000103 ], [ -123.863485698999938, 49.158953702000055 ], [ -123.863880223, 49.159480601000062 ], [ -123.864820000999941, 49.159896489000097 ], [ -123.864978896999972, 49.160326600000126 ], [ -123.865143811999971, 49.160370807000071 ], [ -123.86542160499999, 49.16066561100012 ], [ -123.865768791999955, 49.160843590000063 ], [ -123.865856503999964, 49.16116688700005 ], [ -123.866325917, 49.161387607000094 ], [ -123.86644198799992, 49.161648295000084 ], [ -123.867355319999916, 49.162197999000043 ], [ -123.867705814999951, 49.162538401000049 ], [ -123.867890591999952, 49.162941403000055 ], [ -123.868583384999937, 49.163367306000112 ], [ -123.86865800399994, 49.163753292000138 ], [ -123.869203915999989, 49.164290193000042 ], [ -123.869224013999954, 49.164738790000122 ], [ -123.869420379999909, 49.164945300000092 ], [ -123.869977697999971, 49.166271313000031 ], [ -123.870187110999936, 49.166450700000027 ], [ -123.870263492999925, 49.166845215000137 ], [ -123.870588211999944, 49.167364988000045 ], [ -123.870724600999921, 49.168074307000062 ], [ -123.871184808999885, 49.168601292000048 ], [ -123.871133398000012, 49.16873660800011 ], [ -123.871488379999931, 49.16944439400006 ], [ -123.871459932999969, 49.169976204000122 ], [ -123.87138540700002, 49.171369887000068 ], [ -123.871014305999964, 49.17364008800007 ], [ -123.870283795999967, 49.175804905000064 ], [ -123.870111611999931, 49.17619229700005 ], [ -123.869907406999957, 49.176320507000035 ], [ -123.869675985999933, 49.176375991000079 ], [ -123.869179909, 49.176253508000073 ], [ -123.867651695999896, 49.175195307000074 ], [ -123.867057696999979, 49.174947494000058 ], [ -123.86650201499999, 49.174564402000108 ], [ -123.866101908, 49.1744418850001 ], [ -123.865808215999934, 49.174092995000116 ], [ -123.865649498999943, 49.173717004000096 ], [ -123.865428685999959, 49.173655798000055 ], [ -123.865320897999965, 49.173755489000058 ], [ -123.865183684999977, 49.173755493000051 ], [ -123.865017791999918, 49.173623001000074 ], [ -123.864929298999954, 49.173343892000076 ], [ -123.863777296, 49.173335316000099 ], [ -123.862811318999888, 49.173755504000063 ], [ -123.86259850699993, 49.174125796000098 ], [ -123.862287101, 49.174461908000112 ], [ -123.861757904999976, 49.174798006000074 ], [ -123.861235076999961, 49.175458796000044 ], [ -123.860796734999923, 49.175745324000033 ], [ -123.860564303999979, 49.175897273000039 ], [ -123.860121704, 49.176186591000103 ], [ -123.860133389999945, 49.176861712000061 ], [ -123.85937618799997, 49.177505405000034 ], [ -123.85914538900002, 49.177579498000057 ], [ -123.858937705999907, 49.177518201000041 ], [ -123.858733699999988, 49.1775637920001 ], [ -123.858531292999899, 49.177727611000073 ], [ -123.858491399999963, 49.177881405000093 ], [ -123.858453174999966, 49.177889351 ], [ -123.858395764999926, 49.177901287000083 ], [ -123.858329705999921, 49.177915019000068 ], [ -123.858272086999989, 49.177926999000135 ], [ -123.857704322999965, 49.177616502000049 ] ], [ [ -123.866887973999923, 49.165082796000064 ], [ -123.866893816999962, 49.164955396000032 ], [ -123.865228729999913, 49.164922402000094 ], [ -123.86523282, 49.165157165000068 ], [ -123.864821346999946, 49.165160247000117 ], [ -123.864825397999951, 49.165392869000058 ], [ -123.864945696999925, 49.165395254000074 ], [ -123.86492190499996, 49.165913498000087 ], [ -123.865207223999931, 49.165919154000044 ], [ -123.865247106999902, 49.165050282000038 ], [ -123.866887973999923, 49.165082796000064 ] ], [ [ -123.865065782999949, 49.164348822000072 ], [ -123.86508272899998, 49.163979666000031 ], [ -123.864258360999898, 49.163963320000086 ], [ -123.864252770999911, 49.164085043000085 ], [ -123.864802549999979, 49.164080927000057 ], [ -123.864807248999981, 49.164350758000054 ], [ -123.865065782999949, 49.164348822000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "409396789", "BldgCostT": "254342676", "sL_LossRatio": "0.761117170407809", "sL_AssetLoss": "2169302", "sL_BldgLoss": "1651093", "sL_StrLoss": "748707", "sL_NStrLoss": "902386", "sL_ContLoss": "518209", "geom_point": "0101000020E61000008485AD1BE7FD5EC02226A8E15B974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.962744688999962, 49.18225399500016 ], [ -123.962901612999971, 49.181957998 ], [ -123.963490893999989, 49.181961093000083 ], [ -123.964277894999967, 49.18208308700018 ], [ -123.964572805999964, 49.181452001000125 ], [ -123.96454932099999, 49.181364202000054 ], [ -123.964492081999964, 49.181324396000051 ], [ -123.963413985999949, 49.181058198000038 ], [ -123.963890610999954, 49.18022170299999 ], [ -123.96454280899998, 49.180323210000054 ], [ -123.964972583999952, 49.180306098000095 ], [ -123.96542560599994, 49.180228198000059 ], [ -123.965730208999986, 49.18012770900004 ], [ -123.966424094000033, 49.18087290500003 ], [ -123.96656429799998, 49.181024730000082 ], [ -123.966634799999909, 49.181101114000114 ], [ -123.966873807999946, 49.181247 ], [ -123.967206483, 49.181317205000063 ], [ -123.967482694999916, 49.181302590000072 ], [ -123.967717173, 49.181236800000171 ], [ -123.967914881999945, 49.181136891000037 ], [ -123.968458008999932, 49.18075279300006 ], [ -123.968705707999959, 49.180669199000079 ], [ -123.969041017999984, 49.180617905000055 ], [ -123.96917020099994, 49.180767111000101 ], [ -123.969692982999973, 49.181069597000047 ], [ -123.969807286999966, 49.181128678000029 ], [ -123.970703707999974, 49.181591995000048 ], [ -123.9709490799999, 49.181305579000124 ], [ -123.971401395000029, 49.180777589000122 ], [ -123.971597914999961, 49.180420191000074 ], [ -123.972576433999976, 49.180612439000058 ], [ -123.97250524899998, 49.183163182000058 ], [ -123.972400797999939, 49.183162006000053 ], [ -123.970854823999957, 49.183249903000039 ], [ -123.970373382, 49.183348891000016 ], [ -123.969679309999933, 49.183579008000081 ], [ -123.968518694999943, 49.184006406000037 ], [ -123.967730010999986, 49.184238308000019 ], [ -123.966989996999956, 49.184387285000099 ], [ -123.966056001999931, 49.184522789000042 ], [ -123.965288203999961, 49.184588384000079 ], [ -123.964610110999971, 49.184608895000046 ], [ -123.963918518999932, 49.184579983000056 ], [ -123.962780262999942, 49.184532389000054 ], [ -123.96264651599999, 49.184526800000057 ], [ -123.962649208999963, 49.184371900000016 ], [ -123.962665289999947, 49.183597805000041 ], [ -123.962680788999961, 49.182774203000072 ], [ -123.962744688999962, 49.18225399500016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193406243", "BldgCostT": "123189572", "sL_LossRatio": "0.693085041610597", "sL_AssetLoss": "1297506", "sL_BldgLoss": "899282", "sL_StrLoss": "424085", "sL_NStrLoss": "475197", "sL_ContLoss": "398224", "geom_point": "0101000020E61000002C4503C258FE5EC0C032C21D20974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.979919600999906, 49.183387843000105 ], [ -123.979653549999938, 49.183358538000036 ], [ -123.979194571, 49.183357000000129 ], [ -123.979139687999961, 49.183356850000038 ], [ -123.978777715999954, 49.183355622000128 ], [ -123.978436065999972, 49.183394233000101 ], [ -123.978280522999938, 49.183445087000109 ], [ -123.978188550999917, 49.183475143000088 ], [ -123.978032964999912, 49.183547953000065 ], [ -123.977591051999951, 49.183754767000096 ], [ -123.977216246999944, 49.18379906900001 ], [ -123.977025526999938, 49.183786615000102 ], [ -123.976651525999941, 49.183762184000109 ], [ -123.976364634, 49.183743442000058 ], [ -123.975570735999952, 49.183716779000065 ], [ -123.975029895999967, 49.183607585000047 ], [ -123.97451087899999, 49.183387711000115 ], [ -123.974255881999923, 49.183279695000074 ], [ -123.974006691999989, 49.183210195000115 ], [ -123.973713374999988, 49.183176797000044 ], [ -123.973441553, 49.183173740000079 ], [ -123.97250524899998, 49.183163182000058 ], [ -123.972576433999976, 49.180612439000058 ], [ -123.971597914999961, 49.180420191000074 ], [ -123.969068598999925, 49.179891686000076 ], [ -123.967876286999967, 49.179636889000093 ], [ -123.966698905999976, 49.17938510500008 ], [ -123.966640210999927, 49.179371381000074 ], [ -123.966464075999951, 49.179330196000073 ], [ -123.96656230499994, 49.178369506000088 ], [ -123.96801588799994, 49.177770233000075 ], [ -123.969093278999935, 49.177326057000059 ], [ -123.969130230999966, 49.17732753500006 ], [ -123.969378082999967, 49.177337452000089 ], [ -123.969398069999926, 49.17733826000012 ], [ -123.969508888999925, 49.177342708000076 ], [ -123.969609969999951, 49.177343575000108 ], [ -123.971964197999938, 49.177363690000064 ], [ -123.972240613999972, 49.177406693000066 ], [ -123.972503401000012, 49.177508909000125 ], [ -123.973422833999905, 49.178115076000047 ], [ -123.974383527999962, 49.178620355000092 ], [ -123.976227430999955, 49.179558179000061 ], [ -123.976344906999941, 49.179692768000059 ], [ -123.978080876999982, 49.180592501000042 ], [ -123.978091791999972, 49.180598063000026 ], [ -123.97834257699995, 49.180726010000114 ], [ -123.97906121699998, 49.181092689000124 ], [ -123.979464405999977, 49.181340604000084 ], [ -123.980377181999955, 49.182100701000103 ], [ -123.98060851, 49.182297705000074 ], [ -123.982449894999903, 49.183836886000051 ], [ -123.981933622999961, 49.184045111000088 ], [ -123.981743824999981, 49.184091109000114 ], [ -123.98158562699993, 49.184103422000113 ], [ -123.981321292999951, 49.184097582000042 ], [ -123.981121273999975, 49.184063214000012 ], [ -123.98078532199996, 49.183907427000101 ], [ -123.980502659999956, 49.183663630000055 ], [ -123.980424589999942, 49.183596331000075 ], [ -123.98021719499998, 49.183479862000176 ], [ -123.979919600999906, 49.183387843000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248842835", "BldgCostT": "157248335", "sL_LossRatio": "0.662436221984983", "sL_AssetLoss": "3360876", "sL_BldgLoss": "2226366", "sL_StrLoss": "1072742", "sL_NStrLoss": "1153624", "sL_ContLoss": "1134510", "geom_point": "0101000020E61000003A13A00190FE5EC03A68BF20AF964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.972240613999972, 49.177406693000066 ], [ -123.971964197999938, 49.177363690000064 ], [ -123.969609969999951, 49.177343575000108 ], [ -123.969508888999925, 49.177342708000076 ], [ -123.969398069999926, 49.17733826000012 ], [ -123.969378082999967, 49.177337452000089 ], [ -123.969130230999966, 49.17732753500006 ], [ -123.969093278999935, 49.177326057000059 ], [ -123.968889253999947, 49.176242472000041 ], [ -123.968855422000019, 49.176062705000028 ], [ -123.968946806999924, 49.175792091000091 ], [ -123.969298489999943, 49.175460211000036 ], [ -123.969714993999986, 49.175067199000054 ], [ -123.96975377099993, 49.174706087000047 ], [ -123.969851983999945, 49.173791056000063 ], [ -123.969877511999982, 49.173553194000071 ], [ -123.969924223999953, 49.173515507000047 ], [ -123.969934477999985, 49.17404033300005 ], [ -123.972811923999984, 49.174016129000073 ], [ -123.972825527999959, 49.173704062000112 ], [ -123.973679125999979, 49.173720123000038 ], [ -123.973821891999961, 49.173845209000021 ], [ -123.974262704999944, 49.17395770100007 ], [ -123.975057905999932, 49.173906411000068 ], [ -123.975925779999955, 49.174097300000085 ], [ -123.976252691, 49.174030293000058 ], [ -123.976480708999958, 49.173803909000092 ], [ -123.97659222899992, 49.17379032100007 ], [ -123.976632598999984, 49.17378538800007 ], [ -123.976866412999954, 49.173882194000065 ], [ -123.977426009999988, 49.173678595000119 ], [ -123.978215186999961, 49.174085904000087 ], [ -123.978396596999971, 49.174119570000123 ], [ -123.978683293999978, 49.174172805000111 ], [ -123.9791355, 49.17409590000009 ], [ -123.979649881999961, 49.173749791000013 ], [ -123.980007011999959, 49.173738407000037 ], [ -123.980344782999978, 49.17379254500004 ], [ -123.980433089999963, 49.173806691000046 ], [ -123.980546305999937, 49.174003293000048 ], [ -123.981187121999952, 49.174466200000083 ], [ -123.981864292999944, 49.174666996000049 ], [ -123.982701287999987, 49.174705393000046 ], [ -123.983185572999929, 49.17478832700003 ], [ -123.983200010999937, 49.174826127000067 ], [ -123.983542095999937, 49.175721516000081 ], [ -123.983731475999917, 49.176046644000117 ], [ -123.985259077999928, 49.178669035000098 ], [ -123.985870294999984, 49.179718200000131 ], [ -123.985485891999971, 49.17973350900013 ], [ -123.984893490999966, 49.179833205000122 ], [ -123.98437182699999, 49.179941282000073 ], [ -123.98377286799996, 49.180065350000056 ], [ -123.983609997999963, 49.180099103000025 ], [ -123.983417025999969, 49.180119795000117 ], [ -123.982751986999972, 49.18019110300007 ], [ -123.98274508799993, 49.180981591000069 ], [ -123.981682794999955, 49.180980598000062 ], [ -123.98144895199999, 49.181179059000108 ], [ -123.980823206999958, 49.181710112000083 ], [ -123.980481498999936, 49.182003603000098 ], [ -123.980377181999955, 49.182100701000103 ], [ -123.979464405999977, 49.181340604000084 ], [ -123.97906121699998, 49.181092689000124 ], [ -123.97834257699995, 49.180726010000114 ], [ -123.978091791999972, 49.180598063000026 ], [ -123.978080876999982, 49.180592501000042 ], [ -123.976344906999941, 49.179692768000059 ], [ -123.976227430999955, 49.179558179000061 ], [ -123.974383527999962, 49.178620355000092 ], [ -123.973422833999905, 49.178115076000047 ], [ -123.972503401000012, 49.177508909000125 ], [ -123.972240613999972, 49.177406693000066 ] ], [ [ -123.981109890999903, 49.177184315000012 ], [ -123.983997842999941, 49.177159743000061 ], [ -123.982055878999958, 49.177123384000012 ], [ -123.982147311999967, 49.175016569000078 ], [ -123.981890309999983, 49.175018754000057 ], [ -123.981895646999973, 49.175288575000074 ], [ -123.979837925999931, 49.175306055000121 ], [ -123.979827272999913, 49.174766413000022 ], [ -123.978592654999929, 49.174776881000106 ], [ -123.978587333999926, 49.174507061000085 ], [ -123.978272696999937, 49.174509727000085 ], [ -123.978167049999982, 49.176939415000064 ], [ -123.979458326999975, 49.176928469000067 ], [ -123.979463652, 49.17719829 ], [ -123.980286771999914, 49.177191305000058 ], [ -123.980292099999929, 49.177461126000061 ], [ -123.981115224999954, 49.177454136000065 ], [ -123.981109890999903, 49.177184315000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.845417236662107", "sL_AssetLoss": "3655", "sL_BldgLoss": "3090", "sL_StrLoss": "1800", "sL_NStrLoss": "1290", "sL_ContLoss": "565", "geom_point": "0101000020E61000002D488ECF7FFF5EC02C58B27CC0974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.992365444, 49.185734769000078 ], [ -123.991446787999962, 49.185421386000073 ], [ -123.990932688999962, 49.185196414000139 ], [ -123.991560579999984, 49.18519102600002 ], [ -123.991565971999975, 49.185460844000012 ], [ -123.992389226999961, 49.185453773000063 ], [ -123.992394621999907, 49.185723592000087 ], [ -123.99321788099995, 49.185716514000021 ], [ -123.993222685999939, 49.185956549000139 ], [ -123.992365444, 49.185734769000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "264114084", "BldgCostT": "170888334", "sL_LossRatio": "0.812835438420508", "sL_AssetLoss": "1271451.7", "sL_BldgLoss": "1033481", "sL_StrLoss": "654535", "sL_NStrLoss": "378946", "sL_ContLoss": "237970.7", "geom_point": "0101000020E61000007EE184F876FF5EC02F2780E69C964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.999314425999913, 49.187417503000113 ], [ -123.99584804599999, 49.186517281000071 ], [ -123.994317882999908, 49.186193826000093 ], [ -123.994234331999976, 49.186176164000102 ], [ -123.998848021999919, 49.186261950000066 ], [ -123.998854550999951, 49.186110274000093 ], [ -123.998338247999982, 49.186100685000092 ], [ -123.998338541999942, 49.186093845000109 ], [ -123.997650822999958, 49.186081067000082 ], [ -123.997655588999933, 49.185970433000129 ], [ -123.997210213999921, 49.185962155000034 ], [ -123.997219296, 49.185751352000104 ], [ -123.996740109999948, 49.185742444000049 ], [ -123.996800788999934, 49.184334309000128 ], [ -123.995903664999943, 49.184317626000038 ], [ -123.995917123, 49.184005421000101 ], [ -123.995201557999977, 49.183992109000044 ], [ -123.995213674999931, 49.183711152000043 ], [ -123.993081296999932, 49.183671453000031 ], [ -123.993083262999946, 49.183625904000017 ], [ -123.991387836999976, 49.183594309000092 ], [ -123.991423714999911, 49.182763935000033 ], [ -123.988556185, 49.1827104380001 ], [ -123.988587415999945, 49.181988614000041 ], [ -123.988116911999938, 49.181979829000056 ], [ -123.988122299999972, 49.181855334000026 ], [ -123.98791582099993, 49.181851478000056 ], [ -123.987879251000024, 49.182696437000118 ], [ -123.987805634000011, 49.182695062000064 ], [ -123.987810029999977, 49.182915924000042 ], [ -123.987785355999932, 49.182884700000045 ], [ -123.987504571999935, 49.182529370000047 ], [ -123.986831452999979, 49.181421824000054 ], [ -123.986046131999956, 49.180026746000117 ], [ -123.985975533999977, 49.179902900000094 ], [ -123.985870294999984, 49.179718200000131 ], [ -123.985259077999928, 49.178669035000098 ], [ -123.983731475999917, 49.176046644000117 ], [ -123.983542095999937, 49.175721516000081 ], [ -123.983200010999937, 49.174826127000067 ], [ -123.983185572999929, 49.17478832700003 ], [ -123.983423703999975, 49.174829102000075 ], [ -123.98338957599999, 49.174750676000059 ], [ -123.98300665899994, 49.173539275000053 ], [ -123.983097259999965, 49.173540972000076 ], [ -123.983098180999932, 49.173519762000097 ], [ -123.98299991099999, 49.17351792200008 ], [ -123.982928016999963, 49.173290473000115 ], [ -123.982844273999902, 49.172868441000048 ], [ -123.982646863999918, 49.171873236000039 ], [ -123.982447548999929, 49.170281928000094 ], [ -123.982393403999978, 49.169849620000036 ], [ -123.982297239999951, 49.169192242000101 ], [ -123.982190189999955, 49.168753497000111 ], [ -123.98305230699999, 49.168791700000078 ], [ -123.983352795999963, 49.168804989000108 ], [ -123.986015322999918, 49.169030407000072 ], [ -123.988439643, 49.169283483000065 ], [ -123.988453209999975, 49.169284909000055 ], [ -123.98859248199993, 49.170249192000085 ], [ -123.988906706999927, 49.170238891000089 ], [ -123.98908388699999, 49.170207594000047 ], [ -123.989097126000033, 49.170205233000104 ], [ -123.98922019199992, 49.170183504000093 ], [ -123.98935520199997, 49.170134710000099 ], [ -123.98997496099993, 49.169872298000058 ], [ -123.990206756999953, 49.169774170000032 ], [ -123.99182489399999, 49.170224908000058 ], [ -123.99450678, 49.170973921000062 ], [ -123.995034202999946, 49.171121197000033 ], [ -123.995926018999967, 49.171360816000067 ], [ -123.998455097999951, 49.172040299000052 ], [ -123.998886877999922, 49.172101914000066 ], [ -123.999013609999963, 49.172120003000082 ], [ -123.999490193999961, 49.172126210000044 ], [ -123.999487478999981, 49.172410628000065 ], [ -123.999486008999924, 49.172563513000057 ], [ -123.999483958999917, 49.172779507000108 ], [ -123.999473291999962, 49.173888998000081 ], [ -123.999457115999931, 49.175603208000084 ], [ -123.999446174999946, 49.176589893000084 ], [ -123.999454383999989, 49.177178736000016 ], [ -123.999459577999929, 49.177553596000102 ], [ -123.999443547999988, 49.178249586000078 ], [ -123.999397792999943, 49.180230489000067 ], [ -123.99938631099991, 49.180235416000095 ], [ -123.998837104999964, 49.180470992000046 ], [ -123.998171346999953, 49.180756516000095 ], [ -123.997945003999988, 49.180853586000097 ], [ -123.99776006899999, 49.180932912000067 ], [ -123.99661873399999, 49.181422379000054 ], [ -123.996797821999962, 49.18156078100003 ], [ -123.997253559999976, 49.181798483000065 ], [ -123.997395755999932, 49.181872643000126 ], [ -123.99901838199996, 49.18249762500006 ], [ -123.99946154099996, 49.18266832000004 ], [ -123.999255711, 49.184425690000118 ], [ -123.999320550999983, 49.186760523000025 ], [ -123.999104035999949, 49.186756503 ], [ -123.99912223299999, 49.18633374300007 ], [ -123.99897186, 49.186330950000048 ], [ -123.998947289999947, 49.186901721000012 ], [ -123.999324664999932, 49.18690872800002 ], [ -123.999326837999959, 49.186986948000069 ], [ -123.999321331999951, 49.18717893700012 ], [ -123.999314425999913, 49.187417503000113 ] ], [ [ -123.998748969999895, 49.180456204000066 ], [ -123.998750350999927, 49.180424106000032 ], [ -123.998704455999984, 49.180423254000083 ], [ -123.998703074999952, 49.180455351000091 ], [ -123.998748969999895, 49.180456204000066 ] ], [ [ -123.992830244999979, 49.177170253000035 ], [ -123.992867049999987, 49.176317671000113 ], [ -123.98915451000002, 49.176248434000051 ], [ -123.98914923699999, 49.176370341000045 ], [ -123.989780174, 49.176382117000017 ], [ -123.989775896999959, 49.176481059000018 ], [ -123.990490854999948, 49.17649439900007 ], [ -123.990463552999955, 49.177126130000097 ], [ -123.992830244999979, 49.177170253000035 ] ], [ [ -123.99707904199991, 49.174850433000138 ], [ -123.997105684999951, 49.174231919000086 ], [ -123.995569464999932, 49.174203344000055 ], [ -123.995585901999959, 49.173822025000085 ], [ -123.995578972999965, 49.173822085000033 ], [ -123.995577038999926, 49.173828762000056 ], [ -123.995310338999957, 49.174064863000069 ], [ -123.99523663899997, 49.174068463000083 ], [ -123.994692539999988, 49.173892663000089 ], [ -123.994413051999942, 49.173832131000076 ], [ -123.994023757999926, 49.173835483000076 ], [ -123.993937075999938, 49.175844698000034 ], [ -123.995113721999971, 49.175866604000078 ], [ -123.99515907599995, 49.174814717000082 ], [ -123.99707904199991, 49.174850433000138 ] ], [ [ -123.987560052, 49.170353657000121 ], [ -123.987555261999916, 49.170112856000053 ], [ -123.987966761999957, 49.170109336000046 ], [ -123.987961391999988, 49.169839515000078 ], [ -123.987549893999955, 49.169843035000099 ], [ -123.987545364999932, 49.169615244000077 ], [ -123.98737828299997, 49.16960120300007 ], [ -123.987344380999915, 49.170384525 ], [ -123.987461836999969, 49.170383521000119 ], [ -123.987560629999933, 49.170382676000074 ], [ -123.987560052, 49.170353657000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418964046", "BldgCostT": "261941429", "sL_LossRatio": "0.695647388346891", "sL_AssetLoss": "1486353.6", "sL_BldgLoss": "1033978", "sL_StrLoss": "482785", "sL_NStrLoss": "551193", "sL_ContLoss": "452375.6", "geom_point": "0101000020E6100000F16A66EB68FF5EC07B92DF68E8974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.992022001999914, 49.191939703000109 ], [ -123.990852799999971, 49.191075097000095 ], [ -123.990485096999933, 49.19076480300005 ], [ -123.989972585999936, 49.190251901000089 ], [ -123.989939333999956, 49.190227200000059 ], [ -123.990039412999963, 49.190132503000051 ], [ -123.990180705999961, 49.190068496000087 ], [ -123.990829883999979, 49.190083311000137 ], [ -123.9908398099999, 49.189251398000081 ], [ -123.990842960999913, 49.188956250000082 ], [ -123.990849277000024, 49.188365599000043 ], [ -123.988775723999979, 49.188382695000094 ], [ -123.988167102999952, 49.18818949399999 ], [ -123.987887888999978, 49.18814640100004 ], [ -123.987353991999953, 49.188223789000048 ], [ -123.98733194899999, 49.188227253000029 ], [ -123.987174486999962, 49.18825199400009 ], [ -123.986517989999982, 49.187711110000109 ], [ -123.985525191999898, 49.187083895000079 ], [ -123.985274799999942, 49.18692668900006 ], [ -123.985008524999969, 49.186759521000099 ], [ -123.984989991999953, 49.186747906000086 ], [ -123.9849705929999, 49.186730378000036 ], [ -123.984524467999947, 49.186327660000131 ], [ -123.984516296, 49.186320309000045 ], [ -123.984404036999962, 49.186175332000047 ], [ -123.984155422999947, 49.185854305000113 ], [ -123.983899380999986, 49.185437094000058 ], [ -123.983660083999936, 49.185050684 ], [ -123.983527830999961, 49.184837077000054 ], [ -123.983479108, 49.184758409000061 ], [ -123.983400439999926, 49.184677286000046 ], [ -123.983161592999977, 49.184431008000061 ], [ -123.982449894999903, 49.183836886000051 ], [ -123.98060851, 49.182297705000074 ], [ -123.980377181999955, 49.182100701000103 ], [ -123.980481498999936, 49.182003603000098 ], [ -123.980823206999958, 49.181710112000083 ], [ -123.98144895199999, 49.181179059000108 ], [ -123.981682794999955, 49.180980598000062 ], [ -123.98274508799993, 49.180981591000069 ], [ -123.982751986999972, 49.18019110300007 ], [ -123.983417025999969, 49.180119795000117 ], [ -123.983609997999963, 49.180099103000025 ], [ -123.98377286799996, 49.180065350000056 ], [ -123.98437182699999, 49.179941282000073 ], [ -123.984893490999966, 49.179833205000122 ], [ -123.985485891999971, 49.17973350900013 ], [ -123.985870294999984, 49.179718200000131 ], [ -123.985975533999977, 49.179902900000094 ], [ -123.986046131999956, 49.180026746000117 ], [ -123.986831452999979, 49.181421824000054 ], [ -123.987504571999935, 49.182529370000047 ], [ -123.987785355999932, 49.182884700000045 ], [ -123.987810029999977, 49.182915924000042 ], [ -123.987812980999976, 49.183064218000034 ], [ -123.987926440999928, 49.183063247000099 ], [ -123.987964614999925, 49.183111558000064 ], [ -123.988231047999989, 49.183385058000056 ], [ -123.988235334999928, 49.183600336000069 ], [ -123.988439020999934, 49.183598593000042 ], [ -123.988496183, 49.183657283000073 ], [ -123.988650626999942, 49.183781467000095 ], [ -123.988652324999947, 49.183866632000026 ], [ -123.988755446999974, 49.183865749000049 ], [ -123.989069015999974, 49.184117877000091 ], [ -123.989069315000023, 49.184132927000036 ], [ -123.989087539999971, 49.184132770000069 ], [ -123.989169176999951, 49.184198412000072 ], [ -123.989828616999958, 49.184641137000035 ], [ -123.990319713999952, 49.184901461000074 ], [ -123.990320319999952, 49.184931802000023 ], [ -123.990376052999977, 49.184931325000058 ], [ -123.990608577999978, 49.185054580000013 ], [ -123.990735574000027, 49.185110156000057 ], [ -123.990737329999916, 49.18519809000005 ], [ -123.990932688999962, 49.185196414000139 ], [ -123.991446787999962, 49.185421386000073 ], [ -123.992365444, 49.185734769000078 ], [ -123.993222685999939, 49.185956549000139 ], [ -123.99322328199996, 49.185986334000084 ], [ -123.993334127999944, 49.185985380000048 ], [ -123.993344314999888, 49.185988016000117 ], [ -123.994049705999942, 49.18613713500006 ], [ -123.994050418999976, 49.186172740000124 ], [ -123.994234331999976, 49.186176164000102 ], [ -123.994317882999908, 49.186193826000093 ], [ -123.99584804599999, 49.186517281000071 ], [ -123.999314425999913, 49.187417503000113 ], [ -123.999362171999962, 49.187429896000118 ], [ -123.999675238999941, 49.187532725000068 ], [ -123.999996052999933, 49.18763809100011 ], [ -123.999998601999934, 49.187638930000055 ], [ -123.999996421999938, 49.187689627000111 ], [ -124.000026174999945, 49.1876901790001 ], [ -123.999957027999926, 49.189297269000058 ], [ -124.000130068999951, 49.189300481000075 ], [ -124.000053919999971, 49.191070335000049 ], [ -124.00000995299996, 49.192092142000035 ], [ -123.999816984999981, 49.192092970000061 ], [ -123.997026845999955, 49.192091344000119 ], [ -123.996591179999911, 49.192018446000162 ], [ -123.995519522000023, 49.192014433000111 ], [ -123.99409225, 49.192009054000039 ], [ -123.992651117999955, 49.192003591000123 ], [ -123.992220866999986, 49.192001953000059 ], [ -123.992143191, 49.192002279000071 ], [ -123.992063184999949, 49.19200260000013 ], [ -123.992022001999914, 49.191939703000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8032744", "BldgCostT": "4564076", "sL_LossRatio": "0.71983827408121", "sL_AssetLoss": "31658.5", "sL_BldgLoss": "22789", "sL_StrLoss": "10460", "sL_NStrLoss": "12329", "sL_ContLoss": "8869.5", "geom_point": "0101000020E61000001ECB926B50005FC08DA72F9548984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.006425573999977, 49.190696783000135 ], [ -124.006442221000029, 49.19030864000004 ], [ -124.005091848999882, 49.190283650000111 ], [ -124.005115985999936, 49.18972125800007 ], [ -124.003563828, 49.189692511000075 ], [ -124.00358565499999, 49.189184282000042 ], [ -124.003084740999952, 49.189175001000109 ], [ -124.003102095999978, 49.18877102400004 ], [ -124.002328336999938, 49.188756682000076 ], [ -124.002337103999963, 49.188552700000074 ], [ -124.002342640999984, 49.188423856000071 ], [ -124.002423431999915, 49.1884519810001 ], [ -124.003494824999947, 49.188883345000121 ], [ -124.005187334999931, 49.189579460000061 ], [ -124.005216576999899, 49.189591482000061 ], [ -124.005509895999964, 49.18972344000013 ], [ -124.007087423999934, 49.190433092000013 ], [ -124.007485676999949, 49.190612237000025 ], [ -124.007744835000011, 49.190721182000082 ], [ -124.006425573999977, 49.190696783000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84952834", "BldgCostT": "56853334", "sL_LossRatio": "0.877758427295704", "sL_AssetLoss": "262640.6", "sL_BldgLoss": "230535", "sL_StrLoss": "167933", "sL_NStrLoss": "62602", "sL_ContLoss": "32105.6", "geom_point": "0101000020E610000045BCC84658155FC020AEA42EFCA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.328834255999936, 49.325623993000065 ], [ -124.330106881999967, 49.325259706000068 ], [ -124.331897794999946, 49.325780068 ], [ -124.3324948899999, 49.325953542000036 ], [ -124.33348420399993, 49.326240949000081 ], [ -124.333630955999979, 49.326283581000034 ], [ -124.334880855999941, 49.326646271000108 ], [ -124.335173964999953, 49.326731324000072 ], [ -124.336142756999919, 49.327051404000052 ], [ -124.337127729999963, 49.327458100000094 ], [ -124.337517530999975, 49.327620082000095 ], [ -124.337619957999934, 49.327662662000087 ], [ -124.337730558999979, 49.327708619000134 ], [ -124.337607686999974, 49.328106394000017 ], [ -124.33757225, 49.328365681000044 ], [ -124.337570403999948, 49.328379477000055 ], [ -124.337590285999937, 49.328591304000021 ], [ -124.337842383999956, 49.329114573000048 ], [ -124.337843978999942, 49.329152286000095 ], [ -124.33785249399989, 49.329350055000077 ], [ -124.337859617999982, 49.329515404000112 ], [ -124.337833857999954, 49.330118116000087 ], [ -124.336541510999936, 49.330139610000082 ], [ -124.335812507999975, 49.330151758000099 ], [ -124.335105591999962, 49.330163512000041 ], [ -124.334658772999916, 49.330163799000083 ], [ -124.333338700999917, 49.330165000000164 ], [ -124.331945014000027, 49.330150702000076 ], [ -124.331232877999966, 49.329233011000035 ], [ -124.330977900999969, 49.328904403000109 ], [ -124.330641086999947, 49.328375948 ], [ -124.330639519999963, 49.328373484000096 ], [ -124.329970018999958, 49.327440360000097 ], [ -124.329679955999936, 49.327036011000146 ], [ -124.329382166999963, 49.326620901000112 ], [ -124.328937318999962, 49.326000810000068 ], [ -124.328695496999941, 49.325663712000072 ], [ -124.328834255999936, 49.325623993000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "291006999", "BldgCostT": "198909999", "sL_LossRatio": "0.890397200131134", "sL_AssetLoss": "589810.48", "sL_BldgLoss": "525165.6", "sL_StrLoss": "398553.8", "sL_NStrLoss": "126611.8", "sL_ContLoss": "64644.88", "geom_point": "0101000020E6100000935FEDC5E3155FC00D81F9B78DA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.34053693499996, 49.328425380000098 ], [ -124.340524149999936, 49.328422041000053 ], [ -124.340241063999926, 49.328749052000092 ], [ -124.339512895999974, 49.32844680300007 ], [ -124.338945949999953, 49.328211456000126 ], [ -124.338428318999902, 49.327996589000065 ], [ -124.337730558999979, 49.327708619000134 ], [ -124.337909681999989, 49.32723789500006 ], [ -124.337945253999976, 49.327013406000049 ], [ -124.337784171999914, 49.326635574000072 ], [ -124.337784422999945, 49.326514049000117 ], [ -124.337787078999924, 49.326133330000069 ], [ -124.337791064999976, 49.325485264000051 ], [ -124.337795086999904, 49.325144200000089 ], [ -124.337800695999974, 49.324719391000023 ], [ -124.337803284999907, 49.324262108000042 ], [ -124.337809287999974, 49.323701574000069 ], [ -124.337810298, 49.323607838000029 ], [ -124.33781819699999, 49.322812209000098 ], [ -124.33782591399995, 49.322022898000057 ], [ -124.337834194999914, 49.321177812 ], [ -124.337839397999957, 49.320650417000117 ], [ -124.337845983999941, 49.319889798000105 ], [ -124.343374584999964, 49.319863995000041 ], [ -124.343373195999902, 49.320670509000102 ], [ -124.343385680999944, 49.321100413000067 ], [ -124.343389320999961, 49.321226296000063 ], [ -124.343407604999982, 49.321855764000077 ], [ -124.343410084, 49.321940766000054 ], [ -124.343731118999969, 49.322030451000103 ], [ -124.344394355999938, 49.322079739000067 ], [ -124.34443499199989, 49.323572119000083 ], [ -124.344847716999979, 49.323567316000073 ], [ -124.344865091999964, 49.324205218000046 ], [ -124.345791949999921, 49.324219406000054 ], [ -124.345802853999942, 49.323913916000045 ], [ -124.347279096999927, 49.323936497000048 ], [ -124.348621106999985, 49.325358895000086 ], [ -124.348649233999978, 49.325840356000121 ], [ -124.348741314999984, 49.326107137000072 ], [ -124.348618985999977, 49.32651089900007 ], [ -124.348088407999981, 49.326530995000127 ], [ -124.346513360999964, 49.326635952000103 ], [ -124.346482645, 49.326917474000055 ], [ -124.346400013999954, 49.327037743000091 ], [ -124.344946632999964, 49.328261051000055 ], [ -124.344912855999922, 49.328289485000013 ], [ -124.344887520999961, 49.328310820000119 ], [ -124.344629188999974, 49.32857510400008 ], [ -124.344529558999966, 49.32870586600005 ], [ -124.344414243999964, 49.328857172000028 ], [ -124.344340204000019, 49.329082848000034 ], [ -124.342203971999965, 49.328839493000011 ], [ -124.342057404999963, 49.328823744000019 ], [ -124.340977202999966, 49.328540728000057 ], [ -124.34053693499996, 49.328425380000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13231250", "BldgCostT": "9125000", "sL_LossRatio": "0.843247928196818", "sL_AssetLoss": "65534.7", "sL_BldgLoss": "55262", "sL_StrLoss": "34352", "sL_NStrLoss": "20910", "sL_ContLoss": "10272.7", "geom_point": "0101000020E6100000D2B7EDF7DBF85EC0724B8A1388904840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.890474572999949, 49.133015911 ], [ -123.890480604999965, 49.132882817000073 ], [ -123.88949438399996, 49.13286348000004 ], [ -123.889518908999932, 49.132322639000066 ], [ -123.88876049000001, 49.132307762000103 ], [ -123.888796557, 49.13151266000007 ], [ -123.88809771499993, 49.131498947000047 ], [ -123.88812084199995, 49.130989225000043 ], [ -123.886535887999912, 49.130958107000076 ], [ -123.886569834999946, 49.130210496000153 ], [ -123.886234122999966, 49.130203902000112 ], [ -123.886275157999933, 49.129300277000027 ], [ -123.88527264199999, 49.129280579000074 ], [ -123.88533126499999, 49.127990233000048 ], [ -123.884065576999944, 49.12796535100005 ], [ -123.88422917299999, 49.12436623500006 ], [ -123.886311195999895, 49.124407157000078 ], [ -123.887368403999943, 49.125958191000038 ], [ -123.887781200999939, 49.126503733000071 ], [ -123.887876597999977, 49.126629820000048 ], [ -123.888430295999953, 49.127361509000082 ], [ -123.888836698999953, 49.12778820700003 ], [ -123.889631285999954, 49.12850361200001 ], [ -123.889963993999956, 49.128745993000074 ], [ -123.8924386, 49.130251685000118 ], [ -123.892653523000021, 49.130434201000114 ], [ -123.893801391999943, 49.131818306000092 ], [ -123.894009075999975, 49.132160093000032 ], [ -123.89405879499999, 49.132332196000078 ], [ -123.89404499699999, 49.132578704000132 ], [ -123.893601006999958, 49.132574130000108 ], [ -123.893566889999988, 49.132916461000043 ], [ -123.890474572999949, 49.133015911 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.820276497695853", "sL_AssetLoss": "4340", "sL_BldgLoss": "3560", "sL_StrLoss": "1940", "sL_NStrLoss": "1620", "sL_ContLoss": "780", "geom_point": "0101000020E61000007E999C987DF85EC00C7E550DC68F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.879927099999961, 49.123364855000034 ], [ -123.87994423899994, 49.122988521000075 ], [ -123.885415574, 49.1231008150001 ], [ -123.885398688999942, 49.123472535000097 ], [ -123.879927099999961, 49.123364855000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26249833", "BldgCostT": "18103333", "sL_LossRatio": "0.819873872892206", "sL_AssetLoss": "146836", "sL_BldgLoss": "120387", "sL_StrLoss": "67347", "sL_NStrLoss": "53040", "sL_ContLoss": "26449", "geom_point": "0101000020E6100000EE2E2F44B7F75EC0435FAC35B58F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.864180398999963, 49.124018652000096 ], [ -123.86418590699999, 49.123613796000122 ], [ -123.864244797999945, 49.122967223000067 ], [ -123.864268688999985, 49.122704998000117 ], [ -123.864181693999981, 49.120274295000073 ], [ -123.86403499499994, 49.119591498000027 ], [ -123.86404478899999, 49.119378198000085 ], [ -123.864194002, 49.119170403000105 ], [ -123.86515164299999, 49.119211701000033 ], [ -123.86520269199994, 49.119206698000028 ], [ -123.865675051999958, 49.119222490000027 ], [ -123.866521694999932, 49.119250797000092 ], [ -123.866596397999984, 49.119273952000036 ], [ -123.871852254000018, 49.119500291000087 ], [ -123.872714575999979, 49.11950882499999 ], [ -123.872695724999986, 49.11992139900012 ], [ -123.873252831999963, 49.119932414000161 ], [ -123.873244273999958, 49.120119761000083 ], [ -123.873753919999899, 49.120129834000039 ], [ -123.873781493999957, 49.119526067000038 ], [ -123.877889789999969, 49.119594736000067 ], [ -123.877957620999936, 49.122071437000081 ], [ -123.877169375999969, 49.122055887000101 ], [ -123.877186700999943, 49.121675936 ], [ -123.876727583000019, 49.121666875000081 ], [ -123.876742319999934, 49.121343757000098 ], [ -123.876328793999946, 49.121335594000051 ], [ -123.876217241999939, 49.12378086000006 ], [ -123.876161094999958, 49.123779751000065 ], [ -123.876090224999956, 49.125333059000056 ], [ -123.875223180999924, 49.12531593900011 ], [ -123.875167076999929, 49.126545051000036 ], [ -123.868774797999919, 49.126638553000149 ], [ -123.864207896999957, 49.124759359000102 ], [ -123.864174308999964, 49.124464615000129 ], [ -123.864175588999927, 49.124369538000032 ], [ -123.86417959399995, 49.124077619000033 ], [ -123.864180398999963, 49.124018652000096 ] ], [ [ -123.870141481999966, 49.123757502000082 ], [ -123.870147447999926, 49.123627095000082 ], [ -123.869530586999971, 49.123614881999984 ], [ -123.869524618999932, 49.123745288000116 ], [ -123.870141481999966, 49.123757502000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43910833", "BldgCostT": "30283333", "sL_LossRatio": "0.995956156350763", "sL_AssetLoss": "12686.04438", "sL_BldgLoss": "12634.744", "sL_StrLoss": "12281.104", "sL_NStrLoss": "353.64", "sL_ContLoss": "51.30038", "geom_point": "0101000020E6100000BF670BA5C2615FC011D4746650784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.524808615999987, 48.944161492000077 ], [ -125.524666283999949, 48.9440576000001 ], [ -125.52318289099999, 48.943648790000033 ], [ -125.522915806999961, 48.943502108000068 ], [ -125.522871627999947, 48.943471 ], [ -125.523937888999967, 48.943475741000043 ], [ -125.523941671999978, 48.943104253000051 ], [ -125.529299136999953, 48.943127916000059 ], [ -125.529314497999962, 48.941601940000119 ], [ -125.528222765999928, 48.941597141000109 ], [ -125.528223843999953, 48.94149024299999 ], [ -125.523336385, 48.941468616000058 ], [ -125.523354635999937, 48.939678118000046 ], [ -125.523151784, 48.939677216000064 ], [ -125.523151798999962, 48.939675734000012 ], [ -125.522718367, 48.939673805000076 ], [ -125.522719522999921, 48.939560480000083 ], [ -125.521915046999965, 48.939556894000042 ], [ -125.521664934999961, 48.935953912000038 ], [ -125.521671487999924, 48.935953941000015 ], [ -125.52168176, 48.93494988200009 ], [ -125.522287698999975, 48.93509360900002 ], [ -125.522836179999956, 48.935154799000088 ], [ -125.523380904999897, 48.935358499000088 ], [ -125.523762893999944, 48.935656106000089 ], [ -125.524447417999951, 48.935686095000079 ], [ -125.525143815999968, 48.935922496000074 ], [ -125.525831404999977, 48.935745894000057 ], [ -125.52610829799994, 48.935550808000073 ], [ -125.526013913999961, 48.93505800500003 ], [ -125.526295383000019, 48.934943991000075 ], [ -125.526258482999935, 48.934755992000127 ], [ -125.526743507999981, 48.934879994000049 ], [ -125.528057480999976, 48.935481000000131 ], [ -125.528202513999972, 48.935648999000065 ], [ -125.528100783999903, 48.93580430500004 ], [ -125.52753239099998, 48.935915390000126 ], [ -125.527482898999963, 48.935996501000027 ], [ -125.528114203999962, 48.936621796000054 ], [ -125.52841670399998, 48.93747058600006 ], [ -125.529313413999958, 48.937640093 ], [ -125.529651200999936, 48.937595902000055 ], [ -125.529856576, 48.93733099500011 ], [ -125.530089425999932, 48.937325304000098 ], [ -125.530285787999958, 48.93742930900008 ], [ -125.530566497999985, 48.937836586000024 ], [ -125.530425305999955, 48.938299495000116 ], [ -125.530533502999944, 48.938565786000083 ], [ -125.53043089499999, 48.938956009000059 ], [ -125.530582907999985, 48.939528608000046 ], [ -125.53098350199997, 48.93990600800003 ], [ -125.53144588899994, 48.94013809900008 ], [ -125.532299499999979, 48.940786200000105 ], [ -125.533245099999988, 48.941133685000054 ], [ -125.53375630799998, 48.942067883000114 ], [ -125.535197681999946, 48.943825392000065 ], [ -125.536103033999964, 48.944211815000081 ], [ -125.534772142999941, 48.94419280400006 ], [ -125.524780892, 48.944210107000082 ], [ -125.524808615999987, 48.944161492000077 ] ], [ [ -125.530005392999939, 48.943843103000063 ], [ -125.530008813999984, 48.943502793000071 ], [ -125.529390736999972, 48.943500081000117 ], [ -125.529387312, 48.943840391000094 ], [ -125.530005392999939, 48.943843103000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33397083", "BldgCostT": "21558333", "sL_LossRatio": "0.999212088394919", "sL_AssetLoss": "5112.2486", "sL_BldgLoss": "5108.2206", "sL_StrLoss": "5088.5208", "sL_NStrLoss": "19.6998", "sL_ContLoss": "4.028", "geom_point": "0101000020E6100000760106B43A7A5FC0607E7E4A5B964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.905040688999961, 49.175574193000024 ], [ -125.905214584999925, 49.175030094000107 ], [ -125.905027321999981, 49.174890600000033 ], [ -125.9046793159999, 49.174800792000035 ], [ -125.904544612000024, 49.174605693000117 ], [ -125.90490510599993, 49.174426302000064 ], [ -125.90493388499999, 49.174226893000125 ], [ -125.905468210999985, 49.173520490000065 ], [ -125.905594090999955, 49.173094603000038 ], [ -125.905913281999943, 49.172906602000083 ], [ -125.906893492999956, 49.172792694000115 ], [ -125.909170285999963, 49.172994907 ], [ -125.912630780999976, 49.173034805000064 ], [ -125.913005800999954, 49.173106010000105 ], [ -125.913399811, 49.173284094000053 ], [ -125.914160379999942, 49.17336379500005 ], [ -125.915203279999915, 49.173842299000093 ], [ -125.915803438999959, 49.173814143000094 ], [ -125.915802881, 49.174123190000095 ], [ -125.915800846999971, 49.175246768000058 ], [ -125.915392187999913, 49.175246447000063 ], [ -125.915391744999923, 49.175490177000064 ], [ -125.914656459999946, 49.175489597000137 ], [ -125.914655448999937, 49.176040394000111 ], [ -125.912677190999915, 49.176038810000122 ], [ -125.909175220999927, 49.17603591500005 ], [ -125.909176151999986, 49.175560217000061 ], [ -125.908257427999956, 49.175559438000029 ], [ -125.908255236999977, 49.176669355000037 ], [ -125.904636711999956, 49.176666214000086 ], [ -125.904581884999928, 49.175935904000035 ], [ -125.904708598999889, 49.175753600000078 ], [ -125.905040688999961, 49.175574193000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87227250", "BldgCostT": "59685000", "sL_LossRatio": "0.99863763231694", "sL_AssetLoss": "13969.536445", "sL_BldgLoss": "13950.5048", "sL_StrLoss": "13851.4304", "sL_NStrLoss": "99.0744", "sL_ContLoss": "19.031645", "geom_point": "0101000020E610000025CE8237C1835FC04F3650A672A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.05608889199999, 49.280807612000089 ], [ -126.055785908999923, 49.280592499000107 ], [ -126.05561530300001, 49.279085691000105 ], [ -126.05525099099999, 49.278716899000038 ], [ -126.055193501999938, 49.27805891200007 ], [ -126.055086963999926, 49.27788309700005 ], [ -126.054517677999982, 49.276943694000089 ], [ -126.054304406999947, 49.276856808000083 ], [ -126.053821506999952, 49.27710610400009 ], [ -126.053359502999967, 49.2772286000001 ], [ -126.052945291999947, 49.277047710000105 ], [ -126.0525243109999, 49.276712999 ], [ -126.051792118999956, 49.276581320000069 ], [ -126.05179018199999, 49.274845465000048 ], [ -126.052117625999969, 49.274845307000078 ], [ -126.052117475999978, 49.274711372000056 ], [ -126.052368026999957, 49.274711251000063 ], [ -126.052367595999939, 49.274329929000061 ], [ -126.050144763999981, 49.27433098300007 ], [ -126.049884005999942, 49.27394579200012 ], [ -126.049455212999973, 49.273754906000093 ], [ -126.049436987999954, 49.273628191000043 ], [ -126.052373844999934, 49.273582648000136 ], [ -126.052374491999942, 49.274155674000106 ], [ -126.052926992999943, 49.27415540500003 ], [ -126.052926597999885, 49.273808492000086 ], [ -126.053125242999968, 49.273808394000049 ], [ -126.05312497199999, 49.273570987000035 ], [ -126.05890096399996, 49.273481142000051 ], [ -126.058901250999966, 49.273707411000082 ], [ -126.059023942999957, 49.273707344000044 ], [ -126.059024228999974, 49.273930907000086 ], [ -126.059143150999958, 49.273930842000027 ], [ -126.059143333999913, 49.274074260000134 ], [ -126.061763147999926, 49.274072794000148 ], [ -126.061762301999948, 49.273436519000057 ], [ -126.062296300999918, 49.273428182000089 ], [ -126.063009812, 49.274065408000162 ], [ -126.064488990999934, 49.274623709000068 ], [ -126.065055925, 49.275258902000118 ], [ -126.065386499999931, 49.27548391100003 ], [ -126.065378688999914, 49.275619212000073 ], [ -126.065182615999959, 49.275901197000081 ], [ -126.065127902999976, 49.276368289000089 ], [ -126.064909390999958, 49.276775711000077 ], [ -126.063940292999973, 49.276903805000074 ], [ -126.063395383999961, 49.277051995000079 ], [ -126.062593495, 49.277580286000031 ], [ -126.062170204999958, 49.277759800000076 ], [ -126.06161291299999, 49.277889390000091 ], [ -126.06119649299994, 49.277717104000054 ], [ -126.060138399999943, 49.277698508000107 ], [ -126.059124813999958, 49.277160201000122 ], [ -126.058372791999972, 49.276879610000087 ], [ -126.058202597999937, 49.276956496000025 ], [ -126.058157410999939, 49.277494902000072 ], [ -126.057589405999977, 49.27780388300004 ], [ -126.056962995999953, 49.277915007000082 ], [ -126.057491105999944, 49.27829671000012 ], [ -126.05755288099999, 49.278856393000069 ], [ -126.057778913999954, 49.279230999000049 ], [ -126.058608287999903, 49.27962980000008 ], [ -126.06001988899996, 49.280638107000101 ], [ -126.060289305999959, 49.280734984000034 ], [ -126.060453677999988, 49.280720698000088 ], [ -126.060895097999961, 49.2804714950001 ], [ -126.061350585999932, 49.280396691000078 ], [ -126.061424100999886, 49.280384604000112 ], [ -126.06174840599995, 49.28023218500006 ], [ -126.061910508, 49.28006419200009 ], [ -126.061909397999969, 49.279822008000075 ], [ -126.062452611999959, 49.279484492000037 ], [ -126.062779499000015, 49.27907859000009 ], [ -126.06296190299993, 49.278309497000045 ], [ -126.063435512999945, 49.278232604 ], [ -126.063949402999953, 49.278380697000046 ], [ -126.064496021999929, 49.278439102000092 ], [ -126.064776794999943, 49.278320891000106 ], [ -126.06525587699997, 49.278584393000102 ], [ -126.066037417999894, 49.279548596000097 ], [ -126.066090307999985, 49.27955694900001 ], [ -126.066091895999975, 49.280672058000121 ], [ -126.06075720699999, 49.28067519100005 ], [ -126.060757922999954, 49.281221393000138 ], [ -126.060286294999912, 49.28122165800005 ], [ -126.060287037999927, 49.281792704000118 ], [ -126.05964931699999, 49.281793058000048 ], [ -126.059649836999967, 49.282197618000126 ], [ -126.057878188999936, 49.282198582000014 ], [ -126.057878100999972, 49.282193286000101 ], [ -126.05726549299996, 49.28182729400006 ], [ -126.056820707999961, 49.281680590000121 ], [ -126.056155483999973, 49.281088200000106 ], [ -126.05608889199999, 49.280807612000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.9992993257033", "sL_AssetLoss": "161.27322", "sL_BldgLoss": "161.16022", "sL_StrLoss": "160.85", "sL_NStrLoss": "0.31022", "sL_ContLoss": "0.113", "geom_point": "0101000020E61000000AD33937D4835FC0CBBB4D2C2EA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.059185624999913, 49.283047600000067 ], [ -126.059233745999961, 49.282239103000094 ], [ -126.06046959699998, 49.282270575000027 ], [ -126.06042149699999, 49.283079073000046 ], [ -126.059185624999913, 49.283047600000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14811750", "BldgCostT": "10215000", "sL_LossRatio": "0.998839781526759", "sL_AssetLoss": "4338.838", "sL_BldgLoss": "4333.804", "sL_StrLoss": "4307", "sL_NStrLoss": "26.804", "sL_ContLoss": "5.034", "geom_point": "0101000020E61000000371C3946D915FC0F50AB03415AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.270481378999989, 49.366233320000106 ], [ -126.27340256799999, 49.366225979000056 ], [ -126.273592338999919, 49.368962544000119 ], [ -126.272565492999917, 49.370179575000058 ], [ -126.272540199, 49.370034313000076 ], [ -126.271859207999981, 49.369631300000087 ], [ -126.271290812999951, 49.368311664000068 ], [ -126.271225478999924, 49.368159993000091 ], [ -126.271067398999946, 49.367265610000047 ], [ -126.270489782999903, 49.366261601000112 ], [ -126.270481378999989, 49.366233320000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "553053930", "BldgCostT": "363321461", "sL_LossRatio": "0.884193954554393", "sL_AssetLoss": "20540.3692946", "sL_BldgLoss": "18161.6703546", "sL_StrLoss": "17198.6882546", "sL_NStrLoss": "962.9821", "sL_ContLoss": "2378.69894", "geom_point": "0101000020E6100000FF1097F3B7795FC016B63EF6C4924840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.909154401, 49.153499999000104 ], [ -125.908561599, 49.152691092000062 ], [ -125.907964840999981, 49.151871479000057 ], [ -125.907827720999947, 49.151630415000106 ], [ -125.907607322000032, 49.151242881 ], [ -125.907615445999909, 49.15059747800008 ], [ -125.907504511999932, 49.150597379000025 ], [ -125.90623514399995, 49.150614276000091 ], [ -125.905141977999961, 49.150599689000032 ], [ -125.904793293999973, 49.150595012000139 ], [ -125.902928267999954, 49.150615851000033 ], [ -125.900730379999942, 49.150679567000047 ], [ -125.900244445999974, 49.150598102000068 ], [ -125.89841799, 49.150514478000034 ], [ -125.898128710999956, 49.15066722800001 ], [ -125.896771777999973, 49.150025036000045 ], [ -125.895980999999892, 49.149720022000032 ], [ -125.89519141699995, 49.149513117000019 ], [ -125.893686067999923, 49.149121881000063 ], [ -125.893145713999914, 49.148916121000056 ], [ -125.89233550199998, 49.148154709000089 ], [ -125.89197360899999, 49.147733915000082 ], [ -125.89174992, 49.147393500000135 ], [ -125.891585306999957, 49.146896412000018 ], [ -125.891527462999974, 49.14645570800009 ], [ -125.891523958999983, 49.146428834000119 ], [ -125.891370105999954, 49.145256121000031 ], [ -125.891236041999946, 49.144616861000053 ], [ -125.891019380999964, 49.144178263000079 ], [ -125.890861583999936, 49.143990803000058 ], [ -125.890605430999969, 49.143686417000069 ], [ -125.890553819999951, 49.143625091000054 ], [ -125.890418783999962, 49.143398127000069 ], [ -125.890329013999974, 49.143157693000063 ], [ -125.890306674999948, 49.142394432000081 ], [ -125.890302390999949, 49.142248496000036 ], [ -125.89019702399996, 49.141733777000049 ], [ -125.890058779999976, 49.141058246000107 ], [ -125.889950141999975, 49.14057847500009 ], [ -125.889932772999941, 49.14050180800006 ], [ -125.889958150999959, 49.140195789000067 ], [ -125.890137408999962, 49.139640578000098 ], [ -125.890378305999889, 49.139641431000015 ], [ -125.893314817999965, 49.139651852000043 ], [ -125.894269394999966, 49.139680395000063 ], [ -125.894406624999988, 49.139684496000022 ], [ -125.894428475999916, 49.139685143000072 ], [ -125.894931008999933, 49.139700157000071 ], [ -125.89496569, 49.139701193000064 ], [ -125.896448285999938, 49.139714351000052 ], [ -125.896832322999956, 49.139718011000078 ], [ -125.896857136000037, 49.14014341700004 ], [ -125.896446348999945, 49.140153731000112 ], [ -125.896462069, 49.140423247000101 ], [ -125.895229697999952, 49.140454181000045 ], [ -125.895213986999963, 49.14018466400011 ], [ -125.894991573999945, 49.140190246000024 ], [ -125.894989975999962, 49.140190286000127 ], [ -125.89498956099996, 49.140374237000117 ], [ -125.894987860999976, 49.141127805000117 ], [ -125.89973708699999, 49.141132333000066 ], [ -125.899729329999957, 49.144732960000027 ], [ -125.894252790999928, 49.144727720000063 ], [ -125.894259472000016, 49.141786777000085 ], [ -125.893712777999937, 49.141786239000062 ], [ -125.89370760499996, 49.14405149500007 ], [ -125.893805487999927, 49.144051591000078 ], [ -125.89380317799997, 49.145064189000109 ], [ -125.893907043999931, 49.145064291000075 ], [ -125.893905207999978, 49.145869868000013 ], [ -125.895424932999944, 49.145871355000033 ], [ -125.895424093999978, 49.1462440950001 ], [ -125.895787141000014, 49.146244446000075 ], [ -125.895785631999928, 49.146918098000135 ], [ -125.89683940499998, 49.1468916440001 ], [ -125.896855129999949, 49.147161160000039 ], [ -125.897265974999982, 49.147150843000105 ], [ -125.897281701999987, 49.147420359000044 ], [ -125.897775880999973, 49.14740794800008 ], [ -125.897777200999911, 49.146806999000049 ], [ -125.898068813999942, 49.146807275000135 ], [ -125.89805620099996, 49.146591174000058 ], [ -125.897234519999984, 49.146611811000049 ], [ -125.897187339999917, 49.145803262000101 ], [ -125.898830672999907, 49.145761983000142 ], [ -125.898862143999935, 49.146301015000098 ], [ -125.898967623999965, 49.146298364000124 ], [ -125.898969537, 49.145417325000054 ], [ -125.904446156999967, 49.145422324000066 ], [ -125.904445080999977, 49.145946472000062 ], [ -125.90516326, 49.145947107000069 ], [ -125.905161270999884, 49.146923714000096 ], [ -125.905907114999934, 49.146924369000061 ], [ -125.905910374999962, 49.145312201000124 ], [ -125.91137491799995, 49.145316838000042 ], [ -125.911376303999958, 49.144588338000077 ], [ -125.911386664999924, 49.144588346000049 ], [ -125.911387737999917, 49.144024737000031 ], [ -125.912858132999972, 49.144025936000048 ], [ -125.91278350499999, 49.144096285000046 ], [ -125.91290479499996, 49.144300012000038 ], [ -125.913698023999956, 49.144720101000075 ], [ -125.9134787, 49.144959398000069 ], [ -125.913512001999962, 49.145067596000068 ], [ -125.914249714999983, 49.145228603000113 ], [ -125.914262406999967, 49.14592068800011 ], [ -125.914429218999928, 49.145943503000062 ], [ -125.914746098999942, 49.145764094000128 ], [ -125.915051912999928, 49.145829601000059 ], [ -125.914698023999961, 49.146548801000101 ], [ -125.915199118999951, 49.146931904000049 ], [ -125.915457397999958, 49.147591303000048 ], [ -125.915148093999946, 49.148156702000037 ], [ -125.914502581999983, 49.148622501000084 ], [ -125.914023603999937, 49.14884180000012 ], [ -125.913316713999905, 49.148950000000113 ], [ -125.912990287, 49.149236303000123 ], [ -125.912482204999932, 49.149465596000049 ], [ -125.912068597999948, 49.149448488000118 ], [ -125.911655900999961, 49.14918931200004 ], [ -125.911257682999931, 49.149155098000023 ], [ -125.911114504999986, 49.149293305000072 ], [ -125.910870398999961, 49.14933598699999 ], [ -125.91080128199998, 49.149570992000072 ], [ -125.91042910099999, 49.149768894000054 ], [ -125.91049899799998, 49.149801930000137 ], [ -125.91080891, 49.149948402000099 ], [ -125.910827904999934, 49.15003811000004 ], [ -125.910710995999978, 49.150365700000052 ], [ -125.910324108999987, 49.150807204000081 ], [ -125.910524291999977, 49.151161810000104 ], [ -125.910854982999965, 49.151423905000044 ], [ -125.91087719299999, 49.151566307000095 ], [ -125.91054301299998, 49.151943708000019 ], [ -125.911178994999929, 49.152036287000016 ], [ -125.911281900999981, 49.152393798000134 ], [ -125.911475475, 49.152415096000077 ], [ -125.911697311999944, 49.152238496000059 ], [ -125.911999303999934, 49.152231399000051 ], [ -125.912135094999911, 49.152660100000048 ], [ -125.912231499999962, 49.152692804000047 ], [ -125.913008797999964, 49.152591708000095 ], [ -125.913304191999927, 49.152711412000038 ], [ -125.91326860599996, 49.153269599000019 ], [ -125.912983587999975, 49.153564502000052 ], [ -125.912795784999972, 49.153632801000057 ], [ -125.912371687999922, 49.153669907000058 ], [ -125.912295105999974, 49.153510307000062 ], [ -125.911828311999955, 49.153288203000095 ], [ -125.911308104999947, 49.153274631000052 ], [ -125.911115013999918, 49.153269593000111 ], [ -125.910716302999958, 49.153514594000043 ], [ -125.910362495999905, 49.153567297000073 ], [ -125.910128085999986, 49.153780907000112 ], [ -125.90970067899994, 49.153971793000053 ], [ -125.909519926999948, 49.154000877000058 ], [ -125.909154401, 49.153499999000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15154167", "BldgCostT": "10241667", "sL_LossRatio": "0.794854245685842", "sL_AssetLoss": "3249.475", "sL_BldgLoss": "2582.859", "sL_StrLoss": "2316.598", "sL_NStrLoss": "266.261", "sL_ContLoss": "666.616", "geom_point": "0101000020E61000007AA23550AA775FC083D3C4334F8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.871062692999971, 49.108809136000083 ], [ -125.871063432, 49.108541640000077 ], [ -125.870799716999954, 49.108541324000107 ], [ -125.870800170999971, 49.108377433000072 ], [ -125.869927592999943, 49.108376382000088 ], [ -125.86973965, 49.108274256000115 ], [ -125.86969137799997, 49.108234972000048 ], [ -125.86969571499999, 49.106684810000104 ], [ -125.867942138999922, 49.10668267200009 ], [ -125.86752762399999, 49.106301002000059 ], [ -125.86691692700002, 49.105545867000139 ], [ -125.866420169999941, 49.104836350000021 ], [ -125.866289939999945, 49.10465029800006 ], [ -125.866072724999981, 49.104340030000131 ], [ -125.865817485999983, 49.103975427000101 ], [ -125.864914329000015, 49.10314068900005 ], [ -125.864344290999952, 49.102531449000047 ], [ -125.864108653999921, 49.102189968000125 ], [ -125.86395377299999, 49.101828778000048 ], [ -125.863946010999953, 49.101671231000111 ], [ -125.863968883999959, 49.101330969000131 ], [ -125.864227894999956, 49.100697557000025 ], [ -125.864250260999953, 49.100534632000119 ], [ -125.864200269999955, 49.100323940000081 ], [ -125.864027303999933, 49.100067151000054 ], [ -125.863960069999905, 49.100006194000116 ], [ -125.863642600999981, 49.099718274000104 ], [ -125.863182465999955, 49.099418069000066 ], [ -125.86770926699991, 49.099423732000069 ], [ -125.867701811999936, 49.102049167000125 ], [ -125.868071715999989, 49.10204962100002 ], [ -125.868076170999956, 49.100476715000042 ], [ -125.869124837999905, 49.100477996000059 ], [ -125.869127178999975, 49.099644939000072 ], [ -125.872795828999969, 49.099649341000038 ], [ -125.872751293999912, 49.100205010000089 ], [ -125.872477792999945, 49.100921400000111 ], [ -125.87233489499999, 49.101780200000071 ], [ -125.87227471099996, 49.103104704000067 ], [ -125.872836101999951, 49.104745389000087 ], [ -125.873303494999973, 49.105732411000155 ], [ -125.87388941799999, 49.106608303000044 ], [ -125.87475790399999, 49.107190789000079 ], [ -125.875724493999911, 49.107525502000016 ], [ -125.876035906999931, 49.107491283000094 ], [ -125.876203801999949, 49.107288985000054 ], [ -125.876539370999936, 49.10716816300009 ], [ -125.876534339, 49.109067148000037 ], [ -125.872195574999921, 49.109062081000097 ], [ -125.871788404999961, 49.108993287000082 ], [ -125.871062692999971, 49.108809136000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52818000", "BldgCostT": "34170000", "sL_LossRatio": "0.998544221603809", "sL_AssetLoss": "5952.8291", "sL_BldgLoss": "5944.1631", "sL_StrLoss": "5877.4391", "sL_NStrLoss": "66.724", "sL_ContLoss": "8.666", "geom_point": "0101000020E6100000821E513E10795FC0E23BC64FC28F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.890137408999962, 49.139640578000098 ], [ -125.890271964, 49.139101223000125 ], [ -125.89054235199994, 49.138017085000058 ], [ -125.890635871999947, 49.137257435000109 ], [ -125.890638370999952, 49.1367731570001 ], [ -125.890570138999976, 49.136096146000121 ], [ -125.890680359999962, 49.135797418000081 ], [ -125.891217592999979, 49.135208191000096 ], [ -125.891332245999976, 49.135082434000061 ], [ -125.891707362999981, 49.13447248500006 ], [ -125.89210392499993, 49.134045324000077 ], [ -125.894199328999932, 49.132359562000062 ], [ -125.894035336999977, 49.132268474000078 ], [ -125.893882319999975, 49.132115273000053 ], [ -125.893766610999961, 49.13184789000006 ], [ -125.893797597999935, 49.131454503000022 ], [ -125.893732498999952, 49.131206909000035 ], [ -125.893609697999977, 49.131044709000079 ], [ -125.893552300999914, 49.130968193000051 ], [ -125.892988011999989, 49.130556186000092 ], [ -125.892807905, 49.130299508000071 ], [ -125.892809965999945, 49.129420357000086 ], [ -125.892810100999938, 49.129360608000127 ], [ -125.892811502, 49.128730507000121 ], [ -125.894912314999914, 49.128785703000119 ], [ -125.894559359999903, 49.127836390000034 ], [ -125.894347816999968, 49.12726741000008 ], [ -125.89413958499992, 49.126129404000054 ], [ -125.894010212999945, 49.125866392000084 ], [ -125.89326059099993, 49.125085208000023 ], [ -125.891648135999986, 49.123452464000088 ], [ -125.891342241999922, 49.123143587000108 ], [ -125.89132173899999, 49.122791217000064 ], [ -125.891209765999989, 49.122791104000086 ], [ -125.891210543999975, 49.122458601000076 ], [ -125.891112781999979, 49.122458502000043 ], [ -125.891113429999962, 49.122181716000064 ], [ -125.890796885999947, 49.122181395000062 ], [ -125.89079812099996, 49.121654833000058 ], [ -125.89076081599994, 49.121654795000083 ], [ -125.890762165999931, 49.121079142000092 ], [ -125.89051464100001, 49.121078891000124 ], [ -125.890516149999925, 49.120436868000112 ], [ -125.890174189999982, 49.120436521000038 ], [ -125.890170279999921, 49.122094059000077 ], [ -125.889778611999986, 49.121770825000098 ], [ -125.888196049999948, 49.120320771000095 ], [ -125.887964176999901, 49.120000065000063 ], [ -125.887683511999967, 49.119498379000113 ], [ -125.887364334000011, 49.119090007000125 ], [ -125.88968910399997, 49.119092415000075 ], [ -125.889689948, 49.118736428000069 ], [ -125.888149286, 49.118734837000055 ], [ -125.888150782999958, 49.118111430000106 ], [ -125.887864810999972, 49.118111132000102 ], [ -125.887867919999962, 49.116820539000059 ], [ -125.88757399499994, 49.11682023200008 ], [ -125.887573238999963, 49.117133645000088 ], [ -125.887186767999964, 49.117133241 ], [ -125.88718259099997, 49.118857476000088 ], [ -125.886791352999964, 49.118356887000118 ], [ -125.886500387999916, 49.118159428000112 ], [ -125.885770416999947, 49.117857094000051 ], [ -125.88540150199999, 49.117632560000033 ], [ -125.883065205999955, 49.115672126000099 ], [ -125.882589372999917, 49.115269660000074 ], [ -125.881329116999936, 49.114203696000061 ], [ -125.881161924999972, 49.11406228500006 ], [ -125.881001222999927, 49.113760532000086 ], [ -125.880797532999978, 49.113167090000033 ], [ -125.880673598999934, 49.112941884000087 ], [ -125.880370588999966, 49.112658010000089 ], [ -125.878995451999955, 49.111647323000042 ], [ -125.878628000999939, 49.11131938500003 ], [ -125.877852843999946, 49.110627486000041 ], [ -125.87780383499998, 49.110583753000078 ], [ -125.877439042999981, 49.110389773000094 ], [ -125.877087825, 49.110241747000039 ], [ -125.877082293999962, 49.110240085000051 ], [ -125.877087361999912, 49.108319466000133 ], [ -125.879275158000027, 49.108321943000128 ], [ -125.878909614999941, 49.108814402000078 ], [ -125.879174710999976, 49.108924006000038 ], [ -125.87960089399995, 49.108949701000043 ], [ -125.88036718299999, 49.109146194000104 ], [ -125.881600016999954, 49.109151903000061 ], [ -125.881757120999936, 49.109264398000107 ], [ -125.88175098, 49.109381198000072 ], [ -125.881153493999946, 49.109703104000047 ], [ -125.881485299999937, 49.109982192000103 ], [ -125.881837501999968, 49.110180191000019 ], [ -125.88250539699996, 49.11010041100009 ], [ -125.882555096999951, 49.110118668999988 ], [ -125.882552277999963, 49.111236755000036 ], [ -125.882228681999948, 49.111466297000021 ], [ -125.882519808999973, 49.111773906000053 ], [ -125.882943495999882, 49.111997496000079 ], [ -125.883616, 49.112223890000102 ], [ -125.885232604999928, 49.112480294000129 ], [ -125.887792793999964, 49.112641215000117 ], [ -125.891192500999949, 49.112681091000063 ], [ -125.891886192999962, 49.112816394000021 ], [ -125.89215868299999, 49.113008706000102 ], [ -125.89236388799999, 49.113263610000125 ], [ -125.89235626599995, 49.113334899000094 ], [ -125.892230794999989, 49.114508392000062 ], [ -125.892406493999914, 49.11587129600008 ], [ -125.893442785999952, 49.118598697000017 ], [ -125.894252990999973, 49.120018598000073 ], [ -125.895120594999952, 49.121264804000077 ], [ -125.895891106999954, 49.122046697000037 ], [ -125.89647821899996, 49.122472499000011 ], [ -125.897972806999974, 49.123163306000031 ], [ -125.898209604999948, 49.123242614000098 ], [ -125.898207953999986, 49.123997756000094 ], [ -125.894348696999899, 49.12399403700006 ], [ -125.894345920999953, 49.125217424000091 ], [ -125.896453075999972, 49.125219471000101 ], [ -125.896450712999965, 49.126282026000055 ], [ -125.896703428999928, 49.126282268000089 ], [ -125.896702739999938, 49.126592895000044 ], [ -125.898014743999951, 49.126594146000023 ], [ -125.89801591, 49.126061747000143 ], [ -125.899024203999957, 49.126062698000084 ], [ -125.899024786999973, 49.125793572000084 ], [ -125.904499100999928, 49.125798568000086 ], [ -125.904498653999966, 49.126015704000125 ], [ -125.904063302999958, 49.126051587000063 ], [ -125.903536295999942, 49.126658307000064 ], [ -125.902567806999926, 49.126746596 ], [ -125.902465890999963, 49.126893306000106 ], [ -125.902607899999964, 49.127195189000076 ], [ -125.902731306999982, 49.127192388 ], [ -125.902799414999947, 49.127666598000069 ], [ -125.902631402999972, 49.127814789000119 ], [ -125.90196467899996, 49.127904499000145 ], [ -125.901658096999967, 49.128064014000103 ], [ -125.901258101999971, 49.128749002000127 ], [ -125.901260420999975, 49.128803247000121 ], [ -125.901295001999969, 49.129612109000043 ], [ -125.901612719999946, 49.13015687500004 ], [ -125.898956721999951, 49.130174773000114 ], [ -125.899043030999962, 49.128793034000097 ], [ -125.899029313999961, 49.128793020000082 ], [ -125.896421998000022, 49.128787996000042 ], [ -125.895994246, 49.12878734 ], [ -125.89602210399994, 49.12944151700006 ], [ -125.895276029999962, 49.129451984000056 ], [ -125.89528634199992, 49.129466528000087 ], [ -125.895841101000016, 49.130247587000063 ], [ -125.895930909999947, 49.130470902000056 ], [ -125.895933266000029, 49.130627984000043 ], [ -125.89593450299995, 49.130708505000023 ], [ -125.895674899999932, 49.131105299000083 ], [ -125.894574125999938, 49.132040993000111 ], [ -125.902966013999944, 49.132033630000059 ], [ -125.903453013999979, 49.132733991000109 ], [ -125.904141111999948, 49.133449696000127 ], [ -125.898865433999916, 49.133444869000137 ], [ -125.898866164999902, 49.133108718000059 ], [ -125.898817748999946, 49.133108673000024 ], [ -125.898815765, 49.134021313000069 ], [ -125.896440887999958, 49.134019054000063 ], [ -125.896437170999945, 49.135689668000047 ], [ -125.89541889899999, 49.135688685000041 ], [ -125.89541776199999, 49.136195393000023 ], [ -125.894448923999974, 49.136194447000079 ], [ -125.894445804999961, 49.13756971400003 ], [ -125.891544015999926, 49.13756683000009 ], [ -125.891542775999966, 49.138099041000089 ], [ -125.893685241999961, 49.138101178000056 ], [ -125.893685048999956, 49.138185559000085 ], [ -125.89499449499999, 49.138186844000082 ], [ -125.894991802999925, 49.139380506000116 ], [ -125.895577630999981, 49.139365804000079 ], [ -125.895546202999967, 49.138826770000016 ], [ -125.896778532, 49.138795833000081 ], [ -125.896832322999956, 49.139718011000078 ], [ -125.896448285999938, 49.139714351000052 ], [ -125.89496569, 49.139701193000064 ], [ -125.894931008999933, 49.139700157000071 ], [ -125.894428475999916, 49.139685143000072 ], [ -125.894406624999988, 49.139684496000022 ], [ -125.894269394999966, 49.139680395000063 ], [ -125.893314817999965, 49.139651852000043 ], [ -125.890378305999889, 49.139641431000015 ], [ -125.890137408999962, 49.139640578000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144383084", "BldgCostT": "93133334", "sL_LossRatio": "0.789152059069388", "sL_AssetLoss": "9882.21384", "sL_BldgLoss": "7798.5694", "sL_StrLoss": "6811.5684", "sL_NStrLoss": "987.001", "sL_ContLoss": "2083.64444", "geom_point": "0101000020E61000009D5D5A811F775FC00CC09A5E3D8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.85821869199998, 49.104587300000013 ], [ -125.857261404999974, 49.104143010000037 ], [ -125.856914292999974, 49.103809695000102 ], [ -125.856228910999974, 49.103826796000092 ], [ -125.856048214999959, 49.103759900000043 ], [ -125.85540571899999, 49.103316900000067 ], [ -125.854439077999984, 49.102838777000102 ], [ -125.85444334, 49.101474472000064 ], [ -125.856921198999899, 49.10147779600004 ], [ -125.857402404999959, 49.102285799000043 ], [ -125.857789604999937, 49.102356991000057 ], [ -125.85794931699999, 49.102262999000061 ], [ -125.857852416999918, 49.102013802000052 ], [ -125.857931085999923, 49.101966803000082 ], [ -125.85824581899999, 49.101968197000126 ], [ -125.858554504999958, 49.102069299000028 ], [ -125.858978093999951, 49.102049411000074 ], [ -125.859047600999958, 49.101840011000029 ], [ -125.858766080999885, 49.101703297000093 ], [ -125.859139702000036, 49.101480724000027 ], [ -125.859487964999929, 49.101481180000093 ], [ -125.859488592999966, 49.101272881000128 ], [ -125.859521621999988, 49.101253204000052 ], [ -125.859488659999897, 49.101250963000084 ], [ -125.859493041999926, 49.099797695000042 ], [ -125.86223692199998, 49.099801245000045 ], [ -125.862238058999978, 49.099416864 ], [ -125.863182465999955, 49.099418069000066 ], [ -125.863642600999981, 49.099718274000104 ], [ -125.863960069999905, 49.100006194000116 ], [ -125.864027303999933, 49.100067151000054 ], [ -125.864200269999955, 49.100323940000081 ], [ -125.864250260999953, 49.100534632000119 ], [ -125.864227894999956, 49.100697557000025 ], [ -125.863968883999959, 49.101330969000131 ], [ -125.863946010999953, 49.101671231000111 ], [ -125.86395377299999, 49.101828778000048 ], [ -125.864108653999921, 49.102189968000125 ], [ -125.864344290999952, 49.102531449000047 ], [ -125.864914329000015, 49.10314068900005 ], [ -125.865817485999983, 49.103975427000101 ], [ -125.866072724999981, 49.104340030000131 ], [ -125.866289939999945, 49.10465029800006 ], [ -125.866420169999941, 49.104836350000021 ], [ -125.86691692700002, 49.105545867000139 ], [ -125.86752762399999, 49.106301002000059 ], [ -125.867942138999922, 49.10668267200009 ], [ -125.865865735999989, 49.106680104000134 ], [ -125.865868520999953, 49.105713043000065 ], [ -125.865429376999899, 49.105712495000098 ], [ -125.865429564999914, 49.105647203000053 ], [ -125.864446542999971, 49.105645969000115 ], [ -125.864453061999981, 49.103404927000035 ], [ -125.859909023999961, 49.103399106000126 ], [ -125.859906554999938, 49.104220018000085 ], [ -125.864208885000011, 49.104225535000118 ], [ -125.864198387999949, 49.107826365000079 ], [ -125.862063940999946, 49.10782365000005 ], [ -125.86211069299999, 49.107666499000103 ], [ -125.86207889899994, 49.106876004000085 ], [ -125.861874906999915, 49.106665185000075 ], [ -125.861013804999942, 49.106236588000051 ], [ -125.860468600000019, 49.105836293000053 ], [ -125.859670390999938, 49.105504512000053 ], [ -125.85821869199998, 49.104587300000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4934084", "BldgCostT": "3193334", "sL_LossRatio": "0.459114801906368", "sL_AssetLoss": "614.0682", "sL_BldgLoss": "281.9278", "sL_StrLoss": "158.9078", "sL_NStrLoss": "123.02", "sL_ContLoss": "332.1404", "geom_point": "0101000020E61000001EE0208CA5795FC08ECB768DAF944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.900448998999934, 49.160187009000012 ], [ -125.900804884999957, 49.160160005000101 ], [ -125.90141989199999, 49.160360806000128 ], [ -125.901976517999955, 49.160733899000093 ], [ -125.902013289999928, 49.16088629700004 ], [ -125.901805690999979, 49.1610984920001 ], [ -125.902104305999927, 49.161287906000062 ], [ -125.902015725999959, 49.161641205000123 ], [ -125.902278806999959, 49.162156692000025 ], [ -125.90200549399998, 49.162424496000057 ], [ -125.901957061999966, 49.16277464500012 ], [ -125.900820859999968, 49.162773605000083 ], [ -125.899806984999927, 49.16257829200002 ], [ -125.898939813999959, 49.161844803000058 ], [ -125.898938092999956, 49.161548613000072 ], [ -125.899425902999951, 49.161004490000039 ], [ -125.900277405999972, 49.160785190000048 ], [ -125.900457995999886, 49.160591509000042 ], [ -125.900262501999947, 49.160282398000085 ], [ -125.900448998999934, 49.160187009000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14662083", "BldgCostT": "9168333", "sL_LossRatio": "0.999178506882119", "sL_AssetLoss": "1265.2571", "sL_BldgLoss": "1264.2177", "sL_StrLoss": "1257.72894", "sL_NStrLoss": "6.48876", "sL_ContLoss": "1.0394", "geom_point": "0101000020E610000079021F8B46795FC0CE02ED0EA9944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.892893111999939, 49.162053766000071 ], [ -125.89289870799999, 49.159623590000123 ], [ -125.893108494999964, 49.15948061500012 ], [ -125.894180816999892, 49.15925560000013 ], [ -125.89431860099991, 49.159271284000113 ], [ -125.894833795999944, 49.159627292000039 ], [ -125.894873817999922, 49.159840900000077 ], [ -125.894532785999928, 49.160138603000078 ], [ -125.894702076999977, 49.160439098000062 ], [ -125.895110411999923, 49.160618595000074 ], [ -125.895575803999961, 49.160607203000076 ], [ -125.896518391999933, 49.160780900000105 ], [ -125.897245006999924, 49.161014485000095 ], [ -125.897476814999962, 49.161206803 ], [ -125.897324896000029, 49.161669597000127 ], [ -125.897746309999889, 49.162064097000027 ], [ -125.897534087999972, 49.1624287080001 ], [ -125.897685351999911, 49.162814396000066 ], [ -125.893463560000015, 49.162810303000043 ], [ -125.89290260199995, 49.162059908000103 ], [ -125.892893111999939, 49.162053766000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9034418", "BldgCostT": "5811668", "sL_LossRatio": "0.706869279966205", "sL_AssetLoss": "2366.58239", "sL_BldgLoss": "1672.86439", "sL_StrLoss": "1412.156", "sL_NStrLoss": "260.70839", "sL_ContLoss": "693.718", "geom_point": "0101000020E61000007584FC01C9785FC0838659C320944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.88529285499996, 49.157207061000115 ], [ -125.885296448999981, 49.155748731000124 ], [ -125.8853740099999, 49.155743492000084 ], [ -125.88563498900001, 49.155988497000102 ], [ -125.887258619999955, 49.155813299 ], [ -125.887727813999973, 49.156098104000122 ], [ -125.887976984999909, 49.15637010700005 ], [ -125.888697723999911, 49.156505502000087 ], [ -125.888924596999956, 49.156652101000091 ], [ -125.889237594999898, 49.157049510000085 ], [ -125.88907640499994, 49.157593484000081 ], [ -125.889352710999958, 49.157847090000139 ], [ -125.889745619999971, 49.158476708000073 ], [ -125.88651398799999, 49.158473352000073 ], [ -125.88601421700001, 49.158264297000059 ], [ -125.88529285499996, 49.157207061000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118492411", "BldgCostT": "77850743", "sL_LossRatio": "0.783705151170614", "sL_AssetLoss": "11157.878045", "sL_BldgLoss": "8744.4865", "sL_StrLoss": "7658.044", "sL_NStrLoss": "1086.4425", "sL_ContLoss": "2413.391545", "geom_point": "0101000020E610000093F4382583785FC07486A92DF58E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.887524809999945, 49.122435492000129 ], [ -125.887358308999964, 49.122404186000054 ], [ -125.887313486999957, 49.122557998000104 ], [ -125.887081093999939, 49.122590705000043 ], [ -125.88671838899991, 49.122231808 ], [ -125.88687328599994, 49.121840199000054 ], [ -125.88678890199999, 49.121780398000119 ], [ -125.886297991999982, 49.121845903000057 ], [ -125.886226490999974, 49.121803200000102 ], [ -125.886103304999921, 49.12109529 ], [ -125.886192576, 49.120733594000079 ], [ -125.886675083999961, 49.120541305000131 ], [ -125.88662930699999, 49.120461594000048 ], [ -125.886127907999978, 49.120311989000122 ], [ -125.885587990999966, 49.119299401000021 ], [ -125.885488414999969, 49.118978997000092 ], [ -125.885707801999942, 49.118504689000105 ], [ -125.885619916999957, 49.118434900000068 ], [ -125.885469619999981, 49.118447696000054 ], [ -125.885110413999939, 49.118637090000107 ], [ -125.884920995999934, 49.118650010000103 ], [ -125.884579686999956, 49.118443505000066 ], [ -125.884554980999951, 49.118011898000091 ], [ -125.884004610999938, 49.117999105000152 ], [ -125.883739277999908, 49.117897998000082 ], [ -125.88356531, 49.117964898000089 ], [ -125.883873989999955, 49.118352312000084 ], [ -125.883871592999938, 49.118541690000036 ], [ -125.883742292999912, 49.118652791000066 ], [ -125.883275187999971, 49.118655711000017 ], [ -125.882340584999952, 49.118355192000081 ], [ -125.881711245999924, 49.118006009000112 ], [ -125.881712432999961, 49.11753855500006 ], [ -125.88126759, 49.117538065000069 ], [ -125.881268744999957, 49.117085494000065 ], [ -125.880872401999966, 49.117085056000029 ], [ -125.880875176999965, 49.116000303000128 ], [ -125.879719937999965, 49.115999018000075 ], [ -125.879514619999924, 49.115736001000101 ], [ -125.879457691, 49.115697389000061 ], [ -125.87945896, 49.115207315000099 ], [ -125.878957027999959, 49.115219843000062 ], [ -125.87894141699999, 49.114950320000119 ], [ -125.878530830999949, 49.114960568000093 ], [ -125.878468399999946, 49.113882478000086 ], [ -125.878878976999914, 49.113872232000091 ], [ -125.878863367999912, 49.11360271100007 ], [ -125.879463151999957, 49.113587740000099 ], [ -125.87946384899999, 49.113317811000066 ], [ -125.879258330999974, 49.113322941000057 ], [ -125.87924271899999, 49.113053419000096 ], [ -125.878832149999965, 49.113063666000059 ], [ -125.87881654099999, 49.112794144000084 ], [ -125.878405972999957, 49.112804389000082 ], [ -125.878390366999952, 49.112534868000068 ], [ -125.877503753999989, 49.112556988000058 ], [ -125.877158668999954, 49.11256559600006 ], [ -125.877160883999963, 49.11260386600005 ], [ -125.8771, 49.112592800000108 ], [ -125.876826406999967, 49.112608511000097 ], [ -125.87685769, 49.112843014000077 ], [ -125.875942560999988, 49.112865834000075 ], [ -125.875895782999947, 49.112057264000086 ], [ -125.876716906999974, 49.112036790000076 ], [ -125.876701310999948, 49.111767267000069 ], [ -125.877078287999922, 49.111757865000108 ], [ -125.877082293999962, 49.110240085000051 ], [ -125.877087825, 49.110241747000039 ], [ -125.877439042999981, 49.110389773000094 ], [ -125.87780383499998, 49.110583753000078 ], [ -125.877852843999946, 49.110627486000041 ], [ -125.878628000999939, 49.11131938500003 ], [ -125.878995451999955, 49.111647323000042 ], [ -125.880370588999966, 49.112658010000089 ], [ -125.880673598999934, 49.112941884000087 ], [ -125.880797532999978, 49.113167090000033 ], [ -125.881001222999927, 49.113760532000086 ], [ -125.881161924999972, 49.11406228500006 ], [ -125.881329116999936, 49.114203696000061 ], [ -125.882589372999917, 49.115269660000074 ], [ -125.883065205999955, 49.115672126000099 ], [ -125.88540150199999, 49.117632560000033 ], [ -125.885770416999947, 49.117857094000051 ], [ -125.886500387999916, 49.118159428000112 ], [ -125.886791352999964, 49.118356887000118 ], [ -125.88718259099997, 49.118857476000088 ], [ -125.887182028999973, 49.11908981600007 ], [ -125.887364334000011, 49.119090007000125 ], [ -125.887683511999967, 49.119498379000113 ], [ -125.887964176999901, 49.120000065000063 ], [ -125.888196049999948, 49.120320771000095 ], [ -125.889778611999986, 49.121770825000098 ], [ -125.890170279999921, 49.122094059000077 ], [ -125.890168865999939, 49.122693664000103 ], [ -125.887603803999966, 49.122691016000047 ], [ -125.887524809999945, 49.122435492000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "344488716", "BldgCostT": "220385883", "sL_LossRatio": "0.833632961498797", "sL_AssetLoss": "10810.870628", "sL_BldgLoss": "9012.298098", "sL_StrLoss": "8322.7767", "sL_NStrLoss": "689.521398", "sL_ContLoss": "1798.57253", "geom_point": "0101000020E61000002C07BCC43F795FC081E4AE6FF1914840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.906202708999942, 49.154428987000088 ], [ -125.90582860899994, 49.15434779 ], [ -125.905159085999983, 49.154391898 ], [ -125.90423758899999, 49.154118506000046 ], [ -125.903499786999959, 49.154172599000056 ], [ -125.903306807999968, 49.153943301000055 ], [ -125.902513816999971, 49.153990308000068 ], [ -125.902132696999928, 49.153783810000078 ], [ -125.90165455599994, 49.153669281000113 ], [ -125.901353596999925, 49.153597191000081 ], [ -125.901007707999966, 49.153335189000074 ], [ -125.901149813999936, 49.153152906000123 ], [ -125.90109198299993, 49.153100206000097 ], [ -125.900778190999944, 49.152927805000125 ], [ -125.900170592999984, 49.152835302000021 ], [ -125.899668897999931, 49.152217200000052 ], [ -125.899255318000016, 49.15197650000006 ], [ -125.898851091000012, 49.151869712000057 ], [ -125.898109896999969, 49.152086096000112 ], [ -125.897875808999956, 49.152046192000086 ], [ -125.897795808999902, 49.15185969500002 ], [ -125.897392391999958, 49.151519301000107 ], [ -125.897044489000024, 49.151446697000097 ], [ -125.896531979999935, 49.151136195000078 ], [ -125.896495847999958, 49.150870360000077 ], [ -125.89648571099994, 49.150795787000057 ], [ -125.896153000999945, 49.150525202000026 ], [ -125.895881401999972, 49.150549393000119 ], [ -125.895586896999987, 49.150933888000033 ], [ -125.895314594999974, 49.150950998000091 ], [ -125.895078394999942, 49.150902588000108 ], [ -125.895016912999921, 49.150768688000035 ], [ -125.894736009999974, 49.150659099000052 ], [ -125.894008799999966, 49.150659089000015 ], [ -125.893072296999989, 49.150368510000071 ], [ -125.891600996999927, 49.150080799000136 ], [ -125.890919593999939, 49.150160612000036 ], [ -125.890323413999937, 49.150509495000094 ], [ -125.889886196999953, 49.150546587000072 ], [ -125.889773315999918, 49.150495295000077 ], [ -125.88952041, 49.150142087000084 ], [ -125.88950481099999, 49.149881507000032 ], [ -125.890299506999924, 49.149384385000069 ], [ -125.890751412999961, 49.148905906000103 ], [ -125.890943089999951, 49.148180896000071 ], [ -125.890870801999981, 49.14764260000009 ], [ -125.89061998699999, 49.146893497000043 ], [ -125.890070792999921, 49.146814812000073 ], [ -125.889873996999938, 49.146786614000035 ], [ -125.889337678999979, 49.146278198000097 ], [ -125.88934360399999, 49.144973604000022 ], [ -125.888941883999948, 49.143741691000066 ], [ -125.888915223999973, 49.143031001000054 ], [ -125.888778883999962, 49.142810195000052 ], [ -125.888553179999946, 49.142716300000103 ], [ -125.888502801999934, 49.142565309000126 ], [ -125.888493112, 49.142402893000067 ], [ -125.888844990999971, 49.141827500000069 ], [ -125.88881330400001, 49.141514206000075 ], [ -125.888701291999965, 49.141246509 ], [ -125.888354606999911, 49.140931701000056 ], [ -125.88823799699999, 49.140134208000092 ], [ -125.887950690999901, 49.139645709000042 ], [ -125.887324603999971, 49.137619003000047 ], [ -125.887286530999958, 49.137363056000069 ], [ -125.888970584999967, 49.137364806000058 ], [ -125.888971079999962, 49.13715726000008 ], [ -125.887255652999954, 49.137155477000086 ], [ -125.887010017999941, 49.135504102 ], [ -125.88704849899996, 49.135214902000023 ], [ -125.887568796999943, 49.134743500000049 ], [ -125.888079517999984, 49.134568401000116 ], [ -125.888545478999959, 49.134546999000094 ], [ -125.88885611799999, 49.134729304000146 ], [ -125.889184905, 49.134712203000056 ], [ -125.88941139399995, 49.134598302000072 ], [ -125.889622606999936, 49.134215108000014 ], [ -125.888790982, 49.133556396000081 ], [ -125.88901201399996, 49.13355662400005 ], [ -125.889017451999962, 49.131274733000026 ], [ -125.889471892999907, 49.131275201000058 ], [ -125.889473064999933, 49.130781243000094 ], [ -125.890964207999929, 49.13078276400006 ], [ -125.890936417999939, 49.130305213000092 ], [ -125.891347125999985, 49.13029492000004 ], [ -125.891322842999955, 49.129877688000057 ], [ -125.89122065, 49.129877584000063 ], [ -125.891220928, 49.129758261000049 ], [ -125.890905051999979, 49.129766176000054 ], [ -125.890842317999983, 49.128688102000119 ], [ -125.89043162399993, 49.128698393000036 ], [ -125.890355864999947, 49.1273961650001 ], [ -125.888463788999928, 49.127394221000053 ], [ -125.888472413999949, 49.123793498000062 ], [ -125.888875061999968, 49.123793914000039 ], [ -125.88887520199999, 49.12373530800005 ], [ -125.891376820999966, 49.12373786200002 ], [ -125.891361001999925, 49.123465979000052 ], [ -125.891342241999922, 49.123143587000108 ], [ -125.891648135999986, 49.123452464000088 ], [ -125.89326059099993, 49.125085208000023 ], [ -125.894010212999945, 49.125866392000084 ], [ -125.89413958499992, 49.126129404000054 ], [ -125.894347816999968, 49.12726741000008 ], [ -125.894559359999903, 49.127836390000034 ], [ -125.894912314999914, 49.128785703000119 ], [ -125.892811502, 49.128730507000121 ], [ -125.892810100999938, 49.129360608000127 ], [ -125.892809965999945, 49.129420357000086 ], [ -125.892807905, 49.130299508000071 ], [ -125.892988011999989, 49.130556186000092 ], [ -125.893552300999914, 49.130968193000051 ], [ -125.893609697999977, 49.131044709000079 ], [ -125.893732498999952, 49.131206909000035 ], [ -125.893797597999935, 49.131454503000022 ], [ -125.893766610999961, 49.13184789000006 ], [ -125.893882319999975, 49.132115273000053 ], [ -125.894035336999977, 49.132268474000078 ], [ -125.894199328999932, 49.132359562000062 ], [ -125.89210392499993, 49.134045324000077 ], [ -125.891707362999981, 49.13447248500006 ], [ -125.891332245999976, 49.135082434000061 ], [ -125.891217592999979, 49.135208191000096 ], [ -125.890680359999962, 49.135797418000081 ], [ -125.890570138999976, 49.136096146000121 ], [ -125.890638370999952, 49.1367731570001 ], [ -125.890635871999947, 49.137257435000109 ], [ -125.89054235199994, 49.138017085000058 ], [ -125.890271964, 49.139101223000125 ], [ -125.890137408999962, 49.139640578000098 ], [ -125.889958150999959, 49.140195789000067 ], [ -125.889932772999941, 49.14050180800006 ], [ -125.889950141999975, 49.14057847500009 ], [ -125.890058779999976, 49.141058246000107 ], [ -125.89019702399996, 49.141733777000049 ], [ -125.890302390999949, 49.142248496000036 ], [ -125.890306674999948, 49.142394432000081 ], [ -125.890329013999974, 49.143157693000063 ], [ -125.890418783999962, 49.143398127000069 ], [ -125.890553819999951, 49.143625091000054 ], [ -125.890605430999969, 49.143686417000069 ], [ -125.890861583999936, 49.143990803000058 ], [ -125.891019380999964, 49.144178263000079 ], [ -125.891236041999946, 49.144616861000053 ], [ -125.891370105999954, 49.145256121000031 ], [ -125.891523958999983, 49.146428834000119 ], [ -125.891527462999974, 49.14645570800009 ], [ -125.891585306999957, 49.146896412000018 ], [ -125.89174992, 49.147393500000135 ], [ -125.89197360899999, 49.147733915000082 ], [ -125.89233550199998, 49.148154709000089 ], [ -125.893145713999914, 49.148916121000056 ], [ -125.893686067999923, 49.149121881000063 ], [ -125.89519141699995, 49.149513117000019 ], [ -125.895980999999892, 49.149720022000032 ], [ -125.896771777999973, 49.150025036000045 ], [ -125.898128710999956, 49.15066722800001 ], [ -125.89841799, 49.150514478000034 ], [ -125.900244445999974, 49.150598102000068 ], [ -125.900730379999942, 49.150679567000047 ], [ -125.902928267999954, 49.150615851000033 ], [ -125.904793293999973, 49.150595012000139 ], [ -125.905141977999961, 49.150599689000032 ], [ -125.90623514399995, 49.150614276000091 ], [ -125.907504511999932, 49.150597379000025 ], [ -125.907615445999909, 49.15059747800008 ], [ -125.907607322000032, 49.151242881 ], [ -125.907827720999947, 49.151630415000106 ], [ -125.907964840999981, 49.151871479000057 ], [ -125.908561599, 49.152691092000062 ], [ -125.909154401, 49.153499999000104 ], [ -125.909519926999948, 49.154000877000058 ], [ -125.90850609899995, 49.154164006000023 ], [ -125.907022981, 49.154632594000113 ], [ -125.906641109999953, 49.15464261000006 ], [ -125.906202708999942, 49.154428987000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33254395", "BldgCostT": "20366524", "sL_LossRatio": "0.848109709163469", "sL_AssetLoss": "4041.0845", "sL_BldgLoss": "3427.283", "sL_StrLoss": "3184.8418", "sL_NStrLoss": "242.4412", "sL_ContLoss": "613.8015", "geom_point": "0101000020E610000051A6C9731A775FC0F6F33B87118F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.857981463999963, 49.119700466000097 ], [ -125.857991279999936, 49.1164816510001 ], [ -125.858080692, 49.116502290000035 ], [ -125.858875687999969, 49.116500794000046 ], [ -125.860178312999906, 49.115784492000088 ], [ -125.860955137999966, 49.115475940000103 ], [ -125.863720765999972, 49.11547947900003 ], [ -125.863710229999981, 49.11908024500012 ], [ -125.863456895999974, 49.119079924000104 ], [ -125.86345505599995, 49.119707551000026 ], [ -125.857981463999963, 49.119700466000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7298417", "BldgCostT": "4561667", "sL_LossRatio": "0.999610144254616", "sL_AssetLoss": "538.14777", "sL_BldgLoss": "537.93797", "sL_StrLoss": "536.66172", "sL_NStrLoss": "1.27625", "sL_ContLoss": "0.2098", "geom_point": "0101000020E6100000483059057F765FC021C79417328F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.85252509299994, 49.119743796000087 ], [ -125.852220085999946, 49.119698206000137 ], [ -125.850633418999934, 49.119736602000074 ], [ -125.849704913999972, 49.119579996000027 ], [ -125.84962180199993, 49.11930371100005 ], [ -125.85004051199995, 49.118491900000052 ], [ -125.849686194999947, 49.118293916000056 ], [ -125.849649806999977, 49.118141492000092 ], [ -125.849943400999948, 49.117999097000045 ], [ -125.850353399999975, 49.117980587000069 ], [ -125.851189108999947, 49.11821129100008 ], [ -125.851614210999955, 49.11820130400011 ], [ -125.852778987999955, 49.116777110000093 ], [ -125.852719479999948, 49.116463793000094 ], [ -125.85287375199999, 49.116466069000111 ], [ -125.85286276, 49.119945519000105 ], [ -125.852773435999907, 49.11994539600002 ], [ -125.85252509299994, 49.119743796000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11783667", "BldgCostT": "8126667", "sL_LossRatio": "0.998926643525945", "sL_AssetLoss": "1075.1321", "sL_BldgLoss": "1073.9781", "sL_StrLoss": "1065.691", "sL_NStrLoss": "8.2871", "sL_ContLoss": "1.154", "geom_point": "0101000020E610000088D51F6198655FC0F865F69A1A7B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.589716141999958, 48.963193366000098 ], [ -125.589686885000035, 48.963173303000104 ], [ -125.58908354299993, 48.963181151000072 ], [ -125.586939268999927, 48.963175864000029 ], [ -125.586928570999987, 48.96316897600007 ], [ -125.58680189099999, 48.96308741900004 ], [ -125.58616589499999, 48.963080522000034 ], [ -125.58594699799994, 48.962968214000057 ], [ -125.585197793999924, 48.962760308000043 ], [ -125.584698703999948, 48.961844497000051 ], [ -125.584236916999927, 48.961622297000076 ], [ -125.583780812000029, 48.961541208000078 ], [ -125.583482792999945, 48.961583889000053 ], [ -125.583464434999911, 48.961606813000117 ], [ -125.583475766999925, 48.960335308000026 ], [ -125.585886794999908, 48.960344647000042 ], [ -125.588930609999977, 48.960356360000077 ], [ -125.58892351, 48.961163706000036 ], [ -125.589742518999984, 48.961166843000072 ], [ -125.589744687999939, 48.960919668000095 ], [ -125.591389727999953, 48.960925950000046 ], [ -125.589914602999926, 48.961796986000131 ], [ -125.590877401999975, 48.962061256000077 ], [ -125.591166808999958, 48.962185702000063 ], [ -125.591430926999962, 48.96239470600009 ], [ -125.590282391999978, 48.963582003000035 ], [ -125.589716141999958, 48.963193366000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134887585", "BldgCostT": "90608335", "sL_LossRatio": "0.998870254361443", "sL_AssetLoss": "18645.436", "sL_BldgLoss": "18624.3714", "sL_StrLoss": "18462.5671", "sL_NStrLoss": "161.8043", "sL_ContLoss": "21.0646", "geom_point": "0101000020E6100000347C86689B635FC0311597BA96784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.559097224999931, 48.94971611000004 ], [ -125.558541699999964, 48.949455306000111 ], [ -125.55811790199995, 48.949698895000068 ], [ -125.557494683999906, 48.949802806000015 ], [ -125.556986995999978, 48.949750095000063 ], [ -125.556646601999915, 48.949811407000077 ], [ -125.556281000999945, 48.949567788000117 ], [ -125.555849611999918, 48.949694603000069 ], [ -125.555272194999972, 48.949347103000036 ], [ -125.55493899399994, 48.948976815000059 ], [ -125.555185909999977, 48.948755998000152 ], [ -125.555897496999975, 48.948775986000051 ], [ -125.55719041399999, 48.948422792000038 ], [ -125.557236192999966, 48.948241906000064 ], [ -125.556594005999969, 48.947447205000024 ], [ -125.556239502999986, 48.947158092000109 ], [ -125.555745692999906, 48.947132392000157 ], [ -125.554870184999956, 48.94736879500006 ], [ -125.554923107999954, 48.947600999000088 ], [ -125.555661304999916, 48.948160682000101 ], [ -125.555517816999952, 48.948280303000061 ], [ -125.555339709999927, 48.948293202000066 ], [ -125.554279112999922, 48.948100888000027 ], [ -125.55418968, 48.948102863000038 ], [ -125.554182866999938, 48.94796947300005 ], [ -125.553428818999976, 48.947986178000036 ], [ -125.55359638, 48.947846001000045 ], [ -125.55354809100001, 48.947703506000039 ], [ -125.552523563999927, 48.947574591000055 ], [ -125.552518048999971, 48.947466532000114 ], [ -125.552117278999958, 48.947475406000059 ], [ -125.55210852099999, 48.947471537000077 ], [ -125.552083626999917, 48.946983711000044 ], [ -125.55298631, 48.946609697000056 ], [ -125.553495788999953, 48.94667948799999 ], [ -125.554627112999938, 48.947148092000091 ], [ -125.555865297999972, 48.946779188000086 ], [ -125.555815116999923, 48.946357694000014 ], [ -125.556031299999944, 48.946055706000045 ], [ -125.55604908399998, 48.945866303000081 ], [ -125.555471290999918, 48.94524109300005 ], [ -125.554955514999975, 48.945027395000096 ], [ -125.554552126999937, 48.944929952000045 ], [ -125.554236491999987, 48.944853704000074 ], [ -125.553957089999955, 48.945004691000086 ], [ -125.553111292, 48.945041704000054 ], [ -125.552910879999942, 48.945117196000162 ], [ -125.552640404999963, 48.945456085000025 ], [ -125.552380001999936, 48.946235193000042 ], [ -125.552108195999892, 48.946502889000037 ], [ -125.552059040999922, 48.946501899000154 ], [ -125.552053697999924, 48.946397184000048 ], [ -125.551644384999975, 48.946406245000055 ], [ -125.551648842999967, 48.946493627000031 ], [ -125.551260613999943, 48.94648579700003 ], [ -125.550097897999976, 48.946736511999987 ], [ -125.54922420699998, 48.946728008000051 ], [ -125.549233782999963, 48.946386091000072 ], [ -125.548801090999959, 48.945937501000117 ], [ -125.548042047999957, 48.945611758000041 ], [ -125.548389737999969, 48.945401043000082 ], [ -125.548474513999977, 48.945321067000101 ], [ -125.548487176999956, 48.945291483000069 ], [ -125.548782013999954, 48.944971290000055 ], [ -125.548888097999964, 48.944856461 ], [ -125.549306906999931, 48.944401713000033 ], [ -125.550218170999955, 48.943450800000079 ], [ -125.55024201499999, 48.943425921 ], [ -125.550392234999961, 48.943397734000023 ], [ -125.55050418899999, 48.943377485000106 ], [ -125.550991906, 48.942847368000123 ], [ -125.55121433, 48.942540348000179 ], [ -125.551329467999906, 48.942330112000093 ], [ -125.551389312999916, 48.941919762000033 ], [ -125.551393518999944, 48.941622623000058 ], [ -125.551235008999981, 48.941095185000037 ], [ -125.550909744999899, 48.940614784000047 ], [ -125.550545676999931, 48.940199054000132 ], [ -125.548584348999924, 48.93904 ], [ -125.547970007999979, 48.938717800000077 ], [ -125.548424462999961, 48.9384470970001 ], [ -125.54857048799991, 48.938360109000079 ], [ -125.548778665, 48.938237666000134 ], [ -125.549128401999937, 48.9380320080001 ], [ -125.54830150699999, 48.937394992000073 ], [ -125.547912007999969, 48.937094885000072 ], [ -125.547494698999984, 48.93666848000008 ], [ -125.546746641999931, 48.935904025000177 ], [ -125.546695, 48.93585123200004 ], [ -125.545941490999894, 48.935081209000074 ], [ -125.545830324999912, 48.935159069000051 ], [ -125.545625377999954, 48.935207735000098 ], [ -125.544745861999971, 48.935246318000097 ], [ -125.544896567999942, 48.93417195600005 ], [ -125.544945782999903, 48.933630352000087 ], [ -125.545429206999984, 48.933632287000101 ], [ -125.545589410999938, 48.933546888000095 ], [ -125.545460211999938, 48.933180892000081 ], [ -125.545562498, 48.932775013000033 ], [ -125.545965697999975, 48.932648204000081 ], [ -125.54651217899999, 48.932897493000034 ], [ -125.546984212999945, 48.932796306000121 ], [ -125.547164805999969, 48.932864699000035 ], [ -125.547271901, 48.932826200000115 ], [ -125.547321599999961, 48.932474488000032 ], [ -125.547486817999967, 48.932228106000125 ], [ -125.547652687, 48.932242296 ], [ -125.548009009999987, 48.932531396000051 ], [ -125.54810955100001, 48.932570147000092 ], [ -125.548108112999969, 48.932719173000081 ], [ -125.54889713499999, 48.93270172700003 ], [ -125.548910869999986, 48.932971332000072 ], [ -125.549729274999947, 48.932953232000088 ], [ -125.549756750999961, 48.933492440000087 ], [ -125.550748246999945, 48.933470504000077 ], [ -125.550849384999964, 48.933619493000037 ], [ -125.551050390999976, 48.933813195000063 ], [ -125.551257297999925, 48.93383599000007 ], [ -125.551848106999927, 48.933446160000045 ], [ -125.55191505199997, 48.93344467800005 ], [ -125.55204451099992, 48.933467093000026 ], [ -125.552130015999978, 48.933555398000088 ], [ -125.552161007, 48.934176399000144 ], [ -125.552300599999953, 48.934236195000089 ], [ -125.552588482999909, 48.933995493000097 ], [ -125.552709683999936, 48.933696992000129 ], [ -125.553044156999974, 48.933689583000088 ], [ -125.553076226999977, 48.934318074000096 ], [ -125.552720060999931, 48.93477639400011 ], [ -125.552689968999957, 48.93477706000003 ], [ -125.552691790999987, 48.934812772000079 ], [ -125.55262189699999, 48.934902713000071 ], [ -125.552665598999923, 48.935217501000103 ], [ -125.552546373999974, 48.935320056000066 ], [ -125.552308258, 48.935325328000047 ], [ -125.552318010999969, 48.935516484000082 ], [ -125.552224293999956, 48.935597095000048 ], [ -125.551912788999971, 48.935603992000033 ], [ -125.551930372999934, 48.935948732000057 ], [ -125.55178448199996, 48.936173094 ], [ -125.551806476999971, 48.936586197000139 ], [ -125.551969423999978, 48.936714324000057 ], [ -125.552009052999907, 48.937491216000069 ], [ -125.552418292999974, 48.937482156000058 ], [ -125.552432047, 48.937751759000072 ], [ -125.557007868999932, 48.937650346000083 ], [ -125.557342923999968, 48.937642912000044 ], [ -125.557356704999975, 48.937912515000015 ], [ -125.55776594699995, 48.937903435000109 ], [ -125.557739695999928, 48.937389988000085 ], [ -125.557816893, 48.937425008000091 ], [ -125.557869459999935, 48.937361322000065 ], [ -125.558966085999913, 48.937336982000026 ], [ -125.558979875999938, 48.937606584000051 ], [ -125.56020758699999, 48.937579323000101 ], [ -125.56022138599991, 48.937848924000036 ], [ -125.561039863999952, 48.937830742000052 ], [ -125.561053664999989, 48.938100345000052 ], [ -125.561462905999988, 48.938091250000106 ], [ -125.561504319999983, 48.938900055 ], [ -125.561095071999972, 48.938909148000072 ], [ -125.561108872999952, 48.939178750000075 ], [ -125.561518123999974, 48.939169656000068 ], [ -125.561531928999969, 48.939439257000117 ], [ -125.56194118099999, 48.939430163000047 ], [ -125.561954987999968, 48.939699764000075 ], [ -125.56400125499998, 48.939654266000062 ], [ -125.564028891999939, 48.940193468000103 ], [ -125.56443814899994, 48.940184364000089 ], [ -125.564479611999971, 48.940993166000098 ], [ -125.56407034899999, 48.941002271000045 ], [ -125.56409799, 48.941541472000054 ], [ -125.564916524999916, 48.941523261000064 ], [ -125.564985648999937, 48.942871264000061 ], [ -125.564576369999912, 48.942880370000097 ], [ -125.564593114999951, 48.94320695800014 ], [ -125.565052417999951, 48.943208823000134 ], [ -125.565051437999941, 48.94331406900006 ], [ -125.565799896999962, 48.943317105000055 ], [ -125.56576787499999, 48.946765184000107 ], [ -125.56576644899998, 48.946918779000093 ], [ -125.565602976999983, 48.946918117000067 ], [ -125.565630024999976, 48.947445360000096 ], [ -125.566039341999911, 48.947436249000113 ], [ -125.566122344999968, 48.949053850000034 ], [ -125.565898691, 48.949058827000037 ], [ -125.565417202999967, 48.94873609200009 ], [ -125.564456078999982, 48.947838799000131 ], [ -125.563791003999967, 48.947673595000076 ], [ -125.56295291, 48.947314696000021 ], [ -125.562693187999955, 48.947293397000074 ], [ -125.562414694000012, 48.947471391000107 ], [ -125.562493787999969, 48.947658001000057 ], [ -125.562820488999961, 48.947930001000039 ], [ -125.563395094999976, 48.948204911000097 ], [ -125.563632423999934, 48.948446385000025 ], [ -125.563652545999929, 48.948838894000119 ], [ -125.563243217999954, 48.94884799600004 ], [ -125.563257037999946, 48.949117597000097 ], [ -125.562847706999946, 48.949126698000015 ], [ -125.562861523999956, 48.949396299000057 ], [ -125.561633523999916, 48.94942359300007 ], [ -125.56164733599995, 48.949693195000094 ], [ -125.560871, 48.949710443000093 ], [ -125.560862075, 48.95066059100008 ], [ -125.560454116999921, 48.950658919000027 ], [ -125.559659993999929, 48.950231502000101 ], [ -125.559200082999951, 48.949764399000074 ], [ -125.559097224999931, 48.94971611000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1428571710", "BldgCostT": "929561107", "sL_LossRatio": "0.772870449657595", "sL_AssetLoss": "115270.20487", "sL_BldgLoss": "89088.93507", "sL_StrLoss": "77229.53897", "sL_NStrLoss": "11859.3961", "sL_ContLoss": "26181.2698", "geom_point": "0101000020E6100000F7065593F5625FC08142041C42784840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.545378496999959, 48.941818809000047 ], [ -125.54525218699996, 48.941770511000108 ], [ -125.545297174999945, 48.941909383000088 ], [ -125.545294250999959, 48.942067858000087 ], [ -125.545085583999978, 48.942078660000092 ], [ -125.544894902999914, 48.942057172000034 ], [ -125.54365497799995, 48.941684825000017 ], [ -125.543450104, 48.941623301000057 ], [ -125.543216517999966, 48.941531388000122 ], [ -125.5431257799999, 48.941468810000082 ], [ -125.542419655999964, 48.940896464000019 ], [ -125.541562308999971, 48.94020150200005 ], [ -125.542028090999978, 48.939964011000029 ], [ -125.542692492999961, 48.939628197000104 ], [ -125.543651503999939, 48.939140705000085 ], [ -125.542747608999917, 48.938184112000037 ], [ -125.542181416999981, 48.937538803000095 ], [ -125.541658907999988, 48.936883712000117 ], [ -125.540936980999945, 48.935998176000105 ], [ -125.540607435999959, 48.935690607000062 ], [ -125.542248378999915, 48.935287013000092 ], [ -125.543208436999933, 48.935100207000055 ], [ -125.54358328799999, 48.935095500000074 ], [ -125.544510143, 48.935237205000078 ], [ -125.544745861999971, 48.935246318000097 ], [ -125.545625377999954, 48.935207735000098 ], [ -125.545830324999912, 48.935159069000051 ], [ -125.545941490999894, 48.935081209000074 ], [ -125.546695, 48.93585123200004 ], [ -125.546746641999931, 48.935904025000177 ], [ -125.547494698999984, 48.93666848000008 ], [ -125.547912007999969, 48.937094885000072 ], [ -125.54830150699999, 48.937394992000073 ], [ -125.549128401999937, 48.9380320080001 ], [ -125.548778665, 48.938237666000134 ], [ -125.54857048799991, 48.938360109000079 ], [ -125.548424462999961, 48.9384470970001 ], [ -125.547970007999979, 48.938717800000077 ], [ -125.548584348999924, 48.93904 ], [ -125.550545676999931, 48.940199054000132 ], [ -125.550909744999899, 48.940614784000047 ], [ -125.551235008999981, 48.941095185000037 ], [ -125.551393518999944, 48.941622623000058 ], [ -125.551389312999916, 48.941919762000033 ], [ -125.551329467999906, 48.942330112000093 ], [ -125.55121433, 48.942540348000179 ], [ -125.550991906, 48.942847368000123 ], [ -125.55050418899999, 48.943377485000106 ], [ -125.550392234999961, 48.943397734000023 ], [ -125.55024201499999, 48.943425921 ], [ -125.550218170999955, 48.943450800000079 ], [ -125.549306906999931, 48.944401713000033 ], [ -125.548219132000028, 48.943968488000081 ], [ -125.547007634999957, 48.943497838000084 ], [ -125.54625273299996, 48.943179494000113 ], [ -125.546301840999931, 48.942054114000015 ], [ -125.54574709299996, 48.94204640400006 ], [ -125.545378496999959, 48.941818809000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995381314325199", "sL_AssetLoss": "274.97", "sL_BldgLoss": "273.7", "sL_StrLoss": "263", "sL_NStrLoss": "10.7", "sL_ContLoss": "1.27", "geom_point": "0101000020E610000086EA419CA2615FC0EBCDE2A434764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.525020179999956, 48.923245424000058 ], [ -125.526234144999989, 48.923250799000108 ], [ -125.526243107999946, 48.923365207000131 ], [ -125.52616969499995, 48.92351188900011 ], [ -125.525957912999928, 48.923641501000169 ], [ -125.524965700000024, 48.923835107000045 ], [ -125.524966251999928, 48.923780724000039 ], [ -125.525014743, 48.923780938000093 ], [ -125.525020179999956, 48.923245424000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119707166", "BldgCostT": "82556666", "sL_LossRatio": "0.998761829316794", "sL_AssetLoss": "24959.62828", "sL_BldgLoss": "24928.724", "sL_StrLoss": "24675.793", "sL_NStrLoss": "252.931", "sL_ContLoss": "30.90428", "geom_point": "0101000020E61000008EF379BD62625FC087D2E65154774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.544077310999953, 48.94224449700009 ], [ -125.543226353999941, 48.942029614000035 ], [ -125.543225044999971, 48.942003875000097 ], [ -125.543161808999969, 48.942005269000042 ], [ -125.543033714, 48.94193857300013 ], [ -125.542828080999968, 48.941831502000056 ], [ -125.542805490999967, 48.941810759000099 ], [ -125.54280319199998, 48.941765541000045 ], [ -125.542773111999921, 48.941765413000063 ], [ -125.542773321999945, 48.94174393200008 ], [ -125.542733666999951, 48.941744807000099 ], [ -125.542139498999958, 48.941199208000079 ], [ -125.540889677999971, 48.940254899000138 ], [ -125.540673829999903, 48.940177021000054 ], [ -125.54067351399999, 48.940170788000025 ], [ -125.540657530999965, 48.940171139000078 ], [ -125.540068699999921, 48.939958686000082 ], [ -125.539415914999921, 48.93961073200007 ], [ -125.539404964999946, 48.939395007 ], [ -125.539404659999889, 48.939389024000079 ], [ -125.539016044000022, 48.939397585000108 ], [ -125.538917211999888, 48.939344903000126 ], [ -125.538004584999911, 48.938816506000137 ], [ -125.537300305999963, 48.938289388000044 ], [ -125.537276320000032, 48.937816446000085 ], [ -125.536987812999953, 48.937822797000095 ], [ -125.53603519, 48.936349712000087 ], [ -125.535814094000017, 48.935220296000089 ], [ -125.535427307999939, 48.934616502000061 ], [ -125.53520789699999, 48.93456799100003 ], [ -125.535174990000016, 48.934748895000048 ], [ -125.534958075999924, 48.934753195000056 ], [ -125.531908287999954, 48.933344698000091 ], [ -125.531903670999966, 48.933343478000054 ], [ -125.531914087999951, 48.932302624000059 ], [ -125.5356531, 48.932318894000069 ], [ -125.535711100999947, 48.932370485000057 ], [ -125.535815685000031, 48.932827691000149 ], [ -125.535618488999958, 48.93324499000007 ], [ -125.53505710499995, 48.93375201 ], [ -125.535179988999971, 48.934011210000072 ], [ -125.535417882, 48.93413079700013 ], [ -125.536477288999919, 48.933747693000115 ], [ -125.536463116999926, 48.933217900000017 ], [ -125.536579684999964, 48.933079796000094 ], [ -125.536633889999962, 48.933080341000064 ], [ -125.537427203999968, 48.933088304000066 ], [ -125.537758808999953, 48.932928787000044 ], [ -125.536992669999961, 48.932222787000072 ], [ -125.53698921799996, 48.932154706000077 ], [ -125.536920432999963, 48.932156220000046 ], [ -125.53687169799997, 48.932111309000035 ], [ -125.536568112999987, 48.931928873000103 ], [ -125.536566351999937, 48.931894105000033 ], [ -125.536512239, 48.931895295000082 ], [ -125.536264994999911, 48.931746715000045 ], [ -125.536144350999933, 48.931650526000062 ], [ -125.536129822999939, 48.931363896000079 ], [ -125.535794112999923, 48.931371280000043 ], [ -125.535717449999979, 48.931310158000137 ], [ -125.535706966999967, 48.931103290000117 ], [ -125.535472462999948, 48.931108449000092 ], [ -125.535287669999917, 48.930912832000097 ], [ -125.5352766, 48.930694323000083 ], [ -125.535080447999945, 48.930693472000058 ], [ -125.535021907000015, 48.930631499000164 ], [ -125.534328807999913, 48.930160084000072 ], [ -125.534373, 48.929962187000086 ], [ -125.534597688999966, 48.929804103000059 ], [ -125.535529196999946, 48.929351189000037 ], [ -125.535851697999988, 48.929245798000068 ], [ -125.536539677999912, 48.929338398000056 ], [ -125.536739117999915, 48.929244406000109 ], [ -125.536800899999932, 48.929099089000083 ], [ -125.536617119999974, 48.928697504000091 ], [ -125.535785189999956, 48.927907008000055 ], [ -125.534984690999948, 48.927744711000095 ], [ -125.534018192999966, 48.927793097000098 ], [ -125.533693808999914, 48.927889895000099 ], [ -125.533504894999936, 48.928442506000117 ], [ -125.533358499999935, 48.928526608000013 ], [ -125.53209298199998, 48.928599196000036 ], [ -125.531718801999915, 48.928499504000065 ], [ -125.531443709999934, 48.928209003000106 ], [ -125.531384012999979, 48.927814507000029 ], [ -125.53154158299999, 48.92768480100009 ], [ -125.531886617999973, 48.927794503000065 ], [ -125.532033897999952, 48.927737498000063 ], [ -125.5322522929999, 48.927444194000067 ], [ -125.532209110999972, 48.927120905000038 ], [ -125.531090792999947, 48.926094001000138 ], [ -125.530572586999966, 48.925816306000073 ], [ -125.529682200999929, 48.925512900000122 ], [ -125.529025000999951, 48.925464508000111 ], [ -125.528365524999984, 48.925649702000065 ], [ -125.527932592999932, 48.925999990000058 ], [ -125.528122411999973, 48.926230692 ], [ -125.527908586999942, 48.926351810000085 ], [ -125.527080421999969, 48.926320401000055 ], [ -125.526705899000021, 48.926306199000066 ], [ -125.526426393999913, 48.926457206000094 ], [ -125.52640740799994, 48.926450061000018 ], [ -125.525632691999988, 48.926159502000097 ], [ -125.525692520999911, 48.925977204000048 ], [ -125.526221604999975, 48.925903191000096 ], [ -125.526539795999966, 48.925168314000054 ], [ -125.52670959699995, 48.925011590000111 ], [ -125.527231015, 48.924800794000092 ], [ -125.527843891999964, 48.924760914000082 ], [ -125.528051908999913, 48.924577198000115 ], [ -125.528541505999954, 48.924557302000103 ], [ -125.528741213999922, 48.924417697000081 ], [ -125.528779906999929, 48.92412008400008 ], [ -125.528361926999978, 48.923260188000029 ], [ -125.530470671999964, 48.923269452000127 ], [ -125.530470158999947, 48.923320501000056 ], [ -125.531344541999957, 48.923324330000106 ], [ -125.531343004999897, 48.923477806000079 ], [ -125.53177965899998, 48.923479715000056 ], [ -125.532024196999942, 48.923761214000066 ], [ -125.532095753, 48.923797908000047 ], [ -125.532090315999966, 48.924341433000045 ], [ -125.533763636999936, 48.924348729000037 ], [ -125.534147686999958, 48.924424799000114 ], [ -125.534347619999949, 48.924351269000034 ], [ -125.53475647099998, 48.924353046000121 ], [ -125.53475269700003, 48.924732648000102 ], [ -125.538360156999943, 48.924748254000058 ], [ -125.538351268999989, 48.925648800000026 ], [ -125.538364407999921, 48.925648856000123 ], [ -125.538337785999957, 48.928346309000069 ], [ -125.538434540999958, 48.928344177000064 ], [ -125.538530274999985, 48.930231424000063 ], [ -125.538121090999979, 48.93024043500003 ], [ -125.538148439999972, 48.930779648000062 ], [ -125.539785192999915, 48.930743595000123 ], [ -125.539798876999953, 48.931013203000063 ], [ -125.540208064999916, 48.931004185000099 ], [ -125.54022175299994, 48.931273791000102 ], [ -125.540630944999947, 48.931264772000091 ], [ -125.54067201099997, 48.932073591000048 ], [ -125.541081208999969, 48.93206457100009 ], [ -125.541105264999942, 48.932538275000063 ], [ -125.542234554999979, 48.932543106 ], [ -125.54223476599999, 48.93252163800004 ], [ -125.542245877999932, 48.932532898000076 ], [ -125.541787714999955, 48.933180894000088 ], [ -125.541274487999942, 48.933318999000093 ], [ -125.54111027799999, 48.933583895000034 ], [ -125.540707000999987, 48.933682194000056 ], [ -125.540588387999918, 48.933783303000062 ], [ -125.540675774999983, 48.934142196000032 ], [ -125.541108192999957, 48.934582288000037 ], [ -125.541302594999962, 48.934649207000099 ], [ -125.542377687999974, 48.93430169700013 ], [ -125.542716707999929, 48.934267594000083 ], [ -125.543048985000013, 48.93436869900011 ], [ -125.543559299999941, 48.934203497000077 ], [ -125.544372978999988, 48.934365795000076 ], [ -125.544771909999966, 48.93414079800008 ], [ -125.544732594999957, 48.933629498000109 ], [ -125.544945782999903, 48.933630352000087 ], [ -125.544896567999942, 48.93417195600005 ], [ -125.544745861999971, 48.935246318000097 ], [ -125.544510143, 48.935237205000078 ], [ -125.54358328799999, 48.935095500000074 ], [ -125.543208436999933, 48.935100207000055 ], [ -125.542248378999915, 48.935287013000092 ], [ -125.540607435999959, 48.935690607000062 ], [ -125.540936980999945, 48.935998176000105 ], [ -125.541658907999988, 48.936883712000117 ], [ -125.542181416999981, 48.937538803000095 ], [ -125.542747608999917, 48.938184112000037 ], [ -125.543651503999939, 48.939140705000085 ], [ -125.542692492999961, 48.939628197000104 ], [ -125.542028090999978, 48.939964011000029 ], [ -125.541562308999971, 48.94020150200005 ], [ -125.542419655999964, 48.940896464000019 ], [ -125.5431257799999, 48.941468810000082 ], [ -125.543216517999966, 48.941531388000122 ], [ -125.543450104, 48.941623301000057 ], [ -125.54365497799995, 48.941684825000017 ], [ -125.544894902999914, 48.942057172000034 ], [ -125.545085583999978, 48.942078660000092 ], [ -125.545294250999959, 48.942067858000087 ], [ -125.545297174999945, 48.941909383000088 ], [ -125.54525218699996, 48.941770511000108 ], [ -125.545378496999959, 48.941818809000047 ], [ -125.54574709299996, 48.94204640400006 ], [ -125.546301840999931, 48.942054114000015 ], [ -125.54625273299996, 48.943179494000113 ], [ -125.547007634999957, 48.943497838000084 ], [ -125.548219132000028, 48.943968488000081 ], [ -125.549306906999931, 48.944401713000033 ], [ -125.548888097999964, 48.944856461 ], [ -125.548782013999954, 48.944971290000055 ], [ -125.548487176999956, 48.945291483000069 ], [ -125.548474513999977, 48.945321067000101 ], [ -125.548389737999969, 48.945401043000082 ], [ -125.548042047999957, 48.945611758000041 ], [ -125.547822186999966, 48.945517403000046 ], [ -125.547326093, 48.945159897000117 ], [ -125.546611209999952, 48.944798197000054 ], [ -125.54551368099996, 48.943094795000043 ], [ -125.544677616999977, 48.942753003000114 ], [ -125.544578376999965, 48.942604539000037 ], [ -125.544530020999957, 48.942532199000013 ], [ -125.544077310999953, 48.94224449700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99845137467821", "sL_AssetLoss": "594.721", "sL_BldgLoss": "593.8", "sL_StrLoss": "586", "sL_NStrLoss": "7.8", "sL_ContLoss": "0.921", "geom_point": "0101000020E6100000C2E5CA0305625FC0CC8DF17A13774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.530667899999955, 48.930674234000101 ], [ -125.53067757299999, 48.929710060000026 ], [ -125.530351043999985, 48.929708629000032 ], [ -125.53035733899999, 48.929081770000025 ], [ -125.530426196999926, 48.929130403000038 ], [ -125.530810020000018, 48.929698701000056 ], [ -125.531108406999948, 48.929925092000104 ], [ -125.533685712999926, 48.930669999000024 ], [ -125.533716435999963, 48.930687545000104 ], [ -125.530667899999955, 48.930674234000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30033083", "BldgCostT": "19238333", "sL_LossRatio": "0.998396754633889", "sL_AssetLoss": "4395.5842", "sL_BldgLoss": "4388.537", "sL_StrLoss": "4337.6424", "sL_NStrLoss": "50.8946", "sL_ContLoss": "7.0472", "geom_point": "0101000020E61000005423AAA69A625FC04F072E6636764840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.53894878899996, 48.926029059000037 ], [ -125.538969496999982, 48.923927937000059 ], [ -125.538578897999926, 48.923926256000058 ], [ -125.538582751999982, 48.923535504000043 ], [ -125.538361612999921, 48.923534551000046 ], [ -125.538385297999966, 48.921134431000063 ], [ -125.538429687999923, 48.921119206000057 ], [ -125.538841089999949, 48.921136295000075 ], [ -125.539340009999989, 48.9212788090001 ], [ -125.540076687999985, 48.921001 ], [ -125.540692977999939, 48.921032395000118 ], [ -125.541472012, 48.920773201000024 ], [ -125.541896211999969, 48.920798792000021 ], [ -125.541820091999966, 48.921187593000063 ], [ -125.542386393999934, 48.92160770400011 ], [ -125.54309710199999, 48.921869788000031 ], [ -125.54322748599999, 48.922012194000047 ], [ -125.54215510299997, 48.922943706000105 ], [ -125.542004786999925, 48.92319861000005 ], [ -125.542128401999918, 48.92348489100003 ], [ -125.54203978, 48.92391779600009 ], [ -125.542116690999976, 48.924095794000024 ], [ -125.542909788999921, 48.924357910000033 ], [ -125.543650584999966, 48.924988790000107 ], [ -125.543514478999967, 48.925253694000034 ], [ -125.54276049399999, 48.925719389000037 ], [ -125.542567959999943, 48.926044573000084 ], [ -125.53894878899996, 48.926029059000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.991104685497413", "sL_AssetLoss": "865.287", "sL_BldgLoss": "857.59", "sL_StrLoss": "814.5", "sL_NStrLoss": "43.09", "sL_ContLoss": "7.697", "geom_point": "0101000020E6100000D8325339F1365FC0A3A7AF84419B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.859910960999954, 49.211151816000076 ], [ -124.861259187999977, 49.211166062000061 ], [ -124.861213595999956, 49.213026395000099 ], [ -124.861170963999911, 49.214765842000126 ], [ -124.85926046699997, 49.214745649000044 ], [ -124.855686883999965, 49.214707788000084 ], [ -124.855775530999964, 49.211108012000068 ], [ -124.859910960999954, 49.211151816000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.991672422958719", "sL_AssetLoss": "511.4693", "sL_BldgLoss": "507.21", "sL_StrLoss": "473.7", "sL_NStrLoss": "33.51", "sL_ContLoss": "4.2593", "geom_point": "0101000020E610000064E89625D33F5FC0DE2C149F719E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.994590900999967, 49.238899740000114 ], [ -124.994621428999949, 49.237489638000092 ], [ -124.994635473999963, 49.23684086100009 ], [ -124.998775039999956, 49.236879354000052 ], [ -125.000122331999989, 49.23689184800007 ], [ -125.000086597999925, 49.238551498000078 ], [ -124.999852078999979, 49.238555597000058 ], [ -124.999709403999987, 49.23846728500007 ], [ -124.99960159199999, 49.23850571400007 ], [ -124.999064608999959, 49.238793397000087 ], [ -124.998683797999917, 49.238881706000015 ], [ -124.998019702999969, 49.238793408000063 ], [ -124.996871312999943, 49.238824484000126 ], [ -124.996781178, 49.238826919000132 ], [ -124.996523599999932, 49.238833885000126 ], [ -124.996072095999978, 49.238846105000079 ], [ -124.995278408999965, 49.238931602000079 ], [ -124.994965513999929, 49.239044095000054 ], [ -124.994590900999967, 49.238899740000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.964146579011444", "sL_AssetLoss": "1642.8", "sL_BldgLoss": "1583.9", "sL_StrLoss": "1365", "sL_NStrLoss": "218.9", "sL_ContLoss": "58.9", "geom_point": "0101000020E6100000A9049BA5AA345FC00B611488C79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.822233232999949, 49.247066155000084 ], [ -124.821774531999921, 49.246253329000076 ], [ -124.82196942099992, 49.246255457000053 ], [ -124.821956093999972, 49.246276210000076 ], [ -124.822041889999966, 49.246364512000106 ], [ -124.822770899999966, 49.246264203000045 ], [ -124.82506387399998, 49.246289192000113 ], [ -124.824972777999918, 49.249888750000103 ], [ -124.820888069999938, 49.24984420000002 ], [ -124.819494971, 49.249420734000076 ], [ -124.819497545999965, 49.249319540000052 ], [ -124.820537883, 49.248462631000145 ], [ -124.822233232999949, 49.247066155000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997286164283984", "sL_AssetLoss": "206.35", "sL_BldgLoss": "205.79", "sL_StrLoss": "199", "sL_NStrLoss": "6.79", "sL_ContLoss": "0.56", "geom_point": "0101000020E610000051F402E4F2375FC0E99C5DC666A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.873569161999939, 49.254132129 ], [ -124.87354874, 49.25359270400002 ], [ -124.873136704999951, 49.253599388000069 ], [ -124.873085660999948, 49.252250826000058 ], [ -124.875145777999947, 49.252217396000056 ], [ -124.875217314999929, 49.254105380000055 ], [ -124.873569161999939, 49.254132129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.973755743964792", "sL_AssetLoss": "3090.2", "sL_BldgLoss": "3009.1", "sL_StrLoss": "2606", "sL_NStrLoss": "403.1", "sL_ContLoss": "81.1", "geom_point": "0101000020E61000008E258B7F48385FC03B72A43330A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.877980994999959, 49.253662459000083 ], [ -124.877993376999925, 49.253150195000075 ], [ -124.875264223999949, 49.253121791000083 ], [ -124.875292767999909, 49.251943677000035 ], [ -124.875349104999927, 49.24961810700011 ], [ -124.875351428999963, 49.249522209000105 ], [ -124.876373353999966, 49.24953285300009 ], [ -124.87638140699994, 49.249200133000024 ], [ -124.881869587, 49.249257132000018 ], [ -124.881862493999989, 49.249551643000117 ], [ -124.881849236999955, 49.250102119000132 ], [ -124.883556273999929, 49.250119792000092 ], [ -124.883552498999933, 49.250276806000038 ], [ -124.883469705999957, 49.253719376000049 ], [ -124.877980994999959, 49.253662459000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.993418276035681", "sL_AssetLoss": "1532.5468", "sL_BldgLoss": "1522.46", "sL_StrLoss": "1461.6", "sL_NStrLoss": "60.86", "sL_ContLoss": "10.0868", "geom_point": "0101000020E61000002016FFB1EF3A5FC093CF021FC9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.918493060999964, 49.274984885000016 ], [ -124.918482595999961, 49.274715181000033 ], [ -124.91807039599999, 49.274722026000106 ], [ -124.918039011999952, 49.273912914000107 ], [ -124.918863397999985, 49.27389922100005 ], [ -124.918821536999971, 49.272820405000118 ], [ -124.918409353999948, 49.272827252000091 ], [ -124.918398891, 49.272557547000169 ], [ -124.917162345999913, 49.272578079 ], [ -124.917183258999941, 49.273117487000064 ], [ -124.91553451, 49.273144843000118 ], [ -124.915494664999969, 49.272116169000064 ], [ -124.915492722999957, 49.272066024000026 ], [ -124.915531963999939, 49.272065373000025 ], [ -124.915904899999958, 49.272059187000067 ], [ -124.915886437999973, 49.271582612000039 ], [ -124.915884003999949, 49.271519778000055 ], [ -124.915933171999981, 49.271518962000101 ], [ -124.916296177, 49.271512940000036 ], [ -124.916285726999931, 49.271243236000011 ], [ -124.91669789800001, 49.271236397000095 ], [ -124.916676993999985, 49.270696987000058 ], [ -124.917089158999929, 49.270690147000032 ], [ -124.917078703999934, 49.270420442000059 ], [ -124.91749086899992, 49.270413601 ], [ -124.917480411999989, 49.270143896000057 ], [ -124.918304733999918, 49.270130208000062 ], [ -124.918283813, 49.269590799000099 ], [ -124.918695970999977, 49.269583954000069 ], [ -124.918685506999964, 49.269314250000058 ], [ -124.919097660999952, 49.269307402000038 ], [ -124.919087197999929, 49.269037698000076 ], [ -124.921147955, 49.269003439000087 ], [ -124.921127002999967, 49.268464030000111 ], [ -124.921539149999944, 49.268457175000087 ], [ -124.921528672999955, 49.26818747100009 ], [ -124.921940817999911, 49.268180613 ], [ -124.921930337999953, 49.267910909000101 ], [ -124.922342479999912, 49.267904051000052 ], [ -124.922331996999944, 49.267634347000119 ], [ -124.923568415999938, 49.267613761000085 ], [ -124.923662820999979, 49.270041094000057 ], [ -124.92325066099994, 49.270047958000092 ], [ -124.923261149999959, 49.270317661000036 ], [ -124.922848987999899, 49.270324524000053 ], [ -124.922859473999921, 49.270594228000078 ], [ -124.923683801999914, 49.270580501000097 ], [ -124.92370478399999, 49.271119908000031 ], [ -124.925353455999982, 49.27109243700005 ], [ -124.925416457999987, 49.272710657000061 ], [ -124.92459209499999, 49.272724396000072 ], [ -124.92460259299996, 49.272994099000115 ], [ -124.924190407999944, 49.273000966000069 ], [ -124.924253375999953, 49.274619186000088 ], [ -124.922192385999935, 49.27465350300006 ], [ -124.922202870999953, 49.274923206000068 ], [ -124.918493060999964, 49.274984885000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999317619753387", "sL_AssetLoss": "46.0154", "sL_BldgLoss": "45.984", "sL_StrLoss": "45.3", "sL_NStrLoss": "0.684", "sL_ContLoss": "0.0314", "geom_point": "0101000020E6100000549C5901F4395FC0F6E8D34B889F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.903090977999952, 49.247197695000068 ], [ -124.90252831199993, 49.247189108000072 ], [ -124.902319500999951, 49.247243702000077 ], [ -124.902338666999981, 49.246433035000095 ], [ -124.902359796, 49.245539274000123 ], [ -124.903736931999958, 49.245553273000048 ], [ -124.903745762999975, 49.245179207000099 ], [ -124.909233501999964, 49.245234814000113 ], [ -124.909220836999978, 49.245773970000073 ], [ -124.909206001999962, 49.246405361000065 ], [ -124.908956600999886, 49.246427198000049 ], [ -124.908400676999975, 49.246602213000095 ], [ -124.90787091199995, 49.246769001000104 ], [ -124.907087412999957, 49.246781798000058 ], [ -124.906731319999949, 49.247042987000107 ], [ -124.906499103999948, 49.247213306000056 ], [ -124.906435013999982, 49.247656303000028 ], [ -124.906147943999926, 49.247753518000081 ], [ -124.905795812999926, 49.247872806000089 ], [ -124.905015300999963, 49.247912603000032 ], [ -124.904785442, 49.247889341000068 ], [ -124.904255591999927, 49.247835715000114 ], [ -124.903885186999958, 49.247814407000085 ], [ -124.903534108999949, 49.247622090000043 ], [ -124.903204062999961, 49.247305989000026 ], [ -124.903090977999952, 49.247197695000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67927750", "BldgCostT": "44845000", "sL_LossRatio": "0.992869420119246", "sL_AssetLoss": "24742.9526", "sL_BldgLoss": "24566.521", "sL_StrLoss": "23503.521", "sL_NStrLoss": "1063", "sL_ContLoss": "176.4316", "geom_point": "0101000020E610000025705FC5313A5FC0D79FAB4A2EA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.903615303999942, 49.288146403000013 ], [ -124.903196995999963, 49.28812328900009 ], [ -124.902070980999966, 49.288281010000091 ], [ -124.901993464999947, 49.288297409000037 ], [ -124.901587912999958, 49.288383189000072 ], [ -124.901210920999958, 49.288524294000055 ], [ -124.90098111399999, 49.288774001000078 ], [ -124.899591501999979, 49.288467297000054 ], [ -124.89887852299999, 49.288244009000024 ], [ -124.898027192999947, 49.287941010000104 ], [ -124.897388893999974, 49.287633892000052 ], [ -124.896667491999921, 49.28706940000005 ], [ -124.89632269699996, 49.286726597000055 ], [ -124.895192276, 49.284822093000095 ], [ -124.894703793, 49.284056599000067 ], [ -124.893976947999988, 49.282693467000072 ], [ -124.893897898999938, 49.282545200000129 ], [ -124.893657917, 49.282242997000047 ], [ -124.893381680999966, 49.282021505000017 ], [ -124.892712610999951, 49.281664331000101 ], [ -124.892367279999945, 49.281479990000044 ], [ -124.892349907, 49.281116211000032 ], [ -124.891908293999975, 49.280285415000108 ], [ -124.891527793999927, 49.279717209000111 ], [ -124.891504396999977, 49.279692394000072 ], [ -124.89124917499997, 49.279421789000025 ], [ -124.89088918799996, 49.279143614000084 ], [ -124.890454996999978, 49.278635095000027 ], [ -124.890356193999963, 49.278460304000113 ], [ -124.890439087999965, 49.278153300000042 ], [ -124.89044043399997, 49.278117783000027 ], [ -124.890476496999909, 49.27716359300004 ], [ -124.890889594999976, 49.277284904000091 ], [ -124.891282898, 49.277437402000061 ], [ -124.891802598999959, 49.277698414000085 ], [ -124.892354180000012, 49.277886811000123 ], [ -124.89267617899992, 49.27791889800006 ], [ -124.89329910399999, 49.277881199000049 ], [ -124.893505495999975, 49.277806806000029 ], [ -124.893995897999957, 49.277571492000085 ], [ -124.89421631099998, 49.277543986000062 ], [ -124.894456304999963, 49.277557294000118 ], [ -124.895200678999942, 49.277723287000065 ], [ -124.89625160199995, 49.277821409000076 ], [ -124.898352009999883, 49.2778517960001 ], [ -124.898718036999966, 49.277905641000125 ], [ -124.898454773999958, 49.275277782000124 ], [ -124.90094062299994, 49.27530310900007 ], [ -124.900872986999957, 49.2781583760001 ], [ -124.901651768999969, 49.278166299000098 ], [ -124.901566550999974, 49.281765746000147 ], [ -124.897391771999963, 49.28172320800013 ], [ -124.897365757999978, 49.282817736000034 ], [ -124.898762558999977, 49.282831986000119 ], [ -124.898756113999937, 49.283103503000092 ], [ -124.901713064999953, 49.283133611000082 ], [ -124.901683112999976, 49.2843987400001 ], [ -124.901649956999918, 49.285799088 ], [ -124.901917916999963, 49.285801812000031 ], [ -124.901892769999918, 49.286864139000066 ], [ -124.902038786000034, 49.286861735000024 ], [ -124.902043567999954, 49.286986032000108 ], [ -124.903357433999957, 49.286999378000111 ], [ -124.903343897999946, 49.287571970000073 ], [ -124.90370421599999, 49.287575628000027 ], [ -124.903704896999955, 49.287546823000078 ], [ -124.904230241000022, 49.28755215300005 ], [ -124.904233082999923, 49.287431836000088 ], [ -124.905708177999941, 49.287446789000043 ], [ -124.905709627999926, 49.287385273000083 ], [ -124.906080790999937, 49.287389032000092 ], [ -124.906088131999965, 49.287077782000047 ], [ -124.906686714999978, 49.287083842000143 ], [ -124.906694225999985, 49.28676519599999 ], [ -124.908869702999979, 49.286787193000059 ], [ -124.908889284999958, 49.285954649000061 ], [ -124.909225553999988, 49.285958045000037 ], [ -124.909244318, 49.285160056000088 ], [ -124.90934375599997, 49.2851610600001 ], [ -124.909360354999961, 49.284455056000105 ], [ -124.909972749999937, 49.284461239000088 ], [ -124.909983456999981, 49.284005571000115 ], [ -124.911111032999912, 49.284016944000058 ], [ -124.911123039999964, 49.283505398000052 ], [ -124.911644181999947, 49.28351065100005 ], [ -124.911649833999931, 49.283269711000109 ], [ -124.912360010999976, 49.283276864000108 ], [ -124.912375543999985, 49.282614326000086 ], [ -124.913076111999885, 49.282621379000034 ], [ -124.913089647999939, 49.282043643000101 ], [ -124.91372772099993, 49.282050062000096 ], [ -124.91373764599993, 49.281626158000115 ], [ -124.915970604, 49.281648593000071 ], [ -124.91597125899996, 49.281620515000036 ], [ -124.916287295999965, 49.281623686000067 ], [ -124.916294362999906, 49.281321122000072 ], [ -124.916640827999942, 49.281324597000051 ], [ -124.916643857999986, 49.281194830000054 ], [ -124.917060558999978, 49.281199009000076 ], [ -124.917066055999939, 49.280963540000059 ], [ -124.917323880999945, 49.280966125000049 ], [ -124.91734965399999, 49.279861671000027 ], [ -124.917032464999977, 49.279866936000118 ], [ -124.917001092999911, 49.279057823000102 ], [ -124.918237799999972, 49.279037292000048 ], [ -124.918262547999973, 49.279675145000063 ], [ -124.918415053999979, 49.279676672000029 ], [ -124.918426203999914, 49.279198369000078 ], [ -124.91860499900001, 49.279200159000013 ], [ -124.918613317, 49.278843273000049 ], [ -124.919091127999934, 49.278848056000129 ], [ -124.919092601999978, 49.278784785000049 ], [ -124.91951342099999, 49.278788995000063 ], [ -124.91951441799992, 49.278746206000086 ], [ -124.919464035999965, 49.278747043000116 ], [ -124.919432625999917, 49.277937932000064 ], [ -124.919844850999937, 49.277931081000069 ], [ -124.919834379999941, 49.277661377000094 ], [ -124.920246603999928, 49.277654524000098 ], [ -124.920236129, 49.277384821000105 ], [ -124.920612000999938, 49.277378571000078 ], [ -124.920623552, 49.276882017000069 ], [ -124.921298384999972, 49.276888760000105 ], [ -124.92130404000001, 49.276645534000053 ], [ -124.921906905999975, 49.276651554000054 ], [ -124.92190701499996, 49.276646849000045 ], [ -124.922340229999961, 49.276651172000136 ], [ -124.922347014999957, 49.276359059000107 ], [ -124.922664994999963, 49.276362231000078 ], [ -124.92267061599992, 49.276120167000037 ], [ -124.922911486999965, 49.276122569000059 ], [ -124.922919324999896, 49.275784872000081 ], [ -124.923291738, 49.27578858600004 ], [ -124.923298025999941, 49.275517581000038 ], [ -124.923894138999984, 49.275523523000039 ], [ -124.923898915, 49.275317595000061 ], [ -124.924321272, 49.275321803000054 ], [ -124.924327010999917, 49.275074205000074 ], [ -124.924656538999983, 49.275077487000054 ], [ -124.92466271499994, 49.274811013000011 ], [ -124.924992808999917, 49.274814299000148 ], [ -124.924998515, 49.274568021000029 ], [ -124.925296591999967, 49.27457098700004 ], [ -124.925303219999975, 49.274284827000081 ], [ -124.925639036999982, 49.274288169000094 ], [ -124.925645020999951, 49.274029736000045 ], [ -124.926073868999964, 49.274034001000061 ], [ -124.926079417999958, 49.273794246000094 ], [ -124.926527420999918, 49.27379870000005 ], [ -124.926532411999958, 49.27358295600007 ], [ -124.92732956399999, 49.273590877000075 ], [ -124.927335694999968, 49.273325676000077 ], [ -124.932813354999922, 49.273379949000052 ], [ -124.932833225999957, 49.272515911000056 ], [ -124.935095156999978, 49.272538242000046 ], [ -124.935096739999921, 49.272469268000066 ], [ -124.935501893999941, 49.272473262000126 ], [ -124.935506734999933, 49.272262178000091 ], [ -124.935507600999969, 49.272262186000091 ], [ -124.93554472799994, 49.270643674000041 ], [ -124.937098667000015, 49.270658981000047 ], [ -124.937100470999951, 49.270580213000109 ], [ -124.937363331999933, 49.270582800000049 ], [ -124.937368673999984, 49.270349518000039 ], [ -124.937613858999896, 49.270351931000036 ], [ -124.937647949999928, 49.268862821000084 ], [ -124.938019624999953, 49.26886647700006 ], [ -124.938034672999933, 49.268208930000071 ], [ -124.938293384999895, 49.268211474000118 ], [ -124.938301482, 49.267857535000104 ], [ -124.938782964999973, 49.267862269000076 ], [ -124.938786070999953, 49.267726447000058 ], [ -124.938965483999979, 49.267728210000044 ], [ -124.938973182999987, 49.267391451000087 ], [ -124.939327562999935, 49.267394932000066 ], [ -124.939333383999966, 49.267140259000037 ], [ -124.939631349999928, 49.267143186000034 ], [ -124.939637887999979, 49.2668570660001 ], [ -124.941850419999952, 49.266878772000055 ], [ -124.941856013999981, 49.26663342100008 ], [ -124.942293856999967, 49.266637711000044 ], [ -124.942297304999911, 49.266486432000121 ], [ -124.942739560999925, 49.266490764000061 ], [ -124.942744198999932, 49.266287142000074 ], [ -124.943101324999972, 49.266290639000012 ], [ -124.943105294999967, 49.266116351000051 ], [ -124.94347245799996, 49.266119945000135 ], [ -124.943476348999937, 49.26594901699999 ], [ -124.943271450999958, 49.265947012000034 ], [ -124.943295772999988, 49.264878815000039 ], [ -124.94255848799996, 49.26487159600002 ], [ -124.942565100999943, 49.264581381000021 ], [ -124.937572717999927, 49.264532368000133 ], [ -124.937573076999968, 49.264516690000036 ], [ -124.936145365999948, 49.264502632000038 ], [ -124.936149783, 49.264309941000057 ], [ -124.935558954999976, 49.264304118000076 ], [ -124.935560809999942, 49.264223248000064 ], [ -124.935029039999975, 49.264218004000035 ], [ -124.935037379999955, 49.263854525000092 ], [ -124.93455764399998, 49.263849792000102 ], [ -124.934570401999949, 49.263294026000025 ], [ -124.934028856999944, 49.263288680000073 ], [ -124.934031368999939, 49.263179286000117 ], [ -124.933523244999932, 49.26317426800005 ], [ -124.933528943999974, 49.262926238000041 ], [ -124.932862433999929, 49.262919651000104 ], [ -124.932867843999958, 49.262684374000123 ], [ -124.932429432999953, 49.262680040000134 ], [ -124.932431897999962, 49.262572870000042 ], [ -124.931770114999949, 49.262566324000069 ], [ -124.931771329999975, 49.262513503000093 ], [ -124.93124669800001, 49.262508311000012 ], [ -124.931249054999952, 49.262405958000059 ], [ -124.930808887999959, 49.262401600000075 ], [ -124.930812201999927, 49.262257751000107 ], [ -124.930462881999958, 49.262254291000083 ], [ -124.93046805499992, 49.262029870000035 ], [ -124.930116082999945, 49.262026382000045 ], [ -124.930120342999956, 49.261841639000096 ], [ -124.928416431999921, 49.261824740000094 ], [ -124.928431441999976, 49.261174557000082 ], [ -124.92801585499997, 49.261170431000032 ], [ -124.928024652999952, 49.260789472000035 ], [ -124.927919573999944, 49.260788429000051 ], [ -124.927920171999958, 49.260762577000037 ], [ -124.927313559999931, 49.260756552000039 ], [ -124.927313442999917, 49.260761659000103 ], [ -124.921823845999967, 49.260706972000079 ], [ -124.921824547999904, 49.260676767000078 ], [ -124.920851710999969, 49.260667047000034 ], [ -124.920862042999971, 49.260222652000039 ], [ -124.920410421, 49.260218137000038 ], [ -124.920410883999963, 49.260198274000039 ], [ -124.919555289999963, 49.260189715000166 ], [ -124.919565056999915, 49.259770148000094 ], [ -124.919071198, 49.259765204000075 ], [ -124.919073217999966, 49.259678457000042 ], [ -124.916437803999926, 49.259652036000048 ], [ -124.916446813999954, 49.259266065000141 ], [ -124.91529598399994, 49.25925450799999 ], [ -124.915296547999915, 49.259230381000094 ], [ -124.913893332999919, 49.259216271000106 ], [ -124.913895039999957, 49.259143344000044 ], [ -124.913369816999975, 49.259138058000076 ], [ -124.913375529999897, 49.258894008000063 ], [ -124.912992116999973, 49.258890149000081 ], [ -124.913000363999956, 49.258538008000144 ], [ -124.912576523999917, 49.258533739000029 ], [ -124.912576927999979, 49.258516466000039 ], [ -124.912096604999988, 49.258511627000068 ], [ -124.912100526999978, 49.258344342000015 ], [ -124.911701201999975, 49.258340318000094 ], [ -124.91170740699998, 49.258075671000071 ], [ -124.911354103999912, 49.258072108000135 ], [ -124.911361423999921, 49.257759990000068 ], [ -124.911234118999957, 49.257758707000058 ], [ -124.911239163999966, 49.257543612000134 ], [ -124.910801416999959, 49.25753919600001 ], [ -124.910805718999953, 49.257355846000067 ], [ -124.910393609999943, 49.25735168600005 ], [ -124.910399950999988, 49.257081594000091 ], [ -124.910151017999937, 49.257079081000093 ], [ -124.910157538999925, 49.256801363000065 ], [ -124.909871523999982, 49.25679847400005 ], [ -124.909879730999975, 49.25644900500005 ], [ -124.909271422999936, 49.256442860000092 ], [ -124.90927855399994, 49.256139365000102 ], [ -124.908831724000024, 49.25613485000008 ], [ -124.908838546999959, 49.255844567000111 ], [ -124.908588932999976, 49.255842044000133 ], [ -124.908595825999953, 49.25554887000002 ], [ -124.908266138000016, 49.255545536000106 ], [ -124.90828029, 49.254943782000062 ], [ -124.908137170999908, 49.254942334000141 ], [ -124.908144148999966, 49.254645577000083 ], [ -124.907809456000024, 49.254651107000022 ], [ -124.907808022999959, 49.254613914000103 ], [ -124.907789475999905, 49.254613726000073 ], [ -124.907794939999974, 49.254381468000055 ], [ -124.906974992999949, 49.254395010000039 ], [ -124.906964598999963, 49.254125303000166 ], [ -124.906552567999967, 49.2541321060001 ], [ -124.90654217699999, 49.253862398000081 ], [ -124.906130147999974, 49.253869199000057 ], [ -124.906150925999981, 49.25440861400012 ], [ -124.906562957999952, 49.254401813000115 ], [ -124.906573350999935, 49.254671520000052 ], [ -124.906985385999988, 49.254664717000018 ], [ -124.907016567, 49.255473837000103 ], [ -124.907428609999954, 49.255467032000091 ], [ -124.907439005999947, 49.255736740000046 ], [ -124.907851050999938, 49.255729934000051 ], [ -124.907871847999942, 49.256269347000043 ], [ -124.908283897, 49.256262539000055 ], [ -124.908304699999988, 49.256801953000014 ], [ -124.908716752999965, 49.256795144000073 ], [ -124.908747965999922, 49.257604263000069 ], [ -124.909160024999906, 49.257597452000027 ], [ -124.909171968999971, 49.257907001000092 ], [ -124.909191245999978, 49.258406571000094 ], [ -124.907542980999921, 49.258433807000074 ], [ -124.907532582999949, 49.258164099000048 ], [ -124.907120516999953, 49.258170904000082 ], [ -124.907078935999934, 49.257092078000042 ], [ -124.906254823999959, 49.257105683000091 ], [ -124.906223653000012, 49.256296562000024 ], [ -124.904575454999986, 49.256323754000093 ], [ -124.904565073999933, 49.256054047000063 ], [ -124.904367899999968, 49.256057298000059 ], [ -124.903740977999973, 49.256067634000011 ], [ -124.903732224999914, 49.255840106000036 ], [ -124.89996327599998, 49.255801763000115 ], [ -124.899951279999982, 49.256307952000022 ], [ -124.900747589999966, 49.256316064000032 ], [ -124.900722757999972, 49.257364679000069 ], [ -124.900868549, 49.257366164000111 ], [ -124.900821400999959, 49.259357279 ], [ -124.900783309999952, 49.260965723000098 ], [ -124.899496690999968, 49.260952615000086 ], [ -124.89545035899998, 49.260911290000102 ], [ -124.895436117999935, 49.261509724000128 ], [ -124.89606908199994, 49.261516197000027 ], [ -124.896053195999954, 49.262184104000085 ], [ -124.898093432999957, 49.262204947000036 ], [ -124.899716984999884, 49.262221507000085 ], [ -124.89971625199999, 49.262252472000043 ], [ -124.900846287999912, 49.262263983 ], [ -124.900854903999956, 49.261900182000019 ], [ -124.906344615999942, 49.261955934000071 ], [ -124.906322678999956, 49.262886892000097 ], [ -124.909048168999931, 49.262914467000073 ], [ -124.909001808999975, 49.264886781000023 ], [ -124.909028941999964, 49.264886333000099 ], [ -124.909049759999945, 49.26542574500008 ], [ -124.909461882999963, 49.265418933000014 ], [ -124.909480428999956, 49.265899360000077 ], [ -124.91004391199999, 49.265905049000054 ], [ -124.909973124999937, 49.268918893000077 ], [ -124.910833699999941, 49.268904659000029 ], [ -124.910875382, 49.269983482 ], [ -124.909638896, 49.270003932000115 ], [ -124.90961948199994, 49.269501138000045 ], [ -124.908955877999958, 49.269494434000059 ], [ -124.908952036999949, 49.269657794000111 ], [ -124.903461410999938, 49.269602175000053 ], [ -124.903478847999978, 49.268864239000017 ], [ -124.901608484999954, 49.26884522900005 ], [ -124.90165546899999, 49.266860093000055 ], [ -124.901619661999945, 49.266859730000149 ], [ -124.901613002999937, 49.267141085000041 ], [ -124.897635753999936, 49.267100550000045 ], [ -124.897377810999942, 49.264525022000129 ], [ -124.896857808000021, 49.264538358000046 ], [ -124.895470761999931, 49.264574019000101 ], [ -124.895415825999976, 49.26457543300009 ], [ -124.891763590999972, 49.264669193000024 ], [ -124.891733508999963, 49.263457287000037 ], [ -124.891635188999928, 49.263322205000108 ], [ -124.891447868999947, 49.263229390000042 ], [ -124.890420222999936, 49.263015790000097 ], [ -124.889742702999953, 49.262874957000051 ], [ -124.8896662699999, 49.262859055000092 ], [ -124.88696061, 49.262296584000048 ], [ -124.88681824899993, 49.262296599000081 ], [ -124.885404733999977, 49.262296693000096 ], [ -124.885226802999952, 49.262296708000086 ], [ -124.883882253999943, 49.262398848000046 ], [ -124.880963344999913, 49.262620548000072 ], [ -124.879574396999956, 49.262726015000119 ], [ -124.879428093999962, 49.262734777000084 ], [ -124.878141892999977, 49.262811846000091 ], [ -124.878058350999979, 49.262814587000094 ], [ -124.87782293199993, 49.262814933000101 ], [ -124.877576016999967, 49.262827929000082 ], [ -124.877329089999989, 49.262840958000048 ], [ -124.87701379399999, 49.262864057000073 ], [ -124.876754152999979, 49.262904258000063 ], [ -124.876521000999944, 49.262917051000016 ], [ -124.87631628099993, 49.262956353000057 ], [ -124.876207430999955, 49.262985109000056 ], [ -124.87590828399999, 49.263070934000083 ], [ -124.875719032999925, 49.263154976000095 ], [ -124.875672675999937, 49.263181811000059 ], [ -124.875463444999966, 49.263303056000112 ], [ -124.875368338999976, 49.263331589000117 ], [ -124.875163295999982, 49.26336191700009 ], [ -124.87486241799995, 49.263402776000099 ], [ -124.874642296, 49.263397366000063 ], [ -124.874381294999949, 49.263401580000028 ], [ -124.874034109999954, 49.263363141000077 ], [ -124.873852597999957, 49.263347888000077 ], [ -124.872922312999933, 49.263373339000083 ], [ -124.872591516999961, 49.263382402000055 ], [ -124.872259811999982, 49.263436315000064 ], [ -124.872217865, 49.263443108000075 ], [ -124.871998002999959, 49.263478850000148 ], [ -124.871654315999962, 49.263534691000075 ], [ -124.870086115999968, 49.263835107000034 ], [ -124.869933746999934, 49.263849649000122 ], [ -124.869989037999943, 49.261578808000138 ], [ -124.875478673999936, 49.261636131000095 ], [ -124.87547684299993, 49.261711756000047 ], [ -124.876365393999933, 49.261721007000133 ], [ -124.876403066999956, 49.260164764000088 ], [ -124.877760726999952, 49.260178887000016 ], [ -124.877770835999968, 49.259760798000116 ], [ -124.878730746999935, 49.259770773000106 ], [ -124.878728656999954, 49.259715748000097 ], [ -124.879964909999956, 49.259695631000021 ], [ -124.879968252999959, 49.259783619000061 ], [ -124.881428207999974, 49.259798757000056 ], [ -124.8814741, 49.257894385000085 ], [ -124.886908114999954, 49.25795055500005 ], [ -124.886898309999978, 49.257693421000084 ], [ -124.887310374000023, 49.257686688000042 ], [ -124.887300088999936, 49.257416978000037 ], [ -124.888948339999899, 49.257390033000071 ], [ -124.88893804199995, 49.25712032400002 ], [ -124.88935010299997, 49.257113584000095 ], [ -124.889339803999945, 49.256843874000047 ], [ -124.890988033999989, 49.256816899000071 ], [ -124.891008647999953, 49.257356318000042 ], [ -124.89142071, 49.257349570000052 ], [ -124.891461951999986, 49.258428407000018 ], [ -124.890225739999934, 49.258448645000115 ], [ -124.890215434999931, 49.25817893600005 ], [ -124.888979228999915, 49.258199161000093 ], [ -124.888999821999903, 49.258738581000081 ], [ -124.887351526999979, 49.258765528000062 ], [ -124.887372102999933, 49.259304947 ], [ -124.887784182999965, 49.259298212000083 ], [ -124.887818577999951, 49.260199652000011 ], [ -124.893006322999952, 49.2602529730001 ], [ -124.89299843, 49.260583923000105 ], [ -124.895300912999929, 49.260607510000057 ], [ -124.895318677999967, 49.259861079000054 ], [ -124.895172878999986, 49.259859587000044 ], [ -124.895232586999938, 49.257351013000068 ], [ -124.893038849999954, 49.257328539000078 ], [ -124.893077609999949, 49.255703156000138 ], [ -124.89218294899996, 49.255717816000136 ], [ -124.892152008999958, 49.254908688000064 ], [ -124.893096923999977, 49.254893204000069 ], [ -124.893124684000014, 49.253728966000054 ], [ -124.894521984999955, 49.253743286000052 ], [ -124.894538567999959, 49.253046899000026 ], [ -124.897863962999935, 49.253080906000115 ], [ -124.897886888999921, 49.252115180000018 ], [ -124.900084264999919, 49.252137595000043 ], [ -124.900098430999961, 49.251539687000054 ], [ -124.899856504999931, 49.251543666 ], [ -124.89983579799997, 49.25100425 ], [ -124.899423790999975, 49.251011026000143 ], [ -124.899413452999951, 49.250741668000053 ], [ -124.896012360999933, 49.250706933000082 ], [ -124.896043601999935, 49.249393133000055 ], [ -124.896088339999935, 49.247511543000087 ], [ -124.896097950999931, 49.247107321000087 ], [ -124.898988213999971, 49.247136847000029 ], [ -124.901585908999962, 49.247163318000062 ], [ -124.901580708999973, 49.247383159000094 ], [ -124.901327619999975, 49.247407002000109 ], [ -124.900883698999934, 49.247666192000118 ], [ -124.90061293799999, 49.247701773000109 ], [ -124.899626086999945, 49.247831399000042 ], [ -124.899380773999951, 49.247914827000116 ], [ -124.898541104999978, 49.248200309000026 ], [ -124.898531113999965, 49.248317108000073 ], [ -124.898771605999983, 49.248483705000112 ], [ -124.899385237999965, 49.248672472000081 ], [ -124.899577400999988, 49.248731597000095 ], [ -124.899656681, 49.249033882000028 ], [ -124.899690209999946, 49.249161706000031 ], [ -124.899670048999965, 49.249322303000049 ], [ -124.899647301999948, 49.249503501000063 ], [ -124.899802275999988, 49.2495646960001 ], [ -124.900141986999941, 49.24949629700005 ], [ -124.900437201999964, 49.249626006000071 ], [ -124.901322620999949, 49.249544420000092 ], [ -124.901504211999963, 49.249527700000037 ], [ -124.90189390899998, 49.249655901000033 ], [ -124.902375394, 49.249657299000027 ], [ -124.902511313999952, 49.24962739900009 ], [ -124.902547411999976, 49.249516879000076 ], [ -124.90256918099999, 49.249450265000064 ], [ -124.902573184999952, 49.249438006000112 ], [ -124.902750420999951, 49.249416605000135 ], [ -124.903173411999887, 49.249476925000039 ], [ -124.903828993999937, 49.249570407000121 ], [ -124.904250064999928, 49.249846312000038 ], [ -124.904449095999937, 49.249976737000111 ], [ -124.904913581999963, 49.250281093000076 ], [ -124.905190522999987, 49.2504176650001 ], [ -124.90520442699993, 49.25042451700012 ], [ -124.905210064999963, 49.250427294000119 ], [ -124.90560101599999, 49.250620098000063 ], [ -124.90576415299995, 49.250818465000037 ], [ -124.905817352999932, 49.250883153000053 ], [ -124.90594631299993, 49.251039923000071 ], [ -124.905936801999943, 49.251443483000131 ], [ -124.906350785999962, 49.251436651000112 ], [ -124.906671391999936, 49.251664001000044 ], [ -124.907289826999943, 49.251866340000035 ], [ -124.907314258999975, 49.252500257000094 ], [ -124.90783940299994, 49.252491583000058 ], [ -124.90784980200003, 49.252049548000109 ], [ -124.908216793999912, 49.252169614000103 ], [ -124.908490698999941, 49.252150793000041 ], [ -124.908900907999936, 49.252122597000067 ], [ -124.909263599, 49.252223692000065 ], [ -124.910187801999911, 49.252304129000095 ], [ -124.910129255999905, 49.252827137000132 ], [ -124.910112973999958, 49.253046879000124 ], [ -124.910192743999971, 49.253325902000022 ], [ -124.910431091999925, 49.254159635000093 ], [ -124.911170900999934, 49.254334504000134 ], [ -124.911543423999959, 49.254544401000011 ], [ -124.911571823999935, 49.254621190000094 ], [ -124.911577570999967, 49.254961496000099 ], [ -124.911685553999973, 49.255331636000022 ], [ -124.911833603, 49.255514954000013 ], [ -124.912111848999956, 49.255766162000072 ], [ -124.912357550999957, 49.255941482000125 ], [ -124.913565902999949, 49.256565728000112 ], [ -124.914258874999945, 49.256808524000114 ], [ -124.914786162999945, 49.257034338000025 ], [ -124.915294934999935, 49.257406711000051 ], [ -124.916516084999898, 49.258234969000107 ], [ -124.917024535999985, 49.258579794000049 ], [ -124.917269647999959, 49.258663288000029 ], [ -124.917558449999888, 49.258698576000029 ], [ -124.918398958999973, 49.258679095000048 ], [ -124.919788617999984, 49.258716413000123 ], [ -124.920234466999958, 49.258668652999987 ], [ -124.920859914999937, 49.258689328000038 ], [ -124.921002020999964, 49.25872502600005 ], [ -124.921098745, 49.258749305000073 ], [ -124.921546456999977, 49.258916705000061 ], [ -124.92356655699993, 49.259468833000049 ], [ -124.924075780999928, 49.259538797000069 ], [ -124.924089260999963, 49.25954065300008 ], [ -124.924685886999953, 49.259560993000107 ], [ -124.925533771999966, 49.259520826000035 ], [ -124.926108845999934, 49.259465350000056 ], [ -124.926488294999899, 49.259497926000094 ], [ -124.92678096499999, 49.259486441000021 ], [ -124.927410029, 49.259506999000095 ], [ -124.928045607999962, 49.25952781100009 ], [ -124.929301939999959, 49.259693286000093 ], [ -124.92973891299998, 49.259791059000058 ], [ -124.929861829999965, 49.259818559000081 ], [ -124.930223095999963, 49.259927441000073 ], [ -124.931167393999914, 49.260349047000062 ], [ -124.93164588, 49.260503591000024 ], [ -124.931716530999921, 49.260526400000074 ], [ -124.93194750899994, 49.260628592000025 ], [ -124.932270756999984, 49.260838829000114 ], [ -124.932649365, 49.261148599000059 ], [ -124.932801001999977, 49.261240095000055 ], [ -124.933148973999963, 49.261330845000018 ], [ -124.933671258999979, 49.261422430000067 ], [ -124.933945137999956, 49.261511542000044 ], [ -124.934169273999913, 49.26161365800008 ], [ -124.934506395999975, 49.261818608000077 ], [ -124.936794803999931, 49.262775470000065 ], [ -124.937056570999971, 49.262854538000099 ], [ -124.938538063999943, 49.263040130000029 ], [ -124.939497247999924, 49.263160286000058 ], [ -124.940339882999979, 49.263231562000051 ], [ -124.941645864999913, 49.263419912000067 ], [ -124.941799816999918, 49.263442116000085 ], [ -124.943396553999918, 49.2637358650001 ], [ -124.944057874999928, 49.263812562000027 ], [ -124.944481622999973, 49.263831982000056 ], [ -124.944997403999963, 49.263789323000033 ], [ -124.945220661999883, 49.263812221000066 ], [ -124.945383448999948, 49.263717519000068 ], [ -124.945598042999961, 49.263638609000118 ], [ -124.947708299999974, 49.263263081000048 ], [ -124.948435296999946, 49.26292279700008 ], [ -124.950245493999958, 49.262153694000126 ], [ -124.950510788999935, 49.262079796000059 ], [ -124.951144210999985, 49.261991395000031 ], [ -124.95189840799999, 49.261844794000055 ], [ -124.952366378999969, 49.261791793000093 ], [ -124.952716605999953, 49.261820684000156 ], [ -124.954679318999951, 49.261982507000077 ], [ -124.955510922, 49.261918436000038 ], [ -124.95584119499992, 49.2618930040001 ], [ -124.956438393, 49.261894194000106 ], [ -124.956668090999969, 49.261934209000081 ], [ -124.956870717999948, 49.26201810000012 ], [ -124.956915852999941, 49.262046642000058 ], [ -124.957100794999974, 49.262163511000097 ], [ -124.957268712999976, 49.262477124000043 ], [ -124.957345877999956, 49.262621304000056 ], [ -124.957245477999948, 49.262936204000027 ], [ -124.956976206999954, 49.263492598000035 ], [ -124.956755323, 49.263674104000053 ], [ -124.956525691999957, 49.263810491000093 ], [ -124.956044528999954, 49.263995803000093 ], [ -124.955590885999953, 49.264170498000055 ], [ -124.954834594999966, 49.264531289000047 ], [ -124.953782102000019, 49.26493778800004 ], [ -124.953527185999974, 49.26497860799999 ], [ -124.952710903999915, 49.264956196000085 ], [ -124.952123292999929, 49.26483528800005 ], [ -124.951742114999931, 49.264692982000035 ], [ -124.951215298999955, 49.264434089000098 ], [ -124.950330794999914, 49.264271600000043 ], [ -124.949987699999923, 49.264268204000082 ], [ -124.949739384999987, 49.26431800700005 ], [ -124.949248192999974, 49.264491504000077 ], [ -124.94841, 49.265432 ], [ -124.947902869999979, 49.265699799000075 ], [ -124.947197677999966, 49.265922391000046 ], [ -124.946961195999904, 49.266059618000092 ], [ -124.946517331, 49.266381099000078 ], [ -124.946199181999958, 49.266664297000069 ], [ -124.94619600599999, 49.266808208000036 ], [ -124.94602798699999, 49.267371912 ], [ -124.94580360099999, 49.267641483000041 ], [ -124.945663187999955, 49.267716594000042 ], [ -124.944798586999966, 49.268005201000037 ], [ -124.944511219999953, 49.268146400000028 ], [ -124.943268224999954, 49.269049203000073 ], [ -124.94265870299995, 49.269491898000105 ], [ -124.942205893999954, 49.269899694000095 ], [ -124.942131786999951, 49.269957122000079 ], [ -124.941821510999958, 49.270197511000035 ], [ -124.941417587999979, 49.270571602000089 ], [ -124.941072578999979, 49.271009201000055 ], [ -124.940492207999952, 49.271592196000078 ], [ -124.94046022899991, 49.27161149600007 ], [ -124.939805793999966, 49.272006701000045 ], [ -124.93936510399999, 49.272428093 ], [ -124.938916771, 49.272935791000116 ], [ -124.938586408999967, 49.273392506000093 ], [ -124.9383890899999, 49.273797398000063 ], [ -124.938232014999954, 49.273881394000043 ], [ -124.938012116999957, 49.273951201000038 ], [ -124.937883008999961, 49.274039419000104 ], [ -124.937693995999936, 49.274168597000042 ], [ -124.936235102999916, 49.274797812000031 ], [ -124.934231310999962, 49.275294709000057 ], [ -124.933629489999987, 49.275487682000083 ], [ -124.933615084999957, 49.275489699000055 ], [ -124.933372973999951, 49.275523715000141 ], [ -124.932869087999947, 49.275594485000113 ], [ -124.930579977999969, 49.275715783000095 ], [ -124.93016242, 49.275785057000029 ], [ -124.929929401999942, 49.275823718000048 ], [ -124.929620103999952, 49.275955715000066 ], [ -124.929411276999957, 49.276122893000085 ], [ -124.929376452000014, 49.276150750000077 ], [ -124.928587545999974, 49.27678228500006 ], [ -124.928402892999941, 49.27693009500009 ], [ -124.927895916999901, 49.27726404500001 ], [ -124.927717151999957, 49.27738182500007 ], [ -124.927189499999912, 49.277729376000117 ], [ -124.92692208699998, 49.277905499000049 ], [ -124.926288412999952, 49.278360917000043 ], [ -124.925863500999981, 49.278666313 ], [ -124.924537890999886, 49.279693589000033 ], [ -124.92412709199999, 49.279937003000086 ], [ -124.923751187999954, 49.280038608000055 ], [ -124.922084314999935, 49.280264105000114 ], [ -124.920888183, 49.280320509000056 ], [ -124.920416518999943, 49.28035 ], [ -124.920108699999915, 49.280478398000078 ], [ -124.917567207999937, 49.281705916000092 ], [ -124.917472418000017, 49.281751701000097 ], [ -124.916527701999939, 49.282569408000036 ], [ -124.91488839, 49.284191906000061 ], [ -124.915146893999932, 49.284178314000037 ], [ -124.915547107999956, 49.284212993000047 ], [ -124.91574440899997, 49.284350888000056 ], [ -124.915850110999955, 49.284664094000043 ], [ -124.915901091999956, 49.284815114000047 ], [ -124.915911523999924, 49.28524592300009 ], [ -124.915915087999934, 49.285393889000041 ], [ -124.915814392999948, 49.285586408000022 ], [ -124.915464789999959, 49.285736010000022 ], [ -124.914900521999968, 49.28578608600003 ], [ -124.914079102999935, 49.285792206000067 ], [ -124.913695783999984, 49.285854094000037 ], [ -124.913474585999964, 49.286090420000036 ], [ -124.913223110999965, 49.286274193000075 ], [ -124.913215479999948, 49.286424390000093 ], [ -124.913310791999947, 49.286929414000042 ], [ -124.913433705, 49.287252891000101 ], [ -124.913237694, 49.287880898000076 ], [ -124.913072811999939, 49.288000805000095 ], [ -124.912736893, 49.288089212000052 ], [ -124.912145892999931, 49.288165202000059 ], [ -124.911432532999953, 49.288178851000069 ], [ -124.911100196999882, 49.288185204000087 ], [ -124.910841725999887, 49.288138500000059 ], [ -124.910208600999923, 49.287724405000056 ], [ -124.90715790099992, 49.288778222000062 ], [ -124.906304306999942, 49.289039493000082 ], [ -124.90596271899993, 49.289076600000051 ], [ -124.905641587999966, 49.289064312000065 ], [ -124.90537417799996, 49.288989593000089 ], [ -124.90393289499994, 49.28825040900005 ], [ -124.903615303999942, 49.288146403000013 ] ], [ [ -124.887478646999952, 49.261789440000058 ], [ -124.887512378999986, 49.260382167000088 ], [ -124.887001171999941, 49.260390519000062 ], [ -124.887032032999969, 49.26119964800003 ], [ -124.886885355999979, 49.261202044000044 ], [ -124.886876995999913, 49.261550669000023 ], [ -124.886632971999987, 49.261548152000032 ], [ -124.886641843999953, 49.261780813000087 ], [ -124.887478646999952, 49.261789440000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11256917", "BldgCostT": "7291667", "sL_LossRatio": "0.970545060899234", "sL_AssetLoss": "8821.95", "sL_BldgLoss": "8562.1", "sL_StrLoss": "7378.9", "sL_NStrLoss": "1183.2", "sL_ContLoss": "259.85", "geom_point": "0101000020E610000003F4EB1CBD365FC021B4375B6DA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.860937881999959, 49.258114629000069 ], [ -124.860917594999989, 49.25757520100008 ], [ -124.860505524999922, 49.257581840000029 ], [ -124.860485241999982, 49.257042412000089 ], [ -124.859249042999977, 49.257062319000134 ], [ -124.859269311999952, 49.257601747000102 ], [ -124.858857239999921, 49.257608381000068 ], [ -124.858867372999981, 49.257878094000063 ], [ -124.857631151999939, 49.257897983000099 ], [ -124.857610899999912, 49.257358556000064 ], [ -124.856786762, 49.257371808000116 ], [ -124.856776639999936, 49.257102092000139 ], [ -124.85595250399993, 49.25711534 ], [ -124.855962619999929, 49.257385053000036 ], [ -124.855550550999908, 49.257391675000108 ], [ -124.855560663999938, 49.257661389000063 ], [ -124.854324446999911, 49.257681243000086 ], [ -124.854304231999947, 49.257141814000079 ], [ -124.853892162999955, 49.257148429000047 ], [ -124.85388205799994, 49.256878715000042 ], [ -124.853057923999955, 49.256891940000088 ], [ -124.853037723999989, 49.25635251000007 ], [ -124.852625660999962, 49.256359120000113 ], [ -124.852605464999954, 49.255819690000088 ], [ -124.85219340699993, 49.255826298000045 ], [ -124.85217321499999, 49.255286867000059 ], [ -124.851349108999941, 49.25530008100003 ], [ -124.851248207999973, 49.252602926000051 ], [ -124.849600080999934, 49.252629332000041 ], [ -124.849579920999972, 49.25208990000003 ], [ -124.848755865999962, 49.252103094000063 ], [ -124.848745788999935, 49.251833378000129 ], [ -124.847509711999976, 49.251853158000124 ], [ -124.847499643999967, 49.251583441000029 ], [ -124.846675594999951, 49.25159662100004 ], [ -124.846665531999975, 49.251326904000017 ], [ -124.84584148799992, 49.251340077000044 ], [ -124.845801250999941, 49.250261212000048 ], [ -124.846213263999942, 49.250254626000057 ], [ -124.846209003999959, 49.250140395000081 ], [ -124.84614284099996, 49.248366610000041 ], [ -124.84653952599993, 49.248360268000042 ], [ -124.846554837999989, 49.24836002400005 ], [ -124.846553397999955, 49.248321447000066 ], [ -124.846524651, 49.247550874000076 ], [ -124.846830475999965, 49.24754598400007 ], [ -124.848584601999946, 49.247517920000085 ], [ -124.848594675999934, 49.247787636000098 ], [ -124.849418658999966, 49.247774444000143 ], [ -124.849428737999972, 49.248044161000102 ], [ -124.849840731999947, 49.248037561000082 ], [ -124.849850810999925, 49.24830727900013 ], [ -124.850262806999964, 49.248300679000067 ], [ -124.850272889999957, 49.248570395000115 ], [ -124.850684886999943, 49.248563793000045 ], [ -124.850705057999946, 49.249103225000042 ], [ -124.851529060999923, 49.249090017000078 ], [ -124.85155933199999, 49.249899165000059 ], [ -124.85197134, 49.249892558000028 ], [ -124.851978109999919, 49.250073477000058 ], [ -124.852001616999971, 49.250701705000033 ], [ -124.852825648999982, 49.250688488000051 ], [ -124.85284584199999, 49.251227919000058 ], [ -124.853084047999943, 49.251224098000115 ], [ -124.853669882999966, 49.251214696 ], [ -124.853649678999943, 49.250675265000083 ], [ -124.854061692999906, 49.250668652000073 ], [ -124.85405158899998, 49.250398936000131 ], [ -124.85446360099999, 49.250392322000039 ], [ -124.854453495999934, 49.25012260700003 ], [ -124.856101534999951, 49.25009613300012 ], [ -124.856096874999977, 49.249971858000059 ], [ -124.85609142, 49.249826417000065 ], [ -124.85856346099996, 49.249786663000158 ], [ -124.858569215999978, 49.249939936000025 ], [ -124.858573587999956, 49.250056376000018 ], [ -124.859397604999927, 49.250043113000068 ], [ -124.859438137999959, 49.251121971000053 ], [ -124.859026120999914, 49.25112860400008 ], [ -124.859036250999935, 49.251398318000078 ], [ -124.858624232999901, 49.251404950000058 ], [ -124.858634360999986, 49.251674664000085 ], [ -124.85739829399995, 49.25169454900005 ], [ -124.85743878599996, 49.252773408000103 ], [ -124.858674879999938, 49.252753521000059 ], [ -124.858685009999974, 49.253023236000068 ], [ -124.86033314, 49.252996700000075 ], [ -124.860342107999898, 49.253235235000055 ], [ -124.862475768999943, 49.253257744000031 ], [ -124.862445726999965, 49.254483696000065 ], [ -124.862443318999979, 49.254581956000081 ], [ -124.862454206, 49.254581781000176 ], [ -124.862494810999934, 49.255660635000034 ], [ -124.86414302699994, 49.255634045000093 ], [ -124.864153187999989, 49.255903757000048 ], [ -124.86456524399992, 49.255897106000056 ], [ -124.864575405999958, 49.25616682000004 ], [ -124.864987463999924, 49.256160167000139 ], [ -124.864997630999966, 49.25642988000002 ], [ -124.86540969, 49.256423226000067 ], [ -124.865440192999927, 49.257232366000068 ], [ -124.865028127999921, 49.257239020000057 ], [ -124.865038292999941, 49.257508733000044 ], [ -124.864626224999967, 49.257515387000083 ], [ -124.864636387999965, 49.2577851 ], [ -124.864224316999966, 49.257791751000084 ], [ -124.864234477999958, 49.258061465000047 ], [ -124.860937881999959, 49.258114629000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.907372400756144", "sL_AssetLoss": "158.7", "sL_BldgLoss": "144", "sL_StrLoss": "24", "sL_NStrLoss": "120", "sL_ContLoss": "14.7", "geom_point": "0101000020E6100000AA752C0057355FC032A605D440A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.830999929999948, 49.260409497000076 ], [ -124.832748467999963, 49.257827959000046 ], [ -124.832948268999985, 49.257830118000072 ], [ -124.832939508999957, 49.258178530000052 ], [ -124.833344674999921, 49.258182909000027 ], [ -124.833331896999937, 49.258691288000058 ], [ -124.835218633999958, 49.258711663000028 ], [ -124.835148620999945, 49.261501521000049 ], [ -124.832912699999937, 49.260828813000053 ], [ -124.831694586999944, 49.260605209000062 ], [ -124.830999929999948, 49.260409497000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19211416", "BldgCostT": "12721666", "sL_LossRatio": "0.95750991108456", "sL_AssetLoss": "23652.81", "sL_BldgLoss": "22647.8", "sL_StrLoss": "19890.8", "sL_NStrLoss": "2757", "sL_ContLoss": "1005.01", "geom_point": "0101000020E6100000672D26B226365FC07CFA008B19A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.839912514, 49.263164504000017 ], [ -124.835525485999966, 49.261614898000147 ], [ -124.83540016299996, 49.261577195000058 ], [ -124.835436483999956, 49.26012963900012 ], [ -124.839301959999958, 49.26017127000005 ], [ -124.839307951999942, 49.259931626000103 ], [ -124.839281542999942, 49.259931342000087 ], [ -124.839299902999983, 49.259197142000048 ], [ -124.839344926999942, 49.25739655600006 ], [ -124.838380403999963, 49.257386181000115 ], [ -124.837286019999965, 49.25737439800011 ], [ -124.837291795999931, 49.257143820000067 ], [ -124.836987207, 49.257148664000034 ], [ -124.836931184999969, 49.255639555000045 ], [ -124.833089667999957, 49.255598094000014 ], [ -124.833144939999926, 49.253399234000149 ], [ -124.833175059999974, 49.252200871000099 ], [ -124.834211592999978, 49.252118316000121 ], [ -124.835357908, 49.25232478500002 ], [ -124.83588901899999, 49.252522801000104 ], [ -124.836100208999966, 49.252690908000019 ], [ -124.836306791999945, 49.252687998000091 ], [ -124.837172783999975, 49.25231339200009 ], [ -124.838278397999943, 49.251360593000129 ], [ -124.838415985999973, 49.251384798000046 ], [ -124.838436806999965, 49.251574308000102 ], [ -124.837902503999899, 49.252005791000052 ], [ -124.837867181999968, 49.252141097000091 ], [ -124.838035582999964, 49.252246491000086 ], [ -124.838582821999935, 49.252173899000084 ], [ -124.839206882000013, 49.251606995 ], [ -124.839195976999932, 49.251309395000121 ], [ -124.838819120999958, 49.250968202000109 ], [ -124.838817045999974, 49.250912375000077 ], [ -124.838758489999961, 49.250913309000076 ], [ -124.838727220999928, 49.250884998000124 ], [ -124.838699104999975, 49.250517506000108 ], [ -124.838386540999963, 49.250421309000032 ], [ -124.838375633999974, 49.250127642000095 ], [ -124.83841509299999, 49.250109144000113 ], [ -124.838715636999922, 49.25010436000008 ], [ -124.838786984999956, 49.250103224000071 ], [ -124.838780778999961, 49.249936211000019 ], [ -124.838930019000017, 49.249831068000113 ], [ -124.839188973999981, 49.249826945000073 ], [ -124.839182516999969, 49.249653175000013 ], [ -124.839257572999884, 49.249600294000111 ], [ -124.83930977599999, 49.249285267000069 ], [ -124.839580935999962, 49.249280949000124 ], [ -124.839570911999928, 49.249011231000019 ], [ -124.839354613999916, 49.249014676000066 ], [ -124.839514806999929, 49.248047905000092 ], [ -124.839813006999989, 49.247926894000038 ], [ -124.839823511999896, 49.247854201000052 ], [ -124.839714833999892, 49.247659552000052 ], [ -124.841168762999985, 49.247636382000039 ], [ -124.841178795999937, 49.247906100000051 ], [ -124.841590790999973, 49.247899531000051 ], [ -124.84167481499999, 49.250157807000086 ], [ -124.841681111999975, 49.250326986000076 ], [ -124.842505140999918, 49.250313843000114 ], [ -124.842535264, 49.251122993000074 ], [ -124.8412992, 49.251142706000067 ], [ -124.84132930499996, 49.251951858000091 ], [ -124.84108903, 49.251955689000027 ], [ -124.84101480399994, 49.251956872000093 ], [ -124.84018234499996, 49.251970139000072 ], [ -124.840161697999946, 49.252796554000078 ], [ -124.841091397999918, 49.252806541 ], [ -124.844129341999945, 49.252839116000096 ], [ -124.84411935199995, 49.253240345000044 ], [ -124.844489451999962, 49.253244309000145 ], [ -124.84442405399993, 49.255871507000066 ], [ -124.845655665999942, 49.255884686000137 ], [ -124.845636096999911, 49.256671623000052 ], [ -124.849426272999921, 49.256712090000065 ], [ -124.849337045999917, 49.260311612000095 ], [ -124.848524951999977, 49.26030295200011 ], [ -124.848514033999948, 49.260743032000093 ], [ -124.84866626099992, 49.260740596000034 ], [ -124.848676337999962, 49.261010312000096 ], [ -124.851561048999912, 49.260964103000028 ], [ -124.851581236999934, 49.261503532000056 ], [ -124.851993342999961, 49.261496925000067 ], [ -124.851973150999953, 49.260957496000103 ], [ -124.854857850999934, 49.260911204000074 ], [ -124.85486796499994, 49.261180919000083 ], [ -124.86228577599995, 49.261061553000062 ], [ -124.862295928999956, 49.261331266000077 ], [ -124.866829035999913, 49.261258086000062 ], [ -124.866839213, 49.261527798000046 ], [ -124.867251315999951, 49.261521136000049 ], [ -124.86731239699999, 49.26313941300004 ], [ -124.866900280999914, 49.263146075000094 ], [ -124.866910422999965, 49.263414803000032 ], [ -124.867314793999967, 49.263419046000081 ], [ -124.867308442999956, 49.263679231000054 ], [ -124.867744877999939, 49.263672174000121 ], [ -124.86777346599996, 49.264429348000185 ], [ -124.867756248999953, 49.264441331000086 ], [ -124.859108769999978, 49.264302457000049 ], [ -124.859039650999989, 49.262463233000112 ], [ -124.858215428, 49.262476497000094 ], [ -124.858225557999972, 49.262746210000088 ], [ -124.857401329999931, 49.262759468000134 ], [ -124.857423363999942, 49.263346350000042 ], [ -124.856974588999918, 49.263166890000079 ], [ -124.855927697999974, 49.262927285000039 ], [ -124.854340215999969, 49.262926169000131 ], [ -124.85049670599993, 49.262984194000104 ], [ -124.84764007299999, 49.263027238000099 ], [ -124.842549705999929, 49.263081144000104 ], [ -124.842557022999969, 49.26382429700007 ], [ -124.842613941999943, 49.264184058000083 ], [ -124.842805625999972, 49.264480447000075 ], [ -124.84290912199999, 49.264526097000093 ], [ -124.842577159999976, 49.264517692000055 ], [ -124.841330684999917, 49.263969205000045 ], [ -124.839912514, 49.263164504000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.991997584176355", "sL_AssetLoss": "397.38", "sL_BldgLoss": "394.2", "sL_StrLoss": "368", "sL_NStrLoss": "26.2", "sL_ContLoss": "3.18", "geom_point": "0101000020E61000000FEBF0849C365FC0C4BEF08C2E9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.852658701999985, 49.213178093000096 ], [ -124.8526486199999, 49.212908377000062 ], [ -124.852236917999946, 49.212914982000044 ], [ -124.852226836999947, 49.212645264000074 ], [ -124.851815140000028, 49.212651867000041 ], [ -124.851784905999963, 49.211842716000042 ], [ -124.852196597999978, 49.211836112000107 ], [ -124.852186515999918, 49.211566395000027 ], [ -124.854244964999964, 49.211533358000032 ], [ -124.854265148999971, 49.212072792000086 ], [ -124.854676840999971, 49.212066179000075 ], [ -124.854717216999958, 49.213145047000076 ], [ -124.852658701999985, 49.213178093000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.971584444271488", "sL_AssetLoss": "7554.876", "sL_BldgLoss": "7340.2", "sL_StrLoss": "6434.6", "sL_NStrLoss": "905.6", "sL_ContLoss": "214.676", "geom_point": "0101000020E6100000C1EA7E04743B5FC0878541369CA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.927343496999953, 49.29472009200002 ], [ -124.926218316999922, 49.293316061000155 ], [ -124.926026810999971, 49.291995111000084 ], [ -124.925830215999952, 49.291595204 ], [ -124.926151899999965, 49.291589840000071 ], [ -124.926130877999967, 49.291050435000045 ], [ -124.927367878000013, 49.291029803000086 ], [ -124.927388913999962, 49.291569207000059 ], [ -124.927801251999981, 49.291562327000072 ], [ -124.927843337999917, 49.292641134000071 ], [ -124.928255684999939, 49.292634250000063 ], [ -124.92826620799994, 49.292903952000053 ], [ -124.928678556999941, 49.292897068000123 ], [ -124.928689082999952, 49.293166770000134 ], [ -124.929101432999929, 49.293159885000108 ], [ -124.929143550999967, 49.294238691000075 ], [ -124.929968267999968, 49.294224915000086 ], [ -124.929957734999931, 49.293955214000107 ], [ -124.93037009199999, 49.293948323000066 ], [ -124.930349020999927, 49.293408921000072 ], [ -124.929936667999982, 49.293415812000056 ], [ -124.929910353999972, 49.29274202600002 ], [ -124.929987609999927, 49.292739608000119 ], [ -124.930058517999953, 49.29282789400002 ], [ -124.930078003999967, 49.292971789000042 ], [ -124.93052461799999, 49.293125596000088 ], [ -124.930964997999979, 49.293126989000065 ], [ -124.931282857999989, 49.293033011000048 ], [ -124.931509201999958, 49.292966090000057 ], [ -124.931647933999926, 49.292847453000036 ], [ -124.931977340999964, 49.292841944000024 ], [ -124.932019520000011, 49.293920749000094 ], [ -124.931607162999924, 49.293927645000053 ], [ -124.931617705999912, 49.294197345000036 ], [ -124.932030064999978, 49.294190450000031 ], [ -124.932040609999916, 49.29446015100006 ], [ -124.933968037999975, 49.294427898000102 ], [ -124.933651598999944, 49.29454229200006 ], [ -124.933171611999953, 49.294688790000158 ], [ -124.931209897999906, 49.295258853000071 ], [ -124.93119731799996, 49.295262495000053 ], [ -124.92974385199993, 49.29584548800004 ], [ -124.929033115999957, 49.296033904000105 ], [ -124.928217107999899, 49.295612629000125 ], [ -124.92811941799998, 49.295562192000091 ], [ -124.928089257999943, 49.295534453000066 ], [ -124.927861185999959, 49.295324701 ], [ -124.927343496999953, 49.29472009200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "0.987614145119618", "sL_AssetLoss": "3042.18", "sL_BldgLoss": "3004.5", "sL_StrLoss": "2776", "sL_NStrLoss": "228.5", "sL_ContLoss": "37.68", "geom_point": "0101000020E6100000E9173E85503A5FC0A1E5CCB821A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.909617983999979, 49.289902601000101 ], [ -124.910100393000022, 49.289570803000046 ], [ -124.911733303999938, 49.289489598000095 ], [ -124.91239841299992, 49.289630593000012 ], [ -124.912934909999962, 49.289632004000097 ], [ -124.913626582999925, 49.289350002000106 ], [ -124.916364107, 49.289043807000041 ], [ -124.916988635999985, 49.289188829000082 ], [ -124.916985927999988, 49.289304832000077 ], [ -124.917007182999939, 49.289852821000089 ], [ -124.917001872999933, 49.289852910000107 ], [ -124.91642490299995, 49.289644400000064 ], [ -124.915760508999966, 49.28967281700011 ], [ -124.908052641999973, 49.291169945000043 ], [ -124.906908962999921, 49.290998958000017 ], [ -124.906255220000034, 49.290631146000074 ], [ -124.905926837999942, 49.290286064000043 ], [ -124.906016180999956, 49.290285692000118 ], [ -124.907358787999911, 49.29020030500007 ], [ -124.908233616999922, 49.290033597000104 ], [ -124.90905770599997, 49.290027892000097 ], [ -124.909617983999979, 49.289902601000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73616500", "BldgCostT": "50770000", "sL_LossRatio": "0.993734419138339", "sL_AssetLoss": "35864.512", "sL_BldgLoss": "35639.8", "sL_StrLoss": "34121.14", "sL_NStrLoss": "1518.66", "sL_ContLoss": "224.712", "geom_point": "0101000020E61000005A7C8EB8953B5FC0D0287E0881A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.905430844999913, 49.289803419000044 ], [ -124.904999621999977, 49.289726595000047 ], [ -124.904695905999944, 49.289794593000089 ], [ -124.904171109999965, 49.289911708000027 ], [ -124.903684612999911, 49.289597390000097 ], [ -124.902500602999936, 49.288832387000056 ], [ -124.901993464999947, 49.288297409000037 ], [ -124.902070980999966, 49.288281010000091 ], [ -124.903196995999963, 49.28812328900009 ], [ -124.903615303999942, 49.288146403000013 ], [ -124.90393289499994, 49.28825040900005 ], [ -124.90537417799996, 49.288989593000089 ], [ -124.905641587999966, 49.289064312000065 ], [ -124.90596271899993, 49.289076600000051 ], [ -124.906304306999942, 49.289039493000082 ], [ -124.90715790099992, 49.288778222000062 ], [ -124.910208600999923, 49.287724405000056 ], [ -124.910841725999887, 49.288138500000059 ], [ -124.911100196999882, 49.288185204000087 ], [ -124.911432532999953, 49.288178851000069 ], [ -124.912145892999931, 49.288165202000059 ], [ -124.912736893, 49.288089212000052 ], [ -124.913072811999939, 49.288000805000095 ], [ -124.913237694, 49.287880898000076 ], [ -124.913433705, 49.287252891000101 ], [ -124.913310791999947, 49.286929414000042 ], [ -124.913215479999948, 49.286424390000093 ], [ -124.913223110999965, 49.286274193000075 ], [ -124.913474585999964, 49.286090420000036 ], [ -124.913695783999984, 49.285854094000037 ], [ -124.914079102999935, 49.285792206000067 ], [ -124.914900521999968, 49.28578608600003 ], [ -124.915464789999959, 49.285736010000022 ], [ -124.915814392999948, 49.285586408000022 ], [ -124.915915087999934, 49.285393889000041 ], [ -124.915911523999924, 49.28524592300009 ], [ -124.915901091999956, 49.284815114000047 ], [ -124.915850110999955, 49.284664094000043 ], [ -124.91574440899997, 49.284350888000056 ], [ -124.915547107999956, 49.284212993000047 ], [ -124.915146893999932, 49.284178314000037 ], [ -124.91488839, 49.284191906000061 ], [ -124.916527701999939, 49.282569408000036 ], [ -124.917472418000017, 49.281751701000097 ], [ -124.917567207999937, 49.281705916000092 ], [ -124.920108699999915, 49.280478398000078 ], [ -124.920416518999943, 49.28035 ], [ -124.920888183, 49.280320509000056 ], [ -124.922084314999935, 49.280264105000114 ], [ -124.923751187999954, 49.280038608000055 ], [ -124.92412709199999, 49.279937003000086 ], [ -124.924537890999886, 49.279693589000033 ], [ -124.925863500999981, 49.278666313 ], [ -124.926288412999952, 49.278360917000043 ], [ -124.92692208699998, 49.277905499000049 ], [ -124.927189499999912, 49.277729376000117 ], [ -124.927717151999957, 49.27738182500007 ], [ -124.927895916999901, 49.27726404500001 ], [ -124.928402892999941, 49.27693009500009 ], [ -124.928587545999974, 49.27678228500006 ], [ -124.929376452000014, 49.276150750000077 ], [ -124.929411276999957, 49.276122893000085 ], [ -124.929620103999952, 49.275955715000066 ], [ -124.929929401999942, 49.275823718000048 ], [ -124.93016242, 49.275785057000029 ], [ -124.930579977999969, 49.275715783000095 ], [ -124.932869087999947, 49.275594485000113 ], [ -124.933372973999951, 49.275523715000141 ], [ -124.933615084999957, 49.275489699000055 ], [ -124.933629489999987, 49.275487682000083 ], [ -124.934231310999962, 49.275294709000057 ], [ -124.936235102999916, 49.274797812000031 ], [ -124.937693995999936, 49.274168597000042 ], [ -124.937883008999961, 49.274039419000104 ], [ -124.938012116999957, 49.273951201000038 ], [ -124.938232014999954, 49.273881394000043 ], [ -124.9383890899999, 49.273797398000063 ], [ -124.938586408999967, 49.273392506000093 ], [ -124.938916771, 49.272935791000116 ], [ -124.93936510399999, 49.272428093 ], [ -124.939805793999966, 49.272006701000045 ], [ -124.94046022899991, 49.27161149600007 ], [ -124.940492207999952, 49.271592196000078 ], [ -124.941072578999979, 49.271009201000055 ], [ -124.941417587999979, 49.270571602000089 ], [ -124.941821510999958, 49.270197511000035 ], [ -124.942131786999951, 49.269957122000079 ], [ -124.942205893999954, 49.269899694000095 ], [ -124.94265870299995, 49.269491898000105 ], [ -124.943268224999954, 49.269049203000073 ], [ -124.944511219999953, 49.268146400000028 ], [ -124.944798586999966, 49.268005201000037 ], [ -124.945663187999955, 49.267716594000042 ], [ -124.94580360099999, 49.267641483000041 ], [ -124.94602798699999, 49.267371912 ], [ -124.94619600599999, 49.266808208000036 ], [ -124.946199181999958, 49.266664297000069 ], [ -124.946517331, 49.266381099000078 ], [ -124.946961195999904, 49.266059618000092 ], [ -124.947197677999966, 49.265922391000046 ], [ -124.947902869999979, 49.265699799000075 ], [ -124.94841, 49.265432 ], [ -124.949248192999974, 49.264491504000077 ], [ -124.949739384999987, 49.26431800700005 ], [ -124.949987699999923, 49.264268204000082 ], [ -124.950330794999914, 49.264271600000043 ], [ -124.951215298999955, 49.264434089000098 ], [ -124.951742114999931, 49.264692982000035 ], [ -124.952123292999929, 49.26483528800005 ], [ -124.952710903999915, 49.264956196000085 ], [ -124.953527185999974, 49.26497860799999 ], [ -124.953782102000019, 49.26493778800004 ], [ -124.954834594999966, 49.264531289000047 ], [ -124.955590885999953, 49.264170498000055 ], [ -124.956044528999954, 49.263995803000093 ], [ -124.956525691999957, 49.263810491000093 ], [ -124.956755323, 49.263674104000053 ], [ -124.956976206999954, 49.263492598000035 ], [ -124.957245477999948, 49.262936204000027 ], [ -124.957345877999956, 49.262621304000056 ], [ -124.957268712999976, 49.262477124000043 ], [ -124.957100794999974, 49.262163511000097 ], [ -124.956915852999941, 49.262046642000058 ], [ -124.956870717999948, 49.26201810000012 ], [ -124.956668090999969, 49.261934209000081 ], [ -124.956438393, 49.261894194000106 ], [ -124.95584119499992, 49.2618930040001 ], [ -124.955510922, 49.261918436000038 ], [ -124.954679318999951, 49.261982507000077 ], [ -124.952716605999953, 49.261820684000156 ], [ -124.952366378999969, 49.261791793000093 ], [ -124.95189840799999, 49.261844794000055 ], [ -124.951144210999985, 49.261991395000031 ], [ -124.950510788999935, 49.262079796000059 ], [ -124.950245493999958, 49.262153694000126 ], [ -124.948435296999946, 49.26292279700008 ], [ -124.947708299999974, 49.263263081000048 ], [ -124.945598042999961, 49.263638609000118 ], [ -124.945383448999948, 49.263717519000068 ], [ -124.945220661999883, 49.263812221000066 ], [ -124.944997403999963, 49.263789323000033 ], [ -124.944481622999973, 49.263831982000056 ], [ -124.944057874999928, 49.263812562000027 ], [ -124.943396553999918, 49.2637358650001 ], [ -124.941799816999918, 49.263442116000085 ], [ -124.941645864999913, 49.263419912000067 ], [ -124.940339882999979, 49.263231562000051 ], [ -124.939497247999924, 49.263160286000058 ], [ -124.938538063999943, 49.263040130000029 ], [ -124.937056570999971, 49.262854538000099 ], [ -124.936794803999931, 49.262775470000065 ], [ -124.934506395999975, 49.261818608000077 ], [ -124.934169273999913, 49.26161365800008 ], [ -124.933945137999956, 49.261511542000044 ], [ -124.933671258999979, 49.261422430000067 ], [ -124.933148973999963, 49.261330845000018 ], [ -124.932801001999977, 49.261240095000055 ], [ -124.932649365, 49.261148599000059 ], [ -124.932270756999984, 49.260838829000114 ], [ -124.93194750899994, 49.260628592000025 ], [ -124.931716530999921, 49.260526400000074 ], [ -124.93164588, 49.260503591000024 ], [ -124.931167393999914, 49.260349047000062 ], [ -124.930223095999963, 49.259927441000073 ], [ -124.929861829999965, 49.259818559000081 ], [ -124.92973891299998, 49.259791059000058 ], [ -124.929301939999959, 49.259693286000093 ], [ -124.928045607999962, 49.25952781100009 ], [ -124.927410029, 49.259506999000095 ], [ -124.92678096499999, 49.259486441000021 ], [ -124.926488294999899, 49.259497926000094 ], [ -124.926108845999934, 49.259465350000056 ], [ -124.925533771999966, 49.259520826000035 ], [ -124.924685886999953, 49.259560993000107 ], [ -124.924089260999963, 49.25954065300008 ], [ -124.924075780999928, 49.259538797000069 ], [ -124.92356655699993, 49.259468833000049 ], [ -124.921546456999977, 49.258916705000061 ], [ -124.921098745, 49.258749305000073 ], [ -124.921002020999964, 49.25872502600005 ], [ -124.920859914999937, 49.258689328000038 ], [ -124.920234466999958, 49.258668652999987 ], [ -124.919788617999984, 49.258716413000123 ], [ -124.918398958999973, 49.258679095000048 ], [ -124.917558449999888, 49.258698576000029 ], [ -124.917269647999959, 49.258663288000029 ], [ -124.917024535999985, 49.258579794000049 ], [ -124.916516084999898, 49.258234969000107 ], [ -124.915294934999935, 49.257406711000051 ], [ -124.914786162999945, 49.257034338000025 ], [ -124.914258874999945, 49.256808524000114 ], [ -124.913565902999949, 49.256565728000112 ], [ -124.912357550999957, 49.255941482000125 ], [ -124.912111848999956, 49.255766162000072 ], [ -124.911833603, 49.255514954000013 ], [ -124.911685553999973, 49.255331636000022 ], [ -124.911577570999967, 49.254961496000099 ], [ -124.911571823999935, 49.254621190000094 ], [ -124.911543423999959, 49.254544401000011 ], [ -124.911170900999934, 49.254334504000134 ], [ -124.910431091999925, 49.254159635000093 ], [ -124.910192743999971, 49.253325902000022 ], [ -124.910112973999958, 49.253046879000124 ], [ -124.910129255999905, 49.252827137000132 ], [ -124.910187801999911, 49.252304129000095 ], [ -124.910917109999943, 49.252367598000099 ], [ -124.911209317, 49.252470103000114 ], [ -124.911324403, 49.252585148000065 ], [ -124.911325247999955, 49.25258595800004 ], [ -124.911377116999958, 49.252637814000117 ], [ -124.911501398999974, 49.252762038000057 ], [ -124.912211109999944, 49.253471293000068 ], [ -124.913022003999941, 49.253853005000082 ], [ -124.913305319999964, 49.254090904000051 ], [ -124.913480213999918, 49.254331507000067 ], [ -124.913641392000017, 49.254949689000043 ], [ -124.913748363, 49.255020466000104 ], [ -124.914078407999909, 49.255238799000153 ], [ -124.914226929999941, 49.255413735000097 ], [ -124.914408409999979, 49.255627523000108 ], [ -124.914598301999931, 49.255851198000073 ], [ -124.914826073999976, 49.25593362700004 ], [ -124.915168906999966, 49.256057707000124 ], [ -124.915410037999948, 49.256226321000064 ], [ -124.915747395999944, 49.256462213000077 ], [ -124.916543093999962, 49.256754108000074 ], [ -124.91671609299999, 49.256949212000102 ], [ -124.91737821399991, 49.257037491000126 ], [ -124.917992307999896, 49.256900788000038 ], [ -124.918748707999953, 49.256906503000053 ], [ -124.919487192999895, 49.25718280500007 ], [ -124.919734706, 49.257205606000049 ], [ -124.92030988099998, 49.25715 ], [ -124.921000307999975, 49.25688659300009 ], [ -124.921770779999989, 49.257234098000062 ], [ -124.92192298, 49.25738947000012 ], [ -124.922212984999959, 49.257685606000052 ], [ -124.923079454999979, 49.258051704000145 ], [ -124.92362518799996, 49.258282291000057 ], [ -124.924001315999945, 49.258387518000113 ], [ -124.924597392999914, 49.258554303000047 ], [ -124.925765198999969, 49.258508794000107 ], [ -124.926717181999948, 49.258258099000052 ], [ -124.927240813999958, 49.258295091000043 ], [ -124.927613338999919, 49.258456648000049 ], [ -124.927799108, 49.258537196000084 ], [ -124.928422997999974, 49.25864400600009 ], [ -124.929094806999942, 49.258624096000098 ], [ -124.929582732999933, 49.258506334000096 ], [ -124.929938779999986, 49.25842039900013 ], [ -124.930371090999969, 49.258575703000083 ], [ -124.93075138199994, 49.258451794000052 ], [ -124.931245200999967, 49.258749390000069 ], [ -124.931451988, 49.259159605000065 ], [ -124.931621589999935, 49.259283511000035 ], [ -124.931864288, 49.259314937000113 ], [ -124.932479005999966, 49.259394589000067 ], [ -124.932979615999926, 49.259548390000099 ], [ -124.93452109199994, 49.260296111000059 ], [ -124.934951918999928, 49.260356997 ], [ -124.935710300999986, 49.260464208000016 ], [ -124.936587192999951, 49.260747591000062 ], [ -124.937314196999978, 49.261095103000066 ], [ -124.937500072999967, 49.261301865000092 ], [ -124.938134896999912, 49.26200800100009 ], [ -124.93855865399992, 49.262064802000047 ], [ -124.938874433999928, 49.262107111000077 ], [ -124.938963877999967, 49.262119094000106 ], [ -124.939138978999964, 49.26223225800009 ], [ -124.939358404999965, 49.262374093000105 ], [ -124.94010050699994, 49.262369806000123 ], [ -124.94162788899996, 49.261906467000117 ], [ -124.942110003999957, 49.261760208000098 ], [ -124.942456308999979, 49.261827202000106 ], [ -124.943107114000014, 49.262301395000122 ], [ -124.943658799999938, 49.262355489000093 ], [ -124.94431339199997, 49.262191789000077 ], [ -124.94452308399994, 49.261953893000147 ], [ -124.945190502999964, 49.261807188000034 ], [ -124.94578037699992, 49.261744598000107 ], [ -124.947158510999941, 49.261828597000068 ], [ -124.947664100999972, 49.261792991000085 ], [ -124.94876958199994, 49.261327191000099 ], [ -124.948907882999961, 49.261268893000114 ], [ -124.950362612999953, 49.26081170500003 ], [ -124.950756735999974, 49.260748278000094 ], [ -124.950783363999903, 49.260743988000094 ], [ -124.950805080999942, 49.260740500000068 ], [ -124.951548891999948, 49.260620814000141 ], [ -124.952253285999944, 49.260707701000094 ], [ -124.952553645999956, 49.260806849000076 ], [ -124.952715827999924, 49.260860384000082 ], [ -124.953396594999958, 49.26108509900002 ], [ -124.954369226999972, 49.260909481000134 ], [ -124.954666618999951, 49.260855807000077 ], [ -124.955040647999965, 49.260858530000071 ], [ -124.955449182999971, 49.260861502000097 ], [ -124.955760751999961, 49.260876275 ], [ -124.95628999199999, 49.26090139800003 ], [ -124.957659188999926, 49.261129312000079 ], [ -124.958388186999926, 49.261522398000054 ], [ -124.958721349999934, 49.26203361700005 ], [ -124.958857811999962, 49.262242995000044 ], [ -124.959618291, 49.262732992000053 ], [ -124.959616895999886, 49.263030606000015 ], [ -124.959380106999973, 49.263286996000062 ], [ -124.958667806999983, 49.263325388000048 ], [ -124.958436590999924, 49.263419402000096 ], [ -124.958109900999915, 49.263856701000059 ], [ -124.958045314999964, 49.264289592000104 ], [ -124.957914623999926, 49.26444490100009 ], [ -124.957039706999964, 49.264936199000068 ], [ -124.956181596999969, 49.265121399000144 ], [ -124.956038709999973, 49.265340699000035 ], [ -124.956071110999986, 49.265455992000049 ], [ -124.956504799999934, 49.265708066000101 ], [ -124.956732810999981, 49.265840592000096 ], [ -124.957054706999926, 49.26633050600006 ], [ -124.95694898, 49.266475801000112 ], [ -124.95636599699999, 49.266656690000069 ], [ -124.956125297999947, 49.266850299000076 ], [ -124.956350699999945, 49.267296104000067 ], [ -124.956554295999922, 49.267445336000058 ], [ -124.956560388999975, 49.267599344000075 ], [ -124.955686295999925, 49.26761414900011 ], [ -124.955312679999977, 49.26733409200002 ], [ -124.9553070219999, 49.267190950000114 ], [ -124.955119297999914, 49.267189133000066 ], [ -124.95505108899999, 49.267138003000071 ], [ -124.955029086999957, 49.266913005000092 ], [ -124.955458389999961, 49.266672287000063 ], [ -124.955424294999943, 49.266465812000042 ], [ -124.955618305999963, 49.266175308000115 ], [ -124.955551391999933, 49.265870501000087 ], [ -124.955340389999932, 49.265737993000101 ], [ -124.954481111999954, 49.265572796000079 ], [ -124.953227504000012, 49.265513 ], [ -124.952956901999968, 49.265643985000047 ], [ -124.952513198999952, 49.265542896000063 ], [ -124.951620904999928, 49.265558594 ], [ -124.950280117999981, 49.265392005000123 ], [ -124.950448486999946, 49.266145394000041 ], [ -124.950646197999959, 49.266286387000058 ], [ -124.950184904999944, 49.266455787000027 ], [ -124.94982901799996, 49.266497096000109 ], [ -124.948047598999949, 49.266284907000077 ], [ -124.947615486999936, 49.266481495000029 ], [ -124.94720451100001, 49.266847495000071 ], [ -124.947072904999956, 49.267344484000063 ], [ -124.946654818999946, 49.267937006000047 ], [ -124.945982904999966, 49.268325802000021 ], [ -124.944967703, 49.26870320299999 ], [ -124.944076302999974, 49.269446710000096 ], [ -124.943818012999913, 49.269882509000091 ], [ -124.944044818999927, 49.270428002000081 ], [ -124.94399821699993, 49.270634501000082 ], [ -124.942489079999916, 49.270705702000022 ], [ -124.942108580999943, 49.270838099000116 ], [ -124.941663704999925, 49.271357983000037 ], [ -124.940994893999957, 49.271863611000079 ], [ -124.940113986999961, 49.272894704000151 ], [ -124.93910801699991, 49.273857498000069 ], [ -124.93790248699996, 49.274686310000085 ], [ -124.936843977999985, 49.275046699000022 ], [ -124.936264894, 49.275379907000115 ], [ -124.936080802000035, 49.275545107000013 ], [ -124.935946713999968, 49.276329902000029 ], [ -124.935717215999944, 49.276477997000029 ], [ -124.935241795999943, 49.276620409000039 ], [ -124.934307896999954, 49.276636090000125 ], [ -124.933931107999939, 49.276831191000078 ], [ -124.933397591999963, 49.276939398000053 ], [ -124.932726505999966, 49.276977895000051 ], [ -124.931457800999951, 49.276864002000117 ], [ -124.930605812999943, 49.276922401000036 ], [ -124.930252821999929, 49.277027705000101 ], [ -124.92944480099996, 49.277077598000034 ], [ -124.92920109899994, 49.277207193000059 ], [ -124.928611939999897, 49.277835156000037 ], [ -124.928488890999944, 49.277966308000039 ], [ -124.92776731399999, 49.278526004000092 ], [ -124.927497316999975, 49.278963200000078 ], [ -124.926817808999914, 49.279558598000058 ], [ -124.926723098999943, 49.279965895000082 ], [ -124.926504490999918, 49.280310506000063 ], [ -124.925967702000023, 49.28067090800004 ], [ -124.9253568, 49.280887400000047 ], [ -124.924601302999989, 49.280891605000114 ], [ -124.924110214999956, 49.280989897000069 ], [ -124.92315690199996, 49.280853202000095 ], [ -124.922064394999907, 49.281059716000108 ], [ -124.921602994999986, 49.28122919000004 ], [ -124.921342180999929, 49.281575200000091 ], [ -124.921168510999905, 49.2824056010001 ], [ -124.921803906999941, 49.282835696000078 ], [ -124.921756511999959, 49.283043601000053 ], [ -124.920341599999972, 49.283453796000082 ], [ -124.920134502999957, 49.283403898000117 ], [ -124.920137596999965, 49.283160399000096 ], [ -124.919917272999925, 49.283119096000092 ], [ -124.919295109999936, 49.283418199000067 ], [ -124.918461394, 49.284241409000089 ], [ -124.917483199999936, 49.284544695000086 ], [ -124.917364677999913, 49.284672898000103 ], [ -124.917209091999908, 49.285305303000072 ], [ -124.917358904, 49.285581502000085 ], [ -124.917339388999935, 49.285806610000087 ], [ -124.916657595999979, 49.286303601000057 ], [ -124.916179288999928, 49.286410404000101 ], [ -124.915912605999921, 49.286595584000061 ], [ -124.915323816999972, 49.286659694000086 ], [ -124.914901092999941, 49.287125412000073 ], [ -124.91471521499993, 49.288351606000035 ], [ -124.914501612999956, 49.288535403000061 ], [ -124.913604200999984, 49.288801686000092 ], [ -124.91267080099999, 49.289221798000085 ], [ -124.911467192999964, 49.289341491000052 ], [ -124.911074675999913, 49.289184795000082 ], [ -124.910280410999988, 49.289261700000075 ], [ -124.909927701999948, 49.289411211000036 ], [ -124.908621010999951, 49.289757293000029 ], [ -124.907747500999946, 49.289896908000102 ], [ -124.907225393, 49.289905402000031 ], [ -124.906447575999891, 49.290062094000092 ], [ -124.90567228499999, 49.290031764000084 ], [ -124.905430844999913, 49.289803419000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153983917", "BldgCostT": "104721667", "sL_LossRatio": "0.996138177334476", "sL_AssetLoss": "51396.90172", "sL_BldgLoss": "51198.416", "sL_StrLoss": "49760.656", "sL_NStrLoss": "1437.76", "sL_ContLoss": "198.48572", "geom_point": "0101000020E610000072902982EC3D5FC0AD341068BCA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.938965218999911, 49.292625421000054 ], [ -124.938965305999915, 49.292621622000119 ], [ -124.936070774999948, 49.29259315400008 ], [ -124.936084910999924, 49.291976900000044 ], [ -124.935540993, 49.291971542000077 ], [ -124.935571605999939, 49.290637582000073 ], [ -124.936732779999915, 49.290466594000044 ], [ -124.937601898999986, 49.290191711000055 ], [ -124.937856004999972, 49.289980895000042 ], [ -124.938293683, 49.289901195000084 ], [ -124.938316105999945, 49.289801491000041 ], [ -124.938146616, 49.289697492000116 ], [ -124.938250778999972, 49.289550792000064 ], [ -124.938145307999918, 49.289310087000075 ], [ -124.938310724999951, 49.289298702000053 ], [ -124.938607613999977, 49.289545102000062 ], [ -124.938735911999956, 49.289291597000073 ], [ -124.93924739899991, 49.289372790000066 ], [ -124.939631503999962, 49.28931160300008 ], [ -124.940717889, 49.288636491000013 ], [ -124.941089006999931, 49.288603689000084 ], [ -124.941613688999922, 49.288676400000021 ], [ -124.942107613999923, 49.288622196000048 ], [ -124.943116293999964, 49.288039714000078 ], [ -124.943821583999949, 49.287793297000057 ], [ -124.944422394999918, 49.287710690000026 ], [ -124.94464489899994, 49.287789104000083 ], [ -124.944915088999892, 49.287991290000079 ], [ -124.945293095, 49.288532504000024 ], [ -124.945557187, 49.288573794000058 ], [ -124.945870111999966, 49.288469798000065 ], [ -124.94652913099992, 49.288551046000038 ], [ -124.946574980999955, 49.288556699000033 ], [ -124.946840401999964, 49.288677805000134 ], [ -124.947774502999962, 49.288662086000109 ], [ -124.94850239299997, 49.287930114000098 ], [ -124.950710417, 49.286759400000093 ], [ -124.952493000999965, 49.2852183910001 ], [ -124.953259609999961, 49.284791100000078 ], [ -124.95395288899999, 49.284563210000101 ], [ -124.955084596999981, 49.284319687000107 ], [ -124.955500119, 49.284043401000055 ], [ -124.955679214999975, 49.284076201000104 ], [ -124.956146901999929, 49.284436487000022 ], [ -124.956595204999985, 49.284644400000069 ], [ -124.957230705999933, 49.285407795000076 ], [ -124.957873601999921, 49.285639885000101 ], [ -124.960597005, 49.285638500000083 ], [ -124.961290892999955, 49.28548329300002 ], [ -124.961384696999929, 49.285417812000048 ], [ -124.961358916999984, 49.28512149200008 ], [ -124.962413513999962, 49.285014700000026 ], [ -124.963120493999924, 49.284822407000128 ], [ -124.963369090999919, 49.284835308000034 ], [ -124.963777492999924, 49.285044615000082 ], [ -124.963991190999963, 49.285266793000091 ], [ -124.964255818999916, 49.285352204000063 ], [ -124.964241293999976, 49.28566699000001 ], [ -124.964437114999981, 49.285770992000025 ], [ -124.964700100999934, 49.285793792000064 ], [ -124.965222397999952, 49.285451899000059 ], [ -124.967007880999972, 49.28470139300007 ], [ -124.968123813999938, 49.284376693000091 ], [ -124.968741603999945, 49.284348184000081 ], [ -124.968935691999917, 49.284426504000045 ], [ -124.96893110399995, 49.284615894000062 ], [ -124.969112009999904, 49.284702803000037 ], [ -124.969934092999935, 49.284643016000075 ], [ -124.970562909999899, 49.28485660700008 ], [ -124.971662194999951, 49.28483809199999 ], [ -124.972365285999956, 49.284907890000092 ], [ -124.972603508, 49.285001910000069 ], [ -124.97273380899999, 49.285179887000076 ], [ -124.973466188999936, 49.285239705000087 ], [ -124.97381870699995, 49.28547620100008 ], [ -124.974082798999959, 49.285517506000076 ], [ -124.974257792999964, 49.285783812000027 ], [ -124.974658802, 49.28582218300005 ], [ -124.974909579999959, 49.285584396000054 ], [ -124.974909015999927, 49.285110252000045 ], [ -124.97490870399993, 49.28484669700007 ], [ -124.975121790999964, 49.284679989000033 ], [ -124.975313422999932, 49.284668600000089 ], [ -124.975530396999915, 49.284593103000084 ], [ -124.9748222, 49.284064806000117 ], [ -124.975116584999938, 49.28354780600008 ], [ -124.97546328599999, 49.283252993000069 ], [ -124.975390002999958, 49.283173192000035 ], [ -124.974463415999963, 49.282686106000071 ], [ -124.974302404999946, 49.282409792000074 ], [ -124.97441317699996, 49.282119299000037 ], [ -124.97495057399999, 49.281785995000035 ], [ -124.975069594999979, 49.281344513000086 ], [ -124.974899010999962, 49.281185 ], [ -124.97422730000001, 49.280900209000038 ], [ -124.973845489, 49.280645192000136 ], [ -124.973521181999899, 49.280101197000057 ], [ -124.972901908999944, 49.279401892000124 ], [ -124.972908697999941, 49.279212504000014 ], [ -124.97318541099996, 49.278893491000133 ], [ -124.973202422999933, 49.278668402000058 ], [ -124.97378958699997, 49.278217007000094 ], [ -124.973810601999929, 49.278046086000067 ], [ -124.973696800999974, 49.277570394000072 ], [ -124.973776569999956, 49.277325854000047 ], [ -124.973793909999969, 49.277272697000043 ], [ -124.973669501, 49.276923796000048 ], [ -124.973197382, 49.276428201000073 ], [ -124.972886719999948, 49.276252996000053 ], [ -124.971524518999914, 49.276564901000064 ], [ -124.971159807999953, 49.27674999300006 ], [ -124.970800997999959, 49.277063412000054 ], [ -124.970419895999925, 49.27712321000012 ], [ -124.970196714999958, 49.277046301000063 ], [ -124.969819693999966, 49.276593416000047 ], [ -124.969775603999949, 49.276163212000021 ], [ -124.969574883999911, 49.275949590000067 ], [ -124.968605395999987, 49.275408414000069 ], [ -124.967490007, 49.275022491000129 ], [ -124.966605103999882, 49.274921305000085 ], [ -124.965229294, 49.275258912 ], [ -124.964751783999958, 49.275302997000033 ], [ -124.964432802999937, 49.275246084000088 ], [ -124.963578478999978, 49.27483729900014 ], [ -124.963357005999981, 49.274814489000143 ], [ -124.963003679999971, 49.274936999000069 ], [ -124.962858887999943, 49.275110794000042 ], [ -124.962973586999951, 49.275190502000058 ], [ -124.963649183, 49.27524179100007 ], [ -124.963942511999946, 49.275379906000104 ], [ -124.964261110999956, 49.275761586000122 ], [ -124.964370912, 49.276146208000107 ], [ -124.964170109999927, 49.276248703000128 ], [ -124.962788, 49.276433803000025 ], [ -124.961543488999965, 49.27695940300007 ], [ -124.961089787, 49.2772912020001 ], [ -124.960015287999965, 49.277587498000017 ], [ -124.959370309999954, 49.277634507000059 ], [ -124.957759094, 49.276879611000055 ], [ -124.95740791799993, 49.27703910300005 ], [ -124.95702438499994, 49.277386596000063 ], [ -124.956486009999978, 49.277692804000019 ], [ -124.955635521999938, 49.277752704000086 ], [ -124.954367888, 49.278026105000052 ], [ -124.953988813999956, 49.27785240700009 ], [ -124.953483711999965, 49.277923595000026 ], [ -124.953422182999986, 49.277735604000107 ], [ -124.953157705999942, 49.277650105000141 ], [ -124.953082507999966, 49.277559255000064 ], [ -124.952666116000017, 49.277056195000064 ], [ -124.952905406999932, 49.276134796000115 ], [ -124.9531816099999, 49.275841393000107 ], [ -124.953922104999961, 49.275442591000086 ], [ -124.954091787, 49.27489000200012 ], [ -124.95427987599993, 49.274770397000033 ], [ -124.954622992999973, 49.274720515000077 ], [ -124.954971497999949, 49.274857198000127 ], [ -124.955566590999965, 49.27530589900001 ], [ -124.955909485999896, 49.275264602000036 ], [ -124.956080521, 49.275090803000111 ], [ -124.95607329799999, 49.274919890000028 ], [ -124.955655817999968, 49.274432806 ], [ -124.95565120699996, 49.274306111000065 ], [ -124.955934492, 49.273851800000081 ], [ -124.956596585999932, 49.273202292000036 ], [ -124.956789682999954, 49.27284769500006 ], [ -124.95943240599992, 49.271553099000137 ], [ -124.959993801999971, 49.271461901000066 ], [ -124.960797704999905, 49.271637107000089 ], [ -124.96107280199999, 49.272010304000062 ], [ -124.961285397999987, 49.272861900000045 ], [ -124.961606005999954, 49.272973007000068 ], [ -124.962016510999973, 49.272903190000058 ], [ -124.962232000999975, 49.272108497000033 ], [ -124.962244600999981, 49.271379291000073 ], [ -124.962031294, 49.270869499000106 ], [ -124.961595311999986, 49.270265600000066 ], [ -124.961596707999959, 49.269959407000101 ], [ -124.961718317999967, 49.269579094000115 ], [ -124.96229751099996, 49.269237295000046 ], [ -124.962346456999967, 49.269187786000046 ], [ -124.963129610999943, 49.268395605000123 ], [ -124.963195995999911, 49.267979708000084 ], [ -124.962499109999939, 49.267398698000072 ], [ -124.962851298999936, 49.267257687000082 ], [ -124.963585493999972, 49.267424304000038 ], [ -124.96382730099999, 49.267646505000073 ], [ -124.963928689999989, 49.268112213000052 ], [ -124.965080780000022, 49.268740293000086 ], [ -124.965642914999989, 49.269369793000081 ], [ -124.96577728799997, 49.269654608000053 ], [ -124.966103399999966, 49.269919510000072 ], [ -124.966887297999932, 49.270247109000103 ], [ -124.969018915999968, 49.271668399000042 ], [ -124.97061089499995, 49.272253791000026 ], [ -124.970791113999951, 49.272645504000074 ], [ -124.970809522999957, 49.273464398000051 ], [ -124.971355893999927, 49.273742092000077 ], [ -124.97177285199993, 49.273841933000035 ], [ -124.973425786999897, 49.274237707000104 ], [ -124.974638421999941, 49.27432600100007 ], [ -124.975418408999957, 49.274222088000059 ], [ -124.97601669, 49.274041192000041 ], [ -124.97639197599996, 49.273836094000075 ], [ -124.97670259, 49.27335469500013 ], [ -124.976708617999932, 49.273138199000044 ], [ -124.97646529799999, 49.272873304000065 ], [ -124.976483104999957, 49.272683902000075 ], [ -124.977169911999923, 49.272303599000118 ], [ -124.977231017999941, 49.272131302000076 ], [ -124.977420010999978, 49.272001709000087 ], [ -124.978265004999983, 49.271816600000065 ], [ -124.979328803999977, 49.271950392000072 ], [ -124.979621902999952, 49.271748207000044 ], [ -124.979365216999923, 49.271500397000061 ], [ -124.979357995999919, 49.271320914000093 ], [ -124.979882993999951, 49.271060302000123 ], [ -124.980241606, 49.271063189000103 ], [ -124.981649295999915, 49.271560207000114 ], [ -124.981798598999887, 49.272178314000087 ], [ -124.982614407999947, 49.272659684000068 ], [ -124.982571899999954, 49.272957410000132 ], [ -124.981758104, 49.273564111000027 ], [ -124.981722196999925, 49.273717895000104 ], [ -124.982222490999931, 49.2738360990001 ], [ -124.982901187999971, 49.273635292000073 ], [ -124.983272109999959, 49.273611087000106 ], [ -124.983719287999975, 49.273800501000061 ], [ -124.983991275999955, 49.274048297000014 ], [ -124.984297212999977, 49.274142300000058 ], [ -124.984502615999986, 49.274129502000072 ], [ -124.985014102999969, 49.273885908000047 ], [ -124.985770010999943, 49.273856009000042 ], [ -124.986313801999955, 49.274052596000047 ], [ -124.986433097999935, 49.274267592000022 ], [ -124.987242618999957, 49.27456810800004 ], [ -124.987538918999945, 49.274770403000112 ], [ -124.988944007999976, 49.275194794000058 ], [ -124.989269591999943, 49.275387108000068 ], [ -124.990148409, 49.275364306000064 ], [ -124.991006897, 49.275511001000055 ], [ -124.991749607999921, 49.275875590000091 ], [ -124.992512805999922, 49.27602510000002 ], [ -124.99373010199993, 49.276597590000058 ], [ -124.994252689999939, 49.27691241300009 ], [ -124.994601093999933, 49.277382391000032 ], [ -124.995499513999931, 49.277466405000069 ], [ -124.996013590999951, 49.277628795000084 ], [ -124.996347901000021, 49.277991682000028 ], [ -124.996388809999956, 49.278036085000096 ], [ -124.996584688, 49.278127648000044 ], [ -124.996561741999926, 49.279188674000125 ], [ -124.991069885999977, 49.279137509000059 ], [ -124.991075600999963, 49.278874752000057 ], [ -124.990598984999934, 49.278870298000037 ], [ -124.990604875999949, 49.278599501000045 ], [ -124.99012198099993, 49.278594986000058 ], [ -124.990125921999905, 49.278413967000084 ], [ -124.989559771999936, 49.278408672000111 ], [ -124.989567701999974, 49.278044535000099 ], [ -124.988853967999944, 49.278037855000036 ], [ -124.988855554999958, 49.27796496400007 ], [ -124.98832995099994, 49.277960042000053 ], [ -124.988335386999964, 49.277710712000022 ], [ -124.987760845999944, 49.277705328000046 ], [ -124.987761060999901, 49.27769544700007 ], [ -124.987053119999942, 49.277688809000068 ], [ -124.987055221999967, 49.277592494000054 ], [ -124.986479702999972, 49.277587095000051 ], [ -124.986483564999943, 49.277410309000032 ], [ -124.985905291999984, 49.27740488000012 ], [ -124.985908882999951, 49.277240639000112 ], [ -124.985294179999954, 49.277234866000107 ], [ -124.985299018999967, 49.27701358500012 ], [ -124.984731570999884, 49.277008252000094 ], [ -124.984736320999929, 49.276791188000104 ], [ -124.984156763999977, 49.276785738000029 ], [ -124.98415702299998, 49.276773884000065 ], [ -124.981362956999973, 49.276747565000072 ], [ -124.981365707999913, 49.276622256000117 ], [ -124.979301121999967, 49.27665765400014 ], [ -124.979270592999939, 49.278045310000067 ], [ -124.978923320999954, 49.278042027000076 ], [ -124.97891709699995, 49.27832481800008 ], [ -124.978172983999912, 49.278317781000062 ], [ -124.978160983999913, 49.278862662000122 ], [ -124.978515673999965, 49.278866017000034 ], [ -124.97849681199996, 49.279722703000061 ], [ -124.979110303999946, 49.279728504000076 ], [ -124.979094683999932, 49.280438355000101 ], [ -124.980958675999887, 49.280455959000115 ], [ -124.98095413499999, 49.280662700000086 ], [ -124.982801118999987, 49.280680112000077 ], [ -124.982763952999932, 49.282375207000079 ], [ -124.982607922999961, 49.282449672000034 ], [ -124.979595693999926, 49.283906351000027 ], [ -124.979116743999938, 49.284201549000059 ], [ -124.978424852999979, 49.28473114900013 ], [ -124.977096736999968, 49.285747652000154 ], [ -124.976488981000031, 49.285468260000094 ], [ -124.976249859999939, 49.285848514000094 ], [ -124.976152985999974, 49.285927650000083 ], [ -124.97610719799998, 49.285965068000088 ], [ -124.975814037999939, 49.286054997000051 ], [ -124.974911790999926, 49.286173345000066 ], [ -124.974540629999922, 49.28618962200008 ], [ -124.974256402999984, 49.286123021000073 ], [ -124.973315591999935, 49.285626263000026 ], [ -124.972729475999941, 49.285424471000105 ], [ -124.971425068999949, 49.28513619800006 ], [ -124.971384614000016, 49.28512726700005 ], [ -124.968678523999969, 49.284839536000113 ], [ -124.967947241999951, 49.28492796300003 ], [ -124.967433891, 49.28503736300005 ], [ -124.965480498999923, 49.285671218000068 ], [ -124.965170010999927, 49.285859965000022 ], [ -124.964969038999953, 49.286013378000163 ], [ -124.964946442999945, 49.286030622000091 ], [ -124.964529543999973, 49.286433458000076 ], [ -124.964404361999968, 49.286504245000053 ], [ -124.963856954999983, 49.286682789000032 ], [ -124.963658513999974, 49.286747539000018 ], [ -124.963632327999946, 49.286756079000043 ], [ -124.962895358999958, 49.286842584000119 ], [ -124.962392243999929, 49.286901658000076 ], [ -124.961116358999945, 49.28705141500005 ], [ -124.961050774999947, 49.28706665900004 ], [ -124.960773967999927, 49.28713092400011 ], [ -124.959441383999959, 49.287573531000056 ], [ -124.959104826, 49.287636884000115 ], [ -124.9587048879999, 49.287647428000064 ], [ -124.956599636999911, 49.287511920000092 ], [ -124.955654889999963, 49.287378577000048 ], [ -124.953720463999915, 49.287038543000087 ], [ -124.953527621999953, 49.287025501000059 ], [ -124.953394070999948, 49.287016471000094 ], [ -124.953153128999972, 49.28704204800006 ], [ -124.952955458999966, 49.287098625000077 ], [ -124.951511631999907, 49.287961288000062 ], [ -124.950410410999964, 49.288530144000084 ], [ -124.950347023999967, 49.288562901000084 ], [ -124.949907268999937, 49.288936659000079 ], [ -124.949631681999904, 49.289217493000109 ], [ -124.949244930999953, 49.289798769000051 ], [ -124.948788591999985, 49.290963512000161 ], [ -124.948582216999938, 49.291271612000045 ], [ -124.948518474999972, 49.29136679800007 ], [ -124.94832394599996, 49.291524225000039 ], [ -124.948111471999965, 49.291627466000108 ], [ -124.947860452999961, 49.291672710000078 ], [ -124.947633699999983, 49.291675907000084 ], [ -124.947469009999978, 49.29165481700003 ], [ -124.947344731999976, 49.291638892000115 ], [ -124.947219953999976, 49.291601281000048 ], [ -124.946459279999914, 49.29137193499999 ], [ -124.945930913, 49.291170566000055 ], [ -124.945445457999966, 49.29107493099999 ], [ -124.94494941799999, 49.291021493000045 ], [ -124.943921898000013, 49.291024943000082 ], [ -124.943866229999983, 49.291073563000047 ], [ -124.943780637999936, 49.291103840000062 ], [ -124.943621180999926, 49.291107193000066 ], [ -124.943402699999965, 49.291146846000103 ], [ -124.943266650999959, 49.291185116000115 ], [ -124.942926228, 49.291271802000054 ], [ -124.942705780999958, 49.291338091000092 ], [ -124.942595115999964, 49.291380100000062 ], [ -124.940984919999934, 49.291993609000066 ], [ -124.94096000699993, 49.292003087000126 ], [ -124.940122604999928, 49.292282890000067 ], [ -124.938965218999911, 49.292625421000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9555500", "BldgCostT": "6590000", "sL_LossRatio": "0.973173407699702", "sL_AssetLoss": "7590.528", "sL_BldgLoss": "7386.9", "sL_StrLoss": "6432.9", "sL_NStrLoss": "954", "sL_ContLoss": "203.628", "geom_point": "0101000020E61000003E7538FC663D5FC067D3CFA3FBA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.940359941999958, 49.294215860000051 ], [ -124.940361675999938, 49.294139968000067 ], [ -124.938930891999973, 49.294125924000085 ], [ -124.938965218999911, 49.292625421000054 ], [ -124.940122604999928, 49.292282890000067 ], [ -124.94096000699993, 49.292003087000126 ], [ -124.940984919999934, 49.291993609000066 ], [ -124.942595115999964, 49.291380100000062 ], [ -124.942705780999958, 49.291338091000092 ], [ -124.942926228, 49.291271802000054 ], [ -124.943266650999959, 49.291185116000115 ], [ -124.943402699999965, 49.291146846000103 ], [ -124.943621180999926, 49.291107193000066 ], [ -124.943780637999936, 49.291103840000062 ], [ -124.943866229999983, 49.291073563000047 ], [ -124.943921898000013, 49.291024943000082 ], [ -124.94494941799999, 49.291021493000045 ], [ -124.945445457999966, 49.29107493099999 ], [ -124.945930913, 49.291170566000055 ], [ -124.946459279999914, 49.29137193499999 ], [ -124.947219953999976, 49.291601281000048 ], [ -124.947344731999976, 49.291638892000115 ], [ -124.947469009999978, 49.29165481700003 ], [ -124.947633699999983, 49.291675907000084 ], [ -124.947860452999961, 49.291672710000078 ], [ -124.948111471999965, 49.291627466000108 ], [ -124.94832394599996, 49.291524225000039 ], [ -124.948518474999972, 49.29136679800007 ], [ -124.948582216999938, 49.291271612000045 ], [ -124.948788591999985, 49.290963512000161 ], [ -124.949244930999953, 49.289798769000051 ], [ -124.949631681999904, 49.289217493000109 ], [ -124.949907268999937, 49.288936659000079 ], [ -124.950347023999967, 49.288562901000084 ], [ -124.950410410999964, 49.288530144000084 ], [ -124.951511631999907, 49.287961288000062 ], [ -124.952955458999966, 49.287098625000077 ], [ -124.953153128999972, 49.28704204800006 ], [ -124.953394070999948, 49.287016471000094 ], [ -124.953527621999953, 49.287025501000059 ], [ -124.953720463999915, 49.287038543000087 ], [ -124.955654889999963, 49.287378577000048 ], [ -124.956599636999911, 49.287511920000092 ], [ -124.9587048879999, 49.287647428000064 ], [ -124.959104826, 49.287636884000115 ], [ -124.959441383999959, 49.287573531000056 ], [ -124.960773967999927, 49.28713092400011 ], [ -124.961050774999947, 49.28706665900004 ], [ -124.961116358999945, 49.28705141500005 ], [ -124.962392243999929, 49.286901658000076 ], [ -124.962895358999958, 49.286842584000119 ], [ -124.963632327999946, 49.286756079000043 ], [ -124.963658513999974, 49.286747539000018 ], [ -124.963856954999983, 49.286682789000032 ], [ -124.964404361999968, 49.286504245000053 ], [ -124.964529543999973, 49.286433458000076 ], [ -124.964946442999945, 49.286030622000091 ], [ -124.964969038999953, 49.286013378000163 ], [ -124.965170010999927, 49.285859965000022 ], [ -124.965480498999923, 49.285671218000068 ], [ -124.967433891, 49.28503736300005 ], [ -124.967947241999951, 49.28492796300003 ], [ -124.968678523999969, 49.284839536000113 ], [ -124.971384614000016, 49.28512726700005 ], [ -124.971425068999949, 49.28513619800006 ], [ -124.972729475999941, 49.285424471000105 ], [ -124.973315591999935, 49.285626263000026 ], [ -124.974256402999984, 49.286123021000073 ], [ -124.974540629999922, 49.28618962200008 ], [ -124.974911790999926, 49.286173345000066 ], [ -124.975814037999939, 49.286054997000051 ], [ -124.97610719799998, 49.285965068000088 ], [ -124.976152985999974, 49.285927650000083 ], [ -124.976249859999939, 49.285848514000094 ], [ -124.976488981000031, 49.285468260000094 ], [ -124.977096736999968, 49.285747652000154 ], [ -124.978424852999979, 49.28473114900013 ], [ -124.979116743999938, 49.284201549000059 ], [ -124.979595693999926, 49.283906351000027 ], [ -124.982607922999961, 49.282449672000034 ], [ -124.982763952999932, 49.282375207000079 ], [ -124.982722193999933, 49.284279606000034 ], [ -124.979932352, 49.284253296000074 ], [ -124.979893483999916, 49.286020873000062 ], [ -124.979779343999923, 49.286019794000062 ], [ -124.979760372999962, 49.286882372000115 ], [ -124.979757435999971, 49.287015873000101 ], [ -124.977127744000015, 49.286991004000114 ], [ -124.976095136999973, 49.286981221000076 ], [ -124.976089451999897, 49.28723874300011 ], [ -124.976087210999964, 49.287340265000076 ], [ -124.975735696999948, 49.287336933000084 ], [ -124.97572402899999, 49.287865372000084 ], [ -124.975325910999942, 49.287861596000063 ], [ -124.975320624999938, 49.288100881000119 ], [ -124.969827738999982, 49.288048637000074 ], [ -124.969838639999949, 49.287557784000093 ], [ -124.9692558469999, 49.28755222500012 ], [ -124.969257968999926, 49.287456700000064 ], [ -124.96875156399993, 49.287451867000108 ], [ -124.966920481999949, 49.287434371000046 ], [ -124.966421869999948, 49.287429601000014 ], [ -124.966428927999971, 49.287606983000067 ], [ -124.966431538999942, 49.287672624000074 ], [ -124.966232339999948, 49.287676015000059 ], [ -124.965606946999941, 49.287686659000023 ], [ -124.965615142999923, 49.287892742000082 ], [ -124.965617670999933, 49.287956354000102 ], [ -124.96542462799999, 49.287959639000071 ], [ -124.964793073999942, 49.287970384000111 ], [ -124.964801347999952, 49.288178496000043 ], [ -124.964803795999941, 49.288240080000094 ], [ -124.964616905999932, 49.288243259000126 ], [ -124.964391493999955, 49.288247093000102 ], [ -124.964394446999975, 49.28832136900013 ], [ -124.964402212999929, 49.288516788000081 ], [ -124.963809166999951, 49.288526873000066 ], [ -124.962833016999951, 49.288543465000046 ], [ -124.962639541999962, 49.288558263000063 ], [ -124.962622142999948, 49.288547047000066 ], [ -124.96234069499998, 49.288551829000021 ], [ -124.962333106999893, 49.288360715000145 ], [ -124.962236541999957, 49.288298463000032 ], [ -124.962222578999928, 49.288283958000129 ], [ -124.961917683999943, 49.28828913600006 ], [ -124.961916603999939, 49.288261911000106 ], [ -124.961203960999953, 49.288255060000097 ], [ -124.956517719999979, 49.288209894000019 ], [ -124.956520327999968, 49.288093945000128 ], [ -124.956059636999939, 49.288089493000051 ], [ -124.956058169999963, 49.288154664000018 ], [ -124.954771384999958, 49.28814222000004 ], [ -124.954763437999958, 49.288494896000067 ], [ -124.954001210999962, 49.288487518000132 ], [ -124.953996420999928, 49.288699914000084 ], [ -124.953565829999931, 49.288695744000108 ], [ -124.953557425, 49.289068324000013 ], [ -124.952876013999955, 49.289061722000035 ], [ -124.952862432999908, 49.289663340000118 ], [ -124.952403028999939, 49.289658886000048 ], [ -124.952393238999917, 49.290092350000066 ], [ -124.951933181999962, 49.29008788800013 ], [ -124.951923843999907, 49.29050116100008 ], [ -124.951479603999971, 49.29049685000011 ], [ -124.951410103999962, 49.293571166000085 ], [ -124.947054722999923, 49.293528805000065 ], [ -124.946733336999969, 49.293525672000058 ], [ -124.94672394, 49.293939481000045 ], [ -124.94586122, 49.293931067000081 ], [ -124.945853525999937, 49.294269602000064 ], [ -124.942155730999971, 49.294233459000111 ], [ -124.940359941999958, 49.294215860000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.995349716306921", "sL_AssetLoss": "814.789", "sL_BldgLoss": "811", "sL_StrLoss": "783.03", "sL_NStrLoss": "27.97", "sL_ContLoss": "3.789", "geom_point": "0101000020E61000005FB67CA8DD475FC0C35A08B46CBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.117972785999896, 49.466248485000072 ], [ -125.118021679999956, 49.463687420000092 ], [ -125.118062786999985, 49.4636590100001 ], [ -125.118375721999925, 49.463563604000036 ], [ -125.118572602999947, 49.463325699000073 ], [ -125.119012100999925, 49.463272989000117 ], [ -125.119955720999926, 49.463354202000168 ], [ -125.120072901999919, 49.463523690000116 ], [ -125.121660297999981, 49.464195913000047 ], [ -125.121952406, 49.464541983000061 ], [ -125.122436590999953, 49.464550503000048 ], [ -125.122856180999975, 49.464381095000064 ], [ -125.123261395999918, 49.4641931130001 ], [ -125.123654178, 49.463673199000056 ], [ -125.125043778999924, 49.462622197000073 ], [ -125.12505502199997, 49.462253301000096 ], [ -125.125254193999965, 49.462069609000103 ], [ -125.126174905999946, 49.461972702000047 ], [ -125.127096793999954, 49.46161379800003 ], [ -125.12744479199992, 49.461652301000079 ], [ -125.128270911999934, 49.461932808000064 ], [ -125.128296400999972, 49.461943257000058 ], [ -125.128252379999964, 49.464276269000024 ], [ -125.123526000999973, 49.464238180000116 ], [ -125.123487012999945, 49.466293184000058 ], [ -125.117972785999896, 49.466248485000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7709166", "BldgCostT": "5316666", "sL_LossRatio": "0.996524638236596", "sL_AssetLoss": "1727.8489", "sL_BldgLoss": "1721.844", "sL_StrLoss": "1650.716", "sL_NStrLoss": "71.128", "sL_ContLoss": "6.0049", "geom_point": "0101000020E6100000378E9AA761455FC0EB1791CDFAA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.096026132999953, 49.2853076970001 ], [ -125.09602895099999, 49.285163077000107 ], [ -125.095180809999988, 49.285155976000091 ], [ -125.095184679999988, 49.284957555000076 ], [ -125.094433192999972, 49.28495125700006 ], [ -125.094457534999947, 49.283704196000031 ], [ -125.090525519999943, 49.283671160000033 ], [ -125.090531400999978, 49.283371183 ], [ -125.089838011999959, 49.283365343000028 ], [ -125.089840689999974, 49.283228828000091 ], [ -125.088438966999973, 49.283217008000065 ], [ -125.088439941999965, 49.283167438000099 ], [ -125.087699742999988, 49.283161188000129 ], [ -125.087707689999917, 49.282757036000113 ], [ -125.086432317999936, 49.282746257000106 ], [ -125.086441504999954, 49.282279772000024 ], [ -125.085847123999955, 49.282274744000112 ], [ -125.085855561999949, 49.28184651800008 ], [ -125.085680942999929, 49.281845040000036 ], [ -125.08568111299999, 49.281836412000082 ], [ -125.081582089999955, 49.281801635000086 ], [ -125.081583563, 49.281727253000092 ], [ -125.080885666999947, 49.281721317000056 ], [ -125.080889549999966, 49.281525355000028 ], [ -125.080248954999902, 49.28151990200007 ], [ -125.080254291999893, 49.2812506980001 ], [ -125.079383538999963, 49.281243279000059 ], [ -125.079385768999927, 49.281130950000033 ], [ -125.077708081999987, 49.281116637000103 ], [ -125.077710215999929, 49.281009331000078 ], [ -125.076783453999937, 49.281001414000038 ], [ -125.076783704999926, 49.280988811000086 ], [ -125.075435504999945, 49.280977279000069 ], [ -125.07543731199992, 49.280886585000083 ], [ -125.074757283999958, 49.280880762000074 ], [ -125.074761950999928, 49.280646761000092 ], [ -125.07396626799999, 49.280639941000061 ], [ -125.073968158999975, 49.280545189000094 ], [ -125.07356495799999, 49.280541732000124 ], [ -125.073565009999953, 49.280539101000024 ], [ -125.073386732999907, 49.2805375720001 ], [ -125.073384547999979, 49.2806469430001 ], [ -125.070518208999914, 49.280622314000091 ], [ -125.070522548999975, 49.280725897000124 ], [ -125.069698124999974, 49.280740674000086 ], [ -125.06970941499992, 49.281010352000102 ], [ -125.068472771999922, 49.281032505000063 ], [ -125.06846148799994, 49.280762826000071 ], [ -125.06763706299995, 49.280777588000099 ], [ -125.067625784999933, 49.280507909000065 ], [ -125.06721357399999, 49.280515287000078 ], [ -125.067179743999972, 49.279706249000135 ], [ -125.0672333, 49.279705289000063 ], [ -125.067238867999919, 49.27942830900006 ], [ -125.067283909999929, 49.277187820000059 ], [ -125.067657403999988, 49.277141701000119 ], [ -125.068126607999929, 49.27718730900007 ], [ -125.06847657899999, 49.277342498000081 ], [ -125.068837188, 49.277399512000073 ], [ -125.07027829099998, 49.278309508000042 ], [ -125.071019590999953, 49.278286704000053 ], [ -125.071330021, 49.278182804000025 ], [ -125.071622697999928, 49.277943495000045 ], [ -125.072355691999974, 49.278047499000124 ], [ -125.072897996999984, 49.277848096000028 ], [ -125.073186205999932, 49.277843786000027 ], [ -125.074157407999962, 49.278050287000028 ], [ -125.074661786999982, 49.278239707000083 ], [ -125.076544091999935, 49.278251107000067 ], [ -125.077776821, 49.278759604000165 ], [ -125.078823180999976, 49.278803697000058 ], [ -125.079465219999989, 49.278675597000088 ], [ -125.080090182999967, 49.278835092000136 ], [ -125.081147819999956, 49.278825096000077 ], [ -125.08174551499998, 49.278966098000097 ], [ -125.082654002999945, 49.278986012000132 ], [ -125.08331300799999, 49.27931640900011 ], [ -125.084203806999966, 49.279551396000102 ], [ -125.084575602999962, 49.279554305000026 ], [ -125.085103681999939, 49.279364894000061 ], [ -125.085156020999989, 49.278977504000075 ], [ -125.085397106999906, 49.278810906000054 ], [ -125.086417984000022, 49.278927602000095 ], [ -125.086672591999928, 49.279094304000118 ], [ -125.086989586999977, 49.27910570400006 ], [ -125.087255518999896, 49.279209596000022 ], [ -125.087760998999983, 49.279145501000059 ], [ -125.088217205999953, 49.279191089000093 ], [ -125.088838008999943, 49.279540097000037 ], [ -125.089427004999919, 49.280159610000084 ], [ -125.089620399999916, 49.280524209000113 ], [ -125.089932382999962, 49.280735005000103 ], [ -125.09116028599999, 49.280803294000094 ], [ -125.09190880499996, 49.280663699000044 ], [ -125.092937905999946, 49.281256190000086 ], [ -125.095027707999975, 49.281865808000106 ], [ -125.096484105999963, 49.282496710000089 ], [ -125.097344106999984, 49.28267049699999 ], [ -125.098491184999929, 49.283143306000099 ], [ -125.099154216999978, 49.283186005000083 ], [ -125.100578677, 49.283052100000056 ], [ -125.101336794999924, 49.283100601000079 ], [ -125.101563655999968, 49.283038915000098 ], [ -125.101553469999885, 49.283564854000062 ], [ -125.101518827999911, 49.285353524000072 ], [ -125.096026132999953, 49.2853076970001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4243667", "BldgCostT": "2926667", "sL_LossRatio": "0.990052870361464", "sL_AssetLoss": "1405.5512", "sL_BldgLoss": "1391.57", "sL_StrLoss": "1303.98", "sL_NStrLoss": "87.59", "sL_ContLoss": "13.9812", "geom_point": "0101000020E610000031B5C61C5B3F5FC0C754B07C4CA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.984710158999988, 49.32546392200004 ], [ -124.984789000999939, 49.32186464800008 ], [ -124.990285911999976, 49.321916128000026 ], [ -124.990270612999936, 49.322618397000028 ], [ -124.99053079, 49.322613914000073 ], [ -124.990541664999924, 49.322883605000101 ], [ -124.990703203999956, 49.322880822000023 ], [ -124.990718615999953, 49.322173066000062 ], [ -124.990645584, 49.322172384000055 ], [ -124.990649442999953, 49.321995221000087 ], [ -124.990366283999933, 49.321992577000088 ], [ -124.99037003, 49.321820602000081 ], [ -124.990013080999987, 49.32181726900005 ], [ -124.990072499999954, 49.31909029600007 ], [ -124.990091505999928, 49.318217971000095 ], [ -124.993191208000013, 49.318246886000075 ], [ -124.993070693, 49.318539188000102 ], [ -124.992737390999977, 49.318796989000106 ], [ -124.992684794999903, 49.319192889000085 ], [ -124.992970705999966, 49.319440709000098 ], [ -124.992750787999952, 49.319785397000082 ], [ -124.992937796999982, 49.319988999 ], [ -124.99378048399997, 49.320451903000112 ], [ -124.994226109999914, 49.320884804000087 ], [ -124.994322015999927, 49.321206699000086 ], [ -124.994137000999928, 49.321749288000092 ], [ -124.994206203999966, 49.321933493000074 ], [ -124.994247201999968, 49.322089695000045 ], [ -124.994457602999944, 49.322212206000081 ], [ -124.994474799999949, 49.322616698000076 ], [ -124.994660089999911, 49.32310800100008 ], [ -124.994320921999972, 49.323249 ], [ -124.993448110999935, 49.323929817000071 ], [ -124.993400701999931, 49.323966798000107 ], [ -124.992176893999968, 49.325439740000078 ], [ -124.990647788999951, 49.32542547500006 ], [ -124.990656168999948, 49.32504065300003 ], [ -124.990217675999958, 49.325048207000087 ], [ -124.990207495999968, 49.3255154060001 ], [ -124.987940301999984, 49.325494207000091 ], [ -124.984710158999988, 49.32546392200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.866090406688395", "sL_AssetLoss": "70.57", "sL_BldgLoss": "61.12", "sL_StrLoss": "9.62", "sL_NStrLoss": "51.5", "sL_ContLoss": "9.45", "geom_point": "0101000020E6100000C40C6C19D93A5FC027829B3962A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.920858011999954, 49.31461752000012 ], [ -124.920899978999927, 49.315696328000044 ], [ -124.920074897999896, 49.315710043000074 ], [ -124.92009587199999, 49.316249447000132 ], [ -124.918033141999928, 49.316283711000061 ], [ -124.91800171300001, 49.315474604000052 ], [ -124.918414251999963, 49.315467755000093 ], [ -124.91840377299998, 49.315198052000042 ], [ -124.918816310999944, 49.315191202000079 ], [ -124.918805829999911, 49.31492149900005 ], [ -124.919630899999959, 49.31490779300006 ], [ -124.919620414999955, 49.314638090000066 ], [ -124.920858011999954, 49.31461752000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "0.959114006818584", "sL_AssetLoss": "2743.678", "sL_BldgLoss": "2631.5", "sL_StrLoss": "2278.4", "sL_NStrLoss": "353.1", "sL_ContLoss": "112.178", "geom_point": "0101000020E6100000EED30A36A2395FC0AF70BB65C1A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.896041821999972, 49.311927387000033 ], [ -124.896102022999941, 49.309399093000138 ], [ -124.896263414999964, 49.309400741000097 ], [ -124.896267969999883, 49.309209412000044 ], [ -124.896649581999952, 49.309294602000065 ], [ -124.897504911999974, 49.309686307000035 ], [ -124.898724204999965, 49.309566690000054 ], [ -124.900157609999951, 49.309615089000012 ], [ -124.900832195999925, 49.308947112000055 ], [ -124.900877496999968, 49.307938792000058 ], [ -124.900711340999962, 49.307715341000119 ], [ -124.904646832999987, 49.307755301000086 ], [ -124.904561794999964, 49.311354590000072 ], [ -124.901714471999966, 49.311325693000128 ], [ -124.901703008999931, 49.311809560000043 ], [ -124.901605123, 49.31180856400006 ], [ -124.9015655, 49.313480858000041 ], [ -124.898595523000012, 49.313450635000066 ], [ -124.898223808999916, 49.312993299000055 ], [ -124.897587511, 49.31257170300011 ], [ -124.896764182999931, 49.312279793000116 ], [ -124.896313899999967, 49.312017692000104 ], [ -124.896041821999972, 49.311927387000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998587905977032", "sL_AssetLoss": "80.023", "sL_BldgLoss": "79.91", "sL_StrLoss": "78.1", "sL_NStrLoss": "1.81", "sL_ContLoss": "0.113", "geom_point": "0101000020E6100000FAEA2E7951445FC0EFC3A46C4FB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.067263158999978, 49.44918806000009 ], [ -125.067251815999924, 49.448918388000088 ], [ -125.066843674000012, 49.448925686000088 ], [ -125.066838193, 49.448925784000032 ], [ -125.066826851999934, 49.448656112 ], [ -125.066413234, 49.448663506000109 ], [ -125.066311183999971, 49.446236460000058 ], [ -125.067965575999935, 49.446206877000101 ], [ -125.067999618, 49.447015893000085 ], [ -125.068173219999963, 49.447012787000112 ], [ -125.068413222999979, 49.447008493000041 ], [ -125.068458624999977, 49.448087179000019 ], [ -125.068872236999979, 49.448079777000018 ], [ -125.068906295999952, 49.448888792000076 ], [ -125.06849267599992, 49.448896192000085 ], [ -125.06850402799995, 49.449165864000129 ], [ -125.067263158999978, 49.44918806000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.995499463871565", "sL_AssetLoss": "543.713", "sL_BldgLoss": "541.266", "sL_StrLoss": "518.926", "sL_NStrLoss": "22.34", "sL_ContLoss": "2.447", "geom_point": "0101000020E6100000D37A6C89E4465FC06369B7C883BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.10557640899998, 49.470616980000088 ], [ -125.106260790999897, 49.47062262 ], [ -125.107695800999977, 49.471000795000087 ], [ -125.108153502, 49.471369698000039 ], [ -125.10874069299993, 49.471520612000127 ], [ -125.109021001999963, 49.471956407 ], [ -125.109575889999988, 49.472323906000071 ], [ -125.109612597999927, 49.472584500000067 ], [ -125.109853001999966, 49.472715492000106 ], [ -125.110475208999944, 49.473360702000093 ], [ -125.111033885999959, 49.473637561000047 ], [ -125.111021888999943, 49.474260875000034 ], [ -125.108970088999939, 49.474244043000105 ], [ -125.105506723999966, 49.474215543000085 ], [ -125.105531182, 49.472952599000088 ], [ -125.10557640899998, 49.470616980000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6401750", "BldgCostT": "4415000", "sL_LossRatio": "0.978216331547956", "sL_AssetLoss": "4900.552", "sL_BldgLoss": "4793.8", "sL_StrLoss": "4275.6", "sL_NStrLoss": "518.2", "sL_ContLoss": "106.752", "geom_point": "0101000020E61000001B89A789843B5FC07806D3510AA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.937454621999933, 49.327294451000057 ], [ -124.937444035999974, 49.32702475300011 ], [ -124.93703140299999, 49.327031672000039 ], [ -124.937020819999958, 49.326761973000089 ], [ -124.936608189999959, 49.326768890000025 ], [ -124.936597606999953, 49.326499191000075 ], [ -124.936184979999922, 49.326506106000082 ], [ -124.936174399999942, 49.326236407000103 ], [ -124.935761774999932, 49.326243322000067 ], [ -124.93575119799999, 49.325973623000024 ], [ -124.935338574999918, 49.325980535000042 ], [ -124.935328, 49.325710837000074 ], [ -124.93491538, 49.325717747000091 ], [ -124.934904806999924, 49.325448048000069 ], [ -124.93449218799995, 49.325454958000101 ], [ -124.934481617999921, 49.325185258000054 ], [ -124.934069001999958, 49.325192166000065 ], [ -124.934058433999922, 49.324922468000103 ], [ -124.933645819, 49.32492937300011 ], [ -124.933635251999988, 49.324659674000053 ], [ -124.932810027999963, 49.324673483000012 ], [ -124.932799467, 49.324403783000086 ], [ -124.93238685599999, 49.324410684000036 ], [ -124.932376298999941, 49.324140985000057 ], [ -124.931963688999957, 49.324147886000063 ], [ -124.931953133999954, 49.323878186000087 ], [ -124.93154052899996, 49.323885085 ], [ -124.931529973999943, 49.323615385000032 ], [ -124.931117369999939, 49.323622282000059 ], [ -124.931096267999919, 49.323082882000094 ], [ -124.930271067999939, 49.323096672000048 ], [ -124.930260521999941, 49.322826973000126 ], [ -124.92943532399994, 49.322840757000087 ], [ -124.929424782999916, 49.322571057000083 ], [ -124.929012186999927, 49.322577946000081 ], [ -124.929001648999957, 49.322308246000084 ], [ -124.928589053999971, 49.32231513400005 ], [ -124.928546908999948, 49.321236333000066 ], [ -124.926896567000014, 49.321263870000131 ], [ -124.926886039999914, 49.320994169000116 ], [ -124.926473455999982, 49.321001050000106 ], [ -124.926462930999975, 49.320731349000042 ], [ -124.925225185999977, 49.320751980000104 ], [ -124.925193634999943, 49.319942878000063 ], [ -124.92478105899994, 49.319949752000092 ], [ -124.924770543999927, 49.31968005100002 ], [ -124.923945395999908, 49.319693796000081 ], [ -124.923934886, 49.319424095000045 ], [ -124.923522315999932, 49.319430965000066 ], [ -124.923469777999983, 49.318082458000077 ], [ -124.922232096999934, 49.318103057 ], [ -124.922211095999927, 49.3175636550001 ], [ -124.921798539999898, 49.317570518000089 ], [ -124.921777545999987, 49.317031114000066 ], [ -124.920952440999926, 49.317044837000076 ], [ -124.920920962999944, 49.316235731000113 ], [ -124.922983687999988, 49.316201415000108 ], [ -124.922973183999915, 49.315931714000136 ], [ -124.923385726999982, 49.315924847000076 ], [ -124.923375220999958, 49.31565514600004 ], [ -124.924612840999941, 49.315634534000054 ], [ -124.92459181599996, 49.31509513200006 ], [ -124.925829420999932, 49.315074509000098 ], [ -124.925839938999971, 49.315344210000028 ], [ -124.926252477, 49.315337332000063 ], [ -124.926284040999974, 49.316146435000043 ], [ -124.926696584999917, 49.316139556000138 ], [ -124.926707107999931, 49.316409256000121 ], [ -124.927119652999934, 49.316402376000092 ], [ -124.927130180999939, 49.316672076000046 ], [ -124.928367822999917, 49.31665142500006 ], [ -124.928388888999919, 49.31719082500009 ], [ -124.928801440999962, 49.317183939000103 ], [ -124.928822511999954, 49.317723340000036 ], [ -124.929235067999969, 49.317716451000081 ], [ -124.929245605999967, 49.317986152000096 ], [ -124.930483279999976, 49.317965477000051 ], [ -124.930493825999932, 49.318235177000112 ], [ -124.931318944999987, 49.318221388000033 ], [ -124.931329494999929, 49.318491087 ], [ -124.931742055999962, 49.31848418900006 ], [ -124.93176316, 49.319023589000054 ], [ -124.932175726999958, 49.319016690000097 ], [ -124.932186282999936, 49.319286390000109 ], [ -124.93342398499999, 49.319265684000108 ], [ -124.93344511, 49.319805083000055 ], [ -124.934682825999928, 49.319784363000103 ], [ -124.934714533999966, 49.320593462000012 ], [ -124.934301954999967, 49.320600370000122 ], [ -124.934323088999946, 49.321139769000055 ], [ -124.933910506999936, 49.321146676000041 ], [ -124.933931635999912, 49.321686075000052 ], [ -124.933106460999937, 49.321699885000015 ], [ -124.933138144999972, 49.322508983 ], [ -124.933963333999898, 49.322495173000057 ], [ -124.93398446499998, 49.323034572000083 ], [ -124.934809662999953, 49.323020755000073 ], [ -124.93483080599999, 49.323560153000116 ], [ -124.93565601100002, 49.323546331000088 ], [ -124.935666586999943, 49.323816031000113 ], [ -124.936079191999937, 49.323809117000025 ], [ -124.936089770999928, 49.324078816000068 ], [ -124.936502377999943, 49.324071901000089 ], [ -124.93652353799996, 49.324611299000011 ], [ -124.93776137299993, 49.324590544000053 ], [ -124.937771960999939, 49.324860242000064 ], [ -124.93859718799996, 49.324846399000123 ], [ -124.938618371999937, 49.325385797000116 ], [ -124.939443605999941, 49.325371946000075 ], [ -124.939517788999979, 49.327259835000042 ], [ -124.937454621999933, 49.327294451000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12970250", "BldgCostT": "8945000", "sL_LossRatio": "0.977813774865396", "sL_AssetLoss": "9198.275", "sL_BldgLoss": "8994.2", "sL_StrLoss": "7930.4", "sL_NStrLoss": "1063.8", "sL_ContLoss": "204.075", "geom_point": "0101000020E6100000FECA8CAF24385FC03F7483991DA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.874173660999958, 49.292750797000039 ], [ -124.874176908999971, 49.292616925000075 ], [ -124.87379529599994, 49.292612947000102 ], [ -124.873797176999972, 49.292535467000029 ], [ -124.87024392499994, 49.292498367000135 ], [ -124.870198199999933, 49.292373606000126 ], [ -124.869675989, 49.290213094000144 ], [ -124.869256279999931, 49.286739394000058 ], [ -124.868700006999987, 49.286235299000076 ], [ -124.868684727999934, 49.286208337000033 ], [ -124.86980375899999, 49.286220051000079 ], [ -124.869806516999972, 49.286106871000058 ], [ -124.871112973999971, 49.286120533000052 ], [ -124.871116270999977, 49.285985004000047 ], [ -124.871684229999914, 49.285990938000097 ], [ -124.871888602999945, 49.285993073000043 ], [ -124.871878834999947, 49.285735153000097 ], [ -124.873115742999929, 49.28571510200004 ], [ -124.87312676599997, 49.28600599700011 ], [ -124.876222781999942, 49.286038251000093 ], [ -124.876224070999982, 49.285985031000081 ], [ -124.87909846, 49.28601489700003 ], [ -124.879102764999914, 49.285836703 ], [ -124.884595285, 49.285893560000062 ], [ -124.884543752999932, 49.288036556000073 ], [ -124.885027897999919, 49.288041554000039 ], [ -124.885017141, 49.288489090000027 ], [ -124.885016837999956, 49.288501631000024 ], [ -124.885881422999915, 49.288510551000059 ], [ -124.887457334, 49.288526794000042 ], [ -124.887428949999929, 49.289710152000048 ], [ -124.887408997999941, 49.290542002000031 ], [ -124.887362389999964, 49.290546288000066 ], [ -124.887171713999948, 49.290613291000057 ], [ -124.886988010999929, 49.290822595000094 ], [ -124.886360203999942, 49.290967902000048 ], [ -124.88576951, 49.290986385000053 ], [ -124.885141891000018, 49.290762798000095 ], [ -124.884881100999948, 49.290740002000064 ], [ -124.883456107999976, 49.290898082000083 ], [ -124.882670011999949, 49.291225705000024 ], [ -124.882122306999918, 49.29235939400008 ], [ -124.882101284999919, 49.292881995000066 ], [ -124.881561493999939, 49.293492994000133 ], [ -124.879491088999956, 49.294029989000066 ], [ -124.878204786999959, 49.294230791000118 ], [ -124.877702211999946, 49.294374602000111 ], [ -124.87668671599998, 49.294804694000035 ], [ -124.876246789999925, 49.295207804000086 ], [ -124.87557351199996, 49.295569505000095 ], [ -124.875207195999948, 49.295674892000129 ], [ -124.874247778999973, 49.295770300000072 ], [ -124.873131591999964, 49.295717606000025 ], [ -124.872381599999954, 49.295531111000052 ], [ -124.871847904999981, 49.295270399000074 ], [ -124.871585300999968, 49.294870192000083 ], [ -124.870941877999911, 49.294232421000096 ], [ -124.871718890999915, 49.294240538000018 ], [ -124.871733902999964, 49.293623440000012 ], [ -124.872503017999946, 49.293631469000061 ], [ -124.872512192999935, 49.293254058000088 ], [ -124.873430444999926, 49.293263638000091 ], [ -124.873443085999924, 49.292743181000027 ], [ -124.874173660999958, 49.292750797000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3083666", "BldgCostT": "2126666", "sL_LossRatio": "0.993845506137526", "sL_AssetLoss": "798.5547", "sL_BldgLoss": "793.64", "sL_StrLoss": "747.96", "sL_NStrLoss": "45.68", "sL_ContLoss": "4.9147", "geom_point": "0101000020E6100000FBAD637D7F405FC0E3F92DB620AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.012023816999886, 49.331912409000068 ], [ -125.012050168, 49.33067640800008 ], [ -125.006752691999935, 49.330627877000069 ], [ -125.00677719399998, 49.329484664000098 ], [ -125.004249366999929, 49.329461414000058 ], [ -125.004274109000022, 49.328309878000013 ], [ -124.999823867999936, 49.328268804000089 ], [ -124.999895733999907, 49.324938677000077 ], [ -124.999908778999952, 49.324942393000036 ], [ -125.001854389999963, 49.326087503000046 ], [ -125.002329907, 49.326645786 ], [ -125.002526496999963, 49.326732702000058 ], [ -125.003649306999975, 49.326910691000101 ], [ -125.00508419499999, 49.327353599000112 ], [ -125.005693307999977, 49.327424808000067 ], [ -125.007700585999942, 49.328037203000086 ], [ -125.008038998999922, 49.328256602000124 ], [ -125.00877850099999, 49.328485812000039 ], [ -125.009602186, 49.32913810400008 ], [ -125.010451589999931, 49.329374605000048 ], [ -125.011045989999985, 49.329742004000074 ], [ -125.011504892999966, 49.330183489000078 ], [ -125.011895994999961, 49.330348690000051 ], [ -125.012536882999953, 49.330562306000068 ], [ -125.01267609199999, 49.33055949100001 ], [ -125.012695707, 49.330361510000031 ], [ -125.012857798999917, 49.330294589000047 ], [ -125.013175278999981, 49.330342995000073 ], [ -125.013457479999914, 49.330491093000049 ], [ -125.013591909999917, 49.330426984000091 ], [ -125.014053922999921, 49.330256104000057 ], [ -125.015981107999949, 49.330277484000177 ], [ -125.017344591999944, 49.330612203000094 ], [ -125.017549008999964, 49.330686186000044 ], [ -125.01752195, 49.331962504000018 ], [ -125.012023816999886, 49.331912409000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.995150950528241", "sL_AssetLoss": "261.907", "sL_BldgLoss": "260.637", "sL_StrLoss": "244.817", "sL_NStrLoss": "15.82", "sL_ContLoss": "1.27", "geom_point": "0101000020E6100000EB2F817CC5455FC057026BCDBDAC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.08722657499996, 49.350590297000089 ], [ -125.087258650999956, 49.348962503000052 ], [ -125.087592493, 49.34903010900004 ], [ -125.088155481999976, 49.348957393000049 ], [ -125.08874821299996, 49.348666902000041 ], [ -125.088962105999926, 49.348501691000052 ], [ -125.08958729299998, 49.348319405000034 ], [ -125.09210761099996, 49.348344999000105 ], [ -125.092774052, 49.348234357000123 ], [ -125.092727001999961, 49.350636567000087 ], [ -125.08722657499996, 49.350590297000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17832583", "BldgCostT": "12298333", "sL_LossRatio": "0.974404653039456", "sL_AssetLoss": "14325.26", "sL_BldgLoss": "13958.6", "sL_StrLoss": "11729.3", "sL_NStrLoss": "2229.3", "sL_ContLoss": "366.66", "geom_point": "0101000020E6100000D211E94CD4385FC0FF10B09018A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.902442313999984, 49.289985202000018 ], [ -124.90203249299995, 49.289721691000061 ], [ -124.901825006999971, 49.289688988000051 ], [ -124.901500779999964, 49.289838500000037 ], [ -124.901225674999935, 49.289834196000065 ], [ -124.900582175999972, 49.289537997000103 ], [ -124.898944805999946, 49.289160604000102 ], [ -124.89798121299999, 49.289157691000064 ], [ -124.89731508499996, 49.289358598000106 ], [ -124.896808895, 49.289411209000065 ], [ -124.8961392099999, 49.289367447000124 ], [ -124.89613958299999, 49.289351765000063 ], [ -124.895854675999914, 49.28934885300005 ], [ -124.895460136999958, 49.289323069000034 ], [ -124.895495669999946, 49.28783082400016 ], [ -124.895529755999988, 49.28639927000004 ], [ -124.893479192999934, 49.286378283000012 ], [ -124.893446580999949, 49.287745433000076 ], [ -124.892947970999955, 49.287740324000062 ], [ -124.892937818999926, 49.288165695000096 ], [ -124.892930502999889, 49.288472243000108 ], [ -124.89251855699996, 49.288468021000078 ], [ -124.892328171999949, 49.288466068000041 ], [ -124.892327579999986, 49.28849085800006 ], [ -124.891681574999964, 49.288484233000105 ], [ -124.891681353999985, 49.288493475000045 ], [ -124.886188518999916, 49.288436978000028 ], [ -124.886201644999986, 49.287890375000138 ], [ -124.886134049999953, 49.287889678000077 ], [ -124.886150798999921, 49.287192169000114 ], [ -124.885665874999958, 49.287187168000045 ], [ -124.88570533299999, 49.285544566000148 ], [ -124.883182279999986, 49.285518509000049 ], [ -124.883187592999946, 49.285297829000108 ], [ -124.88229396, 49.285288586000014 ], [ -124.882297363999925, 49.285147300000105 ], [ -124.882032114999959, 49.285144555000088 ], [ -124.88203108099998, 49.285187425000103 ], [ -124.881350742999928, 49.285180381000075 ], [ -124.881348757999945, 49.285262642000077 ], [ -124.875856319, 49.285205620000049 ], [ -124.875856807999966, 49.285185465000069 ], [ -124.872495793999974, 49.285150433000062 ], [ -124.872551740999981, 49.282848497000089 ], [ -124.875053888999943, 49.282863429000045 ], [ -124.875217726999949, 49.282864408000137 ], [ -124.877413538999974, 49.282877460000059 ], [ -124.877705574999965, 49.282879190000067 ], [ -124.877491506999903, 49.280685948000034 ], [ -124.878993765999965, 49.280701550000074 ], [ -124.878997879999957, 49.280531286000077 ], [ -124.881170439999963, 49.280553814000093 ], [ -124.881156478999969, 49.28018690200004 ], [ -124.881568733999941, 49.280180188000038 ], [ -124.881558468999955, 49.279910478000048 ], [ -124.881970720999959, 49.279903762000131 ], [ -124.881953165000013, 49.279442560000064 ], [ -124.881549783999944, 49.279438382000137 ], [ -124.881561871999935, 49.278936943000069 ], [ -124.880037455999954, 49.278921145000034 ], [ -124.88005147599992, 49.278340351000026 ], [ -124.878727441999928, 49.278326613000061 ], [ -124.878736994999954, 49.277931312000042 ], [ -124.886456700999972, 49.278111744000043 ], [ -124.887244637999942, 49.278098119000042 ], [ -124.887262923999941, 49.274306543000066 ], [ -124.887438878999944, 49.274308356000049 ], [ -124.88741037799997, 49.275496972000099 ], [ -124.88877276, 49.275474703000093 ], [ -124.888783914999976, 49.275008915000058 ], [ -124.888822909999945, 49.275009317000041 ], [ -124.888861005999942, 49.273418513000131 ], [ -124.891253594999938, 49.273443106000073 ], [ -124.894352065999925, 49.273474875000083 ], [ -124.894315899999967, 49.274992624000092 ], [ -124.897111053999978, 49.275021208000105 ], [ -124.897105282999973, 49.275264007000068 ], [ -124.898454773999958, 49.275277782000124 ], [ -124.898718036999966, 49.277905641000125 ], [ -124.898352009999883, 49.2778517960001 ], [ -124.89625160199995, 49.277821409000076 ], [ -124.895200678999942, 49.277723287000065 ], [ -124.894456304999963, 49.277557294000118 ], [ -124.89421631099998, 49.277543986000062 ], [ -124.893995897999957, 49.277571492000085 ], [ -124.893505495999975, 49.277806806000029 ], [ -124.89329910399999, 49.277881199000049 ], [ -124.89267617899992, 49.27791889800006 ], [ -124.892354180000012, 49.277886811000123 ], [ -124.891802598999959, 49.277698414000085 ], [ -124.891282898, 49.277437402000061 ], [ -124.890889594999976, 49.277284904000091 ], [ -124.890476496999909, 49.27716359300004 ], [ -124.89044043399997, 49.278117783000027 ], [ -124.890439087999965, 49.278153300000042 ], [ -124.890356193999963, 49.278460304000113 ], [ -124.890454996999978, 49.278635095000027 ], [ -124.89088918799996, 49.279143614000084 ], [ -124.89124917499997, 49.279421789000025 ], [ -124.891504396999977, 49.279692394000072 ], [ -124.891527793999927, 49.279717209000111 ], [ -124.891908293999975, 49.280285415000108 ], [ -124.892349907, 49.281116211000032 ], [ -124.892367279999945, 49.281479990000044 ], [ -124.892712610999951, 49.281664331000101 ], [ -124.893381680999966, 49.282021505000017 ], [ -124.893657917, 49.282242997000047 ], [ -124.893897898999938, 49.282545200000129 ], [ -124.893976947999988, 49.282693467000072 ], [ -124.894703793, 49.284056599000067 ], [ -124.895192276, 49.284822093000095 ], [ -124.89632269699996, 49.286726597000055 ], [ -124.896667491999921, 49.28706940000005 ], [ -124.897388893999974, 49.287633892000052 ], [ -124.898027192999947, 49.287941010000104 ], [ -124.89887852299999, 49.288244009000024 ], [ -124.899591501999979, 49.288467297000054 ], [ -124.90098111399999, 49.288774001000078 ], [ -124.901210920999958, 49.288524294000055 ], [ -124.901587912999958, 49.288383189000072 ], [ -124.901993464999947, 49.288297409000037 ], [ -124.902500602999936, 49.288832387000056 ], [ -124.903684612999911, 49.289597390000097 ], [ -124.904171109999965, 49.289911708000027 ], [ -124.904695905999944, 49.289794593000089 ], [ -124.904999621999977, 49.289726595000047 ], [ -124.905430844999913, 49.289803419000044 ], [ -124.90567228499999, 49.290031764000084 ], [ -124.904518214999968, 49.289986606000092 ], [ -124.904342752999966, 49.290038339000027 ], [ -124.903551909, 49.290271506000103 ], [ -124.902442313999984, 49.289985202000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7351500", "BldgCostT": "5070000", "sL_LossRatio": "0.970291624289753", "sL_AssetLoss": "5905.338", "sL_BldgLoss": "5729.9", "sL_StrLoss": "4829.6", "sL_NStrLoss": "900.3", "sL_ContLoss": "175.438", "geom_point": "0101000020E61000002F805B3DC8385FC0DF70BC8EFAA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.887284125999926, 49.26990909400007 ], [ -124.887308943999955, 49.264760740000021 ], [ -124.887309178999928, 49.264711662000124 ], [ -124.884417652999943, 49.264654459000063 ], [ -124.884467251999951, 49.262590914000043 ], [ -124.884331815999943, 49.262593122000077 ], [ -124.884302824999963, 49.263799127000084 ], [ -124.882946728999968, 49.263785105000061 ], [ -124.882926514999951, 49.264624930000082 ], [ -124.878588514999976, 49.264538905000101 ], [ -124.877437769999986, 49.264516149000016 ], [ -124.877455667999968, 49.263776145000065 ], [ -124.877447484999934, 49.263776060000076 ], [ -124.877429587999984, 49.264515988000127 ], [ -124.875953805999984, 49.264486787000074 ], [ -124.873564802999979, 49.264709811000039 ], [ -124.872424092999964, 49.264369408000107 ], [ -124.870206704999987, 49.264242604000145 ], [ -124.869922995999929, 49.264291214000096 ], [ -124.869933746999934, 49.263849649000122 ], [ -124.870086115999968, 49.263835107000034 ], [ -124.871654315999962, 49.263534691000075 ], [ -124.871998002999959, 49.263478850000148 ], [ -124.872217865, 49.263443108000075 ], [ -124.872259811999982, 49.263436315000064 ], [ -124.872591516999961, 49.263382402000055 ], [ -124.872922312999933, 49.263373339000083 ], [ -124.873852597999957, 49.263347888000077 ], [ -124.874034109999954, 49.263363141000077 ], [ -124.874381294999949, 49.263401580000028 ], [ -124.874642296, 49.263397366000063 ], [ -124.87486241799995, 49.263402776000099 ], [ -124.875163295999982, 49.26336191700009 ], [ -124.875368338999976, 49.263331589000117 ], [ -124.875463444999966, 49.263303056000112 ], [ -124.875672675999937, 49.263181811000059 ], [ -124.875719032999925, 49.263154976000095 ], [ -124.87590828399999, 49.263070934000083 ], [ -124.876207430999955, 49.262985109000056 ], [ -124.87631628099993, 49.262956353000057 ], [ -124.876521000999944, 49.262917051000016 ], [ -124.876754152999979, 49.262904258000063 ], [ -124.87701379399999, 49.262864057000073 ], [ -124.877329089999989, 49.262840958000048 ], [ -124.877576016999967, 49.262827929000082 ], [ -124.87782293199993, 49.262814933000101 ], [ -124.878058350999979, 49.262814587000094 ], [ -124.878141892999977, 49.262811846000091 ], [ -124.879428093999962, 49.262734777000084 ], [ -124.879574396999956, 49.262726015000119 ], [ -124.880963344999913, 49.262620548000072 ], [ -124.883882253999943, 49.262398848000046 ], [ -124.885226802999952, 49.262296708000086 ], [ -124.885404733999977, 49.262296693000096 ], [ -124.88681824899993, 49.262296599000081 ], [ -124.88696061, 49.262296584000048 ], [ -124.8896662699999, 49.262859055000092 ], [ -124.889742702999953, 49.262874957000051 ], [ -124.890420222999936, 49.263015790000097 ], [ -124.891447868999947, 49.263229390000042 ], [ -124.891635188999928, 49.263322205000108 ], [ -124.891733508999963, 49.263457287000037 ], [ -124.891763590999972, 49.264669193000024 ], [ -124.895415825999976, 49.26457543300009 ], [ -124.895470761999931, 49.264574019000101 ], [ -124.896857808000021, 49.264538358000046 ], [ -124.897377810999942, 49.264525022000129 ], [ -124.897635753999936, 49.267100550000045 ], [ -124.896122681999984, 49.267085092000038 ], [ -124.896149647999962, 49.265951411000124 ], [ -124.896036909, 49.265950258000025 ], [ -124.896035315999981, 49.266017228000074 ], [ -124.894224522999963, 49.265998697000107 ], [ -124.894142939999938, 49.269422465000098 ], [ -124.89264820399994, 49.269407147000116 ], [ -124.892634914000013, 49.269964101000042 ], [ -124.891437644999982, 49.269951816000038 ], [ -124.887284125999926, 49.26990909400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.998714777191614", "sL_AssetLoss": "379.7007", "sL_BldgLoss": "379.2127", "sL_StrLoss": "375.9247", "sL_NStrLoss": "3.288", "sL_ContLoss": "0.488", "geom_point": "0101000020E6100000AEDAF3041B515FC0B506E73AAAAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.262787521999883, 49.363810237000067 ], [ -125.263951592999916, 49.363611113000083 ], [ -125.26473940399994, 49.363631097000095 ], [ -125.26539239399996, 49.363457311000083 ], [ -125.266425097, 49.36347301000005 ], [ -125.267197800999909, 49.363475794000074 ], [ -125.268664690999955, 49.363330590000025 ], [ -125.269096209999972, 49.363141098000128 ], [ -125.269438104999949, 49.363081286000103 ], [ -125.27031929499999, 49.363089908000106 ], [ -125.271465806999956, 49.363472998000084 ], [ -125.272077604999964, 49.363443953000079 ], [ -125.27204821299992, 49.365313721000057 ], [ -125.26826691299999, 49.365288220000146 ], [ -125.268256101999953, 49.365972315000114 ], [ -125.262753694999958, 49.365934970000055 ], [ -125.262787521999883, 49.363810237000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994135645079041", "sL_AssetLoss": "313.76", "sL_BldgLoss": "311.92", "sL_StrLoss": "305", "sL_NStrLoss": "6.92", "sL_ContLoss": "1.84", "geom_point": "0101000020E6100000E3DA58A2563E5FC03B8908FF22A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.974264496999965, 49.25976771200007 ], [ -124.97372490599993, 49.259695085000018 ], [ -124.973176891, 49.259740713000014 ], [ -124.972660619999928, 49.259903100000066 ], [ -124.972577120000011, 49.259858901000065 ], [ -124.972558204999928, 49.259418802000027 ], [ -124.972160294999981, 49.25908410500012 ], [ -124.972332482999917, 49.258891902000094 ], [ -124.972438313999945, 49.25846740000005 ], [ -124.972122798, 49.258121389000095 ], [ -124.972292985999957, 49.257920599000073 ], [ -124.972606593999927, 49.257818888000017 ], [ -124.972659184999955, 49.257806596000094 ], [ -124.973526185999987, 49.257809495000046 ], [ -124.974257810999973, 49.257914904000138 ], [ -124.975104033999941, 49.257891734000076 ], [ -124.975186747999928, 49.257889481000063 ], [ -124.975612241999954, 49.257877829000051 ], [ -124.975553031999979, 49.260560672000068 ], [ -124.974739699999958, 49.259965692000051 ], [ -124.974264496999965, 49.25976771200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "0.986802847587461", "sL_AssetLoss": "576.488", "sL_BldgLoss": "568.88", "sL_StrLoss": "505.82", "sL_NStrLoss": "63.06", "sL_ContLoss": "7.608", "geom_point": "0101000020E610000074354790293B5FC0A091001C18A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.925589238, 49.303634896000133 ], [ -124.927200924999966, 49.30365090800008 ], [ -124.927172867999943, 49.30486357700007 ], [ -124.927117643999949, 49.307250237000126 ], [ -124.921622544999977, 49.307195543000049 ], [ -124.921706251999964, 49.303596219000035 ], [ -124.925589238, 49.303634896000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.99397797822049", "sL_AssetLoss": "1083.0914", "sL_BldgLoss": "1076.569", "sL_StrLoss": "1025.5", "sL_NStrLoss": "51.069", "sL_ContLoss": "6.5224", "geom_point": "0101000020E61000001BBF7483B6405FC00C56FF94E8A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.011523016999888, 49.281638730000111 ], [ -125.011523484999941, 49.281616777000039 ], [ -125.009701150999888, 49.281600083000093 ], [ -125.009702266999966, 49.28154781600005 ], [ -125.005257286999949, 49.281506969000134 ], [ -125.005301701999926, 49.2794354030001 ], [ -125.005751518999887, 49.279726599000057 ], [ -125.00611379799993, 49.279837696000115 ], [ -125.006768794999971, 49.279726591000049 ], [ -125.007484192999982, 49.279398991000086 ], [ -125.008391909999915, 49.27938340700009 ], [ -125.010057091999911, 49.279121294000028 ], [ -125.010636379999951, 49.279119897000122 ], [ -125.011440282999914, 49.279312202 ], [ -125.012624989999964, 49.27934639700009 ], [ -125.012889693999966, 49.279431788000124 ], [ -125.013834707999976, 49.279370591000053 ], [ -125.014409906999958, 49.279648303000052 ], [ -125.015603909999982, 49.279878995000047 ], [ -125.016318800999954, 49.27990180900008 ], [ -125.017056597999954, 49.27973454800015 ], [ -125.017015191999946, 49.281688854000095 ], [ -125.011523016999888, 49.281638730000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.958932238193018", "sL_AssetLoss": "24.35", "sL_BldgLoss": "23.35", "sL_StrLoss": "2.45", "sL_NStrLoss": "20.9", "sL_ContLoss": "1", "geom_point": "0101000020E6100000C3846E82B13F5FC0B871CD158CA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.993840819999974, 49.325455237 ], [ -124.993700090999951, 49.325257189000126 ], [ -124.993705410999951, 49.325049190000094 ], [ -124.994197919, 49.325319798000102 ], [ -124.993958988999935, 49.324496610000082 ], [ -124.99375699299999, 49.324275904000046 ], [ -124.993855603, 49.324132240000061 ], [ -124.993900722999967, 49.324066505000125 ], [ -124.994563489999933, 49.323793109000086 ], [ -124.994652793999933, 49.323612213000033 ], [ -124.995434414, 49.323572304000031 ], [ -124.995656890999967, 49.323630713000064 ], [ -124.995931696999932, 49.323932710000079 ], [ -124.99615522, 49.324018099000078 ], [ -124.996780550999958, 49.324064631000056 ], [ -124.996772890999921, 49.324418544000061 ], [ -124.996572656999973, 49.324416686000092 ], [ -124.996558818999944, 49.325055848000083 ], [ -124.996154322999956, 49.325052093000117 ], [ -124.996145127999938, 49.325476658000078 ], [ -124.994674644999947, 49.325462993000031 ], [ -124.993840819999974, 49.325455237 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.995259847242083", "sL_AssetLoss": "423.8471", "sL_BldgLoss": "421.838", "sL_StrLoss": "397.7", "sL_NStrLoss": "24.138", "sL_ContLoss": "2.0091", "geom_point": "0101000020E610000003EED4B7673B5FC0C166CA98CCA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.925526890999933, 49.296727929000049 ], [ -124.925516379999948, 49.296458227000109 ], [ -124.925326145999961, 49.296461398000126 ], [ -124.925104000999937, 49.296465099000045 ], [ -124.925082420999928, 49.295911171000071 ], [ -124.925071877999969, 49.295640575000128 ], [ -124.925061970999963, 49.295386292000096 ], [ -124.924649599999938, 49.295393163 ], [ -124.92461312099999, 49.294456563000033 ], [ -124.924597076999959, 49.294044652000046 ], [ -124.925009435999954, 49.294037781000114 ], [ -124.924998929999973, 49.293768078 ], [ -124.925411286999989, 49.293761206000127 ], [ -124.925400777999982, 49.293491504000016 ], [ -124.925813131999945, 49.293484630000094 ], [ -124.925739561999947, 49.291596715000054 ], [ -124.925830215999952, 49.291595204 ], [ -124.926026810999971, 49.291995111000084 ], [ -124.926218316999922, 49.293316061000155 ], [ -124.927343496999953, 49.29472009200002 ], [ -124.927861185999959, 49.295324701 ], [ -124.928089257999943, 49.295534453000066 ], [ -124.92811941799998, 49.295562192000091 ], [ -124.928217107999899, 49.295612629000125 ], [ -124.929033115999957, 49.296033904000105 ], [ -124.92974385199993, 49.29584548800004 ], [ -124.93119731799996, 49.295262495000053 ], [ -124.931209897999906, 49.295258853000071 ], [ -124.933171611999953, 49.294688790000158 ], [ -124.933651598999944, 49.29454229200006 ], [ -124.933968037999975, 49.294427898000102 ], [ -124.934514771999901, 49.294418743000065 ], [ -124.934538646999926, 49.295028571000024 ], [ -124.934557007999956, 49.295497545000025 ], [ -124.932082790999957, 49.295538955000055 ], [ -124.932093336999912, 49.295808655 ], [ -124.931268591999938, 49.295822447000099 ], [ -124.931279131999972, 49.296092148000085 ], [ -124.930866757999951, 49.296099042000101 ], [ -124.930871068999949, 49.296209376000093 ], [ -124.93088783799999, 49.296638445000021 ], [ -124.926892819000017, 49.296705154000051 ], [ -124.925526890999933, 49.296727929000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.993894264204628", "sL_AssetLoss": "680.7042", "sL_BldgLoss": "676.548", "sL_StrLoss": "648.362", "sL_NStrLoss": "28.186", "sL_ContLoss": "4.1562", "geom_point": "0101000020E6100000993BC825ED3E5FC0E3AAB2EF0AAA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.985811519999942, 49.326683066000072 ], [ -124.986012561999928, 49.326684951000054 ], [ -124.985933807999956, 49.330284200000101 ], [ -124.980435908999979, 49.330232499000083 ], [ -124.980501077999961, 49.327270206000051 ], [ -124.980515090999958, 49.326633254000079 ], [ -124.985811519999942, 49.326683066000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802834", "BldgCostT": "1243334", "sL_LossRatio": "0.959207963644233", "sL_AssetLoss": "1848.4", "sL_BldgLoss": "1773", "sL_StrLoss": "1358.8", "sL_NStrLoss": "414.2", "sL_ContLoss": "75.4", "geom_point": "0101000020E6100000613B525C593A5FC095D4642115A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.908999513999959, 49.295692479000117 ], [ -124.914493235999984, 49.295747814000038 ], [ -124.914408983999948, 49.299347176000055 ], [ -124.908914834999976, 49.299291837000062 ], [ -124.908950660999935, 49.297769101000029 ], [ -124.90899799, 49.295757284000047 ], [ -124.908999513999959, 49.295692479000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1087500", "BldgCostT": "750000", "sL_LossRatio": "0.994107374324097", "sL_AssetLoss": "1106.298", "sL_BldgLoss": "1099.779", "sL_StrLoss": "1070.789", "sL_NStrLoss": "28.99", "sL_ContLoss": "6.519", "geom_point": "0101000020E61000002497A4D7CB465FC01F6779A294BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.10444902099999, 49.456441103000017 ], [ -125.104745410999939, 49.456255992000131 ], [ -125.10523959899993, 49.456220297000087 ], [ -125.106160412999927, 49.456419688000054 ], [ -125.106998877999942, 49.456349897000095 ], [ -125.107558785999984, 49.456564994000139 ], [ -125.107960813999952, 49.456926689000063 ], [ -125.108096706, 49.458155792000106 ], [ -125.108304606999965, 49.458494787000113 ], [ -125.108754937999919, 49.458883333000053 ], [ -125.104314706999986, 49.458846753000103 ], [ -125.104361267999977, 49.456444741000041 ], [ -125.10444902099999, 49.456441103000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.982745829132345", "sL_AssetLoss": "525.67", "sL_BldgLoss": "516.6", "sL_StrLoss": "486", "sL_NStrLoss": "30.6", "sL_ContLoss": "9.07", "geom_point": "0101000020E6100000B6A7BB1D67445FC071B64E96B9B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.068213108999913, 49.412737920000083 ], [ -125.068190437999931, 49.412198573000126 ], [ -125.067777126999928, 49.412205968000137 ], [ -125.067731798999901, 49.411127276000109 ], [ -125.069385008999973, 49.411097688000048 ], [ -125.069407689999949, 49.411637034000066 ], [ -125.069820997999983, 49.411629633000096 ], [ -125.069861723999963, 49.412597778000134 ], [ -125.069841991999937, 49.412599706000066 ], [ -125.069595781999965, 49.412713171000014 ], [ -125.068213108999913, 49.412737920000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.956813104988831", "sL_AssetLoss": "26.86", "sL_BldgLoss": "25.7", "sL_StrLoss": "2.7", "sL_NStrLoss": "23", "sL_ContLoss": "1.16", "geom_point": "0101000020E6100000FDE09587393A5FC05F2737823BA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.905378336999959, 49.291936377000091 ], [ -124.905029356999961, 49.291003243000041 ], [ -124.905031602999955, 49.29054654100004 ], [ -124.905171666999934, 49.29026731400009 ], [ -124.905313688999982, 49.290288612000026 ], [ -124.905926837999942, 49.290286064000043 ], [ -124.906255220000034, 49.290631146000074 ], [ -124.906908962999921, 49.290998958000017 ], [ -124.908052641999973, 49.291169945000043 ], [ -124.915760508999966, 49.28967281700011 ], [ -124.91642490299995, 49.289644400000064 ], [ -124.917001872999933, 49.289852910000107 ], [ -124.916900038999955, 49.289854601000037 ], [ -124.916898132999975, 49.289936239000035 ], [ -124.916524893999934, 49.289932497000116 ], [ -124.916519031999883, 49.290183449000075 ], [ -124.916016445999958, 49.290178407000056 ], [ -124.916010724, 49.290423161000113 ], [ -124.914829231999988, 49.290411298000016 ], [ -124.914824688999957, 49.290605490000118 ], [ -124.913193702999976, 49.290589093000094 ], [ -124.913193623999959, 49.290592431000036 ], [ -124.912672697999952, 49.290587189000036 ], [ -124.912671108, 49.290655044000054 ], [ -124.912020303999981, 49.29064849100007 ], [ -124.912014794, 49.290883359000141 ], [ -124.911121763, 49.290874361000121 ], [ -124.911117869999956, 49.291040181 ], [ -124.910673324999976, 49.291035699000084 ], [ -124.910669957999957, 49.291178992000034 ], [ -124.910070890000028, 49.291172950000075 ], [ -124.910067941999969, 49.291298406000053 ], [ -124.907985166999978, 49.291277373000106 ], [ -124.907998441999936, 49.291621237000101 ], [ -124.907586099999961, 49.29162804700011 ], [ -124.907596509999962, 49.291897752000111 ], [ -124.906885252999984, 49.29190949500007 ], [ -124.906771818999971, 49.291911368000122 ], [ -124.906782224999986, 49.292181072000098 ], [ -124.90539748499999, 49.29220392200012 ], [ -124.905386506999903, 49.291958207000057 ], [ -124.905378336999959, 49.291936377000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7849334", "BldgCostT": "5413334", "sL_LossRatio": "0.992555025675372", "sL_AssetLoss": "1007.2298", "sL_BldgLoss": "999.731", "sL_StrLoss": "909.701", "sL_NStrLoss": "90.03", "sL_ContLoss": "7.4988", "geom_point": "0101000020E610000032B9BD49F83B5FC012DED4F665A74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.932210682999965, 49.311633004000065 ], [ -124.932253984999946, 49.309752838000101 ], [ -124.931125354999963, 49.30974168200003 ], [ -124.931144954999951, 49.308891498000101 ], [ -124.930069465999949, 49.30888085600008 ], [ -124.930085988999963, 49.308164875000045 ], [ -124.929476885999975, 49.308158844000069 ], [ -124.929553512999959, 49.304839881000092 ], [ -124.929559985999973, 49.304559517000108 ], [ -124.935054781999924, 49.304613808000056 ], [ -124.935038337999956, 49.305329793000048 ], [ -124.935647403999937, 49.305335794000015 ], [ -124.935645602999926, 49.305414284 ], [ -124.936788200999928, 49.305425531000026 ], [ -124.93679025599999, 49.305335901000085 ], [ -124.939595276999938, 49.305363461000084 ], [ -124.939601359999926, 49.305097470000064 ], [ -124.945096231999955, 49.305151249000055 ], [ -124.94507712099994, 49.305991252000076 ], [ -124.945179280000019, 49.30599224900002 ], [ -124.945134631999935, 49.307954712000026 ], [ -124.945097389999916, 49.309591579000077 ], [ -124.94417988, 49.309582620000064 ], [ -124.944179853999955, 49.30958380300013 ], [ -124.943123647999954, 49.309573480000076 ], [ -124.943117426999919, 49.309846429000061 ], [ -124.942052202999932, 49.309836006000083 ], [ -124.94204799399995, 49.310020456000096 ], [ -124.940570722999922, 49.31000598400005 ], [ -124.940570235999957, 49.310027292000086 ], [ -124.939820108999967, 49.310019936000053 ], [ -124.939819308999958, 49.310054910000048 ], [ -124.93890412599994, 49.310045929000047 ], [ -124.938889907999936, 49.310667132000084 ], [ -124.937729953999934, 49.310655737000083 ], [ -124.937706320999951, 49.311687159000023 ], [ -124.932210682999965, 49.311633004000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4789833", "BldgCostT": "3303333", "sL_LossRatio": "0.977356700867095", "sL_AssetLoss": "3221.792", "sL_BldgLoss": "3148.84", "sL_StrLoss": "2733.74", "sL_NStrLoss": "415.1", "sL_ContLoss": "72.952", "geom_point": "0101000020E61000009D5D844AD83E5FC0B5B553ADE4AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.978443102999933, 49.339166002000098 ], [ -124.977215799999982, 49.339106209000121 ], [ -124.977034517999954, 49.339119904000036 ], [ -124.97703848099999, 49.338940423000061 ], [ -124.976896948999965, 49.338939084000074 ], [ -124.976976420999932, 49.335339889000075 ], [ -124.978361599, 49.335352985000064 ], [ -124.978390540999939, 49.334040321000067 ], [ -124.980290962, 49.334058258000056 ], [ -124.98034951799994, 49.331397263000063 ], [ -124.98584755399996, 49.331448967000028 ], [ -124.985846323999922, 49.331505207000127 ], [ -124.987246804999927, 49.331518332000059 ], [ -124.987168136999912, 49.335117556000071 ], [ -124.984458026999917, 49.335092140000029 ], [ -124.984385606999979, 49.33839619300003 ], [ -124.984318799, 49.338389808000095 ], [ -124.983998211999946, 49.337955406000034 ], [ -124.983405221999959, 49.337911300000087 ], [ -124.982886287999989, 49.338036601000034 ], [ -124.982398792999945, 49.337884197000108 ], [ -124.98181159799995, 49.338002391000018 ], [ -124.981554779999968, 49.337781699000082 ], [ -124.981031501999908, 49.337754603000057 ], [ -124.981093387999948, 49.337951107000045 ], [ -124.981290814999937, 49.338073607000069 ], [ -124.980917485999925, 49.338683199000045 ], [ -124.980437403999971, 49.339077692000089 ], [ -124.979948713999988, 49.339265707000031 ], [ -124.978793015999912, 49.339277103000029 ], [ -124.978443102999933, 49.339166002000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.995698383542378", "sL_AssetLoss": "425.189", "sL_BldgLoss": "423.36", "sL_StrLoss": "407", "sL_NStrLoss": "16.36", "sL_ContLoss": "1.829", "geom_point": "0101000020E6100000EB2AEE893F425FC06B4A70F274A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.030852595999988, 49.276534994000073 ], [ -125.03120649499999, 49.276448106000096 ], [ -125.031964703999947, 49.276525003000074 ], [ -125.032678904999926, 49.276503599000129 ], [ -125.033483217999944, 49.27630850500001 ], [ -125.034511992999967, 49.276237296 ], [ -125.034992322999983, 49.27590399900005 ], [ -125.035161393999942, 49.275667591000115 ], [ -125.035179396000032, 49.275415510000066 ], [ -125.035311697999973, 49.275314406000092 ], [ -125.03572202399999, 49.275244603000047 ], [ -125.036957584, 49.275240396000122 ], [ -125.037377199999966, 49.275070905000064 ], [ -125.037576305999963, 49.274897107000093 ], [ -125.037834494, 49.274459902000054 ], [ -125.038562711999958, 49.274132295000079 ], [ -125.038670117999914, 49.274118277000063 ], [ -125.038647363999956, 49.275216568000062 ], [ -125.038597302999932, 49.27763262400002 ], [ -125.038186748999948, 49.277628969000048 ], [ -125.03817811099999, 49.278045634000129 ], [ -125.037732854999916, 49.278041668000128 ], [ -125.0377267099999, 49.278337945000068 ], [ -125.037023409999946, 49.278331676000029 ], [ -125.037020689999949, 49.278462762000032 ], [ -125.036157982999939, 49.278455066000078 ], [ -125.036154964999952, 49.278600382000036 ], [ -125.034376393999977, 49.278584495000075 ], [ -125.030663135999973, 49.278551231000073 ], [ -125.030705010999938, 49.27654680200002 ], [ -125.030852595999988, 49.276534994000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5502749", "BldgCostT": "3794999", "sL_LossRatio": "0.977731768295477", "sL_AssetLoss": "4037.815", "sL_BldgLoss": "3947.9", "sL_StrLoss": "3471.9", "sL_NStrLoss": "476", "sL_ContLoss": "89.915", "geom_point": "0101000020E6100000B611681394395FC0F5824F7372A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.896666813999985, 49.304688704000043 ], [ -124.895595989999933, 49.304147606000086 ], [ -124.895760961999954, 49.304149292000048 ], [ -124.895788823999922, 49.302979305000093 ], [ -124.89488309799998, 49.302970046000048 ], [ -124.894865026, 49.303728305000135 ], [ -124.89444659699997, 49.303169100000041 ], [ -124.894330289999942, 49.302280397000111 ], [ -124.89409512099995, 49.301973272000048 ], [ -124.89415738299999, 49.299362417000076 ], [ -124.894863057999942, 49.299369637 ], [ -124.894882201999934, 49.298566333000046 ], [ -124.896581921999939, 49.29858370400008 ], [ -124.896607042, 49.29752797200004 ], [ -124.900455693999945, 49.297525169000068 ], [ -124.901854960999913, 49.297475317000064 ], [ -124.905626977999958, 49.297335725000089 ], [ -124.905505628999904, 49.294622517000036 ], [ -124.907785025999928, 49.294645584000122 ], [ -124.907700253999963, 49.298244947000036 ], [ -124.902573205999886, 49.298192994000019 ], [ -124.90254192499999, 49.299514872000017 ], [ -124.902055367999978, 49.29950992900006 ], [ -124.902020788999934, 49.300970382000088 ], [ -124.901446139999905, 49.300964541000027 ], [ -124.901386709999926, 49.303473091000029 ], [ -124.901273047999922, 49.303471935000061 ], [ -124.901248964999979, 49.304488291000062 ], [ -124.899100511999961, 49.304466425000101 ], [ -124.899099145999969, 49.304523957000107 ], [ -124.899498535999967, 49.304528024000099 ], [ -124.899457874999882, 49.306241169000018 ], [ -124.898632998999915, 49.305762603000055 ], [ -124.897834207999935, 49.305047591000033 ], [ -124.896666813999985, 49.304688704000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2987000", "BldgCostT": "2060000", "sL_LossRatio": "0.972189549130638", "sL_AssetLoss": "2763.062", "sL_BldgLoss": "2686.22", "sL_StrLoss": "2166.6", "sL_NStrLoss": "519.62", "sL_ContLoss": "76.842", "geom_point": "0101000020E610000043FFA95D78375FC0BF5097F7FEA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.870199009999936, 49.284952732000072 ], [ -124.870188804999913, 49.284683021000049 ], [ -124.869776510999927, 49.284689696000051 ], [ -124.869766309999974, 49.284419984000031 ], [ -124.869354017999967, 49.284426658 ], [ -124.869343819000022, 49.284156946000031 ], [ -124.868931527999948, 49.284163617000111 ], [ -124.868921331, 49.28389390600011 ], [ -124.86850904299996, 49.283900576000043 ], [ -124.868498849, 49.28363086400006 ], [ -124.868086561999974, 49.283637532000149 ], [ -124.868076680999934, 49.283376040000057 ], [ -124.867768115, 49.283372806000045 ], [ -124.867251803, 49.283381154000075 ], [ -124.867251282999945, 49.283367387000126 ], [ -124.86678922599998, 49.283362540000091 ], [ -124.866237604999924, 49.282884096000018 ], [ -124.86530820199999, 49.282314403000072 ], [ -124.864087597999969, 49.281713404000051 ], [ -124.863016900999938, 49.281343108000044 ], [ -124.861627541999894, 49.28106341200008 ], [ -124.861680349999958, 49.278911236000077 ], [ -124.868635755999932, 49.27891148700008 ], [ -124.868554315999972, 49.278717251000074 ], [ -124.869872085999987, 49.278713075000063 ], [ -124.869912031999888, 49.278717402000069 ], [ -124.869964625999913, 49.278829156000093 ], [ -124.869947812999968, 49.278859990000043 ], [ -124.869659934999973, 49.279388326000053 ], [ -124.868845412999917, 49.280883183000078 ], [ -124.868458984999975, 49.28167989000012 ], [ -124.868318766999934, 49.282118846000095 ], [ -124.868237285999982, 49.28251027000006 ], [ -124.86838593499999, 49.282911208000023 ], [ -124.87066027399996, 49.28280687900012 ], [ -124.870681188999967, 49.282821604000056 ], [ -124.870964966999978, 49.28283899700002 ], [ -124.871641034999968, 49.28284304700005 ], [ -124.871629669999891, 49.28331030200011 ], [ -124.87219920099993, 49.283301072 ], [ -124.872240058999978, 49.284379916000056 ], [ -124.871415476999971, 49.284393278000074 ], [ -124.871435896999969, 49.284932700000113 ], [ -124.870583329999988, 49.28494651000009 ], [ -124.870199009999936, 49.284952732000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.967215173973119", "sL_AssetLoss": "796.1", "sL_BldgLoss": "770", "sL_StrLoss": "647", "sL_NStrLoss": "123", "sL_ContLoss": "26.1", "geom_point": "0101000020E610000042286BABC4365FC03397A7B5E1A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.854252215999949, 49.271705503000064 ], [ -124.854415994999968, 49.271639987000107 ], [ -124.854891102999943, 49.271857887000117 ], [ -124.855498091999934, 49.271910607000095 ], [ -124.856269185999977, 49.272293704000049 ], [ -124.856988614999977, 49.273173792000087 ], [ -124.856967873999949, 49.273371795000031 ], [ -124.85684639899992, 49.273435906000032 ], [ -124.856667197999982, 49.273411691000092 ], [ -124.855571597999969, 49.272782212000138 ], [ -124.855167614, 49.27263549300006 ], [ -124.854252215999949, 49.271705503000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110089584", "BldgCostT": "75188334", "sL_LossRatio": "0.970957365655877", "sL_AssetLoss": "105802.73", "sL_BldgLoss": "102729.94", "sL_StrLoss": "88409.74", "sL_NStrLoss": "14320.2", "sL_ContLoss": "3072.79", "geom_point": "0101000020E61000005FA5DCF955375FC07E2A652153A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.871494942999959, 49.307795780000099 ], [ -124.87117515199999, 49.307518741000131 ], [ -124.869331199999934, 49.305921184000049 ], [ -124.868832582999985, 49.305495094000015 ], [ -124.868426432999982, 49.305148007000035 ], [ -124.868141814999987, 49.304904759000081 ], [ -124.867101099999928, 49.304015306000082 ], [ -124.866927230999949, 49.303866713000104 ], [ -124.866791678999959, 49.30375084600005 ], [ -124.866509431999944, 49.303509616000056 ], [ -124.866180137999947, 49.303228141000012 ], [ -124.865001712999955, 49.302220950000077 ], [ -124.864862793, 49.302102196000135 ], [ -124.864124566999948, 49.301465864000065 ], [ -124.86395163399996, 49.301316806000088 ], [ -124.862807697999955, 49.300330669000068 ], [ -124.862440493999941, 49.300014106000013 ], [ -124.862362249999961, 49.299946681000037 ], [ -124.861781613999966, 49.299446105000094 ], [ -124.860670047, 49.298501062000071 ], [ -124.860183697999901, 49.298087544000083 ], [ -124.859811393999919, 49.297770997000065 ], [ -124.861428863999905, 49.296977580000096 ], [ -124.862372889999946, 49.296514495000039 ], [ -124.861525382999972, 49.292255491000084 ], [ -124.862973522999951, 49.291816645000019 ], [ -124.864542334999925, 49.291343068000096 ], [ -124.864692576999943, 49.291265429000106 ], [ -124.864783811, 49.291184506000029 ], [ -124.864765692999967, 49.291084389000034 ], [ -124.864262715, 49.290287300000045 ], [ -124.863779467999976, 49.289491319000028 ], [ -124.863499587999939, 49.28904482100009 ], [ -124.863440401999952, 49.288943605000121 ], [ -124.86067118899993, 49.284390953000091 ], [ -124.860520007999952, 49.284142387000024 ], [ -124.860506431999937, 49.284143844000049 ], [ -124.85685287799997, 49.284534797 ], [ -124.856287066999982, 49.284535458000164 ], [ -124.85450007299994, 49.284537551 ], [ -124.854390134999946, 49.284537673000081 ], [ -124.853437053999968, 49.284538194000056 ], [ -124.851155977999966, 49.284544586000081 ], [ -124.850457232999972, 49.284546367000097 ], [ -124.850405704999943, 49.284546504000055 ], [ -124.850355595999972, 49.2829087040001 ], [ -124.850345329999968, 49.282419394000037 ], [ -124.850336692, 49.282007503000081 ], [ -124.850339247999898, 49.281772001000064 ], [ -124.850347395999918, 49.281021108000104 ], [ -124.84915682599997, 49.281018278000062 ], [ -124.848661373999917, 49.281017105000075 ], [ -124.84773998, 49.281014892000073 ], [ -124.842046597999925, 49.281001162000095 ], [ -124.841950425999954, 49.281000904000038 ], [ -124.841689335999931, 49.281000283000033 ], [ -124.84089236, 49.280998322000109 ], [ -124.840556108999962, 49.280997503000044 ], [ -124.84054774099998, 49.280990293000102 ], [ -124.839511277999989, 49.280098946000102 ], [ -124.839258821999948, 49.279881806000063 ], [ -124.839362274999957, 49.277278997000067 ], [ -124.839587323999964, 49.277337449000072 ], [ -124.839723899999953, 49.277372902000103 ], [ -124.84018177199998, 49.277407107000094 ], [ -124.840285906999952, 49.277414903000064 ], [ -124.840757821999944, 49.277409313000057 ], [ -124.841527585, 49.277400177000118 ], [ -124.844812497999925, 49.277361137000035 ], [ -124.845334712999929, 49.277354928000044 ], [ -124.845513473999958, 49.277352805000085 ], [ -124.84587085699998, 49.277348549000074 ], [ -124.846640528999927, 49.27733937700004 ], [ -124.848757364999983, 49.277314135000019 ], [ -124.850327191999952, 49.277295402000078 ], [ -124.850314826999977, 49.275672991000086 ], [ -124.850303586999985, 49.274202512000059 ], [ -124.850323987999928, 49.273709409000091 ], [ -124.850344404999959, 49.273273092000082 ], [ -124.850353508999959, 49.271966204000094 ], [ -124.850352886999943, 49.27144983200008 ], [ -124.850352685999937, 49.271277698000077 ], [ -124.850352374999957, 49.270757481000054 ], [ -124.850351908999968, 49.270090401000061 ], [ -124.850352104999942, 49.269977515000065 ], [ -124.850353478999978, 49.269195695000114 ], [ -124.850514588999914, 49.269198837000076 ], [ -124.851986451999963, 49.26922744200003 ], [ -124.852000203999978, 49.269227695000048 ], [ -124.852651525999974, 49.269239580000047 ], [ -124.852868882999957, 49.270009198000018 ], [ -124.85329110399999, 49.27099190600007 ], [ -124.853318992999945, 49.271352304000054 ], [ -124.853537880999966, 49.27172680000011 ], [ -124.853693882999906, 49.271957915 ], [ -124.853622346999927, 49.271957156000042 ], [ -124.853631504999953, 49.272201491000033 ], [ -124.853742985999972, 49.272202675000052 ], [ -124.853747083999977, 49.27203673300005 ], [ -124.85404838799991, 49.272483105000063 ], [ -124.855385699999928, 49.273297704000058 ], [ -124.856337118999988, 49.27411950000004 ], [ -124.856717691, 49.27474330600009 ], [ -124.857059017999973, 49.275052400000057 ], [ -124.857098307999976, 49.275367100000118 ], [ -124.8564927799999, 49.276059303000103 ], [ -124.854682682000018, 49.277294095000101 ], [ -124.854674427999967, 49.27731731700004 ], [ -124.854648238999985, 49.277317038000106 ], [ -124.854650746999965, 49.277383934000035 ], [ -124.854569788, 49.277611699000019 ], [ -124.854579298999965, 49.277648033000069 ], [ -124.854248364999975, 49.277653345000019 ], [ -124.854319171999975, 49.27954134200008 ], [ -124.854731425999901, 49.279534724000037 ], [ -124.854771898999971, 49.280613579000061 ], [ -124.855184163000033, 49.280606958000071 ], [ -124.855214524999937, 49.281416099000076 ], [ -124.854628452, 49.281425511000137 ], [ -124.859644870999972, 49.281478592000042 ], [ -124.85962114599999, 49.282443790000045 ], [ -124.861778592999912, 49.282466549000063 ], [ -124.861782179999949, 49.282320313000071 ], [ -124.861596748999915, 49.282318359000101 ], [ -124.861613058999964, 49.281653666000118 ], [ -124.862041893999958, 49.281746093000052 ], [ -124.862767500999922, 49.282031002000039 ], [ -124.86319368299999, 49.282042402000023 ], [ -124.864566615999962, 49.282730295000107 ], [ -124.86500662899999, 49.283036053000082 ], [ -124.864969431999953, 49.284556336000087 ], [ -124.86658376299999, 49.284573288000047 ], [ -124.866695401999934, 49.284836698000078 ], [ -124.866751340999912, 49.285240238000078 ], [ -124.866728191000021, 49.286187827000035 ], [ -124.867183262999959, 49.286192601000039 ], [ -124.867373701999924, 49.286408999000074 ], [ -124.867791677999975, 49.287266395000074 ], [ -124.868015099999951, 49.28845990600005 ], [ -124.868572517999908, 49.289727400000054 ], [ -124.868511391999945, 49.290664498000098 ], [ -124.868712108999915, 49.291614507000048 ], [ -124.868959113999935, 49.291962 ], [ -124.869094887999893, 49.292624289000116 ], [ -124.86945681499999, 49.29352248800005 ], [ -124.864514713999981, 49.293470658000032 ], [ -124.864507963, 49.293746413000072 ], [ -124.86759550799998, 49.293778820000057 ], [ -124.86758547899997, 49.29418954500013 ], [ -124.869767655999979, 49.294212396000056 ], [ -124.870399095999943, 49.295149403000018 ], [ -124.871948794999952, 49.296104998000068 ], [ -124.872744087999948, 49.296415503000048 ], [ -124.873327099000022, 49.296550787000101 ], [ -124.874827107999948, 49.2965351080001 ], [ -124.875619894999915, 49.296432608000025 ], [ -124.87627401099995, 49.296250305000093 ], [ -124.878020786999969, 49.29553820100007 ], [ -124.879423221999915, 49.294796202000079 ], [ -124.881147197999937, 49.294192311000131 ], [ -124.882129990999914, 49.293987195000042 ], [ -124.882584683999966, 49.293998598000023 ], [ -124.882947507999987, 49.294153896000111 ], [ -124.883095788999981, 49.294457196000103 ], [ -124.883048504999977, 49.294656590000031 ], [ -124.882617001999947, 49.295212084000056 ], [ -124.882627318999937, 49.295868600000105 ], [ -124.882861804999948, 49.296260310000079 ], [ -124.88296679299998, 49.296817086000047 ], [ -124.88332520099999, 49.2972058920001 ], [ -124.883549600999956, 49.29766168500003 ], [ -124.883639011999961, 49.297866788000071 ], [ -124.883416709999921, 49.298177286000076 ], [ -124.88337298099999, 49.298447895000017 ], [ -124.883544337999979, 49.298654627000069 ], [ -124.879501651999973, 49.298612778000027 ], [ -124.879541987999957, 49.296943352000092 ], [ -124.877148945999977, 49.29691850800004 ], [ -124.87714019299996, 49.29728001400013 ], [ -124.876368460999984, 49.297271991000038 ], [ -124.876312194999954, 49.299594129000099 ], [ -124.874466487999953, 49.299574918000111 ], [ -124.874482477999891, 49.299996367000048 ], [ -124.873245214999955, 49.300016438000092 ], [ -124.873230995999904, 49.29964144100007 ], [ -124.873227983999939, 49.299562009000049 ], [ -124.870818063999977, 49.29953685100002 ], [ -124.870818571999962, 49.299516009000101 ], [ -124.869925422999955, 49.299530469000025 ], [ -124.869935631, 49.299800180000062 ], [ -124.867873526999972, 49.299833541000041 ], [ -124.867875314999964, 49.299880830000085 ], [ -124.867884663999973, 49.299880928000071 ], [ -124.867880997999976, 49.300031141 ], [ -124.867883722999949, 49.300103252000085 ], [ -124.867879234999947, 49.300103324000069 ], [ -124.86787547099999, 49.300257496000093 ], [ -124.868288171999964, 49.300261820000024 ], [ -124.868279667999971, 49.300610262000085 ], [ -124.868685377999924, 49.300614510000152 ], [ -124.868670875999953, 49.301208920000128 ], [ -124.869337289999947, 49.301215894000102 ], [ -124.869336629999935, 49.301242963000071 ], [ -124.86929312, 49.303027311000058 ], [ -124.869883277999989, 49.303033485000071 ], [ -124.869869501999986, 49.303598703000056 ], [ -124.872006531999943, 49.303621032000052 ], [ -124.871998281999964, 49.303960191000037 ], [ -124.872489833999978, 49.303965321000085 ], [ -124.87247639, 49.304518203000057 ], [ -124.873233838999951, 49.304526103000057 ], [ -124.873233735999946, 49.304530368000087 ], [ -124.874973476999941, 49.304548494000052 ], [ -124.8749783499999, 49.304347650000061 ], [ -124.876903060999965, 49.304367671000072 ], [ -124.876909287999979, 49.304110598000101 ], [ -124.878451415999962, 49.304126615000044 ], [ -124.878493826999929, 49.302373134000106 ], [ -124.879088671999938, 49.302379305000045 ], [ -124.879108147999915, 49.301573546000057 ], [ -124.884602531999974, 49.3016304020001 ], [ -124.884548398999982, 49.303880737000036 ], [ -124.885326279999944, 49.303868045000044 ], [ -124.885239524, 49.305205300000068 ], [ -124.885367403999979, 49.305314581000076 ], [ -124.885402388999964, 49.30545809700007 ], [ -124.885385677999977, 49.306295023000139 ], [ -124.885334097999959, 49.308873010000056 ], [ -124.885172803000017, 49.309010911000058 ], [ -124.884944609999977, 49.30906790100007 ], [ -124.884648195999929, 49.309108106000046 ], [ -124.884095861999967, 49.308952812 ], [ -124.883649325999926, 49.308827282000053 ], [ -124.880201388999978, 49.307857802000051 ], [ -124.879241897, 49.307841014000061 ], [ -124.878944630999982, 49.307835785000115 ], [ -124.878901397000021, 49.307836649000059 ], [ -124.8787013099999, 49.307840501000044 ], [ -124.877717864999966, 49.307851661000072 ], [ -124.875133061, 49.307880942000018 ], [ -124.874889805999914, 49.307883700000083 ], [ -124.874501798999972, 49.308019097000063 ], [ -124.872944500999935, 49.309051501000027 ], [ -124.872876151999947, 49.308992283000059 ], [ -124.872804873999897, 49.30893054400007 ], [ -124.87198611, 49.308221255000042 ], [ -124.871494942999959, 49.307795780000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106627083", "BldgCostT": "73008333", "sL_LossRatio": "0.967067972263897", "sL_AssetLoss": "114361.558", "sL_BldgLoss": "110595.4", "sL_StrLoss": "96311.3", "sL_NStrLoss": "14284.1", "sL_ContLoss": "3766.158", "geom_point": "0101000020E61000001104027CBB365FC0EBD831439DA54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.849427018999961, 49.303119395000081 ], [ -124.847406330999931, 49.302998366000097 ], [ -124.846931356999931, 49.303002476000074 ], [ -124.846893720999986, 49.303002779000074 ], [ -124.84596382399998, 49.303100873000062 ], [ -124.845988501999955, 49.30241677900009 ], [ -124.84600699, 49.301903249000127 ], [ -124.846075425999956, 49.300004116000125 ], [ -124.846080044999951, 49.299876187000066 ], [ -124.846116303999921, 49.298870429000033 ], [ -124.846139617999938, 49.29822386700009 ], [ -124.84614518699999, 49.298069053000063 ], [ -124.846154263999964, 49.297817164000037 ], [ -124.846194632999953, 49.296696705000059 ], [ -124.847597407999942, 49.296688151000104 ], [ -124.84978383399999, 49.29667483300009 ], [ -124.850492502999941, 49.296670496000026 ], [ -124.8504625, 49.293726999000079 ], [ -124.850475043999936, 49.293222256000035 ], [ -124.85048150199998, 49.292961272000085 ], [ -124.850496699999951, 49.292347485000114 ], [ -124.850458808999988, 49.290694028000132 ], [ -124.850431990999965, 49.289523297000123 ], [ -124.850405704999943, 49.284546504000055 ], [ -124.850457232999972, 49.284546367000097 ], [ -124.851155977999966, 49.284544586000081 ], [ -124.853437053999968, 49.284538194000056 ], [ -124.854390134999946, 49.284537673000081 ], [ -124.85450007299994, 49.284537551 ], [ -124.856287066999982, 49.284535458000164 ], [ -124.85685287799997, 49.284534797 ], [ -124.860506431999937, 49.284143844000049 ], [ -124.860520007999952, 49.284142387000024 ], [ -124.86067118899993, 49.284390953000091 ], [ -124.863440401999952, 49.288943605000121 ], [ -124.863499587999939, 49.28904482100009 ], [ -124.863779467999976, 49.289491319000028 ], [ -124.864262715, 49.290287300000045 ], [ -124.864765692999967, 49.291084389000034 ], [ -124.864783811, 49.291184506000029 ], [ -124.864692576999943, 49.291265429000106 ], [ -124.864542334999925, 49.291343068000096 ], [ -124.862973522999951, 49.291816645000019 ], [ -124.861525382999972, 49.292255491000084 ], [ -124.862372889999946, 49.296514495000039 ], [ -124.861428863999905, 49.296977580000096 ], [ -124.859811393999919, 49.297770997000065 ], [ -124.860183697999901, 49.298087544000083 ], [ -124.860670047, 49.298501062000071 ], [ -124.861781613999966, 49.299446105000094 ], [ -124.86053476099994, 49.299997725000033 ], [ -124.859226093999936, 49.300576658000061 ], [ -124.855851785999945, 49.302069246000087 ], [ -124.855585960999989, 49.302207734000042 ], [ -124.855469327000023, 49.302367621000037 ], [ -124.855467248999958, 49.302480636000034 ], [ -124.855460822999959, 49.302823868000097 ], [ -124.855285423999973, 49.302972313000026 ], [ -124.855217296, 49.302990247000075 ], [ -124.855006072999984, 49.30304586500003 ], [ -124.853932790999949, 49.303109189000047 ], [ -124.85373985499993, 49.303110832000065 ], [ -124.850163415999987, 49.303141207000124 ], [ -124.84983743, 49.303143985000062 ], [ -124.849427018999961, 49.303119395000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113485417", "BldgCostT": "76296667", "sL_LossRatio": "0.924099976169999", "sL_AssetLoss": "152958.45", "sL_BldgLoss": "141348.9", "sL_StrLoss": "114595.7", "sL_NStrLoss": "26753.2", "sL_ContLoss": "11609.55", "geom_point": "0101000020E6100000A14ACD1EE8355FC0417D054838A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.844205026999987, 49.303409897000037 ], [ -124.844252423999961, 49.303050408000054 ], [ -124.840632777999957, 49.303059923000085 ], [ -124.840343364999981, 49.303060159000061 ], [ -124.838087238999918, 49.303019341000081 ], [ -124.835433227999928, 49.302935769000058 ], [ -124.835275270999887, 49.299546392000089 ], [ -124.835674148999942, 49.299540055000094 ], [ -124.83574, 49.301312273000079 ], [ -124.837165724, 49.301327625000049 ], [ -124.837144936999962, 49.302156549000138 ], [ -124.839992467999963, 49.302187156000052 ], [ -124.839986140999955, 49.302440082000061 ], [ -124.840321341999925, 49.302434743000084 ], [ -124.840311295999953, 49.302165027000036 ], [ -124.84095985299993, 49.302154694000144 ], [ -124.8410170499999, 49.299866289000057 ], [ -124.844017327999921, 49.299898429000052 ], [ -124.844043389999953, 49.298852961000136 ], [ -124.844131127999944, 49.298853900000047 ], [ -124.8441332399999, 49.298769201000091 ], [ -124.844045487999921, 49.29876826200006 ], [ -124.844059535999918, 49.298204692000049 ], [ -124.839558953999969, 49.298156448000071 ], [ -124.839559977999969, 49.298115493000118 ], [ -124.837643985999975, 49.298094898000123 ], [ -124.837658317999939, 49.297523056000088 ], [ -124.837103598999988, 49.297517086000013 ], [ -124.837109843999968, 49.297268073000041 ], [ -124.837064613, 49.297267587000121 ], [ -124.837075478999935, 49.296834268000062 ], [ -124.836974834, 49.296833184000015 ], [ -124.836995984999973, 49.295989812000109 ], [ -124.836844680999917, 49.295988184000073 ], [ -124.836934946999961, 49.292388867000064 ], [ -124.837023435999924, 49.2923898190001 ], [ -124.837032209999961, 49.292039942 ], [ -124.836916420999913, 49.292038696000063 ], [ -124.836946637999958, 49.290833685000045 ], [ -124.836752489, 49.290831595000085 ], [ -124.836796634999985, 49.289071263000061 ], [ -124.83665013299999, 49.289069685000086 ], [ -124.836634752999927, 49.289682849 ], [ -124.835483029999978, 49.289670439000119 ], [ -124.835474327999961, 49.290017077000087 ], [ -124.834894220999956, 49.290010821000045 ], [ -124.83488612299999, 49.290333190000126 ], [ -124.834664067999967, 49.290330794000035 ], [ -124.834585691999962, 49.293450089000068 ], [ -124.82978467699995, 49.293398192000055 ], [ -124.829623775999934, 49.29126277200006 ], [ -124.829597653999912, 49.290916349000064 ], [ -124.829600135999897, 49.289994904000061 ], [ -124.829565679999973, 49.289940165000111 ], [ -124.829584300999969, 49.289563763000054 ], [ -124.829590487999965, 49.289558761000109 ], [ -124.829898598999975, 49.28930395000004 ], [ -124.830714415999978, 49.288857096000093 ], [ -124.831069811999939, 49.288658301000062 ], [ -124.831143310999934, 49.288617176000074 ], [ -124.83338512499995, 49.287363096000021 ], [ -124.835019368999966, 49.286508650000073 ], [ -124.835184855999941, 49.286422126000083 ], [ -124.836376788999956, 49.285798918000076 ], [ -124.836576500999954, 49.285694501000101 ], [ -124.836981189999989, 49.285468035000115 ], [ -124.83724318899999, 49.285321427000056 ], [ -124.837406866999942, 49.285229827000123 ], [ -124.838914426999949, 49.284386202000093 ], [ -124.839390306999988, 49.28411988800012 ], [ -124.839376864999963, 49.283692240000086 ], [ -124.839355918999971, 49.283025108000075 ], [ -124.839290213, 49.280897985000088 ], [ -124.839258821999948, 49.279881806000063 ], [ -124.839511277999989, 49.280098946000102 ], [ -124.84054774099998, 49.280990293000102 ], [ -124.840556108999962, 49.280997503000044 ], [ -124.84089236, 49.280998322000109 ], [ -124.841689335999931, 49.281000283000033 ], [ -124.841950425999954, 49.281000904000038 ], [ -124.842046597999925, 49.281001162000095 ], [ -124.84773998, 49.281014892000073 ], [ -124.848661373999917, 49.281017105000075 ], [ -124.84915682599997, 49.281018278000062 ], [ -124.850347395999918, 49.281021108000104 ], [ -124.850339247999898, 49.281772001000064 ], [ -124.850336692, 49.282007503000081 ], [ -124.850345329999968, 49.282419394000037 ], [ -124.850355595999972, 49.2829087040001 ], [ -124.850405704999943, 49.284546504000055 ], [ -124.850431990999965, 49.289523297000123 ], [ -124.850458808999988, 49.290694028000132 ], [ -124.850496699999951, 49.292347485000114 ], [ -124.85048150199998, 49.292961272000085 ], [ -124.850475043999936, 49.293222256000035 ], [ -124.8504625, 49.293726999000079 ], [ -124.850492502999941, 49.296670496000026 ], [ -124.84978383399999, 49.29667483300009 ], [ -124.847597407999942, 49.296688151000104 ], [ -124.846194632999953, 49.296696705000059 ], [ -124.846154263999964, 49.297817164000037 ], [ -124.84614518699999, 49.298069053000063 ], [ -124.846139617999938, 49.29822386700009 ], [ -124.846116303999921, 49.298870429000033 ], [ -124.846080044999951, 49.299876187000066 ], [ -124.846075425999956, 49.300004116000125 ], [ -124.84600699, 49.301903249000127 ], [ -124.845988501999955, 49.30241677900009 ], [ -124.84596382399998, 49.303100873000062 ], [ -124.84576920399995, 49.303128180000044 ], [ -124.844968357999974, 49.303240536000054 ], [ -124.844580889999946, 49.303294899000065 ], [ -124.844205026999987, 49.303409897000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.987340658529819", "sL_AssetLoss": "1409.473", "sL_BldgLoss": "1391.63", "sL_StrLoss": "1280.1", "sL_NStrLoss": "111.53", "sL_ContLoss": "17.843", "geom_point": "0101000020E61000004B4F89D23B355FC0D345D0B9D7A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.829882427999948, 49.294695410000074 ], [ -124.833756255999958, 49.294737296000058 ], [ -124.833714382999958, 49.296402462000039 ], [ -124.833180442999918, 49.296446095000142 ], [ -124.833157676999974, 49.296448488000124 ], [ -124.831136726999929, 49.296661331000045 ], [ -124.831033668999964, 49.296715666000047 ], [ -124.830034569999981, 49.296729286000037 ], [ -124.830018437999954, 49.296500193000057 ], [ -124.829882427999948, 49.294695410000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151443083", "BldgCostT": "102443333", "sL_LossRatio": "0.936687068592352", "sL_AssetLoss": "179286.344", "sL_BldgLoss": "167935.2", "sL_StrLoss": "141208", "sL_NStrLoss": "26727.2", "sL_ContLoss": "11351.144", "geom_point": "0101000020E6100000CCCBEDA00A355FC0BD0302BED7A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.829590487999965, 49.289558761000109 ], [ -124.829553439999927, 49.288902562000047 ], [ -124.828124276999986, 49.288984652000053 ], [ -124.827394020000014, 49.287943560000116 ], [ -124.825871593, 49.286272388000086 ], [ -124.82560629299995, 49.286045649000066 ], [ -124.826509636999901, 49.286055467000054 ], [ -124.826498679999986, 49.285758914 ], [ -124.825254978999922, 49.285745396000017 ], [ -124.824911526999927, 49.28545185700002 ], [ -124.824076969999979, 49.284738526000083 ], [ -124.823404342999964, 49.284313013000066 ], [ -124.823362065999902, 49.284287867000032 ], [ -124.822851959, 49.283984490000137 ], [ -124.821765382999928, 49.284087840000069 ], [ -124.82178151, 49.283452864 ], [ -124.821190239, 49.283446412000103 ], [ -124.82119946399996, 49.283083373000089 ], [ -124.820688941999933, 49.283077801000097 ], [ -124.820703502999962, 49.28250496900008 ], [ -124.820603137999981, 49.282506551000033 ], [ -124.820598035000017, 49.282368020000078 ], [ -124.820430974999965, 49.282366196000048 ], [ -124.820439898999894, 49.282015223000066 ], [ -124.819923576999912, 49.282009583000033 ], [ -124.819931259999947, 49.281707511000107 ], [ -124.819665722999972, 49.281711695000098 ], [ -124.819633718999981, 49.282969574000099 ], [ -124.819608046999946, 49.283978521000023 ], [ -124.81796771800002, 49.28366588500009 ], [ -124.816211607999946, 49.283645913000086 ], [ -124.81131731699999, 49.283601112000113 ], [ -124.811403060999936, 49.280254594000048 ], [ -124.811940086000021, 49.280260504000083 ], [ -124.811975311999916, 49.278884948000041 ], [ -124.811641649999913, 49.278881278000036 ], [ -124.811655789999961, 49.278329219000113 ], [ -124.811374658999981, 49.278333627000052 ], [ -124.811359146999948, 49.277910211000069 ], [ -124.80951752799993, 49.277889926000057 ], [ -124.809533801999947, 49.277255656000101 ], [ -124.809131151999921, 49.277251217000085 ], [ -124.809149826999956, 49.276523644000093 ], [ -124.805848589999982, 49.27648719000004 ], [ -124.805834502999957, 49.277034553000121 ], [ -124.805791606999975, 49.277034079000089 ], [ -124.805767654999954, 49.27796465200008 ], [ -124.804211561999949, 49.277947433000094 ], [ -124.80421109299999, 49.27796559100004 ], [ -124.804127772999948, 49.277964669000021 ], [ -124.804116014999963, 49.278420792000119 ], [ -124.802464603999951, 49.278402493000094 ], [ -124.802451116999976, 49.276425894000027 ], [ -124.803062296999911, 49.276396311000092 ], [ -124.806179262999962, 49.276041379000091 ], [ -124.807612668999951, 49.276067755000064 ], [ -124.809143190999961, 49.276299910000034 ], [ -124.810236685999939, 49.27644900700011 ], [ -124.81178549900001, 49.27602500400014 ], [ -124.814261581999986, 49.276502196000052 ], [ -124.814432412999949, 49.276589609000069 ], [ -124.814769873999964, 49.276656301000124 ], [ -124.81565802599999, 49.276668818000125 ], [ -124.816218809999924, 49.276755923000046 ], [ -124.816880124999926, 49.276842864000074 ], [ -124.81724251899999, 49.276890483000074 ], [ -124.818934090999974, 49.27690180700008 ], [ -124.819472185999928, 49.27687335500007 ], [ -124.819476777999938, 49.276873123000058 ], [ -124.820316783999928, 49.276887038000083 ], [ -124.821194709999986, 49.276888697000096 ], [ -124.822670204999923, 49.276864295000117 ], [ -124.825022081999947, 49.276848967000085 ], [ -124.825819602999971, 49.276843780000057 ], [ -124.827798230999989, 49.27683081800005 ], [ -124.82826010299999, 49.276827789 ], [ -124.82892568799997, 49.276819782000139 ], [ -124.831089798, 49.276793684000054 ], [ -124.832722397999959, 49.276774072000094 ], [ -124.833964893999976, 49.276759103000089 ], [ -124.835601928999921, 49.276750607000068 ], [ -124.833200836999936, 49.274687970000073 ], [ -124.832141604999961, 49.273777971000072 ], [ -124.831475451999893, 49.273205560000129 ], [ -124.83376973899999, 49.273213269000081 ], [ -124.834813728999976, 49.273218175000089 ], [ -124.835245656999973, 49.273220203000058 ], [ -124.835707561000021, 49.273217380000055 ], [ -124.837806893999954, 49.273204606000114 ], [ -124.839384515999981, 49.273354510000097 ], [ -124.839406081999982, 49.273771795000044 ], [ -124.841859448999941, 49.273757876000026 ], [ -124.842311070999983, 49.273755309000059 ], [ -124.842546774999988, 49.273753958000079 ], [ -124.845106048999966, 49.273739357000089 ], [ -124.846410565000014, 49.273731893000068 ], [ -124.84779756599994, 49.273723934000124 ], [ -124.849351265999971, 49.273715007000121 ], [ -124.850323987999928, 49.273709409000091 ], [ -124.850303586999985, 49.274202512000059 ], [ -124.850314826999977, 49.275672991000086 ], [ -124.850327191999952, 49.277295402000078 ], [ -124.848757364999983, 49.277314135000019 ], [ -124.846640528999927, 49.27733937700004 ], [ -124.84587085699998, 49.277348549000074 ], [ -124.845513473999958, 49.277352805000085 ], [ -124.845334712999929, 49.277354928000044 ], [ -124.844812497999925, 49.277361137000035 ], [ -124.841527585, 49.277400177000118 ], [ -124.840757821999944, 49.277409313000057 ], [ -124.840285906999952, 49.277414903000064 ], [ -124.84018177199998, 49.277407107000094 ], [ -124.839723899999953, 49.277372902000103 ], [ -124.839587323999964, 49.277337449000072 ], [ -124.839362274999957, 49.277278997000067 ], [ -124.839258821999948, 49.279881806000063 ], [ -124.839290213, 49.280897985000088 ], [ -124.839355918999971, 49.283025108000075 ], [ -124.839376864999963, 49.283692240000086 ], [ -124.839390306999988, 49.28411988800012 ], [ -124.838914426999949, 49.284386202000093 ], [ -124.837406866999942, 49.285229827000123 ], [ -124.83724318899999, 49.285321427000056 ], [ -124.836981189999989, 49.285468035000115 ], [ -124.836576500999954, 49.285694501000101 ], [ -124.836376788999956, 49.285798918000076 ], [ -124.835184855999941, 49.286422126000083 ], [ -124.835019368999966, 49.286508650000073 ], [ -124.83338512499995, 49.287363096000021 ], [ -124.831143310999934, 49.288617176000074 ], [ -124.831069811999939, 49.288658301000062 ], [ -124.830714415999978, 49.288857096000093 ], [ -124.829898598999975, 49.28930395000004 ], [ -124.829590487999965, 49.289558761000109 ] ], [ [ -124.829951033999976, 49.286092800000063 ], [ -124.829956725999978, 49.285867132000078 ], [ -124.828978581999962, 49.285882623000077 ], [ -124.828985971999927, 49.286082342000086 ], [ -124.829951033999976, 49.286092800000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "320761592", "BldgCostT": "200036793", "sL_LossRatio": "0.757288642471932", "sL_AssetLoss": "209484.14", "sL_BldgLoss": "158639.96", "sL_StrLoss": "112210.66", "sL_NStrLoss": "46429.3", "sL_ContLoss": "50844.18", "geom_point": "0101000020E610000007F0A485CB355FC0020C3785BAA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.839384515999981, 49.273354510000097 ], [ -124.837806893999954, 49.273204606000114 ], [ -124.835707561000021, 49.273217380000055 ], [ -124.835245656999973, 49.273220203000058 ], [ -124.834813728999976, 49.273218175000089 ], [ -124.83376973899999, 49.273213269000081 ], [ -124.831475451999893, 49.273205560000129 ], [ -124.831026515999937, 49.273204295000063 ], [ -124.830463703999925, 49.272724888000049 ], [ -124.830367639999963, 49.272643055000124 ], [ -124.829753939999975, 49.272665782000075 ], [ -124.829785253999972, 49.273213565000049 ], [ -124.828220711999975, 49.273225194000112 ], [ -124.828174172, 49.270934217000082 ], [ -124.828170510999911, 49.270753905000063 ], [ -124.828445697999925, 49.270790752000039 ], [ -124.828305739999976, 49.270692851000071 ], [ -124.826927970999975, 49.269493891000074 ], [ -124.827241025999967, 49.269500744000084 ], [ -124.827461791999923, 49.269496172000039 ], [ -124.82833567699997, 49.26945670500006 ], [ -124.828379465999916, 49.269906212000102 ], [ -124.831082258999942, 49.269928193000098 ], [ -124.832525569999987, 49.269968906000067 ], [ -124.833597025999964, 49.269999101000103 ], [ -124.83664901399996, 49.269931081000067 ], [ -124.837991495999987, 49.269933735000087 ], [ -124.838335337, 49.269934391000106 ], [ -124.839309804999957, 49.269936302000076 ], [ -124.839326861999908, 49.269186927000071 ], [ -124.839335977999895, 49.268786055000142 ], [ -124.839350711999913, 49.268138032000053 ], [ -124.83935169499992, 49.268095093000028 ], [ -124.839746270999939, 49.268134295000038 ], [ -124.840285072, 49.268216208000098 ], [ -124.840333200999979, 49.269509723000105 ], [ -124.840002488999929, 49.269514992000033 ], [ -124.839982242999895, 49.270135863000064 ], [ -124.839944134999939, 49.270137468000065 ], [ -124.839961161999938, 49.270595155000137 ], [ -124.839630694999983, 49.270600418000072 ], [ -124.839620311999937, 49.271015593000136 ], [ -124.842007515999953, 49.271041220000029 ], [ -124.841976430999964, 49.272286842000028 ], [ -124.842161845999954, 49.272288830000015 ], [ -124.842162611999953, 49.272258142000048 ], [ -124.843669314999943, 49.272274287000116 ], [ -124.843669853999927, 49.272252679000061 ], [ -124.844719636999969, 49.272263915000096 ], [ -124.844721314999958, 49.272196506000114 ], [ -124.845205524, 49.272201685000056 ], [ -124.845206897999972, 49.272146417000073 ], [ -124.845380681999956, 49.272148275000085 ], [ -124.845329603999971, 49.270779389000097 ], [ -124.844917419999931, 49.270785973000052 ], [ -124.844842661, 49.268781797000038 ], [ -124.844510577999955, 49.268633459000085 ], [ -124.84442476699995, 49.268634830000032 ], [ -124.84442326199995, 49.268594455000056 ], [ -124.844317358999959, 49.268547150000124 ], [ -124.84569284399997, 49.268535020000073 ], [ -124.845689198999978, 49.267936192000072 ], [ -124.846412711999974, 49.268047495000097 ], [ -124.847755101999923, 49.268169793 ], [ -124.848352583999912, 49.26816268900015 ], [ -124.848399575999935, 49.268153224000109 ], [ -124.848649197999961, 49.268102888000044 ], [ -124.848822605999928, 49.267988808000098 ], [ -124.848823381999978, 49.267988297000031 ], [ -124.849028300999947, 49.268002514000045 ], [ -124.849576684999974, 49.268344293000069 ], [ -124.8503225799999, 49.268431197000091 ], [ -124.850647198000019, 49.268273111000056 ], [ -124.85081739599994, 49.267722003000038 ], [ -124.851590586999933, 49.267790290000029 ], [ -124.852248390999961, 49.268095107000114 ], [ -124.852363302999919, 49.268218985000026 ], [ -124.852651525999974, 49.269239580000047 ], [ -124.852000203999978, 49.269227695000048 ], [ -124.851986451999963, 49.26922744200003 ], [ -124.850514588999914, 49.269198837000076 ], [ -124.850353478999978, 49.269195695000114 ], [ -124.850352104999942, 49.269977515000065 ], [ -124.850351908999968, 49.270090401000061 ], [ -124.850352374999957, 49.270757481000054 ], [ -124.850352685999937, 49.271277698000077 ], [ -124.850352886999943, 49.27144983200008 ], [ -124.850353508999959, 49.271966204000094 ], [ -124.850344404999959, 49.273273092000082 ], [ -124.850323987999928, 49.273709409000091 ], [ -124.849351265999971, 49.273715007000121 ], [ -124.84779756599994, 49.273723934000124 ], [ -124.846410565000014, 49.273731893000068 ], [ -124.845106048999966, 49.273739357000089 ], [ -124.842546774999988, 49.273753958000079 ], [ -124.842311070999983, 49.273755309000059 ], [ -124.841859448999941, 49.273757876000026 ], [ -124.839406081999982, 49.273771795000044 ], [ -124.839384515999981, 49.273354510000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30447500", "BldgCostT": "20525000", "sL_LossRatio": "0.859581209403644", "sL_AssetLoss": "38340.88", "sL_BldgLoss": "32957.1", "sL_StrLoss": "26546.3", "sL_NStrLoss": "6410.8", "sL_ContLoss": "5383.78", "geom_point": "0101000020E610000091D0E9BBD3345FC01757AE1AF8A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.822649001999977, 49.267147366000067 ], [ -124.822643074, 49.266732368000127 ], [ -124.82268171599999, 49.265788779000033 ], [ -124.822702767999886, 49.265274734000101 ], [ -124.822704307999985, 49.265237039000084 ], [ -124.822774000999985, 49.265087479000115 ], [ -124.822765405999931, 49.264879151000038 ], [ -124.82270443799996, 49.263410387000107 ], [ -124.822578201999988, 49.260365323000052 ], [ -124.822612877999944, 49.260180607000095 ], [ -124.823297889999964, 49.260306107000112 ], [ -124.82371100099995, 49.260308911000088 ], [ -124.825153591999964, 49.260497859000097 ], [ -124.825156428999989, 49.260574745000035 ], [ -124.825677754999973, 49.260566506000053 ], [ -124.825982284999924, 49.260606388000099 ], [ -124.825990287999929, 49.260823211000044 ], [ -124.825990589999961, 49.260831437000064 ], [ -124.826062253999936, 49.260830304000116 ], [ -124.827382368999935, 49.260809425000069 ], [ -124.827382863999944, 49.260789800000076 ], [ -124.827757091, 49.260838804000066 ], [ -124.828524079999937, 49.261004283000055 ], [ -124.82845012199999, 49.261201304000032 ], [ -124.828438584999958, 49.261582631000067 ], [ -124.828393509999913, 49.263076521000087 ], [ -124.82838483699993, 49.263364362000111 ], [ -124.828371495999988, 49.263805721000018 ], [ -124.828282008999977, 49.266772088000018 ], [ -124.828254772999955, 49.267233792000098 ], [ -124.82823687099993, 49.267581711000076 ], [ -124.828204960999983, 49.268078553000073 ], [ -124.828184700999913, 49.268422468000082 ], [ -124.82825212099999, 49.268862445000075 ], [ -124.828312478, 49.26925636000005 ], [ -124.82833567699997, 49.26945670500006 ], [ -124.827461791999923, 49.269496172000039 ], [ -124.827241025999967, 49.269500744000084 ], [ -124.826927970999975, 49.269493891000074 ], [ -124.826303820999954, 49.269480252000051 ], [ -124.82560120699992, 49.269464920000104 ], [ -124.822668760999989, 49.269399672000084 ], [ -124.822668903999912, 49.269276147000092 ], [ -124.822669831999917, 49.268490574000118 ], [ -124.822654782999948, 49.267519824000054 ], [ -124.822649001999977, 49.267147366000067 ] ], [ [ -124.827682702999979, 49.261988057000067 ], [ -124.826656906999958, 49.261900406000066 ], [ -124.826030410000016, 49.261910313000037 ], [ -124.826023121, 49.261712819000138 ], [ -124.825205146999963, 49.261653481000089 ], [ -124.824372003999969, 49.261666644000094 ], [ -124.82438195, 49.261936363000117 ], [ -124.823969833999925, 49.261942872000091 ], [ -124.823979778999956, 49.262212591000072 ], [ -124.823541712999926, 49.262219507000076 ], [ -124.823721682999974, 49.262221469000046 ], [ -124.823667062999917, 49.26437654000005 ], [ -124.824883605999958, 49.264357325000105 ], [ -124.824893557999957, 49.264627044000044 ], [ -124.825305696, 49.264620531000055 ], [ -124.825315647999943, 49.264890250000057 ], [ -124.825727786999934, 49.264883737000041 ], [ -124.82576760799995, 49.265962612000116 ], [ -124.824531158999918, 49.265982150000106 ], [ -124.824521210999961, 49.265712431000019 ], [ -124.823696918999929, 49.265725448000069 ], [ -124.823703964999964, 49.265916622000127 ], [ -124.823716806000022, 49.266264887000062 ], [ -124.824088016999966, 49.266259024000064 ], [ -124.824128956999928, 49.266258379000064 ], [ -124.824130493999974, 49.266300042000104 ], [ -124.824148849999972, 49.266797816000057 ], [ -124.824600482999969, 49.26679068300011 ], [ -124.824973161999964, 49.266784795000092 ], [ -124.824977707999921, 49.266908029000035 ], [ -124.826627959999939, 49.266925976000103 ], [ -124.826562024999959, 49.265140423000034 ], [ -124.826788012999913, 49.265136849000037 ], [ -124.826838641999984, 49.263576563000079 ], [ -124.826915487999926, 49.263545037000064 ], [ -124.826914399999978, 49.263515593000072 ], [ -124.827380585999947, 49.263508217000052 ], [ -124.82773836599992, 49.263494757000039 ], [ -124.827682702999979, 49.261988057000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175750000", "BldgCostT": "116845000", "sL_LossRatio": "0.938825647713479", "sL_AssetLoss": "200371.39", "sL_BldgLoss": "188113.8", "sL_StrLoss": "153543.8", "sL_NStrLoss": "34570", "sL_ContLoss": "12257.59", "geom_point": "0101000020E6100000EA2DB34270345FC0BDD6DEA72AA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.819864335999966, 49.273230564000073 ], [ -124.819815177999956, 49.272098011 ], [ -124.818199669999927, 49.272105768000138 ], [ -124.817178210999913, 49.272110674000061 ], [ -124.81714682099998, 49.271218693000044 ], [ -124.817124938999939, 49.270597981000073 ], [ -124.815513395999957, 49.270659884000075 ], [ -124.814893016999974, 49.270653997000039 ], [ -124.814912816999978, 49.269340000000113 ], [ -124.814736198999952, 49.269334206000089 ], [ -124.814215903999951, 49.269317105000034 ], [ -124.813987093999984, 49.269264054000111 ], [ -124.813918302999937, 49.269248120000064 ], [ -124.813739802999976, 49.269142623000114 ], [ -124.813501618999965, 49.268899664000109 ], [ -124.813453888999931, 49.268671431000058 ], [ -124.813458159999968, 49.268547473000069 ], [ -124.813468335999971, 49.268253334000121 ], [ -124.813474038999956, 49.268088587000115 ], [ -124.813493635, 49.267521521000113 ], [ -124.813501470999938, 49.26729476600012 ], [ -124.813504720999944, 49.26716698700006 ], [ -124.813669400999984, 49.267168796000107 ], [ -124.813680923000021, 49.266718937000064 ], [ -124.81351332899996, 49.266723335000023 ], [ -124.813530294999964, 49.265991672000098 ], [ -124.813540787999955, 49.265540008000123 ], [ -124.81432291899992, 49.265538681000073 ], [ -124.81496460399994, 49.265537603000062 ], [ -124.814966316999943, 49.265393524000061 ], [ -124.814974204999928, 49.264731190000077 ], [ -124.814981802999924, 49.26388124300005 ], [ -124.81498308499998, 49.263735787000037 ], [ -124.814986508999965, 49.263444198000066 ], [ -124.814990395999956, 49.263089831000087 ], [ -124.814991680999952, 49.262971695000061 ], [ -124.815001446999972, 49.261919463000083 ], [ -124.815003373999957, 49.261706190000055 ], [ -124.814934888, 49.26159300400009 ], [ -124.814004991999951, 49.260116249000077 ], [ -124.813993318000016, 49.260097752000064 ], [ -124.813769701, 49.259742566000114 ], [ -124.813519327999956, 49.259345117000038 ], [ -124.814047587999951, 49.259140291000037 ], [ -124.814036368999922, 49.259086996000079 ], [ -124.81401698800002, 49.258995039000112 ], [ -124.813768037999949, 49.257832056000055 ], [ -124.813893546999907, 49.25775510800009 ], [ -124.814083217999965, 49.25791940100008 ], [ -124.8141376559999, 49.257966550000035 ], [ -124.814240660999985, 49.258055816000059 ], [ -124.814339850999957, 49.25814174100006 ], [ -124.814419083999937, 49.258210393000077 ], [ -124.814352888999949, 49.259592610000055 ], [ -124.814478897999919, 49.260058293000093 ], [ -124.814816996999966, 49.260682105000086 ], [ -124.815570602, 49.261687602000038 ], [ -124.816250910999926, 49.262243006000041 ], [ -124.816810483999973, 49.262530696000077 ], [ -124.817181283999943, 49.262893895000104 ], [ -124.817434690999988, 49.26344790800006 ], [ -124.817212411999961, 49.264890596000093 ], [ -124.816673118999944, 49.265555706 ], [ -124.814590010999908, 49.267559594000033 ], [ -124.814345207999963, 49.26802100700008 ], [ -124.814656401999954, 49.267908503000058 ], [ -124.81522448, 49.267287594000031 ], [ -124.816203994999938, 49.266264996000118 ], [ -124.817137696999964, 49.265450294000047 ], [ -124.81740030399996, 49.265094286000085 ], [ -124.817458793999933, 49.264842207000072 ], [ -124.817723883, 49.26382109700004 ], [ -124.817655092, 49.263093313000063 ], [ -124.817154199999933, 49.262516504000132 ], [ -124.81607968099992, 49.261751704000112 ], [ -124.814801501999924, 49.260250586000076 ], [ -124.814666393999957, 49.259532797000062 ], [ -124.814820177999962, 49.258557882000062 ], [ -124.815150442999979, 49.258844052000065 ], [ -124.815400409999981, 49.259060594000061 ], [ -124.81573992099996, 49.259258799000072 ], [ -124.816163596999971, 49.259438100000075 ], [ -124.816305660999944, 49.259481482000091 ], [ -124.816578991999918, 49.259564990000108 ], [ -124.817073494999931, 49.259658698000074 ], [ -124.817781714999938, 49.259714266000081 ], [ -124.817899610999987, 49.259723505000082 ], [ -124.818083092999956, 49.259733171000029 ], [ -124.81949671299999, 49.259807601000027 ], [ -124.820224893, 49.259888503000113 ], [ -124.821119516999914, 49.260067503000066 ], [ -124.822578201999988, 49.260365323000052 ], [ -124.82270443799996, 49.263410387000107 ], [ -124.822765405999931, 49.264879151000038 ], [ -124.822774000999985, 49.265087479000115 ], [ -124.822704307999985, 49.265237039000084 ], [ -124.822702767999886, 49.265274734000101 ], [ -124.82268171599999, 49.265788779000033 ], [ -124.822643074, 49.266732368000127 ], [ -124.822649001999977, 49.267147366000067 ], [ -124.822654782999948, 49.267519824000054 ], [ -124.822669831999917, 49.268490574000118 ], [ -124.822668903999912, 49.269276147000092 ], [ -124.822668760999989, 49.269399672000084 ], [ -124.82560120699992, 49.269464920000104 ], [ -124.825685731999954, 49.273636220000142 ], [ -124.822670195999947, 49.27364839100008 ], [ -124.822670658000021, 49.27468150300006 ], [ -124.82266985499993, 49.275124306000109 ], [ -124.820846785999933, 49.275177749000079 ], [ -124.820847259999979, 49.275182812000025 ], [ -124.820018776, 49.27523515900004 ], [ -124.819864335999966, 49.273230564000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "498989176", "BldgCostT": "316205624", "sL_LossRatio": "0.68640231355249", "sL_AssetLoss": "631022.64", "sL_BldgLoss": "433135.4", "sL_StrLoss": "233913", "sL_NStrLoss": "199222.4", "sL_ContLoss": "197887.24", "geom_point": "0101000020E6100000CE66A4F7F0335FC02CA913D044A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.812068292999982, 49.263746106000085 ], [ -124.812128577999928, 49.261658401000027 ], [ -124.811429477, 49.261655885000096 ], [ -124.810906990999968, 49.261654004000015 ], [ -124.810323614999945, 49.261652099000123 ], [ -124.809609327999951, 49.26086559000008 ], [ -124.809503786999983, 49.260751012000121 ], [ -124.808341007999957, 49.259469907000067 ], [ -124.807320004999951, 49.258336204000095 ], [ -124.806753892999893, 49.257665598000081 ], [ -124.806565970999941, 49.257375840000137 ], [ -124.806522797999989, 49.257309306000096 ], [ -124.806669990999936, 49.256977893000098 ], [ -124.807559582999943, 49.256650195000063 ], [ -124.808793782999956, 49.256160604000087 ], [ -124.808853896999921, 49.256136941000072 ], [ -124.808911695999981, 49.256114201000067 ], [ -124.809695521, 49.255826361000082 ], [ -124.810165682999965, 49.255653696000124 ], [ -124.81166848, 49.255230737000026 ], [ -124.811747128999954, 49.255338944000087 ], [ -124.811937120999957, 49.255600342000065 ], [ -124.811948320999946, 49.255615698000028 ], [ -124.811970554999974, 49.255642744000042 ], [ -124.81219246699996, 49.25591239200002 ], [ -124.812519405999979, 49.256309683000033 ], [ -124.812781391999962, 49.256598600000075 ], [ -124.813567401999961, 49.257465285000109 ], [ -124.813648948999955, 49.257537751000029 ], [ -124.81385985699994, 49.257725141000037 ], [ -124.813893546999907, 49.25775510800009 ], [ -124.813768037999949, 49.257832056000055 ], [ -124.81401698800002, 49.258995039000112 ], [ -124.814036368999922, 49.259086996000079 ], [ -124.814047587999951, 49.259140291000037 ], [ -124.813519327999956, 49.259345117000038 ], [ -124.813769701, 49.259742566000114 ], [ -124.813993318000016, 49.260097752000064 ], [ -124.814004991999951, 49.260116249000077 ], [ -124.814934888, 49.26159300400009 ], [ -124.815003373999957, 49.261706190000055 ], [ -124.815001446999972, 49.261919463000083 ], [ -124.814991680999952, 49.262971695000061 ], [ -124.814990395999956, 49.263089831000087 ], [ -124.814986508999965, 49.263444198000066 ], [ -124.81498308499998, 49.263735787000037 ], [ -124.814981802999924, 49.26388124300005 ], [ -124.814974204999928, 49.264731190000077 ], [ -124.814966316999943, 49.265393524000061 ], [ -124.81496460399994, 49.265537603000062 ], [ -124.81432291899992, 49.265538681000073 ], [ -124.813540787999955, 49.265540008000123 ], [ -124.812769534999958, 49.265541981000069 ], [ -124.81201271099998, 49.265543893000093 ], [ -124.812050138999922, 49.264333279000041 ], [ -124.81205096399998, 49.264306333000022 ], [ -124.812054396999912, 49.264195536000067 ], [ -124.812068292999982, 49.263746106000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217730061", "BldgCostT": "144098190", "sL_LossRatio": "0.880566549384881", "sL_AssetLoss": "233540.1", "sL_BldgLoss": "205647.6", "sL_StrLoss": "139810.1", "sL_NStrLoss": "65837.5", "sL_ContLoss": "27892.5", "geom_point": "0101000020E610000095D86275B3335FC09C8104A481A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.804541635999982, 49.262004409000042 ], [ -124.804589610999955, 49.260954104000085 ], [ -124.804974255999966, 49.260799704000121 ], [ -124.805811613999978, 49.260463590000079 ], [ -124.805263312999926, 49.259847206000096 ], [ -124.805159711999949, 49.259658002000059 ], [ -124.805117132999939, 49.259445807000084 ], [ -124.805052691999919, 49.259124801000077 ], [ -124.80541415299993, 49.259104674000092 ], [ -124.805884248999988, 49.259078487000124 ], [ -124.806225321999975, 49.259059507000103 ], [ -124.80699832599997, 49.258464006000075 ], [ -124.807320004999951, 49.258336204000095 ], [ -124.808341007999957, 49.259469907000067 ], [ -124.809503786999983, 49.260751012000121 ], [ -124.809609327999951, 49.26086559000008 ], [ -124.810323614999945, 49.261652099000123 ], [ -124.810906990999968, 49.261654004000015 ], [ -124.811429477, 49.261655885000096 ], [ -124.812128577999928, 49.261658401000027 ], [ -124.812068292999982, 49.263746106000085 ], [ -124.811424971999926, 49.263749412 ], [ -124.811260085999947, 49.263750256 ], [ -124.811149787999938, 49.263750839000096 ], [ -124.810843606999981, 49.263752400000108 ], [ -124.810187282999905, 49.263755101000115 ], [ -124.809617508000017, 49.263756898000032 ], [ -124.809020563999965, 49.263759174000036 ], [ -124.808406603000023, 49.263761485000018 ], [ -124.80637729299994, 49.263768791000061 ], [ -124.805268455999936, 49.26377686600005 ], [ -124.805076090999933, 49.263778237000032 ], [ -124.805072678000016, 49.26377826600001 ], [ -124.80482915099995, 49.263780037000103 ], [ -124.804461798999924, 49.263782691000067 ], [ -124.80448556399989, 49.263245588000053 ], [ -124.804486379999958, 49.263227614000058 ], [ -124.804504528999971, 49.262818302000056 ], [ -124.804541635999982, 49.262004409000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122234917", "BldgCostT": "81351667", "sL_LossRatio": "0.951161462724931", "sL_AssetLoss": "154615.81", "sL_BldgLoss": "147064.6", "sL_StrLoss": "118053.6", "sL_NStrLoss": "29011", "sL_ContLoss": "7551.21", "geom_point": "0101000020E6100000D1BB8821BF335FC09614C4E51DA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.804256357000014, 49.268609873000109 ], [ -124.804285405999963, 49.267838335000121 ], [ -124.804319804999949, 49.26695319400006 ], [ -124.804353952999989, 49.266190533000042 ], [ -124.804358590999968, 49.266086812 ], [ -124.804362395999988, 49.265938859000158 ], [ -124.804379616999967, 49.265269703000108 ], [ -124.801743978999966, 49.265256691000033 ], [ -124.80176790299997, 49.264437815000107 ], [ -124.803738585999923, 49.264458395000041 ], [ -124.804430495999981, 49.264465588000043 ], [ -124.804461798999924, 49.263782691000067 ], [ -124.80482915099995, 49.263780037000103 ], [ -124.805072678000016, 49.26377826600001 ], [ -124.805076090999933, 49.263778237000032 ], [ -124.805268455999936, 49.26377686600005 ], [ -124.80637729299994, 49.263768791000061 ], [ -124.808406603000023, 49.263761485000018 ], [ -124.809020563999965, 49.263759174000036 ], [ -124.809617508000017, 49.263756898000032 ], [ -124.810187282999905, 49.263755101000115 ], [ -124.810843606999981, 49.263752400000108 ], [ -124.811149787999938, 49.263750839000096 ], [ -124.811260085999947, 49.263750256 ], [ -124.811424971999926, 49.263749412 ], [ -124.812068292999982, 49.263746106000085 ], [ -124.812054396999912, 49.264195536000067 ], [ -124.81205096399998, 49.264306333000022 ], [ -124.812050138999922, 49.264333279000041 ], [ -124.81201271099998, 49.265543893000093 ], [ -124.812769534999958, 49.265541981000069 ], [ -124.813540787999955, 49.265540008000123 ], [ -124.813530294999964, 49.265991672000098 ], [ -124.81351332899996, 49.266723335000023 ], [ -124.813680923000021, 49.266718937000064 ], [ -124.813669400999984, 49.267168796000107 ], [ -124.813504720999944, 49.26716698700006 ], [ -124.813501470999938, 49.26729476600012 ], [ -124.813493635, 49.267521521000113 ], [ -124.813474038999956, 49.268088587000115 ], [ -124.813468335999971, 49.268253334000121 ], [ -124.813458159999968, 49.268547473000069 ], [ -124.813453888999931, 49.268671431000058 ], [ -124.813501618999965, 49.268899664000109 ], [ -124.813739802999976, 49.269142623000114 ], [ -124.813623380999942, 49.269235916000056 ], [ -124.813450399999965, 49.269292520000064 ], [ -124.81296179, 49.269336619000121 ], [ -124.812885413999979, 49.26933659500002 ], [ -124.812375600999957, 49.269336502000087 ], [ -124.810421146999929, 49.269361548000091 ], [ -124.808937190999956, 49.269380579000085 ], [ -124.808901617999965, 49.269381026000083 ], [ -124.808591917999962, 49.269384973000108 ], [ -124.808488724999989, 49.269386302000036 ], [ -124.80738579899996, 49.269398505000012 ], [ -124.806092075, 49.269413902000089 ], [ -124.80539337, 49.269135356000042 ], [ -124.804366916999953, 49.268725699000136 ], [ -124.804252217999945, 49.268679932000111 ], [ -124.804256357000014, 49.268609873000109 ] ], [ [ -124.811821600999949, 49.2680160580001 ], [ -124.811813745999984, 49.267801594000069 ], [ -124.810165075999976, 49.267827443000087 ], [ -124.810145333999984, 49.267288002000015 ], [ -124.809321007999969, 49.267300916000075 ], [ -124.809304128999912, 49.266839473000132 ], [ -124.809155345999912, 49.266763760000089 ], [ -124.808889117999911, 49.26676792900011 ], [ -124.80888391199997, 49.266625630000078 ], [ -124.808723041999897, 49.266543763000087 ], [ -124.808597933999977, 49.266502613000078 ], [ -124.808054938999931, 49.266511114000146 ], [ -124.808048016999948, 49.266321732000137 ], [ -124.808020141999961, 49.266312563000085 ], [ -124.807496721999925, 49.266249975000051 ], [ -124.806808614999909, 49.266260741000089 ], [ -124.806818467999904, 49.266530463000052 ], [ -124.805994151999968, 49.266543354000042 ], [ -124.806017030999968, 49.267169987000059 ], [ -124.809201636999902, 49.267205158000138 ], [ -124.809181438999971, 49.267992259000025 ], [ -124.809266121999968, 49.267993193000073 ], [ -124.809266257, 49.267987907000055 ], [ -124.811821600999949, 49.2680160580001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133949751", "BldgCostT": "90905001", "sL_LossRatio": "0.955554919668927", "sL_AssetLoss": "185567.67", "sL_BldgLoss": "177320.1", "sL_StrLoss": "144618.7", "sL_NStrLoss": "32701.4", "sL_ContLoss": "8247.57", "geom_point": "0101000020E6100000A5ABE8CD30335FC058FF083FC8A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.80024453, 49.261815058000124 ], [ -124.800638126, 49.261299180000094 ], [ -124.800777273000023, 49.261226914000041 ], [ -124.801963266999934, 49.260857530000045 ], [ -124.802260395999895, 49.261198859000103 ], [ -124.802687231999926, 49.261689148000066 ], [ -124.804101300999918, 49.261142775000046 ], [ -124.804129724999953, 49.261131791000032 ], [ -124.804589610999955, 49.260954104000085 ], [ -124.804541635999982, 49.262004409000042 ], [ -124.804504528999971, 49.262818302000056 ], [ -124.804486379999958, 49.263227614000058 ], [ -124.80448556399989, 49.263245588000053 ], [ -124.804461798999924, 49.263782691000067 ], [ -124.804430495999981, 49.264465588000043 ], [ -124.803738585999923, 49.264458395000041 ], [ -124.80176790299997, 49.264437815000107 ], [ -124.801743978999966, 49.265256691000033 ], [ -124.801695301, 49.266079709000067 ], [ -124.799993871999973, 49.266076099000024 ], [ -124.79928870000002, 49.266074606000053 ], [ -124.798631310999909, 49.266072878000038 ], [ -124.796526602999961, 49.266067315000029 ], [ -124.794714493999948, 49.266062396000052 ], [ -124.794233212999984, 49.265986806000079 ], [ -124.794246905999955, 49.265563891000106 ], [ -124.794248302999975, 49.265510722000101 ], [ -124.794251881999983, 49.265371302000069 ], [ -124.79426299, 49.265051896000067 ], [ -124.794264638999934, 49.264817811000071 ], [ -124.794269091, 49.264181505000124 ], [ -124.794876416999927, 49.264014816000035 ], [ -124.794909627999985, 49.264005693000058 ], [ -124.796831206999926, 49.263478291000069 ], [ -124.799416915, 49.26276449900007 ], [ -124.799425139999968, 49.262627010000102 ], [ -124.799426583999931, 49.262602589000089 ], [ -124.79967505299993, 49.262340176000109 ], [ -124.799854204999932, 49.262150985000105 ], [ -124.80000144899995, 49.262024266000019 ], [ -124.800024826999959, 49.262004156000067 ], [ -124.80024453, 49.261815058000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170920311", "BldgCostT": "112568190", "sL_LossRatio": "0.933827097471178", "sL_AssetLoss": "202161.3", "sL_BldgLoss": "188783.7", "sL_StrLoss": "153547.9", "sL_NStrLoss": "35235.8", "sL_ContLoss": "13377.6", "geom_point": "0101000020E6100000ACF0EBB017335FC0B5BB419348A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.794012397999936, 49.269570391000059 ], [ -124.794084219999945, 49.269340695000061 ], [ -124.794122569999914, 49.269101070000076 ], [ -124.794153102999957, 49.268910409000071 ], [ -124.794152813999943, 49.268741856000112 ], [ -124.794152705999963, 49.268659209000063 ], [ -124.79152342899999, 49.268662204000101 ], [ -124.7915147, 49.268207195000052 ], [ -124.791506, 49.26775019300004 ], [ -124.791496500999969, 49.26731696100007 ], [ -124.79148589899998, 49.266833709000075 ], [ -124.791476152999905, 49.266390684000086 ], [ -124.791466421999985, 49.265945907000038 ], [ -124.79395291499999, 49.265943089000054 ], [ -124.794233212999984, 49.265986806000079 ], [ -124.794714493999948, 49.266062396000052 ], [ -124.796526602999961, 49.266067315000029 ], [ -124.798631310999909, 49.266072878000038 ], [ -124.79928870000002, 49.266074606000053 ], [ -124.799993871999973, 49.266076099000024 ], [ -124.801695301, 49.266079709000067 ], [ -124.801743978999966, 49.265256691000033 ], [ -124.804379616999967, 49.265269703000108 ], [ -124.804362395999988, 49.265938859000158 ], [ -124.804358590999968, 49.266086812 ], [ -124.804353952999989, 49.266190533000042 ], [ -124.804319804999949, 49.26695319400006 ], [ -124.804285405999963, 49.267838335000121 ], [ -124.804256357000014, 49.268609873000109 ], [ -124.804252217999945, 49.268679932000111 ], [ -124.804366916999953, 49.268725699000136 ], [ -124.80539337, 49.269135356000042 ], [ -124.806092075, 49.269413902000089 ], [ -124.805188026999957, 49.269425041000076 ], [ -124.802475773999959, 49.269458390000104 ], [ -124.802132053999927, 49.269539102000074 ], [ -124.80099288, 49.26960416400005 ], [ -124.799976889999968, 49.269509887000012 ], [ -124.80009350399996, 49.269623695000078 ], [ -124.800094312999974, 49.269675128000124 ], [ -124.80010409499999, 49.270274595000089 ], [ -124.80000631899999, 49.270274399000165 ], [ -124.79716179699993, 49.270268 ], [ -124.793957583999941, 49.270249300000032 ], [ -124.793966273999928, 49.270013683000037 ], [ -124.793976423999965, 49.269737393000128 ], [ -124.794012397999936, 49.269570391000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142132833", "BldgCostT": "97023333", "sL_LossRatio": "0.961663431972057", "sL_AssetLoss": "174271.99", "sL_BldgLoss": "167591", "sL_StrLoss": "144839.8", "sL_NStrLoss": "22751.2", "sL_ContLoss": "6680.99", "geom_point": "0101000020E610000055A08AD9DA325FC07CCB0F3BD7A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.799976546, 49.274457363000067 ], [ -124.797120892999899, 49.274214952000094 ], [ -124.794096627999977, 49.274359750000023 ], [ -124.792725171999905, 49.274325388000129 ], [ -124.791669611999978, 49.27417193900007 ], [ -124.791698055, 49.273079682000059 ], [ -124.791797215999978, 49.273080792000037 ], [ -124.791783489999943, 49.272701930000032 ], [ -124.791371276999953, 49.272708324000035 ], [ -124.791381045999913, 49.272978047000038 ], [ -124.791236508999972, 49.272980289000081 ], [ -124.791067340999959, 49.273056664000087 ], [ -124.790972911, 49.273097059000087 ], [ -124.790978599, 49.273254163000054 ], [ -124.790591618999954, 49.273260162999982 ], [ -124.790233240999925, 49.273413464000107 ], [ -124.789935712999949, 49.273270329000098 ], [ -124.789741946999939, 49.273273332 ], [ -124.789738402999916, 49.273175407000103 ], [ -124.789392245999935, 49.273008875000109 ], [ -124.78890775499994, 49.273016378000136 ], [ -124.788917510999966, 49.273286102000057 ], [ -124.787771208, 49.273303851000058 ], [ -124.787763367999986, 49.273603985000179 ], [ -124.786338583999935, 49.273396788000042 ], [ -124.786322898999927, 49.273371794000077 ], [ -124.786264085999946, 49.273211677000049 ], [ -124.786215360999975, 49.273079110000047 ], [ -124.786159290999962, 49.272926405000092 ], [ -124.786120253999968, 49.27282014900009 ], [ -124.786111403999925, 49.272796103000061 ], [ -124.786077051999939, 49.272661289000048 ], [ -124.785990607999963, 49.272322100000075 ], [ -124.786082170999975, 49.270921694000037 ], [ -124.786737046999974, 49.270923909000096 ], [ -124.78757179199998, 49.270926702000153 ], [ -124.787371506999989, 49.27134030700006 ], [ -124.791284581999918, 49.271348193000087 ], [ -124.791376300999957, 49.271217275000097 ], [ -124.791470754999978, 49.271082380000074 ], [ -124.791489114999962, 49.271056184000095 ], [ -124.791498498999943, 49.271042802000068 ], [ -124.791523619999964, 49.270945429000022 ], [ -124.791536713999932, 49.270894678000083 ], [ -124.791544992999931, 49.27046721600005 ], [ -124.793950500999955, 49.270470704000019 ], [ -124.793957583999941, 49.270249300000032 ], [ -124.79716179699993, 49.270268 ], [ -124.80000631899999, 49.270274399000165 ], [ -124.80010409499999, 49.270274595000089 ], [ -124.800094312999974, 49.269675128000124 ], [ -124.80009350399996, 49.269623695000078 ], [ -124.799976889999968, 49.269509887000012 ], [ -124.80099288, 49.26960416400005 ], [ -124.801085698999927, 49.270091798000109 ], [ -124.801510263999944, 49.270689353000101 ], [ -124.80172419799996, 49.270990492000067 ], [ -124.801608912999967, 49.271629990000044 ], [ -124.801414876999928, 49.271924910000067 ], [ -124.801206786999941, 49.27224120200006 ], [ -124.801022396999954, 49.272521487000056 ], [ -124.800925674999974, 49.272798929000082 ], [ -124.799839659999947, 49.272862897000081 ], [ -124.799917005999944, 49.27389706100017 ], [ -124.799976546, 49.274457363000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127735167", "BldgCostT": "87146667", "sL_LossRatio": "0.911758958909308", "sL_AssetLoss": "212899.8", "sL_BldgLoss": "194113.3", "sL_StrLoss": "155286.3", "sL_NStrLoss": "38827", "sL_ContLoss": "18786.5", "geom_point": "0101000020E61000001E6A5F696E325FC0A135D4624FA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.787371506999989, 49.27134030700006 ], [ -124.78757179199998, 49.270926702000153 ], [ -124.786737046999974, 49.270923909000096 ], [ -124.786082170999975, 49.270921694000037 ], [ -124.785531052999886, 49.270880086000076 ], [ -124.785512644999983, 49.270370158000112 ], [ -124.785924838999932, 49.270363787000065 ], [ -124.785915098999965, 49.270094062000098 ], [ -124.786262064999931, 49.270088697000126 ], [ -124.786327291999982, 49.270087688000025 ], [ -124.786320488999948, 49.269899343000134 ], [ -124.786268845000023, 49.268469340000081 ], [ -124.786681022999943, 49.268462966000044 ], [ -124.786642052999952, 49.26738406800014 ], [ -124.785817712999929, 49.267396816 ], [ -124.785837188999906, 49.267936264000127 ], [ -124.785425014999973, 49.267942637000061 ], [ -124.785434751999958, 49.268212362000028 ], [ -124.785080028999928, 49.26821784400007 ], [ -124.785075978999942, 49.268372495000023 ], [ -124.784202954999941, 49.268362668000123 ], [ -124.784217679999983, 49.268770918000058 ], [ -124.783368833999972, 49.268784028000042 ], [ -124.783339700999946, 49.269895235000057 ], [ -124.782991688999971, 49.269891313000116 ], [ -124.782984801999959, 49.270153943000068 ], [ -124.782917496999943, 49.27015318400003 ], [ -124.782971948999929, 49.26845291500004 ], [ -124.780890990999978, 49.268712344000086 ], [ -124.780891963999977, 49.268733997000126 ], [ -124.779071608999956, 49.269001475000046 ], [ -124.779112207999901, 49.268849555000052 ], [ -124.77912809799993, 49.268790048000021 ], [ -124.779247926999986, 49.268732754000077 ], [ -124.779697047999932, 49.268346176000094 ], [ -124.780764103999928, 49.267427805000111 ], [ -124.780858116999966, 49.267276375000094 ], [ -124.780867300999901, 49.267261562000044 ], [ -124.780866181999897, 49.26703013300007 ], [ -124.780861502999983, 49.26607153600002 ], [ -124.782907120999965, 49.266131823000094 ], [ -124.783237598999989, 49.26614157500007 ], [ -124.783334967999934, 49.266144451000066 ], [ -124.783485997999961, 49.266144352000026 ], [ -124.783623132999935, 49.26609817700011 ], [ -124.785092788999947, 49.266125539000058 ], [ -124.786546762999961, 49.266018574 ], [ -124.787487329, 49.265909430000065 ], [ -124.788459925999959, 49.265729511000067 ], [ -124.788849353999964, 49.265642969000119 ], [ -124.789041082999987, 49.265661314000049 ], [ -124.791436949999962, 49.264969858000079 ], [ -124.792770665999939, 49.264598634000038 ], [ -124.794269091, 49.264181505000124 ], [ -124.794264638999934, 49.264817811000071 ], [ -124.79426299, 49.265051896000067 ], [ -124.794251881999983, 49.265371302000069 ], [ -124.794248302999975, 49.265510722000101 ], [ -124.794246905999955, 49.265563891000106 ], [ -124.794233212999984, 49.265986806000079 ], [ -124.79395291499999, 49.265943089000054 ], [ -124.791466421999985, 49.265945907000038 ], [ -124.791476152999905, 49.266390684000086 ], [ -124.79148589899998, 49.266833709000075 ], [ -124.791496500999969, 49.26731696100007 ], [ -124.791506, 49.26775019300004 ], [ -124.7915147, 49.268207195000052 ], [ -124.79152342899999, 49.268662204000101 ], [ -124.794152705999963, 49.268659209000063 ], [ -124.794152813999943, 49.268741856000112 ], [ -124.794153102999957, 49.268910409000071 ], [ -124.794122569999914, 49.269101070000076 ], [ -124.794084219999945, 49.269340695000061 ], [ -124.794012397999936, 49.269570391000059 ], [ -124.793976423999965, 49.269737393000128 ], [ -124.793966273999928, 49.270013683000037 ], [ -124.793957583999941, 49.270249300000032 ], [ -124.793950500999955, 49.270470704000019 ], [ -124.791544992999931, 49.27046721600005 ], [ -124.791536713999932, 49.270894678000083 ], [ -124.791523619999964, 49.270945429000022 ], [ -124.791498498999943, 49.271042802000068 ], [ -124.791489114999962, 49.271056184000095 ], [ -124.791470754999978, 49.271082380000074 ], [ -124.791376300999957, 49.271217275000097 ], [ -124.791284581999918, 49.271348193000087 ], [ -124.787371506999989, 49.27134030700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134493833", "BldgCostT": "88313333", "sL_LossRatio": "0.945127585230079", "sL_AssetLoss": "164213.914", "sL_BldgLoss": "155203.1", "sL_StrLoss": "128416.3", "sL_NStrLoss": "26786.8", "sL_ContLoss": "9010.814", "geom_point": "0101000020E61000006BE0C4468F325FC0DD78A854A6A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.787328692999935, 49.279792098000073 ], [ -124.787263613000022, 49.278253783000096 ], [ -124.784237103999928, 49.278215276000054 ], [ -124.783136902999942, 49.278201241000026 ], [ -124.783024289999943, 49.278199800000031 ], [ -124.782173459, 49.278213530000045 ], [ -124.781679282999946, 49.278221497000082 ], [ -124.780769960999976, 49.27821181000008 ], [ -124.78052137600001, 49.278209157000084 ], [ -124.780357438999914, 49.278207413000061 ], [ -124.780178699999979, 49.278205499000109 ], [ -124.77973838799997, 49.278189848000132 ], [ -124.779573103999937, 49.278183958000078 ], [ -124.779367830999945, 49.27817665400012 ], [ -124.77870887899995, 49.278153198000098 ], [ -124.778546122999941, 49.278147401000076 ], [ -124.778006002999931, 49.278162013000092 ], [ -124.77687180199996, 49.278208596000063 ], [ -124.775601518999949, 49.278221381000051 ], [ -124.774304498, 49.278234400000066 ], [ -124.774008269999982, 49.278193750000064 ], [ -124.773708713999952, 49.278152652000067 ], [ -124.773588792999973, 49.278136195000044 ], [ -124.772862268, 49.278132916000061 ], [ -124.772509658999965, 49.278131332000044 ], [ -124.77174817799991, 49.278127892000043 ], [ -124.771217504999953, 49.278125514000067 ], [ -124.771229701999943, 49.277613483000039 ], [ -124.77127869, 49.276694100000014 ], [ -124.771312704999971, 49.27577461000007 ], [ -124.77135071399999, 49.274910006000042 ], [ -124.771362799999977, 49.274451992000103 ], [ -124.77296635499999, 49.274466307000068 ], [ -124.773201101999973, 49.274468382000045 ], [ -124.774154311999936, 49.27443484200009 ], [ -124.768338846999967, 49.272599304000053 ], [ -124.769866834999931, 49.272593518000086 ], [ -124.771435908999976, 49.272587528000017 ], [ -124.774163033999955, 49.272577082000069 ], [ -124.775631983, 49.272571438000078 ], [ -124.775921956999952, 49.272570307000109 ], [ -124.776518026999952, 49.272561636000034 ], [ -124.776531528999925, 49.272937513000088 ], [ -124.776119310999931, 49.272943853000079 ], [ -124.776128997999976, 49.273213578000103 ], [ -124.775716777999946, 49.273219916000116 ], [ -124.775722331999972, 49.273374593000042 ], [ -124.77605217099989, 49.273378332000028 ], [ -124.776043014, 49.273725482000025 ], [ -124.776540573999952, 49.2737311200001 ], [ -124.776452433999935, 49.277073641000079 ], [ -124.778437855999982, 49.277096117000042 ], [ -124.778447263999951, 49.276738761000054 ], [ -124.783517177999954, 49.276795990000082 ], [ -124.783564164999973, 49.275003815000083 ], [ -124.782234460999931, 49.274988828000126 ], [ -124.782328921999948, 49.271389444000128 ], [ -124.785550753999942, 49.271425728000111 ], [ -124.785531052999886, 49.270880086000076 ], [ -124.786082170999975, 49.270921694000037 ], [ -124.785990607999963, 49.272322100000075 ], [ -124.786077051999939, 49.272661289000048 ], [ -124.786111403999925, 49.272796103000061 ], [ -124.786120253999968, 49.27282014900009 ], [ -124.786159290999962, 49.272926405000092 ], [ -124.786215360999975, 49.273079110000047 ], [ -124.786264085999946, 49.273211677000049 ], [ -124.786322898999927, 49.273371794000077 ], [ -124.786338583999935, 49.273396788000042 ], [ -124.787763367999986, 49.273603985000179 ], [ -124.78774175199996, 49.27443137900007 ], [ -124.789071439999987, 49.274446298000065 ], [ -124.789028692999963, 49.276084164000089 ], [ -124.791619055999917, 49.276113181000078 ], [ -124.791669611999978, 49.27417193900007 ], [ -124.792725171999905, 49.274325388000129 ], [ -124.794096627999977, 49.274359750000023 ], [ -124.797120892999899, 49.274214952000094 ], [ -124.799976546, 49.274457363000067 ], [ -124.799658602999926, 49.274702 ], [ -124.799895595999928, 49.275156301000052 ], [ -124.800593111999959, 49.275407008000045 ], [ -124.800747627999939, 49.275544849000063 ], [ -124.80098908799998, 49.275760210000065 ], [ -124.800994384999925, 49.275868397000075 ], [ -124.800990270999989, 49.275873127000104 ], [ -124.802451116999976, 49.276425894000027 ], [ -124.802464603999951, 49.278402493000094 ], [ -124.800470029999957, 49.278380357000032 ], [ -124.80045558, 49.27893929500005 ], [ -124.801311043999988, 49.278948793000055 ], [ -124.801218040999956, 49.282548152000047 ], [ -124.800978404999952, 49.282545493000036 ], [ -124.800944707, 49.283849256000074 ], [ -124.800597320999913, 49.283845399000022 ], [ -124.800575540999887, 49.284687763000058 ], [ -124.800095390999957, 49.284682431000078 ], [ -124.800076363999949, 49.285417973000094 ], [ -124.79961929299999, 49.285412895000029 ], [ -124.799569220999928, 49.287347760000095 ], [ -124.79753986299994, 49.286714151000034 ], [ -124.797379351, 49.286664026000039 ], [ -124.796275920999932, 49.286319506000041 ], [ -124.795382101999905, 49.285993080000083 ], [ -124.794354336999959, 49.285617698000088 ], [ -124.791738385999935, 49.284662206000093 ], [ -124.791286165999935, 49.284517419000096 ], [ -124.790618245999894, 49.284303612000024 ], [ -124.789116384999929, 49.283822795000077 ], [ -124.789133673999942, 49.283693535000054 ], [ -124.789161471999975, 49.283485754000068 ], [ -124.78919309299999, 49.283249411000078 ], [ -124.789165500999928, 49.282572202000068 ], [ -124.7887662099999, 49.282537977000118 ], [ -124.788166494999984, 49.282486572000032 ], [ -124.787956918999939, 49.282468600000087 ], [ -124.787706985999947, 49.282410908 ], [ -124.7875250969999, 49.28233050700004 ], [ -124.787411824999978, 49.282231384000099 ], [ -124.787353207999971, 49.282180090000075 ], [ -124.787265188999925, 49.281973900000082 ], [ -124.787233217999955, 49.281451723000075 ], [ -124.787199116999929, 49.280894974000034 ], [ -124.787196377999976, 49.280850035000093 ], [ -124.78719299, 49.280794891000035 ], [ -124.787178194999939, 49.280573297000068 ], [ -124.787226689999912, 49.280454110000029 ], [ -124.787333176999965, 49.279898091000092 ], [ -124.787328692999935, 49.279792098000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11281084", "BldgCostT": "7308334", "sL_LossRatio": "0.942050770153564", "sL_AssetLoss": "12500.494", "sL_BldgLoss": "11776.1", "sL_StrLoss": "9211.8", "sL_NStrLoss": "2564.3", "sL_ContLoss": "724.394", "geom_point": "0101000020E6100000DAE1E974E4315FC0C1C2CDD263A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.77773933899999, 49.269373182000059 ], [ -124.777368309999957, 49.268020404000048 ], [ -124.777268101999937, 49.267498089000064 ], [ -124.777277847000022, 49.26691612400009 ], [ -124.777280213999944, 49.266775401000118 ], [ -124.7773598199999, 49.266544954000018 ], [ -124.777362779999919, 49.266544562000064 ], [ -124.778409941999939, 49.266406114000034 ], [ -124.778990312999966, 49.266329404000047 ], [ -124.779517218, 49.26625677300013 ], [ -124.780861502999983, 49.26607153600002 ], [ -124.780866181999897, 49.26703013300007 ], [ -124.780867300999901, 49.267261562000044 ], [ -124.780858116999966, 49.267276375000094 ], [ -124.780764103999928, 49.267427805000111 ], [ -124.779697047999932, 49.268346176000094 ], [ -124.779247926999986, 49.268732754000077 ], [ -124.77912809799993, 49.268790048000021 ], [ -124.779112207999901, 49.268849555000052 ], [ -124.779071608999956, 49.269001475000046 ], [ -124.780891963999977, 49.268733997000126 ], [ -124.780890990999978, 49.268712344000086 ], [ -124.782971948999929, 49.26845291500004 ], [ -124.782917496999943, 49.27015318400003 ], [ -124.78106862599995, 49.270132328000095 ], [ -124.781061140999938, 49.270417290000047 ], [ -124.778914677999964, 49.270393037000105 ], [ -124.778917515999979, 49.270471918000069 ], [ -124.778505318999976, 49.270478264000076 ], [ -124.778524027999964, 49.270998539000111 ], [ -124.77852471700001, 49.271017716000095 ], [ -124.778116809, 49.271023996000054 ], [ -124.778112514999961, 49.271024062000023 ], [ -124.77811252399998, 49.271024265000122 ], [ -124.778122212, 49.271293788000101 ], [ -124.777710007999957, 49.271300133000054 ], [ -124.777729399999942, 49.271839584000105 ], [ -124.77740723099997, 49.271844542000061 ], [ -124.77742418299998, 49.271067305000074 ], [ -124.777433408999968, 49.270901921000053 ], [ -124.77773933899999, 49.269373182000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130768918", "BldgCostT": "87446668", "sL_LossRatio": "0.934961622941643", "sL_AssetLoss": "135039.532", "sL_BldgLoss": "126256.78", "sL_StrLoss": "105547.9", "sL_NStrLoss": "20708.88", "sL_ContLoss": "8782.752", "geom_point": "0101000020E6100000C394BCF82A345FC04B4E168C04A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.81724251899999, 49.276890483000074 ], [ -124.816880124999926, 49.276842864000074 ], [ -124.816218809999924, 49.276755923000046 ], [ -124.81565802599999, 49.276668818000125 ], [ -124.814769873999964, 49.276656301000124 ], [ -124.814432412999949, 49.276589609000069 ], [ -124.814261581999986, 49.276502196000052 ], [ -124.81178549900001, 49.27602500400014 ], [ -124.810236685999939, 49.27644900700011 ], [ -124.809143190999961, 49.276299910000034 ], [ -124.807612668999951, 49.276067755000064 ], [ -124.806179262999962, 49.276041379000091 ], [ -124.803062296999911, 49.276396311000092 ], [ -124.802451116999976, 49.276425894000027 ], [ -124.800990270999989, 49.275873127000104 ], [ -124.800994384999925, 49.275868397000075 ], [ -124.80098908799998, 49.275760210000065 ], [ -124.800747627999939, 49.275544849000063 ], [ -124.800593111999959, 49.275407008000045 ], [ -124.799895595999928, 49.275156301000052 ], [ -124.799658602999926, 49.274702 ], [ -124.799976546, 49.274457363000067 ], [ -124.799917005999944, 49.27389706100017 ], [ -124.799839659999947, 49.272862897000081 ], [ -124.800925674999974, 49.272798929000082 ], [ -124.801022396999954, 49.272521487000056 ], [ -124.801206786999941, 49.27224120200006 ], [ -124.801414876999928, 49.271924910000067 ], [ -124.801608912999967, 49.271629990000044 ], [ -124.80172419799996, 49.270990492000067 ], [ -124.801510263999944, 49.270689353000101 ], [ -124.801085698999927, 49.270091798000109 ], [ -124.80099288, 49.26960416400005 ], [ -124.802132053999927, 49.269539102000074 ], [ -124.802475773999959, 49.269458390000104 ], [ -124.805188026999957, 49.269425041000076 ], [ -124.806092075, 49.269413902000089 ], [ -124.80738579899996, 49.269398505000012 ], [ -124.808488724999989, 49.269386302000036 ], [ -124.808591917999962, 49.269384973000108 ], [ -124.808901617999965, 49.269381026000083 ], [ -124.808937190999956, 49.269380579000085 ], [ -124.810421146999929, 49.269361548000091 ], [ -124.812375600999957, 49.269336502000087 ], [ -124.812885413999979, 49.26933659500002 ], [ -124.81296179, 49.269336619000121 ], [ -124.813450399999965, 49.269292520000064 ], [ -124.813623380999942, 49.269235916000056 ], [ -124.813739802999976, 49.269142623000114 ], [ -124.813918302999937, 49.269248120000064 ], [ -124.813987093999984, 49.269264054000111 ], [ -124.814215903999951, 49.269317105000034 ], [ -124.814736198999952, 49.269334206000089 ], [ -124.814912816999978, 49.269340000000113 ], [ -124.814893016999974, 49.270653997000039 ], [ -124.815513395999957, 49.270659884000075 ], [ -124.817124938999939, 49.270597981000073 ], [ -124.81714682099998, 49.271218693000044 ], [ -124.817178210999913, 49.272110674000061 ], [ -124.818199669999927, 49.272105768000138 ], [ -124.819815177999956, 49.272098011 ], [ -124.819864335999966, 49.273230564000073 ], [ -124.820018776, 49.27523515900004 ], [ -124.820847259999979, 49.275182812000025 ], [ -124.820846785999933, 49.275177749000079 ], [ -124.82266985499993, 49.275124306000109 ], [ -124.822670658000021, 49.27468150300006 ], [ -124.822670195999947, 49.27364839100008 ], [ -124.825685731999954, 49.273636220000142 ], [ -124.82560120699992, 49.269464920000104 ], [ -124.826303820999954, 49.269480252000051 ], [ -124.826927970999975, 49.269493891000074 ], [ -124.828305739999976, 49.270692851000071 ], [ -124.828445697999925, 49.270790752000039 ], [ -124.828170510999911, 49.270753905000063 ], [ -124.828174172, 49.270934217000082 ], [ -124.828220711999975, 49.273225194000112 ], [ -124.829785253999972, 49.273213565000049 ], [ -124.829753939999975, 49.272665782000075 ], [ -124.830367639999963, 49.272643055000124 ], [ -124.830463703999925, 49.272724888000049 ], [ -124.831026515999937, 49.273204295000063 ], [ -124.831475451999893, 49.273205560000129 ], [ -124.832141604999961, 49.273777971000072 ], [ -124.833200836999936, 49.274687970000073 ], [ -124.835601928999921, 49.276750607000068 ], [ -124.833964893999976, 49.276759103000089 ], [ -124.832722397999959, 49.276774072000094 ], [ -124.831089798, 49.276793684000054 ], [ -124.82892568799997, 49.276819782000139 ], [ -124.82826010299999, 49.276827789 ], [ -124.827798230999989, 49.27683081800005 ], [ -124.825819602999971, 49.276843780000057 ], [ -124.825022081999947, 49.276848967000085 ], [ -124.822670204999923, 49.276864295000117 ], [ -124.821194709999986, 49.276888697000096 ], [ -124.820316783999928, 49.276887038000083 ], [ -124.819476777999938, 49.276873123000058 ], [ -124.819472185999928, 49.27687335500007 ], [ -124.818934090999974, 49.27690180700008 ], [ -124.81724251899999, 49.276890483000074 ] ], [ [ -124.806171653999954, 49.272805470000037 ], [ -124.806174697999936, 49.272687150000124 ], [ -124.804310188999978, 49.272666521000069 ], [ -124.804290847999965, 49.273417053000074 ], [ -124.804644754999956, 49.273420971000093 ], [ -124.804658853999939, 49.272873605000044 ], [ -124.80552354199996, 49.272883173000082 ], [ -124.805525724999967, 49.272798327000039 ], [ -124.806171653999954, 49.272805470000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122120167", "BldgCostT": "82251667", "sL_LossRatio": "0.927616551481297", "sL_AssetLoss": "149971.882", "sL_BldgLoss": "139116.4", "sL_StrLoss": "115552.4", "sL_NStrLoss": "23564", "sL_ContLoss": "10855.482", "geom_point": "0101000020E61000005C0F046D97325FC0EBB0888295A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.795653994999924, 49.30286930000004 ], [ -124.795654297999974, 49.302857674000123 ], [ -124.793652920999975, 49.302835349000105 ], [ -124.793746551999973, 49.299236106000059 ], [ -124.796018711999963, 49.299261449000042 ], [ -124.796020966999947, 49.299174613000069 ], [ -124.791926877999956, 49.29912891400005 ], [ -124.792020633999982, 49.295529653000095 ], [ -124.795423564999936, 49.295567647000105 ], [ -124.795458181999919, 49.294234851000098 ], [ -124.795452477999973, 49.294234941000049 ], [ -124.795393683, 49.292616608000074 ], [ -124.795500252999915, 49.29261495300004 ], [ -124.795501369999926, 49.292571931000055 ], [ -124.796653038999963, 49.292584765000107 ], [ -124.796660961999962, 49.292279423000124 ], [ -124.796591867999922, 49.292278654000043 ], [ -124.796618603999889, 49.291248192000047 ], [ -124.796169422999952, 49.291255178000014 ], [ -124.796189028999962, 49.291794621000037 ], [ -124.79495191599996, 49.291813850000047 ], [ -124.794937187999921, 49.291408302000036 ], [ -124.794909470999968, 49.292475082000102 ], [ -124.791532412999942, 49.292437359000104 ], [ -124.791477655, 49.294538864000089 ], [ -124.79144167699999, 49.294538461000059 ], [ -124.791431275999969, 49.29493756400008 ], [ -124.790773098999935, 49.294930199000135 ], [ -124.790772749999988, 49.294943580000087 ], [ -124.789288175999971, 49.294926953000108 ], [ -124.789354495999959, 49.296758422000089 ], [ -124.788942080999959, 49.29676481000007 ], [ -124.788951845999961, 49.29703453200009 ], [ -124.788909242999935, 49.297035192000052 ], [ -124.788827976999983, 49.300146814000094 ], [ -124.784416515999965, 49.30009727500002 ], [ -124.78440462599994, 49.300550824000013 ], [ -124.779999044999983, 49.300501170000068 ], [ -124.779297688999947, 49.300209775000063 ], [ -124.77929708399995, 49.300209496000029 ], [ -124.778922422000022, 49.300036134000059 ], [ -124.778936159999958, 49.299514428000059 ], [ -124.777766378999956, 49.299501203 ], [ -124.777313978999956, 49.299291856000117 ], [ -124.77670992899999, 49.299065286000065 ], [ -124.776711756999973, 49.298995994000052 ], [ -124.776519389999947, 49.298993816000042 ], [ -124.776345847999949, 49.298928722000085 ], [ -124.776273737999972, 49.298909593000054 ], [ -124.776281026999982, 49.298633364000125 ], [ -124.775665887999963, 49.298626395000035 ], [ -124.775686141999969, 49.29785927500005 ], [ -124.774989608999974, 49.29785138000004 ], [ -124.775009067, 49.297114770000043 ], [ -124.773870310999939, 49.297101853000136 ], [ -124.773896676999954, 49.2961046060001 ], [ -124.77392064699994, 49.295197951000048 ], [ -124.771918253999957, 49.295175208000103 ], [ -124.771931722999952, 49.294666524000014 ], [ -124.771799791999953, 49.294665025 ], [ -124.771593163999924, 49.292390326000046 ], [ -124.77096121299995, 49.292312663000068 ], [ -124.770994525999939, 49.291055515000025 ], [ -124.771544230999922, 49.291061766000041 ], [ -124.771559366999966, 49.290490335000136 ], [ -124.77157216399992, 49.29000712600002 ], [ -124.776321761999938, 49.290061033000057 ], [ -124.77625935499999, 49.288324545000137 ], [ -124.777496394999929, 49.28830551600003 ], [ -124.777554592999934, 49.289923866000102 ], [ -124.781265821999938, 49.289866700000033 ], [ -124.7812561, 49.289596975000102 ], [ -124.781668455999949, 49.289590616000019 ], [ -124.781619842999945, 49.28824199500005 ], [ -124.78203218799996, 49.288235635000042 ], [ -124.781973842999946, 49.286617288000109 ], [ -124.782386173999953, 49.286610928000066 ], [ -124.782366722999967, 49.286071479000036 ], [ -124.78030509099996, 49.286103270000105 ], [ -124.780282081999943, 49.285464401000112 ], [ -124.780972789, 49.285458409000093 ], [ -124.781798992999967, 49.285432697000012 ], [ -124.782638719999966, 49.285415140000069 ], [ -124.7838486799999, 49.285389828000092 ], [ -124.785374540999939, 49.285357891000089 ], [ -124.78635729299999, 49.285337315000113 ], [ -124.786613079999952, 49.285272596000084 ], [ -124.787007097999933, 49.28517349600002 ], [ -124.787160280999942, 49.285093391000046 ], [ -124.787219587999971, 49.285033717000033 ], [ -124.787275612999949, 49.284728299000101 ], [ -124.787269997999914, 49.284469900000026 ], [ -124.787255859999931, 49.283476059000108 ], [ -124.787245813999959, 49.282768501000064 ], [ -124.787281518999947, 49.282572813000044 ], [ -124.787353207999971, 49.282180090000075 ], [ -124.787411824999978, 49.282231384000099 ], [ -124.7875250969999, 49.28233050700004 ], [ -124.787706985999947, 49.282410908 ], [ -124.787956918999939, 49.282468600000087 ], [ -124.788166494999984, 49.282486572000032 ], [ -124.7887662099999, 49.282537977000118 ], [ -124.789165500999928, 49.282572202000068 ], [ -124.78919309299999, 49.283249411000078 ], [ -124.789161471999975, 49.283485754000068 ], [ -124.789133673999942, 49.283693535000054 ], [ -124.789116384999929, 49.283822795000077 ], [ -124.790618245999894, 49.284303612000024 ], [ -124.791286165999935, 49.284517419000096 ], [ -124.791738385999935, 49.284662206000093 ], [ -124.794354336999959, 49.285617698000088 ], [ -124.795382101999905, 49.285993080000083 ], [ -124.796275920999932, 49.286319506000041 ], [ -124.797379351, 49.286664026000039 ], [ -124.79753986299994, 49.286714151000034 ], [ -124.799569220999928, 49.287347760000095 ], [ -124.799567246999985, 49.287424051000052 ], [ -124.79980187399994, 49.287420396000044 ], [ -124.799998441999918, 49.287481764000049 ], [ -124.800281679999912, 49.287570187000064 ], [ -124.800994299999928, 49.287788783000053 ], [ -124.801019518999965, 49.288480917000136 ], [ -124.800607176999961, 49.288487344000067 ], [ -124.800615762999897, 49.28872306300012 ], [ -124.80217800099993, 49.288740397000097 ], [ -124.802157856999926, 49.289520432000089 ], [ -124.802226945999962, 49.289521198000031 ], [ -124.802203946999981, 49.290411812000023 ], [ -124.802618079999931, 49.290416403000052 ], [ -124.802603536999982, 49.292059813000037 ], [ -124.802605993999947, 49.292929741000137 ], [ -124.800194373999929, 49.293376297000108 ], [ -124.800181875999954, 49.294208953000094 ], [ -124.804738923999949, 49.293325296000056 ], [ -124.80501478799998, 49.29338408900005 ], [ -124.807080990999921, 49.293326898000011 ], [ -124.808119995000013, 49.29336080700002 ], [ -124.808148549999942, 49.293356234000107 ], [ -124.808320115, 49.293328796000068 ], [ -124.809740507, 49.292847608000031 ], [ -124.811158813999967, 49.292714689000036 ], [ -124.81121841, 49.29333649200008 ], [ -124.811132907999962, 49.293565004000094 ], [ -124.811582236, 49.296769120000057 ], [ -124.808445639999903, 49.297001262000052 ], [ -124.808484688999954, 49.298036764000138 ], [ -124.805686770999927, 49.298250472000056 ], [ -124.805685706999967, 49.298700182000076 ], [ -124.805685732999933, 49.298713461000084 ], [ -124.80568622499996, 49.299143084000121 ], [ -124.805687226, 49.30000276700008 ], [ -124.805687902999949, 49.30058769700004 ], [ -124.802100453999941, 49.300576905000064 ], [ -124.801261142999948, 49.30057435500008 ], [ -124.80022420399996, 49.30057120900009 ], [ -124.800189528999937, 49.302919756000023 ], [ -124.795653994999924, 49.30286930000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7992583", "BldgCostT": "5248333", "sL_LossRatio": "0.954061960279863", "sL_AssetLoss": "12251.72", "sL_BldgLoss": "11688.9", "sL_StrLoss": "9898.3", "sL_NStrLoss": "1790.6", "sL_ContLoss": "562.82", "geom_point": "0101000020E6100000837BE9160F315FC03979575EEE9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.764457619999945, 49.212850834000044 ], [ -124.764476222000013, 49.212151280000029 ], [ -124.76273289699995, 49.212131291000084 ], [ -124.762788367999974, 49.210047978 ], [ -124.762828739999946, 49.208531581000038 ], [ -124.764133591999951, 49.208546546000036 ], [ -124.764139944999954, 49.208307660000138 ], [ -124.764411601999981, 49.208108794000069 ], [ -124.765021683999976, 49.207910895000047 ], [ -124.765640589999975, 49.207919397000126 ], [ -124.766112699999951, 49.208083188000046 ], [ -124.766704904999983, 49.208137311000058 ], [ -124.76739431799993, 49.207856696000093 ], [ -124.767517258999973, 49.207737286000032 ], [ -124.769639272999953, 49.207761521000101 ], [ -124.769598305999978, 49.209308814000082 ], [ -124.770036650999941, 49.209313815000087 ], [ -124.769988747999946, 49.211123541000106 ], [ -124.769941363999948, 49.212913528000044 ], [ -124.764457619999945, 49.212850834000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7709833", "BldgCostT": "5053333", "sL_LossRatio": "0.921793674095823", "sL_AssetLoss": "14986", "sL_BldgLoss": "13814", "sL_StrLoss": "10833", "sL_NStrLoss": "2981", "sL_ContLoss": "1172", "geom_point": "0101000020E6100000E2B5A6D480325FC07A7077D66E934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.797318086999923, 49.153805090000056 ], [ -124.797182716999927, 49.15346620100005 ], [ -124.795866783999969, 49.15354020000008 ], [ -124.795821291999943, 49.153406412000059 ], [ -124.795505007, 49.153374993000142 ], [ -124.79542320399996, 49.153393600000108 ], [ -124.795276592999969, 49.153892014000093 ], [ -124.794728186999947, 49.153531698000073 ], [ -124.79435739299997, 49.153500400000048 ], [ -124.793659610999939, 49.153134292000054 ], [ -124.792121107999947, 49.152897255000028 ], [ -124.792121789999953, 49.152870983000099 ], [ -124.791982372999911, 49.152873147000072 ], [ -124.791972640999944, 49.152603417000094 ], [ -124.79032777899999, 49.152628940000099 ], [ -124.790318056999979, 49.152359211000011 ], [ -124.787850773999963, 49.152397450000137 ], [ -124.78786048299996, 49.152667180000051 ], [ -124.78703805, 49.152679915000078 ], [ -124.787047754999918, 49.152949645000014 ], [ -124.786636535999932, 49.152956010000047 ], [ -124.786655941999953, 49.153495470000081 ], [ -124.785422270999959, 49.153514557000051 ], [ -124.785412573999949, 49.153244827000066 ], [ -124.78459013, 49.153257545000052 ], [ -124.784580437999978, 49.152987814000063 ], [ -124.782935558999966, 49.153013232000028 ], [ -124.782838734999956, 49.150315926000069 ], [ -124.79024027699991, 49.15020137500008 ], [ -124.790249998999982, 49.150471104000061 ], [ -124.791416540999961, 49.150453007000138 ], [ -124.791484992999969, 49.150490815000062 ], [ -124.79149332, 49.150721695000115 ], [ -124.792112645999921, 49.150712082000055 ], [ -124.7923181, 49.150774914000102 ], [ -124.792325451999929, 49.150978658000099 ], [ -124.792952501999963, 49.150968920000061 ], [ -124.792977901999933, 49.150976688000057 ], [ -124.793564676999935, 49.151115161000078 ], [ -124.793565185999952, 49.151129223000069 ], [ -124.79362721199999, 49.151129918000017 ], [ -124.794444102999933, 49.151322688000093 ], [ -124.795153820999985, 49.151626104000073 ], [ -124.795608203999919, 49.152023485000051 ], [ -124.79600268199999, 49.152709904000048 ], [ -124.797199710999962, 49.152808201000049 ], [ -124.797384105999953, 49.153355111000039 ], [ -124.7975298, 49.154738007000084 ], [ -124.797391195999964, 49.154712395000075 ], [ -124.797318086999923, 49.153805090000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.972813774354327", "sL_AssetLoss": "662.1", "sL_BldgLoss": "644.1", "sL_StrLoss": "556", "sL_NStrLoss": "88.1", "sL_ContLoss": "18", "geom_point": "0101000020E61000008D11261810325FC0E8F4FE37DD9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.782886080999958, 49.231818479000047 ], [ -124.783220018999955, 49.231813323000019 ], [ -124.782870405999915, 49.234286929000042 ], [ -124.781345154999897, 49.234321694000123 ], [ -124.781392817999944, 49.232505212000056 ], [ -124.782911419999934, 49.232522355000093 ], [ -124.782886080999958, 49.231818479000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3202084", "BldgCostT": "2208334", "sL_LossRatio": "0.988562265258466", "sL_AssetLoss": "2350.99", "sL_BldgLoss": "2324.1", "sL_StrLoss": "2151", "sL_NStrLoss": "173.1", "sL_ContLoss": "26.89", "geom_point": "0101000020E6100000EAB16F1FE0325FC0668C0742CF944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.792625721999983, 49.163978495000059 ], [ -124.792719152999965, 49.160378494000049 ], [ -124.793598766999949, 49.160388350000076 ], [ -124.793900193999917, 49.16058720700002 ], [ -124.794527292999987, 49.161198213000041 ], [ -124.79575930399993, 49.161171197000016 ], [ -124.796601287999962, 49.161706706000054 ], [ -124.796970101999989, 49.162032796000084 ], [ -124.797305904999973, 49.162549784000113 ], [ -124.797789497999986, 49.163055388000018 ], [ -124.798125924999965, 49.16318117300009 ], [ -124.79810374299997, 49.164039761000041 ], [ -124.792625721999983, 49.163978495000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.968796838806377", "sL_AssetLoss": "733.9", "sL_BldgLoss": "711", "sL_StrLoss": "602", "sL_NStrLoss": "109", "sL_ContLoss": "22.9", "geom_point": "0101000020E6100000576FDC7B1B315FC0120BE7E0BAA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.76674643399997, 49.287660805000051 ], [ -124.766736791999918, 49.287391078000034 ], [ -124.766324450999932, 49.287397384000016 ], [ -124.766285898999925, 49.286318476000105 ], [ -124.767935224999974, 49.286293247000053 ], [ -124.767944870999955, 49.28656297300008 ], [ -124.768357204999973, 49.286556662000081 ], [ -124.76838615299998, 49.287365841000025 ], [ -124.76797381199998, 49.287372152000088 ], [ -124.767983460999972, 49.287641878000038 ], [ -124.76674643399997, 49.287660805000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "0.960962755145495", "sL_AssetLoss": "1573.318", "sL_BldgLoss": "1511.9", "sL_StrLoss": "1198.6", "sL_NStrLoss": "313.3", "sL_ContLoss": "61.418", "geom_point": "0101000020E6100000F3E4BB1042315FC0B61047CBBF964840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.766996856999981, 49.179166706000132 ], [ -124.766977647000019, 49.178627243000044 ], [ -124.766566210999912, 49.178633539000046 ], [ -124.766544427000028, 49.178021644000097 ], [ -124.766537402999958, 49.177824343000069 ], [ -124.767055166999938, 49.177816420000092 ], [ -124.767360261999968, 49.177811750000053 ], [ -124.767356120999978, 49.177695490000055 ], [ -124.76735065599992, 49.177542019000093 ], [ -124.767753396999964, 49.177535853000052 ], [ -124.76776208299999, 49.177535720000087 ], [ -124.767761962999899, 49.177532410000012 ], [ -124.767752471999955, 49.177265989000063 ], [ -124.76845161599999, 49.177255281000107 ], [ -124.768575321999904, 49.177253386000054 ], [ -124.768573640999989, 49.177206245000065 ], [ -124.76856570899993, 49.1769836550001 ], [ -124.7691498249999, 49.176974705000127 ], [ -124.769388552999942, 49.176971047000059 ], [ -124.769385308999958, 49.17688007400011 ], [ -124.769378934999963, 49.176701316000063 ], [ -124.769790354999941, 49.176695009000092 ], [ -124.769780735, 49.176425278000096 ], [ -124.770582406999921, 49.17641298500007 ], [ -124.77060357, 49.176412662000068 ], [ -124.770603298999944, 49.176405113000079 ], [ -124.770593943999927, 49.176142931000072 ], [ -124.771005360999979, 49.176136620000122 ], [ -124.770995733999925, 49.175866888000144 ], [ -124.771882281999979, 49.175853286000063 ], [ -124.772229969999955, 49.17584794900003 ], [ -124.772297402999968, 49.177736065000076 ], [ -124.771474547999958, 49.177748694000037 ], [ -124.77148417699999, 49.178018425000069 ], [ -124.771072745999959, 49.178024737000037 ], [ -124.771082373999931, 49.178294468000068 ], [ -124.770670941, 49.178300779000061 ], [ -124.770699817999983, 49.179109972000113 ], [ -124.766996856999981, 49.179166706000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4884084", "BldgCostT": "3368334", "sL_LossRatio": "0.993980469574084", "sL_AssetLoss": "2031.1385", "sL_BldgLoss": "2018.912", "sL_StrLoss": "1894.55", "sL_NStrLoss": "124.362", "sL_ContLoss": "12.2265", "geom_point": "0101000020E6100000BF984E673E335FC0889D4A82C79A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.800255953999937, 49.210833320000084 ], [ -124.80025359699999, 49.210768476000055 ], [ -124.799430205999911, 49.210781310000037 ], [ -124.799431477999946, 49.210816335000054 ], [ -124.799281119999961, 49.210813236000021 ], [ -124.798196080999944, 49.210827036000076 ], [ -124.798185332999978, 49.210530826000074 ], [ -124.797773639999932, 49.210537236000036 ], [ -124.797763856999936, 49.210267510000122 ], [ -124.797352164999936, 49.210273920000084 ], [ -124.797342383999961, 49.210004193000017 ], [ -124.796930693999954, 49.2100106010001 ], [ -124.796920914999987, 49.209740875000151 ], [ -124.796097538999931, 49.209753686000106 ], [ -124.796058444999943, 49.208674782000095 ], [ -124.796470124, 49.208668378000041 ], [ -124.796431021999979, 49.207589475000113 ], [ -124.797666031999967, 49.207570254000039 ], [ -124.797656247999953, 49.20730052800009 ], [ -124.79971458199999, 49.207268465000013 ], [ -124.799763547999959, 49.208617091000121 ], [ -124.800175225999965, 49.208610674000049 ], [ -124.800185022999983, 49.208880400000098 ], [ -124.800596701999979, 49.208873981000082 ], [ -124.800586903999942, 49.208604255000097 ], [ -124.800998580999945, 49.208597835000084 ], [ -124.800988780999916, 49.208328110000075 ], [ -124.801400455999925, 49.208321687000115 ], [ -124.801390652999913, 49.208051962000091 ], [ -124.801802325999986, 49.208045540000057 ], [ -124.801792520999982, 49.20777581400003 ], [ -124.802294579999909, 49.207767980000028 ], [ -124.803394464999926, 49.207750807000103 ], [ -124.8038508699999, 49.20774367700006 ], [ -124.803857213999919, 49.20791798900008 ], [ -124.803860686999911, 49.208013402000127 ], [ -124.803960868000019, 49.208011838000054 ], [ -124.80427235799999, 49.208006971000025 ], [ -124.804278023, 49.20816256000009 ], [ -124.804311630999933, 49.209085869000084 ], [ -124.805958351999976, 49.209060125000107 ], [ -124.805968178999947, 49.209329851000085 ], [ -124.806379861999943, 49.209323411000042 ], [ -124.806409350999928, 49.210132584000114 ], [ -124.803939215999918, 49.21017120100003 ], [ -124.803949032999952, 49.210440925000036 ], [ -124.802713956999966, 49.210460213000019 ], [ -124.802723766999947, 49.210729939000096 ], [ -124.801900378999932, 49.210742790000083 ], [ -124.801905541999972, 49.210884834000055 ], [ -124.801717092999965, 49.210882026000036 ], [ -124.80125357699994, 49.210875132000098 ], [ -124.801232816999956, 49.210853437000068 ], [ -124.800255953999937, 49.210833320000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.963317057893938", "sL_AssetLoss": "4572.534", "sL_BldgLoss": "4404.8", "sL_StrLoss": "3582.2", "sL_NStrLoss": "822.6", "sL_ContLoss": "167.734", "geom_point": "0101000020E610000088DB8053C82F5FC0196C8F8337984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.743910112999956, 49.187362350000164 ], [ -124.749390821999938, 49.18742609 ], [ -124.749307059000017, 49.190539849000082 ], [ -124.749293981999926, 49.191025905000039 ], [ -124.748573682000014, 49.191017544000047 ], [ -124.743812847999905, 49.190962159000115 ], [ -124.743910112999956, 49.187362350000164 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.95944717221313", "sL_AssetLoss": "1099.8", "sL_BldgLoss": "1055.2", "sL_StrLoss": "774.2", "sL_NStrLoss": "281", "sL_ContLoss": "44.6", "geom_point": "0101000020E6100000F562CD6D27315FC0F42BE79C69A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.766669311000015, 49.285502991000051 ], [ -124.766659671999903, 49.285233265000038 ], [ -124.766247347999951, 49.285239570000016 ], [ -124.766218437999896, 49.284430390000111 ], [ -124.767043068999953, 49.284417778000012 ], [ -124.767014145999951, 49.283608599000125 ], [ -124.769900303999975, 49.283564414000082 ], [ -124.769929274999939, 49.284373592000044 ], [ -124.769516959999962, 49.284379909000059 ], [ -124.769526614999975, 49.284649636000069 ], [ -124.76911429799999, 49.284655951000097 ], [ -124.769123950999983, 49.284925677000047 ], [ -124.76871163099996, 49.284931991000093 ], [ -124.768721281999916, 49.285201717000106 ], [ -124.768308960999946, 49.285208030000014 ], [ -124.768318607999959, 49.285477756000063 ], [ -124.766669311000015, 49.285502991000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16212833", "BldgCostT": "9443333", "sL_LossRatio": "0.983003243602204", "sL_AssetLoss": "5497.5607", "sL_BldgLoss": "5404.12", "sL_StrLoss": "4920.43", "sL_NStrLoss": "483.69", "sL_ContLoss": "93.4407", "geom_point": "0101000020E6100000B67337DB9E325FC0E4491452E5934840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.791785249999933, 49.158813569000053 ], [ -124.791780102999937, 49.158670935 ], [ -124.78916981, 49.15864162 ], [ -124.789223614999969, 49.156574160000091 ], [ -124.788320600999953, 49.156564003000071 ], [ -124.788344968, 49.155628356000101 ], [ -124.787967297999955, 49.155634206000038 ], [ -124.787977009999963, 49.155903936000101 ], [ -124.786743280999943, 49.155923038000068 ], [ -124.786704462999936, 49.154844119000096 ], [ -124.787115696999976, 49.154837754000027 ], [ -124.787105989999958, 49.154568024000064 ], [ -124.787517220999931, 49.154561656000091 ], [ -124.787497805999962, 49.154022197000067 ], [ -124.787909032999963, 49.154015828000091 ], [ -124.787879902, 49.153206640000064 ], [ -124.78829112399994, 49.153200270000085 ], [ -124.788281411999961, 49.152930540000028 ], [ -124.789515065999979, 49.152911422000088 ], [ -124.78951740799998, 49.152976370000026 ], [ -124.790499390999969, 49.152987404000072 ], [ -124.790502312999962, 49.153057394000022 ], [ -124.792182790999959, 49.153300996 ], [ -124.79395661699999, 49.153803695000121 ], [ -124.795298582999976, 49.154457405000059 ], [ -124.795761193999979, 49.154774990000064 ], [ -124.795608607999952, 49.155082701000062 ], [ -124.794841293999951, 49.155508507 ], [ -124.794851592999962, 49.155804715000045 ], [ -124.794501484999941, 49.155937206000054 ], [ -124.794143901999988, 49.156301808000102 ], [ -124.792494720999983, 49.15700250000004 ], [ -124.792337684999907, 49.157184804000067 ], [ -124.792051207999947, 49.157251684000087 ], [ -124.791879213999934, 49.157425491000012 ], [ -124.79178208799999, 49.158119106000051 ], [ -124.792132613999982, 49.158725796000049 ], [ -124.792156586999965, 49.158807804000091 ], [ -124.791785249999933, 49.158813569000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912583", "BldgCostT": "2698333", "sL_LossRatio": "0.991943226237255", "sL_AssetLoss": "1756.3606", "sL_BldgLoss": "1742.21", "sL_StrLoss": "1634.52", "sL_NStrLoss": "107.69", "sL_ContLoss": "14.1506", "geom_point": "0101000020E61000005159A01FBE325FC067FAE3C55B9A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.793588367000012, 49.208713176000096 ], [ -124.79357860899999, 49.208443450000097 ], [ -124.793166930999973, 49.208449845000132 ], [ -124.793157174999962, 49.208180117000047 ], [ -124.792745498999963, 49.208186510000097 ], [ -124.792716232999908, 49.207377331000103 ], [ -124.792304562999959, 49.207383721000063 ], [ -124.792285057999905, 49.206844268000047 ], [ -124.791873393999964, 49.206850657000103 ], [ -124.791863643999974, 49.206580930000086 ], [ -124.791451981999927, 49.206587318000068 ], [ -124.791442232999955, 49.206317591000079 ], [ -124.79103057399999, 49.206323978000093 ], [ -124.791020827999944, 49.206054251000076 ], [ -124.789785851999952, 49.206073399000097 ], [ -124.789776115, 49.205803672000052 ], [ -124.788952801, 49.205816431000059 ], [ -124.788913865999973, 49.204737523000105 ], [ -124.789325514999945, 49.204731144000043 ], [ -124.789315779999981, 49.204461417000111 ], [ -124.789727422999945, 49.204455037000031 ], [ -124.789707949, 49.203915583000018 ], [ -124.794647628999911, 49.203838913000055 ], [ -124.794657393999955, 49.204108640000072 ], [ -124.795069034999941, 49.204102241000044 ], [ -124.795098334, 49.204911419000055 ], [ -124.79468668699991, 49.204917819000052 ], [ -124.794696452, 49.205187545000129 ], [ -124.794284801999979, 49.205193942000072 ], [ -124.794314089999958, 49.206003121000059 ], [ -124.795549060999946, 49.20598392400008 ], [ -124.795588140999982, 49.20706282800009 ], [ -124.795999805999941, 49.207056426000115 ], [ -124.796038897999921, 49.208135330000118 ], [ -124.795627223999986, 49.208141733000069 ], [ -124.795636993999921, 49.208411459000054 ], [ -124.795225316999904, 49.208417860000125 ], [ -124.795235085999977, 49.208687586000067 ], [ -124.793588367000012, 49.208713176000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.983882607649747", "sL_AssetLoss": "1247.1", "sL_BldgLoss": "1227", "sL_StrLoss": "1090", "sL_NStrLoss": "137", "sL_ContLoss": "20.1", "geom_point": "0101000020E610000020E272FE1E345FC095F5F642DC9B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.815263520999963, 49.21680819600013 ], [ -124.81553428699999, 49.216479465000155 ], [ -124.815559271999959, 49.216374399000081 ], [ -124.815700736999986, 49.216375954000121 ], [ -124.815689992999964, 49.216797379000035 ], [ -124.816540220999954, 49.216806713000032 ], [ -124.81649701299996, 49.216908995000104 ], [ -124.815914694999947, 49.217494388000077 ], [ -124.815683591999971, 49.217965816000124 ], [ -124.81573006, 49.218256117000053 ], [ -124.81540028399999, 49.218254126000033 ], [ -124.81205423899999, 49.218326716000135 ], [ -124.811651627999979, 49.218347709000113 ], [ -124.811355983999988, 49.21836313000005 ], [ -124.811463588, 49.218318407000048 ], [ -124.811802467999911, 49.218189719000108 ], [ -124.811806427999983, 49.218185548000051 ], [ -124.811863312999904, 49.218125989000086 ], [ -124.812365618999976, 49.217792200000126 ], [ -124.813494620999961, 49.217444132000075 ], [ -124.814258610999943, 49.217208579000065 ], [ -124.815263520999963, 49.21680819600013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.97628156082632", "sL_AssetLoss": "653.5", "sL_BldgLoss": "638", "sL_StrLoss": "589", "sL_NStrLoss": "49", "sL_ContLoss": "15.5", "geom_point": "0101000020E6100000D591C8E30E325FC02DFB0151289E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.782639255999968, 49.236410192000037 ], [ -124.782628802999923, 49.236119828 ], [ -124.781298363999923, 49.236104807000082 ], [ -124.781327744999928, 49.23498521500003 ], [ -124.782757513999982, 49.234977785000069 ], [ -124.782792144999931, 49.234977600000065 ], [ -124.783032365999986, 49.236147529000064 ], [ -124.783042446, 49.236403967000101 ], [ -124.782639255999968, 49.236410192000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10056417", "BldgCostT": "6671667", "sL_LossRatio": "0.927128519725866", "sL_AssetLoss": "18310.73", "sL_BldgLoss": "16976.4", "sL_StrLoss": "13901.7", "sL_NStrLoss": "3074.7", "sL_ContLoss": "1334.33", "geom_point": "0101000020E6100000F773E9E34A305FC0115A8B2602984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.754109270999919, 49.187247484000046 ], [ -124.75403092899991, 49.185031863000042 ], [ -124.754442419999961, 49.185025611000086 ], [ -124.7544328809999, 49.184755877000029 ], [ -124.75566734899999, 49.184737112000136 ], [ -124.755676894999951, 49.185006845000032 ], [ -124.756088386999949, 49.185000587000062 ], [ -124.756097934999943, 49.185270321000054 ], [ -124.756920921999964, 49.185257800000102 ], [ -124.756911368999937, 49.184988066000045 ], [ -124.75732286099999, 49.184981805000056 ], [ -124.757303750999966, 49.184442339000093 ], [ -124.757715236999914, 49.184436075000086 ], [ -124.757705680999891, 49.184166342000033 ], [ -124.758117164999987, 49.184160077000108 ], [ -124.758107605999939, 49.183890344000083 ], [ -124.758519086999954, 49.183884077000044 ], [ -124.758499964999956, 49.183344612000063 ], [ -124.758911444, 49.183338345000074 ], [ -124.75890187899995, 49.183068612000056 ], [ -124.760136303999971, 49.183049800000106 ], [ -124.760188888999949, 49.184531939000124 ], [ -124.760203293999936, 49.184937926000025 ], [ -124.759791803999931, 49.184944199000036 ], [ -124.75980137199997, 49.185213931000106 ], [ -124.759124425999957, 49.185224247000086 ], [ -124.758978386999928, 49.185226472000075 ], [ -124.758985165999945, 49.185417665000074 ], [ -124.758997514999976, 49.185765937000092 ], [ -124.758757446999937, 49.185769594000085 ], [ -124.758586018999935, 49.185772206000102 ], [ -124.758594833999922, 49.18602090400006 ], [ -124.758605140999975, 49.186311671000084 ], [ -124.758382747, 49.186315059000052 ], [ -124.75819364099999, 49.186317938000116 ], [ -124.758202215999987, 49.186559926000044 ], [ -124.758212759999935, 49.186857403000069 ], [ -124.757980287999914, 49.186860943000049 ], [ -124.757801253999915, 49.186863668000086 ], [ -124.757809371999983, 49.187092765000045 ], [ -124.757820371, 49.187403133000046 ], [ -124.75757782, 49.187406826000085 ], [ -124.757408858999938, 49.187409398000128 ], [ -124.75741652, 49.187625601000036 ], [ -124.75742797099997, 49.187948863000024 ], [ -124.757174659999947, 49.187952719000066 ], [ -124.757016455999974, 49.18795512700008 ], [ -124.757022898999963, 49.188137009000165 ], [ -124.757035563999963, 49.188494592000026 ], [ -124.75672453199995, 49.188499325000059 ], [ -124.755274352999933, 49.188521380000047 ], [ -124.755245602999963, 49.18959519600002 ], [ -124.755211705999955, 49.190861157000029 ], [ -124.749730581999984, 49.190797713000023 ], [ -124.749740211999963, 49.190439651000126 ], [ -124.749827388999961, 49.187197897000054 ], [ -124.754109270999919, 49.187247484000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.959573117563412", "sL_AssetLoss": "767.237", "sL_BldgLoss": "736.22", "sL_StrLoss": "605.12", "sL_NStrLoss": "131.1", "sL_ContLoss": "31.017", "geom_point": "0101000020E6100000E777F585AB305FC0E51F64F6059F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.761670256999949, 49.240072741000056 ], [ -124.761940524999943, 49.240075842000117 ], [ -124.761895283999962, 49.240370491000071 ], [ -124.761479301999969, 49.242172717000066 ], [ -124.761477175999957, 49.242214008000097 ], [ -124.761372746999939, 49.244261650000048 ], [ -124.75931554, 49.244238017000043 ], [ -124.759411712999963, 49.240638486000051 ], [ -124.761654481999983, 49.240664248000037 ], [ -124.761670256999949, 49.240072741000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7424667", "BldgCostT": "4856667", "sL_LossRatio": "0.807706133541906", "sL_AssetLoss": "25314.9", "sL_BldgLoss": "20447", "sL_StrLoss": "14864.2", "sL_NStrLoss": "5582.8", "sL_ContLoss": "4867.9", "geom_point": "0101000020E61000005578E11853305FC05F62F227A6994840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.752734182999959, 49.202697459000085 ], [ -124.752763204999965, 49.201616031000064 ], [ -124.751830613999985, 49.201605238000106 ], [ -124.751907638999953, 49.198736892000078 ], [ -124.751927279999961, 49.198005480000084 ], [ -124.75527930899996, 49.198044239000083 ], [ -124.757409254999914, 49.198068812000031 ], [ -124.757380344999959, 49.199150246000066 ], [ -124.758312887999949, 49.199160991000049 ], [ -124.758285046999958, 49.200203113000079 ], [ -124.758216713999943, 49.202760749000056 ], [ -124.754832237999935, 49.202721711000081 ], [ -124.752734182999959, 49.202697459000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69669584", "BldgCostT": "46783334", "sL_LossRatio": "0.926452670918615", "sL_AssetLoss": "91653.036", "sL_BldgLoss": "84912.2", "sL_StrLoss": "71012.7", "sL_NStrLoss": "13899.5", "sL_ContLoss": "6740.836", "geom_point": "0101000020E6100000BC102F78A6305FC0B1ECF617C9A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.780282081999943, 49.285464401000112 ], [ -124.780268636999935, 49.285091076000086 ], [ -124.778262104999953, 49.285068398000114 ], [ -124.778274613999912, 49.28459340800007 ], [ -124.778265032999968, 49.284593299000086 ], [ -124.77829002299994, 49.283644415000026 ], [ -124.778209186999916, 49.283643501 ], [ -124.77822121899996, 49.283186701000098 ], [ -124.778070708999934, 49.283184998000124 ], [ -124.77809464399995, 49.282276299000031 ], [ -124.77801516199996, 49.282275399000063 ], [ -124.778030739999963, 49.281683993000044 ], [ -124.778004897999935, 49.281683701000141 ], [ -124.778007799999941, 49.281573510000044 ], [ -124.775290403000014, 49.281542731000044 ], [ -124.775301384999977, 49.281126751000038 ], [ -124.774265988999915, 49.281115006000078 ], [ -124.774304566999916, 49.279654801000042 ], [ -124.774160584999947, 49.27965316700007 ], [ -124.77416040599995, 49.279659937000062 ], [ -124.77022723099995, 49.279615222000103 ], [ -124.768668768999959, 49.279597465000094 ], [ -124.768684466999943, 49.279005960000106 ], [ -124.768658702999943, 49.279005666000096 ], [ -124.768679918999922, 49.278206259000164 ], [ -124.768691782999952, 49.277759251000099 ], [ -124.767173621999959, 49.277741930000047 ], [ -124.767225777999926, 49.275779006000043 ], [ -124.767146863999955, 49.275780213000125 ], [ -124.767117946999974, 49.274971032000053 ], [ -124.767247297, 49.274969053000092 ], [ -124.767269255999963, 49.274142574000095 ], [ -124.767500892999948, 49.274145218000157 ], [ -124.767494732999978, 49.273972875 ], [ -124.765973959999954, 49.273955507000103 ], [ -124.765956088999971, 49.274627456000054 ], [ -124.762025470999944, 49.274582466000041 ], [ -124.76046505799999, 49.27456456600008 ], [ -124.760480670000021, 49.273980146000042 ], [ -124.759758599999898, 49.273971855000049 ], [ -124.757987899999989, 49.27395150300007 ], [ -124.758026107999967, 49.272524049000012 ], [ -124.758084238999942, 49.270352135000088 ], [ -124.758089063999989, 49.27035219 ], [ -124.758104298999982, 49.26978289700002 ], [ -124.755703365999949, 49.269755255000049 ], [ -124.755704329999958, 49.269719289000129 ], [ -124.75535291199995, 49.269715239000078 ], [ -124.75427591499999, 49.26970281900013 ], [ -124.754285651999965, 49.269340085000096 ], [ -124.754288624999944, 49.269229350000089 ], [ -124.752891476999977, 49.26925056000006 ], [ -124.752888786999989, 49.269174654000039 ], [ -124.752648484999924, 49.269171878000101 ], [ -124.752654220999915, 49.268958489000092 ], [ -124.752653297999942, 49.268958478000108 ], [ -124.75265986, 49.268714326000108 ], [ -124.752460169999964, 49.268717356000096 ], [ -124.752456085999981, 49.268602045000073 ], [ -124.75038723399993, 49.268578121000061 ], [ -124.750387408000037, 49.2685716700001 ], [ -124.74999352099999, 49.268567111 ], [ -124.749995636000037, 49.268488575000092 ], [ -124.749574708999987, 49.268483700000111 ], [ -124.749576054999963, 49.268433738000077 ], [ -124.749131495999976, 49.268428589000067 ], [ -124.749135997999986, 49.268261560000084 ], [ -124.748705989999934, 49.268256578 ], [ -124.748710013999954, 49.268107326000063 ], [ -124.748169877999899, 49.268101065000025 ], [ -124.748176329999964, 49.267861934000145 ], [ -124.744329748999959, 49.267817267000112 ], [ -124.74434199399991, 49.267364720000081 ], [ -124.74431342799997, 49.26736438800004 ], [ -124.744291758999978, 49.268165215000089 ], [ -124.741207264999943, 49.268129297000087 ], [ -124.740632583, 49.268122596000126 ], [ -124.740631713999917, 49.268154606000024 ], [ -124.740150589999971, 49.268148993000082 ], [ -124.740119414999981, 49.269297265000041 ], [ -124.740111277000011, 49.26959701600007 ], [ -124.73964025199993, 49.269591518000084 ], [ -124.73963307299999, 49.269855826000047 ], [ -124.739186970999981, 49.269850618000099 ], [ -124.739179470999929, 49.270126638000058 ], [ -124.738638414999983, 49.270120318000025 ], [ -124.738633060999945, 49.270317250000097 ], [ -124.733142576999981, 49.270252971000041 ], [ -124.733175573999958, 49.269044336000022 ], [ -124.731548388999926, 49.269025232000061 ], [ -124.731639602999934, 49.265688033000046 ], [ -124.731646768999951, 49.265425860000072 ], [ -124.735212965999921, 49.265467698000037 ], [ -124.735239581999963, 49.26449104800006 ], [ -124.736116227999929, 49.264501314000043 ], [ -124.73611865, 49.264412370000052 ], [ -124.736883141999954, 49.264421317000071 ], [ -124.736886726999941, 49.264289589000057 ], [ -124.737389912999902, 49.264295475000026 ], [ -124.737396019999977, 49.264071001000055 ], [ -124.73793580499995, 49.264077312000104 ], [ -124.737937000999977, 49.264033314000052 ], [ -124.738341111999958, 49.264038038000081 ], [ -124.738342686999943, 49.263980024000027 ], [ -124.738911870999956, 49.263986674000073 ], [ -124.738914171999951, 49.263902039000058 ], [ -124.739467298999955, 49.263908498000013 ], [ -124.739472758999966, 49.26370745200007 ], [ -124.74496247799999, 49.263771410000118 ], [ -124.744950238999962, 49.264223959000049 ], [ -124.748238076999911, 49.264262131000045 ], [ -124.748245296999968, 49.263994471000089 ], [ -124.748674133999955, 49.26399944300011 ], [ -124.748680593999964, 49.263759882000073 ], [ -124.749200507999973, 49.263765906000081 ], [ -124.749202877999934, 49.263677994000055 ], [ -124.749760635999962, 49.263684456000057 ], [ -124.749762258999979, 49.263624208000124 ], [ -124.750573390999961, 49.263633599000016 ], [ -124.75059220699994, 49.263633817000063 ], [ -124.750592525999977, 49.263621928000077 ], [ -124.751381435999946, 49.263631056000072 ], [ -124.751385201999938, 49.263491049000031 ], [ -124.75186286, 49.263496572000065 ], [ -124.751856925999959, 49.263329015000117 ], [ -124.752269067999976, 49.263322763000133 ], [ -124.752259515999967, 49.263053034000038 ], [ -124.753495937999929, 49.263034269000073 ], [ -124.75347681699995, 49.26249481100006 ], [ -124.754713224999975, 49.262476034000052 ], [ -124.754703658999958, 49.262206304000102 ], [ -124.75552792399999, 49.262193779000114 ], [ -124.755518352999957, 49.261924050000083 ], [ -124.755930484999951, 49.261917785000065 ], [ -124.755920911999937, 49.261648056000062 ], [ -124.756333038999941, 49.261641789000066 ], [ -124.756304314999937, 49.260832601000068 ], [ -124.757540676999909, 49.260813796000058 ], [ -124.757511933999965, 49.260004608 ], [ -124.758336162999953, 49.259992063000041 ], [ -124.758326576999963, 49.259722334000045 ], [ -124.759150800999976, 49.259709784000087 ], [ -124.759141209999925, 49.259440054000088 ], [ -124.759965428999948, 49.259427498000093 ], [ -124.759955834999971, 49.259157770000087 ], [ -124.761192153999943, 49.259138925000045 ], [ -124.761201754999959, 49.259408653000037 ], [ -124.761420523999931, 49.259405317000109 ], [ -124.761471592999953, 49.260222008000028 ], [ -124.761558182999963, 49.261606100000044 ], [ -124.761596213999965, 49.262214357000033 ], [ -124.7616397, 49.262909458000188 ], [ -124.761662906999959, 49.263280489000032 ], [ -124.761665692999941, 49.263358592 ], [ -124.76167073299996, 49.263499259000028 ], [ -124.758551585999925, 49.264016157000107 ], [ -124.757499202999924, 49.264192186000102 ], [ -124.755203259999959, 49.264576182000035 ], [ -124.754560001999948, 49.264683927000121 ], [ -124.754231687999891, 49.264738925000103 ], [ -124.753262851999963, 49.264901228000106 ], [ -124.753446078999957, 49.265083436000069 ], [ -124.755176099999929, 49.265125810000036 ], [ -124.755161746999988, 49.265490360000051 ], [ -124.755152540999973, 49.265724274000021 ], [ -124.755150508000014, 49.265776300000077 ], [ -124.755139932999924, 49.266021434000038 ], [ -124.755117586000011, 49.266540192000058 ], [ -124.757813605, 49.266558588000109 ], [ -124.760670490999985, 49.266512209000076 ], [ -124.760648841999938, 49.266971772000012 ], [ -124.760608443999956, 49.267827393000083 ], [ -124.760602942999924, 49.267944085000103 ], [ -124.760569294000021, 49.268657879000095 ], [ -124.760438617999966, 49.269970124000103 ], [ -124.760422821999938, 49.270128547000084 ], [ -124.760268032999946, 49.271682462000093 ], [ -124.760196717999975, 49.27239835700005 ], [ -124.760184662999947, 49.27251947200007 ], [ -124.761112934999915, 49.272514942000051 ], [ -124.761835364999953, 49.272511423000068 ], [ -124.765383680999946, 49.27255564700009 ], [ -124.765527849999955, 49.272556393000052 ], [ -124.768338846999967, 49.272599304000053 ], [ -124.774154311999936, 49.27443484200009 ], [ -124.773201101999973, 49.274468382000045 ], [ -124.77296635499999, 49.274466307000068 ], [ -124.771362799999977, 49.274451992000103 ], [ -124.77135071399999, 49.274910006000042 ], [ -124.771312704999971, 49.27577461000007 ], [ -124.77127869, 49.276694100000014 ], [ -124.771229701999943, 49.277613483000039 ], [ -124.771217504999953, 49.278125514000067 ], [ -124.77174817799991, 49.278127892000043 ], [ -124.772509658999965, 49.278131332000044 ], [ -124.772862268, 49.278132916000061 ], [ -124.773588792999973, 49.278136195000044 ], [ -124.773708713999952, 49.278152652000067 ], [ -124.774008269999982, 49.278193750000064 ], [ -124.774304498, 49.278234400000066 ], [ -124.775601518999949, 49.278221381000051 ], [ -124.77687180199996, 49.278208596000063 ], [ -124.778006002999931, 49.278162013000092 ], [ -124.778546122999941, 49.278147401000076 ], [ -124.77870887899995, 49.278153198000098 ], [ -124.779367830999945, 49.27817665400012 ], [ -124.779573103999937, 49.278183958000078 ], [ -124.77973838799997, 49.278189848000132 ], [ -124.780178699999979, 49.278205499000109 ], [ -124.780357438999914, 49.278207413000061 ], [ -124.78052137600001, 49.278209157000084 ], [ -124.780769960999976, 49.27821181000008 ], [ -124.781679282999946, 49.278221497000082 ], [ -124.782173459, 49.278213530000045 ], [ -124.783024289999943, 49.278199800000031 ], [ -124.783136902999942, 49.278201241000026 ], [ -124.784237103999928, 49.278215276000054 ], [ -124.787263613000022, 49.278253783000096 ], [ -124.787328692999935, 49.279792098000073 ], [ -124.787333176999965, 49.279898091000092 ], [ -124.787226689999912, 49.280454110000029 ], [ -124.787178194999939, 49.280573297000068 ], [ -124.78719299, 49.280794891000035 ], [ -124.787196377999976, 49.280850035000093 ], [ -124.787199116999929, 49.280894974000034 ], [ -124.787233217999955, 49.281451723000075 ], [ -124.787265188999925, 49.281973900000082 ], [ -124.787353207999971, 49.282180090000075 ], [ -124.787281518999947, 49.282572813000044 ], [ -124.787245813999959, 49.282768501000064 ], [ -124.787255859999931, 49.283476059000108 ], [ -124.787269997999914, 49.284469900000026 ], [ -124.787275612999949, 49.284728299000101 ], [ -124.787219587999971, 49.285033717000033 ], [ -124.787160280999942, 49.285093391000046 ], [ -124.787007097999933, 49.28517349600002 ], [ -124.786613079999952, 49.285272596000084 ], [ -124.78635729299999, 49.285337315000113 ], [ -124.785374540999939, 49.285357891000089 ], [ -124.7838486799999, 49.285389828000092 ], [ -124.782638719999966, 49.285415140000069 ], [ -124.781798992999967, 49.285432697000012 ], [ -124.780972789, 49.285458409000093 ], [ -124.780282081999943, 49.285464401000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.9478324761205", "sL_AssetLoss": "1905.4", "sL_BldgLoss": "1806", "sL_StrLoss": "1467", "sL_NStrLoss": "339", "sL_ContLoss": "99.4", "geom_point": "0101000020E6100000C7BBE146E3315FC044BBD07D35A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.77787421799999, 49.258926399000067 ], [ -124.781485834999913, 49.258606901000114 ], [ -124.78147888599996, 49.258871612000114 ], [ -124.781029427999968, 49.258866537000053 ], [ -124.781015199999942, 49.259408321000159 ], [ -124.780382040999896, 49.259401170000025 ], [ -124.780367206999969, 49.259965736000083 ], [ -124.779555300999959, 49.259956560000042 ], [ -124.779540704999988, 49.26051165500013 ], [ -124.778350851999903, 49.26049819600015 ], [ -124.778384051999922, 49.260318624000071 ], [ -124.778481998999979, 49.259777193000033 ], [ -124.77787421799999, 49.258926399000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105460833", "BldgCostT": "70413333", "sL_LossRatio": "0.919237378392092", "sL_AssetLoss": "180483.74", "sL_BldgLoss": "165907.4", "sL_StrLoss": "129789.2", "sL_NStrLoss": "36118.2", "sL_ContLoss": "14576.34", "geom_point": "0101000020E61000005E2989F434315FC04B0C86632BA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.760184662999947, 49.27251947200007 ], [ -124.760196717999975, 49.27239835700005 ], [ -124.760268032999946, 49.271682462000093 ], [ -124.760422821999938, 49.270128547000084 ], [ -124.760438617999966, 49.269970124000103 ], [ -124.760569294000021, 49.268657879000095 ], [ -124.760602942999924, 49.267944085000103 ], [ -124.760608443999956, 49.267827393000083 ], [ -124.760648841999938, 49.266971772000012 ], [ -124.760670490999985, 49.266512209000076 ], [ -124.757813605, 49.266558588000109 ], [ -124.755117586000011, 49.266540192000058 ], [ -124.755139932999924, 49.266021434000038 ], [ -124.755150508000014, 49.265776300000077 ], [ -124.755152540999973, 49.265724274000021 ], [ -124.755161746999988, 49.265490360000051 ], [ -124.755176099999929, 49.265125810000036 ], [ -124.753446078999957, 49.265083436000069 ], [ -124.753262851999963, 49.264901228000106 ], [ -124.754231687999891, 49.264738925000103 ], [ -124.754560001999948, 49.264683927000121 ], [ -124.755203259999959, 49.264576182000035 ], [ -124.757499202999924, 49.264192186000102 ], [ -124.758551585999925, 49.264016157000107 ], [ -124.76167073299996, 49.263499259000028 ], [ -124.761665692999941, 49.263358592 ], [ -124.761662906999959, 49.263280489000032 ], [ -124.7616397, 49.262909458000188 ], [ -124.761596213999965, 49.262214357000033 ], [ -124.761558182999963, 49.261606100000044 ], [ -124.761471592999953, 49.260222008000028 ], [ -124.761420523999931, 49.259405317000109 ], [ -124.762025971999918, 49.259396082000137 ], [ -124.762065865999929, 49.260516307000167 ], [ -124.763245586999972, 49.260529829000113 ], [ -124.763234170999965, 49.260958254000094 ], [ -124.766502189999954, 49.260995645 ], [ -124.766482618999945, 49.261732040000084 ], [ -124.766500835, 49.261732248000058 ], [ -124.766493032999932, 49.26202583900011 ], [ -124.766521584999964, 49.262026165000123 ], [ -124.767479720999972, 49.262011506000086 ], [ -124.767470084999943, 49.261741778000022 ], [ -124.767882210999971, 49.261735471000037 ], [ -124.767872572999934, 49.261465744000105 ], [ -124.76832695799996, 49.261458788000098 ], [ -124.770345314999958, 49.261427869 ], [ -124.770393574999943, 49.262776505000097 ], [ -124.770805708999944, 49.26277018800004 ], [ -124.770809819999968, 49.262885038000093 ], [ -124.770967632999927, 49.262886835000067 ], [ -124.770967143999982, 49.262905358000104 ], [ -124.772210289999961, 49.262919502000059 ], [ -124.772199282999949, 49.263335554000015 ], [ -124.772379207999919, 49.263337600000085 ], [ -124.772366295999916, 49.263825752000116 ], [ -124.772492901999968, 49.263823810000055 ], [ -124.772502565999986, 49.264093536000075 ], [ -124.772914708999934, 49.264087210000085 ], [ -124.772921509999932, 49.264276932000023 ], [ -124.774692177999952, 49.264297042000052 ], [ -124.774691608999944, 49.264318604000032 ], [ -124.77479937699999, 49.264319842000113 ], [ -124.774799930999947, 49.264298836000073 ], [ -124.775474260999943, 49.264306486000045 ], [ -124.775476108999925, 49.264236452000077 ], [ -124.775958876999979, 49.264241927000121 ], [ -124.775961394999968, 49.264146464000092 ], [ -124.776420515999973, 49.264151669000029 ], [ -124.776422278999959, 49.264084775000114 ], [ -124.776626051999969, 49.264087085000071 ], [ -124.776624007999942, 49.264030215000069 ], [ -124.776993287999929, 49.264024535 ], [ -124.776993761999961, 49.26400658900009 ], [ -124.777211848999983, 49.264009060000049 ], [ -124.777078613999919, 49.265412569000063 ], [ -124.777181189999979, 49.265394249000046 ], [ -124.777385908999946, 49.265323475000109 ], [ -124.777401651, 49.265213159000126 ], [ -124.777735510999918, 49.263701432000111 ], [ -124.777778874999953, 49.263489398000118 ], [ -124.778470906999985, 49.263497230999988 ], [ -124.77847223699996, 49.263446725000051 ], [ -124.779490032999902, 49.263458236000098 ], [ -124.779489605999956, 49.263446352000052 ], [ -124.779901743000011, 49.263440002000067 ], [ -124.77989204, 49.263170276000089 ], [ -124.780082398999966, 49.263167343000127 ], [ -124.780111049999931, 49.262077262000112 ], [ -124.78043174699998, 49.262080886000057 ], [ -124.781167781999955, 49.262089198000091 ], [ -124.781178430999915, 49.261683689000151 ], [ -124.78318860399996, 49.261706365000087 ], [ -124.782891119999988, 49.262891012000075 ], [ -124.782881539999934, 49.26289028900004 ], [ -124.782826795999966, 49.263783886000049 ], [ -124.782997544999915, 49.264862493000138 ], [ -124.782996388999919, 49.264878371000094 ], [ -124.782907120999965, 49.266131823000094 ], [ -124.780861502999983, 49.26607153600002 ], [ -124.779517218, 49.26625677300013 ], [ -124.778990312999966, 49.266329404000047 ], [ -124.778409941999939, 49.266406114000034 ], [ -124.777362779999919, 49.266544562000064 ], [ -124.7773598199999, 49.266544954000018 ], [ -124.777280213999944, 49.266775401000118 ], [ -124.777277847000022, 49.26691612400009 ], [ -124.777268101999937, 49.267498089000064 ], [ -124.777368309999957, 49.268020404000048 ], [ -124.77773933899999, 49.269373182000059 ], [ -124.777433408999968, 49.270901921000053 ], [ -124.77742418299998, 49.271067305000074 ], [ -124.77740723099997, 49.271844542000061 ], [ -124.776492772999973, 49.271858610000073 ], [ -124.776518026999952, 49.272561636000034 ], [ -124.775921956999952, 49.272570307000109 ], [ -124.775631983, 49.272571438000078 ], [ -124.774163033999955, 49.272577082000069 ], [ -124.771435908999976, 49.272587528000017 ], [ -124.769866834999931, 49.272593518000086 ], [ -124.768338846999967, 49.272599304000053 ], [ -124.765527849999955, 49.272556393000052 ], [ -124.765383680999946, 49.27255564700009 ], [ -124.761835364999953, 49.272511423000068 ], [ -124.761112934999915, 49.272514942000051 ], [ -124.760184662999947, 49.27251947200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3936750", "BldgCostT": "2715000", "sL_LossRatio": "0.972977368383391", "sL_AssetLoss": "3074.46", "sL_BldgLoss": "2991.38", "sL_StrLoss": "2557.17", "sL_NStrLoss": "434.21", "sL_ContLoss": "83.08", "geom_point": "0101000020E610000041B8442647315FC0D7B992B27F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.769493881999907, 49.246648474000025 ], [ -124.769498553999981, 49.246472146000087 ], [ -124.766621384999937, 49.246439301000059 ], [ -124.766636618999939, 49.245865818000034 ], [ -124.763604176999962, 49.245831116000026 ], [ -124.763615465999976, 49.246147929000117 ], [ -124.76237947099996, 49.246166797000079 ], [ -124.762367016000013, 49.245816935000036 ], [ -124.762258353999982, 49.245815689000075 ], [ -124.76226197799997, 49.245679780000039 ], [ -124.766062453999965, 49.245527292000098 ], [ -124.767271774999983, 49.245621080000021 ], [ -124.768658354999943, 49.245672287000048 ], [ -124.769922485999942, 49.245694890000095 ], [ -124.771154166999963, 49.245699948000095 ], [ -124.772574911999953, 49.245695092000069 ], [ -124.773922342999953, 49.24564788100011 ], [ -124.775010776999977, 49.245605968000106 ], [ -124.774981622999974, 49.246710908000118 ], [ -124.769493881999907, 49.246648474000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23503417", "BldgCostT": "15681667", "sL_LossRatio": "0.961518709969189", "sL_AssetLoss": "29413.437", "sL_BldgLoss": "28281.57", "sL_StrLoss": "24402.37", "sL_NStrLoss": "3879.2", "sL_ContLoss": "1131.867", "geom_point": "0101000020E61000004A2D733EA5315FC06EE179A9D8A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.771390945999912, 49.259911602000052 ], [ -124.771451852999945, 49.25761053300009 ], [ -124.77176974799994, 49.25761415100007 ], [ -124.77177615399999, 49.257372041000089 ], [ -124.772094781999968, 49.257375666000073 ], [ -124.772100651999907, 49.257153749000103 ], [ -124.772315564999957, 49.257156193000114 ], [ -124.772320754999924, 49.256959953000091 ], [ -124.772693720999897, 49.256964195000108 ], [ -124.772700355, 49.256713262000055 ], [ -124.773123969999929, 49.256718078000112 ], [ -124.773129449999942, 49.256510773000052 ], [ -124.773504116999973, 49.256515030000045 ], [ -124.773514255999928, 49.256131281000059 ], [ -124.774052132999927, 49.25613739100006 ], [ -124.77406456199995, 49.255666794000021 ], [ -124.774436177999959, 49.255671014000043 ], [ -124.774443863999977, 49.255379902000065 ], [ -124.774690542999963, 49.255382702000091 ], [ -124.774699772999952, 49.255033008000083 ], [ -124.77504512599999, 49.255036928000031 ], [ -124.775054179999984, 49.254693816000099 ], [ -124.775299791999913, 49.25469660300007 ], [ -124.77530498099999, 49.254499921000068 ], [ -124.775661412999952, 49.254503964000079 ], [ -124.775676199, 49.25394332900008 ], [ -124.776084009999977, 49.253947955000072 ], [ -124.77609711099997, 49.25345103800008 ], [ -124.776364834999953, 49.253454074000032 ], [ -124.77637692699993, 49.252995344000048 ], [ -124.776699617999967, 49.252999001000063 ], [ -124.77671193899999, 49.252531451000038 ], [ -124.776967381999953, 49.252534345000086 ], [ -124.776979355999956, 49.252079856000066 ], [ -124.777283456999953, 49.25208330099999 ], [ -124.777295869999961, 49.251611963000073 ], [ -124.777611437999923, 49.251615537000085 ], [ -124.777624485999965, 49.251119969000101 ], [ -124.779046955999945, 49.25113607100014 ], [ -124.77904346299999, 49.251038950000044 ], [ -124.77986753299993, 49.251026253000163 ], [ -124.779857834999916, 49.250756528000117 ], [ -124.780681898999987, 49.250743825000022 ], [ -124.780643083999948, 49.249664920000093 ], [ -124.779819035999978, 49.249677621000075 ], [ -124.779789939999944, 49.248868443000113 ], [ -124.780719830999956, 49.248854109000064 ], [ -124.780720521999939, 49.24888587600001 ], [ -124.780861660999946, 49.249774036000069 ], [ -124.780970304999968, 49.250457597000079 ], [ -124.781307432999952, 49.250436159000088 ], [ -124.781104984999942, 49.250800772000041 ], [ -124.781011302999971, 49.25088968000005 ], [ -124.780886512999956, 49.251008110000058 ], [ -124.780618869999969, 49.251307001 ], [ -124.780564150999979, 49.251368104000086 ], [ -124.780033368, 49.252137121000018 ], [ -124.77907037599999, 49.253769247999983 ], [ -124.778809380999959, 49.254211611000059 ], [ -124.778181691999961, 49.255064106000098 ], [ -124.777656610999912, 49.255718909000116 ], [ -124.7776351199999, 49.255741710000095 ], [ -124.776269891999974, 49.257191086000077 ], [ -124.774985714999929, 49.258259396000128 ], [ -124.774721197999924, 49.258468287000028 ], [ -124.773791397999958, 49.259202656000063 ], [ -124.774792233999932, 49.259746204000109 ], [ -124.775182508999947, 49.259379753000111 ], [ -124.774869555999956, 49.259235438000083 ], [ -124.775165242999918, 49.258952269000069 ], [ -124.775492186999941, 49.259103267000114 ], [ -124.775649993999949, 49.258942701000059 ], [ -124.775290136999956, 49.258773192000049 ], [ -124.775970903, 49.258159375000105 ], [ -124.776570372999956, 49.258152812000027 ], [ -124.777559344999972, 49.260348104000094 ], [ -124.777533570999935, 49.260619647000077 ], [ -124.777500010000011, 49.26061926700006 ], [ -124.777494841999982, 49.260815506 ], [ -124.777176189999949, 49.260811897000124 ], [ -124.77717034199999, 49.261033813000026 ], [ -124.77685242299998, 49.261030211000033 ], [ -124.776846042999949, 49.261272321000078 ], [ -124.771356575999945, 49.261209984000054 ], [ -124.771390945999912, 49.259911602000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "144609167", "BldgCostT": "99466667", "sL_LossRatio": "0.979658409341978", "sL_AssetLoss": "103738.2", "sL_BldgLoss": "101628", "sL_StrLoss": "91320", "sL_NStrLoss": "10308", "sL_ContLoss": "2110.2", "geom_point": "0101000020E61000006E4F773B8E315FC0970854FF209F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.781782747, 49.246967818 ], [ -124.781772345999954, 49.246678868000089 ], [ -124.781360347999936, 49.246685224000053 ], [ -124.7813312299999, 49.245876045000074 ], [ -124.782155211999921, 49.24586333200007 ], [ -124.782145502, 49.245593606000106 ], [ -124.781733512999963, 49.245599963000082 ], [ -124.781694681999937, 49.244521058000103 ], [ -124.782106659999954, 49.244514701000078 ], [ -124.782099244999969, 49.244308705000051 ], [ -124.778387874999936, 49.244266755000126 ], [ -124.778418215, 49.24511131000002 ], [ -124.776770269999986, 49.245136674000101 ], [ -124.776741227999963, 49.244327492000089 ], [ -124.77715321, 49.244321154000062 ], [ -124.777133842999916, 49.243781700000049 ], [ -124.776721867999953, 49.243788038000069 ], [ -124.776702507999914, 49.243248584000135 ], [ -124.775878564999957, 49.243261256000082 ], [ -124.775888241999908, 49.24353098400006 ], [ -124.775476268999938, 49.243537317000062 ], [ -124.775485940999914, 49.243807045000047 ], [ -124.775073966999926, 49.243813378000084 ], [ -124.775112652999951, 49.244892288000067 ], [ -124.775029572999941, 49.244893564000066 ], [ -124.775010776999977, 49.245605968000106 ], [ -124.773922342999953, 49.24564788100011 ], [ -124.772574911999953, 49.245695092000069 ], [ -124.771154166999963, 49.245699948000095 ], [ -124.769922485999942, 49.245694890000095 ], [ -124.768658354999943, 49.245672287000048 ], [ -124.767271774999983, 49.245621080000021 ], [ -124.766062453999965, 49.245527292000098 ], [ -124.76226197799997, 49.245679780000039 ], [ -124.762277730999926, 49.245088846000051 ], [ -124.761929069999937, 49.245094166000065 ], [ -124.76190593299999, 49.244444061000088 ], [ -124.761628414999976, 49.244440877 ], [ -124.761633115, 49.24426463900005 ], [ -124.761372746999939, 49.244261650000048 ], [ -124.761477175999957, 49.242214008000097 ], [ -124.761479301999969, 49.242172717000066 ], [ -124.761895283999962, 49.240370491000071 ], [ -124.761940524999943, 49.240075842000117 ], [ -124.764351740999984, 49.240103482000109 ], [ -124.764385320999935, 49.238841505000039 ], [ -124.764998494999944, 49.238848525000066 ], [ -124.764999798999966, 49.238799520000065 ], [ -124.76552939199999, 49.238805580000076 ], [ -124.765545548999938, 49.238197826000089 ], [ -124.765678555999955, 49.238195630000057 ], [ -124.768941964999939, 49.238152758000112 ], [ -124.770458001999913, 49.238151772000066 ], [ -124.77053752099998, 49.238150599000072 ], [ -124.771035043999944, 49.238156267000136 ], [ -124.771016033999928, 49.238874552 ], [ -124.771175181999979, 49.23887636500011 ], [ -124.771164236999965, 49.239289980000066 ], [ -124.771233204999973, 49.239290765000078 ], [ -124.771232577, 49.239314496000077 ], [ -124.772106372999986, 49.239324443000086 ], [ -124.772105266999986, 49.23936628600007 ], [ -124.772218285999941, 49.239367572000042 ], [ -124.772199179999944, 49.240402748000065 ], [ -124.772321493, 49.24198475300004 ], [ -124.773298810999961, 49.241839597000116 ], [ -124.773814287999954, 49.241804996000049 ], [ -124.777298448999929, 49.241851685000057 ], [ -124.77889892899999, 49.241874152000108 ], [ -124.780164133999961, 49.24189132900004 ], [ -124.780597394999944, 49.24189712300003 ], [ -124.781086347999974, 49.2419038190001 ], [ -124.781731875999967, 49.24191257800004 ], [ -124.783326281999933, 49.241934162000049 ], [ -124.783752382999978, 49.241939919000018 ], [ -124.786309625999962, 49.24190841100004 ], [ -124.787650675999913, 49.241891979000044 ], [ -124.788339708999928, 49.241884565000056 ], [ -124.789039691999932, 49.241877 ], [ -124.789133312999965, 49.243551392 ], [ -124.789254905999911, 49.243520385000053 ], [ -124.789787494999928, 49.243518206000054 ], [ -124.79043099099999, 49.243515600000137 ], [ -124.790533688999943, 49.245157700000121 ], [ -124.790540998999958, 49.245247801000033 ], [ -124.790527031999915, 49.245247800000115 ], [ -124.790317275999882, 49.24524796400005 ], [ -124.789637849999949, 49.245252942000036 ], [ -124.789509954999986, 49.245211019000067 ], [ -124.7892240799999, 49.245227599000053 ], [ -124.788872584, 49.245286692000057 ], [ -124.788402712, 49.245411892000078 ], [ -124.788186856999971, 49.245274332000093 ], [ -124.788095007999985, 49.245215803000058 ], [ -124.787752907999959, 49.245306127000106 ], [ -124.787463503999916, 49.245382518000049 ], [ -124.78715430699998, 49.245504130000043 ], [ -124.787060960999938, 49.245564609000041 ], [ -124.786904423999914, 49.24566604000006 ], [ -124.786797303999919, 49.245772842000108 ], [ -124.786656515999965, 49.245910833000046 ], [ -124.786544193999958, 49.246154533000102 ], [ -124.786481919999943, 49.246289624000049 ], [ -124.786224696999909, 49.246677403000135 ], [ -124.78604611499999, 49.246844601000106 ], [ -124.785849197999951, 49.246923408000058 ], [ -124.78434735399999, 49.247959720000047 ], [ -124.783348024999952, 49.248992556000104 ], [ -124.783127931999971, 49.249135531000107 ], [ -124.782150007999959, 49.248936396000033 ], [ -124.780720521999939, 49.24888587600001 ], [ -124.780719830999956, 49.248854109000064 ], [ -124.781025988999929, 49.248849388000032 ], [ -124.781006578999907, 49.248309935000123 ], [ -124.781418589999973, 49.248303581000144 ], [ -124.781379761999943, 49.247224677000077 ], [ -124.781791765999955, 49.247218321000048 ], [ -124.781782747, 49.246967818 ] ], [ [ -124.783381466999941, 49.245574528000148 ], [ -124.783371749999901, 49.245304801000088 ], [ -124.782959764999958, 49.245311163000096 ], [ -124.782969478999945, 49.245580889000088 ], [ -124.783381466999941, 49.245574528000148 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141154417", "BldgCostT": "94461667", "sL_LossRatio": "0.964770360579327", "sL_AssetLoss": "137994.6", "sL_BldgLoss": "133133.1", "sL_StrLoss": "114224.5", "sL_NStrLoss": "18908.6", "sL_ContLoss": "4861.5", "geom_point": "0101000020E61000008539419B1C325FC0AE964B1552A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.777559344999972, 49.260348104000094 ], [ -124.776570372999956, 49.258152812000027 ], [ -124.775970903, 49.258159375000105 ], [ -124.775290136999956, 49.258773192000049 ], [ -124.775649993999949, 49.258942701000059 ], [ -124.775492186999941, 49.259103267000114 ], [ -124.775165242999918, 49.258952269000069 ], [ -124.774869555999956, 49.259235438000083 ], [ -124.775182508999947, 49.259379753000111 ], [ -124.774792233999932, 49.259746204000109 ], [ -124.773791397999958, 49.259202656000063 ], [ -124.774721197999924, 49.258468287000028 ], [ -124.774985714999929, 49.258259396000128 ], [ -124.776269891999974, 49.257191086000077 ], [ -124.7776351199999, 49.255741710000095 ], [ -124.777656610999912, 49.255718909000116 ], [ -124.778181691999961, 49.255064106000098 ], [ -124.778809380999959, 49.254211611000059 ], [ -124.77907037599999, 49.253769247999983 ], [ -124.780033368, 49.252137121000018 ], [ -124.780564150999979, 49.251368104000086 ], [ -124.780618869999969, 49.251307001 ], [ -124.780886512999956, 49.251008110000058 ], [ -124.781011302999971, 49.25088968000005 ], [ -124.781104984999942, 49.250800772000041 ], [ -124.781307432999952, 49.250436159000088 ], [ -124.780970304999968, 49.250457597000079 ], [ -124.780861660999946, 49.249774036000069 ], [ -124.780720521999939, 49.24888587600001 ], [ -124.782150007999959, 49.248936396000033 ], [ -124.783127931999971, 49.249135531000107 ], [ -124.783348024999952, 49.248992556000104 ], [ -124.78434735399999, 49.247959720000047 ], [ -124.785849197999951, 49.246923408000058 ], [ -124.78604611499999, 49.246844601000106 ], [ -124.786224696999909, 49.246677403000135 ], [ -124.786481919999943, 49.246289624000049 ], [ -124.786544193999958, 49.246154533000102 ], [ -124.786656515999965, 49.245910833000046 ], [ -124.786797303999919, 49.245772842000108 ], [ -124.786904423999914, 49.24566604000006 ], [ -124.787060960999938, 49.245564609000041 ], [ -124.78715430699998, 49.245504130000043 ], [ -124.787463503999916, 49.245382518000049 ], [ -124.787752907999959, 49.245306127000106 ], [ -124.788095007999985, 49.245215803000058 ], [ -124.788186856999971, 49.245274332000093 ], [ -124.788402712, 49.245411892000078 ], [ -124.788872584, 49.245286692000057 ], [ -124.7892240799999, 49.245227599000053 ], [ -124.789509954999986, 49.245211019000067 ], [ -124.789637849999949, 49.245252942000036 ], [ -124.790317275999882, 49.24524796400005 ], [ -124.790325296999981, 49.245465013000079 ], [ -124.790338419999969, 49.24611328500005 ], [ -124.790345098999921, 49.24644280800009 ], [ -124.790343305999983, 49.246571134000099 ], [ -124.79033719499995, 49.247009793000124 ], [ -124.790353154999977, 49.24748952300007 ], [ -124.790368002999926, 49.247935494000075 ], [ -124.790428230999964, 49.248399289000169 ], [ -124.790433202999949, 49.248437590000073 ], [ -124.790534997999913, 49.248635904000032 ], [ -124.790748910999923, 49.248854299000101 ], [ -124.790992175999989, 49.249102797000027 ], [ -124.791097893999918, 49.249312787000115 ], [ -124.791167607999981, 49.249745590000039 ], [ -124.787640103999976, 49.249760989000087 ], [ -124.787660981999977, 49.250211955000069 ], [ -124.787680517999974, 49.250632794000083 ], [ -124.787020239999919, 49.250633516000065 ], [ -124.786296997999926, 49.250634294000115 ], [ -124.785618997999975, 49.250634746000095 ], [ -124.78493820199999, 49.250635199000101 ], [ -124.784711602, 49.25063561000011 ], [ -124.78458799299996, 49.250635840000079 ], [ -124.784285545999964, 49.250636406000034 ], [ -124.784147900999983, 49.250636658000062 ], [ -124.783886363999926, 49.250637126000079 ], [ -124.783630213999984, 49.250637600000047 ], [ -124.783687610999948, 49.250887401000085 ], [ -124.784097146999954, 49.252187036000059 ], [ -124.78400835399998, 49.252680665000085 ], [ -124.783965549999934, 49.252931 ], [ -124.783920177999917, 49.253196315000068 ], [ -124.783883952999943, 49.253408011000033 ], [ -124.78380767199999, 49.25507372600007 ], [ -124.783735590999939, 49.256050966000075 ], [ -124.783451946999932, 49.256047770000116 ], [ -124.783442021999974, 49.256426469000083 ], [ -124.783079028999978, 49.256422377000064 ], [ -124.783064538999952, 49.25697507800011 ], [ -124.782673924999941, 49.256970673000048 ], [ -124.78266185, 49.257431087000086 ], [ -124.782250932999929, 49.257426451000121 ], [ -124.782235465999975, 49.258015995000051 ], [ -124.781922952999949, 49.258012469000036 ], [ -124.781912375999966, 49.258415502000098 ], [ -124.781490984999934, 49.258410746000031 ], [ -124.781485834999913, 49.258606901000114 ], [ -124.77787421799999, 49.258926399000067 ], [ -124.778481998999979, 49.259777193000033 ], [ -124.778384051999922, 49.260318624000071 ], [ -124.778350851999903, 49.26049819600015 ], [ -124.7777183809999, 49.260491037000101 ], [ -124.777714938999964, 49.260621701000112 ], [ -124.777533570999935, 49.260619647000077 ], [ -124.777559344999972, 49.260348104000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.966955821856555", "sL_AssetLoss": "1341.84", "sL_BldgLoss": "1297.5", "sL_StrLoss": "1168", "sL_NStrLoss": "129.5", "sL_ContLoss": "44.34", "geom_point": "0101000020E610000089718AD0C0315FC0FCEC576CD9A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.777469973999985, 49.263485900000035 ], [ -124.777778874999953, 49.263489398000118 ], [ -124.777735510999918, 49.263701432000111 ], [ -124.777401651, 49.265213159000126 ], [ -124.777385908999946, 49.265323475000109 ], [ -124.777181189999979, 49.265394249000046 ], [ -124.777078613999919, 49.265412569000063 ], [ -124.777211848999983, 49.264009060000049 ], [ -124.777456118999964, 49.264011826000086 ], [ -124.777469973999985, 49.263485900000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93940584", "BldgCostT": "62288334", "sL_LossRatio": "0.937831290695309", "sL_AssetLoss": "128399.32", "sL_BldgLoss": "120416.9", "sL_StrLoss": "95764.5", "sL_NStrLoss": "24652.4", "sL_ContLoss": "7982.42", "geom_point": "0101000020E610000036966E1AB4325FC03B3633E134A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.788180777999983, 49.253196930000072 ], [ -124.788008965999936, 49.252978605000095 ], [ -124.787464430999961, 49.253168321000103 ], [ -124.786452108999967, 49.253521032000087 ], [ -124.786270621999961, 49.253573752000058 ], [ -124.786154930999913, 49.253607369000171 ], [ -124.78551852599999, 49.253792245000035 ], [ -124.785249696000037, 49.253838719000051 ], [ -124.784977570999956, 49.253850999000065 ], [ -124.784727488, 49.253809407000041 ], [ -124.784539093999953, 49.2537163900001 ], [ -124.784323719999918, 49.253504295000049 ], [ -124.784110300999927, 49.253164291000061 ], [ -124.784752161999961, 49.252986326000155 ], [ -124.785364207999976, 49.252816596000095 ], [ -124.786032499999919, 49.252613410000052 ], [ -124.78620270099999, 49.25250728200006 ], [ -124.786304386999987, 49.252346496000015 ], [ -124.786343283999912, 49.252118295000066 ], [ -124.786340324999969, 49.252022636000106 ], [ -124.786316683999942, 49.251265197000066 ], [ -124.786305797999972, 49.25091671200007 ], [ -124.786296997999926, 49.250634294000115 ], [ -124.787020239999919, 49.250633516000065 ], [ -124.787680517999974, 49.250632794000083 ], [ -124.787660981999977, 49.250211955000069 ], [ -124.787640103999976, 49.249760989000087 ], [ -124.791167607999981, 49.249745590000039 ], [ -124.791097893999918, 49.249312787000115 ], [ -124.790992175999989, 49.249102797000027 ], [ -124.790748910999923, 49.248854299000101 ], [ -124.790534997999913, 49.248635904000032 ], [ -124.790433202999949, 49.248437590000073 ], [ -124.790428230999964, 49.248399289000169 ], [ -124.790368002999926, 49.247935494000075 ], [ -124.793257082999929, 49.247928195000036 ], [ -124.793271415999939, 49.248397805000117 ], [ -124.793285198999968, 49.248850311000119 ], [ -124.794005021999951, 49.248849175000089 ], [ -124.794697512999903, 49.248848105000043 ], [ -124.795531010999952, 49.248846423000067 ], [ -124.795915551999926, 49.248845631000023 ], [ -124.796474916999941, 49.248844495000114 ], [ -124.797138530999945, 49.248843520000023 ], [ -124.797830797999936, 49.248842482000057 ], [ -124.79783037699994, 49.249910372000045 ], [ -124.797830119999929, 49.250620299000055 ], [ -124.79783000899999, 49.251673430000025 ], [ -124.797829931999942, 49.252699535000019 ], [ -124.797829899999897, 49.252879537000105 ], [ -124.797829871999966, 49.253317833000054 ], [ -124.797829805999925, 49.25391840700005 ], [ -124.797556602, 49.25391742500009 ], [ -124.797241141999933, 49.25391630200005 ], [ -124.79628858699999, 49.253912896000053 ], [ -124.79572770599998, 49.253910962000063 ], [ -124.794895488999941, 49.253908104000125 ], [ -124.794794005999975, 49.253907908000023 ], [ -124.794692146, 49.253932120000044 ], [ -124.793882471999936, 49.254124568000123 ], [ -124.792182302999919, 49.25452861600008 ], [ -124.790473856999967, 49.25493526300005 ], [ -124.790067745999977, 49.254981099000062 ], [ -124.789174977999949, 49.255003506000115 ], [ -124.789136718999927, 49.254471087000049 ], [ -124.789100403999939, 49.254410317000065 ], [ -124.78898940199997, 49.254224600000022 ], [ -124.788915320999962, 49.254130441 ], [ -124.78856895700001, 49.253690248000083 ], [ -124.788231190999937, 49.25326096800012 ], [ -124.788180777999983, 49.253196930000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "303631885", "BldgCostT": "203657078", "sL_LossRatio": "0.832812782114956", "sL_AssetLoss": "222648.6", "sL_BldgLoss": "185424.6", "sL_StrLoss": "111845.1", "sL_NStrLoss": "73579.5", "sL_ContLoss": "37224", "geom_point": "0101000020E610000079F14431F5325FC06CEE9EF29E9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.798518926999932, 49.245243740000021 ], [ -124.799216714999943, 49.245243807000094 ], [ -124.799217261999985, 49.245669955000032 ], [ -124.799217374999941, 49.245778048000055 ], [ -124.799219008999941, 49.24701450700006 ], [ -124.798982521999932, 49.247014472000032 ], [ -124.79850122199997, 49.247014399000051 ], [ -124.797830176, 49.247014289000049 ], [ -124.797830323999918, 49.247364500000046 ], [ -124.797830339999933, 49.247463396000036 ], [ -124.797830797999936, 49.248842482000057 ], [ -124.797138530999945, 49.248843520000023 ], [ -124.796474916999941, 49.248844495000114 ], [ -124.795915551999926, 49.248845631000023 ], [ -124.795531010999952, 49.248846423000067 ], [ -124.794697512999903, 49.248848105000043 ], [ -124.794005021999951, 49.248849175000089 ], [ -124.793285198999968, 49.248850311000119 ], [ -124.793271415999939, 49.248397805000117 ], [ -124.793257082999929, 49.247928195000036 ], [ -124.79324445899999, 49.247498638000124 ], [ -124.793230089999895, 49.247010695000085 ], [ -124.793926155999927, 49.247011748000027 ], [ -124.794625793999927, 49.247012796000057 ], [ -124.794574391999973, 49.245678852000019 ], [ -124.794557707999928, 49.245245896000014 ], [ -124.795069603999977, 49.245244396000025 ], [ -124.795083341999899, 49.245244394000053 ], [ -124.796485804999961, 49.245244903000085 ], [ -124.79649952499993, 49.24524487700004 ], [ -124.797830693999956, 49.245243688000052 ], [ -124.798518926999932, 49.245243740000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "278950249", "BldgCostT": "177311703", "sL_LossRatio": "0.856140373440928", "sL_AssetLoss": "195936.21", "sL_BldgLoss": "167748.9", "sL_StrLoss": "96071.5", "sL_NStrLoss": "71677.4", "sL_ContLoss": "28187.31", "geom_point": "0101000020E6100000A3159D3426335FC07DD5F30311A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.799999492, 49.247015436000027 ], [ -124.800577593999918, 49.247016099000099 ], [ -124.800576399999926, 49.247483301000102 ], [ -124.800574131999966, 49.248383037000075 ], [ -124.800573005999922, 49.24883790500003 ], [ -124.800572546999931, 49.249012828000076 ], [ -124.800571030999961, 49.249579678000039 ], [ -124.800568286999976, 49.250616502000099 ], [ -124.800563472999968, 49.25344782600007 ], [ -124.800563405999981, 49.253491652000029 ], [ -124.800562308999972, 49.25414051000012 ], [ -124.800311707999981, 49.254119682000123 ], [ -124.800084050999885, 49.254101221000084 ], [ -124.799997431999898, 49.254094215000087 ], [ -124.798393342999958, 49.253964117000116 ], [ -124.797829805999925, 49.25391840700005 ], [ -124.797829871999966, 49.253317833000054 ], [ -124.797829899999897, 49.252879537000105 ], [ -124.797829931999942, 49.252699535000019 ], [ -124.79783000899999, 49.251673430000025 ], [ -124.797830119999929, 49.250620299000055 ], [ -124.79783037699994, 49.249910372000045 ], [ -124.797830797999936, 49.248842482000057 ], [ -124.797830339999933, 49.247463396000036 ], [ -124.797830323999918, 49.247364500000046 ], [ -124.797830176, 49.247014289000049 ], [ -124.79850122199997, 49.247014399000051 ], [ -124.798982521999932, 49.247014472000032 ], [ -124.799219008999941, 49.24701450700006 ], [ -124.799999492, 49.247015436000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92177303", "BldgCostT": "59053746", "sL_LossRatio": "0.924077157869855", "sL_AssetLoss": "141089.95", "sL_BldgLoss": "130378", "sL_StrLoss": "103630.5", "sL_NStrLoss": "26747.5", "sL_ContLoss": "10711.95", "geom_point": "0101000020E610000049317B975A335FC07544C6BCF19F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.804070229999937, 49.245241543000098 ], [ -124.804744403999962, 49.245241291000106 ], [ -124.804747212, 49.245664309000077 ], [ -124.804753382999962, 49.246581790000036 ], [ -124.804756303999966, 49.247017406000062 ], [ -124.804758706999934, 49.247472687 ], [ -124.804765892, 49.24883040800006 ], [ -124.804710022999942, 49.248830469000069 ], [ -124.804036445999927, 49.248831425000098 ], [ -124.803323516999953, 49.248832400000033 ], [ -124.80332271199994, 49.250620090000062 ], [ -124.80332293, 49.25367471000002 ], [ -124.803322991999948, 49.254333214000091 ], [ -124.802315914999895, 49.2542680090001 ], [ -124.800562308999972, 49.25414051000012 ], [ -124.800563405999981, 49.253491652000029 ], [ -124.800563472999968, 49.25344782600007 ], [ -124.800568286999976, 49.250616502000099 ], [ -124.800571030999961, 49.249579678000039 ], [ -124.800572546999931, 49.249012828000076 ], [ -124.800573005999922, 49.24883790500003 ], [ -124.800574131999966, 49.248383037000075 ], [ -124.800576399999926, 49.247483301000102 ], [ -124.800577593999918, 49.247016099000099 ], [ -124.801276961999989, 49.247016164000087 ], [ -124.801970520999973, 49.247016201000058 ], [ -124.801970945999983, 49.246562628000035 ], [ -124.801971871999939, 49.245671673000111 ], [ -124.801972298999914, 49.245242991000076 ], [ -124.802682573999959, 49.245242370000035 ], [ -124.803324108999931, 49.245241812000074 ], [ -124.804070229999937, 49.245241543000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128965167", "BldgCostT": "84551667", "sL_LossRatio": "0.890718320139705", "sL_AssetLoss": "193035.1", "sL_BldgLoss": "171939.9", "sL_StrLoss": "131845.9", "sL_NStrLoss": "40094", "sL_ContLoss": "21095.2", "geom_point": "0101000020E6100000BFFC0C7747335FC0B15BFC54329F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.800588563999938, 49.241411113000105 ], [ -124.800590874999969, 49.24044240200007 ], [ -124.80094089899994, 49.240545287000018 ], [ -124.801162195999936, 49.240581982000066 ], [ -124.801708106, 49.240591712000075 ], [ -124.801979820000014, 49.240537096 ], [ -124.802215707999977, 49.240489303000039 ], [ -124.802663424999963, 49.240459623000049 ], [ -124.802867197999944, 49.240446091000123 ], [ -124.803325300999944, 49.240506999000026 ], [ -124.803324978999939, 49.241403789000039 ], [ -124.803324772999986, 49.241858993000086 ], [ -124.8033244799999, 49.242285525000106 ], [ -124.803323907999967, 49.243077354000022 ], [ -124.80332359099999, 49.243503601000029 ], [ -124.803323610999925, 49.243968106000047 ], [ -124.803323603999942, 49.244741734000051 ], [ -124.80332359599997, 49.245151710000108 ], [ -124.80332391599994, 49.245209329000069 ], [ -124.803324108999931, 49.245241812000074 ], [ -124.802682573999959, 49.245242370000035 ], [ -124.801972298999914, 49.245242991000076 ], [ -124.801971871999939, 49.245671673000111 ], [ -124.801970945999983, 49.246562628000035 ], [ -124.801970520999973, 49.247016201000058 ], [ -124.801276961999989, 49.247016164000087 ], [ -124.800577593999918, 49.247016099000099 ], [ -124.799999492, 49.247015436000027 ], [ -124.799219008999941, 49.24701450700006 ], [ -124.799217374999941, 49.245778048000055 ], [ -124.799217261999985, 49.245669955000032 ], [ -124.799216714999943, 49.245243807000094 ], [ -124.799216286999979, 49.245153795000128 ], [ -124.799216031999947, 49.244752248000083 ], [ -124.799215523999976, 49.243960639000093 ], [ -124.799215465999964, 49.243912928000022 ], [ -124.799215177999898, 49.243499292000052 ], [ -124.799215265, 49.24307912400009 ], [ -124.799215421, 49.242278514000056 ], [ -124.799215509999954, 49.241843077000055 ], [ -124.799907354999959, 49.241845776000055 ], [ -124.800003865999912, 49.241846154000086 ], [ -124.800587481999941, 49.241848403000112 ], [ -124.800588563999938, 49.241411113000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "313292825", "BldgCostT": "200587904", "sL_LossRatio": "0.736877027516871", "sL_AssetLoss": "403603.3", "sL_BldgLoss": "297406", "sL_StrLoss": "167088", "sL_NStrLoss": "130318", "sL_ContLoss": "106197.3", "geom_point": "0101000020E610000080B1C6F291335FC09FB61D85319F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.804747212, 49.245664309000077 ], [ -124.804744403999962, 49.245241291000106 ], [ -124.804070229999937, 49.245241543000098 ], [ -124.803324108999931, 49.245241812000074 ], [ -124.80332391599994, 49.245209329000069 ], [ -124.80332359599997, 49.245151710000108 ], [ -124.803323603999942, 49.244741734000051 ], [ -124.803323610999925, 49.243968106000047 ], [ -124.80332359099999, 49.243503601000029 ], [ -124.803323907999967, 49.243077354000022 ], [ -124.8033244799999, 49.242285525000106 ], [ -124.803324772999986, 49.241858993000086 ], [ -124.803324978999939, 49.241403789000039 ], [ -124.803325300999944, 49.240506999000026 ], [ -124.803861383999944, 49.240629998000045 ], [ -124.804064335999939, 49.240701852000022 ], [ -124.804194605999911, 49.240747991000084 ], [ -124.804498279999947, 49.240942202000056 ], [ -124.804668693999972, 49.241250992000069 ], [ -124.805203261999964, 49.241033952000045 ], [ -124.805246977999929, 49.241016195000064 ], [ -124.805241089999939, 49.240177197000072 ], [ -124.80522610099996, 49.239428100000097 ], [ -124.805246751999974, 49.238808327000108 ], [ -124.805509241999957, 49.238545152000057 ], [ -124.805934381, 49.238374274000094 ], [ -124.806118773999984, 49.238490097000117 ], [ -124.807442586999926, 49.23849750600003 ], [ -124.80744542599993, 49.239073073000043 ], [ -124.807445628000011, 49.239109044000067 ], [ -124.8074458399999, 49.239154009000046 ], [ -124.807451004999947, 49.240201608000056 ], [ -124.807643107999951, 49.240203694000108 ], [ -124.807637221999983, 49.241875207000071 ], [ -124.807458799999949, 49.241875088000043 ], [ -124.807458845999932, 49.241884126000031 ], [ -124.807467635999956, 49.24350805900005 ], [ -124.807498245999952, 49.245148453000105 ], [ -124.807519212, 49.245240488000142 ], [ -124.807525341999906, 49.245274544000068 ], [ -124.807525376999934, 49.245274738000091 ], [ -124.807589524, 49.246672499000084 ], [ -124.807583303999962, 49.247018988000029 ], [ -124.807549350999963, 49.248381432000066 ], [ -124.807538296999923, 49.248825115000066 ], [ -124.806853454999924, 49.248826443000048 ], [ -124.806812240999946, 49.248826515000125 ], [ -124.806154805999967, 49.248827797000033 ], [ -124.805767861999982, 49.248828518000046 ], [ -124.805397032, 49.248829207 ], [ -124.805113116999976, 49.248829767000196 ], [ -124.804765892, 49.24883040800006 ], [ -124.804758706999934, 49.247472687 ], [ -124.804756303999966, 49.247017406000062 ], [ -124.804753382999962, 49.246581790000036 ], [ -124.804747212, 49.245664309000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126333001", "BldgCostT": "82710001", "sL_LossRatio": "0.949441523966669", "sL_AssetLoss": "154955.62", "sL_BldgLoss": "147121.3", "sL_StrLoss": "120872.5", "sL_NStrLoss": "26248.8", "sL_ContLoss": "7834.32", "geom_point": "0101000020E61000004C214E2F4A335FC01F7B2897679E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.803325300999944, 49.240506999000026 ], [ -124.802867197999944, 49.240446091000123 ], [ -124.802663424999963, 49.240459623000049 ], [ -124.802215707999977, 49.240489303000039 ], [ -124.801979820000014, 49.240537096 ], [ -124.801708106, 49.240591712000075 ], [ -124.801162195999936, 49.240581982000066 ], [ -124.80094089899994, 49.240545287000018 ], [ -124.800590874999969, 49.24044240200007 ], [ -124.800003156999978, 49.240269370000085 ], [ -124.799990392999987, 49.24026560800008 ], [ -124.799904401999953, 49.240251393000072 ], [ -124.799212901999979, 49.240137307000133 ], [ -124.798576255999961, 49.240032026000073 ], [ -124.798512003999988, 49.240021393000113 ], [ -124.797832416999981, 49.239613294000094 ], [ -124.797833817999944, 49.239557492000117 ], [ -124.797833746999956, 49.23945708300009 ], [ -124.797833108999953, 49.238775039000082 ], [ -124.797832098999962, 49.237648659000115 ], [ -124.79783181099999, 49.237334202000085 ], [ -124.797831303999899, 49.236767346000072 ], [ -124.79783126699995, 49.236741792000032 ], [ -124.797155262999965, 49.236501408000024 ], [ -124.79711186499999, 49.236485959000071 ], [ -124.796451397999988, 49.236251112000083 ], [ -124.796110942999945, 49.236073583000056 ], [ -124.794973096999968, 49.235480301000031 ], [ -124.794976193999943, 49.234726908 ], [ -124.79497634099999, 49.234717413000062 ], [ -124.79497786899999, 49.234613067000112 ], [ -124.794978002999969, 49.234603608000093 ], [ -124.795754952, 49.234605091000098 ], [ -124.796443185, 49.2346063970001 ], [ -124.797143067999983, 49.234606961000075 ], [ -124.797597161999988, 49.234607309000111 ], [ -124.797831587999923, 49.23460749700012 ], [ -124.797914618999954, 49.234725406000095 ], [ -124.799197724999914, 49.23472548700002 ], [ -124.799211510999911, 49.234725493000035 ], [ -124.800005433999928, 49.23472478700004 ], [ -124.800558913999936, 49.23472430200011 ], [ -124.801742879999978, 49.234723894000112 ], [ -124.803357708999954, 49.234723790000061 ], [ -124.803355996999983, 49.234951586000079 ], [ -124.803355470999946, 49.235148697000064 ], [ -124.80335446399998, 49.235529822000046 ], [ -124.803353312999917, 49.235961488 ], [ -124.804021295999917, 49.235964530000111 ], [ -124.804035000999988, 49.235964595000098 ], [ -124.804719714999976, 49.235967695000078 ], [ -124.804721088999955, 49.237245906000034 ], [ -124.805428430999925, 49.237248232000077 ], [ -124.806113626999974, 49.237250500000052 ], [ -124.806815850999953, 49.237252386000115 ], [ -124.806971096999973, 49.237252801000118 ], [ -124.80746790299996, 49.237244813000082 ], [ -124.807529935999966, 49.23724546400009 ], [ -124.807653092999928, 49.237246810000087 ], [ -124.808312662999938, 49.237251400000048 ], [ -124.808757378999957, 49.237254495000045 ], [ -124.808791724999963, 49.237258905000054 ], [ -124.809003592999915, 49.237286103000024 ], [ -124.807886433999983, 49.238150175000101 ], [ -124.807648512999947, 49.238334205000108 ], [ -124.80744680399999, 49.238333694000126 ], [ -124.807443345999943, 49.238468042000072 ], [ -124.807442586999926, 49.23849750600003 ], [ -124.806118773999984, 49.238490097000117 ], [ -124.805934381, 49.238374274000094 ], [ -124.805509241999957, 49.238545152000057 ], [ -124.805246751999974, 49.238808327000108 ], [ -124.80522610099996, 49.239428100000097 ], [ -124.805241089999939, 49.240177197000072 ], [ -124.805246977999929, 49.241016195000064 ], [ -124.805203261999964, 49.241033952000045 ], [ -124.804668693999972, 49.241250992000069 ], [ -124.804498279999947, 49.240942202000056 ], [ -124.804194605999911, 49.240747991000084 ], [ -124.804064335999939, 49.240701852000022 ], [ -124.803861383999944, 49.240629998000045 ], [ -124.803325300999944, 49.240506999000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "315534116", "BldgCostT": "209193879", "sL_LossRatio": "0.828569025758477", "sL_AssetLoss": "327711.14", "sL_BldgLoss": "271531.3", "sL_StrLoss": "182587.1", "sL_NStrLoss": "88944.2", "sL_ContLoss": "56179.84", "geom_point": "0101000020E610000079D9337401335FC069F91E81019F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.794424244, 49.241824757000096 ], [ -124.79430383499999, 49.239063543000043 ], [ -124.79448659599997, 49.239015219000038 ], [ -124.794797072, 49.238933121000102 ], [ -124.795051452999985, 49.238911650000041 ], [ -124.795236067999937, 49.238936228000071 ], [ -124.795569777, 49.239029966000096 ], [ -124.795798159999933, 49.239166798000092 ], [ -124.795995380999926, 49.239284948000041 ], [ -124.796214283999987, 49.239469230000061 ], [ -124.796488336999971, 49.239589298000034 ], [ -124.797035818, 49.239603997000103 ], [ -124.797178054, 49.239607801000048 ], [ -124.797833817999944, 49.239557492000117 ], [ -124.797832416999981, 49.239613294000094 ], [ -124.798512003999988, 49.240021393000113 ], [ -124.798576255999961, 49.240032026000073 ], [ -124.799212901999979, 49.240137307000133 ], [ -124.799904401999953, 49.240251393000072 ], [ -124.799990392999987, 49.24026560800008 ], [ -124.800003156999978, 49.240269370000085 ], [ -124.800590874999969, 49.24044240200007 ], [ -124.800588563999938, 49.241411113000105 ], [ -124.800587481999941, 49.241848403000112 ], [ -124.800003865999912, 49.241846154000086 ], [ -124.799907354999959, 49.241845776000055 ], [ -124.799215509999954, 49.241843077000055 ], [ -124.799215421, 49.242278514000056 ], [ -124.799215265, 49.24307912400009 ], [ -124.799215177999898, 49.243499292000052 ], [ -124.799215465999964, 49.243912928000022 ], [ -124.799215523999976, 49.243960639000093 ], [ -124.799216031999947, 49.244752248000083 ], [ -124.799216286999979, 49.245153795000128 ], [ -124.799216714999943, 49.245243807000094 ], [ -124.798518926999932, 49.245243740000021 ], [ -124.797830693999956, 49.245243688000052 ], [ -124.79649952499993, 49.24524487700004 ], [ -124.796485804999961, 49.245244903000085 ], [ -124.795083341999899, 49.245244394000053 ], [ -124.795069603999977, 49.245244396000025 ], [ -124.794557707999928, 49.245245896000014 ], [ -124.794555978999966, 49.24521132600006 ], [ -124.794553205999989, 49.245156696000031 ], [ -124.794509987999945, 49.244060592000075 ], [ -124.794487792999988, 49.243497889000039 ], [ -124.794424244, 49.241824757000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188408728", "BldgCostT": "123629857", "sL_LossRatio": "0.95285975582853", "sL_AssetLoss": "131229.91", "sL_BldgLoss": "125043.7", "sL_StrLoss": "110487.1", "sL_NStrLoss": "14556.6", "sL_ContLoss": "6186.21", "geom_point": "0101000020E61000008D543AB378325FC0DC54C4867A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.772321493, 49.24198475300004 ], [ -124.772199179999944, 49.240402748000065 ], [ -124.772218285999941, 49.239367572000042 ], [ -124.77283814899998, 49.239374624000071 ], [ -124.77283029799996, 49.239671721000015 ], [ -124.772883264999948, 49.239672323000057 ], [ -124.772873396999955, 49.24004575200005 ], [ -124.772941084999943, 49.240046522000043 ], [ -124.772917769999978, 49.240928827000069 ], [ -124.773426620999928, 49.240934613000064 ], [ -124.773414063999923, 49.241409995000069 ], [ -124.777046706999926, 49.241354155000103 ], [ -124.77705638799992, 49.241623882000034 ], [ -124.777304558999973, 49.241620064000095 ], [ -124.778259223999967, 49.241605368000094 ], [ -124.778281958, 49.240741303000128 ], [ -124.77828396699999, 49.240664957000035 ], [ -124.783771013999967, 49.240726945000098 ], [ -124.783750223999945, 49.241520690000087 ], [ -124.785295498999943, 49.241496812000051 ], [ -124.785285771999938, 49.241227086000038 ], [ -124.786109675999953, 49.241214348000028 ], [ -124.78609021699999, 49.24067489500009 ], [ -124.786502164, 49.240668523000053 ], [ -124.786482697999958, 49.240129072000094 ], [ -124.786875019999968, 49.240123003000058 ], [ -124.786893742, 49.240097805000055 ], [ -124.786875171999981, 49.239583248000038 ], [ -124.78728710899999, 49.239576873000026 ], [ -124.787277373000023, 49.239307148000123 ], [ -124.787689308999916, 49.239300771000096 ], [ -124.787679568999962, 49.239031046000072 ], [ -124.789327301, 49.239005528000078 ], [ -124.789317553999979, 49.23873580300009 ], [ -124.791377202999968, 49.238703873000048 ], [ -124.791379014999933, 49.238753960000061 ], [ -124.792616, 49.238767810000098 ], [ -124.792583696999912, 49.237875523000049 ], [ -124.794643306999973, 49.237843535000145 ], [ -124.794662857999953, 49.238382984000083 ], [ -124.795898637, 49.238363774000071 ], [ -124.795908419999961, 49.238633498000063 ], [ -124.796320346999948, 49.23862709200003 ], [ -124.796330131999952, 49.238896816000121 ], [ -124.79674206299994, 49.238890408000017 ], [ -124.7967518499999, 49.239160133000063 ], [ -124.797163782, 49.239153723000079 ], [ -124.797153991999934, 49.238884 ], [ -124.797565920999929, 49.238877588000051 ], [ -124.797546338999922, 49.238338139000113 ], [ -124.797134412999924, 49.238344550000114 ], [ -124.797085467000031, 49.236995928000049 ], [ -124.796673554, 49.23700233700005 ], [ -124.796663766999984, 49.236732613000072 ], [ -124.796274795999963, 49.236738663000054 ], [ -124.796273587999977, 49.236785303000012 ], [ -124.790786989, 49.236723951000087 ], [ -124.790787000999941, 49.236723464000079 ], [ -124.790258267999945, 49.236717537000089 ], [ -124.790269348999971, 49.236292163000016 ], [ -124.789641746999962, 49.236301890000092 ], [ -124.78965149299999, 49.236571616000127 ], [ -124.787591930999923, 49.236603513000034 ], [ -124.787601667999951, 49.236873239000069 ], [ -124.786365921999902, 49.236892361000066 ], [ -124.786375652999979, 49.237162087000058 ], [ -124.785963734999939, 49.237168457000074 ], [ -124.785973462999934, 49.237438184000013 ], [ -124.785561543, 49.237444554000085 ], [ -124.785571269999977, 49.237714279000102 ], [ -124.785159345999915, 49.237720648000071 ], [ -124.785169070999984, 49.237990373000095 ], [ -124.783933295999972, 49.238009469000076 ], [ -124.783923577999957, 49.237739743000084 ], [ -124.783511654999955, 49.237746104000081 ], [ -124.783492223999971, 49.237206652000083 ], [ -124.783080305999931, 49.237213012000055 ], [ -124.783051166999883, 49.236403833000054 ], [ -124.783042446, 49.236403967000101 ], [ -124.783032365999986, 49.236147529000064 ], [ -124.782792144999931, 49.234977600000065 ], [ -124.782757513999982, 49.234977785000069 ], [ -124.781327744999928, 49.23498521500003 ], [ -124.781345154999897, 49.234321694000123 ], [ -124.782870405999915, 49.234286929000042 ], [ -124.782763309999893, 49.234757207000065 ], [ -124.782829511999964, 49.234756229000048 ], [ -124.783556627999971, 49.234745439000065 ], [ -124.784784042999945, 49.234736380000065 ], [ -124.78548740399998, 49.234731205000053 ], [ -124.78619851799999, 49.234726833000082 ], [ -124.78688699199995, 49.234722612000027 ], [ -124.787865482999905, 49.234715597000019 ], [ -124.787879262, 49.234715489000074 ], [ -124.788828768999949, 49.234708442000056 ], [ -124.789618282999967, 49.234693395000129 ], [ -124.790510569999952, 49.234676389000086 ], [ -124.790850719, 49.234669928000059 ], [ -124.791349513999961, 49.234673643000093 ], [ -124.791623730999916, 49.234675697000128 ], [ -124.792540708999923, 49.234682544000052 ], [ -124.792540101999947, 49.232900601000019 ], [ -124.792539900999955, 49.232338491000071 ], [ -124.792497204999975, 49.232292095000048 ], [ -124.793145053999979, 49.232290832000039 ], [ -124.793323553999983, 49.232290489000064 ], [ -124.793937802999949, 49.232289295000015 ], [ -124.793937676, 49.23244960400006 ], [ -124.794483371999974, 49.232449588000044 ], [ -124.794990011000024, 49.23244960800011 ], [ -124.794978002999969, 49.234603608000093 ], [ -124.79497786899999, 49.234613067000112 ], [ -124.79497634099999, 49.234717413000062 ], [ -124.794976193999943, 49.234726908 ], [ -124.794973096999968, 49.235480301000031 ], [ -124.796110942999945, 49.236073583000056 ], [ -124.796451397999988, 49.236251112000083 ], [ -124.79711186499999, 49.236485959000071 ], [ -124.797155262999965, 49.236501408000024 ], [ -124.79783126699995, 49.236741792000032 ], [ -124.797831303999899, 49.236767346000072 ], [ -124.79783181099999, 49.237334202000085 ], [ -124.797832098999962, 49.237648659000115 ], [ -124.797833108999953, 49.238775039000082 ], [ -124.797833746999956, 49.23945708300009 ], [ -124.797833817999944, 49.239557492000117 ], [ -124.797178054, 49.239607801000048 ], [ -124.797035818, 49.239603997000103 ], [ -124.796488336999971, 49.239589298000034 ], [ -124.796214283999987, 49.239469230000061 ], [ -124.795995380999926, 49.239284948000041 ], [ -124.795798159999933, 49.239166798000092 ], [ -124.795569777, 49.239029966000096 ], [ -124.795236067999937, 49.238936228000071 ], [ -124.795051452999985, 49.238911650000041 ], [ -124.794797072, 49.238933121000102 ], [ -124.79448659599997, 49.239015219000038 ], [ -124.79430383499999, 49.239063543000043 ], [ -124.794424244, 49.241824757000096 ], [ -124.79420405399992, 49.241825127000062 ], [ -124.793709654999972, 49.241825853000122 ], [ -124.793075298999952, 49.241826797000051 ], [ -124.792418581999954, 49.241836222000138 ], [ -124.791665517999959, 49.241847003000046 ], [ -124.791017901999965, 49.241855866000044 ], [ -124.790327222999906, 49.241865303000033 ], [ -124.789699502999966, 49.24187100000011 ], [ -124.789039691999932, 49.241877 ], [ -124.788339708999928, 49.241884565000056 ], [ -124.787650675999913, 49.241891979000044 ], [ -124.786309625999962, 49.24190841100004 ], [ -124.783752382999978, 49.241939919000018 ], [ -124.783326281999933, 49.241934162000049 ], [ -124.781731875999967, 49.24191257800004 ], [ -124.781086347999974, 49.2419038190001 ], [ -124.780597394999944, 49.24189712300003 ], [ -124.780164133999961, 49.24189132900004 ], [ -124.77889892899999, 49.241874152000108 ], [ -124.777298448999929, 49.241851685000057 ], [ -124.773814287999954, 49.241804996000049 ], [ -124.773298810999961, 49.241839597000116 ], [ -124.772321493, 49.24198475300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134558167", "BldgCostT": "90036667", "sL_LossRatio": "0.916701057317247", "sL_AssetLoss": "198455.1", "sL_BldgLoss": "181924", "sL_StrLoss": "145760", "sL_NStrLoss": "36164", "sL_ContLoss": "16531.1", "geom_point": "0101000020E6100000E0EFBCF9B2325FC0F461418A4F9F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.790533688999943, 49.245157700000121 ], [ -124.79043099099999, 49.243515600000137 ], [ -124.789787494999928, 49.243518206000054 ], [ -124.789254905999911, 49.243520385000053 ], [ -124.789133312999965, 49.243551392 ], [ -124.789039691999932, 49.241877 ], [ -124.789699502999966, 49.24187100000011 ], [ -124.790327222999906, 49.241865303000033 ], [ -124.791017901999965, 49.241855866000044 ], [ -124.791665517999959, 49.241847003000046 ], [ -124.792418581999954, 49.241836222000138 ], [ -124.793075298999952, 49.241826797000051 ], [ -124.793709654999972, 49.241825853000122 ], [ -124.79420405399992, 49.241825127000062 ], [ -124.794424244, 49.241824757000096 ], [ -124.794487792999988, 49.243497889000039 ], [ -124.794509987999945, 49.244060592000075 ], [ -124.794553205999989, 49.245156696000031 ], [ -124.794555978999966, 49.24521132600006 ], [ -124.794557707999928, 49.245245896000014 ], [ -124.794574391999973, 49.245678852000019 ], [ -124.794625793999927, 49.247012796000057 ], [ -124.793926155999927, 49.247011748000027 ], [ -124.793230089999895, 49.247010695000085 ], [ -124.79324445899999, 49.247498638000124 ], [ -124.793257082999929, 49.247928195000036 ], [ -124.790368002999926, 49.247935494000075 ], [ -124.790353154999977, 49.24748952300007 ], [ -124.79033719499995, 49.247009793000124 ], [ -124.790343305999983, 49.246571134000099 ], [ -124.790345098999921, 49.24644280800009 ], [ -124.790338419999969, 49.24611328500005 ], [ -124.790325296999981, 49.245465013000079 ], [ -124.790317275999882, 49.24524796400005 ], [ -124.790527031999915, 49.245247800000115 ], [ -124.790540998999958, 49.245247801000033 ], [ -124.790533688999943, 49.245157700000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130040250", "BldgCostT": "87945000", "sL_LossRatio": "0.968913792398689", "sL_AssetLoss": "164668.623", "sL_BldgLoss": "159549.7", "sL_StrLoss": "135812.3", "sL_NStrLoss": "23737.4", "sL_ContLoss": "5118.923", "geom_point": "0101000020E6100000C0B0BADDA4325FC0AE0659FDAE9D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.786850968999943, 49.232943725000048 ], [ -124.786838793999976, 49.23226100600003 ], [ -124.787167989999901, 49.232265678000076 ], [ -124.787994012999945, 49.232277464000077 ], [ -124.78955699, 49.232299699000045 ], [ -124.789546815999969, 49.231374208000027 ], [ -124.78954273, 49.23099503500007 ], [ -124.789536786999989, 49.230441505000144 ], [ -124.790180563999968, 49.230443929000081 ], [ -124.790864588999952, 49.230446490000062 ], [ -124.791084089999941, 49.230448109000079 ], [ -124.791113302, 49.228641694000061 ], [ -124.791803877999911, 49.22864901300008 ], [ -124.79249570199994, 49.228656308000062 ], [ -124.79316429799999, 49.228662910000054 ], [ -124.793901400999957, 49.22867020299999 ], [ -124.794468280999979, 49.228675644000056 ], [ -124.795012324, 49.2286809000001 ], [ -124.795003069999922, 49.230463102000058 ], [ -124.794990011000024, 49.23244960800011 ], [ -124.794483371999974, 49.232449588000044 ], [ -124.793937676, 49.23244960400006 ], [ -124.793937802999949, 49.232289295000015 ], [ -124.793323553999983, 49.232290489000064 ], [ -124.793145053999979, 49.232290832000039 ], [ -124.792497204999975, 49.232292095000048 ], [ -124.792539900999955, 49.232338491000071 ], [ -124.792540101999947, 49.232900601000019 ], [ -124.792540708999923, 49.234682544000052 ], [ -124.791623730999916, 49.234675697000128 ], [ -124.791349513999961, 49.234673643000093 ], [ -124.790850719, 49.234669928000059 ], [ -124.790510569999952, 49.234676389000086 ], [ -124.789618282999967, 49.234693395000129 ], [ -124.788828768999949, 49.234708442000056 ], [ -124.787879262, 49.234715489000074 ], [ -124.787865482999905, 49.234715597000019 ], [ -124.78688699199995, 49.234722612000027 ], [ -124.786872620999958, 49.234022658000093 ], [ -124.786864494999975, 49.233627007000074 ], [ -124.786854413999976, 49.233135300000058 ], [ -124.786850968999943, 49.232943725000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173491894", "BldgCostT": "117786523", "sL_LossRatio": "0.926782195015978", "sL_AssetLoss": "176528.1", "sL_BldgLoss": "163603.1", "sL_StrLoss": "121494.6", "sL_NStrLoss": "42108.5", "sL_ContLoss": "12925", "geom_point": "0101000020E6100000D11B07C117335FC0662F91C1C09D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.797914618999954, 49.234725406000095 ], [ -124.797831587999923, 49.23460749700012 ], [ -124.797597161999988, 49.234607309000111 ], [ -124.797143067999983, 49.234606961000075 ], [ -124.796443185, 49.2346063970001 ], [ -124.795754952, 49.234605091000098 ], [ -124.794978002999969, 49.234603608000093 ], [ -124.794990011000024, 49.23244960800011 ], [ -124.795003069999922, 49.230463102000058 ], [ -124.795248826999952, 49.230464298000108 ], [ -124.795757121999941, 49.23046676400007 ], [ -124.796426891999957, 49.230469988000067 ], [ -124.797130962999972, 49.230472900000116 ], [ -124.797832902999957, 49.230475804000022 ], [ -124.797832682, 49.230221903000022 ], [ -124.79821999399995, 49.229936400000085 ], [ -124.798523875999976, 49.229787359000092 ], [ -124.798650785999925, 49.22972510600006 ], [ -124.799114089999961, 49.229579094000115 ], [ -124.79946081199999, 49.229489292000075 ], [ -124.799899982999989, 49.229440844000088 ], [ -124.800007216999987, 49.22942901400009 ], [ -124.80012799499994, 49.229415711000065 ], [ -124.800583611999954, 49.229410899000072 ], [ -124.80057731, 49.230451400000106 ], [ -124.800574184999988, 49.230995996000026 ], [ -124.800574789, 49.231346114000054 ], [ -124.801281417999974, 49.231343194000019 ], [ -124.801426991999975, 49.232451995000069 ], [ -124.801572610999955, 49.232818215000144 ], [ -124.801954109999912, 49.233346296000022 ], [ -124.801759494999914, 49.23381490600012 ], [ -124.801743082999934, 49.234611395000044 ], [ -124.801742879999978, 49.234723894000112 ], [ -124.800558913999936, 49.23472430200011 ], [ -124.800005433999928, 49.23472478700004 ], [ -124.799211510999911, 49.234725493000035 ], [ -124.799197724999914, 49.23472548700002 ], [ -124.797914618999954, 49.234725406000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141468750", "BldgCostT": "95355000", "sL_LossRatio": "0.954000235202657", "sL_AssetLoss": "196086.22", "sL_BldgLoss": "187066.3", "sL_StrLoss": "152010.2", "sL_NStrLoss": "35056.1", "sL_ContLoss": "9019.92", "geom_point": "0101000020E61000007F262D222B335FC06FBEB623419D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.800574184999988, 49.230995996000026 ], [ -124.80057731, 49.230451400000106 ], [ -124.800583611999954, 49.229410899000072 ], [ -124.80012799499994, 49.229415711000065 ], [ -124.800007216999987, 49.22942901400009 ], [ -124.799899982999989, 49.229440844000088 ], [ -124.79946081199999, 49.229489292000075 ], [ -124.799114089999961, 49.229579094000115 ], [ -124.798650785999925, 49.22972510600006 ], [ -124.798523875999976, 49.229787359000092 ], [ -124.79821999399995, 49.229936400000085 ], [ -124.797832682, 49.230221903000022 ], [ -124.797832902999957, 49.230475804000022 ], [ -124.797130962999972, 49.230472900000116 ], [ -124.796426891999957, 49.230469988000067 ], [ -124.795757121999941, 49.23046676400007 ], [ -124.795248826999952, 49.230464298000108 ], [ -124.795003069999922, 49.230463102000058 ], [ -124.795012324, 49.2286809000001 ], [ -124.795012981999918, 49.228579040000099 ], [ -124.795024290999962, 49.226896899000032 ], [ -124.795751863999953, 49.226926246000055 ], [ -124.796412400999884, 49.226952894000128 ], [ -124.797111963, 49.22698114000012 ], [ -124.797182583999984, 49.226984003000091 ], [ -124.797834186999935, 49.226984001000083 ], [ -124.798515436999978, 49.226984888000111 ], [ -124.79920591799997, 49.226985791000061 ], [ -124.79990360799999, 49.226986454000063 ], [ -124.799999689999964, 49.226986534000034 ], [ -124.800268894999988, 49.226986806000127 ], [ -124.800595508999947, 49.226822996000067 ], [ -124.800649081999964, 49.226795760000059 ], [ -124.801295190999923, 49.226467181000032 ], [ -124.801967495, 49.226125301000103 ], [ -124.802439322999987, 49.225913606000113 ], [ -124.802628785999929, 49.225877362000091 ], [ -124.802790798000018, 49.2258463900001 ], [ -124.803357907999953, 49.225825697000055 ], [ -124.803365082999932, 49.228048317000095 ], [ -124.803364124999945, 49.230151479000057 ], [ -124.803364058999946, 49.230271709000078 ], [ -124.80336461399996, 49.23046169600007 ], [ -124.803364007999903, 49.231019690000089 ], [ -124.802627706999985, 49.231005286000062 ], [ -124.802563612999933, 49.230937992000079 ], [ -124.802443086999915, 49.230874498000048 ], [ -124.802007101999905, 49.23086429500016 ], [ -124.80088771699991, 49.230967193 ], [ -124.800574184999988, 49.230995996000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282160543", "BldgCostT": "176176899", "sL_LossRatio": "0.832266421017116", "sL_AssetLoss": "257971.84", "sL_BldgLoss": "214701.3", "sL_StrLoss": "146479.2", "sL_NStrLoss": "68222.1", "sL_ContLoss": "43270.54", "geom_point": "0101000020E61000001DA212F08E335FC0CA875F98699D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.80336389699994, 49.23208910500005 ], [ -124.803364007999903, 49.231019690000089 ], [ -124.80336461399996, 49.23046169600007 ], [ -124.803364058999946, 49.230271709000078 ], [ -124.803364124999945, 49.230151479000057 ], [ -124.803365082999932, 49.228048317000095 ], [ -124.803357907999953, 49.225825697000055 ], [ -124.803375909999914, 49.225127407000073 ], [ -124.804245078999983, 49.225195051000114 ], [ -124.804710627999938, 49.225231299000029 ], [ -124.804710652, 49.224614076000094 ], [ -124.804710684999947, 49.224161889000094 ], [ -124.80540344799999, 49.224152438000012 ], [ -124.806093786999952, 49.224143 ], [ -124.80609621399999, 49.225599491000068 ], [ -124.80609299, 49.226256596000027 ], [ -124.80609079, 49.22650230000005 ], [ -124.806075486999973, 49.227737196000106 ], [ -124.80606389499998, 49.228616510000073 ], [ -124.806794484999926, 49.228723943000098 ], [ -124.807467404999954, 49.22882288300012 ], [ -124.807468494999938, 49.229096308000045 ], [ -124.807469941999926, 49.229471375000095 ], [ -124.807470001999945, 49.229480378000112 ], [ -124.807473793999989, 49.230444140000031 ], [ -124.80748005199996, 49.232070811000071 ], [ -124.807604908999977, 49.23207039000004 ], [ -124.808317179999989, 49.232078252000058 ], [ -124.80899975599999, 49.232085794000071 ], [ -124.809265000999986, 49.232088567000069 ], [ -124.80973096299999, 49.232093388000045 ], [ -124.81038499099999, 49.232100208000105 ], [ -124.810383285999961, 49.233345108000066 ], [ -124.809695108999918, 49.23334643500003 ], [ -124.808998935999966, 49.233347810000048 ], [ -124.80832123199994, 49.233348385000077 ], [ -124.807636580999926, 49.233348972000066 ], [ -124.807495213999971, 49.233350107000092 ], [ -124.80610674899998, 49.233352762999985 ], [ -124.804718312999967, 49.233354501000093 ], [ -124.804035049999953, 49.233355049000174 ], [ -124.803358700999951, 49.23335558800008 ], [ -124.80336389699994, 49.23208910500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107276167", "BldgCostT": "71331667", "sL_LossRatio": "0.882089231143377", "sL_AssetLoss": "164641.62", "sL_BldgLoss": "145228.6", "sL_StrLoss": "111257.7", "sL_NStrLoss": "33970.9", "sL_ContLoss": "19413.02", "geom_point": "0101000020E6100000BF0B4A87BD335FC031EE8298369D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.80748005199996, 49.232070811000071 ], [ -124.807473793999989, 49.230444140000031 ], [ -124.807470001999945, 49.229480378000112 ], [ -124.807469941999926, 49.229471375000095 ], [ -124.807468494999938, 49.229096308000045 ], [ -124.807467404999954, 49.22882288300012 ], [ -124.806794484999926, 49.228723943000098 ], [ -124.80606389499998, 49.228616510000073 ], [ -124.806075486999973, 49.227737196000106 ], [ -124.80609079, 49.22650230000005 ], [ -124.80609299, 49.226256596000027 ], [ -124.80609621399999, 49.225599491000068 ], [ -124.806093786999952, 49.224143 ], [ -124.807505776999946, 49.224122599000061 ], [ -124.807538221999948, 49.225343767000012 ], [ -124.807539273999964, 49.225383207000043 ], [ -124.807463501999962, 49.225502098000042 ], [ -124.807460351999978, 49.225892755000139 ], [ -124.80765082299996, 49.22584623900012 ], [ -124.808327411000022, 49.225686321000133 ], [ -124.809051625000023, 49.225515134000041 ], [ -124.809723941999891, 49.225346618000081 ], [ -124.81008710499999, 49.225255593000128 ], [ -124.810402389000018, 49.225262695000012 ], [ -124.810395498999924, 49.226493192000063 ], [ -124.810400890999972, 49.227731008000035 ], [ -124.810411879, 49.229013797000071 ], [ -124.810418522999925, 49.229455001000048 ], [ -124.810463400999978, 49.229540650000082 ], [ -124.810536221999968, 49.229679502000096 ], [ -124.810698194999972, 49.229782094000022 ], [ -124.810835169999947, 49.22981185900008 ], [ -124.810972471999932, 49.229886458000067 ], [ -124.810317385999952, 49.230830187000038 ], [ -124.810382495999974, 49.231286392000094 ], [ -124.81038499099999, 49.232100208000105 ], [ -124.80973096299999, 49.232093388000045 ], [ -124.809265000999986, 49.232088567000069 ], [ -124.80899975599999, 49.232085794000071 ], [ -124.808317179999989, 49.232078252000058 ], [ -124.807604908999977, 49.23207039000004 ], [ -124.80748005199996, 49.232070811000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99429534552055", "sL_AssetLoss": "308.52", "sL_BldgLoss": "306.76", "sL_StrLoss": "300", "sL_NStrLoss": "6.76", "sL_ContLoss": "1.76", "geom_point": "0101000020E6100000B1D183CC1F335FC01E75CF15009B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.798196080999944, 49.210827036000076 ], [ -124.799281119999961, 49.210813236000021 ], [ -124.799431477999946, 49.210816335000054 ], [ -124.79944, 49.211051035000033 ], [ -124.799281099999973, 49.211053512000014 ], [ -124.798204905999981, 49.211070277000061 ], [ -124.798196080999944, 49.210827036000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "172853030", "BldgCostT": "109573602", "sL_LossRatio": "0.749084045174385", "sL_AssetLoss": "254188.3", "sL_BldgLoss": "190408.4", "sL_StrLoss": "130787", "sL_NStrLoss": "59621.4", "sL_ContLoss": "63779.9", "geom_point": "0101000020E6100000A7477D06D2335FC0C302F435AA9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.808999232999966, 49.23461974100006 ], [ -124.808998935999966, 49.233347810000048 ], [ -124.809695108999918, 49.23334643500003 ], [ -124.810383285999961, 49.233345108000066 ], [ -124.81038499099999, 49.232100208000105 ], [ -124.810382495999974, 49.231286392000094 ], [ -124.810317385999952, 49.230830187000038 ], [ -124.810972471999932, 49.229886458000067 ], [ -124.810835169999947, 49.22981185900008 ], [ -124.810698194999972, 49.229782094000022 ], [ -124.810536221999968, 49.229679502000096 ], [ -124.810463400999978, 49.229540650000082 ], [ -124.810418522999925, 49.229455001000048 ], [ -124.810411879, 49.229013797000071 ], [ -124.810400890999972, 49.227731008000035 ], [ -124.810395498999924, 49.226493192000063 ], [ -124.810402389000018, 49.225262695000012 ], [ -124.81008710499999, 49.225255593000128 ], [ -124.809723941999891, 49.225346618000081 ], [ -124.809051625000023, 49.225515134000041 ], [ -124.808327411000022, 49.225686321000133 ], [ -124.80765082299996, 49.22584623900012 ], [ -124.807460351999978, 49.225892755000139 ], [ -124.807463501999962, 49.225502098000042 ], [ -124.807539273999964, 49.225383207000043 ], [ -124.807538221999948, 49.225343767000012 ], [ -124.807505776999946, 49.224122599000061 ], [ -124.80748562, 49.223305890000091 ], [ -124.80712138599992, 49.223225402 ], [ -124.807104274999972, 49.223212848000109 ], [ -124.806948085999977, 49.223098163000095 ], [ -124.806928276999912, 49.223083598000088 ], [ -124.806856204, 49.223030712000117 ], [ -124.80632391599994, 49.222500891000017 ], [ -124.805876589999968, 49.222188093000057 ], [ -124.805292085999909, 49.221926903000053 ], [ -124.804968342, 49.221830711000052 ], [ -124.804486324999971, 49.221687493000069 ], [ -124.804160993999986, 49.221538982000062 ], [ -124.803816412999964, 49.221337996000059 ], [ -124.802003722999984, 49.219668778000013 ], [ -124.800110609999976, 49.218406376000075 ], [ -124.800004065999985, 49.218334602000041 ], [ -124.799604235999936, 49.218065299000024 ], [ -124.799694659999915, 49.21806389000006 ], [ -124.799684863999943, 49.217794165000065 ], [ -124.804841971999963, 49.217713683000049 ], [ -124.804804317999938, 49.218268949000091 ], [ -124.807473203999962, 49.218307362000125 ], [ -124.811355983999988, 49.21836313000005 ], [ -124.811651627999979, 49.218347709000113 ], [ -124.81205423899999, 49.218326716000135 ], [ -124.81540028399999, 49.218254126000033 ], [ -124.81573006, 49.218256117000053 ], [ -124.815736701, 49.218297604000043 ], [ -124.816429983999981, 49.218492700000056 ], [ -124.816352490999989, 49.218620894000026 ], [ -124.815908399999941, 49.21845709300009 ], [ -124.815883198999956, 49.218528295000105 ], [ -124.816022411999967, 49.218598104000108 ], [ -124.81564149699993, 49.219072398000094 ], [ -124.81579608399997, 49.219133599000074 ], [ -124.815716518999963, 49.219233295000031 ], [ -124.815997006999936, 49.219372887000077 ], [ -124.81461488399998, 49.220636190000079 ], [ -124.814390420000038, 49.220522202000026 ], [ -124.813751186999966, 49.221063402000084 ], [ -124.813275210999933, 49.220836993000027 ], [ -124.813155273999882, 49.220946694000055 ], [ -124.813450889999942, 49.221094795000063 ], [ -124.812357697999957, 49.222038988000115 ], [ -124.812316294999931, 49.222786697000089 ], [ -124.812813879999965, 49.223578596000095 ], [ -124.81278238699997, 49.224226607000041 ], [ -124.813100007999978, 49.224285002000101 ], [ -124.813536000999974, 49.224179588000034 ], [ -124.813743407999965, 49.224256509000028 ], [ -124.81404579099997, 49.224225202000127 ], [ -124.814091003999962, 49.224332003000029 ], [ -124.813830709999962, 49.224390393000064 ], [ -124.81396749399994, 49.224720787000081 ], [ -124.813533198999949, 49.225628008000044 ], [ -124.813422897999914, 49.225593888000091 ], [ -124.813083515999935, 49.226120804000082 ], [ -124.813292509999926, 49.22616209600011 ], [ -124.812718300999961, 49.227025194000106 ], [ -124.812526591000022, 49.226992395000138 ], [ -124.81231809799999, 49.227319991000044 ], [ -124.81260929799997, 49.227386896000084 ], [ -124.812467788999953, 49.227658891000011 ], [ -124.812619395999945, 49.227701687000035 ], [ -124.812716792999964, 49.228483612000012 ], [ -124.813013705999964, 49.229036205000078 ], [ -124.813101789999905, 49.229620097000073 ], [ -124.813168796, 49.230074628000111 ], [ -124.813355937999987, 49.231344050000168 ], [ -124.812952506999949, 49.231350384000102 ], [ -124.812954120999947, 49.231394474000055 ], [ -124.813364035999953, 49.231398984000073 ], [ -124.813378309999962, 49.231495804000062 ], [ -124.813299582999932, 49.231614001000032 ], [ -124.812975892999987, 49.23176209000011 ], [ -124.812928404999923, 49.231997102000022 ], [ -124.813194505999917, 49.232505484000065 ], [ -124.813725986999955, 49.233153607000084 ], [ -124.813974284999929, 49.233194894000135 ], [ -124.814063018999931, 49.233310203000045 ], [ -124.81393999, 49.233340106000099 ], [ -124.814245901999982, 49.233461199000025 ], [ -124.81453490299999, 49.233446895000036 ], [ -124.814960213999925, 49.233845700000089 ], [ -124.814647489999942, 49.233904106000097 ], [ -124.814651499999954, 49.234030909000062 ], [ -124.815907619, 49.234181802000101 ], [ -124.816306502999936, 49.234589112000037 ], [ -124.81632604799999, 49.234686717000102 ], [ -124.815861134999963, 49.234678588000094 ], [ -124.815608096999981, 49.2346726910001 ], [ -124.815211809999965, 49.234672844000038 ], [ -124.813619107999969, 49.234673383000022 ], [ -124.813303100999946, 49.234673489000102 ], [ -124.813135570999947, 49.234673294000068 ], [ -124.812613527999986, 49.234672686000046 ], [ -124.811842027999958, 49.234671788000085 ], [ -124.81171853699999, 49.234672233000033 ], [ -124.811577637999932, 49.234709391000123 ], [ -124.811077198999911, 49.234709917 ], [ -124.810383989999963, 49.234710632000017 ], [ -124.809703570999943, 49.234713317000057 ], [ -124.809000894999926, 49.234716075000065 ], [ -124.808999939999936, 49.234658366000076 ], [ -124.808999232999966, 49.23461974100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10097584", "BldgCostT": "6228334", "sL_LossRatio": "0.978075183498683", "sL_AssetLoss": "6524.57", "sL_BldgLoss": "6381.52", "sL_StrLoss": "5912.2", "sL_NStrLoss": "469.32", "sL_ContLoss": "143.05", "geom_point": "0101000020E6100000DA53D578E7325FC0AE4CD797959B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.79426265699999, 49.215961039000064 ], [ -124.794253917999924, 49.215719659000051 ], [ -124.793343486999959, 49.215733801000063 ], [ -124.793152255999985, 49.215636272 ], [ -124.792734848999928, 49.215346056000079 ], [ -124.793113381999902, 49.215355243000076 ], [ -124.793105719, 49.21465798400002 ], [ -124.795861768999956, 49.214615153000111 ], [ -124.795871542999947, 49.214884880000106 ], [ -124.796283272999915, 49.214878474000088 ], [ -124.796312604999969, 49.215687652000092 ], [ -124.795900867999961, 49.215694056000096 ], [ -124.795910643999946, 49.215963782000067 ], [ -124.798381075999927, 49.215925334000055 ], [ -124.798386125999912, 49.216064449000108 ], [ -124.798410442999966, 49.216734509000098 ], [ -124.797646252000035, 49.216746408000084 ], [ -124.797076282999939, 49.21636245100008 ], [ -124.7966779599999, 49.216187499000078 ], [ -124.796622017999951, 49.216162950000054 ], [ -124.796158975, 49.216037149000044 ], [ -124.795694004999959, 49.215986957000084 ], [ -124.79426265699999, 49.215961039000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99491784366913", "sL_AssetLoss": "320.73", "sL_BldgLoss": "319.1", "sL_StrLoss": "305", "sL_NStrLoss": "14.1", "sL_ContLoss": "1.63", "geom_point": "0101000020E6100000BA9FD7C843335FC0A77E5A1C009B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.800263394999945, 49.211038201000079 ], [ -124.800255953999937, 49.210833320000084 ], [ -124.801232816999956, 49.210853437000068 ], [ -124.80125357699994, 49.210875132000098 ], [ -124.801717092999965, 49.210882026000036 ], [ -124.801905541999972, 49.210884834000055 ], [ -124.801910184999883, 49.211012515000071 ], [ -124.801392650999929, 49.211020591000128 ], [ -124.800263394999945, 49.211038201000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122557083", "BldgCostT": "84258333", "sL_LossRatio": "0.974096841976802", "sL_AssetLoss": "136350.17", "sL_BldgLoss": "132818.27", "sL_StrLoss": "117112.77", "sL_NStrLoss": "15705.5", "sL_ContLoss": "3531.9", "geom_point": "0101000020E61000000B05CF311E335FC0D7121350389C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.803283613999923, 49.224182103000039 ], [ -124.803310995999965, 49.222480103000066 ], [ -124.803089894999971, 49.222481196000075 ], [ -124.802801836999919, 49.222482653000078 ], [ -124.802664319999948, 49.222483333000127 ], [ -124.801966622999913, 49.222486802000034 ], [ -124.80125058099992, 49.222489951000085 ], [ -124.800574308999927, 49.222492903000109 ], [ -124.800000631999978, 49.222495274000025 ], [ -124.79991827000002, 49.222495582000064 ], [ -124.799212106999931, 49.222498493000039 ], [ -124.798531277000023, 49.222502009000081 ], [ -124.79783348799999, 49.222505600000034 ], [ -124.797157999000021, 49.222508652000023 ], [ -124.797034658999934, 49.222509212000091 ], [ -124.796395796999917, 49.222512088000052 ], [ -124.795730484999964, 49.222516392000117 ], [ -124.794784504999953, 49.222552597000103 ], [ -124.794565098999911, 49.222551204000098 ], [ -124.793843705999961, 49.222546588000078 ], [ -124.793777305, 49.2216454120001 ], [ -124.793767853999938, 49.221517323000036 ], [ -124.793719713999963, 49.220863485000088 ], [ -124.793701819999953, 49.220620781000093 ], [ -124.793687940000012, 49.220432207000066 ], [ -124.793626692, 49.219600607000082 ], [ -124.793577295999967, 49.219012664000019 ], [ -124.793559112, 49.218796435000094 ], [ -124.793549404999936, 49.218680574000075 ], [ -124.793536560999939, 49.218528366000044 ], [ -124.793522244999963, 49.218429908000125 ], [ -124.793502646999983, 49.218295341000051 ], [ -124.793447902999944, 49.217919003000112 ], [ -124.793384230999891, 49.217481376000102 ], [ -124.793321257999978, 49.217048756000082 ], [ -124.793249770999964, 49.216897624000083 ], [ -124.79321582299994, 49.21686927700005 ], [ -124.792851088999953, 49.216564585000086 ], [ -124.792844104999929, 49.216551188000032 ], [ -124.793047981999962, 49.216548023000072 ], [ -124.79303822199995, 49.216278297 ], [ -124.794685191999932, 49.216252712000056 ], [ -124.794675424999951, 49.215982986000064 ], [ -124.794263683999944, 49.215989384000096 ], [ -124.79426265699999, 49.215961039000064 ], [ -124.795694004999959, 49.215986957000084 ], [ -124.796158975, 49.216037149000044 ], [ -124.796622017999951, 49.216162950000054 ], [ -124.7966779599999, 49.216187499000078 ], [ -124.797076282999939, 49.21636245100008 ], [ -124.797646252000035, 49.216746408000084 ], [ -124.797175207999956, 49.216753740000101 ], [ -124.797212819999913, 49.217790804000039 ], [ -124.797667242999935, 49.21782476300006 ], [ -124.797683141999983, 49.218323762000075 ], [ -124.797649097999951, 49.218460343000075 ], [ -124.797684805999964, 49.219444584000016 ], [ -124.798508340999916, 49.219431761000074 ], [ -124.798518130999966, 49.219701486000105 ], [ -124.798929901999927, 49.219695072000064 ], [ -124.798939695999962, 49.219964796000077 ], [ -124.799763238999958, 49.219951964000074 ], [ -124.799753440999922, 49.219682239000058 ], [ -124.800576979999974, 49.21966940100009 ], [ -124.800547574999939, 49.218860227000093 ], [ -124.79931228699995, 49.218879481000101 ], [ -124.799282902999892, 49.218070306000094 ], [ -124.799604235999936, 49.218065299000024 ], [ -124.800004065999985, 49.218334602000041 ], [ -124.800110609999976, 49.218406376000075 ], [ -124.802003722999984, 49.219668778000013 ], [ -124.803816412999964, 49.221337996000059 ], [ -124.804160993999986, 49.221538982000062 ], [ -124.804486324999971, 49.221687493000069 ], [ -124.804968342, 49.221830711000052 ], [ -124.805292085999909, 49.221926903000053 ], [ -124.805876589999968, 49.222188093000057 ], [ -124.80632391599994, 49.222500891000017 ], [ -124.806856204, 49.223030712000117 ], [ -124.806928276999912, 49.223083598000088 ], [ -124.806948085999977, 49.223098163000095 ], [ -124.807104274999972, 49.223212848000109 ], [ -124.80712138599992, 49.223225402 ], [ -124.80748562, 49.223305890000091 ], [ -124.807505776999946, 49.224122599000061 ], [ -124.806093786999952, 49.224143 ], [ -124.80540344799999, 49.224152438000012 ], [ -124.804710684999947, 49.224161889000094 ], [ -124.804044378999919, 49.224171317000113 ], [ -124.803283613999923, 49.224182103000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138902728", "BldgCostT": "93644857", "sL_LossRatio": "0.957333182866562", "sL_AssetLoss": "200265.7", "sL_BldgLoss": "191721", "sL_StrLoss": "156127", "sL_NStrLoss": "35594", "sL_ContLoss": "8544.7", "geom_point": "0101000020E61000008770065E31335FC04464DCFDBF9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.796407027, 49.225157241000083 ], [ -124.796403302999963, 49.224342289000084 ], [ -124.796395796999917, 49.222512088000052 ], [ -124.797034658999934, 49.222509212000091 ], [ -124.797157999000021, 49.222508652000023 ], [ -124.79783348799999, 49.222505600000034 ], [ -124.798531277000023, 49.222502009000081 ], [ -124.799212106999931, 49.222498493000039 ], [ -124.79991827000002, 49.222495582000064 ], [ -124.800000631999978, 49.222495274000025 ], [ -124.800574308999927, 49.222492903000109 ], [ -124.80125058099992, 49.222489951000085 ], [ -124.801966622999913, 49.222486802000034 ], [ -124.802664319999948, 49.222483333000127 ], [ -124.802801836999919, 49.222482653000078 ], [ -124.803089894999971, 49.222481196000075 ], [ -124.803310995999965, 49.222480103000066 ], [ -124.803283613999923, 49.224182103000039 ], [ -124.804044378999919, 49.224171317000113 ], [ -124.804710684999947, 49.224161889000094 ], [ -124.804710652, 49.224614076000094 ], [ -124.804710627999938, 49.225231299000029 ], [ -124.804245078999983, 49.225195051000114 ], [ -124.803375909999914, 49.225127407000073 ], [ -124.803357907999953, 49.225825697000055 ], [ -124.802790798000018, 49.2258463900001 ], [ -124.802628785999929, 49.225877362000091 ], [ -124.802439322999987, 49.225913606000113 ], [ -124.801967495, 49.226125301000103 ], [ -124.801295190999923, 49.226467181000032 ], [ -124.800649081999964, 49.226795760000059 ], [ -124.800595508999947, 49.226822996000067 ], [ -124.800268894999988, 49.226986806000127 ], [ -124.799999689999964, 49.226986534000034 ], [ -124.79990360799999, 49.226986454000063 ], [ -124.79920591799997, 49.226985791000061 ], [ -124.798515436999978, 49.226984888000111 ], [ -124.797834186999935, 49.226984001000083 ], [ -124.797182583999984, 49.226984003000091 ], [ -124.797111963, 49.22698114000012 ], [ -124.796412400999884, 49.226952894000128 ], [ -124.79641011399994, 49.22582489400002 ], [ -124.796407027, 49.225157241000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115912478", "BldgCostT": "78999857", "sL_LossRatio": "0.959081117059436", "sL_AssetLoss": "157512.12", "sL_BldgLoss": "151066.9", "sL_StrLoss": "127005.1", "sL_NStrLoss": "24061.8", "sL_ContLoss": "6445.22", "geom_point": "0101000020E61000003B0A5221C5325FC04126009CEA9C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.789750811999937, 49.226861188000072 ], [ -124.789756610999973, 49.224953802000122 ], [ -124.790436093999958, 49.224955925000089 ], [ -124.791092596999974, 49.224958006000072 ], [ -124.791836734999933, 49.224959086000048 ], [ -124.792475206999981, 49.224960010000075 ], [ -124.79245670799996, 49.223191786000079 ], [ -124.793199606999906, 49.223200143000057 ], [ -124.793848490999963, 49.223207402000099 ], [ -124.793843705999961, 49.222546588000078 ], [ -124.794565098999911, 49.222551204000098 ], [ -124.794784504999953, 49.222552597000103 ], [ -124.795730484999964, 49.222516392000117 ], [ -124.796395796999917, 49.222512088000052 ], [ -124.796403302999963, 49.224342289000084 ], [ -124.796407027, 49.225157241000083 ], [ -124.79641011399994, 49.22582489400002 ], [ -124.796412400999884, 49.226952894000128 ], [ -124.795751863999953, 49.226926246000055 ], [ -124.795024290999962, 49.226896899000032 ], [ -124.795012981999918, 49.228579040000099 ], [ -124.795012324, 49.2286809000001 ], [ -124.794468280999979, 49.228675644000056 ], [ -124.793901400999957, 49.22867020299999 ], [ -124.79316429799999, 49.228662910000054 ], [ -124.79249570199994, 49.228656308000062 ], [ -124.791803877999911, 49.22864901300008 ], [ -124.791113302, 49.228641694000061 ], [ -124.789631460999942, 49.228660737000091 ], [ -124.789750811999937, 49.226861188000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.969761759315822", "sL_AssetLoss": "654.8", "sL_BldgLoss": "635", "sL_StrLoss": "578", "sL_NStrLoss": "57", "sL_ContLoss": "19.8", "geom_point": "0101000020E61000003806CF4ABB325FC024E8D43A969B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.792606964999962, 49.2157452370001 ], [ -124.792597207999975, 49.215475511000093 ], [ -124.792185471999971, 49.215481902000114 ], [ -124.792178882999977, 49.215299721000072 ], [ -124.792450622999965, 49.215322369000084 ], [ -124.792734848999928, 49.215346056000079 ], [ -124.793152255999985, 49.215636272 ], [ -124.793061203999955, 49.215738185000056 ], [ -124.792606964999962, 49.2157452370001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122366500", "BldgCostT": "83500000", "sL_LossRatio": "0.934178178734725", "sL_AssetLoss": "121728.78", "sL_BldgLoss": "113716.37", "sL_StrLoss": "99851.97", "sL_NStrLoss": "13864.4", "sL_ContLoss": "8012.41", "geom_point": "0101000020E61000000F10165F7E325FC04D35B396029D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.782870405999915, 49.234286929000042 ], [ -124.783220018999955, 49.231813323000019 ], [ -124.783297955999942, 49.23181212 ], [ -124.783288243999934, 49.231542393000048 ], [ -124.78370011599999, 49.231536033000062 ], [ -124.78366126, 49.230457127000079 ], [ -124.784073122999985, 49.230450764000061 ], [ -124.784063406999948, 49.230181037000072 ], [ -124.784887127999951, 49.230168308000074 ], [ -124.784877407999929, 49.229898583000086 ], [ -124.786112980999974, 49.229879479000033 ], [ -124.786116847999935, 49.229986741000069 ], [ -124.786166140999967, 49.229986863000093 ], [ -124.786246540999954, 49.230071163000062 ], [ -124.786284640999924, 49.230240063000089 ], [ -124.786434424999953, 49.230414260000039 ], [ -124.786544295999974, 49.230412561000044 ], [ -124.786549169999958, 49.230547708000103 ], [ -124.786588341999916, 49.230593263000067 ], [ -124.786746901999948, 49.230679303000073 ], [ -124.786965889999948, 49.230675914000109 ], [ -124.786970384999933, 49.230800570000028 ], [ -124.7872304699999, 49.230941698000088 ], [ -124.788211216999983, 49.230926514000025 ], [ -124.788201478999937, 49.230656788000033 ], [ -124.788613341999934, 49.230650410000131 ], [ -124.788607498999951, 49.230488593000068 ], [ -124.788593861999971, 49.230110958000076 ], [ -124.789005719999977, 49.230104578000102 ], [ -124.788908301999982, 49.227407318000068 ], [ -124.788344054999925, 49.227416057 ], [ -124.787672793999903, 49.227426450000074 ], [ -124.787546259999928, 49.223920007000089 ], [ -124.787958067999966, 49.223913632000077 ], [ -124.787948331999985, 49.223643906000035 ], [ -124.788360137999973, 49.223637530000111 ], [ -124.788350400999946, 49.223367804000119 ], [ -124.789174005999939, 49.223355046000059 ], [ -124.789172820999951, 49.223322248000031 ], [ -124.789164265999915, 49.22308531900012 ], [ -124.789576066, 49.223078938000072 ], [ -124.789566321999985, 49.222809211000062 ], [ -124.789738425999957, 49.222806545000019 ], [ -124.7899781199999, 49.22280283000007 ], [ -124.789968373999926, 49.222533103000096 ], [ -124.790791965999972, 49.222520334000102 ], [ -124.790782215999982, 49.222250608000067 ], [ -124.79119400899999, 49.222244221000032 ], [ -124.791184256999941, 49.221974495000069 ], [ -124.792007837, 49.221961718000053 ], [ -124.791998082999925, 49.221691992000039 ], [ -124.791586293999927, 49.221698381000117 ], [ -124.791582690999931, 49.221598773000025 ], [ -124.791576540999955, 49.221428656000093 ], [ -124.790341182999953, 49.221447815000026 ], [ -124.790311941999946, 49.220638636000089 ], [ -124.790723721999939, 49.220632251000069 ], [ -124.790704224999956, 49.220092798000039 ], [ -124.790929808, 49.220089300000055 ], [ -124.790921741999981, 49.219596563000081 ], [ -124.790898370000022, 49.219280157000064 ], [ -124.790674980999967, 49.219283620000027 ], [ -124.790616495999942, 49.217665263000086 ], [ -124.792263514999931, 49.217639710000064 ], [ -124.792253757999973, 49.217369985000119 ], [ -124.792665509999907, 49.217363593000087 ], [ -124.792636237999986, 49.216554415000118 ], [ -124.792844104999929, 49.216551188000032 ], [ -124.792851088999953, 49.216564585000086 ], [ -124.79321582299994, 49.21686927700005 ], [ -124.793249770999964, 49.216897624000083 ], [ -124.793321257999978, 49.217048756000082 ], [ -124.793384230999891, 49.217481376000102 ], [ -124.793447902999944, 49.217919003000112 ], [ -124.793502646999983, 49.218295341000051 ], [ -124.793522244999963, 49.218429908000125 ], [ -124.793536560999939, 49.218528366000044 ], [ -124.793549404999936, 49.218680574000075 ], [ -124.793559112, 49.218796435000094 ], [ -124.793577295999967, 49.219012664000019 ], [ -124.793626692, 49.219600607000082 ], [ -124.793687940000012, 49.220432207000066 ], [ -124.793701819999953, 49.220620781000093 ], [ -124.793719713999963, 49.220863485000088 ], [ -124.793767853999938, 49.221517323000036 ], [ -124.793777305, 49.2216454120001 ], [ -124.793843705999961, 49.222546588000078 ], [ -124.793848490999963, 49.223207402000099 ], [ -124.793199606999906, 49.223200143000057 ], [ -124.79245670799996, 49.223191786000079 ], [ -124.792475206999981, 49.224960010000075 ], [ -124.791836734999933, 49.224959086000048 ], [ -124.791092596999974, 49.224958006000072 ], [ -124.790436093999958, 49.224955925000089 ], [ -124.789756610999973, 49.224953802000122 ], [ -124.789750811999937, 49.226861188000072 ], [ -124.789631460999942, 49.228660737000091 ], [ -124.791113302, 49.228641694000061 ], [ -124.791084089999941, 49.230448109000079 ], [ -124.790864588999952, 49.230446490000062 ], [ -124.790180563999968, 49.230443929000081 ], [ -124.789536786999989, 49.230441505000144 ], [ -124.78954273, 49.23099503500007 ], [ -124.789546815999969, 49.231374208000027 ], [ -124.78955699, 49.232299699000045 ], [ -124.787994012999945, 49.232277464000077 ], [ -124.787167989999901, 49.232265678000076 ], [ -124.786838793999976, 49.23226100600003 ], [ -124.786850968999943, 49.232943725000048 ], [ -124.786854413999976, 49.233135300000058 ], [ -124.786864494999975, 49.233627007000074 ], [ -124.786872620999958, 49.234022658000093 ], [ -124.78688699199995, 49.234722612000027 ], [ -124.78619851799999, 49.234726833000082 ], [ -124.78548740399998, 49.234731205000053 ], [ -124.784784042999945, 49.234736380000065 ], [ -124.783556627999971, 49.234745439000065 ], [ -124.782829511999964, 49.234756229000048 ], [ -124.782763309999893, 49.234757207000065 ], [ -124.782870405999915, 49.234286929000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "570411030", "BldgCostT": "357010869", "sL_LossRatio": "0.69952063012563", "sL_AssetLoss": "579988.47", "sL_BldgLoss": "405713.9", "sL_StrLoss": "217541", "sL_NStrLoss": "188172.9", "sL_ContLoss": "174274.57", "geom_point": "0101000020E61000007C53C1B095335FC0BA12A91F0A9E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.804721088999955, 49.237245906000034 ], [ -124.804719714999976, 49.235967695000078 ], [ -124.804035000999988, 49.235964595000098 ], [ -124.804021295999917, 49.235964530000111 ], [ -124.803353312999917, 49.235961488 ], [ -124.80335446399998, 49.235529822000046 ], [ -124.803355470999946, 49.235148697000064 ], [ -124.803355996999983, 49.234951586000079 ], [ -124.803357708999954, 49.234723790000061 ], [ -124.801742879999978, 49.234723894000112 ], [ -124.801743082999934, 49.234611395000044 ], [ -124.801759494999914, 49.23381490600012 ], [ -124.801954109999912, 49.233346296000022 ], [ -124.801572610999955, 49.232818215000144 ], [ -124.801426991999975, 49.232451995000069 ], [ -124.801281417999974, 49.231343194000019 ], [ -124.800574789, 49.231346114000054 ], [ -124.800574184999988, 49.230995996000026 ], [ -124.80088771699991, 49.230967193 ], [ -124.802007101999905, 49.23086429500016 ], [ -124.802443086999915, 49.230874498000048 ], [ -124.802563612999933, 49.230937992000079 ], [ -124.802627706999985, 49.231005286000062 ], [ -124.803364007999903, 49.231019690000089 ], [ -124.80336389699994, 49.23208910500005 ], [ -124.803358700999951, 49.23335558800008 ], [ -124.804035049999953, 49.233355049000174 ], [ -124.804718312999967, 49.233354501000093 ], [ -124.80610674899998, 49.233352762999985 ], [ -124.807495213999971, 49.233350107000092 ], [ -124.807636580999926, 49.233348972000066 ], [ -124.80832123199994, 49.233348385000077 ], [ -124.808998935999966, 49.233347810000048 ], [ -124.808999232999966, 49.23461974100006 ], [ -124.808999939999936, 49.234658366000076 ], [ -124.809000894999926, 49.234716075000065 ], [ -124.809703570999943, 49.234713317000057 ], [ -124.810383989999963, 49.234710632000017 ], [ -124.811077198999911, 49.234709917 ], [ -124.811577637999932, 49.234709391000123 ], [ -124.81171853699999, 49.234672233000033 ], [ -124.811842027999958, 49.234671788000085 ], [ -124.811845331999976, 49.235078708000081 ], [ -124.811753912999961, 49.235275717000071 ], [ -124.811619501, 49.235433600000192 ], [ -124.811085078999952, 49.235819205000105 ], [ -124.810878605999946, 49.235968193000062 ], [ -124.810549193999975, 49.236196174000071 ], [ -124.810417702999928, 49.236287203000124 ], [ -124.810336292999949, 49.236344687000091 ], [ -124.810012594999975, 49.236573373000077 ], [ -124.809358789999933, 49.237035226000025 ], [ -124.809003592999915, 49.237286103000024 ], [ -124.808791724999963, 49.237258905000054 ], [ -124.808757378999957, 49.237254495000045 ], [ -124.808312662999938, 49.237251400000048 ], [ -124.807653092999928, 49.237246810000087 ], [ -124.807529935999966, 49.23724546400009 ], [ -124.80746790299996, 49.237244813000082 ], [ -124.806971096999973, 49.237252801000118 ], [ -124.806815850999953, 49.237252386000115 ], [ -124.806113626999974, 49.237250500000052 ], [ -124.805428430999925, 49.237248232000077 ], [ -124.804721088999955, 49.237245906000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.946353535613931", "sL_AssetLoss": "3879.1", "sL_BldgLoss": "3671", "sL_StrLoss": "2976", "sL_NStrLoss": "695", "sL_ContLoss": "208.1", "geom_point": "0101000020E6100000980A3BD656345FC0D523AA4330A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.820224893, 49.259888503000113 ], [ -124.81949671299999, 49.259807601000027 ], [ -124.818083092999956, 49.259733171000029 ], [ -124.817899610999987, 49.259723505000082 ], [ -124.817781714999938, 49.259714266000081 ], [ -124.817073494999931, 49.259658698000074 ], [ -124.816578991999918, 49.259564990000108 ], [ -124.816305660999944, 49.259481482000091 ], [ -124.816163596999971, 49.259438100000075 ], [ -124.81573992099996, 49.259258799000072 ], [ -124.815400409999981, 49.259060594000061 ], [ -124.815150442999979, 49.258844052000065 ], [ -124.814820177999962, 49.258557882000062 ], [ -124.814844104999949, 49.258406183000048 ], [ -124.815815902999972, 49.25905709300006 ], [ -124.816732379999948, 49.258555701000084 ], [ -124.814856, 49.257605800000114 ], [ -124.814643659999945, 49.257465727000096 ], [ -124.814858346999983, 49.257468085000077 ], [ -124.81587749, 49.258065810000048 ], [ -124.817429004999966, 49.258770811000034 ], [ -124.817730004999987, 49.2591340110001 ], [ -124.817880876999979, 49.259149596000036 ], [ -124.818067183999929, 49.258940293000101 ], [ -124.818181915, 49.259064199000079 ], [ -124.820176217999958, 49.259702644000043 ], [ -124.820181402999964, 49.259843626000084 ], [ -124.820726810999986, 49.259835030000062 ], [ -124.822612877999944, 49.260180607000095 ], [ -124.822578201999988, 49.260365323000052 ], [ -124.821119516999914, 49.260067503000066 ], [ -124.820224893, 49.259888503000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.956318914334181", "sL_AssetLoss": "943.2", "sL_BldgLoss": "902", "sL_StrLoss": "730", "sL_NStrLoss": "172", "sL_ContLoss": "41.2", "geom_point": "0101000020E6100000EFD00BD227345FC0376B11CD13A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.81493981899996, 49.250128705000051 ], [ -124.815414000999951, 49.249736533000075 ], [ -124.815378372999973, 49.251132786000042 ], [ -124.814185084999977, 49.251119682000088 ], [ -124.814217812999985, 49.251048692000047 ], [ -124.814454699999928, 49.250765296000083 ], [ -124.814410394000021, 49.250298194000045 ], [ -124.81493981899996, 49.250128705000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83518167", "BldgCostT": "54656667", "sL_LossRatio": "0.948379544236795", "sL_AssetLoss": "106642.22", "sL_BldgLoss": "101137.3", "sL_StrLoss": "83872.1", "sL_NStrLoss": "17265.2", "sL_ContLoss": "5504.92", "geom_point": "0101000020E6100000746F034670355FC03A3BA5C511A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.832525569999987, 49.269968906000067 ], [ -124.831082258999942, 49.269928193000098 ], [ -124.828379465999916, 49.269906212000102 ], [ -124.82833567699997, 49.26945670500006 ], [ -124.828312478, 49.26925636000005 ], [ -124.82825212099999, 49.268862445000075 ], [ -124.828184700999913, 49.268422468000082 ], [ -124.828204960999983, 49.268078553000073 ], [ -124.82823687099993, 49.267581711000076 ], [ -124.828254772999955, 49.267233792000098 ], [ -124.828282008999977, 49.266772088000018 ], [ -124.828371495999988, 49.263805721000018 ], [ -124.82838483699993, 49.263364362000111 ], [ -124.828393509999913, 49.263076521000087 ], [ -124.828438584999958, 49.261582631000067 ], [ -124.82845012199999, 49.261201304000032 ], [ -124.828524079999937, 49.261004283000055 ], [ -124.829307222999944, 49.261173235000037 ], [ -124.829697896999917, 49.261257513000011 ], [ -124.830996100999982, 49.261417002000066 ], [ -124.832869, 49.261881296000055 ], [ -124.833945515000011, 49.262035103000059 ], [ -124.834671811999897, 49.262321400000104 ], [ -124.837466480000032, 49.263175899000075 ], [ -124.838475103999912, 49.263672896000124 ], [ -124.83950579, 49.264043203 ], [ -124.842755895999957, 49.265728094000039 ], [ -124.84327119699999, 49.265898988000082 ], [ -124.844393215999958, 49.266502806000098 ], [ -124.845438109999989, 49.2668632070001 ], [ -124.846910302999959, 49.26764079499999 ], [ -124.84818641699998, 49.267944102000044 ], [ -124.848823381999978, 49.267988297000031 ], [ -124.848822605999928, 49.267988808000098 ], [ -124.848649197999961, 49.268102888000044 ], [ -124.848399575999935, 49.268153224000109 ], [ -124.848352583999912, 49.26816268900015 ], [ -124.847755101999923, 49.268169793 ], [ -124.846412711999974, 49.268047495000097 ], [ -124.845689198999978, 49.267936192000072 ], [ -124.84569284399997, 49.268535020000073 ], [ -124.844317358999959, 49.268547150000124 ], [ -124.84392726899992, 49.268372896000081 ], [ -124.843590379999966, 49.268378274000042 ], [ -124.843584471999961, 49.268219768000129 ], [ -124.843564541999967, 49.268210863000057 ], [ -124.84336735, 49.268111957 ], [ -124.843168164999923, 49.268115136000084 ], [ -124.843164250999948, 49.268010088000054 ], [ -124.842845883999985, 49.267850402000121 ], [ -124.842745953999938, 49.267851996000061 ], [ -124.842743990000017, 49.267799293000017 ], [ -124.842324425999962, 49.267588844000045 ], [ -124.841911588999892, 49.267595428000035 ], [ -124.84190348199995, 49.267377698000061 ], [ -124.84180297499995, 49.267327284000054 ], [ -124.840665076999954, 49.267345423000044 ], [ -124.840675112999932, 49.267615139000142 ], [ -124.840262954999901, 49.267621707000053 ], [ -124.840285072, 49.268216208000098 ], [ -124.839746270999939, 49.268134295000038 ], [ -124.83935169499992, 49.268095093000028 ], [ -124.839350711999913, 49.268138032000053 ], [ -124.839335977999895, 49.268786055000142 ], [ -124.839326861999908, 49.269186927000071 ], [ -124.839309804999957, 49.269936302000076 ], [ -124.838335337, 49.269934391000106 ], [ -124.837991495999987, 49.269933735000087 ], [ -124.83664901399996, 49.269931081000067 ], [ -124.833597025999964, 49.269999101000103 ], [ -124.832525569999987, 49.269968906000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.966002860600726", "sL_AssetLoss": "908.9", "sL_BldgLoss": "878", "sL_StrLoss": "730", "sL_NStrLoss": "148", "sL_ContLoss": "30.9", "geom_point": "0101000020E6100000ABB09D1867345FC0D68C2D8000A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.817089717999977, 49.257492560000081 ], [ -124.819729853999917, 49.257521460000056 ], [ -124.819706178, 49.258452560000151 ], [ -124.817623505999933, 49.257759586000063 ], [ -124.817089717999977, 49.257492560000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9357417", "BldgCostT": "5981667", "sL_LossRatio": "0.935888558761709", "sL_AssetLoss": "11365.99", "sL_BldgLoss": "10637.3", "sL_StrLoss": "8360", "sL_NStrLoss": "2277.3", "sL_ContLoss": "728.69", "geom_point": "0101000020E61000006F4A589F1B355FC0605AF53522A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.827459134999941, 49.257770633000128 ], [ -124.832748467999963, 49.257827959000046 ], [ -124.830999929999948, 49.260409497000076 ], [ -124.8298191, 49.26007679 ], [ -124.828476495999965, 49.259828992000159 ], [ -124.82740894199992, 49.259757547000113 ], [ -124.827459134999941, 49.257770633000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.966026299481311", "sL_AssetLoss": "2355.94", "sL_BldgLoss": "2275.9", "sL_StrLoss": "1866", "sL_NStrLoss": "409.9", "sL_ContLoss": "80.04", "geom_point": "0101000020E61000006772BDAF82345FC0736062C1B79F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.819497545999965, 49.249319540000052 ], [ -124.819509215999958, 49.248860508000043 ], [ -124.819524792999957, 49.248868298000062 ], [ -124.819783421999915, 49.248792803000129 ], [ -124.819845082000015, 49.248620496000044 ], [ -124.819516766999968, 49.248563575000055 ], [ -124.819527800999964, 49.248129616000057 ], [ -124.818781535999932, 49.24812145000012 ], [ -124.818655094999883, 49.24801940600004 ], [ -124.819056400999983, 49.248084989000091 ], [ -124.819116399, 49.247867100000072 ], [ -124.819789604, 49.247469693000042 ], [ -124.819715605999946, 49.247318706000073 ], [ -124.819876602999926, 49.247217601000081 ], [ -124.820288407999968, 49.247210500000065 ], [ -124.82112408899999, 49.247556601000056 ], [ -124.821277292000019, 49.247563687000131 ], [ -124.821342608999956, 49.247482511000044 ], [ -124.821468894999967, 49.247173515000149 ], [ -124.821524637999943, 49.24713669700003 ], [ -124.821803209999985, 49.24695269799999 ], [ -124.82194141799998, 49.246572503000024 ], [ -124.821855377999938, 49.246492698000047 ], [ -124.821683799999988, 49.246666487000063 ], [ -124.821135600999966, 49.246720591000049 ], [ -124.821115102999926, 49.24652258400004 ], [ -124.821115525, 49.246522498000061 ], [ -124.821212431999967, 49.246502861000096 ], [ -124.821548256999947, 49.246436261000056 ], [ -124.821549748999928, 49.246434503000096 ], [ -124.821550716999937, 49.246434307000072 ], [ -124.821704403999945, 49.246252563000034 ], [ -124.821774531999921, 49.246253329000076 ], [ -124.822233232999949, 49.247066155000084 ], [ -124.820537883, 49.248462631000145 ], [ -124.819497545999965, 49.249319540000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78963833", "BldgCostT": "51098333", "sL_LossRatio": "0.926862258335373", "sL_AssetLoss": "77914.123", "sL_BldgLoss": "72215.66", "sL_StrLoss": "61237.66", "sL_NStrLoss": "10978", "sL_ContLoss": "5698.463", "geom_point": "0101000020E6100000297C6C81F3335FC0C358A65F229F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.811192099999928, 49.254435406000034 ], [ -124.811233393999956, 49.253128189000044 ], [ -124.811339503999974, 49.250394749000051 ], [ -124.811335172999989, 49.249996538000048 ], [ -124.81133553799999, 49.249987611000059 ], [ -124.811244294999966, 49.249706558000135 ], [ -124.810509608999965, 49.249458175000029 ], [ -124.810183205999977, 49.248652282000108 ], [ -124.810122403, 49.248502177000042 ], [ -124.80969213199991, 49.247918241000058 ], [ -124.809533832999975, 49.247862219000069 ], [ -124.809387023999975, 49.247810258000044 ], [ -124.80935631199999, 49.247610160000079 ], [ -124.809238160999925, 49.247262230000075 ], [ -124.809235093999973, 49.247253253000132 ], [ -124.809163676999958, 49.247136085000058 ], [ -124.808916397999894, 49.246730371000069 ], [ -124.807657888999941, 49.245504869000079 ], [ -124.807524230999945, 49.245250098000049 ], [ -124.807519212, 49.245240488000142 ], [ -124.807498245999952, 49.245148453000105 ], [ -124.807467635999956, 49.24350805900005 ], [ -124.807458845999932, 49.241884126000031 ], [ -124.807458799999949, 49.241875088000043 ], [ -124.807637221999983, 49.241875207000071 ], [ -124.807643107999951, 49.240203694000108 ], [ -124.807451004999947, 49.240201608000056 ], [ -124.8074458399999, 49.239154009000046 ], [ -124.807445628000011, 49.239109044000067 ], [ -124.80744542599993, 49.239073073000043 ], [ -124.807442586999926, 49.23849750600003 ], [ -124.807443345999943, 49.238468042000072 ], [ -124.80744680399999, 49.238333694000126 ], [ -124.807648512999947, 49.238334205000108 ], [ -124.807886433999983, 49.238150175000101 ], [ -124.809003592999915, 49.237286103000024 ], [ -124.809358789999933, 49.237035226000025 ], [ -124.810012594999975, 49.236573373000077 ], [ -124.810336292999949, 49.236344687000091 ], [ -124.810417702999928, 49.236287203000124 ], [ -124.810549193999975, 49.236196174000071 ], [ -124.810878605999946, 49.235968193000062 ], [ -124.811085078999952, 49.235819205000105 ], [ -124.811619501, 49.235433600000192 ], [ -124.811753912999961, 49.235275717000071 ], [ -124.811845331999976, 49.235078708000081 ], [ -124.811842027999958, 49.234671788000085 ], [ -124.812613527999986, 49.234672686000046 ], [ -124.813135570999947, 49.234673294000068 ], [ -124.813303100999946, 49.234673489000102 ], [ -124.813619107999969, 49.234673383000022 ], [ -124.815211809999965, 49.234672844000038 ], [ -124.815608096999981, 49.2346726910001 ], [ -124.815861134999963, 49.234678588000094 ], [ -124.81632604799999, 49.234686717000102 ], [ -124.816358702999977, 49.234849792000084 ], [ -124.816222781999969, 49.234932398000041 ], [ -124.816434889999982, 49.23508190000009 ], [ -124.81626628099994, 49.235363903000113 ], [ -124.815901095999948, 49.235117509000141 ], [ -124.815698496999971, 49.235218692000075 ], [ -124.815528607999966, 49.235096200000072 ], [ -124.815172992999948, 49.235128910000093 ], [ -124.814782719, 49.234982206000055 ], [ -124.814040784999975, 49.234966591000045 ], [ -124.814118002999976, 49.235217192000107 ], [ -124.814003905999954, 49.235470704000114 ], [ -124.81360678799993, 49.235503505000132 ], [ -124.81347361399996, 49.235650190000065 ], [ -124.813146800999974, 49.23571849000006 ], [ -124.813023903, 49.235719987000031 ], [ -124.813038502999959, 49.235351100000052 ], [ -124.812887386999961, 49.23534400800002 ], [ -124.812722806999943, 49.235724201000032 ], [ -124.812211594999937, 49.235697200000111 ], [ -124.812093003999948, 49.235788303000035 ], [ -124.81194299399999, 49.236222691000044 ], [ -124.811961591999989, 49.236375095000035 ], [ -124.812181200999987, 49.236372287000123 ], [ -124.812173693999966, 49.236866500000112 ], [ -124.811992425999918, 49.236789503000118 ], [ -124.811982193999967, 49.236906288000071 ], [ -124.81208040099996, 49.236958994000076 ], [ -124.813468011999944, 49.236946198000112 ], [ -124.815047998999916, 49.237001788000086 ], [ -124.81516149299992, 49.237054497000095 ], [ -124.815501200999933, 49.23699461100005 ], [ -124.815486103999973, 49.237787636000043 ], [ -124.815249092999963, 49.23779136200006 ], [ -124.815265028999974, 49.238226046000129 ], [ -124.815026011999947, 49.238235091000071 ], [ -124.815029995999964, 49.238333406000017 ], [ -124.815269152999932, 49.238338537000082 ], [ -124.815288645999928, 49.23887024900008 ], [ -124.815483144999959, 49.238867191000082 ], [ -124.815468606999943, 49.239468501000076 ], [ -124.814975402999934, 49.239477011000162 ], [ -124.814976503999929, 49.239890099000078 ], [ -124.814659589999962, 49.239887189000072 ], [ -124.81461641599999, 49.240183406000021 ], [ -124.81441099099996, 49.240196308000101 ], [ -124.814088901, 49.240768796000033 ], [ -124.813497706999968, 49.240768810000127 ], [ -124.813355504999905, 49.240671905000049 ], [ -124.812307893999957, 49.240949707000048 ], [ -124.811960281999944, 49.241178999000041 ], [ -124.812164591999974, 49.243011890000098 ], [ -124.812484807999965, 49.243887784000052 ], [ -124.812388223999946, 49.244231004000028 ], [ -124.812103899999926, 49.244370585000091 ], [ -124.811447609999945, 49.24444330500004 ], [ -124.811298803999961, 49.24454579000011 ], [ -124.810589877999973, 49.244504765000102 ], [ -124.809453702000013, 49.244439002000085 ], [ -124.809414105999963, 49.244484611000161 ], [ -124.809649597999936, 49.244517304000077 ], [ -124.810578185999972, 49.244568957000112 ], [ -124.811289284999972, 49.244608504999988 ], [ -124.81266889699999, 49.244802190000037 ], [ -124.813019792999967, 49.24464410000008 ], [ -124.812912298999962, 49.244295095000062 ], [ -124.813114205999966, 49.244219704000109 ], [ -124.813754002999957, 49.24442618900008 ], [ -124.81397249900003, 49.244755209000111 ], [ -124.814334790999936, 49.244893304000115 ], [ -124.814465307999953, 49.245052794000102 ], [ -124.815133091999954, 49.245276392000072 ], [ -124.815627785999951, 49.245269304000026 ], [ -124.8159876, 49.244984512000059 ], [ -124.816236985, 49.245015795000057 ], [ -124.816821384999983, 49.244881907000064 ], [ -124.817107419999957, 49.24519099499999 ], [ -124.817599013999953, 49.24507560100011 ], [ -124.81836081099999, 49.245262206000085 ], [ -124.818971384999941, 49.245791992000115 ], [ -124.818809491999929, 49.246244914000052 ], [ -124.818623504999948, 49.246408708000068 ], [ -124.818054801999907, 49.246643686000063 ], [ -124.816651521999972, 49.247006798000044 ], [ -124.815407990999958, 49.247556592000066 ], [ -124.814723620999985, 49.247991 ], [ -124.814808785999944, 49.248043698000117 ], [ -124.815036478999971, 49.247895493000094 ], [ -124.815135802999961, 49.247966793000089 ], [ -124.81438319499999, 49.248455308000096 ], [ -124.814312297999905, 49.248383997000097 ], [ -124.81452358699994, 49.248164696000089 ], [ -124.814306192999979, 49.248248704000034 ], [ -124.813527594999954, 49.249107491000075 ], [ -124.812723395999953, 49.249623099000054 ], [ -124.812353616999985, 49.249665803000049 ], [ -124.812589183999947, 49.249751304000021 ], [ -124.812047779999943, 49.251096178000118 ], [ -124.812026637999949, 49.251095945000095 ], [ -124.812028407999932, 49.251144299000075 ], [ -124.811896604999987, 49.251471692000059 ], [ -124.81184264699999, 49.251878448000063 ], [ -124.811643130999954, 49.251881577000105 ], [ -124.811692020999956, 49.253217120000045 ], [ -124.811907844999951, 49.253219495000067 ], [ -124.811988688999975, 49.253979804000025 ], [ -124.811908596999913, 49.254773006000065 ], [ -124.8120548799999, 49.255057899000121 ], [ -124.812094296999973, 49.255205808000063 ], [ -124.812134096999927, 49.255354104000084 ], [ -124.813080100999926, 49.25641940000007 ], [ -124.81407339899999, 49.257221309000094 ], [ -124.814158496999966, 49.257661309000078 ], [ -124.814429623999928, 49.257990304000103 ], [ -124.814419083999937, 49.258210393000077 ], [ -124.814339850999957, 49.25814174100006 ], [ -124.814240660999985, 49.258055816000059 ], [ -124.8141376559999, 49.257966550000035 ], [ -124.814083217999965, 49.25791940100008 ], [ -124.813893546999907, 49.25775510800009 ], [ -124.81385985699994, 49.257725141000037 ], [ -124.813648948999955, 49.257537751000029 ], [ -124.813567401999961, 49.257465285000109 ], [ -124.812781391999962, 49.256598600000075 ], [ -124.812519405999979, 49.256309683000033 ], [ -124.81219246699996, 49.25591239200002 ], [ -124.811970554999974, 49.255642744000042 ], [ -124.811948320999946, 49.255615698000028 ], [ -124.811937120999957, 49.255600342000065 ], [ -124.811747128999954, 49.255338944000087 ], [ -124.81166848, 49.255230737000026 ], [ -124.811604474999967, 49.255142673000073 ], [ -124.81155117899999, 49.255069350000063 ], [ -124.811431177999921, 49.254904292000077 ], [ -124.811192099999928, 49.254435406000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997053011129217", "sL_AssetLoss": "288.43", "sL_BldgLoss": "287.58", "sL_StrLoss": "278", "sL_NStrLoss": "9.58", "sL_ContLoss": "0.85", "geom_point": "0101000020E6100000980CAE56B9385FC04C4F58E201A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.887144269999979, 49.269907652000029 ], [ -124.887184524999938, 49.268228967000027 ], [ -124.887183671999964, 49.268228958000094 ], [ -124.887195711999965, 49.267726864000061 ], [ -124.887117399999937, 49.267726057000111 ], [ -124.88717349699999, 49.265386709000026 ], [ -124.885992382999973, 49.265374529000034 ], [ -124.885972904999932, 49.265309400000078 ], [ -124.885801601999944, 49.265168409000097 ], [ -124.885263094999971, 49.265077201000118 ], [ -124.884403365999987, 49.265248782000072 ], [ -124.884417652999943, 49.264654459000063 ], [ -124.887309178999928, 49.264711662000124 ], [ -124.887308943999955, 49.264760740000021 ], [ -124.887284125999926, 49.26990909400007 ], [ -124.887144269999979, 49.269907652000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10032251", "BldgCostT": "6655001", "sL_LossRatio": "0.941558203298636", "sL_AssetLoss": "12127.981", "sL_BldgLoss": "11419.2", "sL_StrLoss": "9766.9", "sL_NStrLoss": "1652.3", "sL_ContLoss": "708.781", "geom_point": "0101000020E61000001F3BFB0CA0375FC0A9F1B9B0C1A34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.86838593499999, 49.282911208000023 ], [ -124.868237285999982, 49.28251027000006 ], [ -124.868318766999934, 49.282118846000095 ], [ -124.868458984999975, 49.28167989000012 ], [ -124.868845412999917, 49.280883183000078 ], [ -124.869659934999973, 49.279388326000053 ], [ -124.869947812999968, 49.278859990000043 ], [ -124.869964625999913, 49.278829156000093 ], [ -124.869912031999888, 49.278717402000069 ], [ -124.869872085999987, 49.278713075000063 ], [ -124.868554315999972, 49.278717251000074 ], [ -124.868635755999932, 49.27891148700008 ], [ -124.861680349999958, 49.278911236000077 ], [ -124.861685066999954, 49.278718947000101 ], [ -124.864914297999945, 49.278752936000025 ], [ -124.864933520999926, 49.277967251000099 ], [ -124.864960245999967, 49.276874824000153 ], [ -124.868119023999924, 49.276907978000047 ], [ -124.870451685, 49.276932402000085 ], [ -124.870443540999943, 49.277266971000074 ], [ -124.872097744999934, 49.277284260000108 ], [ -124.872010236999969, 49.280883688000074 ], [ -124.871695015999975, 49.280880387000089 ], [ -124.871746069999944, 49.28222891000005 ], [ -124.871655936999957, 49.282230370000029 ], [ -124.871641034999968, 49.28284304700005 ], [ -124.870964966999978, 49.28283899700002 ], [ -124.870681188999967, 49.282821604000056 ], [ -124.87066027399996, 49.28280687900012 ], [ -124.86838593499999, 49.282911208000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995523205256208", "sL_AssetLoss": "310.49", "sL_BldgLoss": "309.1", "sL_StrLoss": "296", "sL_NStrLoss": "13.1", "sL_ContLoss": "1.39", "geom_point": "0101000020E6100000E76645F552385FC099BA2BBBE0A14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.87743221, 49.264746015000057 ], [ -124.877437769999986, 49.264516149000016 ], [ -124.878588514999976, 49.264538905000101 ], [ -124.882926514999951, 49.264624930000082 ], [ -124.882922229999949, 49.26480295900005 ], [ -124.87743221, 49.264746015000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16566334", "BldgCostT": "10953334", "sL_LossRatio": "0.966219375798164", "sL_AssetLoss": "10970.49", "sL_BldgLoss": "10599.9", "sL_StrLoss": "9406.9", "sL_NStrLoss": "1193", "sL_ContLoss": "370.59", "geom_point": "0101000020E610000067625F5778385FC019D1666A4CA34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.878736994999954, 49.277931312000042 ], [ -124.878764222999948, 49.276804647000063 ], [ -124.877661093999919, 49.276793188000134 ], [ -124.87771621, 49.274514574000108 ], [ -124.877748155999967, 49.27319373400011 ], [ -124.88323917699995, 49.273250661000141 ], [ -124.883214768999906, 49.274264754000029 ], [ -124.887262923999941, 49.274306543000066 ], [ -124.887244637999942, 49.278098119000042 ], [ -124.886456700999972, 49.278111744000043 ], [ -124.878736994999954, 49.277931312000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.974129878217548", "sL_AssetLoss": "2312.32", "sL_BldgLoss": "2252.5", "sL_StrLoss": "2066", "sL_NStrLoss": "186.5", "sL_ContLoss": "59.82", "geom_point": "0101000020E6100000A6F2D13D06385FC00741AAD515A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.876113283999985, 49.280671614000049 ], [ -124.877491506999903, 49.280685948000034 ], [ -124.877705574999965, 49.282879190000067 ], [ -124.877413538999974, 49.282877460000059 ], [ -124.875217726999949, 49.282864408000137 ], [ -124.875053888999943, 49.282863429000045 ], [ -124.872551740999981, 49.282848497000089 ], [ -124.872583272, 49.281551028000088 ], [ -124.874141349999945, 49.281567281 ], [ -124.874145019999915, 49.281416067000123 ], [ -124.874717262999937, 49.281422030000101 ], [ -124.874735137999963, 49.280685079000087 ], [ -124.876112609999964, 49.280699422000062 ], [ -124.876113283999985, 49.280671614000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.979936956501819", "sL_AssetLoss": "2182.62", "sL_BldgLoss": "2138.83", "sL_StrLoss": "1949", "sL_NStrLoss": "189.83", "sL_ContLoss": "43.79", "geom_point": "0101000020E61000006276C374E9375FC0E5DD0508EEA14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.871081603999968, 49.265765349000063 ], [ -124.871095579999945, 49.265190813000046 ], [ -124.869901394999914, 49.265178320000103 ], [ -124.869922995999929, 49.264291214000096 ], [ -124.870206704999987, 49.264242604000145 ], [ -124.872424092999964, 49.264369408000107 ], [ -124.873564802999979, 49.264709811000039 ], [ -124.875953805999984, 49.264486787000074 ], [ -124.877429587999984, 49.264515988000127 ], [ -124.877409843999928, 49.265332295000078 ], [ -124.876583814999975, 49.265323704000131 ], [ -124.876571739, 49.265822615000026 ], [ -124.871081603999968, 49.265765349000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86559500", "BldgCostT": "57935000", "sL_LossRatio": "0.923980629888381", "sL_AssetLoss": "85669.718", "sL_BldgLoss": "79157.16", "sL_StrLoss": "68681.56", "sL_NStrLoss": "10475.6", "sL_ContLoss": "6512.558", "geom_point": "0101000020E6100000216C3ECF1B375FC00F85221F6CA24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.854222203999953, 49.271246907000041 ], [ -124.853732218999937, 49.270301196000034 ], [ -124.853366297999983, 49.267861486000072 ], [ -124.85343200399997, 49.267391490000058 ], [ -124.853349, 49.267024087000024 ], [ -124.853038205999965, 49.266813296000066 ], [ -124.852774992999983, 49.266746406000081 ], [ -124.851771203999988, 49.266770589000046 ], [ -124.850752093999986, 49.267039789000137 ], [ -124.850040103999959, 49.267518297000088 ], [ -124.849830607999962, 49.267791685000041 ], [ -124.849417515999946, 49.26778889399999 ], [ -124.849261365999936, 49.267700084000126 ], [ -124.848463506999934, 49.267246297000121 ], [ -124.848303315999914, 49.267007006000021 ], [ -124.847475689999953, 49.266930098000074 ], [ -124.846543079999947, 49.266620995000075 ], [ -124.844427394999968, 49.265557197000071 ], [ -124.842910118999896, 49.264664198000013 ], [ -124.842577159999976, 49.264517692000055 ], [ -124.84290912199999, 49.264526097000093 ], [ -124.842805625999972, 49.264480447000075 ], [ -124.842613941999943, 49.264184058000083 ], [ -124.842557022999969, 49.26382429700007 ], [ -124.842549705999929, 49.263081144000104 ], [ -124.84764007299999, 49.263027238000099 ], [ -124.85049670599993, 49.262984194000104 ], [ -124.854340215999969, 49.262926169000131 ], [ -124.855927697999974, 49.262927285000039 ], [ -124.856974588999918, 49.263166890000079 ], [ -124.857423363999942, 49.263346350000042 ], [ -124.857431708999982, 49.263568610000029 ], [ -124.857019587999943, 49.263575238000044 ], [ -124.857039836999945, 49.264114667000101 ], [ -124.855803459999919, 49.264134538000114 ], [ -124.855793341999956, 49.26386482400008 ], [ -124.855488935999986, 49.263869715000077 ], [ -124.855478413999933, 49.26429639200007 ], [ -124.855550094999941, 49.264297152000069 ], [ -124.855514257999914, 49.265750393000054 ], [ -124.855808012999901, 49.265753507000035 ], [ -124.855820081999951, 49.265263964000056 ], [ -124.856883959999962, 49.265275233000054 ], [ -124.856884239999943, 49.265263891000075 ], [ -124.857280961, 49.265268090000042 ], [ -124.857296860999952, 49.264622300000084 ], [ -124.861184230000021, 49.264663374000129 ], [ -124.861181384999938, 49.264587757000086 ], [ -124.859120737999959, 49.264620944000079 ], [ -124.859108769999978, 49.264302457000049 ], [ -124.867756248999953, 49.264441331000086 ], [ -124.867774289999915, 49.264451181000027 ], [ -124.867785610999988, 49.264751025000116 ], [ -124.867299899999949, 49.264758878000109 ], [ -124.867282086999964, 49.264759166000061 ], [ -124.867281785999978, 49.26477148300004 ], [ -124.867235511999951, 49.26666734900008 ], [ -124.867254388000021, 49.266667547000026 ], [ -124.867263871999967, 49.266278953000032 ], [ -124.872754060999952, 49.266336414000108 ], [ -124.872705415999945, 49.26833905899999 ], [ -124.873418456999957, 49.26834650200005 ], [ -124.873409293999956, 49.268723940000065 ], [ -124.875999582999924, 49.268750936000089 ], [ -124.875981809999956, 49.269484681000058 ], [ -124.876744597999945, 49.269492619000061 ], [ -124.876657464999951, 49.273092093000038 ], [ -124.874815979999937, 49.273072920000061 ], [ -124.874812898999949, 49.273200039000137 ], [ -124.874653957999953, 49.273198382000047 ], [ -124.869321893999981, 49.273142683000046 ], [ -124.869338896999949, 49.27244491600009 ], [ -124.868589508999932, 49.272437067000048 ], [ -124.868602688999928, 49.2718965400001 ], [ -124.867840213999941, 49.271888548000092 ], [ -124.867852515999928, 49.27138432000006 ], [ -124.867186475, 49.271377334000078 ], [ -124.867177413999983, 49.271748534000054 ], [ -124.866012271999963, 49.2717363040001 ], [ -124.865933052999964, 49.274977756000112 ], [ -124.864344383999935, 49.274961060000059 ], [ -124.864342284999978, 49.275046852000102 ], [ -124.864322739, 49.275845393000083 ], [ -124.863599879999967, 49.275837789000015 ], [ -124.863584046999989, 49.276484210000056 ], [ -124.862546933999937, 49.276473292000055 ], [ -124.859307819999955, 49.276439127000081 ], [ -124.859285028999977, 49.27736611600006 ], [ -124.85583312299994, 49.277329599000055 ], [ -124.856184785999957, 49.27703629800002 ], [ -124.857050902999987, 49.276653208000084 ], [ -124.857238405999951, 49.276506486000095 ], [ -124.85727279799994, 49.276344103000064 ], [ -124.857514378999966, 49.276214495000076 ], [ -124.857469581999965, 49.275387101000064 ], [ -124.858117711999938, 49.274333101000089 ], [ -124.8581447, 49.27395571200001 ], [ -124.856637716999927, 49.272216797000112 ], [ -124.855470401999952, 49.27154168900006 ], [ -124.854489792999942, 49.271440593000158 ], [ -124.854222203999953, 49.271246907000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "505593449", "BldgCostT": "314814933", "sL_LossRatio": "0.714112247619452", "sL_AssetLoss": "430136.16", "sL_BldgLoss": "307165.5", "sL_StrLoss": "172360.4", "sL_NStrLoss": "134805.1", "sL_ContLoss": "122970.66", "geom_point": "0101000020E610000050F1051407335FC07E368A30EEA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.782907120999965, 49.266131823000094 ], [ -124.782996388999919, 49.264878371000094 ], [ -124.782997544999915, 49.264862493000138 ], [ -124.782826795999966, 49.263783886000049 ], [ -124.782881539999934, 49.26289028900004 ], [ -124.782891119999988, 49.262891012000075 ], [ -124.78318860399996, 49.261706365000087 ], [ -124.786667966999914, 49.261745527000116 ], [ -124.78663344099995, 49.263066195000079 ], [ -124.787722591999952, 49.263049343000048 ], [ -124.787712844999959, 49.262779617000028 ], [ -124.788124977, 49.262773237000083 ], [ -124.788115226999949, 49.262503513000063 ], [ -124.788502796999964, 49.262497513000028 ], [ -124.788527248999983, 49.26156077100012 ], [ -124.789037867, 49.26156649900004 ], [ -124.789081222999982, 49.259904680000098 ], [ -124.791542391999911, 49.259932260000042 ], [ -124.791575213999977, 49.258671638000109 ], [ -124.790863432999956, 49.258682676000092 ], [ -124.790855060999959, 49.258451348000023 ], [ -124.790814483999924, 49.25845089400007 ], [ -124.79083655599996, 49.25760359 ], [ -124.790412296999961, 49.25761016700001 ], [ -124.790402537999938, 49.257340443000039 ], [ -124.789166282999958, 49.257359600000086 ], [ -124.789156529999971, 49.257089876000073 ], [ -124.787508198999973, 49.257115397000099 ], [ -124.787478967, 49.256306223000067 ], [ -124.787066889999934, 49.256312599000118 ], [ -124.787027927999958, 49.255233699000087 ], [ -124.786203791, 49.25524644800003 ], [ -124.786232998999978, 49.256055623000108 ], [ -124.783760545999954, 49.256093834000112 ], [ -124.783755535999916, 49.255954828000078 ], [ -124.783753011999963, 49.256051163000031 ], [ -124.783735590999939, 49.256050966000075 ], [ -124.78380767199999, 49.25507372600007 ], [ -124.783883952999943, 49.253408011000033 ], [ -124.783920177999917, 49.253196315000068 ], [ -124.783965549999934, 49.252931 ], [ -124.78400835399998, 49.252680665000085 ], [ -124.784097146999954, 49.252187036000059 ], [ -124.783687610999948, 49.250887401000085 ], [ -124.783630213999984, 49.250637600000047 ], [ -124.783886363999926, 49.250637126000079 ], [ -124.784147900999983, 49.250636658000062 ], [ -124.784285545999964, 49.250636406000034 ], [ -124.78458799299996, 49.250635840000079 ], [ -124.784711602, 49.25063561000011 ], [ -124.78493820199999, 49.250635199000101 ], [ -124.785618997999975, 49.250634746000095 ], [ -124.786296997999926, 49.250634294000115 ], [ -124.786305797999972, 49.25091671200007 ], [ -124.786316683999942, 49.251265197000066 ], [ -124.786340324999969, 49.252022636000106 ], [ -124.786343283999912, 49.252118295000066 ], [ -124.786304386999987, 49.252346496000015 ], [ -124.78620270099999, 49.25250728200006 ], [ -124.786032499999919, 49.252613410000052 ], [ -124.785364207999976, 49.252816596000095 ], [ -124.784752161999961, 49.252986326000155 ], [ -124.784110300999927, 49.253164291000061 ], [ -124.784323719999918, 49.253504295000049 ], [ -124.784539093999953, 49.2537163900001 ], [ -124.784727488, 49.253809407000041 ], [ -124.784977570999956, 49.253850999000065 ], [ -124.785249696000037, 49.253838719000051 ], [ -124.78551852599999, 49.253792245000035 ], [ -124.786154930999913, 49.253607369000171 ], [ -124.786270621999961, 49.253573752000058 ], [ -124.786452108999967, 49.253521032000087 ], [ -124.787464430999961, 49.253168321000103 ], [ -124.788008965999936, 49.252978605000095 ], [ -124.788180777999983, 49.253196930000072 ], [ -124.788231190999937, 49.25326096800012 ], [ -124.78856895700001, 49.253690248000083 ], [ -124.788915320999962, 49.254130441 ], [ -124.78898940199997, 49.254224600000022 ], [ -124.789100403999939, 49.254410317000065 ], [ -124.789136718999927, 49.254471087000049 ], [ -124.789174977999949, 49.255003506000115 ], [ -124.790067745999977, 49.254981099000062 ], [ -124.790473856999967, 49.25493526300005 ], [ -124.792182302999919, 49.25452861600008 ], [ -124.793882471999936, 49.254124568000123 ], [ -124.794692146, 49.253932120000044 ], [ -124.794794005999975, 49.253907908000023 ], [ -124.794895488999941, 49.253908104000125 ], [ -124.794952464999952, 49.255311190000079 ], [ -124.795064426999943, 49.25776531200006 ], [ -124.796847608999883, 49.257762703000019 ], [ -124.797829117999939, 49.257762800000073 ], [ -124.797828956000018, 49.258240130000083 ], [ -124.797828489999972, 49.259533406000081 ], [ -124.798546379999948, 49.259542999000118 ], [ -124.799032014999938, 49.259549501000137 ], [ -124.79917750599999, 49.259494404000115 ], [ -124.7992485, 49.259405196000053 ], [ -124.799257789999942, 49.258831912000062 ], [ -124.799345903999921, 49.258717588000074 ], [ -124.79945718499998, 49.258660387000134 ], [ -124.799995914999911, 49.258651525000104 ], [ -124.800209703999968, 49.258647997000018 ], [ -124.800244801999938, 49.258210637000055 ], [ -124.800278592999916, 49.257789182000074 ], [ -124.801105890999963, 49.257694030000046 ], [ -124.801648492999917, 49.257631593000021 ], [ -124.801651399999983, 49.256720689000097 ], [ -124.801652552999926, 49.256426082000111 ], [ -124.801652597999976, 49.256409196000064 ], [ -124.801755886999928, 49.256182695000092 ], [ -124.802287984999978, 49.255454894000081 ], [ -124.802334991, 49.255284417000091 ], [ -124.80233274899993, 49.255165985000097 ], [ -124.802324486999964, 49.254731619000083 ], [ -124.802315914999895, 49.2542680090001 ], [ -124.803322991999948, 49.254333214000091 ], [ -124.80332293, 49.25367471000002 ], [ -124.80332271199994, 49.250620090000062 ], [ -124.803323516999953, 49.248832400000033 ], [ -124.804036445999927, 49.248831425000098 ], [ -124.804710022999942, 49.248830469000069 ], [ -124.804765892, 49.24883040800006 ], [ -124.805113116999976, 49.248829767000196 ], [ -124.805397032, 49.248829207 ], [ -124.805767861999982, 49.248828518000046 ], [ -124.806154805999967, 49.248827797000033 ], [ -124.806812240999946, 49.248826515000125 ], [ -124.806853454999924, 49.248826443000048 ], [ -124.807538296999923, 49.248825115000066 ], [ -124.807549350999963, 49.248381432000066 ], [ -124.807583303999962, 49.247018988000029 ], [ -124.807589524, 49.246672499000084 ], [ -124.807525376999934, 49.245274738000091 ], [ -124.807525341999906, 49.245274544000068 ], [ -124.807519212, 49.245240488000142 ], [ -124.807524230999945, 49.245250098000049 ], [ -124.807657888999941, 49.245504869000079 ], [ -124.808916397999894, 49.246730371000069 ], [ -124.809163676999958, 49.247136085000058 ], [ -124.809235093999973, 49.247253253000132 ], [ -124.809238160999925, 49.247262230000075 ], [ -124.80935631199999, 49.247610160000079 ], [ -124.809387023999975, 49.247810258000044 ], [ -124.809533832999975, 49.247862219000069 ], [ -124.80969213199991, 49.247918241000058 ], [ -124.810122403, 49.248502177000042 ], [ -124.810183205999977, 49.248652282000108 ], [ -124.810509608999965, 49.249458175000029 ], [ -124.811244294999966, 49.249706558000135 ], [ -124.81133553799999, 49.249987611000059 ], [ -124.811335172999989, 49.249996538000048 ], [ -124.811339503999974, 49.250394749000051 ], [ -124.811233393999956, 49.253128189000044 ], [ -124.811192099999928, 49.254435406000034 ], [ -124.811431177999921, 49.254904292000077 ], [ -124.81155117899999, 49.255069350000063 ], [ -124.811604474999967, 49.255142673000073 ], [ -124.81166848, 49.255230737000026 ], [ -124.810165682999965, 49.255653696000124 ], [ -124.809695521, 49.255826361000082 ], [ -124.808911695999981, 49.256114201000067 ], [ -124.808853896999921, 49.256136941000072 ], [ -124.808793782999956, 49.256160604000087 ], [ -124.807559582999943, 49.256650195000063 ], [ -124.806669990999936, 49.256977893000098 ], [ -124.806522797999989, 49.257309306000096 ], [ -124.806565970999941, 49.257375840000137 ], [ -124.806753892999893, 49.257665598000081 ], [ -124.807320004999951, 49.258336204000095 ], [ -124.80699832599997, 49.258464006000075 ], [ -124.806225321999975, 49.259059507000103 ], [ -124.805884248999988, 49.259078487000124 ], [ -124.80541415299993, 49.259104674000092 ], [ -124.805052691999919, 49.259124801000077 ], [ -124.805117132999939, 49.259445807000084 ], [ -124.805159711999949, 49.259658002000059 ], [ -124.805263312999926, 49.259847206000096 ], [ -124.805811613999978, 49.260463590000079 ], [ -124.804974255999966, 49.260799704000121 ], [ -124.804589610999955, 49.260954104000085 ], [ -124.804129724999953, 49.261131791000032 ], [ -124.804101300999918, 49.261142775000046 ], [ -124.802687231999926, 49.261689148000066 ], [ -124.802260395999895, 49.261198859000103 ], [ -124.801963266999934, 49.260857530000045 ], [ -124.800777273000023, 49.261226914000041 ], [ -124.800638126, 49.261299180000094 ], [ -124.80024453, 49.261815058000124 ], [ -124.800024826999959, 49.262004156000067 ], [ -124.80000144899995, 49.262024266000019 ], [ -124.799854204999932, 49.262150985000105 ], [ -124.79967505299993, 49.262340176000109 ], [ -124.799426583999931, 49.262602589000089 ], [ -124.799425139999968, 49.262627010000102 ], [ -124.799416915, 49.26276449900007 ], [ -124.796831206999926, 49.263478291000069 ], [ -124.794909627999985, 49.264005693000058 ], [ -124.794876416999927, 49.264014816000035 ], [ -124.794269091, 49.264181505000124 ], [ -124.792770665999939, 49.264598634000038 ], [ -124.791436949999962, 49.264969858000079 ], [ -124.789041082999987, 49.265661314000049 ], [ -124.788849353999964, 49.265642969000119 ], [ -124.788459925999959, 49.265729511000067 ], [ -124.787487329, 49.265909430000065 ], [ -124.786546762999961, 49.266018574 ], [ -124.785092788999947, 49.266125539000058 ], [ -124.783623132999935, 49.26609817700011 ], [ -124.783485997999961, 49.266144352000026 ], [ -124.783334967999934, 49.266144451000066 ], [ -124.783237598999989, 49.26614157500007 ], [ -124.782907120999965, 49.266131823000094 ] ], [ [ -124.800017818999947, 49.260969254000067 ], [ -124.800008005999956, 49.260699532000089 ], [ -124.800832227999948, 49.260686683000138 ], [ -124.80082241, 49.260416960000114 ], [ -124.801646625, 49.260404106000074 ], [ -124.801636804999973, 49.260134384000047 ], [ -124.802461013999974, 49.260121525000095 ], [ -124.802441361999954, 49.259582080000044 ], [ -124.802853463999909, 49.259575648000109 ], [ -124.802823979999957, 49.25876648100013 ], [ -124.803236072999965, 49.258760047000052 ], [ -124.803216414999966, 49.258220602000087 ], [ -124.803628503999946, 49.258214168000094 ], [ -124.80359900799999, 49.257405 ], [ -124.802774843999927, 49.257417867000115 ], [ -124.802784670999955, 49.257687590000025 ], [ -124.802372584999944, 49.257694021000113 ], [ -124.802382409999964, 49.257963744000051 ], [ -124.801970323999981, 49.257970174000022 ], [ -124.801980145999892, 49.258239897000095 ], [ -124.801568055999937, 49.258246325000073 ], [ -124.801577876999914, 49.258516048000025 ], [ -124.801165785, 49.258522475000099 ], [ -124.801175603000033, 49.258792197000048 ], [ -124.80076350799996, 49.258798624000121 ], [ -124.800773324999938, 49.259068347000074 ], [ -124.800361228999961, 49.259074771000073 ], [ -124.800371042, 49.259344493000036 ], [ -124.799958941999975, 49.259350917000091 ], [ -124.799978567999958, 49.259890362000128 ], [ -124.799566463999909, 49.259896784000034 ], [ -124.799576274999964, 49.260166507000115 ], [ -124.799131040999967, 49.260173444000067 ], [ -124.798994842999946, 49.260263464000033 ], [ -124.798757706999979, 49.260334659000073 ], [ -124.798761868999932, 49.260449070000071 ], [ -124.798355556999937, 49.260455396000097 ], [ -124.798349817999949, 49.260457119000115 ], [ -124.798359562999963, 49.260725210000061 ], [ -124.797123227999961, 49.260744453000044 ], [ -124.797113429999925, 49.26047472900008 ], [ -124.795464991999921, 49.26050036700012 ], [ -124.795450110999923, 49.260090316000046 ], [ -124.794567588999897, 49.260080465000094 ], [ -124.794538888999966, 49.261185513000086 ], [ -124.795692790999937, 49.261198392000047 ], [ -124.795661264999964, 49.262413356000138 ], [ -124.795946891999947, 49.262416542000047 ], [ -124.795945637999978, 49.2623820230001 ], [ -124.79676989, 49.262369205000056 ], [ -124.796760093999978, 49.262099481000035 ], [ -124.797584339999986, 49.262086656000058 ], [ -124.797574539999943, 49.261816933000048 ], [ -124.798398779999943, 49.26180410200007 ], [ -124.798388974999938, 49.261534380000043 ], [ -124.798801092999923, 49.261527962000066 ], [ -124.798791285999982, 49.261258238000025 ], [ -124.799615517999939, 49.261245399000103 ], [ -124.79960570599998, 49.260975676 ], [ -124.800017818999947, 49.260969254000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133626741", "BldgCostT": "82263187", "sL_LossRatio": "0.76316706169974", "sL_AssetLoss": "219897.2", "sL_BldgLoss": "167818.3", "sL_StrLoss": "116430.1", "sL_NStrLoss": "51388.2", "sL_ContLoss": "52078.9", "geom_point": "0101000020E6100000C9B568011A335FC0A2A9D877C9A04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.797828956000018, 49.258240130000083 ], [ -124.797829117999939, 49.257762800000073 ], [ -124.796847608999883, 49.257762703000019 ], [ -124.795064426999943, 49.25776531200006 ], [ -124.794952464999952, 49.255311190000079 ], [ -124.794895488999941, 49.253908104000125 ], [ -124.79572770599998, 49.253910962000063 ], [ -124.79628858699999, 49.253912896000053 ], [ -124.797241141999933, 49.25391630200005 ], [ -124.797556602, 49.25391742500009 ], [ -124.797829805999925, 49.25391840700005 ], [ -124.798393342999958, 49.253964117000116 ], [ -124.799997431999898, 49.254094215000087 ], [ -124.800084050999885, 49.254101221000084 ], [ -124.800311707999981, 49.254119682000123 ], [ -124.800562308999972, 49.25414051000012 ], [ -124.802315914999895, 49.2542680090001 ], [ -124.802324486999964, 49.254731619000083 ], [ -124.80233274899993, 49.255165985000097 ], [ -124.802334991, 49.255284417000091 ], [ -124.802287984999978, 49.255454894000081 ], [ -124.801755886999928, 49.256182695000092 ], [ -124.801652597999976, 49.256409196000064 ], [ -124.801652552999926, 49.256426082000111 ], [ -124.801651399999983, 49.256720689000097 ], [ -124.801648492999917, 49.257631593000021 ], [ -124.801105890999963, 49.257694030000046 ], [ -124.800278592999916, 49.257789182000074 ], [ -124.800244801999938, 49.258210637000055 ], [ -124.800209703999968, 49.258647997000018 ], [ -124.799995914999911, 49.258651525000104 ], [ -124.79945718499998, 49.258660387000134 ], [ -124.799345903999921, 49.258717588000074 ], [ -124.799257789999942, 49.258831912000062 ], [ -124.7992485, 49.259405196000053 ], [ -124.79917750599999, 49.259494404000115 ], [ -124.799032014999938, 49.259549501000137 ], [ -124.798546379999948, 49.259542999000118 ], [ -124.797828489999972, 49.259533406000081 ], [ -124.797828956000018, 49.258240130000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.9945339613619", "sL_AssetLoss": "672.1138", "sL_BldgLoss": "668.44", "sL_StrLoss": "647.21", "sL_NStrLoss": "21.23", "sL_ContLoss": "3.6738", "geom_point": "0101000020E610000088C6A8A5D8475FC0614680ECD8664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.121934405999937, 48.804512344000059 ], [ -125.12190158199995, 48.803734648000066 ], [ -125.12147462199999, 48.803731139000085 ], [ -125.121466381999966, 48.804171090000075 ], [ -125.120529995999973, 48.804163385000045 ], [ -125.120615708999949, 48.804049207000055 ], [ -125.121096403999942, 48.802898498000111 ], [ -125.121518306999988, 48.802243310000087 ], [ -125.122787601999931, 48.801616710000076 ], [ -125.12353, 48.801152412000093 ], [ -125.124788893999977, 48.800652489000065 ], [ -125.124797008999963, 48.800644958000071 ], [ -125.124779461999964, 48.80158541400003 ], [ -125.123794778, 48.801577343000048 ], [ -125.123780766999957, 48.802327437000066 ], [ -125.123223659999979, 48.802322866000054 ], [ -125.123215470000019, 48.802761150000045 ], [ -125.122433406999946, 48.80275472800006 ], [ -125.122425940999932, 48.803153779000098 ], [ -125.12269403399992, 48.803148840000091 ], [ -125.122682647999923, 48.802879148000095 ], [ -125.123499181999961, 48.802864103000019 ], [ -125.123487789999942, 48.802594409000058 ], [ -125.123896056999982, 48.802586886000043 ], [ -125.123884664999935, 48.80231719300005 ], [ -125.125109449999968, 48.802294609000107 ], [ -125.125118757999957, 48.802514786000117 ], [ -125.12514365, 48.803103685000139 ], [ -125.124735379999947, 48.803111214000062 ], [ -125.124746777999931, 48.803380907000083 ], [ -125.124338507999951, 48.803388435000031 ], [ -125.124349900999945, 48.80365812600008 ], [ -125.123941628999972, 48.80366565300006 ], [ -125.123953021999938, 48.803935345000049 ], [ -125.123544746999954, 48.80394287100011 ], [ -125.12355613699999, 48.804212563000092 ], [ -125.123147858999957, 48.804220087000076 ], [ -125.123170638999923, 48.804759471000111 ], [ -125.122762355999924, 48.80476699500008 ], [ -125.122785132000018, 48.8053063790001 ], [ -125.122376842999969, 48.805313901000083 ], [ -125.122388227999949, 48.805583592000048 ], [ -125.121979938999957, 48.805591112000066 ], [ -125.121991322999946, 48.805860805000101 ], [ -125.121583030999929, 48.805868323 ], [ -125.12159441199999, 48.806138016000027 ], [ -125.121083368999919, 48.806147424000059 ], [ -125.120369528999973, 48.806160563000084 ], [ -125.120324029999978, 48.805081793000056 ], [ -125.120732314999941, 48.805074279000067 ], [ -125.120720939999941, 48.804804587000099 ], [ -125.121129223999944, 48.804797071000031 ], [ -125.121117843999968, 48.804527378000088 ], [ -125.121934405999937, 48.804512344000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.98980153927319", "sL_AssetLoss": "515.568", "sL_BldgLoss": "510.31", "sL_StrLoss": "490.2", "sL_NStrLoss": "20.11", "sL_ContLoss": "5.258", "geom_point": "0101000020E61000004EADA51D8A475FC0FE68D53AB3654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.117084402, 48.793160444000094 ], [ -125.117088712999973, 48.793095395000087 ], [ -125.117276506999957, 48.793193972000047 ], [ -125.118744990999943, 48.793964826000042 ], [ -125.11871538099993, 48.795541184000065 ], [ -125.118211301999906, 48.795537024000041 ], [ -125.118210861999927, 48.795560497000032 ], [ -125.11695112299995, 48.795550090000035 ], [ -125.116948332999925, 48.795214975000057 ], [ -125.117084402, 48.793160444000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15836416", "BldgCostT": "10921666", "sL_LossRatio": "0.98829553801978", "sL_AssetLoss": "7187.5666", "sL_BldgLoss": "7103.44", "sL_StrLoss": "6771.5", "sL_NStrLoss": "331.94", "sL_ContLoss": "84.1266", "geom_point": "0101000020E6100000C39B146AB6475FC0DB52E66A54664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.120960350999923, 48.796238609000078 ], [ -125.120964081999915, 48.796039572000069 ], [ -125.123720469999967, 48.796062222000096 ], [ -125.124766579999942, 48.796559293 ], [ -125.12534088299999, 48.796963804000058 ], [ -125.125740089999951, 48.797388204000129 ], [ -125.12616737899999, 48.798135893000037 ], [ -125.12561768099999, 48.798675697000093 ], [ -125.122267098999941, 48.80060978700002 ], [ -125.121234805999975, 48.801321897000079 ], [ -125.120627708999976, 48.802438385000116 ], [ -125.120355602999894, 48.803703199000083 ], [ -125.12001469099999, 48.804025014000104 ], [ -125.119730512999936, 48.804156801000055 ], [ -125.117022654999957, 48.804134454000099 ], [ -125.11701784499999, 48.80355836500005 ], [ -125.116969958999903, 48.797811111000073 ], [ -125.117496083, 48.797815459000034 ], [ -125.117518180000019, 48.796640787000058 ], [ -125.118635172999959, 48.796650010000086 ], [ -125.11864326099996, 48.796219514000065 ], [ -125.120960350999923, 48.796238609000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.975059986911947", "sL_AssetLoss": "5501.2", "sL_BldgLoss": "5364", "sL_StrLoss": "4700", "sL_NStrLoss": "664", "sL_ContLoss": "137.2", "geom_point": "0101000020E61000007C6CE41DD43B5FC0FB4496B394AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.935874462999948, 49.367406351000056 ], [ -124.935889692999979, 49.36674370500004 ], [ -124.931285530999972, 49.366698335000109 ], [ -124.931317678999932, 49.365305479000057 ], [ -124.93128311399991, 49.365305138000117 ], [ -124.931302659999986, 49.364458285000111 ], [ -124.929979216999968, 49.364445207000109 ], [ -124.929997016999934, 49.36367490400005 ], [ -124.928953624999963, 49.363664582000119 ], [ -124.929036864999958, 49.36006555500007 ], [ -124.9314612699999, 49.360089525000092 ], [ -124.934538246000017, 49.360119868000055 ], [ -124.934528816999929, 49.360529647000078 ], [ -124.936558793999978, 49.360549617000054 ], [ -124.936531065999986, 49.361757004000118 ], [ -124.936867753999962, 49.361760312000101 ], [ -124.936835775999924, 49.363153176000083 ], [ -124.936870338999952, 49.363153516000068 ], [ -124.936855124999937, 49.363816165000088 ], [ -124.941459003999952, 49.363861299000021 ], [ -124.941422953999961, 49.365438299000083 ], [ -124.94137672399998, 49.367460315000088 ], [ -124.935874462999948, 49.367406351000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997363565525288", "sL_AssetLoss": "247.683", "sL_BldgLoss": "247.03", "sL_StrLoss": "239", "sL_NStrLoss": "8.03", "sL_ContLoss": "0.653", "geom_point": "0101000020E6100000B087BC0679385FC0F321A81ABDA94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.881972527999949, 49.323995380000014 ], [ -124.882713283999934, 49.324003038000093 ], [ -124.88302991799992, 49.327892806000101 ], [ -124.88184528, 49.327880562000068 ], [ -124.881932112999962, 49.324281380000073 ], [ -124.88196562, 49.324281726000073 ], [ -124.881972527999949, 49.323995380000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419084", "BldgCostT": "1668334", "sL_LossRatio": "0.975959254960317", "sL_AssetLoss": "1741.169", "sL_BldgLoss": "1699.31", "sL_StrLoss": "1403.2", "sL_NStrLoss": "296.11", "sL_ContLoss": "41.859", "geom_point": "0101000020E6100000C2244B9C8B3D5FC0F6BEA728CDAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.960927562, 49.376699473000052 ], [ -124.960993000999963, 49.373783992 ], [ -124.956780681999959, 49.373743474000051 ], [ -124.956861776999958, 49.370144480000135 ], [ -124.96236438699999, 49.370197377000117 ], [ -124.96229904099999, 49.373112875000096 ], [ -124.966511307999966, 49.373153178000052 ], [ -124.966430957999961, 49.376752162000052 ], [ -124.960927562, 49.376699473000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26485917", "BldgCostT": "18056667", "sL_LossRatio": "0.873212866517391", "sL_AssetLoss": "29631.95", "sL_BldgLoss": "25875", "sL_StrLoss": "21005.8", "sL_NStrLoss": "4869.2", "sL_ContLoss": "3756.95", "geom_point": "0101000020E61000001EA4C8D68A3A5FC090BBAD9921AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.919587231, 49.357593757000039 ], [ -124.919608718999982, 49.356672675000027 ], [ -124.91785152199995, 49.356655114000098 ], [ -124.917865281999966, 49.356066221000049 ], [ -124.917654349999921, 49.356064111000151 ], [ -124.917665545999938, 49.355585043000119 ], [ -124.917371967999912, 49.355582105000089 ], [ -124.917421264999945, 49.353473144000148 ], [ -124.91677697199999, 49.353466696000062 ], [ -124.916861139999952, 49.349867623000108 ], [ -124.91710899499995, 49.349870105000065 ], [ -124.917119153999934, 49.34943554400013 ], [ -124.917056126999938, 49.349434914 ], [ -124.917126467999964, 49.346426037000114 ], [ -124.911860212999926, 49.346373187000047 ], [ -124.91186577699996, 49.346136290000061 ], [ -124.910833541999978, 49.346125902000033 ], [ -124.910814020999936, 49.346956136000081 ], [ -124.909865205999935, 49.346946578000036 ], [ -124.909817498999928, 49.348973656000091 ], [ -124.904317470999914, 49.348918086000104 ], [ -124.904381860999976, 49.346195819000044 ], [ -124.903913027, 49.346203544000105 ], [ -124.903902615999954, 49.345933842000072 ], [ -124.902664222999974, 49.345954240000104 ], [ -124.90265381899998, 49.345684536000121 ], [ -124.902241022999959, 49.345691332000037 ], [ -124.90218902, 49.344342815000111 ], [ -124.90425294100001, 49.34430882100002 ], [ -124.904273764999985, 49.344848226000046 ], [ -124.905099340999968, 49.344834618000057 ], [ -124.90510975899997, 49.345104321000115 ], [ -124.905114335999912, 49.345104245000101 ], [ -124.905180042999945, 49.34232401000002 ], [ -124.909736485999986, 49.342370037000087 ], [ -124.909740665999934, 49.342192448000105 ], [ -124.908785847999937, 49.342182819000129 ], [ -124.908792566999949, 49.341897527000086 ], [ -124.907907832, 49.341888597000029 ], [ -124.907908653000021, 49.34185375800012 ], [ -124.905294435999934, 49.341827329000047 ], [ -124.90533865799992, 49.339955735000011 ], [ -124.904714927, 49.339949420000025 ], [ -124.904800006999963, 49.336350284000062 ], [ -124.905057642999978, 49.336352893 ], [ -124.905069881999935, 49.335834988000045 ], [ -124.905023583999977, 49.335834520000098 ], [ -124.905021747999953, 49.335912211000071 ], [ -124.899523274999979, 49.335856396000082 ], [ -124.89959712299999, 49.332746862000093 ], [ -124.909094500999927, 49.332796816000041 ], [ -124.909090743999968, 49.332275609000099 ], [ -124.910232397999948, 49.332287121000086 ], [ -124.910218334999982, 49.332885074000117 ], [ -124.910638917999961, 49.33288931200007 ], [ -124.910622254999964, 49.333598122000097 ], [ -124.910898750999976, 49.333600908000079 ], [ -124.91083981199999, 49.336108428000031 ], [ -124.91091790199999, 49.336109214000075 ], [ -124.910887936, 49.337384080000078 ], [ -124.913241590999959, 49.33740775800009 ], [ -124.913240538999958, 49.337452600000084 ], [ -124.915442010000035, 49.337474701000055 ], [ -124.915367208999939, 49.34067003700013 ], [ -124.917465226999965, 49.340691057000058 ], [ -124.917426469999896, 49.342349750000047 ], [ -124.91745762799999, 49.342350062000094 ], [ -124.917453402999939, 49.342530838000052 ], [ -124.920559421999954, 49.342561882000048 ], [ -124.920556727999966, 49.342677481000102 ], [ -124.922877940999967, 49.342700623000056 ], [ -124.922857733999976, 49.343569748000064 ], [ -124.922905492999945, 49.343570224000096 ], [ -124.922864757, 49.345322220000064 ], [ -124.92424884799999, 49.345335995000021 ], [ -124.924239614000015, 49.345733656000057 ], [ -124.928222321999925, 49.345773193000078 ], [ -124.928198610999956, 49.346797962000046 ], [ -124.929743226999946, 49.346813256000075 ], [ -124.92966006499995, 49.350412354000106 ], [ -124.924634764999936, 49.350362516000068 ], [ -124.92454663299992, 49.350361640000102 ], [ -124.924532192999919, 49.350983594000049 ], [ -124.924843965999983, 49.350986693000046 ], [ -124.924772957999963, 49.354045530000079 ], [ -124.925171836999965, 49.354049493000105 ], [ -124.925167938999962, 49.354217493000114 ], [ -124.925704851999939, 49.35420854700007 ], [ -124.925778583999929, 49.356096442000108 ], [ -124.925124078999914, 49.356107347000084 ], [ -124.925088307999914, 49.357648550000079 ], [ -124.919587231, 49.357593757000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035334", "BldgCostT": "2093334", "sL_LossRatio": "0.977728950508573", "sL_AssetLoss": "2155.444", "sL_BldgLoss": "2107.44", "sL_StrLoss": "1812.67", "sL_NStrLoss": "294.77", "sL_ContLoss": "48.004", "geom_point": "0101000020E6100000993CF1DE89365FC079779E5740A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.85167723699999, 49.317746608000064 ], [ -124.851726950999947, 49.315739774000072 ], [ -124.848752847999947, 49.315708138000041 ], [ -124.84881692099998, 49.313128067000079 ], [ -124.847357252, 49.313112509000099 ], [ -124.847358249999928, 49.313072374000086 ], [ -124.845379978999944, 49.313051259000069 ], [ -124.845418931999973, 49.311487224000096 ], [ -124.845480337999945, 49.311483297000116 ], [ -124.847198012999954, 49.311523980000118 ], [ -124.850046986999985, 49.311591389000093 ], [ -124.852893377999976, 49.311537611000034 ], [ -124.852878179999934, 49.312151829000079 ], [ -124.854337820999959, 49.312167311000117 ], [ -124.85428822499992, 49.314174157000096 ], [ -124.857262232, 49.314205641000157 ], [ -124.857187802999974, 49.317224805000045 ], [ -124.857173501999938, 49.317804857000084 ], [ -124.85167723699999, 49.317746608000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.98425610996178", "sL_AssetLoss": "570.38", "sL_BldgLoss": "561.4", "sL_StrLoss": "502", "sL_NStrLoss": "59.4", "sL_ContLoss": "8.98", "geom_point": "0101000020E61000001A79AC5BF5345FC0C7E0385B06A54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.829092341999981, 49.293390690000123 ], [ -124.82916432699993, 49.290539160000058 ], [ -124.82896450799997, 49.290536994000085 ], [ -124.828969187999931, 49.290351614000016 ], [ -124.827294957, 49.29033345200007 ], [ -124.827311869999946, 49.289664510000065 ], [ -124.825387625999909, 49.289643605000037 ], [ -124.825478768, 49.286044263000136 ], [ -124.82560629299995, 49.286045649000066 ], [ -124.825871593, 49.286272388000086 ], [ -124.827394020000014, 49.287943560000116 ], [ -124.828124276999986, 49.288984652000053 ], [ -124.829553439999927, 49.288902562000047 ], [ -124.829590487999965, 49.289558761000109 ], [ -124.829584300999969, 49.289563763000054 ], [ -124.829565679999973, 49.289940165000111 ], [ -124.829600135999897, 49.289994904000061 ], [ -124.829597653999912, 49.290916349000064 ], [ -124.829623775999934, 49.29126277200006 ], [ -124.82978467699995, 49.293398192000055 ], [ -124.829092341999981, 49.293390690000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4292000", "BldgCostT": "2960000", "sL_LossRatio": "0.966707974376344", "sL_AssetLoss": "4090.439", "sL_BldgLoss": "3954.26", "sL_StrLoss": "3309.56", "sL_NStrLoss": "644.7", "sL_ContLoss": "136.179", "geom_point": "0101000020E6100000CB45427C9C3B5FC09A9FF21A81AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.92679384399996, 49.375231397000057 ], [ -124.926810030999945, 49.374533156000105 ], [ -124.925793547999902, 49.374523073000091 ], [ -124.925877052999923, 49.370924106000096 ], [ -124.930196405999965, 49.37096688800009 ], [ -124.930207901999935, 49.370469348000043 ], [ -124.929857949, 49.370465889000087 ], [ -124.92994113, 49.366866898000033 ], [ -124.93544332, 49.366921162000082 ], [ -124.935426412999931, 49.367656507000078 ], [ -124.936659819999932, 49.367668633000029 ], [ -124.936577157999949, 49.371267625000073 ], [ -124.935693616999984, 49.371258939000015 ], [ -124.935661103999919, 49.372673144000053 ], [ -124.932358030999922, 49.372640611000151 ], [ -124.93229702499994, 49.375285821000013 ], [ -124.92679384399996, 49.375231397000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998041655009851", "sL_AssetLoss": "167.999", "sL_BldgLoss": "167.67", "sL_StrLoss": "163", "sL_NStrLoss": "4.67", "sL_ContLoss": "0.329", "geom_point": "0101000020E61000002475A7E055375FC0A38DA70E07AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.864211538999953, 49.327419948000077 ], [ -124.866438492999976, 49.327383995000048 ], [ -124.866479289999944, 49.328462833000039 ], [ -124.865241306999962, 49.328482826000062 ], [ -124.865271885, 49.329291956000056 ], [ -124.862795876999911, 49.329331901000089 ], [ -124.862765336999956, 49.328522771000088 ], [ -124.863177998999973, 49.328516117000035 ], [ -124.863167816999919, 49.328246406000105 ], [ -124.863580477999946, 49.328239752000052 ], [ -124.863569319999968, 49.327944228000035 ], [ -124.863560109999966, 49.327700332000127 ], [ -124.863972765999932, 49.327693675000091 ], [ -124.863962579999978, 49.327423965000072 ], [ -124.864211538999953, 49.327419948000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3651584", "BldgCostT": "2518334", "sL_LossRatio": "0.97382202673223", "sL_AssetLoss": "2814.58", "sL_BldgLoss": "2740.9", "sL_StrLoss": "2313.6", "sL_NStrLoss": "427.3", "sL_ContLoss": "73.68", "geom_point": "0101000020E6100000DF18C8D459375FC0C71E903A70A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.862291615999979, 49.326911161000034 ], [ -124.862281440999965, 49.326641450000061 ], [ -124.861043500999955, 49.326661397000109 ], [ -124.861012994999896, 49.32585226500003 ], [ -124.861425632999925, 49.325845618000038 ], [ -124.861413557999981, 49.325525386000024 ], [ -124.857152679999928, 49.325480430000027 ], [ -124.857241425999959, 49.321881255000093 ], [ -124.858462187, 49.321894152000034 ], [ -124.858456126999926, 49.322125778000135 ], [ -124.863038024999966, 49.322090443000029 ], [ -124.868692718999938, 49.322016262000091 ], [ -124.868763414999961, 49.322042983000031 ], [ -124.869115209999975, 49.322102510000079 ], [ -124.869747499999974, 49.322100103 ], [ -124.870249236999911, 49.322106144000045 ], [ -124.870332263999941, 49.322107141000131 ], [ -124.871366559999913, 49.322119587000053 ], [ -124.874306907999937, 49.322154889000096 ], [ -124.87436789899999, 49.322150838000027 ], [ -124.877431557999941, 49.322265211000087 ], [ -124.877415400999965, 49.322932338000065 ], [ -124.873301190999953, 49.322889537000094 ], [ -124.873269410999953, 49.324196837000088 ], [ -124.867772366999972, 49.324139408000107 ], [ -124.86777371899997, 49.324084119000048 ], [ -124.867444886999976, 49.324080674000058 ], [ -124.867406362999972, 49.325657080000099 ], [ -124.863068362, 49.32561154900003 ], [ -124.86307619199998, 49.325819014000082 ], [ -124.86390147099999, 49.3258057030001 ], [ -124.863939869999939, 49.32682262700019 ], [ -124.86394220899993, 49.326884544000109 ], [ -124.862291615999979, 49.326911161000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.986540944481396", "sL_AssetLoss": "511.18", "sL_BldgLoss": "504.3", "sL_StrLoss": "458", "sL_NStrLoss": "46.3", "sL_ContLoss": "6.88", "geom_point": "0101000020E61000005A4AB7A1393C5FC01CAD93C8F8AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.941014971999905, 49.375812240000087 ], [ -124.94100434899994, 49.375542544000055 ], [ -124.940178273999962, 49.375556415000119 ], [ -124.94016765399999, 49.37528671900003 ], [ -124.939754620999949, 49.375293653000064 ], [ -124.939744002999973, 49.375023957000096 ], [ -124.939330969999958, 49.375030888000062 ], [ -124.939299126, 49.374221800000086 ], [ -124.939712150999981, 49.374214868000109 ], [ -124.93970153399999, 49.373945173000095 ], [ -124.941766650999952, 49.373910492000093 ], [ -124.941777277999932, 49.374180188 ], [ -124.942603329999983, 49.374166305000095 ], [ -124.942635227999943, 49.374975391000085 ], [ -124.942222195999975, 49.374982334000038 ], [ -124.942254087999942, 49.375791422000084 ], [ -124.941014971999905, 49.375812240000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.969740278941403", "sL_AssetLoss": "2029.1", "sL_BldgLoss": "1967.7", "sL_StrLoss": "1754", "sL_NStrLoss": "213.7", "sL_ContLoss": "61.4", "geom_point": "0101000020E6100000C5B45F0C1F3C5FC0859C52B964AF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.936685072999978, 49.368434871000055 ], [ -124.942187456999946, 49.368488793000033 ], [ -124.942105224999963, 49.372087784000051 ], [ -124.936602412999903, 49.372033859000055 ], [ -124.936685072999978, 49.368434871000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.97953795379538", "sL_AssetLoss": "606", "sL_BldgLoss": "593.6", "sL_StrLoss": "524", "sL_NStrLoss": "69.6", "sL_ContLoss": "12.4", "geom_point": "0101000020E6100000FA38C3A29C375FC09FFE9A49A7A94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.869214696999975, 49.324370493000039 ], [ -124.87045257299998, 49.324350459000165 ], [ -124.870483232999945, 49.325159587000044 ], [ -124.870070601999956, 49.325166267000043 ], [ -124.870080819999956, 49.325435976000072 ], [ -124.869668185999913, 49.325442654000021 ], [ -124.869678401, 49.325712364000047 ], [ -124.869265763999962, 49.325719040000109 ], [ -124.869275977999934, 49.325988749000032 ], [ -124.868863339999976, 49.325995425000059 ], [ -124.868883762999957, 49.326534844000065 ], [ -124.8676458299999, 49.32655486200013 ], [ -124.867594806999975, 49.325206313000137 ], [ -124.868420072, 49.325192970000039 ], [ -124.868409862999968, 49.324923261000087 ], [ -124.868822492999968, 49.324916587000097 ], [ -124.868812280999975, 49.324646878000117 ], [ -124.869224910999918, 49.324640202000069 ], [ -124.869214696999975, 49.324370493000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38005250", "BldgCostT": "25475000", "sL_LossRatio": "0.986788413465692", "sL_AssetLoss": "20249.5892", "sL_BldgLoss": "19982.06", "sL_StrLoss": "18666.64", "sL_NStrLoss": "1315.42", "sL_ContLoss": "267.5292", "geom_point": "0101000020E6100000426F8EC6A3345FC059DDC92B80A64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.824069991999977, 49.31260330900006 ], [ -124.824080757999965, 49.312178897000081 ], [ -124.823068980999977, 49.312167884000154 ], [ -124.823160346999941, 49.308568667000024 ], [ -124.824526338999988, 49.308583533000018 ], [ -124.824541126999947, 49.308000299000106 ], [ -124.827192022999924, 49.30802910000007 ], [ -124.827201727999977, 49.307645419000039 ], [ -124.825741756999932, 49.30762956600006 ], [ -124.825763916999932, 49.30675459200009 ], [ -124.825291393, 49.306749456000034 ], [ -124.825323505999947, 49.305481924000063 ], [ -124.824985655999953, 49.305478252000022 ], [ -124.82505439099999, 49.302765799000099 ], [ -124.821725167999901, 49.302729548000059 ], [ -124.821647400999922, 49.305789778000104 ], [ -124.816152605999989, 49.30572972300012 ], [ -124.816225144, 49.302888510000095 ], [ -124.815880445999937, 49.302884733000091 ], [ -124.815880403999955, 49.302886430000072 ], [ -124.813045072999969, 49.302855323000081 ], [ -124.813042695999982, 49.302948201000042 ], [ -124.808973797999954, 49.302903430000136 ], [ -124.809004393999942, 49.30373899900016 ], [ -124.807354523999919, 49.303764821000136 ], [ -124.807326959999926, 49.303011426000111 ], [ -124.805675502999989, 49.302993186000045 ], [ -124.805694792999958, 49.303520902000066 ], [ -124.804457391999989, 49.303540235000106 ], [ -124.804447540999931, 49.303270515000101 ], [ -124.804035076000019, 49.303276957000087 ], [ -124.804024046, 49.302974920000068 ], [ -124.803227078999925, 49.302966096000056 ], [ -124.803229874999928, 49.302857744000022 ], [ -124.801955769999893, 49.302843625 ], [ -124.801972750999965, 49.303309143000028 ], [ -124.800735353999983, 49.30332843700009 ], [ -124.800725522000022, 49.303058716000059 ], [ -124.800313058999961, 49.303065144000101 ], [ -124.800307808999932, 49.302921069000057 ], [ -124.800189528999937, 49.302919756000023 ], [ -124.80022420399996, 49.30057120900009 ], [ -124.801261142999948, 49.30057435500008 ], [ -124.802100453999941, 49.300576905000064 ], [ -124.805687902999949, 49.30058769700004 ], [ -124.805687226, 49.30000276700008 ], [ -124.80568622499996, 49.299143084000121 ], [ -124.805685732999933, 49.298713461000084 ], [ -124.805685706999967, 49.298700182000076 ], [ -124.805686770999927, 49.298250472000056 ], [ -124.808484688999954, 49.298036764000138 ], [ -124.808445639999903, 49.297001262000052 ], [ -124.811582236, 49.296769120000057 ], [ -124.811132907999962, 49.293565004000094 ], [ -124.81121841, 49.29333649200008 ], [ -124.811158813999967, 49.292714689000036 ], [ -124.809740507, 49.292847608000031 ], [ -124.808320115, 49.293328796000068 ], [ -124.808148549999942, 49.293356234000107 ], [ -124.808119995000013, 49.29336080700002 ], [ -124.807080990999921, 49.293326898000011 ], [ -124.80501478799998, 49.29338408900005 ], [ -124.804738923999949, 49.293325296000056 ], [ -124.800181875999954, 49.294208953000094 ], [ -124.800194373999929, 49.293376297000108 ], [ -124.802605993999947, 49.292929741000137 ], [ -124.802603536999982, 49.292059813000037 ], [ -124.802618079999931, 49.290416403000052 ], [ -124.80492919299995, 49.290441995000045 ], [ -124.806936122999929, 49.290464179000097 ], [ -124.806902786999927, 49.291760094000033 ], [ -124.812288800999937, 49.291819443000087 ], [ -124.812284099999943, 49.292003017000127 ], [ -124.81352126599991, 49.292016612000076 ], [ -124.813520146999949, 49.292060349000081 ], [ -124.813468503999928, 49.294079011000072 ], [ -124.814016846999934, 49.294085033000101 ], [ -124.814029480999963, 49.293590997000067 ], [ -124.816479073999972, 49.293617860000026 ], [ -124.819522835999962, 49.293651161000092 ], [ -124.819504718999923, 49.294362900000102 ], [ -124.819565375999971, 49.294363562000036 ], [ -124.819552099999925, 49.294885196000052 ], [ -124.820286378999967, 49.294893216000119 ], [ -124.820357417999901, 49.292100351000066 ], [ -124.820421546999938, 49.292101051000074 ], [ -124.820485257999962, 49.289595847000037 ], [ -124.825978147999962, 49.289655684000088 ], [ -124.825944012999955, 49.29100423400012 ], [ -124.825958230999944, 49.291004388000012 ], [ -124.825902564000032, 49.293203462000044 ], [ -124.827816492999958, 49.293224246000129 ], [ -124.827758789999919, 49.295507248000092 ], [ -124.828241666999986, 49.295512486000071 ], [ -124.82826275499994, 49.294677856000114 ], [ -124.829882427999948, 49.294695410000074 ], [ -124.830018437999954, 49.296500193000057 ], [ -124.830034569999981, 49.296729286000037 ], [ -124.831033668999964, 49.296715666000047 ], [ -124.831136726999929, 49.296661331000045 ], [ -124.833157676999974, 49.296448488000124 ], [ -124.833180442999918, 49.296446095000142 ], [ -124.833714382999958, 49.296402462000039 ], [ -124.833665739999915, 49.298336598000077 ], [ -124.83301636499999, 49.298329586000058 ], [ -124.832995362, 49.299164213000083 ], [ -124.832213150999934, 49.299155762000055 ], [ -124.832185592999977, 49.300250031000076 ], [ -124.831638489999946, 49.30024411600008 ], [ -124.831600657999985, 49.301745641000082 ], [ -124.830679182999972, 49.301735672000063 ], [ -124.830655715999967, 49.302666264000017 ], [ -124.831635948, 49.302676868000027 ], [ -124.831671436999954, 49.301268359000076 ], [ -124.834501449999919, 49.301298921000082 ], [ -124.834486944999966, 49.300908288000095 ], [ -124.83407450599999, 49.3009148370001 ], [ -124.834034456000012, 49.299835973000043 ], [ -124.834446884999963, 49.299829425000077 ], [ -124.834436871999955, 49.299559709000043 ], [ -124.835275270999887, 49.299546392000089 ], [ -124.835433227999928, 49.302935769000058 ], [ -124.838087238999918, 49.303019341000081 ], [ -124.840343364999981, 49.303060159000061 ], [ -124.840632777999957, 49.303059923000085 ], [ -124.844252423999961, 49.303050408000054 ], [ -124.844205026999987, 49.303409897000037 ], [ -124.844401531999949, 49.307366760000036 ], [ -124.844412502999944, 49.307586268000058 ], [ -124.844462035000021, 49.309091545000108 ], [ -124.844475932999927, 49.309115358000035 ], [ -124.843460109999953, 49.309131572000098 ], [ -124.843453510999936, 49.308954793000112 ], [ -124.840154128999984, 49.308919434000082 ], [ -124.840169068999927, 49.308322230000073 ], [ -124.83998285899996, 49.308320231000032 ], [ -124.840001691999973, 49.307567457000097 ], [ -124.838862300999907, 49.307585599000049 ], [ -124.838845552999942, 49.307135748000078 ], [ -124.838822136999966, 49.306506739000092 ], [ -124.839234620999918, 49.306500173000067 ], [ -124.839224577999943, 49.306230458000059 ], [ -124.838812096999931, 49.306237024000033 ], [ -124.838802054999945, 49.305967309000053 ], [ -124.838389576999987, 49.305973873000056 ], [ -124.83838199399996, 49.305770090000109 ], [ -124.834543009999933, 49.305728755000068 ], [ -124.834507786999936, 49.307130053000066 ], [ -124.832711725999957, 49.307110668000092 ], [ -124.83267359099996, 49.308625341000038 ], [ -124.832633028999965, 49.310236327000098 ], [ -124.832631297, 49.310305091000053 ], [ -124.831274088999976, 49.310290423000033 ], [ -124.831229443999959, 49.312061321000058 ], [ -124.829581252999944, 49.312043485000032 ], [ -124.829565612999943, 49.312662962000104 ], [ -124.824069991999977, 49.31260330900006 ] ], [ [ -124.842041536999972, 49.304296452000074 ], [ -124.84202801099994, 49.303933689000097 ], [ -124.841392777999943, 49.303926880000084 ], [ -124.841396773, 49.303766982000077 ], [ -124.83995912099999, 49.303789888000047 ], [ -124.839955082999936, 49.30368150200011 ], [ -124.839918596999937, 49.305139908000065 ], [ -124.840009351999953, 49.305138461000062 ], [ -124.840019398999942, 49.305408177000054 ], [ -124.840055727, 49.305407598000023 ], [ -124.840072903999953, 49.304720979000088 ], [ -124.84164528299999, 49.304737845000048 ], [ -124.841629071999975, 49.304303028000128 ], [ -124.842041536999972, 49.304296452000074 ] ], [ [ -124.819922646999899, 49.302170708000055 ], [ -124.819926825999985, 49.302006497000043 ], [ -124.817707890999912, 49.301982241000097 ], [ -124.817703703999925, 49.302146452000066 ], [ -124.819922646999899, 49.302170708000055 ] ], [ [ -124.826149205999982, 49.299992309000068 ], [ -124.826150000999959, 49.299960877000046 ], [ -124.826099180999961, 49.299961680000116 ], [ -124.826098419999937, 49.299991757000072 ], [ -124.826149205999982, 49.299992309000068 ] ], [ [ -124.826744514999959, 49.298092755000013 ], [ -124.826776884999944, 49.296813254000028 ], [ -124.822231776999899, 49.296763803000054 ], [ -124.822258248999944, 49.295721393000036 ], [ -124.820496960999932, 49.295702179000081 ], [ -124.82042804699995, 49.298411700000038 ], [ -124.820642908999929, 49.298414045000079 ], [ -124.820655866999957, 49.297904475000038 ], [ -124.822409105999924, 49.297923598000146 ], [ -124.822376951999942, 49.297051836000044 ], [ -124.824438992999916, 49.297019288000072 ], [ -124.824473212999962, 49.297946075000034 ], [ -124.82614974099999, 49.297964302000047 ], [ -124.826119683999977, 49.299151731000102 ], [ -124.826170503999919, 49.299150929000113 ], [ -124.826197438999927, 49.29808681300009 ], [ -124.826744514999959, 49.298092755000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.972138963026939", "sL_AssetLoss": "2899.246", "sL_BldgLoss": "2818.47", "sL_StrLoss": "2390.67", "sL_NStrLoss": "427.8", "sL_ContLoss": "80.776", "geom_point": "0101000020E61000002FFBB7C3CD3B5FC0C542E714E8AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.930574622000037, 49.353135552000047 ], [ -124.930605539999959, 49.35179645300007 ], [ -124.930474097999976, 49.351795153000133 ], [ -124.93055719799996, 49.348196062000092 ], [ -124.936057171999963, 49.348250298000025 ], [ -124.936046098999952, 49.348732402000103 ], [ -124.936684876999976, 49.348738683000143 ], [ -124.936667302999979, 49.349504247000048 ], [ -124.938875239999945, 49.349525928000055 ], [ -124.938792783999929, 49.3531250180001 ], [ -124.936077281999957, 49.353098347000099 ], [ -124.93607518200001, 49.353189787000076 ], [ -124.930574622000037, 49.353135552000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.988829130887486", "sL_AssetLoss": "427.5764", "sL_BldgLoss": "422.8", "sL_StrLoss": "385.28", "sL_NStrLoss": "37.52", "sL_ContLoss": "4.7764", "geom_point": "0101000020E61000002669E5FB35345FC06273C4106FA44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.814069433999975, 49.285664322000066 ], [ -124.814071940999966, 49.285566258000109 ], [ -124.812763888999982, 49.285551888000093 ], [ -124.812773691999922, 49.285168938000027 ], [ -124.8119670829999, 49.285160069000057 ], [ -124.812000338999979, 49.283861542000039 ], [ -124.811310836999922, 49.283853956000016 ], [ -124.81131731699999, 49.283601112000113 ], [ -124.816211607999946, 49.283645913000086 ], [ -124.81796771800002, 49.28366588500009 ], [ -124.819608046999946, 49.283978521000023 ], [ -124.819576320999943, 49.285225287000038 ], [ -124.81957455300001, 49.285225268000019 ], [ -124.819561849999928, 49.285724486000106 ], [ -124.816256319999965, 49.285688310000069 ], [ -124.814069433999975, 49.285664322000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.979165646695606", "sL_AssetLoss": "3043.387", "sL_BldgLoss": "2979.98", "sL_StrLoss": "2607", "sL_NStrLoss": "372.98", "sL_ContLoss": "63.407", "geom_point": "0101000020E61000008D853A0F1B3E5FC02507E4F929B04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.967146062999973, 49.378996828000055 ], [ -124.967191430999947, 49.376963495000084 ], [ -124.967153485000011, 49.376963133000103 ], [ -124.967233778999983, 49.373364149000061 ], [ -124.97273678399992, 49.373416518000028 ], [ -124.972702546999969, 49.374959373000074 ], [ -124.974074625999918, 49.374972387000092 ], [ -124.97399486099999, 49.378571368000046 ], [ -124.972660622999967, 49.378558714000043 ], [ -124.972649736999969, 49.379049201000093 ], [ -124.967146062999973, 49.378996828000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19967167", "BldgCostT": "13506667", "sL_LossRatio": "0.971807376414339", "sL_AssetLoss": "17365.89", "sL_BldgLoss": "16876.3", "sL_StrLoss": "15321.9", "sL_NStrLoss": "1554.4", "sL_ContLoss": "489.59", "geom_point": "0101000020E6100000CFC519A2CE3C5FC0770C3CB502B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.94447811400002, 49.395241701 ], [ -124.944522228999944, 49.39330773000011 ], [ -124.942895769999936, 49.393291864000076 ], [ -124.942909410999974, 49.392694794000143 ], [ -124.942912383999925, 49.392564641000014 ], [ -124.941949978999929, 49.392555242000071 ], [ -124.941969558999986, 49.391698855000058 ], [ -124.941588916999976, 49.391695135000106 ], [ -124.941671223999961, 49.388096249000071 ], [ -124.943934342999924, 49.388118347000074 ], [ -124.946987413, 49.388148083000061 ], [ -124.947007648999929, 49.387258732000056 ], [ -124.94682758499999, 49.387256981000057 ], [ -124.946909476999949, 49.383658067000113 ], [ -124.947134611999942, 49.383660257000074 ], [ -124.947169957999932, 49.382106369000034 ], [ -124.950931708999974, 49.382142888000054 ], [ -124.950933042999949, 49.382084011000117 ], [ -124.948627166999984, 49.382061642000075 ], [ -124.948651930999986, 49.380971380000034 ], [ -124.948565730999974, 49.380970543000061 ], [ -124.948586676999966, 49.380048468000084 ], [ -124.948574086999955, 49.380048345000034 ], [ -124.94860526699992, 49.378675653000059 ], [ -124.946325984999959, 49.378653491000129 ], [ -124.946407900999972, 49.375054531000096 ], [ -124.950732798999951, 49.37509654300009 ], [ -124.951231563999926, 49.375101377000085 ], [ -124.951277161999926, 49.373088563000117 ], [ -124.950720774999937, 49.373083171000061 ], [ -124.946844143999925, 49.373045520000069 ], [ -124.946868582999969, 49.371971158000107 ], [ -124.945968875999952, 49.371962400000037 ], [ -124.946050806999921, 49.368363405000075 ], [ -124.94705551199999, 49.368373185000067 ], [ -124.951553195, 49.36841685100012 ], [ -124.951528864999929, 49.369491219000082 ], [ -124.952428525999949, 49.369499931000064 ], [ -124.952355062999985, 49.372746510000134 ], [ -124.956788056999926, 49.372789328000117 ], [ -124.956759743999953, 49.374045775000063 ], [ -124.957604001999982, 49.374053910000086 ], [ -124.95752295799997, 49.377652883000032 ], [ -124.95414652299992, 49.377620313000051 ], [ -124.954126305, 49.378515176000086 ], [ -124.954212500999958, 49.378516009000052 ], [ -124.954172031999946, 49.380307203000015 ], [ -124.956477822999901, 49.380329456000048 ], [ -124.956449048999943, 49.381605807000035 ], [ -124.956396680999944, 49.383928394000066 ], [ -124.954329322999911, 49.383908446000135 ], [ -124.954255486999941, 49.387176339000099 ], [ -124.954186775999972, 49.387175675000044 ], [ -124.954181696999939, 49.387400417 ], [ -124.954170824999977, 49.387881539000041 ], [ -124.95249976099997, 49.38786538500004 ], [ -124.952489854999953, 49.388303032000088 ], [ -124.95308249499999, 49.388293019000102 ], [ -124.953103885999937, 49.388832406000056 ], [ -124.953517031, 49.388825423000092 ], [ -124.95363471499995, 49.391792047000123 ], [ -124.954116700999933, 49.391783899000089 ], [ -124.95487422399998, 49.391771089000017 ], [ -124.954906342999948, 49.392580167000048 ], [ -124.953666812999984, 49.392601126000095 ], [ -124.953656114999916, 49.392331434000099 ], [ -124.952811606999944, 49.392345706000057 ], [ -124.952803412999941, 49.392707786000074 ], [ -124.952755176999943, 49.394839156000053 ], [ -124.949994649999979, 49.394812424000079 ], [ -124.949983695999933, 49.39529522400008 ], [ -124.94447811400002, 49.395241701 ] ], [ [ -124.952044765, 49.376482255000035 ], [ -124.952047909999948, 49.376343301000169 ], [ -124.951883149999944, 49.376341706000034 ], [ -124.95188000399996, 49.37648066 ], [ -124.952044765, 49.376482255000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.978295155531218", "sL_AssetLoss": "2437.935", "sL_BldgLoss": "2385.02", "sL_StrLoss": "2107.92", "sL_NStrLoss": "277.1", "sL_ContLoss": "52.915", "geom_point": "0101000020E6100000E3E0144E793B5FC0CEBED9839CAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.92641460099999, 49.355958524000101 ], [ -124.926479768999968, 49.353147074000113 ], [ -124.927190543000023, 49.353154124000056 ], [ -124.931980325999973, 49.353201516000048 ], [ -124.931969060999975, 49.353690040000053 ], [ -124.93244173899997, 49.353694705000073 ], [ -124.932358774999926, 49.35729376900013 ], [ -124.93185126799996, 49.357288759000063 ], [ -124.931797688999922, 49.359611676000029 ], [ -124.931119230999954, 49.359604976000064 ], [ -124.926296370999978, 49.35955722500006 ], [ -124.926379808999954, 49.355958178000066 ], [ -124.92641460099999, 49.355958524000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.988584187873019", "sL_AssetLoss": "835.245", "sL_BldgLoss": "825.71", "sL_StrLoss": "787", "sL_NStrLoss": "38.71", "sL_ContLoss": "9.535", "geom_point": "0101000020E61000008BA141AFA43D5FC0E63712893EB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.95995667699998, 49.386513686000086 ], [ -124.96003509799999, 49.383023795000035 ], [ -124.96135819199999, 49.383036497000049 ], [ -124.962353335999978, 49.383046039000121 ], [ -124.962382050999935, 49.383046315000072 ], [ -124.962369776999935, 49.382738212000092 ], [ -124.964435233999964, 49.382703123000034 ], [ -124.964449709999926, 49.383066113000105 ], [ -124.965539242999938, 49.383076529000142 ], [ -124.965535942999978, 49.383224157000072 ], [ -124.965696029999947, 49.383221434000099 ], [ -124.965706793, 49.38349112500002 ], [ -124.966946083999929, 49.383470040000098 ], [ -124.966956852999914, 49.383739732000066 ], [ -124.967369950999938, 49.383732699000028 ], [ -124.967402267999944, 49.384541774000112 ], [ -124.966989161999933, 49.384548805000044 ], [ -124.966999932999911, 49.384818496000058 ], [ -124.966586822999915, 49.384825527 ], [ -124.966597590999982, 49.385095218000068 ], [ -124.965493703999982, 49.385113998000051 ], [ -124.965458800999969, 49.386675460000085 ], [ -124.95995422799993, 49.386622722 ], [ -124.95995667699998, 49.386513686000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.98207349808102", "sL_AssetLoss": "4160.544", "sL_BldgLoss": "4085.96", "sL_StrLoss": "3663", "sL_NStrLoss": "422.96", "sL_ContLoss": "74.584", "geom_point": "0101000020E6100000AA096843BA385FC05E262FD7C7AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.883056112999938, 49.338030065000076 ], [ -124.883066056999922, 49.337617613000113 ], [ -124.88234351199999, 49.337610148000124 ], [ -124.88242010099998, 49.334434905000094 ], [ -124.880884048, 49.334419019000073 ], [ -124.880970967999943, 49.330819873000053 ], [ -124.881858376999915, 49.330829053000059 ], [ -124.88192028099995, 49.328263390000117 ], [ -124.883061046999927, 49.32827518000007 ], [ -124.883391736999954, 49.332336858000147 ], [ -124.884094700999952, 49.332277098000084 ], [ -124.884249069999939, 49.332277789000067 ], [ -124.886907267000012, 49.332424477000103 ], [ -124.892467068999977, 49.33270077800006 ], [ -124.89246697599999, 49.332708812000121 ], [ -124.894999784999968, 49.332722382000092 ], [ -124.894949685999961, 49.334823166000042 ], [ -124.889451355999952, 49.334766839000046 ], [ -124.889454943999951, 49.334617167000083 ], [ -124.888638247999964, 49.334608777000078 ], [ -124.888554824, 49.338086717000095 ], [ -124.883056112999938, 49.338030065000076 ] ], [ [ -124.88783601099999, 49.334066750000055 ], [ -124.887844773999959, 49.333701654000016 ], [ -124.886401288999963, 49.333686799000048 ], [ -124.886392513999979, 49.334051895000052 ], [ -124.88783601099999, 49.334066750000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117893584", "BldgCostT": "80778334", "sL_LossRatio": "0.965348802864016", "sL_AssetLoss": "134881.92", "sL_BldgLoss": "130208.1", "sL_StrLoss": "110019.5", "sL_NStrLoss": "20188.6", "sL_ContLoss": "4673.82", "geom_point": "0101000020E61000009BDF271651385FC04F6B0D8468A84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.886907267000012, 49.332424477000103 ], [ -124.884249069999939, 49.332277789000067 ], [ -124.884094700999952, 49.332277098000084 ], [ -124.883391736999954, 49.332336858000147 ], [ -124.883061046999927, 49.32827518000007 ], [ -124.883077676999946, 49.328275352000027 ], [ -124.883086882999947, 49.327893395000054 ], [ -124.88302991799992, 49.327892806000101 ], [ -124.882713283999934, 49.324003038000093 ], [ -124.882746569999938, 49.324003382000029 ], [ -124.882748100999962, 49.323939899000017 ], [ -124.883100828999929, 49.323943543999981 ], [ -124.88311736899999, 49.323257131000098 ], [ -124.88313306299996, 49.322605889000108 ], [ -124.883076745, 49.322605307000053 ], [ -124.88307865199999, 49.322526113000094 ], [ -124.882769541999949, 49.322531151000113 ], [ -124.882751659999911, 49.322062290000076 ], [ -124.882529556999927, 49.322059994000035 ], [ -124.882548563999961, 49.321271592000052 ], [ -124.881647469999976, 49.321262273000059 ], [ -124.881662221999946, 49.320650889000042 ], [ -124.88077937499996, 49.320641752000064 ], [ -124.880799612999979, 49.319803629000063 ], [ -124.879718186000034, 49.319792427 ], [ -124.879739599999965, 49.318906372000114 ], [ -124.876673322999977, 49.318874552000104 ], [ -124.87673622699999, 49.316278788000098 ], [ -124.87552823799993, 49.316266228000131 ], [ -124.875534535, 49.316006586000086 ], [ -124.874546616999908, 49.315996304000095 ], [ -124.874548518999973, 49.31591795500001 ], [ -124.870852071999948, 49.315977870000083 ], [ -124.870838331999963, 49.316541981000064 ], [ -124.871059446999965, 49.316544291000113 ], [ -124.871012206999964, 49.318483858000079 ], [ -124.871378951999986, 49.318487688000133 ], [ -124.871329911, 49.320501749000115 ], [ -124.871976099999969, 49.320508494000066 ], [ -124.872006095999936, 49.31927591800013 ], [ -124.877502567999954, 49.319333132000047 ], [ -124.877447401999945, 49.321611025000017 ], [ -124.877431557999941, 49.322265211000087 ], [ -124.87436789899999, 49.322150838000027 ], [ -124.874306907999937, 49.322154889000096 ], [ -124.871366559999913, 49.322119587000053 ], [ -124.870332263999941, 49.322107141000131 ], [ -124.870249236999911, 49.322106144000045 ], [ -124.869747499999974, 49.322100103 ], [ -124.869115209999975, 49.322102510000079 ], [ -124.868763414999961, 49.322042983000031 ], [ -124.868692718999938, 49.322016262000091 ], [ -124.863038024999966, 49.322090443000029 ], [ -124.858456126999926, 49.322125778000135 ], [ -124.858462187, 49.321894152000034 ], [ -124.861964798999921, 49.321931081000038 ], [ -124.862047029999985, 49.318581767000055 ], [ -124.863912597, 49.318601390000048 ], [ -124.863913154999949, 49.318578613000049 ], [ -124.864105633999955, 49.318580636000021 ], [ -124.864115215000012, 49.318189680000081 ], [ -124.864172104999909, 49.315868013000077 ], [ -124.86535698199998, 49.315880456000102 ], [ -124.865359761999954, 49.315766842000151 ], [ -124.869653851999914, 49.315811832000115 ], [ -124.869716324999956, 49.31581248599999 ], [ -124.869698394999929, 49.315338957000037 ], [ -124.869621159999966, 49.313299043000036 ], [ -124.869208625999988, 49.313305718000052 ], [ -124.869197865999979, 49.313021454000115 ], [ -124.865583654999924, 49.312983581000019 ], [ -124.865609735999982, 49.311917747000045 ], [ -124.864687185999955, 49.311908060000121 ], [ -124.864775320999968, 49.30830880600012 ], [ -124.865210093999949, 49.308313372000029 ], [ -124.865229808999942, 49.307507876000102 ], [ -124.864228834999949, 49.307497360000113 ], [ -124.864269035999882, 49.305856179000031 ], [ -124.863037988999935, 49.305843233000097 ], [ -124.863087904999972, 49.303807453000083 ], [ -124.862705697999957, 49.303803431000084 ], [ -124.862713621999916, 49.30348034200005 ], [ -124.860818746999925, 49.303460383000122 ], [ -124.860822723999974, 49.303298482000052 ], [ -124.860320106999907, 49.303293182000083 ], [ -124.860316289999943, 49.30344851899999 ], [ -124.859782710000033, 49.303442890000099 ], [ -124.859776682999893, 49.303688031000014 ], [ -124.859189215999933, 49.303681830000109 ], [ -124.859181974999913, 49.303976145000036 ], [ -124.859061079999933, 49.303974868000097 ], [ -124.859027746999942, 49.305329445000027 ], [ -124.857531917999907, 49.305313641000055 ], [ -124.857513430999944, 49.30606388100005 ], [ -124.85551927299997, 49.306042780000105 ], [ -124.85266825599993, 49.306012548000091 ], [ -124.852663149999913, 49.306218901000072 ], [ -124.851216806000011, 49.306203536000076 ], [ -124.851207213999913, 49.306590638000031 ], [ -124.845712284999976, 49.306532085000043 ], [ -124.845722201999948, 49.306133765000034 ], [ -124.845720151999927, 49.306133743000018 ], [ -124.845693437999927, 49.307206790000045 ], [ -124.846277061999928, 49.30719746400009 ], [ -124.846317389000021, 49.308276319000079 ], [ -124.845666550999937, 49.308286720000112 ], [ -124.845649333, 49.308978270000061 ], [ -124.84469225199993, 49.3089680430001 ], [ -124.844697621999956, 49.309111818000069 ], [ -124.844475932999927, 49.309115358000035 ], [ -124.844462035000021, 49.309091545000108 ], [ -124.844412502999944, 49.307586268000058 ], [ -124.844401531999949, 49.307366760000036 ], [ -124.844205026999987, 49.303409897000037 ], [ -124.844580889999946, 49.303294899000065 ], [ -124.844968357999974, 49.303240536000054 ], [ -124.84576920399995, 49.303128180000044 ], [ -124.84596382399998, 49.303100873000062 ], [ -124.846893720999986, 49.303002779000074 ], [ -124.846931356999931, 49.303002476000074 ], [ -124.847406330999931, 49.302998366000097 ], [ -124.849427018999961, 49.303119395000081 ], [ -124.84983743, 49.303143985000062 ], [ -124.850163415999987, 49.303141207000124 ], [ -124.85373985499993, 49.303110832000065 ], [ -124.853932790999949, 49.303109189000047 ], [ -124.855006072999984, 49.30304586500003 ], [ -124.855217296, 49.302990247000075 ], [ -124.855285423999973, 49.302972313000026 ], [ -124.855460822999959, 49.302823868000097 ], [ -124.855467248999958, 49.302480636000034 ], [ -124.855469327000023, 49.302367621000037 ], [ -124.855585960999989, 49.302207734000042 ], [ -124.855851785999945, 49.302069246000087 ], [ -124.859226093999936, 49.300576658000061 ], [ -124.86053476099994, 49.299997725000033 ], [ -124.861781613999966, 49.299446105000094 ], [ -124.862362249999961, 49.299946681000037 ], [ -124.862440493999941, 49.300014106000013 ], [ -124.862807697999955, 49.300330669000068 ], [ -124.86395163399996, 49.301316806000088 ], [ -124.864124566999948, 49.301465864000065 ], [ -124.864862793, 49.302102196000135 ], [ -124.865001712999955, 49.302220950000077 ], [ -124.866180137999947, 49.303228141000012 ], [ -124.866509431999944, 49.303509616000056 ], [ -124.866791678999959, 49.30375084600005 ], [ -124.866927230999949, 49.303866713000104 ], [ -124.867101099999928, 49.304015306000082 ], [ -124.868141814999987, 49.304904759000081 ], [ -124.868426432999982, 49.305148007000035 ], [ -124.868832582999985, 49.305495094000015 ], [ -124.869331199999934, 49.305921184000049 ], [ -124.87117515199999, 49.307518741000131 ], [ -124.871494942999959, 49.307795780000099 ], [ -124.87198611, 49.308221255000042 ], [ -124.872804873999897, 49.30893054400007 ], [ -124.872876151999947, 49.308992283000059 ], [ -124.872944500999935, 49.309051501000027 ], [ -124.874501798999972, 49.308019097000063 ], [ -124.874889805999914, 49.307883700000083 ], [ -124.875133061, 49.307880942000018 ], [ -124.877717864999966, 49.307851661000072 ], [ -124.8787013099999, 49.307840501000044 ], [ -124.878901397000021, 49.307836649000059 ], [ -124.878944630999982, 49.307835785000115 ], [ -124.879241897, 49.307841014000061 ], [ -124.880201388999978, 49.307857802000051 ], [ -124.883649325999926, 49.308827282000053 ], [ -124.884095861999967, 49.308952812 ], [ -124.884648195999929, 49.309108106000046 ], [ -124.884944609999977, 49.30906790100007 ], [ -124.885172803000017, 49.309010911000058 ], [ -124.885334097999959, 49.308873010000056 ], [ -124.885385677999977, 49.306295023000139 ], [ -124.885402388999964, 49.30545809700007 ], [ -124.885367403999979, 49.305314581000076 ], [ -124.885239524, 49.305205300000068 ], [ -124.885326279999944, 49.303868045000044 ], [ -124.885359759999943, 49.303867498000066 ], [ -124.885370054999967, 49.304137206000043 ], [ -124.886194959999898, 49.30412374100009 ], [ -124.886205148999949, 49.304390581000092 ], [ -124.886312885, 49.304391692000053 ], [ -124.88661771299995, 49.304386713000028 ], [ -124.886618022999969, 49.304394836000029 ], [ -124.889352394999932, 49.304422973000065 ], [ -124.889411419999959, 49.30195860500006 ], [ -124.893583903999911, 49.302001409000134 ], [ -124.893844114999951, 49.302512505000074 ], [ -124.893952611999936, 49.303186204000035 ], [ -124.894274896999946, 49.303676109000023 ], [ -124.89491039699999, 49.304492200000091 ], [ -124.895136397999948, 49.304650301000088 ], [ -124.896098003999953, 49.304932303000029 ], [ -124.897119683, 49.305400796000079 ], [ -124.899071699, 49.306772386000034 ], [ -124.899436633999969, 49.30713604200006 ], [ -124.899423193999965, 49.307702231000114 ], [ -124.900010831999907, 49.307708213000062 ], [ -124.900057894999961, 49.307755107000098 ], [ -124.900210287999968, 49.308121096000086 ], [ -124.900244, 49.308660890000084 ], [ -124.900071579999945, 49.308824592000065 ], [ -124.899565993999957, 49.308941406000038 ], [ -124.89898768799999, 49.30929320000007 ], [ -124.898729305999922, 49.309360093000066 ], [ -124.897244009999952, 49.309006900000057 ], [ -124.89680940599996, 49.308797585000043 ], [ -124.896279816999979, 49.308711803000079 ], [ -124.896293087999965, 49.308154295000065 ], [ -124.899140211999921, 49.308183334000084 ], [ -124.89914160699999, 49.308124561000078 ], [ -124.895141075999959, 49.308083737000082 ], [ -124.895129555999929, 49.308567122000099 ], [ -124.894679498999935, 49.308526998000055 ], [ -124.894011703999951, 49.308636589000052 ], [ -124.893792497999982, 49.308703608000044 ], [ -124.893367980999955, 49.309115195000061 ], [ -124.893059707999953, 49.309677709000049 ], [ -124.893004513999983, 49.310048002000016 ], [ -124.893012217999939, 49.310919694000113 ], [ -124.893205106999986, 49.311304199000041 ], [ -124.89370029799997, 49.31164601400009 ], [ -124.894856518999944, 49.312027052000055 ], [ -124.894852960000023, 49.312176330000021 ], [ -124.894089626999971, 49.312168523000096 ], [ -124.894085040999926, 49.312360748000067 ], [ -124.89279058799994, 49.312347496 ], [ -124.892778218999979, 49.312865380000112 ], [ -124.88728249499999, 49.312808941000114 ], [ -124.887322506, 49.311141893000077 ], [ -124.88649066499994, 49.311133326000103 ], [ -124.886527485999977, 49.309600249000077 ], [ -124.886457556999929, 49.309599529000145 ], [ -124.886466024999933, 49.309246956000045 ], [ -124.886390655999961, 49.309248187000051 ], [ -124.886400957999967, 49.309517894000059 ], [ -124.885556062999953, 49.309531687000025 ], [ -124.885545865000026, 49.309955969000072 ], [ -124.885473441999963, 49.309955222000106 ], [ -124.885445927, 49.311099768000112 ], [ -124.883160346999929, 49.311076175000061 ], [ -124.883090101999954, 49.313991920000063 ], [ -124.882272506999954, 49.313983468000067 ], [ -124.882270117999909, 49.314082507000045 ], [ -124.884905370999974, 49.314109726000019 ], [ -124.884889162999983, 49.31478351000009 ], [ -124.885355192999924, 49.31478831700008 ], [ -124.885349796999904, 49.315012775000056 ], [ -124.885702193999961, 49.315016408000098 ], [ -124.885696436999964, 49.315255899000093 ], [ -124.886123293000011, 49.315260300000055 ], [ -124.886116357999953, 49.315548947000082 ], [ -124.886489396999963, 49.315552790000027 ], [ -124.88646713699994, 49.316479487000088 ], [ -124.887262022999948, 49.316487672000086 ], [ -124.887213518999928, 49.318508203000157 ], [ -124.888112713999973, 49.318517456000031 ], [ -124.888107060999928, 49.318753147000109 ], [ -124.888515412999965, 49.318757346000112 ], [ -124.88850812699998, 49.319061183000052 ], [ -124.888659924999914, 49.319062744000078 ], [ -124.888653934000018, 49.319312637000039 ], [ -124.88919822099993, 49.319318231000061 ], [ -124.889189969999961, 49.319662526000037 ], [ -124.889608025999934, 49.319666821000062 ], [ -124.889583443999939, 49.32069292500011 ], [ -124.88991357699993, 49.320696316000046 ], [ -124.889913000999968, 49.320720338000065 ], [ -124.892439282999973, 49.320746250000084 ], [ -124.892378732999973, 49.323280065000048 ], [ -124.892504964999958, 49.323281358000081 ], [ -124.892517985, 49.32273643900011 ], [ -124.893218945999976, 49.322743618000082 ], [ -124.893219859999974, 49.322705358000086 ], [ -124.894025383999974, 49.322713602000114 ], [ -124.894026428999922, 49.322669778000026 ], [ -124.895987278999939, 49.322689820000051 ], [ -124.89598325199999, 49.322584939000073 ], [ -124.897221061999943, 49.322564619000033 ], [ -124.897226361999955, 49.322702466000045 ], [ -124.899523329999937, 49.322725873000095 ], [ -124.89952231699999, 49.322768557000089 ], [ -124.903558580999984, 49.322809569000135 ], [ -124.903539825999971, 49.32360234400003 ], [ -124.904693786999985, 49.323614042000052 ], [ -124.904691117999974, 49.323726985000036 ], [ -124.90551416299995, 49.323735321000072 ], [ -124.905496057999954, 49.324501952000084 ], [ -124.906784659999957, 49.324514990000054 ], [ -124.906719714999937, 49.327268177000086 ], [ -124.906699755999981, 49.328114191000033 ], [ -124.904569947999931, 49.328092633000061 ], [ -124.904555706999972, 49.328695042000042 ], [ -124.903608250999923, 49.328685439000019 ], [ -124.903598591999966, 49.329093665000094 ], [ -124.898100930999988, 49.329037778000057 ], [ -124.898109832, 49.32866344300006 ], [ -124.898103453999951, 49.328663379000076 ], [ -124.898112159000036, 49.328297243000073 ], [ -124.894452638999965, 49.328259886000069 ], [ -124.894471687999967, 49.327461348000149 ], [ -124.894105893999892, 49.327457607000021 ], [ -124.894116852999943, 49.327743183000024 ], [ -124.893704205999981, 49.327749947000058 ], [ -124.893714551999921, 49.328019652000137 ], [ -124.892476601999931, 49.328039936000039 ], [ -124.892455917999911, 49.327500524000101 ], [ -124.892245523000014, 49.32750397000008 ], [ -124.89217721699994, 49.330361447 ], [ -124.891000614999925, 49.330349385 ], [ -124.890984257999975, 49.33103282700008 ], [ -124.893407466999932, 49.331057653000109 ], [ -124.893403892999928, 49.331207325000044 ], [ -124.895035514999975, 49.331224011000053 ], [ -124.894999784999968, 49.332722382000092 ], [ -124.89246697599999, 49.332708812000121 ], [ -124.892467068999977, 49.33270077800006 ], [ -124.886907267000012, 49.332424477000103 ] ], [ [ -124.893568230999918, 49.305983715000075 ], [ -124.893577351999937, 49.30560153200004 ], [ -124.89059861599992, 49.305570994000064 ], [ -124.890589470999927, 49.305953176000095 ], [ -124.893568230999918, 49.305983715000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.974469937944765", "sL_AssetLoss": "3008.61", "sL_BldgLoss": "2931.8", "sL_StrLoss": "2594", "sL_NStrLoss": "337.8", "sL_ContLoss": "76.81", "geom_point": "0101000020E6100000440E3AB658365FC080F93B46BFA74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.847198012999954, 49.311523980000118 ], [ -124.845480337999945, 49.311483297000116 ], [ -124.845418931999973, 49.311487224000096 ], [ -124.845469614999956, 49.309452026000052 ], [ -124.850964888999954, 49.309510592000024 ], [ -124.85096389499995, 49.309550727 ], [ -124.852942018999926, 49.309571740000116 ], [ -124.852925386999985, 49.310243984000088 ], [ -124.852893377999976, 49.311537611000034 ], [ -124.850046986999985, 49.311591389000093 ], [ -124.847198012999954, 49.311523980000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.969952087611225", "sL_AssetLoss": "1461", "sL_BldgLoss": "1417.1", "sL_StrLoss": "1244", "sL_NStrLoss": "173.1", "sL_ContLoss": "43.9", "geom_point": "0101000020E6100000714BD4A0E2395FC0F8A5E10890AA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.904734348999952, 49.332231572000055 ], [ -124.909090743999968, 49.332275609000099 ], [ -124.909094500999927, 49.332796816000041 ], [ -124.89959712299999, 49.332746862000093 ], [ -124.899608749999928, 49.332257243000122 ], [ -124.904732511999939, 49.332309263000063 ], [ -124.904734348999952, 49.332231572000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.996337436801157", "sL_AssetLoss": "342.6289", "sL_BldgLoss": "341.374", "sL_StrLoss": "336.2", "sL_NStrLoss": "5.174", "sL_ContLoss": "1.2549", "geom_point": "0101000020E6100000EAEA6DB74D675FC004ABEAE5F7804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.611403245999952, 49.005754743000111 ], [ -125.616863407999944, 49.005774374000126 ], [ -125.616839235999919, 49.008719862000149 ], [ -125.61683385399995, 49.009375709000047 ], [ -125.611373269999916, 49.009356077000092 ], [ -125.611402492999972, 49.005845190000045 ], [ -125.611403245999952, 49.005754743000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999704958348031", "sL_AssetLoss": "121.3388", "sL_BldgLoss": "121.303", "sL_StrLoss": "121.07", "sL_NStrLoss": "0.233", "sL_ContLoss": "0.0358", "geom_point": "0101000020E610000014D39EF55D7F5FC05CC5A88C7BAD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.98737118299999, 49.357487001000067 ], [ -125.98656620300001, 49.355807908000052 ], [ -125.986787298999943, 49.355360707000067 ], [ -125.98711129699997, 49.355235403000087 ], [ -125.987813107999941, 49.355226786000038 ], [ -125.988147914999942, 49.355299391000059 ], [ -125.988837218999947, 49.355758003000084 ], [ -125.9891987929999, 49.355812188000101 ], [ -125.990136295999932, 49.355607103000096 ], [ -125.990480298999969, 49.355365011000153 ], [ -125.990519885999959, 49.354913497000084 ], [ -125.989456710999931, 49.354167198 ], [ -125.989064496999902, 49.353601788000113 ], [ -125.98923629799999, 49.353247193000108 ], [ -125.989774504999943, 49.352593405000093 ], [ -125.989740184999931, 49.352133589000047 ], [ -125.992838359999936, 49.352133838000036 ], [ -125.992837803999976, 49.355733319000123 ], [ -125.991133358999917, 49.35573319300007 ], [ -125.991132884999928, 49.358208456000106 ], [ -125.986641086999953, 49.358207995000036 ], [ -125.986662790999958, 49.35805390600008 ], [ -125.987152308999953, 49.357951300000089 ], [ -125.987363304999988, 49.357803209000053 ], [ -125.98737118299999, 49.357487001000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998989713149545", "sL_AssetLoss": "30.9813", "sL_BldgLoss": "30.95", "sL_StrLoss": "30.4", "sL_NStrLoss": "0.55", "sL_ContLoss": "0.0313", "geom_point": "0101000020E6100000CFE648991A665FC0130A95A82C7E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.59554846599994, 48.986991893000116 ], [ -125.59553445499995, 48.986722301000043 ], [ -125.595124827999939, 48.986731521000145 ], [ -125.595110818999927, 48.986461929000043 ], [ -125.594701190999956, 48.986471148000078 ], [ -125.594687185999987, 48.986201557000065 ], [ -125.594277559999924, 48.986210775000089 ], [ -125.594263556999962, 48.985941183000058 ], [ -125.593444311999946, 48.985959613000027 ], [ -125.593388314999928, 48.984881244000064 ], [ -125.593797928999919, 48.984872029000066 ], [ -125.59378392699999, 48.984602437 ], [ -125.595012759999975, 48.984574785000056 ], [ -125.595026766999922, 48.984844377000101 ], [ -125.59584599199998, 48.984825936000028 ], [ -125.59586000399996, 48.985095527000098 ], [ -125.59667923399999, 48.985077079000106 ], [ -125.596693248999955, 48.98534667100008 ], [ -125.597102865999943, 48.985337445000056 ], [ -125.597172964999942, 48.986685403000109 ], [ -125.596763338999949, 48.986694629000056 ], [ -125.596777356999965, 48.986964222000026 ], [ -125.59554846599994, 48.986991893000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999627772955491", "sL_AssetLoss": "128.6849", "sL_BldgLoss": "128.637", "sL_StrLoss": "128.5", "sL_NStrLoss": "0.137", "sL_ContLoss": "0.0479", "geom_point": "0101000020E6100000B04797ED39835FC0952175D8D0A24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.047384095, 49.270732309000067 ], [ -126.05237062499999, 49.270730006000079 ], [ -126.052373844999934, 49.273582648000136 ], [ -126.049436987999954, 49.273628191000043 ], [ -126.049778011999962, 49.273413100000027 ], [ -126.04983029099995, 49.273225095000051 ], [ -126.049819104999969, 49.272972982000056 ], [ -126.04962610099993, 49.272760812000065 ], [ -126.048945696999937, 49.272626907000067 ], [ -126.04822369599998, 49.272275200000109 ], [ -126.04810090699999, 49.271578697000109 ], [ -126.04787869099998, 49.271141511000053 ], [ -126.047384095, 49.270732309000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12873583", "BldgCostT": "8878333", "sL_LossRatio": "0.998878780969155", "sL_AssetLoss": "1780.562", "sL_BldgLoss": "1778.5656", "sL_StrLoss": "1758.8644", "sL_NStrLoss": "19.7012", "sL_ContLoss": "1.9964", "geom_point": "0101000020E61000000A54CE30D8655FC0B73E59EF3F7C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.587876816999938, 48.977889364000127 ], [ -125.5878791899999, 48.977620471000094 ], [ -125.586256772999931, 48.97761422400005 ], [ -125.586263321999951, 48.97687468 ], [ -125.585962403999972, 48.976873519000087 ], [ -125.585969754999951, 48.976044092000151 ], [ -125.586210982999916, 48.976026794000056 ], [ -125.586506596999982, 48.975894309000132 ], [ -125.586522997999936, 48.975686396000057 ], [ -125.586086393999906, 48.975202211000123 ], [ -125.586176700999943, 48.974299187000092 ], [ -125.586104988999935, 48.973941703000072 ], [ -125.585664217999934, 48.973124307000056 ], [ -125.584726716999953, 48.972154394000043 ], [ -125.583526184999968, 48.97139950500015 ], [ -125.583399, 48.971069093000075 ], [ -125.583620713999963, 48.970866895 ], [ -125.585060405999982, 48.970950904000112 ], [ -125.585461019999926, 48.970771499000108 ], [ -125.585668823999953, 48.970542202000019 ], [ -125.585730698999953, 48.970161885000088 ], [ -125.585275392999918, 48.969569391000036 ], [ -125.58472111499999, 48.969308032000079 ], [ -125.586020838999929, 48.9693130570001 ], [ -125.585998710999945, 48.968885454000059 ], [ -125.586399576999952, 48.968833094000104 ], [ -125.58764981299997, 48.968445694000089 ], [ -125.588531210999975, 48.968021297000099 ], [ -125.589790895999926, 48.967011486000089 ], [ -125.590089612000014, 48.966601680000061 ], [ -125.590799007, 48.966585740000077 ], [ -125.590771054999934, 48.966046552000108 ], [ -125.59118051499992, 48.966037349000061 ], [ -125.591170122999955, 48.965836908000043 ], [ -125.590380941999939, 48.96583389700006 ], [ -125.59040668099999, 48.965738301000066 ], [ -125.590463579999948, 48.964459397000063 ], [ -125.590282391999978, 48.963582003000035 ], [ -125.591430926999962, 48.96239470600009 ], [ -125.591166808999958, 48.962185702000063 ], [ -125.590877401999975, 48.962061256000077 ], [ -125.589914602999926, 48.961796986000131 ], [ -125.591389727999953, 48.960925950000046 ], [ -125.595199602999955, 48.960940401000066 ], [ -125.595184720999981, 48.962658783000066 ], [ -125.595168408999925, 48.964541985000039 ], [ -125.59444462499999, 48.96453925 ], [ -125.594433256999963, 48.965849299000062 ], [ -125.592810187999959, 48.96584314800009 ], [ -125.592860312999974, 48.966809305 ], [ -125.593269778999982, 48.966800095000096 ], [ -125.593283768999981, 48.967069689000034 ], [ -125.594102703999937, 48.967051265000116 ], [ -125.59410988799999, 48.967189682000033 ], [ -125.59705050099997, 48.967200772000112 ], [ -125.59704762399997, 48.967534453000098 ], [ -125.597053119999913, 48.96753447300005 ], [ -125.597042051999907, 48.968818126000059 ], [ -125.597022063999987, 48.971136019000028 ], [ -125.597014922999975, 48.971135993000061 ], [ -125.597012181999958, 48.971453818000057 ], [ -125.596074485999949, 48.971450290000085 ], [ -125.596060141999956, 48.973109537000013 ], [ -125.595689912999958, 48.973108142000079 ], [ -125.595659132999913, 48.976665138000016 ], [ -125.593344625999976, 48.976656387000034 ], [ -125.593333712999979, 48.977910193000078 ], [ -125.588268811999953, 48.977890870000081 ], [ -125.587876816999938, 48.977889364000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.99991135341577", "sL_AssetLoss": "111.2282", "sL_BldgLoss": "111.21834", "sL_StrLoss": "111.19132", "sL_NStrLoss": "0.02702", "sL_ContLoss": "0.00986", "geom_point": "0101000020E610000075327A66B0A25FC01BFD60C71CB14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.53997210199999, 49.385716332000158 ], [ -126.539968425999945, 49.385401209000044 ], [ -126.539524601999943, 49.385403421000035 ], [ -126.539482649999968, 49.381804203000073 ], [ -126.541775071999936, 49.38179275600001 ], [ -126.542052714999954, 49.382066007000063 ], [ -126.542652893999929, 49.38245629700004 ], [ -126.543477216999989, 49.382518899000026 ], [ -126.544646710999984, 49.382309593000059 ], [ -126.545049299999917, 49.38250749200008 ], [ -126.545131807999923, 49.383336385000085 ], [ -126.545350591999949, 49.383917510000053 ], [ -126.545256809999913, 49.384410299000145 ], [ -126.545109906999983, 49.38458690300007 ], [ -126.544926611, 49.384709400000041 ], [ -126.544248406999955, 49.384757801000042 ], [ -126.543772398999963, 49.384918713000083 ], [ -126.542498413999951, 49.385017007000016 ], [ -126.541801115999959, 49.385442805000103 ], [ -126.541624135999982, 49.38570808000005 ], [ -126.53997210199999, 49.385716332000158 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978334", "BldgCostT": "3433334", "sL_LossRatio": "0.99695931658241", "sL_AssetLoss": "1104.75822", "sL_BldgLoss": "1101.399", "sL_StrLoss": "1078", "sL_NStrLoss": "23.399", "sL_ContLoss": "3.35922", "geom_point": "0101000020E6100000F6E592CBFB6A5FC0DF7AE27306824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.668608053999904, 49.019780911000062 ], [ -125.668622464999913, 49.017751031000046 ], [ -125.668520270999949, 49.017750715000012 ], [ -125.66853202499999, 49.016095374000017 ], [ -125.667233852999956, 49.016125409000011 ], [ -125.667176201999979, 49.015047109000086 ], [ -125.668539692999957, 49.015015563000055 ], [ -125.668545841999958, 49.014149414 ], [ -125.669590398999944, 49.014152634 ], [ -125.66956309199999, 49.013642330000039 ], [ -125.67079256599996, 49.013613859000053 ], [ -125.670806995999939, 49.013883433000039 ], [ -125.671088933999897, 49.013876903000067 ], [ -125.671108317999966, 49.011125569000072 ], [ -125.675907852999927, 49.011140168000075 ], [ -125.675167412999926, 49.011657691000025 ], [ -125.675218602999948, 49.011845690000037 ], [ -125.674723298999965, 49.012288600000026 ], [ -125.67477850399996, 49.012539186000019 ], [ -125.674557191999938, 49.012787096000118 ], [ -125.674539279999976, 49.012949394000046 ], [ -125.674954897999939, 49.013291189000022 ], [ -125.674702820999954, 49.01343219600011 ], [ -125.674171291000022, 49.013489188000051 ], [ -125.674030299, 49.013654410000107 ], [ -125.67376851899995, 49.015162605000093 ], [ -125.673833320999961, 49.016628199000074 ], [ -125.674432815999964, 49.018593592000109 ], [ -125.6750574819999, 49.019568787000061 ], [ -125.674071497999989, 49.019565798000016 ], [ -125.674069878999944, 49.01979763100011 ], [ -125.668608053999904, 49.019780911000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999022055113223", "sL_AssetLoss": "111.9695", "sL_BldgLoss": "111.86", "sL_StrLoss": "109.2", "sL_NStrLoss": "2.66", "sL_ContLoss": "0.1095", "geom_point": "0101000020E6100000FC2CE0AFD3585FC0695A2049E2984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.386148634999955, 49.196097556000012 ], [ -125.386109704999967, 49.195288680000019 ], [ -125.385698293, 49.195297184000054 ], [ -125.385646395999913, 49.19421868400012 ], [ -125.38605780099999, 49.194210181000109 ], [ -125.386044824999956, 49.193940555000069 ], [ -125.386867627999905, 49.19392354500004 ], [ -125.38685464799994, 49.193653920000052 ], [ -125.387266046999969, 49.193645412000095 ], [ -125.387253063999978, 49.193375787000015 ], [ -125.38807585699999, 49.193358767000049 ], [ -125.388062870999946, 49.193089143000115 ], [ -125.39011983899999, 49.193046569000067 ], [ -125.390132836999953, 49.193316194000062 ], [ -125.39054423099995, 49.193307675000014 ], [ -125.390582225999978, 49.194095665000098 ], [ -125.390583231999969, 49.194116547000057 ], [ -125.390552397999969, 49.194117185000053 ], [ -125.390171830999932, 49.194125067000108 ], [ -125.39018379499997, 49.194373279000096 ], [ -125.390184827, 49.194394691000056 ], [ -125.390149881999918, 49.194395415000074 ], [ -125.389773423999927, 49.194403209000065 ], [ -125.389784541999973, 49.194633869000015 ], [ -125.389786419999908, 49.194672834000066 ], [ -125.389722827999933, 49.194674150000033 ], [ -125.388552198999918, 49.194698378000062 ], [ -125.38856518799993, 49.194968003000035 ], [ -125.38815377899999, 49.194976517000057 ], [ -125.388166766999959, 49.195246140000037 ], [ -125.387755355999957, 49.195254651000049 ], [ -125.387791742, 49.19601016400005 ], [ -125.387794312999986, 49.196063526000053 ], [ -125.387712850999918, 49.196065211000047 ], [ -125.386148634999955, 49.196097556000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "3.3984", "sL_BldgLoss": "3.3984", "sL_StrLoss": "3.39", "sL_NStrLoss": "0.0084", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E9F7829107B5FC0766AB26F3C8E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.922727381999962, 49.112426196000065 ], [ -125.92216891299995, 49.112252403000113 ], [ -125.921380923999948, 49.112118503000055 ], [ -125.92118028799996, 49.11198039300006 ], [ -125.921126282999964, 49.111756794000044 ], [ -125.920313691, 49.111695494000038 ], [ -125.920353509999984, 49.111433509000058 ], [ -125.920143648999925, 49.111342896000039 ], [ -125.920145002999945, 49.110553199000108 ], [ -125.920784493999989, 49.110596107000113 ], [ -125.920836015999924, 49.110782600000078 ], [ -125.921282283999957, 49.110925103000071 ], [ -125.921418386999903, 49.111137290000016 ], [ -125.921626990999968, 49.111167192000011 ], [ -125.921731897999976, 49.111111606000108 ], [ -125.9217249, 49.11099479500006 ], [ -125.921480501999923, 49.110802608000064 ], [ -125.92144520899997, 49.110416598000036 ], [ -125.921819394999957, 49.110235703000065 ], [ -125.922256214999948, 49.110207299000088 ], [ -125.92208609299999, 49.109888198000142 ], [ -125.922928897999981, 49.109794199000092 ], [ -125.923019200999974, 49.109468109000098 ], [ -125.923386579999956, 49.109413993000068 ], [ -125.923948887, 49.109651805000098 ], [ -125.923727099999951, 49.109828405000052 ], [ -125.924070890999971, 49.110089013000099 ], [ -125.923986610999989, 49.110298396000147 ], [ -125.924539607, 49.110608899000049 ], [ -125.924384589999974, 49.110774109000047 ], [ -125.924417316999921, 49.110853796000157 ], [ -125.92487869099989, 49.111021902000061 ], [ -125.92447750299999, 49.111410686000042 ], [ -125.925074996999967, 49.11179101000004 ], [ -125.925326109999943, 49.111856500000137 ], [ -125.925529193999978, 49.112040213000121 ], [ -125.925535381999964, 49.112166997000053 ], [ -125.925211194, 49.112453202000012 ], [ -125.924485986999954, 49.112265194000074 ], [ -125.924240591999975, 49.112289398000087 ], [ -125.923793109999934, 49.11257 ], [ -125.922997316999954, 49.112590003000044 ], [ -125.922727381999962, 49.112426196000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11546834", "BldgCostT": "7963334", "sL_LossRatio": "0.99884482164489", "sL_AssetLoss": "1693.4741647", "sL_BldgLoss": "1691.5179", "sL_StrLoss": "1675.758", "sL_NStrLoss": "15.7599", "sL_ContLoss": "1.9562647", "geom_point": "0101000020E6100000FEBCC2E525625FC008A062E64C794840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.540847273999972, 48.95308963100004 ], [ -125.540853417999983, 48.952464073000101 ], [ -125.539671365999965, 48.952459003000094 ], [ -125.539684495999921, 48.951125535000074 ], [ -125.539045720999937, 48.951122791000031 ], [ -125.539061733999944, 48.949498700000042 ], [ -125.538296121999906, 48.949495406000082 ], [ -125.538294839999963, 48.949625165000057 ], [ -125.537718604999952, 48.949622682000054 ], [ -125.537717524999891, 48.949731980000109 ], [ -125.537297450999958, 48.94973016700007 ], [ -125.537297108999923, 48.949764690000052 ], [ -125.532546901000018, 48.94974408000013 ], [ -125.532546824999926, 48.949751710000051 ], [ -125.527093246, 48.949727789000086 ], [ -125.52710042399994, 48.949018167000062 ], [ -125.526422360999931, 48.949015173000113 ], [ -125.526438424999952, 48.947429222000089 ], [ -125.52547341799999, 48.947424954000049 ], [ -125.52547518099999, 48.947251395000102 ], [ -125.521799688999963, 48.947235060000054 ], [ -125.52180139699999, 48.947068053000102 ], [ -125.520879662999903, 48.947063938000028 ], [ -125.520916568999951, 48.943462278000084 ], [ -125.521265336999988, 48.94346383700006 ], [ -125.5216229, 48.943593294000095 ], [ -125.521732994999979, 48.943675043000056 ], [ -125.521652078, 48.944260470000081 ], [ -125.522658437999937, 48.944255592000033 ], [ -125.523043186999956, 48.944245573000039 ], [ -125.523152103999919, 48.944377992000035 ], [ -125.523214782999901, 48.944808097000113 ], [ -125.524355020999977, 48.94547610500009 ], [ -125.524640506, 48.945739606000068 ], [ -125.52666388199999, 48.946316398000086 ], [ -125.527405506999955, 48.946938710000062 ], [ -125.527517505, 48.946972904000098 ], [ -125.527845382999914, 48.946722301000094 ], [ -125.527838378999917, 48.946551396000075 ], [ -125.527531406, 48.946181104000054 ], [ -125.527198805999973, 48.946088492000094 ], [ -125.526608788999951, 48.945769508000097 ], [ -125.526576498999972, 48.945400586000062 ], [ -125.526177597999947, 48.945040297000048 ], [ -125.524911191999962, 48.94484371000015 ], [ -125.524603795999951, 48.944724101000105 ], [ -125.524594997999969, 48.944536101000089 ], [ -125.524780892, 48.944210107000082 ], [ -125.534772142999941, 48.94419280400006 ], [ -125.536103033999964, 48.944211815000081 ], [ -125.537083096999936, 48.944630101000051 ], [ -125.537823107999927, 48.945198388000065 ], [ -125.537877192999957, 48.946025814000116 ], [ -125.538081085999977, 48.946255103000055 ], [ -125.538798708999948, 48.94642738500005 ], [ -125.538934614999945, 48.946658206000038 ], [ -125.538827094999959, 48.946975814000105 ], [ -125.538904410999919, 48.947145202000108 ], [ -125.539234118999943, 48.947173695000068 ], [ -125.53932641099999, 48.94711818800009 ], [ -125.539635916999927, 48.946750708000131 ], [ -125.540032307999951, 48.94647300600009 ], [ -125.540036920999981, 48.946392685000063 ], [ -125.540797809999944, 48.946375918000079 ], [ -125.541609806999986, 48.94662680000004 ], [ -125.54182707299999, 48.946745900000067 ], [ -125.54183454299999, 48.946892876000042 ], [ -125.542085116999914, 48.946887352000026 ], [ -125.542248594999961, 48.946976964000037 ], [ -125.54227695499999, 48.947534844000124 ], [ -125.54285895799994, 48.947537327000113 ], [ -125.542875994000028, 48.94759810900009 ], [ -125.542518909999941, 48.947830291000059 ], [ -125.542339598999959, 48.948095201000086 ], [ -125.542403887999967, 48.948264702000081 ], [ -125.543132707999945, 48.948887085000067 ], [ -125.542851799999966, 48.949307194000014 ], [ -125.542640888, 48.950230106000042 ], [ -125.543132209999953, 48.950776987000083 ], [ -125.543519679999918, 48.950876697000076 ], [ -125.543830384999964, 48.951084594000037 ], [ -125.545044600999958, 48.952101499000086 ], [ -125.545285684999968, 48.952555790000062 ], [ -125.545685005999971, 48.952879094000089 ], [ -125.546153066999963, 48.953112225000034 ], [ -125.540847273999972, 48.95308963100004 ] ], [ [ -125.53313781099996, 48.945433080000115 ], [ -125.533138025999932, 48.945411503000031 ], [ -125.531076350999939, 48.945402503000039 ], [ -125.531082374999954, 48.944801902000066 ], [ -125.530953289999957, 48.944801337000058 ], [ -125.530946950999976, 48.945433259000026 ], [ -125.531147490999942, 48.945434137000113 ], [ -125.53114755799993, 48.945427443000035 ], [ -125.532148788999976, 48.945431818000067 ], [ -125.532148819999946, 48.945428767000074 ], [ -125.53313781099996, 48.945433080000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9025000", "BldgCostT": "4750000", "sL_LossRatio": "0.886016998486436", "sL_AssetLoss": "0.8589", "sL_BldgLoss": "0.761", "sL_StrLoss": "0.366", "sL_NStrLoss": "0.395", "sL_ContLoss": "0.0979", "geom_point": "0101000020E610000058E11AC8885F5FC0D34B8C65FA774840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.492653842999957, 48.938520088000097 ], [ -125.49264041, 48.93825047400005 ], [ -125.492231144999906, 48.938259323000054 ], [ -125.49221771399999, 48.937989707000078 ], [ -125.491399190999957, 48.938007400000117 ], [ -125.491385764999947, 48.937737784000035 ], [ -125.490976502999985, 48.937746629000074 ], [ -125.490936231999981, 48.936937781000033 ], [ -125.491345485, 48.936928936000058 ], [ -125.491291783999927, 48.93585047200007 ], [ -125.492928759999955, 48.93581508200004 ], [ -125.492982497999947, 48.936893545000039 ], [ -125.49257324499996, 48.936902395000068 ], [ -125.492600110999916, 48.937441627000062 ], [ -125.495055649999955, 48.937388503000129 ], [ -125.49509598899999, 48.93819734900007 ], [ -125.494277463999978, 48.93821506299999 ], [ -125.494290904999943, 48.938484678000073 ], [ -125.492653842999957, 48.938520088000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.999173586502354", "sL_AssetLoss": "181.5072", "sL_BldgLoss": "181.3572", "sL_StrLoss": "179.4779", "sL_NStrLoss": "1.8793", "sL_ContLoss": "0.15", "geom_point": "0101000020E6100000AD4A8525DC7D5FC0B797133802954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.963541487999919, 49.163199193000011 ], [ -125.962449609999922, 49.162346103000104 ], [ -125.962523974999954, 49.162011394000075 ], [ -125.962802797999956, 49.16185049900011 ], [ -125.963630598999899, 49.161676801000105 ], [ -125.964213717999954, 49.1617964020001 ], [ -125.964680805999961, 49.161595605000066 ], [ -125.965284804999953, 49.161606986000024 ], [ -125.965862780999956, 49.161161198000066 ], [ -125.966187801999922, 49.160776041000105 ], [ -125.966348769999939, 49.160776091000045 ], [ -125.966347533999979, 49.162483398000099 ], [ -125.967851410999955, 49.162483857000062 ], [ -125.967851287999935, 49.162662337000071 ], [ -125.96853899599995, 49.162662540000042 ], [ -125.968538993999971, 49.162666168000051 ], [ -125.969085373999974, 49.162666327000046 ], [ -125.96908513799994, 49.163022199000068 ], [ -125.969496879999937, 49.163022317000035 ], [ -125.969494518999923, 49.166622827000019 ], [ -125.968636536999924, 49.166622580000059 ], [ -125.968636397999958, 49.166829049000107 ], [ -125.964622443999971, 49.166827804999983 ], [ -125.964616394999965, 49.166716998000048 ], [ -125.965062189999969, 49.16613031300006 ], [ -125.965688186999927, 49.165807003000097 ], [ -125.965786396999974, 49.165624701000063 ], [ -125.965307008000011, 49.164935285000055 ], [ -125.96488122, 49.164730302000066 ], [ -125.964869914999952, 49.164515197000121 ], [ -125.964673891999979, 49.16423179100007 ], [ -125.963466291999978, 49.163552411000104 ], [ -125.963541487999919, 49.163199193000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.999938833900855", "sL_AssetLoss": "184.41588", "sL_BldgLoss": "184.4046", "sL_StrLoss": "184.36", "sL_NStrLoss": "0.0446", "sL_ContLoss": "0.01128", "geom_point": "0101000020E61000005CCA3B7F41945FC0EC4F038210B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.315203119999978, 49.420865796 ], [ -126.315386789999963, 49.420546701000028 ], [ -126.316104874999922, 49.420293196000081 ], [ -126.316262880999943, 49.419649498000062 ], [ -126.316519388999936, 49.419744911000066 ], [ -126.317046789999935, 49.420458389000068 ], [ -126.318054010999958, 49.420707701000048 ], [ -126.319310678999898, 49.420646397999988 ], [ -126.320421914999926, 49.420502285000111 ], [ -126.32044326, 49.423582993000068 ], [ -126.31746141099994, 49.423591768000122 ], [ -126.31746275799999, 49.423787969000031 ], [ -126.316969747999948, 49.423789412000062 ], [ -126.316969939000018, 49.423817381000063 ], [ -126.31689721199993, 49.423817594000042 ], [ -126.316899759999956, 49.424189381000062 ], [ -126.31155864099992, 49.424204868000054 ], [ -126.311896799999928, 49.424090213000042 ], [ -126.311977812999913, 49.423355294000061 ], [ -126.312403605999961, 49.42264459400009 ], [ -126.31253441099993, 49.422540596000012 ], [ -126.313023403999978, 49.42241669600002 ], [ -126.31427680299997, 49.421159208000056 ], [ -126.314547389999944, 49.421021010000061 ], [ -126.315203119999978, 49.420865796 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999668247400625", "sL_AssetLoss": "129.0118", "sL_BldgLoss": "128.969", "sL_StrLoss": "128.67", "sL_NStrLoss": "0.299", "sL_ContLoss": "0.0428", "geom_point": "0101000020E6100000936A2B38747C5FC04FBE4D3D5AA04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.941628604999892, 49.255124824000106 ], [ -125.941629559999967, 49.254366326000074 ], [ -125.939910684000012, 49.254365383000128 ], [ -125.939910757999925, 49.254308171000034 ], [ -125.940455404999966, 49.253724802000114 ], [ -125.941183289999941, 49.253454201000096 ], [ -125.941498709000015, 49.253230589000019 ], [ -125.942453496999946, 49.251964509000082 ], [ -125.942419610999977, 49.251839186000026 ], [ -125.942219792999964, 49.251726700000091 ], [ -125.942251499999941, 49.25154580300002 ], [ -125.942647917999977, 49.251508802000068 ], [ -125.942681603999944, 49.251392000000102 ], [ -125.942924704999953, 49.25131358700007 ], [ -125.943500111999981, 49.251272306000054 ], [ -125.944488096999962, 49.250788100000065 ], [ -125.944567913999961, 49.250543196000052 ], [ -125.944286002999931, 49.249543640000098 ], [ -125.947231349999981, 49.249545120000015 ], [ -125.947227257999913, 49.253145156000073 ], [ -125.947120428999952, 49.253145103000058 ], [ -125.947118170999914, 49.255127653000031 ], [ -125.941628604999892, 49.255124824000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "5.39982", "sL_BldgLoss": "5.39982", "sL_StrLoss": "5.39", "sL_NStrLoss": "0.00982", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C849596D9B795FC0D0EA8953D2954840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.903377136999922, 49.171818459000043 ], [ -125.903377381999988, 49.171700715000064 ], [ -125.901197938000038, 49.171698739000142 ], [ -125.899725485999966, 49.171532293000091 ], [ -125.897756920999981, 49.170944100000078 ], [ -125.89730259400001, 49.170676288000088 ], [ -125.897188913999969, 49.170695505 ], [ -125.897189166999965, 49.17058073900003 ], [ -125.896432181999955, 49.170580015000048 ], [ -125.896233595999945, 49.170459796000024 ], [ -125.895650612999987, 49.170340205000066 ], [ -125.895377405999938, 49.170139384000024 ], [ -125.894997792, 49.170220587000067 ], [ -125.894735882, 49.170192103000097 ], [ -125.894627502999953, 49.169997007000077 ], [ -125.894797511999954, 49.169857402000076 ], [ -125.894819997999917, 49.169514185000011 ], [ -125.895093173999925, 49.169246394000062 ], [ -125.895370284999956, 49.169059908000058 ], [ -125.896120219999943, 49.168978705000058 ], [ -125.896442512999911, 49.168636893000027 ], [ -125.896766789999987, 49.16855710100004 ], [ -125.896897595999945, 49.168671012000097 ], [ -125.896955895999909, 49.168984394000105 ], [ -125.897430706999899, 49.169106891000062 ], [ -125.897745804999943, 49.169108301000051 ], [ -125.897781914999925, 49.16901710800007 ], [ -125.89763488899996, 49.168841993000029 ], [ -125.897760196999968, 49.168658189000013 ], [ -125.898277021999931, 49.168572800000121 ], [ -125.899219317999922, 49.168945901000015 ], [ -125.899363587999915, 49.169329005000094 ], [ -125.899490406999988, 49.169378901000115 ], [ -125.899804202, 49.169353198000053 ], [ -125.900051710999918, 49.16913109800003 ], [ -125.900450309999911, 49.169131095000118 ], [ -125.900957301999952, 49.169343306000087 ], [ -125.901082094999978, 49.169591108000063 ], [ -125.901770887999987, 49.170113808000025 ], [ -125.90368245, 49.170019723000074 ], [ -125.903679521999962, 49.171433678000035 ], [ -125.903790232999981, 49.171433777000111 ], [ -125.903790527999917, 49.171290519000067 ], [ -125.90664279399999, 49.171293028000051 ], [ -125.906632514999984, 49.171376991000024 ], [ -125.906462485999967, 49.171516608000054 ], [ -125.906107287999944, 49.171533707000023 ], [ -125.905316218999928, 49.171842799000032 ], [ -125.905201181999971, 49.172006492000065 ], [ -125.904610912999942, 49.172247203000076 ], [ -125.904675501, 49.17237968600007 ], [ -125.904555924999983, 49.172463702000066 ], [ -125.903981982999966, 49.172748595 ], [ -125.903440398999962, 49.172852503000044 ], [ -125.903204380999966, 49.172990007000116 ], [ -125.90320682, 49.171818306000098 ], [ -125.903377136999922, 49.171818459000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "0.992988405849951", "sL_AssetLoss": "1085.9442", "sL_BldgLoss": "1078.33", "sL_StrLoss": "1024.72", "sL_NStrLoss": "53.61", "sL_ContLoss": "7.6142", "geom_point": "0101000020E6100000B11F73AFDD5B5FC0B183C623A3854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.432390673999961, 49.047228577000091 ], [ -125.432364355999937, 49.046689331000046 ], [ -125.431954184999967, 49.046697981000094 ], [ -125.431888403999977, 49.045349865000034 ], [ -125.431709859999927, 49.045353630000072 ], [ -125.43147824199994, 49.045358513000075 ], [ -125.431419589999962, 49.044156202000096 ], [ -125.431386171999961, 49.043471151000126 ], [ -125.431796317999954, 49.043462504000075 ], [ -125.431783163999967, 49.04319288100001 ], [ -125.433423734999934, 49.0431582800001 ], [ -125.433357920999967, 49.041810166000054 ], [ -125.434178183999919, 49.04179285700009 ], [ -125.434165016999955, 49.041523234000088 ], [ -125.43457514499994, 49.041514578000061 ], [ -125.434561976999987, 49.041244955000089 ], [ -125.436612605999983, 49.041201652000012 ], [ -125.436625785, 49.041471274000017 ], [ -125.437035911999928, 49.04146260900005 ], [ -125.437049093999917, 49.041732231000069 ], [ -125.437459223999966, 49.041723565000062 ], [ -125.437472407999962, 49.041993187000024 ], [ -125.438292669999925, 49.041975849000089 ], [ -125.438305857999964, 49.042245470000111 ], [ -125.439536258999951, 49.042219452000033 ], [ -125.439549453999959, 49.042489075000077 ], [ -125.439959587999937, 49.042480399000112 ], [ -125.439972786999931, 49.042750020000049 ], [ -125.440382923999962, 49.04274134200007 ], [ -125.440422525999921, 49.043550207000095 ], [ -125.440012382999953, 49.043558885000152 ], [ -125.44002558199999, 49.043828506000096 ], [ -125.438795142999979, 49.043854530000083 ], [ -125.438808334999962, 49.044124151000119 ], [ -125.438398185999972, 49.044132823000048 ], [ -125.438464141999958, 49.045480932000096 ], [ -125.438053980999925, 49.045489603000121 ], [ -125.438067169999954, 49.045759225000097 ], [ -125.436836681999921, 49.045785227000053 ], [ -125.436849866, 49.046054850000104 ], [ -125.436029535999978, 49.04607217800001 ], [ -125.43604271400001, 49.046341801000018 ], [ -125.434402040999956, 49.046376440000067 ], [ -125.434415213, 49.046646063000026 ], [ -125.433594870999954, 49.046663375000037 ], [ -125.43362120099999, 49.047202620000057 ], [ -125.432390673999961, 49.047228577000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.999366027259808", "sL_AssetLoss": "286.289912", "sL_BldgLoss": "286.108412", "sL_StrLoss": "285.22", "sL_NStrLoss": "0.888412", "sL_ContLoss": "0.1815", "geom_point": "0101000020E61000003A245226B7845FC0ED3E11D525A44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.071931992999978, 49.281506908000118 ], [ -126.071986193999933, 49.281301812000031 ], [ -126.071866383999932, 49.280992697000109 ], [ -126.071395603999974, 49.280566895000106 ], [ -126.071395687999967, 49.280125394000024 ], [ -126.071516899999921, 49.279930295000092 ], [ -126.071496220999933, 49.279731154000075 ], [ -126.075333466999936, 49.279728547000026 ], [ -126.075335007999982, 49.280677984000093 ], [ -126.07538812199999, 49.280677947000072 ], [ -126.075389247999937, 49.281371387000043 ], [ -126.07559305299992, 49.281371245000045 ], [ -126.075598919, 49.284971105000032 ], [ -126.075099121999955, 49.284971454000086 ], [ -126.075099617999953, 49.285277217000036 ], [ -126.072333588999953, 49.28527910400004 ], [ -126.072315194999973, 49.284801110000089 ], [ -126.071978600999927, 49.283730085000059 ], [ -126.072019983999951, 49.283254406000012 ], [ -126.07230109599999, 49.282946790000075 ], [ -126.072227391999931, 49.282783002000038 ], [ -126.071695585999947, 49.282464006000104 ], [ -126.071648810999989, 49.282354303000055 ], [ -126.071489608999968, 49.281531109000063 ], [ -126.071931992999978, 49.281506908000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.998916952055963", "sL_AssetLoss": "369.3775536", "sL_BldgLoss": "368.9775", "sL_StrLoss": "365.36", "sL_NStrLoss": "3.6175", "sL_ContLoss": "0.4000536", "geom_point": "0101000020E610000046CB05578E645FC0AB601236D57C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.572803803999989, 48.980214972000063 ], [ -125.572805274999922, 48.980054076000044 ], [ -125.572274192999956, 48.980051959000029 ], [ -125.572302986999929, 48.976906703000061 ], [ -125.572155554999966, 48.97690611600008 ], [ -125.568600238999963, 48.976891875000049 ], [ -125.568608390999898, 48.976008967000084 ], [ -125.56848578599994, 48.97600847399999 ], [ -125.568519045999977, 48.972406964000129 ], [ -125.570151153999973, 48.97241351900005 ], [ -125.572754650999954, 48.972423922000132 ], [ -125.572799295999971, 48.972484801000064 ], [ -125.572879897999911, 48.973256704000043 ], [ -125.573256778999948, 48.973931799000106 ], [ -125.573650176999962, 48.974270288000142 ], [ -125.573251501999934, 48.977152524000132 ], [ -125.573395165999955, 48.978721893000099 ], [ -125.573532132999929, 48.980217871000022 ], [ -125.572803803999989, 48.980214972000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.998971737644506", "sL_AssetLoss": "84.1225", "sL_BldgLoss": "84.036", "sL_StrLoss": "79.605", "sL_NStrLoss": "4.431", "sL_ContLoss": "0.0865", "geom_point": "0101000020E610000015E7E24EED635FC00B30662AC87E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.561653657999912, 48.98868398700013 ], [ -125.564105126999934, 48.988693975000125 ], [ -125.564071514999966, 48.992295392000052 ], [ -125.559951075999948, 48.992278572000039 ], [ -125.558612952999965, 48.992273076000153 ], [ -125.558635876999958, 48.989847192000099 ], [ -125.558646983999921, 48.988671661000055 ], [ -125.561653657999912, 48.98868398700013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.996895722586943", "sL_AssetLoss": "520.44962", "sL_BldgLoss": "518.834", "sL_StrLoss": "496.406", "sL_NStrLoss": "22.428", "sL_ContLoss": "1.61562", "geom_point": "0101000020E61000003ACA24977D7B5FC032A51E3736944840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.92686308399999, 49.157271698000145 ], [ -125.926858508999942, 49.156946986 ], [ -125.927192595999912, 49.156569486000123 ], [ -125.927496507999976, 49.156372996000101 ], [ -125.927302186999896, 49.156099496000138 ], [ -125.927711710999986, 49.155846003000129 ], [ -125.927621906999903, 49.15569509200003 ], [ -125.92697399499994, 49.155406005000096 ], [ -125.926891281999943, 49.155165296000085 ], [ -125.926906259999953, 49.155153225000035 ], [ -125.930326830999959, 49.155155491000052 ], [ -125.930325694999937, 49.155914473000117 ], [ -125.93095435099994, 49.155914878000075 ], [ -125.930953614999979, 49.156411428000048 ], [ -125.931634253999988, 49.156411862000041 ], [ -125.931633375999979, 49.157009681000019 ], [ -125.93175918399993, 49.157009761000076 ], [ -125.931753903999962, 49.160610303000055 ], [ -125.926930570999971, 49.160607139000042 ], [ -125.927743307999918, 49.160100190000023 ], [ -125.928467292999969, 49.159570309000117 ], [ -125.928552495999952, 49.159405094000064 ], [ -125.928604290999942, 49.158873890000031 ], [ -125.928476209999971, 49.158328393000083 ], [ -125.928259407999946, 49.158161796000073 ], [ -125.927682495999946, 49.158131898000093 ], [ -125.927260385999915, 49.157945299000055 ], [ -125.92686308399999, 49.157271698000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999947626668599", "sL_AssetLoss": "81.14817", "sL_BldgLoss": "81.14392", "sL_StrLoss": "81.142", "sL_NStrLoss": "0.00192", "sL_ContLoss": "0.00425", "geom_point": "0101000020E610000001A1370DB8995FC04F5C8E57A0BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.400234122999947, 49.475331064000052 ], [ -126.400202940999961, 49.471732277000065 ], [ -126.403234050999956, 49.471721053000067 ], [ -126.402936821999958, 49.472350902000088 ], [ -126.403136599, 49.473020295000019 ], [ -126.403060998999976, 49.473414792000057 ], [ -126.402453517999945, 49.473904797000088 ], [ -126.402476003999965, 49.474031491000041 ], [ -126.402514606999915, 49.474068493000061 ], [ -126.402751109999983, 49.474289306000045 ], [ -126.403650205999924, 49.474777786000068 ], [ -126.40449539399998, 49.475004216000059 ], [ -126.405704713999953, 49.475102498000119 ], [ -126.40574787499996, 49.475095185000086 ], [ -126.405749765999985, 49.475310577000101 ], [ -126.401155550999974, 49.47532766200009 ], [ -126.401113487999964, 49.475242093000098 ], [ -126.401072289999917, 49.475223604000057 ], [ -126.400789699999947, 49.475091097000103 ], [ -126.400483077999922, 49.475156596000012 ], [ -126.400360560999943, 49.475330598000028 ], [ -126.400234122999947, 49.475331064000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998957138966225", "sL_AssetLoss": "180.2733", "sL_BldgLoss": "180.0853", "sL_StrLoss": "178.61", "sL_NStrLoss": "1.4753", "sL_ContLoss": "0.188", "geom_point": "0101000020E61000003A18DACE31575FC0994B478CE0824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.363545514999927, 49.024099063000051 ], [ -125.363507186999982, 49.023290150000044 ], [ -125.36190735299999, 49.023322926000063 ], [ -125.361855394999978, 49.023196593000094 ], [ -125.361152906999919, 49.023112606000076 ], [ -125.360570807999977, 49.02295310700007 ], [ -125.360244084999948, 49.022672493000123 ], [ -125.360056292999928, 49.022208206000094 ], [ -125.360282798999947, 49.02147470100001 ], [ -125.360193110999916, 49.021026107000097 ], [ -125.360114076999935, 49.020966819000193 ], [ -125.360112363999974, 49.020930578000076 ], [ -125.36175228799999, 49.020897007000087 ], [ -125.361765052999914, 49.02116664400009 ], [ -125.362175034999979, 49.021158247000116 ], [ -125.362187802999969, 49.021427886000033 ], [ -125.36259778799996, 49.021419487000088 ], [ -125.362623330999924, 49.021958764000047 ], [ -125.363443307999944, 49.021941962000078 ], [ -125.363456082999974, 49.022211600000048 ], [ -125.363866075, 49.02220319700006 ], [ -125.363878851999971, 49.02247283500008 ], [ -125.364698836999978, 49.022456026000022 ], [ -125.364711619999966, 49.022725663000138 ], [ -125.365121614999978, 49.022717256000092 ], [ -125.365159968999933, 49.02352616700005 ], [ -125.364749968999917, 49.023534574000074 ], [ -125.364775534, 49.024073849000025 ], [ -125.363545514999927, 49.024099063000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10522251", "BldgCostT": "6785001", "sL_LossRatio": "0.987538239727112", "sL_AssetLoss": "1946.6993", "sL_BldgLoss": "1922.44", "sL_StrLoss": "1787.27", "sL_NStrLoss": "135.17", "sL_ContLoss": "24.2593", "geom_point": "0101000020E610000072EE34A1A2655FC09FE5DC9A327F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.584639813999971, 48.994367545000095 ], [ -125.58464352299994, 48.993950320000046 ], [ -125.584258036999941, 48.993948827000054 ], [ -125.584261706999953, 48.993536544000108 ], [ -125.583868245999909, 48.993535019000028 ], [ -125.583900329999949, 48.989933603000047 ], [ -125.584207556999928, 48.989934794000149 ], [ -125.584216477999973, 48.988932608000027 ], [ -125.584376411999969, 48.988933228000043 ], [ -125.584380799999948, 48.988440111000031 ], [ -125.587497758999987, 48.988452140000042 ], [ -125.588652533999948, 48.988456574000026 ], [ -125.588626649, 48.987957229000131 ], [ -125.589445929999954, 48.987938832000111 ], [ -125.589417970999989, 48.987399647000089 ], [ -125.590646874999891, 48.987372040000032 ], [ -125.590688833999963, 48.988180819000071 ], [ -125.59027919299993, 48.988190023000094 ], [ -125.590307160999956, 48.988729208000066 ], [ -125.589897513999972, 48.988738411000021 ], [ -125.589911495999928, 48.989008004000041 ], [ -125.589834107999962, 48.989009742000079 ], [ -125.589824664999924, 48.990085055000058 ], [ -125.58989381899994, 48.990085320000048 ], [ -125.589888399999936, 48.99070247500007 ], [ -125.591358500999931, 48.990708084000033 ], [ -125.591330417999984, 48.993917707000072 ], [ -125.591328392999984, 48.99414912600011 ], [ -125.591720166999892, 48.994150617000052 ], [ -125.594690686999911, 48.994161879000075 ], [ -125.594655757999973, 48.993489758000109 ], [ -125.59629449099999, 48.993452869000066 ], [ -125.59633168299996, 48.994168066000043 ], [ -125.596754694999916, 48.994169656000075 ], [ -125.596729501999945, 48.99708732000007 ], [ -125.596723598999958, 48.997771051000029 ], [ -125.591264380999931, 48.997750397000111 ], [ -125.591294494999929, 48.994309373000092 ], [ -125.590595239999956, 48.99430670700005 ], [ -125.590593272999982, 48.994531015000092 ], [ -125.590097399999962, 48.994529122000081 ], [ -125.590096062999947, 48.994681427000103 ], [ -125.585498805999947, 48.994663767000091 ], [ -125.585467982999972, 48.99813643500007 ], [ -125.580008728, 48.998115207000076 ], [ -125.580009747999981, 48.998001714000061 ], [ -125.580041113999968, 48.994513819000119 ], [ -125.584333330999982, 48.994530532000063 ], [ -125.584638353999978, 48.994531713000079 ], [ -125.584639813999971, 48.994367545000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5903917", "BldgCostT": "4071667", "sL_LossRatio": "0.99854133068894", "sL_AssetLoss": "1777.6476", "sL_BldgLoss": "1775.0546", "sL_StrLoss": "1759.0776", "sL_NStrLoss": "15.977", "sL_ContLoss": "2.593", "geom_point": "0101000020E61000007936CC4C80625FC0D2E65154AA7A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.536105820999978, 48.963213459 ], [ -125.536092141000012, 48.962943853000155 ], [ -125.534863783999981, 48.962970869000074 ], [ -125.534850111999944, 48.962701263000078 ], [ -125.533621758999985, 48.962728265000059 ], [ -125.533608092999941, 48.962458659000056 ], [ -125.532379744999943, 48.962485648000069 ], [ -125.532366085999953, 48.962216041000097 ], [ -125.531956637999912, 48.962225034000028 ], [ -125.5318883569999, 48.960877002000117 ], [ -125.533526101999911, 48.960841022000089 ], [ -125.533485110999905, 48.960032203000075 ], [ -125.536351108999924, 48.959969184000094 ], [ -125.53631007199999, 48.959160367000031 ], [ -125.53671949299995, 48.959151358000092 ], [ -125.536705812999955, 48.958881754000103 ], [ -125.537115230999973, 48.958872744000118 ], [ -125.537101548999914, 48.958603139000026 ], [ -125.536692130999981, 48.958612148000064 ], [ -125.536637411999934, 48.957533725000125 ], [ -125.535409186999942, 48.957560744000048 ], [ -125.535340823999917, 48.956212714000053 ], [ -125.53984418099995, 48.956113586000143 ], [ -125.539830486, 48.955843980000026 ], [ -125.540239878999955, 48.955834960000047 ], [ -125.540226181999913, 48.955565355000019 ], [ -125.539816789999975, 48.955574376000065 ], [ -125.539803094999954, 48.955304771000037 ], [ -125.538984316999958, 48.955322807000115 ], [ -125.53897062499999, 48.955053201000105 ], [ -125.537742464999951, 48.955080243000062 ], [ -125.53770141199999, 48.954271427 ], [ -125.538110790999937, 48.95426241400002 ], [ -125.53809710699997, 48.953992808000073 ], [ -125.541781501999964, 48.953911631000054 ], [ -125.541822621000023, 48.954720445000078 ], [ -125.542232003999942, 48.954711419000098 ], [ -125.542245711999968, 48.954981024000055 ], [ -125.543883250999926, 48.954944899000104 ], [ -125.543896967999927, 48.955214504000011 ], [ -125.544306354999961, 48.955205470000067 ], [ -125.544320074999959, 48.955475074000098 ], [ -125.544729463999928, 48.955466037000051 ], [ -125.544798076999925, 48.956814058000084 ], [ -125.545207477999952, 48.956805020000068 ], [ -125.545317286999961, 48.958961851 ], [ -125.544907871999939, 48.958970889000035 ], [ -125.54492159599999, 48.95924049300001 ], [ -125.542055656999963, 48.95930372400003 ], [ -125.542014528999928, 48.958494911000059 ], [ -125.5411957, 48.958512963000032 ], [ -125.541223110999937, 48.959052172000021 ], [ -125.539585435000021, 48.959088261000097 ], [ -125.539571737999964, 48.958818656000084 ], [ -125.538343484999928, 48.958845706000076 ], [ -125.538411936, 48.960193732000064 ], [ -125.538002505999955, 48.960202747000061 ], [ -125.538112019999986, 48.96235958900008 ], [ -125.537702573, 48.962368603000108 ], [ -125.537729949, 48.962907813000072 ], [ -125.537320497999971, 48.962916826000018 ], [ -125.537334183999945, 48.963186431000089 ], [ -125.536105820999978, 48.963213459 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998856564856961", "sL_AssetLoss": "181.908", "sL_BldgLoss": "181.7", "sL_StrLoss": "180", "sL_NStrLoss": "1.7", "sL_ContLoss": "0.208", "geom_point": "0101000020E610000063F81DFDCE705FC05AB39D08458E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.760299330999899, 49.112362395000076 ], [ -125.760306657999948, 49.110938504000075 ], [ -125.760631889999956, 49.11085949400011 ], [ -125.76129911299995, 49.110789797000052 ], [ -125.762308809999979, 49.110450789000026 ], [ -125.762676294999892, 49.110405204000109 ], [ -125.762920308999924, 49.110111806000063 ], [ -125.763049320999954, 49.109479498000091 ], [ -125.763236012999982, 49.109384108000093 ], [ -125.76336480799992, 49.10947090100008 ], [ -125.76358991499994, 49.110806795000045 ], [ -125.763986386999974, 49.111282508000038 ], [ -125.764739105999951, 49.111751092000176 ], [ -125.7656099229999, 49.11190060400007 ], [ -125.765774479999948, 49.11188918000007 ], [ -125.765772039999945, 49.112374448000068 ], [ -125.760299330999899, 49.112362395000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.998940922249359", "sL_AssetLoss": "718.5497", "sL_BldgLoss": "717.7887", "sL_StrLoss": "712.37", "sL_NStrLoss": "5.4187", "sL_ContLoss": "0.761", "geom_point": "0101000020E6100000AC099A7D3B655FC06ABBCF12607D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.579821354000018, 48.982227346000094 ], [ -125.579828957999894, 48.981381942000112 ], [ -125.576707385999967, 48.981369669000074 ], [ -125.576709259999973, 48.981162787000081 ], [ -125.574441111999974, 48.981153812000102 ], [ -125.574444095999965, 48.980826154000049 ], [ -125.574445447999949, 48.980677765000067 ], [ -125.576150347999956, 48.980668663000046 ], [ -125.57680899199994, 48.980694212000039 ], [ -125.577412097999982, 48.97875267000007 ], [ -125.578073108999945, 48.978799707000086 ], [ -125.578749499999958, 48.978685801000104 ], [ -125.579470704999906, 48.978355412000042 ], [ -125.580373322999932, 48.978109005000064 ], [ -125.581473598999935, 48.97744669800008 ], [ -125.581889707999935, 48.977032295000136 ], [ -125.582140003999925, 48.976594997000056 ], [ -125.582663308999912, 48.976142092000039 ], [ -125.581582207999972, 48.975041204000043 ], [ -125.580839491999967, 48.974931614000099 ], [ -125.580792808, 48.97484329600006 ], [ -125.580826491999943, 48.974805543000087 ], [ -125.581786758999954, 48.974809292000074 ], [ -125.58175102099996, 48.974849003 ], [ -125.582740383999962, 48.975753298000079 ], [ -125.58306189399994, 48.9759171090001 ], [ -125.584746981999942, 48.97595979200004 ], [ -125.585475919999936, 48.976079503000037 ], [ -125.585535689999944, 48.976075216000041 ], [ -125.585514840999949, 48.978425390000076 ], [ -125.583187036999959, 48.97841636900008 ], [ -125.583185051999934, 48.97863886500005 ], [ -125.585310722999949, 48.978647105000107 ], [ -125.585299823999947, 48.979874854000059 ], [ -125.585278753999958, 48.982248584000047 ], [ -125.579821354000018, 48.982227346000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.9907159630823", "sL_AssetLoss": "7.3244", "sL_BldgLoss": "7.2564", "sL_StrLoss": "5.396", "sL_NStrLoss": "1.8604", "sL_ContLoss": "0.068", "geom_point": "0101000020E6100000DCA799A428645FC0FD267FBD637C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.565901552999918, 48.969989617000074 ], [ -125.567430716, 48.969995796000056 ], [ -125.567471880999904, 48.970120593000047 ], [ -125.567732233999962, 48.97050010700012 ], [ -125.567727321999939, 48.971031058000108 ], [ -125.567703569999978, 48.973598554000077 ], [ -125.562247190999955, 48.973576422000043 ], [ -125.562280928999925, 48.96997489900005 ], [ -125.565901552999918, 48.969989617000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99948720403126", "sL_AssetLoss": "146.257", "sL_BldgLoss": "146.182", "sL_StrLoss": "146", "sL_NStrLoss": "0.182", "sL_ContLoss": "0.075", "geom_point": "0101000020E61000004E58EA726D765FC02C44EAEACC8B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.850133687999957, 49.092993161000031 ], [ -125.850118244999976, 49.092723630000073 ], [ -125.849707831999964, 49.09273377100007 ], [ -125.849692392999913, 49.092464241000073 ], [ -125.849281981999965, 49.092474380000063 ], [ -125.849220232999983, 49.091396260000153 ], [ -125.850451437999979, 49.091365839000026 ], [ -125.850466881, 49.091635369000116 ], [ -125.850877284999981, 49.09162522600009 ], [ -125.850892730999931, 49.091894756000102 ], [ -125.851713540999953, 49.091874465000068 ], [ -125.851759892999922, 49.092683052999988 ], [ -125.851349482999979, 49.092693201 ], [ -125.851364930999935, 49.092962730000075 ], [ -125.850133687999957, 49.092993161000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.99448213186649", "sL_AssetLoss": "2371.4956", "sL_BldgLoss": "2358.41", "sL_StrLoss": "2274", "sL_NStrLoss": "84.41", "sL_ContLoss": "13.0856", "geom_point": "0101000020E6100000B94BA801BF5B5FC0F54096CBE77A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.431226456999951, 48.96439324200005 ], [ -125.431213342999939, 48.964123615000098 ], [ -125.430803847999954, 48.964132250000084 ], [ -125.430790735999949, 48.963862622000107 ], [ -125.429971750999954, 48.963879887000076 ], [ -125.429958643999981, 48.963610260000038 ], [ -125.429139660999965, 48.963627519000063 ], [ -125.42911345499999, 48.963088263 ], [ -125.428294480999952, 48.963105515000045 ], [ -125.428320679999956, 48.963644770000073 ], [ -125.425863727999925, 48.963696494000075 ], [ -125.425850643, 48.963426865000045 ], [ -125.425455287999966, 48.963435183000158 ], [ -125.426292679999918, 48.962543794000105 ], [ -125.427347508999972, 48.961999790000064 ], [ -125.428442706999988, 48.961212201000116 ], [ -125.428975521999917, 48.960940099000069 ], [ -125.429629098999953, 48.959775097000019 ], [ -125.430125508999964, 48.95957570000008 ], [ -125.431039212999934, 48.958970501000081 ], [ -125.432050804999946, 48.958140107000055 ], [ -125.432476000999912, 48.957617508000098 ], [ -125.433451305999967, 48.955753211000079 ], [ -125.433449296999981, 48.95543840300013 ], [ -125.433263206999982, 48.95499258400006 ], [ -125.433306693999938, 48.954776211000102 ], [ -125.43348361699999, 48.954753401000119 ], [ -125.43424250799994, 48.954917204 ], [ -125.435061785999935, 48.954909993000115 ], [ -125.436417013999957, 48.954404392000129 ], [ -125.437064398999922, 48.954479889000019 ], [ -125.437705447999946, 48.954353652000094 ], [ -125.437859126999967, 48.957505590000061 ], [ -125.437449689999937, 48.957514247000162 ], [ -125.437752078999935, 48.963715641000086 ], [ -125.434885649999941, 48.963776214000063 ], [ -125.43487251599997, 48.963506588000023 ], [ -125.434463027999954, 48.963515235000102 ], [ -125.434502423999945, 48.964324113000075 ], [ -125.432864442, 48.964358690000054 ], [ -125.432851317999933, 48.964089063000131 ], [ -125.432441825999973, 48.964097703000093 ], [ -125.432454944999961, 48.964367329000041 ], [ -125.431226456999951, 48.96439324200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995691791528461", "sL_AssetLoss": "262.29", "sL_BldgLoss": "261.16", "sL_StrLoss": "257", "sL_NStrLoss": "4.16", "sL_ContLoss": "1.13", "geom_point": "0101000020E61000002F39494E816B5FC0474CDC6CA4864840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.679493113999911, 49.053358408000143 ], [ -125.679478615, 49.053088838000086 ], [ -125.67906846899993, 49.053098366000043 ], [ -125.679053974999988, 49.052828796000021 ], [ -125.67864383199999, 49.052838323000039 ], [ -125.67861484399999, 49.052299181000087 ], [ -125.67820470599996, 49.052308706000083 ], [ -125.678117764999911, 49.050691280000073 ], [ -125.680578514999951, 49.050634111000122 ], [ -125.680593019, 49.050903682000119 ], [ -125.681003144999977, 49.05089414800009 ], [ -125.681032156999919, 49.05143328900003 ], [ -125.681442286999939, 49.051423753000066 ], [ -125.681485810999931, 49.052232465 ], [ -125.68107567499996, 49.052242 ], [ -125.681119194999951, 49.053050710000022 ], [ -125.680709049999976, 49.053060244000037 ], [ -125.680723555999947, 49.053329815000112 ], [ -125.679493113999911, 49.053358408000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.995429645716508", "sL_AssetLoss": "308.51", "sL_BldgLoss": "307.1", "sL_StrLoss": "295", "sL_NStrLoss": "12.1", "sL_ContLoss": "1.41", "geom_point": "0101000020E610000021902A0E90625FC073CD0D1B9F7B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.539136351999943, 48.966385630000033 ], [ -125.539122654, 48.966116025000048 ], [ -125.53789422199999, 48.966143075000041 ], [ -125.53785315099995, 48.96533426000012 ], [ -125.541947852999954, 48.965244048000038 ], [ -125.542002702999966, 48.966322465000061 ], [ -125.539136351999943, 48.966385630000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999741410342117", "sL_AssetLoss": "136.123", "sL_BldgLoss": "136.0878", "sL_StrLoss": "136.01", "sL_NStrLoss": "0.0778", "sL_ContLoss": "0.0352", "geom_point": "0101000020E6100000861A095DD7905FC041AD169647AE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.261105318999967, 49.359889028000062 ], [ -126.266017308999935, 49.359877064000067 ], [ -126.266063684999921, 49.360614604000098 ], [ -126.265676178999954, 49.360902297000052 ], [ -126.265074198999955, 49.361077500000142 ], [ -126.264365622999975, 49.361664200000043 ], [ -126.264458003999948, 49.36223250000004 ], [ -126.26482720199999, 49.36278081300005 ], [ -126.264874017999972, 49.363213798000068 ], [ -126.264767903999982, 49.363479593000129 ], [ -126.261125614999969, 49.363488442000111 ], [ -126.261105318999967, 49.359889028000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33337167", "BldgCostT": "22781667", "sL_LossRatio": "0.893068260805152", "sL_AssetLoss": "8520.79548", "sL_BldgLoss": "7609.652", "sL_StrLoss": "7087.067", "sL_NStrLoss": "522.585", "sL_ContLoss": "911.14348", "geom_point": "0101000020E61000006F14DDA38C715FC0AFC46E652A8A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.77966326799995, 49.089584662000043 ], [ -125.779648208999944, 49.08931511600013 ], [ -125.779237799999976, 49.089325006000053 ], [ -125.779222743999966, 49.089055459000122 ], [ -125.778401928999969, 49.08907523400007 ], [ -125.778356773999946, 49.088266594000054 ], [ -125.779587975999931, 49.088236930000022 ], [ -125.779542802999941, 49.087428291000059 ], [ -125.779953196999955, 49.087418401000114 ], [ -125.779938135999927, 49.087148854000105 ], [ -125.779527744999925, 49.087158745000039 ], [ -125.779512688999958, 49.086889198000051 ], [ -125.776229566999945, 49.086968268000113 ], [ -125.776199487999975, 49.086429173000042 ], [ -125.775789102999951, 49.086439050000088 ], [ -125.775743992999963, 49.085630408000029 ], [ -125.776564753999963, 49.085610653000046 ], [ -125.776369248999984, 49.082106537000072 ], [ -125.775548545999982, 49.08212628900003 ], [ -125.775518481999981, 49.081587194000086 ], [ -125.774697785999962, 49.081606941000068 ], [ -125.774667729999962, 49.081067844000074 ], [ -125.773847042999989, 49.08108758500002 ], [ -125.773832020999976, 49.080818035000064 ], [ -125.77342168, 49.080827903000099 ], [ -125.773406659999949, 49.080558355000086 ], [ -125.772175640999947, 49.080587949000112 ], [ -125.772160625999931, 49.080318401000021 ], [ -125.77133995, 49.080338122000072 ], [ -125.77127991499999, 49.07925992800007 ], [ -125.772510901999951, 49.079230344000109 ], [ -125.772525917999957, 49.079499893000055 ], [ -125.773346578999963, 49.079480162000067 ], [ -125.773361598999912, 49.079749711000019 ], [ -125.774182262999929, 49.07972997500012 ], [ -125.774197287999982, 49.079999523 ], [ -125.774607622999966, 49.079989653000055 ], [ -125.774622648999937, 49.080259201000047 ], [ -125.775032985999957, 49.080249328000015 ], [ -125.775063043999978, 49.080788424000112 ], [ -125.776294063999956, 49.080758800000062 ], [ -125.776309100999967, 49.081028346000103 ], [ -125.777540126999938, 49.080998709000056 ], [ -125.777510041999946, 49.080459614000063 ], [ -125.777099703999951, 49.080469495000088 ], [ -125.777084663000011, 49.080199948000036 ], [ -125.776674326999967, 49.080209826000036 ], [ -125.776659289999927, 49.079940279000084 ], [ -125.775428289999951, 49.07996990700007 ], [ -125.775413259999979, 49.079700360000054 ], [ -125.775002927999978, 49.0797102330001 ], [ -125.774987899, 49.079440686000027 ], [ -125.774577568999987, 49.079450556000054 ], [ -125.774547517999949, 49.078911460000043 ], [ -125.774137191999941, 49.07892133100006 ], [ -125.774122168999924, 49.078651783000062 ], [ -125.77371184499998, 49.078661651000083 ], [ -125.773696823999956, 49.078392103000112 ], [ -125.772876180999987, 49.078411835000033 ], [ -125.772861165, 49.078142286000102 ], [ -125.772040524, 49.078162013000046 ], [ -125.772010500999954, 49.077622915000035 ], [ -125.771189869999901, 49.077642635000103 ], [ -125.771174862999928, 49.077373086000065 ], [ -125.770764548999921, 49.077382944000163 ], [ -125.770749543999941, 49.077113394000115 ], [ -125.769928919999955, 49.077133105000065 ], [ -125.769973921999963, 49.077941753000083 ], [ -125.770384239999956, 49.077931898000024 ], [ -125.770399243000014, 49.078201448000094 ], [ -125.770809562999915, 49.078191591000078 ], [ -125.770831091999952, 49.078578312000033 ], [ -125.770846474, 49.078578344000064 ], [ -125.770845224999945, 49.078832190000064 ], [ -125.770869585999932, 49.079269787000115 ], [ -125.770843070999945, 49.079270424000043 ], [ -125.770828769999952, 49.082179304000071 ], [ -125.768595694999973, 49.082174522000059 ], [ -125.768593606999929, 49.082595060000116 ], [ -125.763901045999944, 49.082584858000132 ], [ -125.763894994999958, 49.083779476000132 ], [ -125.758425643999928, 49.083767326000093 ], [ -125.758434667999921, 49.082026470000109 ], [ -125.757294702999957, 49.082023903000071 ], [ -125.757296721, 49.081636331000091 ], [ -125.755543358999972, 49.081632359000089 ], [ -125.755562242999972, 49.078031398000043 ], [ -125.76103091899995, 49.078043693000019 ], [ -125.761028932999949, 49.078431266000059 ], [ -125.76172808299998, 49.078432818000117 ], [ -125.76173182299999, 49.077701154000131 ], [ -125.76250410399993, 49.077702863000091 ], [ -125.762504724999971, 49.077581073000069 ], [ -125.761737585999938, 49.07759944600005 ], [ -125.761722630999941, 49.077329894000073 ], [ -125.760081360999962, 49.077369182000069 ], [ -125.760036522999883, 49.076560527000012 ], [ -125.759215900999934, 49.07658016199999 ], [ -125.759200958999884, 49.076310610000121 ], [ -125.758790649999952, 49.076320426000066 ], [ -125.758730895, 49.075242218000064 ], [ -125.759141194999955, 49.075232404000097 ], [ -125.75912625399998, 49.07496285200002 ], [ -125.761998335999976, 49.074894108000109 ], [ -125.762013291999935, 49.075163660000015 ], [ -125.762423589999912, 49.075153834000055 ], [ -125.762408632, 49.074884283000138 ], [ -125.763229224999947, 49.074864627000046 ], [ -125.763199299999883, 49.074325525000091 ], [ -125.762378716999947, 49.074345181000105 ], [ -125.762348802999938, 49.073806079000128 ], [ -125.761117939, 49.073835552000077 ], [ -125.761058138999914, 49.072757347000071 ], [ -125.76680202699994, 49.072619699000015 ], [ -125.766846968999943, 49.073428349000061 ], [ -125.767667534999987, 49.073408661000059 ], [ -125.767682520999983, 49.073678212000097 ], [ -125.768092803999977, 49.073668365000053 ], [ -125.76810779299997, 49.073937914000034 ], [ -125.76851808, 49.073928067000082 ], [ -125.76853307099995, 49.074197616000028 ], [ -125.769763934999972, 49.074168064000048 ], [ -125.769778932999913, 49.07443761300005 ], [ -125.770599512999979, 49.074417904000093 ], [ -125.770614514999963, 49.074687454000085 ], [ -125.771435098999973, 49.074667738000116 ], [ -125.771450104999957, 49.074937288000058 ], [ -125.774732447999924, 49.07485836900004 ], [ -125.774747471999945, 49.075127916000042 ], [ -125.776798938999946, 49.07507854400005 ], [ -125.776783903999984, 49.074808997000083 ], [ -125.77995280899999, 49.074732660000059 ], [ -125.779953877999944, 49.074506036000088 ], [ -125.779492599999955, 49.074505090000038 ], [ -125.779494209999967, 49.074164702000061 ], [ -125.77939021499995, 49.074164488000115 ], [ -125.779391872999938, 49.073814234000096 ], [ -125.779193393999918, 49.073813827000073 ], [ -125.77920049799998, 49.07394106100007 ], [ -125.777969647999925, 49.07397071300008 ], [ -125.77792452499996, 49.073162071000162 ], [ -125.778612674999962, 49.073145494000066 ], [ -125.778615406999947, 49.072570244000076 ], [ -125.780121334999976, 49.072383665000125 ], [ -125.780607846999928, 49.072413474 ], [ -125.781016115999975, 49.072511552000037 ], [ -125.781374909999954, 49.072668918000069 ], [ -125.782084590999915, 49.073183786000136 ], [ -125.782509802999968, 49.073492265000048 ], [ -125.783226771999978, 49.074060712000097 ], [ -125.78415244599999, 49.074794628000078 ], [ -125.78405295499999, 49.073672999000053 ], [ -125.783890288999928, 49.071839003000093 ], [ -125.783562114999981, 49.069022006000047 ], [ -125.784373305999949, 49.068353986000034 ], [ -125.784655182999956, 49.067996501000074 ], [ -125.784547773999918, 49.067536213000153 ], [ -125.786452722999982, 49.067540015000105 ], [ -125.786451969999945, 49.067704508000105 ], [ -125.787002810999979, 49.067705602000061 ], [ -125.786986358999926, 49.071306625000069 ], [ -125.786884661999977, 49.071306423000124 ], [ -125.78688278099996, 49.071718427000107 ], [ -125.786545501999939, 49.071717758000034 ], [ -125.786543986999945, 49.072048834000078 ], [ -125.786284002999949, 49.072048318000093 ], [ -125.786270942999977, 49.074896934000023 ], [ -125.786114402999928, 49.07489662200009 ], [ -125.785420408000022, 49.074895239000035 ], [ -125.785420309999935, 49.074916355000077 ], [ -125.784303125999941, 49.074914120000081 ], [ -125.780897810999988, 49.074907233000062 ], [ -125.780901858999954, 49.07497969000012 ], [ -125.781722437999932, 49.074959902000067 ], [ -125.781737499999949, 49.075229448000073 ], [ -125.782147793999954, 49.07521955300011 ], [ -125.782162858, 49.075489099000059 ], [ -125.78298344699999, 49.075469301000069 ], [ -125.782998516999967, 49.075738847000054 ], [ -125.783408813, 49.075728947000087 ], [ -125.783499248999988, 49.077346223000063 ], [ -125.780627078999913, 49.077415503000097 ], [ -125.780687312999973, 49.078493690000109 ], [ -125.781507951999984, 49.07847390200002 ], [ -125.78152301599998, 49.078743449000051 ], [ -125.783164298999935, 49.078703855000064 ], [ -125.78320951699996, 49.079512494000021 ], [ -125.783619843999972, 49.079502592000075 ], [ -125.783649994999962, 49.080041683000033 ], [ -125.784060325999974, 49.080031779000073 ], [ -125.784075404999925, 49.080301325000129 ], [ -125.784485738999962, 49.080291420000037 ], [ -125.784500818000012, 49.080560966000085 ], [ -125.785321487999965, 49.080541150000037 ], [ -125.785246066999974, 49.07919342200006 ], [ -125.786066713999958, 49.079173602000061 ], [ -125.786051626999893, 49.078904056000034 ], [ -125.787282588999929, 49.078874315000157 ], [ -125.787403354999981, 49.081030676000069 ], [ -125.788224029, 49.081010839000044 ], [ -125.788239129999951, 49.081280384000166 ], [ -125.788649470999985, 49.081270464000056 ], [ -125.78866457399999, 49.081540008000019 ], [ -125.78907491599989, 49.081530087000019 ], [ -125.789120234999956, 49.082338720000116 ], [ -125.788709885999936, 49.08234864300006 ], [ -125.788740094999952, 49.082887732000074 ], [ -125.788329740999956, 49.082897652000078 ], [ -125.788450567999931, 49.085054010000079 ], [ -125.788040197999962, 49.085063930000047 ], [ -125.788191229999939, 49.087759376000044 ], [ -125.787370441999954, 49.087779213000026 ], [ -125.787385542999971, 49.088048759000081 ], [ -125.782050374, 49.088177564000041 ], [ -125.782080516999898, 49.088716656000067 ], [ -125.781670112999947, 49.088726554000033 ], [ -125.781715322999958, 49.089535192000071 ], [ -125.77966326799995, 49.089584662000043 ] ], [ [ -125.782035302999986, 49.087908018000121 ], [ -125.782020230999976, 49.087638472000023 ], [ -125.781609837, 49.087648371000057 ], [ -125.781624905999976, 49.087917917000055 ], [ -125.782035302999986, 49.087908018000121 ] ], [ [ -125.779437405999914, 49.08554146600008 ], [ -125.779301913999959, 49.083115545000055 ], [ -125.778891554999973, 49.083125433000106 ], [ -125.778831350999951, 49.082047245000105 ], [ -125.778010649999942, 49.082067015000071 ], [ -125.778025697999908, 49.082336562000052 ], [ -125.77761534499993, 49.082346445000084 ], [ -125.77773570600003, 49.084502822000097 ], [ -125.778556445999982, 49.084483054000074 ], [ -125.778616648999957, 49.0855612410001 ], [ -125.779437405999914, 49.08554146600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.999371832188086", "sL_AssetLoss": "625.629", "sL_BldgLoss": "625.236", "sL_StrLoss": "622.53", "sL_NStrLoss": "2.706", "sL_ContLoss": "0.393", "geom_point": "0101000020E610000095513C99857A5FC0943AF9DB3B984840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.914938294, 49.192164317000092 ], [ -125.914938383999953, 49.192115179000105 ], [ -125.913173929999914, 49.192113773000067 ], [ -125.913176819999961, 49.190565875000125 ], [ -125.912795605999946, 49.1905655670001 ], [ -125.91279572599997, 49.190500877000041 ], [ -125.911515958999971, 49.190499834000093 ], [ -125.911516897999945, 49.190006329000077 ], [ -125.911149073999979, 49.190006026000063 ], [ -125.911149766999969, 49.189643524000054 ], [ -125.910903385999944, 49.189643321000048 ], [ -125.910904154999926, 49.189241570000029 ], [ -125.910594897999914, 49.189241315000075 ], [ -125.910601819999911, 49.185640931000115 ], [ -125.913959326999958, 49.185643664000096 ], [ -125.91407970899999, 49.185791504000086 ], [ -125.915198076, 49.186365397000053 ], [ -125.915020408999979, 49.186604688000017 ], [ -125.914173920999957, 49.186670203000034 ], [ -125.914025297999956, 49.186747106000077 ], [ -125.913835209999888, 49.18699349200002 ], [ -125.913901298999988, 49.187406499000112 ], [ -125.914191695999975, 49.187705593000068 ], [ -125.914507718999943, 49.187705597000075 ], [ -125.915024104999929, 49.187845197000108 ], [ -125.915448504999944, 49.187816699000074 ], [ -125.915432804, 49.188033203000039 ], [ -125.91586547799993, 49.188373597000044 ], [ -125.916432002999969, 49.189384693000044 ], [ -125.917431607999916, 49.189792108000127 ], [ -125.918219806, 49.189915983000049 ], [ -125.918711492999947, 49.19007409000006 ], [ -125.918761500999921, 49.190252113000035 ], [ -125.918588508999903, 49.190562595000131 ], [ -125.91879769699996, 49.190846011000112 ], [ -125.919233389999974, 49.191041103000074 ], [ -125.919845097999911, 49.191160712000119 ], [ -125.920087708000011, 49.191307384000012 ], [ -125.920421307999973, 49.191650903000053 ], [ -125.920420422999939, 49.192168503000048 ], [ -125.914938294, 49.192164317000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "1.49", "sL_BldgLoss": "1.49", "sL_StrLoss": "1.49", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D17C8CC19C7A5FC05247E8E3B1974840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.914525085999941, 49.185644114000119 ], [ -125.914528671999975, 49.183692971000042 ], [ -125.914913004999931, 49.183835990000013 ], [ -125.915719200999959, 49.184508290000068 ], [ -125.916471209999941, 49.184452693000061 ], [ -125.917238611999935, 49.184667803000096 ], [ -125.917791596999933, 49.185176199000068 ], [ -125.917715400999967, 49.185302998000111 ], [ -125.916736411999963, 49.185688897000034 ], [ -125.916578593999972, 49.18601648900006 ], [ -125.916040800999937, 49.186210197000101 ], [ -125.915766796999932, 49.186234398000124 ], [ -125.915445601999949, 49.186126206000026 ], [ -125.915228611999908, 49.185950993000084 ], [ -125.914334414999956, 49.185643963000111 ], [ -125.914525085999941, 49.185644114000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5715417", "BldgCostT": "3941667", "sL_LossRatio": "0.999740189500344", "sL_AssetLoss": "471.1126", "sL_BldgLoss": "470.9902", "sL_StrLoss": "470.56", "sL_NStrLoss": "0.4302", "sL_ContLoss": "0.1224", "geom_point": "0101000020E61000000E5C8A5091915FC02734E601EEAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.270592379999954, 49.380452437000031 ], [ -126.27059014699995, 49.380070655000054 ], [ -126.27027989, 49.380071430000065 ], [ -126.27027558399999, 49.379333893000101 ], [ -126.270330698999913, 49.379311598000079 ], [ -126.270275091, 49.379249425000076 ], [ -126.270271788999963, 49.378684038000081 ], [ -126.270379987999959, 49.378665007000095 ], [ -126.270858488, 49.378749106000058 ], [ -126.271315679999958, 49.378444300000105 ], [ -126.272701209999937, 49.378063989000054 ], [ -126.27270969700001, 49.377416010000061 ], [ -126.272431786999988, 49.376941704000046 ], [ -126.272349204999969, 49.376453185000059 ], [ -126.272902782999921, 49.376161303000039 ], [ -126.273214310999919, 49.375780986000102 ], [ -126.273418483999947, 49.375318105000055 ], [ -126.274104915999899, 49.37511020200003 ], [ -126.274319304999921, 49.374962094000054 ], [ -126.274242497999964, 49.374618815000062 ], [ -126.273766012, 49.374265595000097 ], [ -126.274509392999974, 49.373526497000135 ], [ -126.274505487999946, 49.373338504000053 ], [ -126.274224293999964, 49.372970991000059 ], [ -126.273713721999911, 49.372951105000084 ], [ -126.273543396999941, 49.372820111000067 ], [ -126.273498477999908, 49.372622099000054 ], [ -126.273703507999969, 49.372392788000084 ], [ -126.273705489999898, 49.37213220200006 ], [ -126.272955407999959, 49.371753308000045 ], [ -126.272812487999914, 49.371598091000109 ], [ -126.272565492999917, 49.370179575000058 ], [ -126.273592338999919, 49.368962544000119 ], [ -126.27340256799999, 49.366225979000056 ], [ -126.27512550699997, 49.366221613000015 ], [ -126.275127566999956, 49.366568306000126 ], [ -126.275362417999958, 49.366567708000083 ], [ -126.275364093999912, 49.36684953500005 ], [ -126.275374533999951, 49.366849508000087 ], [ -126.275377079999956, 49.367277653000066 ], [ -126.275553252999956, 49.367277205000121 ], [ -126.275554737999968, 49.367526745000056 ], [ -126.275570166999927, 49.367526705000088 ], [ -126.27557181, 49.367802797000124 ], [ -126.275686878999949, 49.367802503000043 ], [ -126.275689965999959, 49.368320930000074 ], [ -126.276017596, 49.36832009600009 ], [ -126.27603282099993, 49.370874095000033 ], [ -126.276781118999949, 49.370872184000085 ], [ -126.276796666, 49.373472876000093 ], [ -126.277145855999919, 49.373471982000048 ], [ -126.277167403999954, 49.377071321000102 ], [ -126.276076698999987, 49.377074108000038 ], [ -126.276096763999988, 49.380438539000075 ], [ -126.270592379999954, 49.380452437000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.999981580390484", "sL_AssetLoss": "99.89354", "sL_BldgLoss": "99.8917", "sL_StrLoss": "99.88", "sL_NStrLoss": "0.0117", "sL_ContLoss": "0.00184", "geom_point": "0101000020E61000005EE55CCC079B5FC0C0692C2742BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.41973137899997, 49.477241243000023 ], [ -126.419717046999921, 49.475664077000062 ], [ -126.42059632099992, 49.475975603000087 ], [ -126.422367488999896, 49.476438407000096 ], [ -126.423802905999949, 49.476686186000073 ], [ -126.425242110999946, 49.476662540000063 ], [ -126.425259516999958, 49.478552970000052 ], [ -126.425195993000017, 49.478553219000048 ], [ -126.425216850999931, 49.480818765000059 ], [ -126.41970056, 49.480840242000063 ], [ -126.41966785799994, 49.477241489000029 ], [ -126.41973137899997, 49.477241243000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18874166", "BldgCostT": "13016666", "sL_LossRatio": "0.997558652577113", "sL_AssetLoss": "4253.0612", "sL_BldgLoss": "4242.678", "sL_StrLoss": "4188.6", "sL_NStrLoss": "54.078", "sL_ContLoss": "10.3832", "geom_point": "0101000020E6100000B04280C20F725FC071B1587938894840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.780607846999928, 49.072413474 ], [ -125.780121334999976, 49.072383665000125 ], [ -125.778615406999947, 49.072570244000076 ], [ -125.778619065999948, 49.071799480000038 ], [ -125.77865029899999, 49.071793489000044 ], [ -125.781471789999941, 49.071060003000056 ], [ -125.782534010999967, 49.070953200000076 ], [ -125.782549092999915, 49.070494607000029 ], [ -125.782824211999937, 49.07003740199999 ], [ -125.783262980999936, 49.069541795000056 ], [ -125.783562114999981, 49.069022006000047 ], [ -125.783890288999928, 49.071839003000093 ], [ -125.78405295499999, 49.073672999000053 ], [ -125.78415244599999, 49.074794628000078 ], [ -125.783226771999978, 49.074060712000097 ], [ -125.782509802999968, 49.073492265000048 ], [ -125.782084590999915, 49.073183786000136 ], [ -125.781374909999954, 49.072668918000069 ], [ -125.781016115999975, 49.072511552000037 ], [ -125.780607846999928, 49.072413474 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.986924751811683", "sL_AssetLoss": "629.663", "sL_BldgLoss": "621.43", "sL_StrLoss": "569", "sL_NStrLoss": "52.43", "sL_ContLoss": "8.233", "geom_point": "0101000020E6100000472C941263475FC08B7206D287664840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.116030031999969, 48.804126244000031 ], [ -125.11603597, 48.803811114000069 ], [ -125.115367844, 48.803823383000108 ], [ -125.115356496999979, 48.803553689000125 ], [ -125.114539947999958, 48.803568678000083 ], [ -125.114517260999932, 48.803029290000012 ], [ -125.113700719999926, 48.803044273000083 ], [ -125.113678041999904, 48.802504885000126 ], [ -125.113302001999969, 48.80251178300005 ], [ -125.113269776999914, 48.802512374000059 ], [ -125.113201764999971, 48.800894209000099 ], [ -125.11361001899995, 48.800886721000062 ], [ -125.113587345999989, 48.80034733300004 ], [ -125.11399559399996, 48.800339843000067 ], [ -125.113972917999945, 48.799800455000053 ], [ -125.114381161999944, 48.799792965000073 ], [ -125.11436982099994, 48.799523270000066 ], [ -125.113961579999938, 48.799530761000035 ], [ -125.113916228999983, 48.798451985000042 ], [ -125.114035393, 48.798449799000082 ], [ -125.115140928999949, 48.798429509000108 ], [ -125.115152272999978, 48.798699202000094 ], [ -125.115560507999959, 48.79869170700006 ], [ -125.115583201999968, 48.79923109500006 ], [ -125.115716466999942, 48.799228648000025 ], [ -125.115738667999963, 48.798050847000169 ], [ -125.115784970999982, 48.798051230000027 ], [ -125.11578968, 48.797801347000096 ], [ -125.116969958999903, 48.797811111000073 ], [ -125.11701784499999, 48.80355836500005 ], [ -125.117022654999957, 48.804134454000099 ], [ -125.116030031999969, 48.804126244000031 ] ], [ [ -125.116056322999938, 48.802731133000051 ], [ -125.116064990000027, 48.802271178000069 ], [ -125.115710993999969, 48.802268248000075 ], [ -125.11573072399996, 48.802737112000095 ], [ -125.116056322999938, 48.802731133000051 ] ], [ [ -125.115675137999972, 48.802198329000085 ], [ -125.115685414999987, 48.801653265000056 ], [ -125.11567076299994, 48.801653143000117 ], [ -125.11570119799994, 48.800038634000082 ], [ -125.115617242999946, 48.80004017600006 ], [ -125.115639937999958, 48.800579563000063 ], [ -125.115231686999934, 48.800587059000101 ], [ -125.11525437799996, 48.801126447000101 ], [ -125.114846121999932, 48.801133941000053 ], [ -125.114868809999962, 48.801673329 ], [ -125.11527707099998, 48.801665834000083 ], [ -125.115299762999939, 48.802205221000051 ], [ -125.115675137999972, 48.802198329000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.996518658032722", "sL_AssetLoss": "282.6209", "sL_BldgLoss": "281.637", "sL_StrLoss": "277.7", "sL_NStrLoss": "3.937", "sL_ContLoss": "0.9839", "geom_point": "0101000020E6100000F34DC385F6465FC0E1F46889996A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.106523190999908, 48.83424628900007 ], [ -125.10657901899998, 48.831317214000102 ], [ -125.112018513999899, 48.831362539000082 ], [ -125.111992539999989, 48.83273368000004 ], [ -125.110778118999974, 48.833469102000059 ], [ -125.110628410999965, 48.833481888000073 ], [ -125.110377192999948, 48.833342394000063 ], [ -125.110083291999956, 48.832833899000036 ], [ -125.109821304999954, 48.832758386000059 ], [ -125.109454090999975, 48.832801206000099 ], [ -125.10950799499993, 48.833429301000059 ], [ -125.108696940999963, 48.834937565000089 ], [ -125.10740534099989, 48.834926788000097 ], [ -125.106510361999966, 48.834919312000125 ], [ -125.106523190999908, 48.83424628900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999017269300508", "sL_AssetLoss": "43.3486", "sL_BldgLoss": "43.306", "sL_StrLoss": "42.5", "sL_NStrLoss": "0.806", "sL_ContLoss": "0.0426", "geom_point": "0101000020E610000098EE7DC3272C5FC0F4CDECA98B684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.689082673999934, 48.814918884000036 ], [ -124.691601143999975, 48.8149497530001 ], [ -124.69150063499994, 48.818551617000089 ], [ -124.688212908999944, 48.818511308000041 ], [ -124.688320989999909, 48.818436613000088 ], [ -124.688402693999947, 48.817985115000113 ], [ -124.68825270399999, 48.817196102000089 ], [ -124.687987400999944, 48.816569484000091 ], [ -124.687956399999948, 48.816075292000072 ], [ -124.688083199999951, 48.815813198000065 ], [ -124.688418898999942, 48.815655112000044 ], [ -124.688702391, 48.815552595000064 ], [ -124.689017616999934, 48.815187996000077 ], [ -124.689082673999934, 48.814918884000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.982670288975625", "sL_AssetLoss": "770.411", "sL_BldgLoss": "757.06", "sL_StrLoss": "711", "sL_NStrLoss": "46.06", "sL_ContLoss": "13.351", "geom_point": "0101000020E6100000FF33B532C2425FC088D68A3647814840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.040406664, 49.008539820000138 ], [ -125.045647593999931, 49.008586549000064 ], [ -125.045580180999963, 49.011884087000027 ], [ -125.045308306999942, 49.011881299000017 ], [ -125.043292202999936, 49.011422701000114 ], [ -125.042274994999914, 49.011287411000083 ], [ -125.041334894999963, 49.011060916000098 ], [ -125.040145423999945, 49.010585449000082 ], [ -125.040177346999911, 49.009032736000044 ], [ -125.04040009699996, 49.008918891000071 ], [ -125.040566687999984, 49.008645501000018 ], [ -125.040406664, 49.008539820000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997988475030853", "sL_AssetLoss": "102.907", "sL_BldgLoss": "102.7", "sL_StrLoss": "99.8", "sL_NStrLoss": "2.9", "sL_ContLoss": "0.207", "geom_point": "0101000020E61000002ABB68E155355FC0CCA8A6E24E8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.830370690999985, 49.104850931000065 ], [ -124.830401074999926, 49.103640884000036 ], [ -124.831190408999987, 49.103470698000095 ], [ -124.83184429799995, 49.103379599000093 ], [ -124.831941785999931, 49.103440790000086 ], [ -124.832002306999954, 49.10357470200006 ], [ -124.831737889999985, 49.103831109000126 ], [ -124.831731007999963, 49.103984903000033 ], [ -124.831909800999981, 49.104044708000025 ], [ -124.832125194999904, 49.103923613000077 ], [ -124.832226803999944, 49.103319809000084 ], [ -124.832475379999934, 49.103036401000054 ], [ -124.833205388999957, 49.10275580100005 ], [ -124.833780289999979, 49.102710207000044 ], [ -124.834598290999978, 49.10302069800013 ], [ -124.834632294999949, 49.103191615000036 ], [ -124.834910602999983, 49.103268500000134 ], [ -124.835340686, 49.103071998000061 ], [ -124.83479101799999, 49.103026401000115 ], [ -124.834758990999987, 49.10288400800011 ], [ -124.8356636, 49.102896809000065 ], [ -124.835894027, 49.102820759000103 ], [ -124.83588304199999, 49.10326030800011 ], [ -124.835841808999945, 49.104910283000024 ], [ -124.833489987999954, 49.10488480500009 ], [ -124.830370690999985, 49.104850931000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.996604137348425", "sL_AssetLoss": "286.9374", "sL_BldgLoss": "285.963", "sL_StrLoss": "277.6", "sL_NStrLoss": "8.363", "sL_ContLoss": "0.9744", "geom_point": "0101000020E6100000A0A1C19EDD425FC0B165E01D6C704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.042590573999988, 48.880186736000084 ], [ -125.042611371999968, 48.879169534000077 ], [ -125.042664213999913, 48.876584942000129 ], [ -125.047600003999932, 48.876628986000092 ], [ -125.048108901999967, 48.876633514000041 ], [ -125.048100301999952, 48.877056583000126 ], [ -125.04805509, 48.877057109000106 ], [ -125.047419922999921, 48.877202300000164 ], [ -125.046667709999909, 48.877791895000051 ], [ -125.046211898999928, 48.878034087000088 ], [ -125.04703350399997, 48.878072484000079 ], [ -125.047132422999965, 48.878197802000074 ], [ -125.046964398999989, 48.878380094000093 ], [ -125.046557213999989, 48.878468404000074 ], [ -125.046037906, 48.878747609000065 ], [ -125.045622611999988, 48.879258896000074 ], [ -125.045940186999985, 48.879388497000029 ], [ -125.046589388999934, 48.879233300000095 ], [ -125.046783793999921, 48.879310188000048 ], [ -125.04666802399997, 48.880223137000065 ], [ -125.042590573999988, 48.880186736000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6073751", "BldgCostT": "3925001", "sL_LossRatio": "0.972116088122917", "sL_AssetLoss": "5719.965", "sL_BldgLoss": "5560.47", "sL_StrLoss": "5157", "sL_NStrLoss": "403.47", "sL_ContLoss": "159.495", "geom_point": "0101000020E6100000AFBF9956522F5FC0690345668D7C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.73428953799997, 48.975710102000058 ], [ -124.734317448999946, 48.974679835000124 ], [ -124.734094192999962, 48.974677201000077 ], [ -124.734191754999983, 48.971076192000098 ], [ -124.734632549999958, 48.971081394000045 ], [ -124.734647777999967, 48.970519106000033 ], [ -124.734656788999985, 48.970186401000042 ], [ -124.740112010999894, 48.970250634000074 ], [ -124.740099593999972, 48.9707110800001 ], [ -124.744451477, 48.970762123000057 ], [ -124.744420965999979, 48.971897548000086 ], [ -124.745160816999913, 48.971906208000135 ], [ -124.745154962999919, 48.972124184000059 ], [ -124.745106124999907, 48.973942566000062 ], [ -124.745064097999915, 48.97550722200009 ], [ -124.73975429099994, 48.975444957000079 ], [ -124.739745404999937, 48.975774354000087 ], [ -124.73428953799997, 48.975710102000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.965563417957813", "sL_AssetLoss": "1081.3065", "sL_BldgLoss": "1044.07", "sL_StrLoss": "878.4", "sL_NStrLoss": "165.67", "sL_ContLoss": "37.2365", "geom_point": "0101000020E610000054EAED2A3F365FC0D64A74D875834840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.843598802999978, 49.030860177000058 ], [ -124.843688033999982, 49.027259391000058 ], [ -124.845061784999956, 49.027274176000105 ], [ -124.845090945999928, 49.026095922000188 ], [ -124.846252007999965, 49.026108404000098 ], [ -124.846280065, 49.024973549000023 ], [ -124.847695771999952, 49.02498875200012 ], [ -124.847725474999919, 49.023785782000054 ], [ -124.853097830999928, 49.023843304000081 ], [ -124.853042803999969, 49.023920091000043 ], [ -124.853182213999943, 49.024043507000023 ], [ -124.853178844999931, 49.024180620000067 ], [ -124.853091192999926, 49.024477006000026 ], [ -124.853166250999962, 49.024693123000098 ], [ -124.853164988999978, 49.024744464000065 ], [ -124.852779119999951, 49.024941298000066 ], [ -124.852223506999934, 49.025085094000069 ], [ -124.851417817999987, 49.02512500300007 ], [ -124.851392594999979, 49.025187690000088 ], [ -124.851508498999948, 49.02571601000006 ], [ -124.850174296999938, 49.026620398000041 ], [ -124.849730105999967, 49.027184386000023 ], [ -124.849659698, 49.028607192 ], [ -124.849498302999933, 49.0286726940001 ], [ -124.8490586, 49.028634184000019 ], [ -124.848961993999978, 49.028266803000029 ], [ -124.848324611999942, 49.028385003000011 ], [ -124.84809601100001, 49.028514590000043 ], [ -124.846985372999967, 49.028820795000108 ], [ -124.846989795999932, 49.029683895000083 ], [ -124.846889282999967, 49.029901795000036 ], [ -124.846963721999927, 49.030836104000109 ], [ -124.84698529399995, 49.030896593000122 ], [ -124.843598802999978, 49.030860177000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.989868669382147", "sL_AssetLoss": "512.371", "sL_BldgLoss": "507.18", "sL_StrLoss": "487.4", "sL_NStrLoss": "19.78", "sL_ContLoss": "5.191", "geom_point": "0101000020E61000006C521BE655465FC02B77344820684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.098262042999977, 48.814932216000059 ], [ -125.098250783999916, 48.814662520000098 ], [ -125.097025672999976, 48.814684822000068 ], [ -125.097014419999965, 48.814415126000043 ], [ -125.09619768399989, 48.814429987 ], [ -125.096175186, 48.813890594000092 ], [ -125.095358457999978, 48.813905450000071 ], [ -125.095347213999929, 48.813635753 ], [ -125.094938852, 48.813643178000071 ], [ -125.09489388499999, 48.81256439200012 ], [ -125.096527298999888, 48.812534683000109 ], [ -125.096549799999977, 48.81307407600017 ], [ -125.096958156999946, 48.81306664500007 ], [ -125.096924399999963, 48.812257556000084 ], [ -125.09774110099994, 48.812242690000133 ], [ -125.097729844999932, 48.811972994000044 ], [ -125.098954886999977, 48.811950685000099 ], [ -125.098988675999976, 48.812759774000057 ], [ -125.098580321999961, 48.81276721100005 ], [ -125.098602845, 48.81330660400009 ], [ -125.099011201999986, 48.813299165000032 ], [ -125.099022465999909, 48.813568860000082 ], [ -125.099839187999947, 48.813553980000059 ], [ -125.09980538399999, 48.812744893000058 ], [ -125.101030443999917, 48.812722562000083 ], [ -125.10104171799999, 48.81299225700014 ], [ -125.102266783999937, 48.812969912000021 ], [ -125.102232941999915, 48.81216082500012 ], [ -125.103457984999963, 48.812138468000072 ], [ -125.10351442299999, 48.813486945000079 ], [ -125.102289345999949, 48.813509303000025 ], [ -125.102300627999981, 48.813778999000057 ], [ -125.101483903999963, 48.813793897000053 ], [ -125.101495180999962, 48.814063592000075 ], [ -125.101086816999938, 48.814071039000062 ], [ -125.101120642999916, 48.814880126000048 ], [ -125.098262042999977, 48.814932216000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.997177954370835", "sL_AssetLoss": "268.28411", "sL_BldgLoss": "267.527", "sL_StrLoss": "260.476", "sL_NStrLoss": "7.051", "sL_ContLoss": "0.75711", "geom_point": "0101000020E610000019F25BB60E475FC09809332B636B4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.110335186999933, 48.840380895000088 ], [ -125.110346635, 48.839777761000065 ], [ -125.109092644999947, 48.839767320000092 ], [ -125.104906619999966, 48.839732357000074 ], [ -125.104909573999976, 48.83957763300009 ], [ -125.103954391999977, 48.839569632000064 ], [ -125.103965952999943, 48.838964997000069 ], [ -125.102989490999931, 48.838956809000109 ], [ -125.103023892999914, 48.83715926000005 ], [ -125.103066953, 48.837375669000039 ], [ -125.103181766999953, 48.837952793000049 ], [ -125.105306331999927, 48.837723036000057 ], [ -125.10537138299992, 48.838039736000027 ], [ -125.10770736399995, 48.837772947000062 ], [ -125.108158509999924, 48.837721401000088 ], [ -125.108190693999987, 48.837763096000046 ], [ -125.108322597999944, 48.83864330400008 ], [ -125.109048814999966, 48.838728693000121 ], [ -125.109648299999961, 48.839040593000071 ], [ -125.11026007699995, 48.838993597000098 ], [ -125.1108138109999, 48.839190200000132 ], [ -125.11130310799993, 48.839181597000106 ], [ -125.111895908999898, 48.839017797000096 ], [ -125.112150012999976, 48.838572092000064 ], [ -125.112779682999943, 48.838299999000057 ], [ -125.113288095999962, 48.837760294000113 ], [ -125.113537500999897, 48.837827205000103 ], [ -125.113869312999952, 48.838621907000089 ], [ -125.114061196999955, 48.838619099000042 ], [ -125.114261913999954, 48.83855209500004 ], [ -125.114096893999914, 48.83821321200007 ], [ -125.114405585, 48.837730403000116 ], [ -125.114199101999972, 48.837068086000087 ], [ -125.11445371799999, 48.836812451000114 ], [ -125.115843688999931, 48.836823955000042 ], [ -125.115775736999979, 48.840426027000028 ], [ -125.110335186999933, 48.840380895000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998302982834019", "sL_AssetLoss": "428.988", "sL_BldgLoss": "428.26", "sL_StrLoss": "424", "sL_NStrLoss": "4.26", "sL_ContLoss": "0.728", "geom_point": "0101000020E61000005A424659E2475FC065D67BBF8B6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.122736443999941, 48.833793433000082 ], [ -125.122747262999965, 48.833215352000067 ], [ -125.120791504999929, 48.833199284000031 ], [ -125.120795725, 48.832974346000128 ], [ -125.11806051799999, 48.83295181500003 ], [ -125.118061123999951, 48.832919587000035 ], [ -125.117885150999896, 48.832918135000057 ], [ -125.118031303999913, 48.832615985000061 ], [ -125.11842199699997, 48.832141802000137 ], [ -125.118529005999946, 48.831779984000022 ], [ -125.119047798999972, 48.831500912000131 ], [ -125.119439992999929, 48.83108781300011 ], [ -125.119785984999965, 48.830884197000017 ], [ -125.120070186999925, 48.830842891000025 ], [ -125.120649187999959, 48.831012400000091 ], [ -125.121072208, 48.831022289000067 ], [ -125.121664107999919, 48.830839988999983 ], [ -125.122212705, 48.830281686000021 ], [ -125.122495790999949, 48.830186297000068 ], [ -125.122958789999984, 48.830186298000037 ], [ -125.123251090999929, 48.830325898000076 ], [ -125.123394087999884, 48.830529601000109 ], [ -125.12325902299996, 48.830847202000037 ], [ -125.123697289999967, 48.831540699000129 ], [ -125.123662004, 48.831686000000104 ], [ -125.123096691999962, 48.832163106000081 ], [ -125.12202788399999, 48.832687191000062 ], [ -125.121904992999958, 48.832986315000042 ], [ -125.122008306999973, 48.833191402000104 ], [ -125.122498512999968, 48.832841008000131 ], [ -125.123422419999955, 48.832445102000101 ], [ -125.125577885000027, 48.831884004000052 ], [ -125.126432996999966, 48.831787113000061 ], [ -125.127214805999984, 48.83188970300008 ], [ -125.127492699999948, 48.83234400500001 ], [ -125.127961312000011, 48.83282969100005 ], [ -125.127998314999928, 48.833053290000095 ], [ -125.128152877999923, 48.833131594000093 ], [ -125.128520483999921, 48.833115902000074 ], [ -125.128782795999939, 48.833246910000085 ], [ -125.128970461, 48.83362234100008 ], [ -125.128180370999985, 48.833615901000023 ], [ -125.128176240999935, 48.833837934000051 ], [ -125.122736443999941, 48.833793433000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36964667", "BldgCostT": "23281667", "sL_LossRatio": "0.929652669957462", "sL_AssetLoss": "8898.835089", "sL_BldgLoss": "8272.8258", "sL_StrLoss": "7937.028", "sL_NStrLoss": "335.7978", "sL_ContLoss": "626.009289", "geom_point": "0101000020E6100000DC04B56B04485FC04C98C4B44A694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.132939555999954, 48.831582771000107 ], [ -125.132946253999989, 48.831220624000068 ], [ -125.132498566, 48.831216991000083 ], [ -125.132501885999915, 48.831037514000037 ], [ -125.132457549999941, 48.831038334 ], [ -125.132445892999968, 48.830763762000075 ], [ -125.129657277999939, 48.830741094000118 ], [ -125.129614416999985, 48.833049472 ], [ -125.129365300999922, 48.832794088000057 ], [ -125.12959699, 48.832493507000073 ], [ -125.129577902999969, 48.832376800000112 ], [ -125.12883571499999, 48.832193 ], [ -125.128182516999971, 48.831620495000017 ], [ -125.128149706999963, 48.831485187000055 ], [ -125.12885109099993, 48.829988389000043 ], [ -125.128817802999919, 48.82952978700007 ], [ -125.128548396000014, 48.828643911000015 ], [ -125.127492998, 48.828843298000081 ], [ -125.12655490899999, 48.829193707000108 ], [ -125.125782587999979, 48.829297605000136 ], [ -125.123649807, 48.829120997000068 ], [ -125.121515689999953, 48.829250589000026 ], [ -125.118943585999915, 48.830306003000111 ], [ -125.118720715999956, 48.830202002000092 ], [ -125.118703994999962, 48.829788994000118 ], [ -125.118720303999936, 48.82952690700003 ], [ -125.119043120999919, 48.828810504000046 ], [ -125.119020196999884, 48.828577005000071 ], [ -125.11884958899995, 48.828400407000096 ], [ -125.118043700999976, 48.828018706000115 ], [ -125.11755931499999, 48.827866308000054 ], [ -125.117330090999971, 48.827906193000118 ], [ -125.116854002999901, 48.828331725000055 ], [ -125.116834146999949, 48.828349471000074 ], [ -125.116835762000022, 48.828263711000083 ], [ -125.116848232999956, 48.827601761000039 ], [ -125.119971559999925, 48.827627522000121 ], [ -125.11998495099999, 48.826914138000099 ], [ -125.120543246999958, 48.826918733000092 ], [ -125.12054423099994, 48.826866252000052 ], [ -125.125983222999977, 48.826910865000109 ], [ -125.125982703999966, 48.826938672000068 ], [ -125.126188376999949, 48.826940354000087 ], [ -125.126228429999969, 48.824791288000057 ], [ -125.12681453, 48.824796078000084 ], [ -125.126827043999967, 48.824124202000128 ], [ -125.127295048999954, 48.824128024000046 ], [ -125.127305689999943, 48.823556338000039 ], [ -125.126684495999967, 48.823551263000134 ], [ -125.126685886999965, 48.82347659400007 ], [ -125.125210244999948, 48.823464526000073 ], [ -125.125237660999943, 48.821995075000068 ], [ -125.124742289000011, 48.822004211000049 ], [ -125.124727872999983, 48.822776454000063 ], [ -125.119289363999968, 48.822731775000101 ], [ -125.119291004999937, 48.822644401000055 ], [ -125.119021588999956, 48.822649356000106 ], [ -125.119032963999956, 48.822919049000042 ], [ -125.118624532999959, 48.82292655800012 ], [ -125.118681397999964, 48.824275019000048 ], [ -125.118272955999942, 48.824282527000015 ], [ -125.118284326999969, 48.824552220000051 ], [ -125.117875882999968, 48.824559728000075 ], [ -125.11789862, 48.825099112000032 ], [ -125.115985642999973, 48.825134256000062 ], [ -125.115856371999925, 48.825136629000092 ], [ -125.115833655999921, 48.824597245000035 ], [ -125.11542521, 48.82460474300008 ], [ -125.115391141999964, 48.823795666000095 ], [ -125.115620903999954, 48.823791447000069 ], [ -125.11620802099992, 48.823780666000111 ], [ -125.11619666199999, 48.823510975000069 ], [ -125.116605098999941, 48.823503473000109 ], [ -125.116536928999921, 48.821885318000099 ], [ -125.115720081999896, 48.821900318000125 ], [ -125.115708723999944, 48.821630625000097 ], [ -125.115037366999928, 48.821642951000072 ], [ -125.114483457999967, 48.8216531160001 ], [ -125.114472108999948, 48.821383424000068 ], [ -125.114063688999963, 48.821390917000087 ], [ -125.114075035999974, 48.821660610000087 ], [ -125.1132581909999, 48.821675594000112 ], [ -125.113292222000013, 48.822484673000126 ], [ -125.112066932999952, 48.822507138000027 ], [ -125.112078269999955, 48.822776831000049 ], [ -125.110444541999954, 48.822806764000077 ], [ -125.110455869999939, 48.823076458000045 ], [ -125.109230564999962, 48.8230988930001 ], [ -125.109219243, 48.822829200000065 ], [ -125.10840237599993, 48.822844149000019 ], [ -125.108391058999956, 48.822574455000023 ], [ -125.107982626999927, 48.822581927000044 ], [ -125.107971311999989, 48.82231223300009 ], [ -125.107562881999982, 48.822319704000066 ], [ -125.107517632999958, 48.821240928000108 ], [ -125.107109210999951, 48.821248397000055 ], [ -125.10708659099997, 48.820709009000034 ], [ -125.106678173999924, 48.820716476000037 ], [ -125.106666866999944, 48.820446782 ], [ -125.106258451999963, 48.820454248000033 ], [ -125.106235841999975, 48.819914859000036 ], [ -125.105419019999914, 48.819929786000053 ], [ -125.105430321999961, 48.820199481000031 ], [ -125.102979841999968, 48.820244229000082 ], [ -125.102957267999969, 48.819704841000103 ], [ -125.102548858999967, 48.819712293000073 ], [ -125.102537571999946, 48.819442597000048 ], [ -125.101312349999944, 48.819464947000036 ], [ -125.101289793999939, 48.81892555600006 ], [ -125.100881389999927, 48.818933003000112 ], [ -125.100870114999935, 48.81866330900008 ], [ -125.099236506999944, 48.818693081000021 ], [ -125.099202706999961, 48.817883995000059 ], [ -125.100836287999968, 48.817854223000069 ], [ -125.100847562999903, 48.818123918000055 ], [ -125.10207275499999, 48.818101574000146 ], [ -125.102050190999961, 48.817562183000085 ], [ -125.102866975, 48.817547280000063 ], [ -125.102855688999966, 48.81727758400006 ], [ -125.103264078999956, 48.817270131000065 ], [ -125.103252790999974, 48.817000436000114 ], [ -125.104069563999985, 48.81698552500005 ], [ -125.104013106999957, 48.815637050000092 ], [ -125.104829858999921, 48.815622133000147 ], [ -125.10481856200002, 48.815352439000037 ], [ -125.105226936999884, 48.815344978 ], [ -125.105204340999961, 48.814805589000059 ], [ -125.106429447, 48.814783199000011 ], [ -125.1064633599999, 48.815592282000097 ], [ -125.107280108999959, 48.815577348000033 ], [ -125.107359275999983, 48.817465209000055 ], [ -125.10817605599999, 48.817450268000108 ], [ -125.10818736899995, 48.817719963000044 ], [ -125.109004152999901, 48.81770501600009 ], [ -125.10902679199999, 48.818244404000048 ], [ -125.111885558999973, 48.818192044000085 ], [ -125.111908226999944, 48.818731431000089 ], [ -125.113541823999981, 48.818701478000072 ], [ -125.113530480999927, 48.818431786000076 ], [ -125.11434727299995, 48.818416801000112 ], [ -125.114335924999949, 48.81814710800014 ], [ -125.114744318999925, 48.818139613 ], [ -125.114710269999961, 48.81733053500006 ], [ -125.113076719999981, 48.817360502000014 ], [ -125.113042697999973, 48.81655142200006 ], [ -125.114267840999915, 48.816528949000038 ], [ -125.114245148999956, 48.815989563000059 ], [ -125.114653524999966, 48.815982069000015 ], [ -125.114642176999936, 48.815712376000072 ], [ -125.11505055, 48.815704880000126 ], [ -125.115039200999945, 48.815435188000059 ], [ -125.116264314999967, 48.815412694000088 ], [ -125.116275670999968, 48.815682386000105 ], [ -125.116684044999928, 48.815674885000092 ], [ -125.116740841999956, 48.81702334800007 ], [ -125.1175576099999, 48.817008341000125 ], [ -125.117546245999975, 48.816738649000115 ], [ -125.118771390999896, 48.816716128000067 ], [ -125.118816874999965, 48.817794897000091 ], [ -125.121267208999967, 48.817749813000056 ], [ -125.121278593999946, 48.818019505000059 ], [ -125.121686986000014, 48.818011987000077 ], [ -125.121698372, 48.81828167900008 ], [ -125.122515157999956, 48.818266636000061 ], [ -125.122526548999957, 48.818536328000036 ], [ -125.12293494499994, 48.818528803000035 ], [ -125.122961579999952, 48.819159242000126 ], [ -125.12479511399999, 48.819174274000012 ], [ -125.1247674899999, 48.820654239000071 ], [ -125.125068159999927, 48.82064869400012 ], [ -125.125079565999897, 48.820918385000056 ], [ -125.125257808999962, 48.820915098000071 ], [ -125.125277448999981, 48.819862351000019 ], [ -125.126269312999923, 48.819870465000108 ], [ -125.126269510999961, 48.819859875000112 ], [ -125.127569706999935, 48.819870497000089 ], [ -125.12757096199995, 48.819803007000125 ], [ -125.131570650999933, 48.819835585000128 ], [ -125.131588747999928, 48.818858479000028 ], [ -125.130666421999976, 48.818850980000022 ], [ -125.130706125999936, 48.816709370000062 ], [ -125.130116427999951, 48.816704571000074 ], [ -125.130172307999899, 48.813692068000087 ], [ -125.130183245999945, 48.813102353000041 ], [ -125.135620649999979, 48.813146477000011 ], [ -125.135606822999975, 48.813896629000091 ], [ -125.135581174999956, 48.815288101000114 ], [ -125.136170853999943, 48.815292870000064 ], [ -125.136142525, 48.816830699000029 ], [ -125.136583057999957, 48.816834260000071 ], [ -125.136588699999933, 48.81652782400004 ], [ -125.142026506999926, 48.816571622000041 ], [ -125.14200342, 48.817833418000106 ], [ -125.141318714999969, 48.81816029900002 ], [ -125.139850295999963, 48.819483395000113 ], [ -125.13911449899993, 48.819848012000101 ], [ -125.13895138399999, 48.820165604000081 ], [ -125.138922106, 48.820759487000082 ], [ -125.138830186999925, 48.820833494000105 ], [ -125.138581882999986, 48.820952470000108 ], [ -125.136382616999953, 48.820934721000114 ], [ -125.136391812999989, 48.82043545100008 ], [ -125.135676141999937, 48.820429665000049 ], [ -125.13566445399999, 48.82106366700004 ], [ -125.137543940999933, 48.821078851000081 ], [ -125.13754139400001, 48.821217391000069 ], [ -125.138020909999966, 48.821221259000069 ], [ -125.137014009999945, 48.821703699000082 ], [ -125.136193489999982, 48.821952999000061 ], [ -125.13507441699997, 48.822558301000122 ], [ -125.135057893999928, 48.822784705000061 ], [ -125.135983107999948, 48.823405685000118 ], [ -125.136529782999929, 48.824070801000111 ], [ -125.136419917999902, 48.824369795000045 ], [ -125.136259495, 48.824462409000084 ], [ -125.135206210999954, 48.824374093000074 ], [ -125.135046081999974, 48.824458203000056 ], [ -125.135261418999931, 48.824696004000067 ], [ -125.13532370399993, 48.825208693000022 ], [ -125.135610914000011, 48.825517792000014 ], [ -125.13614361599997, 48.825876695000069 ], [ -125.136228784999957, 48.826271196000043 ], [ -125.136816309999944, 48.826989007000094 ], [ -125.136801496999936, 48.827564403000068 ], [ -125.136610491999988, 48.828233702000034 ], [ -125.136681298999989, 48.82894301000006 ], [ -125.136552499999965, 48.829081107000086 ], [ -125.135972813999899, 48.829244893000052 ], [ -125.135711396999952, 48.829528286000091 ], [ -125.135841511999942, 48.829687906000046 ], [ -125.13651229099996, 48.829747708000092 ], [ -125.136643405000015, 48.829961304000044 ], [ -125.136555314999939, 48.830448391000061 ], [ -125.135950086999912, 48.831251612000109 ], [ -125.136016991999966, 48.83159199400005 ], [ -125.136317485999925, 48.831892503000056 ], [ -125.136442204999966, 48.832294191000095 ], [ -125.136557620999923, 48.833705498000064 ], [ -125.136882499999956, 48.834625605000028 ], [ -125.136633615999955, 48.834837806000067 ], [ -125.13630572299995, 48.835464403000046 ], [ -125.135679592999935, 48.835826214000079 ], [ -125.135022484999951, 48.836397291000075 ], [ -125.133581894999963, 48.835856091000039 ], [ -125.132131696999963, 48.834732402000078 ], [ -125.131509345999916, 48.834368099000088 ], [ -125.131557421999972, 48.831773243000043 ], [ -125.132689156999945, 48.831782431000143 ], [ -125.132692888999927, 48.831580771000112 ], [ -125.132939555999954, 48.831582771000107 ] ], [ [ -125.115527042999958, 48.817315542000074 ], [ -125.11551569, 48.817045849000138 ], [ -125.115107304, 48.817053346000108 ], [ -125.11511865599995, 48.817323038000026 ], [ -125.115527042999958, 48.817315542000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998223763054272", "sL_AssetLoss": "93.456", "sL_BldgLoss": "93.29", "sL_StrLoss": "90.9", "sL_NStrLoss": "2.39", "sL_ContLoss": "0.166", "geom_point": "0101000020E6100000BEA982307B3F5FC00BE4658FC87E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.994093005999943, 48.991735793000096 ], [ -124.993568398999969, 48.991646098000082 ], [ -124.992982197999979, 48.991674606000046 ], [ -124.992356994999938, 48.99139690100008 ], [ -124.99206080099999, 48.991177500000092 ], [ -124.991389208000015, 48.991485207000061 ], [ -124.9905217, 48.991346996000054 ], [ -124.990174296999925, 48.991210303000059 ], [ -124.989819381999922, 48.990874194000099 ], [ -124.989243930999947, 48.990787628000113 ], [ -124.989273913999952, 48.989402129000055 ], [ -124.99302213299994, 48.989437375000087 ], [ -124.993017314999975, 48.989459898000099 ], [ -124.993138892000019, 48.989781789000098 ], [ -124.993648204999943, 48.99017768800006 ], [ -124.99406689199995, 48.990089407000077 ], [ -124.99424678, 48.990122195000048 ], [ -124.99430340899994, 48.990508088000048 ], [ -124.994458919999929, 48.990650603000063 ], [ -124.994595585999932, 48.990674799000054 ], [ -124.994706614999942, 48.990618627000025 ], [ -124.994689792999935, 48.991400174000049 ], [ -124.994465306, 48.991468098000148 ], [ -124.994093005999943, 48.991735793000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.993201086691254", "sL_AssetLoss": "415.9047", "sL_BldgLoss": "413.077", "sL_StrLoss": "386.9", "sL_NStrLoss": "26.177", "sL_ContLoss": "2.8277", "geom_point": "0101000020E61000006FB2B2224F405FC09B2D6A41B9804840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.007272783999895, 49.00789216700008 ], [ -125.00727361, 49.00785332300007 ], [ -125.005804932, 49.00783972900004 ], [ -125.005812756999944, 49.007472279000055 ], [ -125.003709574999959, 49.007452776000072 ], [ -125.003718874, 49.007016994000018 ], [ -125.002982774000017, 49.00701015800005 ], [ -125.003012956999953, 49.00559669200009 ], [ -125.000379459999948, 49.005572195000092 ], [ -125.000393170000024, 49.004931843000087 ], [ -124.999075547999922, 49.004919563000087 ], [ -124.999130352999941, 49.00236298599999 ], [ -124.999548996999962, 49.002698002000031 ], [ -124.999864594999906, 49.002764911000078 ], [ -125.000437491999961, 49.002700799000138 ], [ -125.000935601999942, 49.002836097000056 ], [ -125.001758106999958, 49.002893091000026 ], [ -125.002382702999952, 49.003152285000063 ], [ -125.002891920999986, 49.003206397000064 ], [ -125.003183008999954, 49.003318896000039 ], [ -125.003481096999977, 49.003583792000057 ], [ -125.003589005999984, 49.003887195000047 ], [ -125.004453391, 49.003971197000084 ], [ -125.004606893999963, 49.004041 ], [ -125.004693389999915, 49.004146409000086 ], [ -125.004311899999919, 49.005197404000043 ], [ -125.004337806999914, 49.005512190000054 ], [ -125.004461497999927, 49.005536405000036 ], [ -125.004826213999962, 49.00539539200004 ], [ -125.005707575999935, 49.004875594000112 ], [ -125.006590207999949, 49.005409594000135 ], [ -125.007102586999963, 49.005599093000079 ], [ -125.007127983999951, 49.005858300000092 ], [ -125.009169400999937, 49.00595801300009 ], [ -125.010012616000012, 49.005835506000039 ], [ -125.010219314999929, 49.00589529200014 ], [ -125.010420412999935, 49.00613460600006 ], [ -125.010782793999923, 49.00630830900014 ], [ -125.010968486999943, 49.006511999000054 ], [ -125.011442116999945, 49.006692896000118 ], [ -125.011478612999966, 49.007258293000113 ], [ -125.011624104999953, 49.007471895000066 ], [ -125.011570210999963, 49.007842194000069 ], [ -125.011787548999948, 49.007933831000067 ], [ -125.007272783999895, 49.00789216700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.988250738073709", "sL_AssetLoss": "1835.86", "sL_BldgLoss": "1814.29", "sL_StrLoss": "1667.7", "sL_NStrLoss": "146.59", "sL_ContLoss": "21.57", "geom_point": "0101000020E6100000F8CAB4E4CE355FC06DBC64B107854840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.835359696999973, 49.044182427000095 ], [ -124.835449589999925, 49.040581723000066 ], [ -124.839332031999945, 49.04062374800003 ], [ -124.839358696999966, 49.039551991000039 ], [ -124.83938906599991, 49.03833131500005 ], [ -124.840524150999912, 49.03834357500007 ], [ -124.840576640000023, 49.036231538000088 ], [ -124.840897800999983, 49.036235005000016 ], [ -124.840927594999968, 49.035035744000027 ], [ -124.842115886999949, 49.035048562000107 ], [ -124.84638086199999, 49.035094461000071 ], [ -124.84605778199996, 49.035510292000033 ], [ -124.845779716999942, 49.036514402000108 ], [ -124.845120820999952, 49.036849106000062 ], [ -124.844619788999964, 49.03695590300007 ], [ -124.844620699999979, 49.03701860300005 ], [ -124.844752507999928, 49.037240701000052 ], [ -124.844754010999949, 49.037619597000067 ], [ -124.844649593999961, 49.037756299000158 ], [ -124.844444399999972, 49.037786202000063 ], [ -124.844366892999972, 49.037921506000082 ], [ -124.844292579999916, 49.038850093000121 ], [ -124.843910594999912, 49.039287305000101 ], [ -124.843557018999931, 49.039338601000047 ], [ -124.843241803999931, 49.039298711000122 ], [ -124.843175612999943, 49.039352794000081 ], [ -124.843181490999939, 49.039550805000054 ], [ -124.842853287999944, 49.04029419400009 ], [ -124.84269439799999, 49.041511892000081 ], [ -124.842479200999918, 49.041604493000108 ], [ -124.84225339299995, 49.041419417000085 ], [ -124.842086501999944, 49.041386603000021 ], [ -124.841855892999945, 49.041821012000092 ], [ -124.84155929699989, 49.041943486000079 ], [ -124.841371687999924, 49.041631610000067 ], [ -124.840839398999933, 49.041675687000051 ], [ -124.840036798999947, 49.04143650400006 ], [ -124.839740411999955, 49.041217103000079 ], [ -124.839455721999983, 49.041265499000112 ], [ -124.839203711999957, 49.041486289000048 ], [ -124.839027495000025, 49.042298100000046 ], [ -124.839032607999954, 49.042433383000073 ], [ -124.839444207, 49.042471911000121 ], [ -124.83941069399998, 49.04263419299999 ], [ -124.838958989999924, 49.042649899000025 ], [ -124.838742778999958, 49.043085693000116 ], [ -124.838554003999917, 49.043169703000096 ], [ -124.838265389999975, 49.043156907000096 ], [ -124.83791689, 49.042937603000027 ], [ -124.837710792999957, 49.042949006000079 ], [ -124.837549697999975, 49.043050086000058 ], [ -124.837446311999926, 49.043582687000011 ], [ -124.837728010999953, 49.043785007000047 ], [ -124.837903114000014, 49.044079804000027 ], [ -124.837902399, 49.044209966000089 ], [ -124.835359696999973, 49.044182427000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.988891989952554", "sL_AssetLoss": "895.75", "sL_BldgLoss": "885.8", "sL_StrLoss": "832", "sL_NStrLoss": "53.8", "sL_ContLoss": "9.95", "geom_point": "0101000020E610000072DD182B3F3A5FC0DA182244857C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.90684118599998, 48.972072899000054 ], [ -124.906854968999966, 48.971483812000059 ], [ -124.910864771999954, 48.971524611000092 ], [ -124.912310562999949, 48.971539286000059 ], [ -124.912301826999951, 48.971914502000104 ], [ -124.912772466999982, 48.971919274000093 ], [ -124.912727373, 48.973857119000044 ], [ -124.912601501999944, 48.973890488000094 ], [ -124.912721728999912, 48.974099714000076 ], [ -124.912718008999903, 48.974259520000061 ], [ -124.912606690999951, 48.974386098000103 ], [ -124.911576511999954, 48.974609693000055 ], [ -124.910149491999974, 48.974480093000039 ], [ -124.909870886999926, 48.974313492000128 ], [ -124.909821905999976, 48.974135404 ], [ -124.909235304999953, 48.973812086000081 ], [ -124.909061297999983, 48.973544407000091 ], [ -124.908577706999935, 48.97336350800002 ], [ -124.907684620999987, 48.973233903000043 ], [ -124.906814539999957, 48.973211780000035 ], [ -124.90684118599998, 48.972072899000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.972192033907515", "sL_AssetLoss": "1472.24", "sL_BldgLoss": "1431.3", "sL_StrLoss": "1182.6", "sL_NStrLoss": "248.7", "sL_ContLoss": "40.94", "geom_point": "0101000020E61000003114C9BAEC295FC0147848AD076E4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.652064544999973, 48.86097819700008 ], [ -124.65212939099996, 48.858724649000045 ], [ -124.651298941, 48.858714181000096 ], [ -124.651303184999932, 48.85856677600006 ], [ -124.65451009500002, 48.856541296000103 ], [ -124.654907911999928, 48.856183790000102 ], [ -124.655471300999977, 48.856320608000054 ], [ -124.656330007999912, 48.856739298000036 ], [ -124.656789362999973, 48.857098234000013 ], [ -124.656751550999942, 48.858416931000079 ], [ -124.657581996999937, 48.858427358000135 ], [ -124.657570322999945, 48.858834723000022 ], [ -124.658034403999977, 48.858840547000042 ], [ -124.657931219999952, 48.86244212600014 ], [ -124.65434057099999, 48.862397014000059 ], [ -124.654332794999959, 48.862327900000054 ], [ -124.654050910999956, 48.862017401000116 ], [ -124.653408112999969, 48.861575906000041 ], [ -124.652079681999965, 48.860983397000105 ], [ -124.652064544999973, 48.86097819700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994987313571384", "sL_AssetLoss": "323.18", "sL_BldgLoss": "321.56", "sL_StrLoss": "315", "sL_NStrLoss": "6.56", "sL_ContLoss": "1.62", "geom_point": "0101000020E6100000BA48E3484E3F5FC0112AA357A47F4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.98718619499999, 48.998209175000028 ], [ -124.987251393999941, 48.99520293100003 ], [ -124.989519786999949, 48.996357400000107 ], [ -124.989986100999914, 48.996394385000045 ], [ -124.990285205999911, 48.99671340600004 ], [ -124.991435984999953, 48.997449706000104 ], [ -124.992649671999942, 48.998044097000104 ], [ -124.992645002999964, 48.998260560000091 ], [ -124.98718619499999, 48.998209175000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.981633707548499", "sL_AssetLoss": "1064.45", "sL_BldgLoss": "1044.9", "sL_StrLoss": "956", "sL_NStrLoss": "88.9", "sL_ContLoss": "19.55", "geom_point": "0101000020E61000002D2D1B8416345FC016C19C2C778C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.812269943999937, 49.099164079000033 ], [ -124.812281349, 49.098716678000088 ], [ -124.811782451999946, 49.098711168000101 ], [ -124.811791283999952, 49.098364865000029 ], [ -124.811528562, 49.098361962000062 ], [ -124.811620399999981, 49.09476158100005 ], [ -124.814951808999965, 49.094798343000015 ], [ -124.814939379999942, 49.094812998000037 ], [ -124.814313600999981, 49.094912695000033 ], [ -124.814159907999951, 49.095193198000054 ], [ -124.81389311, 49.095405396000075 ], [ -124.814101103999946, 49.096228596000081 ], [ -124.815146997999989, 49.097111601000108 ], [ -124.815713422, 49.09724690300007 ], [ -124.816580794999965, 49.097332401000109 ], [ -124.816651393999976, 49.09739511 ], [ -124.816409613999951, 49.097524706000058 ], [ -124.816442408999947, 49.097685605000088 ], [ -124.817043790999918, 49.09840479000006 ], [ -124.817553590999978, 49.098495995000057 ], [ -124.817760004999954, 49.098450565000071 ], [ -124.817740368000017, 49.099224352000078 ], [ -124.812269943999937, 49.099164079000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.997168886937578", "sL_AssetLoss": "512.79478", "sL_BldgLoss": "511.343", "sL_StrLoss": "495.376", "sL_NStrLoss": "15.967", "sL_ContLoss": "1.45178", "geom_point": "0101000020E6100000D20251832B425FC0778C23BDC5704840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.032919593999964, 48.883558591000032 ], [ -125.032847987, 48.883478806000049 ], [ -125.032725698999982, 48.8835087000001 ], [ -125.031748998999916, 48.884205718000096 ], [ -125.03133080899994, 48.884201934000103 ], [ -125.031342045999949, 48.883658843000021 ], [ -125.031388342999918, 48.88142095400012 ], [ -125.029947821999912, 48.881407906000035 ], [ -125.02996124, 48.880760262000145 ], [ -125.030022436999985, 48.87780612800006 ], [ -125.03546725299999, 48.877855344000075 ], [ -125.035409966999964, 48.880636342000045 ], [ -125.036850464999986, 48.880649316000117 ], [ -125.036847164999941, 48.880809783000096 ], [ -125.039223836999952, 48.880767760000019 ], [ -125.039235700999981, 48.881059466000124 ], [ -125.039256746, 48.881576869000057 ], [ -125.038847815999958, 48.881584103000051 ], [ -125.038872449999985, 48.88218992700007 ], [ -125.038852205999945, 48.882177107000075 ], [ -125.038505808999957, 48.882399843000037 ], [ -125.038471782, 48.882400445000037 ], [ -125.038472624999926, 48.882421181000083 ], [ -125.038307425, 48.882527404000015 ], [ -125.037843799999933, 48.88295134300003 ], [ -125.037675830999959, 48.882954312000038 ], [ -125.037681732999943, 48.883099535000071 ], [ -125.037372806999926, 48.883382011000023 ], [ -125.036996320999933, 48.883477400000039 ], [ -125.036398109999979, 48.883866195000053 ], [ -125.035434118999888, 48.884314796000062 ], [ -125.035093694999915, 48.884347613000088 ], [ -125.034263286999987, 48.884056994000034 ], [ -125.033454115999945, 48.883927405000094 ], [ -125.033148288999939, 48.883816293000073 ], [ -125.032919593999964, 48.883558591000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.995335673879439", "sL_AssetLoss": "298.221", "sL_BldgLoss": "296.83", "sL_StrLoss": "275.01", "sL_NStrLoss": "21.82", "sL_ContLoss": "1.391", "geom_point": "0101000020E6100000B3CE3ADBCA4D5FC0074404F3C2644840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.214732129999987, 48.788942423000037 ], [ -125.214472180999962, 48.788662093000063 ], [ -125.213335591000018, 48.787893009000072 ], [ -125.213162296999926, 48.787653698000106 ], [ -125.213290497999964, 48.787192288000021 ], [ -125.212880414999958, 48.786507196000052 ], [ -125.212909091999961, 48.786218115000068 ], [ -125.213183208999936, 48.785978896000117 ], [ -125.214225690999939, 48.78583359100007 ], [ -125.214654188999958, 48.785672699 ], [ -125.215343686999944, 48.785236901000076 ], [ -125.21611680699999, 48.785194084000068 ], [ -125.216545508999943, 48.785320898000059 ], [ -125.217064599999929, 48.785688307 ], [ -125.217228915999925, 48.786000201000093 ], [ -125.217249185999918, 48.786458808000063 ], [ -125.217479520999944, 48.786760805000036 ], [ -125.2174063099999, 48.786960100000037 ], [ -125.216722300999947, 48.787198006000025 ], [ -125.216676198999934, 48.787387414000101 ], [ -125.216886707999919, 48.787509899 ], [ -125.217801822999974, 48.787572601000079 ], [ -125.218088000999956, 48.787883008000044 ], [ -125.21789290599996, 48.788740403000084 ], [ -125.217714353999952, 48.788964310000068 ], [ -125.216825507999914, 48.788957795000037 ], [ -125.216687197999988, 48.788871414000063 ], [ -125.216465601999985, 48.788777391000075 ], [ -125.216233910999975, 48.788790185000025 ], [ -125.216296399999976, 48.788942606000077 ], [ -125.216312004999949, 48.788954028000056 ], [ -125.214732129999987, 48.788942423000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.986551041758574", "sL_AssetLoss": "634.696", "sL_BldgLoss": "626.16", "sL_StrLoss": "573", "sL_NStrLoss": "53.16", "sL_ContLoss": "8.536", "geom_point": "0101000020E6100000D6ED26D758475FC0DA6C93279C654840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.113348112999958, 48.791893868000074 ], [ -125.115288928999973, 48.791909963000123 ], [ -125.116142393999951, 48.792598607000095 ], [ -125.117088712999973, 48.793095395000087 ], [ -125.117084402, 48.793160444000094 ], [ -125.116948332999925, 48.795214975000057 ], [ -125.11695112299995, 48.795550090000035 ], [ -125.112775512999946, 48.795515486000077 ], [ -125.112843632, 48.791913156000106 ], [ -125.113347669999911, 48.791917342000104 ], [ -125.113348112999958, 48.791893868000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995691284299645", "sL_AssetLoss": "264.58", "sL_BldgLoss": "263.44", "sL_StrLoss": "259", "sL_NStrLoss": "4.44", "sL_ContLoss": "1.14", "geom_point": "0101000020E6100000782975C938365FC074DB74BA62584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.846173903999954, 48.68956840900006 ], [ -124.848024605999981, 48.689259409000051 ], [ -124.848243911999958, 48.689688108000055 ], [ -124.849061603999928, 48.690115291000097 ], [ -124.850004067, 48.690180296000058 ], [ -124.849974893999928, 48.691373234000039 ], [ -124.844551882999895, 48.691314563000056 ], [ -124.844581051999981, 48.690127372000063 ], [ -124.844762903999964, 48.68999570000009 ], [ -124.846173903999954, 48.68956840900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.993009118541033", "sL_AssetLoss": "1085.7", "sL_BldgLoss": "1078.11", "sL_StrLoss": "1022", "sL_NStrLoss": "56.11", "sL_ContLoss": "7.59", "geom_point": "0101000020E61000008CEBC65839465FC063B1D9D3865C4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.093800553999955, 48.724483301000099 ], [ -125.093813079999919, 48.723833754000026 ], [ -125.0937243899999, 48.723833001000045 ], [ -125.093760455, 48.721962881000088 ], [ -125.094010187999956, 48.722125899000076 ], [ -125.094336813999945, 48.722128698000105 ], [ -125.094495909999964, 48.722054706000037 ], [ -125.094787377, 48.721832498000012 ], [ -125.094796394999946, 48.721419491000049 ], [ -125.095334605999966, 48.721255708000029 ], [ -125.095406486999977, 48.721056291000046 ], [ -125.095743005999964, 48.720933804000033 ], [ -125.096248596999942, 48.721032094000101 ], [ -125.096288817999977, 48.72131120500007 ], [ -125.096497006000021, 48.721432296000074 ], [ -125.09667269699996, 48.721410909000085 ], [ -125.097158822999958, 48.7209979020001 ], [ -125.09777209399999, 48.721049209000078 ], [ -125.099123022999962, 48.72146650300008 ], [ -125.099376708999969, 48.72138100899999 ], [ -125.099421203999938, 48.721109003 ], [ -125.099705991999954, 48.721113300000098 ], [ -125.1001989, 48.721536203000085 ], [ -125.100395921999947, 48.721650201000074 ], [ -125.100667482999967, 48.721663001000096 ], [ -125.100864006, 48.721799511000071 ], [ -125.100861929999965, 48.7219080590001 ], [ -125.10064770299995, 48.722167205000048 ], [ -125.100855339999924, 48.722252380000128 ], [ -125.100822498999946, 48.72396884500008 ], [ -125.099238667999884, 48.723955478000072 ], [ -125.09922766899993, 48.724529284 ], [ -125.093800553999955, 48.724483301000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998933219543418", "sL_AssetLoss": "42.183", "sL_BldgLoss": "42.138", "sL_StrLoss": "41.3", "sL_NStrLoss": "0.838", "sL_ContLoss": "0.045", "geom_point": "0101000020E61000003F756A36E8345FC0583421D6B0584840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.824648775999933, 48.694004740000061 ], [ -124.824731575999962, 48.69069191900013 ], [ -124.824974188999974, 48.690635210000082 ], [ -124.825908389999967, 48.691673399000045 ], [ -124.827260283999919, 48.691867094000067 ], [ -124.827550488999961, 48.691637791000062 ], [ -124.827795098999928, 48.691652095000038 ], [ -124.827717900999971, 48.692525114000055 ], [ -124.828214007999961, 48.692670407000016 ], [ -124.828344699999917, 48.692911101000107 ], [ -124.828836785, 48.693380999000084 ], [ -124.828935193999925, 48.69346080300005 ], [ -124.829304177999958, 48.693507799000059 ], [ -124.829732907, 48.693348286000038 ], [ -124.830176066999968, 48.693078710000052 ], [ -124.830164844999928, 48.693529822000109 ], [ -124.830085394999955, 48.693528950000029 ], [ -124.83007207299994, 48.694064422000075 ], [ -124.824648775999933, 48.694004740000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.970166545981173", "sL_AssetLoss": "1381", "sL_BldgLoss": "1339.8", "sL_StrLoss": "1148", "sL_NStrLoss": "191.8", "sL_ContLoss": "41.2", "geom_point": "0101000020E610000074332FC9F9335FC0454CE4DD6C8D4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.81031911, 49.102413470000066 ], [ -124.813820289999938, 49.102452139 ], [ -124.81382159599994, 49.102826988000089 ], [ -124.814035899999951, 49.103453599000048 ], [ -124.814194716999936, 49.103667302000062 ], [ -124.814713703999928, 49.10402759100004 ], [ -124.814377816999951, 49.104581595000091 ], [ -124.814376893999949, 49.104942015000077 ], [ -124.81422259599999, 49.105223894000098 ], [ -124.814334989999949, 49.106031502000135 ], [ -124.814087089999958, 49.106386091000111 ], [ -124.813630597999946, 49.106635286000021 ], [ -124.813331999999889, 49.106676602000071 ], [ -124.812817798999959, 49.106891708000049 ], [ -124.811756060999954, 49.107653148000054 ], [ -124.810141455999883, 49.107635301000059 ], [ -124.81023342, 49.104034972000093 ], [ -124.810277685999921, 49.104035462000084 ], [ -124.81031911, 49.102413470000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998930404942849", "sL_AssetLoss": "92.4649", "sL_BldgLoss": "92.366", "sL_StrLoss": "90.5", "sL_NStrLoss": "1.866", "sL_ContLoss": "0.0989", "geom_point": "0101000020E6100000818D902603425FC044C7ABFF35824840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.031758393999979, 49.018670504000077 ], [ -125.031470007999957, 49.0186575910001 ], [ -125.029952896999959, 49.019043611000022 ], [ -125.029828889999948, 49.019097665000068 ], [ -125.029847895999978, 49.018183269000119 ], [ -125.029143604999931, 49.018176903000068 ], [ -125.029211519999976, 49.014911639000033 ], [ -125.029524112999923, 49.014877794000022 ], [ -125.030118003999931, 49.015037294000074 ], [ -125.030456392999923, 49.015248112000052 ], [ -125.030658210999917, 49.015523006000087 ], [ -125.031709689999943, 49.015800700000035 ], [ -125.033246904999913, 49.015954496000113 ], [ -125.033721621999973, 49.016206605000065 ], [ -125.033836700999956, 49.016303392000076 ], [ -125.033823294999948, 49.016663793000141 ], [ -125.033649216999919, 49.017116700000052 ], [ -125.03404632499992, 49.01742430300002 ], [ -125.034052796999958, 49.017622193000093 ], [ -125.034021098, 49.017838686000076 ], [ -125.033685296999963, 49.018330091000124 ], [ -125.033688613999942, 49.018735999000107 ], [ -125.033365509999967, 49.018839888000066 ], [ -125.033239506000015, 49.019139007000085 ], [ -125.032502082999883, 49.019476591000043 ], [ -125.032480385999975, 49.019508217000109 ], [ -125.031526868999961, 49.019499620000026 ], [ -125.031495881999916, 49.019304193000025 ], [ -125.031755111999985, 49.018931102000039 ], [ -125.031758393999979, 49.018670504000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.997422505149506", "sL_AssetLoss": "455.869", "sL_BldgLoss": "454.694", "sL_StrLoss": "441.364", "sL_NStrLoss": "13.33", "sL_ContLoss": "1.175", "geom_point": "0101000020E61000002B785D01BD495FC0F0BECF5D37684840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.15022789399994, 48.815888715000035 ], [ -125.147754610999954, 48.815422992 ], [ -125.147674893999962, 48.815428473000061 ], [ -125.147705723999977, 48.81373209600013 ], [ -125.147705727999977, 48.8137318960001 ], [ -125.147714983999947, 48.813731970000042 ], [ -125.148142732999958, 48.813735381000058 ], [ -125.148142901999975, 48.813726126000056 ], [ -125.148149932999971, 48.813339006000071 ], [ -125.149462260999911, 48.813349460000012 ], [ -125.149466695999962, 48.813104938000066 ], [ -125.151370770999961, 48.813120077000043 ], [ -125.151380952999915, 48.812557384000087 ], [ -125.156818312999945, 48.812600430000046 ], [ -125.156817713999899, 48.812633741000084 ], [ -125.156274997999944, 48.813329391000138 ], [ -125.156112506999975, 48.81361696500008 ], [ -125.155971613999924, 48.813866306000087 ], [ -125.156011709999987, 48.814188196000025 ], [ -125.156628595999919, 48.814591199000034 ], [ -125.156529719, 48.814826204000077 ], [ -125.156091090999979, 48.815105408000171 ], [ -125.155348601999918, 48.815226397000053 ], [ -125.154720199999957, 48.815220700000083 ], [ -125.153846293999962, 48.815452901000107 ], [ -125.152371492999933, 48.815696402000071 ], [ -125.151431719999962, 48.815686403000022 ], [ -125.150595913999936, 48.815900107000047 ], [ -125.15022789399994, 48.815888715000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.987622559528914", "sL_AssetLoss": "1399.32", "sL_BldgLoss": "1382", "sL_StrLoss": "1265", "sL_NStrLoss": "117", "sL_ContLoss": "17.32", "geom_point": "0101000020E61000008B920C1037495FC0EA835DFB1F694840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.14046239, 48.821379007000097 ], [ -125.141331608999963, 48.820723887000071 ], [ -125.141896093999918, 48.820515900000061 ], [ -125.142398522999926, 48.82047890500008 ], [ -125.1427638, 48.820715307000029 ], [ -125.142995705999979, 48.8207466940001 ], [ -125.143542982999975, 48.820494596000046 ], [ -125.14424631299994, 48.820382109000064 ], [ -125.145023602, 48.820044494000058 ], [ -125.145149002999986, 48.819816700000068 ], [ -125.14446089899999, 48.819325312000096 ], [ -125.144412985999935, 48.81914590000013 ], [ -125.144516185999976, 48.819019097000101 ], [ -125.144768331999956, 48.818838661000086 ], [ -125.144842833000013, 48.81883925700005 ], [ -125.144835341999936, 48.819249985000084 ], [ -125.145056249999968, 48.819251753000103 ], [ -125.145055385999939, 48.819299178000044 ], [ -125.145599775999955, 48.819303532000013 ], [ -125.145616979999929, 48.818359376000018 ], [ -125.146368297999956, 48.81802218900004 ], [ -125.147051705999957, 48.817774302000039 ], [ -125.147404383999955, 48.817750091000107 ], [ -125.147531794999935, 48.817838401000053 ], [ -125.14761298599997, 48.818160301 ], [ -125.148530189999946, 48.818259992000023 ], [ -125.148698217999964, 48.818365402000055 ], [ -125.148704498999933, 48.818517789000083 ], [ -125.148489391999959, 48.81889951400013 ], [ -125.147766075999982, 48.81948909500003 ], [ -125.147848396999933, 48.819820914000033 ], [ -125.148205287999971, 48.820236796000046 ], [ -125.148184122999965, 48.820372104000072 ], [ -125.147678695999915, 48.820642710000079 ], [ -125.147117685999916, 48.820579991000038 ], [ -125.146779308999953, 48.820649785000114 ], [ -125.14661169699994, 48.821183893000104 ], [ -125.14629238699996, 48.821702308000084 ], [ -125.146391605999924, 48.822402991000111 ], [ -125.145787605999942, 48.822647988000021 ], [ -125.144824804999956, 48.822756183000081 ], [ -125.143253514999984, 48.823261796000082 ], [ -125.142656696999921, 48.823317393000075 ], [ -125.141915601999983, 48.8238357870001 ], [ -125.141149682999981, 48.82409210500002 ], [ -125.14091380799999, 48.824304306000073 ], [ -125.140148322999906, 48.824587801000114 ], [ -125.139903719999893, 48.824591998000102 ], [ -125.139947487999962, 48.824367005000042 ], [ -125.139536994999943, 48.823978212000092 ], [ -125.139452700999968, 48.82330599100009 ], [ -125.13991198299999, 48.822576803000096 ], [ -125.14007189599999, 48.82180909900007 ], [ -125.14046239, 48.821379007000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11172083", "BldgCostT": "7208333", "sL_LossRatio": "0.695789706271634", "sL_AssetLoss": "3074.9782308", "sL_BldgLoss": "2139.5382", "sL_StrLoss": "1780.52", "sL_NStrLoss": "359.0182", "sL_ContLoss": "935.4400308", "geom_point": "0101000020E6100000490E1AF236495FC0E95D40585B6A4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.139683206999962, 48.838307190000087 ], [ -125.139274689999951, 48.837657693000104 ], [ -125.139237487999949, 48.837137898000051 ], [ -125.139618105999915, 48.836445706000063 ], [ -125.139651209999954, 48.835960086000057 ], [ -125.139340003999934, 48.835038605000094 ], [ -125.1387341099999, 48.834258099000095 ], [ -125.138751896999977, 48.83403309500008 ], [ -125.139239410999949, 48.832999105000098 ], [ -125.139076694999943, 48.832399511000098 ], [ -125.139082090999949, 48.831885415000059 ], [ -125.139349614999986, 48.831422500000016 ], [ -125.13979599, 48.831045105000022 ], [ -125.139908091999956, 48.83078161300007 ], [ -125.140659117999959, 48.830165005000019 ], [ -125.140983297999924, 48.82945708600009 ], [ -125.141000386999963, 48.828917400000101 ], [ -125.140909204999986, 48.828693787000056 ], [ -125.140024294999947, 48.827729588000061 ], [ -125.140050521999953, 48.827073005000074 ], [ -125.140185501999923, 48.82675539400001 ], [ -125.140651489999954, 48.826161500000111 ], [ -125.14139661199999, 48.825715695000042 ], [ -125.141410195999953, 48.824798506000093 ], [ -125.141963313999938, 48.824355591000035 ], [ -125.142141093999967, 48.824011002000091 ], [ -125.142563790999986, 48.823733189000109 ], [ -125.14385291899994, 48.823277501000128 ], [ -125.145205310999984, 48.823036794000117 ], [ -125.145304030999938, 48.823000446000108 ], [ -125.14527471, 48.824608867000045 ], [ -125.146271818999963, 48.824616837000107 ], [ -125.146238180999958, 48.826464068000099 ], [ -125.148204132000018, 48.82642743200006 ], [ -125.148250262999923, 48.827506178000128 ], [ -125.146218512999937, 48.827544039000095 ], [ -125.146215355999971, 48.827717402000054 ], [ -125.146231002000022, 48.82808361000005 ], [ -125.146208678, 48.828084025000123 ], [ -125.146206220999943, 48.828218998000068 ], [ -125.146176960999981, 48.82821876400012 ], [ -125.146174486999911, 48.82835456400008 ], [ -125.150327198999946, 48.828277145000094 ], [ -125.150340673999921, 48.828591938000017 ], [ -125.15089327699998, 48.828596328000067 ], [ -125.150848884999974, 48.831047117000047 ], [ -125.150836705999936, 48.831100695000067 ], [ -125.150716902999989, 48.831166188000097 ], [ -125.15065869599999, 48.831374094000054 ], [ -125.150377989999981, 48.831505110000137 ], [ -125.149732091, 48.831391209000074 ], [ -125.149462500999945, 48.831449604000049 ], [ -125.149263809999965, 48.83158918600008 ], [ -125.149301415999929, 48.831839801000093 ], [ -125.149869696999971, 48.832053491000032 ], [ -125.149880806999988, 48.832297005000051 ], [ -125.149184279999986, 48.832588995000023 ], [ -125.14883548100002, 48.832433691000084 ], [ -125.14843928499999, 48.832378190000057 ], [ -125.148175123999934, 48.832598902000022 ], [ -125.148192796999979, 48.832670100000072 ], [ -125.148831401, 48.832937908000055 ], [ -125.149045493999921, 48.833194315000114 ], [ -125.14898538599999, 48.83368990400006 ], [ -125.148396987999945, 48.83396189200009 ], [ -125.147866195999967, 48.833963303000132 ], [ -125.147299211999936, 48.833775303000024 ], [ -125.147195786999944, 48.834226792000067 ], [ -125.14675718499997, 48.834505892000074 ], [ -125.146592392999963, 48.834454705000105 ], [ -125.146575717999937, 48.834373495000065 ], [ -125.14667999000001, 48.833615789000135 ], [ -125.145871902999914, 48.833541801000116 ], [ -125.145441182999917, 48.833990400000062 ], [ -125.144640003999939, 48.834391992000079 ], [ -125.144428797000018, 48.834854897000071 ], [ -125.143939808999946, 48.835215199000118 ], [ -125.143408699999924, 48.836178 ], [ -125.14317439899996, 48.836407292000075 ], [ -125.143245709, 48.83649558900003 ], [ -125.143867802999935, 48.836717683000096 ], [ -125.143763682999989, 48.836810295000099 ], [ -125.142996123999964, 48.837049602000036 ], [ -125.142971988999989, 48.837122191000091 ], [ -125.14370229299999, 48.837324490000114 ], [ -125.143871684999965, 48.837455505000094 ], [ -125.143881814999986, 48.837689101000137 ], [ -125.143201744999914, 48.838096617000069 ], [ -125.143093810999957, 48.838095751000068 ], [ -125.143093046999965, 48.838137536 ], [ -125.142732590999955, 48.83820599900006 ], [ -125.14240420599999, 48.83850940100011 ], [ -125.14202829, 48.838660403000077 ], [ -125.141957099999956, 48.838868313000042 ], [ -125.140807781999939, 48.839429398000071 ], [ -125.140494484999977, 48.839416592000113 ], [ -125.14029878599996, 48.839294103000064 ], [ -125.140195712999969, 48.838784290000056 ], [ -125.139683206999962, 48.838307190000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.98878034169661", "sL_AssetLoss": "447.0457", "sL_BldgLoss": "442.03", "sL_StrLoss": "417.33", "sL_NStrLoss": "24.7", "sL_ContLoss": "5.0157", "geom_point": "0101000020E61000005D307E3BC5365FC03B59A468E9574840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.856101005999946, 48.683881365000069 ], [ -124.858188960999925, 48.683903764 ], [ -124.858101491999946, 48.68750654100004 ], [ -124.85652668799996, 48.687489651000078 ], [ -124.856484425999909, 48.689227776000102 ], [ -124.852367198999943, 48.689183507000088 ], [ -124.852578700999914, 48.688961689000102 ], [ -124.853045007999981, 48.687604396000054 ], [ -124.854166283999945, 48.686695800000088 ], [ -124.854584697999954, 48.686221504000081 ], [ -124.855111586999968, 48.685385507000078 ], [ -124.855792100999963, 48.684681991000105 ], [ -124.856112109999984, 48.684190589000139 ], [ -124.856101005999946, 48.683881365000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30179250", "BldgCostT": "19845000", "sL_LossRatio": "0.999656804958425", "sL_AssetLoss": "391.32267", "sL_BldgLoss": "391.18837", "sL_StrLoss": "390.40507", "sL_NStrLoss": "0.7833", "sL_ContLoss": "0.1343", "geom_point": "0101000020E610000007A7361FB4845FC0B123BCDADDE74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.072940270999965, 49.814826752000123 ], [ -126.072956536999968, 49.814557274000045 ], [ -126.072540082999978, 49.814546748000048 ], [ -126.072556352, 49.814277270000062 ], [ -126.07213989899995, 49.814266742000044 ], [ -126.072156170999975, 49.813997263000047 ], [ -126.071739720999972, 49.813986734000039 ], [ -126.071755993999943, 49.813717256000061 ], [ -126.071339546999965, 49.813706725000024 ], [ -126.071355821999987, 49.813437247000095 ], [ -126.070106487999936, 49.813405644000106 ], [ -126.070220460999948, 49.811519304000079 ], [ -126.06980403299994, 49.811508767000142 ], [ -126.069869161999961, 49.81043085800011 ], [ -126.070285583999947, 49.810441394000051 ], [ -126.070318142999952, 49.809902440000059 ], [ -126.07073455699998, 49.809912974000078 ], [ -126.070767111999956, 49.80937401900006 ], [ -126.071183523999963, 49.80938455200004 ], [ -126.071199796999963, 49.809115074 ], [ -126.071616205999973, 49.809125606000116 ], [ -126.071632477999955, 49.808856128000052 ], [ -126.0724652899999, 49.808877185000036 ], [ -126.072481558999968, 49.808607707000085 ], [ -126.073730772999966, 49.808639282000115 ], [ -126.073747030999954, 49.808369804000101 ], [ -126.07416343599999, 49.808380325000066 ], [ -126.074260975999934, 49.806763455000066 ], [ -126.075926534999923, 49.806805525000115 ], [ -126.075894041999959, 49.807344483000122 ], [ -126.076310435999957, 49.807354997000033 ], [ -126.076261698999986, 49.808163433000047 ], [ -126.075845299, 49.808152919000072 ], [ -126.075747805999953, 49.809769792000047 ], [ -126.075331390999963, 49.809759276000094 ], [ -126.075217622999972, 49.811645625000025 ], [ -126.07563405499999, 49.811656142000032 ], [ -126.075617802999943, 49.811925621000078 ], [ -126.076034237999949, 49.811936137000032 ], [ -126.076017987999947, 49.812205616000021 ], [ -126.076434424999988, 49.812216130000103 ], [ -126.076288191999964, 49.814641438000109 ], [ -126.075871734999964, 49.814630923000074 ], [ -126.075822978999966, 49.81543935800002 ], [ -126.074157123999925, 49.81539728200007 ], [ -126.074173383999948, 49.815127803000046 ], [ -126.073340462999909, 49.815106756000077 ], [ -126.073356727999965, 49.814837278000027 ], [ -126.072940270999965, 49.814826752000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28190417", "BldgCostT": "19441667", "sL_LossRatio": "1", "sL_AssetLoss": "2706", "sL_BldgLoss": "2706", "sL_StrLoss": "2706", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085B4E7AEBCA95FC06F4F6759BDF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.64992060899999, 49.931862708000061 ], [ -126.649946540999906, 49.931329716000057 ], [ -126.650330098999973, 49.93133749000004 ], [ -126.650374490999951, 49.931126560000095 ], [ -126.650390424999941, 49.930798986000063 ], [ -126.650579059999956, 49.930802810000053 ], [ -126.650822407999925, 49.930512765000081 ], [ -126.650848046999926, 49.929985609000013 ], [ -126.650785046999957, 49.929836566000056 ], [ -126.650649146999925, 49.929750766000012 ], [ -126.650635237999964, 49.929724494000027 ], [ -126.650442879999943, 49.929720595000042 ], [ -126.650458893999939, 49.929391400000021 ], [ -126.650406146999984, 49.929291765000059 ], [ -126.650306929999957, 49.928917694000091 ], [ -126.649285387999939, 49.928923748000088 ], [ -126.649475267999918, 49.925287299000033 ], [ -126.64814144799999, 49.925213042000088 ], [ -126.648453445999948, 49.92134181600008 ], [ -126.651269127999967, 49.921325124000084 ], [ -126.651279978, 49.921101921000094 ], [ -126.651351851999891, 49.921103377000037 ], [ -126.65163570799993, 49.921109128000069 ], [ -126.65161268899999, 49.921204793000051 ], [ -126.651897095999985, 49.921372811000083 ], [ -126.653444381999947, 49.921610704000109 ], [ -126.653912292999976, 49.921755896000057 ], [ -126.653855506999946, 49.922636088000083 ], [ -126.653861447999972, 49.922639365000059 ], [ -126.654195193999925, 49.92282269600004 ], [ -126.655197499999986, 49.923094709000061 ], [ -126.657188099999956, 49.923450684000088 ], [ -126.658118107999954, 49.923513405000065 ], [ -126.658267509, 49.923580308000069 ], [ -126.658275588999985, 49.923715599000047 ], [ -126.657808202999917, 49.924460494000023 ], [ -126.654522420999953, 49.92639170200006 ], [ -126.653203599999969, 49.927435688000124 ], [ -126.652366795999967, 49.928318708000063 ], [ -126.652391373999976, 49.928668995000088 ], [ -126.652590711999963, 49.928904125000024 ], [ -126.652406216999964, 49.928905222000054 ], [ -126.652349573999985, 49.928905559000057 ], [ -126.65236612299999, 49.929219834000115 ], [ -126.652557292999973, 49.929223706000109 ], [ -126.652542239, 49.929533535000083 ], [ -126.652796779999946, 49.92976828200004 ], [ -126.652948733999949, 49.929771359000057 ], [ -126.652946765999957, 49.929811835000066 ], [ -126.652939250999964, 49.929966522000029 ], [ -126.65305404499999, 49.930170266000054 ], [ -126.65326544699991, 49.930383666000104 ], [ -126.653362474999966, 49.93059004800007 ], [ -126.653406346999958, 49.930683365000093 ], [ -126.653522146999933, 49.930745466000104 ], [ -126.653676345999969, 49.93106096600004 ], [ -126.653695045999967, 49.931177666000046 ], [ -126.653749598, 49.93121359900006 ], [ -126.653766245999961, 49.931224566000054 ], [ -126.653854998999975, 49.931387273000077 ], [ -126.653912963999943, 49.931386928000052 ], [ -126.65419093300001, 49.931385270000142 ], [ -126.654196293999973, 49.931395016000081 ], [ -126.654829923999955, 49.93299150200005 ], [ -126.655059496999982, 49.934252662000048 ], [ -126.655127294999886, 49.934625097000037 ], [ -126.655084685999981, 49.934931306000117 ], [ -126.654671218999951, 49.935431107000134 ], [ -126.649783015999958, 49.935460181000089 ], [ -126.649731882999959, 49.931863826000061 ], [ -126.64992060899999, 49.931862708000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44174250", "BldgCostT": "30465000", "sL_LossRatio": "1", "sL_AssetLoss": "3954", "sL_BldgLoss": "3954", "sL_StrLoss": "3954", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071C0F8B369AA5FC0A5AAE022BDF54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.654240937999958, 49.928987924000054 ], [ -126.65424548699994, 49.928894263000124 ], [ -126.65312894799996, 49.928900920000025 ], [ -126.652618899999936, 49.928295885000097 ], [ -126.654960283999969, 49.926581201000047 ], [ -126.655282895999918, 49.926245 ], [ -126.65647548599999, 49.925487401000105 ], [ -126.658198789999972, 49.924702604000124 ], [ -126.658794698999912, 49.924229806000092 ], [ -126.658803699999964, 49.9237170910001 ], [ -126.658683491999966, 49.923353896000023 ], [ -126.658369022999935, 49.922925201000105 ], [ -126.65779179499998, 49.92162780200006 ], [ -126.657909779999926, 49.92090139900008 ], [ -126.658235791999971, 49.920521096000094 ], [ -126.65868941, 49.920331696000098 ], [ -126.659692885999931, 49.920351695000086 ], [ -126.66045040399996, 49.920511194000021 ], [ -126.660695902999962, 49.920912795000056 ], [ -126.660796093999977, 49.920851608000049 ], [ -126.660828384999931, 49.920465604000071 ], [ -126.660997017999961, 49.920441397000083 ], [ -126.661107395999963, 49.921028203000013 ], [ -126.661253897999941, 49.921174891000106 ], [ -126.661502016999989, 49.921261702000081 ], [ -126.662335100999968, 49.921314399000039 ], [ -126.66260459099999, 49.920636492 ], [ -126.663146395999931, 49.919810507000086 ], [ -126.663554909, 49.917093103000063 ], [ -126.6637998, 49.916674396000083 ], [ -126.66377880499995, 49.916242791000066 ], [ -126.663609, 49.91598790400009 ], [ -126.663243245999965, 49.915727961000123 ], [ -126.663244086999939, 49.915710576000095 ], [ -126.663201753999914, 49.915675737000072 ], [ -126.663168829999933, 49.915675073000095 ], [ -126.662839199999908, 49.915440801000024 ], [ -126.662842153000028, 49.915379773000076 ], [ -126.662834246999935, 49.915373265 ], [ -126.662639473999931, 49.915124672000083 ], [ -126.66260214099999, 49.915123919000024 ], [ -126.662528298999987, 49.915012290000035 ], [ -126.662460066999927, 49.914638717000109 ], [ -126.662475878999942, 49.914311781 ], [ -126.66205836599994, 49.914303361000165 ], [ -126.662068625999922, 49.91409130400011 ], [ -126.66182054699999, 49.914055266000084 ], [ -126.661690245999949, 49.913957266000047 ], [ -126.661651646999957, 49.913816766000068 ], [ -126.661678845999916, 49.913622465000095 ], [ -126.662087645999989, 49.91331466600009 ], [ -126.662107679, 49.913283930000055 ], [ -126.66212357299996, 49.91295535700003 ], [ -126.662398122999917, 49.912960895000047 ], [ -126.66254577699999, 49.912866498000099 ], [ -126.662557069999934, 49.912632962000082 ], [ -126.662722198, 49.912453013000111 ], [ -126.662558712999925, 49.91240447000007 ], [ -126.662479146999928, 49.912325065000111 ], [ -126.662440545999956, 49.912184665000041 ], [ -126.662403579999989, 49.912151413000046 ], [ -126.662267577999955, 49.912148670000043 ], [ -126.66246412, 49.911718096000065 ], [ -126.662443503999953, 49.911295108000054 ], [ -126.663308100999956, 49.910405007000087 ], [ -126.663123903999946, 49.910157183000074 ], [ -126.663162907999933, 49.909942107000063 ], [ -126.663454782999978, 49.909670093000074 ], [ -126.664114194999954, 49.90929548800009 ], [ -126.664668015999908, 49.908758599000116 ], [ -126.664328198999954, 49.908023704000108 ], [ -126.664299715, 49.907826301000114 ], [ -126.667556820999948, 49.907806509000075 ], [ -126.66760932899993, 49.911402972000111 ], [ -126.665541201999972, 49.911415550000044 ], [ -126.665528686999977, 49.911674669000028 ], [ -126.664693707999959, 49.911657849000044 ], [ -126.664680680999979, 49.911927450000078 ], [ -126.665515665999962, 49.911944270000028 ], [ -126.665502643999943, 49.912213872000038 ], [ -126.666337634999962, 49.91223068700004 ], [ -126.666322558000019, 49.912542959000071 ], [ -126.666311599999915, 49.912769889000067 ], [ -126.666641875999957, 49.912776539000085 ], [ -126.666729099999941, 49.912778295000088 ], [ -126.666725801999974, 49.912846604000052 ], [ -126.666724934999962, 49.912864599000088 ], [ -126.666720647, 49.912953420000115 ], [ -126.667118044999981, 49.913038165000067 ], [ -126.667154792999938, 49.913056727 ], [ -126.667212852999953, 49.913057896000083 ], [ -126.667206783999958, 49.9126420280001 ], [ -126.668920345999965, 49.912631582000074 ], [ -126.66892763700001, 49.915990210000132 ], [ -126.666825144999905, 49.915862977000074 ], [ -126.666685071999922, 49.923885791000075 ], [ -126.666675624999982, 49.923885849000044 ], [ -126.666679922999933, 49.924180579000115 ], [ -126.666679856999963, 49.924184366000119 ], [ -126.664703049999929, 49.924196369000072 ], [ -126.66472851099995, 49.925947210000096 ], [ -126.662639057999939, 49.925959859000102 ], [ -126.662647968999948, 49.926574462000104 ], [ -126.661529460999944, 49.92658121700002 ], [ -126.661530415999934, 49.926647158000073 ], [ -126.660824395999938, 49.926598650000109 ], [ -126.66070070399995, 49.928880582000083 ], [ -126.655992457, 49.928908853000038 ], [ -126.655986352999932, 49.928483505000067 ], [ -126.655937649999913, 49.928482520000067 ], [ -126.655898401999949, 49.929291317000036 ], [ -126.654645484999918, 49.929265974000053 ], [ -126.654658575000013, 49.928996375000104 ], [ -126.654240937999958, 49.928987924000054 ] ], [ [ -126.667236102999937, 49.914651126000145 ], [ -126.667226860000014, 49.914017738000034 ], [ -126.667084587999909, 49.914071462000052 ], [ -126.667081534999951, 49.914134708000105 ], [ -126.666925426999967, 49.914131565000048 ], [ -126.666889144999985, 49.914145266000041 ], [ -126.666652859999928, 49.914357528000018 ], [ -126.666648301999942, 49.914451943000117 ], [ -126.666710511999923, 49.914654324000082 ], [ -126.667236102999937, 49.914651126000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9286000", "BldgCostT": "4930000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F0FA3B59CA95FC004BCF52F83F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.648757715, 49.917623404000089 ], [ -126.650994002999951, 49.91757287300004 ], [ -126.651494047999904, 49.917660271000038 ], [ -126.651770797000012, 49.918231001000066 ], [ -126.651746152, 49.918501587000058 ], [ -126.651516335999958, 49.918502954000068 ], [ -126.648680849999963, 49.918519771 ], [ -126.648749232999975, 49.917671069000036 ], [ -126.648757715, 49.917623404000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "370.9", "sL_BldgLoss": "370.9", "sL_StrLoss": "370.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5B704E0DFA85FC0001C5AE8F3F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.63515528100001, 49.914799364000018 ], [ -126.635152985, 49.914634039000063 ], [ -126.635726193999972, 49.914684711000049 ], [ -126.636333206999907, 49.914535186000123 ], [ -126.637111789999949, 49.913696309000045 ], [ -126.63698469800002, 49.912596802000095 ], [ -126.637410493999965, 49.912451603000143 ], [ -126.637617596, 49.91221371300005 ], [ -126.638509882999983, 49.912455802000061 ], [ -126.640464889999976, 49.912649494000121 ], [ -126.64069382199996, 49.912628693000066 ], [ -126.640723786999928, 49.914766954000122 ], [ -126.63515528100001, 49.914799364000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "254.7", "sL_BldgLoss": "254.7", "sL_StrLoss": "254.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007455A887CBA85FC0ABC0A0B7BEF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.635145353999988, 49.914084711000058 ], [ -126.635105321999959, 49.911202901000102 ], [ -126.640673390999964, 49.911170494000075 ], [ -126.64068785, 49.912202482000055 ], [ -126.6388868, 49.91214960600005 ], [ -126.636737904999919, 49.911682500000083 ], [ -126.635498421999941, 49.912242198000101 ], [ -126.635436384999934, 49.912357604000121 ], [ -126.635537515999928, 49.912594007000024 ], [ -126.635962293999967, 49.912989914000029 ], [ -126.636007196999969, 49.913242014000069 ], [ -126.636309316999956, 49.913608002000089 ], [ -126.63620498600001, 49.91402820900003 ], [ -126.635889301999939, 49.914220409000016 ], [ -126.635581185999953, 49.914240393000149 ], [ -126.635145353999988, 49.914084711000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "122.6", "sL_BldgLoss": "122.6", "sL_StrLoss": "122.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000093F4FE79F9A95FC0C3B390C26DF74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.654548537999943, 49.931383135000068 ], [ -126.656554179999901, 49.931371144000153 ], [ -126.65660584799997, 49.934967497000123 ], [ -126.655548390999954, 49.934973824000089 ], [ -126.655347545999973, 49.934975024000074 ], [ -126.655353850999973, 49.935414717000143 ], [ -126.655354027999934, 49.935427028000085 ], [ -126.655341879999952, 49.935427101000101 ], [ -126.654901456999951, 49.935429731000042 ], [ -126.655200997999899, 49.935076609000092 ], [ -126.655429737999953, 49.93459084600007 ], [ -126.655591319999957, 49.934247697000053 ], [ -126.655452514999965, 49.933354700000088 ], [ -126.65521999099991, 49.932990092000104 ], [ -126.655184014999946, 49.932575699000019 ], [ -126.654645980999987, 49.931620001000056 ], [ -126.654548537999943, 49.931383135000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "1", "sL_AssetLoss": "6.7", "sL_BldgLoss": "6.7", "sL_StrLoss": "6.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000074E1B49E29B75FC0C790CE869DFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.859316741999962, 49.979886811000057 ], [ -126.85928037399999, 49.979722872000124 ], [ -126.863908712999958, 49.979735409000043 ], [ -126.86423558599995, 49.982994154000046 ], [ -126.860063992999955, 49.983026916000057 ], [ -126.859847523999946, 49.983028612000112 ], [ -126.859881319999943, 49.982978406000086 ], [ -126.859913194999976, 49.982573914000056 ], [ -126.859860634999933, 49.982353535000094 ], [ -126.859819472999945, 49.982180923000065 ], [ -126.859736584999922, 49.98183340100011 ], [ -126.859740557999913, 49.9817980770001 ], [ -126.859877808999926, 49.980575796000039 ], [ -126.859819387999963, 49.980296603000056 ], [ -126.859316741999962, 49.979886811000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35439957", "BldgCostT": "22317040", "sL_LossRatio": "0.966700544946603", "sL_AssetLoss": "1957.99", "sL_BldgLoss": "1892.79", "sL_StrLoss": "1869.13", "sL_NStrLoss": "23.66", "sL_ContLoss": "65.2", "geom_point": "0101000020E61000001190DDA2DFB65FC0C7752190AAFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.854012857999948, 49.992234812000085 ], [ -126.854009499999961, 49.992055364000052 ], [ -126.853585207999927, 49.992058663000101 ], [ -126.853544966999905, 49.989907011000106 ], [ -126.853542759999968, 49.989789040000048 ], [ -126.852615901999968, 49.989771882000063 ], [ -126.852633791999949, 49.989370220000119 ], [ -126.85266394300001, 49.988693353000045 ], [ -126.851827523999944, 49.988677863000134 ], [ -126.851839539, 49.988408231000058 ], [ -126.850166711999933, 49.988377233000023 ], [ -126.85020278199994, 49.987568336000102 ], [ -126.853130182999934, 49.987622566000063 ], [ -126.853118176999942, 49.987892199000093 ], [ -126.85353638, 49.98789993900008 ], [ -126.85351236899993, 49.988439204000038 ], [ -126.853930576999957, 49.98844694400001 ], [ -126.853930017999971, 49.988459490000153 ], [ -126.854037977999965, 49.988458651000052 ], [ -126.85403215499997, 49.988147507000122 ], [ -126.854141123999966, 49.98814665900008 ], [ -126.854130287999951, 49.987567609000109 ], [ -126.854967951999953, 49.987561089000103 ], [ -126.854955296999933, 49.986885528000109 ], [ -126.856093172999948, 49.986876661000046 ], [ -126.856093564999966, 49.986867821000054 ], [ -126.856429775999942, 49.986874036000088 ], [ -126.856511857999962, 49.986873395 ], [ -126.856523748999933, 49.986605918000052 ], [ -126.856941942999924, 49.986613647000105 ], [ -126.856953926999921, 49.986344013000064 ], [ -126.857313022999975, 49.98635064900003 ], [ -126.858208501000021, 49.986367190000095 ], [ -126.858186592999942, 49.986860317000094 ], [ -126.860532413, 49.986841955000031 ], [ -126.860547589999967, 49.987646939000072 ], [ -126.860942045999963, 49.987643847000086 ], [ -126.860967750999947, 49.989006564000064 ], [ -126.86256726299996, 49.988994010000056 ], [ -126.862627083999953, 49.992159096000087 ], [ -126.854012857999948, 49.992234812000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7803803", "BldgCostT": "4303746", "sL_LossRatio": "1", "sL_AssetLoss": "738.711", "sL_BldgLoss": "738.711", "sL_StrLoss": "738.711", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081F398373DB65FC0F1890A0F79FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.848458403000024, 49.986067501000115 ], [ -126.849320052999957, 49.986016505000052 ], [ -126.849325521999944, 49.986310426000109 ], [ -126.849311829, 49.986310532000054 ], [ -126.849317239999962, 49.98660132600007 ], [ -126.848984326999954, 49.986603902000063 ], [ -126.848995764999955, 49.987218833000028 ], [ -126.848794207999987, 49.987220392000019 ], [ -126.848808605999935, 49.987994636000053 ], [ -126.848612977999935, 49.987996147000096 ], [ -126.848618215, 49.988277841000034 ], [ -126.848428316999943, 49.98827930800006 ], [ -126.848432063999937, 49.988480855000063 ], [ -126.848433325999949, 49.988548745000045 ], [ -126.8482979399999, 49.988549791000011 ], [ -126.848302034, 49.988770047000095 ], [ -126.847919619999942, 49.988773002000102 ], [ -126.847931358999986, 49.989404855000032 ], [ -126.84774311699999, 49.989406308000078 ], [ -126.847748870999965, 49.989716059000038 ], [ -126.847647805999941, 49.989716839000067 ], [ -126.847653386999951, 49.990017261000091 ], [ -126.847528493999931, 49.990018225000064 ], [ -126.847534601999911, 49.990347163000102 ], [ -126.846350190999914, 49.990356299000069 ], [ -126.846099591999945, 49.989234993000125 ], [ -126.84609601399994, 49.988353409000091 ], [ -126.84620811799999, 49.988033825000116 ], [ -126.846400281999976, 49.987485997000107 ], [ -126.846808398999926, 49.986792494000071 ], [ -126.847627419999981, 49.986222805000047 ], [ -126.848458403000024, 49.986067501000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90238136", "BldgCostT": "61442079", "sL_LossRatio": "0.989947349188744", "sL_AssetLoss": "1899.996365", "sL_BldgLoss": "1880.896365", "sL_StrLoss": "1874.006365", "sL_NStrLoss": "6.89", "sL_ContLoss": "19.1", "geom_point": "0101000020E6100000C16F1A0D26B65FC0BF6B0A43E8FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.844131018999974, 49.990373383000097 ], [ -126.844096591999957, 49.980536066000077 ], [ -126.844093813999919, 49.979736159000048 ], [ -126.843367465999947, 49.979746477000084 ], [ -126.842704335999912, 49.979755902000065 ], [ -126.842628456999989, 49.978852424000124 ], [ -126.842628381999972, 49.978852000000103 ], [ -126.8425892, 49.978554797000079 ], [ -126.843096316999905, 49.97855090300002 ], [ -126.843081003999913, 49.979041898000055 ], [ -126.843216217999938, 49.979457806000021 ], [ -126.843557002999944, 49.979617308000122 ], [ -126.843662797999954, 49.979592394000043 ], [ -126.843768885999907, 49.979567396000107 ], [ -126.843765120999976, 49.979351003000041 ], [ -126.844188715999977, 49.979214199000069 ], [ -126.84419690499999, 49.978542444000034 ], [ -126.845195314999927, 49.978534761000084 ], [ -126.845260197999963, 49.978677307000055 ], [ -126.84500351299999, 49.979392293000068 ], [ -126.84534918199995, 49.979462103000046 ], [ -126.845469614999942, 49.979563189000046 ], [ -126.845293104999939, 49.980090110000091 ], [ -126.84596211799996, 49.980407696000057 ], [ -126.846968699999977, 49.980382084000112 ], [ -126.847438500999928, 49.979563204000087 ], [ -126.848142412999934, 49.979405103000047 ], [ -126.848602596999982, 49.97937801100008 ], [ -126.848698122999949, 49.9794336000001 ], [ -126.848980503999911, 49.979987611000055 ], [ -126.84891490199999, 49.98021970300011 ], [ -126.84869871899997, 49.980386398000043 ], [ -126.84825947499999, 49.98145879500003 ], [ -126.847738304999936, 49.981871796000036 ], [ -126.84748609799999, 49.982207893000023 ], [ -126.847539613999956, 49.982263492000051 ], [ -126.848620601999983, 49.982104012 ], [ -126.848922203999948, 49.982243501000049 ], [ -126.849734879999957, 49.983266672000099 ], [ -126.849388917999988, 49.983269350000093 ], [ -126.849392047999956, 49.983437532000046 ], [ -126.849272084999967, 49.983438460000073 ], [ -126.849295601999955, 49.984702466000037 ], [ -126.848638795999946, 49.985153193000023 ], [ -126.847907219999954, 49.985599001000026 ], [ -126.846812202999928, 49.986073203000075 ], [ -126.845985096, 49.986776811000027 ], [ -126.845500686999955, 49.987299505000024 ], [ -126.845342788999972, 49.987745311000047 ], [ -126.84535973700001, 49.987863272000048 ], [ -126.845640911999965, 49.98982030300003 ], [ -126.84556549200002, 49.990362345000058 ], [ -126.844976268999972, 49.990366882000089 ], [ -126.844131018999974, 49.990373383000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94390167", "BldgCostT": "65096667", "sL_LossRatio": "0.999662641654417", "sL_AssetLoss": "17131.9313", "sL_BldgLoss": "17126.1517", "sL_StrLoss": "17097.3817", "sL_NStrLoss": "28.77", "sL_ContLoss": "5.7796", "geom_point": "0101000020E6100000066A317858835FC06FE85E0E58E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.055019758999933, 49.787113488000088 ], [ -126.055021978999946, 49.787076889000083 ], [ -126.054921783999973, 49.787079533000089 ], [ -126.054906751999951, 49.78684072300009 ], [ -126.054619899999977, 49.786833426000094 ], [ -126.05462086199995, 49.786817577000107 ], [ -126.054488653999954, 49.78682106500009 ], [ -126.054472210000014, 49.786559777000029 ], [ -126.054220043999962, 49.786553363000138 ], [ -126.05423615399999, 49.786287937000033 ], [ -126.054038572999957, 49.786293149000045 ], [ -126.054037670999918, 49.786278831000061 ], [ -126.053820193999982, 49.786273297000115 ], [ -126.053835045000014, 49.786028622000053 ], [ -126.053605451999928, 49.786034678000057 ], [ -126.053603137999957, 49.785997884000068 ], [ -126.053420345999882, 49.78599323200006 ], [ -126.053422133999987, 49.785963808000105 ], [ -126.053286400999966, 49.785963874000124 ], [ -126.053286179999986, 49.785773204000051 ], [ -126.053172338999971, 49.785776206000065 ], [ -126.05315538799999, 49.785506758000089 ], [ -126.053032839999943, 49.785509990000044 ], [ -126.053020504999949, 49.785713165000089 ], [ -126.0527510899999, 49.785706307000048 ], [ -126.052773126999952, 49.78605662800004 ], [ -126.051524633999975, 49.786089543000124 ], [ -126.051515529999932, 49.78594473900008 ], [ -126.051339332999973, 49.785940252000074 ], [ -126.051346373999976, 49.785824346000034 ], [ -126.051091529999951, 49.785831062000099 ], [ -126.05108101399999, 49.78566378200005 ], [ -126.050939501999892, 49.785660178000107 ], [ -126.050955875999961, 49.785390704000044 ], [ -126.050539677999922, 49.785380103000072 ], [ -126.050544198999958, 49.785305695000034 ], [ -126.050225335999968, 49.785314096000029 ], [ -126.050211998999956, 49.785101864000048 ], [ -126.049106113999926, 49.785073684000075 ], [ -126.048127618999928, 49.785099449000043 ], [ -126.048124430000016, 49.785048659000054 ], [ -126.048058888999975, 49.785046987000086 ], [ -126.048072022999975, 49.784831019000059 ], [ -126.046862231, 49.784862864000033 ], [ -126.046879145999981, 49.785132313000119 ], [ -126.046803057999966, 49.785134315000079 ], [ -126.046793912999959, 49.78528462 ], [ -126.045129135999929, 49.785242145000076 ], [ -126.045149481999914, 49.784907926000116 ], [ -126.044781449999959, 49.784917606000093 ], [ -126.04476736699992, 49.784693129000118 ], [ -126.044745756999959, 49.784692578000069 ], [ -126.044748434999931, 49.784648579000041 ], [ -126.044348389999982, 49.784659099000088 ], [ -126.044282034999952, 49.783601175000044 ], [ -126.043979020999956, 49.783593439000086 ], [ -126.043979279, 49.783589226000089 ], [ -126.043864641999932, 49.783592239000058 ], [ -126.043847582999959, 49.783320192000104 ], [ -126.043579255999973, 49.783313341000031 ], [ -126.043614607999956, 49.782732911000089 ], [ -126.04418399399998, 49.782482494000121 ], [ -126.045192909999912, 49.782268104000096 ], [ -126.045837114999955, 49.782151104000057 ], [ -126.046061779999931, 49.782110311000132 ], [ -126.04612013299996, 49.782102852000023 ], [ -126.046308816999897, 49.782078731000119 ], [ -126.046808497999976, 49.782014664000016 ], [ -126.047424861999929, 49.782036875000067 ], [ -126.047880222999964, 49.782091543000035 ], [ -126.048362044999976, 49.78220375100004 ], [ -126.048633503999923, 49.782306761000072 ], [ -126.048882826999943, 49.782401368000151 ], [ -126.050109014999947, 49.783131003000037 ], [ -126.051635986999898, 49.784039556000089 ], [ -126.051745273999956, 49.784092010000023 ], [ -126.052799973999981, 49.784598365000129 ], [ -126.05375983499998, 49.785097016000101 ], [ -126.05414345299998, 49.784821504000071 ], [ -126.054525586999887, 49.784547102000026 ], [ -126.054564289999931, 49.784519299000074 ], [ -126.053503002999932, 49.783910012000078 ], [ -126.053425198999932, 49.783824682000073 ], [ -126.053407013999973, 49.783723905000024 ], [ -126.053448300999946, 49.78347300400003 ], [ -126.053507902999982, 49.783356994000052 ], [ -126.054200516999941, 49.78327119500004 ], [ -126.054285117999967, 49.78319019600012 ], [ -126.054326582999977, 49.783094890000065 ], [ -126.054359592999944, 49.782797214000077 ], [ -126.05366960799995, 49.782727389000051 ], [ -126.053226731, 49.782587692000099 ], [ -126.053214106000013, 49.782583686000059 ], [ -126.053048592999986, 49.782458723000019 ], [ -126.05283201599994, 49.782295190000106 ], [ -126.052498596999939, 49.782043610000088 ], [ -126.052365388999988, 49.781871359000085 ], [ -126.052349794999898, 49.781851194000069 ], [ -126.05234128799998, 49.781725297 ], [ -126.052636403999927, 49.781181102000041 ], [ -126.052784679999931, 49.780992092000076 ], [ -126.052890099999942, 49.780861700000116 ], [ -126.052946878999933, 49.78082596000008 ], [ -126.052982997999919, 49.780803204000101 ], [ -126.053528415999921, 49.780690490000083 ], [ -126.053951580999964, 49.780537402000078 ], [ -126.053982178999931, 49.780618302000072 ], [ -126.054130904999937, 49.780766596000049 ], [ -126.054311510999938, 49.780892509000068 ], [ -126.055183810999978, 49.781376707000092 ], [ -126.055365891999955, 49.78153309500005 ], [ -126.055459092999939, 49.781728194000088 ], [ -126.055501002, 49.781917086000099 ], [ -126.055473501999984, 49.782168908000052 ], [ -126.056028818999948, 49.782164091000062 ], [ -126.056277218999981, 49.782099202000126 ], [ -126.05648390499999, 49.781997504000103 ], [ -126.056637807999891, 49.781885013000057 ], [ -126.057655824, 49.782238795000062 ], [ -126.057672203999971, 49.782258956000135 ], [ -126.05793513899998, 49.781975524000103 ], [ -126.058259756, 49.781800734000107 ], [ -126.058255951999982, 49.781863493000081 ], [ -126.05834470699989, 49.781861149000079 ], [ -126.05835789299995, 49.782070425 ], [ -126.058659759999941, 49.782078093000081 ], [ -126.058647579999985, 49.782279094000017 ], [ -126.058973144, 49.782273865000086 ], [ -126.058835074999962, 49.782522554000103 ], [ -126.05883854699999, 49.785229505000117 ], [ -126.058301815999968, 49.785269695000103 ], [ -126.058002401999929, 49.78540640100011 ], [ -126.05731371899999, 49.785981804000066 ], [ -126.057294484999971, 49.786296491000087 ], [ -126.057383901999941, 49.786459530000059 ], [ -126.057384859999928, 49.786474724000108 ], [ -126.057193785999928, 49.786479769000103 ], [ -126.057137233999924, 49.78656605500008 ], [ -126.057133510999904, 49.786627452000154 ], [ -126.056717299999931, 49.786616872000081 ], [ -126.056684615999941, 49.787155822000074 ], [ -126.055019758999933, 49.787113488000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82263750", "BldgCostT": "55050000", "sL_LossRatio": "0.984134812674467", "sL_AssetLoss": "15755.78623", "sL_BldgLoss": "15505.81773", "sL_StrLoss": "15388.79573", "sL_NStrLoss": "117.022", "sL_ContLoss": "249.9685", "geom_point": "0101000020E6100000B16E071354835FC0399FBE8ECDE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.046511485999943, 49.780729694000065 ], [ -126.046129088999962, 49.780037402000119 ], [ -126.046120482999953, 49.77972710700007 ], [ -126.046221616, 49.779546291000045 ], [ -126.046203281999908, 49.779335001000042 ], [ -126.046069482999926, 49.778751394000075 ], [ -126.046023503999933, 49.778547203000073 ], [ -126.046026075999976, 49.77837640500011 ], [ -126.046208996999923, 49.778021993000031 ], [ -126.046498691999915, 49.777694489000098 ], [ -126.046717959999938, 49.777431078000063 ], [ -126.04684390299991, 49.77727970300009 ], [ -126.047006209999935, 49.777144797000098 ], [ -126.04717680199991, 49.777071892000031 ], [ -126.047240990999981, 49.777062329000067 ], [ -126.047502995999977, 49.777023188000108 ], [ -126.047873614999943, 49.777019392000042 ], [ -126.048113592999954, 49.776983291000128 ], [ -126.048321798999908, 49.776920312000108 ], [ -126.048624216999912, 49.776780697000071 ], [ -126.049954310999979, 49.777135392000083 ], [ -126.05020240099999, 49.776816002 ], [ -126.050522783999938, 49.776577492000051 ], [ -126.05069608699992, 49.776469491000128 ], [ -126.051013778999931, 49.776341697000113 ], [ -126.051362086999944, 49.776244403000184 ], [ -126.05214619499999, 49.776161292 ], [ -126.05281134699996, 49.776104324000073 ], [ -126.053234291999971, 49.776068101000064 ], [ -126.053876794999894, 49.775919388000041 ], [ -126.054122301999939, 49.775797906000079 ], [ -126.054380473999956, 49.775640071000055 ], [ -126.054455421999975, 49.775594272000063 ], [ -126.055204477999922, 49.776094901000079 ], [ -126.055663485999901, 49.776539303000042 ], [ -126.057159304000024, 49.777659130000124 ], [ -126.057160390999982, 49.778531412000056 ], [ -126.057207439999942, 49.778532607000066 ], [ -126.057200164999969, 49.778652631000064 ], [ -126.057308803999916, 49.77864976300004 ], [ -126.057318601999953, 49.778805325000107 ], [ -126.057607248999972, 49.778812661000089 ], [ -126.057601232999957, 49.778911936000029 ], [ -126.057741874999977, 49.778908221000066 ], [ -126.0577530899999, 49.779086258000113 ], [ -126.05800706199993, 49.779092711 ], [ -126.057969249999942, 49.779716694000093 ], [ -126.058074344999952, 49.779775065000088 ], [ -126.058207643999935, 49.780168265000029 ], [ -126.058187644999933, 49.780297665000056 ], [ -126.057928290999911, 49.780392560000074 ], [ -126.057925409999967, 49.780440091000052 ], [ -126.057838228999927, 49.780437876000079 ], [ -126.057843710000014, 49.780524904000046 ], [ -126.057545017999985, 49.780532794000067 ], [ -126.05750203800001, 49.780548519000085 ], [ -126.05746592099996, 49.781144363000095 ], [ -126.057488861999914, 49.781508560000113 ], [ -126.05786008099993, 49.781517994000104 ], [ -126.057854857999956, 49.781604192 ], [ -126.057911605999948, 49.781602693000075 ], [ -126.057923373999955, 49.78178949300014 ], [ -126.058259917999948, 49.781798045000087 ], [ -126.058259756, 49.781800734000107 ], [ -126.05793513899998, 49.781975524000103 ], [ -126.057672203999971, 49.782258956000135 ], [ -126.057655824, 49.782238795000062 ], [ -126.056637807999891, 49.781885013000057 ], [ -126.05648390499999, 49.781997504000103 ], [ -126.056277218999981, 49.782099202000126 ], [ -126.056028818999948, 49.782164091000062 ], [ -126.055473501999984, 49.782168908000052 ], [ -126.055501002, 49.781917086000099 ], [ -126.055459092999939, 49.781728194000088 ], [ -126.055365891999955, 49.78153309500005 ], [ -126.055183810999978, 49.781376707000092 ], [ -126.054311510999938, 49.780892509000068 ], [ -126.054130904999937, 49.780766596000049 ], [ -126.053982178999931, 49.780618302000072 ], [ -126.053951580999964, 49.780537402000078 ], [ -126.053528415999921, 49.780690490000083 ], [ -126.052982997999919, 49.780803204000101 ], [ -126.052946878999933, 49.78082596000008 ], [ -126.052890099999942, 49.780861700000116 ], [ -126.052784679999931, 49.780992092000076 ], [ -126.052636403999927, 49.781181102000041 ], [ -126.05234128799998, 49.781725297 ], [ -126.052349794999898, 49.781851194000069 ], [ -126.052365388999988, 49.781871359000085 ], [ -126.052498596999939, 49.782043610000088 ], [ -126.05283201599994, 49.782295190000106 ], [ -126.053048592999986, 49.782458723000019 ], [ -126.053214106000013, 49.782583686000059 ], [ -126.053226731, 49.782587692000099 ], [ -126.05366960799995, 49.782727389000051 ], [ -126.054359592999944, 49.782797214000077 ], [ -126.054326582999977, 49.783094890000065 ], [ -126.054285117999967, 49.78319019600012 ], [ -126.054200516999941, 49.78327119500004 ], [ -126.053507902999982, 49.783356994000052 ], [ -126.053448300999946, 49.78347300400003 ], [ -126.053407013999973, 49.783723905000024 ], [ -126.053425198999932, 49.783824682000073 ], [ -126.053503002999932, 49.783910012000078 ], [ -126.054564289999931, 49.784519299000074 ], [ -126.054525586999887, 49.784547102000026 ], [ -126.05414345299998, 49.784821504000071 ], [ -126.05375983499998, 49.785097016000101 ], [ -126.052799973999981, 49.784598365000129 ], [ -126.051745273999956, 49.784092010000023 ], [ -126.051635986999898, 49.784039556000089 ], [ -126.050109014999947, 49.783131003000037 ], [ -126.048882826999943, 49.782401368000151 ], [ -126.048633503999923, 49.782306761000072 ], [ -126.048362044999976, 49.78220375100004 ], [ -126.047880222999964, 49.782091543000035 ], [ -126.047424861999929, 49.782036875000067 ], [ -126.046808497999976, 49.782014664000016 ], [ -126.046938624999981, 49.781651288000027 ], [ -126.04734496399999, 49.781268914000044 ], [ -126.046739506999984, 49.781026411000063 ], [ -126.046615818999953, 49.78090951300004 ], [ -126.046541181999942, 49.780780889000049 ], [ -126.046511485999943, 49.780729694000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20553750", "BldgCostT": "14175000", "sL_LossRatio": "0.999734748135359", "sL_AssetLoss": "4039.9339", "sL_BldgLoss": "4038.8623", "sL_StrLoss": "4033", "sL_NStrLoss": "5.8623", "sL_ContLoss": "1.0716", "geom_point": "0101000020E6100000F822143AB3835FC0B5FB13641DE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.057040817999962, 49.773300808000066 ], [ -126.057151216999955, 49.772786307000061 ], [ -126.05715078299994, 49.772471607000085 ], [ -126.05710189, 49.772145112000068 ], [ -126.056937505999969, 49.771680304000014 ], [ -126.056226593999966, 49.770310997000109 ], [ -126.056109710999976, 49.769987300000011 ], [ -126.05600180499998, 49.769172493000063 ], [ -126.056027344999947, 49.76898825600005 ], [ -126.056207689999923, 49.769164676000109 ], [ -126.056208599999977, 49.769907181000121 ], [ -126.056966328999948, 49.76990678800005 ], [ -126.057236461999977, 49.770171029000089 ], [ -126.057352255999959, 49.770291185000112 ], [ -126.057353885999987, 49.771595007000066 ], [ -126.05811475699997, 49.771594605000061 ], [ -126.058080242999964, 49.771046566000102 ], [ -126.058104228000033, 49.771071454000101 ], [ -126.059356878999893, 49.77183919200008 ], [ -126.059393585999914, 49.772387085000027 ], [ -126.058998799999941, 49.772397517000101 ], [ -126.058964848999935, 49.771858622000074 ], [ -126.058767867999961, 49.771863828000065 ], [ -126.058769277999986, 49.772964215000101 ], [ -126.059432229999942, 49.772963856000111 ], [ -126.05970812399994, 49.777081273000128 ], [ -126.05971369299999, 49.777329754000085 ], [ -126.057671921999955, 49.777330851000038 ], [ -126.057223197999974, 49.776921 ], [ -126.055606512999987, 49.77587130300001 ], [ -126.055131415999966, 49.775464008000043 ], [ -126.054900496999949, 49.775322160000037 ], [ -126.055030054999946, 49.775242975000069 ], [ -126.055707818, 49.774828603000074 ], [ -126.055844887999982, 49.77474480000005 ], [ -126.056348192999934, 49.77433990500009 ], [ -126.05682207299999, 49.773759595000065 ], [ -126.057040817999962, 49.773300808000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24305084", "BldgCostT": "16498334", "sL_LossRatio": "0.999093416790223", "sL_AssetLoss": "5439.1036", "sL_BldgLoss": "5434.1726", "sL_StrLoss": "5411.2824", "sL_NStrLoss": "22.8902", "sL_ContLoss": "4.931", "geom_point": "0101000020E6100000CBFB935316835FC032EA31FCEDE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.043614607999956, 49.782732911000089 ], [ -126.043628492999943, 49.782504924000122 ], [ -126.04407743899999, 49.782516387000072 ], [ -126.044076401999931, 49.781436796000037 ], [ -126.043897278999978, 49.781432222000063 ], [ -126.043729466999963, 49.781436634000023 ], [ -126.043728921999929, 49.781427924000091 ], [ -126.043694137999964, 49.781427035 ], [ -126.04371124799999, 49.781146073000016 ], [ -126.043594309999946, 49.779281028000078 ], [ -126.043825190999954, 49.77927495800003 ], [ -126.04384182599992, 49.779001785000119 ], [ -126.043993837999963, 49.779005665000057 ], [ -126.043976625999946, 49.778731187000069 ], [ -126.044693018999951, 49.778712348000099 ], [ -126.04470691600001, 49.77848408600007 ], [ -126.044794849999931, 49.778486331000082 ], [ -126.044791934999978, 49.77843985100008 ], [ -126.045126925999952, 49.778431039000118 ], [ -126.045155852999983, 49.777955762000062 ], [ -126.045178392999958, 49.777956337000028 ], [ -126.045174231999965, 49.777890005000067 ], [ -126.045577278999971, 49.777879403000064 ], [ -126.045583714999978, 49.777773627000087 ], [ -126.045556522999917, 49.77734015900014 ], [ -126.045972612999961, 49.777329212000033 ], [ -126.045955707999951, 49.777059761000082 ], [ -126.04604406699994, 49.77705743700006 ], [ -126.046053699999973, 49.776899109000041 ], [ -126.046362897000023, 49.776906997000019 ], [ -126.046354888999957, 49.776779362000092 ], [ -126.046477951, 49.776776124000037 ], [ -126.046486215999963, 49.77664025200005 ], [ -126.046763376999948, 49.776647322000059 ], [ -126.046754067000023, 49.776498962000062 ], [ -126.046911827999949, 49.776494811000092 ], [ -126.046918726999962, 49.77638139400014 ], [ -126.047163849999905, 49.776387645000064 ], [ -126.047146882999982, 49.776117321000051 ], [ -126.046935116999975, 49.776111920000069 ], [ -126.046944712999931, 49.775954155000107 ], [ -126.046109853999923, 49.775976125000092 ], [ -126.046102884999982, 49.776090689000064 ], [ -126.044438422, 49.776048209000045 ], [ -126.044487631999985, 49.7752397900001 ], [ -126.044071523999932, 49.775229167000099 ], [ -126.04410433299995, 49.774690222000096 ], [ -126.043895543999966, 49.774684892000089 ], [ -126.043723221999954, 49.774689422000044 ], [ -126.043722660999947, 49.774680477000082 ], [ -126.043688231999937, 49.774679598000041 ], [ -126.043704033999958, 49.774420031000012 ], [ -126.043290263999907, 49.774430910000092 ], [ -126.043239596999967, 49.77362255500006 ], [ -126.043336, 49.773620022000081 ], [ -126.043337763999958, 49.773591081000099 ], [ -126.04389526599999, 49.773605319000069 ], [ -126.044487776999972, 49.773589737000066 ], [ -126.044437093999974, 49.772781384000012 ], [ -126.044637586999926, 49.772776112000045 ], [ -126.044668049999984, 49.772275589000124 ], [ -126.045084131999914, 49.772286211000079 ], [ -126.045149722999923, 49.771208318000042 ], [ -126.045171953999954, 49.771208885000078 ], [ -126.045167808999935, 49.771142794000127 ], [ -126.045571074999913, 49.771132186000081 ], [ -126.04558219099999, 49.770949464000061 ], [ -126.046824566999931, 49.770981162000055 ], [ -126.046775803999964, 49.770203952 ], [ -126.046755420999915, 49.770169723000045 ], [ -126.046463502999941, 49.770162276000143 ], [ -126.04646556699997, 49.770128339000095 ], [ -126.043723481999976, 49.770129472000065 ], [ -126.043720730999979, 49.767241631000068 ], [ -126.050243837999972, 49.76713463100009 ], [ -126.05024451300001, 49.767751568000079 ], [ -126.053795438999941, 49.76774987600006 ], [ -126.053836408999942, 49.767972696000051 ], [ -126.054678898999953, 49.76988390300005 ], [ -126.05445570199997, 49.77011180700007 ], [ -126.053790607999971, 49.770301187000079 ], [ -126.053003706999945, 49.770687207000094 ], [ -126.052224793999969, 49.770954905000032 ], [ -126.051909205999905, 49.771342294000121 ], [ -126.051461196999966, 49.771618596000046 ], [ -126.051388802999952, 49.772111406000079 ], [ -126.051464702999951, 49.772923193000082 ], [ -126.051666197999978, 49.773512797000116 ], [ -126.051964811999966, 49.773844689000015 ], [ -126.052280975999949, 49.774140898000056 ], [ -126.054455421999975, 49.775594272000063 ], [ -126.054380473999956, 49.775640071000055 ], [ -126.054122301999939, 49.775797906000079 ], [ -126.053876794999894, 49.775919388000041 ], [ -126.053234291999971, 49.776068101000064 ], [ -126.05281134699996, 49.776104324000073 ], [ -126.05214619499999, 49.776161292 ], [ -126.051362086999944, 49.776244403000184 ], [ -126.051013778999931, 49.776341697000113 ], [ -126.05069608699992, 49.776469491000128 ], [ -126.050522783999938, 49.776577492000051 ], [ -126.05020240099999, 49.776816002 ], [ -126.049954310999979, 49.777135392000083 ], [ -126.048624216999912, 49.776780697000071 ], [ -126.048321798999908, 49.776920312000108 ], [ -126.048113592999954, 49.776983291000128 ], [ -126.047873614999943, 49.777019392000042 ], [ -126.047502995999977, 49.777023188000108 ], [ -126.047240990999981, 49.777062329000067 ], [ -126.04717680199991, 49.777071892000031 ], [ -126.047006209999935, 49.777144797000098 ], [ -126.04684390299991, 49.77727970300009 ], [ -126.046717959999938, 49.777431078000063 ], [ -126.046498691999915, 49.777694489000098 ], [ -126.046208996999923, 49.778021993000031 ], [ -126.046026075999976, 49.77837640500011 ], [ -126.046023503999933, 49.778547203000073 ], [ -126.046069482999926, 49.778751394000075 ], [ -126.046203281999908, 49.779335001000042 ], [ -126.046221616, 49.779546291000045 ], [ -126.046120482999953, 49.77972710700007 ], [ -126.046129088999962, 49.780037402000119 ], [ -126.046511485999943, 49.780729694000065 ], [ -126.046541181999942, 49.780780889000049 ], [ -126.046615818999953, 49.78090951300004 ], [ -126.046739506999984, 49.781026411000063 ], [ -126.04734496399999, 49.781268914000044 ], [ -126.046938624999981, 49.781651288000027 ], [ -126.046808497999976, 49.782014664000016 ], [ -126.046308816999897, 49.782078731000119 ], [ -126.04612013299996, 49.782102852000023 ], [ -126.046061779999931, 49.782110311000132 ], [ -126.045837114999955, 49.782151104000057 ], [ -126.045192909999912, 49.782268104000096 ], [ -126.04418399399998, 49.782482494000121 ], [ -126.043614607999956, 49.782732911000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15652000", "BldgCostT": "10585000", "sL_LossRatio": "0.909105321423793", "sL_AssetLoss": "2706.14192", "sL_BldgLoss": "2460.16802", "sL_StrLoss": "2364.23512", "sL_NStrLoss": "95.9329", "sL_ContLoss": "245.9739", "geom_point": "0101000020E6100000A6FFEE1584835FC0A14B729FA0E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.052259057999976, 49.757893119000052 ], [ -126.052258883999983, 49.757741086000124 ], [ -126.051394132999974, 49.75774149700009 ], [ -126.051394033999884, 49.757653752000103 ], [ -126.051176193999979, 49.757653854000125 ], [ -126.050442496999921, 49.757271107000072 ], [ -126.050281954999974, 49.757161222000022 ], [ -126.050278790999954, 49.754274694000038 ], [ -126.049943168999945, 49.754283538000088 ], [ -126.049875099999909, 49.753199140000056 ], [ -126.050805312999969, 49.752917298000078 ], [ -126.051720909999958, 49.752463 ], [ -126.05364547799995, 49.752098395000097 ], [ -126.055266208999981, 49.751933188000095 ], [ -126.056782099999964, 49.751898985000068 ], [ -126.059005692999946, 49.752099805000057 ], [ -126.059226124999967, 49.752134598000083 ], [ -126.059227322999945, 49.75306329800005 ], [ -126.059805660999956, 49.753062982000131 ], [ -126.059810350999967, 49.756660375000074 ], [ -126.05780719799999, 49.756661454000081 ], [ -126.057808745999921, 49.757890323000112 ], [ -126.052259057999976, 49.757893119000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7987083", "BldgCostT": "5508333", "sL_LossRatio": "0.999764753384528", "sL_AssetLoss": "1467.82133", "sL_BldgLoss": "1467.47603", "sL_StrLoss": "1465.82513", "sL_NStrLoss": "1.6509", "sL_ContLoss": "0.3453", "geom_point": "0101000020E6100000F3034F087A875FC0C975CF91C7D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.11874307799998, 49.689667181000047 ], [ -126.118858990999982, 49.68770771700008 ], [ -126.115153956999961, 49.687711693000075 ], [ -126.115153842999973, 49.687666494000013 ], [ -126.114692239999968, 49.687666981000056 ], [ -126.114691703999966, 49.687452006000107 ], [ -126.11424863699996, 49.687452471000078 ], [ -126.114247705999958, 49.687078144000118 ], [ -126.113941845999989, 49.687078464000088 ], [ -126.113940968999955, 49.686724224000095 ], [ -126.113902966999973, 49.686724264000119 ], [ -126.11389405099996, 49.683126521000091 ], [ -126.11393265000001, 49.683126480000062 ], [ -126.113931477999984, 49.682654120000095 ], [ -126.114152792999931, 49.682653888000068 ], [ -126.11415179399998, 49.682251225000108 ], [ -126.114512517999941, 49.682250847000091 ], [ -126.114511699999952, 49.681922633000049 ], [ -126.114929642999954, 49.681922194000016 ], [ -126.114928900999956, 49.681625343000071 ], [ -126.115417571999942, 49.6816248270001 ], [ -126.11541699699994, 49.681395454000032 ], [ -126.116973425999944, 49.681393795000112 ], [ -126.117631609999989, 49.682025891000137 ], [ -126.11767328799999, 49.682225290000069 ], [ -126.117482098999972, 49.682446010000078 ], [ -126.116368715999968, 49.682750797000033 ], [ -126.116165584999948, 49.682880407000042 ], [ -126.115964993999967, 49.683478597000033 ], [ -126.115963922999953, 49.684189299000082 ], [ -126.115993209999914, 49.684387199000078 ], [ -126.11623829199999, 49.68447410600006 ], [ -126.116220004999917, 49.685307287000036 ], [ -126.116661062999967, 49.68632131300005 ], [ -126.118136093999951, 49.686363994000082 ], [ -126.119101631999982, 49.686391932000028 ], [ -126.120335630999961, 49.686608260000092 ], [ -126.120692396999942, 49.686651554000086 ], [ -126.120694063999977, 49.68728671800006 ], [ -126.120963477999979, 49.687293421000035 ], [ -126.120947547999947, 49.687562916000061 ], [ -126.121362935999954, 49.687573250000106 ], [ -126.121315152999941, 49.688381736000061 ], [ -126.120899757999922, 49.688371402000058 ], [ -126.120851966999965, 49.689179887000066 ], [ -126.120436565999967, 49.68916955100012 ], [ -126.120404698999948, 49.689708541000037 ], [ -126.11874307799998, 49.689667181000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20440834", "BldgCostT": "13833334", "sL_LossRatio": "0.999702408986151", "sL_AssetLoss": "3281.01305", "sL_BldgLoss": "3280.03665", "sL_StrLoss": "3275.29165", "sL_NStrLoss": "4.745", "sL_ContLoss": "0.9764", "geom_point": "0101000020E61000009945CDFC0F885FC0FF34C54E3ED74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.117151013999916, 49.680990993000123 ], [ -126.116945277999889, 49.679067793000065 ], [ -126.117298778999924, 49.678976698000028 ], [ -126.117408795999935, 49.678728791000076 ], [ -126.117809308999981, 49.67876440000007 ], [ -126.11784061699997, 49.679161798000088 ], [ -126.1176735, 49.679418189000017 ], [ -126.117707092000018, 49.679815512000054 ], [ -126.117813589999983, 49.679862491000122 ], [ -126.118252298999948, 49.679945098000118 ], [ -126.119409804999961, 49.679848309000093 ], [ -126.120574902999948, 49.67985110300009 ], [ -126.121344595999958, 49.680175814000016 ], [ -126.121858605999975, 49.680647288000081 ], [ -126.122418083999932, 49.680553304000036 ], [ -126.12445679399994, 49.679604689000058 ], [ -126.128735184, 49.679459497000018 ], [ -126.12905761699993, 49.679395398000047 ], [ -126.129245391000026, 49.679274306000067 ], [ -126.12926609199998, 49.67915751500005 ], [ -126.129241817999983, 49.678626296000033 ], [ -126.129139312999911, 49.678460462000039 ], [ -126.132903898999956, 49.678455938000049 ], [ -126.132914299999982, 49.682053703000101 ], [ -126.132678717999966, 49.682053990000078 ], [ -126.132682162999956, 49.683247206 ], [ -126.128759315, 49.683251910000095 ], [ -126.128760637999932, 49.683724104000092 ], [ -126.12872862099999, 49.683724143000056 ], [ -126.128729966, 49.684204505000061 ], [ -126.128449011999976, 49.684204836000035 ], [ -126.128450793999946, 49.684842309000054 ], [ -126.12290993199997, 49.684848697000071 ], [ -126.122907215999973, 49.683833175000089 ], [ -126.122746315000015, 49.683829175000085 ], [ -126.12275920899998, 49.682825830000034 ], [ -126.118792867999957, 49.682598677000065 ], [ -126.118779018999973, 49.682597896000047 ], [ -126.11841627599992, 49.682577095000092 ], [ -126.117424018999884, 49.681393312000083 ], [ -126.117568659999947, 49.681393155000109 ], [ -126.117575860999963, 49.681271469000151 ], [ -126.117316475999971, 49.681265007 ], [ -126.117170596999983, 49.681090962000042 ], [ -126.117176475999955, 49.680991627000083 ], [ -126.117151013999916, 49.680990993000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4079333", "BldgCostT": "2813333", "sL_LossRatio": "0.999696079180605", "sL_AssetLoss": "622.8596", "sL_BldgLoss": "622.6703", "sL_StrLoss": "621.4353", "sL_NStrLoss": "1.235", "sL_ContLoss": "0.1893", "geom_point": "0101000020E61000004AF4CF5FAA875FC05D4BAF6A9CD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.118005614, 49.692093593000052 ], [ -126.117703593999977, 49.692032395000041 ], [ -126.117541108999944, 49.692217498000069 ], [ -126.116955893999972, 49.692238891000095 ], [ -126.116434738999928, 49.692105953000102 ], [ -126.116431682999973, 49.690899905000087 ], [ -126.121973275999949, 49.690893847000027 ], [ -126.121982002999971, 49.694181773000054 ], [ -126.11943910399998, 49.69418229700009 ], [ -126.119106184999978, 49.694076688000052 ], [ -126.119211200999985, 49.69351780000013 ], [ -126.119137403999929, 49.693139 ], [ -126.118005614, 49.692093593000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5976417", "BldgCostT": "4121667", "sL_LossRatio": "0.999709775090219", "sL_AssetLoss": "1170.47155", "sL_BldgLoss": "1170.13185", "sL_StrLoss": "1168.00535", "sL_NStrLoss": "2.1265", "sL_ContLoss": "0.3397", "geom_point": "0101000020E6100000A6E549CA84835FC00315C05AD6E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.055160189, 49.769509395000092 ], [ -126.054697311999959, 49.768641992000035 ], [ -126.05472498499995, 49.767968396000079 ], [ -126.054620803999939, 49.767749468000048 ], [ -126.055283125999935, 49.767749134000049 ], [ -126.055283162999942, 49.767779282000042 ], [ -126.056205990999928, 49.767778811 ], [ -126.056206665999937, 49.768328772000103 ], [ -126.056207689999923, 49.769164676000109 ], [ -126.056027344999947, 49.76898825600005 ], [ -126.05600180499998, 49.769172493000063 ], [ -126.056109710999976, 49.769987300000011 ], [ -126.056226593999966, 49.770310997000109 ], [ -126.056937505999969, 49.771680304000014 ], [ -126.05710189, 49.772145112000068 ], [ -126.05715078299994, 49.772471607000085 ], [ -126.057151216999955, 49.772786307000061 ], [ -126.057040817999962, 49.773300808000066 ], [ -126.05682207299999, 49.773759595000065 ], [ -126.056348192999934, 49.77433990500009 ], [ -126.055844887999982, 49.77474480000005 ], [ -126.055707818, 49.774828603000074 ], [ -126.055030054999946, 49.775242975000069 ], [ -126.054900496999949, 49.775322160000037 ], [ -126.053390203999982, 49.774394396000112 ], [ -126.05265141199996, 49.773736391000078 ], [ -126.052526479999983, 49.773525601000074 ], [ -126.052450006999962, 49.773190985000035 ], [ -126.052525182999915, 49.772185495000109 ], [ -126.052608111999973, 49.771738310000039 ], [ -126.05276001599999, 49.771507494000048 ], [ -126.052976090999906, 49.771360806000068 ], [ -126.054651201999945, 49.77102470100008 ], [ -126.055231516, 49.770823897000106 ], [ -126.055439704999941, 49.770613092000097 ], [ -126.055160189, 49.769509395000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10424250", "BldgCostT": "5715000", "sL_LossRatio": "0.912962241071069", "sL_AssetLoss": "10.41502", "sL_BldgLoss": "9.50852", "sL_StrLoss": "2.24372", "sL_NStrLoss": "7.2648", "sL_ContLoss": "0.9065", "geom_point": "0101000020E6100000AE0A79A9BD835FC0A0590A2F5EE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.058080242999964, 49.771046566000102 ], [ -126.058047922999961, 49.770533369000084 ], [ -126.057631892999908, 49.770544358000038 ], [ -126.057564030999927, 49.769466566000105 ], [ -126.057148010999924, 49.769477555000073 ], [ -126.057114084999981, 49.76893865900005 ], [ -126.056282053999936, 49.768960628000073 ], [ -126.056238412999946, 49.76826721200014 ], [ -126.056231181999962, 49.768152284000131 ], [ -126.056298601999927, 49.768150504000026 ], [ -126.057063198999984, 49.768130315000107 ], [ -126.057046236999966, 49.767860866000063 ], [ -126.057462242999932, 49.767849879999986 ], [ -126.057445279, 49.767580432000088 ], [ -126.057861282999937, 49.767569444000046 ], [ -126.057844316999976, 49.767299996000126 ], [ -126.057888162, 49.767298838000059 ], [ -126.057909587999987, 49.766945137000079 ], [ -126.058325629999956, 49.766955709000044 ], [ -126.058341951, 49.766686233000129 ], [ -126.059515505999983, 49.766716047000038 ], [ -126.059890365999976, 49.766706138000103 ], [ -126.059908623999959, 49.766995922000085 ], [ -126.059989801999976, 49.766997984000035 ], [ -126.059950088999969, 49.76765402400008 ], [ -126.059958273999939, 49.767783928000028 ], [ -126.060374277999969, 49.767772930000071 ], [ -126.060392907999955, 49.768068553000063 ], [ -126.058104228000033, 49.771071454000101 ], [ -126.058080242999964, 49.771046566000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999680840076328", "sL_AssetLoss": "118.1226", "sL_BldgLoss": "118.0849", "sL_StrLoss": "118", "sL_NStrLoss": "0.0849", "sL_ContLoss": "0.0377", "geom_point": "0101000020E6100000552667EE82875FC02510A77ACFD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.117015008999971, 49.693139010000031 ], [ -126.11780909399999, 49.693060712000033 ], [ -126.118207212999948, 49.693358289000123 ], [ -126.11835000499994, 49.69377560500007 ], [ -126.118258430999916, 49.69449565200005 ], [ -126.116440797999957, 49.694497608000113 ], [ -126.116437735999952, 49.693289147000065 ], [ -126.117015008999971, 49.693139010000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752667", "BldgCostT": "5346667", "sL_LossRatio": "0.999620160276072", "sL_AssetLoss": "1264.4807", "sL_BldgLoss": "1264.0004", "sL_StrLoss": "1260.8214", "sL_NStrLoss": "3.179", "sL_ContLoss": "0.4803", "geom_point": "0101000020E6100000DAA4C3BFDF835FC089FB76AF66E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.058438761999938, 49.763505746000106 ], [ -126.058353930999928, 49.762158507000095 ], [ -126.057937973999969, 49.76216949600007 ], [ -126.057904047999969, 49.761630600000153 ], [ -126.05748809699999, 49.761641588000103 ], [ -126.057464461, 49.761266105000075 ], [ -126.057420344999926, 49.761264983000061 ], [ -126.05744194599994, 49.760908379000085 ], [ -126.057420256999961, 49.760563795000031 ], [ -126.057462887, 49.760562669000095 ], [ -126.05746931299997, 49.760456554000072 ], [ -126.057830718999924, 49.76046574 ], [ -126.057802277999983, 49.760013911000108 ], [ -126.057912922999961, 49.760010988000033 ], [ -126.057934258999964, 49.759658697000077 ], [ -126.05835023899995, 49.759669268000032 ], [ -126.058366555999982, 49.759399791000114 ], [ -126.058782534999978, 49.759410360000047 ], [ -126.05879884899997, 49.759140883 ], [ -126.060878729999956, 49.759193708000076 ], [ -126.060895031999962, 49.758924230000062 ], [ -126.061066929999953, 49.758928595000064 ], [ -126.061044885999976, 49.758578726000046 ], [ -126.06133300499998, 49.758571107000066 ], [ -126.061392504999958, 49.757587402000063 ], [ -126.061816896999986, 49.757598175000027 ], [ -126.063472325999939, 49.757640180000124 ], [ -126.063452072999922, 49.757975253000041 ], [ -126.063506447999941, 49.757973813000035 ], [ -126.06351952599999, 49.75818116 ], [ -126.064271687999963, 49.758200237000061 ], [ -126.064206551999959, 49.759278150000043 ], [ -126.06400500599996, 49.75927303800006 ], [ -126.064024334999971, 49.759579485000081 ], [ -126.063608402999932, 49.759590493000083 ], [ -126.063625395999978, 49.759859941000038 ], [ -126.063209459999896, 49.759870948000085 ], [ -126.063226450999963, 49.760140395000072 ], [ -126.062904059999966, 49.760148926000085 ], [ -126.062893451000022, 49.760324408000052 ], [ -126.062821304999929, 49.760322577000089 ], [ -126.062844491999954, 49.760690294000014 ], [ -126.062428548999975, 49.760701300000079 ], [ -126.062462522999965, 49.761240193000035 ], [ -126.062046575999929, 49.761251198000075 ], [ -126.062114517999973, 49.762328986000036 ], [ -126.061938681999948, 49.762333637000076 ], [ -126.061931093999988, 49.762459117000091 ], [ -126.061705709999927, 49.762453397000058 ], [ -126.061749515000017, 49.763148330000078 ], [ -126.061333550999947, 49.763159331000061 ], [ -126.061350531999892, 49.763428778000055 ], [ -126.061038640999968, 49.763437026000098 ], [ -126.061033866999978, 49.763515908000088 ], [ -126.059687226999984, 49.763481713000033 ], [ -126.059737585999954, 49.764281112000091 ], [ -126.059321611, 49.764292106000028 ], [ -126.059372528999958, 49.76510044900003 ], [ -126.05812458199992, 49.765133423000037 ], [ -126.058119778999966, 49.765057136000024 ], [ -126.058022792999978, 49.763516737000067 ], [ -126.058438761999938, 49.763505746000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59013998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.9995849801204", "sL_AssetLoss": "135.4152", "sL_BldgLoss": "135.359", "sL_StrLoss": "135", "sL_NStrLoss": "0.359", "sL_ContLoss": "0.0562", "geom_point": "0101000020E6100000457DF56567875FC0EEB986F80BD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.115947812999977, 49.679285705000048 ], [ -126.116156804999903, 49.679281408000072 ], [ -126.116308212999968, 49.680238488000093 ], [ -126.11641946, 49.680508555000067 ], [ -126.114864176999944, 49.680510205000118 ], [ -126.114863042999943, 49.680056227000065 ], [ -126.11552240499995, 49.679707302000068 ], [ -126.115947812999977, 49.679285705000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28368706", "BldgCostT": "15484714", "sL_LossRatio": "0.492277589031408", "sL_AssetLoss": "2116.5087", "sL_BldgLoss": "1041.9098", "sL_StrLoss": "634.0218", "sL_NStrLoss": "407.888", "sL_ContLoss": "1074.5989", "geom_point": "0101000020E6100000DF2EC93B667B5FC0E606431DD6274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.930761215999894, 50.309426093000127 ], [ -125.930926309999961, 50.309426196000125 ], [ -125.930922399999957, 50.311989813000125 ], [ -125.930920827999941, 50.313020911000116 ], [ -125.925303154999966, 50.31301726000008 ], [ -125.925308745, 50.309626848000093 ], [ -125.925309082999917, 50.3094225460001 ], [ -125.930761215999894, 50.309426093000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "625876033", "BldgCostT": "378698187", "sL_LossRatio": "0.759877340435062", "sL_AssetLoss": "31939.7187", "sL_BldgLoss": "24270.2685", "sL_StrLoss": "20204.6045", "sL_NStrLoss": "4065.664", "sL_ContLoss": "7669.4502", "geom_point": "0101000020E6100000D0AF434EC27A5FC084E1EA00882A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.90787857399998, 50.339748649000079 ], [ -125.908112684999978, 50.339517416000085 ], [ -125.908496872999933, 50.339223352000019 ], [ -125.909062698999904, 50.338790282000062 ], [ -125.909567907999957, 50.338436598000094 ], [ -125.908436590999912, 50.337791390000049 ], [ -125.907823003999937, 50.337523092000048 ], [ -125.90766871299995, 50.33742228900006 ], [ -125.907597204999945, 50.337318881000087 ], [ -125.907566591999981, 50.337185010000013 ], [ -125.907568953999984, 50.336491246000044 ], [ -125.907542824999965, 50.33642583699999 ], [ -125.907493595999952, 50.336310134000058 ], [ -125.907401707999924, 50.336186493000106 ], [ -125.907363860999951, 50.33613866200011 ], [ -125.908127759999957, 50.336139298000013 ], [ -125.908129873999954, 50.335097270000077 ], [ -125.912096007999978, 50.33510049000008 ], [ -125.912099631999965, 50.333233965000097 ], [ -125.912431140999971, 50.333234228000045 ], [ -125.912431634999933, 50.33297867400006 ], [ -125.913012063999972, 50.332979131000059 ], [ -125.913012421999952, 50.332792588000103 ], [ -125.913377007999941, 50.332792874000106 ], [ -125.91337742099995, 50.332577196000067 ], [ -125.914563597999987, 50.332578118000065 ], [ -125.914564606999988, 50.332042825000038 ], [ -125.916408539999964, 50.332044233000019 ], [ -125.916408844999921, 50.331878972000041 ], [ -125.917407231999945, 50.331879722000075 ], [ -125.917408444999964, 50.331213996 ], [ -125.918006754999979, 50.331214441000036 ], [ -125.918006754999979, 50.331214059000018 ], [ -125.917275806999896, 50.331213515000066 ], [ -125.917282374999942, 50.32761888400011 ], [ -125.917510290999971, 50.327619054000088 ], [ -125.917511177999984, 50.327131755000032 ], [ -125.915150475999937, 50.327129970000065 ], [ -125.915151524999928, 50.32657006600008 ], [ -125.91502350599994, 50.326569968000115 ], [ -125.915024377999913, 50.326106005000092 ], [ -125.914975733999967, 50.326105968000057 ], [ -125.914982481999971, 50.32251131400011 ], [ -125.916256788999959, 50.322512286000055 ], [ -125.916256831999959, 50.322488947000039 ], [ -125.918162021999962, 50.32249037200009 ], [ -125.918166716999906, 50.319891288000122 ], [ -125.918178080999979, 50.319891296000044 ], [ -125.918178831999953, 50.319476043000108 ], [ -125.92010628, 50.319900794000041 ], [ -125.921227592999941, 50.32030380300008 ], [ -125.922220188999958, 50.320917700000059 ], [ -125.922334221999947, 50.320940912 ], [ -125.923871297999952, 50.321253787000046 ], [ -125.925294745999906, 50.321406465000081 ], [ -125.92529115799999, 50.323581229000084 ], [ -125.925125566999967, 50.323581117000039 ], [ -125.925124780999965, 50.324056532000043 ], [ -125.924374229999955, 50.324056022000015 ], [ -125.924369911999989, 50.32664174500011 ], [ -125.923171829999916, 50.326640920000038 ], [ -125.92317176499999, 50.326679176000056 ], [ -125.921957827999961, 50.326678326000071 ], [ -125.92077069799997, 50.326677482000065 ], [ -125.920769913999962, 50.327124970000128 ], [ -125.921824677999922, 50.327125720000083 ], [ -125.923130615999952, 50.327126635000084 ], [ -125.923129793, 50.327611831000063 ], [ -125.923915112999936, 50.327612374000111 ], [ -125.923915214999937, 50.327551752000076 ], [ -125.929534689999983, 50.327555473000082 ], [ -125.929529094999936, 50.331150104000095 ], [ -125.929521340999926, 50.331150099000126 ], [ -125.929520333999989, 50.331796803000017 ], [ -125.923900334, 50.331793082000068 ], [ -125.923901317999977, 50.331206999000095 ], [ -125.923886554999953, 50.331206989000094 ], [ -125.923883680999921, 50.33291694300005 ], [ -125.92362382, 50.332916764000089 ], [ -125.923621842999978, 50.334088647000058 ], [ -125.923023494999981, 50.334088233000067 ], [ -125.923022263999897, 50.334812661000058 ], [ -125.922023812999967, 50.334811962000089 ], [ -125.922022665999989, 50.335477685000029 ], [ -125.921260552999968, 50.335477145000034 ], [ -125.921259568999986, 50.336042404000068 ], [ -125.918991329999983, 50.336040767000036 ], [ -125.918991232999971, 50.336095557000078 ], [ -125.919392322999926, 50.336095850000106 ], [ -125.919391986, 50.336284746000032 ], [ -125.923478171999989, 50.336287647000063 ], [ -125.923478064, 50.336351142000076 ], [ -125.923377817999906, 50.33657690200009 ], [ -125.921572289999958, 50.339429503000083 ], [ -125.921150110999974, 50.339880608000087 ], [ -125.91944099599999, 50.339879377000052 ], [ -125.91943987400002, 50.340510139000124 ], [ -125.913818791999987, 50.340505905000043 ], [ -125.913820351999973, 50.33968624900011 ], [ -125.913764942999933, 50.339686206000074 ], [ -125.913765086999959, 50.339610067000073 ], [ -125.91298763099995, 50.339609459000052 ], [ -125.912985239999927, 50.340853302000056 ], [ -125.912268364999932, 50.340852736000031 ], [ -125.912267537999952, 50.341279819000064 ], [ -125.911102306, 50.34127888900008 ], [ -125.911101128000013, 50.34187844700012 ], [ -125.910787901999953, 50.341878196000074 ], [ -125.910787430999932, 50.342117354000031 ], [ -125.910430113999936, 50.34211706600005 ], [ -125.910429632, 50.34236096200015 ], [ -125.909102293999936, 50.342359881000093 ], [ -125.909100629999898, 50.343188195000046 ], [ -125.908842423999928, 50.343187982000167 ], [ -125.908835821999929, 50.346465694000088 ], [ -125.906202903999969, 50.346463495000123 ], [ -125.90630300199993, 50.346117546000109 ], [ -125.906385197999924, 50.345833404000118 ], [ -125.906537694999926, 50.345509988000067 ], [ -125.906777414999922, 50.34513640299999 ], [ -125.906951311999961, 50.344639596000071 ], [ -125.906971314999964, 50.344486908000057 ], [ -125.90696915099997, 50.34445531600003 ], [ -125.906924053999916, 50.343790830000053 ], [ -125.90691934100002, 50.343721103000114 ], [ -125.906916781999954, 50.343683062000061 ], [ -125.906849133999941, 50.342686278000066 ], [ -125.906827998999958, 50.342374899000077 ], [ -125.906842946999944, 50.342083380000055 ], [ -125.906885111999955, 50.341260711000089 ], [ -125.90694047799991, 50.340982098000026 ], [ -125.907091615999917, 50.340645297000044 ], [ -125.907302976999958, 50.340348907000141 ], [ -125.907553703999895, 50.340069599000074 ], [ -125.90787857399998, 50.339748649000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21451750", "BldgCostT": "11905000", "sL_LossRatio": "0.995606088707823", "sL_AssetLoss": "1313.4084", "sL_BldgLoss": "1307.6374", "sL_StrLoss": "1262.6374", "sL_NStrLoss": "45", "sL_ContLoss": "5.771", "geom_point": "0101000020E61000003EFB3EDA477A5FC08A140CDF292C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.908868438999903, 50.343246606000015 ], [ -125.91330149099997, 50.343250167000058 ], [ -125.912544908999976, 50.343757693000057 ], [ -125.912285295999979, 50.34409669700009 ], [ -125.912107090999939, 50.344650693000055 ], [ -125.912123506999961, 50.345837109000087 ], [ -125.912883747999899, 50.346844403000041 ], [ -125.908861201999954, 50.346841165000114 ], [ -125.908868438999903, 50.343246606000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197804010", "BldgCostT": "116350430", "sL_LossRatio": "0.78888420361155", "sL_AssetLoss": "10578.97769", "sL_BldgLoss": "8345.58839", "sL_StrLoss": "7287.05979", "sL_NStrLoss": "1058.5286", "sL_ContLoss": "2233.3893", "geom_point": "0101000020E6100000C717D59E697A5FC0FCCF26C9EB264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.910045372999932, 50.306559390000082 ], [ -125.910049804, 50.304327747000137 ], [ -125.91566639700001, 50.304332172000038 ], [ -125.915666023999947, 50.304532979000079 ], [ -125.916550475999912, 50.304533650000096 ], [ -125.916550249999943, 50.304656078000015 ], [ -125.917545342999972, 50.30465682400007 ], [ -125.917544249999963, 50.305257216000079 ], [ -125.919046688999941, 50.305258325000075 ], [ -125.919029502999976, 50.304977794000088 ], [ -125.91945022699997, 50.304967221000048 ], [ -125.919433717999965, 50.304697764000075 ], [ -125.919012994999989, 50.304708337000129 ], [ -125.918996487999891, 50.304438880000099 ], [ -125.918575764999986, 50.304449451000046 ], [ -125.918559260999942, 50.30417999400003 ], [ -125.918138541999951, 50.304190564000081 ], [ -125.918122041999965, 50.303921107000043 ], [ -125.916859887999948, 50.303952807000016 ], [ -125.916843394999972, 50.303683348000092 ], [ -125.916001963, 50.30370447300006 ], [ -125.915985473999953, 50.303435016000037 ], [ -125.915202946999941, 50.303454657000081 ], [ -125.915202815999947, 50.303524731000032 ], [ -125.914194084999934, 50.303523953000081 ], [ -125.914193397999952, 50.303886755000079 ], [ -125.90910009699995, 50.303882687000055 ], [ -125.909094942999943, 50.306451243000026 ], [ -125.90868859699999, 50.306405002000126 ], [ -125.906998700999949, 50.306358003000121 ], [ -125.905726522999956, 50.306443404000014 ], [ -125.90347725099997, 50.306839107000037 ], [ -125.903483371999982, 50.303966257000056 ], [ -125.904785600999944, 50.303660489000109 ], [ -125.905334287999921, 50.30344830899999 ], [ -125.905496402999944, 50.303332116000021 ], [ -125.908577964999964, 50.303334705000111 ], [ -125.908583712999985, 50.30048578500007 ], [ -125.912400007999935, 50.299262956000121 ], [ -125.912703198999935, 50.299184162000088 ], [ -125.91304583699997, 50.297419539000053 ], [ -125.912998827999957, 50.297062725000046 ], [ -125.912983207999929, 50.297033424000084 ], [ -125.913065860999978, 50.297031351000037 ], [ -125.913082330999927, 50.29730080900007 ], [ -125.913502990999959, 50.297290260000089 ], [ -125.913585351999956, 50.298637552000059 ], [ -125.913164679999923, 50.298648103000069 ], [ -125.91319762099999, 50.299187020000048 ], [ -125.913618297999946, 50.299176469000074 ], [ -125.913620227999985, 50.299208043000128 ], [ -125.913637657999956, 50.299493137000113 ], [ -125.914355248999982, 50.29949369500013 ], [ -125.914354425999974, 50.299929315000071 ], [ -125.91520954299996, 50.299929974000086 ], [ -125.915204966999966, 50.3023751200001 ], [ -125.917181629999973, 50.302325497000048 ], [ -125.91719812599996, 50.30259495500006 ], [ -125.918039536999984, 50.302573821000088 ], [ -125.918056035999911, 50.302843278000083 ], [ -125.918897450999978, 50.302822138000138 ], [ -125.918913956999987, 50.303091595000076 ], [ -125.919334666999944, 50.303081023000054 ], [ -125.919351173999956, 50.30335048000007 ], [ -125.919771884999989, 50.303339905000058 ], [ -125.919804906999943, 50.303878819000069 ], [ -125.920225622999951, 50.3038682440001 ], [ -125.920242134999967, 50.304137700000062 ], [ -125.920662852999953, 50.304127123000107 ], [ -125.920694290999947, 50.304640006000092 ], [ -125.920712402999968, 50.30493549300008 ], [ -125.921094030999981, 50.304925897000025 ], [ -125.921133128999941, 50.304924913000036 ], [ -125.92113498399999, 50.3049551860001 ], [ -125.921182687999945, 50.305733283000066 ], [ -125.920865606999925, 50.30574125600004 ], [ -125.920861938999948, 50.307841636000013 ], [ -125.920604116999982, 50.307869104000154 ], [ -125.917381765999906, 50.307797311000058 ], [ -125.917215276999912, 50.307793599000078 ], [ -125.911742718999932, 50.306752504000031 ], [ -125.910045372999932, 50.306559390000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219803461", "BldgCostT": "142874960", "sL_LossRatio": "0.830840882098168", "sL_AssetLoss": "9114.63904", "sL_BldgLoss": "7572.81474", "sL_StrLoss": "6438.85674", "sL_NStrLoss": "1133.958", "sL_ContLoss": "1541.8243", "geom_point": "0101000020E6100000B4DB1597F67A5FC02CF4245D71284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.918179863999953, 50.318904341000035 ], [ -125.918184330999964, 50.316431682000058 ], [ -125.91973199099999, 50.316432814000088 ], [ -125.919732324999984, 50.316244433000058 ], [ -125.919463943000011, 50.31628496600009 ], [ -125.91936864399996, 50.316034003000063 ], [ -125.91928568799996, 50.316036088000047 ], [ -125.9192695699999, 50.31577310100004 ], [ -125.919151041999939, 50.315460965000064 ], [ -125.919247010999968, 50.31540500800007 ], [ -125.919219630999962, 50.314958263000129 ], [ -125.919378602999956, 50.314954267000083 ], [ -125.919355068999948, 50.31488522000005 ], [ -125.916678497999982, 50.314883237000068 ], [ -125.916685107999939, 50.311288531000102 ], [ -125.916691606999933, 50.311288536000063 ], [ -125.918792223999915, 50.311290098000072 ], [ -125.921034441999979, 50.311291721000046 ], [ -125.922302565999956, 50.311292619000078 ], [ -125.922300376999942, 50.312568206000051 ], [ -125.922296398999947, 50.314887325000029 ], [ -125.92073525399995, 50.314886217000087 ], [ -125.920824852999885, 50.315100804000039 ], [ -125.925352283, 50.315103951 ], [ -125.925349677, 50.316685233000108 ], [ -125.925811960999965, 50.316685543000119 ], [ -125.925806073, 50.320280224000037 ], [ -125.92529660400001, 50.320279881000097 ], [ -125.925295480999935, 50.320960677000095 ], [ -125.924674791999934, 50.320865014000077 ], [ -125.923189592999933, 50.320453414000021 ], [ -125.922694740999972, 50.320233798000096 ], [ -125.92172949399999, 50.319805410000065 ], [ -125.920047303999922, 50.319182986000044 ], [ -125.918571803999953, 50.318922385000135 ], [ -125.918179863999953, 50.318904341000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6734250", "BldgCostT": "3645000", "sL_LossRatio": "0.997734029224477", "sL_AssetLoss": "2453.4297", "sL_BldgLoss": "2447.8703", "sL_StrLoss": "2434.0783", "sL_NStrLoss": "13.792", "sL_ContLoss": "5.5594", "geom_point": "0101000020E61000002785DCB9AE795FC0A0F2753A0C274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.901596401999981, 50.30413619400008 ], [ -125.90292049899989, 50.304024198 ], [ -125.902917347999917, 50.305494338000059 ], [ -125.900771903999953, 50.305492435000076 ], [ -125.900769913999966, 50.30640098800005 ], [ -125.89947559299999, 50.305960604000099 ], [ -125.899447520999985, 50.305728495000018 ], [ -125.899659791999952, 50.305308294000092 ], [ -125.900481318999965, 50.304505099000096 ], [ -125.900958905999929, 50.304278601000114 ], [ -125.901596401999981, 50.30413619400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1543500", "BldgCostT": "855000", "sL_LossRatio": "0.268399750318457", "sL_AssetLoss": "354.051", "sL_BldgLoss": "95.0272", "sL_StrLoss": "0.1412", "sL_NStrLoss": "94.886", "sL_ContLoss": "259.0238", "geom_point": "0101000020E6100000B59398D2807A5FC0C263E4D1322C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.91431361399998, 50.343695094000061 ], [ -125.914489212999982, 50.343594392000092 ], [ -125.91448307099995, 50.34684565000002 ], [ -125.914193845999989, 50.346845426000122 ], [ -125.913889708999974, 50.346422391000139 ], [ -125.913573101999944, 50.345621995000045 ], [ -125.91356868299999, 50.345099296000093 ], [ -125.913740491999988, 50.34445698800009 ], [ -125.91431361399998, 50.343695094000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3205417", "BldgCostT": "1791667", "sL_LossRatio": "0.419643089641996", "sL_AssetLoss": "537.6364", "sL_BldgLoss": "225.6154", "sL_StrLoss": "112.0824", "sL_NStrLoss": "113.533", "sL_ContLoss": "312.021", "geom_point": "0101000020E6100000F18E6356357A5FC065FDC11BAD254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.912556409999965, 50.296430643000114 ], [ -125.911621220999947, 50.295800846000063 ], [ -125.910520340999966, 50.295195942000056 ], [ -125.908495661999922, 50.294112446000049 ], [ -125.90620279299999, 50.292885319000042 ], [ -125.907754929, 50.29284647500009 ], [ -125.907771366999924, 50.293115934000042 ], [ -125.908191991999971, 50.293105404000123 ], [ -125.908208429999917, 50.293374864000064 ], [ -125.908629057999988, 50.293364332000074 ], [ -125.908645498999988, 50.293633792000051 ], [ -125.909066129, 50.293623258000068 ], [ -125.909082574999957, 50.293892718000102 ], [ -125.909503205999968, 50.293882183000122 ], [ -125.909519652999947, 50.29415164200001 ], [ -125.909940286999969, 50.294141106000055 ], [ -125.909956735999984, 50.294410565000064 ], [ -125.910377372999903, 50.294400027000037 ], [ -125.910393824999986, 50.294669486000039 ], [ -125.911235100999974, 50.294648404000085 ], [ -125.911268015999894, 50.295187323000079 ], [ -125.911688659000021, 50.29517677800014 ], [ -125.911705118999919, 50.295446238000089 ], [ -125.912125762999921, 50.295435693000073 ], [ -125.912158688999938, 50.295974611000076 ], [ -125.912579337999915, 50.295964065000078 ], [ -125.912611688999974, 50.296493462000079 ], [ -125.912556409999965, 50.296430643000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.998482377315004", "sL_AssetLoss": "476.403", "sL_BldgLoss": "475.68", "sL_StrLoss": "471", "sL_NStrLoss": "4.68", "sL_ContLoss": "0.723", "geom_point": "0101000020E61000000FC3BB1AA87A5FC04F17EFE87B2C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.914675534999944, 50.347238012000084 ], [ -125.91759168599999, 50.347240221000042 ], [ -125.917590299, 50.348002589000046 ], [ -125.917216716999988, 50.347940606000044 ], [ -125.916610306999971, 50.347920700000024 ], [ -125.915105797999942, 50.347445006000029 ], [ -125.914675534999944, 50.347238012000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128614807", "BldgCostT": "81430602", "sL_LossRatio": "0.756778200864966", "sL_AssetLoss": "5303.95797", "sL_BldgLoss": "4013.91977", "sL_StrLoss": "3294.96477", "sL_NStrLoss": "718.955", "sL_ContLoss": "1290.0382", "geom_point": "0101000020E61000002FEA51C00F7B5FC01554C853DE2D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.926314045999959, 50.361492810000108 ], [ -125.925394886000035, 50.36138160500014 ], [ -125.923579783999941, 50.361380411000063 ], [ -125.921741056999934, 50.361464572000088 ], [ -125.921530488999949, 50.361474206 ], [ -125.92117984399999, 50.361490261000043 ], [ -125.920700287000017, 50.361512213000012 ], [ -125.920346, 50.361494886000116 ], [ -125.92010122799999, 50.361462268000132 ], [ -125.919750919999956, 50.361415576000105 ], [ -125.919702202999972, 50.361409088000123 ], [ -125.919056750999943, 50.361306114000087 ], [ -125.918828230999978, 50.361269668000048 ], [ -125.918783503999961, 50.361262530000076 ], [ -125.919083692999934, 50.357321893000055 ], [ -125.919471594999919, 50.35675361300013 ], [ -125.920292295999943, 50.356139801000062 ], [ -125.920810751999937, 50.355882893000071 ], [ -125.920807883999899, 50.357521966000022 ], [ -125.920287587999894, 50.357521592000104 ], [ -125.920286920999928, 50.35790030400009 ], [ -125.921238659999972, 50.357900986000075 ], [ -125.92124254399999, 50.355668926000071 ], [ -125.921861489, 50.355362212000102 ], [ -125.922606608999914, 50.355145698000051 ], [ -125.925668330999912, 50.354546181000053 ], [ -125.926900670999956, 50.354547001000157 ], [ -125.926899979, 50.354975400000122 ], [ -125.926903197999962, 50.354975401000054 ], [ -125.926902324999986, 50.355515474000065 ], [ -125.928033703, 50.355486971000047 ], [ -125.928036652999964, 50.355534870000028 ], [ -125.92810005599992, 50.356564780000049 ], [ -125.927257699999956, 50.356586003000089 ], [ -125.927274282999946, 50.356855456000119 ], [ -125.926900144999976, 50.356864880000082 ], [ -125.926898878000017, 50.357650205000034 ], [ -125.925501253999983, 50.35765 ], [ -125.925512386999984, 50.35743670600008 ], [ -125.925761792999978, 50.357077413000056 ], [ -125.926005377999957, 50.35683499400006 ], [ -125.926259107999954, 50.356638730000043 ], [ -125.926441797999956, 50.356497406000116 ], [ -125.926871811999931, 50.356272469000046 ], [ -125.927238093999946, 50.35608090500007 ], [ -125.92754769599999, 50.355872703000081 ], [ -125.927307392, 50.355797893 ], [ -125.926822520999949, 50.355739193000026 ], [ -125.926178801, 50.355693811 ], [ -125.925849791999951, 50.355715194000055 ], [ -125.925202903999931, 50.355884606000131 ], [ -125.924919437999918, 50.35603605200005 ], [ -125.924890508999937, 50.356051504000121 ], [ -125.924604784999971, 50.356284099000035 ], [ -125.9244455899999, 50.356469990000022 ], [ -125.924375096999967, 50.356625396000076 ], [ -125.924400095999957, 50.356775506000076 ], [ -125.924577978999977, 50.357153018000069 ], [ -125.925124967999977, 50.358787097000111 ], [ -125.926452265999956, 50.361286211000021 ], [ -125.926531957999941, 50.361557612000077 ], [ -125.926314045999959, 50.361492810000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21618305", "BldgCostT": "11842266", "sL_LossRatio": "0.996120246865927", "sL_AssetLoss": "1695.3656", "sL_BldgLoss": "1688.788", "sL_StrLoss": "1667.749", "sL_NStrLoss": "21.039", "sL_ContLoss": "6.5776", "geom_point": "0101000020E610000097B1DB46877A5FC0D7F0DBADB82C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.911962775999953, 50.350830434000045 ], [ -125.911969767999949, 50.34723589400005 ], [ -125.913179950999933, 50.347236849000112 ], [ -125.913303702999897, 50.347400810000117 ], [ -125.914333899999974, 50.34816560900002 ], [ -125.915297198999937, 50.348537389000128 ], [ -125.917386182999962, 50.348422 ], [ -125.91758947699999, 50.348453243000058 ], [ -125.917585141999965, 50.350834762 ], [ -125.911962775999953, 50.350830434000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162428553", "BldgCostT": "98828746", "sL_LossRatio": "0.812483223421382", "sL_AssetLoss": "10449.0912", "sL_BldgLoss": "8489.7113", "sL_StrLoss": "7591.7973", "sL_NStrLoss": "897.914", "sL_ContLoss": "1959.3799", "geom_point": "0101000020E6100000F7D50AAA787A5FC0E240D509642D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.916247556999949, 50.360857852000031 ], [ -125.916250542999961, 50.359244843000049 ], [ -125.913409141999978, 50.359242659000103 ], [ -125.913336416999968, 50.359092990000072 ], [ -125.91278539599989, 50.356169411000032 ], [ -125.912547101999962, 50.355794402000036 ], [ -125.912287597999963, 50.355495 ], [ -125.912050857999958, 50.355287058000059 ], [ -125.91190871699996, 50.355162197000048 ], [ -125.911824842000016, 50.355113764000073 ], [ -125.910576206999906, 50.354392812000086 ], [ -125.910370282999978, 50.354285367000095 ], [ -125.909496295999944, 50.353829407000056 ], [ -125.909163624999962, 50.353654485000114 ], [ -125.909465537999935, 50.353654733000077 ], [ -125.90946608900002, 50.353378963000068 ], [ -125.9093555199999, 50.353378872000093 ], [ -125.909355472999934, 50.353401766000076 ], [ -125.908813303999949, 50.353401321000028 ], [ -125.908791298999958, 50.353382658000022 ], [ -125.908718596999933, 50.353321014000066 ], [ -125.908436713999905, 50.353029600000077 ], [ -125.908303327999974, 50.352859496000093 ], [ -125.907417395999971, 50.351729393000056 ], [ -125.907258013000018, 50.351612520000074 ], [ -125.90710947, 50.351503597000047 ], [ -125.906773190999928, 50.351257015000037 ], [ -125.906108010999944, 50.350767594000011 ], [ -125.905706672999926, 50.350394290000089 ], [ -125.90561016299992, 50.350232830000088 ], [ -125.905475573999922, 50.350007696000027 ], [ -125.905428289999946, 50.349801004000092 ], [ -125.905436489999914, 50.349242098000069 ], [ -125.90547413699997, 50.349075615000025 ], [ -125.908617257999964, 50.34907825300013 ], [ -125.908617, 50.349205591000072 ], [ -125.910352394999933, 50.349207009000068 ], [ -125.910351249999934, 50.349785148000116 ], [ -125.911149500999926, 50.349785791000066 ], [ -125.911143554999967, 50.352814201000143 ], [ -125.915089832999968, 50.352817298000069 ], [ -125.915087678999924, 50.353964807000054 ], [ -125.915191347999979, 50.353964886000057 ], [ -125.915191425999922, 50.35392329000009 ], [ -125.919079658, 50.353926200000068 ], [ -125.919073342999951, 50.353823315000092 ], [ -125.91954913299999, 50.353811362000087 ], [ -125.920251244, 50.353459266000051 ], [ -125.921061042999924, 50.354033666000085 ], [ -125.921099942999959, 50.354061365000064 ], [ -125.92081370899993, 50.354193481000102 ], [ -125.920812218, 50.355045540000042 ], [ -125.919981710999977, 50.355446201000056 ], [ -125.918728788999914, 50.356322089000088 ], [ -125.918161400999963, 50.358072411000094 ], [ -125.918059504999988, 50.359848403000029 ], [ -125.917814439, 50.361107889000046 ], [ -125.91780570499995, 50.361106495000065 ], [ -125.917517216, 50.361060473000109 ], [ -125.916247556999949, 50.360857852000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31387699", "BldgCostT": "16632212", "sL_LossRatio": "0.885409394530508", "sL_AssetLoss": "3356.9916", "sL_BldgLoss": "2972.3119", "sL_StrLoss": "2788.9549", "sL_NStrLoss": "183.357", "sL_ContLoss": "384.6797", "geom_point": "0101000020E610000091171DB9837A5FC0E036099483274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.910575790999971, 50.309933271000027 ], [ -125.910579758999944, 50.307922919000092 ], [ -125.910042665999924, 50.30792248400013 ], [ -125.910044614999919, 50.306940804000064 ], [ -125.910196682999981, 50.306951896000022 ], [ -125.914783095999937, 50.307755114000059 ], [ -125.917103907999945, 50.308282083000066 ], [ -125.917414086999941, 50.308284203000042 ], [ -125.920448998999959, 50.308304903000092 ], [ -125.920861220999981, 50.30825185900003 ], [ -125.920860169999983, 50.308854375000038 ], [ -125.920563366999943, 50.308854162000031 ], [ -125.920562778999965, 50.309190082000043 ], [ -125.917572111000013, 50.309187894000111 ], [ -125.916194467999944, 50.309186860000167 ], [ -125.916192955999946, 50.310004491000036 ], [ -125.91087642799999, 50.310000335000034 ], [ -125.910575658999932, 50.310000092000024 ], [ -125.910575790999971, 50.309933271000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60622543", "BldgCostT": "33157908", "sL_LossRatio": "0.675275167929301", "sL_AssetLoss": "5739.3498", "sL_BldgLoss": "3875.6404", "sL_StrLoss": "3181.5564", "sL_NStrLoss": "694.084", "sL_ContLoss": "1863.7094", "geom_point": "0101000020E61000007303FC22BA7B5FC002B1C79F83294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.933570342999971, 50.326548839000061 ], [ -125.933570663999944, 50.326330280000043 ], [ -125.933222864999934, 50.326330071000051 ], [ -125.933222845000017, 50.326343821000094 ], [ -125.927603518999931, 50.326340288000068 ], [ -125.927609265999962, 50.322745635000096 ], [ -125.928447787999943, 50.32274618100007 ], [ -125.928447832999936, 50.322717356000112 ], [ -125.929462321999935, 50.322718008000052 ], [ -125.92946239799997, 50.322670382000126 ], [ -125.932258591999982, 50.322672129000075 ], [ -125.932259626999951, 50.321979150000075 ], [ -125.93787841299995, 50.321982448000064 ], [ -125.937878176, 50.322154924000067 ], [ -125.938476426999955, 50.322155259000056 ], [ -125.93848540099998, 50.322216598000075 ], [ -125.938487785999968, 50.323602298000068 ], [ -125.93802559199996, 50.325691609000074 ], [ -125.938000497999965, 50.326551410000022 ], [ -125.933570342999971, 50.326548839000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181818922", "BldgCostT": "109907537", "sL_LossRatio": "0.835386758552686", "sL_AssetLoss": "11730.0108", "sL_BldgLoss": "9799.0957", "sL_StrLoss": "8769.9437", "sL_NStrLoss": "1029.152", "sL_ContLoss": "1930.9151", "geom_point": "0101000020E6100000E16C848F12795FC08B047D96A5264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.887754090999977, 50.304569425000047 ], [ -125.887756694999965, 50.303518441000115 ], [ -125.887238536999973, 50.303517914000082 ], [ -125.887245040999943, 50.300904035 ], [ -125.88621094599992, 50.300902976000046 ], [ -125.886094761999971, 50.300516446000088 ], [ -125.886112005999948, 50.300503693000081 ], [ -125.88697509, 50.300100991000079 ], [ -125.887154036999945, 50.299969722000057 ], [ -125.887274672000032, 50.299881191000061 ], [ -125.887060544999883, 50.29976225700004 ], [ -125.886423602, 50.299408495000108 ], [ -125.885882212999945, 50.299187702000026 ], [ -125.885559600999954, 50.299092087000062 ], [ -125.885302989999957, 50.299025396000062 ], [ -125.885008085999942, 50.298948695000028 ], [ -125.883985132999939, 50.298790306000043 ], [ -125.884111285999978, 50.296089907000074 ], [ -125.884040222999943, 50.296065114000037 ], [ -125.885953802999921, 50.296067104000038 ], [ -125.885954283999965, 50.295876117000063 ], [ -125.886061962999975, 50.295876228000068 ], [ -125.886062799999934, 50.295543218000084 ], [ -125.886170700999983, 50.295543330000044 ], [ -125.886173269999944, 50.29452057200006 ], [ -125.887645911999968, 50.296824188000095 ], [ -125.890078892999952, 50.296817595000043 ], [ -125.890085809999931, 50.297443997000066 ], [ -125.889824222999906, 50.298789998000039 ], [ -125.889840507999963, 50.298794439000083 ], [ -125.890421921, 50.298952384000117 ], [ -125.890806188999974, 50.299137 ], [ -125.891114407999936, 50.299386183000067 ], [ -125.891307502999979, 50.299677592000066 ], [ -125.891417403999938, 50.29999658600007 ], [ -125.891472009999973, 50.300155 ], [ -125.89160810599995, 50.30078330200007 ], [ -125.89193305799995, 50.30135291800012 ], [ -125.89790874, 50.3039051310001 ], [ -125.900342361999932, 50.303125770000101 ], [ -125.901636554999953, 50.302711267000127 ], [ -125.902924194999926, 50.302298833000073 ], [ -125.902921427999971, 50.303590166000056 ], [ -125.901372287999919, 50.303673303000082 ], [ -125.901011612, 50.303745994000096 ], [ -125.89915321099997, 50.305060496000053 ], [ -125.898745715999965, 50.30574559800003 ], [ -125.89870608299999, 50.306034702000076 ], [ -125.898749191999954, 50.306249700000109 ], [ -125.898909095999926, 50.306370796000046 ], [ -125.899707798999927, 50.306558809000073 ], [ -125.900768661999933, 50.306972777000105 ], [ -125.900767779999981, 50.307375688000093 ], [ -125.900356583999979, 50.307375318000076 ], [ -125.89515081, 50.307370507000051 ], [ -125.89515727499996, 50.304576740000051 ], [ -125.893370711999935, 50.304575007000054 ], [ -125.892032059999949, 50.30457370000012 ], [ -125.887754090999977, 50.304569425000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5406084", "BldgCostT": "3728334", "sL_LossRatio": "0.999808798977538", "sL_AssetLoss": "791.31376", "sL_BldgLoss": "791.16246", "sL_StrLoss": "790.01666", "sL_NStrLoss": "1.1458", "sL_ContLoss": "0.1513", "geom_point": "0101000020E6100000564AC783CA635FC084AFB7E671194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.55721657, 50.202667034000086 ], [ -125.557216851999954, 50.202638140000062 ], [ -125.555887919999961, 50.202632800000117 ], [ -125.555892240999952, 50.20219096200001 ], [ -125.555177719999932, 50.202188084000056 ], [ -125.555187092000011, 50.201231248000099 ], [ -125.555146477999983, 50.201231084000028 ], [ -125.555181690000026, 50.19763592200011 ], [ -125.555209520999952, 50.197636034000048 ], [ -125.555231120999949, 50.195430018000089 ], [ -125.556024094999884, 50.195433212000125 ], [ -125.556029222999911, 50.19490853700011 ], [ -125.557594957999967, 50.194914827000069 ], [ -125.557595261999936, 50.194883577000063 ], [ -125.563198218999943, 50.194905902000066 ], [ -125.563163644, 50.198501081000074 ], [ -125.562896288999951, 50.198500021000051 ], [ -125.562895914999956, 50.198538958000064 ], [ -125.563262241999936, 50.198540408000056 ], [ -125.563227669999918, 50.202135569000049 ], [ -125.562825832999948, 50.202133978000035 ], [ -125.562820486999897, 50.20268937900007 ], [ -125.55721657, 50.202667034000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2631750", "BldgCostT": "1815000", "sL_LossRatio": "0.999275442409952", "sL_AssetLoss": "399.0021", "sL_BldgLoss": "398.713", "sL_StrLoss": "395.103", "sL_NStrLoss": "3.61", "sL_ContLoss": "0.2891", "geom_point": "0101000020E6100000B1F6B9D2197A5FC0865AB2AEFA254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.91153093299999, 50.29949147100011 ], [ -125.911416145999937, 50.297612454000038 ], [ -125.910995481999947, 50.297622997000083 ], [ -125.910962566999942, 50.297084080000069 ], [ -125.910541907999942, 50.297094620000102 ], [ -125.910525452999963, 50.296825161000086 ], [ -125.909684137999974, 50.2968462380001 ], [ -125.909667687999971, 50.296576779000098 ], [ -125.909247033999961, 50.296587315000124 ], [ -125.909230585999936, 50.296317855000069 ], [ -125.908389278999934, 50.296338924000061 ], [ -125.908372837999963, 50.296069464000048 ], [ -125.908127409999935, 50.296075608000095 ], [ -125.908120581999952, 50.299443620000034 ], [ -125.907209692999984, 50.299442859000088 ], [ -125.907089392, 50.299302388000079 ], [ -125.906373484999975, 50.299077396000044 ], [ -125.90533699199996, 50.298906515000091 ], [ -125.904562413999955, 50.298645888000124 ], [ -125.904324892999966, 50.298417999000023 ], [ -125.90384660299999, 50.297495085000058 ], [ -125.903328984, 50.297049303000065 ], [ -125.902564474999963, 50.29671749700011 ], [ -125.902510470999985, 50.296707562000101 ], [ -125.902512329, 50.295844036000084 ], [ -125.907938072000022, 50.295848686000021 ], [ -125.907935744999975, 50.295810535000079 ], [ -125.907515094999965, 50.295821065000055 ], [ -125.907498659999987, 50.295551605000085 ], [ -125.907078013000017, 50.295562133000026 ], [ -125.907061578999944, 50.295292673000048 ], [ -125.90664093299992, 50.295303200000035 ], [ -125.906608069999933, 50.294764280000074 ], [ -125.906187428999957, 50.294774804000113 ], [ -125.906171000999947, 50.294505344000065 ], [ -125.905750362999953, 50.294515867000079 ], [ -125.905733936999937, 50.294246407000081 ], [ -125.905313300999936, 50.294256928000067 ], [ -125.905264030999959, 50.293448547000047 ], [ -125.905684658999974, 50.293438024000039 ], [ -125.905668234999936, 50.293168564000034 ], [ -125.906088860999901, 50.293158041000019 ], [ -125.906072433999967, 50.292888580000074 ], [ -125.90620279299999, 50.292885319000042 ], [ -125.908495661999922, 50.294112446000049 ], [ -125.910520340999966, 50.295195942000056 ], [ -125.911621220999947, 50.295800846000063 ], [ -125.912556409999965, 50.296430643000114 ], [ -125.912611688999974, 50.296493462000079 ], [ -125.912645201999908, 50.297041899000057 ], [ -125.912983207999929, 50.297033424000084 ], [ -125.912998827999957, 50.297062725000046 ], [ -125.91304583699997, 50.297419539000053 ], [ -125.912703198999935, 50.299184162000088 ], [ -125.912400007999935, 50.299262956000121 ], [ -125.908583712999985, 50.30048578500007 ], [ -125.908584112999947, 50.300287501000049 ], [ -125.908737646999953, 50.300287628000021 ], [ -125.908739254999915, 50.299489203000107 ], [ -125.91153093299999, 50.29949147100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802834", "BldgCostT": "1243334", "sL_LossRatio": "0.996882501749287", "sL_AssetLoss": "464.475", "sL_BldgLoss": "463.027", "sL_StrLoss": "448.637", "sL_NStrLoss": "14.39", "sL_ContLoss": "1.448", "geom_point": "0101000020E610000065EEEFA6BA585FC0991C4ECB550F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.386780658999967, 50.118104382000119 ], [ -125.386747597999957, 50.117439767000064 ], [ -125.388005378999978, 50.117413893000091 ], [ -125.388018796999972, 50.117683475000042 ], [ -125.38969584499992, 50.117648956 ], [ -125.389711469999938, 50.117962686000105 ], [ -125.389736125999946, 50.118457698000057 ], [ -125.389104172999964, 50.118470709000086 ], [ -125.388897586999946, 50.118474962000015 ], [ -125.38890564399999, 50.118636782000038 ], [ -125.388937855000023, 50.11928370600004 ], [ -125.388582105999959, 50.119291028000085 ], [ -125.388560219999974, 50.120919713000042 ], [ -125.388554324999987, 50.121358433000069 ], [ -125.388544616999937, 50.122080862000104 ], [ -125.385280641999969, 50.122062693000061 ], [ -125.384869495999951, 50.121713499000059 ], [ -125.38412512, 50.120803398000085 ], [ -125.382980870999958, 50.119827126000068 ], [ -125.382999485999989, 50.118454195000069 ], [ -125.385459177999962, 50.118467948000031 ], [ -125.385959484999944, 50.118470738000042 ], [ -125.385949290999932, 50.118265755000031 ], [ -125.386787827999967, 50.118248512 ], [ -125.386780658999967, 50.118104382000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.99950444188346", "sL_AssetLoss": "259.1018", "sL_BldgLoss": "258.9734", "sL_StrLoss": "258.0114", "sL_NStrLoss": "0.962", "sL_ContLoss": "0.1284", "geom_point": "0101000020E610000075F36469ED795FC006781C50002D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.903733402999947, 50.353109626000112 ], [ -125.90373351699999, 50.353055568000102 ], [ -125.903357859999943, 50.353055241000099 ], [ -125.903322996000028, 50.353055210000093 ], [ -125.903323006999983, 50.353050193000023 ], [ -125.903323821999948, 50.352668297000037 ], [ -125.902987406999941, 50.352668001999987 ], [ -125.902989939999927, 50.351486124000083 ], [ -125.902995112, 50.349073470000143 ], [ -125.90547413699997, 50.349075615000025 ], [ -125.905436489999914, 50.349242098000069 ], [ -125.905428289999946, 50.349801004000092 ], [ -125.905475573999922, 50.350007696000027 ], [ -125.90561016299992, 50.350232830000088 ], [ -125.905706672999926, 50.350394290000089 ], [ -125.906108010999944, 50.350767594000011 ], [ -125.906773190999928, 50.351257015000037 ], [ -125.90710947, 50.351503597000047 ], [ -125.907258013000018, 50.351612520000074 ], [ -125.907417395999971, 50.351729393000056 ], [ -125.908303327999974, 50.352859496000093 ], [ -125.908436713999905, 50.353029600000077 ], [ -125.908718596999933, 50.353321014000066 ], [ -125.908791298999958, 50.353382658000022 ], [ -125.908813303999949, 50.353401321000028 ], [ -125.903732790999982, 50.353397021000035 ], [ -125.903733402999947, 50.353109626000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "0.999561037862254", "sL_AssetLoss": "508.4721", "sL_BldgLoss": "508.2489", "sL_StrLoss": "506.0429", "sL_NStrLoss": "2.206", "sL_ContLoss": "0.2232", "geom_point": "0101000020E61000002926EB47F5795FC013ED8DCEB72B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.9071052499999, 50.336138446000092 ], [ -125.907363860999951, 50.33613866200011 ], [ -125.907401707999924, 50.336186493000106 ], [ -125.907493595999952, 50.336310134000058 ], [ -125.907542824999965, 50.33642583699999 ], [ -125.907568953999984, 50.336491246000044 ], [ -125.907566591999981, 50.337185010000013 ], [ -125.907597204999945, 50.337318881000087 ], [ -125.90766871299995, 50.33742228900006 ], [ -125.907823003999937, 50.337523092000048 ], [ -125.908436590999912, 50.337791390000049 ], [ -125.909567907999957, 50.338436598000094 ], [ -125.909062698999904, 50.338790282000062 ], [ -125.908496872999933, 50.339223352000019 ], [ -125.908112684999978, 50.339517416000085 ], [ -125.90787857399998, 50.339748649000079 ], [ -125.907553703999895, 50.340069599000074 ], [ -125.907302976999958, 50.340348907000141 ], [ -125.907091615999917, 50.340645297000044 ], [ -125.90694047799991, 50.340982098000026 ], [ -125.906885111999955, 50.341260711000089 ], [ -125.906842946999944, 50.342083380000055 ], [ -125.906827998999958, 50.342374899000077 ], [ -125.906849133999941, 50.342686278000066 ], [ -125.906916781999954, 50.343683062000061 ], [ -125.90691934100002, 50.343721103000114 ], [ -125.906924053999916, 50.343790830000053 ], [ -125.90696915099997, 50.34445531600003 ], [ -125.906971314999964, 50.344486908000057 ], [ -125.906951311999961, 50.344639596000071 ], [ -125.906777414999922, 50.34513640299999 ], [ -125.906537694999926, 50.345509988000067 ], [ -125.906385197999924, 50.345833404000118 ], [ -125.90630300199993, 50.346117546000109 ], [ -125.906202903999969, 50.346463495000123 ], [ -125.903214001999956, 50.346460923000066 ], [ -125.903221687000013, 50.342866362000095 ], [ -125.903479891999936, 50.342866588000092 ], [ -125.903486355999945, 50.339834741000047 ], [ -125.903486881, 50.339588861000053 ], [ -125.904080700999927, 50.339589377000095 ], [ -125.90408322899998, 50.338396174000081 ], [ -125.904664997999973, 50.338396677000041 ], [ -125.904666038999949, 50.337902988000039 ], [ -125.905491357999935, 50.337903696000119 ], [ -125.905492539999941, 50.337337507000029 ], [ -125.90583438099999, 50.337337799000061 ], [ -125.905835046999968, 50.337017415000034 ], [ -125.906127023999886, 50.33701766300004 ], [ -125.906127652999942, 50.336714122000053 ], [ -125.906653650999957, 50.336714567000094 ], [ -125.906654249999974, 50.3364237340001 ], [ -125.907104664999949, 50.336424113000085 ], [ -125.9071052499999, 50.336138446000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6425917", "BldgCostT": "4431667", "sL_LossRatio": "0.999569420273577", "sL_AssetLoss": "1267.8256", "sL_BldgLoss": "1267.2797", "sL_StrLoss": "1263.0697", "sL_NStrLoss": "4.21", "sL_ContLoss": "0.5459", "geom_point": "0101000020E61000009D8388503C785FC00336527C1D264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.878876656999964, 50.30105300700005 ], [ -125.878877039999949, 50.300909943000079 ], [ -125.87791282799995, 50.300908883000076 ], [ -125.877915037999983, 50.30008917900004 ], [ -125.876263513999959, 50.300087344000083 ], [ -125.876266170999926, 50.299114270000054 ], [ -125.873530166999956, 50.299111175000114 ], [ -125.873532916999977, 50.298125837 ], [ -125.871616752999969, 50.298123629000088 ], [ -125.871626936999931, 50.294528851000081 ], [ -125.873979411999954, 50.294531556000017 ], [ -125.873979443999957, 50.294520310000095 ], [ -125.874052645999967, 50.294520393000035 ], [ -125.879594816999955, 50.294526566000108 ], [ -125.879591327999904, 50.295840041000112 ], [ -125.882800172999978, 50.295843489000085 ], [ -125.882799601999949, 50.296063806000063 ], [ -125.884040222999943, 50.296065114000037 ], [ -125.884111285999978, 50.296089907000074 ], [ -125.883985132999939, 50.298790306000043 ], [ -125.885008085999942, 50.298948695000028 ], [ -125.885302989999957, 50.299025396000062 ], [ -125.885559600999954, 50.299092087000062 ], [ -125.885882212999945, 50.299187702000026 ], [ -125.886423602, 50.299408495000108 ], [ -125.887060544999883, 50.29976225700004 ], [ -125.887274672000032, 50.299881191000061 ], [ -125.887154036999945, 50.299969722000057 ], [ -125.88697509, 50.300100991000079 ], [ -125.886112005999948, 50.300503693000081 ], [ -125.886094761999971, 50.300516446000088 ], [ -125.88621094599992, 50.300902976000046 ], [ -125.884493243999927, 50.300901195000066 ], [ -125.884492841999958, 50.301059016000075 ], [ -125.880634631999953, 50.301054919000052 ], [ -125.878876656999964, 50.30105300700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "0.999803114211738", "sL_AssetLoss": "333.696", "sL_BldgLoss": "333.6303", "sL_StrLoss": "333.0153", "sL_NStrLoss": "0.615", "sL_ContLoss": "0.0657", "geom_point": "0101000020E6100000A3C4F87A487B5FC0693B85E061314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.92720238599999, 50.387980792000121 ], [ -125.926191482999954, 50.387574895000043 ], [ -125.925694702999934, 50.387748709000057 ], [ -125.92560129599994, 50.387580603000046 ], [ -125.925650006999945, 50.38722890400004 ], [ -125.925613506, 50.386886983000039 ], [ -125.92542381, 50.386765999000019 ], [ -125.924766998, 50.386603593000096 ], [ -125.923931690999936, 50.38653380300007 ], [ -125.922101125000012, 50.387000667000095 ], [ -125.92210597199994, 50.384187235000091 ], [ -125.924008812999929, 50.384188556000062 ], [ -125.924009105999957, 50.384014383000086 ], [ -125.929635596999944, 50.384018098000091 ], [ -125.929630003999989, 50.387612474000065 ], [ -125.929626664999915, 50.387612472000086 ], [ -125.92962574, 50.388206673000113 ], [ -125.927446371999977, 50.388205267000082 ], [ -125.92720238599999, 50.387980792000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "0.999235534156309", "sL_AssetLoss": "475.3646", "sL_BldgLoss": "475.0012", "sL_StrLoss": "472.0552", "sL_NStrLoss": "2.946", "sL_ContLoss": "0.3634", "geom_point": "0101000020E61000000BEF3866155C5FC075C9D51B77234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.437676991999979, 50.27887791000007 ], [ -125.435910407, 50.277826795000053 ], [ -125.43602051, 50.277752686000014 ], [ -125.437022491999969, 50.27785809300012 ], [ -125.437510707999976, 50.277533393000027 ], [ -125.437715616999981, 50.277141706000087 ], [ -125.436866002999935, 50.276737297000096 ], [ -125.43562089699995, 50.276537895000061 ], [ -125.43500379599999, 50.276271598000044 ], [ -125.434649148999981, 50.276185992000123 ], [ -125.434667265999934, 50.274733064000053 ], [ -125.440280020999978, 50.274761629000082 ], [ -125.440260948999935, 50.276306595000115 ], [ -125.441822858999942, 50.276314493000093 ], [ -125.441778598, 50.279909250000095 ], [ -125.441674663999905, 50.279908725000055 ], [ -125.441662650999973, 50.280884050000118 ], [ -125.440952377999977, 50.280880461000017 ], [ -125.44110620799999, 50.280578400000117 ], [ -125.441103610999946, 50.280263592000011 ], [ -125.440945814, 50.279951708000098 ], [ -125.440452312000019, 50.279890510000058 ], [ -125.439916205999978, 50.279541489000103 ], [ -125.439140982999959, 50.279225400000051 ], [ -125.438807503999982, 50.279007504000077 ], [ -125.438104410999969, 50.278996097000068 ], [ -125.437676991999979, 50.27887791000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.999304628084065", "sL_AssetLoss": "944.0991", "sL_BldgLoss": "943.4426", "sL_StrLoss": "938.0276", "sL_NStrLoss": "5.415", "sL_ContLoss": "0.6565", "geom_point": "0101000020E61000001D886EEE16585FC0890584F7D1144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.372420891999937, 50.16364369500009 ], [ -125.373043486999933, 50.163505492000091 ], [ -125.373665600999956, 50.163590999000093 ], [ -125.37419840099993, 50.16334741 ], [ -125.374721998999945, 50.162912994000081 ], [ -125.374980076999947, 50.162467294000109 ], [ -125.375063985999972, 50.161880501000041 ], [ -125.374960299999927, 50.161495983000052 ], [ -125.374701912999981, 50.161087199000079 ], [ -125.374426806999907, 50.160867909000054 ], [ -125.373223006999979, 50.160363737000118 ], [ -125.373227439999951, 50.160042248000082 ], [ -125.373418693999923, 50.160043335000076 ], [ -125.3734274709999, 50.159406451000102 ], [ -125.37902594799999, 50.159438132000091 ], [ -125.379015816999981, 50.160179828000011 ], [ -125.379387879, 50.160181924 ], [ -125.37938239099995, 50.160583977000066 ], [ -125.380063077999978, 50.160587808000074 ], [ -125.380049765999928, 50.161563923000102 ], [ -125.381382455, 50.161536592000076 ], [ -125.38143605899991, 50.162614915000091 ], [ -125.380035041, 50.16264364700006 ], [ -125.380014044999911, 50.164183076000086 ], [ -125.377810925999981, 50.164170665000015 ], [ -125.377799704999958, 50.164990430000024 ], [ -125.377307651999971, 50.164987652000057 ], [ -125.377303403999946, 50.165297742000092 ], [ -125.37665407499999, 50.165294073000076 ], [ -125.376647408999929, 50.165780158000096 ], [ -125.37104815399999, 50.165748356000051 ], [ -125.371060950999933, 50.164823371000125 ], [ -125.371604912999913, 50.164721792000101 ], [ -125.372150887999965, 50.164153489000057 ], [ -125.372231404999951, 50.163756206000059 ], [ -125.372420891999937, 50.16364369500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4932417", "BldgCostT": "3401667", "sL_LossRatio": "0.999526837942713", "sL_AssetLoss": "974.7189", "sL_BldgLoss": "974.2577", "sL_StrLoss": "971.0407", "sL_NStrLoss": "3.217", "sL_ContLoss": "0.4612", "geom_point": "0101000020E6100000171B889F9E775FC078A1B1DD5A254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.869359715999977, 50.294065681000028 ], [ -125.869360229, 50.293887595000093 ], [ -125.864010815999947, 50.293881146000111 ], [ -125.864011150999929, 50.293769512000082 ], [ -125.863376197000022, 50.29376873000011 ], [ -125.863384675999981, 50.290955977000088 ], [ -125.863387032999981, 50.290173931 ], [ -125.86410727599997, 50.290174819000093 ], [ -125.864109755999976, 50.289347648000096 ], [ -125.869724487999974, 50.289354406000072 ], [ -125.86972253, 50.290035574000086 ], [ -125.874402444999987, 50.290040989000069 ], [ -125.874401237999948, 50.290476713000054 ], [ -125.874984947999963, 50.290477376000119 ], [ -125.874975031999924, 50.294072173000103 ], [ -125.873673785999969, 50.29407069400002 ], [ -125.869359715999977, 50.294065681000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.99981890474656", "sL_AssetLoss": "450.5916", "sL_BldgLoss": "450.51", "sL_StrLoss": "450", "sL_NStrLoss": "0.51", "sL_ContLoss": "0.0816", "geom_point": "0101000020E610000056B9710741715FC0B01ACF903F2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.767840893000013, 50.362812206000079 ], [ -125.767183517999911, 50.362404907000034 ], [ -125.766879209999928, 50.362268205000071 ], [ -125.766736188, 50.361983299000052 ], [ -125.766593195999931, 50.361942003000081 ], [ -125.765400313999976, 50.361961993000079 ], [ -125.765222770999941, 50.362001834000132 ], [ -125.765230991999942, 50.360417307000027 ], [ -125.767655524999938, 50.36042242000007 ], [ -125.767658430999987, 50.359856667000138 ], [ -125.773281890999939, 50.359868321000114 ], [ -125.773267580999942, 50.362724203000013 ], [ -125.772887686999965, 50.362565802000105 ], [ -125.771477306999941, 50.362481807000087 ], [ -125.771038979999986, 50.362681200000033 ], [ -125.770118380999946, 50.362820795000133 ], [ -125.769598894999945, 50.363058599000098 ], [ -125.76888100299999, 50.363065689000024 ], [ -125.767840893000013, 50.362812206000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.999945101785902", "sL_AssetLoss": "192.90245", "sL_BldgLoss": "192.89186", "sL_StrLoss": "192.80143", "sL_NStrLoss": "0.09043", "sL_ContLoss": "0.01059", "geom_point": "0101000020E61000007B731310AE7D5FC0913FFFDACD324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.961998003999909, 50.397672967000076 ], [ -125.962071652999953, 50.393909572000041 ], [ -125.96437943299999, 50.393910338000076 ], [ -125.964378439999933, 50.395172068000079 ], [ -125.964880492999924, 50.39517222800005 ], [ -125.964879955999933, 50.395862639000086 ], [ -125.965740300999968, 50.395862908000083 ], [ -125.965737576, 50.39945723100012 ], [ -125.962246117999953, 50.399456097000098 ], [ -125.962050672999936, 50.39816524600004 ], [ -125.9621223, 50.398115498000017 ], [ -125.962279078, 50.397914700000094 ], [ -125.961998003999909, 50.397672967000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.996347070574681", "sL_AssetLoss": "473.045", "sL_BldgLoss": "471.317", "sL_StrLoss": "452.977", "sL_NStrLoss": "18.34", "sL_ContLoss": "1.728", "geom_point": "0101000020E6100000A1977AAB68565FC08884EFFD8D074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.34737123099994, 50.057206350000094 ], [ -125.352957132999961, 50.057239358000103 ], [ -125.352906070999936, 50.060835106000084 ], [ -125.347319729, 50.060802096000053 ], [ -125.34737123099994, 50.057206350000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.999198627186727", "sL_AssetLoss": "129.7773", "sL_BldgLoss": "129.6733", "sL_StrLoss": "128.0563", "sL_NStrLoss": "1.617", "sL_ContLoss": "0.104", "geom_point": "0101000020E610000010C73EF1B17A5FC07CE42032F62E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.914780259999944, 50.364914905000035 ], [ -125.918105294000014, 50.364917414000104 ], [ -125.91851698399995, 50.365701903000094 ], [ -125.919055393999926, 50.366460998000079 ], [ -125.919989879999932, 50.36748219599999 ], [ -125.92039868099999, 50.368155172000094 ], [ -125.920398049999946, 50.368513552000096 ], [ -125.914773488999955, 50.368509367000087 ], [ -125.914780259999944, 50.364914905000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4577166", "BldgCostT": "3156666", "sL_LossRatio": "0.997525383714414", "sL_AssetLoss": "1309.698", "sL_BldgLoss": "1306.457", "sL_StrLoss": "1276.967", "sL_NStrLoss": "29.49", "sL_ContLoss": "3.241", "geom_point": "0101000020E6100000E10574D324585FC06FC1EF32850E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.377344579999942, 50.116669320000035 ], [ -125.377350039999939, 50.116270312000083 ], [ -125.377317268999931, 50.116270126000096 ], [ -125.377349292999966, 50.116210410000072 ], [ -125.376892300999941, 50.115743196000039 ], [ -125.376478315999989, 50.115580894000061 ], [ -125.376022490999972, 50.115706204000027 ], [ -125.375566108, 50.11549968900011 ], [ -125.374747008999961, 50.114526890000036 ], [ -125.374280981999931, 50.114192280000104 ], [ -125.374298808999967, 50.112895762000072 ], [ -125.373547887999948, 50.112891492000102 ], [ -125.37398239499997, 50.112078695000072 ], [ -125.372450089999987, 50.112468993000071 ], [ -125.371622891999934, 50.112523014000068 ], [ -125.371659688999927, 50.109857806000065 ], [ -125.371667596999899, 50.109284988000113 ], [ -125.377259906999981, 50.109316759000109 ], [ -125.37722367500001, 50.111964611000118 ], [ -125.377213970999946, 50.112673769000018 ], [ -125.378129555999962, 50.112678944000031 ], [ -125.379894812999979, 50.112688900000066 ], [ -125.37987743599993, 50.113964124000063 ], [ -125.382145994, 50.113976877 ], [ -125.382974671999975, 50.113981524000039 ], [ -125.382964846999954, 50.114706194000071 ], [ -125.382940827999974, 50.116477556000063 ], [ -125.382925918999931, 50.117577014000041 ], [ -125.38045957199995, 50.117563167000078 ], [ -125.38008839499993, 50.117297001000026 ], [ -125.379605105999957, 50.11711759200012 ], [ -125.378427805999934, 50.11706918700002 ], [ -125.377872208999975, 50.116865494000102 ], [ -125.377504792999986, 50.116818503000047 ], [ -125.377344579999942, 50.116669320000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "0.999928976007313", "sL_AssetLoss": "278.497438", "sL_BldgLoss": "278.477658", "sL_StrLoss": "278.303258", "sL_NStrLoss": "0.1744", "sL_ContLoss": "0.01978", "geom_point": "0101000020E61000009766C248525F5FC09C9A36A9892A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.487090694999978, 50.33276419700006 ], [ -125.486670288000013, 50.332512204000096 ], [ -125.486333889999941, 50.332529291000107 ], [ -125.48611581399993, 50.332668797000025 ], [ -125.485863009999946, 50.332647491000074 ], [ -125.485608002, 50.332508267000044 ], [ -125.4856112, 50.332226737000049 ], [ -125.485669500999933, 50.3321745840001 ], [ -125.486046204999951, 50.332112002000024 ], [ -125.487165102999967, 50.332295702000074 ], [ -125.488067716, 50.332338407000059 ], [ -125.48865379399993, 50.332290005000068 ], [ -125.488350600999951, 50.332126208000055 ], [ -125.485855981999975, 50.331451101000034 ], [ -125.485621248999976, 50.331342245000016 ], [ -125.48563844099999, 50.329828775000045 ], [ -125.491258056999982, 50.329854750000052 ], [ -125.491247402999988, 50.330802943000037 ], [ -125.493004945999957, 50.330811009000108 ], [ -125.492964694999912, 50.334405535000094 ], [ -125.491318593999964, 50.33439798200007 ], [ -125.491314053999972, 50.334802076000095 ], [ -125.485933527999975, 50.334777217000052 ], [ -125.485901086999959, 50.334724010000016 ], [ -125.485946213999966, 50.334246793000013 ], [ -125.486395406999961, 50.333705591000076 ], [ -125.487072306999949, 50.333214293000069 ], [ -125.487170398999965, 50.332942307000053 ], [ -125.487090694999978, 50.33276419700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.997305257880554", "sL_AssetLoss": "1595.7", "sL_BldgLoss": "1591.4", "sL_StrLoss": "1557", "sL_NStrLoss": "34.4", "sL_ContLoss": "4.3", "geom_point": "0101000020E61000002321DB434C555FC04AA82A7E9D094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.332014946999962, 50.078329461000081 ], [ -125.332056513999959, 50.075495054000065 ], [ -125.327903662999972, 50.075469763000122 ], [ -125.327956712999978, 50.07187409600008 ], [ -125.3335444, 50.071908090000079 ], [ -125.33350292899992, 50.074742511000132 ], [ -125.337655716999933, 50.074767592000121 ], [ -125.337603427999923, 50.078363248000038 ], [ -125.332014946999962, 50.078329461000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.997990101332857", "sL_AssetLoss": "179.014", "sL_BldgLoss": "178.6542", "sL_StrLoss": "174.1752", "sL_NStrLoss": "4.479", "sL_ContLoss": "0.3598", "geom_point": "0101000020E6100000C3FDDBC038545FC0FFFF0771C80A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.314330231999932, 50.085709062000085 ], [ -125.314459647999968, 50.08296590700008 ], [ -125.314485163999976, 50.08242561000008 ], [ -125.314521844999931, 50.081648003000033 ], [ -125.317902914999976, 50.081669014000077 ], [ -125.317849058999954, 50.085264629000058 ], [ -125.316784999, 50.085258028000027 ], [ -125.316843625999979, 50.086473616000085 ], [ -125.316005602999979, 50.086490346000076 ], [ -125.31605759699994, 50.08756873300004 ], [ -125.31512187899996, 50.087587406000083 ], [ -125.314472353999975, 50.087224400000103 ], [ -125.314131415999924, 50.087033823000056 ], [ -125.314225018999977, 50.086976147000073 ], [ -125.314254137999967, 50.086958176000124 ], [ -125.314294687999933, 50.086864041000105 ], [ -125.314330231999932, 50.085709062000085 ] ], [ [ -125.315534607999965, 50.08542032000009 ], [ -125.315526407999982, 50.085250206000119 ], [ -125.31468734699996, 50.085244984000077 ], [ -125.314696601999955, 50.085437039000091 ], [ -125.315534607999965, 50.08542032000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999580681289417", "sL_AssetLoss": "130.4497", "sL_BldgLoss": "130.395", "sL_StrLoss": "130", "sL_NStrLoss": "0.395", "sL_ContLoss": "0.0547", "geom_point": "0101000020E61000001CAD309E7D655FC0322EEACD07004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.583423494999948, 50.000144389000042 ], [ -125.583732292999969, 49.999794443000056 ], [ -125.584292069999918, 49.999802150000022 ], [ -125.58849912, 49.999859933000018 ], [ -125.588494161000014, 50.000409815000104 ], [ -125.588208041999948, 50.000408742000069 ], [ -125.588205963999911, 50.000639020000072 ], [ -125.582626851, 50.000617960000078 ], [ -125.582627098999964, 50.000590914000057 ], [ -125.583423494999948, 50.000144389000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.998579931599947", "sL_AssetLoss": "182.456", "sL_BldgLoss": "182.1969", "sL_StrLoss": "179.0869", "sL_NStrLoss": "3.11", "sL_ContLoss": "0.2591", "geom_point": "0101000020E610000044F8384F4C7A5FC08810BAF8992D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.912743184999982, 50.359242135000095 ], [ -125.912743700999968, 50.358974610000068 ], [ -125.911994570999966, 50.358974017000016 ], [ -125.911997327999956, 50.357556910000064 ], [ -125.911622844999954, 50.357556611000042 ], [ -125.911623441999964, 50.357250993000036 ], [ -125.908844953999989, 50.357248741000035 ], [ -125.90885219399999, 50.353654229000057 ], [ -125.909163624999962, 50.353654485000114 ], [ -125.909496295999944, 50.353829407000056 ], [ -125.910370282999978, 50.354285367000095 ], [ -125.910576206999906, 50.354392812000086 ], [ -125.911824842000016, 50.355113764000073 ], [ -125.91190871699996, 50.355162197000048 ], [ -125.912050857999958, 50.355287058000059 ], [ -125.912287597999963, 50.355495 ], [ -125.912547101999962, 50.355794402000036 ], [ -125.91278539599989, 50.356169411000032 ], [ -125.913336416999968, 50.359092990000072 ], [ -125.913409141999978, 50.359242659000103 ], [ -125.912743184999982, 50.359242135000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3296334", "BldgCostT": "2273334", "sL_LossRatio": "0.997336928332627", "sL_AssetLoss": "904.219", "sL_BldgLoss": "901.811", "sL_StrLoss": "876.861", "sL_NStrLoss": "24.95", "sL_ContLoss": "2.408", "geom_point": "0101000020E6100000D689914641565FC0CB7DF64C440A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.346261428, 50.082777316000012 ], [ -125.346266703999959, 50.082409816000109 ], [ -125.34599644099994, 50.082408210000033 ], [ -125.346001931000018, 50.082025931000082 ], [ -125.343974186999972, 50.082013859000014 ], [ -125.343980969999976, 50.081542961000132 ], [ -125.343324290999988, 50.081539044000117 ], [ -125.343376130999928, 50.077943399000027 ], [ -125.345055706000011, 50.077953410000113 ], [ -125.345059076999945, 50.0777189410001 ], [ -125.350647491999936, 50.077752066000095 ], [ -125.350642893999961, 50.078074616000073 ], [ -125.350955400999936, 50.078076459000044 ], [ -125.350951405999979, 50.078356774000078 ], [ -125.351388001999965, 50.078359348000077 ], [ -125.351381097999948, 50.078844137000047 ], [ -125.351636620999983, 50.078845643000122 ], [ -125.351631390999941, 50.079213145000104 ], [ -125.351901633999887, 50.07921473800009 ], [ -125.351850465000027, 50.08281038000014 ], [ -125.346261428, 50.082777316000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999901204494678", "sL_AssetLoss": "429.37176", "sL_BldgLoss": "429.32934", "sL_StrLoss": "429.00354", "sL_NStrLoss": "0.3258", "sL_ContLoss": "0.04242", "geom_point": "0101000020E6100000F35A6C07E1625FC0D3FFB449AC1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.542377016, 50.218279819000045 ], [ -125.542378601999957, 50.218122427000104 ], [ -125.541818903999911, 50.218120105000089 ], [ -125.541855183999985, 50.214525026000096 ], [ -125.541890463999891, 50.214525172 ], [ -125.541894707999987, 50.214104525000039 ], [ -125.545577656999953, 50.21411975000013 ], [ -125.547500029999952, 50.21412764700009 ], [ -125.547499682999927, 50.214162570000056 ], [ -125.548149307999907, 50.214165232000049 ], [ -125.548113525999923, 50.217760315000071 ], [ -125.54798826199999, 50.217759802000096 ], [ -125.547982852999951, 50.218302917000067 ], [ -125.547286270999905, 50.218300062 ], [ -125.546556080999949, 50.21829706500008 ], [ -125.542377016, 50.218279819000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.99966265579266", "sL_AssetLoss": "491.1897", "sL_BldgLoss": "491.024", "sL_StrLoss": "490", "sL_NStrLoss": "1.024", "sL_ContLoss": "0.1657", "geom_point": "0101000020E61000008EF5A2B0EA755FC0A636E5C8D2304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.84254938899997, 50.383676908000091 ], [ -125.841233599999939, 50.383520207000053 ], [ -125.839747494999983, 50.383142794 ], [ -125.83955762, 50.383224400000074 ], [ -125.83956647199993, 50.380729035000108 ], [ -125.839719718000012, 50.380729257000027 ], [ -125.839722003999924, 50.380084238000059 ], [ -125.84018028899996, 50.38008490000005 ], [ -125.840181813999962, 50.379653548000093 ], [ -125.843965040999962, 50.379658941000123 ], [ -125.845807751, 50.379661520000084 ], [ -125.845807005999944, 50.379880312000132 ], [ -125.84630814599997, 50.379881008000019 ], [ -125.846305040999979, 50.380794781000105 ], [ -125.845185292999972, 50.381166002000093 ], [ -125.844685587999919, 50.381502097000116 ], [ -125.844180329999944, 50.382090825000112 ], [ -125.843975412999939, 50.382329591000058 ], [ -125.844191196999986, 50.38287220400013 ], [ -125.844267665999894, 50.383067471000025 ], [ -125.844288395999968, 50.383299281000063 ], [ -125.844139306999978, 50.383423403000052 ], [ -125.84347298599999, 50.383591405000089 ], [ -125.843008883999957, 50.383585699000022 ], [ -125.84254938899997, 50.383676908000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999758299284879", "sL_AssetLoss": "121.2243", "sL_BldgLoss": "121.195", "sL_StrLoss": "121", "sL_NStrLoss": "0.195", "sL_ContLoss": "0.0293", "geom_point": "0101000020E61000001BB690F4A77B5FC0BB8A18B8B42E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.932173185999929, 50.366787312 ], [ -125.932174867999962, 50.365665294000109 ], [ -125.931533130999952, 50.365664899000102 ], [ -125.931537044999942, 50.363077775000107 ], [ -125.931537655999989, 50.362673565000136 ], [ -125.932388174999929, 50.36306652600004 ], [ -125.932118231999951, 50.363069962000068 ], [ -125.932022099999955, 50.363416763000053 ], [ -125.932061375, 50.363491372000077 ], [ -125.932168120999961, 50.363569609000052 ], [ -125.932211939999931, 50.363590740000049 ], [ -125.932251207999954, 50.363609696000012 ], [ -125.932737734999961, 50.365584538000064 ], [ -125.933034220999971, 50.366787836000114 ], [ -125.932173185999929, 50.366787312 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.99911617568335", "sL_AssetLoss": "147.2012", "sL_BldgLoss": "147.0711", "sL_StrLoss": "146.0311", "sL_NStrLoss": "1.04", "sL_ContLoss": "0.1301", "geom_point": "0101000020E610000022E17B7F43555FC020D52CA76F0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.331011823, 50.113534303000066 ], [ -125.330462710999981, 50.11346449100008 ], [ -125.329585718999937, 50.113517199000086 ], [ -125.329100007999926, 50.113878901000078 ], [ -125.328284196999974, 50.113796302000061 ], [ -125.3279440969999, 50.114027088000043 ], [ -125.327831312999976, 50.114058432000036 ], [ -125.327864287999958, 50.111825691000064 ], [ -125.330239211, 50.111840162000121 ], [ -125.330244126999972, 50.111506176000027 ], [ -125.337207136999965, 50.112153756000112 ], [ -125.337193484999943, 50.11309102900001 ], [ -125.337147698999928, 50.113105600000011 ], [ -125.335224487999966, 50.113548502000071 ], [ -125.334715920999912, 50.113747895000103 ], [ -125.33450709799996, 50.114066902000033 ], [ -125.334302624999935, 50.114142402000013 ], [ -125.33298371299999, 50.114079699000072 ], [ -125.331011823, 50.113534303000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912584", "BldgCostT": "2698334", "sL_LossRatio": "0.999190576132464", "sL_AssetLoss": "699.2628", "sL_BldgLoss": "698.6968", "sL_StrLoss": "695.0858", "sL_NStrLoss": "3.611", "sL_ContLoss": "0.566", "geom_point": "0101000020E6100000E9EC43622B795FC0BFCF3CA944264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.89790874, 50.3039051310001 ], [ -125.89193305799995, 50.30135291800012 ], [ -125.89160810599995, 50.30078330200007 ], [ -125.891472009999973, 50.300155 ], [ -125.891417403999938, 50.29999658600007 ], [ -125.891307502999979, 50.299677592000066 ], [ -125.891114407999936, 50.299386183000067 ], [ -125.890806188999974, 50.299137 ], [ -125.890421921, 50.298952384000117 ], [ -125.889840507999963, 50.298794439000083 ], [ -125.889824222999906, 50.298789998000039 ], [ -125.890085809999931, 50.297443997000066 ], [ -125.890078892999952, 50.296817595000043 ], [ -125.887645911999968, 50.296824188000095 ], [ -125.886173269999944, 50.29452057200006 ], [ -125.886173667999955, 50.294361719000044 ], [ -125.891441067999907, 50.294367016000074 ], [ -125.891562815999933, 50.294779192000064 ], [ -125.892373397999961, 50.295415786000071 ], [ -125.893312096999921, 50.295599511000063 ], [ -125.893483426000017, 50.295588456000132 ], [ -125.893478853999937, 50.29753336800006 ], [ -125.894446514999927, 50.297534296000023 ], [ -125.894438486999945, 50.300981298000124 ], [ -125.897656801999943, 50.300984322000076 ], [ -125.897654745999986, 50.301894840000067 ], [ -125.902925050999954, 50.30189959000009 ], [ -125.902924194999926, 50.302298833000073 ], [ -125.901636554999953, 50.302711267000127 ], [ -125.900342361999932, 50.303125770000101 ], [ -125.89790874, 50.3039051310001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12640834", "BldgCostT": "8508334", "sL_LossRatio": "0.812809134652921", "sL_AssetLoss": "4674.945", "sL_BldgLoss": "3799.838", "sL_StrLoss": "3344.318", "sL_NStrLoss": "455.52", "sL_ContLoss": "875.107", "geom_point": "0101000020E61000009FE5DC9AB2545FC000A4FCC568084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.318775188999965, 50.077142332000051 ], [ -125.318870149999952, 50.076823415000035 ], [ -125.317379693999968, 50.076887940000105 ], [ -125.317393927999973, 50.075938220000111 ], [ -125.315917740999936, 50.075967694000056 ], [ -125.315891755999957, 50.075428500000065 ], [ -125.315472838999966, 50.075436860000075 ], [ -125.315425131000012, 50.074446723000122 ], [ -125.31470291, 50.074442227000077 ], [ -125.314714741999978, 50.073655811000073 ], [ -125.318297915999921, 50.073712046000054 ], [ -125.319968678999942, 50.073738212000059 ], [ -125.320714102999943, 50.065337264000135 ], [ -125.320596037999977, 50.059567376000047 ], [ -125.318143820999964, 50.059553722000061 ], [ -125.314573751999902, 50.059542541000042 ], [ -125.314592369999943, 50.058304728000039 ], [ -125.319260011999972, 50.058333720000114 ], [ -125.319236905999958, 50.057854667000129 ], [ -125.319170266999905, 50.056473007000093 ], [ -125.319589017999974, 50.05646463500009 ], [ -125.319576012999931, 50.056195037000052 ], [ -125.319157266999923, 50.056203409000076 ], [ -125.319118261, 50.055394616000086 ], [ -125.319537000999986, 50.055386244000012 ], [ -125.319523997999937, 50.055116647000034 ], [ -125.321617684999978, 50.055074767000129 ], [ -125.321682762999899, 50.056422754000067 ], [ -125.320845264999946, 50.056439511000072 ], [ -125.32088430099999, 50.057248303000108 ], [ -125.320465545, 50.057256679000034 ], [ -125.320491563999894, 50.057795874000121 ], [ -125.321044039999947, 50.057784822000038 ], [ -125.321050571999962, 50.057346388000056 ], [ -125.323823988999933, 50.057363477000088 ], [ -125.323815586999956, 50.057189625000035 ], [ -125.32423434199994, 50.057181236000076 ], [ -125.324208279999965, 50.05664204300006 ], [ -125.325464528999973, 50.056616869000088 ], [ -125.325467338999957, 50.056674977000064 ], [ -125.325501132999989, 50.057373776000063 ], [ -125.32663647, 50.057380734000034 ], [ -125.32662843199995, 50.057924674000084 ], [ -125.326979890999951, 50.057926825000038 ], [ -125.326971297999975, 50.058508636000099 ], [ -125.329431430999946, 50.058523664000028 ], [ -125.329396807999956, 50.060876365000063 ], [ -125.334183492999955, 50.060905448000042 ], [ -125.334146610999966, 50.063429377000091 ], [ -125.33414495699999, 50.06354261000012 ], [ -125.334130947999981, 50.064501170000042 ], [ -125.32854417, 50.064467205000035 ], [ -125.328573286999969, 50.062491385000065 ], [ -125.327426603, 50.062514394000033 ], [ -125.327413551999911, 50.062244798000037 ], [ -125.326994753999941, 50.06225319900004 ], [ -125.326987570999961, 50.062104790000021 ], [ -125.32379203, 50.062085189000079 ], [ -125.323800664999951, 50.061503382000119 ], [ -125.322015380999957, 50.061492390000112 ], [ -125.32199718699998, 50.062715155000099 ], [ -125.322079478999981, 50.062715662000095 ], [ -125.322025975999949, 50.066311370000115 ], [ -125.321821510999968, 50.066310109000071 ], [ -125.321819937999962, 50.066415736000124 ], [ -125.324318620999932, 50.066431114000103 ], [ -125.324265289999985, 50.070026804000079 ], [ -125.324229035999963, 50.070026581000057 ], [ -125.324220522, 50.070600504000083 ], [ -125.323363136999902, 50.070595234000059 ], [ -125.323362291999956, 50.070652125000059 ], [ -125.321641441999972, 50.070641527000099 ], [ -125.321629444999971, 50.071447162000077 ], [ -125.321667035999923, 50.071447394000117 ], [ -125.321665785999954, 50.071531303000022 ], [ -125.323669963, 50.071543643000055 ], [ -125.323616573999985, 50.075139308000111 ], [ -125.322994547999954, 50.0751354820001 ], [ -125.322947240999952, 50.078318118000041 ], [ -125.318143939999985, 50.078288455000113 ], [ -125.318425548999969, 50.0781910870001 ], [ -125.318611644999947, 50.078080779000075 ], [ -125.318734886999934, 50.077969169000028 ], [ -125.318807575999955, 50.077779015000026 ], [ -125.318775188999965, 50.077142332000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999889490250398", "sL_AssetLoss": "110.12603", "sL_BldgLoss": "110.11386", "sL_StrLoss": "110.00296", "sL_NStrLoss": "0.1109", "sL_ContLoss": "0.01217", "geom_point": "0101000020E610000093CD2C74AB7D5FC0B1720567B2314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.962120028999976, 50.391437342000096 ], [ -125.962221738999958, 50.386238388000088 ], [ -125.966017618999956, 50.386093002000095 ], [ -125.965982991999937, 50.383757914000057 ], [ -125.966161131, 50.383757969000072 ], [ -125.966158440999934, 50.387352347000053 ], [ -125.963035017999943, 50.387351350000117 ], [ -125.963034954999955, 50.387428432000021 ], [ -125.96395494699999, 50.387428735000036 ], [ -125.96395208200002, 50.391023096000033 ], [ -125.9637840339999, 50.391023041000089 ], [ -125.963783699999965, 50.391437898000071 ], [ -125.962120028999976, 50.391437342000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4079333", "BldgCostT": "2813333", "sL_LossRatio": "0.999618943695732", "sL_AssetLoss": "765.7661", "sL_BldgLoss": "765.4743", "sL_StrLoss": "763.0233", "sL_NStrLoss": "2.451", "sL_ContLoss": "0.2918", "geom_point": "0101000020E610000073FBFE30367B5FC0D506825B522E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.924822141999954, 50.364407831000129 ], [ -125.924822709999916, 50.36406606000007 ], [ -125.924171936999969, 50.364065615000079 ], [ -125.924172589999927, 50.363676394000102 ], [ -125.923450433999975, 50.363675897000043 ], [ -125.923450679999974, 50.363530943000022 ], [ -125.923270337999924, 50.3635308180001 ], [ -125.923270257999917, 50.363577489000086 ], [ -125.918779598999933, 50.363574287000041 ], [ -125.918722523, 50.363330601000023 ], [ -125.91871090099994, 50.362215489000064 ], [ -125.918783503999961, 50.361262530000076 ], [ -125.918828230999978, 50.361269668000048 ], [ -125.919056750999943, 50.361306114000087 ], [ -125.919702202999972, 50.361409088000123 ], [ -125.919750919999956, 50.361415576000105 ], [ -125.92010122799999, 50.361462268000132 ], [ -125.920346, 50.361494886000116 ], [ -125.920700287000017, 50.361512213000012 ], [ -125.92117984399999, 50.361490261000043 ], [ -125.921530488999949, 50.361474206 ], [ -125.921741056999934, 50.361464572000088 ], [ -125.923579783999941, 50.361380411000063 ], [ -125.925394886000035, 50.36138160500014 ], [ -125.926314045999959, 50.361492810000108 ], [ -125.926531957999941, 50.361557612000077 ], [ -125.926452265999956, 50.361286211000021 ], [ -125.925124967999977, 50.358787097000111 ], [ -125.924577978999977, 50.357153018000069 ], [ -125.924400095999957, 50.356775506000076 ], [ -125.924375096999967, 50.356625396000076 ], [ -125.9244455899999, 50.356469990000022 ], [ -125.924604784999971, 50.356284099000035 ], [ -125.924890508999937, 50.356051504000121 ], [ -125.924919437999918, 50.35603605200005 ], [ -125.925202903999931, 50.355884606000131 ], [ -125.925849791999951, 50.355715194000055 ], [ -125.926178801, 50.355693811 ], [ -125.926822520999949, 50.355739193000026 ], [ -125.927307392, 50.355797893 ], [ -125.92754769599999, 50.355872703000081 ], [ -125.927238093999946, 50.35608090500007 ], [ -125.926871811999931, 50.356272469000046 ], [ -125.926441797999956, 50.356497406000116 ], [ -125.926259107999954, 50.356638730000043 ], [ -125.926005377999957, 50.35683499400006 ], [ -125.925761792999978, 50.357077413000056 ], [ -125.925512386999984, 50.35743670600008 ], [ -125.925501253999983, 50.35765 ], [ -125.925499287999983, 50.357687397000063 ], [ -125.925571974999954, 50.357988495000065 ], [ -125.926689707999984, 50.359657094000084 ], [ -125.926984282999939, 50.360016803000093 ], [ -125.927561201999964, 50.360595015000072 ], [ -125.928083497999964, 50.361037417000013 ], [ -125.928634110999937, 50.361369385000117 ], [ -125.928751033999959, 50.361420162000094 ], [ -125.929973092999958, 50.361950698000079 ], [ -125.930449638999974, 50.362170864000049 ], [ -125.930448325999976, 50.363025669000137 ], [ -125.930446194999917, 50.364411506000067 ], [ -125.924822141999954, 50.364407831000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.9997579439711", "sL_AssetLoss": "120.2201", "sL_BldgLoss": "120.191", "sL_StrLoss": "120", "sL_NStrLoss": "0.191", "sL_ContLoss": "0.0291", "geom_point": "0101000020E61000007FEC3F7CEA7C5FC06533A8B2FF2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.951646865999948, 50.374590160000075 ], [ -125.9524187439999, 50.374570553000083 ], [ -125.952467952999896, 50.37536273000002 ], [ -125.952468957999926, 50.375378889000089 ], [ -125.951204947999969, 50.375410994000042 ], [ -125.95115475899999, 50.374602658000057 ], [ -125.951646865999948, 50.374590160000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999721489308963", "sL_AssetLoss": "760.4735", "sL_BldgLoss": "760.2617", "sL_StrLoss": "759", "sL_NStrLoss": "1.2617", "sL_ContLoss": "0.2118", "geom_point": "0101000020E6100000D93A4049647B5FC0FCDBE9F7122E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.928083497999964, 50.361037417000013 ], [ -125.927561201999964, 50.360595015000072 ], [ -125.926984282999939, 50.360016803000093 ], [ -125.926689707999984, 50.359657094000084 ], [ -125.925571974999954, 50.357988495000065 ], [ -125.925499287999983, 50.357687397000063 ], [ -125.925501253999983, 50.35765 ], [ -125.926898878000017, 50.357650205000034 ], [ -125.926897528999959, 50.358484167000022 ], [ -125.926952597999914, 50.358482780000124 ], [ -125.926956532999924, 50.358546702000091 ], [ -125.927553594999921, 50.358547094000059 ], [ -125.927551365999975, 50.359939213000104 ], [ -125.927969263999913, 50.359939486000087 ], [ -125.927969034999975, 50.360084441000019 ], [ -125.929080028999948, 50.360085158000153 ], [ -125.929079420000036, 50.360474382000035 ], [ -125.929801524999974, 50.360474841000098 ], [ -125.92980099499999, 50.360816615000083 ], [ -125.930451718999919, 50.360817025000053 ], [ -125.930449638999974, 50.362170864000049 ], [ -125.929973092999958, 50.361950698000079 ], [ -125.928751033999959, 50.361420162000094 ], [ -125.928634110999937, 50.361369385000117 ], [ -125.928083497999964, 50.361037417000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434584", "BldgCostT": "3058334", "sL_LossRatio": "0.999909088866144", "sL_AssetLoss": "685.2846", "sL_BldgLoss": "685.2223", "sL_StrLoss": "684.9", "sL_NStrLoss": "0.3223", "sL_ContLoss": "0.0623", "geom_point": "0101000020E61000002759FBF97E7D5FC0B0078B719B324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.959969113999961, 50.393908833000062 ], [ -125.962071652999953, 50.393909572000041 ], [ -125.961998003999909, 50.397672967000076 ], [ -125.961987914999952, 50.397664289 ], [ -125.961893293999978, 50.39758291200004 ], [ -125.961647598999917, 50.397480313000102 ], [ -125.960972203999944, 50.39727240100013 ], [ -125.960632204999968, 50.397245312000031 ], [ -125.960651995999939, 50.39666000400009 ], [ -125.960398517999963, 50.395973504 ], [ -125.960115998999981, 50.395738492000028 ], [ -125.959261100999967, 50.395336907000043 ], [ -125.959021975999974, 50.39510899400004 ], [ -125.95939677199999, 50.39390862500008 ], [ -125.959969113999961, 50.393908833000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56905250", "BldgCostT": "39245000", "sL_LossRatio": "0.999780307519899", "sL_AssetLoss": "10477.37273", "sL_BldgLoss": "10475.07093", "sL_StrLoss": "10460.08253", "sL_NStrLoss": "14.9884", "sL_ContLoss": "2.3018", "geom_point": "0101000020E6100000C218CBD37D7D5FC01FFE5890FF304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.958157908999951, 50.389679981000072 ], [ -125.95815791099993, 50.389678223000011 ], [ -125.95812966599999, 50.38967821300011 ], [ -125.958065494999943, 50.389674194000065 ], [ -125.957987902999932, 50.389352405000075 ], [ -125.957771722999965, 50.389276903000052 ], [ -125.957177507, 50.389435008000142 ], [ -125.95678372399999, 50.389454900000061 ], [ -125.956763028999973, 50.389533205000035 ], [ -125.956437334999919, 50.389533078000035 ], [ -125.956437351999938, 50.389515663000097 ], [ -125.95669320199994, 50.388899505000055 ], [ -125.956941381999982, 50.388568997000064 ], [ -125.957226498999944, 50.388426587000026 ], [ -125.957428907999898, 50.388493595000028 ], [ -125.957551689999931, 50.38865158800013 ], [ -125.957874987, 50.388671610000095 ], [ -125.958938890999931, 50.388563294000043 ], [ -125.9592705, 50.388482198000062 ], [ -125.959337003999948, 50.388399587000123 ], [ -125.959353404999916, 50.388012193000108 ], [ -125.9592496, 50.387898193000147 ], [ -125.958346210999935, 50.387876886000079 ], [ -125.958103904999945, 50.387586300000073 ], [ -125.957575797999979, 50.387230291000044 ], [ -125.957476220999922, 50.386791604000095 ], [ -125.957551008999985, 50.386412797000055 ], [ -125.957940696999955, 50.386313098000116 ], [ -125.958357502999959, 50.385780409000112 ], [ -125.95843109299993, 50.384716611000052 ], [ -125.958125904999989, 50.384329201000078 ], [ -125.958078390999944, 50.383340803000131 ], [ -125.957835903, 50.383273803000108 ], [ -125.957397626000017, 50.383474604000092 ], [ -125.957154703999919, 50.383436206000084 ], [ -125.95692404, 50.38263967299999 ], [ -125.958128972999944, 50.382640135000038 ], [ -125.958129788999955, 50.381758344000062 ], [ -125.958352074999979, 50.381758427000079 ], [ -125.958333285999984, 50.381456626000059 ], [ -125.958099601999933, 50.381456538000101 ], [ -125.958099725999944, 50.381322713000088 ], [ -125.957999409999942, 50.381320087000077 ], [ -125.958008686999932, 50.381175181000081 ], [ -125.957893892999948, 50.381178103000146 ], [ -125.957885746, 50.381047237000082 ], [ -125.95759530699999, 50.381039634000075 ], [ -125.957603246999938, 50.380915628000075 ], [ -125.957455737999965, 50.380919383000041 ], [ -125.957429358999931, 50.380495539000115 ], [ -125.957208462999986, 50.380489757000106 ], [ -125.957215121999951, 50.380385764000039 ], [ -125.957000819999976, 50.380391215000067 ], [ -125.956996395999951, 50.380320092000041 ], [ -125.954904146999951, 50.380319260000093 ], [ -125.954905636999925, 50.378825281000097 ], [ -125.95479340199995, 50.378828135000077 ], [ -125.954792100999938, 50.378807216000077 ], [ -125.954783987, 50.378807003000063 ], [ -125.954788098999956, 50.378742841000111 ], [ -125.954712280999956, 50.377523381000081 ], [ -125.954685090999945, 50.377086043000133 ], [ -125.954659384999985, 50.376672576000033 ], [ -125.954882778999917, 50.376666896000124 ], [ -125.95492118599995, 50.376665919000068 ], [ -125.954922101999955, 50.376651622000026 ], [ -125.955198570999968, 50.376658866000071 ], [ -125.956344767999965, 50.376629714000082 ], [ -125.956348454999969, 50.37668898800014 ], [ -125.956607347999977, 50.376695768000019 ], [ -125.956605444, 50.376725528000094 ], [ -125.960533316999957, 50.376726997000056 ], [ -125.960533217999924, 50.376840666000078 ], [ -125.960532902999944, 50.377200830000035 ], [ -125.962612782999898, 50.377201552000052 ], [ -125.962585436, 50.378414169000045 ], [ -125.96520495499999, 50.378295781000134 ], [ -125.965204900999964, 50.37836625900011 ], [ -125.965567318999945, 50.378366373000041 ], [ -125.965566899999956, 50.37891630100011 ], [ -125.965911207999923, 50.378916407000055 ], [ -125.965968648999933, 50.38279075800007 ], [ -125.96576584899999, 50.382790696000029 ], [ -125.965765478999984, 50.38328012100007 ], [ -125.965941509999965, 50.38328017500006 ], [ -125.965941151, 50.383757902000042 ], [ -125.965982991999937, 50.383757914000057 ], [ -125.966017618999956, 50.386093002000095 ], [ -125.962221738999958, 50.386238388000088 ], [ -125.962120028999976, 50.391437342000096 ], [ -125.959593801, 50.391436451000033 ], [ -125.959224631999916, 50.391436315000078 ], [ -125.95929398499996, 50.390199804000069 ], [ -125.95918022099994, 50.389744001000047 ], [ -125.958157908999951, 50.389679981000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14345333", "BldgCostT": "9893333", "sL_LossRatio": "0.999708391346791", "sL_AssetLoss": "2792.44114", "sL_BldgLoss": "2791.62684", "sL_StrLoss": "2786.02484", "sL_NStrLoss": "5.602", "sL_ContLoss": "0.8143", "geom_point": "0101000020E61000005FE29713D77B5FC0A0FE2FAEA32E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.932022099999955, 50.363416763000053 ], [ -125.932118231999951, 50.363069962000068 ], [ -125.932388174999929, 50.36306652600004 ], [ -125.931537655999989, 50.362673565000136 ], [ -125.931538568999912, 50.36207042400013 ], [ -125.937162331999957, 50.362073758000058 ], [ -125.937160772999974, 50.36319578100008 ], [ -125.937802475999945, 50.36319614300006 ], [ -125.937798859999972, 50.365826297000069 ], [ -125.937798422999961, 50.366144110000114 ], [ -125.93779753499993, 50.366790614000124 ], [ -125.933034220999971, 50.366787836000114 ], [ -125.932737734999961, 50.365584538000064 ], [ -125.932251207999954, 50.363609696000012 ], [ -125.932211939999931, 50.363590740000049 ], [ -125.932168120999961, 50.363569609000052 ], [ -125.932061375, 50.363491372000077 ], [ -125.932022099999955, 50.363416763000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999963666928018", "sL_AssetLoss": "86.42264", "sL_BldgLoss": "86.4195", "sL_StrLoss": "86.4", "sL_NStrLoss": "0.0195", "sL_ContLoss": "0.00314", "geom_point": "0101000020E6100000FB7D39928F7D5FC00B0ECC5D0D334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.96146198699999, 50.398574105000137 ], [ -125.962050672999936, 50.39816524600004 ], [ -125.962246117999953, 50.399456097000098 ], [ -125.961849793999946, 50.39945596200009 ], [ -125.96190529799999, 50.399381614000099 ], [ -125.961477496999933, 50.398816213000011 ], [ -125.96146198699999, 50.398574105000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999343354224638", "sL_AssetLoss": "153.812", "sL_BldgLoss": "153.711", "sL_StrLoss": "153", "sL_NStrLoss": "0.711", "sL_ContLoss": "0.101", "geom_point": "0101000020E61000003981C8A645505FC06A0EB5125F0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.253857198999953, 50.12063625800009 ], [ -125.253844533999938, 50.120366650000065 ], [ -125.253425209999989, 50.120374793000039 ], [ -125.253387222999933, 50.119565972000061 ], [ -125.254645178999979, 50.119541542000086 ], [ -125.254657846999962, 50.119811148000068 ], [ -125.255077167999943, 50.119803001000093 ], [ -125.25511518399999, 50.120611823000047 ], [ -125.253857198999953, 50.12063625800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999857514151929", "sL_AssetLoss": "460.3966", "sL_BldgLoss": "460.331", "sL_StrLoss": "460", "sL_NStrLoss": "0.331", "sL_ContLoss": "0.0656", "geom_point": "0101000020E6100000410A4389BB495FC0030C0DBCC11B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.150721091999969, 50.217488709000072 ], [ -125.150386304999984, 50.217198209000074 ], [ -125.15039409299996, 50.217062911000042 ], [ -125.150713699999983, 50.217011595000052 ], [ -125.151151301999931, 50.217363410000068 ], [ -125.151218689999951, 50.217317790000038 ], [ -125.151092993999924, 50.217022992000096 ], [ -125.15082970099999, 50.216785209000044 ], [ -125.150243192999966, 50.216525993000069 ], [ -125.149966494999916, 50.216288109000089 ], [ -125.150073003999978, 50.216151390000071 ], [ -125.150547185999983, 50.216115804000033 ], [ -125.150907806999953, 50.216000387000101 ], [ -125.150853717999951, 50.2157226960001 ], [ -125.15050130899999, 50.215405095000087 ], [ -125.150654295999971, 50.215135344000075 ], [ -125.153453349999964, 50.215156848000149 ], [ -125.153386312999942, 50.21875174300002 ], [ -125.151162056999937, 50.218734661000077 ], [ -125.15090728499996, 50.218482796000032 ], [ -125.151029095999931, 50.218373210000067 ], [ -125.151307675999988, 50.218350397000101 ], [ -125.151520895999965, 50.218085489 ], [ -125.151371603999962, 50.217917392000111 ], [ -125.150816209999917, 50.217737987000049 ], [ -125.150721091999969, 50.217488709000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7776833", "BldgCostT": "5363333", "sL_LossRatio": "0.999800710410973", "sL_AssetLoss": "1388.88339", "sL_BldgLoss": "1388.6066", "sL_StrLoss": "1387.0106", "sL_NStrLoss": "1.596", "sL_ContLoss": "0.27679", "geom_point": "0101000020E610000090BC9436EC4B5FC044DE93034D164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.184280245999929, 50.176909040000098 ], [ -125.184312582999951, 50.175107591000035 ], [ -125.182639593999966, 50.175095202000129 ], [ -125.182704252999926, 50.17150008600003 ], [ -125.188304064999969, 50.171541452000049 ], [ -125.188271889999967, 50.173342910000045 ], [ -125.189944814999947, 50.173355213000015 ], [ -125.189880727999963, 50.17695032600006 ], [ -125.184280245999929, 50.176909040000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6425917", "BldgCostT": "4431667", "sL_LossRatio": "0.999540580425436", "sL_AssetLoss": "1221.759", "sL_BldgLoss": "1221.1977", "sL_StrLoss": "1217.0677", "sL_NStrLoss": "4.13", "sL_ContLoss": "0.5613", "geom_point": "0101000020E6100000F5BA45606C525FC0CF7ADF95B01C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.285290512999936, 50.226426218 ], [ -125.28530092799997, 50.225764800000071 ], [ -125.28438972, 50.225758897000063 ], [ -125.284446392999882, 50.222163961000057 ], [ -125.285607273999972, 50.222171480000071 ], [ -125.285611863, 50.221879890000046 ], [ -125.291217977999949, 50.221916027000127 ], [ -125.291161841999951, 50.225510967000105 ], [ -125.290912077999963, 50.22550936300005 ], [ -125.290897188999935, 50.226462372000057 ], [ -125.285290512999936, 50.226426218 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10147583", "BldgCostT": "6998333", "sL_LossRatio": "0.999095987605704", "sL_AssetLoss": "2388.9053", "sL_BldgLoss": "2386.7457", "sL_StrLoss": "2369.1407", "sL_NStrLoss": "17.605", "sL_ContLoss": "2.1596", "geom_point": "0101000020E61000003AB3D9682B535FC01498A9A4291E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.29951433799999, 50.23977835200008 ], [ -125.299569428999973, 50.236209503000083 ], [ -125.294939983999981, 50.236180043000033 ], [ -125.294947200999943, 50.235715495000079 ], [ -125.294389089999967, 50.23571193 ], [ -125.294444982999892, 50.23211703600002 ], [ -125.300052368999985, 50.232152724000045 ], [ -125.30004520499989, 50.23261727400012 ], [ -125.300603279, 50.232620811000054 ], [ -125.300558657999929, 50.235515953000089 ], [ -125.305397270999961, 50.235546495000037 ], [ -125.305372379999966, 50.237172688000086 ], [ -125.304741387999954, 50.237211209000051 ], [ -125.303777585999967, 50.236960495000147 ], [ -125.303709989999959, 50.237024607000095 ], [ -125.303984523999986, 50.237773805000117 ], [ -125.303934707999971, 50.238494405000047 ], [ -125.302739335999931, 50.239798760000113 ], [ -125.29951433799999, 50.23977835200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.999627240943278", "sL_AssetLoss": "1039.5455", "sL_BldgLoss": "1039.158", "sL_StrLoss": "1037", "sL_NStrLoss": "2.158", "sL_ContLoss": "0.3875", "geom_point": "0101000020E6100000EFD454FD27555FC0B9DA5052DC174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.328700893999937, 50.188255520000055 ], [ -125.328711503999941, 50.187537499000022 ], [ -125.328088513999944, 50.187533705000078 ], [ -125.328141681999966, 50.183938569000112 ], [ -125.33074474299994, 50.183954395000086 ], [ -125.331001702999941, 50.184388708000043 ], [ -125.331167812999979, 50.185231790000053 ], [ -125.331631476999945, 50.185528094000048 ], [ -125.332022390999981, 50.185502390000082 ], [ -125.332298189999946, 50.185711811000054 ], [ -125.333012290999989, 50.185680402000116 ], [ -125.333153693999947, 50.185740304000049 ], [ -125.332873891999952, 50.186042210000089 ], [ -125.333110799999957, 50.186271504000075 ], [ -125.333255085999966, 50.186637491000027 ], [ -125.33328549799991, 50.187266998000041 ], [ -125.334757305, 50.188172789000085 ], [ -125.334774690999922, 50.188196217000069 ], [ -125.334304299999957, 50.188193379000083 ], [ -125.334302891999954, 50.188289471000076 ], [ -125.328700893999937, 50.188255520000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.998422513314582", "sL_AssetLoss": "1445.971", "sL_BldgLoss": "1443.69", "sL_StrLoss": "1428", "sL_NStrLoss": "15.69", "sL_ContLoss": "2.281", "geom_point": "0101000020E61000006FFD2E4B7F4E5FC0F396E5CA24244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.224294013999966, 50.280594698000129 ], [ -125.22886249, 50.280626662000081 ], [ -125.228801337, 50.284221296000041 ], [ -125.224825492999912, 50.284193491000131 ], [ -125.224816009999955, 50.284157397000037 ], [ -125.224466913999933, 50.283606205000048 ], [ -125.224329590999943, 50.283086392000058 ], [ -125.223905097999975, 50.282681909000068 ], [ -125.223923708999948, 50.281898605000052 ], [ -125.224220277999905, 50.281344598000025 ], [ -125.224272309999961, 50.280623892000072 ], [ -125.224294013999966, 50.280594698000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "0.999640186408989", "sL_AssetLoss": "375.75012", "sL_BldgLoss": "375.61492", "sL_StrLoss": "375.01222", "sL_NStrLoss": "0.6027", "sL_ContLoss": "0.1352", "geom_point": "0101000020E610000004B8303DA7495FC0D87902FE7C174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.147887138999948, 50.184672987000042 ], [ -125.147914352999933, 50.183221945000057 ], [ -125.147990198999977, 50.183196588000023 ], [ -125.14823651199994, 50.182733808000144 ], [ -125.148701204999938, 50.182508686000133 ], [ -125.148970013999985, 50.182575701000047 ], [ -125.149905602999965, 50.183133986 ], [ -125.150304089999935, 50.183539910000029 ], [ -125.150516209999921, 50.183591110000101 ], [ -125.15062090299989, 50.183427286000018 ], [ -125.15031581199996, 50.183189486000103 ], [ -125.150703705999916, 50.182767887000082 ], [ -125.150840007999975, 50.18177669400005 ], [ -125.151192273999982, 50.181527494000136 ], [ -125.151428802999931, 50.181486095000061 ], [ -125.151681684999943, 50.181491805000093 ], [ -125.15182729699994, 50.181595786000024 ], [ -125.1519828939999, 50.181971799000095 ], [ -125.15209341799995, 50.183175296000123 ], [ -125.152356709999964, 50.183394592000113 ], [ -125.152445405999913, 50.183806208000107 ], [ -125.152642396999923, 50.18383891100008 ], [ -125.153008590999946, 50.183579691000084 ], [ -125.153070589999913, 50.183390303000103 ], [ -125.153096702, 50.182715196000053 ], [ -125.15299088099998, 50.182258097000094 ], [ -125.153112001999901, 50.181500401000044 ], [ -125.153367193999955, 50.181298204000015 ], [ -125.153551745999934, 50.181323689000131 ], [ -125.153488542999966, 50.184716121000051 ], [ -125.147887138999948, 50.184672987000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31504083", "BldgCostT": "20043333", "sL_LossRatio": "0.955218582142977", "sL_AssetLoss": "4047.89997", "sL_BldgLoss": "3866.62927", "sL_StrLoss": "3793.31147", "sL_NStrLoss": "73.3178", "sL_ContLoss": "181.2707", "geom_point": "0101000020E6100000307777AEB94C5FC0A9B1AD34E3174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.199403269999962, 50.192427293000101 ], [ -125.199409958999965, 50.192047799000122 ], [ -125.197999940000017, 50.192037557000035 ], [ -125.198009282999962, 50.191508395 ], [ -125.196046595999988, 50.191494109000068 ], [ -125.196108136999925, 50.188016652000051 ], [ -125.190764910999988, 50.18797758100002 ], [ -125.190828942999971, 50.184382520000071 ], [ -125.194167403, 50.184406963000072 ], [ -125.194203429999959, 50.182375600000121 ], [ -125.199461533, 50.182413892000078 ], [ -125.199487204999954, 50.180956729000087 ], [ -125.205088199000016, 50.180997242000025 ], [ -125.205025298999914, 50.18459232700009 ], [ -125.199766939999975, 50.184554301000027 ], [ -125.199741273999919, 50.186011457000056 ], [ -125.196402693999971, 50.185987184000027 ], [ -125.19636884099999, 50.187900946000084 ], [ -125.20171206399999, 50.187939745000037 ], [ -125.20170276499999, 50.188468910000061 ], [ -125.203665321999949, 50.188483096000027 ], [ -125.203658669999953, 50.188862592000106 ], [ -125.205068590999971, 50.188872762000067 ], [ -125.205005677999949, 50.192467809000092 ], [ -125.199403269999962, 50.192427293000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999887980502492", "sL_AssetLoss": "719.5176", "sL_BldgLoss": "719.437", "sL_StrLoss": "719", "sL_NStrLoss": "0.437", "sL_ContLoss": "0.0806", "geom_point": "0101000020E610000008FD1212A5535FC08BCEF06EFE1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.304580791999953, 50.243691473000084 ], [ -125.304596899999979, 50.242640513000012 ], [ -125.30408103799999, 50.242637264000045 ], [ -125.304114789999986, 50.240436623000065 ], [ -125.304634889999974, 50.240207690000062 ], [ -125.305976516999962, 50.239830300000101 ], [ -125.306534507999956, 50.239756208000095 ], [ -125.307288915999962, 50.239994093000114 ], [ -125.307834993999933, 50.240278891000052 ], [ -125.307843300999977, 50.2404142010001 ], [ -125.307647580999969, 50.240427094000019 ], [ -125.307022893999957, 50.240277488000039 ], [ -125.306843079999936, 50.240334494000038 ], [ -125.306851111999933, 50.240523905000025 ], [ -125.307254687999958, 50.24100099800004 ], [ -125.307403400999959, 50.241466691000021 ], [ -125.308174301999955, 50.241747287000067 ], [ -125.309116095999968, 50.241801389000067 ], [ -125.309580623999977, 50.242151803000056 ], [ -125.310769431999944, 50.241768390000061 ], [ -125.310741531999952, 50.243605032000104 ], [ -125.310191517999925, 50.243601599000051 ], [ -125.310189616999978, 50.24372664600002 ], [ -125.304580791999953, 50.243691473000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.999226035638773", "sL_AssetLoss": "796.4191", "sL_BldgLoss": "795.8027", "sL_StrLoss": "792.0297", "sL_NStrLoss": "3.773", "sL_ContLoss": "0.6164", "geom_point": "0101000020E61000004B46A543AD505FC051B50684900C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.258251596000022, 50.099680988000038 ], [ -125.25827620499993, 50.099014496000088 ], [ -125.258426606999961, 50.098975990000071 ], [ -125.258939889999937, 50.099182500000047 ], [ -125.259207089999947, 50.099185396000074 ], [ -125.259313506999959, 50.099084198000043 ], [ -125.258875703999976, 50.098696898000036 ], [ -125.258809210999971, 50.098158504000097 ], [ -125.258614100999978, 50.097902192000092 ], [ -125.259017392999979, 50.097264092000053 ], [ -125.258984385999923, 50.097148699000037 ], [ -125.258239917999958, 50.096784100000058 ], [ -125.258078932999936, 50.096345907000092 ], [ -125.26259708799995, 50.096376269000103 ], [ -125.262538846, 50.099971785000029 ], [ -125.258115987999972, 50.099942065000064 ], [ -125.258251596000022, 50.099680988000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3697500", "BldgCostT": "2550000", "sL_LossRatio": "0.999074342538319", "sL_AssetLoss": "1020.896", "sL_BldgLoss": "1019.951", "sL_StrLoss": "1014", "sL_NStrLoss": "5.951", "sL_ContLoss": "0.945", "geom_point": "0101000020E61000008F39CFD8174E5FC07EAD2A7FE7234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.21729607099999, 50.281888739000038 ], [ -125.217321673999962, 50.280405975000093 ], [ -125.21742249099999, 50.280349111000135 ], [ -125.217325710999944, 50.280172062000048 ], [ -125.21733469499999, 50.27965174300008 ], [ -125.217524611999949, 50.279501697000015 ], [ -125.218553384999936, 50.279896196000095 ], [ -125.218917993000019, 50.279889002000111 ], [ -125.219256212999952, 50.27900180500005 ], [ -125.219615773, 50.278687315000077 ], [ -125.220251298, 50.278691800000104 ], [ -125.220197504999959, 50.278741096000068 ], [ -125.220263702999901, 50.279242491000048 ], [ -125.220913206999938, 50.279347789000028 ], [ -125.221200578999969, 50.279477500000077 ], [ -125.221381297999969, 50.279419104000091 ], [ -125.221572694000017, 50.279308002000036 ], [ -125.221586907999949, 50.279047309000113 ], [ -125.22137881899998, 50.278780999000091 ], [ -125.221235231999984, 50.278698737000113 ], [ -125.222964701999928, 50.278710908000093 ], [ -125.222925503999988, 50.280997697000046 ], [ -125.222033209999935, 50.281971191000082 ], [ -125.22138218500001, 50.282163495000134 ], [ -125.220912291999952, 50.282046712000081 ], [ -125.22076469699999, 50.281860210000097 ], [ -125.220466893999941, 50.280911614000061 ], [ -125.220323288999936, 50.280833294000111 ], [ -125.21995820599993, 50.280850386000118 ], [ -125.219629077999983, 50.281018399000068 ], [ -125.219520002999957, 50.281353095000036 ], [ -125.219181388999971, 50.281656491000099 ], [ -125.219416286999973, 50.282154997000127 ], [ -125.219362655999959, 50.282280604000071 ], [ -125.217618849999923, 50.282268277000085 ], [ -125.21729607099999, 50.281888739000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4623084", "BldgCostT": "3188334", "sL_LossRatio": "0.999676059219112", "sL_AssetLoss": "847.6858", "sL_BldgLoss": "847.4112", "sL_StrLoss": "846.0138", "sL_NStrLoss": "1.3974", "sL_ContLoss": "0.2746", "geom_point": "0101000020E610000030696BC8684B5FC0B8A9E410AF144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.17642559799999, 50.160944813000043 ], [ -125.176124409999957, 50.160796710000042 ], [ -125.175757894999933, 50.161074386000045 ], [ -125.175340144999979, 50.16112249000016 ], [ -125.175364659999971, 50.159771074000069 ], [ -125.180963021999915, 50.159812813000038 ], [ -125.180898242999945, 50.163407983000091 ], [ -125.175299438, 50.163366241000048 ], [ -125.17531898, 50.162289187000049 ], [ -125.17544699099993, 50.162230807000121 ], [ -125.17614348299999, 50.162136799000024 ], [ -125.176188617999955, 50.161605600000058 ], [ -125.176504387999955, 50.161176909000105 ], [ -125.17642559799999, 50.160944813000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "0.999765015614961", "sL_AssetLoss": "1108.5843", "sL_BldgLoss": "1108.3238", "sL_StrLoss": "1107", "sL_NStrLoss": "1.3238", "sL_ContLoss": "0.2605", "geom_point": "0101000020E61000003358482B444A5FC0B432A7ECF0154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.15706665899999, 50.174046947000072 ], [ -125.157110281999962, 50.171695116000102 ], [ -125.157782998999977, 50.171699014000062 ], [ -125.158045196, 50.171946797000025 ], [ -125.15851528899999, 50.172090596000047 ], [ -125.158870409999949, 50.172524987000045 ], [ -125.159021799999934, 50.172449484000019 ], [ -125.158903708999929, 50.172047908000124 ], [ -125.158972073999934, 50.171973896000054 ], [ -125.159802106999948, 50.171787297000051 ], [ -125.159949198999982, 50.171587889000058 ], [ -125.160198591999944, 50.171565090000094 ], [ -125.160875287999943, 50.17195680500005 ], [ -125.161244524999972, 50.172049303000108 ], [ -125.161306799999934, 50.171921187000095 ], [ -125.161146398999932, 50.171771594000091 ], [ -125.159888107000015, 50.171183382000102 ], [ -125.159308598999985, 50.169529911000033 ], [ -125.159456413999948, 50.169068499000048 ], [ -125.159111410999955, 50.168256697000047 ], [ -125.159243062999934, 50.167773330000067 ], [ -125.162235951999946, 50.167796111000037 ], [ -125.16218628799993, 50.170490352000094 ], [ -125.162733, 50.170494505000065 ], [ -125.162666762999962, 50.174089615000071 ], [ -125.15706665899999, 50.174046947000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.999381361666925", "sL_AssetLoss": "1219.4524", "sL_BldgLoss": "1218.698", "sL_StrLoss": "1214", "sL_NStrLoss": "4.698", "sL_ContLoss": "0.7544", "geom_point": "0101000020E61000000D89B5D7864A5FC04C38F4168F164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.161713114999927, 50.174422966000044 ], [ -125.16731327, 50.174465398000073 ], [ -125.167247388999954, 50.178060491000096 ], [ -125.16164679299996, 50.178018057000081 ], [ -125.161713114999927, 50.174422966000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36537583", "BldgCostT": "25198333", "sL_LossRatio": "0.998668343545226", "sL_AssetLoss": "10027.361", "sL_BldgLoss": "10014.008", "sL_StrLoss": "9911.038", "sL_NStrLoss": "102.97", "sL_ContLoss": "13.353", "geom_point": "0101000020E6100000EBD14CDEDD4D5FC000F5F27D690D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.223283895999941, 50.115566595000047 ], [ -125.222627206, 50.115560899000052 ], [ -125.22273178199994, 50.116305796000056 ], [ -125.222388806999945, 50.116475289000064 ], [ -125.222066394999956, 50.116453901000078 ], [ -125.222172608, 50.116613391000072 ], [ -125.22211040699996, 50.116794308000117 ], [ -125.221710808999902, 50.116622 ], [ -125.221333007999959, 50.116018093000022 ], [ -125.220301690999975, 50.115785911000046 ], [ -125.219973608999936, 50.115639299000094 ], [ -125.219836710999985, 50.115417088000058 ], [ -125.219896901999931, 50.115200597000118 ], [ -125.220372803999936, 50.115190589000051 ], [ -125.220968380999977, 50.114801795000069 ], [ -125.220675515999986, 50.114501296000107 ], [ -125.220629294999981, 50.113512899000085 ], [ -125.220347899999979, 50.113185313000081 ], [ -125.220338512999945, 50.11297029800005 ], [ -125.221624872999982, 50.112629894000108 ], [ -125.221868617999945, 50.112454696000093 ], [ -125.221889594999965, 50.11233789200007 ], [ -125.22178738299999, 50.112241105000059 ], [ -125.22121399400001, 50.112215490000061 ], [ -125.220691099999925, 50.111829491000023 ], [ -125.220326295999911, 50.111791012000033 ], [ -125.220178914999948, 50.111929203000052 ], [ -125.220264488999973, 50.112557301000031 ], [ -125.220188610999955, 50.112765203000087 ], [ -125.220018710999938, 50.112696809000013 ], [ -125.219648810999942, 50.112245409000117 ], [ -125.219552099999959, 50.112265288000081 ], [ -125.21971310399999, 50.112748107000094 ], [ -125.219630301999985, 50.112758104000115 ], [ -125.219444909999936, 50.112689690000117 ], [ -125.21890090699992, 50.11214279600005 ], [ -125.218150290000011, 50.111913506000036 ], [ -125.217847281999951, 50.111712705000109 ], [ -125.217850681999948, 50.111689540000093 ], [ -125.2179, 50.111352402000065 ], [ -125.218307611999961, 50.111380896000092 ], [ -125.218884410999962, 50.111152991000047 ], [ -125.218948798999975, 50.110738493000085 ], [ -125.218771089999976, 50.109896794000079 ], [ -125.219323791999969, 50.109787197000095 ], [ -125.21965127699994, 50.109573495000056 ], [ -125.219645707999945, 50.10945679400001 ], [ -125.219026, 50.109073596000059 ], [ -125.218743287999956, 50.108709002000111 ], [ -125.219331711, 50.108140799000076 ], [ -125.219524500999981, 50.107740608000043 ], [ -125.219519098999911, 50.107354601000054 ], [ -125.219260814999984, 50.107215101000158 ], [ -125.219250398999961, 50.106649588000025 ], [ -125.218980499999972, 50.106572692000093 ], [ -125.21882631899993, 50.106366878000088 ], [ -125.218801296999928, 50.106333488000118 ], [ -125.218301087999961, 50.106109905000061 ], [ -125.218212778999956, 50.106003097000041 ], [ -125.218269392999943, 50.10574101600006 ], [ -125.217725975999926, 50.105175595000048 ], [ -125.217228102999982, 50.104996109000083 ], [ -125.21722711399994, 50.104654299000039 ], [ -125.216961209999951, 50.104063877000023 ], [ -125.216869815999942, 50.103860995000026 ], [ -125.216931312999932, 50.103104787000056 ], [ -125.2165872, 50.102589199000064 ], [ -125.213652097999955, 50.101412789000094 ], [ -125.213519411999968, 50.101385149000059 ], [ -125.213368197999969, 50.101353645000103 ], [ -125.21306111799997, 50.101289686000079 ], [ -125.213057307999975, 50.101288900000085 ], [ -125.212472086999981, 50.101300291000079 ], [ -125.21191911699999, 50.101437006000026 ], [ -125.211659481999931, 50.101595092000103 ], [ -125.211096638999976, 50.102325988000061 ], [ -125.210907105, 50.102572110999986 ], [ -125.210384517999927, 50.103049198000114 ], [ -125.210091873999914, 50.103163001000084 ], [ -125.209950550999935, 50.103217962000073 ], [ -125.209595243999942, 50.103356134000116 ], [ -125.208901281999943, 50.103625998000048 ], [ -125.20824980299993, 50.103755600000092 ], [ -125.207146771999987, 50.10375847500007 ], [ -125.206600013999932, 50.103759895000167 ], [ -125.206030664999915, 50.103672319000118 ], [ -125.205979817999946, 50.103664501000011 ], [ -125.204872116999965, 50.103298497000019 ], [ -125.204212313999989, 50.102942393000085 ], [ -125.203165916, 50.102080794000059 ], [ -125.202891207999983, 50.101590904000048 ], [ -125.202647204999963, 50.100534106000076 ], [ -125.202179095999924, 50.099490092000067 ], [ -125.20149192299999, 50.095469854000022 ], [ -125.201498145999921, 50.095469898000026 ], [ -125.201497946999922, 50.095465578000052 ], [ -125.201491214, 50.095465706000077 ], [ -125.201395980999948, 50.094908491000126 ], [ -125.201019719999977, 50.094183931000025 ], [ -125.201004682999951, 50.093855821000034 ], [ -125.200822074999962, 50.093859284000104 ], [ -125.200204614999961, 50.09302420900012 ], [ -125.199655389999947, 50.092621209000086 ], [ -125.197490087999967, 50.092662491000112 ], [ -125.196816107999908, 50.092621189000077 ], [ -125.195673689999921, 50.092381909000082 ], [ -125.19508588399999, 50.09206000400011 ], [ -125.194631720999951, 50.091618504000046 ], [ -125.193314583999964, 50.090006294000084 ], [ -125.192876199999944, 50.089322691000049 ], [ -125.192349603999901, 50.088774385000086 ], [ -125.192255817999921, 50.088754552000111 ], [ -125.192820192999974, 50.088793778000138 ], [ -125.195735113999945, 50.091666692000096 ], [ -125.195993402999974, 50.091839392000075 ], [ -125.196261469999982, 50.091933896000064 ], [ -125.196584405999943, 50.092009997000076 ], [ -125.199924200999959, 50.092443389000096 ], [ -125.200018022999956, 50.092504012000077 ], [ -125.200318117999984, 50.092697897000029 ], [ -125.200476074000036, 50.092933968000104 ], [ -125.201599814999966, 50.094613085000091 ], [ -125.201745612999986, 50.09498270600006 ], [ -125.201860003999968, 50.095473488000039 ], [ -125.20204020599999, 50.09596029900009 ], [ -125.202320696999919, 50.096464815000068 ], [ -125.202844592999966, 50.097278600000045 ], [ -125.204957953999951, 50.100021005000031 ], [ -125.205582506999917, 50.100831390000067 ], [ -125.205914317999969, 50.101043296000121 ], [ -125.207373186, 50.101563505000051 ], [ -125.207975691999977, 50.101642486000088 ], [ -125.208625108999982, 50.101683106000088 ], [ -125.20931190499999, 50.101661108000037 ], [ -125.209321008999936, 50.101056104000023 ], [ -125.209345199000012, 50.100146482000049 ], [ -125.209348308999907, 50.099999367000073 ], [ -125.209358127999948, 50.099535944000074 ], [ -125.20967410499999, 50.099196147000129 ], [ -125.21158262199998, 50.097612669000092 ], [ -125.211842527999949, 50.097165744000058 ], [ -125.211929300999898, 50.097147890000052 ], [ -125.212030598999959, 50.096951114000056 ], [ -125.212159865, 50.096862483000081 ], [ -125.212359135999947, 50.09634744400006 ], [ -125.212547620999942, 50.096744742000055 ], [ -125.212554728999976, 50.096759707000018 ], [ -125.212683373999965, 50.096836097000057 ], [ -125.212919501999934, 50.096924111000078 ], [ -125.213874774999937, 50.097050493000054 ], [ -125.214401099999947, 50.097172887000092 ], [ -125.21497700299993, 50.097415292000044 ], [ -125.215513210999973, 50.097693290000073 ], [ -125.216021893999965, 50.098024998000028 ], [ -125.216365925999966, 50.098376035000051 ], [ -125.216660698999945, 50.098676808000128 ], [ -125.217014399999982, 50.099159401000094 ], [ -125.21728010799994, 50.099966788000081 ], [ -125.217295239999942, 50.099997271000049 ], [ -125.217399041999954, 50.100205870000117 ], [ -125.22132389799998, 50.100360062000071 ], [ -125.221415232999931, 50.103331984000143 ], [ -125.223471347999933, 50.103304313000088 ], [ -125.22347050899999, 50.103353487000049 ], [ -125.22419152099998, 50.103358571000051 ], [ -125.224178868999928, 50.104100954000025 ], [ -125.225058634999982, 50.104107150000033 ], [ -125.224997418999948, 50.107702609000057 ], [ -125.22479087, 50.107701155000086 ], [ -125.224786215999984, 50.107974382000037 ], [ -125.225149142999925, 50.107967424000073 ], [ -125.225161640999929, 50.108237036000041 ], [ -125.225580869999973, 50.108228998000087 ], [ -125.225593369999928, 50.108498611000073 ], [ -125.227270290999982, 50.108466441000111 ], [ -125.227307821999943, 50.109275278000034 ], [ -125.22688858399999, 50.109283323000049 ], [ -125.226901094999974, 50.1095529360001 ], [ -125.226592553999936, 50.109558855000053 ], [ -125.226538385999945, 50.112746257000019 ], [ -125.225540300999953, 50.112739242000046 ], [ -125.2255248, 50.113650081000081 ], [ -125.224322363999974, 50.113641617000035 ], [ -125.224312988999912, 50.114191656000095 ], [ -125.224278402999985, 50.116220626000015 ], [ -125.223364141999951, 50.116811272000064 ], [ -125.223316106999974, 50.116769312000017 ], [ -125.223268017999928, 50.116727294000079 ], [ -125.223283895999941, 50.115566595000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "0.999275041136527", "sL_AssetLoss": "1380.768", "sL_BldgLoss": "1379.767", "sL_StrLoss": "1374", "sL_NStrLoss": "5.767", "sL_ContLoss": "1.001", "geom_point": "0101000020E6100000BA0A52BEDA4E5FC0A9683036420F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.232358212999898, 50.121167998000026 ], [ -125.232344096999924, 50.120538503000091 ], [ -125.232488288999974, 50.119770898000077 ], [ -125.232144619999971, 50.11958 ], [ -125.231997179999937, 50.119577785000089 ], [ -125.231864586999933, 50.119575796000042 ], [ -125.231520001999982, 50.119691091000064 ], [ -125.231280202999969, 50.119964595000049 ], [ -125.231271895999924, 50.120360498000068 ], [ -125.231109111999899, 50.120454494000093 ], [ -125.22997620799994, 50.120494406000084 ], [ -125.229657431999925, 50.120425156000074 ], [ -125.229595804999917, 50.120411784000126 ], [ -125.229415917000026, 50.120460196000053 ], [ -125.229204547000023, 50.120314724000124 ], [ -125.22824461099998, 50.119654091000022 ], [ -125.228094809999945, 50.119144203000062 ], [ -125.227766904999939, 50.118701286000082 ], [ -125.227788477, 50.118574597000077 ], [ -125.22808070399999, 50.118514702000034 ], [ -125.228088419999921, 50.118397905000066 ], [ -125.227771994999898, 50.118197109000086 ], [ -125.227638092999925, 50.118343800000076 ], [ -125.227483485999969, 50.118302495000123 ], [ -125.227302650999917, 50.118073995000017 ], [ -125.228296679999971, 50.117417862000067 ], [ -125.22898696499999, 50.11742269700008 ], [ -125.232035990999947, 50.117444002000035 ], [ -125.232025469999911, 50.11806738500011 ], [ -125.232094813999979, 50.118067869000114 ], [ -125.236110771999961, 50.118095799000045 ], [ -125.236076976999968, 50.12010878100012 ], [ -125.236050410999951, 50.121691197000061 ], [ -125.235189789999964, 50.121685224000039 ], [ -125.235191602000015, 50.121598101000096 ], [ -125.235649992999953, 50.121247806000028 ], [ -125.235470285999924, 50.120991401000012 ], [ -125.235196290999951, 50.120816304000122 ], [ -125.234653689999959, 50.120601195000113 ], [ -125.234204986999913, 50.12055699400004 ], [ -125.233710302999953, 50.120772098000032 ], [ -125.233358699999954, 50.121625196000103 ], [ -125.23325714500001, 50.121671786000036 ], [ -125.233079184999951, 50.121670547000072 ], [ -125.23293909899995, 50.121633784000139 ], [ -125.232566912999914, 50.121424404000031 ], [ -125.232358212999898, 50.121167998000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.999020627333222", "sL_AssetLoss": "1421.318", "sL_BldgLoss": "1419.926", "sL_StrLoss": "1411", "sL_NStrLoss": "8.926", "sL_ContLoss": "1.392", "geom_point": "0101000020E6100000DDF0F594A0515FC073BAD16C431A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.272652911999955, 50.203366720000133 ], [ -125.278256732, 50.203403516000023 ], [ -125.27819959199995, 50.206998536000093 ], [ -125.272595328999955, 50.206961737000029 ], [ -125.272652911999955, 50.203366720000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.999774482311143", "sL_AssetLoss": "938.2856", "sL_BldgLoss": "938.074", "sL_StrLoss": "937", "sL_NStrLoss": "1.074", "sL_ContLoss": "0.2116", "geom_point": "0101000020E6100000D8D1BC0C144C5FC0C4F7B47952174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.185955381999946, 50.180386288000122 ], [ -125.19155629299992, 50.180427488000106 ], [ -125.191492322999949, 50.18402256800006 ], [ -125.185890968999928, 50.183981365000079 ], [ -125.185955381999946, 50.180386288000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5215167", "BldgCostT": "3596667", "sL_LossRatio": "0.999926777900968", "sL_AssetLoss": "759.47017", "sL_BldgLoss": "759.41456", "sL_StrLoss": "759.20076", "sL_NStrLoss": "0.2138", "sL_ContLoss": "0.05561", "geom_point": "0101000020E61000004B1E4FCB4F565FC07FD2BB3E141F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.345451456999982, 50.245195714000033 ], [ -125.345492215, 50.242370444000059 ], [ -125.345548619999988, 50.242370778000073 ], [ -125.345561566999976, 50.241473143000029 ], [ -125.346731829999953, 50.241480071000055 ], [ -125.34673754399995, 50.241083272000061 ], [ -125.352346076999964, 50.241116304000045 ], [ -125.35234123, 50.241455850000101 ], [ -125.352605289999985, 50.241457398000058 ], [ -125.352576052999922, 50.243506402000094 ], [ -125.352336316999967, 50.243353805000083 ], [ -125.350307279999939, 50.243439303000045 ], [ -125.349910598999912, 50.243645809000043 ], [ -125.349730297999926, 50.243990390000064 ], [ -125.349273294999975, 50.244125714000049 ], [ -125.348434924999935, 50.244736703000079 ], [ -125.347951006999978, 50.244899087000043 ], [ -125.347158618000023, 50.245041504000014 ], [ -125.345581289999942, 50.245172492000087 ], [ -125.345451456999982, 50.245195714000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5597000", "BldgCostT": "3860000", "sL_LossRatio": "0.999413305590626", "sL_AssetLoss": "1202.6704", "sL_BldgLoss": "1201.9648", "sL_StrLoss": "1196.0718", "sL_NStrLoss": "5.893", "sL_ContLoss": "0.7056", "geom_point": "0101000020E6100000E7749B683E515FC071BE01FB220D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.271986397999939, 50.104631267000073 ], [ -125.27197364, 50.104361663000127 ], [ -125.271135277000013, 50.10437807200001 ], [ -125.27112252199997, 50.104108468000021 ], [ -125.270703342999951, 50.104116670000103 ], [ -125.270690590999962, 50.1038470660001 ], [ -125.269852235999949, 50.103863466000064 ], [ -125.269839490999956, 50.103593862000096 ], [ -125.267324436999914, 50.103643026000057 ], [ -125.267337169999962, 50.103912631000092 ], [ -125.26440291699997, 50.103969922000033 ], [ -125.264390200999941, 50.103700315000019 ], [ -125.263971022999982, 50.10370849400001 ], [ -125.263963198999974, 50.103542554000072 ], [ -125.263932881999921, 50.102899676000106 ], [ -125.265190391999965, 50.102875138000066 ], [ -125.265152231999949, 50.102066320000027 ], [ -125.264733067999913, 50.102074501000047 ], [ -125.264720351999983, 50.101804895000015 ], [ -125.263882028999944, 50.10182125100004 ], [ -125.263843891999969, 50.101012434000026 ], [ -125.265939659999972, 50.100971532000074 ], [ -125.265952383999917, 50.101241137000102 ], [ -125.266371538999948, 50.101232953000093 ], [ -125.26639699399999, 50.101772163000135 ], [ -125.266816152999965, 50.101763977000061 ], [ -125.266854341999974, 50.102572793000078 ], [ -125.268111840999936, 50.102548223000056 ], [ -125.268099103999972, 50.102278618000085 ], [ -125.269356594999948, 50.102254035000044 ], [ -125.269343851999906, 50.101984429000048 ], [ -125.269763009999963, 50.101976232000077 ], [ -125.269750264999942, 50.101706627000119 ], [ -125.269331108999921, 50.101714825000052 ], [ -125.269241909999948, 50.0998275890001 ], [ -125.270499333999922, 50.099802995000033 ], [ -125.270524833999914, 50.10034220500004 ], [ -125.27094398, 50.100334003000043 ], [ -125.270969482999959, 50.100873212000089 ], [ -125.27138863299993, 50.100865009000124 ], [ -125.27140139, 50.101134614000024 ], [ -125.272527659999966, 50.101112563000108 ], [ -125.273035203999896, 50.102972285000114 ], [ -125.273141185000014, 50.103158898000061 ], [ -125.273368988999948, 50.103235804000093 ], [ -125.273618199999945, 50.1031774080001 ], [ -125.273640529999938, 50.102979746000052 ], [ -125.27400568799996, 50.102972592000071 ], [ -125.274018457999929, 50.103242196000075 ], [ -125.274856797999988, 50.10322576600003 ], [ -125.274895125999976, 50.1040345770001 ], [ -125.274475947999946, 50.104042793000062 ], [ -125.274488720999926, 50.104312397000136 ], [ -125.274126937999981, 50.104319487000105 ], [ -125.27406954199995, 50.104320612000045 ], [ -125.274082311999976, 50.10459021600014 ], [ -125.271986397999939, 50.104631267000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64690850", "BldgCostT": "38243562", "sL_LossRatio": "0.781944792407382", "sL_AssetLoss": "21869.347", "sL_BldgLoss": "17100.622", "sL_StrLoss": "14741.572", "sL_NStrLoss": "2359.05", "sL_ContLoss": "4768.725", "geom_point": "0101000020E6100000C1F593F752545FC0C3F961A57E084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.316050201999943, 50.070854611000122 ], [ -125.316057199999989, 50.070388517 ], [ -125.314759163999966, 50.070380438000058 ], [ -125.31481324799995, 50.066784755000064 ], [ -125.31504251599992, 50.066786182000023 ], [ -125.315052162999962, 50.066144477000101 ], [ -125.314404113999984, 50.066140439000044 ], [ -125.314432653999958, 50.064243758 ], [ -125.314365929999909, 50.064243343000051 ], [ -125.314420034999927, 50.060647630000076 ], [ -125.314557114999928, 50.06064848500003 ], [ -125.314573751999902, 50.059542541000042 ], [ -125.318143820999964, 50.059553722000061 ], [ -125.320596037999977, 50.059567376000047 ], [ -125.320714102999943, 50.065337264000135 ], [ -125.319968678999942, 50.073738212000059 ], [ -125.318297915999921, 50.073712046000054 ], [ -125.314714741999978, 50.073655811000073 ], [ -125.314757002999897, 50.070846562000035 ], [ -125.316050201999943, 50.070854611000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99139807", "BldgCostT": "57383224", "sL_LossRatio": "0.799243972847464", "sL_AssetLoss": "16658.6874", "sL_BldgLoss": "13314.3555", "sL_StrLoss": "11969.5365", "sL_NStrLoss": "1344.819", "sL_ContLoss": "3344.3319", "geom_point": "0101000020E61000009381D99001525FC084943C2AC0084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.283215730999942, 50.076076097000026 ], [ -125.283202921999958, 50.075806494000069 ], [ -125.281527206999939, 50.075839456000068 ], [ -125.2815188, 50.075662422000107 ], [ -125.2808708, 50.075658188000084 ], [ -125.28011512399999, 50.075083503000016 ], [ -125.279229885999911, 50.074677603000069 ], [ -125.27873972, 50.074331179000097 ], [ -125.278770526999935, 50.072385506000053 ], [ -125.276534187999943, 50.072429406 ], [ -125.276441313999953, 50.072287207000038 ], [ -125.276442169999925, 50.072016492000046 ], [ -125.276445111999962, 50.071082505000092 ], [ -125.2764530379999, 50.069262065000075 ], [ -125.27645976499997, 50.066902228000068 ], [ -125.276399564999977, 50.066032470000081 ], [ -125.276231875999898, 50.065597145000069 ], [ -125.275975465999949, 50.065250333000066 ], [ -125.27565752799994, 50.06482021100004 ], [ -125.275556380999944, 50.06441768500008 ], [ -125.275599657999919, 50.063452435000038 ], [ -125.273975141999969, 50.063455204000064 ], [ -125.273967211999974, 50.062727801000101 ], [ -125.27383380699996, 50.062506680000048 ], [ -125.273337183999928, 50.061675412000049 ], [ -125.272990406999924, 50.061093292000088 ], [ -125.272926292999941, 50.060729606000066 ], [ -125.274199411999945, 50.059896612000031 ], [ -125.274708198999932, 50.059562288000059 ], [ -125.275116017999892, 50.059294333000047 ], [ -125.275749173999927, 50.058878307000029 ], [ -125.275763377999979, 50.058553147000097 ], [ -125.276084834999907, 50.056774831000112 ], [ -125.273996150999935, 50.056890678000087 ], [ -125.273979172999958, 50.056891051000058 ], [ -125.273980265999924, 50.056873803000038 ], [ -125.274003236999974, 50.056277391000023 ], [ -125.27395725299999, 50.053928118000073 ], [ -125.274826479999945, 50.053933854000043 ], [ -125.274808783999958, 50.05504586100006 ], [ -125.276910869999938, 50.055059704000044 ], [ -125.276886037999986, 50.056624653000092 ], [ -125.27810731999989, 50.056632677000039 ], [ -125.278067020999941, 50.059176383000143 ], [ -125.27822127, 50.059173353000062 ], [ -125.278259590999966, 50.059982169000143 ], [ -125.278054190999953, 50.059986203000079 ], [ -125.278050352999955, 50.060228390000084 ], [ -125.277869176999943, 50.060227201000075 ], [ -125.277341667000016, 50.060223736000133 ], [ -125.277327478999922, 50.061118306000097 ], [ -125.277239631, 50.061117729000081 ], [ -125.27722264, 50.062188907000078 ], [ -125.276267856999965, 50.062182628000102 ], [ -125.27639539099998, 50.064876169000037 ], [ -125.2768142259999, 50.064867951000018 ], [ -125.276839762999884, 50.065407161000103 ], [ -125.278933960999964, 50.065366045000118 ], [ -125.278959521999965, 50.065905256000065 ], [ -125.27979721, 50.065888798000081 ], [ -125.279809995999983, 50.06615840300006 ], [ -125.28106653199994, 50.066133705000027 ], [ -125.281079323999933, 50.066403310000048 ], [ -125.282754713, 50.066370359000139 ], [ -125.282805922999941, 50.067448775000081 ], [ -125.280711641999986, 50.067489962000124 ], [ -125.28068606, 50.066950753000057 ], [ -125.27859179599993, 50.066991902000083 ], [ -125.27857901599999, 50.066722296000094 ], [ -125.277322462999948, 50.066746967000043 ], [ -125.27739270099994, 50.068229537000029 ], [ -125.279070238999907, 50.068240544000048 ], [ -125.279061777999956, 50.068062094000048 ], [ -125.27989950199995, 50.0680456360001 ], [ -125.279886714999932, 50.067776031000093 ], [ -125.280998484999898, 50.06775417900014 ], [ -125.280999739999942, 50.067674606000068 ], [ -125.286586874999983, 50.067710985000112 ], [ -125.286575372999891, 50.068445523000065 ], [ -125.286877109999978, 50.068447479000092 ], [ -125.286874650999977, 50.068604581000038 ], [ -125.287892219999918, 50.068611174000125 ], [ -125.287883508999954, 50.06842818500008 ], [ -125.28997782199994, 50.068386869000108 ], [ -125.290042042999957, 50.069734882 ], [ -125.28962317, 50.069743149000104 ], [ -125.289634998999986, 50.069991462000061 ], [ -125.29029341599994, 50.069995711000089 ], [ -125.291019907999967, 50.071054387000117 ], [ -125.291069581999977, 50.07120679300008 ], [ -125.290955507999982, 50.071424694 ], [ -125.290257186999938, 50.072022790000069 ], [ -125.289685409999976, 50.072673700000109 ], [ -125.286748486999898, 50.07436850800007 ], [ -125.286364149999969, 50.074985010000034 ], [ -125.286099004, 50.074983290000063 ], [ -125.286109766999971, 50.075209546000046 ], [ -125.284852997999963, 50.075234301000066 ], [ -125.284865815999922, 50.075503904000072 ], [ -125.284446890999973, 50.075512153000012 ], [ -125.284472523999966, 50.076051360000058 ], [ -125.283215730999942, 50.076076097000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "0.958443041855113", "sL_AssetLoss": "476.262", "sL_BldgLoss": "456.47", "sL_StrLoss": "295.1", "sL_NStrLoss": "161.37", "sL_ContLoss": "19.792", "geom_point": "0101000020E61000001915DD1F94525FC0B6A94FACB2054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.290054712999961, 50.043595946000046 ], [ -125.290992393999929, 50.043589991000076 ], [ -125.291358259999939, 50.044072511000138 ], [ -125.291334551999967, 50.044072980000074 ], [ -125.291351848999909, 50.044436135000097 ], [ -125.291360234999971, 50.044612187000048 ], [ -125.29107613799999, 50.044617798000026 ], [ -125.29094158, 50.044620455000022 ], [ -125.290949084, 50.044778052000105 ], [ -125.290954417999941, 50.044890058000078 ], [ -125.290788306999943, 50.044893339000048 ], [ -125.290535760999916, 50.044898326000066 ], [ -125.29054817799999, 50.045159151000085 ], [ -125.290561434, 50.04543753300009 ], [ -125.290379229000024, 50.045441131000075 ], [ -125.289305446999933, 50.045462325000067 ], [ -125.289266957999985, 50.044653514000061 ], [ -125.289685612999904, 50.044645251000112 ], [ -125.28964711899999, 50.043836440000078 ], [ -125.29006576799999, 50.043828176000055 ], [ -125.290054712999961, 50.043595946000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7974166", "BldgCostT": "4816666", "sL_LossRatio": "0.825649219743511", "sL_AssetLoss": "3219.326", "sL_BldgLoss": "2658.034", "sL_StrLoss": "2449.274", "sL_NStrLoss": "208.76", "sL_ContLoss": "561.292", "geom_point": "0101000020E6100000DDCBE09C8F565FC007CAD896A20E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.349815606999954, 50.116066889000102 ], [ -125.349856627999941, 50.113195647000097 ], [ -125.35544940299999, 50.113228526000064 ], [ -125.355417264, 50.115497631000061 ], [ -125.35369009, 50.115280393000063 ], [ -125.35285698499996, 50.115108007000046 ], [ -125.352282309999964, 50.115102294000025 ], [ -125.3519069099999, 50.115232674000055 ], [ -125.351072415999965, 50.115522498000111 ], [ -125.350339912999956, 50.116013791000057 ], [ -125.349868002999955, 50.116077894000036 ], [ -125.349815606999954, 50.116066889000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997291674843977", "sL_AssetLoss": "254.77", "sL_BldgLoss": "254.08", "sL_StrLoss": "248", "sL_NStrLoss": "6.08", "sL_ContLoss": "0.69", "geom_point": "0101000020E6100000FEF864285B545FC028C454E1EC094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.317379693999968, 50.076887940000105 ], [ -125.318870149999952, 50.076823415000035 ], [ -125.318775188999965, 50.077142332000051 ], [ -125.318807575999955, 50.077779015000026 ], [ -125.318734886999934, 50.077969169000028 ], [ -125.318611644999947, 50.078080779000075 ], [ -125.318425548999969, 50.0781910870001 ], [ -125.318143939999985, 50.078288455000113 ], [ -125.317358777000024, 50.078283587000065 ], [ -125.317379693999968, 50.076887940000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37025667", "BldgCostT": "20966667", "sL_LossRatio": "0.997765546994832", "sL_AssetLoss": "3503.2735", "sL_BldgLoss": "3495.4456", "sL_StrLoss": "3452.3166", "sL_NStrLoss": "43.129", "sL_ContLoss": "7.8279", "geom_point": "0101000020E61000006A57BEBAEC535FC033AAC255D40A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.311094180999987, 50.08901697500005 ], [ -125.311081208999937, 50.088747378000072 ], [ -125.31024314199999, 50.088764065000063 ], [ -125.310191276999916, 50.087685675000067 ], [ -125.308934202999922, 50.087710694000101 ], [ -125.308895324999966, 50.086901899000054 ], [ -125.309314343999915, 50.086893562000064 ], [ -125.309301383, 50.0866239630001 ], [ -125.31223448599999, 50.086565553000042 ], [ -125.312247461999988, 50.086835151000045 ], [ -125.313085493999964, 50.086818448000024 ], [ -125.313067579999981, 50.086446412000107 ], [ -125.313059530999936, 50.086279253000072 ], [ -125.312775118999966, 50.086284923000072 ], [ -125.312640518999956, 50.086287605000052 ], [ -125.312636710999953, 50.086208495000115 ], [ -125.312627538999891, 50.086018007000099 ], [ -125.312303437999901, 50.08602446600009 ], [ -125.311789520999966, 50.086034707000081 ], [ -125.311776546999951, 50.085765109000135 ], [ -125.311357540999921, 50.08577345500008 ], [ -125.311344567999981, 50.08550385700007 ], [ -125.310925563999916, 50.085512203000079 ], [ -125.310913277999958, 50.085256810000104 ], [ -125.310912593999916, 50.08524260500009 ], [ -125.310888426999966, 50.085243087000052 ], [ -125.310493591999986, 50.085250949000063 ], [ -125.310482430000022, 50.085018884000135 ], [ -125.31048062499994, 50.084981352000064 ], [ -125.310416767999953, 50.084982623 ], [ -125.310061623999943, 50.084989694000029 ], [ -125.310052213999981, 50.084794011000071 ], [ -125.310048658999918, 50.084720096000027 ], [ -125.309898600999972, 50.08472308200006 ], [ -125.309629660999974, 50.084728437000152 ], [ -125.309623292999945, 50.084595964000151 ], [ -125.309616699999978, 50.084458838000053 ], [ -125.309338315999938, 50.084464379000096 ], [ -125.309197702999981, 50.084467178000089 ], [ -125.309194373999958, 50.084397915000103 ], [ -125.309145867999987, 50.083388784000064 ], [ -125.308307893999967, 50.083405458000115 ], [ -125.308320846999891, 50.083675055000121 ], [ -125.307887070999968, 50.083683684000022 ], [ -125.306644886999933, 50.083708384000019 ], [ -125.306606054999961, 50.082899588000032 ], [ -125.306886495999933, 50.082894013000043 ], [ -125.307444020999966, 50.08288292700005 ], [ -125.307431072999947, 50.082613328000065 ], [ -125.307012091, 50.082621660000108 ], [ -125.30697325499996, 50.081812863000053 ], [ -125.307811201, 50.081796200000035 ], [ -125.307798250999923, 50.081526601000064 ], [ -125.308217222999957, 50.081518267000057 ], [ -125.30819085399996, 50.080969378000113 ], [ -125.308178367, 50.08070947100007 ], [ -125.309435257999951, 50.080684461000047 ], [ -125.309448216999925, 50.08095406000016 ], [ -125.30986718399997, 50.080945720000109 ], [ -125.309893105999947, 50.081484917000047 ], [ -125.31073104499994, 50.081468233000074 ], [ -125.310744011999958, 50.081737831000041 ], [ -125.311162984999925, 50.081729487000104 ], [ -125.311214862, 50.082807879000065 ], [ -125.31079588099999, 50.082816223000108 ], [ -125.310808847999922, 50.083085822000086 ], [ -125.310389862999955, 50.083094165000091 ], [ -125.31040283, 50.083363762000069 ], [ -125.310821815999958, 50.083355420000068 ], [ -125.310834782999976, 50.083625018000127 ], [ -125.311672759999936, 50.083608326000089 ], [ -125.311685732999933, 50.08387792400007 ], [ -125.31210472399998, 50.083869576000097 ], [ -125.312091747999943, 50.083599978000038 ], [ -125.31228441799999, 50.083596140000047 ], [ -125.312314043999933, 50.081634227000066 ], [ -125.314521844999931, 50.081648003000033 ], [ -125.314485163999976, 50.08242561000008 ], [ -125.314459647999968, 50.08296590700008 ], [ -125.314330231999932, 50.085709062000085 ], [ -125.314294687999933, 50.086864041000105 ], [ -125.314254137999967, 50.086958176000124 ], [ -125.314225018999977, 50.086976147000073 ], [ -125.314131415999924, 50.087033823000056 ], [ -125.314472353999975, 50.087224400000103 ], [ -125.31512187899996, 50.087587406000083 ], [ -125.31396248599998, 50.087610532000063 ], [ -125.313949498999975, 50.087340934000039 ], [ -125.31311145799998, 50.087357643000061 ], [ -125.313189355999924, 50.08897522700007 ], [ -125.311094180999987, 50.08901697500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "0.997982222773358", "sL_AssetLoss": "279.0199", "sL_BldgLoss": "278.4569", "sL_StrLoss": "275.0739", "sL_NStrLoss": "3.383", "sL_ContLoss": "0.563", "geom_point": "0101000020E6100000E4656E3A59555FC025DCB79C430E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.337207136999965, 50.112153756000112 ], [ -125.330244126999972, 50.111506176000027 ], [ -125.330251844999964, 50.110981749000096 ], [ -125.335844331999951, 50.111015624000032 ], [ -125.335832249999967, 50.111843580000013 ], [ -125.33721153299993, 50.111851891000072 ], [ -125.337207136999965, 50.112153756000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9832833", "BldgCostT": "5628333", "sL_LossRatio": "0.66943249495781", "sL_AssetLoss": "1210.5355", "sL_BldgLoss": "810.3718", "sL_StrLoss": "649.9018", "sL_NStrLoss": "160.47", "sL_ContLoss": "400.1637", "geom_point": "0101000020E61000004F61DF2DD4525FC0F7606B191D094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.29526163499996, 50.073679586000047 ], [ -125.295248757999971, 50.073409984000108 ], [ -125.294829852999939, 50.073418271000079 ], [ -125.294816979999936, 50.073148669000069 ], [ -125.294529253999926, 50.07315436000011 ], [ -125.294391954999938, 50.073028668000056 ], [ -125.294385206999948, 50.072887352000045 ], [ -125.294240706999972, 50.072890209000022 ], [ -125.294181591999958, 50.072836092000081 ], [ -125.29411638199997, 50.072370297000113 ], [ -125.293927681999946, 50.072086371000047 ], [ -125.293889099999944, 50.071278024000065 ], [ -125.29347021299999, 50.071286305000079 ], [ -125.293457347999905, 50.071016703000083 ], [ -125.292863926999985, 50.071028432000027 ], [ -125.292613529, 50.070906360000031 ], [ -125.292593860999887, 50.070494056000058 ], [ -125.29179998799998, 50.070509740000034 ], [ -125.291619995999937, 50.070421987000032 ], [ -125.291319176999977, 50.070140358000096 ], [ -125.291285811999941, 50.069440471000057 ], [ -125.291704682999963, 50.069432198000108 ], [ -125.291691828999916, 50.069162595000094 ], [ -125.292686014, 50.069142954000078 ], [ -125.293786169, 50.069121210000056 ], [ -125.29379903399996, 50.069390811000112 ], [ -125.294217903999979, 50.069382529000052 ], [ -125.294222311999974, 50.069474876000129 ], [ -125.294256507999975, 50.070191335000125 ], [ -125.294675384999934, 50.070183051000122 ], [ -125.294688255999972, 50.070452653000082 ], [ -125.295107133999977, 50.070444368000075 ], [ -125.295120009999906, 50.070713970000043 ], [ -125.295538889999975, 50.070705682000082 ], [ -125.295551765999932, 50.070975285000017 ], [ -125.29597065, 50.070966995000028 ], [ -125.296035044999925, 50.072315003000064 ], [ -125.29645394, 50.072306713000089 ], [ -125.296518351999936, 50.073654718000078 ], [ -125.29526163499996, 50.073679586000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45487725", "BldgCostT": "26575309", "sL_LossRatio": "0.824993539062351", "sL_AssetLoss": "16715.84", "sL_BldgLoss": "13790.46", "sL_StrLoss": "11792.57", "sL_NStrLoss": "1997.89", "sL_ContLoss": "2925.38", "geom_point": "0101000020E6100000AFF47FB3B9515FC02512128AA9054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.272552427999969, 50.046856681000101 ], [ -125.272198192999909, 50.046852807000043 ], [ -125.271400943999936, 50.046852039000051 ], [ -125.270934604, 50.04685160300005 ], [ -125.269241010999934, 50.046846694000116 ], [ -125.269038479999978, 50.046847990000067 ], [ -125.269038131999949, 50.046830267000047 ], [ -125.269014912999964, 50.045707898000096 ], [ -125.268943576999931, 50.045626506000104 ], [ -125.268936611999905, 50.04501508400012 ], [ -125.26892319299999, 50.044025211000097 ], [ -125.268930681999947, 50.043211607000039 ], [ -125.269096783999913, 50.043212693000022 ], [ -125.27051880499999, 50.043214424 ], [ -125.272360735999911, 50.043216653000059 ], [ -125.273240597999987, 50.043217698000106 ], [ -125.273988458999924, 50.043215127000067 ], [ -125.274576813999914, 50.043213095000084 ], [ -125.275346497999948, 50.042660715000039 ], [ -125.275565501999964, 50.042586607000061 ], [ -125.275955278999959, 50.04256669800008 ], [ -125.276097092999962, 50.042518209000022 ], [ -125.27615718499996, 50.04242421900009 ], [ -125.276148588999931, 50.04164649300003 ], [ -125.276623506999954, 50.041370006000058 ], [ -125.27699040899995, 50.041830004000069 ], [ -125.277223997999926, 50.042060814000074 ], [ -125.277448210999964, 50.042185496000059 ], [ -125.277975874999981, 50.042454199000062 ], [ -125.27859641399999, 50.042682092000049 ], [ -125.279709915999959, 50.043606395000012 ], [ -125.279864991999929, 50.043684786 ], [ -125.280193968999967, 50.043761391000054 ], [ -125.280361593999899, 50.043800400000123 ], [ -125.280575161999977, 50.043805656000124 ], [ -125.281105477000011, 50.043818696000173 ], [ -125.281092249999958, 50.043563092000092 ], [ -125.281064768999954, 50.043034500000054 ], [ -125.281088788999966, 50.041337302000017 ], [ -125.282608371999942, 50.041297794000037 ], [ -125.282600786999978, 50.037969395000111 ], [ -125.283861882999986, 50.03829319400009 ], [ -125.284069709999955, 50.038394411000127 ], [ -125.284155393999981, 50.038534287000061 ], [ -125.284092510000022, 50.043432791000093 ], [ -125.283460377999958, 50.043637580000087 ], [ -125.287231040999956, 50.04361383300003 ], [ -125.287960147999982, 50.043609221000054 ], [ -125.287985345999942, 50.044139085000076 ], [ -125.286729389999962, 50.044163849000078 ], [ -125.28671657400001, 50.043894243000125 ], [ -125.285879275999918, 50.04391074600003 ], [ -125.285866465999973, 50.04364114100008 ], [ -125.284610519999987, 50.043665883000081 ], [ -125.28462332499997, 50.043935487000084 ], [ -125.284581046999932, 50.043936320000071 ], [ -125.284578832999941, 50.044077366000117 ], [ -125.284551416999932, 50.044077187000049 ], [ -125.284544059999959, 50.044545865000018 ], [ -125.284499573999938, 50.044545575000065 ], [ -125.284488600999964, 50.045244665000034 ], [ -125.278943635999937, 50.045208437000099 ], [ -125.278939294999986, 50.045482904000067 ], [ -125.278301340999931, 50.045478717000059 ], [ -125.278294992999975, 50.045879619000118 ], [ -125.275173075999959, 50.045859080000042 ], [ -125.27512176099998, 50.049085791000032 ], [ -125.274405047999949, 50.049081064000077 ], [ -125.274377435999924, 50.050815405000044 ], [ -125.273896274999927, 50.050812228000019 ], [ -125.273864297000017, 50.04917776000007 ], [ -125.273252216999936, 50.04686429900007 ], [ -125.272552427999969, 50.046856681000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183669970", "BldgCostT": "123705413", "sL_LossRatio": "0.820033567457421", "sL_AssetLoss": "53766.36", "sL_BldgLoss": "44090.22", "sL_StrLoss": "36119.78", "sL_NStrLoss": "7970.44", "sL_ContLoss": "9676.14", "geom_point": "0101000020E610000043D30B0462515FC094CBCA1F21074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.272631014999916, 50.056915794000091 ], [ -125.272541283999956, 50.056852311000036 ], [ -125.27248690499999, 50.056788040000121 ], [ -125.271441103999962, 50.055552145000085 ], [ -125.269251794999903, 50.052964712000062 ], [ -125.269155758999915, 50.052776258000065 ], [ -125.269127213000019, 50.052720206000068 ], [ -125.269023218999948, 50.052156708000076 ], [ -125.269043947999975, 50.050779308000109 ], [ -125.269060090999957, 50.049708850000052 ], [ -125.269067387999911, 50.049223506000068 ], [ -125.269065194999897, 50.049097 ], [ -125.269043490999962, 50.047842412000072 ], [ -125.269038479999978, 50.046847990000067 ], [ -125.269241010999934, 50.046846694000116 ], [ -125.270934604, 50.04685160300005 ], [ -125.271400943999936, 50.046852039000051 ], [ -125.272198192999909, 50.046852807000043 ], [ -125.272552427999969, 50.046856681000101 ], [ -125.273252216999936, 50.04686429900007 ], [ -125.273864297000017, 50.04917776000007 ], [ -125.273896274999927, 50.050812228000019 ], [ -125.272540131999946, 50.050803265000113 ], [ -125.272525914999932, 50.051693949000033 ], [ -125.27029574, 50.051679172000014 ], [ -125.270294476999965, 50.051758035000098 ], [ -125.273036016999953, 50.051776195000087 ], [ -125.273001789999967, 50.053921805000044 ], [ -125.27395725299999, 50.053928118000073 ], [ -125.274003236999974, 50.056277391000023 ], [ -125.273980265999924, 50.056873803000038 ], [ -125.273979172999958, 50.056891051000058 ], [ -125.273996150999935, 50.056890678000087 ], [ -125.276084834999907, 50.056774831000112 ], [ -125.275763377999979, 50.058553147000097 ], [ -125.275749173999927, 50.058878307000029 ], [ -125.275116017999892, 50.059294333000047 ], [ -125.274708198999932, 50.059562288000059 ], [ -125.274199411999945, 50.059896612000031 ], [ -125.272926292999941, 50.060729606000066 ], [ -125.272990406999924, 50.061093292000088 ], [ -125.273337183999928, 50.061675412000049 ], [ -125.27383380699996, 50.062506680000048 ], [ -125.273967211999974, 50.062727801000101 ], [ -125.273975141999969, 50.063455204000064 ], [ -125.273423403999956, 50.063456102000089 ], [ -125.272217701, 50.063734894000127 ], [ -125.270325009999979, 50.064172711000012 ], [ -125.269984397999963, 50.063634694000058 ], [ -125.268712698999963, 50.062368511000038 ], [ -125.268619678999983, 50.062066702000074 ], [ -125.26857158199999, 50.061675292000103 ], [ -125.268566096999947, 50.060709705000079 ], [ -125.268550589999933, 50.057936092000091 ], [ -125.268547399999989, 50.057001107000097 ], [ -125.268561415999969, 50.057001094000086 ], [ -125.271866234999962, 50.056997925000076 ], [ -125.272096219, 50.056997698000018 ], [ -125.27236470099993, 50.056979709000125 ], [ -125.272631014999916, 50.056915794000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19033083", "BldgCostT": "11388333", "sL_LossRatio": "0.993485861542504", "sL_AssetLoss": "5498.655", "sL_BldgLoss": "5462.836", "sL_StrLoss": "5247.486", "sL_NStrLoss": "215.35", "sL_ContLoss": "35.819", "geom_point": "0101000020E610000022B028DB36505FC04B7AB52FE2054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.251917699000018, 50.045410087000022 ], [ -125.251137708999948, 50.044877406000104 ], [ -125.25052487499994, 50.044303496000097 ], [ -125.250435249999953, 50.044155340000017 ], [ -125.250439802999935, 50.043878580000055 ], [ -125.250678380999943, 50.043880207000065 ], [ -125.250674139999958, 50.043789538000063 ], [ -125.250255478, 50.043797660000038 ], [ -125.250240111999986, 50.043469098000045 ], [ -125.25018442599999, 50.043468718000071 ], [ -125.250254420000019, 50.043432220000071 ], [ -125.251464628999912, 50.042772628000108 ], [ -125.251486222999958, 50.043234068000061 ], [ -125.252323530999902, 50.043217815000069 ], [ -125.252348774999973, 50.043757037000049 ], [ -125.252695268999986, 50.043750309000067 ], [ -125.252770900999977, 50.043822952 ], [ -125.252774249999987, 50.043894472000069 ], [ -125.252845868999898, 50.043894959000056 ], [ -125.252924209999918, 50.043970206000054 ], [ -125.253176705999977, 50.044576899000042 ], [ -125.253594585999906, 50.044855991000134 ], [ -125.253752497999955, 50.044934390000051 ], [ -125.254221708999978, 50.044817610000081 ], [ -125.254489979999917, 50.044865997000088 ], [ -125.254682251999938, 50.045543321000103 ], [ -125.2549242, 50.046395606000061 ], [ -125.255437894999957, 50.046906907000057 ], [ -125.25598419799995, 50.0478411980001 ], [ -125.256165424999935, 50.048413702000161 ], [ -125.256527289999951, 50.048694296000072 ], [ -125.25660004, 50.048823230000067 ], [ -125.255777992999967, 50.048817670000126 ], [ -125.254769775999947, 50.048837269000046 ], [ -125.254182799999953, 50.04847919500007 ], [ -125.252918294999958, 50.047109113000083 ], [ -125.252234015999946, 50.046501007000074 ], [ -125.252048205999955, 50.046117909000024 ], [ -125.251917699000018, 50.045410087000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998911505388048", "sL_AssetLoss": "183.74", "sL_BldgLoss": "183.54", "sL_StrLoss": "182", "sL_NStrLoss": "1.54", "sL_ContLoss": "0.2", "geom_point": "0101000020E6100000CCCC922183505FC04AA24DC491054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.257174803999987, 50.043760805000019 ], [ -125.257169586999936, 50.043652609000077 ], [ -125.256835611999989, 50.043659699000067 ], [ -125.256679616999946, 50.043608394000046 ], [ -125.256733505999975, 50.043554293000113 ], [ -125.25691788599994, 50.043508164000052 ], [ -125.258435217999946, 50.043518410000082 ], [ -125.258445140999967, 50.042908379000018 ], [ -125.25920655000003, 50.042913513000045 ], [ -125.258825707999947, 50.043512992000096 ], [ -125.256982298999944, 50.04410688800003 ], [ -125.256855402999975, 50.044072712000066 ], [ -125.256863393999978, 50.043955894000071 ], [ -125.257174803999987, 50.043760805000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74867145", "BldgCostT": "50011524", "sL_LossRatio": "0.970759825700567", "sL_AssetLoss": "26688.555", "sL_BldgLoss": "25908.177", "sL_StrLoss": "25166.027", "sL_NStrLoss": "742.15", "sL_ContLoss": "780.378", "geom_point": "0101000020E6100000A06FEA8741515FC0BFC193EDAE074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.276334020999954, 50.07243333300007 ], [ -125.27630489699996, 50.071818418000099 ], [ -125.275324115999965, 50.071811962000076 ], [ -125.274852198999923, 50.071363388000158 ], [ -125.274203797999945, 50.071025795 ], [ -125.27420650599997, 50.070855919000039 ], [ -125.274162969999963, 50.070856773000081 ], [ -125.274150212999984, 50.070587167 ], [ -125.273389984999952, 50.070602065000045 ], [ -125.27331041, 50.070560633000042 ], [ -125.27328694000002, 50.070064374000026 ], [ -125.272868057999943, 50.070072580000051 ], [ -125.27285196299999, 50.069732218000091 ], [ -125.272572395999987, 50.069538660000092 ], [ -125.272423682999985, 50.069541573000052 ], [ -125.272418508999948, 50.06943211600003 ], [ -125.272193353999967, 50.069276228000064 ], [ -125.271992062999956, 50.069280171000095 ], [ -125.27198506, 50.069132011000129 ], [ -125.271927942, 50.069092465000033 ], [ -125.271837817999966, 50.069013335000093 ], [ -125.27156044499999, 50.069018766000035 ], [ -125.271548170999964, 50.068759015000118 ], [ -125.271236548, 50.068485395000131 ], [ -125.271116095999929, 50.068487754000081 ], [ -125.271110765999964, 50.06837495200007 ], [ -125.270971040999939, 50.068252266000044 ], [ -125.270941525999959, 50.068221314000041 ], [ -125.27081757099991, 50.068223741000082 ], [ -125.270803096999956, 50.068187510000108 ], [ -125.270679290999951, 50.068116267000086 ], [ -125.270671756999903, 50.067956739000074 ], [ -125.270475876999981, 50.067960573000086 ], [ -125.270235141999962, 50.067589102000078 ], [ -125.270229748999981, 50.067474906000079 ], [ -125.27018384199998, 50.067426765000107 ], [ -125.270183598999893, 50.067426580000131 ], [ -125.27013049199995, 50.067427619000043 ], [ -125.269927893, 50.067114989000068 ], [ -125.269597674999915, 50.066365897000033 ], [ -125.268722578999984, 50.065425876000084 ], [ -125.268653906999987, 50.06529765600007 ], [ -125.268604124999968, 50.06529862900009 ], [ -125.268441836999969, 50.065124294000093 ], [ -125.268437482999914, 50.065032032000033 ], [ -125.268357409999979, 50.065033598000078 ], [ -125.268051802999949, 50.064705302000078 ], [ -125.267992489999983, 50.064485842000053 ], [ -125.267981801999895, 50.064259273000083 ], [ -125.267871785999944, 50.064127346000085 ], [ -125.267430303999973, 50.063367896000052 ], [ -125.266857985999977, 50.061607593000119 ], [ -125.266576988999958, 50.061262905000092 ], [ -125.266146001999985, 50.0601378120001 ], [ -125.265613209999941, 50.059518299000104 ], [ -125.26523298599993, 50.058868805000024 ], [ -125.264945698999895, 50.058101200000031 ], [ -125.264234321999936, 50.057009783000041 ], [ -125.264234248999969, 50.057009784000044 ], [ -125.264192802, 50.056946199000031 ], [ -125.264049583, 50.055959198 ], [ -125.26364230899999, 50.054717308000079 ], [ -125.26388870599996, 50.05432558400009 ], [ -125.263999669999933, 50.053658022000064 ], [ -125.266908973999989, 50.053677457000042 ], [ -125.26688966199994, 50.054877956000105 ], [ -125.267400335999966, 50.054881359000014 ], [ -125.267432398999944, 50.052886855000033 ], [ -125.264304142999919, 50.052865970000056 ], [ -125.264320015999928, 50.052833003000053 ], [ -125.264348311999953, 50.052543787000033 ], [ -125.264114297999981, 50.052009795000096 ], [ -125.264031486999926, 50.051408797000114 ], [ -125.262757720999971, 50.049273901000021 ], [ -125.262702207999951, 50.049070511000103 ], [ -125.264406307999963, 50.049227497000082 ], [ -125.269067387999911, 50.049223506000068 ], [ -125.269060090999957, 50.049708850000052 ], [ -125.269043947999975, 50.050779308000109 ], [ -125.269023218999948, 50.052156708000076 ], [ -125.269127213000019, 50.052720206000068 ], [ -125.269155758999915, 50.052776258000065 ], [ -125.269251794999903, 50.052964712000062 ], [ -125.271441103999962, 50.055552145000085 ], [ -125.27248690499999, 50.056788040000121 ], [ -125.272541283999956, 50.056852311000036 ], [ -125.272631014999916, 50.056915794000091 ], [ -125.27236470099993, 50.056979709000125 ], [ -125.272096219, 50.056997698000018 ], [ -125.271866234999962, 50.056997925000076 ], [ -125.268561415999969, 50.057001094000086 ], [ -125.268547399999989, 50.057001107000097 ], [ -125.268550589999933, 50.057936092000091 ], [ -125.268566096999947, 50.060709705000079 ], [ -125.26857158199999, 50.061675292000103 ], [ -125.268619678999983, 50.062066702000074 ], [ -125.268712698999963, 50.062368511000038 ], [ -125.269984397999963, 50.063634694000058 ], [ -125.270325009999979, 50.064172711000012 ], [ -125.272217701, 50.063734894000127 ], [ -125.273423403999956, 50.063456102000089 ], [ -125.273975141999969, 50.063455204000064 ], [ -125.275599657999919, 50.063452435000038 ], [ -125.275556380999944, 50.06441768500008 ], [ -125.27565752799994, 50.06482021100004 ], [ -125.275975465999949, 50.065250333000066 ], [ -125.276231875999898, 50.065597145000069 ], [ -125.276399564999977, 50.066032470000081 ], [ -125.27645976499997, 50.066902228000068 ], [ -125.2764530379999, 50.069262065000075 ], [ -125.276445111999962, 50.071082505000092 ], [ -125.276442169999925, 50.072016492000046 ], [ -125.276441313999953, 50.072287207000038 ], [ -125.276534187999943, 50.072429406 ], [ -125.276334020999954, 50.07243333300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22790501", "BldgCostT": "15190001", "sL_LossRatio": "0.99250065507057", "sL_AssetLoss": "12365.08", "sL_BldgLoss": "12272.35", "sL_StrLoss": "11960", "sL_NStrLoss": "312.35", "sL_ContLoss": "92.73", "geom_point": "0101000020E6100000261B1727A1505FC011F14195BB044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.257719502999947, 50.041662985000073 ], [ -125.258242692999957, 50.041492092000041 ], [ -125.259502490999949, 50.041557601000051 ], [ -125.25990010699999, 50.040190300000077 ], [ -125.258966303999969, 50.03996670300004 ], [ -125.258308111999924, 50.039627807000095 ], [ -125.257960498, 50.039661993000038 ], [ -125.25665218099999, 50.040667391000049 ], [ -125.256504836999952, 50.040753058000092 ], [ -125.256518283999966, 50.039928594000045 ], [ -125.256612598999979, 50.039874247000071 ], [ -125.256891014999923, 50.038945433000052 ], [ -125.25734558, 50.038948505000128 ], [ -125.257361884999938, 50.037947639000024 ], [ -125.258339160999981, 50.037954238000054 ], [ -125.258365440999953, 50.036338695000047 ], [ -125.258183561999957, 50.036337468000049 ], [ -125.258196988999956, 50.035512215000011 ], [ -125.257920593000037, 50.035510350000038 ], [ -125.258508627999959, 50.033548192000097 ], [ -125.25878460899996, 50.033370552000115 ], [ -125.260739901999955, 50.032758400000084 ], [ -125.261203207999955, 50.032662420000051 ], [ -125.261312161999939, 50.032466716000123 ], [ -125.261938129999976, 50.032558307000052 ], [ -125.262237103999951, 50.032531982000116 ], [ -125.262555778999968, 50.032532038000085 ], [ -125.263004749999951, 50.032532111000087 ], [ -125.262323309999957, 50.034996237000065 ], [ -125.261761880000023, 50.036655468000085 ], [ -125.261797717999968, 50.036676487000051 ], [ -125.261935390999952, 50.036730149000057 ], [ -125.261532914999961, 50.037505706000047 ], [ -125.260588914999943, 50.040600501 ], [ -125.259866088999928, 50.04186520000011 ], [ -125.259632382999939, 50.042534601000121 ], [ -125.259556318999941, 50.042559601000029 ], [ -125.256716132999941, 50.042540434000102 ], [ -125.257719502999947, 50.041662985000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998591437527279", "sL_AssetLoss": "201.624", "sL_BldgLoss": "201.34", "sL_StrLoss": "199", "sL_NStrLoss": "2.34", "sL_ContLoss": "0.284", "geom_point": "0101000020E61000002FB2CF2969505FC078AB19DFB8054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.258061802999975, 50.043914593000054 ], [ -125.258293952999949, 50.043910085000064 ], [ -125.255509858999957, 50.045543747000032 ], [ -125.255433593999939, 50.045360207 ], [ -125.255422611999975, 50.044793389000084 ], [ -125.255759583000014, 50.044525601000053 ], [ -125.256825213999917, 50.044334803000012 ], [ -125.258061802999975, 50.043914593000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7230000", "BldgCostT": "4305000", "sL_LossRatio": "0.605343456850826", "sL_AssetLoss": "2558.531", "sL_BldgLoss": "1548.79", "sL_StrLoss": "1070.46", "sL_NStrLoss": "478.33", "sL_ContLoss": "1009.741", "geom_point": "0101000020E61000002D1035B80A515FC0B32D7F952E054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.266086696999977, 50.039514756000052 ], [ -125.266095181999916, 50.038987643000048 ], [ -125.267440689999916, 50.039270305000045 ], [ -125.267512024999945, 50.039295901000074 ], [ -125.267433115999921, 50.039728906000043 ], [ -125.267643387999925, 50.04032709100003 ], [ -125.267525399, 50.040806985000089 ], [ -125.26706791299992, 50.041436506000061 ], [ -125.266658298000024, 50.041633091000087 ], [ -125.265032396999985, 50.041818199000062 ], [ -125.264979278999974, 50.041819585000049 ], [ -125.265008956999949, 50.039978937000114 ], [ -125.265493971999931, 50.039982178000081 ], [ -125.265501566999944, 50.039510848000056 ], [ -125.266086696999977, 50.039514756000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3765250", "BldgCostT": "2125000", "sL_LossRatio": "0.973650343089793", "sL_AssetLoss": "332.566", "sL_BldgLoss": "323.803", "sL_StrLoss": "262.613", "sL_NStrLoss": "61.19", "sL_ContLoss": "8.763", "geom_point": "0101000020E6100000B1A888D3C9505FC0DBB8AC5F3C054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.262570204999989, 50.039680493000098 ], [ -125.262920985999955, 50.039492587000034 ], [ -125.262887216999971, 50.041581016000073 ], [ -125.262075946999957, 50.041575574000021 ], [ -125.262073144999988, 50.041748712000135 ], [ -125.262066476999948, 50.041749794000012 ], [ -125.261347299999926, 50.042168610000054 ], [ -125.26149990099999, 50.041563306000057 ], [ -125.26194578499998, 50.040636104000043 ], [ -125.262570204999989, 50.039680493000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21894751", "BldgCostT": "13185001", "sL_LossRatio": "0.742768053041797", "sL_AssetLoss": "15139.457", "sL_BldgLoss": "11245.105", "sL_StrLoss": "9388.685", "sL_NStrLoss": "1856.42", "sL_ContLoss": "3894.352", "geom_point": "0101000020E61000001CE7C28A0B515FC08F1E3B7F45044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.262323309999957, 50.034996237000065 ], [ -125.263004749999951, 50.032532111000087 ], [ -125.263586744999969, 50.032532193000087 ], [ -125.263600805999914, 50.032532191000037 ], [ -125.264930141999955, 50.032538769000062 ], [ -125.266699431999896, 50.032547497000117 ], [ -125.266709180999925, 50.031765403000051 ], [ -125.266713720999959, 50.030789100000064 ], [ -125.26847229199997, 50.030798103000016 ], [ -125.268480110999974, 50.031872507000088 ], [ -125.268496685999978, 50.032560330000116 ], [ -125.26849689, 50.032569404000036 ], [ -125.268544219999967, 50.033274599000073 ], [ -125.270363709999955, 50.033404404000102 ], [ -125.272652218999937, 50.033716311000077 ], [ -125.272903890999928, 50.033739261000079 ], [ -125.273174714999968, 50.033772795000104 ], [ -125.273936714999977, 50.033873100000072 ], [ -125.274748861, 50.033977393000043 ], [ -125.274901961999944, 50.034180673000051 ], [ -125.274776795999941, 50.034398829000089 ], [ -125.274755504999945, 50.034435957000113 ], [ -125.274728966999987, 50.034472080000086 ], [ -125.272975088999942, 50.034043509000128 ], [ -125.272816633999952, 50.034021566000035 ], [ -125.271781401999988, 50.033878204000047 ], [ -125.270509493999953, 50.033885405000078 ], [ -125.269060035999985, 50.03380453900008 ], [ -125.269055891, 50.033716615000053 ], [ -125.268221858999937, 50.033732927000138 ], [ -125.268059017999988, 50.03374867800008 ], [ -125.267751314999956, 50.033731506000031 ], [ -125.265843282999953, 50.034120402000077 ], [ -125.264836479999985, 50.03442800200002 ], [ -125.262734311, 50.035736801000084 ], [ -125.262108686999952, 50.036396202000063 ], [ -125.261935390999952, 50.036730149000057 ], [ -125.261797717999968, 50.036676487000051 ], [ -125.261761880000023, 50.036655468000085 ], [ -125.262323309999957, 50.034996237000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3915667", "BldgCostT": "2436667", "sL_LossRatio": "0.986073887224762", "sL_AssetLoss": "3044.64", "sL_BldgLoss": "3002.24", "sL_StrLoss": "2884", "sL_NStrLoss": "118.24", "sL_ContLoss": "42.4", "geom_point": "0101000020E6100000D922ED6FDE505FC076A13D87C7044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.263384518999956, 50.036192595000053 ], [ -125.264249607999972, 50.035581596000029 ], [ -125.265237495999941, 50.035192800000097 ], [ -125.265307745999934, 50.035171918000081 ], [ -125.265291546, 50.036177259000105 ], [ -125.265001781999956, 50.03615129600005 ], [ -125.264620921999921, 50.036339304000109 ], [ -125.264412567999955, 50.03668824600004 ], [ -125.263943730999969, 50.036685107000096 ], [ -125.263908098999977, 50.038892012000126 ], [ -125.263118501999926, 50.039147788000015 ], [ -125.262521979000013, 50.039248900000068 ], [ -125.262253996000013, 50.039164915000093 ], [ -125.262254011999957, 50.038589504000115 ], [ -125.262518402999945, 50.03768369200003 ], [ -125.262991295999967, 50.036721007000075 ], [ -125.263384518999956, 50.036192595000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161869808", "BldgCostT": "95775247", "sL_LossRatio": "0.767833631686099", "sL_AssetLoss": "59895.54", "sL_BldgLoss": "45989.81", "sL_StrLoss": "37841.11", "sL_NStrLoss": "8148.7", "sL_ContLoss": "13905.73", "geom_point": "0101000020E6100000806E605946515FC0BD20197A5D054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.26230170800001, 50.043471694000075 ], [ -125.261973102999988, 50.043028788000115 ], [ -125.261497492999951, 50.043272310000056 ], [ -125.261658575999917, 50.044042795000038 ], [ -125.260969314999954, 50.044226506000065 ], [ -125.260653690999959, 50.044961400000048 ], [ -125.26045390099992, 50.045155101000049 ], [ -125.260296200999932, 50.04508529900005 ], [ -125.260316402999962, 50.044895885000109 ], [ -125.260759078999953, 50.043636898000088 ], [ -125.26110020899992, 50.043145591000012 ], [ -125.261466076999966, 50.042930494000032 ], [ -125.262941903999916, 50.042541700000065 ], [ -125.264642219, 50.042446301000055 ], [ -125.265024011999941, 50.042520285000059 ], [ -125.265441402999926, 50.042818007000115 ], [ -125.266093282999975, 50.043011700000079 ], [ -125.267502384999958, 50.042974691000069 ], [ -125.267855979999922, 50.042788097000049 ], [ -125.268354492999947, 50.042652813000103 ], [ -125.268135192999949, 50.042459109000099 ], [ -125.267643397999976, 50.042396407000041 ], [ -125.266222481999975, 50.042487604000065 ], [ -125.265410288999973, 50.042449094000084 ], [ -125.265406883999958, 50.042367991000035 ], [ -125.266961083999888, 50.042131495000106 ], [ -125.267577401999986, 50.041912202000027 ], [ -125.268407806999932, 50.041158786000025 ], [ -125.268612205999943, 50.040722996000071 ], [ -125.268489876, 50.039915497000024 ], [ -125.267955705999967, 50.039260310000046 ], [ -125.267895906999968, 50.038847294000099 ], [ -125.267410651999953, 50.038691403000065 ], [ -125.267652653000013, 50.038693016000082 ], [ -125.267665076999904, 50.037919599000126 ], [ -125.267935858999977, 50.037921402000052 ], [ -125.267943894999945, 50.037420904000143 ], [ -125.269018517999953, 50.037428056000131 ], [ -125.269043042999925, 50.035898429000063 ], [ -125.269076210000023, 50.035898649000096 ], [ -125.269098233999941, 50.034524816000051 ], [ -125.269102392999983, 50.034524798000106 ], [ -125.272521098999988, 50.034762694000037 ], [ -125.272549029999979, 50.034768049000078 ], [ -125.273887703999947, 50.035024696000143 ], [ -125.274311409999925, 50.035040405000061 ], [ -125.274203325999963, 50.03518752100009 ], [ -125.27327365, 50.036502065000064 ], [ -125.274771192999978, 50.03695790600009 ], [ -125.276496706000017, 50.037481690000099 ], [ -125.277839517999922, 50.03790189300004 ], [ -125.27928191, 50.038353196000074 ], [ -125.279717628999947, 50.038432500000106 ], [ -125.279558993999927, 50.039816902000062 ], [ -125.279447712999982, 50.040057996000051 ], [ -125.279302604999927, 50.040223402000031 ], [ -125.278478101999909, 50.040895800000079 ], [ -125.277797396999944, 50.041383094000068 ], [ -125.2772786, 50.041703389000105 ], [ -125.27699040899995, 50.041830004000069 ], [ -125.276623506999954, 50.041370006000058 ], [ -125.276148588999931, 50.04164649300003 ], [ -125.27615718499996, 50.04242421900009 ], [ -125.276097092999962, 50.042518209000022 ], [ -125.275955278999959, 50.04256669800008 ], [ -125.275565501999964, 50.042586607000061 ], [ -125.275346497999948, 50.042660715000039 ], [ -125.274576813999914, 50.043213095000084 ], [ -125.273988458999924, 50.043215127000067 ], [ -125.273240597999987, 50.043217698000106 ], [ -125.272360735999911, 50.043216653000059 ], [ -125.27051880499999, 50.043214424 ], [ -125.269096783999913, 50.043212693000022 ], [ -125.268930681999947, 50.043211607000039 ], [ -125.26892319299999, 50.044025211000097 ], [ -125.268936611999905, 50.04501508400012 ], [ -125.268943576999931, 50.045626506000104 ], [ -125.269014912999964, 50.045707898000096 ], [ -125.269038131999949, 50.046830267000047 ], [ -125.269038479999978, 50.046847990000067 ], [ -125.269043490999962, 50.047842412000072 ], [ -125.269065194999897, 50.049097 ], [ -125.269067387999911, 50.049223506000068 ], [ -125.264406307999963, 50.049227497000082 ], [ -125.262702207999951, 50.049070511000103 ], [ -125.262486800999952, 50.048281292000119 ], [ -125.261815494999951, 50.047664597000072 ], [ -125.261496681999958, 50.047140505000122 ], [ -125.261503409999946, 50.046986691 ], [ -125.26188909299999, 50.04656510100007 ], [ -125.261918501999943, 50.045729091000105 ], [ -125.262089981999964, 50.04547269300005 ], [ -125.262033189, 50.045167904000081 ], [ -125.26212210199995, 50.044978485000122 ], [ -125.262424695999982, 50.044576915000057 ], [ -125.262937020999956, 50.044475798000065 ], [ -125.263036083999935, 50.044222301000097 ], [ -125.262905018999959, 50.044099802000076 ], [ -125.26240150599989, 50.044091299000101 ], [ -125.26230170800001, 50.043471694000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5875000", "BldgCostT": "3580000", "sL_LossRatio": "0.995924014948727", "sL_AssetLoss": "773.31", "sL_BldgLoss": "770.158", "sL_StrLoss": "742.738", "sL_NStrLoss": "27.42", "sL_ContLoss": "3.152", "geom_point": "0101000020E6100000691FC8CD72505FC0F4E0EEACDD054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.258293952999949, 50.043910085000064 ], [ -125.25864860199999, 50.043903196000052 ], [ -125.258485402999924, 50.044275011000103 ], [ -125.257869596999981, 50.044844694000062 ], [ -125.257846290999964, 50.045861490000085 ], [ -125.257666821999962, 50.046801503000012 ], [ -125.25755957, 50.047108661000017 ], [ -125.257472374999963, 50.0471080720001 ], [ -125.257468097999919, 50.047370624000067 ], [ -125.257433085999963, 50.047470897000046 ], [ -125.257210204999964, 50.047754311000098 ], [ -125.257009493999988, 50.047677390000061 ], [ -125.255908216999927, 50.046502404000101 ], [ -125.255509858999957, 50.045543747000032 ], [ -125.258293952999949, 50.043910085000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67485500", "BldgCostT": "46070000", "sL_LossRatio": "0.993815622482214", "sL_AssetLoss": "22492.482", "sL_BldgLoss": "22353.38", "sL_StrLoss": "21017.28", "sL_NStrLoss": "1336.1", "sL_ContLoss": "139.102", "geom_point": "0101000020E6100000216362B115525FC0C7CFD25708054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.27928191, 50.038353196000074 ], [ -125.277839517999922, 50.03790189300004 ], [ -125.276496706000017, 50.037481690000099 ], [ -125.274771192999978, 50.03695790600009 ], [ -125.27327365, 50.036502065000064 ], [ -125.274203325999963, 50.03518752100009 ], [ -125.274311409999925, 50.035040405000061 ], [ -125.274349209, 50.035041807000077 ], [ -125.274782206999987, 50.035347988000112 ], [ -125.275138891000012, 50.035484695000036 ], [ -125.279490211999985, 50.036533009000067 ], [ -125.282184904999923, 50.036830611000056 ], [ -125.28292068899998, 50.037059894000059 ], [ -125.284284697999965, 50.037230792000074 ], [ -125.285925182999947, 50.03766659100009 ], [ -125.287418311999929, 50.037924396000065 ], [ -125.288482827999957, 50.038206705000043 ], [ -125.289470016999971, 50.038468496000085 ], [ -125.290169982999913, 50.03851829300001 ], [ -125.290988702999968, 50.038403008000046 ], [ -125.292388973999934, 50.038381744000105 ], [ -125.292001043999932, 50.03923851200009 ], [ -125.291523183999985, 50.039235434000034 ], [ -125.291534900999977, 50.039481448000096 ], [ -125.291894257999928, 50.039474349000074 ], [ -125.291616943999969, 50.040086788000067 ], [ -125.291189655999943, 50.04103043300006 ], [ -125.291154803999945, 50.04029852900004 ], [ -125.290317568999953, 50.040315061000072 ], [ -125.29030473499995, 50.040045457000105 ], [ -125.28988612, 50.040053721000113 ], [ -125.289860458, 50.039514513000015 ], [ -125.289441847, 50.039522776000126 ], [ -125.289429020999975, 50.039253171000034 ], [ -125.288173193999938, 50.03927795000002 ], [ -125.288170140999952, 50.039213771000085 ], [ -125.287936064999926, 50.039212255000109 ], [ -125.287922315999936, 50.040092470000111 ], [ -125.288630272999981, 50.040078505000096 ], [ -125.288643096999948, 50.040348109000035 ], [ -125.289480332999958, 50.040331588000072 ], [ -125.289493159999935, 50.040601192000111 ], [ -125.289911780999958, 50.040592929000091 ], [ -125.289916865999942, 50.04069975700007 ], [ -125.288598988999965, 50.040567570000057 ], [ -125.288188191999936, 50.040614791000074 ], [ -125.288033926999958, 50.04068065200012 ], [ -125.287970299, 50.040707811000075 ], [ -125.287834207999978, 50.040765992000011 ], [ -125.287773614999963, 50.040791897000119 ], [ -125.287301208999935, 50.041090005000065 ], [ -125.286497822999962, 50.0416691980001 ], [ -125.285965816999962, 50.042115307000053 ], [ -125.285103403999955, 50.042944399000135 ], [ -125.285041572999958, 50.043003790000057 ], [ -125.284853902999927, 50.043135591000123 ], [ -125.284569584999971, 50.043278494000113 ], [ -125.284092510000022, 50.043432791000093 ], [ -125.284155393999981, 50.038534287000061 ], [ -125.284069709999955, 50.038394411000127 ], [ -125.283861882999986, 50.03829319400009 ], [ -125.282600786999978, 50.037969395000111 ], [ -125.282608371999942, 50.041297794000037 ], [ -125.281088788999966, 50.041337302000017 ], [ -125.281064768999954, 50.043034500000054 ], [ -125.281092249999958, 50.043563092000092 ], [ -125.281105477000011, 50.043818696000173 ], [ -125.280575161999977, 50.043805656000124 ], [ -125.280361593999899, 50.043800400000123 ], [ -125.280193968999967, 50.043761391000054 ], [ -125.279864991999929, 50.043684786 ], [ -125.279709915999959, 50.043606395000012 ], [ -125.27859641399999, 50.042682092000049 ], [ -125.277975874999981, 50.042454199000062 ], [ -125.277448210999964, 50.042185496000059 ], [ -125.277223997999926, 50.042060814000074 ], [ -125.27699040899995, 50.041830004000069 ], [ -125.2772786, 50.041703389000105 ], [ -125.277797396999944, 50.041383094000068 ], [ -125.278478101999909, 50.040895800000079 ], [ -125.279302604999927, 50.040223402000031 ], [ -125.279447712999982, 50.040057996000051 ], [ -125.279558993999927, 50.039816902000062 ], [ -125.279717628999947, 50.038432500000106 ], [ -125.27928191, 50.038353196000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37219833", "BldgCostT": "24933333", "sL_LossRatio": "0.993075062198324", "sL_AssetLoss": "15699.78", "sL_BldgLoss": "15591.06", "sL_StrLoss": "14828.17", "sL_NStrLoss": "762.89", "sL_ContLoss": "108.72", "geom_point": "0101000020E61000009B2EB4083F525FC0C0E005D77D044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.288728022999948, 50.037865785000093 ], [ -125.287473280999976, 50.037635296000083 ], [ -125.286064498999977, 50.03707838900003 ], [ -125.283697391999937, 50.036333603000074 ], [ -125.282950691999972, 50.036213893000053 ], [ -125.281833593999977, 50.03619968600006 ], [ -125.280312392999946, 50.035931990000016 ], [ -125.279213009000017, 50.035702683000054 ], [ -125.275941711999934, 50.034768400000104 ], [ -125.274728966999987, 50.034472080000086 ], [ -125.274755504999945, 50.034435957000113 ], [ -125.274776795999941, 50.034398829000089 ], [ -125.274901961999944, 50.034180673000051 ], [ -125.274979172, 50.034042827000057 ], [ -125.275039874999948, 50.03393436000011 ], [ -125.275095791999959, 50.033699461000047 ], [ -125.27509968899993, 50.033683015000108 ], [ -125.275079538999947, 50.033608217000022 ], [ -125.275032499999909, 50.033433539000086 ], [ -125.27504572899997, 50.033436617000085 ], [ -125.275752891999957, 50.033601906000108 ], [ -125.27617657899999, 50.033730551000062 ], [ -125.277111188999953, 50.034014016000043 ], [ -125.277146252999927, 50.034024651000031 ], [ -125.278050788999963, 50.034375821000047 ], [ -125.278380061999925, 50.034475984000025 ], [ -125.278627902999972, 50.03451537600008 ], [ -125.279269889999938, 50.034523172000092 ], [ -125.279339872999941, 50.034517640000068 ], [ -125.279521464999945, 50.034503254000072 ], [ -125.279985264999965, 50.034482013000058 ], [ -125.28033578499992, 50.034505865000064 ], [ -125.280526294999945, 50.034518819000041 ], [ -125.281031652999928, 50.034603039000054 ], [ -125.281611300999884, 50.034759669000039 ], [ -125.282043951999967, 50.034941408000094 ], [ -125.283817267999922, 50.035887999000124 ], [ -125.284569645999937, 50.036277720000051 ], [ -125.284722515999945, 50.036356915000113 ], [ -125.284952731999979, 50.036476176000065 ], [ -125.285360617999984, 50.036636160000107 ], [ -125.286691321, 50.037061947000041 ], [ -125.28667237399999, 50.03648729300005 ], [ -125.286634982999928, 50.035250017000109 ], [ -125.286617225, 50.034661004000085 ], [ -125.286608350999927, 50.034336404000079 ], [ -125.286543563999942, 50.033124066000035 ], [ -125.28672649899994, 50.033107315000102 ], [ -125.286955929999948, 50.033086284000042 ], [ -125.287456299999945, 50.032965975000103 ], [ -125.287491136999975, 50.032957585000105 ], [ -125.28931978199995, 50.03214858700008 ], [ -125.289809804999919, 50.031962970000059 ], [ -125.290176813999921, 50.031863804000054 ], [ -125.290003336999945, 50.035600787000071 ], [ -125.28992605499991, 50.03600598300001 ], [ -125.289759315999916, 50.036339991000062 ], [ -125.289082034999964, 50.037199833000045 ], [ -125.288920720999968, 50.03759786700008 ], [ -125.289575455999952, 50.037686584000042 ], [ -125.289985635999955, 50.037703634000124 ], [ -125.291271786999943, 50.03767686500008 ], [ -125.291619661999945, 50.037630464000124 ], [ -125.29210264799994, 50.037785068000062 ], [ -125.291407388999914, 50.037818996000084 ], [ -125.290854913999979, 50.037947204000062 ], [ -125.289419511999952, 50.03799280100003 ], [ -125.288728022999948, 50.037865785000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321478256", "BldgCostT": "200363894", "sL_LossRatio": "0.815807391115904", "sL_AssetLoss": "112269.38", "sL_BldgLoss": "91590.19", "sL_StrLoss": "77139.59", "sL_NStrLoss": "14450.6", "sL_ContLoss": "20679.19", "geom_point": "0101000020E6100000BB3FA26CBE515FC0BD89620B24044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.28033578499992, 50.034505865000064 ], [ -125.279985264999965, 50.034482013000058 ], [ -125.279521464999945, 50.034503254000072 ], [ -125.279339872999941, 50.034517640000068 ], [ -125.279269889999938, 50.034523172000092 ], [ -125.278627902999972, 50.03451537600008 ], [ -125.278380061999925, 50.034475984000025 ], [ -125.278050788999963, 50.034375821000047 ], [ -125.277146252999927, 50.034024651000031 ], [ -125.277111188999953, 50.034014016000043 ], [ -125.27617657899999, 50.033730551000062 ], [ -125.275752891999957, 50.033601906000108 ], [ -125.27504572899997, 50.033436617000085 ], [ -125.275032499999909, 50.033433539000086 ], [ -125.275079538999947, 50.033608217000022 ], [ -125.27509968899993, 50.033683015000108 ], [ -125.275095791999959, 50.033699461000047 ], [ -125.275039874999948, 50.03393436000011 ], [ -125.274979172, 50.034042827000057 ], [ -125.274901961999944, 50.034180673000051 ], [ -125.274748861, 50.033977393000043 ], [ -125.273936714999977, 50.033873100000072 ], [ -125.273174714999968, 50.033772795000104 ], [ -125.272903890999928, 50.033739261000079 ], [ -125.272652218999937, 50.033716311000077 ], [ -125.270363709999955, 50.033404404000102 ], [ -125.268544219999967, 50.033274599000073 ], [ -125.26849689, 50.032569404000036 ], [ -125.268496685999978, 50.032560330000116 ], [ -125.268480110999974, 50.031872507000088 ], [ -125.26847229199997, 50.030798103000016 ], [ -125.268469686999964, 50.030344262000064 ], [ -125.268467111999939, 50.029898996000078 ], [ -125.268462301999975, 50.029462820000163 ], [ -125.268456892999907, 50.028972895000074 ], [ -125.270777912999932, 50.028977500000089 ], [ -125.272045460999934, 50.028979913000057 ], [ -125.272299187999948, 50.028980390000122 ], [ -125.273199505999969, 50.028981882 ], [ -125.273429757999935, 50.029007690000064 ], [ -125.273710772999976, 50.029039165000093 ], [ -125.274065216999972, 50.029134158000055 ], [ -125.274849076999942, 50.029374506000103 ], [ -125.275000010999975, 50.02942080300005 ], [ -125.27495637899996, 50.029496760000065 ], [ -125.274915662999945, 50.029567574000062 ], [ -125.274863592999978, 50.02965821500004 ], [ -125.274780483999933, 50.029971393000032 ], [ -125.274933575999967, 50.029972211 ], [ -125.277585710999929, 50.029986289000043 ], [ -125.278696199999928, 50.029993648000072 ], [ -125.278828994999927, 50.029994525000042 ], [ -125.279089625999987, 50.030149511000069 ], [ -125.279691264999911, 50.030340386000084 ], [ -125.280664007, 50.03040185900003 ], [ -125.28064664, 50.031502703000108 ], [ -125.283686252999956, 50.031522556000084 ], [ -125.283686781999933, 50.031488906000071 ], [ -125.285087596999944, 50.032413566000137 ], [ -125.285519394999966, 50.032897429000073 ], [ -125.285727730999952, 50.033130903000043 ], [ -125.286199330999978, 50.033126953000078 ], [ -125.286543563999942, 50.033124066000035 ], [ -125.286608350999927, 50.034336404000079 ], [ -125.286617225, 50.034661004000085 ], [ -125.286634982999928, 50.035250017000109 ], [ -125.28667237399999, 50.03648729300005 ], [ -125.286691321, 50.037061947000041 ], [ -125.285360617999984, 50.036636160000107 ], [ -125.284952731999979, 50.036476176000065 ], [ -125.284722515999945, 50.036356915000113 ], [ -125.284569645999937, 50.036277720000051 ], [ -125.283817267999922, 50.035887999000124 ], [ -125.282043951999967, 50.034941408000094 ], [ -125.281611300999884, 50.034759669000039 ], [ -125.281031652999928, 50.034603039000054 ], [ -125.280526294999945, 50.034518819000041 ], [ -125.28033578499992, 50.034505865000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299767813", "BldgCostT": "173358513", "sL_LossRatio": "0.626431280935961", "sL_AssetLoss": "55321.337", "sL_BldgLoss": "34655.016", "sL_StrLoss": "21721.116", "sL_NStrLoss": "12933.9", "sL_ContLoss": "20666.321", "geom_point": "0101000020E610000082518C039A505FC03F8DACE395034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.261615174999946, 50.031443280000133 ], [ -125.26189046899999, 50.030513536000093 ], [ -125.261332010999951, 50.030513196000044 ], [ -125.259698007999987, 50.030512216000034 ], [ -125.257672508999974, 50.030510957000097 ], [ -125.256149232999988, 50.030509999000046 ], [ -125.254913992999946, 50.030509200000083 ], [ -125.254943094999959, 50.029130622000039 ], [ -125.254945106999941, 50.029034993000067 ], [ -125.253318341999886, 50.029026611000113 ], [ -125.253038162999985, 50.02902516600011 ], [ -125.252216589999975, 50.029020935000084 ], [ -125.252236478999961, 50.028063596000052 ], [ -125.252261603999955, 50.026870698000025 ], [ -125.252298398, 50.025055691000077 ], [ -125.253002543999941, 50.025056264000121 ], [ -125.253652076999941, 50.025056793000061 ], [ -125.253686693999953, 50.023455818000073 ], [ -125.253481159999978, 50.023183362000076 ], [ -125.255061504999958, 50.023187281000077 ], [ -125.255358221999984, 50.023188227000105 ], [ -125.257492479999925, 50.023194797000052 ], [ -125.25893812299995, 50.023793224 ], [ -125.259159510999979, 50.023884877000071 ], [ -125.260230355999937, 50.024328118000049 ], [ -125.261795993999925, 50.025290761000065 ], [ -125.26232682899996, 50.025689913000122 ], [ -125.262597708999976, 50.025942553000021 ], [ -125.262871229000012, 50.02626361300009 ], [ -125.263053801999945, 50.026477866000043 ], [ -125.263280972999951, 50.026843521000039 ], [ -125.263506445999937, 50.027400654000076 ], [ -125.263679436999951, 50.028356589000069 ], [ -125.26387347099994, 50.028614133000055 ], [ -125.264115029999942, 50.02878027300001 ], [ -125.26444740899997, 50.028941637000059 ], [ -125.264481678999957, 50.028951348000128 ], [ -125.264801698, 50.02904201799999 ], [ -125.26518623599992, 50.029085036000097 ], [ -125.266603612999987, 50.029041467000063 ], [ -125.268456892999907, 50.028972895000074 ], [ -125.268462301999975, 50.029462820000163 ], [ -125.268467111999939, 50.029898996000078 ], [ -125.268469686999964, 50.030344262000064 ], [ -125.26847229199997, 50.030798103000016 ], [ -125.266713720999959, 50.030789100000064 ], [ -125.266709180999925, 50.031765403000051 ], [ -125.266699431999896, 50.032547497000117 ], [ -125.264930141999955, 50.032538769000062 ], [ -125.263600805999914, 50.032532191000037 ], [ -125.263586744999969, 50.032532193000087 ], [ -125.263004749999951, 50.032532111000087 ], [ -125.262555778999968, 50.032532038000085 ], [ -125.262237103999951, 50.032531982000116 ], [ -125.261938129999976, 50.032558307000052 ], [ -125.261312161999939, 50.032466716000123 ], [ -125.261615174999946, 50.031443280000133 ] ], [ [ -125.260108133999964, 50.026712344000096 ], [ -125.26010987399998, 50.026605131000053 ], [ -125.259924149999918, 50.026608750000086 ], [ -125.259846075, 50.024945548000034 ], [ -125.258170041999975, 50.024934246000065 ], [ -125.258250117999978, 50.026641352000098 ], [ -125.257831609999968, 50.02664950000009 ], [ -125.257886145000015, 50.027812207000046 ], [ -125.259187983999965, 50.027820991000148 ], [ -125.259191840999961, 50.027583560000039 ], [ -125.259280137999937, 50.027584156000053 ], [ -125.259294389999951, 50.026706861000065 ], [ -125.260108133999964, 50.026712344000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173954034", "BldgCostT": "112914449", "sL_LossRatio": "0.841243737686252", "sL_AssetLoss": "70994.327", "sL_BldgLoss": "59723.533", "sL_StrLoss": "53322.353", "sL_NStrLoss": "6401.18", "sL_ContLoss": "11270.794", "geom_point": "0101000020E6100000D6E95829ED505FC0FFBE5EE579024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.26551566099999, 50.026172502000122 ], [ -125.265355434999933, 50.02597714600013 ], [ -125.264935513999916, 50.025533950000117 ], [ -125.264906086999986, 50.025489443 ], [ -125.264543504999963, 50.025090351000138 ], [ -125.263996252999945, 50.024595087000073 ], [ -125.263981396999952, 50.024568328000079 ], [ -125.263691748999932, 50.02438227000011 ], [ -125.263295002999968, 50.024017688000093 ], [ -125.261223559999905, 50.022113846000124 ], [ -125.261088842000021, 50.021990033000058 ], [ -125.259512319999956, 50.020416846000039 ], [ -125.258155583999937, 50.019148984000019 ], [ -125.257548906999915, 50.018271870000028 ], [ -125.257180092999974, 50.017356833000065 ], [ -125.257126316999958, 50.016372866000069 ], [ -125.257226312999975, 50.015945289000086 ], [ -125.25730869299997, 50.015593088000102 ], [ -125.257406804999931, 50.015173604000054 ], [ -125.257657336999983, 50.014652418 ], [ -125.257989236999933, 50.013961978000111 ], [ -125.259674499999988, 50.013973347000103 ], [ -125.259616132999966, 50.017569257000062 ], [ -125.259278803999962, 50.017566983000052 ], [ -125.25925007799998, 50.019335743000063 ], [ -125.25958248499991, 50.019329267000082 ], [ -125.259607788999986, 50.019868489000039 ], [ -125.260026237999966, 50.019860336000164 ], [ -125.26003889299993, 50.020129947000029 ], [ -125.26045734399996, 50.020121792000047 ], [ -125.26048265699994, 50.020661014000098 ], [ -125.26090111399995, 50.020652858000091 ], [ -125.260913771999981, 50.020922468000023 ], [ -125.26133223, 50.020914311000077 ], [ -125.261357554999933, 50.021453532000088 ], [ -125.261776016999931, 50.021445373000056 ], [ -125.261801345999942, 50.021984592000088 ], [ -125.262219812999916, 50.021976432000017 ], [ -125.26223248, 50.022246042000077 ], [ -125.262650950999955, 50.022237879000031 ], [ -125.262676290999977, 50.022777100000084 ], [ -125.262975909999952, 50.02277125500008 ], [ -125.26300077399999, 50.021232741000041 ], [ -125.263279279999963, 50.021234608000036 ], [ -125.263288413999973, 50.020669169000016 ], [ -125.262400594999946, 50.020663213000034 ], [ -125.26240123599996, 50.020623608000044 ], [ -125.261738021999946, 50.020636542000027 ], [ -125.261700030999947, 50.019827711000083 ], [ -125.26128158399996, 50.019835870000101 ], [ -125.261268921999971, 50.019566259000058 ], [ -125.260432030999979, 50.019582572000047 ], [ -125.260368749999927, 50.018234519000053 ], [ -125.259950314999969, 50.018242673000039 ], [ -125.259912356999934, 50.017433841000127 ], [ -125.26033078399999, 50.01742568700007 ], [ -125.260318128999941, 50.017156077000074 ], [ -125.260360419999969, 50.017155253000084 ], [ -125.260410409999977, 50.014072259000059 ], [ -125.261885677999985, 50.014082180000052 ], [ -125.261899023999973, 50.013257409000062 ], [ -125.25833944199999, 50.013233436000093 ], [ -125.259435730999911, 50.010952633000088 ], [ -125.259588537999946, 50.01040786600003 ], [ -125.260251100999966, 50.010140883000062 ], [ -125.261768706999973, 50.010153802000069 ], [ -125.264826703999944, 50.010179707000106 ], [ -125.265088905999988, 50.010182300000153 ], [ -125.265817114999919, 50.010187200000061 ], [ -125.26612189399998, 50.010147908000057 ], [ -125.266582792999955, 50.010552002000054 ], [ -125.266501288999933, 50.011890997000044 ], [ -125.266465878999938, 50.012443742000087 ], [ -125.26645087699994, 50.012705323000056 ], [ -125.266421244999947, 50.013221135000023 ], [ -125.266374321999976, 50.013971554000065 ], [ -125.26637092299994, 50.014185505000043 ], [ -125.26635354099993, 50.015129680000079 ], [ -125.266347247999931, 50.015471780000013 ], [ -125.266337283, 50.016012200000091 ], [ -125.266341385999979, 50.016128946000073 ], [ -125.266382199999939, 50.017297464000073 ], [ -125.26639271799999, 50.017598544000109 ], [ -125.266404977999954, 50.019124276000106 ], [ -125.266409904999961, 50.0197393380001 ], [ -125.266401896, 50.020497207000084 ], [ -125.268326841999937, 50.020453061000097 ], [ -125.268346544999972, 50.020452649000084 ], [ -125.268343292999987, 50.020641193000095 ], [ -125.26832488099997, 50.021716590000068 ], [ -125.268301777999923, 50.022808790000092 ], [ -125.268303018999944, 50.023078507 ], [ -125.268396238999941, 50.023182524000084 ], [ -125.2685699, 50.023233149000092 ], [ -125.269591478999985, 50.023230936000111 ], [ -125.269599213, 50.024056300000098 ], [ -125.271473500999917, 50.024057111000076 ], [ -125.271481195, 50.025055095000077 ], [ -125.271464773999952, 50.026087117000024 ], [ -125.274413938999928, 50.026076967000108 ], [ -125.274291491999946, 50.026317091000053 ], [ -125.274107486999966, 50.026477730000053 ], [ -125.273858309999966, 50.026612720000074 ], [ -125.273346062999906, 50.026789144000148 ], [ -125.272739657999949, 50.027095310000028 ], [ -125.272470152999986, 50.027192433000089 ], [ -125.272187152999933, 50.027257995000056 ], [ -125.271300452999967, 50.027330787000025 ], [ -125.271183733999948, 50.027340353000106 ], [ -125.270959236999914, 50.027414379000064 ], [ -125.270834759999943, 50.027518752000077 ], [ -125.270826185999965, 50.027617589000101 ], [ -125.27077821099999, 50.028968211000077 ], [ -125.270777912999932, 50.028977500000089 ], [ -125.268456892999907, 50.028972895000074 ], [ -125.266603612999987, 50.029041467000063 ], [ -125.26518623599992, 50.029085036000097 ], [ -125.264801698, 50.02904201799999 ], [ -125.264481678999957, 50.028951348000128 ], [ -125.26444740899997, 50.028941637000059 ], [ -125.264115029999942, 50.02878027300001 ], [ -125.264214774999971, 50.028725081000125 ], [ -125.264428468999967, 50.02859634000005 ], [ -125.264618638999934, 50.02844982500006 ], [ -125.264865520999962, 50.028329438000036 ], [ -125.265151399999965, 50.028127622000042 ], [ -125.26531401599999, 50.027990493000104 ], [ -125.265446843999925, 50.027799872000116 ], [ -125.26562028599993, 50.027572726000074 ], [ -125.265697657999979, 50.027391894000097 ], [ -125.26572364499998, 50.027337612000039 ], [ -125.265761082999987, 50.027211289000071 ], [ -125.26579604799997, 50.027013084000025 ], [ -125.265805578999945, 50.026887164000094 ], [ -125.265755929, 50.026663233000058 ], [ -125.265740131999934, 50.026609556000054 ], [ -125.26573699, 50.02651974600019 ], [ -125.265705676999957, 50.026421348000035 ], [ -125.265617014999947, 50.026278881000025 ], [ -125.2656012, 50.026225182000069 ], [ -125.26551566099999, 50.026172502000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217469417", "BldgCostT": "133921667", "sL_LossRatio": "0.99079510062945", "sL_AssetLoss": "70911.15", "sL_BldgLoss": "70258.42", "sL_StrLoss": "67194.08", "sL_NStrLoss": "3064.34", "sL_ContLoss": "652.73", "geom_point": "0101000020E6100000A0A28F9E87515FC0D43E3E9D82024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.273429757999935, 50.029007690000064 ], [ -125.273199505999969, 50.028981882 ], [ -125.272299187999948, 50.028980390000122 ], [ -125.272045460999934, 50.028979913000057 ], [ -125.270777912999932, 50.028977500000089 ], [ -125.27077821099999, 50.028968211000077 ], [ -125.270826185999965, 50.027617589000101 ], [ -125.270834759999943, 50.027518752000077 ], [ -125.270959236999914, 50.027414379000064 ], [ -125.271183733999948, 50.027340353000106 ], [ -125.271300452999967, 50.027330787000025 ], [ -125.272187152999933, 50.027257995000056 ], [ -125.272470152999986, 50.027192433000089 ], [ -125.272739657999949, 50.027095310000028 ], [ -125.273346062999906, 50.026789144000148 ], [ -125.273858309999966, 50.026612720000074 ], [ -125.274107486999966, 50.026477730000053 ], [ -125.274291491999946, 50.026317091000053 ], [ -125.274413938999928, 50.026076967000108 ], [ -125.271464773999952, 50.026087117000024 ], [ -125.271481195, 50.025055095000077 ], [ -125.271473500999917, 50.024057111000076 ], [ -125.269599213, 50.024056300000098 ], [ -125.269591478999985, 50.023230936000111 ], [ -125.2685699, 50.023233149000092 ], [ -125.268396238999941, 50.023182524000084 ], [ -125.268303018999944, 50.023078507 ], [ -125.268301777999923, 50.022808790000092 ], [ -125.26832488099997, 50.021716590000068 ], [ -125.268343292999987, 50.020641193000095 ], [ -125.268346544999972, 50.020452649000084 ], [ -125.268326841999937, 50.020453061000097 ], [ -125.266401896, 50.020497207000084 ], [ -125.266409904999961, 50.0197393380001 ], [ -125.266404977999954, 50.019124276000106 ], [ -125.26639271799999, 50.017598544000109 ], [ -125.266382199999939, 50.017297464000073 ], [ -125.266341385999979, 50.016128946000073 ], [ -125.266337283, 50.016012200000091 ], [ -125.266347247999931, 50.015471780000013 ], [ -125.26635354099993, 50.015129680000079 ], [ -125.26637092299994, 50.014185505000043 ], [ -125.266374321999976, 50.013971554000065 ], [ -125.270801708999969, 50.013960609000087 ], [ -125.271878908999923, 50.013961388000091 ], [ -125.273557380999975, 50.013963493000084 ], [ -125.274190890999975, 50.013964830000099 ], [ -125.275146506999988, 50.013966810000106 ], [ -125.276535772999949, 50.013987670000041 ], [ -125.277346655999921, 50.013999842000082 ], [ -125.277504207999982, 50.014002184000084 ], [ -125.277919220999962, 50.014008418000053 ], [ -125.279426269999973, 50.014030966000099 ], [ -125.281097624999973, 50.014029702000109 ], [ -125.282133142999953, 50.014028919000047 ], [ -125.282610217999931, 50.014029416 ], [ -125.282624273999915, 50.014029411000074 ], [ -125.282597266, 50.014415839000115 ], [ -125.282412627999975, 50.016846040000054 ], [ -125.282403697999897, 50.016963468000014 ], [ -125.282361896999973, 50.017685600000107 ], [ -125.282301785999948, 50.018723651000073 ], [ -125.279785811999943, 50.018707187000125 ], [ -125.279779329999911, 50.019117646000048 ], [ -125.275067624999934, 50.01908665900001 ], [ -125.275090264999946, 50.019565839000045 ], [ -125.274671822999935, 50.019574046000045 ], [ -125.274684560999972, 50.019843654000049 ], [ -125.273010780999954, 50.019876467000053 ], [ -125.27302350799999, 50.02014607400011 ], [ -125.270635677999948, 50.020192845000089 ], [ -125.270626663999977, 50.020756373000026 ], [ -125.27053727, 50.020755779000069 ], [ -125.27050738599992, 50.022624072000099 ], [ -125.27062724699995, 50.022621725000143 ], [ -125.270589101999931, 50.021812901000054 ], [ -125.27100756599999, 50.021804709000115 ], [ -125.270969416999918, 50.020995882000115 ], [ -125.273061689999977, 50.020954899000103 ], [ -125.273048962999908, 50.020685291000085 ], [ -125.274304317999963, 50.020660683000123 ], [ -125.27431705399998, 50.020930292000116 ], [ -125.274735505999956, 50.020922086000034 ], [ -125.274722770999986, 50.020652477000056 ], [ -125.276396573999961, 50.020619640000099 ], [ -125.27638382799995, 50.020350032000138 ], [ -125.276802274999966, 50.020341820000105 ], [ -125.276789526999934, 50.02007221200013 ], [ -125.279718642999967, 50.020014679000056 ], [ -125.279731406999986, 50.020284285000066 ], [ -125.280149853999944, 50.0202760600001 ], [ -125.280175387999961, 50.020815273000039 ], [ -125.280593838999948, 50.020807047000112 ], [ -125.28073431899999, 50.023772719000114 ], [ -125.279060411999964, 50.02380562200009 ], [ -125.278932793999928, 50.021109552000034 ], [ -125.277677430999987, 50.02113421100006 ], [ -125.277715691999987, 50.021943032000067 ], [ -125.277297230999963, 50.021951249000026 ], [ -125.277322735999988, 50.02249046300004 ], [ -125.27690427, 50.022498678000034 ], [ -125.276917019, 50.022768285000069 ], [ -125.276498548999882, 50.022776500000049 ], [ -125.276511297999946, 50.023046106000059 ], [ -125.276092826999971, 50.023054319000025 ], [ -125.276156557999954, 50.024402356000088 ], [ -125.275738072999928, 50.024410567000075 ], [ -125.275801798, 50.025758603000099 ], [ -125.275383301999952, 50.0257668140001 ], [ -125.275416007999922, 50.026458745000106 ], [ -125.276569311999964, 50.026466343000052 ], [ -125.276564688999912, 50.026757889000081 ], [ -125.277057412999952, 50.026761132000019 ], [ -125.277040594, 50.02782197100003 ], [ -125.279073505999989, 50.027835326000115 ], [ -125.27866861699999, 50.027973223000082 ], [ -125.278101273999965, 50.028101697000082 ], [ -125.27794662499997, 50.028120693000034 ], [ -125.276554692, 50.028291654000043 ], [ -125.27599971599993, 50.02835981900008 ], [ -125.275926714999954, 50.028368775000111 ], [ -125.275320490999945, 50.02848786900006 ], [ -125.27491217, 50.028635482 ], [ -125.274868536999975, 50.028651265000086 ], [ -125.274315186999956, 50.028946957000095 ], [ -125.274258084999985, 50.028989734000078 ], [ -125.274065216999972, 50.029134158000055 ], [ -125.273710772999976, 50.029039165000093 ], [ -125.273429757999935, 50.029007690000064 ] ], [ [ -125.27422023099993, 50.017693614000095 ], [ -125.274244263999918, 50.0161832450001 ], [ -125.274074659999926, 50.016182124000082 ], [ -125.274074427999963, 50.016196781000069 ], [ -125.274104874999921, 50.016196983000107 ], [ -125.274081082999928, 50.017691928000033 ], [ -125.274081007999911, 50.017696628000053 ], [ -125.274220225999954, 50.017693898000083 ], [ -125.27422023099993, 50.017693614000095 ] ], [ [ -125.282404942999946, 50.014834548000145 ], [ -125.282392166999969, 50.014564942000028 ], [ -125.278456334999987, 50.014642327000068 ], [ -125.278450609999979, 50.015004324000117 ], [ -125.281755903999937, 50.015025983000058 ], [ -125.281754363999966, 50.015123788000047 ], [ -125.281999935999977, 50.015125393000083 ], [ -125.281986544999981, 50.01484278200013 ], [ -125.282404942999946, 50.014834548000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121147083", "BldgCostT": "81318333", "sL_LossRatio": "0.961514124742516", "sL_AssetLoss": "53685.722", "sL_BldgLoss": "51619.58", "sL_StrLoss": "49159.73", "sL_NStrLoss": "2459.85", "sL_ContLoss": "2066.142", "geom_point": "0101000020E61000009084BF575B515FC0A20B7FC062014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.266374321999976, 50.013971554000065 ], [ -125.266421244999947, 50.013221135000023 ], [ -125.26645087699994, 50.012705323000056 ], [ -125.266465878999938, 50.012443742000087 ], [ -125.266501288999933, 50.011890997000044 ], [ -125.266582792999955, 50.010552002000054 ], [ -125.26612189399998, 50.010147908000057 ], [ -125.265817114999919, 50.010187200000061 ], [ -125.265088905999988, 50.010182300000153 ], [ -125.264826703999944, 50.010179707000106 ], [ -125.261768706999973, 50.010153802000069 ], [ -125.260251100999966, 50.010140883000062 ], [ -125.259588537999946, 50.01040786600003 ], [ -125.259618429999961, 50.010301295000097 ], [ -125.259673660999951, 50.01010433700008 ], [ -125.259677130999961, 50.010092047000086 ], [ -125.259448153000022, 50.009132275000056 ], [ -125.2593269199999, 50.008624099000052 ], [ -125.259060587999954, 50.00750751500005 ], [ -125.266008098999947, 50.007509200000079 ], [ -125.267459038, 50.007508209000051 ], [ -125.267473003999939, 50.007508209000051 ], [ -125.270658788999953, 50.007506825000036 ], [ -125.271988126999972, 50.007506240000041 ], [ -125.27242079199999, 50.007506029000076 ], [ -125.272930575999936, 50.007505801000029 ], [ -125.274101967999968, 50.007506857000081 ], [ -125.274111617999935, 50.007711288000067 ], [ -125.274529957999931, 50.007703084000063 ], [ -125.274625399999977, 50.009724325000107 ], [ -125.275007619999954, 50.009726849000053 ], [ -125.275897905999955, 50.009732721000077 ], [ -125.275891566999988, 50.010132047000106 ], [ -125.275891075999951, 50.010162959000098 ], [ -125.276006427999917, 50.010163720000065 ], [ -125.275999827999925, 50.010579540000052 ], [ -125.278435307, 50.010595565000088 ], [ -125.278435272999928, 50.010594869000052 ], [ -125.279431457000015, 50.010575295000073 ], [ -125.279690360999936, 50.0105702070001 ], [ -125.279703120999969, 50.010839815000054 ], [ -125.280121484999952, 50.010831590000116 ], [ -125.280249122999948, 50.013527662000101 ], [ -125.281084630999914, 50.013511232000035 ], [ -125.282654189999931, 50.013480353 ], [ -125.282759447, 50.01347828100014 ], [ -125.282746666999984, 50.013208675000016 ], [ -125.282871843999956, 50.013206212000071 ], [ -125.285256969999978, 50.013159241000082 ], [ -125.285244177, 50.012889634000011 ], [ -125.286080937999941, 50.012873145000071 ], [ -125.286068141999976, 50.012603539000061 ], [ -125.286811282999906, 50.012588890000046 ], [ -125.286811470999979, 50.012679290000058 ], [ -125.286811803999981, 50.012850128000103 ], [ -125.286831169999971, 50.013666776000072 ], [ -125.286836078999968, 50.013873699000044 ], [ -125.286839558999958, 50.014020889000108 ], [ -125.285367539999967, 50.014020328000122 ], [ -125.284170571999979, 50.01402271200007 ], [ -125.283888491999946, 50.014023295000094 ], [ -125.283824447999933, 50.014023464000097 ], [ -125.28331222099996, 50.014024928000076 ], [ -125.282809905999969, 50.014026144000056 ], [ -125.282624273999915, 50.014029411000074 ], [ -125.282610217999931, 50.014029416 ], [ -125.282133142999953, 50.014028919000047 ], [ -125.281097624999973, 50.014029702000109 ], [ -125.279426269999973, 50.014030966000099 ], [ -125.277919220999962, 50.014008418000053 ], [ -125.277504207999982, 50.014002184000084 ], [ -125.277346655999921, 50.013999842000082 ], [ -125.276535772999949, 50.013987670000041 ], [ -125.275146506999988, 50.013966810000106 ], [ -125.274190890999975, 50.013964830000099 ], [ -125.273557380999975, 50.013963493000084 ], [ -125.271878908999923, 50.013961388000091 ], [ -125.270801708999969, 50.013960609000087 ], [ -125.266374321999976, 50.013971554000065 ] ], [ [ -125.278575569999958, 50.013560552000065 ], [ -125.278537303999926, 50.012751730000026 ], [ -125.278486226, 50.012752733000134 ], [ -125.278473415999954, 50.013562558000061 ], [ -125.278575569999958, 50.013560552000065 ] ], [ [ -125.278480954000017, 50.011560568000093 ], [ -125.278480014999943, 50.011540699000122 ], [ -125.278479700999981, 50.011560560000085 ], [ -125.278480954000017, 50.011560568000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58205500", "BldgCostT": "39670000", "sL_LossRatio": "0.997088180394271", "sL_AssetLoss": "20513.29", "sL_BldgLoss": "20453.559", "sL_StrLoss": "20136.279", "sL_NStrLoss": "317.28", "sL_ContLoss": "59.731", "geom_point": "0101000020E6100000A25A441493525FC0E94650E37B024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.292668896999956, 50.023389124000083 ], [ -125.291092314999958, 50.023181197000028 ], [ -125.288670115999963, 50.023295845000064 ], [ -125.28860844499999, 50.021998476000128 ], [ -125.288189985999978, 50.022006732000065 ], [ -125.288202798999947, 50.022276337000037 ], [ -125.287784339000012, 50.02228459100008 ], [ -125.287809958999944, 50.022823802000069 ], [ -125.286554558999939, 50.022848556000064 ], [ -125.286477737999988, 50.021230923000076 ], [ -125.286896191999972, 50.021222674000079 ], [ -125.286883385999886, 50.020953069000136 ], [ -125.287301836999987, 50.020944818000054 ], [ -125.287276220999942, 50.020405607000036 ], [ -125.287694666999954, 50.020397355000163 ], [ -125.287681857999971, 50.02012775 ], [ -125.288100301999961, 50.020119496000021 ], [ -125.28807467899999, 50.019580285000067 ], [ -125.288493116999931, 50.019572030000084 ], [ -125.288480301999968, 50.019302424000017 ], [ -125.288061866999925, 50.019310679000064 ], [ -125.287985004999925, 50.017693047000115 ], [ -125.287566581999968, 50.017701301000052 ], [ -125.287553774999964, 50.017431695000077 ], [ -125.287135355999951, 50.017439947000071 ], [ -125.287109744999938, 50.016900735000029 ], [ -125.286691329999911, 50.016908985000022 ], [ -125.286665726999928, 50.016369774000054 ], [ -125.286247315999901, 50.016378022 ], [ -125.28620892, 50.015569204000016 ], [ -125.284535302999984, 50.015602181000133 ], [ -125.284727167999961, 50.019646272000024 ], [ -125.284308725999949, 50.019654514000088 ], [ -125.284334307999984, 50.020193725000048 ], [ -125.282242082999986, 50.020234912000028 ], [ -125.282229563999977, 50.019970794000116 ], [ -125.282261174000013, 50.019424963000105 ], [ -125.283459061999935, 50.019401386000055 ], [ -125.283369568999916, 50.017514142000088 ], [ -125.283317837999931, 50.017515161000084 ], [ -125.283298746999918, 50.018730159000086 ], [ -125.282301785999948, 50.018723651000073 ], [ -125.282361896999973, 50.017685600000107 ], [ -125.282403697999897, 50.016963468000014 ], [ -125.282412627999975, 50.016846040000054 ], [ -125.282597266, 50.014415839000115 ], [ -125.282624273999915, 50.014029411000074 ], [ -125.282809905999969, 50.014026144000056 ], [ -125.28331222099996, 50.014024928000076 ], [ -125.283824447999933, 50.014023464000097 ], [ -125.283888491999946, 50.014023295000094 ], [ -125.284170571999979, 50.01402271200007 ], [ -125.285367539999967, 50.014020328000122 ], [ -125.286839558999958, 50.014020889000108 ], [ -125.286971670999918, 50.014015762000042 ], [ -125.286985657999978, 50.014015216000082 ], [ -125.287103674999969, 50.014010617000025 ], [ -125.287235733999964, 50.014005478000072 ], [ -125.287367827999972, 50.014000330000087 ], [ -125.28749988699991, 50.013995191000106 ], [ -125.287631925, 50.013990031000027 ], [ -125.287764017999962, 50.01398488100007 ], [ -125.287808753999954, 50.013983141000011 ], [ -125.287920957999972, 50.016345019000035 ], [ -125.288339366999949, 50.016336766000073 ], [ -125.288352177999968, 50.016606371000073 ], [ -125.288770591999963, 50.016598116000111 ], [ -125.288796218999963, 50.017137326000125 ], [ -125.289214634999922, 50.01712906900012 ], [ -125.28922745199999, 50.017398674000106 ], [ -125.289645869999958, 50.017390415000065 ], [ -125.289658689999925, 50.017660020000079 ], [ -125.290495530999976, 50.017643497000044 ], [ -125.290534002999919, 50.018452311000068 ], [ -125.290952431999955, 50.018444048000113 ], [ -125.290965257999972, 50.018713654000088 ], [ -125.291074657999957, 50.018711492000094 ], [ -125.291080229, 50.018353039000075 ], [ -125.291716876999942, 50.018357145000088 ], [ -125.291720719999901, 50.018109655000139 ], [ -125.297301790999938, 50.018145492000023 ], [ -125.297291679999944, 50.018801723000173 ], [ -125.297972604999984, 50.018806076000033 ], [ -125.297940194999953, 50.020911600000083 ], [ -125.29787588399995, 50.020915103000085 ], [ -125.29738181099999, 50.02108599500005 ], [ -125.297248394999912, 50.021214190000101 ], [ -125.297243391000023, 50.021386508000013 ], [ -125.297927303999955, 50.02174897400009 ], [ -125.297926293999978, 50.021814630000016 ], [ -125.297834989999956, 50.022094288000098 ], [ -125.297518678999978, 50.022399435000061 ], [ -125.296145835999965, 50.022390649000087 ], [ -125.29613325299999, 50.023205906000044 ], [ -125.292668896999956, 50.023389124000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.996168582375479", "sL_AssetLoss": "1051.83", "sL_BldgLoss": "1047.8", "sL_StrLoss": "1033", "sL_NStrLoss": "14.8", "sL_ContLoss": "4.03", "geom_point": "0101000020E6100000A0BDC0CD1E525FC01E1418DBB9024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.282254861999931, 50.020504518000045 ], [ -125.283928650999954, 50.020471572000076 ], [ -125.284005386, 50.022089208000104 ], [ -125.282331540999962, 50.022122156000059 ], [ -125.282254861999931, 50.020504518000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.993585006285475", "sL_AssetLoss": "918.785", "sL_BldgLoss": "912.891", "sL_StrLoss": "889.731", "sL_NStrLoss": "23.16", "sL_ContLoss": "5.894", "geom_point": "0101000020E61000006DA9C5D8F0505FC040142FC3BDFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.263845305999922, 49.958527993000118 ], [ -125.26551696699994, 49.958495341000052 ], [ -125.265554941999966, 49.959304178000103 ], [ -125.263883251999957, 49.959336831 ], [ -125.263845305999922, 49.958527993000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994857795835449", "sL_AssetLoss": "315.04", "sL_BldgLoss": "313.42", "sL_StrLoss": "307", "sL_NStrLoss": "6.42", "sL_ContLoss": "1.62", "geom_point": "0101000020E6100000B5302CFB454D5FC078AD6B51F2F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.206746878999979, 49.944786571000073 ], [ -125.208000318999922, 49.944762707000031 ], [ -125.208012234999941, 49.94502327400005 ], [ -125.206756976999884, 49.945007514000046 ], [ -125.206746878999979, 49.944786571000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15055833", "BldgCostT": "10383333", "sL_LossRatio": "0.995667379330851", "sL_AssetLoss": "7062.7", "sL_BldgLoss": "7032.1", "sL_StrLoss": "6883", "sL_NStrLoss": "149.1", "sL_ContLoss": "30.6", "geom_point": "0101000020E61000000A6AB6FA03515FC0BFD7CEFF44F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.267175897999934, 49.949287676000111 ], [ -125.267150572999952, 49.948748452000075 ], [ -125.266732741999945, 49.948756622000047 ], [ -125.266720081999964, 49.94848700900009 ], [ -125.266302253999967, 49.948495177000019 ], [ -125.266289596999968, 49.948225564000062 ], [ -125.265871769999947, 49.948233731000101 ], [ -125.265859115999945, 49.947964118000044 ], [ -125.26544129199999, 49.947972283000112 ], [ -125.265428638999978, 49.947702671000073 ], [ -125.265010817999965, 49.947710834000091 ], [ -125.26499816799999, 49.947441221000062 ], [ -125.264162527999972, 49.947457543000091 ], [ -125.264124594999942, 49.946648703000136 ], [ -125.263706780999897, 49.946656862000069 ], [ -125.263694137999963, 49.946387249000082 ], [ -125.262858517999945, 49.94640356100011 ], [ -125.262820606999952, 49.945594721000084 ], [ -125.264074017999945, 49.945570251000049 ], [ -125.264086661999926, 49.945839863000053 ], [ -125.264922272999982, 49.945823542000014 ], [ -125.264934922999885, 49.946093155000071 ], [ -125.265352729999933, 49.946084991000085 ], [ -125.265365380999953, 49.946354605000074 ], [ -125.265783190999954, 49.946346441000088 ], [ -125.26580849799997, 49.946885666000107 ], [ -125.266226312999919, 49.946877500000063 ], [ -125.26623896800001, 49.947147113000071 ], [ -125.266656785999942, 49.947138946000067 ], [ -125.266669444999962, 49.947408558000035 ], [ -125.267087262999922, 49.947400388000048 ], [ -125.26709992399999, 49.947670001000077 ], [ -125.267517744999921, 49.947661830000065 ], [ -125.267530408999917, 49.947931442000034 ], [ -125.267948232999984, 49.947923270000061 ], [ -125.267960898999988, 49.948192882000043 ], [ -125.268378723999902, 49.948184708000042 ], [ -125.268391392999945, 49.948454320000032 ], [ -125.268809220999941, 49.948446145000041 ], [ -125.268847234999924, 49.949254982000099 ], [ -125.267175897999934, 49.949287676000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152233249", "BldgCostT": "104044999", "sL_LossRatio": "0.995445323390235", "sL_AssetLoss": "70032.634", "sL_BldgLoss": "69713.658", "sL_StrLoss": "68159.098", "sL_NStrLoss": "1554.56", "sL_ContLoss": "318.976", "geom_point": "0101000020E6100000BED13BD3934E5FC001584F7313FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.220796591999914, 49.965814219000031 ], [ -125.220891090999928, 49.964601896000055 ], [ -125.220952593999954, 49.964432390000056 ], [ -125.221052624999942, 49.964288297000095 ], [ -125.221481221999966, 49.963671907000041 ], [ -125.221519612999955, 49.962404304000053 ], [ -125.221546088999915, 49.961500893000036 ], [ -125.221995902999979, 49.96152211100015 ], [ -125.222188692999936, 49.961577404000117 ], [ -125.22338122699999, 49.962179305000099 ], [ -125.224094988999965, 49.961590914000091 ], [ -125.223096185999907, 49.961075833000045 ], [ -125.22299050799991, 49.960978832000123 ], [ -125.222843477999959, 49.960610039000052 ], [ -125.223286878999943, 49.96051516400005 ], [ -125.223640859999961, 49.960360674000071 ], [ -125.223714357999953, 49.960328599000064 ], [ -125.223775495, 49.960301942000115 ], [ -125.224468569999928, 49.959866242000089 ], [ -125.224611344999914, 49.959776119000026 ], [ -125.224926408999977, 49.959577262000039 ], [ -125.22512497299999, 49.959372767000083 ], [ -125.225519224999928, 49.958970927000045 ], [ -125.225748646999989, 49.958836788000099 ], [ -125.225997021999888, 49.958743346000077 ], [ -125.22600672, 49.958739696000073 ], [ -125.226090642999949, 49.95871928400009 ], [ -125.227043096000017, 49.958700994000012 ], [ -125.227055537999917, 49.95897061300014 ], [ -125.227891398999958, 49.958954556000073 ], [ -125.227878949999976, 49.958684936000068 ], [ -125.228714805, 49.958668873000107 ], [ -125.228702352999974, 49.958399254000021 ], [ -125.229538200999912, 49.958383183000052 ], [ -125.229510823999988, 49.957790576000029 ], [ -125.229475920999974, 49.95703508800009 ], [ -125.229058008999985, 49.957043124000023 ], [ -125.228995743999945, 49.955695027000111 ], [ -125.230667347999898, 49.955662880000091 ], [ -125.230671860999976, 49.955760520000041 ], [ -125.230679808999938, 49.955932498000102 ], [ -125.231515616, 49.95591641500004 ], [ -125.231528081999954, 49.956186035000023 ], [ -125.231742812, 49.956181901000051 ], [ -125.231945985999943, 49.956177991000089 ], [ -125.231942196999967, 49.956096050000049 ], [ -125.23193351799992, 49.955908372000117 ], [ -125.232811537999979, 49.955891467000107 ], [ -125.232983889999971, 49.955888147000088 ], [ -125.233187222999945, 49.955884230000123 ], [ -125.233224649999954, 49.956693086000023 ], [ -125.232806742999969, 49.95670113400007 ], [ -125.232819216999957, 49.9569707530001 ], [ -125.232506040999951, 49.956976783000094 ], [ -125.232401307000018, 49.956978800000037 ], [ -125.232425247999927, 49.957496384000116 ], [ -125.232313170999959, 49.957472135000025 ], [ -125.232334736999945, 49.95768359800006 ], [ -125.232450167999986, 49.958035055000089 ], [ -125.232501087999978, 49.959135749000019 ], [ -125.232919017999961, 49.95912770100005 ], [ -125.232956445999932, 49.959936556000073 ], [ -125.233374381999937, 49.959928507000086 ], [ -125.233386860999943, 49.960198125000083 ], [ -125.233907507999945, 49.960188095000106 ], [ -125.233661585999968, 49.960412791000095 ], [ -125.233445271999969, 49.960681012000052 ], [ -125.233154489999919, 49.96115014300004 ], [ -125.232966017999942, 49.961514063000131 ], [ -125.232797244999972, 49.961839981000018 ], [ -125.232653060999965, 49.962210659000071 ], [ -125.232498638999957, 49.962607556000101 ], [ -125.232248690999967, 49.963382703 ], [ -125.231991607999959, 49.964582094000022 ], [ -125.23181824599996, 49.96457424500003 ], [ -125.23164060199997, 49.96456620400005 ], [ -125.231109118999953, 49.964430295000057 ], [ -125.230904097999939, 49.964268805000081 ], [ -125.22993667599998, 49.964772695000136 ], [ -125.229153093999983, 49.965175879000064 ], [ -125.228976381999985, 49.965266789000083 ], [ -125.228467503999923, 49.964863095000048 ], [ -125.228091909999961, 49.96465818300004 ], [ -125.227575312999988, 49.964545685000097 ], [ -125.226424123999962, 49.964543003000095 ], [ -125.226420488, 49.965166994000086 ], [ -125.22632609599998, 49.965472896000136 ], [ -125.226114798999987, 49.965766398000063 ], [ -125.225102514999961, 49.96574944200011 ], [ -125.223794794999932, 49.965727510000079 ], [ -125.223328594999955, 49.965680201000112 ], [ -125.222853574999945, 49.965581501000074 ], [ -125.222542925, 49.96557661 ], [ -125.222265416999946, 49.965664485000055 ], [ -125.222117294999961, 49.965766897000073 ], [ -125.222081804999974, 49.965887090000102 ], [ -125.220796591999914, 49.965814219000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22830250", "BldgCostT": "15745000", "sL_LossRatio": "0.993626090016815", "sL_AssetLoss": "12275.04", "sL_BldgLoss": "12196.8", "sL_StrLoss": "11860", "sL_NStrLoss": "336.8", "sL_ContLoss": "78.24", "geom_point": "0101000020E61000000DC83DE1954C5FC0FBF921FCACF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.195207817999972, 49.928300573000122 ], [ -125.195619801999896, 49.92495893500012 ], [ -125.196563264999938, 49.924965854000085 ], [ -125.196562632999971, 49.925001770000094 ], [ -125.197145244999916, 49.925006039 ], [ -125.197144518, 49.92504736100004 ], [ -125.198189906999957, 49.925055013000097 ], [ -125.198126815999899, 49.92865132 ], [ -125.19678375499997, 49.928641489000121 ], [ -125.196769024000034, 49.929479644000025 ], [ -125.196694312, 49.929486402000109 ], [ -125.195106015999926, 49.92956940500008 ], [ -125.195546429, 49.929198470000145 ], [ -125.194692282999952, 49.928998407000108 ], [ -125.195207817999972, 49.928300573000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.995694866019012", "sL_AssetLoss": "1149.79", "sL_BldgLoss": "1144.84", "sL_StrLoss": "1126", "sL_NStrLoss": "18.84", "sL_ContLoss": "4.95", "geom_point": "0101000020E6100000BCC5CBECD6505FC0A0FD06F546F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.26246597699999, 49.946950942000058 ], [ -125.263719422999955, 49.946926476000101 ], [ -125.263769994999961, 49.948004928000053 ], [ -125.262516518999959, 49.948029396000088 ], [ -125.26246597699999, 49.946950942000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "0.995743443865368", "sL_AssetLoss": "2408.05", "sL_BldgLoss": "2397.8", "sL_StrLoss": "2349", "sL_NStrLoss": "48.8", "sL_ContLoss": "10.25", "geom_point": "0101000020E61000005B0594FAB04D5FC0A52FDF556AF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.212984724999956, 49.925777545000074 ], [ -125.212922978000037, 49.924429426000032 ], [ -125.214593517999958, 49.924397525000046 ], [ -125.214618235, 49.924936772000081 ], [ -125.215035874999913, 49.924928793000078 ], [ -125.215072957999922, 49.92573766100007 ], [ -125.212984724999956, 49.925777545000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "0.995595869399402", "sL_AssetLoss": "2755.822", "sL_BldgLoss": "2743.685", "sL_StrLoss": "2686.505", "sL_NStrLoss": "57.18", "sL_ContLoss": "12.137", "geom_point": "0101000020E6100000358C0E8A5E515FC040F9DC853DFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.271203640999957, 49.963781282000106 ], [ -125.271190949999891, 49.963511672000031 ], [ -125.270772992999923, 49.96351985700003 ], [ -125.27076030299996, 49.963250246000051 ], [ -125.270342348999975, 49.963258432000089 ], [ -125.270278918999921, 49.961910375000052 ], [ -125.271532746999981, 49.96188581800007 ], [ -125.2715454399999, 49.962155428000095 ], [ -125.272381328999955, 49.962139049000058 ], [ -125.272457518999957, 49.963756714000056 ], [ -125.271203640999957, 49.963781282000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.994499491509948", "sL_AssetLoss": "317.607", "sL_BldgLoss": "315.86", "sL_StrLoss": "301.24", "sL_NStrLoss": "14.62", "sL_ContLoss": "1.747", "geom_point": "0101000020E6100000A80B676D894C5FC0305669C516F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.195574474999944, 49.922060711000078 ], [ -125.196094862999956, 49.922050855000073 ], [ -125.196143879999951, 49.923129361000058 ], [ -125.195748551999955, 49.923136850000091 ], [ -125.195745512999949, 49.923118034000069 ], [ -125.195731177999932, 49.923029274000065 ], [ -125.195716787999956, 49.922940505000106 ], [ -125.19570244099999, 49.922851782000073 ], [ -125.195688051999952, 49.922763013000129 ], [ -125.19567371699999, 49.922674255000125 ], [ -125.195659361999901, 49.922585472000058 ], [ -125.19564501499994, 49.922496748000114 ], [ -125.195630625999954, 49.922407980000052 ], [ -125.195616257999973, 49.922319233000024 ], [ -125.195601937999982, 49.922230439000096 ], [ -125.195587589999946, 49.922141715000052 ], [ -125.195574474999944, 49.922060711000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73638334", "BldgCostT": "50313334", "sL_LossRatio": "0.995757083460254", "sL_AssetLoss": "30727.92", "sL_BldgLoss": "30597.544", "sL_StrLoss": "29989.654", "sL_NStrLoss": "607.89", "sL_ContLoss": "130.376", "geom_point": "0101000020E6100000EA2432DE5C515FC0A9A46F4EFCF94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.269490066999978, 49.955956350000122 ], [ -125.269519765999959, 49.954099300000095 ], [ -125.269075361999953, 49.954107999 ], [ -125.269050011999951, 49.953568775000122 ], [ -125.268214268999927, 49.953585127000075 ], [ -125.268176257999983, 49.952776291000106 ], [ -125.267758392999937, 49.95278446500005 ], [ -125.267755584999975, 49.952724687000021 ], [ -125.267733058999966, 49.952245240000089 ], [ -125.267033105999985, 49.952258929000081 ], [ -125.266897338, 49.952261583000087 ], [ -125.266892970999962, 49.95216858600002 ], [ -125.26687201299994, 49.951722359000023 ], [ -125.266629080999948, 49.951727109000011 ], [ -125.266454156999913, 49.951730528000098 ], [ -125.266403518999979, 49.950652078000125 ], [ -125.268074906, 49.950619393000132 ], [ -125.268087573999978, 49.950889005000072 ], [ -125.268505422999965, 49.950880830000074 ], [ -125.268492751999972, 49.950611219000052 ], [ -125.269328442999949, 49.950594865000021 ], [ -125.269315767999942, 49.950325252000034 ], [ -125.26889792499999, 49.95033343000005 ], [ -125.268859907999982, 49.949524593000071 ], [ -125.270113415999944, 49.949500056000055 ], [ -125.270126095999956, 49.949769669000069 ], [ -125.270961771999936, 49.949753303000051 ], [ -125.270987139999932, 49.950292525000087 ], [ -125.271404980999932, 49.950284341000064 ], [ -125.271417668999931, 49.950553952000071 ], [ -125.272253356999911, 49.950537577 ], [ -125.272278740999951, 49.951076800000052 ], [ -125.272696589999939, 49.951068610000107 ], [ -125.272709283999959, 49.951338221000114 ], [ -125.273127134999982, 49.951330029000111 ], [ -125.273139831999941, 49.95159964099999 ], [ -125.273975537999974, 49.951583253000059 ], [ -125.274000940999912, 49.952122475000102 ], [ -125.275254511999918, 49.952097881000014 ], [ -125.275330770999943, 49.953715545000122 ], [ -125.275099603999976, 49.953720082000039 ], [ -125.275063525999968, 49.955993320000047 ], [ -125.269490066999978, 49.955956350000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17235668", "BldgCostT": "11886668", "sL_LossRatio": "0.99399162688995", "sL_AssetLoss": "9375.25", "sL_BldgLoss": "9318.92", "sL_StrLoss": "9050", "sL_NStrLoss": "268.92", "sL_ContLoss": "56.33", "geom_point": "0101000020E6100000A0FF9A83524D5FC0D2B8FD13D8F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.207334749999973, 49.930203009000074 ], [ -125.207322427999941, 49.929933385 ], [ -125.206487058999983, 49.929949288000053 ], [ -125.20645011500001, 49.929140415000084 ], [ -125.206867790999937, 49.92913246400007 ], [ -125.206806208000017, 49.927784341000056 ], [ -125.207223875, 49.927776390000069 ], [ -125.207199237999959, 49.927237140000095 ], [ -125.207616898999945, 49.927229188000155 ], [ -125.207604576999984, 49.926959563000018 ], [ -125.208022235999977, 49.926951608000124 ], [ -125.207997589999977, 49.926412360000072 ], [ -125.209250551999929, 49.926388488000093 ], [ -125.20929987199996, 49.927466985000081 ], [ -125.208882208999981, 49.927474944000117 ], [ -125.208906863999943, 49.928014193000088 ], [ -125.209742198999948, 49.927998272000089 ], [ -125.209791530999951, 49.929076769000105 ], [ -125.209373854999924, 49.929084730000035 ], [ -125.20939851699994, 49.929623978000066 ], [ -125.208980835999952, 49.929631937000117 ], [ -125.208993166999974, 49.929901562000062 ], [ -125.208575481999944, 49.929909520000123 ], [ -125.20858780899999, 49.930179143000075 ], [ -125.207334749999973, 49.930203009000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38364584", "BldgCostT": "26458334", "sL_LossRatio": "0.994888542702879", "sL_AssetLoss": "17582.07", "sL_BldgLoss": "17492.2", "sL_StrLoss": "17105", "sL_NStrLoss": "387.2", "sL_ContLoss": "89.87", "geom_point": "0101000020E6100000CA56B0F0A2505FC0A8ED15CCCEFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.257094152999983, 49.957667536000017 ], [ -125.262667809999982, 49.957705135000104 ], [ -125.262609749999967, 49.961301320000075 ], [ -125.258020826999967, 49.961270384000073 ], [ -125.257059642999963, 49.959789046000033 ], [ -125.257094152999983, 49.957667536000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.995234163029374", "sL_AssetLoss": "847.7", "sL_BldgLoss": "843.66", "sL_StrLoss": "828", "sL_NStrLoss": "15.66", "sL_ContLoss": "4.04", "geom_point": "0101000020E61000008FBB31D2C5515FC03122727642FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.277053132, 49.95476117400009 ], [ -125.278306769999986, 49.954736545000088 ], [ -125.278344950999951, 49.955545376000025 ], [ -125.277091295, 49.955570004000023 ], [ -125.277053132, 49.95476117400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16904583", "BldgCostT": "11658333", "sL_LossRatio": "0.994311300411876", "sL_AssetLoss": "8611.81", "sL_BldgLoss": "8562.82", "sL_StrLoss": "8339", "sL_NStrLoss": "223.82", "sL_ContLoss": "48.99", "geom_point": "0101000020E6100000F279CDC4974C5FC0D2B5062166F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.195442068999967, 49.915359785000128 ], [ -125.19798541199999, 49.915370527000071 ], [ -125.197922423999955, 49.918960849000015 ], [ -125.195203674999973, 49.918940922000033 ], [ -125.195712694999969, 49.917648705000012 ], [ -125.195713140999914, 49.916703287000118 ], [ -125.195713314, 49.916431207000059 ], [ -125.195442068999967, 49.915359785000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994304537897913", "sL_AssetLoss": "324.82", "sL_BldgLoss": "322.97", "sL_StrLoss": "316", "sL_NStrLoss": "6.97", "sL_ContLoss": "1.85", "geom_point": "0101000020E61000001CE161981B4D5FC0D7E7FF8FF2F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.203464358999952, 49.944849004000048 ], [ -125.205911252999982, 49.944802473000088 ], [ -125.20592014, 49.944996999000054 ], [ -125.204093700999948, 49.944974029000051 ], [ -125.20346341199999, 49.944946935000125 ], [ -125.203464358999952, 49.944849004000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25060833", "BldgCostT": "17283333", "sL_LossRatio": "0.994518158344075", "sL_AssetLoss": "12187.51", "sL_BldgLoss": "12120.7", "sL_StrLoss": "11826", "sL_NStrLoss": "294.7", "sL_ContLoss": "66.81", "geom_point": "0101000020E61000004D59B872D74D5FC0173291B1DEF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.212715262999964, 49.929021 ], [ -125.212702911999955, 49.928751376000058 ], [ -125.213120584999899, 49.928743403000091 ], [ -125.213083529999949, 49.927934533000084 ], [ -125.214336526999944, 49.927910606000118 ], [ -125.214361244999978, 49.928449852 ], [ -125.214778913999979, 49.928441874000043 ], [ -125.214766551999958, 49.928172250000024 ], [ -125.215601886999949, 49.928156289000071 ], [ -125.215577155999966, 49.927617043000055 ], [ -125.215994817999942, 49.92760905900019 ], [ -125.215982449999927, 49.927339436000096 ], [ -125.21723542899997, 49.927315478000097 ], [ -125.217260177999975, 49.927854724000042 ], [ -125.218095504999894, 49.927838744000084 ], [ -125.218120264, 49.92837798900004 ], [ -125.218955599999944, 49.928362003000117 ], [ -125.218930830999952, 49.927822758000048 ], [ -125.219348493999973, 49.9278147630001 ], [ -125.219336108000022, 49.927545140000049 ], [ -125.220589087999926, 49.92752114600011 ], [ -125.220663451999926, 49.929138878000074 ], [ -125.219410428999964, 49.929162873000095 ], [ -125.219422814999945, 49.929432497000057 ], [ -125.217334428999948, 49.929472459000124 ], [ -125.217297303999956, 49.928663592000142 ], [ -125.216461960999965, 49.928679566000071 ], [ -125.216486701999912, 49.92921881200003 ], [ -125.215233673999975, 49.929242763000076 ], [ -125.215221309999947, 49.928973140000018 ], [ -125.214803634999939, 49.928981120000103 ], [ -125.214828358999952, 49.929520367000165 ], [ -125.213157641999913, 49.92955227300012 ], [ -125.21316999599999, 49.929821897000075 ], [ -125.212752312999953, 49.929829870000091 ], [ -125.212764662999973, 49.930099494000075 ], [ -125.211511607999967, 49.930123404000057 ], [ -125.21146223599996, 49.929044910000123 ], [ -125.212715262999964, 49.929021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40899667", "BldgCostT": "27261667", "sL_LossRatio": "0.93480646757726", "sL_AssetLoss": "19680.94", "sL_BldgLoss": "18397.87", "sL_StrLoss": "17343.56", "sL_NStrLoss": "1054.31", "sL_ContLoss": "1283.07", "geom_point": "0101000020E6100000D1AA4CE7B94F5FC061E17715CAF94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.244244832999954, 49.950813259000022 ], [ -125.244232296999925, 49.950543642000135 ], [ -125.248410811999975, 49.95046268500009 ], [ -125.248423367999919, 49.950732301000087 ], [ -125.248841221999967, 49.950724197000092 ], [ -125.248878905999973, 49.951533043 ], [ -125.248461046, 49.951541148000032 ], [ -125.248486163999942, 49.952080380000048 ], [ -125.247650435999972, 49.952096585000078 ], [ -125.247662990999956, 49.952366201000075 ], [ -125.242648572999883, 49.952463303000101 ], [ -125.242585938000019, 49.951115218000083 ], [ -125.243242914999897, 49.951102508000048 ], [ -125.243421653, 49.951099050000074 ], [ -125.243419958999979, 49.951062598000092 ], [ -125.24340912199996, 49.950829433000145 ], [ -125.244244832999954, 49.950813259000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123385334", "BldgCostT": "85093334", "sL_LossRatio": "0.995487888865851", "sL_AssetLoss": "56381.59", "sL_BldgLoss": "56127.19", "sL_StrLoss": "54632.39", "sL_NStrLoss": "1494.8", "sL_ContLoss": "254.4", "geom_point": "0101000020E6100000493C87CFE94E5FC0C9DF9C95DDFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.237061303999937, 49.97114069600012 ], [ -125.23558257699996, 49.971121500000038 ], [ -125.233675508999909, 49.971110477000131 ], [ -125.231886119999956, 49.971100090000064 ], [ -125.231895998999946, 49.970264 ], [ -125.231898191999932, 49.970092091000033 ], [ -125.23191779299998, 49.968555801000079 ], [ -125.231935548999957, 49.967333110000055 ], [ -125.23080285599994, 49.967302696000033 ], [ -125.230731296999949, 49.96730214800003 ], [ -125.228076209999983, 49.967234096000034 ], [ -125.228087189999911, 49.966173208000029 ], [ -125.227170201999982, 49.966162194000106 ], [ -125.226927198999988, 49.966109287000073 ], [ -125.226114798999987, 49.965766398000063 ], [ -125.22632609599998, 49.965472896000136 ], [ -125.226420488, 49.965166994000086 ], [ -125.226424123999962, 49.964543003000095 ], [ -125.227575312999988, 49.964545685000097 ], [ -125.228091909999961, 49.96465818300004 ], [ -125.228467503999923, 49.964863095000048 ], [ -125.228976381999985, 49.965266789000083 ], [ -125.229153093999983, 49.965175879000064 ], [ -125.22993667599998, 49.964772695000136 ], [ -125.230904097999939, 49.964268805000081 ], [ -125.231109118999953, 49.964430295000057 ], [ -125.23164060199997, 49.96456620400005 ], [ -125.23181824599996, 49.96457424500003 ], [ -125.231991607999959, 49.964582094000022 ], [ -125.231985214999952, 49.964846085000019 ], [ -125.231983903999918, 49.96490021900005 ], [ -125.231945688999971, 49.966479001000017 ], [ -125.233299013999925, 49.966487597000082 ], [ -125.234618874, 49.966493206000045 ], [ -125.23594571299995, 49.96650060100005 ], [ -125.235962387999976, 49.965166396000022 ], [ -125.23623001, 49.964916486000035 ], [ -125.236963609999947, 49.965223678000015 ], [ -125.237274099999979, 49.965243894000096 ], [ -125.237264884999917, 49.966938615000061 ], [ -125.237262924999968, 49.967298669000137 ], [ -125.23726199299989, 49.967471902000042 ], [ -125.237241242999957, 49.968263888000124 ], [ -125.237212098999976, 49.969374992000091 ], [ -125.237052491999947, 49.970830500000098 ], [ -125.237060935, 49.971127161000062 ], [ -125.237061303999937, 49.97114069600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121175833", "BldgCostT": "82888333", "sL_LossRatio": "0.975739544154507", "sL_AssetLoss": "56110.24", "sL_BldgLoss": "54748.98", "sL_StrLoss": "53106.38", "sL_NStrLoss": "1642.6", "sL_ContLoss": "1361.26", "geom_point": "0101000020E61000009099D1B0944E5FC0D2C06E5CEFFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.228330097999972, 49.971348505000073 ], [ -125.227244485999961, 49.969842892000074 ], [ -125.226924400999948, 49.96940011300007 ], [ -125.226813792999934, 49.968938086000023 ], [ -125.22660190500001, 49.968939296 ], [ -125.225944885999951, 49.969046999000042 ], [ -125.225383289999954, 49.969205795000072 ], [ -125.224733769, 49.968297588000063 ], [ -125.223987689999944, 49.967254701000094 ], [ -125.223741698999945, 49.966964392000143 ], [ -125.223216607999944, 49.966529888000132 ], [ -125.222952705999973, 49.966311401000077 ], [ -125.222548107999984, 49.966089089000036 ], [ -125.222081804999974, 49.965887090000102 ], [ -125.222117294999961, 49.965766897000073 ], [ -125.222265416999946, 49.965664485000055 ], [ -125.222542925, 49.96557661 ], [ -125.222853574999945, 49.965581501000074 ], [ -125.223328594999955, 49.965680201000112 ], [ -125.223794794999932, 49.965727510000079 ], [ -125.225102514999961, 49.96574944200011 ], [ -125.226114798999987, 49.965766398000063 ], [ -125.226927198999988, 49.966109287000073 ], [ -125.227170201999982, 49.966162194000106 ], [ -125.228087189999911, 49.966173208000029 ], [ -125.228076209999983, 49.967234096000034 ], [ -125.230731296999949, 49.96730214800003 ], [ -125.23080285599994, 49.967302696000033 ], [ -125.231935548999957, 49.967333110000055 ], [ -125.23191779299998, 49.968555801000079 ], [ -125.231898191999932, 49.970092091000033 ], [ -125.231895998999946, 49.970264 ], [ -125.230986429999973, 49.970257637000024 ], [ -125.229854098999965, 49.970249684000024 ], [ -125.229833284999955, 49.971481401000112 ], [ -125.228620608999918, 49.971477399000037 ], [ -125.228330097999972, 49.971348505000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149626584", "BldgCostT": "100298334", "sL_LossRatio": "0.959383310032091", "sL_AssetLoss": "73901.64", "sL_BldgLoss": "70900", "sL_StrLoss": "67088.87", "sL_NStrLoss": "3811.13", "sL_ContLoss": "3001.64", "geom_point": "0101000020E61000007F740BD9504E5FC08E311C742EFC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.223143166999947, 49.966589276000015 ], [ -125.223216607999944, 49.966529888000132 ], [ -125.223741698999945, 49.966964392000143 ], [ -125.223987689999944, 49.967254701000094 ], [ -125.224733769, 49.968297588000063 ], [ -125.225383289999954, 49.969205795000072 ], [ -125.226604193999918, 49.970860708000082 ], [ -125.22707750499994, 49.971475484000081 ], [ -125.227216004999946, 49.971692287000039 ], [ -125.22731360299997, 49.971940198000077 ], [ -125.227321116999946, 49.972322394000109 ], [ -125.22732346, 49.972564508000062 ], [ -125.227328688999933, 49.973103812000069 ], [ -125.224313783999932, 49.973078896000075 ], [ -125.224257105000021, 49.972970598000074 ], [ -125.224002987999967, 49.972748501000055 ], [ -125.223059993999982, 49.972049499 ], [ -125.221721195, 49.971019512000034 ], [ -125.221353795999917, 49.970738207000103 ], [ -125.219269685999947, 49.969522998000095 ], [ -125.220243291, 49.968832216000102 ], [ -125.221153910999973, 49.968155411000033 ], [ -125.221789215999962, 49.967684206000037 ], [ -125.223143166999947, 49.966589276000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218434393", "BldgCostT": "134446522", "sL_LossRatio": "0.773994191798533", "sL_AssetLoss": "119482.77", "sL_BldgLoss": "92478.97", "sL_StrLoss": "77642.17", "sL_NStrLoss": "14836.8", "sL_ContLoss": "27003.8", "geom_point": "0101000020E6100000C7348209F34D5FC09FE8BAF003FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.215247752999943, 49.9663660840001 ], [ -125.216817845999913, 49.964964926000029 ], [ -125.218216307999967, 49.965601647 ], [ -125.218380709999977, 49.965676508000108 ], [ -125.220796591999914, 49.965814219000031 ], [ -125.222081804999974, 49.965887090000102 ], [ -125.222548107999984, 49.966089089000036 ], [ -125.222952705999973, 49.966311401000077 ], [ -125.223216607999944, 49.966529888000132 ], [ -125.223143166999947, 49.966589276000015 ], [ -125.221789215999962, 49.967684206000037 ], [ -125.221153910999973, 49.968155411000033 ], [ -125.220243291, 49.968832216000102 ], [ -125.219269685999947, 49.969522998000095 ], [ -125.221353795999917, 49.970738207000103 ], [ -125.221721195, 49.971019512000034 ], [ -125.223059993999982, 49.972049499 ], [ -125.222673505999978, 49.972231093000083 ], [ -125.221719902999951, 49.972318791000127 ], [ -125.22134561699994, 49.972444687000099 ], [ -125.221411496999934, 49.972666391000125 ], [ -125.221386579999972, 49.973066296000084 ], [ -125.219139593999955, 49.973051191000117 ], [ -125.218761410999917, 49.972589097000089 ], [ -125.218637487999956, 49.972483966000013 ], [ -125.218121092999951, 49.972045907000066 ], [ -125.21681029899996, 49.971258809000062 ], [ -125.216275618999987, 49.970976279000134 ], [ -125.214483689999923, 49.970449164000101 ], [ -125.213220178999975, 49.97007777600011 ], [ -125.21179964699995, 49.969436371000072 ], [ -125.21273040299999, 49.968608318000044 ], [ -125.212894612999946, 49.968462230000071 ], [ -125.21344779399999, 49.967970075000053 ], [ -125.21429394799999, 49.967217203000068 ], [ -125.215072990999928, 49.966522014000134 ], [ -125.215247752999943, 49.9663660840001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154447834", "BldgCostT": "100203334", "sL_LossRatio": "0.957618568023329", "sL_AssetLoss": "60365.327", "sL_BldgLoss": "57806.958", "sL_StrLoss": "54629.618", "sL_NStrLoss": "3177.34", "sL_ContLoss": "2558.369", "geom_point": "0101000020E61000001570F001514E5FC0EC7ECA08DAFC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.222031264999941, 49.978999720000054 ], [ -125.221245556999961, 49.978065356000037 ], [ -125.220998736, 49.97765809200007 ], [ -125.22078150199998, 49.977152141000055 ], [ -125.220580092999953, 49.976455691000098 ], [ -125.220374254, 49.975447186000025 ], [ -125.22036614699999, 49.97541059800011 ], [ -125.22033841699999, 49.975285547000034 ], [ -125.220216287999918, 49.974734898000051 ], [ -125.22015931699994, 49.974619265000108 ], [ -125.219947097999935, 49.974188446000056 ], [ -125.219911793999927, 49.974116793000086 ], [ -125.219139593999955, 49.973051191000117 ], [ -125.221386579999972, 49.973066296000084 ], [ -125.221411496999934, 49.972666391000125 ], [ -125.22134561699994, 49.972444687000099 ], [ -125.221719902999951, 49.972318791000127 ], [ -125.222673505999978, 49.972231093000083 ], [ -125.223059993999982, 49.972049499 ], [ -125.224002987999967, 49.972748501000055 ], [ -125.224257105000021, 49.972970598000074 ], [ -125.224313783999932, 49.973078896000075 ], [ -125.227328688999933, 49.973103812000069 ], [ -125.227322396999952, 49.974053207000104 ], [ -125.227320613999964, 49.974983798000075 ], [ -125.227313248999963, 49.97677459500008 ], [ -125.227311211999918, 49.977271105000078 ], [ -125.227303961999951, 49.977656673000062 ], [ -125.227296200999973, 49.978072099000023 ], [ -125.227024474999951, 49.978076731000087 ], [ -125.226815463999969, 49.978080274000085 ], [ -125.226732804999969, 49.978081685000113 ], [ -125.225898998999966, 49.978249304000052 ], [ -125.224983401999907, 49.977979386000086 ], [ -125.224447888999961, 49.977908205000062 ], [ -125.223728190999921, 49.977812831000094 ], [ -125.223659206999983, 49.977803686000094 ], [ -125.222944491999968, 49.978014510000015 ], [ -125.223346898999964, 49.978538814000046 ], [ -125.223365201999954, 49.978576006000068 ], [ -125.222254807999917, 49.978992405000113 ], [ -125.222210793, 49.978939010000047 ], [ -125.222031264999941, 49.978999720000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224929231", "BldgCostT": "145035816", "sL_LossRatio": "0.875166948864895", "sL_AssetLoss": "81432.12", "sL_BldgLoss": "71266.7", "sL_StrLoss": "62466.38", "sL_NStrLoss": "8800.32", "sL_ContLoss": "10165.42", "geom_point": "0101000020E610000099508FA7444E5FC0B63DEDCF49FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.224555381999977, 49.983479002000131 ], [ -125.224180905999972, 49.983363988000065 ], [ -125.22366399699996, 49.983423294000026 ], [ -125.223663686999942, 49.983423410000078 ], [ -125.223306436999934, 49.983671926000035 ], [ -125.223280188999951, 49.983365789000111 ], [ -125.223456285999958, 49.981473003000112 ], [ -125.22325999899999, 49.981144003000075 ], [ -125.22259139499999, 49.980571513000037 ], [ -125.222171793999962, 49.979940611000067 ], [ -125.222033000999943, 49.979332389000021 ], [ -125.221822990999954, 49.979030496000092 ], [ -125.221288311999899, 49.97860890100003 ], [ -125.220662393999987, 49.977738812000048 ], [ -125.220224210000012, 49.976398594000067 ], [ -125.220127444999946, 49.975893124000095 ], [ -125.220128443999954, 49.975834648000024 ], [ -125.220116295999944, 49.97583488200015 ], [ -125.220002817999941, 49.97524209400008 ], [ -125.219838344999971, 49.974849307000099 ], [ -125.219821863, 49.974491230000062 ], [ -125.219675885999933, 49.97449402400008 ], [ -125.219380636999958, 49.973995936000051 ], [ -125.219354169999946, 49.973420752000024 ], [ -125.218936111999966, 49.973428752000139 ], [ -125.21893472, 49.973398493000055 ], [ -125.218904460999966, 49.973398277000086 ], [ -125.218646171999978, 49.973079474000073 ], [ -125.218382479999931, 49.972753998000044 ], [ -125.217532710999976, 49.972177188000046 ], [ -125.216996677999958, 49.972024800000092 ], [ -125.216339590999965, 49.972010600000075 ], [ -125.215694606999975, 49.972229900000073 ], [ -125.215140986999927, 49.972304001000069 ], [ -125.214470594, 49.972001998000088 ], [ -125.21374387899999, 49.971823394000118 ], [ -125.213419247999937, 49.971743608000125 ], [ -125.213414735999933, 49.97164527200011 ], [ -125.213047660999933, 49.971652279000061 ], [ -125.21304531, 49.971651701000013 ], [ -125.212995217999961, 49.971621111000061 ], [ -125.21298432299993, 49.971383630000091 ], [ -125.212637036, 49.971390257000159 ], [ -125.211523013999923, 49.970070792000051 ], [ -125.210955851000037, 49.969690260000093 ], [ -125.21179964699995, 49.969436371000072 ], [ -125.213220178999975, 49.97007777600011 ], [ -125.214483689999923, 49.970449164000101 ], [ -125.216275618999987, 49.970976279000134 ], [ -125.21681029899996, 49.971258809000062 ], [ -125.218121092999951, 49.972045907000066 ], [ -125.218637487999956, 49.972483966000013 ], [ -125.218761410999917, 49.972589097000089 ], [ -125.219139593999955, 49.973051191000117 ], [ -125.219911793999927, 49.974116793000086 ], [ -125.219947097999935, 49.974188446000056 ], [ -125.22015931699994, 49.974619265000108 ], [ -125.220216287999918, 49.974734898000051 ], [ -125.22033841699999, 49.975285547000034 ], [ -125.22036614699999, 49.97541059800011 ], [ -125.220374254, 49.975447186000025 ], [ -125.220580092999953, 49.976455691000098 ], [ -125.22078150199998, 49.977152141000055 ], [ -125.220998736, 49.97765809200007 ], [ -125.221245556999961, 49.978065356000037 ], [ -125.222031264999941, 49.978999720000054 ], [ -125.222210793, 49.978939010000047 ], [ -125.222254807999917, 49.978992405000113 ], [ -125.223365201999954, 49.978576006000068 ], [ -125.223346898999964, 49.978538814000046 ], [ -125.222944491999968, 49.978014510000015 ], [ -125.223659206999983, 49.977803686000094 ], [ -125.223728190999921, 49.977812831000094 ], [ -125.224447888999961, 49.977908205000062 ], [ -125.224983401999907, 49.977979386000086 ], [ -125.225898998999966, 49.978249304000052 ], [ -125.226732804999969, 49.978081685000113 ], [ -125.226815463999969, 49.978080274000085 ], [ -125.227024474999951, 49.978076731000087 ], [ -125.227296200999973, 49.978072099000023 ], [ -125.227294901999954, 49.978081102000019 ], [ -125.227111214999951, 49.979369207000047 ], [ -125.226921320999963, 49.980702102000109 ], [ -125.228468105, 49.980749898000113 ], [ -125.22851539, 49.983313604000067 ], [ -125.228587920999971, 49.983559598000035 ], [ -125.228618023999928, 49.984189227000087 ], [ -125.228620881, 49.984249402000046 ], [ -125.227199919999961, 49.984255596000025 ], [ -125.226758302999968, 49.984315485000117 ], [ -125.226503380999986, 49.984394911000031 ], [ -125.225713997999961, 49.984640811000077 ], [ -125.225484882999964, 49.984662502000113 ], [ -125.225272387, 49.984610706000083 ], [ -125.225134592999936, 49.984517107000087 ], [ -125.22497517499994, 49.984267335000027 ], [ -125.22484431499997, 49.984062313000059 ], [ -125.22475699599994, 49.983925493000058 ], [ -125.224697689, 49.983794100000097 ], [ -125.224555381999977, 49.983479002000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176782000", "BldgCostT": "119560000", "sL_LossRatio": "0.994053995457728", "sL_AssetLoss": "78779.96", "sL_BldgLoss": "78311.534", "sL_StrLoss": "75008.094", "sL_NStrLoss": "3303.44", "sL_ContLoss": "468.426", "geom_point": "0101000020E61000005E96E105B24E5FC0486EEA8F72FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.22851539, 49.983313604000067 ], [ -125.228468105, 49.980749898000113 ], [ -125.226921320999963, 49.980702102000109 ], [ -125.227111214999951, 49.979369207000047 ], [ -125.227294901999954, 49.978081102000019 ], [ -125.227296200999973, 49.978072099000023 ], [ -125.227303961999951, 49.977656673000062 ], [ -125.227311211999918, 49.977271105000078 ], [ -125.227313248999963, 49.97677459500008 ], [ -125.227320613999964, 49.974983798000075 ], [ -125.227322396999952, 49.974053207000104 ], [ -125.230012997999964, 49.974053300000058 ], [ -125.231841597999932, 49.974160508000082 ], [ -125.231794303999976, 49.976969905000054 ], [ -125.231770601, 49.978382303000053 ], [ -125.231778901999917, 49.978467794000096 ], [ -125.23181710099999, 49.978848567000043 ], [ -125.230485447999968, 49.978874188000113 ], [ -125.230472977999938, 49.978604570000051 ], [ -125.229380459999916, 49.978625580000042 ], [ -125.22935311900001, 49.980245252000017 ], [ -125.22971157799999, 49.980238359000118 ], [ -125.229724045999987, 49.980507978000098 ], [ -125.230560277, 49.980491896000025 ], [ -125.230585220999899, 49.98103113100008 ], [ -125.231003341999923, 49.98102308800005 ], [ -125.231028290999959, 49.981562323000134 ], [ -125.231446415999983, 49.981554278000019 ], [ -125.231458007999919, 49.981804746000115 ], [ -125.23205657599999, 49.981808936000078 ], [ -125.232058088999977, 49.982278482000034 ], [ -125.232059589999935, 49.98274948600006 ], [ -125.232062446999919, 49.984158142000126 ], [ -125.232062594, 49.984231305000073 ], [ -125.23206609199994, 49.985261694000066 ], [ -125.23085578199999, 49.985262197000068 ], [ -125.230854033999918, 49.985675495000052 ], [ -125.230847100999981, 49.987267181000036 ], [ -125.230603109999933, 49.98726639900012 ], [ -125.229459302999913, 49.987285305000057 ], [ -125.22928421, 49.987331797000081 ], [ -125.228450296999966, 49.985927804 ], [ -125.228156900999949, 49.985548986000097 ], [ -125.227783109999976, 49.985142705000044 ], [ -125.227250595999962, 49.984332725000044 ], [ -125.227199919999961, 49.984255596000025 ], [ -125.228620881, 49.984249402000046 ], [ -125.228618023999928, 49.984189227000087 ], [ -125.228587920999971, 49.983559598000035 ], [ -125.22851539, 49.983313604000067 ] ], [ [ -125.229212375999964, 49.978492344000117 ], [ -125.229206214999962, 49.978359072000046 ], [ -125.228370019999957, 49.978375143000022 ], [ -125.228375163999914, 49.978486462000099 ], [ -125.229212375999964, 49.978492344000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116971168", "BldgCostT": "79676668", "sL_LossRatio": "0.959463367016475", "sL_AssetLoss": "55021.59", "sL_BldgLoss": "52791.2", "sL_StrLoss": "50277.72", "sL_NStrLoss": "2513.48", "sL_ContLoss": "2230.39", "geom_point": "0101000020E61000001FB83D20D44E5FC0C2607AD274FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.231841597999932, 49.974160508000082 ], [ -125.230012997999964, 49.974053300000058 ], [ -125.227322396999952, 49.974053207000104 ], [ -125.227328688999933, 49.973103812000069 ], [ -125.22732346, 49.972564508000062 ], [ -125.227321116999946, 49.972322394000109 ], [ -125.22731360299997, 49.971940198000077 ], [ -125.227216004999946, 49.971692287000039 ], [ -125.22707750499994, 49.971475484000081 ], [ -125.226604193999918, 49.970860708000082 ], [ -125.225383289999954, 49.969205795000072 ], [ -125.225944885999951, 49.969046999000042 ], [ -125.22660190500001, 49.968939296 ], [ -125.226813792999934, 49.968938086000023 ], [ -125.226924400999948, 49.96940011300007 ], [ -125.227244485999961, 49.969842892000074 ], [ -125.228330097999972, 49.971348505000073 ], [ -125.228620608999918, 49.971477399000037 ], [ -125.229833284999955, 49.971481401000112 ], [ -125.229854098999965, 49.970249684000024 ], [ -125.230986429999973, 49.970257637000024 ], [ -125.231895998999946, 49.970264 ], [ -125.231886119999956, 49.971100090000064 ], [ -125.233675508999909, 49.971110477000131 ], [ -125.23558257699996, 49.971121500000038 ], [ -125.237061303999937, 49.97114069600012 ], [ -125.237051490999946, 49.971494987000135 ], [ -125.237008780999957, 49.97303436000005 ], [ -125.237005218999954, 49.973163391000085 ], [ -125.237004947999978, 49.973172457000011 ], [ -125.236975391999948, 49.974196304000024 ], [ -125.234642429999937, 49.974186958000111 ], [ -125.232116012999967, 49.974176802000059 ], [ -125.231841597999932, 49.974160508000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94535834", "BldgCostT": "64933334", "sL_LossRatio": "0.995256760133684", "sL_AssetLoss": "44499.12", "sL_BldgLoss": "44288.05", "sL_StrLoss": "43011", "sL_NStrLoss": "1277.05", "sL_ContLoss": "211.07", "geom_point": "0101000020E6100000FBBCB92A564F5FC0C1D333D6E1FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.240439188, 49.977910286000068 ], [ -125.23890579499999, 49.976641799000021 ], [ -125.238421325999965, 49.976904635000082 ], [ -125.237963204999943, 49.977153191000085 ], [ -125.237823139999989, 49.977035673000074 ], [ -125.237437785999987, 49.976712360000114 ], [ -125.23726621900002, 49.976568383000057 ], [ -125.237084390999911, 49.976351412000028 ], [ -125.237080775999956, 49.976341055000027 ], [ -125.236997901, 49.976103506000179 ], [ -125.236995361, 49.975868801000018 ], [ -125.236993121999959, 49.975661866000117 ], [ -125.236985797999949, 49.974988502000045 ], [ -125.236975391999948, 49.974196304000024 ], [ -125.237004947999978, 49.973172457000011 ], [ -125.237005218999954, 49.973163391000085 ], [ -125.237230715999942, 49.973164743000076 ], [ -125.23789727800002, 49.973168694000144 ], [ -125.238856075999962, 49.973356075000027 ], [ -125.240594547999976, 49.973600991000069 ], [ -125.242041283999967, 49.973786306000122 ], [ -125.241985802, 49.974020608000025 ], [ -125.241931372999957, 49.975368931000077 ], [ -125.241181390999969, 49.975700909000118 ], [ -125.241776686999913, 49.976288600000053 ], [ -125.241864897999932, 49.976432114 ], [ -125.241863102999986, 49.977045314000087 ], [ -125.24186211199995, 49.977934127000083 ], [ -125.241861689, 49.978304092 ], [ -125.24178759099999, 49.978571499000026 ], [ -125.241628607, 49.978743001000041 ], [ -125.240524803999961, 49.979301899000085 ], [ -125.239764374999965, 49.978665392000018 ], [ -125.240408181999939, 49.978351600000046 ], [ -125.240546995999978, 49.978218611000038 ], [ -125.240540842999962, 49.978112682000123 ], [ -125.240538306999923, 49.978069301000104 ], [ -125.240439188, 49.977910286000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62002000", "BldgCostT": "42760000", "sL_LossRatio": "0.994625465418088", "sL_AssetLoss": "29384.87", "sL_BldgLoss": "29226.94", "sL_StrLoss": "28291.39", "sL_NStrLoss": "935.55", "sL_ContLoss": "157.93", "geom_point": "0101000020E6100000265CD94F504F5FC0B674DC5B57FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.238421325999965, 49.976904635000082 ], [ -125.23890579499999, 49.976641799000021 ], [ -125.240439188, 49.977910286000068 ], [ -125.240538306999923, 49.978069301000104 ], [ -125.240540842999962, 49.978112682000123 ], [ -125.240546995999978, 49.978218611000038 ], [ -125.240408181999939, 49.978351600000046 ], [ -125.239764374999965, 49.978665392000018 ], [ -125.240524803999961, 49.979301899000085 ], [ -125.241246803999957, 49.979903900000082 ], [ -125.242308507999965, 49.980783385000066 ], [ -125.241715911, 49.981040892000067 ], [ -125.240625810999944, 49.981024397000091 ], [ -125.238728676999969, 49.980993297000047 ], [ -125.238158899999974, 49.980715112000055 ], [ -125.237352709999968, 49.980318394000044 ], [ -125.237402780999915, 49.980199647000056 ], [ -125.237531210999933, 49.97989520600008 ], [ -125.237547886999948, 49.979317193000036 ], [ -125.237567500999972, 49.978556700000119 ], [ -125.237597403, 49.977352007000079 ], [ -125.237740091999953, 49.977274444000031 ], [ -125.237963204999943, 49.977153191000085 ], [ -125.238421325999965, 49.976904635000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102879918", "BldgCostT": "64561668", "sL_LossRatio": "0.941433052461629", "sL_AssetLoss": "37905.8", "sL_BldgLoss": "35685.773", "sL_StrLoss": "33353.423", "sL_NStrLoss": "2332.35", "sL_ContLoss": "2220.027", "geom_point": "0101000020E6100000C3F508982D4F5FC024AA33CE11FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.23898514699999, 49.981678826000056 ], [ -125.238972626999953, 49.981409210000045 ], [ -125.238136384999933, 49.981425353000063 ], [ -125.238123868999978, 49.981155737000073 ], [ -125.237287629999983, 49.981171874000083 ], [ -125.23727512, 49.980902256000036 ], [ -125.236857002999955, 49.980910322000071 ], [ -125.236769455999962, 49.979023006 ], [ -125.235097050999968, 49.979055252000101 ], [ -125.23507205699994, 49.978516018000043 ], [ -125.234653959999946, 49.978524076000092 ], [ -125.23464146699996, 49.978254458000087 ], [ -125.233805275999913, 49.97827057000007 ], [ -125.23381776599993, 49.978540186000032 ], [ -125.232563471, 49.97856434200007 ], [ -125.23257595299998, 49.978833960000031 ], [ -125.23181710099999, 49.978848567000043 ], [ -125.231778901999917, 49.978467794000096 ], [ -125.231770601, 49.978382303000053 ], [ -125.231794303999976, 49.976969905000054 ], [ -125.231841597999932, 49.974160508000082 ], [ -125.232116012999967, 49.974176802000059 ], [ -125.234642429999937, 49.974186958000111 ], [ -125.236975391999948, 49.974196304000024 ], [ -125.236985797999949, 49.974988502000045 ], [ -125.236993121999959, 49.975661866000117 ], [ -125.236995361, 49.975868801000018 ], [ -125.236997901, 49.976103506000179 ], [ -125.237080775999956, 49.976341055000027 ], [ -125.237084390999911, 49.976351412000028 ], [ -125.23726621900002, 49.976568383000057 ], [ -125.237437785999987, 49.976712360000114 ], [ -125.237823139999989, 49.977035673000074 ], [ -125.237963204999943, 49.977153191000085 ], [ -125.237740091999953, 49.977274444000031 ], [ -125.237597403, 49.977352007000079 ], [ -125.237567500999972, 49.978556700000119 ], [ -125.237547886999948, 49.979317193000036 ], [ -125.237531210999933, 49.97989520600008 ], [ -125.237402780999915, 49.980199647000056 ], [ -125.237352709999968, 49.980318394000044 ], [ -125.238158899999974, 49.980715112000055 ], [ -125.238728676999969, 49.980993297000047 ], [ -125.240625810999944, 49.981024397000091 ], [ -125.241715911, 49.981040892000067 ], [ -125.242308507999965, 49.980783385000066 ], [ -125.241246803999957, 49.979903900000082 ], [ -125.240524803999961, 49.979301899000085 ], [ -125.241628607, 49.978743001000041 ], [ -125.24178759099999, 49.978571499000026 ], [ -125.241861689, 49.978304092 ], [ -125.24186211199995, 49.977934127000083 ], [ -125.241863102999986, 49.977045314000087 ], [ -125.241864897999932, 49.976432114 ], [ -125.241776686999913, 49.976288600000053 ], [ -125.241181390999969, 49.975700909000118 ], [ -125.241931372999957, 49.975368931000077 ], [ -125.241985802, 49.974020608000025 ], [ -125.242041283999967, 49.973786306000122 ], [ -125.243077638999949, 49.973920249000052 ], [ -125.24323470299997, 49.973923665000051 ], [ -125.243688027999923, 49.973933458000054 ], [ -125.244619996999987, 49.973890412000067 ], [ -125.245735909999951, 49.973658983000064 ], [ -125.246025843999959, 49.973598871000043 ], [ -125.24673079499999, 49.973454463000017 ], [ -125.247103067999916, 49.974235628000081 ], [ -125.246172241999957, 49.97425366300007 ], [ -125.246159683999963, 49.973984047000052 ], [ -125.245982285, 49.973987484000105 ], [ -125.245741629999927, 49.973992145000103 ], [ -125.245754183999949, 49.974261760000068 ], [ -125.243245836999961, 49.974310312000085 ], [ -125.24325837799995, 49.974579927000079 ], [ -125.242840316999931, 49.974588015000087 ], [ -125.242940627999957, 49.976744940000081 ], [ -125.242522547999926, 49.976753026000026 ], [ -125.242622851999954, 49.978909952000073 ], [ -125.242204753999928, 49.97891803699999 ], [ -125.242217289999985, 49.979187653000125 ], [ -125.242635390999965, 49.979179567000109 ], [ -125.242647930999965, 49.979449183000042 ], [ -125.24306603399998, 49.979441097000119 ], [ -125.243103658999971, 49.980249943000103 ], [ -125.242685547999898, 49.980258031000119 ], [ -125.242735708999959, 49.981336493000079 ], [ -125.242317589999914, 49.981344578000069 ], [ -125.242330127999978, 49.981614194000045 ], [ -125.23898514699999, 49.981678826000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45518999", "BldgCostT": "29444999", "sL_LossRatio": "0.937333511241321", "sL_AssetLoss": "20834.74", "sL_BldgLoss": "19529.1", "sL_StrLoss": "18364.83", "sL_NStrLoss": "1164.27", "sL_ContLoss": "1305.64", "geom_point": "0101000020E61000003B995D9C1D4F5FC05F68531AD6FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.232062446999919, 49.984158142000126 ], [ -125.232059589999935, 49.98274948600006 ], [ -125.232058088999977, 49.982278482000034 ], [ -125.23205657599999, 49.981808936000078 ], [ -125.232188326999974, 49.981809857 ], [ -125.232295146999959, 49.981807801000095 ], [ -125.23229527699999, 49.981810605000149 ], [ -125.233551180999967, 49.981819381000079 ], [ -125.233549524999944, 49.981783647000015 ], [ -125.233967652999965, 49.981775594000091 ], [ -125.23395516, 49.981505977000097 ], [ -125.234791405999957, 49.981489864000096 ], [ -125.23477891, 49.981220246000078 ], [ -125.236451390999946, 49.981188004000138 ], [ -125.236463895999947, 49.981457620000064 ], [ -125.236882018999907, 49.981449556000108 ], [ -125.236913478999966, 49.982127707000068 ], [ -125.237321803000029, 49.982130545000061 ], [ -125.237319795999952, 49.982250684000029 ], [ -125.237337671999953, 49.982250340000093 ], [ -125.23735018299999, 49.982519956000012 ], [ -125.238604575999929, 49.982495747000023 ], [ -125.23861709399992, 49.982765364000059 ], [ -125.23903522499991, 49.98275729000008 ], [ -125.239047745999983, 49.983026907000081 ], [ -125.240302151999956, 49.98300268000002 ], [ -125.24031467899999, 49.983272296000059 ], [ -125.241569088999952, 49.983248056000015 ], [ -125.241581622999917, 49.983517671000087 ], [ -125.241999761999949, 49.983509588000132 ], [ -125.242012298999967, 49.983779203000033 ], [ -125.242430440999954, 49.983771119000096 ], [ -125.24244298, 49.984040734000104 ], [ -125.242861122999898, 49.984032648000088 ], [ -125.242861304999963, 49.984036563000089 ], [ -125.242852999, 49.98403855800008 ], [ -125.242144297999957, 49.984208788000096 ], [ -125.241833295000021, 49.984222297000017 ], [ -125.2416809059999, 49.984228916000092 ], [ -125.241444514999927, 49.984239183000057 ], [ -125.240983295999911, 49.984259212000048 ], [ -125.238399327999971, 49.984251162000163 ], [ -125.237743856999955, 49.984249116000044 ], [ -125.237455723999958, 49.984248207000057 ], [ -125.236610774999988, 49.984245933000054 ], [ -125.234154009999983, 49.984237787000048 ], [ -125.232275187999946, 49.984231966000053 ], [ -125.232062594, 49.984231305000073 ], [ -125.232062446999919, 49.984158142000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21903000", "BldgCostT": "14370000", "sL_LossRatio": "0.991572693941686", "sL_AssetLoss": "10739.375", "sL_BldgLoss": "10648.871", "sL_StrLoss": "10308.301", "sL_NStrLoss": "340.57", "sL_ContLoss": "90.504", "geom_point": "0101000020E61000002B3BDC92C54F5FC08ED0B6374BFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.245219311999975, 49.980748717 ], [ -125.245194205999951, 49.98020948700006 ], [ -125.244776095999924, 49.980217581000055 ], [ -125.244700791999946, 49.978599889000115 ], [ -125.245118887000018, 49.978591796000075 ], [ -125.245056126999913, 49.977243719000043 ], [ -125.245618489999984, 49.977232830000027 ], [ -125.24631037499995, 49.977219428000069 ], [ -125.246297816, 49.976949814000101 ], [ -125.247552055999904, 49.976925511000154 ], [ -125.247577188999941, 49.977464740000109 ], [ -125.247995272999972, 49.977456636000049 ], [ -125.248120962999963, 49.980152783000079 ], [ -125.246866639999965, 49.980177094000069 ], [ -125.246891765999948, 49.980716322000085 ], [ -125.245224317999913, 49.980748620000043 ], [ -125.245219311999975, 49.980748717 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.995797758210842", "sL_AssetLoss": "1123.21", "sL_BldgLoss": "1118.49", "sL_StrLoss": "1101", "sL_NStrLoss": "17.49", "sL_ContLoss": "4.72", "geom_point": "0101000020E61000001CAD93C878505FC0A377A6A7FAFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.257035654999967, 49.961263718000112 ], [ -125.257059642999963, 49.959789046000033 ], [ -125.258020826999967, 49.961270384000073 ], [ -125.257035654999967, 49.961263718000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "289922749", "BldgCostT": "193084999", "sL_LossRatio": "0.993681173128082", "sL_AssetLoss": "116671.182", "sL_BldgLoss": "115933.957", "sL_StrLoss": "113274.017", "sL_NStrLoss": "2659.94", "sL_ContLoss": "737.225", "geom_point": "0101000020E61000002B68DE9A494F5FC0AF99C640E8FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.247103067999916, 49.974235628000081 ], [ -125.24673079499999, 49.973454463000017 ], [ -125.246025843999959, 49.973598871000043 ], [ -125.245735909999951, 49.973658983000064 ], [ -125.244619996999987, 49.973890412000067 ], [ -125.243688027999923, 49.973933458000054 ], [ -125.24323470299997, 49.973923665000051 ], [ -125.243077638999949, 49.973920249000052 ], [ -125.242041283999967, 49.973786306000122 ], [ -125.240594547999976, 49.973600991000069 ], [ -125.238856075999962, 49.973356075000027 ], [ -125.23789727800002, 49.973168694000144 ], [ -125.237230715999942, 49.973164743000076 ], [ -125.237005218999954, 49.973163391000085 ], [ -125.237008780999957, 49.97303436000005 ], [ -125.237051490999946, 49.971494987000135 ], [ -125.237061303999937, 49.97114069600012 ], [ -125.237060935, 49.971127161000062 ], [ -125.237052491999947, 49.970830500000098 ], [ -125.237212098999976, 49.969374992000091 ], [ -125.237241242999957, 49.968263888000124 ], [ -125.23726199299989, 49.967471902000042 ], [ -125.237262924999968, 49.967298669000137 ], [ -125.237264884999917, 49.966938615000061 ], [ -125.237274099999979, 49.965243894000096 ], [ -125.236963609999947, 49.965223678000015 ], [ -125.23623001, 49.964916486000035 ], [ -125.235962387999976, 49.965166396000022 ], [ -125.23594571299995, 49.96650060100005 ], [ -125.234618874, 49.966493206000045 ], [ -125.233299013999925, 49.966487597000082 ], [ -125.231945688999971, 49.966479001000017 ], [ -125.231983903999918, 49.96490021900005 ], [ -125.231985214999952, 49.964846085000019 ], [ -125.231991607999959, 49.964582094000022 ], [ -125.232248690999967, 49.963382703 ], [ -125.232498638999957, 49.962607556000101 ], [ -125.232653060999965, 49.962210659000071 ], [ -125.232797244999972, 49.961839981000018 ], [ -125.232966017999942, 49.961514063000131 ], [ -125.233154489999919, 49.96115014300004 ], [ -125.233445271999969, 49.960681012000052 ], [ -125.233661585999968, 49.960412791000095 ], [ -125.233907507999945, 49.960188095000106 ], [ -125.234640677999963, 49.960173967000095 ], [ -125.234653163999937, 49.960443585000078 ], [ -125.235577826999986, 49.960425760000106 ], [ -125.235834064999906, 49.960420820000081 ], [ -125.235906984999986, 49.960419414000093 ], [ -125.235909116999935, 49.960465428000084 ], [ -125.235915924999986, 49.960612382000065 ], [ -125.235944465999978, 49.961228267000109 ], [ -125.236362411999963, 49.961220207000046 ], [ -125.236374907999974, 49.961489824000125 ], [ -125.23736652499997, 49.961470694000049 ], [ -125.237628753999957, 49.961465634000014 ], [ -125.237639003999945, 49.961686660000076 ], [ -125.237641257999911, 49.961735251000121 ], [ -125.237691824999928, 49.961734276000072 ], [ -125.238059208999985, 49.961727185000079 ], [ -125.238071714999947, 49.961996802000023 ], [ -125.238489666999925, 49.96198873400003 ], [ -125.238512168999961, 49.962473761000091 ], [ -125.238527193999971, 49.962797585000068 ], [ -125.237691272999911, 49.962813720000028 ], [ -125.237703777999954, 49.963083338000082 ], [ -125.238121739999912, 49.96307527200004 ], [ -125.238134245999944, 49.963344889000084 ], [ -125.238552210999956, 49.963336819000062 ], [ -125.238589738999934, 49.964145670000065 ], [ -125.238171766999983, 49.964153740000015 ], [ -125.238296850999944, 49.966849912000043 ], [ -125.237878854999963, 49.966857979000025 ], [ -125.237883558999968, 49.966959369000051 ], [ -125.2390356, 49.966967364000062 ], [ -125.239033298999942, 49.96710555100001 ], [ -125.23914535499992, 49.967103388000091 ], [ -125.239120325999963, 49.966564153000043 ], [ -125.240792293999945, 49.966531855000085 ], [ -125.24080481799993, 49.966801471000075 ], [ -125.241222811999975, 49.966793393000088 ], [ -125.24126039, 49.967602242000098 ], [ -125.241678391, 49.967594162000061 ], [ -125.241690918999964, 49.96786377800003 ], [ -125.242108920999925, 49.967855696000079 ], [ -125.242121452999953, 49.968125313000037 ], [ -125.242591250999979, 49.968116228000028 ], [ -125.242957462999968, 49.968109144000032 ], [ -125.242969999, 49.968378761000054 ], [ -125.243388005, 49.968370674000056 ], [ -125.243413082999936, 49.968909906000114 ], [ -125.243831094999948, 49.968901817000052 ], [ -125.243856177999973, 49.969441050000086 ], [ -125.244274192999953, 49.969432960000034 ], [ -125.244300656999911, 49.97000178800004 ], [ -125.244311824999926, 49.970241807000058 ], [ -125.244514702999936, 49.970237880000106 ], [ -125.244729847999935, 49.97023371600006 ], [ -125.2447423939999, 49.970503331000018 ], [ -125.24516042, 49.97049523900008 ], [ -125.245172967999949, 49.970764854000045 ], [ -125.245435858999926, 49.970759763000075 ], [ -125.245590995999947, 49.970756759000032 ], [ -125.245633741999981, 49.971674926000119 ], [ -125.245653756999957, 49.972104837000089 ], [ -125.245917487999947, 49.972099728000074 ], [ -125.246071793999988, 49.972096740000055 ], [ -125.246083508, 49.972348276000091 ], [ -125.246084350999936, 49.972366355000119 ], [ -125.246095441999955, 49.972366140000084 ], [ -125.24692043099995, 49.972350158000047 ], [ -125.246945550999953, 49.972889388000056 ], [ -125.247363595999943, 49.972881286000174 ], [ -125.247426410999978, 49.974229361000077 ], [ -125.247103067999916, 49.974235628000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16858667", "BldgCostT": "11626667", "sL_LossRatio": "0.995060680416473", "sL_AssetLoss": "7539.5", "sL_BldgLoss": "7502.26", "sL_StrLoss": "7321.27", "sL_NStrLoss": "180.99", "sL_ContLoss": "37.24", "geom_point": "0101000020E6100000837745329C4F5FC081F996FF31FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.245796714999983, 49.988226006000097 ], [ -125.243597021999946, 49.985908197000093 ], [ -125.242465714999966, 49.985173015000044 ], [ -125.242106990999957, 49.985026693000094 ], [ -125.241733816999968, 49.984995303000062 ], [ -125.240978103999907, 49.984996398000099 ], [ -125.240983295999911, 49.984259212000048 ], [ -125.241444514999927, 49.984239183000057 ], [ -125.2416809059999, 49.984228916000092 ], [ -125.241833295000021, 49.984222297000017 ], [ -125.242144297999957, 49.984208788000096 ], [ -125.242852999, 49.98403855800008 ], [ -125.242861304999963, 49.984036563000089 ], [ -125.242886207999959, 49.984571878000104 ], [ -125.243304355999982, 49.984563790000088 ], [ -125.243316900999957, 49.984833406000064 ], [ -125.243735050999945, 49.984825316000098 ], [ -125.243760145999985, 49.985364546000042 ], [ -125.244178300999963, 49.98535645500008 ], [ -125.244190851, 49.985626070000102 ], [ -125.244609005999934, 49.985617976000086 ], [ -125.244634110999982, 49.98615720600003 ], [ -125.245052272999885, 49.986149112000085 ], [ -125.245064828999944, 49.986418727000057 ], [ -125.245697564999972, 49.986406476000077 ], [ -125.245901153999966, 49.986402532000035 ], [ -125.24592627499996, 49.986941762000072 ], [ -125.246344441999923, 49.986933664000048 ], [ -125.246376304999941, 49.987617451000084 ], [ -125.24596430299998, 49.988092251000047 ], [ -125.245796714999983, 49.988226006000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181481783", "BldgCostT": "123450546", "sL_LossRatio": "0.893691919504544", "sL_AssetLoss": "68174.78", "sL_BldgLoss": "60927.25", "sL_StrLoss": "53406.47", "sL_NStrLoss": "7520.78", "sL_ContLoss": "7247.53", "geom_point": "0101000020E6100000F5608C27864F5FC0A4BFA8EE5BFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.240978103999907, 49.984996398000099 ], [ -125.241733816999968, 49.984995303000062 ], [ -125.242106990999957, 49.985026693000094 ], [ -125.242465714999966, 49.985173015000044 ], [ -125.243597021999946, 49.985908197000093 ], [ -125.245796714999983, 49.988226006000097 ], [ -125.246264083999961, 49.988718298 ], [ -125.246649700999953, 49.989014093000073 ], [ -125.246227427999926, 49.989166704000098 ], [ -125.242469303999954, 49.989158801000059 ], [ -125.24185989199999, 49.989160001000108 ], [ -125.241609895999886, 49.989098892000065 ], [ -125.241454497999953, 49.9889692940001 ], [ -125.24138458, 49.988811488000074 ], [ -125.241385921999949, 49.988754773000082 ], [ -125.241394717999952, 49.988371007000048 ], [ -125.241383696999932, 49.988191103000133 ], [ -125.241289411999944, 49.987995294000079 ], [ -125.240833996000021, 49.987539893000047 ], [ -125.239653297999951, 49.986591284000063 ], [ -125.23936670199997, 49.9863006920001 ], [ -125.239282476999961, 49.986081591000065 ], [ -125.239281513999984, 49.985726410000041 ], [ -125.239282314999983, 49.985007199000101 ], [ -125.240978103999907, 49.984996398000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110382833", "BldgCostT": "74183333", "sL_LossRatio": "0.992796875864202", "sL_AssetLoss": "42271.658", "sL_BldgLoss": "41967.17", "sL_StrLoss": "39248.32", "sL_NStrLoss": "2718.85", "sL_ContLoss": "304.488", "geom_point": "0101000020E61000000F719CA94A4F5FC0C4D74B1168FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.236963690999957, 49.989823810000097 ], [ -125.236642625999949, 49.989097796000124 ], [ -125.23664278499993, 49.989012836000022 ], [ -125.236642803999928, 49.989003386000064 ], [ -125.236641967999958, 49.988882367000073 ], [ -125.236639202999982, 49.988487112000087 ], [ -125.236633790999974, 49.98770409600008 ], [ -125.236628996999954, 49.986911113000168 ], [ -125.236625816999933, 49.986553489000066 ], [ -125.236621713999938, 49.986092813000013 ], [ -125.236620099999968, 49.985555338000083 ], [ -125.236619802999925, 49.985474453000087 ], [ -125.23661955499999, 49.985388783000126 ], [ -125.236618182999933, 49.985303355000035 ], [ -125.236618116999949, 49.985294323000112 ], [ -125.236615936999954, 49.98497940500004 ], [ -125.236610774999988, 49.984245933000054 ], [ -125.237455723999958, 49.984248207000057 ], [ -125.237743856999955, 49.984249116000044 ], [ -125.238399327999971, 49.984251162000163 ], [ -125.240983295999911, 49.984259212000048 ], [ -125.240978103999907, 49.984996398000099 ], [ -125.239282314999983, 49.985007199000101 ], [ -125.239281513999984, 49.985726410000041 ], [ -125.239282476999961, 49.986081591000065 ], [ -125.23936670199997, 49.9863006920001 ], [ -125.239653297999951, 49.986591284000063 ], [ -125.240833996000021, 49.987539893000047 ], [ -125.241289411999944, 49.987995294000079 ], [ -125.241383696999932, 49.988191103000133 ], [ -125.241394717999952, 49.988371007000048 ], [ -125.241385921999949, 49.988754773000082 ], [ -125.24138458, 49.988811488000074 ], [ -125.241454497999953, 49.9889692940001 ], [ -125.241609895999886, 49.989098892000065 ], [ -125.24185989199999, 49.989160001000108 ], [ -125.242469303999954, 49.989158801000059 ], [ -125.242452186999941, 49.98960380100003 ], [ -125.242418178999984, 49.990390194000042 ], [ -125.241205101999981, 49.990377411000054 ], [ -125.240211023999947, 49.990366902000105 ], [ -125.239505497999957, 49.990272988000065 ], [ -125.237362518999959, 49.989831094000088 ], [ -125.236963690999957, 49.989823810000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186918333", "BldgCostT": "123543333", "sL_LossRatio": "0.994806546246857", "sL_AssetLoss": "71900.13", "sL_BldgLoss": "71526.72", "sL_StrLoss": "68954.82", "sL_NStrLoss": "2571.9", "sL_ContLoss": "373.41", "geom_point": "0101000020E6100000AFABC098064F5FC071CC0DE173FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.237868390999949, 49.991852205000079 ], [ -125.237344190999949, 49.991672292000025 ], [ -125.236944793999925, 49.991459991000113 ], [ -125.23666040099998, 49.991287210000046 ], [ -125.236403111999891, 49.991074199000089 ], [ -125.236048716999946, 49.990586181000069 ], [ -125.235606512999965, 49.989677685000082 ], [ -125.23506047299999, 49.989220695000107 ], [ -125.235018396999962, 49.988990308000091 ], [ -125.232075884999986, 49.988994004000091 ], [ -125.232077675999946, 49.989712392000094 ], [ -125.232146313, 49.989861196000071 ], [ -125.231892111999969, 49.989801903000078 ], [ -125.230961799999989, 49.989977909000082 ], [ -125.230637513999966, 49.989357104000149 ], [ -125.230549289999928, 49.989217099000086 ], [ -125.23030615199994, 49.988833431000039 ], [ -125.230087395999988, 49.988488300000071 ], [ -125.229643631999963, 49.987849343000065 ], [ -125.22928421, 49.987331797000081 ], [ -125.229459302999913, 49.987285305000057 ], [ -125.230603109999933, 49.98726639900012 ], [ -125.230847100999981, 49.987267181000036 ], [ -125.230854033999918, 49.985675495000052 ], [ -125.23085578199999, 49.985262197000068 ], [ -125.23206609199994, 49.985261694000066 ], [ -125.232062594, 49.984231305000073 ], [ -125.232275187999946, 49.984231966000053 ], [ -125.234154009999983, 49.984237787000048 ], [ -125.236610774999988, 49.984245933000054 ], [ -125.236615936999954, 49.98497940500004 ], [ -125.236618116999949, 49.985294323000112 ], [ -125.236618182999933, 49.985303355000035 ], [ -125.23661955499999, 49.985388783000126 ], [ -125.236619802999925, 49.985474453000087 ], [ -125.236620099999968, 49.985555338000083 ], [ -125.236621713999938, 49.986092813000013 ], [ -125.236625816999933, 49.986553489000066 ], [ -125.236628996999954, 49.986911113000168 ], [ -125.236633790999974, 49.98770409600008 ], [ -125.236639202999982, 49.988487112000087 ], [ -125.236641967999958, 49.988882367000073 ], [ -125.236642803999928, 49.989003386000064 ], [ -125.23664278499993, 49.989012836000022 ], [ -125.236642625999949, 49.989097796000124 ], [ -125.236963690999957, 49.989823810000097 ], [ -125.237362518999959, 49.989831094000088 ], [ -125.239505497999957, 49.990272988000065 ], [ -125.240211023999947, 49.990366902000105 ], [ -125.241205101999981, 49.990377411000054 ], [ -125.241101397999955, 49.991754102000158 ], [ -125.24065290399993, 49.991719481000075 ], [ -125.240388699999983, 49.992255396000097 ], [ -125.240336689999936, 49.99242995200008 ], [ -125.240326700999944, 49.992463500000014 ], [ -125.239905597999979, 49.99237518800004 ], [ -125.238792613999976, 49.99204739100005 ], [ -125.237868390999949, 49.991852205000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134566666", "BldgCostT": "88231666", "sL_LossRatio": "0.973674751648487", "sL_AssetLoss": "49744.412", "sL_BldgLoss": "48434.878", "sL_StrLoss": "45959.338", "sL_NStrLoss": "2475.54", "sL_ContLoss": "1309.534", "geom_point": "0101000020E610000062B95B48364F5FC06F23F13411FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.234338516999983, 49.990030301000026 ], [ -125.233999499999967, 49.989870603000014 ], [ -125.232591069999955, 49.989863460000052 ], [ -125.232146313, 49.989861196000071 ], [ -125.232077675999946, 49.989712392000094 ], [ -125.232075884999986, 49.988994004000091 ], [ -125.235018396999962, 49.988990308000091 ], [ -125.23506047299999, 49.989220695000107 ], [ -125.235606512999965, 49.989677685000082 ], [ -125.236048716999946, 49.990586181000069 ], [ -125.236403111999891, 49.991074199000089 ], [ -125.23666040099998, 49.991287210000046 ], [ -125.236944793999925, 49.991459991000113 ], [ -125.237344190999949, 49.991672292000025 ], [ -125.237868390999949, 49.991852205000079 ], [ -125.238792613999976, 49.99204739100005 ], [ -125.239905597999979, 49.99237518800004 ], [ -125.240326700999944, 49.992463500000014 ], [ -125.240537914999919, 49.992508109000056 ], [ -125.242364434, 49.992536055000102 ], [ -125.242376103, 49.993348011000144 ], [ -125.242386895999957, 49.994125797000052 ], [ -125.242396275999937, 49.994903606000044 ], [ -125.240694691, 49.994907147000092 ], [ -125.240081633999949, 49.994907251000036 ], [ -125.239431034999981, 49.994907386000115 ], [ -125.239337577999962, 49.994909427000088 ], [ -125.238531418999955, 49.994910162000046 ], [ -125.237859196999977, 49.994909982000117 ], [ -125.237231520999956, 49.99491370500008 ], [ -125.235896709999963, 49.994917001000019 ], [ -125.234606112999984, 49.99220258800009 ], [ -125.235468580999949, 49.99175099800005 ], [ -125.234944315999897, 49.991162007000064 ], [ -125.234642785999952, 49.99059439000014 ], [ -125.234338516999983, 49.990030301000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135240334", "BldgCostT": "89883334", "sL_LossRatio": "0.993067744816238", "sL_AssetLoss": "55104.29", "sL_BldgLoss": "54722.293", "sL_StrLoss": "52323.703", "sL_NStrLoss": "2398.59", "sL_ContLoss": "381.997", "geom_point": "0101000020E61000009FC420B0F24E5FC0476369B748FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.235602069999942, 50.000345493000033 ], [ -125.233701418999914, 49.999609855000116 ], [ -125.233922462999971, 50.000268423000115 ], [ -125.23377231, 50.000022511000054 ], [ -125.23348960599999, 49.999559396000059 ], [ -125.233415594999911, 49.9993960790001 ], [ -125.233462884999966, 49.999072802000057 ], [ -125.233395625999918, 49.998843905000086 ], [ -125.233054511999953, 49.998221194000067 ], [ -125.232494805999977, 49.997916101000136 ], [ -125.232437598000018, 49.99783028700012 ], [ -125.232406360999974, 49.9972766630001 ], [ -125.232340874999963, 49.996116800000046 ], [ -125.231918905999976, 49.995088905000067 ], [ -125.232373509999945, 49.994925705000064 ], [ -125.232363166999932, 49.994903320000091 ], [ -125.232339861999947, 49.994852852000072 ], [ -125.231193417999947, 49.99236850000004 ], [ -125.232002294, 49.992206889000073 ], [ -125.230961799999989, 49.989977909000082 ], [ -125.231892111999969, 49.989801903000078 ], [ -125.232146313, 49.989861196000071 ], [ -125.232591069999955, 49.989863460000052 ], [ -125.233999499999967, 49.989870603000014 ], [ -125.234338516999983, 49.990030301000026 ], [ -125.234642785999952, 49.99059439000014 ], [ -125.234944315999897, 49.991162007000064 ], [ -125.235468580999949, 49.99175099800005 ], [ -125.234606112999984, 49.99220258800009 ], [ -125.235896709999963, 49.994917001000019 ], [ -125.234476911999977, 49.994917903000086 ], [ -125.234498746999947, 49.994965494000041 ], [ -125.23455438699996, 49.995086624000095 ], [ -125.235210179999939, 49.996514396000116 ], [ -125.235212204999954, 49.997647289000113 ], [ -125.23521109699999, 49.999539898000116 ], [ -125.235437814999955, 50.000006979000084 ], [ -125.235602069999942, 50.000345493000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178598593", "BldgCostT": "112595808", "sL_LossRatio": "0.885684227164811", "sL_AssetLoss": "61164.438", "sL_BldgLoss": "54172.378", "sL_StrLoss": "47115.8", "sL_NStrLoss": "7056.578", "sL_ContLoss": "6992.06", "geom_point": "0101000020E61000003FD3C753414F5FC08A163D437AFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.235210179999939, 49.996514396000116 ], [ -125.23455438699996, 49.995086624000095 ], [ -125.234498746999947, 49.994965494000041 ], [ -125.234476911999977, 49.994917903000086 ], [ -125.235896709999963, 49.994917001000019 ], [ -125.237231520999956, 49.99491370500008 ], [ -125.237859196999977, 49.994909982000117 ], [ -125.238531418999955, 49.994910162000046 ], [ -125.239337577999962, 49.994909427000088 ], [ -125.239431034999981, 49.994907386000115 ], [ -125.240081633999949, 49.994907251000036 ], [ -125.240694691, 49.994907147000092 ], [ -125.242396275999937, 49.994903606000044 ], [ -125.242409783999946, 49.995687713000109 ], [ -125.242408101999956, 49.996456398000092 ], [ -125.240301906999946, 49.996467109000122 ], [ -125.240046690999932, 49.99646914800006 ], [ -125.239583488999926, 49.996472909000083 ], [ -125.239368795999951, 49.996552296000054 ], [ -125.238541979, 49.9970982090001 ], [ -125.238428101999943, 49.997173405000055 ], [ -125.238418267999947, 49.997179903000045 ], [ -125.237591807999976, 49.997726799000105 ], [ -125.236841899999959, 49.997362019000086 ], [ -125.236137200999949, 49.997132303000051 ], [ -125.235615787999961, 49.996867010000081 ], [ -125.235210179999939, 49.996514396000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62355999", "BldgCostT": "41979999", "sL_LossRatio": "0.990638295640696", "sL_AssetLoss": "35085.278", "sL_BldgLoss": "34756.82", "sL_StrLoss": "33113.02", "sL_NStrLoss": "1643.8", "sL_ContLoss": "328.458", "geom_point": "0101000020E6100000605119189C4F5FC075530417AFFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.24182964, 49.999998991000034 ], [ -125.241824089999938, 49.999120893000089 ], [ -125.240910721999938, 49.999107397000095 ], [ -125.240679917999941, 49.999065407000124 ], [ -125.240268805999946, 49.998876399000082 ], [ -125.239804608999918, 49.998271679000013 ], [ -125.23934519299992, 49.997800999000042 ], [ -125.238863075999944, 49.997433494000077 ], [ -125.23847582399999, 49.997201954000097 ], [ -125.238428101999943, 49.997173405000055 ], [ -125.238541979, 49.9970982090001 ], [ -125.239368795999951, 49.996552296000054 ], [ -125.239583488999926, 49.996472909000083 ], [ -125.240046690999932, 49.99646914800006 ], [ -125.240301906999946, 49.996467109000122 ], [ -125.242408101999956, 49.996456398000092 ], [ -125.242409783999946, 49.995687713000109 ], [ -125.242396275999937, 49.994903606000044 ], [ -125.242941689999938, 49.994902216000092 ], [ -125.243841932999928, 49.994899941 ], [ -125.244477212, 49.994898313000078 ], [ -125.244783574999971, 49.994897551000072 ], [ -125.246021281999944, 49.994894386000034 ], [ -125.24691786599999, 49.994893209000068 ], [ -125.247668435999969, 49.994892209000035 ], [ -125.247635637999963, 49.995489254000105 ], [ -125.247600602999952, 49.996128221000099 ], [ -125.247582708999957, 49.996454311000029 ], [ -125.247562084999942, 49.996830519000071 ], [ -125.247513668999915, 49.997713332000032 ], [ -125.247387800999917, 50.000009159000079 ], [ -125.247373216999975, 50.000275800000097 ], [ -125.246639471, 50.000275876000046 ], [ -125.245091399999936, 50.000276047000092 ], [ -125.242481149999961, 50.000276250000098 ], [ -125.241831390999948, 50.000276295000035 ], [ -125.24182964, 49.999998991000034 ] ], [ [ -125.246834548999971, 49.997448621000082 ], [ -125.246821978999947, 49.997179008000103 ], [ -125.24431244099999, 49.997227599000048 ], [ -125.244299883999986, 49.996957984000083 ], [ -125.243881629999976, 49.996966078000064 ], [ -125.243894185000016, 49.997235692000075 ], [ -125.24305767, 49.997251874000028 ], [ -125.243082768999955, 49.997791104000086 ], [ -125.243501031999969, 49.997783014000092 ], [ -125.243513583999928, 49.998052629000014 ], [ -125.243931847999988, 49.998044536000123 ], [ -125.243969511999978, 49.998853379000089 ], [ -125.243132969999976, 49.998869562000039 ], [ -125.24314552, 49.999139177000139 ], [ -125.242727246999934, 49.999147267000041 ], [ -125.242739793999988, 49.999416881000101 ], [ -125.244831172999952, 49.999376419000029 ], [ -125.244806052999934, 49.998837191000078 ], [ -125.246060863999958, 49.998812895000128 ], [ -125.24601059799997, 49.997734439000091 ], [ -125.246428859000034, 49.997726339000046 ], [ -125.246416292000035, 49.997456724000102 ], [ -125.246834548999971, 49.997448621000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106298144", "BldgCostT": "70426523", "sL_LossRatio": "0.992678553356674", "sL_AssetLoss": "49257.615", "sL_BldgLoss": "48896.978", "sL_StrLoss": "47109.088", "sL_NStrLoss": "1787.89", "sL_ContLoss": "360.637", "geom_point": "0101000020E61000004FC4A6BE814F5FC0B6065B913D004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.240585303999978, 50.003910897 ], [ -125.24057589399996, 50.000282887000054 ], [ -125.239306398999972, 50.000292093 ], [ -125.238085894, 50.000292687000062 ], [ -125.238082511999963, 49.999999229000139 ], [ -125.238081887999968, 49.999946493000046 ], [ -125.238003593999977, 49.999626792000079 ], [ -125.237837100999954, 49.999319884999984 ], [ -125.237444686999979, 49.998845204000069 ], [ -125.237046103999916, 49.998496189000122 ], [ -125.236957315, 49.99838319100008 ], [ -125.236948316999971, 49.998251895000088 ], [ -125.23702719, 49.998125712000075 ], [ -125.23713269299995, 49.998051172 ], [ -125.237591807999976, 49.997726799000105 ], [ -125.238418267999947, 49.997179903000045 ], [ -125.238428101999943, 49.997173405000055 ], [ -125.23847582399999, 49.997201954000097 ], [ -125.238863075999944, 49.997433494000077 ], [ -125.23934519299992, 49.997800999000042 ], [ -125.239804608999918, 49.998271679000013 ], [ -125.240268805999946, 49.998876399000082 ], [ -125.240679917999941, 49.999065407000124 ], [ -125.240910721999938, 49.999107397000095 ], [ -125.241824089999938, 49.999120893000089 ], [ -125.24182964, 49.999998991000034 ], [ -125.241831390999948, 50.000276295000035 ], [ -125.242481149999961, 50.000276250000098 ], [ -125.245091399999936, 50.000276047000092 ], [ -125.246639471, 50.000275876000046 ], [ -125.247373216999975, 50.000275800000097 ], [ -125.247373273999969, 50.000288472000079 ], [ -125.247382994999938, 50.002050702000076 ], [ -125.247383108999955, 50.003841615000113 ], [ -125.247383092999954, 50.003903711000113 ], [ -125.243181399999969, 50.003906308000062 ], [ -125.242577807999922, 50.003908269000043 ], [ -125.242353806999958, 50.003908987000045 ], [ -125.2418547, 50.003910602000083 ], [ -125.241819309, 50.005704107000042 ], [ -125.24059040499999, 50.005700089000094 ], [ -125.239394789999949, 50.005700800000099 ], [ -125.238181196999946, 50.00569959200007 ], [ -125.238096700999975, 50.003907107000018 ], [ -125.238212938999965, 50.003907510000047 ], [ -125.238356933999967, 50.00390798700009 ], [ -125.238500891999962, 50.003908476000113 ], [ -125.238644851999936, 50.003908964000125 ], [ -125.238788829999947, 50.003909475000057 ], [ -125.238932803999916, 50.003909929000031 ], [ -125.239076762999957, 50.003910417000036 ], [ -125.239220721999942, 50.003910906000065 ], [ -125.239364682999977, 50.003911393000109 ], [ -125.240585303999978, 50.003910897 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121219918", "BldgCostT": "80246668", "sL_LossRatio": "0.969621436126171", "sL_AssetLoss": "53117.06", "sL_BldgLoss": "51503.44", "sL_StrLoss": "48169.03", "sL_NStrLoss": "3334.41", "sL_ContLoss": "1613.62", "geom_point": "0101000020E6100000A014CEEA344F5FC0FB31E6AE25004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.235619297999989, 50.003898897000141 ], [ -125.235602069999942, 50.000345493000033 ], [ -125.235437814999955, 50.000006979000084 ], [ -125.23521109699999, 49.999539898000116 ], [ -125.235212204999954, 49.997647289000113 ], [ -125.235210179999939, 49.996514396000116 ], [ -125.235615787999961, 49.996867010000081 ], [ -125.236137200999949, 49.997132303000051 ], [ -125.236841899999959, 49.997362019000086 ], [ -125.237591807999976, 49.997726799000105 ], [ -125.23713269299995, 49.998051172 ], [ -125.23702719, 49.998125712000075 ], [ -125.236948316999971, 49.998251895000088 ], [ -125.236957315, 49.99838319100008 ], [ -125.237046103999916, 49.998496189000122 ], [ -125.237444686999979, 49.998845204000069 ], [ -125.237837100999954, 49.999319884999984 ], [ -125.238003593999977, 49.999626792000079 ], [ -125.238081887999968, 49.999946493000046 ], [ -125.238082511999963, 49.999999229000139 ], [ -125.238085894, 50.000292687000062 ], [ -125.239306398999972, 50.000292093 ], [ -125.24057589399996, 50.000282887000054 ], [ -125.240585303999978, 50.003910897 ], [ -125.239364682999977, 50.003911393000109 ], [ -125.239220721999942, 50.003910906000065 ], [ -125.239076762999957, 50.003910417000036 ], [ -125.238932803999916, 50.003909929000031 ], [ -125.238788829999947, 50.003909475000057 ], [ -125.238644851999936, 50.003908964000125 ], [ -125.238500891999962, 50.003908476000113 ], [ -125.238356933999967, 50.00390798700009 ], [ -125.238212938999965, 50.003907510000047 ], [ -125.238096700999975, 50.003907107000018 ], [ -125.236826090999941, 50.003893804000029 ], [ -125.235619297999989, 50.003898897000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154080886", "BldgCostT": "106207079", "sL_LossRatio": "0.968318572912277", "sL_AssetLoss": "45205.35", "sL_BldgLoss": "43773.18", "sL_StrLoss": "40765.41", "sL_NStrLoss": "3007.77", "sL_ContLoss": "1432.17", "geom_point": "0101000020E61000004A0C6555024F5FC01FA86CBB7D004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.231965190999944, 50.004116273000065 ], [ -125.231183887999947, 50.002209109000063 ], [ -125.230897710999926, 50.000978905000068 ], [ -125.230705636999957, 50.000399146000085 ], [ -125.232293882999898, 49.999920070000051 ], [ -125.233976612999982, 50.00042979400007 ], [ -125.233922462999971, 50.000268423000115 ], [ -125.233701418999914, 49.999609855000116 ], [ -125.235602069999942, 50.000345493000033 ], [ -125.235619297999989, 50.003898897000141 ], [ -125.236826090999941, 50.003893804000029 ], [ -125.238096700999975, 50.003907107000018 ], [ -125.238181196999946, 50.00569959200007 ], [ -125.238192806999947, 50.007511293000078 ], [ -125.236867382999932, 50.007511098000059 ], [ -125.236272898999957, 50.007509988000045 ], [ -125.235628609999964, 50.007508803000107 ], [ -125.234286098999959, 50.007535411000084 ], [ -125.234137901999986, 50.007222410000054 ], [ -125.234062820999938, 50.007109651000057 ], [ -125.233868399999935, 50.006817703000074 ], [ -125.233812366999985, 50.006751643000044 ], [ -125.233277514999926, 50.006121306000068 ], [ -125.232911144999946, 50.005723031000073 ], [ -125.232615805999913, 50.005401906000039 ], [ -125.232431498999944, 50.005157908000065 ], [ -125.232262507999906, 50.004842005000057 ], [ -125.23225892100001, 50.004833272000077 ], [ -125.231965190999944, 50.004116273000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79522189", "BldgCostT": "51795825", "sL_LossRatio": "0.943302695882436", "sL_AssetLoss": "37828.43", "sL_BldgLoss": "35683.66", "sL_StrLoss": "33832.63", "sL_NStrLoss": "1851.03", "sL_ContLoss": "2144.77", "geom_point": "0101000020E61000009B9B2D28E54E5FC0392F4E7CB5004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.236379310999979, 50.014751614000069 ], [ -125.234897946999951, 50.014669704000077 ], [ -125.234040974999942, 50.014687253000055 ], [ -125.234026177999965, 50.014497593000087 ], [ -125.232904394999935, 50.012576289000044 ], [ -125.232918798999947, 50.011659205000029 ], [ -125.23347960199996, 50.01023640800009 ], [ -125.233461394999949, 50.010136696000068 ], [ -125.233187340999962, 50.010101421000059 ], [ -125.23316562299999, 50.00963295600009 ], [ -125.23329001099999, 50.009420304000066 ], [ -125.233298666999957, 50.009346131000044 ], [ -125.23338890499997, 50.008572885000021 ], [ -125.233130918999933, 50.008434704000123 ], [ -125.232646989999978, 50.008497410000061 ], [ -125.232605325999955, 50.00878755100009 ], [ -125.232289243999958, 50.008793634000028 ], [ -125.232278709999932, 50.008566314000092 ], [ -125.232642109999972, 50.007977272000055 ], [ -125.232670115999966, 50.00797673200006 ], [ -125.232668182999987, 50.007935011000043 ], [ -125.233063692999906, 50.00729390200005 ], [ -125.233137922999902, 50.006779804000089 ], [ -125.232902605999953, 50.006504897000049 ], [ -125.232160678999918, 50.006019045000095 ], [ -125.232139327999917, 50.005558239000024 ], [ -125.231779477999922, 50.00556516400011 ], [ -125.23174307599993, 50.005291494000048 ], [ -125.231689666999955, 50.004890008000096 ], [ -125.231658548999931, 50.004218207000093 ], [ -125.231600452999899, 50.004219325000136 ], [ -125.231584382999955, 50.004098513000031 ], [ -125.231550222999957, 50.003841705000049 ], [ -125.23135909399997, 50.00361089000009 ], [ -125.231180549999948, 50.00293756600005 ], [ -125.231177798999965, 50.002878173000084 ], [ -125.231156827999925, 50.002878575000068 ], [ -125.230822600999943, 50.002299196000131 ], [ -125.230724011999968, 50.001041692000086 ], [ -125.230489301, 50.000397657000057 ], [ -125.230356005999937, 50.000031890000066 ], [ -125.230252116999964, 49.99930560300006 ], [ -125.22913080099994, 49.995287895000054 ], [ -125.228353308999914, 49.995042885000075 ], [ -125.227900910999978, 49.994305208000085 ], [ -125.227165698999954, 49.992294197000042 ], [ -125.227155221999965, 49.991772900000058 ], [ -125.226401349999975, 49.990116864000107 ], [ -125.226371827999955, 49.989477680000043 ], [ -125.226273782999968, 49.989479562000021 ], [ -125.226294716000012, 49.989432907000115 ], [ -125.225951904999988, 49.989448305000103 ], [ -125.22592873399999, 49.988946471000084 ], [ -125.225614754999953, 49.988952497000106 ], [ -125.225499206999956, 49.988708947000092 ], [ -125.225485647999989, 49.98841526000006 ], [ -125.225361008999926, 49.988417653000091 ], [ -125.225229190999954, 49.988139800000049 ], [ -125.224291200999957, 49.985630299000029 ], [ -125.223793077999929, 49.985127597000059 ], [ -125.22337019099993, 49.984415505000072 ], [ -125.223306436999934, 49.983671926000035 ], [ -125.223663686999942, 49.983423410000078 ], [ -125.22366399699996, 49.983423294000026 ], [ -125.223779471999961, 49.98380019600004 ], [ -125.224029503999958, 49.984616403000089 ], [ -125.224072895999953, 49.984758021000069 ], [ -125.224106486999943, 49.984867701 ], [ -125.224278899999916, 49.985225007000082 ], [ -125.224648126999966, 49.985804559000051 ], [ -125.225254196999984, 49.986755789000064 ], [ -125.226638397999949, 49.989171603000052 ], [ -125.226723525999915, 49.989359766000057 ], [ -125.228297318999978, 49.992837655000073 ], [ -125.229309823999955, 49.995074865000021 ], [ -125.229375310999899, 49.995219545000054 ], [ -125.22967939599999, 49.995891401000037 ], [ -125.22983357899993, 49.996633113 ], [ -125.229997000999973, 49.997419250000036 ], [ -125.23043037599993, 49.999503881000074 ], [ -125.230466307999961, 49.999676690000058 ], [ -125.230574982999968, 50.000004824000037 ], [ -125.230705636999957, 50.000399146000085 ], [ -125.230897710999926, 50.000978905000068 ], [ -125.231183887999947, 50.002209109000063 ], [ -125.231965190999944, 50.004116273000065 ], [ -125.23225892100001, 50.004833272000077 ], [ -125.232262507999906, 50.004842005000057 ], [ -125.232431498999944, 50.005157908000065 ], [ -125.232615805999913, 50.005401906000039 ], [ -125.232911144999946, 50.005723031000073 ], [ -125.233277514999926, 50.006121306000068 ], [ -125.233812366999985, 50.006751643000044 ], [ -125.233868399999935, 50.006817703000074 ], [ -125.234062820999938, 50.007109651000057 ], [ -125.234137901999986, 50.007222410000054 ], [ -125.234286098999959, 50.007535411000084 ], [ -125.235628609999964, 50.007508803000107 ], [ -125.236272898999957, 50.007509988000045 ], [ -125.236867382999932, 50.007511098000059 ], [ -125.236812802999964, 50.008523087000086 ], [ -125.236576196, 50.009325285000095 ], [ -125.236586402999976, 50.011134290000072 ], [ -125.23659210699999, 50.012873993000078 ], [ -125.236662104999965, 50.012941999000105 ], [ -125.236743194999946, 50.013019008000086 ], [ -125.236767220999965, 50.014754304000057 ], [ -125.236379310999979, 50.014751614000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257349887", "BldgCostT": "173017080", "sL_LossRatio": "0.897382738344882", "sL_AssetLoss": "62465.134", "sL_BldgLoss": "56055.133", "sL_StrLoss": "49568.243", "sL_NStrLoss": "6486.89", "sL_ContLoss": "6410.001", "geom_point": "0101000020E61000001F188A85AB4E5FC0E3392A50EEFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.233976612999982, 50.00042979400007 ], [ -125.232293882999898, 49.999920070000051 ], [ -125.230705636999957, 50.000399146000085 ], [ -125.230574982999968, 50.000004824000037 ], [ -125.230466307999961, 49.999676690000058 ], [ -125.23043037599993, 49.999503881000074 ], [ -125.229997000999973, 49.997419250000036 ], [ -125.22983357899993, 49.996633113 ], [ -125.22967939599999, 49.995891401000037 ], [ -125.229375310999899, 49.995219545000054 ], [ -125.229309823999955, 49.995074865000021 ], [ -125.228297318999978, 49.992837655000073 ], [ -125.226723525999915, 49.989359766000057 ], [ -125.226638397999949, 49.989171603000052 ], [ -125.225254196999984, 49.986755789000064 ], [ -125.224648126999966, 49.985804559000051 ], [ -125.224278899999916, 49.985225007000082 ], [ -125.224106486999943, 49.984867701 ], [ -125.224072895999953, 49.984758021000069 ], [ -125.224029503999958, 49.984616403000089 ], [ -125.223779471999961, 49.98380019600004 ], [ -125.22366399699996, 49.983423294000026 ], [ -125.224180905999972, 49.983363988000065 ], [ -125.224555381999977, 49.983479002000131 ], [ -125.224697689, 49.983794100000097 ], [ -125.22475699599994, 49.983925493000058 ], [ -125.22484431499997, 49.984062313000059 ], [ -125.22497517499994, 49.984267335000027 ], [ -125.225134592999936, 49.984517107000087 ], [ -125.225272387, 49.984610706000083 ], [ -125.225484882999964, 49.984662502000113 ], [ -125.225713997999961, 49.984640811000077 ], [ -125.226503380999986, 49.984394911000031 ], [ -125.226758302999968, 49.984315485000117 ], [ -125.227199919999961, 49.984255596000025 ], [ -125.227250595999962, 49.984332725000044 ], [ -125.227783109999976, 49.985142705000044 ], [ -125.228156900999949, 49.985548986000097 ], [ -125.228450296999966, 49.985927804 ], [ -125.22928421, 49.987331797000081 ], [ -125.229643631999963, 49.987849343000065 ], [ -125.230087395999988, 49.988488300000071 ], [ -125.23030615199994, 49.988833431000039 ], [ -125.230549289999928, 49.989217099000086 ], [ -125.230637513999966, 49.989357104000149 ], [ -125.230961799999989, 49.989977909000082 ], [ -125.232002294, 49.992206889000073 ], [ -125.231193417999947, 49.99236850000004 ], [ -125.232339861999947, 49.994852852000072 ], [ -125.232363166999932, 49.994903320000091 ], [ -125.232373509999945, 49.994925705000064 ], [ -125.231918905999976, 49.995088905000067 ], [ -125.232340874999963, 49.996116800000046 ], [ -125.232406360999974, 49.9972766630001 ], [ -125.232437598000018, 49.99783028700012 ], [ -125.232494805999977, 49.997916101000136 ], [ -125.233054511999953, 49.998221194000067 ], [ -125.233395625999918, 49.998843905000086 ], [ -125.233462884999966, 49.999072802000057 ], [ -125.233415594999911, 49.9993960790001 ], [ -125.23348960599999, 49.999559396000059 ], [ -125.23377231, 50.000022511000054 ], [ -125.233922462999971, 50.000268423000115 ], [ -125.233976612999982, 50.00042979400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230938916", "BldgCostT": "156521666", "sL_LossRatio": "0.9918963551591", "sL_AssetLoss": "49908.9", "sL_BldgLoss": "49504.456", "sL_StrLoss": "43176.986", "sL_NStrLoss": "6327.47", "sL_ContLoss": "404.444", "geom_point": "0101000020E6100000FD9730DC714F5FC072D0560C74014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.241820916999956, 50.014762394000044 ], [ -125.241848423999954, 50.012937396000105 ], [ -125.241240344999966, 50.012937485000066 ], [ -125.240578699999929, 50.012937590000085 ], [ -125.240580717999961, 50.01113950000007 ], [ -125.240054104999913, 50.011138939000034 ], [ -125.239352984999982, 50.011138188000061 ], [ -125.238728004999984, 50.011137992000066 ], [ -125.237978726000023, 50.011137707000074 ], [ -125.237360466999974, 50.011136187000027 ], [ -125.236586402999976, 50.011134290000072 ], [ -125.236576196, 50.009325285000095 ], [ -125.236812802999964, 50.008523087000086 ], [ -125.236867382999932, 50.007511098000059 ], [ -125.238192806999947, 50.007511293000078 ], [ -125.239420399, 50.007511709000035 ], [ -125.239324798999988, 50.009314603000078 ], [ -125.241834781999941, 50.00930499800004 ], [ -125.24183918699994, 50.01113919400008 ], [ -125.242778193999953, 50.011141191000029 ], [ -125.24305020299991, 50.011142093000075 ], [ -125.243855195999956, 50.011142292000095 ], [ -125.245763781000022, 50.01114377600004 ], [ -125.245777797999935, 50.01114378900008 ], [ -125.245812706999985, 50.014770106000135 ], [ -125.243411483999935, 50.014764294000095 ], [ -125.241820916999956, 50.014762394000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255955494", "BldgCostT": "172704076", "sL_LossRatio": "0.858714522561435", "sL_AssetLoss": "67566.18", "sL_BldgLoss": "58020.06", "sL_StrLoss": "48066.46", "sL_NStrLoss": "9953.6", "sL_ContLoss": "9546.12", "geom_point": "0101000020E6100000A3A25FF8944F5FC00521205FC2004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.243181399999969, 50.003906308000062 ], [ -125.247383092999954, 50.003903711000113 ], [ -125.247382020999936, 50.004942753000122 ], [ -125.247380782999983, 50.006147783000138 ], [ -125.247380626000023, 50.006292164000136 ], [ -125.24737938600002, 50.007511709000035 ], [ -125.246091772999961, 50.007511890000117 ], [ -125.245833679999947, 50.007511894000068 ], [ -125.24522679599994, 50.007511292000096 ], [ -125.241826976999945, 50.007511290000082 ], [ -125.239420399, 50.007511709000035 ], [ -125.238192806999947, 50.007511293000078 ], [ -125.238181196999946, 50.00569959200007 ], [ -125.239394789999949, 50.005700800000099 ], [ -125.24059040499999, 50.005700089000094 ], [ -125.241819309, 50.005704107000042 ], [ -125.2418547, 50.003910602000083 ], [ -125.242353806999958, 50.003908987000045 ], [ -125.242577807999922, 50.003908269000043 ], [ -125.243181399999969, 50.003906308000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106656583", "BldgCostT": "66913333", "sL_LossRatio": "0.93257226623716", "sL_AssetLoss": "52551.477", "sL_BldgLoss": "49008.05", "sL_StrLoss": "45048.42", "sL_NStrLoss": "3959.63", "sL_ContLoss": "3543.427", "geom_point": "0101000020E6100000D5B108CDC74F5FC040129B3432014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.24183918699994, 50.01113919400008 ], [ -125.241834781999941, 50.00930499800004 ], [ -125.239324798999988, 50.009314603000078 ], [ -125.239420399, 50.007511709000035 ], [ -125.241826976999945, 50.007511290000082 ], [ -125.24522679599994, 50.007511292000096 ], [ -125.245833679999947, 50.007511894000068 ], [ -125.246091772999961, 50.007511890000117 ], [ -125.24737938600002, 50.007511709000035 ], [ -125.247379912999989, 50.009343203000043 ], [ -125.247379667999908, 50.009426866000055 ], [ -125.24746512499999, 50.009383094000079 ], [ -125.249070947999897, 50.008560134000028 ], [ -125.249167917999941, 50.008618102000035 ], [ -125.249818219999952, 50.008689991000033 ], [ -125.250255224999961, 50.008417901 ], [ -125.250507096999939, 50.008195704000087 ], [ -125.250636393999955, 50.007969998000114 ], [ -125.250755612999967, 50.007509599000109 ], [ -125.253054714999976, 50.007511799000021 ], [ -125.253046607999977, 50.008770447000117 ], [ -125.253046124999969, 50.009224506000066 ], [ -125.253042158999961, 50.009552638000102 ], [ -125.253039118999965, 50.01033928300005 ], [ -125.25303269799997, 50.011151086000062 ], [ -125.250821388999938, 50.011146889000045 ], [ -125.24925181699993, 50.01114778500007 ], [ -125.24753666, 50.011146455000095 ], [ -125.247470091999929, 50.011146412000102 ], [ -125.247375323999975, 50.011145807000091 ], [ -125.246937411999966, 50.011145260000028 ], [ -125.246657332999987, 50.011144908000091 ], [ -125.246643312999936, 50.011144895000051 ], [ -125.245777797999935, 50.01114378900008 ], [ -125.245763781000022, 50.01114377600004 ], [ -125.243855195999956, 50.011142292000095 ], [ -125.24305020299991, 50.011142093000075 ], [ -125.242778193999953, 50.011141191000029 ], [ -125.24183918699994, 50.01113919400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182663333", "BldgCostT": "118793333", "sL_LossRatio": "0.991937309819361", "sL_AssetLoss": "76632.735", "sL_BldgLoss": "76014.869", "sL_StrLoss": "73447.709", "sL_NStrLoss": "2567.16", "sL_ContLoss": "617.866", "geom_point": "0101000020E61000004CD0B2303C505FC02143BF9DE1004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.25303269799997, 50.011151086000062 ], [ -125.253039118999965, 50.01033928300005 ], [ -125.253042158999961, 50.009552638000102 ], [ -125.253046124999969, 50.009224506000066 ], [ -125.253046607999977, 50.008770447000117 ], [ -125.253054714999976, 50.007511799000021 ], [ -125.250755612999967, 50.007509599000109 ], [ -125.250636393999955, 50.007969998000114 ], [ -125.250507096999939, 50.008195704000087 ], [ -125.250255224999961, 50.008417901 ], [ -125.249818219999952, 50.008689991000033 ], [ -125.249167917999941, 50.008618102000035 ], [ -125.249070947999897, 50.008560134000028 ], [ -125.24746512499999, 50.009383094000079 ], [ -125.247379667999908, 50.009426866000055 ], [ -125.247379912999989, 50.009343203000043 ], [ -125.24737938600002, 50.007511709000035 ], [ -125.247380626000023, 50.006292164000136 ], [ -125.247380782999983, 50.006147783000138 ], [ -125.247382020999936, 50.004942753000122 ], [ -125.247383092999954, 50.003903711000113 ], [ -125.247490487999954, 50.00390439300002 ], [ -125.251254208999967, 50.003903191000042 ], [ -125.253032815000012, 50.003901789000068 ], [ -125.25833309399999, 50.003859435000045 ], [ -125.258658091999962, 50.005489274000077 ], [ -125.258695608999957, 50.005677383000062 ], [ -125.259060587999954, 50.00750751500005 ], [ -125.2593269199999, 50.008624099000052 ], [ -125.259448153000022, 50.009132275000056 ], [ -125.259677130999961, 50.010092047000086 ], [ -125.259673660999951, 50.01010433700008 ], [ -125.259618429999961, 50.010301295000097 ], [ -125.259588537999946, 50.01040786600003 ], [ -125.257685064999976, 50.01039942500006 ], [ -125.257688457, 50.010191003000074 ], [ -125.256223883999951, 50.010219504000077 ], [ -125.256194936, 50.009601497000041 ], [ -125.255357185999912, 50.009595820000044 ], [ -125.255361901999905, 50.009696553000062 ], [ -125.254943539999942, 50.009704688000063 ], [ -125.254981405999942, 50.010513524000082 ], [ -125.255818142999956, 50.010497252000036 ], [ -125.255827206999953, 50.010690781000044 ], [ -125.255791870999985, 50.011144477000094 ], [ -125.255041467999945, 50.011169412000172 ], [ -125.254517041999961, 50.011164625000077 ], [ -125.254268421999939, 50.011162356000035 ], [ -125.25303269799997, 50.011151086000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7583583", "BldgCostT": "4758333", "sL_LossRatio": "0.992471670435525", "sL_AssetLoss": "2059.421", "sL_BldgLoss": "2043.917", "sL_StrLoss": "1915.617", "sL_NStrLoss": "128.3", "sL_ContLoss": "15.504", "geom_point": "0101000020E61000007B82069389505FC0EA0135AD7B014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.257685064999976, 50.01039942500006 ], [ -125.259588537999946, 50.01040786600003 ], [ -125.259435730999911, 50.010952633000088 ], [ -125.25833944199999, 50.013233436000093 ], [ -125.257669269999951, 50.013228909000084 ], [ -125.257695014999939, 50.011646917000043 ], [ -125.25766476699999, 50.011646713000076 ], [ -125.257685064999976, 50.01039942500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148161768", "BldgCostT": "90652904", "sL_LossRatio": "0.835391326620099", "sL_AssetLoss": "48057.413", "sL_BldgLoss": "40146.746", "sL_StrLoss": "34272.016", "sL_NStrLoss": "5874.73", "sL_ContLoss": "7910.667", "geom_point": "0101000020E6100000C966381266505FC083CB095E9D024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.255061504999958, 50.023187281000077 ], [ -125.253481159999978, 50.023183362000076 ], [ -125.252336110999977, 50.023180491000105 ], [ -125.252349819999949, 50.022471271 ], [ -125.252363373, 50.021770991000054 ], [ -125.248015783999946, 50.021804210000056 ], [ -125.247934807999968, 50.021803697000102 ], [ -125.247933054999947, 50.021627542000061 ], [ -125.247915402999965, 50.019852588000028 ], [ -125.248008865999964, 50.019853209000082 ], [ -125.2493624499999, 50.019853477000041 ], [ -125.251711007999972, 50.019855991000014 ], [ -125.251991358999945, 50.018771385000022 ], [ -125.251721108999902, 50.018817597000115 ], [ -125.251538752999977, 50.018817428000069 ], [ -125.251093112999911, 50.018816982000068 ], [ -125.251092586999931, 50.017997900000097 ], [ -125.251090487999988, 50.016425419000058 ], [ -125.25108948799999, 50.015635094000118 ], [ -125.251089595999971, 50.014780088000116 ], [ -125.251647803999944, 50.014780293000058 ], [ -125.251767935999979, 50.01477906000008 ], [ -125.25188804899993, 50.01477780400014 ], [ -125.25200821599999, 50.014776558000044 ], [ -125.252248462999887, 50.014774068000115 ], [ -125.2523339899999, 50.014773172000048 ], [ -125.252454101999916, 50.014771916000051 ], [ -125.252574214999967, 50.014770661000043 ], [ -125.252615336999895, 50.014770214000073 ], [ -125.252694362999975, 50.014769390000076 ], [ -125.252814529999952, 50.014768143000069 ], [ -125.252934642999961, 50.014766887000071 ], [ -125.252934906999911, 50.014766883000114 ], [ -125.252923840999955, 50.015442542000073 ], [ -125.254069198999929, 50.015450324 ], [ -125.254093968999925, 50.013935599 ], [ -125.257989236999933, 50.013961978000111 ], [ -125.257657336999983, 50.014652418 ], [ -125.257406804999931, 50.015173604000054 ], [ -125.25730869299997, 50.015593088000102 ], [ -125.257226312999975, 50.015945289000086 ], [ -125.257126316999958, 50.016372866000069 ], [ -125.257180092999974, 50.017356833000065 ], [ -125.257548906999915, 50.018271870000028 ], [ -125.258155583999937, 50.019148984000019 ], [ -125.259512319999956, 50.020416846000039 ], [ -125.261088842000021, 50.021990033000058 ], [ -125.261223559999905, 50.022113846000124 ], [ -125.263295002999968, 50.024017688000093 ], [ -125.263691748999932, 50.02438227000011 ], [ -125.263981396999952, 50.024568328000079 ], [ -125.263996252999945, 50.024595087000073 ], [ -125.264543504999963, 50.025090351000138 ], [ -125.264906086999986, 50.025489443 ], [ -125.264935513999916, 50.025533950000117 ], [ -125.265355434999933, 50.02597714600013 ], [ -125.26551566099999, 50.026172502000122 ], [ -125.2656012, 50.026225182000069 ], [ -125.265617014999947, 50.026278881000025 ], [ -125.265705676999957, 50.026421348000035 ], [ -125.26573699, 50.02651974600019 ], [ -125.265740131999934, 50.026609556000054 ], [ -125.265755929, 50.026663233000058 ], [ -125.265805578999945, 50.026887164000094 ], [ -125.26579604799997, 50.027013084000025 ], [ -125.265761082999987, 50.027211289000071 ], [ -125.26572364499998, 50.027337612000039 ], [ -125.265697657999979, 50.027391894000097 ], [ -125.26562028599993, 50.027572726000074 ], [ -125.265446843999925, 50.027799872000116 ], [ -125.26531401599999, 50.027990493000104 ], [ -125.265151399999965, 50.028127622000042 ], [ -125.264865520999962, 50.028329438000036 ], [ -125.264618638999934, 50.02844982500006 ], [ -125.264428468999967, 50.02859634000005 ], [ -125.264214774999971, 50.028725081000125 ], [ -125.264115029999942, 50.02878027300001 ], [ -125.26387347099994, 50.028614133000055 ], [ -125.263679436999951, 50.028356589000069 ], [ -125.263506445999937, 50.027400654000076 ], [ -125.263280972999951, 50.026843521000039 ], [ -125.263053801999945, 50.026477866000043 ], [ -125.262871229000012, 50.02626361300009 ], [ -125.262597708999976, 50.025942553000021 ], [ -125.26232682899996, 50.025689913000122 ], [ -125.261795993999925, 50.025290761000065 ], [ -125.260230355999937, 50.024328118000049 ], [ -125.259159510999979, 50.023884877000071 ], [ -125.25893812299995, 50.023793224 ], [ -125.257492479999925, 50.023194797000052 ], [ -125.255358221999984, 50.023188227000105 ], [ -125.255061504999958, 50.023187281000077 ] ], [ [ -125.261002395999981, 50.022809740000099 ], [ -125.260989735999914, 50.022540129000085 ], [ -125.26057126399995, 50.022548286000088 ], [ -125.260558603999968, 50.02227867600007 ], [ -125.260140134000011, 50.022286831000045 ], [ -125.260114822999967, 50.02174761000007 ], [ -125.259925331999909, 50.021751302000055 ], [ -125.259903428999948, 50.023101014000076 ], [ -125.26017810399992, 50.023095661000085 ], [ -125.260165448, 50.022826052000013 ], [ -125.261002395999981, 50.022809740000099 ] ], [ [ -125.252599648999961, 50.016599276000065 ], [ -125.252615742999922, 50.015617054000131 ], [ -125.252288699999923, 50.015614828 ], [ -125.252355406999953, 50.017041120000052 ], [ -125.252576597999905, 50.017036824000058 ], [ -125.252583769999958, 50.016599168000056 ], [ -125.252599648999961, 50.016599276000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7557000", "BldgCostT": "4740000", "sL_LossRatio": "0.989621858754956", "sL_AssetLoss": "2408.042", "sL_BldgLoss": "2383.051", "sL_StrLoss": "2203.341", "sL_NStrLoss": "179.71", "sL_ContLoss": "24.991", "geom_point": "0101000020E6100000A0496ABA41505FC0710425DC96014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.25303269799997, 50.011151086000062 ], [ -125.254268421999939, 50.011162356000035 ], [ -125.254517041999961, 50.011164625000077 ], [ -125.255041467999945, 50.011169412000172 ], [ -125.255791870999985, 50.011144477000094 ], [ -125.255827206999953, 50.010690781000044 ], [ -125.255856023999954, 50.011306087000051 ], [ -125.255437648999958, 50.011314224000039 ], [ -125.255450273999941, 50.011583836000035 ], [ -125.255031894999931, 50.011591971000072 ], [ -125.25504451799999, 50.011861583000055 ], [ -125.25462613799999, 50.011869717000089 ], [ -125.254663998999945, 50.012678552000111 ], [ -125.25508238799992, 50.012670418 ], [ -125.25512025899998, 50.013479254000089 ], [ -125.253865073999918, 50.013503652000082 ], [ -125.253890308999928, 50.014042876000083 ], [ -125.253128678999957, 50.01405767300016 ], [ -125.253030970999959, 50.01364337600004 ], [ -125.253032830999956, 50.01341688500009 ], [ -125.253042056999988, 50.012285834000089 ], [ -125.25303269799997, 50.011151086000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149586144", "BldgCostT": "96911523", "sL_LossRatio": "0.883590366977608", "sL_AssetLoss": "43894.967", "sL_BldgLoss": "38785.17", "sL_StrLoss": "33545.62", "sL_NStrLoss": "5239.55", "sL_ContLoss": "5109.797", "geom_point": "0101000020E6100000576AFEB1F34F5FC0620895F2B9014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.249934296999982, 50.01630601200003 ], [ -125.247598612999923, 50.015961897000054 ], [ -125.24749400099995, 50.015961207000053 ], [ -125.24682573199999, 50.015960468000102 ], [ -125.245935401999972, 50.015959496000043 ], [ -125.245812706999985, 50.014770106000135 ], [ -125.245777797999935, 50.01114378900008 ], [ -125.246643312999936, 50.011144895000051 ], [ -125.246657332999987, 50.011144908000091 ], [ -125.246937411999966, 50.011145260000028 ], [ -125.247375323999975, 50.011145807000091 ], [ -125.247470091999929, 50.011146412000102 ], [ -125.24753666, 50.011146455000095 ], [ -125.24925181699993, 50.01114778500007 ], [ -125.250821388999938, 50.011146889000045 ], [ -125.25303269799997, 50.011151086000062 ], [ -125.253042056999988, 50.012285834000089 ], [ -125.253032830999956, 50.01341688500009 ], [ -125.253030970999959, 50.01364337600004 ], [ -125.253128678999957, 50.01405767300016 ], [ -125.252946463999947, 50.014061214000044 ], [ -125.252934906999911, 50.014766883000114 ], [ -125.252934642999961, 50.014766887000071 ], [ -125.252814529999952, 50.014768143000069 ], [ -125.252694362999975, 50.014769390000076 ], [ -125.252615336999895, 50.014770214000073 ], [ -125.252574214999967, 50.014770661000043 ], [ -125.252454101999916, 50.014771916000051 ], [ -125.2523339899999, 50.014773172000048 ], [ -125.252248462999887, 50.014774068000115 ], [ -125.25200821599999, 50.014776558000044 ], [ -125.25188804899993, 50.01477780400014 ], [ -125.251767935999979, 50.01477906000008 ], [ -125.251647803999944, 50.014780293000058 ], [ -125.251089595999971, 50.014780088000116 ], [ -125.25108948799999, 50.015635094000118 ], [ -125.251090487999988, 50.016425419000058 ], [ -125.249934296999982, 50.01630601200003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165340834", "BldgCostT": "108828334", "sL_LossRatio": "0.748367309665221", "sL_AssetLoss": "53055.07", "sL_BldgLoss": "39704.68", "sL_StrLoss": "31291.69", "sL_NStrLoss": "8412.99", "sL_ContLoss": "13350.39", "geom_point": "0101000020E6100000D6D680EFD34F5FC0D27B5B9737024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.247776164999962, 50.018504976000031 ], [ -125.247739292999967, 50.018091913000013 ], [ -125.246172805999961, 50.018310383000014 ], [ -125.244937801999939, 50.018483478000057 ], [ -125.243713906999943, 50.018654885000053 ], [ -125.243504011, 50.017177203000088 ], [ -125.243419593999931, 50.015958386000079 ], [ -125.245935401999972, 50.015959496000043 ], [ -125.24682573199999, 50.015960468000102 ], [ -125.24749400099995, 50.015961207000053 ], [ -125.247598612999923, 50.015961897000054 ], [ -125.249934296999982, 50.01630601200003 ], [ -125.251090487999988, 50.016425419000058 ], [ -125.251092586999931, 50.017997900000097 ], [ -125.251093112999911, 50.018816982000068 ], [ -125.248803365999933, 50.018810979000087 ], [ -125.247897687999952, 50.018808607000111 ], [ -125.247802899999968, 50.018804398000093 ], [ -125.247776164999962, 50.018504976000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96219227", "BldgCostT": "63394856", "sL_LossRatio": "0.961504399397377", "sL_AssetLoss": "56378.858", "sL_BldgLoss": "54208.52", "sL_StrLoss": "51353.71", "sL_NStrLoss": "2854.81", "sL_ContLoss": "2170.338", "geom_point": "0101000020E61000008205AC2CBC4F5FC02F89710698024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.245387484999981, 50.023098905000055 ], [ -125.243508805999937, 50.020676419000097 ], [ -125.242800458999938, 50.020905211000105 ], [ -125.241944393, 50.021181697000053 ], [ -125.241638310999946, 50.020793908000059 ], [ -125.240996418999927, 50.019953301000079 ], [ -125.240701807999969, 50.019623092000053 ], [ -125.240596909999908, 50.019388708000072 ], [ -125.240580789999981, 50.019096308000037 ], [ -125.241365039999948, 50.018984372000055 ], [ -125.242112489999926, 50.018877694000025 ], [ -125.242972246999955, 50.018758079000108 ], [ -125.243713906999943, 50.018654885000053 ], [ -125.244937801999939, 50.018483478000057 ], [ -125.246172805999961, 50.018310383000014 ], [ -125.247739292999967, 50.018091913000013 ], [ -125.247776164999962, 50.018504976000031 ], [ -125.247802899999968, 50.018804398000093 ], [ -125.247897687999952, 50.018808607000111 ], [ -125.248803365999933, 50.018810979000087 ], [ -125.251093112999911, 50.018816982000068 ], [ -125.251538752999977, 50.018817428000069 ], [ -125.251721108999902, 50.018817597000115 ], [ -125.251991358999945, 50.018771385000022 ], [ -125.251711007999972, 50.019855991000014 ], [ -125.2493624499999, 50.019853477000041 ], [ -125.248008865999964, 50.019853209000082 ], [ -125.247915402999965, 50.019852588000028 ], [ -125.247933054999947, 50.021627542000061 ], [ -125.247934807999968, 50.021803697000102 ], [ -125.247953867999954, 50.022504535000117 ], [ -125.24797221199999, 50.023179512000098 ], [ -125.246748199999985, 50.023180106000055 ], [ -125.245755520999978, 50.02320750600007 ], [ -125.245387484999981, 50.023098905000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "337574617", "BldgCostT": "224667426", "sL_LossRatio": "0.924059554560538", "sL_AssetLoss": "62882.17", "sL_BldgLoss": "58106.87", "sL_StrLoss": "47685.57", "sL_NStrLoss": "10421.3", "sL_ContLoss": "4775.3", "geom_point": "0101000020E6100000228E1AB8684F5FC05C46D1A074024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.24135241, 50.022625991000034 ], [ -125.240289213999972, 50.021274596000076 ], [ -125.238776577999985, 50.019344596000046 ], [ -125.238526805999953, 50.018843907000068 ], [ -125.238327313999932, 50.018251805000041 ], [ -125.237105693999936, 50.015952488000082 ], [ -125.239569896, 50.015955190000099 ], [ -125.240740584999955, 50.015955843000057 ], [ -125.241833114, 50.015956404000107 ], [ -125.242016110999884, 50.018632416000059 ], [ -125.242112489999926, 50.018877694000025 ], [ -125.241365039999948, 50.018984372000055 ], [ -125.240580789999981, 50.019096308000037 ], [ -125.240596909999908, 50.019388708000072 ], [ -125.240701807999969, 50.019623092000053 ], [ -125.240996418999927, 50.019953301000079 ], [ -125.241638310999946, 50.020793908000059 ], [ -125.241944393, 50.021181697000053 ], [ -125.242800458999938, 50.020905211000105 ], [ -125.243508805999937, 50.020676419000097 ], [ -125.245387484999981, 50.023098905000055 ], [ -125.242839083999954, 50.022348613000077 ], [ -125.242666078999946, 50.023187998000033 ], [ -125.241545388999924, 50.023187506000049 ], [ -125.24135241, 50.022625991000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "335496283", "BldgCostT": "208400138", "sL_LossRatio": "0.76765536623855", "sL_AssetLoss": "71112.94", "sL_BldgLoss": "54590.23", "sL_StrLoss": "43190.74", "sL_NStrLoss": "11399.49", "sL_ContLoss": "16522.71", "geom_point": "0101000020E6100000BEFB77D85F4F5FC0A1136CD0D5024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.243315619999947, 50.031200852000062 ], [ -125.243159722999948, 50.030925044000092 ], [ -125.244187214999968, 50.030507397000108 ], [ -125.244514791999947, 50.030240375000119 ], [ -125.242899924999961, 50.028538667000078 ], [ -125.242639108999967, 50.028284134000081 ], [ -125.24248037299999, 50.0282743510001 ], [ -125.242455466999957, 50.028449180000059 ], [ -125.242297170999976, 50.028487500000018 ], [ -125.242227979999967, 50.028196013000041 ], [ -125.241838786999921, 50.028251459000067 ], [ -125.241563244999924, 50.027623043000119 ], [ -125.241452908, 50.027083311000084 ], [ -125.241028597999971, 50.026686015000038 ], [ -125.240752292999971, 50.026745814000066 ], [ -125.240554951999968, 50.026984499000108 ], [ -125.240254094, 50.026990310000031 ], [ -125.240128635, 50.024294170000104 ], [ -125.239795831999956, 50.024300598000124 ], [ -125.239697376999942, 50.024027847000042 ], [ -125.23968505699996, 50.0237630230001 ], [ -125.239602360999925, 50.023764621000076 ], [ -125.239369609999954, 50.023119805000121 ], [ -125.23928459599999, 50.022961186000039 ], [ -125.23964743099999, 50.022954181000053 ], [ -125.239634888999944, 50.022684567000063 ], [ -125.239216411999976, 50.022692646000074 ], [ -125.239203871999933, 50.02242303200012 ], [ -125.239001179999946, 50.02242694600006 ], [ -125.23892360499994, 50.021941898000136 ], [ -125.238399202999915, 50.021160109000114 ], [ -125.237747083999963, 50.021244094000032 ], [ -125.23754130899999, 50.021041785000172 ], [ -125.23684588799992, 50.020804002000048 ], [ -125.236622691999926, 50.020798296000109 ], [ -125.236526679999912, 50.020855546000057 ], [ -125.236199395999947, 50.020861856000096 ], [ -125.236146336999965, 50.01971930900006 ], [ -125.236159713999939, 50.019708895000122 ], [ -125.23639579099995, 50.019525111000043 ], [ -125.236429101999974, 50.019012296000021 ], [ -125.235907595999933, 50.018032499000093 ], [ -125.235638864999942, 50.017810040000043 ], [ -125.235630715999946, 50.017634541000099 ], [ -125.23543150199994, 50.017638382 ], [ -125.235313989999952, 50.017541102000138 ], [ -125.235194753999977, 50.01726503500003 ], [ -125.235174736999937, 50.016833760000118 ], [ -125.235009857999941, 50.016836938000075 ], [ -125.234858804999988, 50.016487195000131 ], [ -125.23473159299999, 50.016309211000149 ], [ -125.234731284999967, 50.016302592000038 ], [ -125.2347269199999, 50.016302677000141 ], [ -125.234098404999912, 50.015423296000073 ], [ -125.234040974999942, 50.014687253000055 ], [ -125.234897946999951, 50.014669704000077 ], [ -125.235570889999948, 50.015950799000024 ], [ -125.235954007999936, 50.015951231000024 ], [ -125.237105693999936, 50.015952488000082 ], [ -125.238327313999932, 50.018251805000041 ], [ -125.238526805999953, 50.018843907000068 ], [ -125.238776577999985, 50.019344596000046 ], [ -125.240289213999972, 50.021274596000076 ], [ -125.24135241, 50.022625991000034 ], [ -125.241545388999924, 50.023187506000049 ], [ -125.242666078999946, 50.023187998000033 ], [ -125.242839083999954, 50.022348613000077 ], [ -125.245387484999981, 50.023098905000055 ], [ -125.245755520999978, 50.02320750600007 ], [ -125.246748199999985, 50.023180106000055 ], [ -125.246724016999963, 50.023971082000052 ], [ -125.246770460999969, 50.024967469000089 ], [ -125.246770292999926, 50.024967592000053 ], [ -125.246689007999947, 50.0248250040001 ], [ -125.246574715999884, 50.024728904000064 ], [ -125.2464100399999, 50.024651416000111 ], [ -125.246322692999925, 50.024610311000032 ], [ -125.245489015999922, 50.024385197000115 ], [ -125.245318912999977, 50.024375106000065 ], [ -125.245128597999923, 50.024408812000097 ], [ -125.243938998999937, 50.024859210000109 ], [ -125.243766793999953, 50.024974888000038 ], [ -125.243161184999963, 50.025223295000046 ], [ -125.243015482999908, 50.025253795000012 ], [ -125.242902612999956, 50.025247589000038 ], [ -125.242791678999964, 50.02520190000002 ], [ -125.24214942499998, 50.024801899000032 ], [ -125.241794526999982, 50.025159999000095 ], [ -125.241671208999961, 50.025694108000074 ], [ -125.241610219999956, 50.025802421000016 ], [ -125.241563317000029, 50.025885696000017 ], [ -125.24152829499991, 50.025928817000093 ], [ -125.241366695999886, 50.0261280100001 ], [ -125.241326984999901, 50.026249094000036 ], [ -125.241375383999952, 50.026445388000056 ], [ -125.242651219999956, 50.027781298000029 ], [ -125.243159802999955, 50.028334108000116 ], [ -125.243161580999967, 50.02839249800013 ], [ -125.244974291999981, 50.030355984000046 ], [ -125.245009383999928, 50.030391377000086 ], [ -125.245044278999899, 50.030426603000123 ], [ -125.245757705999921, 50.031174990000061 ], [ -125.24577569899995, 50.031190121000108 ], [ -125.24491005299997, 50.031171319000144 ], [ -125.24431449199993, 50.031182361000113 ], [ -125.243315619999947, 50.031200852000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129021083", "BldgCostT": "82118333", "sL_LossRatio": "0.990153498946775", "sL_AssetLoss": "46856.543", "sL_BldgLoss": "46395.17", "sL_StrLoss": "43363.47", "sL_NStrLoss": "3031.7", "sL_ContLoss": "461.373", "geom_point": "0101000020E61000000F3234645D4F5FC04F58A856DB014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.242016110999884, 50.018632416000059 ], [ -125.241833114, 50.015956404000107 ], [ -125.240740584999955, 50.015955843000057 ], [ -125.239569896, 50.015955190000099 ], [ -125.237105693999936, 50.015952488000082 ], [ -125.235954007999936, 50.015951231000024 ], [ -125.235570889999948, 50.015950799000024 ], [ -125.234897946999951, 50.014669704000077 ], [ -125.236379310999979, 50.014751614000069 ], [ -125.236767220999965, 50.014754304000057 ], [ -125.236743194999946, 50.013019008000086 ], [ -125.236662104999965, 50.012941999000105 ], [ -125.23659210699999, 50.012873993000078 ], [ -125.236586402999976, 50.011134290000072 ], [ -125.237360466999974, 50.011136187000027 ], [ -125.237978726000023, 50.011137707000074 ], [ -125.238728004999984, 50.011137992000066 ], [ -125.239352984999982, 50.011138188000061 ], [ -125.240054104999913, 50.011138939000034 ], [ -125.240580717999961, 50.01113950000007 ], [ -125.240578699999929, 50.012937590000085 ], [ -125.241240344999966, 50.012937485000066 ], [ -125.241848423999954, 50.012937396000105 ], [ -125.241820916999956, 50.014762394000044 ], [ -125.243411483999935, 50.014764294000095 ], [ -125.245812706999985, 50.014770106000135 ], [ -125.245935401999972, 50.015959496000043 ], [ -125.243419593999931, 50.015958386000079 ], [ -125.243504011, 50.017177203000088 ], [ -125.243713906999943, 50.018654885000053 ], [ -125.242972246999955, 50.018758079000108 ], [ -125.242112489999926, 50.018877694000025 ], [ -125.242016110999884, 50.018632416000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "836307442", "BldgCostT": "513334382", "sL_LossRatio": "0.698486128552617", "sL_AssetLoss": "235871.745", "sL_BldgLoss": "164753.142", "sL_StrLoss": "117275.512", "sL_NStrLoss": "47477.63", "sL_ContLoss": "71118.603", "geom_point": "0101000020E6100000835BDDFBE54F5FC0C421BAB16A034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.244974291999981, 50.030355984000046 ], [ -125.243161580999967, 50.02839249800013 ], [ -125.243159802999955, 50.028334108000116 ], [ -125.242651219999956, 50.027781298000029 ], [ -125.241375383999952, 50.026445388000056 ], [ -125.241326984999901, 50.026249094000036 ], [ -125.241366695999886, 50.0261280100001 ], [ -125.24152829499991, 50.025928817000093 ], [ -125.241563317000029, 50.025885696000017 ], [ -125.241610219999956, 50.025802421000016 ], [ -125.241671208999961, 50.025694108000074 ], [ -125.241794526999982, 50.025159999000095 ], [ -125.24214942499998, 50.024801899000032 ], [ -125.242791678999964, 50.02520190000002 ], [ -125.242902612999956, 50.025247589000038 ], [ -125.243015482999908, 50.025253795000012 ], [ -125.243161184999963, 50.025223295000046 ], [ -125.243766793999953, 50.024974888000038 ], [ -125.243938998999937, 50.024859210000109 ], [ -125.245128597999923, 50.024408812000097 ], [ -125.245318912999977, 50.024375106000065 ], [ -125.245489015999922, 50.024385197000115 ], [ -125.246322692999925, 50.024610311000032 ], [ -125.2464100399999, 50.024651416000111 ], [ -125.246574715999884, 50.024728904000064 ], [ -125.246689007999947, 50.0248250040001 ], [ -125.246770292999926, 50.024967592000053 ], [ -125.246770460999969, 50.024967469000089 ], [ -125.246724016999963, 50.023971082000052 ], [ -125.246748199999985, 50.023180106000055 ], [ -125.24797221199999, 50.023179512000098 ], [ -125.247953867999954, 50.022504535000117 ], [ -125.247934807999968, 50.021803697000102 ], [ -125.248015783999946, 50.021804210000056 ], [ -125.252363373, 50.021770991000054 ], [ -125.252349819999949, 50.022471271 ], [ -125.252336110999977, 50.023180491000105 ], [ -125.253481159999978, 50.023183362000076 ], [ -125.253686693999953, 50.023455818000073 ], [ -125.253652076999941, 50.025056793000061 ], [ -125.253002543999941, 50.025056264000121 ], [ -125.252298398, 50.025055691000077 ], [ -125.252261603999955, 50.026870698000025 ], [ -125.252236478999961, 50.028063596000052 ], [ -125.252216589999975, 50.029020935000084 ], [ -125.253038162999985, 50.02902516600011 ], [ -125.253318341999886, 50.029026611000113 ], [ -125.254945106999941, 50.029034993000067 ], [ -125.254943094999959, 50.029130622000039 ], [ -125.254913992999946, 50.030509200000083 ], [ -125.252704286000011, 50.03051668900013 ], [ -125.25115488299997, 50.030523226000071 ], [ -125.250021702999959, 50.030511890000078 ], [ -125.249411212999973, 50.030458274000111 ], [ -125.249315073999966, 50.03044863000013 ], [ -125.24892447400002, 50.030432513000108 ], [ -125.248562511999978, 50.03037970400009 ], [ -125.248000467999944, 50.030493407000073 ], [ -125.247813389999976, 50.030531265000029 ], [ -125.247753187999976, 50.030543437000091 ], [ -125.245920273999943, 50.031142850000037 ], [ -125.24577569899995, 50.031190121000108 ], [ -125.245757705999921, 50.031174990000061 ], [ -125.245044278999899, 50.030426603000123 ], [ -125.245009383999928, 50.030391377000086 ], [ -125.244974291999981, 50.030355984000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149813250", "BldgCostT": "90420000", "sL_LossRatio": "0.720850422469183", "sL_AssetLoss": "62303.716", "sL_BldgLoss": "44911.66", "sL_StrLoss": "36657.07", "sL_NStrLoss": "8254.59", "sL_ContLoss": "17392.056", "geom_point": "0101000020E61000007ECA29E813505FC0602B783C73044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.250008826999974, 50.043450404000104 ], [ -125.249074501999971, 50.042560191000128 ], [ -125.248264906999978, 50.042279690000086 ], [ -125.247860988999946, 50.041990510000034 ], [ -125.246801399999953, 50.040580599000045 ], [ -125.246542999, 50.039913360000064 ], [ -125.245973711999937, 50.040114984000084 ], [ -125.245660956999956, 50.040189104000049 ], [ -125.245451229999929, 50.040203564000137 ], [ -125.245332928999986, 50.040136141000112 ], [ -125.244852429999952, 50.039454789000096 ], [ -125.244778571999973, 50.039410579000105 ], [ -125.244781608999958, 50.039227226000023 ], [ -125.245013818999922, 50.039228822000048 ], [ -125.244984655999971, 50.038603736000034 ], [ -125.246120734000016, 50.038433217000097 ], [ -125.24638299599998, 50.037727777 ], [ -125.246257453999959, 50.037273227000171 ], [ -125.245788413, 50.036303084000096 ], [ -125.246134359999957, 50.036305457000047 ], [ -125.246122527999944, 50.036051935000103 ], [ -125.246541119999947, 50.036043828000096 ], [ -125.246503362999974, 50.035234993000138 ], [ -125.24566619, 50.035251202000069 ], [ -125.245641028999955, 50.034711976000075 ], [ -125.24522244799999, 50.034720079000138 ], [ -125.245197291999943, 50.034180854000034 ], [ -125.24477871299996, 50.034188954000044 ], [ -125.244703263999924, 50.032571278000049 ], [ -125.24512182799999, 50.032563177000029 ], [ -125.245120124000024, 50.032526639000089 ], [ -125.244287956, 50.032520920000124 ], [ -125.244291705999927, 50.0322946430001 ], [ -125.243849182999924, 50.032291600000079 ], [ -125.243359368999933, 50.031278254000057 ], [ -125.243315619999947, 50.031200852000062 ], [ -125.24431449199993, 50.031182361000113 ], [ -125.24491005299997, 50.031171319000144 ], [ -125.24577569899995, 50.031190121000108 ], [ -125.245920273999943, 50.031142850000037 ], [ -125.247753187999976, 50.030543437000091 ], [ -125.247813389999976, 50.030531265000029 ], [ -125.248000467999944, 50.030493407000073 ], [ -125.248562511999978, 50.03037970400009 ], [ -125.24892447400002, 50.030432513000108 ], [ -125.249315073999966, 50.03044863000013 ], [ -125.249411212999973, 50.030458274000111 ], [ -125.250021702999959, 50.030511890000078 ], [ -125.25115488299997, 50.030523226000071 ], [ -125.252704286000011, 50.03051668900013 ], [ -125.254913992999946, 50.030509200000083 ], [ -125.256149232999988, 50.030509999000046 ], [ -125.257672508999974, 50.030510957000097 ], [ -125.259698007999987, 50.030512216000034 ], [ -125.261332010999951, 50.030513196000044 ], [ -125.26189046899999, 50.030513536000093 ], [ -125.261615174999946, 50.031443280000133 ], [ -125.261312161999939, 50.032466716000123 ], [ -125.261203207999955, 50.032662420000051 ], [ -125.260739901999955, 50.032758400000084 ], [ -125.25878460899996, 50.033370552000115 ], [ -125.258508627999959, 50.033548192000097 ], [ -125.257920593000037, 50.035510350000038 ], [ -125.256362942999914, 50.035499822000055 ], [ -125.256365983999927, 50.035313429000027 ], [ -125.255306264999902, 50.035334037000041 ], [ -125.25527085, 50.034578318000079 ], [ -125.255104850999942, 50.034577193000125 ], [ -125.255105647999983, 50.03452836700005 ], [ -125.254849782999926, 50.034533341000085 ], [ -125.254845167999989, 50.034434826000087 ], [ -125.254840251999894, 50.034329884000087 ], [ -125.254837150999947, 50.034263731000081 ], [ -125.253581423999904, 50.034288132000043 ], [ -125.253585193999967, 50.03436860100004 ], [ -125.253590211, 50.034475794000102 ], [ -125.253594049999961, 50.034557744000111 ], [ -125.253175471999938, 50.034565875000077 ], [ -125.253200717999945, 50.035105097000063 ], [ -125.25236355, 50.035121355000079 ], [ -125.252376168999916, 50.035390965000076 ], [ -125.25195758299999, 50.035399093000123 ], [ -125.251970199, 50.035668705000063 ], [ -125.251551611999929, 50.035676830000064 ], [ -125.251564223999978, 50.03594644100005 ], [ -125.251145632999965, 50.035954565000104 ], [ -125.251158246, 50.036224177000051 ], [ -125.250739651999965, 50.036232299000069 ], [ -125.250744546999925, 50.036336979000097 ], [ -125.250956523999903, 50.036338425000046 ], [ -125.250922853999924, 50.038387594000085 ], [ -125.251259146999985, 50.038381068000042 ], [ -125.25127176299999, 50.038650678000053 ], [ -125.251690376999989, 50.038642553000038 ], [ -125.251766076999985, 50.040260221000125 ], [ -125.250769826999942, 50.040279555000033 ], [ -125.250762083999959, 50.040750623000044 ], [ -125.250713185000038, 50.040750290000034 ], [ -125.250689847000032, 50.042170098000064 ], [ -125.2510171119999, 50.042163749000075 ], [ -125.251042339999969, 50.04270297100004 ], [ -125.25146099, 50.042694847000121 ], [ -125.251464628999912, 50.042772628000108 ], [ -125.250254420000019, 50.043432220000071 ], [ -125.25018442599999, 50.043468718000071 ], [ -125.250019222999953, 50.043467592000091 ], [ -125.250008826999974, 50.043450404000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.997391724360006", "sL_AssetLoss": "465.825", "sL_BldgLoss": "464.61", "sL_StrLoss": "457", "sL_NStrLoss": "7.61", "sL_ContLoss": "1.215", "geom_point": "0101000020E61000007E0A1556894C5FC06111474787044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.194654035999989, 50.033646957000052 ], [ -125.196642977, 50.033661513000055 ], [ -125.19662401699992, 50.034737431000075 ], [ -125.196651879999948, 50.035347872000031 ], [ -125.196653349999963, 50.035380102000055 ], [ -125.196612678999941, 50.03538087200009 ], [ -125.19657961199999, 50.037257292000042 ], [ -125.19548890799993, 50.037249314000078 ], [ -125.19520950799999, 50.03662891400004 ], [ -125.195097794999967, 50.036158821000086 ], [ -125.195151285999913, 50.035341027000086 ], [ -125.195211391999976, 50.034464902000074 ], [ -125.195134089999939, 50.034100216000098 ], [ -125.194960915999943, 50.033871521000037 ], [ -125.194654035999989, 50.033646957000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "0.998820269485754", "sL_AssetLoss": "1608.842", "sL_BldgLoss": "1606.944", "sL_StrLoss": "1593", "sL_NStrLoss": "13.944", "sL_ContLoss": "1.898", "geom_point": "0101000020E61000008F1D33D4D14C5FC089AD45B096044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.19754700699994, 50.034030428000065 ], [ -125.203129948999944, 50.034071048000101 ], [ -125.20310770199994, 50.035343855000065 ], [ -125.20306709599997, 50.037666829000067 ], [ -125.197483715999951, 50.037626207000109 ], [ -125.197523749999931, 50.035351839000043 ], [ -125.19754700699994, 50.034030428000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6781166", "BldgCostT": "4676666", "sL_LossRatio": "0.999014449383876", "sL_AssetLoss": "1617.37", "sL_BldgLoss": "1615.776", "sL_StrLoss": "1604.172", "sL_NStrLoss": "11.604", "sL_ContLoss": "1.594", "geom_point": "0101000020E6100000B5FD0A1DE44E5FC05A6D380BFF074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.23099496899998, 50.061286588000058 ], [ -125.231023020999928, 50.059624430000035 ], [ -125.235089252999941, 50.059652787000033 ], [ -125.235063710999981, 50.059706301000041 ], [ -125.234717422999978, 50.060053805000067 ], [ -125.234098017999941, 50.059966902000106 ], [ -125.233919884999949, 50.060025307000039 ], [ -125.233815410999924, 50.060170598000084 ], [ -125.233833179999948, 50.060583595000068 ], [ -125.234545977999986, 50.06145239300011 ], [ -125.235373512999928, 50.062739797000042 ], [ -125.236438612, 50.063412088000085 ], [ -125.236848915999957, 50.0641156000001 ], [ -125.236894080999903, 50.064483098000053 ], [ -125.236752388999932, 50.064755102000078 ], [ -125.236150893999962, 50.065045593000079 ], [ -125.234710300999907, 50.064695303000086 ], [ -125.23346479199995, 50.064683910000063 ], [ -125.232733799999892, 50.064562797000086 ], [ -125.229712106999969, 50.063587203000061 ], [ -125.229124703999972, 50.063265408000056 ], [ -125.22837999799999, 50.062596007000096 ], [ -125.228344909, 50.062155899000075 ], [ -125.22831937899997, 50.062147903000074 ], [ -125.228326701999961, 50.061715567000078 ], [ -125.22940231599999, 50.061723109000098 ], [ -125.229409885999971, 50.061275494000085 ], [ -125.23099496899998, 50.061286588000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37388250", "BldgCostT": "25785000", "sL_LossRatio": "0.998916960237799", "sL_AssetLoss": "10674.585", "sL_BldgLoss": "10663.024", "sL_StrLoss": "10580.294", "sL_NStrLoss": "82.73", "sL_ContLoss": "11.561", "geom_point": "0101000020E61000006A8995D1C84D5FC0AB8FEAE876054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.221437200999944, 50.054938053000065 ], [ -125.221434399999964, 50.054877462000036 ], [ -125.221015636999979, 50.054885479000134 ], [ -125.221003183999969, 50.054615863000024 ], [ -125.220165660999967, 50.054631894000082 ], [ -125.220157013999966, 50.054444587000035 ], [ -125.218479942, 50.054432680000026 ], [ -125.218499036999944, 50.054846630000064 ], [ -125.218515485999959, 50.055203169000073 ], [ -125.217259180999974, 50.055227185000092 ], [ -125.217246749999958, 50.054957568000127 ], [ -125.216827984, 50.054965572000121 ], [ -125.216787591999946, 50.054089278000049 ], [ -125.216489536000012, 50.054087155000055 ], [ -125.216495628999979, 50.053732760000059 ], [ -125.216157144999954, 50.053730347000041 ], [ -125.216180006999977, 50.052401150000051 ], [ -125.215406198999958, 50.052395630000085 ], [ -125.215412172999962, 50.052048669000037 ], [ -125.215111709, 50.05204652500003 ], [ -125.215118732999954, 50.051638656000193 ], [ -125.21484732299993, 50.051636718000076 ], [ -125.214896262999901, 50.048795814000094 ], [ -125.214867337999962, 50.048796366000076 ], [ -125.214852257999979, 50.048468830000068 ], [ -125.213422059999957, 50.048458607000107 ], [ -125.213416282999972, 50.048793342000089 ], [ -125.210043223999918, 50.048769159000045 ], [ -125.210083507999968, 50.047324652000029 ], [ -125.215056963999956, 50.047437485000074 ], [ -125.21640166399996, 50.04946894000004 ], [ -125.217018486999962, 50.050400708000076 ], [ -125.219008858999956, 50.05159439099999 ], [ -125.219016451999948, 50.05090669900008 ], [ -125.218966556999959, 50.050559298000074 ], [ -125.21896626299997, 50.050558455000115 ], [ -125.218831112, 50.050150187000106 ], [ -125.218412399, 50.049292698000038 ], [ -125.218309064999929, 50.049081118000075 ], [ -125.218175979999927, 50.048698062000078 ], [ -125.217977305999938, 50.047917304000123 ], [ -125.217787938999948, 50.0471731230001 ], [ -125.217759996999973, 50.04706335500007 ], [ -125.217683642999958, 50.04693929500008 ], [ -125.217505997999979, 50.046650683000053 ], [ -125.217153454, 50.046200445000025 ], [ -125.217098904999943, 50.046150365000102 ], [ -125.216548496999977, 50.045645244000085 ], [ -125.216298486999904, 50.045415787000053 ], [ -125.215933190999962, 50.045187142000053 ], [ -125.214447475000014, 50.044257185000092 ], [ -125.212602399, 50.041304079000085 ], [ -125.212054586, 50.040446076000052 ], [ -125.210140482999961, 50.040930397000075 ], [ -125.20994973099998, 50.040630543000113 ], [ -125.209634374999922, 50.040134796000125 ], [ -125.209474565999983, 50.039883621000065 ], [ -125.208592855999967, 50.03992377600008 ], [ -125.208572096999973, 50.039471474000059 ], [ -125.209153079999965, 50.039460410000054 ], [ -125.209159938999917, 50.039065032000053 ], [ -125.210229779999935, 50.03907272300011 ], [ -125.210209478999914, 50.038630724000029 ], [ -125.209790851999927, 50.038638699000067 ], [ -125.20976609, 50.038099461000044 ], [ -125.209347468999951, 50.038107435000022 ], [ -125.209335088999978, 50.037837816000028 ], [ -125.208916468999945, 50.037845788000041 ], [ -125.208891717999961, 50.037306550000011 ], [ -125.20847310299996, 50.037314520000038 ], [ -125.208435982999987, 50.036505663000121 ], [ -125.208017374999912, 50.03651363100002 ], [ -125.207992634, 50.035974392000078 ], [ -125.207155426999975, 50.035990324000068 ], [ -125.207167792999925, 50.036259943000111 ], [ -125.20465615199997, 50.036307705000041 ], [ -125.204643799999971, 50.036038085000129 ], [ -125.203806589999957, 50.036053992000127 ], [ -125.20377195899998, 50.035297730000096 ], [ -125.203769549999947, 50.035245132000071 ], [ -125.205862539999913, 50.035205351000023 ], [ -125.205850181999935, 50.034935732000093 ], [ -125.206268775999916, 50.034927772000103 ], [ -125.206256416999935, 50.034658151000031 ], [ -125.206675008999952, 50.034650190000015 ], [ -125.206614198999901, 50.033323890000091 ], [ -125.20739125599998, 50.033323815000116 ], [ -125.208709464999927, 50.033335517000104 ], [ -125.208755593999967, 50.034340739000058 ], [ -125.209174183999963, 50.034332768000056 ], [ -125.209186560999953, 50.034602386000067 ], [ -125.210023741999933, 50.034586440000091 ], [ -125.210011360999914, 50.03431682100004 ], [ -125.210429950999938, 50.034308846000016 ], [ -125.210417566999965, 50.034039227000108 ], [ -125.210658418999941, 50.03403463700014 ], [ -125.210673485999962, 50.033164350000106 ], [ -125.212007231999962, 50.033046844000097 ], [ -125.212037443999947, 50.033051953000111 ], [ -125.21207675299999, 50.033058603000022 ], [ -125.213743674999975, 50.033340484000057 ], [ -125.214153018999951, 50.033409696000064 ], [ -125.215187300999915, 50.033433911000074 ], [ -125.215562207999966, 50.033678887000129 ], [ -125.215655389999966, 50.033910990000024 ], [ -125.215974248999927, 50.034149679000045 ], [ -125.216018789999964, 50.034183011000053 ], [ -125.21693971199997, 50.034812508000073 ], [ -125.217336652999961, 50.034951573000036 ], [ -125.21745209099997, 50.034992009000085 ], [ -125.217520093999951, 50.03527821100004 ], [ -125.218601004999968, 50.035986099000105 ], [ -125.218758996999952, 50.036370600000041 ], [ -125.21996499699999, 50.037085609000073 ], [ -125.220593681999901, 50.038016998000067 ], [ -125.221462187999975, 50.038684902000078 ], [ -125.221765197999943, 50.039182009000065 ], [ -125.221768162999979, 50.039303671000049 ], [ -125.219457597999934, 50.039287290000097 ], [ -125.219493820999972, 50.040072594000044 ], [ -125.219075184999923, 50.040080603000028 ], [ -125.219087617999946, 50.040350219000132 ], [ -125.218836813999971, 50.040355016000035 ], [ -125.218806743, 50.042109771000121 ], [ -125.21862950699996, 50.042076003000048 ], [ -125.215878788999959, 50.041174501000157 ], [ -125.214871509999924, 50.041131701000026 ], [ -125.21461058899996, 50.041244305000127 ], [ -125.214577216999956, 50.041406600000052 ], [ -125.214601743999978, 50.041416918000017 ], [ -125.21555909599999, 50.041819609000072 ], [ -125.215859656999939, 50.04204589700003 ], [ -125.21505860299996, 50.042651173000074 ], [ -125.214887116999975, 50.042705503000079 ], [ -125.214754004999975, 50.042815189000081 ], [ -125.215141384999981, 50.04398730400009 ], [ -125.215156235999928, 50.044006469000124 ], [ -125.215279627, 50.04416561700004 ], [ -125.215435333999963, 50.044366394000107 ], [ -125.215752107999975, 50.044774909000068 ], [ -125.216910994999935, 50.04536451300006 ], [ -125.217323613999923, 50.045888715000039 ], [ -125.217480029999962, 50.046087401000072 ], [ -125.217637486999934, 50.046287398000047 ], [ -125.218566092999978, 50.046727489000041 ], [ -125.218605198999953, 50.046996588000042 ], [ -125.218997099999967, 50.047331302000053 ], [ -125.219623096999953, 50.04813740900002 ], [ -125.219632000999979, 50.048164271000083 ], [ -125.219876827999926, 50.048901544000138 ], [ -125.219929097999938, 50.049058887000065 ], [ -125.220221312999939, 50.049016193000028 ], [ -125.220498386000017, 50.048678606000124 ], [ -125.220567139999957, 50.048754943000041 ], [ -125.220617716, 50.048811093000012 ], [ -125.22040810499999, 50.049436303000078 ], [ -125.219958615999971, 50.049974693000081 ], [ -125.220062291999952, 50.050423316000078 ], [ -125.220306008999941, 50.050840609000019 ], [ -125.220523298000018, 50.050998703000069 ], [ -125.221103091999964, 50.051300488000031 ], [ -125.221396028, 50.05145296000007 ], [ -125.221724485999971, 50.05162390099999 ], [ -125.222320207000024, 50.051827609000085 ], [ -125.223041198999937, 50.051994193000041 ], [ -125.223587387999913, 50.052036907000129 ], [ -125.223887886999961, 50.052166511000038 ], [ -125.224754587999897, 50.053085094000075 ], [ -125.224894196999983, 50.053285759000119 ], [ -125.224884845999966, 50.053835542000066 ], [ -125.224312466999933, 50.053831505000097 ], [ -125.224307240999948, 50.054138555000058 ], [ -125.223914912999959, 50.054135787000064 ], [ -125.223922046999959, 50.054290094000059 ], [ -125.223168465999919, 50.054304537000093 ], [ -125.223165715999968, 50.054465883000077 ], [ -125.222672621999934, 50.054462399000087 ], [ -125.222678232999925, 50.054583785000077 ], [ -125.223096993999903, 50.054575761000059 ], [ -125.223111832999976, 50.054896823000036 ], [ -125.22313438299993, 50.055384608000047 ], [ -125.222715614999956, 50.055392632000114 ], [ -125.222728076999957, 50.05566224800009 ], [ -125.222108989999967, 50.055674107000122 ], [ -125.221471762999911, 50.055686310000048 ], [ -125.221437200999944, 50.054938053000065 ] ], [ [ -125.214831628999974, 50.038918241 ], [ -125.214826762999976, 50.038812516000043 ], [ -125.214408135999975, 50.038820509000075 ], [ -125.214383321999918, 50.038281272000035 ], [ -125.213964699999963, 50.038289262000092 ], [ -125.213927486999978, 50.037480408000121 ], [ -125.213508871999977, 50.037488396000114 ], [ -125.21349647000001, 50.037218778000067 ], [ -125.213077857999963, 50.03722676400011 ], [ -125.213065458999921, 50.036957147000095 ], [ -125.212646846999988, 50.036965131000066 ], [ -125.212634452, 50.036695513000041 ], [ -125.21221584299991, 50.036703496 ], [ -125.21220344799994, 50.036433878000082 ], [ -125.211784841999972, 50.036441860000075 ], [ -125.211772449999927, 50.036172241000024 ], [ -125.211353845999966, 50.036180223000059 ], [ -125.211341455999943, 50.035910603000069 ], [ -125.210922854999964, 50.035918582000065 ], [ -125.210898081999929, 50.03537934400007 ], [ -125.210479484999922, 50.035387321000087 ], [ -125.210491868999938, 50.03565694100007 ], [ -125.210073266999984, 50.035664916000073 ], [ -125.210110414999974, 50.036473773000118 ], [ -125.210529020999985, 50.036465797000062 ], [ -125.210553789999977, 50.037005035000099 ], [ -125.210972401999953, 50.036997058000054 ], [ -125.211009566999962, 50.037805914000138 ], [ -125.211428183999942, 50.037797934000103 ], [ -125.211465354999973, 50.038606790000053 ], [ -125.211883980999971, 50.038598809000035 ], [ -125.211897697999987, 50.038897245000058 ], [ -125.214831628999974, 50.038918241 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8180416", "BldgCostT": "5641666", "sL_LossRatio": "0.998966943549294", "sL_AssetLoss": "2212.851", "sL_BldgLoss": "2210.565", "sL_StrLoss": "2195", "sL_NStrLoss": "15.565", "sL_ContLoss": "2.286", "geom_point": "0101000020E61000007807FC0AE74D5FC080178DE7790C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.221415232999931, 50.103331984000143 ], [ -125.22132389799998, 50.100360062000071 ], [ -125.217399041999954, 50.100205870000117 ], [ -125.217295239999942, 50.099997271000049 ], [ -125.21728010799994, 50.099966788000081 ], [ -125.217014399999982, 50.099159401000094 ], [ -125.216660698999945, 50.098676808000128 ], [ -125.216365925999966, 50.098376035000051 ], [ -125.216021893999965, 50.098024998000028 ], [ -125.215513210999973, 50.097693290000073 ], [ -125.21497700299993, 50.097415292000044 ], [ -125.214401099999947, 50.097172887000092 ], [ -125.213874774999937, 50.097050493000054 ], [ -125.212919501999934, 50.096924111000078 ], [ -125.212683373999965, 50.096836097000057 ], [ -125.212554728999976, 50.096759707000018 ], [ -125.212547620999942, 50.096744742000055 ], [ -125.212359135999947, 50.09634744400006 ], [ -125.212663607999914, 50.096203059000111 ], [ -125.212999321999945, 50.095942980000117 ], [ -125.21334004, 50.09561829000009 ], [ -125.213432782999945, 50.095529896000137 ], [ -125.213910325, 50.09487325800005 ], [ -125.214427919999963, 50.094161493000044 ], [ -125.214659313999931, 50.093674563000064 ], [ -125.214691896999923, 50.093606011000105 ], [ -125.214720391999933, 50.093470365000023 ], [ -125.214793953999944, 50.093120239000044 ], [ -125.214855976999928, 50.092825077000079 ], [ -125.215122523, 50.092826979000037 ], [ -125.21511934499992, 50.093011363000116 ], [ -125.215778608999983, 50.093016062000054 ], [ -125.215753700999954, 50.094462132000068 ], [ -125.217116047999951, 50.094471831000099 ], [ -125.217092821, 50.095822510000055 ], [ -125.219186349999973, 50.095837381000052 ], [ -125.219173405999953, 50.096592224000055 ], [ -125.219148497, 50.098044471000016 ], [ -125.219263285999887, 50.098045285000047 ], [ -125.219244313999937, 50.099151467000041 ], [ -125.221216477999988, 50.099165437000067 ], [ -125.221204546999957, 50.099862948000137 ], [ -125.221334984999928, 50.09986387100011 ], [ -125.221555408999905, 50.09986543000015 ], [ -125.221545006999946, 50.100473702000045 ], [ -125.221647841999967, 50.100474429000094 ], [ -125.221619477999951, 50.102133344000066 ], [ -125.222506212999946, 50.102139611000041 ], [ -125.222494317, 50.102836036000085 ], [ -125.223479218999927, 50.102842988000063 ], [ -125.223471347999933, 50.103304313000088 ], [ -125.221415232999931, 50.103331984000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.998756227596375", "sL_AssetLoss": "715.565", "sL_BldgLoss": "714.675", "sL_StrLoss": "709", "sL_NStrLoss": "5.675", "sL_ContLoss": "0.89", "geom_point": "0101000020E6100000ACB0538B4C4E5FC0891EDF7B0B064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.221302777999938, 50.046117893000101 ], [ -125.220856811999965, 50.04582879600008 ], [ -125.22086678099997, 50.045747596000069 ], [ -125.22134640499992, 50.04584728800009 ], [ -125.22155139799996, 50.045753296000079 ], [ -125.222002403999909, 50.045861499000083 ], [ -125.221700698999939, 50.045642214000047 ], [ -125.221061109999965, 50.045411505000089 ], [ -125.221061752999958, 50.045395934000055 ], [ -125.222127853999936, 50.045403482000062 ], [ -125.222206692000015, 50.045444207000052 ], [ -125.222411496999925, 50.045942712000091 ], [ -125.222580989999983, 50.045958405000128 ], [ -125.223104719999952, 50.045813102000096 ], [ -125.223497993999985, 50.04586871300009 ], [ -125.225242564999931, 50.046509484000083 ], [ -125.225200558999944, 50.048980635000106 ], [ -125.224243207999962, 50.048966306000054 ], [ -125.223169007999971, 50.048700009000093 ], [ -125.222775198999926, 50.048338207000015 ], [ -125.222432296999941, 50.048182998000108 ], [ -125.222036499999945, 50.047785592000118 ], [ -125.221448400999975, 50.046825710000086 ], [ -125.221464091999977, 50.046294499000076 ], [ -125.221935887999948, 50.046194793000112 ], [ -125.221302777999938, 50.046117893000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15055834", "BldgCostT": "10383334", "sL_LossRatio": "0.99674462171583", "sL_AssetLoss": "6512.3", "sL_BldgLoss": "6491.1", "sL_StrLoss": "6340", "sL_NStrLoss": "151.1", "sL_ContLoss": "21.2", "geom_point": "0101000020E61000000C5B7179854D5FC004B35B2E0F094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.209593212999962, 50.06911208700005 ], [ -125.209737311999973, 50.06861870000008 ], [ -125.209799223999937, 50.068273001000058 ], [ -125.209799594999964, 50.068160317000064 ], [ -125.209802483999965, 50.067322852000125 ], [ -125.209806209999982, 50.066259301000066 ], [ -125.209808895999942, 50.066241202000093 ], [ -125.21064069399992, 50.06624717400009 ], [ -125.21068729299999, 50.063557429000092 ], [ -125.216273864999934, 50.063597380000026 ], [ -125.216253412999933, 50.064786298000072 ], [ -125.215371486, 50.065048497000113 ], [ -125.213944711999886, 50.065606786000103 ], [ -125.212510309999956, 50.066632198000072 ], [ -125.212105408999918, 50.067163687000104 ], [ -125.210855048999974, 50.067154724 ], [ -125.210846847999932, 50.067628204000108 ], [ -125.211503401, 50.067632912000136 ], [ -125.211484053999982, 50.068750773000069 ], [ -125.212363092999936, 50.068757070000096 ], [ -125.212660922999973, 50.069588902000071 ], [ -125.212613196999939, 50.07189320100008 ], [ -125.21238621199997, 50.072724989000044 ], [ -125.212395381999968, 50.07326479400006 ], [ -125.212716609999987, 50.074149196000079 ], [ -125.212919851999956, 50.076572205000048 ], [ -125.213012592999974, 50.077677767000111 ], [ -125.211978961999961, 50.077670369000074 ], [ -125.209671798999963, 50.077653820000094 ], [ -125.209288015999959, 50.077651062000058 ], [ -125.209272485999918, 50.077529105000096 ], [ -125.209176512999974, 50.076782204000111 ], [ -125.209164554999973, 50.07675230300007 ], [ -125.208873067999903, 50.076022322000036 ], [ -125.208451426999957, 50.07496627700003 ], [ -125.208390725999919, 50.074814200000034 ], [ -125.2083838, 50.074796907000092 ], [ -125.208148844, 50.074089430000079 ], [ -125.208107532999961, 50.073965173000019 ], [ -125.208075804999936, 50.073869614000053 ], [ -125.208097505999945, 50.073182886000069 ], [ -125.208550868999964, 50.071854372000082 ], [ -125.208757264999946, 50.071249450000082 ], [ -125.208889526999926, 50.070861788000094 ], [ -125.208941831999965, 50.070708447000136 ], [ -125.209294297999961, 50.069675508000067 ], [ -125.209477726999964, 50.069329723000088 ], [ -125.209540599999968, 50.069211236000065 ], [ -125.209593212999962, 50.06911208700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31723584", "BldgCostT": "21878334", "sL_LossRatio": "0.999344900313317", "sL_AssetLoss": "7837.2805", "sL_BldgLoss": "7832.1463", "sL_StrLoss": "7800.2133", "sL_NStrLoss": "31.933", "sL_ContLoss": "5.1342", "geom_point": "0101000020E610000001733E86184E5FC01B89C897ED0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.218566481, 50.090155023000108 ], [ -125.218568319999946, 50.090047911000092 ], [ -125.21648090799999, 50.090033070000032 ], [ -125.21648443499997, 50.089828018000112 ], [ -125.21530434899995, 50.08981961000007 ], [ -125.215260823999969, 50.089625619000095 ], [ -125.215192120999916, 50.089319604000067 ], [ -125.215084325999953, 50.08912121000008 ], [ -125.214661108999934, 50.088342193000116 ], [ -125.2143936, 50.087642687000084 ], [ -125.214400285999915, 50.087418894000045 ], [ -125.214449103999968, 50.085481890000047 ], [ -125.214358505999911, 50.084819600000117 ], [ -125.214089495999957, 50.084274255000096 ], [ -125.21376710399997, 50.083620605000092 ], [ -125.213699708999954, 50.083517066000041 ], [ -125.21223699899997, 50.081270399000033 ], [ -125.21191019099993, 50.080939990000033 ], [ -125.210442698999884, 50.079746016000101 ], [ -125.210443926, 50.079675262000073 ], [ -125.210748506999963, 50.079677447000094 ], [ -125.210756139999916, 50.079236970000146 ], [ -125.213866066999984, 50.079259234000062 ], [ -125.214187588999934, 50.079679397000049 ], [ -125.214858207999924, 50.081213306000038 ], [ -125.215335706999923, 50.08153799200003 ], [ -125.215947378999914, 50.08177729800007 ], [ -125.216872196999986, 50.081831398000084 ], [ -125.217258709999953, 50.081698885000087 ], [ -125.217866398999959, 50.081273089000049 ], [ -125.218309301999952, 50.081156289000035 ], [ -125.219089409, 50.0810794060001 ], [ -125.218880107999951, 50.080786008000132 ], [ -125.21887700299996, 50.080427104000108 ], [ -125.218968510999943, 50.080307509000114 ], [ -125.219244875999934, 50.080239095000124 ], [ -125.220317696, 50.081046596000085 ], [ -125.220782802999949, 50.081127786000103 ], [ -125.221042405999967, 50.081118755000091 ], [ -125.221020311999936, 50.08241049 ], [ -125.22144866, 50.082402291000101 ], [ -125.221436193999963, 50.082132675000011 ], [ -125.222693196999927, 50.082108604000034 ], [ -125.222705670000011, 50.082378219000127 ], [ -125.223233287999918, 50.082368112000019 ], [ -125.22324065399999, 50.081936201000097 ], [ -125.223781995999971, 50.082221598000039 ], [ -125.224299703999975, 50.082849703000115 ], [ -125.224764802999914, 50.082930887000046 ], [ -125.224959889, 50.082918011000068 ], [ -125.225379694999944, 50.082596198000019 ], [ -125.225684809999933, 50.08256339800009 ], [ -125.226335608999975, 50.0826943940001 ], [ -125.227824981999944, 50.083195793000094 ], [ -125.228797344999975, 50.083873848000046 ], [ -125.228776895999928, 50.085081268000074 ], [ -125.223187679999924, 50.085041954000083 ], [ -125.223201056999969, 50.084257703000098 ], [ -125.222608275, 50.084269058000075 ], [ -125.222373966999953, 50.084273546000091 ], [ -125.222361494999916, 50.084003931000062 ], [ -125.220871233999972, 50.084032463000042 ], [ -125.220695754999909, 50.084035822000082 ], [ -125.220692520999933, 50.084224773000123 ], [ -125.220478952999883, 50.084223261000012 ], [ -125.22046984399995, 50.084755377000093 ], [ -125.21966009, 50.084749638000048 ], [ -125.219658108999923, 50.084865235000066 ], [ -125.220883605999973, 50.084841786000013 ], [ -125.22156086199999, 50.084828822000063 ], [ -125.221573329999956, 50.085098437000042 ], [ -125.222411383999926, 50.085082389000071 ], [ -125.222433347999981, 50.08555716700004 ], [ -125.222480980999961, 50.086586774000104 ], [ -125.223007434999914, 50.086590492000035 ], [ -125.22303249299992, 50.085121891000036 ], [ -125.228621719000017, 50.085161213000113 ], [ -125.228591423999902, 50.086949667000056 ], [ -125.228560808999987, 50.088756765000028 ], [ -125.224181344999948, 50.088725978000106 ], [ -125.224156321999928, 50.090194572 ], [ -125.218566481, 50.090155023000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6993834", "BldgCostT": "4823334", "sL_LossRatio": "0.999425489187722", "sL_AssetLoss": "1493.7926", "sL_BldgLoss": "1492.9344", "sL_StrLoss": "1486.0954", "sL_NStrLoss": "6.839", "sL_ContLoss": "0.8582", "geom_point": "0101000020E61000005516C779E64F5FC0813D686E6C0C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.254168516999968, 50.098998649000066 ], [ -125.252045382999967, 50.09898424200005 ], [ -125.249717750999977, 50.098968402000033 ], [ -125.249721518999948, 50.098739818000091 ], [ -125.244597367999958, 50.098704772000097 ], [ -125.244657024999967, 50.095109259000061 ], [ -125.244863607999932, 50.095110677000058 ], [ -125.245707001999946, 50.095116460000078 ], [ -125.245721034, 50.094269484000044 ], [ -125.247498593999964, 50.09428165200007 ], [ -125.247555892999955, 50.094374394000042 ], [ -125.248082696999973, 50.094553794000042 ], [ -125.24852578499997, 50.095057999000112 ], [ -125.248939284999963, 50.095228906000081 ], [ -125.249827409999952, 50.096299904000027 ], [ -125.250099486999943, 50.096420992000056 ], [ -125.250279385999988, 50.096103392000011 ], [ -125.25044569799995, 50.096046394000098 ], [ -125.250661891999954, 50.096186 ], [ -125.250888977999949, 50.096550596000021 ], [ -125.251146204999927, 50.096670209000116 ], [ -125.25162541399996, 50.096463696000065 ], [ -125.251908096999955, 50.096233012000084 ], [ -125.252310906999966, 50.096477908000075 ], [ -125.253545502999913, 50.098369304000094 ], [ -125.254168516999968, 50.098998649000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7136417", "BldgCostT": "4921667", "sL_LossRatio": "0.996562766049924", "sL_AssetLoss": "2956.447", "sL_BldgLoss": "2946.285", "sL_StrLoss": "2864.365", "sL_NStrLoss": "81.92", "sL_ContLoss": "10.162", "geom_point": "0101000020E61000007FCB3193874D5FC082B221E62F074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.210831553999938, 50.061286635000023 ], [ -125.210806760999944, 50.060747400000103 ], [ -125.209969123999912, 50.060763358000045 ], [ -125.209956731999952, 50.060493740000069 ], [ -125.20982993399997, 50.060496155000067 ], [ -125.209836234999926, 50.059810994000046 ], [ -125.209850815999943, 50.05822670500006 ], [ -125.209876018, 50.055491954000026 ], [ -125.20988599699993, 50.054406098000094 ], [ -125.209920478999891, 50.053169987000054 ], [ -125.209947549999953, 50.052199499000061 ], [ -125.213257377999966, 50.052223230000088 ], [ -125.213199518999943, 50.055574553000071 ], [ -125.213502664999936, 50.055568770000079 ], [ -125.213539896999976, 50.056377623000088 ], [ -125.213160608999971, 50.056384858000079 ], [ -125.213136216999942, 50.057797427000061 ], [ -125.211508916999946, 50.057785771000091 ], [ -125.211532791999971, 50.058304878000072 ], [ -125.211951587999962, 50.058296893 ], [ -125.212013601999971, 50.059644981000062 ], [ -125.211594792999961, 50.059652966000058 ], [ -125.211631995999937, 50.060461819000118 ], [ -125.212050810999955, 50.060453834000057 ], [ -125.212088022999922, 50.061262686000077 ], [ -125.210831553999938, 50.061286635000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055166", "BldgCostT": "2796666", "sL_LossRatio": "0.999215131282735", "sL_AssetLoss": "941.0491", "sL_BldgLoss": "940.3105", "sL_StrLoss": "936.0225", "sL_NStrLoss": "4.288", "sL_ContLoss": "0.7386", "geom_point": "0101000020E610000018A44BC5E74E5FC05F1A8E00D10A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.23036150899999, 50.08584443600008 ], [ -125.230364018999978, 50.085695892000039 ], [ -125.230545585999934, 50.085789203000026 ], [ -125.230650493000013, 50.085633997000031 ], [ -125.230399604999945, 50.085044408000016 ], [ -125.230327793999948, 50.084407792000071 ], [ -125.23000868299998, 50.083856601000015 ], [ -125.22968789199993, 50.083880797000049 ], [ -125.229601189999968, 50.083819601000073 ], [ -125.229700676999968, 50.083547493000012 ], [ -125.229941187999913, 50.083308311000025 ], [ -125.229882088999929, 50.082923700000066 ], [ -125.229988692999939, 50.082831211000055 ], [ -125.230280285999939, 50.082789903000041 ], [ -125.231753089999927, 50.08316590400004 ], [ -125.232765602999976, 50.082993508000108 ], [ -125.233351819999911, 50.083305402000072 ], [ -125.233932109999941, 50.08346640100013 ], [ -125.235860981999934, 50.083717004000043 ], [ -125.23598596099994, 50.08378952200006 ], [ -125.235950831, 50.085883386000077 ], [ -125.23036150899999, 50.08584443600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.999065699525258", "sL_AssetLoss": "636.1979", "sL_BldgLoss": "635.6035", "sL_StrLoss": "631.0875", "sL_NStrLoss": "4.516", "sL_ContLoss": "0.5944", "geom_point": "0101000020E6100000B96B2A078A4F5FC0E55694549E0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.240883474, 50.088520748000107 ], [ -125.242604559999947, 50.088532607000076 ], [ -125.242615477999919, 50.08856930000011 ], [ -125.242630008999967, 50.088884102000094 ], [ -125.24249210499994, 50.089245810000122 ], [ -125.242578112999979, 50.089586206000014 ], [ -125.242997923999951, 50.089874257000069 ], [ -125.2434457, 50.090181489000052 ], [ -125.24416178499996, 50.090266993000114 ], [ -125.245798892999986, 50.091459011000026 ], [ -125.246393655999896, 50.092154571000094 ], [ -125.240823528999925, 50.092116290000057 ], [ -125.240883474, 50.088520748000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.998921978008111", "sL_AssetLoss": "332.8318", "sL_BldgLoss": "332.473", "sL_StrLoss": "328.113", "sL_NStrLoss": "4.36", "sL_ContLoss": "0.3588", "geom_point": "0101000020E6100000B8152D06F04D5FC0B1F147EEBC094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.21681309799996, 50.075986392000104 ], [ -125.21635060200002, 50.075671706000016 ], [ -125.215962497999939, 50.075741487000087 ], [ -125.215817618999907, 50.075645995000116 ], [ -125.215700003999956, 50.075188895000082 ], [ -125.215758905, 50.074962389000085 ], [ -125.215641287999958, 50.074812899000051 ], [ -125.215831013999932, 50.074683298000082 ], [ -125.216305609999893, 50.074710298000099 ], [ -125.21676241199999, 50.074583602000054 ], [ -125.217201490999955, 50.074720314000061 ], [ -125.217704489999946, 50.07502510200009 ], [ -125.217705401999936, 50.075339794000044 ], [ -125.217894595999937, 50.07547938900008 ], [ -125.218672602999945, 50.075419610000033 ], [ -125.219394097999924, 50.075586195000021 ], [ -125.218906201999957, 50.075910894000089 ], [ -125.219127604999954, 50.076184399000049 ], [ -125.219194206999987, 50.076993295000079 ], [ -125.219332300999966, 50.07727820700007 ], [ -125.219749991999919, 50.077567295000101 ], [ -125.219817821999968, 50.077671823000074 ], [ -125.217790941999951, 50.077657431000063 ], [ -125.217788415999948, 50.076516205000104 ], [ -125.217242089999957, 50.076490608000043 ], [ -125.217094796999987, 50.076026313000106 ], [ -125.21681309799996, 50.075986392000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7634250", "BldgCostT": "5265000", "sL_LossRatio": "0.996263941379578", "sL_AssetLoss": "3050.541", "sL_BldgLoss": "3039.144", "sL_StrLoss": "2948.214", "sL_NStrLoss": "90.93", "sL_ContLoss": "11.397", "geom_point": "0101000020E610000049F9A46E424C5FC0A7DF958F6A084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.192291683999912, 50.068384760000086 ], [ -125.192279387, 50.068115139000042 ], [ -125.190379685999972, 50.068151017000041 ], [ -125.190027602999962, 50.067568935000047 ], [ -125.189444355999939, 50.066604663000106 ], [ -125.189259293999967, 50.066240944000079 ], [ -125.189248936999931, 50.066013534000056 ], [ -125.189144587999976, 50.066015502000077 ], [ -125.189086678999971, 50.065901686000082 ], [ -125.188908280999925, 50.06537091400002 ], [ -125.188803405, 50.065058879000027 ], [ -125.188757708999958, 50.064922900000035 ], [ -125.188749521999952, 50.064879958000077 ], [ -125.188578910000032, 50.063981201000026 ], [ -125.188469976999968, 50.063570605000073 ], [ -125.188393016999939, 50.063280388000074 ], [ -125.188311929999955, 50.063062827000088 ], [ -125.189532730999943, 50.063039795000066 ], [ -125.189557288999964, 50.063579037000046 ], [ -125.190394985999944, 50.063563227000074 ], [ -125.190407270999955, 50.0638328470001 ], [ -125.192920371999961, 50.063785376000084 ], [ -125.192944967999921, 50.064324618000072 ], [ -125.193363822999956, 50.064316701000038 ], [ -125.193339221999963, 50.063777459000072 ], [ -125.194595768999989, 50.063753699000117 ], [ -125.194608075999938, 50.064023319000114 ], [ -125.195026927999962, 50.064015395000069 ], [ -125.195076167999972, 50.065093877000074 ], [ -125.190887554999989, 50.065173046000083 ], [ -125.190912128999955, 50.065712287000032 ], [ -125.191330996, 50.065704377000017 ], [ -125.191355575, 50.066243619000069 ], [ -125.191774446999958, 50.066235707000089 ], [ -125.191786738999966, 50.066505328000098 ], [ -125.193043359999962, 50.066481584000059 ], [ -125.19306795899999, 50.067020825000036 ], [ -125.193905714999985, 50.067004988000107 ], [ -125.193918019999927, 50.067274608000027 ], [ -125.194755779, 50.067258763000041 ], [ -125.194805019999961, 50.06833724500008 ], [ -125.192291683999912, 50.068384760000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44523417", "BldgCostT": "29231667", "sL_LossRatio": "0.999083990973001", "sL_AssetLoss": "8995.3262", "sL_BldgLoss": "8987.0864", "sL_StrLoss": "8933.7214", "sL_NStrLoss": "53.365", "sL_ContLoss": "8.2398", "geom_point": "0101000020E6100000C2458BBF6F4D5FC09C1B70E9DA054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.215056963999956, 50.047437485000074 ], [ -125.210083507999968, 50.047324652000029 ], [ -125.210043223999918, 50.048769159000045 ], [ -125.207831528999975, 50.048753246000082 ], [ -125.207831683999927, 50.048744357000025 ], [ -125.205937857, 50.048730697000032 ], [ -125.205942043999954, 50.048490378000025 ], [ -125.203018258999975, 50.04846922200008 ], [ -125.203034694999957, 50.047529283000095 ], [ -125.203055791999986, 50.046322722000049 ], [ -125.202182427999986, 50.046339303000089 ], [ -125.202170086999928, 50.046069683000077 ], [ -125.200914005999948, 50.046093520000099 ], [ -125.200926341999946, 50.046363140000011 ], [ -125.200507644999973, 50.046371083000075 ], [ -125.200532311999964, 50.046910323000056 ], [ -125.200113609999917, 50.046918264000062 ], [ -125.200125941999929, 50.047187884000095 ], [ -125.199707238999963, 50.047195824000049 ], [ -125.199731897, 50.047735065000083 ], [ -125.199313188999938, 50.047743003000051 ], [ -125.19931672099996, 50.047820239000039 ], [ -125.199325514999941, 50.048012623000034 ], [ -125.198906804, 50.048020560000104 ], [ -125.198919128999961, 50.04829018100007 ], [ -125.197760846999984, 50.048312128000099 ], [ -125.197887258999955, 50.048200405000053 ], [ -125.198103120999988, 50.047915183000086 ], [ -125.198517251999988, 50.047711414000098 ], [ -125.199839114999975, 50.046311702000068 ], [ -125.200705419, 50.045394311000031 ], [ -125.20394237899994, 50.045929369000092 ], [ -125.204061940999978, 50.043335213000063 ], [ -125.204977357999937, 50.043317817000045 ], [ -125.205005375999974, 50.043929160000062 ], [ -125.205675475999925, 50.043934003000103 ], [ -125.205677088999934, 50.043841455000084 ], [ -125.205839485999931, 50.043842628000043 ], [ -125.205792500999962, 50.042817789000033 ], [ -125.206006560999981, 50.042856075000081 ], [ -125.206155214999981, 50.04281294500008 ], [ -125.206442763999945, 50.042729573000045 ], [ -125.206899572999959, 50.042597124000032 ], [ -125.20779149199997, 50.042338508000078 ], [ -125.20880404899998, 50.042060281000047 ], [ -125.210562108999952, 50.041577159000035 ], [ -125.210140482999961, 50.040930397000075 ], [ -125.212054586, 50.040446076000052 ], [ -125.212602399, 50.041304079000085 ], [ -125.214447475000014, 50.044257185000092 ], [ -125.215933190999962, 50.045187142000053 ], [ -125.216298486999904, 50.045415787000053 ], [ -125.216548496999977, 50.045645244000085 ], [ -125.217098904999943, 50.046150365000102 ], [ -125.217153454, 50.046200445000025 ], [ -125.217505997999979, 50.046650683000053 ], [ -125.217683642999958, 50.04693929500008 ], [ -125.217759996999973, 50.04706335500007 ], [ -125.217787938999948, 50.0471731230001 ], [ -125.217977305999938, 50.047917304000123 ], [ -125.218175979999927, 50.048698062000078 ], [ -125.218309064999929, 50.049081118000075 ], [ -125.218412399, 50.049292698000038 ], [ -125.218831112, 50.050150187000106 ], [ -125.21896626299997, 50.050558455000115 ], [ -125.218966556999959, 50.050559298000074 ], [ -125.219016451999948, 50.05090669900008 ], [ -125.219008858999956, 50.05159439099999 ], [ -125.217018486999962, 50.050400708000076 ], [ -125.21640166399996, 50.04946894000004 ], [ -125.215056963999956, 50.047437485000074 ] ], [ [ -125.204848786999946, 50.044783960000068 ], [ -125.204850783999973, 50.044669496000054 ], [ -125.204620463999944, 50.044673873000136 ], [ -125.204625434999954, 50.044782345000094 ], [ -125.204848786999946, 50.044783960000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.996955702680007", "sL_AssetLoss": "2612.754", "sL_BldgLoss": "2604.8", "sL_StrLoss": "2557", "sL_NStrLoss": "47.8", "sL_ContLoss": "7.954", "geom_point": "0101000020E61000007A55E37C5C4D5FC055D0BC3513074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.209537915999974, 50.060501717000101 ], [ -125.209412429999986, 50.057770719000082 ], [ -125.207550359999985, 50.057757317000089 ], [ -125.20756016199999, 50.057193736000038 ], [ -125.207446391999952, 50.057192915000016 ], [ -125.207508924999942, 50.053597225000019 ], [ -125.207564726999948, 50.053597627000038 ], [ -125.207580677, 50.052680325000054 ], [ -125.207663549999907, 50.052680922000086 ], [ -125.207672203999891, 50.052183126000067 ], [ -125.209947549999953, 50.052199499000061 ], [ -125.209920478999891, 50.053169987000054 ], [ -125.20988599699993, 50.054406098000094 ], [ -125.209876018, 50.055491954000026 ], [ -125.209850815999943, 50.05822670500006 ], [ -125.209836234999926, 50.059810994000046 ], [ -125.20982993399997, 50.060496155000067 ], [ -125.209537915999974, 50.060501717000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "0.996039272502739", "sL_AssetLoss": "2688.395", "sL_BldgLoss": "2677.747", "sL_StrLoss": "2602.937", "sL_NStrLoss": "74.81", "sL_ContLoss": "10.648", "geom_point": "0101000020E6100000922BD41E9F4D5FC0A3742B7CE40A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.214075615999931, 50.086214861000045 ], [ -125.214055730999988, 50.085783406000076 ], [ -125.213776364999944, 50.085781411000035 ], [ -125.213787930999914, 50.085111556000072 ], [ -125.213206085999957, 50.085107398000119 ], [ -125.213237462999928, 50.083291286000062 ], [ -125.210381587999962, 50.083270829000071 ], [ -125.210442698999884, 50.079746016000101 ], [ -125.21191019099993, 50.080939990000033 ], [ -125.21223699899997, 50.081270399000033 ], [ -125.213699708999954, 50.083517066000041 ], [ -125.21376710399997, 50.083620605000092 ], [ -125.214089495999957, 50.084274255000096 ], [ -125.214358505999911, 50.084819600000117 ], [ -125.214449103999968, 50.085481890000047 ], [ -125.214400285999915, 50.087418894000045 ], [ -125.2143936, 50.087642687000084 ], [ -125.214661108999934, 50.088342193000116 ], [ -125.215084325999953, 50.08912121000008 ], [ -125.215192120999916, 50.089319604000067 ], [ -125.215260823999969, 50.089625619000095 ], [ -125.21530434899995, 50.08981961000007 ], [ -125.212793177999941, 50.089801676000064 ], [ -125.212805879999934, 50.089066933000062 ], [ -125.212855333999954, 50.08620613900009 ], [ -125.214075615999931, 50.086214861000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15150083", "BldgCostT": "10448333", "sL_LossRatio": "0.998307574634008", "sL_AssetLoss": "4973.336", "sL_BldgLoss": "4964.919", "sL_StrLoss": "4897.879", "sL_NStrLoss": "67.04", "sL_ContLoss": "8.417", "geom_point": "0101000020E610000067B33401104C5FC099C5383DF7094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.185751160999956, 50.078237654000112 ], [ -125.18658053800003, 50.076941104000063 ], [ -125.186703697999945, 50.07679643200003 ], [ -125.186870251999949, 50.076600749000065 ], [ -125.187518398999956, 50.076115697000098 ], [ -125.187814792999973, 50.075893898000061 ], [ -125.188302301999926, 50.075430015000087 ], [ -125.188495505, 50.075174319000091 ], [ -125.188637629999974, 50.074803163000077 ], [ -125.188613993999965, 50.073687714000101 ], [ -125.188609555999932, 50.073476906000039 ], [ -125.188760115999955, 50.072709361000108 ], [ -125.189060521999963, 50.072237800000075 ], [ -125.189579908999946, 50.071621326000084 ], [ -125.190711259999972, 50.071629656000027 ], [ -125.190658091, 50.074622230000088 ], [ -125.191736659999947, 50.074601862000087 ], [ -125.191773549999951, 50.075410723000111 ], [ -125.190097742999939, 50.075442365000086 ], [ -125.190087660999936, 50.075221131000063 ], [ -125.189435352999951, 50.075216327000057 ], [ -125.189429906999948, 50.075522345000046 ], [ -125.190276019999914, 50.075528576000067 ], [ -125.190229689999953, 50.078134517000095 ], [ -125.190671965999954, 50.078137771000058 ], [ -125.19060806899995, 50.081733334000013 ], [ -125.185151162999958, 50.081693058000077 ], [ -125.185136218999972, 50.081528001000031 ], [ -125.185094388999943, 50.081347031000057 ], [ -125.185030425999955, 50.08107012200005 ], [ -125.185064566999955, 50.07916220700011 ], [ -125.185751160999956, 50.078237654000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16075667", "BldgCostT": "11086667", "sL_LossRatio": "0.99398814518642", "sL_AssetLoss": "7104.962", "sL_BldgLoss": "7062.248", "sL_StrLoss": "6770.378", "sL_NStrLoss": "291.87", "sL_ContLoss": "42.714", "geom_point": "0101000020E610000059CB11F0B34C5FC0BD0D9CF9F6064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.197983723999982, 50.057148073000064 ], [ -125.198021034999982, 50.055028132000096 ], [ -125.192460242999985, 50.054987435000044 ], [ -125.192501786999955, 50.052642979000026 ], [ -125.192751670999925, 50.052604989000024 ], [ -125.193839393999923, 50.052605256000071 ], [ -125.19422198299999, 50.052605342000106 ], [ -125.19465366899999, 50.052605447000118 ], [ -125.195291230999956, 50.05248424400007 ], [ -125.19563770399995, 50.052315954000044 ], [ -125.195672783999939, 50.052291643000061 ], [ -125.195996817999955, 50.052066860000053 ], [ -125.196325354999942, 50.051650313000039 ], [ -125.196363567999967, 50.051590375000075 ], [ -125.196537917999976, 50.051317010000083 ], [ -125.19916687199999, 50.05133619000005 ], [ -125.199127787999913, 50.053560266000041 ], [ -125.203632337999949, 50.053592981000158 ], [ -125.20356949899994, 50.057188669000013 ], [ -125.197983723999982, 50.057148073000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18823417", "BldgCostT": "12981667", "sL_LossRatio": "0.995783840361993", "sL_AssetLoss": "8783.823", "sL_BldgLoss": "8746.789", "sL_StrLoss": "8492.359", "sL_NStrLoss": "254.43", "sL_ContLoss": "37.034", "geom_point": "0101000020E6100000522092A53F4D5FC0515D0A5927094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.207886141999893, 50.077640978000034 ], [ -125.207899451999964, 50.076875616000073 ], [ -125.204986575999953, 50.076854607 ], [ -125.204995259999961, 50.076357078000036 ], [ -125.204777099999959, 50.076355502000091 ], [ -125.204786416, 50.075821874000077 ], [ -125.204554523999931, 50.075820197000105 ], [ -125.204617310999964, 50.072224597000051 ], [ -125.204740561999955, 50.072225488000107 ], [ -125.20477301699998, 50.070366397000093 ], [ -125.205332750999915, 50.070370442000083 ], [ -125.205342612999928, 50.06980510700005 ], [ -125.205221123999934, 50.069804229000098 ], [ -125.2052838499999, 50.066208600000067 ], [ -125.209808895999942, 50.066241202000093 ], [ -125.209806209999982, 50.066259301000066 ], [ -125.209802483999965, 50.067322852000125 ], [ -125.209799594999964, 50.068160317000064 ], [ -125.209799223999937, 50.068273001000058 ], [ -125.209737311999973, 50.06861870000008 ], [ -125.209593212999962, 50.06911208700005 ], [ -125.209540599999968, 50.069211236000065 ], [ -125.209477726999964, 50.069329723000088 ], [ -125.209294297999961, 50.069675508000067 ], [ -125.208941831999965, 50.070708447000136 ], [ -125.208889526999926, 50.070861788000094 ], [ -125.208757264999946, 50.071249450000082 ], [ -125.208550868999964, 50.071854372000082 ], [ -125.208097505999945, 50.073182886000069 ], [ -125.208075804999936, 50.073869614000053 ], [ -125.208107532999961, 50.073965173000019 ], [ -125.208148844, 50.074089430000079 ], [ -125.2083838, 50.074796907000092 ], [ -125.208390725999919, 50.074814200000034 ], [ -125.208451426999957, 50.07496627700003 ], [ -125.208873067999903, 50.076022322000036 ], [ -125.209164554999973, 50.07675230300007 ], [ -125.209176512999974, 50.076782204000111 ], [ -125.209272485999918, 50.077529105000096 ], [ -125.209288015999959, 50.077651062000058 ], [ -125.207886141999893, 50.077640978000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43171418", "BldgCostT": "29301668", "sL_LossRatio": "0.995715719653131", "sL_AssetLoss": "16382.448", "sL_BldgLoss": "16312.261", "sL_StrLoss": "15848.921", "sL_NStrLoss": "463.34", "sL_ContLoss": "70.187", "geom_point": "0101000020E6100000EFD632190E4D5FC0979E1B60070C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.204957953999951, 50.100021005000031 ], [ -125.202844592999966, 50.097278600000045 ], [ -125.202320696999919, 50.096464815000068 ], [ -125.20204020599999, 50.09596029900009 ], [ -125.201860003999968, 50.095473488000039 ], [ -125.201745612999986, 50.09498270600006 ], [ -125.201599814999966, 50.094613085000091 ], [ -125.200476074000036, 50.092933968000104 ], [ -125.200318117999984, 50.092697897000029 ], [ -125.200018022999956, 50.092504012000077 ], [ -125.199924200999959, 50.092443389000096 ], [ -125.196584405999943, 50.092009997000076 ], [ -125.196261469999982, 50.091933896000064 ], [ -125.195993402999974, 50.091839392000075 ], [ -125.195735113999945, 50.091666692000096 ], [ -125.192820192999974, 50.088793778000138 ], [ -125.192692417999979, 50.08866779500012 ], [ -125.192509804999958, 50.088544416000069 ], [ -125.19245534599996, 50.088507647000071 ], [ -125.192414522999954, 50.088480078000018 ], [ -125.191866517, 50.088109794000125 ], [ -125.19165222799991, 50.087990473000097 ], [ -125.191626976999927, 50.087976413000035 ], [ -125.192627698999942, 50.087983759000053 ], [ -125.192635659999894, 50.087534733000034 ], [ -125.196941718999966, 50.087566241000026 ], [ -125.196936697999945, 50.087456451000108 ], [ -125.198193860999964, 50.087432643000092 ], [ -125.198200393999969, 50.087575419000096 ], [ -125.19822515599995, 50.087575599000075 ], [ -125.198222941000012, 50.08770143600001 ], [ -125.198242339999965, 50.087701578000065 ], [ -125.198625254999953, 50.087694323000072 ], [ -125.198625715999938, 50.087704370000083 ], [ -125.200135190999944, 50.087715352000032 ], [ -125.200126579999932, 50.088205573000046 ], [ -125.200745240999964, 50.088193842000052 ], [ -125.200755967, 50.088427958000139 ], [ -125.200862907, 50.088428735000022 ], [ -125.200862332999975, 50.088461473000102 ], [ -125.201176655999959, 50.088455512000074 ], [ -125.20119809199997, 50.088923309000052 ], [ -125.201225591999986, 50.089523428000092 ], [ -125.202407014999949, 50.089531997000087 ], [ -125.202402437999936, 50.089793224000111 ], [ -125.203045405999916, 50.089797881000038 ], [ -125.203038414999966, 50.09019729000007 ], [ -125.203064930999957, 50.090197483000104 ], [ -125.203028834999913, 50.092259669000043 ], [ -125.203087859, 50.093546441000065 ], [ -125.203506966999939, 50.09353848300006 ], [ -125.203531707999957, 50.094077718000051 ], [ -125.203950817999925, 50.094069759000057 ], [ -125.204000311999934, 50.095148229000053 ], [ -125.203581190999927, 50.095156188000075 ], [ -125.203596283999971, 50.095485100000076 ], [ -125.204820290000029, 50.095493950000055 ], [ -125.204811723999953, 50.095984472000048 ], [ -125.20496061599998, 50.095985547000026 ], [ -125.204937775999923, 50.097293408000034 ], [ -125.204949964999955, 50.097558860000085 ], [ -125.205826922999933, 50.097542194000077 ], [ -125.205854119999984, 50.095983086000061 ], [ -125.208598404999947, 50.096002852000062 ], [ -125.208616572999929, 50.094957753000109 ], [ -125.209331848999938, 50.094962894000055 ], [ -125.209347597999937, 50.09405606900004 ], [ -125.209510312999953, 50.094057238000069 ], [ -125.209532366999909, 50.092786971000066 ], [ -125.214855976999928, 50.092825077000079 ], [ -125.214793953999944, 50.093120239000044 ], [ -125.214720391999933, 50.093470365000023 ], [ -125.214691896999923, 50.093606011000105 ], [ -125.214659313999931, 50.093674563000064 ], [ -125.214427919999963, 50.094161493000044 ], [ -125.213910325, 50.09487325800005 ], [ -125.213432782999945, 50.095529896000137 ], [ -125.21334004, 50.09561829000009 ], [ -125.212999321999945, 50.095942980000117 ], [ -125.212663607999914, 50.096203059000111 ], [ -125.212359135999947, 50.09634744400006 ], [ -125.212159865, 50.096862483000081 ], [ -125.212030598999959, 50.096951114000056 ], [ -125.211929300999898, 50.097147890000052 ], [ -125.211842527999949, 50.097165744000058 ], [ -125.21158262199998, 50.097612669000092 ], [ -125.20967410499999, 50.099196147000129 ], [ -125.209358127999948, 50.099535944000074 ], [ -125.209348308999907, 50.099999367000073 ], [ -125.209345199000012, 50.100146482000049 ], [ -125.209321008999936, 50.101056104000023 ], [ -125.20931190499999, 50.101661108000037 ], [ -125.208625108999982, 50.101683106000088 ], [ -125.207975691999977, 50.101642486000088 ], [ -125.207373186, 50.101563505000051 ], [ -125.205914317999969, 50.101043296000121 ], [ -125.205582506999917, 50.100831390000067 ], [ -125.204957953999951, 50.100021005000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.996279680490207", "sL_AssetLoss": "822.51", "sL_BldgLoss": "819.45", "sL_StrLoss": "803", "sL_NStrLoss": "16.45", "sL_ContLoss": "3.06", "geom_point": "0101000020E6100000BAEAAEAA264C5FC005E58DFEDD064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.189169793999923, 50.053149522000041 ], [ -125.191448392999973, 50.052803132000058 ], [ -125.19142333399995, 50.054215581000093 ], [ -125.187392930999977, 50.054185870000012 ], [ -125.187506511999985, 50.054090191000057 ], [ -125.188127284999936, 50.053658791000046 ], [ -125.188142560999907, 50.053649834000041 ], [ -125.188750528999918, 50.053293209000067 ], [ -125.188773616999981, 50.053279707000044 ], [ -125.189169793999923, 50.053149522000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.995937813440321", "sL_AssetLoss": "1395.8", "sL_BldgLoss": "1390.13", "sL_StrLoss": "1353", "sL_NStrLoss": "37.13", "sL_ContLoss": "5.67", "geom_point": "0101000020E6100000E85EB39E524D5FC08BB4E087FB074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.20716115499998, 50.063515347000042 ], [ -125.207148776999986, 50.063245728000069 ], [ -125.206311094999947, 50.063261661000041 ], [ -125.20623686299993, 50.061643950000054 ], [ -125.207074515999963, 50.061628019000061 ], [ -125.20706214099998, 50.061358400000096 ], [ -125.208737437999957, 50.061326519000069 ], [ -125.208725051999977, 50.061056902000097 ], [ -125.209824971, 50.061035957000108 ], [ -125.20982150399999, 50.061412951000122 ], [ -125.209817579999964, 50.061836231000051 ], [ -125.209815010999961, 50.062115563000098 ], [ -125.209612255999943, 50.062119424000031 ], [ -125.209624646999941, 50.062389043000067 ], [ -125.209812529999937, 50.062385464000059 ], [ -125.209810099999984, 50.062649710000123 ], [ -125.209918317999922, 50.062938787000114 ], [ -125.210012814, 50.063191210000092 ], [ -125.209661819999923, 50.063197895000016 ], [ -125.209674212999971, 50.063467513000091 ], [ -125.20716115499998, 50.063515347000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26293334", "BldgCostT": "18133334", "sL_LossRatio": "0.995436601009098", "sL_AssetLoss": "11533.07", "sL_BldgLoss": "11480.44", "sL_StrLoss": "11083.64", "sL_NStrLoss": "396.8", "sL_ContLoss": "52.63", "geom_point": "0101000020E610000002530FC9774B5FC03B1BC950DB024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.18038524399999, 50.026380494000115 ], [ -125.180389046999963, 50.026168908000059 ], [ -125.179661030999938, 50.026163476000079 ], [ -125.179665785999987, 50.025899088000109 ], [ -125.175614890999938, 50.025868772000109 ], [ -125.175641085999928, 50.024419729000016 ], [ -125.174230925999979, 50.024409140000031 ], [ -125.174283613999933, 50.021499269000103 ], [ -125.173821797999949, 50.021507924000083 ], [ -125.173809626999969, 50.0212382980001 ], [ -125.173391141999957, 50.021246140000116 ], [ -125.173354632000013, 50.020437261000126 ], [ -125.174191587999971, 50.020421576000082 ], [ -125.17417941399999, 50.02015195000007 ], [ -125.174597889999944, 50.020144105000035 ], [ -125.174585711999924, 50.019874480000041 ], [ -125.17501073699998, 50.019866511000011 ], [ -125.175020503999988, 50.019326619000047 ], [ -125.174979828999938, 50.019327381000068 ], [ -125.174967651999935, 50.019057754000109 ], [ -125.174549185999936, 50.019065601000115 ], [ -125.174512659999962, 50.018256722000039 ], [ -125.17367574, 50.018272409000083 ], [ -125.173639231999957, 50.017463530000036 ], [ -125.174894586999983, 50.017439998000079 ], [ -125.174906763999957, 50.017709625000137 ], [ -125.17504979899995, 50.017706943000071 ], [ -125.175064445999922, 50.016897104000115 ], [ -125.174870233, 50.016900746000054 ], [ -125.174833704999941, 50.016091867000057 ], [ -125.174889558999908, 50.016090820000066 ], [ -125.176507462, 50.016060472000035 ], [ -125.17652221499999, 50.016386885000031 ], [ -125.17753695899998, 50.016394487000106 ], [ -125.177429372999967, 50.019045156000075 ], [ -125.180606325, 50.01910674300008 ], [ -125.180601582999927, 50.019370690000116 ], [ -125.182421047, 50.019384244000037 ], [ -125.182385332999942, 50.02137636900008 ], [ -125.182363622999958, 50.022587313000066 ], [ -125.18530723399999, 50.02260917800001 ], [ -125.185303454999982, 50.022820765000063 ], [ -125.18603141799997, 50.022826160000129 ], [ -125.185967233999946, 50.026421985000098 ], [ -125.183413534999971, 50.026403039000051 ], [ -125.18038524399999, 50.026380494000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22288917", "BldgCostT": "15371667", "sL_LossRatio": "0.996592573948269", "sL_AssetLoss": "8422.78", "sL_BldgLoss": "8394.08", "sL_StrLoss": "8193.38", "sL_NStrLoss": "200.7", "sL_ContLoss": "28.7", "geom_point": "0101000020E6100000053D8A29C7495FC0AFE7F73FB8014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.148999083999911, 50.015726694000058 ], [ -125.148506519999927, 50.015330802000022 ], [ -125.147417495999917, 50.013509444000107 ], [ -125.150778801999962, 50.013535480000016 ], [ -125.150810992999979, 50.011806356000093 ], [ -125.148259496999955, 50.011786602000058 ], [ -125.148295006999888, 50.009884745000065 ], [ -125.148563192999916, 50.009726496000049 ], [ -125.149834987999952, 50.008793603000079 ], [ -125.150777692999966, 50.008209706000095 ], [ -125.152285918999951, 50.008221356000028 ], [ -125.152282598999989, 50.008147028000039 ], [ -125.153119351999948, 50.008131499000065 ], [ -125.15309525, 50.007592237000026 ], [ -125.153513622999981, 50.007584470000054 ], [ -125.153501569999932, 50.007314840000063 ], [ -125.154756678999988, 50.007291529000106 ], [ -125.154792858999926, 50.008100419000129 ], [ -125.154374482999941, 50.008108192000059 ], [ -125.154398598999975, 50.008647453000066 ], [ -125.153898523999885, 50.008656740000028 ], [ -125.153855087999915, 50.010998569000023 ], [ -125.156406541999942, 50.011018193000055 ], [ -125.15634007599999, 50.014612040000024 ], [ -125.156815647999935, 50.014615691000053 ], [ -125.156797100999952, 50.015619085000097 ], [ -125.156804386999951, 50.015618950000039 ], [ -125.156840612999986, 50.01642783800007 ], [ -125.156782128999936, 50.016428926000124 ], [ -125.156749171999962, 50.018211539000106 ], [ -125.156604784999956, 50.018210431000078 ], [ -125.156591607999957, 50.018923041000029 ], [ -125.153720528999955, 50.018900964000117 ], [ -125.152329785999896, 50.017770395000078 ], [ -125.152085019999944, 50.017279099000149 ], [ -125.151824020999968, 50.01705979900003 ], [ -125.148999083999911, 50.015726694000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9318667", "BldgCostT": "6426667", "sL_LossRatio": "0.994769557865261", "sL_AssetLoss": "4076.902", "sL_BldgLoss": "4055.578", "sL_StrLoss": "3921.938", "sL_NStrLoss": "133.64", "sL_ContLoss": "21.324", "geom_point": "0101000020E61000002B293DF4D94B5FC0687A89B1CC034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.185385026999953, 50.03302570600006 ], [ -125.185405037999971, 50.031905698000052 ], [ -125.183567326999935, 50.031892062000082 ], [ -125.183574722999978, 50.031479011000044 ], [ -125.183109135, 50.031475551000028 ], [ -125.183114744999926, 50.031162412000079 ], [ -125.182715239999965, 50.03115944200006 ], [ -125.182723007000021, 50.030726099000084 ], [ -125.182256748000015, 50.030722631000039 ], [ -125.182321231999978, 50.027126829000046 ], [ -125.183710464999976, 50.027137156 ], [ -125.183703754999925, 50.02698925400005 ], [ -125.184161900999968, 50.026980629000057 ], [ -125.18537788299993, 50.026957727000081 ], [ -125.185386592999961, 50.02714959499999 ], [ -125.187789364999958, 50.027167380000101 ], [ -125.187556306999966, 50.030354392000049 ], [ -125.187612786999978, 50.033042196000018 ], [ -125.185385026999953, 50.03302570600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38437083", "BldgCostT": "26508333", "sL_LossRatio": "0.99548458191106", "sL_AssetLoss": "15989.66", "sL_BldgLoss": "15917.46", "sL_StrLoss": "15447.56", "sL_NStrLoss": "469.9", "sL_ContLoss": "72.2", "geom_point": "0101000020E61000003F7CF4E1744B5FC0AD3573CCA2054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.186339630999967, 50.051028123000073 ], [ -125.186222313000016, 50.050304784000062 ], [ -125.18610221899992, 50.050081476000074 ], [ -125.18609120799999, 50.050061002000092 ], [ -125.185699309999947, 50.049560240000105 ], [ -125.185415392, 50.04919741 ], [ -125.184950192999963, 50.048820886000087 ], [ -125.184662400999969, 50.048650876000124 ], [ -125.184642, 50.048638808000064 ], [ -125.18422609299995, 50.048473894000061 ], [ -125.18350812599999, 50.048255506000011 ], [ -125.182916329999898, 50.04814981500008 ], [ -125.182619994999968, 50.048096893000064 ], [ -125.182123720999982, 50.047977292000077 ], [ -125.181465298999967, 50.047702177000076 ], [ -125.181225611999977, 50.047602007000087 ], [ -125.1807764, 50.047345988000089 ], [ -125.180028907999969, 50.046827103000048 ], [ -125.17973678099996, 50.046534492000035 ], [ -125.179418895999973, 50.046040414000103 ], [ -125.179303404, 50.045866004000089 ], [ -125.178846384999957, 50.0455358540001 ], [ -125.178699702999936, 50.04542989300009 ], [ -125.177336600000018, 50.044597116000048 ], [ -125.176664298999967, 50.043861991000078 ], [ -125.176271806999935, 50.04356419100003 ], [ -125.174873815999916, 50.042892905000066 ], [ -125.174326711999967, 50.042725200000064 ], [ -125.173634199999967, 50.042568894000077 ], [ -125.173627894999981, 50.044074811000051 ], [ -125.173719614999968, 50.044943098000047 ], [ -125.173942004000011, 50.046158496000025 ], [ -125.173846289999915, 50.046237203000011 ], [ -125.173786021999931, 50.046286799000086 ], [ -125.173575784999969, 50.046330102000091 ], [ -125.172960705999941, 50.046371406000105 ], [ -125.172336600999955, 50.046366692000085 ], [ -125.172116480999989, 50.04634249500009 ], [ -125.171963993999924, 50.046278412000049 ], [ -125.171559915999978, 50.045695494000071 ], [ -125.17078697099997, 50.044817596000023 ], [ -125.170736703999935, 50.04466709200009 ], [ -125.171138484999958, 50.044145106000023 ], [ -125.171218582999956, 50.043885800000027 ], [ -125.171278294999979, 50.043369298000059 ], [ -125.1712685, 50.042676092000107 ], [ -125.170258204999953, 50.042804199000024 ], [ -125.170065788999949, 50.042865705000111 ], [ -125.170034067999936, 50.042897421000106 ], [ -125.169319129999934, 50.042717655000075 ], [ -125.169031358999987, 50.042690740000033 ], [ -125.168450908999958, 50.042845622000101 ], [ -125.168400784999989, 50.042648496000034 ], [ -125.167860218999948, 50.041785505000156 ], [ -125.167080207999916, 50.040918104000063 ], [ -125.166808594999949, 50.040473801000061 ], [ -125.166420185999968, 50.039284495000089 ], [ -125.165933482999975, 50.038402998000016 ], [ -125.165624899999955, 50.037445907000127 ], [ -125.165563483999961, 50.036700990000028 ], [ -125.165304954999939, 50.035752303000066 ], [ -125.169016783999936, 50.035780428000102 ], [ -125.16900364699994, 50.036501131000122 ], [ -125.169135323999967, 50.036502126000045 ], [ -125.169125613999981, 50.037034896000108 ], [ -125.169419945999934, 50.037037120000029 ], [ -125.169408411999939, 50.037670227000099 ], [ -125.169737571999917, 50.03767271300007 ], [ -125.169726188999945, 50.038297771000096 ], [ -125.170048799999947, 50.03830020700012 ], [ -125.170039116999988, 50.038832005000074 ], [ -125.170396018999938, 50.038834699000112 ], [ -125.170384478999949, 50.039468783000082 ], [ -125.170651047999968, 50.039470795000071 ], [ -125.170642903999948, 50.039918495000087 ], [ -125.170946864999962, 50.03992078800006 ], [ -125.170936850999965, 50.040471473000089 ], [ -125.171388482999973, 50.04047487800004 ], [ -125.171381656999969, 50.04085038900012 ], [ -125.171657994999975, 50.040852472000054 ], [ -125.171653424999988, 50.041103963000076 ], [ -125.172612241999957, 50.041111184000158 ], [ -125.172593249999949, 50.040690567000041 ], [ -125.173849212999968, 50.040667039000027 ], [ -125.173861392999967, 50.040936664000071 ], [ -125.174280048999961, 50.040928819000023 ], [ -125.174288858999944, 50.041123791000061 ], [ -125.17604394199995, 50.041136960000102 ], [ -125.176028785999989, 50.041975445000105 ], [ -125.176422110999965, 50.041968067000049 ], [ -125.176437785999923, 50.042314620000091 ], [ -125.177160671999957, 50.042320034000042 ], [ -125.177151665999958, 50.042818904000065 ], [ -125.177275597999937, 50.042819832000049 ], [ -125.17726690399995, 50.043301483000022 ], [ -125.177739120999888, 50.043292619000049 ], [ -125.177787936999962, 50.044371117000082 ], [ -125.17820662299998, 50.044363257000086 ], [ -125.17821883, 50.044632882000087 ], [ -125.17863751599999, 50.044625019000108 ], [ -125.178649725999932, 50.044894643000127 ], [ -125.179068415999936, 50.044886781000038 ], [ -125.179080627999909, 50.04515640400011 ], [ -125.17991801, 50.045140672000088 ], [ -125.17978363499999, 50.042174808000105 ], [ -125.180202299999948, 50.042166941000076 ], [ -125.18016565, 50.041358068000079 ], [ -125.180584306999933, 50.041350199000064 ], [ -125.180547649999966, 50.040541327 ], [ -125.180966300999955, 50.040533457000087 ], [ -125.18092964099999, 50.039724585000037 ], [ -125.180510995999967, 50.039732455000063 ], [ -125.180449908999933, 50.038384334000064 ], [ -125.18212443699997, 50.038352848000144 ], [ -125.182161115999989, 50.03916172 ], [ -125.182998391999931, 50.039145967000124 ], [ -125.183010624999923, 50.039415590000068 ], [ -125.183847905999954, 50.039399832000107 ], [ -125.183835668999933, 50.039130208000088 ], [ -125.18509158099999, 50.039106559000089 ], [ -125.185116067999985, 50.039645806000124 ], [ -125.185953352999945, 50.039630033000066 ], [ -125.186014595999964, 50.040978148000065 ], [ -125.18517728899999, 50.040993922000034 ], [ -125.185189533000013, 50.041263545000056 ], [ -125.184770877999966, 50.04127143000008 ], [ -125.184783120999967, 50.041541055000067 ], [ -125.183527144999942, 50.04156470099999 ], [ -125.183514907999935, 50.041295078000104 ], [ -125.181840279999932, 50.041326585000071 ], [ -125.18187695899995, 50.042135456000082 ], [ -125.182295623999963, 50.042127582000028 ], [ -125.182332310999968, 50.042936452000085 ], [ -125.182750982999949, 50.042928577000062 ], [ -125.182812143999968, 50.04427669300005 ], [ -125.183230826999988, 50.044268815000109 ], [ -125.18324306299999, 50.044538439000114 ], [ -125.183661747, 50.044530558000076 ], [ -125.18367398499997, 50.044800182000081 ], [ -125.184092671999935, 50.044792300000026 ], [ -125.184104910999963, 50.045061923000027 ], [ -125.185360978999967, 50.045038270000049 ], [ -125.1853732269999, 50.045307892000039 ], [ -125.185791918999897, 50.04530000500008 ], [ -125.18580071599996, 50.045493637000085 ], [ -125.188278035999971, 50.045511956000013 ], [ -125.188234569999935, 50.04795249500004 ], [ -125.188845420999911, 50.047940972000035 ], [ -125.188857691, 50.048210594000068 ], [ -125.189695120999886, 50.048194790000124 ], [ -125.189719017999963, 50.048719779000137 ], [ -125.190225958999974, 50.048723514000052 ], [ -125.19019243299999, 50.050610357000089 ], [ -125.191487126999959, 50.050619886000121 ], [ -125.191448392999973, 50.052803132000058 ], [ -125.189169793999923, 50.053149522000041 ], [ -125.188991900999923, 50.052941423000064 ], [ -125.18839861, 50.05261699900008 ], [ -125.188199838999978, 50.052553787000143 ], [ -125.187512705999964, 50.05233529900007 ], [ -125.187263391999949, 50.052217501000023 ], [ -125.187032392999967, 50.052018914000065 ], [ -125.186720723999898, 50.051685040000066 ], [ -125.186525409999959, 50.051475801000038 ], [ -125.186363168999932, 50.051173400000103 ], [ -125.186339630999967, 50.051028123000073 ] ], [ [ -125.182676356999977, 50.046438077000033 ], [ -125.18269088, 50.045628243000138 ], [ -125.181198530999922, 50.045656311000123 ], [ -125.181210754999967, 50.045925935000071 ], [ -125.180792057999938, 50.045933806000043 ], [ -125.180804279999947, 50.046203430000034 ], [ -125.180385579999921, 50.046211300000088 ], [ -125.180397799, 50.046480924000058 ], [ -125.180816502999988, 50.046473054000032 ], [ -125.180825561999967, 50.046672876000066 ], [ -125.181663966999949, 50.046679120000107 ], [ -125.181653907999959, 50.046457309000111 ], [ -125.182676356999977, 50.046438077000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.996175816821626", "sL_AssetLoss": "836.78", "sL_BldgLoss": "833.58", "sL_StrLoss": "811", "sL_NStrLoss": "22.58", "sL_ContLoss": "3.2", "geom_point": "0101000020E61000000D0D93C2DF4B5FC04435255987054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.186161601, 50.044213624000051 ], [ -125.18614935, 50.04394400100005 ], [ -125.184055951999937, 50.043983430000033 ], [ -125.183982516999947, 50.042365690000068 ], [ -125.184819848999908, 50.04234992400005 ], [ -125.184807606999954, 50.042080301000063 ], [ -125.186063594999951, 50.042056640000098 ], [ -125.186075844999976, 50.04232626300012 ], [ -125.18649451, 50.042318373000043 ], [ -125.186543521999937, 50.043396864000108 ], [ -125.18738087, 50.043381080000074 ], [ -125.18741764399995, 50.044189948000074 ], [ -125.186161601, 50.044213624000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160584", "BldgCostT": "4938334", "sL_LossRatio": "0.996580013888333", "sL_AssetLoss": "3147.966", "sL_BldgLoss": "3137.2", "sL_StrLoss": "3045.87", "sL_NStrLoss": "91.33", "sL_ContLoss": "10.766", "geom_point": "0101000020E61000005A6EA3E02D4B5FC02B1BCEE3CD014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.171917543999939, 50.012276831000122 ], [ -125.17749780099993, 50.012318754000027 ], [ -125.177432956999894, 50.015914625000036 ], [ -125.174704917999989, 50.015894166000102 ], [ -125.171852261999973, 50.015872700000088 ], [ -125.171912032999941, 50.012580465000035 ], [ -125.171917543999939, 50.012276831000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.996173704026195", "sL_AssetLoss": "815.41", "sL_BldgLoss": "812.29", "sL_StrLoss": "795", "sL_NStrLoss": "17.29", "sL_ContLoss": "3.12", "geom_point": "0101000020E6100000717C27456F4C5FC034E6E05FA5064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.193581819999963, 50.051295370000091 ], [ -125.196537917999976, 50.051317010000083 ], [ -125.196363567999967, 50.051590375000075 ], [ -125.196325354999942, 50.051650313000039 ], [ -125.195996817999955, 50.052066860000053 ], [ -125.195672783999939, 50.052291643000061 ], [ -125.19563770399995, 50.052315954000044 ], [ -125.195291230999956, 50.05248424400007 ], [ -125.19465366899999, 50.052605447000118 ], [ -125.19422198299999, 50.052605342000106 ], [ -125.193839393999923, 50.052605256000071 ], [ -125.192751670999925, 50.052604989000024 ], [ -125.192501786999955, 50.052642979000026 ], [ -125.192523955999931, 50.05139174400005 ], [ -125.193579975999981, 50.051399493000069 ], [ -125.193581819999963, 50.051295370000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14084333", "BldgCostT": "9713333", "sL_LossRatio": "0.99435812406351", "sL_AssetLoss": "5886.34", "sL_BldgLoss": "5853.13", "sL_StrLoss": "5611.8", "sL_NStrLoss": "241.33", "sL_ContLoss": "33.21", "geom_point": "0101000020E6100000CEBA56AD524C5FC07586FB2BD8044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.18950328499993, 50.041170593000075 ], [ -125.189504565999954, 50.041098489000028 ], [ -125.188906465999963, 50.041094077000075 ], [ -125.188970438999945, 50.03749832000004 ], [ -125.18932990899999, 50.037500973000107 ], [ -125.189354407999986, 50.036123226000079 ], [ -125.191015468000018, 50.036135465000037 ], [ -125.191060090999912, 50.033620564000074 ], [ -125.194654035999989, 50.033646957000052 ], [ -125.194960915999943, 50.033871521000037 ], [ -125.195134089999939, 50.034100216000098 ], [ -125.195211391999976, 50.034464902000074 ], [ -125.195151285999913, 50.035341027000086 ], [ -125.195097794999967, 50.036158821000086 ], [ -125.19520950799999, 50.03662891400004 ], [ -125.19548890799993, 50.037249314000078 ], [ -125.194918510999983, 50.03724513800006 ], [ -125.194913627999966, 50.03752165300002 ], [ -125.195613867999938, 50.037526780000093 ], [ -125.195800603999942, 50.037941405000034 ], [ -125.195956490999947, 50.037946136000066 ], [ -125.195948310999981, 50.03840991700006 ], [ -125.195900418999955, 50.041125100000052 ], [ -125.195088724999891, 50.041119161000054 ], [ -125.19508709199998, 50.041211620000091 ], [ -125.18950328499993, 50.041170593000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8296417", "BldgCostT": "5721667", "sL_LossRatio": "0.994416984054357", "sL_AssetLoss": "4189.671", "sL_BldgLoss": "4166.28", "sL_StrLoss": "4043.75", "sL_NStrLoss": "122.53", "sL_ContLoss": "23.391", "geom_point": "0101000020E610000029EB16052A4A5FC0299B28F8DC004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.156501707999922, 50.004858525000067 ], [ -125.162081041999897, 50.004901232000044 ], [ -125.162014995999954, 50.00849713000008 ], [ -125.161130404999966, 50.008490378000069 ], [ -125.161127867999966, 50.008628352000123 ], [ -125.155548079, 50.008585598000124 ], [ -125.155614635999953, 50.004989704000103 ], [ -125.156499157000013, 50.004996501000093 ], [ -125.156501707999922, 50.004858525000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5952250", "BldgCostT": "4105000", "sL_LossRatio": "0.995462563113951", "sL_AssetLoss": "2556.289", "sL_BldgLoss": "2544.69", "sL_StrLoss": "2472.19", "sL_NStrLoss": "72.5", "sL_ContLoss": "11.599", "geom_point": "0101000020E61000007D316B94BB4C5FC063B0C9B7CA054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.19760140299995, 50.046965879000076 ], [ -125.19753982099995, 50.045617776 ], [ -125.195446366999988, 50.045657411000057 ], [ -125.195434061999961, 50.045387790000085 ], [ -125.195015372999961, 50.045395713000055 ], [ -125.194978468999949, 50.044586848000101 ], [ -125.197071877999946, 50.044547222000062 ], [ -125.197059564999947, 50.044277602000129 ], [ -125.196640884999965, 50.04428553000006 ], [ -125.19657933799999, 50.042937424000073 ], [ -125.196998004999941, 50.042929496000035 ], [ -125.19698569300003, 50.042659875000076 ], [ -125.197203359999946, 50.042655753000084 ], [ -125.198241685999932, 50.042636082000087 ], [ -125.198315600999933, 50.044253807000061 ], [ -125.198734278, 50.044245873000136 ], [ -125.198746600999954, 50.044515494000109 ], [ -125.199583960999973, 50.044499620000096 ], [ -125.199596287999924, 50.04476924100004 ], [ -125.200852333999975, 50.044745419000058 ], [ -125.200864668999913, 50.045015039000084 ], [ -125.202539404000021, 50.044983255000083 ], [ -125.202551746999987, 50.045252875000067 ], [ -125.202970431999944, 50.04524492600008 ], [ -125.202945739999947, 50.044705686000022 ], [ -125.203364421999979, 50.044697735000099 ], [ -125.203302683999965, 50.043349635000048 ], [ -125.204061940999978, 50.043335213000063 ], [ -125.20394237899994, 50.045929369000092 ], [ -125.200705419, 50.045394311000031 ], [ -125.199839114999975, 50.046311702000068 ], [ -125.198517251999988, 50.047711414000098 ], [ -125.198103120999988, 50.047915183000086 ], [ -125.197887258999955, 50.048200405000053 ], [ -125.197760846999984, 50.048312128000099 ], [ -125.197244274999932, 50.048321913000059 ], [ -125.197182698999967, 50.046973809000079 ], [ -125.19760140299995, 50.046965879000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "0.99911796373107", "sL_AssetLoss": "498.8457", "sL_BldgLoss": "498.4057", "sL_StrLoss": "495.1007", "sL_NStrLoss": "3.305", "sL_ContLoss": "0.44", "geom_point": "0101000020E6100000B8A4D5564D4D5FC0E9CB98A343054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.207021225999938, 50.042199534000076 ], [ -125.20700885799999, 50.041929915000011 ], [ -125.206171545999965, 50.041945841000079 ], [ -125.206159182999926, 50.041676222 ], [ -125.205740530999918, 50.04168418400009 ], [ -125.205666373, 50.040066465000059 ], [ -125.206085012999964, 50.040058505000026 ], [ -125.206084072999928, 50.040037990000023 ], [ -125.207338465999939, 50.039980890000024 ], [ -125.207340931999937, 50.040034615000053 ], [ -125.208596846999953, 50.040010711000036 ], [ -125.208592855999967, 50.03992377600008 ], [ -125.209474565999983, 50.039883621000065 ], [ -125.209634374999922, 50.040134796000125 ], [ -125.20994973099998, 50.040630543000113 ], [ -125.210140482999961, 50.040930397000075 ], [ -125.210562108999952, 50.041577159000035 ], [ -125.20880404899998, 50.042060281000047 ], [ -125.20779149199997, 50.042338508000078 ], [ -125.206899572999959, 50.042597124000032 ], [ -125.206442763999945, 50.042729573000045 ], [ -125.206155214999981, 50.04281294500008 ], [ -125.206006560999981, 50.042856075000081 ], [ -125.205792500999962, 50.042817789000033 ], [ -125.205777611999935, 50.042493041000093 ], [ -125.20661493299994, 50.042477118000079 ], [ -125.206602567999965, 50.042207499000043 ], [ -125.207021225999938, 50.042199534000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5191000", "BldgCostT": "3580000", "sL_LossRatio": "0.995748991448455", "sL_AssetLoss": "2140.198", "sL_BldgLoss": "2131.1", "sL_StrLoss": "2082.07", "sL_NStrLoss": "49.03", "sL_ContLoss": "9.098", "geom_point": "0101000020E6100000F5DF7B66664A5FC065044CC739004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.162416485999969, 49.999738586000085 ], [ -125.164814616999976, 49.999756850000068 ], [ -125.164748793999976, 50.003352774000049 ], [ -125.159169645, 50.003310203000133 ], [ -125.15918394799999, 50.002534136000122 ], [ -125.159739621, 50.002161103000105 ], [ -125.160911116999955, 50.001194099000088 ], [ -125.161048989999955, 50.000822305000042 ], [ -125.161711597999982, 50.000054707000096 ], [ -125.162416485999969, 49.999738586000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.995153007251255", "sL_AssetLoss": "2599.55", "sL_BldgLoss": "2586.95", "sL_StrLoss": "2493", "sL_NStrLoss": "93.95", "sL_ContLoss": "12.6", "geom_point": "0101000020E610000034D239DC1A4C5FC0DD34A6F5F1034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.187556306999966, 50.030354392000049 ], [ -125.187789364999958, 50.027167380000101 ], [ -125.187903313999982, 50.027168222000093 ], [ -125.187895595999962, 50.027601567000033 ], [ -125.188361823999941, 50.027605011000112 ], [ -125.188356250999973, 50.027918152000062 ], [ -125.188755726999958, 50.027921101000089 ], [ -125.188748377999957, 50.02833415500006 ], [ -125.189213934999913, 50.028337591000096 ], [ -125.189194021, 50.029457605000069 ], [ -125.191031633999941, 50.029471147000017 ], [ -125.190986731999928, 50.032001924000056 ], [ -125.190967834999952, 50.033066943000073 ], [ -125.187612786999978, 50.033042196000018 ], [ -125.187556306999966, 50.030354392000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.995504227675809", "sL_AssetLoss": "1454.7", "sL_BldgLoss": "1448.16", "sL_StrLoss": "1402", "sL_NStrLoss": "46.16", "sL_ContLoss": "6.54", "geom_point": "0101000020E6100000FF06ABB9754B5FC0896DDE7A45024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.17753695899998, 50.016394487000106 ], [ -125.180654631999971, 50.016417782000062 ], [ -125.180606325, 50.01910674300008 ], [ -125.177429372999967, 50.019045156000075 ], [ -125.17753695899998, 50.016394487000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "0.996295843188429", "sL_AssetLoss": "2942.64", "sL_BldgLoss": "2931.74", "sL_StrLoss": "2858", "sL_NStrLoss": "73.74", "sL_ContLoss": "10.9", "geom_point": "0101000020E6100000895E46B15C4C5FC0F5511DDDCEFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.191651510999961, 50.000065745000072 ], [ -125.19166353899999, 49.999386729000072 ], [ -125.190331101999959, 49.999376913000049 ], [ -125.19038837799998, 49.996148897000054 ], [ -125.190691307999913, 49.996246388000046 ], [ -125.193071996999933, 49.996767608000091 ], [ -125.194301412999948, 49.99740990100004 ], [ -125.195466298, 49.998161908000029 ], [ -125.197225895999949, 49.99971999100007 ], [ -125.197236402999948, 49.999759342000075 ], [ -125.197230289999979, 50.0001066660001 ], [ -125.191651510999961, 50.000065745000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18801667", "BldgCostT": "12966667", "sL_LossRatio": "0.995974935357509", "sL_AssetLoss": "8531.54", "sL_BldgLoss": "8497.2", "sL_StrLoss": "8270", "sL_NStrLoss": "227.2", "sL_ContLoss": "34.34", "geom_point": "0101000020E610000086348D9A6D4C5FC06B51D98F98024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.193674698, 50.024203940000092 ], [ -125.193678049999932, 50.024014378000096 ], [ -125.192825575999976, 50.024008119 ], [ -125.192853434999947, 50.022434095000094 ], [ -125.192829873999983, 50.022433922000126 ], [ -125.192837124999969, 50.02202416500004 ], [ -125.192421882999923, 50.022021114000061 ], [ -125.192427613999925, 50.021697458000055 ], [ -125.189330223999903, 50.021755960000107 ], [ -125.189324889999952, 50.021638646000078 ], [ -125.189305704999967, 50.021216713000129 ], [ -125.188887223999984, 50.021224611 ], [ -125.188776919999938, 50.018797999000093 ], [ -125.189195379999944, 50.018790102000011 ], [ -125.189183122999964, 50.018520478000063 ], [ -125.190438493999963, 50.018496778000014 ], [ -125.190463022999936, 50.019036024000044 ], [ -125.192136867999963, 50.019004403000096 ], [ -125.192100043999957, 50.018195534000036 ], [ -125.192518497999956, 50.018187625000046 ], [ -125.192469397999972, 50.017109133000055 ], [ -125.194980057999956, 50.017061649000048 ], [ -125.194967767999941, 50.016792027000044 ], [ -125.19538620900002, 50.016784108000124 ], [ -125.195337045999935, 50.015705618000034 ], [ -125.196224497999964, 50.015688817000083 ], [ -125.1976934, 50.018206193000033 ], [ -125.198164699999921, 50.019375498000066 ], [ -125.198168693999918, 50.020076212000028 ], [ -125.197804913999931, 50.021892093000133 ], [ -125.197307512999913, 50.022619895000069 ], [ -125.196926698999945, 50.023445894000105 ], [ -125.196908384999944, 50.023950105000054 ], [ -125.197184766999911, 50.024229641 ], [ -125.196840179999981, 50.024227123000081 ], [ -125.193674698, 50.024203940000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947917", "BldgCostT": "4791667", "sL_LossRatio": "0.999397159478664", "sL_AssetLoss": "1645.543", "sL_BldgLoss": "1644.551", "sL_StrLoss": "1639", "sL_NStrLoss": "5.551", "sL_ContLoss": "0.992", "geom_point": "0101000020E61000001349B216383C5FC039705A32BF0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.937929111999921, 50.117944839000124 ], [ -124.937959159999949, 50.116657487000047 ], [ -124.93790249199999, 50.116656941 ], [ -124.937986400999975, 50.113061714000075 ], [ -124.938437112999964, 50.113066060000023 ], [ -124.93845091899999, 50.112474224000074 ], [ -124.944043213999947, 50.112527998000118 ], [ -124.9440416299999, 50.112596318000101 ], [ -124.943959784999947, 50.116123233000032 ], [ -124.943565708999984, 50.116119453000074 ], [ -124.943522079999951, 50.117998639000078 ], [ -124.939655086999906, 50.117961472000047 ], [ -124.937929111999921, 50.117944839000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17972750", "BldgCostT": "12395000", "sL_LossRatio": "0.999501947194405", "sL_AssetLoss": "3800.8018", "sL_BldgLoss": "3798.9088", "sL_StrLoss": "3787.1408", "sL_NStrLoss": "11.768", "sL_ContLoss": "1.893", "geom_point": "0101000020E610000027D0F5B763415FC0EFE1DC70690D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.023922301999974, 50.112190566000066 ], [ -125.023854083999964, 50.110572678000082 ], [ -125.02343478099999, 50.110579989 ], [ -125.023418803999931, 50.110200967000083 ], [ -125.018342928999942, 50.110155828000082 ], [ -125.018420472999949, 50.106560511000048 ], [ -125.023686915999932, 50.106607340000039 ], [ -125.023651412999982, 50.105765100000063 ], [ -125.02239223399999, 50.105753926000077 ], [ -125.022425762999902, 50.106549882000117 ], [ -125.020748686999951, 50.10657909300005 ], [ -125.020713327999943, 50.105739004000107 ], [ -125.01981126099993, 50.1057309770001 ], [ -125.019827444999947, 50.104979429000132 ], [ -125.016179068999961, 50.104946886000079 ], [ -125.016228297999959, 50.102669179000038 ], [ -125.016256773999956, 50.101351545000057 ], [ -125.016331020999985, 50.101352209000098 ], [ -125.01637782200001, 50.099186316000043 ], [ -125.01709809599997, 50.099383314000079 ], [ -125.018234595999942, 50.099488709000042 ], [ -125.018537697999946, 50.099726591 ], [ -125.018736603999983, 50.099776412000061 ], [ -125.021229783999971, 50.099886093000059 ], [ -125.022256218, 50.10000289900011 ], [ -125.023273716999967, 50.100254907000114 ], [ -125.023954791999969, 50.100531213000068 ], [ -125.025076380999977, 50.100556901000033 ], [ -125.025810523999922, 50.100742004000082 ], [ -125.026455976999955, 50.100781089000073 ], [ -125.026449524999947, 50.101082769000072 ], [ -125.027229257, 50.101069152000029 ], [ -125.027263410999979, 50.101878095000131 ], [ -125.026432205, 50.101892611000096 ], [ -125.026409108999928, 50.102972401000045 ], [ -125.026470477999965, 50.102971329000077 ], [ -125.026481857999954, 50.10324097700007 ], [ -125.027320334999956, 50.103226334000027 ], [ -125.027344619999937, 50.10380146500011 ], [ -125.027377265000013, 50.104574572000047 ], [ -125.026538764999941, 50.1045892160001 ], [ -125.026550145999963, 50.104858864000057 ], [ -125.02542213599996, 50.10487855300007 ], [ -125.025402820999929, 50.105780619000065 ], [ -125.025330317999988, 50.105779977000076 ], [ -125.025406143999959, 50.107577297000034 ], [ -125.023990864999945, 50.107601986000063 ], [ -125.023979287999907, 50.108141879000051 ], [ -125.025009614999931, 50.108123909000028 ], [ -125.025077865999933, 50.109741796000101 ], [ -125.026335751999966, 50.109719841000086 ], [ -125.026381284999914, 50.110798432000117 ], [ -125.025542673999936, 50.110813069000159 ], [ -125.025588190999912, 50.111891660000033 ], [ -125.025168874999963, 50.111898977000124 ], [ -125.025180251999984, 50.112168624000049 ], [ -125.023922301999974, 50.112190566000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8107916", "BldgCostT": "5591666", "sL_LossRatio": "0.999384736823888", "sL_AssetLoss": "1935.757", "sL_BldgLoss": "1934.566", "sL_StrLoss": "1929", "sL_NStrLoss": "5.566", "sL_ContLoss": "1.191", "geom_point": "0101000020E6100000AE88D493BD3E5FC0604F225F150C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.981299908999972, 50.096942505000122 ], [ -124.98130220299997, 50.096840044000032 ], [ -124.976013613999953, 50.096790970000015 ], [ -124.97601522899997, 50.09671915900001 ], [ -124.976072548999952, 50.094170651000042 ], [ -124.976094476999961, 50.093195619000021 ], [ -124.977860677, 50.093212037000022 ], [ -124.977891787999951, 50.091826261000044 ], [ -124.983481592999979, 50.091878033000057 ], [ -124.983448363999955, 50.093366272000068 ], [ -124.985225425999943, 50.093382672000089 ], [ -124.985292884, 50.093491399000108 ], [ -124.985361581999925, 50.093831792000067 ], [ -124.984964615999928, 50.095008198000087 ], [ -124.985157819, 50.095291602000053 ], [ -124.984864293999948, 50.096312701 ], [ -124.984622590999933, 50.096552012000046 ], [ -124.984235497999947, 50.096684488000079 ], [ -124.984281886999952, 50.095747310000064 ], [ -124.983728897, 50.095586397000019 ], [ -124.983451794, 50.09498818800008 ], [ -124.983263821999941, 50.094838701000064 ], [ -124.98297060499999, 50.094825885000041 ], [ -124.982637485999987, 50.095244596000015 ], [ -124.98257901199996, 50.09552509900012 ], [ -124.982213791999953, 50.096124703000079 ], [ -124.982119288999982, 50.096576192000057 ], [ -124.981998506999957, 50.096704409000083 ], [ -124.981483605000022, 50.096721500000051 ], [ -124.981345889999901, 50.096787011000067 ], [ -124.98130323, 50.096942536 ], [ -124.981299908999972, 50.096942505000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999161921664325", "sL_AssetLoss": "162.276", "sL_BldgLoss": "162.14", "sL_StrLoss": "161", "sL_NStrLoss": "1.14", "sL_ContLoss": "0.136", "geom_point": "0101000020E61000004503C298FE3A5FC05F4E0117810F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.920182117999929, 50.121202196000112 ], [ -124.919431385999957, 50.120988591000085 ], [ -124.919161808999945, 50.120776499000087 ], [ -124.924158904999956, 50.120825430000096 ], [ -124.924152370999948, 50.121101739000053 ], [ -124.925172982999953, 50.121111704000043 ], [ -124.925170818999959, 50.121203307000052 ], [ -124.921925029999898, 50.121306730000079 ], [ -124.920696217999989, 50.121993482000065 ], [ -124.920617591999985, 50.121581095000117 ], [ -124.920182117999929, 50.121202196000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.99957938893544", "sL_AssetLoss": "694.9413", "sL_BldgLoss": "694.649", "sL_StrLoss": "693", "sL_NStrLoss": "1.649", "sL_ContLoss": "0.2923", "geom_point": "0101000020E6100000E383C74C9C425FC014A35B6D4D104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.038355095, 50.129637398000085 ], [ -125.038403986999938, 50.127324442000081 ], [ -125.03843109099995, 50.12604215900005 ], [ -125.044025165999969, 50.126090854000054 ], [ -125.043993400999952, 50.127602412000016 ], [ -125.043639679999941, 50.127639595000048 ], [ -125.043405390999951, 50.127733588000105 ], [ -125.043324106999961, 50.128148095000057 ], [ -125.043091805999921, 50.128277709000059 ], [ -125.042759539999949, 50.12819302900003 ], [ -125.042800972999927, 50.127766966000074 ], [ -125.042804519999962, 50.127762097000058 ], [ -125.042801648999955, 50.127760009000077 ], [ -125.04271848899999, 50.127699509000124 ], [ -125.041596316999943, 50.127962896000042 ], [ -125.040981582999947, 50.128018500000074 ], [ -125.039862982999963, 50.128038400000122 ], [ -125.039357107999962, 50.127975805000048 ], [ -125.039206716999928, 50.12837310000004 ], [ -125.039272887, 50.128623789000102 ], [ -125.039776893999914, 50.128948496000092 ], [ -125.040271, 50.129073812000073 ], [ -125.040358807999922, 50.129163503000029 ], [ -125.040320187999967, 50.12955950200012 ], [ -125.040412270000019, 50.129655339000067 ], [ -125.038355095, 50.129637398000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999450583692846", "sL_AssetLoss": "1028.5461", "sL_BldgLoss": "1027.981", "sL_StrLoss": "1025", "sL_NStrLoss": "2.981", "sL_ContLoss": "0.5651", "geom_point": "0101000020E610000038665DCC643F5FC099991DD23D0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.987770263999934, 50.102929325000098 ], [ -124.9878001, 50.101587633000058 ], [ -124.990814125999989, 50.101615305000074 ], [ -124.99180318399999, 50.102113493000083 ], [ -124.992079600999915, 50.10208079300012 ], [ -124.9923601, 50.101734695000097 ], [ -124.992551602999939, 50.101650688000063 ], [ -124.99288508099994, 50.101634273000066 ], [ -124.993391115999927, 50.101638901000072 ], [ -124.993343768999978, 50.103779840000058 ], [ -124.993311603999985, 50.105234223000082 ], [ -124.987720146999919, 50.105182951000081 ], [ -124.987770263999934, 50.102929325000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999229049740956", "sL_AssetLoss": "954.666", "sL_BldgLoss": "953.93", "sL_StrLoss": "951", "sL_NStrLoss": "2.93", "sL_ContLoss": "0.736", "geom_point": "0101000020E61000000524ED883B405FC02374236E460D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.999844039999985, 50.10485476500002 ], [ -124.999887938999962, 50.102856847000105 ], [ -124.999916704999947, 50.10286410800002 ], [ -125.000277974999946, 50.102812796000073 ], [ -125.001227593999886, 50.102805710000069 ], [ -125.002392913, 50.10290248800009 ], [ -125.002905205999966, 50.102785791000052 ], [ -125.003331597999974, 50.102589190000067 ], [ -125.004482992999954, 50.10269598800005 ], [ -125.005173581999941, 50.102503800000108 ], [ -125.005646796999955, 50.102459590000102 ], [ -125.006018909999966, 50.10230870100002 ], [ -125.007010818999902, 50.101583607000052 ], [ -125.00698448199995, 50.102790852000062 ], [ -125.006940722999943, 50.104796683000068 ], [ -125.005438140999928, 50.104783119000025 ], [ -125.005435468999934, 50.104905422000044 ], [ -125.003587864999986, 50.104888714000026 ], [ -124.999844039999985, 50.10485476500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.998700422773857", "sL_AssetLoss": "151.9725", "sL_BldgLoss": "151.775", "sL_StrLoss": "149.124", "sL_NStrLoss": "2.651", "sL_ContLoss": "0.1975", "geom_point": "0101000020E6100000BBF8B21FEF3B5FC030210F125C0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.938940390999988, 50.119175083000123 ], [ -124.939350610999938, 50.119179034000055 ], [ -124.939313953999914, 50.120751532000014 ], [ -124.93371519099999, 50.120930592000079 ], [ -124.93372462499994, 50.120528038000025 ], [ -124.933757503999942, 50.119125022000013 ], [ -124.938940390999988, 50.119175083000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8748333", "BldgCostT": "6033333", "sL_LossRatio": "0.999539407552077", "sL_AssetLoss": "1951.834", "sL_BldgLoss": "1950.935", "sL_StrLoss": "1947", "sL_NStrLoss": "3.935", "sL_ContLoss": "0.899", "geom_point": "0101000020E610000066F149C427425FC0AF3A38F9290D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.028369962999946, 50.103687702000123 ], [ -125.02840915799996, 50.101851450000019 ], [ -125.030651170999988, 50.101871215000081 ], [ -125.03083919700002, 50.101922690000031 ], [ -125.031768979, 50.102067998000059 ], [ -125.032610519999977, 50.102124897000117 ], [ -125.034323096999955, 50.10199679700002 ], [ -125.035053279999943, 50.102028103000123 ], [ -125.035412690999934, 50.101941190000097 ], [ -125.035675494999964, 50.101568116000081 ], [ -125.035681011999912, 50.101343008000079 ], [ -125.035520002999974, 50.101183511000059 ], [ -125.034619199999923, 50.101046808000021 ], [ -125.033862913999911, 50.100682209000055 ], [ -125.033134, 50.100622413000089 ], [ -125.03257323099993, 50.100450942000059 ], [ -125.032575782999956, 50.100330851000095 ], [ -125.033271077999942, 50.100336960000121 ], [ -125.033279778999926, 50.099927268 ], [ -125.038870640999946, 50.099976226000074 ], [ -125.038798558999986, 50.103389984000039 ], [ -125.038794722999953, 50.103571589000033 ], [ -125.03809937699999, 50.103565516000074 ], [ -125.038090718999968, 50.103975206000086 ], [ -125.033956990999954, 50.103939009000023 ], [ -125.033923944999941, 50.105496006000067 ], [ -125.028332410999951, 50.105446797000084 ], [ -125.028369962999946, 50.103687702000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999499461297056", "sL_AssetLoss": "136.2532", "sL_BldgLoss": "136.185", "sL_StrLoss": "136", "sL_NStrLoss": "0.185", "sL_ContLoss": "0.0682", "geom_point": "0101000020E610000035511939EA415FC05F524A4201104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.030501416999982, 50.124488578000076 ], [ -125.030736870999959, 50.124484459000037 ], [ -125.030744728999949, 50.124670107000149 ], [ -125.030782524999935, 50.125563043000056 ], [ -125.029104793999963, 50.125592383000026 ], [ -125.029059176999937, 50.124513796000102 ], [ -125.030501416999982, 50.124488578000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.999399119581959", "sL_AssetLoss": "725.2691", "sL_BldgLoss": "724.8333", "sL_StrLoss": "721.0833", "sL_NStrLoss": "3.75", "sL_ContLoss": "0.4358", "geom_point": "0101000020E6100000E6F980FE0A3E5FC0A965CEA7CC094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.966481377999926, 50.078549267000035 ], [ -124.966552753999949, 50.075403700000081 ], [ -124.966692107, 50.075486694000062 ], [ -124.967146018, 50.075679708000074 ], [ -124.967918700999974, 50.075924291000028 ], [ -124.968147107000036, 50.075898609000035 ], [ -124.96826271, 50.075850205000066 ], [ -124.968435709999937, 50.07567828300008 ], [ -124.968497896000017, 50.075521610000081 ], [ -124.968511193999944, 50.075368907000055 ], [ -124.968452008999975, 50.075206495000081 ], [ -124.968165107999965, 50.074794698000112 ], [ -124.96813788799993, 50.074576891000028 ], [ -124.968278095999949, 50.074431689000079 ], [ -124.968538386999953, 50.074227301000086 ], [ -124.9686519099999, 50.074092596000035 ], [ -124.969185888999959, 50.073031414000056 ], [ -124.969214901999976, 50.072673810000033 ], [ -124.969172526999941, 50.072570003000102 ], [ -124.969051887999953, 50.072470005000071 ], [ -124.968802045999936, 50.072391959000086 ], [ -124.96983571899996, 50.072374416000031 ], [ -124.969890974999942, 50.073722710000041 ], [ -124.969471979999966, 50.0737298210001 ], [ -124.969505126999977, 50.074538798000056 ], [ -124.969086125999979, 50.074545908000061 ], [ -124.96910381399999, 50.074977675000085 ], [ -124.972150682999967, 50.075006185000092 ], [ -124.972069540999911, 50.078601620000057 ], [ -124.966481377999926, 50.078549267000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999594067531699", "sL_AssetLoss": "543.1938", "sL_BldgLoss": "542.9733", "sL_StrLoss": "542.0113", "sL_NStrLoss": "0.962", "sL_ContLoss": "0.2205", "geom_point": "0101000020E61000007DA388D2FF435FC05B966DAF9E0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.061426155000035, 50.115848099000047 ], [ -125.061414572999922, 50.115578457000041 ], [ -125.060156559999925, 50.115600793000098 ], [ -125.060144985999926, 50.115331151000149 ], [ -125.059725649999947, 50.115338593000018 ], [ -125.059714078999917, 50.115068951000083 ], [ -125.059294744999988, 50.115076392000063 ], [ -125.059260035999941, 50.114267466000079 ], [ -125.060098688999958, 50.114252585000088 ], [ -125.060063966999948, 50.113443658000072 ], [ -125.060483285999936, 50.113436216000096 ], [ -125.060448559999955, 50.112627291000067 ], [ -125.061706494999967, 50.112604953000087 ], [ -125.061718075999977, 50.112874595000065 ], [ -125.062137389999975, 50.112867146000077 ], [ -125.062148974999928, 50.113136787000059 ], [ -125.062568290999948, 50.113129336000043 ], [ -125.062603052999975, 50.113938261000079 ], [ -125.063022376, 50.113930808000092 ], [ -125.063045556999924, 50.114470090000076 ], [ -125.063464884, 50.114462637000074 ], [ -125.063441696999988, 50.113923355000104 ], [ -125.063861018999958, 50.113915899000119 ], [ -125.063837830999915, 50.113376617000057 ], [ -125.063418513, 50.113384072000066 ], [ -125.063372144999988, 50.11230550800007 ], [ -125.064630067999971, 50.11228313900002 ], [ -125.06465326699994, 50.11282242 ], [ -125.065072577999956, 50.112814960000044 ], [ -125.065095781999958, 50.113354242000071 ], [ -125.065515098999981, 50.113346781000089 ], [ -125.065549911999952, 50.114155703000044 ], [ -125.065130587999988, 50.114163165000065 ], [ -125.065176997999927, 50.1152417280001 ], [ -125.06433833199992, 50.115256647000116 ], [ -125.064349929999963, 50.115526288000069 ], [ -125.062672584999945, 50.115556107000025 ], [ -125.062684172999965, 50.115825749000059 ], [ -125.061426155000035, 50.115848099000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18163667", "BldgCostT": "12526667", "sL_LossRatio": "0.999450392317042", "sL_AssetLoss": "4235.5667", "sL_BldgLoss": "4233.2388", "sL_StrLoss": "4222.0388", "sL_NStrLoss": "11.2", "sL_ContLoss": "2.3279", "geom_point": "0101000020E61000000D53BE149C3A5FC02AD0BC56A10E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.91627509599999, 50.119367815000047 ], [ -124.915642696999925, 50.119279498000012 ], [ -124.914997077999956, 50.119587195000086 ], [ -124.914856414999946, 50.119579999000038 ], [ -124.914812601999984, 50.119500307000067 ], [ -124.915104601999985, 50.11915420800009 ], [ -124.91498489199995, 50.118949095000119 ], [ -124.914703776999929, 50.118899296000116 ], [ -124.914379203999943, 50.119165611000021 ], [ -124.914197186999942, 50.119186997000114 ], [ -124.913868805999954, 50.118994707000134 ], [ -124.913254473999984, 50.118339596000041 ], [ -124.912078098999942, 50.117972098000088 ], [ -124.910809806999936, 50.118046202000144 ], [ -124.909327096999974, 50.117990345000095 ], [ -124.911640900999913, 50.11756558400009 ], [ -124.911449182999931, 50.117548517000046 ], [ -124.911107796999929, 50.117518116000049 ], [ -124.910588705999942, 50.117410489000086 ], [ -124.90974259599993, 50.117119787000036 ], [ -124.909657284000033, 50.1170605 ], [ -124.909607804999908, 50.116965691000054 ], [ -124.909580391999967, 50.116592306000044 ], [ -124.909649326999954, 50.11622889500002 ], [ -124.909675723999896, 50.116158451000054 ], [ -124.909756778999949, 50.115942306000093 ], [ -124.909884594999937, 50.115745693000086 ], [ -124.910038494, 50.115625895000065 ], [ -124.910228300999933, 50.115527094000107 ], [ -124.910411404999934, 50.115472298000071 ], [ -124.911029615999951, 50.115352486000099 ], [ -124.911233881999962, 50.115289789000059 ], [ -124.911394199999933, 50.115194309000081 ], [ -124.911691779999927, 50.114855589000115 ], [ -124.912407342999984, 50.113203698000071 ], [ -124.912411113999923, 50.113195001000065 ], [ -124.912428053000028, 50.111156790000031 ], [ -124.912430496999946, 50.110862310000115 ], [ -124.91258704699996, 50.109578935000066 ], [ -124.913765034999983, 50.10959056300004 ], [ -124.913813302999969, 50.107568196000081 ], [ -124.919404964999956, 50.107623222 ], [ -124.919319598, 50.111218460000018 ], [ -124.917932050999966, 50.111204833000109 ], [ -124.917883963999913, 50.113227191000099 ], [ -124.916298755999946, 50.113211601000096 ], [ -124.91626139399996, 50.114780465000095 ], [ -124.91673601699992, 50.114785108000056 ], [ -124.916718555999978, 50.115518600000065 ], [ -124.920812907999931, 50.115558804000088 ], [ -124.920741124999921, 50.118585357000072 ], [ -124.920727636, 50.119154006000031 ], [ -124.920642150999953, 50.119153168 ], [ -124.920605623999961, 50.120692905000055 ], [ -124.91903598899998, 50.120677510000071 ], [ -124.918435795999955, 50.120205293000033 ], [ -124.917330521999986, 50.119846405000033 ], [ -124.91627509599999, 50.119367815000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4695583", "BldgCostT": "3238333", "sL_LossRatio": "0.999395428484043", "sL_AssetLoss": "1038.4214", "sL_BldgLoss": "1037.7936", "sL_StrLoss": "1034.0386", "sL_NStrLoss": "3.755", "sL_ContLoss": "0.6278", "geom_point": "0101000020E61000003AA50F9FEC3C5FC096BEE7F2AC094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.948631797999923, 50.07669981100009 ], [ -124.948638106999908, 50.076426502000025 ], [ -124.947129357999984, 50.076412073000043 ], [ -124.947156623999959, 50.075232574000104 ], [ -124.946633212999956, 50.075227563000034 ], [ -124.946654279999947, 50.074316634000077 ], [ -124.947090917999972, 50.074185997000043 ], [ -124.947606719999968, 50.074114505000068 ], [ -124.948936368, 50.074105516000053 ], [ -124.949690252999957, 50.074100419000068 ], [ -124.949811811999908, 50.074099600000082 ], [ -124.950468395999934, 50.074238814000154 ], [ -124.95112162, 50.074377302000109 ], [ -124.951376469999957, 50.074443797000086 ], [ -124.95269203499997, 50.074786921000054 ], [ -124.954874403999909, 50.0753561020001 ], [ -124.955692849999977, 50.075237405000067 ], [ -124.956654789999973, 50.075097897000113 ], [ -124.957389120999977, 50.075066192000101 ], [ -124.957958600999959, 50.075089613000102 ], [ -124.958263599999924, 50.075074505000067 ], [ -124.958488944999914, 50.075031170000095 ], [ -124.958456764999951, 50.07643846600012 ], [ -124.957001094999896, 50.076424675000077 ], [ -124.956997015999917, 50.076602802000089 ], [ -124.955220975999936, 50.076585949000126 ], [ -124.954223767999935, 50.076576474000042 ], [ -124.954219712999986, 50.076753071000063 ], [ -124.948631797999923, 50.07669981100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38601417", "BldgCostT": "26621667", "sL_LossRatio": "0.99956277915659", "sL_AssetLoss": "8145.5403", "sL_BldgLoss": "8141.9789", "sL_StrLoss": "8126.1139", "sL_NStrLoss": "15.865", "sL_ContLoss": "3.5614", "geom_point": "0101000020E610000089EF7A1FFD425FC01465259C4C0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.041620377999948, 50.120708102000087 ], [ -125.041628601999903, 50.120317657000122 ], [ -125.038148268999933, 50.120287315000098 ], [ -125.038194781999891, 50.11808691699999 ], [ -125.038224263999965, 50.116692032000081 ], [ -125.039475489999916, 50.116702953000114 ], [ -125.039478423999981, 50.116563962000058 ], [ -125.040893831999981, 50.116576300000105 ], [ -125.040889774, 50.116480853000056 ], [ -125.041309124999941, 50.116473479000092 ], [ -125.041297654999966, 50.116203834000068 ], [ -125.04171700299996, 50.116196459000037 ], [ -125.041705532, 50.11592681300008 ], [ -125.04212487700002, 50.115919437000052 ], [ -125.042101929999959, 50.11538014700016 ], [ -125.042521270999927, 50.115372769000061 ], [ -125.04246389399998, 50.114024546000053 ], [ -125.043105259999962, 50.114013258000035 ], [ -125.044560533999942, 50.113987632000068 ], [ -125.044558184999957, 50.113932480000052 ], [ -125.043095409999964, 50.113919778000096 ], [ -125.03921161, 50.113885957000015 ], [ -125.039214146999981, 50.113765814000033 ], [ -125.03857569199999, 50.113760242000055 ], [ -125.038651644999973, 50.110164927 ], [ -125.040221549999927, 50.110178623000081 ], [ -125.040252167999967, 50.108726764000068 ], [ -125.041604809999967, 50.108738546999987 ], [ -125.04161082899999, 50.108452697000075 ], [ -125.043066543999927, 50.1084653590001 ], [ -125.043045921, 50.107980759000085 ], [ -125.040017209999945, 50.107954392000124 ], [ -125.04009303799999, 50.104359049000053 ], [ -125.042082088999962, 50.104376374000033 ], [ -125.044151977999945, 50.104394366000072 ], [ -125.044147127999963, 50.104280428000074 ], [ -125.047081824999921, 50.104228705000075 ], [ -125.047093321999952, 50.104498349000082 ], [ -125.047512565999952, 50.10449095400007 ], [ -125.047524064999919, 50.104760597000094 ], [ -125.047943311999944, 50.104753201 ], [ -125.047954812999933, 50.105022846000047 ], [ -125.04837406199999, 50.105015447000021 ], [ -125.048385566999954, 50.10528509100002 ], [ -125.048669201999985, 50.105280084000064 ], [ -125.04869882399997, 50.103862764000034 ], [ -125.053194761999947, 50.103901523000054 ], [ -125.053420520999936, 50.104106006000059 ], [ -125.053538608999972, 50.104617302000115 ], [ -125.053842795999969, 50.105159904000061 ], [ -125.05347739099993, 50.105481794000077 ], [ -125.053499388999953, 50.105652708000072 ], [ -125.05370508499999, 50.105881997000083 ], [ -125.053609805999912, 50.106262288000032 ], [ -125.052786892999947, 50.106995688000076 ], [ -125.052352686999981, 50.107264907000108 ], [ -125.05226449, 50.107491407000069 ], [ -125.051979302999911, 50.107712101000111 ], [ -125.051579004999979, 50.107844594 ], [ -125.051266616999953, 50.10772489600005 ], [ -125.050871512999947, 50.107317589000033 ], [ -125.050767893999989, 50.10653711200009 ], [ -125.050661093999949, 50.106340609000029 ], [ -125.050438987999939, 50.106336295000091 ], [ -125.050067409999926, 50.106819106000046 ], [ -125.049439284999892, 50.107207892000062 ], [ -125.04951411899999, 50.107935695000052 ], [ -125.049388498999974, 50.108612200000017 ], [ -125.04916620299997, 50.108958297000079 ], [ -125.04874378699999, 50.109217504000057 ], [ -125.046193019000015, 50.109469606000083 ], [ -125.045775584999944, 50.109836997000066 ], [ -125.044840994999959, 50.109564991000092 ], [ -125.04450981199993, 50.109355595000089 ], [ -125.044238619999973, 50.110178806000064 ], [ -125.045097389999952, 50.110307007000053 ], [ -125.045353503999934, 50.110428097000067 ], [ -125.045890980999971, 50.110913701000044 ], [ -125.045687503999929, 50.111034811000117 ], [ -125.045237902999986, 50.111014803000067 ], [ -125.045630204999938, 50.11131389500013 ], [ -125.045561988999907, 50.11136951200011 ], [ -125.044851194, 50.111417892000105 ], [ -125.044942721999945, 50.11163149700009 ], [ -125.045288256999967, 50.111753512000092 ], [ -125.045455021999942, 50.111812400000055 ], [ -125.045757316000021, 50.1120132040001 ], [ -125.046055824999968, 50.111792502000135 ], [ -125.046596702, 50.111711299000035 ], [ -125.047065318999927, 50.110875307000079 ], [ -125.046724697999977, 50.110745707000021 ], [ -125.046802298999964, 50.110618907000088 ], [ -125.047630210999955, 50.110037786000071 ], [ -125.048086996, 50.109921007000054 ], [ -125.048801219000012, 50.109909703000049 ], [ -125.049515614, 50.110274298000078 ], [ -125.05019100599992, 50.110361091000037 ], [ -125.051042996000021, 50.110651703000038 ], [ -125.05322458799999, 50.11036109200009 ], [ -125.053391210999962, 50.110304192000115 ], [ -125.053643603999959, 50.110003684000048 ], [ -125.053869788999961, 50.110034994000031 ], [ -125.054459695999924, 50.11044800500008 ], [ -125.055586391999938, 50.110626014000076 ], [ -125.055851610999966, 50.110584692000025 ], [ -125.056068894999981, 50.110436606000057 ], [ -125.056336388999981, 50.109865490000068 ], [ -125.056224508999961, 50.109201800000065 ], [ -125.056305507, 50.108814399000032 ], [ -125.056816714999982, 50.108318798000056 ], [ -125.058275803999905, 50.107788984000059 ], [ -125.05879377299999, 50.107704308000066 ], [ -125.059659911999944, 50.107711709000121 ], [ -125.059585622999975, 50.111307049000125 ], [ -125.059387229999956, 50.111305355000042 ], [ -125.059378241999951, 50.111740254000047 ], [ -125.059093880999967, 50.111737824000087 ], [ -125.059087448999961, 50.112048860000094 ], [ -125.058729945999957, 50.112045805000072 ], [ -125.058722157999981, 50.112422369000072 ], [ -125.058356879999963, 50.112419245000062 ], [ -125.058342484999955, 50.113114977000109 ], [ -125.056272382999978, 50.11309725400011 ], [ -125.056290089999948, 50.113510579000057 ], [ -125.055032128, 50.113532858000056 ], [ -125.055013013999925, 50.113086453000015 ], [ -125.052749988999935, 50.113067008000044 ], [ -125.052751590999932, 50.112989995000106 ], [ -125.051444570999962, 50.112978744000088 ], [ -125.051442005999888, 50.11310174900008 ], [ -125.046319063999988, 50.113057497000057 ], [ -125.046305870999944, 50.113687029000026 ], [ -125.04706499699995, 50.113673643000013 ], [ -125.047076496999964, 50.113943287000069 ], [ -125.047495824999913, 50.113935890000057 ], [ -125.04750732799999, 50.11420553500006 ], [ -125.04792665599993, 50.114198136 ], [ -125.047938161999923, 50.114467781000059 ], [ -125.048776823999944, 50.114452981000071 ], [ -125.048822866999927, 50.115531555000089 ], [ -125.047564845999929, 50.11555375300005 ], [ -125.047553341999929, 50.115284110000083 ], [ -125.046714664999982, 50.11529890200007 ], [ -125.046703166999961, 50.115029258000035 ], [ -125.046283828999918, 50.115036652000114 ], [ -125.046272333, 50.114767007000069 ], [ -125.045433664999933, 50.114781790000038 ], [ -125.045445155999985, 50.11505143400008 ], [ -125.045025819000017, 50.115058822000066 ], [ -125.045037308999952, 50.11532846700004 ], [ -125.043779289999989, 50.115350624000037 ], [ -125.043813739999933, 50.116159558000049 ], [ -125.043394393999904, 50.116166941000067 ], [ -125.043412754999963, 50.116598210000063 ], [ -125.045071334999975, 50.11661260500005 ], [ -125.045069443, 50.116702756000102 ], [ -125.047239155999975, 50.11672155100009 ], [ -125.047236430999931, 50.116851709000073 ], [ -125.048867402999974, 50.116865808000099 ], [ -125.04879224699998, 50.120461098000057 ], [ -125.04722027499993, 50.120447509000037 ], [ -125.047213800999927, 50.12075663600011 ], [ -125.041620377999948, 50.120708102000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17808417", "BldgCostT": "12281667", "sL_LossRatio": "0.998945431933388", "sL_AssetLoss": "4304.7008", "sL_BldgLoss": "4300.1612", "sL_StrLoss": "4271.2522", "sL_NStrLoss": "28.909", "sL_ContLoss": "4.5396", "geom_point": "0101000020E61000003F0BBE407B3E5FC03B7DB1B546094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.97761415799999, 50.079407351000036 ], [ -124.977634608999935, 50.078496301000079 ], [ -124.977252, 50.078492744000037 ], [ -124.977272744999965, 50.077568949000039 ], [ -124.975515690999899, 50.077552602000019 ], [ -124.975578973999916, 50.074739083000068 ], [ -124.975538767, 50.074738709000087 ], [ -124.975544295999924, 50.074492872000114 ], [ -124.974375337999973, 50.074481980000044 ], [ -124.974391900999962, 50.073746436000043 ], [ -124.973245807999916, 50.073735745000107 ], [ -124.973254005999962, 50.073935418000076 ], [ -124.972835007999933, 50.073942543000037 ], [ -124.972846075999939, 50.074212200000098 ], [ -124.972427077999939, 50.074219324000097 ], [ -124.972438143999952, 50.074488981000037 ], [ -124.972019140999947, 50.074496103000136 ], [ -124.9720302059999, 50.07476576100008 ], [ -124.970773191999953, 50.074787115000056 ], [ -124.97074002199993, 50.073978140000079 ], [ -124.971159019999973, 50.073971024000031 ], [ -124.971136901999969, 50.073431707000097 ], [ -124.971974888, 50.073417470000045 ], [ -124.971963825, 50.073147812000038 ], [ -124.972755277999937, 50.073134360000068 ], [ -124.972758343999942, 50.072998358000056 ], [ -124.971190006999933, 50.072983701000041 ], [ -124.971203686999928, 50.07237803000006 ], [ -124.97064342399996, 50.072372789000056 ], [ -124.970664556999949, 50.071437628000069 ], [ -124.969161703999958, 50.071423555000074 ], [ -124.969403314999937, 50.071138203000032 ], [ -124.969920890999958, 50.070369910000053 ], [ -124.970452682999962, 50.069402109000045 ], [ -124.970549170999945, 50.069278791000023 ], [ -124.970671284000019, 50.069122687000061 ], [ -124.970990162999897, 50.068801067000081 ], [ -124.971090156999935, 50.068517957000054 ], [ -124.971247248999958, 50.068056413000136 ], [ -124.971351539999958, 50.067953996000014 ], [ -124.971539369999945, 50.067849584000079 ], [ -124.971574598999922, 50.067849912000028 ], [ -124.97157505399997, 50.067829746000072 ], [ -124.971683368999962, 50.06776953400005 ], [ -124.971825493999987, 50.067690523000124 ], [ -124.972925755999967, 50.067344779000067 ], [ -124.973885844999984, 50.06708040200008 ], [ -124.974473326999885, 50.066861137000096 ], [ -124.974483936999917, 50.066855111000045 ], [ -124.975003987999955, 50.066560395000067 ], [ -124.975650618999978, 50.066256242000051 ], [ -124.975868175999949, 50.066023611000048 ], [ -124.976036284999978, 50.065811635000031 ], [ -124.976587738999982, 50.065116216000042 ], [ -124.976967981999977, 50.064636708000073 ], [ -124.977346113999943, 50.064268057000049 ], [ -124.98037179799995, 50.064296148000082 ], [ -124.980350042999973, 50.065268207000038 ], [ -124.980316617999932, 50.065299111000066 ], [ -124.980297994999901, 50.065287789000109 ], [ -124.980059409, 50.065237908000078 ], [ -124.979405285999988, 50.065284901000027 ], [ -124.978886700999936, 50.06631030000009 ], [ -124.978538604999983, 50.066657797000055 ], [ -124.978148787999942, 50.067374209000114 ], [ -124.977880482999979, 50.067630598000044 ], [ -124.976405211999975, 50.068456596000082 ], [ -124.976160885999931, 50.068992096000095 ], [ -124.97551630000001, 50.06926421400005 ], [ -124.975191090999942, 50.069853807000094 ], [ -124.974626412999939, 50.070051690000092 ], [ -124.9746523, 50.070366490000019 ], [ -124.974333106999907, 50.071118485000092 ], [ -124.974635989999982, 50.07132071400008 ], [ -124.97495668699996, 50.071288007000064 ], [ -124.975525477999966, 50.071521501000078 ], [ -124.976240102999924, 50.071616909000028 ], [ -124.977075893999981, 50.071844812000045 ], [ -124.977506200999954, 50.072458608000076 ], [ -124.978131288999975, 50.072699301000078 ], [ -124.978990121999928, 50.072864504000108 ], [ -124.97925402, 50.072843201000119 ], [ -124.979653201999895, 50.072665192000059 ], [ -124.979907591999932, 50.072732093000127 ], [ -124.98003462099993, 50.074114997000088 ], [ -124.980419980999926, 50.074342895000065 ], [ -124.980784702999969, 50.074733088000123 ], [ -124.980983496999968, 50.07479149200001 ], [ -124.981444818999975, 50.074757299000048 ], [ -124.981642900999987, 50.074825686000054 ], [ -124.981745582999963, 50.074968104000092 ], [ -124.981709381999934, 50.075121904000049 ], [ -124.981342781999899, 50.075388202000056 ], [ -124.981512989999942, 50.075772792000116 ], [ -124.980952397999914, 50.076402286000111 ], [ -124.980940203000017, 50.077131501000075 ], [ -124.98127728499999, 50.077179908000076 ], [ -124.98147839799999, 50.076942096000018 ], [ -124.982199102999957, 50.076803902000101 ], [ -124.982436420999974, 50.07679109900004 ], [ -124.982642987999924, 50.077038898000055 ], [ -124.98272211299998, 50.07764990600009 ], [ -124.982520417999979, 50.077823602000066 ], [ -124.982195212999954, 50.078387589000044 ], [ -124.982150118999954, 50.078693799000057 ], [ -124.983198680999919, 50.079027092000061 ], [ -124.983211252999951, 50.079064357000064 ], [ -124.983202437999964, 50.079459139000114 ], [ -124.97761415799999, 50.079407351000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23102167", "BldgCostT": "13986667", "sL_LossRatio": "0.998250396302851", "sL_AssetLoss": "2980.675", "sL_BldgLoss": "2975.46", "sL_StrLoss": "2940.436", "sL_NStrLoss": "35.024", "sL_ContLoss": "5.215", "geom_point": "0101000020E61000006988F050103B5FC0D9EF8104E20F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.920056098999936, 50.125764013000058 ], [ -124.920290992999952, 50.12534670600008 ], [ -124.920763020999928, 50.123134899000064 ], [ -124.920774805999955, 50.122405711000077 ], [ -124.920696217999989, 50.121993482000065 ], [ -124.921925029999898, 50.121306730000079 ], [ -124.925170818999959, 50.121203307000052 ], [ -124.925088045999956, 50.124706884000091 ], [ -124.924867250999966, 50.124704728000061 ], [ -124.924855331999964, 50.125209086000083 ], [ -124.924993585999957, 50.125206793000132 ], [ -124.925004403999935, 50.12547645700009 ], [ -124.925843321999935, 50.125462543000076 ], [ -124.925875794999911, 50.12627153200004 ], [ -124.924456117999952, 50.126295076000098 ], [ -124.924448735999988, 50.126607295000021 ], [ -124.923358007999965, 50.126596638000116 ], [ -124.923356495999968, 50.126660523000027 ], [ -124.92017307399999, 50.12662935900002 ], [ -124.920020578999967, 50.126278095000025 ], [ -124.920056098999936, 50.125764013000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.99942377093278", "sL_AssetLoss": "1354.6696", "sL_BldgLoss": "1353.889", "sL_StrLoss": "1349", "sL_NStrLoss": "4.889", "sL_ContLoss": "0.7806", "geom_point": "0101000020E61000006D1F8F6CF03B5FC0542803EE960F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.93371519099999, 50.120930592000079 ], [ -124.939313953999914, 50.120751532000014 ], [ -124.939266797999963, 50.122774233000051 ], [ -124.93367324899998, 50.122720218000026 ], [ -124.93371519099999, 50.120930592000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6471834", "BldgCostT": "4463334", "sL_LossRatio": "0.9993091482127", "sL_AssetLoss": "1538.5355", "sL_BldgLoss": "1537.4726", "sL_StrLoss": "1532.0216", "sL_NStrLoss": "5.451", "sL_ContLoss": "1.0629", "geom_point": "0101000020E6100000366DA55B9F395FC0A8222E63370B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.896614301999961, 50.086626702000025 ], [ -124.89591139099997, 50.086529794000128 ], [ -124.895359880999948, 50.086543019000054 ], [ -124.895405925999938, 50.084644880000099 ], [ -124.900994752999935, 50.084700843000086 ], [ -124.900994693, 50.084703366000063 ], [ -124.903391759999948, 50.084727280000017 ], [ -124.903327538999946, 50.087393990000081 ], [ -124.903305172999964, 50.088322616000049 ], [ -124.903137357999981, 50.088320943000106 ], [ -124.903091976999988, 50.090204717000091 ], [ -124.903036855999972, 50.090204167000095 ], [ -124.902996076999969, 50.091896715000082 ], [ -124.900204575, 50.091868854000069 ], [ -124.899360592999969, 50.091420603000088 ], [ -124.89927117399999, 50.09126109400011 ], [ -124.899345119999964, 50.090647203000131 ], [ -124.899178197999959, 50.090335302000092 ], [ -124.899117800999989, 50.089841085000067 ], [ -124.899329812999937, 50.088831407000036 ], [ -124.899315314999981, 50.088233072 ], [ -124.899310418999946, 50.088030997000089 ], [ -124.899201495999961, 50.087744709000077 ], [ -124.898953491999976, 50.087469798000043 ], [ -124.898755403999971, 50.087401511000031 ], [ -124.898528397999925, 50.087333105000084 ], [ -124.898197793999941, 50.087076692000018 ], [ -124.897311721, 50.086938604000174 ], [ -124.896614301999961, 50.086626702000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999074596774193", "sL_AssetLoss": "992", "sL_BldgLoss": "991.082", "sL_StrLoss": "985", "sL_NStrLoss": "6.082", "sL_ContLoss": "0.918", "geom_point": "0101000020E61000001B875D88D3395FC00D899C3A66084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.901083427999964, 50.067422108000031 ], [ -124.901090881999949, 50.067113115000105 ], [ -124.900678832999972, 50.067108997000034 ], [ -124.900765587999928, 50.063513563000065 ], [ -124.905223097999965, 50.06355802500007 ], [ -124.904657521, 50.064205401000038 ], [ -124.90423928200002, 50.064545694000046 ], [ -124.90422309299997, 50.064842014000135 ], [ -124.904508316999909, 50.065008595000116 ], [ -124.904713617999946, 50.065257799000051 ], [ -124.905191206999973, 50.065330493000026 ], [ -124.905400110999949, 50.065282093000064 ], [ -124.905819287999961, 50.064978702000133 ], [ -124.905886222, 50.064535805000062 ], [ -124.906199000999962, 50.063946089000133 ], [ -124.906345053999985, 50.063851441000061 ], [ -124.906344410999935, 50.063878249000048 ], [ -124.906756431999966, 50.063882345000081 ], [ -124.906747331999966, 50.064261557000123 ], [ -124.906608589999934, 50.064416107000049 ], [ -124.906727702999916, 50.064612692000061 ], [ -124.90673868099995, 50.064622068000098 ], [ -124.906670148999964, 50.067477783000108 ], [ -124.901083427999964, 50.067422108000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.99656530699765", "sL_AssetLoss": "3073.346", "sL_BldgLoss": "3062.79", "sL_StrLoss": "2993", "sL_NStrLoss": "69.79", "sL_ContLoss": "10.556", "geom_point": "0101000020E610000002A90B80CA3D5FC063C7D2C94A074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.96115247299997, 50.059205975000069 ], [ -124.961162416999954, 50.058769878000071 ], [ -124.960313367999944, 50.058761854000082 ], [ -124.960395402999964, 50.055166335000102 ], [ -124.962266305999989, 50.055184007000065 ], [ -124.962268933999908, 50.055068581000036 ], [ -124.964361992999912, 50.055088314000031 ], [ -124.964362852999969, 50.055050533000056 ], [ -124.964935104999938, 50.055055921000083 ], [ -124.964929452999954, 50.054917582000037 ], [ -124.965348285999966, 50.054910489000093 ], [ -124.96529319499993, 50.053562188000107 ], [ -124.96654965799992, 50.053540899000048 ], [ -124.966560681999951, 50.053810559000055 ], [ -124.966979505999987, 50.053803459000044 ], [ -124.967012588000017, 50.054612440000056 ], [ -124.96659375899999, 50.054619538000097 ], [ -124.966604784999916, 50.054889199000073 ], [ -124.966185951999975, 50.054896297 ], [ -124.96619296099999, 50.055067754000085 ], [ -124.96994813099991, 50.055102995000048 ], [ -124.969940970999914, 50.05541974100008 ], [ -124.97066042199999, 50.055426478000108 ], [ -124.97060096, 50.058058755000097 ], [ -124.97057919699995, 50.059022004000063 ], [ -124.966744438999939, 50.058986040000043 ], [ -124.966738258999968, 50.059258601000089 ], [ -124.963589395999932, 50.059228969000095 ], [ -124.96115247299997, 50.059205975000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.99916242407603", "sL_AssetLoss": "1005.282", "sL_BldgLoss": "1004.44", "sL_StrLoss": "999", "sL_NStrLoss": "5.44", "sL_ContLoss": "0.842", "geom_point": "0101000020E61000008CF67821DD385FC08BD9BBD4C2084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.888139993999943, 50.069171600000082 ], [ -124.887649289, 50.069124609000028 ], [ -124.8869857899999, 50.069323996000037 ], [ -124.886538487999928, 50.06964730100006 ], [ -124.886299505999958, 50.069632984000052 ], [ -124.886156006999954, 50.069527589000067 ], [ -124.885891996999987, 50.069540387000075 ], [ -124.885673189999935, 50.069651511000068 ], [ -124.885532283999908, 50.069996205000052 ], [ -124.885406704999966, 50.070024685000114 ], [ -124.885208684999952, 50.069947805 ], [ -124.884725116999959, 50.069371007000065 ], [ -124.88465152, 50.06891239900007 ], [ -124.884807905999978, 50.068658907000064 ], [ -124.88537069799996, 50.068352693000037 ], [ -124.885633201999951, 50.067943911000057 ], [ -124.886272580999972, 50.067492398000077 ], [ -124.886331680999945, 50.066870095000063 ], [ -124.886529098999915, 50.066553551000077 ], [ -124.891349798999926, 50.066602249 ], [ -124.891262296999969, 50.070197662000076 ], [ -124.890179246999978, 50.070186739000121 ], [ -124.890173265999977, 50.070432188000083 ], [ -124.889127414999976, 50.070421630000048 ], [ -124.889121737999986, 50.07065441400006 ], [ -124.888261497999963, 50.070645723000034 ], [ -124.888253122999942, 50.070988934000042 ], [ -124.886758316999959, 50.070973817000024 ], [ -124.88693049699998, 50.070728193000036 ], [ -124.887329324999911, 50.070551601000062 ], [ -124.888161795, 50.070403510000119 ], [ -124.88863790399995, 50.07008878900006 ], [ -124.888766083999968, 50.069816695000092 ], [ -124.888342009999974, 50.069284105000101 ], [ -124.888139993999943, 50.069171600000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8083750", "BldgCostT": "5575000", "sL_LossRatio": "0.999078251588803", "sL_AssetLoss": "2081.913", "sL_BldgLoss": "2079.994", "sL_StrLoss": "2069", "sL_NStrLoss": "10.994", "sL_ContLoss": "1.919", "geom_point": "0101000020E61000002AA27087173E5FC0121ADA6396084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.966297815999937, 50.07139668000007 ], [ -124.966360186999964, 50.068648010000047 ], [ -124.965738964999943, 50.068642171000072 ], [ -124.96582059, 50.065046694000038 ], [ -124.970720241999942, 50.06509265600004 ], [ -124.970744253999968, 50.064029815000083 ], [ -124.975812389999987, 50.06407712700009 ], [ -124.976133343999948, 50.064080116000042 ], [ -124.976330639999944, 50.064081952000095 ], [ -124.976326672999946, 50.064258573000039 ], [ -124.977346113999943, 50.064268057000049 ], [ -124.976967981999977, 50.064636708000073 ], [ -124.976587738999982, 50.065116216000042 ], [ -124.976036284999978, 50.065811635000031 ], [ -124.975868175999949, 50.066023611000048 ], [ -124.975650618999978, 50.066256242000051 ], [ -124.975003987999955, 50.066560395000067 ], [ -124.974483936999917, 50.066855111000045 ], [ -124.974473326999885, 50.066861137000096 ], [ -124.973885844999984, 50.06708040200008 ], [ -124.972925755999967, 50.067344779000067 ], [ -124.971825493999987, 50.067690523000124 ], [ -124.971683368999962, 50.06776953400005 ], [ -124.97157505399997, 50.067829746000072 ], [ -124.971579475999974, 50.067633873000041 ], [ -124.971349912, 50.067631727000055 ], [ -124.97134503299999, 50.067847767000046 ], [ -124.971539369999945, 50.067849584000079 ], [ -124.971351539999958, 50.067953996000014 ], [ -124.971247248999958, 50.068056413000136 ], [ -124.971090156999935, 50.068517957000054 ], [ -124.970990162999897, 50.068801067000081 ], [ -124.970671284000019, 50.069122687000061 ], [ -124.970549170999945, 50.069278791000023 ], [ -124.970452682999962, 50.069402109000045 ], [ -124.969920890999958, 50.070369910000053 ], [ -124.969403314999937, 50.071138203000032 ], [ -124.969161703999958, 50.071423555000074 ], [ -124.966297815999937, 50.07139668000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999237549368289", "sL_AssetLoss": "641.353", "sL_BldgLoss": "640.864", "sL_StrLoss": "638", "sL_NStrLoss": "2.864", "sL_ContLoss": "0.489", "geom_point": "0101000020E61000003DE7D972CF395FC0874F1983F70B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.903547206999988, 50.095066603000106 ], [ -124.903112509999971, 50.094696305000106 ], [ -124.902459206999964, 50.094797399000107 ], [ -124.901979811, 50.094723292 ], [ -124.901116291999955, 50.094053890000076 ], [ -124.900669593, 50.093064104000049 ], [ -124.900549787999978, 50.092121305 ], [ -124.900446604999942, 50.091997398000032 ], [ -124.900351644999958, 50.091946964000051 ], [ -124.905435535, 50.091997645000042 ], [ -124.905349093999973, 50.095592948000039 ], [ -124.903773320999974, 50.095577264000106 ], [ -124.903547206999988, 50.095066603000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7467500", "BldgCostT": "5150000", "sL_LossRatio": "0.999481284277047", "sL_AssetLoss": "1857.8577", "sL_BldgLoss": "1856.894", "sL_StrLoss": "1853", "sL_NStrLoss": "3.894", "sL_ContLoss": "0.9637", "geom_point": "0101000020E61000004D0DFAF3293A5FC0CD80AB23640E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.910686244999937, 50.113998818000027 ], [ -124.910687649999943, 50.113940139000086 ], [ -124.909641925999921, 50.113929789000039 ], [ -124.909641275999931, 50.11395689500003 ], [ -124.905827291999913, 50.1139190620001 ], [ -124.90593237299997, 50.113592697000072 ], [ -124.905951509999966, 50.111622994000051 ], [ -124.905727588, 50.110564806000042 ], [ -124.905230806999938, 50.110006507000058 ], [ -124.905099865999929, 50.108202116000058 ], [ -124.909297698999922, 50.108243783000084 ], [ -124.909271677999968, 50.109329511000091 ], [ -124.909591353999986, 50.109332678000079 ], [ -124.909567386999925, 50.110332979000084 ], [ -124.912358808999969, 50.110360590000056 ], [ -124.912377538999948, 50.109576865000115 ], [ -124.91258704699996, 50.109578935000066 ], [ -124.912430496999946, 50.110862310000115 ], [ -124.912428053000028, 50.111156790000031 ], [ -124.912411113999923, 50.113195001000065 ], [ -124.912407342999984, 50.113203698000071 ], [ -124.911691779999927, 50.114855589000115 ], [ -124.911394199999933, 50.115194309000081 ], [ -124.911233881999962, 50.115289789000059 ], [ -124.911029615999951, 50.115352486000099 ], [ -124.910411404999934, 50.115472298000071 ], [ -124.910228300999933, 50.115527094000107 ], [ -124.910038494, 50.115625895000065 ], [ -124.909884594999937, 50.115745693000086 ], [ -124.909756778999949, 50.115942306000093 ], [ -124.909675723999896, 50.116158451000054 ], [ -124.909649326999954, 50.11622889500002 ], [ -124.909580391999967, 50.116592306000044 ], [ -124.909607804999908, 50.116965691000054 ], [ -124.909657284000033, 50.1170605 ], [ -124.90974259599993, 50.117119787000036 ], [ -124.910588705999942, 50.117410489000086 ], [ -124.911107796999929, 50.117518116000049 ], [ -124.911449182999931, 50.117548517000046 ], [ -124.911640900999913, 50.11756558400009 ], [ -124.909327096999974, 50.117990345000095 ], [ -124.908314587999925, 50.11795218900005 ], [ -124.907702902999972, 50.117710086000073 ], [ -124.907098629999965, 50.117593362000079 ], [ -124.907142072999974, 50.115784550000107 ], [ -124.909090839, 50.115803873000047 ], [ -124.909111345, 50.114948496000068 ], [ -124.909398663, 50.11495134200004 ], [ -124.909421791999989, 50.113986301000033 ], [ -124.910686244999937, 50.113998818000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46350917", "BldgCostT": "31756667", "sL_LossRatio": "0.948689383948355", "sL_AssetLoss": "21094.66", "sL_BldgLoss": "20012.28", "sL_StrLoss": "19086.88", "sL_NStrLoss": "925.4", "sL_ContLoss": "1082.38", "geom_point": "0101000020E610000051F4650E2E3F5FC0919BE106FC034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.994012259999963, 50.046195352000076 ], [ -124.994034264999982, 50.045198346000085 ], [ -124.993454600999939, 50.045193041000104 ], [ -124.993460699999957, 50.044916827000044 ], [ -124.991601949, 50.044899793000162 ], [ -124.991619227999976, 50.04411871500006 ], [ -124.990886990999982, 50.044111996000034 ], [ -124.990891493999982, 50.044220805000066 ], [ -124.988379088999977, 50.044263890000082 ], [ -124.98834576599991, 50.043457514000046 ], [ -124.987321869999946, 50.043448086000062 ], [ -124.98740174699995, 50.039852473000039 ], [ -124.987795014999975, 50.039856094000058 ], [ -124.987830980999917, 50.038236252000054 ], [ -124.987092456999974, 50.038229449000035 ], [ -124.987044930999929, 50.040368338000079 ], [ -124.981461437999954, 50.040316743000091 ], [ -124.981479812999964, 50.039494284000035 ], [ -124.980837264999963, 50.039488329000029 ], [ -124.980917645999938, 50.035892701000094 ], [ -124.9855212399999, 50.035935289000058 ], [ -124.985499494999928, 50.035408222000115 ], [ -124.985918154999965, 50.035401056000111 ], [ -124.985905040999953, 50.035083242000027 ], [ -124.983942760999952, 50.035065119000102 ], [ -124.984022888999903, 50.031469468000104 ], [ -124.987432928999951, 50.0315009400001 ], [ -124.987425767999952, 50.031327516000069 ], [ -124.987844390999896, 50.031320343000075 ], [ -124.987822119, 50.030781028 ], [ -124.984473174999934, 50.030838362000047 ], [ -124.984462058999952, 50.030568704000132 ], [ -124.984043442999962, 50.030575864000056 ], [ -124.983985854999958, 50.029178534000074 ], [ -124.983944562, 50.029178152000078 ], [ -124.98392907299997, 50.029873241000104 ], [ -124.983499017999961, 50.029869264000098 ], [ -124.983485290999937, 50.030484951000105 ], [ -124.982958147999938, 50.030480074000181 ], [ -124.982942312999981, 50.031189962000028 ], [ -124.978174644999967, 50.03114573700006 ], [ -124.97873338899997, 50.029964511000045 ], [ -124.979911711999975, 50.028396494000027 ], [ -124.980730989999955, 50.02760890400004 ], [ -124.981190189999936, 50.026224513000038 ], [ -124.980963673999923, 50.024438594000088 ], [ -124.980827806999983, 50.024162295000039 ], [ -124.98040420699999, 50.023746408000072 ], [ -124.98044489599998, 50.022001812000028 ], [ -124.979886991999962, 50.021020510000035 ], [ -124.979542415999973, 50.020784104 ], [ -124.980214811999986, 50.019109200000095 ], [ -124.981291694999953, 50.017471294000138 ], [ -124.98168621, 50.016574098000063 ], [ -124.982068378999926, 50.016000093000102 ], [ -124.98449470499996, 50.013197285000075 ], [ -124.985047086999899, 50.012693815000098 ], [ -124.986796042999941, 50.012709961000077 ], [ -124.986716165999951, 50.016305705000036 ], [ -124.986289714999884, 50.016301770000076 ], [ -124.986273791999906, 50.017018214000096 ], [ -124.985772690999966, 50.017013589000058 ], [ -124.985760503999941, 50.017561625000077 ], [ -124.985470239999984, 50.017558945000076 ], [ -124.985457345, 50.018138640000068 ], [ -124.986043429999967, 50.018128607000094 ], [ -124.986032309, 50.01785894800004 ], [ -124.986450814999927, 50.017851783000062 ], [ -124.986428571, 50.017312466000078 ], [ -124.986847070999943, 50.017305298000075 ], [ -124.986824822999949, 50.016765982000031 ], [ -124.987243317999969, 50.01675881300006 ], [ -124.987221065999933, 50.016219497000108 ], [ -124.988476538999947, 50.016197982000016 ], [ -124.988487671999948, 50.01646764000008 ], [ -124.988906164999918, 50.016460466000119 ], [ -124.989039803999958, 50.019696362000111 ], [ -124.986110153999917, 50.019746557000069 ], [ -124.986121276999938, 50.020016216000073 ], [ -124.985702750999963, 50.020023381000108 ], [ -124.985736108999944, 50.020832356 ], [ -124.985317578999968, 50.020839520000024 ], [ -124.98538428499999, 50.022457470000084 ], [ -124.984965738999975, 50.022464633000034 ], [ -124.985010202999916, 50.023543266000047 ], [ -124.984876878999927, 50.023545547000012 ], [ -124.984871964999968, 50.023766278000075 ], [ -124.984899902999956, 50.023766535000092 ], [ -124.984886804999931, 50.0243549240001 ], [ -124.98504355399993, 50.024352241000038 ], [ -124.985065788999961, 50.024891559000146 ], [ -124.985484353999979, 50.024884395000072 ], [ -124.985495475000022, 50.025154052000055 ], [ -124.986184531999939, 50.025142258000123 ], [ -124.986191902999948, 50.024810706000082 ], [ -124.991773503999951, 50.024862062000075 ], [ -124.99169399799996, 50.02845775 ], [ -124.990238996999935, 50.028444390000089 ], [ -124.990255780999988, 50.028850363000075 ], [ -124.989837181999974, 50.028857544000061 ], [ -124.989881764999936, 50.029936173000067 ], [ -124.989463155999928, 50.029943352000046 ], [ -124.989528325999956, 50.031520226000033 ], [ -124.989605300999955, 50.031520933000152 ], [ -124.989586487999986, 50.03236987400004 ], [ -124.990819349999967, 50.032348723000062 ], [ -124.990823582999937, 50.032451085000062 ], [ -124.990998275999971, 50.032452688000063 ], [ -124.99100938, 50.03195094400013 ], [ -124.996591858999977, 50.032002054000046 ], [ -124.99658543299995, 50.0322940410001 ], [ -124.996250300000014, 50.032469692000085 ], [ -124.995286019999966, 50.033107706000074 ], [ -124.993789075, 50.034410894000132 ], [ -124.992775891999941, 50.035930505000046 ], [ -124.992614720999981, 50.036715307000101 ], [ -124.992701815999908, 50.037495697000068 ], [ -124.992487718999911, 50.038058301000071 ], [ -124.992806891999976, 50.038996910000101 ], [ -124.993409005999951, 50.039750311000049 ], [ -124.994226581999911, 50.040277192000119 ], [ -124.995663007999923, 50.040899606000046 ], [ -124.996044503999954, 50.041333986000083 ], [ -124.996258309, 50.041779783000095 ], [ -124.99643058, 50.04255880199999 ], [ -124.997268013999957, 50.043903291000099 ], [ -124.997436581999978, 50.04592420300002 ], [ -124.997544971999972, 50.046227621000128 ], [ -124.994012259999963, 50.046195352000076 ] ], [ [ -124.987358972999942, 50.029709569000076 ], [ -124.987305629999966, 50.028417398000016 ], [ -124.986111957999967, 50.028406392000136 ], [ -124.986148520999961, 50.026761966000073 ], [ -124.985143613999966, 50.026779166000033 ], [ -124.98513249599992, 50.026509508000082 ], [ -124.984838728999989, 50.026514534000057 ], [ -124.98481985699999, 50.027362225000061 ], [ -124.984748744999962, 50.027361568000103 ], [ -124.984780614999949, 50.028134619000063 ], [ -124.984542908999913, 50.028138686000041 ], [ -124.984537608000011, 50.028376730000048 ], [ -124.984295914999933, 50.028374496000019 ], [ -124.98428303499999, 50.028952676000074 ], [ -124.985232569999965, 50.028936432000116 ], [ -124.985254808999926, 50.029475748 ], [ -124.985673414999951, 50.029468583000011 ], [ -124.985684538999976, 50.029738242000107 ], [ -124.987358972999942, 50.029709569000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33811584", "BldgCostT": "23318334", "sL_LossRatio": "0.996912781700269", "sL_AssetLoss": "13689.994", "sL_BldgLoss": "13647.73", "sL_StrLoss": "13352.43", "sL_NStrLoss": "295.3", "sL_ContLoss": "42.264", "geom_point": "0101000020E6100000BB0C4106D93E5FC001E862991F074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.975111579999989, 50.063025826000015 ], [ -124.975130426999911, 50.062188010000042 ], [ -124.974712817, 50.06218411800009 ], [ -124.974768419999961, 50.059713067000146 ], [ -124.97478913599997, 50.058792359000023 ], [ -124.97425881099997, 50.058787413000061 ], [ -124.974299145999936, 50.056995526 ], [ -124.973685798999938, 50.05698980300005 ], [ -124.973713849999967, 50.055744321000056 ], [ -124.972724338999953, 50.055735081000087 ], [ -124.972805389999962, 50.052139537000045 ], [ -124.973922543999933, 50.05214996800003 ], [ -124.973926465999952, 50.051975752000033 ], [ -124.973987616999949, 50.049259660000089 ], [ -124.97475641199999, 50.049266831000139 ], [ -124.974748910999949, 50.049084088 ], [ -124.975228136999974, 50.049075930000043 ], [ -124.975264171999953, 50.047473288000077 ], [ -124.9756037399999, 50.047476452000069 ], [ -124.980848535999954, 50.047525196000045 ], [ -124.980841786, 50.047827020000142 ], [ -124.980768128999912, 50.051120768000018 ], [ -124.979531944999906, 50.051109302000114 ], [ -124.979510423999912, 50.05207037600011 ], [ -124.979506984999915, 50.052223958000056 ], [ -124.980817030999958, 50.052236110000187 ], [ -124.980803886999965, 50.052823769000078 ], [ -124.981777128999923, 50.052832786000089 ], [ -124.981696785999972, 50.056428333000099 ], [ -124.9812794299999, 50.056424467000042 ], [ -124.981255679999933, 50.057486736000044 ], [ -124.984303722999982, 50.05751493100005 ], [ -124.984284749999915, 50.058366053000029 ], [ -124.98435135599999, 50.05836491400003 ], [ -124.98436248199999, 50.058634571000042 ], [ -124.984496001999958, 50.058632288000084 ], [ -124.984568222999911, 50.055391540000116 ], [ -124.984699954999883, 50.055392757000021 ], [ -124.984760979999947, 50.052653638 ], [ -124.984799955999989, 50.052653998000046 ], [ -124.984808347999916, 50.052277318000066 ], [ -124.984823440999989, 50.051599738000036 ], [ -124.99028940299992, 50.051650068000022 ], [ -124.990290322999925, 50.051608574000063 ], [ -124.995875208999934, 50.051659719000092 ], [ -124.995873483999972, 50.051738041000156 ], [ -124.995765585999905, 50.051790498000067 ], [ -124.994741494999985, 50.052672112000089 ], [ -124.994408882999906, 50.053424097000068 ], [ -124.994309803999926, 50.054396793000144 ], [ -124.993910737999954, 50.055238050000099 ], [ -124.990596681999961, 50.055207678000059 ], [ -124.990578928999952, 50.056009094000068 ], [ -124.992631106, 50.056027913000094 ], [ -124.992601520999983, 50.057366170000115 ], [ -124.991591499999984, 50.058591109000076 ], [ -124.991377601999929, 50.059612692000051 ], [ -124.988244540999972, 50.059583912000072 ], [ -124.986965754999957, 50.059572139000053 ], [ -124.98697341899999, 50.059227391000093 ], [ -124.986978251999972, 50.05901004400004 ], [ -124.98647358099997, 50.059005394000074 ], [ -124.986482663999965, 50.059225281000067 ], [ -124.986512477999923, 50.059947019000049 ], [ -124.986093605999898, 50.059954189000095 ], [ -124.98610474399996, 50.060223846000078 ], [ -124.98424262599994, 50.060255704000021 ], [ -124.984223570000026, 50.061110458 ], [ -124.983626067999978, 50.061104937000074 ], [ -124.983658238999936, 50.061884778000056 ], [ -124.982820458999953, 50.061899096000047 ], [ -124.982831577999946, 50.062168754000012 ], [ -124.982412686999965, 50.062175911000111 ], [ -124.982423804999897, 50.062445568000093 ], [ -124.982400424, 50.062445968000134 ], [ -124.98158601599999, 50.062459879000095 ], [ -124.981608240999918, 50.062999193000074 ], [ -124.981240706999955, 50.063005469000103 ], [ -124.980699258999948, 50.063014712000033 ], [ -124.980697848999952, 50.063077741000029 ], [ -124.978272361, 50.063055235000014 ], [ -124.97704210699996, 50.063043799000098 ], [ -124.975111579999989, 50.063025826000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25416084", "BldgCostT": "17528334", "sL_LossRatio": "0.999094320827311", "sL_AssetLoss": "6344.41", "sL_BldgLoss": "6338.664", "sL_StrLoss": "6303.164", "sL_NStrLoss": "35.5", "sL_ContLoss": "5.746", "geom_point": "0101000020E6100000AA34204ACD3B5FC02C5789C3E3074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.929177327000019, 50.068912128000072 ], [ -124.929213317999981, 50.067380965000069 ], [ -124.92900401599999, 50.067378927000043 ], [ -124.929011411999937, 50.067064291000079 ], [ -124.927564380999968, 50.06705019000001 ], [ -124.927580827, 50.066351517000022 ], [ -124.92332956199999, 50.066309984000043 ], [ -124.92335890399994, 50.065068381000081 ], [ -124.923373402999943, 50.065057008000075 ], [ -124.92394630099993, 50.065021397000166 ], [ -124.924026798999975, 50.064920289000035 ], [ -124.924479482999942, 50.064750792000055 ], [ -124.924900808999908, 50.064807786000074 ], [ -124.925123103999937, 50.064767893000052 ], [ -124.925215714000018, 50.064612698000076 ], [ -124.924909699999944, 50.063610013000115 ], [ -124.925436776999931, 50.063503194000049 ], [ -124.925720489999961, 50.063651310000111 ], [ -124.925837506999926, 50.064125605000065 ], [ -124.926008118999931, 50.064195401000127 ], [ -124.92920850099992, 50.06451009700006 ], [ -124.930239487999984, 50.065149611000088 ], [ -124.931894382999971, 50.065301996000088 ], [ -124.932008904999961, 50.065381784000103 ], [ -124.932167003999922, 50.066170809000035 ], [ -124.932602423, 50.066586602000051 ], [ -124.93275358799994, 50.066538189000084 ], [ -124.932719909999904, 50.06639580900007 ], [ -124.932975821999932, 50.066129502000074 ], [ -124.93338209099997, 50.066167888000088 ], [ -124.933660498999927, 50.066118087000085 ], [ -124.934475887999895, 50.06553839000005 ], [ -124.937048777999948, 50.064910299000083 ], [ -124.937748000999989, 50.064944512000089 ], [ -124.938075786999946, 50.065405991000091 ], [ -124.938436981999985, 50.065354699000061 ], [ -124.938991186999914, 50.065493522000111 ], [ -124.939113601999935, 50.065524186000083 ], [ -124.93912868699999, 50.065199495000073 ], [ -124.938887915999885, 50.065149594000083 ], [ -124.938825804999937, 50.064980095000116 ], [ -124.938325716999927, 50.06469099600006 ], [ -124.938028684999978, 50.064273697000061 ], [ -124.937631617999983, 50.064100003000121 ], [ -124.936790407999965, 50.064070095000076 ], [ -124.936567013999962, 50.063695498000136 ], [ -124.935859086999955, 50.063500400000073 ], [ -124.934632995999948, 50.062873689000064 ], [ -124.934023988999982, 50.062650101000017 ], [ -124.933777511999935, 50.062068998000015 ], [ -124.93389028899999, 50.061752902000102 ], [ -124.933708700999901, 50.061430989000087 ], [ -124.932894206999947, 50.061301398000126 ], [ -124.932273794, 50.060483886000064 ], [ -124.931330604999957, 50.059968294000072 ], [ -124.931094800999944, 50.05998258500005 ], [ -124.930241091999932, 50.060311602000112 ], [ -124.929601702999904, 50.060060904000068 ], [ -124.929098111999963, 50.060069495000093 ], [ -124.928255309999969, 50.060281706000069 ], [ -124.926991288999957, 50.060814288000103 ], [ -124.926311615, 50.06126719500007 ], [ -124.925257013999953, 50.062184391000059 ], [ -124.925070686999931, 50.062221595000068 ], [ -124.92418295, 50.062212915000046 ], [ -124.924267841999935, 50.058617439000059 ], [ -124.925206566999961, 50.05862661700008 ], [ -124.92521969799999, 50.058069892000127 ], [ -124.925543202999947, 50.058158206000087 ], [ -124.928136482999946, 50.058349 ], [ -124.929507487999913, 50.058730709000017 ], [ -124.930193296999903, 50.05876491300009 ], [ -124.930229299999922, 50.058646699000029 ], [ -124.929967707999978, 50.058390288000048 ], [ -124.929851520999975, 50.057897505 ], [ -124.929959691999954, 50.057841990000021 ], [ -124.929974186999956, 50.057527209000121 ], [ -124.93028911199994, 50.057323605000128 ], [ -124.930108409999946, 50.057150910000082 ], [ -124.930483434999957, 50.057154558000022 ], [ -124.930526509999964, 50.05531927800012 ], [ -124.930637488999935, 50.05525849100011 ], [ -124.931102200999959, 50.055303984000091 ], [ -124.931404221999969, 50.055533303000047 ], [ -124.931956684999989, 50.056404990000082 ], [ -124.932287595, 50.05664280400002 ], [ -124.932663198999933, 50.056637098000081 ], [ -124.932814322999931, 50.056571604000041 ], [ -124.932838209999986, 50.056130099000136 ], [ -124.932708112999975, 50.055672896000068 ], [ -124.933149203999932, 50.055153092000076 ], [ -124.93314948299998, 50.055123417000104 ], [ -124.935527480999909, 50.055146463000042 ], [ -124.935575721999953, 50.053081209000062 ], [ -124.940412206999952, 50.053127922000087 ], [ -124.941160726999911, 50.053135132000179 ], [ -124.941154543999986, 50.053401211000072 ], [ -124.941077177999915, 50.056730648000048 ], [ -124.939435463000038, 50.056714827000093 ], [ -124.939478190999978, 50.057774409000061 ], [ -124.939897054999946, 50.057767406000089 ], [ -124.939907931999954, 50.058037070000104 ], [ -124.940745664999895, 50.058023061000071 ], [ -124.94078919499999, 50.059101717000033 ], [ -124.939532566999972, 50.059122729000073 ], [ -124.939521690999939, 50.058853064000047 ], [ -124.93910281699999, 50.058860065000047 ], [ -124.939091944999959, 50.058590401000089 ], [ -124.937835329999984, 50.058611394000074 ], [ -124.937824463999917, 50.058341730000109 ], [ -124.936986722999961, 50.058355717000076 ], [ -124.93695414199999, 50.05754672300003 ], [ -124.937373003999951, 50.057539731000077 ], [ -124.937362140999966, 50.057270067000111 ], [ -124.937781001999952, 50.057263073000087 ], [ -124.937770136999944, 50.056993407000029 ], [ -124.938188993999944, 50.056986412000064 ], [ -124.938178127999961, 50.05671674700006 ], [ -124.93871131899999, 50.056707840000087 ], [ -124.936081219999949, 50.056682425000091 ], [ -124.936032998999963, 50.058747669000105 ], [ -124.933370677999946, 50.058721879000132 ], [ -124.933365169999945, 50.058957193000033 ], [ -124.936346677999907, 50.05898607000011 ], [ -124.936310717999945, 50.060526433000078 ], [ -124.937573828, 50.060538643000051 ], [ -124.937558912999933, 50.061178212000058 ], [ -124.93822255699996, 50.061184621000052 ], [ -124.940001473999985, 50.061201782000076 ], [ -124.939956147999951, 50.063149960000025 ], [ -124.943503661999969, 50.063184096000064 ], [ -124.943420278999938, 50.066779566000093 ], [ -124.942385981999948, 50.066769625000084 ], [ -124.942368581999943, 50.067519090000076 ], [ -124.940680944999954, 50.067502849000029 ], [ -124.937297708999949, 50.067470213000114 ], [ -124.937286802999949, 50.067937715000056 ], [ -124.934788881999921, 50.06791355200005 ], [ -124.934764263999952, 50.068966377 ], [ -124.929177327000019, 50.068912128000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6520166", "BldgCostT": "4496666", "sL_LossRatio": "0.996255432862395", "sL_AssetLoss": "2592.556", "sL_BldgLoss": "2582.848", "sL_StrLoss": "2516.878", "sL_NStrLoss": "65.97", "sL_ContLoss": "9.708", "geom_point": "0101000020E61000002E88273F123E5FC0333013C10F054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.972302073999941, 50.035083061000051 ], [ -124.974226421999973, 50.035101038000057 ], [ -124.974145514999961, 50.038696665000018 ], [ -124.97281429799996, 50.038684233000026 ], [ -124.972782942999956, 50.040075695000048 ], [ -124.971327708999951, 50.040062087000067 ], [ -124.971303646999928, 50.041128330000085 ], [ -124.970465916999956, 50.041120487000057 ], [ -124.970464551999981, 50.041180908000015 ], [ -124.970447958999955, 50.041915549000102 ], [ -124.969960981999975, 50.041910987000094 ], [ -124.969930720000022, 50.04325015900006 ], [ -124.964346893999931, 50.043197695000117 ], [ -124.96437236599999, 50.042076531000092 ], [ -124.965240292999965, 50.04183240100005 ], [ -124.965581687999929, 50.041637304000062 ], [ -124.965880782999974, 50.041408004000111 ], [ -124.965994471999934, 50.041167034000054 ], [ -124.966227510999985, 50.040673088000091 ], [ -124.96729518599993, 50.039134999000019 ], [ -124.970336803999885, 50.037005797000077 ], [ -124.970817810999932, 50.036142706000071 ], [ -124.971058998999979, 50.035896314000126 ], [ -124.972302073999941, 50.035083061000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.99713085191379", "sL_AssetLoss": "1545.755", "sL_BldgLoss": "1541.32", "sL_StrLoss": "1505", "sL_NStrLoss": "36.32", "sL_ContLoss": "4.435", "geom_point": "0101000020E6100000EF3588FF893E5FC0C58E004D88054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.977353801999939, 50.04142557300009 ], [ -124.980004890999936, 50.041450204000085 ], [ -124.979924426999943, 50.045045805000051 ], [ -124.975943086999933, 50.045008790000047 ], [ -124.974340368999933, 50.044993849000065 ], [ -124.974421272999948, 50.0413982520001 ], [ -124.977353801999939, 50.04142557300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5099167", "BldgCostT": "3516667", "sL_LossRatio": "0.999367859408396", "sL_AssetLoss": "1266.8068", "sL_BldgLoss": "1266.006", "sL_StrLoss": "1262", "sL_NStrLoss": "4.006", "sL_ContLoss": "0.8008", "geom_point": "0101000020E610000094B3A0C58C3C5FC06941207E1B074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.944053513, 50.057538038000075 ], [ -124.944064305999945, 50.057072298000065 ], [ -124.943461489999947, 50.057066507000037 ], [ -124.942461880999957, 50.057056899000031 ], [ -124.942534923999943, 50.05390937300006 ], [ -124.942545320999926, 50.053461384000087 ], [ -124.948130379999924, 50.053514954000057 ], [ -124.948119627999972, 50.053980698000039 ], [ -124.949721947999947, 50.053996014000077 ], [ -124.949701233999974, 50.054894692000104 ], [ -124.94963907399989, 50.05759153200006 ], [ -124.944053513, 50.057538038000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999391421150875", "sL_AssetLoss": "146.7353", "sL_BldgLoss": "146.646", "sL_StrLoss": "146", "sL_NStrLoss": "0.646", "sL_ContLoss": "0.0893", "geom_point": "0101000020E6100000535FD021F43D5FC063C9243C84094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.968578766999912, 50.07239574700003 ], [ -124.968802045999936, 50.072391959000086 ], [ -124.969051887999953, 50.072470005000071 ], [ -124.969172526999941, 50.072570003000102 ], [ -124.969214901999976, 50.072673810000033 ], [ -124.969185888999959, 50.073031414000056 ], [ -124.9686519099999, 50.074092596000035 ], [ -124.968538386999953, 50.074227301000086 ], [ -124.968278095999949, 50.074431689000079 ], [ -124.96813788799993, 50.074576891000028 ], [ -124.968165107999965, 50.074794698000112 ], [ -124.968452008999975, 50.075206495000081 ], [ -124.968511193999944, 50.075368907000055 ], [ -124.968497896000017, 50.075521610000081 ], [ -124.968435709999937, 50.07567828300008 ], [ -124.96826271, 50.075850205000066 ], [ -124.968147107000036, 50.075898609000035 ], [ -124.967918700999974, 50.075924291000028 ], [ -124.967146018, 50.075679708000074 ], [ -124.966692107, 50.075486694000062 ], [ -124.966552753999949, 50.075403700000081 ], [ -124.966562960999951, 50.074953837000066 ], [ -124.967425976999948, 50.07496194000008 ], [ -124.96738803699999, 50.074035018000068 ], [ -124.967807033999946, 50.074027913000087 ], [ -124.967784953999953, 50.073488596000047 ], [ -124.968203948999971, 50.073481490000106 ], [ -124.96817082499993, 50.072672513000079 ], [ -124.968589810000012, 50.072665406000056 ], [ -124.968578766999912, 50.07239574700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564166", "BldgCostT": "5216666", "sL_LossRatio": "0.999354038384553", "sL_AssetLoss": "1831.9974", "sL_BldgLoss": "1830.814", "sL_StrLoss": "1825", "sL_NStrLoss": "5.814", "sL_ContLoss": "1.1834", "geom_point": "0101000020E61000000731651AEC3C5FC01844FF5F50094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.954874403999909, 50.0753561020001 ], [ -124.95269203499997, 50.074786921000054 ], [ -124.951376469999957, 50.074443797000086 ], [ -124.95112162, 50.074377302000109 ], [ -124.950468395999934, 50.074238814000154 ], [ -124.949811811999908, 50.074099600000082 ], [ -124.949690252999957, 50.074100419000068 ], [ -124.948936368, 50.074105516000053 ], [ -124.947606719999968, 50.074114505000068 ], [ -124.947090917999972, 50.074185997000043 ], [ -124.946654279999947, 50.074316634000077 ], [ -124.946716356999943, 50.071632132000076 ], [ -124.947030619999978, 50.071635141000051 ], [ -124.947068240999968, 50.070007637000039 ], [ -124.952655334000028, 50.070060977000026 ], [ -124.952643709999933, 50.070566490000026 ], [ -124.953438833999897, 50.070574057 ], [ -124.953411317999937, 50.071771738000109 ], [ -124.953791195999912, 50.07177535200001 ], [ -124.953767712999976, 50.072797757000046 ], [ -124.958538976999975, 50.072843032000016 ], [ -124.958488944999914, 50.075031170000095 ], [ -124.958263599999924, 50.075074505000067 ], [ -124.957958600999959, 50.075089613000102 ], [ -124.957389120999977, 50.075066192000101 ], [ -124.956654789999973, 50.075097897000113 ], [ -124.955692849999977, 50.075237405000067 ], [ -124.954874403999909, 50.0753561020001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.995859840452388", "sL_AssetLoss": "831.852", "sL_BldgLoss": "828.408", "sL_StrLoss": "797.918", "sL_NStrLoss": "30.49", "sL_ContLoss": "3.444", "geom_point": "0101000020E6100000CD1F3605F03E5FC007DBA1C4DB084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.981369089999959, 50.066986067000073 ], [ -124.986600924999962, 50.067034395000043 ], [ -124.986598936999954, 50.067123812000027 ], [ -124.986139508999955, 50.067624907000052 ], [ -124.985004285999977, 50.06928120700006 ], [ -124.982946008999988, 50.071555693000107 ], [ -124.982606886999974, 50.07213820500003 ], [ -124.98225329, 50.072360964 ], [ -124.982018956999951, 50.072358796000124 ], [ -124.9820135, 50.072603074000071 ], [ -124.98171698199999, 50.072908693000109 ], [ -124.981311802999983, 50.073616500000099 ], [ -124.981118402999954, 50.073656385000071 ], [ -124.980991399999979, 50.073605086000072 ], [ -124.981238790999953, 50.07286311100011 ], [ -124.980973793999979, 50.071833400000067 ], [ -124.981123500999928, 50.071713790000025 ], [ -124.981635811999951, 50.071605591000043 ], [ -124.982003689999928, 50.071401896000026 ], [ -124.98225221199999, 50.071001709000022 ], [ -124.98227007499996, 50.070713998000031 ], [ -124.981994488999987, 50.069801110000114 ], [ -124.982278180999984, 50.068905202000117 ], [ -124.982183094999925, 50.068304216000037 ], [ -124.981581402999922, 50.067234601000052 ], [ -124.981369089999959, 50.066986067000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999014729900378", "sL_AssetLoss": "667.3297", "sL_BldgLoss": "666.6722", "sL_StrLoss": "661.0912", "sL_NStrLoss": "5.581", "sL_ContLoss": "0.6575", "geom_point": "0101000020E610000034F8567FDF3C5FC0F7BF4CA985064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.948267189999953, 50.052501059000058 ], [ -124.948340581999972, 50.049320753000138 ], [ -124.948867994999958, 50.049340896000018 ], [ -124.949816990999949, 50.049306711000021 ], [ -124.95022841, 50.04944339900004 ], [ -124.950301998999976, 50.049585804000074 ], [ -124.950933806999942, 50.050007409000074 ], [ -124.951374, 50.050135596000096 ], [ -124.951635573999937, 50.050040195000065 ], [ -124.951631712999983, 50.049266792000047 ], [ -124.951944108999967, 50.049046103000123 ], [ -124.95217848899992, 50.04896061000003 ], [ -124.952374607999928, 50.04898480500006 ], [ -124.95275532, 50.049437699000102 ], [ -124.953201412999988, 50.049385 ], [ -124.953662196, 50.049034711000076 ], [ -124.953705686999939, 50.048956615000101 ], [ -124.953934671999932, 50.048958794000036 ], [ -124.953852137999917, 50.052554339000054 ], [ -124.948267189999953, 50.052501059000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.994435319261768", "sL_AssetLoss": "561.937", "sL_BldgLoss": "558.81", "sL_StrLoss": "532.2", "sL_NStrLoss": "26.61", "sL_ContLoss": "3.127", "geom_point": "0101000020E6100000BC9F4B1F973E5FC03D597378EF044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.978515304999974, 50.0387657140001 ], [ -124.978504217999969, 50.038496055000081 ], [ -124.977666843999927, 50.038510332000051 ], [ -124.977677925999956, 50.038779991000098 ], [ -124.976421855999945, 50.038801395000092 ], [ -124.976410782999963, 50.038531736000024 ], [ -124.975992093999935, 50.038538869000092 ], [ -124.975947807999916, 50.037460232000043 ], [ -124.976785165999971, 50.03744596700011 ], [ -124.976751936999975, 50.036636990000055 ], [ -124.978007949999949, 50.036615582000053 ], [ -124.978030115999957, 50.037154900000111 ], [ -124.978448789999945, 50.037147761000071 ], [ -124.978459876999935, 50.037417420000097 ], [ -124.978878552999944, 50.037410279 ], [ -124.978889640999952, 50.037679939000093 ], [ -124.979308319999987, 50.03767279700007 ], [ -124.979319411999981, 50.037942455000106 ], [ -124.979738091999948, 50.037935311000098 ], [ -124.979793558999972, 50.03928360400004 ], [ -124.97937486399999, 50.039290748000091 ], [ -124.97939704799991, 50.039830065000032 ], [ -124.978978349999934, 50.039837208000066 ], [ -124.979000527999972, 50.040376525000084 ], [ -124.978581824999978, 50.040383666000118 ], [ -124.978592910999936, 50.040653326000076 ], [ -124.977336794999928, 50.040674740000085 ], [ -124.977281394999977, 50.039326446000061 ], [ -124.977700088999967, 50.039319310000067 ], [ -124.977689007, 50.039049651000042 ], [ -124.9781077, 50.039042513000098 ], [ -124.978096616999892, 50.038772854000079 ], [ -124.978515304999974, 50.0387657140001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151473323", "BldgCostT": "95223376", "sL_LossRatio": "0.931683678246126", "sL_AssetLoss": "45220.2083", "sL_BldgLoss": "42130.93", "sL_StrLoss": "36085.85", "sL_NStrLoss": "6045.08", "sL_ContLoss": "3089.2783", "geom_point": "0101000020E6100000572150C3184C5FC071212CB60BF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.199583430999951, 49.950826518000078 ], [ -125.198544810000016, 49.949735414000017 ], [ -125.197916395999954, 49.950370018000065 ], [ -125.197837487999934, 49.950379910000066 ], [ -125.197326604999958, 49.950418968000065 ], [ -125.196736717999954, 49.949805706000078 ], [ -125.195722897999943, 49.949240286000091 ], [ -125.19536091399999, 49.948951190000081 ], [ -125.194322897999911, 49.947585400000087 ], [ -125.193037890999918, 49.946304999000041 ], [ -125.191578513999929, 49.945802296000089 ], [ -125.189853210999956, 49.944926400000064 ], [ -125.188590406999978, 49.944454986000061 ], [ -125.187680417, 49.943742895000135 ], [ -125.186720104999964, 49.943177496000025 ], [ -125.186115401999984, 49.943034991000047 ], [ -125.185858200999945, 49.942896906000023 ], [ -125.18497321400001, 49.942157700000024 ], [ -125.184780002999943, 49.941585199000059 ], [ -125.184942695999908, 49.939936004000096 ], [ -125.185216089999969, 49.939481602000072 ], [ -125.185787592999972, 49.938867796000089 ], [ -125.186076094999947, 49.937845212000099 ], [ -125.186912300999936, 49.936960388000038 ], [ -125.186992715, 49.936875299000079 ], [ -125.187131815999976, 49.936584794000062 ], [ -125.186860498999977, 49.934880001000131 ], [ -125.185403609999952, 49.931607190000122 ], [ -125.18454691, 49.930578888000099 ], [ -125.183714177999946, 49.93003769700006 ], [ -125.182336703, 49.928533801000079 ], [ -125.182198814999978, 49.927627897000022 ], [ -125.182402601999954, 49.927202106000017 ], [ -125.183190790999973, 49.925829195000091 ], [ -125.183644393999913, 49.924470506000077 ], [ -125.184033982999964, 49.923303561000068 ], [ -125.18479879600001, 49.921012506000054 ], [ -125.185085591999936, 49.919343310000059 ], [ -125.184794821999958, 49.918830856000071 ], [ -125.185366811999984, 49.91885908800009 ], [ -125.185366376999966, 49.918913844000073 ], [ -125.185358190999963, 49.919889485000056 ], [ -125.185282587999922, 49.920226110000044 ], [ -125.185146199999934, 49.920845582000084 ], [ -125.184970703999937, 49.92139640500006 ], [ -125.184364000999963, 49.923325208000065 ], [ -125.18416468, 49.923957607000013 ], [ -125.184036313999954, 49.92454547400007 ], [ -125.183994893999923, 49.924735006000027 ], [ -125.183543535999917, 49.926814569 ], [ -125.183486487999971, 49.927077294000121 ], [ -125.183477430999972, 49.927207247000084 ], [ -125.183475617999989, 49.927233672000064 ], [ -125.18343510699998, 49.927815391000102 ], [ -125.183389098999939, 49.928475697000039 ], [ -125.183519383999936, 49.928897491000072 ], [ -125.183647863999937, 49.929075143000048 ], [ -125.183775014, 49.929250997000118 ], [ -125.184533792999929, 49.930043409000064 ], [ -125.18500039499996, 49.930587307000067 ], [ -125.185214126999966, 49.930590012000046 ], [ -125.188168225999974, 49.930627649000023 ], [ -125.189226517999913, 49.930641101000091 ], [ -125.189258674999948, 49.932045291000108 ], [ -125.189100488999927, 49.932640003000095 ], [ -125.189141000999953, 49.933104203000049 ], [ -125.190038886999957, 49.933127115000069 ], [ -125.190696080999956, 49.933222696000037 ], [ -125.190647994999935, 49.933577488000097 ], [ -125.190912813999958, 49.934749305000011 ], [ -125.191189820999952, 49.935232408000047 ], [ -125.191699907999961, 49.935919607000116 ], [ -125.189413778999921, 49.935862296000103 ], [ -125.18945971299992, 49.935943501000153 ], [ -125.189444286999958, 49.93665289100003 ], [ -125.189529006999933, 49.936878164000106 ], [ -125.187309624999926, 49.936966392000031 ], [ -125.18711148099996, 49.937575220000021 ], [ -125.187028313999988, 49.937786816000013 ], [ -125.18702685199996, 49.937798169000118 ], [ -125.186918084999917, 49.938658216000135 ], [ -125.186814098999932, 49.939477542000084 ], [ -125.186781376999946, 49.93973514300005 ], [ -125.186764159999939, 49.939870974000058 ], [ -125.186694083999924, 49.940364977000065 ], [ -125.186646694999936, 49.94083670800007 ], [ -125.186678384999951, 49.94116874600013 ], [ -125.186795269999934, 49.941488820000082 ], [ -125.186946543999952, 49.941756091000066 ], [ -125.187148538999963, 49.941991384000033 ], [ -125.187384438999942, 49.9421999260001 ], [ -125.187762882999948, 49.942461697000098 ], [ -125.18813180399999, 49.942676287000033 ], [ -125.188611818999931, 49.942955447000024 ], [ -125.189141862999961, 49.943263738000063 ], [ -125.189717692999963, 49.943598631000015 ], [ -125.190488476999946, 49.94404691400004 ], [ -125.191029958999977, 49.944361808000075 ], [ -125.19212724, 49.94499992500004 ], [ -125.192548352, 49.945213428000081 ], [ -125.193892093, 49.945885111000059 ], [ -125.194024204999963, 49.945963398000032 ], [ -125.194655536999974, 49.946337593000109 ], [ -125.195036516999934, 49.946563382000107 ], [ -125.195750800999988, 49.947144095000063 ], [ -125.196028532999918, 49.947433873000072 ], [ -125.19632531799999, 49.947748941000086 ], [ -125.196402042999978, 49.947828946000037 ], [ -125.196821961999959, 49.948266919000076 ], [ -125.197163957999948, 49.948627299000123 ], [ -125.197338614999978, 49.948757192000095 ], [ -125.197463940999938, 49.948850397000044 ], [ -125.197709952999958, 49.948399308 ], [ -125.200740629999942, 49.950404941000073 ], [ -125.200620887999932, 49.950400467000073 ], [ -125.200478264999973, 49.950395178000079 ], [ -125.20005051499993, 49.950379232000031 ], [ -125.19990796299993, 49.95037391600011 ], [ -125.19994108499999, 49.950394048000121 ], [ -125.199986394999954, 49.950421605000081 ], [ -125.200132160999914, 49.950510256000015 ], [ -125.199583430999951, 49.950826518000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109322833", "BldgCostT": "73978333", "sL_LossRatio": "0.968613376495108", "sL_AssetLoss": "53333.612", "sL_BldgLoss": "51659.65", "sL_StrLoss": "48321.55", "sL_NStrLoss": "3338.1", "sL_ContLoss": "1673.962", "geom_point": "0101000020E6100000A1E3B4F1314C5FC07A04EDC49BF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.188780599999944, 49.929945401000055 ], [ -125.188139111999945, 49.929756300000101 ], [ -125.186839611, 49.929601901000076 ], [ -125.18609957599989, 49.929317693000037 ], [ -125.185649798999989, 49.928923193000045 ], [ -125.185473074999962, 49.928621860000106 ], [ -125.185360586999963, 49.928430089000102 ], [ -125.185381517999971, 49.928377929000085 ], [ -125.185417411999964, 49.92828848400007 ], [ -125.185544977999896, 49.926674405000064 ], [ -125.18573890499998, 49.925874681000039 ], [ -125.186118985999912, 49.924317392000042 ], [ -125.186296042999913, 49.923585162000087 ], [ -125.18634450899999, 49.92338481000013 ], [ -125.186501612999962, 49.923384356000028 ], [ -125.18665879299995, 49.923383933000139 ], [ -125.18681595299995, 49.923383488000077 ], [ -125.186973095999946, 49.92338307800005 ], [ -125.187130254999957, 49.92338263300006 ], [ -125.187287399999931, 49.923382222000114 ], [ -125.187444522999925, 49.923381787000089 ], [ -125.187601717999925, 49.923381328000083 ], [ -125.187758861999981, 49.923380916000085 ], [ -125.18791602, 49.92338047 ], [ -125.1880731299999, 49.923380070000071 ], [ -125.188230287999943, 49.923379623000123 ], [ -125.188387502999973, 49.923379185000059 ], [ -125.188544590999982, 49.923378762000084 ], [ -125.188701784999935, 49.923378301000113 ], [ -125.188858875999955, 49.923377878000039 ], [ -125.189016052999975, 49.923377452000082 ], [ -125.189173247999918, 49.923376990000094 ], [ -125.189330356999932, 49.923376589000057 ], [ -125.189487516000014, 49.923376139000048 ], [ -125.189644659999914, 49.923375724000039 ], [ -125.189801818999982, 49.923375274000065 ], [ -125.189958998999927, 49.923374847000055 ], [ -125.190116121999921, 49.923374409000161 ], [ -125.190273281999978, 49.923373959000052 ], [ -125.190430425999949, 49.923373542000071 ], [ -125.190587583999971, 49.923373090000105 ], [ -125.190744762999913, 49.923372662000112 ], [ -125.191059066999955, 49.923371793000051 ], [ -125.191373348999932, 49.923370900000073 ], [ -125.191530528, 49.923370471000112 ], [ -125.19168765199997, 49.923370030000029 ], [ -125.19184481, 49.923369577000159 ], [ -125.192001953999977, 49.923369159000067 ], [ -125.192159113999978, 49.92336870400004 ], [ -125.192316294999955, 49.923368274000069 ], [ -125.192473416999931, 49.923367832000103 ], [ -125.19263059499994, 49.923367399000071 ], [ -125.192944898999926, 49.923366525000077 ], [ -125.193102056999948, 49.923366070000107 ], [ -125.19325920199999, 49.923365650000029 ], [ -125.193416361999965, 49.923365193000024 ], [ -125.193573503999986, 49.923364772000092 ], [ -125.193730662999968, 49.9233643170001 ], [ -125.193887786999966, 49.923363874000103 ], [ -125.194044945999948, 49.923363416 ], [ -125.194202124999947, 49.923362980000036 ], [ -125.194516428999933, 49.923362102000034 ], [ -125.194673552999987, 49.923361656000083 ], [ -125.194839421999916, 49.923361193000083 ], [ -125.194938053999948, 49.923372626000038 ], [ -125.195036726999902, 49.923384104000036 ], [ -125.195135433999965, 49.923395568000046 ], [ -125.195234030999984, 49.923407013000066 ], [ -125.195332736999944, 49.923418477000013 ], [ -125.195431389999925, 49.923429932000019 ], [ -125.195530040999984, 49.923441386000071 ], [ -125.195628727999946, 49.923452827000077 ], [ -125.195727399999967, 49.923464303000074 ], [ -125.195741182999953, 49.923465900000096 ], [ -125.195750754999935, 49.92367652700009 ], [ -125.19533312199999, 49.923684436000102 ], [ -125.195345373999913, 49.923954064000043 ], [ -125.194927735999912, 49.923961971000054 ], [ -125.194939983999987, 49.92423159900008 ], [ -125.195357622999936, 49.924223690000062 ], [ -125.195390956, 49.924957256000063 ], [ -125.195619801999896, 49.92495893500012 ], [ -125.195207817999972, 49.928300573000122 ], [ -125.194692282999952, 49.928998407000108 ], [ -125.195546429, 49.929198470000145 ], [ -125.195106015999926, 49.92956940500008 ], [ -125.194172618999943, 49.929584998000038 ], [ -125.19353890399999, 49.929827689000149 ], [ -125.193392595999939, 49.929826590000111 ], [ -125.190297099999924, 49.929797506000043 ], [ -125.190270792999939, 49.930653310000046 ], [ -125.189226517999913, 49.930641101000091 ], [ -125.18908048599999, 49.930230906000141 ], [ -125.188780599999944, 49.929945401000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116466417", "BldgCostT": "80321667", "sL_LossRatio": "0.993004371688969", "sL_AssetLoss": "60477.77", "sL_BldgLoss": "60054.69", "sL_StrLoss": "56921.39", "sL_NStrLoss": "3133.3", "sL_ContLoss": "423.08", "geom_point": "0101000020E6100000D92D76B9104C5FC0E190573126F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.184364000999963, 49.923325208000065 ], [ -125.184970703999937, 49.92139640500006 ], [ -125.185146199999934, 49.920845582000084 ], [ -125.185282587999922, 49.920226110000044 ], [ -125.185358190999963, 49.919889485000056 ], [ -125.185366376999966, 49.918913844000073 ], [ -125.185366811999984, 49.91885908800009 ], [ -125.185557159999973, 49.918863347000091 ], [ -125.187238899999926, 49.918900892000124 ], [ -125.188874206999969, 49.918939894000076 ], [ -125.190499775999939, 49.918977771000066 ], [ -125.190513810999931, 49.918978102000075 ], [ -125.191225295999985, 49.918990224000019 ], [ -125.191476245999965, 49.918994489000042 ], [ -125.192945596999948, 49.919019486000067 ], [ -125.193940622999904, 49.91909417100004 ], [ -125.193923330999965, 49.920074847000123 ], [ -125.193801225999948, 49.920073949000056 ], [ -125.193794148000023, 49.920475264000054 ], [ -125.19393331000002, 49.920472630000091 ], [ -125.193957792999939, 49.921011885000063 ], [ -125.194375403999956, 49.921003980000137 ], [ -125.194387648999964, 49.921273607000067 ], [ -125.19480526199996, 49.921265702 ], [ -125.19482975599999, 49.921804956000088 ], [ -125.195247372999916, 49.921797048000073 ], [ -125.19525962199999, 49.92206667500006 ], [ -125.195574474999944, 49.922060711000078 ], [ -125.195587589999946, 49.922141715000052 ], [ -125.195601937999982, 49.922230439000096 ], [ -125.195616257999973, 49.922319233000024 ], [ -125.195630625999954, 49.922407980000052 ], [ -125.19564501499994, 49.922496748000114 ], [ -125.195659361999901, 49.922585472000058 ], [ -125.19567371699999, 49.922674255000125 ], [ -125.195688051999952, 49.922763013000129 ], [ -125.19570244099999, 49.922851782000073 ], [ -125.195716787999956, 49.922940505000106 ], [ -125.195731177999932, 49.923029274000065 ], [ -125.195745512999949, 49.923118034000069 ], [ -125.195748551999955, 49.923136850000091 ], [ -125.195726250999954, 49.923137273000073 ], [ -125.195741182999953, 49.923465900000096 ], [ -125.195727399999967, 49.923464303000074 ], [ -125.195628727999946, 49.923452827000077 ], [ -125.195530040999984, 49.923441386000071 ], [ -125.195431389999925, 49.923429932000019 ], [ -125.195332736999944, 49.923418477000013 ], [ -125.195234030999984, 49.923407013000066 ], [ -125.195135433999965, 49.923395568000046 ], [ -125.195036726999902, 49.923384104000036 ], [ -125.194938053999948, 49.923372626000038 ], [ -125.194839421999916, 49.923361193000083 ], [ -125.194673552999987, 49.923361656000083 ], [ -125.194516428999933, 49.923362102000034 ], [ -125.194202124999947, 49.923362980000036 ], [ -125.194044945999948, 49.923363416 ], [ -125.193887786999966, 49.923363874000103 ], [ -125.193730662999968, 49.9233643170001 ], [ -125.193573503999986, 49.923364772000092 ], [ -125.193416361999965, 49.923365193000024 ], [ -125.19325920199999, 49.923365650000029 ], [ -125.193102056999948, 49.923366070000107 ], [ -125.192944898999926, 49.923366525000077 ], [ -125.19263059499994, 49.923367399000071 ], [ -125.192473416999931, 49.923367832000103 ], [ -125.192316294999955, 49.923368274000069 ], [ -125.192159113999978, 49.92336870400004 ], [ -125.192001953999977, 49.923369159000067 ], [ -125.19184481, 49.923369577000159 ], [ -125.19168765199997, 49.923370030000029 ], [ -125.191530528, 49.923370471000112 ], [ -125.191373348999932, 49.923370900000073 ], [ -125.191059066999955, 49.923371793000051 ], [ -125.190744762999913, 49.923372662000112 ], [ -125.190587583999971, 49.923373090000105 ], [ -125.190430425999949, 49.923373542000071 ], [ -125.190273281999978, 49.923373959000052 ], [ -125.190116121999921, 49.923374409000161 ], [ -125.189958998999927, 49.923374847000055 ], [ -125.189801818999982, 49.923375274000065 ], [ -125.189644659999914, 49.923375724000039 ], [ -125.189487516000014, 49.923376139000048 ], [ -125.189330356999932, 49.923376589000057 ], [ -125.189173247999918, 49.923376990000094 ], [ -125.189016052999975, 49.923377452000082 ], [ -125.188858875999955, 49.923377878000039 ], [ -125.188701784999935, 49.923378301000113 ], [ -125.188544590999982, 49.923378762000084 ], [ -125.188387502999973, 49.923379185000059 ], [ -125.188230287999943, 49.923379623000123 ], [ -125.1880731299999, 49.923380070000071 ], [ -125.18791602, 49.92338047 ], [ -125.187758861999981, 49.923380916000085 ], [ -125.187601717999925, 49.923381328000083 ], [ -125.187444522999925, 49.923381787000089 ], [ -125.187287399999931, 49.923382222000114 ], [ -125.187130254999957, 49.92338263300006 ], [ -125.186973095999946, 49.92338307800005 ], [ -125.18681595299995, 49.923383488000077 ], [ -125.18665879299995, 49.923383933000139 ], [ -125.186501612999962, 49.923384356000028 ], [ -125.18634450899999, 49.92338481000013 ], [ -125.186296042999913, 49.923585162000087 ], [ -125.186118985999912, 49.924317392000042 ], [ -125.18573890499998, 49.925874681000039 ], [ -125.185544977999896, 49.926674405000064 ], [ -125.185417411999964, 49.92828848400007 ], [ -125.185381517999971, 49.928377929000085 ], [ -125.185360586999963, 49.928430089000102 ], [ -125.185473074999962, 49.928621860000106 ], [ -125.185649798999989, 49.928923193000045 ], [ -125.18609957599989, 49.929317693000037 ], [ -125.186839611, 49.929601901000076 ], [ -125.188139111999945, 49.929756300000101 ], [ -125.188780599999944, 49.929945401000055 ], [ -125.18908048599999, 49.930230906000141 ], [ -125.189226517999913, 49.930641101000091 ], [ -125.188168225999974, 49.930627649000023 ], [ -125.185214126999966, 49.930590012000046 ], [ -125.18500039499996, 49.930587307000067 ], [ -125.184533792999929, 49.930043409000064 ], [ -125.183775014, 49.929250997000118 ], [ -125.183647863999937, 49.929075143000048 ], [ -125.183519383999936, 49.928897491000072 ], [ -125.183389098999939, 49.928475697000039 ], [ -125.18343510699998, 49.927815391000102 ], [ -125.183475617999989, 49.927233672000064 ], [ -125.183477430999972, 49.927207247000084 ], [ -125.183486487999971, 49.927077294000121 ], [ -125.183543535999917, 49.926814569 ], [ -125.183994893999923, 49.924735006000027 ], [ -125.184036313999954, 49.92454547400007 ], [ -125.18416468, 49.923957607000013 ], [ -125.184364000999963, 49.923325208000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993914138385898", "sL_AssetLoss": "333.56", "sL_BldgLoss": "331.53", "sL_StrLoss": "324", "sL_NStrLoss": "7.53", "sL_ContLoss": "2.03", "geom_point": "0101000020E6100000B459B39D08495FC0AE39B486DAF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.140298279999982, 49.889092348000084 ], [ -125.141967678999947, 49.889061507000086 ], [ -125.142003495000012, 49.889870422000058 ], [ -125.140334065999966, 49.889901262000144 ], [ -125.140298279999982, 49.889092348000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12141334", "BldgCostT": "8373334", "sL_LossRatio": "0.995544208195467", "sL_AssetLoss": "5518.66", "sL_BldgLoss": "5494.07", "sL_StrLoss": "5294.57", "sL_NStrLoss": "199.5", "sL_ContLoss": "24.59", "geom_point": "0101000020E610000025BEC925844F5FC00EAE0CECA9F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.246395434999982, 49.898148822000053 ], [ -125.24637038899999, 49.897609585000062 ], [ -125.245952992999946, 49.897617674000095 ], [ -125.245965515999956, 49.897887292000085 ], [ -125.24471332399996, 49.897911551000057 ], [ -125.244663265999975, 49.89683307400005 ], [ -125.243828489999913, 49.896849238000058 ], [ -125.243819036999966, 49.896645500000041 ], [ -125.243684885999983, 49.896644573000067 ], [ -125.243680815999952, 49.896890755000115 ], [ -125.238114583999959, 49.896852188000061 ], [ -125.238174487999956, 49.893255701000079 ], [ -125.239044527999951, 49.893261749000068 ], [ -125.239983406999968, 49.893926902000061 ], [ -125.240780015999974, 49.894290104000063 ], [ -125.244257508999979, 49.894815610000123 ], [ -125.245422216999941, 49.895183687000049 ], [ -125.245422934999965, 49.89519919 ], [ -125.245468480999961, 49.895198307000079 ], [ -125.245846186999984, 49.895317668000118 ], [ -125.24590291, 49.89653919800007 ], [ -125.246320294999975, 49.896531110000097 ], [ -125.246345339999962, 49.897070347000074 ], [ -125.246762729999915, 49.897062257000051 ], [ -125.246750205999888, 49.896792638000058 ], [ -125.248837137999914, 49.896752164000084 ], [ -125.248824602999917, 49.896482546000144 ], [ -125.249241985, 49.89647444600007 ], [ -125.249216907999966, 49.895935210000097 ], [ -125.249573606999917, 49.895928288000022 ], [ -125.25053585199997, 49.89664652600009 ], [ -125.250295135999949, 49.896679556000038 ], [ -125.248705598999962, 49.8968977870001 ], [ -125.248387120999936, 49.896973893000066 ], [ -125.247499107999914, 49.89731848300007 ], [ -125.247307342999989, 49.897420072000031 ], [ -125.247239299999933, 49.897456091000073 ], [ -125.247032589999932, 49.897670486000038 ], [ -125.247022481999963, 49.897691719000122 ], [ -125.246917275999976, 49.897912469000062 ], [ -125.246812330999958, 49.898140742000081 ], [ -125.246395434999982, 49.898148822000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "0.993563204999646", "sL_AssetLoss": "2403.37", "sL_BldgLoss": "2387.9", "sL_StrLoss": "2288", "sL_NStrLoss": "99.9", "sL_ContLoss": "15.47", "geom_point": "0101000020E61000003D077D86834D5FC0CD1529BD84F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.206415087999915, 49.88814319500009 ], [ -125.206427873, 49.887406098000049 ], [ -125.206965504, 49.887166194000073 ], [ -125.207381490999964, 49.887122009000102 ], [ -125.208433518999968, 49.887299994000102 ], [ -125.211379902999965, 49.887486593000027 ], [ -125.212876904, 49.887035083000036 ], [ -125.213364098999946, 49.886756009000081 ], [ -125.213547715999979, 49.886474 ], [ -125.213574987999934, 49.885861605000059 ], [ -125.213387890999982, 49.885145193000028 ], [ -125.213529692999927, 49.88457700400005 ], [ -125.21420579699999, 49.884122595000072 ], [ -125.215379050999957, 49.88404780200004 ], [ -125.215373038999985, 49.884398397 ], [ -125.21497623399992, 49.884395553000061 ], [ -125.214959380999957, 49.885377804000058 ], [ -125.214025920999973, 49.885371110000094 ], [ -125.213993454999965, 49.887260824000109 ], [ -125.213066821999988, 49.887254171000073 ], [ -125.213058747, 49.887723647000044 ], [ -125.211988282999954, 49.887715951000089 ], [ -125.211980231000013, 49.888183373000103 ], [ -125.206415087999915, 49.88814319500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152041000", "BldgCostT": "101965000", "sL_LossRatio": "0.972390536779281", "sL_AssetLoss": "72991.64", "sL_BldgLoss": "70976.38", "sL_StrLoss": "66198.75", "sL_NStrLoss": "4777.63", "sL_ContLoss": "2015.26", "geom_point": "0101000020E61000001FF8412BEA485FC02F3B698679F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.148088792999943, 49.895129297000032 ], [ -125.147188964999941, 49.895095291000068 ], [ -125.145538544999965, 49.895091475000072 ], [ -125.14479636, 49.895039829000027 ], [ -125.143449625999949, 49.89485620199999 ], [ -125.143139311999917, 49.894813888000087 ], [ -125.142290083999953, 49.894698090000119 ], [ -125.141018226999932, 49.89452465500009 ], [ -125.13989210199999, 49.894371060000019 ], [ -125.139403101999989, 49.894252134000077 ], [ -125.138968782999939, 49.894109324000091 ], [ -125.138918198999974, 49.894083925000075 ], [ -125.138624157999985, 49.893936402000072 ], [ -125.138486281999988, 49.893867237000052 ], [ -125.138087785999943, 49.893598823000062 ], [ -125.138030815999983, 49.893545992000064 ], [ -125.137721226999957, 49.893258710000055 ], [ -125.13696307, 49.892358009000077 ], [ -125.136614776999963, 49.891787837000059 ], [ -125.136494050999914, 49.891536539000086 ], [ -125.135692345, 49.889867762000051 ], [ -125.135358891999914, 49.889173724000088 ], [ -125.134640716999982, 49.888225624000036 ], [ -125.134231925000023, 49.887707704000057 ], [ -125.133219338999965, 49.886424876000085 ], [ -125.132537286999963, 49.885672047000092 ], [ -125.131872944999969, 49.884938779000066 ], [ -125.130882800999984, 49.883845855000082 ], [ -125.130358782999906, 49.883267416000081 ], [ -125.129842661999959, 49.882500165000103 ], [ -125.129810792999976, 49.882452835000073 ], [ -125.129784360999921, 49.882382597000088 ], [ -125.129672028999892, 49.882084228000096 ], [ -125.12961080300002, 49.881921579000014 ], [ -125.129601249999951, 49.881864271000069 ], [ -125.129585154999972, 49.881767690000039 ], [ -125.12956712299993, 49.881659546000023 ], [ -125.129483105999896, 49.881175141000043 ], [ -125.129564670999983, 49.880043237000045 ], [ -125.129567, 49.880011223000089 ], [ -125.12962996600001, 49.87913765900003 ], [ -125.129668312999925, 49.878605415000067 ], [ -125.129765052999943, 49.877263134000074 ], [ -125.129838421, 49.876245406000102 ], [ -125.130081005999912, 49.872923705000098 ], [ -125.130270166999964, 49.870286690000043 ], [ -125.13033247099996, 49.869939189000057 ], [ -125.130492852999978, 49.868818194000063 ], [ -125.130514357999957, 49.868666913000077 ], [ -125.130535956999907, 49.868514705000067 ], [ -125.130539285999973, 49.868491264000056 ], [ -125.131351615999961, 49.868188603000078 ], [ -125.131888683999975, 49.868080302000067 ], [ -125.133119401999949, 49.868516094000043 ], [ -125.13467551399999, 49.869377791000034 ], [ -125.135537493999948, 49.8697138920001 ], [ -125.136521101999989, 49.869929008000071 ], [ -125.138012107999941, 49.869964585000048 ], [ -125.139052589999935, 49.869900489000081 ], [ -125.139784720999955, 49.869752402000081 ], [ -125.142896279999903, 49.868659996000083 ], [ -125.14309649799999, 49.868782489000111 ], [ -125.143504697999944, 49.869538691000074 ], [ -125.143867985999961, 49.86985629 ], [ -125.144491816999974, 49.870114099000041 ], [ -125.145271189999931, 49.870145401000094 ], [ -125.146534701999983, 49.869770885000023 ], [ -125.147560685, 49.86934640500008 ], [ -125.148082786999964, 49.868896399000015 ], [ -125.148251223999964, 49.86828260200005 ], [ -125.148912283999891, 49.867504902000093 ], [ -125.149909484999938, 49.867063404000049 ], [ -125.150409492000023, 49.867036398000032 ], [ -125.151380211999935, 49.867315503000036 ], [ -125.152039, 49.867383908000065 ], [ -125.153475297999989, 49.866835614000067 ], [ -125.153741520000011, 49.866717796000025 ], [ -125.15368151899996, 49.869962682000043 ], [ -125.153032636999939, 49.869957664000047 ], [ -125.153029102999966, 49.870148597000096 ], [ -125.152090465999933, 49.870141333000106 ], [ -125.152081693999918, 49.870614821000075 ], [ -125.151198573999949, 49.870607978000102 ], [ -125.15119676499998, 49.870705543000014 ], [ -125.150726979999931, 49.870701900000043 ], [ -125.150721165, 49.871015253000159 ], [ -125.150092518999898, 49.871010375000047 ], [ -125.150088151999952, 49.87124546899999 ], [ -125.149778622999946, 49.871243066000076 ], [ -125.149713548999927, 49.874745569 ], [ -125.148529787999934, 49.874736371000026 ], [ -125.148525115, 49.874987499000099 ], [ -125.144266315999971, 49.874954301000095 ], [ -125.144279678999951, 49.875255947000056 ], [ -125.143027987999957, 49.875279099000053 ], [ -125.143013172999972, 49.874944501000108 ], [ -125.142961633999946, 49.874944097000061 ], [ -125.14298394799998, 49.873752654000086 ], [ -125.142238221999918, 49.873746815000047 ], [ -125.142219336999943, 49.87475433200008 ], [ -125.142586883999982, 49.874747537000069 ], [ -125.142622691999961, 49.875556453000094 ], [ -125.141632668999975, 49.875574752000055 ], [ -125.14162799199994, 49.875824070000064 ], [ -125.141381722999967, 49.875822139000086 ], [ -125.141382920999959, 49.875849226000106 ], [ -125.141200754999929, 49.875852592000101 ], [ -125.141192301999965, 49.876302979000073 ], [ -125.140715562999915, 49.876299239000055 ], [ -125.140712514999933, 49.876461506000126 ], [ -125.141025836999944, 49.87646396300002 ], [ -125.140958319999925, 49.880060477000022 ], [ -125.135394228999971, 49.880016691000051 ], [ -125.135399502, 49.879737653000106 ], [ -125.134039086999977, 49.879762711000097 ], [ -125.134015307999931, 49.879223432000117 ], [ -125.13359803899999, 49.879231114000092 ], [ -125.133550489999934, 49.878152554000081 ], [ -125.133144542999929, 49.878160026000046 ], [ -125.13310282399999, 49.880362072000061 ], [ -125.13296671099999, 49.880360995000018 ], [ -125.132948508999974, 49.881321540000094 ], [ -125.13381041599996, 49.881328361000016 ], [ -125.13376731699995, 49.883604816000073 ], [ -125.135944174, 49.88362201100005 ], [ -125.135937860999903, 49.883956302000094 ], [ -125.138216308, 49.883974253000119 ], [ -125.138185247999942, 49.885623185000085 ], [ -125.138473932999915, 49.885617860000082 ], [ -125.138462016999966, 49.885348221000086 ], [ -125.138879334999928, 49.885340521000067 ], [ -125.138867415999982, 49.885070882000022 ], [ -125.140119364000014, 49.885047771000075 ], [ -125.140131291999921, 49.885317409000088 ], [ -125.14138324399994, 49.885294285000143 ], [ -125.141395178000025, 49.885563923000063 ], [ -125.143899092999931, 49.885517633000063 ], [ -125.143934936999969, 49.886326547000095 ], [ -125.143517609999918, 49.886334265000045 ], [ -125.143529557999955, 49.886603903000044 ], [ -125.143112227999964, 49.886611621000114 ], [ -125.143124173, 49.886881259000035 ], [ -125.140620185, 49.886927533000133 ], [ -125.14063211499996, 49.887197172000114 ], [ -125.138545441999923, 49.887235692000083 ], [ -125.13856927799999, 49.887774970000123 ], [ -125.13773459899997, 49.887790369000136 ], [ -125.137746512999954, 49.888060007000021 ], [ -125.137197953999987, 49.888070124000073 ], [ -125.137182598999971, 49.888884249000107 ], [ -125.137068579999934, 49.888883350000135 ], [ -125.13706241499996, 49.889210171000045 ], [ -125.139878967, 49.889232324000027 ], [ -125.139835134999956, 49.89156344500006 ], [ -125.139909508999921, 49.891564028000083 ], [ -125.139907938999983, 49.891647595000059 ], [ -125.141665946999979, 49.891661384 ], [ -125.141658038999978, 49.892082760000086 ], [ -125.14293422499999, 49.892092751000099 ], [ -125.142932314999968, 49.892194642000064 ], [ -125.143978890999904, 49.892202826000116 ], [ -125.143973314999982, 49.892500708000043 ], [ -125.147375177999919, 49.892527239000053 ], [ -125.147373911999935, 49.892595163000053 ], [ -125.148819126999967, 49.892606401000094 ], [ -125.148818874999961, 49.892619956000033 ], [ -125.149556298999954, 49.892625683000091 ], [ -125.149556230999977, 49.892629311000107 ], [ -125.150143477, 49.892633868000118 ], [ -125.150123529999973, 49.893707419000094 ], [ -125.152059571, 49.893722421000049 ], [ -125.15205488, 49.893975430000111 ], [ -125.152023593999971, 49.895663040000066 ], [ -125.151694491999933, 49.895587084000049 ], [ -125.149832570999962, 49.89528139800008 ], [ -125.149606222999978, 49.895259016000061 ], [ -125.14932566499999, 49.895231278000033 ], [ -125.148992159999978, 49.895198306000061 ], [ -125.14846010899997, 49.895145712000108 ], [ -125.148088792999943, 49.895129297000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.994053346372857", "sL_AssetLoss": "633.97", "sL_BldgLoss": "630.2", "sL_StrLoss": "600", "sL_NStrLoss": "30.2", "sL_ContLoss": "3.77", "geom_point": "0101000020E61000001A76523E884A5FC06EE8FBE31CF34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.164455629999949, 49.89911148000008 ], [ -125.167930786999989, 49.899137927 ], [ -125.167927529999972, 49.899317007000036 ], [ -125.167753126999983, 49.899341839000037 ], [ -125.165317396999967, 49.899412879000046 ], [ -125.162854420999963, 49.899672303000088 ], [ -125.162351830999938, 49.899779048000013 ], [ -125.162364349999947, 49.89909551100002 ], [ -125.164455629999949, 49.89911148000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993024427764369", "sL_AssetLoss": "377.03", "sL_BldgLoss": "374.4", "sL_StrLoss": "346", "sL_NStrLoss": "28.4", "sL_ContLoss": "2.63", "geom_point": "0101000020E61000003B583993BA485FC002F26770C2F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.135743871999964, 49.88054088500008 ], [ -125.136995704999919, 49.880517809000054 ], [ -125.13703142699994, 49.881326727000058 ], [ -125.135779571999961, 49.881349803000127 ], [ -125.135743871999964, 49.88054088500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99376251", "BldgCostT": "66830001", "sL_LossRatio": "0.963259995154032", "sL_AssetLoss": "57862.54", "sL_BldgLoss": "55736.67", "sL_StrLoss": "51337.21", "sL_NStrLoss": "4399.46", "sL_ContLoss": "2125.87", "geom_point": "0101000020E61000009F2497DE42485FC08C5B1ECEF0F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.146508214999955, 49.895812492000054 ], [ -125.144993297999989, 49.895255693000131 ], [ -125.143323195999969, 49.894980789000094 ], [ -125.14286508899994, 49.895024901000063 ], [ -125.142704292999937, 49.895127508000051 ], [ -125.142381294999964, 49.895088993000044 ], [ -125.142220187999939, 49.894902508000037 ], [ -125.141541711999977, 49.894698806000029 ], [ -125.139738015999953, 49.894499396000128 ], [ -125.13746138499998, 49.894351298000061 ], [ -125.136856403999971, 49.894237393000061 ], [ -125.136134896, 49.893971005000026 ], [ -125.133173395999904, 49.893134988000035 ], [ -125.132073098999967, 49.892481295000074 ], [ -125.130662579999949, 49.891435897000086 ], [ -125.129479893999985, 49.890792190000056 ], [ -125.128921993999938, 49.890776488000043 ], [ -125.127821200999918, 49.891065603000101 ], [ -125.127469505999954, 49.891027183000112 ], [ -125.127113977999912, 49.890836296000089 ], [ -125.126866686999961, 49.890615603000079 ], [ -125.12666920099997, 49.890223897000062 ], [ -125.126848701999975, 49.890175495000108 ], [ -125.127693689999958, 49.89040341200009 ], [ -125.128145704, 49.889926302000028 ], [ -125.12812589499994, 49.889809503000052 ], [ -125.12704129399998, 49.889164287000028 ], [ -125.126474986999966, 49.888949299000096 ], [ -125.12634908499993, 49.888970601000103 ], [ -125.125727279999978, 49.889394997000117 ], [ -125.125722581999966, 49.889611504000129 ], [ -125.126488487999922, 49.889920609000107 ], [ -125.126370801999968, 49.890094291000061 ], [ -125.12613427899997, 49.890098599000062 ], [ -125.125712212999957, 49.889998890000115 ], [ -125.125291264999987, 49.889770808 ], [ -125.12530412199996, 49.889098406000102 ], [ -125.125261696999971, 49.88909918500007 ], [ -125.125259084999982, 49.889039763 ], [ -125.12524985099995, 49.888829544000089 ], [ -125.124832497999975, 49.888837195000129 ], [ -125.124809716999962, 49.888318483000027 ], [ -125.124568540999988, 49.888314165000097 ], [ -125.124533007999929, 49.888302969000058 ], [ -125.123974117000031, 49.888313212000121 ], [ -125.123965823, 49.888124273000109 ], [ -125.123941040999938, 49.888116465000081 ], [ -125.123876727999914, 49.888045139000056 ], [ -125.123544932999962, 49.888051218000072 ], [ -125.123522157999915, 49.887532305 ], [ -125.123367939, 49.887244887000058 ], [ -125.123092089999915, 49.887249940000054 ], [ -125.123080787999953, 49.886992374000052 ], [ -125.123063063999965, 49.886980614000066 ], [ -125.122662920999957, 49.886987943000165 ], [ -125.122650590999925, 49.886706913000097 ], [ -125.122418439999947, 49.886552864000073 ], [ -125.12209394099996, 49.886163565000068 ], [ -125.123210463999953, 49.886168339000029 ], [ -125.128052708999917, 49.886079532000032 ], [ -125.128059033999932, 49.886223323000088 ], [ -125.128245341999985, 49.886224765000051 ], [ -125.129039271999915, 49.886240630000096 ], [ -125.129059604999938, 49.885172537000123 ], [ -125.126889380999941, 49.88515525800009 ], [ -125.126896715999948, 49.88477093700002 ], [ -125.126408886999954, 49.884767047000068 ], [ -125.126412653999964, 49.884569842000133 ], [ -125.125256853999971, 49.884560618000066 ], [ -125.125288787999978, 49.882890325000048 ], [ -125.121365708999974, 49.882858922000061 ], [ -125.121434768999933, 49.879262435000101 ], [ -125.12475088399999, 49.87928898800002 ], [ -125.124816238, 49.875872111000049 ], [ -125.125349699999916, 49.875876374000029 ], [ -125.125379615000014, 49.87431124000004 ], [ -125.12520468299999, 49.874309842000073 ], [ -125.125238333999974, 49.872549475000035 ], [ -125.125046385999937, 49.872547942000089 ], [ -125.125054466999941, 49.872125295000053 ], [ -125.124708998999935, 49.872122534 ], [ -125.124714435999948, 49.871838275000073 ], [ -125.123509557999938, 49.871860359000046 ], [ -125.123508336999933, 49.871924134000047 ], [ -125.121735470999937, 49.871909928000079 ], [ -125.12172150799999, 49.87263747700009 ], [ -125.117918755999952, 49.872606909000083 ], [ -125.118167012999947, 49.872550898000071 ], [ -125.120347313999957, 49.871754803000101 ], [ -125.122904303, 49.87041319800008 ], [ -125.12463649599998, 49.869275198000032 ], [ -125.125734086999984, 49.868841698000082 ], [ -125.12588042099999, 49.868783901000036 ], [ -125.126256810000015, 49.868786698000122 ], [ -125.12726909, 49.869010294000098 ], [ -125.128520391999956, 49.8689790150001 ], [ -125.130078881999978, 49.868662800000038 ], [ -125.130539285999973, 49.868491264000056 ], [ -125.130535956999907, 49.868514705000067 ], [ -125.130514357999957, 49.868666913000077 ], [ -125.130492852999978, 49.868818194000063 ], [ -125.13033247099996, 49.869939189000057 ], [ -125.130270166999964, 49.870286690000043 ], [ -125.130081005999912, 49.872923705000098 ], [ -125.129838421, 49.876245406000102 ], [ -125.129765052999943, 49.877263134000074 ], [ -125.129668312999925, 49.878605415000067 ], [ -125.12962996600001, 49.87913765900003 ], [ -125.129567, 49.880011223000089 ], [ -125.129564670999983, 49.880043237000045 ], [ -125.129483105999896, 49.881175141000043 ], [ -125.12956712299993, 49.881659546000023 ], [ -125.129585154999972, 49.881767690000039 ], [ -125.129601249999951, 49.881864271000069 ], [ -125.12961080300002, 49.881921579000014 ], [ -125.129672028999892, 49.882084228000096 ], [ -125.129784360999921, 49.882382597000088 ], [ -125.129810792999976, 49.882452835000073 ], [ -125.129842661999959, 49.882500165000103 ], [ -125.130358782999906, 49.883267416000081 ], [ -125.130882800999984, 49.883845855000082 ], [ -125.131872944999969, 49.884938779000066 ], [ -125.132537286999963, 49.885672047000092 ], [ -125.133219338999965, 49.886424876000085 ], [ -125.134231925000023, 49.887707704000057 ], [ -125.134640716999982, 49.888225624000036 ], [ -125.135358891999914, 49.889173724000088 ], [ -125.135692345, 49.889867762000051 ], [ -125.136494050999914, 49.891536539000086 ], [ -125.136614776999963, 49.891787837000059 ], [ -125.13696307, 49.892358009000077 ], [ -125.137721226999957, 49.893258710000055 ], [ -125.138030815999983, 49.893545992000064 ], [ -125.138087785999943, 49.893598823000062 ], [ -125.138486281999988, 49.893867237000052 ], [ -125.138624157999985, 49.893936402000072 ], [ -125.138918198999974, 49.894083925000075 ], [ -125.138968782999939, 49.894109324000091 ], [ -125.139403101999989, 49.894252134000077 ], [ -125.13989210199999, 49.894371060000019 ], [ -125.141018226999932, 49.89452465500009 ], [ -125.142290083999953, 49.894698090000119 ], [ -125.143139311999917, 49.894813888000087 ], [ -125.143449625999949, 49.89485620199999 ], [ -125.14479636, 49.895039829000027 ], [ -125.145538544999965, 49.895091475000072 ], [ -125.147188964999941, 49.895095291000068 ], [ -125.148088792999943, 49.895129297000032 ], [ -125.14846010899997, 49.895145712000108 ], [ -125.148992159999978, 49.895198306000061 ], [ -125.14932566499999, 49.895231278000033 ], [ -125.149606222999978, 49.895259016000061 ], [ -125.149832570999962, 49.89528139800008 ], [ -125.151694491999933, 49.895587084000049 ], [ -125.152023593999971, 49.895663040000066 ], [ -125.152018993999945, 49.89591116500003 ], [ -125.151970391999939, 49.895900789000102 ], [ -125.150654710999987, 49.895745598000133 ], [ -125.15009700899995, 49.895764104000108 ], [ -125.149372896999964, 49.896056098000081 ], [ -125.14894782, 49.897295244000112 ], [ -125.148734103999942, 49.897293584000067 ], [ -125.147995989999941, 49.896729712000123 ], [ -125.146508214999955, 49.895812492000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20889584", "BldgCostT": "13438334", "sL_LossRatio": "0.98609854381353", "sL_AssetLoss": "6995.67", "sL_BldgLoss": "6898.42", "sL_StrLoss": "6345.42", "sL_NStrLoss": "553", "sL_ContLoss": "97.25", "geom_point": "0101000020E6100000E0B0C099504B5FC01AF7C52963F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.162346235999948, 49.900084548000109 ], [ -125.162348882999964, 49.899940028000131 ], [ -125.162503260999927, 49.900043862000125 ], [ -125.16321105599998, 49.900519881000108 ], [ -125.163893627000022, 49.900896293000073 ], [ -125.16440987499999, 49.901180972000127 ], [ -125.165231234999936, 49.901549627000101 ], [ -125.165265805, 49.901565159000093 ], [ -125.165765138999987, 49.901764482000026 ], [ -125.166260669999971, 49.90196227400002 ], [ -125.16937683899999, 49.903206032000142 ], [ -125.171576267999967, 49.904118983000025 ], [ -125.17185814399997, 49.904235990000124 ], [ -125.172499149999936, 49.90450203200006 ], [ -125.173241919999938, 49.904993231000027 ], [ -125.173345507, 49.905086366000049 ], [ -125.173497400999963, 49.905222916000056 ], [ -125.175101980999941, 49.90666551700005 ], [ -125.17530009799998, 49.906843647000123 ], [ -125.175881490999984, 49.907366259000071 ], [ -125.177163718999935, 49.908518925000102 ], [ -125.177936342999985, 49.90909524100006 ], [ -125.179577329999987, 49.910319271000056 ], [ -125.180820289999957, 49.911263731000098 ], [ -125.183903879999903, 49.913606715000078 ], [ -125.184207525999952, 49.913989349000154 ], [ -125.184539096999984, 49.914679722000088 ], [ -125.184700747999955, 49.915217754000047 ], [ -125.184845073999895, 49.915853550000072 ], [ -125.184939583999949, 49.916269784000058 ], [ -125.184999261999948, 49.916539635000078 ], [ -125.18526427799999, 49.917737894 ], [ -125.185366811999984, 49.91885908800009 ], [ -125.184794821999958, 49.918830856000071 ], [ -125.184616109999979, 49.918515886000073 ], [ -125.183898913999911, 49.91560619200007 ], [ -125.183061186999936, 49.91433440600013 ], [ -125.182358015999952, 49.913583794000061 ], [ -125.181161107, 49.91265240200002 ], [ -125.180617607999963, 49.912330509000071 ], [ -125.179436102999929, 49.911776498000044 ], [ -125.178286495999913, 49.911645494000041 ], [ -125.177702605999954, 49.911342084000083 ], [ -125.176558804999971, 49.910094504000035 ], [ -125.175048700000019, 49.908720097000071 ], [ -125.173666403999945, 49.906766084000047 ], [ -125.173109022999967, 49.906259578000046 ], [ -125.172911099999979, 49.906079715000011 ], [ -125.172039289999944, 49.905591205000135 ], [ -125.169438093999958, 49.904444695000066 ], [ -125.168171085999958, 49.90350470000007 ], [ -125.166342585999985, 49.902460708000064 ], [ -125.165675411000024, 49.901888201000098 ], [ -125.165133995999923, 49.901610493000099 ], [ -125.164155415999986, 49.901205995000112 ], [ -125.162422082999939, 49.900140699000083 ], [ -125.162346235999948, 49.900084548000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87940083", "BldgCostT": "60648333", "sL_LossRatio": "0.993614553114551", "sL_AssetLoss": "43826.22", "sL_BldgLoss": "43546.37", "sL_StrLoss": "41628.49", "sL_NStrLoss": "1917.88", "sL_ContLoss": "279.85", "geom_point": "0101000020E61000006F6C6E33B24B5FC042C0C69AB6F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.181558672999984, 49.90559407300001 ], [ -125.181141190999952, 49.905601930000053 ], [ -125.181153355999953, 49.905871559000076 ], [ -125.181570839999935, 49.905863703000065 ], [ -125.181558672999984, 49.90559407300001 ], [ -125.182811116999957, 49.905570494000067 ], [ -125.182847635999977, 49.90637938400009 ], [ -125.182430147999952, 49.906387246000115 ], [ -125.182466662999985, 49.907196136000088 ], [ -125.18204916799999, 49.907203995000025 ], [ -125.182051475999955, 49.907255128000052 ], [ -125.18368947499999, 49.907267341000107 ], [ -125.183682228999942, 49.907673271000135 ], [ -125.18206981899999, 49.908186968000017 ], [ -125.181847587999982, 49.908312993000081 ], [ -125.181706406999965, 49.908424355000079 ], [ -125.181459586999964, 49.909069949000063 ], [ -125.181432934999961, 49.90910322700006 ], [ -125.181208966, 49.909382805000043 ], [ -125.180876443, 49.909597798000107 ], [ -125.180748413999964, 49.909680584000128 ], [ -125.179726354999943, 49.910237644000048 ], [ -125.179577329999987, 49.910319271000056 ], [ -125.177936342999985, 49.90909524100006 ], [ -125.177163718999935, 49.908518925000102 ], [ -125.175881490999984, 49.907366259000071 ], [ -125.17530009799998, 49.906843647000123 ], [ -125.175101980999941, 49.90666551700005 ], [ -125.173497400999963, 49.905222916000056 ], [ -125.173345507, 49.905086366000049 ], [ -125.173241919999938, 49.904993231000027 ], [ -125.172499149999936, 49.90450203200006 ], [ -125.17185814399997, 49.904235990000124 ], [ -125.171576267999967, 49.904118983000025 ], [ -125.16937683899999, 49.903206032000142 ], [ -125.166260669999971, 49.90196227400002 ], [ -125.165765138999987, 49.901764482000026 ], [ -125.165265805, 49.901565159000093 ], [ -125.165231234999936, 49.901549627000101 ], [ -125.16440987499999, 49.901180972000127 ], [ -125.163893627000022, 49.900896293000073 ], [ -125.16321105599998, 49.900519881000108 ], [ -125.162503260999927, 49.900043862000125 ], [ -125.162348882999964, 49.899940028000131 ], [ -125.162351830999938, 49.899779048000013 ], [ -125.162854420999963, 49.899672303000088 ], [ -125.165317396999967, 49.899412879000046 ], [ -125.167753126999983, 49.899341839000037 ], [ -125.167927529999972, 49.899317007000036 ], [ -125.167924432999939, 49.899487244000099 ], [ -125.168604982999938, 49.899492410000086 ], [ -125.16860064799999, 49.899730901000133 ], [ -125.169127376999981, 49.899734897000052 ], [ -125.169123554999885, 49.899945346000088 ], [ -125.169643069999921, 49.899949285000083 ], [ -125.169633640999976, 49.900468577000026 ], [ -125.17083245699996, 49.900477655000074 ], [ -125.17082106699992, 49.901105842000078 ], [ -125.172866917999897, 49.901121305000103 ], [ -125.172849258, 49.902097740000023 ], [ -125.174801103999968, 49.902112457000136 ], [ -125.174788223999926, 49.902826225000076 ], [ -125.174819246999959, 49.902826458000099 ], [ -125.174812943999953, 49.903175819000076 ], [ -125.175493541999941, 49.903180942000063 ], [ -125.175482140999961, 49.903813232000033 ], [ -125.175841467999931, 49.903815935000125 ], [ -125.175831507999959, 49.904368605000116 ], [ -125.176962758999977, 49.904377107000059 ], [ -125.176954588999962, 49.904831091000119 ], [ -125.178599996999964, 49.904843437000096 ], [ -125.178599848999966, 49.904840146000062 ], [ -125.179017325999936, 49.904832299000091 ], [ -125.179005173999968, 49.904562667000086 ], [ -125.179840120999927, 49.904546969000108 ], [ -125.179827964999959, 49.904277338000064 ], [ -125.181497845999957, 49.904245922000023 ], [ -125.181485679999966, 49.903976292000017 ], [ -125.18190314899995, 49.903968435000131 ], [ -125.181842314999955, 49.902620282000072 ], [ -125.181424858999918, 49.902628140000061 ], [ -125.181351879999966, 49.901010357000118 ], [ -125.182186762999947, 49.900994642000143 ], [ -125.182174595000021, 49.900725012000102 ], [ -125.183426911999945, 49.900701428000019 ], [ -125.183439086999968, 49.900971058000017 ], [ -125.187196049999955, 49.900900225000065 ], [ -125.187208245999926, 49.90116985500002 ], [ -125.188878009999911, 49.901138333000056 ], [ -125.188865806999971, 49.900868705000072 ], [ -125.190535559999915, 49.90083716000008 ], [ -125.190502561999892, 49.900108699000093 ], [ -125.19302669699999, 49.900492390000082 ], [ -125.193040183999926, 49.900789798000069 ], [ -125.193457620999979, 49.90078189900008 ], [ -125.19346985199999, 49.901051527000043 ], [ -125.19472216799997, 49.901027822000138 ], [ -125.194734405999938, 49.90129744900009 ], [ -125.195151846, 49.901289544000115 ], [ -125.195164085999977, 49.901559173000095 ], [ -125.195581529, 49.901551266000126 ], [ -125.195642743999898, 49.902899405000021 ], [ -125.195225287999932, 49.902907313000092 ], [ -125.195237528999982, 49.903176941000069 ], [ -125.197742267999971, 49.903129475000078 ], [ -125.197754522999958, 49.903399102000094 ], [ -125.198171981, 49.903391186000142 ], [ -125.198196496, 49.903930441000092 ], [ -125.198613958999886, 49.90392252300007 ], [ -125.198626218999934, 49.904192150000092 ], [ -125.199461147999969, 49.90417631 ], [ -125.199492607999943, 49.90486788100003 ], [ -125.197922623999972, 49.905336724000058 ], [ -125.196429512999913, 49.905781720000057 ], [ -125.194810201999985, 49.906044108000067 ], [ -125.193931585999977, 49.90613650200001 ], [ -125.189624906999967, 49.906599277000083 ], [ -125.188160435999976, 49.906758449000051 ], [ -125.186275219999942, 49.906937787000103 ], [ -125.185462047000016, 49.907106198000058 ], [ -125.184450066999929, 49.907428633000031 ], [ -125.183731324999911, 49.90744217600011 ], [ -125.183719147999938, 49.90717254700008 ], [ -125.183301652999887, 49.907180411000077 ], [ -125.183204247999953, 49.905023372000137 ], [ -125.182786771999986, 49.905031234000099 ], [ -125.182774599999931, 49.904761605000019 ], [ -125.182357123999964, 49.904769465000101 ], [ -125.18236929399994, 49.905039095000056 ], [ -125.181534341999964, 49.905054812000124 ], [ -125.181558672999984, 49.90559407300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165819834", "BldgCostT": "111413334", "sL_LossRatio": "0.993348281913018", "sL_AssetLoss": "78024.804", "sL_BldgLoss": "77505.805", "sL_StrLoss": "74507.185", "sL_NStrLoss": "2998.62", "sL_ContLoss": "518.999", "geom_point": "0101000020E61000004CF2757CA84D5FC07DF1EAC149FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.207935804999963, 49.966675502000072 ], [ -125.207965194999957, 49.966369310000076 ], [ -125.208319592999928, 49.965876494000085 ], [ -125.208240087999954, 49.965392304000083 ], [ -125.20856078099996, 49.965061902000066 ], [ -125.20846441899999, 49.964802695000031 ], [ -125.208708978999979, 49.964033599000089 ], [ -125.20889838799998, 49.962096705000086 ], [ -125.20822089699999, 49.96128198600006 ], [ -125.2074690099999, 49.960099891000027 ], [ -125.206735485999914, 49.958080394000056 ], [ -125.20610071199998, 49.957003699000076 ], [ -125.205473488999957, 49.956404091000095 ], [ -125.205401986999917, 49.95629092800003 ], [ -125.205007389999949, 49.955666411000024 ], [ -125.204111011999899, 49.954991302000074 ], [ -125.203219993999951, 49.953487303000031 ], [ -125.202976494000026, 49.953339189000062 ], [ -125.20235759399999, 49.953198215000022 ], [ -125.201760817999968, 49.952661304000124 ], [ -125.201331312999955, 49.952426292000055 ], [ -125.200411282999951, 49.952120105000091 ], [ -125.199492198999934, 49.951516194000092 ], [ -125.198773208999953, 49.951323896000083 ], [ -125.197527184999927, 49.950627494000095 ], [ -125.197326604999958, 49.950418968000065 ], [ -125.197837487999934, 49.950379910000066 ], [ -125.197916395999954, 49.950370018000065 ], [ -125.198544810000016, 49.949735414000017 ], [ -125.199583430999951, 49.950826518000078 ], [ -125.200132160999914, 49.950510256000015 ], [ -125.20035203599997, 49.950684476000141 ], [ -125.202179163999972, 49.952176913000088 ], [ -125.203658929999946, 49.953617318000099 ], [ -125.204228265999944, 49.954372252000034 ], [ -125.20466788799996, 49.954892449000091 ], [ -125.205364897999928, 49.95568047300015 ], [ -125.205867790999946, 49.956248994000113 ], [ -125.206689484999941, 49.957240393000049 ], [ -125.206959135999909, 49.957744315000099 ], [ -125.207024193999985, 49.957865904000101 ], [ -125.207279386999943, 49.958422599000144 ], [ -125.207408981999947, 49.958752238000081 ], [ -125.207470893, 49.9589096650001 ], [ -125.207846580999941, 49.959865302000054 ], [ -125.208084810999949, 49.960357102000096 ], [ -125.208344388999961, 49.960735707000055 ], [ -125.209252803999945, 49.961795109000043 ], [ -125.209323108999968, 49.961921505000063 ], [ -125.209441274999918, 49.962340499000042 ], [ -125.209437677999972, 49.962416527000059 ], [ -125.209353605999979, 49.964187585000026 ], [ -125.209270857999982, 49.964394829000113 ], [ -125.208996283999923, 49.965082631000065 ], [ -125.208717464999964, 49.965781007000011 ], [ -125.208694997999942, 49.965837270000094 ], [ -125.208700132999923, 49.966267067000054 ], [ -125.208727388999975, 49.966343887000072 ], [ -125.208761595999974, 49.966440153000036 ], [ -125.208806389999936, 49.966566360000101 ], [ -125.209613795999985, 49.966388067000047 ], [ -125.210387489999945, 49.966217184000122 ], [ -125.211474261999953, 49.965839266000032 ], [ -125.212497683999956, 49.965494158000084 ], [ -125.21284333499996, 49.965334801000047 ], [ -125.214111259999953, 49.964469033000057 ], [ -125.214598190999951, 49.964197372000136 ], [ -125.215293169999967, 49.96382109000006 ], [ -125.215703255000037, 49.963558788000071 ], [ -125.21579497, 49.963494705000095 ], [ -125.216606348999917, 49.962912467000088 ], [ -125.217034290999919, 49.962597181000021 ], [ -125.217717237999949, 49.962094078000071 ], [ -125.218459497999945, 49.961584797000093 ], [ -125.218573255999971, 49.961506736000032 ], [ -125.219227572999941, 49.961142740000099 ], [ -125.219432492999886, 49.961056991000042 ], [ -125.219711903999951, 49.960939399000033 ], [ -125.220348194999957, 49.960807205000044 ], [ -125.222843477999959, 49.960610039000052 ], [ -125.22299050799991, 49.960978832000123 ], [ -125.223096185999907, 49.961075833000045 ], [ -125.224094988999965, 49.961590914000091 ], [ -125.22338122699999, 49.962179305000099 ], [ -125.222188692999936, 49.961577404000117 ], [ -125.221995902999979, 49.96152211100015 ], [ -125.221546088999915, 49.961500893000036 ], [ -125.221519612999955, 49.962404304000053 ], [ -125.221481221999966, 49.963671907000041 ], [ -125.221052624999942, 49.964288297000095 ], [ -125.220952593999954, 49.964432390000056 ], [ -125.220891090999928, 49.964601896000055 ], [ -125.220796591999914, 49.965814219000031 ], [ -125.218380709999977, 49.965676508000108 ], [ -125.218216307999967, 49.965601647 ], [ -125.216817845999913, 49.964964926000029 ], [ -125.215247752999943, 49.9663660840001 ], [ -125.215072990999928, 49.966522014000134 ], [ -125.21429394799999, 49.967217203000068 ], [ -125.21344779399999, 49.967970075000053 ], [ -125.212894612999946, 49.968462230000071 ], [ -125.21273040299999, 49.968608318000044 ], [ -125.21179964699995, 49.969436371000072 ], [ -125.210955851000037, 49.969690260000093 ], [ -125.209149880999945, 49.968478495000049 ], [ -125.208494839999929, 49.967795616000025 ], [ -125.208446381, 49.967745097000076 ], [ -125.207935804999963, 49.966675502000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117028250", "BldgCostT": "79235000", "sL_LossRatio": "0.994587070825916", "sL_AssetLoss": "50472.118", "sL_BldgLoss": "50198.916", "sL_StrLoss": "48725.016", "sL_NStrLoss": "1473.9", "sL_ContLoss": "273.202", "geom_point": "0101000020E610000029C99D46984D5FC0716083CFA0FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.209736007999979, 49.960211579000074 ], [ -125.209786589999936, 49.959289099000074 ], [ -125.209808745999936, 49.958884418000075 ], [ -125.209831593999922, 49.958467894000059 ], [ -125.208916301, 49.958451500000066 ], [ -125.207279386999943, 49.958422599000144 ], [ -125.207024193999985, 49.957865904000101 ], [ -125.206959135999909, 49.957744315000099 ], [ -125.206689484999941, 49.957240393000049 ], [ -125.205867790999946, 49.956248994000113 ], [ -125.206519607999923, 49.956190806000087 ], [ -125.20692693399991, 49.956196170000091 ], [ -125.216374619999982, 49.956319923000144 ], [ -125.217300323999964, 49.956332048000057 ], [ -125.217259803999951, 49.957259529000112 ], [ -125.217231584999922, 49.957905104000133 ], [ -125.217190269999918, 49.958525515000098 ], [ -125.21715082799993, 49.959118308000029 ], [ -125.217145814, 49.959248713000072 ], [ -125.217136864999986, 49.959261850000132 ], [ -125.217047064999946, 49.959394076000059 ], [ -125.21663827499998, 49.959995895000084 ], [ -125.216398103999921, 49.960182999000075 ], [ -125.216216196999966, 49.960226591000016 ], [ -125.214976094999912, 49.960212411000093 ], [ -125.212779009, 49.960174998000049 ], [ -125.21221161599999, 49.96026088800005 ], [ -125.211612611999925, 49.960246713000082 ], [ -125.209736007999979, 49.960211579000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182208553", "BldgCostT": "123108746", "sL_LossRatio": "0.990803819310262", "sL_AssetLoss": "57058.47", "sL_BldgLoss": "56533.75", "sL_StrLoss": "52866.93", "sL_NStrLoss": "3666.82", "sL_ContLoss": "524.72", "geom_point": "0101000020E6100000439F8F32A24D5FC0B4A9AA6525FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.207279386999943, 49.958422599000144 ], [ -125.208916301, 49.958451500000066 ], [ -125.209831593999922, 49.958467894000059 ], [ -125.209808745999936, 49.958884418000075 ], [ -125.209786589999936, 49.959289099000074 ], [ -125.209736007999979, 49.960211579000074 ], [ -125.211612611999925, 49.960246713000082 ], [ -125.21221161599999, 49.96026088800005 ], [ -125.212779009, 49.960174998000049 ], [ -125.214976094999912, 49.960212411000093 ], [ -125.216216196999966, 49.960226591000016 ], [ -125.216398103999921, 49.960182999000075 ], [ -125.21663827499998, 49.959995895000084 ], [ -125.217047064999946, 49.959394076000059 ], [ -125.217136864999986, 49.959261850000132 ], [ -125.217145814, 49.959248713000072 ], [ -125.21715082799993, 49.959118308000029 ], [ -125.219579510999964, 49.958572789000044 ], [ -125.219588393999942, 49.958689078000063 ], [ -125.219618133, 49.959079138000064 ], [ -125.219659196999885, 49.959617308000063 ], [ -125.219446595999983, 49.960148897000025 ], [ -125.219432492999886, 49.961056991000042 ], [ -125.219227572999941, 49.961142740000099 ], [ -125.218573255999971, 49.961506736000032 ], [ -125.218459497999945, 49.961584797000093 ], [ -125.217717237999949, 49.962094078000071 ], [ -125.217034290999919, 49.962597181000021 ], [ -125.216606348999917, 49.962912467000088 ], [ -125.21579497, 49.963494705000095 ], [ -125.215703255000037, 49.963558788000071 ], [ -125.215293169999967, 49.96382109000006 ], [ -125.214598190999951, 49.964197372000136 ], [ -125.214111259999953, 49.964469033000057 ], [ -125.21284333499996, 49.965334801000047 ], [ -125.212497683999956, 49.965494158000084 ], [ -125.211474261999953, 49.965839266000032 ], [ -125.210387489999945, 49.966217184000122 ], [ -125.209613795999985, 49.966388067000047 ], [ -125.208806389999936, 49.966566360000101 ], [ -125.208761595999974, 49.966440153000036 ], [ -125.208727388999975, 49.966343887000072 ], [ -125.208700132999923, 49.966267067000054 ], [ -125.208694997999942, 49.965837270000094 ], [ -125.208717464999964, 49.965781007000011 ], [ -125.208996283999923, 49.965082631000065 ], [ -125.209270857999982, 49.964394829000113 ], [ -125.209353605999979, 49.964187585000026 ], [ -125.209437677999972, 49.962416527000059 ], [ -125.209441274999918, 49.962340499000042 ], [ -125.209323108999968, 49.961921505000063 ], [ -125.209252803999945, 49.961795109000043 ], [ -125.208344388999961, 49.960735707000055 ], [ -125.208084810999949, 49.960357102000096 ], [ -125.207846580999941, 49.959865302000054 ], [ -125.207470893, 49.9589096650001 ], [ -125.207408981999947, 49.958752238000081 ], [ -125.207279386999943, 49.958422599000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64254333", "BldgCostT": "44313333", "sL_LossRatio": "0.995099302196105", "sL_AssetLoss": "31193.721", "sL_BldgLoss": "31040.85", "sL_StrLoss": "30154.43", "sL_NStrLoss": "886.42", "sL_ContLoss": "152.871", "geom_point": "0101000020E61000000862D15BD94D5FC0890818C088FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.219588393999942, 49.958689078000063 ], [ -125.219579510999964, 49.958572789000044 ], [ -125.21715082799993, 49.959118308000029 ], [ -125.217190269999918, 49.958525515000098 ], [ -125.217231584999922, 49.957905104000133 ], [ -125.217259803999951, 49.957259529000112 ], [ -125.217300323999964, 49.956332048000057 ], [ -125.216374619999982, 49.956319923000144 ], [ -125.20692693399991, 49.956196170000091 ], [ -125.206519607999923, 49.956190806000087 ], [ -125.205867790999946, 49.956248994000113 ], [ -125.205364897999928, 49.95568047300015 ], [ -125.20466788799996, 49.954892449000091 ], [ -125.206838990999984, 49.954651912 ], [ -125.20696706899993, 49.95465196300006 ], [ -125.2070933, 49.954652018000033 ], [ -125.207500912999961, 49.954652206000034 ], [ -125.207841510999955, 49.954693288000051 ], [ -125.208143127999961, 49.954759631000066 ], [ -125.208674504999976, 49.954876504000055 ], [ -125.209113291000023, 49.954883195000058 ], [ -125.21042710099999, 49.954898092000057 ], [ -125.212035334999968, 49.954927643000062 ], [ -125.212017217999986, 49.955127906 ], [ -125.212000092999943, 49.955254960000104 ], [ -125.217325837999951, 49.955188186000029 ], [ -125.217853018999946, 49.955187316000064 ], [ -125.218037523999968, 49.955191909000078 ], [ -125.218819006999951, 49.95518986600004 ], [ -125.218875738999955, 49.956090003000043 ], [ -125.218856258999921, 49.957019801000079 ], [ -125.21970087899993, 49.95699595300006 ], [ -125.219964643999973, 49.956997829000017 ], [ -125.219948215, 49.957129025000043 ], [ -125.21987464099999, 49.958257412000123 ], [ -125.224099535, 49.958365257000032 ], [ -125.224105168999984, 49.958487528000028 ], [ -125.22452309599997, 49.958479510000139 ], [ -125.224526499999939, 49.958553313000024 ], [ -125.225627404999926, 49.958561089000092 ], [ -125.22562457099994, 49.958728232000048 ], [ -125.226090642999949, 49.95871928400009 ], [ -125.22600672, 49.958739696000073 ], [ -125.225997021999888, 49.958743346000077 ], [ -125.225748646999989, 49.958836788000099 ], [ -125.225519224999928, 49.958970927000045 ], [ -125.22512497299999, 49.959372767000083 ], [ -125.224926408999977, 49.959577262000039 ], [ -125.224611344999914, 49.959776119000026 ], [ -125.224468569999928, 49.959866242000089 ], [ -125.223775495, 49.960301942000115 ], [ -125.223714357999953, 49.960328599000064 ], [ -125.223640859999961, 49.960360674000071 ], [ -125.223286878999943, 49.96051516400005 ], [ -125.222843477999959, 49.960610039000052 ], [ -125.220348194999957, 49.960807205000044 ], [ -125.219711903999951, 49.960939399000033 ], [ -125.219432492999886, 49.961056991000042 ], [ -125.219446595999983, 49.960148897000025 ], [ -125.219659196999885, 49.959617308000063 ], [ -125.219618133, 49.959079138000064 ], [ -125.219588393999942, 49.958689078000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253003166", "BldgCostT": "169646666", "sL_LossRatio": "0.944504585569198", "sL_AssetLoss": "81927.67", "sL_BldgLoss": "77381.06", "sL_StrLoss": "72237.1", "sL_NStrLoss": "5143.96", "sL_ContLoss": "4546.61", "geom_point": "0101000020E61000004B50CC72C0505FC0DF358D927C004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.258658091999962, 50.005489274000077 ], [ -125.25833309399999, 50.003859435000045 ], [ -125.253032815000012, 50.003901789000068 ], [ -125.251254208999967, 50.003903191000042 ], [ -125.247490487999954, 50.00390439300002 ], [ -125.247383092999954, 50.003903711000113 ], [ -125.247383108999955, 50.003841615000113 ], [ -125.247382994999938, 50.002050702000076 ], [ -125.247373273999969, 50.000288472000079 ], [ -125.247373216999975, 50.000275800000097 ], [ -125.247495975999982, 50.000276615000097 ], [ -125.247546589999928, 50.000276617000033 ], [ -125.249026167999915, 50.000276315000093 ], [ -125.250172745999947, 50.000276956000036 ], [ -125.251407192999963, 50.000276400000111 ], [ -125.253057282999976, 50.000278602000094 ], [ -125.253369201999988, 50.000280967000066 ], [ -125.25359217799992, 50.000282654000095 ], [ -125.25892898799998, 50.000322909000069 ], [ -125.259054815999946, 50.000317349000106 ], [ -125.259109367999926, 50.00031494900005 ], [ -125.259128262999965, 50.000717950000116 ], [ -125.258291694999954, 50.000734243000132 ], [ -125.25829569099993, 50.00081948300015 ], [ -125.261795305999939, 50.000843061000054 ], [ -125.261783706999893, 50.001560003000122 ], [ -125.261896446999955, 50.001560761000128 ], [ -125.261872227999959, 50.003057849000037 ], [ -125.262501950999933, 50.003062079000095 ], [ -125.262519256999923, 50.001991382000057 ], [ -125.26359435099999, 50.001998595000082 ], [ -125.263595317999958, 50.001938609000028 ], [ -125.265885023999942, 50.001953937000096 ], [ -125.265871475999987, 50.001665833000068 ], [ -125.26628976399995, 50.001657660000063 ], [ -125.26627708299999, 50.001388050000045 ], [ -125.26711365599999, 50.001371700000071 ], [ -125.267088284999943, 50.000832480000064 ], [ -125.268761407999961, 50.000799761000117 ], [ -125.268786798999969, 50.001338981000046 ], [ -125.269205083999935, 50.001330798000055 ], [ -125.269266764999955, 50.002640473000014 ], [ -125.270420780999956, 50.00264814500013 ], [ -125.270412918999952, 50.003139781000094 ], [ -125.270467709999963, 50.00314014500001 ], [ -125.270467576000016, 50.003148517000064 ], [ -125.270546778999943, 50.003149043000079 ], [ -125.27051075899999, 50.002384675000123 ], [ -125.271444427999967, 50.002366393000102 ], [ -125.27176563899998, 50.002360102000047 ], [ -125.271778350999966, 50.00262971100004 ], [ -125.272196645999898, 50.002621516000062 ], [ -125.272209360999923, 50.002891125000119 ], [ -125.272627658999909, 50.002882930000048 ], [ -125.272665811999929, 50.00369175600008 ], [ -125.272763557999951, 50.003689841000046 ], [ -125.273502419999986, 50.003675359000084 ], [ -125.273515142999926, 50.003944968000056 ], [ -125.273933449999944, 50.003936767000056 ], [ -125.273958899999982, 50.00447598500012 ], [ -125.274377209999912, 50.004467783000123 ], [ -125.274428122999964, 50.005546216000035 ], [ -125.274009802999956, 50.005554419000056 ], [ -125.274101967999968, 50.007506857000081 ], [ -125.272930575999936, 50.007505801000029 ], [ -125.27242079199999, 50.007506029000076 ], [ -125.271988126999972, 50.007506240000041 ], [ -125.270658788999953, 50.007506825000036 ], [ -125.267473003999939, 50.007508209000051 ], [ -125.267459038, 50.007508209000051 ], [ -125.266008098999947, 50.007509200000079 ], [ -125.259060587999954, 50.00750751500005 ], [ -125.258695608999957, 50.005677383000062 ], [ -125.258658091999962, 50.005489274000077 ] ], [ [ -125.27232188399995, 50.005276936000044 ], [ -125.272285654999948, 50.004508780000101 ], [ -125.271855913999943, 50.004517199000126 ], [ -125.27184383899997, 50.005273768000059 ], [ -125.27232188399995, 50.005276936000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "185434000", "BldgCostT": "122200000", "sL_LossRatio": "0.993472236861526", "sL_AssetLoss": "75737.889", "sL_BldgLoss": "75243.49", "sL_StrLoss": "73011.33", "sL_NStrLoss": "2232.16", "sL_ContLoss": "494.399", "geom_point": "0101000020E6100000DEA7D34F32505FC07185A038BAFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.247373216999975, 50.000275800000097 ], [ -125.247387800999917, 50.000009159000079 ], [ -125.247513668999915, 49.997713332000032 ], [ -125.247562084999942, 49.996830519000071 ], [ -125.247582708999957, 49.996454311000029 ], [ -125.247682802999918, 49.996455685000114 ], [ -125.247697087999967, 49.996455896000064 ], [ -125.249346708999937, 49.996477105000054 ], [ -125.24981169699997, 49.996781502000054 ], [ -125.249861973999913, 49.996750671000051 ], [ -125.250269626999966, 49.996500495000113 ], [ -125.250982293999954, 49.996505404000061 ], [ -125.252135577999979, 49.996513193000091 ], [ -125.253216424999934, 49.996520598000124 ], [ -125.253222413999964, 49.996153676000105 ], [ -125.253225100999913, 49.995991097000115 ], [ -125.25255910199995, 49.995352701000044 ], [ -125.252149015999962, 49.994922052000106 ], [ -125.251770694999948, 49.994524748000089 ], [ -125.250745197999976, 49.99344771300008 ], [ -125.250735216, 49.99344112900009 ], [ -125.250535507, 49.99330959600006 ], [ -125.249907634999971, 49.993130847000032 ], [ -125.249690452999985, 49.993069027000111 ], [ -125.249635899999959, 49.993053519000128 ], [ -125.249468179999965, 49.992906706000085 ], [ -125.249449031999916, 49.992889810000072 ], [ -125.249007657999982, 49.992500766000063 ], [ -125.248549772999951, 49.992370322000099 ], [ -125.248438546999964, 49.992338637000032 ], [ -125.248374926999986, 49.9923189450001 ], [ -125.248634662999919, 49.991608084000113 ], [ -125.248726929, 49.991509829000066 ], [ -125.248744544999965, 49.991474732000079 ], [ -125.249067278999988, 49.991468474000079 ], [ -125.249092438, 49.992007701000048 ], [ -125.24951065, 49.991999590000077 ], [ -125.249523233, 49.992269204000088 ], [ -125.250359655999958, 49.992252977000113 ], [ -125.25037224499999, 49.99252259100011 ], [ -125.250790458000012, 49.992514474000068 ], [ -125.250803049999917, 49.992784088000079 ], [ -125.25122126499997, 49.99277597000011 ], [ -125.251233858999925, 49.99304558400005 ], [ -125.251652076999974, 49.993037464000089 ], [ -125.251677268999956, 49.99357669000009 ], [ -125.252095491999938, 49.993568570000072 ], [ -125.252120687999962, 49.994107797000076 ], [ -125.252538915999978, 49.994099674000054 ], [ -125.252564117999938, 49.994638900000034 ], [ -125.252982349999925, 49.994630776000129 ], [ -125.252994952999984, 49.994900389000087 ], [ -125.253413187999939, 49.994892263000104 ], [ -125.253425793999909, 49.995161877000044 ], [ -125.253844028999964, 49.995153749000082 ], [ -125.25386924799993, 49.995692975000104 ], [ -125.254287488999978, 49.995684845000042 ], [ -125.254300099999966, 49.995954458 ], [ -125.254718342999922, 49.995946328000102 ], [ -125.254730955999975, 49.99621594000012 ], [ -125.256403934999966, 49.996183402000064 ], [ -125.256416558999916, 49.99645301500005 ], [ -125.258089542999969, 49.996420452000052 ], [ -125.258102174999948, 49.996690064000063 ], [ -125.258520423999968, 49.996681920000057 ], [ -125.258545694999938, 49.997221144000036 ], [ -125.258963948999948, 49.997212998000123 ], [ -125.258976585999989, 49.997482610000098 ], [ -125.259394841999907, 49.997474462000071 ], [ -125.259445405999955, 49.998552908000114 ], [ -125.25902714099999, 49.998561056000014 ], [ -125.259039780999927, 49.998830668000018 ], [ -125.258621514999959, 49.998838814000088 ], [ -125.258672064000024, 49.999917262000046 ], [ -125.259090340999947, 49.99990911500003 ], [ -125.259109367999926, 50.00031494900005 ], [ -125.259054815999946, 50.000317349000106 ], [ -125.25892898799998, 50.000322909000069 ], [ -125.25359217799992, 50.000282654000095 ], [ -125.253369201999988, 50.000280967000066 ], [ -125.253057282999976, 50.000278602000094 ], [ -125.251407192999963, 50.000276400000111 ], [ -125.250172745999947, 50.000276956000036 ], [ -125.249026167999915, 50.000276315000093 ], [ -125.247546589999928, 50.000276617000033 ], [ -125.247495975999982, 50.000276615000097 ], [ -125.247373216999975, 50.000275800000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136080751", "BldgCostT": "89985001", "sL_LossRatio": "0.925900328686974", "sL_AssetLoss": "61508.37", "sL_BldgLoss": "56950.62", "sL_StrLoss": "53463.42", "sL_NStrLoss": "3487.2", "sL_ContLoss": "4557.75", "geom_point": "0101000020E61000005F43916AEF4F5FC05CF270E935FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.24981169699997, 49.996781502000054 ], [ -125.249346708999937, 49.996477105000054 ], [ -125.247697087999967, 49.996455896000064 ], [ -125.247682802999918, 49.996455685000114 ], [ -125.247582708999957, 49.996454311000029 ], [ -125.247600602999952, 49.996128221000099 ], [ -125.247635637999963, 49.995489254000105 ], [ -125.247668435999969, 49.994892209000035 ], [ -125.24691786599999, 49.994893209000068 ], [ -125.246021281999944, 49.994894386000034 ], [ -125.24601175, 49.994035691000065 ], [ -125.246099220999895, 49.99380698200013 ], [ -125.246333672999953, 49.993542484000066 ], [ -125.246990201999949, 49.992806113000078 ], [ -125.247086895999956, 49.992694412000048 ], [ -125.24716211199997, 49.992527713000072 ], [ -125.247197979999939, 49.99103093000015 ], [ -125.24721838699999, 49.990213795000024 ], [ -125.24723382399999, 49.98951694200013 ], [ -125.247234889999959, 49.989467596000075 ], [ -125.246649700999953, 49.989014093000073 ], [ -125.246264083999961, 49.988718298 ], [ -125.245796714999983, 49.988226006000097 ], [ -125.24596430299998, 49.988092251000047 ], [ -125.246376304999941, 49.987617451000084 ], [ -125.246394694999964, 49.9880121220001 ], [ -125.246812870999946, 49.988004020000133 ], [ -125.246838003999954, 49.988543249000031 ], [ -125.247256184999955, 49.988535146000054 ], [ -125.247268753999933, 49.988804762000015 ], [ -125.247686935999965, 49.988796657000051 ], [ -125.247699507999982, 49.989066271000084 ], [ -125.248117693999959, 49.989058165000074 ], [ -125.248218291999976, 49.991215077000092 ], [ -125.247800088999938, 49.991223184000098 ], [ -125.247812661999902, 49.991492798000088 ], [ -125.248744544999965, 49.991474732000079 ], [ -125.248726929, 49.991509829000066 ], [ -125.248634662999919, 49.991608084000113 ], [ -125.248374926999986, 49.9923189450001 ], [ -125.248438546999964, 49.992338637000032 ], [ -125.248549772999951, 49.992370322000099 ], [ -125.249007657999982, 49.992500766000063 ], [ -125.249449031999916, 49.992889810000072 ], [ -125.249468179999965, 49.992906706000085 ], [ -125.249635899999959, 49.993053519000128 ], [ -125.249690452999985, 49.993069027000111 ], [ -125.249907634999971, 49.993130847000032 ], [ -125.250535507, 49.99330959600006 ], [ -125.250735216, 49.99344112900009 ], [ -125.250745197999976, 49.99344771300008 ], [ -125.251770694999948, 49.994524748000089 ], [ -125.252149015999962, 49.994922052000106 ], [ -125.25255910199995, 49.995352701000044 ], [ -125.253225100999913, 49.995991097000115 ], [ -125.253222413999964, 49.996153676000105 ], [ -125.253216424999934, 49.996520598000124 ], [ -125.252135577999979, 49.996513193000091 ], [ -125.250982293999954, 49.996505404000061 ], [ -125.250269626999966, 49.996500495000113 ], [ -125.249861973999913, 49.996750671000051 ], [ -125.24981169699997, 49.996781502000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111998750", "BldgCostT": "76505000", "sL_LossRatio": "0.995321436047151", "sL_AssetLoss": "52503.29", "sL_BldgLoss": "52257.65", "sL_StrLoss": "51031.9", "sL_NStrLoss": "1225.75", "sL_ContLoss": "245.64", "geom_point": "0101000020E6100000BB02C8D8A24F5FC01876DEE7F4FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.240388699999983, 49.992255396000097 ], [ -125.24065290399993, 49.991719481000075 ], [ -125.241101397999955, 49.991754102000158 ], [ -125.241205101999981, 49.990377411000054 ], [ -125.242418178999984, 49.990390194000042 ], [ -125.242452186999941, 49.98960380100003 ], [ -125.242469303999954, 49.989158801000059 ], [ -125.246227427999926, 49.989166704000098 ], [ -125.246649700999953, 49.989014093000073 ], [ -125.247234889999959, 49.989467596000075 ], [ -125.24723382399999, 49.98951694200013 ], [ -125.24721838699999, 49.990213795000024 ], [ -125.247197979999939, 49.99103093000015 ], [ -125.24716211199997, 49.992527713000072 ], [ -125.247086895999956, 49.992694412000048 ], [ -125.246990201999949, 49.992806113000078 ], [ -125.246333672999953, 49.993542484000066 ], [ -125.246099220999895, 49.99380698200013 ], [ -125.24601175, 49.994035691000065 ], [ -125.246021281999944, 49.994894386000034 ], [ -125.244783574999971, 49.994897551000072 ], [ -125.244477212, 49.994898313000078 ], [ -125.243841932999928, 49.994899941 ], [ -125.242941689999938, 49.994902216000092 ], [ -125.242396275999937, 49.994903606000044 ], [ -125.242386895999957, 49.994125797000052 ], [ -125.242376103, 49.993348011000144 ], [ -125.242364434, 49.992536055000102 ], [ -125.240537914999919, 49.992508109000056 ], [ -125.240326700999944, 49.992463500000014 ], [ -125.240336689999936, 49.99242995200008 ], [ -125.240388699999983, 49.992255396000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999539470040777", "sL_AssetLoss": "137.2332", "sL_BldgLoss": "137.17", "sL_StrLoss": "137", "sL_NStrLoss": "0.17", "sL_ContLoss": "0.0632", "geom_point": "0101000020E6100000A1212DDF444A5FC0595B4624E92F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.15936018399999, 50.372276329000115 ], [ -125.162363152999959, 50.372299075000065 ], [ -125.162296590999986, 50.375893254000083 ], [ -125.156751852999932, 50.375851190000077 ], [ -125.156929497999954, 50.375725514000116 ], [ -125.157698185999934, 50.375325294000099 ], [ -125.15890561099999, 50.374366790000074 ], [ -125.159322689999925, 50.37392819400003 ], [ -125.159601310999932, 50.373247389 ], [ -125.15949129399999, 50.372683404000064 ], [ -125.159347815999965, 50.372298904000026 ], [ -125.15936018399999, 50.372276329000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "118.1", "sL_BldgLoss": "118.1", "sL_StrLoss": "118.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F015FE88367D5FC08637CE1A7A3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.952338895999944, 50.474096384000049 ], [ -125.952341646999955, 50.471492049000076 ], [ -125.955183214999963, 50.472237101000111 ], [ -125.955344012999902, 50.47209748800006 ], [ -125.955732204999919, 50.47200639800004 ], [ -125.956098893999965, 50.471754289000103 ], [ -125.9563204199999, 50.47172150300004 ], [ -125.956380086999971, 50.471540591000107 ], [ -125.957586910999964, 50.47007940100012 ], [ -125.958094509999924, 50.470318708000015 ], [ -125.958699797999941, 50.470096489000056 ], [ -125.958896125999971, 50.469941129000055 ], [ -125.959708161999941, 50.469941427000045 ], [ -125.959704951999967, 50.473535418000012 ], [ -125.95924931399999, 50.473535252000062 ], [ -125.959249145999934, 50.473720030000038 ], [ -125.95797697299993, 50.473719555000073 ], [ -125.957976618999979, 50.474098661000042 ], [ -125.952338895999944, 50.474096384000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999722353854793", "sL_AssetLoss": "239.5135", "sL_BldgLoss": "239.447", "sL_StrLoss": "239", "sL_NStrLoss": "0.447", "sL_ContLoss": "0.0665", "geom_point": "0101000020E6100000320B274870465FC0DB7DD81CB11D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09783527799999, 50.230147296000027 ], [ -125.103442245999972, 50.230192967000079 ], [ -125.10337122599999, 50.233787762000127 ], [ -125.097763814999951, 50.233742086000134 ], [ -125.09783527799999, 50.230147296000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999749596723025", "sL_AssetLoss": "212.21767", "sL_BldgLoss": "212.16453", "sL_StrLoss": "212.00323", "sL_NStrLoss": "0.1613", "sL_ContLoss": "0.05314", "geom_point": "0101000020E61000009508961BF3645FC0153AAFB1CB494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.57486281099996, 50.578325002000092 ], [ -125.57466260399994, 50.578275189000117 ], [ -125.574488886999944, 50.578467393000075 ], [ -125.574320893999968, 50.578490208000112 ], [ -125.573981392999912, 50.57821820900007 ], [ -125.575252287999973, 50.577713993000089 ], [ -125.575367288999985, 50.577206993000161 ], [ -125.576018604999931, 50.576977696000057 ], [ -125.576993185999953, 50.576469303000074 ], [ -125.577411887999915, 50.576127388000039 ], [ -125.577351395999955, 50.576057707000118 ], [ -125.577251302999969, 50.576004984000093 ], [ -125.57641781199996, 50.576546200000038 ], [ -125.575270876000019, 50.576993396000042 ], [ -125.57443969299996, 50.576796798000046 ], [ -125.574159204999916, 50.576811100000057 ], [ -125.573388002999963, 50.57694488800005 ], [ -125.57312946499998, 50.577093376000022 ], [ -125.573145712999974, 50.575379735000048 ], [ -125.573882485999988, 50.575382557000125 ], [ -125.573885804999932, 50.575031952000089 ], [ -125.574499322999941, 50.575034299000031 ], [ -125.574503306999958, 50.574612767000062 ], [ -125.575179558999935, 50.574615350000087 ], [ -125.575182095999963, 50.574346584000068 ], [ -125.580832272999913, 50.574368005000082 ], [ -125.580798814999966, 50.577961474000105 ], [ -125.580122509999939, 50.577958925000075 ], [ -125.580120003999951, 50.578227691000095 ], [ -125.579506442999929, 50.578225375000102 ], [ -125.57950250499999, 50.57864690500007 ], [ -125.578765678999957, 50.57864411900006 ], [ -125.578762397, 50.578994723000093 ], [ -125.573731021999947, 50.578975570000132 ], [ -125.574821691999929, 50.578614098000038 ], [ -125.574953107999974, 50.578430397000048 ], [ -125.57486281099996, 50.578325002000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999690023709889", "sL_AssetLoss": "121.2996", "sL_BldgLoss": "121.262", "sL_StrLoss": "121", "sL_NStrLoss": "0.262", "sL_ContLoss": "0.0376", "geom_point": "0101000020E61000006BBCF05A74455FC0F445CE04BB194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.083679212000021, 50.199300198000124 ], [ -125.08455930699995, 50.199284491000057 ], [ -125.08580198199999, 50.20011619700005 ], [ -125.086324096999945, 50.20020600200008 ], [ -125.086563178999938, 50.200534995000083 ], [ -125.086510189999942, 50.200957903000081 ], [ -125.086762906999951, 50.201259889000099 ], [ -125.087335325999931, 50.201563204000081 ], [ -125.087641890999961, 50.201846607000071 ], [ -125.08828998499996, 50.201924999000013 ], [ -125.088802435999952, 50.202068992000093 ], [ -125.088797722, 50.202303901000064 ], [ -125.084682279999953, 50.20226983800007 ], [ -125.084383206999973, 50.201994784000064 ], [ -125.083439904999935, 50.201553302000086 ], [ -125.083212157999938, 50.201368548000033 ], [ -125.083243564999975, 50.199812731000087 ], [ -125.08337239, 50.199674712000053 ], [ -125.083433185999979, 50.199448301000047 ], [ -125.083679212000021, 50.199300198000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999110458780884", "sL_AssetLoss": "152.8878", "sL_BldgLoss": "152.7518", "sL_StrLoss": "151.0488", "sL_NStrLoss": "1.703", "sL_ContLoss": "0.136", "geom_point": "0101000020E6100000644F8E44A0355FC0793569E8D90F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.835203720999957, 50.125906271000083 ], [ -124.835295760999941, 50.122311169000064 ], [ -124.835872900999931, 50.122317271000043 ], [ -124.835887571999976, 50.121743884000139 ], [ -124.841316876999926, 50.121801140000102 ], [ -124.841234390999958, 50.121851705000047 ], [ -124.84123581299994, 50.121931395000054 ], [ -124.841435782999966, 50.12201829500011 ], [ -124.841397904999965, 50.122100906000057 ], [ -124.8414724599999, 50.122133567000041 ], [ -124.841467702999978, 50.122320354000095 ], [ -124.84127899399999, 50.122650611000033 ], [ -124.840690494999976, 50.123019506000077 ], [ -124.839903396999929, 50.122934114000024 ], [ -124.839404694999956, 50.123409697000064 ], [ -124.839185597999986, 50.123512289000153 ], [ -124.839070587999984, 50.123836996000122 ], [ -124.838757206999986, 50.124067706000048 ], [ -124.838231705999959, 50.124183088000073 ], [ -124.838328497999925, 50.124514905000119 ], [ -124.838541278999969, 50.124628893000065 ], [ -124.839723095999943, 50.124806887000105 ], [ -124.841117906999955, 50.124685783000061 ], [ -124.841360082999984, 50.124781296000094 ], [ -124.841402003, 50.124900326000031 ], [ -124.841401479999888, 50.124920859000071 ], [ -124.840989520999983, 50.125336698000083 ], [ -124.840884259999925, 50.125392660000067 ], [ -124.840812149999977, 50.1253919010001 ], [ -124.840811140999961, 50.125431535000097 ], [ -124.840659992999946, 50.125511893000102 ], [ -124.840802823999951, 50.12575795300004 ], [ -124.840797539999983, 50.125965287 ], [ -124.835203720999957, 50.125906271000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.997841198376722", "sL_AssetLoss": "454.882", "sL_BldgLoss": "453.9", "sL_StrLoss": "448", "sL_NStrLoss": "5.9", "sL_ContLoss": "0.982", "geom_point": "0101000020E61000009C7A939555445FC0A5FCDE8531244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.065352777999962, 50.284328638000062 ], [ -125.065426890999959, 50.280734102000075 ], [ -125.06910780699999, 50.280765162000108 ], [ -125.068972385999984, 50.281451391000132 ], [ -125.068462989999915, 50.28196409700012 ], [ -125.068441598999939, 50.282126508000047 ], [ -125.068560221999988, 50.282267504000082 ], [ -125.068806387999956, 50.282434110000032 ], [ -125.069161306999931, 50.282535205000016 ], [ -125.069813686, 50.282389997000102 ], [ -125.070172998999965, 50.282868498000077 ], [ -125.07034330299993, 50.282919792000094 ], [ -125.070951780999962, 50.283070698000081 ], [ -125.070993109999932, 50.283073443000063 ], [ -125.07096641399994, 50.28437595500008 ], [ -125.065352777999962, 50.284328638000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.948196469685342", "sL_AssetLoss": "0.2606", "sL_BldgLoss": "0.2471", "sL_StrLoss": "0.0141", "sL_NStrLoss": "0.233", "sL_ContLoss": "0.0135", "geom_point": "0101000020E61000006CDE06EF0A475FC07ED76F3FC31D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.108525186999927, 50.234519861000138 ], [ -125.108595798999886, 50.230925068000069 ], [ -125.112230359999899, 50.230954351000079 ], [ -125.111359103999973, 50.231810584000101 ], [ -125.111690105999941, 50.232011383000057 ], [ -125.111685900999944, 50.232227892000061 ], [ -125.112026897999939, 50.232328985000073 ], [ -125.112390997999952, 50.232313287000075 ], [ -125.112427390999969, 50.232475693000019 ], [ -125.112045703999954, 50.232743401000064 ], [ -125.11124209099998, 50.232955611000072 ], [ -125.11132930499997, 50.233016893000048 ], [ -125.111707315999979, 50.232991295000026 ], [ -125.111751720999976, 50.233062499000049 ], [ -125.111642710999931, 50.233146501000093 ], [ -125.110666893999976, 50.233280402000098 ], [ -125.110906916999937, 50.233617896000133 ], [ -125.110835489999943, 50.233888490000012 ], [ -125.110659194999926, 50.234026715000034 ], [ -125.110077525999927, 50.234200402000042 ], [ -125.109739579999939, 50.234413811000088 ], [ -125.10965349699994, 50.234468191000119 ], [ -125.109607693999962, 50.23452859500005 ], [ -125.108525186999927, 50.234519861000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999961417423891", "sL_AssetLoss": "100.04516", "sL_BldgLoss": "100.0413", "sL_StrLoss": "100", "sL_NStrLoss": "0.0413", "sL_ContLoss": "0.00386", "geom_point": "0101000020E61000002399BC9E3B495FC09FCED38832314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.14316600399999, 50.382914387000056 ], [ -125.145230488999928, 50.382930332000043 ], [ -125.145421695999957, 50.383144196000067 ], [ -125.145378720999958, 50.383450405000112 ], [ -125.145484499999952, 50.383601400000018 ], [ -125.145269801999945, 50.38385780300009 ], [ -125.145294498999959, 50.384072799000137 ], [ -125.145609625999967, 50.384525704000076 ], [ -125.146003906999923, 50.384841882000053 ], [ -125.146026192999912, 50.385021288000061 ], [ -125.145751301999894, 50.385160909000028 ], [ -125.14377800299998, 50.385719201000079 ], [ -125.143177410999925, 50.386414188000032 ], [ -125.143099019999923, 50.386449497000037 ], [ -125.14316600399999, 50.382914387000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999931384628439", "sL_AssetLoss": "588.06065", "sL_BldgLoss": "588.0203", "sL_StrLoss": "587.8", "sL_NStrLoss": "0.2203", "sL_ContLoss": "0.04035", "geom_point": "0101000020E6100000E08143A0A1485FC080E594C234324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.133019586999978, 50.39794662200007 ], [ -125.133034507999966, 50.397168583000116 ], [ -125.13203979799999, 50.397160798000129 ], [ -125.132061507999978, 50.396029979000041 ], [ -125.131718455999945, 50.396027292000014 ], [ -125.131748318999939, 50.394472369000063 ], [ -125.131662252999959, 50.394471695000135 ], [ -125.131671177999934, 50.394006946000033 ], [ -125.13138307, 50.394004688000095 ], [ -125.131452115999963, 50.39041061000011 ], [ -125.131605696999898, 50.390411814000117 ], [ -125.131646337999911, 50.388295611000025 ], [ -125.132070762999945, 50.388298935000137 ], [ -125.132077239999944, 50.387961421000099 ], [ -125.132805839999904, 50.387967125000088 ], [ -125.132811931, 50.387649539000037 ], [ -125.133843919999947, 50.387657610000062 ], [ -125.133850007999939, 50.387339764000053 ], [ -125.134504573999948, 50.387344878000121 ], [ -125.134513107999965, 50.386898979000122 ], [ -125.140139545999943, 50.386942779000066 ], [ -125.140136964999968, 50.38707853000011 ], [ -125.140824428, 50.387083862000054 ], [ -125.140816950999948, 50.387477360000027 ], [ -125.140116593999934, 50.387792787000102 ], [ -125.139908706999975, 50.388201603000056 ], [ -125.139989678999882, 50.388433695000053 ], [ -125.140298288999972, 50.388715707000074 ], [ -125.140196717999984, 50.388969206000105 ], [ -125.139646497999962, 50.388943593000093 ], [ -125.136031886999945, 50.389585905000096 ], [ -125.135425295999951, 50.389570289000098 ], [ -125.134723915, 50.389897800000035 ], [ -125.13451887699992, 50.390035997000012 ], [ -125.134671195999928, 50.390591401000016 ], [ -125.134533602999952, 50.391015786000075 ], [ -125.134639909999976, 50.392408689000057 ], [ -125.135026977, 50.39290579700004 ], [ -125.13551859899998, 50.393210494000101 ], [ -125.135567900999931, 50.393335913000087 ], [ -125.1353648, 50.393519589000071 ], [ -125.135068507, 50.394146185000068 ], [ -125.134736700999952, 50.394574891000069 ], [ -125.134680119000024, 50.395195895000072 ], [ -125.134927704999967, 50.395389589000018 ], [ -125.135396590999974, 50.395497811000062 ], [ -125.136329997999937, 50.39530129100006 ], [ -125.13665899499999, 50.395708592000062 ], [ -125.137078003999974, 50.395962099000016 ], [ -125.138683405999956, 50.396309605000091 ], [ -125.138549676999929, 50.397058798000103 ], [ -125.138908009999952, 50.397241088000072 ], [ -125.139412892999985, 50.397178397000097 ], [ -125.139726525999919, 50.397037793000059 ], [ -125.139712527999947, 50.39777347100005 ], [ -125.138651689999946, 50.397765233 ], [ -125.138647397999975, 50.397990497000087 ], [ -125.133019586999978, 50.39794662200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999466709823097", "sL_AssetLoss": "129.7605", "sL_BldgLoss": "129.6913", "sL_StrLoss": "129.0213", "sL_NStrLoss": "0.67", "sL_ContLoss": "0.0692", "geom_point": "0101000020E610000042B1F42584435FC0E47CFB847D184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.05191008299991, 50.192779101000099 ], [ -125.05195051, 50.190842145000047 ], [ -125.052036887999975, 50.190814705000072 ], [ -125.052113107999944, 50.19061530500008 ], [ -125.052444409999964, 50.190509906000074 ], [ -125.052879581999946, 50.190502799000122 ], [ -125.0528514799999, 50.190179497000088 ], [ -125.052948384999922, 50.19015959400005 ], [ -125.052967785999954, 50.189980091000045 ], [ -125.053258491999941, 50.189884700000043 ], [ -125.054007086999931, 50.190005791000068 ], [ -125.054536116999941, 50.190266403000109 ], [ -125.054940093, 50.19088021500005 ], [ -125.055324808999927, 50.191008385000025 ], [ -125.055415012999987, 50.191186396000077 ], [ -125.05591998599999, 50.191186399000074 ], [ -125.056279918999948, 50.19110809500004 ], [ -125.056400078999957, 50.190971392000058 ], [ -125.056365806999906, 50.190818986000053 ], [ -125.055942788999943, 50.190079793000024 ], [ -125.055898188999947, 50.190027091000061 ], [ -125.055242815999947, 50.190082695000065 ], [ -125.055080197999956, 50.189924602000119 ], [ -125.055122284000035, 50.189581400000087 ], [ -125.055591088999961, 50.189401896000028 ], [ -125.055903893999968, 50.189487410000055 ], [ -125.05599915799999, 50.189218576 ], [ -125.057586975999968, 50.189232153000027 ], [ -125.05751239199999, 50.192827108000088 ], [ -125.05191008299991, 50.192779101000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "174.8", "sL_BldgLoss": "174.8", "sL_StrLoss": "174.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D263593B37D5FC0554733BB93464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.964577107999915, 50.549980405000021 ], [ -125.964853608999974, 50.549658498000021 ], [ -125.965223000999984, 50.549711184000074 ], [ -125.965830195999928, 50.549462013000046 ], [ -125.966452521999955, 50.549491900000142 ], [ -125.967138312999921, 50.549383607000074 ], [ -125.969176316999906, 50.548567607000102 ], [ -125.969474180999924, 50.548379591000078 ], [ -125.969737655999936, 50.548304532000088 ], [ -125.969735526999969, 50.551475593000113 ], [ -125.96868130799993, 50.551475301000018 ], [ -125.968681195999949, 50.551636818000119 ], [ -125.963169237999949, 50.551635130000086 ], [ -125.9631676, 50.553639354000012 ], [ -125.957519922999936, 50.553637342000044 ], [ -125.957521044999908, 50.552446277000115 ], [ -125.95877229199999, 50.551971391000052 ], [ -125.960115890999944, 50.551559812000043 ], [ -125.960757989999976, 50.55144450000008 ], [ -125.961058400999917, 50.551275007000129 ], [ -125.962331298999956, 50.550856307000089 ], [ -125.962841904999905, 50.550447488000053 ], [ -125.963501688999969, 50.550403398000114 ], [ -125.963875897, 50.550295108000057 ], [ -125.964577107999915, 50.549980405000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999717758974813", "sL_AssetLoss": "254.3925", "sL_BldgLoss": "254.3207", "sL_StrLoss": "254", "sL_NStrLoss": "0.3207", "sL_ContLoss": "0.0718", "geom_point": "0101000020E61000001575C510A9485FC02B63E87D882E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.133316263999973, 50.365121502000051 ], [ -125.133319303999912, 50.364962812000066 ], [ -125.13254914599996, 50.364956783000061 ], [ -125.132607413999906, 50.361917511000115 ], [ -125.13320931599999, 50.361816699000052 ], [ -125.133748005999962, 50.361591704000027 ], [ -125.134297810999939, 50.361617302000063 ], [ -125.135131979999954, 50.361430702000128 ], [ -125.13605991699994, 50.361396500000041 ], [ -125.136751009999927, 50.361761100000123 ], [ -125.136939099999964, 50.362189805000057 ], [ -125.136938718999914, 50.362513102000065 ], [ -125.136222907999965, 50.363173986000014 ], [ -125.136348419999976, 50.363441699000084 ], [ -125.136519696999969, 50.363510092000119 ], [ -125.137024416999949, 50.363482999000084 ], [ -125.137468484999928, 50.363349090000078 ], [ -125.137723306999987, 50.36336199100009 ], [ -125.138436597999927, 50.363592709000045 ], [ -125.138920007999943, 50.364015688000045 ], [ -125.139207185999979, 50.364116892 ], [ -125.13900236399995, 50.3641153 ], [ -125.139000535999969, 50.364211365000131 ], [ -125.138958154999912, 50.364211036000079 ], [ -125.138939992999966, 50.365165364000113 ], [ -125.133316263999973, 50.365121502000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99991173157222", "sL_AssetLoss": "200.5247", "sL_BldgLoss": "200.507", "sL_StrLoss": "200.4", "sL_NStrLoss": "0.107", "sL_ContLoss": "0.0177", "geom_point": "0101000020E6100000E8C43777E8795FC03CFB675939354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.903238786999978, 50.414894110000048 ], [ -125.905585925999929, 50.414619304000077 ], [ -125.906461897999932, 50.41465199400006 ], [ -125.908257709999944, 50.415012288000142 ], [ -125.908589915999983, 50.415033350000094 ], [ -125.908587156999928, 50.416396943000102 ], [ -125.906572625999942, 50.416395264000073 ], [ -125.906571702999898, 50.416841992000066 ], [ -125.900941127999928, 50.416837105000099 ], [ -125.900943230999971, 50.415877676000065 ], [ -125.902006202999971, 50.415221707000086 ], [ -125.903238786999978, 50.414894110000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997859155908165", "sL_AssetLoss": "230.283", "sL_BldgLoss": "229.79", "sL_StrLoss": "225", "sL_NStrLoss": "4.79", "sL_ContLoss": "0.493", "geom_point": "0101000020E610000062C8A0C9B44B5FC0025C3574D80B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.181118625999915, 50.090732652000078 ], [ -125.185474300999957, 50.090764976000074 ], [ -125.18477651100001, 50.091651291000083 ], [ -125.184301803, 50.092595489000097 ], [ -125.184039807999966, 50.093303398000053 ], [ -125.184064908999972, 50.093860210000074 ], [ -125.18453940399999, 50.094867049000115 ], [ -125.182605054999897, 50.094852701000072 ], [ -125.182371976999917, 50.09473759300004 ], [ -125.182189092999963, 50.09411949800004 ], [ -125.181944006999913, 50.093954201000066 ], [ -125.181365079999964, 50.093838901000034 ], [ -125.18112081799994, 50.09368080500014 ], [ -125.181061891999917, 50.093486394000067 ], [ -125.18110219499999, 50.091245553000142 ], [ -125.181109400999972, 50.091245606000022 ], [ -125.181118625999915, 50.090732652000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999736573828651", "sL_AssetLoss": "245.23", "sL_BldgLoss": "245.1654", "sL_StrLoss": "245", "sL_NStrLoss": "0.1654", "sL_ContLoss": "0.0646", "geom_point": "0101000020E61000006779A21442485FC0B3CCC75A68144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.126268655999965, 50.157614937000105 ], [ -125.131866705999983, 50.157659169000041 ], [ -125.131798046999933, 50.161254319000079 ], [ -125.126199554999928, 50.161210084000054 ], [ -125.126268655999965, 50.157614937000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99966852516043", "sL_AssetLoss": "268.497", "sL_BldgLoss": "268.408", "sL_StrLoss": "268", "sL_NStrLoss": "0.408", "sL_ContLoss": "0.089", "geom_point": "0101000020E6100000DC4047CC28445FC0CD15CE0392194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.061805038999935, 50.201276536000073 ], [ -125.061879298999912, 50.19768161800009 ], [ -125.062135083000015, 50.19768379300011 ], [ -125.062067286999962, 50.197922905000041 ], [ -125.062221198999936, 50.198918504000069 ], [ -125.062201994999953, 50.199754515000073 ], [ -125.06240840699995, 50.199993700000064 ], [ -125.062543376999912, 50.199902596000065 ], [ -125.062552021, 50.199748800000073 ], [ -125.062978893999954, 50.199273106000085 ], [ -125.063764387, 50.199277390000049 ], [ -125.064721205999916, 50.198730490000095 ], [ -125.064946812999949, 50.197772008000157 ], [ -125.064977806999963, 50.197707922000063 ], [ -125.067482221999938, 50.197729118000041 ], [ -125.067408404999938, 50.201324039000049 ], [ -125.061805038999935, 50.201276536000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999949377064353", "sL_AssetLoss": "274.18402", "sL_BldgLoss": "274.17014", "sL_StrLoss": "274.1", "sL_NStrLoss": "0.07014", "sL_ContLoss": "0.01388", "geom_point": "0101000020E6100000A12DE7525C545FC05B1B199AA1304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.31555599799999, 50.381481342000036 ], [ -125.315558435, 50.381320261000063 ], [ -125.31328341899993, 50.381306185000035 ], [ -125.313337989999965, 50.377711948000119 ], [ -125.316376749999975, 50.377730739000114 ], [ -125.31637329599999, 50.377759298000093 ], [ -125.316685480999979, 50.378085401000057 ], [ -125.316801298999934, 50.378442894000095 ], [ -125.316912912999939, 50.378989802000085 ], [ -125.31738289099999, 50.379105192000104 ], [ -125.317748188999957, 50.37909800000012 ], [ -125.318080185, 50.379280302000055 ], [ -125.320966379999945, 50.379070991000049 ], [ -125.321279407999967, 50.378821802000097 ], [ -125.322619179999919, 50.37860530200004 ], [ -125.323674, 50.378341810000094 ], [ -125.323685118999933, 50.378335994000032 ], [ -125.323641498999962, 50.381252890000084 ], [ -125.323092574, 50.381249538000056 ], [ -125.323089489000026, 50.381455603000106 ], [ -125.32241357, 50.381451472000101 ], [ -125.322413363999942, 50.381465221000099 ], [ -125.32184617499999, 50.381461751000074 ], [ -125.32184544399999, 50.381510435000038 ], [ -125.321182060999945, 50.381506373000072 ], [ -125.32118191799999, 50.381515952000022 ], [ -125.31555599799999, 50.381481342000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999941776316976", "sL_AssetLoss": "97.03955", "sL_BldgLoss": "97.0339", "sL_StrLoss": "97", "sL_NStrLoss": "0.0339", "sL_ContLoss": "0.00565", "geom_point": "0101000020E6100000B8976EF1344B5FC0515A4D113F344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.174984504999884, 50.406978400000078 ], [ -125.175584110999978, 50.406895798000058 ], [ -125.17694411299999, 50.407086605000053 ], [ -125.177708400999933, 50.407098864000055 ], [ -125.17767085399997, 50.409162592 ], [ -125.172041614999927, 50.40912069899999 ], [ -125.17206464099992, 50.407863760000069 ], [ -125.173168902999961, 50.407614986000091 ], [ -125.174323021, 50.4072889 ], [ -125.174984504999884, 50.406978400000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999769312968058", "sL_AssetLoss": "226.2806", "sL_BldgLoss": "226.2284", "sL_StrLoss": "226", "sL_NStrLoss": "0.2284", "sL_ContLoss": "0.0522", "geom_point": "0101000020E6100000AE18C7AB20465FC08E3BE79F47224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.091254799999959, 50.26982993700004 ], [ -125.091275502999977, 50.268796962000103 ], [ -125.091369306999965, 50.268763093000075 ], [ -125.091663709, 50.2687759 ], [ -125.09236139699999, 50.269023807000039 ], [ -125.092840113999955, 50.269042303000042 ], [ -125.093116878000018, 50.268956792000054 ], [ -125.09332079899994, 50.268781603000065 ], [ -125.093525987999925, 50.268372895000041 ], [ -125.09374498699998, 50.268216203000122 ], [ -125.093864616999937, 50.267791804000055 ], [ -125.094166599999951, 50.267318991000145 ], [ -125.094569714999921, 50.267195093000048 ], [ -125.094891590999907, 50.266864693000109 ], [ -125.09492610399991, 50.266693798000048 ], [ -125.09555581799999, 50.266034299000111 ], [ -125.095650804999977, 50.265609905000083 ], [ -125.095484308999986, 50.265369211000113 ], [ -125.095515323999933, 50.265090105000048 ], [ -125.095532349, 50.265069839000034 ], [ -125.098363828999965, 50.265092978000084 ], [ -125.098292352, 50.268687607000032 ], [ -125.097320622999973, 50.268679674000111 ], [ -125.097306753999987, 50.269376330000043 ], [ -125.096876687999952, 50.269372816000043 ], [ -125.096866666999972, 50.269875940000091 ], [ -125.091254799999959, 50.26982993700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999862399803967", "sL_AssetLoss": "106.1045", "sL_BldgLoss": "106.0899", "sL_StrLoss": "106", "sL_NStrLoss": "0.0899", "sL_ContLoss": "0.0146", "geom_point": "0101000020E61000006CB0B2AE384E5FC058E949F48D284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.220872521999979, 50.318601655000101 ], [ -125.220879827999951, 50.318176945000062 ], [ -125.220625037999966, 50.318175150000059 ], [ -125.220686885999953, 50.314580675000073 ], [ -125.222256811999927, 50.314591723000035 ], [ -125.22223868899999, 50.314735199000104 ], [ -125.222387500999957, 50.314893284000092 ], [ -125.222715278999928, 50.314987293000044 ], [ -125.222899797999958, 50.315333314000057 ], [ -125.222632897999915, 50.315922990000026 ], [ -125.222691083999933, 50.315994206 ], [ -125.223292405, 50.315928693000032 ], [ -125.223533220999954, 50.315987103000118 ], [ -125.223851795999977, 50.316467013000064 ], [ -125.223760877999965, 50.316954092000081 ], [ -125.223943290999927, 50.316932690000051 ], [ -125.224306294999934, 50.316602292000056 ], [ -125.224493089999925, 50.316670692000059 ], [ -125.22453560799994, 50.316984002000069 ], [ -125.22393969899997, 50.317464003000097 ], [ -125.224182196999934, 50.317809998000065 ], [ -125.224118502999914, 50.318287205000047 ], [ -125.223866328999947, 50.318622697000073 ], [ -125.220872521999979, 50.318601655000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999770839458362", "sL_AssetLoss": "473.4672", "sL_BldgLoss": "473.3587", "sL_StrLoss": "473", "sL_NStrLoss": "0.3587", "sL_ContLoss": "0.1085", "geom_point": "0101000020E6100000BD265237A3465FC0256738D0091C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.101896361999962, 50.216251965 ], [ -125.107501617999958, 50.21629743200009 ], [ -125.107430941999937, 50.219892292000054 ], [ -125.105566595999917, 50.219877202000134 ], [ -125.105527783999918, 50.221846935000038 ], [ -125.099921844999969, 50.221801369000097 ], [ -125.099993118999976, 50.218206522000038 ], [ -125.101857395999971, 50.218221707000019 ], [ -125.101896361999962, 50.216251965 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999558446084643", "sL_AssetLoss": "135.4308", "sL_BldgLoss": "135.371", "sL_StrLoss": "135", "sL_NStrLoss": "0.371", "sL_ContLoss": "0.0598", "geom_point": "0101000020E61000000902BFA1CB4B5FC0F42586AAB9334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.181838357999965, 50.405031660000084 ], [ -125.181866078999946, 50.403500117000128 ], [ -125.182252597999977, 50.403424986000076 ], [ -125.185491622999933, 50.402544800000022 ], [ -125.18618098499995, 50.40228130600012 ], [ -125.186302882999954, 50.402467895000036 ], [ -125.186226987999987, 50.402665909000056 ], [ -125.184695212999927, 50.403604396000027 ], [ -125.1844926799999, 50.40377819200009 ], [ -125.18446982299993, 50.403923403000093 ], [ -125.184774996999948, 50.404141297000074 ], [ -125.18570630899994, 50.404178393000038 ], [ -125.186222711999903, 50.404384887000113 ], [ -125.18646189199994, 50.404389197000086 ], [ -125.1874844699999, 50.404106593000044 ], [ -125.187467096999953, 50.405073056000141 ], [ -125.181838357999965, 50.405031660000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999916848781618", "sL_AssetLoss": "198.31339", "sL_BldgLoss": "198.2969", "sL_StrLoss": "198.2", "sL_NStrLoss": "0.0969", "sL_ContLoss": "0.01649", "geom_point": "0101000020E6100000FA57C135184E5FC0ED4960730E274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.218076620999938, 50.307280809000112 ], [ -125.21813865699994, 50.303686286000094 ], [ -125.218217590999984, 50.303686844000062 ], [ -125.218225279999928, 50.303241187 ], [ -125.22323287899998, 50.303276470000093 ], [ -125.223102304999927, 50.30402370700007 ], [ -125.222529110999986, 50.304681687000084 ], [ -125.222604400999941, 50.305103211000059 ], [ -125.222147311, 50.305228592000034 ], [ -125.221778192999935, 50.305145994000021 ], [ -125.221450601999948, 50.305628800000129 ], [ -125.221270217, 50.305704298000101 ], [ -125.221266517999979, 50.306208394000045 ], [ -125.221794112999987, 50.306675592000062 ], [ -125.222209144999965, 50.307309945000064 ], [ -125.218076620999938, 50.307280809000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999984860779915", "sL_AssetLoss": "163.81293", "sL_BldgLoss": "163.81045", "sL_StrLoss": "163.8", "sL_NStrLoss": "0.01045", "sL_ContLoss": "0.00248", "geom_point": "0101000020E6100000A15A8EA16D855FC068C2DDF6103F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.083617196999938, 50.495392169000134 ], [ -126.083616228999986, 50.494870182000028 ], [ -126.083374818999928, 50.494870363000061 ], [ -126.083373165999973, 50.493975612000142 ], [ -126.08317486599995, 50.493975760000055 ], [ -126.083168239999978, 50.490381862000042 ], [ -126.08610580099996, 50.490379623000088 ], [ -126.086454698999916, 50.49123320000016 ], [ -126.086743905999953, 50.492490810000035 ], [ -126.086687801999958, 50.492957893000025 ], [ -126.086967900000019, 50.493692803000087 ], [ -126.086638224999959, 50.494000401000086 ], [ -126.086034889999922, 50.494191313000094 ], [ -126.085808813999947, 50.494177001 ], [ -126.08571620399999, 50.494084397000066 ], [ -126.086051421999969, 50.493661399000104 ], [ -126.086000711999944, 50.493570292000115 ], [ -126.085623700999946, 50.493506212000106 ], [ -126.08534461, 50.49368850200004 ], [ -126.08557619599999, 50.493846615000088 ], [ -126.085248813999954, 50.49435219300009 ], [ -126.085457992000016, 50.494600011000081 ], [ -126.085729201999953, 50.495245193000088 ], [ -126.085922750999927, 50.495390409000038 ], [ -126.083617196999938, 50.495392169000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "71.6", "sL_BldgLoss": "71.6", "sL_StrLoss": "71.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2B90A527E8E5FC0502666A4FB434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.226938006999958, 50.532933985000049 ], [ -126.22676700099997, 50.532488309000037 ], [ -126.226587885999919, 50.532421295000105 ], [ -126.226134683999959, 50.532436996000072 ], [ -126.225661801999976, 50.532560907000061 ], [ -126.225227682999943, 50.53248819900012 ], [ -126.22498448, 50.532338695000099 ], [ -126.225493978999978, 50.531351701000048 ], [ -126.22557349499999, 50.530940089000076 ], [ -126.226025408999959, 50.530689494000043 ], [ -126.226121791999986, 50.530494407000027 ], [ -126.22593980799995, 50.530471593000065 ], [ -126.22500010499999, 50.530844691000048 ], [ -126.224439597999989, 50.530769213000028 ], [ -126.224236507999947, 50.530629682000026 ], [ -126.224026408999976, 50.530623994000109 ], [ -126.222944818999977, 50.531236403000023 ], [ -126.222906620999964, 50.531245687000144 ], [ -126.222902177999956, 50.530347405000036 ], [ -126.22302393399994, 50.530347160000119 ], [ -126.223021603999925, 50.529876107000064 ], [ -126.228666275999984, 50.529864642000021 ], [ -126.228680437999969, 50.53265573000003 ], [ -126.228225590999898, 50.532640608000079 ], [ -126.227330181999932, 50.533005192000132 ], [ -126.226938006999958, 50.532933985000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006834", "BldgCostT": "2763334", "sL_LossRatio": "0.999781759292096", "sL_AssetLoss": "708.85034", "sL_BldgLoss": "708.69564", "sL_StrLoss": "708.00374", "sL_NStrLoss": "0.6919", "sL_ContLoss": "0.1547", "geom_point": "0101000020E61000007E4334FC5F475FC029850EF4AF1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.107752485999924, 50.229233353000069 ], [ -125.107754996999986, 50.229105619000073 ], [ -125.107076669, 50.229100136000042 ], [ -125.107147388999977, 50.225505318000053 ], [ -125.108011018999917, 50.225512300000034 ], [ -125.108021183999966, 50.224995039000056 ], [ -125.108231875999948, 50.224996741000034 ], [ -125.108240903999942, 50.224537243000064 ], [ -125.11141912, 50.224562870000035 ], [ -125.111458995999953, 50.222525819000076 ], [ -125.113836508999924, 50.222544930000019 ], [ -125.113866190999943, 50.221024376000074 ], [ -125.115067994999933, 50.221034017000107 ], [ -125.115071954999962, 50.220830906000032 ], [ -125.120677788999956, 50.22087570300004 ], [ -125.12067569099996, 50.220983985000075 ], [ -125.125810897999898, 50.221024772000156 ], [ -125.125784702999979, 50.222384959000102 ], [ -125.125422103999981, 50.222613 ], [ -125.125185405999972, 50.223265311000056 ], [ -125.124639306999981, 50.223589988000057 ], [ -125.12327188799999, 50.223759494000035 ], [ -125.12252640899996, 50.223728201000043 ], [ -125.121918791999974, 50.223612812000056 ], [ -125.120813481999974, 50.223632800000082 ], [ -125.120423924999926, 50.22371250100008 ], [ -125.119551019999946, 50.223655603000033 ], [ -125.118896816999936, 50.2234248050001 ], [ -125.118306418999936, 50.223067403000051 ], [ -125.11763449599998, 50.223088699000066 ], [ -125.116323801999911, 50.223273884000079 ], [ -125.115107407999943, 50.223674106000047 ], [ -125.1146622159999, 50.224041506000049 ], [ -125.1145650799999, 50.224376200000101 ], [ -125.114662988999953, 50.224560474000029 ], [ -125.114717207999931, 50.224662502000051 ], [ -125.11474590899995, 50.22530048400008 ], [ -125.11455070399991, 50.2253389870001 ], [ -125.114197894999933, 50.225606715000012 ], [ -125.113646312999961, 50.22579608900007 ], [ -125.113275592999969, 50.226307393000084 ], [ -125.113024090999943, 50.226311693000099 ], [ -125.112719995999953, 50.226110890000044 ], [ -125.112509309, 50.2261138040001 ], [ -125.112010703999914, 50.226419142000076 ], [ -125.111418685999965, 50.226781691000042 ], [ -125.111387610999941, 50.227069386000025 ], [ -125.111702908999973, 50.227190502000084 ], [ -125.111706406999971, 50.227298709000124 ], [ -125.111138700999931, 50.228073506000058 ], [ -125.111058989999918, 50.228794096000072 ], [ -125.111148010999955, 50.228909502000079 ], [ -125.111761501, 50.229141600000133 ], [ -125.111764635999975, 50.22914452100008 ], [ -125.111895997999937, 50.229266761000119 ], [ -125.107752485999924, 50.229233353000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999978550346626", "sL_AssetLoss": "158.51072", "sL_BldgLoss": "158.50732", "sL_StrLoss": "158.5", "sL_NStrLoss": "0.00732", "sL_ContLoss": "0.0034", "geom_point": "0101000020E6100000B283C623E36D5FC0BCA095E61C374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.71566468899999, 50.432670355 ], [ -125.715671472999958, 50.431592516000073 ], [ -125.715018229999885, 50.431590840000077 ], [ -125.715040901999913, 50.42799669000005 ], [ -125.717248627999965, 50.428002340000013 ], [ -125.717258993999963, 50.428016786000043 ], [ -125.717812221999964, 50.428831399000096 ], [ -125.718091197999982, 50.429049287000048 ], [ -125.718312706999981, 50.429727292000024 ], [ -125.718510211999927, 50.429975108000107 ], [ -125.71846160699999, 50.430605999000072 ], [ -125.718622001999975, 50.430916504000074 ], [ -125.718754591999982, 50.431030397000043 ], [ -125.71908771399994, 50.430933589000112 ], [ -125.718933210999978, 50.431215589000068 ], [ -125.719539991999937, 50.431947604000115 ], [ -125.720464629999938, 50.432682553000113 ], [ -125.71566468899999, 50.432670355 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.99620469313003", "sL_AssetLoss": "1743.996", "sL_BldgLoss": "1737.377", "sL_StrLoss": "1678.447", "sL_NStrLoss": "58.93", "sL_ContLoss": "6.619", "geom_point": "0101000020E61000007B372FB1664B5FC0122E473C17064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.185837935, 50.054174368000076 ], [ -125.18587164299997, 50.052287534000044 ], [ -125.184576902999979, 50.052277940000096 ], [ -125.184607655999955, 50.050559158000048 ], [ -125.180058435999982, 50.050525327000109 ], [ -125.180063147999988, 50.050263383000107 ], [ -125.178912908999962, 50.050254799000108 ], [ -125.178965825999981, 50.047317388000067 ], [ -125.17750349, 50.04734484500009 ], [ -125.177466876999944, 50.046535971000019 ], [ -125.177885580999899, 50.046528111000036 ], [ -125.177873373999915, 50.04625848800007 ], [ -125.178292075999977, 50.046250626000052 ], [ -125.17826766, 50.045711379000117 ], [ -125.17784896299996, 50.045719239000015 ], [ -125.177836757999941, 50.045449615000038 ], [ -125.177418062999934, 50.045457473000113 ], [ -125.17740586099994, 50.045187849000058 ], [ -125.17738297699999, 50.045188279000044 ], [ -125.17734146399999, 50.047488351000062 ], [ -125.174201468999939, 50.04746481100009 ], [ -125.174197649999911, 50.047675628000064 ], [ -125.170380708999943, 50.047646893000049 ], [ -125.170306099, 50.047388299000033 ], [ -125.169977212999981, 50.046028199000055 ], [ -125.169755513999974, 50.04573480500008 ], [ -125.168848204999932, 50.045122384000138 ], [ -125.168680186999921, 50.04480189000008 ], [ -125.168689780999969, 50.043784995000046 ], [ -125.168450908999958, 50.042845622000101 ], [ -125.169031358999987, 50.042690740000033 ], [ -125.169319129999934, 50.042717655000075 ], [ -125.170034067999936, 50.042897421000106 ], [ -125.170065788999949, 50.042865705000111 ], [ -125.170258204999953, 50.042804199000024 ], [ -125.1712685, 50.042676092000107 ], [ -125.171278294999979, 50.043369298000059 ], [ -125.171218582999956, 50.043885800000027 ], [ -125.171138484999958, 50.044145106000023 ], [ -125.170736703999935, 50.04466709200009 ], [ -125.17078697099997, 50.044817596000023 ], [ -125.171559915999978, 50.045695494000071 ], [ -125.171963993999924, 50.046278412000049 ], [ -125.172116480999989, 50.04634249500009 ], [ -125.172336600999955, 50.046366692000085 ], [ -125.172960705999941, 50.046371406000105 ], [ -125.173575784999969, 50.046330102000091 ], [ -125.173786021999931, 50.046286799000086 ], [ -125.173846289999915, 50.046237203000011 ], [ -125.173942004000011, 50.046158496000025 ], [ -125.173719614999968, 50.044943098000047 ], [ -125.173627894999981, 50.044074811000051 ], [ -125.173634199999967, 50.042568894000077 ], [ -125.174326711999967, 50.042725200000064 ], [ -125.174873815999916, 50.042892905000066 ], [ -125.176271806999935, 50.04356419100003 ], [ -125.176664298999967, 50.043861991000078 ], [ -125.177336600000018, 50.044597116000048 ], [ -125.178699702999936, 50.04542989300009 ], [ -125.178846384999957, 50.0455358540001 ], [ -125.179303404, 50.045866004000089 ], [ -125.179418895999973, 50.046040414000103 ], [ -125.17973678099996, 50.046534492000035 ], [ -125.180028907999969, 50.046827103000048 ], [ -125.1807764, 50.047345988000089 ], [ -125.181225611999977, 50.047602007000087 ], [ -125.181465298999967, 50.047702177000076 ], [ -125.182123720999982, 50.047977292000077 ], [ -125.182619994999968, 50.048096893000064 ], [ -125.182916329999898, 50.04814981500008 ], [ -125.18350812599999, 50.048255506000011 ], [ -125.18422609299995, 50.048473894000061 ], [ -125.184642, 50.048638808000064 ], [ -125.184662400999969, 50.048650876000124 ], [ -125.184950192999963, 50.048820886000087 ], [ -125.185415392, 50.04919741 ], [ -125.185699309999947, 50.049560240000105 ], [ -125.18609120799999, 50.050061002000092 ], [ -125.18610221899992, 50.050081476000074 ], [ -125.186222313000016, 50.050304784000062 ], [ -125.186339630999967, 50.051028123000073 ], [ -125.186363168999932, 50.051173400000103 ], [ -125.186525409999959, 50.051475801000038 ], [ -125.186720723999898, 50.051685040000066 ], [ -125.187032392999967, 50.052018914000065 ], [ -125.187263391999949, 50.052217501000023 ], [ -125.187512705999964, 50.05233529900007 ], [ -125.188199838999978, 50.052553787000143 ], [ -125.18839861, 50.05261699900008 ], [ -125.188991900999923, 50.052941423000064 ], [ -125.189169793999923, 50.053149522000041 ], [ -125.188773616999981, 50.053279707000044 ], [ -125.188750528999918, 50.053293209000067 ], [ -125.188142560999907, 50.053649834000041 ], [ -125.188127284999936, 50.053658791000046 ], [ -125.187506511999985, 50.054090191000057 ], [ -125.187392930999977, 50.054185870000012 ], [ -125.185837935, 50.054174368000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999898309011881", "sL_AssetLoss": "233.059", "sL_BldgLoss": "233.0353", "sL_StrLoss": "233", "sL_NStrLoss": "0.0353", "sL_ContLoss": "0.0237", "geom_point": "0101000020E61000000E76370DD9465FC0045BC22D611E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.104957346, 50.239304258000082 ], [ -125.104968171999971, 50.238755466000043 ], [ -125.1049301799999, 50.238755159000043 ], [ -125.105001083999952, 50.235160388000104 ], [ -125.109552158999961, 50.235197180000078 ], [ -125.109158889999946, 50.235341189000103 ], [ -125.108849004999968, 50.235598987000095 ], [ -125.108217590999914, 50.236536098000037 ], [ -125.108236720999969, 50.236688502000021 ], [ -125.108507302999953, 50.236792496000128 ], [ -125.109028601999967, 50.236845192000054 ], [ -125.109074994999943, 50.236907803000108 ], [ -125.108957016, 50.23710720200009 ], [ -125.10902659599999, 50.2374205140001 ], [ -125.10859829, 50.237860596000083 ], [ -125.108607996999964, 50.238102697000059 ], [ -125.109157803999949, 50.238488713000095 ], [ -125.109493120999986, 50.238437400000073 ], [ -125.109833419000026, 50.238539999000047 ], [ -125.109564489999954, 50.23880491000012 ], [ -125.109891600999958, 50.238915985000098 ], [ -125.109914603999968, 50.239113896000013 ], [ -125.109666364999924, 50.239342323000074 ], [ -125.104957346, 50.239304258000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999752099179964", "sL_AssetLoss": "122.2263", "sL_BldgLoss": "122.196", "sL_StrLoss": "122", "sL_NStrLoss": "0.196", "sL_ContLoss": "0.0303", "geom_point": "0101000020E6100000CD796394E9475FC0F5E681D9CE1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.122036899999912, 50.23984601100009 ], [ -125.122169897999981, 50.239386010000025 ], [ -125.122375783999971, 50.239282001000063 ], [ -125.122978, 50.239253504000068 ], [ -125.123435210999929, 50.23940730200011 ], [ -125.1237698, 50.239401599000061 ], [ -125.124115084, 50.239250702000056 ], [ -125.124426904999964, 50.239334695000139 ], [ -125.124959485999966, 50.239351793 ], [ -125.12518968099999, 50.239474299000101 ], [ -125.125343263, 50.239737405000056 ], [ -125.12530698299993, 50.24161939300005 ], [ -125.125238343999939, 50.241618849000076 ], [ -125.125231003999914, 50.241999593000067 ], [ -125.121609366999934, 50.241970849000033 ], [ -125.12156780199993, 50.241888288000105 ], [ -125.121534997999959, 50.241492401000066 ], [ -125.121943514999913, 50.241189004000056 ], [ -125.122495513999979, 50.241016697000099 ], [ -125.122640691999962, 50.240807295000124 ], [ -125.122473993999961, 50.240549503000075 ], [ -125.12181997499999, 50.240308797000075 ], [ -125.121686084999965, 50.240176393000148 ], [ -125.122036899999912, 50.23984601100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99971843452901", "sL_AssetLoss": "242.2172", "sL_BldgLoss": "242.149", "sL_StrLoss": "242", "sL_NStrLoss": "0.149", "sL_ContLoss": "0.0682", "geom_point": "0101000020E6100000C6347093D3475FC06EF195E510184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.120293929999931, 50.189981266000061 ], [ -125.120363541999922, 50.186386257000017 ], [ -125.124992315, 50.186423074000096 ], [ -125.125136109999943, 50.186540687000068 ], [ -125.125139393000012, 50.186909512000014 ], [ -125.124583206999944, 50.187342497000053 ], [ -125.124681516999942, 50.18762880600012 ], [ -125.124513195999967, 50.187631596000088 ], [ -125.124283508999966, 50.187509093000102 ], [ -125.124371915999987, 50.187912197000131 ], [ -125.123624595999971, 50.189060086000019 ], [ -125.123273716999961, 50.189399093000105 ], [ -125.122619978999978, 50.189500199000058 ], [ -125.122625499999984, 50.189608397000022 ], [ -125.122797118999983, 50.189713802000099 ], [ -125.123578709999933, 50.189933103000065 ], [ -125.123674508999969, 50.190008174000063 ], [ -125.120293929999931, 50.189981266000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999802461233582", "sL_AssetLoss": "221.2224", "sL_BldgLoss": "221.1787", "sL_StrLoss": "221", "sL_NStrLoss": "0.1787", "sL_ContLoss": "0.0437", "geom_point": "0101000020E610000067CD762294485FC03D6D437BAB354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.131646046999947, 50.421510235000063 ], [ -125.131715113999974, 50.417916280000036 ], [ -125.137345411999959, 50.417960221000108 ], [ -125.13731222499996, 50.419698436000033 ], [ -125.137177902999966, 50.419750708000038 ], [ -125.136232591999971, 50.419732209000053 ], [ -125.135932914999927, 50.419638201000105 ], [ -125.135465900999932, 50.419871710000045 ], [ -125.134076285999967, 50.419987089000116 ], [ -125.134141808999956, 50.420183603000112 ], [ -125.133742103999907, 50.420344585000059 ], [ -125.133374401999987, 50.421268895000068 ], [ -125.133074415999928, 50.421481093000104 ], [ -125.132951468999977, 50.421520447000042 ], [ -125.131646046999947, 50.421510235000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999824924250559", "sL_AssetLoss": "214.193", "sL_BldgLoss": "214.1555", "sL_StrLoss": "214", "sL_NStrLoss": "0.1555", "sL_ContLoss": "0.0375", "geom_point": "0101000020E61000008D20199BAB4A5FC076628343F7344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.165860711999954, 50.41180433300007 ], [ -125.168759188999942, 50.411826100000113 ], [ -125.16869307799999, 50.415420103000024 ], [ -125.163063067999957, 50.415377755000044 ], [ -125.163064018999947, 50.415326418000049 ], [ -125.163583888999966, 50.415026604000104 ], [ -125.164258216999897, 50.414384306000073 ], [ -125.165171678999911, 50.414052401000063 ], [ -125.165474396999954, 50.413865795000106 ], [ -125.165564101999948, 50.413370211000071 ], [ -125.165239485999933, 50.413069697 ], [ -125.165211907999961, 50.412756394000027 ], [ -125.165860711999954, 50.41180433300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999694438150748", "sL_AssetLoss": "240.5405", "sL_BldgLoss": "240.467", "sL_StrLoss": "240", "sL_NStrLoss": "0.467", "sL_ContLoss": "0.0735", "geom_point": "0101000020E610000018709E036E325FC084AD44664F724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.786268485999955, 50.894924242000108 ], [ -124.786273099999988, 50.894754383000105 ], [ -124.784788539999965, 50.894738305000061 ], [ -124.78485444499999, 50.892314929000101 ], [ -124.785377515, 50.892240700000045 ], [ -124.786161921999962, 50.8919587030001 ], [ -124.78746743899994, 50.891174581000016 ], [ -124.790575707999949, 50.891208150000125 ], [ -124.790571109999959, 50.891378010000039 ], [ -124.791860592999939, 50.89139191100012 ], [ -124.791704199999941, 50.891495787000139 ], [ -124.791502479999963, 50.891777802000092 ], [ -124.791111101999888, 50.891981490000049 ], [ -124.791227112999977, 50.89243010100008 ], [ -124.790991781999978, 50.892559700000028 ], [ -124.790942496999918, 50.89279330300004 ], [ -124.790168821999927, 50.892994102000074 ], [ -124.790078116999965, 50.893229107000074 ], [ -124.790167608999965, 50.893308807000082 ], [ -124.791087183999963, 50.893546691000026 ], [ -124.791993663999932, 50.893683655000096 ], [ -124.791985863, 50.893972193000089 ], [ -124.789290785999967, 50.893429902000101 ], [ -124.788794596999978, 50.893465497000086 ], [ -124.787891988999917, 50.893317403000061 ], [ -124.787497605999931, 50.893439894000075 ], [ -124.788225086999958, 50.893815893000117 ], [ -124.788885183, 50.89402090300004 ], [ -124.789031693999974, 50.894136288000027 ], [ -124.789052008999974, 50.894297206000047 ], [ -124.789241890999975, 50.894384088000031 ], [ -124.789938001999971, 50.894401196000032 ], [ -124.79063338899999, 50.89470458800006 ], [ -124.790612895999971, 50.894921096000054 ], [ -124.79040363899999, 50.894968923000093 ], [ -124.786268485999955, 50.894924242000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999611377963823", "sL_AssetLoss": "818.5331", "sL_BldgLoss": "818.215", "sL_StrLoss": "817", "sL_NStrLoss": "1.215", "sL_ContLoss": "0.3181", "geom_point": "0101000020E610000013BC9D5466465FC08C28B362B4154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.095629522999928, 50.173064271000094 ], [ -125.09564275599999, 50.172399267000117 ], [ -125.092110738999978, 50.172370242000035 ], [ -125.091998101999977, 50.172291512000129 ], [ -125.091902117999894, 50.172032200000046 ], [ -125.091983293999945, 50.171959616 ], [ -125.092540912999979, 50.17187700700002 ], [ -125.092813500999938, 50.171728912000098 ], [ -125.093096722, 50.170833099000049 ], [ -125.093830601999926, 50.170647909000103 ], [ -125.094096006999905, 50.170320304000093 ], [ -125.094446216999941, 50.170296095 ], [ -125.095531003999938, 50.17041998800012 ], [ -125.095844610999961, 50.170234888000081 ], [ -125.095945891, 50.169981393000036 ], [ -125.096820301999955, 50.169830384000136 ], [ -125.096941204999979, 50.169692313000084 ], [ -125.09663608399994, 50.169472891000076 ], [ -125.09663859799997, 50.169203793000065 ], [ -125.096816802999967, 50.169084093000016 ], [ -125.09703300699999, 50.169259292000021 ], [ -125.097423802999955, 50.169225088000104 ], [ -125.09769848699996, 50.169112603000016 ], [ -125.097967685999933, 50.168504503000079 ], [ -125.098207685999981, 50.168258104000124 ], [ -125.098203400999978, 50.167843708000056 ], [ -125.098408702999933, 50.167697010000076 ], [ -125.098558381999965, 50.167631738000054 ], [ -125.099167629999968, 50.167636718000082 ], [ -125.099172002999936, 50.167416072000044 ], [ -125.099208304999976, 50.167412095000039 ], [ -125.099747489999913, 50.167573093000122 ], [ -125.100265300999965, 50.167608711000106 ], [ -125.101671597999925, 50.16739501000005 ], [ -125.101679980999904, 50.167268300000011 ], [ -125.100838279999962, 50.16661879400008 ], [ -125.100317212999983, 50.166519101000034 ], [ -125.099959597999941, 50.166346800000063 ], [ -125.099986112999943, 50.166003590000031 ], [ -125.099851000999962, 50.165799892000109 ], [ -125.099512090999923, 50.165589460000021 ], [ -125.104807258999955, 50.165632584000043 ], [ -125.104803333999939, 50.165831890000085 ], [ -125.105269254999953, 50.165835672000107 ], [ -125.105265216999967, 50.166040748000107 ], [ -125.105894843999977, 50.166045856000011 ], [ -125.105824117999987, 50.169640951000083 ], [ -125.10129877599995, 50.169604157000023 ], [ -125.101229443999969, 50.17311005800007 ], [ -125.095629522999928, 50.173064271000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999745229293636", "sL_AssetLoss": "120.108", "sL_BldgLoss": "120.0774", "sL_StrLoss": "120", "sL_NStrLoss": "0.0774", "sL_ContLoss": "0.0306", "geom_point": "0101000020E61000005C8D4F7586465FC0A5B978ECA51F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.100473820999952, 50.245739199000063 ], [ -125.104553072999963, 50.24577234500007 ], [ -125.104186888999905, 50.245991406000037 ], [ -125.103770803999922, 50.246403003000069 ], [ -125.104018705999977, 50.246955584000041 ], [ -125.103834587999955, 50.247193507000055 ], [ -125.103884701999959, 50.247408503000024 ], [ -125.103450706000018, 50.247740407000101 ], [ -125.103008985999935, 50.247901303000106 ], [ -125.10218949199999, 50.248419693000052 ], [ -125.101847795, 50.249345679000037 ], [ -125.100402541, 50.249333918000112 ], [ -125.100473820999952, 50.245739199000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3789417", "BldgCostT": "2141667", "sL_LossRatio": "0.967900674829496", "sL_AssetLoss": "361.721", "sL_BldgLoss": "350.11", "sL_StrLoss": "289.95", "sL_NStrLoss": "60.16", "sL_ContLoss": "11.611", "geom_point": "0101000020E6100000E86A0AE82E445FC07072648A5E154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.06531171099999, 50.169216608000085 ], [ -125.065202393999982, 50.168597088000126 ], [ -125.065452586999982, 50.16827799900009 ], [ -125.065768113999951, 50.168111408000058 ], [ -125.065776398999944, 50.167976086000088 ], [ -125.065092307, 50.167376498000117 ], [ -125.064852885999954, 50.167326703000093 ], [ -125.064086908999968, 50.167447705000065 ], [ -125.062944113999947, 50.167900594000052 ], [ -125.061898006999954, 50.167981810000079 ], [ -125.061417, 50.167882113000054 ], [ -125.061035969999978, 50.167585360000061 ], [ -125.06107798499994, 50.165551521000069 ], [ -125.061582471999941, 50.165555817000012 ], [ -125.06158537200001, 50.165415335000027 ], [ -125.062237973999956, 50.165420887000039 ], [ -125.06223874799997, 50.165383350000106 ], [ -125.067837689999948, 50.165430833000109 ], [ -125.067833934999982, 50.165613938000085 ], [ -125.068588473999966, 50.165620315000034 ], [ -125.068577360999953, 50.166162559000014 ], [ -125.068784799999918, 50.16616431200007 ], [ -125.068779091999971, 50.166442860000082 ], [ -125.069818858999909, 50.166451639000073 ], [ -125.069910786999941, 50.166759795000118 ], [ -125.069865320999952, 50.166986301000115 ], [ -125.069524589000011, 50.167198509000066 ], [ -125.068942506999932, 50.167325210000101 ], [ -125.068780713999914, 50.16750900800006 ], [ -125.068810705999965, 50.167876384000053 ], [ -125.06819120599999, 50.168085802000071 ], [ -125.068339080999976, 50.168307898000137 ], [ -125.068690710999959, 50.168329297000042 ], [ -125.068794895999957, 50.168453188000107 ], [ -125.068451706999937, 50.168648286000057 ], [ -125.067964496999963, 50.168683912000084 ], [ -125.067335118999949, 50.169018605000119 ], [ -125.067081998999981, 50.168995806000034 ], [ -125.066851194999956, 50.169171014000085 ], [ -125.066655704999931, 50.169183799000095 ], [ -125.066080581999984, 50.169481501000064 ], [ -125.065742295999939, 50.169460100000052 ], [ -125.06531171099999, 50.169216608000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "107.9", "sL_BldgLoss": "107.9", "sL_StrLoss": "107.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D1D50C5F95845FC0466348A95F424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.068935498999949, 50.518220489000143 ], [ -126.069196817999938, 50.517858803000088 ], [ -126.069331094999953, 50.517736294000024 ], [ -126.069646407999969, 50.517680707000068 ], [ -126.06967661099999, 50.517853093000035 ], [ -126.069909495999966, 50.517956988000051 ], [ -126.070113314999986, 50.51788159700002 ], [ -126.069796195, 50.517766213000087 ], [ -126.069913894999928, 50.517669403000056 ], [ -126.070594005999951, 50.517623792000094 ], [ -126.071082899999951, 50.517230689000037 ], [ -126.071487092999945, 50.517115311000076 ], [ -126.07170882299998, 50.5169501 ], [ -126.072700084999923, 50.516659597000071 ], [ -126.072993981999915, 50.516460201000058 ], [ -126.073267270999906, 50.515851098000084 ], [ -126.074132172999938, 50.515850525000097 ], [ -126.074138080999944, 50.519444312000125 ], [ -126.073584788999938, 50.519444679000102 ], [ -126.073585278999957, 50.519744225000068 ], [ -126.073171332999948, 50.519744499000076 ], [ -126.073172092000036, 50.52021183500014 ], [ -126.067528603999946, 50.520215406000069 ], [ -126.067528258999914, 50.519985462000108 ], [ -126.06846279399997, 50.519674605000027 ], [ -126.06887418599996, 50.519208891000119 ], [ -126.068866877999966, 50.519092097000083 ], [ -126.068544595999953, 50.518812994000058 ], [ -126.06889739099995, 50.518579410000051 ], [ -126.068935498999949, 50.518220489000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.995197711249617", "sL_AssetLoss": "293.61", "sL_BldgLoss": "292.2", "sL_StrLoss": "281", "sL_NStrLoss": "11.2", "sL_ContLoss": "1.41", "geom_point": "0101000020E610000010B61299BD4B5FC09C365FFC1F094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.182816332999948, 50.072071485999977 ], [ -125.182755110999935, 50.070723376000061 ], [ -125.18233619599998, 50.070731255000069 ], [ -125.182323954999958, 50.070461633000043 ], [ -125.181905044999908, 50.070469511000105 ], [ -125.181868326999961, 50.069660643000127 ], [ -125.183219073999936, 50.069635236000039 ], [ -125.183543943999936, 50.06962912300007 ], [ -125.183556190999951, 50.069898745000025 ], [ -125.183975096, 50.069890861000069 ], [ -125.184024098999942, 50.070969350000084 ], [ -125.184861928999936, 50.070953576000058 ], [ -125.184935466999946, 50.072571307000075 ], [ -125.183678679999986, 50.072594966000061 ], [ -125.183690930999916, 50.07286458800008 ], [ -125.183096984999949, 50.072875765000092 ], [ -125.182434135999969, 50.07288823400004 ], [ -125.182397406999925, 50.072079367000114 ], [ -125.182816332999948, 50.072071485999977 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999896077655972", "sL_AssetLoss": "400.2989", "sL_BldgLoss": "400.2573", "sL_StrLoss": "400", "sL_NStrLoss": "0.2573", "sL_ContLoss": "0.0416", "geom_point": "0101000020E610000080B9F51E57575FC0C60A0AC54E3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.364290494999963, 50.4559313130001 ], [ -125.363807007999966, 50.455850084000076 ], [ -125.36325779400002, 50.45586150400004 ], [ -125.362584011999957, 50.456171987000097 ], [ -125.362136091999901, 50.456523794000077 ], [ -125.361836709999977, 50.456996586000031 ], [ -125.361752790999944, 50.457331312000044 ], [ -125.361991468, 50.458167327000076 ], [ -125.359642611999988, 50.458153802000034 ], [ -125.35969358599999, 50.45455988900008 ], [ -125.360730593999932, 50.454565867000071 ], [ -125.360743802999977, 50.453633013000051 ], [ -125.361942001999964, 50.453639907000152 ], [ -125.361943961999913, 50.453501243000105 ], [ -125.367578889999919, 50.45353349300008 ], [ -125.367573014999905, 50.453952901000115 ], [ -125.369601737999972, 50.45396444200005 ], [ -125.369551552999937, 50.457558362000057 ], [ -125.36893256399999, 50.457554846000065 ], [ -125.368931930999963, 50.457600178000071 ], [ -125.368846483999917, 50.457599693000091 ], [ -125.368832786999988, 50.458579379000078 ], [ -125.36830923, 50.458576400000062 ], [ -125.368028097999968, 50.457986412000125 ], [ -125.367283620999956, 50.457470901000143 ], [ -125.366850707999944, 50.456976705000073 ], [ -125.366235913999958, 50.456529503000134 ], [ -125.36501689, 50.456096502000044 ], [ -125.364290494999963, 50.4559313130001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998886176742423", "sL_AssetLoss": "337.576", "sL_BldgLoss": "337.2", "sL_StrLoss": "334", "sL_NStrLoss": "3.2", "sL_ContLoss": "0.376", "geom_point": "0101000020E6100000BFB12D245C495FC05C0DA2184D334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.149112621, 50.403205600000021 ], [ -125.148262422999935, 50.403050402000119 ], [ -125.147281293999924, 50.403158595000065 ], [ -125.14660241899999, 50.403159580000043 ], [ -125.146623759999954, 50.402029174000106 ], [ -125.143201130999941, 50.402002774000039 ], [ -125.143269247999939, 50.398408725000152 ], [ -125.148639916999983, 50.398450105000087 ], [ -125.148113393999964, 50.3988346880001 ], [ -125.146595178, 50.399492695000063 ], [ -125.145366483999965, 50.399730593000051 ], [ -125.144834304999932, 50.400063789000086 ], [ -125.145020872999922, 50.400169194000057 ], [ -125.145302811999912, 50.400182002000065 ], [ -125.145760692999914, 50.400029701000065 ], [ -125.146153489999946, 50.400012602000089 ], [ -125.147030576999953, 50.400122195000051 ], [ -125.147573501999915, 50.400266107000078 ], [ -125.148285875999989, 50.400801596000122 ], [ -125.149649989999901, 50.401369813 ], [ -125.150162084999977, 50.40179139400005 ], [ -125.150026124999954, 50.402208704000024 ], [ -125.149667890999964, 50.402385298000084 ], [ -125.149978694999945, 50.402739906000079 ], [ -125.149777989999976, 50.40298629000003 ], [ -125.149112621, 50.403205600000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998436600854522", "sL_AssetLoss": "196.367", "sL_BldgLoss": "196.06", "sL_StrLoss": "195", "sL_NStrLoss": "1.06", "sL_ContLoss": "0.307", "geom_point": "0101000020E6100000BBF1ACAC46485FC0BB2431B5E31D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.1288178, 50.234649008000076 ], [ -125.127737188999944, 50.233662094000088 ], [ -125.127049507999985, 50.23367489300005 ], [ -125.126975980999987, 50.233595091000048 ], [ -125.126986190999958, 50.233503987000063 ], [ -125.127507009999988, 50.233216287000047 ], [ -125.127440897999932, 50.233019697000017 ], [ -125.126972799999976, 50.232551212000018 ], [ -125.126896789999975, 50.23213960500005 ], [ -125.127197090999957, 50.231963012000072 ], [ -125.127198547999924, 50.231902687000108 ], [ -125.129781286999943, 50.231923072 ], [ -125.129573224999888, 50.232072600000102 ], [ -125.129567788999935, 50.232296213000041 ], [ -125.129796195, 50.232364611000051 ], [ -125.130278073999932, 50.232185196000103 ], [ -125.130770199999958, 50.232185200000082 ], [ -125.131051386999985, 50.232507025000082 ], [ -125.130993539999949, 50.235527965000117 ], [ -125.129334983999968, 50.235514900000062 ], [ -125.129049890999966, 50.23514889300008 ], [ -125.1288178, 50.234649008000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.996578066330022", "sL_AssetLoss": "270.315", "sL_BldgLoss": "269.39", "sL_StrLoss": "261", "sL_NStrLoss": "8.39", "sL_ContLoss": "0.925", "geom_point": "0101000020E61000000CA7B330D74B5FC0D99D49F663084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.182152593999916, 50.066686919000105 ], [ -125.18211587699993, 50.065878051000013 ], [ -125.180021521999976, 50.065917419000101 ], [ -125.179994170999947, 50.06531424700006 ], [ -125.179984840999936, 50.065108551000016 ], [ -125.183754619999903, 50.065037661000112 ], [ -125.183766865999985, 50.065307283000116 ], [ -125.187117783999938, 50.065244166000099 ], [ -125.187068721999964, 50.064165680000087 ], [ -125.188325284999948, 50.064141986000081 ], [ -125.188276196999965, 50.063063500000077 ], [ -125.188311929999955, 50.063062827000088 ], [ -125.188393016999939, 50.063280388000074 ], [ -125.188469976999968, 50.063570605000073 ], [ -125.188578910000032, 50.063981201000026 ], [ -125.188749521999952, 50.064879958000077 ], [ -125.188757708999958, 50.064922900000035 ], [ -125.188803405, 50.065058879000027 ], [ -125.188908280999925, 50.06537091400002 ], [ -125.189086678999971, 50.065901686000082 ], [ -125.189144587999976, 50.066015502000077 ], [ -125.188830066999969, 50.066021436000042 ], [ -125.188824506999936, 50.065899338000072 ], [ -125.188817790999934, 50.06575181500002 ], [ -125.188398921999948, 50.065759715000077 ], [ -125.188405107999955, 50.065895580000088 ], [ -125.188411195999947, 50.066029338000057 ], [ -125.18799232500001, 50.066037237000039 ], [ -125.188004596999974, 50.066306858000061 ], [ -125.183396980999945, 50.066393655000084 ], [ -125.18340922699997, 50.066663277000046 ], [ -125.183062660999937, 50.066669799000096 ], [ -125.182152593999916, 50.066686919000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999501962338532", "sL_AssetLoss": "285.119", "sL_BldgLoss": "284.977", "sL_StrLoss": "284", "sL_NStrLoss": "0.977", "sL_ContLoss": "0.142", "geom_point": "0101000020E610000024CAC5B52D365FC06565E2F396194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.842324401999974, 50.20093768100007 ], [ -124.84236441199999, 50.199368080000113 ], [ -124.843190411999927, 50.199344307000018 ], [ -124.843856609999989, 50.199171992000103 ], [ -124.844747507999955, 50.19867210200011 ], [ -124.845067004999933, 50.198595195000053 ], [ -124.845435416, 50.198706295000093 ], [ -124.845808805999937, 50.19893409500002 ], [ -124.845364487999973, 50.199382796000059 ], [ -124.845340087999929, 50.19951810100013 ], [ -124.845539487999972, 50.19956790800012 ], [ -124.845777205999966, 50.199538002000054 ], [ -124.846046180999906, 50.199263101000042 ], [ -124.8470849, 50.198590900000035 ], [ -124.84761019199999, 50.198420014000092 ], [ -124.84782080399998, 50.19841719900009 ], [ -124.84813680699996, 50.198618009 ], [ -124.848044511999944, 50.199096488000094 ], [ -124.848232693999961, 50.199273088000027 ], [ -124.8489747, 50.199244609000061 ], [ -124.849374194999967, 50.199093588000025 ], [ -124.849865697999974, 50.19875328800007 ], [ -124.85061625699997, 50.198683941000091 ], [ -124.850562266999958, 50.200817165000068 ], [ -124.847932711999974, 50.200789739000101 ], [ -124.847927469999945, 50.200996330000031 ], [ -124.842324401999974, 50.20093768100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "258.8", "sL_BldgLoss": "258.8", "sL_StrLoss": "258.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000500E03B1E755FC0B9CF22C25C434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.827060813999978, 50.528026200000092 ], [ -125.8267433, 50.527907990000067 ], [ -125.826304917999963, 50.527873796000087 ], [ -125.826241511999967, 50.527777004000058 ], [ -125.826619992999937, 50.527739911000069 ], [ -125.827427391999947, 50.52800910500013 ], [ -125.827494404999982, 50.527953605000029 ], [ -125.827297689999952, 50.527499197000061 ], [ -125.827421221999927, 50.526723 ], [ -125.827328091999945, 50.526580609000064 ], [ -125.827344183999969, 50.526140499000114 ], [ -125.827669687, 50.525223401000041 ], [ -125.827713376999952, 50.52478189300011 ], [ -125.827713807999942, 50.524556803000088 ], [ -125.82666108699999, 50.524411600000064 ], [ -125.826503498999941, 50.524361707000068 ], [ -125.82648100499992, 50.524226395000092 ], [ -125.827831115999956, 50.524391605000119 ], [ -125.828111816, 50.524123897000074 ], [ -125.827633601999963, 50.523901713000107 ], [ -125.828071593999979, 50.523927300000011 ], [ -125.82807469899997, 50.523729406000044 ], [ -125.827344091999976, 50.523089899000126 ], [ -125.826449671, 50.522668309000053 ], [ -125.831062480999933, 50.522675413000066 ], [ -125.831061071999926, 50.523051342000031 ], [ -125.831886970999975, 50.523052595000046 ], [ -125.831873567999949, 50.526646341000117 ], [ -125.831762380999976, 50.526646172000014 ], [ -125.831760790999979, 50.527072442000055 ], [ -125.831340635999965, 50.527071805000062 ], [ -125.831339543999945, 50.52736352900007 ], [ -125.832372123999932, 50.527365091000107 ], [ -125.832371269999953, 50.527594785000133 ], [ -125.83296341399992, 50.527595676000061 ], [ -125.832952055999897, 50.530660644000086 ], [ -125.8326139, 50.53049149400001 ], [ -125.831086407999962, 50.529476008000039 ], [ -125.830408091999956, 50.529456091000064 ], [ -125.829482004999932, 50.529074393000059 ], [ -125.82905428399998, 50.529013201000076 ], [ -125.82810190899994, 50.528658600000021 ], [ -125.827060813999978, 50.528026200000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999908338158683", "sL_AssetLoss": "197.79223", "sL_BldgLoss": "197.7741", "sL_StrLoss": "197.7", "sL_NStrLoss": "0.0741", "sL_ContLoss": "0.01813", "geom_point": "0101000020E61000004B6B992D95665FC006A7361F74424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.59951926299999, 50.520664698000054 ], [ -125.599522059000023, 50.520349954000068 ], [ -125.600011408999933, 50.520413808000093 ], [ -125.600725884999946, 50.520335496000023 ], [ -125.600906496999954, 50.52027710600008 ], [ -125.600927619999979, 50.520150305000115 ], [ -125.600885505999926, 50.519899706000075 ], [ -125.600720109999941, 50.519723103000061 ], [ -125.600629807999937, 50.519105003000099 ], [ -125.600082790999977, 50.518379995000039 ], [ -125.60010648299999, 50.518280290000071 ], [ -125.601320893999983, 50.51782170900006 ], [ -125.601908499, 50.517709210000064 ], [ -125.602247608, 50.51746710900003 ], [ -125.603059687999988, 50.517593910000137 ], [ -125.60374531299999, 50.517524096000095 ], [ -125.60479870099999, 50.5176707890001 ], [ -125.605189594999928, 50.517616587000099 ], [ -125.605162722999978, 50.520684885000044 ], [ -125.59951926299999, 50.520664698000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999634041109647", "sL_AssetLoss": "377.9113", "sL_BldgLoss": "377.773", "sL_StrLoss": "377", "sL_NStrLoss": "0.773", "sL_ContLoss": "0.1383", "geom_point": "0101000020E610000075CCB371083D5FC0F79D572358214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.950818313999889, 50.263390135000122 ], [ -124.950901471999927, 50.259795586000116 ], [ -124.95128135, 50.259799193000063 ], [ -124.95128857399996, 50.259486796000061 ], [ -124.952374136999964, 50.259497094000032 ], [ -124.952394182, 50.258629321000093 ], [ -124.952453, 50.258629878000065 ], [ -124.95246431, 50.258140221000069 ], [ -124.958074578999955, 50.258193273000117 ], [ -124.958053945999964, 50.259091419000136 ], [ -124.957701494999966, 50.259192413000093 ], [ -124.956694508999988, 50.259280704000084 ], [ -124.956612418999939, 50.259346304000111 ], [ -124.956825206999923, 50.259414604000042 ], [ -124.956788903999936, 50.259512909000122 ], [ -124.956241779999971, 50.259568404000063 ], [ -124.955914102999884, 50.259789208000043 ], [ -124.955531804999964, 50.260713495000083 ], [ -124.955657017999968, 50.261016798000085 ], [ -124.95548241699997, 50.261190601000102 ], [ -124.954901708999941, 50.261100902000067 ], [ -124.954772104999961, 50.260986912000114 ], [ -124.954646319999966, 50.261015405000123 ], [ -124.954717794999937, 50.261716095000097 ], [ -124.954329720999979, 50.261867103999982 ], [ -124.954195501999934, 50.262022297000101 ], [ -124.953901500000015, 50.262710207000033 ], [ -124.954169780999919, 50.263091899000116 ], [ -124.954617565999939, 50.263426146 ], [ -124.950818313999889, 50.263390135000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999844114882791", "sL_AssetLoss": "198.2229", "sL_BldgLoss": "198.192", "sL_StrLoss": "198", "sL_NStrLoss": "0.192", "sL_ContLoss": "0.0309", "geom_point": "0101000020E6100000090FC3DC284E5FC00D4106D9CF274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.21964200499994, 50.313317736000045 ], [ -125.219651262999903, 50.312780334000067 ], [ -125.219367327999962, 50.312778330000071 ], [ -125.219382219999929, 50.311914135000087 ], [ -125.219339181999914, 50.311913831000084 ], [ -125.219401123999944, 50.308319328000017 ], [ -125.223054183999963, 50.308345048000071 ], [ -125.222192804000017, 50.308609708000098 ], [ -125.222158897999975, 50.309375892000062 ], [ -125.221940616999987, 50.309513999000096 ], [ -125.221957996999905, 50.309586699000107 ], [ -125.22255459499992, 50.309763303000132 ], [ -125.222722706999932, 50.310048085000091 ], [ -125.222985686999905, 50.310231800000096 ], [ -125.223034393999924, 50.310402687000092 ], [ -125.222847499999915, 50.310612095000081 ], [ -125.22288019199999, 50.311016609000028 ], [ -125.223192282999975, 50.31138830000004 ], [ -125.223301309999982, 50.311908090000081 ], [ -125.2235796, 50.31213739700005 ], [ -125.223750498999934, 50.31251061200004 ], [ -125.224061090999911, 50.312531894000116 ], [ -125.224220195, 50.312628791000051 ], [ -125.224213088999946, 50.312799694000077 ], [ -125.223741511999947, 50.313222708000133 ], [ -125.223518780999953, 50.313235493000072 ], [ -125.223174891999946, 50.313124413 ], [ -125.222618279999892, 50.313225502000108 ], [ -125.222531232999984, 50.313338079000047 ], [ -125.21964200499994, 50.313317736000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999837837100142", "sL_AssetLoss": "249.1322", "sL_BldgLoss": "249.0918", "sL_StrLoss": "249", "sL_NStrLoss": "0.0918", "sL_ContLoss": "0.0404", "geom_point": "0101000020E6100000D735D6D5CF485FC05C8607E6CB144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.135301014999953, 50.164341511000039 ], [ -125.135369400999963, 50.160746373000073 ], [ -125.140967846999914, 50.160790143000099 ], [ -125.140952147999911, 50.161620851000059 ], [ -125.140631817, 50.16181639200007 ], [ -125.139728411999968, 50.16195029800015 ], [ -125.139676309, 50.162022908000019 ], [ -125.139868490000012, 50.162272095000077 ], [ -125.139064909999917, 50.162159589000076 ], [ -125.138969986999925, 50.162206606000026 ], [ -125.138858694999968, 50.163468488000042 ], [ -125.139042085999989, 50.163492694000112 ], [ -125.1392823, 50.163271896000076 ], [ -125.139607298999977, 50.163293287000101 ], [ -125.14011688199993, 50.163733394000118 ], [ -125.140083508999922, 50.163958397000108 ], [ -125.139839301999984, 50.164116497000094 ], [ -125.139976578999963, 50.164355800000045 ], [ -125.139969469999983, 50.164378029000076 ], [ -125.135301014999953, 50.164341511000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998119999082926", "sL_AssetLoss": "436.17", "sL_BldgLoss": "435.35", "sL_StrLoss": "428", "sL_NStrLoss": "7.35", "sL_ContLoss": "0.82", "geom_point": "0101000020E61000006BDECC4301445FC03C6E539767244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.05973768299998, 50.284070497000094 ], [ -125.060691596999945, 50.283720188000082 ], [ -125.061299503, 50.283845485000015 ], [ -125.061660500999935, 50.284071999000076 ], [ -125.061896700999952, 50.283987885000073 ], [ -125.061580789999937, 50.28317471 ], [ -125.06109241199999, 50.282616405000084 ], [ -125.06076519899996, 50.282486798000093 ], [ -125.060771054999933, 50.282455525000088 ], [ -125.064835132999974, 50.28248998 ], [ -125.064760968999948, 50.286084506000087 ], [ -125.059870994000036, 50.286043031000069 ], [ -125.059749482999962, 50.285644296000072 ], [ -125.059964607999945, 50.285433505000071 ], [ -125.060001396999951, 50.284992008000124 ], [ -125.05973768299998, 50.284070497000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999814665805611", "sL_AssetLoss": "347.4804", "sL_BldgLoss": "347.416", "sL_StrLoss": "347", "sL_NStrLoss": "0.416", "sL_ContLoss": "0.0644", "geom_point": "0101000020E61000009727E7F6184A5FC092388ECCE1304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.156225983999946, 50.381630293000079 ], [ -125.155718888999928, 50.381298505000139 ], [ -125.154915621999962, 50.380314302000073 ], [ -125.154451587999972, 50.380008092000025 ], [ -125.154467883000024, 50.379468295 ], [ -125.154398714999928, 50.379158170000032 ], [ -125.158906220999953, 50.379192480000043 ], [ -125.158863413999939, 50.381494169000099 ], [ -125.160429406999981, 50.381506046000027 ], [ -125.160362678999959, 50.385100182 ], [ -125.158352915999927, 50.385084935000101 ], [ -125.158319294999899, 50.384964403000033 ], [ -125.158100503999947, 50.38478919500006 ], [ -125.157945409999954, 50.384485798000092 ], [ -125.157417894999966, 50.38402870700007 ], [ -125.15749992399995, 50.383648403000088 ], [ -125.157262902999918, 50.383402004000082 ], [ -125.15605111699989, 50.383054493 ], [ -125.155082381999961, 50.38248769800007 ], [ -125.155138991999976, 50.382162895000114 ], [ -125.155395607999935, 50.381916583000063 ], [ -125.155911994999911, 50.381843915000033 ], [ -125.156225983999946, 50.381630293000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "141", "sL_BldgLoss": "141", "sL_StrLoss": "141", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D6DA45E22F675FC0772D84492F424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.609712428999941, 50.515169850000049 ], [ -125.614832093999937, 50.515187708000106 ], [ -125.614801389999968, 50.518781447000016 ], [ -125.609158163999936, 50.518761749000078 ], [ -125.609172276999985, 50.517133861000104 ], [ -125.610073314999951, 50.517121003000106 ], [ -125.610617604999916, 50.517009906000069 ], [ -125.61130549399995, 50.516977187000073 ], [ -125.611499477999956, 50.516918797000109 ], [ -125.611673181999933, 50.516707992000114 ], [ -125.611748088999946, 50.516562706000066 ], [ -125.611669579999955, 50.516410300000047 ], [ -125.610070095000012, 50.516068491000098 ], [ -125.609712428999941, 50.515169850000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999693701386697", "sL_AssetLoss": "387.8568", "sL_BldgLoss": "387.738", "sL_StrLoss": "387", "sL_NStrLoss": "0.738", "sL_ContLoss": "0.1188", "geom_point": "0101000020E610000096B80A39E1455FC0BDBF07D0EB174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.088700385999985, 50.186274300000051 ], [ -125.088615388999983, 50.184630791000139 ], [ -125.088429423999969, 50.184400140000022 ], [ -125.09170504399998, 50.18442716400002 ], [ -125.09168411899999, 50.185473814000055 ], [ -125.092211089999978, 50.185478153000091 ], [ -125.092209469999943, 50.185559254000097 ], [ -125.095011687999929, 50.185582282000048 ], [ -125.094940069999936, 50.189177278000095 ], [ -125.091062853999958, 50.189145397000061 ], [ -125.09015331199997, 50.188407789000131 ], [ -125.089907985999957, 50.188117729000069 ], [ -125.089104106999969, 50.187167295000165 ], [ -125.088987122999981, 50.186720104000081 ], [ -125.088755494999972, 50.186359971000059 ], [ -125.088700385999985, 50.186274300000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999997810257139", "sL_AssetLoss": "219.20382", "sL_BldgLoss": "219.20334", "sL_StrLoss": "219.2", "sL_NStrLoss": "0.00334", "sL_ContLoss": "0.00048", "geom_point": "0101000020E6100000747396FECA625FC007818DD2C2414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.54126387, 50.517263918000062 ], [ -125.541279655000011, 50.515712453000063 ], [ -125.540906552999942, 50.515710913000071 ], [ -125.540924000999908, 50.513997305000103 ], [ -125.540943144999957, 50.512117183000029 ], [ -125.540943446999933, 50.512117184000047 ], [ -125.540952297999965, 50.511247781000044 ], [ -125.543158609999949, 50.5112568710001 ], [ -125.5443445399999, 50.511261740000023 ], [ -125.544357137999953, 50.510014964000085 ], [ -125.546888074999941, 50.510025311000028 ], [ -125.546824717999925, 50.510535502000089 ], [ -125.546551780999934, 50.510991193000045 ], [ -125.546516590999929, 50.51163070300008 ], [ -125.546606515999926, 50.511736096000078 ], [ -125.546962819999919, 50.511800199000049 ], [ -125.547345799999974, 50.511316008000065 ], [ -125.547596292999955, 50.511247602000047 ], [ -125.547689007999978, 50.511407111000068 ], [ -125.547642906999968, 50.512092090000095 ], [ -125.54746639199999, 50.512238799000066 ], [ -125.547161098999979, 50.512318587000053 ], [ -125.546883105999939, 50.512134908000071 ], [ -125.546454101999956, 50.512045083000025 ], [ -125.546061885999947, 50.512603401000021 ], [ -125.545830912999946, 50.51277009700005 ], [ -125.545006313999963, 50.512932394000096 ], [ -125.544442378999989, 50.512926697000047 ], [ -125.544215304999952, 50.513408110000057 ], [ -125.544200296999989, 50.513660187000035 ], [ -125.544325601999944, 50.513890913000111 ], [ -125.544507291999963, 50.514130197000064 ], [ -125.545495105999976, 50.514153012000065 ], [ -125.546210291999955, 50.514326694000069 ], [ -125.546434900999969, 50.514556009000081 ], [ -125.546209900999941, 50.514820913000044 ], [ -125.545703694999958, 50.515129996000056 ], [ -125.545022819999986, 50.515323697000113 ], [ -125.544700692999953, 50.515645514000013 ], [ -125.54488341199999, 50.516164 ], [ -125.545825296999979, 50.516853308000044 ], [ -125.546148701999982, 50.516856113000038 ], [ -125.546222001999965, 50.516917406000097 ], [ -125.546242331999906, 50.517284352000061 ], [ -125.54126387, 50.517263918000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999995380856629", "sL_AssetLoss": "77.503548", "sL_BldgLoss": "77.50319", "sL_StrLoss": "77.5", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.000358", "geom_point": "0101000020E6100000737D067171785FC07EC643E7CE354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.880613895999957, 50.419522792000059 ], [ -125.880847584999984, 50.419427392000024 ], [ -125.881440823999966, 50.419448699000014 ], [ -125.881941685999976, 50.419364694000102 ], [ -125.88354949899994, 50.418722386000034 ], [ -125.883776226999927, 50.418743805000055 ], [ -125.884428695999944, 50.419059896000057 ], [ -125.884466005999926, 50.419057122000019 ], [ -125.88445981199996, 50.421479443000088 ], [ -125.878828660999929, 50.421473433000081 ], [ -125.878833058999945, 50.419833328000038 ], [ -125.879968993999952, 50.419817594000058 ], [ -125.880498604999943, 50.419706482000066 ], [ -125.880613895999957, 50.419522792000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "116.8", "sL_BldgLoss": "116.8", "sL_StrLoss": "116.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FB272BBD9755FC05B7F85AB07414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.841719868999945, 50.505657769000088 ], [ -125.843270628999946, 50.505659966000053 ], [ -125.843258137999953, 50.509253791000035 ], [ -125.843186040999925, 50.50925369000003 ], [ -125.843184462999943, 50.509707692000148 ], [ -125.837542300999971, 50.509699587000064 ], [ -125.837542422999917, 50.509665416000054 ], [ -125.838529576, 50.509145497000077 ], [ -125.839469396999959, 50.508591390000063 ], [ -125.839917085999943, 50.508031707000129 ], [ -125.839927809999921, 50.507752607000029 ], [ -125.840340675999954, 50.507054840000066 ], [ -125.840542977999974, 50.506712899 ], [ -125.841489905999978, 50.506050706000075 ], [ -125.841719868999945, 50.505657769000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99989757362152", "sL_AssetLoss": "97.6311", "sL_BldgLoss": "97.6211", "sL_StrLoss": "97.6", "sL_NStrLoss": "0.0211", "sL_ContLoss": "0.01", "geom_point": "0101000020E6100000891B43420C685FC0ED40A56331404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.624327102999956, 50.500681399000044 ], [ -125.624611594, 50.500477695000086 ], [ -125.625135711, 50.500518986000031 ], [ -125.625593404999947, 50.500373797000087 ], [ -125.626243582999948, 50.500413593000076 ], [ -125.627873782999984, 50.500061906000049 ], [ -125.628332864999933, 50.500103503000069 ], [ -125.628312523999938, 50.50257174000005 ], [ -125.622671320999942, 50.502552728000047 ], [ -125.622682330999936, 50.501236537000075 ], [ -125.622692600999983, 50.501231101 ], [ -125.623220502, 50.501084386000059 ], [ -125.623558803999913, 50.500825209000048 ], [ -125.624327102999956, 50.500681399000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999886353075235", "sL_AssetLoss": "593.9448", "sL_BldgLoss": "593.8773", "sL_StrLoss": "593.6", "sL_NStrLoss": "0.2773", "sL_ContLoss": "0.0675", "geom_point": "0101000020E610000014DFDCA119495FC04D75D8AF01304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.142108848999911, 50.380404494000047 ], [ -125.142126796999975, 50.379458301000092 ], [ -125.141025465999945, 50.379449769000118 ], [ -125.141077350999964, 50.37671772900012 ], [ -125.140785828, 50.376715468000071 ], [ -125.140799747999949, 50.375982687000061 ], [ -125.140034644999957, 50.375976751000096 ], [ -125.140043829999968, 50.375493663000036 ], [ -125.139628758999919, 50.375490441000096 ], [ -125.139656461999934, 50.374034069000082 ], [ -125.139188433999934, 50.374030433000016 ], [ -125.139194783999926, 50.373696817000067 ], [ -125.138216117999917, 50.373689208000052 ], [ -125.138284589999927, 50.370095035000062 ], [ -125.139312877999942, 50.370103030000088 ], [ -125.139313850999926, 50.370051962000034 ], [ -125.144916555999941, 50.370095352000114 ], [ -125.144837005999975, 50.370202389000042 ], [ -125.144401694999928, 50.370542811000064 ], [ -125.143878104999956, 50.37076928400009 ], [ -125.142384314999958, 50.371965607000035 ], [ -125.142361411999943, 50.372397108 ], [ -125.142512013999919, 50.372619292000095 ], [ -125.143691093999934, 50.37222910000002 ], [ -125.14407659199999, 50.372347289000082 ], [ -125.144107413999961, 50.372419905000058 ], [ -125.143852704, 50.372684786000036 ], [ -125.143290716999928, 50.373019498000147 ], [ -125.143033197999927, 50.373572087000106 ], [ -125.142737497, 50.373838400000096 ], [ -125.142732604999964, 50.37406349000009 ], [ -125.142959796999932, 50.37413180700004 ], [ -125.143667911999955, 50.374198808000124 ], [ -125.144154397, 50.374396703000073 ], [ -125.144192082999922, 50.374630292000063 ], [ -125.143878502999925, 50.374834001000103 ], [ -125.143828284999984, 50.374970697000059 ], [ -125.143823477999945, 50.375168695000106 ], [ -125.14396821099993, 50.375272585000147 ], [ -125.145453512999921, 50.375164399000091 ], [ -125.145826901999953, 50.375302501000114 ], [ -125.145860388999921, 50.375724098000056 ], [ -125.145388308999927, 50.376506005000074 ], [ -125.145279325999965, 50.376913304000091 ], [ -125.144812091999981, 50.377470212000084 ], [ -125.144382412, 50.378216496000071 ], [ -125.144542480000027, 50.378311902000092 ], [ -125.144851097999961, 50.378297615000115 ], [ -125.145617906999945, 50.37814809000006 ], [ -125.146213286999966, 50.37793020500002 ], [ -125.146456207999933, 50.378061182000032 ], [ -125.146411511999972, 50.378267705000034 ], [ -125.14614250799994, 50.378561108000049 ], [ -125.146164807, 50.378621015000142 ], [ -125.14623901499999, 50.378820309000069 ], [ -125.146141508999946, 50.379182100000051 ], [ -125.146156103999928, 50.380099293000029 ], [ -125.14601464499999, 50.380434667000074 ], [ -125.142108848999911, 50.380404494000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "110", "sL_BldgLoss": "110", "sL_StrLoss": "110", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B5C0849D17E5FC0F7894D75923C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.978690169999979, 50.475299451000154 ], [ -125.978691770999959, 50.471909141 ], [ -125.979127906999935, 50.472192899000042 ], [ -125.97941518499999, 50.472275507000063 ], [ -125.979752619999942, 50.472248505000081 ], [ -125.98040128400001, 50.472033399000061 ], [ -125.980717611999978, 50.472341007000104 ], [ -125.980650983999936, 50.472855193000079 ], [ -125.98073089899999, 50.473231192000092 ], [ -125.980376902999964, 50.473869205000099 ], [ -125.980838808, 50.473839301000055 ], [ -125.981095509999932, 50.473437688000075 ], [ -125.981199597999989, 50.47307450300012 ], [ -125.981152182999963, 50.472302597000123 ], [ -125.98096819099996, 50.472064689000092 ], [ -125.98070482299994, 50.471918003000056 ], [ -125.979648705999963, 50.471936594000056 ], [ -125.979141001999949, 50.47169728900009 ], [ -125.978902059999925, 50.471412725000121 ], [ -125.978902193999957, 50.471126801000025 ], [ -125.979155710999962, 50.470877518000115 ], [ -125.984539632999926, 50.470878398000082 ], [ -125.984539609999942, 50.470946246000025 ], [ -125.98439360499999, 50.470969483000061 ], [ -125.984150227999947, 50.471352604000053 ], [ -125.983548313999947, 50.47162890600007 ], [ -125.982642302999977, 50.471796986000108 ], [ -125.982575991999951, 50.471879588000029 ], [ -125.982666518999963, 50.472191506000073 ], [ -125.982756193999975, 50.472261288 ], [ -125.983347077999952, 50.47224699500002 ], [ -125.983821894999934, 50.472386611000054 ], [ -125.984072890999926, 50.472587411000113 ], [ -125.984072696999959, 50.472793895000081 ], [ -125.984223709999938, 50.472979091000077 ], [ -125.984538912999952, 50.472980306000061 ], [ -125.984538400999966, 50.474472386000059 ], [ -125.984328331999947, 50.474472357000124 ], [ -125.984328044999927, 50.475300389000026 ], [ -125.978690169999979, 50.475299451000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999907524612871", "sL_AssetLoss": "201.1346", "sL_BldgLoss": "201.116", "sL_StrLoss": "201", "sL_NStrLoss": "0.116", "sL_ContLoss": "0.0186", "geom_point": "0101000020E6100000E636C8C138775FC095C69A5796354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.860596910999959, 50.420290972000046 ], [ -125.860607998999981, 50.41669674900011 ], [ -125.86505964199999, 50.416702256000079 ], [ -125.864762812999956, 50.417000489000053 ], [ -125.864757918999913, 50.417386508000043 ], [ -125.864423400999954, 50.417422087000055 ], [ -125.86396749, 50.417352291000071 ], [ -125.863900487, 50.417407910000058 ], [ -125.863949308999977, 50.418693889000039 ], [ -125.863899103999969, 50.418793593000011 ], [ -125.863541383000012, 50.418918898000079 ], [ -125.863533320999977, 50.419010104000023 ], [ -125.864947406999988, 50.419136809000115 ], [ -125.866231228999979, 50.419177418000068 ], [ -125.866227911999928, 50.420297907000062 ], [ -125.860596910999959, 50.420290972000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.99517926326878", "sL_AssetLoss": "1467.618", "sL_BldgLoss": "1460.543", "sL_StrLoss": "1405.583", "sL_NStrLoss": "54.96", "sL_ContLoss": "7.075", "geom_point": "0101000020E61000004A14EF3ABA4B5FC0EFA16DCACF094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.17683324099994, 50.080663274000052 ], [ -125.176881105999925, 50.078014886000076 ], [ -125.176898222999952, 50.077067714000066 ], [ -125.178314300999929, 50.077078299000064 ], [ -125.182206412999903, 50.077107298000087 ], [ -125.182100893, 50.074783468000092 ], [ -125.183062290999914, 50.074765385000084 ], [ -125.183776686999963, 50.074751942000034 ], [ -125.183801189999969, 50.075291186000129 ], [ -125.183845312999921, 50.075290355000099 ], [ -125.183857594999964, 50.07460488300012 ], [ -125.185069602999974, 50.074613867 ], [ -125.185123727999937, 50.071588407000078 ], [ -125.189579908999946, 50.071621326000084 ], [ -125.189060521999963, 50.072237800000075 ], [ -125.188760115999955, 50.072709361000108 ], [ -125.188609555999932, 50.073476906000039 ], [ -125.188613993999965, 50.073687714000101 ], [ -125.188637629999974, 50.074803163000077 ], [ -125.188495505, 50.075174319000091 ], [ -125.188302301999926, 50.075430015000087 ], [ -125.187814792999973, 50.075893898000061 ], [ -125.187518398999956, 50.076115697000098 ], [ -125.186870251999949, 50.076600749000065 ], [ -125.186703697999945, 50.07679643200003 ], [ -125.18658053800003, 50.076941104000063 ], [ -125.185751160999956, 50.078237654000112 ], [ -125.185064566999955, 50.07916220700011 ], [ -125.185065926999968, 50.079086155 ], [ -125.184623643999913, 50.079082878000122 ], [ -125.184633832999964, 50.078513742000027 ], [ -125.183948222999973, 50.078526647000047 ], [ -125.183960477999946, 50.07879627000009 ], [ -125.182455632999904, 50.078824583000035 ], [ -125.182421879999964, 50.080704943000121 ], [ -125.17683324099994, 50.080663274000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.99988507778669", "sL_AssetLoss": "389.8289", "sL_BldgLoss": "389.7841", "sL_StrLoss": "389.6", "sL_NStrLoss": "0.1841", "sL_ContLoss": "0.0448", "geom_point": "0101000020E6100000E179EBF4EA7A5FC09C14E63D4E354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.917505095999971, 50.418278624000031 ], [ -125.917506681999939, 50.417410041000089 ], [ -125.916930526999977, 50.417409611000039 ], [ -125.916931152999979, 50.417069156000068 ], [ -125.916456629999985, 50.41706880000006 ], [ -125.916456940999964, 50.416900353000116 ], [ -125.915292893999947, 50.416899470000104 ], [ -125.915293779999956, 50.41642699300008 ], [ -125.914725800999932, 50.416426557000115 ], [ -125.914729124999894, 50.414665343000117 ], [ -125.916553292999936, 50.414623500000111 ], [ -125.917572191000019, 50.414688989000133 ], [ -125.918517994999917, 50.414520992000107 ], [ -125.918866204999972, 50.414898385000079 ], [ -125.91972178899999, 50.415308612000047 ], [ -125.920103877999907, 50.415587698000174 ], [ -125.920609811999952, 50.415781388000035 ], [ -125.921250023999946, 50.415891100000088 ], [ -125.921307489999947, 50.415683095000077 ], [ -125.920981619999935, 50.414045305000066 ], [ -125.920979804999931, 50.413793182000127 ], [ -125.921063212999954, 50.41377330600006 ], [ -125.921206495999982, 50.413833109000059 ], [ -125.921344180999967, 50.414216203000109 ], [ -125.921637602999979, 50.41579139200006 ], [ -125.921817174999958, 50.415966595000093 ], [ -125.923160305999957, 50.416050583000128 ], [ -125.923605298000027, 50.415966603000129 ], [ -125.923972699, 50.415778611000157 ], [ -125.924414408999922, 50.41538978900013 ], [ -125.924563489, 50.415060792000112 ], [ -125.924467709999988, 50.414892706000067 ], [ -125.923951009999953, 50.414707589000059 ], [ -125.923897986999947, 50.414548003000064 ], [ -125.924072400999975, 50.414408485000095 ], [ -125.92453201099994, 50.414382941000071 ], [ -125.926041533, 50.414383959000119 ], [ -125.92603565, 50.417978197000082 ], [ -125.923136374999928, 50.41797622500011 ], [ -125.923135851999916, 50.418282669000099 ], [ -125.917505095999971, 50.418278624000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999662921174581", "sL_AssetLoss": "129.3466", "sL_BldgLoss": "129.303", "sL_StrLoss": "129", "sL_NStrLoss": "0.303", "sL_ContLoss": "0.0436", "geom_point": "0101000020E61000009E682EA2F3455FC032B949F364194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09170001699998, 50.199119297000024 ], [ -125.091474404999957, 50.198754693000083 ], [ -125.090794022999958, 50.19851708500002 ], [ -125.090348702999947, 50.198361600000027 ], [ -125.090112413999947, 50.198112914000014 ], [ -125.090055088999961, 50.198052612000033 ], [ -125.08997139399996, 50.197702201000027 ], [ -125.089861692999975, 50.197548913000091 ], [ -125.09544102199996, 50.197594798000061 ], [ -125.095405019999973, 50.199402410000125 ], [ -125.095271196999974, 50.199397009000059 ], [ -125.09375288399994, 50.198948396000034 ], [ -125.093203515999932, 50.198912795000098 ], [ -125.092872704999934, 50.198999707000077 ], [ -125.092847498999959, 50.19908940600002 ], [ -125.093373855999943, 50.199761679000062 ], [ -125.093410603, 50.199808596000054 ], [ -125.093435674999967, 50.200023694 ], [ -125.093187503999914, 50.200127612000074 ], [ -125.092905516999963, 50.200069202000073 ], [ -125.09262510399995, 50.199760185000045 ], [ -125.092363180999939, 50.199216104000129 ], [ -125.09170001699998, 50.199119297000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999753926725879", "sL_AssetLoss": "129.2298", "sL_BldgLoss": "129.198", "sL_StrLoss": "129", "sL_NStrLoss": "0.198", "sL_ContLoss": "0.0318", "geom_point": "0101000020E6100000EDDB83EF41445FC07E6A40AD371C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.065192993000011, 50.218543550000035 ], [ -125.067590779999989, 50.218563831000047 ], [ -125.067025595999937, 50.218972810000139 ], [ -125.067124102999983, 50.219311701000073 ], [ -125.067323740999981, 50.219598 ], [ -125.067334698999971, 50.219613692000046 ], [ -125.067874105999948, 50.219784603000072 ], [ -125.06849838199993, 50.220285898000064 ], [ -125.06844129699999, 50.220898300000073 ], [ -125.068030494999931, 50.22113039700011 ], [ -125.067630804999936, 50.221623201000028 ], [ -125.06770150899996, 50.221938008000052 ], [ -125.067876386999956, 50.222161690000085 ], [ -125.065118962999961, 50.222138373000092 ], [ -125.065192993000011, 50.218543550000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999977964130881", "sL_AssetLoss": "193.32117", "sL_BldgLoss": "193.31691", "sL_StrLoss": "193.3", "sL_NStrLoss": "0.01691", "sL_ContLoss": "0.00426", "geom_point": "0101000020E6100000F16CA87B11495FC0E586B6CE052F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.139393778999946, 50.368682650000082 ], [ -125.139462148999939, 50.365088454000109 ], [ -125.140020211999982, 50.365092787000023 ], [ -125.140022296000012, 50.365100903000062 ], [ -125.140220012999947, 50.365429902000123 ], [ -125.140848116999933, 50.365616501000048 ], [ -125.14138581499999, 50.366029505000078 ], [ -125.142352404999968, 50.365931193000094 ], [ -125.14280549299994, 50.365985415000104 ], [ -125.142903787999927, 50.366325707000058 ], [ -125.142693717999975, 50.366626307000097 ], [ -125.142875812999975, 50.366955206000114 ], [ -125.143222488, 50.367164590000058 ], [ -125.144148315, 50.367408096000133 ], [ -125.145042722, 50.367415745000052 ], [ -125.145017954999929, 50.368726204000048 ], [ -125.139393778999946, 50.368682650000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999906262130498", "sL_AssetLoss": "96.865867", "sL_BldgLoss": "96.856787", "sL_StrLoss": "96.800787", "sL_NStrLoss": "0.056", "sL_ContLoss": "0.00908", "geom_point": "0101000020E6100000A25D8594DF485FC0F96C78D5DE344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.137308967999928, 50.415196793000057 ], [ -125.137315995, 50.414828616000058 ], [ -125.136771670999948, 50.414824380000027 ], [ -125.136781689999964, 50.414299926000041 ], [ -125.136428089999981, 50.414297172000062 ], [ -125.136496764999933, 50.410703183000088 ], [ -125.14026535499994, 50.410732468000027 ], [ -125.140289313999986, 50.411023100000122 ], [ -125.140201794999925, 50.411239586000072 ], [ -125.140136116999912, 50.411349305000051 ], [ -125.140487694999962, 50.411693899000078 ], [ -125.140528487999958, 50.411944591000058 ], [ -125.139361773999937, 50.412605393000021 ], [ -125.139382218999941, 50.412730796000112 ], [ -125.139925695999978, 50.41294581300015 ], [ -125.140932101999923, 50.413115299000012 ], [ -125.141419519999914, 50.413294696000044 ], [ -125.141669107999945, 50.413498401 ], [ -125.141565986999964, 50.413741893000065 ], [ -125.14101330699998, 50.413976894000029 ], [ -125.140859899999967, 50.41429450400009 ], [ -125.140943088999947, 50.414599296000091 ], [ -125.141576588999953, 50.415208904000053 ], [ -125.141588599999977, 50.415230005000133 ], [ -125.137308967999928, 50.415196793000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999971767178896", "sL_AssetLoss": "187.01638", "sL_BldgLoss": "187.0111", "sL_StrLoss": "187", "sL_NStrLoss": "0.0111", "sL_ContLoss": "0.00528", "geom_point": "0101000020E610000094B46EC576595FC0E28FE4EAAE2B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.398135719999914, 50.343386001000106 ], [ -125.397916196999986, 50.343202298000065 ], [ -125.396579197999955, 50.343166704000105 ], [ -125.396133216999942, 50.34325639700009 ], [ -125.395938143999928, 50.343386589 ], [ -125.395979280999967, 50.340303642000038 ], [ -125.396219268999985, 50.340304951000029 ], [ -125.396233437999939, 50.339242646000038 ], [ -125.400145513999973, 50.339263914000078 ], [ -125.399830692999942, 50.339608998000116 ], [ -125.399870095, 50.340130299000101 ], [ -125.399742017999969, 50.340385194000092 ], [ -125.399575403999975, 50.341269613000065 ], [ -125.399203183999958, 50.341960398 ], [ -125.399207585999974, 50.342060105000066 ], [ -125.399683918999955, 50.342302199000095 ], [ -125.399692318999911, 50.342723700000185 ], [ -125.399899911999924, 50.342935890000028 ], [ -125.399744904999935, 50.34323651200009 ], [ -125.39944569099994, 50.343413098000021 ], [ -125.399134222999962, 50.343366102000061 ], [ -125.398589309, 50.343457209000107 ], [ -125.398135719999914, 50.343386001000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99957641317759", "sL_AssetLoss": "259.9231", "sL_BldgLoss": "259.813", "sL_StrLoss": "259", "sL_NStrLoss": "0.813", "sL_ContLoss": "0.1101", "geom_point": "0101000020E6100000A15A6D9344605FC0A7FF724EE8344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.504697607999944, 50.414402790000061 ], [ -125.503787780999957, 50.414243294000059 ], [ -125.503155319999948, 50.414266097000038 ], [ -125.502824901999972, 50.414146397000088 ], [ -125.501991193999984, 50.413301901000111 ], [ -125.501367920999897, 50.412397504000076 ], [ -125.50108910199999, 50.411926089000112 ], [ -125.500534201999955, 50.411795108000071 ], [ -125.500250223999956, 50.411503104000118 ], [ -125.500231675999899, 50.411363225000109 ], [ -125.504814824999983, 50.411383788000116 ], [ -125.504811872999937, 50.411653229000123 ], [ -125.505738806999901, 50.411657364000064 ], [ -125.50573569699992, 50.411941626000079 ], [ -125.505923015999912, 50.411942461000109 ], [ -125.505919589, 50.412255936000122 ], [ -125.506595109999964, 50.412258944 ], [ -125.506555867999907, 50.415853107000054 ], [ -125.501253837999982, 50.415829388000077 ], [ -125.503792007999948, 50.415385492000077 ], [ -125.504737297999966, 50.414897 ], [ -125.504977307999965, 50.414657702000078 ], [ -125.504697607999944, 50.414402790000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999902551604753", "sL_AssetLoss": "92.66443", "sL_BldgLoss": "92.6554", "sL_StrLoss": "92.6", "sL_NStrLoss": "0.0554", "sL_ContLoss": "0.00903", "geom_point": "0101000020E6100000D02B9E7A24795FC0402642B8BC354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.889673925999958, 50.420913311000035 ], [ -125.889677706999962, 50.419365036000052 ], [ -125.890587294999989, 50.419374699000073 ], [ -125.892283994, 50.419044306000025 ], [ -125.892948588999928, 50.418847701000047 ], [ -125.89415989199999, 50.418169789000061 ], [ -125.894960011999984, 50.41811429800007 ], [ -125.895311428999918, 50.418147293000061 ], [ -125.895305008999969, 50.420918770000128 ], [ -125.889673925999958, 50.420913311000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999786547026408", "sL_AssetLoss": "125.0861", "sL_BldgLoss": "125.0594", "sL_StrLoss": "125", "sL_NStrLoss": "0.0594", "sL_ContLoss": "0.0267", "geom_point": "0101000020E6100000DAF0CBCBA7455FC0AF9C18ED4C1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.086000580999922, 50.204997001000024 ], [ -125.085948884999937, 50.204790495000069 ], [ -125.086038515999974, 50.204599599000097 ], [ -125.086315482999964, 50.20448710200003 ], [ -125.086752401, 50.204578303000062 ], [ -125.087324897999935, 50.20483748700012 ], [ -125.087618801999923, 50.20480619600005 ], [ -125.087653791999955, 50.204679394000046 ], [ -125.087356998999923, 50.204279208000067 ], [ -125.086492671999906, 50.203609043000078 ], [ -125.090257200999986, 50.203640146000076 ], [ -125.090185179999978, 50.207235054000058 ], [ -125.086537472999979, 50.207204920000045 ], [ -125.08628459699996, 50.206358509000047 ], [ -125.086364682999957, 50.205961195000057 ], [ -125.086552791999949, 50.205768900000102 ], [ -125.086547801999956, 50.205337397000086 ], [ -125.086000580999922, 50.204997001000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999916198744288", "sL_AssetLoss": "208.11144", "sL_BldgLoss": "208.094", "sL_StrLoss": "208", "sL_NStrLoss": "0.094", "sL_ContLoss": "0.01744", "geom_point": "0101000020E6100000F56E03A99A495FC0156B7E1D342C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.14693176199999, 50.343678891000089 ], [ -125.152552839999927, 50.343722064000062 ], [ -125.152485541999951, 50.347316366000015 ], [ -125.148444042999984, 50.347285354000071 ], [ -125.148550213999954, 50.347178693000096 ], [ -125.14871089199994, 50.346673091000099 ], [ -125.148655498999943, 50.346376804000116 ], [ -125.148334795999972, 50.345834211000096 ], [ -125.14804039199997, 50.345560801000076 ], [ -125.146902984999883, 50.345205819000036 ], [ -125.14693176199999, 50.343678891000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13609000", "BldgCostT": "8650000", "sL_LossRatio": "0.989761081493573", "sL_AssetLoss": "4804.023", "sL_BldgLoss": "4754.835", "sL_StrLoss": "4495.745", "sL_NStrLoss": "259.09", "sL_ContLoss": "49.188", "geom_point": "0101000020E6100000C7E8D2224F575FC067AB819C66004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.365723201999955, 50.005878765000013 ], [ -125.365683484999977, 50.005069990000045 ], [ -125.365265194999949, 50.005078522000119 ], [ -125.365251958999977, 50.004808931000056 ], [ -125.364938716999973, 50.004815320000048 ], [ -125.364833670999957, 50.004817461000044 ], [ -125.364835151999927, 50.004847621000046 ], [ -125.364846905999968, 50.005087053000125 ], [ -125.364012981999977, 50.005104054000078 ], [ -125.362337165999961, 50.00513820200009 ], [ -125.362323944999929, 50.004868610000095 ], [ -125.361069081, 50.004894164000078 ], [ -125.361095505999984, 50.005433348000047 ], [ -125.359840623999958, 50.005458889000067 ], [ -125.35978780100001, 50.004380520000041 ], [ -125.360206084999902, 50.004372008000082 ], [ -125.360179669999965, 50.00383282400005 ], [ -125.35976139, 50.003841336000107 ], [ -125.359708570999942, 50.002762966000034 ], [ -125.359290300999959, 50.00277147600012 ], [ -125.359277099999971, 50.002501884000033 ], [ -125.358858829999974, 50.002510392000076 ], [ -125.358819233999924, 50.001701614000076 ], [ -125.360074016999988, 50.001676085000071 ], [ -125.360060811999958, 50.001406493000054 ], [ -125.360479070999929, 50.001397981000089 ], [ -125.360465863999963, 50.001128389000044 ], [ -125.360884118999962, 50.001119874000054 ], [ -125.360870910999935, 50.000850282000044 ], [ -125.362543924999954, 50.000816212000075 ], [ -125.362557143999965, 50.001085804000049 ], [ -125.362975397999904, 50.001077282000075 ], [ -125.362962176999972, 50.00080769000008 ], [ -125.363380429999921, 50.000799167000125 ], [ -125.363367205999936, 50.000529575000058 ], [ -125.365040206999936, 50.000495470000025 ], [ -125.365053438999922, 50.00076506100001 ], [ -125.365471691999986, 50.000756530000046 ], [ -125.365524634999957, 50.001834896000119 ], [ -125.366779416999975, 50.001809294000054 ], [ -125.366792658999913, 50.002078886000113 ], [ -125.368465709999953, 50.002044729000062 ], [ -125.368478962999973, 50.002314320000025 ], [ -125.369733754, 50.002288687000032 ], [ -125.369747014999959, 50.002558277000048 ], [ -125.37016528099997, 50.002549730000084 ], [ -125.37018272099999, 50.002904236000099 ], [ -125.37019180599999, 50.003088910000031 ], [ -125.370610074999931, 50.003080362000041 ], [ -125.370649872999977, 50.00388913100003 ], [ -125.368558483999934, 50.003931864000045 ], [ -125.368571738999961, 50.004201454000039 ], [ -125.367316896, 50.004227076000056 ], [ -125.36737134399999, 50.005335103000036 ], [ -125.367160595999977, 50.005433896000056 ], [ -125.366974481999961, 50.005627602000068 ], [ -125.366897617999953, 50.005854801000105 ], [ -125.365723201999955, 50.005878765000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997428309587924", "sL_AssetLoss": "247.697", "sL_BldgLoss": "247.06", "sL_StrLoss": "241", "sL_NStrLoss": "6.06", "sL_ContLoss": "0.637", "geom_point": "0101000020E61000005FEEB4B1E9565FC0345E5F9099024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.357193482999932, 50.019815335000061 ], [ -125.358867158999914, 50.019781308000056 ], [ -125.358906780999973, 50.02059008300003 ], [ -125.358488355999938, 50.020598593000067 ], [ -125.358501561999901, 50.020868184000022 ], [ -125.357246274999937, 50.020893703000112 ], [ -125.357193482999932, 50.019815335000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18515917", "BldgCostT": "11031667", "sL_LossRatio": "0.985044213963159", "sL_AssetLoss": "4052.679", "sL_BldgLoss": "3992.068", "sL_StrLoss": "3574.608", "sL_NStrLoss": "417.46", "sL_ContLoss": "60.611", "geom_point": "0101000020E6100000AF25CBE67D565FC006E619E2F5004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.353958137999953, 50.005038715000104 ], [ -125.35397131299996, 50.005308308000075 ], [ -125.354389606999973, 50.005299817000086 ], [ -125.35441595899999, 50.005839005000105 ], [ -125.354834258, 50.005830511000049 ], [ -125.354847434999925, 50.006100104000055 ], [ -125.355265737000011, 50.006091610000112 ], [ -125.355278917999925, 50.006361203000026 ], [ -125.355697220999929, 50.00635270800008 ], [ -125.355712540999889, 50.006665983000083 ], [ -125.35577632599994, 50.007970266000022 ], [ -125.355358007999911, 50.007978762000093 ], [ -125.355371190999975, 50.008248355000042 ], [ -125.356207827999967, 50.008231360000131 ], [ -125.35622166899999, 50.008514311000091 ], [ -125.356237653999955, 50.008841074000074 ], [ -125.356247391999915, 50.009040139000028 ], [ -125.35499241199993, 50.009065629000112 ], [ -125.355005592999973, 50.009335222000104 ], [ -125.356260579999955, 50.009309731000023 ], [ -125.356339710999961, 50.01092728800004 ], [ -125.355503025999965, 50.010944284000125 ], [ -125.355529394999948, 50.011483470000066 ], [ -125.355111045999976, 50.011491965000133 ], [ -125.355124229999973, 50.011761558000082 ], [ -125.35386917699995, 50.011787037000047 ], [ -125.353816476999938, 50.010708664000092 ], [ -125.355071499999923, 50.010683187000048 ], [ -125.35501877399993, 50.009604815000024 ], [ -125.353763776999926, 50.009630292000097 ], [ -125.353750603999956, 50.009360699000119 ], [ -125.352913943999908, 50.009377675000117 ], [ -125.352900774999938, 50.00910808200009 ], [ -125.349135814999968, 50.009184403000049 ], [ -125.349148961999958, 50.009453997000087 ], [ -125.347475633999963, 50.009487878000144 ], [ -125.347462494999903, 50.009218284000042 ], [ -125.347044163999968, 50.009226750000082 ], [ -125.347031027999961, 50.008957156000115 ], [ -125.346612698999976, 50.008965621000065 ], [ -125.346594359999969, 50.008589181000112 ], [ -125.346573296999964, 50.008156836000069 ], [ -125.346991619999983, 50.008148372000043 ], [ -125.34682087499999, 50.004643641 ], [ -125.350167194999955, 50.004575877000093 ], [ -125.350193498999928, 50.005115066000073 ], [ -125.350611794999935, 50.005106588000039 ], [ -125.350624947999961, 50.005376182000049 ], [ -125.352716426999933, 50.005333773000082 ], [ -125.352703261, 50.005064179000101 ], [ -125.353958137999953, 50.005038715000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15126000", "BldgCostT": "9960000", "sL_LossRatio": "0.994810099887957", "sL_AssetLoss": "3575.406", "sL_BldgLoss": "3556.85", "sL_StrLoss": "3356.41", "sL_NStrLoss": "200.44", "sL_ContLoss": "18.556", "geom_point": "0101000020E6100000E252CF61C2535FC04CAF077254054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.311024087999968, 50.044383210000049 ], [ -125.310788281, 50.043856302000044 ], [ -125.309938911999964, 50.043900391000065 ], [ -125.309738297999957, 50.043787911000024 ], [ -125.306948495999976, 50.04330369400008 ], [ -125.30622389499996, 50.043003205000062 ], [ -125.305381994999919, 50.042957591000068 ], [ -125.30462999299999, 50.042702603000102 ], [ -125.304230767999968, 50.042502965000068 ], [ -125.304235711999979, 50.042179050000072 ], [ -125.303590457, 50.04217496400009 ], [ -125.303269430999961, 50.041965605000058 ], [ -125.30330263499998, 50.039793018000083 ], [ -125.303321216999947, 50.038577096000068 ], [ -125.306539360999977, 50.038597446000047 ], [ -125.308904802999962, 50.038612343000075 ], [ -125.308899360999973, 50.03897128800007 ], [ -125.310034079999951, 50.038978416000127 ], [ -125.310018873999923, 50.039983119000027 ], [ -125.310336230999937, 50.039985110000018 ], [ -125.31032154899998, 50.040955653000033 ], [ -125.313258077999976, 50.040974038000101 ], [ -125.313252052999971, 50.041373977000035 ], [ -125.313516893999932, 50.041375632000047 ], [ -125.31351276299992, 50.041649948000014 ], [ -125.31435617799994, 50.041655211000084 ], [ -125.314302088999938, 50.045251015000083 ], [ -125.311893237999939, 50.045235965000103 ], [ -125.311024087999968, 50.044383210000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.99658518765585", "sL_AssetLoss": "251.844", "sL_BldgLoss": "250.984", "sL_StrLoss": "238.544", "sL_NStrLoss": "12.44", "sL_ContLoss": "0.86", "geom_point": "0101000020E610000083235887A9565FC0C7C848ACFB024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.353220094999955, 50.024213781000128 ], [ -125.353127856999919, 50.022326631000091 ], [ -125.35330034299993, 50.022323132000039 ], [ -125.354383183, 50.022301157000108 ], [ -125.354396368, 50.022570749000117 ], [ -125.354814810999983, 50.02256225400005 ], [ -125.354841182999948, 50.023101439000079 ], [ -125.355259632999946, 50.023092943000094 ], [ -125.3552992, 50.023901720000033 ], [ -125.354880744999974, 50.023910216000097 ], [ -125.354893931999953, 50.024179810000057 ], [ -125.353363983999913, 50.024210862000132 ], [ -125.353220094999955, 50.024213781000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.998903314774209", "sL_AssetLoss": "156.5627", "sL_BldgLoss": "156.391", "sL_StrLoss": "155.028", "sL_NStrLoss": "1.363", "sL_ContLoss": "0.1717", "geom_point": "0101000020E61000008D486F1349585FC08E4EA78647004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.377857611999929, 50.003061889000058 ], [ -125.377877890999912, 50.001574606000077 ], [ -125.378243088999923, 50.00176230000006 ], [ -125.378353288999975, 50.00172390500002 ], [ -125.378172402999951, 50.001484606000083 ], [ -125.378253304999959, 50.001412005000077 ], [ -125.37962070899999, 50.001429089000112 ], [ -125.380465907999962, 50.001545799000048 ], [ -125.380692685999975, 50.001649794000066 ], [ -125.380746614999978, 50.001890493000118 ], [ -125.381918085, 50.002433098000033 ], [ -125.381923297999947, 50.002532806000019 ], [ -125.379061876999984, 50.00282479400002 ], [ -125.377857611999929, 50.003061889000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2300667", "BldgCostT": "1586667", "sL_LossRatio": "0.994483721710993", "sL_AssetLoss": "559.979", "sL_BldgLoss": "556.89", "sL_StrLoss": "509.11", "sL_NStrLoss": "47.78", "sL_ContLoss": "3.089", "geom_point": "0101000020E6100000C7B8E2E2A8565FC095D212AF5B004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.353958137999953, 50.005038715000104 ], [ -125.353918619999931, 50.004229935000126 ], [ -125.353082049999955, 50.004246912000028 ], [ -125.35305571499994, 50.003707725000034 ], [ -125.352637431999966, 50.003716211000018 ], [ -125.3526242679999, 50.003446616000076 ], [ -125.35178770899995, 50.003463584000038 ], [ -125.351735070999908, 50.002385209000089 ], [ -125.352571609999956, 50.002368242000067 ], [ -125.352558444999985, 50.002098647000018 ], [ -125.35339498, 50.002081676000024 ], [ -125.35331597199999, 50.000464113000078 ], [ -125.35498898199999, 50.000430152000071 ], [ -125.355054867999982, 50.001778119000086 ], [ -125.355473130999954, 50.001769624000097 ], [ -125.35561812499999, 50.004735149000048 ], [ -125.355199834999908, 50.004743645000083 ], [ -125.355213014999919, 50.005013238000046 ], [ -125.353958137999953, 50.005038715000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.996537429796338", "sL_AssetLoss": "493.564", "sL_BldgLoss": "491.855", "sL_StrLoss": "472.725", "sL_NStrLoss": "19.13", "sL_ContLoss": "1.709", "geom_point": "0101000020E6100000B66E9C7750595FC0B347E2C45B044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.395236763999918, 50.035227602000148 ], [ -125.395223346999941, 50.03495801800004 ], [ -125.39438626799992, 50.034975300000028 ], [ -125.394372854, 50.03470571600009 ], [ -125.39395431699991, 50.034714355000084 ], [ -125.393940904999937, 50.034444772 ], [ -125.393522370999946, 50.034453408000019 ], [ -125.393468738999928, 50.033375071000066 ], [ -125.393887266, 50.033366434000058 ], [ -125.393873855999914, 50.033096850000057 ], [ -125.396384995999981, 50.03304499700004 ], [ -125.396398419, 50.033314581000099 ], [ -125.397235468999938, 50.033297285000103 ], [ -125.397248896999955, 50.033566869000012 ], [ -125.397667423999948, 50.033558218000046 ], [ -125.397707718999982, 50.034366968000036 ], [ -125.397289182999941, 50.034375618000041 ], [ -125.397302613999955, 50.034645202000078 ], [ -125.396884077999957, 50.034653851000073 ], [ -125.396897504999984, 50.034923436000028 ], [ -125.396478965999961, 50.03493208400004 ], [ -125.396492390999967, 50.035201667000059 ], [ -125.395236763999918, 50.035227602000148 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1044000", "BldgCostT": "720000", "sL_LossRatio": "0.960638614071589", "sL_AssetLoss": "4.7102", "sL_BldgLoss": "4.5248", "sL_StrLoss": "0.2468", "sL_NStrLoss": "4.278", "sL_ContLoss": "0.1854", "geom_point": "0101000020E6100000A7D3B29CA1565FC0798A2493B6044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.353068455999974, 50.038249564000083 ], [ -125.353055271999921, 50.037979972000073 ], [ -125.352636692999951, 50.037988462000101 ], [ -125.352610329999933, 50.037449278000068 ], [ -125.352191757999918, 50.037457766000109 ], [ -125.352112690999931, 50.035840213000029 ], [ -125.352531250999903, 50.035831724000012 ], [ -125.352504891999942, 50.0352925400001 ], [ -125.354179112999987, 50.035258573000092 ], [ -125.354205489999941, 50.035797757000111 ], [ -125.35462404899998, 50.035789262000023 ], [ -125.354663624999944, 50.036598037000026 ], [ -125.355082190999951, 50.036589540000115 ], [ -125.355161357999961, 50.038207089000082 ], [ -125.353068455999974, 50.038249564000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28701894", "BldgCostT": "17411523", "sL_LossRatio": "0.970854045019267", "sL_AssetLoss": "3379.131", "sL_BldgLoss": "3280.643", "sL_StrLoss": "2565.293", "sL_NStrLoss": "715.35", "sL_ContLoss": "98.488", "geom_point": "0101000020E610000066AD5FB88C525FC08A75A20B07044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.29210264799994, 50.037785068000062 ], [ -125.291619661999945, 50.037630464000124 ], [ -125.291271786999943, 50.03767686500008 ], [ -125.289985635999955, 50.037703634000124 ], [ -125.289575455999952, 50.037686584000042 ], [ -125.288920720999968, 50.03759786700008 ], [ -125.289082034999964, 50.037199833000045 ], [ -125.289759315999916, 50.036339991000062 ], [ -125.28992605499991, 50.03600598300001 ], [ -125.290003336999945, 50.035600787000071 ], [ -125.290176813999921, 50.031863804000054 ], [ -125.289809804999919, 50.031962970000059 ], [ -125.28931978199995, 50.03214858700008 ], [ -125.287491136999975, 50.032957585000105 ], [ -125.287456299999945, 50.032965975000103 ], [ -125.286955929999948, 50.033086284000042 ], [ -125.28672649899994, 50.033107315000102 ], [ -125.286543563999942, 50.033124066000035 ], [ -125.286199330999978, 50.033126953000078 ], [ -125.285727730999952, 50.033130903000043 ], [ -125.285519394999966, 50.032897429000073 ], [ -125.285087596999944, 50.032413566000137 ], [ -125.283686781999933, 50.031488906000071 ], [ -125.283697467999957, 50.030808684000036 ], [ -125.283992895999958, 50.030810609000099 ], [ -125.284000887999937, 50.030301691000012 ], [ -125.284832205999933, 50.030307103000069 ], [ -125.284847212, 50.02935031000009 ], [ -125.285010453, 50.029351372000036 ], [ -125.285055176999933, 50.026498908000093 ], [ -125.289242576, 50.026526071000013 ], [ -125.289232009999978, 50.026303898000087 ], [ -125.289650506999934, 50.026295637000032 ], [ -125.289637683999914, 50.026026033000079 ], [ -125.290056177999958, 50.026017771000078 ], [ -125.290043351999884, 50.025748166000092 ], [ -125.291298824999942, 50.025723373000076 ], [ -125.291305703999967, 50.025867913000056 ], [ -125.291350154999975, 50.026801791000011 ], [ -125.290931653999962, 50.026810057000056 ], [ -125.290944484999969, 50.027079662000098 ], [ -125.290789237999917, 50.027082728000046 ], [ -125.290784236999983, 50.027404258000068 ], [ -125.29227095899995, 50.027413844000094 ], [ -125.292255158999978, 50.028431856000068 ], [ -125.293042891999931, 50.028436926000104 ], [ -125.293023366999961, 50.029696207000029 ], [ -125.293042469999961, 50.029696329000032 ], [ -125.293020916, 50.03108650000005 ], [ -125.295322331999927, 50.03104098200005 ], [ -125.295339548999934, 50.031402004000093 ], [ -125.295373760999965, 50.03211939600002 ], [ -125.293004173, 50.032166262000061 ], [ -125.29298671399999, 50.033292180000061 ], [ -125.29082058100002, 50.033278225000061 ], [ -125.290846750999961, 50.03382803300007 ], [ -125.290428188999968, 50.033836300000139 ], [ -125.290432853, 50.033934296000041 ], [ -125.292473956, 50.03394745300011 ], [ -125.292454748999944, 50.035185109000075 ], [ -125.294994456999959, 50.035201428000079 ], [ -125.295625809999976, 50.035205476000066 ], [ -125.295596538999959, 50.037100047000088 ], [ -125.295587229999953, 50.037702537000023 ], [ -125.294696617999975, 50.037672301000072 ], [ -125.294146493999961, 50.03755840200008 ], [ -125.292982918999883, 50.037742105000035 ], [ -125.29210264799994, 50.037785068000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.917456972251493", "sL_AssetLoss": "1.1388", "sL_BldgLoss": "1.0448", "sL_StrLoss": "0.0758", "sL_NStrLoss": "0.969", "sL_ContLoss": "0.094", "geom_point": "0101000020E61000004735F468CD525FC042D4969DF2044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.292774115999933, 50.038375893000044 ], [ -125.294940206999968, 50.038099592000052 ], [ -125.295580396999981, 50.03814476100009 ], [ -125.295570251999933, 50.038801302000053 ], [ -125.29419598799997, 50.038792487000059 ], [ -125.294191115, 50.039107236000078 ], [ -125.293416626999914, 50.039102260000057 ], [ -125.293415388999961, 50.039182155000113 ], [ -125.29280338299999, 50.039178220000068 ], [ -125.292802366999979, 50.039243671000051 ], [ -125.292001043999932, 50.03923851200009 ], [ -125.292388973999934, 50.038381744000105 ], [ -125.292774115999933, 50.038375893000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9719916", "BldgCostT": "6231666", "sL_LossRatio": "0.990758110773575", "sL_AssetLoss": "1471.777", "sL_BldgLoss": "1458.175", "sL_StrLoss": "1282.385", "sL_NStrLoss": "175.79", "sL_ContLoss": "13.602", "geom_point": "0101000020E61000008B2B15F1E9565FC017E016870E024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.358422329999939, 50.019250634000038 ], [ -125.358382716999955, 50.018441858000109 ], [ -125.357964308999954, 50.018450364000046 ], [ -125.357951106999963, 50.018180772000072 ], [ -125.356695891999948, 50.018206284000044 ], [ -125.356682695999908, 50.017936693000138 ], [ -125.35584589099993, 50.017953692000049 ], [ -125.355832699999951, 50.017684100000054 ], [ -125.354577492999965, 50.017709589000034 ], [ -125.354564312999955, 50.017439996000086 ], [ -125.354175823, 50.017447882000049 ], [ -125.354145910999989, 50.017448489000067 ], [ -125.35409319399993, 50.016370118000054 ], [ -125.353256412999954, 50.016387100000088 ], [ -125.353190541999979, 50.01503913400007 ], [ -125.354864058999908, 50.015005167000055 ], [ -125.354824511999979, 50.014196389000098 ], [ -125.355311840999931, 50.014186493000118 ], [ -125.35691636599995, 50.014153897000092 ], [ -125.356903172, 50.013884306000087 ], [ -125.358158276999959, 50.013858793000075 ], [ -125.358171477000013, 50.014128385000085 ], [ -125.359008216999939, 50.014111369 ], [ -125.35898180599996, 50.013572185000086 ], [ -125.359400170999933, 50.013563675000114 ], [ -125.359386962999949, 50.013294083000098 ], [ -125.361478771999941, 50.013251511000099 ], [ -125.361663857999943, 50.017025791000044 ], [ -125.361245463999978, 50.017034310000035 ], [ -125.361258682999946, 50.017303901000012 ], [ -125.360840285999984, 50.01731241800011 ], [ -125.360893156999978, 50.018390784000132 ], [ -125.360056344999961, 50.018407815000032 ], [ -125.360095985999976, 50.019216589000067 ], [ -125.358422329999939, 50.019250634000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.917958656330749", "sL_AssetLoss": "3.096", "sL_BldgLoss": "2.842", "sL_StrLoss": "0.222", "sL_NStrLoss": "2.62", "sL_ContLoss": "0.254", "geom_point": "0101000020E6100000D416AE791B535FC01BB7FBC9D6004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.29820770699996, 50.006156877000095 ], [ -125.299160145999906, 50.006137999 ], [ -125.299198748999942, 50.006946811000063 ], [ -125.298196572000023, 50.006966675000093 ], [ -125.297943773, 50.006971683000074 ], [ -125.29790519099997, 50.006162871000093 ], [ -125.29820770699996, 50.006156877000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.990596013736881", "sL_AssetLoss": "311.57", "sL_BldgLoss": "308.64", "sL_StrLoss": "254.42", "sL_NStrLoss": "54.22", "sL_ContLoss": "2.93", "geom_point": "0101000020E6100000C94D607CC9515FC018C3284ABA034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.278696199999928, 50.029993648000072 ], [ -125.277585710999929, 50.029986289000043 ], [ -125.274933575999967, 50.029972211 ], [ -125.274780483999933, 50.029971393000032 ], [ -125.274863592999978, 50.02965821500004 ], [ -125.274915662999945, 50.029567574000062 ], [ -125.27495637899996, 50.029496760000065 ], [ -125.275000010999975, 50.02942080300005 ], [ -125.274849076999942, 50.029374506000103 ], [ -125.274065216999972, 50.029134158000055 ], [ -125.274258084999985, 50.028989734000078 ], [ -125.274315186999956, 50.028946957000095 ], [ -125.274868536999975, 50.028651265000086 ], [ -125.27491217, 50.028635482 ], [ -125.275320490999945, 50.02848786900006 ], [ -125.275926714999954, 50.028368775000111 ], [ -125.27599971599993, 50.02835981900008 ], [ -125.276554692, 50.028291654000043 ], [ -125.27794662499997, 50.028120693000034 ], [ -125.278101273999965, 50.028101697000082 ], [ -125.27866861699999, 50.027973223000082 ], [ -125.279073505999989, 50.027835326000115 ], [ -125.280161057999976, 50.027842455000027 ], [ -125.280150603999928, 50.028504685000044 ], [ -125.280693879999944, 50.028508243000019 ], [ -125.280664007, 50.03040185900003 ], [ -125.279691264999911, 50.030340386000084 ], [ -125.279089625999987, 50.030149511000069 ], [ -125.278828994999927, 50.029994525000042 ], [ -125.278696199999928, 50.029993648000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2324834", "BldgCostT": "1603334", "sL_LossRatio": "0.992852533876011", "sL_AssetLoss": "604.41", "sL_BldgLoss": "600.09", "sL_StrLoss": "542.31", "sL_NStrLoss": "57.78", "sL_ContLoss": "4.32", "geom_point": "0101000020E6100000B3142411B5525FC0AD69181D14034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.290524531999964, 50.024907625000068 ], [ -125.290526387999975, 50.024788333000039 ], [ -125.289018280999969, 50.024778585000092 ], [ -125.289024124999941, 50.024403733000092 ], [ -125.288985903999944, 50.024403487000079 ], [ -125.288993138999913, 50.023939392000102 ], [ -125.288976929999947, 50.023939287000118 ], [ -125.288984595999963, 50.023447642000065 ], [ -125.288929759999959, 50.02344728700011 ], [ -125.288931410999922, 50.023341393000052 ], [ -125.288672525, 50.023346501000056 ], [ -125.288670115999963, 50.023295845000064 ], [ -125.291092314999958, 50.023181197000028 ], [ -125.292668896999956, 50.023389124000083 ], [ -125.29613325299999, 50.023205906000044 ], [ -125.296126393999955, 50.023650304000121 ], [ -125.295358884999956, 50.024022696000038 ], [ -125.295123816999961, 50.024378807000076 ], [ -125.295143834999948, 50.02493735200003 ], [ -125.292285828999951, 50.024918982 ], [ -125.290524531999964, 50.024907625000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "0.998693628532247", "sL_AssetLoss": "146.2065", "sL_BldgLoss": "146.0155", "sL_StrLoss": "144.0665", "sL_NStrLoss": "1.949", "sL_ContLoss": "0.191", "geom_point": "0101000020E6100000F14B5876DC585FC0F30AC016A6014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.386859774999948, 50.01387992100009 ], [ -125.386903941999918, 50.010593776000093 ], [ -125.387472498999941, 50.011431314000042 ], [ -125.388060202999952, 50.011734613000023 ], [ -125.388414276999924, 50.012131997 ], [ -125.388906401999932, 50.012184711000025 ], [ -125.389081200999897, 50.012352694000043 ], [ -125.389420213000022, 50.012155006000079 ], [ -125.38981062, 50.012418299000075 ], [ -125.389967813999959, 50.012784297000081 ], [ -125.390689619999989, 50.012975101000052 ], [ -125.390716893, 50.013533413000054 ], [ -125.39096434899993, 50.013902753000089 ], [ -125.386859774999948, 50.01387992100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2039667", "BldgCostT": "1406667", "sL_LossRatio": "0.999096490413242", "sL_AssetLoss": "299.2774", "sL_BldgLoss": "299.007", "sL_StrLoss": "295.132", "sL_NStrLoss": "3.875", "sL_ContLoss": "0.2704", "geom_point": "0101000020E6100000F4271A3905595FC0AD4DA5977F014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.388087227999947, 50.010290507000057 ], [ -125.392488288999985, 50.010314934000121 ], [ -125.392440396999959, 50.013910926000072 ], [ -125.391382067999928, 50.01390506700011 ], [ -125.391081683999971, 50.013570391000073 ], [ -125.391154101999931, 50.013056286000037 ], [ -125.390142122999976, 50.012636198000081 ], [ -125.389472620999982, 50.012124403000101 ], [ -125.390072400999955, 50.011774502000037 ], [ -125.389332011999926, 50.011483989000091 ], [ -125.388636590999951, 50.0109940030001 ], [ -125.388087227999947, 50.010290507000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.996702341845926", "sL_AssetLoss": "235.925", "sL_BldgLoss": "235.147", "sL_StrLoss": "220.767", "sL_NStrLoss": "14.38", "sL_ContLoss": "0.778", "geom_point": "0101000020E6100000C1C46161AF535FC03CA38C3CB9054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.308717685999952, 50.045216043000096 ], [ -125.308719409999924, 50.045102323000059 ], [ -125.304884843999943, 50.045078145000105 ], [ -125.304908192999932, 50.04354707500007 ], [ -125.304697632999961, 50.043545744 ], [ -125.304699808999914, 50.043403032000086 ], [ -125.304948215999929, 50.043505897000017 ], [ -125.305351204999909, 50.043757992000032 ], [ -125.305570923999937, 50.043960202000029 ], [ -125.306311003999923, 50.044260702000109 ], [ -125.307497192, 50.044534195000075 ], [ -125.308255488, 50.044618198000109 ], [ -125.309192091999989, 50.044616815000076 ], [ -125.309954591999912, 50.044494289000113 ], [ -125.31081480499995, 50.04466660500006 ], [ -125.311599332999961, 50.045234124000032 ], [ -125.308717685999952, 50.045216043000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "0.997781492649242", "sL_AssetLoss": "192.021", "sL_BldgLoss": "191.595", "sL_StrLoss": "183.425", "sL_NStrLoss": "8.17", "sL_ContLoss": "0.426", "geom_point": "0101000020E6100000A4FA5268AE525FC0BDBD734160054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.291358259999939, 50.044072511000138 ], [ -125.290992393999929, 50.043589991000076 ], [ -125.290054712999961, 50.043595946000046 ], [ -125.290052934999949, 50.04355857200003 ], [ -125.290471579999974, 50.043550308000057 ], [ -125.290445908999985, 50.043011100000079 ], [ -125.290864550999956, 50.043002833000067 ], [ -125.290851712999981, 50.042733230000053 ], [ -125.291058506999931, 50.042729146000063 ], [ -125.291270351999955, 50.042724962000101 ], [ -125.291189756000023, 50.041032533000077 ], [ -125.291189655999943, 50.04103043300006 ], [ -125.291616943999969, 50.040086788000067 ], [ -125.291894257999928, 50.039474349000074 ], [ -125.29195351099996, 50.039473178000044 ], [ -125.291966352999978, 50.03974278300003 ], [ -125.292384965999986, 50.039734510000123 ], [ -125.292423499, 50.040543321000037 ], [ -125.292842117999911, 50.040535048000059 ], [ -125.292894589999932, 50.041636147000084 ], [ -125.292948112999966, 50.042759213000082 ], [ -125.292957751999921, 50.042961478000066 ], [ -125.292814732999972, 50.042964305000041 ], [ -125.292539112999947, 50.042969751000044 ], [ -125.292551958999937, 50.043239355000061 ], [ -125.292133317999983, 50.043247628000124 ], [ -125.292157217999929, 50.043749307000056 ], [ -125.292159007999885, 50.043786835000049 ], [ -125.292119063999962, 50.043787624000167 ], [ -125.291740358999945, 50.043795106000125 ], [ -125.291753201999981, 50.044064710000065 ], [ -125.291358259999939, 50.044072511000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.961955130939179", "sL_AssetLoss": "11.723", "sL_BldgLoss": "11.277", "sL_StrLoss": "0.977", "sL_NStrLoss": "10.3", "sL_ContLoss": "0.446", "geom_point": "0101000020E61000005350DD9ED8525FC0CC6AB22D20014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.293824694999927, 50.008402517000086 ], [ -125.295079711999932, 50.008377688000017 ], [ -125.295090103999925, 50.008595811000085 ], [ -125.295118248999984, 50.00918650200002 ], [ -125.29439859699994, 50.009200741000036 ], [ -125.293863209999969, 50.009211331000081 ], [ -125.293824694999927, 50.008402517000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2300667", "BldgCostT": "1586667", "sL_LossRatio": "0.99452177817692", "sL_AssetLoss": "556.75", "sL_BldgLoss": "553.7", "sL_StrLoss": "510.47", "sL_NStrLoss": "43.23", "sL_ContLoss": "3.05", "geom_point": "0101000020E61000009428A4CA6A525FC0F31ECAC46B054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.288188191999936, 50.040614791000074 ], [ -125.288598988999965, 50.040567570000057 ], [ -125.289916865999942, 50.04069975700007 ], [ -125.290027269999911, 50.043019364000088 ], [ -125.289608627999925, 50.04302762800009 ], [ -125.289634289, 50.043566836000089 ], [ -125.287959703999945, 50.043599876000087 ], [ -125.287960147999982, 50.043609221000054 ], [ -125.287231040999956, 50.04361383300003 ], [ -125.283460377999958, 50.043637580000087 ], [ -125.284092510000022, 50.043432791000093 ], [ -125.284569584999971, 50.043278494000113 ], [ -125.284853902999927, 50.043135591000123 ], [ -125.285041572999958, 50.043003790000057 ], [ -125.285103403999955, 50.042944399000135 ], [ -125.285965816999962, 50.042115307000053 ], [ -125.286497822999962, 50.0416691980001 ], [ -125.287301208999935, 50.041090005000065 ], [ -125.287773614999963, 50.040791897000119 ], [ -125.287834207999978, 50.040765992000011 ], [ -125.287970299, 50.040707811000075 ], [ -125.288033926999958, 50.04068065200012 ], [ -125.288188191999936, 50.040614791000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.903413498836307", "sL_AssetLoss": "0.2578", "sL_BldgLoss": "0.2329", "sL_StrLoss": "0.0139", "sL_NStrLoss": "0.219", "sL_ContLoss": "0.0249", "geom_point": "0101000020E61000003D407B1E71585FC08346FAFE17004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.37995272499991, 50.000407323000076 ], [ -125.382947346999956, 50.000424189000029 ], [ -125.383143509999954, 50.000681284000024 ], [ -125.38311779899999, 50.000987501000083 ], [ -125.382818092999912, 50.001147115000059 ], [ -125.382192776999943, 50.001213994000111 ], [ -125.381244618999986, 50.000927697000066 ], [ -125.379976381999981, 50.000432100000083 ], [ -125.37995272499991, 50.000407323000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996211164435463", "sL_AssetLoss": "277.13", "sL_BldgLoss": "276.08", "sL_StrLoss": "267", "sL_NStrLoss": "9.08", "sL_ContLoss": "1.05", "geom_point": "0101000020E6100000E3B2C00D27535FC0F72A4BD740FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.298964793999971, 49.993458491000084 ], [ -125.29981023199997, 49.993441728000107 ], [ -125.299874559999964, 49.994789749000077 ], [ -125.298619901, 49.99481462400005 ], [ -125.298586483999912, 49.994113993000049 ], [ -125.298964793999971, 49.993458491000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.921523472099203", "sL_AssetLoss": "5.645", "sL_BldgLoss": "5.202", "sL_StrLoss": "0.482", "sL_NStrLoss": "4.72", "sL_ContLoss": "0.443", "geom_point": "0101000020E610000012C925C867525FC072844E00AC014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.287310471999902, 50.012309188000081 ], [ -125.288565596999959, 50.012284428000058 ], [ -125.288572406999961, 50.012427765000048 ], [ -125.288604028999941, 50.013093245000093 ], [ -125.287767264999943, 50.013109753000023 ], [ -125.287808753999954, 50.013983141000011 ], [ -125.287764017999962, 50.01398488100007 ], [ -125.287631925, 50.013990031000027 ], [ -125.28749988699991, 50.013995191000106 ], [ -125.287367827999972, 50.014000330000087 ], [ -125.287235733999964, 50.014005478000072 ], [ -125.287103674999969, 50.014010617000025 ], [ -125.286985657999978, 50.014015216000082 ], [ -125.286971670999918, 50.014015762000042 ], [ -125.286839558999958, 50.014020889000108 ], [ -125.286836078999968, 50.013873699000044 ], [ -125.286831169999971, 50.013666776000072 ], [ -125.286811803999981, 50.012850128000103 ], [ -125.286811470999979, 50.012679290000058 ], [ -125.286811282999906, 50.012588890000046 ], [ -125.287323275999981, 50.012578794000021 ], [ -125.287310471999902, 50.012309188000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999044608849847", "sL_AssetLoss": "149.0489", "sL_BldgLoss": "148.9065", "sL_StrLoss": "147.0575", "sL_NStrLoss": "1.849", "sL_ContLoss": "0.1424", "geom_point": "0101000020E61000008053503858585FC0CFD8FA9677004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.377851979999932, 50.003474850000053 ], [ -125.381587797999927, 50.003106809000052 ], [ -125.381871780999944, 50.003180796000024 ], [ -125.383116385, 50.004021446000102 ], [ -125.377844932999921, 50.003991713000026 ], [ -125.377851979999932, 50.003474850000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16360833", "BldgCostT": "11283333", "sL_LossRatio": "0.99517347761938", "sL_AssetLoss": "8045.13", "sL_BldgLoss": "8006.3", "sL_StrLoss": "7760", "sL_NStrLoss": "246.3", "sL_ContLoss": "38.83", "geom_point": "0101000020E6100000B4DF5EC2764D5FC0E1240F3CA5F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.212944599999972, 49.952225005000052 ], [ -125.209194711999956, 49.952068324000045 ], [ -125.209102524999977, 49.951582194000117 ], [ -125.209046625999946, 49.951287520000022 ], [ -125.209021798999913, 49.950510824000084 ], [ -125.209010694999947, 49.950140213000061 ], [ -125.20899444299998, 49.948573062 ], [ -125.208946902999955, 49.948577844000035 ], [ -125.208981775, 49.947928249000029 ], [ -125.206120042999984, 49.947766942 ], [ -125.20938947799999, 49.947704685000076 ], [ -125.209400789999961, 49.947951860000089 ], [ -125.209401815999982, 49.947974308000035 ], [ -125.209698759999952, 49.947968649000103 ], [ -125.210237497, 49.947958380000031 ], [ -125.210239359999932, 49.947999108000083 ], [ -125.210249839999946, 49.948228003000139 ], [ -125.210667681999894, 49.948220037000034 ], [ -125.210729419999936, 49.94956815200009 ], [ -125.211147272999966, 49.949560184000084 ], [ -125.211184322999927, 49.950369052000028 ], [ -125.210766463999903, 49.950377020000062 ], [ -125.21077881099994, 49.950646643000077 ], [ -125.210360947999945, 49.950654611000061 ], [ -125.210385640999931, 49.951193855000106 ], [ -125.212057109999932, 49.95116197800013 ], [ -125.212069465999917, 49.951431600000056 ], [ -125.213323072999941, 49.951407677000077 ], [ -125.213360161999972, 49.952216543000127 ], [ -125.21448389399994, 49.95219508600006 ], [ -125.214485890999981, 49.952360126000087 ], [ -125.212944599999972, 49.952225005000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99416937488052", "sL_AssetLoss": "627.72", "sL_BldgLoss": "624.06", "sL_StrLoss": "602", "sL_NStrLoss": "22.06", "sL_ContLoss": "3.66", "geom_point": "0101000020E6100000639B5434164D5FC0FE3D3E4249F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.203138748999933, 49.947608628000076 ], [ -125.203172874999979, 49.947283268000042 ], [ -125.203932953999967, 49.947268821000058 ], [ -125.203945261999976, 49.947538445000106 ], [ -125.206034448999915, 49.947498711999984 ], [ -125.206046516999919, 49.94776279700006 ], [ -125.20521082799999, 49.947715676 ], [ -125.203138748999933, 49.947608628000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295222750", "BldgCostT": "201130000", "sL_LossRatio": "0.986666062835364", "sL_AssetLoss": "145603.581", "sL_BldgLoss": "143662.112", "sL_StrLoss": "139177.592", "sL_NStrLoss": "4484.52", "sL_ContLoss": "1941.469", "geom_point": "0101000020E61000007C878859774C5FC0FF96E75E33F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.196904781999976, 49.930670991000056 ], [ -125.196487086999952, 49.930678906000033 ], [ -125.196499346999985, 49.930948531000112 ], [ -125.196917042999928, 49.93094061700009 ], [ -125.196904781999976, 49.930670991000056 ], [ -125.198157861999945, 49.930647238000134 ], [ -125.198219209999962, 49.93199536800013 ], [ -125.198636915999927, 49.931987447000033 ], [ -125.198673733999925, 49.932796325000048 ], [ -125.198256021999939, 49.932804246000018 ], [ -125.19835419499999, 49.934961253000068 ], [ -125.197936464999898, 49.93496917300012 ], [ -125.198158905999918, 49.939856517000095 ], [ -125.198695, 49.939860435000107 ], [ -125.198680997999958, 49.940658841000108 ], [ -125.199840604999977, 49.940667307000062 ], [ -125.199832995999955, 49.941101789000086 ], [ -125.200204517999907, 49.941104499000154 ], [ -125.200192793999946, 49.94177432100004 ], [ -125.200203660999932, 49.941774401000025 ], [ -125.200192789999988, 49.942395353000073 ], [ -125.200226895999961, 49.942395602000033 ], [ -125.200182856999902, 49.944911323000042 ], [ -125.202150923999938, 49.944873958000116 ], [ -125.202163220999921, 49.945143583000075 ], [ -125.203416672999964, 49.945119768000048 ], [ -125.203404367999966, 49.944850143000089 ], [ -125.203464358999952, 49.944849004000048 ], [ -125.20346341199999, 49.944946935000125 ], [ -125.204093700999948, 49.944974029000051 ], [ -125.20592014, 49.944996999000054 ], [ -125.205923572999964, 49.945072097000057 ], [ -125.206759202999976, 49.945056195000113 ], [ -125.206756976999884, 49.945007514000046 ], [ -125.208012234999941, 49.94502327400005 ], [ -125.208012647999979, 49.945032330000068 ], [ -125.208299142999962, 49.945026874000099 ], [ -125.209497115999966, 49.945041898000042 ], [ -125.209686227999953, 49.945051201000069 ], [ -125.209733268999983, 49.946078982000103 ], [ -125.208061972999928, 49.946110825000119 ], [ -125.20807430399995, 49.94638044800012 ], [ -125.202642543999929, 49.946483769000089 ], [ -125.202630241999955, 49.946214144000052 ], [ -125.200099482999988, 49.946262198000049 ], [ -125.200186313999907, 49.945649748000093 ], [ -125.20003204899993, 49.945647824000048 ], [ -125.200004203999953, 49.945647490000106 ], [ -125.199493009999969, 49.945641096000045 ], [ -125.198219313999957, 49.945655211000037 ], [ -125.197771413999988, 49.945774194000101 ], [ -125.196959220999986, 49.946167507000055 ], [ -125.198850520999954, 49.94738135800003 ], [ -125.198803722999969, 49.94743549300005 ], [ -125.19787104000001, 49.948144749000072 ], [ -125.197857880999962, 49.94815942200006 ], [ -125.197660125999946, 49.948380254000035 ], [ -125.197709952999958, 49.948399308 ], [ -125.197463940999938, 49.948850397000044 ], [ -125.197338614999978, 49.948757192000095 ], [ -125.197163957999948, 49.948627299000123 ], [ -125.196821961999959, 49.948266919000076 ], [ -125.196402042999978, 49.947828946000037 ], [ -125.19632531799999, 49.947748941000086 ], [ -125.196028532999918, 49.947433873000072 ], [ -125.195750800999988, 49.947144095000063 ], [ -125.195036516999934, 49.946563382000107 ], [ -125.194655536999974, 49.946337593000109 ], [ -125.194024204999963, 49.945963398000032 ], [ -125.193892093, 49.945885111000059 ], [ -125.192548352, 49.945213428000081 ], [ -125.19212724, 49.94499992500004 ], [ -125.191029958999977, 49.944361808000075 ], [ -125.190488476999946, 49.94404691400004 ], [ -125.189717692999963, 49.943598631000015 ], [ -125.189141862999961, 49.943263738000063 ], [ -125.188611818999931, 49.942955447000024 ], [ -125.18813180399999, 49.942676287000033 ], [ -125.187762882999948, 49.942461697000098 ], [ -125.187384438999942, 49.9421999260001 ], [ -125.187148538999963, 49.941991384000033 ], [ -125.186946543999952, 49.941756091000066 ], [ -125.186795269999934, 49.941488820000082 ], [ -125.186678384999951, 49.94116874600013 ], [ -125.186646694999936, 49.94083670800007 ], [ -125.186694083999924, 49.940364977000065 ], [ -125.186764159999939, 49.939870974000058 ], [ -125.186781376999946, 49.93973514300005 ], [ -125.186814098999932, 49.939477542000084 ], [ -125.186918084999917, 49.938658216000135 ], [ -125.18702685199996, 49.937798169000118 ], [ -125.187028313999988, 49.937786816000013 ], [ -125.18711148099996, 49.937575220000021 ], [ -125.187309624999926, 49.936966392000031 ], [ -125.189529006999933, 49.936878164000106 ], [ -125.189444286999958, 49.93665289100003 ], [ -125.18945971299992, 49.935943501000153 ], [ -125.189413778999921, 49.935862296000103 ], [ -125.191699907999961, 49.935919607000116 ], [ -125.191189820999952, 49.935232408000047 ], [ -125.190912813999958, 49.934749305000011 ], [ -125.190647994999935, 49.933577488000097 ], [ -125.190696080999956, 49.933222696000037 ], [ -125.190038886999957, 49.933127115000069 ], [ -125.189141000999953, 49.933104203000049 ], [ -125.189100488999927, 49.932640003000095 ], [ -125.189258674999948, 49.932045291000108 ], [ -125.189226517999913, 49.930641101000091 ], [ -125.190270792999939, 49.930653310000046 ], [ -125.190297099999924, 49.929797506000043 ], [ -125.193392595999939, 49.929826590000111 ], [ -125.19353890399999, 49.929827689000149 ], [ -125.194172618999943, 49.929584998000038 ], [ -125.195106015999926, 49.92956940500008 ], [ -125.196694312, 49.929486402000109 ], [ -125.196769024000034, 49.929479644000025 ], [ -125.196767010999977, 49.929594167000069 ], [ -125.19727341799998, 49.929584570000053 ], [ -125.197280713999973, 49.929744962000086 ], [ -125.197310209999969, 49.930393448000082 ], [ -125.196892517999942, 49.930401365000058 ], [ -125.196904781999976, 49.930670991000056 ] ], [ [ -125.189322673999982, 49.940390519000097 ], [ -125.189318038999915, 49.940651757000047 ], [ -125.191399733999916, 49.940667125000083 ], [ -125.191394240999955, 49.94097749000013 ], [ -125.191980329999964, 49.940981810000082 ], [ -125.191979674999942, 49.941018835000079 ], [ -125.192460104999967, 49.941009750000028 ], [ -125.192464874999956, 49.940739803 ], [ -125.1915096769999, 49.940757862000069 ], [ -125.191460730999964, 49.939679355000102 ], [ -125.192483958999929, 49.939660009000136 ], [ -125.192493038999913, 49.939146167000033 ], [ -125.193527516999922, 49.939153780000076 ], [ -125.19351285299993, 49.938830972000105 ], [ -125.194348383999937, 49.938815161000065 ], [ -125.194299378999958, 49.937736654000091 ], [ -125.19346386799999, 49.937752465000074 ], [ -125.193451620999923, 49.937482839000097 ], [ -125.193033867999972, 49.93749074200008 ], [ -125.193046110999916, 49.93776036800007 ], [ -125.192015010999967, 49.937779868000042 ], [ -125.191994990999945, 49.938912048000077 ], [ -125.191102861999966, 49.93890547300002 ], [ -125.191076342999949, 49.940403468000085 ], [ -125.189322673999982, 49.940390519000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.995690037303", "sL_AssetLoss": "1466.37", "sL_BldgLoss": "1460.05", "sL_StrLoss": "1437", "sL_NStrLoss": "23.05", "sL_ContLoss": "6.32", "geom_point": "0101000020E6100000E8A1B60D634E5FC02D047B44B3F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.224150321999915, 49.950390904000088 ], [ -125.225403890999985, 49.950366851000069 ], [ -125.22542831, 49.95089650900011 ], [ -125.225441180999951, 49.951175711000104 ], [ -125.224187591999964, 49.951199766000052 ], [ -125.22415330199999, 49.95045556600008 ], [ -125.224150321999915, 49.950390904000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14011834", "BldgCostT": "9663334", "sL_LossRatio": "0.995713404927091", "sL_AssetLoss": "6356.327", "sL_BldgLoss": "6329.08", "sL_StrLoss": "6185.18", "sL_NStrLoss": "143.9", "sL_ContLoss": "27.247", "geom_point": "0101000020E6100000FF0561F22F4E5FC0AD2AA0F595FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.21987464099999, 49.958257412000123 ], [ -125.219948215, 49.957129025000043 ], [ -125.219964643999973, 49.956997829000017 ], [ -125.221859155999965, 49.957011282000103 ], [ -125.22185665899994, 49.957157880000061 ], [ -125.22343200499999, 49.957169042000061 ], [ -125.223413949999966, 49.958230926000034 ], [ -125.224092743999947, 49.958217908000108 ], [ -125.224099535, 49.958365257000032 ], [ -125.21987464099999, 49.958257412000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321880333", "BldgCostT": "219418333", "sL_LossRatio": "0.986631292213225", "sL_AssetLoss": "154209.968", "sL_BldgLoss": "152148.38", "sL_StrLoss": "147782.04", "sL_NStrLoss": "4366.34", "sL_ContLoss": "2061.588", "geom_point": "0101000020E6100000CFFB8BE24D4D5FC0DB49D812CDF94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.218856258999921, 49.957019801000079 ], [ -125.218875738999955, 49.956090003000043 ], [ -125.218819006999951, 49.95518986600004 ], [ -125.218037523999968, 49.955191909000078 ], [ -125.217853018999946, 49.955187316000064 ], [ -125.217325837999951, 49.955188186000029 ], [ -125.212000092999943, 49.955254960000104 ], [ -125.212017217999986, 49.955127906 ], [ -125.212035334999968, 49.954927643000062 ], [ -125.21042710099999, 49.954898092000057 ], [ -125.209113291000023, 49.954883195000058 ], [ -125.208674504999976, 49.954876504000055 ], [ -125.208143127999961, 49.954759631000066 ], [ -125.207841510999955, 49.954693288000051 ], [ -125.207500912999961, 49.954652206000034 ], [ -125.2070933, 49.954652018000033 ], [ -125.20696706899993, 49.95465196300006 ], [ -125.206838990999984, 49.954651912 ], [ -125.20466788799996, 49.954892449000091 ], [ -125.204228265999944, 49.954372252000034 ], [ -125.203658929999946, 49.953617318000099 ], [ -125.202179163999972, 49.952176913000088 ], [ -125.20035203599997, 49.950684476000141 ], [ -125.200132160999914, 49.950510256000015 ], [ -125.199986394999954, 49.950421605000081 ], [ -125.19994108499999, 49.950394048000121 ], [ -125.19990796299993, 49.95037391600011 ], [ -125.20005051499993, 49.950379232000031 ], [ -125.200478264999973, 49.950395178000079 ], [ -125.200620887999932, 49.950400467000073 ], [ -125.200740629999942, 49.950404941000073 ], [ -125.197709952999958, 49.948399308 ], [ -125.197660125999946, 49.948380254000035 ], [ -125.197857880999962, 49.94815942200006 ], [ -125.19787104000001, 49.948144749000072 ], [ -125.198803722999969, 49.94743549300005 ], [ -125.198850520999954, 49.94738135800003 ], [ -125.196959220999986, 49.946167507000055 ], [ -125.197771413999988, 49.945774194000101 ], [ -125.198219313999957, 49.945655211000037 ], [ -125.199493009999969, 49.945641096000045 ], [ -125.200004203999953, 49.945647490000106 ], [ -125.20003204899993, 49.945647824000048 ], [ -125.200186313999907, 49.945649748000093 ], [ -125.200099482999988, 49.946262198000049 ], [ -125.198102327999948, 49.946300078000071 ], [ -125.198098148999989, 49.946538197000095 ], [ -125.198434920999901, 49.946540658000032 ], [ -125.198430185999925, 49.946810601000067 ], [ -125.200691152999951, 49.946827101000125 ], [ -125.200686148999935, 49.94711303 ], [ -125.201284046, 49.947117386000052 ], [ -125.201280695999969, 49.94730897700007 ], [ -125.201670270999983, 49.947311814000074 ], [ -125.203172874999979, 49.947283268000042 ], [ -125.203138748999933, 49.947608628000076 ], [ -125.20521082799999, 49.947715676 ], [ -125.206046516999919, 49.94776279700006 ], [ -125.206046769999887, 49.947768337000078 ], [ -125.206120042999984, 49.947766942 ], [ -125.208981775, 49.947928249000029 ], [ -125.208946902999955, 49.948577844000035 ], [ -125.20899444299998, 49.948573062 ], [ -125.209010694999947, 49.950140213000061 ], [ -125.209021798999913, 49.950510824000084 ], [ -125.209046625999946, 49.951287520000022 ], [ -125.209102524999977, 49.951582194000117 ], [ -125.209194711999956, 49.952068324000045 ], [ -125.212944599999972, 49.952225005000052 ], [ -125.214485890999981, 49.952360126000087 ], [ -125.21448389399994, 49.95219508600006 ], [ -125.214613787999951, 49.952192605000036 ], [ -125.214626158, 49.952462227000076 ], [ -125.215044036, 49.952454245000062 ], [ -125.21505641, 49.952723867000074 ], [ -125.215474287999896, 49.952715883000053 ], [ -125.215437163999979, 49.95190701600005 ], [ -125.216690777999972, 49.951883056000014 ], [ -125.216703160999941, 49.952152678000061 ], [ -125.217538908000023, 49.952136696000096 ], [ -125.217551295999954, 49.952406318000023 ], [ -125.219222797999947, 49.952374336000076 ], [ -125.219284780999928, 49.953722441000153 ], [ -125.218866894999906, 49.953730441000125 ], [ -125.218875730999912, 49.95392262200005 ], [ -125.219383662000013, 49.953926237000097 ], [ -125.219377951999945, 49.954260375000025 ], [ -125.22014535999989, 49.954245683000053 ], [ -125.220194969999937, 49.955324167000086 ], [ -125.21993913299994, 49.95532906600004 ], [ -125.219674990999962, 49.955334123000043 ], [ -125.219646605999941, 49.956995567000043 ], [ -125.21970087899993, 49.95699595300006 ], [ -125.218856258999921, 49.957019801000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6851250", "BldgCostT": "4725000", "sL_LossRatio": "0.995875571618473", "sL_AssetLoss": "3076.79", "sL_BldgLoss": "3064.1", "sL_StrLoss": "3017", "sL_NStrLoss": "47.1", "sL_ContLoss": "12.69", "geom_point": "0101000020E610000076A9AECF5E4E5FC05B14EAA787FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.224080316999931, 49.957948287000086 ], [ -125.224067891999937, 49.957678668000021 ], [ -125.223649972, 49.957686682000045 ], [ -125.223625561999967, 49.957156908000059 ], [ -125.223612702999944, 49.956877823000085 ], [ -125.224030614999918, 49.956869807000061 ], [ -125.224018190999942, 49.956600187000049 ], [ -125.225271920999887, 49.956576132000045 ], [ -125.225323114999952, 49.957686370000069 ], [ -125.22533408299995, 49.957924231000121 ], [ -125.224080316999931, 49.957948287000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "0.723", "sL_BldgLoss": "0.723", "sL_StrLoss": "0.723", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005AE5952D8AAD5FC0F66758EFE4EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.709398575, 49.875870928 ], [ -126.709397360999986, 49.875792682000096 ], [ -126.707989522, 49.875801794000012 ], [ -126.70793388299991, 49.872205174000094 ], [ -126.70844916899992, 49.872201842000074 ], [ -126.708445477999959, 49.87196348700008 ], [ -126.709890876999964, 49.87195412500008 ], [ -126.709887136999967, 49.871713023000034 ], [ -126.710484079999944, 49.871709151000069 ], [ -126.710483117999985, 49.871647138000121 ], [ -126.711034172, 49.871643561000063 ], [ -126.711102290999932, 49.871787494000095 ], [ -126.711457989999943, 49.872234709000118 ], [ -126.711589709999913, 49.872992387000124 ], [ -126.711790394, 49.873159096000094 ], [ -126.712036391999916, 49.873254501000105 ], [ -126.712451494999954, 49.872992396 ], [ -126.713622588999925, 49.87298820300002 ], [ -126.714046382999953, 49.873131992000033 ], [ -126.714475388000011, 49.873490892000056 ], [ -126.715576814999949, 49.873728695000054 ], [ -126.716100315999938, 49.873624868000014 ], [ -126.716134230999955, 49.875792114000035 ], [ -126.714961740999939, 49.875799776000044 ], [ -126.714962287999953, 49.875834744000088 ], [ -126.709398575, 49.875870928 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "0.699", "sL_BldgLoss": "0.699", "sL_StrLoss": "0.699", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000064E8D84165BB5FC08799E8B926EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.93062439699996, 49.830308912000127 ], [ -126.930125407999981, 49.830290390000066 ], [ -126.929922010999974, 49.830466994000076 ], [ -126.929947987999938, 49.831196203000033 ], [ -126.929508214999927, 49.831368500000139 ], [ -126.92929051899992, 49.83158920400011 ], [ -126.928789290999958, 49.831607797000068 ], [ -126.928463088999976, 49.831458201000032 ], [ -126.927856682999959, 49.830988201000054 ], [ -126.92722110699999, 49.830904193000045 ], [ -126.926887623999988, 49.830556702000131 ], [ -126.926368323999938, 49.830692005000053 ], [ -126.925147421999952, 49.83025619800005 ], [ -126.924952384999969, 49.82994709400004 ], [ -126.925540188999918, 49.829542601000092 ], [ -126.925561287999955, 49.829373201000102 ], [ -126.92543838099999, 49.829353200000114 ], [ -126.92421971, 49.829519900000022 ], [ -126.92380850399999, 49.829377395000108 ], [ -126.923273134999945, 49.829324781000025 ], [ -126.923235473999952, 49.827456096000112 ], [ -126.928793112999969, 49.827409046000085 ], [ -126.928813664999893, 49.82842276200013 ], [ -126.93245792499999, 49.828391757000091 ], [ -126.932531141999959, 49.83198846100003 ], [ -126.931688356999985, 49.831995642000074 ], [ -126.931817485999957, 49.831688892000045 ], [ -126.931560897999944, 49.831207511000045 ], [ -126.931541892999988, 49.830630700000036 ], [ -126.931298889999951, 49.830482598000032 ], [ -126.930952379999937, 49.830449896000111 ], [ -126.93062439699996, 49.830308912000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999987164697291", "sL_AssetLoss": "85.7011342", "sL_BldgLoss": "85.7000342", "sL_StrLoss": "85.7", "sL_NStrLoss": "0.0000342", "sL_ContLoss": "0.0011", "geom_point": "0101000020E6100000EA28A488CE9F5FC049032E7E09E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.493251805999932, 49.796464010000115 ], [ -126.493228497999965, 49.796130686000026 ], [ -126.492672790999961, 49.795336006000113 ], [ -126.49075897699997, 49.793908900000083 ], [ -126.489948800999912, 49.792911998000108 ], [ -126.49000668299999, 49.792588706000089 ], [ -126.490176192999982, 49.792524278000052 ], [ -126.494304436999982, 49.792505685000087 ], [ -126.494337013999953, 49.795527092000043 ], [ -126.497903874999977, 49.795510902000046 ], [ -126.497910565999959, 49.796126935000082 ], [ -126.49950434899992, 49.796119664000102 ], [ -126.499506411999945, 49.796309043000079 ], [ -126.501806968999958, 49.796298506000014 ], [ -126.501846343999986, 49.799895592000041 ], [ -126.501254931999966, 49.799898306000145 ], [ -126.501256930999958, 49.80008120600008 ], [ -126.500869758999926, 49.800082981000081 ], [ -126.500871324999949, 49.800226316000121 ], [ -126.500762967999918, 49.800226812000098 ], [ -126.500773078999941, 49.801152316000127 ], [ -126.500581140999941, 49.801153195000083 ], [ -126.500585093999987, 49.801515220000056 ], [ -126.496484278999944, 49.801533921000093 ], [ -126.496468586999967, 49.801185196000063 ], [ -126.496911795999907, 49.800691012000058 ], [ -126.497177898999965, 49.799598605 ], [ -126.49751561199993, 49.79894918900002 ], [ -126.497491975999964, 49.798607394000094 ], [ -126.49705181599991, 49.798255595000107 ], [ -126.496710186999906, 49.798123192000034 ], [ -126.494623417999904, 49.797654595000061 ], [ -126.494433106999907, 49.797029403000117 ], [ -126.493530806999928, 49.796471083000029 ], [ -126.493251805999932, 49.796464010000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "0.804", "sL_BldgLoss": "0.804", "sL_StrLoss": "0.804", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003AE1EB8CABA95FC0F3BF22E00CDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.645113720999959, 49.731031276000081 ], [ -126.645075605999963, 49.728318317000081 ], [ -126.64540479299994, 49.728366810000082 ], [ -126.645954597999918, 49.728764212000115 ], [ -126.646258006999986, 49.728815389000061 ], [ -126.646331222999919, 49.728737104000082 ], [ -126.646230213999914, 49.728509202000097 ], [ -126.645565818999941, 49.72789399700013 ], [ -126.64506597899998, 49.727633128000079 ], [ -126.645063181999916, 49.727433902000016 ], [ -126.646847882999978, 49.727423338000165 ], [ -126.646846749999909, 49.72734292900001 ], [ -126.646962102999936, 49.727445389000117 ], [ -126.648758986999965, 49.727319996000048 ], [ -126.650040589999989, 49.727489507000094 ], [ -126.650555099999934, 49.727455308000096 ], [ -126.649554695999939, 49.727210387000063 ], [ -126.648337072999936, 49.727140595000037 ], [ -126.647222008999975, 49.726964005000092 ], [ -126.646838600999956, 49.726764314000107 ], [ -126.646832912999955, 49.726360579000144 ], [ -126.647157007, 49.725703491000111 ], [ -126.647448106999931, 49.725448601000025 ], [ -126.648091814999958, 49.725029891000077 ], [ -126.649278400999933, 49.724595506000071 ], [ -126.64996780200002, 49.724132595000071 ], [ -126.649940808999986, 49.72353869300008 ], [ -126.650284426, 49.722847458000132 ], [ -126.653424770999919, 49.722828697000082 ], [ -126.653429849999966, 49.723185617000055 ], [ -126.654053166999987, 49.723181883000052 ], [ -126.654057700999971, 49.72350026400008 ], [ -126.655326435999982, 49.723492652000068 ], [ -126.655333895999959, 49.724015379000029 ], [ -126.656691412999962, 49.724007218000096 ], [ -126.656742858999962, 49.727604604000135 ], [ -126.656584843999923, 49.727605555000139 ], [ -126.656600219, 49.728680806000135 ], [ -126.651054293999891, 49.728714032000077 ], [ -126.651052775999943, 49.728606956000064 ], [ -126.65062608, 49.728609500000061 ], [ -126.650659929999932, 49.730998352 ], [ -126.645113720999959, 49.731031276000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.2", "sL_BldgLoss": "61.2", "sL_StrLoss": "61.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A396B64D5AA5FC06AF362D55EF54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.666685071999922, 49.923885791000075 ], [ -126.666825144999905, 49.915862977000074 ], [ -126.66892763700001, 49.915990210000132 ], [ -126.668920345999965, 49.912631582000074 ], [ -126.672775002999941, 49.912607990000026 ], [ -126.672827926999986, 49.916204426000036 ], [ -126.669171293000019, 49.916226812000062 ], [ -126.66920924599999, 49.918819713000062 ], [ -126.669017141999973, 49.918820886000077 ], [ -126.669046363999911, 49.920817612000114 ], [ -126.668373786999922, 49.920821715000095 ], [ -126.668396131999941, 49.92234992500007 ], [ -126.667936928, 49.922352724000099 ], [ -126.66794535, 49.922929135000061 ], [ -126.667594412999975, 49.922931273000131 ], [ -126.667598855999984, 49.923235544000057 ], [ -126.667250339999896, 49.923237665000023 ], [ -126.667255665999932, 49.923602451000072 ], [ -126.666916386999972, 49.923604516000061 ], [ -126.666920467999944, 49.923884359000056 ], [ -126.666685071999922, 49.923885791000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "0.657", "sL_BldgLoss": "0.657", "sL_StrLoss": "0.657", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E6679057FAF5FC05DFDD824BFEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.741362182999922, 49.875229634000078 ], [ -126.741347137999924, 49.874300904000073 ], [ -126.741136529999935, 49.874302329000081 ], [ -126.741129616999942, 49.873875536000085 ], [ -126.740320221999966, 49.873881011000051 ], [ -126.740320118999961, 49.873874674000049 ], [ -126.739208577999989, 49.873882183000028 ], [ -126.739207920999903, 49.873841534000121 ], [ -126.738226040999933, 49.873848158000072 ], [ -126.738223949999934, 49.873718569000125 ], [ -126.737501019999939, 49.873723440000056 ], [ -126.737443062999915, 49.87012682600011 ], [ -126.737494973999929, 49.870126476000088 ], [ -126.737839309999941, 49.870323495000051 ], [ -126.738118587999978, 49.8706167980001 ], [ -126.738870200999926, 49.870874600000057 ], [ -126.73938310299998, 49.870957194000034 ], [ -126.740065413, 49.870925897000049 ], [ -126.740561599999964, 49.871034109 ], [ -126.742987598999932, 49.870928789000033 ], [ -126.743402701999969, 49.871017084000094 ], [ -126.743869718999946, 49.871440003000039 ], [ -126.744217205999988, 49.871743408000093 ], [ -126.744403711999922, 49.872493996000067 ], [ -126.744640213999944, 49.872535292000123 ], [ -126.74469788699993, 49.872751709000084 ], [ -126.744874514999964, 49.872844306000076 ], [ -126.745317400999937, 49.872906989000072 ], [ -126.746906195999912, 49.872884207 ], [ -126.747278684999955, 49.872955407000106 ], [ -126.7473376989999, 49.872950662000036 ], [ -126.74736055599999, 49.874350317000044 ], [ -126.746974732999888, 49.874352949000119 ], [ -126.74698056299998, 49.874710125000071 ], [ -126.746917936999935, 49.874710552000131 ], [ -126.74692579099991, 49.875191826000048 ], [ -126.741362182999922, 49.875229634000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "0.687", "sL_BldgLoss": "0.687", "sL_StrLoss": "0.687", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DBFAA72359AB5FC07CA5E2B501EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.674079784999961, 49.83078285200007 ], [ -126.674067033999961, 49.829916290000014 ], [ -126.673765624999973, 49.829918146000075 ], [ -126.673759167999918, 49.8294791080001 ], [ -126.673604794999932, 49.82948005900009 ], [ -126.673964103999978, 49.829326192000053 ], [ -126.67517937599996, 49.82862259400008 ], [ -126.675071598999978, 49.828530011000048 ], [ -126.674684003999943, 49.828495883000095 ], [ -126.673950088999945, 49.828740800000062 ], [ -126.67388931499994, 49.828559897000055 ], [ -126.674497414999976, 49.828337804000057 ], [ -126.675461995999953, 49.828205308000065 ], [ -126.675720674, 49.828048696000025 ], [ -126.675453896999926, 49.827809402000049 ], [ -126.674766205999973, 49.827651289000087 ], [ -126.674672693, 49.82700191100011 ], [ -126.67438741499997, 49.826842303000021 ], [ -126.67378210499993, 49.826705611000172 ], [ -126.673421657999967, 49.826761139000041 ], [ -126.673408765999952, 49.825884074000037 ], [ -126.675006534999966, 49.825874226000074 ], [ -126.675004612999956, 49.82574371500008 ], [ -126.68056226499999, 49.825709277000037 ], [ -126.680615699999962, 49.82930614000005 ], [ -126.680378759999925, 49.829307614000086 ], [ -126.680383609999978, 49.829634145000099 ], [ -126.67975499299996, 49.829638053000075 ], [ -126.679757896999945, 49.829833761000067 ], [ -126.679624491999945, 49.829834589000072 ], [ -126.67963805, 49.830748461000134 ], [ -126.674079784999961, 49.83078285200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999919067618448", "sL_AssetLoss": "98.72439", "sL_BldgLoss": "98.7164", "sL_StrLoss": "98.7", "sL_NStrLoss": "0.0164", "sL_ContLoss": "0.00799", "geom_point": "0101000020E6100000A10B4D8661905FC03BAA580418FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.256774442, 49.971269004000099 ], [ -126.256778022999981, 49.971206064000071 ], [ -126.253239938000021, 49.97121428600007 ], [ -126.253238394999968, 49.97093602500005 ], [ -126.252439423999959, 49.970937865000074 ], [ -126.252419542999945, 49.967341555000118 ], [ -126.257994646999947, 49.967328591000111 ], [ -126.257996220000038, 49.967606853000063 ], [ -126.258795130999971, 49.967604972000096 ], [ -126.258808522999956, 49.969967740000044 ], [ -126.258940406999926, 49.969970857000078 ], [ -126.258925088999945, 49.970240372000042 ], [ -126.259342952999958, 49.970250252000064 ], [ -126.259312318999974, 49.970789279000037 ], [ -126.259730189000024, 49.970799157000037 ], [ -126.259699557999966, 49.971338186000011 ], [ -126.26011743399998, 49.971348063000057 ], [ -126.260071492999927, 49.972156605000087 ], [ -126.258399967999978, 49.972117086 ], [ -126.258415290999935, 49.971847573000076 ], [ -126.257997412999913, 49.971837690000065 ], [ -126.258012738000019, 49.971568176000069 ], [ -126.257594861999976, 49.971558292000083 ], [ -126.257610189999923, 49.971288778000073 ], [ -126.256774442, 49.971269004000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "0.686", "sL_BldgLoss": "0.686", "sL_StrLoss": "0.686", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FCBAEE646BC5FC02AABA75E50F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.937831833999951, 49.934514617000097 ], [ -126.937824171999964, 49.934141236000094 ], [ -126.93745314099999, 49.934144409000034 ], [ -126.937423499999966, 49.932699465000098 ], [ -126.937638320999937, 49.932755105000091 ], [ -126.93818559199994, 49.932673912000098 ], [ -126.93923688599989, 49.932846295000026 ], [ -126.939600685999935, 49.932834903000092 ], [ -126.939687190999962, 49.932773596000054 ], [ -126.939717098999949, 49.932701014000088 ], [ -126.939608819999989, 49.932653999000102 ], [ -126.938633112, 49.932340702000069 ], [ -126.93878801399994, 49.93192909600009 ], [ -126.939387795999977, 49.93129238800001 ], [ -126.94046340899996, 49.930870887000054 ], [ -126.940201781999946, 49.930479202000086 ], [ -126.940476504999964, 49.929926592000115 ], [ -126.941347203999968, 49.929788492000036 ], [ -126.941939815999973, 49.929583396000119 ], [ -126.942351989999963, 49.929104904000091 ], [ -126.942222294999937, 49.928859911000046 ], [ -126.942027443999976, 49.928744480000042 ], [ -126.944150779, 49.928726215000111 ], [ -126.944183515999896, 49.930310856000055 ], [ -126.945014538999928, 49.930303697000106 ], [ -126.945088906999928, 49.933899889000081 ], [ -126.94416525599992, 49.933907846000032 ], [ -126.944169483999985, 49.934112512000112 ], [ -126.943395298999988, 49.934119176000138 ], [ -126.943402474999971, 49.934466832000048 ], [ -126.937831833999951, 49.934514617000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "54.4", "sL_BldgLoss": "54.4", "sL_StrLoss": "54.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000976B342DEFB55FC0C942CFC10EFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.841957045999933, 49.990390075000036 ], [ -126.841941714999933, 49.98955902300002 ], [ -126.841414673999935, 49.989563063000084 ], [ -126.841409659999954, 49.989291128000083 ], [ -126.841248883999953, 49.989292361000018 ], [ -126.84118260799994, 49.985696371000067 ], [ -126.841262344999905, 49.985695761000045 ], [ -126.841255625999949, 49.985331172000059 ], [ -126.841862358999933, 49.985326521000125 ], [ -126.841862104999933, 49.985312687000061 ], [ -126.841918945999964, 49.985312251000103 ], [ -126.84189022299995, 49.9837550250001 ], [ -126.841244817999922, 49.983759973000112 ], [ -126.841178548999977, 49.980163957000059 ], [ -126.84180403699996, 49.980159162000113 ], [ -126.841780105999987, 49.978861370000097 ], [ -126.841881158999954, 49.978860595000114 ], [ -126.841875621, 49.978560272000031 ], [ -126.8425892, 49.978554797000079 ], [ -126.842628381999972, 49.978852000000103 ], [ -126.842628456999989, 49.978852424000124 ], [ -126.842704335999912, 49.979755902000065 ], [ -126.843367465999947, 49.979746477000084 ], [ -126.844093813999919, 49.979736159000048 ], [ -126.844096591999957, 49.980536066000077 ], [ -126.844131018999974, 49.990373383000097 ], [ -126.841957045999933, 49.990390075000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.998320493027732", "sL_AssetLoss": "211.98483", "sL_BldgLoss": "211.6288", "sL_StrLoss": "208.52", "sL_NStrLoss": "3.1088", "sL_ContLoss": "0.35603", "geom_point": "0101000020E610000057F6F275F8675FC05B85E69DB7ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.623571868999974, 49.858108719000029 ], [ -125.623469640999986, 49.856221903000105 ], [ -125.62513732299999, 49.856184127000063 ], [ -125.625151935999924, 49.856453672000107 ], [ -125.625568857999966, 49.856444223 ], [ -125.625656550999977, 49.858061492000026 ], [ -125.623571868999974, 49.858108719000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10505250", "BldgCostT": "7245000", "sL_LossRatio": "0.994358728345101", "sL_AssetLoss": "5023.69", "sL_BldgLoss": "4995.35", "sL_StrLoss": "4714.62", "sL_NStrLoss": "280.73", "sL_ContLoss": "28.34", "geom_point": "0101000020E610000017F37343D3625FC0A1B8045C67EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.540908279999911, 49.865888350000056 ], [ -125.540894129999955, 49.865618788000113 ], [ -125.540477100999951, 49.865627933 ], [ -125.540434663999989, 49.864819245000035 ], [ -125.541268707999947, 49.864800955000121 ], [ -125.541254556999931, 49.86453139200011 ], [ -125.541671576999988, 49.864522246000064 ], [ -125.541643271999973, 49.863983121000054 ], [ -125.542894315, 49.863955670000074 ], [ -125.542851838999979, 49.863146985000135 ], [ -125.544519865999931, 49.86311036300004 ], [ -125.544505698999927, 49.862840802000051 ], [ -125.544922702999884, 49.862831642000074 ], [ -125.54490853399993, 49.862562081000085 ], [ -125.544491532, 49.862571240000172 ], [ -125.544477365999938, 49.86230167800008 ], [ -125.543226365999928, 49.862329146000036 ], [ -125.543212205999922, 49.86205958400005 ], [ -125.542795208999962, 49.862068736000012 ], [ -125.542781051999967, 49.861799175000058 ], [ -125.542364055999911, 49.861808326000066 ], [ -125.54234990099998, 49.861538764000095 ], [ -125.541098919999968, 49.861566207000052 ], [ -125.541127215999921, 49.862105332000027 ], [ -125.540293217999974, 49.862123620000084 ], [ -125.540335649999946, 49.862932308000033 ], [ -125.540752655999967, 49.862923165000055 ], [ -125.540809242999913, 49.864001414000064 ], [ -125.540392227999973, 49.864010558000061 ], [ -125.54040637199995, 49.86428012000011 ], [ -125.538738300999967, 49.864316683 ], [ -125.538652975999938, 49.862689495000026 ], [ -125.538625220999961, 49.862160180000053 ], [ -125.538208218999984, 49.862169316000042 ], [ -125.53815169399995, 49.861091064000114 ], [ -125.539014344999956, 49.861072162 ], [ -125.53940266599993, 49.86106365200007 ], [ -125.539388527999932, 49.860794089000059 ], [ -125.540639490999951, 49.860766664000067 ], [ -125.540625346999917, 49.860497102000117 ], [ -125.541042330999943, 49.860487956999989 ], [ -125.541014036999968, 49.85994883200005 ], [ -125.543098935000017, 49.85990308700007 ], [ -125.543084777000033, 49.859633526000039 ], [ -125.543501754999951, 49.859624372000063 ], [ -125.543487593999885, 49.859354810000056 ], [ -125.543904568999949, 49.85934565500007 ], [ -125.543890405999932, 49.859076094000059 ], [ -125.544307377999928, 49.859066937000101 ], [ -125.544293213999964, 49.858797376000055 ], [ -125.54471018199996, 49.858788217000047 ], [ -125.544696014999971, 49.858518656000065 ], [ -125.546363880999976, 49.858482011000063 ], [ -125.546420583999961, 49.859560257000048 ], [ -125.547254534, 49.859541925000016 ], [ -125.547282896999917, 49.860081047000051 ], [ -125.547699875999967, 49.860071879000017 ], [ -125.547742427999978, 49.860880562000013 ], [ -125.54565749399994, 49.860926390000053 ], [ -125.545671666999965, 49.861195952000109 ], [ -125.545254677999978, 49.861205113000082 ], [ -125.545268848999939, 49.861474676000036 ], [ -125.545685840999937, 49.861465513000127 ], [ -125.545700015999941, 49.861735075000041 ], [ -125.548618966999982, 49.861670903000061 ], [ -125.548647346, 49.862210025000103 ], [ -125.549064344, 49.862200851000125 ], [ -125.549163694999919, 49.864087775000051 ], [ -125.548746682999976, 49.864096950000039 ], [ -125.548789257999928, 49.864905631000099 ], [ -125.548372236999953, 49.864914805000069 ], [ -125.548386426999954, 49.865184366000122 ], [ -125.547969405999979, 49.865193537000074 ], [ -125.547983593999945, 49.86546309800012 ], [ -125.543813326999938, 49.865554733000089 ], [ -125.54379916299996, 49.865285171000039 ], [ -125.542965112999937, 49.865303480000108 ], [ -125.542979272999929, 49.865573042000143 ], [ -125.542145216, 49.865591345000041 ], [ -125.542159371999958, 49.865860907000105 ], [ -125.540908279999911, 49.865888350000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995056031641397", "sL_AssetLoss": "303.4", "sL_BldgLoss": "301.9", "sL_StrLoss": "290", "sL_NStrLoss": "11.9", "sL_ContLoss": "1.5", "geom_point": "0101000020E610000016B3F370E14F5FC02B99EF2244F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.247317937999924, 49.900019970000052 ], [ -125.248987596999925, 49.899987584000044 ], [ -125.248999119999937, 49.900235340000052 ], [ -125.249025214999989, 49.900796437000039 ], [ -125.248607793999966, 49.900804536000066 ], [ -125.248620332999934, 49.901074155000117 ], [ -125.247785641999968, 49.901090346000103 ], [ -125.247368060999975, 49.901098443000109 ], [ -125.247336435999927, 49.900417977000096 ], [ -125.247331967999912, 49.900321827000077 ], [ -125.247317937999924, 49.900019970000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999341804877759", "sL_AssetLoss": "337.286", "sL_BldgLoss": "337.064", "sL_StrLoss": "336", "sL_NStrLoss": "1.064", "sL_ContLoss": "0.222", "geom_point": "0101000020E61000004904D3FE81645FC0C04A5713B8C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.569392807999961, 49.544373325 ], [ -125.569378662999938, 49.544103754000041 ], [ -125.569792938999967, 49.544094548000061 ], [ -125.569778791999937, 49.543824977000064 ], [ -125.571435886999936, 49.543788142000089 ], [ -125.571464200999969, 49.544327283000086 ], [ -125.571878478999935, 49.544318071000092 ], [ -125.571920955999985, 49.545126783000107 ], [ -125.571506672999931, 49.545135996000056 ], [ -125.571520830999987, 49.545405567000103 ], [ -125.569035103999937, 49.545460815000098 ], [ -125.568978529999981, 49.544382529000096 ], [ -125.569392807999961, 49.544373325 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6046500", "BldgCostT": "4170000", "sL_LossRatio": "0.997784243384189", "sL_AssetLoss": "1490.415498", "sL_BldgLoss": "1487.1131", "sL_StrLoss": "1457.925", "sL_NStrLoss": "29.1881", "sL_ContLoss": "3.302398", "geom_point": "0101000020E6100000CA6459ACF8655FC0F231699D02C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.590404902999921, 49.571359104000067 ], [ -125.589171182999905, 49.571297895000093 ], [ -125.588735211999932, 49.571424605000111 ], [ -125.588295051999964, 49.571594041000019 ], [ -125.588320799999934, 49.568711796000038 ], [ -125.593847614999987, 49.56873258100007 ], [ -125.593847236, 49.568775692000088 ], [ -125.597691169999919, 49.568789983000087 ], [ -125.597659758, 49.572388261000057 ], [ -125.595242934999959, 49.572379292000107 ], [ -125.595241385999941, 49.572555757 ], [ -125.59260008699998, 49.57204840400005 ], [ -125.59108432, 49.571632599000097 ], [ -125.590404902999921, 49.571359104000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999663308237065", "sL_AssetLoss": "141.3756", "sL_BldgLoss": "141.328", "sL_StrLoss": "141", "sL_NStrLoss": "0.328", "sL_ContLoss": "0.0476", "geom_point": "0101000020E6100000438EEF839A645FC084BCFD3D21FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.57151734199995, 49.978289220000136 ], [ -125.57150296599994, 49.978019668000051 ], [ -125.571084975999952, 49.978028939000133 ], [ -125.57102748299999, 49.976950736000077 ], [ -125.572594580999919, 49.976915975000054 ], [ -125.57269940299993, 49.976913649000089 ], [ -125.57270836899994, 49.977081677000115 ], [ -125.57277131599993, 49.978261400000079 ], [ -125.57151734199995, 49.978289220000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.99442389205863", "sL_AssetLoss": "278.151", "sL_BldgLoss": "276.6", "sL_StrLoss": "256.06", "sL_NStrLoss": "20.54", "sL_ContLoss": "1.551", "geom_point": "0101000020E610000070CEA9E0C7565FC0FE8F5DB326FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.355104168999929, 49.994221006000025 ], [ -125.355077819999963, 49.993681819000074 ], [ -125.354241432999942, 49.99369880200009 ], [ -125.354188756999989, 49.992620426000073 ], [ -125.35711604299999, 49.992560963000088 ], [ -125.357142413999938, 49.99310014900005 ], [ -125.357560601999978, 49.993091649000128 ], [ -125.357613353999952, 49.994170021000059 ], [ -125.355104168999929, 49.994221006000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.993509407037972", "sL_AssetLoss": "1272.611", "sL_BldgLoss": "1264.351", "sL_StrLoss": "1207.801", "sL_NStrLoss": "56.55", "sL_ContLoss": "8.26", "geom_point": "0101000020E61000009B0F5BBC10505FC0DC295FC8D1F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.250999364, 49.898329360000041 ], [ -125.250986814, 49.898059743000054 ], [ -125.250569415999948, 49.898067848000096 ], [ -125.250544323, 49.89752861200008 ], [ -125.249709536999902, 49.897544819000061 ], [ -125.249722077999962, 49.897814437000079 ], [ -125.248887288999953, 49.897830638000087 ], [ -125.24889982699996, 49.898100256000127 ], [ -125.246812330999958, 49.898140742000081 ], [ -125.246917275999976, 49.897912469000062 ], [ -125.247022481999963, 49.897691719000122 ], [ -125.247032589999932, 49.897670486000038 ], [ -125.247239299999933, 49.897456091000073 ], [ -125.247307342999989, 49.897420072000031 ], [ -125.247499107999914, 49.89731848300007 ], [ -125.248387120999936, 49.896973893000066 ], [ -125.248705598999962, 49.8968977870001 ], [ -125.250295135999949, 49.896679556000038 ], [ -125.25053585199997, 49.89664652600009 ], [ -125.249573606999917, 49.895928288000022 ], [ -125.250051665999976, 49.89591900800005 ], [ -125.25004095300001, 49.895688719000077 ], [ -125.250478586999918, 49.895675799000053 ], [ -125.250542613999968, 49.895639614000046 ], [ -125.250873874999911, 49.895633180000068 ], [ -125.25086567799994, 49.895457025000049 ], [ -125.251037081999968, 49.895360149000119 ], [ -125.252486326999957, 49.89533199300007 ], [ -125.252531452999975, 49.895344701000077 ], [ -125.252543378, 49.895600746000085 ], [ -125.252960752999982, 49.895592633000035 ], [ -125.252998432999973, 49.89640148600003 ], [ -125.253415812999947, 49.896393372000013 ], [ -125.253440938999972, 49.896932608000036 ], [ -125.253858324999925, 49.896924491000057 ], [ -125.253896021999978, 49.897733344000052 ], [ -125.253478628999957, 49.89774146000012 ], [ -125.253491191999942, 49.898011077000035 ], [ -125.253073795999967, 49.898019192000078 ], [ -125.253086356999972, 49.898288809000064 ], [ -125.250999364, 49.898329360000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18115333", "BldgCostT": "12493333", "sL_LossRatio": "0.998876626172897", "sL_AssetLoss": "3379.7298", "sL_BldgLoss": "3375.9331", "sL_StrLoss": "3338.3638", "sL_NStrLoss": "37.5693", "sL_ContLoss": "3.7967", "geom_point": "0101000020E61000004E3F666FC2665FC010728346D5C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.603727620999976, 49.581659291000079 ], [ -125.60371326899994, 49.581389729000087 ], [ -125.60288410499993, 49.581408391000096 ], [ -125.602869756999951, 49.5811388280001 ], [ -125.6024551779999, 49.581148157000094 ], [ -125.602440831999957, 49.580878595000073 ], [ -125.600782520999985, 49.580915894 ], [ -125.60075384699995, 49.580376769000068 ], [ -125.599924701999967, 49.58039541000003 ], [ -125.599910367999954, 49.580125847000041 ], [ -125.599495796999946, 49.580135164000076 ], [ -125.599424153999948, 49.578787348000041 ], [ -125.599009591999931, 49.578796663000055 ], [ -125.598980940999965, 49.578257537000042 ], [ -125.598566384999913, 49.578266852000077 ], [ -125.598552061999925, 49.577997288000049 ], [ -125.59813750699999, 49.578006601000112 ], [ -125.598080225999922, 49.576928347 ], [ -125.598494769999888, 49.576919033000138 ], [ -125.598480447999975, 49.576649470000099 ], [ -125.599724074999955, 49.576621524000089 ], [ -125.599752732999931, 49.577160651000078 ], [ -125.600167278999962, 49.577151333000081 ], [ -125.600181611999943, 49.57742089500006 ], [ -125.600596159999952, 49.577411575000042 ], [ -125.600624827999951, 49.577950702000102 ], [ -125.601453933999977, 49.577932057000076 ], [ -125.601410916999896, 49.577123368000066 ], [ -125.601759100999928, 49.577115536000072 ], [ -125.601768385999947, 49.576041120000113 ], [ -125.601725082999934, 49.575227102 ], [ -125.601775429999975, 49.575225970000119 ], [ -125.601781524999936, 49.574520751000108 ], [ -125.602414518999964, 49.574523067000065 ], [ -125.602430910999985, 49.572623063000087 ], [ -125.604689988999951, 49.572631299000115 ], [ -125.604695258999982, 49.572016918000088 ], [ -125.610222479999933, 49.572036871000108 ], [ -125.610222019999952, 49.572091249000081 ], [ -125.610893356999895, 49.572093654000057 ], [ -125.610885120999967, 49.573069061000083 ], [ -125.611161505999974, 49.573070050000041 ], [ -125.611131141999948, 49.576668310000095 ], [ -125.610908050999967, 49.576667512000093 ], [ -125.610890357999963, 49.578762810000065 ], [ -125.608968761000014, 49.578755918000056 ], [ -125.609016508999972, 49.579650912000098 ], [ -125.608601944999961, 49.579660263000065 ], [ -125.608673843999966, 49.581008070000031 ], [ -125.608259267999983, 49.58101742000013 ], [ -125.608273645999986, 49.581286980000115 ], [ -125.607029910999941, 49.581315021000123 ], [ -125.607044280999929, 49.58158458200004 ], [ -125.603727620999976, 49.581659291000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.995183069674397", "sL_AssetLoss": "569.865", "sL_BldgLoss": "567.12", "sL_StrLoss": "542.97", "sL_NStrLoss": "24.15", "sL_ContLoss": "2.745", "geom_point": "0101000020E6100000DD08A427D9655FC0138E729345C94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.589709364999933, 49.573068006000078 ], [ -125.589716063999958, 49.572315468000042 ], [ -125.58828865599996, 49.572310073000033 ], [ -125.588293054999923, 49.571817623000072 ], [ -125.589113198999925, 49.571514387000022 ], [ -125.58971850599994, 49.571456010000077 ], [ -125.590053098999988, 49.571493008000054 ], [ -125.591672617999961, 49.572032806000102 ], [ -125.593222417999968, 49.572304804000076 ], [ -125.59508469299999, 49.572747696000143 ], [ -125.595239470999928, 49.57277376400009 ], [ -125.595236704999962, 49.573088721000019 ], [ -125.589709364999933, 49.573068006000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.994028637861457", "sL_AssetLoss": "940.154", "sL_BldgLoss": "934.54", "sL_StrLoss": "884.69", "sL_NStrLoss": "49.85", "sL_ContLoss": "5.614", "geom_point": "0101000020E6100000EDCA57974D505FC025391E3B41F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.254097096999914, 49.902047220000021 ], [ -125.254046821999964, 49.900968751000029 ], [ -125.253629401999945, 49.900976868000051 ], [ -125.253616836999953, 49.900707251000021 ], [ -125.253199417999951, 49.900715367000068 ], [ -125.253186853999921, 49.900445749000042 ], [ -125.252769437999945, 49.900453863000074 ], [ -125.252744315999976, 49.899914628000062 ], [ -125.252326903999986, 49.899922741000132 ], [ -125.252321437999967, 49.899805402000041 ], [ -125.25227667399993, 49.898844270000048 ], [ -125.252694077999934, 49.898836158000073 ], [ -125.25268151799996, 49.898566540000026 ], [ -125.253933719999949, 49.898542196000058 ], [ -125.253958851999982, 49.899081431000113 ], [ -125.254376257999979, 49.89907331200007 ], [ -125.25440139600002, 49.899612547000054 ], [ -125.255236212999975, 49.899596307000095 ], [ -125.255237111999961, 49.899615549000075 ], [ -125.25524878799996, 49.899865923000064 ], [ -125.256083610999951, 49.899849676000031 ], [ -125.25610876799999, 49.900388909000085 ], [ -125.257361014999944, 49.900364528000132 ], [ -125.257423945999989, 49.901712611000079 ], [ -125.255336811999882, 49.901753242000026 ], [ -125.255349387, 49.902022859000034 ], [ -125.254097096999914, 49.902047220000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6046500", "BldgCostT": "4170000", "sL_LossRatio": "0.999647932789172", "sL_AssetLoss": "1002.08139", "sL_BldgLoss": "1001.72859", "sL_StrLoss": "999.03559", "sL_NStrLoss": "2.693", "sL_ContLoss": "0.3528", "geom_point": "0101000020E6100000B9BED55B3F695FC05C3DA3844BF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.642544080999954, 49.924921978000057 ], [ -125.642548915999967, 49.924303902000105 ], [ -125.642540578999942, 49.924303875000064 ], [ -125.642568701999892, 49.920707361000026 ], [ -125.643892266999927, 49.920711669000077 ], [ -125.643893962999968, 49.920494094000077 ], [ -125.646046144999971, 49.920501064000049 ], [ -125.647128467999963, 49.920504553000029 ], [ -125.647127900999976, 49.920515492000064 ], [ -125.646644005, 49.921345798000097 ], [ -125.645801698999946, 49.922003709000094 ], [ -125.645719298999936, 49.922265800000105 ], [ -125.645250501999968, 49.92235840100011 ], [ -125.645397597999988, 49.92275859900009 ], [ -125.645495783999976, 49.922765700000141 ], [ -125.645881504999949, 49.922684483000062 ], [ -125.645981716999955, 49.922466607000089 ], [ -125.646550204, 49.922174589000086 ], [ -125.646677196999974, 49.921973790000095 ], [ -125.647236395999983, 49.921988087000067 ], [ -125.647336709999976, 49.922282893000038 ], [ -125.647088079999946, 49.923368099000101 ], [ -125.647063687999946, 49.924447702000087 ], [ -125.646505017999928, 49.925171201000055 ], [ -125.646414215999982, 49.925542904000068 ], [ -125.646200283999974, 49.925709496000096 ], [ -125.645874694000028, 49.926391716000111 ], [ -125.645502779999987, 49.926462902000054 ], [ -125.645406205999976, 49.926753505000086 ], [ -125.645063297999968, 49.927085312000045 ], [ -125.644728594999918, 49.928342889000106 ], [ -125.644478612999947, 49.928524853000077 ], [ -125.643765501999951, 49.928522538000017 ], [ -125.64242121699999, 49.928518162000032 ], [ -125.642449351999943, 49.924921669000078 ], [ -125.642544080999954, 49.924921978000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912584", "BldgCostT": "2698334", "sL_LossRatio": "0.999334741129331", "sL_AssetLoss": "710.8511", "sL_BldgLoss": "710.3782", "sL_StrLoss": "707.0772", "sL_NStrLoss": "3.301", "sL_ContLoss": "0.4729", "geom_point": "0101000020E610000005F488F281675FC07138D29D50EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.616251675999933, 49.840459010000096 ], [ -125.616257389999973, 49.839777201000125 ], [ -125.615715196999943, 49.839775298000092 ], [ -125.615718915999963, 49.839332135000049 ], [ -125.61513540199995, 49.839330084000053 ], [ -125.615136102999955, 49.83924667800008 ], [ -125.615052002999974, 49.839246382000098 ], [ -125.615053347999904, 49.839086430000073 ], [ -125.614954110999946, 49.839086081000104 ], [ -125.614954949999969, 49.838986211000126 ], [ -125.614889012999939, 49.838985980000096 ], [ -125.614890610999922, 49.838796053000138 ], [ -125.614640513999944, 49.838795173000058 ], [ -125.614670775999912, 49.835198244000047 ], [ -125.615524905999962, 49.8352012490001 ], [ -125.615676218999937, 49.835454499000079 ], [ -125.616089407999979, 49.835633995000059 ], [ -125.616522812999932, 49.836163807000041 ], [ -125.616590915999907, 49.83641450700005 ], [ -125.617531514999968, 49.836564006000117 ], [ -125.617586407999966, 49.836814701000094 ], [ -125.618372086999955, 49.837210593000052 ], [ -125.618538486999938, 49.837432806000052 ], [ -125.618723001999925, 49.83751820600007 ], [ -125.619198189999963, 49.837552390000063 ], [ -125.61902399499999, 49.8379425870001 ], [ -125.619282088999938, 49.838351400000043 ], [ -125.618941498999959, 49.838475307000095 ], [ -125.61897611699996, 49.838582102000039 ], [ -125.619187410000023, 49.838640489000028 ], [ -125.619462689999921, 49.838589203000019 ], [ -125.619456894999956, 49.839022186000136 ], [ -125.619602889999967, 49.839144705000081 ], [ -125.619780699999978, 49.83906781300005 ], [ -125.619912308999957, 49.838678895000037 ], [ -125.620174183999922, 49.83861909900007 ], [ -125.620488992, 49.838810001000056 ], [ -125.620655893999952, 49.839066298000056 ], [ -125.620011098999939, 49.83922439100013 ], [ -125.619891, 49.839327008000041 ], [ -125.620060312, 49.839376799000064 ], [ -125.620586191999934, 49.839292788000051 ], [ -125.620795699999917, 49.839324097000038 ], [ -125.621116494999939, 49.839586199000038 ], [ -125.621572087999979, 49.84032250600012 ], [ -125.621664957999954, 49.840477861000068 ], [ -125.616251675999933, 49.840459010000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15386917", "BldgCostT": "10611667", "sL_LossRatio": "0.999716927075104", "sL_AssetLoss": "2868.16551", "sL_BldgLoss": "2867.35361", "sL_StrLoss": "2861.09751", "sL_NStrLoss": "6.2561", "sL_ContLoss": "0.8119", "geom_point": "0101000020E6100000AE1A191E9A695FC037F73EF25AF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.651605123999929, 49.896347304000052 ], [ -125.651611195999962, 49.895550095 ], [ -125.651447187999963, 49.895549573000054 ], [ -125.651451582999954, 49.894972720000077 ], [ -125.651437221999942, 49.894972675000091 ], [ -125.651438579999976, 49.894794383000082 ], [ -125.650676302999941, 49.894791955000095 ], [ -125.650679110999945, 49.894424310000069 ], [ -125.650441017999967, 49.894423550000063 ], [ -125.650445063999939, 49.89389407600008 ], [ -125.649963830999965, 49.893892539000021 ], [ -125.649967020999952, 49.893475622000089 ], [ -125.649783448999969, 49.893475036000069 ], [ -125.649784405999952, 49.89335016800009 ], [ -125.648955323999957, 49.893347515000073 ], [ -125.648957189999948, 49.893104609000019 ], [ -125.648463444999948, 49.893103026000063 ], [ -125.648442986999925, 49.895765056000123 ], [ -125.642876640999972, 49.895747054000061 ], [ -125.642904718999915, 49.892150400000105 ], [ -125.648212398999974, 49.892167572000041 ], [ -125.648226582999953, 49.890323062000078 ], [ -125.64814557699998, 49.8903228020001 ], [ -125.648147402999911, 49.890085524000014 ], [ -125.647826580999919, 49.890084493000046 ], [ -125.647852345999979, 49.886737278000062 ], [ -125.647854265999925, 49.886487809000108 ], [ -125.648690400999939, 49.88649049499999 ], [ -125.649399404999883, 49.886991010000038 ], [ -125.649705300999955, 49.887496598000027 ], [ -125.64993300699993, 49.887589196000071 ], [ -125.651184192999949, 49.888533409000082 ], [ -125.651155009999982, 49.888776898000081 ], [ -125.651617490999968, 49.888855299000028 ], [ -125.652081413999966, 49.889420698000087 ], [ -125.65290901899999, 49.890050197000058 ], [ -125.653007422999963, 49.8902994010001 ], [ -125.652847611999974, 49.890437601000045 ], [ -125.652965006999935, 49.890542986000114 ], [ -125.653787185999988, 49.890578603000087 ], [ -125.654195585999972, 49.890901908000025 ], [ -125.654334305999953, 49.890907606000027 ], [ -125.654683216999928, 49.890665400000067 ], [ -125.654744806999958, 49.890511595000085 ], [ -125.654641114999947, 49.890387707000052 ], [ -125.654852592999958, 49.890437591000058 ], [ -125.654821610999974, 49.89065400100008 ], [ -125.654571575999938, 49.890910393000127 ], [ -125.653939481999927, 49.891051401000055 ], [ -125.653944916999961, 49.891428803000068 ], [ -125.654613500999972, 49.891396092000036 ], [ -125.654829416999931, 49.891525693000091 ], [ -125.654811385999921, 49.891733600000109 ], [ -125.654505711999931, 49.891470098000084 ], [ -125.654233894, 49.891611116000057 ], [ -125.654241102999919, 49.892223497000074 ], [ -125.654518711999955, 49.89247699900011 ], [ -125.654675899999944, 49.892807509000065 ], [ -125.654351887999923, 49.893264610000138 ], [ -125.654831623999911, 49.894368402000083 ], [ -125.654717521999913, 49.894596305000029 ], [ -125.654851982999929, 49.895016399000014 ], [ -125.655143288999938, 49.8954679 ], [ -125.655121775999959, 49.895594595000063 ], [ -125.654879216999987, 49.895761303000086 ], [ -125.655241092999958, 49.895987706000028 ], [ -125.655017577999956, 49.89623549300012 ], [ -125.655052700999974, 49.896350886000107 ], [ -125.655447103999947, 49.896711188000047 ], [ -125.655437590999952, 49.897025999000071 ], [ -125.654687496999912, 49.897601286000103 ], [ -125.654433001999976, 49.898029997000094 ], [ -125.654604186999933, 49.898611101000022 ], [ -125.654313404999954, 49.899373090000054 ], [ -125.65427059299995, 49.899895687000033 ], [ -125.654278964999918, 49.899952497000108 ], [ -125.653855138, 49.899951159000082 ], [ -125.651458918999964, 49.899943562000061 ], [ -125.651486324999937, 49.896346926000014 ], [ -125.651605123999929, 49.896347304000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.999466059464744", "sL_AssetLoss": "702.3254", "sL_BldgLoss": "701.9504", "sL_StrLoss": "699.0354", "sL_NStrLoss": "2.915", "sL_ContLoss": "0.375", "geom_point": "0101000020E6100000362727C178655FC0D42AD935CAFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.584618598999967, 49.999002194000056 ], [ -125.585712193999953, 49.998338497000049 ], [ -125.585739396999941, 49.998292896000088 ], [ -125.585169590999939, 49.998080708000025 ], [ -125.584739207999945, 49.998126297000098 ], [ -125.583865781999918, 49.998757194000092 ], [ -125.583503624999977, 49.999278502000088 ], [ -125.582830691999973, 49.999820577000101 ], [ -125.582634059999918, 49.999829936 ], [ -125.582659742999965, 49.997021834000037 ], [ -125.582945840999969, 49.997022921000074 ], [ -125.582947944999944, 49.996792642000109 ], [ -125.58622307399996, 49.996805031000065 ], [ -125.58667051899999, 49.996806716000052 ], [ -125.587181806999979, 49.997378592000054 ], [ -125.58720569800002, 49.997384205000074 ], [ -125.587606181999959, 49.997478293000036 ], [ -125.587485214999958, 49.997831494000131 ], [ -125.587808798999944, 49.998372712000069 ], [ -125.588518705999931, 49.997687898000017 ], [ -125.58849912, 49.999859933000018 ], [ -125.584292069999918, 49.999802150000022 ], [ -125.583732292999969, 49.999794443000056 ], [ -125.583799636999942, 49.999718125000165 ], [ -125.584015413999978, 49.999473590000129 ], [ -125.584618598999967, 49.999002194000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995555246892145", "sL_AssetLoss": "287.98", "sL_BldgLoss": "286.7", "sL_StrLoss": "276", "sL_NStrLoss": "10.7", "sL_ContLoss": "1.28", "geom_point": "0101000020E61000005C6643C42E515FC0709ABA023CF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.26780914899993, 49.891524975000038 ], [ -125.269061155999964, 49.891500470000089 ], [ -125.269149693, 49.893387773000086 ], [ -125.267897636, 49.893412280000092 ], [ -125.26780914899993, 49.891524975000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "1.42", "sL_BldgLoss": "1.42", "sL_StrLoss": "1.42", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001CB34F745B695FC025061E6B08EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.645826753, 49.868127782000066 ], [ -125.64581201799993, 49.8678582430001 ], [ -125.645395003999951, 49.867867766000046 ], [ -125.645336082, 49.866789604000076 ], [ -125.646587093999955, 49.866761035000103 ], [ -125.646601829999938, 49.867030575000165 ], [ -125.646825865999958, 49.867025456000064 ], [ -125.647018837999966, 49.867021048000012 ], [ -125.647039872999983, 49.867405711000117 ], [ -125.647077797999941, 49.868099205000064 ], [ -125.645826753, 49.868127782000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.998725132165819", "sL_AssetLoss": "552.9985", "sL_BldgLoss": "552.2935", "sL_StrLoss": "547.3646", "sL_NStrLoss": "4.9289", "sL_ContLoss": "0.705", "geom_point": "0101000020E6100000F235570F10665FC0B2001A63AFC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.59100436599999, 49.576547303000105 ], [ -125.590990084999987, 49.576277738000066 ], [ -125.590575543999975, 49.576287023000084 ], [ -125.590532709999977, 49.575478327000077 ], [ -125.591361779999957, 49.575459755000033 ], [ -125.591347497999962, 49.575190189000097 ], [ -125.59300562699994, 49.575153028000095 ], [ -125.59299133399999, 49.57488346300012 ], [ -125.597551145999944, 49.574781147000088 ], [ -125.597565460999988, 49.575050711000117 ], [ -125.598809047999964, 49.575022774000061 ], [ -125.598852017999945, 49.575831466000075 ], [ -125.598437482999955, 49.57584078000005 ], [ -125.598451805, 49.576110343000053 ], [ -125.598037265999963, 49.576119656000088 ], [ -125.598051587000015, 49.576389219000127 ], [ -125.59639342199992, 49.576426454000064 ], [ -125.59637911099999, 49.576156890000092 ], [ -125.594306414999977, 49.5762033990001 ], [ -125.594320714000034, 49.576472964000033 ], [ -125.59100436599999, 49.576547303000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6996250", "BldgCostT": "4825000", "sL_LossRatio": "0.999156473439823", "sL_AssetLoss": "1017.5139", "sL_BldgLoss": "1016.6556", "sL_StrLoss": "1006.3876", "sL_NStrLoss": "10.268", "sL_ContLoss": "0.8583", "geom_point": "0101000020E610000068BC8475E95A5FC0BFAB717839FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.418540585999907, 49.988340593000018 ], [ -125.418542558999889, 49.988185733000122 ], [ -125.418098878999942, 49.988183382000038 ], [ -125.418100174999893, 49.988081644000026 ], [ -125.416781733999969, 49.988074649000055 ], [ -125.416783557999963, 49.987931926000066 ], [ -125.41633402699992, 49.987929537000035 ], [ -125.41633687800001, 49.987706498000087 ], [ -125.415853220999978, 49.987703925000041 ], [ -125.415855011999938, 49.987564076000083 ], [ -125.415486915, 49.987562118000078 ], [ -125.415491403999951, 49.987211602000109 ], [ -125.415532964999954, 49.98396598900009 ], [ -125.416489184999961, 49.983971075000085 ], [ -125.421109948999984, 49.983995537000048 ], [ -125.421108175999947, 49.984135388000055 ], [ -125.421476243999933, 49.984137328000102 ], [ -125.421475419999965, 49.984202346000117 ], [ -125.425565589999977, 49.98422382399999 ], [ -125.425551303999939, 49.985358995000105 ], [ -125.425550813, 49.985398091000015 ], [ -125.425520331999934, 49.987819956000088 ], [ -125.424866148999968, 49.987816531000064 ], [ -125.424865009999948, 49.987906871000071 ], [ -125.424322907999965, 49.987904030000081 ], [ -125.424321992999978, 49.987976585000069 ], [ -125.424123083999973, 49.987975542000079 ], [ -125.424118107999945, 49.988369989000049 ], [ -125.418540585999907, 49.988340593000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29686333", "BldgCostT": "20473333", "sL_LossRatio": "0.994150024853074", "sL_AssetLoss": "13680.4", "sL_BldgLoss": "13600.37", "sL_StrLoss": "12868.17", "sL_NStrLoss": "732.2", "sL_ContLoss": "80.03", "geom_point": "0101000020E61000001FD21C171D4C5FC0A0190624C8F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.184845073999895, 49.915853550000072 ], [ -125.184700747999955, 49.915217754000047 ], [ -125.184539096999984, 49.914679722000088 ], [ -125.184207525999952, 49.913989349000154 ], [ -125.183903879999903, 49.913606715000078 ], [ -125.180820289999957, 49.911263731000098 ], [ -125.179577329999987, 49.910319271000056 ], [ -125.179726354999943, 49.910237644000048 ], [ -125.180748413999964, 49.909680584000128 ], [ -125.180876443, 49.909597798000107 ], [ -125.181208966, 49.909382805000043 ], [ -125.181432934999961, 49.90910322700006 ], [ -125.181459586999964, 49.909069949000063 ], [ -125.181706406999965, 49.908424355000079 ], [ -125.181847587999982, 49.908312993000081 ], [ -125.18206981899999, 49.908186968000017 ], [ -125.183682228999942, 49.907673271000135 ], [ -125.183681520000036, 49.907712974000027 ], [ -125.183743505999985, 49.907711805000119 ], [ -125.183753125999942, 49.907924799000043 ], [ -125.184294192, 49.907928827000056 ], [ -125.184288617999954, 49.908241254000139 ], [ -125.185020373999976, 49.908227461000138 ], [ -125.185044746999921, 49.908766720000074 ], [ -125.186297270999916, 49.908743103000091 ], [ -125.186358241999926, 49.9100912480001 ], [ -125.187193278999956, 49.910075496000033 ], [ -125.187095691999957, 49.907918464000055 ], [ -125.187513189999933, 49.907910585000138 ], [ -125.187512746999971, 49.907900780000055 ], [ -125.184605525000023, 49.907879186000116 ], [ -125.184613613999943, 49.907425551000053 ], [ -125.184450066999929, 49.907428633000031 ], [ -125.185462047000016, 49.907106198000058 ], [ -125.186275219999942, 49.906937787000103 ], [ -125.188160435999976, 49.906758449000051 ], [ -125.189624906999967, 49.906599277000083 ], [ -125.193931585999977, 49.90613650200001 ], [ -125.194810201999985, 49.906044108000067 ], [ -125.196429512999913, 49.905781720000057 ], [ -125.197922623999972, 49.905336724000058 ], [ -125.199492607999943, 49.90486788100003 ], [ -125.199510209999957, 49.905254818000053 ], [ -125.199092736999958, 49.905262740000047 ], [ -125.199104998999928, 49.905532366000081 ], [ -125.19827004699998, 49.905548205000031 ], [ -125.198282305999939, 49.905817832000082 ], [ -125.197864827999965, 49.905825748000055 ], [ -125.197877084999945, 49.906095376000067 ], [ -125.198294564999912, 49.906087459000076 ], [ -125.19831908399999, 49.906626713000023 ], [ -125.198736571000012, 49.906618795000078 ], [ -125.198761095999913, 49.907158048000063 ], [ -125.199178585999931, 49.907150128000133 ], [ -125.199215380999973, 49.907959009000074 ], [ -125.198380387000029, 49.907974849 ], [ -125.19839264699999, 49.908244476000064 ], [ -125.197142092, 49.908268187000083 ], [ -125.197140354999988, 49.908367095000045 ], [ -125.196970505999943, 49.908365850000116 ], [ -125.192128641999943, 49.908330264000035 ], [ -125.192130129999953, 49.908363081000104 ], [ -125.192965134999966, 49.908347286 ], [ -125.193050752999952, 49.910234682000102 ], [ -125.192633234999974, 49.910242580000038 ], [ -125.192645464999913, 49.910512209000025 ], [ -125.191810423999982, 49.910528001000046 ], [ -125.191822649, 49.910797630000069 ], [ -125.193075219, 49.910773938000048 ], [ -125.19316084899999, 49.912661333000052 ], [ -125.191908230999928, 49.91268502500003 ], [ -125.191896004999975, 49.912415398000057 ], [ -125.191478465999921, 49.912423293000089 ], [ -125.191527364999928, 49.913501805000131 ], [ -125.193615097999952, 49.913462315000096 ], [ -125.193651806999952, 49.914271198000115 ], [ -125.191981593999955, 49.914302794000044 ], [ -125.191986964999927, 49.914421215000161 ], [ -125.192383178999989, 49.91442413500009 ], [ -125.192368359999961, 49.915263051000039 ], [ -125.195458244999941, 49.91528577600009 ], [ -125.195741000999945, 49.915287851000109 ], [ -125.195740705999981, 49.915304595000045 ], [ -125.197366139999986, 49.915316510000153 ], [ -125.197365376999969, 49.915359955000014 ], [ -125.197985517999939, 49.915364494000094 ], [ -125.19798541199999, 49.915370527000071 ], [ -125.195442068999967, 49.915359785000128 ], [ -125.195713314, 49.916431207000059 ], [ -125.195713140999914, 49.916703287000118 ], [ -125.195712694999969, 49.917648705000012 ], [ -125.195203674999973, 49.918940922000033 ], [ -125.193943488999963, 49.918931663000066 ], [ -125.193940622999904, 49.91909417100004 ], [ -125.192945596999948, 49.919019486000067 ], [ -125.191476245999965, 49.918994489000042 ], [ -125.191225295999985, 49.918990224000019 ], [ -125.190513810999931, 49.918978102000075 ], [ -125.190499775999939, 49.918977771000066 ], [ -125.188874206999969, 49.918939894000076 ], [ -125.187238899999926, 49.918900892000124 ], [ -125.185557159999973, 49.918863347000091 ], [ -125.185366811999984, 49.91885908800009 ], [ -125.18526427799999, 49.917737894 ], [ -125.184999261999948, 49.916539635000078 ], [ -125.184939583999949, 49.916269784000058 ], [ -125.184845073999895, 49.915853550000072 ] ], [ [ -125.191454017999902, 49.911884036000053 ], [ -125.191441794999946, 49.911614408000077 ], [ -125.191024263999935, 49.911622300000055 ], [ -125.191036484999984, 49.911891930000074 ], [ -125.191454017999902, 49.911884036000053 ] ], [ [ -125.190914279999959, 49.9091956460001 ], [ -125.190865403999965, 49.90811713300009 ], [ -125.191576700999974, 49.908103687000057 ], [ -125.191595790999955, 49.90702388700003 ], [ -125.190399037999967, 49.90704651 ], [ -125.19043568499994, 49.907855394000151 ], [ -125.19017411599999, 49.90786033800007 ], [ -125.190173050999988, 49.907920471000168 ], [ -125.189184732999976, 49.907913163000011 ], [ -125.189268659999982, 49.90976645700006 ], [ -125.190103688999926, 49.909750683000063 ], [ -125.190079259999948, 49.909211426000113 ], [ -125.190914279999959, 49.9091956460001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.997648251130399", "sL_AssetLoss": "461.784", "sL_BldgLoss": "460.698", "sL_StrLoss": "450.168", "sL_NStrLoss": "10.53", "sL_ContLoss": "1.086", "geom_point": "0101000020E61000004A3282F806685FC0659A3CA751EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.62550090699996, 49.832089771000078 ], [ -125.625489935999965, 49.831887259000034 ], [ -125.62507322499998, 49.831896705000084 ], [ -125.625058625999955, 49.831627158000046 ], [ -125.624619749999979, 49.831637103000091 ], [ -125.624204709999958, 49.831267475000082 ], [ -125.624196018999939, 49.831106949000088 ], [ -125.623918276999973, 49.831113242000079 ], [ -125.623355444999959, 49.83099348000006 ], [ -125.623304251999969, 49.830047642000068 ], [ -125.623720946999924, 49.830038204000076 ], [ -125.623706355999971, 49.829768657000123 ], [ -125.624123048999977, 49.829759219000096 ], [ -125.624108456, 49.829489672000122 ], [ -125.624525147999961, 49.829480231000055 ], [ -125.624510553, 49.829210686000032 ], [ -125.626177303999924, 49.829172908000054 ], [ -125.626191907999967, 49.829442454000045 ], [ -125.626608597999947, 49.829433006000073 ], [ -125.62663781199997, 49.829972098000077 ], [ -125.62705450699994, 49.829962648000063 ], [ -125.627156778999947, 49.831849468000058 ], [ -125.626740067999989, 49.831858917000076 ], [ -125.626754678999959, 49.832128463000046 ], [ -125.62568003399997, 49.832152828000069 ], [ -125.62550090699996, 49.832089771000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996101364522417", "sL_AssetLoss": "307.8", "sL_BldgLoss": "306.6", "sL_StrLoss": "296", "sL_NStrLoss": "10.6", "sL_ContLoss": "1.2", "geom_point": "0101000020E61000000B1A44B512515FC0850FA121CEF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.265949818, 49.896418863000044 ], [ -125.267619329999889, 49.896386211000042 ], [ -125.267657254999975, 49.897195056000051 ], [ -125.267239870999987, 49.897203222 ], [ -125.267252510999967, 49.897472836000112 ], [ -125.26600034799999, 49.89749732500016 ], [ -125.265949818, 49.896418863000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.990504747626187", "sL_AssetLoss": "400.2", "sL_BldgLoss": "396.4", "sL_StrLoss": "368", "sL_NStrLoss": "28.4", "sL_ContLoss": "3.8", "geom_point": "0101000020E610000040815E55C9455FC00FE235753FE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09110288699999, 49.752720804000035 ], [ -125.090105186999935, 49.752450210000106 ], [ -125.088776613, 49.75254699300006 ], [ -125.088412195999936, 49.752471591000109 ], [ -125.088166907999948, 49.752242285000058 ], [ -125.088042214999945, 49.751911794000115 ], [ -125.088053397999929, 49.751561512000137 ], [ -125.088224470999947, 49.751195225000068 ], [ -125.089286153999964, 49.751204085000019 ], [ -125.089282487999981, 49.751388765000051 ], [ -125.092973722999957, 49.751419490000082 ], [ -125.092963281999985, 49.751947788000038 ], [ -125.092027311999956, 49.752578400000104 ], [ -125.091547416999944, 49.752739296000136 ], [ -125.09110288699999, 49.752720804000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12439750", "BldgCostT": "7105000", "sL_LossRatio": "0.997433245493843", "sL_AssetLoss": "884.1126", "sL_BldgLoss": "881.8433", "sL_StrLoss": "866.1233", "sL_NStrLoss": "15.72", "sL_ContLoss": "2.2693", "geom_point": "0101000020E61000003F12A3A57A535FC0A4D9C046A7DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.303095955999979, 49.74379035200009 ], [ -125.307669941999904, 49.7438194550001 ], [ -125.307623511999978, 49.746897560000065 ], [ -125.30761568, 49.74741672300005 ], [ -125.30665095399992, 49.747410601000105 ], [ -125.30659974299999, 49.750800440000091 ], [ -125.301051179999931, 49.750765063000067 ], [ -125.301105959999987, 49.74716781500004 ], [ -125.302070679999986, 49.747173986000107 ], [ -125.302122221999923, 49.743784132000073 ], [ -125.303095955999979, 49.74379035200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999269192088501", "sL_AssetLoss": "596.6", "sL_BldgLoss": "596.164", "sL_StrLoss": "594", "sL_NStrLoss": "2.164", "sL_ContLoss": "0.436", "geom_point": "0101000020E610000049520C6F5A535FC0E9B6442EB8E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.299647051999955, 49.76161691500009 ], [ -125.30519692499999, 49.761652363000088 ], [ -125.305142448999945, 49.765249540000127 ], [ -125.29959214099992, 49.765214090000022 ], [ -125.299647051999955, 49.76161691500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12983783", "BldgCostT": "8115546", "sL_LossRatio": "0.798676512125247", "sL_AssetLoss": "6195.75", "sL_BldgLoss": "4948.4", "sL_StrLoss": "4110.51", "sL_NStrLoss": "837.89", "sL_ContLoss": "1247.35", "geom_point": "0101000020E6100000B7E24D4460465FC0C2E050AE5FE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.094749855999964, 49.76701017800012 ], [ -125.100043392999964, 49.764122308000069 ], [ -125.100035297, 49.763263308000063 ], [ -125.097163131999977, 49.760955033000101 ], [ -125.096976586999972, 49.760805106000127 ], [ -125.096442874999937, 49.760347615000086 ], [ -125.094823647999988, 49.758959562000044 ], [ -125.096421871999951, 49.758972798000094 ], [ -125.096458978, 49.757088499000076 ], [ -125.098481204999956, 49.757105212000077 ], [ -125.098515332999938, 49.75536808600004 ], [ -125.0969445899999, 49.755355107000085 ], [ -125.096982080999922, 49.753449912000058 ], [ -125.097390207999965, 49.75365079600008 ], [ -125.097986897999945, 49.753647991 ], [ -125.098358713999971, 49.753542601000149 ], [ -125.099860812999935, 49.75266100200006 ], [ -125.100504586999975, 49.752443099000054 ], [ -125.10086681599995, 49.752463004000106 ], [ -125.101218684999964, 49.75260970100004 ], [ -125.10138179099999, 49.752849005000051 ], [ -125.10145121599993, 49.755384103000019 ], [ -125.101707614999953, 49.755865500000077 ], [ -125.102253583, 49.755999303000102 ], [ -125.103892311999971, 49.755664597000099 ], [ -125.105390908999951, 49.755681895000038 ], [ -125.105989490999931, 49.755688798000037 ], [ -125.10664200299999, 49.755992208000109 ], [ -125.107294586999913, 49.756654494000038 ], [ -125.108337644999949, 49.757368249000073 ], [ -125.104200448999975, 49.757334390000082 ], [ -125.104206219999952, 49.757038798000025 ], [ -125.104032572000037, 49.757037373000109 ], [ -125.104017231999975, 49.757823012000138 ], [ -125.10199497, 49.757806401000082 ], [ -125.101989189999955, 49.758101702 ], [ -125.105778608999941, 49.758032862000036 ], [ -125.105801707, 49.758566008000102 ], [ -125.105813656999942, 49.758841814000057 ], [ -125.105397414999914, 49.758849382000101 ], [ -125.105409096999892, 49.759119032000029 ], [ -125.101968056999922, 49.75918153700011 ], [ -125.101937723999967, 49.760731356000107 ], [ -125.101744685999932, 49.760729768 ], [ -125.101715532999918, 49.762218800000056 ], [ -125.101884340999959, 49.762220188000065 ], [ -125.101859261999948, 49.763501314000081 ], [ -125.103098326999913, 49.763478820000053 ], [ -125.103109996999962, 49.763748470000053 ], [ -125.103942561999958, 49.76373334900012 ], [ -125.103962397999979, 49.764191437000065 ], [ -125.103977587999964, 49.764542301000105 ], [ -125.101896135999979, 49.764580094000081 ], [ -125.1019078, 49.764849745000021 ], [ -125.10232409299999, 49.76484219000011 ], [ -125.102335758999942, 49.765111840000088 ], [ -125.102752054999982, 49.765104282000074 ], [ -125.102763722999939, 49.765373933000056 ], [ -125.103180020999972, 49.765366374000067 ], [ -125.103215033999973, 49.766175327000077 ], [ -125.102382424999973, 49.766190443000035 ], [ -125.102405757999946, 49.76672974500007 ], [ -125.101672207999954, 49.766743058000088 ], [ -125.10115683, 49.766752409000055 ], [ -125.101145169999967, 49.766482758000102 ], [ -125.100728862999929, 49.766490310000059 ], [ -125.100699368999955, 49.765808075000102 ], [ -125.097362101, 49.765780547000091 ], [ -125.097315681999959, 49.768139653000055 ], [ -125.097126961999891, 49.76813809300009 ], [ -125.097092377999928, 49.769895254000097 ], [ -125.093285846999947, 49.76986372400011 ], [ -125.093268976999966, 49.770717248000025 ], [ -125.093115654999949, 49.77071597500008 ], [ -125.091341378999942, 49.768869313000096 ], [ -125.092129863999972, 49.768439247000046 ], [ -125.094749855999964, 49.76701017800012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.993414807783578", "sL_AssetLoss": "1348.48", "sL_BldgLoss": "1339.6", "sL_StrLoss": "1286", "sL_NStrLoss": "53.6", "sL_ContLoss": "8.88", "geom_point": "0101000020E61000001BBE64677A4E5FC00596AF0D0DE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.226331235999922, 49.787662926000031 ], [ -125.22902777199999, 49.787681983000013 ], [ -125.228967289999929, 49.791278990000144 ], [ -125.223413893, 49.791239670000095 ], [ -125.22344019499999, 49.789686666000087 ], [ -125.223474810999917, 49.78764266600006 ], [ -125.225174731999957, 49.787654733000068 ], [ -125.226331235999922, 49.787662926000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7682303", "BldgCostT": "4483746", "sL_LossRatio": "0.948908052468312", "sL_AssetLoss": "2859.707", "sL_BldgLoss": "2713.599", "sL_StrLoss": "2297.399", "sL_NStrLoss": "416.2", "sL_ContLoss": "146.108", "geom_point": "0101000020E6100000AD0E6F8C93445FC076A75C5DA5DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.076898998999937, 49.749291010000057 ], [ -125.076390400999969, 49.749128400000089 ], [ -125.075272505999948, 49.748836617000052 ], [ -125.074969283999962, 49.748771542000057 ], [ -125.074898375999936, 49.7487563070001 ], [ -125.061484012999969, 49.745876698000139 ], [ -125.063170830999979, 49.744991703000053 ], [ -125.063282617999974, 49.74488389400004 ], [ -125.06328527699999, 49.744752593000072 ], [ -125.062272817999926, 49.743226454000066 ], [ -125.072287887999892, 49.74601354400005 ], [ -125.072312593999968, 49.746051200000075 ], [ -125.072924900999908, 49.746427202000135 ], [ -125.076387491999967, 49.747237599000066 ], [ -125.076615806999953, 49.747350090000019 ], [ -125.077864322999943, 49.747975300000043 ], [ -125.078321980999988, 49.748002400000125 ], [ -125.078733712999963, 49.747932023000018 ], [ -125.078708314, 49.749197318 ], [ -125.080805858999938, 49.749214997000095 ], [ -125.080745759999985, 49.752215495000094 ], [ -125.080613371999974, 49.752258568000059 ], [ -125.080208003999985, 49.75239050800009 ], [ -125.079975098999938, 49.752449700000042 ], [ -125.079782470999959, 49.752442310000077 ], [ -125.079735298999978, 49.752440488000055 ], [ -125.079574098999956, 49.752379798000042 ], [ -125.07922535599999, 49.751900874000043 ], [ -125.079180247999929, 49.751838928000019 ], [ -125.077693405999938, 49.749796895000067 ], [ -125.077431590999979, 49.749569890000082 ], [ -125.077420541999984, 49.749564111000026 ], [ -125.076898998999937, 49.749291010000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.995982037343418", "sL_AssetLoss": "296.17", "sL_BldgLoss": "294.98", "sL_StrLoss": "285", "sL_NStrLoss": "9.98", "sL_ContLoss": "1.19", "geom_point": "0101000020E61000005133626E90465FC0F1285B457BE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.10215277599994, 49.770512409000041 ], [ -125.102117774999968, 49.769703458000016 ], [ -125.1017014399999, 49.769711014000073 ], [ -125.1016431199999, 49.768362760000059 ], [ -125.101987041999962, 49.768356520000076 ], [ -125.102892088999951, 49.768340090000073 ], [ -125.102903759999961, 49.768609741000063 ], [ -125.103320084999922, 49.768602181000077 ], [ -125.103401801999979, 49.770489733000026 ], [ -125.102406839999944, 49.770507799000072 ], [ -125.10215277599994, 49.770512409000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22073296", "BldgCostT": "13432821", "sL_LossRatio": "0.951387769433078", "sL_AssetLoss": "9056.98", "sL_BldgLoss": "8616.7", "sL_StrLoss": "7491.3", "sL_NStrLoss": "1125.4", "sL_ContLoss": "440.28", "geom_point": "0101000020E6100000970786FFB6465FC088C5C1080EE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.106319398999958, 49.755574902000106 ], [ -125.10538468699994, 49.755510788000052 ], [ -125.105383036, 49.755510829000059 ], [ -125.10397089199995, 49.755546415000012 ], [ -125.102274188999971, 49.755809912000068 ], [ -125.10188110199999, 49.755700199 ], [ -125.101617289000018, 49.755399702000027 ], [ -125.10155359499997, 49.753592409000071 ], [ -125.101646301999949, 49.752836194000082 ], [ -125.101537612999934, 49.75259400400008 ], [ -125.101309893999911, 49.752445904000076 ], [ -125.10081607499994, 49.752292094000069 ], [ -125.100219505999974, 49.752303499000043 ], [ -125.099472103999943, 49.752649603000066 ], [ -125.09855638, 49.753296198000037 ], [ -125.097688605999934, 49.753465690000077 ], [ -125.097256505999965, 49.753418684000088 ], [ -125.097082383999989, 49.753277694000104 ], [ -125.096988378999967, 49.753129856000058 ], [ -125.097015372999934, 49.751758 ], [ -125.097429579999982, 49.751761425000055 ], [ -125.097434772, 49.751497409000081 ], [ -125.099347118999958, 49.751513201000058 ], [ -125.099363234999913, 49.750692006000087 ], [ -125.09787781299994, 49.750679743000077 ], [ -125.097948515999974, 49.747082612 ], [ -125.099675939999983, 49.747096870000064 ], [ -125.099705936, 49.745567652000069 ], [ -125.102053516999931, 49.745586986000042 ], [ -125.102059861999933, 49.745262710000077 ], [ -125.102855894999891, 49.745269254000029 ], [ -125.104429322999962, 49.745282172000067 ], [ -125.104437389999987, 49.744868769000092 ], [ -125.109985066999954, 49.744914136000048 ], [ -125.109954196999951, 49.74650613700004 ], [ -125.111141619999913, 49.746515811000101 ], [ -125.111071952999964, 49.750112954000031 ], [ -125.110848113999964, 49.75011113100004 ], [ -125.110833986999921, 49.750840259000071 ], [ -125.107010960999986, 49.750809059000034 ], [ -125.106983515999971, 49.752219451000023 ], [ -125.10696037699995, 49.752219262000068 ], [ -125.10695995899999, 49.752240707000084 ], [ -125.107194723999925, 49.752242627000015 ], [ -125.10717402899999, 49.753306346000059 ], [ -125.111424826999951, 49.753341020000065 ], [ -125.111355170999971, 49.756938130000044 ], [ -125.109758454999906, 49.756925124000119 ], [ -125.10974963399994, 49.757379769000089 ], [ -125.108856069999945, 49.75737248100009 ], [ -125.108560808, 49.757315283000075 ], [ -125.108234502999977, 49.757187112000061 ], [ -125.107775904999954, 49.75686241000006 ], [ -125.106860293999915, 49.755889699000086 ], [ -125.106319398999958, 49.755574902000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.991311118289723", "sL_AssetLoss": "1207.29", "sL_BldgLoss": "1196.8", "sL_StrLoss": "1118", "sL_NStrLoss": "78.8", "sL_ContLoss": "10.49", "geom_point": "0101000020E610000083E2436097475FC024ACF84C17DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.117056073999947, 49.730031286000013 ], [ -125.117044340999954, 49.729761636000099 ], [ -125.116628351999907, 49.729769241000085 ], [ -125.11654624, 49.727881692000054 ], [ -125.116962213999955, 49.727874087000011 ], [ -125.116927017999942, 49.727065137000061 ], [ -125.116511050999961, 49.727072741000029 ], [ -125.116495527999973, 49.726715869000053 ], [ -125.116798510999971, 49.726439406000054 ], [ -125.116872713999967, 49.726361862000047 ], [ -125.117101197999958, 49.726122990000093 ], [ -125.117226505, 49.725980204000031 ], [ -125.117296050999983, 49.725978932000096 ], [ -125.117292816999949, 49.725904639000113 ], [ -125.117404490999959, 49.725777389000051 ], [ -125.117686704999983, 49.725455801000109 ], [ -125.118650698999929, 49.724135084000096 ], [ -125.118681758999941, 49.724064533000053 ], [ -125.119709564999965, 49.724045721000046 ], [ -125.119733056999934, 49.724585021000138 ], [ -125.120149, 49.724577405000034 ], [ -125.120172497999945, 49.725116704000044 ], [ -125.120588443999921, 49.725109087000106 ], [ -125.12065895399995, 49.726726984000038 ], [ -125.120572889999906, 49.726728559000051 ], [ -125.120242990999913, 49.726734601000054 ], [ -125.120313492999969, 49.728352497000095 ], [ -125.119897515999938, 49.728360113000114 ], [ -125.11995626099997, 49.729708360000082 ], [ -125.119540273, 49.729715976000058 ], [ -125.119552019999958, 49.729985626000058 ], [ -125.117056073999947, 49.730031286000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14288500", "BldgCostT": "8380000", "sL_LossRatio": "0.968739567814809", "sL_AssetLoss": "4014.02", "sL_BldgLoss": "3888.54", "sL_StrLoss": "3295.04", "sL_NStrLoss": "593.5", "sL_ContLoss": "125.48", "geom_point": "0101000020E610000040817F63B2465FC049A6BF6E43E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.10437056799995, 49.77835974200007 ], [ -125.104413716999915, 49.77615 ], [ -125.103505272999925, 49.776142550000031 ], [ -125.103476890999914, 49.777594575000066 ], [ -125.101929930999958, 49.777581869000109 ], [ -125.100970014999973, 49.777031801000078 ], [ -125.100803397000021, 49.776822707000051 ], [ -125.100786710999955, 49.776767445000139 ], [ -125.100640511999984, 49.776282599000069 ], [ -125.100504198999971, 49.776151099000117 ], [ -125.100080790999939, 49.77601089400013 ], [ -125.09995349899999, 49.775921696000033 ], [ -125.09943828199998, 49.775295990000089 ], [ -125.099231899999893, 49.775203494000024 ], [ -125.09899552, 49.775225793000061 ], [ -125.097962291999963, 49.77566634800008 ], [ -125.097996008999942, 49.773951881000102 ], [ -125.101346512999939, 49.773979494000052 ], [ -125.101374959999944, 49.772527463000095 ], [ -125.103157846999949, 49.772542114000046 ], [ -125.106925977999964, 49.772572984000149 ], [ -125.106882953999957, 49.774782736000098 ], [ -125.109992096999989, 49.774808111000084 ], [ -125.109928665000012, 49.778076921000029 ], [ -125.109922296, 49.778405110000023 ], [ -125.10437056799995, 49.77835974200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993560257589696", "sL_AssetLoss": "336.97", "sL_BldgLoss": "334.8", "sL_StrLoss": "317", "sL_NStrLoss": "17.8", "sL_ContLoss": "2.17", "geom_point": "0101000020E61000000B39BE0FEA4D5FC007BEBBF84FE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.216451244999973, 49.800765234 ], [ -125.216438928999978, 49.80049560500003 ], [ -125.216022362999979, 49.800503575000079 ], [ -125.215973113999937, 49.799425059000022 ], [ -125.21638967299999, 49.799417089000038 ], [ -125.216365045999936, 49.798877831000048 ], [ -125.216781599999976, 49.798869860000082 ], [ -125.216756969, 49.798330603000103 ], [ -125.217173517999939, 49.798322631000097 ], [ -125.217148882999979, 49.797783373000087 ], [ -125.218815056, 49.797751469000062 ], [ -125.218852036, 49.798560355000092 ], [ -125.218018935999908, 49.79857631000008 ], [ -125.218043582999911, 49.799115567000115 ], [ -125.218460135999948, 49.799107590000027 ], [ -125.218509438999959, 49.800186104000034 ], [ -125.21809287399999, 49.800194081000022 ], [ -125.218105198000018, 49.800463710000088 ], [ -125.217688629999913, 49.800471686000058 ], [ -125.21770095199993, 49.80074131400012 ], [ -125.216451244999973, 49.800765234 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994965156213531", "sL_AssetLoss": "299.91", "sL_BldgLoss": "298.4", "sL_StrLoss": "286", "sL_NStrLoss": "12.4", "sL_ContLoss": "1.51", "geom_point": "0101000020E610000088E13CFFEA515FC0FDB47A1CC0F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.280858602999942, 49.879888500000064 ], [ -125.28106450199995, 49.879848584000065 ], [ -125.281130212999969, 49.879863416000092 ], [ -125.281104176999989, 49.881520552000055 ], [ -125.278373411999937, 49.88150259300005 ], [ -125.278568109999952, 49.880949490000042 ], [ -125.278831093999926, 49.880593403 ], [ -125.279579810999905, 49.880255896000051 ], [ -125.280573623999913, 49.880083602000092 ], [ -125.280858602999942, 49.879888500000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112335000", "BldgCostT": "77550000", "sL_LossRatio": "0.900054551632177", "sL_AssetLoss": "38202.34", "sL_BldgLoss": "34384.19", "sL_StrLoss": "25760.95", "sL_NStrLoss": "8623.24", "sL_ContLoss": "3818.15", "geom_point": "0101000020E61000007140B73C3B445FC0604436EBE7DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.076887098000029, 49.747200588000105 ], [ -125.072846501999962, 49.746203601000012 ], [ -125.072632099999979, 49.746072607 ], [ -125.072496506999983, 49.745831902000077 ], [ -125.072531489999932, 49.745371908000081 ], [ -125.072866392999956, 49.745097584000042 ], [ -125.075053429999912, 49.745116136000057 ], [ -125.075030296999984, 49.746264052000093 ], [ -125.077218162999941, 49.746282566000055 ], [ -125.077225881999979, 49.745898643000032 ], [ -125.075504539999926, 49.745884080000117 ], [ -125.075526758999942, 49.744780955000067 ], [ -125.075115493999959, 49.744777472000067 ], [ -125.075157613, 49.742687073000077 ], [ -125.072882331999935, 49.742667773000065 ], [ -125.072859293999954, 49.742623091000105 ], [ -125.07264429599995, 49.742455090000057 ], [ -125.072186489, 49.742321444000055 ], [ -125.07221915199996, 49.740705430000098 ], [ -125.070577666999952, 49.740691466000023 ], [ -125.07061022699996, 49.739083332000121 ], [ -125.068308678999983, 49.739063711000036 ], [ -125.068329207999966, 49.738052159000105 ], [ -125.068882302999981, 49.737575810000116 ], [ -125.068969824999925, 49.736989004000051 ], [ -125.068592774999971, 49.736627194000064 ], [ -125.068057499999924, 49.736456287000031 ], [ -125.067351592999927, 49.736479092000067 ], [ -125.065320165999935, 49.736869616000021 ], [ -125.065336681999938, 49.73605844000005 ], [ -125.063554037999964, 49.736043161000069 ], [ -125.063520323999938, 49.737695878000117 ], [ -125.061056885999932, 49.737674715000054 ], [ -125.061050220999931, 49.738000557000056 ], [ -125.063013460999912, 49.738017428000092 ], [ -125.06300987899999, 49.738192958000077 ], [ -125.062041205999932, 49.738578397 ], [ -125.061292605999967, 49.738619700000143 ], [ -125.060145580999958, 49.738370494000037 ], [ -125.059449108999985, 49.738012982 ], [ -125.059205307999918, 49.737495984000091 ], [ -125.05922539699999, 49.737325094 ], [ -125.059870998999941, 49.736503290000059 ], [ -125.05986739799999, 49.736054714000076 ], [ -125.059626517999916, 49.735608903000092 ], [ -125.05900051699993, 49.735268500000096 ], [ -125.058324404999951, 49.735037788000049 ], [ -125.058027194999951, 49.735034606000077 ], [ -125.058047375999976, 49.73405097800002 ], [ -125.061720089999966, 49.734082613000069 ], [ -125.061759741999936, 49.732142365000065 ], [ -125.06239385, 49.73214781500004 ], [ -125.062394117999986, 49.732134681000076 ], [ -125.062459236, 49.732135241000051 ], [ -125.062468643000017, 49.731674582000061 ], [ -125.06801468299993, 49.731722083000058 ], [ -125.067999229999913, 49.732483398000056 ], [ -125.06833641599998, 49.732486277000049 ], [ -125.068317787999916, 49.733404281000034 ], [ -125.070050466999973, 49.733419058000138 ], [ -125.070056422, 49.733125106000081 ], [ -125.068722959999945, 49.733113737000025 ], [ -125.068765382999942, 49.731022198000119 ], [ -125.067548941999974, 49.731011812000091 ], [ -125.06755878199999, 49.730527311000088 ], [ -125.062571381999931, 49.730484585000035 ], [ -125.062602264999967, 49.728971886000124 ], [ -125.060677901999924, 49.728955340000049 ], [ -125.060709857999981, 49.727393209000077 ], [ -125.058572318999921, 49.72737479000007 ], [ -125.058584336999957, 49.726788513000059 ], [ -125.058381524999959, 49.726786763000078 ], [ -125.058369704, 49.727363234000073 ], [ -125.055790970999936, 49.727340952000148 ], [ -125.055718309000014, 49.730874291000106 ], [ -125.053114580999988, 49.730851732000048 ], [ -125.053112808999984, 49.730937657000126 ], [ -125.047566877999927, 49.730889398000052 ], [ -125.047599982999941, 49.729293498000089 ], [ -125.04533849299996, 49.72927373900005 ], [ -125.045294098999975, 49.729234341000129 ], [ -125.04536807799991, 49.725676138000097 ], [ -125.04748800099999, 49.725694663000048 ], [ -125.047511222999944, 49.724575124000069 ], [ -125.04445844699994, 49.724548434000106 ], [ -125.044469125999953, 49.724035208000068 ], [ -125.04370515, 49.724028516000018 ], [ -125.043718676000012, 49.723378917000041 ], [ -125.042906457999948, 49.72337179700002 ], [ -125.04293743699999, 49.721885392000019 ], [ -125.041144981999977, 49.721869655000098 ], [ -125.041162118000031, 49.721048893000109 ], [ -125.038229420999954, 49.721023082000038 ], [ -125.038236560999948, 49.720682130000085 ], [ -125.037833026999976, 49.720678572000047 ], [ -125.037839788999989, 49.720355791000031 ], [ -125.034713688999972, 49.72032817900007 ], [ -125.034676649999966, 49.722090341000133 ], [ -125.033395136999928, 49.722078996000107 ], [ -125.033387619, 49.722436172000101 ], [ -125.032518599999932, 49.72242847100005 ], [ -125.032517487999925, 49.722481294000055 ], [ -125.03162495199993, 49.722473377 ], [ -125.031600019999985, 49.723655614000059 ], [ -125.026389106999915, 49.723609243000084 ], [ -125.026098955999927, 49.723203963000074 ], [ -125.029444000999916, 49.722321958000101 ], [ -125.029482528999921, 49.722350861000045 ], [ -125.029657416999925, 49.722499022000058 ], [ -125.029742988999899, 49.722541717000091 ], [ -125.029855680999958, 49.722574788000067 ], [ -125.029952485999942, 49.722609111000075 ], [ -125.033204858999966, 49.720857600000102 ], [ -125.036326092999943, 49.719176514000111 ], [ -125.037798469999984, 49.718370050000019 ], [ -125.039678002999935, 49.717340500000063 ], [ -125.042713814999928, 49.719678891000051 ], [ -125.045728011999969, 49.722000911000087 ], [ -125.046050176000023, 49.722249095000102 ], [ -125.050089086999961, 49.725287454000046 ], [ -125.05094353, 49.725930130000094 ], [ -125.053081395999982, 49.727538098000103 ], [ -125.056045182999952, 49.725913009000053 ], [ -125.056355384999961, 49.725742925000077 ], [ -125.056890791999976, 49.725449350000069 ], [ -125.05706065399994, 49.725356175000073 ], [ -125.059093504999936, 49.724241412000033 ], [ -125.060825535000021, 49.725670977000064 ], [ -125.061756410000015, 49.726439203000091 ], [ -125.062822391999973, 49.727202085000023 ], [ -125.063815884999954, 49.727780901000138 ], [ -125.066273050999968, 49.728570942000019 ], [ -125.070211017999924, 49.729836902000038 ], [ -125.070419551000015, 49.729921967000031 ], [ -125.071030688999926, 49.73017119600005 ], [ -125.071434497999931, 49.730471228000098 ], [ -125.071562205999967, 49.73056610200009 ], [ -125.073219388999917, 49.731936605000044 ], [ -125.073753906999983, 49.732251409000128 ], [ -125.074452108999978, 49.732561400000122 ], [ -125.075430990999948, 49.732844908000132 ], [ -125.075580695999975, 49.732898684000119 ], [ -125.077659489999931, 49.733645495000125 ], [ -125.081187208999935, 49.734912686000044 ], [ -125.08239531199996, 49.735346594000092 ], [ -125.083041885999961, 49.73557165500003 ], [ -125.083748380999964, 49.735817550000071 ], [ -125.085162404999934, 49.736309689000038 ], [ -125.085485492999965, 49.736517505000052 ], [ -125.08552916599993, 49.736554031000018 ], [ -125.085609077999948, 49.736620936000072 ], [ -125.085620947999956, 49.736630894000058 ], [ -125.085931603999953, 49.73689090400007 ], [ -125.086215597999981, 49.737034602000101 ], [ -125.086291304999946, 49.737072908000144 ], [ -125.086757488000018, 49.737204607000116 ], [ -125.087209983999941, 49.737256909000081 ], [ -125.087439555999964, 49.737253807000073 ], [ -125.087581810999922, 49.737251889000049 ], [ -125.087994796999965, 49.737195103000047 ], [ -125.088420302999964, 49.737068193000063 ], [ -125.088512828999924, 49.737016584000052 ], [ -125.088792011999942, 49.736860888000145 ], [ -125.090035502000021, 49.735962847000039 ], [ -125.090114129999961, 49.735906076000084 ], [ -125.090356306999979, 49.735731183000013 ], [ -125.0905997509999, 49.735555344000076 ], [ -125.09080808499999, 49.73540487700005 ], [ -125.091952791999987, 49.734578100000064 ], [ -125.09308878899995, 49.734587545000082 ], [ -125.093017723999964, 49.738184737000054 ], [ -125.091413495999944, 49.73817139500008 ], [ -125.091391325999894, 49.739291475000059 ], [ -125.08584434699992, 49.73924516200006 ], [ -125.085862395999925, 49.7383388310001 ], [ -125.08551074899998, 49.738335886000115 ], [ -125.085459985999961, 49.740884020000088 ], [ -125.079912819999933, 49.740837405000015 ], [ -125.079983691999985, 49.737301278000075 ], [ -125.078549383999956, 49.737289179000093 ], [ -125.078561340999897, 49.73669351700007 ], [ -125.077084865999936, 49.736681043000061 ], [ -125.077087570999936, 49.736546474000086 ], [ -125.076348744999947, 49.736540225000091 ], [ -125.076356792999889, 49.736140218000067 ], [ -125.075291528999941, 49.736131198000052 ], [ -125.075324427999959, 49.734497754000152 ], [ -125.070916555999986, 49.734460321000036 ], [ -125.070895757999921, 49.735487970000094 ], [ -125.073928184999957, 49.735513741000076 ], [ -125.073895745999934, 49.737121884000025 ], [ -125.076197198000017, 49.737141387000072 ], [ -125.07615782699996, 49.739097770000029 ], [ -125.077799257, 49.739111651000051 ], [ -125.077757259999956, 49.741202061000116 ], [ -125.08073517299999, 49.74122717900007 ], [ -125.080713081999988, 49.742330310000028 ], [ -125.08112432499999, 49.742333773000084 ], [ -125.081104074000024, 49.743345357000045 ], [ -125.082825322999938, 49.743359831000063 ], [ -125.082753440999937, 49.746956972000142 ], [ -125.078753960999933, 49.746923297000073 ], [ -125.078736986999928, 49.747768939000132 ], [ -125.078272910999914, 49.747832887000051 ], [ -125.077655199999967, 49.747654887000053 ], [ -125.076887098000029, 49.747200588000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99533121320793", "sL_AssetLoss": "295.58", "sL_BldgLoss": "294.2", "sL_StrLoss": "282", "sL_NStrLoss": "12.2", "sL_ContLoss": "1.38", "geom_point": "0101000020E6100000D8EEA2D8DF485FC0A5F643E877E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.136911496999943, 49.78442078800002 ], [ -125.135989660999911, 49.784150711000109 ], [ -125.135689149999948, 49.783909063000081 ], [ -125.135575079, 49.783734399000117 ], [ -125.13557309399999, 49.783698549000043 ], [ -125.139680992999942, 49.783730969000118 ], [ -125.139667751999951, 49.784436748000061 ], [ -125.140227915999958, 49.784441156000135 ], [ -125.14018407199994, 49.786779589000027 ], [ -125.139869592, 49.786903204000062 ], [ -125.13944739799993, 49.786802088000073 ], [ -125.138788423999941, 49.786329303000059 ], [ -125.138363413999969, 49.785508897000085 ], [ -125.137451694999953, 49.784717112000081 ], [ -125.136911496999943, 49.78442078800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31382334", "BldgCostT": "19433334", "sL_LossRatio": "0.997337261304185", "sL_AssetLoss": "6668.2097", "sL_BldgLoss": "6650.454", "sL_StrLoss": "6574.977", "sL_NStrLoss": "75.477", "sL_ContLoss": "17.7557", "geom_point": "0101000020E61000003A449A8078535FC0ED5F61DA9ADE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.309612838999982, 49.743762001000071 ], [ -125.30962435399999, 49.742996440000084 ], [ -125.309031263999927, 49.742992688000122 ], [ -125.309047364999941, 49.741922995000103 ], [ -125.306785164999923, 49.74190865300006 ], [ -125.306758023999947, 49.743705855000044 ], [ -125.302993940999926, 49.743681887000022 ], [ -125.301210318999978, 49.743670486000042 ], [ -125.301219044, 49.743097377000076 ], [ -125.30042112299999, 49.74309226700003 ], [ -125.300427854999967, 49.742650617000031 ], [ -125.299693587999954, 49.742645910000114 ], [ -125.29969338199993, 49.742659434000117 ], [ -125.294145809999975, 49.742623706000053 ], [ -125.294201120999972, 49.739026420000073 ], [ -125.294735791999955, 49.739029876000131 ], [ -125.294760694999937, 49.737408831000053 ], [ -125.296866303999977, 49.73742241500009 ], [ -125.296884380999927, 49.736242181000136 ], [ -125.29738473299993, 49.736245403000062 ], [ -125.297416383999945, 49.734177189000022 ], [ -125.299574786999969, 49.734191061000026 ], [ -125.301269686999959, 49.734201925000072 ], [ -125.301263588999944, 49.734073027000058 ], [ -125.300847615999913, 49.734081294000084 ], [ -125.30083486299999, 49.733811677000062 ], [ -125.300418888999985, 49.733819943000071 ], [ -125.30036788699995, 49.732741477000062 ], [ -125.301050128, 49.732727922000045 ], [ -125.301757882999965, 49.732713854000067 ], [ -125.303279625999963, 49.732683591000082 ], [ -125.303292391999904, 49.732953207 ], [ -125.303708355999973, 49.732944931000112 ], [ -125.303721125999942, 49.733214547 ], [ -125.304137090999987, 49.733206270000125 ], [ -125.304149861999974, 49.733475886000171 ], [ -125.304565829999888, 49.733467607000101 ], [ -125.304578603999929, 49.733737223000041 ], [ -125.305410544999944, 49.73372066100012 ], [ -125.30542332399996, 49.733990277000053 ], [ -125.306255267999944, 49.733973708000065 ], [ -125.306268050999961, 49.734243323000072 ], [ -125.30668402399999, 49.734235038000087 ], [ -125.306696810999981, 49.734504653000108 ], [ -125.307112787, 49.734496364000087 ], [ -125.30712557499993, 49.734765979000066 ], [ -125.30754155299995, 49.73475769000008 ], [ -125.30755434299999, 49.735027305000081 ], [ -125.307970325999918, 49.735019014000045 ], [ -125.307983118999971, 49.735288629000074 ], [ -125.308399099999974, 49.73528033600013 ], [ -125.308411897, 49.735549951000074 ], [ -125.308827880999942, 49.735541656000088 ], [ -125.30884068, 49.73581127100001 ], [ -125.309256664999936, 49.735802976000109 ], [ -125.309269466999979, 49.736072590000077 ], [ -125.309685454999936, 49.736064293 ], [ -125.309698259999962, 49.736333907000088 ], [ -125.31011424899998, 49.736325608000115 ], [ -125.310127056999974, 49.736595223000087 ], [ -125.310543048999961, 49.736586923000054 ], [ -125.310555856999969, 49.73685653600009 ], [ -125.310971852999927, 49.736848235000103 ], [ -125.310997474999979, 49.737387463000061 ], [ -125.311413473999906, 49.737379159000028 ], [ -125.311426286999961, 49.737648774000029 ], [ -125.311842288999955, 49.737640468000045 ], [ -125.311855104999935, 49.737910082000028 ], [ -125.312271107999919, 49.737901775000068 ], [ -125.312283927999971, 49.738171389000165 ], [ -125.312699932999948, 49.73816308100001 ], [ -125.312712753999961, 49.738432695000093 ], [ -125.313128761999963, 49.738424385 ], [ -125.313176174999924, 49.739421211000035 ], [ -125.314632602999978, 49.739430365000032 ], [ -125.314621172999978, 49.740195930000056 ], [ -125.315214226999956, 49.740199652000058 ], [ -125.315160561999932, 49.743796943000106 ], [ -125.309612838999982, 49.743762001000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.995843871185297", "sL_AssetLoss": "1186.2", "sL_BldgLoss": "1181.27", "sL_StrLoss": "1144", "sL_NStrLoss": "37.27", "sL_ContLoss": "4.93", "geom_point": "0101000020E6100000F788E29FE3455FC0E0D727049BE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.091813433999945, 49.756378856000019 ], [ -125.088677588999985, 49.753690042000109 ], [ -125.088216022999987, 49.753294201000138 ], [ -125.087614702999971, 49.752693692000101 ], [ -125.087518978999981, 49.752567869000053 ], [ -125.087017093, 49.751908020000059 ], [ -125.08663354, 49.751447245000051 ], [ -125.086411115999937, 49.751180067000071 ], [ -125.087885097999958, 49.751192390000057 ], [ -125.087690990999988, 49.751810695000117 ], [ -125.087704791999926, 49.752134002000069 ], [ -125.087864198999966, 49.752320610000062 ], [ -125.08819400599999, 49.752557008000096 ], [ -125.088586989999925, 49.752675202000013 ], [ -125.090127880999901, 49.752666704000049 ], [ -125.09114030399995, 49.752917303000103 ], [ -125.091650181999981, 49.752881697000134 ], [ -125.092061018999956, 49.752747896000059 ], [ -125.092957105999943, 49.752260223000128 ], [ -125.092919702999936, 49.754152571000077 ], [ -125.095242104999897, 49.754171839000044 ], [ -125.095171178999962, 49.757768933000072 ], [ -125.093417834999983, 49.757754391000041 ], [ -125.091813433999945, 49.756378856000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73379750", "BldgCostT": "51575000", "sL_LossRatio": "0.992618443847448", "sL_AssetLoss": "9558.96", "sL_BldgLoss": "9488.4", "sL_StrLoss": "5121", "sL_NStrLoss": "4367.4", "sL_ContLoss": "70.56", "geom_point": "0101000020E6100000075D46DA1B475FC0BBF36149FBE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.111776634999956, 49.766857977000015 ], [ -125.11178210599995, 49.76657547100006 ], [ -125.111571794999975, 49.76657376 ], [ -125.111570205999925, 49.766655836000041 ], [ -125.111570059, 49.766663399000095 ], [ -125.106019750999963, 49.766618113000021 ], [ -125.106020658999952, 49.766571523000053 ], [ -125.104219584999896, 49.766556768000015 ], [ -125.104265559999988, 49.764202106 ], [ -125.10428981599992, 49.762959712000054 ], [ -125.109305803000012, 49.763000732000116 ], [ -125.1093246699999, 49.762028835000088 ], [ -125.11115421199996, 49.762043739000056 ], [ -125.111211301999958, 49.762439594000099 ], [ -125.111445982999925, 49.763010694000073 ], [ -125.112060600999882, 49.763430913000093 ], [ -125.112481, 49.763513487000061 ], [ -125.113160613999952, 49.76286260100008 ], [ -125.113627190000017, 49.762701700000072 ], [ -125.114373191999945, 49.762947999000097 ], [ -125.114983412999948, 49.763252792000081 ], [ -125.115581199999951, 49.763898001000065 ], [ -125.116299219999959, 49.766376098000109 ], [ -125.116679479999931, 49.766802 ], [ -125.117321367999963, 49.767194594000081 ], [ -125.117285031999941, 49.769083049000095 ], [ -125.114021028999943, 49.769056625000125 ], [ -125.11173442499998, 49.769038054000113 ], [ -125.111776634999956, 49.766857977000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.994467496542185", "sL_AssetLoss": "954.36", "sL_BldgLoss": "949.08", "sL_StrLoss": "910", "sL_NStrLoss": "39.08", "sL_ContLoss": "5.28", "geom_point": "0101000020E6100000E60FDD1ECA515FC021D6F23591F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.27997515699991, 49.877916178000071 ], [ -125.28116068099996, 49.8779239670001 ], [ -125.281133400999977, 49.879660524000101 ], [ -125.280351517999975, 49.87977309300004 ], [ -125.27891760199995, 49.880366984000027 ], [ -125.278235292999938, 49.880965202000091 ], [ -125.278034709999957, 49.881500360000075 ], [ -125.275539784999935, 49.881483886000119 ], [ -125.275563916999957, 49.879959751000051 ], [ -125.275596726999979, 49.877887304000133 ], [ -125.27997515699991, 49.877916178000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994837269334077", "sL_AssetLoss": "286.67", "sL_BldgLoss": "285.19", "sL_StrLoss": "280", "sL_NStrLoss": "5.19", "sL_ContLoss": "1.48", "geom_point": "0101000020E610000000B3D6AB23475FC03C1BEA5EC4E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.111329524999974, 49.780330395000057 ], [ -125.11131780099997, 49.780060746000103 ], [ -125.110068537999979, 49.780083512000076 ], [ -125.11003339199999, 49.779274565000073 ], [ -125.110449806999952, 49.77926697900012 ], [ -125.110415486999955, 49.778477146000078 ], [ -125.11041465699999, 49.778458032000103 ], [ -125.112080286000023, 49.778427672000099 ], [ -125.112103737999973, 49.778966968000084 ], [ -125.11293656, 49.778951779000089 ], [ -125.112995216999948, 49.780300020000041 ], [ -125.11264078, 49.78030648500004 ], [ -125.111329524999974, 49.780330395000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4548167", "BldgCostT": "3136667", "sL_LossRatio": "0.993458838544991", "sL_AssetLoss": "3134", "sL_BldgLoss": "3113.5", "sL_StrLoss": "2978", "sL_NStrLoss": "135.5", "sL_ContLoss": "20.5", "geom_point": "0101000020E6100000F2D124A9B3475FC066D05CE9ADE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.11528988399999, 49.763274197000058 ], [ -125.11474879299999, 49.762950887000066 ], [ -125.113760900999964, 49.762600508000034 ], [ -125.113165601999938, 49.76267318700009 ], [ -125.112867996999967, 49.762822699000068 ], [ -125.112565406999977, 49.76324290900007 ], [ -125.112308199999916, 49.763390988000047 ], [ -125.112029696999926, 49.7633325850001 ], [ -125.111595885999975, 49.762972295000104 ], [ -125.111473775, 49.762712993000065 ], [ -125.111422850999929, 49.762045926000091 ], [ -125.114874426999933, 49.762073953000055 ], [ -125.114856801999963, 49.762987581000054 ], [ -125.118057462999971, 49.763013474000061 ], [ -125.118054739999977, 49.763155139000141 ], [ -125.119815303999943, 49.76316934200009 ], [ -125.120387886999936, 49.763173955000063 ], [ -125.120427770999925, 49.761093518000109 ], [ -125.120449152999967, 49.759978108 ], [ -125.121108874999962, 49.75998342 ], [ -125.121826512999959, 49.759989193000123 ], [ -125.12599867199999, 49.760022662000047 ], [ -125.125930147999952, 49.763619746000053 ], [ -125.120523785999978, 49.763576346000086 ], [ -125.120521776999922, 49.763681128000059 ], [ -125.120462520999965, 49.766772176000131 ], [ -125.117329980999926, 49.766746907000041 ], [ -125.117323827999911, 49.767066703000062 ], [ -125.117103020999949, 49.766964304000048 ], [ -125.116463110999945, 49.766319093000064 ], [ -125.115836299999941, 49.76402760000007 ], [ -125.11528988399999, 49.763274197000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.994598386531042", "sL_AssetLoss": "570.2", "sL_BldgLoss": "567.12", "sL_StrLoss": "550", "sL_NStrLoss": "17.12", "sL_ContLoss": "3.08", "geom_point": "0101000020E61000006B1340949C475FC07DAA6D37FFE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.119018009999934, 49.775062605000116 ], [ -125.119006245999969, 49.774792957000052 ], [ -125.118589872999962, 49.774800573000064 ], [ -125.118566351999959, 49.774261279000022 ], [ -125.117733613999945, 49.774276508000099 ], [ -125.117698346999944, 49.773467565000075 ], [ -125.117281983999973, 49.773475177000151 ], [ -125.117258478999958, 49.772935882000077 ], [ -125.11684212099999, 49.772943492000103 ], [ -125.116830371999981, 49.772673844000032 ], [ -125.116414014999918, 49.772681452000057 ], [ -125.116378772999937, 49.77187250800003 ], [ -125.11688641899994, 49.771863231000054 ], [ -125.118044168999972, 49.771842065000094 ], [ -125.118067681999975, 49.772381360000018 ], [ -125.11848403599997, 49.772373746 ], [ -125.11849579599999, 49.772643394000042 ], [ -125.11891215, 49.772635777000112 ], [ -125.1189239119999, 49.772905425000054 ], [ -125.121422055999957, 49.772859694000047 ], [ -125.121469157999911, 49.773938283000113 ], [ -125.120220058999934, 49.773961155000045 ], [ -125.120267136999985, 49.775039744 ], [ -125.119658679999972, 49.775050881000084 ], [ -125.119018009999934, 49.775062605000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76794501", "BldgCostT": "53930001", "sL_LossRatio": "0.992865518768023", "sL_AssetLoss": "10028.76", "sL_BldgLoss": "9957.21", "sL_StrLoss": "6240.11", "sL_NStrLoss": "3717.1", "sL_ContLoss": "71.55", "geom_point": "0101000020E6100000D7624379D74B5FC0A9A74DA44DEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.184568138999936, 49.863727107000052 ], [ -125.184570798999971, 49.863577751000037 ], [ -125.184386609999976, 49.86357638000009 ], [ -125.184351610999954, 49.863547320000052 ], [ -125.183902314999955, 49.863174309 ], [ -125.182234333999972, 49.861789354000088 ], [ -125.182210793999943, 49.861769811000066 ], [ -125.181813976999976, 49.861607975000013 ], [ -125.181840829999942, 49.860105585000092 ], [ -125.18166317399999, 49.86010425700006 ], [ -125.18164210799999, 49.861282602000095 ], [ -125.181004498, 49.86127783400007 ], [ -125.179850114999923, 49.860807007000119 ], [ -125.179902526999939, 49.860113956000127 ], [ -125.179852717999964, 49.859980239000031 ], [ -125.179633658999961, 49.85939220900007 ], [ -125.179691847999891, 49.858830481000034 ], [ -125.179914916999962, 49.858529379000103 ], [ -125.18044278499994, 49.858199227000114 ], [ -125.18066008, 49.858143181000074 ], [ -125.18128197299994, 49.857982844000048 ], [ -125.181988380999883, 49.857909689000046 ], [ -125.182524986999937, 49.857774463000119 ], [ -125.182754363999948, 49.857614051000049 ], [ -125.182798556999956, 49.857359104000075 ], [ -125.18203388699996, 49.85625048600015 ], [ -125.184059823999959, 49.856265608000065 ], [ -125.183995716999945, 49.859862246000098 ], [ -125.183355633999952, 49.859857473000055 ], [ -125.183353597999925, 49.859971580000092 ], [ -125.187405123999895, 49.860001731000075 ], [ -125.187349975999922, 49.863108281000102 ], [ -125.190141607999948, 49.863128968000112 ], [ -125.190077970999965, 49.8667255760001 ], [ -125.188162864000034, 49.866711393000045 ], [ -125.187924099999961, 49.866513188000042 ], [ -125.18693786599998, 49.865694506000089 ], [ -125.186917434999927, 49.865677520000091 ], [ -125.185843859999977, 49.864786248000023 ], [ -125.184568138999936, 49.863727107000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4292000", "BldgCostT": "2960000", "sL_LossRatio": "0.990993114571057", "sL_AssetLoss": "2418.15", "sL_BldgLoss": "2396.37", "sL_StrLoss": "2229.37", "sL_NStrLoss": "167", "sL_ContLoss": "21.78", "geom_point": "0101000020E6100000A2A49FF42E465FC09409A6372FE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.096911468999963, 49.780894632000049 ], [ -125.099427380999927, 49.780915398000097 ], [ -125.099364953999952, 49.784094242000073 ], [ -125.099356740999951, 49.78451236100009 ], [ -125.09380428499999, 49.784466455000086 ], [ -125.093875359, 49.780869495000069 ], [ -125.096911468999963, 49.780894632000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.995301407875249", "sL_AssetLoss": "2349.64", "sL_BldgLoss": "2338.6", "sL_StrLoss": "2255", "sL_NStrLoss": "83.6", "sL_ContLoss": "11.04", "geom_point": "0101000020E61000002350DC755F4A5FC051F52B9D8FE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.15933074599999, 49.822875544000055 ], [ -125.164887919999956, 49.822918118000125 ], [ -125.164822354999956, 49.826514911000061 ], [ -125.159264744999945, 49.826472334000073 ], [ -125.15933074599999, 49.822875544000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.996057969024448", "sL_AssetLoss": "1747.83", "sL_BldgLoss": "1740.94", "sL_StrLoss": "1689", "sL_NStrLoss": "51.94", "sL_ContLoss": "6.89", "geom_point": "0101000020E6100000330EFD2CB9485FC058ED7111A5E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.134607547999934, 49.787994295000018 ], [ -125.134620867999914, 49.787288521000079 ], [ -125.134060670999972, 49.787284083000067 ], [ -125.134128591999939, 49.783687112000109 ], [ -125.13540707199995, 49.783697235000133 ], [ -125.135522853999973, 49.783778122000065 ], [ -125.135598205999941, 49.783959408000051 ], [ -125.136015689999979, 49.78428409000005 ], [ -125.136214414999984, 49.784331437000105 ], [ -125.136911848999944, 49.784892232000061 ], [ -125.137054115999931, 49.784981724000033 ], [ -125.137865196999925, 49.785735156000051 ], [ -125.13864268899999, 49.786746922000127 ], [ -125.139292970999932, 49.78721995300004 ], [ -125.14011881, 49.787581543000037 ], [ -125.140168836999933, 49.7875920520001 ], [ -125.140160471999963, 49.788038128000061 ], [ -125.134607547999934, 49.787994295000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.992262890424256", "sL_AssetLoss": "700.52", "sL_BldgLoss": "695.1", "sL_StrLoss": "655", "sL_NStrLoss": "40.1", "sL_ContLoss": "5.42", "geom_point": "0101000020E610000050F5541C014B5FC09CC8C494E5EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.172058833999984, 49.844244368000069 ], [ -125.170393264999944, 49.842311400000028 ], [ -125.170360911999978, 49.842273850000041 ], [ -125.170341830999988, 49.84184779000006 ], [ -125.170845824999958, 49.841838349000106 ], [ -125.172009571000032, 49.841816539000021 ], [ -125.172021654999966, 49.842086174000038 ], [ -125.17285553, 49.842070540000051 ], [ -125.172903890999976, 49.843149078000117 ], [ -125.172486945999964, 49.843156897000071 ], [ -125.172499033999912, 49.843426532000045 ], [ -125.1733329299999, 49.843410893000062 ], [ -125.173369212999958, 49.844219797000044 ], [ -125.172058833999984, 49.844244368000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4695583", "BldgCostT": "3238333", "sL_LossRatio": "0.989322986776467", "sL_AssetLoss": "3157.25", "sL_BldgLoss": "3123.54", "sL_StrLoss": "2858.24", "sL_NStrLoss": "265.3", "sL_ContLoss": "33.71", "geom_point": "0101000020E610000020D3B926CD475FC0C77F8120C0E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.11915459, 49.785292441000131 ], [ -125.12470717199993, 49.785337059000049 ], [ -125.124638509999954, 49.788934015000031 ], [ -125.119085491999954, 49.788889395000041 ], [ -125.11915459, 49.785292441000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.993829571194251", "sL_AssetLoss": "640.15", "sL_BldgLoss": "636.2", "sL_StrLoss": "606", "sL_NStrLoss": "30.2", "sL_ContLoss": "3.95", "geom_point": "0101000020E6100000087A4543884F5FC0862CC19863F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.239288058999961, 49.893017229000087 ], [ -125.244853823999961, 49.893055735000047 ], [ -125.244825472999977, 49.894772924000087 ], [ -125.243852493999924, 49.894499410000037 ], [ -125.241088413999975, 49.894057899000124 ], [ -125.23928751699998, 49.893049738000066 ], [ -125.239288058999961, 49.893017229000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994749671854491", "sL_AssetLoss": "319.98", "sL_BldgLoss": "318.3", "sL_StrLoss": "304", "sL_NStrLoss": "14.3", "sL_ContLoss": "1.68", "geom_point": "0101000020E6100000E9B27F3B1C4F5FC03BF3593BDDF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.235642502999951, 49.8824349060001 ], [ -125.235630046999972, 49.882165284000116 ], [ -125.235212781999948, 49.88217333300004 ], [ -125.235175418999944, 49.881364468000122 ], [ -125.235592675999953, 49.881356421000135 ], [ -125.235580218999942, 49.881086799000123 ], [ -125.236831983999963, 49.881062645000078 ], [ -125.236894301999925, 49.88241075100008 ], [ -125.235642502999951, 49.8824349060001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.913375941565853", "sL_AssetLoss": "8.762", "sL_BldgLoss": "8.003", "sL_StrLoss": "0.843", "sL_NStrLoss": "7.16", "sL_ContLoss": "0.759", "geom_point": "0101000020E610000098077E8E6E4E5FC0748AE12C9DF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.224644757999926, 49.879408200000043 ], [ -125.226313732, 49.879376149000045 ], [ -125.226350943999975, 49.880185020000049 ], [ -125.224681942999936, 49.880217071000132 ], [ -125.224644757999926, 49.879408200000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51169220", "BldgCostT": "33475413", "sL_LossRatio": "0.989682105883272", "sL_AssetLoss": "25869.62", "sL_BldgLoss": "25602.7", "sL_StrLoss": "24316.1", "sL_NStrLoss": "1286.6", "sL_ContLoss": "266.92", "geom_point": "0101000020E6100000F64EBB4E994D5FC0B7E7B7B774F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.211355402999956, 49.887244500000058 ], [ -125.210582, 49.887079312000076 ], [ -125.210069493999953, 49.887134798000076 ], [ -125.209231511000013, 49.887104890000046 ], [ -125.208039410999959, 49.886911209000075 ], [ -125.207446561999944, 49.88691491000008 ], [ -125.207452041999929, 49.886862938000064 ], [ -125.207478907, 49.886789045000114 ], [ -125.207757398999959, 49.886031700000096 ], [ -125.20723308, 49.885209604000117 ], [ -125.207237494999973, 49.885119683000056 ], [ -125.207246011, 49.884867086000092 ], [ -125.207529718999936, 49.884150606000048 ], [ -125.208166988999935, 49.883667808000098 ], [ -125.2082286, 49.883565811000089 ], [ -125.208448296999961, 49.882759122000024 ], [ -125.208461807999967, 49.88270959900013 ], [ -125.208629488999918, 49.881861013000055 ], [ -125.206085515000012, 49.881586302000116 ], [ -125.206167880999914, 49.881249709000045 ], [ -125.206084408999956, 49.881009896000073 ], [ -125.204718984999928, 49.880564695000075 ], [ -125.204313390999943, 49.880282994000062 ], [ -125.204212626999976, 49.880084503000035 ], [ -125.204493599, 49.879124311000041 ], [ -125.204722510999915, 49.878519002000118 ], [ -125.204160221999956, 49.878297304000114 ], [ -125.203705201, 49.877819206 ], [ -125.202188013999915, 49.875717310000105 ], [ -125.202103598999912, 49.875644714000025 ], [ -125.20188648, 49.875457993000062 ], [ -125.201532325999935, 49.875265601000102 ], [ -125.199999093999963, 49.874803843000024 ], [ -125.199895291999923, 49.874772602000064 ], [ -125.199117486999967, 49.874465602000043 ], [ -125.198656880999962, 49.874238403000085 ], [ -125.197596396999927, 49.873577707 ], [ -125.196456081999926, 49.872867294000073 ], [ -125.195807189999982, 49.872463002000053 ], [ -125.195025888999965, 49.872201893000089 ], [ -125.194899126999957, 49.872171070000057 ], [ -125.192301768999968, 49.871539616000078 ], [ -125.192316766999966, 49.870689792000036 ], [ -125.197879776, 49.870730687000041 ], [ -125.197864980999952, 49.871574883000143 ], [ -125.199186576999963, 49.871584556000059 ], [ -125.199170872999971, 49.872481992000068 ], [ -125.199888706999914, 49.872487240000062 ], [ -125.199877331999986, 49.873137841000108 ], [ -125.202035062999968, 49.873153586000107 ], [ -125.202030069999978, 49.873439991000112 ], [ -125.202864150999957, 49.873446066000035 ], [ -125.202859139999958, 49.873733674000086 ], [ -125.203899226999951, 49.873741240000122 ], [ -125.203887587999986, 49.874410336000068 ], [ -125.204766135999947, 49.874416720000042 ], [ -125.204713519999984, 49.87744434300005 ], [ -125.208783466999975, 49.877473824000042 ], [ -125.208763941999962, 49.878603020000092 ], [ -125.210859649999946, 49.878618141000054 ], [ -125.210895375999939, 49.876546474000051 ], [ -125.215281713999943, 49.876577994000115 ], [ -125.215323143999925, 49.8741619790001 ], [ -125.215824071999975, 49.874165567000034 ], [ -125.21586948099997, 49.871515487000138 ], [ -125.216688045999916, 49.871521346000101 ], [ -125.216699990999942, 49.870823506000093 ], [ -125.222263036999948, 49.870863162000084 ], [ -125.222201914, 49.874459750000099 ], [ -125.221383293999963, 49.87445393300009 ], [ -125.221371420999944, 49.875151770000102 ], [ -125.220870479999974, 49.875148206000077 ], [ -125.220825358999946, 49.877798276000085 ], [ -125.218431599, 49.877781218000059 ], [ -125.217794522999952, 49.877776670000081 ], [ -125.216438898999954, 49.877766978000132 ], [ -125.216430159999973, 49.878277290000113 ], [ -125.217458529999973, 49.878284643000043 ], [ -125.218824926999915, 49.878294398000079 ], [ -125.220022979999925, 49.87830293800004 ], [ -125.219998020999938, 49.879767166000143 ], [ -125.220067437999973, 49.879765836000082 ], [ -125.220074734999912, 49.87992494000008 ], [ -125.220079805999916, 49.880035461000027 ], [ -125.22015830199993, 49.880033957000073 ], [ -125.222166054999917, 49.879995477000065 ], [ -125.222153673999955, 49.87972585300011 ], [ -125.223822660999971, 49.879693839000055 ], [ -125.22385983199996, 49.88050271000008 ], [ -125.224277085999972, 49.880494702000114 ], [ -125.224314265999979, 49.881303573000046 ], [ -125.223479744999963, 49.881319588000089 ], [ -125.223492133999983, 49.881589211000104 ], [ -125.222783598999925, 49.881602802000081 ], [ -125.222747590999958, 49.883722513000066 ], [ -125.217182978999944, 49.883682882000095 ], [ -125.217193650999974, 49.883059189000072 ], [ -125.215625834999983, 49.883089170000119 ], [ -125.215613876999925, 49.882827975000048 ], [ -125.215588797999928, 49.882280296000069 ], [ -125.216006068999945, 49.882272318000069 ], [ -125.215993721999936, 49.882002692000064 ], [ -125.217212125999978, 49.881979389000087 ], [ -125.217213826999966, 49.881879882000078 ], [ -125.21556992599993, 49.881868121000124 ], [ -125.215576451999965, 49.88201067100006 ], [ -125.215413931999947, 49.882013777000033 ], [ -125.215399667, 49.882845627000037 ], [ -125.215384798999949, 49.883712619000114 ], [ -125.215369093999954, 49.88370529000013 ], [ -125.214964310999932, 49.883666888000072 ], [ -125.214370718999987, 49.883795107000054 ], [ -125.213580516999954, 49.88416109300006 ], [ -125.212897303999938, 49.884750696000019 ], [ -125.212688106999934, 49.885069711000021 ], [ -125.212712308999954, 49.88557250900007 ], [ -125.213097602999966, 49.886078100000113 ], [ -125.213133399999961, 49.886545190000078 ], [ -125.212376685999928, 49.887053599000097 ], [ -125.211840001999974, 49.887225991000022 ], [ -125.211355402999956, 49.887244500000058 ] ], [ [ -125.213850094999913, 49.880790498000138 ], [ -125.21384570099994, 49.880694440000106 ], [ -125.213488078999916, 49.880701270000095 ], [ -125.213486589999931, 49.880787888000022 ], [ -125.213850094999913, 49.880790498000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.994686472085374", "sL_AssetLoss": "1343.74", "sL_BldgLoss": "1336.6", "sL_StrLoss": "1292", "sL_NStrLoss": "44.6", "sL_ContLoss": "7.14", "geom_point": "0101000020E6100000A86D47616C4A5FC09B2E1733BAEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.16000009899993, 49.833150830000108 ], [ -125.159140274999956, 49.832902742000087 ], [ -125.159145869999975, 49.832597964000051 ], [ -125.164704223999948, 49.83264054700004 ], [ -125.164695196, 49.833135687 ], [ -125.164768451999976, 49.83313624600013 ], [ -125.164708268999931, 49.836436588000048 ], [ -125.16299374, 49.834913315000087 ], [ -125.16000009899993, 49.833150830000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19178750", "BldgCostT": "12755000", "sL_LossRatio": "0.991894102138463", "sL_AssetLoss": "8192.8", "sL_BldgLoss": "8126.39", "sL_StrLoss": "7689.89", "sL_NStrLoss": "436.5", "sL_ContLoss": "66.41", "geom_point": "0101000020E6100000C1E5B166A44E5FC0E44E441AF0F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.228322869999928, 49.895799079000049 ], [ -125.22828560399999, 49.894990211000071 ], [ -125.227450849999968, 49.895006257000027 ], [ -125.227368582999972, 49.89321983200005 ], [ -125.227374707999971, 49.8932076930001 ], [ -125.22736615299999, 49.893167049000063 ], [ -125.22731427399999, 49.892040409000074 ], [ -125.226896922999927, 49.892048430000088 ], [ -125.22688450899993, 49.891778807000016 ], [ -125.226103532999957, 49.891793811000113 ], [ -125.226048326999944, 49.89176263400006 ], [ -125.225978411999947, 49.890243293000019 ], [ -125.225623303999953, 49.890240783000067 ], [ -125.225624267999976, 49.890183848000042 ], [ -125.225558028999984, 49.890185119000094 ], [ -125.225520816999932, 49.889376250000034 ], [ -125.225637976999934, 49.889374001000149 ], [ -125.225649963999913, 49.888665877000079 ], [ -125.225660304999934, 49.888626006000052 ], [ -125.225651432999925, 49.888579030000066 ], [ -125.225653876999928, 49.888434640000099 ], [ -125.22562412799995, 49.888434430000082 ], [ -125.225587409999932, 49.88823999200013 ], [ -125.225364905999967, 49.887948100000123 ], [ -125.22509329899998, 49.887791400000047 ], [ -125.224195192999971, 49.887610491000082 ], [ -125.22290518600002, 49.887742993000074 ], [ -125.222226380999984, 49.887945910000077 ], [ -125.222279627999967, 49.884813781000048 ], [ -125.227844379999965, 49.884853152000055 ], [ -125.227823443999981, 49.886093676000044 ], [ -125.228293090999941, 49.886084647000075 ], [ -125.228317925999974, 49.886623892000081 ], [ -125.229152534999912, 49.886607842000039 ], [ -125.229155341999942, 49.886668754000056 ], [ -125.231249158999972, 49.88668346900004 ], [ -125.231210281999964, 49.88899699800006 ], [ -125.231768297999949, 49.888986253000077 ], [ -125.231818051999966, 49.890064741000074 ], [ -125.232235384999967, 49.89005670400006 ], [ -125.23224782699999, 49.89032632600005 ], [ -125.232665163999982, 49.890318286000081 ], [ -125.232698632999927, 49.891043460000084 ], [ -125.232714941, 49.891396774000064 ], [ -125.231880250999936, 49.89141285000008 ], [ -125.231917571999958, 49.892221715000098 ], [ -125.232334922999939, 49.892213677000015 ], [ -125.232347366999974, 49.892483299000112 ], [ -125.233182076, 49.892467219000082 ], [ -125.233157180999939, 49.891927976000034 ], [ -125.233574528999938, 49.891919933000104 ], [ -125.233549629999928, 49.891380691000045 ], [ -125.233566396999919, 49.89138036700006 ], [ -125.235636348999918, 49.891340457000055 ], [ -125.235673734, 49.892149321000026 ], [ -125.235256382999964, 49.892157370000149 ], [ -125.235268841999954, 49.892426992000054 ], [ -125.234851488999965, 49.892435040000144 ], [ -125.234863945999948, 49.892704661000025 ], [ -125.23444659099998, 49.892712708000047 ], [ -125.234459046999945, 49.892982330000024 ], [ -125.234041688999966, 49.892990375000103 ], [ -125.234054141999977, 49.893259997000058 ], [ -125.234471501999934, 49.893251951000074 ], [ -125.234483957999956, 49.893521572000097 ], [ -125.235736043999978, 49.893497426000074 ], [ -125.235785894999964, 49.894575910000121 ], [ -125.233699036999923, 49.894616147000129 ], [ -125.233686585999962, 49.894346526000049 ], [ -125.233269214999922, 49.894354569000079 ], [ -125.23324431599994, 49.893815326000116 ], [ -125.232826951999982, 49.893823368000071 ], [ -125.232839397999953, 49.894092988000104 ], [ -125.232004662999913, 49.894109067000066 ], [ -125.232017103999979, 49.894378689000057 ], [ -125.231599733999971, 49.894386726000086 ], [ -125.231637052999986, 49.895195591000068 ], [ -125.230802297999944, 49.89521166 ], [ -125.230827170999987, 49.895750903000099 ], [ -125.228322869999928, 49.895799079000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.991471081043627", "sL_AssetLoss": "793.77", "sL_BldgLoss": "787", "sL_StrLoss": "734", "sL_NStrLoss": "53", "sL_ContLoss": "6.77", "geom_point": "0101000020E6100000E3EA19255C465FC0D7704F5F68E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09899552, 49.775225793000061 ], [ -125.099231899999893, 49.775203494000024 ], [ -125.09943828199998, 49.775295990000089 ], [ -125.09995349899999, 49.775921696000033 ], [ -125.100080790999939, 49.77601089400013 ], [ -125.100504198999971, 49.776151099000117 ], [ -125.100640511999984, 49.776282599000069 ], [ -125.100786710999955, 49.776767445000139 ], [ -125.100803397000021, 49.776822707000051 ], [ -125.100970014999973, 49.777031801000078 ], [ -125.101929930999958, 49.777581869000109 ], [ -125.097925267999969, 49.777548878000076 ], [ -125.097962291999963, 49.77566634800008 ], [ -125.09899552, 49.775225793000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76807136", "BldgCostT": "50792079", "sL_LossRatio": "0.900097972037387", "sL_AssetLoss": "35347.841", "sL_BldgLoss": "31816.52", "sL_StrLoss": "29423.97", "sL_NStrLoss": "2392.55", "sL_ContLoss": "3531.321", "geom_point": "0101000020E6100000A5A078215F475FC097EF8DDFE3E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.133429482999972, 49.836763699000116 ], [ -125.132345601999958, 49.836457415000019 ], [ -125.132010379999912, 49.836468196000084 ], [ -125.131686631999926, 49.836550249000084 ], [ -125.131528578999948, 49.836590298000118 ], [ -125.131189738, 49.836012822000015 ], [ -125.130835762999979, 49.835409582000054 ], [ -125.130794798999901, 49.835339788000098 ], [ -125.130444427999947, 49.834742228000053 ], [ -125.129914396999979, 49.833838194000045 ], [ -125.129394699999978, 49.832954498000085 ], [ -125.12789563699999, 49.830400705000073 ], [ -125.126332144999964, 49.827736777000098 ], [ -125.125329791999931, 49.826028803000113 ], [ -125.124690510000036, 49.824942706000044 ], [ -125.124659445999981, 49.824889988000081 ], [ -125.124261782999952, 49.824215102000046 ], [ -125.123449219999912, 49.822836028000097 ], [ -125.123004649999956, 49.822081456000021 ], [ -125.122957681999949, 49.822001746000126 ], [ -125.122617901999902, 49.821425007000144 ], [ -125.12220763, 49.82072897500008 ], [ -125.12170633, 49.819878515000028 ], [ -125.121601386999913, 49.819700480000037 ], [ -125.12155911399999, 49.819628716000111 ], [ -125.121476124999958, 49.819487969000129 ], [ -125.121134707999929, 49.818908674000141 ], [ -125.120897141999976, 49.818505621000035 ], [ -125.120420564999932, 49.817696995000027 ], [ -125.120162121999925, 49.817258460000055 ], [ -125.119044886999944, 49.815362706000066 ], [ -125.11881, 49.814964111000094 ], [ -125.118278493999981, 49.814067598000058 ], [ -125.118051293999969, 49.813684017000099 ], [ -125.117862007000014, 49.813364424000035 ], [ -125.116816065999927, 49.811598351000079 ], [ -125.115612947999921, 49.809566776000025 ], [ -125.115461271999934, 49.809310697000065 ], [ -125.115019003999947, 49.808763896000116 ], [ -125.114125905999913, 49.807969799000084 ], [ -125.113116073999919, 49.807318496000072 ], [ -125.112188601999975, 49.806801112000116 ], [ -125.111186779999954, 49.806384600000051 ], [ -125.110165117999941, 49.806069597000025 ], [ -125.109650669999922, 49.805934423000032 ], [ -125.107939859999973, 49.805484837000037 ], [ -125.106199007999976, 49.805027287000094 ], [ -125.103001839999948, 49.80412433200005 ], [ -125.100991007999966, 49.803556351000047 ], [ -125.099230404999943, 49.803059005000073 ], [ -125.099137108999955, 49.803029374000062 ], [ -125.099016469999967, 49.802991057000057 ], [ -125.096497496999959, 49.80219098900006 ], [ -125.093812894, 49.801341392000047 ], [ -125.093813164999972, 49.801332401000103 ], [ -125.093852086999973, 49.800004704000067 ], [ -125.093855617999949, 49.799884790000085 ], [ -125.093941469999947, 49.797971036000035 ], [ -125.093962272999988, 49.79750679500011 ], [ -125.09392418799996, 49.796903898000025 ], [ -125.093880995999911, 49.796282091000137 ], [ -125.093825999000032, 49.796109904000076 ], [ -125.093050883999965, 49.79482651400015 ], [ -125.092903914999923, 49.794583182000025 ], [ -125.09173374099997, 49.792645621000069 ], [ -125.091562214999954, 49.792361591000052 ], [ -125.09091908399995, 49.791296598000081 ], [ -125.089187389999921, 49.789285832000083 ], [ -125.088207676999929, 49.788148143000079 ], [ -125.08761822699995, 49.787463662000015 ], [ -125.086831455999956, 49.786549973000064 ], [ -125.083632159999979, 49.78283403800004 ], [ -125.08322094799999, 49.782356364000059 ], [ -125.086815102999978, 49.780631341000102 ], [ -125.086798163999944, 49.781482014000055 ], [ -125.088387042999969, 49.781495283 ], [ -125.088367398999935, 49.782483481000035 ], [ -125.089204872999986, 49.782490465000045 ], [ -125.08913342999989, 49.786087413000089 ], [ -125.088968082999926, 49.786086034000064 ], [ -125.088953908999926, 49.786799467000023 ], [ -125.090619383000018, 49.786813339000069 ], [ -125.090550919999913, 49.790265334000082 ], [ -125.095068324999943, 49.790302833000062 ], [ -125.094997329999941, 49.793899746000122 ], [ -125.094822744999988, 49.79389830000008 ], [ -125.094809762999972, 49.79455582700011 ], [ -125.097573290999946, 49.794578679000075 ], [ -125.097561637999931, 49.79517070200005 ], [ -125.097619423999959, 49.795171179000135 ], [ -125.097603246999938, 49.795993087000085 ], [ -125.097675072999934, 49.795993680000073 ], [ -125.097604273999977, 49.799590566000106 ], [ -125.097549806999908, 49.799590117000072 ], [ -125.09753565799997, 49.800308845000053 ], [ -125.097614039999911, 49.800309492000039 ], [ -125.097603496999923, 49.800845060000078 ], [ -125.09934820699999, 49.800859449000072 ], [ -125.09934437599999, 49.801054419000046 ], [ -125.100086490999928, 49.801060531000097 ], [ -125.10008003199998, 49.801389533000119 ], [ -125.100758185999936, 49.801395114000101 ], [ -125.100748187999955, 49.80190475600012 ], [ -125.101494887999962, 49.801910896000031 ], [ -125.101480128999967, 49.802663875000043 ], [ -125.105482181999889, 49.802696696000034 ], [ -125.105478867999977, 49.802866524000109 ], [ -125.110202611999952, 49.802905075000105 ], [ -125.110189163999948, 49.803597815000138 ], [ -125.113054946, 49.803621103000118 ], [ -125.113035030000034, 49.804650316000028 ], [ -125.11718405, 49.80468389900004 ], [ -125.117176980999957, 49.805050946000037 ], [ -125.117408354999981, 49.80504671700006 ], [ -125.117396587999949, 49.804777071000096 ], [ -125.119063112999953, 49.804746598000115 ], [ -125.119051336999959, 49.804476953000119 ], [ -125.117384821, 49.80450742400005 ], [ -125.117373055999977, 49.804237778000058 ], [ -125.116956428999984, 49.804245393000073 ], [ -125.116897613999953, 49.802897161000054 ], [ -125.118147457999953, 49.802874314000086 ], [ -125.118135688999985, 49.802604667000026 ], [ -125.11896891399999, 49.802589430000054 ], [ -125.11895714, 49.802319784000133 ], [ -125.119790359, 49.802304539000041 ], [ -125.119766802999976, 49.801765248000081 ], [ -125.12184982399998, 49.80172711200003 ], [ -125.121838034999882, 49.801457466000116 ], [ -125.123087840999943, 49.801434567000058 ], [ -125.12312323, 49.802243504000081 ], [ -125.122290012999898, 49.802258771000055 ], [ -125.122348978, 49.803606998000063 ], [ -125.122765597999944, 49.803599366000114 ], [ -125.122800985999945, 49.804408301000066 ], [ -125.121967729999966, 49.804423568000153 ], [ -125.121979522999965, 49.804693213000043 ], [ -125.121146263999918, 49.804708473000112 ], [ -125.1211580499999, 49.804978120000094 ], [ -125.120324786999916, 49.804993374000034 ], [ -125.120336568999946, 49.805263020000083 ], [ -125.119503298999973, 49.805278268000073 ], [ -125.119515077999964, 49.80554791400003 ], [ -125.118681802, 49.805563157000087 ], [ -125.118717123999929, 49.806372094000018 ], [ -125.118300478999927, 49.806379714000037 ], [ -125.118324023999975, 49.80691900600003 ], [ -125.117678311999953, 49.806930812000068 ], [ -125.117671577999914, 49.807280536000093 ], [ -125.119186832999986, 49.807292755000034 ], [ -125.119177072999946, 49.807800598000028 ], [ -125.119481352999955, 49.807803048000075 ], [ -125.119469738999982, 49.808407565000039 ], [ -125.11978977899993, 49.808410142000056 ], [ -125.119776232999982, 49.80911543200007 ], [ -125.120099709999948, 49.809118036000129 ], [ -125.120088802999931, 49.809686150000068 ], [ -125.120694321999963, 49.809691021000049 ], [ -125.120684695999898, 49.810192727000086 ], [ -125.120857845999964, 49.810194119000123 ], [ -125.120849614999898, 49.810623194000051 ], [ -125.121026465999975, 49.810624616000027 ], [ -125.121018307999933, 49.811049942000153 ], [ -125.121176386999963, 49.81105121300002 ], [ -125.121162242999944, 49.811788848000084 ], [ -125.121480621, 49.81179140600009 ], [ -125.121470105999961, 49.812339903000037 ], [ -125.123147189999926, 49.812353365000078 ], [ -125.123107386999919, 49.814433543000071 ], [ -125.123197915999981, 49.814434269000088 ], [ -125.123188277999986, 49.814938024000043 ], [ -125.123504834999949, 49.814940562000089 ], [ -125.123495506, 49.815428322000109 ], [ -125.123799153999983, 49.815430756000062 ], [ -125.123792042999938, 49.815802651000098 ], [ -125.12401676799999, 49.815804452000094 ], [ -125.12400758699998, 49.816284715000066 ], [ -125.12427358799998, 49.816286846000089 ], [ -125.124266240999987, 49.816671339000081 ], [ -125.124454003999929, 49.816672843000042 ], [ -125.124446440999961, 49.817068681000059 ], [ -125.124690819999941, 49.817070637000036 ], [ -125.124676759999929, 49.817806631000103 ], [ -125.125387938999921, 49.817812321000105 ], [ -125.125377787999966, 49.818344075 ], [ -125.126269037999947, 49.81835119900002 ], [ -125.126234983999922, 49.820137019000065 ], [ -125.127157011999884, 49.82014438200008 ], [ -125.127113374000018, 49.822435068000104 ], [ -125.127990521999934, 49.822442066000107 ], [ -125.127979399999973, 49.823026413000044 ], [ -125.128298844999961, 49.823028959000055 ], [ -125.128287997999948, 49.823599072000022 ], [ -125.129037252999936, 49.823605041000079 ], [ -125.12900251799999, 49.82543217000007 ], [ -125.129863733999926, 49.825439024000019 ], [ -125.12984432199994, 49.826461025000079 ], [ -125.130584267999922, 49.826466909000047 ], [ -125.13055318, 49.828104998000121 ], [ -125.131370537999928, 49.828111492000062 ], [ -125.131354666999982, 49.828948568000051 ], [ -125.132337752999916, 49.828956370000128 ], [ -125.132317921999984, 49.830003341000058 ], [ -125.13244761199995, 49.830004370000061 ], [ -125.132437365999962, 49.83054537400006 ], [ -125.133241815999924, 49.83055175000009 ], [ -125.133225344999943, 49.831422187000058 ], [ -125.133573455999922, 49.831424945000023 ], [ -125.133563849999945, 49.831932827000109 ], [ -125.133868275999944, 49.831935238000085 ], [ -125.133863933999947, 49.832164848000062 ], [ -125.134337848999962, 49.832168599000049 ], [ -125.134344904000031, 49.831795340000092 ], [ -125.139903135999987, 49.831839182000053 ], [ -125.139865436999969, 49.833846897000036 ], [ -125.142467061999966, 49.833867321000106 ], [ -125.14245355099996, 49.834588982000064 ], [ -125.141522157999972, 49.834874327000136 ], [ -125.136572993, 49.835805396000097 ], [ -125.136004215999947, 49.835864242000042 ], [ -125.136063388999958, 49.836838494000105 ], [ -125.1360968, 49.836906201000076 ], [ -125.134295877999975, 49.836882895000088 ], [ -125.134089660999962, 49.836854528000089 ], [ -125.133936485, 49.836833448000071 ], [ -125.133429482999972, 49.836763699000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22223584", "BldgCostT": "14853334", "sL_LossRatio": "0.897539453487598", "sL_AssetLoss": "14056.552", "sL_BldgLoss": "12616.31", "sL_StrLoss": "11448.92", "sL_NStrLoss": "1167.39", "sL_ContLoss": "1440.242", "geom_point": "0101000020E6100000BA897337BC4C5FC00F8B074AC0ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.208922436999927, 49.864326840000047 ], [ -125.208910136, 49.864057212000084 ], [ -125.208493020999924, 49.864065163000113 ], [ -125.20848029699998, 49.863786185000038 ], [ -125.205366544999976, 49.863763628000058 ], [ -125.205388392999978, 49.862505120000073 ], [ -125.204248204999956, 49.862526814000041 ], [ -125.204235930999957, 49.862257186000122 ], [ -125.20381883099999, 49.862265119000071 ], [ -125.203757476999968, 49.860916977000066 ], [ -125.202089112999957, 49.860948694000108 ], [ -125.20207685299999, 49.860679066000074 ], [ -125.201242675999978, 49.860694914000042 ], [ -125.201218162999979, 49.860155657000071 ], [ -125.200383993999964, 49.860171500000064 ], [ -125.200371742999948, 49.859901871000048 ], [ -125.199954660999964, 49.859909790000074 ], [ -125.199942410999981, 49.859640161000058 ], [ -125.19910825099997, 49.859655994000043 ], [ -125.199060170999942, 49.858597173000092 ], [ -125.195448277999958, 49.858570685000082 ], [ -125.195473220999958, 49.857151401000067 ], [ -125.192908968999973, 49.857132524000043 ], [ -125.192946899999953, 49.854980831000063 ], [ -125.187480691999909, 49.854940389000035 ], [ -125.187544516999964, 49.851343724000053 ], [ -125.193105172999978, 49.851384863000085 ], [ -125.193067250999945, 49.853536566000066 ], [ -125.198533296999969, 49.853576729000075 ], [ -125.198508451999956, 49.854996020000144 ], [ -125.20107258599991, 49.855014767000107 ], [ -125.20100981799996, 49.858611422000052 ], [ -125.200730449999952, 49.858609382000033 ], [ -125.20073981299997, 49.858815435000068 ], [ -125.202408104999961, 49.858783739000032 ], [ -125.20239584299999, 49.858514110000044 ], [ -125.204064120999959, 49.858482390000077 ], [ -125.204162293999957, 49.860639416000076 ], [ -125.204996469999941, 49.860623547000039 ], [ -125.205008745999919, 49.860893174000083 ], [ -125.205416507999985, 49.860885415000077 ], [ -125.205428977999972, 49.860166996000046 ], [ -125.21099072, 49.860207226000071 ], [ -125.210944410999943, 49.862893883 ], [ -125.211008024999941, 49.864287065000056 ], [ -125.208922436999927, 49.864326840000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16474500", "BldgCostT": "10890000", "sL_LossRatio": "0.99301671790738", "sL_AssetLoss": "6004.34", "sL_BldgLoss": "5962.41", "sL_StrLoss": "5672.09", "sL_NStrLoss": "290.32", "sL_ContLoss": "41.93", "geom_point": "0101000020E61000004637F3925C485FC0CFAA6CAB9BE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.129491697999953, 49.80515632200013 ], [ -125.129538844999928, 49.802673717000097 ], [ -125.124928575999945, 49.802636910000025 ], [ -125.124956374999954, 49.801180674000122 ], [ -125.123846723, 49.801171786000062 ], [ -125.123915465999971, 49.79757489100006 ], [ -125.129469541, 49.797619266000048 ], [ -125.12944188799996, 49.799075511000105 ], [ -125.130551488999913, 49.799084343000068 ], [ -125.130504400999911, 49.80156695900007 ], [ -125.132613941999949, 49.801583718000082 ], [ -125.13262752299994, 49.800865919000067 ], [ -125.138182004999976, 49.800909850000089 ], [ -125.13811437599999, 49.80450673700004 ], [ -125.135060240999948, 49.804482617000055 ], [ -125.135046695999918, 49.80520041200004 ], [ -125.129491697999953, 49.80515632200013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.919483712354026", "sL_AssetLoss": "6.508", "sL_BldgLoss": "5.984", "sL_StrLoss": "0.564", "sL_NStrLoss": "5.42", "sL_ContLoss": "0.524", "geom_point": "0101000020E610000032FB23A998475FC0B5336D7B92E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.118053305999936, 49.80071714400006 ], [ -125.12055288199997, 49.800671414000107 ], [ -125.120588230999957, 49.801480352000098 ], [ -125.119338422999959, 49.801503224000115 ], [ -125.119350196999974, 49.80177287000005 ], [ -125.118516986999921, 49.801788111000086 ], [ -125.118528756999936, 49.802057757000121 ], [ -125.116862325999975, 49.802088221000062 ], [ -125.116827039999976, 49.801279281000092 ], [ -125.118076842999969, 49.801256437000035 ], [ -125.118053305999936, 49.80071714400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47761828", "BldgCostT": "31257410", "sL_LossRatio": "0.930308135928468", "sL_AssetLoss": "17744.539", "sL_BldgLoss": "16507.889", "sL_StrLoss": "15164.5", "sL_NStrLoss": "1343.389", "sL_ContLoss": "1236.65", "geom_point": "0101000020E61000002AA73D2567495FC0A380FE8C9CE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.149985329999964, 49.822477306000039 ], [ -125.149999479, 49.821714680000049 ], [ -125.146949060999987, 49.821690930000038 ], [ -125.146956943999925, 49.821267547000055 ], [ -125.14527132299996, 49.82125438700011 ], [ -125.145280704999934, 49.820751471000051 ], [ -125.142962564999976, 49.820733329000092 ], [ -125.142970902999949, 49.820287497000052 ], [ -125.142437548999965, 49.82028331600003 ], [ -125.1424217429999, 49.821127886000056 ], [ -125.136864806999938, 49.821084171000074 ], [ -125.13687772399993, 49.820398446000077 ], [ -125.134646862999901, 49.820380817000093 ], [ -125.13471478799994, 49.816784011000031 ], [ -125.138163171999963, 49.816811243000089 ], [ -125.1381661599999, 49.816652398000066 ], [ -125.139894674999979, 49.816666007000059 ], [ -125.139910739999891, 49.81581003900012 ], [ -125.140113564999979, 49.815811634000106 ], [ -125.140125906999941, 49.815153864000067 ], [ -125.139953496999937, 49.815157049000113 ], [ -125.139917811999965, 49.814348123000059 ], [ -125.140305762999944, 49.814340956000095 ], [ -125.140308824000016, 49.814177845000096 ], [ -125.141665093, 49.814188500000064 ], [ -125.14167339399999, 49.81374527800007 ], [ -125.143068424999967, 49.813756219 ], [ -125.143084163, 49.812914581000051 ], [ -125.142888441999972, 49.812913047000059 ], [ -125.142892118999939, 49.812716411000096 ], [ -125.141707207999985, 49.812707117000052 ], [ -125.14177456799996, 49.809110269000023 ], [ -125.147330055999973, 49.809153735000081 ], [ -125.147326397999947, 49.809350372000075 ], [ -125.148511222999957, 49.809359606000044 ], [ -125.148483095999907, 49.81087348100008 ], [ -125.148678809999964, 49.810875005000057 ], [ -125.148644624999974, 49.81271524700005 ], [ -125.148870314999911, 49.81271700500016 ], [ -125.148803508999947, 49.816313839000038 ], [ -125.147182687999958, 49.816301211000059 ], [ -125.147166540999976, 49.817168860000095 ], [ -125.148586299999948, 49.817179923000097 ], [ -125.148576955999928, 49.817682841000106 ], [ -125.15089494299994, 49.817700864000109 ], [ -125.150894035999983, 49.817749784000057 ], [ -125.1519765419999, 49.81775818400007 ], [ -125.152004532999911, 49.816245644000055 ], [ -125.157560895999907, 49.816288590000056 ], [ -125.157521017999926, 49.818457689000077 ], [ -125.15982804399998, 49.818475437000117 ], [ -125.15976208899994, 49.822072250000048 ], [ -125.155551303999971, 49.822039819000103 ], [ -125.155542447999935, 49.82252035500003 ], [ -125.149985329999964, 49.822477306000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6784250", "BldgCostT": "4415000", "sL_LossRatio": "0.987337826781471", "sL_AssetLoss": "5133.4", "sL_BldgLoss": "5068.4", "sL_StrLoss": "4808.76", "sL_NStrLoss": "259.64", "sL_ContLoss": "65", "geom_point": "0101000020E6100000DDAE3CEDD54D5FC061E1E2B0CDEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.214542269999953, 49.868537365000059 ], [ -125.214473862999924, 49.867041841000074 ], [ -125.213050241999923, 49.867031617000073 ], [ -125.213112075999931, 49.863434997000063 ], [ -125.218674221999933, 49.863474836000087 ], [ -125.218639814999918, 49.865490508000079 ], [ -125.219412127999959, 49.865475720000084 ], [ -125.219436846999912, 49.866014970000059 ], [ -125.220271106, 49.865998989000076 ], [ -125.220283469999956, 49.866268614000063 ], [ -125.220700602999955, 49.866260620000062 ], [ -125.220737702999926, 49.867069496000049 ], [ -125.219069147999974, 49.867101460000136 ], [ -125.21905679, 49.866831835000021 ], [ -125.218639652999968, 49.866839822000053 ], [ -125.218627297999916, 49.866570196000048 ], [ -125.218621380999977, 49.866570309000046 ], [ -125.218612825999955, 49.867071459000073 ], [ -125.2182326399999, 49.867068745000076 ], [ -125.218234867999968, 49.867117432000022 ], [ -125.216566309999976, 49.86714936000002 ], [ -125.216603342999917, 49.867958237000025 ], [ -125.216186195999981, 49.867966215000123 ], [ -125.216210881999942, 49.868505467000077 ], [ -125.214542269999953, 49.868537365000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3132667", "BldgCostT": "1896667", "sL_LossRatio": "0.978822340782831", "sL_AssetLoss": "3632.46", "sL_BldgLoss": "3555.533", "sL_StrLoss": "3360.793", "sL_NStrLoss": "194.74", "sL_ContLoss": "76.927", "geom_point": "0101000020E61000005C51EF4EE34B5FC0966CC881CFEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.184515456000014, 49.866684285000126 ], [ -125.184568138999936, 49.863727107000052 ], [ -125.185843859999977, 49.864786248000023 ], [ -125.186917434999927, 49.865677520000091 ], [ -125.18693786599998, 49.865694506000089 ], [ -125.187924099999961, 49.866513188000042 ], [ -125.188162864000034, 49.866711393000045 ], [ -125.184515456000014, 49.866684285000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8778917", "BldgCostT": "5371667", "sL_LossRatio": "0.714316335013411", "sL_AssetLoss": "9284.094", "sL_BldgLoss": "6631.78", "sL_StrLoss": "5406.78", "sL_NStrLoss": "1225", "sL_ContLoss": "2652.314", "geom_point": "0101000020E610000009D5F644514A5FC0A679F0A8EBEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.159144012999917, 49.836690406000059 ], [ -125.159153102999952, 49.83619526899999 ], [ -125.159079841999969, 49.836194706000043 ], [ -125.159140274999956, 49.832902742000087 ], [ -125.16000009899993, 49.833150830000108 ], [ -125.16299374, 49.834913315000087 ], [ -125.164708268999931, 49.836436588000048 ], [ -125.164702863999935, 49.836732988000058 ], [ -125.159144012999917, 49.836690406000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.992887869228563", "sL_AssetLoss": "348.7", "sL_BldgLoss": "346.22", "sL_StrLoss": "337", "sL_NStrLoss": "9.22", "sL_ContLoss": "2.48", "geom_point": "0101000020E610000033633C103A4B5FC00ED9FE9D06ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.174934762999953, 49.851206815000062 ], [ -125.176185806999953, 49.851183327000115 ], [ -125.176234258999912, 49.852261862000098 ], [ -125.174566162999952, 49.852293178000124 ], [ -125.174529851999964, 49.851484276000036 ], [ -125.174946868999939, 49.85147644900006 ], [ -125.174934762999953, 49.851206815000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993303571428572", "sL_AssetLoss": "358.4", "sL_BldgLoss": "356", "sL_StrLoss": "347", "sL_NStrLoss": "9", "sL_ContLoss": "2.4", "geom_point": "0101000020E610000012DB9BE7214B5FC06E18E4B27AEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.173490160999947, 49.846916142000033 ], [ -125.174378214999962, 49.846899480000054 ], [ -125.174615476999946, 49.847169857000068 ], [ -125.174757181999951, 49.847251053000072 ], [ -125.17478950899999, 49.84797120700005 ], [ -125.173121558999966, 49.84800250100006 ], [ -125.173085276999984, 49.847193597000114 ], [ -125.173502257, 49.847185776000074 ], [ -125.173490160999947, 49.846916142000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995023347259769", "sL_AssetLoss": "325.52", "sL_BldgLoss": "323.9", "sL_StrLoss": "309", "sL_NStrLoss": "14.9", "sL_ContLoss": "1.62", "geom_point": "0101000020E6100000177363BCDE4C5FC07C4344DEB0F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.200704228999967, 49.879865287 ], [ -125.201696076999923, 49.879846448000094 ], [ -125.201745144999933, 49.880924958000023 ], [ -125.200704586999919, 49.880944722000088 ], [ -125.200493355999939, 49.880948733000132 ], [ -125.200444312999963, 49.879870222000044 ], [ -125.200704228999967, 49.879865287 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "0.975070578745715", "sL_AssetLoss": "793.44", "sL_BldgLoss": "773.66", "sL_StrLoss": "668.1", "sL_NStrLoss": "105.56", "sL_ContLoss": "19.78", "geom_point": "0101000020E6100000D8548ADBB04B5FC08B1CA6A672EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.18177914099995, 49.863556922000051 ], [ -125.181813976999976, 49.861607975000013 ], [ -125.182210793999943, 49.861769811000066 ], [ -125.182234333999972, 49.861789354000088 ], [ -125.183902314999955, 49.863174309 ], [ -125.184351610999954, 49.863547320000052 ], [ -125.184386609999976, 49.86357638000009 ], [ -125.18177914099995, 49.863556922000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11356386", "BldgCostT": "6282079", "sL_LossRatio": "0.981587281070251", "sL_AssetLoss": "6189.2", "sL_BldgLoss": "6075.24", "sL_StrLoss": "5630.84", "sL_NStrLoss": "444.4", "sL_ContLoss": "113.96", "geom_point": "0101000020E6100000230F0A6BDF4A5FC04E13F04A16EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.170106022000013, 49.84590012700005 ], [ -125.170093945999952, 49.845630492000083 ], [ -125.16971437699999, 49.845637600000032 ], [ -125.167592132999957, 49.845677321000018 ], [ -125.167575570999972, 49.845307061000042 ], [ -125.167543885999976, 49.844598778000112 ], [ -125.167960845999943, 49.844590977000067 ], [ -125.167936716999961, 49.844051706000101 ], [ -125.168353672999956, 49.844043904000102 ], [ -125.168341606999903, 49.843774269000093 ], [ -125.168758558999968, 49.843766465000016 ], [ -125.168746489999975, 49.843496830000078 ], [ -125.169163441999927, 49.843489025000103 ], [ -125.169139300999959, 49.842949754000074 ], [ -125.169556246999946, 49.842941948000025 ], [ -125.169544173999952, 49.842672313000044 ], [ -125.169961115999968, 49.842664505000066 ], [ -125.169949042999932, 49.842394870000085 ], [ -125.170320051999951, 49.842387921000082 ], [ -125.170365981999936, 49.8423870600001 ], [ -125.170363964999964, 49.842342024000068 ], [ -125.170360911999978, 49.842273850000041 ], [ -125.170393264999944, 49.842311400000028 ], [ -125.172058833999984, 49.844244368000069 ], [ -125.171284434, 49.844258883000158 ], [ -125.171296517999934, 49.844528518000118 ], [ -125.17171347599999, 49.844520704000047 ], [ -125.171773902999945, 49.845868877000022 ], [ -125.170106022000013, 49.84590012700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67202167", "BldgCostT": "39141667", "sL_LossRatio": "0.774034279633484", "sL_AssetLoss": "31883.013", "sL_BldgLoss": "24678.545", "sL_StrLoss": "20156.945", "sL_NStrLoss": "4521.6", "sL_ContLoss": "7204.468", "geom_point": "0101000020E61000009CCD4ECCDB4C5FC0E2C069C97CF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.206435170999953, 49.886985416000073 ], [ -125.206443543999967, 49.886502680000035 ], [ -125.204089365999977, 49.886547475000079 ], [ -125.204052517999955, 49.885738594000053 ], [ -125.204887124999956, 49.885722719000114 ], [ -125.204874837999938, 49.885453092 ], [ -125.205709440999968, 49.885437211000074 ], [ -125.205684857999969, 49.884897957000113 ], [ -125.205267559999939, 49.884905898000063 ], [ -125.205255270999942, 49.884636272000073 ], [ -125.201916912999948, 49.884699746000081 ], [ -125.201904642999935, 49.884430118000097 ], [ -125.201070054999931, 49.884445972000023 ], [ -125.201057788999918, 49.884176344000053 ], [ -125.20064049699999, 49.884184267000066 ], [ -125.200566923999986, 49.882566501000042 ], [ -125.200149644999925, 49.882574424000033 ], [ -125.20011286799992, 49.881765539000071 ], [ -125.200704851999973, 49.881754300000054 ], [ -125.201364680999987, 49.88174176800004 ], [ -125.201376946000011, 49.882011396000152 ], [ -125.20179421899999, 49.882003470000036 ], [ -125.201843292999925, 49.883081980000014 ], [ -125.202260573999951, 49.883074052 ], [ -125.202285118999939, 49.883613306000065 ], [ -125.202702403999922, 49.883605376000069 ], [ -125.202714679999985, 49.88387500400006 ], [ -125.203131967999965, 49.883867071000083 ], [ -125.203119690999969, 49.883597445000106 ], [ -125.203954261999982, 49.883581576000097 ], [ -125.203892856999943, 49.882233441000025 ], [ -125.204310132999979, 49.882225504000083 ], [ -125.20429785, 49.881955878000063 ], [ -125.20513239099995, 49.881940002000078 ], [ -125.205107818999949, 49.881400747000079 ], [ -125.204273284999957, 49.881416622000053 ], [ -125.204256038999972, 49.881038020000091 ], [ -125.203156997999926, 49.88103002900008 ], [ -125.203173398999979, 49.880088233000052 ], [ -125.202960111999971, 49.880092288000085 ], [ -125.202947835999936, 49.879822660000045 ], [ -125.202530583999973, 49.879830591000022 ], [ -125.202518311999981, 49.87956096300011 ], [ -125.201683808999974, 49.879576820000061 ], [ -125.201651467999952, 49.878865958000063 ], [ -125.201634743999946, 49.878498308000104 ], [ -125.203201604999933, 49.878468533000103 ], [ -125.203209721999926, 49.87800242100009 ], [ -125.199139730999917, 49.877972732000075 ], [ -125.199151440999913, 49.877303642000072 ], [ -125.19827283799999, 49.877297213000091 ], [ -125.198277876999938, 49.877009606000023 ], [ -125.197237716999936, 49.877001986000039 ], [ -125.19724274, 49.876715583000106 ], [ -125.196408599999955, 49.876709465000097 ], [ -125.196420025999956, 49.876058869000119 ], [ -125.194262158999933, 49.876043012000082 ], [ -125.194277960999955, 49.875145581 ], [ -125.193560087, 49.875140297000051 ], [ -125.193574964, 49.874296106000031 ], [ -125.192253289999954, 49.874286365000046 ], [ -125.192301768999968, 49.871539616000078 ], [ -125.194899126999957, 49.872171070000057 ], [ -125.195025888999965, 49.872201893000089 ], [ -125.195807189999982, 49.872463002000053 ], [ -125.196456081999926, 49.872867294000073 ], [ -125.197596396999927, 49.873577707 ], [ -125.198656880999962, 49.874238403000085 ], [ -125.199117486999967, 49.874465602000043 ], [ -125.199895291999923, 49.874772602000064 ], [ -125.199999093999963, 49.874803843000024 ], [ -125.201532325999935, 49.875265601000102 ], [ -125.20188648, 49.875457993000062 ], [ -125.202103598999912, 49.875644714000025 ], [ -125.202188013999915, 49.875717310000105 ], [ -125.203705201, 49.877819206 ], [ -125.204160221999956, 49.878297304000114 ], [ -125.204722510999915, 49.878519002000118 ], [ -125.204493599, 49.879124311000041 ], [ -125.204212626999976, 49.880084503000035 ], [ -125.204313390999943, 49.880282994000062 ], [ -125.204718984999928, 49.880564695000075 ], [ -125.206084408999956, 49.881009896000073 ], [ -125.206167880999914, 49.881249709000045 ], [ -125.206085515000012, 49.881586302000116 ], [ -125.208629488999918, 49.881861013000055 ], [ -125.208461807999967, 49.88270959900013 ], [ -125.208448296999961, 49.882759122000024 ], [ -125.2082286, 49.883565811000089 ], [ -125.208166988999935, 49.883667808000098 ], [ -125.207529718999936, 49.884150606000048 ], [ -125.207246011, 49.884867086000092 ], [ -125.207237494999973, 49.885119683000056 ], [ -125.20723308, 49.885209604000117 ], [ -125.207757398999959, 49.886031700000096 ], [ -125.207478907, 49.886789045000114 ], [ -125.207452041999929, 49.886862938000064 ], [ -125.207446561999944, 49.88691491000008 ], [ -125.206662420999933, 49.886919799000097 ], [ -125.206435170999953, 49.886985416000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994373669941405", "sL_AssetLoss": "343.03", "sL_BldgLoss": "341.1", "sL_StrLoss": "325", "sL_NStrLoss": "16.1", "sL_ContLoss": "1.93", "geom_point": "0101000020E6100000790AD2EFEF4A5FC06F4F6759BDEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.170713685999971, 49.849127079000084 ], [ -125.171501946999953, 49.849112309000084 ], [ -125.171538206999941, 49.84992121300013 ], [ -125.170944301999896, 49.849932341000056 ], [ -125.170287191999975, 49.84994465100003 ], [ -125.170250955999933, 49.849135746000094 ], [ -125.170713685999971, 49.849127079000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32899656", "BldgCostT": "21272694", "sL_LossRatio": "0.867914977540944", "sL_AssetLoss": "12102.9574", "sL_BldgLoss": "10504.338", "sL_StrLoss": "7478.268", "sL_NStrLoss": "3026.07", "sL_ContLoss": "1598.6194", "geom_point": "0101000020E61000004C4432C38A495FC0A92F85E63EEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.146760848999975, 49.847814161000038 ], [ -125.146774418999911, 49.84708593200002 ], [ -125.145800956999935, 49.847078338000031 ], [ -125.145868044999986, 49.843481659000112 ], [ -125.15004699699999, 49.843514199000047 ], [ -125.151427707999943, 49.843524915000039 ], [ -125.151414212999967, 49.844253148000128 ], [ -125.152387615999928, 49.84426069200012 ], [ -125.152321037999968, 49.847857372000057 ], [ -125.14897530199994, 49.847831404000047 ], [ -125.146760848999975, 49.847814161000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "512396714", "BldgCostT": "311734786", "sL_LossRatio": "0.784145776050658", "sL_AssetLoss": "231074.445", "sL_BldgLoss": "181196.05", "sL_StrLoss": "145962.65", "sL_NStrLoss": "35233.4", "sL_ContLoss": "49878.395", "geom_point": "0101000020E6100000C1D874CA84495FC07EF73A88A1ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.144083097999896, 49.869708203000101 ], [ -125.143458089999939, 49.868775294000066 ], [ -125.143123617999947, 49.868466296000101 ], [ -125.143588899999926, 49.868286800000114 ], [ -125.143585602999948, 49.868215584000012 ], [ -125.143278384999974, 49.868185701000066 ], [ -125.142822097999982, 49.868265507000061 ], [ -125.141457508999935, 49.868884994000062 ], [ -125.139785312999905, 49.869427602000059 ], [ -125.13820969799994, 49.869699706000077 ], [ -125.136622204999981, 49.869666895000172 ], [ -125.135720205999945, 49.869421903000102 ], [ -125.135080998999953, 49.869155605000046 ], [ -125.133232099999958, 49.867912288000134 ], [ -125.132774786999946, 49.867631694000103 ], [ -125.132521891999914, 49.867573297000085 ], [ -125.132059089999956, 49.86752770600004 ], [ -125.131395101999928, 49.867594688000111 ], [ -125.13060995399999, 49.867994290000055 ], [ -125.130629316999929, 49.867858272000085 ], [ -125.130657415999949, 49.86766056700003 ], [ -125.13104344599995, 49.864946671000027 ], [ -125.131134584999984, 49.864540919000106 ], [ -125.131208867999987, 49.864203055000146 ], [ -125.131698440999955, 49.861976870000106 ], [ -125.131902435999947, 49.861049046000048 ], [ -125.132112876999926, 49.860091928000095 ], [ -125.132240328999984, 49.859512329000104 ], [ -125.132694569999927, 49.857446255000063 ], [ -125.132972274999986, 49.856003778000087 ], [ -125.133070345999926, 49.855494356000058 ], [ -125.133282725999933, 49.854391105000047 ], [ -125.133289068999957, 49.854358131000019 ], [ -125.133339614999912, 49.854095599000061 ], [ -125.133457921999963, 49.853481031000022 ], [ -125.133429515999936, 49.851822535000061 ], [ -125.133347906000012, 49.851727455000066 ], [ -125.133213913999981, 49.851681413000051 ], [ -125.132714816999965, 49.851604626000089 ], [ -125.133423810999915, 49.851609353000086 ], [ -125.133415090999961, 49.851116451000031 ], [ -125.133397253999959, 49.850221529000123 ], [ -125.133380871999989, 49.849618866000057 ], [ -125.133344172999983, 49.848965504000056 ], [ -125.133312389999972, 49.848399433000061 ], [ -125.133254011999924, 49.847360608000102 ], [ -125.133315586999942, 49.846307112000048 ], [ -125.133457012999955, 49.84581359900006 ], [ -125.133709596999921, 49.84545013000006 ], [ -125.133812497999912, 49.845302058000144 ], [ -125.134159585999939, 49.844802569000073 ], [ -125.13419269900001, 49.844754942000122 ], [ -125.134286978999981, 49.844619186000031 ], [ -125.134593097999982, 49.844178695000068 ], [ -125.134949874999933, 49.843469291000176 ], [ -125.13501401099991, 49.842873497 ], [ -125.134950230999934, 49.842578424000052 ], [ -125.13490641599995, 49.842375442000041 ], [ -125.134895121999989, 49.842323105000027 ], [ -125.134807418999969, 49.842173820000035 ], [ -125.1333189899999, 49.839639310000088 ], [ -125.133065979999969, 49.839208521000103 ], [ -125.131528578999948, 49.836590298000118 ], [ -125.131686631999926, 49.836550249000084 ], [ -125.132010379999912, 49.836468196000084 ], [ -125.132345601999958, 49.836457415000019 ], [ -125.133429482999972, 49.836763699000116 ], [ -125.133936485, 49.836833448000071 ], [ -125.134089660999962, 49.836854528000089 ], [ -125.134295877999975, 49.836882895000088 ], [ -125.1360968, 49.836906201000076 ], [ -125.136063388999958, 49.836838494000105 ], [ -125.136004215999947, 49.835864242000042 ], [ -125.136572993, 49.835805396000097 ], [ -125.141522157999972, 49.834874327000136 ], [ -125.14245355099996, 49.834588982000064 ], [ -125.142447330999929, 49.834921184000059 ], [ -125.146288479999981, 49.83495122600003 ], [ -125.146221436999966, 49.838547948000041 ], [ -125.144406865999926, 49.838533773000101 ], [ -125.144386329999946, 49.83963309100006 ], [ -125.141450309999968, 49.839610091000047 ], [ -125.141453693999949, 49.839686691000054 ], [ -125.140202918999989, 49.839709801000033 ], [ -125.14019808099999, 49.839600259000115 ], [ -125.138827146999944, 49.839589476000079 ], [ -125.138831342999936, 49.839366330000061 ], [ -125.137279041999989, 49.839354102000087 ], [ -125.137224679999989, 49.842239807000112 ], [ -125.137220612999954, 49.842455664000028 ], [ -125.136962818999933, 49.842453631000133 ], [ -125.136954728999925, 49.842882893000116 ], [ -125.137788296999943, 49.842889464000066 ], [ -125.137720574999932, 49.846486142000032 ], [ -125.136713866999926, 49.846478204000078 ], [ -125.136681037999907, 49.848219463000049 ], [ -125.135987838999981, 49.848213993000051 ], [ -125.135995495999964, 49.848387690000024 ], [ -125.136808072999941, 49.848394103000054 ], [ -125.136807812999976, 49.848407993000158 ], [ -125.13683105299999, 49.848407565000031 ], [ -125.136866730999913, 49.849216487000106 ], [ -125.13710742799995, 49.849212048000069 ], [ -125.137144464999949, 49.847246549 ], [ -125.142704576999932, 49.847290248000064 ], [ -125.142704421999923, 49.847298517000119 ], [ -125.144083624999951, 49.847309313000054 ], [ -125.144038956, 49.849698898000021 ], [ -125.144016389999948, 49.850905973000167 ], [ -125.138455839999935, 49.850862340000106 ], [ -125.138455994999973, 49.850854071000114 ], [ -125.137737815999913, 49.850848415000051 ], [ -125.137725744999941, 49.851489354000087 ], [ -125.141686077, 49.851520485000073 ], [ -125.141623120999967, 49.854878585000037 ], [ -125.14161864899998, 49.855117122000081 ], [ -125.137349306999937, 49.855083556000082 ], [ -125.137302223999967, 49.857582124000025 ], [ -125.136646158999952, 49.857576951000063 ], [ -125.136639816999889, 49.857913240000087 ], [ -125.136563677999931, 49.857912639000091 ], [ -125.136554145999966, 49.858418041000043 ], [ -125.136273806999924, 49.858415829000108 ], [ -125.136259876999986, 49.859154146000023 ], [ -125.13610534699994, 49.859152926000057 ], [ -125.136101964999938, 49.859332124000055 ], [ -125.137685111999986, 49.85934460699999 ], [ -125.137624657999964, 49.862553793000068 ], [ -125.141698856999952, 49.862585812000113 ], [ -125.141697916999988, 49.862635867000158 ], [ -125.142828137, 49.862644723000116 ], [ -125.142828316999939, 49.862635130000072 ], [ -125.14415239799996, 49.862645490000055 ], [ -125.144163812000016, 49.862034973000029 ], [ -125.144111691999967, 49.862035937000066 ], [ -125.144063936999899, 49.860957382000016 ], [ -125.144328028999936, 49.860952495000078 ], [ -125.144335079999919, 49.860575332000103 ], [ -125.143095423999981, 49.860565635000071 ], [ -125.143104088, 49.860102777000108 ], [ -125.14218941699994, 49.860095613000041 ], [ -125.142208022999924, 49.859102687000117 ], [ -125.141894917999949, 49.859108474000031 ], [ -125.141882992999967, 49.858838834000025 ], [ -125.141465903999944, 49.858846543000013 ], [ -125.1414897499999, 49.8593858220001 ], [ -125.137735892999984, 49.859455132000043 ], [ -125.137723992, 49.859185493000062 ], [ -125.137306896999959, 49.859193185 ], [ -125.137271198999926, 49.858384265000083 ], [ -125.137688285999971, 49.858376572000111 ], [ -125.137676384999963, 49.858106932000076 ], [ -125.140178886999976, 49.858060740000042 ], [ -125.140166971999946, 49.857791101000089 ], [ -125.14058405399993, 49.857783397000098 ], [ -125.140572135999932, 49.85751375600006 ], [ -125.142238371999937, 49.857482966000077 ], [ -125.142256806999967, 49.856499001000067 ], [ -125.143700032999931, 49.856510301000093 ], [ -125.147818046999944, 49.856542440000091 ], [ -125.147809430999985, 49.857005300000047 ], [ -125.148724041999984, 49.857012417000057 ], [ -125.148715900999932, 49.857450206000046 ], [ -125.151005583, 49.857467990000053 ], [ -125.15099904099992, 49.857320679000097 ], [ -125.152250260999892, 49.8572974450001 ], [ -125.152258271999969, 49.857477699000093 ], [ -125.152511709999914, 49.857479662000074 ], [ -125.15251515199995, 49.857293760000154 ], [ -125.153470082999917, 49.857301149000129 ], [ -125.154103113999952, 49.857306043000087 ], [ -125.154138201999956, 49.855406996000127 ], [ -125.158549441999966, 49.85544099800012 ], [ -125.158553136999927, 49.855240006000059 ], [ -125.164114236999978, 49.855282618000054 ], [ -125.164101419999938, 49.855984650000039 ], [ -125.164434432999897, 49.85598719300009 ], [ -125.16444880399996, 49.855199755000022 ], [ -125.166107422999957, 49.855212404000071 ], [ -125.16614746799992, 49.853013792000105 ], [ -125.170843676999951, 49.853049470000052 ], [ -125.170837105, 49.852902822000019 ], [ -125.171040945999948, 49.852899002000122 ], [ -125.172088195999919, 49.852879376000082 ], [ -125.172118739, 49.853560519000041 ], [ -125.172136559999956, 49.853957914000063 ], [ -125.171691838999919, 49.853966250000092 ], [ -125.171666476999945, 49.855368053000035 ], [ -125.17415535399995, 49.855386859000049 ], [ -125.174141397999946, 49.856160506000016 ], [ -125.177550470999947, 49.856186175000062 ], [ -125.177541822999942, 49.856667609000141 ], [ -125.177850458999941, 49.85666992800008 ], [ -125.177851704999924, 49.856600481000022 ], [ -125.177853894999927, 49.856478594000102 ], [ -125.178493928999941, 49.856483400000094 ], [ -125.178498583999954, 49.856224010000105 ], [ -125.18203388699996, 49.85625048600015 ], [ -125.182798556999956, 49.857359104000075 ], [ -125.182754363999948, 49.857614051000049 ], [ -125.182524986999937, 49.857774463000119 ], [ -125.181988380999883, 49.857909689000046 ], [ -125.18128197299994, 49.857982844000048 ], [ -125.18066008, 49.858143181000074 ], [ -125.18044278499994, 49.858199227000114 ], [ -125.179914916999962, 49.858529379000103 ], [ -125.179691847999891, 49.858830481000034 ], [ -125.179633658999961, 49.85939220900007 ], [ -125.179852717999964, 49.859980239000031 ], [ -125.179902526999939, 49.860113956000127 ], [ -125.179850114999923, 49.860807007000119 ], [ -125.181004498, 49.86127783400007 ], [ -125.176080261999914, 49.861240882000054 ], [ -125.176082961999967, 49.86109087700008 ], [ -125.175269862999926, 49.861084753000114 ], [ -125.175268548999966, 49.861157763000051 ], [ -125.16970672299999, 49.861115718000065 ], [ -125.169726555999944, 49.860022234000063 ], [ -125.168059727999918, 49.860009579000092 ], [ -125.16808126299999, 49.858824555000105 ], [ -125.16766907, 49.858821422000048 ], [ -125.16765475299999, 49.859608856000101 ], [ -125.164279879999967, 49.859583143000059 ], [ -125.164219910999989, 49.862867735000059 ], [ -125.15933026499999, 49.862830296000013 ], [ -125.159311774999964, 49.863837056000115 ], [ -125.154743374999896, 49.86380187900005 ], [ -125.153749638999969, 49.863794202000122 ], [ -125.153768464999956, 49.862775879000068 ], [ -125.151691448999941, 49.862759804000071 ], [ -125.151659011, 49.864510047000074 ], [ -125.150291558999967, 49.864499441000099 ], [ -125.150271719999949, 49.86556817900005 ], [ -125.148859992999974, 49.865557213000052 ], [ -125.148879444999949, 49.865995523000102 ], [ -125.14832839799999, 49.866005739000109 ], [ -125.148323384, 49.866275126000083 ], [ -125.148308247999964, 49.866275008000109 ], [ -125.148307337999981, 49.866323921000109 ], [ -125.150982420999938, 49.866344699000052 ], [ -125.150977167999955, 49.866226465000068 ], [ -125.15222861899997, 49.866203229000043 ], [ -125.152235338999915, 49.866354408000085 ], [ -125.153055569999978, 49.866360756000077 ], [ -125.15294650899996, 49.866547894000099 ], [ -125.152514217999965, 49.866835595000076 ], [ -125.152072700999923, 49.866925301000137 ], [ -125.151390702999933, 49.866919588000037 ], [ -125.15066308499999, 49.866519394000086 ], [ -125.150118518999975, 49.866448201000068 ], [ -125.149417699999972, 49.866677492000065 ], [ -125.148933380999921, 49.867019293000098 ], [ -125.148020493999923, 49.867818296000102 ], [ -125.147598794999965, 49.868024801000054 ], [ -125.147483492999967, 49.868232713000026 ], [ -125.147552809999965, 49.868520400000094 ], [ -125.146852482999918, 49.869404803000094 ], [ -125.145052885999974, 49.869941793000088 ], [ -125.144816483999961, 49.869945994000091 ], [ -125.14460868599997, 49.869933195000065 ], [ -125.144083097999896, 49.869708203000101 ] ], [ [ -125.14455537500001, 49.869583799000139 ], [ -125.144568422999953, 49.868885699000039 ], [ -125.144272454999978, 49.868883386000057 ], [ -125.144259255999899, 49.869589278000042 ], [ -125.14455537500001, 49.869583799000139 ] ], [ [ -125.138724563999972, 49.868050855000028 ], [ -125.13874074099999, 49.867191249000051 ], [ -125.136294459999959, 49.86717197800003 ], [ -125.136274895999989, 49.868208678 ], [ -125.136563801999941, 49.868210957000016 ], [ -125.136562043999945, 49.868304076000179 ], [ -125.137672505999916, 49.868312828000064 ], [ -125.137677597999982, 49.8680426150001 ], [ -125.138724563999972, 49.868050855000028 ] ], [ [ -125.16209883399999, 49.859254406000098 ], [ -125.162105971999978, 49.85886439600003 ], [ -125.159636989999967, 49.858845470000091 ], [ -125.159633299999939, 49.859046460000108 ], [ -125.158045275999939, 49.859034256000044 ], [ -125.158023283999938, 49.860230042000083 ], [ -125.158705487999924, 49.860235286000062 ], [ -125.158723988999924, 49.859228521000063 ], [ -125.16209883399999, 49.859254406000098 ] ], [ [ -125.137090824999973, 49.85009307200005 ], [ -125.137092164999927, 49.850021909000105 ], [ -125.136850720999959, 49.850026363000147 ], [ -125.13684949899995, 49.850091169000066 ], [ -125.137090824999973, 49.85009307200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993839595924207", "sL_AssetLoss": "342.51", "sL_BldgLoss": "340.4", "sL_StrLoss": "323", "sL_NStrLoss": "17.4", "sL_ContLoss": "2.11", "geom_point": "0101000020E61000004076EEA8F74A5FC0DE384ADAE4EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.171021180999944, 49.850200763000046 ], [ -125.171967298999945, 49.850183032000075 ], [ -125.172015653999978, 49.851261570000062 ], [ -125.171328698999929, 49.851274445000072 ], [ -125.170764606999981, 49.851285013000073 ], [ -125.170716277999958, 49.850206474000096 ], [ -125.171021180999944, 49.850200763000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245349623", "BldgCostT": "167423706", "sL_LossRatio": "0.921244590551334", "sL_AssetLoss": "100273.62", "sL_BldgLoss": "92376.53", "sL_StrLoss": "80116.44", "sL_NStrLoss": "12260.09", "sL_ContLoss": "7897.09", "geom_point": "0101000020E6100000AD0CD38CBF475FC0ADC9F89CE0ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.125276279999923, 49.86837325900013 ], [ -125.124998863999963, 49.868089163000086 ], [ -125.124826153999948, 49.867737979000097 ], [ -125.124817372999971, 49.867469009000033 ], [ -125.124850937999895, 49.867182392000039 ], [ -125.124882250999931, 49.86691466900011 ], [ -125.12464303299997, 49.86690723400006 ], [ -125.121460059999919, 49.86680813300007 ], [ -125.121446103000025, 49.866808068000047 ], [ -125.12064919099997, 49.86680610300003 ], [ -125.119264000999962, 49.86687590200011 ], [ -125.11906279599999, 49.86685090600011 ], [ -125.118962567999958, 49.866809148000073 ], [ -125.118855858999964, 49.866764716000041 ], [ -125.118743331999951, 49.866685570000136 ], [ -125.118672303999929, 49.86654741800006 ], [ -125.118809959999979, 49.865392053000072 ], [ -125.118739614999939, 49.865073128000091 ], [ -125.118311279999944, 49.865072386000065 ], [ -125.117848902999953, 49.865104637000101 ], [ -125.11679910499997, 49.865225787000085 ], [ -125.116785371999953, 49.865227363000038 ], [ -125.116448508999952, 49.863439587000052 ], [ -125.116231696999989, 49.862425211000073 ], [ -125.11582200399999, 49.861676407000068 ], [ -125.115825715999961, 49.860189017000053 ], [ -125.115825517999923, 49.860054117000097 ], [ -125.11467217299996, 49.857997125000111 ], [ -125.11404499299999, 49.85756668100003 ], [ -125.113903047999912, 49.857500791000106 ], [ -125.11370334399993, 49.857402046000047 ], [ -125.112016309999916, 49.856986382000045 ], [ -125.111541053999986, 49.856755013000033 ], [ -125.111368934999973, 49.856700229000097 ], [ -125.11302596799996, 49.856670026000103 ], [ -125.113068288999955, 49.854485462000056 ], [ -125.113123886999972, 49.85448591300014 ], [ -125.113133356999967, 49.853997124000053 ], [ -125.112138127999984, 49.853989056000096 ], [ -125.112144503, 49.853660273000109 ], [ -125.111165909999926, 49.85365233000001 ], [ -125.11117512499996, 49.853177645000109 ], [ -125.110413626999957, 49.853171457000073 ], [ -125.110412195999984, 49.853245109000071 ], [ -125.110346282999927, 49.853244574000087 ], [ -125.110337718999972, 49.853685310000081 ], [ -125.110240988999976, 49.853684524000037 ], [ -125.110228651999989, 49.85431931100004 ], [ -125.110136499999939, 49.854318562000124 ], [ -125.110125182999923, 49.854900812000118 ], [ -125.106228838999968, 49.854869065000031 ], [ -125.106230389999922, 49.854904728000058 ], [ -125.107481584999931, 49.85488198000013 ], [ -125.107493317999982, 49.855151625000069 ], [ -125.10874451799999, 49.855128863000047 ], [ -125.10875625599999, 49.85539850800005 ], [ -125.109173324999958, 49.855390918000076 ], [ -125.10919680799995, 49.855930209000036 ], [ -125.109613880999959, 49.855922617000047 ], [ -125.109623550999942, 49.856144649000072 ], [ -125.108192558999974, 49.855689090000105 ], [ -125.107613608999941, 49.855571962000063 ], [ -125.107342799999913, 49.855556263000103 ], [ -125.106282998999973, 49.855568298000037 ], [ -125.106034107999903, 49.855496134000056 ], [ -125.104823765999967, 49.85427395500006 ], [ -125.104575132999955, 49.854022841000081 ], [ -125.103431734999944, 49.85297928900011 ], [ -125.10213444299994, 49.851705153000111 ], [ -125.102170127999955, 49.851669828000084 ], [ -125.103124378999979, 49.85072753 ], [ -125.103525313999981, 49.850331599000093 ], [ -125.103916806, 49.850361801000062 ], [ -125.106400031999982, 49.850572058000076 ], [ -125.107314693999953, 49.850649512000047 ], [ -125.111434275999912, 49.85092662300012 ], [ -125.11376311, 49.851083209000102 ], [ -125.115650008999978, 49.851208986000088 ], [ -125.11732475299999, 49.851320621000077 ], [ -125.119108220999962, 49.851452862000045 ], [ -125.119062374999928, 49.853835690000032 ], [ -125.118705358999961, 49.853832816000107 ], [ -125.11870688499998, 49.853867704000066 ], [ -125.119123938, 49.853860078000054 ], [ -125.119135733999926, 49.854129723000028 ], [ -125.119552789999929, 49.854122094000104 ], [ -125.11963538599997, 49.856009598000114 ], [ -125.120052455999925, 49.85600196900004 ], [ -125.120087863999956, 49.85681089900001 ], [ -125.118584820999914, 49.856838389000103 ], [ -125.118560012999978, 49.858126993000056 ], [ -125.118187991999932, 49.85812399600011 ], [ -125.118176223999924, 49.858734873000081 ], [ -125.118502110999913, 49.858728915000022 ], [ -125.118513904999986, 49.858998559000057 ], [ -125.118931002999929, 49.858990933000022 ], [ -125.118973349999962, 49.859958786000085 ], [ -125.119754345999951, 49.859965069000062 ], [ -125.119752610999967, 49.860055344000024 ], [ -125.120229512, 49.86004661900013 ], [ -125.120238204999936, 49.860245167000052 ], [ -125.122326146999953, 49.860261927000074 ], [ -125.122315037999968, 49.860008443 ], [ -125.123983456999937, 49.859977876000066 ], [ -125.123971629999971, 49.859708232000045 ], [ -125.126057137999979, 49.859669989000061 ], [ -125.126068974999953, 49.859939632000049 ], [ -125.126903182, 49.859924323000087 ], [ -125.126926865999963, 49.860463607000064 ], [ -125.127343972999981, 49.860455950000102 ], [ -125.127403198999914, 49.861804160000062 ], [ -125.126986081999988, 49.861811817000053 ], [ -125.126997923999951, 49.862081459000066 ], [ -125.127832166999937, 49.862066144000018 ], [ -125.12782031899998, 49.861796502000082 ], [ -125.128237437999971, 49.861788842000102 ], [ -125.128225586999946, 49.861519200000032 ], [ -125.128394355999959, 49.861516101000106 ], [ -125.128427882999929, 49.859755231000094 ], [ -125.128355901999896, 49.859754658000092 ], [ -125.128368500999912, 49.859092993000033 ], [ -125.128364342999973, 49.859092960000105 ], [ -125.128432818999968, 49.855496351000127 ], [ -125.128568575999964, 49.855497431000039 ], [ -125.128579746999932, 49.854910553000096 ], [ -125.129378904999953, 49.854916913000054 ], [ -125.129388945999935, 49.854388872000079 ], [ -125.12957473199998, 49.854390350000081 ], [ -125.129583327999953, 49.853938189000075 ], [ -125.129562055999955, 49.853938581000108 ], [ -125.129550200999944, 49.853668939000038 ], [ -125.128716105999942, 49.853684264000115 ], [ -125.128727955999963, 49.853953907000083 ], [ -125.127059749999916, 49.853984540000077 ], [ -125.127071590999961, 49.854254182000027 ], [ -125.124152207999913, 49.85430773400001 ], [ -125.124140383999929, 49.85403809100012 ], [ -125.123723329999947, 49.854045735000106 ], [ -125.123699685999924, 49.853506450000069 ], [ -125.122448539999979, 49.85352937300005 ], [ -125.122412514999922, 49.852707151000111 ], [ -125.121445966999929, 49.852699397000087 ], [ -125.121455582999928, 49.852198258000058 ], [ -125.12072131699999, 49.852211698000104 ], [ -125.120693241999973, 49.851570367000093 ], [ -125.121746794999979, 49.851648457000103 ], [ -125.123647913999918, 49.851765825000079 ], [ -125.125375087999927, 49.851872406000048 ], [ -125.126202933999977, 49.851923494000054 ], [ -125.129363998999963, 49.852118494000081 ], [ -125.129897001999936, 49.8520939570001 ], [ -125.130570216999928, 49.851934785 ], [ -125.130864855999945, 49.851865143000033 ], [ -125.131567681999968, 49.851766166000111 ], [ -125.132714816999965, 49.851604626000089 ], [ -125.133213913999981, 49.851681413000051 ], [ -125.133347906000012, 49.851727455000066 ], [ -125.133429515999936, 49.851822535000061 ], [ -125.133457921999963, 49.853481031000022 ], [ -125.133339614999912, 49.854095599000061 ], [ -125.133289068999957, 49.854358131000019 ], [ -125.133282725999933, 49.854391105000047 ], [ -125.133070345999926, 49.855494356000058 ], [ -125.132972274999986, 49.856003778000087 ], [ -125.132694569999927, 49.857446255000063 ], [ -125.132240328999984, 49.859512329000104 ], [ -125.132112876999926, 49.860091928000095 ], [ -125.131902435999947, 49.861049046000048 ], [ -125.131698440999955, 49.861976870000106 ], [ -125.131208867999987, 49.864203055000146 ], [ -125.131134584999984, 49.864540919000106 ], [ -125.13104344599995, 49.864946671000027 ], [ -125.130657415999949, 49.86766056700003 ], [ -125.130629316999929, 49.867858272000085 ], [ -125.13060995399999, 49.867994290000055 ], [ -125.13060599, 49.867996309000091 ], [ -125.129493105999927, 49.868313895000057 ], [ -125.128116687, 49.868356593000044 ], [ -125.126578889999948, 49.868214189000071 ], [ -125.126079615999956, 49.868231301000087 ], [ -125.12538800399993, 49.868487662000113 ], [ -125.125276279999923, 49.86837325900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206762673", "BldgCostT": "134834481", "sL_LossRatio": "0.894658869916873", "sL_AssetLoss": "106225.46", "sL_BldgLoss": "95035.55", "sL_StrLoss": "86874.01", "sL_NStrLoss": "8161.54", "sL_ContLoss": "11189.91", "geom_point": "0101000020E6100000B691D209F4465FC07C57FB43CCE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.121471122999978, 49.851388395000136 ], [ -125.121511568999964, 49.849280390000082 ], [ -125.121514975999929, 49.849102761000083 ], [ -125.127075297999951, 49.849147254000044 ], [ -125.127069734999949, 49.849439052000051 ], [ -125.127068732999959, 49.84949157700008 ], [ -125.128091378999969, 49.849499729000073 ], [ -125.12808978899993, 49.849583307000074 ], [ -125.129799983999973, 49.849596919000135 ], [ -125.129801502999968, 49.849516929000032 ], [ -125.129807516999932, 49.849200568000086 ], [ -125.129801705999967, 49.849200521000022 ], [ -125.129809997999985, 49.848764199000065 ], [ -125.129295812999914, 49.848760109000111 ], [ -125.129303935999943, 49.848332976000023 ], [ -125.129270439000024, 49.848332710000108 ], [ -125.129338827999945, 49.844736047000083 ], [ -125.129575047999936, 49.844737926000057 ], [ -125.129592672999962, 49.843810651000034 ], [ -125.13033362199991, 49.843816543000017 ], [ -125.13035159899998, 49.842869868000093 ], [ -125.130725226999971, 49.842872836000097 ], [ -125.130729622999965, 49.842641279000134 ], [ -125.130336030999956, 49.842638151000124 ], [ -125.130342444999911, 49.842300364000018 ], [ -125.129987636999942, 49.842297542000075 ], [ -125.13000173399999, 49.84155557400009 ], [ -125.129695372999947, 49.84155313800013 ], [ -125.129712812999955, 49.84063535700011 ], [ -125.129294413999958, 49.840632028000122 ], [ -125.129307367999957, 49.839950645000023 ], [ -125.129003043999973, 49.839948223000079 ], [ -125.129011722999934, 49.8394918810001 ], [ -125.128765161999979, 49.839489918000083 ], [ -125.128777286999949, 49.838852575000075 ], [ -125.128493291999931, 49.838850313000087 ], [ -125.128513738999942, 49.837775761000074 ], [ -125.12777803100002, 49.83776989800009 ], [ -125.127795623999958, 49.83684596800007 ], [ -125.127246065999898, 49.836841586000105 ], [ -125.127253560999961, 49.836448253000093 ], [ -125.12655386299997, 49.836442669000064 ], [ -125.126567162999933, 49.835745296000027 ], [ -125.126249895999948, 49.835742763000084 ], [ -125.126279728999947, 49.834178817000073 ], [ -125.125633167999965, 49.83417365100005 ], [ -125.125639649999968, 49.833834085000056 ], [ -125.125409679999933, 49.833832246000085 ], [ -125.125417953999943, 49.8333989590001 ], [ -125.125253299999898, 49.833397643000069 ], [ -125.125259030999956, 49.833097565000074 ], [ -125.12368945799993, 49.833085004000047 ], [ -125.123739687999915, 49.830459328000131 ], [ -125.123424510999925, 49.830456803000075 ], [ -125.12343868399995, 49.829716141000056 ], [ -125.122770829999951, 49.829710788000106 ], [ -125.122783149, 49.829067465000051 ], [ -125.122636165999964, 49.829066286000064 ], [ -125.122644004999955, 49.82865698700008 ], [ -125.121931463999957, 49.828651269000019 ], [ -125.121948324999892, 49.827771562000052 ], [ -125.12168720799994, 49.827769465000138 ], [ -125.121705528999939, 49.826813828000041 ], [ -125.121398155999955, 49.826811360000107 ], [ -125.12139982399998, 49.826724378000065 ], [ -125.120162114000024, 49.826714429000127 ], [ -125.12020236599993, 49.824618416000078 ], [ -125.119900231999949, 49.824615986000083 ], [ -125.119855394999917, 49.82694993800007 ], [ -125.118502152999923, 49.826939041000038 ], [ -125.118498750999947, 49.827115872000043 ], [ -125.117255597999986, 49.827105846000052 ], [ -125.117253308999977, 49.827224704000052 ], [ -125.111695657999988, 49.827179710000088 ], [ -125.111701110999888, 49.826898462000052 ], [ -125.11022601799999, 49.826886473000101 ], [ -125.110295869999973, 49.823289715000065 ], [ -125.114367027999947, 49.823322757000021 ], [ -125.11436730699991, 49.823308317000119 ], [ -125.119555686999931, 49.82335020700009 ], [ -125.119564825999959, 49.822874562000059 ], [ -125.118712993999949, 49.822867701000057 ], [ -125.118751147999916, 49.820884021000026 ], [ -125.117840982999951, 49.820876683000058 ], [ -125.117864429999926, 49.819658788000041 ], [ -125.117279935999974, 49.819654072000063 ], [ -125.1172850499999, 49.819388588 ], [ -125.113884221999982, 49.819361085000089 ], [ -125.113945053999927, 49.816215267000089 ], [ -125.113898915999968, 49.816214894000048 ], [ -125.113901144999915, 49.816099585000075 ], [ -125.112219478999961, 49.816085944000058 ], [ -125.11217168599994, 49.818552653000033 ], [ -125.106615092999988, 49.818507401000126 ], [ -125.10668521499997, 49.814910604000083 ], [ -125.111575042999931, 49.814950441000072 ], [ -125.11162286299998, 49.812483721000049 ], [ -125.113285399999981, 49.812497216000068 ], [ -125.113285644999948, 49.812484590000089 ], [ -125.112963508999925, 49.81248197700004 ], [ -125.112977077999943, 49.811780897000077 ], [ -125.112641238999927, 49.811778171000114 ], [ -125.11267624099996, 49.809970402000097 ], [ -125.111043089999953, 49.809957136000072 ], [ -125.11105388599999, 49.809400470000092 ], [ -125.109102447999973, 49.809384587000089 ], [ -125.109118713999948, 49.808547794000049 ], [ -125.108404273999952, 49.808541971000068 ], [ -125.108430622999904, 49.807187470000052 ], [ -125.106581430999938, 49.807172375000114 ], [ -125.10653014, 49.809803516000088 ], [ -125.100974611999931, 49.809757977000096 ], [ -125.10098636099994, 49.809159029000043 ], [ -125.101038734999946, 49.806488816000112 ], [ -125.100608298999987, 49.80648527600011 ], [ -125.100612832999971, 49.806254179000049 ], [ -125.09985688299993, 49.806247957000032 ], [ -125.099871670999974, 49.805494982 ], [ -125.095869377999975, 49.805461956000087 ], [ -125.09587943, 49.804952316000076 ], [ -125.095132680999981, 49.804946138000076 ], [ -125.095139175999989, 49.804617137000086 ], [ -125.094707275999951, 49.8046135620001 ], [ -125.094460974999933, 49.804611522000052 ], [ -125.09446482599999, 49.804416553000046 ], [ -125.09372265899998, 49.804410403000105 ], [ -125.093733247, 49.803874838000148 ], [ -125.091988424999968, 49.803860360000044 ], [ -125.092004861999925, 49.8030306120001 ], [ -125.091926472999916, 49.80302996000011 ], [ -125.091954586, 49.801610873000065 ], [ -125.090303034999948, 49.801597141000087 ], [ -125.090290340999971, 49.802236743000059 ], [ -125.084735746999939, 49.802190378000049 ], [ -125.084773418999958, 49.800303573000114 ], [ -125.07967316899996, 49.800260751000081 ], [ -125.079691228999963, 49.79936120100011 ], [ -125.077460539999933, 49.799342397000082 ], [ -125.077462483999938, 49.79924577700011 ], [ -125.077017034999983, 49.799242017000033 ], [ -125.077014243999926, 49.799380683000095 ], [ -125.071460008999949, 49.799333643000033 ], [ -125.071469373, 49.798871346000062 ], [ -125.070525, 49.798863320000045 ], [ -125.070577226999944, 49.796287393000085 ], [ -125.069909233999951, 49.796281711000105 ], [ -125.06991215799999, 49.796137627000121 ], [ -125.068991207999886, 49.796129787000055 ], [ -125.068997736, 49.795808378000068 ], [ -125.06862913099998, 49.795805238000135 ], [ -125.06862062099999, 49.796224102000103 ], [ -125.06824729799996, 49.796220920000081 ], [ -125.068270232999936, 49.796759192000088 ], [ -125.068686809999932, 49.796751754000098 ], [ -125.068732779999976, 49.797830374000078 ], [ -125.068316195999969, 49.797837812000061 ], [ -125.06835066799999, 49.798646777000059 ], [ -125.067934076999961, 49.798654216000038 ], [ -125.067945565999935, 49.798923870000067 ], [ -125.067528971999977, 49.79893130600005 ], [ -125.067540456999978, 49.799200961000132 ], [ -125.06741658699994, 49.799203171000066 ], [ -125.067405602999912, 49.79974308800012 ], [ -125.068813236999944, 49.799717958000052 ], [ -125.068824730999921, 49.799987613000027 ], [ -125.069241333999983, 49.799980172000041 ], [ -125.06927582499992, 49.80078913700001 ], [ -125.068442604999973, 49.800804017000146 ], [ -125.068465592, 49.801343327000026 ], [ -125.068048974999897, 49.801350765000073 ], [ -125.068071956999987, 49.801890074000099 ], [ -125.068488577000011, 49.801882637000091 ], [ -125.068557540999961, 49.803500566000082 ], [ -125.067307639999939, 49.803522877000134 ], [ -125.067296152999944, 49.803253222000102 ], [ -125.066879520999976, 49.803260656000063 ], [ -125.066846038999984, 49.802474517000071 ], [ -125.065594758, 49.802463829000025 ], [ -125.065618146999924, 49.803013294000088 ], [ -125.064817025999957, 49.803027577000059 ], [ -125.06489635299999, 49.80265716300007 ], [ -125.065032129999935, 49.802023118000086 ], [ -125.065069123999947, 49.801850326000107 ], [ -125.065361616999937, 49.800484169000086 ], [ -125.065409902999946, 49.800258664000069 ], [ -125.06542760399995, 49.800176102000073 ], [ -125.065467153, 49.799998078000051 ], [ -125.065608122999933, 49.799363702000086 ], [ -125.065803880999937, 49.79847631500013 ], [ -125.065813098999939, 49.798434599000096 ], [ -125.06583590799994, 49.798358459000035 ], [ -125.06617965199996, 49.797210051000029 ], [ -125.066183090999971, 49.797201310000091 ], [ -125.066433838999913, 49.796557598000113 ], [ -125.066632605999928, 49.7960473730001 ], [ -125.066871092999975, 49.795435093000059 ], [ -125.066888872999968, 49.795389475000064 ], [ -125.067507620999919, 49.79423386400002 ], [ -125.067528344, 49.794195176000052 ], [ -125.06847961899993, 49.793851634000063 ], [ -125.069135912999968, 49.793466897000037 ], [ -125.07002251199998, 49.792821166000067 ], [ -125.070119709999972, 49.792750371000096 ], [ -125.071683927999928, 49.793335655000156 ], [ -125.072880811999951, 49.793889049000015 ], [ -125.075593376999905, 49.795239512000116 ], [ -125.076951470999958, 49.795884727000058 ], [ -125.077270107999979, 49.796036138000034 ], [ -125.077589018999916, 49.796162329 ], [ -125.078303427999984, 49.796445070000054 ], [ -125.078569083, 49.796523586000035 ], [ -125.079446493999939, 49.79678297500007 ], [ -125.079551257, 49.796814138000066 ], [ -125.080336769999988, 49.797047826000011 ], [ -125.082111262999945, 49.797575669000075 ], [ -125.082423346999931, 49.797668516000101 ], [ -125.083520830999944, 49.797994962000132 ], [ -125.084020098999957, 49.798143467000081 ], [ -125.084077400999931, 49.798162045000034 ], [ -125.085580045999933, 49.798649630000043 ], [ -125.087689129999958, 49.799333921000027 ], [ -125.08847290099996, 49.799588208000024 ], [ -125.089764289999934, 49.800012222000056 ], [ -125.093812894, 49.801341392000047 ], [ -125.096497496999959, 49.80219098900006 ], [ -125.099016469999967, 49.802991057000057 ], [ -125.099137108999955, 49.803029374000062 ], [ -125.099230404999943, 49.803059005000073 ], [ -125.100991007999966, 49.803556351000047 ], [ -125.103001839999948, 49.80412433200005 ], [ -125.106199007999976, 49.805027287000094 ], [ -125.107939859999973, 49.805484837000037 ], [ -125.109650669999922, 49.805934423000032 ], [ -125.110165117999941, 49.806069597000025 ], [ -125.111186779999954, 49.806384600000051 ], [ -125.112188601999975, 49.806801112000116 ], [ -125.113116073999919, 49.807318496000072 ], [ -125.114125905999913, 49.807969799000084 ], [ -125.115019003999947, 49.808763896000116 ], [ -125.115461271999934, 49.809310697000065 ], [ -125.115612947999921, 49.809566776000025 ], [ -125.116816065999927, 49.811598351000079 ], [ -125.117862007000014, 49.813364424000035 ], [ -125.118051293999969, 49.813684017000099 ], [ -125.118278493999981, 49.814067598000058 ], [ -125.11881, 49.814964111000094 ], [ -125.119044886999944, 49.815362706000066 ], [ -125.120162121999925, 49.817258460000055 ], [ -125.120420564999932, 49.817696995000027 ], [ -125.120897141999976, 49.818505621000035 ], [ -125.121134707999929, 49.818908674000141 ], [ -125.121476124999958, 49.819487969000129 ], [ -125.12155911399999, 49.819628716000111 ], [ -125.121601386999913, 49.819700480000037 ], [ -125.12170633, 49.819878515000028 ], [ -125.12220763, 49.82072897500008 ], [ -125.122617901999902, 49.821425007000144 ], [ -125.122957681999949, 49.822001746000126 ], [ -125.123004649999956, 49.822081456000021 ], [ -125.123449219999912, 49.822836028000097 ], [ -125.124261782999952, 49.824215102000046 ], [ -125.124659445999981, 49.824889988000081 ], [ -125.124690510000036, 49.824942706000044 ], [ -125.125329791999931, 49.826028803000113 ], [ -125.126332144999964, 49.827736777000098 ], [ -125.12789563699999, 49.830400705000073 ], [ -125.129394699999978, 49.832954498000085 ], [ -125.129914396999979, 49.833838194000045 ], [ -125.130444427999947, 49.834742228000053 ], [ -125.130794798999901, 49.835339788000098 ], [ -125.130835762999979, 49.835409582000054 ], [ -125.131189738, 49.836012822000015 ], [ -125.131528578999948, 49.836590298000118 ], [ -125.133065979999969, 49.839208521000103 ], [ -125.1333189899999, 49.839639310000088 ], [ -125.134807418999969, 49.842173820000035 ], [ -125.134895121999989, 49.842323105000027 ], [ -125.13490641599995, 49.842375442000041 ], [ -125.134950230999934, 49.842578424000052 ], [ -125.13501401099991, 49.842873497 ], [ -125.134949874999933, 49.843469291000176 ], [ -125.134593097999982, 49.844178695000068 ], [ -125.134286978999981, 49.844619186000031 ], [ -125.13419269900001, 49.844754942000122 ], [ -125.134159585999939, 49.844802569000073 ], [ -125.133812497999912, 49.845302058000144 ], [ -125.133709596999921, 49.84545013000006 ], [ -125.133457012999955, 49.84581359900006 ], [ -125.133315586999942, 49.846307112000048 ], [ -125.133254011999924, 49.847360608000102 ], [ -125.133312389999972, 49.848399433000061 ], [ -125.133344172999983, 49.848965504000056 ], [ -125.133380871999989, 49.849618866000057 ], [ -125.133397253999959, 49.850221529000123 ], [ -125.133415090999961, 49.851116451000031 ], [ -125.133423810999915, 49.851609353000086 ], [ -125.132714816999965, 49.851604626000089 ], [ -125.131567681999968, 49.851766166000111 ], [ -125.130864855999945, 49.851865143000033 ], [ -125.130570216999928, 49.851934785 ], [ -125.129897001999936, 49.8520939570001 ], [ -125.129363998999963, 49.852118494000081 ], [ -125.126202933999977, 49.851923494000054 ], [ -125.125375087999927, 49.851872406000048 ], [ -125.123647913999918, 49.851765825000079 ], [ -125.121746794999979, 49.851648457000103 ], [ -125.120693241999973, 49.851570367000093 ], [ -125.120685905999949, 49.851402768000113 ], [ -125.121471122999978, 49.851388395000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125620011", "BldgCostT": "80726743", "sL_LossRatio": "0.912216970222699", "sL_AssetLoss": "76029.456", "sL_BldgLoss": "69355.36", "sL_StrLoss": "62270.38", "sL_NStrLoss": "7084.98", "sL_ContLoss": "6674.096", "geom_point": "0101000020E6100000DE349E8469465FC0DBCE942928ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.116167791999928, 49.872103201000037 ], [ -125.116169888999963, 49.871994613000098 ], [ -125.116159810999974, 49.87199479600006 ], [ -125.116143318, 49.871617525000069 ], [ -125.116205396999973, 49.871596688000075 ], [ -125.11644181399997, 49.871592405000065 ], [ -125.116518396999965, 49.87174479100009 ], [ -125.116712905999961, 49.871749095000055 ], [ -125.117938696999929, 49.871457102000058 ], [ -125.118541494999988, 49.871203597000054 ], [ -125.118619910999925, 49.870787704000094 ], [ -125.118503724, 49.870673805000081 ], [ -125.118379196999925, 49.870675209000055 ], [ -125.117990380999942, 49.870700892000116 ], [ -125.11750850899989, 49.870494389000086 ], [ -125.116240091999927, 49.870481614000077 ], [ -125.116136909999966, 49.870635389000064 ], [ -125.116133824999963, 49.870915837000119 ], [ -125.116112661999964, 49.870916224000091 ], [ -125.116106182999957, 49.87076799000004 ], [ -125.115804434999987, 49.870765555000098 ], [ -125.115797908999951, 49.868977606000094 ], [ -125.114773998999937, 49.868151501000099 ], [ -125.114550691999952, 49.867776997000071 ], [ -125.114603479999957, 49.867398094000109 ], [ -125.114999295999922, 49.86662621300011 ], [ -125.115085099999931, 49.866040906000116 ], [ -125.115075087999941, 49.865422424000023 ], [ -125.11506792199999, 49.864979805000146 ], [ -125.114806415999936, 49.864111104000088 ], [ -125.114766098999979, 49.863483009000063 ], [ -125.114291201999976, 49.862483185000045 ], [ -125.113338795999965, 49.861376609000075 ], [ -125.112889498999948, 49.86100768900009 ], [ -125.11176229699997, 49.860362488000064 ], [ -125.111416516999938, 49.860089095000099 ], [ -125.111121806999961, 49.859690295000057 ], [ -125.110563585999969, 49.859322896000052 ], [ -125.109956809999986, 49.859153398000053 ], [ -125.109050201999963, 49.859116407000052 ], [ -125.107977223999953, 49.858748901000077 ], [ -125.107226040999947, 49.858602292000022 ], [ -125.107217020999954, 49.858394957000066 ], [ -125.106652371999985, 49.858405223000091 ], [ -125.106141096999934, 49.858116591000055 ], [ -125.105460398, 49.857841697 ], [ -125.104487415, 49.857202208000075 ], [ -125.10342020899999, 49.856978590000054 ], [ -125.102882706999978, 49.85679059500012 ], [ -125.101594685999913, 49.855977408000093 ], [ -125.100786229999983, 49.855669255000109 ], [ -125.100801554, 49.854889056000061 ], [ -125.104561468999961, 49.85491988200004 ], [ -125.104556068999898, 49.854795623000058 ], [ -125.103396338999971, 49.854786128000036 ], [ -125.103404814999934, 49.854353369000059 ], [ -125.10264113699999, 49.854347110000106 ], [ -125.102650935999961, 49.853847203000043 ], [ -125.101414222999935, 49.853837056000039 ], [ -125.101351818999987, 49.853836544000025 ], [ -125.100138728999966, 49.85382657700012 ], [ -125.100532183999945, 49.853576205000088 ], [ -125.100231904999973, 49.853420899000085 ], [ -125.100036707999919, 49.853396688000082 ], [ -125.099754084999944, 49.853526257000084 ], [ -125.099489942999952, 49.853551641000081 ], [ -125.098902133999943, 49.853535590000043 ], [ -125.098714989999948, 49.85349611200008 ], [ -125.098732269999942, 49.852618305000064 ], [ -125.096235811, 49.85259771900018 ], [ -125.096213951999957, 49.852583290000027 ], [ -125.095822278999961, 49.852199310000088 ], [ -125.095825964999975, 49.852012604000059 ], [ -125.095627049999962, 49.852010961000069 ], [ -125.095157354999969, 49.851591592000084 ], [ -125.094130609999951, 49.850346091000041 ], [ -125.093438906999964, 49.849800593000069 ], [ -125.092604303999934, 49.849447398000066 ], [ -125.091719385999966, 49.849247992000095 ], [ -125.090936977999888, 49.848883392000062 ], [ -125.089417503, 49.848470407000065 ], [ -125.089167828999948, 49.848374963000069 ], [ -125.087551102999939, 49.847756903000118 ], [ -125.084815191999951, 49.84724839600009 ], [ -125.081883000999966, 49.847311112000114 ], [ -125.080118188999947, 49.847019098000047 ], [ -125.079326824999939, 49.847033400000058 ], [ -125.079142716999968, 49.846987641000084 ], [ -125.07824379299997, 49.846764209000085 ], [ -125.076047914999961, 49.845832795000014 ], [ -125.073889001999973, 49.845152011000046 ], [ -125.073561682999937, 49.844953650000051 ], [ -125.07309125, 49.844668565000042 ], [ -125.071061919999977, 49.843438698000064 ], [ -125.070203605999936, 49.84288749600006 ], [ -125.069385698999938, 49.84261400500008 ], [ -125.069174112999946, 49.84248657800002 ], [ -125.068487003999948, 49.842072802000068 ], [ -125.068115698999918, 49.841591411000081 ], [ -125.068125678999976, 49.841100902000029 ], [ -125.073684975999967, 49.841148108000034 ], [ -125.073682322, 49.841279346000164 ], [ -125.074373056999917, 49.841285191000047 ], [ -125.074364706999958, 49.841698296000068 ], [ -125.076499800999954, 49.841716337000086 ], [ -125.076494763999975, 49.841966108000122 ], [ -125.07707729399999, 49.841971024000067 ], [ -125.077071701999941, 49.842248473000126 ], [ -125.077692587999977, 49.842253708000079 ], [ -125.077688439999946, 49.842459690000034 ], [ -125.078518968999944, 49.842466688000059 ], [ -125.078514102999961, 49.842708524000052 ], [ -125.079090161999943, 49.842713373000059 ], [ -125.079084675999951, 49.842986168000017 ], [ -125.079749054000018, 49.842991758000053 ], [ -125.079745896999924, 49.843148858000113 ], [ -125.080599731999911, 49.84315603600006 ], [ -125.080589145999951, 49.84368332400004 ], [ -125.082360297999927, 49.843698192000012 ], [ -125.082357545999926, 49.843835436000049 ], [ -125.082911182999965, 49.843840077000031 ], [ -125.0829076099999, 49.844018537000096 ], [ -125.083400376999961, 49.844022665000097 ], [ -125.08339706, 49.84418837700013 ], [ -125.084812002, 49.844200221000065 ], [ -125.084822561, 49.843671828000033 ], [ -125.090382186999989, 49.84371818500005 ], [ -125.090362581999941, 49.844705185000123 ], [ -125.090458944999952, 49.844705986000065 ], [ -125.090451738999903, 49.8450687220001 ], [ -125.091599721999955, 49.845078257000104 ], [ -125.091585838999961, 49.845778128000141 ], [ -125.092851418999913, 49.845788627000033 ], [ -125.092839973999915, 49.846366341000049 ], [ -125.094189585999985, 49.846377521000079 ], [ -125.094463291999944, 49.846379786000099 ], [ -125.094455578999913, 49.846769839000068 ], [ -125.09445469699989, 49.846814398000035 ], [ -125.094515226999945, 49.846814898000076 ], [ -125.094525817999951, 49.846814986000012 ], [ -125.094525662999942, 49.846822783000043 ], [ -125.094523368999916, 49.846938767000012 ], [ -125.094680922999927, 49.846940071000162 ], [ -125.095176499, 49.846944170000043 ], [ -125.095173222999961, 49.847109978000049 ], [ -125.095702989999893, 49.847114357000031 ], [ -125.095696281999921, 49.847454023000097 ], [ -125.09568223499997, 49.848165274000081 ], [ -125.09567732, 49.848414166000104 ], [ -125.09644047799999, 49.84842047000005 ], [ -125.097306806999939, 49.848427619000134 ], [ -125.097296485999919, 49.848951175000124 ], [ -125.09729534200001, 49.849009256000031 ], [ -125.099117921999934, 49.849024275000026 ], [ -125.099124791999927, 49.848675099000076 ], [ -125.100021961999943, 49.848682480000036 ], [ -125.100044022999938, 49.847560119000036 ], [ -125.105604134, 49.847605703000127 ], [ -125.10559971, 49.847832263000072 ], [ -125.108071954999943, 49.847852440000047 ], [ -125.108068003999946, 49.848055228000085 ], [ -125.110789063999903, 49.84807737100008 ], [ -125.110779559999941, 49.848566772000112 ], [ -125.115170125999953, 49.848602360000058 ], [ -125.115166307999971, 49.848799953000061 ], [ -125.116289894999952, 49.848809031000044 ], [ -125.116283682999963, 49.849130897000038 ], [ -125.116273552999985, 49.849655700000035 ], [ -125.116870523999935, 49.849660519000054 ], [ -125.11686948199997, 49.849714577000093 ], [ -125.117875889999937, 49.849722693000089 ], [ -125.117868524999935, 49.850104998000091 ], [ -125.120209866999957, 49.850062181000069 ], [ -125.120245269999913, 49.850871112000043 ], [ -125.119411215999904, 49.850886371000037 ], [ -125.119434810999948, 49.851425658000039 ], [ -125.119108629, 49.851431623000039 ], [ -125.119108220999962, 49.851452862000045 ], [ -125.11732475299999, 49.851320621000077 ], [ -125.115650008999978, 49.851208986000088 ], [ -125.11376311, 49.851083209000102 ], [ -125.111434275999912, 49.85092662300012 ], [ -125.107314693999953, 49.850649512000047 ], [ -125.106400031999982, 49.850572058000076 ], [ -125.103916806, 49.850361801000062 ], [ -125.103525313999981, 49.850331599000093 ], [ -125.103124378999979, 49.85072753 ], [ -125.102170127999955, 49.851669828000084 ], [ -125.10213444299994, 49.851705153000111 ], [ -125.103431734999944, 49.85297928900011 ], [ -125.104575132999955, 49.854022841000081 ], [ -125.104823765999967, 49.85427395500006 ], [ -125.106034107999903, 49.855496134000056 ], [ -125.106282998999973, 49.855568298000037 ], [ -125.107342799999913, 49.855556263000103 ], [ -125.107613608999941, 49.855571962000063 ], [ -125.108192558999974, 49.855689090000105 ], [ -125.109623550999942, 49.856144649000072 ], [ -125.109625626999943, 49.856192262000043 ], [ -125.109765140999954, 49.856189722000146 ], [ -125.110350270999959, 49.85637598900005 ], [ -125.110470106, 49.856414133000015 ], [ -125.110471525999969, 49.856446719000118 ], [ -125.11056701199999, 49.856444979000074 ], [ -125.111316668999947, 49.856683593000071 ], [ -125.111317433999957, 49.856701167000033 ], [ -125.111368934999973, 49.856700229000097 ], [ -125.111541053999986, 49.856755013000033 ], [ -125.112016309999916, 49.856986382000045 ], [ -125.11370334399993, 49.857402046000047 ], [ -125.113903047999912, 49.857500791000106 ], [ -125.11404499299999, 49.85756668100003 ], [ -125.11467217299996, 49.857997125000111 ], [ -125.115825517999923, 49.860054117000097 ], [ -125.115825715999961, 49.860189017000053 ], [ -125.11582200399999, 49.861676407000068 ], [ -125.116231696999989, 49.862425211000073 ], [ -125.116448508999952, 49.863439587000052 ], [ -125.116785371999953, 49.865227363000038 ], [ -125.11679910499997, 49.865225787000085 ], [ -125.117848902999953, 49.865104637000101 ], [ -125.118311279999944, 49.865072386000065 ], [ -125.118739614999939, 49.865073128000091 ], [ -125.118809959999979, 49.865392053000072 ], [ -125.118672303999929, 49.86654741800006 ], [ -125.118743331999951, 49.866685570000136 ], [ -125.118855858999964, 49.866764716000041 ], [ -125.118962567999958, 49.866809148000073 ], [ -125.11906279599999, 49.86685090600011 ], [ -125.119264000999962, 49.86687590200011 ], [ -125.12064919099997, 49.86680610300003 ], [ -125.121446103000025, 49.866808068000047 ], [ -125.121460059999919, 49.86680813300007 ], [ -125.12464303299997, 49.86690723400006 ], [ -125.124882250999931, 49.86691466900011 ], [ -125.124850937999895, 49.867182392000039 ], [ -125.124817372999971, 49.867469009000033 ], [ -125.124826153999948, 49.867737979000097 ], [ -125.124998863999963, 49.868089163000086 ], [ -125.125276279999923, 49.86837325900013 ], [ -125.12538800399993, 49.868487662000113 ], [ -125.124189205999969, 49.868932005000055 ], [ -125.121916512999988, 49.870404594000085 ], [ -125.11904669899999, 49.87165370900005 ], [ -125.117515288999982, 49.871968398000057 ], [ -125.116167791999928, 49.872103201000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.995888313520395", "sL_AssetLoss": "581.27", "sL_BldgLoss": "578.88", "sL_StrLoss": "564", "sL_NStrLoss": "14.88", "sL_ContLoss": "2.39", "geom_point": "0101000020E61000004B6AD39E73445FC02C1E6A1D4DE74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.068854010999985, 49.807076388000041 ], [ -125.068318299999987, 49.806365903000071 ], [ -125.068260868999957, 49.806322569000052 ], [ -125.068255837999985, 49.8062045510001 ], [ -125.069922462999941, 49.806174785000032 ], [ -125.069933965999951, 49.806444440000099 ], [ -125.07035062599999, 49.806436994000137 ], [ -125.070419661999921, 49.808054919000021 ], [ -125.069247352, 49.808075864000045 ], [ -125.069245220999917, 49.807858626000041 ], [ -125.069243811999925, 49.807713794000065 ], [ -125.069221159999969, 49.807630020000055 ], [ -125.069171506999936, 49.807446104000064 ], [ -125.068854010999985, 49.807076388000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10785584", "BldgCostT": "7438334", "sL_LossRatio": "0.987558841002043", "sL_AssetLoss": "7288.71", "sL_BldgLoss": "7198.03", "sL_StrLoss": "6768.93", "sL_NStrLoss": "429.1", "sL_ContLoss": "90.68", "geom_point": "0101000020E61000003AAB6820D4435FC02190CF549DEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.05871320699994, 49.834978889000105 ], [ -125.058041518999985, 49.833281203000098 ], [ -125.057852579999988, 49.833077498000094 ], [ -125.05656679499999, 49.83227289700006 ], [ -125.056076706999988, 49.831535107000072 ], [ -125.055478088999948, 49.830214910000066 ], [ -125.054645787999931, 49.829297213000089 ], [ -125.059371614999975, 49.829337953000085 ], [ -125.059556496999946, 49.829339543000053 ], [ -125.059528752999981, 49.830690926000024 ], [ -125.062051084999894, 49.830712582000018 ], [ -125.062043976999988, 49.831059682000067 ], [ -125.062311596999976, 49.831061976000058 ], [ -125.062302866999971, 49.831488451000034 ], [ -125.06266670899997, 49.831491569000036 ], [ -125.062662557999928, 49.831694486000089 ], [ -125.062658388999964, 49.831898121000052 ], [ -125.062722230999924, 49.831898668000107 ], [ -125.062696861999939, 49.833138515000016 ], [ -125.063157392, 49.833142460000026 ], [ -125.063148894999983, 49.833557893000069 ], [ -125.063156917999947, 49.833557961000096 ], [ -125.063104065999966, 49.836141851000015 ], [ -125.063083347999964, 49.837154636000037 ], [ -125.060475609999955, 49.837132273000108 ], [ -125.060400897999912, 49.837071013000084 ], [ -125.059823611999931, 49.836253488000054 ], [ -125.059540369999951, 49.836015647000075 ], [ -125.05924699799999, 49.835769299000042 ], [ -125.05871320699994, 49.834978889000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15365167", "BldgCostT": "10596667", "sL_LossRatio": "0.99354063207986", "sL_AssetLoss": "8657.039", "sL_BldgLoss": "8601.12", "sL_StrLoss": "8262.32", "sL_NStrLoss": "338.8", "sL_ContLoss": "55.919", "geom_point": "0101000020E61000005259A01F3E425FC0C17C47C7B4E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.033450004999949, 49.819916404000033 ], [ -125.03214731199995, 49.818821596000099 ], [ -125.031679091999962, 49.818428099000116 ], [ -125.031018392999954, 49.817611996000075 ], [ -125.029557082999972, 49.816585202000034 ], [ -125.02830559, 49.815562600000057 ], [ -125.027407310999934, 49.814373409000012 ], [ -125.02704731599998, 49.814015214000044 ], [ -125.026364307999955, 49.813335661000067 ], [ -125.02630242399999, 49.813274087000089 ], [ -125.03172289099993, 49.813322221000057 ], [ -125.031675552999928, 49.815562500000041 ], [ -125.034102636999961, 49.815583965 ], [ -125.034093976999941, 49.815994836000129 ], [ -125.034413550999957, 49.815997658000128 ], [ -125.034407616999928, 49.816279248000114 ], [ -125.03474765499999, 49.816282250000043 ], [ -125.034724386999955, 49.817386799000069 ], [ -125.036177467999906, 49.817399616000067 ], [ -125.036168020999952, 49.817848735000084 ], [ -125.036780211999925, 49.817854129000111 ], [ -125.036912867999945, 49.817855298000033 ], [ -125.036908975999935, 49.818040468000092 ], [ -125.03703930099999, 49.818041616000052 ], [ -125.037501356999911, 49.818045683000022 ], [ -125.037494597, 49.818367466000026 ], [ -125.038403341999967, 49.818375461000095 ], [ -125.038390850000013, 49.818970678000028 ], [ -125.041603455999933, 49.818998880000088 ], [ -125.041602072999964, 49.81906505100013 ], [ -125.042333731999946, 49.819071462000089 ], [ -125.042333477999961, 49.819083678000077 ], [ -125.043163102000022, 49.819090940000059 ], [ -125.043092680999976, 49.822462914000056 ], [ -125.041180393999952, 49.821894601000103 ], [ -125.038460916999924, 49.821376204000046 ], [ -125.03687510099995, 49.820916198000106 ], [ -125.035236508999944, 49.820440844000096 ], [ -125.034887126999976, 49.820339480000037 ], [ -125.034774097999943, 49.820306695000042 ], [ -125.033793805999949, 49.820127212000102 ], [ -125.033598008999917, 49.820007154000066 ], [ -125.033450004999949, 49.819916404000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.975418452332821", "sL_AssetLoss": "1236.7", "sL_BldgLoss": "1206.3", "sL_StrLoss": "1080", "sL_NStrLoss": "126.3", "sL_ContLoss": "30.4", "geom_point": "0101000020E6100000E2E4E1B15D425FC0101A871B6CE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.03607293099995, 49.814330694000063 ], [ -125.037739870999985, 49.814301385000121 ], [ -125.037864484999915, 49.817267639000143 ], [ -125.036197444999942, 49.817296949000117 ], [ -125.03607293099995, 49.814330694000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10954750", "BldgCostT": "7555000", "sL_LossRatio": "0.978325144027135", "sL_AssetLoss": "10383.46", "sL_BldgLoss": "10158.4", "sL_StrLoss": "9071", "sL_NStrLoss": "1087.4", "sL_ContLoss": "225.06", "geom_point": "0101000020E61000003358A3E436435FC0D7B9ED6B72E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.048138569999978, 49.826060036000094 ], [ -125.048190466999984, 49.823562158000115 ], [ -125.046472710999979, 49.823592512000069 ], [ -125.046428232999986, 49.822538521000091 ], [ -125.046427194000017, 49.822513882000145 ], [ -125.046401078999963, 49.822514343000087 ], [ -125.04601039, 49.822521243000111 ], [ -125.045999013999932, 49.82225158500006 ], [ -125.04558221299996, 49.822258945000051 ], [ -125.04557083899999, 49.821989287000093 ], [ -125.04473724199994, 49.82200400300011 ], [ -125.044703134999978, 49.821195028000027 ], [ -125.044980046, 49.821190141000081 ], [ -125.045953508999929, 49.821172955000101 ], [ -125.045950200999982, 49.821094537000079 ], [ -125.045942133999972, 49.820903297000079 ], [ -125.046358921999968, 49.820895936000085 ], [ -125.046347542999953, 49.82062627900013 ], [ -125.051348966999967, 49.820537832000049 ], [ -125.05136037299998, 49.820807489000067 ], [ -125.051777159999958, 49.820800109000089 ], [ -125.05183420199991, 49.822148393000084 ], [ -125.050583806999953, 49.822170531000104 ], [ -125.050561004999949, 49.821631217000053 ], [ -125.048893827999962, 49.821660711000042 ], [ -125.048943523999966, 49.822836976000112 ], [ -125.053762723999967, 49.822878777 ], [ -125.053753158999911, 49.823341948000049 ], [ -125.054367629999945, 49.82334726200007 ], [ -125.054293387999948, 49.826943983000071 ], [ -125.049764361999962, 49.826904730000074 ], [ -125.048743712999951, 49.826516404000074 ], [ -125.048745451999949, 49.82643262200002 ], [ -125.048595026999976, 49.826431313000043 ], [ -125.048138569999978, 49.826060036000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.971320315604246", "sL_AssetLoss": "7046.8", "sL_BldgLoss": "6844.7", "sL_StrLoss": "5993", "sL_NStrLoss": "851.7", "sL_ContLoss": "202.1", "geom_point": "0101000020E610000078CD2F73CF415FC05F42058797E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.025547749999987, 49.799676130000122 ], [ -125.031101978999985, 49.799725502000058 ], [ -125.031025949999943, 49.803322325000131 ], [ -125.025471284999952, 49.80327294900011 ], [ -125.025547749999987, 49.799676130000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724167", "BldgCostT": "6016667", "sL_LossRatio": "0.991540133369927", "sL_AssetLoss": "5392.52", "sL_BldgLoss": "5346.9", "sL_StrLoss": "5094", "sL_NStrLoss": "252.9", "sL_ContLoss": "45.62", "geom_point": "0101000020E61000003FAD8131CB435FC047EADA6A98E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.057512032999952, 49.811313055000056 ], [ -125.057519870999982, 49.810931888000049 ], [ -125.055412374999946, 49.810913701000111 ], [ -125.055486503999973, 49.807316900000046 ], [ -125.06104168899995, 49.807364750000062 ], [ -125.061033879999982, 49.807745920000094 ], [ -125.06314123199995, 49.807763998000063 ], [ -125.06313864199997, 49.807890777000125 ], [ -125.063067705999956, 49.81136080300012 ], [ -125.059268827999944, 49.811328184000025 ], [ -125.057512032999952, 49.811313055000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8726583", "BldgCostT": "6018333", "sL_LossRatio": "0.974845934082774", "sL_AssetLoss": "9135.7", "sL_BldgLoss": "8905.9", "sL_StrLoss": "7707.9", "sL_NStrLoss": "1198", "sL_ContLoss": "229.8", "geom_point": "0101000020E610000006A62E7440435FC0E8829FDDC6E54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.053296210999974, 49.797565296000137 ], [ -125.053250581999961, 49.796486665000096 ], [ -125.05283400499998, 49.796494048000085 ], [ -125.052822600999946, 49.796224390000113 ], [ -125.051989175999978, 49.796239155000094 ], [ -125.051979488999976, 49.796707618000077 ], [ -125.051066609000017, 49.796699696000125 ], [ -125.046425602999932, 49.796659306000087 ], [ -125.046500413999965, 49.793062439000096 ], [ -125.048901893, 49.793083363000072 ], [ -125.052053862999941, 49.793110748000075 ], [ -125.052028250999925, 49.79434944500013 ], [ -125.052326217999948, 49.794344167000048 ], [ -125.052337616999964, 49.794613824000059 ], [ -125.053170739999942, 49.794599061000085 ], [ -125.053159333999943, 49.79432940300007 ], [ -125.05399245199996, 49.794314633000148 ], [ -125.053981041, 49.794044976000073 ], [ -125.055647265999966, 49.794015419000118 ], [ -125.055658684999969, 49.794285077000062 ], [ -125.05607524199992, 49.794277684000058 ], [ -125.056109508999938, 49.795086656000109 ], [ -125.055692942999954, 49.795094050000095 ], [ -125.055704362999961, 49.79536370700005 ], [ -125.05528779499997, 49.795371098000011 ], [ -125.055310630999955, 49.79591041300008 ], [ -125.054894058999977, 49.795917803000037 ], [ -125.054928305999979, 49.796726776000092 ], [ -125.055344885999915, 49.796719385000088 ], [ -125.055379140999946, 49.79752835600015 ], [ -125.053296210999974, 49.797565296000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.882412879559813", "sL_AssetLoss": "49.07", "sL_BldgLoss": "43.3", "sL_StrLoss": "6.3", "sL_NStrLoss": "37", "sL_ContLoss": "5.77", "geom_point": "0101000020E61000007B832F4CA6435FC03D7CBA36ABE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.056590508999975, 49.826111944000104 ], [ -125.056579070999973, 49.825842288000018 ], [ -125.056162241999985, 49.825849687000044 ], [ -125.056127938999921, 49.825040720000075 ], [ -125.057795223999975, 49.825011120000113 ], [ -125.057840999999897, 49.826089741000082 ], [ -125.056590508999975, 49.826111944000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110114772", "BldgCostT": "73839158", "sL_LossRatio": "0.937704787316513", "sL_AssetLoss": "101584.05", "sL_BldgLoss": "95255.85", "sL_StrLoss": "83345.45", "sL_NStrLoss": "11910.4", "sL_ContLoss": "6328.2", "geom_point": "0101000020E61000007F39DCDCD2425FC0594CE8050AE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.063948163999925, 49.802961631000123 ], [ -125.06394015599993, 49.802773342000073 ], [ -125.063383610999921, 49.802783257000058 ], [ -125.061857010999958, 49.802810437000083 ], [ -125.06184555399993, 49.802540781000111 ], [ -125.061012299999902, 49.802555609000073 ], [ -125.061000848999981, 49.80228595300008 ], [ -125.059750971999961, 49.802308183 ], [ -125.059739527999909, 49.80203852699999 ], [ -125.059322902999924, 49.802045934000084 ], [ -125.059311460999979, 49.801776278000013 ], [ -125.057644975999921, 49.801805890000018 ], [ -125.057633542999923, 49.801536233000036 ], [ -125.055550442999959, 49.801573214000079 ], [ -125.055584708999987, 49.802382186000088 ], [ -125.055168079999987, 49.802389578000039 ], [ -125.055179498999948, 49.802659234000032 ], [ -125.053929609999983, 49.802681401 ], [ -125.053895371999928, 49.801872429000078 ], [ -125.054311996, 49.801865042000031 ], [ -125.054300579999961, 49.801595385000013 ], [ -125.054717203000024, 49.801587996000059 ], [ -125.054694368999932, 49.801048681000076 ], [ -125.053861135999966, 49.801063458000037 ], [ -125.053872546999941, 49.801333115000013 ], [ -125.05272458, 49.801353462000044 ], [ -125.052692984999965, 49.80288228300001 ], [ -125.049555113999986, 49.802855046000069 ], [ -125.047138351999934, 49.802834008000083 ], [ -125.047180653999987, 49.800798963000027 ], [ -125.047048573, 49.800797812000056 ], [ -125.047051765999953, 49.800644265000045 ], [ -125.045922657999981, 49.800664211000033 ], [ -125.045877188999953, 49.799585576000034 ], [ -125.04671039899992, 49.799570858000102 ], [ -125.046699028999953, 49.799301199000055 ], [ -125.047079825, 49.799294471000096 ], [ -125.047123340999974, 49.797200965000116 ], [ -125.050726194000021, 49.797232314000027 ], [ -125.052677292999988, 49.797249242000099 ], [ -125.052635237999965, 49.799284298000075 ], [ -125.052767312999976, 49.799285443 ], [ -125.052764858000018, 49.799404301000081 ], [ -125.052763628999969, 49.799463752000037 ], [ -125.052959463999954, 49.799460282000062 ], [ -125.052956971999919, 49.799401420000102 ], [ -125.052948056999952, 49.799190625000101 ], [ -125.055447656999945, 49.79914630000011 ], [ -125.055458053999985, 49.799391812000088 ], [ -125.055459077999942, 49.799415956000061 ], [ -125.055936852999977, 49.799407479000088 ], [ -125.056590791999923, 49.799395871000101 ], [ -125.056708880999949, 49.799393774000094 ], [ -125.056708992999972, 49.799396408000078 ], [ -125.056720308999985, 49.799663431000113 ], [ -125.05713691199999, 49.799656034000137 ], [ -125.057148341999962, 49.799925690000066 ], [ -125.058398158999978, 49.799903490000105 ], [ -125.058421031999941, 49.800442804000028 ], [ -125.060087468999953, 49.80041318100006 ], [ -125.060121809999956, 49.801222149000104 ], [ -125.060538424999962, 49.801214740000049 ], [ -125.06054987499999, 49.801484396000049 ], [ -125.061799728999972, 49.801462158000056 ], [ -125.061810154999989, 49.801707587000138 ], [ -125.061848334999979, 49.799842134000066 ], [ -125.060897786999973, 49.79985904800003 ], [ -125.060876559999897, 49.799359149000075 ], [ -125.060840536999962, 49.798510766000042 ], [ -125.060007351, 49.798525586000075 ], [ -125.059973016999919, 49.797716616000116 ], [ -125.060389602999962, 49.79770920800005 ], [ -125.06034381799995, 49.79663058200002 ], [ -125.061176970999966, 49.796615761000062 ], [ -125.061165520000017, 49.796346104000072 ], [ -125.062831814999939, 49.796316444000084 ], [ -125.062820354999985, 49.796046788000083 ], [ -125.06306952199999, 49.796042350000064 ], [ -125.063140279999985, 49.792579755000098 ], [ -125.064654452999932, 49.792592724000059 ], [ -125.064668210999955, 49.791918356000089 ], [ -125.063418552999948, 49.791907654000056 ], [ -125.063431172999941, 49.791289841000072 ], [ -125.060674784999904, 49.791266185000097 ], [ -125.060677835999925, 49.791117305000093 ], [ -125.059532549999957, 49.79110745600007 ], [ -125.059588048999942, 49.788401626000095 ], [ -125.057869153999945, 49.788386820000071 ], [ -125.057887952999948, 49.787471898000064 ], [ -125.056716465999955, 49.787461793000013 ], [ -125.056721769999967, 49.787203858000069 ], [ -125.055030915999978, 49.787189250000068 ], [ -125.055034553, 49.787012772000061 ], [ -125.054556224999956, 49.78700863500007 ], [ -125.051882507999949, 49.786985470000033 ], [ -125.051915459999975, 49.78539174500002 ], [ -125.051387285999979, 49.785387161000116 ], [ -125.051405781999918, 49.784493041000097 ], [ -125.05103872899997, 49.784489853000082 ], [ -125.051048571, 49.784014266000106 ], [ -125.049904713999979, 49.784004326000016 ], [ -125.049913582, 49.783576312000022 ], [ -125.047139433999988, 49.783552156000034 ], [ -125.047178291999927, 49.781682002000068 ], [ -125.045042881999976, 49.78166336000006 ], [ -125.045030947999948, 49.782236528000048 ], [ -125.043730774999958, 49.782225156000031 ], [ -125.043729795999965, 49.782272061000114 ], [ -125.043117737999978, 49.782266702000129 ], [ -125.043076987999939, 49.784219572000026 ], [ -125.040908521999967, 49.784200561000098 ], [ -125.037524624999918, 49.784170807000095 ], [ -125.037536957999976, 49.783583213000078 ], [ -125.034433225999962, 49.783555831000051 ], [ -125.03436948199996, 49.786582984000091 ], [ -125.030322851999955, 49.786547151000029 ], [ -125.030326568999911, 49.786636058000084 ], [ -125.030743066999932, 49.786628757000045 ], [ -125.030754345999981, 49.786898418000092 ], [ -125.031170846999913, 49.786891116000135 ], [ -125.031159566999989, 49.786621454000077 ], [ -125.0324090619999, 49.786599538000118 ], [ -125.032455832999958, 49.787716950000053 ], [ -125.032476786, 49.788217507000041 ], [ -125.031643761999959, 49.788232121000199 ], [ -125.031677611999967, 49.789041106000091 ], [ -125.032094131999884, 49.78903379900008 ], [ -125.032139276999899, 49.790112446000066 ], [ -125.031722749, 49.790119752000102 ], [ -125.031730733999936, 49.790310554000044 ], [ -125.031745317999963, 49.790659075000057 ], [ -125.029246117999989, 49.790702883000044 ], [ -125.029268660999932, 49.791242207000039 ], [ -125.029685198999957, 49.791234909000138 ], [ -125.02971902099992, 49.792043895000049 ], [ -125.02805283899994, 49.792073077000133 ], [ -125.028041572999953, 49.791803415000089 ], [ -125.027625028999978, 49.791810707000117 ], [ -125.027613767, 49.791541045000024 ], [ -125.027197225999927, 49.791548335000094 ], [ -125.027174705000022, 49.791009010000089 ], [ -125.026341630999951, 49.79102358500009 ], [ -125.026330376, 49.790753923000082 ], [ -125.02549730599999, 49.790768493000016 ], [ -125.025488377999949, 49.790554501 ], [ -125.020583580999968, 49.790510654000094 ], [ -125.020593536999954, 49.790044557000058 ], [ -125.019632139999956, 49.79006132300006 ], [ -125.019620921999916, 49.789791659000059 ], [ -125.019204393999928, 49.789798921000092 ], [ -125.019114678999969, 49.78764161000003 ], [ -125.02064543399996, 49.787614918000124 ], [ -125.020650370999988, 49.787383703000017 ], [ -125.01868641199998, 49.787366084000098 ], [ -125.018709379999976, 49.787918534000013 ], [ -125.017459840999919, 49.787940303 ], [ -125.017435515999949, 49.787354845 ], [ -125.016792927999973, 49.78734906500015 ], [ -125.016804082999954, 49.786828763000074 ], [ -125.019125120999945, 49.785303091000067 ], [ -125.019421521999917, 49.78510825700009 ], [ -125.020855118999975, 49.784165847000033 ], [ -125.021563129, 49.783700405000033 ], [ -125.023765940999937, 49.782255320000068 ], [ -125.025449233999922, 49.78115099700004 ], [ -125.025669905999962, 49.781006214000087 ], [ -125.02675422399993, 49.780294803000046 ], [ -125.030933294999969, 49.780744084000034 ], [ -125.031217941999927, 49.780774676000078 ], [ -125.031339994999954, 49.780787812 ], [ -125.034717197999925, 49.781150747000048 ], [ -125.03492673299999, 49.78117325900007 ], [ -125.036474363999972, 49.781339550000084 ], [ -125.038304017999948, 49.781536094000032 ], [ -125.039285288999963, 49.781641503000102 ], [ -125.039740346999935, 49.781658117000092 ], [ -125.039805510999926, 49.781660496000057 ], [ -125.040219399999927, 49.781649694000102 ], [ -125.040352054000024, 49.781617305000047 ], [ -125.040571901999968, 49.781563614000099 ], [ -125.041432157999949, 49.781353558000042 ], [ -125.041517208999949, 49.781332787000068 ], [ -125.042356673999947, 49.781015489000026 ], [ -125.042941403999947, 49.780739098000048 ], [ -125.045333188999933, 49.77941101200004 ], [ -125.046075666999954, 49.779024915000072 ], [ -125.046180600999946, 49.778970350000094 ], [ -125.046600483999967, 49.778752001000065 ], [ -125.047079425, 49.778978184000081 ], [ -125.048774247999958, 49.779778644 ], [ -125.049326267999945, 49.780039348000074 ], [ -125.053231084999979, 49.781883268000058 ], [ -125.05550447200001, 49.782956680000062 ], [ -125.057427311999959, 49.783864497000131 ], [ -125.057828007999959, 49.784092789000042 ], [ -125.058129921, 49.784265402000052 ], [ -125.06043972099998, 49.785903134000137 ], [ -125.06123220299996, 49.786464987000087 ], [ -125.062272297, 49.787272609000105 ], [ -125.06271447099999, 49.787646999000131 ], [ -125.063190911000021, 49.788116909000053 ], [ -125.064562718999966, 49.789653698000066 ], [ -125.064622885999952, 49.789721115000077 ], [ -125.0649706989999, 49.790031706000086 ], [ -125.06549920799992, 49.790399492000049 ], [ -125.065701571999938, 49.790502477000139 ], [ -125.068069043999969, 49.791707078000066 ], [ -125.070119709999972, 49.792750371000096 ], [ -125.07002251199998, 49.792821166000067 ], [ -125.069135912999968, 49.793466897000037 ], [ -125.06847961899993, 49.793851634000063 ], [ -125.067528344, 49.794195176000052 ], [ -125.067507620999919, 49.79423386400002 ], [ -125.066888872999968, 49.795389475000064 ], [ -125.066871092999975, 49.795435093000059 ], [ -125.066632605999928, 49.7960473730001 ], [ -125.066433838999913, 49.796557598000113 ], [ -125.066183090999971, 49.797201310000091 ], [ -125.06617965199996, 49.797210051000029 ], [ -125.06583590799994, 49.798358459000035 ], [ -125.065813098999939, 49.798434599000096 ], [ -125.065803880999937, 49.79847631500013 ], [ -125.065608122999933, 49.799363702000086 ], [ -125.065467153, 49.799998078000051 ], [ -125.06542760399995, 49.800176102000073 ], [ -125.065409902999946, 49.800258664000069 ], [ -125.065361616999937, 49.800484169000086 ], [ -125.065069123999947, 49.801850326000107 ], [ -125.065032129999935, 49.802023118000086 ], [ -125.06489635299999, 49.80265716300007 ], [ -125.064817025999957, 49.803027577000059 ], [ -125.064192129999981, 49.803038713000056 ], [ -125.063951624999973, 49.803042997000077 ], [ -125.063948163999925, 49.802961631000123 ] ], [ [ -125.065759299999954, 49.796534136000105 ], [ -125.065745060999959, 49.796199560000019 ], [ -125.064076903999933, 49.796185290000054 ], [ -125.064093000999947, 49.796563838000054 ], [ -125.065759299999954, 49.796534136000105 ] ], [ [ -125.026403164999962, 49.781582752000126 ], [ -125.026374621999977, 49.782927224000048 ], [ -125.026836993999922, 49.782919135000029 ], [ -125.026825737999928, 49.782649472000067 ], [ -125.027344633999959, 49.782640391000122 ], [ -125.027356129999973, 49.782098431000058 ], [ -125.02758514699994, 49.78210047000006 ], [ -125.027595898999976, 49.781593374000074 ], [ -125.026403164999962, 49.781582752000126 ] ], [ [ -125.033144992999979, 49.781782332000027 ], [ -125.03311986199999, 49.782974356000032 ], [ -125.03364645299996, 49.782979014000084 ], [ -125.033671570999971, 49.781786991000061 ], [ -125.033144992999979, 49.781782332000027 ] ], [ [ -125.024405708999936, 49.783914218000049 ], [ -125.024391521999959, 49.784581057000075 ], [ -125.025238595999951, 49.784566250000069 ], [ -125.025249842999983, 49.784835913000045 ], [ -125.02566632599995, 49.784828630000057 ], [ -125.025655077999929, 49.784558967000038 ], [ -125.026071558999931, 49.784551683000103 ], [ -125.026019873, 49.783312806000048 ], [ -125.025907865999955, 49.783311807000061 ], [ -125.02589478699997, 49.783927503000044 ], [ -125.024405708999936, 49.783914218000049 ] ], [ [ -125.024362803999907, 49.78593085700011 ], [ -125.024357059999957, 49.786200816000118 ], [ -125.024473082999947, 49.786198788000078 ], [ -125.024461841999965, 49.785929125000088 ], [ -125.024362803999907, 49.78593085700011 ] ], [ [ -125.022414214999984, 49.786802189000113 ], [ -125.022419518, 49.786929527000048 ], [ -125.022836479999924, 49.786933256000076 ], [ -125.02283117599994, 49.78680591800002 ], [ -125.022414214999984, 49.786802189000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38688244", "BldgCostT": "25234076", "sL_LossRatio": "0.96726792070246", "sL_AssetLoss": "33121.33", "sL_BldgLoss": "32037.2", "sL_StrLoss": "27755.5", "sL_NStrLoss": "4281.7", "sL_ContLoss": "1084.13", "geom_point": "0101000020E6100000969678DDEE405FC06641F6B4A2E54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.010629737999977, 49.797335658000094 ], [ -125.010635903999969, 49.797049913000045 ], [ -125.01042529299994, 49.797048006000153 ], [ -125.010115489999976, 49.796612109000058 ], [ -125.009392291999987, 49.795812600000048 ], [ -125.008208794999945, 49.794504202000084 ], [ -125.007691306999931, 49.794135386000107 ], [ -125.006821504999962, 49.794040232000064 ], [ -125.006930376999932, 49.793954872000072 ], [ -125.007788610999938, 49.792913706000029 ], [ -125.007833190999989, 49.792779205000045 ], [ -125.00859031899995, 49.792250902000013 ], [ -125.009105195999936, 49.791910281000078 ], [ -125.01092608699993, 49.790705631000058 ], [ -125.011890797999982, 49.790067400000098 ], [ -125.012799045999941, 49.789482009000096 ], [ -125.013785385999938, 49.78881279600008 ], [ -125.016361992999933, 49.787119342000061 ], [ -125.016342611, 49.788022916000102 ], [ -125.017045003999968, 49.788029236000085 ], [ -125.016996013000011, 49.790314458000083 ], [ -125.019647345999914, 49.790338274000064 ], [ -125.019632200999965, 49.791046537000099 ], [ -125.020871341999978, 49.791057645000073 ], [ -125.020794523999939, 49.794654504000064 ], [ -125.02023989499996, 49.794649533000083 ], [ -125.02025065299992, 49.794908 ], [ -125.019116073999953, 49.79492778200003 ], [ -125.019045867000017, 49.798208939000077 ], [ -125.016166554999984, 49.798183061000053 ], [ -125.016123768999975, 49.800176606 ], [ -125.012870718999935, 49.800147278000075 ], [ -125.012524616999883, 49.799772400000116 ], [ -125.01171371, 49.798625891000043 ], [ -125.01111960899999, 49.798024887000025 ], [ -125.010629737999977, 49.797335658000094 ] ], [ [ -125.012324569, 49.794776100000036 ], [ -125.012320717999941, 49.794683194000044 ], [ -125.01223514, 49.794682421000118 ], [ -125.012233086999942, 49.794777689000114 ], [ -125.012324569, 49.794776100000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5476167", "BldgCostT": "3776667", "sL_LossRatio": "0.986881798794511", "sL_AssetLoss": "3348.02", "sL_BldgLoss": "3304.1", "sL_StrLoss": "3061", "sL_NStrLoss": "243.1", "sL_ContLoss": "43.92", "geom_point": "0101000020E61000009BA994C768435FC0EDAEFDAE99E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.050529318999978, 49.815367596000051 ], [ -125.056085474999961, 49.815415698000031 ], [ -125.056011381999951, 49.81901246000006 ], [ -125.050454787999982, 49.818964353000091 ], [ -125.050529318999978, 49.815367596000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7467500", "BldgCostT": "5150000", "sL_LossRatio": "0.993727096075849", "sL_AssetLoss": "3833.95", "sL_BldgLoss": "3809.9", "sL_StrLoss": "3655", "sL_NStrLoss": "154.9", "sL_ContLoss": "24.05", "geom_point": "0101000020E61000004B8B7E5D9B455FC0790CC9A8B6E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.086989378999945, 49.759041342000025 ], [ -125.087022083999912, 49.757397673000135 ], [ -125.084108168999933, 49.757373272000024 ], [ -125.084137800999926, 49.75588867000004 ], [ -125.083887550999989, 49.755886570000065 ], [ -125.083910105999919, 49.754756816000068 ], [ -125.083665912999919, 49.754754768000154 ], [ -125.083736045999927, 49.751242323000056 ], [ -125.083769080999943, 49.751231571000034 ], [ -125.083989671999959, 49.751159779000091 ], [ -125.086411115999937, 49.751180067000071 ], [ -125.08663354, 49.751447245000051 ], [ -125.087017093, 49.751908020000059 ], [ -125.087518978999981, 49.752567869000053 ], [ -125.087614702999971, 49.752693692000101 ], [ -125.088216022999987, 49.753294201000138 ], [ -125.088677588999985, 49.753690042000109 ], [ -125.091813433999945, 49.756378856000019 ], [ -125.093417834999983, 49.757754391000041 ], [ -125.09256525899994, 49.757747310000063 ], [ -125.092538751999939, 49.759087596000086 ], [ -125.086989378999945, 49.759041342000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993589743589744", "sL_AssetLoss": "318.24", "sL_BldgLoss": "316.2", "sL_StrLoss": "300", "sL_NStrLoss": "16.2", "sL_ContLoss": "2.04", "geom_point": "0101000020E6100000182B83CD2D445FC02BE185845AE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.064769199999901, 49.753643882000112 ], [ -125.064746294999978, 49.753104566000069 ], [ -125.06349768599992, 49.753126820000013 ], [ -125.063451903999962, 49.752048187000049 ], [ -125.065116677, 49.752018513000039 ], [ -125.06512813199997, 49.752288171000039 ], [ -125.065544326999941, 49.752280750000089 ], [ -125.065532870999931, 49.752011091000057 ], [ -125.066781448999919, 49.751988816000079 ], [ -125.066850234999933, 49.753606761000157 ], [ -125.064769199999901, 49.753643882000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10766250", "BldgCostT": "7425000", "sL_LossRatio": "0.995541874331905", "sL_AssetLoss": "5210.71", "sL_BldgLoss": "5187.48", "sL_StrLoss": "4997", "sL_NStrLoss": "190.48", "sL_ContLoss": "23.23", "geom_point": "0101000020E6100000CF1EBB4D30445FC05468E6EA43E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.065783549999935, 49.762597211000049 ], [ -125.064755027999979, 49.76178086600008 ], [ -125.063590544999954, 49.760856541000102 ], [ -125.063007824999943, 49.760393996000076 ], [ -125.062318080999887, 49.759846477000039 ], [ -125.060193188999961, 49.758159622000051 ], [ -125.060137511999955, 49.758115400000108 ], [ -125.058153209999944, 49.756564696000034 ], [ -125.05794896, 49.75640500700009 ], [ -125.05693391199992, 49.755611437000042 ], [ -125.056947272999949, 49.754961303000059 ], [ -125.062496122999946, 49.755009084000022 ], [ -125.062483958999934, 49.75560448 ], [ -125.063425722999966, 49.755612561000092 ], [ -125.063415127999974, 49.756131664000122 ], [ -125.063775340999911, 49.756134753000012 ], [ -125.063756502, 49.757058109000091 ], [ -125.065170144999954, 49.75707021900012 ], [ -125.065158671999981, 49.757633413000072 ], [ -125.069174726999961, 49.757667718000043 ], [ -125.0691035299999, 49.761177177000086 ], [ -125.07073688199992, 49.761191087 ], [ -125.07071803499997, 49.762121675000074 ], [ -125.071634105999948, 49.762129465000037 ], [ -125.071561316999947, 49.765726505000075 ], [ -125.069774123999977, 49.765711298999989 ], [ -125.06720037299999, 49.76568934900007 ], [ -125.068511017999981, 49.764761808000031 ], [ -125.067061499999923, 49.7636114700001 ], [ -125.06621542799995, 49.762939964000147 ], [ -125.065783549999935, 49.762597211000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71157250", "BldgCostT": "48655000", "sL_LossRatio": "0.928578894050559", "sL_AssetLoss": "34425.118", "sL_BldgLoss": "31966.438", "sL_StrLoss": "29690.548", "sL_NStrLoss": "2275.89", "sL_ContLoss": "2458.68", "geom_point": "0101000020E61000007090941D30455FC056040F3E5AE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.082111262999945, 49.797575669000075 ], [ -125.080336769999988, 49.797047826000011 ], [ -125.079551257, 49.796814138000066 ], [ -125.079446493999939, 49.79678297500007 ], [ -125.078569083, 49.796523586000035 ], [ -125.078303427999984, 49.796445070000054 ], [ -125.077589018999916, 49.796162329 ], [ -125.077270107999979, 49.796036138000034 ], [ -125.076951470999958, 49.795884727000058 ], [ -125.075593376999905, 49.795239512000116 ], [ -125.072880811999951, 49.793889049000015 ], [ -125.071683927999928, 49.793335655000156 ], [ -125.070119709999972, 49.792750371000096 ], [ -125.068069043999969, 49.791707078000066 ], [ -125.065701571999938, 49.790502477000139 ], [ -125.06549920799992, 49.790399492000049 ], [ -125.0649706989999, 49.790031706000086 ], [ -125.064622885999952, 49.789721115000077 ], [ -125.064562718999966, 49.789653698000066 ], [ -125.063190911000021, 49.788116909000053 ], [ -125.06271447099999, 49.787646999000131 ], [ -125.062272297, 49.787272609000105 ], [ -125.06123220299996, 49.786464987000087 ], [ -125.06043972099998, 49.785903134000137 ], [ -125.058129921, 49.784265402000052 ], [ -125.057828007999959, 49.784092789000042 ], [ -125.059199217999918, 49.782899494000112 ], [ -125.059777749999981, 49.782552343000127 ], [ -125.059859787999983, 49.782503103000138 ], [ -125.06046510499999, 49.782298793000066 ], [ -125.060836813999956, 49.782248004000124 ], [ -125.061692688999983, 49.782282304000027 ], [ -125.062344815999921, 49.782368899000055 ], [ -125.065181898999953, 49.782749396 ], [ -125.065294035999941, 49.782764433000047 ], [ -125.067646113999899, 49.783079787000069 ], [ -125.06847138699996, 49.783113813000043 ], [ -125.069289302999962, 49.783038013000123 ], [ -125.06998669699999, 49.782879407000038 ], [ -125.071035882, 49.782482695000041 ], [ -125.073065774999975, 49.781444004000015 ], [ -125.073180006999948, 49.781387301000038 ], [ -125.075016390999906, 49.780475703000029 ], [ -125.076431701999937, 49.779773954000085 ], [ -125.077686222999958, 49.779151904000116 ], [ -125.077916697999939, 49.778939790000045 ], [ -125.078138615999961, 49.778646087000077 ], [ -125.078174146999956, 49.778599080000056 ], [ -125.07902478599999, 49.777473188000073 ], [ -125.080141406999985, 49.775990498000077 ], [ -125.080768609999893, 49.774964206000043 ], [ -125.081255006999953, 49.774448501000094 ], [ -125.081070704999931, 49.774327505000031 ], [ -125.081121007, 49.771816552000089 ], [ -125.08309317899996, 49.771833124000061 ], [ -125.083119704999973, 49.770505999000072 ], [ -125.084911149999954, 49.7705210210001 ], [ -125.084952053999984, 49.76847044000003 ], [ -125.087169645999893, 49.76848899400008 ], [ -125.087190827999947, 49.767424494000068 ], [ -125.0873434799999, 49.767425770000038 ], [ -125.087381232999959, 49.765527994000081 ], [ -125.090240181999903, 49.765551844000079 ], [ -125.090246837999985, 49.76521616400008 ], [ -125.091224986999947, 49.765224307000032 ], [ -125.091231818999944, 49.764879388000075 ], [ -125.091828742999965, 49.764884353000141 ], [ -125.091836418999975, 49.764496603000097 ], [ -125.096288110999964, 49.764533528000115 ], [ -125.096299745999943, 49.763942862000121 ], [ -125.096130932999955, 49.763941465000094 ], [ -125.096137101999958, 49.763628339000022 ], [ -125.093803962999957, 49.763609006000067 ], [ -125.093824899999973, 49.762548939000112 ], [ -125.092661482999915, 49.762539280000048 ], [ -125.092732613999971, 49.75894221100004 ], [ -125.094823647999988, 49.758959562000044 ], [ -125.096442874999937, 49.760347615000086 ], [ -125.096976586999972, 49.760805106000127 ], [ -125.097163131999977, 49.760955033000101 ], [ -125.100035297, 49.763263308000063 ], [ -125.100043392999964, 49.764122308000069 ], [ -125.094749855999964, 49.76701017800012 ], [ -125.092129863999972, 49.768439247000046 ], [ -125.091341378999942, 49.768869313000096 ], [ -125.093115654999949, 49.77071597500008 ], [ -125.092677103999989, 49.770712334000024 ], [ -125.092670072999923, 49.771067762000058 ], [ -125.090452353999922, 49.771049319000092 ], [ -125.090431247, 49.772113816000044 ], [ -125.088639738, 49.772098884000052 ], [ -125.088598995999945, 49.774149456000046 ], [ -125.086626721999949, 49.774132984000047 ], [ -125.086600294999954, 49.775460103000121 ], [ -125.081821194999947, 49.775420042000114 ], [ -125.081820706999935, 49.77544446200011 ], [ -125.082719692999902, 49.775452014000052 ], [ -125.082647751999957, 49.779048993000124 ], [ -125.080423841999945, 49.779030298000066 ], [ -125.080415240999955, 49.779030226000067 ], [ -125.080358627999914, 49.781853543000089 ], [ -125.076916853999947, 49.78182452100009 ], [ -125.076885980999961, 49.783358327000016 ], [ -125.076357734999988, 49.783353863000087 ], [ -125.076294942999937, 49.786471233000057 ], [ -125.070742271999961, 49.786424156000059 ], [ -125.070761905999944, 49.785455290000058 ], [ -125.070753975999949, 49.785455222000088 ], [ -125.070687538999948, 49.78873345200001 ], [ -125.07448262699999, 49.788765659 ], [ -125.074467832999972, 49.789498621000028 ], [ -125.077066073999944, 49.78952059500007 ], [ -125.077064440999933, 49.789601665000077 ], [ -125.077870948999987, 49.789608473000101 ], [ -125.077857902999966, 49.790257137000054 ], [ -125.079032842999951, 49.790267045000107 ], [ -125.078988948999964, 49.792452290000035 ], [ -125.082409848999959, 49.792481065000153 ], [ -125.082409841, 49.792481450000025 ], [ -125.083570905999963, 49.792491191000082 ], [ -125.08360477399998, 49.790796763000102 ], [ -125.085524259999929, 49.790812841000069 ], [ -125.085522967999964, 49.79078279000003 ], [ -125.087189047999942, 49.790752781000094 ], [ -125.087192227999964, 49.7908267850001 ], [ -125.089157985999975, 49.790843186000046 ], [ -125.089117587999908, 49.792876768000021 ], [ -125.089463084, 49.792879647000085 ], [ -125.089512292999984, 49.790401643000088 ], [ -125.084994882999951, 49.790363914000118 ], [ -125.085039476999924, 49.788129134000052 ], [ -125.083373956999935, 49.788115178000105 ], [ -125.083434279999921, 49.785097322000055 ], [ -125.080421328999947, 49.78507200800005 ], [ -125.080493454999925, 49.781475061000073 ], [ -125.081245167999924, 49.78148138400006 ], [ -125.081268090999927, 49.780337078000116 ], [ -125.08149304899996, 49.780338969000141 ], [ -125.086820034999946, 49.780383621000048 ], [ -125.086815102999978, 49.780631341000102 ], [ -125.08322094799999, 49.782356364000059 ], [ -125.083632159999979, 49.78283403800004 ], [ -125.086831455999956, 49.786549973000064 ], [ -125.08761822699995, 49.787463662000015 ], [ -125.088207676999929, 49.788148143000079 ], [ -125.089187389999921, 49.789285832000083 ], [ -125.09091908399995, 49.791296598000081 ], [ -125.091562214999954, 49.792361591000052 ], [ -125.09173374099997, 49.792645621000069 ], [ -125.092903914999923, 49.794583182000025 ], [ -125.093050883999965, 49.79482651400015 ], [ -125.093825999000032, 49.796109904000076 ], [ -125.093880995999911, 49.796282091000137 ], [ -125.09392418799996, 49.796903898000025 ], [ -125.093962272999988, 49.79750679500011 ], [ -125.093941469999947, 49.797971036000035 ], [ -125.093855617999949, 49.799884790000085 ], [ -125.093852086999973, 49.800004704000067 ], [ -125.093813164999972, 49.801332401000103 ], [ -125.093812894, 49.801341392000047 ], [ -125.089764289999934, 49.800012222000056 ], [ -125.08847290099996, 49.799588208000024 ], [ -125.087689129999958, 49.799333921000027 ], [ -125.085580045999933, 49.798649630000043 ], [ -125.084077400999931, 49.798162045000034 ], [ -125.084020098999957, 49.798143467000081 ], [ -125.083520830999944, 49.797994962000132 ], [ -125.082423346999931, 49.797668516000101 ], [ -125.082111262999945, 49.797575669000075 ] ], [ [ -125.090506517999941, 49.797526219000055 ], [ -125.090518950999964, 49.796899537000066 ], [ -125.08995515699992, 49.796909710000094 ], [ -125.089948403999955, 49.7967528430001 ], [ -125.089569398999956, 49.796749686000034 ], [ -125.08955821799999, 49.797312773000044 ], [ -125.088616276999986, 49.797304924000095 ], [ -125.08861219100001, 49.797510441000028 ], [ -125.090506517999941, 49.797526219000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.990339065239285", "sL_AssetLoss": "1608.54", "sL_BldgLoss": "1593", "sL_StrLoss": "1492", "sL_NStrLoss": "101", "sL_ContLoss": "15.54", "geom_point": "0101000020E6100000AC20A38FFB445FC055370F0E93E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.074529965999957, 49.768520879000057 ], [ -125.080080472999924, 49.768567765000114 ], [ -125.08000833599999, 49.77216477700005 ], [ -125.079328701999913, 49.772159051000138 ], [ -125.079311912999984, 49.772995563000094 ], [ -125.075303507999962, 49.769924150000165 ], [ -125.07451386399994, 49.769319031000066 ], [ -125.074529965999957, 49.768520879000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20485802", "BldgCostT": "13313745", "sL_LossRatio": "0.985907776330478", "sL_AssetLoss": "9235.59", "sL_BldgLoss": "9105.44", "sL_StrLoss": "8437.24", "sL_NStrLoss": "668.2", "sL_ContLoss": "130.15", "geom_point": "0101000020E6100000AD24899000445FC08BB24CF9EFDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.053434278999958, 49.752765968000112 ], [ -125.053436560999927, 49.752655354000083 ], [ -125.053150061999972, 49.752652870000091 ], [ -125.0530409, 49.752567510000048 ], [ -125.052246209999979, 49.751945968000072 ], [ -125.050333031999969, 49.750449612000082 ], [ -125.050362387999925, 49.749030923000042 ], [ -125.053159423999958, 49.74905521500007 ], [ -125.053165170999961, 49.74877664300007 ], [ -125.052339067999952, 49.748769476000064 ], [ -125.052356836999977, 49.747908912000113 ], [ -125.054757134999974, 49.746629921000086 ], [ -125.055245966999919, 49.746369421000033 ], [ -125.057751692999886, 49.745034106000084 ], [ -125.061484012999969, 49.745876698000139 ], [ -125.074898375999936, 49.7487563070001 ], [ -125.074969283999962, 49.748771542000057 ], [ -125.075272505999948, 49.748836617000052 ], [ -125.076390400999969, 49.749128400000089 ], [ -125.076898998999937, 49.749291010000057 ], [ -125.077420541999984, 49.749564111000026 ], [ -125.077431590999979, 49.749569890000082 ], [ -125.077693405999938, 49.749796895000067 ], [ -125.079180247999929, 49.751838928000019 ], [ -125.07922535599999, 49.751900874000043 ], [ -125.079574098999956, 49.752379798000042 ], [ -125.079735298999978, 49.752440488000055 ], [ -125.079782470999959, 49.752442310000077 ], [ -125.079975098999938, 49.752449700000042 ], [ -125.080208003999985, 49.75239050800009 ], [ -125.080613371999974, 49.752258568000059 ], [ -125.080745759999985, 49.752215495000094 ], [ -125.080733808999938, 49.752812108000086 ], [ -125.075185205999944, 49.752765254000053 ], [ -125.07522434399999, 49.750823129 ], [ -125.071186572999963, 49.750788855000032 ], [ -125.071206101999977, 49.749823907000113 ], [ -125.066249642999978, 49.749781632000087 ], [ -125.066250554999954, 49.749736837000043 ], [ -125.065159804999936, 49.749727504000063 ], [ -125.065170384999973, 49.749208070000051 ], [ -125.060640163999921, 49.749169188000046 ], [ -125.060664750999962, 49.747967858000081 ], [ -125.059169166999965, 49.747954981000078 ], [ -125.059165772999961, 49.748120561000071 ], [ -125.058727785999935, 49.748116786000089 ], [ -125.05869564799994, 49.749683768000047 ], [ -125.055898570999915, 49.749659619000106 ], [ -125.055877514999963, 49.750683184000088 ], [ -125.059025991999988, 49.750710362000092 ], [ -125.058952232999943, 49.75430745000012 ], [ -125.056465918999905, 49.754285995000075 ], [ -125.056507901999979, 49.755278370000092 ], [ -125.054224053999988, 49.753492676000086 ], [ -125.053297786999977, 49.752768388000071 ], [ -125.053434278999958, 49.752765968000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42284199", "BldgCostT": "28532212", "sL_LossRatio": "0.992973418879192", "sL_AssetLoss": "21420.09", "sL_BldgLoss": "21269.58", "sL_StrLoss": "20156.48", "sL_NStrLoss": "1113.1", "sL_ContLoss": "150.51", "geom_point": "0101000020E6100000B03CE52416425FC099F5200C55DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.042625658999938, 49.749312425000063 ], [ -125.042664358999929, 49.747457211000089 ], [ -125.039594657999928, 49.747430251000047 ], [ -125.03960736599997, 49.746822966000138 ], [ -125.039206978999914, 49.746819443000049 ], [ -125.039217755999957, 49.746304613000085 ], [ -125.038845397000017, 49.746301335000084 ], [ -125.038886611999942, 49.74433314200013 ], [ -125.033853027999953, 49.744288711000088 ], [ -125.033855685999981, 49.744162416000037 ], [ -125.03282449699999, 49.744153285000046 ], [ -125.032896652999952, 49.74072866800006 ], [ -125.031553557000024, 49.740716761000023 ], [ -125.03158649599996, 49.739155450000112 ], [ -125.029386270999979, 49.739135908000101 ], [ -125.029424944999946, 49.737306740000072 ], [ -125.026786383999962, 49.737283247000065 ], [ -125.026807692, 49.736278101000089 ], [ -125.024352951999902, 49.736256187000066 ], [ -125.024390066999928, 49.734509692000117 ], [ -125.022706278000015, 49.734494628000128 ], [ -125.019365368999956, 49.734464663000047 ], [ -125.01942093299995, 49.731863183000051 ], [ -125.017490456999937, 49.731845820000089 ], [ -125.017536503999921, 49.729693953000059 ], [ -125.015186000999947, 49.729672767000082 ], [ -125.015213424999928, 49.728394164000058 ], [ -125.014468102999942, 49.728387436000126 ], [ -125.016620292999946, 49.727224706000108 ], [ -125.018523308999988, 49.726196521000134 ], [ -125.022509428999939, 49.725079713000063 ], [ -125.022507889999986, 49.725152068000064 ], [ -125.02478925199992, 49.725172480000062 ], [ -125.024777412999981, 49.725729926000099 ], [ -125.024995577999903, 49.725731876000033 ], [ -125.024966622999955, 49.727095558000038 ], [ -125.026879390999952, 49.727112631000068 ], [ -125.02683546699997, 49.729185086 ], [ -125.028822442999981, 49.729202787000112 ], [ -125.028801806999979, 49.730178414000065 ], [ -125.02994256, 49.730188560000073 ], [ -125.029889333999918, 49.732707699000088 ], [ -125.02997551299994, 49.732708465000037 ], [ -125.029955309999977, 49.733664599000065 ], [ -125.031645809999958, 49.733679611000071 ], [ -125.031676932999986, 49.732204011000114 ], [ -125.037223004999959, 49.732253078000014 ], [ -125.03714756799999, 49.735850243000058 ], [ -125.03627328099995, 49.735842527000102 ], [ -125.036245612999949, 49.737160479000032 ], [ -125.037176107999969, 49.7371686910001 ], [ -125.037141084999945, 49.738838528000095 ], [ -125.038451367999969, 49.738850078000041 ], [ -125.038459691999918, 49.738452698000053 ], [ -125.044006525999947, 49.738501418000084 ], [ -125.043988662999951, 49.739359183000083 ], [ -125.045474121999945, 49.739372183000093 ], [ -125.045399318999955, 49.742969319000046 ], [ -125.044463732999986, 49.74296113300003 ], [ -125.044457350999963, 49.74326775100009 ], [ -125.044829684999968, 49.743271009000082 ], [ -125.044817047999956, 49.743878298000091 ], [ -125.045217407999957, 49.743881800000032 ], [ -125.045213827999987, 49.744053969000078 ], [ -125.048941276999969, 49.744086506 ], [ -125.048866738999919, 49.747683621000107 ], [ -125.048208714999987, 49.747677885000087 ], [ -125.048185893999985, 49.748778293000065 ], [ -125.048173810999984, 49.749360933000034 ], [ -125.042625658999938, 49.749312425000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12755166", "BldgCostT": "8796666", "sL_LossRatio": "0.994192760686617", "sL_AssetLoss": "6414.752", "sL_BldgLoss": "6377.5", "sL_StrLoss": "6129.8", "sL_NStrLoss": "247.7", "sL_ContLoss": "37.252", "geom_point": "0101000020E61000007E22682FCF435FC045BBA7FE03DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.052752798, 49.745175310000079 ], [ -125.05280316599999, 49.742734568000024 ], [ -125.054455655999959, 49.742748894000066 ], [ -125.054472347999962, 49.741938608000105 ], [ -125.055987365999982, 49.741951720000081 ], [ -125.056016093999943, 49.740554774000024 ], [ -125.055449991, 49.740549877000078 ], [ -125.055524002999945, 49.736952721000137 ], [ -125.057987399999959, 49.736974009000072 ], [ -125.058023834999972, 49.735198335000099 ], [ -125.058330720999905, 49.735200201000076 ], [ -125.059133110999966, 49.735455110000046 ], [ -125.059466809999961, 49.735772694000069 ], [ -125.059522894999972, 49.736473393000011 ], [ -125.058756018999972, 49.737350699000061 ], [ -125.058789591, 49.737503107000066 ], [ -125.05911989699996, 49.738099891000033 ], [ -125.059537288999934, 49.738425998000082 ], [ -125.06083991, 49.738745 ], [ -125.061607403, 49.73882048600013 ], [ -125.06285528799999, 49.738482996000066 ], [ -125.06300534799999, 49.73841493400009 ], [ -125.062944693999953, 49.741386342000034 ], [ -125.065642767999933, 49.741409468000057 ], [ -125.06562621099999, 49.742222848000075 ], [ -125.065990104000022, 49.742225962000106 ], [ -125.065958320999925, 49.743787880000099 ], [ -125.070629622999945, 49.743827746000072 ], [ -125.070618314999976, 49.744386232000046 ], [ -125.071041940999947, 49.74438983700005 ], [ -125.071039504999987, 49.744510204000044 ], [ -125.071641126999964, 49.74451532200009 ], [ -125.071629561999956, 49.745087074000033 ], [ -125.072435103999936, 49.745093921000056 ], [ -125.072078084999973, 49.745443095000098 ], [ -125.072073397999986, 49.745686612000064 ], [ -125.072287887999892, 49.74601354400005 ], [ -125.062272817999926, 49.743226454000066 ], [ -125.06328527699999, 49.744752593000072 ], [ -125.063282617999974, 49.74488389400004 ], [ -125.063170830999979, 49.744991703000053 ], [ -125.061484012999969, 49.745876698000139 ], [ -125.057751692999886, 49.745034106000084 ], [ -125.055245966999919, 49.746369421000033 ], [ -125.054757134999974, 49.746629921000086 ], [ -125.052356836999977, 49.747908912000113 ], [ -125.052413335999987, 49.745172365000016 ], [ -125.052752798, 49.745175310000079 ] ], [ [ -125.060067923999952, 49.742711447000076 ], [ -125.060081719999971, 49.742037725000088 ], [ -125.060018581999927, 49.742037182000082 ], [ -125.060004784999975, 49.742710903000074 ], [ -125.060067923999952, 49.742711447000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.994607576269201", "sL_AssetLoss": "2902.22", "sL_BldgLoss": "2886.57", "sL_StrLoss": "2773", "sL_NStrLoss": "113.57", "sL_ContLoss": "15.65", "geom_point": "0101000020E610000080357B5EF9435FC0793F6EBF7CE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.066011160999921, 49.765679186000035 ], [ -125.066019039, 49.765292214000084 ], [ -125.062083033999954, 49.765258486000072 ], [ -125.062134579999963, 49.7627369900001 ], [ -125.058835366, 49.762708609000029 ], [ -125.058897271999939, 49.75969051900011 ], [ -125.05815252499994, 49.759684099000083 ], [ -125.058163179999951, 49.75916499800006 ], [ -125.05780294199991, 49.759161890000037 ], [ -125.057815167999976, 49.758566498000064 ], [ -125.056873343999953, 49.758558368000081 ], [ -125.05693391199992, 49.755611437000042 ], [ -125.05794896, 49.75640500700009 ], [ -125.058153209999944, 49.756564696000034 ], [ -125.060137511999955, 49.758115400000108 ], [ -125.060193188999961, 49.758159622000051 ], [ -125.062318080999887, 49.759846477000039 ], [ -125.063007824999943, 49.760393996000076 ], [ -125.063590544999954, 49.760856541000102 ], [ -125.064755027999979, 49.76178086600008 ], [ -125.065783549999935, 49.762597211000049 ], [ -125.06621542799995, 49.762939964000147 ], [ -125.067061499999923, 49.7636114700001 ], [ -125.068511017999981, 49.764761808000031 ], [ -125.06720037299999, 49.76568934900007 ], [ -125.066011160999921, 49.765679186000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.987853277209862", "sL_AssetLoss": "415.75", "sL_BldgLoss": "410.7", "sL_StrLoss": "393", "sL_NStrLoss": "17.7", "sL_ContLoss": "5.05", "geom_point": "0101000020E6100000220140A1A0435FC021E0D6FE4AE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.055852090999934, 49.759469612000061 ], [ -125.05751712799993, 49.759440044000044 ], [ -125.057562789999949, 49.760518677000078 ], [ -125.057146523999947, 49.760526072000083 ], [ -125.057157935999896, 49.760795732000098 ], [ -125.055909124, 49.760817906000078 ], [ -125.055852090999934, 49.759469612000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.987258648318523", "sL_AssetLoss": "892.37", "sL_BldgLoss": "881", "sL_StrLoss": "842", "sL_NStrLoss": "39", "sL_ContLoss": "11.37", "geom_point": "0101000020E61000007E0860B914415FC05266BDF7BBDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.015584578999935, 49.739207897000078 ], [ -125.015509117999912, 49.738924293000125 ], [ -125.015420114, 49.738589797000039 ], [ -125.015159921999953, 49.738250288000074 ], [ -125.016884669999982, 49.738265835000078 ], [ -125.017835121999923, 49.738274392000037 ], [ -125.017817087999916, 49.73911728900007 ], [ -125.018094763999926, 49.739119787000085 ], [ -125.018017815999912, 49.742716905000101 ], [ -125.017827100999952, 49.742715189000137 ], [ -125.017818496999951, 49.7425690150001 ], [ -125.017289782, 49.742164603000084 ], [ -125.016815400999945, 49.741941491000084 ], [ -125.016311587999937, 49.741704497000079 ], [ -125.015948298999916, 49.741270205000085 ], [ -125.015843612999987, 49.74080439600003 ], [ -125.015474799999964, 49.740236211000123 ], [ -125.015503411999987, 49.739955588000093 ], [ -125.015819604999933, 49.739528311000093 ], [ -125.015754530999985, 49.739439590000067 ], [ -125.015584578999935, 49.739207897000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.986918989669196", "sL_AssetLoss": "1283.54", "sL_BldgLoss": "1266.75", "sL_StrLoss": "1169.25", "sL_NStrLoss": "97.5", "sL_ContLoss": "16.79", "geom_point": "0101000020E6100000CD8D4C3446435FC0863432E17AE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.049448995999953, 49.755805037000052 ], [ -125.049426258000011, 49.755265717000043 ], [ -125.049010031999927, 49.755273082000024 ], [ -125.04899866699999, 49.755003421 ], [ -125.048582443, 49.755010785000088 ], [ -125.048548350999951, 49.754201804000033 ], [ -125.047715917999966, 49.754216525000061 ], [ -125.047727278999943, 49.754486186000101 ], [ -125.046478620999949, 49.754508256000086 ], [ -125.046433212999972, 49.753429613000137 ], [ -125.04851426299993, 49.753392822000109 ], [ -125.048536987999967, 49.753932143000021 ], [ -125.04895320299994, 49.753924780000055 ], [ -125.048919106000014, 49.753115799000049 ], [ -125.050583931999952, 49.753086333000063 ], [ -125.050564702999907, 49.752630420000024 ], [ -125.050287952999923, 49.752628013000098 ], [ -125.050333031999969, 49.750449612000082 ], [ -125.052246209999979, 49.751945968000072 ], [ -125.0530409, 49.752567510000048 ], [ -125.053150061999972, 49.752652870000091 ], [ -125.053064697999986, 49.75265212900009 ], [ -125.053069777999966, 49.752772430000064 ], [ -125.053297786999977, 49.752768388000071 ], [ -125.054224053999988, 49.753492676000086 ], [ -125.056507901999979, 49.755278370000092 ], [ -125.056513466999917, 49.755409947000047 ], [ -125.054432342000013, 49.755446882000065 ], [ -125.054398154999944, 49.754637904000056 ], [ -125.054814372999914, 49.754630521000117 ], [ -125.05479920099999, 49.754271581000054 ], [ -125.053403471999943, 49.754259490000088 ], [ -125.05341200499997, 49.753845809000069 ], [ -125.052699119999929, 49.753858447000027 ], [ -125.052721891999951, 49.754397766000061 ], [ -125.052305674999943, 49.754405142000088 ], [ -125.052328442999979, 49.754944462000076 ], [ -125.05149600099999, 49.754959211000056 ], [ -125.051518761999915, 49.7554985310001 ], [ -125.050686306999978, 49.755513274000059 ], [ -125.050697684999989, 49.755782934000088 ], [ -125.049448995999953, 49.755805037000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.986825211843483", "sL_AssetLoss": "506.27", "sL_BldgLoss": "499.6", "sL_StrLoss": "453", "sL_NStrLoss": "46.6", "sL_ContLoss": "6.67", "geom_point": "0101000020E6100000A9595650C7405FC0F381B26382DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.012433054999946, 49.729486788000095 ], [ -125.013173110999972, 49.729087013000054 ], [ -125.013121653000027, 49.73148115700009 ], [ -125.011959338999944, 49.731470640000076 ], [ -125.011946607999974, 49.731454502000084 ], [ -125.011606321999963, 49.731307799000035 ], [ -125.010980594, 49.731282209000035 ], [ -125.010554606999975, 49.731028685000112 ], [ -125.010722885999954, 49.730746699000058 ], [ -125.010741292999967, 49.730485993000116 ], [ -125.011344006999948, 49.730330794000061 ], [ -125.011665776999948, 49.730020296000077 ], [ -125.011732511999924, 49.729865193000101 ], [ -125.011754256999964, 49.729853478000081 ], [ -125.011915819999899, 49.729766186000099 ], [ -125.012433054999946, 49.729486788000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.994758108550835", "sL_AssetLoss": "915.7", "sL_BldgLoss": "910.9", "sL_StrLoss": "886", "sL_NStrLoss": "24.9", "sL_ContLoss": "4.8", "geom_point": "0101000020E6100000E31F11AEDB445FC05325CADED2E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.074501207000012, 49.769946325000028 ], [ -125.07451386399994, 49.769319031000066 ], [ -125.075303507999962, 49.769924150000165 ], [ -125.079311912999984, 49.772995563000094 ], [ -125.079300091999954, 49.773584490000133 ], [ -125.073748978, 49.773537565000026 ], [ -125.073821608999964, 49.769940564000116 ], [ -125.074501207000012, 49.769946325000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12992000", "BldgCostT": "8960000", "sL_LossRatio": "0.990094979810618", "sL_AssetLoss": "8303.87", "sL_BldgLoss": "8221.62", "sL_StrLoss": "7677.62", "sL_NStrLoss": "544", "sL_ContLoss": "82.25", "geom_point": "0101000020E6100000E37CA0CBCA425FC0C9948B08B1E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.046698101999979, 49.767476084000059 ], [ -125.04672970599999, 49.765955266000084 ], [ -125.044230503, 49.765933425000071 ], [ -125.044241165999921, 49.765421567000061 ], [ -125.042816379999948, 49.765409089000151 ], [ -125.042825659999906, 49.76496426000007 ], [ -125.040668624999967, 49.764945335000078 ], [ -125.040708764999977, 49.763025661000036 ], [ -125.038068321999972, 49.76300243700009 ], [ -125.038029829999914, 49.764838248000082 ], [ -125.03762041899995, 49.76483464100005 ], [ -125.037498687999943, 49.764676989000058 ], [ -125.036717489999916, 49.764601609000074 ], [ -125.036347626999884, 49.764378079000018 ], [ -125.0358926899999, 49.764103104000114 ], [ -125.03473560899999, 49.764366605000049 ], [ -125.033980894999914, 49.764235508000105 ], [ -125.033651197999959, 49.764007693000117 ], [ -125.03307978499997, 49.764251195000021 ], [ -125.032827015999956, 49.764228400000036 ], [ -125.032724168999962, 49.76417319900002 ], [ -125.032495396999963, 49.764050446000049 ], [ -125.032555668999962, 49.761192208000146 ], [ -125.037653967999944, 49.761237252000072 ], [ -125.037692473000021, 49.759401432000104 ], [ -125.040051378999962, 49.759422192000045 ], [ -125.043241838999947, 49.759450190000095 ], [ -125.043225523999979, 49.760232578000029 ], [ -125.047436025999957, 49.76026938400004 ], [ -125.047403177999939, 49.761851515000075 ], [ -125.048441084999936, 49.76186056300002 ], [ -125.048440284999941, 49.761899119000127 ], [ -125.051367875999986, 49.761924587000102 ], [ -125.051342796999904, 49.76313750000002 ], [ -125.052536205999928, 49.763147860000082 ], [ -125.052461916999931, 49.766744881000101 ], [ -125.052264594999954, 49.766743169000051 ], [ -125.052248454999969, 49.767524385000115 ], [ -125.051909506999976, 49.767521442000024 ], [ -125.046698101999979, 49.767476084000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33883803", "BldgCostT": "22553746", "sL_LossRatio": "0.989732091076346", "sL_AssetLoss": "15604.93", "sL_BldgLoss": "15444.7", "sL_StrLoss": "14644.6", "sL_NStrLoss": "800.1", "sL_ContLoss": "160.23", "geom_point": "0101000020E6100000BD06D8A220445FC0E5C12F589EE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.05550447200001, 49.782956680000062 ], [ -125.053231084999979, 49.781883268000058 ], [ -125.049326267999945, 49.780039348000074 ], [ -125.048774247999958, 49.779778644 ], [ -125.047079425, 49.778978184000081 ], [ -125.046600483999967, 49.778752001000065 ], [ -125.046924715999964, 49.778649601000041 ], [ -125.047667987999887, 49.778482496000052 ], [ -125.048123477999951, 49.778405498000041 ], [ -125.049027379999956, 49.778332402000032 ], [ -125.049551409999978, 49.778363997000078 ], [ -125.050091651999949, 49.778423728000064 ], [ -125.050124829999959, 49.778427397000073 ], [ -125.05013531699997, 49.778361563000018 ], [ -125.05025241, 49.777628005000082 ], [ -125.049431931999919, 49.775533433000085 ], [ -125.053110244999971, 49.775565376000074 ], [ -125.05308172699992, 49.77694670700005 ], [ -125.055751227999949, 49.776969812000061 ], [ -125.055737633999954, 49.777630197000057 ], [ -125.05833877099991, 49.77765264700011 ], [ -125.058333399, 49.777914289000115 ], [ -125.059208152999958, 49.777921825000078 ], [ -125.05920124, 49.778258818 ], [ -125.059669937999914, 49.778262853000072 ], [ -125.059685819999928, 49.777488229000014 ], [ -125.060249353999964, 49.777493078000106 ], [ -125.060281087999911, 49.77594424100009 ], [ -125.061305551999979, 49.775953047000058 ], [ -125.061337137999942, 49.77440966300005 ], [ -125.06186191, 49.774414170000021 ], [ -125.061872044999916, 49.773918575000145 ], [ -125.062432443999967, 49.773923386000121 ], [ -125.062443655, 49.773374888000085 ], [ -125.066952821999948, 49.773413494000074 ], [ -125.066971126999974, 49.77251360000011 ], [ -125.072522108999948, 49.772560869000088 ], [ -125.072485058, 49.774393240000101 ], [ -125.074640540999965, 49.774411520000072 ], [ -125.074582542999948, 49.777286179000036 ], [ -125.076231047999954, 49.77730013000015 ], [ -125.076288841999883, 49.774430538000026 ], [ -125.081067833999981, 49.774470841000046 ], [ -125.081070704999931, 49.774327505000031 ], [ -125.081255006999953, 49.774448501000094 ], [ -125.080768609999893, 49.774964206000043 ], [ -125.080141406999985, 49.775990498000077 ], [ -125.07902478599999, 49.777473188000073 ], [ -125.078174146999956, 49.778599080000056 ], [ -125.078138615999961, 49.778646087000077 ], [ -125.077916697999939, 49.778939790000045 ], [ -125.077686222999958, 49.779151904000116 ], [ -125.076431701999937, 49.779773954000085 ], [ -125.075016390999906, 49.780475703000029 ], [ -125.073180006999948, 49.781387301000038 ], [ -125.073065774999975, 49.781444004000015 ], [ -125.071035882, 49.782482695000041 ], [ -125.06998669699999, 49.782879407000038 ], [ -125.069289302999962, 49.783038013000123 ], [ -125.06847138699996, 49.783113813000043 ], [ -125.067646113999899, 49.783079787000069 ], [ -125.065294035999941, 49.782764433000047 ], [ -125.065181898999953, 49.782749396 ], [ -125.062344815999921, 49.782368899000055 ], [ -125.061692688999983, 49.782282304000027 ], [ -125.060836813999956, 49.782248004000124 ], [ -125.06046510499999, 49.782298793000066 ], [ -125.059859787999983, 49.782503103000138 ], [ -125.059777749999981, 49.782552343000127 ], [ -125.059199217999918, 49.782899494000112 ], [ -125.057828007999959, 49.784092789000042 ], [ -125.057427311999959, 49.783864497000131 ], [ -125.05550447200001, 49.782956680000062 ] ], [ [ -125.073813698999942, 49.779734761000086 ], [ -125.073848681999962, 49.778002404000077 ], [ -125.073070680999976, 49.777995806000092 ], [ -125.07305744699994, 49.778650635000055 ], [ -125.068435629999954, 49.778611325000078 ], [ -125.068398966999894, 49.780416246000051 ], [ -125.067655843999944, 49.780409908000074 ], [ -125.06764939199995, 49.780727288000087 ], [ -125.067917388999916, 49.780729574000112 ], [ -125.067923015999938, 49.780452744000087 ], [ -125.071390971999989, 49.780482272000015 ], [ -125.071406521999933, 49.779714330000054 ], [ -125.073813698999942, 49.779734761000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.985252999429571", "sL_AssetLoss": "3208.11", "sL_BldgLoss": "3160.8", "sL_StrLoss": "2922", "sL_NStrLoss": "238.8", "sL_ContLoss": "47.31", "geom_point": "0101000020E6100000F72F398379415FC05EB5D72725E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.01961237099998, 49.750617539000139 ], [ -125.01941079599996, 49.750493234000011 ], [ -125.019099927999918, 49.7503015200001 ], [ -125.018928298999924, 49.750195693000109 ], [ -125.018904842999959, 49.749931543000073 ], [ -125.018899597999933, 49.749872389000053 ], [ -125.019413790999963, 49.749530602000043 ], [ -125.019588198999941, 49.749402412000073 ], [ -125.01966002399999, 49.749140301000104 ], [ -125.019660328999947, 49.74880079900008 ], [ -125.019660591999966, 49.748483802000059 ], [ -125.019904490999977, 49.748321912000044 ], [ -125.023415424999897, 49.748353373000128 ], [ -125.023408726999946, 49.748668156000107 ], [ -125.024514901999936, 49.748678045000069 ], [ -125.024473755999978, 49.750613811000029 ], [ -125.026444547999972, 49.750631401000128 ], [ -125.026368233999975, 49.75422846700004 ], [ -125.023393944999967, 49.754201906 ], [ -125.023131785999965, 49.753793193000071 ], [ -125.023188108999989, 49.753522606000054 ], [ -125.02305759799999, 49.753353115000074 ], [ -125.022694869999953, 49.753199734000098 ], [ -125.022690502999978, 49.753197912000068 ], [ -125.022202698999962, 49.753152292000017 ], [ -125.022030199999918, 49.75304690400008 ], [ -125.02202627199992, 49.753041800000112 ], [ -125.021472407000019, 49.75231920100002 ], [ -125.021135421999958, 49.752244353000044 ], [ -125.021023617999901, 49.752219495000119 ], [ -125.020628505, 49.751730985000052 ], [ -125.020246699999973, 49.751540112000036 ], [ -125.019976, 49.751356386000097 ], [ -125.019852196999977, 49.750765397000052 ], [ -125.01961237099998, 49.750617539000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.991715302491103", "sL_AssetLoss": "702.5", "sL_BldgLoss": "696.68", "sL_StrLoss": "648.39", "sL_NStrLoss": "48.29", "sL_ContLoss": "5.82", "geom_point": "0101000020E610000070ABC54C07405FC0ADA389FBB8E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.997347244999943, 49.761773619000067 ], [ -125.002460958999976, 49.761820446000037 ], [ -125.002382747999889, 49.765417439000032 ], [ -125.000764492999977, 49.765402646000062 ], [ -125.000752215999981, 49.765966278000043 ], [ -125.000271084999952, 49.765961876000105 ], [ -124.999957722999937, 49.765513047000091 ], [ -124.999747407999934, 49.765211793000041 ], [ -124.999431907999934, 49.764759899000055 ], [ -124.998624531999923, 49.763603384000049 ], [ -124.998617148999969, 49.763592822000099 ], [ -124.997347244999943, 49.761773619000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99010361009153", "sL_AssetLoss": "430.46", "sL_BldgLoss": "426.2", "sL_StrLoss": "410", "sL_NStrLoss": "16.2", "sL_ContLoss": "4.26", "geom_point": "0101000020E6100000C88876DB26415FC033ED3060A8DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.018079053999941, 49.717561271000115 ], [ -125.018106652999961, 49.716270384000069 ], [ -125.016457970999937, 49.716255533000073 ], [ -125.016467167999963, 49.715826074000084 ], [ -125.016092499, 49.715822695000035 ], [ -125.016445596999986, 49.715103204000044 ], [ -125.017095893999951, 49.714750004000081 ], [ -125.01749689899999, 49.714698704000114 ], [ -125.017775783999951, 49.714738606000026 ], [ -125.01834099499996, 49.71501630300002 ], [ -125.018829409999967, 49.715395091000104 ], [ -125.018937911999942, 49.716319392000109 ], [ -125.019103493999935, 49.716666895000039 ], [ -125.0194957, 49.717082788000027 ], [ -125.020318407, 49.717581402000107 ], [ -125.018079053999941, 49.717561271000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.989009801095416", "sL_AssetLoss": "1665.12", "sL_BldgLoss": "1646.82", "sL_StrLoss": "1498.92", "sL_NStrLoss": "147.9", "sL_ContLoss": "18.3", "geom_point": "0101000020E61000008DE57E03EA3F5FC0DF81C7D805E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.995721418999949, 49.759444297000101 ], [ -124.999429498999959, 49.757580515 ], [ -124.995406023999948, 49.754395503000104 ], [ -124.994778135999979, 49.753989039000075 ], [ -124.999532395999921, 49.754032703000064 ], [ -124.999468820999937, 49.756948558000055 ], [ -124.999511298999963, 49.756947825000104 ], [ -124.999522390999971, 49.757217493000105 ], [ -125.00013837799996, 49.75720685800006 ], [ -125.00035489899993, 49.757203117000081 ], [ -125.000350396999963, 49.757093694000041 ], [ -125.000332704999892, 49.756663781000022 ], [ -125.001183380999976, 49.75664908500007 ], [ -125.001581452999972, 49.756642206000095 ], [ -125.001636976000015, 49.757990547000055 ], [ -125.00205323599999, 49.757983352000046 ], [ -125.002086558999949, 49.75879235499999 ], [ -125.000426612999945, 49.758821038000086 ], [ -125.000379403999915, 49.760988001000037 ], [ -124.99977398099999, 49.760982457000118 ], [ -124.999759019999914, 49.761668714000095 ], [ -124.997258010999971, 49.761645780000059 ], [ -124.995886656999986, 49.759681050000054 ], [ -124.995721418999949, 49.759444297000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.989303024492908", "sL_AssetLoss": "2242.69", "sL_BldgLoss": "2218.7", "sL_StrLoss": "2093", "sL_NStrLoss": "125.7", "sL_ContLoss": "23.99", "geom_point": "0101000020E6100000101FD8F1DF405FC0F0E42E1DCEDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.012470499999893, 49.742666864000064 ], [ -125.012475584999933, 49.742430533000025 ], [ -125.010961556000012, 49.742416826000081 ], [ -125.010971948999924, 49.741934512000057 ], [ -125.011039057999952, 49.738819711000097 ], [ -125.012275292999945, 49.738830905000036 ], [ -125.012288342999966, 49.73822434100002 ], [ -125.015159921999953, 49.738250288000074 ], [ -125.015420114, 49.738589797000039 ], [ -125.015509117999912, 49.738924293000125 ], [ -125.015584578999935, 49.739207897000078 ], [ -125.015754530999985, 49.739439590000067 ], [ -125.015819604999933, 49.739528311000093 ], [ -125.015503411999987, 49.739955588000093 ], [ -125.015474799999964, 49.740236211000123 ], [ -125.015843612999987, 49.74080439600003 ], [ -125.015948298999916, 49.741270205000085 ], [ -125.016311587999937, 49.741704497000079 ], [ -125.016815400999945, 49.741941491000084 ], [ -125.017289782, 49.742164603000084 ], [ -125.017818496999951, 49.7425690150001 ], [ -125.017827100999952, 49.742715189000137 ], [ -125.012470499999893, 49.742666864000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.986121190520155", "sL_AssetLoss": "2328.73", "sL_BldgLoss": "2296.41", "sL_StrLoss": "2098.41", "sL_NStrLoss": "198", "sL_ContLoss": "32.32", "geom_point": "0101000020E61000002E31D8056A405FC03DA3C6E7C2E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.005278884999967, 49.773133272000052 ], [ -125.002987989999951, 49.769852954 ], [ -125.00233084499996, 49.76891186600006 ], [ -125.0073002099999, 49.768957140000055 ], [ -125.007281629999937, 49.769815708000152 ], [ -125.008438120999969, 49.76982621200009 ], [ -125.008412247999928, 49.771023111000055 ], [ -125.009324959999958, 49.771031392000104 ], [ -125.00924727099999, 49.774628343000046 ], [ -125.006304453999988, 49.774601615000115 ], [ -125.005278884999967, 49.773133272000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.977775056633809", "sL_AssetLoss": "1633.3", "sL_BldgLoss": "1597", "sL_StrLoss": "1490", "sL_NStrLoss": "107", "sL_ContLoss": "36.3", "geom_point": "0101000020E61000005EC1F4C537425FC0546DBBF9DBE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.032479817999956, 49.764789225000087 ], [ -125.032490101999969, 49.764301615000072 ], [ -125.032495396999963, 49.764050446000049 ], [ -125.032724168999962, 49.76417319900002 ], [ -125.032827015999956, 49.764228400000036 ], [ -125.03307978499997, 49.764251195000021 ], [ -125.033651197999959, 49.764007693000117 ], [ -125.033980894999914, 49.764235508000105 ], [ -125.03473560899999, 49.764366605000049 ], [ -125.0358926899999, 49.764103104000114 ], [ -125.036347626999884, 49.764378079000018 ], [ -125.036717489999916, 49.764601609000074 ], [ -125.037498687999943, 49.764676989000058 ], [ -125.03762041899995, 49.76483464100005 ], [ -125.032479817999956, 49.764789225000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.986403350779424", "sL_AssetLoss": "1415.79", "sL_BldgLoss": "1396.54", "sL_StrLoss": "1264.14", "sL_NStrLoss": "132.4", "sL_ContLoss": "19.25", "geom_point": "0101000020E610000083C2A04CA3405FC064BC18905EDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.007653446999953, 49.72783369900008 ], [ -125.013198965999962, 49.727883985000105 ], [ -125.013173110999972, 49.729087013000054 ], [ -125.012433054999946, 49.729486788000095 ], [ -125.011915819999899, 49.729766186000099 ], [ -125.011754256999964, 49.729853478000081 ], [ -125.011732511999924, 49.729865193000101 ], [ -125.011665776999948, 49.730020296000077 ], [ -125.011344006999948, 49.730330794000061 ], [ -125.010741292999967, 49.730485993000116 ], [ -125.010722885999954, 49.730746699000058 ], [ -125.010554606999975, 49.731028685000112 ], [ -125.010980594, 49.731282209000035 ], [ -125.011606321999963, 49.731307799000035 ], [ -125.011946607999974, 49.731454502000084 ], [ -125.011959338999944, 49.731470640000076 ], [ -125.007575699999975, 49.731430866000061 ], [ -125.007653446999953, 49.72783369900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.992072792445027", "sL_AssetLoss": "725.35", "sL_BldgLoss": "719.6", "sL_StrLoss": "687", "sL_NStrLoss": "32.6", "sL_ContLoss": "5.75", "geom_point": "0101000020E6100000AADF1A12D63F5FC0CB7A7B21AEDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.997395082999944, 49.718093501000062 ], [ -124.994646691999932, 49.715939569000057 ], [ -124.998439387999952, 49.714202207000049 ], [ -124.998433280999961, 49.714482278000027 ], [ -124.998721603999968, 49.714484925000086 ], [ -124.998692161999983, 49.715835491000092 ], [ -124.998707087999961, 49.71583562900004 ], [ -124.998693300999918, 49.716468022000115 ], [ -124.999585592999921, 49.716476207000092 ], [ -124.999580225999935, 49.716722629000046 ], [ -125.00011098799996, 49.716727495000093 ], [ -125.000092366999951, 49.717582826000076 ], [ -124.999490665999957, 49.717055845000147 ], [ -124.997395082999944, 49.718093501000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150027751", "BldgCostT": "101205001", "sL_LossRatio": "0.982532634572305", "sL_AssetLoss": "112431.38", "sL_BldgLoss": "110467.5", "sL_StrLoss": "101571.43", "sL_NStrLoss": "8896.07", "sL_ContLoss": "1963.88", "geom_point": "0101000020E61000008153939EF1405FC00FDE15C9F0DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.014814421999958, 49.778856690000062 ], [ -125.014343107999963, 49.778821007000047 ], [ -125.013992007999931, 49.778838696000044 ], [ -125.013757942999987, 49.77885048800006 ], [ -125.012855425999959, 49.77889598000008 ], [ -125.012421554999932, 49.778917845000073 ], [ -125.010927906999939, 49.77899310300009 ], [ -125.009944102999938, 49.779042669000027 ], [ -125.009424990999946, 49.779068812000133 ], [ -125.00906882699995, 49.778558978 ], [ -125.00908852099991, 49.777647462000118 ], [ -125.013904374, 49.777691035000068 ], [ -125.014640062999959, 49.777697672000095 ], [ -125.014639543999962, 49.777721831000093 ], [ -125.015761422000011, 49.77773194300012 ], [ -125.015749260999897, 49.778298580000083 ], [ -125.017164860999941, 49.778311324000121 ], [ -125.017186318999947, 49.777309964000082 ], [ -125.022737828999965, 49.777359763000113 ], [ -125.022732157999897, 49.777625911000037 ], [ -125.02329562599999, 49.77763094900007 ], [ -125.02329316799991, 49.777746345000082 ], [ -125.026253100999966, 49.777772766000055 ], [ -125.026307380999953, 49.775215987000045 ], [ -125.03067546199992, 49.775254831000083 ], [ -125.030683771999975, 49.774861656000027 ], [ -125.029486084999974, 49.774851022000064 ], [ -125.029539688999947, 49.772317560000026 ], [ -125.028182589999957, 49.772305496000101 ], [ -125.028252486999989, 49.769006162000096 ], [ -125.026171459999944, 49.768987629000087 ], [ -125.026118951999962, 49.771460930000075 ], [ -125.02333179599999, 49.771436046000048 ], [ -125.023275894999955, 49.774061393000068 ], [ -125.017724782999935, 49.774011621000085 ], [ -125.017773356999896, 49.771743269000098 ], [ -125.016371501999984, 49.771767683000128 ], [ -125.016349116999962, 49.771228352 ], [ -125.014683635999972, 49.77125733300003 ], [ -125.014650088999986, 49.770448337000062 ], [ -125.014233723999894, 49.770455580000061 ], [ -125.014177828999934, 49.769107251000086 ], [ -125.01410618599999, 49.769108497000069 ], [ -125.013761474999939, 49.769114491000074 ], [ -125.013716769999945, 49.768035829000063 ], [ -125.014486682, 49.768022440000031 ], [ -125.015145070999949, 49.768010987000075 ], [ -125.015184166, 49.766189932000024 ], [ -125.015189927999955, 49.765921506000069 ], [ -125.011401235999983, 49.765887279000019 ], [ -125.011420374999915, 49.764999128000078 ], [ -125.010916771999945, 49.764994569000123 ], [ -125.01093424599999, 49.764184069000038 ], [ -125.009518068999952, 49.764171235000148 ], [ -125.009595719999965, 49.760574231000163 ], [ -125.010600391999915, 49.760583338000117 ], [ -125.010673459999907, 49.757194622000092 ], [ -125.010270525999971, 49.757190971000107 ], [ -125.010308925999951, 49.755410548000036 ], [ -125.00988071899998, 49.755406666000049 ], [ -125.009903276000017, 49.754361227000103 ], [ -125.009654390999955, 49.754358970000112 ], [ -125.00964909299995, 49.754604485000087 ], [ -125.005091234999924, 49.754563051000048 ], [ -125.004100348999941, 49.754554019000039 ], [ -125.004178407999987, 49.750956970000104 ], [ -125.007161833999959, 49.750984140000035 ], [ -125.007177650999949, 49.750253035000092 ], [ -125.00250998599995, 49.750210492000122 ], [ -125.002503064999985, 49.750528874000111 ], [ -125.001441745999955, 49.750519173000072 ], [ -125.001431847999967, 49.750974 ], [ -125.001058660999945, 49.750970586000065 ], [ -125.001050557, 49.751342908000062 ], [ -124.995502216999967, 49.751292006000071 ], [ -124.995502409999943, 49.751283156000085 ], [ -124.994190912999969, 49.75127108300007 ], [ -124.994207893999928, 49.751137506000092 ], [ -124.994364632999932, 49.750948303000015 ], [ -124.997734799999989, 49.749092199000074 ], [ -124.999085597999965, 49.748410190000108 ], [ -124.999279882999971, 49.748218593000054 ], [ -124.999286605999927, 49.748099106000041 ], [ -124.998479094999965, 49.747218296000078 ], [ -124.998301200999919, 49.746919807000033 ], [ -124.99827158799998, 49.746870110000025 ], [ -124.998147382999932, 49.746523596000102 ], [ -124.998005778999939, 49.745648631000059 ], [ -124.99792490099999, 49.745149008000034 ], [ -124.997823499999939, 49.744838599000119 ], [ -124.997717616000031, 49.744670395000071 ], [ -124.996236278999902, 49.743026538000088 ], [ -124.994961393999972, 49.74161161500006 ], [ -124.992635379999982, 49.73902989800014 ], [ -124.990366712999915, 49.736551606000042 ], [ -124.990389688999969, 49.7364502040001 ], [ -124.990474990999957, 49.736355596000095 ], [ -124.991095327999957, 49.736024904000068 ], [ -124.991363805, 49.735908285000043 ], [ -124.991561605999919, 49.735822395000092 ], [ -124.992448386999968, 49.735353909000025 ], [ -124.992966116, 49.735016798000089 ], [ -124.993460984999899, 49.734583408000091 ], [ -124.997716409999924, 49.732276709000125 ], [ -124.99771228499999, 49.732268115000053 ], [ -124.996146179999968, 49.728994506000035 ], [ -124.995492461999945, 49.72762668700004 ], [ -124.999739644999948, 49.725380889000107 ], [ -124.999761223999954, 49.72536950700006 ], [ -124.999810592999921, 49.725352926000049 ], [ -124.99999852800002, 49.725289851000149 ], [ -125.000610178, 49.725084610000053 ], [ -125.001300421999971, 49.724853008000053 ], [ -125.001703506999931, 49.724680287000076 ], [ -125.004892262999959, 49.722973357000058 ], [ -125.004984156999967, 49.722924140000046 ], [ -125.005733712999984, 49.722522872000127 ], [ -125.004063832, 49.721060726000076 ], [ -125.004105505000012, 49.719138987000079 ], [ -125.004679791999962, 49.719144227000129 ], [ -125.004691555999955, 49.718601376000095 ], [ -125.004597869999913, 49.718600521000042 ], [ -125.004650712999975, 49.716162247000078 ], [ -125.00286965399998, 49.716145983000061 ], [ -125.002883860999958, 49.715491533000026 ], [ -125.001847853999934, 49.715482059000074 ], [ -125.001879545999955, 49.714023760000039 ], [ -125.00009477799999, 49.714007416000136 ], [ -125.00009895699999, 49.713815416000088 ], [ -124.999299679999936, 49.713808087000096 ], [ -125.006523589999972, 49.710498096000073 ], [ -125.006611407999969, 49.710452020000048 ], [ -125.00797090099999, 49.709738660000014 ], [ -125.009242623999981, 49.709071318000071 ], [ -125.009200269999965, 49.711035043000045 ], [ -125.009211689999958, 49.711035147000096 ], [ -125.009190498999914, 49.712017559000131 ], [ -125.010343726999935, 49.712028028000077 ], [ -125.010369049999909, 49.710852623000079 ], [ -125.013346923999976, 49.710879598000098 ], [ -125.013351204999978, 49.710680334000074 ], [ -125.012202449999975, 49.710669937000041 ], [ -125.012267139999963, 49.707661421000083 ], [ -125.012444490999883, 49.707624908000078 ], [ -125.012529630999921, 49.707625170000064 ], [ -125.012849706999987, 49.7076262100001 ], [ -125.012891280999966, 49.707626354000105 ], [ -125.012901498999923, 49.707626388000101 ], [ -125.013262780999938, 49.707945102000053 ], [ -125.013257793999941, 49.708501900000023 ], [ -125.013526297999974, 49.708947706000082 ], [ -125.013902319999957, 49.709318 ], [ -125.014228208999938, 49.710141203000077 ], [ -125.013946709999942, 49.711035607000014 ], [ -125.014050088999952, 49.711888697000106 ], [ -125.013884106999967, 49.712548086000041 ], [ -125.013698397000013, 49.712740414000066 ], [ -125.01375261099993, 49.713387007000051 ], [ -125.013625200999982, 49.713704589000059 ], [ -125.013469507999986, 49.713949507000066 ], [ -125.013087120999955, 49.7141091 ], [ -125.012178395999925, 49.714259997000063 ], [ -125.01201578199999, 49.714352599000016 ], [ -125.011955486999952, 49.714578993000053 ], [ -125.01207011599999, 49.714999205000055 ], [ -125.012434905999925, 49.715433611000108 ], [ -125.012503695999953, 49.71572981000007 ], [ -125.012485797999886, 49.715790109000125 ], [ -125.012066701999984, 49.715786314000098 ], [ -125.012065579999927, 49.715838523000123 ], [ -125.01029692799996, 49.715822493000083 ], [ -125.010293428999958, 49.715984880000022 ], [ -125.012246474999927, 49.716002581000033 ], [ -125.012244970999987, 49.716072489000048 ], [ -125.012185906999946, 49.716112901000088 ], [ -125.012017503999971, 49.716403500000062 ], [ -125.011833093999954, 49.717297894000041 ], [ -125.012420494999944, 49.717736512000101 ], [ -125.012755996999886, 49.71780561700011 ], [ -125.012746863999922, 49.718230532000099 ], [ -125.017169223999943, 49.718270459000102 ], [ -125.01712867399999, 49.72016526200008 ], [ -125.017162239999934, 49.720165564000098 ], [ -125.017133528999949, 49.72150710199999 ], [ -125.019468234999977, 49.721528108000022 ], [ -125.01945037199999, 49.722364689000102 ], [ -125.02016315899999, 49.722371092000046 ], [ -125.02013343699997, 49.723764067000083 ], [ -125.021692585999958, 49.723778057000061 ], [ -125.021674200999954, 49.724640970000074 ], [ -125.022518607999984, 49.724648537000078 ], [ -125.022509428999939, 49.725079713000063 ], [ -125.018523308999988, 49.726196521000134 ], [ -125.016620292999946, 49.727224706000108 ], [ -125.014468102999942, 49.728387436000126 ], [ -125.014392149999964, 49.72838675000007 ], [ -125.014400430999942, 49.728000998000049 ], [ -125.014306368999925, 49.728000148000071 ], [ -125.014315590999956, 49.727570568000068 ], [ -125.013902780999928, 49.727566839000104 ], [ -125.013921209999964, 49.726708652000049 ], [ -125.012467378999958, 49.726695505000094 ], [ -125.012470787999987, 49.726536992000078 ], [ -125.010952456999973, 49.726523241000031 ], [ -125.010943294999905, 49.726948523000011 ], [ -125.005397891999948, 49.72689812200008 ], [ -125.005422397999936, 49.725766716000159 ], [ -125.002600341999965, 49.725740959000085 ], [ -125.002556510999938, 49.727758732 ], [ -125.001893816999981, 49.727752672000079 ], [ -125.001888000999912, 49.72802024700011 ], [ -125.001529650999927, 49.728016968000112 ], [ -125.001524101999934, 49.728272155000106 ], [ -125.000608335999928, 49.728263773000073 ], [ -125.000593304999967, 49.728954377000065 ], [ -125.000085303999953, 49.728949724000081 ], [ -125.000045940999939, 49.730757202000092 ], [ -125.00132320099999, 49.730768899000033 ], [ -125.001276850999943, 49.732899742 ], [ -125.001437038999953, 49.73289697400007 ], [ -125.001425944999966, 49.732627304000026 ], [ -125.00184198699999, 49.732620113000038 ], [ -125.001830891999987, 49.732350444000083 ], [ -125.002246932999924, 49.73234325100006 ], [ -125.002235833999947, 49.732073582000062 ], [ -125.002651872999962, 49.732066388000042 ], [ -125.002640772999911, 49.731796719000023 ], [ -125.003888881999913, 49.731775126000066 ], [ -125.00389998799993, 49.73204479600011 ], [ -125.004316026999959, 49.732037596000097 ], [ -125.004327136999976, 49.732307264000028 ], [ -125.004743177999956, 49.73230006200005 ], [ -125.004765401999947, 49.732839400000067 ], [ -125.005181445999966, 49.732832197000114 ], [ -125.005192559999941, 49.733101866 ], [ -125.005608607999989, 49.733094660000084 ], [ -125.005619723999985, 49.733364329000025 ], [ -125.006035772999951, 49.733357122 ], [ -125.006058012999972, 49.733896460000039 ], [ -125.006474066999942, 49.733889251000086 ], [ -125.006485189999978, 49.73415892000002 ], [ -125.006901243999934, 49.734151710000113 ], [ -125.006912368999949, 49.734421378000093 ], [ -125.007328427999951, 49.734414167000097 ], [ -125.007350681, 49.734953503000092 ], [ -125.007766743999937, 49.734946290000074 ], [ -125.007777872999952, 49.735215958000012 ], [ -125.008193937, 49.735208744000069 ], [ -125.008205070999935, 49.735478412000063 ], [ -125.008621136999977, 49.735471196000091 ], [ -125.008643405999976, 49.736010532000101 ], [ -125.009059476999951, 49.736003313000069 ], [ -125.009070614, 49.736272982000074 ], [ -125.009486688, 49.736265763000027 ], [ -125.009531248999934, 49.737344434000136 ], [ -125.009115166999933, 49.737351653000111 ], [ -125.009126304999967, 49.737621321000091 ], [ -125.008294136999936, 49.737635755000028 ], [ -125.008305268999919, 49.73790542400009 ], [ -125.007889182, 49.737912639000072 ], [ -125.007911445, 49.7384519740001 ], [ -125.007079260999944, 49.738466401000046 ], [ -125.007089809, 49.738722020000033 ], [ -125.007413252999953, 49.738724961000067 ], [ -125.007357351999971, 49.741310115000026 ], [ -125.00930623899994, 49.741327820000052 ], [ -125.009282843, 49.742411871000094 ], [ -125.010052641999906, 49.7424188540001 ], [ -125.010464861999978, 49.742422591000057 ], [ -125.010451472999961, 49.743043643000071 ], [ -125.015220917999926, 49.743086772 ], [ -125.015143737999921, 49.746683867000066 ], [ -125.013315578999965, 49.746667361000057 ], [ -125.013310677999954, 49.746895312000035 ], [ -125.010879379999949, 49.746873312000069 ], [ -125.010847666999922, 49.748344769000049 ], [ -125.012767635999978, 49.748362147000115 ], [ -125.012766809999931, 49.748400569000111 ], [ -125.015425736999944, 49.748424580000076 ], [ -125.015420070999951, 49.74868871400006 ], [ -125.01785871099996, 49.748710679000034 ], [ -125.017867421999981, 49.748303606 ], [ -125.019904490999977, 49.748321912000044 ], [ -125.019660591999966, 49.748483802000059 ], [ -125.019660328999947, 49.74880079900008 ], [ -125.01966002399999, 49.749140301000104 ], [ -125.019588198999941, 49.749402412000073 ], [ -125.019413790999963, 49.749530602000043 ], [ -125.018899597999933, 49.749872389000053 ], [ -125.018904842999959, 49.749931543000073 ], [ -125.018928298999924, 49.750195693000109 ], [ -125.019099927999918, 49.7503015200001 ], [ -125.01941079599996, 49.750493234000011 ], [ -125.01961237099998, 49.750617539000139 ], [ -125.019852196999977, 49.750765397000052 ], [ -125.019976, 49.751356386000097 ], [ -125.020246699999973, 49.751540112000036 ], [ -125.020628505, 49.751730985000052 ], [ -125.021023617999901, 49.752219495000119 ], [ -125.021135421999958, 49.752244353000044 ], [ -125.021472407000019, 49.75231920100002 ], [ -125.02202627199992, 49.753041800000112 ], [ -125.022030199999918, 49.75304690400008 ], [ -125.022202698999962, 49.753152292000017 ], [ -125.022690502999978, 49.753197912000068 ], [ -125.022694869999953, 49.753199734000098 ], [ -125.02305759799999, 49.753353115000074 ], [ -125.023188108999989, 49.753522606000054 ], [ -125.023131785999965, 49.753793193000071 ], [ -125.023393944999967, 49.754201906 ], [ -125.020819517999954, 49.75417885100012 ], [ -125.020830213999972, 49.753677556000042 ], [ -125.020860820999943, 49.752243097000083 ], [ -125.018889962999964, 49.752225406000079 ], [ -125.018896692999931, 49.751910624000161 ], [ -125.018304809, 49.751905304000047 ], [ -125.018296100000015, 49.752312374000034 ], [ -125.016751076, 49.752298472000028 ], [ -125.016749526999931, 49.752370748000033 ], [ -125.017492500999978, 49.75237743600011 ], [ -125.01748462799992, 49.752745102000098 ], [ -125.017721313999957, 49.752747231000043 ], [ -125.017695311999958, 49.753961986000107 ], [ -125.020164494999946, 49.753984171000099 ], [ -125.020163474999904, 49.754031946000062 ], [ -125.020112690999923, 49.75641020000004 ], [ -125.020799520999958, 49.756416361000106 ], [ -125.020781311999912, 49.75726960800008 ], [ -125.021744235999961, 49.757278239000051 ], [ -125.021720315999957, 49.758400204000061 ], [ -125.022225586999937, 49.758404729000041 ], [ -125.022183084999952, 49.760399178000057 ], [ -125.022880183999973, 49.760405417000058 ], [ -125.022870973999943, 49.760837886000061 ], [ -125.023365091999921, 49.760842306 ], [ -125.023362360999926, 49.760970603000025 ], [ -125.025103734999931, 49.760986161000112 ], [ -125.025082210999983, 49.761999090000089 ], [ -125.02644304599994, 49.762011229000088 ], [ -125.026411227, 49.763510720000127 ], [ -125.026468735999984, 49.76351123200007 ], [ -125.026451911999985, 49.764304108000033 ], [ -125.026846469999938, 49.764307625000114 ], [ -125.026841425999962, 49.764545390000066 ], [ -125.027696252999959, 49.764553003000088 ], [ -125.02768723199999, 49.764978618000036 ], [ -125.028380551999959, 49.764984787000081 ], [ -125.028371556999957, 49.765409551000083 ], [ -125.029127048999925, 49.76541626900007 ], [ -125.029111409, 49.766155317000056 ], [ -125.029062148999941, 49.768482844000069 ], [ -125.029057221999892, 49.768715620000059 ], [ -125.029462987999949, 49.768719226000051 ], [ -125.033809272999989, 49.768757757000053 ], [ -125.03375996799997, 49.771098629000079 ], [ -125.039257908999929, 49.771147122000045 ], [ -125.039205887999969, 49.773630768000082 ], [ -125.044316769999952, 49.773675598000125 ], [ -125.04429527399995, 49.774707278000086 ], [ -125.046317356999936, 49.774724949000124 ], [ -125.046305696999966, 49.775285642000057 ], [ -125.047140759999976, 49.775292929000052 ], [ -125.047119680999955, 49.77630754400009 ], [ -125.047542427999971, 49.776311231000101 ], [ -125.047558918000036, 49.77551712100005 ], [ -125.049431931999919, 49.775533433000085 ], [ -125.05025241, 49.777628005000082 ], [ -125.05013531699997, 49.778361563000018 ], [ -125.050124829999959, 49.778427397000073 ], [ -125.050091651999949, 49.778423728000064 ], [ -125.049551409999978, 49.778363997000078 ], [ -125.049027379999956, 49.778332402000032 ], [ -125.048123477999951, 49.778405498000041 ], [ -125.047667987999887, 49.778482496000052 ], [ -125.046924715999964, 49.778649601000041 ], [ -125.046600483999967, 49.778752001000065 ], [ -125.046180600999946, 49.778970350000094 ], [ -125.046075666999954, 49.779024915000072 ], [ -125.045333188999933, 49.77941101200004 ], [ -125.042941403999947, 49.780739098000048 ], [ -125.042356673999947, 49.781015489000026 ], [ -125.041517208999949, 49.781332787000068 ], [ -125.041432157999949, 49.781353558000042 ], [ -125.040571901999968, 49.781563614000099 ], [ -125.040352054000024, 49.781617305000047 ], [ -125.040219399999927, 49.781649694000102 ], [ -125.039805510999926, 49.781660496000057 ], [ -125.039740346999935, 49.781658117000092 ], [ -125.039285288999963, 49.781641503000102 ], [ -125.038304017999948, 49.781536094000032 ], [ -125.036474363999972, 49.781339550000084 ], [ -125.03492673299999, 49.78117325900007 ], [ -125.034717197999925, 49.781150747000048 ], [ -125.031339994999954, 49.780787812 ], [ -125.031217941999927, 49.780774676000078 ], [ -125.030933294999969, 49.780744084000034 ], [ -125.02675422399993, 49.780294803000046 ], [ -125.025116317, 49.780124052000076 ], [ -125.025032948999964, 49.780115360000117 ], [ -125.023716593999936, 49.779978108000087 ], [ -125.02093139699997, 49.779932483000024 ], [ -125.020193004999911, 49.779858395000076 ], [ -125.019462341999954, 49.779722338000049 ], [ -125.019348472999951, 49.779701128000063 ], [ -125.016060499999966, 49.77908878900007 ], [ -125.015904445, 49.779059731000075 ], [ -125.015676680999945, 49.779017316000079 ], [ -125.014814421999958, 49.778856690000062 ] ], [ [ -125.038965077999961, 49.778632660000028 ], [ -125.038969665999915, 49.778413732000061 ], [ -125.037722977, 49.778402758000041 ], [ -125.037716796999973, 49.778697301000129 ], [ -125.038251516999964, 49.778702008999979 ], [ -125.038253101999928, 49.778626395000039 ], [ -125.038965077999961, 49.778632660000028 ] ], [ [ -125.037165192999922, 49.778220232000116 ], [ -125.037172646999977, 49.777865192000128 ], [ -125.036344666999952, 49.777857892000064 ], [ -125.036354469999978, 49.777391301000065 ], [ -125.03598978199993, 49.777388084000059 ], [ -125.036029276999955, 49.775508962000046 ], [ -125.031854284999952, 49.77547204399999 ], [ -125.031798654999989, 49.778107394000152 ], [ -125.033864146, 49.778125679 ], [ -125.033862767999906, 49.778191079000102 ], [ -125.037165192999922, 49.778220232000116 ] ], [ [ -125.003625276999927, 49.746352173000062 ], [ -125.00363867199998, 49.745735165000042 ], [ -125.002069023999951, 49.745720828000088 ], [ -125.002066594999931, 49.745832571000051 ], [ -125.002704570999953, 49.745838401000078 ], [ -125.002693056999988, 49.746368298000043 ], [ -125.003625276999927, 49.746352173000062 ] ], [ [ -124.99968689399995, 49.735629940000138 ], [ -124.99968698399999, 49.73562581700007 ], [ -124.999683682999901, 49.735625875000032 ], [ -124.999467637999942, 49.735629605000064 ], [ -124.999455616999967, 49.735337152000042 ], [ -124.999445469999912, 49.735090266000093 ], [ -124.999263087999964, 49.735093414000069 ], [ -124.999029403999927, 49.735097449000094 ], [ -124.999022383999929, 49.734926587000096 ], [ -124.999011403999972, 49.734926486000084 ], [ -124.99899389399998, 49.735729511000031 ], [ -124.99968458599993, 49.735735844000033 ], [ -124.99968689399995, 49.735629940000138 ] ], [ [ -125.017095122999933, 49.769124723000047 ], [ -125.017103487999933, 49.769326198000066 ], [ -125.01627078099996, 49.769340697000139 ], [ -125.016281970999941, 49.769610361000026 ], [ -125.016698325999968, 49.769603113000045 ], [ -125.016720713999959, 49.770142442000093 ], [ -125.018386155999934, 49.770113433000134 ], [ -125.018397358999977, 49.770383097000042 ], [ -125.018813721999933, 49.77037584100006 ], [ -125.018815711999963, 49.770423774000086 ], [ -125.020588896999953, 49.77043968600001 ], [ -125.020592348999912, 49.770277972000024 ], [ -125.018629346999944, 49.770260355000097 ], [ -125.01864273899993, 49.769634388000078 ], [ -125.018415876999967, 49.769632350000037 ], [ -125.018425534999921, 49.769181026000098 ], [ -125.017837184, 49.769175737000076 ], [ -125.017838132999913, 49.769131406000078 ], [ -125.017095122999933, 49.769124723000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68664750", "BldgCostT": "47355000", "sL_LossRatio": "0.988883062642781", "sL_AssetLoss": "47848.61", "sL_BldgLoss": "47316.68", "sL_StrLoss": "44104.98", "sL_NStrLoss": "3211.7", "sL_ContLoss": "531.93", "geom_point": "0101000020E6100000D171FB06223F5FC0217BD69884DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.994550230999934, 49.747676609000074 ], [ -124.99455830899997, 49.747307916000103 ], [ -124.994065705999958, 49.747303378000048 ], [ -124.994118441999944, 49.744897100000053 ], [ -124.994018501999975, 49.744898821000099 ], [ -124.993992051999925, 49.744253766000078 ], [ -124.991570197999977, 49.744231422000041 ], [ -124.991602729999954, 49.742750674000099 ], [ -124.99080545899993, 49.742743306000101 ], [ -124.990816438999929, 49.742243934000051 ], [ -124.99048827799993, 49.742240899000151 ], [ -124.99049336899999, 49.742009403000047 ], [ -124.989203542999959, 49.741997467000033 ], [ -124.989214779999955, 49.741487206000045 ], [ -124.988799159, 49.741483357000106 ], [ -124.988823086999972, 49.740397113000043 ], [ -124.988362808999938, 49.740392849000045 ], [ -124.988394471000021, 49.738956111000064 ], [ -124.987349957999953, 49.738946426000098 ], [ -124.987429301999896, 49.73534931100005 ], [ -124.990216140999962, 49.73537512900004 ], [ -124.99024667899999, 49.733986696000038 ], [ -124.988157846999954, 49.733967350000071 ], [ -124.988167557999944, 49.734205 ], [ -124.986503314999979, 49.734233561000103 ], [ -124.98652533799995, 49.734772905000064 ], [ -124.98612637899997, 49.734779747000076 ], [ -124.986120370999942, 49.735049713000137 ], [ -124.98607012599993, 49.737326820000064 ], [ -124.984614675999964, 49.73731329 ], [ -124.98459013199998, 49.738422954000065 ], [ -124.983743383999951, 49.738415074000045 ], [ -124.983736594999954, 49.738721751000114 ], [ -124.98485332499996, 49.738732142000018 ], [ -124.984773772999972, 49.742329239000121 ], [ -124.983904849999988, 49.742321155000141 ], [ -124.983891273000012, 49.742934460000036 ], [ -124.97834396799999, 49.742882684000058 ], [ -124.978356304999949, 49.742328444000059 ], [ -124.977354165999927, 49.742319061000074 ], [ -124.977358752000015, 49.742113203000038 ], [ -124.97653034699999, 49.742105439000113 ], [ -124.976552195999943, 49.741125504000081 ], [ -124.974857243999949, 49.741109599000062 ], [ -124.974892920999977, 49.739512035000089 ], [ -124.973811801999929, 49.739501877000123 ], [ -124.973819936, 49.739138019000045 ], [ -124.973602215999975, 49.739135972000085 ], [ -124.973611146999986, 49.738736534000083 ], [ -124.973348629999961, 49.738734066000085 ], [ -124.973360156999988, 49.738218667000112 ], [ -124.973019048999944, 49.73821545800012 ], [ -124.973068831999953, 49.735990109000063 ], [ -124.973126535999953, 49.735963503000072 ], [ -124.974498203999929, 49.735528475000123 ], [ -124.97472828599993, 49.73542909400004 ], [ -124.976168902999987, 49.734806589000137 ], [ -124.97797862, 49.733833012000062 ], [ -124.978223054999944, 49.733701500000073 ], [ -124.979874513999945, 49.732813005000047 ], [ -124.984287812999966, 49.730470591000042 ], [ -124.985741619999942, 49.73163506000008 ], [ -124.983503491999969, 49.731614237000088 ], [ -124.983490374999931, 49.732206707000053 ], [ -124.984899723999931, 49.732219825000044 ], [ -124.984872481999901, 49.733451943000027 ], [ -124.98522211699999, 49.73344595 ], [ -124.985211111999902, 49.733176279000148 ], [ -124.986043217, 49.733162010000079 ], [ -124.986032208999973, 49.732892338000042 ], [ -124.986442359999955, 49.732885304000021 ], [ -124.986457305999934, 49.732208279000076 ], [ -124.987162634999919, 49.732773184000038 ], [ -124.987179410999929, 49.732786605000094 ], [ -124.987246885999951, 49.73277271799999 ], [ -124.990322206999977, 49.732140214000019 ], [ -124.991567936999957, 49.731467466000034 ], [ -124.992014889999922, 49.731226094000043 ], [ -124.992383896999925, 49.731026798000094 ], [ -124.994032801999964, 49.730137207000048 ], [ -124.996146179999968, 49.728994506000035 ], [ -124.99771228499999, 49.732268115000053 ], [ -124.997716409999924, 49.732276709000125 ], [ -124.993460984999899, 49.734583408000091 ], [ -124.992966116, 49.735016798000089 ], [ -124.992448386999968, 49.735353909000025 ], [ -124.991561605999919, 49.735822395000092 ], [ -124.991363805, 49.735908285000043 ], [ -124.991095327999957, 49.736024904000068 ], [ -124.990474990999957, 49.736355596000095 ], [ -124.990389688999969, 49.7364502040001 ], [ -124.990366712999915, 49.736551606000042 ], [ -124.992635379999982, 49.73902989800014 ], [ -124.994961393999972, 49.74161161500006 ], [ -124.996236278999902, 49.743026538000088 ], [ -124.997717616000031, 49.744670395000071 ], [ -124.997823499999939, 49.744838599000119 ], [ -124.99792490099999, 49.745149008000034 ], [ -124.998005778999939, 49.745648631000059 ], [ -124.998147382999932, 49.746523596000102 ], [ -124.99827158799998, 49.746870110000025 ], [ -124.998301200999919, 49.746919807000033 ], [ -124.998479094999965, 49.747218296000078 ], [ -124.999286605999927, 49.748099106000041 ], [ -124.999279882999971, 49.748218593000054 ], [ -124.999085597999965, 49.748410190000108 ], [ -124.997734799999989, 49.749092199000074 ], [ -124.994364632999932, 49.750948303000015 ], [ -124.994207893999928, 49.751137506000092 ], [ -124.994190912999969, 49.75127108300007 ], [ -124.993591244999919, 49.751265557000096 ], [ -124.993670121999983, 49.747668499000014 ], [ -124.994550230999934, 49.747676609000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.987569649485815", "sL_AssetLoss": "2580.78", "sL_BldgLoss": "2548.7", "sL_StrLoss": "2355", "sL_NStrLoss": "193.7", "sL_ContLoss": "32.08", "geom_point": "0101000020E6100000CDCA30CD38405FC075F574BFD4E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.003696104999946, 49.774577859000026 ], [ -125.003722102999973, 49.773380967000037 ], [ -125.00280934599995, 49.773372639000037 ], [ -125.002828009999945, 49.772514075000061 ], [ -125.001671453999933, 49.772503512000057 ], [ -125.001749732999926, 49.768906556000061 ], [ -125.00233084499996, 49.76891186600006 ], [ -125.002987989999951, 49.769852954 ], [ -125.005278884999967, 49.773133272000052 ], [ -125.006304453999988, 49.774601615000115 ], [ -125.003696104999946, 49.774577859000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14297000", "BldgCostT": "9860000", "sL_LossRatio": "0.9890583208167", "sL_AssetLoss": "9960.08", "sL_BldgLoss": "9851.1", "sL_StrLoss": "9159.3", "sL_NStrLoss": "691.8", "sL_ContLoss": "108.98", "geom_point": "0101000020E61000006F2034EDA83F5FC08FA5517922E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.99604408499998, 49.77786289600003 ], [ -124.994861910999958, 49.776078779000073 ], [ -124.992901742999948, 49.773120189000053 ], [ -124.992721292999988, 49.772847803000062 ], [ -124.992498081999912, 49.772908686000044 ], [ -124.990530398999965, 49.773445398000021 ], [ -124.989299904999953, 49.773981800000072 ], [ -124.98893814199999, 49.77340923600007 ], [ -124.988934549999925, 49.773321506000087 ], [ -124.989124595999954, 49.773318242000066 ], [ -124.989160291999951, 49.77169847400004 ], [ -124.9888683099999, 49.771703488000114 ], [ -124.988879350000019, 49.771973157000062 ], [ -124.988039934, 49.771987568000135 ], [ -124.987601519999913, 49.77129362000008 ], [ -124.987597100999963, 49.771185591000105 ], [ -124.987533957999915, 49.771186675000124 ], [ -124.987507156, 49.771144249000074 ], [ -124.986265017999983, 49.769178003000064 ], [ -124.986259771999954, 49.769049659000103 ], [ -124.988341564999985, 49.769013941000026 ], [ -124.988385707999953, 49.770092620000064 ], [ -124.988802076999917, 49.770085471000115 ], [ -124.988813114999971, 49.77035514100006 ], [ -124.989229483999907, 49.770347991000044 ], [ -124.989240527, 49.770617660000035 ], [ -124.98965689799995, 49.770610508000068 ], [ -124.989676159999988, 49.771080892000057 ], [ -124.994724729999987, 49.771127469000078 ], [ -124.994684727, 49.77295276500012 ], [ -124.994752992999935, 49.772951590000012 ], [ -124.994775140999977, 49.773490926000129 ], [ -124.995191534999904, 49.773483754000083 ], [ -124.995197588999929, 49.773631170000108 ], [ -124.9984545399999, 49.773661079000142 ], [ -124.998393738999965, 49.776445497000104 ], [ -125.001104711, 49.776470318000072 ], [ -125.00104402099997, 49.779256805000045 ], [ -125.00034053, 49.77923591400009 ], [ -125.000005512999962, 49.779225951000072 ], [ -124.996890900999972, 49.779133410000036 ], [ -124.99638428599999, 49.778302194000069 ], [ -124.99604408499998, 49.77786289600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7989500", "BldgCostT": "5510000", "sL_LossRatio": "0.992542498044531", "sL_AssetLoss": "4116.66", "sL_BldgLoss": "4085.96", "sL_StrLoss": "3877.41", "sL_NStrLoss": "208.55", "sL_ContLoss": "30.7", "geom_point": "0101000020E6100000A782699CB63F5FC0272A6563EFE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.994893662999971, 49.758026315000052 ], [ -124.994903264999934, 49.757587943000061 ], [ -124.99390487, 49.757578749000075 ], [ -124.993963938999968, 49.754884586000031 ], [ -124.993179033999965, 49.754898096000026 ], [ -124.993156920000018, 49.754358756000101 ], [ -124.992740689999948, 49.75436592000009 ], [ -124.992718580999963, 49.753826580000087 ], [ -124.992302353999918, 49.753833741000115 ], [ -124.992236048999985, 49.752215722000116 ], [ -124.993279504999947, 49.752197767000105 ], [ -124.992918703999948, 49.752479299000086 ], [ -124.992895234999949, 49.752555975000099 ], [ -124.992858884999933, 49.752674797000125 ], [ -124.992871179999952, 49.752811595000075 ], [ -124.993035616999975, 49.753031701000097 ], [ -124.993372108999935, 49.753315509000096 ], [ -124.99368710499999, 49.753500894000119 ], [ -124.993960160999947, 49.753631951000074 ], [ -124.993967262999917, 49.753805088000085 ], [ -124.994359889999956, 49.753798327000077 ], [ -124.99438376199997, 49.75380457300011 ], [ -124.994391185000012, 49.75398547600004 ], [ -124.994778135999979, 49.753989039000075 ], [ -124.995406023999948, 49.754395503000104 ], [ -124.999429498999959, 49.757580515 ], [ -124.995721418999949, 49.759444297000101 ], [ -124.995886656999986, 49.759681050000054 ], [ -124.997258010999971, 49.761645780000059 ], [ -124.994209432999966, 49.761617747000038 ], [ -124.994288279, 49.758020741000017 ], [ -124.994893662999971, 49.758026315000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189083", "BldgCostT": "4268333", "sL_LossRatio": "0.991052969992994", "sL_AssetLoss": "3468.19", "sL_BldgLoss": "3437.16", "sL_StrLoss": "3255.86", "sL_NStrLoss": "181.3", "sL_ContLoss": "31.03", "geom_point": "0101000020E6100000D3A12EADA13E5FC02BF2D2EA37E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.978659298999929, 49.769354789000026 ], [ -124.9760153, 49.767616997000111 ], [ -124.975671838999958, 49.767235777000103 ], [ -124.975596894999953, 49.767152602000088 ], [ -124.974269166999989, 49.764911015000045 ], [ -124.974552327999959, 49.764913673000116 ], [ -124.974543668999942, 49.765301062000106 ], [ -124.979880447999975, 49.765351038000098 ], [ -124.979831760999957, 49.767540559000089 ], [ -124.980364777999966, 49.76753144600012 ], [ -124.980375768999949, 49.767801118000101 ], [ -124.980792118999901, 49.767793998000066 ], [ -124.980802367999956, 49.768045404000077 ], [ -124.984669631999978, 49.768081421000055 ], [ -124.98465789, 49.768611906000054 ], [ -124.984553689999984, 49.768614244000076 ], [ -124.981470895999934, 49.768683414000122 ], [ -124.979566307999931, 49.76995088500005 ], [ -124.978659298999929, 49.769354789000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.993442362769357", "sL_AssetLoss": "2772.34", "sL_BldgLoss": "2754.16", "sL_StrLoss": "2639", "sL_NStrLoss": "115.16", "sL_ContLoss": "18.18", "geom_point": "0101000020E6100000B5A9360FD23F5FC09F8EC70CD4E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.996911350999966, 49.761769616000031 ], [ -124.997347244999943, 49.761773619000067 ], [ -124.998617148999969, 49.763592822000099 ], [ -124.998624531999923, 49.763603384000049 ], [ -124.999431907999934, 49.764759899000055 ], [ -124.999747407999934, 49.765211793000041 ], [ -124.999957722999937, 49.765513047000091 ], [ -125.000271084999952, 49.765961876000105 ], [ -124.995202108999976, 49.765915362000037 ], [ -124.9952808849999, 49.762318377000092 ], [ -124.996899028999934, 49.762333251000044 ], [ -124.996911350999966, 49.761769616000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199418000", "BldgCostT": "134375000", "sL_LossRatio": "0.969603769783514", "sL_AssetLoss": "149746.53", "sL_BldgLoss": "145194.8", "sL_StrLoss": "130806.8", "sL_NStrLoss": "14388", "sL_ContLoss": "4551.73", "geom_point": "0101000020E61000006C3A6D531D3F5FC0127869BBF0DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.97797862, 49.733833012000062 ], [ -124.97344735199998, 49.730309539000125 ], [ -124.970962501999978, 49.728323113000037 ], [ -124.969735591999935, 49.72582505000004 ], [ -124.96973677599999, 49.72577224400009 ], [ -124.970844211999946, 49.725782694000067 ], [ -124.975282002999904, 49.725824458000012 ], [ -124.975276666999989, 49.726063623000115 ], [ -124.975471509999949, 49.726065454000029 ], [ -124.975465710999913, 49.726325390000071 ], [ -124.975897509999953, 49.726329443000076 ], [ -124.975888018999939, 49.726755053000083 ], [ -124.976014532999955, 49.726756241000061 ], [ -124.97600466099999, 49.727198899000101 ], [ -124.976349346999967, 49.727202133000091 ], [ -124.976344859000022, 49.727403439000057 ], [ -124.976957347999971, 49.727409183000113 ], [ -124.97696631499997, 49.727006728000084 ], [ -124.977406241999944, 49.727010851000017 ], [ -124.977411411999924, 49.7267787380001 ], [ -124.979067425999972, 49.726794244000097 ], [ -124.979090905999982, 49.725738178000064 ], [ -124.979205314999888, 49.72573924800011 ], [ -124.979215928999963, 49.725261780000054 ], [ -124.979453169999971, 49.725263999000077 ], [ -124.97947287199996, 49.724377484000122 ], [ -124.979553664999941, 49.724378239 ], [ -124.979569910999928, 49.723647185000061 ], [ -124.980386971, 49.723654823000032 ], [ -124.980397460999981, 49.72318243400008 ], [ -124.980418096999983, 49.723171495000045 ], [ -124.98096404599994, 49.723176595000069 ], [ -124.980967893999917, 49.723003118000037 ], [ -124.981608982999944, 49.723009103000074 ], [ -124.98161678799994, 49.722657132000052 ], [ -124.984783201999946, 49.722686639000102 ], [ -124.984771079000012, 49.722389390000018 ], [ -124.985187038999925, 49.722382259000035 ], [ -124.985176039999928, 49.722112586000094 ], [ -124.985591998999894, 49.722105454000037 ], [ -124.985580995999953, 49.721835782000035 ], [ -124.986412907999963, 49.721821514000105 ], [ -124.986409869999989, 49.721747108000059 ], [ -124.985227129999899, 49.721736115000091 ], [ -124.985239108, 49.721194011000087 ], [ -124.984797645999947, 49.721189904000056 ], [ -124.984803954999933, 49.720904567000069 ], [ -124.984750762999923, 49.720904072000081 ], [ -124.987295899999964, 49.719613671000033 ], [ -124.986098936999937, 49.718271026000124 ], [ -124.987396496999935, 49.718260436000065 ], [ -124.987413867999976, 49.717835531000034 ], [ -124.988573287999913, 49.717802765000037 ], [ -124.988584781, 49.717330482000051 ], [ -124.98858678899991, 49.717247690000086 ], [ -124.990177233999972, 49.717316425000057 ], [ -124.990001572999944, 49.716039298000027 ], [ -124.990111, 49.716019595000027 ], [ -124.990724812999929, 49.715971293000067 ], [ -124.991162690999928, 49.715980729000115 ], [ -124.991554750999924, 49.716055426 ], [ -124.992561903999956, 49.716339087000065 ], [ -124.99286269199996, 49.716340055000067 ], [ -124.993055220999935, 49.716286055000083 ], [ -124.993157047999915, 49.716194345000055 ], [ -124.993162833999961, 49.716181265000031 ], [ -124.993140572999963, 49.716149219000023 ], [ -124.993170694999947, 49.716043495000093 ], [ -124.993154546999932, 49.71562337500005 ], [ -124.993125559999953, 49.7153043920001 ], [ -124.993120338, 49.715247242000011 ], [ -124.993112222999969, 49.715214981000038 ], [ -124.993118131999921, 49.715163163000064 ], [ -124.993172364999907, 49.715141744000022 ], [ -124.993277541999973, 49.715123292000094 ], [ -124.993266908, 49.715608904000099 ], [ -124.99326933, 49.715940826000065 ], [ -124.993274398999986, 49.716342053000112 ], [ -124.993281401999951, 49.7168440310001 ], [ -124.9932778189999, 49.718401018000058 ], [ -124.993275133999958, 49.719210418000024 ], [ -124.993273523999946, 49.719700905000117 ], [ -124.993540024, 49.720031723000019 ], [ -124.993581303999989, 49.720115495000101 ], [ -124.99372851399994, 49.720294093000113 ], [ -124.994319111999943, 49.720743696000113 ], [ -124.995003496999928, 49.721264700000113 ], [ -124.99578354, 49.722044985000103 ], [ -124.996375981999918, 49.722637821000063 ], [ -124.999810592999921, 49.725352926000049 ], [ -124.999761223999954, 49.72536950700006 ], [ -124.999739644999948, 49.725380889000107 ], [ -124.995492461999945, 49.72762668700004 ], [ -124.996146179999968, 49.728994506000035 ], [ -124.994032801999964, 49.730137207000048 ], [ -124.992383896999925, 49.731026798000094 ], [ -124.992014889999922, 49.731226094000043 ], [ -124.991567936999957, 49.731467466000034 ], [ -124.990322206999977, 49.732140214000019 ], [ -124.987246885999951, 49.73277271799999 ], [ -124.987179410999929, 49.732786605000094 ], [ -124.987162634999919, 49.732773184000038 ], [ -124.986457305999934, 49.732208279000076 ], [ -124.986469810999907, 49.731641825000096 ], [ -124.985741619999942, 49.73163506000008 ], [ -124.984287812999966, 49.730470591000042 ], [ -124.979874513999945, 49.732813005000047 ], [ -124.978223054999944, 49.733701500000073 ], [ -124.97797862, 49.733833012000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198631561", "BldgCostT": "136758190", "sL_LossRatio": "0.836383362127398", "sL_AssetLoss": "81232.02", "sL_BldgLoss": "67941.11", "sL_StrLoss": "49885.81", "sL_NStrLoss": "18055.3", "sL_ContLoss": "13290.91", "geom_point": "0101000020E610000031900CDEBC3E5FC050F1A8C605DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.978415488999957, 49.711623708000069 ], [ -124.977607902999978, 49.71097930800002 ], [ -124.97671579899999, 49.710267497000039 ], [ -124.978776655000033, 49.709201196 ], [ -124.97943928499997, 49.708719794000061 ], [ -124.979712128999935, 49.709031555000074 ], [ -124.980098884999947, 49.709473496000093 ], [ -124.98077288199994, 49.710092247000063 ], [ -124.980780893999921, 49.710099602000085 ], [ -124.981503794999952, 49.710752194000101 ], [ -124.982422106999962, 49.710286683000021 ], [ -124.98323239299999, 49.710939205000066 ], [ -124.983940635999915, 49.711509956000022 ], [ -124.984019535999906, 49.711573494000042 ], [ -124.982831789999977, 49.712190274000037 ], [ -124.982045071999949, 49.712598504000049 ], [ -124.981502399999982, 49.712880386000066 ], [ -124.98058667, 49.713353963000024 ], [ -124.98054727200001, 49.713322560000037 ], [ -124.979743479999968, 49.712681401000097 ], [ -124.97857011399999, 49.711746859000094 ], [ -124.978415488999957, 49.711623708000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134830750", "BldgCostT": "87655000", "sL_LossRatio": "0.975099653027952", "sL_AssetLoss": "81332.2", "sL_BldgLoss": "79307", "sL_StrLoss": "70054.8", "sL_NStrLoss": "9252.2", "sL_ContLoss": "2025.2", "geom_point": "0101000020E6100000CB38E3870C3F5FC015D5117640DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.985189514999917, 49.716334447000108 ], [ -124.98519099, 49.716267636000062 ], [ -124.984166423999937, 49.716258101000115 ], [ -124.984199860999937, 49.714746237000043 ], [ -124.98368366899993, 49.714741430000053 ], [ -124.983660811999968, 49.715774406000072 ], [ -124.982212621999935, 49.714246732000014 ], [ -124.983704542999945, 49.71308099600008 ], [ -124.982831789999977, 49.712190274000037 ], [ -124.984019535999906, 49.711573494000042 ], [ -124.983940635999915, 49.711509956000022 ], [ -124.98323239299999, 49.710939205000066 ], [ -124.982422106999962, 49.710286683000021 ], [ -124.981503794999952, 49.710752194000101 ], [ -124.980780893999921, 49.710099602000085 ], [ -124.98077288199994, 49.710092247000063 ], [ -124.980098884999947, 49.709473496000093 ], [ -124.979712128999935, 49.709031555000074 ], [ -124.97943928499997, 49.708719794000061 ], [ -124.980091502, 49.708375092000011 ], [ -124.978453091999938, 49.707068110000144 ], [ -124.978837395999918, 49.706924210000118 ], [ -124.979147610999945, 49.706875789000101 ], [ -124.980473275999941, 49.706971896000049 ], [ -124.981178409, 49.707800606000028 ], [ -124.982571448999948, 49.708911473000086 ], [ -124.984320580999935, 49.710306191000086 ], [ -124.985024026999909, 49.710884449000091 ], [ -124.985148366, 49.710986735000105 ], [ -124.986637553999955, 49.710212991000091 ], [ -124.986833824999934, 49.710111018000077 ], [ -124.98696563699994, 49.709980015000049 ], [ -124.987932628999957, 49.710735416000041 ], [ -124.988501649999947, 49.711179923000017 ], [ -124.989367676999947, 49.711875044000124 ], [ -124.989369626000013, 49.711876575000055 ], [ -124.989785302999977, 49.712198205000114 ], [ -124.99036535, 49.712647050000101 ], [ -124.990250565999986, 49.712704380000048 ], [ -124.989661750999971, 49.712998531000103 ], [ -124.987410948999965, 49.7141757730001 ], [ -124.987261836999906, 49.714337199000113 ], [ -124.987207950999931, 49.714517493000123 ], [ -124.987270845999944, 49.714683610000108 ], [ -124.987928299999908, 49.71535712700004 ], [ -124.988230377999955, 49.715678349000022 ], [ -124.988480977999956, 49.715944215000029 ], [ -124.988575983000018, 49.716197569000052 ], [ -124.988610637999969, 49.716289917000068 ], [ -124.98858678899991, 49.717247690000086 ], [ -124.988584781, 49.717330482000051 ], [ -124.988573287999913, 49.717802765000037 ], [ -124.987413867999976, 49.717835531000034 ], [ -124.987396496999935, 49.718260436000065 ], [ -124.986098936999937, 49.718271026000124 ], [ -124.985978860999978, 49.71815375400012 ], [ -124.985475565999963, 49.717662191000052 ], [ -124.985137663999936, 49.717332189000039 ], [ -124.984530612999947, 49.716691886000056 ], [ -124.984538649999976, 49.716328390000093 ], [ -124.985189514999917, 49.716334447000108 ] ], [ [ -124.98640111399996, 49.712643537000076 ], [ -124.986407007, 49.712376470000045 ], [ -124.98561191099995, 49.712390107000012 ], [ -124.98562195, 49.712636296000035 ], [ -124.98640111399996, 49.712643537000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107458751", "BldgCostT": "68950001", "sL_LossRatio": "0.954938083296391", "sL_AssetLoss": "65101.98", "sL_BldgLoss": "62168.36", "sL_StrLoss": "56602.46", "sL_NStrLoss": "5565.9", "sL_ContLoss": "2933.62", "geom_point": "0101000020E61000007F0DB900113F5FC07BCFF53B9CDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.983123584999944, 49.706773499000121 ], [ -124.983719617999924, 49.706459799000051 ], [ -124.984403968999942, 49.706097335000024 ], [ -124.984991405999963, 49.705782007000067 ], [ -124.985510618999953, 49.706320459000061 ], [ -124.985803116999989, 49.70657 ], [ -124.988041971999948, 49.705367826000085 ], [ -124.989937889999979, 49.70434972300005 ], [ -124.990432429999942, 49.704726218000118 ], [ -124.990766692999955, 49.704980702000107 ], [ -124.990113176999984, 49.705241321000074 ], [ -124.990004126999963, 49.705288182000054 ], [ -124.989458514999953, 49.705513437000022 ], [ -124.989445024999952, 49.705522670000072 ], [ -124.989115468999955, 49.70567699900009 ], [ -124.988728490999932, 49.705899091000063 ], [ -124.986526203999972, 49.707156002000026 ], [ -124.986825717, 49.707399790000075 ], [ -124.988003818999985, 49.708910245000048 ], [ -124.987716804999948, 49.709060938000079 ], [ -124.986999564999948, 49.709437468000083 ], [ -124.986727731999949, 49.709580223000074 ], [ -124.986933121999968, 49.709757533000044 ], [ -124.986974700999937, 49.709838097000031 ], [ -124.986986285999961, 49.709860570000032 ], [ -124.98696563699994, 49.709980015000049 ], [ -124.986833824999934, 49.710111018000077 ], [ -124.986637553999955, 49.710212991000091 ], [ -124.985148366, 49.710986735000105 ], [ -124.985024026999909, 49.710884449000091 ], [ -124.984320580999935, 49.710306191000086 ], [ -124.982571448999948, 49.708911473000086 ], [ -124.981178409, 49.707800606000028 ], [ -124.982160106999942, 49.707282590000062 ], [ -124.983123584999944, 49.706773499000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125474917", "BldgCostT": "81531667", "sL_LossRatio": "0.988230178995049", "sL_AssetLoss": "69574.55", "sL_BldgLoss": "68755.67", "sL_StrLoss": "64567.77", "sL_NStrLoss": "4187.9", "sL_ContLoss": "818.88", "geom_point": "0101000020E6100000AF8EF3699B3F5FC0CA7E066980DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.999810592999921, 49.725352926000049 ], [ -124.996375981999918, 49.722637821000063 ], [ -124.99578354, 49.722044985000103 ], [ -124.995003496999928, 49.721264700000113 ], [ -124.994319111999943, 49.720743696000113 ], [ -124.99372851399994, 49.720294093000113 ], [ -124.993581303999989, 49.720115495000101 ], [ -124.993540024, 49.720031723000019 ], [ -124.993273523999946, 49.719700905000117 ], [ -124.993275133999958, 49.719210418000024 ], [ -124.9932778189999, 49.718401018000058 ], [ -124.993281401999951, 49.7168440310001 ], [ -124.993274398999986, 49.716342053000112 ], [ -124.99326933, 49.715940826000065 ], [ -124.993266908, 49.715608904000099 ], [ -124.993277541999973, 49.715123292000094 ], [ -124.993172364999907, 49.715141744000022 ], [ -124.993118131999921, 49.715163163000064 ], [ -124.993112222999969, 49.715214981000038 ], [ -124.993120338, 49.715247242000011 ], [ -124.993125559999953, 49.7153043920001 ], [ -124.993154546999932, 49.71562337500005 ], [ -124.993170694999947, 49.716043495000093 ], [ -124.993140572999963, 49.716149219000023 ], [ -124.993162833999961, 49.716181265000031 ], [ -124.993157047999915, 49.716194345000055 ], [ -124.993055220999935, 49.716286055000083 ], [ -124.99286269199996, 49.716340055000067 ], [ -124.992561903999956, 49.716339087000065 ], [ -124.991554750999924, 49.716055426 ], [ -124.991162690999928, 49.715980729000115 ], [ -124.990724812999929, 49.715971293000067 ], [ -124.990111, 49.716019595000027 ], [ -124.990001572999944, 49.716039298000027 ], [ -124.990177233999972, 49.717316425000057 ], [ -124.98858678899991, 49.717247690000086 ], [ -124.988610637999969, 49.716289917000068 ], [ -124.988575983000018, 49.716197569000052 ], [ -124.988480977999956, 49.715944215000029 ], [ -124.988230377999955, 49.715678349000022 ], [ -124.987928299999908, 49.71535712700004 ], [ -124.987270845999944, 49.714683610000108 ], [ -124.987207950999931, 49.714517493000123 ], [ -124.987261836999906, 49.714337199000113 ], [ -124.987410948999965, 49.7141757730001 ], [ -124.989661750999971, 49.712998531000103 ], [ -124.990250565999986, 49.712704380000048 ], [ -124.99036535, 49.712647050000101 ], [ -124.989785302999977, 49.712198205000114 ], [ -124.989369626000013, 49.711876575000055 ], [ -124.989367676999947, 49.711875044000124 ], [ -124.988501649999947, 49.711179923000017 ], [ -124.987932628999957, 49.710735416000041 ], [ -124.98696563699994, 49.709980015000049 ], [ -124.986986285999961, 49.709860570000032 ], [ -124.986974700999937, 49.709838097000031 ], [ -124.986933121999968, 49.709757533000044 ], [ -124.986727731999949, 49.709580223000074 ], [ -124.986999564999948, 49.709437468000083 ], [ -124.987716804999948, 49.709060938000079 ], [ -124.988003818999985, 49.708910245000048 ], [ -124.986825717, 49.707399790000075 ], [ -124.986526203999972, 49.707156002000026 ], [ -124.988728490999932, 49.705899091000063 ], [ -124.989115468999955, 49.70567699900009 ], [ -124.989445024999952, 49.705522670000072 ], [ -124.989458514999953, 49.705513437000022 ], [ -124.990004126999963, 49.705288182000054 ], [ -124.990113176999984, 49.705241321000074 ], [ -124.990766692999955, 49.704980702000107 ], [ -124.990432429999942, 49.704726218000118 ], [ -124.989937889999979, 49.70434972300005 ], [ -124.988041971999948, 49.705367826000085 ], [ -124.985803116999989, 49.70657 ], [ -124.985510618999953, 49.706320459000061 ], [ -124.984991405999963, 49.705782007000067 ], [ -124.986154033, 49.705157969000034 ], [ -124.986746320999913, 49.704840019000081 ], [ -124.987075875999977, 49.704665866 ], [ -124.987086636999962, 49.704660171000107 ], [ -124.987451693999972, 49.70446699200005 ], [ -124.988615934999956, 49.703834638000046 ], [ -124.988993272999934, 49.703630349000051 ], [ -124.990614893999947, 49.70274226800008 ], [ -124.990842944999955, 49.70270749200008 ], [ -124.990909639999984, 49.703204658000061 ], [ -124.991398706999917, 49.704644218000098 ], [ -124.992113844999892, 49.706749022000054 ], [ -124.992553503999886, 49.708442361000017 ], [ -124.99273181199996, 49.709621444000057 ], [ -124.992767135999941, 49.709854827000122 ], [ -124.992784793999988, 49.709971490000086 ], [ -124.992791544999989, 49.71001613300006 ], [ -124.992845829999951, 49.71037510900009 ], [ -124.992969446999936, 49.71119252600009 ], [ -124.993214519999952, 49.712812795000076 ], [ -124.993522873999936, 49.712785071000013 ], [ -124.993817510999946, 49.713066617000024 ], [ -124.994295409999978, 49.713778934000096 ], [ -124.994447612999949, 49.714234594000025 ], [ -124.994470832, 49.714440773000049 ], [ -124.99418825599993, 49.715127168 ], [ -124.994666418999927, 49.715007481000043 ], [ -124.994646691999932, 49.715939569000057 ], [ -124.997395082999944, 49.718093501000062 ], [ -124.999490665999957, 49.717055845000147 ], [ -125.000092366999951, 49.717582826000076 ], [ -125.000084803999982, 49.717930179000035 ], [ -125.000293754999916, 49.717932093000044 ], [ -125.000286351999975, 49.71827221600013 ], [ -125.000752057999961, 49.718276482000057 ], [ -125.000750656999955, 49.718340840000039 ], [ -125.000960077999963, 49.718342758000034 ], [ -125.001592909999914, 49.718896966000095 ], [ -125.001526624999926, 49.721945872000049 ], [ -124.99890440099999, 49.721921844000121 ], [ -124.998898833999988, 49.722177237000039 ], [ -124.998552587999967, 49.7221740600001 ], [ -124.998516701999932, 49.72381962500004 ], [ -124.998824070999916, 49.723822446000021 ], [ -124.998817440999957, 49.724126591000086 ], [ -125.001405956999989, 49.724150311000052 ], [ -125.001449832999953, 49.722132528000039 ], [ -125.001942983999982, 49.722137041000039 ], [ -125.001953741999941, 49.721642040000049 ], [ -125.004050809999953, 49.721661202000064 ], [ -125.004063832, 49.721060726000076 ], [ -125.005733712999984, 49.722522872000127 ], [ -125.004984156999967, 49.722924140000046 ], [ -125.004892262999959, 49.722973357000058 ], [ -125.001703506999931, 49.724680287000076 ], [ -125.001300421999971, 49.724853008000053 ], [ -125.000610178, 49.725084610000053 ], [ -124.99999852800002, 49.725289851000149 ], [ -124.999810592999921, 49.725352926000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "575985364", "BldgCostT": "396896936", "sL_LossRatio": "0.890065697327908", "sL_AssetLoss": "168825.74", "sL_BldgLoss": "150266", "sL_StrLoss": "96674.6", "sL_NStrLoss": "53591.4", "sL_ContLoss": "18559.74", "geom_point": "0101000020E610000058E9ABD4013F5FC0A1C9CD8920DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.980473275999941, 49.706971896000049 ], [ -124.980539189999988, 49.706185401000027 ], [ -124.98071397699999, 49.705431490000073 ], [ -124.980790381999967, 49.704672094000081 ], [ -124.98098071299998, 49.703468499000074 ], [ -124.981120512999951, 49.702788909000077 ], [ -124.98221218899999, 49.703054593000047 ], [ -124.982439704999976, 49.703108904000104 ], [ -124.983209361999968, 49.701630955000013 ], [ -124.98328352099999, 49.701488618000084 ], [ -124.98420582199995, 49.701707703000061 ], [ -124.985023397999953, 49.701900592000072 ], [ -124.988359413999945, 49.701888398000094 ], [ -124.988785009999958, 49.701946302000088 ], [ -124.989163398999963, 49.702071293000074 ], [ -124.98999969499998, 49.702483805000043 ], [ -124.990249095999928, 49.702677712000096 ], [ -124.990842944999955, 49.70270749200008 ], [ -124.990614893999947, 49.70274226800008 ], [ -124.988993272999934, 49.703630349000051 ], [ -124.988615934999956, 49.703834638000046 ], [ -124.987451693999972, 49.70446699200005 ], [ -124.987086636999962, 49.704660171000107 ], [ -124.987075875999977, 49.704665866 ], [ -124.986746320999913, 49.704840019000081 ], [ -124.986154033, 49.705157969000034 ], [ -124.984991405999963, 49.705782007000067 ], [ -124.984403968999942, 49.706097335000024 ], [ -124.983719617999924, 49.706459799000051 ], [ -124.983123584999944, 49.706773499000121 ], [ -124.982160106999942, 49.707282590000062 ], [ -124.981178409, 49.707800606000028 ], [ -124.980473275999941, 49.706971896000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29381167", "BldgCostT": "18006667", "sL_LossRatio": "0.76280295451612", "sL_AssetLoss": "35716.17", "sL_BldgLoss": "27244.4", "sL_StrLoss": "21771", "sL_NStrLoss": "5473.4", "sL_ContLoss": "8471.77", "geom_point": "0101000020E61000006DAEC3663A3F5FC0D1F03D8EACD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.98328352099999, 49.701488618000084 ], [ -124.98277893699999, 49.701368772000059 ], [ -124.983867324999977, 49.700794646000126 ], [ -124.98391125099999, 49.700771480000114 ], [ -124.984893482999894, 49.700253294000071 ], [ -124.985362161999916, 49.700004946000021 ], [ -124.986264788999918, 49.699526707000054 ], [ -124.986698130999983, 49.699296807000117 ], [ -124.987196147999953, 49.699030193000091 ], [ -124.987357200999924, 49.69894400600009 ], [ -124.98729327800001, 49.698890349000074 ], [ -124.988826376999953, 49.698072896000056 ], [ -124.989045146999942, 49.697956264000034 ], [ -124.989055863999937, 49.697950525000053 ], [ -124.989097615999938, 49.698006699000103 ], [ -124.989683652999986, 49.698762378000019 ], [ -124.990032805999974, 49.699212616000054 ], [ -124.99063362899993, 49.699618457000028 ], [ -124.991082459999944, 49.699825545000074 ], [ -124.991309995999956, 49.699930542000104 ], [ -124.99129400599999, 49.700003003000035 ], [ -124.991271183, 49.700106454000071 ], [ -124.991228442999954, 49.700300393000084 ], [ -124.991184864999951, 49.700572382000132 ], [ -124.990861515999967, 49.702591669000078 ], [ -124.990842944999955, 49.70270749200008 ], [ -124.990249095999928, 49.702677712000096 ], [ -124.98999969499998, 49.702483805000043 ], [ -124.989163398999963, 49.702071293000074 ], [ -124.988785009999958, 49.701946302000088 ], [ -124.988359413999945, 49.701888398000094 ], [ -124.985023397999953, 49.701900592000072 ], [ -124.98420582199995, 49.701707703000061 ], [ -124.98328352099999, 49.701488618000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "371978696", "BldgCostT": "222113256", "sL_LossRatio": "0.70166665874727", "sL_AssetLoss": "231499.1", "sL_BldgLoss": "162435.2", "sL_StrLoss": "107686.5", "sL_NStrLoss": "54748.7", "sL_ContLoss": "69063.9", "geom_point": "0101000020E61000006BD0D766023F5FC0C5560BAA15D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.974943016999973, 49.698398988000086 ], [ -124.973973574999931, 49.696695204000079 ], [ -124.973195081999947, 49.695691200000034 ], [ -124.972953630999896, 49.695521596000056 ], [ -124.972930811999959, 49.695509448000045 ], [ -124.972281085999953, 49.695162980000084 ], [ -124.974074889999898, 49.694194235000033 ], [ -124.974480504999988, 49.694430179000086 ], [ -124.97577940599993, 49.693791955000066 ], [ -124.975752083999936, 49.695017772000092 ], [ -124.976167099999941, 49.695010689000057 ], [ -124.97617804, 49.695280365000059 ], [ -124.977009500999941, 49.695266169000071 ], [ -124.977031388999961, 49.695805520000107 ], [ -124.977862859999931, 49.695791317000015 ], [ -124.97788475899992, 49.696330668000016 ], [ -124.978716237999933, 49.696316460000098 ], [ -124.978727191999923, 49.696586134000079 ], [ -124.979558674999936, 49.696571921000057 ], [ -124.979569634999947, 49.696841596000105 ], [ -124.979985377999967, 49.696834486000071 ], [ -124.979993466999986, 49.697033509000043 ], [ -124.980061640999935, 49.69700996400011 ], [ -124.98019834099992, 49.69700526400004 ], [ -124.980317641999974, 49.697098665000105 ], [ -124.980412085999944, 49.697097050000082 ], [ -124.980415258, 49.697175088000058 ], [ -124.980654970999936, 49.69736275700005 ], [ -124.98208604, 49.697338266000038 ], [ -124.982129270999963, 49.698400709000083 ], [ -124.982545473999949, 49.698404593000092 ], [ -124.982534712999964, 49.698140170000073 ], [ -124.983366219999951, 49.698125928000124 ], [ -124.983355239999938, 49.697856254000079 ], [ -124.983770990999957, 49.697849131000126 ], [ -124.983749026999959, 49.697309784000076 ], [ -124.984996266999957, 49.697288407000045 ], [ -124.984985277999968, 49.697018732000068 ], [ -124.98540102099993, 49.69701160400006 ], [ -124.985390029999934, 49.696741931000076 ], [ -124.985805771999978, 49.696734800000087 ], [ -124.985794777999928, 49.696465127000089 ], [ -124.98621051799995, 49.696457995000117 ], [ -124.986199522, 49.696188321000065 ], [ -124.986615257999915, 49.696181188000011 ], [ -124.986593263999907, 49.695641841000075 ], [ -124.987008994999925, 49.695634708000121 ], [ -124.986986996999974, 49.695095360000032 ], [ -124.987402722999946, 49.695088225000049 ], [ -124.987391721999984, 49.694818551000026 ], [ -124.988223169999969, 49.694804276000049 ], [ -124.988212165999954, 49.694534602000054 ], [ -124.988627885999989, 49.694527462000032 ], [ -124.988605870999905, 49.693988117000067 ], [ -124.988966982999955, 49.693981913000094 ], [ -124.988972720999939, 49.693721061000076 ], [ -124.987818345999955, 49.693710351000057 ], [ -124.987827295, 49.693304041000076 ], [ -124.987763668999932, 49.693303451000091 ], [ -124.987834330999988, 49.690095272000114 ], [ -124.986904631999934, 49.690086637000121 ], [ -124.98694391, 49.688304805000044 ], [ -124.989234617999955, 49.687178657000047 ], [ -124.989816745999988, 49.687609514000052 ], [ -124.990161152, 49.688013009 ], [ -124.990427105999942, 49.688520996000079 ], [ -124.99055740099999, 49.688945887000095 ], [ -124.990569320999953, 49.688984682000097 ], [ -124.99064985299999, 49.689732935000059 ], [ -124.990642407999957, 49.68979413800006 ], [ -124.990587292999948, 49.690246870000095 ], [ -124.990448202999971, 49.690713332000023 ], [ -124.990351360999981, 49.690895035000047 ], [ -124.990746115999983, 49.691028228000093 ], [ -124.991343553999954, 49.692531448000068 ], [ -124.992156331999951, 49.693376416000035 ], [ -124.992504825999987, 49.693662080000067 ], [ -124.992826708999957, 49.693769396000064 ], [ -124.992676542999945, 49.69398211000005 ], [ -124.992437474999974, 49.694838033000046 ], [ -124.992249429999944, 49.695641355000127 ], [ -124.9921596699999, 49.69606779700004 ], [ -124.992022194999933, 49.696714173000018 ], [ -124.991993011999938, 49.696779576000161 ], [ -124.991743510999981, 49.697352958000081 ], [ -124.991703950999977, 49.697449748000068 ], [ -124.991475324999939, 49.698889549000064 ], [ -124.991339382999911, 49.699745371000049 ], [ -124.991309995999956, 49.699930542000104 ], [ -124.991082459999944, 49.699825545000074 ], [ -124.99063362899993, 49.699618457000028 ], [ -124.990032805999974, 49.699212616000054 ], [ -124.989683652999986, 49.698762378000019 ], [ -124.989097615999938, 49.698006699000103 ], [ -124.989055863999937, 49.697950525000053 ], [ -124.989045146999942, 49.697956264000034 ], [ -124.988826376999953, 49.698072896000056 ], [ -124.98729327800001, 49.698890349000074 ], [ -124.987357200999924, 49.69894400600009 ], [ -124.987196147999953, 49.699030193000091 ], [ -124.986698130999983, 49.699296807000117 ], [ -124.986264788999918, 49.699526707000054 ], [ -124.985362161999916, 49.700004946000021 ], [ -124.984893482999894, 49.700253294000071 ], [ -124.98391125099999, 49.700771480000114 ], [ -124.983867324999977, 49.700794646000126 ], [ -124.98277893699999, 49.701368772000059 ], [ -124.982645596999973, 49.701319850000118 ], [ -124.982227898999923, 49.701060921000057 ], [ -124.981240273999987, 49.700448613000056 ], [ -124.98095572699999, 49.70034250700008 ], [ -124.978079097999938, 49.700266116000044 ], [ -124.977627712999919, 49.700247517000015 ], [ -124.977390480999958, 49.700194915000104 ], [ -124.976884253999941, 49.699990544000087 ], [ -124.976845266999959, 49.69997481900004 ], [ -124.975726496999968, 49.699124203000096 ], [ -124.974943016999973, 49.698398988000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288868079", "BldgCostT": "175210440", "sL_LossRatio": "0.753083993618982", "sL_AssetLoss": "181663.8", "sL_BldgLoss": "136808.1", "sL_StrLoss": "96349.9", "sL_NStrLoss": "40458.2", "sL_ContLoss": "44855.7", "geom_point": "0101000020E6100000151E4FECDD3F5FC0963388CD4FDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.994646691999932, 49.715939569000057 ], [ -124.994666418999927, 49.715007481000043 ], [ -124.99418825599993, 49.715127168 ], [ -124.994470832, 49.714440773000049 ], [ -124.994447612999949, 49.714234594000025 ], [ -124.994295409999978, 49.713778934000096 ], [ -124.993817510999946, 49.713066617000024 ], [ -124.993522873999936, 49.712785071000013 ], [ -124.993214519999952, 49.712812795000076 ], [ -124.992969446999936, 49.71119252600009 ], [ -124.992845829999951, 49.71037510900009 ], [ -124.992791544999989, 49.71001613300006 ], [ -124.992784793999988, 49.709971490000086 ], [ -124.992767135999941, 49.709854827000122 ], [ -124.99273181199996, 49.709621444000057 ], [ -124.992553503999886, 49.708442361000017 ], [ -124.992113844999892, 49.706749022000054 ], [ -124.991398706999917, 49.704644218000098 ], [ -124.990909639999984, 49.703204658000061 ], [ -124.990842944999955, 49.70270749200008 ], [ -124.990861515999967, 49.702591669000078 ], [ -124.991184864999951, 49.700572382000132 ], [ -124.991228442999954, 49.700300393000084 ], [ -124.991271183, 49.700106454000071 ], [ -124.99129400599999, 49.700003003000035 ], [ -124.991309995999956, 49.699930542000104 ], [ -124.991339382999911, 49.699745371000049 ], [ -124.991475324999939, 49.698889549000064 ], [ -124.991703950999977, 49.697449748000068 ], [ -124.991743510999981, 49.697352958000081 ], [ -124.991993011999938, 49.696779576000161 ], [ -124.992022194999933, 49.696714173000018 ], [ -124.9921596699999, 49.69606779700004 ], [ -124.992249429999944, 49.695641355000127 ], [ -124.992437474999974, 49.694838033000046 ], [ -124.992676542999945, 49.69398211000005 ], [ -124.992826708999957, 49.693769396000064 ], [ -124.992504825999987, 49.693662080000067 ], [ -124.992156331999951, 49.693376416000035 ], [ -124.991343553999954, 49.692531448000068 ], [ -124.990746115999983, 49.691028228000093 ], [ -124.990351360999981, 49.690895035000047 ], [ -124.990448202999971, 49.690713332000023 ], [ -124.990587292999948, 49.690246870000095 ], [ -124.990642407999957, 49.68979413800006 ], [ -124.99064985299999, 49.689732935000059 ], [ -124.990569320999953, 49.688984682000097 ], [ -124.99055740099999, 49.688945887000095 ], [ -124.990427105999942, 49.688520996000079 ], [ -124.990161152, 49.688013009 ], [ -124.989816745999988, 49.687609514000052 ], [ -124.989234617999955, 49.687178657000047 ], [ -124.988353089, 49.686630766000064 ], [ -124.98799700499994, 49.686443051000055 ], [ -124.988314564999897, 49.686178837000092 ], [ -124.988653794999919, 49.685895452000111 ], [ -124.989977596999978, 49.68662320100006 ], [ -124.990872720999945, 49.687534705000097 ], [ -124.991476794, 49.688396390000065 ], [ -124.992739002999926, 49.689436101000112 ], [ -124.993168680999986, 49.690103995000058 ], [ -124.993349315999936, 49.690335093000087 ], [ -124.993535414999911, 49.690601097000084 ], [ -124.994914608999963, 49.692106386000027 ], [ -124.995076257999983, 49.692305509000072 ], [ -124.996376094999974, 49.693906609000067 ], [ -124.996308308999986, 49.694286885000082 ], [ -124.995932600999964, 49.694607390000073 ], [ -124.994350180999987, 49.695588598000086 ], [ -124.993154715999964, 49.696211003 ], [ -124.992456412999971, 49.696753601000069 ], [ -124.991938494999914, 49.697330412000063 ], [ -124.9917633, 49.697773410000067 ], [ -124.991686103999953, 49.698620797000011 ], [ -124.991811495999968, 49.69961631100005 ], [ -124.991996498999967, 49.70009909000008 ], [ -124.993015903999947, 49.700955092000079 ], [ -124.994298988999972, 49.70177829300011 ], [ -124.994770403999922, 49.70175261 ], [ -124.995276699999948, 49.701608799000063 ], [ -124.99631081299998, 49.701131696000061 ], [ -124.99674689899993, 49.70060189600008 ], [ -124.997189708999954, 49.700567689000088 ], [ -124.99728859, 49.700601893000069 ], [ -124.997605813999982, 49.700902394000074 ], [ -124.997740499999964, 49.701503396000049 ], [ -124.997044413999959, 49.702432005000063 ], [ -124.996815302999963, 49.702957511000122 ], [ -124.996831319999927, 49.703676700000067 ], [ -124.997129506999912, 49.704166686000043 ], [ -124.997811091999921, 49.70424500500004 ], [ -124.998363393, 49.704182297000024 ], [ -124.99882202, 49.703859004000037 ], [ -124.999124589999923, 49.703115592000081 ], [ -124.999405725999949, 49.702839725000075 ], [ -124.999802949999918, 49.702843368000053 ], [ -124.999800590999911, 49.702951733000084 ], [ -125.00067472399999, 49.702959746000026 ], [ -125.00065719899996, 49.70376539700009 ], [ -125.00107146199997, 49.703758238000013 ], [ -125.00108254300001, 49.704027908000079 ], [ -125.001914140999958, 49.704013532000047 ], [ -125.001934090999924, 49.7044988130001 ], [ -125.005766823000016, 49.704533819000041 ], [ -125.005744475999933, 49.705566413000071 ], [ -125.006138777999965, 49.705559581000031 ], [ -125.006149888999971, 49.705829252000115 ], [ -125.00822895499999, 49.705793208000088 ], [ -125.008251195999947, 49.706332548000091 ], [ -125.008667013, 49.706325334000034 ], [ -125.008678136999976, 49.706595003000054 ], [ -125.009093955999944, 49.706587789000061 ], [ -125.009135821999934, 49.707602479000052 ], [ -125.009274274999939, 49.707603737000085 ], [ -125.009242623999981, 49.709071318000071 ], [ -125.00797090099999, 49.709738660000014 ], [ -125.006611407999969, 49.710452020000048 ], [ -125.006523589999972, 49.710498096000073 ], [ -124.999299679999936, 49.713808087000096 ], [ -124.998304282999982, 49.71379895200004 ], [ -124.998298818999984, 49.714049510000059 ], [ -124.99844268899993, 49.71405083100008 ], [ -124.998439387999952, 49.714202207000049 ], [ -124.994646691999932, 49.715939569000057 ] ], [ [ -124.995606002, 49.712361137000102 ], [ -124.995626692999934, 49.711414922000046 ], [ -124.99534857, 49.711412360000104 ], [ -124.995327874999987, 49.712358576000113 ], [ -124.995606002, 49.712361137000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35909417", "BldgCostT": "21256667", "sL_LossRatio": "0.600734022771993", "sL_AssetLoss": "33434.93", "sL_BldgLoss": "20085.5", "sL_StrLoss": "12648.1", "sL_NStrLoss": "7437.4", "sL_ContLoss": "13349.43", "geom_point": "0101000020E6100000DC81BE1DB63F5FC0A59B063D82D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.99903255699995, 49.698966528000071 ], [ -124.999068509000011, 49.697316143000151 ], [ -124.99872686599997, 49.697322041000078 ], [ -124.998715799999957, 49.697052369000133 ], [ -124.996221352999925, 49.697095407000099 ], [ -124.996210301999938, 49.696825734000065 ], [ -124.995794562999947, 49.696832901000079 ], [ -124.995784151999885, 49.696578811000023 ], [ -124.995548629999988, 49.696576642000096 ], [ -124.995227495999984, 49.696014505000065 ], [ -124.995283896000018, 49.695706795000014 ], [ -124.995625713999956, 49.695261100000032 ], [ -124.995855673, 49.695138514000099 ], [ -124.995842252999978, 49.695752630000115 ], [ -124.99616609899999, 49.695747047000069 ], [ -124.996155048999924, 49.695477375000095 ], [ -124.996570777999963, 49.695470206000024 ], [ -124.996559724999898, 49.69520053400003 ], [ -124.997381064999985, 49.69518636800008 ], [ -124.997365840999947, 49.695031264000065 ], [ -124.997267323999921, 49.694620383000036 ], [ -124.99683506599996, 49.694616407000062 ], [ -124.997038984999946, 49.694507697000077 ], [ -124.997197686999982, 49.694325405 ], [ -124.997175108999912, 49.694118882000055 ], [ -124.996819590999934, 49.693557694000056 ], [ -124.995582907999918, 49.692055477000025 ], [ -124.995505301999955, 49.691961205000041 ], [ -124.994014112999977, 49.690413092000014 ], [ -124.993917287, 49.690099703000044 ], [ -124.993282095, 49.68911130300004 ], [ -124.992941000999934, 49.688937605000014 ], [ -124.992252492999953, 49.688373615000096 ], [ -124.991875804999964, 49.68797619300004 ], [ -124.991649688999985, 49.687547502 ], [ -124.990825495999957, 49.686698707000055 ], [ -124.98963378799999, 49.685684694000045 ], [ -124.989159746999974, 49.685472830000101 ], [ -124.989347654999975, 49.685315879000044 ], [ -124.989498518999966, 49.685258816000022 ], [ -124.989725761999935, 49.685003649000073 ], [ -124.990233322999956, 49.684412866000066 ], [ -124.990396819999916, 49.684222775000116 ], [ -124.990633444999901, 49.684361704000032 ], [ -124.991169264999954, 49.684690504000166 ], [ -124.991836319999976, 49.685100543000047 ], [ -124.992322437999945, 49.685675341000064 ], [ -124.992424802999935, 49.685746451000114 ], [ -124.992922411, 49.686430190000081 ], [ -124.993147220999987, 49.686730889000039 ], [ -124.993457681000024, 49.686973996000077 ], [ -124.993848691999986, 49.687277094000109 ], [ -124.994670190999969, 49.687916108000067 ], [ -124.995473868999952, 49.688543319000118 ], [ -124.996050540999974, 49.689544413000135 ], [ -124.996224551999944, 49.689880003000098 ], [ -124.996643468999963, 49.69068775700002 ], [ -124.996925081999933, 49.691053764000038 ], [ -124.997203015999972, 49.691396350000083 ], [ -124.997275904999967, 49.691484256000102 ], [ -124.997521332999938, 49.691778484000061 ], [ -124.997843021999984, 49.692164115000033 ], [ -124.998123902999978, 49.692504271000104 ], [ -124.998447786999961, 49.692896511000114 ], [ -124.999046011999937, 49.693614394000079 ], [ -124.99965657199999, 49.694336004000014 ], [ -124.999233520999951, 49.694484138000085 ], [ -124.999054174999984, 49.694510385000072 ], [ -124.998859551999956, 49.69454006100009 ], [ -124.998177270999975, 49.694628268000088 ], [ -124.998737399999968, 49.695312535000042 ], [ -124.998858958999932, 49.695457576000081 ], [ -124.999135630999959, 49.695797439000074 ], [ -124.999425907999949, 49.696149110000128 ], [ -124.999677148999965, 49.696254854000152 ], [ -124.999773518999945, 49.696266142000056 ], [ -125.000008606, 49.696293743000133 ], [ -125.000109773999924, 49.696305591000055 ], [ -125.000412077999954, 49.696321716000099 ], [ -125.000467456999957, 49.696324651000118 ], [ -125.000499311999974, 49.69632635300011 ], [ -125.000497812, 49.696346286000022 ], [ -125.000192996999928, 49.696729396000123 ], [ -125.000207698999958, 49.697052708000065 ], [ -124.999999199999976, 49.697407303000048 ], [ -124.999920921999959, 49.698523903000094 ], [ -124.999713688999975, 49.698905611000036 ], [ -124.999649491999918, 49.698972188000084 ], [ -124.99903255699995, 49.698966528000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "777989571", "BldgCostT": "476594753", "sL_LossRatio": "0.66129515745422", "sL_AssetLoss": "433710.51", "sL_BldgLoss": "286810.66", "sL_StrLoss": "162185.46", "sL_NStrLoss": "124625.2", "sL_ContLoss": "146899.85", "geom_point": "0101000020E6100000BF7AA93312405FC0C131BBBC73D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.996643468999963, 49.69068775700002 ], [ -124.996224551999944, 49.689880003000098 ], [ -124.996050540999974, 49.689544413000135 ], [ -124.995473868999952, 49.688543319000118 ], [ -124.996076290999952, 49.688220789000042 ], [ -124.996831056999909, 49.687816725000069 ], [ -124.997317284999923, 49.687556433000069 ], [ -124.998490617999963, 49.686934992000047 ], [ -124.998592765999945, 49.686880904000105 ], [ -124.999750099999943, 49.68781265300003 ], [ -124.999932718999958, 49.688030477000041 ], [ -125.00004041899993, 49.68815893000005 ], [ -125.000168519999988, 49.688320231000013 ], [ -125.0003005, 49.688495025000051 ], [ -125.000855551999933, 49.689219740000077 ], [ -125.001176601999944, 49.689605865000047 ], [ -125.001483406999981, 49.68997478700004 ], [ -125.00175987899999, 49.690306511000102 ], [ -125.002073509999946, 49.690682724000119 ], [ -125.004234364999903, 49.689940590000035 ], [ -125.005451617999981, 49.689522590000081 ], [ -125.004624494999973, 49.688880011000109 ], [ -125.00542717799999, 49.68860040400012 ], [ -125.006114115999964, 49.68835931000006 ], [ -125.007618027999925, 49.689482102000063 ], [ -125.008198309999926, 49.689363201000091 ], [ -125.008439885999962, 49.68927728900006 ], [ -125.008750817999939, 49.689119103000067 ], [ -125.010381127999935, 49.690615158000085 ], [ -125.008995017999979, 49.691321988 ], [ -125.008776, 49.691319997000029 ], [ -125.00880164099999, 49.690131239000024 ], [ -125.007230269999937, 49.690158494000087 ], [ -125.007168865999986, 49.690167397000074 ], [ -125.007179652999938, 49.690429235000074 ], [ -125.006348287999955, 49.69044364600007 ], [ -125.006359390999975, 49.690713316 ], [ -125.005528021999964, 49.690727721000087 ], [ -125.00553912299992, 49.690997392000035 ], [ -125.00512343599999, 49.691004592000112 ], [ -125.005134532999961, 49.691274262000064 ], [ -125.004718842999949, 49.691281462000084 ], [ -125.004729939999947, 49.691551132000015 ], [ -125.00431424599995, 49.691558330000056 ], [ -125.004325340999955, 49.691828 ], [ -125.003909645999968, 49.691835196000035 ], [ -125.00392736799999, 49.692266105000073 ], [ -125.003893488999935, 49.692265998000067 ], [ -125.003389802999905, 49.692472509000027 ], [ -125.003140603999967, 49.692658094000137 ], [ -125.003111516999951, 49.69265859700004 ], [ -125.003112361999968, 49.692679126000037 ], [ -125.002944287999981, 49.692804293000123 ], [ -125.002867037999948, 49.692932689000017 ], [ -125.002706899999922, 49.692935460000115 ], [ -125.00271703599995, 49.693182004000022 ], [ -125.002556094999932, 49.693449490000027 ], [ -125.001780313000012, 49.694137401000098 ], [ -125.001118312999893, 49.694949207000114 ], [ -125.000859592999959, 49.695692591000039 ], [ -125.000524288999898, 49.695994492000054 ], [ -125.000499311999974, 49.69632635300011 ], [ -125.000467456999957, 49.696324651000118 ], [ -125.000412077999954, 49.696321716000099 ], [ -125.000109773999924, 49.696305591000055 ], [ -125.000008606, 49.696293743000133 ], [ -124.999773518999945, 49.696266142000056 ], [ -124.999677148999965, 49.696254854000152 ], [ -124.999425907999949, 49.696149110000128 ], [ -124.999135630999959, 49.695797439000074 ], [ -124.998858958999932, 49.695457576000081 ], [ -124.998737399999968, 49.695312535000042 ], [ -124.998177270999975, 49.694628268000088 ], [ -124.998859551999956, 49.69454006100009 ], [ -124.999054174999984, 49.694510385000072 ], [ -124.999233520999951, 49.694484138000085 ], [ -124.99965657199999, 49.694336004000014 ], [ -124.999046011999937, 49.693614394000079 ], [ -124.998447786999961, 49.692896511000114 ], [ -124.998123902999978, 49.692504271000104 ], [ -124.997843021999984, 49.692164115000033 ], [ -124.997521332999938, 49.691778484000061 ], [ -124.997275904999967, 49.691484256000102 ], [ -124.997203015999972, 49.691396350000083 ], [ -124.996925081999933, 49.691053764000038 ], [ -124.996643468999963, 49.69068775700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407393077", "BldgCostT": "246531744", "sL_LossRatio": "0.805441197908699", "sL_AssetLoss": "138908.75", "sL_BldgLoss": "111882.83", "sL_StrLoss": "86159.83", "sL_NStrLoss": "25723", "sL_ContLoss": "27025.92", "geom_point": "0101000020E610000096E4BB521E405FC07F20C374EBD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.999800914000033, 49.686240744000052 ], [ -124.998953601, 49.6855771910001 ], [ -124.997761926999928, 49.686227423000091 ], [ -124.996958171999907, 49.685602051000053 ], [ -124.996974062999968, 49.685593522000062 ], [ -124.99815950699994, 49.6849563970001 ], [ -124.999684593999973, 49.684135705000095 ], [ -124.999286919999989, 49.683826201000059 ], [ -124.998642509999939, 49.683325486000086 ], [ -124.999964308999921, 49.682616286000062 ], [ -124.999981850000026, 49.682629859000038 ], [ -125.000607299999942, 49.683113308000088 ], [ -125.00100928699996, 49.683423694000098 ], [ -125.001789931999966, 49.684028154000082 ], [ -125.002156469999989, 49.684309456000058 ], [ -125.003051997999989, 49.685047179000058 ], [ -125.003799601999958, 49.685839298000126 ], [ -125.004149016999946, 49.686209505000143 ], [ -125.004591697, 49.686558113000054 ], [ -125.005494783999907, 49.68726969700009 ], [ -125.006632023999913, 49.688179599000129 ], [ -125.006114115999964, 49.68835931000006 ], [ -125.00542717799999, 49.68860040400012 ], [ -125.004624494999973, 49.688880011000109 ], [ -125.005451617999981, 49.689522590000081 ], [ -125.004234364999903, 49.689940590000035 ], [ -125.002073509999946, 49.690682724000119 ], [ -125.00175987899999, 49.690306511000102 ], [ -125.001483406999981, 49.68997478700004 ], [ -125.001176601999944, 49.689605865000047 ], [ -125.000855551999933, 49.689219740000077 ], [ -125.0003005, 49.688495025000051 ], [ -125.000168519999988, 49.688320231000013 ], [ -125.00004041899993, 49.68815893000005 ], [ -124.999932718999958, 49.688030477000041 ], [ -124.999750099999943, 49.68781265300003 ], [ -124.998592765999945, 49.686880904000105 ], [ -124.999221602999967, 49.68654770400012 ], [ -124.999800914000033, 49.686240744000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307455490", "BldgCostT": "201305260", "sL_LossRatio": "0.844023787195595", "sL_AssetLoss": "125433.87", "sL_BldgLoss": "105869.17", "sL_StrLoss": "86910.27", "sL_NStrLoss": "18958.9", "sL_ContLoss": "19564.7", "geom_point": "0101000020E6100000E038BE30B83F5FC043D7542FA2D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.992922411, 49.686430190000081 ], [ -124.992424802999935, 49.685746451000114 ], [ -124.992322437999945, 49.685675341000064 ], [ -124.991836319999976, 49.685100543000047 ], [ -124.991169264999954, 49.684690504000166 ], [ -124.990633444999901, 49.684361704000032 ], [ -124.990396819999916, 49.684222775000116 ], [ -124.990321617999953, 49.684177099000095 ], [ -124.990379559999937, 49.684126379000126 ], [ -124.990460188999961, 49.684175707000044 ], [ -124.990651890999942, 49.684025446000099 ], [ -124.990777543999911, 49.683918648000123 ], [ -124.991570396999975, 49.68345644300009 ], [ -124.992058673, 49.68316818500012 ], [ -124.992114952999927, 49.683134947000035 ], [ -124.99216136699999, 49.683040028000086 ], [ -124.992533118999972, 49.682827588000045 ], [ -124.993109949999948, 49.682504876000067 ], [ -124.99422731099996, 49.681879803000058 ], [ -124.994696820999962, 49.682231718000025 ], [ -124.995102283999927, 49.682535559000065 ], [ -124.995575273, 49.682280755000079 ], [ -124.997914210999966, 49.681020505000035 ], [ -124.999553548999941, 49.682296579000131 ], [ -124.999964308999921, 49.682616286000062 ], [ -124.998642509999939, 49.683325486000086 ], [ -124.999286919999989, 49.683826201000059 ], [ -124.999684593999973, 49.684135705000095 ], [ -124.99815950699994, 49.6849563970001 ], [ -124.996974062999968, 49.685593522000062 ], [ -124.996958171999907, 49.685602051000053 ], [ -124.997761926999928, 49.686227423000091 ], [ -124.998953601, 49.6855771910001 ], [ -124.999800914000033, 49.686240744000052 ], [ -124.999221602999967, 49.68654770400012 ], [ -124.998592765999945, 49.686880904000105 ], [ -124.998490617999963, 49.686934992000047 ], [ -124.997317284999923, 49.687556433000069 ], [ -124.996831056999909, 49.687816725000069 ], [ -124.996076290999952, 49.688220789000042 ], [ -124.995473868999952, 49.688543319000118 ], [ -124.994670190999969, 49.687916108000067 ], [ -124.993848691999986, 49.687277094000109 ], [ -124.993457681000024, 49.686973996000077 ], [ -124.993147220999987, 49.686730889000039 ], [ -124.992922411, 49.686430190000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269647901", "BldgCostT": "168436875", "sL_LossRatio": "0.782566247117429", "sL_AssetLoss": "127325.54", "sL_BldgLoss": "99640.67", "sL_StrLoss": "78159.6", "sL_NStrLoss": "21481.07", "sL_ContLoss": "27684.87", "geom_point": "0101000020E6100000A16761EC903F5FC0831F52C202D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.992851813999934, 49.680802093000047 ], [ -124.991805989999961, 49.679979210000084 ], [ -124.990929792999935, 49.680452384000063 ], [ -124.990604603999884, 49.680627511000061 ], [ -124.990137384999983, 49.680268689000066 ], [ -124.988998203999955, 49.679659997000044 ], [ -124.988543992999936, 49.679341794000031 ], [ -124.988545793999933, 49.679259089000034 ], [ -124.989489313999982, 49.678747907000101 ], [ -124.991244300999981, 49.677800802000014 ], [ -124.99165218899999, 49.67758048500005 ], [ -124.991845890999983, 49.677525694000046 ], [ -124.99203049499998, 49.677510305000105 ], [ -124.993254293999968, 49.677601706000132 ], [ -124.994270402999945, 49.677693805000082 ], [ -124.99436568299997, 49.677720480000112 ], [ -124.994479706000021, 49.677752412000082 ], [ -124.995076971999936, 49.678181598000023 ], [ -124.99404647199999, 49.678748696000078 ], [ -124.994430229999949, 49.679052407000057 ], [ -124.994845715999986, 49.679381185000125 ], [ -124.995090793999935, 49.679575116000059 ], [ -124.996466098, 49.680662696000113 ], [ -124.997038106999966, 49.68035129800014 ], [ -124.997507805999987, 49.680710077000072 ], [ -124.997914210999966, 49.681020505000035 ], [ -124.995575273, 49.682280755000079 ], [ -124.995102283999927, 49.682535559000065 ], [ -124.994696820999962, 49.682231718000025 ], [ -124.99422731099996, 49.681879803000058 ], [ -124.993814715999989, 49.681554005000052 ], [ -124.992851813999934, 49.680802093000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92909917", "BldgCostT": "62601667", "sL_LossRatio": "0.99089466185542", "sL_AssetLoss": "51216.11", "sL_BldgLoss": "50749.77", "sL_StrLoss": "47267.57", "sL_NStrLoss": "3482.2", "sL_ContLoss": "466.34", "geom_point": "0101000020E6100000AA99B514503F5FC030B12238E8D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.992949785999969, 49.682021013000067 ], [ -124.991989490999956, 49.681275398000061 ], [ -124.991515723999939, 49.681534597000045 ], [ -124.990912679999923, 49.681864500000096 ], [ -124.98967517799997, 49.681128908000098 ], [ -124.98705679599999, 49.679570894000079 ], [ -124.986884907999951, 49.679384902000024 ], [ -124.986879142999939, 49.679372944000086 ], [ -124.986723302999948, 49.679049694000049 ], [ -124.986212190999964, 49.677981690000088 ], [ -124.987364102999919, 49.677755815000076 ], [ -124.986486386999985, 49.675785693000073 ], [ -124.987020589999958, 49.675554104000035 ], [ -124.988897801999912, 49.677111591 ], [ -124.989789297999948, 49.676629611000074 ], [ -124.990503403999952, 49.6772235910001 ], [ -124.991244300999981, 49.677800802000014 ], [ -124.989489313999982, 49.678747907000101 ], [ -124.988545793999933, 49.679259089000034 ], [ -124.988543992999936, 49.679341794000031 ], [ -124.988998203999955, 49.679659997000044 ], [ -124.990137384999983, 49.680268689000066 ], [ -124.990604603999884, 49.680627511000061 ], [ -124.990929792999935, 49.680452384000063 ], [ -124.991805989999961, 49.679979210000084 ], [ -124.992851813999934, 49.680802093000047 ], [ -124.993814715999989, 49.681554005000052 ], [ -124.992949785999969, 49.682021013000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385497959", "BldgCostT": "251477642", "sL_LossRatio": "0.700978623243858", "sL_AssetLoss": "106828.65", "sL_BldgLoss": "74884.6", "sL_StrLoss": "44931.6", "sL_NStrLoss": "29953", "sL_ContLoss": "31944.05", "geom_point": "0101000020E61000007E1B61721F3F5FC07DC9A42BFDD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.988700605999924, 49.683115018000059 ], [ -124.987415274999961, 49.682349302000056 ], [ -124.987396854999986, 49.682359215000112 ], [ -124.987319934999917, 49.682400575000088 ], [ -124.985802599999914, 49.681478837000064 ], [ -124.985208144999959, 49.681111680000086 ], [ -124.98496196799999, 49.680888221000032 ], [ -124.984895785999953, 49.680828142000067 ], [ -124.984830114999923, 49.680729606000128 ], [ -124.984738938999968, 49.680592789000073 ], [ -124.983845076999927, 49.678227681000067 ], [ -124.983738878999986, 49.67801980200008 ], [ -124.982638007999967, 49.676191588000101 ], [ -124.982775899999979, 49.676155092000066 ], [ -124.983667601999954, 49.67591688300012 ], [ -124.984863089999962, 49.675598803000064 ], [ -124.985037799999958, 49.675525800000067 ], [ -124.986212190999964, 49.677981690000088 ], [ -124.986723302999948, 49.679049694000049 ], [ -124.986879142999939, 49.679372944000086 ], [ -124.986884907999951, 49.679384902000024 ], [ -124.98705679599999, 49.679570894000079 ], [ -124.98967517799997, 49.681128908000098 ], [ -124.990912679999923, 49.681864500000096 ], [ -124.990379031999979, 49.682156547 ], [ -124.989886308000024, 49.682426201000062 ], [ -124.989441213999967, 49.682684776000066 ], [ -124.988700605999924, 49.683115018000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235713542", "BldgCostT": "149506472", "sL_LossRatio": "0.794699544957594", "sL_AssetLoss": "102790.42", "sL_BldgLoss": "81687.5", "sL_StrLoss": "63358.4", "sL_NStrLoss": "18329.1", "sL_ContLoss": "21102.92", "geom_point": "0101000020E6100000D73E909B253F5FC0F73B3D842BD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.986212190999964, 49.677981690000088 ], [ -124.985037799999958, 49.675525800000067 ], [ -124.984863089999962, 49.675598803000064 ], [ -124.983667601999954, 49.67591688300012 ], [ -124.982775899999979, 49.676155092000066 ], [ -124.982638007999967, 49.676191588000101 ], [ -124.981818692999965, 49.67484631100011 ], [ -124.981310586999911, 49.67402385900008 ], [ -124.980634914999911, 49.672929193000165 ], [ -124.980370691999923, 49.67250109600009 ], [ -124.980496588999969, 49.672442909000033 ], [ -124.981334129999979, 49.672023484000071 ], [ -124.982597413999954, 49.671390300000041 ], [ -124.985019701999974, 49.670073506000051 ], [ -124.98575296199999, 49.66966948900005 ], [ -124.985926168999953, 49.669574056000052 ], [ -124.986666885999981, 49.669165914000061 ], [ -124.987128588999923, 49.669510493000118 ], [ -124.987525283999943, 49.669804427000024 ], [ -124.987427352999987, 49.669852992000074 ], [ -124.988386288999976, 49.670601047000019 ], [ -124.98851716199998, 49.670703123000109 ], [ -124.98992612799999, 49.670375610000029 ], [ -124.990108708999969, 49.670528266000076 ], [ -124.990423079999943, 49.670791121000093 ], [ -124.992094867999953, 49.672046167000076 ], [ -124.9957486099999, 49.674891909000038 ], [ -124.994658002999984, 49.67548899000009 ], [ -124.990997463, 49.672637814000112 ], [ -124.990171110999981, 49.673083087000116 ], [ -124.9881661899999, 49.674163300000046 ], [ -124.987320601999926, 49.674573707000057 ], [ -124.987992489999982, 49.675131400000112 ], [ -124.988119012999945, 49.675237806000055 ], [ -124.989789297999948, 49.676629611000074 ], [ -124.988897801999912, 49.677111591 ], [ -124.987020589999958, 49.675554104000035 ], [ -124.986486386999985, 49.675785693000073 ], [ -124.987364102999919, 49.677755815000076 ], [ -124.986212190999964, 49.677981690000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.985503621689737", "sL_AssetLoss": "2079.14", "sL_BldgLoss": "2049", "sL_StrLoss": "1868", "sL_NStrLoss": "181", "sL_ContLoss": "30.14", "geom_point": "0101000020E61000008549021E223F5FC06793CB98E5D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.98694391, 49.688304805000044 ], [ -124.98695664499999, 49.687727033000058 ], [ -124.984769494999966, 49.687706689000059 ], [ -124.984834976999977, 49.684742136000118 ], [ -124.985322386999954, 49.684908782000043 ], [ -124.985623968999988, 49.685053715000024 ], [ -124.985699755, 49.685103838000046 ], [ -124.986982629999929, 49.685952373000049 ], [ -124.987555963999952, 49.686213167000105 ], [ -124.98799700499994, 49.686443051000055 ], [ -124.988353089, 49.686630766000064 ], [ -124.989234617999955, 49.687178657000047 ], [ -124.98694391, 49.688304805000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55382833", "BldgCostT": "36193333", "sL_LossRatio": "0.977077361878443", "sL_AssetLoss": "42588.03", "sL_BldgLoss": "41611.8", "sL_StrLoss": "37119.1", "sL_NStrLoss": "4492.7", "sL_ContLoss": "976.23", "geom_point": "0101000020E610000037DAF5FBD33D5FC0B4024356B7D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.971068205000023, 49.694445994000056 ], [ -124.970554021999988, 49.694018407000037 ], [ -124.970101821999961, 49.69348340500003 ], [ -124.969583857999908, 49.692740473000121 ], [ -124.969411844999968, 49.692493671000108 ], [ -124.969233333999981, 49.692238271000072 ], [ -124.969012339999978, 49.691710860000065 ], [ -124.968710019999918, 49.691289775000079 ], [ -124.967056491999955, 49.689835777000013 ], [ -124.965835187999943, 49.688877893000047 ], [ -124.964915306999941, 49.688324082000044 ], [ -124.964149784999961, 49.687986699000071 ], [ -124.963711885999899, 49.687928492 ], [ -124.963048795999967, 49.687966290000141 ], [ -124.962325809999953, 49.688080905000064 ], [ -124.961991395999974, 49.688224308000095 ], [ -124.961438509999965, 49.688596804000049 ], [ -124.961317159999922, 49.688685073000052 ], [ -124.961208879999973, 49.688763792000053 ], [ -124.96114706899999, 49.688813633000109 ], [ -124.961095737999941, 49.68885503500011 ], [ -124.961034709999979, 49.688904259000047 ], [ -124.960451904999928, 49.689374332000064 ], [ -124.96043411299999, 49.689388692000158 ], [ -124.960423352999925, 49.689393761000055 ], [ -124.960326535999982, 49.689439455000127 ], [ -124.960210126000021, 49.689461904000041 ], [ -124.96008893599992, 49.68946074800003 ], [ -124.960115488999989, 49.688287242000129 ], [ -124.959826749999976, 49.688284488000072 ], [ -124.95928627699999, 49.688279330000093 ], [ -124.959294528999948, 49.687914869000124 ], [ -124.95923991399998, 49.687914347000053 ], [ -124.959233038999969, 49.688217917000024 ], [ -124.958498461999966, 49.688210902000066 ], [ -124.958490448, 49.688564523000075 ], [ -124.95926667699996, 49.688551388000072 ], [ -124.959268230999939, 49.688590086000048 ], [ -124.956124421999974, 49.689364133000034 ], [ -124.95576132, 49.688734312000093 ], [ -124.953645969, 49.689322992000029 ], [ -124.953506378999947, 49.689215415000071 ], [ -124.953382225, 49.689192632000093 ], [ -124.95269746799994, 49.688736782000035 ], [ -124.95462550400002, 49.687712927000057 ], [ -124.956330965999925, 49.686807228000063 ], [ -124.956441679999955, 49.686748418 ], [ -124.958100581999986, 49.685867357000163 ], [ -124.956401730999914, 49.684387268000123 ], [ -124.957252552999947, 49.683919048000071 ], [ -124.960337029999963, 49.68192489300003 ], [ -124.960332286999972, 49.682134592000082 ], [ -124.960733990999955, 49.682138423000026 ], [ -124.960712142999952, 49.683104714000116 ], [ -124.961372625999971, 49.683111009000108 ], [ -124.961362024999985, 49.683580114000058 ], [ -124.96148247499994, 49.683581262000054 ], [ -124.961525230999911, 49.681688834000099 ], [ -124.960714084999907, 49.681681103000123 ], [ -124.960833365000028, 49.681603982000063 ], [ -124.960857624999932, 49.678296849000098 ], [ -124.961057556999918, 49.67799031200007 ], [ -124.963920492999932, 49.678585011000052 ], [ -124.964031306, 49.678583583000055 ], [ -124.964237195999928, 49.678238894000046 ], [ -124.964420495999974, 49.678271689000084 ], [ -124.964358315999959, 49.678488200000039 ], [ -124.964834590999928, 49.678587898000075 ], [ -124.965006574999975, 49.678405597000108 ], [ -124.96541539099999, 49.67889261100008 ], [ -124.965640713999974, 49.678996604000062 ], [ -124.967538789999963, 49.678973805000055 ], [ -124.969054398, 49.679398190000036 ], [ -124.969498491999971, 49.679741507000102 ], [ -124.972651413999969, 49.680614503000115 ], [ -124.972935179999951, 49.680762598000108 ], [ -124.973284390999979, 49.681169911000069 ], [ -124.973396277999981, 49.681191795000103 ], [ -124.973604711999926, 49.681226899000123 ], [ -124.973923381999967, 49.681177095000052 ], [ -124.976748369999939, 49.681102705000107 ], [ -124.976685909999958, 49.683908370000076 ], [ -124.976674605999975, 49.684416092000113 ], [ -124.97113437299997, 49.684363946000062 ], [ -124.971142941999943, 49.683981092000124 ], [ -124.970564474999918, 49.683975631000074 ], [ -124.970568480999987, 49.683796762000114 ], [ -124.970108768999964, 49.683792419000014 ], [ -124.970114860999942, 49.683520513000161 ], [ -124.969956478999947, 49.68351901700003 ], [ -124.969960168999975, 49.683354358000045 ], [ -124.969637576999929, 49.683351310000077 ], [ -124.969642973999939, 49.683110585000087 ], [ -124.969274377999938, 49.683107100000086 ], [ -124.96927712199999, 49.682984752000024 ], [ -124.96796803700002, 49.682972367000076 ], [ -124.967979900999978, 49.682443967000033 ], [ -124.96762217899996, 49.682440580000083 ], [ -124.967586222999941, 49.684041420000071 ], [ -124.962046044999951, 49.683988812000074 ], [ -124.962046679999958, 49.683960651000049 ], [ -124.961531100999977, 49.683955741000091 ], [ -124.961529403, 49.68403091800014 ], [ -124.961706269999979, 49.684032602000052 ], [ -124.961703417999956, 49.68415881800005 ], [ -124.964994952, 49.6841901190001 ], [ -124.964991081, 49.684362075000131 ], [ -124.966214916999917, 49.684373687000054 ], [ -124.966206167999971, 49.684762647000099 ], [ -124.966915414999946, 49.684769370000076 ], [ -124.966894211999914, 49.685712645000109 ], [ -124.966907670999888, 49.685712773000041 ], [ -124.966904716999935, 49.68584420100013 ], [ -124.967859942999951, 49.685853248000107 ], [ -124.967849712999964, 49.68630876200006 ], [ -124.967858971999988, 49.686308850000088 ], [ -124.967810268999969, 49.688477478000088 ], [ -124.968977860999985, 49.688488526000093 ], [ -124.96895708299999, 49.689414714000073 ], [ -124.972412987999931, 49.689447340000051 ], [ -124.972367538999961, 49.691479892000096 ], [ -124.974587229999941, 49.691500789000038 ], [ -124.974558746999946, 49.692777278000051 ], [ -124.975801760999971, 49.692788961000041 ], [ -124.97577940599993, 49.693791955000066 ], [ -124.974480504999988, 49.694430179000086 ], [ -124.974074889999898, 49.694194235000033 ], [ -124.972281085999953, 49.695162980000084 ], [ -124.971487075999974, 49.69473959700008 ], [ -124.971462020999951, 49.694722016000135 ], [ -124.971068205000023, 49.694445994000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.988558352402746", "sL_AssetLoss": "961.4", "sL_BldgLoss": "950.4", "sL_StrLoss": "869", "sL_NStrLoss": "81.4", "sL_ContLoss": "11", "geom_point": "0101000020E610000062A36AC3BA3E5FC0F51439445CD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.979965667, 49.683477675000113 ], [ -124.979975739999958, 49.683023797000097 ], [ -124.979009458999926, 49.683014751000073 ], [ -124.979045892, 49.681374475000084 ], [ -124.979423993999902, 49.681443391000123 ], [ -124.980600275999976, 49.682088594000099 ], [ -124.981345212999955, 49.682336398000096 ], [ -124.981992063999911, 49.682605166000059 ], [ -124.980373763000017, 49.683481493000123 ], [ -124.979965667, 49.683477675000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126830168", "BldgCostT": "85476668", "sL_LossRatio": "0.97358130408026", "sL_AssetLoss": "114153.25", "sL_BldgLoss": "111137.47", "sL_StrLoss": "98368.97", "sL_NStrLoss": "12768.5", "sL_ContLoss": "3015.78", "geom_point": "0101000020E610000061718B3B563C5FC0DBE9201232D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.935183115999976, 49.682516387000121 ], [ -124.935334908999948, 49.680688195000059 ], [ -124.935505310999929, 49.679313490000062 ], [ -124.939572889999937, 49.679404496000117 ], [ -124.939546297999939, 49.679960107000078 ], [ -124.939503590999948, 49.680786395000034 ], [ -124.939450409999935, 49.681834703000085 ], [ -124.940430606999939, 49.681860506000078 ], [ -124.940939105, 49.681732292000099 ], [ -124.94379798599995, 49.681808614000069 ], [ -124.943846902999965, 49.680883410000028 ], [ -124.94388968, 49.680047297000044 ], [ -124.948763505999977, 49.680143809000093 ], [ -124.948798097999884, 49.679599988000092 ], [ -124.948275512999928, 49.679072299000026 ], [ -124.949372972999939, 49.678458683000073 ], [ -124.949430188999884, 49.678426706000074 ], [ -124.949975446999986, 49.678877463000077 ], [ -124.949772908999989, 49.681474927000139 ], [ -124.949787919999963, 49.682460957000103 ], [ -124.948595347999969, 49.682788876000103 ], [ -124.946498365999972, 49.682755834 ], [ -124.943752615000037, 49.682699590000084 ], [ -124.940906992999913, 49.682644999000033 ], [ -124.939994686999981, 49.682618100000106 ], [ -124.93800089399997, 49.68257438900006 ], [ -124.935183115999976, 49.682516387000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127683433", "BldgCostT": "84946895", "sL_LossRatio": "0.854095679762464", "sL_AssetLoss": "113768.05", "sL_BldgLoss": "97168.8", "sL_StrLoss": "81057.4", "sL_NStrLoss": "16111.4", "sL_ContLoss": "16599.25", "geom_point": "0101000020E6100000D1CDF6CF703C5FC0000A47F3F4D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.939450409999935, 49.681834703000085 ], [ -124.939503590999948, 49.680786395000034 ], [ -124.939546297999939, 49.679960107000078 ], [ -124.939572889999937, 49.679404496000117 ], [ -124.939589823999981, 49.679095203000053 ], [ -124.941362313999917, 49.679118712000097 ], [ -124.941737203999978, 49.679074132000061 ], [ -124.941991488999975, 49.679043909 ], [ -124.94393608199999, 49.679114899000105 ], [ -124.943964896999944, 49.678585301000034 ], [ -124.943985892999976, 49.678150193000107 ], [ -124.944245982999973, 49.677986302000079 ], [ -124.944608300999974, 49.677889899000043 ], [ -124.944630495999917, 49.677405316000048 ], [ -124.944742917000013, 49.677275903000073 ], [ -124.945150707, 49.677008183000062 ], [ -124.945205576000021, 49.676911609000108 ], [ -124.945212508999958, 49.67672998400009 ], [ -124.945239896999965, 49.676320902000015 ], [ -124.94593501599999, 49.676332101000121 ], [ -124.946183322999943, 49.67637679400007 ], [ -124.946420217999957, 49.676495205000052 ], [ -124.946980808999939, 49.67729758800008 ], [ -124.948281919999957, 49.676916127000027 ], [ -124.948415692999973, 49.676876890000131 ], [ -124.949430188999884, 49.678426706000074 ], [ -124.949372972999939, 49.678458683000073 ], [ -124.948275512999928, 49.679072299000026 ], [ -124.948798097999884, 49.679599988000092 ], [ -124.948763505999977, 49.680143809000093 ], [ -124.94388968, 49.680047297000044 ], [ -124.943846902999965, 49.680883410000028 ], [ -124.94379798599995, 49.681808614000069 ], [ -124.940939105, 49.681732292000099 ], [ -124.940430606999939, 49.681860506000078 ], [ -124.939450409999935, 49.681834703000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156109500", "BldgCostT": "101250000", "sL_LossRatio": "0.917937598931579", "sL_AssetLoss": "123696.6", "sL_BldgLoss": "113545.76", "sL_StrLoss": "99270.86", "sL_NStrLoss": "14274.9", "sL_ContLoss": "10150.84", "geom_point": "0101000020E61000004EC55B214B3C5FC0A1203660A9D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.935505310999929, 49.679313490000062 ], [ -124.935520706999938, 49.678526613000081 ], [ -124.935540783999926, 49.678139096000066 ], [ -124.935251092999962, 49.676830106000075 ], [ -124.935175902999973, 49.676489287000095 ], [ -124.935164623999952, 49.675783994000042 ], [ -124.936602317999942, 49.675964398000048 ], [ -124.936881897999939, 49.675970811000091 ], [ -124.937238109999981, 49.675961609000112 ], [ -124.938017004999949, 49.675882 ], [ -124.939810815999977, 49.675697900000124 ], [ -124.94017870499999, 49.675659211000088 ], [ -124.941451919999977, 49.675528597000081 ], [ -124.942701393999968, 49.675400405000126 ], [ -124.943069310999945, 49.675361691000091 ], [ -124.944142569999926, 49.675250638000122 ], [ -124.944609088999954, 49.67517777100003 ], [ -124.94479815199999, 49.675148234000041 ], [ -124.945292100999936, 49.675071105000065 ], [ -124.945369468999928, 49.675043157000083 ], [ -124.945597893999931, 49.674960585000086 ], [ -124.94591784, 49.674845012000013 ], [ -124.946475464999963, 49.674688505000056 ], [ -124.94702037399999, 49.674602013000012 ], [ -124.947152871999904, 49.674599900000061 ], [ -124.947585703999934, 49.674593075000118 ], [ -124.948147584999944, 49.674673146000039 ], [ -124.948627714999944, 49.674875691000047 ], [ -124.94971073899994, 49.675547291 ], [ -124.950050727999923, 49.675758919000053 ], [ -124.949989728999967, 49.678285831000046 ], [ -124.949975446999986, 49.678877463000077 ], [ -124.949430188999884, 49.678426706000074 ], [ -124.948415692999973, 49.676876890000131 ], [ -124.948281919999957, 49.676916127000027 ], [ -124.946980808999939, 49.67729758800008 ], [ -124.946420217999957, 49.676495205000052 ], [ -124.946183322999943, 49.67637679400007 ], [ -124.94593501599999, 49.676332101000121 ], [ -124.945239896999965, 49.676320902000015 ], [ -124.945212508999958, 49.67672998400009 ], [ -124.945205576000021, 49.676911609000108 ], [ -124.945150707, 49.677008183000062 ], [ -124.944742917000013, 49.677275903000073 ], [ -124.944630495999917, 49.677405316000048 ], [ -124.944608300999974, 49.677889899000043 ], [ -124.944245982999973, 49.677986302000079 ], [ -124.943985892999976, 49.678150193000107 ], [ -124.943964896999944, 49.678585301000034 ], [ -124.94393608199999, 49.679114899000105 ], [ -124.941991488999975, 49.679043909 ], [ -124.941737203999978, 49.679074132000061 ], [ -124.941362313999917, 49.679118712000097 ], [ -124.939589823999981, 49.679095203000053 ], [ -124.939572889999937, 49.679404496000117 ], [ -124.935505310999929, 49.679313490000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224113500", "BldgCostT": "146925000", "sL_LossRatio": "0.844352459344223", "sL_AssetLoss": "58507.06", "sL_BldgLoss": "49400.58", "sL_StrLoss": "34147.58", "sL_NStrLoss": "15253", "sL_ContLoss": "9106.48", "geom_point": "0101000020E610000062D520CC6D3C5FC0EFB9E92247D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.937637898999924, 49.675505911000059 ], [ -124.939226395999981, 49.675333308000077 ], [ -124.939856088999989, 49.67535469700006 ], [ -124.939885892999897, 49.675144493000055 ], [ -124.939807892999951, 49.6749206860001 ], [ -124.939771707999967, 49.674811507000058 ], [ -124.939802517999908, 49.674135304000067 ], [ -124.939821404999947, 49.673737003000021 ], [ -124.939880912999953, 49.67337868900011 ], [ -124.939880621999961, 49.672967362000058 ], [ -124.939880451999969, 49.672686154000068 ], [ -124.940925245999935, 49.672668642000104 ], [ -124.941287919999937, 49.672832604000064 ], [ -124.941622193999962, 49.67287111400006 ], [ -124.942790458999951, 49.672775852000051 ], [ -124.943245610999938, 49.672738735000081 ], [ -124.943252017999953, 49.672899468000097 ], [ -124.943667566999963, 49.672892492000109 ], [ -124.943656816, 49.672622810000071 ], [ -124.94407236, 49.672615832000069 ], [ -124.9440676, 49.672496435000021 ], [ -124.944623892999957, 49.672327002000088 ], [ -124.945671478999984, 49.672191702000056 ], [ -124.946129809999931, 49.672228787000094 ], [ -124.946774198999989, 49.672406813000059 ], [ -124.949994712999967, 49.673890797000134 ], [ -124.950223668999939, 49.674031969000055 ], [ -124.950177598999943, 49.674634313000055 ], [ -124.950050727999923, 49.675758919000053 ], [ -124.94971073899994, 49.675547291 ], [ -124.948627714999944, 49.674875691000047 ], [ -124.948147584999944, 49.674673146000039 ], [ -124.947585703999934, 49.674593075000118 ], [ -124.947152871999904, 49.674599900000061 ], [ -124.94702037399999, 49.674602013000012 ], [ -124.946475464999963, 49.674688505000056 ], [ -124.94591784, 49.674845012000013 ], [ -124.945597893999931, 49.674960585000086 ], [ -124.945369468999928, 49.675043157000083 ], [ -124.945292100999936, 49.675071105000065 ], [ -124.94479815199999, 49.675148234000041 ], [ -124.944609088999954, 49.67517777100003 ], [ -124.944142569999926, 49.675250638000122 ], [ -124.943069310999945, 49.675361691000091 ], [ -124.942701393999968, 49.675400405000126 ], [ -124.941451919999977, 49.675528597000081 ], [ -124.94017870499999, 49.675659211000088 ], [ -124.939810815999977, 49.675697900000124 ], [ -124.938017004999949, 49.675882 ], [ -124.937238109999981, 49.675961609000112 ], [ -124.936881897999939, 49.675970811000091 ], [ -124.936910707, 49.675506901000062 ], [ -124.937637898999924, 49.675505911000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "366960537", "BldgCostT": "235725052", "sL_LossRatio": "0.851957012396679", "sL_AssetLoss": "200511.76", "sL_BldgLoss": "170827.4", "sL_StrLoss": "130022.3", "sL_NStrLoss": "40805.1", "sL_ContLoss": "29684.36", "geom_point": "0101000020E6100000BAA2071DB83B5FC02961F1C441D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.932096823999942, 49.676666104000077 ], [ -124.927099017999979, 49.675136408000078 ], [ -124.927954910999986, 49.673891708000056 ], [ -124.92826560599994, 49.673458488000044 ], [ -124.927692108999949, 49.673281898000084 ], [ -124.927535011999936, 49.673187691000074 ], [ -124.927443780999937, 49.673063593000073 ], [ -124.927348605999896, 49.672749598000053 ], [ -124.926099923999942, 49.672366703000087 ], [ -124.926395374999956, 49.671704059000035 ], [ -124.926465321999927, 49.671547196000127 ], [ -124.926558785999987, 49.671280890000041 ], [ -124.926521315999963, 49.670875056000114 ], [ -124.927051515999949, 49.669612478000069 ], [ -124.927139672999928, 49.669479712000069 ], [ -124.927227497999965, 49.669522786000051 ], [ -124.926792209999974, 49.67041149300011 ], [ -124.928732111, 49.670784598000097 ], [ -124.928770711999931, 49.671026698000119 ], [ -124.929291593999949, 49.670909906000077 ], [ -124.929541708, 49.670924187000033 ], [ -124.930511302999889, 49.671258885000043 ], [ -124.930463087999982, 49.671448309000027 ], [ -124.930288413999932, 49.671567907000032 ], [ -124.928858792999947, 49.672194595000136 ], [ -124.928820112999944, 49.672285697000042 ], [ -124.928992910999966, 49.672443802000018 ], [ -124.930875391999948, 49.672745712000022 ], [ -124.931708405999942, 49.672794199000087 ], [ -124.932579092999916, 49.672690195000044 ], [ -124.93442916399998, 49.672208569000126 ], [ -124.934429792999964, 49.672237642000091 ], [ -124.934908903999911, 49.672229634000104 ], [ -124.934903003999977, 49.672080982000097 ], [ -124.936369992999971, 49.671665481000083 ], [ -124.937720047999917, 49.671642890000044 ], [ -124.937986794999944, 49.671727395000048 ], [ -124.938221767999892, 49.671884933000044 ], [ -124.938222538000019, 49.671904340000054 ], [ -124.938250026999967, 49.671903879000112 ], [ -124.939270010999962, 49.672587710000116 ], [ -124.939497483999929, 49.672595422000072 ], [ -124.939501344999911, 49.672692506000089 ], [ -124.939880451999969, 49.672686154000068 ], [ -124.939880621999961, 49.672967362000058 ], [ -124.939880912999953, 49.67337868900011 ], [ -124.939821404999947, 49.673737003000021 ], [ -124.939802517999908, 49.674135304000067 ], [ -124.939771707999967, 49.674811507000058 ], [ -124.939807892999951, 49.6749206860001 ], [ -124.939885892999897, 49.675144493000055 ], [ -124.939856088999989, 49.67535469700006 ], [ -124.939226395999981, 49.675333308000077 ], [ -124.937637898999924, 49.675505911000059 ], [ -124.936910707, 49.675506901000062 ], [ -124.936881897999939, 49.675970811000091 ], [ -124.936602317999942, 49.675964398000048 ], [ -124.935164623999952, 49.675783994000042 ], [ -124.935175902999973, 49.676489287000095 ], [ -124.935251092999962, 49.676830106000075 ], [ -124.932881295999962, 49.676766411000102 ], [ -124.932096823999942, 49.676666104000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187119061", "BldgCostT": "121038190", "sL_LossRatio": "0.976244928643667", "sL_AssetLoss": "126208.84", "sL_BldgLoss": "123210.74", "sL_StrLoss": "109924.54", "sL_NStrLoss": "13286.2", "sL_ContLoss": "2998.1", "geom_point": "0101000020E610000074777CFF8F3B5FC0010E99D904D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.928751620999961, 49.684762874000079 ], [ -124.928740360999953, 49.684478387000112 ], [ -124.928662958999922, 49.684477627000085 ], [ -124.92832462799997, 49.684483263000125 ], [ -124.928324274999966, 49.684474298000083 ], [ -124.927908187999932, 49.684470207000061 ], [ -124.927918064999957, 49.684719890000046 ], [ -124.927085954999981, 49.684676976000098 ], [ -124.927086537999955, 49.684662338000088 ], [ -124.92708834499993, 49.684613 ], [ -124.926830385999978, 49.683913304000043 ], [ -124.926940491999957, 49.683825329000051 ], [ -124.927012829999953, 49.683693809000061 ], [ -124.927027548999931, 49.683181214000143 ], [ -124.927048812999899, 49.682332298000041 ], [ -124.927033421999951, 49.682239969000065 ], [ -124.926945484999933, 49.681712407000106 ], [ -124.926847298999945, 49.681111412000071 ], [ -124.926796199999956, 49.68080949200003 ], [ -124.926792387999967, 49.680498294000067 ], [ -124.926826906999963, 49.67967369400003 ], [ -124.92687919799998, 49.678441814000095 ], [ -124.927044196999972, 49.675523499000086 ], [ -124.927057204999983, 49.675263685000097 ], [ -124.927099017999979, 49.675136408000078 ], [ -124.932096823999942, 49.676666104000077 ], [ -124.932881295999962, 49.676766411000102 ], [ -124.935251092999962, 49.676830106000075 ], [ -124.935540783999926, 49.678139096000066 ], [ -124.935520706999938, 49.678526613000081 ], [ -124.935505310999929, 49.679313490000062 ], [ -124.935334908999948, 49.680688195000059 ], [ -124.935183115999976, 49.682516387000121 ], [ -124.934949276999973, 49.682510648000054 ], [ -124.933125811999972, 49.682465690000072 ], [ -124.930321900999985, 49.682404897000019 ], [ -124.930293905, 49.683192598000083 ], [ -124.930250880999921, 49.684446201000085 ], [ -124.930236416999932, 49.684839423000085 ], [ -124.928751620999961, 49.684762874000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "270815980", "BldgCostT": "165715815", "sL_LossRatio": "0.688610172778846", "sL_AssetLoss": "233872.38", "sL_BldgLoss": "161046.9", "sL_StrLoss": "101542.4", "sL_NStrLoss": "59504.5", "sL_ContLoss": "72825.48", "geom_point": "0101000020E61000008205EF92153B5FC0A8DA0CA27BD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.920174796999973, 49.674906093000068 ], [ -124.920216313999958, 49.674141892000101 ], [ -124.920035308999928, 49.674182302000133 ], [ -124.916885491999935, 49.674132210000018 ], [ -124.916905813999932, 49.673445095000027 ], [ -124.917293490999938, 49.672980289000108 ], [ -124.918108959999984, 49.672006129000124 ], [ -124.918241185999989, 49.671848206 ], [ -124.918491495999973, 49.671857340000045 ], [ -124.918975160999963, 49.671874988000049 ], [ -124.920337591999981, 49.671924695000087 ], [ -124.921119697999984, 49.671944184000026 ], [ -124.921865978999961, 49.672012695000078 ], [ -124.923691898999891, 49.67257659600002 ], [ -124.923942704999931, 49.67265404900008 ], [ -124.924499215999958, 49.67282589200007 ], [ -124.925082285999963, 49.672055295000071 ], [ -124.926099923999942, 49.672366703000087 ], [ -124.927348605999896, 49.672749598000053 ], [ -124.927443780999937, 49.673063593000073 ], [ -124.927535011999936, 49.673187691000074 ], [ -124.927692108999949, 49.673281898000084 ], [ -124.92826560599994, 49.673458488000044 ], [ -124.927954910999986, 49.673891708000056 ], [ -124.927099017999979, 49.675136408000078 ], [ -124.927057204999983, 49.675263685000097 ], [ -124.927044196999972, 49.675523499000086 ], [ -124.92687919799998, 49.678441814000095 ], [ -124.926826906999963, 49.67967369400003 ], [ -124.926792387999967, 49.680498294000067 ], [ -124.925935388999932, 49.680479001000052 ], [ -124.924693193999985, 49.680105189000081 ], [ -124.920872002999928, 49.678955605000105 ], [ -124.91989538899999, 49.678720991000091 ], [ -124.919945000999945, 49.67790921300012 ], [ -124.919978197, 49.677379683000034 ], [ -124.920011473999978, 49.677069991000053 ], [ -124.920116616999962, 49.676027198000043 ], [ -124.920145091999942, 49.675462600000074 ], [ -124.920174796999973, 49.674906093000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127436417", "BldgCostT": "87151667", "sL_LossRatio": "0.984310443159923", "sL_AssetLoss": "97312.5", "sL_BldgLoss": "95785.71", "sL_StrLoss": "88089.11", "sL_NStrLoss": "7696.6", "sL_ContLoss": "1526.79", "geom_point": "0101000020E61000003F8E9380203B5FC0692E37186AD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.922426208999966, 49.686224005000071 ], [ -124.922427011999901, 49.685775999000043 ], [ -124.922242216999933, 49.685505197000097 ], [ -124.921677210999988, 49.685140704000013 ], [ -124.920956481999966, 49.68468019600008 ], [ -124.920753616999946, 49.684471296000041 ], [ -124.920675618999894, 49.684253700000077 ], [ -124.920712109999954, 49.683880792000075 ], [ -124.92092609299999, 49.68302468100007 ], [ -124.921033995999892, 49.682559805000082 ], [ -124.921035578999934, 49.682198194000101 ], [ -124.923832416, 49.68226100900003 ], [ -124.925113099999948, 49.682289795000052 ], [ -124.924993690999941, 49.681471791000014 ], [ -124.921224689999988, 49.680338098000107 ], [ -124.921110478999935, 49.680302697000101 ], [ -124.919799423999962, 49.680274504000117 ], [ -124.91989538899999, 49.678720991000091 ], [ -124.920872002999928, 49.678955605000105 ], [ -124.924693193999985, 49.680105189000081 ], [ -124.925935388999932, 49.680479001000052 ], [ -124.926792387999967, 49.680498294000067 ], [ -124.926796199999956, 49.68080949200003 ], [ -124.926847298999945, 49.681111412000071 ], [ -124.926945484999933, 49.681712407000106 ], [ -124.927033421999951, 49.682239969000065 ], [ -124.927048812999899, 49.682332298000041 ], [ -124.927027548999931, 49.683181214000143 ], [ -124.927012829999953, 49.683693809000061 ], [ -124.926940491999957, 49.683825329000051 ], [ -124.926830385999978, 49.683913304000043 ], [ -124.92708834499993, 49.684613 ], [ -124.927086537999955, 49.684662338000088 ], [ -124.927085954999981, 49.684676976000098 ], [ -124.926741014999962, 49.685847147000104 ], [ -124.92372534799992, 49.685801050000052 ], [ -124.923700567999958, 49.686589179000087 ], [ -124.922518817999929, 49.686587397000032 ], [ -124.922426208999966, 49.686224005000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120191084", "BldgCostT": "81658334", "sL_LossRatio": "0.98027351257267", "sL_AssetLoss": "98290.18", "sL_BldgLoss": "96351.26", "sL_StrLoss": "86546.46", "sL_NStrLoss": "9804.8", "sL_ContLoss": "1938.92", "geom_point": "0101000020E61000001176DD9DED3A5FC06008528CA0D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.918220005999899, 49.687464089000073 ], [ -124.918254909, 49.684981798000102 ], [ -124.918270352999969, 49.683911498000029 ], [ -124.918272595999923, 49.683755898000072 ], [ -124.9182842109999, 49.682969795000112 ], [ -124.91829689399998, 49.682137810000057 ], [ -124.919682803999962, 49.682168702000084 ], [ -124.919742301999946, 49.681227407000094 ], [ -124.919799423999962, 49.680274504000117 ], [ -124.921110478999935, 49.680302697000101 ], [ -124.921224689999988, 49.680338098000107 ], [ -124.924993690999941, 49.681471791000014 ], [ -124.925113099999948, 49.682289795000052 ], [ -124.923832416, 49.68226100900003 ], [ -124.921035578999934, 49.682198194000101 ], [ -124.921033995999892, 49.682559805000082 ], [ -124.92092609299999, 49.68302468100007 ], [ -124.920712109999954, 49.683880792000075 ], [ -124.920675618999894, 49.684253700000077 ], [ -124.920753616999946, 49.684471296000041 ], [ -124.920956481999966, 49.68468019600008 ], [ -124.921677210999988, 49.685140704000013 ], [ -124.922242216999933, 49.685505197000097 ], [ -124.922427011999901, 49.685775999000043 ], [ -124.922426208999966, 49.686224005000071 ], [ -124.922518817999929, 49.686587397000032 ], [ -124.923700567999958, 49.686589179000087 ], [ -124.924481713999953, 49.688062615000035 ], [ -124.924106553999948, 49.688053989000075 ], [ -124.922875810999955, 49.688025695000064 ], [ -124.922470073999961, 49.688020462000104 ], [ -124.922137220999943, 49.688016184000034 ], [ -124.921635424999963, 49.688009689000069 ], [ -124.921470811999981, 49.688007559000077 ], [ -124.918981007999918, 49.687975407000124 ], [ -124.916986896999916, 49.687935896000056 ], [ -124.916980212999974, 49.687456297000089 ], [ -124.918220005999899, 49.687464089000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116709729", "BldgCostT": "76689858", "sL_LossRatio": "0.944745478895471", "sL_AssetLoss": "110360.2", "sL_BldgLoss": "104262.3", "sL_StrLoss": "88831.1", "sL_NStrLoss": "15431.2", "sL_ContLoss": "6097.9", "geom_point": "0101000020E6100000B5CE424C933A5FC000D379BF17D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.911441791999934, 49.682047100000077 ], [ -124.91034081, 49.682032485000015 ], [ -124.908602644, 49.682015991000114 ], [ -124.908666560999933, 49.680549472000052 ], [ -124.908684309999941, 49.680137134000077 ], [ -124.908697518999986, 49.679830204000105 ], [ -124.910586003999967, 49.679869709000094 ], [ -124.91175038199998, 49.679894892000036 ], [ -124.914581798999947, 49.679954598000045 ], [ -124.915122680999957, 49.679965900000063 ], [ -124.917044901999972, 49.680006086000041 ], [ -124.916790296, 49.678640692000037 ], [ -124.916817504, 49.677312290000025 ], [ -124.91841379399996, 49.677346193000098 ], [ -124.919978197, 49.677379683000034 ], [ -124.919945000999945, 49.67790921300012 ], [ -124.91989538899999, 49.678720991000091 ], [ -124.919799423999962, 49.680274504000117 ], [ -124.919742301999946, 49.681227407000094 ], [ -124.919682803999962, 49.682168702000084 ], [ -124.91829689399998, 49.682137810000057 ], [ -124.916982682999958, 49.68211669600003 ], [ -124.915628179999956, 49.682102300000054 ], [ -124.915038312999954, 49.682094602000106 ], [ -124.914174107999912, 49.682083299000091 ], [ -124.911441791999934, 49.682047100000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119214833", "BldgCostT": "81953333", "sL_LossRatio": "0.98248731100499", "sL_AssetLoss": "111947.4", "sL_BldgLoss": "109986.9", "sL_StrLoss": "98554.9", "sL_NStrLoss": "11432", "sL_ContLoss": "1960.5", "geom_point": "0101000020E61000009B374E0A733A5FC09872B667B3D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.90972359200002, 49.687496459000052 ], [ -124.909724121999915, 49.687308838000071 ], [ -124.909728972999957, 49.685634463000063 ], [ -124.909781106999986, 49.684019396000096 ], [ -124.909774930999944, 49.683696391000097 ], [ -124.911050328999934, 49.683717248000072 ], [ -124.912264883999967, 49.683734794000102 ], [ -124.913444794999947, 49.683752810000016 ], [ -124.91355970099994, 49.68375399000017 ], [ -124.91411020699995, 49.683441004000059 ], [ -124.914136717999924, 49.682902494000089 ], [ -124.914174107999912, 49.682083299000091 ], [ -124.915038312999954, 49.682094602000106 ], [ -124.915628179999956, 49.682102300000054 ], [ -124.916982682999958, 49.68211669600003 ], [ -124.916977388999953, 49.683204246000045 ], [ -124.916971107999984, 49.684492300000045 ], [ -124.91601919499999, 49.684498090000098 ], [ -124.915104216999978, 49.685228405000046 ], [ -124.915692353999987, 49.685560208000062 ], [ -124.915719509999974, 49.685575498000055 ], [ -124.915724205999979, 49.686959884000039 ], [ -124.915727289999964, 49.687416896000087 ], [ -124.913891047999968, 49.687392064000043 ], [ -124.913709287999936, 49.687389609000029 ], [ -124.913683707999951, 49.687884993000068 ], [ -124.912905182999936, 49.687801992000168 ], [ -124.911402949999939, 49.68764180200008 ], [ -124.910100290999964, 49.687502846000037 ], [ -124.90972359200002, 49.687496459000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102313334", "BldgCostT": "70033334", "sL_LossRatio": "0.980832592028082", "sL_AssetLoss": "100880.62", "sL_BldgLoss": "98947", "sL_StrLoss": "89905", "sL_NStrLoss": "9042", "sL_ContLoss": "1933.62", "geom_point": "0101000020E610000028B3A450543A5FC0A0A28F9EC7D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.91073370299992, 49.675099108000047 ], [ -124.91074457900001, 49.674813989 ], [ -124.911903005999989, 49.674852601000055 ], [ -124.911841789999954, 49.676852599000021 ], [ -124.91252400399999, 49.676882801 ], [ -124.91287029899992, 49.676998690000104 ], [ -124.913523100999939, 49.677215714000049 ], [ -124.914120897999965, 49.677414107000054 ], [ -124.914328590999943, 49.677596095000105 ], [ -124.914561313999968, 49.678006810000063 ], [ -124.91466561299994, 49.678459496000144 ], [ -124.914616395999971, 49.679192996000047 ], [ -124.914581798999947, 49.679954598000045 ], [ -124.91175038199998, 49.679894892000036 ], [ -124.910586003999967, 49.679869709000094 ], [ -124.908697518999986, 49.679830204000105 ], [ -124.90876610299992, 49.678338494000123 ], [ -124.908878598999976, 49.675818204000066 ], [ -124.910710710999965, 49.675836490000108 ], [ -124.91073370299992, 49.675099108000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321327102", "BldgCostT": "200900088", "sL_LossRatio": "0.770404968425386", "sL_AssetLoss": "190246.19", "sL_BldgLoss": "146566.61", "sL_StrLoss": "109402.51", "sL_NStrLoss": "37164.1", "sL_ContLoss": "43679.58", "geom_point": "0101000020E6100000003A696D9C3A5FC0A8A570D2EED54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.908966800999949, 49.673851687000088 ], [ -124.90908609499995, 49.671158699000046 ], [ -124.909105339999883, 49.670713479000071 ], [ -124.90912611399996, 49.670232595000122 ], [ -124.90922560199995, 49.669436149000042 ], [ -124.909620794999938, 49.669391694000112 ], [ -124.912372117999936, 49.66851010400007 ], [ -124.913118288999954, 49.668480192000054 ], [ -124.914259198, 49.668946010000063 ], [ -124.914895993999963, 49.668936011000035 ], [ -124.915205614999948, 49.669021393000079 ], [ -124.91545931099995, 49.669142490000112 ], [ -124.915878081999949, 49.669549795000144 ], [ -124.9165627, 49.669726400000073 ], [ -124.917616392999946, 49.669377505000021 ], [ -124.917990685999925, 49.669343302000094 ], [ -124.918518411999955, 49.669407395000043 ], [ -124.919059407999939, 49.669766290000041 ], [ -124.919440496999925, 49.669913013000048 ], [ -124.920384505999948, 49.669618187000069 ], [ -124.921179585999965, 49.669722094000115 ], [ -124.921756293000016, 49.669595387000072 ], [ -124.922157603999949, 49.669598195000084 ], [ -124.922382881999937, 49.669685092000122 ], [ -124.923323697999976, 49.66961528800006 ], [ -124.923815911999966, 49.669823307000073 ], [ -124.923879195999987, 49.670739010000126 ], [ -124.924010792999951, 49.670908497000063 ], [ -124.924505097999955, 49.671133488000066 ], [ -124.925992614000023, 49.671576494000078 ], [ -124.926199703999956, 49.671555102000085 ], [ -124.926281694999943, 49.670824498000059 ], [ -124.926847501999958, 49.669744895000058 ], [ -124.926906101999947, 49.669438689000096 ], [ -124.927015484999956, 49.669418806000053 ], [ -124.927139672999928, 49.669479712000069 ], [ -124.927051515999949, 49.669612478000069 ], [ -124.926521315999963, 49.670875056000114 ], [ -124.926558785999987, 49.671280890000041 ], [ -124.926465321999927, 49.671547196000127 ], [ -124.926395374999956, 49.671704059000035 ], [ -124.926099923999942, 49.672366703000087 ], [ -124.925082285999963, 49.672055295000071 ], [ -124.924499215999958, 49.67282589200007 ], [ -124.923942704999931, 49.67265404900008 ], [ -124.923691898999891, 49.67257659600002 ], [ -124.921865978999961, 49.672012695000078 ], [ -124.921119697999984, 49.671944184000026 ], [ -124.920337591999981, 49.671924695000087 ], [ -124.918975160999963, 49.671874988000049 ], [ -124.918491495999973, 49.671857340000045 ], [ -124.918241185999989, 49.671848206 ], [ -124.918108959999984, 49.672006129000124 ], [ -124.917293490999938, 49.672980289000108 ], [ -124.916905813999932, 49.673445095000027 ], [ -124.916885491999935, 49.674132210000018 ], [ -124.915262992999885, 49.674099010000134 ], [ -124.913511708999962, 49.674063504000074 ], [ -124.912670007999949, 49.674046093000072 ], [ -124.91233657399999, 49.674028600000035 ], [ -124.910457621999981, 49.673929972000153 ], [ -124.908966800999949, 49.673851687000088 ] ], [ [ -124.911606411999955, 49.671807197000135 ], [ -124.911598633000025, 49.671608777000095 ], [ -124.910943405999973, 49.671602231000122 ], [ -124.910942167999949, 49.671654489000069 ], [ -124.91112096199997, 49.671656276000078 ], [ -124.911116358999948, 49.671850617000104 ], [ -124.91119232699999, 49.671851376000063 ], [ -124.911190864999952, 49.671814057000141 ], [ -124.911606411999955, 49.671807197000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55382833", "BldgCostT": "37723333", "sL_LossRatio": "0.987106384766089", "sL_AssetLoss": "37378.19", "sL_BldgLoss": "36896.25", "sL_StrLoss": "34005.05", "sL_NStrLoss": "2891.2", "sL_ContLoss": "481.94", "geom_point": "0101000020E61000000747E248143C5FC0D0E4CDA72FD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.938509896999932, 49.644036595000038 ], [ -124.936302225999952, 49.643139800000064 ], [ -124.934426145999964, 49.642618104000057 ], [ -124.933921592, 49.642477810000074 ], [ -124.933517515999966, 49.642294794000037 ], [ -124.932854474999914, 49.642064248000032 ], [ -124.93248348899999, 49.641935248000095 ], [ -124.932289653999959, 49.641867839000035 ], [ -124.932269986999984, 49.6418610260001 ], [ -124.931941437999967, 49.641746783000066 ], [ -124.931382487999912, 49.641552405000049 ], [ -124.93080901799999, 49.641274202000034 ], [ -124.930648141999939, 49.641156149000054 ], [ -124.930281013999917, 49.640886707000092 ], [ -124.929880236999921, 49.640491199000074 ], [ -124.933475163999901, 49.640526464000047 ], [ -124.933498540999935, 49.640479864000078 ], [ -124.933645642, 49.640309865000049 ], [ -124.933972088999937, 49.640401524000048 ], [ -124.934062422999958, 49.640400014000136 ], [ -124.93405173599993, 49.640130330000083 ], [ -124.93555191199999, 49.640105252000076 ], [ -124.935714441999963, 49.639909565000046 ], [ -124.935894740999942, 49.639940965000029 ], [ -124.936344261000016, 49.640091998000088 ], [ -124.936543364999949, 49.640088668000026 ], [ -124.936546188999927, 49.640159843000035 ], [ -124.936967350999936, 49.640301346000108 ], [ -124.936935914999964, 49.639509112000049 ], [ -124.937929762999943, 49.640176543000116 ], [ -124.940375617999919, 49.64116079700009 ], [ -124.942279308999943, 49.641819564000023 ], [ -124.94198680699995, 49.639788499000069 ], [ -124.942824930999961, 49.639792013000054 ], [ -124.942564535999949, 49.64029943400007 ], [ -124.942918499999934, 49.640887049000071 ], [ -124.944023407999964, 49.641446092000074 ], [ -124.945160544999965, 49.641972819000024 ], [ -124.945429701999956, 49.642154877000053 ], [ -124.945690660999986, 49.642356600000035 ], [ -124.945887869999936, 49.642710671000025 ], [ -124.945883428999977, 49.643000079000011 ], [ -124.945845024, 49.643286213000124 ], [ -124.945688550999961, 49.643443275000081 ], [ -124.945532108999927, 49.643600326000097 ], [ -124.944965824999912, 49.643806477000041 ], [ -124.94437935399999, 49.643616198000068 ], [ -124.944448197999975, 49.643660691000093 ], [ -124.944485005, 49.643698906000083 ], [ -124.944540104999959, 49.643756105000136 ], [ -124.944588862, 49.64389400400006 ], [ -124.944592076999982, 49.643903195000057 ], [ -124.944524218999931, 49.643967302000121 ], [ -124.944256395999943, 49.644054692000068 ], [ -124.943573110000017, 49.644155991000041 ], [ -124.943122199999934, 49.644142607000042 ], [ -124.942802420999925, 49.644085508000046 ], [ -124.94127279599995, 49.643609204000072 ], [ -124.940365810999978, 49.644707803000095 ], [ -124.938509896999932, 49.644036595000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88458000", "BldgCostT": "60270000", "sL_LossRatio": "0.988087207840849", "sL_AssetLoss": "63331.92", "sL_BldgLoss": "62577.46", "sL_StrLoss": "57726.16", "sL_NStrLoss": "4851.3", "sL_ContLoss": "754.46", "geom_point": "0101000020E6100000D9DE7E2B1F3B5FC00F04F14FE3D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.928702265999959, 49.638084567000135 ], [ -124.928702821999977, 49.638060685000028 ], [ -124.928456636999925, 49.638064787000083 ], [ -124.928364401999914, 49.637903610000123 ], [ -124.926937883999969, 49.635870006000076 ], [ -124.926602799999927, 49.635522986000076 ], [ -124.926312211999957, 49.635286291000071 ], [ -124.926096632999972, 49.635160807000027 ], [ -124.925615809999925, 49.634880889000073 ], [ -124.923752994999987, 49.633881889000087 ], [ -124.92269391799999, 49.633429701000061 ], [ -124.92249365, 49.633328256000091 ], [ -124.921861008999926, 49.63300768400007 ], [ -124.920741188999926, 49.632313793000037 ], [ -124.919770206999956, 49.631410803000051 ], [ -124.919399214999956, 49.630886296000064 ], [ -124.91893677799996, 49.630069296000087 ], [ -124.91822660299999, 49.629086207000107 ], [ -124.917900694999929, 49.62882120900008 ], [ -124.91729468399997, 49.62852279600007 ], [ -124.916254035999927, 49.628106436000088 ], [ -124.91528527899996, 49.627718833000067 ], [ -124.914965789999897, 49.627590998000102 ], [ -124.914324702999949, 49.627203212 ], [ -124.913638400999929, 49.626616091000066 ], [ -124.913409817999977, 49.626217905000075 ], [ -124.918492405999956, 49.625811780000085 ], [ -124.91883276499999, 49.625815161000077 ], [ -124.918821335999965, 49.626301691000052 ], [ -124.920879416999981, 49.626322111000015 ], [ -124.92086688099999, 49.626856750000087 ], [ -124.921478027999925, 49.626846605000019 ], [ -124.921509861999965, 49.627655666000088 ], [ -124.921925029999898, 49.627648773000082 ], [ -124.921935644999962, 49.627918459000099 ], [ -124.92235081599992, 49.627911564000037 ], [ -124.922425134, 49.629799372 ], [ -124.922840320999967, 49.629792474000048 ], [ -124.922861559999944, 49.630331848 ], [ -124.923276750999975, 49.630324949000055 ], [ -124.92329799599996, 49.630864322000036 ], [ -124.92371319199998, 49.630857423000045 ], [ -124.923714664000016, 49.630894745000091 ], [ -124.924966838999978, 49.630907116000039 ], [ -124.92495754399998, 49.631304998000061 ], [ -124.925757417999975, 49.631312893000029 ], [ -124.925627885999972, 49.632436702000049 ], [ -124.925968436999966, 49.632673360000048 ], [ -124.926339667999926, 49.632876868000054 ], [ -124.930911211999955, 49.63538254900007 ], [ -124.934347691999946, 49.63711242100009 ], [ -124.934370824999945, 49.637696229000028 ], [ -124.93424708399999, 49.637698297000071 ], [ -124.93423687799995, 49.638138873000081 ], [ -124.928702265999959, 49.638084567000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283334", "BldgCostT": "4333334", "sL_LossRatio": "0.986646571881337", "sL_AssetLoss": "4511.95", "sL_BldgLoss": "4451.7", "sL_StrLoss": "4099", "sL_NStrLoss": "352.7", "sL_ContLoss": "60.25", "geom_point": "0101000020E61000004EA95CF2893B5FC09FCFDB3326D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.934347691999946, 49.63711242100009 ], [ -124.930911211999955, 49.63538254900007 ], [ -124.926339667999926, 49.632876868000054 ], [ -124.925968436999966, 49.632673360000048 ], [ -124.925627885999972, 49.632436702000049 ], [ -124.925757417999975, 49.631312893000029 ], [ -124.928136142999946, 49.6313363350001 ], [ -124.928126516999967, 49.631749663000058 ], [ -124.928823141999928, 49.631756519000056 ], [ -124.928781481000016, 49.63354627000006 ], [ -124.933012891999965, 49.633587816000038 ], [ -124.932991901999955, 49.634493101000132 ], [ -124.933115744999938, 49.634494315000062 ], [ -124.933114927999924, 49.634529481000065 ], [ -124.934320200999963, 49.634541284000072 ], [ -124.934265841999903, 49.63688839400006 ], [ -124.934338765999954, 49.636887175000069 ], [ -124.934347691999946, 49.63711242100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.981828955164922", "sL_AssetLoss": "506.3", "sL_BldgLoss": "497.1", "sL_StrLoss": "445", "sL_NStrLoss": "52.1", "sL_ContLoss": "9.2", "geom_point": "0101000020E6100000D5B8505C42385FC0CAB515B9AFC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.878442329000023, 49.54389528100009 ], [ -124.87965133599999, 49.543875642000074 ], [ -124.879692734999978, 49.5449544330001 ], [ -124.879546115000011, 49.544956815000077 ], [ -124.878449301999964, 49.54497463100008 ], [ -124.878407928999977, 49.543895841000044 ], [ -124.878442329000023, 49.54389528100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33999416", "BldgCostT": "22766666", "sL_LossRatio": "0.903109412957532", "sL_AssetLoss": "23513.12", "sL_BldgLoss": "21234.92", "sL_StrLoss": "18649.12", "sL_NStrLoss": "2585.8", "sL_ContLoss": "2278.2", "geom_point": "0101000020E610000030C0BA01113A5FC0E189EE9382CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.913296795999912, 49.625846198000069 ], [ -124.913231214999939, 49.625284192000059 ], [ -124.913325075999978, 49.623588121000047 ], [ -124.913332610999987, 49.623452603000068 ], [ -124.913335638999968, 49.621331362000056 ], [ -124.912442002999924, 49.62132780500005 ], [ -124.912265349999984, 49.62140560800006 ], [ -124.912246295, 49.62141399300009 ], [ -124.912213833999928, 49.62143759300006 ], [ -124.909798217999978, 49.623194196000064 ], [ -124.909284096999954, 49.622937204000088 ], [ -124.909157877999945, 49.622820743000055 ], [ -124.909146, 49.622809790000048 ], [ -124.908717614999929, 49.621798894000115 ], [ -124.909612898999967, 49.621614406000056 ], [ -124.909823194999916, 49.6214996100001 ], [ -124.910096777999954, 49.621304583000061 ], [ -124.91063232, 49.620922906000075 ], [ -124.912035691999975, 49.6199644000001 ], [ -124.911825176000022, 49.619386589000044 ], [ -124.911690000999926, 49.619197197000041 ], [ -124.911399023999977, 49.618923496000015 ], [ -124.908561087999942, 49.616961799000094 ], [ -124.907675193999978, 49.616753183000057 ], [ -124.90695420599998, 49.61664788500012 ], [ -124.906997073999932, 49.61630019300005 ], [ -124.906965503999984, 49.616172096000128 ], [ -124.906902615999911, 49.616081501000082 ], [ -124.905295173999917, 49.614686194000129 ], [ -124.905152209000036, 49.614476010000068 ], [ -124.904907914999967, 49.613815995000017 ], [ -124.904679834999968, 49.613517694000038 ], [ -124.904680075, 49.613517605000077 ], [ -124.905843749999974, 49.613023795000082 ], [ -124.904279285999948, 49.611455286000066 ], [ -124.90365151499995, 49.610641460000075 ], [ -124.903588303, 49.610559504000051 ], [ -124.903509857999936, 49.610485965000052 ], [ -124.903094498999934, 49.610096588000026 ], [ -124.902623249999976, 49.609702767000016 ], [ -124.902319494999958, 49.609448879000112 ], [ -124.901026492999947, 49.608368195000075 ], [ -124.900593484999959, 49.607848300000065 ], [ -124.900527089999969, 49.607619115000062 ], [ -124.900444771000011, 49.607325497000012 ], [ -124.900353812999967, 49.607001098000069 ], [ -124.900293646999941, 49.606831855000046 ], [ -124.900124408999915, 49.606355593000053 ], [ -124.899827687999974, 49.605748002000013 ], [ -124.899694804999939, 49.60557401100013 ], [ -124.898433071999975, 49.603921994000075 ], [ -124.897582809999946, 49.602756411 ], [ -124.896739416999978, 49.601596298000096 ], [ -124.896958073999897, 49.601530189000087 ], [ -124.89821469499995, 49.601779494000056 ], [ -124.8983411899999, 49.601817317000041 ], [ -124.899628553999932, 49.602202235000036 ], [ -124.900013236999882, 49.602317242000048 ], [ -124.900861998999943, 49.602570995000107 ], [ -124.902681899999962, 49.603033814000099 ], [ -124.902826465999937, 49.60305895800014 ], [ -124.902777891999975, 49.605097586000063 ], [ -124.903989071999959, 49.605109792000071 ], [ -124.903928556, 49.607652158000093 ], [ -124.904002027, 49.607652898000069 ], [ -124.903967807999891, 49.609090430000094 ], [ -124.904351400999971, 49.609094292000101 ], [ -124.904337224999935, 49.609689962000061 ], [ -124.906373260999928, 49.609710442000086 ], [ -124.906365925999935, 49.610019238000085 ], [ -124.906475577000023, 49.610020340000112 ], [ -124.90646818399992, 49.610331609000099 ], [ -124.906689686, 49.61033383500007 ], [ -124.90668205499999, 49.610655219000073 ], [ -124.907319383999919, 49.610661619000048 ], [ -124.907310775999989, 49.611024298000075 ], [ -124.907323003999977, 49.611024421000117 ], [ -124.907315354999966, 49.611346731000026 ], [ -124.907890802999972, 49.611352507000063 ], [ -124.907873995000017, 49.612061086000018 ], [ -124.9082142339999, 49.612064500000081 ], [ -124.908205734999953, 49.612422878000068 ], [ -124.90879483399999, 49.612428786000116 ], [ -124.908785225999964, 49.612834128000038 ], [ -124.908910552999913, 49.61283538500011 ], [ -124.908898478999944, 49.613344911000063 ], [ -124.909343767999985, 49.613349374000109 ], [ -124.909336571999972, 49.613653128000109 ], [ -124.90952048, 49.613654971000123 ], [ -124.909514580999939, 49.61390402200005 ], [ -124.909857984000013, 49.613907463000032 ], [ -124.909850272999947, 49.614233087000059 ], [ -124.910475480999978, 49.614239347000058 ], [ -124.910447829999924, 49.615407671000057 ], [ -124.912180986999942, 49.615425007000042 ], [ -124.912166262999975, 49.616048111000076 ], [ -124.912844897999889, 49.616054891000012 ], [ -124.912834966999966, 49.61647546600009 ], [ -124.913866685999963, 49.616485766000032 ], [ -124.913858980000015, 49.616812334000052 ], [ -124.914422185, 49.616817952000076 ], [ -124.914412323999983, 49.617236101000088 ], [ -124.914767697999963, 49.617239645000048 ], [ -124.91468287799999, 49.620837309000123 ], [ -124.914533968999976, 49.620835823000064 ], [ -124.914486388999975, 49.622853407000015 ], [ -124.913519922999981, 49.622843766000045 ], [ -124.913485483, 49.624302753000116 ], [ -124.91488982499996, 49.624316759000138 ], [ -124.914876422999939, 49.624885227000071 ], [ -124.915150049999966, 49.624887954000044 ], [ -124.915139364999959, 49.62534128900004 ], [ -124.91839385499999, 49.625373671000069 ], [ -124.918383584999972, 49.625810699000098 ], [ -124.918492405999956, 49.625811780000085 ], [ -124.913409817999977, 49.626217905000075 ], [ -124.913296795999912, 49.625846198000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.982383419689119", "sL_AssetLoss": "579", "sL_BldgLoss": "568.8", "sL_StrLoss": "504", "sL_NStrLoss": "64.8", "sL_ContLoss": "10.2", "geom_point": "0101000020E610000036E7E099D03E5FC07E7EAD8538CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.980843286999985, 49.595081058000119 ], [ -124.982087920999959, 49.595059743000057 ], [ -124.982120721999962, 49.595868780000096 ], [ -124.980876068999962, 49.595890095000101 ], [ -124.980843286999985, 49.595081058000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.981142388630773", "sL_AssetLoss": "1097.7", "sL_BldgLoss": "1077", "sL_StrLoss": "957", "sL_NStrLoss": "120", "sL_ContLoss": "20.7", "geom_point": "0101000020E6100000834E6B47EF3E5FC082A987E43BCC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.982491861999947, 49.594782957000135 ], [ -124.984151359999956, 49.594754512000101 ], [ -124.98421703199989, 49.596372583000054 ], [ -124.982557477999961, 49.596401030000081 ], [ -124.982491861999947, 49.594782957000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.947248419525339", "sL_AssetLoss": "964.9", "sL_BldgLoss": "914", "sL_StrLoss": "787", "sL_NStrLoss": "127", "sL_ContLoss": "50.9", "geom_point": "0101000020E610000088C87E5036305FC0A99B0FF811B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.75252041, 49.437655614000036 ], [ -124.754334660000026, 49.437628099000101 ], [ -124.754363534999982, 49.438437263 ], [ -124.753827499999986, 49.43844539600007 ], [ -124.752295490999984, 49.438468626 ], [ -124.752266652999964, 49.437659461000067 ], [ -124.75252041, 49.437655614000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.967937450754591", "sL_AssetLoss": "1649.9", "sL_BldgLoss": "1597", "sL_StrLoss": "1340", "sL_NStrLoss": "257", "sL_ContLoss": "52.9", "geom_point": "0101000020E61000006907B7103F335FC0E9F92E0068BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.799632602999949, 49.463369700000051 ], [ -124.799173025999949, 49.462803815000044 ], [ -124.800851772999977, 49.462822390000021 ], [ -124.800844823, 49.463090170000036 ], [ -124.801202127999915, 49.463084606000038 ], [ -124.801212104999962, 49.463356702000063 ], [ -124.801517079999954, 49.463360073000047 ], [ -124.801511762999922, 49.463565049000103 ], [ -124.801433020999951, 49.466600069000052 ], [ -124.801431860999955, 49.4665978150001 ], [ -124.800704995999965, 49.465185687000059 ], [ -124.800160419999926, 49.464176401000081 ], [ -124.799993928999967, 49.463921989000077 ], [ -124.79979492399994, 49.463617839000065 ], [ -124.799658774999926, 49.463409738000081 ], [ -124.799632602999949, 49.463369700000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69326833", "BldgCostT": "46843333", "sL_LossRatio": "0.979314236408282", "sL_AssetLoss": "51410.72", "sL_BldgLoss": "50347.25", "sL_StrLoss": "45331.75", "sL_NStrLoss": "5015.5", "sL_ContLoss": "1063.47", "geom_point": "0101000020E61000001A5D7381EA3E5FC0403E959102D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.983371247999941, 49.625473663000065 ], [ -124.983383822999926, 49.624904324000049 ], [ -124.985527981999951, 49.624924324000077 ], [ -124.98554759299995, 49.62403457900006 ], [ -124.982344789999928, 49.624004687000088 ], [ -124.982409589000028, 49.62107371200004 ], [ -124.982161062999978, 49.621071389000107 ], [ -124.982161158999929, 49.621067031000067 ], [ -124.981341930999974, 49.62105936800004 ], [ -124.981421541999964, 49.617461656000067 ], [ -124.98306652399999, 49.617477036000018 ], [ -124.983069984999958, 49.617320396000082 ], [ -124.984041702999889, 49.617329470000058 ], [ -124.984047259999926, 49.61707762000006 ], [ -124.984564025999958, 49.617082443000086 ], [ -124.984570858000012, 49.616772732000086 ], [ -124.990102972999978, 49.616824200000032 ], [ -124.990088687999929, 49.617475308000124 ], [ -124.994247509999965, 49.617513814000056 ], [ -124.994264004999962, 49.619014466000131 ], [ -124.994273193999959, 49.619888540000076 ], [ -124.994244979, 49.625180697000118 ], [ -124.99425212099996, 49.625387291000038 ], [ -124.994982396999987, 49.625361184000063 ], [ -124.995301717999922, 49.62556059800005 ], [ -124.994701461999966, 49.625713607000151 ], [ -124.993838246999971, 49.625933672000023 ], [ -124.992372892999967, 49.626307208000121 ], [ -124.992133781999954, 49.626358991000075 ], [ -124.991358814999927, 49.626493005000079 ], [ -124.988929295999981, 49.626868995000066 ], [ -124.98795540799992, 49.627111903000106 ], [ -124.98591731799999, 49.627801802000121 ], [ -124.985574589999928, 49.627931465000074 ], [ -124.98427899699999, 49.628421562000064 ], [ -124.983161011000036, 49.628844468000111 ], [ -124.981256283999983, 49.629564921000124 ], [ -124.980238834999938, 49.629949765000049 ], [ -124.97994816399995, 49.630059681000127 ], [ -124.978006095999916, 49.630794175000077 ], [ -124.976977702999932, 49.631183068000034 ], [ -124.976344625999957, 49.631422488000084 ], [ -124.97518950599999, 49.631859283000104 ], [ -124.972955069999927, 49.63283838600006 ], [ -124.97125010299996, 49.633585388000093 ], [ -124.968996879999978, 49.634713706000049 ], [ -124.968192815999885, 49.635025502000097 ], [ -124.965745365999922, 49.635550094000067 ], [ -124.964990694999969, 49.635756090000022 ], [ -124.963195883999958, 49.636447116000085 ], [ -124.963265820999965, 49.633343042000092 ], [ -124.964040895999972, 49.633350419000081 ], [ -124.964045500999987, 49.633145861000067 ], [ -124.965063615999966, 49.633155543000022 ], [ -124.965067571999953, 49.632979686000105 ], [ -124.966859912999965, 49.632996707000061 ], [ -124.96687714399998, 49.632229229000103 ], [ -124.967734288999964, 49.632237359000058 ], [ -124.967746139999988, 49.631709050000062 ], [ -124.968764168999925, 49.631718697000053 ], [ -124.968773523999971, 49.631301228000034 ], [ -124.968776329999955, 49.631175974000094 ], [ -124.969593553000024, 49.631183711000077 ], [ -124.969603020999898, 49.630760794 ], [ -124.972016715999956, 49.630783609000034 ], [ -124.972037479999955, 49.629854053000017 ], [ -124.972500597999954, 49.629858424000069 ], [ -124.97251028699999, 49.629424463000134 ], [ -124.974994985999956, 49.629447883000097 ], [ -124.975013735999937, 49.628606024000142 ], [ -124.975647667999937, 49.628611990000095 ], [ -124.975655229, 49.628272240000065 ], [ -124.976733482999975, 49.628282378000101 ], [ -124.976742610999949, 49.627871865000024 ], [ -124.979187919999944, 49.627894820000073 ], [ -124.979401384999946, 49.627896821000036 ], [ -124.979416633999932, 49.627209137000087 ], [ -124.97942386299999, 49.62688313000006 ], [ -124.979512840999917, 49.626883964000115 ], [ -124.981504949999987, 49.626902618 ], [ -124.981519617999979, 49.626239780000098 ], [ -124.981991979, 49.626244198000073 ], [ -124.981999618999907, 49.625898792000079 ], [ -124.982177054, 49.625900450000131 ], [ -124.982186737999939, 49.625462596000027 ], [ -124.983371247999941, 49.625473663000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.975552421250587", "sL_AssetLoss": "3190.5", "sL_BldgLoss": "3112.5", "sL_StrLoss": "2739", "sL_NStrLoss": "373.5", "sL_ContLoss": "78", "geom_point": "0101000020E61000001B99AA281C375FC0D8B3AD872BC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.859838008999972, 49.524492329000061 ], [ -124.859827901999964, 49.524225993000115 ], [ -124.859525901, 49.524230848000045 ], [ -124.858261732999935, 49.523171701000052 ], [ -124.860615564999975, 49.523133861000133 ], [ -124.860636038999971, 49.52367326300007 ], [ -124.862707550999943, 49.523639922000058 ], [ -124.862766311999962, 49.525186081000101 ], [ -124.862810050999983, 49.526336932000099 ], [ -124.862456656999939, 49.526342623000112 ], [ -124.862059415999951, 49.526349019000072 ], [ -124.861981401999969, 49.526350275000027 ], [ -124.861991648999947, 49.526619976000077 ], [ -124.861609694999913, 49.526626124000096 ], [ -124.860368697999974, 49.526069584000048 ], [ -124.859268115999939, 49.525297805999983 ], [ -124.86074468899993, 49.525250669000044 ], [ -124.860199988999952, 49.524795589000128 ], [ -124.859838008999972, 49.524492329000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.988671893228802", "sL_AssetLoss": "1714.32", "sL_BldgLoss": "1694.9", "sL_StrLoss": "1578", "sL_NStrLoss": "116.9", "sL_ContLoss": "19.42", "geom_point": "0101000020E61000002BF54D160E3E5FC06BA97290C6CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.969969479, 49.593107772000089 ], [ -124.96995861299996, 49.592838091000026 ], [ -124.969543752, 49.592845153000056 ], [ -124.969532887999947, 49.592575472000085 ], [ -124.968703168999966, 49.592589593000071 ], [ -124.968692310999955, 49.592319911000118 ], [ -124.967032879999977, 49.59234813400009 ], [ -124.967000331999898, 49.591539090000055 ], [ -124.967415184999979, 49.591532037000036 ], [ -124.967404332999962, 49.591262356000108 ], [ -124.96895902199999, 49.591235910000115 ], [ -124.971552812999974, 49.591191741000088 ], [ -124.971596705999943, 49.592280342000073 ], [ -124.971618057999962, 49.592809826000057 ], [ -124.971203196999952, 49.592816894000052 ], [ -124.971214070999935, 49.593086575000044 ], [ -124.969969479, 49.593107772000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.969324647480828", "sL_AssetLoss": "2425.4", "sL_BldgLoss": "2351", "sL_StrLoss": "1984", "sL_NStrLoss": "367", "sL_ContLoss": "74.4", "geom_point": "0101000020E61000001B885DC2FE335FC0188812EB5CBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.81136614799999, 49.480467195000138 ], [ -124.811346244999982, 49.479927773000057 ], [ -124.810932299999962, 49.479934256000128 ], [ -124.810902451999979, 49.479125123000095 ], [ -124.811730327999939, 49.479112156000106 ], [ -124.81172037499999, 49.478842445000076 ], [ -124.812134311999941, 49.478835959000072 ], [ -124.812114400999945, 49.478296537000084 ], [ -124.813770121999966, 49.478270579000117 ], [ -124.813800015999931, 49.479079711000054 ], [ -124.813386077999951, 49.479086203000051 ], [ -124.813425928999948, 49.480165046000089 ], [ -124.813011983999928, 49.480171537000018 ], [ -124.813021943999956, 49.480441247000101 ], [ -124.81136614799999, 49.480467195000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.967428894804133", "sL_AssetLoss": "4771.1", "sL_BldgLoss": "4615.7", "sL_StrLoss": "3968", "sL_NStrLoss": "647.7", "sL_ContLoss": "155.4", "geom_point": "0101000020E6100000D55FA73F58325FC0AFD1EE6763BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.787747011999954, 49.457429620000013 ], [ -124.787705091999939, 49.456277521000096 ], [ -124.78605008699995, 49.456303098000092 ], [ -124.786082748999917, 49.457201562000051 ], [ -124.784577629999944, 49.456992755000051 ], [ -124.784205045999911, 49.456941056000083 ], [ -124.783585624999915, 49.456838612000091 ], [ -124.78353846499999, 49.455539396000113 ], [ -124.7835186249999, 49.454992837000113 ], [ -124.7864148099999, 49.454948127000108 ], [ -124.786424613999955, 49.455217843000064 ], [ -124.787252097999911, 49.455205055000107 ], [ -124.78725314899998, 49.455233934000013 ], [ -124.78726190899999, 49.455474770000173 ], [ -124.789330626999941, 49.455442775000044 ], [ -124.789340450999973, 49.455712490000053 ], [ -124.789754195999947, 49.455706087000074 ], [ -124.789822969999975, 49.457594093000061 ], [ -124.788995446999962, 49.4576069 ], [ -124.788995680999932, 49.457613325000111 ], [ -124.788795800999964, 49.457569300000131 ], [ -124.787747011999954, 49.457429620000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.970131733402896", "sL_AssetLoss": "766.7", "sL_BldgLoss": "743.8", "sL_StrLoss": "676", "sL_NStrLoss": "67.8", "sL_ContLoss": "22.9", "geom_point": "0101000020E61000009BBC75BC51305FC09DDC08EE34B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.754777141999966, 49.438430986000128 ], [ -124.756017965999973, 49.438412146000154 ], [ -124.75604686599999, 49.439221310000015 ], [ -124.755633251999967, 49.43922759100014 ], [ -124.75564452299993, 49.439543198000138 ], [ -124.75565251499998, 49.439767033000052 ], [ -124.753998037999949, 49.439792145000119 ], [ -124.753959547999955, 49.438713260000064 ], [ -124.75426326099992, 49.43870865100007 ], [ -124.754786768999949, 49.438700708000042 ], [ -124.754777141999966, 49.438430986000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43084250", "BldgCostT": "29240000", "sL_LossRatio": "0.922420352412008", "sL_AssetLoss": "41872.58", "sL_BldgLoss": "38624.12", "sL_StrLoss": "33999.62", "sL_NStrLoss": "4624.5", "sL_ContLoss": "3248.46", "geom_point": "0101000020E6100000D089F326B53C5FC04FAC5B56C4D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.940252625999975, 49.645597302000063 ], [ -124.939875809999975, 49.645370505000095 ], [ -124.939127402999986, 49.64498719400008 ], [ -124.938620216999965, 49.644773493000081 ], [ -124.9379989, 49.644587590000121 ], [ -124.937687399999973, 49.64452778400004 ], [ -124.936244897999941, 49.644416609000075 ], [ -124.936302225999952, 49.643139800000064 ], [ -124.938509896999932, 49.644036595000038 ], [ -124.940365810999978, 49.644707803000095 ], [ -124.94127279599995, 49.643609204000072 ], [ -124.942802420999925, 49.644085508000046 ], [ -124.943122199999934, 49.644142607000042 ], [ -124.943573110000017, 49.644155991000041 ], [ -124.944256395999943, 49.644054692000068 ], [ -124.944524218999931, 49.643967302000121 ], [ -124.944592076999982, 49.643903195000057 ], [ -124.944588862, 49.64389400400006 ], [ -124.944540104999959, 49.643756105000136 ], [ -124.944485005, 49.643698906000083 ], [ -124.944448197999975, 49.643660691000093 ], [ -124.94437935399999, 49.643616198000068 ], [ -124.944965824999912, 49.643806477000041 ], [ -124.945532108999927, 49.643600326000097 ], [ -124.945688550999961, 49.643443275000081 ], [ -124.945845024, 49.643286213000124 ], [ -124.945883428999977, 49.643000079000011 ], [ -124.945887869999936, 49.642710671000025 ], [ -124.945690660999986, 49.642356600000035 ], [ -124.945429701999956, 49.642154877000053 ], [ -124.945160544999965, 49.641972819000024 ], [ -124.944023407999964, 49.641446092000074 ], [ -124.942918499999934, 49.640887049000071 ], [ -124.942564535999949, 49.64029943400007 ], [ -124.942824930999961, 49.639792013000054 ], [ -124.94198680699995, 49.639788499000069 ], [ -124.942279308999943, 49.641819564000023 ], [ -124.940375617999919, 49.64116079700009 ], [ -124.937929762999943, 49.640176543000116 ], [ -124.936935914999964, 49.639509112000049 ], [ -124.936926532, 49.63927266500005 ], [ -124.938172322999918, 49.639251811000101 ], [ -124.93816161599996, 49.63898212600008 ], [ -124.938576876999946, 49.63897517200008 ], [ -124.938566166999976, 49.638705487000045 ], [ -124.938981425999913, 49.638698531000102 ], [ -124.938970713999936, 49.638428848000089 ], [ -124.939845092000027, 49.638414197000046 ], [ -124.940216482999929, 49.638407970000053 ], [ -124.940248638999932, 49.639217021000022 ], [ -124.945647039999983, 49.639126397000062 ], [ -124.945614794, 49.638317348000022 ], [ -124.944369031999926, 49.638338283000081 ], [ -124.944358290999929, 49.638068601000022 ], [ -124.943112532999947, 49.638089522000087 ], [ -124.943123268999969, 49.638359205 ], [ -124.94104699199994, 49.63839404500002 ], [ -124.941021731000021, 49.637758719000132 ], [ -124.941004100999933, 49.637315311000044 ], [ -124.943080329999958, 49.637280472000043 ], [ -124.943069595999958, 49.637010789000072 ], [ -124.944315325000019, 49.6369898680001 ], [ -124.944326065, 49.637259551000021 ], [ -124.945571800999986, 49.637238617000072 ], [ -124.945539557999936, 49.636429568000011 ], [ -124.945954794999949, 49.63642258800008 ], [ -124.945944043999958, 49.636152905000081 ], [ -124.946463534000017, 49.636144169000019 ], [ -124.947189750999968, 49.636131954000028 ], [ -124.947308081999921, 49.639098461000046 ], [ -124.947723340999985, 49.639091475000022 ], [ -124.947734102999988, 49.639361156000049 ], [ -124.948163938, 49.639353922000033 ], [ -124.948210883999948, 49.637300275000044 ], [ -124.948635026999966, 49.637304371000042 ], [ -124.948668549999979, 49.635837201000079 ], [ -124.94759422599995, 49.635855284000101 ], [ -124.947584129999953, 49.635602186000035 ], [ -124.947561950999955, 49.635046236000107 ], [ -124.948687052999958, 49.635027298000146 ], [ -124.948696321999961, 49.634621581000019 ], [ -124.948842014999911, 49.634622987000078 ], [ -124.948877608999965, 49.633064782000076 ], [ -124.94978624399999, 49.633073549000066 ], [ -124.949792888999951, 49.632782404000046 ], [ -124.953197725999928, 49.632815190000066 ], [ -124.955326887999988, 49.632835638000074 ], [ -124.955326165999978, 49.63286745700006 ], [ -124.955916867999989, 49.632873123000074 ], [ -124.955869179999965, 49.634974891000041 ], [ -124.95588803499993, 49.6354455560001 ], [ -124.956303261999921, 49.635438538000123 ], [ -124.95630730299996, 49.63553938400004 ], [ -124.957615658999941, 49.635551916000146 ], [ -124.959416496999935, 49.635569139000062 ], [ -124.959406457999933, 49.636013070000082 ], [ -124.962748398999963, 49.636044954000056 ], [ -124.962735585999937, 49.636613321000091 ], [ -124.962165313999961, 49.636775489000115 ], [ -124.960207899999915, 49.637168808000098 ], [ -124.959388224999955, 49.637307046000096 ], [ -124.958304615999964, 49.637489792000089 ], [ -124.957596450999986, 49.637554795000028 ], [ -124.957463512999936, 49.637567011000101 ], [ -124.95687619899995, 49.637620906000087 ], [ -124.955876097000015, 49.637781393000118 ], [ -124.95494841799993, 49.637985702000023 ], [ -124.954681877999988, 49.638070824000046 ], [ -124.954111889999965, 49.638252895000029 ], [ -124.953518817999921, 49.638489310000089 ], [ -124.952994611999941, 49.638698321000049 ], [ -124.952504211999965, 49.638961731000059 ], [ -124.952110634999912, 49.639229539000056 ], [ -124.951978374999968, 49.639325062000054 ], [ -124.951500904999961, 49.639669980000093 ], [ -124.951179066999956, 49.63990246000008 ], [ -124.949883396999951, 49.641428286000135 ], [ -124.949000149999975, 49.642528945000016 ], [ -124.947629771999956, 49.644228541000082 ], [ -124.947484399999936, 49.644418455000121 ], [ -124.94737130099999, 49.644566247000064 ], [ -124.946961993999963, 49.645101001000057 ], [ -124.94636428499993, 49.645877894000115 ], [ -124.944768402999955, 49.645690582000107 ], [ -124.943192329999988, 49.645488168000036 ], [ -124.942160194999971, 49.64685184800009 ], [ -124.940252625999975, 49.645597302000063 ] ], [ [ -124.948376911999915, 49.641271325000041 ], [ -124.948385390999931, 49.640900341000069 ], [ -124.948128641999915, 49.640897861000028 ], [ -124.948139252000018, 49.64043379200006 ], [ -124.947777146999954, 49.640439886000074 ], [ -124.947766383999976, 49.640170203000068 ], [ -124.943613688000013, 49.640240014000099 ], [ -124.943624425999928, 49.640509697000027 ], [ -124.944454970999985, 49.640495747000053 ], [ -124.94446571499995, 49.640765430000094 ], [ -124.944880989999987, 49.640758452000078 ], [ -124.944891734999942, 49.641028135000035 ], [ -124.945307010999969, 49.641021156000065 ], [ -124.945315801999953, 49.641241724000047 ], [ -124.948376911999915, 49.641271325000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.974816703857188", "sL_AssetLoss": "1568.5", "sL_BldgLoss": "1529", "sL_StrLoss": "1307", "sL_NStrLoss": "222", "sL_ContLoss": "39.5", "geom_point": "0101000020E610000003C62386D7335FC0EE0A5CA2A3BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.810425937999952, 49.482855923000024 ], [ -124.810129315999916, 49.482584397000082 ], [ -124.809825012999937, 49.48225470200002 ], [ -124.809549600999929, 49.481956318000087 ], [ -124.808919796999959, 49.481080098000128 ], [ -124.808668675999925, 49.480651697000035 ], [ -124.808458077999958, 49.480242844000102 ], [ -124.80980716699996, 49.480221737000072 ], [ -124.810114353999921, 49.480216930000047 ], [ -124.810164080999982, 49.481565485000026 ], [ -124.810578038999978, 49.481559004000054 ], [ -124.810587985999945, 49.481828715000056 ], [ -124.811001946999966, 49.481822233000102 ], [ -124.811011896999986, 49.482091944000082 ], [ -124.811425859999929, 49.482085460000086 ], [ -124.811445765999935, 49.482624882000017 ], [ -124.811859732999892, 49.482618397000088 ], [ -124.81186861899999, 49.482859161000121 ], [ -124.810729839999965, 49.482856609000059 ], [ -124.810425937999952, 49.482855923000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162486750", "BldgCostT": "109245000", "sL_LossRatio": "0.982284060653846", "sL_AssetLoss": "140020.8", "sL_BldgLoss": "137540.2", "sL_StrLoss": "125954.7", "sL_NStrLoss": "11585.5", "sL_ContLoss": "2480.6", "geom_point": "0101000020E6100000C190E6D9B6385FC03F816E37DAC84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.887330686999988, 49.587497300000059 ], [ -124.88702702099998, 49.586068882000063 ], [ -124.886970721999973, 49.585804 ], [ -124.886572407999921, 49.58466631200011 ], [ -124.885951514999988, 49.583514834000056 ], [ -124.885528478999973, 49.58273029100004 ], [ -124.884668496999922, 49.58125680000007 ], [ -124.884513505999948, 49.580919594000072 ], [ -124.884437809999952, 49.580754207 ], [ -124.884408519999965, 49.58069009900008 ], [ -124.884121616999977, 49.579763617000062 ], [ -124.88410718099999, 49.579717090000052 ], [ -124.884003416999974, 49.579509116000111 ], [ -124.883889704999945, 49.579281205000036 ], [ -124.883348293999944, 49.57852439400007 ], [ -124.88358187599998, 49.578466495000015 ], [ -124.884052599999947, 49.578435394000081 ], [ -124.884587598999929, 49.578430996000101 ], [ -124.884405232999967, 49.577796451000069 ], [ -124.883599097999962, 49.577298891000041 ], [ -124.883972780999954, 49.576677837000084 ], [ -124.88342792099999, 49.574776581000052 ], [ -124.883242530999951, 49.573052355000073 ], [ -124.880859580000035, 49.57329360500006 ], [ -124.880711158999958, 49.573641480000084 ], [ -124.879842491000019, 49.57263140200007 ], [ -124.879403296999939, 49.571938608000039 ], [ -124.878823882999967, 49.570768671000138 ], [ -124.878747444999959, 49.57061428 ], [ -124.878731494999911, 49.570582107000085 ], [ -124.878461206999958, 49.570106999000117 ], [ -124.877684117999948, 49.569043609000047 ], [ -124.877144792999957, 49.568377693000087 ], [ -124.876796311999968, 49.56782259900011 ], [ -124.873403786999944, 49.561719004000082 ], [ -124.873019782999918, 49.561033892000033 ], [ -124.872433396999938, 49.559985884000106 ], [ -124.87228199499998, 49.559452613000126 ], [ -124.87225428, 49.558722698000075 ], [ -124.872322106999931, 49.558323007000105 ], [ -124.872812190000019, 49.556980306000099 ], [ -124.872850205999939, 49.556389592000116 ], [ -124.87273569199999, 49.55581440000001 ], [ -124.872522593999946, 49.555379394000063 ], [ -124.871429604999946, 49.554035606000085 ], [ -124.871415492, 49.554017192000089 ], [ -124.870940905999959, 49.553398010000159 ], [ -124.870461712999941, 49.552207207000066 ], [ -124.869042017999945, 49.550190224000119 ], [ -124.868051664999939, 49.548783097000083 ], [ -124.8668510899999, 49.547077206000033 ], [ -124.864968903999937, 49.544422201000053 ], [ -124.86461067799992, 49.543824594000093 ], [ -124.863583802999969, 49.542250199000115 ], [ -124.863491564999947, 49.54210877800007 ], [ -124.86340434, 49.541975040000118 ], [ -124.861784117999903, 49.539490701000034 ], [ -124.86206710099999, 49.539493700000037 ], [ -124.86370178599999, 49.539514384000078 ], [ -124.864517984999964, 49.539517597000163 ], [ -124.865116575999949, 49.539594871000133 ], [ -124.866996368999935, 49.539837435000067 ], [ -124.866964713999948, 49.541125818000054 ], [ -124.867679070999884, 49.541133265000056 ], [ -124.867666456999984, 49.541646952000121 ], [ -124.868098684999978, 49.541651456000075 ], [ -124.868016052999934, 49.545017727000086 ], [ -124.870464200999933, 49.545043204000116 ], [ -124.870446581999957, 49.545762459000045 ], [ -124.870873328999949, 49.545766895000064 ], [ -124.870864191999914, 49.546140066000092 ], [ -124.871260736999929, 49.546144185000088 ], [ -124.871258864999973, 49.546220692000112 ], [ -124.872103710999966, 49.546229464000106 ], [ -124.872046650999948, 49.548561985000084 ], [ -124.872670230999958, 49.548568456000091 ], [ -124.872658981999948, 49.549028541000041 ], [ -124.87289125199996, 49.549030951000105 ], [ -124.872858847999964, 49.550356470000033 ], [ -124.87401219, 49.550368426000048 ], [ -124.873999752999936, 49.55087767600002 ], [ -124.874178014, 49.550879522000074 ], [ -124.874164065999963, 49.551450752000079 ], [ -124.874517735999959, 49.551454416000055 ], [ -124.874497932999958, 49.552265576000124 ], [ -124.87498366799997, 49.552270606000064 ], [ -124.874970571999967, 49.552807278000088 ], [ -124.875484181999937, 49.552812593000056 ], [ -124.875458895999884, 49.553849228000054 ], [ -124.876237115999942, 49.553857277000134 ], [ -124.87621591199995, 49.554727084000049 ], [ -124.876263766999969, 49.554727579000058 ], [ -124.876256230999971, 49.555036765000061 ], [ -124.876334782999919, 49.555037577000036 ], [ -124.876324893999964, 49.555443303000054 ], [ -124.876419105999958, 49.55544427700012 ], [ -124.876332029999972, 49.559016654000033 ], [ -124.876489621999966, 49.559018284000132 ], [ -124.876474080999969, 49.559655910000075 ], [ -124.87669375199999, 49.559658180000042 ], [ -124.876672554999942, 49.560527948000093 ], [ -124.877284281999948, 49.560534267000037 ], [ -124.877283773999977, 49.560555156000063 ], [ -124.878647431999966, 49.56056923200002 ], [ -124.878590799, 49.562897072000055 ], [ -124.878694072999963, 49.562898137000104 ], [ -124.878687021999937, 49.563187947000095 ], [ -124.880128036999963, 49.563202800000056 ], [ -124.880066234999958, 49.565746261000058 ], [ -124.880312982999925, 49.56574880199999 ], [ -124.880310207999983, 49.565863048000097 ], [ -124.881342651999944, 49.565873676000088 ], [ -124.881302359999964, 49.567533660000045 ], [ -124.88133355299999, 49.567533981000111 ], [ -124.881316914999942, 49.568219402000125 ], [ -124.882139364999901, 49.568227861000047 ], [ -124.882114501000018, 49.569252911000014 ], [ -124.882304019999964, 49.569254860000036 ], [ -124.882292521999929, 49.569728983000104 ], [ -124.884086981999971, 49.569747415000037 ], [ -124.884037398999979, 49.571794971000081 ], [ -124.884304798999949, 49.571797715000073 ], [ -124.884290288000031, 49.572397103000085 ], [ -124.884651321999982, 49.572400807000072 ], [ -124.88464180199999, 49.572794122000062 ], [ -124.885039230999965, 49.572798198000086 ], [ -124.88502759, 49.573279340000049 ], [ -124.88519875599999, 49.573281095000013 ], [ -124.885188565999954, 49.573702276000056 ], [ -124.885326774999939, 49.573703693000077 ], [ -124.885324531999984, 49.57379643000008 ], [ -124.885885459999912, 49.573802179000097 ], [ -124.885873470999925, 49.574298036000059 ], [ -124.886150479999955, 49.574300874000123 ], [ -124.886132299999986, 49.575052961000097 ], [ -124.886523312999941, 49.575056966000062 ], [ -124.886493789000014, 49.576278711000064 ], [ -124.886733276999976, 49.576281163000068 ], [ -124.886728539999979, 49.576477279000059 ], [ -124.887107076999939, 49.576481154000135 ], [ -124.887094448999932, 49.577003955000144 ], [ -124.887738084999953, 49.57701054000006 ], [ -124.887726312999945, 49.577498200000022 ], [ -124.887730313999924, 49.577498240000061 ], [ -124.887724304999949, 49.577747204000048 ], [ -124.88800748, 49.577742584000113 ], [ -124.888013034, 49.577886519000053 ], [ -124.888112122999942, 49.577887532000076 ], [ -124.888109147999927, 49.578010789000068 ], [ -124.888432642999973, 49.578005510000018 ], [ -124.888443054999954, 49.578275204000079 ], [ -124.89010208399999, 49.578248114000104 ], [ -124.890112505, 49.5785178080001 ], [ -124.891356783999939, 49.57849747500007 ], [ -124.89136139799993, 49.578616883000116 ], [ -124.891393340999969, 49.578617964000046 ], [ -124.891445941999947, 49.579560664000063 ], [ -124.891460629999983, 49.579575236000025 ], [ -124.891813260000021, 49.579569470000116 ], [ -124.891818846999939, 49.579713935000086 ], [ -124.892439440999922, 49.579758164000069 ], [ -124.892459492999961, 49.57975868500003 ], [ -124.892497789999979, 49.578165426000098 ], [ -124.897019259999979, 49.57821138 ], [ -124.897036638999921, 49.577485390000028 ], [ -124.895852497999911, 49.577473374000093 ], [ -124.895938707999989, 49.573875500000042 ], [ -124.897319949999883, 49.573889516000072 ], [ -124.897342506999976, 49.572946834000085 ], [ -124.902869257999939, 49.573002739000053 ], [ -124.902847067999957, 49.573934787000049 ], [ -124.903337097999923, 49.573939729000067 ], [ -124.90332592499999, 49.574409182000096 ], [ -124.904016369, 49.574416143000036 ], [ -124.90405284400002, 49.572882501000059 ], [ -124.909579596999947, 49.57293806500013 ], [ -124.90949445299999, 49.576535953000111 ], [ -124.908894345, 49.576529933000103 ], [ -124.908841459999977, 49.578763164000073 ], [ -124.908533817999981, 49.578760077000041 ], [ -124.908506214999989, 49.579925269000071 ], [ -124.90733962099992, 49.579913554000086 ], [ -124.905010525999955, 49.579890129000084 ], [ -124.905005984999931, 49.580081157000052 ], [ -124.903621212999894, 49.580067206000123 ], [ -124.903583720999947, 49.581642689000049 ], [ -124.898055930999988, 49.581586820000048 ], [ -124.898069864999982, 49.581004272000015 ], [ -124.897958632999988, 49.581003146000086 ], [ -124.897939107999917, 49.581819429000049 ], [ -124.892411303999921, 49.581763274000082 ], [ -124.892418869, 49.581448618000124 ], [ -124.889517917999981, 49.581496030000096 ], [ -124.889471645999933, 49.583415741000053 ], [ -124.88950174699994, 49.584194936000131 ], [ -124.889916553, 49.584188163000114 ], [ -124.889933002999925, 49.584613836000088 ], [ -124.890525940999936, 49.584619887000066 ], [ -124.890456065999928, 49.587521120000076 ], [ -124.89135368699999, 49.587530273000034 ], [ -124.891267092999968, 49.591128071000078 ], [ -124.889134322999965, 49.591106312000093 ], [ -124.888480364999936, 49.590211091000057 ], [ -124.888472846999917, 49.59020077600006 ], [ -124.888469532, 49.590196226000039 ], [ -124.88839239099994, 49.590090670000031 ], [ -124.88794641299998, 49.589480096000052 ], [ -124.887833788999941, 49.58925113700009 ], [ -124.887757922999981, 49.589096951000052 ], [ -124.887698704999963, 49.588976493000068 ], [ -124.88759989499998, 49.588773005000043 ], [ -124.887330686999988, 49.587497300000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14862584", "BldgCostT": "9778334", "sL_LossRatio": "0.980949732740134", "sL_AssetLoss": "9997.76", "sL_BldgLoss": "9807.3", "sL_StrLoss": "8802.8", "sL_NStrLoss": "1004.5", "sL_ContLoss": "190.46", "geom_point": "0101000020E61000007E6BE52D70395FC0037A9FB2B3CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.902681899999962, 49.603033814000099 ], [ -124.900861998999943, 49.602570995000107 ], [ -124.900013236999882, 49.602317242000048 ], [ -124.899628553999932, 49.602202235000036 ], [ -124.8983411899999, 49.601817317000041 ], [ -124.89821469499995, 49.601779494000056 ], [ -124.896958073999897, 49.601530189000087 ], [ -124.896739416999978, 49.601596298000096 ], [ -124.89664260399995, 49.601463546000112 ], [ -124.895818200999955, 49.600332902000083 ], [ -124.895580181999904, 49.60000435300001 ], [ -124.8927442199999, 49.596089255000081 ], [ -124.897488475, 49.596137436000014 ], [ -124.897461174999975, 49.597277873000067 ], [ -124.898324412999941, 49.597286618000126 ], [ -124.898314552999949, 49.597698832000106 ], [ -124.898805919999944, 49.597703806000069 ], [ -124.898797627999926, 49.598050608000058 ], [ -124.899063631999979, 49.598053300000103 ], [ -124.899054476999964, 49.598436266000085 ], [ -124.899334044999961, 49.598439095000117 ], [ -124.899327231999933, 49.598724176000047 ], [ -124.899684147999949, 49.598727786000033 ], [ -124.899676509999892, 49.599047491000071 ], [ -124.899873360999948, 49.599049482000062 ], [ -124.899863082999943, 49.599479742000071 ], [ -124.900212473999943, 49.599483274000065 ], [ -124.90019290199993, 49.600302801000062 ], [ -124.900388016999969, 49.600304772000115 ], [ -124.900381684999971, 49.600569964000044 ], [ -124.901004610999962, 49.600576257000057 ], [ -124.900981231999964, 49.60155589000005 ], [ -124.901808139999972, 49.601564239000105 ], [ -124.901792612999913, 49.602215304000026 ], [ -124.902211465, 49.60221953000007 ], [ -124.902201111999915, 49.602653811000081 ], [ -124.902835967, 49.602660215000057 ], [ -124.902826465999937, 49.60305895800014 ], [ -124.902681899999962, 49.603033814000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48207500", "BldgCostT": "32750000", "sL_LossRatio": "0.983881264934607", "sL_AssetLoss": "32893.4", "sL_BldgLoss": "32363.2", "sL_StrLoss": "29572.9", "sL_NStrLoss": "2790.3", "sL_ContLoss": "530.2", "geom_point": "0101000020E6100000B3E6854348385FC03A89528C3DC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.885738180999951, 49.591071578 ], [ -124.885808356999945, 49.588170362000049 ], [ -124.884910725999973, 49.588161164 ], [ -124.884941506999951, 49.586889526000085 ], [ -124.88527610599999, 49.587096599000041 ], [ -124.886113681999973, 49.586903002000028 ], [ -124.886461001999976, 49.586618092000066 ], [ -124.886502017999959, 49.586222198000044 ], [ -124.886089295999952, 49.585589808000094 ], [ -124.885778798999951, 49.58399330500005 ], [ -124.88450148699999, 49.584221196000087 ], [ -124.884028900999965, 49.584184087000075 ], [ -124.884094406999978, 49.58408440600008 ], [ -124.885476492999942, 49.583657205000115 ], [ -124.885252914999924, 49.582886690000095 ], [ -124.883566092999956, 49.579658005000034 ], [ -124.882706189999908, 49.578907401000023 ], [ -124.882105401999922, 49.578044411000057 ], [ -124.88183790599993, 49.576843802000084 ], [ -124.881532089999951, 49.576434997000078 ], [ -124.881221187999955, 49.575522098000079 ], [ -124.880612499000023, 49.574461106000101 ], [ -124.88057290399999, 49.574147706000055 ], [ -124.880267308999919, 49.573793091000056 ], [ -124.880210697, 49.573370113000088 ], [ -124.879809017999932, 49.57297280300002 ], [ -124.879162067999914, 49.571957457000103 ], [ -124.879144696999944, 49.571930194000053 ], [ -124.878626001, 49.570652697000114 ], [ -124.877735381999983, 49.569434994000098 ], [ -124.877495891999928, 49.569322500000062 ], [ -124.876888800999978, 49.569349594000116 ], [ -124.876381993999985, 49.569114605000095 ], [ -124.876290796999939, 49.568532091000087 ], [ -124.876504613999941, 49.56797090200012 ], [ -124.87643310299994, 49.567584999000097 ], [ -124.875529223999976, 49.565971304000072 ], [ -124.87468051899998, 49.564779304000062 ], [ -124.874010086999974, 49.563135707000107 ], [ -124.873598214999944, 49.562511902000033 ], [ -124.872997777999942, 49.561992100000055 ], [ -124.872919602999943, 49.561435202000055 ], [ -124.872540904999951, 49.560919687000094 ], [ -124.872485901999966, 49.560569302000061 ], [ -124.872310909999939, 49.560338586000043 ], [ -124.872187885999907, 49.559620806000055 ], [ -124.871854092999925, 49.559212006000088 ], [ -124.871935513999944, 49.558068394000074 ], [ -124.872437081999976, 49.557448892000139 ], [ -124.872515414999938, 49.556619994000108 ], [ -124.872376017999954, 49.555875104000044 ], [ -124.871944992999929, 49.555108897000103 ], [ -124.870985682999972, 49.553865603000077 ], [ -124.870649789999931, 49.553752996000085 ], [ -124.870403812999939, 49.553469608000057 ], [ -124.870348899999954, 49.55241860200006 ], [ -124.869996486999952, 49.552216295000093 ], [ -124.869486707999911, 49.551208008000074 ], [ -124.868344322, 49.549896303000011 ], [ -124.868103386999962, 49.54933230900005 ], [ -124.86670520700001, 49.547143292000079 ], [ -124.865783292999964, 49.546176304000042 ], [ -124.86505239499995, 49.545101011000035 ], [ -124.865001994999943, 49.544867415000027 ], [ -124.86433178399993, 49.543960194000078 ], [ -124.864233719999945, 49.543575700000069 ], [ -124.863657491999973, 49.542990292000063 ], [ -124.862665007999937, 49.542682692000092 ], [ -124.861848584999962, 49.542678397000067 ], [ -124.86162099399999, 49.542510309000122 ], [ -124.861587281999945, 49.542349399000095 ], [ -124.861608316999977, 49.541809604000079 ], [ -124.861934390999977, 49.540932306000109 ], [ -124.861853297999957, 49.540590490000099 ], [ -124.861297839999921, 49.539618159999989 ], [ -124.861394928, 49.539591925000174 ], [ -124.861784117999903, 49.539490701000034 ], [ -124.86340434, 49.541975040000118 ], [ -124.863491564999947, 49.54210877800007 ], [ -124.863583802999969, 49.542250199000115 ], [ -124.86461067799992, 49.543824594000093 ], [ -124.864968903999937, 49.544422201000053 ], [ -124.8668510899999, 49.547077206000033 ], [ -124.868051664999939, 49.548783097000083 ], [ -124.869042017999945, 49.550190224000119 ], [ -124.870461712999941, 49.552207207000066 ], [ -124.870940905999959, 49.553398010000159 ], [ -124.871415492, 49.554017192000089 ], [ -124.871429604999946, 49.554035606000085 ], [ -124.872522593999946, 49.555379394000063 ], [ -124.87273569199999, 49.55581440000001 ], [ -124.872850205999939, 49.556389592000116 ], [ -124.872812190000019, 49.556980306000099 ], [ -124.872322106999931, 49.558323007000105 ], [ -124.87225428, 49.558722698000075 ], [ -124.87228199499998, 49.559452613000126 ], [ -124.872433396999938, 49.559985884000106 ], [ -124.873019782999918, 49.561033892000033 ], [ -124.873403786999944, 49.561719004000082 ], [ -124.876796311999968, 49.56782259900011 ], [ -124.877144792999957, 49.568377693000087 ], [ -124.877684117999948, 49.569043609000047 ], [ -124.878461206999958, 49.570106999000117 ], [ -124.878731494999911, 49.570582107000085 ], [ -124.878747444999959, 49.57061428 ], [ -124.878823882999967, 49.570768671000138 ], [ -124.879403296999939, 49.571938608000039 ], [ -124.879842491000019, 49.57263140200007 ], [ -124.880711158999958, 49.573641480000084 ], [ -124.880859580000035, 49.57329360500006 ], [ -124.883242530999951, 49.573052355000073 ], [ -124.88342792099999, 49.574776581000052 ], [ -124.883972780999954, 49.576677837000084 ], [ -124.883599097999962, 49.577298891000041 ], [ -124.884405232999967, 49.577796451000069 ], [ -124.884587598999929, 49.578430996000101 ], [ -124.884052599999947, 49.578435394000081 ], [ -124.88358187599998, 49.578466495000015 ], [ -124.883348293999944, 49.57852439400007 ], [ -124.883889704999945, 49.579281205000036 ], [ -124.884003416999974, 49.579509116000111 ], [ -124.88410718099999, 49.579717090000052 ], [ -124.884121616999977, 49.579763617000062 ], [ -124.884408519999965, 49.58069009900008 ], [ -124.884437809999952, 49.580754207 ], [ -124.884513505999948, 49.580919594000072 ], [ -124.884668496999922, 49.58125680000007 ], [ -124.885528478999973, 49.58273029100004 ], [ -124.885951514999988, 49.583514834000056 ], [ -124.886572407999921, 49.58466631200011 ], [ -124.886970721999973, 49.585804 ], [ -124.88702702099998, 49.586068882000063 ], [ -124.887330686999988, 49.587497300000059 ], [ -124.88759989499998, 49.588773005000043 ], [ -124.887698704999963, 49.588976493000068 ], [ -124.887757922999981, 49.589096951000052 ], [ -124.887833788999941, 49.58925113700009 ], [ -124.88794641299998, 49.589480096000052 ], [ -124.88839239099994, 49.590090670000031 ], [ -124.888469532, 49.590196226000039 ], [ -124.888472846999917, 49.59020077600006 ], [ -124.888480364999936, 49.590211091000057 ], [ -124.889134322999965, 49.591106312000093 ], [ -124.885738180999951, 49.591071578 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116981250", "BldgCostT": "78675000", "sL_LossRatio": "0.988100850549478", "sL_AssetLoss": "76551.69", "sL_BldgLoss": "75640.79", "sL_StrLoss": "70449.59", "sL_NStrLoss": "5191.2", "sL_ContLoss": "910.9", "geom_point": "0101000020E6100000FF890CA3C7395FC031AC87D459CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.912278211999961, 49.626269591000039 ], [ -124.912035896999924, 49.626217706000048 ], [ -124.911720977999934, 49.626249690000122 ], [ -124.911530788000022, 49.62621899100008 ], [ -124.911289241999953, 49.626006308000072 ], [ -124.911239405999979, 49.625962410000064 ], [ -124.91121344499993, 49.625950609000014 ], [ -124.911171867999897, 49.625931704000067 ], [ -124.911083415999954, 49.625891506000052 ], [ -124.910991034999967, 49.625881391000114 ], [ -124.910902597999893, 49.625871707000151 ], [ -124.910210912999958, 49.625864793000055 ], [ -124.910149845999982, 49.625869029000079 ], [ -124.909462529000038, 49.625916936000102 ], [ -124.909197209999917, 49.625672802000082 ], [ -124.908275901999957, 49.62439240700008 ], [ -124.908474882999954, 49.623453903000012 ], [ -124.907998875999937, 49.622616396000069 ], [ -124.90771039599997, 49.621630890000098 ], [ -124.907061904, 49.620589808000048 ], [ -124.90656210499999, 49.619877706000118 ], [ -124.906138916999936, 49.619678298000061 ], [ -124.905796398999911, 49.619396301000116 ], [ -124.90544419299999, 49.61889781600005 ], [ -124.905472619999927, 49.618214207000072 ], [ -124.905875180999914, 49.61786529600009 ], [ -124.905933299, 49.617611692000054 ], [ -124.905879503999969, 49.616938103000074 ], [ -124.905728212, 49.61658059400002 ], [ -124.90465, 49.615924103000033 ], [ -124.904595204999978, 49.615600808000089 ], [ -124.903954608999967, 49.615153602000085 ], [ -124.903540389999961, 49.614098194000057 ], [ -124.903380983999924, 49.613903612000037 ], [ -124.902478701999883, 49.612802191000078 ], [ -124.900555297999958, 49.610999188000108 ], [ -124.898827207999915, 49.608589394 ], [ -124.898266195999952, 49.608049606000044 ], [ -124.897583111999978, 49.60682910700006 ], [ -124.897366894999905, 49.606608310000112 ], [ -124.89699869399999, 49.606434600000043 ], [ -124.896763395999983, 49.606086987000076 ], [ -124.896468590999973, 49.605965999000084 ], [ -124.896399608999971, 49.605615595000103 ], [ -124.895585699999955, 49.604963295000061 ], [ -124.895081004999966, 49.604090290000059 ], [ -124.894737607999915, 49.60378129900009 ], [ -124.894612787999932, 49.603440909000021 ], [ -124.893433096999928, 49.602614795000058 ], [ -124.89224420499994, 49.601609305000075 ], [ -124.891927018999979, 49.601614996000066 ], [ -124.891521417999968, 49.601881401000107 ], [ -124.891275501999942, 49.601931197000027 ], [ -124.890912781999958, 49.601864294000045 ], [ -124.89100351899998, 49.601737501000073 ], [ -124.891684694999952, 49.601456903000056 ], [ -124.891759585999949, 49.601221908000134 ], [ -124.891559111999953, 49.600703492000065 ], [ -124.891318878999982, 49.600553997000098 ], [ -124.890922838999941, 49.60045748900005 ], [ -124.890925383999956, 49.600351766000102 ], [ -124.890931456, 49.600099645000043 ], [ -124.892725332999987, 49.600117916000045 ], [ -124.892735673999979, 49.599687803000059 ], [ -124.89187239099995, 49.599679015000071 ], [ -124.891958953999946, 49.596081260000041 ], [ -124.8927442199999, 49.596089255000081 ], [ -124.895580181999904, 49.60000435300001 ], [ -124.895818200999955, 49.600332902000083 ], [ -124.89664260399995, 49.601463546000112 ], [ -124.896739416999978, 49.601596298000096 ], [ -124.897582809999946, 49.602756411 ], [ -124.898433071999975, 49.603921994000075 ], [ -124.899694804999939, 49.60557401100013 ], [ -124.899827687999974, 49.605748002000013 ], [ -124.900124408999915, 49.606355593000053 ], [ -124.900293646999941, 49.606831855000046 ], [ -124.900353812999967, 49.607001098000069 ], [ -124.900444771000011, 49.607325497000012 ], [ -124.900527089999969, 49.607619115000062 ], [ -124.900593484999959, 49.607848300000065 ], [ -124.901026492999947, 49.608368195000075 ], [ -124.902319494999958, 49.609448879000112 ], [ -124.902623249999976, 49.609702767000016 ], [ -124.903094498999934, 49.610096588000026 ], [ -124.903509857999936, 49.610485965000052 ], [ -124.903588303, 49.610559504000051 ], [ -124.90365151499995, 49.610641460000075 ], [ -124.904279285999948, 49.611455286000066 ], [ -124.905843749999974, 49.613023795000082 ], [ -124.904680075, 49.613517605000077 ], [ -124.904679834999968, 49.613517694000038 ], [ -124.904907914999967, 49.613815995000017 ], [ -124.905152209000036, 49.614476010000068 ], [ -124.905295173999917, 49.614686194000129 ], [ -124.906902615999911, 49.616081501000082 ], [ -124.906965503999984, 49.616172096000128 ], [ -124.906997073999932, 49.61630019300005 ], [ -124.90695420599998, 49.61664788500012 ], [ -124.907675193999978, 49.616753183000057 ], [ -124.908561087999942, 49.616961799000094 ], [ -124.911399023999977, 49.618923496000015 ], [ -124.911690000999926, 49.619197197000041 ], [ -124.911825176000022, 49.619386589000044 ], [ -124.912035691999975, 49.6199644000001 ], [ -124.91063232, 49.620922906000075 ], [ -124.910096777999954, 49.621304583000061 ], [ -124.909823194999916, 49.6214996100001 ], [ -124.909612898999967, 49.621614406000056 ], [ -124.908717614999929, 49.621798894000115 ], [ -124.909146, 49.622809790000048 ], [ -124.909157877999945, 49.622820743000055 ], [ -124.909284096999954, 49.622937204000088 ], [ -124.909798217999978, 49.623194196000064 ], [ -124.912213833999928, 49.62143759300006 ], [ -124.912246295, 49.62141399300009 ], [ -124.912265349999984, 49.62140560800006 ], [ -124.912442002999924, 49.62132780500005 ], [ -124.913335638999968, 49.621331362000056 ], [ -124.913332610999987, 49.623452603000068 ], [ -124.913325075999978, 49.623588121000047 ], [ -124.913231214999939, 49.625284192000059 ], [ -124.913296795999912, 49.625846198000069 ], [ -124.913409817999977, 49.626217905000075 ], [ -124.912957300999963, 49.6261613 ], [ -124.912415002, 49.626274596000023 ], [ -124.912278211999961, 49.626269591000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.965831997039595", "sL_AssetLoss": "810.7", "sL_BldgLoss": "783", "sL_StrLoss": "655", "sL_NStrLoss": "128", "sL_ContLoss": "27.7", "geom_point": "0101000020E61000006D66A15B37325FC04980DC7688BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.784021010999979, 49.457427902000106 ], [ -124.784020501999962, 49.457413899000045 ], [ -124.783863690999965, 49.457416319000068 ], [ -124.783606741999961, 49.45742028300004 ], [ -124.783605906999952, 49.457397336000092 ], [ -124.783585624999915, 49.456838612000091 ], [ -124.784205045999911, 49.456941056000083 ], [ -124.784577629999944, 49.456992755000051 ], [ -124.786082748999917, 49.457201562000051 ], [ -124.786089305999894, 49.457381960000092 ], [ -124.785261783999943, 49.457394741000037 ], [ -124.785266321, 49.457519595000115 ], [ -124.785271585999979, 49.457664456000039 ], [ -124.784030295999955, 49.457683616000089 ], [ -124.784021010999979, 49.457427902000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9412917", "BldgCostT": "6491667", "sL_LossRatio": "0.965957811696107", "sL_AssetLoss": "11662", "sL_BldgLoss": "11265", "sL_StrLoss": "9720", "sL_NStrLoss": "1545", "sL_ContLoss": "397", "geom_point": "0101000020E61000009C727D06B1355FC0407520A98DC24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.839871117999976, 49.522474598000024 ], [ -124.839108618999944, 49.522406203000052 ], [ -124.838404885, 49.522417594000096 ], [ -124.837868201, 49.522515888000051 ], [ -124.83621039599997, 49.522505894000105 ], [ -124.835658814999988, 49.522613009000118 ], [ -124.835671060000024, 49.522127857000029 ], [ -124.834998429999956, 49.522120644000061 ], [ -124.835068371999952, 49.519350746000029 ], [ -124.835440993999953, 49.518526305000094 ], [ -124.836600280999932, 49.518538731000085 ], [ -124.836622872999939, 49.517642768000059 ], [ -124.83742562499998, 49.517651366000059 ], [ -124.837432134, 49.517393072000104 ], [ -124.837435407999976, 49.517263098000036 ], [ -124.838112498000015, 49.517194989000117 ], [ -124.841483993999987, 49.517619395000075 ], [ -124.842808302, 49.51751691200014 ], [ -124.842951257999971, 49.517487880000083 ], [ -124.842897301999983, 49.51963940100012 ], [ -124.843072947999971, 49.519636602000098 ], [ -124.843103366999955, 49.520445714000083 ], [ -124.84218024899999, 49.520460421000074 ], [ -124.842073651999968, 49.520462119000115 ], [ -124.84205262499998, 49.521299886000115 ], [ -124.841214150999946, 49.521290943000089 ], [ -124.841174681999988, 49.522862305000046 ], [ -124.840742709, 49.522857695000013 ], [ -124.839871117999976, 49.522474598000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.985306828003457", "sL_AssetLoss": "474.37", "sL_BldgLoss": "467.4", "sL_StrLoss": "444", "sL_NStrLoss": "23.4", "sL_ContLoss": "6.97", "geom_point": "0101000020E610000035DECAD000375FC0A5777D2849C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.860344576000017, 49.526916345000053 ], [ -124.860313863999949, 49.526107240000073 ], [ -124.859485217999946, 49.526120565000028 ], [ -124.859474985999967, 49.525850864000105 ], [ -124.859060663999969, 49.52585752300012 ], [ -124.859070893999927, 49.526127225000067 ], [ -124.857827922999917, 49.526147196000096 ], [ -124.857822471999953, 49.526003368000019 ], [ -124.857797254, 49.525338090000091 ], [ -124.85821157099997, 49.525331435000112 ], [ -124.85819112199999, 49.524792032000036 ], [ -124.858639712999917, 49.524784824000101 ], [ -124.859848370999927, 49.524765396000113 ], [ -124.859838008999972, 49.524492329000061 ], [ -124.860199988999952, 49.524795589000128 ], [ -124.86074468899993, 49.525250669000044 ], [ -124.859268115999939, 49.525297805999983 ], [ -124.860368697999974, 49.526069584000048 ], [ -124.861609694999913, 49.526626124000096 ], [ -124.861577319999952, 49.526626645000086 ], [ -124.86158756599994, 49.5268963460001 ], [ -124.860344576000017, 49.526916345000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36173833", "BldgCostT": "23473333", "sL_LossRatio": "0.977025931416225", "sL_AssetLoss": "22929.33", "sL_BldgLoss": "22402.55", "sL_StrLoss": "19604.45", "sL_NStrLoss": "2798.1", "sL_ContLoss": "526.78", "geom_point": "0101000020E6100000F90E9FF0E9365FC05524157C09C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.865116575999949, 49.539594871000133 ], [ -124.864517984999964, 49.539517597000163 ], [ -124.86370178599999, 49.539514384000078 ], [ -124.86206710099999, 49.539493700000037 ], [ -124.861784117999903, 49.539490701000034 ], [ -124.861394928, 49.539591925000174 ], [ -124.861297839999921, 49.539618159999989 ], [ -124.860667103999944, 49.538513998000084 ], [ -124.859969201999974, 49.537581203000066 ], [ -124.859178294999978, 49.536766496000062 ], [ -124.859098785999933, 49.536146997000067 ], [ -124.858445210999932, 49.535679798000082 ], [ -124.858177894999983, 49.535162798000023 ], [ -124.857601299999914, 49.534524795000088 ], [ -124.856894202999968, 49.53412170900004 ], [ -124.855795986999937, 49.533977911000072 ], [ -124.855621491999955, 49.533359814000072 ], [ -124.855603488999961, 49.532532307000032 ], [ -124.855248481, 49.532277397000072 ], [ -124.855108788, 49.531901394000101 ], [ -124.854724623999971, 49.531593800000046 ], [ -124.85448670699995, 49.531129509000039 ], [ -124.852606390999981, 49.529297896000124 ], [ -124.852083106999984, 49.5289547060001 ], [ -124.851000199999973, 49.527766909000015 ], [ -124.850143110999966, 49.527024890000128 ], [ -124.84936370399997, 49.526119085000083 ], [ -124.848483696999963, 49.525503901000043 ], [ -124.847906297999941, 49.525945413000073 ], [ -124.847776815999978, 49.526207393000078 ], [ -124.847601089999955, 49.526274410000084 ], [ -124.847361794999941, 49.526178894000083 ], [ -124.847284394000013, 49.525963913000048 ], [ -124.848281888999935, 49.525291596000073 ], [ -124.848263314999912, 49.525156299000045 ], [ -124.847872192999958, 49.525036688000071 ], [ -124.847276897999961, 49.525038108000054 ], [ -124.847321807999933, 49.52475760600008 ], [ -124.847286425999982, 49.524679879000054 ], [ -124.847216106999923, 49.524525400000059 ], [ -124.846832799999945, 49.524270504000079 ], [ -124.846365330999973, 49.523714654000059 ], [ -124.846370540999956, 49.523506328000074 ], [ -124.847664800999937, 49.523520068000067 ], [ -124.848193821, 49.523525679000095 ], [ -124.848186560999949, 49.523333128000083 ], [ -124.848600861999941, 49.523326507000043 ], [ -124.848580518999967, 49.522787100000073 ], [ -124.849823411999949, 49.522767229000081 ], [ -124.849833589999918, 49.5230369330001 ], [ -124.850247889999963, 49.523030306000109 ], [ -124.850258070999971, 49.523300009000053 ], [ -124.851500975999912, 49.523280120000081 ], [ -124.85150314900001, 49.523337642000115 ], [ -124.85151116199999, 49.523549823000039 ], [ -124.85192546699993, 49.523543190000105 ], [ -124.851912894999941, 49.523210490000061 ], [ -124.851905085999974, 49.523003784000061 ], [ -124.852436770999972, 49.52299527100012 ], [ -124.853976578999948, 49.522970600000086 ], [ -124.853986779999929, 49.523240302000062 ], [ -124.854401080999935, 49.523233661000035 ], [ -124.854441894999965, 49.524312470000069 ], [ -124.853439228999946, 49.524328542000092 ], [ -124.852784656999987, 49.524339029000039 ], [ -124.852774460999953, 49.524069326000067 ], [ -124.85194584599999, 49.524082596000092 ], [ -124.851996800000038, 49.525431110000106 ], [ -124.852411117999907, 49.525424475000079 ], [ -124.852421631999903, 49.525702656000078 ], [ -124.85381646399992, 49.525717384000146 ], [ -124.853806392999957, 49.526122746000091 ], [ -124.854197674999966, 49.526126874000113 ], [ -124.854190677999938, 49.52640863400007 ], [ -124.854497281999954, 49.526411868000096 ], [ -124.854488921999987, 49.52674849700005 ], [ -124.85490258599999, 49.526752858000059 ], [ -124.854896091999976, 49.527014427000069 ], [ -124.855201989999983, 49.527017651000079 ], [ -124.85519141799999, 49.527443640000115 ], [ -124.855552403999951, 49.527447443 ], [ -124.855552200999952, 49.527455596000088 ], [ -124.859502054999894, 49.527497141000076 ], [ -124.859444719999928, 49.529816060000044 ], [ -124.862983364999977, 49.529853157000069 ], [ -124.86292373399999, 49.532272153000051 ], [ -124.863449979999984, 49.532263675000067 ], [ -124.863457459999964, 49.532460375 ], [ -124.863588699999966, 49.532461748000031 ], [ -124.863575187, 49.533010204000043 ], [ -124.864113712999981, 49.53301583600004 ], [ -124.864101031999894, 49.533530782000064 ], [ -124.864440332999948, 49.533534329000133 ], [ -124.864428872999937, 49.533999786000081 ], [ -124.864853144999955, 49.534004220000099 ], [ -124.864840045999955, 49.534536406000058 ], [ -124.865099367000013, 49.534539115000015 ], [ -124.86508844799999, 49.534982896000081 ], [ -124.865338685999973, 49.534985510000119 ], [ -124.865299159999921, 49.536592113000076 ], [ -124.866226250999887, 49.536601791000066 ], [ -124.866202870999956, 49.537552811000118 ], [ -124.867052276999942, 49.537561673000063 ], [ -124.866996368999935, 49.539837435000067 ], [ -124.865116575999949, 49.539594871000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38362167", "BldgCostT": "26456667", "sL_LossRatio": "0.970372725442194", "sL_AssetLoss": "47179.5", "sL_BldgLoss": "45781.7", "sL_StrLoss": "39499.7", "sL_NStrLoss": "6282", "sL_ContLoss": "1397.8", "geom_point": "0101000020E610000038ABF4C900335FC0E9CED92350BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.791133081999945, 49.459462877000071 ], [ -124.791315513999933, 49.459460051000107 ], [ -124.791647577999953, 49.459454906000069 ], [ -124.792374411999916, 49.459443641000107 ], [ -124.792378981999931, 49.459568891000089 ], [ -124.792738186999912, 49.459572891000086 ], [ -124.792720276999944, 49.460258319000019 ], [ -124.792705187999942, 49.460835718000105 ], [ -124.792666634999961, 49.462311027000055 ], [ -124.792897498999977, 49.46231359700004 ], [ -124.79290918, 49.461866527000062 ], [ -124.794533628999915, 49.461884596000068 ], [ -124.794522108999971, 49.461569267000122 ], [ -124.795032126999899, 49.461561350000096 ], [ -124.795763489999956, 49.461549994000066 ], [ -124.795776224999926, 49.461898400000045 ], [ -124.798350269999972, 49.461926950000105 ], [ -124.798420758999939, 49.461995166000058 ], [ -124.798399948999972, 49.462795254000078 ], [ -124.799173025999949, 49.462803815000044 ], [ -124.799632602999949, 49.463369700000051 ], [ -124.799658774999926, 49.463409738000081 ], [ -124.79979492399994, 49.463617839000065 ], [ -124.799993928999967, 49.463921989000077 ], [ -124.800160419999926, 49.464176401000081 ], [ -124.800704995999965, 49.465185687000059 ], [ -124.801431860999955, 49.4665978150001 ], [ -124.801433020999951, 49.466600069000052 ], [ -124.801423722999957, 49.466958446 ], [ -124.800991994999961, 49.466953675000092 ], [ -124.800967260999982, 49.467906556000059 ], [ -124.798365562999948, 49.467877765 ], [ -124.798313813999968, 49.46986698000012 ], [ -124.798376295999915, 49.469867672000099 ], [ -124.798366695999917, 49.4702367370001 ], [ -124.79847791499999, 49.470237969000053 ], [ -124.798469277999942, 49.470570001000048 ], [ -124.798628728999972, 49.470571768000063 ], [ -124.798600113999896, 49.471671924000056 ], [ -124.79886558699998, 49.471674864000079 ], [ -124.798851386999928, 49.472220928000056 ], [ -124.798981014999967, 49.472222362000082 ], [ -124.79896983699993, 49.472652250000117 ], [ -124.799052139999944, 49.472653162000057 ], [ -124.7990423599999, 49.473029271000065 ], [ -124.799221855999974, 49.473031258000091 ], [ -124.799210882999915, 49.47345327600005 ], [ -124.799849457999969, 49.473460342000081 ], [ -124.799828259999941, 49.474276105000094 ], [ -124.800535581999952, 49.474283927000052 ], [ -124.800454546999902, 49.477403963000015 ], [ -124.801183346999935, 49.477412019000042 ], [ -124.801182922999914, 49.477428354000033 ], [ -124.803149673999926, 49.477450068000103 ], [ -124.803087335999948, 49.479855406000084 ], [ -124.804206579999985, 49.479867747000085 ], [ -124.804192891999946, 49.480396359000046 ], [ -124.804698993999949, 49.480401935000046 ], [ -124.80463359, 49.482928656000063 ], [ -124.804629182, 49.483098868000084 ], [ -124.804605849999973, 49.484000221000059 ], [ -124.804547629999931, 49.483999580000095 ], [ -124.803386413999988, 49.482928704000074 ], [ -124.79930806199998, 49.483007056000147 ], [ -124.798607941999933, 49.483003307000047 ], [ -124.798650982999945, 49.481348898000078 ], [ -124.798660685999934, 49.48129349900006 ], [ -124.79890962199994, 49.481307803000078 ], [ -124.799443626999931, 49.481578404000089 ], [ -124.799580498999916, 49.481522810000094 ], [ -124.799262588999923, 49.480736710000052 ], [ -124.799417209999916, 49.480490300000106 ], [ -124.799781915999972, 49.480224005000061 ], [ -124.799776020999914, 49.480053101000131 ], [ -124.799125714999917, 49.479658594000057 ], [ -124.798316609999958, 49.479410691000055 ], [ -124.797958690999977, 49.479101705000026 ], [ -124.797963204999945, 49.478443693 ], [ -124.797839400999962, 49.478069093000045 ], [ -124.796402109, 49.477298595000057 ], [ -124.796303691999938, 49.476851405000041 ], [ -124.795693496999931, 49.476815795000086 ], [ -124.795285496999938, 49.476965394000096 ], [ -124.7948566099999, 49.47696399600008 ], [ -124.794211178999916, 49.476676292000072 ], [ -124.792871596999959, 49.475878713000071 ], [ -124.792846594, 49.475590997000118 ], [ -124.79249362099992, 49.475380200000139 ], [ -124.792537595999974, 49.475073999000131 ], [ -124.792074605999971, 49.474847609000015 ], [ -124.792069607999935, 49.474712283000073 ], [ -124.792398298999942, 49.474670990000078 ], [ -124.792464506999977, 49.47456269700006 ], [ -124.792163297999934, 49.474270799000138 ], [ -124.791688897999947, 49.474115489000049 ], [ -124.790832106999972, 49.474102690000102 ], [ -124.790614414999979, 49.474186693000021 ], [ -124.790554900999922, 49.474079887000052 ], [ -124.790568986999958, 49.473342208000105 ], [ -124.790664092999975, 49.473249613000043 ], [ -124.791299418999955, 49.473266697000035 ], [ -124.791288121999969, 49.473374899000092 ], [ -124.790945208999972, 49.473389187000123 ], [ -124.79090460599997, 49.473453296000095 ], [ -124.790916377999977, 49.473749497000028 ], [ -124.791058996999965, 49.473864914000067 ], [ -124.791748985999959, 49.473890502000117 ], [ -124.791813894999962, 49.473772296000092 ], [ -124.79174898499997, 49.473125701000072 ], [ -124.790614017999985, 49.47301749800004 ], [ -124.790564998999983, 49.472469112000056 ], [ -124.790914006999941, 49.472526097000042 ], [ -124.79097830100001, 49.472822384000075 ], [ -124.79177849499996, 49.472809501 ], [ -124.791826481999976, 49.47261160000005 ], [ -124.791739819999975, 49.472469204000078 ], [ -124.791334019999951, 49.472358101000026 ], [ -124.791034997999958, 49.472074608000042 ], [ -124.791778806999957, 49.47202758800011 ], [ -124.79229498199993, 49.471831097000113 ], [ -124.792767095999977, 49.471482200000082 ], [ -124.792932709999945, 49.471496410000029 ], [ -124.793215892999982, 49.471681616000076 ], [ -124.793600289000011, 49.471675909000083 ], [ -124.793819016999976, 49.471573294000045 ], [ -124.793870199999958, 49.471104785000151 ], [ -124.794054581999973, 49.470831296000071 ], [ -124.794029700999928, 49.470535097000024 ], [ -124.793908593999959, 49.469511109000059 ], [ -124.793685096999965, 49.468705014000072 ], [ -124.793044203999912, 49.467743610000113 ], [ -124.792775514999974, 49.467568407000087 ], [ -124.792652678999929, 49.467237997000048 ], [ -124.792752106999927, 49.466938909000092 ], [ -124.79314659899994, 49.466393490000073 ], [ -124.793007607999954, 49.465271209000086 ], [ -124.793728108, 49.464540606000121 ], [ -124.793733488999976, 49.464315604000021 ], [ -124.79371628, 49.464252899000073 ], [ -124.793399682999976, 49.464275698000051 ], [ -124.792996409999901, 49.463445411000066 ], [ -124.792005992999947, 49.463523700000053 ], [ -124.791554600999959, 49.463647611000042 ], [ -124.791575010999949, 49.463439691000119 ], [ -124.792062091999952, 49.463153393000013 ], [ -124.791895798999974, 49.462768907000054 ], [ -124.791928188999947, 49.462166397000033 ], [ -124.791738705999961, 49.461854489000089 ], [ -124.791308633999947, 49.461793576000083 ], [ -124.790532098999918, 49.461683587000032 ], [ -124.789761310999893, 49.461740590000034 ], [ -124.789438215999979, 49.461961306000077 ], [ -124.789107488999989, 49.461994110000056 ], [ -124.787154397999942, 49.461826007000091 ], [ -124.787180088999932, 49.461736309000123 ], [ -124.787681886999977, 49.461529806000051 ], [ -124.788641114999919, 49.460940201000021 ], [ -124.788932989999964, 49.460584099000108 ], [ -124.789022700999951, 49.460051488000083 ], [ -124.788483612999968, 49.459646999000043 ], [ -124.787752100999953, 49.459666887000083 ], [ -124.787406792999931, 49.459987404000081 ], [ -124.78698359699996, 49.460128406000095 ], [ -124.786194897999906, 49.460078501000069 ], [ -124.786027000999979, 49.459990195000088 ], [ -124.785497177999957, 49.46001813400003 ], [ -124.78549818499998, 49.459979837000063 ], [ -124.787212343999926, 49.459999020000033 ], [ -124.787225143999933, 49.459511378000151 ], [ -124.791136442999985, 49.459555048000048 ], [ -124.791133081999945, 49.459462877000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73285500", "BldgCostT": "50070000", "sL_LossRatio": "0.977713990380726", "sL_AssetLoss": "60328.88", "sL_BldgLoss": "58984.39", "sL_StrLoss": "52533.39", "sL_NStrLoss": "6451", "sL_ContLoss": "1344.49", "geom_point": "0101000020E6100000C2916A4C06355FC036DF35A62FC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.838488790999946, 49.516964303000066 ], [ -124.838046491999933, 49.516954288000079 ], [ -124.837441288999983, 49.517029699 ], [ -124.837459517999918, 49.516306186000072 ], [ -124.83853243799993, 49.51631766700006 ], [ -124.83853826799999, 49.516086051000073 ], [ -124.838444528999958, 49.51608504900004 ], [ -124.838460280999939, 49.515459324000076 ], [ -124.838266058999935, 49.515457246000011 ], [ -124.838292573999979, 49.514404138 ], [ -124.837663681999942, 49.514397407000097 ], [ -124.837621141999989, 49.516086111000078 ], [ -124.835987541999913, 49.516068612000055 ], [ -124.83577156699999, 49.515669235000075 ], [ -124.835596110999944, 49.515018600000055 ], [ -124.835434341, 49.51360691900009 ], [ -124.835208519999952, 49.513148312000055 ], [ -124.834907793999889, 49.512758178000098 ], [ -124.834258503999976, 49.51207186200007 ], [ -124.833907983999936, 49.511741499000024 ], [ -124.833278290999942, 49.511152600000067 ], [ -124.832077707999957, 49.510273191000039 ], [ -124.830921072999942, 49.509239486000133 ], [ -124.830446885999919, 49.508728711000096 ], [ -124.827649655999949, 49.506156704000148 ], [ -124.827540588999909, 49.506056404000091 ], [ -124.825504380999945, 49.504347300000056 ], [ -124.823996885999961, 49.502744715000091 ], [ -124.823778618999981, 49.50244673 ], [ -124.823628785999986, 49.502242201000044 ], [ -124.823530604999959, 49.50192798600002 ], [ -124.823496388999928, 49.501643291000043 ], [ -124.823458193999926, 49.500219099000084 ], [ -124.823457480999963, 49.500192403 ], [ -124.82345232199998, 49.500003373000069 ], [ -124.823430631999926, 49.499212207000049 ], [ -124.823427204999959, 49.49908632000011 ], [ -124.823422011999966, 49.498897509000081 ], [ -124.823419589999972, 49.498808995000061 ], [ -124.82329340299998, 49.49850980500004 ], [ -124.822956398999935, 49.498091314000085 ], [ -124.822433509999911, 49.497439593000131 ], [ -124.822254658999938, 49.497245021 ], [ -124.821491218999952, 49.49641435900007 ], [ -124.820960808999956, 49.495837198000082 ], [ -124.82084798399994, 49.49571981900008 ], [ -124.82070975299996, 49.495576058000047 ], [ -124.819751200999946, 49.494578805000053 ], [ -124.819667188, 49.494506190000067 ], [ -124.819282795999968, 49.494174102000088 ], [ -124.817629010999923, 49.492863109000027 ], [ -124.816565106, 49.492118209000076 ], [ -124.815960008999951, 49.491774100000029 ], [ -124.81497210199997, 49.491293703000046 ], [ -124.814181429999934, 49.491016623000093 ], [ -124.8138509, 49.490900799000073 ], [ -124.812051289999943, 49.490336709000069 ], [ -124.811753578999969, 49.490218298000045 ], [ -124.811525487999958, 49.490126712000055 ], [ -124.811117877999948, 49.489918014000104 ], [ -124.81097408799998, 49.489844397000105 ], [ -124.810458407999931, 49.489512092000083 ], [ -124.809844096999967, 49.488992513000028 ], [ -124.809511584999925, 49.488673916000096 ], [ -124.808865404, 49.488057458000064 ], [ -124.808582803999911, 49.487787847000028 ], [ -124.80835826199997, 49.487573643000125 ], [ -124.808183352999961, 49.487406777000039 ], [ -124.808053774999948, 49.48728315900005 ], [ -124.80790267099999, 49.487139033000069 ], [ -124.80682118699994, 49.486107227000097 ], [ -124.80647159099999, 49.485773714000068 ], [ -124.805758222999927, 49.485115924000077 ], [ -124.80504257799997, 49.484456002000059 ], [ -124.810272794999932, 49.484513473000057 ], [ -124.810263540999955, 49.484262595000089 ], [ -124.81067752300001, 49.484256113000079 ], [ -124.810667573999979, 49.483986402000028 ], [ -124.809425635999986, 49.484005842000087 ], [ -124.809405750999957, 49.483466419000067 ], [ -124.808991776999974, 49.483472895000048 ], [ -124.808981837999909, 49.483203186000075 ], [ -124.808567863999926, 49.483209660000064 ], [ -124.808563375999967, 49.483087813000111 ], [ -124.808557926999953, 49.482939948000087 ], [ -124.808143956, 49.482946423000108 ], [ -124.808137519999931, 49.482771682000084 ], [ -124.808084348999898, 49.481328155000028 ], [ -124.807670393999928, 49.481334627000116 ], [ -124.807630666999984, 49.480255781000032 ], [ -124.808458077999958, 49.480242844000102 ], [ -124.808668675999925, 49.480651697000035 ], [ -124.808919796999959, 49.481080098000128 ], [ -124.809549600999929, 49.481956318000087 ], [ -124.809825012999937, 49.48225470200002 ], [ -124.810129315999916, 49.482584397000082 ], [ -124.810425937999952, 49.482855923000024 ], [ -124.810729839999965, 49.482856609000059 ], [ -124.81186861899999, 49.482859161000121 ], [ -124.811879641999951, 49.483157818000088 ], [ -124.812293614999973, 49.483151331000023 ], [ -124.812335283999971, 49.484279891 ], [ -124.812379444999976, 49.485475932000021 ], [ -124.813160177999947, 49.485484474000039 ], [ -124.813876950999926, 49.485492312000126 ], [ -124.813790126999919, 49.488872034000082 ], [ -124.817793409999979, 49.48891571900009 ], [ -124.81778609499996, 49.489201370000096 ], [ -124.818377003999984, 49.489207805000092 ], [ -124.818369153999924, 49.489514525000054 ], [ -124.81889890299999, 49.489520292000094 ], [ -124.81889135699997, 49.489815288000067 ], [ -124.81939610399999, 49.489820780000052 ], [ -124.81938371699998, 49.49030514600004 ], [ -124.82016680199996, 49.490313661000116 ], [ -124.820155789999916, 49.490744605000039 ], [ -124.820739305999936, 49.490750947000016 ], [ -124.820720400999903, 49.491491149000076 ], [ -124.82164821799995, 49.491501226000061 ], [ -124.821640633999905, 49.49179841700002 ], [ -124.821990722999956, 49.491802218000039 ], [ -124.821981848999954, 49.492150013000135 ], [ -124.822451226999945, 49.492155107000031 ], [ -124.822448227999985, 49.492272684000099 ], [ -124.822965513999961, 49.492278295000098 ], [ -124.82294520499994, 49.493074885000034 ], [ -124.82359044, 49.493081880000027 ], [ -124.823581220999955, 49.493443689000088 ], [ -124.823921150999965, 49.493447373000038 ], [ -124.823911122999959, 49.493841002000096 ], [ -124.824276860999944, 49.493844964000068 ], [ -124.824268372999981, 49.494178217000048 ], [ -124.824632165999915, 49.494182156000107 ], [ -124.824613488999972, 49.494915766000112 ], [ -124.825442180999929, 49.49492473700009 ], [ -124.825425813999942, 49.495568012000014 ], [ -124.826368985999977, 49.495578215000108 ], [ -124.826356085999919, 49.496085650000104 ], [ -124.827220582999971, 49.496094993000021 ], [ -124.827209464999925, 49.496532649000095 ], [ -124.829010458999974, 49.496552094000066 ], [ -124.829021038999954, 49.496135021000022 ], [ -124.834538509999902, 49.49619440500004 ], [ -124.834521308999982, 49.496875738000071 ], [ -124.835057530999933, 49.496881494000107 ], [ -124.834966718999965, 49.500479719000111 ], [ -124.834961633999953, 49.500479664000089 ], [ -124.834918917999914, 49.502172016000038 ], [ -124.831737388999926, 49.502137823000034 ], [ -124.831729307999964, 49.502457094000121 ], [ -124.831035542999985, 49.502449626000065 ], [ -124.83100345299998, 49.50371660900003 ], [ -124.830524546, 49.503711452000083 ], [ -124.830522603999924, 49.50378811200008 ], [ -124.83296223399995, 49.503814365000018 ], [ -124.832954962999978, 49.504101867000031 ], [ -124.833985511999941, 49.504112940000063 ], [ -124.83391345299999, 49.506965055000116 ], [ -124.834238074999988, 49.506968542000045 ], [ -124.834229085999937, 49.507324420000025 ], [ -124.834705081, 49.50732953000005 ], [ -124.834694811999938, 49.507736222000084 ], [ -124.834993092999952, 49.507739423000096 ], [ -124.83496626099999, 49.508802322000058 ], [ -124.836827649999975, 49.508822280000111 ], [ -124.836846225999949, 49.508085249000089 ], [ -124.842365135999941, 49.508144234000135 ], [ -124.842323122999957, 49.509819061000023 ], [ -124.844189241999985, 49.509838942000052 ], [ -124.844681249999894, 49.509844178000066 ], [ -124.844656425999972, 49.510835747000073 ], [ -124.845475580999931, 49.510844461000048 ], [ -124.845453064999958, 49.511744407000066 ], [ -124.845448859999962, 49.511912444000068 ], [ -124.845418556999931, 49.513123589000045 ], [ -124.845810605999958, 49.513127758000081 ], [ -124.845765782999962, 49.5149197490001 ], [ -124.84476917299996, 49.514957595000077 ], [ -124.844448817999933, 49.515215405000049 ], [ -124.844134104999966, 49.516940861000087 ], [ -124.84353064, 49.516934437000067 ], [ -124.842965286999956, 49.516928415000095 ], [ -124.842958094000011, 49.517215266000086 ], [ -124.842427189, 49.517324610000067 ], [ -124.841627480999961, 49.517355998000028 ], [ -124.840437599999987, 49.517311785000054 ], [ -124.838672413999959, 49.51706110600005 ], [ -124.838488790999946, 49.516964303000066 ] ], [ [ -124.810721852999961, 49.485457778000068 ], [ -124.810717320999956, 49.485334957000077 ], [ -124.810509045999979, 49.485338218000059 ], [ -124.810506027999963, 49.485455413000096 ], [ -124.810721852999961, 49.485457778000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.971273992013397", "sL_AssetLoss": "776.3", "sL_BldgLoss": "754", "sL_StrLoss": "641", "sL_NStrLoss": "113", "sL_ContLoss": "22.3", "geom_point": "0101000020E61000009836564110325FC08F69758BA3BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.781586834, 49.458800759000113 ], [ -124.78157705199996, 49.458531043000079 ], [ -124.78116328099999, 49.458537418000056 ], [ -124.781133947999976, 49.457728268000025 ], [ -124.781961475999978, 49.457715517000082 ], [ -124.781951694999947, 49.457445801000112 ], [ -124.783192979999939, 49.457426664000124 ], [ -124.783232136, 49.458505528000089 ], [ -124.78281836599993, 49.458511910000034 ], [ -124.78282815399993, 49.458781626000125 ], [ -124.781586834, 49.458800759000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22929334", "BldgCostT": "15813334", "sL_LossRatio": "0.967878878954091", "sL_AssetLoss": "29279.8", "sL_BldgLoss": "28339.3", "sL_StrLoss": "23663.6", "sL_NStrLoss": "4675.7", "sL_ContLoss": "940.5", "geom_point": "0101000020E6100000A2909E0179315FC051B0AD3C54BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.771192308999929, 49.466901887000063 ], [ -124.770303304999985, 49.466780904000125 ], [ -124.769268512999986, 49.466806504000076 ], [ -124.768364601999934, 49.466577186000059 ], [ -124.767130701999974, 49.466416304000063 ], [ -124.766763797999928, 49.466223989000085 ], [ -124.765862700999918, 49.466084394000099 ], [ -124.765171714999923, 49.465700181000095 ], [ -124.765207932999914, 49.464345242000036 ], [ -124.768656525999958, 49.464384449000107 ], [ -124.768661804999937, 49.464186428000076 ], [ -124.768973226999933, 49.464189963000081 ], [ -124.768986119999923, 49.463706134000049 ], [ -124.76919098599997, 49.463708459000053 ], [ -124.769194210999899, 49.46358737 ], [ -124.767369495999944, 49.463566648000047 ], [ -124.767465499, 49.459968286000105 ], [ -124.767797805999948, 49.459972063000073 ], [ -124.767828552999902, 49.458819191000032 ], [ -124.773341486999925, 49.458881690000112 ], [ -124.773338595, 49.458990594000099 ], [ -124.774176561999965, 49.459000069000098 ], [ -124.774081083999974, 49.462598441000083 ], [ -124.77291072499996, 49.462585206000035 ], [ -124.7728986899999, 49.463038336000032 ], [ -124.774335876999956, 49.463054588000048 ], [ -124.774393169999897, 49.460894962000033 ], [ -124.774493488999951, 49.460896095000109 ], [ -124.774507096999983, 49.460383064000013 ], [ -124.78002022699998, 49.460445222000025 ], [ -124.780011773999988, 49.460765364000061 ], [ -124.780442729999905, 49.460770212000057 ], [ -124.78043641, 49.461009623000095 ], [ -124.780237416999924, 49.460961496000039 ], [ -124.779966901999927, 49.46073219400008 ], [ -124.779559513999956, 49.460558502000048 ], [ -124.77921819899997, 49.460652498000073 ], [ -124.779640101000012, 49.461240697000108 ], [ -124.780111696999967, 49.461665099000101 ], [ -124.78023212, 49.462697605000066 ], [ -124.780392131, 49.462686977000033 ], [ -124.780347734999978, 49.464368580000048 ], [ -124.779816419999946, 49.464362604000065 ], [ -124.779811324999955, 49.464555493000056 ], [ -124.774685227999967, 49.464497703000063 ], [ -124.774667505999972, 49.465165846000062 ], [ -124.774669817999921, 49.465165872000085 ], [ -124.774658479999943, 49.465593290000108 ], [ -124.778035318, 49.465631387000052 ], [ -124.778013874999914, 49.466442020000045 ], [ -124.778232558999946, 49.466444484000121 ], [ -124.778195130999933, 49.46785958100007 ], [ -124.778183005999935, 49.467901693000051 ], [ -124.777943802999914, 49.468129595000029 ], [ -124.777530876999961, 49.468180893000124 ], [ -124.777296820999979, 49.468572500000057 ], [ -124.776916878999913, 49.468739096000043 ], [ -124.775926203999987, 49.46845861200012 ], [ -124.774223887999952, 49.468304809000074 ], [ -124.772775678999906, 49.467948696000121 ], [ -124.77250868899992, 49.467844702000072 ], [ -124.771192308999929, 49.466901887000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.984361508203013", "sL_AssetLoss": "521.15", "sL_BldgLoss": "513", "sL_StrLoss": "485", "sL_NStrLoss": "28", "sL_ContLoss": "8.15", "geom_point": "0101000020E61000007994296A19365FC01807D9AA0BC24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.844941005999971, 49.515458893000094 ], [ -124.845177588999931, 49.515131295000089 ], [ -124.845759966999964, 49.515152263000083 ], [ -124.845720601, 49.516725906000083 ], [ -124.844720488999954, 49.516715271000074 ], [ -124.844941005999971, 49.515458893000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202062001", "BldgCostT": "138090001", "sL_LossRatio": "0.963300422223008", "sL_AssetLoss": "251596.9", "sL_BldgLoss": "242363.4", "sL_StrLoss": "207672.8", "sL_NStrLoss": "34690.6", "sL_ContLoss": "9233.5", "geom_point": "0101000020E610000085355B9A97335FC0C16AF2B563BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.83210128899999, 49.51602688500008 ], [ -124.832154438999936, 49.513926880000056 ], [ -124.832393282999973, 49.513930700000039 ], [ -124.832422294999958, 49.513597514 ], [ -124.832595303999966, 49.513423698000118 ], [ -124.833181703999983, 49.513567600000087 ], [ -124.833442998999956, 49.513554697000075 ], [ -124.833520804, 49.513382391000093 ], [ -124.833895992999913, 49.513079090000154 ], [ -124.834102703999989, 49.513094690000102 ], [ -124.834677276999969, 49.513697197000106 ], [ -124.834917283999971, 49.51378260200002 ], [ -124.835124884999928, 49.513788300000016 ], [ -124.83509839499996, 49.513456514000055 ], [ -124.834598718999985, 49.513032104000068 ], [ -124.833618388999923, 49.511582212000086 ], [ -124.832055286999932, 49.510401492000092 ], [ -124.831578783999987, 49.509895897000078 ], [ -124.830554814, 49.509094091000065 ], [ -124.829619388999944, 49.508091503000109 ], [ -124.82898359299999, 49.507688416000086 ], [ -124.828308990999943, 49.506997701000095 ], [ -124.827722597, 49.506853811000028 ], [ -124.827614109999971, 49.5065405 ], [ -124.82725177699993, 49.50615679100013 ], [ -124.826752080999981, 49.505627602000111 ], [ -124.826092480999961, 49.505016602000126 ], [ -124.824947408999932, 49.504315888000065 ], [ -124.824600978999911, 49.503880100000025 ], [ -124.824544513999982, 49.503845897000105 ], [ -124.824452204999915, 49.503954091000082 ], [ -124.824608393999966, 49.504446913000081 ], [ -124.824540699999943, 49.504475395000092 ], [ -124.824401984999895, 49.504459700000055 ], [ -124.824226612999894, 49.504218994000027 ], [ -124.82318509699999, 49.50444260400014 ], [ -124.821964238999939, 49.504297459000078 ], [ -124.821972009999953, 49.503992988000043 ], [ -124.821571816999978, 49.503988645000099 ], [ -124.821663680999947, 49.500390449000044 ], [ -124.821670634, 49.500390524000082 ], [ -124.821683220999915, 49.499897417000078 ], [ -124.820957642999957, 49.499889539000023 ], [ -124.820977323999969, 49.499119000000107 ], [ -124.820759681999974, 49.499116636000068 ], [ -124.820776114999887, 49.498473364000077 ], [ -124.819832886999947, 49.498463114000067 ], [ -124.819851641999946, 49.49772950900006 ], [ -124.819022899999979, 49.497720494000085 ], [ -124.819031425999967, 49.497387245000084 ], [ -124.818667607999913, 49.497383286000094 ], [ -124.81867768099994, 49.496989660000075 ], [ -124.818576567999955, 49.496988559000023 ], [ -124.818615794999957, 49.496706306000085 ], [ -124.818599506999988, 49.496256299000059 ], [ -124.818452906999951, 49.496052601000017 ], [ -124.818172501999967, 49.495894489000086 ], [ -124.81799912799994, 49.495921082000059 ], [ -124.818001623999976, 49.495823586000022 ], [ -124.817356351999948, 49.49581655700009 ], [ -124.817359362999923, 49.495698981000068 ], [ -124.816842040999944, 49.495693343000049 ], [ -124.816850953999975, 49.495345550000081 ], [ -124.816381542999977, 49.495340432 ], [ -124.816389161999922, 49.49504324300009 ], [ -124.816039048999968, 49.495039424000069 ], [ -124.816058031999944, 49.494299228000102 ], [ -124.815229232999968, 49.49429018400005 ], [ -124.815187092999977, 49.495932081000078 ], [ -124.81513620699991, 49.495943003000065 ], [ -124.814732101999937, 49.49626341200014 ], [ -124.814296797999987, 49.496422894000041 ], [ -124.813067212999897, 49.496388702000047 ], [ -124.81268539699991, 49.496915713000085 ], [ -124.812542895999954, 49.496931878000034 ], [ -124.811575063999982, 49.496921286000081 ], [ -124.811566785999929, 49.497242835000129 ], [ -124.81137268399999, 49.497647698000051 ], [ -124.809617492999934, 49.497980990000023 ], [ -124.809584007999916, 49.497995802000105 ], [ -124.80602918799994, 49.497956758000036 ], [ -124.806064678, 49.496584628000015 ], [ -124.805375446999946, 49.49657704500008 ], [ -124.805418248999928, 49.494923054000068 ], [ -124.802171126999937, 49.494887267000074 ], [ -124.802186772, 49.494284319000052 ], [ -124.800783862999964, 49.494268827000099 ], [ -124.800767513000011, 49.494898182000099 ], [ -124.800992616999949, 49.494900669000124 ], [ -124.800985478999962, 49.495175490000051 ], [ -124.80148951399994, 49.495181057000153 ], [ -124.8014836239999, 49.495407923000101 ], [ -124.802245898999956, 49.495416338000098 ], [ -124.802234195999986, 49.495867380000057 ], [ -124.802818305999921, 49.495873825000039 ], [ -124.80280812399991, 49.496266418000076 ], [ -124.803532601999933, 49.496274407000087 ], [ -124.803520981999895, 49.496722707000124 ], [ -124.80429070199996, 49.496731189000101 ], [ -124.804281821999979, 49.497073990000075 ], [ -124.804825301, 49.497079975000105 ], [ -124.80481867499995, 49.497335869000089 ], [ -124.805526190999956, 49.497343658000062 ], [ -124.805498068999952, 49.498430435000088 ], [ -124.806988201999928, 49.498446823000066 ], [ -124.806956546, 49.49967165000001 ], [ -124.80724496699996, 49.499674819000049 ], [ -124.807237856999933, 49.499949935000075 ], [ -124.80811682699999, 49.49995959000006 ], [ -124.808271088999945, 49.500061789000021 ], [ -124.808349909999933, 49.500347996000038 ], [ -124.808638493999965, 49.500631487000092 ], [ -124.809028408999964, 49.502613993000104 ], [ -124.808735791999979, 49.504075188000115 ], [ -124.808526604999912, 49.504736011000084 ], [ -124.808341411999919, 49.504936791 ], [ -124.808272517, 49.505324206000047 ], [ -124.807650899999928, 49.5057115930001 ], [ -124.806973597999985, 49.505731598000104 ], [ -124.806460504, 49.505631898000097 ], [ -124.804999418999955, 49.504961102000053 ], [ -124.804544808999964, 49.504626389000066 ], [ -124.803648979999977, 49.504317298000053 ], [ -124.802650821999976, 49.503828800000065 ], [ -124.801391381999963, 49.503398693000122 ], [ -124.800499678999969, 49.50279199700006 ], [ -124.799841597999958, 49.502568401000133 ], [ -124.799218890999938, 49.502145395000106 ], [ -124.798628921999949, 49.501921799000058 ], [ -124.797554908999984, 49.500876402000102 ], [ -124.796501487999961, 49.500011912000048 ], [ -124.79604901099998, 49.499739894000044 ], [ -124.795817276999927, 49.499419496000058 ], [ -124.794901596, 49.498912410000031 ], [ -124.793763580999951, 49.49881279800006 ], [ -124.793142195999934, 49.49840829900009 ], [ -124.792640213999931, 49.49790270600009 ], [ -124.792427300999989, 49.496971205000101 ], [ -124.792161112, 49.496479905000079 ], [ -124.792150170999903, 49.496470066000057 ], [ -124.791945692999974, 49.496286189000038 ], [ -124.792066298999927, 49.494269500000073 ], [ -124.791438172999946, 49.493352294000047 ], [ -124.790777602999952, 49.492678712000071 ], [ -124.790655315, 49.492338301000096 ], [ -124.790685201, 49.491627590000114 ], [ -124.790852219999948, 49.491651797000095 ], [ -124.790951307999975, 49.491758599000029 ], [ -124.792173979999973, 49.491938098000055 ], [ -124.792734395, 49.492171705 ], [ -124.793329399999948, 49.492567614000087 ], [ -124.793816998999958, 49.492694296000082 ], [ -124.79507268899998, 49.493449194000029 ], [ -124.795688000999959, 49.493637199000091 ], [ -124.796226197999943, 49.494024594000059 ], [ -124.796817207999965, 49.494266694000032 ], [ -124.797311999000016, 49.494582788000109 ], [ -124.797668404999939, 49.494560099000132 ], [ -124.798700890999953, 49.494075808000048 ], [ -124.799194201999939, 49.493583105000042 ], [ -124.799176011999947, 49.493493294000118 ], [ -124.798746790999928, 49.493409302000011 ], [ -124.798464614999915, 49.492919406000048 ], [ -124.798119407999963, 49.492888010000108 ], [ -124.798175993999934, 49.493679897000113 ], [ -124.797593904999943, 49.493607298000072 ], [ -124.797530507999923, 49.493060405000016 ], [ -124.79684948499991, 49.492512006000076 ], [ -124.796842490999936, 49.492359693000054 ], [ -124.797162378999985, 49.492057700000018 ], [ -124.797251615999926, 49.491831298000072 ], [ -124.7971640199999, 49.491329998 ], [ -124.796972822999962, 49.490999506000037 ], [ -124.796588509999978, 49.490681896000105 ], [ -124.796711099999968, 49.490247606000032 ], [ -124.797038493999978, 49.489757589000114 ], [ -124.797014386999962, 49.4876255900001 ], [ -124.796884298999942, 49.487097211000076 ], [ -124.796296789999971, 49.486521803000052 ], [ -124.796102580999943, 49.486110192000048 ], [ -124.796143512999947, 49.48571429000004 ], [ -124.795963610999934, 49.485329805000042 ], [ -124.79637472, 49.48521580200007 ], [ -124.796863518999928, 49.485352506000062 ], [ -124.797262880999966, 49.485372496000053 ], [ -124.797285704999965, 49.484832699000087 ], [ -124.797993413999947, 49.484200393000052 ], [ -124.798051397999927, 49.483875611000073 ], [ -124.798011138999982, 49.4836721900001 ], [ -124.799096508999952, 49.483684208000057 ], [ -124.799103621999976, 49.483410707000111 ], [ -124.798597487999956, 49.483405104000049 ], [ -124.798607941999933, 49.483003307000047 ], [ -124.79930806199998, 49.483007056000147 ], [ -124.803386413999988, 49.482928704000074 ], [ -124.804547629999931, 49.483999580000095 ], [ -124.800982711999922, 49.483960247000041 ], [ -124.800933368999907, 49.485860434000053 ], [ -124.800943569, 49.485860547000115 ], [ -124.800935708999972, 49.486163226000066 ], [ -124.801324255999944, 49.486167519000027 ], [ -124.801328228999964, 49.486014502000074 ], [ -124.803478075999948, 49.486038228000098 ], [ -124.803513321999986, 49.484678053000103 ], [ -124.805007995, 49.484694524000069 ], [ -124.805014175999958, 49.484455690000132 ], [ -124.80504257799997, 49.484456002000059 ], [ -124.805758222999927, 49.485115924000077 ], [ -124.80647159099999, 49.485773714000068 ], [ -124.80682118699994, 49.486107227000097 ], [ -124.80790267099999, 49.487139033000069 ], [ -124.808053774999948, 49.48728315900005 ], [ -124.808183352999961, 49.487406777000039 ], [ -124.80835826199997, 49.487573643000125 ], [ -124.808582803999911, 49.487787847000028 ], [ -124.808865404, 49.488057458000064 ], [ -124.809511584999925, 49.488673916000096 ], [ -124.809844096999967, 49.488992513000028 ], [ -124.810458407999931, 49.489512092000083 ], [ -124.81097408799998, 49.489844397000105 ], [ -124.811117877999948, 49.489918014000104 ], [ -124.811525487999958, 49.490126712000055 ], [ -124.811753578999969, 49.490218298000045 ], [ -124.812051289999943, 49.490336709000069 ], [ -124.8138509, 49.490900799000073 ], [ -124.814181429999934, 49.491016623000093 ], [ -124.81497210199997, 49.491293703000046 ], [ -124.815960008999951, 49.491774100000029 ], [ -124.816565106, 49.492118209000076 ], [ -124.817629010999923, 49.492863109000027 ], [ -124.819282795999968, 49.494174102000088 ], [ -124.819667188, 49.494506190000067 ], [ -124.819751200999946, 49.494578805000053 ], [ -124.82070975299996, 49.495576058000047 ], [ -124.82084798399994, 49.49571981900008 ], [ -124.820960808999956, 49.495837198000082 ], [ -124.821491218999952, 49.49641435900007 ], [ -124.822254658999938, 49.497245021 ], [ -124.822433509999911, 49.497439593000131 ], [ -124.822956398999935, 49.498091314000085 ], [ -124.82329340299998, 49.49850980500004 ], [ -124.823419589999972, 49.498808995000061 ], [ -124.823422011999966, 49.498897509000081 ], [ -124.823427204999959, 49.49908632000011 ], [ -124.823430631999926, 49.499212207000049 ], [ -124.82345232199998, 49.500003373000069 ], [ -124.823457480999963, 49.500192403 ], [ -124.823458193999926, 49.500219099000084 ], [ -124.823496388999928, 49.501643291000043 ], [ -124.823530604999959, 49.50192798600002 ], [ -124.823628785999986, 49.502242201000044 ], [ -124.823778618999981, 49.50244673 ], [ -124.823996885999961, 49.502744715000091 ], [ -124.825504380999945, 49.504347300000056 ], [ -124.827540588999909, 49.506056404000091 ], [ -124.827649655999949, 49.506156704000148 ], [ -124.830446885999919, 49.508728711000096 ], [ -124.830921072999942, 49.509239486000133 ], [ -124.832077707999957, 49.510273191000039 ], [ -124.833278290999942, 49.511152600000067 ], [ -124.833907983999936, 49.511741499000024 ], [ -124.834258503999976, 49.51207186200007 ], [ -124.834907793999889, 49.512758178000098 ], [ -124.835208519999952, 49.513148312000055 ], [ -124.835434341, 49.51360691900009 ], [ -124.835596110999944, 49.515018600000055 ], [ -124.83577156699999, 49.515669235000075 ], [ -124.835987541999913, 49.516068612000055 ], [ -124.83210128899999, 49.51602688500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13775000", "BldgCostT": "9500000", "sL_LossRatio": "0.976761759506395", "sL_AssetLoss": "14424.5", "sL_BldgLoss": "14089.3", "sL_StrLoss": "12510", "sL_NStrLoss": "1579.3", "sL_ContLoss": "335.2", "geom_point": "0101000020E6100000067DAF4246355FC0B250A54501CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.830748162999939, 49.595743512000062 ], [ -124.830771454999962, 49.594826026000064 ], [ -124.83209536399994, 49.594840247000057 ], [ -124.832130384, 49.593459157000048 ], [ -124.832477093999941, 49.593462879000107 ], [ -124.832490793999952, 49.592922395000059 ], [ -124.830932361999956, 49.592905659000067 ], [ -124.830985428999909, 49.590814815000023 ], [ -124.831023649999977, 49.589308730000042 ], [ -124.829452025999927, 49.589291829000068 ], [ -124.829543443999938, 49.585694071000049 ], [ -124.835071639999938, 49.585753421000057 ], [ -124.835031581999942, 49.587337464000015 ], [ -124.837615117000013, 49.587365104000085 ], [ -124.837621295999952, 49.587377191 ], [ -124.837613299999987, 49.588294407000078 ], [ -124.838490705999959, 49.589153184000033 ], [ -124.838603892999984, 49.589610390000132 ], [ -124.838552695999937, 49.589728612000066 ], [ -124.838161201999981, 49.589950790000067 ], [ -124.837935216999981, 49.590610206000058 ], [ -124.837689203999929, 49.590668585000095 ], [ -124.837242621999962, 49.590594504000109 ], [ -124.836375112999974, 49.590689891000075 ], [ -124.835985620999963, 49.59099190200007 ], [ -124.836046590999942, 49.591531599000085 ], [ -124.835949786999947, 49.592981506000079 ], [ -124.836340902999936, 49.593478508000018 ], [ -124.836524698999952, 49.594294600000069 ], [ -124.836774508999923, 49.594667696000073 ], [ -124.837136383999919, 49.595103490000035 ], [ -124.837761584999924, 49.595569291000054 ], [ -124.837601013, 49.595707403000098 ], [ -124.837269495999976, 49.595685993000053 ], [ -124.83690590399999, 49.595583491000141 ], [ -124.836141409999968, 49.595892592000084 ], [ -124.835484208999929, 49.596415184000065 ], [ -124.835221110999967, 49.596806902 ], [ -124.832774192999949, 49.59874381300007 ], [ -124.832201517, 49.599310696000032 ], [ -124.831015806999972, 49.600938494000076 ], [ -124.830861493000015, 49.601616494000019 ], [ -124.831057309, 49.602368384000101 ], [ -124.831306407999975, 49.602742982000095 ], [ -124.831347395999927, 49.603129000000109 ], [ -124.83180080899993, 49.603391007000084 ], [ -124.831814782999984, 49.603427394000065 ], [ -124.827949027999949, 49.603385823000153 ], [ -124.827878805, 49.603264300000028 ], [ -124.827760010999924, 49.602700303000056 ], [ -124.827245293999965, 49.601852905000044 ], [ -124.827153791999976, 49.601278890000039 ], [ -124.826862845, 49.600531988000149 ], [ -124.82690005799999, 49.599071141000124 ], [ -124.827172288999989, 49.599074076000065 ], [ -124.82719620200001, 49.598135046000017 ], [ -124.827546695999899, 49.598138824000067 ], [ -124.827558314999962, 49.597682454000051 ], [ -124.828091692999976, 49.597688201000047 ], [ -124.828101013999955, 49.597321867000097 ], [ -124.828639368999944, 49.59732766500008 ], [ -124.828770213999931, 49.597329073 ], [ -124.828808173999974, 49.595836380000058 ], [ -124.830001044999918, 49.595849216000047 ], [ -124.830003932999972, 49.595735510000047 ], [ -124.830748162999939, 49.595743512000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16573501", "BldgCostT": "11430001", "sL_LossRatio": "0.971500187327272", "sL_AssetLoss": "19564.69", "sL_BldgLoss": "19007.1", "sL_StrLoss": "16609.2", "sL_NStrLoss": "2397.9", "sL_ContLoss": "557.59", "geom_point": "0101000020E61000004DAD73E3C8305FC0283C2ECBD3C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.765937161999886, 49.54381920400008 ], [ -124.765954671999964, 49.543164907000097 ], [ -124.765486984999939, 49.543159594000059 ], [ -124.765495442999949, 49.542843670000103 ], [ -124.763369482999934, 49.542819495000096 ], [ -124.763361885999956, 49.543102795000031 ], [ -124.762188555999984, 49.543089435000091 ], [ -124.762185944999914, 49.543186723000126 ], [ -124.759787568999982, 49.543159375000073 ], [ -124.759784057, 49.543289983000044 ], [ -124.757748360999983, 49.543266729000038 ], [ -124.757176182999984, 49.542713995000049 ], [ -124.756537809999926, 49.542219809000073 ], [ -124.756381723999951, 49.541894310000018 ], [ -124.756148502999949, 49.541408008000069 ], [ -124.75580690699995, 49.541116010000032 ], [ -124.755440793999966, 49.54018600600007 ], [ -124.755352307999928, 49.539278798000062 ], [ -124.755163893999963, 49.539021002 ], [ -124.755328143999975, 49.537379766000115 ], [ -124.755429776999904, 49.536364251000045 ], [ -124.755672694999959, 49.536367034000065 ], [ -124.755717463999986, 49.534707662000088 ], [ -124.755727498999974, 49.534335694000035 ], [ -124.755407967999986, 49.534332034000052 ], [ -124.755265101999939, 49.534143108000073 ], [ -124.755484007999939, 49.532916907000086 ], [ -124.755480017999915, 49.532422700000083 ], [ -124.755345107999972, 49.53211790700005 ], [ -124.754706790999961, 49.531677789000049 ], [ -124.75453178099994, 49.531411499000107 ], [ -124.754221701999938, 49.531226297000039 ], [ -124.753449909999944, 49.530491405000113 ], [ -124.753033479999928, 49.529715193000129 ], [ -124.752618278999989, 49.529280899000042 ], [ -124.752536386999921, 49.528959010000108 ], [ -124.752129401000033, 49.528749597000051 ], [ -124.752006521999988, 49.528426299000095 ], [ -124.751668388999988, 49.528207009000063 ], [ -124.75166149099999, 49.528046108000105 ], [ -124.75137571499998, 49.527761190000085 ], [ -124.751309876999954, 49.527483496000116 ], [ -124.751025211999959, 49.527262807000106 ], [ -124.75057281, 49.526604787000046 ], [ -124.74977690299994, 49.525969587000063 ], [ -124.749680589999969, 49.525592199000087 ], [ -124.749253416999977, 49.525230399000158 ], [ -124.748843488999938, 49.524571006000031 ], [ -124.748277500999961, 49.52420210800004 ], [ -124.747005990999966, 49.522646889000058 ], [ -124.746312405999944, 49.522171193000091 ], [ -124.746335305999963, 49.520893708000131 ], [ -124.746220178999948, 49.520373896000102 ], [ -124.745427416, 49.519845503000063 ], [ -124.745376191999952, 49.519217396000087 ], [ -124.74515162599999, 49.518689004000045 ], [ -124.744952192999918, 49.518539507000064 ], [ -124.744195796999932, 49.518244687000042 ], [ -124.743536996, 49.517616603000093 ], [ -124.742974100999973, 49.517300389000113 ], [ -124.74286999499999, 49.517095304000136 ], [ -124.742123263999929, 49.516751236000083 ], [ -124.742130873999969, 49.516472083000131 ], [ -124.74214434699995, 49.51650404700014 ], [ -124.742172934999971, 49.516530594000116 ], [ -124.742201522999935, 49.516557142000053 ], [ -124.742230077, 49.516583703000066 ], [ -124.742272148999987, 49.516601056000106 ], [ -124.742300738000012, 49.516627605000046 ], [ -124.742343120999934, 49.516653962000078 ], [ -124.742385191999972, 49.516671316000064 ], [ -124.742427555999967, 49.516697651000108 ], [ -124.742469626999934, 49.516715005000059 ], [ -124.742511717999946, 49.516732382000036 ], [ -124.74255408399992, 49.516758718000077 ], [ -124.742638210999928, 49.51679345900002 ], [ -124.742694404999924, 49.516819592000076 ], [ -124.742736477, 49.516836945000051 ], [ -124.742778548999937, 49.51685429900003 ], [ -124.74282062099995, 49.516871653000102 ], [ -124.742863004999961, 49.51689800900008 ], [ -124.742905076999946, 49.516915364000042 ], [ -124.742947441999931, 49.516941700000125 ], [ -124.742989513999987, 49.516959052000054 ], [ -124.74303189699998, 49.516985411000114 ], [ -124.743074279999945, 49.517011767000064 ], [ -124.743102525999959, 49.517029324000077 ], [ -124.743144907999962, 49.517055681000038 ], [ -124.743201448999983, 49.517090805000059 ], [ -124.743539895999959, 49.517283597000116 ], [ -124.744049802999911, 49.517635734000116 ], [ -124.74453310199999, 49.518015249000037 ], [ -124.74515608199998, 49.518437639000119 ], [ -124.745541710999944, 49.518791628000031 ], [ -124.745571567999917, 49.518854155000106 ], [ -124.74563224799999, 49.519006151000056 ], [ -124.745632593999972, 49.519015142000086 ], [ -124.745647029999972, 49.519032923000083 ], [ -124.745648620999987, 49.519077873000064 ], [ -124.745663401999948, 49.519104646000081 ], [ -124.745664041999973, 49.519122618000083 ], [ -124.745664681999983, 49.519140590000092 ], [ -124.74567946300003, 49.519167363000093 ], [ -124.745680103999959, 49.519185336000092 ], [ -124.745694538999928, 49.51920311800005 ], [ -124.745695524999945, 49.51923008100006 ], [ -124.745710253999945, 49.519256845 ], [ -124.745724723999928, 49.519274613000078 ], [ -124.74572567599995, 49.519301591000087 ], [ -124.7457552199999, 49.519355114000106 ], [ -124.745756171999957, 49.519382089000011 ], [ -124.745770954999927, 49.519408863000116 ], [ -124.745771907999966, 49.519435838000092 ], [ -124.745786668999969, 49.51946259000006 ], [ -124.745801451999938, 49.519489362000044 ], [ -124.745816214999977, 49.519516113000094 ], [ -124.745817186999972, 49.519543112000093 ], [ -124.745831948, 49.519569862000068 ], [ -124.745846419999921, 49.519587631000071 ], [ -124.745861181999885, 49.519614381000061 ], [ -124.74587593, 49.519641168000071 ], [ -124.745890691999961, 49.519667918000025 ], [ -124.745905509999957, 49.519694678000072 ], [ -124.745919943999979, 49.519712460000044 ], [ -124.745934726999948, 49.519739233000024 ], [ -124.745963613999962, 49.519774762000097 ], [ -124.745977735999972, 49.519783540000063 ], [ -124.746006643999962, 49.519819091000066 ], [ -124.746021112999955, 49.519836859000101 ], [ -124.746049030999956, 49.519845447000087 ], [ -124.746063480999922, 49.51986319300007 ], [ -124.746077915999962, 49.519880976000074 ], [ -124.74609238699999, 49.519898745000042 ], [ -124.746106529999977, 49.51990754500013 ], [ -124.746120946999923, 49.5199253030001 ], [ -124.746149210999974, 49.519942882000066 ], [ -124.746163334999963, 49.519951660000096 ], [ -124.746177804999945, 49.519969430000081 ], [ -124.746192239999957, 49.51998721100005 ], [ -124.746234664000013, 49.520013555000055 ], [ -124.746249098999982, 49.520031337000056 ], [ -124.746263550999942, 49.520049083000103 ], [ -124.746277672999966, 49.520057861000097 ], [ -124.746292109999942, 49.520075643000055 ], [ -124.746320375999943, 49.520093221000117 ], [ -124.746334847999975, 49.520110990000028 ], [ -124.746349281999926, 49.520128772000142 ], [ -124.746363404999897, 49.520137550000086 ], [ -124.746377875999954, 49.520155319000054 ], [ -124.746406120999936, 49.520172875000043 ], [ -124.746420557999969, 49.520190657000065 ], [ -124.746434714999964, 49.520199423000115 ], [ -124.746449151999911, 49.520217204000097 ], [ -124.746463621999951, 49.52023497200004 ], [ -124.746478058999969, 49.520252755000051 ], [ -124.746506011999926, 49.520261329000085 ], [ -124.746520446999938, 49.520279111000058 ], [ -124.746534917999924, 49.520296879000043 ], [ -124.746549333999937, 49.520314639000034 ], [ -124.746563803999919, 49.520332408000094 ], [ -124.746577927999965, 49.520341187000092 ], [ -124.746592398999937, 49.520358955000077 ], [ -124.746606540999977, 49.52036775600002 ], [ -124.746606834999938, 49.520376736000095 ], [ -124.746620630999985, 49.520376546000065 ], [ -124.74662127199997, 49.520394519000099 ], [ -124.746635393999938, 49.520403297000037 ], [ -124.746635741999953, 49.520412287000035 ], [ -124.746663987999966, 49.520429843000052 ], [ -124.746664299999935, 49.520438847000015 ], [ -124.746678423999967, 49.520447625000045 ], [ -124.746678771999925, 49.520456617000072 ], [ -124.746679083999979, 49.520465621000014 ], [ -124.746692894999939, 49.520465394000098 ], [ -124.746693207999954, 49.52047439900015 ], [ -124.746707330999982, 49.52048317600002 ], [ -124.746808156, 49.520598584000041 ], [ -124.746894249999954, 49.520687228000028 ], [ -124.746908686999973, 49.520705011000075 ], [ -124.747009531999936, 49.520820440000065 ], [ -124.747096233999969, 49.520927071000166 ], [ -124.747155001999957, 49.521025147000096 ], [ -124.74721343799996, 49.521114200000071 ], [ -124.74727220699999, 49.521212277000075 ], [ -124.747330989999966, 49.521310320000097 ], [ -124.747405162999911, 49.521453121000064 ], [ -124.747465525999957, 49.521596149000061 ], [ -124.74753970099999, 49.521738950000064 ], [ -124.747600411999926, 49.521890968000072 ], [ -124.747661416, 49.522051968000028 ], [ -124.747708626999938, 49.522213159000074 ], [ -124.747769632999933, 49.522374158000048 ], [ -124.747816827999955, 49.52253538500004 ], [ -124.747895181999965, 49.52279504800002 ], [ -124.747895492999987, 49.522804052000069 ], [ -124.747911213999913, 49.522857780000045 ], [ -124.748135052999956, 49.523322150000126 ], [ -124.748254869999982, 49.523581218000075 ], [ -124.748387477999955, 49.52381310500008 ], [ -124.748473876999938, 49.523910731000086 ], [ -124.74858790499998, 49.524007962000034 ], [ -124.748702228999917, 49.524114175000115 ], [ -124.748816256999987, 49.524211404000035 ], [ -124.748916106999957, 49.524299848000027 ], [ -124.749016011999956, 49.524388302000034 ], [ -124.749129381999978, 49.524467536000039 ], [ -124.749229287999967, 49.524555987999989 ], [ -124.749301528999936, 49.524644850000101 ], [ -124.749387952999925, 49.524742496000016 ], [ -124.749460542999927, 49.524840347000058 ], [ -124.749532785999975, 49.524929208000053 ], [ -124.749632987999945, 49.525026641000096 ], [ -124.749719412000033, 49.525124289000104 ], [ -124.74981961499999, 49.525221723000094 ], [ -124.749906019999955, 49.525319348000075 ], [ -124.750049574999977, 49.525470113000026 ], [ -124.750179020999923, 49.525612066000122 ], [ -124.75032261299998, 49.525762819000107 ], [ -124.750452044999975, 49.525904807000096 ], [ -124.750928055999978, 49.526464305000026 ], [ -124.751100220999973, 49.526641616000113 ], [ -124.751215861999981, 49.526783794000046 ], [ -124.751344965999976, 49.526916756000084 ], [ -124.751474091999967, 49.527049737000034 ], [ -124.751496217999943, 49.527075276000126 ], [ -124.751589419999931, 49.527182913000104 ], [ -124.751691544999971, 49.527334299000124 ], [ -124.751794016999952, 49.527494678000053 ], [ -124.751882379999984, 49.527646242000046 ], [ -124.751984854999975, 49.527806620000042 ], [ -124.752058064999972, 49.527922457000109 ], [ -124.752145122999977, 49.528038054000085 ], [ -124.752218354999968, 49.528153913000104 ], [ -124.752291601999914, 49.528269737000095 ], [ -124.752393764999965, 49.528421109000035 ], [ -124.752482096999969, 49.52857268800004 ], [ -124.752584226999943, 49.528724074000088 ], [ -124.752672595999982, 49.528875640000138 ], [ -124.752702783999979, 49.528947171000084 ], [ -124.752746766999934, 49.529018453000049 ], [ -124.752790803999915, 49.5290897450001 ], [ -124.752834806999886, 49.529161050000077 ], [ -124.752922182999981, 49.529285651000102 ], [ -124.753037193999916, 49.529409855000054 ], [ -124.75315189199999, 49.529525056000054 ], [ -124.753253068999953, 49.52964946400008 ], [ -124.753311495999966, 49.529738528000024 ], [ -124.753369662999901, 49.529818597000016 ], [ -124.753428144999958, 49.529907671000046 ], [ -124.753486625, 49.529996744000073 ], [ -124.75361830599995, 49.530201630000093 ], [ -124.753750355999983, 49.53041553100006 ], [ -124.753895580999966, 49.530611232000069 ], [ -124.754081900999978, 49.530797317000058 ], [ -124.754238346999927, 49.530920875000064 ], [ -124.754422060999971, 49.531035021999983 ], [ -124.754605511999927, 49.531140175000083 ], [ -124.75478928099993, 49.53125433200011 ], [ -124.754916184999942, 49.531324388000066 ], [ -124.755001307999933, 49.531386043000047 ], [ -124.755029584999974, 49.531403619000059 ], [ -124.755142984999978, 49.531482849000056 ], [ -124.755256351999918, 49.531562092000087 ], [ -124.75538390199992, 49.531650121000013 ], [ -124.755497301999952, 49.53172935200007 ], [ -124.75561105499996, 49.531817573000097 ], [ -124.755724770999933, 49.531905807000093 ], [ -124.75582404599993, 49.531976259000039 ], [ -124.755923633999956, 49.53205571500007 ], [ -124.756023224000032, 49.532135173000043 ], [ -124.756122827999917, 49.532214593000091 ], [ -124.756250348999956, 49.532302634000125 ], [ -124.756364102999925, 49.532390855000088 ], [ -124.75647811799999, 49.532488070000056 ], [ -124.756578355999977, 49.532585499000064 ], [ -124.75662205199994, 49.532647799000102 ], [ -124.756679584999986, 49.532709894000106 ], [ -124.756723284999936, 49.532772193000021 ], [ -124.756780781999936, 49.532834300000083 ], [ -124.756838609999946, 49.532905377000098 ], [ -124.756896143999981, 49.53296747100007 ], [ -124.756953641999957, 49.533029578000033 ], [ -124.757011470999913, 49.533100654000108 ], [ -124.75706900599999, 49.533162748000109 ], [ -124.757126801000013, 49.533233838000065 ], [ -124.757170848999948, 49.533305129000013 ], [ -124.757228678999979, 49.533376205000096 ], [ -124.757300658999952, 49.5334560800001 ], [ -124.757358803999935, 49.533536160000011 ], [ -124.75741695, 49.533616241000097 ], [ -124.757475130999964, 49.533696309000035 ], [ -124.757560891999987, 49.533775969000111 ], [ -124.757660817999977, 49.533864394000048 ], [ -124.757746614999959, 49.533944041000034 ], [ -124.757818891999975, 49.534032898000063 ], [ -124.757863257999958, 49.534113194000049 ], [ -124.757894085999979, 49.53420267600012 ], [ -124.757938451999962, 49.534282971000046 ], [ -124.757996284999976, 49.534354046 ], [ -124.758052476000017, 49.534380185000039 ], [ -124.758084900999933, 49.534400313000077 ], [ -124.758109053999974, 49.534415301000074 ], [ -124.758157485999973, 49.534433236000076 ], [ -124.75817908099998, 49.534441234000077 ], [ -124.75823495799996, 49.534458367000127 ], [ -124.75830437399999, 49.534466313000109 ], [ -124.758344300999923, 49.534474306000035 ], [ -124.758345204999969, 49.534474504000102 ], [ -124.758346051999951, 49.534474696000068 ], [ -124.758373771, 49.534474237000083 ], [ -124.75844315399992, 49.534482195000052 ], [ -124.758498420999942, 49.534481343000031 ], [ -124.758678300999918, 49.534487608000042 ], [ -124.75884408499995, 49.534485084000032 ], [ -124.759023965999958, 49.534491349000085 ], [ -124.759189750999951, 49.534488824000036 ], [ -124.75942460199991, 49.534485254000032 ], [ -124.759521287000013, 49.534483786000095 ], [ -124.760294555999977, 49.534463032000112 ], [ -124.760294205999969, 49.534454040000064 ], [ -124.761565737999902, 49.534452660000134 ], [ -124.762091301999973, 49.534462672000103 ], [ -124.762312669, 49.534468291000096 ], [ -124.762319525999885, 49.535043888000054 ], [ -124.762321137999962, 49.535088839000068 ], [ -124.762354786999964, 49.535788438000111 ], [ -124.762376047999965, 49.53623041500007 ], [ -124.762377656999945, 49.536275367000016 ], [ -124.762360787999953, 49.536959287000059 ], [ -124.762377946, 49.53743577700007 ], [ -124.762377715999946, 49.537813600000064 ], [ -124.762461985999906, 49.538235098000065 ], [ -124.762723583999971, 49.538590927000016 ], [ -124.762684806999957, 49.539050277000051 ], [ -124.762186120999971, 49.541756520000042 ], [ -124.762187783999977, 49.541756497000115 ], [ -124.762298617999974, 49.541763804000034 ], [ -124.76242332399994, 49.54177089300002 ], [ -124.762518305999933, 49.541769437000028 ], [ -124.762533839999946, 49.541769195000064 ], [ -124.762644694999921, 49.541776524000056 ], [ -124.762824290999959, 49.54177377700011 ], [ -124.763017373999972, 49.541761833000081 ], [ -124.763196672999968, 49.541750103 ], [ -124.763375939999918, 49.541738387000152 ], [ -124.763555592000017, 49.541735649000032 ], [ -124.763734835999969, 49.54172390900009 ], [ -124.763928586999953, 49.541729959000058 ], [ -124.764108201999932, 49.541727232 ], [ -124.764288149999985, 49.541733475000065 ], [ -124.76446806499996, 49.541739730000103 ], [ -124.764647977999985, 49.541745984000045 ], [ -124.764827571999959, 49.541743235000112 ], [ -124.764966080999969, 49.541750125000078 ], [ -124.76522859499994, 49.541746119000017 ], [ -124.765366733999912, 49.541743997000012 ], [ -124.76549110799999, 49.541742111000119 ], [ -124.765628914, 49.541731018000178 ], [ -124.765752952999904, 49.541720107000089 ], [ -124.765890460999955, 49.54170003100009 ], [ -124.766014167999941, 49.541680149000044 ], [ -124.76613752199998, 49.541651276000096 ], [ -124.766358243999917, 49.541638925000079 ], [ -124.766337944999989, 49.541459323000069 ], [ -124.766320228999945, 49.541351651000113 ], [ -124.766298648999935, 49.541136067000046 ], [ -124.766275086999926, 49.540866575000059 ], [ -124.76625187800002, 49.540606074000081 ], [ -124.766247012999969, 49.540471196000063 ], [ -124.76624238199993, 49.539958535000054 ], [ -124.766257993999915, 49.539625467000072 ], [ -124.766200355999928, 49.539176592000132 ], [ -124.766208521999985, 49.538636717000088 ], [ -124.766218320999926, 49.538141818000085 ], [ -124.766217375999958, 49.538114863000025 ], [ -124.766224244999961, 49.537539043000088 ], [ -124.76620707699999, 49.537062543000069 ], [ -124.7662105199999, 49.536774646000083 ], [ -124.766208587999955, 49.536720690000017 ], [ -124.766155777999941, 49.536406650000046 ], [ -124.766138415999961, 49.536307971000028 ], [ -124.766117019999953, 49.535714605000052 ], [ -124.76613199799999, 49.535363533000051 ], [ -124.766129733999918, 49.535300608000043 ], [ -124.766135339999934, 49.534688836000022 ], [ -124.76612817799996, 49.534491050000064 ], [ -124.766997831, 49.53445978700011 ], [ -124.767605611999912, 49.534450492000062 ], [ -124.767799009999948, 49.534447531000048 ], [ -124.769430994999979, 49.534476563000048 ], [ -124.76958294399995, 49.534474227000075 ], [ -124.769845409999959, 49.534470207000091 ], [ -124.770108229999948, 49.534475178000058 ], [ -124.770177260999944, 49.534474138000071 ], [ -124.770260162999975, 49.534472877000042 ], [ -124.770329562999905, 49.534480793000078 ], [ -124.770398628999928, 49.534479739000041 ], [ -124.770453860999979, 49.534478892000031 ], [ -124.77049531199999, 49.534478261000061 ], [ -124.77055057699998, 49.534477401000053 ], [ -124.770592344999955, 49.534485775000057 ], [ -124.770633797999935, 49.534485144 ], [ -124.770675228999906, 49.534484493000058 ], [ -124.770702844999946, 49.534484068000047 ], [ -124.770744612999977, 49.534492442000094 ], [ -124.770786063999964, 49.534491812000034 ], [ -124.770799878999924, 49.534491582000037 ], [ -124.770813679999932, 49.534491388000042 ], [ -124.770855130999976, 49.534490757000057 ], [ -124.770896562999965, 49.534490104000021 ], [ -124.771090278999978, 49.534496140000101 ], [ -124.77128399799993, 49.534502175000043 ], [ -124.771477396999899, 49.534499205000039 ], [ -124.771671114999947, 49.53450524100009 ], [ -124.771905965999949, 49.534501639000027 ], [ -124.772140781999937, 49.534498050000089 ], [ -124.772389447999942, 49.534494218000077 ], [ -124.772624261999965, 49.534490628000071 ], [ -124.772845297999964, 49.534487254000034 ], [ -124.773066629999931, 49.534492863000068 ], [ -124.773287646999933, 49.53448946500005 ], [ -124.773509016, 49.534495059000086 ], [ -124.773799416, 49.534499609000086 ], [ -124.774076333999957, 49.53451335600009 ], [ -124.774352934999925, 49.534518100000049 ], [ -124.774629555, 49.534522864000103 ], [ -124.774905835999917, 49.53451860100008 ], [ -124.775182422999961, 49.53452337699999 ], [ -124.775444887999953, 49.534519342000046 ], [ -124.775721152999893, 49.534515112000101 ], [ -124.776135587999988, 49.534508753000118 ], [ -124.776536166999946, 49.534502576000122 ], [ -124.776937119999957, 49.534505413000019 ], [ -124.777264916999968, 49.534518108000093 ], [ -124.777700809999942, 49.534515607000031 ], [ -124.777684784999948, 49.535120258000106 ], [ -124.772337727999968, 49.535059966000077 ], [ -124.772330883999956, 49.535317091000124 ], [ -124.771620050999985, 49.535309056000074 ], [ -124.771579641999963, 49.536826206000114 ], [ -124.769551523999922, 49.536803255000116 ], [ -124.769514741999956, 49.538181853000061 ], [ -124.768407975999978, 49.538169313000026 ], [ -124.768369945999922, 49.53959327800009 ], [ -124.771105882999905, 49.539624257000078 ], [ -124.77108844699994, 49.54027855800009 ], [ -124.771556105999963, 49.540283847000104 ], [ -124.771460254, 49.543881791000111 ], [ -124.765937161999886, 49.54381920400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.970602930254541", "sL_AssetLoss": "3702.75", "sL_BldgLoss": "3593.9", "sL_StrLoss": "3110.4", "sL_NStrLoss": "483.5", "sL_ContLoss": "108.85", "geom_point": "0101000020E6100000E0650AC6D6305FC0C98FF815EBC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.76064643499997, 49.543991641000048 ], [ -124.766169540999982, 49.544054496000093 ], [ -124.766073261999964, 49.547652415000051 ], [ -124.765548329999987, 49.547646453000084 ], [ -124.765512417999929, 49.548987725000082 ], [ -124.76259170499999, 49.548954508000101 ], [ -124.762113486999951, 49.548540392000049 ], [ -124.761238794999912, 49.548023494000077 ], [ -124.760809799999947, 49.547643194000074 ], [ -124.759306578999883, 49.54521939900016 ], [ -124.759329865999916, 49.544353909000044 ], [ -124.760636297999923, 49.54436881700012 ], [ -124.76064643499997, 49.543991641000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.965568171328349", "sL_AssetLoss": "3249.9", "sL_BldgLoss": "3138", "sL_StrLoss": "2626", "sL_NStrLoss": "512", "sL_ContLoss": "111.9", "geom_point": "0101000020E61000009E4C718F04335FC019A5F045A0C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.794438344999975, 49.549936601000091 ], [ -124.799962207999926, 49.549997738000116 ], [ -124.799868552999925, 49.553595655000045 ], [ -124.794344258999942, 49.553534514000063 ], [ -124.794438344999975, 49.549936601000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11877916", "BldgCostT": "8191666", "sL_LossRatio": "0.982489531785306", "sL_AssetLoss": "10508", "sL_BldgLoss": "10324", "sL_StrLoss": "9480", "sL_NStrLoss": "844", "sL_ContLoss": "184", "geom_point": "0101000020E6100000E66FC659E6325FC0300DC347C4C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.800080228999946, 49.542850689000048 ], [ -124.800088573, 49.542530033000034 ], [ -124.79769985899999, 49.54250362800007 ], [ -124.797793659999982, 49.538905654000132 ], [ -124.797889113999986, 49.538906710000091 ], [ -124.797911206999942, 49.538059156000074 ], [ -124.798270727999963, 49.538063133 ], [ -124.798308975999944, 49.536595262000048 ], [ -124.800095533999979, 49.536615007000066 ], [ -124.800115927, 49.535831194000153 ], [ -124.799581936999928, 49.535825294000112 ], [ -124.799587805999977, 49.535599829 ], [ -124.797871386999972, 49.535580850000024 ], [ -124.797875672999965, 49.535416381000068 ], [ -124.797257174999956, 49.535409536000031 ], [ -124.797258696999933, 49.535351152000018 ], [ -124.795471490999944, 49.53533135100006 ], [ -124.795404950999966, 49.537879008000132 ], [ -124.789882544999969, 49.537817638000078 ], [ -124.789940408999882, 49.535612325000017 ], [ -124.787644707999959, 49.535586730000048 ], [ -124.787599707, 49.537298605000103 ], [ -124.782077379999947, 49.537236838000055 ], [ -124.782111953999944, 49.535927615000027 ], [ -124.781238426999963, 49.535917819000133 ], [ -124.781276024999954, 49.534495019000126 ], [ -124.782950337999949, 49.534485338000053 ], [ -124.785217511999988, 49.534472199000092 ], [ -124.785544031999962, 49.534470292000051 ], [ -124.788242910999941, 49.534454560000029 ], [ -124.793699195999949, 49.534422563000106 ], [ -124.793781945999953, 49.534418822000113 ], [ -124.793974994, 49.534410102000024 ], [ -124.79416901499998, 49.534410351000083 ], [ -124.794376516999975, 49.534416120000053 ], [ -124.794570257999951, 49.534422132000024 ], [ -124.794777456999938, 49.534418919000096 ], [ -124.794998827999947, 49.534424464000054 ], [ -124.795206024, 49.534421250000051 ], [ -124.795398098999968, 49.534382287000035 ], [ -124.79541157499996, 49.534373085000034 ], [ -124.795425389999977, 49.534372852000082 ], [ -124.795603986999978, 49.534343091000082 ], [ -124.795784215999916, 49.534358314000016 ], [ -124.79597859899999, 49.534382274000045 ], [ -124.796172623999951, 49.534397241000093 ], [ -124.796352206999984, 49.534394456000058 ], [ -124.796517649999956, 49.534382899000072 ], [ -124.796696873000016, 49.534371121000106 ], [ -124.796862655999945, 49.534368532000016 ], [ -124.797056376999961, 49.534374517000089 ], [ -124.797236281999915, 49.534380734000123 ], [ -124.797430003000017, 49.534386717000125 ], [ -124.797623723999962, 49.534392699000094 ], [ -124.797761856999898, 49.534390553000058 ], [ -124.797899985999976, 49.534388407000066 ], [ -124.798038118999926, 49.534386260000062 ], [ -124.798176250999944, 49.534384113000058 ], [ -124.798452547999915, 49.534379806000068 ], [ -124.798490807999926, 49.534381709000073 ], [ -124.798729492999925, 49.534393507000125 ], [ -124.798853790999914, 49.534391570000032 ], [ -124.799005431999916, 49.534380207000012 ], [ -124.799280708999959, 49.534348933000047 ], [ -124.799280369999934, 49.53433996300005 ], [ -124.799294184999951, 49.53433973000007 ], [ -124.799500394999981, 49.534309529000069 ], [ -124.799688060999969, 49.534306614000045 ], [ -124.799707591999962, 49.53430630800009 ], [ -124.799860184999972, 49.534321933000093 ], [ -124.799915470999963, 49.534321078000048 ], [ -124.799998677999952, 49.534328774000059 ], [ -124.800137131999946, 49.534335628000029 ], [ -124.80052523699996, 49.534365557000037 ], [ -124.800719622999949, 49.53438950700005 ], [ -124.80091433199999, 49.534422460000116 ], [ -124.8011431689999, 49.534471053000075 ], [ -124.801387948999945, 49.534523038000025 ], [ -124.801597788999942, 49.534591739000092 ], [ -124.801965545999977, 49.53481990300002 ], [ -124.802216839999971, 49.534887957000073 ], [ -124.802467483999919, 49.534938004000018 ], [ -124.802718777999971, 49.535006059000104 ], [ -124.80313913400002, 49.535161425000119 ], [ -124.803335503999961, 49.535239325000056 ], [ -124.803545350999983, 49.535308020000095 ], [ -124.803783172999928, 49.535385275000152 ], [ -124.804230521, 49.535522219000029 ], [ -124.804467988999988, 49.535590480000025 ], [ -124.804579838, 49.535624703000082 ], [ -124.804705488999957, 49.535658727000033 ], [ -124.804817305999961, 49.535692963000024 ], [ -124.804942956999952, 49.535726988000086 ], [ -124.805055132999911, 49.535770214000109 ], [ -124.805153474999912, 49.535813653000041 ], [ -124.80525151199997, 49.53584811100005 ], [ -124.805162444999937, 49.53605640200005 ], [ -124.804917511999918, 49.536536976000036 ], [ -124.8048027899999, 49.536799633000086 ], [ -124.804446025999937, 49.537245973000047 ], [ -124.804334304999969, 49.53758955000005 ], [ -124.804255362999939, 49.537698749000128 ], [ -124.803888781999959, 49.53825318400002 ], [ -124.803694809999953, 49.538616025000096 ], [ -124.803628022999987, 49.538680039000042 ], [ -124.803575737999893, 49.538761814000075 ], [ -124.803078512999917, 49.539147369000105 ], [ -124.802917024999928, 49.539266812000065 ], [ -124.802782818, 49.5393768550001 ], [ -124.802447067999964, 49.539642962000087 ], [ -124.802406277999964, 49.539661581000068 ], [ -124.802165886999944, 49.539890232000054 ], [ -124.802020875999915, 49.540081392000083 ], [ -124.80215941099999, 49.540466039000137 ], [ -124.802381525999976, 49.540867371000026 ], [ -124.802672724999965, 49.541267628000099 ], [ -124.802872157999957, 49.541804261000074 ], [ -124.803098261999949, 49.542313470000082 ], [ -124.803099251999967, 49.542340448000076 ], [ -124.803270425999955, 49.542859506000099 ], [ -124.80327722799997, 49.542885947000087 ], [ -124.800080228999946, 49.542850689000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.96822530449149", "sL_AssetLoss": "2602.7", "sL_BldgLoss": "2520", "sL_StrLoss": "2219", "sL_NStrLoss": "301", "sL_ContLoss": "82.7", "geom_point": "0101000020E6100000F86F5E9CF82C5FC0D15F22BDACBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.701288810999955, 49.490585097000114 ], [ -124.700649213999952, 49.490468302000124 ], [ -124.699879712999987, 49.490587893000104 ], [ -124.699640865999953, 49.490564592000055 ], [ -124.699677638999944, 49.489258980000031 ], [ -124.699710335999953, 49.488097971000087 ], [ -124.701511340999957, 49.488119536000049 ], [ -124.704762036999981, 49.48815838300002 ], [ -124.705226672000023, 49.488163929000031 ], [ -124.705213268999941, 49.488641875000027 ], [ -124.705125759999987, 49.491762085000104 ], [ -124.703490227999964, 49.491742558000077 ], [ -124.703257800999978, 49.491257296000114 ], [ -124.702961503999987, 49.491072206000105 ], [ -124.70232309, 49.490973892000063 ], [ -124.702000802999933, 49.490817202000095 ], [ -124.701445294999957, 49.490699004000071 ], [ -124.701288810999955, 49.490585097000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978334", "BldgCostT": "3433334", "sL_LossRatio": "0.975028708633469", "sL_AssetLoss": "4789.5", "sL_BldgLoss": "4669.9", "sL_StrLoss": "4158", "sL_NStrLoss": "511.9", "sL_ContLoss": "119.6", "geom_point": "0101000020E6100000FBCA62E6EB2E5FC03D6CD8A5FCBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.726489685999979, 49.48572903300002 ], [ -124.726530548999946, 49.484247410000137 ], [ -124.726693510999908, 49.484198905 ], [ -124.727667200999946, 49.483653499000049 ], [ -124.729621095, 49.483012603000098 ], [ -124.730255303999954, 49.482652190000053 ], [ -124.730793897999931, 49.482608103000132 ], [ -124.731793193999934, 49.482018513000099 ], [ -124.73233340099992, 49.482045512000063 ], [ -124.733119083999938, 49.48240300300013 ], [ -124.734704907999969, 49.482351690000115 ], [ -124.735050497, 49.482724901000033 ], [ -124.735412692999887, 49.482818916000049 ], [ -124.736246102999942, 49.482958411 ], [ -124.736907205999955, 49.482931393000044 ], [ -124.737550079999963, 49.483182100000086 ], [ -124.73821690199999, 49.483243303000037 ], [ -124.739355485999923, 49.483811605000028 ], [ -124.739280897999947, 49.484100708000113 ], [ -124.739562292999892, 49.484636209000023 ], [ -124.739822689999954, 49.484756998000051 ], [ -124.73979658099995, 49.485713635000103 ], [ -124.738333102999945, 49.485696630000056 ], [ -124.738331325999951, 49.485761672000123 ], [ -124.732815229999972, 49.485697396000091 ], [ -124.732835307999963, 49.484965786000068 ], [ -124.73202876799999, 49.484956364000013 ], [ -124.732005774999919, 49.48579363000006 ], [ -124.726489685999979, 49.48572903300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10882250", "BldgCostT": "7505000", "sL_LossRatio": "0.985524543632443", "sL_AssetLoss": "8152.42", "sL_BldgLoss": "8034.41", "sL_StrLoss": "7393.21", "sL_NStrLoss": "641.2", "sL_ContLoss": "118.01", "geom_point": "0101000020E6100000E1118900AF355FC0C97D40DADEC94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.83571849799992, 49.585489801000044 ], [ -124.835809418999972, 49.581892019000058 ], [ -124.836769622999938, 49.581902293000049 ], [ -124.836808208999969, 49.580374021000061 ], [ -124.836388536999934, 49.580369532000077 ], [ -124.836462590999929, 49.57743717900005 ], [ -124.835775192999904, 49.577429822000056 ], [ -124.83583652, 49.575002561000133 ], [ -124.835637134999914, 49.575000426000059 ], [ -124.835728041999957, 49.571402589000087 ], [ -124.83661592599999, 49.571412093000021 ], [ -124.836647277999987, 49.570170209000032 ], [ -124.83793371799996, 49.570183965000076 ], [ -124.83794485199995, 49.56974244000002 ], [ -124.839109127999961, 49.569754877000051 ], [ -124.839114315999922, 49.56954886900013 ], [ -124.842725147999914, 49.569587362000064 ], [ -124.84299088799996, 49.570182702000054 ], [ -124.842875100999933, 49.572964207000091 ], [ -124.842695897999931, 49.573371493000124 ], [ -124.842482806999939, 49.573555297000041 ], [ -124.842237679999954, 49.573657796000113 ], [ -124.841615183999963, 49.573676304000081 ], [ -124.841509177999981, 49.573785996000076 ], [ -124.841388201999948, 49.574633401000014 ], [ -124.840928081999948, 49.575252895000062 ], [ -124.840594997999915, 49.575969309000079 ], [ -124.840476299999935, 49.576870787000132 ], [ -124.840493225999978, 49.577006366000077 ], [ -124.840535710999944, 49.577346492000061 ], [ -124.839950782999921, 49.5783533910001 ], [ -124.840133786999928, 49.578782097000023 ], [ -124.840193492999958, 49.579653714000123 ], [ -124.840363404999934, 49.580073883000111 ], [ -124.840458120999983, 49.580774598000076 ], [ -124.840832499999948, 49.581181888000089 ], [ -124.841059585000011, 49.581718804000033 ], [ -124.841276282999985, 49.58195810000008 ], [ -124.841373328, 49.582581547000089 ], [ -124.841321324999939, 49.582580993000121 ], [ -124.841251573999926, 49.585354184000039 ], [ -124.840922872999926, 49.585545387000138 ], [ -124.838257498999923, 49.585516950000084 ], [ -124.838256404999967, 49.585514309000111 ], [ -124.838086515, 49.585390402000023 ], [ -124.83798691399997, 49.585329201000064 ], [ -124.837738511999973, 49.585342002000047 ], [ -124.837363419999988, 49.585507396000025 ], [ -124.83571849799992, 49.585489801000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564166", "BldgCostT": "5216666", "sL_LossRatio": "0.97006576925441", "sL_AssetLoss": "8134.5", "sL_BldgLoss": "7891", "sL_StrLoss": "6920", "sL_NStrLoss": "971", "sL_ContLoss": "243.5", "geom_point": "0101000020E6100000FDA4566F7F2C5FC030FBF16E17BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.693428701999892, 49.488918804 ], [ -124.693213910999972, 49.488679495000071 ], [ -124.693322298999959, 49.488632509000134 ], [ -124.69403080099994, 49.488730786000112 ], [ -124.694114493999948, 49.488396093000048 ], [ -124.692896809999937, 49.488323387000015 ], [ -124.69244900399994, 49.488159701000043 ], [ -124.691900490999942, 49.487826395000035 ], [ -124.69151071, 49.487372101000091 ], [ -124.691477683999935, 49.487219695000086 ], [ -124.691652488999949, 49.487055897000076 ], [ -124.691424305999959, 49.486870812000056 ], [ -124.691489297999979, 49.486752513000049 ], [ -124.691790488999942, 49.486631513000106 ], [ -124.691947107999951, 49.486386491000125 ], [ -124.691650994999961, 49.485418096000103 ], [ -124.689885508999978, 49.483861404000031 ], [ -124.689666156999948, 49.483477313000016 ], [ -124.68967482499994, 49.483171907000091 ], [ -124.690271684999942, 49.483179114000102 ], [ -124.690316489999972, 49.481599418000094 ], [ -124.695832035, 49.481665854000028 ], [ -124.695778475999958, 49.483562196000108 ], [ -124.701282946999982, 49.483628218 ], [ -124.701181736999928, 49.487226395000043 ], [ -124.695944345999976, 49.487163583 ], [ -124.695920269999988, 49.48801600500007 ], [ -124.695886043999948, 49.489227722000045 ], [ -124.694569438999963, 49.489211892000078 ], [ -124.694096605999931, 49.489044104000079 ], [ -124.693428701999892, 49.488918804 ] ], [ [ -124.695708853999975, 49.485626210000078 ], [ -124.695719088999951, 49.485263900000064 ], [ -124.695526214999973, 49.485261581000046 ], [ -124.69551598, 49.485623891000081 ], [ -124.695708853999975, 49.485626210000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.98697628172256", "sL_AssetLoss": "2554.57", "sL_BldgLoss": "2521.3", "sL_StrLoss": "2326", "sL_NStrLoss": "195.3", "sL_ContLoss": "33.27", "geom_point": "0101000020E6100000550C36F996355FC03D4D98F6EEC74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.835481330999954, 49.560430491000041 ], [ -124.83545385799998, 49.55969775900008 ], [ -124.83877075699999, 49.559645089000064 ], [ -124.838780887000013, 49.55991479100004 ], [ -124.839195501999939, 49.559908202000067 ], [ -124.83921662600001, 49.560470442000081 ], [ -124.840151903999953, 49.560480426000048 ], [ -124.840061364999926, 49.564078323000047 ], [ -124.834535761999945, 49.564019225000031 ], [ -124.834626731999947, 49.560421332000068 ], [ -124.835481330999954, 49.560430491000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60869250", "BldgCostT": "41715000", "sL_LossRatio": "0.97508032882019", "sL_AssetLoss": "60467.09", "sL_BldgLoss": "58960.27", "sL_StrLoss": "52708.67", "sL_NStrLoss": "6251.6", "sL_ContLoss": "1506.82", "geom_point": "0101000020E610000016F5726D222F5FC0A835CD3B4EBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.73895510599999, 49.511515294000091 ], [ -124.738332107999952, 49.511478205000095 ], [ -124.737993808999946, 49.51163628600009 ], [ -124.73753009499994, 49.511472509000022 ], [ -124.737037785999988, 49.510833105000081 ], [ -124.736616793999929, 49.510650797000018 ], [ -124.73649748699998, 49.510400107000116 ], [ -124.735677919999929, 49.509836097000161 ], [ -124.734530209999946, 49.509440197000117 ], [ -124.734402182999958, 49.508920407000112 ], [ -124.733835798999962, 49.508524393000052 ], [ -124.733716504999904, 49.508273794000026 ], [ -124.733393574999951, 49.508171193000123 ], [ -124.733162898999979, 49.507894904000139 ], [ -124.732273185999986, 49.507719803000072 ], [ -124.731483983999965, 49.507272604000036 ], [ -124.730910184999956, 49.507093105000088 ], [ -124.730911638999942, 49.507069920000085 ], [ -124.730942774999946, 49.506572017000074 ], [ -124.730981700999934, 49.505949504000085 ], [ -124.730785819999952, 49.505520797000038 ], [ -124.730818105999958, 49.50483570700009 ], [ -124.730961981999926, 49.504204798000075 ], [ -124.731192715999967, 49.504137895000063 ], [ -124.73142191799991, 49.503945597000026 ], [ -124.73136370099995, 49.503505507000057 ], [ -124.731162600999966, 49.503256298000089 ], [ -124.731033595, 49.502763513000076 ], [ -124.73068920599998, 49.502346193000079 ], [ -124.729500994, 49.501985899000054 ], [ -124.727777389999943, 49.501642703000087 ], [ -124.727350587000018, 49.501298005000052 ], [ -124.72718419399996, 49.500904915000028 ], [ -124.72689939499999, 49.500639999000036 ], [ -124.72627179199999, 49.50045061600008 ], [ -124.725507512000021, 49.499932192000053 ], [ -124.725184607999935, 49.499838202000021 ], [ -124.724740355999955, 49.500018818000108 ], [ -124.724360411999939, 49.500014355000147 ], [ -124.724150789999939, 49.499889498000123 ], [ -124.724020590999956, 49.499684401000074 ], [ -124.723668583999967, 49.499500593000029 ], [ -124.722454398999957, 49.499131792000099 ], [ -124.72207100699994, 49.498858301000084 ], [ -124.721088885999947, 49.498386896000099 ], [ -124.720519087, 49.49832420300006 ], [ -124.719722007999934, 49.498425410000095 ], [ -124.718884503000012, 49.498168996000054 ], [ -124.71838990900001, 49.497824309000066 ], [ -124.717815489999936, 49.497609311000083 ], [ -124.717189785999949, 49.497078106000082 ], [ -124.717097085999953, 49.497039822 ], [ -124.717095741999941, 49.497001466000086 ], [ -124.717001512999943, 49.497000353 ], [ -124.716979305999942, 49.496991183000063 ], [ -124.716534221999908, 49.496908602000069 ], [ -124.7162470199999, 49.496991432000044 ], [ -124.716038749999939, 49.49698896900005 ], [ -124.71546148299997, 49.496645091000119 ], [ -124.714875584999945, 49.496464200000027 ], [ -124.71441010599996, 49.495841802000022 ], [ -124.714171807999946, 49.49568380200003 ], [ -124.713140597999981, 49.495428811000103 ], [ -124.712797301999942, 49.495092694000022 ], [ -124.71206509299995, 49.495121205 ], [ -124.711509579999969, 49.495003002000061 ], [ -124.711311305999971, 49.494484598000064 ], [ -124.71096432, 49.494436197000041 ], [ -124.710417991999961, 49.494209706000035 ], [ -124.710403348999989, 49.494180968000094 ], [ -124.710240778999918, 49.493862192000087 ], [ -124.709685874999963, 49.493383695000091 ], [ -124.709233565999938, 49.493361355000069 ], [ -124.709249530999955, 49.492790367000062 ], [ -124.709270759999967, 49.492031050000037 ], [ -124.70928816199999, 49.491408618000065 ], [ -124.714804905999969, 49.491474089000093 ], [ -124.714789161999988, 49.492039656000046 ], [ -124.715247124999934, 49.492045078000096 ], [ -124.715240371999954, 49.492287742000038 ], [ -124.715577302999961, 49.492291730000041 ], [ -124.715638587999962, 49.490088873000055 ], [ -124.719967519999955, 49.490140019000116 ], [ -124.721155183999969, 49.490154021000066 ], [ -124.721137902999956, 49.490777868000038 ], [ -124.721242075999939, 49.490779096000082 ], [ -124.721291126999972, 49.489008111000032 ], [ -124.723847552, 49.489038204000096 ], [ -124.726807601999937, 49.489072972000081 ], [ -124.726781624999958, 49.490014959000035 ], [ -124.726920556999971, 49.490016589000078 ], [ -124.726939183999932, 49.489341053000054 ], [ -124.732455705999953, 49.489405627000082 ], [ -124.732356912999961, 49.493003802000096 ], [ -124.732194233999977, 49.493001901000092 ], [ -124.732147969, 49.494686541000114 ], [ -124.733390050999958, 49.494701042000045 ], [ -124.73339993399999, 49.49434082900013 ], [ -124.73680707799997, 49.494380536000051 ], [ -124.736828240999969, 49.493607112000049 ], [ -124.741016370999915, 49.493655775000029 ], [ -124.742345286999964, 49.493671182000099 ], [ -124.74234476, 49.493690517000068 ], [ -124.744392711999978, 49.493714230000137 ], [ -124.74437919899999, 49.494211021000069 ], [ -124.744517603999952, 49.49421262200012 ], [ -124.744559588999934, 49.492668802000011 ], [ -124.750062209999925, 49.492732315000048 ], [ -124.750071835999947, 49.49237677400005 ], [ -124.744666380999945, 49.492314385000029 ], [ -124.744746438000021, 49.489370011000112 ], [ -124.741283932999949, 49.489329906000094 ], [ -124.741306869999974, 49.488488529000101 ], [ -124.740406849999928, 49.488478086000093 ], [ -124.740501051999956, 49.485024894000034 ], [ -124.74128250399994, 49.485248594000062 ], [ -124.74193250899998, 49.485643109000058 ], [ -124.743273583999908, 49.485677297000045 ], [ -124.74407029799994, 49.485584688000074 ], [ -124.745248807999957, 49.485351090000108 ], [ -124.745568596999988, 49.485409486000023 ], [ -124.745616720999962, 49.485579003000076 ], [ -124.745826289999911, 49.485630287000021 ], [ -124.747145305999979, 49.485466511000098 ], [ -124.747575273, 49.485640537000059 ], [ -124.747558070999943, 49.486274703000028 ], [ -124.747975515999897, 49.486279520000089 ], [ -124.747975702999966, 49.486281089000045 ], [ -124.748201003999952, 49.486386319000133 ], [ -124.748311287999982, 49.486437811 ], [ -124.748416214, 49.486669901 ], [ -124.749148876999953, 49.486828470000063 ], [ -124.749153685999957, 49.486829501000059 ], [ -124.749467194999937, 49.487077297000063 ], [ -124.749547492999938, 49.487417692000051 ], [ -124.749902611999985, 49.487673999000023 ], [ -124.750376976999974, 49.487792198000115 ], [ -124.751051901999972, 49.487772304000096 ], [ -124.751489011999936, 49.488018701000094 ], [ -124.751723194999926, 49.488374696000101 ], [ -124.752076217999971, 49.48858550700011 ], [ -124.752232404999972, 49.48860714700006 ], [ -124.752950306999978, 49.488706601000047 ], [ -124.753915792999976, 49.488700893000022 ], [ -124.755522495999926, 49.489189393000061 ], [ -124.756550398999977, 49.489380203000117 ], [ -124.756626413999939, 49.48955109900006 ], [ -124.757272507999971, 49.489883002000106 ], [ -124.75734821199994, 49.490033909000047 ], [ -124.757898277999928, 49.490385696000075 ], [ -124.758059805999949, 49.490680507000022 ], [ -124.758675609999955, 49.491255887000129 ], [ -124.759094312999963, 49.491384091000036 ], [ -124.759697886999902, 49.492032108000053 ], [ -124.760719210999952, 49.492789800000033 ], [ -124.760937215999931, 49.493118798000054 ], [ -124.760862291999985, 49.494082998000117 ], [ -124.760573220999959, 49.494537301000079 ], [ -124.76054552699999, 49.495033874000065 ], [ -124.760507006999887, 49.49572508800005 ], [ -124.761162798000015, 49.496713498000084 ], [ -124.761462192999957, 49.496942801000102 ], [ -124.76154791299993, 49.497409889000068 ], [ -124.761607468999983, 49.49745663900007 ], [ -124.761787835999939, 49.497598219000075 ], [ -124.761010632999927, 49.497589351000052 ], [ -124.759359285999963, 49.497570489000069 ], [ -124.75934844599999, 49.497973808000111 ], [ -124.757292553999989, 49.497982056000119 ], [ -124.756970360999958, 49.498059355000102 ], [ -124.756766549999924, 49.498198301000073 ], [ -124.755615350999975, 49.499442149000117 ], [ -124.755460541, 49.499553762000062 ], [ -124.755227907999952, 49.499634771000075 ], [ -124.754992240999954, 49.499677732000094 ], [ -124.75442918399996, 49.499780389000101 ], [ -124.754091024000033, 49.499783701000098 ], [ -124.75377563399995, 49.499709888000076 ], [ -124.753280228999955, 49.499456755000026 ], [ -124.75231975, 49.498763388000015 ], [ -124.752367324999966, 49.497003209000091 ], [ -124.753854896999897, 49.497020297000127 ], [ -124.753897556999917, 49.495439942000111 ], [ -124.756292284999958, 49.495467409000142 ], [ -124.756296297999967, 49.495318455000096 ], [ -124.755955315, 49.49531454700012 ], [ -124.755953987999959, 49.49536380600005 ], [ -124.751634977999956, 49.49531421600004 ], [ -124.751560970999918, 49.498050709000076 ], [ -124.751165079999936, 49.498046155000047 ], [ -124.750887137999939, 49.497991333000066 ], [ -124.749627816999947, 49.497975024000056 ], [ -124.749247803999978, 49.497974462000052 ], [ -124.748139109999968, 49.497954050000061 ], [ -124.74648713299996, 49.497931600000065 ], [ -124.746166406, 49.497903595000054 ], [ -124.74579012199996, 49.497838074000093 ], [ -124.743646805999944, 49.497195095000102 ], [ -124.743575804999963, 49.49717821700002 ], [ -124.743533306999964, 49.497169939000031 ], [ -124.743490344999969, 49.49715248000004 ], [ -124.743433372999974, 49.497135324000133 ], [ -124.743376828999942, 49.497127304000067 ], [ -124.74333388499997, 49.497109868000116 ], [ -124.743278061999888, 49.497092728000034 ], [ -124.743222535999962, 49.497084569000023 ], [ -124.743180482999932, 49.49706721600009 ], [ -124.74312460799996, 49.497050067000089 ], [ -124.743055290999962, 49.497042099000069 ], [ -124.742999436999952, 49.497024971000023 ], [ -124.742929773999947, 49.497008013000105 ], [ -124.742873918999933, 49.496990885000038 ], [ -124.742804254999925, 49.496973926000109 ], [ -124.742734904999963, 49.496965970000119 ], [ -124.742665261999932, 49.496949032000082 ], [ -124.742609389999956, 49.496931883000137 ], [ -124.742540091999928, 49.496923938000116 ], [ -124.742470393999966, 49.496906990000099 ], [ -124.742414575999987, 49.496889850000038 ], [ -124.742358700999944, 49.496872700000068 ], [ -124.742289058999972, 49.496855763000077 ], [ -124.742247006999918, 49.496838410000088 ], [ -124.74217734399997, 49.496821450000013 ], [ -124.74212117899998, 49.496795321000093 ], [ -124.742064992999929, 49.496769167000096 ], [ -124.742009173999989, 49.496752027000113 ], [ -124.741966810999912, 49.496725671000085 ], [ -124.741910626, 49.496699518000071 ], [ -124.741896476999941, 49.496690754000042 ], [ -124.741896185, 49.496681773000084 ], [ -124.741854135, 49.496664420000094 ], [ -124.74182557599994, 49.496637838000041 ], [ -124.741783522999953, 49.496620485000072 ], [ -124.741741763999983, 49.496612113000047 ], [ -124.741699768000018, 49.496594769000062 ], [ -124.741657715999963, 49.496577417000076 ], [ -124.741615956999979, 49.496569045000037 ], [ -124.741573906999989, 49.496551691000064 ], [ -124.741546002999883, 49.496543103000064 ], [ -124.741490477999903, 49.496534944000103 ], [ -124.741448718999962, 49.496526571000103 ], [ -124.741407012999943, 49.496518210000069 ], [ -124.741351449999968, 49.496510061000031 ], [ -124.741309745999928, 49.496501699000106 ], [ -124.741267986999929, 49.496493327000053 ], [ -124.741212804999947, 49.496494157000065 ], [ -124.741129977999947, 49.496495393000068 ], [ -124.741088272999932, 49.496487029999983 ], [ -124.741046860999958, 49.49648764800002 ], [ -124.740991644999951, 49.496488490000104 ], [ -124.740977821999977, 49.496488693000096 ], [ -124.74093641, 49.496489311000069 ], [ -124.740909128999945, 49.496498730000084 ], [ -124.740867715999983, 49.496499347000061 ], [ -124.740853892999894, 49.496499551000042 ], [ -124.74081250099999, 49.49650019000007 ], [ -124.740784889999958, 49.496500583000064 ], [ -124.74075729899999, 49.496500998000073 ], [ -124.740716196, 49.496510619000098 ], [ -124.740688916999972, 49.496520037000025 ], [ -124.740647504999913, 49.496520655000026 ], [ -124.740620203999953, 49.496530050000025 ], [ -124.740592923999913, 49.496539468000037 ], [ -124.740565625999977, 49.496548864000019 ], [ -124.74053803399994, 49.496549279000057 ], [ -124.740510407999935, 49.496549707000057 ], [ -124.740483454999932, 49.496568092000068 ], [ -124.740456174999949, 49.496577511000055 ], [ -124.740428875999967, 49.496586907000079 ], [ -124.740401595999984, 49.496596324000031 ], [ -124.740374296999946, 49.496605719000065 ], [ -124.740361130999958, 49.49662391600009 ], [ -124.740334177999927, 49.496642302000076 ], [ -124.740307189999939, 49.496660700000113 ], [ -124.740294023999979, 49.496678896000091 ], [ -124.740267068999941, 49.496697283000103 ], [ -124.740241373999964, 49.496751646000099 ], [ -124.740242322999919, 49.49677862000005 ], [ -124.740215332, 49.496797020000059 ], [ -124.740202513999989, 49.496824206000063 ], [ -124.74018998399994, 49.496860373000047 ], [ -124.740177143999958, 49.496887537000099 ], [ -124.740178091999923, 49.496914512000039 ], [ -124.740179038999955, 49.4969414850001 ], [ -124.740152070999969, 49.496959907000068 ], [ -124.74013954099992, 49.496996074000108 ], [ -124.740113881999946, 49.497050424000086 ], [ -124.74011451799997, 49.497068395000014 ], [ -124.740087840999962, 49.4970957970001 ], [ -124.740061176999944, 49.497123165000097 ], [ -124.740048356999978, 49.497150350000041 ], [ -124.740008200999938, 49.497186944000099 ], [ -124.739981883999988, 49.497223302000066 ], [ -124.739941437999988, 49.497250916000041 ], [ -124.739915084999936, 49.497287286000052 ], [ -124.739874964999942, 49.49732386800013 ], [ -124.739848630999973, 49.497360259000089 ], [ -124.739808164999957, 49.497387852000038 ], [ -124.739781520999941, 49.497415241000063 ], [ -124.739727578999918, 49.497452025000023 ], [ -124.739700933999941, 49.497479414000061 ], [ -124.739646664999938, 49.497507230000039 ], [ -124.739620346, 49.497543588000106 ], [ -124.739579879999951, 49.497571179000076 ], [ -124.739525609999959, 49.497598996000114 ], [ -124.739485142999925, 49.497626586000088 ], [ -124.739444384999899, 49.497645198000072 ], [ -124.739390440999969, 49.497681981 ], [ -124.739349682999944, 49.497700592000079 ], [ -124.739309215999981, 49.497728184000103 ], [ -124.739254322999983, 49.497737994000062 ], [ -124.739227353999937, 49.497756415 ], [ -124.739186283999942, 49.497766022000093 ], [ -124.739172771999918, 49.497775229000119 ], [ -124.739131701999924, 49.497784836000037 ], [ -124.739104400999935, 49.497794231000093 ], [ -124.739063298999966, 49.497803850000025 ], [ -124.739035998999967, 49.497813246000135 ], [ -124.738994927999954, 49.497822853000102 ], [ -124.738967647999914, 49.497832271000064 ], [ -124.738926232999958, 49.497832888000055 ], [ -124.738898951999914, 49.497842305000077 ], [ -124.738857848999928, 49.497851925000134 ], [ -124.738830547999953, 49.497861321000045 ], [ -124.73878947799993, 49.497870928000061 ], [ -124.738761852999943, 49.497871355000058 ], [ -124.73872078299992, 49.497880963000107 ], [ -124.738693137999945, 49.497881368000094 ], [ -124.738652067, 49.497890976000051 ], [ -124.738624784999956, 49.497900393000101 ], [ -124.738583370999919, 49.497901010000106 ], [ -124.738556089999946, 49.4979104270001 ], [ -124.738501163999985, 49.497920249000074 ], [ -124.738445960999954, 49.49792105600006 ], [ -124.738391053999919, 49.4979309 ], [ -124.738335849999913, 49.49793170600006 ], [ -124.738280630999952, 49.49793254800008 ], [ -124.73822541299991, 49.497933389000117 ], [ -124.73817023099997, 49.497934219000086 ], [ -124.738114991999936, 49.497935037000069 ], [ -124.73807325300001, 49.49792668500006 ], [ -124.738004245999917, 49.497927716000056 ], [ -124.737949041999968, 49.49792852200008 ], [ -124.737893823999954, 49.497929364000058 ], [ -124.737838296999925, 49.497921201000089 ], [ -124.737796879999948, 49.497921819000091 ], [ -124.737727839999977, 49.497922863000049 ], [ -124.737672621999948, 49.497923702000065 ], [ -124.737617437999958, 49.497924531000109 ], [ -124.737576313999966, 49.497934128000054 ], [ -124.737521096999942, 49.497934969000063 ], [ -124.7374524, 49.497945004000059 ], [ -124.737410985999958, 49.497945619000092 ], [ -124.737369569999927, 49.497946236000125 ], [ -124.737314697999963, 49.497956066000015 ], [ -124.737287395999928, 49.497965462000067 ], [ -124.737246291999966, 49.497975081000043 ], [ -124.737219044999961, 49.497984486000114 ], [ -124.737191417999966, 49.497984912000106 ], [ -124.737150003999915, 49.497985530000086 ], [ -124.737108899999953, 49.497995148000065 ], [ -124.737053697999926, 49.497995953000057 ], [ -124.737012935999985, 49.498014564000137 ], [ -124.736971831999966, 49.498024183000055 ], [ -124.736930727999905, 49.498033802000094 ], [ -124.736889621999921, 49.49804342100002 ], [ -124.736834730999988, 49.498053230000082 ], [ -124.736807447999951, 49.498062647000083 ], [ -124.73676666799993, 49.498081234000047 ], [ -124.736725597999936, 49.498090841000057 ], [ -124.735992929999895, 49.498461671000094 ], [ -124.735952115999964, 49.498480270000101 ], [ -124.73591164599999, 49.498507860000139 ], [ -124.735871229999958, 49.498535460000056 ], [ -124.735830758999981, 49.498563050000023 ], [ -124.73579059799998, 49.498599642000087 ], [ -124.735750163999953, 49.498627221000042 ], [ -124.73572351599995, 49.498654608000074 ], [ -124.735683356999942, 49.498691202000089 ], [ -124.73564288599999, 49.498718791000066 ], [ -124.73561623799999, 49.498746179000094 ], [ -124.735576110999929, 49.498782760000026 ], [ -124.735549465999924, 49.498810147 ], [ -124.735522817999964, 49.498837535000114 ], [ -124.735482689999969, 49.498874117000113 ], [ -124.735456333999963, 49.498910485000088 ], [ -124.735429687999954, 49.498937873000074 ], [ -124.735417152, 49.498974040000121 ], [ -124.735390814999931, 49.49901043100008 ], [ -124.735364478999898, 49.499046822000018 ], [ -124.735351632999965, 49.499073986000063 ], [ -124.735325276999944, 49.499110354000031 ], [ -124.735298938999932, 49.499146746000108 ], [ -124.735286749999915, 49.499191903000032 ], [ -124.735274215999979, 49.499228070000036 ], [ -124.735261646999945, 49.49926425000006 ], [ -124.735235342999957, 49.499300628000057 ], [ -124.735222500999924, 49.499327792000066 ], [ -124.735224078999963, 49.499372737000044 ], [ -124.735197741999968, 49.499409129000085 ], [ -124.73518551599993, 49.499454299000064 ], [ -124.735172670999987, 49.499481462000077 ], [ -124.735160448999977, 49.49952663300013 ], [ -124.735161393999988, 49.49955360700006 ], [ -124.735149203, 49.499598764000019 ], [ -124.735136668, 49.499634930000106 ], [ -124.735123789999946, 49.49966210700012 ], [ -124.735110965999979, 49.499689293000088 ], [ -124.735098430999969, 49.499725461000061 ], [ -124.735099103999957, 49.499744571000086 ], [ -124.735099374999947, 49.499752435000104 ], [ -124.73510035599999, 49.499779397000061 ], [ -124.735101610999919, 49.499815374000022 ], [ -124.735088765999976, 49.499842538000088 ], [ -124.735075906999938, 49.499869737000054 ], [ -124.73507717699998, 49.499905680000076 ], [ -124.7350781199999, 49.499932655000123 ], [ -124.735065295999931, 49.499959840000081 ], [ -124.735066530999944, 49.499995796000086 ], [ -124.735067529999938, 49.500022780000052 ], [ -124.735054995, 49.500058948000053 ], [ -124.73505594, 49.500085922000018 ], [ -124.735056884999963, 49.500112896000061 ], [ -124.735044349999967, 49.500149063000045 ], [ -124.73504529499999, 49.500176037000138 ], [ -124.735046583999946, 49.500212003000094 ], [ -124.735047542999951, 49.500238943000092 ], [ -124.73503468399997, 49.500266141000061 ], [ -124.735035938, 49.500302119000033 ], [ -124.735036918, 49.50032908000005 ], [ -124.73503815299992, 49.500365037000066 ], [ -124.735025638999971, 49.500401225000083 ], [ -124.73502661699996, 49.50042818700009 ], [ -124.735027853999981, 49.500464142000084 ], [ -124.735028830999937, 49.500491104000027 ], [ -124.735030121999941, 49.500527070000089 ], [ -124.73503103199999, 49.500554056000098 ], [ -124.735018532, 49.500590211000052 ], [ -124.735019475999962, 49.500617186000085 ], [ -124.735020731999953, 49.50065316400007 ], [ -124.735022018999956, 49.500689128000076 ], [ -124.735022965, 49.500716104000048 ], [ -124.735024233999965, 49.50075204600008 ], [ -124.735025197999931, 49.500779042000012 ], [ -124.735026467999973, 49.500814985000019 ], [ -124.735027413999916, 49.500841960000074 ], [ -124.735028701999951, 49.500877925000061 ], [ -124.735029648999927, 49.500904901000098 ], [ -124.735032206999946, 49.500976808000104 ], [ -124.735033804999915, 49.501021777000098 ], [ -124.735048863999964, 49.501057530000011 ], [ -124.735050117999904, 49.501093508000061 ], [ -124.735065521999942, 49.501138252000018 ], [ -124.735080615999891, 49.501173993000101 ], [ -124.73509601899994, 49.501218737000052 ], [ -124.73511107799996, 49.50125449100004 ], [ -124.735112676999961, 49.501299460000091 ], [ -124.735127736999956, 49.501335213000047 ], [ -124.735143141999941, 49.501379957000026 ], [ -124.735158201000033, 49.50141571100005 ], [ -124.735159488, 49.501451676000016 ], [ -124.735161067999982, 49.50149662200009 ], [ -124.735176127999978, 49.501532377000039 ], [ -124.735163612999912, 49.501568566000081 ], [ -124.735164884999961, 49.501604509000117 ], [ -124.735152348999947, 49.501640675000026 ], [ -124.735153636999911, 49.501676641000046 ], [ -124.73512698699993, 49.501704029000066 ], [ -124.735114452999966, 49.501740196000078 ], [ -124.735101282999949, 49.501758392000085 ], [ -124.735074288999897, 49.501776790000065 ], [ -124.735061119999926, 49.50179498500006 ], [ -124.735047964999964, 49.50181314600011 ], [ -124.735034813999931, 49.501831364000076 ], [ -124.734210791999899, 49.502356450000079 ], [ -124.733583676999942, 49.502629021000104 ], [ -124.733503424999952, 49.502663899000027 ], [ -124.732809833999951, 49.502971158000079 ], [ -124.732564852999971, 49.503073771000054 ], [ -124.732020892000023, 49.503315791000048 ], [ -124.732021200999966, 49.503324794000036 ], [ -124.731993604999943, 49.503325208000035 ], [ -124.73196631899998, 49.503334623000072 ], [ -124.73195249399997, 49.503334824000035 ], [ -124.731925189999956, 49.50334421900007 ], [ -124.731911417999967, 49.503344430000027 ], [ -124.731884112999964, 49.503353822000051 ], [ -124.731856482999916, 49.503354248000107 ], [ -124.731856826999959, 49.503363238000119 ], [ -124.731829230999935, 49.503363652000061 ], [ -124.731829829999981, 49.503381635000032 ], [ -124.731845230999966, 49.503426380000079 ], [ -124.731846805999965, 49.503471327000057 ], [ -124.731848402999944, 49.503516296000029 ], [ -124.73183586499999, 49.503552463000048 ], [ -124.731837440999925, 49.503597410000076 ], [ -124.731839070999953, 49.503642365000076 ], [ -124.731840612999989, 49.503687325000044 ], [ -124.731842222999944, 49.50373225800007 ], [ -124.731843508999972, 49.503768224000055 ], [ -124.731844761999952, 49.503804202000026 ], [ -124.731846049999916, 49.50384016800011 ], [ -124.731847623999926, 49.503885115000024 ], [ -124.731835086999979, 49.503921282000071 ], [ -124.731836371999975, 49.503957247000123 ], [ -124.731837604999939, 49.503993203000078 ], [ -124.731838890999967, 49.504029168000073 ], [ -124.73184046899999, 49.504074115 ], [ -124.731841753999987, 49.50411008100005 ], [ -124.731829214999962, 49.504146248000055 ], [ -124.731830467999927, 49.504182226000061 ], [ -124.73183175299999, 49.504218192000039 ], [ -124.731833021999975, 49.504254135000068 ], [ -124.731834306999957, 49.504290101000088 ], [ -124.731821767999961, 49.504326268000064 ], [ -124.73182302099994, 49.504362246000042 ], [ -124.731824287999984, 49.504398189 ], [ -124.731825575999977, 49.504434155000084 ], [ -124.731827168999942, 49.504479125000074 ], [ -124.731814631999953, 49.50451529200015 ], [ -124.731815863999927, 49.504551248000077 ], [ -124.731816860999956, 49.504578232000071 ], [ -124.731803977999931, 49.504605408000067 ], [ -124.731804920999949, 49.504632384000018 ], [ -124.731805896999973, 49.504659346000075 ], [ -124.731806840999965, 49.504686320000062 ], [ -124.73179401199998, 49.504713507000105 ], [ -124.731794935, 49.504740459000082 ], [ -124.731795878999947, 49.504767435000126 ], [ -124.731783049999976, 49.504794621000066 ], [ -124.731784302, 49.504830598000098 ], [ -124.731785278999922, 49.504857562000105 ], [ -124.73177208599995, 49.504875735000077 ], [ -124.731772394999965, 49.504884738000023 ], [ -124.731773682999957, 49.504920704000064 ], [ -124.731774624999986, 49.504947679000082 ], [ -124.731761778999896, 49.504974843000113 ], [ -124.731763029999939, 49.505010821 ], [ -124.731764006999967, 49.50503778400013 ], [ -124.731765292999953, 49.505073748000044 ], [ -124.731752412, 49.505100926000118 ], [ -124.73175369799999, 49.505136890000117 ], [ -124.731740848999948, 49.505164056000091 ], [ -124.731741756999938, 49.505191042000057 ], [ -124.731729562999959, 49.505236201000081 ], [ -124.731717022999959, 49.505272367000032 ], [ -124.731704827999977, 49.505317526000098 ], [ -124.73169228799999, 49.505353693000117 ], [ -124.731680058999984, 49.505398864000014 ], [ -124.731667519999988, 49.505435031000019 ], [ -124.73165532499992, 49.50548018800005 ], [ -124.73164275, 49.505516369000134 ], [ -124.73164436199994, 49.505561303000093 ], [ -124.731631787999973, 49.505597482000027 ], [ -124.731634049999954, 49.505660411000122 ], [ -124.731635626999918, 49.505705358000057 ], [ -124.731650051, 49.505723140000072 ], [ -124.731651028999977, 49.505750103000025 ], [ -124.731651645999989, 49.505768110000105 ], [ -124.731666394999934, 49.505794862000066 ], [ -124.731667048999967, 49.505812855000094 ], [ -124.731667682999927, 49.505830828000086 ], [ -124.731682431999943, 49.505857578000082 ], [ -124.731683083999883, 49.505875572000015 ], [ -124.731698141999985, 49.505911328000138 ], [ -124.731713198999955, 49.505947082000034 ], [ -124.731728603, 49.505991828000077 ], [ -124.731729887999975, 49.506027794000069 ], [ -124.73175877199999, 49.506063347000122 ], [ -124.731773830999927, 49.506099101000054 ], [ -124.731788920999961, 49.506134845000126 ], [ -124.731804000999958, 49.506170621000109 ], [ -124.731819059999935, 49.506206375000055 ], [ -124.73183446199999, 49.506251121000041 ], [ -124.731849552999975, 49.506286863000078 ], [ -124.73187907099998, 49.506340388000062 ], [ -124.731894747999988, 49.506394149000073 ], [ -124.731924607999943, 49.506456666000076 ], [ -124.731956011999927, 49.506564141000112 ], [ -124.731985874999964, 49.506626657000012 ], [ -124.732001565999965, 49.506680384000063 ], [ -124.732031102999912, 49.506733932000046 ], [ -124.73206062300001, 49.506787457000073 ], [ -124.732103931999944, 49.506840794000027 ], [ -124.732146932999953, 49.506885126000029 ], [ -124.732175797999943, 49.506920656000098 ], [ -124.732218507999946, 49.506956009000064 ], [ -124.73226119899999, 49.506991339000038 ], [ -124.732303565999985, 49.507017700000063 ], [ -124.732346256999975, 49.507053028 ], [ -124.732388624999942, 49.507079389000033 ], [ -124.732445107999965, 49.507114530000095 ], [ -124.73252987599993, 49.507167240000101 ], [ -124.73258636199995, 49.507202381000077 ], [ -124.732628762, 49.507228728 ], [ -124.73267110899998, 49.507255068000049 ], [ -124.73271347799998, 49.507281428000049 ], [ -124.732755843999911, 49.507307790000041 ], [ -124.732812053999936, 49.507333914000114 ], [ -124.73285442199996, 49.507360273000145 ], [ -124.73289678899999, 49.507386635000067 ], [ -124.732952653999973, 49.507403769000064 ], [ -124.73299502299993, 49.507430129000085 ], [ -124.733051195999934, 49.507456265000094 ], [ -124.733093273999913, 49.507473646000086 ], [ -124.733149103999978, 49.507490792000098 ], [ -124.733177336999944, 49.507508351000091 ], [ -124.73321910599995, 49.507516727000045 ], [ -124.733261163999927, 49.507534083000095 ], [ -124.733289072, 49.507542675000067 ], [ -124.733330820999981, 49.507551028000066 ], [ -124.73337287799994, 49.507568386000052 ], [ -124.733414612999979, 49.507576775000061 ], [ -124.733442537999906, 49.507585330000062 ], [ -124.733484270999938, 49.50759372000006 ], [ -124.733526329999947, 49.507611076000089 ], [ -124.733554273, 49.50761965300007 ], [ -124.733610447000018, 49.507645790000041 ], [ -124.733680104999934, 49.507662734000057 ], [ -124.733736297999954, 49.50768889400009 ], [ -124.733792130000012, 49.507706038000059 ], [ -124.733848303999963, 49.507732175000072 ], [ -124.733904189999976, 49.50774933000006 ], [ -124.733960385999964, 49.507775489000061 ], [ -124.734002733999958, 49.507801827000037 ], [ -124.734058929999961, 49.507827986000088 ], [ -124.73411510599999, 49.507854122000026 ], [ -124.734157473999943, 49.507880482000118 ], [ -124.73419986, 49.507906808000023 ], [ -124.734256018999986, 49.507932978000056 ], [ -124.734284597999974, 49.507959528000136 ], [ -124.734327000999954, 49.50798587600012 ], [ -124.734369661, 49.508021217000156 ], [ -124.734412030999962, 49.508047577000085 ], [ -124.734454434, 49.508073925000048 ], [ -124.734497092999902, 49.50810926700008 ], [ -124.734525669999982, 49.508135815000074 ], [ -124.734568041999964, 49.50816217600007 ], [ -124.734610734999961, 49.508197505000105 ], [ -124.734667220999981, 49.508232644000039 ], [ -124.734723742999947, 49.50826777000006 ], [ -124.734780539999946, 49.508311914000039 ], [ -124.734837060999922, 49.508347040000068 ], [ -124.734893546999928, 49.508382180000041 ], [ -124.734950068999979, 49.508417306000077 ], [ -124.73500684699998, 49.508461427000036 ], [ -124.73504925099995, 49.508487773000077 ], [ -124.735601058999961, 49.5088573230001 ], [ -124.736014514999937, 49.509219926000064 ], [ -124.736383046999947, 49.509484256000071 ], [ -124.736637620999957, 49.509651346000084 ], [ -124.736964405, 49.509907324000061 ], [ -124.73697852299992, 49.509916103000116 ], [ -124.737035339999935, 49.50996020900007 ], [ -124.737105691999957, 49.509995132000107 ], [ -124.737162494999936, 49.51003927400005 ], [ -124.737232792, 49.51007418700005 ], [ -124.737289627999957, 49.510118317000078 ], [ -124.737359928, 49.510153231000089 ], [ -124.737416418999928, 49.510188368000044 ], [ -124.737486736999969, 49.51022330400005 ], [ -124.737557056999947, 49.510258240000113 ], [ -124.737627355000015, 49.510293154000031 ], [ -124.737683536, 49.510319288000098 ], [ -124.737725910999984, 49.510345646000104 ], [ -124.737782125999942, 49.51037176800002 ], [ -124.737837982, 49.510388934000034 ], [ -124.737894163999925, 49.510415068000036 ], [ -124.737950365999922, 49.510441225000093 ], [ -124.738006199999944, 49.510458369000027 ], [ -124.738062403999962, 49.510484526000049 ], [ -124.738118272999969, 49.510501655000084 ], [ -124.738174456999971, 49.510527790000076 ], [ -124.738230312999917, 49.510544956000054 ], [ -124.738286203999934, 49.51056210900007 ], [ -124.738342038999974, 49.510579252000085 ], [ -124.738397930999952, 49.510596405000115 ], [ -124.738453785999937, 49.510613570000082 ], [ -124.738509658999973, 49.510630701000068 ], [ -124.738579341999966, 49.510647664000039 ], [ -124.738634887999922, 49.510655826000075 ], [ -124.7386907599999, 49.510672957000082 ], [ -124.738746615999958, 49.510690121000032 ], [ -124.738802455, 49.510707264000082 ], [ -124.738872171999944, 49.510724215000039 ], [ -124.73892801, 49.510741358000089 ], [ -124.7389839, 49.51075851100007 ], [ -124.739053239999976, 49.510766482000136 ], [ -124.739109111999966, 49.510783612000111 ], [ -124.73916496799994, 49.510800778000053 ], [ -124.739234633999942, 49.510817719000045 ], [ -124.739290524999959, 49.510834871000107 ], [ -124.739346363999971, 49.510852014000058 ], [ -124.739402253999984, 49.510869166000084 ], [ -124.739458437999986, 49.510895300000051 ], [ -124.73951429499999, 49.510912464000079 ], [ -124.739542586999931, 49.510930031000093 ], [ -124.739570478999937, 49.510938598000088 ], [ -124.739598735999962, 49.510956177000018 ], [ -124.739626680999905, 49.510964754000057 ], [ -124.73965491899996, 49.510982311000078 ], [ -124.739683210999956, 49.510999877000046 ], [ -124.739711103, 49.511008444 ], [ -124.739739358999913, 49.511026023000042 ], [ -124.739767305999948, 49.511034600000094 ], [ -124.739795541999953, 49.511052156000034 ], [ -124.739823835, 49.511069723000034 ], [ -124.739851726999945, 49.511078290000064 ], [ -124.73987998399997, 49.511095870000084 ], [ -124.739907928999941, 49.511104446000097 ], [ -124.739936166999911, 49.511122003000047 ], [ -124.739964426, 49.511139582000077 ], [ -124.739992370999943, 49.511148157000029 ], [ -124.740020609999959, 49.511165716000114 ], [ -124.740048554999987, 49.511174292000142 ], [ -124.740076792999957, 49.511191849000014 ], [ -124.740105050999929, 49.511209427000068 ], [ -124.740132997000018, 49.511218005000032 ], [ -124.74016123399997, 49.511235561000021 ], [ -124.740189179999945, 49.511244137000062 ], [ -124.740217419999951, 49.511261694000069 ], [ -124.740245365, 49.511270270000125 ], [ -124.740273620999957, 49.511287849000027 ], [ -124.740301858999985, 49.511305406000112 ], [ -124.74032980600002, 49.511313982000033 ], [ -124.740358064999896, 49.511331562000038 ], [ -124.740386009999952, 49.511340138000058 ], [ -124.74042836699999, 49.511366474000141 ], [ -124.740470433999917, 49.511383828000135 ], [ -124.74051249899999, 49.511401182000043 ], [ -124.74055456399995, 49.511418536000157 ], [ -124.740596649999972, 49.511435913000085 ], [ -124.740638659999959, 49.511453258000053 ], [ -124.740680726999955, 49.511470613000022 ], [ -124.740722810999969, 49.511487989000109 ], [ -124.740764875999972, 49.511505343000046 ], [ -124.740806941999907, 49.511522698000086 ], [ -124.740849008999973, 49.511540051000033 ], [ -124.740891038999948, 49.511557419000027 ], [ -124.740933104999911, 49.511574773000063 ], [ -124.740975483999961, 49.511601131000063 ], [ -124.741017548999977, 49.511618486000103 ], [ -124.741059615999973, 49.511635839000093 ], [ -124.741101992, 49.51166219600001 ], [ -124.741130229999939, 49.511679754000092 ], [ -124.741172295999959, 49.511697107000025 ], [ -124.741200881999987, 49.511723656000122 ], [ -124.741229138999955, 49.511741234000105 ], [ -124.741257066999978, 49.511749789000099 ], [ -124.741271497999946, 49.511767570000039 ], [ -124.74129975699995, 49.511785149000055 ], [ -124.741328028999959, 49.511802694000082 ], [ -124.741342459999899, 49.511820475000093 ], [ -124.741370407999952, 49.511829051000049 ], [ -124.741398663999959, 49.511846630000029 ], [ -124.74141313, 49.511864399000075 ], [ -124.741441368999915, 49.511881956000082 ], [ -124.741455800999958, 49.511899737000093 ], [ -124.7414840389999, 49.511917295000096 ], [ -124.741498503999978, 49.511935064000056 ], [ -124.741526762999939, 49.511952643000015 ], [ -124.741541193999979, 49.511970426000062 ], [ -124.741555638999969, 49.511988172000038 ], [ -124.741570123999978, 49.512005963000064 ], [ -124.741584534999944, 49.512023723 ], [ -124.741599000999955, 49.51204149200003 ], [ -124.741627896999901, 49.512077044000044 ], [ -124.741628845999983, 49.512104020000073 ], [ -124.741643278999916, 49.512121801000056 ], [ -124.741643603999961, 49.512130770000041 ], [ -124.741658054999931, 49.512148575000062 ], [ -124.741659017999979, 49.512175515000081 ], [ -124.741659642999963, 49.512193522000075 ], [ -124.741660278999987, 49.512211495000102 ], [ -124.741674745999944, 49.512229263000073 ], [ -124.741675694999984, 49.512256239000109 ], [ -124.741676005999963, 49.512265243000094 ], [ -124.741676332999987, 49.512274211000012 ], [ -124.741676642999934, 49.512283215000082 ], [ -124.741677282999916, 49.51230118700007 ], [ -124.741677938999928, 49.512319181000088 ], [ -124.741678577999963, 49.512337153000033 ], [ -124.741692697999923, 49.51234593099999 ], [ -124.74169333499999, 49.512363904000026 ], [ -124.741694285000023, 49.512390879000101 ], [ -124.741695579999913, 49.512426846000096 ], [ -124.741696528999967, 49.512453821000094 ], [ -124.741698773999943, 49.512516764000104 ], [ -124.741686241, 49.512552933000059 ], [ -124.741688464999953, 49.512615853000028 ], [ -124.74167560799998, 49.512643055000119 ], [ -124.741676881999965, 49.512678998000084 ], [ -124.741677830999947, 49.512705973000038 ], [ -124.741665319999925, 49.51274216500012 ], [ -124.74165247499991, 49.512769332000047 ], [ -124.741653716999977, 49.512805288000038 ], [ -124.741640890999975, 49.512832477000124 ], [ -124.741642167999927, 49.51286842100005 ], [ -124.741629307999958, 49.51289562200003 ], [ -124.741630292999986, 49.512922585000126 ], [ -124.741617758999894, 49.512958755000049 ], [ -124.741604880999915, 49.512985934000078 ], [ -124.741605863999951, 49.513012896000092 ], [ -124.741606486999956, 49.513030904000047 ], [ -124.741593332999912, 49.513049066000072 ], [ -124.741594301999939, 49.513076064000096 ], [ -124.741581110999959, 49.513094238000072 ], [ -124.741581767999932, 49.513112233000072 ], [ -124.741568888999964, 49.51313941300009 ], [ -124.741569562999985, 49.513157372000073 ], [ -124.74155635599999, 49.513175582000066 ], [ -124.741557340999933, 49.513202545000055 ], [ -124.741544170999973, 49.51322074200003 ], [ -124.741544806, 49.513238713000106 ], [ -124.7415319629999, 49.513265880000105 ], [ -124.741532586999966, 49.513283887000092 ], [ -124.74151939699999, 49.513302062000079 ], [ -124.741520398999953, 49.513329047000141 ], [ -124.741507209999924, 49.513347222000029 ], [ -124.741494037999971, 49.513365420000063 ], [ -124.741494675999988, 49.513383392000044 ], [ -124.74149339799996, 49.513386105000073 ], [ -124.740361660999895, 49.513372983000068 ], [ -124.74033920799999, 49.512735783000103 ], [ -124.740175427999972, 49.512590244000059 ], [ -124.740137432, 49.512556496000066 ], [ -124.740039524999972, 49.512469503000027 ], [ -124.739859883999941, 49.512059292000053 ], [ -124.73895510599999, 49.511515294000091 ] ], [ [ -124.733462863999975, 49.499126166000039 ], [ -124.733470352999973, 49.498853217 ], [ -124.732967382999959, 49.498847348000012 ], [ -124.732959889999904, 49.499120297000104 ], [ -124.733462863999975, 49.499126166000039 ] ], [ [ -124.728662222999944, 49.496958764000091 ], [ -124.72869790099999, 49.495663295000021 ], [ -124.725482146, 49.495625582000045 ], [ -124.725538075999935, 49.493599694000082 ], [ -124.725214170999962, 49.493595890000051 ], [ -124.725208300999924, 49.493808455000057 ], [ -124.725350245999962, 49.493810122000092 ], [ -124.725294710999947, 49.495821386000046 ], [ -124.727798676999967, 49.495850764000075 ], [ -124.727768428999966, 49.496948292000063 ], [ -124.728662222999944, 49.496958764000091 ] ], [ [ -124.719144598999975, 49.494573578000015 ], [ -124.719150696999989, 49.494353767000106 ], [ -124.718234552999931, 49.494342951000064 ], [ -124.718228450999945, 49.494562763000069 ], [ -124.719144598999975, 49.494573578000015 ] ], [ [ -124.750460043999936, 49.494438754000029 ], [ -124.75046566599994, 49.494231031000027 ], [ -124.750233944999977, 49.494228363000083 ], [ -124.750228319999962, 49.494436086000071 ], [ -124.750460043999936, 49.494438754000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8107917", "BldgCostT": "5591667", "sL_LossRatio": "0.972492594159966", "sL_AssetLoss": "8270.5", "sL_BldgLoss": "8043", "sL_StrLoss": "7050", "sL_NStrLoss": "993", "sL_ContLoss": "227.5", "geom_point": "0101000020E610000065206C04A4335FC0551ECD267AC74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.806443703999932, 49.562063004 ], [ -124.806460166999926, 49.561427207000065 ], [ -124.805255596000038, 49.561413975000029 ], [ -124.805273390999972, 49.560727455000055 ], [ -124.804810421999946, 49.560722365000068 ], [ -124.804816039999963, 49.560505723000041 ], [ -124.802479347999963, 49.560480005000031 ], [ -124.802534067999915, 49.558373659000075 ], [ -124.801874953, 49.558366396000025 ], [ -124.801968460999944, 49.554768501000098 ], [ -124.807492912999976, 49.554829256000048 ], [ -124.807481658999976, 49.555264326000042 ], [ -124.809851435999917, 49.555290301000099 ], [ -124.810038749999975, 49.555427772000037 ], [ -124.80999350799999, 49.557180324000072 ], [ -124.810428444999943, 49.557185085000121 ], [ -124.810410727999951, 49.557871610000099 ], [ -124.810873667999928, 49.557876675000074 ], [ -124.81085726799995, 49.558512476000082 ], [ -124.812061762999988, 49.558525647000096 ], [ -124.811969036, 49.562123530000079 ], [ -124.806443703999932, 49.562063004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.979459089352961", "sL_AssetLoss": "584.2", "sL_BldgLoss": "572.2", "sL_StrLoss": "533", "sL_NStrLoss": "39.2", "sL_ContLoss": "12", "geom_point": "0101000020E61000001CFADD2AFE305FC000890DB323C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.762164609999914, 49.498753652000111 ], [ -124.763306227, 49.498766665000048 ], [ -124.763307892999961, 49.498768590000083 ], [ -124.764002983999958, 49.49925279100011 ], [ -124.764369617999989, 49.499613062000016 ], [ -124.764433100999938, 49.499675440000082 ], [ -124.765120504999913, 49.500350888000149 ], [ -124.76515761899995, 49.500628606000099 ], [ -124.765301103999931, 49.500788086000078 ], [ -124.765867110999977, 49.501131408000091 ], [ -124.766498, 49.50183209700004 ], [ -124.766906685999956, 49.502049998000054 ], [ -124.767017187999954, 49.502146723000074 ], [ -124.767492520999923, 49.502562703000152 ], [ -124.768623545999944, 49.503248674000069 ], [ -124.768603545999923, 49.503998326000143 ], [ -124.768578830999928, 49.503967944000109 ], [ -124.76854997099997, 49.503932412000061 ], [ -124.768507232000019, 49.503897076000065 ], [ -124.768478317999964, 49.503861534000087 ], [ -124.768435632999967, 49.503826208000113 ], [ -124.768406720999977, 49.503790665000061 ], [ -124.768364332999951, 49.503764321000048 ], [ -124.768335384999943, 49.503728791000079 ], [ -124.768293017999895, 49.503702468000057 ], [ -124.76826443799996, 49.503675893000064 ], [ -124.76822207, 49.503649571000032 ], [ -124.768193453999942, 49.503623010000105 ], [ -124.768151087999954, 49.503596687000027 ], [ -124.768122506999987, 49.503570112000041 ], [ -124.76808014, 49.50354379 ], [ -124.768037720000024, 49.503517457000072 ], [ -124.768009156999952, 49.503490905000028 ], [ -124.76796677199998, 49.503464560000019 ], [ -124.7679243499999, 49.503438227000053 ], [ -124.767895789999955, 49.50341167500013 ], [ -124.76781103799999, 49.503359008000096 ], [ -124.767782421999925, 49.503332446000087 ], [ -124.767740055999951, 49.503306124000112 ], [ -124.767697669999933, 49.503279778000021 ], [ -124.767669054999928, 49.503253216000083 ], [ -124.767626687999936, 49.503226893000047 ], [ -124.767584302999964, 49.50320054700007 ], [ -124.7675557419999, 49.503173996000022 ], [ -124.767513323999964, 49.503147664000053 ], [ -124.767470619, 49.503112314000063 ], [ -124.767442023999948, 49.503085776000084 ], [ -124.767399638999976, 49.503059430000057 ], [ -124.767357272999945, 49.503033106000046 ], [ -124.767314888999962, 49.503006761000073 ], [ -124.767286292999955, 49.502980222000062 ], [ -124.767243589999936, 49.502944873000054 ], [ -124.767201206999943, 49.50291852800013 ], [ -124.767172609999989, 49.502891989000069 ], [ -124.767130226999953, 49.502865643000092 ], [ -124.767087860999979, 49.502839319000095 ], [ -124.767059265999961, 49.502812780000063 ], [ -124.76701656399996, 49.502777432000137 ], [ -124.766974178999988, 49.502751085000085 ], [ -124.766945584999959, 49.502724546000124 ], [ -124.766903198999941, 49.502698201000058 ], [ -124.76687428799994, 49.502662660000034 ], [ -124.766831922999955, 49.502636336000066 ], [ -124.76677474799996, 49.502583221000044 ], [ -124.766746154999964, 49.502556683000059 ], [ -124.766717891999946, 49.502539110000029 ], [ -124.766689330999952, 49.502512558000042 ], [ -124.766661087999978, 49.502495010000054 ], [ -124.766632472999945, 49.502468448000087 ], [ -124.766603878999945, 49.502441909000012 ], [ -124.766589758999913, 49.502433134000036 ], [ -124.766589440999937, 49.502424131000112 ], [ -124.766532286999919, 49.502371039000089 ], [ -124.766504044999976, 49.502353492000069 ], [ -124.7664754299999, 49.502326928000038 ], [ -124.766446871999975, 49.502300377000019 ], [ -124.766432432999963, 49.502282600000036 ], [ -124.766403839999967, 49.502256060000036 ], [ -124.766375278999973, 49.502229507000088 ], [ -124.766346981999945, 49.502211949000078 ], [ -124.766318422999973, 49.502185397000027 ], [ -124.766303653999941, 49.502158651000101 ], [ -124.766275390999922, 49.502141080000087 ], [ -124.766246796999923, 49.502114540000051 ], [ -124.766218237999922, 49.502087989000046 ], [ -124.766203763999968, 49.502070222000036 ], [ -124.766175205999986, 49.502043671000067 ], [ -124.766146943999956, 49.502026099000012 ], [ -124.766132154999923, 49.501999331 ], [ -124.766103593999972, 49.501972779000027 ], [ -124.766089120999965, 49.501955014000025 ], [ -124.766060528999972, 49.501928474000124 ], [ -124.76603232199993, 49.501910912000049 ], [ -124.76601753099996, 49.501884144000101 ], [ -124.765988937999936, 49.501857605000097 ], [ -124.765974499, 49.501839827000069 ], [ -124.765945905999956, 49.501813288000079 ], [ -124.765917347999917, 49.501786735000053 ], [ -124.765902874999966, 49.501768971000111 ], [ -124.76587426199994, 49.501742408000119 ], [ -124.76585952799995, 49.50171564900009 ], [ -124.76583126599995, 49.501698079000107 ], [ -124.765802670999932, 49.501671539000071 ], [ -124.765788232999967, 49.501653761000057 ], [ -124.76575964099996, 49.501627222000081 ], [ -124.765716942999944, 49.501591872000063 ], [ -124.765688032999932, 49.50155632900001 ], [ -124.765645317999955, 49.501521016000041 ], [ -124.765616407999971, 49.501485473000074 ], [ -124.765573729999943, 49.501450146000138 ], [ -124.765531014999965, 49.501414832000144 ], [ -124.765502085999955, 49.5013792660001 ], [ -124.76545940699999, 49.50134393900003 ], [ -124.765416692999963, 49.501308624000075 ], [ -124.765387781999962, 49.501273083000029 ], [ -124.765345084999979, 49.501237733000067 ], [ -124.765316194999912, 49.501202213000028 ], [ -124.765273463, 49.50116687600007 ], [ -124.765230783999954, 49.501131549000057 ], [ -124.765201874999917, 49.501096007000115 ], [ -124.765159141999931, 49.501060669000054 ], [ -124.765116461999938, 49.501025342000077 ], [ -124.765073730999944, 49.500990006000038 ], [ -124.76504482199995, 49.500954462000067 ], [ -124.765002108999909, 49.500919148000065 ], [ -124.764959429, 49.500883822000063 ], [ -124.76493052, 49.50084827900006 ], [ -124.76488779, 49.500812942000046 ], [ -124.764845111999975, 49.500777615000089 ], [ -124.764802377999928, 49.500742278000082 ], [ -124.764759349999949, 49.500697960000132 ], [ -124.764716670999917, 49.500662634000022 ], [ -124.76468776199999, 49.500627091000098 ], [ -124.764645050999931, 49.500591775000053 ], [ -124.764616474999954, 49.500565201000086 ], [ -124.764602352999972, 49.500556426000074 ], [ -124.76455964099992, 49.500521112000065 ], [ -124.764516942999961, 49.500485761000071 ], [ -124.764474233999948, 49.500450448 ], [ -124.764431533999982, 49.500415098000076 ], [ -124.764402627, 49.500379555000087 ], [ -124.764359599999921, 49.500335237000037 ], [ -124.76431688699995, 49.5002999230001 ], [ -124.76427419099997, 49.500264573000052 ], [ -124.764231478999974, 49.500229258000061 ], [ -124.764188746999977, 49.500193921000125 ], [ -124.764146069, 49.50015859300008 ], [ -124.764103339999934, 49.500123256000066 ], [ -124.764060661999906, 49.500087930000099 ], [ -124.764003811999942, 49.500043817000041 ], [ -124.76396110099995, 49.500008502000078 ], [ -124.763946960999974, 49.499999706000054 ], [ -124.763901774999965, 49.499964213000048 ], [ -124.763842397999937, 49.49992917900007 ], [ -124.763796468999928, 49.499884456000068 ], [ -124.763750561999984, 49.499839754000078 ], [ -124.763676339999932, 49.499795950000127 ], [ -124.763631153999967, 49.499760457000114 ], [ -124.763585934999981, 49.499724975000056 ], [ -124.763525850999898, 49.499680700000063 ], [ -124.763466505999958, 49.499645653000066 ], [ -124.763420598, 49.499600953000041 ], [ -124.763361256999971, 49.499565907000061 ], [ -124.763301879999943, 49.499530874000108 ], [ -124.76324181499993, 49.49948662000002 ], [ -124.763195888999959, 49.499441896000121 ], [ -124.763136547999963, 49.499406851000067 ], [ -124.763077170999935, 49.499371818000043 ], [ -124.763017106999911, 49.499327564000119 ], [ -124.762957765999943, 49.499292518000047 ], [ -124.762928094999936, 49.499274996000096 ], [ -124.762912546999956, 49.49925703700012 ], [ -124.762868719999972, 49.499239962000075 ], [ -124.762853186999934, 49.499221969000168 ], [ -124.76282348299999, 49.49920446000008 ], [ -124.762779653999971, 49.499187384000045 ], [ -124.762764140999977, 49.499169412000072 ], [ -124.762734435999946, 49.499151903 ], [ -124.762704764999938, 49.499134380000015 ], [ -124.762675093999988, 49.499116857000011 ], [ -124.762645422999981, 49.499099334000043 ], [ -124.762615732999947, 49.499081789000101 ], [ -124.762586047999932, 49.499064301000033 ], [ -124.762526688999955, 49.499029232000119 ], [ -124.762497017999976, 49.499011709000023 ], [ -124.7624814699999, 49.498993751000086 ], [ -124.762451800999926, 49.498976227000114 ], [ -124.762422095999966, 49.498958718000083 ], [ -124.762392425999948, 49.498941194000039 ], [ -124.76236206699997, 49.498914450000051 ], [ -124.762331674, 49.498887720000077 ], [ -124.762273002999976, 49.498861872000134 ], [ -124.762241942999964, 49.498825942000103 ], [ -124.762196017999941, 49.498781219000129 ], [ -124.76216566, 49.498754475000041 ], [ -124.762164609999914, 49.498753652000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65777500", "BldgCostT": "45100000", "sL_LossRatio": "0.983970142268243", "sL_AssetLoss": "54142.09", "sL_BldgLoss": "53274.2", "sL_StrLoss": "49209", "sL_NStrLoss": "4065.2", "sL_ContLoss": "867.89", "geom_point": "0101000020E610000039287A438E345FC04E7BEF1497C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.818819202999975, 49.564915516000056 ], [ -124.81884434899996, 49.563934311000025 ], [ -124.814728408999912, 49.563889513000113 ], [ -124.814778764999929, 49.561931263000105 ], [ -124.814756430999935, 49.56193101900007 ], [ -124.81477765299999, 49.561105661000063 ], [ -124.814718978999949, 49.561105021000081 ], [ -124.814811489999954, 49.55750712900003 ], [ -124.816120840999972, 49.557521399000073 ], [ -124.816134543999965, 49.556987852000077 ], [ -124.816595748999987, 49.556998785000076 ], [ -124.816652880999925, 49.557003529000077 ], [ -124.816575956999912, 49.558021649000118 ], [ -124.816797328999968, 49.558388431000012 ], [ -124.816898451999975, 49.558664648000011 ], [ -124.816746843999937, 49.55907436300005 ], [ -124.816522415999927, 49.559744572000049 ], [ -124.816377543999934, 49.560284005000021 ], [ -124.81648386899991, 49.560727226000061 ], [ -124.818491177999988, 49.560764317000086 ], [ -124.818956665999949, 49.560292914000073 ], [ -124.81936705299999, 49.560609655000043 ], [ -124.820826852999943, 49.560633351000014 ], [ -124.820840660000016, 49.559495266000027 ], [ -124.82158006, 49.559503285000076 ], [ -124.821587865999945, 49.559197961000024 ], [ -124.820898532999934, 49.559190485000101 ], [ -124.820907095999942, 49.558855735000094 ], [ -124.820848427999962, 49.558855099000013 ], [ -124.820867723999953, 49.557264458000127 ], [ -124.820933729999936, 49.557263421000087 ], [ -124.821058423999958, 49.557270461000073 ], [ -124.821113719999914, 49.557269572000038 ], [ -124.821183153999954, 49.557277487000064 ], [ -124.821267079999956, 49.557303141000077 ], [ -124.821480420999976, 49.557461710000041 ], [ -124.821565316999951, 49.557514354000098 ], [ -124.821692031999987, 49.55757531600009 ], [ -124.821776289999946, 49.557609975000084 ], [ -124.821874028999972, 49.557635425000029 ], [ -124.821957956999967, 49.557661077000049 ], [ -124.822112322999914, 49.557721623000106 ], [ -124.822224577999975, 49.557764834000061 ], [ -124.822336467999961, 49.557799053000046 ], [ -124.822434514999941, 49.55783348600005 ], [ -124.822630025999899, 49.557884372000082 ], [ -124.822728769999969, 49.557936803000082 ], [ -124.82281302899996, 49.557971459000079 ], [ -124.823009179999971, 49.55804033200004 ], [ -124.823232325999967, 49.558090782000114 ], [ -124.823330738999985, 49.558134205000094 ], [ -124.823485418999951, 49.558203731000049 ], [ -124.823542048999968, 49.558238826000036 ], [ -124.823639822999951, 49.558264262000051 ], [ -124.823724050999928, 49.558298930000078 ], [ -124.823836617999945, 49.55835112200009 ], [ -124.823920549999983, 49.558376772000074 ], [ -124.824129510999967, 49.558418464000077 ], [ -124.82422694, 49.558434929000057 ], [ -124.824310543999971, 49.558451575000056 ], [ -124.824448409999931, 49.558440421000114 ], [ -124.824559299000015, 49.55844765800007 ], [ -124.824669534999913, 49.558436943000132 ], [ -124.824890326999977, 49.55842445800009 ], [ -124.825042014999937, 49.558413067000039 ], [ -124.825097277999944, 49.55841219000007 ], [ -124.825138717999891, 49.558411549000049 ], [ -124.825193704999947, 49.558401676000067 ], [ -124.825606620999963, 49.558350178000147 ], [ -124.825717841999946, 49.558366417000101 ], [ -124.825871209999889, 49.558399978000104 ], [ -124.825968952999943, 49.558425425000102 ], [ -124.826107837, 49.558441214000048 ], [ -124.82624637899994, 49.558448030000065 ], [ -124.826470844999932, 49.558534433000034 ], [ -124.82654229299996, 49.558596304000055 ], [ -124.826613388999974, 49.558649146000057 ], [ -124.826738457999951, 49.558695841000031 ], [ -124.82683592199993, 49.558724087000066 ], [ -124.826933575999988, 49.558743195000027 ], [ -124.826975386999933, 49.558752697000081 ], [ -124.8273214799999, 49.558832899000052 ], [ -124.827611689999983, 49.55883250500009 ], [ -124.829453110999935, 49.558573412000023 ], [ -124.830886490999944, 49.558163303000072 ], [ -124.831239596999964, 49.557858504000059 ], [ -124.831297083999956, 49.557608009000035 ], [ -124.831285278999928, 49.55671269100003 ], [ -124.831188700999931, 49.556434504000059 ], [ -124.830822696999945, 49.555776505000033 ], [ -124.830462721999979, 49.555374099000019 ], [ -124.829994684999946, 49.554597903000086 ], [ -124.829224099999934, 49.552356485000153 ], [ -124.829121588999925, 49.551875887000058 ], [ -124.829103531, 49.551467531000114 ], [ -124.829124252999932, 49.551383388000012 ], [ -124.829131927999981, 49.551352180000094 ], [ -124.82915133099999, 49.551308266000035 ], [ -124.829099684999932, 49.551170602000113 ], [ -124.829082165999949, 49.551071930000099 ], [ -124.829065654999965, 49.551000237000025 ], [ -124.829062964999935, 49.550928304000067 ], [ -124.829046123999944, 49.550847607000065 ], [ -124.829001985000019, 49.550776354000064 ], [ -124.828958193999966, 49.550714069000087 ], [ -124.828913724999978, 49.550633812000079 ], [ -124.828869569999952, 49.550562536000058 ], [ -124.828825762999884, 49.550500288000087 ], [ -124.828768476999983, 49.550447188000128 ], [ -124.828710519999916, 49.550376172000043 ], [ -124.828653253999946, 49.550323095000103 ], [ -124.828595623999959, 49.550261027000012 ], [ -124.828552164999977, 49.550207747000094 ], [ -124.828464548999975, 49.550083192000095 ], [ -124.828348632999976, 49.549941102000048 ], [ -124.828263377999917, 49.549879473000075 ], [ -124.828192239999964, 49.549826624000026 ], [ -124.828120823999981, 49.549764780000046 ], [ -124.828077020999928, 49.549702532000062 ], [ -124.828019426999944, 49.549640449999984 ], [ -124.827891353999959, 49.549543527000019 ], [ -124.827862721999949, 49.549516988000036 ], [ -124.827804418999932, 49.549436945000096 ], [ -124.827746479999945, 49.549365894000076 ], [ -124.82774017499996, 49.549360468000039 ], [ -124.827675031999988, 49.549304062000068 ], [ -124.827674356999964, 49.549286089000105 ], [ -124.827645048999955, 49.549241576000057 ], [ -124.827573269999945, 49.549170739000026 ], [ -124.827515333999941, 49.549099688000119 ], [ -124.827430080999932, 49.549038059000054 ], [ -124.827358652999948, 49.548976249000134 ], [ -124.827344172999943, 49.548958477000035 ], [ -124.827158148999928, 49.548790481000026 ], [ -124.826957994999987, 49.548613738000029 ], [ -124.82679998499998, 49.548454316000061 ], [ -124.82662645399995, 49.548250156000051 ], [ -124.826441459999955, 49.548109159000091 ], [ -124.82631007099999, 49.547922318000062 ], [ -124.82606678199997, 49.547701277000037 ], [ -124.826051957999965, 49.547674537000013 ], [ -124.825849804999933, 49.547443836000049 ], [ -124.825807026999939, 49.547408530000055 ], [ -124.825606885999889, 49.547231787000072 ], [ -124.825513858999955, 49.547143420000054 ], [ -124.827356683999938, 49.547163322000117 ], [ -124.827345481999913, 49.547603760000086 ], [ -124.828109681999948, 49.547612004000143 ], [ -124.828087849999946, 49.548470951000091 ], [ -124.829175794999969, 49.548482678000063 ], [ -124.829147152999923, 49.549610590000107 ], [ -124.829748541999919, 49.549617067000042 ], [ -124.829724156999987, 49.550577750000052 ], [ -124.829892694999955, 49.550579565000142 ], [ -124.829884487999962, 49.550902963000077 ], [ -124.830663384999937, 49.55091134700011 ], [ -124.830623673999938, 49.552477029000016 ], [ -124.831722095999936, 49.552488841000127 ], [ -124.831723617999955, 49.552428739000099 ], [ -124.831990883999964, 49.552431611000053 ], [ -124.832069587999911, 49.5493248390001 ], [ -124.832340361000021, 49.549327749000078 ], [ -124.832390528999909, 49.547346727000061 ], [ -124.82997530499992, 49.547320750000075 ], [ -124.829998738999933, 49.546397234000047 ], [ -124.828921019999939, 49.546385625000042 ], [ -124.828934535999906, 49.545853442000045 ], [ -124.82725079, 49.545835283000024 ], [ -124.82726453, 49.54529501400004 ], [ -124.823940218999951, 49.545259087000041 ], [ -124.823914281999961, 49.545216501000105 ], [ -124.82376842199993, 49.54501192200005 ], [ -124.823622906999944, 49.544816313000133 ], [ -124.823448093999943, 49.544576189000125 ], [ -124.823317677999967, 49.544416315000028 ], [ -124.823214959999987, 49.544256035000103 ], [ -124.82317149499994, 49.544202732000052 ], [ -124.823166504999975, 49.544195841000047 ], [ -124.823113225999947, 49.544122710000067 ], [ -124.823039787999932, 49.54400691900009 ], [ -124.822863614999932, 49.543730828 ], [ -124.822718107999933, 49.543535217000105 ], [ -124.822690157999901, 49.54352665000004 ], [ -124.822340519999969, 49.543046416000067 ], [ -124.822167706999949, 49.542860226000101 ], [ -124.82213768299999, 49.542797729000071 ], [ -124.822049484999937, 49.542655208000021 ], [ -124.821846340999954, 49.542397540000117 ], [ -124.821817044999975, 49.542353026000107 ], [ -124.82161394, 49.542095343000049 ], [ -124.82132389799996, 49.541731090000034 ], [ -124.821077048999939, 49.541411145000041 ], [ -124.820829475999972, 49.541073216000065 ], [ -124.820596054, 49.540744054000065 ], [ -124.820422257999937, 49.540530885000052 ], [ -124.820421274999973, 49.540503930000057 ], [ -124.820319869999935, 49.540379585000032 ], [ -124.820275428999977, 49.540299327000078 ], [ -124.820102307999946, 49.540104131000128 ], [ -124.819941974999921, 49.539881790000052 ], [ -124.819870534999922, 49.539819932000043 ], [ -124.81981231499999, 49.539739897000082 ], [ -124.819740202999981, 49.539660067000106 ], [ -124.819682620999956, 49.539598016000149 ], [ -124.819667782999971, 49.539571252000052 ], [ -124.819636818999982, 49.539481788000039 ], [ -124.81957957899999, 49.539428708000109 ], [ -124.819508160999945, 49.539366872000109 ], [ -124.819478505999911, 49.539313368000123 ], [ -124.819434741999899, 49.539251082000121 ], [ -124.819390612999939, 49.539179805000131 ], [ -124.819318558999939, 49.539099983000071 ], [ -124.819288265999944, 49.539028493000039 ], [ -124.819229993999954, 49.538948448000099 ], [ -124.819172049999906, 49.538877406000083 ], [ -124.819141085999945, 49.538787943000074 ], [ -124.818965962, 49.538538825000096 ], [ -124.818805345999934, 49.538307467000074 ], [ -124.818775693999939, 49.538253963000052 ], [ -124.818747385, 49.538236403000084 ], [ -124.818717786999969, 49.538182907000142 ], [ -124.818703277999973, 49.538165149000072 ], [ -124.818674660999974, 49.538138609000121 ], [ -124.818659822999933, 49.53811184500006 ], [ -124.818645351999933, 49.53809407300011 ], [ -124.81861673399996, 49.538067533000067 ], [ -124.818587081999951, 49.538014027000095 ], [ -124.818558789999912, 49.537996492000076 ], [ -124.818529172999916, 49.537942973000078 ], [ -124.818514686, 49.537925236000092 ], [ -124.81849988499999, 49.537898460000129 ], [ -124.818485376999931, 49.537880700000095 ], [ -124.818457088999935, 49.537863165000054 ], [ -124.818442271999942, 49.537836424000041 ], [ -124.81842779899992, 49.537818652000077 ], [ -124.818412962999929, 49.537791888000065 ], [ -124.818384036999973, 49.537756364000124 ], [ -124.818369220999983, 49.537729624000072 ], [ -124.818354746999958, 49.537711852 ], [ -124.818339910999967, 49.537685089000071 ], [ -124.818310930999985, 49.53764955600009 ], [ -124.818296114999924, 49.53762281500007 ], [ -124.818281641999988, 49.537605043000092 ], [ -124.818266826999931, 49.537578302000085 ], [ -124.818252353999966, 49.537560529000096 ], [ -124.818334569999948, 49.537541232000144 ], [ -124.818430948999961, 49.537530726000035 ], [ -124.818472058999987, 49.537521105000053 ], [ -124.818596054999901, 49.537510162000039 ], [ -124.818720359999958, 49.537508199000058 ], [ -124.818872646999978, 49.537514792000074 ], [ -124.819024621999944, 49.537512401000086 ], [ -124.81914929099996, 49.537519429000021 ], [ -124.819259780999971, 49.537517704000017 ], [ -124.819398249999921, 49.537524531 ], [ -124.819494971999987, 49.537522992000085 ], [ -124.819730129999982, 49.537528293000079 ], [ -124.819882434999926, 49.53753490500003 ], [ -124.81999293899996, 49.537533142000051 ], [ -124.820117626999917, 49.537540193000105 ], [ -124.820352476000025, 49.537536510000109 ], [ -124.82047712399995, 49.537543514000035 ], [ -124.820615251000021, 49.537541371000053 ], [ -124.820822826999986, 49.537547095000079 ], [ -124.820988583999949, 49.537544478000022 ], [ -124.821209940999921, 49.537549975000097 ], [ -124.821348411000017, 49.537556800000033 ], [ -124.821776669999977, 49.537550046000092 ], [ -124.821873048999933, 49.537539536000139 ], [ -124.822121676999984, 49.537535626000121 ], [ -124.822232530999912, 49.537542886000089 ], [ -124.822384816999929, 49.537549473000055 ], [ -124.822716352999919, 49.537544256000039 ], [ -124.822841021999977, 49.537551280000081 ], [ -124.82297918299993, 49.537549121000126 ], [ -124.823103850999928, 49.537556144000064 ], [ -124.824015588999941, 49.537541776000076 ], [ -124.824025373999987, 49.537433665000044 ], [ -124.824021035999948, 49.53731680900011 ], [ -124.823955750999957, 49.537047949000055 ], [ -124.823615489999966, 49.536819450000074 ], [ -124.823289079999981, 49.53659069900003 ], [ -124.822949169999958, 49.536371166000031 ], [ -124.822709992999933, 49.536258 ], [ -124.82261126799996, 49.536205587000019 ], [ -124.822498433999939, 49.536144395000115 ], [ -124.822413525999949, 49.536091745000071 ], [ -124.821992104999936, 49.535909506000046 ], [ -124.821936179999952, 49.535892387000089 ], [ -124.8217263, 49.535823730000097 ], [ -124.821714051999905, 49.535819414000123 ], [ -124.821628285999978, 49.535789277000049 ], [ -124.821530909000032, 49.535772809000058 ], [ -124.821129646999935, 49.535761139000023 ], [ -124.820840871999962, 49.53580169100011 ], [ -124.820647484999967, 49.535804724000087 ], [ -124.820481403999977, 49.535798337000138 ], [ -124.820122230999971, 49.535803996 ], [ -124.819957152000015, 49.535824584000075 ], [ -124.819805489999979, 49.535835958000092 ], [ -124.81947396899993, 49.535841165000143 ], [ -124.819363138999933, 49.535833923000077 ], [ -124.819238818999921, 49.535835863000038 ], [ -124.819127318999946, 49.53581064900002 ], [ -124.819002656999928, 49.535803619000035 ], [ -124.818905608999927, 49.535796154000089 ], [ -124.81875367399995, 49.535798530000051 ], [ -124.818601373999968, 49.535791917000068 ], [ -124.818421445999931, 49.535785775000129 ], [ -124.818283308999966, 49.535787949000145 ], [ -124.818144848, 49.535781121000092 ], [ -124.818034362000034, 49.535782846000068 ], [ -124.817868247999954, 49.53577646800008 ], [ -124.817757399999948, 49.535769200000082 ], [ -124.817549854, 49.535763494000051 ], [ -124.817341960999926, 49.535748759000121 ], [ -124.817107141999941, 49.535752457000065 ], [ -124.817106813999928, 49.535743453000087 ], [ -124.817077164999915, 49.535689948000062 ], [ -124.817062692999954, 49.535672175000045 ], [ -124.817018266, 49.535591917000083 ], [ -124.817003757999942, 49.535574157000049 ], [ -124.816959330999921, 49.535493898000034 ], [ -124.816944857999914, 49.535476126000027 ], [ -124.816900430999965, 49.535395867000084 ], [ -124.816871814999928, 49.535369326000144 ], [ -124.816857310999964, 49.535351567000092 ], [ -124.816827660999962, 49.535298062000017 ], [ -124.816799045999971, 49.535271522000109 ], [ -124.816769431999973, 49.535218004000079 ], [ -124.816754926999948, 49.53520024400008 ], [ -124.816726312999947, 49.535173702000087 ], [ -124.81669668399995, 49.535120220000074 ], [ -124.81669568599996, 49.535093243000119 ], [ -124.816666070999943, 49.5350397260001 ], [ -124.816664039999964, 49.534985785000039 ], [ -124.816649930999958, 49.534977003000073 ], [ -124.816648897999968, 49.534950039000051 ], [ -124.816635117999951, 49.534950262000031 ], [ -124.816634446999913, 49.534932288000022 ], [ -124.816620284999928, 49.534923499000108 ], [ -124.816619612999915, 49.534905526000024 ], [ -124.816605796999966, 49.534905761000068 ], [ -124.816602801000016, 49.534824830000034 ], [ -124.816616272999966, 49.534815625000071 ], [ -124.81661563899999, 49.534797639000054 ], [ -124.816642582999975, 49.534779229000051 ], [ -124.816642254999977, 49.534770225000074 ], [ -124.816709652999947, 49.534724189000045 ], [ -124.816709307999986, 49.534715220000081 ], [ -124.816722779999935, 49.534706016000094 ], [ -124.816719803999931, 49.534625106000107 ], [ -124.816705332999945, 49.53460733400005 ], [ -124.816704969999961, 49.534598343000042 ], [ -124.81669082799999, 49.534589574000108 ], [ -124.8166905, 49.53458057100007 ], [ -124.816676355999945, 49.534571802000073 ], [ -124.816676048999966, 49.534562820000083 ], [ -124.81666145299999, 49.534543139000121 ], [ -124.816661679999967, 49.534533365000087 ], [ -124.816646890999891, 49.534523444000051 ], [ -124.816647119999956, 49.534513671000084 ], [ -124.816617754999953, 49.53448409100011 ], [ -124.816484662999969, 49.534394856000098 ], [ -124.8164253, 49.534364966000062 ], [ -124.816395495999956, 49.5343548970001 ], [ -124.815838534999912, 49.534342092000031 ], [ -124.815755361999948, 49.534334396000069 ], [ -124.815395202999952, 49.534313061000084 ], [ -124.81504918499995, 49.534300494000099 ], [ -124.814841989999962, 49.534303751000131 ], [ -124.814330229999953, 49.534293786000077 ], [ -124.813764541999916, 49.534320650000048 ], [ -124.8122450649999, 49.534344453000095 ], [ -124.812175655999937, 49.534336567000011 ], [ -124.812106590999988, 49.534337650000062 ], [ -124.812037198999946, 49.534329730000145 ], [ -124.811968134999987, 49.534330813000047 ], [ -124.811898707999916, 49.534322905000067 ], [ -124.811774411999977, 49.534324858000033 ], [ -124.811704985999981, 49.534316950000083 ], [ -124.81163595299995, 49.534318021000097 ], [ -124.811566526999954, 49.534310112000092 ], [ -124.811193585999959, 49.534315962000022 ], [ -124.811152442999969, 49.534325592000044 ], [ -124.811083409999966, 49.534326660000026 ], [ -124.811056122999958, 49.534336099 ], [ -124.810945606999951, 49.534337830000048 ], [ -124.810904483999948, 49.534347482000051 ], [ -124.810462455999954, 49.534354388000111 ], [ -124.810434478999937, 49.534345831000032 ], [ -124.810406863999944, 49.534346266000014 ], [ -124.810378922999959, 49.534337697000083 ], [ -124.81036508699999, 49.534337909000051 ], [ -124.810350946999932, 49.53432914100005 ], [ -124.810337165999954, 49.53432936300004 ], [ -124.810309187999962, 49.534320807000014 ], [ -124.81029502799997, 49.534312015000104 ], [ -124.810281212999953, 49.534312250000013 ], [ -124.81025293099998, 49.534294711000022 ], [ -124.810239128999939, 49.534294911000082 ], [ -124.810211152999941, 49.534286355000063 ], [ -124.8101828699999, 49.534268816000036 ], [ -124.810169067999979, 49.534269016000074 ], [ -124.810140750999963, 49.534251490000017 ], [ -124.810112790999966, 49.534242899000027 ], [ -124.810084507999974, 49.534225361000047 ], [ -124.810056531999976, 49.534216803000099 ], [ -124.810042387999928, 49.534208034000123 ], [ -124.810014446999944, 49.534199465000071 ], [ -124.809972021999968, 49.53417315800003 ], [ -124.809944045999913, 49.534164600000103 ], [ -124.809802592999944, 49.534076864000028 ], [ -124.809745337999971, 49.534023793000095 ], [ -124.80973119799999, 49.534015024000105 ], [ -124.809297878999985, 49.533509053000053 ], [ -124.808834608000012, 49.532940570000093 ], [ -124.80880632599991, 49.532923032000028 ], [ -124.808777051999982, 49.532878516000032 ], [ -124.808734281999961, 49.532843182000057 ], [ -124.808704971999987, 49.532798679000038 ], [ -124.808662224, 49.53276336700003 ], [ -124.808632930999963, 49.532718829000039 ], [ -124.808590147999936, 49.532683530000085 ], [ -124.808560871999987, 49.532639014000111 ], [ -124.808481920999952, 49.532565103000088 ], [ -124.80848128099997, 49.532556156000076 ], [ -124.808451060999985, 49.532521116000083 ], [ -124.808407066999976, 49.53248656300012 ], [ -124.808362369999912, 49.53244299600005 ], [ -124.808333509999983, 49.532425938000074 ], [ -124.808318376, 49.532408442000118 ], [ -124.808289494999983, 49.532391363000073 ], [ -124.808288834999971, 49.532382394000059 ], [ -124.808274332999972, 49.532364634000082 ], [ -124.808246032999989, 49.532347072000121 ], [ -124.808231584999959, 49.532329321000056 ], [ -124.80820328599999, 49.532311760000042 ], [ -124.808174676999897, 49.532285217 ], [ -124.808160177, 49.532267457000046 ], [ -124.808131895999921, 49.532249918000069 ], [ -124.808117429999982, 49.532232144000055 ], [ -124.808088788999939, 49.532205614000134 ], [ -124.808060506999965, 49.532188076000125 ], [ -124.808046039999937, 49.532170303000036 ], [ -124.808017739999983, 49.532152741000061 ], [ -124.808002931999937, 49.532125999000051 ], [ -124.80797463299993, 49.532108437000055 ], [ -124.807917382999989, 49.532055365000069 ], [ -124.807902610999975, 49.532028610000026 ], [ -124.807845361999952, 49.531975537000022 ], [ -124.807830536999958, 49.531948772000121 ], [ -124.807773320999971, 49.531895686000126 ], [ -124.807758514999961, 49.531868944000053 ], [ -124.807701267999988, 49.531815871000042 ], [ -124.807687108999943, 49.531807078000043 ], [ -124.807283435, 49.53135462300002 ], [ -124.806851834999947, 49.530893597000109 ], [ -124.806837693999967, 49.530884829000073 ], [ -124.806822886999939, 49.530858085000077 ], [ -124.806794589999981, 49.530840524000034 ], [ -124.806764957, 49.5307870170002 ], [ -124.806736351999945, 49.53076047200004 ], [ -124.806707404999955, 49.530724962000107 ], [ -124.80669324699997, 49.530716170000119 ], [ -124.806678475999945, 49.530689415000069 ], [ -124.806650196999897, 49.530671874000085 ], [ -124.806635363999973, 49.530645054000033 ], [ -124.806635350999926, 49.530644881000072 ], [ -124.806635009999965, 49.530636120000075 ], [ -124.806620563999914, 49.530618367000045 ], [ -124.80659190599998, 49.530591815000022 ], [ -124.806577459, 49.530574064000092 ], [ -124.806548855999949, 49.530547522000042 ], [ -124.806519223999956, 49.53049401500008 ], [ -124.806490925999981, 49.530476453000048 ], [ -124.80649025799994, 49.530458480000036 ], [ -124.806476118999953, 49.530449710000021 ], [ -124.806475791999944, 49.530440707000075 ], [ -124.80646134599999, 49.530422955000105 ], [ -124.806447187999964, 49.530414163000053 ], [ -124.806446846999947, 49.530405194000089 ], [ -124.806432382999915, 49.530387421000043 ], [ -124.806418223999927, 49.530378629000026 ], [ -124.80641788199992, 49.530369660000069 ], [ -124.806403416999927, 49.530351886000098 ], [ -124.806403112999959, 49.530342904000079 ], [ -124.806388953999914, 49.530334113000045 ], [ -124.806374453000032, 49.530316352000035 ], [ -124.806374146999957, 49.530307371000077 ], [ -124.806360006999981, 49.530298601000027 ], [ -124.806359680999918, 49.530289597000014 ], [ -124.806345541999974, 49.530280828000109 ], [ -124.806345181, 49.530271836000018 ], [ -124.806331040999964, 49.530263067000071 ], [ -124.806258667999927, 49.530174247000076 ], [ -124.806172494999956, 49.530085627000076 ], [ -124.806086647999948, 49.530006009000012 ], [ -124.806000440000034, 49.529917401000048 ], [ -124.805914591999951, 49.529837784000073 ], [ -124.805814587999947, 49.529749376000112 ], [ -124.80572874299996, 49.529669758000132 ], [ -124.80554898299999, 49.529526581000034 ], [ -124.805429760999957, 49.529431552000077 ], [ -124.805373184999965, 49.529396451000082 ], [ -124.805259368999941, 49.529308275000027 ], [ -124.805188959999896, 49.529273387000018 ], [ -124.805132046000011, 49.529229316000055 ], [ -124.805075505999952, 49.529194202000092 ], [ -124.805018570999934, 49.529150109000057 ], [ -124.804948215999943, 49.529115229000126 ], [ -124.804891607999977, 49.529080141000073 ], [ -124.804834708999934, 49.529036036000072 ], [ -124.804721579999963, 49.528965855000067 ], [ -124.804715309999906, 49.528960858000055 ], [ -124.804728960999938, 49.528434020000127 ], [ -124.80393969899994, 49.528425332000083 ], [ -124.803870708999966, 49.528376417000082 ], [ -124.803757224999984, 49.528297245000026 ], [ -124.803601645999962, 49.528200708000064 ], [ -124.803530609999967, 49.52814783200008 ], [ -124.803313026999945, 49.528012846000067 ], [ -124.803290184, 49.527998654000044 ], [ -124.803219134999921, 49.52794581100008 ], [ -124.803139759999922, 49.527896563000084 ], [ -124.80297871099999, 49.527796633000072 ], [ -124.802907318, 49.527734765000062 ], [ -124.802822470999956, 49.527682124000115 ], [ -124.802751437999945, 49.527629247000071 ], [ -124.802651079999961, 49.527566003000096 ], [ -124.802567241999924, 49.527511653000026 ], [ -124.802481932999981, 49.527447510000073 ], [ -124.802400900999913, 49.527412799000047 ], [ -124.802389561999973, 49.527395940000169 ], [ -124.802330943999948, 49.527336239000093 ], [ -124.802127225999968, 49.527189209000078 ], [ -124.802042686, 49.527145548000121 ], [ -124.801971979999919, 49.527101675000061 ], [ -124.801887439999945, 49.527058014000126 ], [ -124.801816733999914, 49.527014140000077 ], [ -124.801647690999985, 49.526926804000055 ], [ -124.801576986999976, 49.526882931000067 ], [ -124.801492466999974, 49.526839292000069 ], [ -124.800997490999976, 49.526532132000042 ], [ -124.800927143999971, 49.526497250000034 ], [ -124.800714977000013, 49.526365619000046 ], [ -124.800517684999932, 49.526260763000074 ], [ -124.800419351999949, 49.526217298000056 ], [ -124.800306881999987, 49.526165063000114 ], [ -124.800208228999949, 49.526112652000094 ], [ -124.800096083999946, 49.526069421000038 ], [ -124.79999742699998, 49.52601695400012 ], [ -124.799898092999953, 49.525967195000128 ], [ -124.799799825999941, 49.525923024000058 ], [ -124.799701137999961, 49.525860791000085 ], [ -124.79963085299994, 49.52582535300013 ], [ -124.799560367999959, 49.52578089400005 ], [ -124.799489665999943, 49.525737020000093 ], [ -124.799419268999884, 49.525702126000084 ], [ -124.799362398, 49.525658041000099 ], [ -124.799306974999936, 49.525623669000041 ], [ -124.799291696999958, 49.525614166000068 ], [ -124.799234772999952, 49.525570070000121 ], [ -124.79916407199994, 49.525526196000079 ], [ -124.799093372999906, 49.52548232 ], [ -124.799036481999934, 49.525438214000125 ], [ -124.798951286999952, 49.525376576000056 ], [ -124.798866125999936, 49.52531492700011 ], [ -124.798780931999929, 49.525253290000073 ], [ -124.798709602999949, 49.52519143000012 ], [ -124.798624407999981, 49.525129794000073 ], [ -124.798538888999943, 49.525059154000083 ], [ -124.798467561999956, 49.524997292000094 ], [ -124.79829721099999, 49.524874006000097 ], [ -124.798225488999933, 49.524803167000059 ], [ -124.798111733999974, 49.524714972000062 ], [ -124.797984115999981, 49.524627001000049 ], [ -124.797870326999927, 49.524538819000071 ], [ -124.79775654099997, 49.524450636000033 ], [ -124.797642789999927, 49.524362441000086 ], [ -124.797528948999954, 49.524274249000072 ], [ -124.797415198, 49.524186053000065 ], [ -124.797301412999971, 49.524097870000091 ], [ -124.797201100999942, 49.524000486000041 ], [ -124.797087351999963, 49.523912290000062 ], [ -124.797015993999977, 49.523850442000047 ], [ -124.796958447999941, 49.52378836200009 ], [ -124.796900865999987, 49.523726291000052 ], [ -124.79684301799989, 49.523655228000031 ], [ -124.796814692999931, 49.52363767700006 ], [ -124.796143881999967, 49.523054378000076 ], [ -124.795501667999957, 49.522497655000016 ], [ -124.794971916999984, 49.521993113000043 ], [ -124.79497157899999, 49.521984144000051 ], [ -124.794885770999912, 49.521904520000085 ], [ -124.794858465999951, 49.521881941000082 ], [ -124.794843025999953, 49.521869180000046 ], [ -124.794786130999938, 49.521825105000119 ], [ -124.794743387, 49.521789767000044 ], [ -124.794700303999917, 49.52174545900003 ], [ -124.794657577999985, 49.52171014200011 ], [ -124.794657218999987, 49.521701152000063 ], [ -124.794614495999923, 49.521665835000164 ], [ -124.794571735999952, 49.521630530000074 ], [ -124.79452865199994, 49.52158622200011 ], [ -124.794482103999925, 49.521557299000044 ], [ -124.794472098999947, 49.521551116000118 ], [ -124.794429372999943, 49.521515799000092 ], [ -124.794372817999943, 49.521480693000072 ], [ -124.79431590499992, 49.521436595000054 ], [ -124.794259349999905, 49.521401489 ], [ -124.794216625999951, 49.521366172000036 ], [ -124.79414624, 49.521331275000136 ], [ -124.794033129999946, 49.521261062000029 ], [ -124.793976574999959, 49.521225955000034 ], [ -124.79390654699999, 49.521200049000072 ], [ -124.793836184, 49.521165174000046 ], [ -124.79378029, 49.521148041000046 ], [ -124.793724395999959, 49.521130907000078 ], [ -124.793668485999945, 49.521113807000063 ], [ -124.793598781999933, 49.521096905000086 ], [ -124.793542889, 49.521079770000043 ], [ -124.793473165999956, 49.521062846000113 ], [ -124.79340346099994, 49.521045943000111 ], [ -124.793347566999955, 49.521028808000011 ], [ -124.79327786499999, 49.521011906000112 ], [ -124.79322197099998, 49.52099477100009 ], [ -124.793166098000015, 49.520977659000074 ], [ -124.79305427599995, 49.520943401000054 ], [ -124.792942475999936, 49.520909167000084 ], [ -124.79288658199999, 49.52089203200012 ], [ -124.79283069, 49.520874897000056 ], [ -124.792774780999935, 49.520857797000104 ], [ -124.792732719999904, 49.520840452000094 ], [ -124.792676790999977, 49.520823329000045 ], [ -124.792578836999894, 49.520788847000048 ], [ -124.792467035999891, 49.520754613000065 ], [ -124.792369047999912, 49.520720146000023 ], [ -124.792271058999944, 49.520685677000067 ], [ -124.792173087999927, 49.520651232000034 ], [ -124.792075099999963, 49.520616764000096 ], [ -124.791977109999948, 49.520582294000064 ], [ -124.79189295399999, 49.520547617000062 ], [ -124.791794642999932, 49.520504145000118 ], [ -124.791696673999979, 49.520469698000028 ], [ -124.791654254999983, 49.520443362000051 ], [ -124.791612157999936, 49.520426029000099 ], [ -124.791570062999938, 49.520408696000125 ], [ -124.79152764399997, 49.520382360000099 ], [ -124.791485548, 49.520365027000061 ], [ -124.791443485999949, 49.520347681000025 ], [ -124.791401069999949, 49.520321344000095 ], [ -124.791358972999916, 49.520304010000125 ], [ -124.791330384999952, 49.520277465000099 ], [ -124.791287965999956, 49.520251127000115 ], [ -124.79124553299998, 49.520224826000046 ], [ -124.791202793999943, 49.520189486000064 ], [ -124.791159715999939, 49.520145177000096 ], [ -124.791116994999982, 49.520109858000097 ], [ -124.791074239999944, 49.520074553 ], [ -124.791044973999988, 49.520030011000067 ], [ -124.791002252999988, 49.519994694000026 ], [ -124.790973307999963, 49.519959156000041 ], [ -124.790930230999962, 49.519914847000088 ], [ -124.790887510999966, 49.51987953 ], [ -124.790816149999969, 49.51981765500004 ], [ -124.790730674999949, 49.519747030000104 ], [ -124.790645484999942, 49.519685365000107 ], [ -124.79057414299993, 49.519623513000127 ], [ -124.790489006999934, 49.519561858000031 ], [ -124.790403834999935, 49.519500215000043 ], [ -124.790318700999961, 49.519438560000033 ], [ -124.790301727000013, 49.519426280000026 ], [ -124.790233529999981, 49.519376918000063 ], [ -124.790162204999987, 49.51931503000008 ], [ -124.790077034999968, 49.519253387000091 ], [ -124.789994041999961, 49.519182318000048 ], [ -124.789910905999932, 49.519102298000121 ], [ -124.789855605999918, 49.519057898000078 ], [ -124.789738859999957, 49.518961191000102 ], [ -124.789651430999982, 49.518890877000032 ], [ -124.78956350599999, 49.518811565000036 ], [ -124.789478015999947, 49.518740919000031 ], [ -124.789392545999988, 49.518670294000103 ], [ -124.789307057999935, 49.518599648000091 ], [ -124.789221264999952, 49.518520020000068 ], [ -124.789135777999903, 49.518449373000067 ], [ -124.789036156999941, 49.518369953000096 ], [ -124.788950668999959, 49.518299306000131 ], [ -124.788851051000023, 49.518219887000051 ], [ -124.78876556199999, 49.518149239000095 ], [ -124.788665945999924, 49.518069821000033 ], [ -124.788580476999954, 49.517999195000101 ], [ -124.788480858999932, 49.517919776000092 ], [ -124.788395373999919, 49.517849129000084 ], [ -124.788295756999958, 49.517769709000056 ], [ -124.788224099999951, 49.517698852000095 ], [ -124.788138936999971, 49.517637208000117 ], [ -124.788067280999911, 49.517566350000045 ], [ -124.787995927999958, 49.517504474000098 ], [ -124.787910464, 49.517433848000088 ], [ -124.787838806999929, 49.517362991000027 ], [ -124.787767133999978, 49.517292111000103 ], [ -124.787681972999962, 49.517230467000033 ], [ -124.787610318999924, 49.517159610000121 ], [ -124.787538664999929, 49.517088752000049 ], [ -124.787538307999938, 49.51707976200003 ], [ -124.787524533999914, 49.517079980000076 ], [ -124.787524176999938, 49.517070990000143 ], [ -124.78751004599998, 49.517062218000078 ], [ -124.787495916, 49.517053445000073 ], [ -124.787495594999939, 49.517044442000099 ], [ -124.78748146400001, 49.517035670000098 ], [ -124.78748114299999, 49.517026666000092 ], [ -124.787409774999972, 49.516964826000105 ], [ -124.78733878, 49.516911939000117 ], [ -124.787281257999965, 49.516849853000046 ], [ -124.787209925999932, 49.516788000000112 ], [ -124.787138911999989, 49.516735092000062 ], [ -124.786996214999974, 49.516611396000044 ], [ -124.78692522199999, 49.516558512000081 ], [ -124.786882153999926, 49.516514201000078 ], [ -124.78686769899997, 49.516496425000099 ], [ -124.786796349999975, 49.51643454700006 ], [ -124.78673950699999, 49.516390456000096 ], [ -124.786697061999988, 49.516364131000067 ], [ -124.786353883999965, 49.516045600000105 ], [ -124.786193213999937, 49.515886153000096 ], [ -124.786041419999947, 49.515735501000073 ], [ -124.785880832999979, 49.515576144000072 ], [ -124.78580918599999, 49.515505285000089 ], [ -124.785488698999956, 49.515051460000102 ], [ -124.78535754499994, 49.514864577000061 ], [ -124.784966402999927, 49.514366870000117 ], [ -124.78413773199992, 49.513615026000096 ], [ -124.78402334899998, 49.513508859000055 ], [ -124.783665710999955, 49.513172538000042 ], [ -124.783338644999972, 49.512916702000055 ], [ -124.782983645999948, 49.512652322000079 ], [ -124.782533761999929, 49.512384138000087 ], [ -124.782370472999929, 49.51228679900008 ], [ -124.782277581999949, 49.51223142900011 ], [ -124.781603721999915, 49.511935962000038 ], [ -124.781307789999943, 49.511801028000029 ], [ -124.781328278999922, 49.511025204000049 ], [ -124.781364212999961, 49.511066589000123 ], [ -124.781756084999969, 49.511204809000027 ], [ -124.78275849299996, 49.511801489000071 ], [ -124.783611986999986, 49.51206640900007 ], [ -124.784007002999942, 49.512331292000113 ], [ -124.784440514999972, 49.512519176000076 ], [ -124.784884026999961, 49.51271138 ], [ -124.785088286999908, 49.512799899000143 ], [ -124.786491982999976, 49.513741301000017 ], [ -124.786864296999937, 49.514103106000036 ], [ -124.787794025999943, 49.51459300200009 ], [ -124.788235289999946, 49.514990295000068 ], [ -124.788995110999949, 49.515357792000032 ], [ -124.789850791999967, 49.516054195000052 ], [ -124.790015447999934, 49.516139665000047 ], [ -124.790006222999963, 49.516491436000095 ], [ -124.79070821599997, 49.516499256000053 ], [ -124.791568511999955, 49.51694578900004 ], [ -124.792657217999974, 49.517234896000033 ], [ -124.794162305999961, 49.518362907000139 ], [ -124.79483759899999, 49.518720305000045 ], [ -124.79535629499999, 49.51889268900004 ], [ -124.796386408999979, 49.519479498000138 ], [ -124.797044002999883, 49.520090390000043 ], [ -124.798592594999903, 49.520875201000067 ], [ -124.798619771999967, 49.520897124000058 ], [ -124.798618196999968, 49.520957658000057 ], [ -124.798695880999958, 49.520958519000018 ], [ -124.799106303999935, 49.521289584000044 ], [ -124.799516247999975, 49.52153835700009 ], [ -124.800941804, 49.522403412000102 ], [ -124.801530594999974, 49.522592813000138 ], [ -124.805323085999987, 49.525043801000059 ], [ -124.808536108999959, 49.526711588000097 ], [ -124.810463493999933, 49.528038894000133 ], [ -124.8110079, 49.528570201000072 ], [ -124.813668786999955, 49.530229407000085 ], [ -124.814159092999901, 49.530410298000071 ], [ -124.814460481999959, 49.53071219600011 ], [ -124.815081704999926, 49.531098109000013 ], [ -124.815739293999982, 49.531303192000031 ], [ -124.815941004999914, 49.531515407000029 ], [ -124.816685776, 49.531854394000078 ], [ -124.817466584999934, 49.53239129600005 ], [ -124.817982402999974, 49.532536587000024 ], [ -124.818915664999921, 49.533039600000087 ], [ -124.820041024999981, 49.53364610200002 ], [ -124.821672011999965, 49.534376692000116 ], [ -124.82206838899998, 49.534640191000086 ], [ -124.822505513999928, 49.534822495000071 ], [ -124.822860623999972, 49.534744106000076 ], [ -124.823095788999964, 49.534768293000113 ], [ -124.82313203399994, 49.534809514000081 ], [ -124.823197292999964, 49.534883705000098 ], [ -124.823156095999963, 49.535261107000053 ], [ -124.823845596999945, 49.535547410000056 ], [ -124.826179699999955, 49.537012905000047 ], [ -124.826866984999967, 49.537299198000071 ], [ -124.827648898999925, 49.537880213000072 ], [ -124.827844506999952, 49.537913002000053 ], [ -124.827898489999967, 49.537507099000074 ], [ -124.828170692999933, 49.537394595000059 ], [ -124.829395995999931, 49.537609599000071 ], [ -124.830029503999967, 49.537923011000089 ], [ -124.830343193999923, 49.538197815000053 ], [ -124.830311302000013, 49.538441411000093 ], [ -124.830590525, 49.538877202000023 ], [ -124.830788505999948, 49.539746009000048 ], [ -124.831532010999936, 49.540787007000063 ], [ -124.832614713999973, 49.541642992000057 ], [ -124.833405411999962, 49.542457608000063 ], [ -124.83351460399993, 49.542816498000057 ], [ -124.833831209999943, 49.543098504000049 ], [ -124.834517451999886, 49.543558993000026 ], [ -124.834512104999988, 49.543770547000108 ], [ -124.834837932999903, 49.543774042000045 ], [ -124.835561123000019, 49.544259304000022 ], [ -124.835577177999966, 49.544280436000072 ], [ -124.835534050999954, 49.545988292000118 ], [ -124.836956504999975, 49.546003526000085 ], [ -124.837219098999952, 49.5464725020001 ], [ -124.838057296, 49.547097704000109 ], [ -124.839009096999973, 49.548144497000123 ], [ -124.840866, 49.549310890000058 ], [ -124.841016794999916, 49.549641388000055 ], [ -124.841066710999911, 49.550233800000122 ], [ -124.841628401, 49.550863289000041 ], [ -124.841854599999962, 49.551354686000089 ], [ -124.842314001, 49.551816107000093 ], [ -124.842666821999956, 49.552392666000124 ], [ -124.842667889999916, 49.552394403000058 ], [ -124.843372290999966, 49.553207202000046 ], [ -124.84330121899994, 49.556039863000095 ], [ -124.837776574999964, 49.555980929000128 ], [ -124.837839890999973, 49.553469392000054 ], [ -124.83761922399998, 49.55346703200005 ], [ -124.837686257999934, 49.550808153000105 ], [ -124.83755755699994, 49.550806776000101 ], [ -124.837502708999949, 49.552982016000051 ], [ -124.83723544099999, 49.55297915700006 ], [ -124.837157078999908, 49.556085916000058 ], [ -124.835286067999988, 49.556065884000041 ], [ -124.835211673999979, 49.559010157000095 ], [ -124.833718339999933, 49.558994145000085 ], [ -124.833709235, 49.559353994000055 ], [ -124.833098065999977, 49.559347435000056 ], [ -124.833091724999989, 49.559597908000029 ], [ -124.832313216, 49.559589548000098 ], [ -124.832302318999979, 49.560019727000132 ], [ -124.831278743, 49.560008726000035 ], [ -124.831223603999945, 49.562183349000058 ], [ -124.83115686299999, 49.562182632000045 ], [ -124.831109009999977, 49.564069647000025 ], [ -124.83037760400002, 49.564061780000031 ], [ -124.830354432999968, 49.564974863000103 ], [ -124.82482873399999, 49.564915272000086 ], [ -124.82483142199996, 49.564809894000071 ], [ -124.824349248999937, 49.564804681000069 ], [ -124.824344893999978, 49.56497541300007 ], [ -124.818819202999975, 49.564915516000056 ] ], [ [ -124.822063135999898, 49.539112464 ], [ -124.8220741799999, 49.538680116000144 ], [ -124.821119290999903, 49.538669760000055 ], [ -124.821108237999923, 49.539102107000076 ], [ -124.822063135999898, 49.539112464 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19739500", "BldgCostT": "12670000", "sL_LossRatio": "0.973565887858637", "sL_AssetLoss": "13726.96", "sL_BldgLoss": "13364.1", "sL_StrLoss": "11656.2", "sL_NStrLoss": "1707.9", "sL_ContLoss": "362.86", "geom_point": "0101000020E610000030BEA23A61325FC0F72C639E70C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.80312922499999, 49.528416404000069 ], [ -124.803134734999929, 49.528204038000041 ], [ -124.798800474999922, 49.528156194000061 ], [ -124.798807338999922, 49.527892620000088 ], [ -124.795808578999967, 49.527859417000116 ], [ -124.795819994999974, 49.527422066000064 ], [ -124.794839667999938, 49.527411193000091 ], [ -124.794915307999943, 49.524515741000087 ], [ -124.79394561099997, 49.524504978000067 ], [ -124.793955694999937, 49.524119226000124 ], [ -124.794009306999953, 49.522068424000089 ], [ -124.793553690999929, 49.522063364000104 ], [ -124.79355055399995, 49.522183296000073 ], [ -124.788030028999941, 49.522121831000099 ], [ -124.788083950999919, 49.520069137000121 ], [ -124.78792234899997, 49.520067333 ], [ -124.787934368999942, 49.519609807000066 ], [ -124.784403644999955, 49.51957034400008 ], [ -124.78444883799996, 49.517854997000107 ], [ -124.784372947999927, 49.517854147000079 ], [ -124.784378648999947, 49.517637798000067 ], [ -124.780887130999943, 49.517598658000061 ], [ -124.780911564999911, 49.516673875000066 ], [ -124.780490772999926, 49.516669150000055 ], [ -124.780585862999899, 49.513071056000108 ], [ -124.781274044, 49.513078783000026 ], [ -124.781274840999984, 49.513048609000073 ], [ -124.779937409999945, 49.513069199000029 ], [ -124.779860446999976, 49.515979855000104 ], [ -124.774340682999934, 49.515917693000084 ], [ -124.774436250999912, 49.512319601000108 ], [ -124.779802554999947, 49.512380039000064 ], [ -124.779798260999925, 49.512261744000121 ], [ -124.781296231999974, 49.512238685000099 ], [ -124.781307789999943, 49.511801028000029 ], [ -124.781603721999915, 49.511935962000038 ], [ -124.782277581999949, 49.51223142900011 ], [ -124.782370472999929, 49.51228679900008 ], [ -124.782533761999929, 49.512384138000087 ], [ -124.782983645999948, 49.512652322000079 ], [ -124.783338644999972, 49.512916702000055 ], [ -124.783665710999955, 49.513172538000042 ], [ -124.78402334899998, 49.513508859000055 ], [ -124.78413773199992, 49.513615026000096 ], [ -124.784966402999927, 49.514366870000117 ], [ -124.78535754499994, 49.514864577000061 ], [ -124.785488698999956, 49.515051460000102 ], [ -124.78580918599999, 49.515505285000089 ], [ -124.785880832999979, 49.515576144000072 ], [ -124.786041419999947, 49.515735501000073 ], [ -124.786193213999937, 49.515886153000096 ], [ -124.786353883999965, 49.516045600000105 ], [ -124.786697061999988, 49.516364131000067 ], [ -124.78673950699999, 49.516390456000096 ], [ -124.786796349999975, 49.51643454700006 ], [ -124.78686769899997, 49.516496425000099 ], [ -124.786882153999926, 49.516514201000078 ], [ -124.78692522199999, 49.516558512000081 ], [ -124.786996214999974, 49.516611396000044 ], [ -124.787138911999989, 49.516735092000062 ], [ -124.787209925999932, 49.516788000000112 ], [ -124.787281257999965, 49.516849853000046 ], [ -124.78733878, 49.516911939000117 ], [ -124.787409774999972, 49.516964826000105 ], [ -124.78748114299999, 49.517026666000092 ], [ -124.78748146400001, 49.517035670000098 ], [ -124.787495594999939, 49.517044442000099 ], [ -124.787495916, 49.517053445000073 ], [ -124.78751004599998, 49.517062218000078 ], [ -124.787524176999938, 49.517070990000143 ], [ -124.787524533999914, 49.517079980000076 ], [ -124.787538307999938, 49.51707976200003 ], [ -124.787538664999929, 49.517088752000049 ], [ -124.787610318999924, 49.517159610000121 ], [ -124.787681972999962, 49.517230467000033 ], [ -124.787767133999978, 49.517292111000103 ], [ -124.787838806999929, 49.517362991000027 ], [ -124.787910464, 49.517433848000088 ], [ -124.787995927999958, 49.517504474000098 ], [ -124.788067280999911, 49.517566350000045 ], [ -124.788138936999971, 49.517637208000117 ], [ -124.788224099999951, 49.517698852000095 ], [ -124.788295756999958, 49.517769709000056 ], [ -124.788395373999919, 49.517849129000084 ], [ -124.788480858999932, 49.517919776000092 ], [ -124.788580476999954, 49.517999195000101 ], [ -124.788665945999924, 49.518069821000033 ], [ -124.78876556199999, 49.518149239000095 ], [ -124.788851051000023, 49.518219887000051 ], [ -124.788950668999959, 49.518299306000131 ], [ -124.789036156999941, 49.518369953000096 ], [ -124.789135777999903, 49.518449373000067 ], [ -124.789221264999952, 49.518520020000068 ], [ -124.789307057999935, 49.518599648000091 ], [ -124.789392545999988, 49.518670294000103 ], [ -124.789478015999947, 49.518740919000031 ], [ -124.78956350599999, 49.518811565000036 ], [ -124.789651430999982, 49.518890877000032 ], [ -124.789738859999957, 49.518961191000102 ], [ -124.789855605999918, 49.519057898000078 ], [ -124.789910905999932, 49.519102298000121 ], [ -124.789994041999961, 49.519182318000048 ], [ -124.790077034999968, 49.519253387000091 ], [ -124.790162204999987, 49.51931503000008 ], [ -124.790233529999981, 49.519376918000063 ], [ -124.790301727000013, 49.519426280000026 ], [ -124.790318700999961, 49.519438560000033 ], [ -124.790403834999935, 49.519500215000043 ], [ -124.790489006999934, 49.519561858000031 ], [ -124.79057414299993, 49.519623513000127 ], [ -124.790645484999942, 49.519685365000107 ], [ -124.790730674999949, 49.519747030000104 ], [ -124.790816149999969, 49.51981765500004 ], [ -124.790887510999966, 49.51987953 ], [ -124.790930230999962, 49.519914847000088 ], [ -124.790973307999963, 49.519959156000041 ], [ -124.791002252999988, 49.519994694000026 ], [ -124.791044973999988, 49.520030011000067 ], [ -124.791074239999944, 49.520074553 ], [ -124.791116994999982, 49.520109858000097 ], [ -124.791159715999939, 49.520145177000096 ], [ -124.791202793999943, 49.520189486000064 ], [ -124.79124553299998, 49.520224826000046 ], [ -124.791287965999956, 49.520251127000115 ], [ -124.791330384999952, 49.520277465000099 ], [ -124.791358972999916, 49.520304010000125 ], [ -124.791401069999949, 49.520321344000095 ], [ -124.791443485999949, 49.520347681000025 ], [ -124.791485548, 49.520365027000061 ], [ -124.79152764399997, 49.520382360000099 ], [ -124.791570062999938, 49.520408696000125 ], [ -124.791612157999936, 49.520426029000099 ], [ -124.791654254999983, 49.520443362000051 ], [ -124.791696673999979, 49.520469698000028 ], [ -124.791794642999932, 49.520504145000118 ], [ -124.79189295399999, 49.520547617000062 ], [ -124.791977109999948, 49.520582294000064 ], [ -124.792075099999963, 49.520616764000096 ], [ -124.792173087999927, 49.520651232000034 ], [ -124.792271058999944, 49.520685677000067 ], [ -124.792369047999912, 49.520720146000023 ], [ -124.792467035999891, 49.520754613000065 ], [ -124.792578836999894, 49.520788847000048 ], [ -124.792676790999977, 49.520823329000045 ], [ -124.792732719999904, 49.520840452000094 ], [ -124.792774780999935, 49.520857797000104 ], [ -124.79283069, 49.520874897000056 ], [ -124.79288658199999, 49.52089203200012 ], [ -124.792942475999936, 49.520909167000084 ], [ -124.79305427599995, 49.520943401000054 ], [ -124.793166098000015, 49.520977659000074 ], [ -124.79322197099998, 49.52099477100009 ], [ -124.79327786499999, 49.521011906000112 ], [ -124.793347566999955, 49.521028808000011 ], [ -124.79340346099994, 49.521045943000111 ], [ -124.793473165999956, 49.521062846000113 ], [ -124.793542889, 49.521079770000043 ], [ -124.793598781999933, 49.521096905000086 ], [ -124.793668485999945, 49.521113807000063 ], [ -124.793724395999959, 49.521130907000078 ], [ -124.79378029, 49.521148041000046 ], [ -124.793836184, 49.521165174000046 ], [ -124.79390654699999, 49.521200049000072 ], [ -124.793976574999959, 49.521225955000034 ], [ -124.794033129999946, 49.521261062000029 ], [ -124.79414624, 49.521331275000136 ], [ -124.794216625999951, 49.521366172000036 ], [ -124.794259349999905, 49.521401489 ], [ -124.79431590499992, 49.521436595000054 ], [ -124.794372817999943, 49.521480693000072 ], [ -124.794429372999943, 49.521515799000092 ], [ -124.794472098999947, 49.521551116000118 ], [ -124.794482103999925, 49.521557299000044 ], [ -124.79452865199994, 49.52158622200011 ], [ -124.794571735999952, 49.521630530000074 ], [ -124.794614495999923, 49.521665835000164 ], [ -124.794657218999987, 49.521701152000063 ], [ -124.794657577999985, 49.52171014200011 ], [ -124.794700303999917, 49.52174545900003 ], [ -124.794743387, 49.521789767000044 ], [ -124.794786130999938, 49.521825105000119 ], [ -124.794843025999953, 49.521869180000046 ], [ -124.794858465999951, 49.521881941000082 ], [ -124.794885770999912, 49.521904520000085 ], [ -124.79497157899999, 49.521984144000051 ], [ -124.794971916999984, 49.521993113000043 ], [ -124.795501667999957, 49.522497655000016 ], [ -124.796143881999967, 49.523054378000076 ], [ -124.796814692999931, 49.52363767700006 ], [ -124.79684301799989, 49.523655228000031 ], [ -124.796900865999987, 49.523726291000052 ], [ -124.796958447999941, 49.52378836200009 ], [ -124.797015993999977, 49.523850442000047 ], [ -124.797087351999963, 49.523912290000062 ], [ -124.797201100999942, 49.524000486000041 ], [ -124.797301412999971, 49.524097870000091 ], [ -124.797415198, 49.524186053000065 ], [ -124.797528948999954, 49.524274249000072 ], [ -124.797642789999927, 49.524362441000086 ], [ -124.79775654099997, 49.524450636000033 ], [ -124.797870326999927, 49.524538819000071 ], [ -124.797984115999981, 49.524627001000049 ], [ -124.798111733999974, 49.524714972000062 ], [ -124.798225488999933, 49.524803167000059 ], [ -124.79829721099999, 49.524874006000097 ], [ -124.798467561999956, 49.524997292000094 ], [ -124.798538888999943, 49.525059154000083 ], [ -124.798624407999981, 49.525129794000073 ], [ -124.798709602999949, 49.52519143000012 ], [ -124.798780931999929, 49.525253290000073 ], [ -124.798866125999936, 49.52531492700011 ], [ -124.798951286999952, 49.525376576000056 ], [ -124.799036481999934, 49.525438214000125 ], [ -124.799093372999906, 49.52548232 ], [ -124.79916407199994, 49.525526196000079 ], [ -124.799234772999952, 49.525570070000121 ], [ -124.799291696999958, 49.525614166000068 ], [ -124.799306974999936, 49.525623669000041 ], [ -124.799362398, 49.525658041000099 ], [ -124.799419268999884, 49.525702126000084 ], [ -124.799489665999943, 49.525737020000093 ], [ -124.799560367999959, 49.52578089400005 ], [ -124.79963085299994, 49.52582535300013 ], [ -124.799701137999961, 49.525860791000085 ], [ -124.799799825999941, 49.525923024000058 ], [ -124.799898092999953, 49.525967195000128 ], [ -124.79999742699998, 49.52601695400012 ], [ -124.800096083999946, 49.526069421000038 ], [ -124.800208228999949, 49.526112652000094 ], [ -124.800306881999987, 49.526165063000114 ], [ -124.800419351999949, 49.526217298000056 ], [ -124.800517684999932, 49.526260763000074 ], [ -124.800714977000013, 49.526365619000046 ], [ -124.800927143999971, 49.526497250000034 ], [ -124.800997490999976, 49.526532132000042 ], [ -124.801492466999974, 49.526839292000069 ], [ -124.801576986999976, 49.526882931000067 ], [ -124.801647690999985, 49.526926804000055 ], [ -124.801816733999914, 49.527014140000077 ], [ -124.801887439999945, 49.527058014000126 ], [ -124.801971979999919, 49.527101675000061 ], [ -124.802042686, 49.527145548000121 ], [ -124.802127225999968, 49.527189209000078 ], [ -124.802330943999948, 49.527336239000093 ], [ -124.802389561999973, 49.527395940000169 ], [ -124.802400900999913, 49.527412799000047 ], [ -124.802481932999981, 49.527447510000073 ], [ -124.802567241999924, 49.527511653000026 ], [ -124.802651079999961, 49.527566003000096 ], [ -124.802751437999945, 49.527629247000071 ], [ -124.802822470999956, 49.527682124000115 ], [ -124.802907318, 49.527734765000062 ], [ -124.80297871099999, 49.527796633000072 ], [ -124.803139759999922, 49.527896563000084 ], [ -124.803219134999921, 49.52794581100008 ], [ -124.803290184, 49.527998654000044 ], [ -124.803313026999945, 49.528012846000067 ], [ -124.803530609999967, 49.52814783200008 ], [ -124.803601645999962, 49.528200708000064 ], [ -124.803757224999984, 49.528297245000026 ], [ -124.803870708999966, 49.528376417000082 ], [ -124.80393969899994, 49.528425332000083 ], [ -124.80312922499999, 49.528416404000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.971257871790731", "sL_AssetLoss": "3715.8", "sL_BldgLoss": "3609", "sL_StrLoss": "3151", "sL_NStrLoss": "458", "sL_ContLoss": "106.8", "geom_point": "0101000020E610000068B6659F4B315FC027C4B70BA8C14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.767528995999953, 49.511110524000095 ], [ -124.773048175999975, 49.511173032000038 ], [ -124.772952500999978, 49.514771130000021 ], [ -124.767432889999981, 49.514708617000032 ], [ -124.767528995999953, 49.511110524000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17266000", "BldgCostT": "11380000", "sL_LossRatio": "0.967134615441424", "sL_AssetLoss": "20311.34", "sL_BldgLoss": "19643.8", "sL_StrLoss": "17700", "sL_NStrLoss": "1943.8", "sL_ContLoss": "667.54", "geom_point": "0101000020E6100000D1D1687AA2305FC0AFDCE24C59C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.758026008999963, 49.506842395000028 ], [ -124.758044644999984, 49.506149922000077 ], [ -124.757718339999926, 49.506146188000024 ], [ -124.757739594999961, 49.505356521000067 ], [ -124.753190615999955, 49.505304373000044 ], [ -124.753265724999892, 49.502523984000106 ], [ -124.752436757999988, 49.502514461000054 ], [ -124.752488398999944, 49.500603871000123 ], [ -124.752270066999955, 49.500601361000044 ], [ -124.75231975, 49.498763388000015 ], [ -124.753280228999955, 49.499456755000026 ], [ -124.75377563399995, 49.499709888000076 ], [ -124.754091024000033, 49.499783701000098 ], [ -124.75442918399996, 49.499780389000101 ], [ -124.754992240999954, 49.499677732000094 ], [ -124.755227907999952, 49.499634771000075 ], [ -124.755460541, 49.499553762000062 ], [ -124.755615350999975, 49.499442149000117 ], [ -124.756766549999924, 49.498198301000073 ], [ -124.756970360999958, 49.498059355000102 ], [ -124.757292553999989, 49.497982056000119 ], [ -124.75934844599999, 49.497973808000111 ], [ -124.759328355999983, 49.498721271000107 ], [ -124.762164609999914, 49.498753652000111 ], [ -124.76216566, 49.498754475000041 ], [ -124.762196017999941, 49.498781219000129 ], [ -124.762241942999964, 49.498825942000103 ], [ -124.762273002999976, 49.498861872000134 ], [ -124.762331674, 49.498887720000077 ], [ -124.76236206699997, 49.498914450000051 ], [ -124.762392425999948, 49.498941194000039 ], [ -124.762422095999966, 49.498958718000083 ], [ -124.762451800999926, 49.498976227000114 ], [ -124.7624814699999, 49.498993751000086 ], [ -124.762497017999976, 49.499011709000023 ], [ -124.762526688999955, 49.499029232000119 ], [ -124.762586047999932, 49.499064301000033 ], [ -124.762615732999947, 49.499081789000101 ], [ -124.762645422999981, 49.499099334000043 ], [ -124.762675093999988, 49.499116857000011 ], [ -124.762704764999938, 49.499134380000015 ], [ -124.762734435999946, 49.499151903 ], [ -124.762764140999977, 49.499169412000072 ], [ -124.762779653999971, 49.499187384000045 ], [ -124.76282348299999, 49.49920446000008 ], [ -124.762853186999934, 49.499221969000168 ], [ -124.762868719999972, 49.499239962000075 ], [ -124.762912546999956, 49.49925703700012 ], [ -124.762928094999936, 49.499274996000096 ], [ -124.762957765999943, 49.499292518000047 ], [ -124.763017106999911, 49.499327564000119 ], [ -124.763077170999935, 49.499371818000043 ], [ -124.763136547999963, 49.499406851000067 ], [ -124.763195888999959, 49.499441896000121 ], [ -124.76324181499993, 49.49948662000002 ], [ -124.763301879999943, 49.499530874000108 ], [ -124.763361256999971, 49.499565907000061 ], [ -124.763420598, 49.499600953000041 ], [ -124.763466505999958, 49.499645653000066 ], [ -124.763525850999898, 49.499680700000063 ], [ -124.763585934999981, 49.499724975000056 ], [ -124.763631153999967, 49.499760457000114 ], [ -124.763676339999932, 49.499795950000127 ], [ -124.763750561999984, 49.499839754000078 ], [ -124.763796468999928, 49.499884456000068 ], [ -124.763842397999937, 49.49992917900007 ], [ -124.763901774999965, 49.499964213000048 ], [ -124.763946960999974, 49.499999706000054 ], [ -124.76396110099995, 49.500008502000078 ], [ -124.764003811999942, 49.500043817000041 ], [ -124.764060661999906, 49.500087930000099 ], [ -124.764103339999934, 49.500123256000066 ], [ -124.764146069, 49.50015859300008 ], [ -124.764188746999977, 49.500193921000125 ], [ -124.764231478999974, 49.500229258000061 ], [ -124.76427419099997, 49.500264573000052 ], [ -124.76431688699995, 49.5002999230001 ], [ -124.764359599999921, 49.500335237000037 ], [ -124.764402627, 49.500379555000087 ], [ -124.764431533999982, 49.500415098000076 ], [ -124.764474233999948, 49.500450448 ], [ -124.764516942999961, 49.500485761000071 ], [ -124.76455964099992, 49.500521112000065 ], [ -124.764602352999972, 49.500556426000074 ], [ -124.764616474999954, 49.500565201000086 ], [ -124.764645050999931, 49.500591775000053 ], [ -124.76468776199999, 49.500627091000098 ], [ -124.764716670999917, 49.500662634000022 ], [ -124.764759349999949, 49.500697960000132 ], [ -124.764802377999928, 49.500742278000082 ], [ -124.764845111999975, 49.500777615000089 ], [ -124.76488779, 49.500812942000046 ], [ -124.76493052, 49.50084827900006 ], [ -124.764959429, 49.500883822000063 ], [ -124.765002108999909, 49.500919148000065 ], [ -124.76504482199995, 49.500954462000067 ], [ -124.765073730999944, 49.500990006000038 ], [ -124.765116461999938, 49.501025342000077 ], [ -124.765159141999931, 49.501060669000054 ], [ -124.765201874999917, 49.501096007000115 ], [ -124.765230783999954, 49.501131549000057 ], [ -124.765273463, 49.50116687600007 ], [ -124.765316194999912, 49.501202213000028 ], [ -124.765345084999979, 49.501237733000067 ], [ -124.765387781999962, 49.501273083000029 ], [ -124.765416692999963, 49.501308624000075 ], [ -124.76545940699999, 49.50134393900003 ], [ -124.765502085999955, 49.5013792660001 ], [ -124.765531014999965, 49.501414832000144 ], [ -124.765573729999943, 49.501450146000138 ], [ -124.765616407999971, 49.501485473000074 ], [ -124.765645317999955, 49.501521016000041 ], [ -124.765688032999932, 49.50155632900001 ], [ -124.765716942999944, 49.501591872000063 ], [ -124.76575964099996, 49.501627222000081 ], [ -124.765788232999967, 49.501653761000057 ], [ -124.765802670999932, 49.501671539000071 ], [ -124.76583126599995, 49.501698079000107 ], [ -124.76585952799995, 49.50171564900009 ], [ -124.76587426199994, 49.501742408000119 ], [ -124.765902874999966, 49.501768971000111 ], [ -124.765917347999917, 49.501786735000053 ], [ -124.765945905999956, 49.501813288000079 ], [ -124.765974499, 49.501839827000069 ], [ -124.765988937999936, 49.501857605000097 ], [ -124.76601753099996, 49.501884144000101 ], [ -124.76603232199993, 49.501910912000049 ], [ -124.766060528999972, 49.501928474000124 ], [ -124.766089120999965, 49.501955014000025 ], [ -124.766103593999972, 49.501972779000027 ], [ -124.766132154999923, 49.501999331 ], [ -124.766146943999956, 49.502026099000012 ], [ -124.766175205999986, 49.502043671000067 ], [ -124.766203763999968, 49.502070222000036 ], [ -124.766218237999922, 49.502087989000046 ], [ -124.766246796999923, 49.502114540000051 ], [ -124.766275390999922, 49.502141080000087 ], [ -124.766303653999941, 49.502158651000101 ], [ -124.766318422999973, 49.502185397000027 ], [ -124.766346981999945, 49.502211949000078 ], [ -124.766375278999973, 49.502229507000088 ], [ -124.766403839999967, 49.502256060000036 ], [ -124.766432432999963, 49.502282600000036 ], [ -124.766446871999975, 49.502300377000019 ], [ -124.7664754299999, 49.502326928000038 ], [ -124.766504044999976, 49.502353492000069 ], [ -124.766532286999919, 49.502371039000089 ], [ -124.766589440999937, 49.502424131000112 ], [ -124.766589758999913, 49.502433134000036 ], [ -124.766603878999945, 49.502441909000012 ], [ -124.766632472999945, 49.502468448000087 ], [ -124.766661087999978, 49.502495010000054 ], [ -124.766689330999952, 49.502512558000042 ], [ -124.766717891999946, 49.502539110000029 ], [ -124.766746154999964, 49.502556683000059 ], [ -124.76677474799996, 49.502583221000044 ], [ -124.766831922999955, 49.502636336000066 ], [ -124.76687428799994, 49.502662660000034 ], [ -124.766903198999941, 49.502698201000058 ], [ -124.766945584999959, 49.502724546000124 ], [ -124.766974178999988, 49.502751085000085 ], [ -124.76701656399996, 49.502777432000137 ], [ -124.767059265999961, 49.502812780000063 ], [ -124.767087860999979, 49.502839319000095 ], [ -124.767130226999953, 49.502865643000092 ], [ -124.767172609999989, 49.502891989000069 ], [ -124.767201206999943, 49.50291852800013 ], [ -124.767243589999936, 49.502944873000054 ], [ -124.767286292999955, 49.502980222000062 ], [ -124.767314888999962, 49.503006761000073 ], [ -124.767357272999945, 49.503033106000046 ], [ -124.767399638999976, 49.503059430000057 ], [ -124.767442023999948, 49.503085776000084 ], [ -124.767470619, 49.503112314000063 ], [ -124.767513323999964, 49.503147664000053 ], [ -124.7675557419999, 49.503173996000022 ], [ -124.767584302999964, 49.50320054700007 ], [ -124.767626687999936, 49.503226893000047 ], [ -124.767669054999928, 49.503253216000083 ], [ -124.767697669999933, 49.503279778000021 ], [ -124.767740055999951, 49.503306124000112 ], [ -124.767782421999925, 49.503332446000087 ], [ -124.76781103799999, 49.503359008000096 ], [ -124.767895789999955, 49.50341167500013 ], [ -124.7679243499999, 49.503438227000053 ], [ -124.76796677199998, 49.503464560000019 ], [ -124.768009156999952, 49.503490905000028 ], [ -124.768037720000024, 49.503517457000072 ], [ -124.76808014, 49.50354379 ], [ -124.768122506999987, 49.503570112000041 ], [ -124.768151087999954, 49.503596687000027 ], [ -124.768193453999942, 49.503623010000105 ], [ -124.76822207, 49.503649571000032 ], [ -124.76826443799996, 49.503675893000064 ], [ -124.768293017999895, 49.503702468000057 ], [ -124.768335384999943, 49.503728791000079 ], [ -124.768364332999951, 49.503764321000048 ], [ -124.768406720999977, 49.503790665000061 ], [ -124.768435632999967, 49.503826208000113 ], [ -124.768478317999964, 49.503861534000087 ], [ -124.768507232000019, 49.503897076000065 ], [ -124.76854997099997, 49.503932412000061 ], [ -124.768578830999928, 49.503967944000109 ], [ -124.768603545999923, 49.503998326000143 ], [ -124.768559791999948, 49.505638264000062 ], [ -124.763580130000022, 49.505581665000136 ], [ -124.763544665999945, 49.506905386000042 ], [ -124.758026008999963, 49.506842395000028 ] ], [ [ -124.759374620999935, 49.50256589300011 ], [ -124.759381199999936, 49.502321130000091 ], [ -124.758899916999937, 49.502315629000059 ], [ -124.758986443999973, 49.499097520000113 ], [ -124.758048823999985, 49.499086797000061 ], [ -124.757976894999985, 49.501759996000061 ], [ -124.758805848999927, 49.501769477000032 ], [ -124.75878461399995, 49.50255914800006 ], [ -124.759374620999935, 49.50256589300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50103667", "BldgCostT": "34026667", "sL_LossRatio": "0.976304235524646", "sL_AssetLoss": "51472.49", "sL_BldgLoss": "50252.81", "sL_StrLoss": "45430.51", "sL_NStrLoss": "4822.3", "sL_ContLoss": "1219.68", "geom_point": "0101000020E6100000E2EEC57A97305FC007A7783B46C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.762644694999921, 49.541776524000056 ], [ -124.762533839999946, 49.541769195000064 ], [ -124.762518305999933, 49.541769437000028 ], [ -124.76242332399994, 49.54177089300002 ], [ -124.762298617999974, 49.541763804000034 ], [ -124.762187783999977, 49.541756497000115 ], [ -124.762186120999971, 49.541756520000042 ], [ -124.762684806999957, 49.539050277000051 ], [ -124.762723583999971, 49.538590927000016 ], [ -124.762461985999906, 49.538235098000065 ], [ -124.762377715999946, 49.537813600000064 ], [ -124.762377946, 49.53743577700007 ], [ -124.762360787999953, 49.536959287000059 ], [ -124.762377656999945, 49.536275367000016 ], [ -124.762376047999965, 49.53623041500007 ], [ -124.762354786999964, 49.535788438000111 ], [ -124.762321137999962, 49.535088839000068 ], [ -124.762319525999885, 49.535043888000054 ], [ -124.762312669, 49.534468291000096 ], [ -124.762091301999973, 49.534462672000103 ], [ -124.761565737999902, 49.534452660000134 ], [ -124.760294205999969, 49.534454040000064 ], [ -124.760294555999977, 49.534463032000112 ], [ -124.759521287000013, 49.534483786000095 ], [ -124.75942460199991, 49.534485254000032 ], [ -124.759189750999951, 49.534488824000036 ], [ -124.759023965999958, 49.534491349000085 ], [ -124.75884408499995, 49.534485084000032 ], [ -124.758678300999918, 49.534487608000042 ], [ -124.758498420999942, 49.534481343000031 ], [ -124.75844315399992, 49.534482195000052 ], [ -124.758373771, 49.534474237000083 ], [ -124.758346051999951, 49.534474696000068 ], [ -124.758345204999969, 49.534474504000102 ], [ -124.758344300999923, 49.534474306000035 ], [ -124.75830437399999, 49.534466313000109 ], [ -124.75823495799996, 49.534458367000127 ], [ -124.75817908099998, 49.534441234000077 ], [ -124.758157485999973, 49.534433236000076 ], [ -124.758109053999974, 49.534415301000074 ], [ -124.758084900999933, 49.534400313000077 ], [ -124.758052476000017, 49.534380185000039 ], [ -124.757996284999976, 49.534354046 ], [ -124.757938451999962, 49.534282971000046 ], [ -124.757894085999979, 49.53420267600012 ], [ -124.757863257999958, 49.534113194000049 ], [ -124.757818891999975, 49.534032898000063 ], [ -124.757746614999959, 49.533944041000034 ], [ -124.757660817999977, 49.533864394000048 ], [ -124.757560891999987, 49.533775969000111 ], [ -124.757475130999964, 49.533696309000035 ], [ -124.75741695, 49.533616241000097 ], [ -124.757358803999935, 49.533536160000011 ], [ -124.757300658999952, 49.5334560800001 ], [ -124.757228678999979, 49.533376205000096 ], [ -124.757170848999948, 49.533305129000013 ], [ -124.757126801000013, 49.533233838000065 ], [ -124.75706900599999, 49.533162748000109 ], [ -124.757011470999913, 49.533100654000108 ], [ -124.756953641999957, 49.533029578000033 ], [ -124.756896143999981, 49.53296747100007 ], [ -124.756838609999946, 49.532905377000098 ], [ -124.756780781999936, 49.532834300000083 ], [ -124.756723284999936, 49.532772193000021 ], [ -124.756679584999986, 49.532709894000106 ], [ -124.75662205199994, 49.532647799000102 ], [ -124.756578355999977, 49.532585499000064 ], [ -124.75647811799999, 49.532488070000056 ], [ -124.756364102999925, 49.532390855000088 ], [ -124.756250348999956, 49.532302634000125 ], [ -124.756122827999917, 49.532214593000091 ], [ -124.756023224000032, 49.532135173000043 ], [ -124.755923633999956, 49.53205571500007 ], [ -124.75582404599993, 49.531976259000039 ], [ -124.755724770999933, 49.531905807000093 ], [ -124.75561105499996, 49.531817573000097 ], [ -124.755497301999952, 49.53172935200007 ], [ -124.75538390199992, 49.531650121000013 ], [ -124.755256351999918, 49.531562092000087 ], [ -124.755142984999978, 49.531482849000056 ], [ -124.755029584999974, 49.531403619000059 ], [ -124.755001307999933, 49.531386043000047 ], [ -124.754916184999942, 49.531324388000066 ], [ -124.75478928099993, 49.53125433200011 ], [ -124.754605511999927, 49.531140175000083 ], [ -124.754422060999971, 49.531035021999983 ], [ -124.754238346999927, 49.530920875000064 ], [ -124.754081900999978, 49.530797317000058 ], [ -124.753895580999966, 49.530611232000069 ], [ -124.753750355999983, 49.53041553100006 ], [ -124.75361830599995, 49.530201630000093 ], [ -124.753486625, 49.529996744000073 ], [ -124.753428144999958, 49.529907671000046 ], [ -124.753369662999901, 49.529818597000016 ], [ -124.753311495999966, 49.529738528000024 ], [ -124.753253068999953, 49.52964946400008 ], [ -124.75315189199999, 49.529525056000054 ], [ -124.753037193999916, 49.529409855000054 ], [ -124.752922182999981, 49.529285651000102 ], [ -124.752834806999886, 49.529161050000077 ], [ -124.752790803999915, 49.5290897450001 ], [ -124.752746766999934, 49.529018453000049 ], [ -124.752702783999979, 49.528947171000084 ], [ -124.752672595999982, 49.528875640000138 ], [ -124.752584226999943, 49.528724074000088 ], [ -124.752482096999969, 49.52857268800004 ], [ -124.752393764999965, 49.528421109000035 ], [ -124.752291601999914, 49.528269737000095 ], [ -124.752218354999968, 49.528153913000104 ], [ -124.752145122999977, 49.528038054000085 ], [ -124.752058064999972, 49.527922457000109 ], [ -124.751984854999975, 49.527806620000042 ], [ -124.751882379999984, 49.527646242000046 ], [ -124.751794016999952, 49.527494678000053 ], [ -124.751691544999971, 49.527334299000124 ], [ -124.751589419999931, 49.527182913000104 ], [ -124.751496217999943, 49.527075276000126 ], [ -124.751474091999967, 49.527049737000034 ], [ -124.751344965999976, 49.526916756000084 ], [ -124.751215861999981, 49.526783794000046 ], [ -124.751100220999973, 49.526641616000113 ], [ -124.750928055999978, 49.526464305000026 ], [ -124.750452044999975, 49.525904807000096 ], [ -124.75032261299998, 49.525762819000107 ], [ -124.750179020999923, 49.525612066000122 ], [ -124.750049574999977, 49.525470113000026 ], [ -124.749906019999955, 49.525319348000075 ], [ -124.74981961499999, 49.525221723000094 ], [ -124.749719412000033, 49.525124289000104 ], [ -124.749632987999945, 49.525026641000096 ], [ -124.749532785999975, 49.524929208000053 ], [ -124.749460542999927, 49.524840347000058 ], [ -124.749387952999925, 49.524742496000016 ], [ -124.749301528999936, 49.524644850000101 ], [ -124.749229287999967, 49.524555987999989 ], [ -124.749129381999978, 49.524467536000039 ], [ -124.749016011999956, 49.524388302000034 ], [ -124.748916106999957, 49.524299848000027 ], [ -124.748816256999987, 49.524211404000035 ], [ -124.748702228999917, 49.524114175000115 ], [ -124.74858790499998, 49.524007962000034 ], [ -124.748473876999938, 49.523910731000086 ], [ -124.748387477999955, 49.52381310500008 ], [ -124.748254869999982, 49.523581218000075 ], [ -124.748135052999956, 49.523322150000126 ], [ -124.747911213999913, 49.522857780000045 ], [ -124.747895492999987, 49.522804052000069 ], [ -124.747895181999965, 49.52279504800002 ], [ -124.747816827999955, 49.52253538500004 ], [ -124.747769632999933, 49.522374158000048 ], [ -124.747708626999938, 49.522213159000074 ], [ -124.747661416, 49.522051968000028 ], [ -124.747600411999926, 49.521890968000072 ], [ -124.74753970099999, 49.521738950000064 ], [ -124.747465525999957, 49.521596149000061 ], [ -124.747405162999911, 49.521453121000064 ], [ -124.747330989999966, 49.521310320000097 ], [ -124.74727220699999, 49.521212277000075 ], [ -124.74721343799996, 49.521114200000071 ], [ -124.747155001999957, 49.521025147000096 ], [ -124.747096233999969, 49.520927071000166 ], [ -124.747009531999936, 49.520820440000065 ], [ -124.746908686999973, 49.520705011000075 ], [ -124.746894249999954, 49.520687228000028 ], [ -124.746808156, 49.520598584000041 ], [ -124.746707330999982, 49.52048317600002 ], [ -124.746693207999954, 49.52047439900015 ], [ -124.746692894999939, 49.520465394000098 ], [ -124.746679083999979, 49.520465621000014 ], [ -124.746678771999925, 49.520456617000072 ], [ -124.746678423999967, 49.520447625000045 ], [ -124.746664299999935, 49.520438847000015 ], [ -124.746663987999966, 49.520429843000052 ], [ -124.746635741999953, 49.520412287000035 ], [ -124.746635393999938, 49.520403297000037 ], [ -124.74662127199997, 49.520394519000099 ], [ -124.746620630999985, 49.520376546000065 ], [ -124.746606834999938, 49.520376736000095 ], [ -124.746606540999977, 49.52036775600002 ], [ -124.746592398999937, 49.520358955000077 ], [ -124.746577927999965, 49.520341187000092 ], [ -124.746563803999919, 49.520332408000094 ], [ -124.746549333999937, 49.520314639000034 ], [ -124.746534917999924, 49.520296879000043 ], [ -124.746520446999938, 49.520279111000058 ], [ -124.746506011999926, 49.520261329000085 ], [ -124.746478058999969, 49.520252755000051 ], [ -124.746463621999951, 49.52023497200004 ], [ -124.746449151999911, 49.520217204000097 ], [ -124.746434714999964, 49.520199423000115 ], [ -124.746420557999969, 49.520190657000065 ], [ -124.746406120999936, 49.520172875000043 ], [ -124.746377875999954, 49.520155319000054 ], [ -124.746363404999897, 49.520137550000086 ], [ -124.746349281999926, 49.520128772000142 ], [ -124.746334847999975, 49.520110990000028 ], [ -124.746320375999943, 49.520093221000117 ], [ -124.746292109999942, 49.520075643000055 ], [ -124.746277672999966, 49.520057861000097 ], [ -124.746263550999942, 49.520049083000103 ], [ -124.746249098999982, 49.520031337000056 ], [ -124.746234664000013, 49.520013555000055 ], [ -124.746192239999957, 49.51998721100005 ], [ -124.746177804999945, 49.519969430000081 ], [ -124.746163334999963, 49.519951660000096 ], [ -124.746149210999974, 49.519942882000066 ], [ -124.746120946999923, 49.5199253030001 ], [ -124.746106529999977, 49.51990754500013 ], [ -124.74609238699999, 49.519898745000042 ], [ -124.746077915999962, 49.519880976000074 ], [ -124.746063480999922, 49.51986319300007 ], [ -124.746049030999956, 49.519845447000087 ], [ -124.746021112999955, 49.519836859000101 ], [ -124.746006643999962, 49.519819091000066 ], [ -124.745977735999972, 49.519783540000063 ], [ -124.745963613999962, 49.519774762000097 ], [ -124.745934726999948, 49.519739233000024 ], [ -124.745919943999979, 49.519712460000044 ], [ -124.745905509999957, 49.519694678000072 ], [ -124.745890691999961, 49.519667918000025 ], [ -124.74587593, 49.519641168000071 ], [ -124.745861181999885, 49.519614381000061 ], [ -124.745846419999921, 49.519587631000071 ], [ -124.745831948, 49.519569862000068 ], [ -124.745817186999972, 49.519543112000093 ], [ -124.745816214999977, 49.519516113000094 ], [ -124.745801451999938, 49.519489362000044 ], [ -124.745786668999969, 49.51946259000006 ], [ -124.745771907999966, 49.519435838000092 ], [ -124.745770954999927, 49.519408863000116 ], [ -124.745756171999957, 49.519382089000011 ], [ -124.7457552199999, 49.519355114000106 ], [ -124.74572567599995, 49.519301591000087 ], [ -124.745724723999928, 49.519274613000078 ], [ -124.745710253999945, 49.519256845 ], [ -124.745695524999945, 49.51923008100006 ], [ -124.745694538999928, 49.51920311800005 ], [ -124.745680103999959, 49.519185336000092 ], [ -124.74567946300003, 49.519167363000093 ], [ -124.745664681999983, 49.519140590000092 ], [ -124.745664041999973, 49.519122618000083 ], [ -124.745663401999948, 49.519104646000081 ], [ -124.745648620999987, 49.519077873000064 ], [ -124.745647029999972, 49.519032923000083 ], [ -124.745632593999972, 49.519015142000086 ], [ -124.74563224799999, 49.519006151000056 ], [ -124.745571567999917, 49.518854155000106 ], [ -124.745541710999944, 49.518791628000031 ], [ -124.74515608199998, 49.518437639000119 ], [ -124.74453310199999, 49.518015249000037 ], [ -124.744049802999911, 49.517635734000116 ], [ -124.743539895999959, 49.517283597000116 ], [ -124.743201448999983, 49.517090805000059 ], [ -124.743144907999962, 49.517055681000038 ], [ -124.743102525999959, 49.517029324000077 ], [ -124.743074279999945, 49.517011767000064 ], [ -124.74303189699998, 49.516985411000114 ], [ -124.742989513999987, 49.516959052000054 ], [ -124.742947441999931, 49.516941700000125 ], [ -124.742905076999946, 49.516915364000042 ], [ -124.742863004999961, 49.51689800900008 ], [ -124.74282062099995, 49.516871653000102 ], [ -124.742778548999937, 49.51685429900003 ], [ -124.742736477, 49.516836945000051 ], [ -124.742694404999924, 49.516819592000076 ], [ -124.742638210999928, 49.51679345900002 ], [ -124.74255408399992, 49.516758718000077 ], [ -124.742511717999946, 49.516732382000036 ], [ -124.742469626999934, 49.516715005000059 ], [ -124.742427555999967, 49.516697651000108 ], [ -124.742385191999972, 49.516671316000064 ], [ -124.742343120999934, 49.516653962000078 ], [ -124.742300738000012, 49.516627605000046 ], [ -124.742272148999987, 49.516601056000106 ], [ -124.742230077, 49.516583703000066 ], [ -124.742201522999935, 49.516557142000053 ], [ -124.742172934999971, 49.516530594000116 ], [ -124.74214434699995, 49.51650404700014 ], [ -124.742130873999969, 49.516472083000131 ], [ -124.742156542999965, 49.515530503000114 ], [ -124.747676216999977, 49.5155943 ], [ -124.747654813999986, 49.516382861000089 ], [ -124.750577455, 49.516416528000029 ], [ -124.75055866799994, 49.517110338000059 ], [ -124.750792189999984, 49.517113024000025 ], [ -124.75069476799996, 49.520711070000047 ], [ -124.749805247999959, 49.520700834000138 ], [ -124.749801082999966, 49.520854569000079 ], [ -124.751508891999904, 49.520874216 ], [ -124.751468478999982, 49.522367567000067 ], [ -124.752428146999932, 49.522378595000085 ], [ -124.752413459999914, 49.522921712000013 ], [ -124.752759668999971, 49.522925687000068 ], [ -124.752750325999941, 49.523271287000121 ], [ -124.753671754999957, 49.523281865000023 ], [ -124.753646672999963, 49.524210244000059 ], [ -124.755806931, 49.524235012000091 ], [ -124.755795927999912, 49.524643007000101 ], [ -124.755761854999975, 49.525906278000079 ], [ -124.757419203, 49.525925252000057 ], [ -124.757428223999966, 49.525590385000065 ], [ -124.756302602999966, 49.525577502000026 ], [ -124.756327841999919, 49.524641298000084 ], [ -124.756347955999942, 49.52389517700005 ], [ -124.755641879999956, 49.523887089000084 ], [ -124.755711607999913, 49.52130189300005 ], [ -124.754461692999953, 49.521287565000179 ], [ -124.754558822000021, 49.517689519 ], [ -124.758660776999989, 49.517736485000057 ], [ -124.758692796999981, 49.516546339000101 ], [ -124.758703379999986, 49.516152960000035 ], [ -124.758294644, 49.516148287000085 ], [ -124.754032591999959, 49.516099468000078 ], [ -124.754129744999943, 49.512501395000086 ], [ -124.755118495000019, 49.512512735000058 ], [ -124.759649074, 49.512564584000131 ], [ -124.759600490999958, 49.514371916000094 ], [ -124.764271108999964, 49.514425169000056 ], [ -124.764174743999973, 49.518023241000016 ], [ -124.76007275799995, 49.51797648300002 ], [ -124.760071173999933, 49.518035421000135 ], [ -124.760055500999968, 49.518618661000026 ], [ -124.760446975999983, 49.518623130000059 ], [ -124.764057776999934, 49.518664284000032 ], [ -124.763984018999977, 49.521417546000094 ], [ -124.764181138999959, 49.521419789000092 ], [ -124.76416335499998, 49.522083697000049 ], [ -124.764513566999938, 49.522087682000077 ], [ -124.764417203999926, 49.525685714000112 ], [ -124.762948705, 49.525668999000089 ], [ -124.762905137999951, 49.527293548000074 ], [ -124.758066606999947, 49.52723833200011 ], [ -124.758037751999922, 49.528310062000116 ], [ -124.758352282999951, 49.528313657000083 ], [ -124.758303280999982, 49.530133993000092 ], [ -124.75885154, 49.53014025900012 ], [ -124.758868356999969, 49.529515258000124 ], [ -124.764389727999941, 49.529578205000071 ], [ -124.764293338999963, 49.533176197000081 ], [ -124.763165483999941, 49.533163363000035 ], [ -124.763155578999914, 49.533532724000054 ], [ -124.766142923999922, 49.533566695000061 ], [ -124.766153652999947, 49.533165650000072 ], [ -124.766864449999986, 49.533173720000036 ], [ -124.766905011999953, 49.531656564000052 ], [ -124.768479243999977, 49.531674422000066 ], [ -124.768456938999975, 49.531056330000133 ], [ -124.770114481999926, 49.531030976000075 ], [ -124.770138403999923, 49.531693220000072 ], [ -124.77079888599999, 49.531700695000076 ], [ -124.770813887999935, 49.531137760000071 ], [ -124.776335468999903, 49.531200100000092 ], [ -124.776327354999978, 49.531505908000042 ], [ -124.777780132999951, 49.531522263000035 ], [ -124.777700809999942, 49.534515607000031 ], [ -124.777264916999968, 49.534518108000093 ], [ -124.776937119999957, 49.534505413000019 ], [ -124.776536166999946, 49.534502576000122 ], [ -124.776135587999988, 49.534508753000118 ], [ -124.775721152999893, 49.534515112000101 ], [ -124.775444887999953, 49.534519342000046 ], [ -124.775182422999961, 49.53452337699999 ], [ -124.774905835999917, 49.53451860100008 ], [ -124.774629555, 49.534522864000103 ], [ -124.774352934999925, 49.534518100000049 ], [ -124.774076333999957, 49.53451335600009 ], [ -124.773799416, 49.534499609000086 ], [ -124.773509016, 49.534495059000086 ], [ -124.773287646999933, 49.53448946500005 ], [ -124.773066629999931, 49.534492863000068 ], [ -124.772845297999964, 49.534487254000034 ], [ -124.772624261999965, 49.534490628000071 ], [ -124.772389447999942, 49.534494218000077 ], [ -124.772140781999937, 49.534498050000089 ], [ -124.771905965999949, 49.534501639000027 ], [ -124.771671114999947, 49.53450524100009 ], [ -124.771477396999899, 49.534499205000039 ], [ -124.77128399799993, 49.534502175000043 ], [ -124.771090278999978, 49.534496140000101 ], [ -124.770896562999965, 49.534490104000021 ], [ -124.770855130999976, 49.534490757000057 ], [ -124.770813679999932, 49.534491388000042 ], [ -124.770799878999924, 49.534491582000037 ], [ -124.770786063999964, 49.534491812000034 ], [ -124.770744612999977, 49.534492442000094 ], [ -124.770702844999946, 49.534484068000047 ], [ -124.770675228999906, 49.534484493000058 ], [ -124.770633797999935, 49.534485144 ], [ -124.770592344999955, 49.534485775000057 ], [ -124.77055057699998, 49.534477401000053 ], [ -124.77049531199999, 49.534478261000061 ], [ -124.770453860999979, 49.534478892000031 ], [ -124.770398628999928, 49.534479739000041 ], [ -124.770329562999905, 49.534480793000078 ], [ -124.770260162999975, 49.534472877000042 ], [ -124.770177260999944, 49.534474138000071 ], [ -124.770108229999948, 49.534475178000058 ], [ -124.769845409999959, 49.534470207000091 ], [ -124.76958294399995, 49.534474227000075 ], [ -124.769430994999979, 49.534476563000048 ], [ -124.767799009999948, 49.534447531000048 ], [ -124.767605611999912, 49.534450492000062 ], [ -124.766997831, 49.53445978700011 ], [ -124.76612817799996, 49.534491050000064 ], [ -124.766135339999934, 49.534688836000022 ], [ -124.766129733999918, 49.535300608000043 ], [ -124.76613199799999, 49.535363533000051 ], [ -124.766117019999953, 49.535714605000052 ], [ -124.766138415999961, 49.536307971000028 ], [ -124.766155777999941, 49.536406650000046 ], [ -124.766208587999955, 49.536720690000017 ], [ -124.7662105199999, 49.536774646000083 ], [ -124.76620707699999, 49.537062543000069 ], [ -124.766224244999961, 49.537539043000088 ], [ -124.766217375999958, 49.538114863000025 ], [ -124.766218320999926, 49.538141818000085 ], [ -124.766208521999985, 49.538636717000088 ], [ -124.766200355999928, 49.539176592000132 ], [ -124.766257993999915, 49.539625467000072 ], [ -124.76624238199993, 49.539958535000054 ], [ -124.766247012999969, 49.540471196000063 ], [ -124.76625187800002, 49.540606074000081 ], [ -124.766275086999926, 49.540866575000059 ], [ -124.766298648999935, 49.541136067000046 ], [ -124.766320228999945, 49.541351651000113 ], [ -124.766337944999989, 49.541459323000069 ], [ -124.766358243999917, 49.541638925000079 ], [ -124.76613752199998, 49.541651276000096 ], [ -124.766014167999941, 49.541680149000044 ], [ -124.765890460999955, 49.54170003100009 ], [ -124.765752952999904, 49.541720107000089 ], [ -124.765628914, 49.541731018000178 ], [ -124.76549110799999, 49.541742111000119 ], [ -124.765366733999912, 49.541743997000012 ], [ -124.76522859499994, 49.541746119000017 ], [ -124.764966080999969, 49.541750125000078 ], [ -124.764827571999959, 49.541743235000112 ], [ -124.764647977999985, 49.541745984000045 ], [ -124.76446806499996, 49.541739730000103 ], [ -124.764288149999985, 49.541733475000065 ], [ -124.764108201999932, 49.541727232 ], [ -124.763928586999953, 49.541729959000058 ], [ -124.763734835999969, 49.54172390900009 ], [ -124.763555592000017, 49.541735649000032 ], [ -124.763375939999918, 49.541738387000152 ], [ -124.763196672999968, 49.541750103 ], [ -124.763017373999972, 49.541761833000081 ], [ -124.762824290999959, 49.54177377700011 ], [ -124.762644694999921, 49.541776524000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20750167", "BldgCostT": "14046667", "sL_LossRatio": "0.981490865900124", "sL_AssetLoss": "20088.46", "sL_BldgLoss": "19716.64", "sL_StrLoss": "18282.14", "sL_NStrLoss": "1434.5", "sL_ContLoss": "371.82", "geom_point": "0101000020E61000001F85EB51B8345FC0892438FDF2C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.816377543999934, 49.560284005000021 ], [ -124.816522415999927, 49.559744572000049 ], [ -124.816746843999937, 49.55907436300005 ], [ -124.816898451999975, 49.558664648000011 ], [ -124.816797328999968, 49.558388431000012 ], [ -124.816575956999912, 49.558021649000118 ], [ -124.816652880999925, 49.557003529000077 ], [ -124.816595748999987, 49.556998785000076 ], [ -124.816134543999965, 49.556987852000077 ], [ -124.81618548299997, 49.555004257000135 ], [ -124.821709982999948, 49.555064288000032 ], [ -124.82170484000001, 49.55526548000006 ], [ -124.822754596, 49.555276855000074 ], [ -124.822758314999987, 49.555131222000021 ], [ -124.82658132200001, 49.555172563000085 ], [ -124.826599294999966, 49.554466467000061 ], [ -124.825047679999955, 49.554449705000088 ], [ -124.825054356999914, 49.554187731000127 ], [ -124.824720273999986, 49.554184120000087 ], [ -124.824698423999976, 49.555041231000061 ], [ -124.819173921999933, 49.554981351000073 ], [ -124.81926607399997, 49.551383425000125 ], [ -124.8209086, 49.551401257000073 ], [ -124.820964433999961, 49.549217961000117 ], [ -124.821778868999957, 49.549226794000077 ], [ -124.821833123999966, 49.54710357700008 ], [ -124.825513858999955, 49.547143420000054 ], [ -124.825606885999889, 49.547231787000072 ], [ -124.825807026999939, 49.547408530000055 ], [ -124.825849804999933, 49.547443836000049 ], [ -124.826051957999965, 49.547674537000013 ], [ -124.82606678199997, 49.547701277000037 ], [ -124.82631007099999, 49.547922318000062 ], [ -124.826441459999955, 49.548109159000091 ], [ -124.82662645399995, 49.548250156000051 ], [ -124.82679998499998, 49.548454316000061 ], [ -124.826957994999987, 49.548613738000029 ], [ -124.827158148999928, 49.548790481000026 ], [ -124.827344172999943, 49.548958477000035 ], [ -124.827358652999948, 49.548976249000134 ], [ -124.827430080999932, 49.549038059000054 ], [ -124.827515333999941, 49.549099688000119 ], [ -124.827573269999945, 49.549170739000026 ], [ -124.827645048999955, 49.549241576000057 ], [ -124.827674356999964, 49.549286089000105 ], [ -124.827675031999988, 49.549304062000068 ], [ -124.82774017499996, 49.549360468000039 ], [ -124.827746479999945, 49.549365894000076 ], [ -124.827804418999932, 49.549436945000096 ], [ -124.827862721999949, 49.549516988000036 ], [ -124.827891353999959, 49.549543527000019 ], [ -124.828019426999944, 49.549640449999984 ], [ -124.828077020999928, 49.549702532000062 ], [ -124.828120823999981, 49.549764780000046 ], [ -124.828192239999964, 49.549826624000026 ], [ -124.828263377999917, 49.549879473000075 ], [ -124.828348632999976, 49.549941102000048 ], [ -124.828464548999975, 49.550083192000095 ], [ -124.828552164999977, 49.550207747000094 ], [ -124.828595623999959, 49.550261027000012 ], [ -124.828653253999946, 49.550323095000103 ], [ -124.828710519999916, 49.550376172000043 ], [ -124.828768476999983, 49.550447188000128 ], [ -124.828825762999884, 49.550500288000087 ], [ -124.828869569999952, 49.550562536000058 ], [ -124.828913724999978, 49.550633812000079 ], [ -124.828958193999966, 49.550714069000087 ], [ -124.829001985000019, 49.550776354000064 ], [ -124.829046123999944, 49.550847607000065 ], [ -124.829062964999935, 49.550928304000067 ], [ -124.829065654999965, 49.551000237000025 ], [ -124.829082165999949, 49.551071930000099 ], [ -124.829099684999932, 49.551170602000113 ], [ -124.82915133099999, 49.551308266000035 ], [ -124.829131927999981, 49.551352180000094 ], [ -124.829124252999932, 49.551383388000012 ], [ -124.829103531, 49.551467531000114 ], [ -124.829121588999925, 49.551875887000058 ], [ -124.829224099999934, 49.552356485000153 ], [ -124.829994684999946, 49.554597903000086 ], [ -124.830462721999979, 49.555374099000019 ], [ -124.830822696999945, 49.555776505000033 ], [ -124.831188700999931, 49.556434504000059 ], [ -124.831285278999928, 49.55671269100003 ], [ -124.831297083999956, 49.557608009000035 ], [ -124.831239596999964, 49.557858504000059 ], [ -124.830886490999944, 49.558163303000072 ], [ -124.829453110999935, 49.558573412000023 ], [ -124.827611689999983, 49.55883250500009 ], [ -124.8273214799999, 49.558832899000052 ], [ -124.826975386999933, 49.558752697000081 ], [ -124.826933575999988, 49.558743195000027 ], [ -124.82683592199993, 49.558724087000066 ], [ -124.826738457999951, 49.558695841000031 ], [ -124.826613388999974, 49.558649146000057 ], [ -124.82654229299996, 49.558596304000055 ], [ -124.826470844999932, 49.558534433000034 ], [ -124.82624637899994, 49.558448030000065 ], [ -124.826107837, 49.558441214000048 ], [ -124.825968952999943, 49.558425425000102 ], [ -124.825871209999889, 49.558399978000104 ], [ -124.825717841999946, 49.558366417000101 ], [ -124.825606620999963, 49.558350178000147 ], [ -124.825193704999947, 49.558401676000067 ], [ -124.825138717999891, 49.558411549000049 ], [ -124.825097277999944, 49.55841219000007 ], [ -124.825042014999937, 49.558413067000039 ], [ -124.824890326999977, 49.55842445800009 ], [ -124.824669534999913, 49.558436943000132 ], [ -124.824559299000015, 49.55844765800007 ], [ -124.824448409999931, 49.558440421000114 ], [ -124.824310543999971, 49.558451575000056 ], [ -124.82422694, 49.558434929000057 ], [ -124.824129510999967, 49.558418464000077 ], [ -124.823920549999983, 49.558376772000074 ], [ -124.823836617999945, 49.55835112200009 ], [ -124.823724050999928, 49.558298930000078 ], [ -124.823639822999951, 49.558264262000051 ], [ -124.823542048999968, 49.558238826000036 ], [ -124.823485418999951, 49.558203731000049 ], [ -124.823330738999985, 49.558134205000094 ], [ -124.823232325999967, 49.558090782000114 ], [ -124.823009179999971, 49.55804033200004 ], [ -124.82281302899996, 49.557971459000079 ], [ -124.822728769999969, 49.557936803000082 ], [ -124.822630025999899, 49.557884372000082 ], [ -124.822434514999941, 49.55783348600005 ], [ -124.822336467999961, 49.557799053000046 ], [ -124.822224577999975, 49.557764834000061 ], [ -124.822112322999914, 49.557721623000106 ], [ -124.821957956999967, 49.557661077000049 ], [ -124.821874028999972, 49.557635425000029 ], [ -124.821776289999946, 49.557609975000084 ], [ -124.821692031999987, 49.55757531600009 ], [ -124.821565316999951, 49.557514354000098 ], [ -124.821480420999976, 49.557461710000041 ], [ -124.821267079999956, 49.557303141000077 ], [ -124.821183153999954, 49.557277487000064 ], [ -124.821113719999914, 49.557269572000038 ], [ -124.821058423999958, 49.557270461000073 ], [ -124.820933729999936, 49.557263421000087 ], [ -124.820867723999953, 49.557264458000127 ], [ -124.820848427999962, 49.558855099000013 ], [ -124.820362152999977, 49.55884982200007 ], [ -124.820345771999939, 49.559489897000034 ], [ -124.820840660000016, 49.559495266000027 ], [ -124.820826852999943, 49.560633351000014 ], [ -124.81936705299999, 49.560609655000043 ], [ -124.818956665999949, 49.560292914000073 ], [ -124.818491177999988, 49.560764317000086 ], [ -124.81648386899991, 49.560727226000061 ], [ -124.816377543999934, 49.560284005000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32157500", "BldgCostT": "21650000", "sL_LossRatio": "0.975081256771398", "sL_AssetLoss": "34243.3", "sL_BldgLoss": "33390", "sL_StrLoss": "30260", "sL_NStrLoss": "3130", "sL_ContLoss": "853.3", "geom_point": "0101000020E6100000CB2712E98A335FC08316544C8CC44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.822756452, 49.545246269000096 ], [ -124.822778935999949, 49.544365619000061 ], [ -124.821516960999972, 49.544351939000137 ], [ -124.82155902399991, 49.542705987000083 ], [ -124.816593074999929, 49.542652016000055 ], [ -124.816633828999969, 49.541063876000052 ], [ -124.81553403099997, 49.541051893000059 ], [ -124.815604361999959, 49.538313538000054 ], [ -124.814057341999941, 49.538296662000022 ], [ -124.81407388599996, 49.53765331000001 ], [ -124.813693266999977, 49.53764915400015 ], [ -124.813707790999928, 49.53708456600009 ], [ -124.812908145, 49.537075832000014 ], [ -124.812907997999929, 49.537081572 ], [ -124.81217258599996, 49.537073535000047 ], [ -124.812114399999956, 49.539332587000082 ], [ -124.806591796999939, 49.53927206700007 ], [ -124.806602055999946, 49.538875623000074 ], [ -124.806192891999927, 49.538871127000057 ], [ -124.806144144999976, 49.540754132000139 ], [ -124.80565926599995, 49.540748803000071 ], [ -124.805603250999951, 49.542911540000041 ], [ -124.80327722799997, 49.542885947000087 ], [ -124.803270425999955, 49.542859506000099 ], [ -124.803099251999967, 49.542340448000076 ], [ -124.803098261999949, 49.542313470000082 ], [ -124.802872157999957, 49.541804261000074 ], [ -124.802672724999965, 49.541267628000099 ], [ -124.802381525999976, 49.540867371000026 ], [ -124.80215941099999, 49.540466039000137 ], [ -124.802020875999915, 49.540081392000083 ], [ -124.802165886999944, 49.539890232000054 ], [ -124.802406277999964, 49.539661581000068 ], [ -124.802447067999964, 49.539642962000087 ], [ -124.802782818, 49.5393768550001 ], [ -124.802917024999928, 49.539266812000065 ], [ -124.803078512999917, 49.539147369000105 ], [ -124.803575737999893, 49.538761814000075 ], [ -124.803628022999987, 49.538680039000042 ], [ -124.803694809999953, 49.538616025000096 ], [ -124.803888781999959, 49.53825318400002 ], [ -124.804255362999939, 49.537698749000128 ], [ -124.804334304999969, 49.53758955000005 ], [ -124.804446025999937, 49.537245973000047 ], [ -124.8048027899999, 49.536799633000086 ], [ -124.804917511999918, 49.536536976000036 ], [ -124.805162444999937, 49.53605640200005 ], [ -124.80525151199997, 49.53584811100005 ], [ -124.805153474999912, 49.535813653000041 ], [ -124.805055132999911, 49.535770214000109 ], [ -124.804942956999952, 49.535726988000086 ], [ -124.804817305999961, 49.535692963000024 ], [ -124.804705488999957, 49.535658727000033 ], [ -124.804579838, 49.535624703000082 ], [ -124.804467988999988, 49.535590480000025 ], [ -124.804230521, 49.535522219000029 ], [ -124.803783172999928, 49.535385275000152 ], [ -124.803545350999983, 49.535308020000095 ], [ -124.803335503999961, 49.535239325000056 ], [ -124.80313913400002, 49.535161425000119 ], [ -124.802718777999971, 49.535006059000104 ], [ -124.802467483999919, 49.534938004000018 ], [ -124.802216839999971, 49.534887957000073 ], [ -124.801965545999977, 49.53481990300002 ], [ -124.801597788999942, 49.534591739000092 ], [ -124.801387948999945, 49.534523038000025 ], [ -124.8011431689999, 49.534471053000075 ], [ -124.80091433199999, 49.534422460000116 ], [ -124.800719622999949, 49.53438950700005 ], [ -124.80052523699996, 49.534365557000037 ], [ -124.800137131999946, 49.534335628000029 ], [ -124.799998677999952, 49.534328774000059 ], [ -124.799915470999963, 49.534321078000048 ], [ -124.799860184999972, 49.534321933000093 ], [ -124.799707591999962, 49.53430630800009 ], [ -124.799688060999969, 49.534306614000045 ], [ -124.799500394999981, 49.534309529000069 ], [ -124.799294184999951, 49.53433973000007 ], [ -124.799280369999934, 49.53433996300005 ], [ -124.799280708999959, 49.534348933000047 ], [ -124.799005431999916, 49.534380207000012 ], [ -124.798853790999914, 49.534391570000032 ], [ -124.798729492999925, 49.534393507000125 ], [ -124.798490807999926, 49.534381709000073 ], [ -124.798452547999915, 49.534379806000068 ], [ -124.798176250999944, 49.534384113000058 ], [ -124.798038118999926, 49.534386260000062 ], [ -124.797899985999976, 49.534388407000066 ], [ -124.797761856999898, 49.534390553000058 ], [ -124.797623723999962, 49.534392699000094 ], [ -124.797430003000017, 49.534386717000125 ], [ -124.797236281999915, 49.534380734000123 ], [ -124.797056376999961, 49.534374517000089 ], [ -124.796862655999945, 49.534368532000016 ], [ -124.796696873000016, 49.534371121000106 ], [ -124.796517649999956, 49.534382899000072 ], [ -124.796352206999984, 49.534394456000058 ], [ -124.796172623999951, 49.534397241000093 ], [ -124.79597859899999, 49.534382274000045 ], [ -124.795784215999916, 49.534358314000016 ], [ -124.795603986999978, 49.534343091000082 ], [ -124.795425389999977, 49.534372852000082 ], [ -124.79541157499996, 49.534373085000034 ], [ -124.795398098999968, 49.534382287000035 ], [ -124.795206024, 49.534421250000051 ], [ -124.794998827999947, 49.534424464000054 ], [ -124.794777456999938, 49.534418919000096 ], [ -124.794570257999951, 49.534422132000024 ], [ -124.794376516999975, 49.534416120000053 ], [ -124.79416901499998, 49.534410351000083 ], [ -124.793974994, 49.534410102000024 ], [ -124.793781945999953, 49.534418822000113 ], [ -124.793699195999949, 49.534422563000106 ], [ -124.788242910999941, 49.534454560000029 ], [ -124.785544031999962, 49.534470292000051 ], [ -124.785217511999988, 49.534472199000092 ], [ -124.782950337999949, 49.534485338000053 ], [ -124.781276024999954, 49.534495019000126 ], [ -124.781333499999988, 49.532319826000119 ], [ -124.782200710999945, 49.532329551000018 ], [ -124.782210186999933, 49.531970647000101 ], [ -124.782891405999919, 49.531978282000118 ], [ -124.782962541999964, 49.531979079000095 ], [ -124.78298440499999, 49.531150464000099 ], [ -124.788506003999913, 49.531212185000093 ], [ -124.788490231, 49.531812680000058 ], [ -124.789618498000024, 49.531825258 ], [ -124.78961366, 49.532009630000061 ], [ -124.790529874999933, 49.532019835000028 ], [ -124.790472043999955, 49.534225160000091 ], [ -124.795439139999928, 49.534280349 ], [ -124.795482076999946, 49.532636261000022 ], [ -124.795505673999983, 49.531732679000079 ], [ -124.796213958999914, 49.531740530000086 ], [ -124.796216850999926, 49.531629696000024 ], [ -124.797146971999936, 49.531639999000042 ], [ -124.79720363899996, 49.529466915000071 ], [ -124.802725056000014, 49.529527914000035 ], [ -124.802724893999979, 49.529534142000095 ], [ -124.80469989, 49.529555893000023 ], [ -124.804715309999906, 49.528960858000055 ], [ -124.804721579999963, 49.528965855000067 ], [ -124.804834708999934, 49.529036036000072 ], [ -124.804891607999977, 49.529080141000073 ], [ -124.804948215999943, 49.529115229000126 ], [ -124.805018570999934, 49.529150109000057 ], [ -124.805075505999952, 49.529194202000092 ], [ -124.805132046000011, 49.529229316000055 ], [ -124.805188959999896, 49.529273387000018 ], [ -124.805259368999941, 49.529308275000027 ], [ -124.805373184999965, 49.529396451000082 ], [ -124.805429760999957, 49.529431552000077 ], [ -124.80554898299999, 49.529526581000034 ], [ -124.80572874299996, 49.529669758000132 ], [ -124.805814587999947, 49.529749376000112 ], [ -124.805914591999951, 49.529837784000073 ], [ -124.806000440000034, 49.529917401000048 ], [ -124.806086647999948, 49.530006009000012 ], [ -124.806172494999956, 49.530085627000076 ], [ -124.806258667999927, 49.530174247000076 ], [ -124.806331040999964, 49.530263067000071 ], [ -124.806345181, 49.530271836000018 ], [ -124.806345541999974, 49.530280828000109 ], [ -124.806359680999918, 49.530289597000014 ], [ -124.806360006999981, 49.530298601000027 ], [ -124.806374146999957, 49.530307371000077 ], [ -124.806374453000032, 49.530316352000035 ], [ -124.806388953999914, 49.530334113000045 ], [ -124.806403112999959, 49.530342904000079 ], [ -124.806403416999927, 49.530351886000098 ], [ -124.80641788199992, 49.530369660000069 ], [ -124.806418223999927, 49.530378629000026 ], [ -124.806432382999915, 49.530387421000043 ], [ -124.806446846999947, 49.530405194000089 ], [ -124.806447187999964, 49.530414163000053 ], [ -124.80646134599999, 49.530422955000105 ], [ -124.806475791999944, 49.530440707000075 ], [ -124.806476118999953, 49.530449710000021 ], [ -124.80649025799994, 49.530458480000036 ], [ -124.806490925999981, 49.530476453000048 ], [ -124.806519223999956, 49.53049401500008 ], [ -124.806548855999949, 49.530547522000042 ], [ -124.806577459, 49.530574064000092 ], [ -124.80659190599998, 49.530591815000022 ], [ -124.806620563999914, 49.530618367000045 ], [ -124.806635009999965, 49.530636120000075 ], [ -124.806635350999926, 49.530644881000072 ], [ -124.806635363999973, 49.530645054000033 ], [ -124.806650196999897, 49.530671874000085 ], [ -124.806678475999945, 49.530689415000069 ], [ -124.80669324699997, 49.530716170000119 ], [ -124.806707404999955, 49.530724962000107 ], [ -124.806736351999945, 49.53076047200004 ], [ -124.806764957, 49.5307870170002 ], [ -124.806794589999981, 49.530840524000034 ], [ -124.806822886999939, 49.530858085000077 ], [ -124.806837693999967, 49.530884829000073 ], [ -124.806851834999947, 49.530893597000109 ], [ -124.807283435, 49.53135462300002 ], [ -124.807687108999943, 49.531807078000043 ], [ -124.807701267999988, 49.531815871000042 ], [ -124.807758514999961, 49.531868944000053 ], [ -124.807773320999971, 49.531895686000126 ], [ -124.807830536999958, 49.531948772000121 ], [ -124.807845361999952, 49.531975537000022 ], [ -124.807902610999975, 49.532028610000026 ], [ -124.807917382999989, 49.532055365000069 ], [ -124.80797463299993, 49.532108437000055 ], [ -124.808002931999937, 49.532125999000051 ], [ -124.808017739999983, 49.532152741000061 ], [ -124.808046039999937, 49.532170303000036 ], [ -124.808060506999965, 49.532188076000125 ], [ -124.808088788999939, 49.532205614000134 ], [ -124.808117429999982, 49.532232144000055 ], [ -124.808131895999921, 49.532249918000069 ], [ -124.808160177, 49.532267457000046 ], [ -124.808174676999897, 49.532285217 ], [ -124.80820328599999, 49.532311760000042 ], [ -124.808231584999959, 49.532329321000056 ], [ -124.808246032999989, 49.532347072000121 ], [ -124.808274332999972, 49.532364634000082 ], [ -124.808288834999971, 49.532382394000059 ], [ -124.808289494999983, 49.532391363000073 ], [ -124.808318376, 49.532408442000118 ], [ -124.808333509999983, 49.532425938000074 ], [ -124.808362369999912, 49.53244299600005 ], [ -124.808407066999976, 49.53248656300012 ], [ -124.808451060999985, 49.532521116000083 ], [ -124.80848128099997, 49.532556156000076 ], [ -124.808481920999952, 49.532565103000088 ], [ -124.808560871999987, 49.532639014000111 ], [ -124.808590147999936, 49.532683530000085 ], [ -124.808632930999963, 49.532718829000039 ], [ -124.808662224, 49.53276336700003 ], [ -124.808704971999987, 49.532798679000038 ], [ -124.808734281999961, 49.532843182000057 ], [ -124.808777051999982, 49.532878516000032 ], [ -124.80880632599991, 49.532923032000028 ], [ -124.808834608000012, 49.532940570000093 ], [ -124.809297878999985, 49.533509053000053 ], [ -124.80973119799999, 49.534015024000105 ], [ -124.809745337999971, 49.534023793000095 ], [ -124.809802592999944, 49.534076864000028 ], [ -124.809944045999913, 49.534164600000103 ], [ -124.809972021999968, 49.53417315800003 ], [ -124.810014446999944, 49.534199465000071 ], [ -124.810042387999928, 49.534208034000123 ], [ -124.810056531999976, 49.534216803000099 ], [ -124.810084507999974, 49.534225361000047 ], [ -124.810112790999966, 49.534242899000027 ], [ -124.810140750999963, 49.534251490000017 ], [ -124.810169067999979, 49.534269016000074 ], [ -124.8101828699999, 49.534268816000036 ], [ -124.810211152999941, 49.534286355000063 ], [ -124.810239128999939, 49.534294911000082 ], [ -124.81025293099998, 49.534294711000022 ], [ -124.810281212999953, 49.534312250000013 ], [ -124.81029502799997, 49.534312015000104 ], [ -124.810309187999962, 49.534320807000014 ], [ -124.810337165999954, 49.53432936300004 ], [ -124.810350946999932, 49.53432914100005 ], [ -124.81036508699999, 49.534337909000051 ], [ -124.810378922999959, 49.534337697000083 ], [ -124.810406863999944, 49.534346266000014 ], [ -124.810434478999937, 49.534345831000032 ], [ -124.810462455999954, 49.534354388000111 ], [ -124.810904483999948, 49.534347482000051 ], [ -124.810945606999951, 49.534337830000048 ], [ -124.811056122999958, 49.534336099 ], [ -124.811083409999966, 49.534326660000026 ], [ -124.811152442999969, 49.534325592000044 ], [ -124.811193585999959, 49.534315962000022 ], [ -124.811566526999954, 49.534310112000092 ], [ -124.81163595299995, 49.534318021000097 ], [ -124.811704985999981, 49.534316950000083 ], [ -124.811774411999977, 49.534324858000033 ], [ -124.811898707999916, 49.534322905000067 ], [ -124.811968134999987, 49.534330813000047 ], [ -124.812037198999946, 49.534329730000145 ], [ -124.812106590999988, 49.534337650000062 ], [ -124.812175655999937, 49.534336567000011 ], [ -124.8122450649999, 49.534344453000095 ], [ -124.813764541999916, 49.534320650000048 ], [ -124.814330229999953, 49.534293786000077 ], [ -124.814841989999962, 49.534303751000131 ], [ -124.81504918499995, 49.534300494000099 ], [ -124.815395202999952, 49.534313061000084 ], [ -124.815755361999948, 49.534334396000069 ], [ -124.815838534999912, 49.534342092000031 ], [ -124.816395495999956, 49.5343548970001 ], [ -124.8164253, 49.534364966000062 ], [ -124.816484662999969, 49.534394856000098 ], [ -124.816617754999953, 49.53448409100011 ], [ -124.816647119999956, 49.534513671000084 ], [ -124.816646890999891, 49.534523444000051 ], [ -124.816661679999967, 49.534533365000087 ], [ -124.81666145299999, 49.534543139000121 ], [ -124.816676048999966, 49.534562820000083 ], [ -124.816676355999945, 49.534571802000073 ], [ -124.8166905, 49.53458057100007 ], [ -124.81669082799999, 49.534589574000108 ], [ -124.816704969999961, 49.534598343000042 ], [ -124.816705332999945, 49.53460733400005 ], [ -124.816719803999931, 49.534625106000107 ], [ -124.816722779999935, 49.534706016000094 ], [ -124.816709307999986, 49.534715220000081 ], [ -124.816709652999947, 49.534724189000045 ], [ -124.816642254999977, 49.534770225000074 ], [ -124.816642582999975, 49.534779229000051 ], [ -124.81661563899999, 49.534797639000054 ], [ -124.816616272999966, 49.534815625000071 ], [ -124.816602801000016, 49.534824830000034 ], [ -124.816605796999966, 49.534905761000068 ], [ -124.816619612999915, 49.534905526000024 ], [ -124.816620284999928, 49.534923499000108 ], [ -124.816634446999913, 49.534932288000022 ], [ -124.816635117999951, 49.534950262000031 ], [ -124.816648897999968, 49.534950039000051 ], [ -124.816649930999958, 49.534977003000073 ], [ -124.816664039999964, 49.534985785000039 ], [ -124.816666070999943, 49.5350397260001 ], [ -124.81669568599996, 49.535093243000119 ], [ -124.81669668399995, 49.535120220000074 ], [ -124.816726312999947, 49.535173702000087 ], [ -124.816754926999948, 49.53520024400008 ], [ -124.816769431999973, 49.535218004000079 ], [ -124.816799045999971, 49.535271522000109 ], [ -124.816827660999962, 49.535298062000017 ], [ -124.816857310999964, 49.535351567000092 ], [ -124.816871814999928, 49.535369326000144 ], [ -124.816900430999965, 49.535395867000084 ], [ -124.816944857999914, 49.535476126000027 ], [ -124.816959330999921, 49.535493898000034 ], [ -124.817003757999942, 49.535574157000049 ], [ -124.817018266, 49.535591917000083 ], [ -124.817062692999954, 49.535672175000045 ], [ -124.817077164999915, 49.535689948000062 ], [ -124.817106813999928, 49.535743453000087 ], [ -124.817107141999941, 49.535752457000065 ], [ -124.817341960999926, 49.535748759000121 ], [ -124.817549854, 49.535763494000051 ], [ -124.817757399999948, 49.535769200000082 ], [ -124.817868247999954, 49.53577646800008 ], [ -124.818034362000034, 49.535782846000068 ], [ -124.818144848, 49.535781121000092 ], [ -124.818283308999966, 49.535787949000145 ], [ -124.818421445999931, 49.535785775000129 ], [ -124.818601373999968, 49.535791917000068 ], [ -124.81875367399995, 49.535798530000051 ], [ -124.818905608999927, 49.535796154000089 ], [ -124.819002656999928, 49.535803619000035 ], [ -124.819127318999946, 49.53581064900002 ], [ -124.819238818999921, 49.535835863000038 ], [ -124.819363138999933, 49.535833923000077 ], [ -124.81947396899993, 49.535841165000143 ], [ -124.819805489999979, 49.535835958000092 ], [ -124.819957152000015, 49.535824584000075 ], [ -124.820122230999971, 49.535803996 ], [ -124.820481403999977, 49.535798337000138 ], [ -124.820647484999967, 49.535804724000087 ], [ -124.820840871999962, 49.53580169100011 ], [ -124.821129646999935, 49.535761139000023 ], [ -124.821530909000032, 49.535772809000058 ], [ -124.821628285999978, 49.535789277000049 ], [ -124.821714051999905, 49.535819414000123 ], [ -124.8217263, 49.535823730000097 ], [ -124.821936179999952, 49.535892387000089 ], [ -124.821992104999936, 49.535909506000046 ], [ -124.822413525999949, 49.536091745000071 ], [ -124.822498433999939, 49.536144395000115 ], [ -124.82261126799996, 49.536205587000019 ], [ -124.822709992999933, 49.536258 ], [ -124.822949169999958, 49.536371166000031 ], [ -124.823289079999981, 49.53659069900003 ], [ -124.823615489999966, 49.536819450000074 ], [ -124.823955750999957, 49.537047949000055 ], [ -124.824021035999948, 49.53731680900011 ], [ -124.824025373999987, 49.537433665000044 ], [ -124.824015588999941, 49.537541776000076 ], [ -124.823103850999928, 49.537556144000064 ], [ -124.82297918299993, 49.537549121000126 ], [ -124.822841021999977, 49.537551280000081 ], [ -124.822716352999919, 49.537544256000039 ], [ -124.822384816999929, 49.537549473000055 ], [ -124.822232530999912, 49.537542886000089 ], [ -124.822121676999984, 49.537535626000121 ], [ -124.821873048999933, 49.537539536000139 ], [ -124.821776669999977, 49.537550046000092 ], [ -124.821348411000017, 49.537556800000033 ], [ -124.821209940999921, 49.537549975000097 ], [ -124.820988583999949, 49.537544478000022 ], [ -124.820822826999986, 49.537547095000079 ], [ -124.820615251000021, 49.537541371000053 ], [ -124.82047712399995, 49.537543514000035 ], [ -124.820352476000025, 49.537536510000109 ], [ -124.820117626999917, 49.537540193000105 ], [ -124.81999293899996, 49.537533142000051 ], [ -124.819882434999926, 49.53753490500003 ], [ -124.819730129999982, 49.537528293000079 ], [ -124.819494971999987, 49.537522992000085 ], [ -124.819398249999921, 49.537524531 ], [ -124.819259780999971, 49.537517704000017 ], [ -124.81914929099996, 49.537519429000021 ], [ -124.819024621999944, 49.537512401000086 ], [ -124.818872646999978, 49.537514792000074 ], [ -124.818720359999958, 49.537508199000058 ], [ -124.818596054999901, 49.537510162000039 ], [ -124.818472058999987, 49.537521105000053 ], [ -124.818430948999961, 49.537530726000035 ], [ -124.818334569999948, 49.537541232000144 ], [ -124.818252353999966, 49.537560529000096 ], [ -124.818266826999931, 49.537578302000085 ], [ -124.818281641999988, 49.537605043000092 ], [ -124.818296114999924, 49.53762281500007 ], [ -124.818310930999985, 49.53764955600009 ], [ -124.818339910999967, 49.537685089000071 ], [ -124.818354746999958, 49.537711852 ], [ -124.818369220999983, 49.537729624000072 ], [ -124.818384036999973, 49.537756364000124 ], [ -124.818412962999929, 49.537791888000065 ], [ -124.81842779899992, 49.537818652000077 ], [ -124.818442271999942, 49.537836424000041 ], [ -124.818457088999935, 49.537863165000054 ], [ -124.818485376999931, 49.537880700000095 ], [ -124.81849988499999, 49.537898460000129 ], [ -124.818514686, 49.537925236000092 ], [ -124.818529172999916, 49.537942973000078 ], [ -124.818558789999912, 49.537996492000076 ], [ -124.818587081999951, 49.538014027000095 ], [ -124.81861673399996, 49.538067533000067 ], [ -124.818645351999933, 49.53809407300011 ], [ -124.818659822999933, 49.53811184500006 ], [ -124.818674660999974, 49.538138609000121 ], [ -124.818703277999973, 49.538165149000072 ], [ -124.818717786999969, 49.538182907000142 ], [ -124.818747385, 49.538236403000084 ], [ -124.818775693999939, 49.538253963000052 ], [ -124.818805345999934, 49.538307467000074 ], [ -124.818965962, 49.538538825000096 ], [ -124.819141085999945, 49.538787943000074 ], [ -124.819172049999906, 49.538877406000083 ], [ -124.819229993999954, 49.538948448000099 ], [ -124.819288265999944, 49.539028493000039 ], [ -124.819318558999939, 49.539099983000071 ], [ -124.819390612999939, 49.539179805000131 ], [ -124.819434741999899, 49.539251082000121 ], [ -124.819478505999911, 49.539313368000123 ], [ -124.819508160999945, 49.539366872000109 ], [ -124.81957957899999, 49.539428708000109 ], [ -124.819636818999982, 49.539481788000039 ], [ -124.819667782999971, 49.539571252000052 ], [ -124.819682620999956, 49.539598016000149 ], [ -124.819740202999981, 49.539660067000106 ], [ -124.81981231499999, 49.539739897000082 ], [ -124.819870534999922, 49.539819932000043 ], [ -124.819941974999921, 49.539881790000052 ], [ -124.820102307999946, 49.540104131000128 ], [ -124.820275428999977, 49.540299327000078 ], [ -124.820319869999935, 49.540379585000032 ], [ -124.820421274999973, 49.540503930000057 ], [ -124.820422257999937, 49.540530885000052 ], [ -124.820596054, 49.540744054000065 ], [ -124.820829475999972, 49.541073216000065 ], [ -124.821077048999939, 49.541411145000041 ], [ -124.82132389799996, 49.541731090000034 ], [ -124.82161394, 49.542095343000049 ], [ -124.821817044999975, 49.542353026000107 ], [ -124.821846340999954, 49.542397540000117 ], [ -124.822049484999937, 49.542655208000021 ], [ -124.82213768299999, 49.542797729000071 ], [ -124.822167706999949, 49.542860226000101 ], [ -124.822340519999969, 49.543046416000067 ], [ -124.822690157999901, 49.54352665000004 ], [ -124.822718107999933, 49.543535217000105 ], [ -124.822863614999932, 49.543730828 ], [ -124.823039787999932, 49.54400691900009 ], [ -124.823113225999947, 49.544122710000067 ], [ -124.823166504999975, 49.544195841000047 ], [ -124.82317149499994, 49.544202732000052 ], [ -124.823214959999987, 49.544256035000103 ], [ -124.823317677999967, 49.544416315000028 ], [ -124.823448093999943, 49.544576189000125 ], [ -124.823622906999944, 49.544816313000133 ], [ -124.82376842199993, 49.54501192200005 ], [ -124.823914281999961, 49.545216501000105 ], [ -124.823940218999951, 49.545259087000041 ], [ -124.822756452, 49.545246269000096 ] ], [ [ -124.805924883999964, 49.536287856000079 ], [ -124.805943995999939, 49.535549694000053 ], [ -124.805758490999921, 49.535547655000101 ], [ -124.805789139999945, 49.5343640090001 ], [ -124.805677708999937, 49.534362784000102 ], [ -124.805633375999918, 49.536074792000093 ], [ -124.805605550999928, 49.537149199000076 ], [ -124.805902497999952, 49.537152463000048 ], [ -124.805924883999964, 49.536287856000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27722917", "BldgCostT": "18591667", "sL_LossRatio": "0.958002069609551", "sL_AssetLoss": "39621", "sL_BldgLoss": "37957", "sL_StrLoss": "33220", "sL_NStrLoss": "4737", "sL_ContLoss": "1664", "geom_point": "0101000020E6100000BF9271AD722F5FC0F9C27D4781C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.736964405, 49.509907324000061 ], [ -124.736637620999957, 49.509651346000084 ], [ -124.736383046999947, 49.509484256000071 ], [ -124.736014514999937, 49.509219926000064 ], [ -124.735601058999961, 49.5088573230001 ], [ -124.73504925099995, 49.508487773000077 ], [ -124.73500684699998, 49.508461427000036 ], [ -124.734950068999979, 49.508417306000077 ], [ -124.734893546999928, 49.508382180000041 ], [ -124.734837060999922, 49.508347040000068 ], [ -124.734780539999946, 49.508311914000039 ], [ -124.734723742999947, 49.50826777000006 ], [ -124.734667220999981, 49.508232644000039 ], [ -124.734610734999961, 49.508197505000105 ], [ -124.734568041999964, 49.50816217600007 ], [ -124.734525669999982, 49.508135815000074 ], [ -124.734497092999902, 49.50810926700008 ], [ -124.734454434, 49.508073925000048 ], [ -124.734412030999962, 49.508047577000085 ], [ -124.734369661, 49.508021217000156 ], [ -124.734327000999954, 49.50798587600012 ], [ -124.734284597999974, 49.507959528000136 ], [ -124.734256018999986, 49.507932978000056 ], [ -124.73419986, 49.507906808000023 ], [ -124.734157473999943, 49.507880482000118 ], [ -124.73411510599999, 49.507854122000026 ], [ -124.734058929999961, 49.507827986000088 ], [ -124.734002733999958, 49.507801827000037 ], [ -124.733960385999964, 49.507775489000061 ], [ -124.733904189999976, 49.50774933000006 ], [ -124.733848303999963, 49.507732175000072 ], [ -124.733792130000012, 49.507706038000059 ], [ -124.733736297999954, 49.50768889400009 ], [ -124.733680104999934, 49.507662734000057 ], [ -124.733610447000018, 49.507645790000041 ], [ -124.733554273, 49.50761965300007 ], [ -124.733526329999947, 49.507611076000089 ], [ -124.733484270999938, 49.50759372000006 ], [ -124.733442537999906, 49.507585330000062 ], [ -124.733414612999979, 49.507576775000061 ], [ -124.73337287799994, 49.507568386000052 ], [ -124.733330820999981, 49.507551028000066 ], [ -124.733289072, 49.507542675000067 ], [ -124.733261163999927, 49.507534083000095 ], [ -124.73321910599995, 49.507516727000045 ], [ -124.733177336999944, 49.507508351000091 ], [ -124.733149103999978, 49.507490792000098 ], [ -124.733093273999913, 49.507473646000086 ], [ -124.733051195999934, 49.507456265000094 ], [ -124.73299502299993, 49.507430129000085 ], [ -124.732952653999973, 49.507403769000064 ], [ -124.73289678899999, 49.507386635000067 ], [ -124.73285442199996, 49.507360273000145 ], [ -124.732812053999936, 49.507333914000114 ], [ -124.732755843999911, 49.507307790000041 ], [ -124.73271347799998, 49.507281428000049 ], [ -124.73267110899998, 49.507255068000049 ], [ -124.732628762, 49.507228728 ], [ -124.73258636199995, 49.507202381000077 ], [ -124.73252987599993, 49.507167240000101 ], [ -124.732445107999965, 49.507114530000095 ], [ -124.732388624999942, 49.507079389000033 ], [ -124.732346256999975, 49.507053028 ], [ -124.732303565999985, 49.507017700000063 ], [ -124.73226119899999, 49.506991339000038 ], [ -124.732218507999946, 49.506956009000064 ], [ -124.732175797999943, 49.506920656000098 ], [ -124.732146932999953, 49.506885126000029 ], [ -124.732103931999944, 49.506840794000027 ], [ -124.73206062300001, 49.506787457000073 ], [ -124.732031102999912, 49.506733932000046 ], [ -124.732001565999965, 49.506680384000063 ], [ -124.731985874999964, 49.506626657000012 ], [ -124.731956011999927, 49.506564141000112 ], [ -124.731924607999943, 49.506456666000076 ], [ -124.731894747999988, 49.506394149000073 ], [ -124.73187907099998, 49.506340388000062 ], [ -124.731849552999975, 49.506286863000078 ], [ -124.73183446199999, 49.506251121000041 ], [ -124.731819059999935, 49.506206375000055 ], [ -124.731804000999958, 49.506170621000109 ], [ -124.731788920999961, 49.506134845000126 ], [ -124.731773830999927, 49.506099101000054 ], [ -124.73175877199999, 49.506063347000122 ], [ -124.731729887999975, 49.506027794000069 ], [ -124.731728603, 49.505991828000077 ], [ -124.731713198999955, 49.505947082000034 ], [ -124.731698141999985, 49.505911328000138 ], [ -124.731683083999883, 49.505875572000015 ], [ -124.731682431999943, 49.505857578000082 ], [ -124.731667682999927, 49.505830828000086 ], [ -124.731667048999967, 49.505812855000094 ], [ -124.731666394999934, 49.505794862000066 ], [ -124.731651645999989, 49.505768110000105 ], [ -124.731651028999977, 49.505750103000025 ], [ -124.731650051, 49.505723140000072 ], [ -124.731635626999918, 49.505705358000057 ], [ -124.731634049999954, 49.505660411000122 ], [ -124.731631787999973, 49.505597482000027 ], [ -124.73164436199994, 49.505561303000093 ], [ -124.73164275, 49.505516369000134 ], [ -124.73165532499992, 49.50548018800005 ], [ -124.731667519999988, 49.505435031000019 ], [ -124.731680058999984, 49.505398864000014 ], [ -124.73169228799999, 49.505353693000117 ], [ -124.731704827999977, 49.505317526000098 ], [ -124.731717022999959, 49.505272367000032 ], [ -124.731729562999959, 49.505236201000081 ], [ -124.731741756999938, 49.505191042000057 ], [ -124.731740848999948, 49.505164056000091 ], [ -124.73175369799999, 49.505136890000117 ], [ -124.731752412, 49.505100926000118 ], [ -124.731765292999953, 49.505073748000044 ], [ -124.731764006999967, 49.50503778400013 ], [ -124.731763029999939, 49.505010821 ], [ -124.731761778999896, 49.504974843000113 ], [ -124.731774624999986, 49.504947679000082 ], [ -124.731773682999957, 49.504920704000064 ], [ -124.731772394999965, 49.504884738000023 ], [ -124.73177208599995, 49.504875735000077 ], [ -124.731785278999922, 49.504857562000105 ], [ -124.731784302, 49.504830598000098 ], [ -124.731783049999976, 49.504794621000066 ], [ -124.731795878999947, 49.504767435000126 ], [ -124.731794935, 49.504740459000082 ], [ -124.73179401199998, 49.504713507000105 ], [ -124.731806840999965, 49.504686320000062 ], [ -124.731805896999973, 49.504659346000075 ], [ -124.731804920999949, 49.504632384000018 ], [ -124.731803977999931, 49.504605408000067 ], [ -124.731816860999956, 49.504578232000071 ], [ -124.731815863999927, 49.504551248000077 ], [ -124.731814631999953, 49.50451529200015 ], [ -124.731827168999942, 49.504479125000074 ], [ -124.731825575999977, 49.504434155000084 ], [ -124.731824287999984, 49.504398189 ], [ -124.73182302099994, 49.504362246000042 ], [ -124.731821767999961, 49.504326268000064 ], [ -124.731834306999957, 49.504290101000088 ], [ -124.731833021999975, 49.504254135000068 ], [ -124.73183175299999, 49.504218192000039 ], [ -124.731830467999927, 49.504182226000061 ], [ -124.731829214999962, 49.504146248000055 ], [ -124.731841753999987, 49.50411008100005 ], [ -124.73184046899999, 49.504074115 ], [ -124.731838890999967, 49.504029168000073 ], [ -124.731837604999939, 49.503993203000078 ], [ -124.731836371999975, 49.503957247000123 ], [ -124.731835086999979, 49.503921282000071 ], [ -124.731847623999926, 49.503885115000024 ], [ -124.731846049999916, 49.50384016800011 ], [ -124.731844761999952, 49.503804202000026 ], [ -124.731843508999972, 49.503768224000055 ], [ -124.731842222999944, 49.50373225800007 ], [ -124.731840612999989, 49.503687325000044 ], [ -124.731839070999953, 49.503642365000076 ], [ -124.731837440999925, 49.503597410000076 ], [ -124.73183586499999, 49.503552463000048 ], [ -124.731848402999944, 49.503516296000029 ], [ -124.731846805999965, 49.503471327000057 ], [ -124.731845230999966, 49.503426380000079 ], [ -124.731829829999981, 49.503381635000032 ], [ -124.731829230999935, 49.503363652000061 ], [ -124.731856826999959, 49.503363238000119 ], [ -124.731856482999916, 49.503354248000107 ], [ -124.731884112999964, 49.503353822000051 ], [ -124.731911417999967, 49.503344430000027 ], [ -124.731925189999956, 49.50334421900007 ], [ -124.73195249399997, 49.503334824000035 ], [ -124.73196631899998, 49.503334623000072 ], [ -124.731993604999943, 49.503325208000035 ], [ -124.732021200999966, 49.503324794000036 ], [ -124.732020892000023, 49.503315791000048 ], [ -124.732564852999971, 49.503073771000054 ], [ -124.732809833999951, 49.502971158000079 ], [ -124.733503424999952, 49.502663899000027 ], [ -124.733583676999942, 49.502629021000104 ], [ -124.734210791999899, 49.502356450000079 ], [ -124.735034813999931, 49.501831364000076 ], [ -124.735047964999964, 49.50181314600011 ], [ -124.735061119999926, 49.50179498500006 ], [ -124.735074288999897, 49.501776790000065 ], [ -124.735101282999949, 49.501758392000085 ], [ -124.735114452999966, 49.501740196000078 ], [ -124.73512698699993, 49.501704029000066 ], [ -124.735153636999911, 49.501676641000046 ], [ -124.735152348999947, 49.501640675000026 ], [ -124.735164884999961, 49.501604509000117 ], [ -124.735163612999912, 49.501568566000081 ], [ -124.735176127999978, 49.501532377000039 ], [ -124.735161067999982, 49.50149662200009 ], [ -124.735159488, 49.501451676000016 ], [ -124.735158201000033, 49.50141571100005 ], [ -124.735143141999941, 49.501379957000026 ], [ -124.735127736999956, 49.501335213000047 ], [ -124.735112676999961, 49.501299460000091 ], [ -124.73511107799996, 49.50125449100004 ], [ -124.73509601899994, 49.501218737000052 ], [ -124.735080615999891, 49.501173993000101 ], [ -124.735065521999942, 49.501138252000018 ], [ -124.735050117999904, 49.501093508000061 ], [ -124.735048863999964, 49.501057530000011 ], [ -124.735033804999915, 49.501021777000098 ], [ -124.735032206999946, 49.500976808000104 ], [ -124.735029648999927, 49.500904901000098 ], [ -124.735028701999951, 49.500877925000061 ], [ -124.735027413999916, 49.500841960000074 ], [ -124.735026467999973, 49.500814985000019 ], [ -124.735025197999931, 49.500779042000012 ], [ -124.735024233999965, 49.50075204600008 ], [ -124.735022965, 49.500716104000048 ], [ -124.735022018999956, 49.500689128000076 ], [ -124.735020731999953, 49.50065316400007 ], [ -124.735019475999962, 49.500617186000085 ], [ -124.735018532, 49.500590211000052 ], [ -124.73503103199999, 49.500554056000098 ], [ -124.735030121999941, 49.500527070000089 ], [ -124.735028830999937, 49.500491104000027 ], [ -124.735027853999981, 49.500464142000084 ], [ -124.73502661699996, 49.50042818700009 ], [ -124.735025638999971, 49.500401225000083 ], [ -124.73503815299992, 49.500365037000066 ], [ -124.735036918, 49.50032908000005 ], [ -124.735035938, 49.500302119000033 ], [ -124.73503468399997, 49.500266141000061 ], [ -124.735047542999951, 49.500238943000092 ], [ -124.735046583999946, 49.500212003000094 ], [ -124.73504529499999, 49.500176037000138 ], [ -124.735044349999967, 49.500149063000045 ], [ -124.735056884999963, 49.500112896000061 ], [ -124.73505594, 49.500085922000018 ], [ -124.735054995, 49.500058948000053 ], [ -124.735067529999938, 49.500022780000052 ], [ -124.735066530999944, 49.499995796000086 ], [ -124.735065295999931, 49.499959840000081 ], [ -124.7350781199999, 49.499932655000123 ], [ -124.73507717699998, 49.499905680000076 ], [ -124.735075906999938, 49.499869737000054 ], [ -124.735088765999976, 49.499842538000088 ], [ -124.735101610999919, 49.499815374000022 ], [ -124.73510035599999, 49.499779397000061 ], [ -124.735099374999947, 49.499752435000104 ], [ -124.735099103999957, 49.499744571000086 ], [ -124.735098430999969, 49.499725461000061 ], [ -124.735110965999979, 49.499689293000088 ], [ -124.735123789999946, 49.49966210700012 ], [ -124.735136668, 49.499634930000106 ], [ -124.735149203, 49.499598764000019 ], [ -124.735161393999988, 49.49955360700006 ], [ -124.735160448999977, 49.49952663300013 ], [ -124.735172670999987, 49.499481462000077 ], [ -124.73518551599993, 49.499454299000064 ], [ -124.735197741999968, 49.499409129000085 ], [ -124.735224078999963, 49.499372737000044 ], [ -124.735222500999924, 49.499327792000066 ], [ -124.735235342999957, 49.499300628000057 ], [ -124.735261646999945, 49.49926425000006 ], [ -124.735274215999979, 49.499228070000036 ], [ -124.735286749999915, 49.499191903000032 ], [ -124.735298938999932, 49.499146746000108 ], [ -124.735325276999944, 49.499110354000031 ], [ -124.735351632999965, 49.499073986000063 ], [ -124.735364478999898, 49.499046822000018 ], [ -124.735390814999931, 49.49901043100008 ], [ -124.735417152, 49.498974040000121 ], [ -124.735429687999954, 49.498937873000074 ], [ -124.735456333999963, 49.498910485000088 ], [ -124.735482689999969, 49.498874117000113 ], [ -124.735522817999964, 49.498837535000114 ], [ -124.735549465999924, 49.498810147 ], [ -124.735576110999929, 49.498782760000026 ], [ -124.73561623799999, 49.498746179000094 ], [ -124.73564288599999, 49.498718791000066 ], [ -124.735683356999942, 49.498691202000089 ], [ -124.73572351599995, 49.498654608000074 ], [ -124.735750163999953, 49.498627221000042 ], [ -124.73579059799998, 49.498599642000087 ], [ -124.735830758999981, 49.498563050000023 ], [ -124.735871229999958, 49.498535460000056 ], [ -124.73591164599999, 49.498507860000139 ], [ -124.735952115999964, 49.498480270000101 ], [ -124.735992929999895, 49.498461671000094 ], [ -124.736725597999936, 49.498090841000057 ], [ -124.73676666799993, 49.498081234000047 ], [ -124.736807447999951, 49.498062647000083 ], [ -124.736834730999988, 49.498053230000082 ], [ -124.736889621999921, 49.49804342100002 ], [ -124.736930727999905, 49.498033802000094 ], [ -124.736971831999966, 49.498024183000055 ], [ -124.737012935999985, 49.498014564000137 ], [ -124.737053697999926, 49.497995953000057 ], [ -124.737108899999953, 49.497995148000065 ], [ -124.737150003999915, 49.497985530000086 ], [ -124.737191417999966, 49.497984912000106 ], [ -124.737219044999961, 49.497984486000114 ], [ -124.737246291999966, 49.497975081000043 ], [ -124.737287395999928, 49.497965462000067 ], [ -124.737314697999963, 49.497956066000015 ], [ -124.737369569999927, 49.497946236000125 ], [ -124.737410985999958, 49.497945619000092 ], [ -124.7374524, 49.497945004000059 ], [ -124.737521096999942, 49.497934969000063 ], [ -124.737576313999966, 49.497934128000054 ], [ -124.737617437999958, 49.497924531000109 ], [ -124.737672621999948, 49.497923702000065 ], [ -124.737727839999977, 49.497922863000049 ], [ -124.737796879999948, 49.497921819000091 ], [ -124.737838296999925, 49.497921201000089 ], [ -124.737893823999954, 49.497929364000058 ], [ -124.737949041999968, 49.49792852200008 ], [ -124.738004245999917, 49.497927716000056 ], [ -124.73807325300001, 49.49792668500006 ], [ -124.738114991999936, 49.497935037000069 ], [ -124.73817023099997, 49.497934219000086 ], [ -124.73822541299991, 49.497933389000117 ], [ -124.738280630999952, 49.49793254800008 ], [ -124.738335849999913, 49.49793170600006 ], [ -124.738391053999919, 49.4979309 ], [ -124.738445960999954, 49.49792105600006 ], [ -124.738501163999985, 49.497920249000074 ], [ -124.738556089999946, 49.4979104270001 ], [ -124.738583370999919, 49.497901010000106 ], [ -124.738624784999956, 49.497900393000101 ], [ -124.738652067, 49.497890976000051 ], [ -124.738693137999945, 49.497881368000094 ], [ -124.73872078299992, 49.497880963000107 ], [ -124.738761852999943, 49.497871355000058 ], [ -124.73878947799993, 49.497870928000061 ], [ -124.738830547999953, 49.497861321000045 ], [ -124.738857848999928, 49.497851925000134 ], [ -124.738898951999914, 49.497842305000077 ], [ -124.738926232999958, 49.497832888000055 ], [ -124.738967647999914, 49.497832271000064 ], [ -124.738994927999954, 49.497822853000102 ], [ -124.739035998999967, 49.497813246000135 ], [ -124.739063298999966, 49.497803850000025 ], [ -124.739104400999935, 49.497794231000093 ], [ -124.739131701999924, 49.497784836000037 ], [ -124.739172771999918, 49.497775229000119 ], [ -124.739186283999942, 49.497766022000093 ], [ -124.739227353999937, 49.497756415 ], [ -124.739254322999983, 49.497737994000062 ], [ -124.739309215999981, 49.497728184000103 ], [ -124.739349682999944, 49.497700592000079 ], [ -124.739390440999969, 49.497681981 ], [ -124.739444384999899, 49.497645198000072 ], [ -124.739485142999925, 49.497626586000088 ], [ -124.739525609999959, 49.497598996000114 ], [ -124.739579879999951, 49.497571179000076 ], [ -124.739620346, 49.497543588000106 ], [ -124.739646664999938, 49.497507230000039 ], [ -124.739700933999941, 49.497479414000061 ], [ -124.739727578999918, 49.497452025000023 ], [ -124.739781520999941, 49.497415241000063 ], [ -124.739808164999957, 49.497387852000038 ], [ -124.739848630999973, 49.497360259000089 ], [ -124.739874964999942, 49.49732386800013 ], [ -124.739915084999936, 49.497287286000052 ], [ -124.739941437999988, 49.497250916000041 ], [ -124.739981883999988, 49.497223302000066 ], [ -124.740008200999938, 49.497186944000099 ], [ -124.740048356999978, 49.497150350000041 ], [ -124.740061176999944, 49.497123165000097 ], [ -124.740087840999962, 49.4970957970001 ], [ -124.74011451799997, 49.497068395000014 ], [ -124.740113881999946, 49.497050424000086 ], [ -124.74013954099992, 49.496996074000108 ], [ -124.740152070999969, 49.496959907000068 ], [ -124.740179038999955, 49.4969414850001 ], [ -124.740178091999923, 49.496914512000039 ], [ -124.740177143999958, 49.496887537000099 ], [ -124.74018998399994, 49.496860373000047 ], [ -124.740202513999989, 49.496824206000063 ], [ -124.740215332, 49.496797020000059 ], [ -124.740242322999919, 49.49677862000005 ], [ -124.740241373999964, 49.496751646000099 ], [ -124.740267068999941, 49.496697283000103 ], [ -124.740294023999979, 49.496678896000091 ], [ -124.740307189999939, 49.496660700000113 ], [ -124.740334177999927, 49.496642302000076 ], [ -124.740361130999958, 49.49662391600009 ], [ -124.740374296999946, 49.496605719000065 ], [ -124.740401595999984, 49.496596324000031 ], [ -124.740428875999967, 49.496586907000079 ], [ -124.740456174999949, 49.496577511000055 ], [ -124.740483454999932, 49.496568092000068 ], [ -124.740510407999935, 49.496549707000057 ], [ -124.74053803399994, 49.496549279000057 ], [ -124.740565625999977, 49.496548864000019 ], [ -124.740592923999913, 49.496539468000037 ], [ -124.740620203999953, 49.496530050000025 ], [ -124.740647504999913, 49.496520655000026 ], [ -124.740688916999972, 49.496520037000025 ], [ -124.740716196, 49.496510619000098 ], [ -124.74075729899999, 49.496500998000073 ], [ -124.740784889999958, 49.496500583000064 ], [ -124.74081250099999, 49.49650019000007 ], [ -124.740853892999894, 49.496499551000042 ], [ -124.740867715999983, 49.496499347000061 ], [ -124.740909128999945, 49.496498730000084 ], [ -124.74093641, 49.496489311000069 ], [ -124.740977821999977, 49.496488693000096 ], [ -124.740991644999951, 49.496488490000104 ], [ -124.741046860999958, 49.49648764800002 ], [ -124.741088272999932, 49.496487029999983 ], [ -124.741129977999947, 49.496495393000068 ], [ -124.741212804999947, 49.496494157000065 ], [ -124.741267986999929, 49.496493327000053 ], [ -124.741309745999928, 49.496501699000106 ], [ -124.741351449999968, 49.496510061000031 ], [ -124.741407012999943, 49.496518210000069 ], [ -124.741448718999962, 49.496526571000103 ], [ -124.741490477999903, 49.496534944000103 ], [ -124.741546002999883, 49.496543103000064 ], [ -124.741573906999989, 49.496551691000064 ], [ -124.741615956999979, 49.496569045000037 ], [ -124.741657715999963, 49.496577417000076 ], [ -124.741699768000018, 49.496594769000062 ], [ -124.741741763999983, 49.496612113000047 ], [ -124.741783522999953, 49.496620485000072 ], [ -124.74182557599994, 49.496637838000041 ], [ -124.741854135, 49.496664420000094 ], [ -124.741896185, 49.496681773000084 ], [ -124.741896476999941, 49.496690754000042 ], [ -124.741910626, 49.496699518000071 ], [ -124.741966810999912, 49.496725671000085 ], [ -124.742009173999989, 49.496752027000113 ], [ -124.742064992999929, 49.496769167000096 ], [ -124.74212117899998, 49.496795321000093 ], [ -124.74217734399997, 49.496821450000013 ], [ -124.742247006999918, 49.496838410000088 ], [ -124.742289058999972, 49.496855763000077 ], [ -124.742358700999944, 49.496872700000068 ], [ -124.742414575999987, 49.496889850000038 ], [ -124.742470393999966, 49.496906990000099 ], [ -124.742540091999928, 49.496923938000116 ], [ -124.742609389999956, 49.496931883000137 ], [ -124.742665261999932, 49.496949032000082 ], [ -124.742734904999963, 49.496965970000119 ], [ -124.742804254999925, 49.496973926000109 ], [ -124.742873918999933, 49.496990885000038 ], [ -124.742929773999947, 49.497008013000105 ], [ -124.742999436999952, 49.497024971000023 ], [ -124.743055290999962, 49.497042099000069 ], [ -124.74312460799996, 49.497050067000089 ], [ -124.743180482999932, 49.49706721600009 ], [ -124.743222535999962, 49.497084569000023 ], [ -124.743278061999888, 49.497092728000034 ], [ -124.74333388499997, 49.497109868000116 ], [ -124.743376828999942, 49.497127304000067 ], [ -124.743433372999974, 49.497135324000133 ], [ -124.743490344999969, 49.49715248000004 ], [ -124.743533306999964, 49.497169939000031 ], [ -124.743575804999963, 49.49717821700002 ], [ -124.743646805999944, 49.497195095000102 ], [ -124.74579012199996, 49.497838074000093 ], [ -124.746166406, 49.497903595000054 ], [ -124.74648713299996, 49.497931600000065 ], [ -124.748139109999968, 49.497954050000061 ], [ -124.749247803999978, 49.497974462000052 ], [ -124.749627816999947, 49.497975024000056 ], [ -124.750887137999939, 49.497991333000066 ], [ -124.751165079999936, 49.498046155000047 ], [ -124.748989142999946, 49.498021098000073 ], [ -124.748977890999981, 49.498436273000095 ], [ -124.74422939099999, 49.498381440000095 ], [ -124.744212435999913, 49.499004689000046 ], [ -124.742851169999966, 49.49898893300012 ], [ -124.742833730999962, 49.499629233000078 ], [ -124.746470394999918, 49.499671290999984 ], [ -124.746451919999984, 49.500351546000026 ], [ -124.751052362999928, 49.500404575000033 ], [ -124.750954995999962, 49.50400270800008 ], [ -124.749379821999966, 49.503984574000086 ], [ -124.74937259799999, 49.504251165 ], [ -124.749307485999964, 49.506653942000106 ], [ -124.743788878999936, 49.506590227000075 ], [ -124.743819550999916, 49.505463380000059 ], [ -124.743157124999982, 49.505455714000107 ], [ -124.74317188699996, 49.504913580000064 ], [ -124.741340988, 49.504892368000128 ], [ -124.741365705999968, 49.503985976000102 ], [ -124.736800672999919, 49.503932953000096 ], [ -124.736842316999969, 49.502411371000079 ], [ -124.735610020999957, 49.502397026000068 ], [ -124.735658154999939, 49.500639842000048 ], [ -124.735595457, 49.500639111000091 ], [ -124.735507075000015, 49.503865294000029 ], [ -124.735261856999941, 49.503862438000091 ], [ -124.735234680999952, 49.504854130000062 ], [ -124.735428631999937, 49.504856390000057 ], [ -124.735422372999921, 49.50508484100007 ], [ -124.735794932, 49.505089181000081 ], [ -124.735787621999947, 49.505356075000044 ], [ -124.736285329999973, 49.505361869000062 ], [ -124.736284789999928, 49.505381634000067 ], [ -124.736879408, 49.505388553000067 ], [ -124.736868311999928, 49.505793997000076 ], [ -124.737259219999913, 49.505798545000076 ], [ -124.737254118999957, 49.505984977000054 ], [ -124.737749111999932, 49.505990733000047 ], [ -124.737737097999954, 49.506430022000089 ], [ -124.73829611799998, 49.506436519000076 ], [ -124.738286139999914, 49.506801526000089 ], [ -124.738972713999928, 49.506809503000021 ], [ -124.738954547, 49.507474398000035 ], [ -124.739805823999959, 49.507484283000103 ], [ -124.739789815999984, 49.508070562000093 ], [ -124.740780722999929, 49.508082059000088 ], [ -124.740772266999954, 49.50839197400007 ], [ -124.741648909999924, 49.508402138000093 ], [ -124.741623892999939, 49.509319541000131 ], [ -124.741710062999914, 49.509320539000065 ], [ -124.741707640999934, 49.50940939600013 ], [ -124.743225421999938, 49.509426975000103 ], [ -124.743211697999982, 49.509040852000112 ], [ -124.743822680999955, 49.509031641000092 ], [ -124.74445431299992, 49.509022117000065 ], [ -124.74446390699994, 49.509291835000063 ], [ -124.744878112999913, 49.50928558800004 ], [ -124.744897307999949, 49.509825026000058 ], [ -124.745311519, 49.509818777000064 ], [ -124.745369113999971, 49.511437092000051 ], [ -124.74495488899997, 49.511443342000121 ], [ -124.74498368299993, 49.512252499000056 ], [ -124.744569449999972, 49.512258748000129 ], [ -124.74457484599999, 49.512410459000058 ], [ -124.74457904400002, 49.512528468000077 ], [ -124.744380344999968, 49.512531464000048 ], [ -124.744356188, 49.513419248000034 ], [ -124.74149339799996, 49.513386105000073 ], [ -124.741494675999988, 49.513383392000044 ], [ -124.741494037999971, 49.513365420000063 ], [ -124.741507209999924, 49.513347222000029 ], [ -124.741520398999953, 49.513329047000141 ], [ -124.74151939699999, 49.513302062000079 ], [ -124.741532586999966, 49.513283887000092 ], [ -124.7415319629999, 49.513265880000105 ], [ -124.741544806, 49.513238713000106 ], [ -124.741544170999973, 49.51322074200003 ], [ -124.741557340999933, 49.513202545000055 ], [ -124.74155635599999, 49.513175582000066 ], [ -124.741569562999985, 49.513157372000073 ], [ -124.741568888999964, 49.51313941300009 ], [ -124.741581767999932, 49.513112233000072 ], [ -124.741581110999959, 49.513094238000072 ], [ -124.741594301999939, 49.513076064000096 ], [ -124.741593332999912, 49.513049066000072 ], [ -124.741606486999956, 49.513030904000047 ], [ -124.741605863999951, 49.513012896000092 ], [ -124.741604880999915, 49.512985934000078 ], [ -124.741617758999894, 49.512958755000049 ], [ -124.741630292999986, 49.512922585000126 ], [ -124.741629307999958, 49.51289562200003 ], [ -124.741642167999927, 49.51286842100005 ], [ -124.741640890999975, 49.512832477000124 ], [ -124.741653716999977, 49.512805288000038 ], [ -124.74165247499991, 49.512769332000047 ], [ -124.741665319999925, 49.51274216500012 ], [ -124.741677830999947, 49.512705973000038 ], [ -124.741676881999965, 49.512678998000084 ], [ -124.74167560799998, 49.512643055000119 ], [ -124.741688464999953, 49.512615853000028 ], [ -124.741686241, 49.512552933000059 ], [ -124.741698773999943, 49.512516764000104 ], [ -124.741696528999967, 49.512453821000094 ], [ -124.741695579999913, 49.512426846000096 ], [ -124.741694285000023, 49.512390879000101 ], [ -124.74169333499999, 49.512363904000026 ], [ -124.741692697999923, 49.51234593099999 ], [ -124.741678577999963, 49.512337153000033 ], [ -124.741677938999928, 49.512319181000088 ], [ -124.741677282999916, 49.51230118700007 ], [ -124.741676642999934, 49.512283215000082 ], [ -124.741676332999987, 49.512274211000012 ], [ -124.741676005999963, 49.512265243000094 ], [ -124.741675694999984, 49.512256239000109 ], [ -124.741674745999944, 49.512229263000073 ], [ -124.741660278999987, 49.512211495000102 ], [ -124.741659642999963, 49.512193522000075 ], [ -124.741659017999979, 49.512175515000081 ], [ -124.741658054999931, 49.512148575000062 ], [ -124.741643603999961, 49.512130770000041 ], [ -124.741643278999916, 49.512121801000056 ], [ -124.741628845999983, 49.512104020000073 ], [ -124.741627896999901, 49.512077044000044 ], [ -124.741599000999955, 49.51204149200003 ], [ -124.741584534999944, 49.512023723 ], [ -124.741570123999978, 49.512005963000064 ], [ -124.741555638999969, 49.511988172000038 ], [ -124.741541193999979, 49.511970426000062 ], [ -124.741526762999939, 49.511952643000015 ], [ -124.741498503999978, 49.511935064000056 ], [ -124.7414840389999, 49.511917295000096 ], [ -124.741455800999958, 49.511899737000093 ], [ -124.741441368999915, 49.511881956000082 ], [ -124.74141313, 49.511864399000075 ], [ -124.741398663999959, 49.511846630000029 ], [ -124.741370407999952, 49.511829051000049 ], [ -124.741342459999899, 49.511820475000093 ], [ -124.741328028999959, 49.511802694000082 ], [ -124.74129975699995, 49.511785149000055 ], [ -124.741271497999946, 49.511767570000039 ], [ -124.741257066999978, 49.511749789000099 ], [ -124.741229138999955, 49.511741234000105 ], [ -124.741200881999987, 49.511723656000122 ], [ -124.741172295999959, 49.511697107000025 ], [ -124.741130229999939, 49.511679754000092 ], [ -124.741101992, 49.51166219600001 ], [ -124.741059615999973, 49.511635839000093 ], [ -124.741017548999977, 49.511618486000103 ], [ -124.740975483999961, 49.511601131000063 ], [ -124.740933104999911, 49.511574773000063 ], [ -124.740891038999948, 49.511557419000027 ], [ -124.740849008999973, 49.511540051000033 ], [ -124.740806941999907, 49.511522698000086 ], [ -124.740764875999972, 49.511505343000046 ], [ -124.740722810999969, 49.511487989000109 ], [ -124.740680726999955, 49.511470613000022 ], [ -124.740638659999959, 49.511453258000053 ], [ -124.740596649999972, 49.511435913000085 ], [ -124.74055456399995, 49.511418536000157 ], [ -124.74051249899999, 49.511401182000043 ], [ -124.740470433999917, 49.511383828000135 ], [ -124.74042836699999, 49.511366474000141 ], [ -124.740386009999952, 49.511340138000058 ], [ -124.740358064999896, 49.511331562000038 ], [ -124.74032980600002, 49.511313982000033 ], [ -124.740301858999985, 49.511305406000112 ], [ -124.740273620999957, 49.511287849000027 ], [ -124.740245365, 49.511270270000125 ], [ -124.740217419999951, 49.511261694000069 ], [ -124.740189179999945, 49.511244137000062 ], [ -124.74016123399997, 49.511235561000021 ], [ -124.740132997000018, 49.511218005000032 ], [ -124.740105050999929, 49.511209427000068 ], [ -124.740076792999957, 49.511191849000014 ], [ -124.740048554999987, 49.511174292000142 ], [ -124.740020609999959, 49.511165716000114 ], [ -124.739992370999943, 49.511148157000029 ], [ -124.739964426, 49.511139582000077 ], [ -124.739936166999911, 49.511122003000047 ], [ -124.739907928999941, 49.511104446000097 ], [ -124.73987998399997, 49.511095870000084 ], [ -124.739851726999945, 49.511078290000064 ], [ -124.739823835, 49.511069723000034 ], [ -124.739795541999953, 49.511052156000034 ], [ -124.739767305999948, 49.511034600000094 ], [ -124.739739358999913, 49.511026023000042 ], [ -124.739711103, 49.511008444 ], [ -124.739683210999956, 49.510999877000046 ], [ -124.73965491899996, 49.510982311000078 ], [ -124.739626680999905, 49.510964754000057 ], [ -124.739598735999962, 49.510956177000018 ], [ -124.739570478999937, 49.510938598000088 ], [ -124.739542586999931, 49.510930031000093 ], [ -124.73951429499999, 49.510912464000079 ], [ -124.739458437999986, 49.510895300000051 ], [ -124.739402253999984, 49.510869166000084 ], [ -124.739346363999971, 49.510852014000058 ], [ -124.739290524999959, 49.510834871000107 ], [ -124.739234633999942, 49.510817719000045 ], [ -124.73916496799994, 49.510800778000053 ], [ -124.739109111999966, 49.510783612000111 ], [ -124.739053239999976, 49.510766482000136 ], [ -124.7389839, 49.51075851100007 ], [ -124.73892801, 49.510741358000089 ], [ -124.738872171999944, 49.510724215000039 ], [ -124.738802455, 49.510707264000082 ], [ -124.738746615999958, 49.510690121000032 ], [ -124.7386907599999, 49.510672957000082 ], [ -124.738634887999922, 49.510655826000075 ], [ -124.738579341999966, 49.510647664000039 ], [ -124.738509658999973, 49.510630701000068 ], [ -124.738453785999937, 49.510613570000082 ], [ -124.738397930999952, 49.510596405000115 ], [ -124.738342038999974, 49.510579252000085 ], [ -124.738286203999934, 49.51056210900007 ], [ -124.738230312999917, 49.510544956000054 ], [ -124.738174456999971, 49.510527790000076 ], [ -124.738118272999969, 49.510501655000084 ], [ -124.738062403999962, 49.510484526000049 ], [ -124.738006199999944, 49.510458369000027 ], [ -124.737950365999922, 49.510441225000093 ], [ -124.737894163999925, 49.510415068000036 ], [ -124.737837982, 49.510388934000034 ], [ -124.737782125999942, 49.51037176800002 ], [ -124.737725910999984, 49.510345646000104 ], [ -124.737683536, 49.510319288000098 ], [ -124.737627355000015, 49.510293154000031 ], [ -124.737557056999947, 49.510258240000113 ], [ -124.737486736999969, 49.51022330400005 ], [ -124.737416418999928, 49.510188368000044 ], [ -124.737359928, 49.510153231000089 ], [ -124.737289627999957, 49.510118317000078 ], [ -124.737232792, 49.51007418700005 ], [ -124.737162494999936, 49.51003927400005 ], [ -124.737105691999957, 49.509995132000107 ], [ -124.737035339999935, 49.50996020900007 ], [ -124.73697852299992, 49.509916103000116 ], [ -124.736964405, 49.509907324000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.982014890817819", "sL_AssetLoss": "2721.14", "sL_BldgLoss": "2672.2", "sL_StrLoss": "2405", "sL_NStrLoss": "267.2", "sL_ContLoss": "48.94", "geom_point": "0101000020E6100000E51756D8292D5FC05885F67F48C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.704185278999944, 49.513278874000093 ], [ -124.70399626499993, 49.512981490000101 ], [ -124.703985605999947, 49.512879888000043 ], [ -124.703631155999958, 49.512578299000019 ], [ -124.702561147999972, 49.511841531000037 ], [ -124.702181242999956, 49.511609579000016 ], [ -124.702116985999965, 49.511570351000039 ], [ -124.703229012999913, 49.511583638000054 ], [ -124.703206604999977, 49.511641994000094 ], [ -124.703608708999951, 49.512103488000072 ], [ -124.704016493999973, 49.512285800000015 ], [ -124.704063978999983, 49.512285416000076 ], [ -124.704197103999945, 49.512284309000052 ], [ -124.704595606999959, 49.511864201000087 ], [ -124.704661685999952, 49.511881311000103 ], [ -124.704667410999917, 49.511882798000073 ], [ -124.704859781, 49.511932603000027 ], [ -124.704897017999912, 49.512147595000087 ], [ -124.704426289999944, 49.512559207000088 ], [ -124.704405893999976, 49.512721596000048 ], [ -124.704960816999943, 49.513225707000046 ], [ -124.705570583999929, 49.513271302000106 ], [ -124.707166107999981, 49.513059095000088 ], [ -124.708467823999911, 49.5127515 ], [ -124.70945988599999, 49.512295692000038 ], [ -124.710682812999963, 49.511948771000071 ], [ -124.710679855999956, 49.512054572000039 ], [ -124.709848700999913, 49.512344204000065 ], [ -124.708435916, 49.513030594000092 ], [ -124.707075006999929, 49.514048892000098 ], [ -124.706348505999983, 49.514959002000083 ], [ -124.706385, 49.515642600000049 ], [ -124.705795600999977, 49.516190892000118 ], [ -124.704658185999961, 49.517647899000096 ], [ -124.704495294999944, 49.518107900000054 ], [ -124.704477384999933, 49.518765902000077 ], [ -124.705127691999976, 49.519987891000035 ], [ -124.705357110999927, 49.521064598000073 ], [ -124.705903792999948, 49.522027415000061 ], [ -124.70587919899999, 49.522908885000078 ], [ -124.705973207999961, 49.523232199000049 ], [ -124.707320890999938, 49.524273315000123 ], [ -124.707795876999981, 49.525201893 ], [ -124.70798109, 49.525370007000092 ], [ -124.708143904999986, 49.52620036400009 ], [ -124.708383806999947, 49.527423709000111 ], [ -124.708776713999939, 49.528303593000047 ], [ -124.708220791999935, 49.528296983000054 ], [ -124.708191615999937, 49.528227731000094 ], [ -124.70817530399998, 49.528156002000074 ], [ -124.708145177999938, 49.528084492000097 ], [ -124.708114712999986, 49.52800399100007 ], [ -124.708098399999983, 49.527932260000092 ], [ -124.708081464999964, 49.527842557000014 ], [ -124.708065118999954, 49.527770839000077 ], [ -124.70804850199994, 49.52769010500004 ], [ -124.708031871999978, 49.527609406000067 ], [ -124.707987607999954, 49.52752909 ], [ -124.707943027999988, 49.527439805000121 ], [ -124.707912278999984, 49.527350321000064 ], [ -124.70786833699999, 49.527278976000019 ], [ -124.707837586999943, 49.527189493000066 ], [ -124.70780715799999, 49.527108979000104 ], [ -124.707806819000012, 49.527099987000064 ], [ -124.707763199999931, 49.527037667000052 ], [ -124.707733359999935, 49.526975139000079 ], [ -124.707702628999954, 49.52688562100014 ], [ -124.70767247, 49.52681412400004 ], [ -124.707656497999977, 49.526751384000043 ], [ -124.707640152999957, 49.526679668000092 ], [ -124.70762384199999, 49.526607939000016 ], [ -124.707607834999962, 49.526545212000073 ], [ -124.707591524999913, 49.526473483000046 ], [ -124.707574893999961, 49.52639278400008 ], [ -124.707572414999944, 49.526320856000048 ], [ -124.707569545999903, 49.526239926000102 ], [ -124.707567065999967, 49.52616799900008 ], [ -124.707550721999922, 49.52609628200004 ], [ -124.707550467999909, 49.526088325000032 ], [ -124.707548242999948, 49.526024353000011 ], [ -124.707531932999956, 49.525952624000112 ], [ -124.707542608999944, 49.52586251500005 ], [ -124.707525980999947, 49.525781817000087 ], [ -124.707509046999974, 49.525692114000059 ], [ -124.70749302099992, 49.525629366000054 ], [ -124.707476391999947, 49.525548666000105 ], [ -124.707445321999941, 49.525450158000083 ], [ -124.707400744999973, 49.525360872000064 ], [ -124.707357128999945, 49.52529855300007 ], [ -124.707299056999901, 49.525218458000076 ], [ -124.707241642999946, 49.525156323000026 ], [ -124.70719799299998, 49.525094016000033 ], [ -124.707154357999968, 49.525031674000054 ], [ -124.7070825099999, 49.524951787000099 ], [ -124.707010944999936, 49.524880881000115 ], [ -124.706940002999914, 49.524827948000038 ], [ -124.706855251999968, 49.52477523500005 ], [ -124.70677019499999, 49.524713519000073 ], [ -124.706727827999941, 49.524687145000023 ], [ -124.706656566999982, 49.524625243000081 ], [ -124.706571510999979, 49.524563526000037 ], [ -124.706500908999914, 49.524519584000082 ], [ -124.706430274999931, 49.524475656000057 ], [ -124.706345503999913, 49.524422920000092 ], [ -124.706274866999976, 49.524378992000059 ], [ -124.70617696, 49.524344459000112 ], [ -124.706106360999982, 49.524300518000125 ], [ -124.706035724999964, 49.524256588000057 ], [ -124.705950974999922, 49.524203875000133 ], [ -124.70578213099999, 49.524116409000101 ], [ -124.705697699999916, 49.52407266500007 ], [ -124.70565467599999, 49.524028330000078 ], [ -124.705640221999914, 49.524010554000029 ], [ -124.70559661, 49.523948234000045 ], [ -124.705538861, 49.523877107000011 ], [ -124.705481418999966, 49.523814985000044 ], [ -124.705437522999901, 49.523743683000134 ], [ -124.705393552999965, 49.523672348000112 ], [ -124.705349602999917, 49.523601038000088 ], [ -124.705319485999951, 49.523529528000054 ], [ -124.705289368999971, 49.523458018000149 ], [ -124.705259232999964, 49.523386486000099 ], [ -124.70524292499999, 49.523314756000062 ], [ -124.705211881999944, 49.52321626900001 ], [ -124.705181122999974, 49.523126765000093 ], [ -124.705150364999938, 49.523037260000102 ], [ -124.705133437999933, 49.522947558000041 ], [ -124.705102698999923, 49.522858076000034 ], [ -124.705085750999956, 49.522768352000078 ], [ -124.70505471, 49.522669863000033 ], [ -124.705051863, 49.522588959000068 ], [ -124.705034936999951, 49.522499256000096 ], [ -124.70501829399997, 49.522418535000064 ], [ -124.705001365999976, 49.522328833000074 ], [ -124.704984136999968, 49.522230127000078 ], [ -124.704967174999922, 49.522140437000061 ], [ -124.704964061999959, 49.522050515000068 ], [ -124.704933302999933, 49.521961011000016 ], [ -124.704888768, 49.521871713000067 ], [ -124.704858315, 49.521791213000071 ], [ -124.70485516599993, 49.521701304000025 ], [ -124.704838238999926, 49.521611602000121 ], [ -124.704807819999928, 49.521531089000156 ], [ -124.70479151499994, 49.521459359000062 ], [ -124.704761062999964, 49.521378859000038 ], [ -124.704753017999977, 49.521336310999985 ], [ -124.704744116999976, 49.521289133000018 ], [ -124.704741325999962, 49.52120823900006 ], [ -124.704724381999938, 49.521118514000115 ], [ -124.70469362399993, 49.521029009000053 ], [ -124.704677003, 49.520948313000048 ], [ -124.704646888999974, 49.5208768030001 ], [ -124.704630246999983, 49.520796083000057 ], [ -124.704599828999974, 49.520715570000085 ], [ -124.704582903999977, 49.520625868000067 ], [ -124.704552768999989, 49.520554337000092 ], [ -124.704541581999948, 49.520500105000053 ], [ -124.704536149, 49.520473639 ], [ -124.704535506999932, 49.520455644000066 ], [ -124.704519843999933, 49.520401910000011 ], [ -124.704517033999977, 49.520320992000094 ], [ -124.704500699000036, 49.520249277000083 ], [ -124.704498204999979, 49.520177328000045 ], [ -124.704464941999944, 49.520015910000055 ], [ -124.704448321999948, 49.519935213000089 ], [ -124.704431716, 49.519854479000124 ], [ -124.704415413999982, 49.519782751000101 ], [ -124.704399414999941, 49.51972002600008 ], [ -124.704355807999889, 49.519657706000032 ], [ -124.704312147999971, 49.519595376000034 ], [ -124.704268542999898, 49.519533056000078 ], [ -124.704225222999952, 49.519479718000092 ], [ -124.704167787999921, 49.519417595000036 ], [ -124.704137706999958, 49.519346073000115 ], [ -124.7040796499999, 49.519265978000114 ], [ -124.704035404999956, 49.519185664000091 ], [ -124.70400495599992, 49.519105163000063 ], [ -124.703975161999921, 49.519042624000114 ], [ -124.703944408, 49.518953120000049 ], [ -124.703913992999915, 49.518872607000084 ], [ -124.703883880999925, 49.518801098000068 ], [ -124.703840241999927, 49.518738791 ], [ -124.703796617999942, 49.518676449000047 ], [ -124.703766506999969, 49.518604940000046 ], [ -124.703736376999942, 49.518533408000039 ], [ -124.703734189000016, 49.518470464000075 ], [ -124.703731717999986, 49.51839853900001 ], [ -124.70372890799996, 49.518317622000026 ], [ -124.703726403999966, 49.518245708000087 ], [ -124.703724216999959, 49.518182763000027 ], [ -124.703734900999933, 49.518092658000064 ], [ -124.703732375999934, 49.518020721000077 ], [ -124.703730207999953, 49.51795780100008 ], [ -124.703741511999951, 49.517885668000062 ], [ -124.703752816999923, 49.51781353399999 ], [ -124.703764122999971, 49.517741401000102 ], [ -124.703802748, 49.51765988300005 ], [ -124.70384137399995, 49.517578363000048 ], [ -124.703845513999937, 49.517568043000082 ], [ -124.703866790999925, 49.517515014000011 ], [ -124.703905416999959, 49.517433495000034 ], [ -124.70392960599996, 49.517334166000055 ], [ -124.703968232999927, 49.517252647000085 ], [ -124.704006518999975, 49.517162137000113 ], [ -124.704031349999951, 49.517080802000052 ], [ -124.704056146999932, 49.516999482000053 ], [ -124.704080940999987, 49.516918158000145 ], [ -124.70407841699992, 49.516846225000045 ], [ -124.704089754999984, 49.516774079000065 ], [ -124.704100738999955, 49.516692978000052 ], [ -124.704100437999969, 49.516683973000042 ], [ -124.704113624999948, 49.516665781000064 ], [ -124.704124307999933, 49.516575676000109 ], [ -124.704135915, 49.516512547000104 ], [ -124.704147217999946, 49.516440414000051 ], [ -124.704172667999927, 49.51637705300007 ], [ -124.704183991999969, 49.516304942000026 ], [ -124.704209409999947, 49.516241594000029 ], [ -124.704248350999947, 49.51616904400008 ], [ -124.704286974999931, 49.51608752500006 ], [ -124.704311464999947, 49.515997200000101 ], [ -124.704336564999934, 49.51592488200005 ], [ -124.704347561999938, 49.515843745000055 ], [ -124.704372356999897, 49.515762425000055 ], [ -124.704397185999966, 49.515681091000076 ], [ -124.704436111999911, 49.515608576000034 ], [ -124.704460939999962, 49.515527243000051 ], [ -124.704485734999977, 49.515445921000037 ], [ -124.704510845999934, 49.515373569000062 ], [ -124.704522148999928, 49.515301436000044 ], [ -124.704537102999922, 49.515224314000129 ], [ -124.704537198999958, 49.515147148000061 ], [ -124.704552150999973, 49.515060378000037 ], [ -124.704536839999918, 49.514277361000048 ], [ -124.704185278999944, 49.513278874000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.964081486776269", "sL_AssetLoss": "3357.6", "sL_BldgLoss": "3237", "sL_StrLoss": "2780", "sL_NStrLoss": "457", "sL_ContLoss": "120.6", "geom_point": "0101000020E6100000C283EA0F622C5FC0122A1F1F00C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.69121861299999, 49.545343512000038 ], [ -124.696741783999983, 49.545409895 ], [ -124.696709540999947, 49.546550635000052 ], [ -124.696332793999929, 49.546915387000098 ], [ -124.695747499000035, 49.547228688000075 ], [ -124.695024809999921, 49.547482306000163 ], [ -124.694645583999971, 49.547721497000083 ], [ -124.693422704999975, 49.548719897000133 ], [ -124.693212005999939, 49.548966574000119 ], [ -124.691116482999959, 49.548941355000075 ], [ -124.69121861299999, 49.545343512000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.960652646566486", "sL_AssetLoss": "5197.3", "sL_BldgLoss": "4992.8", "sL_StrLoss": "4141.8", "sL_NStrLoss": "851", "sL_ContLoss": "204.5", "geom_point": "0101000020E610000014E304BFF02A5FC0C9F98B6E77BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.674372808999976, 49.497960418000027 ], [ -124.67483091299999, 49.497091704000105 ], [ -124.674791136999886, 49.497124235000115 ], [ -124.674723019999973, 49.497152231000094 ], [ -124.674599126999979, 49.497163013000055 ], [ -124.674476084999981, 49.497200760000055 ], [ -124.674365979999948, 49.497211362000058 ], [ -124.67425615199997, 49.497230944000101 ], [ -124.674145728, 49.497232518000068 ], [ -124.674034960999947, 49.49722513800004 ], [ -124.673924557999896, 49.497226736000108 ], [ -124.673827923999937, 49.497228130000046 ], [ -124.673730978999941, 49.497220556000038 ], [ -124.673620576999937, 49.49722215300006 ], [ -124.673523943999925, 49.49722354700004 ], [ -124.673510122999986, 49.497223741000035 ], [ -124.673413485999987, 49.497225134000082 ], [ -124.673275127999958, 49.497218149000084 ], [ -124.673025460999938, 49.497185785000035 ], [ -124.672928827999939, 49.497187179000058 ], [ -124.672790171999964, 49.497171189 ], [ -124.672665634999987, 49.497164010000127 ], [ -124.672513156999926, 49.497148213000088 ], [ -124.67238803, 49.49712302800004 ], [ -124.672276964999952, 49.497106642000041 ], [ -124.672249372999929, 49.497107038000067 ], [ -124.672152739999902, 49.497108431000129 ], [ -124.672028498999936, 49.497110254000077 ], [ -124.671890451999943, 49.497112234000042 ], [ -124.671765916999988, 49.497105054 ], [ -124.671640766999971, 49.497079845000066 ], [ -124.671516197999935, 49.497072676000094 ], [ -124.671405793999938, 49.497074271000059 ], [ -124.671309162999933, 49.497075663000025 ], [ -124.671240119999965, 49.497076660000097 ], [ -124.671198725999929, 49.497077270000034 ], [ -124.6710745, 49.497079057000057 ], [ -124.67093645199999, 49.49708103600009 ], [ -124.670839837999949, 49.497082451000033 ], [ -124.670689219999986, 49.497120611000064 ], [ -124.670579389999929, 49.497140188000088 ], [ -124.670483659999931, 49.497168555000073 ], [ -124.670373532999932, 49.49717912799999 ], [ -124.670249933999955, 49.497198909000076 ], [ -124.670126300000021, 49.497218701000108 ], [ -124.670002351999983, 49.497229467000047 ], [ -124.669892852, 49.497258035000115 ], [ -124.669796512999966, 49.497268429000087 ], [ -124.669686405999983, 49.497279026000101 ], [ -124.669576574999965, 49.497298602000022 ], [ -124.669548983999931, 49.497298996000062 ], [ -124.669438857, 49.497309570000077 ], [ -124.669300808999949, 49.497311548000063 ], [ -124.669068001999946, 49.497368896000111 ], [ -124.668943446999918, 49.497361691000052 ], [ -124.668804757000018, 49.497345708000054 ], [ -124.668652628999951, 49.497338918 ], [ -124.668486381999941, 49.49732331700006 ], [ -124.668334198999958, 49.497316517000073 ], [ -124.668195544999946, 49.497300522000053 ], [ -124.668043120999982, 49.497284728000061 ], [ -124.667890331999942, 49.497259956000107 ], [ -124.667710559999989, 49.497253550000025 ], [ -124.667558135999954, 49.497237755000057 ], [ -124.667447073999966, 49.497221363000044 ], [ -124.667308438999953, 49.497205390000055 ], [ -124.667183293999926, 49.497180174000064 ], [ -124.667044034999947, 49.497146205000043 ], [ -124.666918544999987, 49.497112034000061 ], [ -124.666778990999916, 49.497069061000033 ], [ -124.66666732500002, 49.497034698000057 ], [ -124.666652164999931, 49.49703197200008 ], [ -124.666738094999943, 49.494056864000086 ], [ -124.671756009999953, 49.494118390000089 ], [ -124.671759899999969, 49.493983190000044 ], [ -124.67271645699999, 49.493994892000053 ], [ -124.673140631999928, 49.494505081000028 ], [ -124.67319820099999, 49.494574297000099 ], [ -124.674389414999951, 49.495088401000011 ], [ -124.675578028999965, 49.496032573000029 ], [ -124.67627930699993, 49.496589599000096 ], [ -124.67702918399999, 49.496713500000105 ], [ -124.677349591999956, 49.496852992000079 ], [ -124.677584780999908, 49.497219091000076 ], [ -124.677519194999931, 49.497362910000057 ], [ -124.677160193999967, 49.49693708700007 ], [ -124.676852684999957, 49.496805998000085 ], [ -124.676230305999979, 49.496788892000048 ], [ -124.675669700999961, 49.496589610000065 ], [ -124.675395388999974, 49.49663940600005 ], [ -124.67526239299994, 49.496757611000113 ], [ -124.675092692999925, 49.497039616000087 ], [ -124.675241296, 49.497378605000108 ], [ -124.674894099999989, 49.497734591000054 ], [ -124.674780922999943, 49.498438202000074 ], [ -124.674986211999951, 49.498794192000091 ], [ -124.675585301999931, 49.499325487000085 ], [ -124.676750800999926, 49.49993789400007 ], [ -124.676912968999957, 49.499981702000063 ], [ -124.676431760999961, 49.499975835000072 ], [ -124.676148538999911, 49.499775194000065 ], [ -124.674783084999987, 49.498807842000154 ], [ -124.674372808999976, 49.497960418000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127829500", "BldgCostT": "85210000", "sL_LossRatio": "0.956694143930287", "sL_AssetLoss": "160290.1", "sL_BldgLoss": "153348.6", "sL_StrLoss": "126421.7", "sL_NStrLoss": "26926.9", "sL_ContLoss": "6941.5", "geom_point": "0101000020E61000004147ED76642A5FC0E7376D4231C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.678695005999941, 49.551444391000103 ], [ -124.677993886, 49.55118519399999 ], [ -124.67762961699999, 49.551190557000027 ], [ -124.677124292999977, 49.551198003000124 ], [ -124.676109685999933, 49.551049894000052 ], [ -124.675278514999931, 49.551044191000074 ], [ -124.67490978899994, 49.551122507000045 ], [ -124.674197206999921, 49.55094310600002 ], [ -124.67284409399997, 49.550990091000045 ], [ -124.672033605999943, 49.550873011000057 ], [ -124.67063588699996, 49.550671098000095 ], [ -124.670386396999973, 49.550673899000138 ], [ -124.67007711899997, 49.550921698000096 ], [ -124.669720092999967, 49.550998607000054 ], [ -124.668762410999946, 49.550904601000042 ], [ -124.667498291999948, 49.551148200000092 ], [ -124.666920791, 49.550804895000041 ], [ -124.666677404999945, 49.550134106000058 ], [ -124.666648512999942, 49.549721107000011 ], [ -124.66643090499997, 49.549436297000049 ], [ -124.666191548999947, 49.548682833000093 ], [ -124.66615221099994, 49.548559005000079 ], [ -124.665727184999952, 49.547862509000105 ], [ -124.664946711999931, 49.547244407000122 ], [ -124.663844676999986, 49.546127799000082 ], [ -124.663521284999945, 49.545996791000107 ], [ -124.662997516999951, 49.545995393000084 ], [ -124.662199353999981, 49.546084687000132 ], [ -124.662213847999979, 49.545585099000043 ], [ -124.661979737999943, 49.545588461000108 ], [ -124.661943129999912, 49.544509546000029 ], [ -124.662245178999967, 49.544505206000039 ], [ -124.662300621999947, 49.542594084 ], [ -124.662458740999966, 49.542596030000027 ], [ -124.662488374999967, 49.541574384000043 ], [ -124.662789346999958, 49.541578089000026 ], [ -124.662807699999973, 49.540945191000127 ], [ -124.663036367999922, 49.540948005000118 ], [ -124.663044621999987, 49.540663292000048 ], [ -124.661250744999961, 49.540641203000114 ], [ -124.661289874999952, 49.539293301000072 ], [ -124.661152223999963, 49.539291605000066 ], [ -124.661238187, 49.536330459000034 ], [ -124.66120200499999, 49.536330013000097 ], [ -124.661202641, 49.536308118000143 ], [ -124.66087287299996, 49.536304053000066 ], [ -124.660813332999936, 49.538354465000069 ], [ -124.655323469999942, 49.538286656000068 ], [ -124.655234387999954, 49.541341596000095 ], [ -124.654978320999973, 49.541338427 ], [ -124.654949058999961, 49.542341659000094 ], [ -124.654881300999975, 49.542298094000017 ], [ -124.65401120199995, 49.541932089000071 ], [ -124.653367705999969, 49.541321086000053 ], [ -124.652855100999943, 49.541265600000045 ], [ -124.652430409999937, 49.541370987000036 ], [ -124.65213959499999, 49.541348198000073 ], [ -124.651693265999981, 49.541017205000031 ], [ -124.651615304999936, 49.540959407000052 ], [ -124.651383487999965, 49.540655990000104 ], [ -124.650015386999954, 49.540244398000027 ], [ -124.649227792999937, 49.54026441300006 ], [ -124.648948114999953, 49.540196005000055 ], [ -124.648136403999942, 49.540298509000067 ], [ -124.647694771000019, 49.540238989000052 ], [ -124.647470813999945, 49.540208806000081 ], [ -124.646292683999889, 49.540513601000107 ], [ -124.645788418999928, 49.540735798000057 ], [ -124.644689098999905, 49.540553495000054 ], [ -124.644098210999957, 49.540661696000072 ], [ -124.643761486999935, 49.540882507000049 ], [ -124.643687794999948, 49.54090413500009 ], [ -124.643116513999971, 49.541071902000056 ], [ -124.642443593999985, 49.541603103000021 ], [ -124.642004598999932, 49.541690008000046 ], [ -124.641590584999946, 49.541308304000076 ], [ -124.641215777999932, 49.541278394000109 ], [ -124.641276203999922, 49.541007804000031 ], [ -124.641140203999953, 49.540631806000114 ], [ -124.640797909999961, 49.539925390000114 ], [ -124.640292699999975, 49.539248903000072 ], [ -124.639902802999984, 49.538992107000141 ], [ -124.639908736999942, 49.538790915000057 ], [ -124.640927708999968, 49.538803666000085 ], [ -124.640935611999907, 49.538535540000034 ], [ -124.642076356999937, 49.53854980400007 ], [ -124.642086084999931, 49.538219468000108 ], [ -124.643923165999965, 49.538242413000056 ], [ -124.643930323999925, 49.537999013000089 ], [ -124.645804732999977, 49.538022393000055 ], [ -124.645811660999982, 49.537786460000071 ], [ -124.646241009999969, 49.537791811000083 ], [ -124.64625760199999, 49.537226591000078 ], [ -124.645882366, 49.537221914000057 ], [ -124.645887376999923, 49.53705126700001 ], [ -124.643120371999942, 49.537016743000031 ], [ -124.64322622099999, 49.533418884000099 ], [ -124.64390047299996, 49.53342730300006 ], [ -124.64394864, 49.531789028000048 ], [ -124.64395039, 49.531729497000121 ], [ -124.644522520999914, 49.531736638000069 ], [ -124.644531284999942, 49.531438410000121 ], [ -124.64480749399992, 49.531441856000107 ], [ -124.644831519999983, 49.530624116000126 ], [ -124.64610004499994, 49.530639934000057 ], [ -124.646100570999977, 49.530622048000069 ], [ -124.646836444999948, 49.530631216000053 ], [ -124.646882156999979, 49.529073003000086 ], [ -124.646494415999953, 49.529078523000088 ], [ -124.646467231999949, 49.5282693260001 ], [ -124.648124784999965, 49.528245722000051 ], [ -124.648133854999969, 49.528515454000051 ], [ -124.64819930799996, 49.528514521000062 ], [ -124.648548245999962, 49.528509550000109 ], [ -124.648556665999976, 49.528759887000014 ], [ -124.649340732, 49.528769639000075 ], [ -124.649370408999985, 49.527756121000024 ], [ -124.650347326999963, 49.527768264000038 ], [ -124.65035287799995, 49.527578560000045 ], [ -124.648930917999934, 49.527560881000028 ], [ -124.648935410999925, 49.527694448000048 ], [ -124.648215721999961, 49.52770470500009 ], [ -124.647277876999937, 49.52771806300013 ], [ -124.647271900999925, 49.527540232000028 ], [ -124.646229770999923, 49.527527248000098 ], [ -124.646275687999918, 49.52596261300004 ], [ -124.645919132999936, 49.525958168000045 ], [ -124.645914422999965, 49.526118569000097 ], [ -124.640393636999946, 49.526049601000032 ], [ -124.640394950999934, 49.526005020000078 ], [ -124.638799988999963, 49.525985042000052 ], [ -124.63900758699999, 49.525857804000061 ], [ -124.639023944999963, 49.52584777600002 ], [ -124.639176116999963, 49.525754507000038 ], [ -124.640172294999957, 49.524912815000057 ], [ -124.640252200999925, 49.524461294000098 ], [ -124.63961069199999, 49.523831814000104 ], [ -124.639487979999927, 49.523464395000111 ], [ -124.638476994999934, 49.523038503000052 ], [ -124.637515595999915, 49.52235071000009 ], [ -124.63723609299997, 49.522236707000054 ], [ -124.636991015999968, 49.521926202000017 ], [ -124.63706750099999, 49.521745405000061 ], [ -124.637697908999911, 49.521628599000103 ], [ -124.6386001199999, 49.521759606000032 ], [ -124.639185198999925, 49.52227229100005 ], [ -124.63968650299995, 49.522373391000023 ], [ -124.64034711699999, 49.522715299000019 ], [ -124.640526394999981, 49.522712394000081 ], [ -124.64118350399994, 49.522533009000107 ], [ -124.642119594999883, 49.522014497000058 ], [ -124.642924803999961, 49.521292484000043 ], [ -124.643107207999961, 49.52095778500005 ], [ -124.6431799099999, 49.521064600000066 ], [ -124.643619014999899, 49.51973579200007 ], [ -124.643398697999913, 49.518120792000097 ], [ -124.643222800999922, 49.517861496000116 ], [ -124.642422023, 49.517432904000081 ], [ -124.64166230899994, 49.516642397000112 ], [ -124.641402997999975, 49.516313404000087 ], [ -124.64124680799992, 49.51574938600006 ], [ -124.64098651599997, 49.515393397000032 ], [ -124.640165482999976, 49.514837991000086 ], [ -124.639791922999962, 49.514402105000073 ], [ -124.639042115999956, 49.513873805000074 ], [ -124.63774868699997, 49.513171604000014 ], [ -124.635179399999942, 49.512002297000024 ], [ -124.633405008999915, 49.511379998000095 ], [ -124.632895699, 49.511018189000048 ], [ -124.631617511999963, 49.510407204000096 ], [ -124.631132901999948, 49.509937297000043 ], [ -124.630928303999923, 49.509588311000059 ], [ -124.631160702999978, 49.509514298000056 ], [ -124.631882515999934, 49.509621101000022 ], [ -124.632393011999952, 49.509613988000055 ], [ -124.633187498, 49.50939460700004 ], [ -124.633922990999949, 49.509088413000079 ], [ -124.635030209999911, 49.508343584000059 ], [ -124.636054010999942, 49.507141502000053 ], [ -124.636505320999959, 49.506973503000033 ], [ -124.637154918999954, 49.506568995000073 ], [ -124.637380204999928, 49.506331200000083 ], [ -124.638085697999912, 49.505908199000061 ], [ -124.638445396999927, 49.505525 ], [ -124.638451185999926, 49.505299989000051 ], [ -124.638064921999941, 49.504855702000071 ], [ -124.637754306, 49.504697586000084 ], [ -124.637241405999987, 49.504606400000064 ], [ -124.636444087999905, 49.504320194000059 ], [ -124.636187719999938, 49.504080905000073 ], [ -124.63609379699993, 49.503759005000106 ], [ -124.635813418999973, 49.503663596000067 ], [ -124.635572207999985, 49.503469891000087 ], [ -124.63555759899999, 49.503011290000046 ], [ -124.635724774999986, 49.502637455000055 ], [ -124.635763924999978, 49.502549902000084 ], [ -124.63556000199992, 49.502282112000032 ], [ -124.635322413999958, 49.502168208000086 ], [ -124.63515780299997, 49.501793613000046 ], [ -124.634639107999988, 49.501548693000089 ], [ -124.633628906999945, 49.501473200000078 ], [ -124.633325691999971, 49.501331543000049 ], [ -124.633524063999985, 49.501334042000025 ], [ -124.633536812999921, 49.500903455000135 ], [ -124.633698200999959, 49.500905486000171 ], [ -124.63372178899999, 49.500108643000097 ], [ -124.633857686999932, 49.500076008000057 ], [ -124.63400342099996, 49.49998815500004 ], [ -124.634708967999956, 49.499997032000067 ], [ -124.634709019999946, 49.499995282000086 ], [ -124.634885713999935, 49.499997504000092 ], [ -124.636013686999988, 49.500548889000058 ], [ -124.636827090999944, 49.501319389000045 ], [ -124.637314794999938, 49.501466112000095 ], [ -124.638324181, 49.501468901000116 ], [ -124.639560615999983, 49.501263802000032 ], [ -124.640500214999918, 49.500907808000129 ], [ -124.641027002, 49.500540305000058 ], [ -124.641384213999942, 49.500058903000124 ], [ -124.642268496999975, 49.499650189000107 ], [ -124.642614311999964, 49.499231488000085 ], [ -124.643872007999931, 49.498862608000074 ], [ -124.645454891, 49.497895613000026 ], [ -124.645891884, 49.497746 ], [ -124.646948900999973, 49.497515306000075 ], [ -124.648807311999974, 49.49734439499999 ], [ -124.650437399999973, 49.496996901000102 ], [ -124.650846293999933, 49.496830290000069 ], [ -124.65166230899996, 49.496854494000054 ], [ -124.652100989999923, 49.496767611000031 ], [ -124.6524811889999, 49.496572501000053 ], [ -124.653130280999932, 49.496572501000053 ], [ -124.65350100299996, 49.496485602000106 ], [ -124.653535748999957, 49.496462389000087 ], [ -124.655079582999988, 49.496481530000047 ], [ -124.655093643999948, 49.495998879000076 ], [ -124.659762785999973, 49.496056635000102 ], [ -124.659844815999961, 49.493231090000123 ], [ -124.660264260999938, 49.493236269000064 ], [ -124.660276123999964, 49.4928275 ], [ -124.665792967999948, 49.492895462000014 ], [ -124.665688971999927, 49.496493555000029 ], [ -124.66526949699994, 49.496488398000082 ], [ -124.665258638999958, 49.496863960000013 ], [ -124.665196765999923, 49.496839993000052 ], [ -124.66509863099995, 49.496796432000032 ], [ -124.66500049299998, 49.496752871000062 ], [ -124.664915830999959, 49.496700106000041 ], [ -124.664831793999909, 49.496665334000085 ], [ -124.664761819999953, 49.496639363000043 ], [ -124.664733933999983, 49.496630753000076 ], [ -124.664692209999956, 49.496622371000065 ], [ -124.66461613, 49.496615221000091 ], [ -124.664609103999979, 49.496614560000125 ], [ -124.664484570999917, 49.496607370000099 ], [ -124.664360313999978, 49.496609163000102 ], [ -124.66426368, 49.496610547000053 ], [ -124.664125359999943, 49.496603537000119 ], [ -124.664001100999883, 49.496605327000111 ], [ -124.663863368999955, 49.496616323000104 ], [ -124.66372532099993, 49.496618292000043 ], [ -124.663587602999954, 49.496629251000101 ], [ -124.663408456999932, 49.496640831000029 ], [ -124.663229307999956, 49.496652410000102 ], [ -124.663036337000023, 49.49666418100005 ], [ -124.662843696, 49.496684943000105 ], [ -124.66269246799996, 49.496705118000172 ], [ -124.662499826000015, 49.496725879000046 ], [ -124.662348577999964, 49.496746031000079 ], [ -124.662169465999938, 49.496757597000041 ], [ -124.662017908999971, 49.49676878000006 ], [ -124.661880155999981, 49.496779752000059 ], [ -124.661728631999921, 49.496790922000073 ], [ -124.661577076999919, 49.496802106000118 ], [ -124.661411434999977, 49.496804465000054 ], [ -124.661287523999974, 49.49681526500013 ], [ -124.661163574999989, 49.4968260200001 ], [ -124.661039665, 49.496836821000095 ], [ -124.660902218999951, 49.49685675700001 ], [ -124.660626765999936, 49.496878705000064 ], [ -124.660489029999965, 49.496889696000068 ], [ -124.660365371999887, 49.496909454000033 ], [ -124.660254970999986, 49.496911034000078 ], [ -124.660144826999911, 49.49692163400006 ], [ -124.66002060299995, 49.496923405000118 ], [ -124.65991014599993, 49.496924977000099 ], [ -124.659758314999962, 49.496927177000053 ], [ -124.65963409099993, 49.496928950000061 ], [ -124.659523359999966, 49.496921540000137 ], [ -124.659385605999987, 49.496932507000075 ], [ -124.659233753999928, 49.496934683000084 ], [ -124.659109219999948, 49.496927488000068 ], [ -124.658971464999951, 49.496938453000091 ], [ -124.65886106499994, 49.496940034000069 ], [ -124.658737131999942, 49.496950808000157 ], [ -124.658571751999972, 49.496962179000107 ], [ -124.65848894, 49.496963366000088 ], [ -124.658295691999953, 49.496966147000123 ], [ -124.658199059999959, 49.496967526000091 ], [ -124.658047208999946, 49.496969701000083 ], [ -124.657909485999966, 49.496980652000069 ], [ -124.657771751, 49.49699164 ], [ -124.657633703999934, 49.496993601000106 ], [ -124.657523558999955, 49.497004196000091 ], [ -124.65738553099996, 49.497006178000056 ], [ -124.65728889799999, 49.49700755600005 ], [ -124.657151174999953, 49.497018507000092 ], [ -124.656999616999926, 49.497029684000061 ], [ -124.65683399699995, 49.497032057000098 ], [ -124.656668339999953, 49.497034444000064 ], [ -124.65651681699994, 49.497045607000054 ], [ -124.656365236999932, 49.497056759000024 ], [ -124.656089179, 49.497060722000114 ], [ -124.655965245999951, 49.497071492000053 ], [ -124.655840986999948, 49.497073273000126 ], [ -124.655744351999928, 49.497074650000073 ], [ -124.655730549999987, 49.497074863000115 ], [ -124.655564581999954, 49.497068221000077 ], [ -124.655455089999975, 49.497096796000072 ], [ -124.655317934, 49.497125728000057 ], [ -124.6551802339999, 49.497136698000126 ], [ -124.655042769, 49.49715666200008 ], [ -124.654905338999939, 49.497176613000143 ], [ -124.654754105999928, 49.497196777000042 ], [ -124.654616675999961, 49.497216728000048 ], [ -124.654493068999955, 49.497236487000066 ], [ -124.654369701999926, 49.497265241000022 ], [ -124.654246074999904, 49.49728497800001 ], [ -124.65410893499994, 49.497313932000068 ], [ -124.65401292199999, 49.497333300000044 ], [ -124.653875782999961, 49.497362253000048 ], [ -124.653752466999933, 49.497391016000122 ], [ -124.653533423999974, 49.497448092000063 ], [ -124.65339595799999, 49.497468054000059 ], [ -124.653300560999952, 49.497505416000081 ], [ -124.65320481900001, 49.497533766000089 ], [ -124.653122932999949, 49.497561912000052 ], [ -124.653026880999974, 49.497581292000071 ], [ -124.652917367, 49.497609840000067 ], [ -124.652780534999962, 49.497647760000099 ], [ -124.652698615999952, 49.49767591800002 ], [ -124.652602890999944, 49.49770428900004 ], [ -124.65250717899994, 49.497732626000122 ], [ -124.652425551999897, 49.497769787000038 ], [ -124.652302212999984, 49.497798525000064 ], [ -124.652206814999886, 49.497835886000132 ], [ -124.652111722999933, 49.497882216000036 ], [ -124.65202980199993, 49.497910373000067 ], [ -124.65193467499995, 49.497956715000115 ], [ -124.65183952799994, 49.498003035000096 ], [ -124.651758224999952, 49.498049187000071 ], [ -124.651663422999917, 49.498104519000115 ], [ -124.651554796999946, 49.498160041000098 ], [ -124.651459976999931, 49.498215351000056 ], [ -124.651418904999957, 49.498224944000086 ], [ -124.651364575999935, 49.498252711000099 ], [ -124.651255949999964, 49.498308233000095 ], [ -124.651188447999985, 49.498354172000028 ], [ -124.651121219999965, 49.498409093000127 ], [ -124.651039913999938, 49.49845524300008 ], [ -124.65094538299995, 49.498519556000119 ], [ -124.650878499999976, 49.498583489000033 ], [ -124.650811268999973, 49.498638408000033 ], [ -124.650795839999958, 49.498654247000026 ], [ -124.649368936999934, 49.498495797000032 ], [ -124.647717389000022, 49.498577044000093 ], [ -124.646727012999989, 49.498793743000085 ], [ -124.645596267999949, 49.499268087000132 ], [ -124.644769934999928, 49.499480357000017 ], [ -124.644074779999983, 49.499544425000096 ], [ -124.642884237999979, 49.499893207000135 ], [ -124.64279287199993, 49.499995798000064 ], [ -124.642782562999969, 49.500008384000076 ], [ -124.642298762999985, 49.500601061000062 ], [ -124.642393767999963, 49.501700655000036 ], [ -124.64236600199996, 49.501715627000024 ], [ -124.641704709999956, 49.50191341699999 ], [ -124.641005315000015, 49.501943338000054 ], [ -124.639557510999907, 49.502005302000079 ], [ -124.638363634999934, 49.502245898000062 ], [ -124.638224818999959, 49.502366539000043 ], [ -124.638160742999943, 49.502667170000102 ], [ -124.638076779999921, 49.502753533000103 ], [ -124.637577243999914, 49.503267246000085 ], [ -124.637481848999983, 49.503459512000035 ], [ -124.637488583999968, 49.503558572000031 ], [ -124.637587860999972, 49.503702006000083 ], [ -124.637763342999961, 49.503835561000123 ], [ -124.638201783999975, 49.504083132000041 ], [ -124.638824855999971, 49.504340202000058 ], [ -124.639252808999942, 49.504570520000037 ], [ -124.639447659999959, 49.504748431000046 ], [ -124.639595163999942, 49.504941938000051 ], [ -124.639640655999969, 49.505130587000025 ], [ -124.639625749999936, 49.505516855000117 ], [ -124.639623171999986, 49.505582998000065 ], [ -124.639558125999955, 49.505823326 ], [ -124.63954105000002, 49.505832315000085 ], [ -124.639469510999973, 49.505888364 ], [ -124.639452435999928, 49.505897351000051 ], [ -124.639398735, 49.505943095000077 ], [ -124.639331478999935, 49.505998009000059 ], [ -124.63926641099998, 49.506064686000073 ], [ -124.63925135, 49.506080119000124 ], [ -124.639170912999987, 49.506153202000142 ], [ -124.639104000999964, 49.506217129000071 ], [ -124.639023257999909, 49.506281243000068 ], [ -124.638942786999962, 49.506354339000033 ], [ -124.638875871999971, 49.506418265000079 ], [ -124.63880866699995, 49.506473189000076 ], [ -124.638741730999982, 49.506537093000091 ], [ -124.638714980999964, 49.506564468000121 ], [ -124.638674491999964, 49.5065920280001 ], [ -124.638607554999936, 49.50665593100009 ], [ -124.638526509, 49.506711077000077 ], [ -124.638459571999988, 49.506774981000106 ], [ -124.63839292499992, 49.506847888000024 ], [ -124.638326007999964, 49.506911815000095 ], [ -124.638258782999955, 49.506966714000022 ], [ -124.638205960999926, 49.50703943300006 ], [ -124.638152815999959, 49.507103163000075 ], [ -124.638099704999917, 49.507166876000021 ], [ -124.638046270999936, 49.507221602000087 ], [ -124.637979351999931, 49.507285528000125 ], [ -124.637912413999956, 49.50734943100008 ], [ -124.637845495999926, 49.507413357000118 ], [ -124.637764427999912, 49.507468481000132 ], [ -124.637697198999916, 49.507523380000094 ], [ -124.637616452999936, 49.507587495000088 ], [ -124.637521610999954, 49.507642814000029 ], [ -124.637454368999926, 49.50769774900003 ], [ -124.637373009999919, 49.507743868000041 ], [ -124.637305801999929, 49.507798790000066 ], [ -124.637225055000016, 49.50786290200012 ], [ -124.637143713999976, 49.507909045000076 ], [ -124.636953415999955, 49.5080016900001 ], [ -124.636844457, 49.508048195000065 ], [ -124.63676338499999, 49.50810331600006 ], [ -124.636696463999954, 49.50816724200007 ], [ -124.636601328999916, 49.508213558000094 ], [ -124.63652025799999, 49.508268679000082 ], [ -124.636425735999964, 49.50833299100001 ], [ -124.636331159999941, 49.508397292000083 ], [ -124.636236026999967, 49.508443608000086 ], [ -124.636182606999952, 49.508498353000071 ], [ -124.636129436999909, 49.508562058000095 ], [ -124.636076320999905, 49.508625773000055 ], [ -124.636023494999961, 49.508698491000075 ], [ -124.635957161999954, 49.508780389000044 ], [ -124.63588962599999, 49.508826319000079 ], [ -124.63583618899996, 49.50888104200007 ], [ -124.635782749000015, 49.508935767000089 ], [ -124.635715499999947, 49.508990700000012 ], [ -124.635648878999973, 49.509063594000089 ], [ -124.635582240999938, 49.509136523000109 ], [ -124.635515296999955, 49.509200425000103 ], [ -124.635434256999957, 49.509255533000029 ], [ -124.635367921999887, 49.509337430000052 ], [ -124.635287459, 49.509410546000012 ], [ -124.635233729999953, 49.509456266000036 ], [ -124.635139168999942, 49.509520588000065 ], [ -124.63508575900002, 49.509575299000126 ], [ -124.635018799999955, 49.509639236000041 ], [ -124.63496535899999, 49.509693959000096 ], [ -124.634912238999917, 49.509757673000053 ], [ -124.634859118999927, 49.50982138800002 ], [ -124.634805677999907, 49.509876111 ], [ -124.634766331999955, 49.509939628000033 ], [ -124.63469999599999, 49.51002152500012 ], [ -124.634647163999944, 49.510094242000072 ], [ -124.63460842799995, 49.510175755000041 ], [ -124.634583519, 49.510257080000066 ], [ -124.634558301999974, 49.510329377000062 ], [ -124.634547489999989, 49.510419495000093 ], [ -124.63453639, 49.510500610000079 ], [ -124.634539061999973, 49.510581526000045 ], [ -124.634541768999981, 49.510662430000075 ], [ -124.634558559999945, 49.510752164000053 ], [ -124.634589477999924, 49.51085067800004 ], [ -124.634618316999962, 49.510886248000048 ], [ -124.634633023999967, 49.51091303700013 ], [ -124.634690056999943, 49.51096619400009 ], [ -124.634802612, 49.511027572000025 ], [ -124.634887244999959, 49.51108034500006 ], [ -124.634985705999966, 49.51113293 ], [ -124.635097384999966, 49.511167332000063 ], [ -124.63522283699993, 49.511201534000058 ], [ -124.635334191999945, 49.511226945000082 ], [ -124.635472913999962, 49.511242976000055 ], [ -124.635611280999981, 49.511250028000099 ], [ -124.635750272999985, 49.51127504 ], [ -124.635875134999949, 49.511291269000047 ], [ -124.636014126999953, 49.51131628100007 ], [ -124.636153084999975, 49.51134130500003 ], [ -124.636292400999963, 49.511375306000069 ], [ -124.636417549999948, 49.511400540000061 ], [ -124.636515725999971, 49.511444120000114 ], [ -124.636600362999957, 49.511496891000043 ], [ -124.636684729999942, 49.511540680000032 ], [ -124.636783193999975, 49.511593263000066 ], [ -124.636853732999924, 49.51163724000002 ], [ -124.636924541999988, 49.511690199000085 ], [ -124.636995692999946, 49.511752171000076 ], [ -124.637080653999973, 49.511813932000102 ], [ -124.637165292999939, 49.511866703000074 ], [ -124.637222346999977, 49.511919881000054 ], [ -124.637236425999959, 49.511928654 ], [ -124.63730757799999, 49.51199062500006 ], [ -124.637392539999937, 49.512052386000079 ], [ -124.63747779, 49.512123152000115 ], [ -124.637590352999936, 49.512184527000073 ], [ -124.637690859999935, 49.512247185000078 ], [ -124.63770324299999, 49.512254894000066 ], [ -124.637815808999932, 49.512316270000035 ], [ -124.63792808399991, 49.512368641000137 ], [ -124.638054152999942, 49.51242083700005 ], [ -124.63819462699999, 49.512490794 ], [ -124.638320732999944, 49.512542977000095 ], [ -124.638474405999915, 49.512594786000065 ], [ -124.638614287999985, 49.512646771000036 ], [ -124.638754511999934, 49.512707768000084 ], [ -124.638894068999932, 49.51275076100012 ], [ -124.639034004000024, 49.512802754000091 ], [ -124.639159733999946, 49.512845935 ], [ -124.639299346999948, 49.512888937000163 ], [ -124.63942542099997, 49.512941131000041 ], [ -124.639537397999916, 49.512984531000093 ], [ -124.639663483999968, 49.51303669100006 ], [ -124.63977546299995, 49.513080090000095 ], [ -124.63988742, 49.513123469000021 ], [ -124.639985567999972, 49.513167057000018 ], [ -124.640084040999952, 49.513219637000056 ], [ -124.640168737999943, 49.513272414000042 ], [ -124.640267482999946, 49.513333976000077 ], [ -124.640352125999968, 49.513386745000133 ], [ -124.640437382999963, 49.513457508000087 ], [ -124.640522354000026, 49.513519266000074 ], [ -124.640593494999933, 49.513581214000048 ], [ -124.640692259000019, 49.51364279799999 ], [ -124.64077722899999, 49.513704556000071 ], [ -124.640862488999957, 49.513775318000128 ], [ -124.640933629999978, 49.513837266000031 ], [ -124.641032699999982, 49.513907818000042 ], [ -124.64113146599999, 49.51396940100004 ], [ -124.641230245999935, 49.514030949000059 ], [ -124.641315506999902, 49.514101712000119 ], [ -124.641414576999921, 49.514172262000031 ], [ -124.641499549999949, 49.514234022000053 ], [ -124.641585101, 49.514313788000038 ], [ -124.641684171999941, 49.514384339000046 ], [ -124.641755642999968, 49.514455278000106 ], [ -124.641827400999887, 49.514535219 ], [ -124.641884734999977, 49.514597377000037 ], [ -124.641955898999967, 49.514659346000066 ], [ -124.642026753999957, 49.514712290000041 ], [ -124.642084703999899, 49.514792443000069 ], [ -124.642155849999966, 49.514854390000039 ], [ -124.64222728599999, 49.514925341000044 ], [ -124.642271116, 49.514996678000102 ], [ -124.642342571999919, 49.515067651000066 ], [ -124.642399598999972, 49.515120782000039 ], [ -124.642457262, 49.515191932000022 ], [ -124.642514631999973, 49.515254077000129 ], [ -124.642558482999974, 49.515325438000076 ], [ -124.642602588, 49.515405756000064 ], [ -124.642659655, 49.515458933000033 ], [ -124.64270348699992, 49.515530271000067 ], [ -124.642747319999955, 49.515601609000036 ], [ -124.642819081999932, 49.515681550000068 ], [ -124.642862914999967, 49.515752888000115 ], [ -124.642920254000018, 49.515815046000057 ], [ -124.642977898999959, 49.515886172000073 ], [ -124.643021462, 49.515948529000049 ], [ -124.643065293999925, 49.516019867000111 ], [ -124.643094995999917, 49.516082424000146 ], [ -124.643138557999947, 49.516144780000033 ], [ -124.643196201999956, 49.516215907000095 ], [ -124.643240328000019, 49.51629624900005 ], [ -124.643297991999958, 49.516367398000028 ], [ -124.64338235699995, 49.516411160000068 ], [ -124.64339629399997, 49.516414333000085 ], [ -124.64349373099999, 49.516436561000077 ], [ -124.643591004999948, 49.516453170000091 ], [ -124.643701495999935, 49.516451594000088 ], [ -124.643798175000015, 49.516450229000085 ], [ -124.643922439999983, 49.51644845500013 ], [ -124.644019409999899, 49.516456093000045 ], [ -124.644143401999955, 49.516445337000086 ], [ -124.644281496999923, 49.516443372000019 ], [ -124.64440576299998, 49.516441597000011 ], [ -124.644543856999988, 49.516439632000093 ], [ -124.644681679999934, 49.516428686000054 ], [ -124.644833874999932, 49.51643551300009 ], [ -124.644999607999978, 49.516433146000054 ], [ -124.645151496999958, 49.516431005000086 ], [ -124.64528959099999, 49.516429039000066 ], [ -124.645441786999953, 49.516435866000052 ], [ -124.64557987900001, 49.516433900000102 ], [ -124.645745613999978, 49.516431533000102 ], [ -124.645897828999964, 49.516438380000054 ], [ -124.64603590199999, 49.516436390000059 ], [ -124.646174017999954, 49.516434447000115 ], [ -124.646340021999933, 49.516441060000076 ], [ -124.646478134999938, 49.516439114000072 ], [ -124.646616228999974, 49.51643714800008 ], [ -124.646768424999962, 49.516443971000108 ], [ -124.646906228999924, 49.516433 ], [ -124.64707192799996, 49.516430644000131 ], [ -124.647223851000021, 49.516428485000091 ], [ -124.647403652, 49.516434920000073 ], [ -124.647555573, 49.516432761000054 ], [ -124.647693993999923, 49.516439784000113 ], [ -124.64783208899992, 49.516437814000057 ], [ -124.647983956999923, 49.516435645000072 ], [ -124.648108567999898, 49.516442880000078 ], [ -124.648301906999933, 49.516440119000087 ], [ -124.64839856699993, 49.516438727000043 ], [ -124.648481707999977, 49.516446551000122 ], [ -124.648482033000022, 49.516455542000095 ], [ -124.648485059, 49.516545452000024 ], [ -124.648487162999942, 49.516608397000013 ], [ -124.648475794999982, 49.516680511000061 ], [ -124.648478495999939, 49.516761429000091 ], [ -124.648480925999976, 49.516833366000043 ], [ -124.648469524999925, 49.516905491000081 ], [ -124.648471934999947, 49.516977405 ], [ -124.648461149999946, 49.517067528000055 ], [ -124.648463557999932, 49.517139442000058 ], [ -124.648466313999933, 49.517220371000064 ], [ -124.648455801999916, 49.517319474000075 ], [ -124.648458210999948, 49.517391388000064 ], [ -124.648460641999918, 49.517463325000087 ], [ -124.648450161999961, 49.517562416000054 ], [ -124.648452590999923, 49.517634352000044 ], [ -124.648455020999961, 49.517706289000031 ], [ -124.648457429999937, 49.51777820500007 ], [ -124.648459823999957, 49.517850153000111 ], [ -124.648448456999986, 49.517922267000131 ], [ -124.648450886999967, 49.517994204000033 ], [ -124.64845358800001, 49.518075123000067 ], [ -124.648456288999938, 49.518156042000037 ], [ -124.648458696999924, 49.518227956000104 ], [ -124.648448237999972, 49.518327069000087 ], [ -124.648451264999935, 49.51841698 ], [ -124.648454290999936, 49.518506891000079 ], [ -124.648456374999952, 49.518569813000035 ], [ -124.648458805999923, 49.518641751000132 ], [ -124.648461233999953, 49.518713688000055 ], [ -124.648463642999928, 49.518785602000037 ], [ -124.648466397999982, 49.518866531000121 ], [ -124.64846877199993, 49.518938458 ], [ -124.648457696999941, 49.519019577000087 ], [ -124.648460106999934, 49.51909149100009 ], [ -124.648462861999988, 49.519172419 ], [ -124.648465561999942, 49.51925334 ], [ -124.648454776999969, 49.51934346200003 ], [ -124.64845751299994, 49.519424368000074 ], [ -124.648447305999966, 49.519532442000084 ], [ -124.648449734999957, 49.5196043790001 ], [ -124.648451837999971, 49.5196673250001 ], [ -124.648440436999962, 49.51973945200006 ], [ -124.648442574999947, 49.519802385000041 ], [ -124.648445599999931, 49.519892296000116 ], [ -124.64843452599996, 49.519973414000106 ], [ -124.648436009999955, 49.520018364000066 ], [ -124.648437225999928, 49.520054334000065 ], [ -124.648439654999891, 49.520126271000059 ], [ -124.648428850999977, 49.520216371000096 ], [ -124.64843187699995, 49.520306281000067 ], [ -124.648421091999964, 49.520396404000074 ], [ -124.648424118999927, 49.520486316000117 ], [ -124.648413912999942, 49.520594389000053 ], [ -124.64840316199998, 49.520684499000033 ], [ -124.648406458999958, 49.520783392000112 ], [ -124.648410102999947, 49.520891299000034 ], [ -124.648399025999979, 49.520972417000117 ], [ -124.648402650999955, 49.521080300000044 ], [ -124.648405350999937, 49.52116122100005 ], [ -124.648394546999924, 49.521251322000118 ], [ -124.64840032799998, 49.521422161000039 ], [ -124.64838919799999, 49.521503272000132 ], [ -124.648392549999969, 49.521602175000041 ], [ -124.64839590299998, 49.521701077000024 ], [ -124.648385099, 49.52179117700009 ], [ -124.648385714999947, 49.521809173000079 ], [ -124.64838933799993, 49.521917057000095 ], [ -124.648392635999954, 49.522015950000089 ], [ -124.648382177, 49.522115065000101 ], [ -124.648385475999959, 49.522213958000052 ], [ -124.6483864, 49.522240924000094 ], [ -124.648402604999916, 49.52231266200004 ], [ -124.648404145999962, 49.522357623000097 ], [ -124.648405956999937, 49.522411565000063 ], [ -124.648408983999957, 49.52250147700007 ], [ -124.648412011999937, 49.522591387000048 ], [ -124.648414114999966, 49.522654334000052 ], [ -124.648414119999956, 49.522680662000106 ], [ -124.648400587999944, 49.522777241000057 ], [ -124.648387075999949, 49.522891385000051 ], [ -124.64838702, 49.523005539000096 ], [ -124.648373511999978, 49.523110866000088 ], [ -124.648373467999988, 49.523216258000041 ], [ -124.648359963999951, 49.523304041000131 ], [ -124.648359906999929, 49.523418195000012 ], [ -124.648359861999964, 49.52350598500005 ], [ -124.648346367999949, 49.523585007000086 ], [ -124.648332865999976, 49.523655247000121 ], [ -124.64833286699999, 49.523734263000073 ], [ -124.648332821999929, 49.523822055000018 ], [ -124.64831929199994, 49.523918634000019 ], [ -124.648319255999979, 49.523997664000099 ], [ -124.648319216999965, 49.524094238000046 ], [ -124.648305724999901, 49.524173260000083 ], [ -124.64830571600001, 49.524243494000068 ], [ -124.64831916699994, 49.524313737000114 ], [ -124.648319122999936, 49.524383982000131 ], [ -124.648319114999978, 49.52445421800013 ], [ -124.648305605999965, 49.524515674000078 ], [ -124.64853491599996, 49.524519216000108 ], [ -124.65056560799998, 49.524550537000096 ], [ -124.651284300999961, 49.524561611000145 ], [ -124.652821095999968, 49.524585272000124 ], [ -124.653559012999935, 49.524647816000048 ], [ -124.653617114999932, 49.524652747000083 ], [ -124.654425233999973, 49.524875101000077 ], [ -124.654461993, 49.524895507000075 ], [ -124.654531133999953, 49.524933850000075 ], [ -124.656676628999918, 49.526124010000018 ], [ -124.658513066999888, 49.527687170000036 ], [ -124.658965598999956, 49.528173256000031 ], [ -124.659227365999968, 49.528384344000067 ], [ -124.659613755999914, 49.528628459000082 ], [ -124.661767684999944, 49.529733224000019 ], [ -124.661981084999951, 49.529842681000083 ], [ -124.663745267999929, 49.531767462000055 ], [ -124.664147192999948, 49.531954162000048 ], [ -124.664809527999978, 49.532066692000093 ], [ -124.664808774, 49.532224943000109 ], [ -124.66480293799999, 49.533483814000128 ], [ -124.664794212999965, 49.535362429000081 ], [ -124.664810938999963, 49.535436711000088 ], [ -124.664836018999893, 49.535548095000095 ], [ -124.664842662999973, 49.535642280000083 ], [ -124.664845726999943, 49.535732195000108 ], [ -124.664849066999977, 49.535831093000127 ], [ -124.664866569999944, 49.535938791000014 ], [ -124.664870237999963, 49.53604667900003 ], [ -124.664873873, 49.536154581000126 ], [ -124.664891080999951, 49.536253275000057 ], [ -124.664894714999932, 49.536361176000135 ], [ -124.664898417999936, 49.536469053000054 ], [ -124.664888544999926, 49.536586139000057 ], [ -124.664892543999926, 49.53670302200004 ], [ -124.664896209999966, 49.536810911000025 ], [ -124.664886043, 49.536918993000086 ], [ -124.66488971199999, 49.537026883000074 ], [ -124.664879563999989, 49.537134986000055 ], [ -124.664883231999966, 49.537242876000079 ], [ -124.664886569999965, 49.537341775000122 ], [ -124.664876125999967, 49.537440874 ], [ -124.664879796, 49.537548764000071 ], [ -124.664869627999934, 49.53765684600004 ], [ -124.664872727000031, 49.537746748000053 ], [ -124.664878193999954, 49.537908597000076 ], [ -124.664881256999934, 49.53799851300009 ], [ -124.664887365999931, 49.538178323000125 ], [ -124.664889803999955, 49.538250241000121 ], [ -124.664892572, 49.538331154000105 ], [ -124.664895307999956, 49.538412077000046 ], [ -124.664898371, 49.53850199300004 ], [ -124.664901413999957, 49.538591888000099 ], [ -124.664907541999952, 49.538771719000124 ], [ -124.664910585999934, 49.538861613000108 ], [ -124.664913340999988, 49.538942560000073 ], [ -124.66490260099998, 49.539032655 ], [ -124.664904035999967, 49.539075178000076 ], [ -124.664905040999926, 49.539104575000046 ], [ -124.664908049999951, 49.539194481000052 ], [ -124.664896705999965, 49.539266602000041 ], [ -124.664897001999933, 49.539275607000022 ], [ -124.664899769999963, 49.539356519000073 ], [ -124.664888995999959, 49.539446627000089 ], [ -124.664877946999951, 49.53952775400009 ], [ -124.664867173999966, 49.539617863000046 ], [ -124.664842617999966, 49.539708172000111 ], [ -124.664832172999965, 49.539807273000079 ], [ -124.664821398999933, 49.539897381000081 ], [ -124.664810625999976, 49.539987490000023 ], [ -124.664799852000016, 49.540077598000053 ], [ -124.664803224999957, 49.540176484000021 ], [ -124.664806287999966, 49.540266400000107 ], [ -124.66479551499998, 49.54035650900002 ], [ -124.664812087, 49.540437242000102 ], [ -124.664815129999923, 49.540527137000069 ], [ -124.66481879899996, 49.540635027000064 ], [ -124.664822191999974, 49.54073393700002 ], [ -124.664839347999958, 49.540832622000089 ], [ -124.664829198999939, 49.540940726000024 ], [ -124.66483317699999, 49.541057588000058 ], [ -124.664837141999953, 49.54117448500012 ], [ -124.664840810999976, 49.541282376000076 ], [ -124.664830364999915, 49.54138147599999 ], [ -124.664832495999974, 49.541444427000087 ], [ -124.664836768999947, 49.541570293000071 ], [ -124.664827223999964, 49.541696373000093 ], [ -124.664817713, 49.541822442000075 ], [ -124.664819823999949, 49.54188536900007 ], [ -124.664809982999984, 49.54200244500008 ], [ -124.664814275999944, 49.542128334000019 ], [ -124.664804731999951, 49.542254414000091 ], [ -124.664808380999929, 49.542362284000063 ], [ -124.664797935999914, 49.542461385000117 ], [ -124.664801273999956, 49.542560285000015 ], [ -124.664791157999957, 49.542668378000094 ], [ -124.664794827999941, 49.542776271000029 ], [ -124.664797838999959, 49.542866178000104 ], [ -124.664786787999972, 49.542947306000073 ], [ -124.664789851999956, 49.543037223000113 ], [ -124.664779387999928, 49.543136303000033 ], [ -124.664782449999947, 49.54322621900004 ], [ -124.664785184999943, 49.543307145000057 ], [ -124.664774114999958, 49.543388250000085 ], [ -124.664776574999948, 49.543460193000044 ], [ -124.66477934199996, 49.543541106000056 ], [ -124.664781780999959, 49.543613026000024 ], [ -124.664784220999962, 49.543684948000156 ], [ -124.664773170999979, 49.543766075000065 ], [ -124.664775903999981, 49.543847 ], [ -124.664778948999952, 49.543936896000041 ], [ -124.664781077999976, 49.543999847000094 ], [ -124.664784175999927, 49.544089752000062 ], [ -124.66505867799999, 49.54403183000003 ], [ -124.665196828999967, 49.544029850000079 ], [ -124.66532121099999, 49.544028035000053 ], [ -124.665418213999942, 49.544035666000127 ], [ -124.665680746999953, 49.544031869000065 ], [ -124.66577746900002, 49.544030459000098 ], [ -124.665929788999932, 49.544037277000022 ], [ -124.666040316999897, 49.544035690000094 ], [ -124.666178466999938, 49.544033706000079 ], [ -124.66633076699992, 49.54404049900009 ], [ -124.666482757, 49.544038325000045 ], [ -124.666607102999976, 49.544036521000066 ], [ -124.666731484999971, 49.544034705000144 ], [ -124.666842031999948, 49.544033138000096 ], [ -124.666966377999984, 49.544031333000071 ], [ -124.667118366999915, 49.544029157000054 ], [ -124.667256829999957, 49.544036142000067 ], [ -124.667408818999959, 49.544033965000061 ], [ -124.667657531999907, 49.544030377000063 ], [ -124.66776805899994, 49.544028787000094 ], [ -124.667906242999948, 49.544026789000021 ], [ -124.668016770999913, 49.54402519800005 ], [ -124.668155253999956, 49.544032205000065 ], [ -124.668265813999966, 49.544030600000092 ], [ -124.668376618, 49.544037991000053 ], [ -124.668501313999968, 49.54404520100006 ], [ -124.668612450999916, 49.544061583000058 ], [ -124.66869596, 49.544078362000107 ], [ -124.668794543999979, 49.544130917000139 ], [ -124.668893104999967, 49.54418345200002 ], [ -124.668978145999986, 49.544245206000063 ], [ -124.669063462999972, 49.544315942000061 ], [ -124.66912120899994, 49.544387083000046 ], [ -124.669178627999955, 49.544449232000069 ], [ -124.669235728999979, 49.544502353000098 ], [ -124.669293148999913, 49.544564501000096 ], [ -124.669350546999965, 49.544626628000096 ], [ -124.669391944, 49.544617039000038 ], [ -124.669515671999974, 49.544579181000096 ], [ -124.669625264999979, 49.544532511000078 ], [ -124.669721264, 49.544495028000078 ], [ -124.669817278, 49.544457568000048 ], [ -124.669899084999912, 49.544411265000079 ], [ -124.670008081999953, 49.544346527000073 ], [ -124.670090202999958, 49.544309250000012 ], [ -124.670103780999938, 49.544300039000063 ], [ -124.670199515999968, 49.544253539000088 ], [ -124.67030880599998, 49.544197806000064 ], [ -124.670432270999953, 49.544150930000058 ], [ -124.67052825199994, 49.544113482000057 ], [ -124.670623984999978, 49.544066981000128 ], [ -124.670719944999945, 49.544029511000126 ], [ -124.670829514999966, 49.543982818000089 ], [ -124.670953294999947, 49.543944968000076 ], [ -124.671063482999941, 49.543916363000086 ], [ -124.67118694499996, 49.543869486000077 ], [ -124.671310406999936, 49.543822609000117 ], [ -124.671420293999958, 49.543784941000105 ], [ -124.67154403899994, 49.543747103000108 ], [ -124.671667814999964, 49.543709252000085 ], [ -124.671805431999957, 49.54367121000007 ], [ -124.671957274999926, 49.543642031000033 ], [ -124.672108763999944, 49.543603781000058 ], [ -124.672246715999933, 49.543574787000061 ], [ -124.672343269999942, 49.543555382000065 ], [ -124.672398504999975, 49.54354559900009 ], [ -124.67255004699993, 49.543507359000081 ], [ -124.6726876809999, 49.54346933500004 ], [ -124.672811718999952, 49.543440501000084 ], [ -124.672949353, 49.543402478000111 ], [ -124.673087303999935, 49.543373483000096 ], [ -124.673225231999979, 49.543344464000022 ], [ -124.67337673899999, 49.543306235000095 ], [ -124.673500794999981, 49.543277421 ], [ -124.673638427999933, 49.543239398000075 ], [ -124.673748592000024, 49.543210768000087 ], [ -124.673872628999931, 49.543181932000067 ], [ -124.673996684999935, 49.54315311900011 ], [ -124.674107131000014, 49.543133528000084 ], [ -124.67420314, 49.5430960650001 ], [ -124.674353184000012, 49.543012682000061 ], [ -124.674421143999922, 49.542966568000075 ], [ -124.674489051999956, 49.542920443000078 ], [ -124.67456970899994, 49.5428380110001 ], [ -124.674650624999984, 49.542764596000097 ], [ -124.674704412999972, 49.54270962500005 ], [ -124.674772055999966, 49.542654483000049 ], [ -124.67486654799994, 49.542571857000077 ], [ -124.674961672999984, 49.542507286000095 ], [ -124.675056798999918, 49.542442715000028 ], [ -124.675138016999981, 49.542378361000054 ], [ -124.675259446999945, 49.542268247000088 ], [ -124.67535453399995, 49.542203688000065 ], [ -124.675421874999969, 49.542139483000042 ], [ -124.675474761999936, 49.54205744100009 ], [ -124.675555676999977, 49.541984025000033 ], [ -124.675623035999962, 49.541919843000123 ], [ -124.675690394999947, 49.541855661000064 ], [ -124.675744143999964, 49.541800702000081 ], [ -124.675825939999967, 49.541754393000112 ], [ -124.675920799999957, 49.54168080199999 ], [ -124.67597512899998, 49.541643889000078 ], [ -124.675974512999971, 49.541611713000115 ], [ -124.675973171999956, 49.541538936000052 ], [ -124.675976579999912, 49.541517379000084 ], [ -124.675974121999957, 49.541445459000059 ], [ -124.675971940999929, 49.541382521000074 ], [ -124.675969516999942, 49.541310587000076 ], [ -124.67598023099994, 49.54122049100004 ], [ -124.675977773999989, 49.541148571000129 ], [ -124.675975016999956, 49.54106764600008 ], [ -124.675972260999956, 49.540986721000081 ], [ -124.675982678999929, 49.54088762 ], [ -124.675979312999971, 49.540788721000048 ], [ -124.675975892999986, 49.54068981200006 ], [ -124.675972825999935, 49.540599919000101 ], [ -124.675969735999971, 49.540510002000147 ], [ -124.675966702999943, 49.540420095000123 ], [ -124.675949500999948, 49.540321390000045 ], [ -124.675945802999934, 49.540213501 ], [ -124.675942714999948, 49.540123583000053 ], [ -124.675939645999975, 49.540033690000058 ], [ -124.675922740999965, 49.539943989000037 ], [ -124.675905539999988, 49.539845284000059 ], [ -124.675902450999942, 49.539755368000044 ], [ -124.675885877999931, 49.539674660000081 ], [ -124.675869284999948, 49.539593930000109 ], [ -124.675852414999966, 49.539504216000054 ], [ -124.675849955999979, 49.539432297000062 ], [ -124.675833363999914, 49.539351567000054 ], [ -124.675816458999918, 49.539261866000054 ], [ -124.675813703999935, 49.539180942000094 ], [ -124.675796797999922, 49.53909124300003 ], [ -124.675794981999957, 49.539037284000052 ], [ -124.675884167, 49.539107386000119 ], [ -124.675987226999965, 49.53916059000003 ], [ -124.676050889999914, 49.539213092000075 ], [ -124.676127643999948, 49.539265851000096 ], [ -124.676227686999965, 49.539318303000094 ], [ -124.67631335199998, 49.539361977000077 ], [ -124.676399477999951, 49.539414740000041 ], [ -124.676485585999941, 49.539467482000106 ], [ -124.676571660999954, 49.539520235000104 ], [ -124.676658213999957, 49.539582046000135 ], [ -124.676786505999985, 49.539643014000085 ], [ -124.676901325999921, 49.539713362000064 ], [ -124.677016551999884, 49.539792733000077 ], [ -124.67714530899994, 49.539862792000044 ], [ -124.677259664999951, 49.539924049000028 ], [ -124.67737491299998, 49.540003443000053 ], [ -124.67746186, 49.540074312000037 ], [ -124.677562760999976, 49.54014491300007 ], [ -124.67763491599996, 49.540197921000086 ], [ -124.677721435999956, 49.540259743000036 ], [ -124.67780838399996, 49.540330611000037 ], [ -124.677894069999965, 49.540374305000043 ], [ -124.677994119999951, 49.540426756000052 ], [ -124.678079397999952, 49.540461368000102 ], [ -124.678151127999925, 49.540505328000123 ], [ -124.678237684999942, 49.540567137000011 ], [ -124.678309006999925, 49.540602017 ], [ -124.678323121999981, 49.540610805000014 ], [ -124.67842198799994, 49.540672334000092 ], [ -124.678534357999965, 49.540724676000103 ], [ -124.678646747999949, 49.540777041000112 ], [ -124.678732108999924, 49.540847756000097 ], [ -124.678816580999964, 49.540891513000069 ], [ -124.67888749399999, 49.54094444599999 ], [ -124.678958125999941, 49.54098839800006 ], [ -124.679056958999922, 49.541049939000082 ], [ -124.679183168999899, 49.541102086000102 ], [ -124.679281126999967, 49.541136635000065 ], [ -124.679379051999945, 49.541171196000043 ], [ -124.679491126999935, 49.541214534000041 ], [ -124.679575266999962, 49.5412492990001 ], [ -124.679673225999977, 49.541283848000077 ], [ -124.67977148199995, 49.541327400000078 ], [ -124.679870036999958, 49.541379958000071 ], [ -124.679967998000023, 49.541414505000013 ], [ -124.680080056999927, 49.541457877 ], [ -124.680205639999912, 49.541492027000089 ], [ -124.680303896999959, 49.541535579000083 ], [ -124.680416306999987, 49.541587908000068 ], [ -124.680500393999935, 49.541622662000051 ], [ -124.680612158999935, 49.541657027000028 ], [ -124.68070983899996, 49.541682593000054 ], [ -124.68080776699999, 49.541717153000093 ], [ -124.68090541399999, 49.541742731000106 ], [ -124.681003040999926, 49.541768287000075 ], [ -124.68108751799997, 49.541812041000085 ], [ -124.681186054999927, 49.541864575000062 ], [ -124.681284929999933, 49.541926102000048 ], [ -124.681355567999958, 49.541970052000039 ], [ -124.68145412599992, 49.542022608000067 ], [ -124.681538882999973, 49.542075345000072 ], [ -124.681637456999979, 49.542127867000076 ], [ -124.68173568399996, 49.542171431000085 ], [ -124.681806323, 49.542215380000101 ], [ -124.681904898999946, 49.542267901000095 ], [ -124.681975556999959, 49.542311872000077 ], [ -124.682059982999945, 49.54235561800008 ], [ -124.68214535199999, 49.542426330000126 ], [ -124.682215956999954, 49.542470291000051 ], [ -124.682328371999915, 49.542522617000046 ], [ -124.68242693399999, 49.542575172000113 ], [ -124.682512303999957, 49.542645885000113 ], [ -124.682709444999929, 49.542750959000038 ], [ -124.682808040999987, 49.542803501000044 ], [ -124.682906584999927, 49.542856034000117 ], [ -124.682991309, 49.542908783000044 ], [ -124.683089608999964, 49.54295232000009 ], [ -124.683173719999928, 49.542987095000051 ], [ -124.683284893999968, 49.543003449000061 ], [ -124.683423373000011, 49.543010434000045 ], [ -124.683533583, 49.542999856000051 ], [ -124.683643509999968, 49.542980239000023 ], [ -124.683767258000017, 49.54296046000006 ], [ -124.683876835999953, 49.542931885000023 ], [ -124.683972942999944, 49.54291248400007 ], [ -124.684109562999978, 49.542865522000078 ], [ -124.68421917299996, 49.542836933000082 ], [ -124.684314355, 49.542790588000052 ], [ -124.684423051999914, 49.542735020000123 ], [ -124.684504390999948, 49.542688869000081 ], [ -124.684571595999927, 49.542633907000081 ], [ -124.684652634999907, 49.54257875100005 ], [ -124.68474751399998, 49.542523401000025 ], [ -124.684828888999931, 49.54247723700005 ], [ -124.684896389999921, 49.542431280000095 ], [ -124.684963644999968, 49.542376329000064 ], [ -124.685017062999933, 49.542321572000084 ], [ -124.685084284999945, 49.542266632000043 ], [ -124.68512358299995, 49.542203088000051 ], [ -124.685148711999943, 49.542130746000069 ], [ -124.685188031999985, 49.5420672240001 ], [ -124.685213158999957, 49.541994882000061 ], [ -124.685238639999923, 49.541931555000104 ], [ -124.685276990999952, 49.541841045000062 ], [ -124.685316268999955, 49.541777477000089 ], [ -124.685355553999941, 49.541713968000096 ], [ -124.685380715999941, 49.541641613000067 ], [ -124.68543348299994, 49.54156889500009 ], [ -124.685500124999976, 49.54149596900001 ], [ -124.685552907999963, 49.541423215000101 ], [ -124.685591889999955, 49.541350700000095 ], [ -124.685630854999886, 49.54127816500003 ], [ -124.685697159999947, 49.541196246000062 ], [ -124.685736122999955, 49.541123710000093 ], [ -124.685775419999942, 49.541060165000026 ], [ -124.68581438399994, 49.540987629000035 ], [ -124.685839528999921, 49.540915310000102 ], [ -124.685892329999945, 49.540842578000074 ], [ -124.685958914999958, 49.540769642000029 ], [ -124.686011713999932, 49.540696911000026 ], [ -124.686064198999972, 49.540615211000073 ], [ -124.686102581999961, 49.540524687000072 ], [ -124.686141209999931, 49.540443158000087 ], [ -124.686140929999951, 49.540434175000073 ], [ -124.68619370899998, 49.540361421000078 ], [ -124.686246474999962, 49.540288702000097 ], [ -124.686285471999938, 49.540216154000106 ], [ -124.686324432999953, 49.540143618000045 ], [ -124.686376917999908, 49.540061915000102 ], [ -124.686430030999986, 49.539998155000113 ], [ -124.686496633999937, 49.53992524100002 ], [ -124.686563848, 49.539870301000057 ], [ -124.686630743999942, 49.53980633500008 ], [ -124.686684155, 49.539751578000029 ], [ -124.686778689999954, 49.539687232000119 ], [ -124.68686005799999, 49.539641068000037 ], [ -124.686941387999951, 49.539594915000066 ], [ -124.687037170999972, 49.539566542000017 ], [ -124.687146773000023, 49.539537949000078 ], [ -124.687242871, 49.539518545000071 ], [ -124.687352768999929, 49.539498958000088 ], [ -124.687432126999909, 49.539482625000062 ], [ -124.687442282999939, 49.539481393000116 ], [ -124.687562547999931, 49.539472392000093 ], [ -124.68771285399994, 49.539463576000102 ], [ -124.687863044999943, 49.539464542000061 ], [ -124.688001213999925, 49.539462515 ], [ -124.688166966999972, 49.539460101000138 ], [ -124.688333090999947, 49.539466666000045 ], [ -124.688498845999987, 49.539464252000073 ], [ -124.688664688999935, 49.539461834000086 ], [ -124.688844260999971, 49.539459201000078 ], [ -124.6890376899999, 49.539456395000101 ], [ -124.689134401000018, 49.539454963000061 ], [ -124.689327827999946, 49.539452156000031 ], [ -124.689493919999933, 49.539458732000064 ], [ -124.689562976999966, 49.539457713000068 ], [ -124.689659708, 49.539456302000097 ], [ -124.689756420999984, 49.539454870000071 ], [ -124.689936345999982, 49.539461249000055 ], [ -124.690102135999908, 49.539458819000046 ], [ -124.69026822499994, 49.539465393000086 ], [ -124.690447816999935, 49.539462781000097 ], [ -124.690600103999898, 49.53946953700008 ], [ -124.690779729999974, 49.539466910000087 ], [ -124.690945482999979, 49.539464491000032 ], [ -124.6910977899999, 49.539471269000096 ], [ -124.691263581, 49.539468837000058 ], [ -124.691360276999944, 49.539467438000074 ], [ -124.691540182999972, 49.539473792000138 ], [ -124.691733927999948, 49.539479950000064 ], [ -124.691886233999924, 49.539486727000046 ], [ -124.692052322999956, 49.53949329800006 ], [ -124.692218112999939, 49.539490866000079 ], [ -124.692398038999954, 49.539497240000095 ], [ -124.692563827999948, 49.539494806000029 ], [ -124.692660840999963, 49.539502375000026 ], [ -124.692743735999912, 49.539501158000093 ], [ -124.69290952599998, 49.539498722000118 ], [ -124.693075635999946, 49.539505315000063 ], [ -124.693241705999981, 49.539511862000033 ], [ -124.693407513999972, 49.53950944800004 ], [ -124.693573301999962, 49.539507012000051 ], [ -124.693766730999968, 49.539504197000092 ], [ -124.693959837999969, 49.539492355000057 ], [ -124.694139765000017, 49.539498725000087 ], [ -124.694236442999937, 49.539497302000044 ], [ -124.694416068999928, 49.53949466800006 ], [ -124.694512765999932, 49.539493265 ], [ -124.694623315999976, 49.539491631000082 ], [ -124.694817023999946, 49.539497796000056 ], [ -124.694982832999955, 49.539495380000091 ], [ -124.695135119999918, 49.539502130000081 ], [ -124.695342366999938, 49.539499093000096 ], [ -124.69552223899997, 49.53950545200005 ], [ -124.695688049999973, 49.539503035000088 ], [ -124.695840034999961, 49.539500779000086 ], [ -124.695950548999988, 49.539499156000076 ], [ -124.696074897999949, 49.539497338000068 ], [ -124.696171597000017, 49.539495933000069 ], [ -124.696296284999946, 49.539503105000087 ], [ -124.696338023999928, 49.539511490000045 ], [ -124.696476192999938, 49.539509451000072 ], [ -124.696738679999925, 49.539505606000048 ], [ -124.696849493999949, 49.539512987000109 ], [ -124.69694622599998, 49.539511569000069 ], [ -124.69705674, 49.539509946000116 ], [ -124.697153451999938, 49.539508507000107 ], [ -124.69726426699998, 49.539515886000096 ], [ -124.697458032, 49.539522056000102 ], [ -124.697568863999905, 49.539529401000017 ], [ -124.697679399999984, 49.539527799000062 ], [ -124.697789912999937, 49.539526174000081 ], [ -124.69788692599991, 49.539533738000024 ], [ -124.697997440999984, 49.539532114000039 ], [ -124.698177367999975, 49.539538478000097 ], [ -124.6982741, 49.539537058000093 ], [ -124.69838495099999, 49.539544425000017 ], [ -124.69849546599994, 49.539542801000081 ], [ -124.698596335999952, 49.539556664000038 ], [ -124.698698213999975, 49.539561041000084 ], [ -124.698770936999964, 49.539564166000041 ], [ -124.698785496999974, 49.539564799000118 ], [ -124.698812075999953, 49.539563150000063 ], [ -124.698971491999927, 49.539553293000012 ], [ -124.699145406999961, 49.539551250000038 ], [ -124.699325032999965, 49.539548606000068 ], [ -124.699518744000017, 49.539554762000165 ], [ -124.69971215299995, 49.539551913000039 ], [ -124.699905917999942, 49.53955807600007 ], [ -124.700085524999977, 49.539555410000034 ], [ -124.700279236999933, 49.539561564000074 ], [ -124.700458860999944, 49.539558919000044 ], [ -124.700624953999977, 49.539565476000057 ], [ -124.700735485999985, 49.539563871000112 ], [ -124.700859818999973, 49.539562023000059 ], [ -124.700970669999947, 49.539569387000093 ], [ -124.701081204999952, 49.539567781000073 ], [ -124.701191718999965, 49.539566153000081 ], [ -124.701316352999953, 49.539573309000048 ], [ -124.701413083999938, 49.539571888000076 ], [ -124.701523599, 49.539570258000069 ], [ -124.701634451999922, 49.539577622000131 ], [ -124.701744964999932, 49.539575993000085 ], [ -124.70184166199999, 49.539574583000039 ], [ -124.701924892999969, 49.539582349000071 ], [ -124.701938675999941, 49.539582143000125 ], [ -124.702145921999943, 49.539579091000064 ], [ -124.702325546999944, 49.539576444000062 ], [ -124.702450201999952, 49.539583621000126 ], [ -124.702560716999969, 49.539581992000144 ], [ -124.702671265, 49.539580347000083 ], [ -124.702795580999947, 49.5395785340001 ], [ -124.702892596999902, 49.539586093000104 ], [ -124.703003165999931, 49.539584472000108 ], [ -124.703113677999966, 49.539582841000076 ], [ -124.703238315999954, 49.539589995000036 ], [ -124.70334884799999, 49.53958838700003 ], [ -124.703459362999979, 49.539586756000034 ], [ -124.70355607499999, 49.539585311000081 ], [ -124.70376332, 49.539582254000095 ], [ -124.70387385399998, 49.539580646000061 ], [ -124.703998183999886, 49.539578794000043 ], [ -124.704109022999987, 49.539586191000062 ], [ -124.704233354999957, 49.539584337000122 ], [ -124.704343887999954, 49.539582729000074 ], [ -124.704454436999924, 49.539581083000016 ], [ -124.704551133, 49.539579671000077 ], [ -124.704647844999926, 49.539578224000074 ], [ -124.704758377999951, 49.539576613000044 ], [ -124.70488271, 49.539574761000061 ], [ -124.704993529999953, 49.539582134000099 ], [ -124.705104041999974, 49.53958050100006 ], [ -124.705297808999916, 49.539586653000065 ], [ -124.705422445999943, 49.539593805000024 ], [ -124.705491520999928, 49.539592798000072 ], [ -124.705698768000033, 49.539589738000075 ], [ -124.705892512999952, 49.539595869000031 ], [ -124.705989209999956, 49.539594455000071 ], [ -124.706168834999971, 49.539591800000039 ], [ -124.706362547999944, 49.53959794100011 ], [ -124.70654217299996, 49.539595284000043 ], [ -124.706639188999986, 49.539602840000029 ], [ -124.706804963999986, 49.539600417000081 ], [ -124.706957253999946, 49.539607149000091 ], [ -124.70712304199999, 49.539604689000043 ], [ -124.707302970999962, 49.539611036000032 ], [ -124.707454942999945, 49.539608798000124 ], [ -124.707607217999936, 49.539615562000016 ], [ -124.707731886999952, 49.539622699000049 ], [ -124.707870362000023, 49.539629650000101 ], [ -124.707994676999959, 49.539627827000082 ], [ -124.708118384999949, 49.539607997000068 ], [ -124.708241468999987, 49.539570193000088 ], [ -124.708282301999958, 49.539551613000043 ], [ -124.708323115999931, 49.539533014000014 ], [ -124.708389997999944, 49.539469053000118 ], [ -124.70847071399993, 49.539404897000097 ], [ -124.70852347499995, 49.539332154000114 ], [ -124.708575893999949, 49.539250419000027 ], [ -124.708628651999973, 49.539177676000065 ], [ -124.708681410999986, 49.539104932000022 ], [ -124.708734168999953, 49.539032189000046 ], [ -124.708758988999989, 49.538950882000094 ], [ -124.708810817999947, 49.538851161000082 ], [ -124.708862896999932, 49.538760433000078 ], [ -124.708915064999985, 49.53866970300006 ], [ -124.708966519999962, 49.538561002000094 ], [ -124.70901834899999, 49.538461279000046 ], [ -124.70907014299999, 49.538361572000063 ], [ -124.709083014999976, 49.53833440700005 ], [ -124.709135805999949, 49.538261651 ], [ -124.709201436999962, 49.538161744000085 ], [ -124.709253227999966, 49.53806203400007 ], [ -124.709291219999926, 49.537962512000028 ], [ -124.70932954899996, 49.537871980000034 ], [ -124.709367844, 49.537781461000115 ], [ -124.70941963599995, 49.537681752000033 ], [ -124.709457984999972, 49.53759124200009 ], [ -124.709510399999914, 49.537509507000017 ], [ -124.709562849999912, 49.537427759000103 ], [ -124.709628761999952, 49.537336834000087 ], [ -124.709681538, 49.537264114000024 ], [ -124.709747767999957, 49.537182158000086 ], [ -124.709800861999966, 49.537118406000104 ], [ -124.709881233999937, 49.537045256000063 ], [ -124.709961890999949, 49.536981089000065 ], [ -124.71002882, 49.536917139000117 ], [ -124.710109493999937, 49.536852994000064 ], [ -124.710176348999966, 49.536789012000092 ], [ -124.710257364999919, 49.53673385700008 ], [ -124.710324862999983, 49.536687871000034 ], [ -124.710377919999985, 49.536624132000107 ], [ -124.710458628999959, 49.536559974000113 ], [ -124.710553439999927, 49.536504576000063 ], [ -124.710648574999936, 49.53645820700013 ], [ -124.710757239999964, 49.536402632000026 ], [ -124.710838233999951, 49.536347457000069 ], [ -124.710918887999966, 49.536283288000071 ], [ -124.710971977999932, 49.536219537000079 ], [ -124.711052971999919, 49.536164360000043 ], [ -124.711134322999968, 49.536118197000043 ], [ -124.711187697999947, 49.536063426000062 ], [ -124.711214690999952, 49.536045046000069 ], [ -124.711267099999972, 49.535963311000096 ], [ -124.711267509, 49.535959816000094 ], [ -124.711277772999907, 49.535873198000033 ], [ -124.711275572999966, 49.535810251000093 ], [ -124.711259558000023, 49.535747523000104 ], [ -124.711215298999946, 49.535667229000076 ], [ -124.711185163999971, 49.535595718000124 ], [ -124.711171360999984, 49.535595905000058 ], [ -124.711155630999897, 49.535542159000045 ], [ -124.711084380999978, 49.535480246000105 ], [ -124.711013437999952, 49.535427336000048 ], [ -124.710942472999989, 49.535374404000045 ], [ -124.710885309999981, 49.535321286000062 ], [ -124.710814366, 49.535268377000129 ], [ -124.710757557999941, 49.535224216000103 ], [ -124.710658657999929, 49.535162720000123 ], [ -124.710559737999958, 49.535101204000071 ], [ -124.710502612999932, 49.535048074000102 ], [ -124.710445450999913, 49.534994955000066 ], [ -124.710373862999958, 49.534924050000065 ], [ -124.710231368000024, 49.534800221000125 ], [ -124.710160371999962, 49.534747302000014 ], [ -124.710088481999932, 49.534667391000021 ], [ -124.710031374999971, 49.534614284000078 ], [ -124.709960379000037, 49.534561364000055 ], [ -124.709889756999942, 49.534517422000121 ], [ -124.709805298999925, 49.534473680000133 ], [ -124.709748140999949, 49.534420562000065 ], [ -124.709677198999984, 49.53436765100011 ], [ -124.70962007299994, 49.534314521000084 ], [ -124.709562305999953, 49.534243393000061 ], [ -124.709505146999945, 49.534190275000086 ], [ -124.709447397999938, 49.534119170000046 ], [ -124.70941048499995, 49.534073727000084 ], [ -124.709346304999912, 49.533994727000113 ], [ -124.709332183999933, 49.533985944000101 ], [ -124.709288556999937, 49.533923623000064 ], [ -124.709244588999937, 49.533852310000057 ], [ -124.70922827299999, 49.533780579000044 ], [ -124.709211956000019, 49.533708847000042 ], [ -124.70920944099997, 49.533636929000075 ], [ -124.70922074, 49.533564792000035 ], [ -124.709218224000026, 49.5334928750001 ], [ -124.70921511799996, 49.5334029710001 ], [ -124.70922607899999, 49.533321843000053 ], [ -124.709236754999921, 49.533231731000114 ], [ -124.709248053999929, 49.533159594000018 ], [ -124.709259066999962, 49.533078473000053 ], [ -124.709258377999916, 49.533058808000128 ], [ -124.709256856999957, 49.53301556100007 ], [ -124.709267565999966, 49.532925438000113 ], [ -124.709278865999977, 49.532853300000042 ], [ -124.709290131999964, 49.532781175000075 ], [ -124.709287342999986, 49.532700241000036 ], [ -124.709311819999954, 49.532609945000104 ], [ -124.709328764999952, 49.532554397000062 ], [ -124.709336614999984, 49.532528617000068 ], [ -124.709347626999914, 49.532447498000074 ], [ -124.709358585999965, 49.532366369000059 ], [ -124.709369599999931, 49.532285250000029 ], [ -124.7093809, 49.532213111000047 ], [ -124.709391575999987, 49.532123001000109 ], [ -124.709402587999989, 49.532041882000044 ], [ -124.709399447999971, 49.531951992000081 ], [ -124.709410442999953, 49.531870851000122 ], [ -124.709407641999945, 49.531789952000118 ], [ -124.709405105999934, 49.531718014000035 ], [ -124.709416404999928, 49.531645877000052 ], [ -124.709413582999971, 49.531564954000025 ], [ -124.709411067999937, 49.531493038000079 ], [ -124.709407924999979, 49.531403149000042 ], [ -124.709405425999975, 49.531331198000117 ], [ -124.709416100999974, 49.531241087000083 ], [ -124.709413585, 49.531169170000069 ], [ -124.709411406999948, 49.531106245000096 ], [ -124.709395376000018, 49.531043496000031 ], [ -124.709380978999945, 49.531013283000078 ], [ -124.709925830999921, 49.531019755000074 ], [ -124.709804687999977, 49.532080909000115 ], [ -124.709870234999983, 49.532521179000071 ], [ -124.709894189999943, 49.532681908000015 ], [ -124.710208899999941, 49.53333419900008 ], [ -124.711663710999986, 49.534625903000105 ], [ -124.712142626999949, 49.534824158000063 ], [ -124.712174439999913, 49.534837328000023 ], [ -124.712252192999955, 49.534869515000011 ], [ -124.712639177999932, 49.534872300000082 ], [ -124.713133397999982, 49.535198401000038 ], [ -124.713111204, 49.535306686000069 ], [ -124.71233380299995, 49.535949204000048 ], [ -124.712333723999961, 49.53594927400006 ], [ -124.712290991999964, 49.535984590000105 ], [ -124.710658171999953, 49.536972444000099 ], [ -124.710355884999927, 49.537155296000023 ], [ -124.709953389999939, 49.537521309000077 ], [ -124.709438712999926, 49.538616488000109 ], [ -124.708820192999923, 49.539535207000078 ], [ -124.708835806999957, 49.539706660000078 ], [ -124.708904419999897, 49.540459539000047 ], [ -124.707038417999968, 49.54043734800004 ], [ -124.707026616999926, 49.540858206000095 ], [ -124.703019839999968, 49.540810451000027 ], [ -124.703014964999923, 49.540983805000089 ], [ -124.702176721999962, 49.540973796000117 ], [ -124.702121045999945, 49.542952023000112 ], [ -124.696598160999926, 49.542885913000092 ], [ -124.696615505999915, 49.542272247000035 ], [ -124.692409041999952, 49.542221706000156 ], [ -124.692420505999948, 49.541817417000075 ], [ -124.692059154999953, 49.541813068000131 ], [ -124.69200658599999, 49.543666373000072 ], [ -124.688445150999954, 49.543623443000044 ], [ -124.688424583999975, 49.54434656100009 ], [ -124.683088097999985, 49.544282016000146 ], [ -124.683061805999955, 49.545202628000062 ], [ -124.68487612700001, 49.545224602000125 ], [ -124.68479392099999, 49.54810663300001 ], [ -124.687020120999975, 49.54813355400006 ], [ -124.686952059999925, 49.550523471000062 ], [ -124.68680928899991, 49.550598390000054 ], [ -124.686081597999959, 49.550356298000082 ], [ -124.685608493999922, 49.550292205000098 ], [ -124.68453309099999, 49.550362009000011 ], [ -124.683175893999987, 49.550263687000019 ], [ -124.682473493999979, 49.550346314000109 ], [ -124.68209031799995, 49.550468796000153 ], [ -124.68162159699996, 49.550934506000054 ], [ -124.68110749499999, 49.551229293000127 ], [ -124.68044838099992, 49.551391696000088 ], [ -124.678695005999941, 49.551444391000103 ] ], [ [ -124.681472830999979, 49.548899190000064 ], [ -124.681476167999946, 49.548782483000139 ], [ -124.679249938999973, 49.548755449000055 ], [ -124.679251151999949, 49.548713100000093 ], [ -124.678913865999931, 49.548709 ], [ -124.678909307999945, 49.548868056000074 ], [ -124.681472830999979, 49.548899190000064 ] ], [ [ -124.658341662999973, 49.534724810000107 ], [ -124.658381241000015, 49.533364258000084 ], [ -124.657216906999963, 49.533349872000059 ], [ -124.657177293999936, 49.534710423000057 ], [ -124.658341662999973, 49.534724810000107 ] ], [ [ -124.651786280999886, 49.537071359000031 ], [ -124.651767916999944, 49.537699485000083 ], [ -124.655306889999935, 49.537743346000113 ], [ -124.655335582999925, 49.536759327000048 ], [ -124.654447890999961, 49.536748336000095 ], [ -124.654437507999944, 49.53710422800004 ], [ -124.651786280999886, 49.537071359000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59620334", "BldgCostT": "39643334", "sL_LossRatio": "0.963110746866565", "sL_AssetLoss": "63205.4", "sL_BldgLoss": "60873.8", "sL_StrLoss": "51223.8", "sL_NStrLoss": "9650", "sL_ContLoss": "2331.6", "geom_point": "0101000020E61000005A945D59B7275FC061063254A8C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.632818190999927, 49.537699396000093 ], [ -124.632333010999929, 49.537670906000074 ], [ -124.631672116999965, 49.537770601000027 ], [ -124.630864595999952, 49.537601087000027 ], [ -124.630218694999925, 49.537717906000097 ], [ -124.629482611999961, 49.537566907000112 ], [ -124.628626917999952, 49.537228004000063 ], [ -124.628098210999951, 49.537136791000137 ], [ -124.627157979999978, 49.537105501000084 ], [ -124.62597379399989, 49.537256406000068 ], [ -124.625207211999935, 49.537051308000088 ], [ -124.624570116999976, 49.536565703000086 ], [ -124.62427537699989, 49.536480198000106 ], [ -124.623622398999927, 49.535904908000113 ], [ -124.622495091999937, 49.535264003000101 ], [ -124.621693400999945, 49.534464988000089 ], [ -124.620945783999943, 49.53442229100002 ], [ -124.620274692999914, 49.533765690000067 ], [ -124.619347798999982, 49.533292890000034 ], [ -124.618390295999973, 49.533170399000063 ], [ -124.617886198999955, 49.532979503000021 ], [ -124.617710601999931, 49.532703185000074 ], [ -124.61795049199992, 49.53246681300007 ], [ -124.618144003999987, 49.532049505000025 ], [ -124.618105014999955, 49.531868070000044 ], [ -124.6180632, 49.53167350800009 ], [ -124.617810302999914, 49.531505486000114 ], [ -124.617435819999969, 49.531467005000088 ], [ -124.616957805999974, 49.531643604000053 ], [ -124.616707500999922, 49.53161091200009 ], [ -124.616468785, 49.531111002000088 ], [ -124.61582428899996, 49.530804802000041 ], [ -124.615310942999926, 49.530224054000051 ], [ -124.614890116999945, 49.529748006000034 ], [ -124.614303093999922, 49.529594870000047 ], [ -124.614136807999941, 49.529551496000138 ], [ -124.612989011999971, 49.529522988000025 ], [ -124.612132491999944, 49.529948806000036 ], [ -124.612206818999965, 49.530514198000105 ], [ -124.611282101999947, 49.530095506000059 ], [ -124.610931481999955, 49.52983756600004 ], [ -124.610862528999959, 49.529786840000071 ], [ -124.610176722999967, 49.529282303000109 ], [ -124.609293903999955, 49.528467603000102 ], [ -124.609238209999916, 49.528081709000041 ], [ -124.609413305, 49.527484890000025 ], [ -124.609053409999888, 49.52663609600004 ], [ -124.608755915999893, 49.526432391000078 ], [ -124.607857833, 49.526074028000025 ], [ -124.606711001999912, 49.525616387000049 ], [ -124.606446906999949, 49.525547983000138 ], [ -124.605606417999979, 49.525630597000053 ], [ -124.6043176109999, 49.525945404000012 ], [ -124.603211804999901, 49.526365491000078 ], [ -124.60274360399994, 49.526795588000049 ], [ -124.602730005999888, 49.527245707000091 ], [ -124.603216808999946, 49.527373791000109 ], [ -124.603782705, 49.527769811000027 ], [ -124.60434031299998, 49.528725403000117 ], [ -124.604321182999982, 49.528737074000034 ], [ -124.604083508, 49.528882096000082 ], [ -124.603736015999942, 49.528850793000103 ], [ -124.603437515999971, 49.529007395000058 ], [ -124.602964582999917, 49.528914800000024 ], [ -124.602481986999962, 49.528984590000015 ], [ -124.602024101999959, 49.529296495000075 ], [ -124.601648110999946, 49.529256599000064 ], [ -124.601572202999961, 49.529015999000151 ], [ -124.600993804999959, 49.528664194000058 ], [ -124.600793913999979, 49.528441995000058 ], [ -124.600182817999936, 49.528386494000038 ], [ -124.600180141999971, 49.528380589000037 ], [ -124.600003696000016, 49.527993390000127 ], [ -124.599677414999974, 49.527728496000101 ], [ -124.59961640899999, 49.527513406000054 ], [ -124.59984370799999, 49.527329708000124 ], [ -124.59979982, 49.526835497000036 ], [ -124.599320599999956, 49.526536411000087 ], [ -124.598973651999984, 49.526188141000027 ], [ -124.598950301999963, 49.526164710000039 ], [ -124.5986431499999, 49.526002459000082 ], [ -124.598119790999959, 49.525726008000092 ], [ -124.597757821999949, 49.525190500000079 ], [ -124.597447392000021, 49.525015410000101 ], [ -124.597148091999969, 49.52513638900006 ], [ -124.596683807999909, 49.524899998000102 ], [ -124.596172413999923, 49.52487149300002 ], [ -124.595878997999961, 49.524767494000088 ], [ -124.595738990999934, 49.524767149000127 ], [ -124.595768571999955, 49.52379537500007 ], [ -124.599154793999929, 49.5238391050001 ], [ -124.599165654000018, 49.523481459000088 ], [ -124.603227417999946, 49.523533773000104 ], [ -124.603271473999939, 49.522078657000073 ], [ -124.608791727999971, 49.522149513000116 ], [ -124.608784359999916, 49.522393853000018 ], [ -124.609467019999954, 49.522402595000102 ], [ -124.609437765999971, 49.5233730960001 ], [ -124.610911923999964, 49.523391962000062 ], [ -124.610890228999935, 49.524112468000027 ], [ -124.612381012999933, 49.52413152500008 ], [ -124.612372009999945, 49.524430813000073 ], [ -124.613724979999972, 49.524448091000075 ], [ -124.613709100999984, 49.524976525000092 ], [ -124.615106860999958, 49.524994357000047 ], [ -124.615090833999943, 49.525528248000064 ], [ -124.61638354599998, 49.52554472400012 ], [ -124.616363988999964, 49.526196787000096 ], [ -124.619567066999934, 49.526237544000011 ], [ -124.619555926999965, 49.526609806000067 ], [ -124.622892264999948, 49.526652159000093 ], [ -124.622855848999933, 49.527871962000049 ], [ -124.623218026999922, 49.527876554000095 ], [ -124.623214053999931, 49.528009651000033 ], [ -124.624072703999929, 49.528020533000081 ], [ -124.624068953999966, 49.528146235000072 ], [ -124.625156369999942, 49.528160005000039 ], [ -124.625149637000035, 49.528385919000101 ], [ -124.625668608999945, 49.528392487000076 ], [ -124.625675846999968, 49.528149591000016 ], [ -124.62456140399999, 49.528135485000107 ], [ -124.624573177999977, 49.527740594000136 ], [ -124.624003007999946, 49.527733372000064 ], [ -124.624018338999974, 49.527219400000014 ], [ -124.623320412999988, 49.527210556000036 ], [ -124.623366765999918, 49.525657337000034 ], [ -124.620920017999936, 49.525626297000024 ], [ -124.620936124999915, 49.525087505000037 ], [ -124.620280827999949, 49.52507918200012 ], [ -124.620299175999904, 49.524465705000118 ], [ -124.615203473999898, 49.524400852000028 ], [ -124.615261256999958, 49.522475884000102 ], [ -124.613186116999941, 49.522449405000053 ], [ -124.613294264999979, 49.518851498000117 ], [ -124.615193387999952, 49.518875733000151 ], [ -124.615334300999947, 49.518902590000025 ], [ -124.61592390499996, 49.519200302000073 ], [ -124.616412491999967, 49.519345594000093 ], [ -124.616835278999972, 49.519610498000041 ], [ -124.617969700999964, 49.520026309000087 ], [ -124.618766235999914, 49.520522320000097 ], [ -124.618756519999948, 49.520846826000103 ], [ -124.619596133999906, 49.52085750100013 ], [ -124.620818842999981, 49.521299627000133 ], [ -124.62081325199992, 49.521486678000059 ], [ -124.621241680999972, 49.521492118000047 ], [ -124.621801191999936, 49.521833707000056 ], [ -124.622640890999946, 49.522605607000088 ], [ -124.623340404999908, 49.522820592000059 ], [ -124.623919572999966, 49.523203749000075 ], [ -124.625402897999948, 49.524184997000056 ], [ -124.626041512, 49.524724788000029 ], [ -124.627111913999926, 49.525294492000043 ], [ -124.62805939899999, 49.525946815000054 ], [ -124.629207806999929, 49.526848282000053 ], [ -124.629389005999954, 49.527295505000062 ], [ -124.629982684999973, 49.52770140100003 ], [ -124.630685794999962, 49.528446298000084 ], [ -124.630831996999945, 49.528732499000071 ], [ -124.631004602999923, 49.528531710000074 ], [ -124.632453015999886, 49.528403495000084 ], [ -124.634740301999955, 49.527832409000027 ], [ -124.635873984999975, 49.527429391000027 ], [ -124.63596946399997, 49.527388618 ], [ -124.635926967999964, 49.528825745000084 ], [ -124.639649559999953, 49.52887243100006 ], [ -124.639565868999924, 49.531710016000019 ], [ -124.63954344299998, 49.532470311000075 ], [ -124.634021905999987, 49.532401019000105 ], [ -124.634027154999956, 49.532223771000055 ], [ -124.63250372199991, 49.532245280000033 ], [ -124.63249874899995, 49.532096017000129 ], [ -124.632083957, 49.532090794000091 ], [ -124.632093802999918, 49.532386439000057 ], [ -124.634282580999951, 49.532413979000111 ], [ -124.634199305999985, 49.535226174000066 ], [ -124.634224253999932, 49.535226488000049 ], [ -124.634138219, 49.53813157800014 ], [ -124.633896403999927, 49.538152298000149 ], [ -124.632818190999927, 49.537699396000093 ] ], [ [ -124.625661299999948, 49.532329286000106 ], [ -124.625671357999948, 49.531991748000038 ], [ -124.622901387999946, 49.531956668000113 ], [ -124.62290013199997, 49.531998716000039 ], [ -124.62549699299997, 49.532031606000011 ], [ -124.625488186999959, 49.532327096000088 ], [ -124.625661299999948, 49.532329286000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10125833", "BldgCostT": "6983333", "sL_LossRatio": "0.977949791953058", "sL_AssetLoss": "10838.9", "sL_BldgLoss": "10599.9", "sL_StrLoss": "9390", "sL_NStrLoss": "1209.9", "sL_ContLoss": "239", "geom_point": "0101000020E61000001948C452AC2A5FC0CABBB05669C14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.665074836999935, 49.513647872000014 ], [ -124.665090087999928, 49.513120718000096 ], [ -124.663896924999975, 49.513106042000096 ], [ -124.663897240999987, 49.513095150000026 ], [ -124.659806572999955, 49.51304473700003 ], [ -124.659911063999971, 49.509446735000068 ], [ -124.663242101999955, 49.509487799000077 ], [ -124.663251046999932, 49.509179018000111 ], [ -124.663893773999916, 49.509186929000059 ], [ -124.663932297999963, 49.507856331000063 ], [ -124.66945094299993, 49.507924105000058 ], [ -124.669405504999972, 49.509500032000119 ], [ -124.673652780999973, 49.509552001000088 ], [ -124.673549360999942, 49.51315001600009 ], [ -124.670611505999915, 49.51311408600003 ], [ -124.670594174999962, 49.513715587000107 ], [ -124.665074836999935, 49.513647872000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25060833", "BldgCostT": "17283333", "sL_LossRatio": "0.975054328516067", "sL_AssetLoss": "24204.6", "sL_BldgLoss": "23600.8", "sL_StrLoss": "20590.9", "sL_NStrLoss": "3009.9", "sL_ContLoss": "603.8", "geom_point": "0101000020E61000004182E2C7D82C5FC09F3B7FE299C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.699399262999961, 49.529849518000091 ], [ -124.699400553000018, 49.52980376200005 ], [ -124.698643836999963, 49.529794699000078 ], [ -124.698745338999956, 49.526196748000075 ], [ -124.700229378999978, 49.526214518000032 ], [ -124.700245578999954, 49.525639523000116 ], [ -124.698666191999962, 49.525620611000136 ], [ -124.698691006999937, 49.524740962000052 ], [ -124.698494639999922, 49.524738608000071 ], [ -124.698556842999935, 49.522533708000054 ], [ -124.696051083000029, 49.522503651000093 ], [ -124.696087220999985, 49.52122507400005 ], [ -124.694175589999986, 49.52120210500005 ], [ -124.694277420999967, 49.517604114000036 ], [ -124.694639854999949, 49.517608471000074 ], [ -124.694663253999963, 49.516781421000125 ], [ -124.695302898999969, 49.516789109000086 ], [ -124.695322066999935, 49.516111237000068 ], [ -124.696459204999925, 49.516124893000011 ], [ -124.696465511999932, 49.515901646000032 ], [ -124.695158152, 49.515885944000033 ], [ -124.695259893999918, 49.51228792400007 ], [ -124.696222155999976, 49.512299483000099 ], [ -124.696272057000016, 49.51053324500009 ], [ -124.700501278999965, 49.51058394500005 ], [ -124.701769717, 49.511358345000147 ], [ -124.701730192999932, 49.512763207000049 ], [ -124.701935995000014, 49.512765668000043 ], [ -124.70196966899999, 49.511568590000103 ], [ -124.702116985999965, 49.511570351000039 ], [ -124.702181242999956, 49.511609579000016 ], [ -124.702561147999972, 49.511841531000037 ], [ -124.703631155999958, 49.512578299000019 ], [ -124.703985605999947, 49.512879888000043 ], [ -124.70399626499993, 49.512981490000101 ], [ -124.704185278999944, 49.513278874000093 ], [ -124.704536839999918, 49.514277361000048 ], [ -124.704552150999973, 49.515060378000037 ], [ -124.704537198999958, 49.515147148000061 ], [ -124.704537102999922, 49.515224314000129 ], [ -124.704522148999928, 49.515301436000044 ], [ -124.704510845999934, 49.515373569000062 ], [ -124.704485734999977, 49.515445921000037 ], [ -124.704460939999962, 49.515527243000051 ], [ -124.704436111999911, 49.515608576000034 ], [ -124.704397185999966, 49.515681091000076 ], [ -124.704372356999897, 49.515762425000055 ], [ -124.704347561999938, 49.515843745000055 ], [ -124.704336564999934, 49.51592488200005 ], [ -124.704311464999947, 49.515997200000101 ], [ -124.704286974999931, 49.51608752500006 ], [ -124.704248350999947, 49.51616904400008 ], [ -124.704209409999947, 49.516241594000029 ], [ -124.704183991999969, 49.516304942000026 ], [ -124.704172667999927, 49.51637705300007 ], [ -124.704147217999946, 49.516440414000051 ], [ -124.704135915, 49.516512547000104 ], [ -124.704124307999933, 49.516575676000109 ], [ -124.704113624999948, 49.516665781000064 ], [ -124.704100437999969, 49.516683973000042 ], [ -124.704100738999955, 49.516692978000052 ], [ -124.704089754999984, 49.516774079000065 ], [ -124.70407841699992, 49.516846225000045 ], [ -124.704080940999987, 49.516918158000145 ], [ -124.704056146999932, 49.516999482000053 ], [ -124.704031349999951, 49.517080802000052 ], [ -124.704006518999975, 49.517162137000113 ], [ -124.703968232999927, 49.517252647000085 ], [ -124.70392960599996, 49.517334166000055 ], [ -124.703905416999959, 49.517433495000034 ], [ -124.703866790999925, 49.517515014000011 ], [ -124.703845513999937, 49.517568043000082 ], [ -124.70384137399995, 49.517578363000048 ], [ -124.703802748, 49.51765988300005 ], [ -124.703764122999971, 49.517741401000102 ], [ -124.703752816999923, 49.51781353399999 ], [ -124.703741511999951, 49.517885668000062 ], [ -124.703730207999953, 49.51795780100008 ], [ -124.703732375999934, 49.518020721000077 ], [ -124.703734900999933, 49.518092658000064 ], [ -124.703724216999959, 49.518182763000027 ], [ -124.703726403999966, 49.518245708000087 ], [ -124.70372890799996, 49.518317622000026 ], [ -124.703731717999986, 49.51839853900001 ], [ -124.703734189000016, 49.518470464000075 ], [ -124.703736376999942, 49.518533408000039 ], [ -124.703766506999969, 49.518604940000046 ], [ -124.703796617999942, 49.518676449000047 ], [ -124.703840241999927, 49.518738791 ], [ -124.703883880999925, 49.518801098000068 ], [ -124.703913992999915, 49.518872607000084 ], [ -124.703944408, 49.518953120000049 ], [ -124.703975161999921, 49.519042624000114 ], [ -124.70400495599992, 49.519105163000063 ], [ -124.704035404999956, 49.519185664000091 ], [ -124.7040796499999, 49.519265978000114 ], [ -124.704137706999958, 49.519346073000115 ], [ -124.704167787999921, 49.519417595000036 ], [ -124.704225222999952, 49.519479718000092 ], [ -124.704268542999898, 49.519533056000078 ], [ -124.704312147999971, 49.519595376000034 ], [ -124.704355807999889, 49.519657706000032 ], [ -124.704399414999941, 49.51972002600008 ], [ -124.704415413999982, 49.519782751000101 ], [ -124.704431716, 49.519854479000124 ], [ -124.704448321999948, 49.519935213000089 ], [ -124.704464941999944, 49.520015910000055 ], [ -124.704498204999979, 49.520177328000045 ], [ -124.704500699000036, 49.520249277000083 ], [ -124.704517033999977, 49.520320992000094 ], [ -124.704519843999933, 49.520401910000011 ], [ -124.704535506999932, 49.520455644000066 ], [ -124.704536149, 49.520473639 ], [ -124.704541581999948, 49.520500105000053 ], [ -124.704552768999989, 49.520554337000092 ], [ -124.704582903999977, 49.520625868000067 ], [ -124.704599828999974, 49.520715570000085 ], [ -124.704630246999983, 49.520796083000057 ], [ -124.704646888999974, 49.5208768030001 ], [ -124.704677003, 49.520948313000048 ], [ -124.70469362399993, 49.521029009000053 ], [ -124.704724381999938, 49.521118514000115 ], [ -124.704741325999962, 49.52120823900006 ], [ -124.704744116999976, 49.521289133000018 ], [ -124.704753017999977, 49.521336310999985 ], [ -124.704761062999964, 49.521378859000038 ], [ -124.70479151499994, 49.521459359000062 ], [ -124.704807819999928, 49.521531089000156 ], [ -124.704838238999926, 49.521611602000121 ], [ -124.70485516599993, 49.521701304000025 ], [ -124.704858315, 49.521791213000071 ], [ -124.704888768, 49.521871713000067 ], [ -124.704933302999933, 49.521961011000016 ], [ -124.704964061999959, 49.522050515000068 ], [ -124.704967174999922, 49.522140437000061 ], [ -124.704984136999968, 49.522230127000078 ], [ -124.705001365999976, 49.522328833000074 ], [ -124.70501829399997, 49.522418535000064 ], [ -124.705034936999951, 49.522499256000096 ], [ -124.705051863, 49.522588959000068 ], [ -124.70505471, 49.522669863000033 ], [ -124.705085750999956, 49.522768352000078 ], [ -124.705102698999923, 49.522858076000034 ], [ -124.705133437999933, 49.522947558000041 ], [ -124.705150364999938, 49.523037260000102 ], [ -124.705181122999974, 49.523126765000093 ], [ -124.705211881999944, 49.52321626900001 ], [ -124.70524292499999, 49.523314756000062 ], [ -124.705259232999964, 49.523386486000099 ], [ -124.705289368999971, 49.523458018000149 ], [ -124.705319485999951, 49.523529528000054 ], [ -124.705349602999917, 49.523601038000088 ], [ -124.705393552999965, 49.523672348000112 ], [ -124.705437522999901, 49.523743683000134 ], [ -124.705481418999966, 49.523814985000044 ], [ -124.705538861, 49.523877107000011 ], [ -124.70559661, 49.523948234000045 ], [ -124.705640221999914, 49.524010554000029 ], [ -124.70565467599999, 49.524028330000078 ], [ -124.705697699999916, 49.52407266500007 ], [ -124.70578213099999, 49.524116409000101 ], [ -124.705950974999922, 49.524203875000133 ], [ -124.706035724999964, 49.524256588000057 ], [ -124.706106360999982, 49.524300518000125 ], [ -124.70617696, 49.524344459000112 ], [ -124.706274866999976, 49.524378992000059 ], [ -124.706345503999913, 49.524422920000092 ], [ -124.706430274999931, 49.524475656000057 ], [ -124.706500908999914, 49.524519584000082 ], [ -124.706571510999979, 49.524563526000037 ], [ -124.706656566999982, 49.524625243000081 ], [ -124.706727827999941, 49.524687145000023 ], [ -124.70677019499999, 49.524713519000073 ], [ -124.706855251999968, 49.52477523500005 ], [ -124.706940002999914, 49.524827948000038 ], [ -124.707010944999936, 49.524880881000115 ], [ -124.7070825099999, 49.524951787000099 ], [ -124.707154357999968, 49.525031674000054 ], [ -124.70719799299998, 49.525094016000033 ], [ -124.707241642999946, 49.525156323000026 ], [ -124.707299056999901, 49.525218458000076 ], [ -124.707357128999945, 49.52529855300007 ], [ -124.707400744999973, 49.525360872000064 ], [ -124.707445321999941, 49.525450158000083 ], [ -124.707476391999947, 49.525548666000105 ], [ -124.70749302099992, 49.525629366000054 ], [ -124.707509046999974, 49.525692114000059 ], [ -124.707525980999947, 49.525781817000087 ], [ -124.707542608999944, 49.52586251500005 ], [ -124.707531932999956, 49.525952624000112 ], [ -124.707548242999948, 49.526024353000011 ], [ -124.707550467999909, 49.526088325000032 ], [ -124.707550721999922, 49.52609628200004 ], [ -124.707567065999967, 49.52616799900008 ], [ -124.707569545999903, 49.526239926000102 ], [ -124.707572414999944, 49.526320856000048 ], [ -124.707574893999961, 49.52639278400008 ], [ -124.707591524999913, 49.526473483000046 ], [ -124.707607834999962, 49.526545212000073 ], [ -124.70762384199999, 49.526607939000016 ], [ -124.707640152999957, 49.526679668000092 ], [ -124.707656497999977, 49.526751384000043 ], [ -124.70767247, 49.52681412400004 ], [ -124.707702628999954, 49.52688562100014 ], [ -124.707733359999935, 49.526975139000079 ], [ -124.707763199999931, 49.527037667000052 ], [ -124.707806819000012, 49.527099987000064 ], [ -124.70780715799999, 49.527108979000104 ], [ -124.707837586999943, 49.527189493000066 ], [ -124.70786833699999, 49.527278976000019 ], [ -124.707912278999984, 49.527350321000064 ], [ -124.707943027999988, 49.527439805000121 ], [ -124.707987607999954, 49.52752909 ], [ -124.708031871999978, 49.527609406000067 ], [ -124.70804850199994, 49.52769010500004 ], [ -124.708065118999954, 49.527770839000077 ], [ -124.708081464999964, 49.527842557000014 ], [ -124.708098399999983, 49.527932260000092 ], [ -124.708114712999986, 49.52800399100007 ], [ -124.708145177999938, 49.528084492000097 ], [ -124.70817530399998, 49.528156002000074 ], [ -124.708191615999937, 49.528227731000094 ], [ -124.708220791999935, 49.528296983000054 ], [ -124.70654223799994, 49.528277008000025 ], [ -124.706498649, 49.529831448000103 ], [ -124.70492347699998, 49.529812679000031 ], [ -124.704920589999958, 49.529915487000046 ], [ -124.699399262999961, 49.529849518000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139375917", "BldgCostT": "93911667", "sL_LossRatio": "0.97175975630981", "sL_AssetLoss": "139619.9", "sL_BldgLoss": "135677", "sL_StrLoss": "118822.9", "sL_NStrLoss": "16854.1", "sL_ContLoss": "3942.9", "geom_point": "0101000020E610000024945BE6762A5FC0CF92425187C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.668376618, 49.544037991000053 ], [ -124.668265813999966, 49.544030600000092 ], [ -124.668155253999956, 49.544032205000065 ], [ -124.668016770999913, 49.54402519800005 ], [ -124.667906242999948, 49.544026789000021 ], [ -124.66776805899994, 49.544028787000094 ], [ -124.667657531999907, 49.544030377000063 ], [ -124.667408818999959, 49.544033965000061 ], [ -124.667256829999957, 49.544036142000067 ], [ -124.667118366999915, 49.544029157000054 ], [ -124.666966377999984, 49.544031333000071 ], [ -124.666842031999948, 49.544033138000096 ], [ -124.666731484999971, 49.544034705000144 ], [ -124.666607102999976, 49.544036521000066 ], [ -124.666482757, 49.544038325000045 ], [ -124.66633076699992, 49.54404049900009 ], [ -124.666178466999938, 49.544033706000079 ], [ -124.666040316999897, 49.544035690000094 ], [ -124.665929788999932, 49.544037277000022 ], [ -124.66577746900002, 49.544030459000098 ], [ -124.665680746999953, 49.544031869000065 ], [ -124.665418213999942, 49.544035666000127 ], [ -124.66532121099999, 49.544028035000053 ], [ -124.665196828999967, 49.544029850000079 ], [ -124.66505867799999, 49.54403183000003 ], [ -124.664784175999927, 49.544089752000062 ], [ -124.664781077999976, 49.543999847000094 ], [ -124.664778948999952, 49.543936896000041 ], [ -124.664775903999981, 49.543847 ], [ -124.664773170999979, 49.543766075000065 ], [ -124.664784220999962, 49.543684948000156 ], [ -124.664781780999959, 49.543613026000024 ], [ -124.66477934199996, 49.543541106000056 ], [ -124.664776574999948, 49.543460193000044 ], [ -124.664774114999958, 49.543388250000085 ], [ -124.664785184999943, 49.543307145000057 ], [ -124.664782449999947, 49.54322621900004 ], [ -124.664779387999928, 49.543136303000033 ], [ -124.664789851999956, 49.543037223000113 ], [ -124.664786787999972, 49.542947306000073 ], [ -124.664797838999959, 49.542866178000104 ], [ -124.664794827999941, 49.542776271000029 ], [ -124.664791157999957, 49.542668378000094 ], [ -124.664801273999956, 49.542560285000015 ], [ -124.664797935999914, 49.542461385000117 ], [ -124.664808380999929, 49.542362284000063 ], [ -124.664804731999951, 49.542254414000091 ], [ -124.664814275999944, 49.542128334000019 ], [ -124.664809982999984, 49.54200244500008 ], [ -124.664819823999949, 49.54188536900007 ], [ -124.664817713, 49.541822442000075 ], [ -124.664827223999964, 49.541696373000093 ], [ -124.664836768999947, 49.541570293000071 ], [ -124.664832495999974, 49.541444427000087 ], [ -124.664830364999915, 49.54138147599999 ], [ -124.664840810999976, 49.541282376000076 ], [ -124.664837141999953, 49.54117448500012 ], [ -124.66483317699999, 49.541057588000058 ], [ -124.664829198999939, 49.540940726000024 ], [ -124.664839347999958, 49.540832622000089 ], [ -124.664822191999974, 49.54073393700002 ], [ -124.66481879899996, 49.540635027000064 ], [ -124.664815129999923, 49.540527137000069 ], [ -124.664812087, 49.540437242000102 ], [ -124.66479551499998, 49.54035650900002 ], [ -124.664806287999966, 49.540266400000107 ], [ -124.664803224999957, 49.540176484000021 ], [ -124.664799852000016, 49.540077598000053 ], [ -124.664810625999976, 49.539987490000023 ], [ -124.664821398999933, 49.539897381000081 ], [ -124.664832172999965, 49.539807273000079 ], [ -124.664842617999966, 49.539708172000111 ], [ -124.664867173999966, 49.539617863000046 ], [ -124.664877946999951, 49.53952775400009 ], [ -124.664888995999959, 49.539446627000089 ], [ -124.664899769999963, 49.539356519000073 ], [ -124.664897001999933, 49.539275607000022 ], [ -124.664896705999965, 49.539266602000041 ], [ -124.664908049999951, 49.539194481000052 ], [ -124.664905040999926, 49.539104575000046 ], [ -124.664904035999967, 49.539075178000076 ], [ -124.66490260099998, 49.539032655 ], [ -124.664913340999988, 49.538942560000073 ], [ -124.664910585999934, 49.538861613000108 ], [ -124.664907541999952, 49.538771719000124 ], [ -124.664901413999957, 49.538591888000099 ], [ -124.664898371, 49.53850199300004 ], [ -124.664895307999956, 49.538412077000046 ], [ -124.664892572, 49.538331154000105 ], [ -124.664889803999955, 49.538250241000121 ], [ -124.664887365999931, 49.538178323000125 ], [ -124.664881256999934, 49.53799851300009 ], [ -124.664878193999954, 49.537908597000076 ], [ -124.664872727000031, 49.537746748000053 ], [ -124.664869627999934, 49.53765684600004 ], [ -124.664879796, 49.537548764000071 ], [ -124.664876125999967, 49.537440874 ], [ -124.664886569999965, 49.537341775000122 ], [ -124.664883231999966, 49.537242876000079 ], [ -124.664879563999989, 49.537134986000055 ], [ -124.66488971199999, 49.537026883000074 ], [ -124.664886043, 49.536918993000086 ], [ -124.664896209999966, 49.536810911000025 ], [ -124.664892543999926, 49.53670302200004 ], [ -124.664888544999926, 49.536586139000057 ], [ -124.664898417999936, 49.536469053000054 ], [ -124.664894714999932, 49.536361176000135 ], [ -124.664891080999951, 49.536253275000057 ], [ -124.664873873, 49.536154581000126 ], [ -124.664870237999963, 49.53604667900003 ], [ -124.664866569999944, 49.535938791000014 ], [ -124.664849066999977, 49.535831093000127 ], [ -124.664845726999943, 49.535732195000108 ], [ -124.664842662999973, 49.535642280000083 ], [ -124.664836018999893, 49.535548095000095 ], [ -124.664810938999963, 49.535436711000088 ], [ -124.664794212999965, 49.535362429000081 ], [ -124.66480293799999, 49.533483814000128 ], [ -124.664808774, 49.532224943000109 ], [ -124.664809527999978, 49.532066692000093 ], [ -124.664147192999948, 49.531954162000048 ], [ -124.663745267999929, 49.531767462000055 ], [ -124.661981084999951, 49.529842681000083 ], [ -124.661767684999944, 49.529733224000019 ], [ -124.659613755999914, 49.528628459000082 ], [ -124.659227365999968, 49.528384344000067 ], [ -124.658965598999956, 49.528173256000031 ], [ -124.658513066999888, 49.527687170000036 ], [ -124.656676628999918, 49.526124010000018 ], [ -124.654531133999953, 49.524933850000075 ], [ -124.654461993, 49.524895507000075 ], [ -124.654425233999973, 49.524875101000077 ], [ -124.653617114999932, 49.524652747000083 ], [ -124.653559012999935, 49.524647816000048 ], [ -124.652821095999968, 49.524585272000124 ], [ -124.651284300999961, 49.524561611000145 ], [ -124.65056560799998, 49.524550537000096 ], [ -124.64853491599996, 49.524519216000108 ], [ -124.648305605999965, 49.524515674000078 ], [ -124.648319114999978, 49.52445421800013 ], [ -124.648319122999936, 49.524383982000131 ], [ -124.64831916699994, 49.524313737000114 ], [ -124.64830571600001, 49.524243494000068 ], [ -124.648305724999901, 49.524173260000083 ], [ -124.648319216999965, 49.524094238000046 ], [ -124.648319255999979, 49.523997664000099 ], [ -124.64831929199994, 49.523918634000019 ], [ -124.648332821999929, 49.523822055000018 ], [ -124.64833286699999, 49.523734263000073 ], [ -124.648332865999976, 49.523655247000121 ], [ -124.648346367999949, 49.523585007000086 ], [ -124.648359861999964, 49.52350598500005 ], [ -124.648359906999929, 49.523418195000012 ], [ -124.648359963999951, 49.523304041000131 ], [ -124.648373467999988, 49.523216258000041 ], [ -124.648373511999978, 49.523110866000088 ], [ -124.64838702, 49.523005539000096 ], [ -124.648387075999949, 49.522891385000051 ], [ -124.648400587999944, 49.522777241000057 ], [ -124.648414119999956, 49.522680662000106 ], [ -124.648414114999966, 49.522654334000052 ], [ -124.648412011999937, 49.522591387000048 ], [ -124.648408983999957, 49.52250147700007 ], [ -124.648405956999937, 49.522411565000063 ], [ -124.648404145999962, 49.522357623000097 ], [ -124.648402604999916, 49.52231266200004 ], [ -124.6483864, 49.522240924000094 ], [ -124.648385475999959, 49.522213958000052 ], [ -124.648382177, 49.522115065000101 ], [ -124.648392635999954, 49.522015950000089 ], [ -124.64838933799993, 49.521917057000095 ], [ -124.648385714999947, 49.521809173000079 ], [ -124.648385099, 49.52179117700009 ], [ -124.64839590299998, 49.521701077000024 ], [ -124.648392549999969, 49.521602175000041 ], [ -124.64838919799999, 49.521503272000132 ], [ -124.64840032799998, 49.521422161000039 ], [ -124.648394546999924, 49.521251322000118 ], [ -124.648405350999937, 49.52116122100005 ], [ -124.648402650999955, 49.521080300000044 ], [ -124.648399025999979, 49.520972417000117 ], [ -124.648410102999947, 49.520891299000034 ], [ -124.648406458999958, 49.520783392000112 ], [ -124.64840316199998, 49.520684499000033 ], [ -124.648413912999942, 49.520594389000053 ], [ -124.648424118999927, 49.520486316000117 ], [ -124.648421091999964, 49.520396404000074 ], [ -124.64843187699995, 49.520306281000067 ], [ -124.648428850999977, 49.520216371000096 ], [ -124.648439654999891, 49.520126271000059 ], [ -124.648437225999928, 49.520054334000065 ], [ -124.648436009999955, 49.520018364000066 ], [ -124.64843452599996, 49.519973414000106 ], [ -124.648445599999931, 49.519892296000116 ], [ -124.648442574999947, 49.519802385000041 ], [ -124.648440436999962, 49.51973945200006 ], [ -124.648451837999971, 49.5196673250001 ], [ -124.648449734999957, 49.5196043790001 ], [ -124.648447305999966, 49.519532442000084 ], [ -124.64845751299994, 49.519424368000074 ], [ -124.648454776999969, 49.51934346200003 ], [ -124.648465561999942, 49.51925334 ], [ -124.648462861999988, 49.519172419 ], [ -124.648460106999934, 49.51909149100009 ], [ -124.648457696999941, 49.519019577000087 ], [ -124.64846877199993, 49.518938458 ], [ -124.648466397999982, 49.518866531000121 ], [ -124.648463642999928, 49.518785602000037 ], [ -124.648461233999953, 49.518713688000055 ], [ -124.648458805999923, 49.518641751000132 ], [ -124.648456374999952, 49.518569813000035 ], [ -124.648454290999936, 49.518506891000079 ], [ -124.648451264999935, 49.51841698 ], [ -124.648448237999972, 49.518327069000087 ], [ -124.648458696999924, 49.518227956000104 ], [ -124.648456288999938, 49.518156042000037 ], [ -124.64845358800001, 49.518075123000067 ], [ -124.648450886999967, 49.517994204000033 ], [ -124.648448456999986, 49.517922267000131 ], [ -124.648459823999957, 49.517850153000111 ], [ -124.648457429999937, 49.51777820500007 ], [ -124.648455020999961, 49.517706289000031 ], [ -124.648452590999923, 49.517634352000044 ], [ -124.648450161999961, 49.517562416000054 ], [ -124.648460641999918, 49.517463325000087 ], [ -124.648458210999948, 49.517391388000064 ], [ -124.648455801999916, 49.517319474000075 ], [ -124.648466313999933, 49.517220371000064 ], [ -124.648463557999932, 49.517139442000058 ], [ -124.648461149999946, 49.517067528000055 ], [ -124.648471934999947, 49.516977405 ], [ -124.648469524999925, 49.516905491000081 ], [ -124.648480925999976, 49.516833366000043 ], [ -124.648478495999939, 49.516761429000091 ], [ -124.648475794999982, 49.516680511000061 ], [ -124.648487162999942, 49.516608397000013 ], [ -124.648485059, 49.516545452000024 ], [ -124.648482033000022, 49.516455542000095 ], [ -124.648481707999977, 49.516446551000122 ], [ -124.64839856699993, 49.516438727000043 ], [ -124.648301906999933, 49.516440119000087 ], [ -124.648108567999898, 49.516442880000078 ], [ -124.647983956999923, 49.516435645000072 ], [ -124.64783208899992, 49.516437814000057 ], [ -124.647693993999923, 49.516439784000113 ], [ -124.647555573, 49.516432761000054 ], [ -124.647403652, 49.516434920000073 ], [ -124.647223851000021, 49.516428485000091 ], [ -124.64707192799996, 49.516430644000131 ], [ -124.646906228999924, 49.516433 ], [ -124.646768424999962, 49.516443971000108 ], [ -124.646616228999974, 49.51643714800008 ], [ -124.646478134999938, 49.516439114000072 ], [ -124.646340021999933, 49.516441060000076 ], [ -124.646174017999954, 49.516434447000115 ], [ -124.64603590199999, 49.516436390000059 ], [ -124.645897828999964, 49.516438380000054 ], [ -124.645745613999978, 49.516431533000102 ], [ -124.64557987900001, 49.516433900000102 ], [ -124.645441786999953, 49.516435866000052 ], [ -124.64528959099999, 49.516429039000066 ], [ -124.645151496999958, 49.516431005000086 ], [ -124.644999607999978, 49.516433146000054 ], [ -124.644833874999932, 49.51643551300009 ], [ -124.644681679999934, 49.516428686000054 ], [ -124.644543856999988, 49.516439632000093 ], [ -124.64440576299998, 49.516441597000011 ], [ -124.644281496999923, 49.516443372000019 ], [ -124.644143401999955, 49.516445337000086 ], [ -124.644019409999899, 49.516456093000045 ], [ -124.643922439999983, 49.51644845500013 ], [ -124.643798175000015, 49.516450229000085 ], [ -124.643701495999935, 49.516451594000088 ], [ -124.643591004999948, 49.516453170000091 ], [ -124.64349373099999, 49.516436561000077 ], [ -124.64339629399997, 49.516414333000085 ], [ -124.64338235699995, 49.516411160000068 ], [ -124.643297991999958, 49.516367398000028 ], [ -124.643240328000019, 49.51629624900005 ], [ -124.643196201999956, 49.516215907000095 ], [ -124.643138557999947, 49.516144780000033 ], [ -124.643094995999917, 49.516082424000146 ], [ -124.643065293999925, 49.516019867000111 ], [ -124.643021462, 49.515948529000049 ], [ -124.642977898999959, 49.515886172000073 ], [ -124.642920254000018, 49.515815046000057 ], [ -124.642862914999967, 49.515752888000115 ], [ -124.642819081999932, 49.515681550000068 ], [ -124.642747319999955, 49.515601609000036 ], [ -124.64270348699992, 49.515530271000067 ], [ -124.642659655, 49.515458933000033 ], [ -124.642602588, 49.515405756000064 ], [ -124.642558482999974, 49.515325438000076 ], [ -124.642514631999973, 49.515254077000129 ], [ -124.642457262, 49.515191932000022 ], [ -124.642399598999972, 49.515120782000039 ], [ -124.642342571999919, 49.515067651000066 ], [ -124.642271116, 49.514996678000102 ], [ -124.64222728599999, 49.514925341000044 ], [ -124.642155849999966, 49.514854390000039 ], [ -124.642084703999899, 49.514792443000069 ], [ -124.642026753999957, 49.514712290000041 ], [ -124.641955898999967, 49.514659346000066 ], [ -124.641884734999977, 49.514597377000037 ], [ -124.641827400999887, 49.514535219 ], [ -124.641755642999968, 49.514455278000106 ], [ -124.641684171999941, 49.514384339000046 ], [ -124.641585101, 49.514313788000038 ], [ -124.641499549999949, 49.514234022000053 ], [ -124.641414576999921, 49.514172262000031 ], [ -124.641315506999902, 49.514101712000119 ], [ -124.641230245999935, 49.514030949000059 ], [ -124.64113146599999, 49.51396940100004 ], [ -124.641032699999982, 49.513907818000042 ], [ -124.640933629999978, 49.513837266000031 ], [ -124.640862488999957, 49.513775318000128 ], [ -124.64077722899999, 49.513704556000071 ], [ -124.640692259000019, 49.51364279799999 ], [ -124.640593494999933, 49.513581214000048 ], [ -124.640522354000026, 49.513519266000074 ], [ -124.640437382999963, 49.513457508000087 ], [ -124.640352125999968, 49.513386745000133 ], [ -124.640267482999946, 49.513333976000077 ], [ -124.640168737999943, 49.513272414000042 ], [ -124.640084040999952, 49.513219637000056 ], [ -124.639985567999972, 49.513167057000018 ], [ -124.63988742, 49.513123469000021 ], [ -124.63977546299995, 49.513080090000095 ], [ -124.639663483999968, 49.51303669100006 ], [ -124.639537397999916, 49.512984531000093 ], [ -124.63942542099997, 49.512941131000041 ], [ -124.639299346999948, 49.512888937000163 ], [ -124.639159733999946, 49.512845935 ], [ -124.639034004000024, 49.512802754000091 ], [ -124.638894068999932, 49.51275076100012 ], [ -124.638754511999934, 49.512707768000084 ], [ -124.638614287999985, 49.512646771000036 ], [ -124.638474405999915, 49.512594786000065 ], [ -124.638320732999944, 49.512542977000095 ], [ -124.63819462699999, 49.512490794 ], [ -124.638054152999942, 49.51242083700005 ], [ -124.63792808399991, 49.512368641000137 ], [ -124.637815808999932, 49.512316270000035 ], [ -124.63770324299999, 49.512254894000066 ], [ -124.637690859999935, 49.512247185000078 ], [ -124.637590352999936, 49.512184527000073 ], [ -124.63747779, 49.512123152000115 ], [ -124.637392539999937, 49.512052386000079 ], [ -124.63730757799999, 49.51199062500006 ], [ -124.637236425999959, 49.511928654 ], [ -124.637222346999977, 49.511919881000054 ], [ -124.637165292999939, 49.511866703000074 ], [ -124.637080653999973, 49.511813932000102 ], [ -124.636995692999946, 49.511752171000076 ], [ -124.636924541999988, 49.511690199000085 ], [ -124.636853732999924, 49.51163724000002 ], [ -124.636783193999975, 49.511593263000066 ], [ -124.636684729999942, 49.511540680000032 ], [ -124.636600362999957, 49.511496891000043 ], [ -124.636515725999971, 49.511444120000114 ], [ -124.636417549999948, 49.511400540000061 ], [ -124.636292400999963, 49.511375306000069 ], [ -124.636153084999975, 49.51134130500003 ], [ -124.636014126999953, 49.51131628100007 ], [ -124.635875134999949, 49.511291269000047 ], [ -124.635750272999985, 49.51127504 ], [ -124.635611280999981, 49.511250028000099 ], [ -124.635472913999962, 49.511242976000055 ], [ -124.635334191999945, 49.511226945000082 ], [ -124.63522283699993, 49.511201534000058 ], [ -124.635097384999966, 49.511167332000063 ], [ -124.634985705999966, 49.51113293 ], [ -124.634887244999959, 49.51108034500006 ], [ -124.634802612, 49.511027572000025 ], [ -124.634690056999943, 49.51096619400009 ], [ -124.634633023999967, 49.51091303700013 ], [ -124.634618316999962, 49.510886248000048 ], [ -124.634589477999924, 49.51085067800004 ], [ -124.634558559999945, 49.510752164000053 ], [ -124.634541768999981, 49.510662430000075 ], [ -124.634539061999973, 49.510581526000045 ], [ -124.63453639, 49.510500610000079 ], [ -124.634547489999989, 49.510419495000093 ], [ -124.634558301999974, 49.510329377000062 ], [ -124.634583519, 49.510257080000066 ], [ -124.63460842799995, 49.510175755000041 ], [ -124.634647163999944, 49.510094242000072 ], [ -124.63469999599999, 49.51002152500012 ], [ -124.634766331999955, 49.509939628000033 ], [ -124.634805677999907, 49.509876111 ], [ -124.634859118999927, 49.50982138800002 ], [ -124.634912238999917, 49.509757673000053 ], [ -124.63496535899999, 49.509693959000096 ], [ -124.635018799999955, 49.509639236000041 ], [ -124.63508575900002, 49.509575299000126 ], [ -124.635139168999942, 49.509520588000065 ], [ -124.635233729999953, 49.509456266000036 ], [ -124.635287459, 49.509410546000012 ], [ -124.635367921999887, 49.509337430000052 ], [ -124.635434256999957, 49.509255533000029 ], [ -124.635515296999955, 49.509200425000103 ], [ -124.635582240999938, 49.509136523000109 ], [ -124.635648878999973, 49.509063594000089 ], [ -124.635715499999947, 49.508990700000012 ], [ -124.635782749000015, 49.508935767000089 ], [ -124.63583618899996, 49.50888104200007 ], [ -124.63588962599999, 49.508826319000079 ], [ -124.635957161999954, 49.508780389000044 ], [ -124.636023494999961, 49.508698491000075 ], [ -124.636076320999905, 49.508625773000055 ], [ -124.636129436999909, 49.508562058000095 ], [ -124.636182606999952, 49.508498353000071 ], [ -124.636236026999967, 49.508443608000086 ], [ -124.636331159999941, 49.508397292000083 ], [ -124.636425735999964, 49.50833299100001 ], [ -124.63652025799999, 49.508268679000082 ], [ -124.636601328999916, 49.508213558000094 ], [ -124.636696463999954, 49.50816724200007 ], [ -124.63676338499999, 49.50810331600006 ], [ -124.636844457, 49.508048195000065 ], [ -124.636953415999955, 49.5080016900001 ], [ -124.637143713999976, 49.507909045000076 ], [ -124.637225055000016, 49.50786290200012 ], [ -124.637305801999929, 49.507798790000066 ], [ -124.637373009999919, 49.507743868000041 ], [ -124.637454368999926, 49.50769774900003 ], [ -124.637521610999954, 49.507642814000029 ], [ -124.637616452999936, 49.507587495000088 ], [ -124.637697198999916, 49.507523380000094 ], [ -124.637764427999912, 49.507468481000132 ], [ -124.637845495999926, 49.507413357000118 ], [ -124.637912413999956, 49.50734943100008 ], [ -124.637979351999931, 49.507285528000125 ], [ -124.638046270999936, 49.507221602000087 ], [ -124.638099704999917, 49.507166876000021 ], [ -124.638152815999959, 49.507103163000075 ], [ -124.638205960999926, 49.50703943300006 ], [ -124.638258782999955, 49.506966714000022 ], [ -124.638326007999964, 49.506911815000095 ], [ -124.63839292499992, 49.506847888000024 ], [ -124.638459571999988, 49.506774981000106 ], [ -124.638526509, 49.506711077000077 ], [ -124.638607554999936, 49.50665593100009 ], [ -124.638674491999964, 49.5065920280001 ], [ -124.638714980999964, 49.506564468000121 ], [ -124.638741730999982, 49.506537093000091 ], [ -124.63880866699995, 49.506473189000076 ], [ -124.638875871999971, 49.506418265000079 ], [ -124.638942786999962, 49.506354339000033 ], [ -124.639023257999909, 49.506281243000068 ], [ -124.639104000999964, 49.506217129000071 ], [ -124.639170912999987, 49.506153202000142 ], [ -124.63925135, 49.506080119000124 ], [ -124.63926641099998, 49.506064686000073 ], [ -124.639331478999935, 49.505998009000059 ], [ -124.639398735, 49.505943095000077 ], [ -124.639452435999928, 49.505897351000051 ], [ -124.639469510999973, 49.505888364 ], [ -124.63954105000002, 49.505832315000085 ], [ -124.639558125999955, 49.505823326 ], [ -124.639623171999986, 49.505582998000065 ], [ -124.639625749999936, 49.505516855000117 ], [ -124.639640655999969, 49.505130587000025 ], [ -124.639595163999942, 49.504941938000051 ], [ -124.639447659999959, 49.504748431000046 ], [ -124.639252808999942, 49.504570520000037 ], [ -124.638824855999971, 49.504340202000058 ], [ -124.638201783999975, 49.504083132000041 ], [ -124.637763342999961, 49.503835561000123 ], [ -124.637587860999972, 49.503702006000083 ], [ -124.637488583999968, 49.503558572000031 ], [ -124.637481848999983, 49.503459512000035 ], [ -124.637577243999914, 49.503267246000085 ], [ -124.638076779999921, 49.502753533000103 ], [ -124.638160742999943, 49.502667170000102 ], [ -124.638224818999959, 49.502366539000043 ], [ -124.638363634999934, 49.502245898000062 ], [ -124.639557510999907, 49.502005302000079 ], [ -124.641005315000015, 49.501943338000054 ], [ -124.641704709999956, 49.50191341699999 ], [ -124.64236600199996, 49.501715627000024 ], [ -124.642393767999963, 49.501700655000036 ], [ -124.642298762999985, 49.500601061000062 ], [ -124.642782562999969, 49.500008384000076 ], [ -124.64279287199993, 49.499995798000064 ], [ -124.642884237999979, 49.499893207000135 ], [ -124.644074779999983, 49.499544425000096 ], [ -124.644769934999928, 49.499480357000017 ], [ -124.645596267999949, 49.499268087000132 ], [ -124.646727012999989, 49.498793743000085 ], [ -124.647717389000022, 49.498577044000093 ], [ -124.649368936999934, 49.498495797000032 ], [ -124.650795839999958, 49.498654247000026 ], [ -124.650811268999973, 49.498638408000033 ], [ -124.650878499999976, 49.498583489000033 ], [ -124.65094538299995, 49.498519556000119 ], [ -124.651039913999938, 49.49845524300008 ], [ -124.651121219999965, 49.498409093000127 ], [ -124.651188447999985, 49.498354172000028 ], [ -124.651255949999964, 49.498308233000095 ], [ -124.651364575999935, 49.498252711000099 ], [ -124.651418904999957, 49.498224944000086 ], [ -124.651459976999931, 49.498215351000056 ], [ -124.651554796999946, 49.498160041000098 ], [ -124.651663422999917, 49.498104519000115 ], [ -124.651758224999952, 49.498049187000071 ], [ -124.65183952799994, 49.498003035000096 ], [ -124.65193467499995, 49.497956715000115 ], [ -124.65202980199993, 49.497910373000067 ], [ -124.652111722999933, 49.497882216000036 ], [ -124.652206814999886, 49.497835886000132 ], [ -124.652302212999984, 49.497798525000064 ], [ -124.652425551999897, 49.497769787000038 ], [ -124.65250717899994, 49.497732626000122 ], [ -124.652602890999944, 49.49770428900004 ], [ -124.652698615999952, 49.49767591800002 ], [ -124.652780534999962, 49.497647760000099 ], [ -124.652917367, 49.497609840000067 ], [ -124.653026880999974, 49.497581292000071 ], [ -124.653122932999949, 49.497561912000052 ], [ -124.65320481900001, 49.497533766000089 ], [ -124.653300560999952, 49.497505416000081 ], [ -124.65339595799999, 49.497468054000059 ], [ -124.653533423999974, 49.497448092000063 ], [ -124.653752466999933, 49.497391016000122 ], [ -124.653875782999961, 49.497362253000048 ], [ -124.65401292199999, 49.497333300000044 ], [ -124.65410893499994, 49.497313932000068 ], [ -124.654246074999904, 49.49728497800001 ], [ -124.654369701999926, 49.497265241000022 ], [ -124.654493068999955, 49.497236487000066 ], [ -124.654616675999961, 49.497216728000048 ], [ -124.654754105999928, 49.497196777000042 ], [ -124.654905338999939, 49.497176613000143 ], [ -124.655042769, 49.49715666200008 ], [ -124.6551802339999, 49.497136698000126 ], [ -124.655317934, 49.497125728000057 ], [ -124.655455089999975, 49.497096796000072 ], [ -124.655564581999954, 49.497068221000077 ], [ -124.655730549999987, 49.497074863000115 ], [ -124.655744351999928, 49.497074650000073 ], [ -124.655840986999948, 49.497073273000126 ], [ -124.655965245999951, 49.497071492000053 ], [ -124.656089179, 49.497060722000114 ], [ -124.656365236999932, 49.497056759000024 ], [ -124.65651681699994, 49.497045607000054 ], [ -124.656668339999953, 49.497034444000064 ], [ -124.65683399699995, 49.497032057000098 ], [ -124.656999616999926, 49.497029684000061 ], [ -124.657151174999953, 49.497018507000092 ], [ -124.65728889799999, 49.49700755600005 ], [ -124.65738553099996, 49.497006178000056 ], [ -124.657523558999955, 49.497004196000091 ], [ -124.657633703999934, 49.496993601000106 ], [ -124.657771751, 49.49699164 ], [ -124.657909485999966, 49.496980652000069 ], [ -124.658047208999946, 49.496969701000083 ], [ -124.658199059999959, 49.496967526000091 ], [ -124.658295691999953, 49.496966147000123 ], [ -124.65848894, 49.496963366000088 ], [ -124.658571751999972, 49.496962179000107 ], [ -124.658737131999942, 49.496950808000157 ], [ -124.65886106499994, 49.496940034000069 ], [ -124.658971464999951, 49.496938453000091 ], [ -124.659109219999948, 49.496927488000068 ], [ -124.659233753999928, 49.496934683000084 ], [ -124.659385605999987, 49.496932507000075 ], [ -124.659523359999966, 49.496921540000137 ], [ -124.65963409099993, 49.496928950000061 ], [ -124.659758314999962, 49.496927177000053 ], [ -124.65991014599993, 49.496924977000099 ], [ -124.66002060299995, 49.496923405000118 ], [ -124.660144826999911, 49.49692163400006 ], [ -124.660254970999986, 49.496911034000078 ], [ -124.660365371999887, 49.496909454000033 ], [ -124.660489029999965, 49.496889696000068 ], [ -124.660626765999936, 49.496878705000064 ], [ -124.660902218999951, 49.49685675700001 ], [ -124.661039665, 49.496836821000095 ], [ -124.661163574999989, 49.4968260200001 ], [ -124.661287523999974, 49.49681526500013 ], [ -124.661411434999977, 49.496804465000054 ], [ -124.661577076999919, 49.496802106000118 ], [ -124.661728631999921, 49.496790922000073 ], [ -124.661880155999981, 49.496779752000059 ], [ -124.662017908999971, 49.49676878000006 ], [ -124.662169465999938, 49.496757597000041 ], [ -124.662348577999964, 49.496746031000079 ], [ -124.662499826000015, 49.496725879000046 ], [ -124.66269246799996, 49.496705118000172 ], [ -124.662843696, 49.496684943000105 ], [ -124.663036337000023, 49.49666418100005 ], [ -124.663229307999956, 49.496652410000102 ], [ -124.663408456999932, 49.496640831000029 ], [ -124.663587602999954, 49.496629251000101 ], [ -124.66372532099993, 49.496618292000043 ], [ -124.663863368999955, 49.496616323000104 ], [ -124.664001100999883, 49.496605327000111 ], [ -124.664125359999943, 49.496603537000119 ], [ -124.66426368, 49.496610547000053 ], [ -124.664360313999978, 49.496609163000102 ], [ -124.664484570999917, 49.496607370000099 ], [ -124.664609103999979, 49.496614560000125 ], [ -124.66461613, 49.496615221000091 ], [ -124.664692209999956, 49.496622371000065 ], [ -124.664733933999983, 49.496630753000076 ], [ -124.664761819999953, 49.496639363000043 ], [ -124.664831793999909, 49.496665334000085 ], [ -124.664915830999959, 49.496700106000041 ], [ -124.66500049299998, 49.496752871000062 ], [ -124.66509863099995, 49.496796432000032 ], [ -124.665196765999923, 49.496839993000052 ], [ -124.665258638999958, 49.496863960000013 ], [ -124.665257677999989, 49.496897165000114 ], [ -124.66182581399994, 49.496854908000074 ], [ -124.661782036999909, 49.498364953000092 ], [ -124.66266131699993, 49.498375789000072 ], [ -124.662688657999965, 49.497432073000027 ], [ -124.666639204999953, 49.49748067500007 ], [ -124.666652164999931, 49.49703197200008 ], [ -124.66666732500002, 49.497034698000057 ], [ -124.666778990999916, 49.497069061000033 ], [ -124.666918544999987, 49.497112034000061 ], [ -124.667044034999947, 49.497146205000043 ], [ -124.667183293999926, 49.497180174000064 ], [ -124.667308438999953, 49.497205390000055 ], [ -124.667447073999966, 49.497221363000044 ], [ -124.667558135999954, 49.497237755000057 ], [ -124.667710559999989, 49.497253550000025 ], [ -124.667890331999942, 49.497259956000107 ], [ -124.668043120999982, 49.497284728000061 ], [ -124.668195544999946, 49.497300522000053 ], [ -124.668334198999958, 49.497316517000073 ], [ -124.668486381999941, 49.49732331700006 ], [ -124.668652628999951, 49.497338918 ], [ -124.668804757000018, 49.497345708000054 ], [ -124.668943446999918, 49.497361691000052 ], [ -124.669068001999946, 49.497368896000111 ], [ -124.669300808999949, 49.497311548000063 ], [ -124.669438857, 49.497309570000077 ], [ -124.669548983999931, 49.497298996000062 ], [ -124.669576574999965, 49.497298602000022 ], [ -124.669686405999983, 49.497279026000101 ], [ -124.669796512999966, 49.497268429000087 ], [ -124.669892852, 49.497258035000115 ], [ -124.670002351999983, 49.497229467000047 ], [ -124.670126300000021, 49.497218701000108 ], [ -124.670249933999955, 49.497198909000076 ], [ -124.670373532999932, 49.49717912799999 ], [ -124.670483659999931, 49.497168555000073 ], [ -124.670579389999929, 49.497140188000088 ], [ -124.670689219999986, 49.497120611000064 ], [ -124.670839837999949, 49.497082451000033 ], [ -124.67093645199999, 49.49708103600009 ], [ -124.6710745, 49.497079057000057 ], [ -124.671198725999929, 49.497077270000034 ], [ -124.671240119999965, 49.497076660000097 ], [ -124.671309162999933, 49.497075663000025 ], [ -124.671405793999938, 49.497074271000059 ], [ -124.671516197999935, 49.497072676000094 ], [ -124.671640766999971, 49.497079845000066 ], [ -124.671765916999988, 49.497105054 ], [ -124.671890451999943, 49.497112234000042 ], [ -124.672028498999936, 49.497110254000077 ], [ -124.672152739999902, 49.497108431000129 ], [ -124.672249372999929, 49.497107038000067 ], [ -124.672276964999952, 49.497106642000041 ], [ -124.67238803, 49.49712302800004 ], [ -124.672513156999926, 49.497148213000088 ], [ -124.672665634999987, 49.497164010000127 ], [ -124.672790171999964, 49.497171189 ], [ -124.672928827999939, 49.497187179000058 ], [ -124.673025460999938, 49.497185785000035 ], [ -124.673275127999958, 49.497218149000084 ], [ -124.673413485999987, 49.497225134000082 ], [ -124.673510122999986, 49.497223741000035 ], [ -124.673523943999925, 49.49722354700004 ], [ -124.673620576999937, 49.49722215300006 ], [ -124.673730978999941, 49.497220556000038 ], [ -124.673827923999937, 49.497228130000046 ], [ -124.673924557999896, 49.497226736000108 ], [ -124.674034960999947, 49.49722513800004 ], [ -124.674145728, 49.497232518000068 ], [ -124.67425615199997, 49.497230944000101 ], [ -124.674365979999948, 49.497211362000058 ], [ -124.674476084999981, 49.497200760000055 ], [ -124.674599126999979, 49.497163013000055 ], [ -124.674723019999973, 49.497152231000094 ], [ -124.674791136999886, 49.497124235000115 ], [ -124.67483091299999, 49.497091704000105 ], [ -124.674372808999976, 49.497960418000027 ], [ -124.674783084999987, 49.498807842000154 ], [ -124.676148538999911, 49.499775194000065 ], [ -124.676431760999961, 49.499975835000072 ], [ -124.671400514999959, 49.499914371000017 ], [ -124.671431817999959, 49.498826892000032 ], [ -124.670832860999951, 49.498819559000012 ], [ -124.670842367999981, 49.49848938500007 ], [ -124.668542693999925, 49.498461201000033 ], [ -124.668565265999973, 49.497678658000019 ], [ -124.668201026999952, 49.497674190000126 ], [ -124.668102236999985, 49.501097983000129 ], [ -124.665330271999906, 49.501063936000058 ], [ -124.665276832999965, 49.50291194900008 ], [ -124.659758791999963, 49.502843962000028 ], [ -124.659760638999941, 49.502780366000145 ], [ -124.657692218999955, 49.502754809000095 ], [ -124.657714973999987, 49.501972361000085 ], [ -124.65752526199999, 49.501970015000076 ], [ -124.657505906999944, 49.502635442000063 ], [ -124.657208959999977, 49.502631770000036 ], [ -124.657240252999955, 49.503558058000074 ], [ -124.655583539999938, 49.50358178500003 ], [ -124.65555078599999, 49.502611246000129 ], [ -124.653892611999936, 49.502590696000055 ], [ -124.65390863799999, 49.503066023 ], [ -124.654322812999922, 49.503060100000042 ], [ -124.654341004999978, 49.503599563000094 ], [ -124.654755184999914, 49.503593639000016 ], [ -124.654791580999984, 49.50467256800011 ], [ -124.65380472899993, 49.504686682000091 ], [ -124.65380268499996, 49.504756730000082 ], [ -124.653349726999934, 49.504751112000079 ], [ -124.653347479999979, 49.504828158000102 ], [ -124.655759480999947, 49.50485805200001 ], [ -124.655654675000036, 49.508456073000055 ], [ -124.654786967999939, 49.508445326000079 ], [ -124.654701108999973, 49.511390589000015 ], [ -124.654045623999963, 49.511382466000036 ], [ -124.653985301, 49.513450503000058 ], [ -124.649382323999959, 49.513393344000072 ], [ -124.64933707099999, 49.514939332000026 ], [ -124.650020114999961, 49.514947827000093 ], [ -124.65001937699995, 49.514973028000085 ], [ -124.650806086000017, 49.514982806000063 ], [ -124.650785586000012, 49.515683854000102 ], [ -124.653933911999971, 49.515722928000088 ], [ -124.653875992999971, 49.517708168000112 ], [ -124.654306438999967, 49.517713504000021 ], [ -124.654323536, 49.517127316000121 ], [ -124.655972113999923, 49.517147733000115 ], [ -124.655980885999909, 49.516846557000058 ], [ -124.660913371999968, 49.516907495000048 ], [ -124.660929417999938, 49.516354579000037 ], [ -124.666449075999978, 49.516422505000058 ], [ -124.66634507699996, 49.520020476000113 ], [ -124.665780530999925, 49.520013542000072 ], [ -124.665700713999968, 49.522773385000107 ], [ -124.660180297999915, 49.522705422000072 ], [ -124.660183394999976, 49.522598781000063 ], [ -124.66016443800001, 49.522598548000076 ], [ -124.660155801999977, 49.522895923000071 ], [ -124.658401106000014, 49.522874262000087 ], [ -124.658349530999899, 49.52464766300006 ], [ -124.655962114999923, 49.524618145000062 ], [ -124.655949543999952, 49.525049591000077 ], [ -124.66119390599999, 49.525114363000078 ], [ -124.661139746999964, 49.526980436000038 ], [ -124.665967940999963, 49.527039844000114 ], [ -124.665912377999973, 49.528961059000032 ], [ -124.66654553599993, 49.528968834000089 ], [ -124.666501225999951, 49.530501589000039 ], [ -124.666960614999965, 49.530507227000051 ], [ -124.666949042999988, 49.530907633000048 ], [ -124.668274789999913, 49.530923895000065 ], [ -124.668257641999958, 49.531517830000027 ], [ -124.668425919999962, 49.531519893000109 ], [ -124.668415020999973, 49.531897402000055 ], [ -124.671943911, 49.531940602000098 ], [ -124.671922387999984, 49.532688098000065 ], [ -124.672919119999932, 49.532700279000046 ], [ -124.672901046999954, 49.533328376000085 ], [ -124.674364403999945, 49.53334624300004 ], [ -124.67426098599995, 49.536944134000073 ], [ -124.674177991999898, 49.536943121000071 ], [ -124.674152242999938, 49.537838790000094 ], [ -124.674118185999987, 49.539023377000071 ], [ -124.675027113999946, 49.539034465000036 ], [ -124.675014104999946, 49.538653947000093 ], [ -124.675250477, 49.538650524000026 ], [ -124.677086456999916, 49.538623922000077 ], [ -124.677095689999959, 49.538893650000048 ], [ -124.678753575999963, 49.538869603000087 ], [ -124.678777923999974, 49.539580137000058 ], [ -124.680428954999982, 49.539600202000024 ], [ -124.680398704999973, 49.540657277000022 ], [ -124.680925510999927, 49.540663674000044 ], [ -124.681004053999942, 49.537917637000113 ], [ -124.682900167999918, 49.53794064 ], [ -124.682973425999961, 49.535375379000065 ], [ -124.685215504999945, 49.53540253799999 ], [ -124.685230765999947, 49.534867234000039 ], [ -124.690752673999967, 49.534933923000096 ], [ -124.690708798999964, 49.536479421000045 ], [ -124.691695032999917, 49.536491303000069 ], [ -124.691688089999971, 49.53673606200006 ], [ -124.694778111999966, 49.536773231000019 ], [ -124.69482747499994, 49.535028974000042 ], [ -124.700349415999952, 49.535095175000137 ], [ -124.700298725999943, 49.536893956000014 ], [ -124.703039524999951, 49.536926710000088 ], [ -124.703036379999944, 49.537038542000104 ], [ -124.70458671899992, 49.537057039000047 ], [ -124.704593681999981, 49.536809122000051 ], [ -124.706486365999936, 49.536831674000013 ], [ -124.706505372999985, 49.536153992000074 ], [ -124.704637681999969, 49.536131738000044 ], [ -124.704658472999981, 49.53539148600008 ], [ -124.704293312999965, 49.535387132000068 ], [ -124.704394386999951, 49.531789204000084 ], [ -124.704453277000013, 49.531789907000103 ], [ -124.704476730999957, 49.530954904000062 ], [ -124.709380978999945, 49.531013283000078 ], [ -124.709395376000018, 49.531043496000031 ], [ -124.709411406999948, 49.531106245000096 ], [ -124.709413585, 49.531169170000069 ], [ -124.709416100999974, 49.531241087000083 ], [ -124.709405425999975, 49.531331198000117 ], [ -124.709407924999979, 49.531403149000042 ], [ -124.709411067999937, 49.531493038000079 ], [ -124.709413582999971, 49.531564954000025 ], [ -124.709416404999928, 49.531645877000052 ], [ -124.709405105999934, 49.531718014000035 ], [ -124.709407641999945, 49.531789952000118 ], [ -124.709410442999953, 49.531870851000122 ], [ -124.709399447999971, 49.531951992000081 ], [ -124.709402587999989, 49.532041882000044 ], [ -124.709391575999987, 49.532123001000109 ], [ -124.7093809, 49.532213111000047 ], [ -124.709369599999931, 49.532285250000029 ], [ -124.709358585999965, 49.532366369000059 ], [ -124.709347626999914, 49.532447498000074 ], [ -124.709336614999984, 49.532528617000068 ], [ -124.709328764999952, 49.532554397000062 ], [ -124.709311819999954, 49.532609945000104 ], [ -124.709287342999986, 49.532700241000036 ], [ -124.709290131999964, 49.532781175000075 ], [ -124.709278865999977, 49.532853300000042 ], [ -124.709267565999966, 49.532925438000113 ], [ -124.709256856999957, 49.53301556100007 ], [ -124.709258377999916, 49.533058808000128 ], [ -124.709259066999962, 49.533078473000053 ], [ -124.709248053999929, 49.533159594000018 ], [ -124.709236754999921, 49.533231731000114 ], [ -124.70922607899999, 49.533321843000053 ], [ -124.70921511799996, 49.5334029710001 ], [ -124.709218224000026, 49.5334928750001 ], [ -124.70922074, 49.533564792000035 ], [ -124.70920944099997, 49.533636929000075 ], [ -124.709211956000019, 49.533708847000042 ], [ -124.70922827299999, 49.533780579000044 ], [ -124.709244588999937, 49.533852310000057 ], [ -124.709288556999937, 49.533923623000064 ], [ -124.709332183999933, 49.533985944000101 ], [ -124.709346304999912, 49.533994727000113 ], [ -124.70941048499995, 49.534073727000084 ], [ -124.709447397999938, 49.534119170000046 ], [ -124.709505146999945, 49.534190275000086 ], [ -124.709562305999953, 49.534243393000061 ], [ -124.70962007299994, 49.534314521000084 ], [ -124.709677198999984, 49.53436765100011 ], [ -124.709748140999949, 49.534420562000065 ], [ -124.709805298999925, 49.534473680000133 ], [ -124.709889756999942, 49.534517422000121 ], [ -124.709960379000037, 49.534561364000055 ], [ -124.710031374999971, 49.534614284000078 ], [ -124.710088481999932, 49.534667391000021 ], [ -124.710160371999962, 49.534747302000014 ], [ -124.710231368000024, 49.534800221000125 ], [ -124.710373862999958, 49.534924050000065 ], [ -124.710445450999913, 49.534994955000066 ], [ -124.710502612999932, 49.535048074000102 ], [ -124.710559737999958, 49.535101204000071 ], [ -124.710658657999929, 49.535162720000123 ], [ -124.710757557999941, 49.535224216000103 ], [ -124.710814366, 49.535268377000129 ], [ -124.710885309999981, 49.535321286000062 ], [ -124.710942472999989, 49.535374404000045 ], [ -124.711013437999952, 49.535427336000048 ], [ -124.711084380999978, 49.535480246000105 ], [ -124.711155630999897, 49.535542159000045 ], [ -124.711171360999984, 49.535595905000058 ], [ -124.711185163999971, 49.535595718000124 ], [ -124.711215298999946, 49.535667229000076 ], [ -124.711259558000023, 49.535747523000104 ], [ -124.711275572999966, 49.535810251000093 ], [ -124.711277772999907, 49.535873198000033 ], [ -124.711267509, 49.535959816000094 ], [ -124.711267099999972, 49.535963311000096 ], [ -124.711214690999952, 49.536045046000069 ], [ -124.711187697999947, 49.536063426000062 ], [ -124.711134322999968, 49.536118197000043 ], [ -124.711052971999919, 49.536164360000043 ], [ -124.710971977999932, 49.536219537000079 ], [ -124.710918887999966, 49.536283288000071 ], [ -124.710838233999951, 49.536347457000069 ], [ -124.710757239999964, 49.536402632000026 ], [ -124.710648574999936, 49.53645820700013 ], [ -124.710553439999927, 49.536504576000063 ], [ -124.710458628999959, 49.536559974000113 ], [ -124.710377919999985, 49.536624132000107 ], [ -124.710324862999983, 49.536687871000034 ], [ -124.710257364999919, 49.53673385700008 ], [ -124.710176348999966, 49.536789012000092 ], [ -124.710109493999937, 49.536852994000064 ], [ -124.71002882, 49.536917139000117 ], [ -124.709961890999949, 49.536981089000065 ], [ -124.709881233999937, 49.537045256000063 ], [ -124.709800861999966, 49.537118406000104 ], [ -124.709747767999957, 49.537182158000086 ], [ -124.709681538, 49.537264114000024 ], [ -124.709628761999952, 49.537336834000087 ], [ -124.709562849999912, 49.537427759000103 ], [ -124.709510399999914, 49.537509507000017 ], [ -124.709457984999972, 49.53759124200009 ], [ -124.70941963599995, 49.537681752000033 ], [ -124.709367844, 49.537781461000115 ], [ -124.70932954899996, 49.537871980000034 ], [ -124.709291219999926, 49.537962512000028 ], [ -124.709253227999966, 49.53806203400007 ], [ -124.709201436999962, 49.538161744000085 ], [ -124.709135805999949, 49.538261651 ], [ -124.709083014999976, 49.53833440700005 ], [ -124.70907014299999, 49.538361572000063 ], [ -124.70901834899999, 49.538461279000046 ], [ -124.708966519999962, 49.538561002000094 ], [ -124.708915064999985, 49.53866970300006 ], [ -124.708862896999932, 49.538760433000078 ], [ -124.708810817999947, 49.538851161000082 ], [ -124.708758988999989, 49.538950882000094 ], [ -124.708734168999953, 49.539032189000046 ], [ -124.708681410999986, 49.539104932000022 ], [ -124.708628651999973, 49.539177676000065 ], [ -124.708575893999949, 49.539250419000027 ], [ -124.70852347499995, 49.539332154000114 ], [ -124.70847071399993, 49.539404897000097 ], [ -124.708389997999944, 49.539469053000118 ], [ -124.708323115999931, 49.539533014000014 ], [ -124.708282301999958, 49.539551613000043 ], [ -124.708241468999987, 49.539570193000088 ], [ -124.708118384999949, 49.539607997000068 ], [ -124.707994676999959, 49.539627827000082 ], [ -124.707870362000023, 49.539629650000101 ], [ -124.707731886999952, 49.539622699000049 ], [ -124.707607217999936, 49.539615562000016 ], [ -124.707454942999945, 49.539608798000124 ], [ -124.707302970999962, 49.539611036000032 ], [ -124.70712304199999, 49.539604689000043 ], [ -124.706957253999946, 49.539607149000091 ], [ -124.706804963999986, 49.539600417000081 ], [ -124.706639188999986, 49.539602840000029 ], [ -124.70654217299996, 49.539595284000043 ], [ -124.706362547999944, 49.53959794100011 ], [ -124.706168834999971, 49.539591800000039 ], [ -124.705989209999956, 49.539594455000071 ], [ -124.705892512999952, 49.539595869000031 ], [ -124.705698768000033, 49.539589738000075 ], [ -124.705491520999928, 49.539592798000072 ], [ -124.705422445999943, 49.539593805000024 ], [ -124.705297808999916, 49.539586653000065 ], [ -124.705104041999974, 49.53958050100006 ], [ -124.704993529999953, 49.539582134000099 ], [ -124.70488271, 49.539574761000061 ], [ -124.704758377999951, 49.539576613000044 ], [ -124.704647844999926, 49.539578224000074 ], [ -124.704551133, 49.539579671000077 ], [ -124.704454436999924, 49.539581083000016 ], [ -124.704343887999954, 49.539582729000074 ], [ -124.704233354999957, 49.539584337000122 ], [ -124.704109022999987, 49.539586191000062 ], [ -124.703998183999886, 49.539578794000043 ], [ -124.70387385399998, 49.539580646000061 ], [ -124.70376332, 49.539582254000095 ], [ -124.70355607499999, 49.539585311000081 ], [ -124.703459362999979, 49.539586756000034 ], [ -124.70334884799999, 49.53958838700003 ], [ -124.703238315999954, 49.539589995000036 ], [ -124.703113677999966, 49.539582841000076 ], [ -124.703003165999931, 49.539584472000108 ], [ -124.702892596999902, 49.539586093000104 ], [ -124.702795580999947, 49.5395785340001 ], [ -124.702671265, 49.539580347000083 ], [ -124.702560716999969, 49.539581992000144 ], [ -124.702450201999952, 49.539583621000126 ], [ -124.702325546999944, 49.539576444000062 ], [ -124.702145921999943, 49.539579091000064 ], [ -124.701938675999941, 49.539582143000125 ], [ -124.701924892999969, 49.539582349000071 ], [ -124.70184166199999, 49.539574583000039 ], [ -124.701744964999932, 49.539575993000085 ], [ -124.701634451999922, 49.539577622000131 ], [ -124.701523599, 49.539570258000069 ], [ -124.701413083999938, 49.539571888000076 ], [ -124.701316352999953, 49.539573309000048 ], [ -124.701191718999965, 49.539566153000081 ], [ -124.701081204999952, 49.539567781000073 ], [ -124.700970669999947, 49.539569387000093 ], [ -124.700859818999973, 49.539562023000059 ], [ -124.700735485999985, 49.539563871000112 ], [ -124.700624953999977, 49.539565476000057 ], [ -124.700458860999944, 49.539558919000044 ], [ -124.700279236999933, 49.539561564000074 ], [ -124.700085524999977, 49.539555410000034 ], [ -124.699905917999942, 49.53955807600007 ], [ -124.69971215299995, 49.539551913000039 ], [ -124.699518744000017, 49.539554762000165 ], [ -124.699325032999965, 49.539548606000068 ], [ -124.699145406999961, 49.539551250000038 ], [ -124.698971491999927, 49.539553293000012 ], [ -124.698812075999953, 49.539563150000063 ], [ -124.698785496999974, 49.539564799000118 ], [ -124.698770936999964, 49.539564166000041 ], [ -124.698698213999975, 49.539561041000084 ], [ -124.698596335999952, 49.539556664000038 ], [ -124.69849546599994, 49.539542801000081 ], [ -124.69838495099999, 49.539544425000017 ], [ -124.6982741, 49.539537058000093 ], [ -124.698177367999975, 49.539538478000097 ], [ -124.697997440999984, 49.539532114000039 ], [ -124.69788692599991, 49.539533738000024 ], [ -124.697789912999937, 49.539526174000081 ], [ -124.697679399999984, 49.539527799000062 ], [ -124.697568863999905, 49.539529401000017 ], [ -124.697458032, 49.539522056000102 ], [ -124.69726426699998, 49.539515886000096 ], [ -124.697153451999938, 49.539508507000107 ], [ -124.69705674, 49.539509946000116 ], [ -124.69694622599998, 49.539511569000069 ], [ -124.696849493999949, 49.539512987000109 ], [ -124.696738679999925, 49.539505606000048 ], [ -124.696476192999938, 49.539509451000072 ], [ -124.696338023999928, 49.539511490000045 ], [ -124.696296284999946, 49.539503105000087 ], [ -124.696171597000017, 49.539495933000069 ], [ -124.696074897999949, 49.539497338000068 ], [ -124.695950548999988, 49.539499156000076 ], [ -124.695840034999961, 49.539500779000086 ], [ -124.695688049999973, 49.539503035000088 ], [ -124.69552223899997, 49.53950545200005 ], [ -124.695342366999938, 49.539499093000096 ], [ -124.695135119999918, 49.539502130000081 ], [ -124.694982832999955, 49.539495380000091 ], [ -124.694817023999946, 49.539497796000056 ], [ -124.694623315999976, 49.539491631000082 ], [ -124.694512765999932, 49.539493265 ], [ -124.694416068999928, 49.53949466800006 ], [ -124.694236442999937, 49.539497302000044 ], [ -124.694139765000017, 49.539498725000087 ], [ -124.693959837999969, 49.539492355000057 ], [ -124.693766730999968, 49.539504197000092 ], [ -124.693573301999962, 49.539507012000051 ], [ -124.693407513999972, 49.53950944800004 ], [ -124.693241705999981, 49.539511862000033 ], [ -124.693075635999946, 49.539505315000063 ], [ -124.69290952599998, 49.539498722000118 ], [ -124.692743735999912, 49.539501158000093 ], [ -124.692660840999963, 49.539502375000026 ], [ -124.692563827999948, 49.539494806000029 ], [ -124.692398038999954, 49.539497240000095 ], [ -124.692218112999939, 49.539490866000079 ], [ -124.692052322999956, 49.53949329800006 ], [ -124.691886233999924, 49.539486727000046 ], [ -124.691733927999948, 49.539479950000064 ], [ -124.691540182999972, 49.539473792000138 ], [ -124.691360276999944, 49.539467438000074 ], [ -124.691263581, 49.539468837000058 ], [ -124.6910977899999, 49.539471269000096 ], [ -124.690945482999979, 49.539464491000032 ], [ -124.690779729999974, 49.539466910000087 ], [ -124.690600103999898, 49.53946953700008 ], [ -124.690447816999935, 49.539462781000097 ], [ -124.69026822499994, 49.539465393000086 ], [ -124.690102135999908, 49.539458819000046 ], [ -124.689936345999982, 49.539461249000055 ], [ -124.689756420999984, 49.539454870000071 ], [ -124.689659708, 49.539456302000097 ], [ -124.689562976999966, 49.539457713000068 ], [ -124.689493919999933, 49.539458732000064 ], [ -124.689327827999946, 49.539452156000031 ], [ -124.689134401000018, 49.539454963000061 ], [ -124.6890376899999, 49.539456395000101 ], [ -124.688844260999971, 49.539459201000078 ], [ -124.688664688999935, 49.539461834000086 ], [ -124.688498845999987, 49.539464252000073 ], [ -124.688333090999947, 49.539466666000045 ], [ -124.688166966999972, 49.539460101000138 ], [ -124.688001213999925, 49.539462515 ], [ -124.687863044999943, 49.539464542000061 ], [ -124.68771285399994, 49.539463576000102 ], [ -124.687562547999931, 49.539472392000093 ], [ -124.687442282999939, 49.539481393000116 ], [ -124.687432126999909, 49.539482625000062 ], [ -124.687352768999929, 49.539498958000088 ], [ -124.687242871, 49.539518545000071 ], [ -124.687146773000023, 49.539537949000078 ], [ -124.687037170999972, 49.539566542000017 ], [ -124.686941387999951, 49.539594915000066 ], [ -124.68686005799999, 49.539641068000037 ], [ -124.686778689999954, 49.539687232000119 ], [ -124.686684155, 49.539751578000029 ], [ -124.686630743999942, 49.53980633500008 ], [ -124.686563848, 49.539870301000057 ], [ -124.686496633999937, 49.53992524100002 ], [ -124.686430030999986, 49.539998155000113 ], [ -124.686376917999908, 49.540061915000102 ], [ -124.686324432999953, 49.540143618000045 ], [ -124.686285471999938, 49.540216154000106 ], [ -124.686246474999962, 49.540288702000097 ], [ -124.68619370899998, 49.540361421000078 ], [ -124.686140929999951, 49.540434175000073 ], [ -124.686141209999931, 49.540443158000087 ], [ -124.686102581999961, 49.540524687000072 ], [ -124.686064198999972, 49.540615211000073 ], [ -124.686011713999932, 49.540696911000026 ], [ -124.685958914999958, 49.540769642000029 ], [ -124.685892329999945, 49.540842578000074 ], [ -124.685839528999921, 49.540915310000102 ], [ -124.68581438399994, 49.540987629000035 ], [ -124.685775419999942, 49.541060165000026 ], [ -124.685736122999955, 49.541123710000093 ], [ -124.685697159999947, 49.541196246000062 ], [ -124.685630854999886, 49.54127816500003 ], [ -124.685591889999955, 49.541350700000095 ], [ -124.685552907999963, 49.541423215000101 ], [ -124.685500124999976, 49.54149596900001 ], [ -124.68543348299994, 49.54156889500009 ], [ -124.685380715999941, 49.541641613000067 ], [ -124.685355553999941, 49.541713968000096 ], [ -124.685316268999955, 49.541777477000089 ], [ -124.685276990999952, 49.541841045000062 ], [ -124.685238639999923, 49.541931555000104 ], [ -124.685213158999957, 49.541994882000061 ], [ -124.685188031999985, 49.5420672240001 ], [ -124.685148711999943, 49.542130746000069 ], [ -124.68512358299995, 49.542203088000051 ], [ -124.685084284999945, 49.542266632000043 ], [ -124.685017062999933, 49.542321572000084 ], [ -124.684963644999968, 49.542376329000064 ], [ -124.684896389999921, 49.542431280000095 ], [ -124.684828888999931, 49.54247723700005 ], [ -124.68474751399998, 49.542523401000025 ], [ -124.684652634999907, 49.54257875100005 ], [ -124.684571595999927, 49.542633907000081 ], [ -124.684504390999948, 49.542688869000081 ], [ -124.684423051999914, 49.542735020000123 ], [ -124.684314355, 49.542790588000052 ], [ -124.68421917299996, 49.542836933000082 ], [ -124.684109562999978, 49.542865522000078 ], [ -124.683972942999944, 49.54291248400007 ], [ -124.683876835999953, 49.542931885000023 ], [ -124.683767258000017, 49.54296046000006 ], [ -124.683643509999968, 49.542980239000023 ], [ -124.683533583, 49.542999856000051 ], [ -124.683423373000011, 49.543010434000045 ], [ -124.683284893999968, 49.543003449000061 ], [ -124.683173719999928, 49.542987095000051 ], [ -124.683089608999964, 49.54295232000009 ], [ -124.682991309, 49.542908783000044 ], [ -124.682906584999927, 49.542856034000117 ], [ -124.682808040999987, 49.542803501000044 ], [ -124.682709444999929, 49.542750959000038 ], [ -124.682512303999957, 49.542645885000113 ], [ -124.68242693399999, 49.542575172000113 ], [ -124.682328371999915, 49.542522617000046 ], [ -124.682215956999954, 49.542470291000051 ], [ -124.68214535199999, 49.542426330000126 ], [ -124.682059982999945, 49.54235561800008 ], [ -124.681975556999959, 49.542311872000077 ], [ -124.681904898999946, 49.542267901000095 ], [ -124.681806323, 49.542215380000101 ], [ -124.68173568399996, 49.542171431000085 ], [ -124.681637456999979, 49.542127867000076 ], [ -124.681538882999973, 49.542075345000072 ], [ -124.68145412599992, 49.542022608000067 ], [ -124.681355567999958, 49.541970052000039 ], [ -124.681284929999933, 49.541926102000048 ], [ -124.681186054999927, 49.541864575000062 ], [ -124.68108751799997, 49.541812041000085 ], [ -124.681003040999926, 49.541768287000075 ], [ -124.68090541399999, 49.541742731000106 ], [ -124.68080776699999, 49.541717153000093 ], [ -124.68070983899996, 49.541682593000054 ], [ -124.680612158999935, 49.541657027000028 ], [ -124.680500393999935, 49.541622662000051 ], [ -124.680416306999987, 49.541587908000068 ], [ -124.680303896999959, 49.541535579000083 ], [ -124.680205639999912, 49.541492027000089 ], [ -124.680080056999927, 49.541457877 ], [ -124.679967998000023, 49.541414505000013 ], [ -124.679870036999958, 49.541379958000071 ], [ -124.67977148199995, 49.541327400000078 ], [ -124.679673225999977, 49.541283848000077 ], [ -124.679575266999962, 49.5412492990001 ], [ -124.679491126999935, 49.541214534000041 ], [ -124.679379051999945, 49.541171196000043 ], [ -124.679281126999967, 49.541136635000065 ], [ -124.679183168999899, 49.541102086000102 ], [ -124.679056958999922, 49.541049939000082 ], [ -124.678958125999941, 49.54098839800006 ], [ -124.67888749399999, 49.54094444599999 ], [ -124.678816580999964, 49.540891513000069 ], [ -124.678732108999924, 49.540847756000097 ], [ -124.678646747999949, 49.540777041000112 ], [ -124.678534357999965, 49.540724676000103 ], [ -124.67842198799994, 49.540672334000092 ], [ -124.678323121999981, 49.540610805000014 ], [ -124.678309006999925, 49.540602017 ], [ -124.678237684999942, 49.540567137000011 ], [ -124.678151127999925, 49.540505328000123 ], [ -124.678079397999952, 49.540461368000102 ], [ -124.677994119999951, 49.540426756000052 ], [ -124.677894069999965, 49.540374305000043 ], [ -124.67780838399996, 49.540330611000037 ], [ -124.677721435999956, 49.540259743000036 ], [ -124.67763491599996, 49.540197921000086 ], [ -124.677562760999976, 49.54014491300007 ], [ -124.67746186, 49.540074312000037 ], [ -124.67737491299998, 49.540003443000053 ], [ -124.677259664999951, 49.539924049000028 ], [ -124.67714530899994, 49.539862792000044 ], [ -124.677016551999884, 49.539792733000077 ], [ -124.676901325999921, 49.539713362000064 ], [ -124.676786505999985, 49.539643014000085 ], [ -124.676658213999957, 49.539582046000135 ], [ -124.676571660999954, 49.539520235000104 ], [ -124.676485585999941, 49.539467482000106 ], [ -124.676399477999951, 49.539414740000041 ], [ -124.67631335199998, 49.539361977000077 ], [ -124.676227686999965, 49.539318303000094 ], [ -124.676127643999948, 49.539265851000096 ], [ -124.676050889999914, 49.539213092000075 ], [ -124.675987226999965, 49.53916059000003 ], [ -124.675884167, 49.539107386000119 ], [ -124.675794981999957, 49.539037284000052 ], [ -124.675796797999922, 49.53909124300003 ], [ -124.675813703999935, 49.539180942000094 ], [ -124.675816458999918, 49.539261866000054 ], [ -124.675833363999914, 49.539351567000054 ], [ -124.675849955999979, 49.539432297000062 ], [ -124.675852414999966, 49.539504216000054 ], [ -124.675869284999948, 49.539593930000109 ], [ -124.675885877999931, 49.539674660000081 ], [ -124.675902450999942, 49.539755368000044 ], [ -124.675905539999988, 49.539845284000059 ], [ -124.675922740999965, 49.539943989000037 ], [ -124.675939645999975, 49.540033690000058 ], [ -124.675942714999948, 49.540123583000053 ], [ -124.675945802999934, 49.540213501 ], [ -124.675949500999948, 49.540321390000045 ], [ -124.675966702999943, 49.540420095000123 ], [ -124.675969735999971, 49.540510002000147 ], [ -124.675972825999935, 49.540599919000101 ], [ -124.675975892999986, 49.54068981200006 ], [ -124.675979312999971, 49.540788721000048 ], [ -124.675982678999929, 49.54088762 ], [ -124.675972260999956, 49.540986721000081 ], [ -124.675975016999956, 49.54106764600008 ], [ -124.675977773999989, 49.541148571000129 ], [ -124.67598023099994, 49.54122049100004 ], [ -124.675969516999942, 49.541310587000076 ], [ -124.675971940999929, 49.541382521000074 ], [ -124.675974121999957, 49.541445459000059 ], [ -124.675976579999912, 49.541517379000084 ], [ -124.675973171999956, 49.541538936000052 ], [ -124.675974512999971, 49.541611713000115 ], [ -124.67597512899998, 49.541643889000078 ], [ -124.675920799999957, 49.54168080199999 ], [ -124.675825939999967, 49.541754393000112 ], [ -124.675744143999964, 49.541800702000081 ], [ -124.675690394999947, 49.541855661000064 ], [ -124.675623035999962, 49.541919843000123 ], [ -124.675555676999977, 49.541984025000033 ], [ -124.675474761999936, 49.54205744100009 ], [ -124.675421874999969, 49.542139483000042 ], [ -124.67535453399995, 49.542203688000065 ], [ -124.675259446999945, 49.542268247000088 ], [ -124.675138016999981, 49.542378361000054 ], [ -124.675056798999918, 49.542442715000028 ], [ -124.674961672999984, 49.542507286000095 ], [ -124.67486654799994, 49.542571857000077 ], [ -124.674772055999966, 49.542654483000049 ], [ -124.674704412999972, 49.54270962500005 ], [ -124.674650624999984, 49.542764596000097 ], [ -124.67456970899994, 49.5428380110001 ], [ -124.674489051999956, 49.542920443000078 ], [ -124.674421143999922, 49.542966568000075 ], [ -124.674353184000012, 49.543012682000061 ], [ -124.67420314, 49.5430960650001 ], [ -124.674107131000014, 49.543133528000084 ], [ -124.673996684999935, 49.54315311900011 ], [ -124.673872628999931, 49.543181932000067 ], [ -124.673748592000024, 49.543210768000087 ], [ -124.673638427999933, 49.543239398000075 ], [ -124.673500794999981, 49.543277421 ], [ -124.67337673899999, 49.543306235000095 ], [ -124.673225231999979, 49.543344464000022 ], [ -124.673087303999935, 49.543373483000096 ], [ -124.672949353, 49.543402478000111 ], [ -124.672811718999952, 49.543440501000084 ], [ -124.6726876809999, 49.54346933500004 ], [ -124.67255004699993, 49.543507359000081 ], [ -124.672398504999975, 49.54354559900009 ], [ -124.672343269999942, 49.543555382000065 ], [ -124.672246715999933, 49.543574787000061 ], [ -124.672108763999944, 49.543603781000058 ], [ -124.671957274999926, 49.543642031000033 ], [ -124.671805431999957, 49.54367121000007 ], [ -124.671667814999964, 49.543709252000085 ], [ -124.67154403899994, 49.543747103000108 ], [ -124.671420293999958, 49.543784941000105 ], [ -124.671310406999936, 49.543822609000117 ], [ -124.67118694499996, 49.543869486000077 ], [ -124.671063482999941, 49.543916363000086 ], [ -124.670953294999947, 49.543944968000076 ], [ -124.670829514999966, 49.543982818000089 ], [ -124.670719944999945, 49.544029511000126 ], [ -124.670623984999978, 49.544066981000128 ], [ -124.67052825199994, 49.544113482000057 ], [ -124.670432270999953, 49.544150930000058 ], [ -124.67030880599998, 49.544197806000064 ], [ -124.670199515999968, 49.544253539000088 ], [ -124.670103780999938, 49.544300039000063 ], [ -124.670090202999958, 49.544309250000012 ], [ -124.670008081999953, 49.544346527000073 ], [ -124.669899084999912, 49.544411265000079 ], [ -124.669817278, 49.544457568000048 ], [ -124.669721264, 49.544495028000078 ], [ -124.669625264999979, 49.544532511000078 ], [ -124.669515671999974, 49.544579181000096 ], [ -124.669391944, 49.544617039000038 ], [ -124.669350546999965, 49.544626628000096 ], [ -124.669293148999913, 49.544564501000096 ], [ -124.669235728999979, 49.544502353000098 ], [ -124.669178627999955, 49.544449232000069 ], [ -124.66912120899994, 49.544387083000046 ], [ -124.669063462999972, 49.544315942000061 ], [ -124.668978145999986, 49.544245206000063 ], [ -124.668893104999967, 49.54418345200002 ], [ -124.668794543999979, 49.544130917000139 ], [ -124.66869596, 49.544078362000107 ], [ -124.668612450999916, 49.544061583000058 ], [ -124.668501313999968, 49.54404520100006 ], [ -124.668376618, 49.544037991000053 ] ], [ [ -124.67205274, 49.539755688000078 ], [ -124.672066767999965, 49.539268572000069 ], [ -124.668610638999951, 49.539226274000029 ], [ -124.668580675, 49.540264157000152 ], [ -124.66965220799996, 49.540277283000108 ], [ -124.669593214999949, 49.54232208800002 ], [ -124.669804003999985, 49.542324668000091 ], [ -124.669836606999951, 49.541194468000114 ], [ -124.671168811999934, 49.541210769000017 ], [ -124.671211036999935, 49.539745398000079 ], [ -124.67205274, 49.539755688000078 ] ], [ [ -124.668590649999942, 49.539134630000014 ], [ -124.668674, 49.536247497000041 ], [ -124.668387222, 49.536243982 ], [ -124.668329226999916, 49.538252478000068 ], [ -124.666844855999926, 49.538234274000047 ], [ -124.666819456000013, 49.53911291 ], [ -124.668590649999942, 49.539134630000014 ] ], [ [ -124.697466221999932, 49.538671303000086 ], [ -124.697466546999948, 49.538659770000031 ], [ -124.696608538999925, 49.53864948000011 ], [ -124.69660821299999, 49.53866101400007 ], [ -124.697466221999932, 49.538671303000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108989418", "BldgCostT": "63961668", "sL_LossRatio": "0.958820797442896", "sL_AssetLoss": "49393.38", "sL_BldgLoss": "47359.4", "sL_StrLoss": "36890.5", "sL_NStrLoss": "10468.9", "sL_ContLoss": "2033.98", "geom_point": "0101000020E6100000BC2937B475395FC02FC59FF279DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.895466327999941, 49.726692999000136 ], [ -124.894598043999977, 49.726148631000051 ], [ -124.892023847999951, 49.724845302000034 ], [ -124.892046675999936, 49.723899194000133 ], [ -124.893119738999928, 49.723910085000071 ], [ -124.893120832999955, 49.723864771000088 ], [ -124.892415720999935, 49.723857615000021 ], [ -124.892420350999956, 49.723665618000084 ], [ -124.891997340000017, 49.723672531000055 ], [ -124.89198685400001, 49.723402843000081 ], [ -124.891858085999914, 49.723404947000077 ], [ -124.891010982999902, 49.723418784000025 ], [ -124.89096555299993, 49.723419525000082 ], [ -124.89094766099997, 49.724160334000047 ], [ -124.890424761999924, 49.724155018000019 ], [ -124.888402302999978, 49.723282555000011 ], [ -124.887726958999934, 49.722908506000124 ], [ -124.887361209999952, 49.722038950000034 ], [ -124.88821535299995, 49.721637071000053 ], [ -124.888217043999987, 49.721408892000063 ], [ -124.886732127999949, 49.717914720000067 ], [ -124.888028168999952, 49.717927937000077 ], [ -124.888023227999952, 49.717800506000096 ], [ -124.887607281999962, 49.71780728700007 ], [ -124.887596823999942, 49.717537598 ], [ -124.887180881999939, 49.717544378000071 ], [ -124.88719133599993, 49.717814067000077 ], [ -124.886692809999943, 49.717822190000042 ], [ -124.886532929999959, 49.717445940000047 ], [ -124.885200847999911, 49.71382457500011 ], [ -124.884532885999974, 49.713303910000086 ], [ -124.883993873999941, 49.712581538000045 ], [ -124.883976675999946, 49.710957074000113 ], [ -124.883397519, 49.710570304000093 ], [ -124.881788018999941, 49.709481372000049 ], [ -124.882291060999975, 49.709486527000067 ], [ -124.882250972999927, 49.708449422000101 ], [ -124.88058750499999, 49.708476451000074 ], [ -124.880595144, 49.708674264000123 ], [ -124.873616130999935, 49.703951365000108 ], [ -124.873755395999922, 49.703952803000057 ], [ -124.873746820999884, 49.703729894000027 ], [ -124.873330991, 49.703736623000061 ], [ -124.873310245999974, 49.703197240000065 ], [ -124.872670356999947, 49.703207591000073 ], [ -124.872667855999964, 49.70330952800002 ], [ -124.872477295999914, 49.703180546000105 ], [ -124.872477437999976, 49.703180547000073 ], [ -124.872468227999931, 49.702941001000042 ], [ -124.872131444999951, 49.702946448000098 ], [ -124.872050243999979, 49.70289148500008 ], [ -124.87204204199999, 49.702678034000037 ], [ -124.871742064, 49.70268288400009 ], [ -124.871195866999983, 49.702313164000024 ], [ -124.871168956999952, 49.70161271100006 ], [ -124.870337333999942, 49.701626148000052 ], [ -124.870341507999939, 49.701734833000096 ], [ -124.868632852999966, 49.700578150000098 ], [ -124.868632701999971, 49.70057423500009 ], [ -124.86862720299996, 49.700574325000083 ], [ -124.867778553999969, 49.699999796000107 ], [ -124.867770072999974, 49.699778577000096 ], [ -124.868185867999955, 49.699771870000113 ], [ -124.868165180999938, 49.699232486000056 ], [ -124.868580972999979, 49.699225776000063 ], [ -124.868570625999965, 49.698956084000059 ], [ -124.869236715999961, 49.698945332000029 ], [ -124.869248516999946, 49.698465838000025 ], [ -124.871779382999961, 49.700065423000098 ], [ -124.87275533399999, 49.700264827000083 ], [ -124.878006012999947, 49.703844639000081 ], [ -124.879277832999946, 49.704182902000113 ], [ -124.888491730999988, 49.710122943000087 ], [ -124.888879296999932, 49.710125371000089 ], [ -124.895551774999916, 49.708446236000036 ], [ -124.896677214999912, 49.708249842 ], [ -124.897480621999961, 49.70800699200008 ], [ -124.897906679999906, 49.707736424000096 ], [ -124.898333141999956, 49.707109557000074 ], [ -124.899814147999933, 49.706271836000084 ], [ -124.900261884999949, 49.705801071000046 ], [ -124.900700331999943, 49.704931696000102 ], [ -124.901126599999955, 49.704652387000074 ], [ -124.902726748999953, 49.704912360000087 ], [ -124.903126814999951, 49.705139131000131 ], [ -124.903654490999955, 49.70601959800009 ], [ -124.904455852999931, 49.706500016000085 ], [ -124.904769421999958, 49.706586924000099 ], [ -124.905266685999948, 49.706961255000046 ], [ -124.905537141999915, 49.707511052000036 ], [ -124.90813907499998, 49.707310273000097 ], [ -124.909913887999906, 49.707335063000123 ], [ -124.909780411000014, 49.707410798000076 ], [ -124.909423610999951, 49.707726501000117 ], [ -124.909300850999912, 49.707901664000133 ], [ -124.91014634699998, 49.707324096000029 ], [ -124.910562319999926, 49.707126347000035 ], [ -124.91086480300001, 49.706982586000038 ], [ -124.912129797999938, 49.706824387000047 ], [ -124.912492813999961, 49.706715493000026 ], [ -124.913231816999911, 49.706234497 ], [ -124.913849607999936, 49.706661580000073 ], [ -124.914019888999974, 49.707081613000092 ], [ -124.914538254999968, 49.707719705000031 ], [ -124.914898003999937, 49.708162487000067 ], [ -124.913180397999895, 49.708583489000084 ], [ -124.913166500999949, 49.708996202000108 ], [ -124.913163186999952, 49.709100872000072 ], [ -124.913111291999883, 49.710741611000046 ], [ -124.913773593999963, 49.710755394000095 ], [ -124.914656791999946, 49.710630207000087 ], [ -124.914928209999971, 49.710580689000039 ], [ -124.915437153999932, 49.710559268000075 ], [ -124.915930011999976, 49.71053849600009 ], [ -124.916183012999937, 49.710568004000045 ], [ -124.916398702999956, 49.71065108300013 ], [ -124.91660290099999, 49.710808696000122 ], [ -124.916671105999981, 49.711032510000081 ], [ -124.916656191999905, 49.711778890000112 ], [ -124.916655141999954, 49.712363004000075 ], [ -124.916653884999931, 49.713053489000046 ], [ -124.916573108999927, 49.713128288000107 ], [ -124.916458302999928, 49.713176600000061 ], [ -124.914576675, 49.713138099000012 ], [ -124.914479617, 49.71372899900004 ], [ -124.914453402999953, 49.714954793000118 ], [ -124.908931481999943, 49.715022899000139 ], [ -124.908925325999974, 49.715410777000081 ], [ -124.908907286999963, 49.716550459000118 ], [ -124.908903506999934, 49.716788382000139 ], [ -124.908837005999928, 49.717925533000042 ], [ -124.908826400999885, 49.718107205000095 ], [ -124.908867022999956, 49.7183235030001 ], [ -124.909191982999943, 49.718766592000094 ], [ -124.909702501999959, 49.719336605000052 ], [ -124.910467202999925, 49.720627120000074 ], [ -124.910585014999967, 49.720825899000083 ], [ -124.911297592999972, 49.721354802000114 ], [ -124.911817191999958, 49.722120311000047 ], [ -124.911899922999936, 49.722242160000064 ], [ -124.912390309, 49.722964620000049 ], [ -124.911364718999891, 49.722883969000051 ], [ -124.911111645999981, 49.722864093000112 ], [ -124.911130037999925, 49.723297635000073 ], [ -124.911660617999985, 49.723303433000119 ], [ -124.912627452999985, 49.723313999 ], [ -124.912814930999957, 49.723590162000065 ], [ -124.912835602999962, 49.723620598000124 ], [ -124.913248514999978, 49.724455005 ], [ -124.913446791999931, 49.724980499000033 ], [ -124.912187527999933, 49.724953927000051 ], [ -124.911836290999986, 49.724946497000076 ], [ -124.911389183999958, 49.726568749000137 ], [ -124.910199275999929, 49.726548024000088 ], [ -124.909866641999926, 49.726542231000046 ], [ -124.907554674999929, 49.726501916000096 ], [ -124.907570284999963, 49.72584577100006 ], [ -124.907484150999949, 49.725847190000103 ], [ -124.907431298999938, 49.724498766000117 ], [ -124.906599302999922, 49.724512468000064 ], [ -124.906567606999928, 49.723703413000102 ], [ -124.906881523999942, 49.723698244000097 ], [ -124.908231570999988, 49.723676004000033 ], [ -124.908210423999989, 49.723136635000088 ], [ -124.907794437999925, 49.723143489000066 ], [ -124.90777329499997, 49.722604119000074 ], [ -124.907357312999963, 49.722610973000108 ], [ -124.907336364999935, 49.722076415000096 ], [ -124.907333051999942, 49.721991898000113 ], [ -124.907325606999933, 49.721801918000089 ], [ -124.90771053399996, 49.721795576000076 ], [ -124.907741581999971, 49.721795065000052 ], [ -124.907740980999961, 49.72177974100002 ], [ -124.907731011999928, 49.72152538000006 ], [ -124.908146984999959, 49.721518527000093 ], [ -124.908145919999981, 49.721491406000077 ], [ -124.907747356999948, 49.721487418000095 ], [ -124.907752880999936, 49.721255161000094 ], [ -124.90730447199995, 49.721262548000041 ], [ -124.907315039999915, 49.721532232000072 ], [ -124.906899066999955, 49.721539084000028 ], [ -124.906920198999956, 49.722078453000037 ], [ -124.905672266999915, 49.72209899700001 ], [ -124.905661707, 49.721829311000057 ], [ -124.905245732999916, 49.721836156 ], [ -124.905220130999922, 49.721182159000094 ], [ -124.903138124999984, 49.721161248000037 ], [ -124.903144762999929, 49.721330988000076 ], [ -124.902312817999942, 49.721344658000142 ], [ -124.902333901999938, 49.721884030000083 ], [ -124.901917923999932, 49.721890863000056 ], [ -124.901949794999936, 49.722706437000056 ], [ -124.901960078999977, 49.722969606000127 ], [ -124.901544093000012, 49.722976438000082 ], [ -124.901565167999976, 49.723515809000041 ], [ -124.901981157999941, 49.723508977000101 ], [ -124.901991696999985, 49.723778663000054 ], [ -124.90282368199999, 49.723764994000099 ], [ -124.902876403999969, 49.725113422000035 ], [ -124.902460402, 49.725120258000047 ], [ -124.902481484999939, 49.725659628000052 ], [ -124.901649467999974, 49.725673295000043 ], [ -124.901660005999972, 49.725942980000099 ], [ -124.904572082999934, 49.725895121000136 ], [ -124.904594518999929, 49.726468403000133 ], [ -124.898957212999903, 49.726412928000038 ], [ -124.898651217999983, 49.72642998300006 ], [ -124.898368517000037, 49.726445734000031 ], [ -124.898004422999946, 49.726536419000034 ], [ -124.897639710999968, 49.726593033000086 ], [ -124.89733063099996, 49.726589923000049 ], [ -124.896654109999957, 49.726525511000034 ], [ -124.896264285999962, 49.726529711000154 ], [ -124.895466327999941, 49.726692999000136 ] ], [ [ -124.892446396999915, 49.722585758000029 ], [ -124.892485461999968, 49.720965968000044 ], [ -124.892308478, 49.720968861000102 ], [ -124.892297991999982, 49.720699173000078 ], [ -124.891466054999967, 49.720712765000066 ], [ -124.891455573999934, 49.720443078000088 ], [ -124.891039605999936, 49.720449872000117 ], [ -124.890976743999971, 49.718831747000074 ], [ -124.890560791, 49.718838539000046 ], [ -124.890550316999935, 49.718568850000132 ], [ -124.890173196999953, 49.718575007000013 ], [ -124.890160149999957, 49.71911493700005 ], [ -124.890571265999981, 49.719108226000095 ], [ -124.890627618999957, 49.720559081000047 ], [ -124.891034530999903, 49.720563218000095 ], [ -124.890985111999925, 49.722609631000083 ], [ -124.891955404, 49.722593782000054 ], [ -124.891965886999941, 49.722863469000117 ], [ -124.892381874999927, 49.722856671000081 ], [ -124.892371388999962, 49.722586984000031 ], [ -124.892446396999915, 49.722585758000029 ] ], [ [ -124.890487475, 49.716950725000046 ], [ -124.890445580999966, 49.715871972000073 ], [ -124.890029654, 49.715878762000052 ], [ -124.890019184999929, 49.715609074 ], [ -124.889187331999921, 49.715622649000089 ], [ -124.889166400999954, 49.71508327300009 ], [ -124.888750479999914, 49.715090058000044 ], [ -124.888740016999961, 49.714820370000069 ], [ -124.888324096999924, 49.714827153000016 ], [ -124.888313636999925, 49.714557466 ], [ -124.887481800999979, 49.714571027000076 ], [ -124.887492257999952, 49.714840716000047 ], [ -124.887076335999964, 49.714847495000072 ], [ -124.887086790999945, 49.715117184000079 ], [ -124.887502712999947, 49.715110404000072 ], [ -124.887534081999931, 49.715919469 ], [ -124.88711815399999, 49.715926249000091 ], [ -124.887128607999955, 49.716195937000052 ], [ -124.887544538999975, 49.716189158000056 ], [ -124.887565451999961, 49.716728534000033 ], [ -124.887981388999947, 49.716721753000101 ], [ -124.887991847999984, 49.716991441000047 ], [ -124.888823723999934, 49.716977875000033 ], [ -124.888834188999951, 49.7172475630001 ], [ -124.889666067999926, 49.7172339910001 ], [ -124.889687005999946, 49.717773366000131 ], [ -124.890102950999932, 49.717766577000141 ], [ -124.890071536999983, 49.71695751500004 ], [ -124.890487475, 49.716950725000046 ] ], [ [ -124.896526895999926, 49.711724643000125 ], [ -124.89651639199991, 49.711454956000061 ], [ -124.89568461199994, 49.711468576000094 ], [ -124.895674112999956, 49.711198890000148 ], [ -124.895258225999925, 49.711205698000114 ], [ -124.895226733999934, 49.710396636000041 ], [ -124.894810853999928, 49.710403442000036 ], [ -124.894821349, 49.71067312900005 ], [ -124.894405465999938, 49.710679933000065 ], [ -124.894447438999975, 49.711758684000074 ], [ -124.892783868999985, 49.711785889000048 ], [ -124.892815322999965, 49.712594952000096 ], [ -124.894063019999962, 49.712574550000049 ], [ -124.894073510999959, 49.712844237000077 ], [ -124.894489411999956, 49.712837433000068 ], [ -124.894478917999947, 49.71256774600009 ], [ -124.895310716999944, 49.712554133000026 ], [ -124.895300218999978, 49.712284447000037 ], [ -124.896132011, 49.71227082800003 ], [ -124.896111005999927, 49.711731454000066 ], [ -124.896526895999926, 49.711724643000125 ] ], [ [ -124.896890252999953, 49.710369395000058 ], [ -124.896879747999947, 49.710099707000012 ], [ -124.89646387099999, 49.710106520000082 ], [ -124.896453365999903, 49.709836833000118 ], [ -124.895621614999968, 49.70985045200009 ], [ -124.895642613999911, 49.710389827000078 ], [ -124.896890252999953, 49.710369395000058 ] ], [ [ -124.900101521999915, 49.707348289000088 ], [ -124.900091, 49.70707860300007 ], [ -124.89967515, 49.707085426000049 ], [ -124.899685670999986, 49.707355113000062 ], [ -124.900101521999915, 49.707348289000088 ] ], [ [ -124.901100515999971, 49.705173015000106 ], [ -124.901106972999983, 49.704903050000027 ], [ -124.900838485999927, 49.704907458 ], [ -124.900849012999942, 49.705177145000107 ], [ -124.901100515999971, 49.705173015000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87466417", "BldgCostT": "60321667", "sL_LossRatio": "0.982067907039173", "sL_AssetLoss": "75397.78", "sL_BldgLoss": "74045.74", "sL_StrLoss": "68454.44", "sL_NStrLoss": "5591.3", "sL_ContLoss": "1352.04", "geom_point": "0101000020E6100000BA3BA562A73A5FC0E1A5ABA6B1D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.914677712999946, 49.697069607000074 ], [ -124.914584431000023, 49.694696150000034 ], [ -124.91666313799999, 49.694661756000073 ], [ -124.916641918999971, 49.694122387000064 ], [ -124.914147496999988, 49.694163654000079 ], [ -124.914136904, 49.693893969000101 ], [ -124.913721168, 49.693900841000065 ], [ -124.913689388999927, 49.693091786000068 ], [ -124.913495044999976, 49.693094998000085 ], [ -124.913506087999949, 49.692470897000078 ], [ -124.913330715999962, 49.692272307000088 ], [ -124.913236989999973, 49.692164819000013 ], [ -124.913210119999945, 49.691480545000019 ], [ -124.9127944049999, 49.691487413000068 ], [ -124.912783819000012, 49.69121772800009 ], [ -124.912416471999919, 49.691223796000024 ], [ -124.911964129999959, 49.690705002000087 ], [ -124.912398462999946, 49.690713949000049 ], [ -124.913457000999969, 49.690735801000088 ], [ -124.913644928999943, 49.690739684000043 ], [ -124.913921586999962, 49.690745384000088 ], [ -124.914326725999942, 49.690753735000058 ], [ -124.915936212999924, 49.690777782000097 ], [ -124.916887703999976, 49.690791788000062 ], [ -124.916900637999973, 49.690419291000048 ], [ -124.916924899, 49.689721034000094 ], [ -124.916945324, 49.689132594000029 ], [ -124.916960726999903, 49.688689661000112 ], [ -124.916986896999916, 49.687935896000056 ], [ -124.918981007999918, 49.687975407000124 ], [ -124.918944314000015, 49.688771193000093 ], [ -124.918920295999925, 49.689260297000033 ], [ -124.919031014999931, 49.689678803000085 ], [ -124.918199583999964, 49.689859398000074 ], [ -124.918022582999953, 49.689962000000108 ], [ -124.91784698, 49.690063699000106 ], [ -124.917722326999964, 49.690240607000092 ], [ -124.917653201999954, 49.690647402000053 ], [ -124.917668596999945, 49.691169293000058 ], [ -124.917779884999959, 49.691325996000039 ], [ -124.91809847699993, 49.691446092000099 ], [ -124.918349982999942, 49.691418895000012 ], [ -124.91880940099999, 49.691324504000114 ], [ -124.919003511999961, 49.691321899000044 ], [ -124.919602692999902, 49.691412395000036 ], [ -124.919305686999934, 49.692138988000124 ], [ -124.919274495999971, 49.692404091000114 ], [ -124.919288163999937, 49.692565751000082 ], [ -124.919302693999981, 49.692737208000054 ], [ -124.919428418, 49.69293179200011 ], [ -124.91939979199995, 49.693735697000058 ], [ -124.918419584999953, 49.693698102000013 ], [ -124.917817405999983, 49.693557188000099 ], [ -124.917614991999983, 49.693915915000069 ], [ -124.917553905999938, 49.695332995000072 ], [ -124.91854551099999, 49.695414809000056 ], [ -124.918547994999983, 49.695779103000099 ], [ -124.918703184999941, 49.696252901000101 ], [ -124.91884518699996, 49.696695097000081 ], [ -124.918739984999917, 49.697042114000112 ], [ -124.918123323999922, 49.69703412100003 ], [ -124.916651006999942, 49.697015084000078 ], [ -124.916649201999945, 49.697090589000091 ], [ -124.914677712999946, 49.697069607000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269888219", "BldgCostT": "171770412", "sL_LossRatio": "0.89625869742268", "sL_AssetLoss": "131306.14", "sL_BldgLoss": "117684.27", "sL_StrLoss": "99068.27", "sL_NStrLoss": "18616", "sL_ContLoss": "13621.87", "geom_point": "0101000020E6100000A3B946B2E43B5FC019DC4923EAD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.932523492999906, 49.68970944200008 ], [ -124.932863897999937, 49.688256128000027 ], [ -124.930696794999946, 49.688205213000032 ], [ -124.930747185, 49.68693289000003 ], [ -124.930162491999951, 49.68693428600006 ], [ -124.930191598999897, 49.686098001000126 ], [ -124.930220729999931, 49.685266310000053 ], [ -124.930236416999932, 49.684839423000085 ], [ -124.930250880999921, 49.684446201000085 ], [ -124.930409518999966, 49.684449283000063 ], [ -124.93506009099994, 49.684540002000062 ], [ -124.936537293999905, 49.684583197000045 ], [ -124.9378693, 49.68461240100001 ], [ -124.937767890999922, 49.68618470400002 ], [ -124.937946034999982, 49.686189762000019 ], [ -124.939027789999926, 49.686220395000106 ], [ -124.94012838799992, 49.686251792000164 ], [ -124.940753681999936, 49.686294696000125 ], [ -124.941526992999954, 49.686462404000103 ], [ -124.941937890999938, 49.686487004000135 ], [ -124.942356884999967, 49.686463189000058 ], [ -124.943092705999959, 49.686275999000024 ], [ -124.943202171999943, 49.686454302000115 ], [ -124.943273429999977, 49.686729365000147 ], [ -124.943239776999945, 49.687230083000095 ], [ -124.943223096999958, 49.687658344000084 ], [ -124.943216023, 49.687839727000025 ], [ -124.943211998999971, 49.6884369960001 ], [ -124.943207128, 49.688527783000026 ], [ -124.938166130999932, 49.688433836000094 ], [ -124.93747401200001, 49.688406405000059 ], [ -124.937398716999922, 49.688369703000099 ], [ -124.937316739999972, 49.688368038000114 ], [ -124.937053969999965, 49.688362681000115 ], [ -124.936715992999964, 49.688355812000111 ], [ -124.935970411999946, 49.688335228000064 ], [ -124.934850906999884, 49.688304346000052 ], [ -124.934826182, 49.68922632500005 ], [ -124.934820397999928, 49.689442858000113 ], [ -124.934815224999966, 49.689612749000077 ], [ -124.933147447999914, 49.689566719000034 ], [ -124.93318372, 49.689739886000034 ], [ -124.932523492999906, 49.68970944200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145960334", "BldgCostT": "99298334", "sL_LossRatio": "0.926693251049532", "sL_AssetLoss": "133035.5", "sL_BldgLoss": "123283.1", "sL_StrLoss": "109585.1", "sL_NStrLoss": "13698", "sL_ContLoss": "9752.4", "geom_point": "0101000020E610000084B03B59013C5FC0D6E300F28CD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.930250880999921, 49.684446201000085 ], [ -124.930293905, 49.683192598000083 ], [ -124.930321900999985, 49.682404897000019 ], [ -124.933125811999972, 49.682465690000072 ], [ -124.934949276999973, 49.682510648000054 ], [ -124.935183115999976, 49.682516387000121 ], [ -124.93800089399997, 49.68257438900006 ], [ -124.939994686999981, 49.682618100000106 ], [ -124.940906992999913, 49.682644999000033 ], [ -124.943752615000037, 49.682699590000084 ], [ -124.943739686999933, 49.682956898000086 ], [ -124.943714208999964, 49.683463806000077 ], [ -124.943672200999941, 49.684267587000143 ], [ -124.942474185999984, 49.684255107000091 ], [ -124.941619087999968, 49.684507687000092 ], [ -124.942833493999956, 49.685919101000131 ], [ -124.943092705999959, 49.686275999000024 ], [ -124.942356884999967, 49.686463189000058 ], [ -124.941937890999938, 49.686487004000135 ], [ -124.941526992999954, 49.686462404000103 ], [ -124.940753681999936, 49.686294696000125 ], [ -124.94012838799992, 49.686251792000164 ], [ -124.939027789999926, 49.686220395000106 ], [ -124.937946034999982, 49.686189762000019 ], [ -124.937767890999922, 49.68618470400002 ], [ -124.9378693, 49.68461240100001 ], [ -124.936537293999905, 49.684583197000045 ], [ -124.93506009099994, 49.684540002000062 ], [ -124.930409518999966, 49.684449283000063 ], [ -124.930250880999921, 49.684446201000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "482708167", "BldgCostT": "308991667", "sL_LossRatio": "0.952521046947195", "sL_AssetLoss": "319073.59", "sL_BldgLoss": "303924.31", "sL_StrLoss": "272884.21", "sL_NStrLoss": "31040.1", "sL_ContLoss": "15149.28", "geom_point": "0101000020E6100000C7BCF2ACA63C5FC0B7F855D2EDD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.940824521999971, 49.691841268000147 ], [ -124.940488794999936, 49.689964950000096 ], [ -124.937975990999917, 49.68990752600007 ], [ -124.937907344999942, 49.689337925000125 ], [ -124.934826182, 49.68922632500005 ], [ -124.934850906999884, 49.688304346000052 ], [ -124.935970411999946, 49.688335228000064 ], [ -124.936715992999964, 49.688355812000111 ], [ -124.937053969999965, 49.688362681000115 ], [ -124.937316739999972, 49.688368038000114 ], [ -124.937398716999922, 49.688369703000099 ], [ -124.93747401200001, 49.688406405000059 ], [ -124.938166130999932, 49.688433836000094 ], [ -124.943207128, 49.688527783000026 ], [ -124.943211998999971, 49.6884369960001 ], [ -124.943216023, 49.687839727000025 ], [ -124.943223096999958, 49.687658344000084 ], [ -124.943239776999945, 49.687230083000095 ], [ -124.943273429999977, 49.686729365000147 ], [ -124.943202171999943, 49.686454302000115 ], [ -124.943092705999959, 49.686275999000024 ], [ -124.942833493999956, 49.685919101000131 ], [ -124.941619087999968, 49.684507687000092 ], [ -124.942474185999984, 49.684255107000091 ], [ -124.943672200999941, 49.684267587000143 ], [ -124.943714208999964, 49.683463806000077 ], [ -124.943739686999933, 49.682956898000086 ], [ -124.943752615000037, 49.682699590000084 ], [ -124.946498365999972, 49.682755834 ], [ -124.948595347999969, 49.682788876000103 ], [ -124.949787919999963, 49.682460957000103 ], [ -124.95082012499995, 49.682431334000064 ], [ -124.951122623999936, 49.682537350000104 ], [ -124.951131209999943, 49.682751828000079 ], [ -124.951546840999953, 49.682744822000089 ], [ -124.951557638999958, 49.683014501000102 ], [ -124.951973271999947, 49.683007494000037 ], [ -124.951966284999983, 49.682833015000021 ], [ -124.956401730999914, 49.684387268000123 ], [ -124.958100581999986, 49.685867357000163 ], [ -124.956441679999955, 49.686748418 ], [ -124.956330965999925, 49.686807228000063 ], [ -124.95462550400002, 49.687712927000057 ], [ -124.95269746799994, 49.688736782000035 ], [ -124.952029162999935, 49.68909162000007 ], [ -124.95185136799995, 49.689186033000119 ], [ -124.950785711999956, 49.68975226 ], [ -124.950390692999946, 49.689962139000066 ], [ -124.948474044999926, 49.690980451 ], [ -124.94704365799997, 49.69106713700004 ], [ -124.946181916999976, 49.691119354000101 ], [ -124.945071347999942, 49.691091501000109 ], [ -124.943948252999974, 49.69106535 ], [ -124.942894657999958, 49.690969684000088 ], [ -124.942813346000023, 49.692249914000058 ], [ -124.942205474999966, 49.692056900000082 ], [ -124.941497568999964, 49.691932529000034 ], [ -124.940824521999971, 49.691841268000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "301846499", "BldgCostT": "200384999", "sL_LossRatio": "0.967242523316918", "sL_AssetLoss": "224664.13", "sL_BldgLoss": "217304.7", "sL_StrLoss": "199666.4", "sL_NStrLoss": "17638.3", "sL_ContLoss": "7359.43", "geom_point": "0101000020E6100000D193A6FFF43C5FC011CAF3C7D1D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.953038102999969, 49.698641538000125 ], [ -124.952661662999958, 49.698619924000077 ], [ -124.952363323999947, 49.698636848000085 ], [ -124.95203925299991, 49.698689513000026 ], [ -124.951655841999965, 49.698791114000088 ], [ -124.951292156999969, 49.698954128000025 ], [ -124.950500671000029, 49.698133132000073 ], [ -124.950484901999957, 49.698117916000079 ], [ -124.945914447999925, 49.693713835000032 ], [ -124.945884539999938, 49.693678347000073 ], [ -124.94521361999989, 49.69293899000008 ], [ -124.948474044999926, 49.690980451 ], [ -124.950390692999946, 49.689962139000066 ], [ -124.950785711999956, 49.68975226 ], [ -124.95185136799995, 49.689186033000119 ], [ -124.952029162999935, 49.68909162000007 ], [ -124.95269746799994, 49.688736782000035 ], [ -124.953382225, 49.689192632000093 ], [ -124.953506378999947, 49.689215415000071 ], [ -124.953645969, 49.689322992000029 ], [ -124.954286578999941, 49.689816593000046 ], [ -124.954484961, 49.689985253000025 ], [ -124.954627156999948, 49.69006986800008 ], [ -124.955528146999953, 49.690806185000042 ], [ -124.955666517999973, 49.690907806000062 ], [ -124.956301550999953, 49.69137923400006 ], [ -124.95629941699994, 49.691473183 ], [ -124.955701042999934, 49.691467453000037 ], [ -124.955685355999947, 49.692157765000047 ], [ -124.957431013999951, 49.692174471000115 ], [ -124.957571047999963, 49.692267483000109 ], [ -124.957568989999928, 49.692358170000063 ], [ -124.95770414099999, 49.692355885000069 ], [ -124.957857522999944, 49.692457762000132 ], [ -124.958184508, 49.69267496 ], [ -124.958193044999959, 49.692887339000023 ], [ -124.958496512999929, 49.692882206000071 ], [ -124.958611917999974, 49.692958861000086 ], [ -124.958619601999942, 49.693149985000041 ], [ -124.95889270099994, 49.693145365000106 ], [ -124.959039331999946, 49.693242760000025 ], [ -124.959049672, 49.693499933000069 ], [ -124.959432045999961, 49.693503582000069 ], [ -124.959464374999953, 49.693525046000104 ], [ -124.960059653999949, 49.693920458000051 ], [ -124.960347225999925, 49.694205378000078 ], [ -124.960323593999973, 49.694213596000111 ], [ -124.960119444999975, 49.694319632000102 ], [ -124.959987421, 49.694388172000039 ], [ -124.957874015999948, 49.69548557800011 ], [ -124.956831922999953, 49.696036894000073 ], [ -124.956317181, 49.696309000000113 ], [ -124.955753341999966, 49.696608576000109 ], [ -124.955216602999968, 49.696992735000038 ], [ -124.954348293999914, 49.697399672000103 ], [ -124.954687017999959, 49.697795610000149 ], [ -124.954729752, 49.697988523000035 ], [ -124.954691881999963, 49.698191467000093 ], [ -124.954392111999951, 49.699002655000115 ], [ -124.953941365999967, 49.698868103000073 ], [ -124.953442377999977, 49.698719179000129 ], [ -124.953038102999969, 49.698641538000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137049751", "BldgCostT": "90360001", "sL_LossRatio": "0.955410032218966", "sL_AssetLoss": "108346.12", "sL_BldgLoss": "103514.97", "sL_StrLoss": "94861.47", "sL_NStrLoss": "8653.5", "sL_ContLoss": "4831.15", "geom_point": "0101000020E61000008A2CEB615C3D5FC0CDE2B49638D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.960735588999938, 49.69407 ], [ -124.961105302999954, 49.693957492000095 ], [ -124.961351796999949, 49.69396799 ], [ -124.961448433999976, 49.694009013000063 ], [ -124.961553528999957, 49.694053601000086 ], [ -124.961601413999986, 49.694098229000097 ], [ -124.961746508999909, 49.694233331000056 ], [ -124.961876504999978, 49.694354392 ], [ -124.96247370299993, 49.694908794000085 ], [ -124.962760101999947, 49.695110293000091 ], [ -124.963433790999929, 49.695345206000106 ], [ -124.963222983999984, 49.695659795000076 ], [ -124.962778390999972, 49.696017197000074 ], [ -124.962058284999927, 49.6964295000001 ], [ -124.961793496999945, 49.696680612000073 ], [ -124.961235414999962, 49.697399407000084 ], [ -124.960496461999981, 49.698392702000042 ], [ -124.96022577799999, 49.698904607000124 ], [ -124.960113142999958, 49.699104119 ], [ -124.959855883999978, 49.699328346000051 ], [ -124.959417659999986, 49.699524740000165 ], [ -124.95893256799998, 49.699648754000066 ], [ -124.958441839999921, 49.699655764000092 ], [ -124.95782703099999, 49.699573431000026 ], [ -124.95616547899999, 49.699328160000036 ], [ -124.954922735999929, 49.699136765000084 ], [ -124.954870124999957, 49.69912864700003 ], [ -124.954392111999951, 49.699002655000115 ], [ -124.954691881999963, 49.698191467000093 ], [ -124.954729752, 49.697988523000035 ], [ -124.954687017999959, 49.697795610000149 ], [ -124.954348293999914, 49.697399672000103 ], [ -124.955216602999968, 49.696992735000038 ], [ -124.955753341999966, 49.696608576000109 ], [ -124.956317181, 49.696309000000113 ], [ -124.956831922999953, 49.696036894000073 ], [ -124.957874015999948, 49.69548557800011 ], [ -124.959987421, 49.694388172000039 ], [ -124.960119444999975, 49.694319632000102 ], [ -124.960323593999973, 49.694213596000111 ], [ -124.960347225999925, 49.694205378000078 ], [ -124.960735588999938, 49.69407 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120622000", "BldgCostT": "82660000", "sL_LossRatio": "0.985649295456271", "sL_AssetLoss": "95908.88", "sL_BldgLoss": "94532.52", "sL_StrLoss": "88931.52", "sL_NStrLoss": "5601", "sL_ContLoss": "1376.36", "geom_point": "0101000020E61000003FCFD9E1B33D5FC0299E0EBF76D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.963222983999984, 49.695659795000076 ], [ -124.963433790999929, 49.695345206000106 ], [ -124.964153389, 49.695569701000124 ], [ -124.964803289999978, 49.696061595000039 ], [ -124.966039351999896, 49.697029478000118 ], [ -124.966570785999934, 49.697445602000123 ], [ -124.965693474999966, 49.698067001000041 ], [ -124.96587381199997, 49.698185595000112 ], [ -124.966611805999904, 49.698336494000046 ], [ -124.966858795999897, 49.698442306000054 ], [ -124.96863328799999, 49.699830905000084 ], [ -124.968778292999971, 49.699980714000084 ], [ -124.968615512999918, 49.699993845000115 ], [ -124.968379786999932, 49.700012894000075 ], [ -124.967926985999952, 49.700118306000071 ], [ -124.967516582999906, 49.700313194000046 ], [ -124.967401426999913, 49.700375355000126 ], [ -124.967386463999915, 49.700383440000095 ], [ -124.966538795999952, 49.700840990000117 ], [ -124.965245814999903, 49.70152139500005 ], [ -124.96498929599997, 49.701833801000099 ], [ -124.964912014999953, 49.702309806000116 ], [ -124.964510140999948, 49.702277785000035 ], [ -124.964167704999952, 49.702250508000077 ], [ -124.963878002999948, 49.702191995000092 ], [ -124.962714590999965, 49.701544110000079 ], [ -124.962398806999957, 49.701293696000057 ], [ -124.961535801999972, 49.700019671000092 ], [ -124.961437193999984, 49.699874111000071 ], [ -124.960912988999951, 49.699154896000067 ], [ -124.960631172999953, 49.698993 ], [ -124.96022577799999, 49.698904607000124 ], [ -124.960496461999981, 49.698392702000042 ], [ -124.961235414999962, 49.697399407000084 ], [ -124.961793496999945, 49.696680612000073 ], [ -124.962058284999927, 49.6964295000001 ], [ -124.962778390999972, 49.696017197000074 ], [ -124.963222983999984, 49.695659795000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140300584", "BldgCostT": "93663334", "sL_LossRatio": "0.957524611421746", "sL_AssetLoss": "112575.78", "sL_BldgLoss": "107794.08", "sL_StrLoss": "97624.68", "sL_NStrLoss": "10169.4", "sL_ContLoss": "4781.7", "geom_point": "0101000020E61000005573EBFB913D5FC0717AC5F0E4D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.957020442999976, 49.703604548000044 ], [ -124.956485302999923, 49.70316793000007 ], [ -124.956078831999974, 49.702836349000059 ], [ -124.955733728000027, 49.702471432000081 ], [ -124.955572710999931, 49.70220378600002 ], [ -124.955489350999969, 49.702065204000093 ], [ -124.955417086999915, 49.701769481 ], [ -124.95542946499998, 49.7015294320001 ], [ -124.955672264999976, 49.700723993000032 ], [ -124.955896395999943, 49.700089670000118 ], [ -124.955927948999957, 49.700000413000033 ], [ -124.95616547899999, 49.699328160000036 ], [ -124.95782703099999, 49.699573431000026 ], [ -124.958441839999921, 49.699655764000092 ], [ -124.95893256799998, 49.699648754000066 ], [ -124.959417659999986, 49.699524740000165 ], [ -124.959855883999978, 49.699328346000051 ], [ -124.960113142999958, 49.699104119 ], [ -124.96022577799999, 49.698904607000124 ], [ -124.960631172999953, 49.698993 ], [ -124.960912988999951, 49.699154896000067 ], [ -124.961437193999984, 49.699874111000071 ], [ -124.961535801999972, 49.700019671000092 ], [ -124.962398806999957, 49.701293696000057 ], [ -124.962714590999965, 49.701544110000079 ], [ -124.963878002999948, 49.702191995000092 ], [ -124.964167704999952, 49.702250508000077 ], [ -124.964510140999948, 49.702277785000035 ], [ -124.964912014999953, 49.702309806000116 ], [ -124.96498929599997, 49.701833801000099 ], [ -124.965245814999903, 49.70152139500005 ], [ -124.966538795999952, 49.700840990000117 ], [ -124.967386463999915, 49.700383440000095 ], [ -124.967401426999913, 49.700375355000126 ], [ -124.967516582999906, 49.700313194000046 ], [ -124.96756989499994, 49.700355867000084 ], [ -124.96987321, 49.70219929500005 ], [ -124.970961605999904, 49.70306916100008 ], [ -124.971866507999962, 49.703792306000075 ], [ -124.97110181799998, 49.704212306000073 ], [ -124.970115599999971, 49.703441988000094 ], [ -124.968585909999959, 49.703300712000114 ], [ -124.968476792999979, 49.703838505000121 ], [ -124.968380903999972, 49.703974282000061 ], [ -124.968229896999958, 49.704098811000044 ], [ -124.967989996999947, 49.704225208000075 ], [ -124.967523185999966, 49.704470946000122 ], [ -124.967170899999942, 49.704656389000014 ], [ -124.966059690999913, 49.703781491000086 ], [ -124.96578609299999, 49.703684397000089 ], [ -124.964668198999931, 49.703287891000045 ], [ -124.964395719999942, 49.70351019 ], [ -124.963758995999967, 49.703844194000069 ], [ -124.962782896999983, 49.704353919000063 ], [ -124.96250940099992, 49.704497886000091 ], [ -124.962376138999929, 49.704534080000052 ], [ -124.962077103999945, 49.704615310000115 ], [ -124.961289706999978, 49.704683309000124 ], [ -124.960838692999985, 49.70482923400008 ], [ -124.960504190999941, 49.705008241000073 ], [ -124.959449747999926, 49.705572488000094 ], [ -124.958133504999978, 49.704513784000042 ], [ -124.957020442999976, 49.703604548000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149492583", "BldgCostT": "103098333", "sL_LossRatio": "0.984787403796573", "sL_AssetLoss": "118087.01", "sL_BldgLoss": "116290.6", "sL_StrLoss": "106220.2", "sL_NStrLoss": "10070.4", "sL_ContLoss": "1796.41", "geom_point": "0101000020E61000002AC344C5F03D5FC0B49786444EDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.964714102999977, 49.706971812000049 ], [ -124.965499015999953, 49.706582591000036 ], [ -124.965341425999938, 49.706458644000051 ], [ -124.965178273999982, 49.706330260000094 ], [ -124.965044490999915, 49.70622501500003 ], [ -124.964705109999954, 49.705958003000084 ], [ -124.964840666, 49.705886636000052 ], [ -124.965191795999942, 49.70570178600007 ], [ -124.964760213999938, 49.705356795000064 ], [ -124.964461670999967, 49.705194690000042 ], [ -124.963619807999947, 49.704914216000084 ], [ -124.963184179999985, 49.704686 ], [ -124.962782896999983, 49.704353919000063 ], [ -124.963758995999967, 49.703844194000069 ], [ -124.964395719999942, 49.70351019 ], [ -124.964668198999931, 49.703287891000045 ], [ -124.96578609299999, 49.703684397000089 ], [ -124.966059690999913, 49.703781491000086 ], [ -124.967170899999942, 49.704656389000014 ], [ -124.967523185999966, 49.704470946000122 ], [ -124.967989996999947, 49.704225208000075 ], [ -124.968229896999958, 49.704098811000044 ], [ -124.968380903999972, 49.703974282000061 ], [ -124.968476792999979, 49.703838505000121 ], [ -124.968585909999959, 49.703300712000114 ], [ -124.970115599999971, 49.703441988000094 ], [ -124.97110181799998, 49.704212306000073 ], [ -124.971827805999951, 49.70477690500006 ], [ -124.972263698999967, 49.705118292000044 ], [ -124.972213993999986, 49.705482107000051 ], [ -124.97197610299996, 49.706015094000044 ], [ -124.971689102999946, 49.706329006000018 ], [ -124.971411190999916, 49.706484713000059 ], [ -124.970535415000015, 49.706975704000058 ], [ -124.969674201999979, 49.707458120000126 ], [ -124.969663705999935, 49.707464009000049 ], [ -124.968993487999967, 49.706939514000076 ], [ -124.968077491999964, 49.707424698000047 ], [ -124.966423603999914, 49.708303086000058 ], [ -124.965479594999977, 49.707568317000096 ], [ -124.964714102999977, 49.706971812000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268184501", "BldgCostT": "172015001", "sL_LossRatio": "0.937397018341835", "sL_AssetLoss": "182435.4", "sL_BldgLoss": "171014.4", "sL_StrLoss": "152493", "sL_NStrLoss": "18521.4", "sL_ContLoss": "11421", "geom_point": "0101000020E61000001C0B962C9F3D5FC0CEA822AAAADA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.959513394999931, 49.711390215000108 ], [ -124.959275096999988, 49.711017284000064 ], [ -124.959161211, 49.710722991000104 ], [ -124.959138511999981, 49.710438486000029 ], [ -124.959163485999937, 49.710132917000074 ], [ -124.959432394999965, 49.709276504000066 ], [ -124.959494659999905, 49.708972991000074 ], [ -124.959477968000016, 49.708611301000047 ], [ -124.959243076999925, 49.708026201000067 ], [ -124.958968259999921, 49.707738392000081 ], [ -124.958792633999934, 49.707536122000093 ], [ -124.958171699, 49.707052365000081 ], [ -124.958029418999914, 49.706941515000096 ], [ -124.957580482999958, 49.706591766000081 ], [ -124.958703126999978, 49.705982713000118 ], [ -124.959449747999926, 49.705572488000094 ], [ -124.960504190999941, 49.705008241000073 ], [ -124.960838692999985, 49.70482923400008 ], [ -124.961289706999978, 49.704683309000124 ], [ -124.962077103999945, 49.704615310000115 ], [ -124.962376138999929, 49.704534080000052 ], [ -124.96250940099992, 49.704497886000091 ], [ -124.962782896999983, 49.704353919000063 ], [ -124.963184179999985, 49.704686 ], [ -124.963619807999947, 49.704914216000084 ], [ -124.964461670999967, 49.705194690000042 ], [ -124.964760213999938, 49.705356795000064 ], [ -124.965191795999942, 49.70570178600007 ], [ -124.964840666, 49.705886636000052 ], [ -124.964705109999954, 49.705958003000084 ], [ -124.965044490999915, 49.70622501500003 ], [ -124.965178273999982, 49.706330260000094 ], [ -124.965341425999938, 49.706458644000051 ], [ -124.965499015999953, 49.706582591000036 ], [ -124.964714102999977, 49.706971812000049 ], [ -124.965479594999977, 49.707568317000096 ], [ -124.966423603999914, 49.708303086000058 ], [ -124.968077491999964, 49.707424698000047 ], [ -124.968993487999967, 49.706939514000076 ], [ -124.969663705999935, 49.707464009000049 ], [ -124.970253579999948, 49.707921974000072 ], [ -124.968370784999976, 49.708931414000048 ], [ -124.966374012999893, 49.71001440600002 ], [ -124.965651395999942, 49.710405137000116 ], [ -124.963900789999954, 49.711325514000102 ], [ -124.963088393999925, 49.711752599000135 ], [ -124.962671713999967, 49.711971651000084 ], [ -124.962290047999943, 49.711978119000094 ], [ -124.962297710999962, 49.712168261000031 ], [ -124.962141270999936, 49.712250501000071 ], [ -124.961885037999949, 49.712254843 ], [ -124.96189018099993, 49.71238249500005 ], [ -124.961747344999964, 49.712457583000088 ], [ -124.961218524999964, 49.712734096000091 ], [ -124.960816673999929, 49.71242085500004 ], [ -124.9601055199999, 49.711870751000042 ], [ -124.959857565999968, 49.711669546000046 ], [ -124.959513394999931, 49.711390215000108 ] ], [ [ -124.963494175999969, 49.710878262000087 ], [ -124.963910042999927, 49.710871209000125 ], [ -124.963899166999965, 49.710601533000087 ], [ -124.965146760999971, 49.710580365000084 ], [ -124.965135875999962, 49.710310689000082 ], [ -124.964720014999926, 49.710317746000044 ], [ -124.964709132999985, 49.710048070000035 ], [ -124.964293272999925, 49.710055126000022 ], [ -124.964304152999958, 49.710324802000059 ], [ -124.963888288999897, 49.710331856000067 ], [ -124.963899166999965, 49.710601533000087 ], [ -124.963483300999954, 49.71060858500006 ], [ -124.963494175999969, 49.710878262000087 ], [ -124.963078309999929, 49.710885314000045 ], [ -124.963089180999987, 49.711154991000114 ], [ -124.963505052999935, 49.711147938000082 ], [ -124.963494175999969, 49.710878262000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117789228", "BldgCostT": "77224857", "sL_LossRatio": "0.891614976443503", "sL_AssetLoss": "95472.6", "sL_BldgLoss": "85124.8", "sL_StrLoss": "73160.9", "sL_NStrLoss": "11963.9", "sL_ContLoss": "10347.8", "geom_point": "0101000020E61000009FAFBC58563E5FC0B556499ECADA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.970715124999955, 49.71454215100006 ], [ -124.97034591299996, 49.71412938000006 ], [ -124.96986045899996, 49.713707441000075 ], [ -124.968961373999946, 49.713002746000093 ], [ -124.96790968699996, 49.712178806000068 ], [ -124.96743177899998, 49.711802432000127 ], [ -124.96731999499994, 49.711714387000079 ], [ -124.965651395999942, 49.710405137000116 ], [ -124.966374012999893, 49.71001440600002 ], [ -124.968370784999976, 49.708931414000048 ], [ -124.970253579999948, 49.707921974000072 ], [ -124.974249516999976, 49.705825187000123 ], [ -124.975997467999903, 49.704907862 ], [ -124.98037184499999, 49.702611901000083 ], [ -124.981120512999951, 49.702788909000077 ], [ -124.98098071299998, 49.703468499000074 ], [ -124.980790381999967, 49.704672094000081 ], [ -124.98071397699999, 49.705431490000073 ], [ -124.980539189999988, 49.706185401000027 ], [ -124.980473275999941, 49.706971896000049 ], [ -124.979147610999945, 49.706875789000101 ], [ -124.978837395999918, 49.706924210000118 ], [ -124.978453091999938, 49.707068110000144 ], [ -124.980091502, 49.708375092000011 ], [ -124.97943928499997, 49.708719794000061 ], [ -124.978776655000033, 49.709201196 ], [ -124.97671579899999, 49.710267497000039 ], [ -124.977607902999978, 49.71097930800002 ], [ -124.978415488999957, 49.711623708000069 ], [ -124.9781866, 49.711739504000093 ], [ -124.977453780999895, 49.71211030700006 ], [ -124.976544530999931, 49.712597991000024 ], [ -124.975700087999954, 49.71305091200005 ], [ -124.975118100999964, 49.713347177000074 ], [ -124.973397720999927, 49.714222891000105 ], [ -124.971303166999931, 49.715334759000072 ], [ -124.970715124999955, 49.71454215100006 ] ], [ [ -124.97209708099993, 49.714240249000113 ], [ -124.972103122999926, 49.713970286000091 ], [ -124.971942561999953, 49.713973020000019 ], [ -124.971898869999933, 49.712894320000046 ], [ -124.972115699999932, 49.71289062700005 ], [ -124.972157985999957, 49.711000879000089 ], [ -124.971406549999983, 49.711013676000078 ], [ -124.971428389, 49.711553026000146 ], [ -124.969764901999966, 49.711581337000105 ], [ -124.96975399199999, 49.711311662000107 ], [ -124.968922251999956, 49.711325808000019 ], [ -124.968932813, 49.711586963000066 ], [ -124.970582413999978, 49.711602542000037 ], [ -124.970540848999974, 49.713457162000104 ], [ -124.970673051999981, 49.713454912000046 ], [ -124.970694885999947, 49.713994263000139 ], [ -124.97111077799994, 49.713987183000057 ], [ -124.97112169599994, 49.714256859000081 ], [ -124.971537590999944, 49.71424977700012 ], [ -124.971548511999941, 49.714519453000044 ], [ -124.971964408999966, 49.714512370000094 ], [ -124.971953484999958, 49.714242695000053 ], [ -124.97209708099993, 49.714240249000113 ] ], [ [ -124.97880064, 49.708634937000078 ], [ -124.978771568999946, 49.707919567000054 ], [ -124.978355730999937, 49.707926673000088 ], [ -124.978344774999982, 49.707656999000044 ], [ -124.977928936999916, 49.707664103000099 ], [ -124.977917984999948, 49.707394429000061 ], [ -124.977502149000017, 49.707401532000127 ], [ -124.977489695999921, 49.707094848000054 ], [ -124.974115599999962, 49.707063166000069 ], [ -124.974124836, 49.706649581000121 ], [ -124.973311012999943, 49.70666345300004 ], [ -124.973321940999966, 49.706933129000042 ], [ -124.9729061099999, 49.70694021600012 ], [ -124.972917034999938, 49.707209891000041 ], [ -124.97208536699992, 49.707224059000083 ], [ -124.972107208999972, 49.707763409000087 ], [ -124.971691371999952, 49.707770491000133 ], [ -124.971713209999933, 49.708309842000048 ], [ -124.972129054999968, 49.70830276000008 ], [ -124.972150897999981, 49.708842110000063 ], [ -124.972982593999987, 49.708827941000017 ], [ -124.97299352099999, 49.70909761700004 ], [ -124.97382522099997, 49.709083441000061 ], [ -124.973851865999919, 49.709740743000111 ], [ -124.975412545000012, 49.709755413000025 ], [ -124.975413304999947, 49.709721345000027 ], [ -124.976348290999965, 49.709730123000028 ], [ -124.976342206999959, 49.70958022800005 ], [ -124.97675806, 49.709573129000098 ], [ -124.976747111999927, 49.709303455000068 ], [ -124.977162962999941, 49.709296354000053 ], [ -124.977152013999941, 49.709026680000179 ], [ -124.977741763999958, 49.709016608000056 ], [ -124.977750476999944, 49.708625100000091 ], [ -124.97880064, 49.708634937000078 ] ], [ [ -124.974131175999901, 49.706365702000099 ], [ -124.97413689299999, 49.706109652000066 ], [ -124.974120806999963, 49.706109927000064 ], [ -124.974131175999901, 49.706365702000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136688000", "BldgCostT": "87440000", "sL_LossRatio": "0.979720653460106", "sL_AssetLoss": "69754.22", "sL_BldgLoss": "68339.65", "sL_StrLoss": "63141.25", "sL_NStrLoss": "5198.4", "sL_ContLoss": "1414.57", "geom_point": "0101000020E6100000BD685422813E5FC04EB30E8102DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.973979606999976, 49.702632888000089 ], [ -124.974529024999981, 49.702332012000049 ], [ -124.974890205999927, 49.702134191000049 ], [ -124.97620212299995, 49.701413403000068 ], [ -124.97655700899999, 49.701218832000066 ], [ -124.977436825999931, 49.700729637000158 ], [ -124.977907276999957, 49.700450697000107 ], [ -124.978079097999938, 49.700266116000044 ], [ -124.98095572699999, 49.70034250700008 ], [ -124.981240273999987, 49.700448613000056 ], [ -124.982227898999923, 49.701060921000057 ], [ -124.982645596999973, 49.701319850000118 ], [ -124.98277893699999, 49.701368772000059 ], [ -124.98328352099999, 49.701488618000084 ], [ -124.983209361999968, 49.701630955000013 ], [ -124.982439704999976, 49.703108904000104 ], [ -124.98221218899999, 49.703054593000047 ], [ -124.981120512999951, 49.702788909000077 ], [ -124.98037184499999, 49.702611901000083 ], [ -124.975997467999903, 49.704907862 ], [ -124.974249516999976, 49.705825187000123 ], [ -124.970253579999948, 49.707921974000072 ], [ -124.969663705999935, 49.707464009000049 ], [ -124.969674201999979, 49.707458120000126 ], [ -124.970535415000015, 49.706975704000058 ], [ -124.971411190999916, 49.706484713000059 ], [ -124.971689102999946, 49.706329006000018 ], [ -124.97197610299996, 49.706015094000044 ], [ -124.972213993999986, 49.705482107000051 ], [ -124.972263698999967, 49.705118292000044 ], [ -124.971827805999951, 49.70477690500006 ], [ -124.97110181799998, 49.704212306000073 ], [ -124.971866507999962, 49.703792306000075 ], [ -124.97291888899997, 49.703214811000109 ], [ -124.973979606999976, 49.702632888000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110823166", "BldgCostT": "75166666", "sL_LossRatio": "0.988301507543332", "sL_AssetLoss": "71233.11", "sL_BldgLoss": "70399.79", "sL_StrLoss": "66693.99", "sL_NStrLoss": "3705.8", "sL_ContLoss": "833.32", "geom_point": "0101000020E61000004E6958E7333E5FC009AA0493B4D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.96987321, 49.70219929500005 ], [ -124.96756989499994, 49.700355867000084 ], [ -124.967516582999906, 49.700313194000046 ], [ -124.967926985999952, 49.700118306000071 ], [ -124.968379786999932, 49.700012894000075 ], [ -124.968615512999918, 49.699993845000115 ], [ -124.968778292999971, 49.699980714000084 ], [ -124.96863328799999, 49.699830905000084 ], [ -124.966858795999897, 49.698442306000054 ], [ -124.966611805999904, 49.698336494000046 ], [ -124.96587381199997, 49.698185595000112 ], [ -124.965693474999966, 49.698067001000041 ], [ -124.966570785999934, 49.697445602000123 ], [ -124.967588875, 49.697774600000088 ], [ -124.967767660999982, 49.697871800000016 ], [ -124.967881884999926, 49.697933894000094 ], [ -124.968091761, 49.698093160000077 ], [ -124.969221289999965, 49.698950390000071 ], [ -124.969724882999984, 49.699233095000089 ], [ -124.969920103, 49.699305988000106 ], [ -124.971016697999929, 49.699717598000099 ], [ -124.97167399099996, 49.700007108000143 ], [ -124.971718837999944, 49.700033720000079 ], [ -124.97197898899999, 49.70018810200002 ], [ -124.972629484999956, 49.700657079000059 ], [ -124.97272232200001, 49.70072400800008 ], [ -124.9734461299999, 49.700341376000026 ], [ -124.974114440999955, 49.699988096 ], [ -124.974419201999979, 49.69982698500003 ], [ -124.975726496999968, 49.699124203000096 ], [ -124.976845266999959, 49.69997481900004 ], [ -124.976884253999941, 49.699990544000087 ], [ -124.977390480999958, 49.700194915000104 ], [ -124.977627712999919, 49.700247517000015 ], [ -124.978079097999938, 49.700266116000044 ], [ -124.977907276999957, 49.700450697000107 ], [ -124.977436825999931, 49.700729637000158 ], [ -124.97655700899999, 49.701218832000066 ], [ -124.97620212299995, 49.701413403000068 ], [ -124.974890205999927, 49.702134191000049 ], [ -124.974529024999981, 49.702332012000049 ], [ -124.973979606999976, 49.702632888000089 ], [ -124.97291888899997, 49.703214811000109 ], [ -124.971866507999962, 49.703792306000075 ], [ -124.970961605999904, 49.70306916100008 ], [ -124.96987321, 49.70219929500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106311001", "BldgCostT": "71580001", "sL_LossRatio": "0.990713228459445", "sL_AssetLoss": "60838.15", "sL_BldgLoss": "60273.16", "sL_StrLoss": "57258.84", "sL_NStrLoss": "3014.32", "sL_ContLoss": "564.99", "geom_point": "0101000020E6100000824C3272163E5FC0E61260BB28D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.966570785999934, 49.697445602000123 ], [ -124.966039351999896, 49.697029478000118 ], [ -124.964803289999978, 49.696061595000039 ], [ -124.964153389, 49.695569701000124 ], [ -124.963433790999929, 49.695345206000106 ], [ -124.963556906999955, 49.694988285000079 ], [ -124.963559608999901, 49.694865095000125 ], [ -124.96382634299999, 49.694850730000098 ], [ -124.964104228999972, 49.694864011000071 ], [ -124.964686982999936, 49.694872110000034 ], [ -124.964894149999978, 49.694850612000089 ], [ -124.965154513, 49.694774223000096 ], [ -124.965386126999974, 49.694671353000118 ], [ -124.965644701999906, 49.69455 ], [ -124.965847511999939, 49.694420638000118 ], [ -124.966092557999957, 49.694308528000114 ], [ -124.966527296999985, 49.694085258000023 ], [ -124.966744276999918, 49.693964638000061 ], [ -124.966785144999932, 49.693945942000035 ], [ -124.966959126999981, 49.693790068000048 ], [ -124.966998537999928, 49.693735430000054 ], [ -124.967046341999918, 49.693545718000109 ], [ -124.96702519199999, 49.693366174000069 ], [ -124.966935183999979, 49.693196792000045 ], [ -124.966817436000028, 49.693027868000065 ], [ -124.96667231299989, 49.692868409000056 ], [ -124.966540354999893, 49.692690756000047 ], [ -124.966408724999923, 49.692522066000073 ], [ -124.966290602999962, 49.69234416800002 ], [ -124.966172880999949, 49.692175267000025 ], [ -124.96600041899994, 49.692025259000033 ], [ -124.96584183, 49.691875055000018 ], [ -124.965696747999971, 49.691715581000096 ], [ -124.965510798999915, 49.691574804000055 ], [ -124.965010578999909, 49.691167505000102 ], [ -124.965608719999977, 49.690879004000124 ], [ -124.965876712999972, 49.690851894000033 ], [ -124.966104688, 49.690879201000016 ], [ -124.9662940899999, 49.69096110300007 ], [ -124.96723108799992, 49.69174709400005 ], [ -124.968098025999936, 49.692938201000139 ], [ -124.968848692, 49.693562498000098 ], [ -124.969104606999963, 49.693775289000037 ], [ -124.969739699999963, 49.694060105000069 ], [ -124.970022406999931, 49.694121302000092 ], [ -124.970554021999988, 49.694018407000037 ], [ -124.971068205000023, 49.694445994000056 ], [ -124.971462020999951, 49.694722016000135 ], [ -124.971487075999974, 49.69473959700008 ], [ -124.972281085999953, 49.695162980000084 ], [ -124.972930811999959, 49.695509448000045 ], [ -124.972953630999896, 49.695521596000056 ], [ -124.973195081999947, 49.695691200000034 ], [ -124.973973574999931, 49.696695204000079 ], [ -124.974943016999973, 49.698398988000086 ], [ -124.975726496999968, 49.699124203000096 ], [ -124.974419201999979, 49.69982698500003 ], [ -124.974114440999955, 49.699988096 ], [ -124.9734461299999, 49.700341376000026 ], [ -124.97272232200001, 49.70072400800008 ], [ -124.972629484999956, 49.700657079000059 ], [ -124.97197898899999, 49.70018810200002 ], [ -124.971718837999944, 49.700033720000079 ], [ -124.97167399099996, 49.700007108000143 ], [ -124.971016697999929, 49.699717598000099 ], [ -124.969920103, 49.699305988000106 ], [ -124.969724882999984, 49.699233095000089 ], [ -124.969221289999965, 49.698950390000071 ], [ -124.968091761, 49.698093160000077 ], [ -124.967881884999926, 49.697933894000094 ], [ -124.967767660999982, 49.697871800000016 ], [ -124.967588875, 49.697774600000088 ], [ -124.966570785999934, 49.697445602000123 ] ], [ [ -124.97041317499999, 49.696748977 ], [ -124.970396474999987, 49.69633613500006 ], [ -124.970179903999906, 49.696334090000022 ], [ -124.970197387999946, 49.695553935000085 ], [ -124.968368282999933, 49.695536646000079 ], [ -124.96838472099995, 49.694804473000055 ], [ -124.966589706999969, 49.694787477000105 ], [ -124.96659440399999, 49.69490382900009 ], [ -124.966178671999927, 49.694910889000013 ], [ -124.966189555999975, 49.69518056600004 ], [ -124.965773823999911, 49.695187626000106 ], [ -124.965817352999935, 49.696266332000057 ], [ -124.966648837, 49.696252212000026 ], [ -124.966659724999914, 49.696521888000085 ], [ -124.967075467999976, 49.69651482600004 ], [ -124.967086356999928, 49.696784502000078 ], [ -124.967502103999948, 49.696777439000051 ], [ -124.967512996000011, 49.697047114000071 ], [ -124.969789439999914, 49.697008407000077 ], [ -124.969946174999947, 49.697005740000115 ], [ -124.970183940999931, 49.696885464000054 ], [ -124.97041716199999, 49.696847575000078 ], [ -124.97041317499999, 49.696748977 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12445833", "BldgCostT": "8583333", "sL_LossRatio": "0.984056137167995", "sL_AssetLoss": "9965.59", "sL_BldgLoss": "9806.7", "sL_StrLoss": "9259", "sL_NStrLoss": "547.7", "sL_ContLoss": "158.89", "geom_point": "0101000020E61000005D8B504B373D5FC02F3EDC4047D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.954286578999941, 49.689816593000046 ], [ -124.953645969, 49.689322992000029 ], [ -124.95576132, 49.688734312000093 ], [ -124.956124421999974, 49.689364133000034 ], [ -124.959268230999939, 49.688590086000048 ], [ -124.959299206999958, 49.689360424000029 ], [ -124.958883522999926, 49.689367457000117 ], [ -124.958894363999917, 49.689637136 ], [ -124.958465975999943, 49.689644383000044 ], [ -124.958453725999973, 49.690184933000083 ], [ -124.956329134999947, 49.690164616000082 ], [ -124.956301550999953, 49.69137923400006 ], [ -124.955666517999973, 49.690907806000062 ], [ -124.955528146999953, 49.690806185000042 ], [ -124.954627156999948, 49.69006986800008 ], [ -124.954484961, 49.689985253000025 ], [ -124.954286578999941, 49.689816593000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90332750", "BldgCostT": "59825000", "sL_LossRatio": "0.989336456337479", "sL_AssetLoss": "49268.8", "sL_BldgLoss": "48743.42", "sL_StrLoss": "47011.95", "sL_NStrLoss": "1731.47", "sL_ContLoss": "525.38", "geom_point": "0101000020E6100000CB09E255B93D5FC0FD67D50088D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.96247370299993, 49.694908794000085 ], [ -124.961876504999978, 49.694354392 ], [ -124.961746508999909, 49.694233331000056 ], [ -124.961601413999986, 49.694098229000097 ], [ -124.961553528999957, 49.694053601000086 ], [ -124.961448433999976, 49.694009013000063 ], [ -124.961351796999949, 49.69396799 ], [ -124.961105302999954, 49.693957492000095 ], [ -124.960735588999938, 49.69407 ], [ -124.960347225999925, 49.694205378000078 ], [ -124.960059653999949, 49.693920458000051 ], [ -124.959464374999953, 49.693525046000104 ], [ -124.959432045999961, 49.693503582000069 ], [ -124.95946583599995, 49.693503904000075 ], [ -124.959451035999962, 49.693135916000053 ], [ -124.960698185999931, 49.693114802000089 ], [ -124.960709038999951, 49.693384480000077 ], [ -124.961956194999942, 49.693363352000084 ], [ -124.961925280999964, 49.692595653000112 ], [ -124.961423394999926, 49.692590874000054 ], [ -124.961493828999934, 49.68947413800003 ], [ -124.960210126000021, 49.689461904000041 ], [ -124.960326535999982, 49.689439455000127 ], [ -124.960423352999925, 49.689393761000055 ], [ -124.96043411299999, 49.689388692000158 ], [ -124.960451904999928, 49.689374332000064 ], [ -124.961034709999979, 49.688904259000047 ], [ -124.961095737999941, 49.68885503500011 ], [ -124.96114706899999, 49.688813633000109 ], [ -124.961208879999973, 49.688763792000053 ], [ -124.961317159999922, 49.688685073000052 ], [ -124.961438509999965, 49.688596804000049 ], [ -124.961991395999974, 49.688224308000095 ], [ -124.962325809999953, 49.688080905000064 ], [ -124.963048795999967, 49.687966290000141 ], [ -124.963711885999899, 49.687928492 ], [ -124.964149784999961, 49.687986699000071 ], [ -124.964915306999941, 49.688324082000044 ], [ -124.965835187999943, 49.688877893000047 ], [ -124.967056491999955, 49.689835777000013 ], [ -124.968710019999918, 49.691289775000079 ], [ -124.969012339999978, 49.691710860000065 ], [ -124.969233333999981, 49.692238271000072 ], [ -124.969411844999968, 49.692493671000108 ], [ -124.969583857999908, 49.692740473000121 ], [ -124.970101821999961, 49.69348340500003 ], [ -124.970554021999988, 49.694018407000037 ], [ -124.970022406999931, 49.694121302000092 ], [ -124.969739699999963, 49.694060105000069 ], [ -124.969104606999963, 49.693775289000037 ], [ -124.968848692, 49.693562498000098 ], [ -124.968098025999936, 49.692938201000139 ], [ -124.96723108799992, 49.69174709400005 ], [ -124.9662940899999, 49.69096110300007 ], [ -124.966104688, 49.690879201000016 ], [ -124.965876712999972, 49.690851894000033 ], [ -124.965608719999977, 49.690879004000124 ], [ -124.965010578999909, 49.691167505000102 ], [ -124.965510798999915, 49.691574804000055 ], [ -124.965696747999971, 49.691715581000096 ], [ -124.96584183, 49.691875055000018 ], [ -124.96600041899994, 49.692025259000033 ], [ -124.966172880999949, 49.692175267000025 ], [ -124.966290602999962, 49.69234416800002 ], [ -124.966408724999923, 49.692522066000073 ], [ -124.966540354999893, 49.692690756000047 ], [ -124.96667231299989, 49.692868409000056 ], [ -124.966817436000028, 49.693027868000065 ], [ -124.966935183999979, 49.693196792000045 ], [ -124.96702519199999, 49.693366174000069 ], [ -124.967046341999918, 49.693545718000109 ], [ -124.966998537999928, 49.693735430000054 ], [ -124.966959126999981, 49.693790068000048 ], [ -124.966785144999932, 49.693945942000035 ], [ -124.966744276999918, 49.693964638000061 ], [ -124.966527296999985, 49.694085258000023 ], [ -124.966092557999957, 49.694308528000114 ], [ -124.965847511999939, 49.694420638000118 ], [ -124.965644701999906, 49.69455 ], [ -124.965386126999974, 49.694671353000118 ], [ -124.965154513, 49.694774223000096 ], [ -124.964894149999978, 49.694850612000089 ], [ -124.964686982999936, 49.694872110000034 ], [ -124.964104228999972, 49.694864011000071 ], [ -124.96382634299999, 49.694850730000098 ], [ -124.963559608999901, 49.694865095000125 ], [ -124.963556906999955, 49.694988285000079 ], [ -124.963433790999929, 49.695345206000106 ], [ -124.962760101999947, 49.695110293000091 ], [ -124.96247370299993, 49.694908794000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114148833", "BldgCostT": "78723333", "sL_LossRatio": "0.983423564755928", "sL_AssetLoss": "82203.44", "sL_BldgLoss": "80840.8", "sL_StrLoss": "72012.8", "sL_NStrLoss": "8828", "sL_ContLoss": "1362.64", "geom_point": "0101000020E6100000D1BAF4CC5E3A5FC0511BE61519DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.924825485999989, 49.740752507000195 ], [ -124.924799040999986, 49.740725926 ], [ -124.924667482999922, 49.74072603000009 ], [ -124.924676515999948, 49.740719006000077 ], [ -124.924823907999937, 49.740266111000025 ], [ -124.924642693999985, 49.739864494000081 ], [ -124.924169006999961, 49.739504084000039 ], [ -124.923689505999931, 49.739277695000041 ], [ -124.923114309999974, 49.739125285000085 ], [ -124.921999595999949, 49.739026999000068 ], [ -124.920376814999941, 49.739062597000085 ], [ -124.918079, 49.739226405000139 ], [ -124.917657062999979, 49.739285334000051 ], [ -124.91413179199999, 49.739777615000072 ], [ -124.913549204999953, 49.73979610400005 ], [ -124.913174942999959, 49.739718051000118 ], [ -124.913030309999925, 49.739687886000041 ], [ -124.912754224999958, 49.739350305000052 ], [ -124.912613101999952, 49.738571299000085 ], [ -124.91243251899995, 49.738240904000122 ], [ -124.91171699399996, 49.737308002000148 ], [ -124.911158393999983, 49.736894990000081 ], [ -124.910251381999927, 49.7364150000001 ], [ -124.909492303999954, 49.736175799000115 ], [ -124.908700096999965, 49.735792609000036 ], [ -124.90781820499997, 49.735581890000077 ], [ -124.906528092999949, 49.73563029900005 ], [ -124.906037495999968, 49.73547650800004 ], [ -124.9049852099999, 49.734809902000059 ], [ -124.904248431000013, 49.734137687000093 ], [ -124.903213591999972, 49.733193488000062 ], [ -124.902850111999967, 49.732749093000074 ], [ -124.902489315999958, 49.73205410200007 ], [ -124.901599207999965, 49.731322105000054 ], [ -124.900967308999938, 49.731079890000096 ], [ -124.899667698999963, 49.730876302000105 ], [ -124.898328620999962, 49.730350705000113 ], [ -124.897409214999982, 49.729770713000065 ], [ -124.897035085999931, 49.729534691000126 ], [ -124.896112212999952, 49.729352393000134 ], [ -124.895177009999927, 49.72885528500008 ], [ -124.892889804999939, 49.728208700000032 ], [ -124.892324604999914, 49.727623402000056 ], [ -124.891330597999911, 49.726904251000079 ], [ -124.891572476999968, 49.726737593000095 ], [ -124.892375994999938, 49.726765488000062 ], [ -124.892876394999945, 49.726775109000073 ], [ -124.893636192999963, 49.726835006000087 ], [ -124.894348458999957, 49.726839847000058 ], [ -124.894735672999957, 49.72684250000006 ], [ -124.895466327999941, 49.726692999000136 ], [ -124.896264285999962, 49.726529711000154 ], [ -124.896654109999957, 49.726525511000034 ], [ -124.89733063099996, 49.726589923000049 ], [ -124.897639710999968, 49.726593033000086 ], [ -124.898004422999946, 49.726536419000034 ], [ -124.898368517000037, 49.726445734000031 ], [ -124.898651217999983, 49.72642998300006 ], [ -124.898957212999903, 49.726412928000038 ], [ -124.898424838999958, 49.726642321000078 ], [ -124.898282449999925, 49.726796533 ], [ -124.898258724999963, 49.726919527000071 ], [ -124.898315401999966, 49.727906806000121 ], [ -124.898324483999971, 49.728443307000049 ], [ -124.898337170999952, 49.729194213 ], [ -124.898368168, 49.729290818000088 ], [ -124.898450770999887, 49.729371715000099 ], [ -124.898470455000023, 49.729379553000044 ], [ -124.900324456999954, 49.730118239000078 ], [ -124.901987005999956, 49.730820365000106 ], [ -124.902588139999978, 49.731141246000085 ], [ -124.902941818999977, 49.73143167100001 ], [ -124.90359734499999, 49.732145293000045 ], [ -124.903801210999916, 49.732669105000056 ], [ -124.904045571999973, 49.732305403000112 ], [ -124.90445771399996, 49.732004706000033 ], [ -124.906910939999975, 49.733928054000046 ], [ -124.90762643699999, 49.733933101000069 ], [ -124.907914959999957, 49.733935126000148 ], [ -124.909926878999926, 49.733949225000082 ], [ -124.909917106999927, 49.734246004000035 ], [ -124.911406462999963, 49.734283417000029 ], [ -124.913482015999961, 49.734335499000075 ], [ -124.914433128999946, 49.734359896000043 ], [ -124.914854090999967, 49.734370697000088 ], [ -124.915689897999968, 49.734392516000135 ], [ -124.916535403999944, 49.734413493000034 ], [ -124.916961796999914, 49.734431680000085 ], [ -124.916975982999958, 49.734432296000065 ], [ -124.917195903000021, 49.73451629400008 ], [ -124.918048002999939, 49.735081495000067 ], [ -124.918395324999921, 49.735234292000044 ], [ -124.921334077999944, 49.736297812000039 ], [ -124.921423369999957, 49.736343613000045 ], [ -124.921598599999982, 49.736433496000089 ], [ -124.92179900499994, 49.736581206000025 ], [ -124.921985012999968, 49.736944882000067 ], [ -124.922207395999962, 49.737379536000105 ], [ -124.922385200999912, 49.737486538000041 ], [ -124.922553782999927, 49.737513327000102 ], [ -124.922776182999925, 49.737494843000029 ], [ -124.923116104999934, 49.737371343000092 ], [ -124.923619693999939, 49.737188304000043 ], [ -124.923904683, 49.737159695000052 ], [ -124.924013958999964, 49.737182119000082 ], [ -124.924153125999936, 49.737210703000116 ], [ -124.924853563999989, 49.737526306000127 ], [ -124.926120949, 49.738097348000032 ], [ -124.926328615999964, 49.73819090000012 ], [ -124.927166239999934, 49.738705437000114 ], [ -124.928000160999929, 49.739217669 ], [ -124.928618903999947, 49.739597702000061 ], [ -124.929735029999947, 49.740779461000017 ], [ -124.929105172999954, 49.740789209000127 ], [ -124.928529907999945, 49.74027611000006 ], [ -124.927600706999939, 49.739905790000108 ], [ -124.926805511999973, 49.739820292000054 ], [ -124.926289304999955, 49.740448410000084 ], [ -124.92589346699999, 49.740728237000084 ], [ -124.925557644999927, 49.740728853000057 ], [ -124.925210826999901, 49.740728805000046 ], [ -124.92506222899999, 49.740753250000054 ], [ -124.924825485999989, 49.740752507000195 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.988976301476301", "sL_AssetLoss": "411.84", "sL_BldgLoss": "407.3", "sL_StrLoss": "391", "sL_NStrLoss": "16.3", "sL_ContLoss": "4.54", "geom_point": "0101000020E61000002BAE228A263F5FC0E0513AC39AE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.98718072399997, 49.771192736000053 ], [ -124.987169694, 49.770923066000123 ], [ -124.986753317999941, 49.770930208000095 ], [ -124.98674229099997, 49.770660539000041 ], [ -124.986325918999967, 49.77066767900007 ], [ -124.986265017999983, 49.769178003000064 ], [ -124.987507156, 49.771144249000074 ], [ -124.987533957999915, 49.771186675000124 ], [ -124.98718072399997, 49.771192736000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120608584", "BldgCostT": "83178334", "sL_LossRatio": "0.987472431583135", "sL_AssetLoss": "82535.57", "sL_BldgLoss": "81501.6", "sL_StrLoss": "76789", "sL_NStrLoss": "4712.6", "sL_ContLoss": "1033.97", "geom_point": "0101000020E61000008FFA1495C73F5FC0E962B23C38E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.998040789999962, 49.790806894000113 ], [ -124.998055394999966, 49.790138578000061 ], [ -124.996849447999949, 49.790127514000048 ], [ -124.996572494999953, 49.790000915000093 ], [ -124.99613435199997, 49.78970407700006 ], [ -124.995744287999941, 49.78943980800004 ], [ -124.995206590999942, 49.788909995000026 ], [ -124.995036800999969, 49.788129513000108 ], [ -124.994349815999968, 49.787619602000071 ], [ -124.994281394000012, 49.787675191000041 ], [ -124.994447180999941, 49.787968600000099 ], [ -124.994190394999976, 49.788153703000049 ], [ -124.99324439599999, 49.787781985000088 ], [ -124.992179601999979, 49.786587104000091 ], [ -124.990696202, 49.785604400000054 ], [ -124.989724012999915, 49.784623106 ], [ -124.988597705999979, 49.78391379300011 ], [ -124.987568407999944, 49.782834298000083 ], [ -124.987026285999931, 49.782501004000103 ], [ -124.986676909999943, 49.782102194000068 ], [ -124.985899903999979, 49.781485495000013 ], [ -124.984845912999958, 49.780811899000071 ], [ -124.984345434999952, 49.779999847000042 ], [ -124.984529912999932, 49.779841310000045 ], [ -124.984792109999916, 49.779472285000047 ], [ -124.984874498999943, 49.7787625200001 ], [ -124.98551139199995, 49.778772902000064 ], [ -124.987189915999963, 49.778827187000111 ], [ -124.990051809999954, 49.778917503000045 ], [ -124.98680840199998, 49.776805406000072 ], [ -124.98493759099992, 49.775533306000057 ], [ -124.984326914999954, 49.774966413000108 ], [ -124.984168763999946, 49.774773565000046 ], [ -124.984066001999935, 49.774648295000077 ], [ -124.982816425999928, 49.774634038000073 ], [ -124.979600717999929, 49.77459725600005 ], [ -124.979488981999964, 49.774595981000083 ], [ -124.979350610999987, 49.774594407000052 ], [ -124.97933482399999, 49.77393320100002 ], [ -124.979317704999957, 49.773325916000069 ], [ -124.982318417999963, 49.773336903000036 ], [ -124.982555093999977, 49.773303093000095 ], [ -124.982874201999934, 49.77318551000009 ], [ -124.981948718999917, 49.772048085000073 ], [ -124.981086997, 49.771099308000032 ], [ -124.980698987999943, 49.770758404000055 ], [ -124.980082087999946, 49.770285886000103 ], [ -124.979566307999931, 49.76995088500005 ], [ -124.981470895999934, 49.768683414000122 ], [ -124.984553689999984, 49.768614244000076 ], [ -124.98465789, 49.768611906000054 ], [ -124.984590013999949, 49.771678369000028 ], [ -124.982616426999954, 49.771660006000111 ], [ -124.982617400999956, 49.771683884000041 ], [ -124.984943442999935, 49.771705522000076 ], [ -124.984933578, 49.772151338000079 ], [ -124.985060864999951, 49.772152521000095 ], [ -124.98505170699994, 49.772566430000012 ], [ -124.988254369999979, 49.772596139000036 ], [ -124.988242937999956, 49.773114418000013 ], [ -124.98866538599998, 49.773118330000095 ], [ -124.988653519999929, 49.773656531000029 ], [ -124.988948378999979, 49.773659260000095 ], [ -124.98893814199999, 49.77340923600007 ], [ -124.989299904999953, 49.773981800000072 ], [ -124.990530398999965, 49.773445398000021 ], [ -124.992498081999912, 49.772908686000044 ], [ -124.992721292999988, 49.772847803000062 ], [ -124.992901742999948, 49.773120189000053 ], [ -124.994861910999958, 49.776078779000073 ], [ -124.99604408499998, 49.77786289600003 ], [ -124.99638428599999, 49.778302194000069 ], [ -124.996890900999972, 49.779133410000036 ], [ -125.000005512999962, 49.779225951000072 ], [ -125.00034053, 49.77923591400009 ], [ -125.00104402099997, 49.779256805000045 ], [ -125.001026368999987, 49.780067235000082 ], [ -124.997961288999946, 49.780039168000016 ], [ -124.997967180999979, 49.780182388000071 ], [ -124.997550727999979, 49.780189570000076 ], [ -124.99757291, 49.780728905000025 ], [ -124.996323540999967, 49.780750444000049 ], [ -124.99629367599999, 49.780023862000071 ], [ -124.995474553999955, 49.780016333000084 ], [ -124.99548771299996, 49.77941555200001 ], [ -124.995113566999976, 49.77942199700005 ], [ -124.995074100999943, 49.781223082000075 ], [ -124.991421184999979, 49.781189424000054 ], [ -124.991419057999963, 49.781286073000054 ], [ -124.991230191999975, 49.78128432900008 ], [ -124.991221863999954, 49.781662939000086 ], [ -124.99206968099999, 49.781670764000097 ], [ -124.992058973999946, 49.782157851000122 ], [ -124.99212540799999, 49.782158464000091 ], [ -124.992124751999981, 49.782188326000075 ], [ -124.994542617, 49.78221060200012 ], [ -124.994536592999921, 49.782485314000041 ], [ -124.996476960000024, 49.782503153000121 ], [ -124.996440023999938, 49.784190974000069 ], [ -124.99940675199997, 49.784218181000035 ], [ -124.9993945799999, 49.784776060000048 ], [ -125.000148758, 49.784782964000073 ], [ -125.000143854999976, 49.785007831000023 ], [ -125.003870530999961, 49.785041867000068 ], [ -125.003861349999951, 49.785464511000072 ], [ -125.00814299299995, 49.785503459000111 ], [ -125.008133474999951, 49.785943487000019 ], [ -125.008525927999941, 49.785936682000035 ], [ -125.008526248999914, 49.785921869000077 ], [ -125.014078792, 49.78597210700007 ], [ -125.014075474999956, 49.786126430000074 ], [ -125.014846972999962, 49.786133388000032 ], [ -125.014840948999947, 49.786413813000081 ], [ -125.016376832, 49.786427650000064 ], [ -125.016361992999933, 49.787119342000061 ], [ -125.013785385999938, 49.78881279600008 ], [ -125.012799045999941, 49.789482009000096 ], [ -125.011890797999982, 49.790067400000098 ], [ -125.01092608699993, 49.790705631000058 ], [ -125.009105195999936, 49.791910281000078 ], [ -125.00859031899995, 49.792250902000013 ], [ -125.007833190999989, 49.792779205000045 ], [ -125.007788610999938, 49.792913706000029 ], [ -125.006930376999932, 49.793954872000072 ], [ -125.006821504999962, 49.794040232000064 ], [ -125.006701497, 49.794027104000065 ], [ -125.00626620099996, 49.793908897000051 ], [ -125.005017102999972, 49.793290799000033 ], [ -125.003498790999956, 49.792886397000075 ], [ -125.000335396999958, 49.791618797000076 ], [ -124.999387579999976, 49.791536193000091 ], [ -124.998808299999951, 49.791321090000061 ], [ -124.998040789999962, 49.790806894000113 ] ], [ [ -125.010847836999986, 49.790214142000053 ], [ -125.010851825999907, 49.79002921200005 ], [ -125.009604860999971, 49.790017919000043 ], [ -125.009596855999973, 49.790388556000089 ], [ -125.010058706999985, 49.790392741000097 ], [ -125.010051883999921, 49.790227957000099 ], [ -125.010847836999986, 49.790214142000053 ] ], [ [ -124.995505450999957, 49.778605669000051 ], [ -124.995520242999959, 49.777930251000143 ], [ -124.995146325999912, 49.777926813000093 ], [ -124.995131310999952, 49.778612114000062 ], [ -124.995505450999957, 49.778605669000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24398667", "BldgCostT": "16826667", "sL_LossRatio": "0.990160874679145", "sL_AssetLoss": "15762.58", "sL_BldgLoss": "15607.49", "sL_StrLoss": "14766.59", "sL_NStrLoss": "840.9", "sL_ContLoss": "155.09", "geom_point": "0101000020E6100000E3F92DB620415FC08B890FE407E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.016804082999954, 49.786828763000074 ], [ -125.016822225999945, 49.785982600000111 ], [ -125.016763009999949, 49.785982067000106 ], [ -125.016840128999903, 49.782385168000062 ], [ -125.020373687, 49.782416906000023 ], [ -125.020399625000024, 49.781202636000074 ], [ -125.01948813199999, 49.781194460000087 ], [ -125.019472412999974, 49.781929669000085 ], [ -125.013920351999943, 49.781879705000087 ], [ -125.013932535999942, 49.781313071000113 ], [ -125.010132241999926, 49.781278709000055 ], [ -125.01013276399999, 49.781254550000085 ], [ -125.00901080099996, 49.781244379000078 ], [ -125.009057437999928, 49.779086044000067 ], [ -125.009424990999946, 49.779068812000133 ], [ -125.009944102999938, 49.779042669000027 ], [ -125.010927906999939, 49.77899310300009 ], [ -125.012421554999932, 49.778917845000073 ], [ -125.012855425999959, 49.77889598000008 ], [ -125.013757942999987, 49.77885048800006 ], [ -125.013992007999931, 49.778838696000044 ], [ -125.014343107999963, 49.778821007000047 ], [ -125.014814421999958, 49.778856690000062 ], [ -125.015676680999945, 49.779017316000079 ], [ -125.015904445, 49.779059731000075 ], [ -125.016060499999966, 49.77908878900007 ], [ -125.019348472999951, 49.779701128000063 ], [ -125.019462341999954, 49.779722338000049 ], [ -125.020193004999911, 49.779858395000076 ], [ -125.02093139699997, 49.779932483000024 ], [ -125.023716593999936, 49.779978108000087 ], [ -125.025032948999964, 49.780115360000117 ], [ -125.025116317, 49.780124052000076 ], [ -125.02675422399993, 49.780294803000046 ], [ -125.025669905999962, 49.781006214000087 ], [ -125.025449233999922, 49.78115099700004 ], [ -125.023765940999937, 49.782255320000068 ], [ -125.021563129, 49.783700405000033 ], [ -125.020855118999975, 49.784165847000033 ], [ -125.019421521999917, 49.78510825700009 ], [ -125.019125120999945, 49.785303091000067 ], [ -125.016804082999954, 49.786828763000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99088817799504", "sL_AssetLoss": "1112.84", "sL_BldgLoss": "1102.7", "sL_StrLoss": "1042", "sL_NStrLoss": "60.7", "sL_ContLoss": "10.14", "geom_point": "0101000020E610000084A93D57A13D5FC08A117816F3DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.962708781999936, 49.743004947000131 ], [ -124.962697897999959, 49.742735271000079 ], [ -124.962281758999936, 49.742742324000105 ], [ -124.962216477, 49.741124272000036 ], [ -124.961384224999932, 49.741138371000062 ], [ -124.961368130999972, 49.740739284000085 ], [ -124.962121604999979, 49.740756343000037 ], [ -124.96299463099993, 49.740776110000084 ], [ -124.964039526999898, 49.740795995000084 ], [ -124.964407427999944, 49.740803013000054 ], [ -124.964866871999973, 49.740809475000034 ], [ -124.963870092999983, 49.740826382000073 ], [ -124.963880980999974, 49.741096057000085 ], [ -124.963464854999955, 49.741103114000055 ], [ -124.963475741999957, 49.741372788000049 ], [ -124.963891869999898, 49.741365733000066 ], [ -124.963957207, 49.742983783000092 ], [ -124.962708781999936, 49.743004947000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7494083", "BldgCostT": "5168333", "sL_LossRatio": "0.984212016368911", "sL_AssetLoss": "5439.58", "sL_BldgLoss": "5353.7", "sL_StrLoss": "4949.9", "sL_NStrLoss": "403.8", "sL_ContLoss": "85.88", "geom_point": "0101000020E610000065E10C7A463C5FC05C53C5F940DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.941635169999955, 49.747080764000046 ], [ -124.941626512, 49.745652403000115 ], [ -124.941619120999931, 49.744427900000069 ], [ -124.941489979, 49.744351883 ], [ -124.941352199999969, 49.744270759000116 ], [ -124.939168006999978, 49.742984696000121 ], [ -124.939157724999973, 49.742978655000066 ], [ -124.935684902, 49.740933510000069 ], [ -124.936468631000011, 49.740932247000096 ], [ -124.936466888999931, 49.741007430000074 ], [ -124.940175590999957, 49.74104350000011 ], [ -124.94011960499995, 49.743468216000096 ], [ -124.943431816000029, 49.743500323000063 ], [ -124.943398450999922, 49.744949760000111 ], [ -124.943630728999921, 49.744945861000041 ], [ -124.943609172999942, 49.744406505000043 ], [ -124.945689966999964, 49.744371565000101 ], [ -124.945701967999952, 49.744671542000106 ], [ -124.945776287999962, 49.746528986000087 ], [ -124.945209104999904, 49.746538515000111 ], [ -124.943695401999946, 49.746563929000068 ], [ -124.943663064999924, 49.74575489500009 ], [ -124.943379805999925, 49.745759649000057 ], [ -124.943349008999931, 49.747097365000066 ], [ -124.941635169999955, 49.747080764000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112000416", "BldgCostT": "77241666", "sL_LossRatio": "0.990691286038931", "sL_AssetLoss": "73447.31", "sL_BldgLoss": "72763.61", "sL_StrLoss": "69236.11", "sL_NStrLoss": "3527.5", "sL_ContLoss": "683.7", "geom_point": "0101000020E6100000DF20A4B8F43C5FC0F9F9E750A3DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.9513422899999, 49.757860328000099 ], [ -124.95068313099992, 49.757255171000047 ], [ -124.950617985999926, 49.757195326000037 ], [ -124.949458561000014, 49.756130828000053 ], [ -124.948778406999978, 49.755506310000094 ], [ -124.948374196999936, 49.755282106000031 ], [ -124.946908493, 49.754640100000088 ], [ -124.946833104999939, 49.754594001000093 ], [ -124.946340687999978, 49.754292891000048 ], [ -124.94574149099995, 49.753801385000095 ], [ -124.944871426999967, 49.752902504000126 ], [ -124.944099101999967, 49.752036094000069 ], [ -124.943928413999956, 49.75191750600009 ], [ -124.943767199999968, 49.75187009000004 ], [ -124.943353901999899, 49.75186611900007 ], [ -124.9432273, 49.751818982000088 ], [ -124.943139499999944, 49.751714705000026 ], [ -124.942686193999918, 49.750613884000067 ], [ -124.941884575999964, 49.750061892000062 ], [ -124.940979694999967, 49.748631995000075 ], [ -124.940959116999949, 49.748577855000057 ], [ -124.943709306999963, 49.748604498000141 ], [ -124.943747247999951, 49.746955947000046 ], [ -124.945954424999911, 49.74697727900012 ], [ -124.947647323999945, 49.746993610000033 ], [ -124.947648693999938, 49.7469338450001 ], [ -124.949957977999929, 49.746956079000029 ], [ -124.949927231999965, 49.746189312000084 ], [ -124.950343403999952, 49.746182304000065 ], [ -124.95031095799996, 49.74537327300002 ], [ -124.950727122999979, 49.745366264000104 ], [ -124.950705487999983, 49.744826911000054 ], [ -124.951953969, 49.744805874000107 ], [ -124.951954246999918, 49.744812782000047 ], [ -124.951956449999926, 49.744716299000046 ], [ -124.948546807999961, 49.744683512000073 ], [ -124.948570364999981, 49.743655160000074 ], [ -124.94659999799994, 49.74363616500009 ], [ -124.94662370199994, 49.742603291000144 ], [ -124.946231705999978, 49.742599508000062 ], [ -124.945530719999951, 49.742592739000017 ], [ -124.945559829999951, 49.741325558000042 ], [ -124.943929936999908, 49.741309801000128 ], [ -124.944001044999951, 49.73821887000004 ], [ -124.944027238999965, 49.737712871000014 ], [ -124.944167957, 49.737714233000069 ], [ -124.944181221999955, 49.737137470000079 ], [ -124.949731443999951, 49.737031456000096 ], [ -124.949685604999914, 49.739034934000102 ], [ -124.951160143999942, 49.739049111000107 ], [ -124.951142784999931, 49.739808903000032 ], [ -124.951606603999934, 49.739813359000095 ], [ -124.951669864999985, 49.737043283000069 ], [ -124.955449002999927, 49.736939888000094 ], [ -124.955446684999956, 49.737009713000063 ], [ -124.955383931999918, 49.738890790000063 ], [ -124.955376431999952, 49.739115726000108 ], [ -124.955326792999941, 49.740602294000077 ], [ -124.957346720999965, 49.740648141000072 ], [ -124.95781815399998, 49.740658813000096 ], [ -124.960534554999981, 49.7407204020001 ], [ -124.960573712999945, 49.741691815000166 ], [ -124.959741448999949, 49.741705901000074 ], [ -124.959763180999985, 49.7422452530001 ], [ -124.959347043999941, 49.742252293000057 ], [ -124.959357907999959, 49.742521970000034 ], [ -124.958525630999972, 49.742536048000048 ], [ -124.958536489999943, 49.7428057240001 ], [ -124.95812034799999, 49.742812761 ], [ -124.958190755999937, 49.744561372000049 ], [ -124.961495486, 49.744592859000143 ], [ -124.961414092999959, 49.748189909000082 ], [ -124.960517873999933, 49.748181380000112 ], [ -124.960517856999914, 49.748182131000114 ], [ -124.959080716999935, 49.748168439000047 ], [ -124.959055651999961, 49.749273568000056 ], [ -124.959213375, 49.749270899000109 ], [ -124.959224240999944, 49.749540575000019 ], [ -124.959640439999959, 49.74953353300004 ], [ -124.959683917999968, 49.750612234000116 ], [ -124.96010012399995, 49.750605191000012 ], [ -124.960121868999963, 49.751144541000059 ], [ -124.96137050499999, 49.75112340200009 ], [ -124.96138138500001, 49.751393077000031 ], [ -124.96179759899999, 49.75138602600002 ], [ -124.961808480999977, 49.7516557020001 ], [ -124.963057128999978, 49.75163454400009 ], [ -124.963078906999939, 49.752173894000038 ], [ -124.963495127999963, 49.752166837000111 ], [ -124.963560475999927, 49.753784885000073 ], [ -124.961895537999936, 49.753813100000087 ], [ -124.961873772999965, 49.753273752000098 ], [ -124.960625081999979, 49.753294897000039 ], [ -124.960603329999927, 49.752755547000092 ], [ -124.960187102999939, 49.75276259300005 ], [ -124.960176230999963, 49.752492917000026 ], [ -124.959773983999966, 49.752499724000081 ], [ -124.959713540999957, 49.755166034000048 ], [ -124.955994548999968, 49.755130540000039 ], [ -124.954164785999964, 49.755113031000135 ], [ -124.95423939199999, 49.751839324000102 ], [ -124.954240659999968, 49.751783648000057 ], [ -124.954146535999939, 49.751785236000089 ], [ -124.952235457999976, 49.751817466000034 ], [ -124.952246284999958, 49.752087143000068 ], [ -124.951830062999989, 49.752094157000087 ], [ -124.951840889999971, 49.75236383400005 ], [ -124.950952929999971, 49.752378796000087 ], [ -124.950942652999984, 49.752828359000077 ], [ -124.950193207999916, 49.752821156000032 ], [ -124.950240894999965, 49.754009941000085 ], [ -124.949824655999919, 49.754016949000139 ], [ -124.949843119999969, 49.754477328000071 ], [ -124.949963036999947, 49.754478482000096 ], [ -124.949961299999956, 49.754554366000022 ], [ -124.95026253199994, 49.754549293000117 ], [ -124.950275808999947, 49.754880246000035 ], [ -124.950278751, 49.754880275000112 ], [ -124.950277682999968, 49.754926943000029 ], [ -124.950286840000018, 49.755155203000072 ], [ -124.95051215699999, 49.755157369000145 ], [ -124.950504325999987, 49.755499779000075 ], [ -124.950814766999954, 49.755502762000077 ], [ -124.950807686999937, 49.75581242300013 ], [ -124.951154373999941, 49.755815754000089 ], [ -124.951146987999934, 49.756138872000065 ], [ -124.95139448499999, 49.756141249000017 ], [ -124.951382766999956, 49.756653968000059 ], [ -124.951910695999956, 49.756659037000112 ], [ -124.95189837, 49.757198672000072 ], [ -124.953360972999988, 49.757212700000068 ], [ -124.953355961999932, 49.757432402000113 ], [ -124.955020550999947, 49.757448344000089 ], [ -124.957453331999986, 49.757471596000045 ], [ -124.957451599, 49.757547896000055 ], [ -124.959166171999939, 49.757564252000101 ], [ -124.959164512999976, 49.757637357000057 ], [ -124.960799111999975, 49.757609695000113 ], [ -124.960842934999903, 49.758696028000053 ], [ -124.954361080999931, 49.758699901000092 ], [ -124.953596619, 49.758698 ], [ -124.952931807999946, 49.758642103000099 ], [ -124.952428789999885, 49.758551909000083 ], [ -124.952060082999978, 49.758413388000037 ], [ -124.95166628099993, 49.758157795000102 ], [ -124.9513422899999, 49.757860328000099 ] ], [ [ -124.955972512999892, 49.751532537000102 ], [ -124.955959733999919, 49.751214909000062 ], [ -124.95679216299996, 49.751200847000071 ], [ -124.956748748999971, 49.750122145000041 ], [ -124.955916339999945, 49.750136205000025 ], [ -124.955905491999985, 49.749866530000126 ], [ -124.955489288999942, 49.749873558000068 ], [ -124.955467596999966, 49.749334206000121 ], [ -124.955051399999931, 49.74934123300006 ], [ -124.955047472999979, 49.749243579000101 ], [ -124.953507420999983, 49.749228829000103 ], [ -124.953510417999922, 49.749097376000044 ], [ -124.953148182999897, 49.749103487000077 ], [ -124.953135865999968, 49.74964341200004 ], [ -124.953813638999947, 49.749631980000117 ], [ -124.953846149999919, 49.75044100800006 ], [ -124.954262356999934, 49.750433986000132 ], [ -124.954305871999949, 49.751516588000136 ], [ -124.955972512999892, 49.751532537000102 ] ], [ [ -124.953584281999952, 49.745857821000058 ], [ -124.953585405999931, 49.745808559000118 ], [ -124.95241021399994, 49.745797288000162 ], [ -124.95241343899994, 49.745877566000033 ], [ -124.953584281999952, 49.745857821000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54206500", "BldgCostT": "34285000", "sL_LossRatio": "0.910047320967375", "sL_AssetLoss": "32678.96", "sL_BldgLoss": "29739.4", "sL_StrLoss": "25738.6", "sL_NStrLoss": "4000.8", "sL_ContLoss": "2939.56", "geom_point": "0101000020E6100000DAAEF986FC3F5FC023417E5700D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.000994604, 49.666315131000076 ], [ -125.001019509999949, 49.665168724000111 ], [ -125.000735060999929, 49.66517364000002 ], [ -125.00073248399994, 49.665110828000074 ], [ -124.996917911999972, 49.665075781000084 ], [ -124.996976815999986, 49.66494068300004 ], [ -124.99704148299999, 49.664724086000057 ], [ -124.997577081999907, 49.662930291000066 ], [ -124.998976083999963, 49.661657699000088 ], [ -124.999998857999941, 49.662594352000049 ], [ -125.000632806999974, 49.663016886000015 ], [ -125.000641733999942, 49.663023982000063 ], [ -125.001150127999921, 49.663427305000049 ], [ -125.001438830999987, 49.663656302000092 ], [ -125.003013702999951, 49.664905201000089 ], [ -125.003283575999944, 49.665104695000103 ], [ -125.002746000999977, 49.665438006000073 ], [ -125.000994604, 49.666315131000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165004000", "BldgCostT": "104065000", "sL_LossRatio": "0.952413718541843", "sL_AssetLoss": "102021.63", "sL_BldgLoss": "97166.8", "sL_StrLoss": "85554", "sL_NStrLoss": "11612.8", "sL_ContLoss": "4854.83", "geom_point": "0101000020E61000009E6162DA943F5FC054E2D79BDAD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.990108708999969, 49.670528266000076 ], [ -124.98992612799999, 49.670375610000029 ], [ -124.98851716199998, 49.670703123000109 ], [ -124.988386288999976, 49.670601047000019 ], [ -124.987427352999987, 49.669852992000074 ], [ -124.987525283999943, 49.669804427000024 ], [ -124.987128588999923, 49.669510493000118 ], [ -124.986666885999981, 49.669165914000061 ], [ -124.986678471999966, 49.669160800000014 ], [ -124.986711938999974, 49.669146027000139 ], [ -124.986887065999937, 49.669068818000042 ], [ -124.987217350999984, 49.668923167000052 ], [ -124.987603891, 49.668752714000043 ], [ -124.988119387999944, 49.668614416000082 ], [ -124.98864064699994, 49.668524827000105 ], [ -124.988925130999988, 49.668506511000025 ], [ -124.988978597999946, 49.66850308600003 ], [ -124.989689667000022, 49.66845731300009 ], [ -124.990120829999967, 49.668429548000084 ], [ -124.99143787099996, 49.668344742000045 ], [ -124.992032595999945, 49.668254887000074 ], [ -124.992053729999924, 49.668249869000078 ], [ -124.992251824999968, 49.668202691000054 ], [ -124.993156023999958, 49.667987337000113 ], [ -124.993220216999958, 49.667964476000066 ], [ -124.993287512999984, 49.667940520000123 ], [ -124.993764536999919, 49.66777075300012 ], [ -124.994504304999964, 49.667440076000112 ], [ -124.995006742999919, 49.667431418000042 ], [ -124.995017777, 49.667701092000115 ], [ -124.995848759999959, 49.66768676700012 ], [ -124.99585979699998, 49.667956440000111 ], [ -124.997106276999972, 49.66793494200008 ], [ -124.997117320999962, 49.668204614000118 ], [ -124.997437991999973, 49.668199082000108 ], [ -124.995706660999957, 49.669139791000099 ], [ -124.995450282999968, 49.669274443000042 ], [ -124.994629320999962, 49.669705581000088 ], [ -124.995357519999928, 49.670287979000094 ], [ -124.998964216999951, 49.673132299000081 ], [ -124.997917118999936, 49.673705498000089 ], [ -124.996840603999914, 49.674293785000046 ], [ -124.9957486099999, 49.674891909000038 ], [ -124.992094867999953, 49.672046167000076 ], [ -124.990423079999943, 49.670791121000093 ], [ -124.990108708999969, 49.670528266000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196169083", "BldgCostT": "122833333", "sL_LossRatio": "0.945845946412136", "sL_AssetLoss": "136703.34", "sL_BldgLoss": "129300.3", "sL_StrLoss": "111242.8", "sL_NStrLoss": "18057.5", "sL_ContLoss": "7403.04", "geom_point": "0101000020E61000003ED7A49936405FC0022C5ED152D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.000570102999973, 49.677178703000045 ], [ -124.999982826999926, 49.676724881000013 ], [ -124.999054007999973, 49.676007090000063 ], [ -124.996840603999914, 49.674293785000046 ], [ -124.997917118999936, 49.673705498000089 ], [ -124.998964216999951, 49.673132299000081 ], [ -124.999991604999977, 49.673929663000109 ], [ -125.000230899999963, 49.674115394000047 ], [ -125.001283324999989, 49.673553807000047 ], [ -125.001657187999967, 49.673363901000094 ], [ -125.002928332999943, 49.672675641000076 ], [ -125.005097375999952, 49.671517058000042 ], [ -125.006267327999922, 49.670891765000057 ], [ -125.006959071999944, 49.67052260600007 ], [ -125.007222608999911, 49.670381982000052 ], [ -125.008532808999973, 49.669682721000079 ], [ -125.008518429999953, 49.670350056000075 ], [ -125.00878371099995, 49.671085597000115 ], [ -125.008842793999918, 49.671364989000061 ], [ -125.008799514999964, 49.671638060000092 ], [ -125.008638559999952, 49.671907362000098 ], [ -125.007840388999924, 49.672649109000133 ], [ -125.007840057999957, 49.672649408 ], [ -125.006825477999882, 49.673903113000023 ], [ -125.006476288999977, 49.674487345000081 ], [ -125.006176308999926, 49.674973040000062 ], [ -125.005830176999936, 49.675607675000073 ], [ -125.005183256999928, 49.676144355000112 ], [ -125.004612142999974, 49.6766181140001 ], [ -125.004598892999965, 49.676629107000103 ], [ -125.004245337999933, 49.67709363900012 ], [ -125.004128803999947, 49.67703860000006 ], [ -125.003972865999941, 49.677074934000075 ], [ -125.003938905999945, 49.677171792000124 ], [ -125.00402024899995, 49.677253478000075 ], [ -125.003986763999961, 49.677520336000029 ], [ -125.004049481999971, 49.678141611000122 ], [ -125.003387735999965, 49.678316346000095 ], [ -125.002432383999974, 49.678617955000064 ], [ -125.001512819999959, 49.677907897000118 ], [ -125.000570102999973, 49.677178703000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76392668", "BldgCostT": "49641668", "sL_LossRatio": "0.866079462950023", "sL_AssetLoss": "56498.28", "sL_BldgLoss": "48932", "sL_StrLoss": "40006", "sL_NStrLoss": "8926", "sL_ContLoss": "7566.28", "geom_point": "0101000020E6100000FF5856D47F405FC01CA7CE61C6D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.006176308999926, 49.674973040000062 ], [ -125.006476288999977, 49.674487345000081 ], [ -125.008741689999937, 49.676246757000101 ], [ -125.010386087999976, 49.677521096000149 ], [ -125.009412110999904, 49.678046510000101 ], [ -125.010394012999967, 49.678824582000018 ], [ -125.01077138399998, 49.679247209000046 ], [ -125.010888829999899, 49.679342472000016 ], [ -125.011439372999988, 49.67978903700007 ], [ -125.011535083999945, 49.679866709000073 ], [ -125.009311160999971, 49.681074229000117 ], [ -125.009178990999914, 49.681145992 ], [ -125.006925887999941, 49.679384900000073 ], [ -125.006638497999973, 49.679160086000095 ], [ -125.005289965999935, 49.678105244000093 ], [ -125.00428867699999, 49.677282510000062 ], [ -125.004239348999974, 49.677241994000106 ], [ -125.004292448999976, 49.677156122000078 ], [ -125.004245337999933, 49.67709363900012 ], [ -125.004598892999965, 49.676629107000103 ], [ -125.004612142999974, 49.6766181140001 ], [ -125.005183256999928, 49.676144355000112 ], [ -125.005830176999936, 49.675607675000073 ], [ -125.006176308999926, 49.674973040000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184531916", "BldgCostT": "116531666", "sL_LossRatio": "0.978706763239729", "sL_AssetLoss": "104842.21", "sL_BldgLoss": "102609.78", "sL_StrLoss": "90585.98", "sL_NStrLoss": "12023.8", "sL_ContLoss": "2232.43", "geom_point": "0101000020E61000005EDACB118D405FC0DF145E9B70D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.006585888999936, 49.682554499000084 ], [ -125.005474001999985, 49.6817661870001 ], [ -125.004806501999951, 49.681243808000033 ], [ -125.004072067, 49.68068028500003 ], [ -125.004118859999906, 49.680566473000042 ], [ -125.004157651999932, 49.680373447000122 ], [ -125.004049481999971, 49.678141611000122 ], [ -125.003986763999961, 49.677520336000029 ], [ -125.00402024899995, 49.677253478000075 ], [ -125.003938905999945, 49.677171792000124 ], [ -125.003972865999941, 49.677074934000075 ], [ -125.004128803999947, 49.67703860000006 ], [ -125.004245337999933, 49.67709363900012 ], [ -125.004292448999976, 49.677156122000078 ], [ -125.004239348999974, 49.677241994000106 ], [ -125.00428867699999, 49.677282510000062 ], [ -125.005289965999935, 49.678105244000093 ], [ -125.006638497999973, 49.679160086000095 ], [ -125.005167684999961, 49.679980559000093 ], [ -125.005967389999938, 49.680601308000057 ], [ -125.007721300999947, 49.681937798000092 ], [ -125.008448314999924, 49.682465302000082 ], [ -125.009860202999931, 49.681678399000134 ], [ -125.010239384999949, 49.681953488000097 ], [ -125.012736394999976, 49.683851704000091 ], [ -125.012830426999955, 49.683922551000116 ], [ -125.01327390799996, 49.684256702000049 ], [ -125.013851600999971, 49.684691994000012 ], [ -125.013287801999923, 49.684998474000096 ], [ -125.012691000999951, 49.685322910000096 ], [ -125.012220852999945, 49.68557834400012 ], [ -125.011784000999938, 49.68581569800007 ], [ -125.011399182999924, 49.685983099000119 ], [ -125.009377089999987, 49.687124298000093 ], [ -125.008953408999929, 49.686792999000055 ], [ -125.008558395999955, 49.686480901000031 ], [ -125.007515991999952, 49.685662605000076 ], [ -125.007445380999954, 49.685607205000089 ], [ -125.006580397999954, 49.684926504000018 ], [ -125.007202477999925, 49.68459472600005 ], [ -125.007774390999899, 49.68428970000015 ], [ -125.008512028999974, 49.683924764000018 ], [ -125.006585888999936, 49.682554499000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261398083", "BldgCostT": "176848333", "sL_LossRatio": "0.98449233823912", "sL_AssetLoss": "104757.25", "sL_BldgLoss": "103132.71", "sL_StrLoss": "82785.91", "sL_NStrLoss": "20346.8", "sL_ContLoss": "1624.54", "geom_point": "0101000020E6100000D57AE85000415FC021CD372634D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.012736394999976, 49.683851704000091 ], [ -125.010239384999949, 49.681953488000097 ], [ -125.009860202999931, 49.681678399000134 ], [ -125.008448314999924, 49.682465302000082 ], [ -125.007721300999947, 49.681937798000092 ], [ -125.005967389999938, 49.680601308000057 ], [ -125.005167684999961, 49.679980559000093 ], [ -125.006638497999973, 49.679160086000095 ], [ -125.006925887999941, 49.679384900000073 ], [ -125.009178990999914, 49.681145992 ], [ -125.009311160999971, 49.681074229000117 ], [ -125.011535083999945, 49.679866709000073 ], [ -125.017890785999953, 49.676415010000113 ], [ -125.018836913999962, 49.677141566000088 ], [ -125.018899764999972, 49.677189839000064 ], [ -125.020912095999961, 49.678735108000112 ], [ -125.022775456999952, 49.680148564000021 ], [ -125.022782395999968, 49.680153404000116 ], [ -125.023025810999926, 49.680337065000103 ], [ -125.02339049699999, 49.680612187000108 ], [ -125.022913003999918, 49.68085349000004 ], [ -125.022569416999943, 49.68111670600004 ], [ -125.020290193999983, 49.682374405000118 ], [ -125.019065804999968, 49.683016506000087 ], [ -125.018670686999911, 49.683159608000039 ], [ -125.01808189499998, 49.683482601000044 ], [ -125.019905192999886, 49.68490219600006 ], [ -125.01933874199996, 49.685205823000054 ], [ -125.017528400999964, 49.686176189000051 ], [ -125.017018506999989, 49.68646466200007 ], [ -125.016476706999967, 49.686771194000087 ], [ -125.015878619999953, 49.686320176000024 ], [ -125.015842202000016, 49.686292727000094 ], [ -125.015817100999953, 49.686264154000099 ], [ -125.015616207999955, 49.686035675000056 ], [ -125.015431325999941, 49.685896830000139 ], [ -125.015229501999926, 49.685736561000027 ], [ -125.015172234999966, 49.685692584000037 ], [ -125.014928912999949, 49.685507917000102 ], [ -125.014614796999965, 49.685288500000077 ], [ -125.014342633999973, 49.685077333000038 ], [ -125.014056209999964, 49.684853306000043 ], [ -125.013851600999971, 49.684691994000012 ], [ -125.01327390799996, 49.684256702000049 ], [ -125.012830426999955, 49.683922551000116 ], [ -125.012736394999976, 49.683851704000091 ] ], [ [ -125.018899166999972, 49.682129550000106 ], [ -125.019592647999929, 49.68211745400005 ], [ -125.019129461999938, 49.682113287000085 ], [ -125.019157287999946, 49.680809273000058 ], [ -125.017310872999985, 49.680792644000071 ], [ -125.017324049999942, 49.680176264000096 ], [ -125.016834701999983, 49.68017185100009 ], [ -125.016822680999894, 49.680733895000067 ], [ -125.014398260999926, 49.680712001000096 ], [ -125.014395092999933, 49.680859755 ], [ -125.013023490999942, 49.680847346000057 ], [ -125.013069495999929, 49.681961208000061 ], [ -125.012238278999945, 49.681975659000045 ], [ -125.012260546999983, 49.682514999000105 ], [ -125.016001059, 49.68244992000011 ], [ -125.015989903999952, 49.682180250000059 ], [ -125.017236732999947, 49.682158530000052 ], [ -125.017259055999929, 49.682697869000059 ], [ -125.018505895999937, 49.682676135000094 ], [ -125.018494727999922, 49.682406466000046 ], [ -125.018910337999912, 49.682399219000089 ], [ -125.018899166999972, 49.682129550000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119255645", "BldgCostT": "78411524", "sL_LossRatio": "0.956735077563532", "sL_AssetLoss": "86337.61", "sL_BldgLoss": "82602.22", "sL_StrLoss": "72910.32", "sL_NStrLoss": "9691.9", "sL_ContLoss": "3735.39", "geom_point": "0101000020E6100000D199EE54C4405FC0AB23B2D506D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.010381127999935, 49.690615158000085 ], [ -125.008750817999939, 49.689119103000067 ], [ -125.008439885999962, 49.68927728900006 ], [ -125.008198309999926, 49.689363201000091 ], [ -125.007618027999925, 49.689482102000063 ], [ -125.006114115999964, 49.68835931000006 ], [ -125.006632023999913, 49.688179599000129 ], [ -125.007302004999957, 49.687946408000101 ], [ -125.0073261799999, 49.687933428000079 ], [ -125.007456069999989, 49.687863771000082 ], [ -125.007526284999983, 49.687826103000106 ], [ -125.007827098999968, 49.687497907000072 ], [ -125.008558395999955, 49.686480901000031 ], [ -125.008953408999929, 49.686792999000055 ], [ -125.009377089999987, 49.687124298000093 ], [ -125.011399182999924, 49.685983099000119 ], [ -125.011784000999938, 49.68581569800007 ], [ -125.012220852999945, 49.68557834400012 ], [ -125.012691000999951, 49.685322910000096 ], [ -125.013287801999923, 49.684998474000096 ], [ -125.013851600999971, 49.684691994000012 ], [ -125.014056209999964, 49.684853306000043 ], [ -125.014342633999973, 49.685077333000038 ], [ -125.014614796999965, 49.685288500000077 ], [ -125.014928912999949, 49.685507917000102 ], [ -125.015172234999966, 49.685692584000037 ], [ -125.015229501999926, 49.685736561000027 ], [ -125.015431325999941, 49.685896830000139 ], [ -125.015616207999955, 49.686035675000056 ], [ -125.015817100999953, 49.686264154000099 ], [ -125.015842202000016, 49.686292727000094 ], [ -125.015878619999953, 49.686320176000024 ], [ -125.016476706999967, 49.686771194000087 ], [ -125.017435098999968, 49.687494905000015 ], [ -125.017714703999928, 49.687701611000136 ], [ -125.018306040999974, 49.687893229000039 ], [ -125.018310827999954, 49.688008797000101 ], [ -125.018062272999941, 49.688081138000022 ], [ -125.017597810999916, 49.688089234000103 ], [ -125.017470841999952, 49.688144264000087 ], [ -125.017392904999895, 49.688092805000053 ], [ -125.016235345999988, 49.688112970000091 ], [ -125.016213028999942, 49.687573632000053 ], [ -125.015797373999959, 49.687580872000119 ], [ -125.015808528999955, 49.68785054000012 ], [ -125.015392871999907, 49.687857777000019 ], [ -125.015404024999896, 49.688127446000074 ], [ -125.014988364999965, 49.68813468200014 ], [ -125.014999516999964, 49.688404351000074 ], [ -125.01458385299992, 49.688411584000121 ], [ -125.01459500199995, 49.688681253000034 ], [ -125.014374702999959, 49.688685087000046 ], [ -125.014368745999974, 49.688962827000083 ], [ -125.013723695999914, 49.688910489000094 ], [ -125.010381127999935, 49.690615158000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "291790329", "BldgCostT": "187298367", "sL_LossRatio": "0.784915711752416", "sL_AssetLoss": "113646.33", "sL_BldgLoss": "89202.79", "sL_StrLoss": "68727.89", "sL_NStrLoss": "20474.9", "sL_ContLoss": "24443.54", "geom_point": "0101000020E61000007E108E9B52405FC0FA70B0D486D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.003387735999965, 49.678316346000095 ], [ -125.004049481999971, 49.678141611000122 ], [ -125.004157651999932, 49.680373447000122 ], [ -125.004118859999906, 49.680566473000042 ], [ -125.004072067, 49.68068028500003 ], [ -125.004806501999951, 49.681243808000033 ], [ -125.005474001999985, 49.6817661870001 ], [ -125.006585888999936, 49.682554499000084 ], [ -125.008512028999974, 49.683924764000018 ], [ -125.007774390999899, 49.68428970000015 ], [ -125.007202477999925, 49.68459472600005 ], [ -125.006580397999954, 49.684926504000018 ], [ -125.007445380999954, 49.685607205000089 ], [ -125.007515991999952, 49.685662605000076 ], [ -125.008558395999955, 49.686480901000031 ], [ -125.007827098999968, 49.687497907000072 ], [ -125.007526284999983, 49.687826103000106 ], [ -125.007456069999989, 49.687863771000082 ], [ -125.0073261799999, 49.687933428000079 ], [ -125.007302004999957, 49.687946408000101 ], [ -125.006632023999913, 49.688179599000129 ], [ -125.005494783999907, 49.68726969700009 ], [ -125.004591697, 49.686558113000054 ], [ -125.004149016999946, 49.686209505000143 ], [ -125.003799601999958, 49.685839298000126 ], [ -125.003051997999989, 49.685047179000058 ], [ -125.002156469999989, 49.684309456000058 ], [ -125.001789931999966, 49.684028154000082 ], [ -125.00240958699996, 49.683688412000087 ], [ -125.002570739999953, 49.683383373000026 ], [ -125.002936888999955, 49.682690249000089 ], [ -125.003306937999952, 49.682044188000106 ], [ -125.001875066999929, 49.681000213000068 ], [ -125.00269949099993, 49.680540917000066 ], [ -125.002808486999982, 49.680435808000013 ], [ -125.00284947499992, 49.680334523000042 ], [ -125.002837897999953, 49.679719981000027 ], [ -125.002823103999944, 49.679124366000089 ], [ -125.002751592999942, 49.678905959000119 ], [ -125.002432383999974, 49.678617955000064 ], [ -125.003387735999965, 49.678316346000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179815670", "BldgCostT": "115021172", "sL_LossRatio": "0.836291116794521", "sL_AssetLoss": "73058.65", "sL_BldgLoss": "61098.3", "sL_StrLoss": "48032.6", "sL_NStrLoss": "13065.7", "sL_ContLoss": "11960.35", "geom_point": "0101000020E61000001E8BCF3205405FC036250FFA08D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.997944095999955, 49.676599587000027 ], [ -124.999054007999973, 49.676007090000063 ], [ -124.999982826999926, 49.676724881000013 ], [ -125.000570102999973, 49.677178703000045 ], [ -125.001512819999959, 49.677907897000118 ], [ -125.002432383999974, 49.678617955000064 ], [ -125.002751592999942, 49.678905959000119 ], [ -125.002823103999944, 49.679124366000089 ], [ -125.002837897999953, 49.679719981000027 ], [ -125.00284947499992, 49.680334523000042 ], [ -125.002808486999982, 49.680435808000013 ], [ -125.00269949099993, 49.680540917000066 ], [ -125.001875066999929, 49.681000213000068 ], [ -125.003306937999952, 49.682044188000106 ], [ -125.002936888999955, 49.682690249000089 ], [ -125.002570739999953, 49.683383373000026 ], [ -125.00240958699996, 49.683688412000087 ], [ -125.001789931999966, 49.684028154000082 ], [ -125.00100928699996, 49.683423694000098 ], [ -125.000607299999942, 49.683113308000088 ], [ -124.999981850000026, 49.682629859000038 ], [ -124.999964308999921, 49.682616286000062 ], [ -124.999553548999941, 49.682296579000131 ], [ -124.997914210999966, 49.681020505000035 ], [ -124.997507805999987, 49.680710077000072 ], [ -124.997038106999966, 49.68035129800014 ], [ -124.997398416999957, 49.680154989000073 ], [ -124.997904357999971, 49.679878596000059 ], [ -124.997986060999949, 49.679833957000142 ], [ -124.99817585699995, 49.679730280000044 ], [ -124.999309201999949, 49.679111086000034 ], [ -124.998380212999933, 49.678387390000104 ], [ -124.996841178999929, 49.677187704000062 ], [ -124.997944095999955, 49.676599587000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147405917", "BldgCostT": "95821667", "sL_LossRatio": "0.988029628174558", "sL_AssetLoss": "74121.34", "sL_BldgLoss": "73234.08", "sL_StrLoss": "67377.38", "sL_NStrLoss": "5856.7", "sL_ContLoss": "887.26", "geom_point": "0101000020E6100000E14780C3993F5FC02EF24EB293D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.993254293999968, 49.677601706000132 ], [ -124.99203049499998, 49.677510305000105 ], [ -124.991845890999983, 49.677525694000046 ], [ -124.99165218899999, 49.67758048500005 ], [ -124.991244300999981, 49.677800802000014 ], [ -124.990503403999952, 49.6772235910001 ], [ -124.989789297999948, 49.676629611000074 ], [ -124.988119012999945, 49.675237806000055 ], [ -124.987992489999982, 49.675131400000112 ], [ -124.987320601999926, 49.674573707000057 ], [ -124.9881661899999, 49.674163300000046 ], [ -124.990171110999981, 49.673083087000116 ], [ -124.990997463, 49.672637814000112 ], [ -124.994658002999984, 49.67548899000009 ], [ -124.9957486099999, 49.674891909000038 ], [ -124.996840603999914, 49.674293785000046 ], [ -124.999054007999973, 49.676007090000063 ], [ -124.997944095999955, 49.676599587000027 ], [ -124.996841178999929, 49.677187704000062 ], [ -124.998380212999933, 49.678387390000104 ], [ -124.999309201999949, 49.679111086000034 ], [ -124.99817585699995, 49.679730280000044 ], [ -124.997986060999949, 49.679833957000142 ], [ -124.997904357999971, 49.679878596000059 ], [ -124.997398416999957, 49.680154989000073 ], [ -124.997038106999966, 49.68035129800014 ], [ -124.996466098, 49.680662696000113 ], [ -124.995090793999935, 49.679575116000059 ], [ -124.994845715999986, 49.679381185000125 ], [ -124.994430229999949, 49.679052407000057 ], [ -124.99404647199999, 49.678748696000078 ], [ -124.995076971999936, 49.678181598000023 ], [ -124.994479706000021, 49.677752412000082 ], [ -124.99436568299997, 49.677720480000112 ], [ -124.994270402999945, 49.677693805000082 ], [ -124.993254293999968, 49.677601706000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166158334", "BldgCostT": "107913334", "sL_LossRatio": "0.974136468779881", "sL_AssetLoss": "106590.24", "sL_BldgLoss": "103833.44", "sL_StrLoss": "93649.54", "sL_NStrLoss": "10183.9", "sL_ContLoss": "2756.8", "geom_point": "0101000020E61000005EDBA1827F415FC0A579C729BAD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.017435098999968, 49.687494905000015 ], [ -125.016476706999967, 49.686771194000087 ], [ -125.017018506999989, 49.68646466200007 ], [ -125.017528400999964, 49.686176189000051 ], [ -125.01933874199996, 49.685205823000054 ], [ -125.019905192999886, 49.68490219600006 ], [ -125.020407339999963, 49.684633449000081 ], [ -125.020909988999932, 49.684364391000067 ], [ -125.021357058999982, 49.684124915000083 ], [ -125.022216572999952, 49.683664468000075 ], [ -125.022546697999928, 49.683487592000063 ], [ -125.023577163999946, 49.682936280000021 ], [ -125.024079616999984, 49.682667503000097 ], [ -125.024246707, 49.682577949000056 ], [ -125.025274893999949, 49.682026889 ], [ -125.02590070399998, 49.681712306000072 ], [ -125.027065494999931, 49.68264111000007 ], [ -125.028551285999981, 49.6818178 ], [ -125.028871494999976, 49.682067114000056 ], [ -125.027399277999976, 49.682720737000054 ], [ -125.027387934999979, 49.682712371000036 ], [ -125.02664887899999, 49.682992271000053 ], [ -125.026804234999929, 49.683070873000041 ], [ -125.026424939, 49.683077512000054 ], [ -125.026413724999955, 49.682807846000074 ], [ -125.025998113999975, 49.682815119000104 ], [ -125.02598690399999, 49.682545453000138 ], [ -125.025155682999952, 49.682559997000098 ], [ -125.025189299999965, 49.683368999000038 ], [ -125.025604915999963, 49.683361728000087 ], [ -125.02561422, 49.683585530000073 ], [ -125.027815791999913, 49.683605185000026 ], [ -125.028303668999953, 49.683874739000096 ], [ -125.02825885099999, 49.685994650000069 ], [ -125.027837685999955, 49.686523505000139 ], [ -125.027035953999984, 49.68719631400009 ], [ -125.023683305999981, 49.68716634300003 ], [ -125.023692823999966, 49.687395521000049 ], [ -125.022366893999958, 49.687321117000074 ], [ -125.022026411999917, 49.687332944000154 ], [ -125.022021810999959, 49.687222039000083 ], [ -125.021191550999944, 49.687261674000077 ], [ -125.021196418, 49.687379018000129 ], [ -125.020401286999942, 49.687500614000072 ], [ -125.019163797999937, 49.687522205000043 ], [ -125.019122942999957, 49.687530899000073 ], [ -125.019132831999968, 49.687769551000038 ], [ -125.019048563, 49.687794078000046 ], [ -125.018302473999981, 49.687807087000046 ], [ -125.018306040999974, 49.687893229000039 ], [ -125.017714703999928, 49.687701611000136 ], [ -125.017435098999968, 49.687494905000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "202624334", "BldgCostT": "123958334", "sL_LossRatio": "0.919485754471648", "sL_AssetLoss": "104571.06", "sL_BldgLoss": "96151.6", "sL_StrLoss": "83083.7", "sL_NStrLoss": "13067.9", "sL_ContLoss": "8419.46", "geom_point": "0101000020E6100000C3C6DD9CA1415FC0AF0439C536D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.020290193999983, 49.682374405000118 ], [ -125.022569416999943, 49.68111670600004 ], [ -125.022913003999918, 49.68085349000004 ], [ -125.02339049699999, 49.680612187000108 ], [ -125.023025810999926, 49.680337065000103 ], [ -125.022782395999968, 49.680153404000116 ], [ -125.025332423999927, 49.67921768100004 ], [ -125.025885750999976, 49.678994753000048 ], [ -125.025203093999949, 49.678341499000048 ], [ -125.026083837999963, 49.677936432000095 ], [ -125.026161008999949, 49.6779992680001 ], [ -125.026351817999924, 49.67792180100006 ], [ -125.026432050999958, 49.67798768100004 ], [ -125.027072900999883, 49.677744207000025 ], [ -125.027428258, 49.67802190000004 ], [ -125.026884694999978, 49.678278596000041 ], [ -125.02768058299992, 49.678964226000083 ], [ -125.028265438999966, 49.678676037000059 ], [ -125.029519519999923, 49.67965586300005 ], [ -125.029528372999962, 49.679662812000082 ], [ -125.030194021999989, 49.680183586000147 ], [ -125.030303542999903, 49.680269147000054 ], [ -125.031113268999945, 49.6809016630001 ], [ -125.031508747999936, 49.681210592000077 ], [ -125.031804032999929, 49.681441241000073 ], [ -125.032135898999911, 49.681700433000074 ], [ -125.032600079999966, 49.682063003000096 ], [ -125.030024779999948, 49.68273511500005 ], [ -125.029371751999932, 49.682356873000032 ], [ -125.028871494999976, 49.682067114000056 ], [ -125.028551285999981, 49.6818178 ], [ -125.027065494999931, 49.68264111000007 ], [ -125.02590070399998, 49.681712306000072 ], [ -125.025274893999949, 49.682026889 ], [ -125.024246707, 49.682577949000056 ], [ -125.024079616999984, 49.682667503000097 ], [ -125.023577163999946, 49.682936280000021 ], [ -125.022546697999928, 49.683487592000063 ], [ -125.022216572999952, 49.683664468000075 ], [ -125.021357058999982, 49.684124915000083 ], [ -125.020909988999932, 49.684364391000067 ], [ -125.020407339999963, 49.684633449000081 ], [ -125.019905192999886, 49.68490219600006 ], [ -125.01808189499998, 49.683482601000044 ], [ -125.018670686999911, 49.683159608000039 ], [ -125.019065804999968, 49.683016506000087 ], [ -125.020290193999983, 49.682374405000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166275034", "BldgCostT": "106414449", "sL_LossRatio": "0.893868831827024", "sL_AssetLoss": "113336.64", "sL_BldgLoss": "101308.09", "sL_StrLoss": "87620.99", "sL_NStrLoss": "13687.1", "sL_ContLoss": "12028.55", "geom_point": "0101000020E61000000BDDEC0F94425FC032516B37CDD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.034603395999966, 49.683603192000056 ], [ -125.034469931999951, 49.683502764000174 ], [ -125.033191696999964, 49.684001701000085 ], [ -125.032704791999933, 49.68357942300009 ], [ -125.03269918699999, 49.683574593000081 ], [ -125.033746901000015, 49.682958685000052 ], [ -125.03272225799999, 49.682158399000095 ], [ -125.032600079999966, 49.682063003000096 ], [ -125.032135898999911, 49.681700433000074 ], [ -125.031804032999929, 49.681441241000073 ], [ -125.031508747999936, 49.681210592000077 ], [ -125.031113268999945, 49.6809016630001 ], [ -125.030303542999903, 49.680269147000054 ], [ -125.030194021999989, 49.680183586000147 ], [ -125.03200446699995, 49.679198504000034 ], [ -125.032371578999957, 49.678997594000158 ], [ -125.034610680999961, 49.677778796000062 ], [ -125.035544573999942, 49.677236974000074 ], [ -125.035844600999937, 49.67706289100007 ], [ -125.036610108999966, 49.675899388000083 ], [ -125.036620724999963, 49.67589343900007 ], [ -125.036939417999989, 49.675714291000126 ], [ -125.03816572099997, 49.675027095000132 ], [ -125.038174617, 49.674933599000049 ], [ -125.038314087999979, 49.674888010000089 ], [ -125.042599910999968, 49.672620864000123 ], [ -125.042910426999967, 49.672456610000054 ], [ -125.044845992999967, 49.67141440000006 ], [ -125.045844697999883, 49.670876582000091 ], [ -125.046879206999918, 49.670400511000011 ], [ -125.047316945999967, 49.67020799400008 ], [ -125.049391756999938, 49.669181525000027 ], [ -125.049541950999966, 49.669109006000021 ], [ -125.049524636999976, 49.669946603000092 ], [ -125.049129575999984, 49.669943157000077 ], [ -125.049117353999961, 49.670534155000027 ], [ -125.0491889, 49.670532888000061 ], [ -125.049279575999989, 49.672690201000094 ], [ -125.049048441999958, 49.672694292000095 ], [ -125.048033015, 49.672712263000086 ], [ -125.048010358999974, 49.672172934000116 ], [ -125.047594841999953, 49.672180284000092 ], [ -125.047560866999973, 49.671371291000035 ], [ -125.047428428999979, 49.671373634000112 ], [ -125.047366612999937, 49.674357047000115 ], [ -125.046151160999941, 49.674346416000063 ], [ -125.046138501999977, 49.674956574000113 ], [ -125.044384017999974, 49.674941206000057 ], [ -125.044402135999974, 49.675373217000114 ], [ -125.044633340999951, 49.675375243000062 ], [ -125.044617074999962, 49.676157986000042 ], [ -125.0456938499999, 49.676167419000123 ], [ -125.045641449, 49.678691571000044 ], [ -125.045788841999965, 49.67868896600006 ], [ -125.045811479999912, 49.679228296000147 ], [ -125.046482569999938, 49.679216433000057 ], [ -125.046642631999987, 49.67921360400004 ], [ -125.046699247999967, 49.680561924000081 ], [ -125.04603533199996, 49.680573661000089 ], [ -125.045452483999924, 49.68058396100006 ], [ -125.045475118999917, 49.681123290000087 ], [ -125.042565962999944, 49.681174658000081 ], [ -125.042612549999916, 49.682286240000103 ], [ -125.042935640999971, 49.682521365000071 ], [ -125.042625639, 49.682598578000061 ], [ -125.042633774, 49.682792646000053 ], [ -125.041909344999951, 49.682805426000058 ], [ -125.041804330999966, 49.68284962900006 ], [ -125.041813853999926, 49.683076975000048 ], [ -125.04128460599999, 49.683086309000025 ], [ -125.040989612999951, 49.683258294000076 ], [ -125.040993927999978, 49.683361297000083 ], [ -125.040807294999922, 49.683364589000043 ], [ -125.040583605999984, 49.683494999000054 ], [ -125.040589605999941, 49.683638289000037 ], [ -125.040329973999945, 49.683642867000081 ], [ -125.040177595000017, 49.683731703000056 ], [ -125.040185277999925, 49.683915279000082 ], [ -125.039852648999926, 49.683921142000024 ], [ -125.039771577999929, 49.683968405 ], [ -125.039780946999954, 49.684192269000029 ], [ -125.039708795999942, 49.684193541000077 ], [ -125.035115185000024, 49.684232015000077 ], [ -125.035028498999964, 49.68394059400007 ], [ -125.034979782, 49.683870890000016 ], [ -125.034943803999909, 49.683819401000065 ], [ -125.034808237, 49.683733302000064 ], [ -125.034603395999966, 49.683603192000056 ] ], [ [ -125.043979493999984, 49.67494282600007 ], [ -125.044174972999912, 49.674939373000065 ], [ -125.043979601999965, 49.67493766000009 ], [ -125.043979493999984, 49.67494282600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20776001", "BldgCostT": "13855001", "sL_LossRatio": "0.88575675352044", "sL_AssetLoss": "20627.39", "sL_BldgLoss": "18270.85", "sL_StrLoss": "16100.55", "sL_NStrLoss": "2170.3", "sL_ContLoss": "2356.54", "geom_point": "0101000020E6100000528A460C75435FC0679D8E53B6D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.051633969999969, 49.675619382000058 ], [ -125.056825687999947, 49.675664431000051 ], [ -125.056751877999943, 49.679261898000114 ], [ -125.054853523999981, 49.679245454000053 ], [ -125.051212177999957, 49.679213821000133 ], [ -125.051286421999947, 49.675616357000074 ], [ -125.051633969999969, 49.675619382000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3315667", "BldgCostT": "2286667", "sL_LossRatio": "0.97749344009522", "sL_AssetLoss": "3696.7", "sL_BldgLoss": "3613.5", "sL_StrLoss": "3289", "sL_NStrLoss": "324.5", "sL_ContLoss": "83.2", "geom_point": "0101000020E6100000BB60994C4F435FC00D33D9E415D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.050821077999913, 49.679679382000081 ], [ -125.05289897199999, 49.679642552000118 ], [ -125.052952582, 49.680915352000106 ], [ -125.052797456999926, 49.68099367500011 ], [ -125.050462220999947, 49.681035063000117 ], [ -125.050456947000015, 49.68090970800008 ], [ -125.050416842999937, 49.679956408000137 ], [ -125.050826652999959, 49.679949149000059 ], [ -125.050832423999964, 49.679949046000075 ], [ -125.050821077999913, 49.679679382000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141966333", "BldgCostT": "95853333", "sL_LossRatio": "0.981147040843972", "sL_AssetLoss": "123391.77", "sL_BldgLoss": "121065.47", "sL_StrLoss": "110527.57", "sL_NStrLoss": "10537.9", "sL_ContLoss": "2326.3", "geom_point": "0101000020E6100000701430EC36425FC0CE61B501F1D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.020912095999961, 49.678735108000112 ], [ -125.018899764999972, 49.677189839000064 ], [ -125.018836913999962, 49.677141566000088 ], [ -125.017890785999953, 49.676415010000113 ], [ -125.019073479999989, 49.675773499000037 ], [ -125.020044602999974, 49.675244298000031 ], [ -125.022303470999972, 49.674016975000043 ], [ -125.022970025999939, 49.673655124000071 ], [ -125.02301410099993, 49.67363118500004 ], [ -125.024500512999978, 49.672824094000077 ], [ -125.025249026000012, 49.673411268000045 ], [ -125.025462302999941, 49.673578579000029 ], [ -125.026173460999971, 49.67321610700003 ], [ -125.027361592999981, 49.674303067000046 ], [ -125.029082172999907, 49.673438773000058 ], [ -125.028492802999935, 49.672985694000026 ], [ -125.027202308999961, 49.671994469 ], [ -125.027577202999936, 49.671737059000058 ], [ -125.027127545999974, 49.67139448700005 ], [ -125.027301445999939, 49.671299757000064 ], [ -125.028285948999965, 49.670763398000091 ], [ -125.028392027000024, 49.670705589000129 ], [ -125.028703687999979, 49.670535803000078 ], [ -125.028720572999958, 49.670526598000087 ], [ -125.028756662999953, 49.670506877000079 ], [ -125.029302025999968, 49.670208805000101 ], [ -125.030948203999955, 49.669310402000086 ], [ -125.028290398999943, 49.667291599000073 ], [ -125.031525648999946, 49.665500543000057 ], [ -125.032870752999912, 49.664755846000133 ], [ -125.035134684999932, 49.66350229800004 ], [ -125.036815982999954, 49.662568208000053 ], [ -125.039322745999968, 49.664348745000112 ], [ -125.039664694999956, 49.664600208000046 ], [ -125.04175411199995, 49.663479806000055 ], [ -125.042759583999938, 49.662938117000067 ], [ -125.042767312999899, 49.662945659000044 ], [ -125.043603555999965, 49.663764396000097 ], [ -125.043688379999963, 49.663847438000062 ], [ -125.043716311999972, 49.663874800000023 ], [ -125.044049614999935, 49.664159305000048 ], [ -125.044790200999927, 49.664795747000063 ], [ -125.044796390999977, 49.664943401000073 ], [ -125.044974038999896, 49.664940263000069 ], [ -125.046018111999942, 49.665721997000034 ], [ -125.046120308999932, 49.665605097000103 ], [ -125.046498602999961, 49.665876547000018 ], [ -125.046498711999945, 49.665879167000043 ], [ -125.046502297999922, 49.665879199000059 ], [ -125.047499492999961, 49.666594724000035 ], [ -125.047677013999973, 49.66654495300002 ], [ -125.049594165999977, 49.666582876000064 ], [ -125.049563316000032, 49.66807547300003 ], [ -125.049541950999966, 49.669109006000021 ], [ -125.049391756999938, 49.669181525000027 ], [ -125.047316945999967, 49.67020799400008 ], [ -125.046879206999918, 49.670400511000011 ], [ -125.045844697999883, 49.670876582000091 ], [ -125.044845992999967, 49.67141440000006 ], [ -125.042910426999967, 49.672456610000054 ], [ -125.042599910999968, 49.672620864000123 ], [ -125.038314087999979, 49.674888010000089 ], [ -125.038174617, 49.674933599000049 ], [ -125.03816572099997, 49.675027095000132 ], [ -125.036939417999989, 49.675714291000126 ], [ -125.036620724999963, 49.67589343900007 ], [ -125.036610108999966, 49.675899388000083 ], [ -125.035844600999937, 49.67706289100007 ], [ -125.035544573999942, 49.677236974000074 ], [ -125.034610680999961, 49.677778796000062 ], [ -125.032371578999957, 49.678997594000158 ], [ -125.03200446699995, 49.679198504000034 ], [ -125.030194021999989, 49.680183586000147 ], [ -125.029528372999962, 49.679662812000082 ], [ -125.029519519999923, 49.67965586300005 ], [ -125.028265438999966, 49.678676037000059 ], [ -125.02768058299992, 49.678964226000083 ], [ -125.026884694999978, 49.678278596000041 ], [ -125.027428258, 49.67802190000004 ], [ -125.027072900999883, 49.677744207000025 ], [ -125.026432050999958, 49.67798768100004 ], [ -125.026351817999924, 49.67792180100006 ], [ -125.026161008999949, 49.6779992680001 ], [ -125.026083837999963, 49.677936432000095 ], [ -125.025203093999949, 49.678341499000048 ], [ -125.025885750999976, 49.678994753000048 ], [ -125.025332423999927, 49.67921768100004 ], [ -125.022782395999968, 49.680153404000116 ], [ -125.022775456999952, 49.680148564000021 ], [ -125.020912095999961, 49.678735108000112 ] ], [ [ -125.033060147999905, 49.675106341000095 ], [ -125.033068323999984, 49.674717559000079 ], [ -125.032645187999947, 49.674713804000113 ], [ -125.032637008999984, 49.675102586000044 ], [ -125.033060147999905, 49.675106341000095 ] ], [ [ -125.040490308999907, 49.672516604000059 ], [ -125.040495923999941, 49.67224764300007 ], [ -125.03972534199994, 49.67224085600008 ], [ -125.039723704999957, 49.6723192480001 ], [ -125.040115525999937, 49.672312344000062 ], [ -125.040123936999976, 49.672513378000062 ], [ -125.040490308999907, 49.672516604000059 ] ], [ [ -125.042606125999939, 49.666816393000076 ], [ -125.042624621999963, 49.665928007000034 ], [ -125.042548583000013, 49.665927340000017 ], [ -125.042531469999915, 49.666749187000036 ], [ -125.041123432999925, 49.666736807000071 ], [ -125.041122045999927, 49.666803344000051 ], [ -125.042606125999939, 49.666816393000076 ] ], [ [ -125.044003170999957, 49.665857302000113 ], [ -125.04399938899995, 49.665767073000019 ], [ -125.043909222999901, 49.665768665000087 ], [ -125.043907396999927, 49.665856462000143 ], [ -125.044003170999957, 49.665857302000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.984896707366472", "sL_AssetLoss": "5184.3", "sL_BldgLoss": "5106", "sL_StrLoss": "4600", "sL_NStrLoss": "506", "sL_ContLoss": "78.3", "geom_point": "0101000020E610000005C79F879E415FC0F92A5C0319D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.027361592999981, 49.674303067000046 ], [ -125.026173460999971, 49.67321610700003 ], [ -125.025462302999941, 49.673578579000029 ], [ -125.025249026000012, 49.673411268000045 ], [ -125.024500512999978, 49.672824094000077 ], [ -125.02301410099993, 49.67363118500004 ], [ -125.022970025999939, 49.673655124000071 ], [ -125.022186697999985, 49.672999268000083 ], [ -125.022218076999962, 49.6715238640001 ], [ -125.022825658, 49.671216107000163 ], [ -125.02292016299999, 49.671216954 ], [ -125.02292121, 49.671167707000102 ], [ -125.02340648199997, 49.670921897000049 ], [ -125.025158976999933, 49.672465853000048 ], [ -125.025447975999967, 49.67230860100009 ], [ -125.026714278999933, 49.671619600000049 ], [ -125.027127545999974, 49.67139448700005 ], [ -125.027577202999936, 49.671737059000058 ], [ -125.027202308999961, 49.671994469 ], [ -125.028492802999935, 49.672985694000026 ], [ -125.029082172999907, 49.673438773000058 ], [ -125.027361592999981, 49.674303067000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.986488617205788", "sL_AssetLoss": "3297.96", "sL_BldgLoss": "3253.4", "sL_StrLoss": "3038", "sL_NStrLoss": "215.4", "sL_ContLoss": "44.56", "geom_point": "0101000020E61000009DE799A82F425FC02CC34D80C0D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.03235137599998, 49.684394394000073 ], [ -125.03181530099999, 49.684150801000094 ], [ -125.030997108999927, 49.684175002000046 ], [ -125.030451812999942, 49.684373006000065 ], [ -125.02973462199999, 49.684665312000064 ], [ -125.029686929999983, 49.68463896400003 ], [ -125.029704177999932, 49.683821941000041 ], [ -125.028545920999989, 49.683811626000121 ], [ -125.028573638999887, 49.682500153 ], [ -125.028480559999963, 49.68250178300012 ], [ -125.028491785999947, 49.682771452000033 ], [ -125.028076171999956, 49.682778732000045 ], [ -125.028087394999929, 49.683048400000118 ], [ -125.026804234999929, 49.683070873000041 ], [ -125.02664887899999, 49.682992271000053 ], [ -125.027387934999979, 49.682712371000036 ], [ -125.027399277999976, 49.682720737000054 ], [ -125.028871494999976, 49.682067114000056 ], [ -125.029371751999932, 49.682356873000032 ], [ -125.030024779999948, 49.68273511500005 ], [ -125.032600079999966, 49.682063003000096 ], [ -125.03272225799999, 49.682158399000095 ], [ -125.033746901000015, 49.682958685000052 ], [ -125.03269918699999, 49.683574593000081 ], [ -125.032704791999933, 49.68357942300009 ], [ -125.033191696999964, 49.684001701000085 ], [ -125.034469931999951, 49.683502764000174 ], [ -125.034603395999966, 49.683603192000056 ], [ -125.034808237, 49.683733302000064 ], [ -125.034943803999909, 49.683819401000065 ], [ -125.034979782, 49.683870890000016 ], [ -125.035028498999964, 49.68394059400007 ], [ -125.035115185000024, 49.684232015000077 ], [ -125.039708795999942, 49.684193541000077 ], [ -125.039375316999937, 49.684199416000034 ], [ -125.039181740999979, 49.684312264000013 ], [ -125.038957465999943, 49.684392396000042 ], [ -125.038960988, 49.68447657800008 ], [ -125.038545363999916, 49.68448389800006 ], [ -125.038556645999961, 49.684753563000122 ], [ -125.037827455999931, 49.684766402 ], [ -125.03776961600002, 49.687529252000076 ], [ -125.037283275999968, 49.687524958000076 ], [ -125.037234732999963, 49.689842260000056 ], [ -125.03528643099996, 49.689825038000066 ], [ -125.035005215999917, 49.68948309400011 ], [ -125.035128296999972, 49.689139798000021 ], [ -125.035023515999953, 49.688943301000052 ], [ -125.034157094999941, 49.688139995000064 ], [ -125.033589815999974, 49.687799601000016 ], [ -125.033066605999977, 49.687259902000079 ], [ -125.032491193999959, 49.686396805000065 ], [ -125.032449200999906, 49.685731702000105 ], [ -125.032693782999914, 49.684972592000044 ], [ -125.03235137599998, 49.684394394000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8086167", "BldgCostT": "5576667", "sL_LossRatio": "0.988076757749075", "sL_AssetLoss": "5327.41", "sL_BldgLoss": "5263.89", "sL_StrLoss": "4927.09", "sL_NStrLoss": "336.8", "sL_ContLoss": "63.52", "geom_point": "0101000020E61000005B259A38A0445FC0EF96C37274D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.074155591999954, 49.694170975000091 ], [ -125.074163945999913, 49.693756306000097 ], [ -125.073131652999933, 49.693747536000096 ], [ -125.072372611999981, 49.693433631000062 ], [ -125.072376330999958, 49.693249394000063 ], [ -125.071921123999928, 49.69324552100003 ], [ -125.071921095999954, 49.69324690100008 ], [ -125.071147125999929, 49.692926804000109 ], [ -125.070531093999989, 49.692794305000085 ], [ -125.068318432999973, 49.692806933000035 ], [ -125.068269903999976, 49.692807210000083 ], [ -125.066866009999899, 49.693047792000073 ], [ -125.065687716999904, 49.693392495000111 ], [ -125.065121696999981, 49.693439514000083 ], [ -125.064712102, 49.693265794000098 ], [ -125.064133479999938, 49.692683195000022 ], [ -125.06373289099993, 49.692419803000057 ], [ -125.063600757999907, 49.692374322000042 ], [ -125.063631024999935, 49.690888906000033 ], [ -125.067561594, 49.690922590000092 ], [ -125.067593257999988, 49.68936190100009 ], [ -125.067780962999933, 49.689363507000088 ], [ -125.06779860099995, 49.688493905000016 ], [ -125.070327335999977, 49.688515496000072 ], [ -125.070315540999914, 49.688237919000109 ], [ -125.070989888999961, 49.688225857000099 ], [ -125.07197813, 49.688208173000113 ], [ -125.071991800999967, 49.688529676000051 ], [ -125.072566417999951, 49.688534565000126 ], [ -125.07258416199997, 49.687655223000057 ], [ -125.07291581599999, 49.687658043000035 ], [ -125.072936406999972, 49.686637128000044 ], [ -125.073513220999928, 49.686642032000044 ], [ -125.073513245999933, 49.686640726000142 ], [ -125.074886146999987, 49.687773658000069 ], [ -125.075124305999978, 49.687970166000113 ], [ -125.075369271999989, 49.688172334000093 ], [ -125.075723933999953, 49.688464983000102 ], [ -125.076425778999962, 49.689044101000015 ], [ -125.076592794999939, 49.689184025 ], [ -125.077035710999965, 49.689555194000036 ], [ -125.080192266999958, 49.692200018000079 ], [ -125.079737604999977, 49.692196182000039 ], [ -125.079722188999952, 49.692965997 ], [ -125.079469892999953, 49.692993704000088 ], [ -125.07931088, 49.693027695000175 ], [ -125.078370490999987, 49.693228709000103 ], [ -125.076028802999986, 49.693936589000081 ], [ -125.074504806999983, 49.694315386000078 ], [ -125.074155591999954, 49.694170975000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.992404991812073", "sL_AssetLoss": "1416.72", "sL_BldgLoss": "1405.96", "sL_StrLoss": "1333", "sL_NStrLoss": "72.96", "sL_ContLoss": "10.76", "geom_point": "0101000020E61000009D823618EE415FC0FFADA6E318DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.030021548999954, 49.709896881000105 ], [ -125.03296680299999, 49.709923031000073 ], [ -125.032920303999944, 49.712131714000058 ], [ -125.032891068, 49.713520308000092 ], [ -125.027347262999939, 49.713471021000061 ], [ -125.027423430999946, 49.709873748000042 ], [ -125.030021548999954, 49.709896881000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.987476996274519", "sL_AssetLoss": "445.58", "sL_BldgLoss": "440", "sL_StrLoss": "420", "sL_NStrLoss": "20", "sL_ContLoss": "5.58", "geom_point": "0101000020E6100000313A076C1A425FC0C4CE143A2FD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.031693777999948, 49.689793191000085 ], [ -125.031764548999931, 49.68643401500006 ], [ -125.031829806999937, 49.686814092000049 ], [ -125.031922691999981, 49.687423603000099 ], [ -125.032245287999942, 49.687832411000088 ], [ -125.032860598999889, 49.688279600000023 ], [ -125.033057704999976, 49.688357891000038 ], [ -125.033475209999949, 49.688376406000025 ], [ -125.034343992999965, 49.688929 ], [ -125.03442157799995, 49.689152593000159 ], [ -125.034347496999885, 49.689342087000107 ], [ -125.034666210999916, 49.689661099 ], [ -125.034751985999975, 49.689820308000101 ], [ -125.031693777999948, 49.689793191000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.99345534883369", "sL_AssetLoss": "1321.69", "sL_BldgLoss": "1313.04", "sL_StrLoss": "1255", "sL_NStrLoss": "58.04", "sL_ContLoss": "8.65", "geom_point": "0101000020E61000003ED38537EF445FC081BADCBBE1DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.074364703999905, 49.716004240000075 ], [ -125.079908862999943, 49.716051138000097 ], [ -125.079836795999981, 49.71964841500008 ], [ -125.074292200999949, 49.71960151300005 ], [ -125.074364703999905, 49.716004240000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.985508496506513", "sL_AssetLoss": "463.72", "sL_BldgLoss": "457", "sL_StrLoss": "434", "sL_NStrLoss": "23", "sL_ContLoss": "6.72", "geom_point": "0101000020E610000055294544D4405FC0B5CBAFCD63D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.013756984999972, 49.689342106000076 ], [ -125.01412849399999, 49.689309291000072 ], [ -125.014359713999923, 49.689384011000115 ], [ -125.014317113999965, 49.691370231000036 ], [ -125.011190970999948, 49.691341925000081 ], [ -125.010740105999929, 49.690940145000084 ], [ -125.010908092999969, 49.690858809000112 ], [ -125.012285801999951, 49.689970091000141 ], [ -125.013756984999972, 49.689342106000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99183483314126", "sL_AssetLoss": "407.83", "sL_BldgLoss": "404.5", "sL_StrLoss": "377", "sL_NStrLoss": "27.5", "sL_ContLoss": "3.33", "geom_point": "0101000020E61000001FF23BF2EC435FC0D3CF48422ADB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.061298367999925, 49.711067405000158 ], [ -125.062961742999946, 49.711037780000076 ], [ -125.06299602199999, 49.711846759000075 ], [ -125.06216432199993, 49.711861575000057 ], [ -125.062175743999944, 49.712131236000083 ], [ -125.061759888999987, 49.712138642000077 ], [ -125.061816990999915, 49.713486943000042 ], [ -125.060153530999941, 49.713516552000094 ], [ -125.060085064999939, 49.711898590000018 ], [ -125.060500916999942, 49.711891189000035 ], [ -125.06048950399996, 49.711621529000041 ], [ -125.060905353999928, 49.711614128000051 ], [ -125.060893937999978, 49.711344469000025 ], [ -125.06130978499999, 49.711337065000045 ], [ -125.061298367999925, 49.711067405000158 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.95377650702883", "sL_AssetLoss": "41.97", "sL_BldgLoss": "40.03", "sL_StrLoss": "4.63", "sL_NStrLoss": "35.4", "sL_ContLoss": "1.94", "geom_point": "0101000020E61000003424F622FD445FC0CE02ABF2D6D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.074148629, 49.694516572000126 ], [ -125.07415021099996, 49.694438003000094 ], [ -125.074221096999977, 49.694472110000085 ], [ -125.074501319999953, 49.694513398000026 ], [ -125.075924081, 49.694100299000048 ], [ -125.077148181999945, 49.69386250200008 ], [ -125.077816110999933, 49.693589005000085 ], [ -125.07900972, 49.693252905000051 ], [ -125.07947512399997, 49.693183667000021 ], [ -125.079718554999928, 49.69314745 ], [ -125.079713300999927, 49.693409836000065 ], [ -125.079690197999966, 49.694563483000046 ], [ -125.074148629, 49.694516572000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993663798184605", "sL_AssetLoss": "339.32", "sL_BldgLoss": "337.17", "sL_StrLoss": "329", "sL_NStrLoss": "8.17", "sL_ContLoss": "2.15", "geom_point": "0101000020E610000048401A88C4435FC0DEA7913320DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.058478664999981, 49.71327647800009 ], [ -125.05846726399993, 49.713006817000085 ], [ -125.058051401999961, 49.713014210000054 ], [ -125.057960209999948, 49.710856923000073 ], [ -125.058376053999936, 49.710849531000065 ], [ -125.058364652999941, 49.710579870000068 ], [ -125.059612175000026, 49.710557685000055 ], [ -125.059726256999923, 49.713254290000073 ], [ -125.058478664999981, 49.71327647800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145360494", "BldgCostT": "98064076", "sL_LossRatio": "0.973008056149036", "sL_AssetLoss": "87005.59", "sL_BldgLoss": "84657.14", "sL_StrLoss": "79682.74", "sL_NStrLoss": "4974.4", "sL_ContLoss": "2348.45", "geom_point": "0101000020E61000000D3A11927F425FC061FB3D6FB2DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.083748380999964, 49.735817550000071 ], [ -125.083041885999961, 49.73557165500003 ], [ -125.08239531199996, 49.735346594000092 ], [ -125.081187208999935, 49.734912686000044 ], [ -125.077659489999931, 49.733645495000125 ], [ -125.075580695999975, 49.732898684000119 ], [ -125.075430990999948, 49.732844908000132 ], [ -125.074452108999978, 49.732561400000122 ], [ -125.073753906999983, 49.732251409000128 ], [ -125.073219388999917, 49.731936605000044 ], [ -125.071562205999967, 49.73056610200009 ], [ -125.071434497999931, 49.730471228000098 ], [ -125.071030688999926, 49.73017119600005 ], [ -125.070419551000015, 49.729921967000031 ], [ -125.070211017999924, 49.729836902000038 ], [ -125.066273050999968, 49.728570942000019 ], [ -125.063815884999954, 49.727780901000138 ], [ -125.062822391999973, 49.727202085000023 ], [ -125.061756410000015, 49.726439203000091 ], [ -125.060825535000021, 49.725670977000064 ], [ -125.059093504999936, 49.724241412000033 ], [ -125.05706065399994, 49.725356175000073 ], [ -125.056890791999976, 49.725449350000069 ], [ -125.056355384999961, 49.725742925000077 ], [ -125.056045182999952, 49.725913009000053 ], [ -125.053081395999982, 49.727538098000103 ], [ -125.05094353, 49.725930130000094 ], [ -125.050089086999961, 49.725287454000046 ], [ -125.046050176000023, 49.722249095000102 ], [ -125.045728011999969, 49.722000911000087 ], [ -125.042713814999928, 49.719678891000051 ], [ -125.039678002999935, 49.717340500000063 ], [ -125.037798469999984, 49.718370050000019 ], [ -125.036326092999943, 49.719176514000111 ], [ -125.033204858999966, 49.720857600000102 ], [ -125.029952485999942, 49.722609111000075 ], [ -125.029855680999958, 49.722574788000067 ], [ -125.029742988999899, 49.722541717000091 ], [ -125.029657416999925, 49.722499022000058 ], [ -125.029482528999921, 49.722350861000045 ], [ -125.029444000999916, 49.722321958000101 ], [ -125.026098955999927, 49.723203963000074 ], [ -125.026064544999926, 49.723155895000097 ], [ -125.026066169000018, 49.723079324000089 ], [ -125.026009362999972, 49.723078817 ], [ -125.026002188999882, 49.723068796000057 ], [ -125.025704929999932, 49.722834819000084 ], [ -125.025741966999931, 49.721088980000069 ], [ -125.021749381999939, 49.72105325600009 ], [ -125.021774922999924, 49.719854235000184 ], [ -125.02257921099999, 49.71952108900004 ], [ -125.023318185999983, 49.718941403000052 ], [ -125.023347101999946, 49.71863520400013 ], [ -125.022656996999928, 49.718368894000037 ], [ -125.021742992999989, 49.7178304460001 ], [ -125.021747913999917, 49.717599440000129 ], [ -125.021748023999962, 49.717594230000081 ], [ -125.021741191999979, 49.717594169000073 ], [ -125.021335756999946, 49.717590533000056 ], [ -125.021305477999945, 49.717572695000051 ], [ -125.020008916999984, 49.717082796000057 ], [ -125.019835373999967, 49.716924696 ], [ -125.019721506999986, 49.716494584000053 ], [ -125.019642292999947, 49.716243892000136 ], [ -125.01974029199998, 49.715927790000087 ], [ -125.019372585, 49.715439306000036 ], [ -125.018252984999918, 49.714523494000126 ], [ -125.017857792, 49.714376812000069 ], [ -125.017413698999974, 49.71435828800012 ], [ -125.017028009999976, 49.714418086000073 ], [ -125.016673510999965, 49.714596094000065 ], [ -125.016176208999951, 49.714667291000076 ], [ -125.015960017999944, 49.714769898000085 ], [ -125.015637806, 49.715369487000061 ], [ -125.015560264999934, 49.715817894000047 ], [ -125.012978340999936, 49.715794565000053 ], [ -125.012992712, 49.715496204000011 ], [ -125.012855803999926, 49.715174394000016 ], [ -125.012367415999947, 49.714787001000083 ], [ -125.012731705999954, 49.714556306000141 ], [ -125.013450100999947, 49.714453709000104 ], [ -125.01396781699999, 49.714220100000063 ], [ -125.014325119999981, 49.713854096000091 ], [ -125.014215785999951, 49.713207494000102 ], [ -125.014439301, 49.711873006000076 ], [ -125.014401379999953, 49.710982892000054 ], [ -125.01469549299999, 49.710042891000114 ], [ -125.013718696999931, 49.708538988000093 ], [ -125.013584786999971, 49.708020592000011 ], [ -125.013243980999988, 49.707669294000027 ], [ -125.012759909999957, 49.707170309000034 ], [ -125.012673043999939, 49.707076222000083 ], [ -125.01276103, 49.707077017000074 ], [ -125.012779027999983, 49.706239471000124 ], [ -125.018321945999944, 49.706289499000064 ], [ -125.018275374999945, 49.708468800000041 ], [ -125.018896664999914, 49.708474390000049 ], [ -125.01892994399995, 49.706916127000042 ], [ -125.019925550999972, 49.706925078000047 ], [ -125.019932822999962, 49.706584151000065 ], [ -125.02105310799999, 49.706594212000027 ], [ -125.021056287999926, 49.70644497900004 ], [ -125.02454721399998, 49.706476254000066 ], [ -125.02495959, 49.706479942000051 ], [ -125.024964523999941, 49.706247410000131 ], [ -125.024968, 49.706083674000055 ], [ -125.021742699999905, 49.706054794000117 ], [ -125.021795743999945, 49.703563641000088 ], [ -125.017818701999957, 49.703527899000051 ], [ -125.017837501999949, 49.702648511000042 ], [ -125.016178693999947, 49.702633560000066 ], [ -125.016187547999976, 49.702220056000037 ], [ -125.01578790500001, 49.702216451000034 ], [ -125.015854458999968, 49.699109379000035 ], [ -125.014331039999917, 49.69909562000008 ], [ -125.014358247999922, 49.697827222000093 ], [ -125.013994309999987, 49.697823933000038 ], [ -125.013991215999951, 49.697968051000018 ], [ -125.014194096999972, 49.697969885000091 ], [ -125.014116911999906, 49.701567209000139 ], [ -125.013653701999942, 49.701563021000055 ], [ -125.013616595999977, 49.703291417000059 ], [ -125.008074044999944, 49.703241150000096 ], [ -125.008081022999988, 49.702917953000082 ], [ -125.007000722999962, 49.702908123000022 ], [ -125.007022870999933, 49.701883347000042 ], [ -125.00650296699996, 49.701878613000062 ], [ -125.006570735999958, 49.698744434000055 ], [ -125.007442537999935, 49.698289143000096 ], [ -125.00844109799999, 49.698298227000059 ], [ -125.008452678999944, 49.697761584000041 ], [ -125.011930610999983, 49.695945024000132 ], [ -125.015081559999956, 49.69465178600008 ], [ -125.015145698, 49.694622139000053 ], [ -125.014602241999967, 49.694192472000104 ], [ -125.015550914999935, 49.694201040000095 ], [ -125.015550079999954, 49.694239949000071 ], [ -125.016775969999927, 49.694251009000077 ], [ -125.016748829999969, 49.695519415000014 ], [ -125.018205868999985, 49.695532542000116 ], [ -125.01823322499996, 49.694252177000102 ], [ -125.020689477999895, 49.694274265000054 ], [ -125.020700456000029, 49.693759037000078 ], [ -125.025170361999969, 49.693799090000034 ], [ -125.025204570999975, 49.692186447000061 ], [ -125.030745807999949, 49.692235845000042 ], [ -125.03071759599996, 49.693573394000055 ], [ -125.030669927999966, 49.695833209000106 ], [ -125.026596291999937, 49.695796922000085 ], [ -125.02619982, 49.695793382000069 ], [ -125.026195158999926, 49.696013322000098 ], [ -125.026165643999946, 49.697406018000031 ], [ -125.025902801999948, 49.69740367000005 ], [ -125.025876904999933, 49.69862522200004 ], [ -125.024725771999968, 49.698614934000027 ], [ -125.024676294999963, 49.700945846000074 ], [ -125.023417479999978, 49.700934581000062 ], [ -125.023384811999961, 49.702471518000067 ], [ -125.027361765999956, 49.702507056000066 ], [ -125.027347382999949, 49.703186463000037 ], [ -125.028075282999964, 49.703192951000034 ], [ -125.02807680799998, 49.70312085300003 ], [ -125.027560704000038, 49.703116252000065 ], [ -125.027592855999956, 49.701597177000025 ], [ -125.025837430999985, 49.701581512000082 ], [ -125.025913697999925, 49.69798417900008 ], [ -125.031455633999926, 49.698033541000029 ], [ -125.031445857999969, 49.698497353000107 ], [ -125.033282609, 49.698513651000134 ], [ -125.033303932999956, 49.697500063000085 ], [ -125.033847208999973, 49.697504878000075 ], [ -125.03385086899999, 49.697330846000071 ], [ -125.033396181999947, 49.69732681700004 ], [ -125.033440793999958, 49.695206005000045 ], [ -125.032877292999956, 49.695201009000115 ], [ -125.032901068999976, 49.694071316000084 ], [ -125.030991490999966, 49.69405436200001 ], [ -125.03100490099996, 49.693418374000039 ], [ -125.031067341, 49.690456989000076 ], [ -125.033483544999939, 49.690478433000102 ], [ -125.033484446999964, 49.690435549000028 ], [ -125.034322439, 49.690442974000057 ], [ -125.034323114999907, 49.690410770000078 ], [ -125.035106116999955, 49.690417703000087 ], [ -125.035106183999943, 49.690414490000144 ], [ -125.035221766999911, 49.69041551300009 ], [ -125.036675521999925, 49.691324601000034 ], [ -125.037237898999962, 49.691818805000032 ], [ -125.037560405999898, 49.691939798000064 ], [ -125.037947988999946, 49.691905597000073 ], [ -125.038370591999922, 49.691727610000058 ], [ -125.039014804999951, 49.691203502000107 ], [ -125.039230789999948, 49.690740601000122 ], [ -125.039363791999904, 49.689945903000115 ], [ -125.039815508999979, 49.68945310700007 ], [ -125.039987697999962, 49.688964613000032 ], [ -125.039992106999989, 49.688960642000062 ], [ -125.044095194999954, 49.688996692000025 ], [ -125.044092617999979, 49.689120493000054 ], [ -125.047807260999946, 49.689152997000051 ], [ -125.047784825999926, 49.690235810000054 ], [ -125.048194811999977, 49.690239390000045 ], [ -125.048174419999938, 49.691224016000064 ], [ -125.04896014399999, 49.691230873000087 ], [ -125.04894797299994, 49.691818934000025 ], [ -125.048986778999975, 49.691819273000092 ], [ -125.048976424, 49.692319614000063 ], [ -125.049728325999979, 49.692326170000086 ], [ -125.049729292999956, 49.692279462000094 ], [ -125.055270565999933, 49.692327613000081 ], [ -125.055267044999951, 49.692498907000122 ], [ -125.057087808999981, 49.692514667000083 ], [ -125.05702738299999, 49.695459424000092 ], [ -125.057013990000016, 49.696112048000032 ], [ -125.056004862999927, 49.696103317000066 ], [ -125.055987499999958, 49.696948472000066 ], [ -125.055075032999952, 49.696940569000098 ], [ -125.05507426399997, 49.696977994000058 ], [ -125.053962097999886, 49.696968351000059 ], [ -125.053958032, 49.697165821000077 ], [ -125.052887924999979, 49.697156532000086 ], [ -125.052877218, 49.69767594800004 ], [ -125.048837446999983, 49.697640787000033 ], [ -125.04882948, 49.698025648000048 ], [ -125.047643983999961, 49.698015301000055 ], [ -125.047635354999926, 49.698431576000047 ], [ -125.046369199999972, 49.698420512000055 ], [ -125.046364218999898, 49.698660508000039 ], [ -125.0461, 49.698658198000039 ], [ -125.046075477999977, 49.699839413000127 ], [ -125.041084349, 49.69979564100003 ], [ -125.04105356499997, 49.7012706350001 ], [ -125.03707990299992, 49.70123562300013 ], [ -125.035511227999919, 49.70122176100007 ], [ -125.035513413999951, 49.701117636000014 ], [ -125.035305167, 49.701115794000039 ], [ -125.035283885999903, 49.702129377000034 ], [ -125.034277012999922, 49.702120466000075 ], [ -125.03425582899996, 49.703128263000103 ], [ -125.038037593999917, 49.703161683000069 ], [ -125.038030721, 49.703489893000047 ], [ -125.03922534699997, 49.703500423000051 ], [ -125.039233563999957, 49.703107426000017 ], [ -125.03949520799992, 49.703109731000062 ], [ -125.044776132999971, 49.703156110000052 ], [ -125.044753192999949, 49.704259426000078 ], [ -125.04486559799993, 49.704260411000057 ], [ -125.04484619599998, 49.705193668000106 ], [ -125.046674885999934, 49.705209667000119 ], [ -125.046647663999977, 49.706521466 ], [ -125.047401437999952, 49.70652805100007 ], [ -125.047343444999967, 49.709324613000064 ], [ -125.049714919999971, 49.709345298000059 ], [ -125.049687082999952, 49.710690984000109 ], [ -125.050044090999947, 49.710694094000118 ], [ -125.05002382899994, 49.711673850000054 ], [ -125.051151808999961, 49.711683667000116 ], [ -125.051077494999944, 49.715280947000039 ], [ -125.050128869999952, 49.715272692000092 ], [ -125.05007830000001, 49.717717867000019 ], [ -125.045039291999942, 49.717673877000109 ], [ -125.045026153999927, 49.718305796000045 ], [ -125.046764482999933, 49.718320997000028 ], [ -125.046748883999925, 49.71907256700014 ], [ -125.048603159999971, 49.719088752000097 ], [ -125.04857448, 49.720473197000096 ], [ -125.049324717999951, 49.720479737000105 ], [ -125.04931409299995, 49.72099296500005 ], [ -125.050078019999944, 49.720999618000128 ], [ -125.050030048999986, 49.723318713000054 ], [ -125.053082746999962, 49.72334524700009 ], [ -125.053075027999981, 49.723719555000045 ], [ -125.055683964, 49.723742164000036 ], [ -125.055695816999958, 49.723165691000112 ], [ -125.059410566999986, 49.723197775000123 ], [ -125.059472946999904, 49.720151978000054 ], [ -125.065017592999965, 49.720199632000096 ], [ -125.06494435299993, 49.723796878 ], [ -125.061229549999922, 49.723764982000034 ], [ -125.061228838999924, 49.723799817000071 ], [ -125.064191146999931, 49.723825262000098 ], [ -125.064159311999987, 49.725387402000088 ], [ -125.066296761999951, 49.725405712000061 ], [ -125.066266002999924, 49.726918419000114 ], [ -125.068190281999961, 49.72693486700004 ], [ -125.068180449999929, 49.727419371000067 ], [ -125.07316752199992, 49.727461840000039 ], [ -125.073125303, 49.729553391000131 ], [ -125.074341705999927, 49.729563716000058 ], [ -125.074323640999978, 49.730459791000065 ], [ -125.078054964000017, 49.730491376000018 ], [ -125.078072243999927, 49.729630768000064 ], [ -125.078954833999958, 49.72963822100008 ], [ -125.078962532, 49.729254490000137 ], [ -125.084508296999942, 49.72930115300008 ], [ -125.084492039999986, 49.730116539000107 ], [ -125.088066211999916, 49.730146463000104 ], [ -125.087994761999951, 49.733743675000063 ], [ -125.087326748999914, 49.733738091000063 ], [ -125.087288552999951, 49.73565946700004 ], [ -125.087520112999982, 49.735661403000094 ], [ -125.087542374999941, 49.734541318000062 ], [ -125.091952791999987, 49.734578100000064 ], [ -125.09080808499999, 49.73540487700005 ], [ -125.0905997509999, 49.735555344000076 ], [ -125.090356306999979, 49.735731183000013 ], [ -125.090114129999961, 49.735906076000084 ], [ -125.090035502000021, 49.735962847000039 ], [ -125.088792011999942, 49.736860888000145 ], [ -125.088512828999924, 49.737016584000052 ], [ -125.088420302999964, 49.737068193000063 ], [ -125.087994796999965, 49.737195103000047 ], [ -125.087581810999922, 49.737251889000049 ], [ -125.087439555999964, 49.737253807000073 ], [ -125.087209983999941, 49.737256909000081 ], [ -125.086757488000018, 49.737204607000116 ], [ -125.086291304999946, 49.737072908000144 ], [ -125.086215597999981, 49.737034602000101 ], [ -125.085931603999953, 49.73689090400007 ], [ -125.085620947999956, 49.736630894000058 ], [ -125.085609077999948, 49.736620936000072 ], [ -125.08552916599993, 49.736554031000018 ], [ -125.085485492999965, 49.736517505000052 ], [ -125.085162404999934, 49.736309689000038 ], [ -125.083748380999964, 49.735817550000071 ] ], [ [ -125.042019282999959, 49.713012491000065 ], [ -125.042024382999927, 49.712767976000052 ], [ -125.040395309999937, 49.712753658000089 ], [ -125.04042854799998, 49.711162652000105 ], [ -125.039746082999926, 49.711156646000056 ], [ -125.039774935999972, 49.709776375000096 ], [ -125.039578461999966, 49.709774645000017 ], [ -125.039606907999911, 49.708414014000077 ], [ -125.038885918999981, 49.70840766400007 ], [ -125.038843919999962, 49.710414966000023 ], [ -125.033300482999934, 49.710365981000081 ], [ -125.033324477999912, 49.709225715000095 ], [ -125.032427418999973, 49.709217762000065 ], [ -125.032480226999894, 49.706710509000096 ], [ -125.032419270999952, 49.706709968000041 ], [ -125.032451816999981, 49.705164736000071 ], [ -125.030531706999952, 49.705147685 ], [ -125.030496573999926, 49.706812485000079 ], [ -125.026593239999926, 49.706777720000055 ], [ -125.026583322999912, 49.70724573600004 ], [ -125.026523010999966, 49.710091876000028 ], [ -125.025402640999985, 49.710081872000039 ], [ -125.025399473999983, 49.710231104000066 ], [ -125.024403795999959, 49.710222203000058 ], [ -125.024396555999957, 49.710563129000043 ], [ -125.023248969999926, 49.710552859000039 ], [ -125.023219059999931, 49.711959460000109 ], [ -125.024102369999952, 49.711967365000056 ], [ -125.02405129, 49.714371529000111 ], [ -125.027360992999917, 49.714401086000123 ], [ -125.027316428999939, 49.716505482000045 ], [ -125.027630912999953, 49.716508285000074 ], [ -125.027581555999973, 49.71883951100007 ], [ -125.02791776199993, 49.718842507 ], [ -125.027918880999934, 49.718789683000111 ], [ -125.028354088999919, 49.718793560000051 ], [ -125.02837341599998, 49.717879992000114 ], [ -125.033145911999938, 49.717922390000084 ], [ -125.03317129499996, 49.716716609000073 ], [ -125.034160278999977, 49.716725369000059 ], [ -125.034171687999972, 49.716182832000086 ], [ -125.035001722999965, 49.716190178000062 ], [ -125.035015191999932, 49.715549152000051 ], [ -125.037380836999915, 49.715570051000029 ], [ -125.039537552999917, 49.715589060000056 ], [ -125.039555861999958, 49.714713464000155 ], [ -125.040149847999885, 49.714718692000076 ], [ -125.040185838999918, 49.712996375000017 ], [ -125.042019282999959, 49.713012491000065 ] ], [ [ -125.041736488999931, 49.695021925000042 ], [ -125.0417398499999, 49.694860756000018 ], [ -125.03960669199995, 49.694841989000075 ], [ -125.039599144999912, 49.695203086000063 ], [ -125.038983601999959, 49.695197663000037 ], [ -125.038982558999976, 49.695247551000108 ], [ -125.040892067999948, 49.695264363000049 ], [ -125.040897280999943, 49.695014547000021 ], [ -125.041736488999931, 49.695021925000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.993088263170942", "sL_AssetLoss": "1371.58", "sL_BldgLoss": "1362.1", "sL_StrLoss": "1287", "sL_NStrLoss": "75.1", "sL_ContLoss": "9.48", "geom_point": "0101000020E6100000172ADE4C75435FC09831056B1CDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.051299777999986, 49.709982047000068 ], [ -125.056843187999959, 49.710030117000024 ], [ -125.056769322999941, 49.7136274100001 ], [ -125.051225478999953, 49.713579335000055 ], [ -125.051299777999986, 49.709982047000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993090149445605", "sL_AssetLoss": "373.38", "sL_BldgLoss": "370.8", "sL_StrLoss": "350", "sL_NStrLoss": "20.8", "sL_ContLoss": "2.58", "geom_point": "0101000020E61000003C8A10AA56455FC09D92DEFD12D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.082715033999975, 49.696111454000047 ], [ -125.08269197599995, 49.695572139 ], [ -125.08186056299999, 49.695587093 ], [ -125.08184543099999, 49.695233012000095 ], [ -125.081825990999974, 49.694778121000112 ], [ -125.08224169, 49.694770644000116 ], [ -125.082230163999924, 49.694500987000019 ], [ -125.08292174499995, 49.69448854600013 ], [ -125.083058126999973, 49.694602923000126 ], [ -125.083716203999984, 49.695154794000075 ], [ -125.083870582999936, 49.695125509000029 ], [ -125.084467033999942, 49.695673109000012 ], [ -125.085015004999917, 49.696176225000045 ], [ -125.085063989999952, 49.696221208000082 ], [ -125.085444084999892, 49.696602056000081 ], [ -125.085232382999962, 49.696605869000031 ], [ -125.085243925999976, 49.696875526000063 ], [ -125.082333904999956, 49.696927904000098 ], [ -125.08229932399999, 49.696118931000051 ], [ -125.082715033999975, 49.696111454000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.989949252836262", "sL_AssetLoss": "5269.26", "sL_BldgLoss": "5216.3", "sL_StrLoss": "4884", "sL_NStrLoss": "332.3", "sL_ContLoss": "52.96", "geom_point": "0101000020E6100000658396BF4C445FC0E5D78B781DD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.064464630999964, 49.699814910000022 ], [ -125.064494839999981, 49.698331230000036 ], [ -125.064481321999935, 49.698331114000077 ], [ -125.064492030999958, 49.697805194000033 ], [ -125.064331048999932, 49.697803813000149 ], [ -125.064332153999928, 49.697749521000048 ], [ -125.062229171999931, 49.697731459000103 ], [ -125.06226812599995, 49.695822653000043 ], [ -125.062302583999937, 49.694134081000129 ], [ -125.063564678999953, 49.694144927000139 ], [ -125.063596775999955, 49.692569775000017 ], [ -125.064216205999927, 49.692978091000079 ], [ -125.064780810999977, 49.69357049900006 ], [ -125.065684698999959, 49.693644600000042 ], [ -125.065907205999949, 49.693623207000059 ], [ -125.066667795999976, 49.69328570200004 ], [ -125.067450721999961, 49.693109101000083 ], [ -125.06829987, 49.692993906000076 ], [ -125.068899979999941, 49.692912493000044 ], [ -125.070245107999966, 49.692933888000049 ], [ -125.071000506999923, 49.693090597000023 ], [ -125.07191679, 49.693460101000056 ], [ -125.071881026999975, 49.695230877000036 ], [ -125.071493529999955, 49.695227578000043 ], [ -125.071461802999963, 49.696797684000046 ], [ -125.071455464999985, 49.696797630000056 ], [ -125.071453372999926, 49.69690111100001 ], [ -125.071429877999961, 49.698063781 ], [ -125.070043469000012, 49.698051967000019 ], [ -125.070006828999979, 49.699862312000022 ], [ -125.064464630999964, 49.699814910000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16454333", "BldgCostT": "11138333", "sL_LossRatio": "0.852122780130117", "sL_AssetLoss": "10837.91", "sL_BldgLoss": "9235.23", "sL_StrLoss": "8176.13", "sL_NStrLoss": "1059.1", "sL_ContLoss": "1602.68", "geom_point": "0101000020E6100000B8FA779E74455FC07FED91B4B8DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.082810972999965, 49.715631443000049 ], [ -125.082855483999964, 49.713402329000054 ], [ -125.07945198199999, 49.713373663000048 ], [ -125.07949232699994, 49.711360507000116 ], [ -125.079000386999937, 49.711356355000071 ], [ -125.079053100999971, 49.708727142000114 ], [ -125.078782538999974, 49.708724857000092 ], [ -125.078854672999981, 49.705127525000051 ], [ -125.079235049999951, 49.70513073700004 ], [ -125.079248897999932, 49.704439733000079 ], [ -125.083162663999943, 49.704472702000047 ], [ -125.083175379999943, 49.703835530000013 ], [ -125.088718079999978, 49.703881981000016 ], [ -125.088715753999963, 49.703999285000087 ], [ -125.091200492999988, 49.704020017000097 ], [ -125.091195586999945, 49.704268025 ], [ -125.092240396999927, 49.704276726000053 ], [ -125.092716482999933, 49.704812286000042 ], [ -125.093152131999886, 49.70538393600004 ], [ -125.093535173999939, 49.705886516000135 ], [ -125.093495738999977, 49.707885103000059 ], [ -125.093075556999935, 49.707881610000072 ], [ -125.093052588999939, 49.709045010000104 ], [ -125.089617851999932, 49.709016399000113 ], [ -125.08960847899999, 49.709489396000073 ], [ -125.086220495999939, 49.709461068000081 ], [ -125.08620917599994, 49.710030181000079 ], [ -125.085063549999958, 49.710020577000108 ], [ -125.085023084999932, 49.712052116000095 ], [ -125.088426492999929, 49.712080609000083 ], [ -125.088355096999962, 49.715677912000025 ], [ -125.082810972999965, 49.715631443000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.990503032902396", "sL_AssetLoss": "816.05", "sL_BldgLoss": "808.3", "sL_StrLoss": "780", "sL_NStrLoss": "28.3", "sL_ContLoss": "7.75", "geom_point": "0101000020E6100000229C604903455FC068818F2435D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.077818509999943, 49.698358355000039 ], [ -125.07779550399999, 49.697819038000077 ], [ -125.077379775999972, 49.69782649900003 ], [ -125.07736827799998, 49.697556841000143 ], [ -125.076536826999984, 49.697571757000055 ], [ -125.076525331999946, 49.697302099000098 ], [ -125.075693886999957, 49.697317009000059 ], [ -125.075674705999958, 49.696866888000081 ], [ -125.07564792299992, 49.696238375000107 ], [ -125.078142202999928, 49.696193628000074 ], [ -125.078130699999932, 49.695923970000059 ], [ -125.080624958999962, 49.695879170000126 ], [ -125.080682549999963, 49.697227459000132 ], [ -125.079851107999929, 49.697242399000054 ], [ -125.079861599999958, 49.697488129000057 ], [ -125.079874135999944, 49.697781714000108 ], [ -125.079042683999916, 49.697796649000097 ], [ -125.079065702999955, 49.698335964000087 ], [ -125.077818509999943, 49.698358355000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99131299263853", "sL_AssetLoss": "422.47", "sL_BldgLoss": "418.8", "sL_StrLoss": "405", "sL_NStrLoss": "13.8", "sL_ContLoss": "3.67", "geom_point": "0101000020E6100000C336772E6B425FC03BBA19875DD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.038554333999954, 49.688947972000051 ], [ -125.03919946299996, 49.68895365900007 ], [ -125.039015722999977, 49.68925090000004 ], [ -125.03853031700001, 49.691229096000079 ], [ -125.038263010999941, 49.691476900000097 ], [ -125.037921314999934, 49.691600907000065 ], [ -125.037433500999967, 49.69151821300008 ], [ -125.037040409999946, 49.691075304000059 ], [ -125.035889901999923, 49.690336233000082 ], [ -125.035892664999963, 49.690204510000157 ], [ -125.036607295999971, 49.690210826000083 ], [ -125.036611147999949, 49.690027126000111 ], [ -125.037278633, 49.690033022000073 ], [ -125.037288547999978, 49.689559742000071 ], [ -125.037919545999969, 49.689565312000092 ], [ -125.037925138999952, 49.689298158000071 ], [ -125.038546892999975, 49.689303642000056 ], [ -125.038554333999954, 49.688947972000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.98192418356618", "sL_AssetLoss": "1588.31", "sL_BldgLoss": "1559.6", "sL_StrLoss": "1417", "sL_NStrLoss": "142.6", "sL_ContLoss": "28.71", "geom_point": "0101000020E6100000A503060743425FC0183B866CC5CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.032119486999989, 49.615566466000075 ], [ -125.032129071999975, 49.615110520000023 ], [ -125.032501142999976, 49.61511382700008 ], [ -125.032501256999936, 49.615108429000138 ], [ -125.038033222999928, 49.615157462000113 ], [ -125.038031466999911, 49.615241532000063 ], [ -125.038350717999961, 49.615244354000062 ], [ -125.038340141999967, 49.615750670000132 ], [ -125.032119486999989, 49.615566466000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93499472", "BldgCostT": "57066371", "sL_LossRatio": "0.906723369712798", "sL_AssetLoss": "72583.99", "sL_BldgLoss": "65813.6", "sL_StrLoss": "56962.5", "sL_NStrLoss": "8851.1", "sL_ContLoss": "6770.39", "geom_point": "0101000020E61000004C272BE995415FC0D13538B643D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.019694995999927, 49.628958574000102 ], [ -125.021155122999957, 49.627965954000018 ], [ -125.020444671999968, 49.62773557500001 ], [ -125.020111589999956, 49.627588624000055 ], [ -125.020047170999945, 49.627541656000105 ], [ -125.019781843999937, 49.627348174000062 ], [ -125.019022057999976, 49.626642344000075 ], [ -125.018992275999935, 49.626547627000036 ], [ -125.01901756299992, 49.626464172000034 ], [ -125.020017868999986, 49.62529526800008 ], [ -125.020877720999962, 49.62429040500006 ], [ -125.021010230999977, 49.624173751000036 ], [ -125.022801819999984, 49.62287549600007 ], [ -125.022926061999925, 49.622880367000022 ], [ -125.024646043999951, 49.622947709000115 ], [ -125.024799308999917, 49.622953716000048 ], [ -125.024833608999927, 49.622942106000046 ], [ -125.025058492999932, 49.622866102000117 ], [ -125.025279695999927, 49.622807803000036 ], [ -125.026818693999957, 49.622650587000116 ], [ -125.028248114999926, 49.622504149000079 ], [ -125.028729215999988, 49.622454486000045 ], [ -125.029549662999941, 49.622387142000029 ], [ -125.030295525999932, 49.622313709000053 ], [ -125.030170181999964, 49.621781011000103 ], [ -125.030094897999973, 49.621460899000049 ], [ -125.030961418999951, 49.621381628000037 ], [ -125.031869094999976, 49.621298598000045 ], [ -125.032066107999967, 49.622127942000112 ], [ -125.03226088599996, 49.622881241000087 ], [ -125.032299376999973, 49.623029967000122 ], [ -125.032310480999968, 49.623072920000034 ], [ -125.032409970999979, 49.623435737000108 ], [ -125.032492957999949, 49.623738431000042 ], [ -125.032922829999933, 49.624436345000071 ], [ -125.032938958999949, 49.624462546000053 ], [ -125.033058253999954, 49.624786438000093 ], [ -125.033181320999944, 49.62512059400013 ], [ -125.033410772999929, 49.625743616000079 ], [ -125.031966844999886, 49.6257689790001 ], [ -125.031945977999939, 49.626761056000056 ], [ -125.031275189, 49.626755089000056 ], [ -125.031256404, 49.627647571000082 ], [ -125.027049993000034, 49.627610062000066 ], [ -125.027047154999948, 49.627744314000012 ], [ -125.027451042, 49.627737239000098 ], [ -125.027462237999913, 49.628006909000113 ], [ -125.028292529999973, 49.627992359000103 ], [ -125.028332945000031, 49.628965376000103 ], [ -125.028337333999943, 49.629071039000024 ], [ -125.027091869999978, 49.629092861000096 ], [ -125.027080674999979, 49.628823191000031 ], [ -125.027024325999932, 49.628824178000137 ], [ -125.026991695999982, 49.630367571000093 ], [ -125.025511850999919, 49.630354337000071 ], [ -125.025505851999981, 49.63063760800005 ], [ -125.025449878999908, 49.63063710700002 ], [ -125.025447881000034, 49.630731517000108 ], [ -125.025426814999975, 49.631726306000047 ], [ -125.021053103, 49.631687071000073 ], [ -125.020829194999962, 49.631685058000166 ], [ -125.020828110999929, 49.631735986000095 ], [ -125.020809084999968, 49.632630119000034 ], [ -125.015275035999935, 49.632580213000054 ], [ -125.015283147999952, 49.632201180000074 ], [ -125.015308637999965, 49.63100990800006 ], [ -125.01732395, 49.630487195000057 ], [ -125.01774454400001, 49.63035964800018 ], [ -125.018066163999933, 49.630202410000088 ], [ -125.018376259999968, 49.630001008000121 ], [ -125.019694995999927, 49.628958574000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36004410", "BldgCostT": "22020742", "sL_LossRatio": "0.777500671449948", "sL_AssetLoss": "26063", "sL_BldgLoss": "20264", "sL_StrLoss": "15417.5", "sL_NStrLoss": "4846.5", "sL_ContLoss": "5799", "geom_point": "0101000020E6100000309EA46D7A445FC04736C26877D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.067561564999977, 49.632374761000065 ], [ -125.067568599999973, 49.632027594000071 ], [ -125.06689662099997, 49.632021838000071 ], [ -125.066768554999953, 49.632020740000023 ], [ -125.066770648000016, 49.631917565000023 ], [ -125.066779500999942, 49.631481007000048 ], [ -125.066748586999935, 49.631480742000107 ], [ -125.066821539999978, 49.627883023000059 ], [ -125.068222931999969, 49.627895025000022 ], [ -125.068223586999949, 49.627862657000023 ], [ -125.068232958999943, 49.627862737000051 ], [ -125.068260466000012, 49.626504055000105 ], [ -125.068315881999979, 49.62650452900008 ], [ -125.068323484999979, 49.626128856000015 ], [ -125.068688395999956, 49.626131978000046 ], [ -125.068707425999946, 49.625191463000107 ], [ -125.069212044000011, 49.625195779000137 ], [ -125.069215241999984, 49.625037655 ], [ -125.069545726999962, 49.625072683000084 ], [ -125.072452139999911, 49.625163468000082 ], [ -125.075148079999963, 49.625444425000083 ], [ -125.074101592999938, 49.626171205000055 ], [ -125.072898113999955, 49.626832102000051 ], [ -125.07225921499996, 49.627473009000127 ], [ -125.072235890999963, 49.627564101000083 ], [ -125.072253005999954, 49.627653809000108 ], [ -125.072441282999975, 49.627803401000065 ], [ -125.07208809299999, 49.628313291000083 ], [ -125.072136607999951, 49.628815988000063 ], [ -125.072282303999884, 49.628984110000076 ], [ -125.072191805999978, 49.62945409000006 ], [ -125.071626921999922, 49.63048940000003 ], [ -125.071240799999927, 49.632195687000063 ], [ -125.071328879999953, 49.632406956000047 ], [ -125.067561564999977, 49.632374761000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59182333", "BldgCostT": "37693333", "sL_LossRatio": "0.858574061772461", "sL_AssetLoss": "42641.202", "sL_BldgLoss": "36610.63", "sL_StrLoss": "32718.23", "sL_NStrLoss": "3892.4", "sL_ContLoss": "6030.572", "geom_point": "0101000020E610000011AEBAED86435FC07119EDA735CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.05634754099998, 49.622383697000011 ], [ -125.056368802999927, 49.621346562000085 ], [ -125.052827669999914, 49.621315809000073 ], [ -125.052832391999971, 49.621086331000107 ], [ -125.052253663999963, 49.621081294000113 ], [ -125.052260625999935, 49.620743106000063 ], [ -125.051672059999945, 49.620737981000062 ], [ -125.051675136999961, 49.620588616000141 ], [ -125.051130248999968, 49.620583868000089 ], [ -125.051133567999955, 49.620422823000141 ], [ -125.050563437999983, 49.620417852000038 ], [ -125.050578006999928, 49.619711470000048 ], [ -125.048369341999972, 49.619692184000087 ], [ -125.048368510999964, 49.619732363000026 ], [ -125.046894899999941, 49.619719470000106 ], [ -125.046815279, 49.618783658000034 ], [ -125.046735045999981, 49.617840256000129 ], [ -125.046685962999902, 49.617342294000139 ], [ -125.046650653, 49.616963867000059 ], [ -125.046746947999964, 49.616142871000115 ], [ -125.046761041999957, 49.616015325000077 ], [ -125.049818723999962, 49.616042060000076 ], [ -125.049817394999948, 49.616106417000076 ], [ -125.05346139, 49.616138166000034 ], [ -125.053446864999927, 49.61684455400006 ], [ -125.055035004999951, 49.616858352000058 ], [ -125.05505070599996, 49.616093397000064 ], [ -125.060582814999961, 49.616141283000047 ], [ -125.060582448, 49.616159242000016 ], [ -125.061344314999957, 49.616165815000066 ], [ -125.061350778999923, 49.616236672000142 ], [ -125.061568087999945, 49.616240870000105 ], [ -125.061515307999969, 49.618829976000058 ], [ -125.06195372599997, 49.618833755 ], [ -125.06188040699999, 49.622431517000088 ], [ -125.059835881999945, 49.622413879000135 ], [ -125.057282761999957, 49.622391800000095 ], [ -125.05634754099998, 49.622383697000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.992052464847441", "sL_AssetLoss": "359.86", "sL_BldgLoss": "357", "sL_StrLoss": "335", "sL_NStrLoss": "22", "sL_ContLoss": "2.86", "geom_point": "0101000020E610000005B6F7670E455FC027AF63961CD04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.080124507999983, 49.62614418800009 ], [ -125.07614522199998, 49.62571270500009 ], [ -125.075876615999988, 49.625520337000083 ], [ -125.078399513999969, 49.625783179000038 ], [ -125.080786692999951, 49.625681406000034 ], [ -125.080754439000017, 49.62610178700001 ], [ -125.080733856999984, 49.626360817000069 ], [ -125.080124507999983, 49.62614418800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25318501", "BldgCostT": "15990001", "sL_LossRatio": "0.973326663701665", "sL_AssetLoss": "20550.86", "sL_BldgLoss": "20002.7", "sL_StrLoss": "18485.8", "sL_NStrLoss": "1516.9", "sL_ContLoss": "548.16", "geom_point": "0101000020E610000005947EA97C435FC0D77CAE198DD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.053296098999937, 49.639695424000067 ], [ -125.053284754999964, 49.639425758000108 ], [ -125.052454282999946, 49.639440489000087 ], [ -125.052408927999949, 49.638361829000125 ], [ -125.051578473999882, 49.638376553000057 ], [ -125.0515558069999, 49.637837222000037 ], [ -125.050725359999916, 49.637851940000076 ], [ -125.050714031000012, 49.637582275000128 ], [ -125.050298808999969, 49.637589632000108 ], [ -125.050292081999913, 49.637429431000029 ], [ -125.050253505999976, 49.636510969000035 ], [ -125.05066871799994, 49.636503613000116 ], [ -125.050634733999956, 49.635694615000034 ], [ -125.051049938999981, 49.635687258000118 ], [ -125.051038607999956, 49.635417592000103 ], [ -125.051869012999958, 49.635402872000029 ], [ -125.051857679999941, 49.635133207000102 ], [ -125.052272878999986, 49.635125845000069 ], [ -125.052261542999986, 49.634856180000028 ], [ -125.053091936999976, 49.634841451000085 ], [ -125.053080596999962, 49.634571786000087 ], [ -125.05349579099996, 49.634564420000054 ], [ -125.053484447999921, 49.634294755000091 ], [ -125.054730023, 49.634272647000024 ], [ -125.054741372999956, 49.634542311000082 ], [ -125.055156566999969, 49.63453494000003 ], [ -125.055167918, 49.634804604000109 ], [ -125.055998311999957, 49.634789855000108 ], [ -125.056021023999932, 49.635329185000018 ], [ -125.056436225999974, 49.635321807000039 ], [ -125.056458945999978, 49.635861137000099 ], [ -125.056874149999928, 49.635853758000088 ], [ -125.056885511999951, 49.636123422000033 ], [ -125.05771592499994, 49.63610866100003 ], [ -125.057738657999934, 49.636647989000103 ], [ -125.058153869999956, 49.636640607000047 ], [ -125.058165238999933, 49.636910270000037 ], [ -125.058580452999976, 49.636902886000016 ], [ -125.058601012999972, 49.637390415000041 ], [ -125.058603197, 49.63744221300005 ], [ -125.059018413999965, 49.63743482800006 ], [ -125.05906391399999, 49.638513484000079 ], [ -125.05781823299999, 49.638535640000029 ], [ -125.057829601999941, 49.638805304000087 ], [ -125.056583912999912, 49.638827447000025 ], [ -125.056606636999931, 49.639366776000045 ], [ -125.055360931999928, 49.639388905000033 ], [ -125.055372287999973, 49.639658570000044 ], [ -125.053296098999937, 49.639695424000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11642494", "BldgCostT": "6844076", "sL_LossRatio": "0.662163499298087", "sL_AssetLoss": "6468.04", "sL_BldgLoss": "4282.9", "sL_StrLoss": "2984.9", "sL_NStrLoss": "1298", "sL_ContLoss": "2185.14", "geom_point": "0101000020E6100000B5A7C38EEF425FC0AB93331477D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.044923516, 49.638224467000036 ], [ -125.044912219999929, 49.637954800000109 ], [ -125.044496994999975, 49.637962136000091 ], [ -125.04446311, 49.637153136000066 ], [ -125.044878329, 49.637145801000074 ], [ -125.044867032999932, 49.636876134000019 ], [ -125.045282248999982, 49.636868797000041 ], [ -125.04524835399998, 49.636059797000094 ], [ -125.04483314499997, 49.636067134000065 ], [ -125.044810554999941, 49.635527801000066 ], [ -125.044395349999903, 49.635535136000058 ], [ -125.044350178999977, 49.634456470000018 ], [ -125.046010960999951, 49.634427120000062 ], [ -125.046022262999941, 49.634696786000077 ], [ -125.046437461, 49.634689446000031 ], [ -125.046471372999932, 49.635498444000071 ], [ -125.046886576999981, 49.635491102000103 ], [ -125.046909189999923, 49.636030434000098 ], [ -125.047324399, 49.636023090000052 ], [ -125.047403568999925, 49.637910753000057 ], [ -125.04698834499996, 49.637918097000096 ], [ -125.046999652999929, 49.638187764000072 ], [ -125.044923516, 49.638224467000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4341000", "BldgCostT": "2730000", "sL_LossRatio": "0.963690486172835", "sL_AssetLoss": "5962.9", "sL_BldgLoss": "5746.39", "sL_StrLoss": "5226.19", "sL_NStrLoss": "520.2", "sL_ContLoss": "216.51", "geom_point": "0101000020E610000039AD0420E8445FC05C8BBBE6FAD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.077303253999943, 49.656997162000017 ], [ -125.077295218999964, 49.656808478000144 ], [ -125.076049086999902, 49.656830837000086 ], [ -125.076037609999972, 49.656561177000064 ], [ -125.074376103999896, 49.65659096600011 ], [ -125.074330237999945, 49.655512323000053 ], [ -125.07474560499999, 49.655504878000066 ], [ -125.07473413699995, 49.655235218 ], [ -125.076810958999943, 49.655197971000121 ], [ -125.076822437999951, 49.655467632000047 ], [ -125.078068536000032, 49.65544526500004 ], [ -125.078080023999931, 49.655714926000051 ], [ -125.078910758999911, 49.655700008000132 ], [ -125.07895672699999, 49.656778648000035 ], [ -125.078541350999927, 49.656786107000137 ], [ -125.078552840999961, 49.65705576700006 ], [ -125.077847898999934, 49.65706842500007 ], [ -125.077303253999943, 49.656997162000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.987168112868673", "sL_AssetLoss": "462.13", "sL_BldgLoss": "456.2", "sL_StrLoss": "417", "sL_NStrLoss": "39.2", "sL_ContLoss": "5.93", "geom_point": "0101000020E61000001FD93B27A6455FC03DAF805BDAD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.088014177999966, 49.654726540000091 ], [ -125.089879719999914, 49.654692870000048 ], [ -125.088778116999919, 49.655240920000089 ], [ -125.086395345999946, 49.655752476000046 ], [ -125.086387348999921, 49.655565476000071 ], [ -125.08721807699996, 49.655550499000114 ], [ -125.087206538999979, 49.655280840000088 ], [ -125.087621899999988, 49.655273349000069 ], [ -125.087610359999957, 49.65500369100004 ], [ -125.088025719999962, 49.654996198000035 ], [ -125.088014177999966, 49.654726540000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.989772213637749", "sL_AssetLoss": "951.33", "sL_BldgLoss": "941.6", "sL_StrLoss": "852", "sL_NStrLoss": "89.6", "sL_ContLoss": "9.73", "geom_point": "0101000020E6100000D888379DEA455FC0A32E089B70D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09242117399999, 49.65086881800007 ], [ -125.09340627899995, 49.650851005000078 ], [ -125.092649993999942, 49.652387803000053 ], [ -125.092612717999913, 49.652425924000049 ], [ -125.092017293999959, 49.653035052000121 ], [ -125.091683013999926, 49.653041094000095 ], [ -125.091648328999938, 49.652232121000033 ], [ -125.092063664999955, 49.652224615000065 ], [ -125.09202897599998, 49.651415641 ], [ -125.092444303999955, 49.651408132000036 ], [ -125.09242117399999, 49.65086881800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10626000", "BldgCostT": "6855000", "sL_LossRatio": "0.81868147671321", "sL_AssetLoss": "14602.7", "sL_BldgLoss": "11954.96", "sL_StrLoss": "10072.36", "sL_NStrLoss": "1882.6", "sL_ContLoss": "2647.74", "geom_point": "0101000020E6100000695A7B0295445FC0FF4F30295FD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.070339107, 49.638376316000056 ], [ -125.070346964999928, 49.63798734100002 ], [ -125.07020332499999, 49.637986114000057 ], [ -125.07021107199995, 49.637602736000076 ], [ -125.069962038999947, 49.637600610000085 ], [ -125.070034750999966, 49.634002919000054 ], [ -125.070208806999943, 49.634004406000017 ], [ -125.070230605999967, 49.632925521000097 ], [ -125.071569140999941, 49.63293694200005 ], [ -125.072736696, 49.634139701000045 ], [ -125.07338328699997, 49.634676597000123 ], [ -125.073560588999939, 49.63496149700007 ], [ -125.073720799999961, 49.635452811000022 ], [ -125.073474021999957, 49.635826001000076 ], [ -125.073871711999956, 49.636727508000085 ], [ -125.071912205999979, 49.637878201000092 ], [ -125.072151995999917, 49.638297007000119 ], [ -125.072102269999931, 49.63839135300001 ], [ -125.070339107, 49.638376316000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6860000", "BldgCostT": "4025000", "sL_LossRatio": "0.614203153173979", "sL_AssetLoss": "10814.5", "sL_BldgLoss": "6642.3", "sL_StrLoss": "2920.3", "sL_NStrLoss": "3722", "sL_ContLoss": "4172.2", "geom_point": "0101000020E6100000ED3D8D62D6405FC071690434F4D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.010277295999941, 49.632929803000138 ], [ -125.010166205999894, 49.632786096000075 ], [ -125.010074789999962, 49.632667804000057 ], [ -125.010498167999941, 49.632526528000035 ], [ -125.011504310999953, 49.632190838000085 ], [ -125.01228043499998, 49.631931870000123 ], [ -125.012948720999972, 49.631708855000063 ], [ -125.013291096, 49.63159918900007 ], [ -125.013642712999939, 49.631486579000075 ], [ -125.014726167, 49.63146772200016 ], [ -125.014748421999926, 49.632007066000064 ], [ -125.015163605999959, 49.631999837000123 ], [ -125.015171902999953, 49.632200877000045 ], [ -125.015208128, 49.633078524000076 ], [ -125.011471394999958, 49.633143531 ], [ -125.011460283999952, 49.632873858000096 ], [ -125.01062990199992, 49.632888288000032 ], [ -125.010674325999943, 49.633966978000075 ], [ -125.010634876999958, 49.633967662000032 ], [ -125.010649316999917, 49.63381729400006 ], [ -125.010603793999962, 49.633485009000012 ], [ -125.01057274, 49.633419507 ], [ -125.010441014999927, 49.633141599000048 ], [ -125.010277295999941, 49.632929803000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133172168", "BldgCostT": "84321668", "sL_LossRatio": "0.950093507976639", "sL_AssetLoss": "78528.06", "sL_BldgLoss": "74609", "sL_StrLoss": "66126.5", "sL_NStrLoss": "8482.5", "sL_ContLoss": "3919.06", "geom_point": "0101000020E61000001F0CD01154425FC00DC2C351C5CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.033747249000015, 49.621990662000044 ], [ -125.03617919099996, 49.621792010000021 ], [ -125.036080412, 49.621358394000033 ], [ -125.037196580999947, 49.621236985000124 ], [ -125.037108409999931, 49.620889807000047 ], [ -125.039359506999972, 49.620680297 ], [ -125.039228736999974, 49.620243906000084 ], [ -125.04001624199995, 49.620230026000101 ], [ -125.040083822000014, 49.621848035000014 ], [ -125.040498912999951, 49.621840717000076 ], [ -125.040532709999979, 49.622649721000137 ], [ -125.040117614999986, 49.622657039000053 ], [ -125.040143638999965, 49.623280068000035 ], [ -125.040265042, 49.623812164000071 ], [ -125.039339004999974, 49.623907059000075 ], [ -125.039343720999966, 49.624020012000138 ], [ -125.037683285999933, 49.624049261000103 ], [ -125.037739544999951, 49.625397603000067 ], [ -125.037324424999923, 49.625404913000118 ], [ -125.037335674999937, 49.625674581000069 ], [ -125.033410772999929, 49.625743616000079 ], [ -125.033181320999944, 49.62512059400013 ], [ -125.033058253999954, 49.624786438000093 ], [ -125.032938958999949, 49.624462546000053 ], [ -125.032922829999933, 49.624436345000071 ], [ -125.032492957999949, 49.623738431000042 ], [ -125.032409970999979, 49.623435737000108 ], [ -125.032310480999968, 49.623072920000034 ], [ -125.032299376999973, 49.623029967000122 ], [ -125.03226088599996, 49.622881241000087 ], [ -125.032066107999967, 49.622127942000112 ], [ -125.033747249000015, 49.621990662000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "188174334", "BldgCostT": "125168334", "sL_LossRatio": "0.959363206277801", "sL_AssetLoss": "67631.32", "sL_BldgLoss": "64883", "sL_StrLoss": "56747.5", "sL_NStrLoss": "8135.5", "sL_ContLoss": "2748.32", "geom_point": "0101000020E6100000C4DDDE3D99425FC07B7DBD2D1ECF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.037610560999923, 49.619303785000071 ], [ -125.037293175999977, 49.619266798000162 ], [ -125.03552616599994, 49.619419367000077 ], [ -125.035442381999985, 49.619325085000092 ], [ -125.034307485999989, 49.618493673000017 ], [ -125.034323217999926, 49.618080106000043 ], [ -125.034323592999968, 49.618069572000081 ], [ -125.034323945999958, 49.618060562000018 ], [ -125.034347573999966, 49.617437898000048 ], [ -125.034366979999902, 49.617116829000082 ], [ -125.034368032999907, 49.617099718000098 ], [ -125.034380551999973, 49.616892074000056 ], [ -125.034384918999962, 49.616819738000075 ], [ -125.034385768999982, 49.616805760000041 ], [ -125.03446463899995, 49.616671553000025 ], [ -125.034574721999888, 49.616633849000024 ], [ -125.034721589999918, 49.616621670000015 ], [ -125.042551250999935, 49.61707764900008 ], [ -125.043321878999933, 49.617071836000065 ], [ -125.04540692199997, 49.616919205000109 ], [ -125.045851134999936, 49.616909603000096 ], [ -125.046650653, 49.616963867000059 ], [ -125.046685962999902, 49.617342294000139 ], [ -125.046735045999981, 49.617840256000129 ], [ -125.046815279, 49.618783658000034 ], [ -125.046894899999941, 49.619719470000106 ], [ -125.042835983999979, 49.619683856000023 ], [ -125.042864950999927, 49.618290706000025 ], [ -125.042386515999937, 49.618299151000031 ], [ -125.040773682999884, 49.618475069000098 ], [ -125.040778793999934, 49.618597380000026 ], [ -125.039434920999895, 49.618621073000071 ], [ -125.038706259999941, 49.618700534000048 ], [ -125.03872599099995, 49.619173298000149 ], [ -125.039141057999984, 49.61916598500008 ], [ -125.039180498999912, 49.620110773000071 ], [ -125.038622026999988, 49.619890267000088 ], [ -125.038304130999961, 49.61961129000008 ], [ -125.037610560999923, 49.619303785000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "357128939", "BldgCostT": "232009442", "sL_LossRatio": "0.806595626920508", "sL_AssetLoss": "208483.29", "sL_BldgLoss": "168161.71", "sL_StrLoss": "121157.21", "sL_NStrLoss": "47004.5", "sL_ContLoss": "40321.58", "geom_point": "0101000020E61000007F8FC0400C425FC001653A1150CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.032066107999967, 49.622127942000112 ], [ -125.031869094999976, 49.621298598000045 ], [ -125.030961418999951, 49.621381628000037 ], [ -125.030094897999973, 49.621460899000049 ], [ -125.029901900999974, 49.620640496000064 ], [ -125.028165002999955, 49.620807706000114 ], [ -125.027961217999959, 49.619973702000017 ], [ -125.026239521999941, 49.620142695000013 ], [ -125.026050386999927, 49.619272892000033 ], [ -125.02603678, 49.61921308800008 ], [ -125.025854227000011, 49.618412098000107 ], [ -125.025652807999933, 49.61759968500008 ], [ -125.027406226999986, 49.617431862000039 ], [ -125.028612270999972, 49.617317131000064 ], [ -125.028685609000021, 49.617310134000022 ], [ -125.028834156999892, 49.617350164000094 ], [ -125.028927399999958, 49.617412469000044 ], [ -125.029100146999937, 49.617527950000088 ], [ -125.029237998999974, 49.617812558000075 ], [ -125.02930149599996, 49.618082124000125 ], [ -125.030511708999981, 49.61796338400007 ], [ -125.031543994999979, 49.617684698000112 ], [ -125.032819814, 49.617399109000061 ], [ -125.033563103999967, 49.617378782000031 ], [ -125.034174954999983, 49.617424884000037 ], [ -125.034347573999966, 49.617437898000048 ], [ -125.034323945999958, 49.618060562000018 ], [ -125.034323592999968, 49.618069572000081 ], [ -125.034323217999926, 49.618080106000043 ], [ -125.034307485999989, 49.618493673000017 ], [ -125.035442381999985, 49.619325085000092 ], [ -125.03552616599994, 49.619419367000077 ], [ -125.037293175999977, 49.619266798000162 ], [ -125.037610560999923, 49.619303785000071 ], [ -125.038304130999961, 49.61961129000008 ], [ -125.038622026999988, 49.619890267000088 ], [ -125.039180498999912, 49.620110773000071 ], [ -125.039186089999944, 49.620244658000097 ], [ -125.039228736999974, 49.620243906000084 ], [ -125.039359506999972, 49.620680297 ], [ -125.037108409999931, 49.620889807000047 ], [ -125.037196580999947, 49.621236985000124 ], [ -125.036080412, 49.621358394000033 ], [ -125.03617919099996, 49.621792010000021 ], [ -125.033747249000015, 49.621990662000044 ], [ -125.032066107999967, 49.622127942000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142791809", "BldgCostT": "95093643", "sL_LossRatio": "0.921219072576718", "sL_AssetLoss": "124431.64", "sL_BldgLoss": "114628.8", "sL_StrLoss": "98659.7", "sL_NStrLoss": "15969.1", "sL_ContLoss": "9802.84", "geom_point": "0101000020E61000004FBCC9909F415FC0DF5682DE7ECF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.02288748699999, 49.621317303000033 ], [ -125.022704593999904, 49.620483489000044 ], [ -125.022512610999968, 49.619621804000133 ], [ -125.022316704, 49.618749208000089 ], [ -125.02408398399993, 49.618583302000019 ], [ -125.025854227000011, 49.618412098000107 ], [ -125.02603678, 49.61921308800008 ], [ -125.026050386999927, 49.619272892000033 ], [ -125.026239521999941, 49.620142695000013 ], [ -125.027961217999959, 49.619973702000017 ], [ -125.028165002999955, 49.620807706000114 ], [ -125.029901900999974, 49.620640496000064 ], [ -125.030094897999973, 49.621460899000049 ], [ -125.030170181999964, 49.621781011000103 ], [ -125.030295525999932, 49.622313709000053 ], [ -125.029549662999941, 49.622387142000029 ], [ -125.028729215999988, 49.622454486000045 ], [ -125.028248114999926, 49.622504149000079 ], [ -125.026818693999957, 49.622650587000116 ], [ -125.025279695999927, 49.622807803000036 ], [ -125.025058492999932, 49.622866102000117 ], [ -125.024833608999927, 49.622942106000046 ], [ -125.024799308999917, 49.622953716000048 ], [ -125.024646043999951, 49.622947709000115 ], [ -125.022926061999925, 49.622880367000022 ], [ -125.022801819999984, 49.62287549600007 ], [ -125.021412637999902, 49.622816262000093 ], [ -125.021400542999942, 49.622742593000119 ], [ -125.021336938999966, 49.62235649900002 ], [ -125.021322, 49.622265807000048 ], [ -125.021136383999988, 49.621493201000078 ], [ -125.02288748699999, 49.621317303000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28018833", "BldgCostT": "19323333", "sL_LossRatio": "0.983240831246033", "sL_AssetLoss": "23806.67", "sL_BldgLoss": "23407.69", "sL_StrLoss": "21358.89", "sL_NStrLoss": "2048.8", "sL_ContLoss": "398.98", "geom_point": "0101000020E6100000B03A5196CA3F5FC0420BBF8AC2CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.995301717999922, 49.62556059800005 ], [ -124.994982396999987, 49.625361184000063 ], [ -124.99425212099996, 49.625387291000038 ], [ -124.994244979, 49.625180697000118 ], [ -124.994273193999959, 49.619888540000076 ], [ -124.994264004999962, 49.619014466000131 ], [ -124.994247509999965, 49.617513814000056 ], [ -124.994266012999958, 49.617513986000091 ], [ -124.994428947999964, 49.617515491000091 ], [ -124.9944255609999, 49.617670509000035 ], [ -124.994423258999944, 49.617775919000053 ], [ -124.994546471999953, 49.617777057000097 ], [ -124.995089837999956, 49.617782074000061 ], [ -124.995088655999908, 49.617836238000045 ], [ -124.995524725999971, 49.617840263000105 ], [ -124.995524449999934, 49.617852880000036 ], [ -124.996052305999939, 49.617857750000049 ], [ -124.996051352999956, 49.617901493000055 ], [ -124.996933774999931, 49.617909627000095 ], [ -124.99689163499994, 49.619843500000115 ], [ -124.996855375999971, 49.621507349000069 ], [ -124.996683033999958, 49.62150576100003 ], [ -124.996674191999901, 49.621911352000041 ], [ -124.996301876999951, 49.621907920000048 ], [ -124.996278725999957, 49.622969594000075 ], [ -125.000327954999989, 49.623006853000028 ], [ -125.00030114, 49.624241490000088 ], [ -125.000249811999964, 49.62660455100005 ], [ -124.997907255999976, 49.626583014000097 ], [ -124.997942350999921, 49.627440847000095 ], [ -124.99771279, 49.627444810000036 ], [ -124.997663293999977, 49.62971750700008 ], [ -124.997298737, 49.629714150000055 ], [ -124.997379897999949, 49.626833175000094 ], [ -124.995971682999979, 49.626077364000075 ], [ -124.996110057999985, 49.625954310000076 ], [ -124.995301717999922, 49.62556059800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34188667", "BldgCostT": "23106667", "sL_LossRatio": "0.983009739911347", "sL_AssetLoss": "24136.77", "sL_BldgLoss": "23726.68", "sL_StrLoss": "21720.58", "sL_NStrLoss": "2006.1", "sL_ContLoss": "410.09", "geom_point": "0101000020E61000007A1D71C886405FC0E7F4CCFD1BD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.00861112199999, 49.652040665000079 ], [ -125.008621299999945, 49.65156839300009 ], [ -125.008358913, 49.651566004000081 ], [ -125.008152554999953, 49.651564126000032 ], [ -125.007233968999941, 49.651555759000082 ], [ -125.007262920999935, 49.650214284000043 ], [ -125.003833220999979, 49.650182974000117 ], [ -125.00386021099996, 49.648936677000066 ], [ -125.0034387809999, 49.648932822000127 ], [ -125.003380679999964, 49.648349278000083 ], [ -125.007573807999918, 49.648081476000108 ], [ -125.007265910999976, 49.647606805000038 ], [ -125.007187782999949, 49.647512878000107 ], [ -125.006732902999943, 49.646965904000076 ], [ -125.006336206999961, 49.646572281000054 ], [ -125.006009804999948, 49.645982481000011 ], [ -125.004895365999985, 49.643968650000041 ], [ -125.006756786999944, 49.643985641000043 ], [ -125.006727015999914, 49.645364559000051 ], [ -125.00811502, 49.645377209000067 ], [ -125.00808814799997, 49.646623513000108 ], [ -125.009446844999928, 49.646635878000048 ], [ -125.009417958999947, 49.647977360000034 ], [ -125.012847497999957, 49.648008494000074 ], [ -125.012811788999954, 49.649672522000046 ], [ -125.009634978999884, 49.651366095000078 ], [ -125.010040405999959, 49.651633290000113 ], [ -125.01029641400001, 49.651961307000114 ], [ -125.01035920399994, 49.652386480000125 ], [ -125.010329296999927, 49.652685798000107 ], [ -125.010228416999951, 49.652997904000117 ], [ -125.010017001999955, 49.65336480100008 ], [ -125.007010804999936, 49.653989343000021 ], [ -125.006511056999969, 49.653981593000026 ], [ -125.006490011999972, 49.653469867000062 ], [ -125.006840905, 49.65346378200006 ], [ -125.006856241999984, 49.652753484000137 ], [ -125.007346837999975, 49.652757956000094 ], [ -125.007362562999916, 49.652029295000069 ], [ -125.008119365, 49.652036188000103 ], [ -125.00861112199999, 49.652040665000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.939679026009961", "sL_AssetLoss": "72.28", "sL_BldgLoss": "67.92", "sL_StrLoss": "9.32", "sL_NStrLoss": "58.6", "sL_ContLoss": "4.36", "geom_point": "0101000020E610000003829433EF3F5FC033DCE3F94AD04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.998335427999962, 49.626894330000077 ], [ -124.999580856999927, 49.626872818000102 ], [ -124.999613985999972, 49.627681841000047 ], [ -124.998368534999955, 49.627703354000083 ], [ -124.998335427999962, 49.626894330000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157878583", "BldgCostT": "104833333", "sL_LossRatio": "0.925398122627511", "sL_AssetLoss": "121394.13", "sL_BldgLoss": "112337.9", "sL_StrLoss": "98809.7", "sL_NStrLoss": "13528.2", "sL_ContLoss": "9056.23", "geom_point": "0101000020E6100000DD5881080E415FC07F4D9CFD7DCF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.017646994999964, 49.629003265000051 ], [ -125.017651099999981, 49.628810975000071 ], [ -125.01764095799993, 49.628810884000082 ], [ -125.017667379999949, 49.627572967000098 ], [ -125.017414124999931, 49.627570681000087 ], [ -125.017452928, 49.62575303900006 ], [ -125.01739843099989, 49.625753990000085 ], [ -125.017387289999988, 49.625484318000083 ], [ -125.016972162999963, 49.625491554000085 ], [ -125.016961024999929, 49.625221882000098 ], [ -125.016545899999969, 49.625229116000078 ], [ -125.016512495999933, 49.624420101000119 ], [ -125.016927614999958, 49.62441286700011 ], [ -125.016885893999984, 49.623402630000072 ], [ -125.01429703299999, 49.623379220000039 ], [ -125.013147083999968, 49.623399231000093 ], [ -125.013135967999972, 49.623129558000088 ], [ -125.012720860999977, 49.623136779000042 ], [ -125.012731973999962, 49.623406452000097 ], [ -125.012142249999926, 49.623416707000047 ], [ -125.012141696, 49.623442461000046 ], [ -125.011168798999989, 49.623433628000015 ], [ -125.01065642099995, 49.623442532000055 ], [ -125.010655862999954, 49.623428967000038 ], [ -125.009577708999984, 49.623419165000136 ], [ -125.009555053999975, 49.624471923000101 ], [ -125.0089705769999, 49.624466604000084 ], [ -125.004022, 49.624421444000049 ], [ -125.004029007999918, 49.62409758400009 ], [ -125.003279591999927, 49.624090724999988 ], [ -125.003291566, 49.623537749000079 ], [ -125.001814491999966, 49.623524216000106 ], [ -125.001100943, 49.623517671000037 ], [ -125.001179012999941, 49.619919956000089 ], [ -125.002478869999933, 49.619931876000052 ], [ -125.002484776999921, 49.619659289000083 ], [ -125.003551572999982, 49.619669059000103 ], [ -125.003555745999961, 49.619476314000075 ], [ -125.004612593000019, 49.619485984000057 ], [ -125.004627040999978, 49.618817740000118 ], [ -125.007275200999914, 49.618841923000154 ], [ -125.007279847999939, 49.618626406000068 ], [ -125.007880516999975, 49.618631883000049 ], [ -125.007881224999977, 49.618599021000129 ], [ -125.007908033999939, 49.618599265000107 ], [ -125.007918553999971, 49.618111121000013 ], [ -125.010013343999944, 49.618130193000056 ], [ -125.010014771999948, 49.618063773000117 ], [ -125.015547070999986, 49.618113948000044 ], [ -125.015545284999945, 49.618197429000077 ], [ -125.017334098999953, 49.618213592000082 ], [ -125.017347511999944, 49.617585256000055 ], [ -125.02001743199996, 49.617609326000043 ], [ -125.020800569999921, 49.617616374000086 ], [ -125.02079983699997, 49.617598661000109 ], [ -125.021214895, 49.617591412000074 ], [ -125.021181422999973, 49.616782397000037 ], [ -125.021596474999981, 49.616775148000045 ], [ -125.021587642999947, 49.616561774000047 ], [ -125.021585313999978, 49.616505476000043 ], [ -125.021774247999943, 49.616502175000086 ], [ -125.023245511, 49.616476462000087 ], [ -125.02323434099999, 49.616206790000071 ], [ -125.024024897999965, 49.616192966000042 ], [ -125.026969751999957, 49.616141421000059 ], [ -125.026980940999948, 49.616411090000057 ], [ -125.028226081999989, 49.616389274 ], [ -125.028237277999906, 49.616658943000125 ], [ -125.029482422999976, 49.61663711300011 ], [ -125.029493626999965, 49.616906783000054 ], [ -125.03209226499996, 49.616861180000043 ], [ -125.032119486999989, 49.615566466000075 ], [ -125.038340141999967, 49.615750670000132 ], [ -125.038330509999923, 49.616211731000064 ], [ -125.039017236999911, 49.61619963200009 ], [ -125.039028490999968, 49.616469301000095 ], [ -125.041933797999917, 49.616418071000069 ], [ -125.041945071, 49.616687738000095 ], [ -125.042360115999941, 49.616680415000111 ], [ -125.042371390999932, 49.616950082000109 ], [ -125.042893015999965, 49.616940875000054 ], [ -125.042910785999979, 49.616086092000081 ], [ -125.043521641999988, 49.616091461000067 ], [ -125.043523668999953, 49.615993907000082 ], [ -125.044286493999977, 49.616000607000068 ], [ -125.044286638999964, 49.615993627000066 ], [ -125.046761041999957, 49.616015325000077 ], [ -125.046746947999964, 49.616142871000115 ], [ -125.046650653, 49.616963867000059 ], [ -125.045851134999936, 49.616909603000096 ], [ -125.04540692199997, 49.616919205000109 ], [ -125.043321878999933, 49.617071836000065 ], [ -125.042551250999935, 49.61707764900008 ], [ -125.034721589999918, 49.616621670000015 ], [ -125.034574721999888, 49.616633849000024 ], [ -125.03446463899995, 49.616671553000025 ], [ -125.034385768999982, 49.616805760000041 ], [ -125.034384918999962, 49.616819738000075 ], [ -125.034380551999973, 49.616892074000056 ], [ -125.034368032999907, 49.617099718000098 ], [ -125.034366979999902, 49.617116829000082 ], [ -125.034347573999966, 49.617437898000048 ], [ -125.034174954999983, 49.617424884000037 ], [ -125.033563103999967, 49.617378782000031 ], [ -125.032819814, 49.617399109000061 ], [ -125.031543994999979, 49.617684698000112 ], [ -125.030511708999981, 49.61796338400007 ], [ -125.02930149599996, 49.618082124000125 ], [ -125.029237998999974, 49.617812558000075 ], [ -125.029100146999937, 49.617527950000088 ], [ -125.028927399999958, 49.617412469000044 ], [ -125.028834156999892, 49.617350164000094 ], [ -125.028685609000021, 49.617310134000022 ], [ -125.028612270999972, 49.617317131000064 ], [ -125.027406226999986, 49.617431862000039 ], [ -125.025652807999933, 49.61759968500008 ], [ -125.025854227000011, 49.618412098000107 ], [ -125.02408398399993, 49.618583302000019 ], [ -125.022316704, 49.618749208000089 ], [ -125.022512610999968, 49.619621804000133 ], [ -125.022704593999904, 49.620483489000044 ], [ -125.02288748699999, 49.621317303000033 ], [ -125.021136383999988, 49.621493201000078 ], [ -125.021322, 49.622265807000048 ], [ -125.021336938999966, 49.62235649900002 ], [ -125.021400542999942, 49.622742593000119 ], [ -125.021412637999902, 49.622816262000093 ], [ -125.022801819999984, 49.62287549600007 ], [ -125.021010230999977, 49.624173751000036 ], [ -125.020877720999962, 49.62429040500006 ], [ -125.020017868999986, 49.62529526800008 ], [ -125.01901756299992, 49.626464172000034 ], [ -125.018992275999935, 49.626547627000036 ], [ -125.019022057999976, 49.626642344000075 ], [ -125.019781843999937, 49.627348174000062 ], [ -125.020047170999945, 49.627541656000105 ], [ -125.020111589999956, 49.627588624000055 ], [ -125.020444671999968, 49.62773557500001 ], [ -125.021155122999957, 49.627965954000018 ], [ -125.019694995999927, 49.628958574000102 ], [ -125.018376259999968, 49.630001008000121 ], [ -125.018066163999933, 49.630202410000088 ], [ -125.01774454400001, 49.63035964800018 ], [ -125.01732395, 49.630487195000057 ], [ -125.015308637999965, 49.63100990800006 ], [ -125.015352014999962, 49.628982535000077 ], [ -125.017646994999964, 49.629003265000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.97937045567448", "sL_AssetLoss": "5535.75", "sL_BldgLoss": "5421.55", "sL_StrLoss": "4787.85", "sL_NStrLoss": "633.7", "sL_ContLoss": "114.2", "geom_point": "0101000020E610000028EE78939F405FC0C46C5554F5D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.00905791299999, 49.635074510000102 ], [ -125.009035716999989, 49.634535165000045 ], [ -125.00862051199999, 49.634542371000066 ], [ -125.008587228, 49.633733354000121 ], [ -125.009002425999967, 49.633726147000075 ], [ -125.008991329, 49.633456474000077 ], [ -125.007745737999954, 49.633478090000018 ], [ -125.007740046999956, 49.63333967500003 ], [ -125.0077124699999, 49.632669071000066 ], [ -125.008958039999968, 49.632647456000036 ], [ -125.008941326999945, 49.632241254000036 ], [ -125.008924751999942, 49.631838437000063 ], [ -125.009909619999988, 49.63182133800003 ], [ -125.010170299999942, 49.631816810000089 ], [ -125.010159196999979, 49.631547138000052 ], [ -125.009404300999961, 49.631560247000046 ], [ -125.008602610999958, 49.63157416399999 ], [ -125.007668112999966, 49.63159037900008 ], [ -125.007666251999964, 49.631545101000086 ], [ -125.007634848999956, 49.630781359000082 ], [ -125.009710716999962, 49.630745330000067 ], [ -125.009699616999967, 49.630475657000098 ], [ -125.010945129999982, 49.630454021000091 ], [ -125.010989556, 49.631532711000062 ], [ -125.012782649999949, 49.63150154100007 ], [ -125.013416381999946, 49.63149051700001 ], [ -125.013642712999939, 49.631486579000075 ], [ -125.013291096, 49.63159918900007 ], [ -125.012948720999972, 49.631708855000063 ], [ -125.01228043499998, 49.631931870000123 ], [ -125.011504310999953, 49.632190838000085 ], [ -125.010498167999941, 49.632526528000035 ], [ -125.010074789999962, 49.632667804000057 ], [ -125.010166205999894, 49.632786096000075 ], [ -125.010277295999941, 49.632929803000138 ], [ -125.010441014999927, 49.633141599000048 ], [ -125.01057274, 49.633419507 ], [ -125.010603793999962, 49.633485009000012 ], [ -125.010649316999917, 49.63381729400006 ], [ -125.010634876999958, 49.633967662000032 ], [ -125.010259126, 49.633974191000036 ], [ -125.010303542999907, 49.635052880000039 ], [ -125.00994604899995, 49.63505908900008 ], [ -125.00905791299999, 49.635074510000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16858667", "BldgCostT": "11626667", "sL_LossRatio": "0.986084040466746", "sL_AssetLoss": "13144.62", "sL_BldgLoss": "12961.7", "sL_StrLoss": "11870.8", "sL_NStrLoss": "1090.9", "sL_ContLoss": "182.92", "geom_point": "0101000020E6100000737E69D557405FC06F85D128B4D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.00464535299993, 49.64351683900005 ], [ -125.002684888999937, 49.639973666000095 ], [ -125.002535718, 49.639704006000045 ], [ -125.002316967999889, 49.638760639000054 ], [ -125.00235766599998, 49.638697584000134 ], [ -125.002633115999984, 49.638270901000034 ], [ -125.002633767999981, 49.635763463000103 ], [ -125.004078788999948, 49.635776688000114 ], [ -125.004075285999974, 49.635938534000054 ], [ -125.004068075999925, 49.636271677000089 ], [ -125.004407607999951, 49.636274781000061 ], [ -125.00437927099992, 49.637584419000071 ], [ -125.00500548199993, 49.637573572000051 ], [ -125.004994406999941, 49.637303899000088 ], [ -125.00582486699993, 49.637289510000066 ], [ -125.005813785000029, 49.63701983700004 ], [ -125.007059465999973, 49.636998241000086 ], [ -125.007048379999972, 49.63672856800013 ], [ -125.007463604999927, 49.636721367000028 ], [ -125.007452514999898, 49.636451693 ], [ -125.008124044999988, 49.636440043000029 ], [ -125.008282961, 49.636437286000096 ], [ -125.008275250999972, 49.636249885000062 ], [ -125.008271866999934, 49.63616761300009 ], [ -125.009932743999954, 49.636138781000078 ], [ -125.009956339, 49.63671187200007 ], [ -125.009988259999957, 49.637487142000062 ], [ -125.009573029999956, 49.637494353000129 ], [ -125.009606335999962, 49.638303372000088 ], [ -125.00545395099999, 49.638375398000022 ], [ -125.005465030999972, 49.638645070000088 ], [ -125.004634546999952, 49.638659458000113 ], [ -125.004689922999916, 49.640007824000101 ], [ -125.004274669999944, 49.640015016000049 ], [ -125.004285742999969, 49.64028469 ], [ -125.003870485999968, 49.640291880000099 ], [ -125.003892629999896, 49.640831225000085 ], [ -125.004307890999968, 49.640824036000033 ], [ -125.004330038999939, 49.641363382000065 ], [ -125.004745301999918, 49.641356189000049 ], [ -125.004833919999925, 49.643513573000121 ], [ -125.00464535299993, 49.64351683900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13917584", "BldgCostT": "9598334", "sL_LossRatio": "0.984090188545532", "sL_AssetLoss": "10724.2", "sL_BldgLoss": "10553.58", "sL_StrLoss": "9765.68", "sL_NStrLoss": "787.9", "sL_ContLoss": "170.62", "geom_point": "0101000020E61000007156C01410405FC07BBFA80FEAD04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.002634525999923, 49.632754259000144 ], [ -125.002634694999969, 49.632132094000056 ], [ -124.999992449, 49.632357124000102 ], [ -124.999448914000013, 49.632403408000108 ], [ -124.998533101999968, 49.632518002000069 ], [ -124.997801897999935, 49.632609510000044 ], [ -124.997662165999941, 49.632632427000054 ], [ -124.997708211999935, 49.632292535000012 ], [ -124.997226519999955, 49.632277286000026 ], [ -124.997288708999989, 49.630070079000042 ], [ -125.002202716999989, 49.630115223000054 ], [ -125.00217130599999, 49.631563934000098 ], [ -125.002344699999952, 49.631565523000049 ], [ -125.002333870999962, 49.632065051000026 ], [ -125.004324553999936, 49.63208327300007 ], [ -125.004313344999929, 49.63260138700015 ], [ -125.00424925899992, 49.635563097000095 ], [ -125.004246708999943, 49.63568092800007 ], [ -125.004180849999926, 49.63568032500006 ], [ -125.002633791999955, 49.63566616600005 ], [ -125.002634202999971, 49.634088842000068 ], [ -125.002634296999986, 49.633711311000056 ], [ -125.002634525999923, 49.632754259000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3149000", "BldgCostT": "1700000", "sL_LossRatio": "0.833804615524948", "sL_AssetLoss": "219.26", "sL_BldgLoss": "182.82", "sL_StrLoss": "19.62", "sL_NStrLoss": "163.2", "sL_ContLoss": "36.44", "geom_point": "0101000020E61000002647AE59F63E5FC023577FBE8CD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.983189153999916, 49.683556398000079 ], [ -124.98383876599992, 49.683545268000046 ], [ -124.984159089999977, 49.683717888000103 ], [ -124.984448463999939, 49.683840080000081 ], [ -124.984468984999964, 49.684344054000093 ], [ -124.983222074999901, 49.684365423000024 ], [ -124.983189153999916, 49.683556398000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2539167", "BldgCostT": "1541667", "sL_LossRatio": "0.471542126146211", "sL_AssetLoss": "3767.85", "sL_BldgLoss": "1776.7", "sL_StrLoss": "847.9", "sL_NStrLoss": "928.8", "sL_ContLoss": "1991.15", "geom_point": "0101000020E6100000A8E47BCADA3E5FC0136F950E73D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.980373763000017, 49.683481493000123 ], [ -124.981992063999911, 49.682605166000059 ], [ -124.982572216999984, 49.682846202000079 ], [ -124.983055588999932, 49.683143907000094 ], [ -124.98381369199997, 49.68340028800008 ], [ -124.983805823999901, 49.683513540000085 ], [ -124.980373763000017, 49.683481493000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2776000", "BldgCostT": "1705000", "sL_LossRatio": "0.476363193438807", "sL_AssetLoss": "3694.45", "sL_BldgLoss": "1759.9", "sL_StrLoss": "825.6", "sL_NStrLoss": "934.3", "sL_ContLoss": "1934.55", "geom_point": "0101000020E61000003112D201263F5FC0CCA71AFFB6D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.984848952999982, 49.684109315000057 ], [ -124.985091416, 49.684111573000017 ], [ -124.987066408999937, 49.684945486000032 ], [ -124.98756578699999, 49.685297300000087 ], [ -124.988653794999919, 49.685895452000111 ], [ -124.988314564999897, 49.686178837000092 ], [ -124.98799700499994, 49.686443051000055 ], [ -124.987555963999952, 49.686213167000105 ], [ -124.986982629999929, 49.685952373000049 ], [ -124.985699755, 49.685103838000046 ], [ -124.985623968999988, 49.685053715000024 ], [ -124.985322386999954, 49.684908782000043 ], [ -124.984834976999977, 49.684742136000118 ], [ -124.984848952999982, 49.684109315000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "296495438", "BldgCostT": "167708405", "sL_LossRatio": "0.675886213788113", "sL_AssetLoss": "135192.83", "sL_BldgLoss": "91374.97", "sL_StrLoss": "59696.57", "sL_NStrLoss": "31678.4", "sL_ContLoss": "43817.86", "geom_point": "0101000020E610000070A6CEE5BE3E5FC07939561020D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.986955769999923, 49.684128913000031 ], [ -124.986951801999908, 49.68403160400004 ], [ -124.986644736999963, 49.684036875000054 ], [ -124.986533222999952, 49.683966436000041 ], [ -124.986525176, 49.683769064000053 ], [ -124.986226648999946, 49.683774186000086 ], [ -124.98363411299999, 49.682387605000081 ], [ -124.983672702999939, 49.682304991000109 ], [ -124.983952685999967, 49.682354902000057 ], [ -124.984424812999976, 49.682031588000022 ], [ -124.9840250029999, 49.681742496000034 ], [ -124.983787991999961, 49.681736806000075 ], [ -124.98313621799997, 49.682071497000059 ], [ -124.982237989999987, 49.681818005000096 ], [ -124.981083394, 49.68135080400009 ], [ -124.980666992999915, 49.681026111000072 ], [ -124.97729640599999, 49.679949389000065 ], [ -124.976899283999984, 49.679714393000054 ], [ -124.976776790999963, 49.679455195000074 ], [ -124.976823514999964, 49.679238703000081 ], [ -124.977145687999922, 49.678945302000059 ], [ -124.97821120299993, 49.678243189000064 ], [ -124.978369991999941, 49.678060912000042 ], [ -124.978367021999972, 49.67794410000004 ], [ -124.977801601999886, 49.67736869600008 ], [ -124.978097592999958, 49.676796200000148 ], [ -124.978991984999936, 49.67560269300008 ], [ -124.979191592999939, 49.674691189000072 ], [ -124.979268602999923, 49.67352908400008 ], [ -124.978656379999919, 49.672460900000054 ], [ -124.977879376999923, 49.671654053000047 ], [ -124.977412387999948, 49.671169111000033 ], [ -124.977072402999951, 49.670993999000054 ], [ -124.97574348699996, 49.670684900000026 ], [ -124.975376179999955, 49.670528291000046 ], [ -124.974416825, 49.669780503000069 ], [ -124.974141503999959, 49.669451489000075 ], [ -124.973390595999945, 49.669042815000068 ], [ -124.972179808999911, 49.667911991000054 ], [ -124.971440188999964, 49.666764111000091 ], [ -124.971096815999971, 49.665428431000059 ], [ -124.971141953999947, 49.665420186000105 ], [ -124.97118190099998, 49.665413219000079 ], [ -124.971445647999971, 49.665202862000122 ], [ -124.971467978999954, 49.665133790000034 ], [ -124.971541200999965, 49.665079626000114 ], [ -124.973212636999975, 49.664333440000057 ], [ -124.973023133999902, 49.664138273000063 ], [ -124.973113495999925, 49.663999688000096 ], [ -124.973260883999941, 49.663909317000034 ], [ -124.973837505999981, 49.663946225000075 ], [ -124.974017983999929, 49.663924550000097 ], [ -124.975131610999966, 49.663414176000103 ], [ -124.977342402999952, 49.662424245000061 ], [ -124.978520524999951, 49.663380368000055 ], [ -124.978458489999966, 49.663379787000096 ], [ -124.978437883000012, 49.664307399000073 ], [ -124.976463057000018, 49.664288867000089 ], [ -124.976445177999949, 49.665092133000044 ], [ -124.977979685999955, 49.665106535000106 ], [ -124.977974587999981, 49.665335901000056 ], [ -124.978286788, 49.665338829000078 ], [ -124.97828525099996, 49.665408002000092 ], [ -124.979201743999937, 49.665416591000039 ], [ -124.979927328999935, 49.665423387000033 ], [ -124.979924931999918, 49.665531459000114 ], [ -124.979961429999932, 49.665530835000055 ], [ -124.979971837, 49.665787146000142 ], [ -124.980167742999953, 49.665788980000045 ], [ -124.98016756, 49.665797172000048 ], [ -124.980387858000014, 49.66579340300013 ], [ -124.980398809999912, 49.666063080000058 ], [ -124.980814289999927, 49.66605597000013 ], [ -124.980833072999957, 49.666518340000088 ], [ -124.983211266999916, 49.666540555000054 ], [ -124.983802518999966, 49.666999521 ], [ -124.983965691999984, 49.667130214000039 ], [ -124.984061199999957, 49.667202285000016 ], [ -124.984629615999978, 49.667631412000041 ], [ -124.986541512999977, 49.669074706000103 ], [ -124.98658572199993, 49.66910688100004 ], [ -124.986666885999981, 49.669165914000061 ], [ -124.985926168999953, 49.669574056000052 ], [ -124.98575296199999, 49.66966948900005 ], [ -124.985019701999974, 49.670073506000051 ], [ -124.982597413999954, 49.671390300000041 ], [ -124.981334129999979, 49.672023484000071 ], [ -124.980496588999969, 49.672442909000033 ], [ -124.980370691999923, 49.67250109600009 ], [ -124.980634914999911, 49.672929193000165 ], [ -124.981310586999911, 49.67402385900008 ], [ -124.981818692999965, 49.67484631100011 ], [ -124.982638007999967, 49.676191588000101 ], [ -124.983738878999986, 49.67801980200008 ], [ -124.983845076999927, 49.678227681000067 ], [ -124.984738938999968, 49.680592789000073 ], [ -124.984830114999923, 49.680729606000128 ], [ -124.984895785999953, 49.680828142000067 ], [ -124.98496196799999, 49.680888221000032 ], [ -124.985208144999959, 49.681111680000086 ], [ -124.985802599999914, 49.681478837000064 ], [ -124.987319934999917, 49.682400575000088 ], [ -124.987396854999986, 49.682359215000112 ], [ -124.987415274999961, 49.682349302000056 ], [ -124.988700605999924, 49.683115018000059 ], [ -124.989441213999967, 49.682684776000066 ], [ -124.989886308000024, 49.682426201000062 ], [ -124.990379031999979, 49.682156547 ], [ -124.990912679999923, 49.681864500000096 ], [ -124.991515723999939, 49.681534597000045 ], [ -124.991989490999956, 49.681275398000061 ], [ -124.992949785999969, 49.682021013000067 ], [ -124.993814715999989, 49.681554005000052 ], [ -124.99422731099996, 49.681879803000058 ], [ -124.993109949999948, 49.682504876000067 ], [ -124.992533118999972, 49.682827588000045 ], [ -124.99216136699999, 49.683040028000086 ], [ -124.992114952999927, 49.683134947000035 ], [ -124.992058673, 49.68316818500012 ], [ -124.991570396999975, 49.68345644300009 ], [ -124.990777543999911, 49.683918648000123 ], [ -124.990651890999942, 49.684025446000099 ], [ -124.990460188999961, 49.684175707000044 ], [ -124.990379559999937, 49.684126379000126 ], [ -124.990321617999953, 49.684177099000095 ], [ -124.990396819999916, 49.684222775000116 ], [ -124.990233322999956, 49.684412866000066 ], [ -124.989725761999935, 49.685003649000073 ], [ -124.989498518999966, 49.685258816000022 ], [ -124.989347654999975, 49.685315879000044 ], [ -124.989159746999974, 49.685472830000101 ], [ -124.988333593, 49.68510360300013 ], [ -124.986787977999981, 49.68412735400004 ], [ -124.986955769999923, 49.684128913000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12284583", "BldgCostT": "8208333", "sL_LossRatio": "0.979710719687186", "sL_AssetLoss": "11498.19", "sL_BldgLoss": "11264.9", "sL_StrLoss": "10507", "sL_NStrLoss": "757.9", "sL_ContLoss": "233.29", "geom_point": "0101000020E6100000E0826C597E3A5FC0F5FCA34EC4D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.91129351099994, 49.663607999000057 ], [ -124.910285688999977, 49.663039802000071 ], [ -124.90944176, 49.662927110000041 ], [ -124.909453495999941, 49.662432270000075 ], [ -124.90935844199997, 49.662373264000045 ], [ -124.909456509000023, 49.662305145000111 ], [ -124.90946968, 49.661749788000066 ], [ -124.911450425999988, 49.661783416000034 ], [ -124.912386000999973, 49.66179929900003 ], [ -124.914814787999916, 49.661534390000106 ], [ -124.915675696999969, 49.661259498000071 ], [ -124.918589778999902, 49.659868494000101 ], [ -124.918547681999954, 49.661658679000062 ], [ -124.918300184999978, 49.661710992000138 ], [ -124.917734605999954, 49.662123983000079 ], [ -124.916574005999962, 49.661873298000067 ], [ -124.915952306999955, 49.661938799000019 ], [ -124.915399886, 49.662343293000106 ], [ -124.915127281999943, 49.662806202000112 ], [ -124.915118804999963, 49.663264794000035 ], [ -124.915404914999925, 49.663845904000041 ], [ -124.915393286999915, 49.663927003000062 ], [ -124.915243418999978, 49.663965499 ], [ -124.914783814999964, 49.663918492000086 ], [ -124.912719091, 49.663250503000064 ], [ -124.912445702999946, 49.663327407000061 ], [ -124.912339874999958, 49.663437098000038 ], [ -124.912359301, 49.663589499000061 ], [ -124.912865219999958, 49.664112200000048 ], [ -124.912839120999976, 49.664166303000023 ], [ -124.912686691999951, 49.664150591000123 ], [ -124.91129351099994, 49.663607999000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94513084", "BldgCostT": "63918334", "sL_LossRatio": "0.972216185878604", "sL_AssetLoss": "93185.55", "sL_BldgLoss": "90596.5", "sL_StrLoss": "81307.1", "sL_NStrLoss": "9289.4", "sL_ContLoss": "2589.05", "geom_point": "0101000020E6100000F6BC76C4BC395FC0C8AE9BEF33D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.906414735999959, 49.681980581000118 ], [ -124.906461118, 49.680030806000076 ], [ -124.90428479399999, 49.68026329200012 ], [ -124.904233845999926, 49.678930152000078 ], [ -124.904212032999936, 49.678381653000038 ], [ -124.901979435999962, 49.678317616000037 ], [ -124.901996214999897, 49.677693074000068 ], [ -124.902075581999938, 49.674744991000047 ], [ -124.902180608999956, 49.674584212000084 ], [ -124.902038670999929, 49.6745827640001 ], [ -124.90081247399992, 49.674570402000093 ], [ -124.8995221099999, 49.674550207000095 ], [ -124.897519780000025, 49.674528134000113 ], [ -124.897302312999926, 49.674527702000084 ], [ -124.89553827899999, 49.674514196000096 ], [ -124.89517442099999, 49.674511400000029 ], [ -124.894226966999952, 49.674504137000042 ], [ -124.893211614999927, 49.674496325000078 ], [ -124.892541337999972, 49.674491158000059 ], [ -124.892091279999946, 49.67448991800007 ], [ -124.891799995999946, 49.674489117000043 ], [ -124.891326700999926, 49.674487800000051 ], [ -124.888233338999953, 49.674553089000064 ], [ -124.890611507999935, 49.673131708000035 ], [ -124.893300893999964, 49.672053602000041 ], [ -124.895094609999944, 49.670773206000028 ], [ -124.895799509999961, 49.670392905000035 ], [ -124.896865077999934, 49.669646694000086 ], [ -124.89815588499998, 49.668599892000039 ], [ -124.899318535999939, 49.667296241000052 ], [ -124.900133495999981, 49.66638239100012 ], [ -124.900384056999926, 49.666137679000038 ], [ -124.900949529999949, 49.666143383000126 ], [ -124.900678305999918, 49.666489193000132 ], [ -124.900468185999969, 49.66711439700002 ], [ -124.900531696999934, 49.667355090000093 ], [ -124.902540804999958, 49.668420388000108 ], [ -124.902950006999973, 49.66892599900013 ], [ -124.90342379399999, 49.669025694000041 ], [ -124.90407719199996, 49.669042803000117 ], [ -124.905290408999988, 49.6688604900001 ], [ -124.905668000999981, 49.668971607000032 ], [ -124.906097406999933, 49.669333287000036 ], [ -124.906421407999943, 49.66946289800012 ], [ -124.907034596999907, 49.669561189000035 ], [ -124.907923485999945, 49.669582609000052 ], [ -124.90922560199995, 49.669436149000042 ], [ -124.90912611399996, 49.670232595000122 ], [ -124.909105339999883, 49.670713479000071 ], [ -124.90908609499995, 49.671158699000046 ], [ -124.908966800999949, 49.673851687000088 ], [ -124.9068111, 49.673816601000041 ], [ -124.906528548999944, 49.67375783600005 ], [ -124.904891083999971, 49.673439882000061 ], [ -124.904972705999938, 49.673744417000115 ], [ -124.905003331000017, 49.674602067000066 ], [ -124.906589664999927, 49.674612073000077 ], [ -124.906627778999919, 49.674612318000136 ], [ -124.908930406999943, 49.674626808000085 ], [ -124.908878598999976, 49.675818204000066 ], [ -124.90876610299992, 49.678338494000123 ], [ -124.908697518999986, 49.679830204000105 ], [ -124.908684309999941, 49.680137134000077 ], [ -124.908666560999933, 49.680549472000052 ], [ -124.908602644, 49.682015991000114 ], [ -124.906414735999959, 49.681980581000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2822667", "BldgCostT": "1946667", "sL_LossRatio": "0.992061284858291", "sL_AssetLoss": "1582.12", "sL_BldgLoss": "1569.56", "sL_StrLoss": "1452.76", "sL_NStrLoss": "116.8", "sL_ContLoss": "12.56", "geom_point": "0101000020E610000055B9375CF7395FC0ED9E3C2CD4D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.902681820999945, 49.663952362000025 ], [ -124.904393693999936, 49.662596807000064 ], [ -124.90541468699999, 49.662112601000111 ], [ -124.906316888999953, 49.661809201000054 ], [ -124.90811949199994, 49.661833390000062 ], [ -124.908271370999941, 49.661823773999984 ], [ -124.908257745999904, 49.662397711000025 ], [ -124.908365741999916, 49.662458163000146 ], [ -124.908285539999895, 49.662514864000059 ], [ -124.908255356999945, 49.662498353000089 ], [ -124.90825070299995, 49.662694362000053 ], [ -124.908109481999972, 49.662660895000052 ], [ -124.90729359699999, 49.662702205000095 ], [ -124.906435109999904, 49.663048302000064 ], [ -124.905868987999938, 49.663129500000139 ], [ -124.904958391999983, 49.662893112000056 ], [ -124.904629189999952, 49.66297990400011 ], [ -124.904331991999982, 49.66318220300009 ], [ -124.90359971599996, 49.663905700000136 ], [ -124.902670917999956, 49.664676693000033 ], [ -124.902664536999907, 49.664676629000098 ], [ -124.902681820999945, 49.663952362000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121445999", "BldgCostT": "81809999", "sL_LossRatio": "0.986285168618917", "sL_AssetLoss": "83064.82", "sL_BldgLoss": "81925.6", "sL_StrLoss": "74569.4", "sL_NStrLoss": "7356.2", "sL_ContLoss": "1139.22", "geom_point": "0101000020E61000008FD494C7873A5FC0E0C03F0084D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.914120897999965, 49.677414107000054 ], [ -124.913523100999939, 49.677215714000049 ], [ -124.91287029899992, 49.676998690000104 ], [ -124.91252400399999, 49.676882801 ], [ -124.911841789999954, 49.676852599000021 ], [ -124.911903005999989, 49.674852601000055 ], [ -124.91074457900001, 49.674813989 ], [ -124.91073370299992, 49.675099108000047 ], [ -124.910710710999965, 49.675836490000108 ], [ -124.908878598999976, 49.675818204000066 ], [ -124.908930406999943, 49.674626808000085 ], [ -124.906627778999919, 49.674612318000136 ], [ -124.906589664999927, 49.674612073000077 ], [ -124.905003331000017, 49.674602067000066 ], [ -124.904972705999938, 49.673744417000115 ], [ -124.904891083999971, 49.673439882000061 ], [ -124.906528548999944, 49.67375783600005 ], [ -124.9068111, 49.673816601000041 ], [ -124.908966800999949, 49.673851687000088 ], [ -124.910457621999981, 49.673929972000153 ], [ -124.91233657399999, 49.674028600000035 ], [ -124.912670007999949, 49.674046093000072 ], [ -124.913511708999962, 49.674063504000074 ], [ -124.915262992999885, 49.674099010000134 ], [ -124.916885491999935, 49.674132210000018 ], [ -124.920035308999928, 49.674182302000133 ], [ -124.920216313999958, 49.674141892000101 ], [ -124.920174796999973, 49.674906093000068 ], [ -124.920145091999942, 49.675462600000074 ], [ -124.920116616999962, 49.676027198000043 ], [ -124.920011473999978, 49.677069991000053 ], [ -124.919978197, 49.677379683000034 ], [ -124.91841379399996, 49.677346193000098 ], [ -124.916817504, 49.677312290000025 ], [ -124.916790296, 49.678640692000037 ], [ -124.917044901999972, 49.680006086000041 ], [ -124.915122680999957, 49.679965900000063 ], [ -124.914581798999947, 49.679954598000045 ], [ -124.914616395999971, 49.679192996000047 ], [ -124.91466561299994, 49.678459496000144 ], [ -124.914561313999968, 49.678006810000063 ], [ -124.914328590999943, 49.677596095000105 ], [ -124.914120897999965, 49.677414107000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85072168", "BldgCostT": "58406668", "sL_LossRatio": "0.979460788240346", "sL_AssetLoss": "76151.9", "sL_BldgLoss": "74587.8", "sL_StrLoss": "66934.3", "sL_NStrLoss": "7653.5", "sL_ContLoss": "1564.1", "geom_point": "0101000020E6100000B28893C1F23B5FC087C3F3CEF8D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.934130906999911, 49.704533701000074 ], [ -124.934174204999962, 49.703446602000056 ], [ -124.934210117999925, 49.702626559000066 ], [ -124.934238993999955, 49.701966692000077 ], [ -124.934293491999966, 49.700992107000026 ], [ -124.934334779999944, 49.700042015000072 ], [ -124.934336736999967, 49.699997157000084 ], [ -124.93445089799998, 49.697369491000082 ], [ -124.934505802999951, 49.695703400000099 ], [ -124.934513242999969, 49.69547847100015 ], [ -124.934525075, 49.69511884200007 ], [ -124.934527158999927, 49.695055982000071 ], [ -124.934534291999967, 49.694840192000058 ], [ -124.931202467999981, 49.694771964000026 ], [ -124.931211974999954, 49.694363298000049 ], [ -124.932170688999975, 49.694372691000112 ], [ -124.932175792999928, 49.694153054000132 ], [ -124.930279499999983, 49.694134467 ], [ -124.930322857999982, 49.692271818000094 ], [ -124.929184372999927, 49.692260644000093 ], [ -124.929225619999954, 49.690490436000061 ], [ -124.925852954999968, 49.690457262000066 ], [ -124.92585584499993, 49.690333619000114 ], [ -124.924639715999916, 49.690321631000103 ], [ -124.924686507, 49.688321857000062 ], [ -124.922238766999911, 49.688362523000123 ], [ -124.92227068399994, 49.689171576000071 ], [ -124.921854990999975, 49.689178478000024 ], [ -124.921908173999952, 49.690526899000112 ], [ -124.922323878999961, 49.690519997000116 ], [ -124.922409, 49.692677468000035 ], [ -124.921993278999963, 49.692684371000084 ], [ -124.922003917000012, 49.692954055000037 ], [ -124.921588193, 49.692960955000075 ], [ -124.92162010199992, 49.69377000800003 ], [ -124.922035833999985, 49.693763106000027 ], [ -124.92213159399995, 49.696190261000098 ], [ -124.921715841999927, 49.696197163000051 ], [ -124.921758396999962, 49.697275898000022 ], [ -124.92124664, 49.697284391000039 ], [ -124.921777082999952, 49.689171336000065 ], [ -124.921635424999963, 49.688009689000069 ], [ -124.922137220999943, 49.688016184000034 ], [ -124.922470073999961, 49.688020462000104 ], [ -124.922875810999955, 49.688025695000064 ], [ -124.924106553999948, 49.688053989000075 ], [ -124.924481713999953, 49.688062615000035 ], [ -124.923700567999958, 49.686589179000087 ], [ -124.92372534799992, 49.685801050000052 ], [ -124.926741014999962, 49.685847147000104 ], [ -124.927085954999981, 49.684676976000098 ], [ -124.927918064999957, 49.684719890000046 ], [ -124.927930314999969, 49.685029552000039 ], [ -124.927099001999949, 49.685043393000036 ], [ -124.927130995999931, 49.68585244300008 ], [ -124.924637014999988, 49.685893932000049 ], [ -124.92466896799999, 49.686702983000018 ], [ -124.924259595999956, 49.686709787000098 ], [ -124.924542613999932, 49.687514667000123 ], [ -124.924700921999985, 49.687512034000115 ], [ -124.924703767999944, 49.687584117 ], [ -124.924723883999917, 49.686724315000063 ], [ -124.928441869999986, 49.686760922000069 ], [ -124.928457775, 49.686078708000068 ], [ -124.929219932999942, 49.686086196000083 ], [ -124.929177280999966, 49.685008780000089 ], [ -124.92876162499999, 49.685015705000119 ], [ -124.928751620999961, 49.684762874000079 ], [ -124.930236416999932, 49.684839423000085 ], [ -124.930220729999931, 49.685266310000053 ], [ -124.930191598999897, 49.686098001000126 ], [ -124.930162491999951, 49.68693428600006 ], [ -124.930747185, 49.68693289000003 ], [ -124.930696794999946, 49.688205213000032 ], [ -124.932863897999937, 49.688256128000027 ], [ -124.932523492999906, 49.68970944200008 ], [ -124.93318372, 49.689739886000034 ], [ -124.933147447999914, 49.689566719000034 ], [ -124.934815224999966, 49.689612749000077 ], [ -124.934820397999928, 49.689442858000113 ], [ -124.934826182, 49.68922632500005 ], [ -124.937907344999942, 49.689337925000125 ], [ -124.937975990999917, 49.68990752600007 ], [ -124.940488794999936, 49.689964950000096 ], [ -124.940824521999971, 49.691841268000147 ], [ -124.941497568999964, 49.691932529000034 ], [ -124.942205474999966, 49.692056900000082 ], [ -124.942813346000023, 49.692249914000058 ], [ -124.942894657999958, 49.690969684000088 ], [ -124.943948252999974, 49.69106535 ], [ -124.945071347999942, 49.691091501000109 ], [ -124.946181916999976, 49.691119354000101 ], [ -124.94704365799997, 49.69106713700004 ], [ -124.948474044999926, 49.690980451 ], [ -124.94521361999989, 49.69293899000008 ], [ -124.945884539999938, 49.693678347000073 ], [ -124.945914447999925, 49.693713835000032 ], [ -124.945384318999942, 49.693701932000089 ], [ -124.945381847999968, 49.693701931000099 ], [ -124.94538318499994, 49.693760201000018 ], [ -124.945450439999931, 49.696657802000097 ], [ -124.945459650999979, 49.697053702000112 ], [ -124.945472224999918, 49.697594500000044 ], [ -124.94554313699993, 49.6989506520001 ], [ -124.944780325999943, 49.70175692000003 ], [ -124.944433968999959, 49.70303095200007 ], [ -124.940428535999956, 49.70299211200004 ], [ -124.940394854999937, 49.704452447000058 ], [ -124.939517247999916, 49.704443918000017 ], [ -124.939520908999938, 49.704535803000063 ], [ -124.939159675999946, 49.704541854000084 ], [ -124.938391477999986, 49.704468206000094 ], [ -124.937962721999952, 49.704551300000077 ], [ -124.937543494999943, 49.704580489000094 ], [ -124.936137215999921, 49.704560510000078 ], [ -124.934130906999911, 49.704533701000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88765667", "BldgCostT": "59746667", "sL_LossRatio": "0.96906989845197", "sL_AssetLoss": "55401.37", "sL_BldgLoss": "53687.8", "sL_StrLoss": "44163.6", "sL_NStrLoss": "9524.2", "sL_ContLoss": "1713.57", "geom_point": "0101000020E6100000DB871F10263B5FC03E667F2415DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.914453402999953, 49.714954793000118 ], [ -124.914479617, 49.71372899900004 ], [ -124.914576675, 49.713138099000012 ], [ -124.916458302999928, 49.713176600000061 ], [ -124.916573108999927, 49.713128288000107 ], [ -124.916653884999931, 49.713053489000046 ], [ -124.916655141999954, 49.712363004000075 ], [ -124.916656191999905, 49.711778890000112 ], [ -124.917087041999963, 49.711791240000053 ], [ -124.92005893299995, 49.711876507000049 ], [ -124.919958380999972, 49.707690080000098 ], [ -124.919928954999975, 49.706464661000084 ], [ -124.920140396999955, 49.703132254000138 ], [ -124.923014687999981, 49.703040794000074 ], [ -124.923003276999964, 49.703280232000061 ], [ -124.922950369999938, 49.704486220000028 ], [ -124.922907986999959, 49.705451615000051 ], [ -124.922842837999909, 49.707166338000093 ], [ -124.922797939999967, 49.708194042000102 ], [ -124.92274184599998, 49.70951838800012 ], [ -124.92269247699997, 49.710682842000097 ], [ -124.928595363999989, 49.710735388000067 ], [ -124.930307779999922, 49.710750587000071 ], [ -124.932024692999946, 49.710775512000026 ], [ -124.933895250999939, 49.710807308000049 ], [ -124.933807599999938, 49.712895995000061 ], [ -124.933796010999941, 49.71317203800001 ], [ -124.93376907699999, 49.71378826000003 ], [ -124.933751644999944, 49.714188038000025 ], [ -124.93373530699999, 49.714713188000061 ], [ -124.93372098899998, 49.715090829000083 ], [ -124.933179135999978, 49.715082844000023 ], [ -124.929864107999975, 49.715040482000063 ], [ -124.928626090999927, 49.715023916000078 ], [ -124.92833966100001, 49.715020128000063 ], [ -124.926016393999944, 49.71497572600007 ], [ -124.925732563999958, 49.714970312000098 ], [ -124.921741114999961, 49.71489393700012 ], [ -124.917274300999964, 49.714922067000089 ], [ -124.916745595999942, 49.714925408000077 ], [ -124.914453402999953, 49.714954793000118 ] ], [ [ -124.929403174999948, 49.711721210000093 ], [ -124.929392488999923, 49.711451529000072 ], [ -124.928976607999957, 49.711458457000077 ], [ -124.928965923999925, 49.711188776000071 ], [ -124.926707304999979, 49.711226381000081 ], [ -124.926690921999963, 49.711927538000083 ], [ -124.92701921299999, 49.711930767000084 ], [ -124.927005121, 49.712534048000094 ], [ -124.927118847999935, 49.712535166000038 ], [ -124.92711299399997, 49.712785780000054 ], [ -124.927364627999964, 49.71278825400006 ], [ -124.927334434000031, 49.712025524000083 ], [ -124.928166204999968, 49.712011675000035 ], [ -124.928155525999898, 49.711741993000096 ], [ -124.929403174999948, 49.711721210000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100446585", "BldgCostT": "66328335", "sL_LossRatio": "0.975904492925047", "sL_AssetLoss": "80781.45", "sL_BldgLoss": "78834.98", "sL_StrLoss": "71373.04", "sL_NStrLoss": "7461.94", "sL_ContLoss": "1946.47", "geom_point": "0101000020E6100000302B9821633B5FC011CA770076D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.919082758999963, 49.70250057400002 ], [ -124.918910147999938, 49.699751882000051 ], [ -124.91894367299993, 49.69975132600004 ], [ -124.918958044999954, 49.700116119000022 ], [ -124.919192840999955, 49.700118446000111 ], [ -124.919207945999972, 49.69947631200008 ], [ -124.919438762999931, 49.699478598000027 ], [ -124.919451168999956, 49.698951116000018 ], [ -124.922959549999973, 49.698985822000061 ], [ -124.9249931, 49.699005887000084 ], [ -124.924986214999961, 49.699300187000055 ], [ -124.925232538999936, 49.699302615000107 ], [ -124.925255975999931, 49.698300659000083 ], [ -124.92660187199999, 49.698313915000028 ], [ -124.926624591999925, 49.697341331000047 ], [ -124.926672397999965, 49.695294786000055 ], [ -124.927877726999938, 49.695306644000027 ], [ -124.927882360999917, 49.695108016000134 ], [ -124.929151206999975, 49.695120484000078 ], [ -124.929154919999945, 49.694961148000111 ], [ -124.931197601999912, 49.694981189000117 ], [ -124.931202467999981, 49.694771964000026 ], [ -124.934534291999967, 49.694840192000058 ], [ -124.934527158999927, 49.695055982000071 ], [ -124.934525075, 49.69511884200007 ], [ -124.934513242999969, 49.69547847100015 ], [ -124.934505802999951, 49.695703400000099 ], [ -124.93445089799998, 49.697369491000082 ], [ -124.934336736999967, 49.699997157000084 ], [ -124.934334779999944, 49.700042015000072 ], [ -124.934293491999966, 49.700992107000026 ], [ -124.934238993999955, 49.701966692000077 ], [ -124.933235386999954, 49.701433987000023 ], [ -124.933271448999974, 49.700972586000034 ], [ -124.931297178999969, 49.700934900000028 ], [ -124.930701377999981, 49.700980147000116 ], [ -124.928858596999959, 49.700982427000035 ], [ -124.928793715999987, 49.701125392000087 ], [ -124.927557434999954, 49.701162216000043 ], [ -124.927683956999942, 49.70136405900007 ], [ -124.925690398999976, 49.701926008000015 ], [ -124.924826296999981, 49.702073101000067 ], [ -124.923052410999944, 49.702249011000042 ], [ -124.919082758999963, 49.70250057400002 ] ], [ [ -124.930882520999916, 49.699021271000028 ], [ -124.930884544999984, 49.698934262000073 ], [ -124.930784382999889, 49.69893328000007 ], [ -124.930782358999949, 49.699020289 ], [ -124.930882520999916, 49.699021271000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33911333", "BldgCostT": "23123333", "sL_LossRatio": "0.976354428841209", "sL_AssetLoss": "30935.18", "sL_BldgLoss": "30203.7", "sL_StrLoss": "27470.9", "sL_NStrLoss": "2732.8", "sL_ContLoss": "731.48", "geom_point": "0101000020E610000032FD4C9CE03A5FC0D225CA7BA8D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.917614991999983, 49.693915915000069 ], [ -124.917817405999983, 49.693557188000099 ], [ -124.918419584999953, 49.693698102000013 ], [ -124.91939979199995, 49.693735697000058 ], [ -124.919428418, 49.69293179200011 ], [ -124.919302693999981, 49.692737208000054 ], [ -124.919288163999937, 49.692565751000082 ], [ -124.919274495999971, 49.692404091000114 ], [ -124.919305686999934, 49.692138988000124 ], [ -124.919602692999902, 49.691412395000036 ], [ -124.919003511999961, 49.691321899000044 ], [ -124.91880940099999, 49.691324504000114 ], [ -124.918349982999942, 49.691418895000012 ], [ -124.91809847699993, 49.691446092000099 ], [ -124.917779884999959, 49.691325996000039 ], [ -124.917668596999945, 49.691169293000058 ], [ -124.917653201999954, 49.690647402000053 ], [ -124.917722326999964, 49.690240607000092 ], [ -124.91784698, 49.690063699000106 ], [ -124.918022582999953, 49.689962000000108 ], [ -124.918199583999964, 49.689859398000074 ], [ -124.919031014999931, 49.689678803000085 ], [ -124.918920295999925, 49.689260297000033 ], [ -124.918944314000015, 49.688771193000093 ], [ -124.918981007999918, 49.687975407000124 ], [ -124.921470811999981, 49.688007559000077 ], [ -124.921635424999963, 49.688009689000069 ], [ -124.921777082999952, 49.689171336000065 ], [ -124.92124664, 49.697284391000039 ], [ -124.919679585999916, 49.697310385000108 ], [ -124.919690212999953, 49.697580069000054 ], [ -124.918774717999938, 49.697595245000052 ], [ -124.918739984999917, 49.697042114000112 ], [ -124.91884518699996, 49.696695097000081 ], [ -124.918703184999941, 49.696252901000101 ], [ -124.918547994999983, 49.695779103000099 ], [ -124.91854551099999, 49.695414809000056 ], [ -124.917553905999938, 49.695332995000072 ], [ -124.917614991999983, 49.693915915000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26522333", "BldgCostT": "16553333", "sL_LossRatio": "0.962845830717976", "sL_AssetLoss": "20711", "sL_BldgLoss": "19941.5", "sL_StrLoss": "17846", "sL_NStrLoss": "2095.5", "sL_ContLoss": "769.5", "geom_point": "0101000020E6100000DEEF5014283A5FC059DE3401AFD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.909150081999925, 49.695322852000047 ], [ -124.909281054999951, 49.692559212000113 ], [ -124.904596656999971, 49.69260134200006 ], [ -124.904625505999945, 49.691391025000058 ], [ -124.91016650899995, 49.691446551000027 ], [ -124.910158311999979, 49.691792183000146 ], [ -124.911083596999958, 49.691801428000076 ], [ -124.910998349999929, 49.695398707000017 ], [ -124.90914663699999, 49.69538019800013 ], [ -124.909150081999925, 49.695322852000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129754456", "BldgCostT": "83824714", "sL_LossRatio": "0.948290520249553", "sL_AssetLoss": "95062.84", "sL_BldgLoss": "90147.19", "sL_StrLoss": "80223.69", "sL_NStrLoss": "9923.5", "sL_ContLoss": "4915.65", "geom_point": "0101000020E6100000EBCA89D10E3A5FC0EB67663DE7D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.911536681999934, 49.691238326000068 ], [ -124.911494360999967, 49.690159582000021 ], [ -124.90983154599995, 49.69018702400011 ], [ -124.90982097599999, 49.689917338000072 ], [ -124.909405274, 49.689924195000039 ], [ -124.909384137999908, 49.689384823000111 ], [ -124.907721346999949, 49.689412234000024 ], [ -124.907710788999964, 49.689142548000092 ], [ -124.904800913999964, 49.689190459000052 ], [ -124.904769287999912, 49.688381399000065 ], [ -124.90560066899998, 49.688367717000098 ], [ -124.905593457999942, 49.688183352000081 ], [ -124.905552710999956, 49.68818294400004 ], [ -124.905554719999969, 49.688098613000051 ], [ -124.904343059000013, 49.68811855100008 ], [ -124.904258750999958, 49.685961054000046 ], [ -124.903843079999959, 49.685967891000061 ], [ -124.903832543999968, 49.685698203000072 ], [ -124.900564935999981, 49.685751893000067 ], [ -124.900526855999942, 49.68734378900006 ], [ -124.896659166999925, 49.687304716000057 ], [ -124.89523915399991, 49.685851118000066 ], [ -124.895027235000015, 49.685587577000028 ], [ -124.895030654999985, 49.68544530000004 ], [ -124.894911860999969, 49.685444096 ], [ -124.893909497999985, 49.684197494000017 ], [ -124.894649867999988, 49.684033432000057 ], [ -124.89535451899998, 49.683824673000046 ], [ -124.8958024249999, 49.683636399000036 ], [ -124.896252984999961, 49.683446986000085 ], [ -124.896725301999965, 49.683162077000084 ], [ -124.897067405999934, 49.682874997000042 ], [ -124.897365914999966, 49.682386897000143 ], [ -124.897421242999954, 49.681871101000084 ], [ -124.898684424999914, 49.681879361000071 ], [ -124.898543057999959, 49.682979910000093 ], [ -124.899651846999973, 49.68313141100009 ], [ -124.900501016999925, 49.683248018000086 ], [ -124.901419301999937, 49.683374137000058 ], [ -124.901256948999929, 49.683964575000068 ], [ -124.901168926999972, 49.684284642000108 ], [ -124.901811072, 49.684371181000053 ], [ -124.902381347999949, 49.684449784000073 ], [ -124.90262853099992, 49.684483762000085 ], [ -124.903075488999917, 49.684620481000124 ], [ -124.903360980999977, 49.684733106000103 ], [ -124.903494762999941, 49.684810664000032 ], [ -124.903725811999905, 49.684944583000089 ], [ -124.90407933899999, 49.685224278000099 ], [ -124.904393502999952, 49.685539879000018 ], [ -124.904600779999953, 49.685748097000079 ], [ -124.905560907999956, 49.686712634000067 ], [ -124.905900894, 49.686980507000072 ], [ -124.906356920999926, 49.687204559000129 ], [ -124.906789871999976, 49.687350121000087 ], [ -124.906959619999924, 49.687380575000049 ], [ -124.907214776999965, 49.687426366000082 ], [ -124.90769045799999, 49.687465317000076 ], [ -124.90972359200002, 49.687496459000052 ], [ -124.910100290999964, 49.687502846000037 ], [ -124.911402949999939, 49.68764180200008 ], [ -124.912905182999936, 49.687801992000168 ], [ -124.913683707999951, 49.687884993000068 ], [ -124.913709287999936, 49.687389609000029 ], [ -124.913891047999968, 49.687392064000043 ], [ -124.915727289999964, 49.687416896000087 ], [ -124.915724205999979, 49.686959884000039 ], [ -124.915719509999974, 49.685575498000055 ], [ -124.915692353999987, 49.685560208000062 ], [ -124.915104216999978, 49.685228405000046 ], [ -124.91601919499999, 49.684498090000098 ], [ -124.916971107999984, 49.684492300000045 ], [ -124.916977388999953, 49.683204246000045 ], [ -124.916982682999958, 49.68211669600003 ], [ -124.91829689399998, 49.682137810000057 ], [ -124.9182842109999, 49.682969795000112 ], [ -124.918272595999923, 49.683755898000072 ], [ -124.918270352999969, 49.683911498000029 ], [ -124.918254909, 49.684981798000102 ], [ -124.918220005999899, 49.687464089000073 ], [ -124.916980212999974, 49.687456297000089 ], [ -124.916986896999916, 49.687935896000056 ], [ -124.916960726999903, 49.688689661000112 ], [ -124.916945324, 49.689132594000029 ], [ -124.916924899, 49.689721034000094 ], [ -124.916900637999973, 49.690419291000048 ], [ -124.916887703999976, 49.690791788000062 ], [ -124.915936212999924, 49.690777782000097 ], [ -124.914326725999942, 49.690753735000058 ], [ -124.913921586999962, 49.690745384000088 ], [ -124.913644928999943, 49.690739684000043 ], [ -124.913457000999969, 49.690735801000088 ], [ -124.912398462999946, 49.690713949000049 ], [ -124.911964129999959, 49.690705002000087 ], [ -124.912416471999919, 49.691223796000024 ], [ -124.911536681999934, 49.691238326000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.984721537703302", "sL_AssetLoss": "1521.75", "sL_BldgLoss": "1498.5", "sL_StrLoss": "1355", "sL_NStrLoss": "143.5", "sL_ContLoss": "23.25", "geom_point": "0101000020E6100000A88C5E91C8385FC0B00B37C756DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.885043685999932, 49.721976396000088 ], [ -124.885030807999954, 49.721671592000071 ], [ -124.885387694999949, 49.721907999000059 ], [ -124.885829496999946, 49.721838205000097 ], [ -124.886179817999931, 49.721580503000013 ], [ -124.886506013999949, 49.721035005000012 ], [ -124.886696375, 49.719871393000055 ], [ -124.886543510999942, 49.719163595000083 ], [ -124.886098502999943, 49.718424388000145 ], [ -124.885666850999982, 49.71790384500013 ], [ -124.886732127999949, 49.717914720000067 ], [ -124.888217043999987, 49.721408892000063 ], [ -124.88821535299995, 49.721637071000053 ], [ -124.887361209999952, 49.722038950000034 ], [ -124.887726958999934, 49.722908506000124 ], [ -124.888402302999978, 49.723282555000011 ], [ -124.890424761999924, 49.724155018000019 ], [ -124.887870675999963, 49.724129015000059 ], [ -124.887360817999948, 49.723054501000085 ], [ -124.886988749999944, 49.722625918000126 ], [ -124.886983704999935, 49.72262010500004 ], [ -124.886645883999918, 49.722490498000084 ], [ -124.885557701999943, 49.722355207000085 ], [ -124.885219086999967, 49.722244107000044 ], [ -124.885043685999932, 49.721976396000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.988511337101819", "sL_AssetLoss": "3002.09", "sL_BldgLoss": "2967.6", "sL_StrLoss": "2764", "sL_NStrLoss": "203.6", "sL_ContLoss": "34.49", "geom_point": "0101000020E6100000B5C5F32181385FC0C3D8007431DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.885943498999922, 49.717834397000061 ], [ -124.885880811999954, 49.716216265000092 ], [ -124.885464879, 49.716223039000042 ], [ -124.885454434999986, 49.715953351000039 ], [ -124.88462257399999, 49.715966893000036 ], [ -124.884612133999966, 49.715697205000048 ], [ -124.884196204999952, 49.715703972000064 ], [ -124.884144017999944, 49.714355529000052 ], [ -124.88497585099995, 49.71434199 ], [ -124.884954967999974, 49.713802612000038 ], [ -124.882875406999943, 49.71383644600008 ], [ -124.882846549999968, 49.713090280000081 ], [ -124.881373076999978, 49.713075181000121 ], [ -124.881282087, 49.712979700000133 ], [ -124.88010475, 49.711292202000031 ], [ -124.880149306999911, 49.709464560000143 ], [ -124.881788018999941, 49.709481372000049 ], [ -124.883397519, 49.710570304000093 ], [ -124.883976675999946, 49.710957074000113 ], [ -124.883993873999941, 49.712581538000045 ], [ -124.884532885999974, 49.713303910000086 ], [ -124.885200847999911, 49.71382457500011 ], [ -124.886532929999959, 49.717445940000047 ], [ -124.886692809999943, 49.717822190000042 ], [ -124.885943498999922, 49.717834397000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170971667", "BldgCostT": "115726667", "sL_LossRatio": "0.974563799002771", "sL_AssetLoss": "108057.41", "sL_BldgLoss": "105308.84", "sL_StrLoss": "82241.14", "sL_NStrLoss": "23067.7", "sL_ContLoss": "2748.57", "geom_point": "0101000020E6100000AE22582CF0385FC0A1A62B12F2D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.916183012999937, 49.710568004000045 ], [ -124.915930011999976, 49.71053849600009 ], [ -124.915437153999932, 49.710559268000075 ], [ -124.914928209999971, 49.710580689000039 ], [ -124.914656791999946, 49.710630207000087 ], [ -124.913773593999963, 49.710755394000095 ], [ -124.913111291999883, 49.710741611000046 ], [ -124.913163186999952, 49.709100872000072 ], [ -124.913166500999949, 49.708996202000108 ], [ -124.913180397999895, 49.708583489000084 ], [ -124.914898003999937, 49.708162487000067 ], [ -124.914538254999968, 49.707719705000031 ], [ -124.914019888999974, 49.707081613000092 ], [ -124.913849607999936, 49.706661580000073 ], [ -124.913231816999911, 49.706234497 ], [ -124.912492813999961, 49.706715493000026 ], [ -124.912129797999938, 49.706824387000047 ], [ -124.91086480300001, 49.706982586000038 ], [ -124.910562319999926, 49.707126347000035 ], [ -124.91014634699998, 49.707324096000029 ], [ -124.909300850999912, 49.707901664000133 ], [ -124.909423610999951, 49.707726501000117 ], [ -124.909780411000014, 49.707410798000076 ], [ -124.909913887999906, 49.707335063000123 ], [ -124.90813907499998, 49.707310273000097 ], [ -124.905537141999915, 49.707511052000036 ], [ -124.905266685999948, 49.706961255000046 ], [ -124.904769421999958, 49.706586924000099 ], [ -124.904455852999931, 49.706500016000085 ], [ -124.903654490999955, 49.70601959800009 ], [ -124.903126814999951, 49.705139131000131 ], [ -124.902726748999953, 49.704912360000087 ], [ -124.901126599999955, 49.704652387000074 ], [ -124.900700331999943, 49.704931696000102 ], [ -124.900261884999949, 49.705801071000046 ], [ -124.899814147999933, 49.706271836000084 ], [ -124.898333141999956, 49.707109557000074 ], [ -124.897906679999906, 49.707736424000096 ], [ -124.897480621999961, 49.70800699200008 ], [ -124.896677214999912, 49.708249842 ], [ -124.895551774999916, 49.708446236000036 ], [ -124.888879296999932, 49.710125371000089 ], [ -124.888491730999988, 49.710122943000087 ], [ -124.879277832999946, 49.704182902000113 ], [ -124.878006012999947, 49.703844639000081 ], [ -124.87275533399999, 49.700264827000083 ], [ -124.871779382999961, 49.700065423000098 ], [ -124.869248516999946, 49.698465838000025 ], [ -124.86926329, 49.697865467000057 ], [ -124.868945026999981, 49.697870604000073 ], [ -124.868934679999967, 49.697600912000077 ], [ -124.86851890199992, 49.697607623000103 ], [ -124.868514752999957, 49.697499452000031 ], [ -124.867706355999971, 49.69749106000009 ], [ -124.867297129999955, 49.69723238300007 ], [ -124.866652296000012, 49.696824759000023 ], [ -124.866306358999964, 49.696821554000017 ], [ -124.866192272999953, 49.696861079000101 ], [ -124.866043463999929, 49.696912635000054 ], [ -124.865869551999964, 49.696972864000067 ], [ -124.865834328999966, 49.697000740000064 ], [ -124.865254605999951, 49.697458917000091 ], [ -124.865078361999963, 49.69759815900003 ], [ -124.865039605999954, 49.697994996000027 ], [ -124.865160369999941, 49.698227199 ], [ -124.86529023099996, 49.698315093000076 ], [ -124.86614209699998, 49.698891863000064 ], [ -124.866126012, 49.699543617000138 ], [ -124.86546837899999, 49.699536778000066 ], [ -124.865457491999919, 49.699977724000043 ], [ -124.867778632999929, 49.700001847000124 ], [ -124.867778553999969, 49.699999796000107 ], [ -124.86862720299996, 49.700574325000083 ], [ -124.868506580999949, 49.700576271000052 ], [ -124.868501614999957, 49.700777936000101 ], [ -124.868640570999929, 49.700779377000067 ], [ -124.868632852999966, 49.700578150000098 ], [ -124.870341507999939, 49.701734833000096 ], [ -124.87034769, 49.701895839000059 ], [ -124.87057395699999, 49.701892185000091 ], [ -124.870768684999931, 49.702024 ], [ -124.870794579999981, 49.702698196000014 ], [ -124.870001503999973, 49.702711008000051 ], [ -124.870001439, 49.702713638 ], [ -124.871815240999965, 49.702732416000082 ], [ -124.871943572999925, 49.702819281000068 ], [ -124.871934839999966, 49.703174936000018 ], [ -124.872477295999914, 49.703180546000105 ], [ -124.872667855999964, 49.70330952800002 ], [ -124.87265235, 49.703941407000094 ], [ -124.873616130999935, 49.703951365000108 ], [ -124.880595144, 49.708674264000123 ], [ -124.880597919999957, 49.708746141000034 ], [ -124.879807106000015, 49.708758983000081 ], [ -124.879779768999938, 49.70988004900007 ], [ -124.87911482599992, 49.709873219000031 ], [ -124.879035497999894, 49.70975950400009 ], [ -124.878158292999942, 49.708946315000055 ], [ -124.876385990999921, 49.707949303000113 ], [ -124.876322678999912, 49.707920276000053 ], [ -124.875326894999958, 49.707463706000077 ], [ -124.874486288999947, 49.70725149800009 ], [ -124.872683090999942, 49.706516602000129 ], [ -124.872025501999957, 49.70639270700012 ], [ -124.871431307999899, 49.706438282000114 ], [ -124.870197592999929, 49.70682709600009 ], [ -124.867813092999981, 49.707188799000107 ], [ -124.866026803999929, 49.707648808000066 ], [ -124.865158105999953, 49.707789807000047 ], [ -124.864424484999944, 49.707836799000113 ], [ -124.863160595999915, 49.707794108000023 ], [ -124.8624455, 49.707598996000122 ], [ -124.86233190199999, 49.706921399000123 ], [ -124.862351242999949, 49.706914951000094 ], [ -124.862747130999963, 49.706782908000029 ], [ -124.86308892699995, 49.707387851000114 ], [ -124.863545974999965, 49.707356603000044 ], [ -124.863354840999975, 49.706656252000109 ], [ -124.863599391999955, 49.706457298000025 ], [ -124.865344089999979, 49.70624419500006 ], [ -124.866701095999986, 49.70618639500001 ], [ -124.866767409999923, 49.70619158700007 ], [ -124.868081678999914, 49.706294307000107 ], [ -124.870010589999978, 49.705622873000031 ], [ -124.869997760999979, 49.705939838000049 ], [ -124.870474714999929, 49.70584013700006 ], [ -124.871590317999946, 49.70561717300005 ], [ -124.871980713999932, 49.705501705000145 ], [ -124.872628789999965, 49.705410390000097 ], [ -124.873234499999967, 49.705410311000023 ], [ -124.873641417999934, 49.705491900000048 ], [ -124.873890279999955, 49.705514187000091 ], [ -124.874109495999946, 49.705452594000114 ], [ -124.874111251999963, 49.705450846000062 ], [ -124.874234507999944, 49.705328899000023 ], [ -124.874226525999916, 49.70520199500001 ], [ -124.874094604, 49.705096290000093 ], [ -124.873770798, 49.705020995000048 ], [ -124.873154909999968, 49.704982195000149 ], [ -124.871670409999965, 49.705045086000084 ], [ -124.871092202999989, 49.704885298000058 ], [ -124.870750603999937, 49.704685692000041 ], [ -124.868530411999984, 49.703214408000058 ], [ -124.865403008999934, 49.701171047000081 ], [ -124.864303293999981, 49.702261287000056 ], [ -124.863942693999917, 49.70176411300011 ], [ -124.863432392999968, 49.702563907000112 ], [ -124.863405359999931, 49.702582340000056 ], [ -124.863228663999962, 49.70291274300012 ], [ -124.863417423999948, 49.703045510000081 ], [ -124.86348355, 49.703092474000137 ], [ -124.865166488999961, 49.704231896000096 ], [ -124.863770998999925, 49.705189906000037 ], [ -124.863040578999986, 49.704285523000102 ], [ -124.861340418999944, 49.704802141000066 ], [ -124.86117421899999, 49.704084005000013 ], [ -124.860676809999944, 49.702679806000035 ], [ -124.859796782, 49.701434996000096 ], [ -124.859757420000037, 49.70109319800013 ], [ -124.860717103999946, 49.700116199000071 ], [ -124.861224017999959, 49.699226105000037 ], [ -124.862027204999919, 49.69736038900006 ], [ -124.863364410999935, 49.696061506000035 ], [ -124.864023120999931, 49.694801099000102 ], [ -124.86447390799999, 49.694262700000102 ], [ -124.865216312999976, 49.693710096000125 ], [ -124.867329797999972, 49.692812898000071 ], [ -124.868586097999966, 49.691929805000044 ], [ -124.870424506999953, 49.690712089000094 ], [ -124.87132978799994, 49.690445806000113 ], [ -124.872561145999953, 49.68994702500008 ], [ -124.873597510999943, 49.689527202000107 ], [ -124.874547716, 49.689035800000092 ], [ -124.875127096999933, 49.688575786000051 ], [ -124.875502405999981, 49.68818807500007 ], [ -124.879360978999927, 49.684201507000104 ], [ -124.880242853999931, 49.684585803000097 ], [ -124.880522779, 49.684707771000049 ], [ -124.880619372999931, 49.684968825000048 ], [ -124.88319624199994, 49.686013515000056 ], [ -124.88288435799997, 49.686102517000108 ], [ -124.882566259000015, 49.686193288000069 ], [ -124.882504866999938, 49.686210794000061 ], [ -124.88240778899997, 49.686238503000069 ], [ -124.880677435999928, 49.686781927000041 ], [ -124.880555183999917, 49.686820298000086 ], [ -124.87951723499998, 49.687113878000062 ], [ -124.877559924999943, 49.68766750700015 ], [ -124.877125920999958, 49.687795303000044 ], [ -124.876583424999964, 49.687954046000137 ], [ -124.876780242, 49.688244163000071 ], [ -124.876753142999959, 49.688573865000073 ], [ -124.875880017999989, 49.68832125400008 ], [ -124.874864789999904, 49.68904386400002 ], [ -124.877140532999931, 49.689637552000086 ], [ -124.877798438999918, 49.688876241000052 ], [ -124.877836214999959, 49.688887157000117 ], [ -124.879165748, 49.689271740000052 ], [ -124.878414649999939, 49.690368673000108 ], [ -124.880021184999961, 49.69075205900004 ], [ -124.879640831999922, 49.69126976000009 ], [ -124.876964201999925, 49.690634058000086 ], [ -124.87666117899991, 49.690909040000044 ], [ -124.875518484999958, 49.692110004000071 ], [ -124.87296117899993, 49.691189674000093 ], [ -124.872794085999928, 49.691370579000072 ], [ -124.870976668999944, 49.692041152000094 ], [ -124.870560568999906, 49.691843538000064 ], [ -124.869808802999955, 49.692605643000014 ], [ -124.869668702999917, 49.692526269000069 ], [ -124.869620428999923, 49.692796615000063 ], [ -124.869548925999965, 49.693196965000112 ], [ -124.869116450999968, 49.693598513000062 ], [ -124.871596881999949, 49.694097090000135 ], [ -124.870706108999968, 49.694498002000088 ], [ -124.869376469999978, 49.695266333000077 ], [ -124.868781169999963, 49.695043223000013 ], [ -124.867517412, 49.695860511000063 ], [ -124.867796403999989, 49.696051070000038 ], [ -124.869568079999979, 49.697261300000086 ], [ -124.870305144999961, 49.697740021000108 ], [ -124.873462419999925, 49.69979060700004 ], [ -124.873881449999942, 49.700027741000063 ], [ -124.874129521999976, 49.700168094000091 ], [ -124.875403220999914, 49.700729098000153 ], [ -124.875915998999986, 49.700896293000014 ], [ -124.87646042099999, 49.700958889000106 ], [ -124.877117887999972, 49.701034507000031 ], [ -124.876767680999976, 49.701754538000074 ], [ -124.878305945999969, 49.702031923000028 ], [ -124.878856634999948, 49.701214844000084 ], [ -124.87907728799992, 49.701232016000098 ], [ -124.880263895999931, 49.701187854000104 ], [ -124.879662101999912, 49.702474297000101 ], [ -124.88072649899999, 49.703490296000027 ], [ -124.88039483599999, 49.703486891000118 ], [ -124.880400053999935, 49.70362203400002 ], [ -124.880815878999954, 49.703615280000029 ], [ -124.880826293999945, 49.703884971000029 ], [ -124.881134740999983, 49.70387996000008 ], [ -124.881246301999965, 49.703986442000044 ], [ -124.88125254099999, 49.704147904000102 ], [ -124.881412740999934, 49.704145301000096 ], [ -124.881613588999983, 49.704337004000088 ], [ -124.882103877999924, 49.70464360000009 ], [ -124.88210504499996, 49.704673768000099 ], [ -124.882150929999909, 49.704673023000055 ], [ -124.88555090599999, 49.706798962000086 ], [ -124.887236236, 49.705669683000089 ], [ -124.887552688999932, 49.705664525000067 ], [ -124.887554429999909, 49.705709430000113 ], [ -124.887970697999933, 49.705713674000016 ], [ -124.887964847999982, 49.70556272200011 ], [ -124.88740438799999, 49.705557006000063 ], [ -124.888466599999973, 49.70484521 ], [ -124.889210185999957, 49.703706605000058 ], [ -124.889671017999916, 49.703000952000075 ], [ -124.88987399899996, 49.70269014000008 ], [ -124.8900685, 49.702392287000087 ], [ -124.89236286, 49.70279048200014 ], [ -124.892596401999953, 49.702831005000114 ], [ -124.893352266999926, 49.702962151000079 ], [ -124.89464935399991, 49.703187225000065 ], [ -124.899763658, 49.704074452000029 ], [ -124.899674155999946, 49.70314078600007 ], [ -124.902848433999978, 49.702953596000015 ], [ -124.903718953999928, 49.704760437000125 ], [ -124.906157612999891, 49.705183290000036 ], [ -124.906765305999969, 49.705156097000078 ], [ -124.90686033799993, 49.705138983000062 ], [ -124.90735688299999, 49.705049603000148 ], [ -124.908607219999965, 49.704751806000083 ], [ -124.909149301, 49.704622852000107 ], [ -124.909155094999974, 49.704770625000023 ], [ -124.909570924, 49.704763768000127 ], [ -124.909602646999929, 49.705572824000065 ], [ -124.909186811, 49.705579681000124 ], [ -124.909207957999925, 49.706119053000037 ], [ -124.907960434999922, 49.706139617000055 ], [ -124.907950127999982, 49.705876497000055 ], [ -124.90794986799996, 49.705869931000045 ], [ -124.907558098999957, 49.705876385000074 ], [ -124.907557232999949, 49.705912797000096 ], [ -124.907549000999936, 49.706258968000036 ], [ -124.907550107999981, 49.706287246000088 ], [ -124.90963147799999, 49.706308074000077 ], [ -124.909623796999981, 49.70611219500006 ], [ -124.911702995999988, 49.706077885000091 ], [ -124.911710864999975, 49.706278354000112 ], [ -124.911883195999962, 49.706280073000066 ], [ -124.911885839999982, 49.706168445000117 ], [ -124.912122752999949, 49.706170808000131 ], [ -124.912118833999898, 49.706071018000102 ], [ -124.912526888999977, 49.706064279000017 ], [ -124.912529928, 49.705935861000114 ], [ -124.912945905, 49.705940008 ], [ -124.912929324999965, 49.705517910000061 ], [ -124.912097656999947, 49.705531648000019 ], [ -124.91210824599996, 49.705801332000092 ], [ -124.91044489699999, 49.705828790000083 ], [ -124.910423737999935, 49.705289420000064 ], [ -124.910007904999929, 49.705296280000013 ], [ -124.91000191699996, 49.705143592000091 ], [ -124.90981383699993, 49.705141712000021 ], [ -124.909829992999931, 49.704460911000105 ], [ -124.90989919399999, 49.701544483000063 ], [ -124.910749324, 49.701552978000045 ], [ -124.910754772999965, 49.701323104000039 ], [ -124.915312127, 49.701368527000071 ], [ -124.915337651999891, 49.700287316000058 ], [ -124.91646887399996, 49.700298561000089 ], [ -124.916459579999952, 49.700062332000122 ], [ -124.916551990999935, 49.700060802000131 ], [ -124.916875366999975, 49.700055448000086 ], [ -124.916857025999917, 49.699589394000085 ], [ -124.916843528999934, 49.699246395000038 ], [ -124.918506645999926, 49.699218849000012 ], [ -124.918522835999923, 49.69962990600002 ], [ -124.91852789, 49.699758217000031 ], [ -124.918910147999938, 49.699751882000051 ], [ -124.919082758999963, 49.70250057400002 ], [ -124.923052410999944, 49.702249011000042 ], [ -124.923014687999981, 49.703040794000074 ], [ -124.920140396999955, 49.703132254000138 ], [ -124.919928954999975, 49.706464661000084 ], [ -124.919958380999972, 49.707690080000098 ], [ -124.92005893299995, 49.711876507000049 ], [ -124.917087041999963, 49.711791240000053 ], [ -124.916656191999905, 49.711778890000112 ], [ -124.916671105999981, 49.711032510000081 ], [ -124.91660290099999, 49.710808696000122 ], [ -124.916398702999956, 49.71065108300013 ], [ -124.916183012999937, 49.710568004000045 ] ], [ [ -124.916637022999936, 49.705242392000073 ], [ -124.916638501999955, 49.705179732000083 ], [ -124.915828433999977, 49.705171683000117 ], [ -124.91583308899996, 49.705290027000096 ], [ -124.916239010999917, 49.705294060000014 ], [ -124.91624032199995, 49.705238451000092 ], [ -124.916637022999936, 49.705242392000073 ] ], [ [ -124.890048869999973, 49.705653053000091 ], [ -124.890058202999967, 49.705893513000085 ], [ -124.890474044999948, 49.705886723000091 ], [ -124.890465137999968, 49.705657290000062 ], [ -124.890048869999973, 49.705653053000091 ] ], [ [ -124.879152574999964, 49.703642287000058 ], [ -124.879146084999945, 49.70347406600014 ], [ -124.878729834999959, 49.70346978700011 ], [ -124.878736748999955, 49.703649034000065 ], [ -124.879152574999964, 49.703642287000058 ] ], [ [ -124.868898706999943, 49.701109660000107 ], [ -124.868894563999973, 49.701277973000053 ], [ -124.869075838999947, 49.701279853000116 ], [ -124.869069201999977, 49.701106908000114 ], [ -124.868898706999943, 49.701109660000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.977336602284279", "sL_AssetLoss": "1672.3", "sL_BldgLoss": "1634.4", "sL_StrLoss": "1465", "sL_NStrLoss": "169.4", "sL_ContLoss": "37.9", "geom_point": "0101000020E6100000FA62EFC517395FC0A5AB4BF8EBDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.891330597999911, 49.726904251000079 ], [ -124.890769382999977, 49.726498204000087 ], [ -124.889705021999973, 49.725885798000071 ], [ -124.889212519, 49.725488915000049 ], [ -124.889222117999978, 49.725092127000082 ], [ -124.889555035999976, 49.725095515000049 ], [ -124.889553722999949, 49.725061722000071 ], [ -124.892019596999901, 49.725021460000072 ], [ -124.892023847999951, 49.724845302000034 ], [ -124.894598043999977, 49.726148631000051 ], [ -124.895466327999941, 49.726692999000136 ], [ -124.894735672999957, 49.72684250000006 ], [ -124.894348458999957, 49.726839847000058 ], [ -124.893636192999963, 49.726835006000087 ], [ -124.892876394999945, 49.726775109000073 ], [ -124.892375994999938, 49.726765488000062 ], [ -124.891572476999968, 49.726737593000095 ], [ -124.891330597999911, 49.726904251000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.739679290344592", "sL_AssetLoss": "293.1", "sL_BldgLoss": "216.8", "sL_StrLoss": "30.8", "sL_NStrLoss": "186", "sL_ContLoss": "76.3", "geom_point": "0101000020E61000007AFEF66DAF3A5FC050A9548141D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.915948322999981, 49.697642050000084 ], [ -124.915937716999949, 49.697372366000074 ], [ -124.914690423999929, 49.697393 ], [ -124.914677712999946, 49.697069607000074 ], [ -124.916649201999945, 49.697090589000091 ], [ -124.916651006999942, 49.697015084000078 ], [ -124.918123323999922, 49.69703412100003 ], [ -124.918739984999917, 49.697042114000112 ], [ -124.918774717999938, 49.697595245000052 ], [ -124.916631950999943, 49.697630737000054 ], [ -124.915948322999981, 49.697642050000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.978458592628052", "sL_AssetLoss": "626.7", "sL_BldgLoss": "613.2", "sL_StrLoss": "538", "sL_NStrLoss": "75.2", "sL_ContLoss": "13.5", "geom_point": "0101000020E61000006CF659C850395FC06635B808E7D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.894986358999986, 49.687287774000062 ], [ -124.895027235000015, 49.685587577000028 ], [ -124.89523915399991, 49.685851118000066 ], [ -124.896659166999925, 49.687304716000057 ], [ -124.894986358999986, 49.687287774000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.982775203287575", "sL_AssetLoss": "1143.7", "sL_BldgLoss": "1124", "sL_StrLoss": "999", "sL_NStrLoss": "125", "sL_ContLoss": "19.7", "geom_point": "0101000020E61000001CB73575A0385FC0A5E4ACBA54DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.88555090599999, 49.706798962000086 ], [ -124.882150929999909, 49.704673023000055 ], [ -124.882936713, 49.704660246000117 ], [ -124.88294714, 49.704929936000049 ], [ -124.884610484999882, 49.704902874000048 ], [ -124.884640543999978, 49.705679671000091 ], [ -124.885858974999934, 49.705692123000055 ], [ -124.887236236, 49.705669683000089 ], [ -124.88555090599999, 49.706798962000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.978529411764706", "sL_AssetLoss": "4080", "sL_BldgLoss": "3992.4", "sL_StrLoss": "3658", "sL_NStrLoss": "334.4", "sL_ContLoss": "87.6", "geom_point": "0101000020E6100000F796CD770B3A5FC076F31ADCD2D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.905456868999948, 49.695343224000084 ], [ -124.905465102, 49.694997593000089 ], [ -124.904539755999934, 49.694988301000087 ], [ -124.904596656999971, 49.69260134200006 ], [ -124.909281054999951, 49.692559212000113 ], [ -124.909150081999925, 49.695322852000047 ], [ -124.90914663699999, 49.69538019800013 ], [ -124.905456868999948, 49.695343224000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112373667", "BldgCostT": "76001667", "sL_LossRatio": "0.944444988479289", "sL_AssetLoss": "111308.23", "sL_BldgLoss": "105124.5", "sL_StrLoss": "92473.3", "sL_NStrLoss": "12651.2", "sL_ContLoss": "6183.73", "geom_point": "0101000020E61000008531C8E1BC385FC033DE9025F7D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.886306706999946, 49.705545804000117 ], [ -124.886329512999936, 49.704605022000074 ], [ -124.885431714999982, 49.704619645000037 ], [ -124.885421273999953, 49.704349956000051 ], [ -124.885005443999944, 49.704356726000086 ], [ -124.884994888999969, 49.704084022000082 ], [ -124.884676433999928, 49.704080766000089 ], [ -124.884678804999979, 49.703983070000099 ], [ -124.883326388999961, 49.703969231000059 ], [ -124.883329364999923, 49.703846789000067 ], [ -124.88107579299998, 49.70382369300011 ], [ -124.880892419999967, 49.703648666000028 ], [ -124.880896234999938, 49.703492037000061 ], [ -124.88072649899999, 49.703490296000027 ], [ -124.879662101999912, 49.702474297000101 ], [ -124.880263895999931, 49.701187854000104 ], [ -124.87907728799992, 49.701232016000098 ], [ -124.878856634999948, 49.701214844000084 ], [ -124.878305945999969, 49.702031923000028 ], [ -124.876767680999976, 49.701754538000074 ], [ -124.877117887999972, 49.701034507000031 ], [ -124.87646042099999, 49.700958889000106 ], [ -124.875915998999986, 49.700896293000014 ], [ -124.875403220999914, 49.700729098000153 ], [ -124.874129521999976, 49.700168094000091 ], [ -124.873881449999942, 49.700027741000063 ], [ -124.873462419999925, 49.69979060700004 ], [ -124.870305144999961, 49.697740021000108 ], [ -124.869568079999979, 49.697261300000086 ], [ -124.867796403999989, 49.696051070000038 ], [ -124.867517412, 49.695860511000063 ], [ -124.868781169999963, 49.695043223000013 ], [ -124.869376469999978, 49.695266333000077 ], [ -124.870706108999968, 49.694498002000088 ], [ -124.871596881999949, 49.694097090000135 ], [ -124.869116450999968, 49.693598513000062 ], [ -124.869548925999965, 49.693196965000112 ], [ -124.869620428999923, 49.692796615000063 ], [ -124.869668702999917, 49.692526269000069 ], [ -124.869808802999955, 49.692605643000014 ], [ -124.870560568999906, 49.691843538000064 ], [ -124.870976668999944, 49.692041152000094 ], [ -124.872794085999928, 49.691370579000072 ], [ -124.87296117899993, 49.691189674000093 ], [ -124.875518484999958, 49.692110004000071 ], [ -124.87666117899991, 49.690909040000044 ], [ -124.876964201999925, 49.690634058000086 ], [ -124.879640831999922, 49.69126976000009 ], [ -124.880021184999961, 49.69075205900004 ], [ -124.878414649999939, 49.690368673000108 ], [ -124.879165748, 49.689271740000052 ], [ -124.877836214999959, 49.688887157000117 ], [ -124.877798438999918, 49.688876241000052 ], [ -124.877140532999931, 49.689637552000086 ], [ -124.874864789999904, 49.68904386400002 ], [ -124.875880017999989, 49.68832125400008 ], [ -124.876753142999959, 49.688573865000073 ], [ -124.876780242, 49.688244163000071 ], [ -124.876583424999964, 49.687954046000137 ], [ -124.877125920999958, 49.687795303000044 ], [ -124.877559924999943, 49.68766750700015 ], [ -124.87951723499998, 49.687113878000062 ], [ -124.880555183999917, 49.686820298000086 ], [ -124.880677435999928, 49.686781927000041 ], [ -124.88240778899997, 49.686238503000069 ], [ -124.882504866999938, 49.686210794000061 ], [ -124.882566259000015, 49.686193288000069 ], [ -124.88288435799997, 49.686102517000108 ], [ -124.88319624199994, 49.686013515000056 ], [ -124.883619342999921, 49.68589277500012 ], [ -124.884960893999946, 49.685509900000035 ], [ -124.88579193299995, 49.685288999000143 ], [ -124.886108690999905, 49.685229677000038 ], [ -124.886351603999969, 49.685184206000024 ], [ -124.886612152999973, 49.685135399000075 ], [ -124.886625593999966, 49.685132908000114 ], [ -124.887715448000023, 49.685036076000088 ], [ -124.890386708999984, 49.684740349000087 ], [ -124.891283422999962, 49.684607404000111 ], [ -124.893628983999946, 49.684259662000059 ], [ -124.893909497999985, 49.684197494000017 ], [ -124.894911860999969, 49.685444096 ], [ -124.892281810999975, 49.685417404000106 ], [ -124.8922768259999, 49.68562420000012 ], [ -124.891820704999958, 49.685619564000099 ], [ -124.891772534000012, 49.687617374000098 ], [ -124.893151229999887, 49.687631380000028 ], [ -124.893138661999927, 49.688153301000021 ], [ -124.893578946999952, 49.68815777 ], [ -124.89355974599998, 49.688955344000057 ], [ -124.894742650999945, 49.688967342000133 ], [ -124.894698938999966, 49.690784874000023 ], [ -124.895611830999954, 49.690794124000064 ], [ -124.895606590999975, 49.691012185000091 ], [ -124.896428211999933, 49.69102050500009 ], [ -124.896424595999946, 49.69117108800004 ], [ -124.897175492999963, 49.691178685000047 ], [ -124.897168313999913, 49.691477845000108 ], [ -124.897961580999961, 49.691485866000065 ], [ -124.897875309999975, 49.69508313500004 ], [ -124.893670766999946, 49.69504055800013 ], [ -124.893650588999918, 49.695878639000043 ], [ -124.891706571999933, 49.695858898000068 ], [ -124.891705513999938, 49.695902787000072 ], [ -124.891236041999932, 49.695898015000111 ], [ -124.891211753, 49.696904597000071 ], [ -124.885670114999968, 49.696848109000072 ], [ -124.885681457999965, 49.696380377000011 ], [ -124.881718595000024, 49.696339808000118 ], [ -124.881740859000018, 49.695424926000108 ], [ -124.881436439999973, 49.695421804000098 ], [ -124.881448615999957, 49.694921606999984 ], [ -124.880051816999938, 49.694907269000119 ], [ -124.880069484999964, 49.694182328000132 ], [ -124.878788475999968, 49.694203122000054 ], [ -124.878778074999943, 49.69393343100004 ], [ -124.877946588, 49.693946921000048 ], [ -124.877936191999964, 49.69367723000007 ], [ -124.87752045, 49.693683973000056 ], [ -124.877495683999925, 49.69304125700009 ], [ -124.877489272999966, 49.692874900000064 ], [ -124.877905007999971, 49.692868157000049 ], [ -124.877894612999924, 49.69259846700001 ], [ -124.878726077999914, 49.692584977000145 ], [ -124.878717077999937, 49.692351564000077 ], [ -124.8770880599999, 49.692334800000054 ], [ -124.877107313999915, 49.691546860000109 ], [ -124.876956141999955, 49.691545303000098 ], [ -124.876949783999947, 49.691805467000066 ], [ -124.87664393599999, 49.691802316000143 ], [ -124.87664037899999, 49.691947775000102 ], [ -124.876206451999948, 49.691943302000027 ], [ -124.876201074999926, 49.692163185000048 ], [ -124.875526879999981, 49.692156234000016 ], [ -124.875331343999974, 49.692154217000073 ], [ -124.875322060999949, 49.692533506000053 ], [ -124.874187117999938, 49.692521793000083 ], [ -124.874167362999913, 49.693328133000101 ], [ -124.873950536999956, 49.693325894000061 ], [ -124.873940976999961, 49.693716037000108 ], [ -124.873779869999964, 49.69371437300002 ], [ -124.872880336999984, 49.693705079000054 ], [ -124.872860679999974, 49.694506462000042 ], [ -124.872143752999975, 49.694499050000083 ], [ -124.872146884999935, 49.69458056600012 ], [ -124.872114392999947, 49.694581091000025 ], [ -124.87207914, 49.696017279000039 ], [ -124.871036500999978, 49.696006489000048 ], [ -124.871030256999958, 49.69626064900006 ], [ -124.874844766999956, 49.69630007300001 ], [ -124.874816489999901, 49.697454829000051 ], [ -124.876117390999951, 49.697468244000028 ], [ -124.876105234999926, 49.697965176000068 ], [ -124.876886590999959, 49.697973225000048 ], [ -124.876867981999965, 49.698734550000033 ], [ -124.878901561999939, 49.698755475000091 ], [ -124.878895001999965, 49.699024333000068 ], [ -124.88096789899997, 49.699045622000014 ], [ -124.880959554999947, 49.69938824600009 ], [ -124.885496548999967, 49.69943470700008 ], [ -124.88548841799998, 49.69976994200006 ], [ -124.886295538999946, 49.699778188000067 ], [ -124.886294289999967, 49.699829686000093 ], [ -124.89061017899995, 49.699873676000038 ], [ -124.890591536999949, 49.70064575500006 ], [ -124.89101551099999, 49.700650068000066 ], [ -124.891008194000023, 49.700953231000071 ], [ -124.891008741999926, 49.700953237000135 ], [ -124.891013390999973, 49.700760609000056 ], [ -124.896555507999963, 49.700816825000089 ], [ -124.896548693999961, 49.701100493000098 ], [ -124.897863774999948, 49.7011137920001 ], [ -124.897858074999974, 49.701351404000036 ], [ -124.899575725999938, 49.701368749000075 ], [ -124.899572537999944, 49.701501827000044 ], [ -124.900702290999988, 49.701513220000102 ], [ -124.900672666999952, 49.70275130300012 ], [ -124.901158630999959, 49.702743324000032 ], [ -124.901163180999959, 49.702553067000053 ], [ -124.901995161999935, 49.70256144600009 ], [ -124.901991190999965, 49.702459791000074 ], [ -124.902407001999975, 49.702452961000105 ], [ -124.902385934999984, 49.701913587000035 ], [ -124.901138515999946, 49.701934075000054 ], [ -124.901106936999895, 49.701125015000059 ], [ -124.902354335, 49.701104527000027 ], [ -124.902322735999988, 49.700295467000068 ], [ -124.903154320999988, 49.700281801000095 ], [ -124.903143782999948, 49.700012114000046 ], [ -124.905222728999959, 49.699977923000048 ], [ -124.905243825999932, 49.700517295000061 ], [ -124.90565962, 49.70051045200011 ], [ -124.905691274, 49.701319511000086 ], [ -124.90527547399995, 49.701326354000074 ], [ -124.90532509800002, 49.702594920000116 ], [ -124.906705526999957, 49.702608767000079 ], [ -124.906681085999978, 49.70363582800006 ], [ -124.907611154999969, 49.703645147000088 ], [ -124.907583776999971, 49.704796523000041 ], [ -124.907907607999931, 49.704791188000051 ], [ -124.907897040999941, 49.70452150300018 ], [ -124.909144521999934, 49.704500940000059 ], [ -124.909149301, 49.704622852000107 ], [ -124.908607219999965, 49.704751806000083 ], [ -124.90735688299999, 49.705049603000148 ], [ -124.90686033799993, 49.705138983000062 ], [ -124.906765305999969, 49.705156097000078 ], [ -124.906157612999891, 49.705183290000036 ], [ -124.903718953999928, 49.704760437000125 ], [ -124.902848433999978, 49.702953596000015 ], [ -124.899674155999946, 49.70314078600007 ], [ -124.899763658, 49.704074452000029 ], [ -124.89464935399991, 49.703187225000065 ], [ -124.893352266999926, 49.702962151000079 ], [ -124.892596401999953, 49.702831005000114 ], [ -124.89236286, 49.70279048200014 ], [ -124.8900685, 49.702392287000087 ], [ -124.88987399899996, 49.70269014000008 ], [ -124.889671017999916, 49.703000952000075 ], [ -124.889210185999957, 49.703706605000058 ], [ -124.888466599999973, 49.70484521 ], [ -124.88740438799999, 49.705557006000063 ], [ -124.886306706999946, 49.705545804000117 ] ], [ [ -124.903217547999972, 49.701899920000088 ], [ -124.903196469999941, 49.701360547000021 ], [ -124.902780668999952, 49.701367381000111 ], [ -124.902801740999934, 49.701906754000021 ], [ -124.903217547999972, 49.701899920000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16832084", "BldgCostT": "11608334", "sL_LossRatio": "0.988233603678396", "sL_AssetLoss": "12527.2", "sL_BldgLoss": "12379.8", "sL_StrLoss": "11510", "sL_NStrLoss": "869.8", "sL_ContLoss": "147.4", "geom_point": "0101000020E6100000D499DE7273375FC0832E23ED2DDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.86308892699995, 49.707387851000114 ], [ -124.862747130999963, 49.706782908000029 ], [ -124.862351242999949, 49.706914951000094 ], [ -124.86233190199999, 49.706921399000123 ], [ -124.862319194999941, 49.706845608000052 ], [ -124.861439903999951, 49.70523198900004 ], [ -124.861340418999944, 49.704802141000066 ], [ -124.863040578999986, 49.704285523000102 ], [ -124.863770998999925, 49.705189906000037 ], [ -124.865166488999961, 49.704231896000096 ], [ -124.86348355, 49.703092474000137 ], [ -124.863417423999948, 49.703045510000081 ], [ -124.863228663999962, 49.70291274300012 ], [ -124.863405359999931, 49.702582340000056 ], [ -124.863432392999968, 49.702563907000112 ], [ -124.863942693999917, 49.70176411300011 ], [ -124.864303293999981, 49.702261287000056 ], [ -124.865403008999934, 49.701171047000081 ], [ -124.868530411999984, 49.703214408000058 ], [ -124.870750603999937, 49.704685692000041 ], [ -124.871092202999989, 49.704885298000058 ], [ -124.871670409999965, 49.705045086000084 ], [ -124.873154909999968, 49.704982195000149 ], [ -124.873770798, 49.705020995000048 ], [ -124.874094604, 49.705096290000093 ], [ -124.874226525999916, 49.70520199500001 ], [ -124.874234507999944, 49.705328899000023 ], [ -124.874111251999963, 49.705450846000062 ], [ -124.874109495999946, 49.705452594000114 ], [ -124.873890279999955, 49.705514187000091 ], [ -124.873641417999934, 49.705491900000048 ], [ -124.873234499999967, 49.705410311000023 ], [ -124.872628789999965, 49.705410390000097 ], [ -124.871980713999932, 49.705501705000145 ], [ -124.871590317999946, 49.70561717300005 ], [ -124.870474714999929, 49.70584013700006 ], [ -124.869997760999979, 49.705939838000049 ], [ -124.870010589999978, 49.705622873000031 ], [ -124.868081678999914, 49.706294307000107 ], [ -124.866767409999923, 49.70619158700007 ], [ -124.866701095999986, 49.70618639500001 ], [ -124.865344089999979, 49.70624419500006 ], [ -124.863599391999955, 49.706457298000025 ], [ -124.863354840999975, 49.706656252000109 ], [ -124.863545974999965, 49.707356603000044 ], [ -124.86308892699995, 49.707387851000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89767000", "BldgCostT": "59995000", "sL_LossRatio": "0.938576554128993", "sL_AssetLoss": "82201.51", "sL_BldgLoss": "77152.41", "sL_StrLoss": "66152.71", "sL_NStrLoss": "10999.7", "sL_ContLoss": "5049.1", "geom_point": "0101000020E6100000EF3C5C38F1385FC04C72E1BC0FD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.880866891999958, 49.682465989000086 ], [ -124.884340490999932, 49.678001107000036 ], [ -124.886357899999965, 49.675673894000155 ], [ -124.888233338999953, 49.674553089000064 ], [ -124.891326700999926, 49.674487800000051 ], [ -124.891799995999946, 49.674489117000043 ], [ -124.892091279999946, 49.67448991800007 ], [ -124.892541337999972, 49.674491158000059 ], [ -124.893211614999927, 49.674496325000078 ], [ -124.894226966999952, 49.674504137000042 ], [ -124.89517442099999, 49.674511400000029 ], [ -124.89553827899999, 49.674514196000096 ], [ -124.897302312999926, 49.674527702000084 ], [ -124.897519780000025, 49.674528134000113 ], [ -124.897477105999911, 49.677808381000041 ], [ -124.897470717999951, 49.678271932000058 ], [ -124.897447605999957, 49.679953862000012 ], [ -124.897421242999954, 49.681871101000084 ], [ -124.897365914999966, 49.682386897000143 ], [ -124.897067405999934, 49.682874997000042 ], [ -124.896725301999965, 49.683162077000084 ], [ -124.896252984999961, 49.683446986000085 ], [ -124.8958024249999, 49.683636399000036 ], [ -124.89535451899998, 49.683824673000046 ], [ -124.894649867999988, 49.684033432000057 ], [ -124.893909497999985, 49.684197494000017 ], [ -124.893628983999946, 49.684259662000059 ], [ -124.891283422999962, 49.684607404000111 ], [ -124.890386708999984, 49.684740349000087 ], [ -124.887715448000023, 49.685036076000088 ], [ -124.886625593999966, 49.685132908000114 ], [ -124.886612152999973, 49.685135399000075 ], [ -124.886351603999969, 49.685184206000024 ], [ -124.886108690999905, 49.685229677000038 ], [ -124.88579193299995, 49.685288999000143 ], [ -124.884960893999946, 49.685509900000035 ], [ -124.883619342999921, 49.68589277500012 ], [ -124.88319624199994, 49.686013515000056 ], [ -124.880619372999931, 49.684968825000048 ], [ -124.880522779, 49.684707771000049 ], [ -124.880242853999931, 49.684585803000097 ], [ -124.879360978999927, 49.684201507000104 ], [ -124.879619576999985, 49.683934301000122 ], [ -124.880866891999958, 49.682465989000086 ] ], [ [ -124.890225938999961, 49.680581664000087 ], [ -124.8902432309999, 49.679865388000067 ], [ -124.888796219000014, 49.679850646000077 ], [ -124.888792424999963, 49.680007632000084 ], [ -124.889469737999931, 49.67999657900004 ], [ -124.889492127999944, 49.680574191000041 ], [ -124.890225938999961, 49.680581664000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83080167", "BldgCostT": "57296667", "sL_LossRatio": "0.980689302619984", "sL_AssetLoss": "76212.68", "sL_BldgLoss": "74740.96", "sL_StrLoss": "68580.16", "sL_NStrLoss": "6160.8", "sL_ContLoss": "1471.72", "geom_point": "0101000020E6100000FFE52009373A5FC05C774E0E7AD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.905544368999969, 49.68420723600012 ], [ -124.905540531999947, 49.683961612000104 ], [ -124.90737557099996, 49.68398541500008 ], [ -124.90737364899995, 49.683192900000037 ], [ -124.906220030000014, 49.683176813000095 ], [ -124.906229939999946, 49.682761308000146 ], [ -124.906414735999959, 49.681980581000118 ], [ -124.908602644, 49.682015991000114 ], [ -124.91034081, 49.682032485000015 ], [ -124.911441791999934, 49.682047100000077 ], [ -124.914174107999912, 49.682083299000091 ], [ -124.914136717999924, 49.682902494000089 ], [ -124.91411020699995, 49.683441004000059 ], [ -124.91355970099994, 49.68375399000017 ], [ -124.913444794999947, 49.683752810000016 ], [ -124.912264883999967, 49.683734794000102 ], [ -124.911050328999934, 49.683717248000072 ], [ -124.909774930999944, 49.683696391000097 ], [ -124.909781106999986, 49.684019396000096 ], [ -124.909728972999957, 49.685634463000063 ], [ -124.909621461, 49.685667560000091 ], [ -124.908524803999981, 49.685643986000024 ], [ -124.907302085999973, 49.685619166000066 ], [ -124.907346479999958, 49.684801007000033 ], [ -124.906410390999952, 49.684782642000066 ], [ -124.906264041, 49.684730369000093 ], [ -124.905840326999936, 49.68457901500004 ], [ -124.905657491999975, 49.68440356500011 ], [ -124.905544368999969, 49.68420723600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "266188834", "BldgCostT": "182163334", "sL_LossRatio": "0.977960433314803", "sL_AssetLoss": "228421.46", "sL_BldgLoss": "223387.15", "sL_StrLoss": "207036.95", "sL_NStrLoss": "16350.2", "sL_ContLoss": "5034.31", "geom_point": "0101000020E61000001C255415BF395FC091CAF36427D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.904600779999953, 49.685748097000079 ], [ -124.904393502999952, 49.685539879000018 ], [ -124.90407933899999, 49.685224278000099 ], [ -124.903725811999905, 49.684944583000089 ], [ -124.903494762999941, 49.684810664000032 ], [ -124.903360980999977, 49.684733106000103 ], [ -124.903075488999917, 49.684620481000124 ], [ -124.90262853099992, 49.684483762000085 ], [ -124.902381347999949, 49.684449784000073 ], [ -124.901811072, 49.684371181000053 ], [ -124.901168926999972, 49.684284642000108 ], [ -124.901256948999929, 49.683964575000068 ], [ -124.901419301999937, 49.683374137000058 ], [ -124.900501016999925, 49.683248018000086 ], [ -124.899651846999973, 49.68313141100009 ], [ -124.898543057999959, 49.682979910000093 ], [ -124.898684424999914, 49.681879361000071 ], [ -124.897421242999954, 49.681871101000084 ], [ -124.897447605999957, 49.679953862000012 ], [ -124.897470717999951, 49.678271932000058 ], [ -124.897477105999911, 49.677808381000041 ], [ -124.897519780000025, 49.674528134000113 ], [ -124.8995221099999, 49.674550207000095 ], [ -124.90081247399992, 49.674570402000093 ], [ -124.902038670999929, 49.6745827640001 ], [ -124.902180608999956, 49.674584212000084 ], [ -124.902075581999938, 49.674744991000047 ], [ -124.901996214999897, 49.677693074000068 ], [ -124.901979435999962, 49.678317616000037 ], [ -124.904212032999936, 49.678381653000038 ], [ -124.904233845999926, 49.678930152000078 ], [ -124.90428479399999, 49.68026329200012 ], [ -124.906461118, 49.680030806000076 ], [ -124.906414735999959, 49.681980581000118 ], [ -124.906229939999946, 49.682761308000146 ], [ -124.906220030000014, 49.683176813000095 ], [ -124.90737364899995, 49.683192900000037 ], [ -124.90737557099996, 49.68398541500008 ], [ -124.905540531999947, 49.683961612000104 ], [ -124.905544368999969, 49.68420723600012 ], [ -124.905657491999975, 49.68440356500011 ], [ -124.905840326999936, 49.68457901500004 ], [ -124.906264041, 49.684730369000093 ], [ -124.906410390999952, 49.684782642000066 ], [ -124.907346479999958, 49.684801007000033 ], [ -124.907302085999973, 49.685619166000066 ], [ -124.908524803999981, 49.685643986000024 ], [ -124.909621461, 49.685667560000091 ], [ -124.909728972999957, 49.685634463000063 ], [ -124.909724121999915, 49.687308838000071 ], [ -124.90972359200002, 49.687496459000052 ], [ -124.90769045799999, 49.687465317000076 ], [ -124.907214776999965, 49.687426366000082 ], [ -124.906959619999924, 49.687380575000049 ], [ -124.906789871999976, 49.687350121000087 ], [ -124.906356920999926, 49.687204559000129 ], [ -124.905900894, 49.686980507000072 ], [ -124.905560907999956, 49.686712634000067 ], [ -124.904600779999953, 49.685748097000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137423750", "BldgCostT": "89465000", "sL_LossRatio": "0.931611033309805", "sL_AssetLoss": "103975.69", "sL_BldgLoss": "96864.9", "sL_StrLoss": "83402.4", "sL_NStrLoss": "13462.5", "sL_ContLoss": "7110.79", "geom_point": "0101000020E6100000D436A4D5B93A5FC0FBA37FB4C5DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.921334077999944, 49.736297812000039 ], [ -124.918395324999921, 49.735234292000044 ], [ -124.918048002999939, 49.735081495000067 ], [ -124.917195903000021, 49.73451629400008 ], [ -124.916975982999958, 49.734432296000065 ], [ -124.916961796999914, 49.734431680000085 ], [ -124.916535403999944, 49.734413493000034 ], [ -124.915689897999968, 49.734392516000135 ], [ -124.914854090999967, 49.734370697000088 ], [ -124.914433128999946, 49.734359896000043 ], [ -124.913482015999961, 49.734335499000075 ], [ -124.911406462999963, 49.734283417000029 ], [ -124.909917106999927, 49.734246004000035 ], [ -124.909926878999926, 49.733949225000082 ], [ -124.907914959999957, 49.733935126000148 ], [ -124.90762643699999, 49.733933101000069 ], [ -124.906910939999975, 49.733928054000046 ], [ -124.90445771399996, 49.732004706000033 ], [ -124.904045571999973, 49.732305403000112 ], [ -124.903801210999916, 49.732669105000056 ], [ -124.90359734499999, 49.732145293000045 ], [ -124.902941818999977, 49.73143167100001 ], [ -124.902588139999978, 49.731141246000085 ], [ -124.901987005999956, 49.730820365000106 ], [ -124.900324456999954, 49.730118239000078 ], [ -124.898470455000023, 49.729379553000044 ], [ -124.898450770999887, 49.729371715000099 ], [ -124.898368168, 49.729290818000088 ], [ -124.898337170999952, 49.729194213 ], [ -124.898324483999971, 49.728443307000049 ], [ -124.898315401999966, 49.727906806000121 ], [ -124.898258724999963, 49.726919527000071 ], [ -124.898282449999925, 49.726796533 ], [ -124.898424838999958, 49.726642321000078 ], [ -124.898957212999903, 49.726412928000038 ], [ -124.904594518999929, 49.726468403000133 ], [ -124.904614302999903, 49.72697386200015 ], [ -124.903311749999943, 49.726995280000146 ], [ -124.903283970999951, 49.728158321000116 ], [ -124.903492315999969, 49.728160414000122 ], [ -124.903486619999939, 49.728398934000012 ], [ -124.904011010999909, 49.728404202000078 ], [ -124.904007311999976, 49.728559165000043 ], [ -124.90444800399996, 49.728563591000075 ], [ -124.904440901999962, 49.72886125600008 ], [ -124.904609624999978, 49.728862951000067 ], [ -124.904688192999984, 49.728861657000088 ], [ -124.904667079999953, 49.728322288000086 ], [ -124.905083110999897, 49.728315444000032 ], [ -124.905061995999944, 49.727776074000069 ], [ -124.905478020999922, 49.727769230000071 ], [ -124.905446340999916, 49.72696017400007 ], [ -124.905030320999984, 49.726967019 ], [ -124.905010961999963, 49.726472490000049 ], [ -124.906676733999944, 49.72648882000005 ], [ -124.906683831999928, 49.72666994700009 ], [ -124.906850039999981, 49.726667210000102 ], [ -124.907099847999945, 49.726663096000053 ], [ -124.907142123999947, 49.727741835000074 ], [ -124.906726097999965, 49.727748686000062 ], [ -124.906757801999959, 49.728557740000085 ], [ -124.906341767999919, 49.72856458900003 ], [ -124.906341830999907, 49.728566180000023 ], [ -124.906818598999919, 49.728570957000038 ], [ -124.90682492699996, 49.728305176000021 ], [ -124.906894637999955, 49.728305874000071 ], [ -124.906906853999942, 49.727792776000086 ], [ -124.907523814999962, 49.727798955 ], [ -124.907554674999929, 49.726501916000096 ], [ -124.909866641999926, 49.726542231000046 ], [ -124.910199275999929, 49.726548024000088 ], [ -124.911389183999958, 49.726568749000137 ], [ -124.911836290999986, 49.724946497000076 ], [ -124.912187527999933, 49.724953927000051 ], [ -124.913446791999931, 49.724980499000033 ], [ -124.913248514999978, 49.724455005 ], [ -124.912835602999962, 49.723620598000124 ], [ -124.912814930999957, 49.723590162000065 ], [ -124.912627452999985, 49.723313999 ], [ -124.911660617999985, 49.723303433000119 ], [ -124.911130037999925, 49.723297635000073 ], [ -124.911111645999981, 49.722864093000112 ], [ -124.911364718999891, 49.722883969000051 ], [ -124.912390309, 49.722964620000049 ], [ -124.911899922999936, 49.722242160000064 ], [ -124.911817191999958, 49.722120311000047 ], [ -124.911297592999972, 49.721354802000114 ], [ -124.910585014999967, 49.720825899000083 ], [ -124.910467202999925, 49.720627120000074 ], [ -124.909702501999959, 49.719336605000052 ], [ -124.909191982999943, 49.718766592000094 ], [ -124.908867022999956, 49.7183235030001 ], [ -124.908826400999885, 49.718107205000095 ], [ -124.908837005999928, 49.717925533000042 ], [ -124.908903506999934, 49.716788382000139 ], [ -124.908907286999963, 49.716550459000118 ], [ -124.908925325999974, 49.715410777000081 ], [ -124.908931481999943, 49.715022899000139 ], [ -124.914453402999953, 49.714954793000118 ], [ -124.916745595999942, 49.714925408000077 ], [ -124.917274300999964, 49.714922067000089 ], [ -124.921741114999961, 49.71489393700012 ], [ -124.925732563999958, 49.714970312000098 ], [ -124.926016393999944, 49.71497572600007 ], [ -124.92833966100001, 49.715020128000063 ], [ -124.928626090999927, 49.715023916000078 ], [ -124.929864107999975, 49.715040482000063 ], [ -124.933179135999978, 49.715082844000023 ], [ -124.93372098899998, 49.715090829000083 ], [ -124.933711821999964, 49.71542536200019 ], [ -124.933658802999915, 49.71699177700004 ], [ -124.933627000999977, 49.718063671000095 ], [ -124.933609456999974, 49.718667403000055 ], [ -124.933424567999907, 49.718670490000051 ], [ -124.933448148999943, 49.719264172000052 ], [ -124.933589675999912, 49.719265555000085 ], [ -124.933545222999925, 49.720574227000036 ], [ -124.933356605999947, 49.726124068000047 ], [ -124.933312056, 49.726669620000038 ], [ -124.93319617399996, 49.727239652000044 ], [ -124.932880925999953, 49.727797850000044 ], [ -124.932495655999944, 49.728267161000126 ], [ -124.932101805999963, 49.728623158000083 ], [ -124.930234333999948, 49.730041402000047 ], [ -124.926978270999896, 49.732513818000108 ], [ -124.927038724999989, 49.729926985000112 ], [ -124.929648418999989, 49.729952612000055 ], [ -124.929659423999937, 49.729480510000066 ], [ -124.92905158799999, 49.729474547000109 ], [ -124.929117608999945, 49.726643886000062 ], [ -124.928542542999949, 49.726638241000103 ], [ -124.928626471999962, 49.723041107000071 ], [ -124.929764073999976, 49.723052271000029 ], [ -124.929769342999947, 49.722826124000044 ], [ -124.928396171000017, 49.722812647000076 ], [ -124.928462015999941, 49.719990774000081 ], [ -124.925300025999917, 49.719959675000041 ], [ -124.925306286999955, 49.719692151000061 ], [ -124.924271004, 49.719681949000076 ], [ -124.924320563, 49.717566099000095 ], [ -124.92311679099997, 49.71755422399999 ], [ -124.92311856, 49.71747876900006 ], [ -124.919645761999945, 49.717444435000068 ], [ -124.919668127999898, 49.716493631000048 ], [ -124.919051297999914, 49.716487522000072 ], [ -124.919051455999949, 49.716480853000093 ], [ -124.918770840999969, 49.71648550400009 ], [ -124.918755991999944, 49.716108751000085 ], [ -124.917664943, 49.716097932000089 ], [ -124.917655367999927, 49.71650418500009 ], [ -124.915893453999971, 49.716486691000085 ], [ -124.915877535999968, 49.717161028000049 ], [ -124.91503866799998, 49.717152689000095 ], [ -124.91503381499993, 49.717358148000066 ], [ -124.913398518999983, 49.717341874000063 ], [ -124.913393958999933, 49.717534589000067 ], [ -124.912684609999943, 49.717527522000104 ], [ -124.912674876999915, 49.717938638000057 ], [ -124.913377108999967, 49.717945634000067 ], [ -124.913362626999941, 49.718557660000066 ], [ -124.914552601999972, 49.718569506000023 ], [ -124.914531861999976, 49.719446942000083 ], [ -124.914648750999945, 49.719448105000033 ], [ -124.914634238999952, 49.720062148000089 ], [ -124.915581385999971, 49.72004648300004 ], [ -124.915609754999977, 49.720767337000133 ], [ -124.915825187999957, 49.720769478000143 ], [ -124.91581157899995, 49.721345909000036 ], [ -124.916390901999961, 49.721351664000032 ], [ -124.916377460999939, 49.721921254000065 ], [ -124.916487702999959, 49.721922349000096 ], [ -124.916487629999907, 49.721920503000092 ], [ -124.918151521999945, 49.721892952000061 ], [ -124.918183407999962, 49.722702002000105 ], [ -124.916570627999974, 49.722728706000019 ], [ -124.916565782999939, 49.722934096000081 ], [ -124.918080433999975, 49.722949125000106 ], [ -124.918079528999954, 49.722987551000102 ], [ -124.918771209999974, 49.722994407000115 ], [ -124.918747232999976, 49.724012686000101 ], [ -124.920865491999933, 49.724033656000053 ], [ -124.920780952999948, 49.727630779000073 ], [ -124.920226145999948, 49.727625290000056 ], [ -124.920205383999985, 49.728508191000067 ], [ -124.916363785999977, 49.728470112000082 ], [ -124.916357544999968, 49.72873458600003 ], [ -124.916198045999948, 49.728733002000112 ], [ -124.916157535999929, 49.730449087000089 ], [ -124.916088159999902, 49.730448398000085 ], [ -124.916071476999917, 49.731155088000072 ], [ -124.915607846999976, 49.7311504810001 ], [ -124.915586299000026, 49.732062803000076 ], [ -124.915978873999947, 49.732066703000065 ], [ -124.915973773999909, 49.732282706000014 ], [ -124.919483753999913, 49.732317512000108 ], [ -124.919481053999945, 49.732432252000088 ], [ -124.91992044399997, 49.732436601000046 ], [ -124.919911546999984, 49.732814828000151 ], [ -124.920534043999965, 49.732820986000029 ], [ -124.920474638999963, 49.735347400000116 ], [ -124.920763576999946, 49.73534260800006 ], [ -124.920773216999933, 49.735586771000044 ], [ -124.922022790000014, 49.735599119000064 ], [ -124.922001182999978, 49.735052216000049 ], [ -124.922417267999961, 49.735045309000071 ], [ -124.922395952999977, 49.734505945000123 ], [ -124.923228114, 49.734492128000042 ], [ -124.923217451999932, 49.734222447000036 ], [ -124.924465681999934, 49.734201710000043 ], [ -124.924474122000021, 49.734415045000034 ], [ -124.924134934999969, 49.734672547000073 ], [ -124.923687407999964, 49.735012316000088 ], [ -124.923281386999932, 49.735349212000095 ], [ -124.922978791999952, 49.735715921000072 ], [ -124.922798304999944, 49.736135938000082 ], [ -124.922748089, 49.736505122000011 ], [ -124.92279571, 49.736838442000085 ], [ -124.922924704999971, 49.737136541000019 ], [ -124.923116104999934, 49.737371343000092 ], [ -124.922776182999925, 49.737494843000029 ], [ -124.922553782999927, 49.737513327000102 ], [ -124.922385200999912, 49.737486538000041 ], [ -124.922207395999962, 49.737379536000105 ], [ -124.921985012999968, 49.736944882000067 ], [ -124.92179900499994, 49.736581206000025 ], [ -124.921598599999982, 49.736433496000089 ], [ -124.921423369999957, 49.736343613000045 ], [ -124.921334077999944, 49.736297812000039 ] ], [ [ -124.906262178999938, 49.729323438000073 ], [ -124.906267369999966, 49.729105532000112 ], [ -124.905946862999969, 49.729110807000104 ], [ -124.90595507099998, 49.729320360000031 ], [ -124.906262178999938, 49.729323438000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93682833", "BldgCostT": "63873333", "sL_LossRatio": "0.988670611494738", "sL_AssetLoss": "63235.54", "sL_BldgLoss": "62519.12", "sL_StrLoss": "57850.12", "sL_NStrLoss": "4669", "sL_ContLoss": "716.42", "geom_point": "0101000020E61000007E411C35703C5FC0C7F4C641F0D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.953716800999956, 49.652617403000107 ], [ -124.953144584999961, 49.652554706000039 ], [ -124.95296791, 49.652648691000131 ], [ -124.952664309999975, 49.652653004000115 ], [ -124.952123420999939, 49.652311198000042 ], [ -124.95190081, 49.652269900000142 ], [ -124.951699359999949, 49.652275399000111 ], [ -124.951703798999915, 49.652080567000098 ], [ -124.951907405000028, 49.652063385000098 ], [ -124.95209628, 49.651987894000037 ], [ -124.951940512999954, 49.651532105000072 ], [ -124.951722330999942, 49.651267417000071 ], [ -124.951724597999913, 49.651167919000059 ], [ -124.951636132, 49.651169411000105 ], [ -124.951527655999882, 49.651096833000111 ], [ -124.951509446999964, 49.650641525 ], [ -124.950727121999989, 49.650633992000095 ], [ -124.950712884999987, 49.650626298000077 ], [ -124.950324440999935, 49.650546465000083 ], [ -124.950352837, 49.649302 ], [ -124.950209093999945, 49.649304423000054 ], [ -124.950219870999959, 49.649574104000123 ], [ -124.948708870999951, 49.649599554000069 ], [ -124.948575249999976, 49.649715337000096 ], [ -124.947672092999952, 49.649418612000048 ], [ -124.947339182999926, 49.64934870200004 ], [ -124.945128784999966, 49.648884496000072 ], [ -124.944713807999989, 49.648883110000092 ], [ -124.944335516999985, 49.648781996000068 ], [ -124.943362994999944, 49.648032902000033 ], [ -124.94292989799996, 49.647906108000022 ], [ -124.942762397999957, 49.647548607000026 ], [ -124.941701693999903, 49.646639987000107 ], [ -124.940237888999931, 49.645719903000064 ], [ -124.938418602999931, 49.644895296000144 ], [ -124.937438599999894, 49.644678787000082 ], [ -124.937077996999932, 49.644666015000062 ], [ -124.935538076999961, 49.645232880000023 ], [ -124.935498668999983, 49.645233540000042 ], [ -124.935375040999972, 49.645280164000077 ], [ -124.934959840999937, 49.645346464000063 ], [ -124.934657041999941, 49.645476864000109 ], [ -124.934478637999945, 49.645591798000041 ], [ -124.934143454999955, 49.645597472000077 ], [ -124.933790591, 49.64560344500007 ], [ -124.933432241999981, 49.645305064000055 ], [ -124.933237140999964, 49.645056064000102 ], [ -124.933378440999931, 49.644918364000013 ], [ -124.934704139999937, 49.644662464000135 ], [ -124.93505618599994, 49.644503156 ], [ -124.935053341999946, 49.644431396000073 ], [ -124.935220955999952, 49.644428594000097 ], [ -124.93546444499999, 49.644318408000117 ], [ -124.935450679999931, 49.643971294000025 ], [ -124.935225826999897, 49.64388878700008 ], [ -124.935031957999982, 49.643892029000035 ], [ -124.935028963999969, 49.643816549000064 ], [ -124.934522452999943, 49.643630683 ], [ -124.9339896809999, 49.643639587000052 ], [ -124.933978323999924, 49.644129765000123 ], [ -124.933483329999916, 49.644124919000099 ], [ -124.933473727999939, 49.644539176000116 ], [ -124.932601512999952, 49.644530632000055 ], [ -124.932249018, 49.644432505000111 ], [ -124.931697101999987, 49.644503695000139 ], [ -124.932053502999935, 49.644565699000083 ], [ -124.932035816999971, 49.645327610000045 ], [ -124.931531883999952, 49.645322667000116 ], [ -124.931519825999914, 49.64584182100004 ], [ -124.92800555, 49.645807290000093 ], [ -124.92760260499989, 49.645705711000076 ], [ -124.929162590999965, 49.645536203000056 ], [ -124.929571419999931, 49.645393799000082 ], [ -124.93011299299998, 49.644386911000012 ], [ -124.930046891999936, 49.644117707000092 ], [ -124.929895908999967, 49.644111984000126 ], [ -124.929345201999979, 49.64459768600009 ], [ -124.928817696999957, 49.64492100500015 ], [ -124.928128905, 49.644968 ], [ -124.927788204999956, 49.645127510000123 ], [ -124.926812299999966, 49.645323999000084 ], [ -124.925994426999978, 49.645353196000087 ], [ -124.926068272999927, 49.642189834000071 ], [ -124.926572168999968, 49.642194801000116 ], [ -124.926584282999926, 49.641675645000099 ], [ -124.928003477999965, 49.641689624000072 ], [ -124.928022172999945, 49.640887279000076 ], [ -124.92851713, 49.640892150000091 ], [ -124.928526776999959, 49.640477892000042 ], [ -124.929880236999921, 49.640491199000074 ], [ -124.930281013999917, 49.640886707000092 ], [ -124.930648141999939, 49.641156149000054 ], [ -124.93080901799999, 49.641274202000034 ], [ -124.931382487999912, 49.641552405000049 ], [ -124.931941437999967, 49.641746783000066 ], [ -124.932269986999984, 49.6418610260001 ], [ -124.932289653999959, 49.641867839000035 ], [ -124.93248348899999, 49.641935248000095 ], [ -124.932854474999914, 49.642064248000032 ], [ -124.933517515999966, 49.642294794000037 ], [ -124.933921592, 49.642477810000074 ], [ -124.934426145999964, 49.642618104000057 ], [ -124.936302225999952, 49.643139800000064 ], [ -124.936244897999941, 49.644416609000075 ], [ -124.937687399999973, 49.64452778400004 ], [ -124.9379989, 49.644587590000121 ], [ -124.938620216999965, 49.644773493000081 ], [ -124.939127402999986, 49.64498719400008 ], [ -124.939875809999975, 49.645370505000095 ], [ -124.940252625999975, 49.645597302000063 ], [ -124.942160194999971, 49.64685184800009 ], [ -124.943192329999988, 49.645488168000036 ], [ -124.944768402999955, 49.645690582000107 ], [ -124.94636428499993, 49.645877894000115 ], [ -124.946680404999967, 49.645915991000038 ], [ -124.948290195999974, 49.646521700000051 ], [ -124.948425787999923, 49.646577191000077 ], [ -124.949784997999942, 49.64713339500004 ], [ -124.949829335999979, 49.647151745000038 ], [ -124.950274619999973, 49.647336095000057 ], [ -124.950745134999949, 49.647561273000065 ], [ -124.950911305999966, 49.647640795 ], [ -124.95157579100001, 49.648123990000045 ], [ -124.952360859999956, 49.648804270000063 ], [ -124.953035110999934, 49.649388482000141 ], [ -124.953525986999963, 49.649714296000099 ], [ -124.953914954999931, 49.649913448000056 ], [ -124.955232424999934, 49.65058800900006 ], [ -124.956331109999923, 49.651156289000042 ], [ -124.959838585999989, 49.652952996000089 ], [ -124.960465689999978, 49.653506804000074 ], [ -124.96091831299999, 49.654001399000059 ], [ -124.961439016, 49.654668489000102 ], [ -124.961927498999941, 49.655106714000098 ], [ -124.96218820899999, 49.655271989000077 ], [ -124.962961365999902, 49.655749961000012 ], [ -124.963444931999973, 49.656048889000047 ], [ -124.963446962999953, 49.656050151000045 ], [ -124.963941463999902, 49.656355813000047 ], [ -124.964501292999941, 49.656701907000077 ], [ -124.962326609999963, 49.657424851000073 ], [ -124.961959297999982, 49.657075201000026 ], [ -124.960758699999971, 49.656546810000066 ], [ -124.960113401999976, 49.655999895000079 ], [ -124.958890493999931, 49.655219394 ], [ -124.958798033000022, 49.655167894000073 ], [ -124.956681395999965, 49.653988892000079 ], [ -124.955245390999949, 49.653077411000019 ], [ -124.954937565999955, 49.652984779000057 ], [ -124.953716800999956, 49.652617403000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65979250", "BldgCostT": "43765000", "sL_LossRatio": "0.982674145742951", "sL_AssetLoss": "43620.36", "sL_BldgLoss": "42864.6", "sL_StrLoss": "38852.6", "sL_NStrLoss": "4012", "sL_ContLoss": "755.76", "geom_point": "0101000020E610000020849919EA3A5FC03650CF7124D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.923804340999965, 49.642933565000064 ], [ -124.923688506999952, 49.642731804000036 ], [ -124.923350251000016, 49.642737425000107 ], [ -124.923314223999938, 49.641823175000077 ], [ -124.923257339999964, 49.64167836400005 ], [ -124.923263041999974, 49.641625963000102 ], [ -124.923210758999971, 49.641548258000064 ], [ -124.923071108999949, 49.641112608000057 ], [ -124.923017610999963, 49.640035414000067 ], [ -124.923059041999963, 49.63993396500004 ], [ -124.923163474999939, 49.63870044300014 ], [ -124.922651397999971, 49.638695378000079 ], [ -124.922987486999887, 49.638235701000028 ], [ -124.9230780339999, 49.637771391000072 ], [ -124.92317050599999, 49.637297196000056 ], [ -124.923121112999979, 49.636352909000088 ], [ -124.922880599999985, 49.635215009000035 ], [ -124.922525594999954, 49.63463671600006 ], [ -124.922256294999968, 49.634487195000091 ], [ -124.921051386999949, 49.634121191000091 ], [ -124.920258886999974, 49.633702509000088 ], [ -124.919571194999932, 49.633461806000071 ], [ -124.919174611999978, 49.633206797000071 ], [ -124.918414091, 49.633256709000072 ], [ -124.918051291000012, 49.633172693000056 ], [ -124.917043284, 49.632585891000062 ], [ -124.916199110000022, 49.631539096000054 ], [ -124.915221602, 49.630583502000071 ], [ -124.914334502999964, 49.62951809 ], [ -124.91204079399995, 49.627901700000052 ], [ -124.910937497999939, 49.626938890000126 ], [ -124.909628981999973, 49.626070098000092 ], [ -124.909462529000038, 49.625916936000102 ], [ -124.910149845999982, 49.625869029000079 ], [ -124.910210912999958, 49.625864793000055 ], [ -124.910902597999893, 49.625871707000151 ], [ -124.910991034999967, 49.625881391000114 ], [ -124.911083415999954, 49.625891506000052 ], [ -124.911171867999897, 49.625931704000067 ], [ -124.91121344499993, 49.625950609000014 ], [ -124.911239405999979, 49.625962410000064 ], [ -124.911289241999953, 49.626006308000072 ], [ -124.911530788000022, 49.62621899100008 ], [ -124.911720977999934, 49.626249690000122 ], [ -124.912035896999924, 49.626217706000048 ], [ -124.912278211999961, 49.626269591000039 ], [ -124.912415002, 49.626274596000023 ], [ -124.912957300999963, 49.6261613 ], [ -124.913409817999977, 49.626217905000075 ], [ -124.913638400999929, 49.626616091000066 ], [ -124.914324702999949, 49.627203212 ], [ -124.914965789999897, 49.627590998000102 ], [ -124.91528527899996, 49.627718833000067 ], [ -124.916254035999927, 49.628106436000088 ], [ -124.91729468399997, 49.62852279600007 ], [ -124.917900694999929, 49.62882120900008 ], [ -124.91822660299999, 49.629086207000107 ], [ -124.91893677799996, 49.630069296000087 ], [ -124.919399214999956, 49.630886296000064 ], [ -124.919770206999956, 49.631410803000051 ], [ -124.920741188999926, 49.632313793000037 ], [ -124.921861008999926, 49.63300768400007 ], [ -124.92249365, 49.633328256000091 ], [ -124.92269391799999, 49.633429701000061 ], [ -124.923752994999987, 49.633881889000087 ], [ -124.925615809999925, 49.634880889000073 ], [ -124.926096632999972, 49.635160807000027 ], [ -124.926312211999957, 49.635286291000071 ], [ -124.926602799999927, 49.635522986000076 ], [ -124.926937883999969, 49.635870006000076 ], [ -124.928364401999914, 49.637903610000123 ], [ -124.928456636999925, 49.638064787000083 ], [ -124.928152689999976, 49.638069851000054 ], [ -124.928151667999941, 49.638043975000116 ], [ -124.927497721999956, 49.63803753600012 ], [ -124.927501307999989, 49.637883702000096 ], [ -124.92750300599999, 49.637810809000079 ], [ -124.927311530999958, 49.637813998000105 ], [ -124.92730807199996, 49.637726375000064 ], [ -124.926552180999948, 49.637718927000023 ], [ -124.926548849999932, 49.637861724000068 ], [ -124.926528508000033, 49.638733665000075 ], [ -124.925685374999944, 49.638725350000108 ], [ -124.925735625999891, 49.639999133000082 ], [ -124.926150896999943, 49.63999222299999 ], [ -124.926204108999968, 49.641340652000082 ], [ -124.925788824999984, 49.641347562000128 ], [ -124.92582037599999, 49.642147254000108 ], [ -124.924838184999956, 49.64234309400004 ], [ -124.924088110999932, 49.64263370300003 ], [ -124.92403880099998, 49.642799083000028 ], [ -124.923804340999965, 49.642933565000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99618250", "BldgCostT": "67495000", "sL_LossRatio": "0.982333521935321", "sL_AssetLoss": "74707.59", "sL_BldgLoss": "73387.77", "sL_StrLoss": "67235.97", "sL_NStrLoss": "6151.8", "sL_ContLoss": "1319.82", "geom_point": "0101000020E61000006E673E6BE73D5FC0AF0E3E9CD9D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.956331109999923, 49.651156289000042 ], [ -124.955232424999934, 49.65058800900006 ], [ -124.953914954999931, 49.649913448000056 ], [ -124.953525986999963, 49.649714296000099 ], [ -124.953035110999934, 49.649388482000141 ], [ -124.952360859999956, 49.648804270000063 ], [ -124.95157579100001, 49.648123990000045 ], [ -124.950911305999966, 49.647640795 ], [ -124.950745134999949, 49.647561273000065 ], [ -124.950274619999973, 49.647336095000057 ], [ -124.949829335999979, 49.647151745000038 ], [ -124.949784997999942, 49.64713339500004 ], [ -124.948425787999923, 49.646577191000077 ], [ -124.948290195999974, 49.646521700000051 ], [ -124.946680404999967, 49.645915991000038 ], [ -124.94636428499993, 49.645877894000115 ], [ -124.946961993999963, 49.645101001000057 ], [ -124.94737130099999, 49.644566247000064 ], [ -124.947484399999936, 49.644418455000121 ], [ -124.947629771999956, 49.644228541000082 ], [ -124.949000149999975, 49.642528945000016 ], [ -124.949883396999951, 49.641428286000135 ], [ -124.951179066999956, 49.63990246000008 ], [ -124.951500904999961, 49.639669980000093 ], [ -124.951978374999968, 49.639325062000054 ], [ -124.952110634999912, 49.639229539000056 ], [ -124.952504211999965, 49.638961731000059 ], [ -124.952994611999941, 49.638698321000049 ], [ -124.953518817999921, 49.638489310000089 ], [ -124.954111889999965, 49.638252895000029 ], [ -124.954681877999988, 49.638070824000046 ], [ -124.95494841799993, 49.637985702000023 ], [ -124.955876097000015, 49.637781393000118 ], [ -124.95687619899995, 49.637620906000087 ], [ -124.957463512999936, 49.637567011000101 ], [ -124.957596450999986, 49.637554795000028 ], [ -124.958304615999964, 49.637489792000089 ], [ -124.959388224999955, 49.637307046000096 ], [ -124.960207899999915, 49.637168808000098 ], [ -124.962165313999961, 49.636775489000115 ], [ -124.962735585999937, 49.636613321000091 ], [ -124.96266729499996, 49.639642557000073 ], [ -124.959894831999975, 49.639616114000013 ], [ -124.959893387999955, 49.639680027000097 ], [ -124.957738947999971, 49.639659429000076 ], [ -124.957726830999931, 49.640194281000028 ], [ -124.957678985999962, 49.640193823000125 ], [ -124.956648220999924, 49.640183952000015 ], [ -124.956638911999903, 49.640594406000069 ], [ -124.956563582999934, 49.640593685000113 ], [ -124.956505490999973, 49.643155082000121 ], [ -124.95777198699993, 49.643167209000048 ], [ -124.959326412999957, 49.643182072000045 ], [ -124.959337922999936, 49.642673168000066 ], [ -124.959810705999985, 49.642677685000059 ], [ -124.95982243399996, 49.6421588790001 ], [ -124.96272813899995, 49.642186592000058 ], [ -124.962777245999973, 49.640008346000108 ], [ -124.963467715999968, 49.640014921000073 ], [ -124.963503809999949, 49.638412661000061 ], [ -124.965544097999967, 49.638432061000039 ], [ -124.965565127999952, 49.63749661 ], [ -124.964500580999953, 49.63748649300009 ], [ -124.964512579999962, 49.636953294000072 ], [ -124.963184762999916, 49.636940659000047 ], [ -124.963195883999958, 49.636447116000085 ], [ -124.964990694999969, 49.635756090000022 ], [ -124.965745365999922, 49.635550094000067 ], [ -124.968192815999885, 49.635025502000097 ], [ -124.968996879999978, 49.634713706000049 ], [ -124.97125010299996, 49.633585388000093 ], [ -124.972955069999927, 49.63283838600006 ], [ -124.97518950599999, 49.631859283000104 ], [ -124.976344625999957, 49.631422488000084 ], [ -124.976977702999932, 49.631183068000034 ], [ -124.978006095999916, 49.630794175000077 ], [ -124.97994816399995, 49.630059681000127 ], [ -124.980238834999938, 49.629949765000049 ], [ -124.981256283999983, 49.629564921000124 ], [ -124.983161011000036, 49.628844468000111 ], [ -124.98427899699999, 49.628421562000064 ], [ -124.985574589999928, 49.627931465000074 ], [ -124.98591731799999, 49.627801802000121 ], [ -124.98795540799992, 49.627111903000106 ], [ -124.988929295999981, 49.626868995000066 ], [ -124.991358814999927, 49.626493005000079 ], [ -124.992133781999954, 49.626358991000075 ], [ -124.992372892999967, 49.626307208000121 ], [ -124.993838246999971, 49.625933672000023 ], [ -124.994701461999966, 49.625713607000151 ], [ -124.995301717999922, 49.62556059800005 ], [ -124.996110057999985, 49.625954310000076 ], [ -124.995971682999979, 49.626077364000075 ], [ -124.997379897999949, 49.626833175000094 ], [ -124.997298737, 49.629714150000055 ], [ -124.992129620999947, 49.629666424000057 ], [ -124.992138891999957, 49.629243124000027 ], [ -124.990461283999977, 49.629227582000063 ], [ -124.990467288999952, 49.628953795000072 ], [ -124.989996193, 49.628949426000084 ], [ -124.989984575999955, 49.629478800000079 ], [ -124.989981660999959, 49.629478773000137 ], [ -124.989963522999915, 49.630305199000112 ], [ -124.98639996699994, 49.630272083000108 ], [ -124.986384721999968, 49.630964287000026 ], [ -124.984981254, 49.630951212000078 ], [ -124.984973785999927, 49.631289821000053 ], [ -124.984504472999944, 49.631285445000067 ], [ -124.984454597999971, 49.633545528000063 ], [ -124.97912786699996, 49.633495719000081 ], [ -124.97912080299993, 49.633814160000043 ], [ -124.97689177599996, 49.633793240000081 ], [ -124.976872063999949, 49.634679815000048 ], [ -124.976098947999944, 49.634672548000083 ], [ -124.976093048999971, 49.634937634000096 ], [ -124.975170056999971, 49.634928951000155 ], [ -124.975164823999989, 49.635163857000101 ], [ -124.97418198299999, 49.635154603000096 ], [ -124.974106084999931, 49.638558974000027 ], [ -124.973496672999943, 49.638553231000053 ], [ -124.973481100999919, 49.639251288000068 ], [ -124.97269744299993, 49.639243898000124 ], [ -124.972678019999975, 49.640113806000038 ], [ -124.972461979999963, 49.640111768000125 ], [ -124.97244894399995, 49.640695410000014 ], [ -124.972402278999979, 49.640694969000101 ], [ -124.972366326999932, 49.642304649000046 ], [ -124.97234319899999, 49.643340106000103 ], [ -124.969556849999947, 49.643313780000071 ], [ -124.969548009999954, 49.643708475000018 ], [ -124.965324810999945, 49.643668437000059 ], [ -124.965276663999987, 49.645809177000046 ], [ -124.964803848999964, 49.645804684 ], [ -124.964792174999928, 49.646323488000057 ], [ -124.961910071999952, 49.646296057000036 ], [ -124.961898588999929, 49.646804959000036 ], [ -124.957552117999981, 49.646763448000137 ], [ -124.957546406999967, 49.647015464000091 ], [ -124.959105707999953, 49.647030376 ], [ -124.959094286999971, 49.647535192000134 ], [ -124.959242497999966, 49.647532684000076 ], [ -124.959247848999951, 49.647560126000073 ], [ -124.959282792999886, 49.647559281000056 ], [ -124.959325010999933, 49.64861074100007 ], [ -124.959740347999954, 49.648603710000025 ], [ -124.959751177999962, 49.648873389000059 ], [ -124.960581858999973, 49.648859322000128 ], [ -124.960600191999902, 49.649315605000041 ], [ -124.960614365999916, 49.649668361000074 ], [ -124.960082908999965, 49.649677362000027 ], [ -124.96008229099999, 49.649704708000058 ], [ -124.960756408999941, 49.649711141000068 ], [ -124.960743539999939, 49.650280761000026 ], [ -124.961787402999974, 49.650290716000072 ], [ -124.961780943999926, 49.65057694300009 ], [ -124.962343299999986, 49.650582302000039 ], [ -124.962321456999959, 49.651550602000164 ], [ -124.963143337999981, 49.651558428000016 ], [ -124.96310431, 49.652656241000038 ], [ -124.961453281999965, 49.652013045000089 ], [ -124.961543545999959, 49.651731490000046 ], [ -124.959717087999962, 49.650834436000061 ], [ -124.959422922999963, 49.651287905000054 ], [ -124.959266027999917, 49.651531110000093 ], [ -124.959265670999969, 49.651531688000013 ], [ -124.963062768, 49.653837251000084 ], [ -124.962961365999902, 49.655749961000012 ], [ -124.96218820899999, 49.655271989000077 ], [ -124.961927498999941, 49.655106714000098 ], [ -124.961439016, 49.654668489000102 ], [ -124.96091831299999, 49.654001399000059 ], [ -124.960465689999978, 49.653506804000074 ], [ -124.959838585999989, 49.652952996000089 ], [ -124.956331109999923, 49.651156289000042 ] ], [ [ -124.956374417999925, 49.646244426000052 ], [ -124.95642851800001, 49.643859518000049 ], [ -124.954694833999909, 49.643842893000141 ], [ -124.954693571999911, 49.643898441000083 ], [ -124.954749885999931, 49.643898981000063 ], [ -124.954739186999944, 49.644369870000084 ], [ -124.954792412999936, 49.644370381000044 ], [ -124.954750188999981, 49.646228852000071 ], [ -124.956374417999925, 49.646244426000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123897250", "BldgCostT": "84655000", "sL_LossRatio": "0.980951202338606", "sL_AssetLoss": "116117.04", "sL_BldgLoss": "113905.15", "sL_StrLoss": "103437.15", "sL_NStrLoss": "10468", "sL_ContLoss": "2211.89", "geom_point": "0101000020E61000007994C63F9E3F5FC0512E11981CD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.000075231999944, 49.661506581000033 ], [ -125.00009500799996, 49.660597016000096 ], [ -124.998885285999961, 49.660617913000081 ], [ -124.998874234999903, 49.660348240000097 ], [ -124.998522432999948, 49.660354315000042 ], [ -124.99845880699999, 49.660355413000055 ], [ -124.998437297999942, 49.65983048200016 ], [ -124.998425659999924, 49.65954639400011 ], [ -124.998841081999927, 49.659539220000092 ], [ -124.998816447999971, 49.658938082000134 ], [ -124.996321249999966, 49.65891512500005 ], [ -124.996343051999958, 49.659447848000049 ], [ -124.996348552999905, 49.659582236000084 ], [ -124.996033338999922, 49.659587672000079 ], [ -124.99562074899994, 49.659315867000039 ], [ -124.995644929999983, 49.659158679000036 ], [ -124.993282998999945, 49.657315305000076 ], [ -124.991784308999968, 49.657282500000115 ], [ -124.988698308999972, 49.657216092000041 ], [ -124.987171998999912, 49.657240617000056 ], [ -124.986157394999935, 49.657226697000027 ], [ -124.986229233999936, 49.655915778000072 ], [ -124.986273737999966, 49.655103537000059 ], [ -124.986283624999899, 49.654923041000067 ], [ -124.98630786299999, 49.654480557000042 ], [ -124.981813389999928, 49.654768414000017 ], [ -124.981739870999903, 49.652789176000049 ], [ -124.984460819999981, 49.652814576000047 ], [ -124.984538028999964, 49.649317216000114 ], [ -124.984575289999938, 49.64931756300011 ], [ -124.984586181999973, 49.648824128000136 ], [ -124.98280779599996, 49.648807535000124 ], [ -124.98288734, 49.645209964000053 ], [ -124.983374720999961, 49.645214514 ], [ -124.983396878999983, 49.644211774000027 ], [ -124.983449103999973, 49.64421226100005 ], [ -124.98345074099997, 49.64413814300007 ], [ -124.982218158999956, 49.644126632000059 ], [ -124.982218918999976, 49.644092243000095 ], [ -124.980684401999937, 49.644077892000112 ], [ -124.980688696999891, 49.643884004000029 ], [ -124.977627696999932, 49.643855314000049 ], [ -124.977658890999962, 49.642451579000102 ], [ -124.977660883999974, 49.642361889000064 ], [ -124.976944036999939, 49.642374135000082 ], [ -124.976911425, 49.641568977000063 ], [ -124.976092377999947, 49.641561280000097 ], [ -124.976128027999948, 49.6399592940001 ], [ -124.974769432999921, 49.639982482000107 ], [ -124.974725792999905, 49.638903769000137 ], [ -124.975556295999951, 49.638889597000052 ], [ -124.975545381999964, 49.638619919000035 ], [ -124.975960629999989, 49.638612830000056 ], [ -124.97593879899992, 49.638073475000098 ], [ -124.976170079999918, 49.638069526000095 ], [ -124.976172435999914, 49.637963677000087 ], [ -124.976806340999943, 49.637969634000072 ], [ -124.976822050999928, 49.637263092000119 ], [ -124.982356619999948, 49.637314952000089 ], [ -124.98235032099997, 49.637599759000125 ], [ -124.984700148999977, 49.637621692000089 ], [ -124.984647688, 49.639999025000115 ], [ -124.986690117999927, 49.640018048000037 ], [ -124.986683677999963, 49.6403105260001 ], [ -124.987075749999988, 49.640314173 ], [ -124.987086993, 49.639803455000049 ], [ -124.992621881, 49.639854794000016 ], [ -124.992604388999951, 49.640653656000076 ], [ -124.995480315999913, 49.640680220000029 ], [ -124.995509988999984, 49.63932106500004 ], [ -124.995856664999948, 49.639324263000091 ], [ -124.99588906199989, 49.637839770000063 ], [ -124.998497851999943, 49.637863794000069 ], [ -124.998544379999956, 49.635725932000085 ], [ -125.002633767999981, 49.635763463000103 ], [ -125.002633115999984, 49.638270901000034 ], [ -125.00235766599998, 49.638697584000134 ], [ -125.002316967999889, 49.638760639000054 ], [ -125.002535718, 49.639704006000045 ], [ -125.002684888999937, 49.639973666000095 ], [ -125.00464535299993, 49.64351683900005 ], [ -125.004418635999969, 49.643520766000059 ], [ -125.004429711999961, 49.643790439000021 ], [ -125.00354823399999, 49.643805702000094 ], [ -125.002768567999937, 49.643819196000067 ], [ -125.002757502999913, 49.643549522000043 ], [ -125.002502131, 49.643553941000057 ], [ -125.002493614999963, 49.643946680000077 ], [ -125.003701431999929, 49.643957736000111 ], [ -125.004895365999985, 49.643968650000041 ], [ -125.006009804999948, 49.645982481000011 ], [ -125.006336206999961, 49.646572281000054 ], [ -125.006732902999943, 49.646965904000076 ], [ -125.007187782999949, 49.647512878000107 ], [ -125.007265910999976, 49.647606805000038 ], [ -125.007573807999918, 49.648081476000108 ], [ -125.003380679999964, 49.648349278000083 ], [ -125.0034387809999, 49.648932822000127 ], [ -125.002501446999986, 49.648924242000099 ], [ -125.002531348, 49.647545332000078 ], [ -125.001143279999923, 49.647532611000074 ], [ -125.001217307999937, 49.644122990000056 ], [ -124.996954127999956, 49.644083813000115 ], [ -124.996963059999985, 49.643674154000045 ], [ -124.996849749999981, 49.64367311000008 ], [ -124.996853742999974, 49.643489965000072 ], [ -124.996425582999947, 49.64348602000004 ], [ -124.996408108999958, 49.644287101000032 ], [ -124.991786206999961, 49.64424441500006 ], [ -124.991760191999958, 49.64543151400003 ], [ -124.99031288899999, 49.645418107000054 ], [ -124.990305352999968, 49.645761449000098 ], [ -124.990217798999964, 49.645760638000084 ], [ -124.990206180999934, 49.64628995099999 ], [ -124.990139307999982, 49.646289331000091 ], [ -124.990106364999988, 49.647789949000064 ], [ -124.988947634999946, 49.647779199000084 ], [ -124.988945022999971, 49.64789806200011 ], [ -124.990143365999984, 49.647909178000127 ], [ -124.990129361999962, 49.648547101000119 ], [ -124.991181765999926, 49.648556854000105 ], [ -124.991102864999931, 49.652154413000069 ], [ -124.990178777000025, 49.652145851000085 ], [ -124.990160893999956, 49.652960383000085 ], [ -124.99454253299993, 49.653000911000056 ], [ -124.994557554999943, 49.652313675000116 ], [ -125.000093953999951, 49.65236463300009 ], [ -125.000049904999941, 49.654390921000093 ], [ -125.000708029999942, 49.654379547000062 ], [ -125.000719089999933, 49.654649221000035 ], [ -125.001134467999989, 49.654642040000077 ], [ -125.001156590999983, 49.655181385000063 ], [ -125.002402740999955, 49.655159834000067 ], [ -125.002413808999947, 49.655429507000079 ], [ -125.003659964999912, 49.655407942000068 ], [ -125.003671038999954, 49.655677614000076 ], [ -125.004086428, 49.65567042300011 ], [ -125.004097503999986, 49.655940095000112 ], [ -125.004512893999944, 49.655932902000089 ], [ -125.004515579999975, 49.655998265000086 ], [ -125.004546137999967, 49.656741920000073 ], [ -125.004130741999958, 49.656749113000053 ], [ -125.004152899999923, 49.65728845700005 ], [ -125.004983699999983, 49.65727407 ], [ -125.00497261699995, 49.657004396000069 ], [ -125.005388013999948, 49.656997200000021 ], [ -125.005376927999947, 49.656727529000058 ], [ -125.006207719999978, 49.656713132000114 ], [ -125.006196628999987, 49.656443459000094 ], [ -125.006521176999954, 49.656437834000023 ], [ -125.006546303, 49.655274583000093 ], [ -125.006594764999988, 49.655275025000016 ], [ -125.00661300799996, 49.654430368000128 ], [ -125.00661631399997, 49.654277270000108 ], [ -125.006523283999968, 49.654278883000089 ], [ -125.006511056999969, 49.653981593000026 ], [ -125.007010804999936, 49.653989343000021 ], [ -125.010017001999955, 49.65336480100008 ], [ -125.009079275999966, 49.654426546000089 ], [ -125.008900185999948, 49.654629304000068 ], [ -125.008899295999981, 49.65464997500014 ], [ -125.008863699999907, 49.655478936000065 ], [ -125.008842772999941, 49.655965564000077 ], [ -125.008838513999976, 49.656064782000087 ], [ -125.008794700999957, 49.657084202000085 ], [ -125.008948321999938, 49.657988696000054 ], [ -125.009044289999949, 49.658480796000077 ], [ -125.009140501999966, 49.659030384000076 ], [ -125.009190712999967, 49.659592095000093 ], [ -125.008561518999954, 49.661800225000071 ], [ -125.008420030999915, 49.662463470000027 ], [ -125.008410564999949, 49.662507706000085 ], [ -125.008427958999931, 49.664463480000073 ], [ -125.008470039999949, 49.664897071000084 ], [ -125.008093699999932, 49.665065810000051 ], [ -125.007280380999958, 49.665497428000023 ], [ -125.005185551999929, 49.666609052000091 ], [ -125.004093516999887, 49.665753505000069 ], [ -125.003283575999944, 49.665104695000103 ], [ -125.003013702999951, 49.664905201000089 ], [ -125.001438830999987, 49.663656302000092 ], [ -125.001150127999921, 49.663427305000049 ], [ -125.000641733999942, 49.663023982000063 ], [ -125.000632806999974, 49.663016886000015 ], [ -124.999998857999941, 49.662594352000049 ], [ -124.998976083999963, 49.661657699000088 ], [ -124.998778811999955, 49.661494676000139 ], [ -125.000075231999944, 49.661506581000033 ] ], [ [ -125.003818704999944, 49.65908060900005 ], [ -125.003828174999981, 49.658643400000116 ], [ -125.003792886999975, 49.658644012000096 ], [ -125.003803964999975, 49.658913683000094 ], [ -125.003388549999954, 49.658920875000028 ], [ -125.00339495099999, 49.659076733000141 ], [ -125.003818704999944, 49.65908060900005 ] ], [ [ -124.999223343999958, 49.658723027000086 ], [ -124.999215498999959, 49.658531620000083 ], [ -124.999185809999943, 49.658531348000089 ], [ -124.999181623999945, 49.658723747000046 ], [ -124.999223343999958, 49.658723027000086 ] ], [ [ -125.00562251299999, 49.658384860000133 ], [ -125.005623428999968, 49.658342443000031 ], [ -125.004197218999977, 49.658367146000053 ], [ -125.004197411999911, 49.658371844000079 ], [ -125.00562251299999, 49.658384860000133 ] ], [ [ -125.000447464999965, 49.658162149000113 ], [ -125.000425346999947, 49.657622803 ], [ -125.000840752000016, 49.657615623000027 ], [ -125.000818630999945, 49.657076277000058 ], [ -124.999700006999916, 49.657095609000109 ], [ -124.999676518999962, 49.658175471000021 ], [ -125.000447464999965, 49.658162149000113 ] ], [ [ -125.00249129599996, 49.657317215000027 ], [ -125.002075895999965, 49.657324402000057 ], [ -125.002086963999901, 49.657594074000066 ], [ -125.002502365999973, 49.657586888 ], [ -125.00249129599996, 49.657317215000027 ], [ -125.002906696999986, 49.65731002800004 ], [ -125.002895624999923, 49.65704035600001 ], [ -125.002498311999915, 49.657047230000089 ], [ -125.00248022599996, 49.657047543000061 ], [ -125.002480584999958, 49.657056275000087 ], [ -125.00249129599996, 49.657317215000027 ] ], [ [ -125.006252080999928, 49.657791820000057 ], [ -125.006261557999935, 49.658022225000074 ], [ -125.006486906999982, 49.658024281000046 ], [ -125.006492019999897, 49.657787661000093 ], [ -125.006252080999928, 49.657791820000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.986449493120336", "sL_AssetLoss": "3064.83", "sL_BldgLoss": "3023.3", "sL_StrLoss": "2759", "sL_NStrLoss": "264.3", "sL_ContLoss": "41.53", "geom_point": "0101000020E61000000CCAF27D4A3E5FC0459DB98704D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.970547098999972, 49.64739146200003 ], [ -124.976082879999979, 49.647443640000112 ], [ -124.976030918, 49.649778069000078 ], [ -124.97241704599999, 49.649720724000154 ], [ -124.970495707999959, 49.649687831000108 ], [ -124.970547098999972, 49.64739146200003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19466250", "BldgCostT": "13425000", "sL_LossRatio": "0.984116681302738", "sL_AssetLoss": "15714.6", "sL_BldgLoss": "15465", "sL_StrLoss": "14220", "sL_NStrLoss": "1245", "sL_ContLoss": "249.6", "geom_point": "0101000020E61000004119DB52A43F5FC03EDC615535D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.988301468999978, 49.637944904000051 ], [ -124.98834013699999, 49.636186234000064 ], [ -124.98785195899994, 49.636181697000062 ], [ -124.987931088, 49.632584059000088 ], [ -124.989608287999928, 49.632599634 ], [ -124.989619349999899, 49.632095798000059 ], [ -124.994807525999988, 49.632143818000081 ], [ -124.994823683999982, 49.631404027000059 ], [ -124.99557482299997, 49.631410959000121 ], [ -124.995578665, 49.631234946000049 ], [ -124.99664325599997, 49.631244762000065 ], [ -124.99666899099999, 49.630064370000078 ], [ -124.997288708999989, 49.630070079000042 ], [ -124.997226519999955, 49.632277286000026 ], [ -124.997708211999935, 49.632292535000012 ], [ -124.997662165999941, 49.632632427000054 ], [ -124.997801897999935, 49.632609510000044 ], [ -124.998533101999968, 49.632518002000069 ], [ -124.999448914000013, 49.632403408000108 ], [ -124.999992449, 49.632357124000102 ], [ -125.002634694999969, 49.632132094000056 ], [ -125.002634525999923, 49.632754259000144 ], [ -125.002634296999986, 49.633711311000056 ], [ -125.002634202999971, 49.634088842000068 ], [ -125.002633791999955, 49.63566616600005 ], [ -124.998712311999896, 49.635630179 ], [ -124.998723182999981, 49.635130653000083 ], [ -124.996732367999982, 49.63511232900003 ], [ -124.9967343799999, 49.635020024000077 ], [ -124.995386670999949, 49.635007599000097 ], [ -124.99534403199999, 49.636960546000068 ], [ -124.99387366699996, 49.636946971000036 ], [ -124.993861306999946, 49.637512282000067 ], [ -124.993846718999961, 49.637512147000088 ], [ -124.99383613399999, 49.637996182000045 ], [ -124.988301468999978, 49.637944904000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.983447205839744", "sL_AssetLoss": "1069.91", "sL_BldgLoss": "1052.2", "sL_StrLoss": "965", "sL_NStrLoss": "87.2", "sL_ContLoss": "17.71", "geom_point": "0101000020E6100000CE1C503ED63F5FC08340BA1AD1D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.998007826999952, 49.66148758900006 ], [ -124.998778811999955, 49.661494676000139 ], [ -124.998976083999963, 49.661657699000088 ], [ -124.997577081999907, 49.662930291000066 ], [ -124.99704148299999, 49.664724086000057 ], [ -124.996976815999986, 49.66494068300004 ], [ -124.996917911999972, 49.665075781000084 ], [ -124.996777693999917, 49.665074490000094 ], [ -124.996752039999976, 49.665074254000018 ], [ -124.996830520999964, 49.661476756000098 ], [ -124.997836897999917, 49.661486016000076 ], [ -124.998007826999952, 49.66148758900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72630416", "BldgCostT": "48671666", "sL_LossRatio": "0.90881239803013", "sL_AssetLoss": "69052.26", "sL_BldgLoss": "62755.55", "sL_StrLoss": "54779.75", "sL_NStrLoss": "7975.8", "sL_ContLoss": "6296.71", "geom_point": "0101000020E6100000F46627C57F3E5FC02CD75F9F4ED44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.970732340999973, 49.663885764000071 ], [ -124.970469174999948, 49.663533904000118 ], [ -124.970407702999935, 49.663534951000081 ], [ -124.970311829999957, 49.663377363000095 ], [ -124.970311185999975, 49.663361451000128 ], [ -124.970289129999941, 49.663340049000091 ], [ -124.969860389999937, 49.662635302000055 ], [ -124.969485616999961, 49.66229920500006 ], [ -124.968632037999939, 49.661815672000074 ], [ -124.969347187999972, 49.661501989000044 ], [ -124.968205348, 49.661491181000052 ], [ -124.96762858699999, 49.660927705000084 ], [ -124.966597618999955, 49.660440597000033 ], [ -124.966534184999915, 49.660365939000052 ], [ -124.96597321099992, 49.659705690000038 ], [ -124.965273085999954, 49.659212903000181 ], [ -124.964754974999934, 49.658700195000087 ], [ -124.962636994999968, 49.657720305000105 ], [ -124.962326609999963, 49.657424851000073 ], [ -124.964501292999941, 49.656701907000077 ], [ -124.963941463999902, 49.656355813000047 ], [ -124.963446962999953, 49.656050151000045 ], [ -124.963444931999973, 49.656048889000047 ], [ -124.962961365999902, 49.655749961000012 ], [ -124.963062768, 49.653837251000084 ], [ -124.959265670999969, 49.651531688000013 ], [ -124.959266027999917, 49.651531110000093 ], [ -124.959422922999963, 49.651287905000054 ], [ -124.959717087999962, 49.650834436000061 ], [ -124.961543545999959, 49.651731490000046 ], [ -124.961453281999965, 49.652013045000089 ], [ -124.96310431, 49.652656241000038 ], [ -124.963143337999981, 49.651558428000016 ], [ -124.963956297999914, 49.651566163000027 ], [ -124.96393248299999, 49.652623495000057 ], [ -124.965545602, 49.652638825000061 ], [ -124.965541456999944, 49.6528231570001 ], [ -124.966144254999932, 49.652812919000034 ], [ -124.966155124999901, 49.653082598000054 ], [ -124.966985870999935, 49.653068483000027 ], [ -124.966996745999907, 49.653338162000075 ], [ -124.96782749799992, 49.653324041000069 ], [ -124.967860128000027, 49.654133077000054 ], [ -124.968275510999931, 49.654126014000049 ], [ -124.968303381999959, 49.654816836000094 ], [ -124.968319031999926, 49.655204728000093 ], [ -124.967072854999955, 49.655225912000077 ], [ -124.967083729999928, 49.655495591000026 ], [ -124.966892193999954, 49.65549884500011 ], [ -124.966886129999978, 49.655768812000062 ], [ -124.967925398, 49.655751147000068 ], [ -124.967936275999961, 49.656020826000045 ], [ -124.968351674999937, 49.656013762000015 ], [ -124.968362555999988, 49.656283441000049 ], [ -124.969193357999984, 49.656269310000063 ], [ -124.969215128999949, 49.65680866600006 ], [ -124.970045939999977, 49.656794529000095 ], [ -124.970013266999914, 49.65598549400007 ], [ -124.970428666, 49.655978424000175 ], [ -124.97040475099999, 49.655386328000063 ], [ -124.970395989999929, 49.655169390000033 ], [ -124.971642159999988, 49.655148170000089 ], [ -124.971663957999937, 49.655687525000104 ], [ -124.972494748999921, 49.655673370000066 ], [ -124.972505652999985, 49.655943048000019 ], [ -124.973336446999937, 49.655928887000172 ], [ -124.973346687999964, 49.656182071000011 ], [ -124.973347355000016, 49.656198564000086 ], [ -124.97340416099992, 49.656197596000105 ], [ -124.97417815299994, 49.656184398000093 ], [ -124.974187247, 49.656409112000034 ], [ -124.974189066999926, 49.656454075000042 ], [ -124.974343933999961, 49.656451434000068 ], [ -124.975850668999925, 49.656425722000108 ], [ -124.975860452999939, 49.656667306000074 ], [ -124.97586159199993, 49.656695400000054 ], [ -124.976253954999947, 49.656688702000103 ], [ -124.97752319899999, 49.656667024000029 ], [ -124.977526884999975, 49.656757904000109 ], [ -124.977545064999958, 49.657206377000065 ], [ -124.978791282999964, 49.657185080000048 ], [ -124.978801305, 49.657432132000103 ], [ -124.981110126999923, 49.657453749000076 ], [ -124.981113092, 49.65731995200013 ], [ -124.984405782999914, 49.657350695000062 ], [ -124.984410613999941, 49.657131872000065 ], [ -124.984426499000023, 49.656412528000068 ], [ -124.981432778999974, 49.656384581000033 ], [ -124.981512444999964, 49.652787050000022 ], [ -124.981739870999903, 49.652789176000049 ], [ -124.981813389999928, 49.654768414000017 ], [ -124.98630786299999, 49.654480557000042 ], [ -124.986283624999899, 49.654923041000067 ], [ -124.986273737999966, 49.655103537000059 ], [ -124.986229233999936, 49.655915778000072 ], [ -124.986157394999935, 49.657226697000027 ], [ -124.987171998999912, 49.657240617000056 ], [ -124.988698308999972, 49.657216092000041 ], [ -124.991784308999968, 49.657282500000115 ], [ -124.993282998999945, 49.657315305000076 ], [ -124.995644929999983, 49.659158679000036 ], [ -124.99562074899994, 49.659315867000039 ], [ -124.996033338999922, 49.659587672000079 ], [ -124.99344059399999, 49.659632353000113 ], [ -124.993438398999942, 49.659578661000062 ], [ -124.993263783999979, 49.659577049000077 ], [ -124.993237760999961, 49.660765837000035 ], [ -124.991942080999962, 49.660753858000078 ], [ -124.991940610999976, 49.660820870000087 ], [ -124.986575171999931, 49.660771098000041 ], [ -124.986570807999925, 49.660969104000131 ], [ -124.98556464399999, 49.660959740000067 ], [ -124.985556588999927, 49.661324929000024 ], [ -124.984798116999968, 49.661317865000015 ], [ -124.984790578999977, 49.661659347000068 ], [ -124.98437716399998, 49.661655494000087 ], [ -124.984378043, 49.661677117000117 ], [ -124.982716270999958, 49.661705594000082 ], [ -124.982713602999937, 49.661639975000057 ], [ -124.981754601, 49.661631018000016 ], [ -124.981745778999937, 49.662029422000067 ], [ -124.979917116999971, 49.662012318000045 ], [ -124.979886486999987, 49.663393165000087 ], [ -124.978520524999951, 49.663380368000055 ], [ -124.977342402999952, 49.662424245000061 ], [ -124.975131610999966, 49.663414176000103 ], [ -124.974017983999929, 49.663924550000097 ], [ -124.973837505999981, 49.663946225000075 ], [ -124.973260883999941, 49.663909317000034 ], [ -124.973113495999925, 49.663999688000096 ], [ -124.973023133999902, 49.664138273000063 ], [ -124.973212636999975, 49.664333440000057 ], [ -124.971541200999965, 49.665079626000114 ], [ -124.971467978999954, 49.665133790000034 ], [ -124.971445647999971, 49.665202862000122 ], [ -124.97118190099998, 49.665413219000079 ], [ -124.971141953999947, 49.665420186000105 ], [ -124.971096815999971, 49.665428431000059 ], [ -124.971046218999973, 49.665231601000059 ], [ -124.971104900999975, 49.664295891000044 ], [ -124.970749991000019, 49.663932092000138 ], [ -124.970748591999921, 49.663897454000058 ], [ -124.970732340999973, 49.663885764000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.984011867479809", "sL_AssetLoss": "2123.45", "sL_BldgLoss": "2089.5", "sL_StrLoss": "1921", "sL_NStrLoss": "168.5", "sL_ContLoss": "33.95", "geom_point": "0101000020E610000043BD6C7D493E5FC08CF4A2763FD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.970466586999962, 49.650989012000132 ], [ -124.970495707999959, 49.649687831000108 ], [ -124.97241704599999, 49.649720724000154 ], [ -124.976030918, 49.649778069000078 ], [ -124.976002798999914, 49.651041195000097 ], [ -124.970466586999962, 49.650989012000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9699750", "BldgCostT": "6480000", "sL_LossRatio": "0.760149133751868", "sL_AssetLoss": "10138.55", "sL_BldgLoss": "7706.81", "sL_StrLoss": "6114.11", "sL_NStrLoss": "1592.7", "sL_ContLoss": "2431.74", "geom_point": "0101000020E61000008E61F316343F5FC0DE6B18705CD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.986541512999977, 49.669074706000103 ], [ -124.984629615999978, 49.667631412000041 ], [ -124.984061199999957, 49.667202285000016 ], [ -124.983965691999984, 49.667130214000039 ], [ -124.983802518999966, 49.666999521 ], [ -124.983211266999916, 49.666540555000054 ], [ -124.98334488399999, 49.666541802000026 ], [ -124.983378344999892, 49.665028328000098 ], [ -124.988916261999975, 49.665079854000076 ], [ -124.98889652299998, 49.665977560000044 ], [ -124.991511117999963, 49.666001789000099 ], [ -124.991461738999988, 49.668253137000079 ], [ -124.991460665999966, 49.668302069000113 ], [ -124.991715868999975, 49.668297678000037 ], [ -124.991712692999954, 49.668219949000012 ], [ -124.991704854999924, 49.668028006000057 ], [ -124.992535844999907, 49.668013704000032 ], [ -124.992524824999947, 49.667744031000062 ], [ -124.993355808999951, 49.667729724000068 ], [ -124.993344784999934, 49.667460050000038 ], [ -124.994262637999952, 49.667444240000044 ], [ -124.994504304999964, 49.667440076000112 ], [ -124.993764536999919, 49.66777075300012 ], [ -124.993287512999984, 49.667940520000123 ], [ -124.993220216999958, 49.667964476000066 ], [ -124.993156023999958, 49.667987337000113 ], [ -124.992251824999968, 49.668202691000054 ], [ -124.992053729999924, 49.668249869000078 ], [ -124.992032595999945, 49.668254887000074 ], [ -124.99143787099996, 49.668344742000045 ], [ -124.990120829999967, 49.668429548000084 ], [ -124.989689667000022, 49.66845731300009 ], [ -124.988978597999946, 49.66850308600003 ], [ -124.988925130999988, 49.668506511000025 ], [ -124.98864064699994, 49.668524827000105 ], [ -124.988119387999944, 49.668614416000082 ], [ -124.987603891, 49.668752714000043 ], [ -124.987217350999984, 49.668923167000052 ], [ -124.986887065999937, 49.669068818000042 ], [ -124.986711938999974, 49.669146027000139 ], [ -124.986678471999966, 49.669160800000014 ], [ -124.986666885999981, 49.669165914000061 ], [ -124.98658572199993, 49.66910688100004 ], [ -124.986541512999977, 49.669074706000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53700750", "BldgCostT": "33615000", "sL_LossRatio": "0.972724323164913", "sL_AssetLoss": "29465.08", "sL_BldgLoss": "28661.4", "sL_StrLoss": "26000.2", "sL_NStrLoss": "2661.2", "sL_ContLoss": "803.68", "geom_point": "0101000020E61000008571DCCEE33B5FC0F9FB20263CDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.933658802999915, 49.71699177700004 ], [ -124.933711821999964, 49.71542536200019 ], [ -124.93372098899998, 49.715090829000083 ], [ -124.93373530699999, 49.714713188000061 ], [ -124.933751644999944, 49.714188038000025 ], [ -124.93376907699999, 49.71378826000003 ], [ -124.933796010999941, 49.71317203800001 ], [ -124.933807599999938, 49.712895995000061 ], [ -124.933895250999939, 49.710807308000049 ], [ -124.933906254999968, 49.710512252000058 ], [ -124.933941698999945, 49.709557923000027 ], [ -124.939920516999962, 49.709665275000141 ], [ -124.939913067999953, 49.708465784000062 ], [ -124.939917163999951, 49.70718130500012 ], [ -124.940360308999956, 49.707185611000092 ], [ -124.940330488999976, 49.708478389000057 ], [ -124.94027732699999, 49.710782834000064 ], [ -124.939055176999972, 49.710770954000076 ], [ -124.939053282999936, 49.710852964000075 ], [ -124.936090672999981, 49.710824110000061 ], [ -124.936041686999928, 49.712939034000044 ], [ -124.935993920999934, 49.71293856900008 ], [ -124.935950095999928, 49.714830332000098 ], [ -124.935926280999979, 49.714830100000015 ], [ -124.935919587999962, 49.715119058000013 ], [ -124.935917117999935, 49.715225631000067 ], [ -124.935442118999958, 49.715220997000088 ], [ -124.93543102699999, 49.715699542000038 ], [ -124.934790617999937, 49.715693292000047 ], [ -124.934790500999952, 49.71569835800004 ], [ -124.934555011, 49.715696059000017 ], [ -124.934565214, 49.715952839000131 ], [ -124.935397048999931, 49.715938940000065 ], [ -124.935407770999987, 49.716208619000085 ], [ -124.935823690999939, 49.716201668000039 ], [ -124.935845138999937, 49.716741028000051 ], [ -124.936261062999932, 49.716734075000069 ], [ -124.93629324599999, 49.717543116000165 ], [ -124.935877312999963, 49.71755007100009 ], [ -124.935888038000016, 49.717819751000128 ], [ -124.934224302999937, 49.717847555000063 ], [ -124.934233357999958, 49.718075449000068 ], [ -124.933627000999977, 49.718063671000095 ], [ -124.933658802999915, 49.71699177700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "373266803", "BldgCostT": "246628746", "sL_LossRatio": "0.956364124035531", "sL_AssetLoss": "289240.67", "sL_BldgLoss": "276619.4", "sL_StrLoss": "254733.6", "sL_NStrLoss": "21885.8", "sL_ContLoss": "12621.27", "geom_point": "0101000020E61000004CC6B614E93C5FC0FE461A608FDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.960351821999907, 49.715519140000069 ], [ -124.960340961999961, 49.715249464000067 ], [ -124.959925056, 49.71525650300007 ], [ -124.959903341999961, 49.714717150000077 ], [ -124.957823833999967, 49.714752330000088 ], [ -124.957812987999887, 49.714482652000044 ], [ -124.957515212, 49.714487687000059 ], [ -124.955317586999939, 49.714524819000111 ], [ -124.955338054999984, 49.715034423000063 ], [ -124.955339248999962, 49.715064174000091 ], [ -124.955161885999985, 49.715067171000058 ], [ -124.950283073999941, 49.71514945400012 ], [ -124.945357475999955, 49.71523230600009 ], [ -124.945335922999931, 49.714692947000145 ], [ -124.944088207999926, 49.714713904000071 ], [ -124.944078541999929, 49.71447181000007 ], [ -124.944034363999947, 49.713365506000081 ], [ -124.944866150999985, 49.713351538000076 ], [ -124.944855375999964, 49.713081858000159 ], [ -124.943191812999942, 49.713109789000015 ], [ -124.943170284999894, 49.712570429000088 ], [ -124.942754397999948, 49.712577408000087 ], [ -124.942722115, 49.711768368000058 ], [ -124.943969755999888, 49.711747428000081 ], [ -124.943926687999976, 49.710668710000078 ], [ -124.943094945999945, 49.710682670000061 ], [ -124.94306266, 49.709873631000058 ], [ -124.943478523999943, 49.709866652000088 ], [ -124.943473875999985, 49.70975020000003 ], [ -124.943467758999944, 49.709596972000099 ], [ -124.943883620999941, 49.709589990000083 ], [ -124.943872854999952, 49.709320312000081 ], [ -124.944704572999939, 49.709306345000122 ], [ -124.9445645699999, 49.705800509000021 ], [ -124.944980396999981, 49.705793525000097 ], [ -124.944969627999981, 49.705523845000052 ], [ -124.948296232999922, 49.705467916000039 ], [ -124.948274655999967, 49.704928557000116 ], [ -124.948690475999925, 49.704921560000088 ], [ -124.948658103999918, 49.704112522000088 ], [ -124.948242290999943, 49.704119520000098 ], [ -124.948177563999963, 49.70250144300006 ], [ -124.947345964999926, 49.702515433000023 ], [ -124.947302832999952, 49.701436715000099 ], [ -124.948965996999945, 49.701408730000011 ], [ -124.948976788999985, 49.701678410000042 ], [ -124.949808373999971, 49.701664409000017 ], [ -124.949819169999941, 49.701934087000069 ], [ -124.950650756999934, 49.701920080000058 ], [ -124.95063995799994, 49.701650401000059 ], [ -124.950224164999938, 49.701657406000024 ], [ -124.950213366999918, 49.701387727000061 ], [ -124.949797577999988, 49.701394730000061 ], [ -124.949775984999988, 49.700855371000102 ], [ -124.949360199999916, 49.700862373000064 ], [ -124.949349406999943, 49.700592693000054 ], [ -124.947686272999931, 49.700620683000068 ], [ -124.947664706999944, 49.700081323000113 ], [ -124.947662979999919, 49.700081353000037 ], [ -124.947650615999962, 49.700621175000101 ], [ -124.946443493999979, 49.700609521000111 ], [ -124.946435887999939, 49.700941205000092 ], [ -124.945606069999911, 49.700933186000022 ], [ -124.945557677999957, 49.703041822000039 ], [ -124.944433968999959, 49.70303095200007 ], [ -124.944780325999943, 49.70175692000003 ], [ -124.94554313699993, 49.6989506520001 ], [ -124.945472224999918, 49.697594500000044 ], [ -124.945459650999979, 49.697053702000112 ], [ -124.945450439999931, 49.696657802000097 ], [ -124.94538318499994, 49.693760201000018 ], [ -124.945381847999968, 49.693701931000099 ], [ -124.945384318999942, 49.693701932000089 ], [ -124.945914447999925, 49.693713835000032 ], [ -124.950484901999957, 49.698117916000079 ], [ -124.950500671000029, 49.698133132000073 ], [ -124.951292156999969, 49.698954128000025 ], [ -124.951655841999965, 49.698791114000088 ], [ -124.95203925299991, 49.698689513000026 ], [ -124.952363323999947, 49.698636848000085 ], [ -124.952661662999958, 49.698619924000077 ], [ -124.953038102999969, 49.698641538000125 ], [ -124.953442377999977, 49.698719179000129 ], [ -124.953941365999967, 49.698868103000073 ], [ -124.954392111999951, 49.699002655000115 ], [ -124.954870124999957, 49.69912864700003 ], [ -124.954922735999929, 49.699136765000084 ], [ -124.95616547899999, 49.699328160000036 ], [ -124.955927948999957, 49.700000413000033 ], [ -124.955896395999943, 49.700089670000118 ], [ -124.955672264999976, 49.700723993000032 ], [ -124.95542946499998, 49.7015294320001 ], [ -124.955417086999915, 49.701769481 ], [ -124.955489350999969, 49.702065204000093 ], [ -124.955572710999931, 49.70220378600002 ], [ -124.955733728000027, 49.702471432000081 ], [ -124.956078831999974, 49.702836349000059 ], [ -124.956485302999923, 49.70316793000007 ], [ -124.957020442999976, 49.703604548000044 ], [ -124.958133504999978, 49.704513784000042 ], [ -124.959449747999926, 49.705572488000094 ], [ -124.958703126999978, 49.705982713000118 ], [ -124.957580482999958, 49.706591766000081 ], [ -124.958029418999914, 49.706941515000096 ], [ -124.958171699, 49.707052365000081 ], [ -124.958792633999934, 49.707536122000093 ], [ -124.958968259999921, 49.707738392000081 ], [ -124.959243076999925, 49.708026201000067 ], [ -124.959477968000016, 49.708611301000047 ], [ -124.959494659999905, 49.708972991000074 ], [ -124.959432394999965, 49.709276504000066 ], [ -124.959163485999937, 49.710132917000074 ], [ -124.959138511999981, 49.710438486000029 ], [ -124.959161211, 49.710722991000104 ], [ -124.959275096999988, 49.711017284000064 ], [ -124.959513394999931, 49.711390215000108 ], [ -124.959857565999968, 49.711669546000046 ], [ -124.9601055199999, 49.711870751000042 ], [ -124.960816673999929, 49.71242085500004 ], [ -124.961218524999964, 49.712734096000091 ], [ -124.961747344999964, 49.712457583000088 ], [ -124.96189018099993, 49.71238249500005 ], [ -124.961895903999945, 49.712524520000102 ], [ -124.962311785999987, 49.712517472000059 ], [ -124.962333524999934, 49.713056826000063 ], [ -124.96274941199999, 49.713049776000062 ], [ -124.962760283999955, 49.713319453000111 ], [ -124.963176170999986, 49.71331240300006 ], [ -124.963187046999948, 49.713582079000062 ], [ -124.963602935999972, 49.713575026000122 ], [ -124.963657323999939, 49.714923409000058 ], [ -124.962825518999978, 49.714937512000098 ], [ -124.962836392999947, 49.715207188000115 ], [ -124.962004582999924, 49.715221286000045 ], [ -124.962015451999946, 49.715490963000086 ], [ -124.960351821999907, 49.715519140000069 ] ], [ [ -124.953340208999961, 49.706732235000047 ], [ -124.95332939099994, 49.706462556000055 ], [ -124.952913559999942, 49.706469571000099 ], [ -124.952924372999959, 49.706739249000115 ], [ -124.953340208999961, 49.706732235000047 ] ], [ [ -124.956240212999901, 49.706413412000046 ], [ -124.9562293799999, 49.706143734000079 ], [ -124.955813551999967, 49.706150760000028 ], [ -124.955824381999946, 49.706420438000045 ], [ -124.956240212999901, 49.706413412000046 ] ], [ [ -124.955386893, 49.705888105000085 ], [ -124.955354408999952, 49.705079071000121 ], [ -124.954938589999983, 49.70508609200008 ], [ -124.954927763999976, 49.704816415000089 ], [ -124.954511944999936, 49.704823435000058 ], [ -124.954490298999957, 49.704284078000029 ], [ -124.954074485999968, 49.704291097000066 ], [ -124.954063665000021, 49.704021418000103 ], [ -124.953647852999936, 49.704028435000019 ], [ -124.95365867299995, 49.704298113000085 ], [ -124.95241123000001, 49.704319155000064 ], [ -124.952400417999954, 49.704049477000048 ], [ -124.951568793999954, 49.704063498000032 ], [ -124.951557986999887, 49.703793819000033 ], [ -124.950726366999945, 49.703807832000095 ], [ -124.950747971999988, 49.704347190000078 ], [ -124.950332155999931, 49.704354196000047 ], [ -124.950342956999947, 49.704623875000046 ], [ -124.95117459, 49.704609863000101 ], [ -124.951196199999956, 49.705149220000067 ], [ -124.953275307999945, 49.705114165000097 ], [ -124.953296940999977, 49.705653521000023 ], [ -124.954128590999957, 49.70563948800006 ], [ -124.954139411999961, 49.705909166000026 ], [ -124.955386893, 49.705888105000085 ] ], [ [ -124.951930563999937, 49.702708094000037 ], [ -124.9518981399999, 49.701899058000045 ], [ -124.951066552999947, 49.701913074000103 ], [ -124.951088157999919, 49.702452433000076 ], [ -124.951503956999929, 49.702445424000103 ], [ -124.951514762999949, 49.702715103000031 ], [ -124.951930563999937, 49.702708094000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.981258528344271", "sL_AssetLoss": "1077.29", "sL_BldgLoss": "1057.1", "sL_StrLoss": "991", "sL_NStrLoss": "66.1", "sL_ContLoss": "20.19", "geom_point": "0101000020E61000002EA5B2512B3C5FC0056A7394EADB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.93724123, 49.71797441000006 ], [ -124.94278547899999, 49.71802827600002 ], [ -124.942780578999972, 49.718241098000092 ], [ -124.937237544, 49.718133748000113 ], [ -124.93724123, 49.71797441000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112104333", "BldgCostT": "77808333", "sL_LossRatio": "0.934579360971091", "sL_AssetLoss": "47754.96", "sL_BldgLoss": "44630.8", "sL_StrLoss": "36328.1", "sL_NStrLoss": "8302.7", "sL_ContLoss": "3124.16", "geom_point": "0101000020E6100000F9B76854E23D5FC0B7CB232477DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.96463788599999, 49.718595334000099 ], [ -124.964608842999979, 49.717875736000096 ], [ -124.964192915999931, 49.717882792000111 ], [ -124.964182032999972, 49.717613116000052 ], [ -124.96376610899992, 49.717620170000032 ], [ -124.963733471999959, 49.71681114200009 ], [ -124.964149388999914, 49.71680408700005 ], [ -124.964138508999923, 49.716534412000108 ], [ -124.964970339999965, 49.716520298000027 ], [ -124.964948568999972, 49.715980946000059 ], [ -124.96536447899993, 49.715973887000089 ], [ -124.965353591999957, 49.715704211000066 ], [ -124.966185407999944, 49.715690090000116 ], [ -124.966163947999945, 49.715158745000096 ], [ -124.964957851999941, 49.715147309000024 ], [ -124.965012062999946, 49.712741539000035 ], [ -124.96481795699998, 49.712744833000031 ], [ -124.964807074999982, 49.712475156000046 ], [ -124.964391191999979, 49.712482213000023 ], [ -124.964369431999941, 49.711942861000118 ], [ -124.963953554999975, 49.711949914000051 ], [ -124.963942677999938, 49.711680238000028 ], [ -124.963526802999951, 49.711687292000072 ], [ -124.963537679999945, 49.711956968000045 ], [ -124.962671713999967, 49.711971651000084 ], [ -124.963088393999925, 49.711752599000135 ], [ -124.963900789999954, 49.711325514000102 ], [ -124.965651395999942, 49.710405137000116 ], [ -124.96731999499994, 49.711714387000079 ], [ -124.96743177899998, 49.711802432000127 ], [ -124.96790968699996, 49.712178806000068 ], [ -124.968961373999946, 49.713002746000093 ], [ -124.96986045899996, 49.713707441000075 ], [ -124.97034591299996, 49.71412938000006 ], [ -124.970715124999955, 49.71454215100006 ], [ -124.971303166999931, 49.715334759000072 ], [ -124.970765402999945, 49.715614956000131 ], [ -124.970223123999929, 49.715897509000072 ], [ -124.970047149999942, 49.71598938900005 ], [ -124.969262191999974, 49.71639937900003 ], [ -124.966860014999966, 49.717680906000048 ], [ -124.965941172999962, 49.718159743000037 ], [ -124.965453401999966, 49.718395277000106 ], [ -124.96507996099993, 49.718510305000073 ], [ -124.964968955999964, 49.718544482000027 ], [ -124.96463788599999, 49.718595334000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123840417", "BldgCostT": "84671667", "sL_LossRatio": "0.982171795668842", "sL_AssetLoss": "96510", "sL_BldgLoss": "94789.4", "sL_StrLoss": "84941.1", "sL_NStrLoss": "9848.3", "sL_ContLoss": "1720.6", "geom_point": "0101000020E61000004CF831288B3B5FC0959C137B68DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.932024692999946, 49.710775512000026 ], [ -124.930307779999922, 49.710750587000071 ], [ -124.928595363999989, 49.710735388000067 ], [ -124.92269247699997, 49.710682842000097 ], [ -124.92274184599998, 49.70951838800012 ], [ -124.922797939999967, 49.708194042000102 ], [ -124.922842837999909, 49.707166338000093 ], [ -124.922907986999959, 49.705451615000051 ], [ -124.922950369999938, 49.704486220000028 ], [ -124.923003276999964, 49.703280232000061 ], [ -124.923014687999981, 49.703040794000074 ], [ -124.923052410999944, 49.702249011000042 ], [ -124.924826296999981, 49.702073101000067 ], [ -124.925690398999976, 49.701926008000015 ], [ -124.927683956999942, 49.70136405900007 ], [ -124.927557434999954, 49.701162216000043 ], [ -124.928793715999987, 49.701125392000087 ], [ -124.928858596999959, 49.700982427000035 ], [ -124.930701377999981, 49.700980147000116 ], [ -124.931297178999969, 49.700934900000028 ], [ -124.933271448999974, 49.700972586000034 ], [ -124.933235386999954, 49.701433987000023 ], [ -124.934238993999955, 49.701966692000077 ], [ -124.934210117999925, 49.702626559000066 ], [ -124.934174204999962, 49.703446602000056 ], [ -124.934130906999911, 49.704533701000074 ], [ -124.936137215999921, 49.704560510000078 ], [ -124.937543494999943, 49.704580489000094 ], [ -124.937962721999952, 49.704551300000077 ], [ -124.938391477999986, 49.704468206000094 ], [ -124.939159675999946, 49.704541854000084 ], [ -124.939105088999966, 49.704542769000113 ], [ -124.939115826999966, 49.704812449 ], [ -124.938700005, 49.70481941200007 ], [ -124.938732212999952, 49.705628455000095 ], [ -124.939503590999948, 49.705615536000046 ], [ -124.939563869, 49.705614525000058 ], [ -124.939567736999948, 49.705711633000121 ], [ -124.939707840999958, 49.705826765000026 ], [ -124.939680418999956, 49.706846435000074 ], [ -124.939671475999916, 49.707178917000064 ], [ -124.939728263999967, 49.707179469000081 ], [ -124.939917163999951, 49.70718130500012 ], [ -124.939913067999953, 49.708465784000062 ], [ -124.939920516999962, 49.709665275000141 ], [ -124.933941698999945, 49.709557923000027 ], [ -124.933906254999968, 49.710512252000058 ], [ -124.933895250999939, 49.710807308000049 ], [ -124.932024692999946, 49.710775512000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18591417", "BldgCostT": "12821667", "sL_LossRatio": "0.975007334832899", "sL_AssetLoss": "11247.7", "sL_BldgLoss": "10966.59", "sL_StrLoss": "9657.59", "sL_NStrLoss": "1309", "sL_ContLoss": "281.11", "geom_point": "0101000020E6100000C6501409E23B5FC0B8871099EADC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.944626059999948, 49.731969014000072 ], [ -124.944528896999941, 49.729982575000093 ], [ -124.933267471999926, 49.72972778900003 ], [ -124.933307732999978, 49.728050264000025 ], [ -124.933190737999936, 49.727895260000039 ], [ -124.932880925999953, 49.727797850000044 ], [ -124.93319617399996, 49.727239652000044 ], [ -124.933312056, 49.726669620000038 ], [ -124.933356605999947, 49.726124068000047 ], [ -124.933545222999925, 49.720574227000036 ], [ -124.933589675999912, 49.719265555000085 ], [ -124.934024493999928, 49.719269804000071 ], [ -124.93401269, 49.719778364000035 ], [ -124.935385772999936, 49.719791770000057 ], [ -124.935363469999984, 49.720753804000012 ], [ -124.93576931799997, 49.720757763000137 ], [ -124.935685951999943, 49.72435491300007 ], [ -124.934142438999928, 49.724339848000078 ], [ -124.934126879999937, 49.725010121000039 ], [ -124.935025405999951, 49.725018894000151 ], [ -124.934978059999949, 49.727060322000057 ], [ -124.935476615999974, 49.727065187000107 ], [ -124.935456131999928, 49.72794870200007 ], [ -124.936836017999951, 49.727962154000117 ], [ -124.936801175999918, 49.729466894000034 ], [ -124.939274376999947, 49.729490960000071 ], [ -124.939275267999918, 49.729452390000027 ], [ -124.944820904999958, 49.729506152000049 ], [ -124.944809917999962, 49.729984272000074 ], [ -124.944793212999983, 49.730711138000096 ], [ -124.944846577999954, 49.730711654000096 ], [ -124.944803048999958, 49.732605680000091 ], [ -124.944820891999939, 49.733052072000142 ], [ -124.944792777999965, 49.73305254500012 ], [ -124.944776430999966, 49.733763791000051 ], [ -124.944626059999948, 49.731969014000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13042750", "BldgCostT": "8995000", "sL_LossRatio": "0.989877844861698", "sL_AssetLoss": "7050.87", "sL_BldgLoss": "6979.5", "sL_StrLoss": "6600.4", "sL_NStrLoss": "379.1", "sL_ContLoss": "71.37", "geom_point": "0101000020E6100000C5BAA7612E3D5FC067369FA571DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.955326792999941, 49.740602294000077 ], [ -124.955376431999952, 49.739115726000108 ], [ -124.955383931999918, 49.738890790000063 ], [ -124.955446684999956, 49.737009713000063 ], [ -124.955449002999927, 49.736939888000094 ], [ -124.951669864999985, 49.737043283000069 ], [ -124.951682554999977, 49.736487519000093 ], [ -124.952235001999952, 49.736492824000081 ], [ -124.952252577999957, 49.735722731000017 ], [ -124.957798987999979, 49.735775833000027 ], [ -124.957717319999972, 49.739372924000108 ], [ -124.957585275999946, 49.739371664000132 ], [ -124.957562072999949, 49.740393465000089 ], [ -124.960519359, 49.740343437000014 ], [ -124.960534554999981, 49.7407204020001 ], [ -124.95781815399998, 49.740658813000096 ], [ -124.957346720999965, 49.740648141000072 ], [ -124.955326792999941, 49.740602294000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2846834", "BldgCostT": "1963334", "sL_LossRatio": "0.983587301587302", "sL_AssetLoss": "945", "sL_BldgLoss": "929.49", "sL_StrLoss": "784.69", "sL_NStrLoss": "144.8", "sL_ContLoss": "15.51", "geom_point": "0101000020E610000074F773E9A33D5FC00BE0771DBBDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.961368130999972, 49.740739284000085 ], [ -124.96132984899999, 49.739789994000027 ], [ -124.96174596499992, 49.739782946000062 ], [ -124.961724211999964, 49.739243594000065 ], [ -124.963804762, 49.739208332000068 ], [ -124.963815649999916, 49.739478007000102 ], [ -124.964231760999894, 49.739470950000054 ], [ -124.964242651999882, 49.73974062500006 ], [ -124.964658765, 49.73973356700013 ], [ -124.964669657999949, 49.740003241000096 ], [ -124.965085773999988, 49.739996181000024 ], [ -124.965100603999957, 49.740363214000055 ], [ -124.965116958999914, 49.740768034000119 ], [ -124.964407427999944, 49.740803013000054 ], [ -124.964039526999898, 49.740795995000084 ], [ -124.96299463099993, 49.740776110000084 ], [ -124.962121604999979, 49.740756343000037 ], [ -124.961368130999972, 49.740739284000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28149333", "BldgCostT": "19413333", "sL_LossRatio": "0.980475407455571", "sL_AssetLoss": "17009.83", "sL_BldgLoss": "16677.72", "sL_StrLoss": "14989.72", "sL_NStrLoss": "1688", "sL_ContLoss": "332.11", "geom_point": "0101000020E6100000DD4F63CE353C5FC09B0A2BF445DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.939828568999985, 49.723522940000116 ], [ -124.939854806999975, 49.722386441 ], [ -124.93614649899996, 49.722350348000099 ], [ -124.936229824999899, 49.718753187000075 ], [ -124.937222983999959, 49.718762865000066 ], [ -124.937237544, 49.718133748000113 ], [ -124.942780578999972, 49.718241098000092 ], [ -124.942749438999925, 49.719593856000103 ], [ -124.943034240999935, 49.719589077000123 ], [ -124.943045004999973, 49.719858756000122 ], [ -124.943876904999982, 49.719844794000075 ], [ -124.943881676000018, 49.719964284000042 ], [ -124.945456095999958, 49.719979512000045 ], [ -124.945373489999952, 49.723576674000121 ], [ -124.939828568999985, 49.723522940000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7090500", "BldgCostT": "4890000", "sL_LossRatio": "0.982396128600586", "sL_AssetLoss": "3855.97", "sL_BldgLoss": "3788.09", "sL_StrLoss": "3434.69", "sL_NStrLoss": "353.4", "sL_ContLoss": "67.88", "geom_point": "0101000020E6100000EAA0BF8E073F5FC0852C45D107DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.983612520999884, 49.720893475000054 ], [ -124.983656630999974, 49.718900293000054 ], [ -124.982964402, 49.718912150000065 ], [ -124.982954909999961, 49.718679145000088 ], [ -124.982920458999899, 49.717833457000069 ], [ -124.983336380999958, 49.717826334000073 ], [ -124.983325392999944, 49.717556661000096 ], [ -124.983686500999966, 49.71755047500006 ], [ -124.983692125999966, 49.71729627100008 ], [ -124.983731006999975, 49.717296634 ], [ -124.983730322999961, 49.717279863000094 ], [ -124.98413972299997, 49.717272849000011 ], [ -124.984142017999901, 49.717169138000038 ], [ -124.984135247999959, 49.717003064000046 ], [ -124.98414569399992, 49.717002885 ], [ -124.98415174099992, 49.716729482000083 ], [ -124.984529703999939, 49.716733 ], [ -124.984530612999947, 49.716691886000056 ], [ -124.985137663999936, 49.717332189000039 ], [ -124.985475565999963, 49.717662191000052 ], [ -124.985978860999978, 49.71815375400012 ], [ -124.986098936999937, 49.718271026000124 ], [ -124.987295899999964, 49.719613671000033 ], [ -124.984750762999923, 49.720904072000081 ], [ -124.983612520999884, 49.720893475000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3651583", "BldgCostT": "2518333", "sL_LossRatio": "0.98076832522367", "sL_AssetLoss": "2548.4", "sL_BldgLoss": "2499.39", "sL_StrLoss": "2309.89", "sL_NStrLoss": "189.5", "sL_ContLoss": "49.01", "geom_point": "0101000020E61000006156A499993C5FC08510E3774BDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.944201767999942, 49.736244131000085 ], [ -124.949748230999958, 49.736297642000103 ], [ -124.949731443999951, 49.737031456000096 ], [ -124.944181221999955, 49.737137470000079 ], [ -124.944201767999942, 49.736244131000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63698417", "BldgCostT": "40981667", "sL_LossRatio": "0.973187538071101", "sL_AssetLoss": "28827.64", "sL_BldgLoss": "28054.7", "sL_StrLoss": "24801.4", "sL_NStrLoss": "3253.3", "sL_ContLoss": "772.94", "geom_point": "0101000020E61000007EC3F13A6A3E5FC06ACD7FDDA3DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.966753852999929, 49.719458486000086 ], [ -124.966742955999962, 49.719188811000059 ], [ -124.965911079999955, 49.719202937000013 ], [ -124.965900187999978, 49.718933261000082 ], [ -124.965068315999986, 49.718947381000078 ], [ -124.965057429999987, 49.718677705000069 ], [ -124.96464149699996, 49.71868476300002 ], [ -124.96463788599999, 49.718595334000099 ], [ -124.964968955999964, 49.718544482000027 ], [ -124.96507996099993, 49.718510305000073 ], [ -124.965453401999966, 49.718395277000106 ], [ -124.965941172999962, 49.718159743000037 ], [ -124.966860014999966, 49.717680906000048 ], [ -124.969262191999974, 49.71639937900003 ], [ -124.970047149999942, 49.71598938900005 ], [ -124.970223123999929, 49.715897509000072 ], [ -124.970765402999945, 49.715614956000131 ], [ -124.971303166999931, 49.715334759000072 ], [ -124.973397720999927, 49.714222891000105 ], [ -124.975118100999964, 49.713347177000074 ], [ -124.975700087999954, 49.71305091200005 ], [ -124.976544530999931, 49.712597991000024 ], [ -124.977453780999895, 49.71211030700006 ], [ -124.9781866, 49.711739504000093 ], [ -124.978415488999957, 49.711623708000069 ], [ -124.97857011399999, 49.711746859000094 ], [ -124.979743479999968, 49.712681401000097 ], [ -124.98054727200001, 49.713322560000037 ], [ -124.98058667, 49.713353963000024 ], [ -124.981502399999982, 49.712880386000066 ], [ -124.982045071999949, 49.712598504000049 ], [ -124.982831789999977, 49.712190274000037 ], [ -124.983704542999945, 49.71308099600008 ], [ -124.982212621999935, 49.714246732000014 ], [ -124.983660811999968, 49.715774406000072 ], [ -124.983660249999929, 49.715799835000048 ], [ -124.980755544, 49.715772737000066 ], [ -124.980764032, 49.715981338000063 ], [ -124.97993221899999, 49.715995565000057 ], [ -124.979954155999962, 49.716534911000124 ], [ -124.978706417999902, 49.716556241000028 ], [ -124.978728342999943, 49.717095589000095 ], [ -124.977480591999949, 49.717116905000069 ], [ -124.977491545999953, 49.717386578000102 ], [ -124.977075626999962, 49.717393682000122 ], [ -124.977086579999963, 49.717663356000045 ], [ -124.976670656999985, 49.717670456000079 ], [ -124.976681607999964, 49.717940130000038 ], [ -124.976265684999959, 49.717947230000014 ], [ -124.976276632999884, 49.718216904000087 ], [ -124.975860703999928, 49.718224002000056 ], [ -124.97587165199991, 49.718493676000094 ], [ -124.976703510999982, 49.718479479000102 ], [ -124.97673636599994, 49.719288500000083 ], [ -124.976719240999984, 49.719288792000093 ], [ -124.9738248099999, 49.719338168000029 ], [ -124.973813873999958, 49.719068494000069 ], [ -124.972982002999942, 49.719082670000063 ], [ -124.972971071999922, 49.718812997000036 ], [ -124.9725551399999, 49.718820083000026 ], [ -124.972544209999967, 49.718550409000073 ], [ -124.97250606299994, 49.718551058000052 ], [ -124.972501880999943, 49.718738007000091 ], [ -124.969220804999921, 49.718707058000078 ], [ -124.969227669999952, 49.718876720000054 ], [ -124.96797986599999, 49.71889793400004 ], [ -124.968001670999939, 49.719437285000055 ], [ -124.966753852999929, 49.719458486000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16033833", "BldgCostT": "10848333", "sL_LossRatio": "0.794510581409096", "sL_AssetLoss": "10995.7", "sL_BldgLoss": "8736.2", "sL_StrLoss": "7067", "sL_NStrLoss": "1669.2", "sL_ContLoss": "2259.5", "geom_point": "0101000020E6100000F738BAE74C3E5FC0711A60EEACDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.974500214999949, 49.733921578 ], [ -124.974524101999975, 49.732852135000101 ], [ -124.972644964999972, 49.732834463000067 ], [ -124.972660980999947, 49.732118704000086 ], [ -124.972518403999985, 49.73211736100005 ], [ -124.972539410999985, 49.731178658000076 ], [ -124.970784194999965, 49.731162119000047 ], [ -124.970793483999984, 49.73074777900009 ], [ -124.970723318999958, 49.730747118000103 ], [ -124.970733241999966, 49.730304462000078 ], [ -124.970388532999891, 49.730301211000025 ], [ -124.97039807799996, 49.729875603000025 ], [ -124.970271554999968, 49.729874410000015 ], [ -124.970277383999985, 49.729614475000133 ], [ -124.969845553999988, 49.729610399000087 ], [ -124.96985092099996, 49.729371234000048 ], [ -124.969656061999956, 49.729369395000063 ], [ -124.969735591999935, 49.72582505000004 ], [ -124.970962501999978, 49.728323113000037 ], [ -124.97344735199998, 49.730309539000125 ], [ -124.97797862, 49.733833012000062 ], [ -124.976168902999987, 49.734806589000137 ], [ -124.97472828599993, 49.73542909400004 ], [ -124.974498203999929, 49.735528475000123 ], [ -124.973126535999953, 49.735963503000072 ], [ -124.973068831999953, 49.735990109000063 ], [ -124.973099515999962, 49.734618350000112 ], [ -124.973386374999961, 49.734621049000104 ], [ -124.973402245999949, 49.733911256000063 ], [ -124.974500214999949, 49.733921578 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8347167", "BldgCostT": "5756667", "sL_LossRatio": "0.97574887793998", "sL_AssetLoss": "4375.88", "sL_BldgLoss": "4269.76", "sL_StrLoss": "3693.56", "sL_NStrLoss": "576.2", "sL_ContLoss": "106.12", "geom_point": "0101000020E61000002DB1D760063C5FC00582088A02DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.933139707999956, 49.733771743000069 ], [ -124.944774038, 49.733867889000052 ], [ -124.944763904999931, 49.734308761000079 ], [ -124.942652054999925, 49.734288323000051 ], [ -124.942637057999917, 49.73493951300005 ], [ -124.937520304999936, 49.734889823000053 ], [ -124.937509277999979, 49.735366240000126 ], [ -124.933078925999965, 49.735323022000031 ], [ -124.933139707999956, 49.733771743000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6684500", "BldgCostT": "4610000", "sL_LossRatio": "0.975874960293866", "sL_AssetLoss": "4911.08", "sL_BldgLoss": "4792.6", "sL_StrLoss": "4313.6", "sL_NStrLoss": "479", "sL_ContLoss": "118.48", "geom_point": "0101000020E61000003F9B0B12D13B5FC08008F51D91DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.933160505999979, 49.739160980000115 ], [ -124.933014274999948, 49.738768279000034 ], [ -124.932957123999984, 49.738422349000061 ], [ -124.93297021799998, 49.738098654000041 ], [ -124.933023596999973, 49.736735763000048 ], [ -124.93510822399999, 49.736756120000081 ], [ -124.935060903999926, 49.738795985000095 ], [ -124.936517794999986, 49.738810189000056 ], [ -124.936468631000011, 49.740932247000096 ], [ -124.935684902, 49.740933510000069 ], [ -124.933838099999946, 49.739845785000092 ], [ -124.933419586999918, 49.739532269000136 ], [ -124.933160505999979, 49.739160980000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33835750", "BldgCostT": "23335000", "sL_LossRatio": "0.981636549457149", "sL_AssetLoss": "28042.66", "sL_BldgLoss": "27527.7", "sL_StrLoss": "24986.7", "sL_NStrLoss": "2541", "sL_ContLoss": "514.96", "geom_point": "0101000020E61000002EC58F10E93B5FC0952E7913AEDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.931962941999956, 49.735312108000059 ], [ -124.931965039999952, 49.735221927000055 ], [ -124.931215419999916, 49.735214589000066 ], [ -124.931251826000022, 49.733650754000031 ], [ -124.929506450999924, 49.733633649000055 ], [ -124.92950842099998, 49.733549160000095 ], [ -124.926954658999975, 49.733524083000127 ], [ -124.926978270999896, 49.732513818000108 ], [ -124.930234333999948, 49.730041402000047 ], [ -124.932101805999963, 49.728623158000083 ], [ -124.932495655999944, 49.728267161000126 ], [ -124.932880925999953, 49.727797850000044 ], [ -124.933190737999936, 49.727895260000039 ], [ -124.933307732999978, 49.728050264000025 ], [ -124.933267471999926, 49.72972778900003 ], [ -124.944528896999941, 49.729982575000093 ], [ -124.944626059999948, 49.731969014000072 ], [ -124.944776430999966, 49.733763791000051 ], [ -124.944774038, 49.733867889000052 ], [ -124.933139707999956, 49.733771743000069 ], [ -124.933078925999965, 49.735323022000031 ], [ -124.931962941999956, 49.735312108000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34855584", "BldgCostT": "24038334", "sL_LossRatio": "0.989445294951459", "sL_AssetLoss": "23626.43", "sL_BldgLoss": "23377.06", "sL_StrLoss": "21934.26", "sL_NStrLoss": "1442.8", "sL_ContLoss": "249.37", "geom_point": "0101000020E6100000530010A0B43B5FC02C10DAFED7DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.937801249999922, 49.747043529000102 ], [ -124.937857362999978, 49.74461882800005 ], [ -124.936460626999988, 49.744605230000047 ], [ -124.936437744999978, 49.745592740000156 ], [ -124.935515975999962, 49.745583757000084 ], [ -124.934786987999956, 49.745065693000079 ], [ -124.932000405999929, 49.742701485000033 ], [ -124.930926714999927, 49.74226139700005 ], [ -124.930243186999988, 49.741804198000111 ], [ -124.929105172999954, 49.740789209000127 ], [ -124.929735029999947, 49.740779461000017 ], [ -124.928618903999947, 49.739597702000061 ], [ -124.928000160999929, 49.739217669 ], [ -124.927166239999934, 49.738705437000114 ], [ -124.926328615999964, 49.73819090000012 ], [ -124.926120949, 49.738097348000032 ], [ -124.924853563999989, 49.737526306000127 ], [ -124.924153125999936, 49.737210703000116 ], [ -124.924013958999964, 49.737182119000082 ], [ -124.923904683, 49.737159695000052 ], [ -124.923619693999939, 49.737188304000043 ], [ -124.923116104999934, 49.737371343000092 ], [ -124.922924704999971, 49.737136541000019 ], [ -124.92279571, 49.736838442000085 ], [ -124.922748089, 49.736505122000011 ], [ -124.922798304999944, 49.736135938000082 ], [ -124.922978791999952, 49.735715921000072 ], [ -124.923281386999932, 49.735349212000095 ], [ -124.923687407999964, 49.735012316000088 ], [ -124.924134934999969, 49.734672547000073 ], [ -124.924474122000021, 49.734415045000034 ], [ -124.924508354999929, 49.735280436000011 ], [ -124.924092268999985, 49.7352873500001 ], [ -124.924109164999976, 49.735714542000053 ], [ -124.92650569199999, 49.735738140000073 ], [ -124.926503490999934, 49.735832307000116 ], [ -124.926973381999943, 49.735836928000026 ], [ -124.926968703999989, 49.736037044000078 ], [ -124.929333603999922, 49.736060268000095 ], [ -124.929323939999918, 49.73647461300002 ], [ -124.929960204999958, 49.736480852000064 ], [ -124.929954962999915, 49.736705722000096 ], [ -124.933023596999973, 49.736735763000048 ], [ -124.93297021799998, 49.738098654000041 ], [ -124.932957123999984, 49.738422349000061 ], [ -124.933014274999948, 49.738768279000034 ], [ -124.933160505999979, 49.739160980000115 ], [ -124.933419586999918, 49.739532269000136 ], [ -124.933838099999946, 49.739845785000092 ], [ -124.935684902, 49.740933510000069 ], [ -124.939157724999973, 49.742978655000066 ], [ -124.939168006999978, 49.742984696000121 ], [ -124.941352199999969, 49.744270759000116 ], [ -124.941489979, 49.744351883 ], [ -124.941619120999931, 49.744427900000069 ], [ -124.941626512, 49.745652403000115 ], [ -124.941635169999955, 49.747080764000046 ], [ -124.937801249999922, 49.747043529000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50670250", "BldgCostT": "34945000", "sL_LossRatio": "0.989275377794325", "sL_AssetLoss": "35025.01", "sL_BldgLoss": "34649.38", "sL_StrLoss": "32515.48", "sL_NStrLoss": "2133.9", "sL_ContLoss": "375.63", "geom_point": "0101000020E61000006D736BEB8A3E5FC02988891FC6E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.984324515000012, 49.779965902000079 ], [ -124.983244577999983, 49.777672896000119 ], [ -124.982562815, 49.776992205000028 ], [ -124.982168980999944, 49.77684549700006 ], [ -124.981477114999933, 49.776929496000022 ], [ -124.979834209999936, 49.776822688000067 ], [ -124.97874140199994, 49.776607600000055 ], [ -124.976731914999945, 49.776029394000098 ], [ -124.974984208999928, 49.775052389000059 ], [ -124.973475996999937, 49.774519702000049 ], [ -124.973089814999952, 49.773924405000059 ], [ -124.97275681399999, 49.772877592000057 ], [ -124.972649899999936, 49.771296792000101 ], [ -124.97220191599996, 49.769459498000117 ], [ -124.971274909999963, 49.767874393000113 ], [ -124.970741692999951, 49.76738871700006 ], [ -124.967867710999926, 49.765315093000048 ], [ -124.96774772199997, 49.765213466000034 ], [ -124.96777728399999, 49.763899593000119 ], [ -124.973327116999954, 49.763951903000049 ], [ -124.973318889, 49.76431953500007 ], [ -124.973922205999969, 49.764325205000056 ], [ -124.974114876999963, 49.764650511000056 ], [ -124.974109085999942, 49.764909511000035 ], [ -124.974269166999989, 49.764911015000045 ], [ -124.975596894999953, 49.767152602000088 ], [ -124.975671838999958, 49.767235777000103 ], [ -124.9760153, 49.767616997000111 ], [ -124.978659298999929, 49.769354789000026 ], [ -124.979566307999931, 49.76995088500005 ], [ -124.980082087999946, 49.770285886000103 ], [ -124.980698987999943, 49.770758404000055 ], [ -124.981086997, 49.771099308000032 ], [ -124.981948718999917, 49.772048085000073 ], [ -124.982874201999934, 49.77318551000009 ], [ -124.982555093999977, 49.773303093000095 ], [ -124.982318417999963, 49.773336903000036 ], [ -124.979317704999957, 49.773325916000069 ], [ -124.97933482399999, 49.77393320100002 ], [ -124.979350610999987, 49.774594407000052 ], [ -124.979488981999964, 49.774595981000083 ], [ -124.979600717999929, 49.77459725600005 ], [ -124.982816425999928, 49.774634038000073 ], [ -124.984066001999935, 49.774648295000077 ], [ -124.984168763999946, 49.774773565000046 ], [ -124.984326914999954, 49.774966413000108 ], [ -124.98493759099992, 49.775533306000057 ], [ -124.98680840199998, 49.776805406000072 ], [ -124.990051809999954, 49.778917503000045 ], [ -124.987189915999963, 49.778827187000111 ], [ -124.98551139199995, 49.778772902000064 ], [ -124.984874498999943, 49.7787625200001 ], [ -124.984792109999916, 49.779472285000047 ], [ -124.984529912999932, 49.779841310000045 ], [ -124.984345434999952, 49.779999847000042 ], [ -124.984324515000012, 49.779965902000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14985750", "BldgCostT": "10335000", "sL_LossRatio": "0.986115782486524", "sL_AssetLoss": "11238.66", "sL_BldgLoss": "11082.62", "sL_StrLoss": "10208.12", "sL_NStrLoss": "874.5", "sL_ContLoss": "156.04", "geom_point": "0101000020E6100000A75D0A17CB3C5FC08B743736D8E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.951651480999942, 49.759921596000119 ], [ -124.951123400999904, 49.759571205000071 ], [ -124.950619585999974, 49.759463004000096 ], [ -124.950280685000038, 49.759287797000063 ], [ -124.949947294999944, 49.758970208000022 ], [ -124.949392790999951, 49.758628406000085 ], [ -124.948745043999935, 49.758017667000054 ], [ -124.948728213999956, 49.758001799000112 ], [ -124.948406882999961, 49.757584503000075 ], [ -124.947851003000011, 49.757224097000098 ], [ -124.946200210999905, 49.755533606 ], [ -124.944532183999939, 49.754428394000037 ], [ -124.943692188999961, 49.753596690000023 ], [ -124.942822990999957, 49.752307807000122 ], [ -124.941933886999962, 49.751269506000028 ], [ -124.941874821999974, 49.751168105000033 ], [ -124.941098519999954, 49.749835297000075 ], [ -124.940460992999988, 49.749144601000118 ], [ -124.939580499999948, 49.748646100000045 ], [ -124.939493478999978, 49.748563628000042 ], [ -124.940959116999949, 49.748577855000057 ], [ -124.940979694999967, 49.748631995000075 ], [ -124.941884575999964, 49.750061892000062 ], [ -124.942686193999918, 49.750613884000067 ], [ -124.943139499999944, 49.751714705000026 ], [ -124.9432273, 49.751818982000088 ], [ -124.943353901999899, 49.75186611900007 ], [ -124.943767199999968, 49.75187009000004 ], [ -124.943928413999956, 49.75191750600009 ], [ -124.944099101999967, 49.752036094000069 ], [ -124.944871426999967, 49.752902504000126 ], [ -124.94574149099995, 49.753801385000095 ], [ -124.946340687999978, 49.754292891000048 ], [ -124.946833104999939, 49.754594001000093 ], [ -124.946908493, 49.754640100000088 ], [ -124.948374196999936, 49.755282106000031 ], [ -124.948778406999978, 49.755506310000094 ], [ -124.949458561000014, 49.756130828000053 ], [ -124.950617985999926, 49.757195326000037 ], [ -124.95068313099992, 49.757255171000047 ], [ -124.9513422899999, 49.757860328000099 ], [ -124.95166628099993, 49.758157795000102 ], [ -124.952060082999978, 49.758413388000037 ], [ -124.952428789999885, 49.758551909000083 ], [ -124.952931807999946, 49.758642103000099 ], [ -124.953596619, 49.758698 ], [ -124.954361080999931, 49.758699901000092 ], [ -124.960842934999903, 49.758696028000053 ], [ -124.96085350599999, 49.75895806800002 ], [ -124.95918838599999, 49.75898624600012 ], [ -124.959210125999931, 49.759525597000064 ], [ -124.959121645999943, 49.75952709300001 ], [ -124.959108400999952, 49.760110925000028 ], [ -124.956493121000022, 49.760155203000132 ], [ -124.954569710999962, 49.759944401000034 ], [ -124.95405520199995, 49.759962888000089 ], [ -124.953148402999915, 49.760193590000071 ], [ -124.952579712999963, 49.760176505000068 ], [ -124.951651480999942, 49.759921596000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.983086680761099", "sL_AssetLoss": "1040.6", "sL_BldgLoss": "1023", "sL_StrLoss": "917", "sL_NStrLoss": "106", "sL_ContLoss": "17.6", "geom_point": "0101000020E6100000DE0529FC823B5FC09FBB8F690EDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.92909598199995, 49.735473965000033 ], [ -124.929042512999956, 49.734125560000074 ], [ -124.930290735999932, 49.734104761000083 ], [ -124.93030143599999, 49.73437444200011 ], [ -124.93071751299999, 49.734367506000069 ], [ -124.930760324999937, 49.735446228000072 ], [ -124.92909598199995, 49.735473965000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150706000", "BldgCostT": "93925000", "sL_LossRatio": "0.877260257203425", "sL_AssetLoss": "92472.33", "sL_BldgLoss": "81122.3", "sL_StrLoss": "69953.9", "sL_NStrLoss": "11168.4", "sL_ContLoss": "11350.03", "geom_point": "0101000020E6100000C1BAB743BF405FC01E17482F6ED64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.008741689999937, 49.676246757000101 ], [ -125.006476288999977, 49.674487345000081 ], [ -125.006825477999882, 49.673903113000023 ], [ -125.007840057999957, 49.672649408 ], [ -125.007840388999924, 49.672649109000133 ], [ -125.008638559999952, 49.671907362000098 ], [ -125.008799514999964, 49.671638060000092 ], [ -125.008842793999918, 49.671364989000061 ], [ -125.00878371099995, 49.671085597000115 ], [ -125.008518429999953, 49.670350056000075 ], [ -125.008532808999973, 49.669682721000079 ], [ -125.008581060999987, 49.669244184000078 ], [ -125.010586011, 49.670805119000086 ], [ -125.011343848, 49.671390110000033 ], [ -125.012225700000016, 49.672070792000085 ], [ -125.013603707999948, 49.673134394000073 ], [ -125.014415886999942, 49.673033272000076 ], [ -125.015257123999916, 49.673718045000079 ], [ -125.014768643999972, 49.674025889000113 ], [ -125.017149502, 49.675847787000123 ], [ -125.017827226999941, 49.676366347000048 ], [ -125.017890785999953, 49.676415010000113 ], [ -125.011535083999945, 49.679866709000073 ], [ -125.011439372999988, 49.67978903700007 ], [ -125.010888829999899, 49.679342472000016 ], [ -125.01077138399998, 49.679247209000046 ], [ -125.010394012999967, 49.678824582000018 ], [ -125.009412110999904, 49.678046510000101 ], [ -125.010386087999976, 49.677521096000149 ], [ -125.008741689999937, 49.676246757000101 ] ], [ [ -125.015592843999983, 49.675889936000054 ], [ -125.015367542999982, 49.675714360000015 ], [ -125.015306686999907, 49.675715419000014 ], [ -125.015304617, 49.675665321000054 ], [ -125.015028823999927, 49.675450393000077 ], [ -125.014879988999937, 49.675452983000078 ], [ -125.014874923999955, 49.675330455000072 ], [ -125.01469011099999, 49.675186425000028 ], [ -125.01445329199997, 49.675190546000096 ], [ -125.014445235999986, 49.674995585000048 ], [ -125.014351399999924, 49.674922456000075 ], [ -125.014026600999955, 49.674928107000028 ], [ -125.014015554999929, 49.674660715000073 ], [ -125.013673989999987, 49.674394513000045 ], [ -125.013588777, 49.67439599600003 ], [ -125.013585877999915, 49.674325842000073 ], [ -125.013335290999976, 49.674130541000061 ], [ -125.012331011999919, 49.674148004000116 ], [ -125.012297619999941, 49.673338992000062 ], [ -125.011882082999975, 49.673346215000031 ], [ -125.011867233999965, 49.672986329000047 ], [ -125.011641857999948, 49.672810663000099 ], [ -125.011028767, 49.672821315000057 ], [ -125.011007945999935, 49.67231656000007 ], [ -125.010964513999951, 49.672282704000061 ], [ -125.010590994, 49.672289193000054 ], [ -125.010579872999983, 49.672019522000063 ], [ -125.010555863999912, 49.672019938000133 ], [ -125.01054025800002, 49.672745073000037 ], [ -125.009670274999976, 49.672737171000101 ], [ -125.009642997999919, 49.674003492000018 ], [ -125.009098976999894, 49.673998547000089 ], [ -125.009093972999949, 49.674230707000042 ], [ -125.010240799, 49.67424112700008 ], [ -125.010224586999968, 49.674994194000135 ], [ -125.011117760000033, 49.674978679000041 ], [ -125.01112888499992, 49.675248350000103 ], [ -125.011544435999966, 49.675241130000124 ], [ -125.011555562999988, 49.675510800000104 ], [ -125.011971116999959, 49.675503578000068 ], [ -125.011982245999917, 49.675773247000102 ], [ -125.01239780199991, 49.675766025000108 ], [ -125.012386669999927, 49.675496355000035 ], [ -125.013633329999919, 49.675474675000025 ], [ -125.013649758999975, 49.67587237 ], [ -125.015592843999983, 49.675889936000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287398698", "BldgCostT": "173365270", "sL_LossRatio": "0.741834743263482", "sL_AssetLoss": "222237.96", "sL_BldgLoss": "164863.84", "sL_StrLoss": "125420.84", "sL_NStrLoss": "39443", "sL_ContLoss": "57374.12", "geom_point": "0101000020E6100000FFF4138C52405FC0E7C9BA879DD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.995357519999928, 49.670287979000094 ], [ -124.994629320999962, 49.669705581000088 ], [ -124.995450282999968, 49.669274443000042 ], [ -124.995706660999957, 49.669139791000099 ], [ -124.997437991999973, 49.668199082000108 ], [ -124.998363806000015, 49.668183103000082 ], [ -124.998374856999988, 49.668452776000017 ], [ -124.998790353999951, 49.668445602000077 ], [ -124.998801408999952, 49.668715274000064 ], [ -124.999216906999933, 49.668708099000135 ], [ -124.999227964999989, 49.668977772000112 ], [ -124.999643463999945, 49.668970595000097 ], [ -124.999654522999919, 49.669240267000113 ], [ -125.000070027999982, 49.669233089000031 ], [ -125.000078972999958, 49.66945120500008 ], [ -125.000143180999885, 49.669501688000068 ], [ -125.000496593999941, 49.669495581000064 ], [ -125.000507657999947, 49.669765254000097 ], [ -125.001338671999974, 49.669750890000095 ], [ -125.001360810999969, 49.670290234000113 ], [ -125.002338364999972, 49.670273328000043 ], [ -125.002344222999952, 49.670003364000095 ], [ -125.002180760999977, 49.670006191000056 ], [ -125.002128544999962, 49.668734533000048 ], [ -125.001871313999956, 49.668732177000066 ], [ -125.001881437999955, 49.668265767000072 ], [ -125.000952407999989, 49.668257254000139 ], [ -125.000994604, 49.666315131000076 ], [ -125.002746000999977, 49.665438006000073 ], [ -125.003283575999944, 49.665104695000103 ], [ -125.004093516999887, 49.665753505000069 ], [ -125.005185551999929, 49.666609052000091 ], [ -125.007280380999958, 49.665497428000023 ], [ -125.008093699999932, 49.665065810000051 ], [ -125.008470039999949, 49.664897071000084 ], [ -125.011289187999964, 49.663442096000097 ], [ -125.011968173999961, 49.663448255000034 ], [ -125.01189731299992, 49.66674604600005 ], [ -125.013308024999958, 49.666758829000045 ], [ -125.013255314, 49.669215146000056 ], [ -125.013329438, 49.669273093000136 ], [ -125.013646168999969, 49.66926758400006 ], [ -125.013289088999926, 49.669399394000067 ], [ -125.013802324999972, 49.669871638000053 ], [ -125.011626405999948, 49.670915586000035 ], [ -125.011885314999986, 49.671162322000036 ], [ -125.011343848, 49.671390110000033 ], [ -125.010586011, 49.670805119000086 ], [ -125.008581060999987, 49.669244184000078 ], [ -125.008532808999973, 49.669682721000079 ], [ -125.007222608999911, 49.670381982000052 ], [ -125.006959071999944, 49.67052260600007 ], [ -125.006267327999922, 49.670891765000057 ], [ -125.005097375999952, 49.671517058000042 ], [ -125.002928332999943, 49.672675641000076 ], [ -125.001657187999967, 49.673363901000094 ], [ -125.001283324999989, 49.673553807000047 ], [ -125.000230899999963, 49.674115394000047 ], [ -124.999991604999977, 49.673929663000109 ], [ -124.998964216999951, 49.673132299000081 ], [ -124.995357519999928, 49.670287979000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16260744", "BldgCostT": "10029076", "sL_LossRatio": "0.802455853887712", "sL_AssetLoss": "11525.93", "sL_BldgLoss": "9249.05", "sL_StrLoss": "7532.65", "sL_NStrLoss": "1716.4", "sL_ContLoss": "2276.88", "geom_point": "0101000020E6100000E10F7139BF405FC0A1F37574B7D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.009475885999962, 49.662146670000077 ], [ -125.011781714000023, 49.660414419000112 ], [ -125.011917325999917, 49.660517288000072 ], [ -125.01270940900001, 49.661118198000047 ], [ -125.013753009999931, 49.661940480000091 ], [ -125.013853166, 49.662019383000036 ], [ -125.01391163299995, 49.662065450000121 ], [ -125.013909663999968, 49.662157316000076 ], [ -125.013228579999947, 49.662151150000064 ], [ -125.013223349999976, 49.662394832000039 ], [ -125.012242059999934, 49.662385942000128 ], [ -125.012238120999911, 49.662569357000038 ], [ -125.012062284999956, 49.662567763000034 ], [ -125.012047852, 49.663239560000122 ], [ -125.011687920999947, 49.663236296 ], [ -125.011817923999956, 49.663169197000101 ], [ -125.00992119499989, 49.662315406000047 ], [ -125.009475885999962, 49.662146670000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.987500278514293", "sL_AssetLoss": "448.81", "sL_BldgLoss": "443.2", "sL_StrLoss": "406", "sL_NStrLoss": "37.2", "sL_ContLoss": "5.61", "geom_point": "0101000020E61000002083916EF6455FC0FD76A7757AD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09340627899995, 49.650851005000078 ], [ -125.093667142999976, 49.650846285000078 ], [ -125.093748146999985, 49.652733888000071 ], [ -125.093332806999925, 49.652741401000057 ], [ -125.093342913999962, 49.652976912000035 ], [ -125.093344376999966, 49.653011058000089 ], [ -125.093240148999925, 49.653012943000078 ], [ -125.092017293999959, 49.653035052000121 ], [ -125.092612717999913, 49.652425924000049 ], [ -125.092649993999942, 49.652387803000053 ], [ -125.09340627899995, 49.650851005000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998019345923537", "sL_AssetLoss": "217.1", "sL_BldgLoss": "216.67", "sL_StrLoss": "213", "sL_NStrLoss": "3.67", "sL_ContLoss": "0.43", "geom_point": "0101000020E6100000CD3B90EDE3475FC0155732531CD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.123333357999954, 49.673514419000071 ], [ -125.123321613999934, 49.673244768000082 ], [ -125.122490601999928, 49.673260009000018 ], [ -125.122478863999945, 49.672990357000131 ], [ -125.122063359, 49.672997974000111 ], [ -125.122051621999958, 49.672728324000062 ], [ -125.121636121999956, 49.672735940000031 ], [ -125.121600917999956, 49.671926984000109 ], [ -125.122847399999927, 49.671904132000094 ], [ -125.122859141999967, 49.672173783000126 ], [ -125.12369013299994, 49.672158541000037 ], [ -125.123701879999928, 49.672428191000094 ], [ -125.124532874999886, 49.672412943000047 ], [ -125.12454462599996, 49.672682593000062 ], [ -125.124960124999973, 49.672674966000081 ], [ -125.124995385999981, 49.673483920000116 ], [ -125.123333357999954, 49.673514419000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10080584", "BldgCostT": "6688334", "sL_LossRatio": "0.973943424989661", "sL_AssetLoss": "9865.84", "sL_BldgLoss": "9608.77", "sL_StrLoss": "8695.87", "sL_NStrLoss": "912.9", "sL_ContLoss": "257.07", "geom_point": "0101000020E6100000CD5E1157294B5FC0E79478273CCA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.173962355999905, 49.5849126190001 ], [ -125.173965232999961, 49.584752166000058 ], [ -125.173364642999942, 49.584747604000093 ], [ -125.173368951, 49.584507526000046 ], [ -125.172970042999921, 49.584504494000072 ], [ -125.172978026999928, 49.584059748000115 ], [ -125.17252255299999, 49.584056284000098 ], [ -125.17258717199999, 49.58045825300011 ], [ -125.172633622999982, 49.580458607000011 ], [ -125.172638099999972, 49.580209354000019 ], [ -125.172459083, 49.580207992000091 ], [ -125.172504326999956, 49.577688853000069 ], [ -125.171680006999949, 49.577682578000058 ], [ -125.171744682999972, 49.574084514000049 ], [ -125.172443088999927, 49.574089832000041 ], [ -125.173556790999939, 49.574473889000046 ], [ -125.174722395999936, 49.575523496000102 ], [ -125.175144104999944, 49.575658811000039 ], [ -125.175329881999957, 49.57581689700006 ], [ -125.176218594999909, 49.576799607000076 ], [ -125.176673, 49.577662712000119 ], [ -125.176708890999961, 49.578202508000047 ], [ -125.176460985999981, 49.578836207000144 ], [ -125.175843592999968, 49.579568296000033 ], [ -125.17566858099994, 49.579985593000039 ], [ -125.176000005999967, 49.580607911000094 ], [ -125.176036293999914, 49.581075110000029 ], [ -125.176230107999956, 49.581404083000045 ], [ -125.17623990099996, 49.581926811000045 ], [ -125.17630520499992, 49.582465084000091 ], [ -125.176971694999935, 49.58285681000006 ], [ -125.177794010999946, 49.582994905000064 ], [ -125.177957591999984, 49.583234210000079 ], [ -125.177896299999972, 49.584350786000066 ], [ -125.17765204299991, 49.584940577000097 ], [ -125.173962355999905, 49.5849126190001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58237750", "BldgCostT": "38800000", "sL_LossRatio": "0.859206315582421", "sL_AssetLoss": "52872.4", "sL_BldgLoss": "45428.3", "sL_StrLoss": "38636.8", "sL_NStrLoss": "6791.5", "sL_ContLoss": "7444.1", "geom_point": "0101000020E61000006F91930D54415FC0EBE0E4A786D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.025158976999933, 49.672465853000048 ], [ -125.02340648199997, 49.670921897000049 ], [ -125.02292121, 49.671167707000102 ], [ -125.022931940999968, 49.670662734000047 ], [ -125.023617332999919, 49.670668877000026 ], [ -125.023646995999954, 49.669272048000103 ], [ -125.023930516999897, 49.669274587000075 ], [ -125.0239352899999, 49.669049765000075 ], [ -125.023384523999979, 49.669044830000082 ], [ -125.023390969999951, 49.668741342000061 ], [ -125.022908525999938, 49.668737018000073 ], [ -125.022916567999957, 49.668358502000032 ], [ -125.022325925999965, 49.668353205000066 ], [ -125.022346559999932, 49.667382747000019 ], [ -125.022263782999971, 49.667382005000064 ], [ -125.022273906999942, 49.666905870000022 ], [ -125.021462480999929, 49.666898586000087 ], [ -125.02148263, 49.665951806000066 ], [ -125.020319896999951, 49.665941359000065 ], [ -125.020334423999955, 49.665259489000036 ], [ -125.019528507999979, 49.665252240000072 ], [ -125.019534474999958, 49.66497237100004 ], [ -125.018226055999946, 49.664960590000156 ], [ -125.017975282999942, 49.664807578000129 ], [ -125.017996942999957, 49.663793295000033 ], [ -125.01770872500002, 49.66379069700011 ], [ -125.017712201999927, 49.663627994000073 ], [ -125.016967507999979, 49.663621278000029 ], [ -125.016982817999974, 49.662905086000066 ], [ -125.016604336999961, 49.662901671000064 ], [ -125.016640399999972, 49.661215223000049 ], [ -125.016446234999989, 49.661213471000075 ], [ -125.016463972999986, 49.660384073000031 ], [ -125.014676306999931, 49.660367921000066 ], [ -125.014671998999944, 49.660569001000127 ], [ -125.013943861, 49.660562414000076 ], [ -125.01391163299995, 49.662065450000121 ], [ -125.013853166, 49.662019383000036 ], [ -125.013753009999931, 49.661940480000091 ], [ -125.01270940900001, 49.661118198000047 ], [ -125.011917325999917, 49.660517288000072 ], [ -125.011781714000023, 49.660414419000112 ], [ -125.009475885999962, 49.662146670000077 ], [ -125.00992119499989, 49.662315406000047 ], [ -125.011817923999956, 49.663169197000101 ], [ -125.011687920999947, 49.663236296 ], [ -125.010730016999958, 49.663227604 ], [ -125.010725513999958, 49.66343698 ], [ -125.011289187999964, 49.663442096000097 ], [ -125.008470039999949, 49.664897071000084 ], [ -125.008427958999931, 49.664463480000073 ], [ -125.008410564999949, 49.662507706000085 ], [ -125.008420030999915, 49.662463470000027 ], [ -125.008561518999954, 49.661800225000071 ], [ -125.009190712999967, 49.659592095000093 ], [ -125.009140501999966, 49.659030384000076 ], [ -125.009044289999949, 49.658480796000077 ], [ -125.008948321999938, 49.657988696000054 ], [ -125.008794700999957, 49.657084202000085 ], [ -125.008838513999976, 49.656064782000087 ], [ -125.008842772999941, 49.655965564000077 ], [ -125.008863699999907, 49.655478936000065 ], [ -125.008899295999981, 49.65464997500014 ], [ -125.008900185999948, 49.654629304000068 ], [ -125.009079275999966, 49.654426546000089 ], [ -125.010017001999955, 49.65336480100008 ], [ -125.010228416999951, 49.652997904000117 ], [ -125.010329296999927, 49.652685798000107 ], [ -125.01035920399994, 49.652386480000125 ], [ -125.01029641400001, 49.651961307000114 ], [ -125.010040405999959, 49.651633290000113 ], [ -125.009634978999884, 49.651366095000078 ], [ -125.012811788999954, 49.649672522000046 ], [ -125.012796105999939, 49.650403261000115 ], [ -125.013845770999936, 49.650412769000063 ], [ -125.013844155999948, 49.6503736330001 ], [ -125.013428816999948, 49.65038085900008 ], [ -125.013395433999975, 49.6495718460001 ], [ -125.013810765999921, 49.649564620000021 ], [ -125.013793613999923, 49.649149060000077 ], [ -125.01403378599997, 49.649021010000041 ], [ -125.014203834999989, 49.649018051000041 ], [ -125.014200290999966, 49.64893223400005 ], [ -125.014557012999958, 49.648742039000098 ], [ -125.015438677999924, 49.64872668900005 ], [ -125.015427538999944, 49.64845701900007 ], [ -125.017088828999974, 49.64842807800003 ], [ -125.017099974999923, 49.648697750000089 ], [ -125.018761269999985, 49.648668786000023 ], [ -125.018772426999959, 49.648938456000117 ], [ -125.01918775299994, 49.648931210000072 ], [ -125.01922123099996, 49.649740222000098 ], [ -125.018805897999982, 49.649747467000061 ], [ -125.018828212999921, 49.650286807000015 ], [ -125.017997539999897, 49.650301293000055 ], [ -125.018003703999952, 49.650450332000091 ], [ -125.018118244000021, 49.650451364000084 ], [ -125.018046574999985, 49.65380868000009 ], [ -125.018142541999921, 49.653807007000076 ], [ -125.018153698999981, 49.654076677000056 ], [ -125.019399806999957, 49.654054944000052 ], [ -125.019433294999914, 49.654863953000095 ], [ -125.021094797999979, 49.654834953000027 ], [ -125.021128313999952, 49.65564396200007 ], [ -125.020712930999963, 49.655651215000056 ], [ -125.02072410199996, 49.655920885000079 ], [ -125.020308717999967, 49.655928135000053 ], [ -125.020319885, 49.656197805000076 ], [ -125.019489110999956, 49.656212303000054 ], [ -125.019500275000013, 49.656481973000034 ], [ -125.018254104999954, 49.656503709000056 ], [ -125.01823179199998, 49.655964368000099 ], [ -125.017816405999938, 49.655971611000083 ], [ -125.017835017999957, 49.656421580000043 ], [ -125.018200704999941, 49.656424877000127 ], [ -125.018192665999919, 49.656801434000052 ], [ -125.018640209999944, 49.656805467000019 ], [ -125.018622512999968, 49.657634870000038 ], [ -125.022060231999944, 49.657665781000119 ], [ -125.022056710999919, 49.657831354000059 ], [ -125.022882110999916, 49.657838760000054 ], [ -125.022831122999918, 49.660238545000048 ], [ -125.023322938999925, 49.660242955000115 ], [ -125.023311001999929, 49.660805089000142 ], [ -125.023752557999927, 49.660809046000111 ], [ -125.023733817999968, 49.661691797000081 ], [ -125.02514275899992, 49.661704412000027 ], [ -125.025128304999939, 49.662386286000078 ], [ -125.02593417099996, 49.662393493000089 ], [ -125.025927064, 49.662729036000073 ], [ -125.028099907999959, 49.662748439000026 ], [ -125.028080248999956, 49.663678622000042 ], [ -125.029559208999942, 49.663691803000106 ], [ -125.029550815999968, 49.66408957099999 ], [ -125.030204209999937, 49.66409538700006 ], [ -125.030192827999969, 49.664635049000019 ], [ -125.031895531999979, 49.66465019 ], [ -125.031894726999937, 49.664630866000046 ], [ -125.032019092999988, 49.664628682000028 ], [ -125.032020241999987, 49.664574045000101 ], [ -125.032308223999934, 49.664576603000036 ], [ -125.032298944999951, 49.664353904000038 ], [ -125.032665318999975, 49.664347471000042 ], [ -125.032667836999934, 49.664227761000063 ], [ -125.032951696999987, 49.66423028100013 ], [ -125.032956709999894, 49.663991829000075 ], [ -125.031405143, 49.663978049000036 ], [ -125.031480911999935, 49.660380521000015 ], [ -125.037018323999973, 49.660429602000114 ], [ -125.036983079999942, 49.662112649000044 ], [ -125.0376096899999, 49.66210162000003 ], [ -125.037622178999953, 49.662400566000024 ], [ -125.038440421999965, 49.662407789000035 ], [ -125.038442821999965, 49.66229300100008 ], [ -125.042485217999939, 49.662328599000013 ], [ -125.043869433999959, 49.662340754000056 ], [ -125.043980470999884, 49.66234172800003 ], [ -125.043948512999975, 49.663878917 ], [ -125.044751164999937, 49.663864741000076 ], [ -125.044790200999927, 49.664795747000063 ], [ -125.044049614999935, 49.664159305000048 ], [ -125.043716311999972, 49.663874800000023 ], [ -125.043688379999963, 49.663847438000062 ], [ -125.043603555999965, 49.663764396000097 ], [ -125.042767312999899, 49.662945659000044 ], [ -125.042759583999938, 49.662938117000067 ], [ -125.04175411199995, 49.663479806000055 ], [ -125.039664694999956, 49.664600208000046 ], [ -125.039322745999968, 49.664348745000112 ], [ -125.036815982999954, 49.662568208000053 ], [ -125.035134684999932, 49.66350229800004 ], [ -125.032870752999912, 49.664755846000133 ], [ -125.031525648999946, 49.665500543000057 ], [ -125.028290398999943, 49.667291599000073 ], [ -125.030948203999955, 49.669310402000086 ], [ -125.029302025999968, 49.670208805000101 ], [ -125.028756662999953, 49.670506877000079 ], [ -125.028720572999958, 49.670526598000087 ], [ -125.028703687999979, 49.670535803000078 ], [ -125.028392027000024, 49.670705589000129 ], [ -125.028285948999965, 49.670763398000091 ], [ -125.027301445999939, 49.671299757000064 ], [ -125.027127545999974, 49.67139448700005 ], [ -125.026714278999933, 49.671619600000049 ], [ -125.025447975999967, 49.67230860100009 ], [ -125.025158976999933, 49.672465853000048 ] ], [ [ -125.019051401999917, 49.655680210000121 ], [ -125.019029079999967, 49.655140870000096 ], [ -125.018198321999947, 49.655155358000066 ], [ -125.018220634999949, 49.655694698000033 ], [ -125.019051401999917, 49.655680210000121 ] ], [ [ -125.016929649999938, 49.654631996000028 ], [ -125.016923064999958, 49.654472734000102 ], [ -125.016905691999938, 49.654472577000064 ], [ -125.016902288999958, 49.654631749000011 ], [ -125.016929649999938, 49.654631996000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.997382064575741", "sL_AssetLoss": "233.772", "sL_BldgLoss": "233.16", "sL_StrLoss": "231", "sL_NStrLoss": "2.16", "sL_ContLoss": "0.612", "geom_point": "0101000020E610000036003C1E0A495FC09AD40AB269D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.14047557, 49.675627505000122 ], [ -125.140428210999971, 49.67454891100008 ], [ -125.141674744999975, 49.674525854000116 ], [ -125.141686591999957, 49.67479550200003 ], [ -125.142102104999978, 49.674787814000084 ], [ -125.142137651999974, 49.675596758000104 ], [ -125.14047557, 49.675627505000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.987695741007411", "sL_AssetLoss": "1326.37", "sL_BldgLoss": "1310.05", "sL_StrLoss": "1209.25", "sL_NStrLoss": "100.8", "sL_ContLoss": "16.32", "geom_point": "0101000020E610000097F88A0B134C5FC0AD1CEFC837CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.185925985999987, 49.579512702000059 ], [ -125.185699189, 49.579039899000129 ], [ -125.187016004999961, 49.578817708000017 ], [ -125.187427798, 49.57904420000007 ], [ -125.187691176999962, 49.579074096000092 ], [ -125.188911594999965, 49.578817708000017 ], [ -125.189069794999952, 49.578652487000099 ], [ -125.188747634999956, 49.578170848000035 ], [ -125.189148950999979, 49.578173841000073 ], [ -125.189160600999941, 49.578219501000085 ], [ -125.189379593999917, 49.578269164000048 ], [ -125.189375582999972, 49.578497135000106 ], [ -125.189715146999959, 49.578499665000031 ], [ -125.189713565, 49.57858959200005 ], [ -125.19002639699994, 49.578591922000044 ], [ -125.190137193999973, 49.578678111000023 ], [ -125.190724626999909, 49.578738754000106 ], [ -125.190716319999936, 49.57921169400008 ], [ -125.191419324, 49.579216922000086 ], [ -125.191402721999978, 49.580162902000012 ], [ -125.190493003999961, 49.580451300000057 ], [ -125.189700392999924, 49.58097110900011 ], [ -125.18918520899993, 49.581510887000036 ], [ -125.18904669199992, 49.581532296000027 ], [ -125.18898657599999, 49.581406894000075 ], [ -125.188427014999945, 49.581283 ], [ -125.188312015999912, 49.580852901000135 ], [ -125.18714339899999, 49.580721885000074 ], [ -125.186243517999941, 49.580711902000097 ], [ -125.18608660799994, 49.580624999000065 ], [ -125.186090107999945, 49.58036438400012 ], [ -125.185887401999949, 49.58018779500005 ], [ -125.185924702999898, 49.580061009000119 ], [ -125.186166295999925, 49.579904404000089 ], [ -125.186399993999913, 49.579881590000106 ], [ -125.186407898999931, 49.5797733960001 ], [ -125.185925985999987, 49.579512702000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7898333", "BldgCostT": "5183333", "sL_LossRatio": "0.985350452661221", "sL_AssetLoss": "6740.14", "sL_BldgLoss": "6641.4", "sL_StrLoss": "6281", "sL_NStrLoss": "360.4", "sL_ContLoss": "98.74", "geom_point": "0101000020E6100000CB958B425C4A5FC02B423DBF20CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.158381332999966, 49.614208065000042 ], [ -125.158437009999943, 49.611162178000022 ], [ -125.159981311999928, 49.611174109000153 ], [ -125.160001210999937, 49.610083415000055 ], [ -125.160476144999933, 49.610087080000056 ], [ -125.160533375999961, 49.60694802000004 ], [ -125.165508419999952, 49.606986284000087 ], [ -125.165372502999958, 49.607084012000037 ], [ -125.165253791999987, 49.60725769000009 ], [ -125.165187807999942, 49.607609501000098 ], [ -125.164450614999978, 49.608810095000102 ], [ -125.164688991999981, 49.610435214000077 ], [ -125.164097192999975, 49.611749708000033 ], [ -125.163288691999966, 49.612872010000054 ], [ -125.162681202999963, 49.613225188000058 ], [ -125.162020008999932, 49.613300695000099 ], [ -125.160951896999947, 49.613274997000062 ], [ -125.160202703999957, 49.613549888000072 ], [ -125.159270104999948, 49.614025600000097 ], [ -125.158381332999966, 49.614208065000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.99164829059087", "sL_AssetLoss": "2879.65", "sL_BldgLoss": "2855.6", "sL_StrLoss": "2674", "sL_NStrLoss": "181.6", "sL_ContLoss": "24.05", "geom_point": "0101000020E610000048E47978684B5FC0A266E5EA89C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.178646207999947, 49.551790483000069 ], [ -125.177781797999927, 49.551599611000043 ], [ -125.177284808999929, 49.551960006000108 ], [ -125.176499276999948, 49.552009795000025 ], [ -125.175999792, 49.551965699000043 ], [ -125.175960792999916, 49.552344507000079 ], [ -125.175283721999961, 49.552375801000053 ], [ -125.174677906999989, 49.551793309000082 ], [ -125.174060634999933, 49.551732145000074 ], [ -125.174101448999977, 49.549453709000083 ], [ -125.17746085, 49.549479187000074 ], [ -125.179625676999962, 49.549495550000103 ], [ -125.179621220999977, 49.549746045000091 ], [ -125.181234230999934, 49.549758209000103 ], [ -125.181225376999933, 49.550256893999986 ], [ -125.181849536999948, 49.550261594000091 ], [ -125.181785684999937, 49.553859788000061 ], [ -125.181561812999945, 49.553858102000078 ], [ -125.180912308999964, 49.553853209000081 ], [ -125.180948382999958, 49.553788700000077 ], [ -125.180909696999933, 49.553537998000088 ], [ -125.180210199999934, 49.55304659300004 ], [ -125.179246683999935, 49.552543893000092 ], [ -125.178858783999928, 49.552200704000057 ], [ -125.178646207999947, 49.551790483000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998108939238627", "sL_AssetLoss": "226.328", "sL_BldgLoss": "225.9", "sL_StrLoss": "222", "sL_NStrLoss": "3.9", "sL_ContLoss": "0.428", "geom_point": "0101000020E6100000F0C3FF25024A5FC029AF190982D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.15639448499995, 49.668855214000082 ], [ -125.156382559999926, 49.668585569000093 ], [ -125.155967102999909, 49.668593307000044 ], [ -125.15595518, 49.668323661000045 ], [ -125.155124270999977, 49.668339135000103 ], [ -125.155076599999987, 49.66726055100002 ], [ -125.156322935999953, 49.667237339000081 ], [ -125.1563348599999, 49.667506985000053 ], [ -125.157165753999919, 49.667491503000093 ], [ -125.157177683999947, 49.667761149000107 ], [ -125.157593132999978, 49.667753405000035 ], [ -125.157640860999948, 49.668831988000065 ], [ -125.15639448499995, 49.668855214000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.996869928124276", "sL_AssetLoss": "465.804", "sL_BldgLoss": "464.346", "sL_StrLoss": "448.596", "sL_NStrLoss": "15.75", "sL_ContLoss": "1.458", "geom_point": "0101000020E61000005F41DCCDBA475FC07A93D7314BD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.122596268999956, 49.675686872 ], [ -125.122584527999905, 49.675417221000075 ], [ -125.120506905999903, 49.675455299000163 ], [ -125.120495175999963, 49.675185648000102 ], [ -125.120079653999937, 49.675193258000029 ], [ -125.120067927, 49.674923606000092 ], [ -125.11923688499999, 49.674938825000091 ], [ -125.119225162999953, 49.674669173000055 ], [ -125.117978605999937, 49.674691987000095 ], [ -125.117966891999941, 49.674422335000024 ], [ -125.117551374999934, 49.674429937000085 ], [ -125.117516236000014, 49.673620980000123 ], [ -125.11917827500001, 49.673590564000079 ], [ -125.119166551999982, 49.673320912000115 ], [ -125.118751046999975, 49.673328518000048 ], [ -125.118715888999986, 49.672519561000044 ], [ -125.120377889999958, 49.672489129000056 ], [ -125.120389616999915, 49.672758781000105 ], [ -125.120805117999936, 49.672751168000062 ], [ -125.120816846999958, 49.673020820000069 ], [ -125.121647856999928, 49.673005591000027 ], [ -125.12165959, 49.673275244000067 ], [ -125.12207509699999, 49.673267628000076 ], [ -125.122086834999962, 49.673537279000065 ], [ -125.122502342999894, 49.673529660000064 ], [ -125.122514082999928, 49.673799311000067 ], [ -125.122929594, 49.673791692000137 ], [ -125.122941335999883, 49.674061344000073 ], [ -125.123356848999933, 49.674053722000046 ], [ -125.123380338999965, 49.674593024000053 ], [ -125.123795855999958, 49.674585402000105 ], [ -125.123842846999935, 49.675664006000012 ], [ -125.122596268999956, 49.675686872 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8085886", "BldgCostT": "4762079", "sL_LossRatio": "0.995408148471143", "sL_AssetLoss": "1827.803", "sL_BldgLoss": "1819.41", "sL_StrLoss": "1779.38", "sL_NStrLoss": "40.03", "sL_ContLoss": "8.393", "geom_point": "0101000020E61000004F08BA490E4D5FC0C012FEFB42CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.201933392999976, 49.589365411000138 ], [ -125.202649905999948, 49.58927998200005 ], [ -125.202859202999946, 49.589329804000045 ], [ -125.203227399999903, 49.589178806000035 ], [ -125.203549186999979, 49.588948091000077 ], [ -125.203526498999949, 49.588453889000078 ], [ -125.203225601999947, 49.587936899000098 ], [ -125.202855299999953, 49.587710512000065 ], [ -125.202192996999912, 49.587102286000082 ], [ -125.202177025999973, 49.586760504000083 ], [ -125.201716690999945, 49.586356012000103 ], [ -125.201750410999978, 49.586193701000106 ], [ -125.201604713999984, 49.586025598000028 ], [ -125.201680715999927, 49.585582705000014 ], [ -125.20136340699996, 49.585300696000026 ], [ -125.20135681, 49.585139798000107 ], [ -125.20068278399998, 49.584765913000112 ], [ -125.204977539999931, 49.584797388000041 ], [ -125.204970456999945, 49.585207858000039 ], [ -125.205288452999952, 49.585210182 ], [ -125.205277957999968, 49.585818586000045 ], [ -125.205850668999958, 49.585822769000075 ], [ -125.205824256999989, 49.587354835000021 ], [ -125.20634834199997, 49.587358660000042 ], [ -125.206324822999989, 49.588723750000021 ], [ -125.206286350999946, 49.590956675000029 ], [ -125.201201657999931, 49.590919457000062 ], [ -125.200796303999979, 49.590916479000072 ], [ -125.20122860399999, 49.590601596000049 ], [ -125.201338376999942, 49.590266896000095 ], [ -125.201603176999924, 49.590019095000045 ], [ -125.201523102999943, 49.589741395000019 ], [ -125.20161159499996, 49.589587586000022 ], [ -125.201933392999976, 49.589365411000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.98396048742158", "sL_AssetLoss": "2405.31", "sL_BldgLoss": "2366.73", "sL_StrLoss": "2166.23", "sL_NStrLoss": "200.5", "sL_ContLoss": "38.58", "geom_point": "0101000020E6100000602DCAAEAC4B5FC08961A83F52C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.180515409999913, 49.55712560100006 ], [ -125.180823418999964, 49.556292401000114 ], [ -125.180797400999907, 49.555996208000089 ], [ -125.180462306999985, 49.55561449500005 ], [ -125.180353512999957, 49.555338198000051 ], [ -125.179921787999945, 49.554969308000068 ], [ -125.180066719999957, 49.554483905000026 ], [ -125.181255346999961, 49.554492865000086 ], [ -125.18203767299994, 49.554498755000104 ], [ -125.183475232999982, 49.554509564000092 ], [ -125.18342928, 49.557103984000094 ], [ -125.184330258, 49.557110748000071 ], [ -125.184266587999929, 49.560708907000063 ], [ -125.183920441999959, 49.5607063080001 ], [ -125.183577867999986, 49.560703736000072 ], [ -125.183545412999933, 49.560567890000051 ], [ -125.183002696999921, 49.559875687000073 ], [ -125.181768590999951, 49.559162199000056 ], [ -125.180808207999974, 49.558082592000069 ], [ -125.180515409999913, 49.55712560100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7866334", "BldgCostT": "4953334", "sL_LossRatio": "0.99654044048183", "sL_AssetLoss": "1825.955", "sL_BldgLoss": "1819.638", "sL_StrLoss": "1779.818", "sL_NStrLoss": "39.82", "sL_ContLoss": "6.317", "geom_point": "0101000020E6100000E6BFCD03D44C5FC0949A454153CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.197977114999944, 49.59551229200013 ], [ -125.19846379199997, 49.595260208000091 ], [ -125.199068496, 49.595500905000051 ], [ -125.199317592999989, 49.595478101000033 ], [ -125.199721391999972, 49.595254496000102 ], [ -125.199678718999934, 49.594599401000032 ], [ -125.19949318, 49.594135102000131 ], [ -125.199724208999967, 49.594049586000082 ], [ -125.200220181, 49.594021100000163 ], [ -125.200395578999959, 49.593919992000089 ], [ -125.200922495999947, 49.59300141100006 ], [ -125.200881894999938, 49.592732191000067 ], [ -125.200677532999947, 49.592477310000028 ], [ -125.20088356299999, 49.592478823000071 ], [ -125.202661396999972, 49.592491868000131 ], [ -125.202650552999913, 49.593118262000068 ], [ -125.202814826999926, 49.593119466000097 ], [ -125.202752552999954, 49.596717449000067 ], [ -125.201666846999927, 49.596709487000069 ], [ -125.201632823999958, 49.598672271000133 ], [ -125.201140951999946, 49.598668661000033 ], [ -125.201126354999943, 49.599510182000074 ], [ -125.198597336999967, 49.599491584000127 ], [ -125.197836359999954, 49.599485977000086 ], [ -125.197779502999936, 49.598826390000056 ], [ -125.198202504999983, 49.597145899000097 ], [ -125.197963898999916, 49.596754195000059 ], [ -125.197892106999944, 49.596405308000108 ], [ -125.198060293999973, 49.59612328900004 ], [ -125.197977114999944, 49.59551229200013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23241000", "BldgCostT": "15555000", "sL_LossRatio": "0.922358150786943", "sL_AssetLoss": "9214.644", "sL_BldgLoss": "8499.202", "sL_StrLoss": "8109.562", "sL_NStrLoss": "389.64", "sL_ContLoss": "715.442", "geom_point": "0101000020E61000003E4DD2A1384A5FC068CAF385B5D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.151797613999989, 49.665271345000072 ], [ -125.151797893000023, 49.66525616300008 ], [ -125.150623368999959, 49.665247015000041 ], [ -125.150631747999952, 49.66479335300005 ], [ -125.150498092999968, 49.664792312000024 ], [ -125.150500776999962, 49.664646978000071 ], [ -125.150387772999977, 49.664649077000085 ], [ -125.150375881999963, 49.664379430000082 ], [ -125.149960460999949, 49.664387148000039 ], [ -125.149932513999914, 49.663753257000074 ], [ -125.14984803, 49.663752599000098 ], [ -125.149856133999961, 49.663314274000093 ], [ -125.149499344999981, 49.663311490000076 ], [ -125.149565874999922, 49.659713881000108 ], [ -125.155103323999953, 49.659756962000131 ], [ -125.155101800999944, 49.659839806000022 ], [ -125.159942843999929, 49.659877237000032 ], [ -125.159942724999965, 49.659883697000069 ], [ -125.160607519000024, 49.65988882100006 ], [ -125.160606230999946, 49.659959360000101 ], [ -125.161222496000022, 49.659964106000118 ], [ -125.161237547, 49.659138873000131 ], [ -125.16280655199995, 49.659150940000067 ], [ -125.162824139999927, 49.658184710000057 ], [ -125.168361416999943, 49.658227117000067 ], [ -125.168348050999924, 49.658966268000071 ], [ -125.170472681999968, 49.658982465000093 ], [ -125.170407787999963, 49.66258008900013 ], [ -125.167387177999913, 49.662557050000096 ], [ -125.167362147999967, 49.663939463000069 ], [ -125.161824184999901, 49.663897006000127 ], [ -125.161844220999967, 49.662797728000065 ], [ -125.161805525999966, 49.662797430000083 ], [ -125.161791505999972, 49.663566603000049 ], [ -125.161651546999977, 49.663565527000046 ], [ -125.161643425999941, 49.664011006000123 ], [ -125.161489810999981, 49.664009824000154 ], [ -125.161482344999968, 49.664419309000067 ], [ -125.157352716999966, 49.664387453000082 ], [ -125.15733573199995, 49.665314311000031 ], [ -125.151797613999989, 49.665271345000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.976181474480151", "sL_AssetLoss": "1322.5", "sL_BldgLoss": "1291", "sL_StrLoss": "1120", "sL_NStrLoss": "171", "sL_ContLoss": "31.5", "geom_point": "0101000020E6100000ED75DE0883455FC081E7A4181CD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.08543022799995, 49.642898988000127 ], [ -125.085384138999956, 49.641820351000057 ], [ -125.08496889099996, 49.641827832000047 ], [ -125.084899776999961, 49.640209875000039 ], [ -125.085749423999957, 49.64019456500008 ], [ -125.086150205999914, 49.64029801600006 ], [ -125.086157003999972, 49.640457086 ], [ -125.08672669399995, 49.64044681700004 ], [ -125.086990589999985, 49.640514930000073 ], [ -125.086999006999946, 49.640711773000135 ], [ -125.08741424399993, 49.640704285000055 ], [ -125.087428167, 49.64102981900006 ], [ -125.087169004999964, 49.6412835080001 ], [ -125.087174286999968, 49.641400296000072 ], [ -125.087469925, 49.642006186000152 ], [ -125.087483443999986, 49.642322239000094 ], [ -125.086652940999954, 49.642337216000023 ], [ -125.086675998, 49.642876533000056 ], [ -125.08543022799995, 49.642898988000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.986688365882157", "sL_AssetLoss": "479.28", "sL_BldgLoss": "472.9", "sL_StrLoss": "450", "sL_NStrLoss": "22.9", "sL_ContLoss": "6.38", "geom_point": "0101000020E6100000D988F580D8455FC0381E222441D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.091218487999953, 49.6419849420001 ], [ -125.092044872999963, 49.64197000700014 ], [ -125.091842591999935, 49.64205401400006 ], [ -125.092411792999883, 49.643042843000089 ], [ -125.091976179999961, 49.643050718000055 ], [ -125.090424850999952, 49.643078748000093 ], [ -125.090405587999939, 49.642629057000129 ], [ -125.090394380999982, 49.642367390000082 ], [ -125.090594390999982, 49.642318889000073 ], [ -125.09070974899997, 49.642264001000093 ], [ -125.091220699999951, 49.642254769000083 ], [ -125.091210266999965, 49.642011270000097 ], [ -125.091218487999953, 49.6419849420001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10883916", "BldgCostT": "7296666", "sL_LossRatio": "0.785119642979084", "sL_AssetLoss": "9957.96", "sL_BldgLoss": "7818.19", "sL_StrLoss": "6395.79", "sL_NStrLoss": "1422.4", "sL_ContLoss": "2139.77", "geom_point": "0101000020E6100000E8D6EFB2B4455FC0FDA5036140D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.088962849999973, 49.660922440000022 ], [ -125.088962889999934, 49.660920441000016 ], [ -125.087199413999954, 49.660905681000074 ], [ -125.086590361999981, 49.660900578000081 ], [ -125.086612177999911, 49.659802115000048 ], [ -125.086189411999939, 49.659798570000063 ], [ -125.086219840999917, 49.658267161000069 ], [ -125.086087298999956, 49.65826954900006 ], [ -125.086075766999954, 49.657999891000074 ], [ -125.085244995999943, 49.65801486000008 ], [ -125.085233467999927, 49.657745202000044 ], [ -125.08398731799997, 49.657767645000057 ], [ -125.083975797, 49.657497987000035 ], [ -125.083560414999951, 49.657505465000078 ], [ -125.083571933, 49.657775124000104 ], [ -125.081079626999923, 49.657819961000094 ], [ -125.08105645099999, 49.657276741000061 ], [ -125.081044035, 49.656985686000027 ], [ -125.081040458999908, 49.656901884000078 ], [ -125.08322998899996, 49.656431949000101 ], [ -125.085175831999962, 49.656396908000019 ], [ -125.085164306999957, 49.656127249000143 ], [ -125.085995044999962, 49.656112280000109 ], [ -125.085983513999977, 49.655842622000122 ], [ -125.086398880999937, 49.655835135000075 ], [ -125.086395345999946, 49.655752476000046 ], [ -125.088778116999919, 49.655240920000089 ], [ -125.089879719999914, 49.654692870000048 ], [ -125.090268156999954, 49.654685856000114 ], [ -125.090506318, 49.654681554000028 ], [ -125.090540983999986, 49.655490528000058 ], [ -125.090125620999984, 49.655498029000093 ], [ -125.090137174999953, 49.655767688000019 ], [ -125.089721808999982, 49.655775188000085 ], [ -125.089733360999972, 49.6560448460001 ], [ -125.089317992999938, 49.656052344000031 ], [ -125.089325459999941, 49.656226643000082 ], [ -125.091797853999935, 49.656247281000105 ], [ -125.091793478999975, 49.656468794000048 ], [ -125.092366245999969, 49.656473567000049 ], [ -125.092349567999975, 49.657318689000036 ], [ -125.093005772999959, 49.657324153000019 ], [ -125.093005104999989, 49.657357987000069 ], [ -125.094571214999959, 49.657371013000088 ], [ -125.094500385999964, 49.660968599000071 ], [ -125.088962849999973, 49.660922440000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45227916", "BldgCostT": "30066666", "sL_LossRatio": "0.761554679812645", "sL_AssetLoss": "36606.38", "sL_BldgLoss": "27877.76", "sL_StrLoss": "22700.76", "sL_NStrLoss": "5177", "sL_ContLoss": "8728.62", "geom_point": "0101000020E61000009530EC9310455FC039FF5D3C0FD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.080192266999958, 49.692200018000079 ], [ -125.077035710999965, 49.689555194000036 ], [ -125.076592794999939, 49.689184025 ], [ -125.076425778999962, 49.689044101000015 ], [ -125.075723933999953, 49.688464983000102 ], [ -125.075369271999989, 49.688172334000093 ], [ -125.075124305999978, 49.687970166000113 ], [ -125.074886146999987, 49.687773658000069 ], [ -125.073513245999933, 49.686640726000142 ], [ -125.07357596699994, 49.683529037 ], [ -125.073853481999961, 49.683531395000053 ], [ -125.073864067999978, 49.683006014000071 ], [ -125.071786041999928, 49.68298834100009 ], [ -125.071796548999956, 49.682468005 ], [ -125.07153016299992, 49.682465736000019 ], [ -125.071602822999978, 49.678868276000074 ], [ -125.072282781999945, 49.678874064000063 ], [ -125.072288512999961, 49.678590092000071 ], [ -125.073401545999914, 49.678599559000105 ], [ -125.073441283999927, 49.676628015000077 ], [ -125.074234711999964, 49.676634757000038 ], [ -125.074261329999942, 49.675312932000111 ], [ -125.075222344999943, 49.675321090000089 ], [ -125.075230815999959, 49.674899956000075 ], [ -125.075374137999972, 49.674901172000027 ], [ -125.075388451999942, 49.674189458000058 ], [ -125.076004868999988, 49.674194685000067 ], [ -125.0760296, 49.672964171000132 ], [ -125.076222847999972, 49.672965809000097 ], [ -125.076229710999925, 49.672624275000011 ], [ -125.076668672, 49.672627995000134 ], [ -125.076677219999937, 49.672202385000098 ], [ -125.076969501999955, 49.672204861000083 ], [ -125.076976627999926, 49.671849892000068 ], [ -125.077399529999951, 49.671853472000102 ], [ -125.077406530999923, 49.671504601000088 ], [ -125.077696006999972, 49.671507052000017 ], [ -125.077704744999934, 49.671071508000075 ], [ -125.077740843999962, 49.671071813000054 ], [ -125.07774104899994, 49.671061591000047 ], [ -125.079092881999927, 49.670861499000118 ], [ -125.07984570899994, 49.670632197000081 ], [ -125.080952383999943, 49.66992010399999 ], [ -125.082409284999983, 49.669344457000058 ], [ -125.083294811999934, 49.669351909000028 ], [ -125.083632500999926, 49.669385984000023 ], [ -125.083866190999942, 49.669356713000084 ], [ -125.084982318999948, 49.669366090000075 ], [ -125.084981592999952, 49.669402522000063 ], [ -125.086927245999945, 49.669418840000063 ], [ -125.086855799999924, 49.673016359000044 ], [ -125.085886383999963, 49.673008233000083 ], [ -125.08586133499989, 49.674268081000037 ], [ -125.084948527000023, 49.674260422000074 ], [ -125.08493743199989, 49.674817903000068 ], [ -125.084535025999969, 49.67481452400007 ], [ -125.08452334899998, 49.67540091200005 ], [ -125.083901027, 49.675395683000062 ], [ -125.083883575999948, 49.67627152500004 ], [ -125.08357164799996, 49.676268903000086 ], [ -125.083561591999967, 49.676773332000046 ], [ -125.083193242999982, 49.676770234000102 ], [ -125.083183407, 49.67726344000004 ], [ -125.082938392999921, 49.677261379000058 ], [ -125.082925533999941, 49.677905946000067 ], [ -125.08261716799997, 49.67790335100009 ], [ -125.082608547999939, 49.678335252000075 ], [ -125.082404035999957, 49.67833353000001 ], [ -125.082392872999947, 49.678892856000047 ], [ -125.081910493999914, 49.678888795000027 ], [ -125.081891109999944, 49.679859366000109 ], [ -125.081514421999898, 49.679856193000056 ], [ -125.081462347999945, 49.682462270000045 ], [ -125.081402271999977, 49.682461764000031 ], [ -125.081353986999943, 49.68487776700011 ], [ -125.081294007999972, 49.684877261000118 ], [ -125.081227579999918, 49.688200461000122 ], [ -125.080884391, 49.688197569000131 ], [ -125.080881862999931, 49.688323966000048 ], [ -125.08246517399999, 49.688337303000047 ], [ -125.082459506999967, 49.68862109800007 ], [ -125.082910571999946, 49.688624892000043 ], [ -125.082890484999922, 49.689631539000068 ], [ -125.08326969299992, 49.689624716000033 ], [ -125.083258163999943, 49.689355058000068 ], [ -125.083673816, 49.689347578000081 ], [ -125.083662284999946, 49.689077920000102 ], [ -125.084493584999947, 49.68906295500009 ], [ -125.084482049999963, 49.688793297000082 ], [ -125.085728992999918, 49.68877083800006 ], [ -125.08574053699999, 49.689040496000132 ], [ -125.086571834999987, 49.689025515000061 ], [ -125.086583381999944, 49.689295171000026 ], [ -125.08699903499992, 49.689287679000088 ], [ -125.087045236999941, 49.690366306 ], [ -125.08371994499997, 49.690426207 ], [ -125.083777610999931, 49.691774495000061 ], [ -125.08336193599996, 49.691781975000012 ], [ -125.083373465999927, 49.692051633000069 ], [ -125.082841997999935, 49.692061197000079 ], [ -125.082838782999971, 49.692222311000073 ], [ -125.080192266999958, 49.692200018000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.987662059527167", "sL_AssetLoss": "957.21", "sL_BldgLoss": "945.4", "sL_StrLoss": "863", "sL_NStrLoss": "82.4", "sL_ContLoss": "11.81", "geom_point": "0101000020E61000002A05F6FBB2445FC0B49F189B4ED44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.070752184999947, 49.659354517000054 ], [ -125.070740735999948, 49.659084856000035 ], [ -125.069909937999952, 49.659099716000092 ], [ -125.069895914999933, 49.658769264000057 ], [ -125.069875608999936, 49.658290732000133 ], [ -125.074444910999915, 49.658208930000043 ], [ -125.074433441999986, 49.657939269000053 ], [ -125.076925766999977, 49.65789457300005 ], [ -125.076929944999975, 49.657992695000047 ], [ -125.076960212999936, 49.658703554000056 ], [ -125.076129425999952, 49.658718459000092 ], [ -125.076140903, 49.65898811800006 ], [ -125.074479314999934, 49.659017911000078 ], [ -125.074490784999981, 49.65928757100005 ], [ -125.070752184999947, 49.659354517000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997849403822072", "sL_AssetLoss": "220.404", "sL_BldgLoss": "219.93", "sL_StrLoss": "216", "sL_NStrLoss": "3.93", "sL_ContLoss": "0.474", "geom_point": "0101000020E6100000357D97CE5E495FC06B752088FFD44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.145758766999975, 49.663385645000048 ], [ -125.14700501199999, 49.663362535000026 ], [ -125.147064370999942, 49.664710774000099 ], [ -125.145818092999932, 49.664733885000054 ], [ -125.145758766999975, 49.663385645000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11092583", "BldgCostT": "7178333", "sL_LossRatio": "0.993713769356991", "sL_AssetLoss": "3065.43", "sL_BldgLoss": "3046.16", "sL_StrLoss": "2869.26", "sL_NStrLoss": "176.9", "sL_ContLoss": "19.27", "geom_point": "0101000020E610000000323A4117455FC0CF17180503D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.08615850699999, 49.628024097000029 ], [ -125.085521104999913, 49.627989990000117 ], [ -125.085417475999961, 49.628180794000066 ], [ -125.08485218600002, 49.628227808000062 ], [ -125.084591411999966, 49.627925904000058 ], [ -125.084268007999967, 49.627824787000087 ], [ -125.084281490999942, 49.627481492000108 ], [ -125.084464595999947, 49.627226605000111 ], [ -125.084368076999908, 49.626913297000037 ], [ -125.083028002, 49.626982993000119 ], [ -125.082722605999948, 49.626674006000059 ], [ -125.081811191999975, 49.626743807000061 ], [ -125.080733856999984, 49.626360817000069 ], [ -125.080754439000017, 49.62610178700001 ], [ -125.080786692999951, 49.625681406000034 ], [ -125.078399513999969, 49.625783179000038 ], [ -125.075876615999988, 49.625520337000083 ], [ -125.075618108999961, 49.625335200000094 ], [ -125.075450405999945, 49.625319601000065 ], [ -125.075258122999941, 49.625368 ], [ -125.075148079999963, 49.625444425000083 ], [ -125.072452139999911, 49.625163468000082 ], [ -125.069545726999962, 49.625072683000084 ], [ -125.069215241999984, 49.625037655 ], [ -125.069218222999979, 49.624890175000104 ], [ -125.069504403999957, 49.624892622000118 ], [ -125.069511332999966, 49.624549882000018 ], [ -125.069616021999963, 49.624550776000021 ], [ -125.069621655999953, 49.624272060000045 ], [ -125.069625463999927, 49.624083709000075 ], [ -125.069627461999957, 49.623984882000066 ], [ -125.07011241599993, 49.623989026000075 ], [ -125.070126481999949, 49.62329269400005 ], [ -125.070909201999939, 49.623299376000098 ], [ -125.070912360999955, 49.623142913000052 ], [ -125.071813914999936, 49.623150604000031 ], [ -125.07182385199998, 49.622657835000041 ], [ -125.077356767999973, 49.622704868000035 ], [ -125.07735307899999, 49.62288893200013 ], [ -125.078004653999955, 49.622894452000097 ], [ -125.078001639999954, 49.623044885000084 ], [ -125.078751434999944, 49.623051233000076 ], [ -125.078747044999957, 49.623270600000076 ], [ -125.079741209999938, 49.623279009000093 ], [ -125.079728673999938, 49.623906019000088 ], [ -125.082089459999935, 49.62392594900011 ], [ -125.082081206999973, 49.624339767000059 ], [ -125.083013749999921, 49.624347627000049 ], [ -125.083012287999978, 49.624421013000102 ], [ -125.08351123499996, 49.62442521400007 ], [ -125.083504857000023, 49.624745545000117 ], [ -125.084769306999974, 49.624756183000031 ], [ -125.084768201999935, 49.624811783000027 ], [ -125.086774533999943, 49.624828631000113 ], [ -125.086763889999972, 49.625365098000074 ], [ -125.087576535999943, 49.62537191100008 ], [ -125.087570683999928, 49.62566711400013 ], [ -125.088344123999931, 49.625673593000059 ], [ -125.088292425999953, 49.628283521000093 ], [ -125.087183006000018, 49.628616611000055 ], [ -125.086502094999958, 49.628610897000087 ], [ -125.08615850699999, 49.628024097000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14830866", "BldgCostT": "9598879", "sL_LossRatio": "0.981935842873778", "sL_AssetLoss": "9704.3", "sL_BldgLoss": "9529", "sL_StrLoss": "8277.1", "sL_NStrLoss": "1251.9", "sL_ContLoss": "175.3", "geom_point": "0101000020E61000003DEA1AF39B435FC0895F9078A2D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.053748983999952, 49.664331923000091 ], [ -125.053757379999979, 49.663923896000099 ], [ -125.05325268899999, 49.663919512000049 ], [ -125.053262273999962, 49.663454004000101 ], [ -125.052836403999962, 49.663450303000083 ], [ -125.052840956999887, 49.663229213000115 ], [ -125.050417699999969, 49.663208121000068 ], [ -125.04944218699994, 49.663199616000107 ], [ -125.049512971999889, 49.659774886000065 ], [ -125.049516543999957, 49.65960207100003 ], [ -125.051318707999926, 49.659617778000054 ], [ -125.05205631199999, 49.659624198000088 ], [ -125.052053351000012, 49.659553849000062 ], [ -125.052036280999914, 49.659148107000064 ], [ -125.05245168499998, 49.659140742000062 ], [ -125.052440338999986, 49.658871077000086 ], [ -125.05576354599999, 49.658812103000052 ], [ -125.055752179999956, 49.658542438000019 ], [ -125.058659961999979, 49.658490758 ], [ -125.058671341999968, 49.658760421000061 ], [ -125.059502140999939, 49.658745641000102 ], [ -125.0595135249999, 49.659015305 ], [ -125.059928925999927, 49.659007913000046 ], [ -125.05991753799999, 49.658738249000123 ], [ -125.061579130999959, 49.658708666000031 ], [ -125.061567734, 49.658439003000062 ], [ -125.06406010399995, 49.658394585000117 ], [ -125.064071514999966, 49.658664248000036 ], [ -125.064486911999921, 49.658656839000116 ], [ -125.064498528999962, 49.658931311000046 ], [ -125.064521151999926, 49.659465825000041 ], [ -125.062028727999945, 49.659510255000029 ], [ -125.062040128, 49.65977991700003 ], [ -125.061209314000038, 49.659794715000039 ], [ -125.061220709999972, 49.660064378000079 ], [ -125.062466937999915, 49.660042179000044 ], [ -125.062478340999974, 49.66031184000007 ], [ -125.064555393999967, 49.660274811000178 ], [ -125.06458490299994, 49.660971938000053 ], [ -125.064589637999944, 49.661083798000064 ], [ -125.064174219999927, 49.661091207000062 ], [ -125.064185632999965, 49.66136086900007 ], [ -125.062108533999933, 49.661397893000085 ], [ -125.062097131999948, 49.661128229000028 ], [ -125.060455764999958, 49.661157459000044 ], [ -125.06042473699992, 49.662676148000138 ], [ -125.060405363999905, 49.662675982000067 ], [ -125.060398357999986, 49.663018949000083 ], [ -125.060351574999956, 49.663018545000071 ], [ -125.060335002999935, 49.663829549000063 ], [ -125.059298333999948, 49.663820604000094 ], [ -125.059286892999921, 49.664379872000083 ], [ -125.053748983999952, 49.664331923000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993988084005068", "sL_AssetLoss": "370.93", "sL_BldgLoss": "368.7", "sL_StrLoss": "349", "sL_NStrLoss": "19.7", "sL_ContLoss": "2.23", "geom_point": "0101000020E61000004F61BE1F6B455FC0FA3351BEFFD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.084467033999942, 49.695673109000012 ], [ -125.083870582999936, 49.695125509000029 ], [ -125.083716203999984, 49.695154794000075 ], [ -125.083058126999973, 49.694602923000126 ], [ -125.08292174499995, 49.69448854600013 ], [ -125.084308649999983, 49.694463584000047 ], [ -125.084320186999932, 49.694733242 ], [ -125.085151583999959, 49.694718270000045 ], [ -125.08516062699999, 49.694929574000113 ], [ -125.085163124999966, 49.694987927000064 ], [ -125.085578826999935, 49.694980439000112 ], [ -125.085648097999965, 49.696598380000069 ], [ -125.085444084999892, 49.696602056000081 ], [ -125.085063989999952, 49.696221208000082 ], [ -125.085015004999917, 49.696176225000045 ], [ -125.084467033999942, 49.695673109000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.992775761271748", "sL_AssetLoss": "1705.37", "sL_BldgLoss": "1693.05", "sL_StrLoss": "1629", "sL_NStrLoss": "64.05", "sL_ContLoss": "12.32", "geom_point": "0101000020E61000005924BB0C1E465FC0A222D25FFDD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.09687232099995, 49.69639562800009 ], [ -125.096860711999966, 49.696125973000072 ], [ -125.091872211999927, 49.696216218000117 ], [ -125.091802735999948, 49.694598283000111 ], [ -125.09221843100002, 49.694590772000041 ], [ -125.092206850999929, 49.694321115000022 ], [ -125.099273608, 49.694193188000028 ], [ -125.09932009, 49.695271806000044 ], [ -125.098904390999934, 49.695279343000024 ], [ -125.098939246999947, 49.696088307000103 ], [ -125.098523540999949, 49.696095843000109 ], [ -125.098535157999919, 49.69636549800007 ], [ -125.09687232099995, 49.69639562800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25124145", "BldgCostT": "16441524", "sL_LossRatio": "0.888785592015354", "sL_AssetLoss": "19178.81", "sL_BldgLoss": "17045.85", "sL_StrLoss": "15038.05", "sL_NStrLoss": "2007.8", "sL_ContLoss": "2132.96", "geom_point": "0101000020E610000020AE62126A465FC0A4CFBB6F84D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.091471298999977, 49.671561577000084 ], [ -125.091473374999964, 49.671456487000142 ], [ -125.088984811999964, 49.671435713000108 ], [ -125.089039229999983, 49.668689137000072 ], [ -125.089308524999979, 49.668582804000017 ], [ -125.089765785999987, 49.668286502000072 ], [ -125.090233902999941, 49.667863589000106 ], [ -125.090242874999944, 49.667848099000075 ], [ -125.091846595999968, 49.667861475000016 ], [ -125.091849383999929, 49.667720354000068 ], [ -125.093024516999961, 49.667730141000042 ], [ -125.093031056999976, 49.667398583000086 ], [ -125.098498009999943, 49.667443946000098 ], [ -125.098561527999976, 49.664203913000094 ], [ -125.10409946799993, 49.664249585000071 ], [ -125.10409714799998, 49.664368662000101 ], [ -125.106455383999901, 49.664388025000036 ], [ -125.10644894799999, 49.664719311000077 ], [ -125.108069043999976, 49.664732584000035 ], [ -125.108051108999959, 49.66565722200005 ], [ -125.109070461000016, 49.665665560000029 ], [ -125.109060915999976, 49.666158192000097 ], [ -125.10928908399994, 49.666160056000088 ], [ -125.10928732299999, 49.666250930000061 ], [ -125.109973762999985, 49.666256539000074 ], [ -125.109904125999947, 49.669854089000104 ], [ -125.10547121599997, 49.669817794000068 ], [ -125.105462672999948, 49.670256900000027 ], [ -125.099924007999945, 49.670211298000034 ], [ -125.099966026999979, 49.668064726000097 ], [ -125.099805433999961, 49.66806339900004 ], [ -125.099810347999949, 49.667812373000096 ], [ -125.098562366999928, 49.667802057000038 ], [ -125.09849884399992, 49.671042073000066 ], [ -125.097323624999945, 49.671032346000111 ], [ -125.097317115999957, 49.671363901000078 ], [ -125.097014952999956, 49.671361398000059 ], [ -125.097010118999961, 49.671607608000031 ], [ -125.091471298999977, 49.671561577000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.988668879478082", "sL_AssetLoss": "436.85", "sL_BldgLoss": "431.9", "sL_StrLoss": "414", "sL_NStrLoss": "17.9", "sL_ContLoss": "4.95", "geom_point": "0101000020E6100000291BFFD307465FC0F2E4A27361D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.093804746999965, 49.644366987000048 ], [ -125.093781609999894, 49.643827671000075 ], [ -125.092951084000021, 49.64384269300006 ], [ -125.092934745999912, 49.643461737000109 ], [ -125.092919508999941, 49.643106444000082 ], [ -125.092952473999944, 49.643033067000054 ], [ -125.093331645999939, 49.643026209000013 ], [ -125.093325097999966, 49.642873529000042 ], [ -125.093427698999932, 49.642842995000116 ], [ -125.093901091999967, 49.642871512000077 ], [ -125.09423710599999, 49.642991208000055 ], [ -125.09471910799995, 49.642910005000026 ], [ -125.094800819999975, 49.642854406000026 ], [ -125.094788516999927, 49.642729982000141 ], [ -125.094981092999959, 49.642726496000122 ], [ -125.094981412999942, 49.642733957000125 ], [ -125.09501581899994, 49.643535469000106 ], [ -125.095253133999989, 49.643531173000106 ], [ -125.09544032099997, 49.643743203000028 ], [ -125.095465814999955, 49.644336924000086 ], [ -125.093804746999965, 49.644366987000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.987477296625562", "sL_AssetLoss": "418.44", "sL_BldgLoss": "413.2", "sL_StrLoss": "395", "sL_NStrLoss": "18.2", "sL_ContLoss": "5.24", "geom_point": "0101000020E61000007BB0D69A374C5FC0A9E3ADCA70CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.190619384999962, 49.580800207000024 ], [ -125.191395090999933, 49.580597755000063 ], [ -125.191366831, 49.582207966000098 ], [ -125.191046082999918, 49.582635997000075 ], [ -125.190756285999967, 49.582614596000084 ], [ -125.190623792999958, 49.582455098000011 ], [ -125.190527112, 49.581854096000015 ], [ -125.190394198000021, 49.581631901 ], [ -125.190167092999957, 49.581519394000111 ], [ -125.190257716999923, 49.581095002000083 ], [ -125.190619384999962, 49.580800207000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59014998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8588666", "BldgCostT": "5426666", "sL_LossRatio": "0.584793650511259", "sL_AssetLoss": "8993.48", "sL_BldgLoss": "5259.33", "sL_StrLoss": "3452.43", "sL_NStrLoss": "1806.9", "sL_ContLoss": "3734.15", "geom_point": "0101000020E6100000B0D891B010415FC0E55332C628D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.015257123999916, 49.673718045000079 ], [ -125.014415886999942, 49.673033272000076 ], [ -125.013603707999948, 49.673134394000073 ], [ -125.012225700000016, 49.672070792000085 ], [ -125.011343848, 49.671390110000033 ], [ -125.011885314999986, 49.671162322000036 ], [ -125.011626405999948, 49.670915586000035 ], [ -125.013802324999972, 49.669871638000053 ], [ -125.013289088999926, 49.669399394000067 ], [ -125.013646168999969, 49.66926758400006 ], [ -125.01379268, 49.669265036000162 ], [ -125.01381796599999, 49.669877290000052 ], [ -125.013866140999966, 49.669957764000038 ], [ -125.014000024999973, 49.670071019000098 ], [ -125.0142416, 49.670066816 ], [ -125.014250526999916, 49.670282925000151 ], [ -125.014312612999944, 49.670335445000063 ], [ -125.014668247999978, 49.670329255000098 ], [ -125.014678621999948, 49.670580303000079 ], [ -125.01470927099993, 49.670598406000103 ], [ -125.015510411999941, 49.670584459000018 ], [ -125.0155215609999, 49.670854129000126 ], [ -125.015937073999936, 49.670846893000068 ], [ -125.015948223999942, 49.671116563000126 ], [ -125.016779253999957, 49.671102088000069 ], [ -125.01680870099996, 49.671813982000081 ], [ -125.016928552999943, 49.671909078000084 ], [ -125.017643760999945, 49.671896615000072 ], [ -125.017654920999959, 49.672166284000141 ], [ -125.018070444, 49.672159040000103 ], [ -125.018092768999949, 49.672698379000082 ], [ -125.018923824999931, 49.672683889 ], [ -125.018946159999956, 49.673223226000104 ], [ -125.019361690999958, 49.673215979000076 ], [ -125.019372861999955, 49.673485648000032 ], [ -125.02007228299999, 49.673473444000095 ], [ -125.020097541, 49.673459764000057 ], [ -125.020114251, 49.673472712000091 ], [ -125.021034997999919, 49.673456640000026 ], [ -125.021046176999974, 49.67372630800007 ], [ -125.021461715, 49.673719053000099 ], [ -125.021450531999946, 49.673449385000055 ], [ -125.02186606699999, 49.673442128000033 ], [ -125.021854882999961, 49.673172459000028 ], [ -125.022183137999932, 49.673166725000065 ], [ -125.022186697999985, 49.672999268000083 ], [ -125.022970025999939, 49.673655124000071 ], [ -125.022303470999972, 49.674016975000043 ], [ -125.020044602999974, 49.675244298000031 ], [ -125.019073479999989, 49.675773499000037 ], [ -125.017890785999953, 49.676415010000113 ], [ -125.017827226999941, 49.676366347000048 ], [ -125.017149502, 49.675847787000123 ], [ -125.014768643999972, 49.674025889000113 ], [ -125.015257123999916, 49.673718045000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76415084", "BldgCostT": "53668334", "sL_LossRatio": "0.991273454300718", "sL_AssetLoss": "13164.43", "sL_BldgLoss": "13049.55", "sL_StrLoss": "7370.05", "sL_NStrLoss": "5679.5", "sL_ContLoss": "114.88", "geom_point": "0101000020E610000037C9F222D14A5FC0AD4188F92CC84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.166187285, 49.569620458000038 ], [ -125.166199626999955, 49.568938198000048 ], [ -125.16572380800001, 49.568934548000144 ], [ -125.16573909099999, 49.568090259000051 ], [ -125.165319642999961, 49.568087039000012 ], [ -125.165384801999963, 49.56448893000011 ], [ -125.165492931999964, 49.5644897600001 ], [ -125.165514267999967, 49.563311330000047 ], [ -125.166055468999943, 49.563315484000071 ], [ -125.16606086299997, 49.563017343000126 ], [ -125.166758248999926, 49.563022691000114 ], [ -125.16676295, 49.562762660000061 ], [ -125.16726700699995, 49.562766522000047 ], [ -125.167275657999966, 49.562287672000153 ], [ -125.167534640999946, 49.56228965600009 ], [ -125.167541769999943, 49.561894877000043 ], [ -125.168015985999929, 49.561898508000105 ], [ -125.168020766999959, 49.561633689000125 ], [ -125.169346857999983, 49.561643829000047 ], [ -125.169350165, 49.561460300000064 ], [ -125.169213594999945, 49.561459256000049 ], [ -125.16927844099996, 49.557861111000058 ], [ -125.172598600999976, 49.557886433000071 ], [ -125.172364221999956, 49.558546901000049 ], [ -125.17276641499997, 49.55918779299999 ], [ -125.173116288999964, 49.56050379300008 ], [ -125.173192709999952, 49.561311286000063 ], [ -125.173004312999979, 49.561728604000095 ], [ -125.172723691999948, 49.562255591000017 ], [ -125.172077501999965, 49.562979112000136 ], [ -125.171234805999958, 49.563632808000129 ], [ -125.170785501999916, 49.564099908000053 ], [ -125.17064021, 49.564544307000098 ], [ -125.170188497999931, 49.564678202000081 ], [ -125.169935403999958, 49.564898898000102 ], [ -125.169650706999946, 49.565011393000141 ], [ -125.169211803999985, 49.565082594000046 ], [ -125.168737019999952, 49.565290600000026 ], [ -125.16871751399999, 49.565497092000093 ], [ -125.16899790299999, 49.566229087000075 ], [ -125.169867193999906, 49.567391307000037 ], [ -125.170131220999934, 49.568062099000066 ], [ -125.169841925999904, 49.568724304000057 ], [ -125.16996293499993, 49.569649346000105 ], [ -125.166187285, 49.569620458000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.990323854660348", "sL_AssetLoss": "405.12", "sL_BldgLoss": "401.2", "sL_StrLoss": "387", "sL_NStrLoss": "14.2", "sL_ContLoss": "3.92", "geom_point": "0101000020E61000001349F4328A455FC0375E91CADAD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.085982979999983, 49.694703293000074 ], [ -125.085971433999973, 49.694433636000085 ], [ -125.085555738, 49.694441126000072 ], [ -125.085521105999959, 49.693632154000099 ], [ -125.086768171999921, 49.693609682000023 ], [ -125.086779722999893, 49.693879340000059 ], [ -125.087611103999961, 49.693864350000077 ], [ -125.087645771999931, 49.694673319000074 ], [ -125.085982979999983, 49.694703293000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39215250", "BldgCostT": "27045000", "sL_LossRatio": "0.990812022036036", "sL_AssetLoss": "22764.53", "sL_BldgLoss": "22555.37", "sL_StrLoss": "21477.74", "sL_NStrLoss": "1077.63", "sL_ContLoss": "209.16", "geom_point": "0101000020E61000007ED5CA841F3D5FC0F5CFA14600D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.951966284999983, 49.682833015000021 ], [ -124.951952737999946, 49.682494782000092 ], [ -124.951814442999989, 49.682493452000067 ], [ -124.95182199599999, 49.682162247000058 ], [ -124.951301242999989, 49.682157239000034 ], [ -124.95132053399999, 49.681311709000113 ], [ -124.95107346599994, 49.681309332000083 ], [ -124.951122623999936, 49.682537350000104 ], [ -124.95082012499995, 49.682431334000064 ], [ -124.951295639999941, 49.679904144000048 ], [ -124.950327520999949, 49.679168515000065 ], [ -124.949975446999986, 49.678877463000077 ], [ -124.949989728999967, 49.678285831000046 ], [ -124.950050727999923, 49.675758919000053 ], [ -124.950177598999943, 49.674634313000055 ], [ -124.950223668999939, 49.674031969000055 ], [ -124.95134369, 49.674722510000116 ], [ -124.951603191999979, 49.674980311000084 ], [ -124.952240889, 49.675302211000094 ], [ -124.953607712999926, 49.675530099000134 ], [ -124.9543694799999, 49.675841996000088 ], [ -124.955109000999983, 49.676323389000082 ], [ -124.95580188299999, 49.676987 ], [ -124.95615469, 49.677484110000144 ], [ -124.957210908999983, 49.677889987000107 ], [ -124.957851499999947, 49.677978313000047 ], [ -124.959525512999903, 49.677904194000114 ], [ -124.961040703, 49.677986810000036 ], [ -124.961057556999918, 49.67799031200007 ], [ -124.960857624999932, 49.678296849000098 ], [ -124.960833365000028, 49.681603982000063 ], [ -124.960714084999907, 49.681681103000123 ], [ -124.960096874999962, 49.681675218000116 ], [ -124.960093336999947, 49.681831588000072 ], [ -124.960339086999937, 49.681833933000043 ], [ -124.960337029999963, 49.68192489300003 ], [ -124.957252552999947, 49.683919048000071 ], [ -124.956401730999914, 49.684387268000123 ], [ -124.951966284999983, 49.682833015000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12023000", "BldgCostT": "7820000", "sL_LossRatio": "0.917471948706206", "sL_AssetLoss": "2183.5", "sL_BldgLoss": "2003.3", "sL_StrLoss": "280.3", "sL_NStrLoss": "1723", "sL_ContLoss": "180.2", "geom_point": "0101000020E6100000F3B2A2DDD33C5FC09F134A7825D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.949975446999986, 49.678877463000077 ], [ -124.950327520999949, 49.679168515000065 ], [ -124.951295639999941, 49.679904144000048 ], [ -124.95082012499995, 49.682431334000064 ], [ -124.949787919999963, 49.682460957000103 ], [ -124.949772908999989, 49.681474927000139 ], [ -124.949975446999986, 49.678877463000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.998244230371998", "sL_AssetLoss": "1065.06", "sL_BldgLoss": "1063.19", "sL_StrLoss": "1049", "sL_NStrLoss": "14.19", "sL_ContLoss": "1.87", "geom_point": "0101000020E610000085C6D995922C5FC08DF8A11425F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.693435430999941, 49.944790194000056 ], [ -124.699006878999938, 49.944856427000076 ], [ -124.698904467999967, 49.948452261000085 ], [ -124.695954985999947, 49.948417234000075 ], [ -124.69589380399999, 49.948300253000049 ], [ -124.695617708, 49.94798048500008 ], [ -124.69554612899999, 49.947927554000067 ], [ -124.695030739999979, 49.947539319000043 ], [ -124.693823469999955, 49.946900327000073 ], [ -124.693379688999926, 49.946739092000044 ], [ -124.693435430999941, 49.944790194000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13088667", "BldgCostT": "9026667", "sL_LossRatio": "0.996209391801173", "sL_AssetLoss": "5330.543", "sL_BldgLoss": "5310.337", "sL_StrLoss": "5172.297", "sL_NStrLoss": "138.04", "sL_ContLoss": "20.206", "geom_point": "0101000020E6100000133D746AFC2B5FC081E97252B1F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.695583219999975, 49.939520504000058 ], [ -124.695585964999935, 49.939424353000078 ], [ -124.691493770999898, 49.939375599000108 ], [ -124.691496054999931, 49.939295827000109 ], [ -124.690561740999968, 49.939284675000096 ], [ -124.690580923999946, 49.938615312000138 ], [ -124.689101726999951, 49.938597638000019 ], [ -124.689108460999989, 49.938362944000112 ], [ -124.687131165999958, 49.938339288000051 ], [ -124.68714995299996, 49.937685452000075 ], [ -124.686584086999986, 49.937678675000029 ], [ -124.686596041999948, 49.937262784000033 ], [ -124.685750580999951, 49.937252655000073 ], [ -124.685761918999958, 49.936858467000064 ], [ -124.68509228, 49.936850439000089 ], [ -124.685127463999919, 49.935627799000038 ], [ -124.683686102999943, 49.935610506000032 ], [ -124.683701729999925, 49.93506801400013 ], [ -124.682958408000019, 49.935059088000095 ], [ -124.682969211999961, 49.934684260000026 ], [ -124.68236271, 49.934676973000052 ], [ -124.682376415999954, 49.93420166500006 ], [ -124.681735314999969, 49.934193958000115 ], [ -124.681782807, 49.932547670000119 ], [ -124.676582921999923, 49.932485029000119 ], [ -124.67659361399997, 49.932115830000043 ], [ -124.675581106999985, 49.932103604000098 ], [ -124.675594353999927, 49.931646544000046 ], [ -124.673941274999962, 49.93162656300013 ], [ -124.673951381999984, 49.931278211000048 ], [ -124.673177065999937, 49.931268843000076 ], [ -124.673263150999944, 49.928303700000086 ], [ -124.674898407999962, 49.928942484000082 ], [ -124.67609258799996, 49.929185990000065 ], [ -124.677583508999987, 49.929641798000084 ], [ -124.678703308999985, 49.930147392000059 ], [ -124.67893228299998, 49.930341095000081 ], [ -124.680275490000014, 49.930889397000072 ], [ -124.681581107999975, 49.931148592000106 ], [ -124.683792092999937, 49.93185361200009 ], [ -124.684332201999965, 49.932134095000102 ], [ -124.685990007, 49.933333283000131 ], [ -124.686525778999908, 49.933524195000139 ], [ -124.68748822, 49.934354506000069 ], [ -124.68929620499992, 49.935435511000094 ], [ -124.689926720999935, 49.935533700000043 ], [ -124.691229712999984, 49.93610909500017 ], [ -124.692512282, 49.936153290000085 ], [ -124.695789179999949, 49.936221601000028 ], [ -124.696011287999951, 49.936164707000053 ], [ -124.696089002999912, 49.936010900000028 ], [ -124.696471401999972, 49.935807211000075 ], [ -124.69702699799997, 49.935700400000037 ], [ -124.697251099999946, 49.935750185000124 ], [ -124.697689711999914, 49.935932492000049 ], [ -124.697799696999965, 49.936299988000052 ], [ -124.698096804999921, 49.936439486000076 ], [ -124.699120288999936, 49.936577700000043 ], [ -124.699668922999962, 49.936731503000026 ], [ -124.699816079999948, 49.937376693 ], [ -124.698810298999931, 49.937715600000061 ], [ -124.69890849399998, 49.938110097000049 ], [ -124.699462016999973, 49.938416306000079 ], [ -124.700335785999954, 49.938647098000111 ], [ -124.700635243999969, 49.938634430000079 ], [ -124.700976096999938, 49.938620010000093 ], [ -124.701164403999911, 49.938436295000074 ], [ -124.701186894999978, 49.938430467000096 ], [ -124.701154027999934, 49.939586628 ], [ -124.695583219999975, 49.939520504000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.994908019868707", "sL_AssetLoss": "1201.89", "sL_BldgLoss": "1195.77", "sL_StrLoss": "1153", "sL_NStrLoss": "42.77", "sL_ContLoss": "6.12", "geom_point": "0101000020E6100000208FA69B00395FC0458CCF4B62FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.891225761, 49.985348081000019 ], [ -124.892666398999921, 49.985362622000075 ], [ -124.892579154999922, 49.98895842600011 ], [ -124.888989389999935, 49.988922159000069 ], [ -124.888758985999957, 49.988792010000097 ], [ -124.888373990999924, 49.988230899000072 ], [ -124.887913188999946, 49.987860601000136 ], [ -124.887882489999981, 49.987097189000067 ], [ -124.889133600999983, 49.986654309000116 ], [ -124.890230684999935, 49.986123095000082 ], [ -124.890917797999933, 49.985527811000082 ], [ -124.891225761, 49.985348081000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998190767075852", "sL_AssetLoss": "411.224", "sL_BldgLoss": "410.48", "sL_StrLoss": "406", "sL_NStrLoss": "4.48", "sL_ContLoss": "0.744", "geom_point": "0101000020E61000002C746F8F2F2D5FC01B41CF0B9CFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.703155725999963, 49.95680728500006 ], [ -124.707523895999913, 49.956858836000073 ], [ -124.707435045999887, 49.959998246000083 ], [ -124.707339379999922, 49.95993238100008 ], [ -124.706268353999945, 49.959116746000099 ], [ -124.704682411999968, 49.957981172000096 ], [ -124.703155725999963, 49.95680728500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.995853861633474", "sL_AssetLoss": "1152.88", "sL_BldgLoss": "1148.1", "sL_StrLoss": "1130", "sL_NStrLoss": "18.1", "sL_ContLoss": "4.78", "geom_point": "0101000020E61000000C62B908003A5FC0C7E6151592FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.906705422999892, 49.963029851000044 ], [ -124.908293708999977, 49.963045666000063 ], [ -124.908280876, 49.963582477000031 ], [ -124.908207737999959, 49.966641591000091 ], [ -124.907333923999943, 49.966632894000014 ], [ -124.907319238999932, 49.967246612000089 ], [ -124.903849026000017, 49.967212003000093 ], [ -124.903334047999962, 49.967206857000043 ], [ -124.903954106999919, 49.965543306000079 ], [ -124.905437785999965, 49.964259997000063 ], [ -124.905817802999977, 49.963650486000098 ], [ -124.906288497999952, 49.963238897000046 ], [ -124.906705422999892, 49.963029851000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8180417", "BldgCostT": "5641667", "sL_LossRatio": "0.99847732890242", "sL_AssetLoss": "2562.602", "sL_BldgLoss": "2558.7", "sL_StrLoss": "2539", "sL_NStrLoss": "19.7", "sL_ContLoss": "3.902", "geom_point": "0101000020E6100000935F1645952E5FC0B70A208419FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.729507182999924, 49.973973853000125 ], [ -124.729393224999939, 49.973771216000038 ], [ -124.729352626999955, 49.973699035000074 ], [ -124.729343776999912, 49.973683300000125 ], [ -124.729280094999936, 49.973466751000061 ], [ -124.728829213, 49.972484973000086 ], [ -124.728577325999979, 49.972020680000057 ], [ -124.728408524999949, 49.971823674000099 ], [ -124.727696220999974, 49.97126866500011 ], [ -124.726719218999975, 49.970657587000105 ], [ -124.725634188999948, 49.969824011000085 ], [ -124.725500671999924, 49.969684436000051 ], [ -124.725506814999932, 49.969464338000108 ], [ -124.725298106999958, 49.969461914000071 ], [ -124.724939591999913, 49.968988616000033 ], [ -124.724573624999948, 49.968614825000039 ], [ -124.72437539399999, 49.968474032000074 ], [ -124.723297527999975, 49.9678859590001 ], [ -124.72264038899999, 49.967682029000095 ], [ -124.720581850999963, 49.967043206000021 ], [ -124.720151682999955, 49.966873621000062 ], [ -124.719869928999969, 49.966730961000053 ], [ -124.719730026999954, 49.966598954000126 ], [ -124.719732312999952, 49.966268959000061 ], [ -124.719922520999944, 49.965998707000033 ], [ -124.720002037999961, 49.965757674000045 ], [ -124.722541669999927, 49.965787269000074 ], [ -124.722540391999956, 49.965832920000111 ], [ -124.727353088999948, 49.965888844000126 ], [ -124.727317464999928, 49.967167015 ], [ -124.731145724999962, 49.967211349000117 ], [ -124.731080691999949, 49.969551511000127 ], [ -124.731697549999964, 49.969558641000091 ], [ -124.731611571999949, 49.972653581000102 ], [ -124.731928432999922, 49.972657243000114 ], [ -124.731927661999975, 49.972684995000073 ], [ -124.731966233999913, 49.972685441000081 ], [ -124.731944606999932, 49.973464056000083 ], [ -124.733403727999956, 49.973480906000134 ], [ -124.733392370999951, 49.973890253000057 ], [ -124.735577569999975, 49.97391545100006 ], [ -124.73556572399994, 49.974343164000054 ], [ -124.73541988699999, 49.974382026000079 ], [ -124.732720899999947, 49.974725885000026 ], [ -124.732096581999983, 49.97471417900006 ], [ -124.730574847999961, 49.974566293000095 ], [ -124.730521192999959, 49.9745610760001 ], [ -124.730432622999928, 49.974536685000061 ], [ -124.730085320999962, 49.974441819000113 ], [ -124.72981178199997, 49.974301092000047 ], [ -124.729507182999924, 49.973973853000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998517366857609", "sL_AssetLoss": "568.583", "sL_BldgLoss": "567.74", "sL_StrLoss": "565", "sL_NStrLoss": "2.74", "sL_ContLoss": "0.843", "geom_point": "0101000020E61000003CC3505E562E5FC03E8CF7804C014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.724525155999956, 50.012866459000087 ], [ -124.724496191999933, 50.012057364000022 ], [ -124.724077674999975, 50.012063585000064 ], [ -124.724068022999944, 50.011793885000074 ], [ -124.723649508999969, 50.011800105000063 ], [ -124.723639858999945, 50.011530406000119 ], [ -124.723221346999964, 50.011536624 ], [ -124.723163467999939, 50.009918430000035 ], [ -124.722032152999944, 50.009935229000035 ], [ -124.721969891999947, 50.00951290800004 ], [ -124.72197398500002, 50.008441899000076 ], [ -124.722016880999973, 50.008316402000041 ], [ -124.724361049, 50.00828158100007 ], [ -124.7243707, 50.008551281000123 ], [ -124.72562616, 50.008532612000067 ], [ -124.72565513799999, 50.009341708000129 ], [ -124.725236643999949, 50.009347932000033 ], [ -124.72525596, 50.009887329000072 ], [ -124.724837460999964, 50.009893553000033 ], [ -124.724885739999976, 50.011242046000071 ], [ -124.72530425099994, 50.011235823000092 ], [ -124.725323567999979, 50.011775220000047 ], [ -124.725742082999943, 50.011768995000111 ], [ -124.725780727999961, 50.012847789000048 ], [ -124.724525155999956, 50.012866459000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999015268958183", "sL_AssetLoss": "710.854", "sL_BldgLoss": "710.154", "sL_StrLoss": "707", "sL_NStrLoss": "3.154", "sL_ContLoss": "0.7", "geom_point": "0101000020E610000069682C2FF32A5FC00F0113FA11094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.668823565, 50.073135895000128 ], [ -124.668928628999964, 50.069540691000064 ], [ -124.669785802999954, 50.069551061000013 ], [ -124.669793106999947, 50.069300912000131 ], [ -124.675104923999953, 50.069365024000028 ], [ -124.674051408999944, 50.069633010000096 ], [ -124.673519394999985, 50.070036109000085 ], [ -124.673539798999968, 50.070206990000067 ], [ -124.673743104999957, 50.070410591000012 ], [ -124.673316180999961, 50.070614294000102 ], [ -124.673377290999937, 50.070766702000114 ], [ -124.674302713999936, 50.07126519400002 ], [ -124.674291822999976, 50.071337802000095 ], [ -124.674000386, 50.071360608000099 ], [ -124.673533191, 50.0711954020001 ], [ -124.673283407, 50.071262299000111 ], [ -124.672955684, 50.071501602000055 ], [ -124.672799796999968, 50.071790710000073 ], [ -124.67209980299999, 50.072179484000038 ], [ -124.671806883999977, 50.072192298000118 ], [ -124.671140416999933, 50.071931694000043 ], [ -124.670860810999969, 50.071927403000089 ], [ -124.670697013000037, 50.072064100000041 ], [ -124.670694306999934, 50.072370297000113 ], [ -124.670551615999926, 50.072659501000047 ], [ -124.669989703999946, 50.072982809000074 ], [ -124.669095351999914, 50.07313918300008 ], [ -124.668823565, 50.073135895000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10266000", "BldgCostT": "7080000", "sL_LossRatio": "0.997356914048095", "sL_AssetLoss": "3807.292", "sL_BldgLoss": "3797.229", "sL_StrLoss": "3742.519", "sL_NStrLoss": "54.71", "sL_ContLoss": "10.063", "geom_point": "0101000020E610000005E212D3472A5FC04F89D27B36F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.666136860999984, 49.929930460000037 ], [ -124.664305428999938, 49.927062816000053 ], [ -124.664252006999973, 49.926997682 ], [ -124.664182914999984, 49.92690230900007 ], [ -124.664049824999921, 49.926679361000033 ], [ -124.663830399999981, 49.92637668400004 ], [ -124.663728567999925, 49.926252224000081 ], [ -124.663538243999966, 49.925985094000083 ], [ -124.663465231999936, 49.925887188000047 ], [ -124.663302777999917, 49.925619697000108 ], [ -124.663037865999954, 49.925209727000045 ], [ -124.66286299599993, 49.924987372000054 ], [ -124.662790264999941, 49.924898461000041 ], [ -124.662687552999927, 49.924747009000107 ], [ -124.662585103999916, 49.924604586 ], [ -124.662176350999971, 49.924061743000053 ], [ -124.6620872069999, 49.923901119000057 ], [ -124.661997475999939, 49.923722520000091 ], [ -124.661924437, 49.923624624000084 ], [ -124.66170599900002, 49.923348914000044 ], [ -124.661605395999942, 49.923260394000103 ], [ -124.661446052999977, 49.923082792000109 ], [ -124.661273056999946, 49.922914363000096 ], [ -124.661115851999924, 49.922799681000086 ], [ -124.660773638999927, 49.922570742000055 ], [ -124.660456804999967, 49.92226943900004 ], [ -124.660428005999975, 49.922242852000096 ], [ -124.660211406999935, 49.922021077000096 ], [ -124.660096605999939, 49.921923798000151 ], [ -124.659924853999883, 49.921791329 ], [ -124.659341915999917, 49.921448877000053 ], [ -124.659117571999985, 49.921407112000097 ], [ -124.65892233699999, 49.921400918000074 ], [ -124.65864352299991, 49.92139591000003 ], [ -124.6583508, 49.921391101000033 ], [ -124.658044127999986, 49.9213865050001 ], [ -124.657737470999962, 49.921381874000105 ], [ -124.657514048999985, 49.92136708600006 ], [ -124.657429571999955, 49.921341314000102 ], [ -124.657200304999932, 49.921219844000056 ], [ -124.657042964999974, 49.921141949000109 ], [ -124.656884296999962, 49.921037076000104 ], [ -124.656710373999928, 49.920905460000064 ], [ -124.656579568999945, 49.920800023000027 ], [ -124.656391253999971, 49.920659689000054 ], [ -124.656275281999967, 49.920571934000058 ], [ -124.656103151000011, 49.920476342000015 ], [ -124.655872543999976, 49.920327868000093 ], [ -124.655712986999959, 49.920204982000058 ], [ -124.655497232999949, 49.920074213000099 ], [ -124.655284580999975, 49.920006480000048 ], [ -124.654976096, 49.919976738000102 ], [ -124.654640589999971, 49.919965561000041 ], [ -124.654333419999901, 49.919962829 ], [ -124.654095932999951, 49.919958664000077 ], [ -124.653802700999961, 49.919955660000042 ], [ -124.653481589999899, 49.919953197000012 ], [ -124.653202281999981, 49.919949898000056 ], [ -124.652895111999953, 49.919947162 ], [ -124.652658096999986, 49.919952003000049 ], [ -124.652406665999962, 49.919948104000056 ], [ -124.652128286999968, 49.919962802000029 ], [ -124.651821569999939, 49.919969050000105 ], [ -124.65158455299995, 49.919973890000051 ], [ -124.651277347999894, 49.919971162000103 ], [ -124.65102593899995, 49.919967280999984 ], [ -124.650900023999966, 49.91996084100002 ], [ -124.65067605899999, 49.919947395000079 ], [ -124.650367105999976, 49.919908627000062 ], [ -124.650043813999972, 49.919861150000038 ], [ -124.649791987999947, 49.919848265000084 ], [ -124.649595446999967, 49.919825231000111 ], [ -124.649523528999936, 49.919781650000061 ], [ -124.649376626999953, 49.919631469000073 ], [ -124.649170874999967, 49.919419388000037 ], [ -124.649067742999975, 49.919181448000089 ], [ -124.649045012999935, 49.9191274020001 ], [ -124.648878623999948, 49.91882049600008 ], [ -124.647354387999911, 49.917529163000097 ], [ -124.647205891999988, 49.917464384000041 ], [ -124.646986200999933, 49.917407720000014 ], [ -124.646554509999959, 49.917406876000044 ], [ -124.646082188999941, 49.91755662700011 ], [ -124.645659479999964, 49.917724076000169 ], [ -124.645371921, 49.917795172000091 ], [ -124.645142219999968, 49.917792318000124 ], [ -124.644857781999974, 49.91775734400008 ], [ -124.645027144000011, 49.916673066000072 ], [ -124.64508757599998, 49.916088383000037 ], [ -124.64512316199999, 49.91581340600009 ], [ -124.646454187999893, 49.915704492000074 ], [ -124.646928195999948, 49.915715892000058 ], [ -124.647672378999943, 49.915858296000096 ], [ -124.648550491, 49.916295502000033 ], [ -124.649619704999949, 49.916629347 ], [ -124.649607008999936, 49.917059118000061 ], [ -124.650222297999932, 49.917066696000113 ], [ -124.650278287999981, 49.917521801000092 ], [ -124.650934611999929, 49.91839338900013 ], [ -124.65106528499993, 49.918554300000032 ], [ -124.651447306999941, 49.918755110000077 ], [ -124.652036889999948, 49.918854813000067 ], [ -124.6552958, 49.918844806000031 ], [ -124.656391378, 49.919106897000141 ], [ -124.65741178699993, 49.919623899000094 ], [ -124.658501199999975, 49.920479808000053 ], [ -124.659818201999954, 49.920686384000099 ], [ -124.660436301999979, 49.920867201000121 ], [ -124.66213721299999, 49.921696103000102 ], [ -124.663249812999979, 49.922490798000098 ], [ -124.665553693999968, 49.923428002000072 ], [ -124.666815003999943, 49.924409208000029 ], [ -124.667630601999946, 49.925485884000111 ], [ -124.667974909999941, 49.925763398000122 ], [ -124.667972622999955, 49.925841903000091 ], [ -124.668073836999923, 49.9258431330001 ], [ -124.668462877, 49.926156693000053 ], [ -124.66924334, 49.926465719000078 ], [ -124.669222175999892, 49.927192552000044 ], [ -124.670423186999969, 49.927207124000034 ], [ -124.670318566999967, 49.930803018000084 ], [ -124.66684190499997, 49.930760798000044 ], [ -124.666785542999932, 49.93070813900006 ], [ -124.666136860999984, 49.929930460000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.995883774299695", "sL_AssetLoss": "823.57", "sL_BldgLoss": "820.18", "sL_StrLoss": "797", "sL_NStrLoss": "23.18", "sL_ContLoss": "3.39", "geom_point": "0101000020E610000042913004673C5FC004CEAD6B8FFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.942060878999911, 49.99474372800011 ], [ -124.94530258199994, 49.994774912000011 ], [ -124.945476781999986, 49.995166802000085 ], [ -124.94565890899996, 49.995874598000142 ], [ -124.945666015999976, 49.996720599000049 ], [ -124.945416103999918, 49.998171897000098 ], [ -124.945491025999956, 49.998373321000031 ], [ -124.941977509999958, 49.998339525000105 ], [ -124.942060878999911, 49.99474372800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.991933128923931", "sL_AssetLoss": "1095.84", "sL_BldgLoss": "1087", "sL_StrLoss": "1020", "sL_NStrLoss": "67", "sL_ContLoss": "8.84", "geom_point": "0101000020E61000007B65FFB814245FC0198702CFA0F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.564190085999897, 49.906766981000025 ], [ -124.564271432999959, 49.904176312000061 ], [ -124.562267673999912, 49.904150037000122 ], [ -124.562314685999979, 49.902654772000112 ], [ -124.561915352999918, 49.902649532000055 ], [ -124.561937040999936, 49.901959898000023 ], [ -124.561626785999977, 49.901955826000112 ], [ -124.561685099999963, 49.900101820000025 ], [ -124.563892211999985, 49.900299236000173 ], [ -124.563963242999932, 49.903974458000036 ], [ -124.566083145, 49.904104622000034 ], [ -124.565989300999959, 49.906790543000064 ], [ -124.564190085999897, 49.906766981000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.985031781833094", "sL_AssetLoss": "487.7", "sL_BldgLoss": "480.4", "sL_StrLoss": "455", "sL_NStrLoss": "25.4", "sL_ContLoss": "7.3", "geom_point": "0101000020E6100000985ECDC756235FC0B1A4BB6FA5F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.549158951, 49.895623508000064 ], [ -124.552380799999966, 49.895310695 ], [ -124.554730585999934, 49.895494706000186 ], [ -124.554715952, 49.895957783000036 ], [ -124.549150681999919, 49.895884217000045 ], [ -124.549158951, 49.895623508000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "0.988447763987308", "sL_AssetLoss": "1175.53", "sL_BldgLoss": "1161.95", "sL_StrLoss": "1085.05", "sL_NStrLoss": "76.9", "sL_ContLoss": "13.58", "geom_point": "0101000020E610000049E2BC6AEB2C5FC0DD1E29C789004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.699274741999929, 50.002441183 ], [ -124.704853235999963, 50.002507114000174 ], [ -124.704810934999969, 50.00399718000002 ], [ -124.704487709999938, 50.004157798000065 ], [ -124.704543991999941, 50.00493970100004 ], [ -124.703787709999972, 50.005651786000051 ], [ -124.703672886999982, 50.005959499000078 ], [ -124.703665357999967, 50.006089862000103 ], [ -124.699172222999948, 50.006036738000049 ], [ -124.699274741999929, 50.002441183 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.993876519722957", "sL_AssetLoss": "672.82", "sL_BldgLoss": "668.7", "sL_StrLoss": "636", "sL_NStrLoss": "32.7", "sL_ContLoss": "4.12", "geom_point": "0101000020E61000005042E19A98335FC0585B2D8748F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.808943394999972, 49.941420906000083 ], [ -124.808933294, 49.941151216000051 ], [ -124.808097526999973, 49.941164252000064 ], [ -124.80808743099999, 49.940894561000114 ], [ -124.807669548999982, 49.940901077000085 ], [ -124.807659455999968, 49.940631387000053 ], [ -124.806823695, 49.940644413000079 ], [ -124.806813605999977, 49.94037472300009 ], [ -124.805977850999909, 49.94038774400007 ], [ -124.805967767999945, 49.940118053000063 ], [ -124.805549890999927, 49.940124561000118 ], [ -124.805539810999932, 49.939854870000019 ], [ -124.804704063999935, 49.939867881000126 ], [ -124.804693985999947, 49.939598190000041 ], [ -124.80427611399989, 49.939604694000153 ], [ -124.804266039999945, 49.939335003000053 ], [ -124.803430301999981, 49.939348003000099 ], [ -124.803420232999883, 49.939078314000064 ], [ -124.802584497999987, 49.93909130800008 ], [ -124.802574431999957, 49.938821618000084 ], [ -124.802156566999969, 49.938828113000064 ], [ -124.802126379999962, 49.938019040000022 ], [ -124.803379953999951, 49.937999551000125 ], [ -124.803390023999953, 49.938269241000043 ], [ -124.804225741999986, 49.938256240000108 ], [ -124.804235818, 49.938525932000132 ], [ -124.804653678999927, 49.93851942900006 ], [ -124.804663754999936, 49.93878912000006 ], [ -124.805499483999981, 49.938776108000127 ], [ -124.805509563999976, 49.939045799000034 ], [ -124.806345295999975, 49.939032783000108 ], [ -124.80635538300001, 49.939302474000087 ], [ -124.806773249999978, 49.939295963000099 ], [ -124.806783338999949, 49.939565653000031 ], [ -124.807619079999981, 49.939552627000054 ], [ -124.807629172999924, 49.939822317000086 ], [ -124.808464917999913, 49.939809287000081 ], [ -124.808475015999988, 49.940078975000056 ], [ -124.808892889999953, 49.940072458 ], [ -124.808902990999954, 49.940342147000095 ], [ -124.80973874299994, 49.940329106000064 ], [ -124.809748849999892, 49.940598796000131 ], [ -124.810166727999928, 49.940592274000068 ], [ -124.810197052999968, 49.94140134200012 ], [ -124.808943394999972, 49.941420906000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.998593962540546", "sL_AssetLoss": "764.56", "sL_BldgLoss": "763.485", "sL_StrLoss": "756", "sL_NStrLoss": "7.485", "sL_ContLoss": "1.075", "geom_point": "0101000020E61000009E503EF328275FC05EE134AFB01B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.609746670999968, 50.218295430000111 ], [ -124.609856748, 50.214700970000138 ], [ -124.610332061999955, 50.214706955000025 ], [ -124.61034635599998, 50.21423998100007 ], [ -124.613900441999988, 50.214284676000027 ], [ -124.613836083999942, 50.214819800000043 ], [ -124.61408430799996, 50.215086094000128 ], [ -124.614144913999951, 50.21567 ], [ -124.613987483999892, 50.215950592000048 ], [ -124.613545625999961, 50.216191301000023 ], [ -124.613277208999989, 50.216527387000049 ], [ -124.613355480999957, 50.216778092000041 ], [ -124.612935886999978, 50.216819408000042 ], [ -124.612897910999934, 50.216902001000086 ], [ -124.612765508999971, 50.217163987000021 ], [ -124.613234511999934, 50.217373389000052 ], [ -124.613904474999941, 50.218084093000044 ], [ -124.61506210399989, 50.217914591000095 ], [ -124.615362444999946, 50.218008783000123 ], [ -124.615351551999964, 50.218365887000068 ], [ -124.609746670999968, 50.218295430000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.995533086325704", "sL_AssetLoss": "577.58", "sL_BldgLoss": "575", "sL_StrLoss": "553", "sL_NStrLoss": "22", "sL_ContLoss": "2.58", "geom_point": "0101000020E6100000A50F7E5E082B5FC009B729DC7AFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.669846310999944, 49.96463735100005 ], [ -124.669869516999981, 49.963840686000026 ], [ -124.671380777999957, 49.96409155200007 ], [ -124.671806135999987, 49.963962520000067 ], [ -124.674446238999934, 49.963933364000056 ], [ -124.674868240999956, 49.963921094000028 ], [ -124.675144794999937, 49.964023636000078 ], [ -124.674903472999986, 49.964030695000083 ], [ -124.674626694999972, 49.964116189000066 ], [ -124.674523204, 49.964306994000047 ], [ -124.674657898999968, 49.964610402000112 ], [ -124.675378423999973, 49.965418252000099 ], [ -124.669825518999943, 49.965351076000054 ], [ -124.669846310999944, 49.96463735100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.99489108185918", "sL_AssetLoss": "1201.82", "sL_BldgLoss": "1195.68", "sL_StrLoss": "1157", "sL_NStrLoss": "38.68", "sL_ContLoss": "6.14", "geom_point": "0101000020E61000001885F278B93B5FC0A5336A9D3CFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.930994034999969, 49.976261606000058 ], [ -124.932540288999945, 49.976276655000078 ], [ -124.93369530299999, 49.976978199000044 ], [ -124.934421408999981, 49.977677508000127 ], [ -124.93650863699996, 49.978934298000063 ], [ -124.936485866999973, 49.979911651000101 ], [ -124.930909825999947, 49.979857484000043 ], [ -124.930994034999969, 49.976261606000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22762584", "BldgCostT": "15698334", "sL_LossRatio": "0.992463151878481", "sL_AssetLoss": "12737.42", "sL_BldgLoss": "12641.42", "sL_StrLoss": "12045.22", "sL_NStrLoss": "596.2", "sL_ContLoss": "96", "geom_point": "0101000020E6100000DFF8FB41F4315FC0D7BFF3A4AFF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.767347638999965, 49.947355062000021 ], [ -124.767341578999904, 49.947189519000069 ], [ -124.766923634999984, 49.947195888000039 ], [ -124.766894027999953, 49.946386800000028 ], [ -124.768565779999989, 49.946361316000051 ], [ -124.768555901999946, 49.946091620000068 ], [ -124.768973837999965, 49.946085246000074 ], [ -124.768963957999986, 49.945815550000113 ], [ -124.769381890999966, 49.945809173000022 ], [ -124.769372009999955, 49.945539478000093 ], [ -124.769750634999966, 49.94553370000007 ], [ -124.769755038999961, 49.945370200000099 ], [ -124.770202316, 49.945375216000102 ], [ -124.770169547999984, 49.944481329000041 ], [ -124.770233642999941, 49.944446943000123 ], [ -124.772109168999933, 49.944418296000087 ], [ -124.772116518999937, 49.944144855000069 ], [ -124.772248028999968, 49.944146328000109 ], [ -124.772665945999918, 49.944139940000078 ], [ -124.772656045999952, 49.943870245000092 ], [ -124.773073961999927, 49.943863855000103 ], [ -124.773064060999943, 49.943594161000092 ], [ -124.772646146999975, 49.943600550000092 ], [ -124.77262459399995, 49.943013375000106 ], [ -124.773104928999928, 49.942783996000024 ], [ -124.774288072999965, 49.942765899000065 ], [ -124.774297981, 49.943035594000072 ], [ -124.774715887999918, 49.943029198000069 ], [ -124.774725798999924, 49.943298894000037 ], [ -124.77510384299994, 49.943293107000073 ], [ -124.775105251999932, 49.943240528000111 ], [ -124.775671014999887, 49.943246845000026 ], [ -124.775683555999962, 49.942778841000099 ], [ -124.776409595999937, 49.942786944000055 ], [ -124.776418946999939, 49.94243775900005 ], [ -124.776934173999948, 49.942443507000128 ], [ -124.776942144999936, 49.942145771000078 ], [ -124.777610642999974, 49.942153225000055 ], [ -124.777581675999954, 49.941366223000017 ], [ -124.777163783999967, 49.94137262800011 ], [ -124.777134011999962, 49.940563546000092 ], [ -124.777551895999977, 49.940557140000045 ], [ -124.777541970999962, 49.940287447000053 ], [ -124.777819428999962, 49.940283192000045 ], [ -124.777959853999945, 49.940281040000066 ], [ -124.777953740999948, 49.940114959000027 ], [ -124.777930070999957, 49.939471957000116 ], [ -124.779183698999987, 49.939452727000059 ], [ -124.779173764999925, 49.939183034000045 ], [ -124.780845255999978, 49.939157375000079 ], [ -124.780855199999934, 49.939427068000057 ], [ -124.782108824999966, 49.939407808000126 ], [ -124.782098873999971, 49.939138115000063 ], [ -124.783770362, 49.93911241300011 ], [ -124.783780320999981, 49.939382107 ], [ -124.784198194999988, 49.939375678000111 ], [ -124.784168307999977, 49.938566598000094 ], [ -124.785839773999925, 49.938540867000064 ], [ -124.78581555599996, 49.937885835000046 ], [ -124.786222203999955, 49.937742708000023 ], [ -124.786303228999927, 49.937724188000061 ], [ -124.788989734999944, 49.937682770000038 ], [ -124.789000123, 49.93729083900012 ], [ -124.790288290999953, 49.936932291000062 ], [ -124.792046588999952, 49.936617609000074 ], [ -124.792700916999976, 49.936580499000115 ], [ -124.793253197999917, 49.936411001000153 ], [ -124.794476900999939, 49.936364099000073 ], [ -124.795136176999975, 49.936218901000117 ], [ -124.795132961, 49.936340892000025 ], [ -124.796143997999977, 49.936351996000013 ], [ -124.796063437, 49.939409573000034 ], [ -124.796049249999967, 49.93994796000004 ], [ -124.794502755999972, 49.939930970000063 ], [ -124.794484826999934, 49.940610497000137 ], [ -124.794464335999976, 49.940610272000136 ], [ -124.794278661999954, 49.940608231000112 ], [ -124.794287238, 49.940839080000039 ], [ -124.793033583999915, 49.940858472000095 ], [ -124.793023781999921, 49.940594426000068 ], [ -124.792810371999948, 49.94059207800013 ], [ -124.791769924999983, 49.940608158000074 ], [ -124.791779929999947, 49.940877851 ], [ -124.790209418999922, 49.940902109000056 ], [ -124.790181931999953, 49.941940193000121 ], [ -124.788824993999981, 49.94215489100003 ], [ -124.787347716999989, 49.942546498000112 ], [ -124.785451322999961, 49.942926802000102 ], [ -124.784074983999986, 49.943396794000087 ], [ -124.781081091999908, 49.944217091000077 ], [ -124.779832386999914, 49.944748405000041 ], [ -124.776411622999959, 49.946483103000048 ], [ -124.772619783999986, 49.948780299000092 ], [ -124.769640395999943, 49.949978097000042 ], [ -124.768653285999974, 49.950046409000052 ], [ -124.765613908999939, 49.95080409500008 ], [ -124.764305822000011, 49.950807906000065 ], [ -124.764367363999924, 49.948532773000125 ], [ -124.7650660689999, 49.948540642000069 ], [ -124.765077461, 49.948119190000057 ], [ -124.765284762999926, 49.948121524000037 ], [ -124.765281431999981, 49.948030436000096 ], [ -124.766327107, 49.948014513000089 ], [ -124.766332328999937, 49.947821120000093 ], [ -124.766528410999967, 49.947823325000115 ], [ -124.766525423999923, 49.947741646000061 ], [ -124.766987979999939, 49.947734599000064 ], [ -124.766998330999954, 49.94735113600008 ], [ -124.767347638999965, 49.947355062000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9318666", "BldgCostT": "6426666", "sL_LossRatio": "0.997926486677521", "sL_AssetLoss": "3044.591", "sL_BldgLoss": "3038.278", "sL_StrLoss": "2990.728", "sL_NStrLoss": "47.55", "sL_ContLoss": "6.313", "geom_point": "0101000020E61000005985CD00972B5FC015A8280B9DF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.680712006999912, 49.946650366000043 ], [ -124.680628062999958, 49.946642590000074 ], [ -124.680600221999924, 49.946642997000041 ], [ -124.680516627999978, 49.946644190000043 ], [ -124.680264938999954, 49.9466208670001 ], [ -124.679957493999922, 49.9465983260001 ], [ -124.679747562000017, 49.946574389000091 ], [ -124.679584852999966, 49.946598487000102 ], [ -124.679436359999897, 49.946601292000082 ], [ -124.67912279799999, 49.946410464000074 ], [ -124.67883944, 49.946186741000091 ], [ -124.677329526999955, 49.943569642000057 ], [ -124.677051157999983, 49.942970942 ], [ -124.676690583999942, 49.942195416000118 ], [ -124.675836554999975, 49.940358561000103 ], [ -124.675016941999942, 49.938595553000042 ], [ -124.674491531999962, 49.937465275000136 ], [ -124.674084845, 49.936430324000092 ], [ -124.674133349000016, 49.93642962400002 ], [ -124.674134657999943, 49.936467376000046 ], [ -124.679134729999959, 49.936527721000097 ], [ -124.679030773999955, 49.940123577000122 ], [ -124.677587689999925, 49.940106184000165 ], [ -124.677521687999956, 49.942386393000035 ], [ -124.678939888999977, 49.942403487000028 ], [ -124.678936177999915, 49.942296755000058 ], [ -124.682279552999944, 49.942248300000067 ], [ -124.682281786999951, 49.942312465000086 ], [ -124.683751644999973, 49.942330117000026 ], [ -124.68376158599996, 49.941985046000077 ], [ -124.689332676999953, 49.942051770000063 ], [ -124.689241032999945, 49.945246087000058 ], [ -124.689207028999959, 49.945231689000117 ], [ -124.688909755999973, 49.945101099000091 ], [ -124.68858491, 49.944979892000113 ], [ -124.688387643999974, 49.944919804000065 ], [ -124.688176512999974, 49.94485992900006 ], [ -124.687810196999919, 49.944748330000024 ], [ -124.68727483, 49.944585220000114 ], [ -124.686981033999984, 49.944553502000112 ], [ -124.686479170999959, 49.944551802000049 ], [ -124.686185993999956, 49.944538080000044 ], [ -124.685851660999901, 49.944542951000052 ], [ -124.685574576999926, 49.944591948000038 ], [ -124.68528548299993, 49.944695102000033 ], [ -124.684944399999907, 49.944906934000045 ], [ -124.68415298399999, 49.945395152000067 ], [ -124.683895196999956, 49.945596791000042 ], [ -124.682789606999989, 49.946269445000055 ], [ -124.682155308999967, 49.946467538000057 ], [ -124.682031152999969, 49.946505301000109 ], [ -124.681366188999945, 49.946622885000103 ], [ -124.681143904999914, 49.946644103000075 ], [ -124.681088172, 49.946644909000028 ], [ -124.680795580999984, 49.946649151000059 ], [ -124.680712006999912, 49.946650366000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.995729761861436", "sL_AssetLoss": "824.31", "sL_BldgLoss": "820.79", "sL_StrLoss": "794", "sL_NStrLoss": "26.79", "sL_ContLoss": "3.52", "geom_point": "0101000020E61000008BF7CA59EB3B5FC05004ABC9D7FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.933265054999964, 49.997669215000087 ], [ -124.93884327399995, 49.997723261000012 ], [ -124.938791527999982, 49.999948273 ], [ -124.937966820999947, 50.000000606000093 ], [ -124.93713839899999, 50.000172897000091 ], [ -124.936915284999898, 50.00015869700011 ], [ -124.93605691499998, 50.000000607000075 ], [ -124.934292500999945, 49.999483608000091 ], [ -124.933737102999928, 49.999222988000021 ], [ -124.933236598999926, 49.998886381000062 ], [ -124.933265054999964, 49.997669215000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "0.993817403739664", "sL_AssetLoss": "930.03", "sL_BldgLoss": "924.28", "sL_StrLoss": "865.87", "sL_NStrLoss": "58.41", "sL_ContLoss": "5.75", "geom_point": "0101000020E610000000506AD4683A5FC0D17EDE3316FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.909416656999952, 49.994931594000086 ], [ -124.909502585999974, 49.991335805000119 ], [ -124.915080003999918, 49.991391058000012 ], [ -124.915077152999956, 49.991510980000022 ], [ -124.916014075999939, 49.991520234000056 ], [ -124.915938042999969, 49.99472105100007 ], [ -124.914277714, 49.994102899000083 ], [ -124.91401019099996, 49.994063008000076 ], [ -124.913928017999979, 49.994460407000133 ], [ -124.913788297999972, 49.994434787000081 ], [ -124.913266685999972, 49.993949090000079 ], [ -124.912500288000018, 49.993970498000081 ], [ -124.911639793999939, 49.994093008000092 ], [ -124.910854779999951, 49.994366398000082 ], [ -124.909666599999952, 49.994934076000128 ], [ -124.909416656999952, 49.994931594000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999654576416364", "sL_AssetLoss": "784.544", "sL_BldgLoss": "784.273", "sL_StrLoss": "783", "sL_NStrLoss": "1.273", "sL_ContLoss": "0.271", "geom_point": "0101000020E61000008531F9D136295FC0D7E03B395C334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.640676678999938, 50.402209157000037 ], [ -124.640760871999959, 50.39940947100007 ], [ -124.646388252999941, 50.399478337000069 ], [ -124.646382490999883, 50.399670748000077 ], [ -124.647084537999916, 50.399679319 ], [ -124.646996890999958, 50.402607475000103 ], [ -124.646583315999948, 50.403185690000072 ], [ -124.64643905299999, 50.403266401000124 ], [ -124.642983735999948, 50.403224157000089 ], [ -124.642512112999952, 50.40303619300002 ], [ -124.642391093999947, 50.402812589000106 ], [ -124.641777394, 50.402569011 ], [ -124.640676678999938, 50.402209157000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998782980421624", "sL_AssetLoss": "556.277", "sL_BldgLoss": "555.6", "sL_StrLoss": "552", "sL_NStrLoss": "3.6", "sL_ContLoss": "0.677", "geom_point": "0101000020E61000006B4F7FAC962E5FC0DE9D6B4E94004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.727223995999921, 50.004613606000078 ], [ -124.726757790999926, 50.004070998000046 ], [ -124.726604290999944, 50.003677910000093 ], [ -124.7257019799999, 50.003413003000034 ], [ -124.725330805999988, 50.003175086000084 ], [ -124.724429067999935, 50.002772746000083 ], [ -124.724460678999961, 50.001642109000066 ], [ -124.725270903999927, 50.001651516000074 ], [ -124.72552080399997, 50.001852472000103 ], [ -124.725796272999958, 50.002129015000087 ], [ -124.726413281999925, 50.002415816000102 ], [ -124.727306788999925, 50.002992662000075 ], [ -124.727598964999984, 50.003121045000057 ], [ -124.727900583999912, 50.00321086100012 ], [ -124.728095963999962, 50.003313511000101 ], [ -124.728142734999935, 50.004311164000043 ], [ -124.72893416299992, 50.004304012000034 ], [ -124.730597881, 50.004288965000086 ], [ -124.73055557499994, 50.005809331000144 ], [ -124.73046577199996, 50.00580829300003 ], [ -124.730436533999963, 50.006858931000096 ], [ -124.728186511999979, 50.00683290000012 ], [ -124.727902907000029, 50.006429494000081 ], [ -124.727693981999934, 50.005667503000112 ], [ -124.727257284999965, 50.00553929900012 ], [ -124.727223995999921, 50.004613606000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13656583", "BldgCostT": "9418333", "sL_LossRatio": "0.976283686320094", "sL_AssetLoss": "13282.84", "sL_BldgLoss": "12967.82", "sL_StrLoss": "11472.92", "sL_NStrLoss": "1494.9", "sL_ContLoss": "315.02", "geom_point": "0101000020E610000007FEE88257275FC0306E9B9073F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.608578789999953, 49.917928825000047 ], [ -124.608656586999984, 49.915372810000108 ], [ -124.61072013899999, 49.915398987000039 ], [ -124.610713533999942, 49.915200753000136 ], [ -124.612158385999919, 49.915180672000105 ], [ -124.612191814999989, 49.914079488000048 ], [ -124.621090679999909, 49.91447005200007 ], [ -124.623907901999956, 49.914466974000014 ], [ -124.623882922999911, 49.915296804000043 ], [ -124.623946239999967, 49.915297599000056 ], [ -124.623837990999945, 49.918893505000064 ], [ -124.618269819999924, 49.918823453000051 ], [ -124.61827507299995, 49.918649680000101 ], [ -124.615969744999944, 49.918620594000096 ], [ -124.61600596599996, 49.917424293000032 ], [ -124.614164977, 49.917401030000129 ], [ -124.614115310999921, 49.919039248000082 ], [ -124.612094374999955, 49.919013676000098 ], [ -124.612119549999974, 49.919768553000097 ], [ -124.612050960999966, 49.919769506000073 ], [ -124.61196952899999, 49.922451192000104 ], [ -124.60640094199999, 49.922380537000059 ], [ -124.606510570999916, 49.918784664000036 ], [ -124.60707185299999, 49.918791799000111 ], [ -124.607061802999951, 49.918489548000096 ], [ -124.607897265999952, 49.9184779650001 ], [ -124.60788829499991, 49.918208247000109 ], [ -124.608306025000033, 49.918202453000028 ], [ -124.608297049999948, 49.917932734000068 ], [ -124.608578789999953, 49.917928825000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.998166497109902", "sL_AssetLoss": "1222.796", "sL_BldgLoss": "1220.554", "sL_StrLoss": "1199.304", "sL_NStrLoss": "21.25", "sL_ContLoss": "2.242", "geom_point": "0101000020E6100000166D8E731B2C5FC00972AB7BBFFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.687853831999945, 49.992443278000025 ], [ -124.687872525999964, 49.991793113000071 ], [ -124.687324851000014, 49.991786566000073 ], [ -124.687334288000017, 49.991458499000103 ], [ -124.68625903199991, 49.991445638000108 ], [ -124.686362534999901, 49.987850025000078 ], [ -124.68637489799994, 49.987850173000012 ], [ -124.686391167999929, 49.987284925000026 ], [ -124.688673611999917, 49.987312212000084 ], [ -124.688866381, 49.987673991000079 ], [ -124.689651399999889, 49.988202390000041 ], [ -124.69012919599993, 49.988699515000057 ], [ -124.69139127399994, 49.989264896000115 ], [ -124.691650591999959, 49.989487109000066 ], [ -124.691811612999942, 49.989744803000058 ], [ -124.691856191999975, 49.99061649900009 ], [ -124.692206386999914, 49.991043691000108 ], [ -124.693295917999961, 49.99189109600006 ], [ -124.693444382999985, 49.992045504000053 ], [ -124.693431088999915, 49.992509789000088 ], [ -124.687853831999945, 49.992443278000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390584", "BldgCostT": "2338334", "sL_LossRatio": "0.994757284646457", "sL_AssetLoss": "1506.662", "sL_BldgLoss": "1498.763", "sL_StrLoss": "1452.623", "sL_NStrLoss": "46.14", "sL_ContLoss": "7.899", "geom_point": "0101000020E61000004D9B1ED277395FC0A78369D6A1FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.895851284999964, 49.989638 ], [ -124.895582285999964, 49.989571093000102 ], [ -124.893226790999933, 49.98966693400012 ], [ -124.89327736199999, 49.987581490000096 ], [ -124.898854299999954, 49.987637568000075 ], [ -124.898845843999979, 49.987988045000066 ], [ -124.899464998999946, 49.987994253000124 ], [ -124.899460199999936, 49.988193276000075 ], [ -124.900224381999976, 49.988200934000126 ], [ -124.900218510999963, 49.98844457200007 ], [ -124.900971867999928, 49.988452115000094 ], [ -124.900966750999942, 49.988664649000107 ], [ -124.90163125699992, 49.988671299000046 ], [ -124.901544711999946, 49.992267094000063 ], [ -124.900857675999944, 49.99226021900003 ], [ -124.900008208999978, 49.99177428600008 ], [ -124.899229814999927, 49.990797304000083 ], [ -124.898723295999957, 49.990661992000106 ], [ -124.898366381999935, 49.990442704000081 ], [ -124.898002305999952, 49.990431302000047 ], [ -124.896956510999971, 49.990060987000085 ], [ -124.896336297999937, 49.989927091000041 ], [ -124.895851284999964, 49.989638 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.995706170490812", "sL_AssetLoss": "1124.87", "sL_BldgLoss": "1120.04", "sL_StrLoss": "1091", "sL_NStrLoss": "29.04", "sL_ContLoss": "4.83", "geom_point": "0101000020E61000002FB8CDF15D3C5FC01B15D5AE4BFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.941284793999927, 49.985085584000096 ], [ -124.946475075999956, 49.985135516000156 ], [ -124.946407304999951, 49.98536540100006 ], [ -124.945199174999985, 49.986546095000122 ], [ -124.94489121, 49.987206887000049 ], [ -124.944140196999967, 49.987984510000111 ], [ -124.943826098000017, 49.988467303000057 ], [ -124.943823959000028, 49.988706689000068 ], [ -124.941201378999892, 49.988681429000046 ], [ -124.941284793999927, 49.985085584000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38698083", "BldgCostT": "26688333", "sL_LossRatio": "0.990190493905463", "sL_AssetLoss": "24138.83", "sL_BldgLoss": "23902.04", "sL_StrLoss": "22410.14", "sL_NStrLoss": "1491.9", "sL_ContLoss": "236.79", "geom_point": "0101000020E61000004A74F9833F365FC05E88F62D4AF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.85628428699998, 49.943990693000025 ], [ -124.853573106999946, 49.942001100000034 ], [ -124.852705913999941, 49.941547478000096 ], [ -124.852706113999915, 49.941539471000048 ], [ -124.852691066999967, 49.941539711000104 ], [ -124.85242829399999, 49.941402254000074 ], [ -124.852423381, 49.941274139000093 ], [ -124.852016706999962, 49.941280635000105 ], [ -124.852005371999951, 49.941277331000016 ], [ -124.851995163999959, 49.941011131000074 ], [ -124.851577291999931, 49.941017805000051 ], [ -124.85156695299996, 49.940748122000095 ], [ -124.851525420999963, 49.940748785000061 ], [ -124.851515722999949, 49.941134573000056 ], [ -124.846516306999916, 49.939676800000043 ], [ -124.842278902999951, 49.939329294000068 ], [ -124.840289673999962, 49.939312906000062 ], [ -124.840289785, 49.939308566000115 ], [ -124.840109732999963, 49.939311423000056 ], [ -124.83709401299997, 49.939286505000055 ], [ -124.836064402999952, 49.939364892000135 ], [ -124.834960508999984, 49.939608396000033 ], [ -124.833306909, 49.939750806000092 ], [ -124.832517901999935, 49.939916004000025 ], [ -124.83031991199999, 49.940041402000055 ], [ -124.827217295999986, 49.940594692000026 ], [ -124.825220442999949, 49.940626139000116 ], [ -124.825230635999958, 49.940895826000016 ], [ -124.824394879999929, 49.940908979000071 ], [ -124.824405066999972, 49.941178666000027 ], [ -124.82147990199995, 49.941224654000074 ], [ -124.821490074999986, 49.941494342000098 ], [ -124.82065430699997, 49.941507467000037 ], [ -124.820664472999951, 49.941777156000079 ], [ -124.81941081399998, 49.94179683300009 ], [ -124.819403508, 49.941602909000068 ], [ -124.81940065399999, 49.941527145000109 ], [ -124.818982768999945, 49.941533701000061 ], [ -124.818972612999985, 49.941264012000033 ], [ -124.81813684899997, 49.941277120000102 ], [ -124.818135341999962, 49.941237143000073 ], [ -124.818096236999949, 49.940198367000058 ], [ -124.81851411, 49.940191814000052 ], [ -124.818503955999958, 49.939922125000045 ], [ -124.818921828000015, 49.939915571000078 ], [ -124.818901513999904, 49.939376195000115 ], [ -124.819319379999982, 49.939369639000098 ], [ -124.819309220999969, 49.93909995000007 ], [ -124.81972708399999, 49.939093393000057 ], [ -124.819716923999962, 49.938823706000065 ], [ -124.81982147599993, 49.938822065000103 ], [ -124.820552643999918, 49.938810587000091 ], [ -124.820532312999958, 49.938271210000096 ], [ -124.820572060999908, 49.93827058600003 ], [ -124.820950169999918, 49.938264650000072 ], [ -124.820940003999937, 49.937994961000079 ], [ -124.822193562999956, 49.937975269000034 ], [ -124.822211056999947, 49.93843899200003 ], [ -124.822213912, 49.938514644000065 ], [ -124.823049625999914, 49.938501508000073 ], [ -124.823059805999918, 49.938771196000111 ], [ -124.823477665999988, 49.938764625000069 ], [ -124.823462236999916, 49.938355923000067 ], [ -124.823436939000018, 49.937685874000117 ], [ -124.823854788999967, 49.937679302000042 ], [ -124.82384460599999, 49.937409615000114 ], [ -124.825098149999945, 49.937389891000088 ], [ -124.825130105999918, 49.93823566 ], [ -124.825138910999954, 49.938468640000096 ], [ -124.826392478999963, 49.938448901000086 ], [ -124.826382283, 49.938179214000066 ], [ -124.827198332999941, 49.938166358000046 ], [ -124.827635841999907, 49.938159463000012 ], [ -124.827627738999922, 49.937945280000072 ], [ -124.827605230999936, 49.937350401000067 ], [ -124.829276613999951, 49.937324045000068 ], [ -124.829289391, 49.937661422000083 ], [ -124.829297041999922, 49.937863419000031 ], [ -124.82971489099999, 49.937856826000015 ], [ -124.829704675999949, 49.937587140000119 ], [ -124.830647710999955, 49.937572255000113 ], [ -124.830652819999926, 49.937372613000093 ], [ -124.830663805999905, 49.936943299000085 ], [ -124.83145980099999, 49.936951785000105 ], [ -124.831463081999942, 49.936823519000043 ], [ -124.832184587999961, 49.93683120500004 ], [ -124.83216061200001, 49.936199118000069 ], [ -124.833414117999936, 49.936179305000053 ], [ -124.833424353999959, 49.936448991000077 ], [ -124.833482597999947, 49.936448070000061 ], [ -124.833484729999981, 49.936364568000087 ], [ -124.835354638999917, 49.936384445000115 ], [ -124.835930660999949, 49.936390561000053 ], [ -124.835922538, 49.936176849000049 ], [ -124.835921122999963, 49.936139637000068 ], [ -124.836029445999884, 49.936137922000107 ], [ -124.836137418999897, 49.936136211000083 ], [ -124.837174623999914, 49.936119782000034 ], [ -124.837167860999912, 49.935941979000127 ], [ -124.837164367999975, 49.935850096000181 ], [ -124.838000029999989, 49.93583685300009 ], [ -124.837989767999943, 49.935567167000073 ], [ -124.840971579999916, 49.935519862000085 ], [ -124.840984209999988, 49.935021851000052 ], [ -124.841139717999965, 49.935030999000055 ], [ -124.844711299999943, 49.93473901000003 ], [ -124.84622070099999, 49.934481208000093 ], [ -124.84731889299999, 49.934445608000111 ], [ -124.848923093999986, 49.934484095000059 ], [ -124.850610489999966, 49.934888614000023 ], [ -124.855054882, 49.93482589300001 ], [ -124.855519816999958, 49.935104167000048 ], [ -124.855494928, 49.936097905000096 ], [ -124.85556950599999, 49.936096711000076 ], [ -124.855579865999971, 49.936366394000061 ], [ -124.856415527999957, 49.936353018000048 ], [ -124.856425890999958, 49.93662270200015 ], [ -124.857261558999937, 49.936609318000095 ], [ -124.857271926999957, 49.936879001000101 ], [ -124.857679317999953, 49.936872475000065 ], [ -124.857825990999942, 49.93696790700001 ], [ -124.85853572900001, 49.937126507000094 ], [ -124.858535809000017, 49.937128598000108 ], [ -124.858544465999898, 49.93712845900005 ], [ -124.85937917399994, 49.937314979000071 ], [ -124.859381863999928, 49.937384883000036 ], [ -124.85967124699998, 49.937380242000103 ], [ -124.860222625999953, 49.937503443000011 ], [ -124.860227928999947, 49.937641161000052 ], [ -124.860555784000013, 49.937635900000096 ], [ -124.861073846999915, 49.937893360000039 ], [ -124.861074001999953, 49.93789743300006 ], [ -124.861081791999965, 49.937897308000046 ], [ -124.861166106999946, 49.937939210000131 ], [ -124.861912546, 49.93795810700005 ], [ -124.861920083999934, 49.938153699000111 ], [ -124.862755774999982, 49.938140276000112 ], [ -124.86276617499999, 49.938409958000108 ], [ -124.863184021999984, 49.938403244000028 ], [ -124.863194425999936, 49.93867292500002 ], [ -124.863612274999966, 49.938666211000061 ], [ -124.86363308599999, 49.939205574000056 ], [ -124.864050939999956, 49.939198857000022 ], [ -124.864082167, 49.940007901000058 ], [ -124.863784926999983, 49.940012680000095 ], [ -124.863664305999947, 49.940014619000053 ], [ -124.86368827699998, 49.940635814000039 ], [ -124.863716339999954, 49.941363026000047 ], [ -124.863333025999935, 49.941369186000031 ], [ -124.86332636499999, 49.941636921000047 ], [ -124.86390910199999, 49.94164295900007 ], [ -124.863897661999928, 49.94210308400006 ], [ -124.864463609999959, 49.942108946000097 ], [ -124.864453352999988, 49.942521605000138 ], [ -124.864948816999942, 49.942526735000115 ], [ -124.864937821999959, 49.942969318000088 ], [ -124.865315529999918, 49.94297322600007 ], [ -124.865312654999983, 49.943089 ], [ -124.866649501999945, 49.943102823000139 ], [ -124.866640703999948, 49.943267204000115 ], [ -124.866525407999944, 49.94351220000005 ], [ -124.866133809999923, 49.94385969000006 ], [ -124.86505269599999, 49.944380908000028 ], [ -124.864676501999938, 49.944728410000025 ], [ -124.86436348699999, 49.945309491000039 ], [ -124.864371407999954, 49.946199610000072 ], [ -124.864281910999949, 49.946407604000058 ], [ -124.863637898999968, 49.947102612000066 ], [ -124.863185610999935, 49.948018392000066 ], [ -124.862789193999973, 49.948572387000084 ], [ -124.862719982999948, 49.948934093000069 ], [ -124.862384288999934, 49.949271695000093 ], [ -124.86120499899998, 49.949433997000064 ], [ -124.860633910999965, 49.949416893000077 ], [ -124.860519402999955, 49.949347105000079 ], [ -124.859418302, 49.947907312000019 ], [ -124.858278501999905, 49.94688180800005 ], [ -124.857728406999954, 49.945631386000038 ], [ -124.85628428699998, 49.943990693000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6854334", "BldgCostT": "4463334", "sL_LossRatio": "0.983471906756409", "sL_AssetLoss": "5758.68", "sL_BldgLoss": "5663.5", "sL_StrLoss": "5343.18", "sL_NStrLoss": "320.32", "sL_ContLoss": "95.18", "geom_point": "0101000020E6100000E9FFA01E302D5FC0F193931EC0FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.703516312999952, 49.976752621000074 ], [ -124.703537389999909, 49.976010478000063 ], [ -124.702930437999925, 49.976003307000035 ], [ -124.703032593000032, 49.972407603000093 ], [ -124.707056025999961, 49.972455078000117 ], [ -124.70774157799994, 49.972463153000014 ], [ -124.708607423999965, 49.972473345000083 ], [ -124.708597832999914, 49.972812415000057 ], [ -124.708586431999919, 49.973215492000037 ], [ -124.709193347999957, 49.973222632000017 ], [ -124.709091675999929, 49.976818338000058 ], [ -124.707506426999942, 49.976799681000102 ], [ -124.703516312999952, 49.976752621000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26111206", "BldgCostT": "17117039", "sL_LossRatio": "0.796113606131495", "sL_AssetLoss": "11990.55", "sL_BldgLoss": "9545.84", "sL_StrLoss": "8150.54", "sL_NStrLoss": "1395.3", "sL_ContLoss": "2444.71", "geom_point": "0101000020E6100000E68D407A922E5FC01C36990AD4FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.72954457499992, 49.977712142 ], [ -124.729525233999951, 49.977172742000057 ], [ -124.729910274999924, 49.977167000000101 ], [ -124.729913877999977, 49.977037455000072 ], [ -124.72877301699998, 49.977024248000156 ], [ -124.727728532999947, 49.977012145000096 ], [ -124.727750232999966, 49.976233535000098 ], [ -124.726291025999956, 49.976216610000094 ], [ -124.726291800999945, 49.976188857000054 ], [ -124.726253225999926, 49.976188409000073 ], [ -124.726261750999953, 49.975882866000092 ], [ -124.725600720999978, 49.975875193000029 ], [ -124.725626946999938, 49.974935753000061 ], [ -124.725570278999925, 49.974935094000024 ], [ -124.725572487999941, 49.974855975000025 ], [ -124.724875256999923, 49.974847877000109 ], [ -124.724929, 49.972923688 ], [ -124.72438919699999, 49.972931715000065 ], [ -124.724383169999939, 49.973147465000054 ], [ -124.718808232999933, 49.973082524000077 ], [ -124.718831128999952, 49.972266627000046 ], [ -124.71890913099999, 49.969486791000101 ], [ -124.724483628999948, 49.969551728000035 ], [ -124.724426909999949, 49.971581936000071 ], [ -124.724966695999939, 49.971573909000043 ], [ -124.724975681999979, 49.971252147000108 ], [ -124.726043005999983, 49.971264542000071 ], [ -124.726057381999965, 49.970749309000041 ], [ -124.725471135999939, 49.970742502000022 ], [ -124.725500671999924, 49.969684436000051 ], [ -124.725634188999948, 49.969824011000085 ], [ -124.726719218999975, 49.970657587000105 ], [ -124.727696220999974, 49.97126866500011 ], [ -124.728408524999949, 49.971823674000099 ], [ -124.728577325999979, 49.972020680000057 ], [ -124.728829213, 49.972484973000086 ], [ -124.729280094999936, 49.973466751000061 ], [ -124.729343776999912, 49.973683300000125 ], [ -124.729352626999955, 49.973699035000074 ], [ -124.729393224999939, 49.973771216000038 ], [ -124.729507182999924, 49.973973853000125 ], [ -124.72981178199997, 49.974301092000047 ], [ -124.730085320999962, 49.974441819000113 ], [ -124.730432622999928, 49.974536685000061 ], [ -124.730521192999959, 49.9745610760001 ], [ -124.730574847999961, 49.974566293000095 ], [ -124.732096581999983, 49.97471417900006 ], [ -124.732720899999947, 49.974725885000026 ], [ -124.73541988699999, 49.974382026000079 ], [ -124.73556572399994, 49.974343164000054 ], [ -124.73550150299999, 49.97666183900008 ], [ -124.73547797599997, 49.977511177000082 ], [ -124.735395494999963, 49.977510227 ], [ -124.735428724999977, 49.978433780000032 ], [ -124.735010500999948, 49.978440037000084 ], [ -124.735029903999958, 49.978979435000014 ], [ -124.733356991999983, 49.979004449000037 ], [ -124.733318222999955, 49.977925651000085 ], [ -124.732481784999919, 49.977938150000092 ], [ -124.732472097999946, 49.977668450000053 ], [ -124.732053880999942, 49.977674696000165 ], [ -124.732063564999933, 49.97794439500008 ], [ -124.731804080999936, 49.977948270000084 ], [ -124.731708556999976, 49.981386461000042 ], [ -124.728486270999952, 49.981349183000063 ], [ -124.726132602999911, 49.981321893000057 ], [ -124.726232941999953, 49.977726194000148 ], [ -124.728724566999944, 49.97775508200003 ], [ -124.729127840999965, 49.977759752000097 ], [ -124.729126357999988, 49.977718378000077 ], [ -124.72954457499992, 49.977712142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6665833", "BldgCostT": "4333333", "sL_LossRatio": "0.997518838046119", "sL_AssetLoss": "3422.993", "sL_BldgLoss": "3414.5", "sL_StrLoss": "3392", "sL_NStrLoss": "22.5", "sL_ContLoss": "8.493", "geom_point": "0101000020E61000001DEC4D0CC9315FC06D6814DC59FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.776032486999895, 49.992058472000096 ], [ -124.779273608999986, 49.992094555000051 ], [ -124.779621299999917, 49.992325503000131 ], [ -124.78066738699998, 49.993479095000097 ], [ -124.780618496999963, 49.994037399000071 ], [ -124.780029315999982, 49.994694002000053 ], [ -124.779823596999975, 49.995165396000047 ], [ -124.779087523999976, 49.995239401000049 ], [ -124.779117306000018, 49.9956709900001 ], [ -124.77992610299998, 49.996044094000084 ], [ -124.780058000999972, 49.996222091000035 ], [ -124.779907788999978, 49.996719192000157 ], [ -124.780147219999932, 49.996778998000075 ], [ -124.780991843999985, 49.996809008000099 ], [ -124.780973598999978, 49.99749192900007 ], [ -124.776889657999959, 49.997569527000032 ], [ -124.776625944999978, 49.997574381000042 ], [ -124.775392100999966, 49.997560628000116 ], [ -124.775488594999942, 49.993964963000032 ], [ -124.77598120299993, 49.993970456000106 ], [ -124.776032486999895, 49.992058472000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.998552660686389", "sL_AssetLoss": "583.139", "sL_BldgLoss": "582.295", "sL_StrLoss": "577", "sL_NStrLoss": "5.295", "sL_ContLoss": "0.844", "geom_point": "0101000020E6100000E5B1A880A22E5FC0050DFD135C004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.726413281999925, 50.002415816000102 ], [ -124.725796272999958, 50.002129015000087 ], [ -124.72552080399997, 50.001852472000103 ], [ -124.725270903999927, 50.001651516000074 ], [ -124.728019622999909, 50.001683388000089 ], [ -124.730039111999957, 50.001706760000062 ], [ -124.730025202999968, 50.002206458000074 ], [ -124.730655619999951, 50.002213746000081 ], [ -124.730597881, 50.004288965000086 ], [ -124.72893416299992, 50.004304012000034 ], [ -124.728142734999935, 50.004311164000043 ], [ -124.728095963999962, 50.003313511000101 ], [ -124.727900583999912, 50.00321086100012 ], [ -124.727598964999984, 50.003121045000057 ], [ -124.727306788999925, 50.002992662000075 ], [ -124.726413281999925, 50.002415816000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5265167", "BldgCostT": "3421667", "sL_LossRatio": "0.643155955447157", "sL_AssetLoss": "4391.19", "sL_BldgLoss": "2824.22", "sL_StrLoss": "2053.72", "sL_NStrLoss": "770.5", "sL_ContLoss": "1566.97", "geom_point": "0101000020E61000005EEF82B1532D5FC0B2DA99952FFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.708338401000034, 49.984029975000077 ], [ -124.7110722499999, 49.98406210800011 ], [ -124.710970701999912, 49.98765776300008 ], [ -124.710687751999913, 49.98765444100011 ], [ -124.70539401299996, 49.987592142000054 ], [ -124.705495998999965, 49.983996493000085 ], [ -124.708338401000034, 49.984029975000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70226000", "BldgCostT": "49400000", "sL_LossRatio": "0.994765492453786", "sL_AssetLoss": "2487.34", "sL_BldgLoss": "2474.32", "sL_StrLoss": "1813", "sL_NStrLoss": "661.32", "sL_ContLoss": "13.02", "geom_point": "0101000020E6100000F8D39002152E5FC078E0CE4BE6FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.7216783699999, 49.969419807000101 ], [ -124.721679648999924, 49.96937415700009 ], [ -124.71686659199996, 49.96931798300006 ], [ -124.716967633999928, 49.965722234000097 ], [ -124.720002037999961, 49.965757674000045 ], [ -124.719922520999944, 49.965998707000033 ], [ -124.719732312999952, 49.966268959000061 ], [ -124.719730026999954, 49.966598954000126 ], [ -124.719869928999969, 49.966730961000053 ], [ -124.720151682999955, 49.966873621000062 ], [ -124.720581850999963, 49.967043206000021 ], [ -124.72264038899999, 49.967682029000095 ], [ -124.723297527999975, 49.9678859590001 ], [ -124.72437539399999, 49.968474032000074 ], [ -124.724573624999948, 49.968614825000039 ], [ -124.724939591999913, 49.968988616000033 ], [ -124.725298106999958, 49.969461914000071 ], [ -124.7216783699999, 49.969419807000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17529667", "BldgCostT": "11406667", "sL_LossRatio": "0.798144720190183", "sL_AssetLoss": "14823.64", "sL_BldgLoss": "11831.41", "sL_StrLoss": "10098.01", "sL_NStrLoss": "1733.4", "sL_ContLoss": "2992.23", "geom_point": "0101000020E6100000664904D3BE295FC0D0D67FA50CF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.664748874999987, 49.930735327000058 ], [ -124.664787880999981, 49.929400335000082 ], [ -124.663586812999966, 49.929385701000044 ], [ -124.663631239999958, 49.927866385000101 ], [ -124.662342760999977, 49.927850672000076 ], [ -124.662353121999942, 49.927496655000041 ], [ -124.661985068999968, 49.92749216400005 ], [ -124.662005242999925, 49.926803085000095 ], [ -124.66136338799997, 49.926795249000079 ], [ -124.661397354999934, 49.925635529000047 ], [ -124.66093984499993, 49.925629941000068 ], [ -124.660995414999917, 49.923733176000034 ], [ -124.659389850999958, 49.923713552000031 ], [ -124.659383117999965, 49.923943108000053 ], [ -124.657817113999982, 49.923923945000034 ], [ -124.657819082999964, 49.923981340000118 ], [ -124.655312470999945, 49.924017152000047 ], [ -124.655308224999942, 49.923893197000041 ], [ -124.653814276999981, 49.923874861000129 ], [ -124.653875356999947, 49.921800976000029 ], [ -124.653287287999916, 49.921793752 ], [ -124.653295264999883, 49.921523031000028 ], [ -124.652742582999963, 49.921516239000049 ], [ -124.65274829099999, 49.921322600000025 ], [ -124.651879362, 49.921311916000029 ], [ -124.651882297999947, 49.921212374000099 ], [ -124.650916531999925, 49.921200492 ], [ -124.650919553999984, 49.921098139000023 ], [ -124.64900376599999, 49.921074543000039 ], [ -124.649005618999951, 49.921011833000072 ], [ -124.648291143999955, 49.921003024000093 ], [ -124.648296017999911, 49.920838208000141 ], [ -124.647671829999979, 49.920830509000076 ], [ -124.647677685999923, 49.920632563000026 ], [ -124.647121121999973, 49.920625695000084 ], [ -124.64714698599991, 49.919751843000022 ], [ -124.647141372999926, 49.919751774000112 ], [ -124.647070817, 49.922135618000027 ], [ -124.643831761999976, 49.922095592000119 ], [ -124.643827792999986, 49.922229399000052 ], [ -124.63825918399999, 49.922160362000106 ], [ -124.638285616999966, 49.921273104000072 ], [ -124.637526233999949, 49.921263668000066 ], [ -124.63776437599995, 49.921047249000068 ], [ -124.637812293999929, 49.921003694000049 ], [ -124.638186195999936, 49.920747593000051 ], [ -124.63869730499998, 49.920515589000026 ], [ -124.63913099200002, 49.920354604000174 ], [ -124.639743713999962, 49.920216493000126 ], [ -124.640869020999915, 49.920074680000027 ], [ -124.642099878999886, 49.919919557000071 ], [ -124.644479512999936, 49.919619597000057 ], [ -124.644692691999978, 49.919567413000102 ], [ -124.644824498, 49.919489885000075 ], [ -124.644843945999952, 49.919450337000093 ], [ -124.644891200999922, 49.919353989000108 ], [ -124.64486220000002, 49.917968249000069 ], [ -124.644858529999979, 49.917792560000116 ], [ -124.644857781999974, 49.91775734400008 ], [ -124.645142219999968, 49.917792318000124 ], [ -124.645371921, 49.917795172000091 ], [ -124.645659479999964, 49.917724076000169 ], [ -124.646082188999941, 49.91755662700011 ], [ -124.646554509999959, 49.917406876000044 ], [ -124.646986200999933, 49.917407720000014 ], [ -124.647205891999988, 49.917464384000041 ], [ -124.647354387999911, 49.917529163000097 ], [ -124.648878623999948, 49.91882049600008 ], [ -124.649045012999935, 49.9191274020001 ], [ -124.649067742999975, 49.919181448000089 ], [ -124.649170874999967, 49.919419388000037 ], [ -124.649376626999953, 49.919631469000073 ], [ -124.649523528999936, 49.919781650000061 ], [ -124.649595446999967, 49.919825231000111 ], [ -124.649791987999947, 49.919848265000084 ], [ -124.650043813999972, 49.919861150000038 ], [ -124.650367105999976, 49.919908627000062 ], [ -124.65067605899999, 49.919947395000079 ], [ -124.650900023999966, 49.91996084100002 ], [ -124.65102593899995, 49.919967280999984 ], [ -124.651277347999894, 49.919971162000103 ], [ -124.65158455299995, 49.919973890000051 ], [ -124.651821569999939, 49.919969050000105 ], [ -124.652128286999968, 49.919962802000029 ], [ -124.652406665999962, 49.919948104000056 ], [ -124.652658096999986, 49.919952003000049 ], [ -124.652895111999953, 49.919947162 ], [ -124.653202281999981, 49.919949898000056 ], [ -124.653481589999899, 49.919953197000012 ], [ -124.653802700999961, 49.919955660000042 ], [ -124.654095932999951, 49.919958664000077 ], [ -124.654333419999901, 49.919962829 ], [ -124.654640589999971, 49.919965561000041 ], [ -124.654976096, 49.919976738000102 ], [ -124.655284580999975, 49.920006480000048 ], [ -124.655497232999949, 49.920074213000099 ], [ -124.655712986999959, 49.920204982000058 ], [ -124.655872543999976, 49.920327868000093 ], [ -124.656103151000011, 49.920476342000015 ], [ -124.656275281999967, 49.920571934000058 ], [ -124.656391253999971, 49.920659689000054 ], [ -124.656579568999945, 49.920800023000027 ], [ -124.656710373999928, 49.920905460000064 ], [ -124.656884296999962, 49.921037076000104 ], [ -124.657042964999974, 49.921141949000109 ], [ -124.657200304999932, 49.921219844000056 ], [ -124.657429571999955, 49.921341314000102 ], [ -124.657514048999985, 49.92136708600006 ], [ -124.657737470999962, 49.921381874000105 ], [ -124.658044127999986, 49.9213865050001 ], [ -124.6583508, 49.921391101000033 ], [ -124.65864352299991, 49.92139591000003 ], [ -124.65892233699999, 49.921400918000074 ], [ -124.659117571999985, 49.921407112000097 ], [ -124.659341915999917, 49.921448877000053 ], [ -124.659924853999883, 49.921791329 ], [ -124.660096605999939, 49.921923798000151 ], [ -124.660211406999935, 49.922021077000096 ], [ -124.660428005999975, 49.922242852000096 ], [ -124.660456804999967, 49.92226943900004 ], [ -124.660773638999927, 49.922570742000055 ], [ -124.661115851999924, 49.922799681000086 ], [ -124.661273056999946, 49.922914363000096 ], [ -124.661446052999977, 49.923082792000109 ], [ -124.661605395999942, 49.923260394000103 ], [ -124.66170599900002, 49.923348914000044 ], [ -124.661924437, 49.923624624000084 ], [ -124.661997475999939, 49.923722520000091 ], [ -124.6620872069999, 49.923901119000057 ], [ -124.662176350999971, 49.924061743000053 ], [ -124.662585103999916, 49.924604586 ], [ -124.662687552999927, 49.924747009000107 ], [ -124.662790264999941, 49.924898461000041 ], [ -124.66286299599993, 49.924987372000054 ], [ -124.663037865999954, 49.925209727000045 ], [ -124.663302777999917, 49.925619697000108 ], [ -124.663465231999936, 49.925887188000047 ], [ -124.663538243999966, 49.925985094000083 ], [ -124.663728567999925, 49.926252224000081 ], [ -124.663830399999981, 49.92637668400004 ], [ -124.664049824999921, 49.926679361000033 ], [ -124.664182914999984, 49.92690230900007 ], [ -124.664252006999973, 49.926997682 ], [ -124.664305428999938, 49.927062816000053 ], [ -124.666136860999984, 49.929930460000037 ], [ -124.666785542999932, 49.93070813900006 ], [ -124.66684190499997, 49.930760798000044 ], [ -124.664748874999987, 49.930735327000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5626539", "BldgCostT": "3880372", "sL_LossRatio": "0.996847619215971", "sL_AssetLoss": "848.565", "sL_BldgLoss": "845.89", "sL_StrLoss": "821.17", "sL_NStrLoss": "24.72", "sL_ContLoss": "2.675", "geom_point": "0101000020E6100000ED2AC50A0E2D5FC0CD81D4DCC0FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.701950971999963, 49.95679303600005 ], [ -124.703155725999963, 49.95680728500006 ], [ -124.704682411999968, 49.957981172000096 ], [ -124.706268353999945, 49.959116746000099 ], [ -124.707339379999922, 49.95993238100008 ], [ -124.707435045999887, 49.959998246000083 ], [ -124.707422128999923, 49.960454619000053 ], [ -124.701848765999912, 49.960388816000055 ], [ -124.701950971999963, 49.95679303600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.908740218229913", "sL_AssetLoss": "9.073", "sL_BldgLoss": "8.245", "sL_StrLoss": "0.915", "sL_NStrLoss": "7.33", "sL_ContLoss": "0.828", "geom_point": "0101000020E610000050741BDC6F2C5FC006E24C7E51F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.693332581999982, 49.948386024000087 ], [ -124.693379688999926, 49.946739092000044 ], [ -124.693823469999955, 49.946900327000073 ], [ -124.695030739999979, 49.947539319000043 ], [ -124.69554612899999, 49.947927554000067 ], [ -124.695617708, 49.94798048500008 ], [ -124.69589380399999, 49.948300253000049 ], [ -124.695954985999947, 49.948417234000075 ], [ -124.693332581999982, 49.948386024000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.992714441320923", "sL_AssetLoss": "1533.17", "sL_BldgLoss": "1522", "sL_StrLoss": "1441", "sL_NStrLoss": "81", "sL_ContLoss": "11.17", "geom_point": "0101000020E6100000BB385C71522C5FC0DB8F56ADB3FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.689710807999973, 49.972687406000027 ], [ -124.694292693999955, 49.972742016000083 ], [ -124.694189848999912, 49.976337710000081 ], [ -124.692841234999904, 49.976321656000074 ], [ -124.692789493999953, 49.976256208000024 ], [ -124.690649896999957, 49.974488697000012 ], [ -124.690731195999973, 49.974028703000059 ], [ -124.689897420999955, 49.972899303000062 ], [ -124.689710807999973, 49.972687406000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4387917", "BldgCostT": "2816667", "sL_LossRatio": "0.664277331671187", "sL_AssetLoss": "1848.213", "sL_BldgLoss": "1227.726", "sL_StrLoss": "986.948", "sL_NStrLoss": "240.778", "sL_ContLoss": "620.487", "geom_point": "0101000020E610000010DA6102AD2B5FC033F2E46057FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.681169790999945, 49.965002104000106 ], [ -124.680602184999927, 49.964316994000079 ], [ -124.680172909999897, 49.964017906000052 ], [ -124.679722097999914, 49.963871212000051 ], [ -124.679387104999975, 49.963861062000014 ], [ -124.679439759999951, 49.962040289000122 ], [ -124.685013290999976, 49.962107231000047 ], [ -124.684909740999984, 49.965702967 ], [ -124.684247251999977, 49.965695025000088 ], [ -124.684018732999931, 49.965415332000113 ], [ -124.683724093999942, 49.965054705000064 ], [ -124.683495390999923, 49.964932300000058 ], [ -124.682867400999953, 49.964905206000012 ], [ -124.682501809999948, 49.96523418500005 ], [ -124.682404788, 49.965604506000048 ], [ -124.682219262999965, 49.965670688000031 ], [ -124.68153212, 49.965662434000087 ], [ -124.681369417999946, 49.965539001000074 ], [ -124.681169790999945, 49.965002104000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4768750", "BldgCostT": "3025000", "sL_LossRatio": "0.996151516333541", "sL_AssetLoss": "3486.568", "sL_BldgLoss": "3473.15", "sL_StrLoss": "3443", "sL_NStrLoss": "30.15", "sL_ContLoss": "13.418", "geom_point": "0101000020E61000000BC181FB072C5FC061CF8D9FFCFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.686747296999954, 49.969410013000115 ], [ -124.68464010699995, 49.966975992000087 ], [ -124.68455523599998, 49.966784329000085 ], [ -124.689527510999966, 49.966843825000034 ], [ -124.689503169999938, 49.967691922000014 ], [ -124.690038444, 49.967698314000096 ], [ -124.689935276999975, 49.971294028000067 ], [ -124.688468297, 49.971276506000059 ], [ -124.688254382999929, 49.971033591000051 ], [ -124.687742482999951, 49.970312904000082 ], [ -124.686747296999954, 49.969410013000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14740416", "BldgCostT": "8691666", "sL_LossRatio": "0.988165281183022", "sL_AssetLoss": "3112.03", "sL_BldgLoss": "3075.2", "sL_StrLoss": "2796.6", "sL_NStrLoss": "278.6", "sL_ContLoss": "36.83", "geom_point": "0101000020E6100000AA54BBECB82D5FC03B6C855DD2FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.711340974999956, 49.990852895000074 ], [ -124.710781208999933, 49.99077028500006 ], [ -124.70998939699993, 49.99046829300007 ], [ -124.709356166999939, 49.990153782000036 ], [ -124.709411388999939, 49.988201101000087 ], [ -124.711327776999951, 49.98822361300013 ], [ -124.714988158999986, 49.988266517000056 ], [ -124.71491550099995, 49.990846874000056 ], [ -124.71914656099996, 49.990896316000025 ], [ -124.719055077999897, 49.994155541000083 ], [ -124.719045633999954, 49.994491945000085 ], [ -124.718397462999988, 49.994484382000088 ], [ -124.717708511999945, 49.994095798000039 ], [ -124.717400207999958, 49.993668489000122 ], [ -124.71617510199998, 49.992966401000075 ], [ -124.71397962599994, 49.992046404000085 ], [ -124.71220370399999, 49.991154808000076 ], [ -124.711340974999956, 49.990852895000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5353000", "BldgCostT": "3220000", "sL_LossRatio": "0.983852143926257", "sL_AssetLoss": "1516.61", "sL_BldgLoss": "1492.12", "sL_StrLoss": "1345.8", "sL_NStrLoss": "146.32", "sL_ContLoss": "24.49", "geom_point": "0101000020E6100000A0C510080D2B5FC009B37D863FFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.671380777999957, 49.96409155200007 ], [ -124.669869516999981, 49.963840686000026 ], [ -124.669930256999947, 49.961755351000129 ], [ -124.675503739999968, 49.961822776000083 ], [ -124.675440154999976, 49.964014996000081 ], [ -124.675144794999937, 49.964023636000078 ], [ -124.674868240999956, 49.963921094000028 ], [ -124.674446238999934, 49.963933364000056 ], [ -124.671806135999987, 49.963962520000067 ], [ -124.671380777999957, 49.96409155200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116816916", "BldgCostT": "79056666", "sL_LossRatio": "0.95611887522381", "sL_AssetLoss": "24021.49", "sL_BldgLoss": "22967.4", "sL_StrLoss": "21417.2", "sL_NStrLoss": "1550.2", "sL_ContLoss": "1054.09", "geom_point": "0101000020E610000011D2A62CBB2B5FC00DD7F6B867F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.686005307999963, 49.957911611000071 ], [ -124.686079086999925, 49.955347136000114 ], [ -124.685642752999954, 49.955341908000079 ], [ -124.685648221999941, 49.955151891000106 ], [ -124.684402792999919, 49.955169986000037 ], [ -124.684355739999916, 49.953821452000014 ], [ -124.685687062999989, 49.953802108000097 ], [ -124.685727669999906, 49.952390901000051 ], [ -124.683789965999921, 49.952367668000065 ], [ -124.683841167999958, 49.950590799000118 ], [ -124.683406841999926, 49.95059710500005 ], [ -124.683397438999961, 49.950327398000127 ], [ -124.682991455999968, 49.950333290000103 ], [ -124.682965296999939, 49.951240552000115 ], [ -124.677393093999953, 49.951173506000075 ], [ -124.677495618999956, 49.947632418000111 ], [ -124.674175190999946, 49.94759233000007 ], [ -124.674208709999959, 49.946437440000047 ], [ -124.673976154999977, 49.946434628000041 ], [ -124.674078705999989, 49.942901430000056 ], [ -124.671934398999895, 49.942875484000069 ], [ -124.67203891900003, 49.939279648000124 ], [ -124.67348197599992, 49.939297113000052 ], [ -124.673541471999926, 49.937247699000082 ], [ -124.673325632999976, 49.937250814000052 ], [ -124.673334976999925, 49.937520523000067 ], [ -124.670827678999927, 49.93755667800005 ], [ -124.670818350999937, 49.937286969000112 ], [ -124.670400469999962, 49.937292989000071 ], [ -124.670391142999947, 49.937023280000062 ], [ -124.669973263999935, 49.93702929800007 ], [ -124.669963939999889, 49.936759589000076 ], [ -124.669546064999921, 49.936765606000058 ], [ -124.669527419999923, 49.936226186000098 ], [ -124.669109548000023, 49.936232201000031 ], [ -124.669081590999966, 49.935423072000098 ], [ -124.669499456999972, 49.935417057000102 ], [ -124.66947149399999, 49.934607926000048 ], [ -124.670725067999953, 49.934589872000068 ], [ -124.67071574000002, 49.934320161000095 ], [ -124.671803174000019, 49.934304488000102 ], [ -124.672822327999967, 49.934790122000017 ], [ -124.672823691999923, 49.934829459000134 ], [ -124.672885414999911, 49.934828568000107 ], [ -124.67331070100002, 49.935144324000085 ], [ -124.673613065999959, 49.935429481000043 ], [ -124.673683982999947, 49.935526658000036 ], [ -124.67371547599997, 49.936435656000064 ], [ -124.674084845, 49.936430324000092 ], [ -124.674491531999962, 49.937465275000136 ], [ -124.675016941999942, 49.938595553000042 ], [ -124.675836554999975, 49.940358561000103 ], [ -124.676690583999942, 49.942195416000118 ], [ -124.677051157999983, 49.942970942 ], [ -124.677329526999955, 49.943569642000057 ], [ -124.67883944, 49.946186741000091 ], [ -124.67912279799999, 49.946410464000074 ], [ -124.679436359999897, 49.946601292000082 ], [ -124.679584852999966, 49.946598487000102 ], [ -124.679747562000017, 49.946574389000091 ], [ -124.679957493999922, 49.9465983260001 ], [ -124.680264938999954, 49.9466208670001 ], [ -124.680516627999978, 49.946644190000043 ], [ -124.680600221999924, 49.946642997000041 ], [ -124.680628062999958, 49.946642590000074 ], [ -124.680712006999912, 49.946650366000043 ], [ -124.680795580999984, 49.946649151000059 ], [ -124.681088172, 49.946644909000028 ], [ -124.681143904999914, 49.946644103000075 ], [ -124.681366188999945, 49.946622885000103 ], [ -124.682031152999969, 49.946505301000109 ], [ -124.682155308999967, 49.946467538000057 ], [ -124.682789606999989, 49.946269445000055 ], [ -124.683895196999956, 49.945596791000042 ], [ -124.68415298399999, 49.945395152000067 ], [ -124.684944399999907, 49.944906934000045 ], [ -124.68528548299993, 49.944695102000033 ], [ -124.685574576999926, 49.944591948000038 ], [ -124.685851660999901, 49.944542951000052 ], [ -124.686185993999956, 49.944538080000044 ], [ -124.686479170999959, 49.944551802000049 ], [ -124.686981033999984, 49.944553502000112 ], [ -124.68727483, 49.944585220000114 ], [ -124.687810196999919, 49.944748330000024 ], [ -124.688176512999974, 49.94485992900006 ], [ -124.688387643999974, 49.944919804000065 ], [ -124.68858491, 49.944979892000113 ], [ -124.688909755999973, 49.945101099000091 ], [ -124.689207028999959, 49.945231689000117 ], [ -124.689241032999945, 49.945246087000058 ], [ -124.689229511999926, 49.945647610000023 ], [ -124.687346369999943, 49.945625087000074 ], [ -124.68733645599994, 49.945970156000072 ], [ -124.686574510999918, 49.945961034000071 ], [ -124.686562948999963, 49.946363174000084 ], [ -124.686532399999976, 49.946362809000057 ], [ -124.686528073999966, 49.946513230000065 ], [ -124.687897311999933, 49.946529619000039 ], [ -124.687861615999978, 49.94777235300004 ], [ -124.69278110499999, 49.947831095000083 ], [ -124.692678196999978, 49.95142691000008 ], [ -124.692664277999967, 49.951426743000127 ], [ -124.692610143, 49.953318080000052 ], [ -124.693852604999989, 49.95333288100008 ], [ -124.69374976899995, 49.956928669000021 ], [ -124.69367293199997, 49.956927754000041 ], [ -124.69364242799999, 49.957994169000045 ], [ -124.691578593999964, 49.957969574000124 ], [ -124.691578345000025, 49.957978220000079 ], [ -124.686005307999963, 49.957911611000071 ] ], [ [ -124.685652138999927, 49.95501573700006 ], [ -124.685655988999912, 49.954881934000078 ], [ -124.685647471999957, 49.954882058000088 ], [ -124.685652138999927, 49.95501573700006 ] ], [ [ -124.68229185199999, 49.947635413000107 ], [ -124.68231324199995, 49.946893867 ], [ -124.68225890599993, 49.946893214000056 ], [ -124.682241244999901, 49.947505480000132 ], [ -124.67975227, 49.947475547000067 ], [ -124.679748533999941, 49.947604827000077 ], [ -124.68229185199999, 49.947635413000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3771667", "BldgCostT": "2391667", "sL_LossRatio": "0.626643141529565", "sL_AssetLoss": "1623.795", "sL_BldgLoss": "1017.54", "sL_StrLoss": "781.26", "sL_NStrLoss": "236.28", "sL_ContLoss": "606.255", "geom_point": "0101000020E6100000E0C95D3A1C305FC092D0123B85FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.749955985999961, 49.962824248000096 ], [ -124.750288604999966, 49.96282803800004 ], [ -124.751849895999953, 49.963362788000033 ], [ -124.752161421999986, 49.963500902000135 ], [ -124.752677496999965, 49.96390679400006 ], [ -124.752901393999963, 49.964308493000068 ], [ -124.753491405999924, 49.964785611000103 ], [ -124.754074901999971, 49.965523289000025 ], [ -124.754689869999936, 49.966474991000034 ], [ -124.749857545999987, 49.966420042000067 ], [ -124.749955985999961, 49.962824248000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72341605", "BldgCostT": "46027491", "sL_LossRatio": "0.926556735721285", "sL_AssetLoss": "27071.904", "sL_BldgLoss": "25083.655", "sL_StrLoss": "24158.685", "sL_NStrLoss": "924.97", "sL_ContLoss": "1988.249", "geom_point": "0101000020E6100000916D4BAA97305FC02109EB9401FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.75419191, 49.995448286000055 ], [ -124.754279167999925, 49.992252024000038 ], [ -124.754259011999949, 49.992251795000037 ], [ -124.754357160999987, 49.988656123000084 ], [ -124.757980604999901, 49.988697175000013 ], [ -124.757958058, 49.988078732000091 ], [ -124.758376357999921, 49.988072392000106 ], [ -124.758356687999964, 49.987533002000106 ], [ -124.758774984999917, 49.987526660000107 ], [ -124.758765147999938, 49.987256964000082 ], [ -124.758346852999978, 49.987263306000017 ], [ -124.758307513999952, 49.986184526000052 ], [ -124.757052657999949, 49.986203542000034 ], [ -124.757023177999912, 49.985394456000087 ], [ -124.757441454999977, 49.985388119000099 ], [ -124.757421796999907, 49.984848728000031 ], [ -124.75784007, 49.984842391000058 ], [ -124.757838261999893, 49.984792777000081 ], [ -124.757521902999954, 49.984789197000069 ], [ -124.757532705999921, 49.984392288000059 ], [ -124.75648028799999, 49.984380371000015 ], [ -124.756516912, 49.983036090000063 ], [ -124.755100818999949, 49.98302003900006 ], [ -124.755131533999972, 49.981893851000045 ], [ -124.754574068999915, 49.981887528000058 ], [ -124.754603772999985, 49.980798860000085 ], [ -124.752983917, 49.980780469000088 ], [ -124.752983175999958, 49.98080763300009 ], [ -124.750059568999987, 49.980774380000092 ], [ -124.74995431399995, 49.980705406000077 ], [ -124.749434393999962, 49.980605702000048 ], [ -124.748880931999949, 49.980760952000033 ], [ -124.747407263999932, 49.980744146000092 ], [ -124.747504355999951, 49.977205625000082 ], [ -124.743123319999967, 49.977155543000059 ], [ -124.743222310999897, 49.97355980800009 ], [ -124.745602935999983, 49.97358704400007 ], [ -124.748797339999953, 49.973623509000028 ], [ -124.748715478999912, 49.976610307000023 ], [ -124.748700355999944, 49.977162048000075 ], [ -124.749227861999913, 49.977168060000061 ], [ -124.749445103999932, 49.97717053600006 ], [ -124.74944584799999, 49.977143372000086 ], [ -124.75337672299996, 49.97718808900003 ], [ -124.753343549999954, 49.976275434000115 ], [ -124.756321838999952, 49.976230372000074 ], [ -124.756393881999912, 49.973585737000128 ], [ -124.756462561999967, 49.9735865150001 ], [ -124.75648292299995, 49.972838937000084 ], [ -124.760479592999957, 49.972884150000034 ], [ -124.760505995999949, 49.973611394000088 ], [ -124.76074119899998, 49.973948899000071 ], [ -124.761069105, 49.974115607000044 ], [ -124.76116158799999, 49.974347704000081 ], [ -124.760294592999912, 49.974658204000022 ], [ -124.759067099999967, 49.974676697000056 ], [ -124.75899741299996, 49.975046994000081 ], [ -124.75909941, 49.975162389000097 ], [ -124.759506205999926, 49.975236398000092 ], [ -124.760650400999907, 49.975263496000075 ], [ -124.761419913999987, 49.976071008000154 ], [ -124.761242588999949, 49.976568088000114 ], [ -124.761039106999974, 49.976751789000119 ], [ -124.760391200999933, 49.976959695000048 ], [ -124.760146415999898, 49.97714199200005 ], [ -124.75983739599999, 49.977443888000103 ], [ -124.759789697999935, 49.977660405000101 ], [ -124.759933909999958, 49.977792885000056 ], [ -124.76054428799992, 49.977721697000057 ], [ -124.760924491999916, 49.977770109000033 ], [ -124.761506602999944, 49.978066307000084 ], [ -124.762406783999964, 49.978304206000068 ], [ -124.763383522999973, 49.97830840400016 ], [ -124.763775792999979, 49.97797799600005 ], [ -124.764186501999959, 49.978143197000051 ], [ -124.764138803999955, 49.978368295000074 ], [ -124.763651605999954, 49.978402387000088 ], [ -124.763731691999965, 49.978680213000118 ], [ -124.763373080999955, 49.978748493000055 ], [ -124.763390203999933, 49.978865307000078 ], [ -124.763954997000013, 49.979405090000107 ], [ -124.76383568599999, 49.979614398000109 ], [ -124.76329781699998, 49.979793903000044 ], [ -124.762513611999907, 49.979661405000058 ], [ -124.76213870299992, 49.979748293000085 ], [ -124.761234423999923, 49.979788202000023 ], [ -124.760863183999973, 49.979910694000104 ], [ -124.760730616000018, 49.980111507000096 ], [ -124.760750802999922, 49.980307991000082 ], [ -124.761624190999896, 49.980889103000052 ], [ -124.762351601999953, 49.980994485000046 ], [ -124.762440391999931, 49.981109897000096 ], [ -124.762488404999914, 49.981668102000114 ], [ -124.762207081999961, 49.981608300000062 ], [ -124.761639503999973, 49.981716609000081 ], [ -124.761601209999966, 49.981816286000083 ], [ -124.761833417999966, 49.982082602000041 ], [ -124.761261877, 49.982468595000078 ], [ -124.761268793999989, 49.982647999000093 ], [ -124.761815301999931, 49.982739186000082 ], [ -124.762092007999968, 49.982662287000082 ], [ -124.762447290999916, 49.982810407000024 ], [ -124.763132615999922, 49.982890092000019 ], [ -124.764287613999926, 49.983573692000071 ], [ -124.764913585999963, 49.983519593000011 ], [ -124.765574697999952, 49.983672013000117 ], [ -124.76700889199995, 49.984368491000048 ], [ -124.767072612999982, 49.984943802000039 ], [ -124.767450606999901, 49.985369691000116 ], [ -124.76751840799993, 49.985701489000114 ], [ -124.768242589999915, 49.986031889000031 ], [ -124.768597218999972, 49.986584503000131 ], [ -124.768779506, 49.987337892000042 ], [ -124.76908209599999, 49.987657015000138 ], [ -124.769364314999947, 49.987723906000092 ], [ -124.769666702999956, 49.987567206000072 ], [ -124.769819476999913, 49.987168396000115 ], [ -124.77005980899996, 49.986922092000043 ], [ -124.770034099999975, 49.986598812000132 ], [ -124.769815110999971, 49.986332408000109 ], [ -124.769849406999953, 49.985747108000076 ], [ -124.77044581199999, 49.985630293000078 ], [ -124.770367111999931, 49.985396700000187 ], [ -124.769868989999964, 49.98511760800006 ], [ -124.769818392, 49.98490250900003 ], [ -124.769912693999913, 49.984801408000124 ], [ -124.770535677999987, 49.984684596000086 ], [ -124.771303499999973, 49.984690310000047 ], [ -124.771630092999942, 49.984838413000041 ], [ -124.771905208999925, 49.985086298000127 ], [ -124.772468198999945, 49.985248585000079 ], [ -124.77287119, 49.985214402000111 ], [ -124.77336241099999, 49.984919606000084 ], [ -124.773712404, 49.984940994000119 ], [ -124.775271595, 49.98562739500003 ], [ -124.775423621999948, 49.98595930600009 ], [ -124.775424297999976, 49.986695588000032 ], [ -124.775105418999914, 49.986755398000128 ], [ -124.774941684999973, 49.986875101000138 ], [ -124.775100725, 49.987128901000112 ], [ -124.77332054599999, 49.987109024000127 ], [ -124.773242039999928, 49.990029704000037 ], [ -124.77225948799996, 49.990018722000059 ], [ -124.772259529999971, 49.990019851000042 ], [ -124.77100458399994, 49.990039018000068 ], [ -124.771003320999952, 49.990004667000093 ], [ -124.767664972999924, 49.989967246000091 ], [ -124.767671284999921, 49.989733496000042 ], [ -124.767068764999976, 49.989726732000094 ], [ -124.767074665999971, 49.989508307000037 ], [ -124.766247146999945, 49.989499011000092 ], [ -124.76625525799993, 49.989199031000084 ], [ -124.766057357999912, 49.98919680700002 ], [ -124.766062664999936, 49.989000566000058 ], [ -124.765379945999939, 49.988992890000119 ], [ -124.765410221, 49.987873745000051 ], [ -124.763481941999885, 49.987852043 ], [ -124.763492698999954, 49.987455030000085 ], [ -124.760448169999933, 49.987501277000106 ], [ -124.760458017999937, 49.987770971 ], [ -124.760876314999919, 49.987764622000036 ], [ -124.760886164999988, 49.98803431600011 ], [ -124.76214106499999, 49.988015259000086 ], [ -124.762170635999979, 49.988824342000093 ], [ -124.764680475999967, 49.988786185000031 ], [ -124.764710087999944, 49.98959526600008 ], [ -124.765128400999956, 49.989588901000033 ], [ -124.765158024, 49.990397984000026 ], [ -124.763903063000015, 49.990417074000064 ], [ -124.763923587999926, 49.990978038000101 ], [ -124.766684629999986, 49.991009088000055 ], [ -124.766587446999935, 49.99460475900004 ], [ -124.762959186000032, 49.994563943000102 ], [ -124.761009830999981, 49.994541964000128 ], [ -124.761033974999961, 49.993652709000095 ], [ -124.759820517999941, 49.99363901000001 ], [ -124.759769628999976, 49.9955114280001 ], [ -124.75419191, 49.995448286000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13720583", "BldgCostT": "7988333", "sL_LossRatio": "0.982537653295748", "sL_AssetLoss": "2823.79", "sL_BldgLoss": "2774.48", "sL_StrLoss": "2474.38", "sL_NStrLoss": "300.1", "sL_ContLoss": "49.31", "geom_point": "0101000020E6100000C67D50BCEF2C5FC0B3165575C5FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.699955795, 49.982474197000087 ], [ -124.699260809999956, 49.981370498000103 ], [ -124.698730702999981, 49.981008712000076 ], [ -124.698163720999929, 49.980756704000093 ], [ -124.698024741999944, 49.980728910000018 ], [ -124.698041127999915, 49.980154398000074 ], [ -124.703616897999893, 49.98022039300011 ], [ -124.703602764999957, 49.980718042000049 ], [ -124.704088911999975, 49.980723782000084 ], [ -124.704053584999926, 49.981968056000099 ], [ -124.704833859999908, 49.981977265000054 ], [ -124.704731824999968, 49.98557292400006 ], [ -124.702151570999931, 49.98554244900005 ], [ -124.701612418999957, 49.984753003000051 ], [ -124.700249216999936, 49.98370330700007 ], [ -124.700007594999988, 49.983203390000092 ], [ -124.699955795, 49.982474197000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108369001", "BldgCostT": "73530001", "sL_LossRatio": "0.966009580880676", "sL_AssetLoss": "112542.89", "sL_BldgLoss": "108717.51", "sL_StrLoss": "93142.01", "sL_NStrLoss": "15575.5", "sL_ContLoss": "3825.38", "geom_point": "0101000020E6100000D6755E194A245FC0BF74498BE9F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.563963242999932, 49.903974458000036 ], [ -124.563892211999985, 49.900299236000173 ], [ -124.561685099999963, 49.900101820000025 ], [ -124.561693796999947, 49.899825279000034 ], [ -124.561423209999987, 49.899821726000106 ], [ -124.561536319999959, 49.896225788000038 ], [ -124.561624915999928, 49.896226952000099 ], [ -124.561605785999973, 49.895634334000086 ], [ -124.561188241999929, 49.895639958000039 ], [ -124.561196945999967, 49.895909684000095 ], [ -124.558691668999955, 49.895943394000071 ], [ -124.558682978999968, 49.895673668000029 ], [ -124.558031476999957, 49.895682425000039 ], [ -124.558031739999976, 49.895688465000035 ], [ -124.558025738999959, 49.895801465000048 ], [ -124.55796282599999, 49.895802095000079 ], [ -124.55796240299999, 49.895747704000051 ], [ -124.557012066999945, 49.895673318000021 ], [ -124.556961947999952, 49.894115989000028 ], [ -124.556127123999914, 49.894134649000129 ], [ -124.556143006999946, 49.894628416000046 ], [ -124.555725469999956, 49.894634020000133 ], [ -124.555734143999956, 49.894903746000082 ], [ -124.55474884299997, 49.894916964000117 ], [ -124.554730585999934, 49.895494706000186 ], [ -124.552380799999966, 49.895310695 ], [ -124.552378286999925, 49.894974916000074 ], [ -124.552365395999928, 49.893246513000051 ], [ -124.553461921999968, 49.893251127000013 ], [ -124.55376399699999, 49.893252405000055 ], [ -124.555166798999949, 49.893256479000094 ], [ -124.557957103999968, 49.893267188000067 ], [ -124.559400202999953, 49.893272696000047 ], [ -124.563543188, 49.893286612000097 ], [ -124.563532686999977, 49.89220271500006 ], [ -124.563515987999892, 49.890385802000054 ], [ -124.563531192999932, 49.888483796000045 ], [ -124.563952101999973, 49.888664705000075 ], [ -124.564624263999931, 49.888953593000039 ], [ -124.564942817999949, 49.889090505000112 ], [ -124.565519000999942, 49.889331887000068 ], [ -124.56857480099994, 49.890612111000067 ], [ -124.569128077999949, 49.890832633000038 ], [ -124.56646188499991, 49.890797771000067 ], [ -124.566476561999963, 49.891251124000171 ], [ -124.568146579999933, 49.89122854700009 ], [ -124.568152258999959, 49.891403756000052 ], [ -124.568228538999932, 49.891416765000088 ], [ -124.568439543999901, 49.891494426000044 ], [ -124.568572827999972, 49.891492623000083 ], [ -124.568574961999957, 49.891558439000036 ], [ -124.568852926999966, 49.891758678000038 ], [ -124.568999080999944, 49.891756699000034 ], [ -124.569004244999945, 49.891915926000152 ], [ -124.569191740999898, 49.892255164000169 ], [ -124.569143439999934, 49.893118464000089 ], [ -124.567857039999964, 49.893131665000084 ], [ -124.56619989399999, 49.893143768000094 ], [ -124.566120172999931, 49.893144845000108 ], [ -124.56615509699999, 49.894223748000073 ], [ -124.566990155999946, 49.894212464000091 ], [ -124.566994553999962, 49.89434822500008 ], [ -124.567830212999922, 49.894355374000106 ], [ -124.56781647599999, 49.893931448000082 ], [ -124.568203896999989, 49.893926208000025 ], [ -124.568208097999985, 49.893792048000073 ], [ -124.573773143999944, 49.89386464600009 ], [ -124.573661001999966, 49.89746060800011 ], [ -124.571616019999979, 49.897433964000051 ], [ -124.571614277999927, 49.897489716000052 ], [ -124.576828354999961, 49.897557576000118 ], [ -124.576716443999914, 49.901153523000076 ], [ -124.576141635999946, 49.901146055000055 ], [ -124.576094908999892, 49.902646735000111 ], [ -124.575734855999926, 49.902642055000065 ], [ -124.575726909, 49.902897243000147 ], [ -124.570160758999947, 49.902824745000018 ], [ -124.570167143999953, 49.902620570000046 ], [ -124.569256602999985, 49.902608684000015 ], [ -124.569255234999929, 49.902652405000055 ], [ -124.568516627999912, 49.902642757000088 ], [ -124.568522593999958, 49.902826730000072 ], [ -124.567909298999908, 49.902835027000052 ], [ -124.567897300999903, 49.903218114000012 ], [ -124.569869175999969, 49.90324387000004 ], [ -124.569756704999989, 49.906839782000084 ], [ -124.565989300999959, 49.906790543000064 ], [ -124.566083145, 49.904104622000034 ], [ -124.563963242999932, 49.903974458000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155011728", "BldgCostT": "104074857", "sL_LossRatio": "0.969191632620856", "sL_AssetLoss": "142577.5", "sL_BldgLoss": "138184.92", "sL_StrLoss": "114309.92", "sL_NStrLoss": "23875", "sL_ContLoss": "4392.58", "geom_point": "0101000020E61000009FAC6AACB1235FC07ADE19AFF1F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.552336124999982, 49.889129173000093 ], [ -124.55233142799996, 49.88750445400008 ], [ -124.55231257399997, 49.886011192000097 ], [ -124.552309404999932, 49.885761077000041 ], [ -124.553140684999988, 49.886033132000136 ], [ -124.55448902199997, 49.886474390000103 ], [ -124.554057325999963, 49.887416714000061 ], [ -124.556525817999955, 49.887771200000074 ], [ -124.55709937799999, 49.887773318000072 ], [ -124.557947868, 49.887776403000025 ], [ -124.557917420999971, 49.886358595000118 ], [ -124.55806608099999, 49.88614560700006 ], [ -124.560746548999987, 49.887287094000023 ], [ -124.563531192999932, 49.888483796000045 ], [ -124.563515987999892, 49.890385802000054 ], [ -124.563532686999977, 49.89220271500006 ], [ -124.563543188, 49.893286612000097 ], [ -124.559400202999953, 49.893272696000047 ], [ -124.557957103999968, 49.893267188000067 ], [ -124.555166798999949, 49.893256479000094 ], [ -124.55376399699999, 49.893252405000055 ], [ -124.553461921999968, 49.893251127000013 ], [ -124.552365395999928, 49.893246513000051 ], [ -124.552357710999971, 49.892249448000022 ], [ -124.552343711999981, 49.890432853000071 ], [ -124.552338523999964, 49.889758496000091 ], [ -124.552337595999958, 49.88964050700006 ], [ -124.552336124999982, 49.889129173000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.982059976888249", "sL_AssetLoss": "527.87", "sL_BldgLoss": "518.4", "sL_StrLoss": "463", "sL_NStrLoss": "55.4", "sL_ContLoss": "9.47", "geom_point": "0101000020E6100000B5D18C87AF225FC0EF9BB11E2DF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.541498357999942, 49.883885158000105 ], [ -124.542967801999978, 49.883904719000057 ], [ -124.542752397999962, 49.884057101000082 ], [ -124.541492690999945, 49.884685193000116 ], [ -124.541315413999953, 49.884742743000075 ], [ -124.5413242299999, 49.884466256000103 ], [ -124.541479763999988, 49.884468327000029 ], [ -124.541498357999942, 49.883885158000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38384583", "BldgCostT": "26208333", "sL_LossRatio": "0.972437455325232", "sL_AssetLoss": "41970", "sL_BldgLoss": "40813.2", "sL_StrLoss": "36028", "sL_NStrLoss": "4785.2", "sL_ContLoss": "1156.8", "geom_point": "0101000020E61000000FF5799423235FC0974A2644CCF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.549158951, 49.895623508000064 ], [ -124.549182339999902, 49.894886240000062 ], [ -124.548999337999987, 49.894883816000053 ], [ -124.54902933399994, 49.893938297000027 ], [ -124.5488418899999, 49.893935814000088 ], [ -124.548862824000011, 49.893276009000068 ], [ -124.548734827999979, 49.893274312000116 ], [ -124.548823366999926, 49.890483744000058 ], [ -124.548156377999973, 49.890474905000069 ], [ -124.548184835999919, 49.88957833100006 ], [ -124.547374505999983, 49.88956758600014 ], [ -124.547402421999962, 49.88868849200005 ], [ -124.547379558999978, 49.888688189000035 ], [ -124.547399853999977, 49.888049101000014 ], [ -124.546776896999944, 49.888040838000066 ], [ -124.546773867999917, 49.88813620100008 ], [ -124.544060932999955, 49.888100171000112 ], [ -124.544051087999918, 49.888079109000074 ], [ -124.543745490999953, 49.886814403000081 ], [ -124.54416549099993, 49.885595305000102 ], [ -124.544377100999938, 49.885250594000134 ], [ -124.544636908999934, 49.885075401000037 ], [ -124.544656281, 49.884823300000086 ], [ -124.5450222959999, 49.884512904000069 ], [ -124.545042586, 49.884242298000068 ], [ -124.545293761999957, 49.883935639000093 ], [ -124.546020466999948, 49.88394528900011 ], [ -124.545818676999929, 49.884434951000081 ], [ -124.545710211999975, 49.884914684000073 ], [ -124.545748590999921, 49.885108559000095 ], [ -124.545833492999989, 49.885195121000095 ], [ -124.545964433, 49.885234650000051 ], [ -124.54612836799997, 49.885199941000018 ], [ -124.546508417999945, 49.884625795000076 ], [ -124.547083941999972, 49.884161245000058 ], [ -124.547517194999926, 49.883883696000105 ], [ -124.54795358399997, 49.883681740000071 ], [ -124.548120938999958, 49.883670460000126 ], [ -124.548298375999934, 49.883691697000089 ], [ -124.548516760999945, 49.883824993000083 ], [ -124.54936079499997, 49.884942404000057 ], [ -124.549535724999942, 49.885043665000069 ], [ -124.550065959000023, 49.885217074000067 ], [ -124.550983849999966, 49.885322743000074 ], [ -124.551061940999929, 49.885610286 ], [ -124.551145947999927, 49.885919438000066 ], [ -124.551113494999939, 49.887510801000126 ], [ -124.551619944999942, 49.887508182000047 ], [ -124.55233142799996, 49.88750445400008 ], [ -124.552336124999982, 49.889129173000093 ], [ -124.552337595999958, 49.88964050700006 ], [ -124.552338523999964, 49.889758496000091 ], [ -124.552343711999981, 49.890432853000071 ], [ -124.552357710999971, 49.892249448000022 ], [ -124.552365395999928, 49.893246513000051 ], [ -124.552378286999925, 49.894974916000074 ], [ -124.552380799999966, 49.895310695 ], [ -124.549158951, 49.895623508000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93802750", "BldgCostT": "63745000", "sL_LossRatio": "0.933029623473852", "sL_AssetLoss": "87566.03", "sL_BldgLoss": "81701.7", "sL_StrLoss": "72963.2", "sL_NStrLoss": "8738.5", "sL_ContLoss": "5864.33", "geom_point": "0101000020E6100000660AC6564A215FC0BD1D02C3C9EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.504038933999965, 49.871300086000133 ], [ -124.504747019999968, 49.871290897000058 ], [ -124.504755841999966, 49.87102093900004 ], [ -124.504030554999943, 49.871030352000062 ], [ -124.504038933999965, 49.871300086000133 ], [ -124.503621587999973, 49.871305501000101 ], [ -124.503629964999973, 49.871575235000101 ], [ -124.50237792199998, 49.871591470000041 ], [ -124.502368575999967, 49.871290257000112 ], [ -124.50246769499995, 49.871247499000042 ], [ -124.503906134999937, 49.870531633000027 ], [ -124.50409575099998, 49.870437229000103 ], [ -124.504437573999951, 49.870267099000031 ], [ -124.505098683999933, 49.870044996000082 ], [ -124.505558000999926, 49.869909102000051 ], [ -124.50638158799994, 49.869610093000084 ], [ -124.507738577999973, 49.86932626600008 ], [ -124.510038717000015, 49.868845090000036 ], [ -124.509644970999972, 49.868544062000062 ], [ -124.509152406999988, 49.868167384000067 ], [ -124.509002722999966, 49.867981904000033 ], [ -124.510274626999944, 49.867269643000036 ], [ -124.510398282999972, 49.86720039900009 ], [ -124.510712814, 49.866861846000113 ], [ -124.511082704999964, 49.867096205000102 ], [ -124.511174290999961, 49.867346900000037 ], [ -124.511442607999967, 49.867496411000104 ], [ -124.512027507999946, 49.867489291000041 ], [ -124.512130577, 49.867417004000089 ], [ -124.513035456999944, 49.867405197000025 ], [ -124.513041317999978, 49.867439393000033 ], [ -124.513520039999918, 49.867406672000065 ], [ -124.51352822699999, 49.867668607000027 ], [ -124.51394553899999, 49.867663158000013 ], [ -124.513970835999956, 49.868472357000016 ], [ -124.514201927999963, 49.868469340000075 ], [ -124.514210790999925, 49.868755413000024 ], [ -124.514910983999926, 49.869349297000021 ], [ -124.514933599999935, 49.870122710000025 ], [ -124.515127201999988, 49.870507187000044 ], [ -124.515744507999955, 49.871074005000018 ], [ -124.516170197999941, 49.871357393000032 ], [ -124.518284692999913, 49.872246111000017 ], [ -124.518613414999948, 49.872512492000098 ], [ -124.518978213999929, 49.872588008000058 ], [ -124.519335302999977, 49.872412808 ], [ -124.519801208, 49.872657696000026 ], [ -124.520136300999951, 49.872663411000062 ], [ -124.520382291000018, 49.872569398000095 ], [ -124.52079560699994, 49.872842884000107 ], [ -124.520961982999964, 49.872858594000043 ], [ -124.521265944999953, 49.872824316000099 ], [ -124.5220648049999, 49.872607980000105 ], [ -124.522066189999961, 49.87263360000005 ], [ -124.522616896999978, 49.872640087000065 ], [ -124.522619005999942, 49.873822796000056 ], [ -124.523712204, 49.873918504000123 ], [ -124.524012199999945, 49.873891995000115 ], [ -124.524961697999942, 49.873656602000047 ], [ -124.525954514999938, 49.873197704000084 ], [ -124.526947895999967, 49.87259141100003 ], [ -124.527254406999987, 49.872446293000046 ], [ -124.52816419799997, 49.872189612000085 ], [ -124.528744483999958, 49.8719680130001 ], [ -124.529026691999931, 49.871886394000107 ], [ -124.529191099999963, 49.871837297000035 ], [ -124.529650785999948, 49.871818303000111 ], [ -124.530220594999889, 49.871835002000118 ], [ -124.531732597999948, 49.871971308000141 ], [ -124.532879024999943, 49.871884106000067 ], [ -124.53325970899999, 49.871853210000047 ], [ -124.534040821999938, 49.871635318000102 ], [ -124.53470559499999, 49.871449891000047 ], [ -124.535924872999928, 49.871079391000151 ], [ -124.536228312999953, 49.871034004000137 ], [ -124.536474110999976, 49.871525686999988 ], [ -124.537492822, 49.871383670000064 ], [ -124.537321301999938, 49.870873247000105 ], [ -124.538558503999965, 49.870710432000109 ], [ -124.539089111999957, 49.870640585000089 ], [ -124.539095446999966, 49.870839919000034 ], [ -124.5386781119999, 49.870845459000037 ], [ -124.538695256000011, 49.871384920000011 ], [ -124.538277917999906, 49.871390459000068 ], [ -124.538295054999978, 49.871929920000063 ], [ -124.536625681000018, 49.871952061000094 ], [ -124.536634239999955, 49.872221792000076 ], [ -124.535799547999943, 49.87223285400006 ], [ -124.535833770999915, 49.873311776000101 ], [ -124.536251127999947, 49.87330624500003 ], [ -124.536259685999951, 49.87357597500003 ], [ -124.536677044, 49.873570444000023 ], [ -124.536694164999972, 49.874109905000047 ], [ -124.537111527999983, 49.874104371000143 ], [ -124.5371372199999, 49.874913562000074 ], [ -124.536719850999987, 49.87491909600007 ], [ -124.536736972999904, 49.875458555000087 ], [ -124.535798734, 49.875470990000117 ], [ -124.535558139999978, 49.875570665000076 ], [ -124.535196138999936, 49.875647465000085 ], [ -124.534993768999939, 49.875481652000111 ], [ -124.534650100999968, 49.875486202000062 ], [ -124.534640788999965, 49.875192435000031 ], [ -124.534345577999957, 49.874950546000029 ], [ -124.534215629999935, 49.874952267 ], [ -124.534212109999942, 49.874841187000079 ], [ -124.534021486999947, 49.874684992000027 ], [ -124.533789713999951, 49.874688059000086 ], [ -124.533783437999915, 49.874489936000067 ], [ -124.533697399999966, 49.874419437000036 ], [ -124.533363803000015, 49.874423850000021 ], [ -124.533354771999925, 49.874138684000066 ], [ -124.533049238, 49.873888323000088 ], [ -124.532929355999983, 49.87388990900012 ], [ -124.532926542999945, 49.87380107900006 ], [ -124.532591659999966, 49.87362453000005 ], [ -124.532503456999919, 49.873625697000143 ], [ -124.532501922999955, 49.873577222000073 ], [ -124.532153937999922, 49.873393764000049 ], [ -124.532057337999973, 49.873361750000122 ], [ -124.531660203999976, 49.873366998000051 ], [ -124.531655828999988, 49.873228687000079 ], [ -124.531460839999951, 49.873164065000076 ], [ -124.530982979999962, 49.873106101000133 ], [ -124.529982250999979, 49.873119313000117 ], [ -124.529990775000016, 49.873389044000092 ], [ -124.528663873999989, 49.873406551000109 ], [ -124.52832477499993, 49.873519770000073 ], [ -124.528329856999974, 49.873680799000041 ], [ -124.52790694, 49.873686373000055 ], [ -124.527503655999979, 49.873961864000137 ], [ -124.52752529499999, 49.874647709000044 ], [ -124.527712346999948, 49.875038157000098 ], [ -124.528372430999937, 49.875029456000057 ], [ -124.528380945999984, 49.875299187000074 ], [ -124.52879832, 49.87529368400007 ], [ -124.528823872999965, 49.876102877000044 ], [ -124.528406492, 49.876108381000066 ], [ -124.528409495999981, 49.876203539000059 ], [ -124.53035952, 49.876229729000109 ], [ -124.530334011999969, 49.877023866000116 ], [ -124.530666157999988, 49.877028323000076 ], [ -124.530658026999902, 49.877281527000015 ], [ -124.531022260999961, 49.877286414000096 ], [ -124.530906798999951, 49.880882413000087 ], [ -124.529688646999929, 49.880866065000134 ], [ -124.529689992, 49.880839809000101 ], [ -124.529834799999904, 49.880576298000115 ], [ -124.529574113999971, 49.880255896000051 ], [ -124.528426803999949, 49.879569392000064 ], [ -124.527500697999955, 49.879375709000072 ], [ -124.526282720999959, 49.878689304000083 ], [ -124.525794590999936, 49.87865080200006 ], [ -124.525558403000019, 49.878717786000024 ], [ -124.525124901999931, 49.879055293000079 ], [ -124.524912208999964, 49.879831492000072 ], [ -124.524928021999955, 49.880148795000125 ], [ -124.523569873999975, 49.880130492000077 ], [ -124.523685909999983, 49.876534497000108 ], [ -124.52382685699996, 49.876536398000056 ], [ -124.523818512999981, 49.876271299000074 ], [ -124.522930538999901, 49.876216964000093 ], [ -124.522836838999979, 49.87613636500005 ], [ -124.522796964999912, 49.875912364000037 ], [ -124.522554654999979, 49.875915547000048 ], [ -124.52253769, 49.875376082000045 ], [ -124.522120311999942, 49.875381564000115 ], [ -124.52211183299994, 49.875111832000044 ], [ -124.521694457999942, 49.875117312000071 ], [ -124.521689102999943, 49.874946940000022 ], [ -124.521456439999909, 49.874898264000137 ], [ -124.521281514999913, 49.874852888000085 ], [ -124.520851235999956, 49.874858534000055 ], [ -124.520848791999953, 49.874780735000094 ], [ -124.520360781999969, 49.874774141000103 ], [ -124.520401379999925, 49.873525684000121 ], [ -124.506333723999916, 49.873606531000078 ], [ -124.506344391999917, 49.873279700000076 ], [ -124.504682774999964, 49.873257020000061 ], [ -124.50471173599999, 49.872370729000117 ], [ -124.504072449999953, 49.872379024000054 ], [ -124.504038933999965, 49.871300086000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.996849113177822", "sL_AssetLoss": "787.08", "sL_BldgLoss": "784.6", "sL_StrLoss": "762", "sL_NStrLoss": "22.6", "sL_ContLoss": "2.48", "geom_point": "0101000020E6100000A012DFA2F61F5FC0D17DD688A2EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.498384327999958, 49.872347019000102 ], [ -124.498243945999903, 49.871428099000077 ], [ -124.49856936899999, 49.871435096000027 ], [ -124.499376705999978, 49.871452509000065 ], [ -124.50005362899995, 49.871487850000051 ], [ -124.500552249999927, 49.871513912000083 ], [ -124.50050780299992, 49.872870290000058 ], [ -124.49840302599992, 49.872841444000095 ], [ -124.498384327999958, 49.872347019000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.993952457936651", "sL_AssetLoss": "334.02", "sL_BldgLoss": "332", "sL_StrLoss": "316", "sL_NStrLoss": "16", "sL_ContLoss": "2.02", "geom_point": "0101000020E61000007CA2E35147225FC0D76C61ED5AF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.534957993999924, 49.88519649300013 ], [ -124.536210367999985, 49.885179904000097 ], [ -124.536235366999989, 49.885967435000055 ], [ -124.536068226999987, 49.885991317000041 ], [ -124.535173742999973, 49.886003166000108 ], [ -124.53497938699995, 49.88587100500007 ], [ -124.534957993999924, 49.88519649300013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14966250", "BldgCostT": "9825000", "sL_LossRatio": "0.942666101900036", "sL_AssetLoss": "13220.8", "sL_BldgLoss": "12462.8", "sL_StrLoss": "10007", "sL_NStrLoss": "2455.8", "sL_ContLoss": "758", "geom_point": "0101000020E6100000DA9BCE04F9225FC05EF6671653F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.547823697999931, 49.880280720000052 ], [ -124.547827468999955, 49.880161898000104 ], [ -124.545632223999974, 49.880132765000084 ], [ -124.545640536999912, 49.879871240000057 ], [ -124.545001315999954, 49.879862749000054 ], [ -124.54500697099995, 49.879684915000027 ], [ -124.544451705999947, 49.879677535000091 ], [ -124.544566098999951, 49.876081515000074 ], [ -124.545334175, 49.876091722000076 ], [ -124.545387865999913, 49.874402832000072 ], [ -124.546307295999966, 49.87441504300007 ], [ -124.546281541999946, 49.873608623000095 ], [ -124.546025542999985, 49.872636604000114 ], [ -124.545833053999942, 49.872639172000092 ], [ -124.54581583199996, 49.872099713000054 ], [ -124.545398487999947, 49.872105278000092 ], [ -124.545364051999982, 49.871026361000105 ], [ -124.545645368999914, 49.871022610000104 ], [ -124.545785082999927, 49.871264819000068 ], [ -124.545787412, 49.871271575000051 ], [ -124.546142942999964, 49.872299844000068 ], [ -124.546354597999979, 49.87291198700013 ], [ -124.546595150999948, 49.874318208000048 ], [ -124.54670909, 49.874672286000092 ], [ -124.547166445999892, 49.875166717000049 ], [ -124.547378749999908, 49.875315233000045 ], [ -124.547186966999973, 49.875539925000083 ], [ -124.547051044999975, 49.875699171000129 ], [ -124.546719813999943, 49.87608720300004 ], [ -124.546438084999949, 49.876416193000033 ], [ -124.546426571999945, 49.876507101000122 ], [ -124.546363782999933, 49.877001601000138 ], [ -124.547310939999974, 49.877398297000092 ], [ -124.547874503999964, 49.877634333000088 ], [ -124.547935991999935, 49.877660116000115 ], [ -124.549947582999934, 49.878501608000072 ], [ -124.54930280399995, 49.878915792000072 ], [ -124.54924015, 49.878966284000029 ], [ -124.548984409999946, 49.879172401000098 ], [ -124.548899592999959, 49.879275070000034 ], [ -124.548703633999935, 49.87951235500006 ], [ -124.548084404999926, 49.880262213000059 ], [ -124.548057286999963, 49.880283818000066 ], [ -124.547823697999931, 49.880280720000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112468644", "BldgCostT": "75206523", "sL_LossRatio": "0.974120367725843", "sL_AssetLoss": "115542.6", "sL_BldgLoss": "112552.4", "sL_StrLoss": "96319.4", "sL_NStrLoss": "16233", "sL_ContLoss": "2990.2", "geom_point": "0101000020E6100000770237DE1F235FC07E4D41440BF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.547186966999973, 49.875539925000083 ], [ -124.547378749999908, 49.875315233000045 ], [ -124.547166445999892, 49.875166717000049 ], [ -124.54670909, 49.874672286000092 ], [ -124.546595150999948, 49.874318208000048 ], [ -124.546354597999979, 49.87291198700013 ], [ -124.546142942999964, 49.872299844000068 ], [ -124.545787412, 49.871271575000051 ], [ -124.546509026, 49.871247459000031 ], [ -124.547232718999922, 49.871239092000053 ], [ -124.547980001999946, 49.871230994000022 ], [ -124.54803019699996, 49.87307 ], [ -124.548058142999977, 49.874011568000121 ], [ -124.54807189, 49.874474490000082 ], [ -124.548125784999982, 49.874527396000111 ], [ -124.548252495999975, 49.874614499000096 ], [ -124.548793166999957, 49.874836937000055 ], [ -124.550154500999895, 49.875396993000024 ], [ -124.550429408999946, 49.875122200000078 ], [ -124.550933280999956, 49.874618488000074 ], [ -124.551078308999976, 49.874694203000075 ], [ -124.551591011999946, 49.874827957000022 ], [ -124.55210608699997, 49.874962324000073 ], [ -124.552560304999986, 49.875080801000131 ], [ -124.55267762599999, 49.875110630000073 ], [ -124.55312761699993, 49.875224996000057 ], [ -124.55298458599998, 49.875433493000102 ], [ -124.552577805999988, 49.87584729100012 ], [ -124.552191292999979, 49.876236112000136 ], [ -124.55181281499992, 49.876620459000023 ], [ -124.55146391, 49.876974809000124 ], [ -124.551072303999945, 49.877368467000061 ], [ -124.550692185999978, 49.877750591000073 ], [ -124.550313525999954, 49.878132504000092 ], [ -124.549947582999934, 49.878501608000072 ], [ -124.547935991999935, 49.877660116000115 ], [ -124.547874503999964, 49.877634333000088 ], [ -124.547310939999974, 49.877398297000092 ], [ -124.546363782999933, 49.877001601000138 ], [ -124.546426571999945, 49.876507101000122 ], [ -124.546438084999949, 49.876416193000033 ], [ -124.546719813999943, 49.87608720300004 ], [ -124.547051044999975, 49.875699171000129 ], [ -124.547186966999973, 49.875539925000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23046000", "BldgCostT": "15630000", "sL_LossRatio": "0.961544161521931", "sL_AssetLoss": "30769.32", "sL_BldgLoss": "29586.06", "sL_StrLoss": "25208.46", "sL_NStrLoss": "4377.6", "sL_ContLoss": "1183.26", "geom_point": "0101000020E6100000D2F4A7C755225FC02E426FF961EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.536474110999976, 49.871525686999988 ], [ -124.536228312999953, 49.871034004000137 ], [ -124.535924872999928, 49.871079391000151 ], [ -124.53470559499999, 49.871449891000047 ], [ -124.534370539999941, 49.870959565000057 ], [ -124.534043770999958, 49.870481399 ], [ -124.53368900199996, 49.869961280000069 ], [ -124.535715198999966, 49.869462193000032 ], [ -124.536780513999958, 49.869294800000105 ], [ -124.536695599999931, 49.869034595000102 ], [ -124.536731195999934, 49.868792292000059 ], [ -124.536900799999955, 49.868493195000035 ], [ -124.537188852999975, 49.868166779000028 ], [ -124.537757784999954, 49.868159232000025 ], [ -124.537783481999952, 49.868968424000052 ], [ -124.537366161999927, 49.868973960000112 ], [ -124.537391853999949, 49.869783151000071 ], [ -124.538406935999916, 49.869769682000083 ], [ -124.53889703899992, 49.869707665000064 ], [ -124.538919036999971, 49.869762885000085 ], [ -124.539061154999942, 49.869760998000096 ], [ -124.539073541999969, 49.870150749000103 ], [ -124.539259725999941, 49.870618127000064 ], [ -124.539143688999928, 49.870633402000067 ], [ -124.539089094999937, 49.870640076000079 ], [ -124.539089111999957, 49.870640585000089 ], [ -124.538558503999965, 49.870710432000109 ], [ -124.537321301999938, 49.870873247000105 ], [ -124.537492822, 49.871383670000064 ], [ -124.536474110999976, 49.871525686999988 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94973418", "BldgCostT": "62761668", "sL_LossRatio": "0.958633617965959", "sL_AssetLoss": "110017.84", "sL_BldgLoss": "105466.8", "sL_StrLoss": "89307.3", "sL_NStrLoss": "16159.5", "sL_ContLoss": "4551.04", "geom_point": "0101000020E6100000DFCC4B72FE225FC0362A684145EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.54803019699996, 49.87307 ], [ -124.547980001999946, 49.871230994000022 ], [ -124.547232718999922, 49.871239092000053 ], [ -124.546509026, 49.871247459000031 ], [ -124.545787412, 49.871271575000051 ], [ -124.545785082999927, 49.871264819000068 ], [ -124.545645368999914, 49.871022610000104 ], [ -124.546198719999921, 49.87101523000009 ], [ -124.546147043999937, 49.869396853000062 ], [ -124.545729723999983, 49.869402420000092 ], [ -124.545721113999917, 49.86913269100004 ], [ -124.545303794999967, 49.869138255000081 ], [ -124.545260757999969, 49.867789607000113 ], [ -124.544843452999899, 49.86779516900004 ], [ -124.544809033999968, 49.866716251000092 ], [ -124.543974438999953, 49.86672737100016 ], [ -124.543965838999981, 49.866457641000068 ], [ -124.543131247999909, 49.866468755000035 ], [ -124.54312890199995, 49.866395122000107 ], [ -124.539865955999971, 49.866351648000077 ], [ -124.539874257999926, 49.866091414000067 ], [ -124.539441255999961, 49.866085638000115 ], [ -124.539450028999966, 49.865810725000095 ], [ -124.539334285999985, 49.865809181000039 ], [ -124.539427577999945, 49.865725290000022 ], [ -124.540384681999953, 49.865130873000091 ], [ -124.540845302999941, 49.864844785000109 ], [ -124.541034298999989, 49.86480689600009 ], [ -124.541179542999913, 49.864805205000067 ], [ -124.541250013999928, 49.864804389000042 ], [ -124.541606199999976, 49.864886500000061 ], [ -124.542182295999964, 49.865140611000101 ], [ -124.543366681999942, 49.865818305000111 ], [ -124.543752112999954, 49.865989797000069 ], [ -124.544164565999949, 49.866108435000044 ], [ -124.544375200999966, 49.866169 ], [ -124.544831817999963, 49.86624519300009 ], [ -124.545040405999956, 49.866245308 ], [ -124.54526399299999, 49.86621231400013 ], [ -124.545449694999903, 49.866146411000045 ], [ -124.546124885999973, 49.865912493000039 ], [ -124.546699918999963, 49.865712203000093 ], [ -124.547380893999943, 49.865475007000065 ], [ -124.547775604999913, 49.866056809000135 ], [ -124.548105794999969, 49.866562453000078 ], [ -124.548385799999949, 49.866991206000073 ], [ -124.548769328999967, 49.867898272000055 ], [ -124.548891684999958, 49.868187627000069 ], [ -124.548962892999938, 49.868356110000079 ], [ -124.549013985, 49.868586084000079 ], [ -124.549358822999935, 49.870217701000072 ], [ -124.549566861999935, 49.871201442000093 ], [ -124.549614197999972, 49.871425218000098 ], [ -124.549860898999952, 49.872591489000037 ], [ -124.550241530999969, 49.873535523000101 ], [ -124.550434799999962, 49.874014795000029 ], [ -124.550782781999928, 49.874537398000058 ], [ -124.550933280999956, 49.874618488000074 ], [ -124.550429408999946, 49.875122200000078 ], [ -124.550154500999895, 49.875396993000024 ], [ -124.548793166999957, 49.874836937000055 ], [ -124.548252495999975, 49.874614499000096 ], [ -124.548125784999982, 49.874527396000111 ], [ -124.54807189, 49.874474490000082 ], [ -124.548058142999977, 49.874011568000121 ], [ -124.54803019699996, 49.87307 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48469667", "BldgCostT": "30691667", "sL_LossRatio": "0.901177673178204", "sL_AssetLoss": "70044.9", "sL_BldgLoss": "63122.9", "sL_StrLoss": "51541.9", "sL_NStrLoss": "11581", "sL_ContLoss": "6922", "geom_point": "0101000020E61000004B2C4A85C8235FC057E917BA4CF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.563531192999932, 49.888483796000045 ], [ -124.560746548999987, 49.887287094000023 ], [ -124.55806608099999, 49.88614560700006 ], [ -124.557917420999971, 49.886358595000118 ], [ -124.557947868, 49.887776403000025 ], [ -124.55709937799999, 49.887773318000072 ], [ -124.556525817999955, 49.887771200000074 ], [ -124.554057325999963, 49.887416714000061 ], [ -124.55448902199997, 49.886474390000103 ], [ -124.553140684999988, 49.886033132000136 ], [ -124.552309404999932, 49.885761077000041 ], [ -124.55231257399997, 49.886011192000097 ], [ -124.55233142799996, 49.88750445400008 ], [ -124.551619944999942, 49.887508182000047 ], [ -124.551113494999939, 49.887510801000126 ], [ -124.551145947999927, 49.885919438000066 ], [ -124.551061940999929, 49.885610286 ], [ -124.550983849999966, 49.885322743000074 ], [ -124.550065959000023, 49.885217074000067 ], [ -124.549535724999942, 49.885043665000069 ], [ -124.54936079499997, 49.884942404000057 ], [ -124.548516760999945, 49.883824993000083 ], [ -124.548298375999934, 49.883691697000089 ], [ -124.548120938999958, 49.883670460000126 ], [ -124.54795358399997, 49.883681740000071 ], [ -124.547517194999926, 49.883883696000105 ], [ -124.547083941999972, 49.884161245000058 ], [ -124.546508417999945, 49.884625795000076 ], [ -124.54612836799997, 49.885199941000018 ], [ -124.545964433, 49.885234650000051 ], [ -124.545833492999989, 49.885195121000095 ], [ -124.545748590999921, 49.885108559000095 ], [ -124.545710211999975, 49.884914684000073 ], [ -124.545818676999929, 49.884434951000081 ], [ -124.546020466999948, 49.88394528900011 ], [ -124.54695325099999, 49.883957669000011 ], [ -124.547247246, 49.883953746000053 ], [ -124.547248625999927, 49.883910301000057 ], [ -124.547445977, 49.883912918000135 ], [ -124.547438571999976, 49.883681349000035 ], [ -124.54785601399999, 49.883675776000082 ], [ -124.54784738799998, 49.883406047000037 ], [ -124.549099708999947, 49.883389319000052 ], [ -124.549116977999958, 49.883928776000104 ], [ -124.549534420999976, 49.883923196000062 ], [ -124.549534979, 49.883940607000106 ], [ -124.552812436999929, 49.883983965000013 ], [ -124.552808336999988, 49.884113572000068 ], [ -124.552892950999976, 49.884114690000054 ], [ -124.552905008999957, 49.883733442000064 ], [ -124.553378164999941, 49.883739693000031 ], [ -124.553379392999915, 49.883700853000065 ], [ -124.555792650999962, 49.883732704000074 ], [ -124.555787407999944, 49.883569602000186 ], [ -124.55536996799998, 49.883575204000095 ], [ -124.55536207399993, 49.88332960400006 ], [ -124.555088987999952, 49.883326001000128 ], [ -124.55509804899998, 49.883039164000095 ], [ -124.55451775899995, 49.883046947000061 ], [ -124.554491769999927, 49.882237764000116 ], [ -124.554909197999947, 49.882232166000115 ], [ -124.55489186799997, 49.881692710000074 ], [ -124.555140677999972, 49.881689372000039 ], [ -124.555202555000022, 49.879729989000104 ], [ -124.56076587199999, 49.879803249000119 ], [ -124.560674918999965, 49.882694372000074 ], [ -124.560770589999919, 49.882693084000088 ], [ -124.560779288999967, 49.882962812000123 ], [ -124.561196722999952, 49.882957191000067 ], [ -124.561231523999965, 49.884036097000042 ], [ -124.560844356999922, 49.884041311000011 ], [ -124.56084420599997, 49.884046078000097 ], [ -124.561503505999895, 49.884054740000131 ], [ -124.561499296999926, 49.88418859900009 ], [ -124.562034494999949, 49.884195627000103 ], [ -124.561980450999968, 49.885914915000143 ], [ -124.56254481399999, 49.885907310000015 ], [ -124.562562948, 49.886468985000135 ], [ -124.562936610999941, 49.886711560000073 ], [ -124.562988406999978, 49.886710862000079 ], [ -124.562989538999943, 49.886745919000134 ], [ -124.563343827999958, 49.886975914000054 ], [ -124.56341458599999, 49.886974959000014 ], [ -124.563416132999947, 49.887022850000086 ], [ -124.563751051999972, 49.887240265000095 ], [ -124.563840770999917, 49.887239054000069 ], [ -124.56384273299993, 49.88729978 ], [ -124.564158277999979, 49.887504614000107 ], [ -124.564684431999964, 49.887497514000096 ], [ -124.564695948999912, 49.887853633000105 ], [ -124.564769838999936, 49.887901597000102 ], [ -124.564792527999899, 49.887178446000114 ], [ -124.570356763999911, 49.887251219000078 ], [ -124.570244370999959, 49.890847210000061 ], [ -124.569128077999949, 49.890832633000038 ], [ -124.56857480099994, 49.890612111000067 ], [ -124.565519000999942, 49.889331887000068 ], [ -124.564942817999949, 49.889090505000112 ], [ -124.564624263999931, 49.888953593000039 ], [ -124.563952101999973, 49.888664705000075 ], [ -124.563531192999932, 49.888483796000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86915750", "BldgCostT": "53735000", "sL_LossRatio": "0.961664135382346", "sL_AssetLoss": "87834.2", "sL_BldgLoss": "84467", "sL_StrLoss": "72343", "sL_NStrLoss": "12124", "sL_ContLoss": "3367.2", "geom_point": "0101000020E6100000A027AFDF5D235FC0AA49CF784BEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.552191292999979, 49.876236112000136 ], [ -124.552577805999988, 49.87584729100012 ], [ -124.55298458599998, 49.875433493000102 ], [ -124.55312761699993, 49.875224996000057 ], [ -124.55267762599999, 49.875110630000073 ], [ -124.552560304999986, 49.875080801000131 ], [ -124.55210608699997, 49.874962324000073 ], [ -124.551591011999946, 49.874827957000022 ], [ -124.551078308999976, 49.874694203000075 ], [ -124.550933280999956, 49.874618488000074 ], [ -124.550782781999928, 49.874537398000058 ], [ -124.550434799999962, 49.874014795000029 ], [ -124.550241530999969, 49.873535523000101 ], [ -124.549860898999952, 49.872591489000037 ], [ -124.549614197999972, 49.871425218000098 ], [ -124.549566861999935, 49.871201442000093 ], [ -124.549358822999935, 49.870217701000072 ], [ -124.549013985, 49.868586084000079 ], [ -124.548962892999938, 49.868356110000079 ], [ -124.548891684999958, 49.868187627000069 ], [ -124.548769328999967, 49.867898272000055 ], [ -124.548385799999949, 49.866991206000073 ], [ -124.548105794999969, 49.866562453000078 ], [ -124.547775604999913, 49.866056809000135 ], [ -124.547380893999943, 49.865475007000065 ], [ -124.546699918999963, 49.865712203000093 ], [ -124.546124885999973, 49.865912493000039 ], [ -124.545449694999903, 49.866146411000045 ], [ -124.544271599999945, 49.864921914000092 ], [ -124.544883406999972, 49.86462249100002 ], [ -124.54330758699993, 49.863437714000057 ], [ -124.543825150999908, 49.86314583200005 ], [ -124.543944911999944, 49.86307829500003 ], [ -124.54434459, 49.862845299000078 ], [ -124.542299805999903, 49.86167128500005 ], [ -124.541273760999957, 49.861096581000062 ], [ -124.542959379999957, 49.861074155000075 ], [ -124.542950787999985, 49.86080442499999 ], [ -124.543459698999968, 49.860797650000087 ], [ -124.543678739999947, 49.860632864000095 ], [ -124.543929561, 49.860791391000156 ], [ -124.544202527999957, 49.860787755000032 ], [ -124.544185330999937, 49.86024829500009 ], [ -124.543768088999968, 49.860253853000081 ], [ -124.54375089700001, 49.859714393000019 ], [ -124.543333659, 49.859719949000073 ], [ -124.543307877999922, 49.858910758000022 ], [ -124.544559568999915, 49.858894085 ], [ -124.54456817, 49.859163815000045 ], [ -124.54498540099999, 49.859158255000089 ], [ -124.544994003999989, 49.859427984000028 ], [ -124.545411238999947, 49.859422422000172 ], [ -124.545419844999941, 49.859692152000029 ], [ -124.545837081999977, 49.859686589 ], [ -124.545854295999987, 49.860226048000101 ], [ -124.546271536999967, 49.860220483000056 ], [ -124.546280148999969, 49.860490212000066 ], [ -124.546697392999974, 49.860484645000071 ], [ -124.546714617999939, 49.861024105000112 ], [ -124.547131865999972, 49.861018535000092 ], [ -124.547123250999917, 49.8607488070001 ], [ -124.548911446999966, 49.860724924000046 ], [ -124.549052296999974, 49.860785490000119 ], [ -124.549218613999926, 49.861006662000108 ], [ -124.549235357999976, 49.86153012900013 ], [ -124.549608506999974, 49.861525141000094 ], [ -124.549654587999896, 49.861586418000066 ], [ -124.549669868999956, 49.862064009000072 ], [ -124.55001632599999, 49.86205937700008 ], [ -124.550384315999949, 49.862403398000048 ], [ -124.550301181999927, 49.862873394000104 ], [ -124.550816500999986, 49.863306391 ], [ -124.551308996999978, 49.863930191000058 ], [ -124.552037582999944, 49.864504106 ], [ -124.552034008, 49.864801791000055 ], [ -124.551899289999966, 49.86498269600002 ], [ -124.552087912, 49.865187795000047 ], [ -124.552419804999957, 49.866433882000088 ], [ -124.552491602999979, 49.866486584000064 ], [ -124.552907411999954, 49.866435405000068 ], [ -124.553174718, 49.866540802000067 ], [ -124.553329407999954, 49.86705058900008 ], [ -124.553707506999928, 49.867108994000034 ], [ -124.553880314999915, 49.867259998000122 ], [ -124.553842909999958, 49.867845294000077 ], [ -124.554370297999981, 49.868259796000132 ], [ -124.554921598999925, 49.868523311000082 ], [ -124.554822387999963, 49.868902101000074 ], [ -124.554913699999958, 49.86910720000003 ], [ -124.554999110999944, 49.869214009000103 ], [ -124.555307608999939, 49.86923678600008 ], [ -124.555408502999967, 49.869343597000103 ], [ -124.555066207999957, 49.869528687000091 ], [ -124.555528108999937, 49.870034302000136 ], [ -124.55551430499996, 49.870106993000014 ], [ -124.555267016999935, 49.870191004000063 ], [ -124.555262006999925, 49.870478693000024 ], [ -124.555739879000015, 49.87102989400006 ], [ -124.556024315999949, 49.871224996000109 ], [ -124.556248786999944, 49.87124780400012 ], [ -124.556377516999987, 49.871381602000014 ], [ -124.556339989999969, 49.871912893000044 ], [ -124.55727668599998, 49.872052406000059 ], [ -124.557552703999974, 49.871976998000044 ], [ -124.558349997, 49.872146415000074 ], [ -124.559136117999955, 49.871911504000138 ], [ -124.561778607999969, 49.871857305000084 ], [ -124.563649609, 49.871635192000092 ], [ -124.564444416999962, 49.871632296000072 ], [ -124.564914307999928, 49.871536891000076 ], [ -124.565446702999949, 49.87166359400009 ], [ -124.565919520999984, 49.871685005000067 ], [ -124.566264896999897, 49.871806267000075 ], [ -124.56626551, 49.871825199000057 ], [ -124.566316844999946, 49.871824505000099 ], [ -124.566687214999959, 49.871954539000036 ], [ -124.566691574999965, 49.872089285000094 ], [ -124.56687683, 49.872086781000057 ], [ -124.56693791, 49.872166403000101 ], [ -124.566961107999987, 49.872885585000041 ], [ -124.566890738999945, 49.872896127000089 ], [ -124.566859214999937, 49.872896553000047 ], [ -124.566858866999922, 49.872900901000108 ], [ -124.565838784, 49.873053702000078 ], [ -124.565060204999952, 49.873055085000047 ], [ -124.565042317999925, 49.873730632000076 ], [ -124.564927444999938, 49.873732183000108 ], [ -124.564924439999956, 49.873757765000107 ], [ -124.564325239999917, 49.873750164000086 ], [ -124.564325839999981, 49.873740303000062 ], [ -124.563822466999937, 49.873747095000049 ], [ -124.563827135999986, 49.873891655000115 ], [ -124.562438182999969, 49.874035606000099 ], [ -124.561744394999948, 49.87404495500008 ], [ -124.561750466999968, 49.874233164000046 ], [ -124.561547573999988, 49.874317452000057 ], [ -124.56133573599999, 49.874320305000033 ], [ -124.561338444999933, 49.874404329000093 ], [ -124.561305288999961, 49.874418103000046 ], [ -124.561026258999945, 49.874594317000053 ], [ -124.560927071999956, 49.874595653000029 ], [ -124.56092901, 49.874655732000114 ], [ -124.560589650999958, 49.874870041000129 ], [ -124.560518404, 49.874871 ], [ -124.56051979599999, 49.874914155000042 ], [ -124.560459704999914, 49.874952102000115 ], [ -124.560211647999935, 49.875144973000026 ], [ -124.560109729999951, 49.875146345000054 ], [ -124.560112178999987, 49.875222312000133 ], [ -124.559858475999974, 49.875419571000108 ], [ -124.559701054999934, 49.875421689000078 ], [ -124.559704834999962, 49.875539027000102 ], [ -124.559505298999966, 49.875694167000042 ], [ -124.558040254999952, 49.875713867000101 ], [ -124.558048937999899, 49.875983595000065 ], [ -124.556988415999953, 49.875997845000057 ], [ -124.55697628099999, 49.876382591000066 ], [ -124.556093891999978, 49.876421900000025 ], [ -124.555845810999969, 49.876515899000076 ], [ -124.556917305999932, 49.876633468000129 ], [ -124.556908804999964, 49.876902977000043 ], [ -124.556408060999914, 49.876896376000076 ], [ -124.556414122999939, 49.877084934000052 ], [ -124.555561967999921, 49.877096372000025 ], [ -124.555554003999987, 49.877348644000101 ], [ -124.55504540799997, 49.877111197000062 ], [ -124.554109503999911, 49.876611302000093 ], [ -124.554442201999976, 49.876111494000043 ], [ -124.554060192999941, 49.875954809000056 ], [ -124.553980611999918, 49.876064399000064 ], [ -124.553645587999952, 49.876050211000056 ], [ -124.55330049899996, 49.876531596000063 ], [ -124.553328891999939, 49.877008704000055 ], [ -124.552908895999948, 49.877337707000031 ], [ -124.55256411199997, 49.877890298000118 ], [ -124.551667976999923, 49.878145197000094 ], [ -124.551257579999941, 49.878375891000069 ], [ -124.551043489999955, 49.8786493960001 ], [ -124.550493990999925, 49.878862989000048 ], [ -124.549743726999907, 49.879341604000103 ], [ -124.548836186999964, 49.880294142000082 ], [ -124.548057286999963, 49.880283818000066 ], [ -124.548084404999926, 49.880262213000059 ], [ -124.548703633999935, 49.87951235500006 ], [ -124.548899592999959, 49.879275070000034 ], [ -124.548984409999946, 49.879172401000098 ], [ -124.54924015, 49.878966284000029 ], [ -124.54930280399995, 49.878915792000072 ], [ -124.549947582999934, 49.878501608000072 ], [ -124.550313525999954, 49.878132504000092 ], [ -124.550692185999978, 49.877750591000073 ], [ -124.551072303999945, 49.877368467000061 ], [ -124.55146391, 49.876974809000124 ], [ -124.55181281499992, 49.876620459000023 ], [ -124.552191292999979, 49.876236112000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9158083", "BldgCostT": "5788333", "sL_LossRatio": "0.974525260146595", "sL_AssetLoss": "13094.54", "sL_BldgLoss": "12760.96", "sL_StrLoss": "11746.76", "sL_NStrLoss": "1014.2", "sL_ContLoss": "333.58", "geom_point": "0101000020E61000005DF2AA94FF215FC0B54092C458EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.533035220999963, 49.849652799000097 ], [ -124.532802796999988, 49.84952830000001 ], [ -124.532527390999945, 49.849441813000112 ], [ -124.532028616999938, 49.849387501000102 ], [ -124.531722012999978, 49.849323103000053 ], [ -124.531660508999934, 49.849288105 ], [ -124.531417275999928, 49.849154409000036 ], [ -124.531225900999942, 49.848967481000081 ], [ -124.530902233999939, 49.848424618000131 ], [ -124.530834292999955, 49.848310636000065 ], [ -124.530617583999955, 49.847947146000067 ], [ -124.529807294999941, 49.846587932000098 ], [ -124.52946581099998, 49.846015102000173 ], [ -124.529460518999954, 49.846006203000094 ], [ -124.529319797999918, 49.845667909000042 ], [ -124.529297076999939, 49.845538621000024 ], [ -124.529243400000013, 49.845233404000105 ], [ -124.529231887999956, 49.844811391000107 ], [ -124.529165239999941, 49.844586143000122 ], [ -124.529085208999931, 49.844315599000019 ], [ -124.528916756999976, 49.843949909000052 ], [ -124.528492506999967, 49.843028704000055 ], [ -124.528251915999945, 49.84251459700009 ], [ -124.52813861199995, 49.842144301000111 ], [ -124.528162485999957, 49.841748799000115 ], [ -124.529104978999982, 49.84175069300003 ], [ -124.52988640299999, 49.841749496000062 ], [ -124.53023370199999, 49.841752813000063 ], [ -124.530187901999952, 49.842847598000084 ], [ -124.530518406999931, 49.843626698000051 ], [ -124.530330388999957, 49.845993690000071 ], [ -124.530494015999977, 49.846325498000049 ], [ -124.531108492, 49.846883800000064 ], [ -124.531634905999951, 49.847227085000043 ], [ -124.53219839099999, 49.847461995000039 ], [ -124.5333843, 49.848004699000079 ], [ -124.534469494999925, 49.848899096000125 ], [ -124.534650767999949, 49.849157596000026 ], [ -124.534664176999968, 49.849580966000111 ], [ -124.534945048999987, 49.849577245000091 ], [ -124.535037796999958, 49.849709506000117 ], [ -124.535106214999928, 49.85038464600008 ], [ -124.533855485999965, 49.850401205 ], [ -124.533864023999925, 49.85067093600005 ], [ -124.533446863, 49.850676456000066 ], [ -124.53345539899999, 49.850946188000123 ], [ -124.533321615999924, 49.850947958000063 ], [ -124.533358218999922, 49.850114905000048 ], [ -124.533285735, 49.84993440900007 ], [ -124.533264217999914, 49.849880685000088 ], [ -124.533035220999963, 49.849652799000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.974597522443453", "sL_AssetLoss": "797.56", "sL_BldgLoss": "777.3", "sL_StrLoss": "611.7", "sL_NStrLoss": "165.6", "sL_ContLoss": "20.26", "geom_point": "0101000020E6100000BA3F283971235FC008CA8E0988F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.555009599999963, 49.877723605000014 ], [ -124.555548925000025, 49.877509520000103 ], [ -124.555519141999966, 49.878452908000071 ], [ -124.554713853999971, 49.87844228200008 ], [ -124.554690052999902, 49.879195726000049 ], [ -124.553911835999955, 49.879185452000115 ], [ -124.553891856999925, 49.879817545000044 ], [ -124.553404245999957, 49.879811104000076 ], [ -124.553387068999911, 49.88035435500003 ], [ -124.551517364999981, 49.880329640000092 ], [ -124.552060600999965, 49.880002386000093 ], [ -124.552500186999922, 49.879825799000059 ], [ -124.552578094999944, 49.87962641000005 ], [ -124.553132091999942, 49.879088010000011 ], [ -124.55413149099995, 49.878589591000065 ], [ -124.55428038499997, 49.878461406000099 ], [ -124.554355882999928, 49.878190795000044 ], [ -124.555009599999963, 49.877723605000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23961417", "BldgCostT": "15581667", "sL_LossRatio": "0.951156547767095", "sL_AssetLoss": "23319.4", "sL_BldgLoss": "22180.4", "sL_StrLoss": "18498", "sL_NStrLoss": "3682.4", "sL_ContLoss": "1139", "geom_point": "0101000020E6100000D1F2B00ECF215FC01FCF575EACEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.52749240199995, 49.84689359 ], [ -124.52738609299999, 49.846436092000012 ], [ -124.52687011099999, 49.845404691000063 ], [ -124.526406698999921, 49.844466701000023 ], [ -124.526693616, 49.844493902000103 ], [ -124.527942890999896, 49.844254399000107 ], [ -124.528519304999932, 49.844144299000064 ], [ -124.528604644999945, 49.844170127000062 ], [ -124.528817365999927, 49.844234527000062 ], [ -124.529085208999931, 49.844315599000019 ], [ -124.529165239999941, 49.844586143000122 ], [ -124.529231887999956, 49.844811391000107 ], [ -124.529243400000013, 49.845233404000105 ], [ -124.529297076999939, 49.845538621000024 ], [ -124.529319797999918, 49.845667909000042 ], [ -124.529460518999954, 49.846006203000094 ], [ -124.52946581099998, 49.846015102000173 ], [ -124.529807294999941, 49.846587932000098 ], [ -124.530617583999955, 49.847947146000067 ], [ -124.530834292999955, 49.848310636000065 ], [ -124.530902233999939, 49.848424618000131 ], [ -124.531225900999942, 49.848967481000081 ], [ -124.531417275999928, 49.849154409000036 ], [ -124.531660508999934, 49.849288105 ], [ -124.531722012999978, 49.849323103000053 ], [ -124.532028616999938, 49.849387501000102 ], [ -124.532527390999945, 49.849441813000112 ], [ -124.532802796999988, 49.84952830000001 ], [ -124.533035220999963, 49.849652799000097 ], [ -124.533264217999914, 49.849880685000088 ], [ -124.533285735, 49.84993440900007 ], [ -124.533358218999922, 49.850114905000048 ], [ -124.533321615999924, 49.850947958000063 ], [ -124.533038234999978, 49.850951707000092 ], [ -124.533080906999984, 49.852300367000076 ], [ -124.532663729999982, 49.852305884000039 ], [ -124.532672263999928, 49.852575616000109 ], [ -124.53016919199996, 49.852608689000071 ], [ -124.530152156999989, 49.852069224000061 ], [ -124.529734981999951, 49.852074731000137 ], [ -124.529700919999968, 49.850995802000064 ], [ -124.53011808399998, 49.850990295000038 ], [ -124.530101048999967, 49.850450831000103 ], [ -124.53051821, 49.850445324000127 ], [ -124.53050968899997, 49.850175591000088 ], [ -124.530926848999954, 49.850170081000051 ], [ -124.530884239999949, 49.848821421000146 ], [ -124.530467093999917, 49.848826930000094 ], [ -124.53044153799999, 49.848017733000106 ], [ -124.530024398999927, 49.848023241000071 ], [ -124.529998849999984, 49.847214043000115 ], [ -124.52958171899995, 49.847219549000037 ], [ -124.529564691999937, 49.846680084000077 ], [ -124.52914756399997, 49.846685588000128 ], [ -124.529145729999939, 49.846627486000067 ], [ -124.52831077399999, 49.846616260000118 ], [ -124.528347333999989, 49.847775523000081 ], [ -124.527930194999925, 49.84778102300011 ], [ -124.5279387, 49.848050755000038 ], [ -124.5275215599999, 49.848056254000042 ], [ -124.527530062, 49.848325986000063 ], [ -124.527112920999954, 49.848331484 ], [ -124.527129920999968, 49.84887094900003 ], [ -124.523375590999962, 49.848920356000036 ], [ -124.523384069999977, 49.849190089000032 ], [ -124.522966919999959, 49.849195571000024 ], [ -124.523000829999916, 49.850274504000012 ], [ -124.522583669999946, 49.850279985000043 ], [ -124.522592144999919, 49.850549718000124 ], [ -124.522174981999953, 49.850555198000073 ], [ -124.522183455999965, 49.850824931000091 ], [ -124.52176629, 49.850830409000061 ], [ -124.521783232999923, 49.851369876000021 ], [ -124.52094889299994, 49.851380828000096 ], [ -124.520957359999912, 49.851650561000035 ], [ -124.520123015999943, 49.851661507000109 ], [ -124.520156863999887, 49.852740440000048 ], [ -124.518905318999899, 49.852756849000102 ], [ -124.518913774999973, 49.853026582000055 ], [ -124.518434787999979, 49.853032859000081 ], [ -124.518588267999974, 49.852902519000061 ], [ -124.519284963999951, 49.852310780000089 ], [ -124.519359055999971, 49.852247826000074 ], [ -124.520267413999974, 49.851476703000117 ], [ -124.52112449399999, 49.85074907400012 ], [ -124.521293548999935, 49.850605556000069 ], [ -124.522259789999978, 49.849750660000034 ], [ -124.522442423999976, 49.849477014000094 ], [ -124.522566748999949, 49.849071232000092 ], [ -124.522624808000032, 49.848995569000031 ], [ -124.522657967, 49.848743284000065 ], [ -124.523819703999948, 49.848377613000054 ], [ -124.524984294999939, 49.848076767000101 ], [ -124.525226028999938, 49.848014304000095 ], [ -124.526313307999914, 49.847929107000063 ], [ -124.526357816999962, 49.847921278000101 ], [ -124.526397644999975, 49.8479142710001 ], [ -124.526717521999927, 49.847858101000071 ], [ -124.526876579999978, 49.847806135000056 ], [ -124.526984395999975, 49.8477709020001 ], [ -124.527204699, 49.84762269800008 ], [ -124.527375884999941, 49.847402908000042 ], [ -124.527421076999957, 49.84728527500009 ], [ -124.527471489999982, 49.847154112000027 ], [ -124.527478408999954, 49.847067980000112 ], [ -124.52749240199995, 49.84689359 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89900833", "BldgCostT": "58318333", "sL_LossRatio": "0.92510601761387", "sL_AssetLoss": "112740.7", "sL_BldgLoss": "104297.1", "sL_StrLoss": "87125.1", "sL_NStrLoss": "17172", "sL_ContLoss": "8443.6", "geom_point": "0101000020E61000002F1864E48F215FC09581FBE871EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.530220594999889, 49.871835002000118 ], [ -124.529650785999948, 49.871818303000111 ], [ -124.529191099999963, 49.871837297000035 ], [ -124.529026691999931, 49.871886394000107 ], [ -124.528647674999888, 49.870868587000103 ], [ -124.528613083999957, 49.870774591000092 ], [ -124.528601577999964, 49.869922709000022 ], [ -124.528609502, 49.868592588000077 ], [ -124.528611785999942, 49.868219303000046 ], [ -124.528521318999978, 49.868021760000062 ], [ -124.528516912999976, 49.868012094000036 ], [ -124.5278406799999, 49.867395340000051 ], [ -124.525734484999973, 49.865474295000119 ], [ -124.525627296, 49.865432385000076 ], [ -124.523658096999924, 49.863901512000062 ], [ -124.523182118999898, 49.863531413000075 ], [ -124.522802993999946, 49.863856403000092 ], [ -124.522365990999958, 49.863476299000105 ], [ -124.522175023999949, 49.863362203000065 ], [ -124.521353500999979, 49.863085797000082 ], [ -124.520733903999911, 49.862848100000079 ], [ -124.520504489999922, 49.862759493000077 ], [ -124.519145582999968, 49.862490354000066 ], [ -124.519115491999983, 49.862484397000124 ], [ -124.518444317999936, 49.862380900000097 ], [ -124.517863398999935, 49.862793896000092 ], [ -124.517012691000019, 49.862262583000117 ], [ -124.515451795999951, 49.861288011000049 ], [ -124.514798050999971, 49.860878054000082 ], [ -124.514699251999943, 49.860816074000056 ], [ -124.514323117999965, 49.860580204000058 ], [ -124.514168875999957, 49.860465711000074 ], [ -124.513847826999921, 49.860227402000127 ], [ -124.513664007999964, 49.860023192000078 ], [ -124.513610182999969, 49.85996340500008 ], [ -124.513291403999929, 49.859243988000046 ], [ -124.513066005999974, 49.858732804000077 ], [ -124.512954517999987, 49.858483901000049 ], [ -124.512918643999967, 49.858402603000094 ], [ -124.512454260999959, 49.857349668000069 ], [ -124.51179518, 49.855855292000065 ], [ -124.513543623999951, 49.855525431000103 ], [ -124.513566200999932, 49.85552513600009 ], [ -124.513579614999983, 49.85595450100007 ], [ -124.513605839999954, 49.85595316400007 ], [ -124.51379040399992, 49.856331741000119 ], [ -124.514008694999987, 49.856328890000071 ], [ -124.514023741999964, 49.856810348000117 ], [ -124.514313315999956, 49.857404286000083 ], [ -124.515711306999933, 49.857386013000102 ], [ -124.515717744999975, 49.857591762 ], [ -124.515810540999951, 49.857654560000057 ], [ -124.51655419599993, 49.857644832000098 ], [ -124.516570602999977, 49.858168909000035 ], [ -124.516592923999937, 49.858184013000056 ], [ -124.517822770999913, 49.858167915000081 ], [ -124.517805869999961, 49.857628448000071 ], [ -124.519057543, 49.85761205000005 ], [ -124.519066, 49.85788178400005 ], [ -124.519483227999928, 49.857876315000077 ], [ -124.519500147999963, 49.858415781000105 ], [ -124.519917378999978, 49.858410311000036 ], [ -124.519934305999982, 49.858949777000142 ], [ -124.520351541999929, 49.858944305000129 ], [ -124.520360006999937, 49.859214039000094 ], [ -124.520777242999912, 49.859208565000053 ], [ -124.520811117000022, 49.860287496000076 ], [ -124.520393870999982, 49.860292971000121 ], [ -124.520410802999947, 49.860832437000049 ], [ -124.520828053999978, 49.860826962000083 ], [ -124.520842988999959, 49.861302596000037 ], [ -124.520925553, 49.861365372000066 ], [ -124.521679505999927, 49.861355476000064 ], [ -124.521687977999974, 49.861625209000032 ], [ -124.522105234999984, 49.861619730000037 ], [ -124.522113711999936, 49.861889463000082 ], [ -124.522530973999949, 49.861883983 ], [ -124.522541303999944, 49.862212627000112 ], [ -124.526908139999975, 49.862271483000079 ], [ -124.527016224999969, 49.858912935 ], [ -124.532576964999961, 49.85898763000008 ], [ -124.532461671999954, 49.862583721000071 ], [ -124.527330827999975, 49.862514812000036 ], [ -124.52730972199997, 49.863170759000077 ], [ -124.528038199999969, 49.863180557000099 ], [ -124.527986743999946, 49.864780476000057 ], [ -124.528466233999922, 49.864774153000063 ], [ -124.528491770999935, 49.865583349000175 ], [ -124.528909061999954, 49.865577846000107 ], [ -124.528934608, 49.866387040000049 ], [ -124.529351904999913, 49.866381535000073 ], [ -124.529368941999948, 49.866920999000065 ], [ -124.529786243999951, 49.866915491000071 ], [ -124.5298373699999, 49.868533881000076 ], [ -124.530254684999974, 49.868528373000096 ], [ -124.530279913999919, 49.869326677000068 ], [ -124.530471039999952, 49.869489464 ], [ -124.530579068999913, 49.869603465000054 ], [ -124.530706104999936, 49.869601787000128 ], [ -124.530710544999977, 49.869742209000087 ], [ -124.530831619999972, 49.869869974000082 ], [ -124.531131960999929, 49.869866007000041 ], [ -124.531140488999966, 49.870135739000034 ], [ -124.532809806999921, 49.870113675 ], [ -124.532792729999954, 49.869574214000082 ], [ -124.533627377999977, 49.869563174000042 ], [ -124.533618835999931, 49.869293443000061 ], [ -124.534453478999978, 49.869282398000074 ], [ -124.534444930999911, 49.869012666000096 ], [ -124.53569688899999, 49.868996087000049 ], [ -124.535688334999918, 49.868726356000124 ], [ -124.536105651999975, 49.868720826000128 ], [ -124.536088538999962, 49.868181366000101 ], [ -124.537188852999975, 49.868166779000028 ], [ -124.536900799999955, 49.868493195000035 ], [ -124.536731195999934, 49.868792292000059 ], [ -124.536695599999931, 49.869034595000102 ], [ -124.536780513999958, 49.869294800000105 ], [ -124.535715198999966, 49.869462193000032 ], [ -124.53368900199996, 49.869961280000069 ], [ -124.534043770999958, 49.870481399 ], [ -124.534370539999941, 49.870959565000057 ], [ -124.53470559499999, 49.871449891000047 ], [ -124.534040821999938, 49.871635318000102 ], [ -124.53325970899999, 49.871853210000047 ], [ -124.532879024999943, 49.871884106000067 ], [ -124.531732597999948, 49.871971308000141 ], [ -124.530220594999889, 49.871835002000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33020811", "BldgCostT": "19943190", "sL_LossRatio": "0.934065629887295", "sL_AssetLoss": "21676.1", "sL_BldgLoss": "20246.9", "sL_StrLoss": "16112.2", "sL_NStrLoss": "4134.7", "sL_ContLoss": "1429.2", "geom_point": "0101000020E6100000D9A42E5BA3225FC032345CEC8FEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.541606199999976, 49.864886500000061 ], [ -124.541250013999928, 49.864804389000042 ], [ -124.541179542999913, 49.864805205000067 ], [ -124.541034298999989, 49.86480689600009 ], [ -124.540845302999941, 49.864844785000109 ], [ -124.540384681999953, 49.865130873000091 ], [ -124.539427577999945, 49.865725290000022 ], [ -124.539334285999985, 49.865809181000039 ], [ -124.538910452999943, 49.865803525000068 ], [ -124.538913269999952, 49.865715300000083 ], [ -124.538515282999981, 49.865720583000076 ], [ -124.538506713999979, 49.865450852000052 ], [ -124.538089426999989, 49.865456390000126 ], [ -124.53808086, 49.865186659000102 ], [ -124.537663573999936, 49.865192196000102 ], [ -124.537629318999961, 49.864113273000079 ], [ -124.538046595999944, 49.86410773700004 ], [ -124.538038030999971, 49.863838006000094 ], [ -124.538361375999955, 49.863833716000073 ], [ -124.538425794999938, 49.861816427000065 ], [ -124.540896910999962, 49.861849395000036 ], [ -124.540873131999945, 49.861101908000094 ], [ -124.541273760999957, 49.861096581000062 ], [ -124.542299805999903, 49.86167128500005 ], [ -124.54434459, 49.862845299000078 ], [ -124.543944911999944, 49.86307829500003 ], [ -124.543825150999908, 49.86314583200005 ], [ -124.54330758699993, 49.863437714000057 ], [ -124.544883406999972, 49.86462249100002 ], [ -124.544271599999945, 49.864921914000092 ], [ -124.545449694999903, 49.866146411000045 ], [ -124.54526399299999, 49.86621231400013 ], [ -124.545040405999956, 49.866245308 ], [ -124.544831817999963, 49.86624519300009 ], [ -124.544375200999966, 49.866169 ], [ -124.544164565999949, 49.866108435000044 ], [ -124.543752112999954, 49.865989797000069 ], [ -124.543366681999942, 49.865818305000111 ], [ -124.542182295999964, 49.865140611000101 ], [ -124.541606199999976, 49.864886500000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257098417", "BldgCostT": "176331667", "sL_LossRatio": "0.969365008193683", "sL_AssetLoss": "220438.12", "sL_BldgLoss": "213685", "sL_StrLoss": "171522.6", "sL_NStrLoss": "42162.4", "sL_ContLoss": "6753.12", "geom_point": "0101000020E61000002B90552150215FC009DC5771ECEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.522619005999942, 49.873822796000056 ], [ -124.522616896999978, 49.872640087000065 ], [ -124.522066189999961, 49.87263360000005 ], [ -124.5220648049999, 49.872607980000105 ], [ -124.521265944999953, 49.872824316000099 ], [ -124.520961982999964, 49.872858594000043 ], [ -124.520975402999923, 49.87285430000005 ], [ -124.521224914999905, 49.872774502000055 ], [ -124.521401408999949, 49.872619298000117 ], [ -124.521219221999914, 49.871686403000098 ], [ -124.521267825, 49.87149700300008 ], [ -124.52148629099996, 49.871341800000081 ], [ -124.521361594999959, 49.870893089000049 ], [ -124.521382919999922, 49.870860702000051 ], [ -124.521612793999935, 49.870511516000128 ], [ -124.521621698999979, 49.870313503000091 ], [ -124.521600334999917, 49.870246405000032 ], [ -124.521559095999976, 49.870116905 ], [ -124.521392084999945, 49.869973159000061 ], [ -124.5213778399999, 49.869920363000091 ], [ -124.521257263999956, 49.869778356000019 ], [ -124.521164298999935, 49.869777100000057 ], [ -124.520571311999959, 49.869266700000047 ], [ -124.520597202000019, 49.868779600000053 ], [ -124.520888914999901, 49.868308206000037 ], [ -124.52089001899995, 49.868248128000097 ], [ -124.520894091999949, 49.868020489000052 ], [ -124.520760701, 49.86757826900002 ], [ -124.520553782999954, 49.866892493000101 ], [ -124.520552379999941, 49.866415402000015 ], [ -124.519897184999977, 49.866388403 ], [ -124.519093487999925, 49.866038006000146 ], [ -124.518264392999967, 49.865824407000055 ], [ -124.518247577999944, 49.865816999000096 ], [ -124.518266098999931, 49.865244934000046 ], [ -124.518608792999913, 49.865249572000053 ], [ -124.51862873099995, 49.864633615000088 ], [ -124.51802564099998, 49.864641514000013 ], [ -124.518034095999937, 49.864911247000059 ], [ -124.516782235, 49.864927635000136 ], [ -124.516773786999963, 49.86465790200009 ], [ -124.516657041999963, 49.864659429000064 ], [ -124.516656390999941, 49.864657991000023 ], [ -124.516352178999909, 49.864525298000082 ], [ -124.51633961099999, 49.86412389500007 ], [ -124.515922330999913, 49.864129353000124 ], [ -124.51589700399991, 49.86332015300006 ], [ -124.51631427699995, 49.863314695000049 ], [ -124.516309968999948, 49.863177082000163 ], [ -124.516048020999975, 49.863048333000059 ], [ -124.515888560999912, 49.863050419000089 ], [ -124.515886003999981, 49.862968701000113 ], [ -124.515513240999923, 49.862785483000046 ], [ -124.515045580999953, 49.862791596000108 ], [ -124.515038083999983, 49.862551933000105 ], [ -124.514978467999981, 49.862522630000022 ], [ -124.514619876999944, 49.862527316000069 ], [ -124.514614130999917, 49.862343545000066 ], [ -124.514443702999984, 49.862259775000027 ], [ -124.514194176, 49.862263035000105 ], [ -124.514190179999943, 49.8621351580001 ], [ -124.513908942999961, 49.861996916000109 ], [ -124.5137684809999, 49.861998751000094 ], [ -124.513766230999948, 49.861926767000107 ], [ -124.513374189999951, 49.86173405600006 ], [ -124.512961876999938, 49.861739438000043 ], [ -124.512958039999916, 49.861857569000051 ], [ -124.51298569699992, 49.861857945000033 ], [ -124.512926453999938, 49.863681390000124 ], [ -124.51171260199996, 49.863633909000043 ], [ -124.51127051, 49.863747908000121 ], [ -124.510755192999923, 49.863719398000107 ], [ -124.510217501999975, 49.863905995000117 ], [ -124.510038115000015, 49.864411596000139 ], [ -124.509507903999946, 49.865219094000032 ], [ -124.509719913999973, 49.866224589000062 ], [ -124.510062377999972, 49.866489499000046 ], [ -124.510284798999962, 49.866495212000068 ], [ -124.510388109999937, 49.8666561080001 ], [ -124.510712814, 49.866861846000113 ], [ -124.510398282999972, 49.86720039900009 ], [ -124.510274626999944, 49.867269643000036 ], [ -124.509002722999966, 49.867981904000033 ], [ -124.508931696999966, 49.867895508000124 ], [ -124.508922363, 49.867871367000127 ], [ -124.508852811999986, 49.867691544000074 ], [ -124.508817648999965, 49.867600666000023 ], [ -124.50871293799996, 49.867329964000092 ], [ -124.508630243999932, 49.867116118000183 ], [ -124.508421092999953, 49.866575391000033 ], [ -124.508364292999914, 49.866100693000114 ], [ -124.508415885999952, 49.865882809000091 ], [ -124.508595976999942, 49.865604599000065 ], [ -124.509147545999895, 49.865011645999985 ], [ -124.509201504999908, 49.864953592000063 ], [ -124.509439019999903, 49.864586565000117 ], [ -124.509677509999946, 49.864218089000055 ], [ -124.510011478999971, 49.863570592 ], [ -124.510013269999931, 49.863548818000083 ], [ -124.510053095999922, 49.863061195000022 ], [ -124.510041202000011, 49.862900842000059 ], [ -124.510007854999955, 49.86245138400011 ], [ -124.509999006999934, 49.862331900000044 ], [ -124.509869348999956, 49.86161665000008 ], [ -124.509835100999936, 49.861427613000075 ], [ -124.509685465999908, 49.860900510000107 ], [ -124.509646691999961, 49.860763916000074 ], [ -124.509645038999949, 49.860684439000117 ], [ -124.509641120999902, 49.860495652000075 ], [ -124.509630980999958, 49.860008194000116 ], [ -124.511032875999973, 49.859312182000053 ], [ -124.511498466999939, 49.859081008000103 ], [ -124.511605791999941, 49.859027704000063 ], [ -124.513066005999974, 49.858732804000077 ], [ -124.513291403999929, 49.859243988000046 ], [ -124.513610182999969, 49.85996340500008 ], [ -124.513664007999964, 49.860023192000078 ], [ -124.513847826999921, 49.860227402000127 ], [ -124.514168875999957, 49.860465711000074 ], [ -124.514323117999965, 49.860580204000058 ], [ -124.514699251999943, 49.860816074000056 ], [ -124.514798050999971, 49.860878054000082 ], [ -124.515451795999951, 49.861288011000049 ], [ -124.517012691000019, 49.862262583000117 ], [ -124.517863398999935, 49.862793896000092 ], [ -124.518444317999936, 49.862380900000097 ], [ -124.519115491999983, 49.862484397000124 ], [ -124.519145582999968, 49.862490354000066 ], [ -124.520504489999922, 49.862759493000077 ], [ -124.520733903999911, 49.862848100000079 ], [ -124.521353500999979, 49.863085797000082 ], [ -124.522175023999949, 49.863362203000065 ], [ -124.522365990999958, 49.863476299000105 ], [ -124.522802993999946, 49.863856403000092 ], [ -124.523182118999898, 49.863531413000075 ], [ -124.523658096999924, 49.863901512000062 ], [ -124.525627296, 49.865432385000076 ], [ -124.525734484999973, 49.865474295000119 ], [ -124.5278406799999, 49.867395340000051 ], [ -124.528516912999976, 49.868012094000036 ], [ -124.528521318999978, 49.868021760000062 ], [ -124.528611785999942, 49.868219303000046 ], [ -124.528609502, 49.868592588000077 ], [ -124.528601577999964, 49.869922709000022 ], [ -124.528613083999957, 49.870774591000092 ], [ -124.528647674999888, 49.870868587000103 ], [ -124.529026691999931, 49.871886394000107 ], [ -124.528744483999958, 49.8719680130001 ], [ -124.52816419799997, 49.872189612000085 ], [ -124.527254406999987, 49.872446293000046 ], [ -124.526947895999967, 49.87259141100003 ], [ -124.525954514999938, 49.873197704000084 ], [ -124.524961697999942, 49.873656602000047 ], [ -124.524012199999945, 49.873891995000115 ], [ -124.523712204, 49.873918504000123 ], [ -124.522619005999942, 49.873822796000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.995738359105597", "sL_AssetLoss": "1844.36", "sL_BldgLoss": "1836.5", "sL_StrLoss": "1768", "sL_NStrLoss": "68.5", "sL_ContLoss": "7.86", "geom_point": "0101000020E61000002BAC0AC3F61F5FC083E8BDEF67EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.498302984999967, 49.86924244900009 ], [ -124.500625631999952, 49.869274283000031 ], [ -124.500552249999927, 49.871513912000083 ], [ -124.50005362899995, 49.871487850000051 ], [ -124.499376705999978, 49.871452509000065 ], [ -124.49856936899999, 49.871435096000027 ], [ -124.498243945999903, 49.871428099000077 ], [ -124.498302984999967, 49.86924244900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.994261673416236", "sL_AssetLoss": "698.81", "sL_BldgLoss": "694.8", "sL_StrLoss": "654", "sL_NStrLoss": "40.8", "sL_ContLoss": "4.01", "geom_point": "0101000020E6100000C2F9929538205FC0DB5561966AEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.502878761999938, 49.862515365000036 ], [ -124.502961100999983, 49.862246689000116 ], [ -124.50298359699994, 49.861854805000107 ], [ -124.503094789999977, 49.861645904000085 ], [ -124.503156046999948, 49.861597174000103 ], [ -124.503737390000012, 49.861589635000058 ], [ -124.503762512999941, 49.862398839000058 ], [ -124.504179780999962, 49.862393426000011 ], [ -124.504204911000016, 49.863202630000025 ], [ -124.50378763599997, 49.863208044000082 ], [ -124.50379601, 49.863477779000092 ], [ -124.502827666, 49.863490337000023 ], [ -124.502887292999958, 49.863099197000103 ], [ -124.502859805999933, 49.862577200000082 ], [ -124.502878761999938, 49.862515365000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136151917", "BldgCostT": "90066667", "sL_LossRatio": "0.938896275204105", "sL_AssetLoss": "161010.97", "sL_BldgLoss": "151172.6", "sL_StrLoss": "125206.7", "sL_NStrLoss": "25965.9", "sL_ContLoss": "9838.37", "geom_point": "0101000020E610000090257B9D77205FC060232802C5ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.50317075, 49.870231975000074 ], [ -124.503152345999965, 49.869639141000043 ], [ -124.50224740499999, 49.86962676500012 ], [ -124.502344518999962, 49.866659330000068 ], [ -124.50244020299999, 49.866031768000013 ], [ -124.504155779999948, 49.866055224000043 ], [ -124.504218026999965, 49.864150681000069 ], [ -124.504968861999927, 49.864160938000076 ], [ -124.504979214999963, 49.863844 ], [ -124.505483762999944, 49.863850890000066 ], [ -124.50555261699999, 49.861742209000042 ], [ -124.506205496999939, 49.86175112100004 ], [ -124.506221722999939, 49.861253954000119 ], [ -124.503730183999934, 49.861219923000128 ], [ -124.503733543999928, 49.86111715700013 ], [ -124.503822806999935, 49.86098849400009 ], [ -124.503813828999981, 49.860751242000106 ], [ -124.503804324999933, 49.860499157000149 ], [ -124.50378361099996, 49.85995082199999 ], [ -124.503777210999914, 49.859781342000076 ], [ -124.503780581999976, 49.859678192000096 ], [ -124.503773310999932, 49.859678094000046 ], [ -124.503745993000024, 49.858954706000105 ], [ -124.503874087999989, 49.858652499000044 ], [ -124.503541426999945, 49.858652010000142 ], [ -124.501291592999976, 49.858648609000092 ], [ -124.501200225000019, 49.858658697000109 ], [ -124.500791908999972, 49.858703797000025 ], [ -124.500736474999911, 49.858732802000041 ], [ -124.500555594999923, 49.858827403000056 ], [ -124.498641787999986, 49.858795397000044 ], [ -124.49863844699999, 49.858687392000085 ], [ -124.501141866999887, 49.858654997000087 ], [ -124.50113351, 49.858385261000166 ], [ -124.502385209999915, 49.85836904300006 ], [ -124.502393575999946, 49.858638779000032 ], [ -124.503338579999934, 49.858626527000077 ], [ -124.50336276099992, 49.857886962000059 ], [ -124.50286175799998, 49.857880110000131 ], [ -124.502979363999913, 49.854284026000116 ], [ -124.503564535999885, 49.854292029000106 ], [ -124.503572053999932, 49.854062040000052 ], [ -124.506844049999927, 49.854106731000094 ], [ -124.506832144999976, 49.85372397000009 ], [ -124.505580566, 49.853740235000068 ], [ -124.505562964999939, 49.853173762000026 ], [ -124.504875527999971, 49.85316437300002 ], [ -124.504992963999953, 49.849568264000091 ], [ -124.505033630999932, 49.84956881900014 ], [ -124.505032310999965, 49.849526283000095 ], [ -124.50493747299997, 49.849431080000087 ], [ -124.50461216099994, 49.849435303000085 ], [ -124.504601557999962, 49.849093870000104 ], [ -124.504406725999957, 49.848898282000057 ], [ -124.504178258999943, 49.848901248000082 ], [ -124.504170814999952, 49.848661455000091 ], [ -124.504038639999976, 49.848528764000108 ], [ -124.503951238999946, 49.848335165000051 ], [ -124.50415726300001, 49.848224844000121 ], [ -124.504138842999936, 49.847631392000089 ], [ -124.504056438999953, 49.847630265000099 ], [ -124.504077086999985, 49.846998291000041 ], [ -124.50408406499993, 49.846784686000042 ], [ -124.504031839000021, 49.846725764000013 ], [ -124.504069239999978, 49.846673264000103 ], [ -124.504088067999973, 49.846662196000068 ], [ -124.50409201599993, 49.846541371000107 ], [ -124.504459298999961, 49.846490309000089 ], [ -124.506169541999938, 49.846481539000088 ], [ -124.50666068699995, 49.846479015000106 ], [ -124.50704614699994, 49.846477257000075 ], [ -124.507588669999947, 49.846474790000109 ], [ -124.507839133999965, 49.846473649000139 ], [ -124.508095804999982, 49.846472496000047 ], [ -124.508339765999921, 49.846471032000139 ], [ -124.509423888999919, 49.84646449400001 ], [ -124.512162905999972, 49.846468500000071 ], [ -124.512149629999954, 49.848292631000028 ], [ -124.512144711999937, 49.848967345000084 ], [ -124.51214308599998, 49.849192108000167 ], [ -124.512141438999933, 49.849416848000047 ], [ -124.512139226000016, 49.84972276000012 ], [ -124.51213905699997, 49.849745452000022 ], [ -124.512136072999979, 49.850154502000102 ], [ -124.51212678399996, 49.85143020100007 ], [ -124.509523215999948, 49.851444191000056 ], [ -124.509746700999955, 49.851712613000061 ], [ -124.510084100999975, 49.852026582000093 ], [ -124.511675640999982, 49.855587794000023 ], [ -124.51179518, 49.855855292000065 ], [ -124.512454260999959, 49.857349668000069 ], [ -124.512918643999967, 49.858402603000094 ], [ -124.512954517999987, 49.858483901000049 ], [ -124.513066005999974, 49.858732804000077 ], [ -124.511605791999941, 49.859027704000063 ], [ -124.511498466999939, 49.859081008000103 ], [ -124.511032875999973, 49.859312182000053 ], [ -124.509630980999958, 49.860008194000116 ], [ -124.509641120999902, 49.860495652000075 ], [ -124.509645038999949, 49.860684439000117 ], [ -124.509646691999961, 49.860763916000074 ], [ -124.509685465999908, 49.860900510000107 ], [ -124.509835100999936, 49.861427613000075 ], [ -124.509869348999956, 49.86161665000008 ], [ -124.509999006999934, 49.862331900000044 ], [ -124.510007854999955, 49.86245138400011 ], [ -124.510041202000011, 49.862900842000059 ], [ -124.510053095999922, 49.863061195000022 ], [ -124.510013269999931, 49.863548818000083 ], [ -124.510011478999971, 49.863570592 ], [ -124.509677509999946, 49.864218089000055 ], [ -124.509439019999903, 49.864586565000117 ], [ -124.509201504999908, 49.864953592000063 ], [ -124.509147545999895, 49.865011645999985 ], [ -124.508595976999942, 49.865604599000065 ], [ -124.508415885999952, 49.865882809000091 ], [ -124.508364292999914, 49.866100693000114 ], [ -124.508421092999953, 49.866575391000033 ], [ -124.508630243999932, 49.867116118000183 ], [ -124.50871293799996, 49.867329964000092 ], [ -124.508817648999965, 49.867600666000023 ], [ -124.508852811999986, 49.867691544000074 ], [ -124.508922363, 49.867871367000127 ], [ -124.508931696999966, 49.867895508000124 ], [ -124.509002722999966, 49.867981904000033 ], [ -124.509152406999988, 49.868167384000067 ], [ -124.509644970999972, 49.868544062000062 ], [ -124.510038717000015, 49.868845090000036 ], [ -124.507738577999973, 49.86932626600008 ], [ -124.50638158799994, 49.869610093000084 ], [ -124.505558000999926, 49.869909102000051 ], [ -124.505098683999933, 49.870044996000082 ], [ -124.504437573999951, 49.870267099000031 ], [ -124.50409575099998, 49.870437229000103 ], [ -124.503906134999937, 49.870531633000027 ], [ -124.50246769499995, 49.871247499000042 ], [ -124.502368575999967, 49.871290257000112 ], [ -124.502344444999906, 49.87051253000002 ], [ -124.50276178499999, 49.870507121000074 ], [ -124.502753411999976, 49.870237387000039 ], [ -124.50317075, 49.870231975000074 ] ], [ [ -124.510573159999936, 49.857183247000144 ], [ -124.510461141999912, 49.856914863000021 ], [ -124.510412564999939, 49.856915496000099 ], [ -124.510403779999976, 49.857185455000085 ], [ -124.510573159999936, 49.857183247000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108873137", "BldgCostT": "70357080", "sL_LossRatio": "0.949020707076849", "sL_AssetLoss": "117586.37", "sL_BldgLoss": "111591.9", "sL_StrLoss": "92408.6", "sL_NStrLoss": "19183.3", "sL_ContLoss": "5994.47", "geom_point": "0101000020E6100000E3A950D52B215FC061D562E8BFEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.511675640999982, 49.855587794000023 ], [ -124.510084100999975, 49.852026582000093 ], [ -124.509746700999955, 49.851712613000061 ], [ -124.509523215999948, 49.851444191000056 ], [ -124.51212678399996, 49.85143020100007 ], [ -124.513067962999955, 49.851520343000054 ], [ -124.514318233999958, 49.85100276700004 ], [ -124.514604335999962, 49.850902072000054 ], [ -124.514400753999979, 49.850806467000098 ], [ -124.51488640599996, 49.849650785000108 ], [ -124.514885170999946, 49.849343195000067 ], [ -124.514880137999967, 49.848643157000048 ], [ -124.51487394899999, 49.847791018000052 ], [ -124.514872656999941, 49.847610209000102 ], [ -124.51486440599993, 49.846471108000088 ], [ -124.515670002, 49.846471776000058 ], [ -124.516421580999975, 49.846472395000042 ], [ -124.517137601999963, 49.84647310400009 ], [ -124.51770171599999, 49.846476140000085 ], [ -124.518787704999966, 49.8464819820001 ], [ -124.520698977999984, 49.845897992000047 ], [ -124.520739536999898, 49.845886843000123 ], [ -124.520813987999972, 49.845866296000075 ], [ -124.520889495999967, 49.846110996000057 ], [ -124.52200002499994, 49.847673973000063 ], [ -124.523161421999987, 49.847132812000098 ], [ -124.524093529999917, 49.846698458000091 ], [ -124.524190958999895, 49.846651217000066 ], [ -124.525680157999943, 49.845958944000103 ], [ -124.525786113999985, 49.84590820600009 ], [ -124.526418382, 49.845615398000092 ], [ -124.52687011099999, 49.845404691000063 ], [ -124.52738609299999, 49.846436092000012 ], [ -124.52749240199995, 49.84689359 ], [ -124.527478408999954, 49.847067980000112 ], [ -124.527471489999982, 49.847154112000027 ], [ -124.527421076999957, 49.84728527500009 ], [ -124.527375884999941, 49.847402908000042 ], [ -124.527204699, 49.84762269800008 ], [ -124.526984395999975, 49.8477709020001 ], [ -124.526876579999978, 49.847806135000056 ], [ -124.526717521999927, 49.847858101000071 ], [ -124.526397644999975, 49.8479142710001 ], [ -124.526357816999962, 49.847921278000101 ], [ -124.526313307999914, 49.847929107000063 ], [ -124.525226028999938, 49.848014304000095 ], [ -124.524984294999939, 49.848076767000101 ], [ -124.523819703999948, 49.848377613000054 ], [ -124.522657967, 49.848743284000065 ], [ -124.522624808000032, 49.848995569000031 ], [ -124.522566748999949, 49.849071232000092 ], [ -124.522442423999976, 49.849477014000094 ], [ -124.522259789999978, 49.849750660000034 ], [ -124.521293548999935, 49.850605556000069 ], [ -124.52112449399999, 49.85074907400012 ], [ -124.520267413999974, 49.851476703000117 ], [ -124.519359055999971, 49.852247826000074 ], [ -124.519284963999951, 49.852310780000089 ], [ -124.518588267999974, 49.852902519000061 ], [ -124.518434787999979, 49.853032859000081 ], [ -124.517245033999984, 49.85304844000008 ], [ -124.517228142999954, 49.852508972000081 ], [ -124.51597660099999, 49.852525348000086 ], [ -124.51595972299999, 49.851985880000086 ], [ -124.515125368999961, 49.851996790000051 ], [ -124.515117756, 49.851753323 ], [ -124.513030146999981, 49.851724978000085 ], [ -124.513031062999957, 49.851754305000078 ], [ -124.511779537, 49.851770635 ], [ -124.511794066999968, 49.852236296000122 ], [ -124.511843772999953, 49.852309486000067 ], [ -124.512213549999956, 49.852304663000034 ], [ -124.512230385999928, 49.852844131000111 ], [ -124.51264757, 49.852838687000059 ], [ -124.512668983, 49.853524551000127 ], [ -124.512718638999928, 49.853597664000048 ], [ -124.512671450999974, 49.853603584000012 ], [ -124.5126728339999, 49.853647891000023 ], [ -124.51309002499994, 49.853642445000048 ], [ -124.513148993999948, 49.855530584000114 ], [ -124.513543623999951, 49.855525431000103 ], [ -124.51179518, 49.855855292000065 ], [ -124.511675640999982, 49.855587794000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "358160260", "BldgCostT": "227073460", "sL_LossRatio": "0.717107090233836", "sL_AssetLoss": "320471.8", "sL_BldgLoss": "229812.6", "sL_StrLoss": "134176.6", "sL_NStrLoss": "95636", "sL_ContLoss": "90659.2", "geom_point": "0101000020E6100000976767C90A215FC042B8E245D3EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.513472989999968, 49.841788604000072 ], [ -124.513487621999943, 49.838897101000057 ], [ -124.512152119999939, 49.83888339900011 ], [ -124.512146740999981, 49.83785885599999 ], [ -124.512144751000022, 49.837481217000075 ], [ -124.512142075999947, 49.836967492000085 ], [ -124.513490473999966, 49.83696783200002 ], [ -124.51403548399999, 49.836879896 ], [ -124.515000699999945, 49.836565602000036 ], [ -124.516461781999922, 49.83609073700007 ], [ -124.517044764, 49.835900808000112 ], [ -124.517788524999958, 49.835901801000013 ], [ -124.51799010799999, 49.835900095000063 ], [ -124.519130003999933, 49.835900198000076 ], [ -124.520639700999979, 49.835898202000052 ], [ -124.520735623999911, 49.835896799000125 ], [ -124.52076928799994, 49.83640449500011 ], [ -124.520769304999931, 49.836413541000141 ], [ -124.520772397999977, 49.837804072000033 ], [ -124.520771311000018, 49.837813165000085 ], [ -124.520775373999982, 49.838882492000074 ], [ -124.520775407999949, 49.838891503000056 ], [ -124.52077908699999, 49.840792997000094 ], [ -124.520782488999927, 49.841806693000102 ], [ -124.520813987999972, 49.845866296000075 ], [ -124.520739536999898, 49.845886843000123 ], [ -124.520698977999984, 49.845897992000047 ], [ -124.518787704999966, 49.8464819820001 ], [ -124.51770171599999, 49.846476140000085 ], [ -124.517137601999963, 49.84647310400009 ], [ -124.516421580999975, 49.846472395000042 ], [ -124.515670002, 49.846471776000058 ], [ -124.51486440599993, 49.846471108000088 ], [ -124.514872656999941, 49.847610209000102 ], [ -124.51487394899999, 49.847791018000052 ], [ -124.514880137999967, 49.848643157000048 ], [ -124.514885170999946, 49.849343195000067 ], [ -124.51488640599996, 49.849650785000108 ], [ -124.514400753999979, 49.850806467000098 ], [ -124.514604335999962, 49.850902072000054 ], [ -124.514318233999958, 49.85100276700004 ], [ -124.513067962999955, 49.851520343000054 ], [ -124.51212678399996, 49.85143020100007 ], [ -124.512136072999979, 49.850154502000102 ], [ -124.51213905699997, 49.849745452000022 ], [ -124.512139226000016, 49.84972276000012 ], [ -124.512141438999933, 49.849416848000047 ], [ -124.51214308599998, 49.849192108000167 ], [ -124.512144711999937, 49.848967345000084 ], [ -124.512149629999954, 49.848292631000028 ], [ -124.512162905999972, 49.846468500000071 ], [ -124.512162287999956, 49.841778901000055 ], [ -124.513472989999968, 49.841788604000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "356372211", "BldgCostT": "227223140", "sL_LossRatio": "0.896093195226382", "sL_AssetLoss": "233625.7", "sL_BldgLoss": "209350.4", "sL_StrLoss": "143513.4", "sL_NStrLoss": "65837", "sL_ContLoss": "24275.3", "geom_point": "0101000020E610000041ECE97678215FC00CCE4CD5E2EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.520813987999972, 49.845866296000075 ], [ -124.520782488999927, 49.841806693000102 ], [ -124.52077908699999, 49.840792997000094 ], [ -124.520775407999949, 49.838891503000056 ], [ -124.520775373999982, 49.838882492000074 ], [ -124.520771311000018, 49.837813165000085 ], [ -124.520772397999977, 49.837804072000033 ], [ -124.52208649899994, 49.837802906000029 ], [ -124.523754699999955, 49.837799386000029 ], [ -124.523759496999958, 49.83890131100005 ], [ -124.523760109999913, 49.839444510000128 ], [ -124.52367901199996, 49.839934497000066 ], [ -124.523682204999929, 49.840783598000073 ], [ -124.524768724999916, 49.840786110000131 ], [ -124.525287784999961, 49.840787310000096 ], [ -124.525291515000021, 49.842398296000027 ], [ -124.525292601999965, 49.843314780000036 ], [ -124.525086292999973, 49.844237492000033 ], [ -124.525109206999957, 49.844302595000045 ], [ -124.525359792999893, 49.844251096000072 ], [ -124.525586091, 49.844259517000104 ], [ -124.52618600199996, 49.844411507000075 ], [ -124.526406698999921, 49.844466701000023 ], [ -124.52687011099999, 49.845404691000063 ], [ -124.526418382, 49.845615398000092 ], [ -124.525786113999985, 49.84590820600009 ], [ -124.525680157999943, 49.845958944000103 ], [ -124.524190958999895, 49.846651217000066 ], [ -124.524093529999917, 49.846698458000091 ], [ -124.523161421999987, 49.847132812000098 ], [ -124.52200002499994, 49.847673973000063 ], [ -124.520889495999967, 49.846110996000057 ], [ -124.520813987999972, 49.845866296000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "575418163", "BldgCostT": "361878348", "sL_LossRatio": "0.730036803672687", "sL_AssetLoss": "476555.7", "sL_BldgLoss": "347903.2", "sL_StrLoss": "195139.9", "sL_NStrLoss": "152763.3", "sL_ContLoss": "128652.5", "geom_point": "0101000020E6100000FFDED879BC215FC0BFFF0BDB81EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.525586091, 49.844259517000104 ], [ -124.525359792999893, 49.844251096000072 ], [ -124.525109206999957, 49.844302595000045 ], [ -124.525086292999973, 49.844237492000033 ], [ -124.525292601999965, 49.843314780000036 ], [ -124.525291515000021, 49.842398296000027 ], [ -124.525287784999961, 49.840787310000096 ], [ -124.524768724999916, 49.840786110000131 ], [ -124.523682204999929, 49.840783598000073 ], [ -124.52367901199996, 49.839934497000066 ], [ -124.523760109999913, 49.839444510000128 ], [ -124.523759496999958, 49.83890131100005 ], [ -124.523754699999955, 49.837799386000029 ], [ -124.52554389, 49.837799192000027 ], [ -124.525542832, 49.835889700000024 ], [ -124.526325411999963, 49.835890405000065 ], [ -124.526603596999948, 49.835971504000049 ], [ -124.527170491999925, 49.836410792000017 ], [ -124.527426902999977, 49.83596009700009 ], [ -124.528101796, 49.835980806000052 ], [ -124.529108679999965, 49.836009697000044 ], [ -124.529174137999945, 49.835963957000033 ], [ -124.529397507999974, 49.83596117600009 ], [ -124.529471589999957, 49.836021395000095 ], [ -124.529453790999966, 49.83628199200006 ], [ -124.529752987, 49.836998392000041 ], [ -124.5297548, 49.83746549900016 ], [ -124.529943580999912, 49.838173395000076 ], [ -124.530236714999972, 49.83824170200009 ], [ -124.530325300999962, 49.838375599000059 ], [ -124.530305281999915, 49.839069193000043 ], [ -124.529922972999984, 49.839271395000019 ], [ -124.529880496999937, 49.839667415000079 ], [ -124.53025189, 49.841317994000079 ], [ -124.53023370199999, 49.841752813000063 ], [ -124.52988640299999, 49.841749496000062 ], [ -124.529104978999982, 49.84175069300003 ], [ -124.528162485999957, 49.841748799000115 ], [ -124.52813861199995, 49.842144301000111 ], [ -124.528251915999945, 49.84251459700009 ], [ -124.528492506999967, 49.843028704000055 ], [ -124.528916756999976, 49.843949909000052 ], [ -124.529085208999931, 49.844315599000019 ], [ -124.528817365999927, 49.844234527000062 ], [ -124.528604644999945, 49.844170127000062 ], [ -124.528519304999932, 49.844144299000064 ], [ -124.527942890999896, 49.844254399000107 ], [ -124.526693616, 49.844493902000103 ], [ -124.526406698999921, 49.844466701000023 ], [ -124.52618600199996, 49.844411507000075 ], [ -124.525586091, 49.844259517000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "516391555", "BldgCostT": "316171550", "sL_LossRatio": "0.712390756550585", "sL_AssetLoss": "658883.9", "sL_BldgLoss": "469382.8", "sL_StrLoss": "288336.8", "sL_NStrLoss": "181046", "sL_ContLoss": "189501.1", "geom_point": "0101000020E610000002F1DCD631215FC0EDE8BF41DAEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.52076928799994, 49.83640449500011 ], [ -124.520735623999911, 49.835896799000125 ], [ -124.520639700999979, 49.835898202000052 ], [ -124.519130003999933, 49.835900198000076 ], [ -124.51799010799999, 49.835900095000063 ], [ -124.517788524999958, 49.835901801000013 ], [ -124.517044764, 49.835900808000112 ], [ -124.516461781999922, 49.83609073700007 ], [ -124.515000699999945, 49.836565602000036 ], [ -124.51403548399999, 49.836879896 ], [ -124.513490473999966, 49.83696783200002 ], [ -124.512142075999947, 49.836967492000085 ], [ -124.510803388999989, 49.836967259000097 ], [ -124.509424241999909, 49.836970961000112 ], [ -124.50942411599999, 49.835780220000025 ], [ -124.509424047999943, 49.835222581000075 ], [ -124.509423847999969, 49.833353385000123 ], [ -124.510962445999951, 49.833358154000116 ], [ -124.512249465999957, 49.833362150000013 ], [ -124.513707417999967, 49.833367586000065 ], [ -124.515000014999941, 49.833370756000072 ], [ -124.516708709999975, 49.833321196000071 ], [ -124.517878375999985, 49.833339600000038 ], [ -124.5189204799999, 49.833351998000083 ], [ -124.518927302999941, 49.831550499000073 ], [ -124.520535506999977, 49.831549739000131 ], [ -124.520620310999959, 49.831549074000115 ], [ -124.520610686999973, 49.83094272200006 ], [ -124.521340644999952, 49.831150469000136 ], [ -124.521779062999926, 49.831348875000053 ], [ -124.522979683999949, 49.831874197000083 ], [ -124.523938098999963, 49.832283792000084 ], [ -124.524330392999957, 49.832446510000047 ], [ -124.525912588999986, 49.833555197000038 ], [ -124.52606770499996, 49.833832589000025 ], [ -124.52653639299993, 49.834688816000025 ], [ -124.527170491999925, 49.836410792000017 ], [ -124.526603596999948, 49.835971504000049 ], [ -124.526325411999963, 49.835890405000065 ], [ -124.525542832, 49.835889700000024 ], [ -124.52554389, 49.837799192000027 ], [ -124.523754699999955, 49.837799386000029 ], [ -124.52208649899994, 49.837802906000029 ], [ -124.520772397999977, 49.837804072000033 ], [ -124.520769304999931, 49.836413541000141 ], [ -124.52076928799994, 49.83640449500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124801289", "BldgCostT": "79383047", "sL_LossRatio": "0.898001477290148", "sL_AssetLoss": "143506", "sL_BldgLoss": "128868.6", "sL_StrLoss": "99229", "sL_NStrLoss": "29639.6", "sL_ContLoss": "14637.4", "geom_point": "0101000020E61000006FC8B389DB205FC0CB78EF036BEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.509423847999969, 49.833353385000123 ], [ -124.509423694999953, 49.83228140000007 ], [ -124.509423627000018, 49.832048340000064 ], [ -124.509423636999941, 49.831903754000031 ], [ -124.509423598999916, 49.831568014000013 ], [ -124.50942375899993, 49.831076410000065 ], [ -124.509423772999952, 49.831031446000061 ], [ -124.509423896999948, 49.830661306000074 ], [ -124.509422793999974, 49.829755615000074 ], [ -124.509417510999924, 49.827994407000077 ], [ -124.50936728799995, 49.827957700000177 ], [ -124.51088190199998, 49.827956322000084 ], [ -124.512219398999989, 49.827955105000115 ], [ -124.512222021999918, 49.828859104000131 ], [ -124.512228016000023, 49.829745194000061 ], [ -124.512232885999978, 49.830663585000089 ], [ -124.514994590999947, 49.83066510000004 ], [ -124.51893079499996, 49.830668997000025 ], [ -124.518927302999941, 49.831550499000073 ], [ -124.5189204799999, 49.833351998000083 ], [ -124.517878375999985, 49.833339600000038 ], [ -124.516708709999975, 49.833321196000071 ], [ -124.515000014999941, 49.833370756000072 ], [ -124.513707417999967, 49.833367586000065 ], [ -124.512249465999957, 49.833362150000013 ], [ -124.510962445999951, 49.833358154000116 ], [ -124.509423847999969, 49.833353385000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134278220", "BldgCostT": "88315413", "sL_LossRatio": "0.95944280177143", "sL_AssetLoss": "150567.6", "sL_BldgLoss": "144461", "sL_StrLoss": "120869.6", "sL_NStrLoss": "23591.4", "sL_ContLoss": "6106.6", "geom_point": "0101000020E6100000B05582C561215FC0B2152CBCE8E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.518927302999941, 49.831550499000073 ], [ -124.51893079499996, 49.830668997000025 ], [ -124.514994590999947, 49.83066510000004 ], [ -124.51502959, 49.829733391000104 ], [ -124.51647331199996, 49.829727274000099 ], [ -124.518691052999955, 49.829743853000096 ], [ -124.517744517999944, 49.829101404000056 ], [ -124.51754439, 49.828840592000063 ], [ -124.517224313999961, 49.828424296000087 ], [ -124.518336116999961, 49.828429401000051 ], [ -124.51836948299993, 49.826150704000071 ], [ -124.518370611999941, 49.826073294000061 ], [ -124.518621072999949, 49.826104592 ], [ -124.519140687999979, 49.82611170800007 ], [ -124.51981804199994, 49.826120010000132 ], [ -124.520593797999965, 49.82612951100009 ], [ -124.521151787999912, 49.826128655000069 ], [ -124.521789084999952, 49.826127710000023 ], [ -124.521777589999914, 49.823685499000128 ], [ -124.522437387999915, 49.823683340000116 ], [ -124.52311879799997, 49.823681103000126 ], [ -124.523786207999976, 49.823679115000104 ], [ -124.524423822999921, 49.823677196000077 ], [ -124.525435696999935, 49.823673692000114 ], [ -124.525585585999963, 49.82497460400009 ], [ -124.525839111999971, 49.826121189000048 ], [ -124.526439208999975, 49.82842290100011 ], [ -124.523781932999938, 49.828389559000072 ], [ -124.521612692999923, 49.828362294000087 ], [ -124.520569885999961, 49.828375105000092 ], [ -124.520574875999941, 49.829254851000066 ], [ -124.520576714999962, 49.830273069000022 ], [ -124.52061040699999, 49.830349082000069 ], [ -124.520610686999973, 49.83094272200006 ], [ -124.520620310999959, 49.831549074000115 ], [ -124.520535506999977, 49.831549739000131 ], [ -124.518927302999941, 49.831550499000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145205000", "BldgCostT": "94040000", "sL_LossRatio": "0.959955792807643", "sL_AssetLoss": "143985.62", "sL_BldgLoss": "138219.83", "sL_StrLoss": "116115.03", "sL_NStrLoss": "22104.8", "sL_ContLoss": "5765.79", "geom_point": "0101000020E61000003C10D421DE205FC0C5FF91A7B4E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.512222021999918, 49.828859104000131 ], [ -124.512219398999989, 49.827955105000115 ], [ -124.51088190199998, 49.827956322000084 ], [ -124.50936728799995, 49.827957700000177 ], [ -124.509308900999898, 49.827916398000148 ], [ -124.509315810999979, 49.82761309300006 ], [ -124.509325594999922, 49.827182350000093 ], [ -124.509330916, 49.826948395000109 ], [ -124.509331405999959, 49.826926387000071 ], [ -124.509383193999966, 49.8263486190001 ], [ -124.509396819999921, 49.825931081000093 ], [ -124.510263433999953, 49.825942889000089 ], [ -124.51027157, 49.825692734000022 ], [ -124.510329881999937, 49.825693529000084 ], [ -124.510350006999886, 49.825074636000039 ], [ -124.509696160999965, 49.825083155000044 ], [ -124.50963739, 49.823195003000109 ], [ -124.509486037000016, 49.823196975000023 ], [ -124.509505320999935, 49.822605994000078 ], [ -124.509482014999904, 49.821613597000031 ], [ -124.509410527999961, 49.821310310000086 ], [ -124.509373335999911, 49.821152466000044 ], [ -124.512559462999889, 49.82120572500002 ], [ -124.513691824999938, 49.821164859000035 ], [ -124.513749709999956, 49.821162769000111 ], [ -124.513929866999931, 49.82115980700015 ], [ -124.514110029999969, 49.821156903000059 ], [ -124.514290317999937, 49.821158921000084 ], [ -124.514470642000035, 49.821160925000129 ], [ -124.515070392999931, 49.821253346000034 ], [ -124.515279515999936, 49.823675707000078 ], [ -124.517429289999953, 49.82552630300011 ], [ -124.517801301999953, 49.825841705000116 ], [ -124.51796201199997, 49.82594395600006 ], [ -124.518016485999937, 49.825978606000071 ], [ -124.518370611999941, 49.826073294000061 ], [ -124.51836948299993, 49.826150704000071 ], [ -124.518336116999961, 49.828429401000051 ], [ -124.517224313999961, 49.828424296000087 ], [ -124.51754439, 49.828840592000063 ], [ -124.517744517999944, 49.829101404000056 ], [ -124.518691052999955, 49.829743853000096 ], [ -124.51647331199996, 49.829727274000099 ], [ -124.51502959, 49.829733391000104 ], [ -124.514994590999947, 49.83066510000004 ], [ -124.512232885999978, 49.830663585000089 ], [ -124.512228016000023, 49.829745194000061 ], [ -124.512222021999918, 49.828859104000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118052478", "BldgCostT": "75829857", "sL_LossRatio": "0.86853103645092", "sL_AssetLoss": "142650.17", "sL_BldgLoss": "123896.1", "sL_StrLoss": "94479.8", "sL_NStrLoss": "29416.3", "sL_ContLoss": "18754.07", "geom_point": "0101000020E610000042D653AB2F215FC074B54FA655E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.515279515999936, 49.823675707000078 ], [ -124.515070392999931, 49.821253346000034 ], [ -124.515173272999945, 49.821253570000103 ], [ -124.51548031899992, 49.821254406000058 ], [ -124.515683279999948, 49.821229548000133 ], [ -124.515910002999973, 49.821201789000085 ], [ -124.516144576999949, 49.820480894000063 ], [ -124.516295118999935, 49.820338996000039 ], [ -124.516547701999968, 49.820264206000118 ], [ -124.517323322999943, 49.820256704000045 ], [ -124.518507588999967, 49.820245796000073 ], [ -124.518855605999931, 49.819670419000097 ], [ -124.518989810999926, 49.819170306000039 ], [ -124.518998793999955, 49.818806090000081 ], [ -124.520367490999945, 49.818806701000028 ], [ -124.520454895999961, 49.821266085000019 ], [ -124.520477993999947, 49.823690408000097 ], [ -124.52114456, 49.823687889000105 ], [ -124.521777589999914, 49.823685499000128 ], [ -124.521789084999952, 49.826127710000023 ], [ -124.521151787999912, 49.826128655000069 ], [ -124.520593797999965, 49.82612951100009 ], [ -124.51981804199994, 49.826120010000132 ], [ -124.519140687999979, 49.82611170800007 ], [ -124.518621072999949, 49.826104592 ], [ -124.518370611999941, 49.826073294000061 ], [ -124.518016485999937, 49.825978606000071 ], [ -124.51796201199997, 49.82594395600006 ], [ -124.517801301999953, 49.825841705000116 ], [ -124.517429289999953, 49.82552630300011 ], [ -124.515279515999936, 49.823675707000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125373500", "BldgCostT": "86255000", "sL_LossRatio": "0.948351859998591", "sL_AssetLoss": "156231.57", "sL_BldgLoss": "148162.5", "sL_StrLoss": "123906.2", "sL_NStrLoss": "24256.3", "sL_ContLoss": "8069.07", "geom_point": "0101000020E6100000F1E1E52B79215FC0F7B3377CFBE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.521490305999947, 49.818807393000093 ], [ -124.521600582999923, 49.816336298000117 ], [ -124.522888483000017, 49.816340202000148 ], [ -124.523985706999923, 49.816357688000018 ], [ -124.524121826999959, 49.816409963000083 ], [ -124.524143491999965, 49.816418298000031 ], [ -124.524639678999947, 49.816458293000068 ], [ -124.525046386999961, 49.816455147000035 ], [ -124.52570008899994, 49.816450088000053 ], [ -124.525310196999939, 49.818808710000035 ], [ -124.52504490599992, 49.82100520300002 ], [ -124.525045096999989, 49.821257913000089 ], [ -124.525100110999944, 49.821793809000091 ], [ -124.525285384999961, 49.82260049200007 ], [ -124.525435696999935, 49.823673692000114 ], [ -124.524423822999921, 49.823677196000077 ], [ -124.523786207999976, 49.823679115000104 ], [ -124.52311879799997, 49.823681103000126 ], [ -124.522437387999915, 49.823683340000116 ], [ -124.521777589999914, 49.823685499000128 ], [ -124.52114456, 49.823687889000105 ], [ -124.520477993999947, 49.823690408000097 ], [ -124.520454895999961, 49.821266085000019 ], [ -124.520367490999945, 49.818806701000028 ], [ -124.521269424999986, 49.818807273000118 ], [ -124.521490305999947, 49.818807393000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138484500", "BldgCostT": "93300000", "sL_LossRatio": "0.963784608000582", "sL_AssetLoss": "177472.33", "sL_BldgLoss": "171045.1", "sL_StrLoss": "145318.6", "sL_NStrLoss": "25726.5", "sL_ContLoss": "6427.23", "geom_point": "0101000020E6100000BF9835CA9D215FC02F63967FA5E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.527170491999925, 49.836410792000017 ], [ -124.52653639299993, 49.834688816000025 ], [ -124.52606770499996, 49.833832589000025 ], [ -124.525912588999986, 49.833555197000038 ], [ -124.524330392999957, 49.832446510000047 ], [ -124.523938098999963, 49.832283792000084 ], [ -124.522979683999949, 49.831874197000083 ], [ -124.521779062999926, 49.831348875000053 ], [ -124.521340644999952, 49.831150469000136 ], [ -124.520610686999973, 49.83094272200006 ], [ -124.52061040699999, 49.830349082000069 ], [ -124.520576714999962, 49.830273069000022 ], [ -124.520574875999941, 49.829254851000066 ], [ -124.520569885999961, 49.828375105000092 ], [ -124.521612692999923, 49.828362294000087 ], [ -124.523781932999938, 49.828389559000072 ], [ -124.526439208999975, 49.82842290100011 ], [ -124.525839111999971, 49.826121189000048 ], [ -124.525585585999963, 49.82497460400009 ], [ -124.525435696999935, 49.823673692000114 ], [ -124.525285384999961, 49.82260049200007 ], [ -124.525100110999944, 49.821793809000091 ], [ -124.525045096999989, 49.821257913000089 ], [ -124.52504490599992, 49.82100520300002 ], [ -124.525310196999939, 49.818808710000035 ], [ -124.52570008899994, 49.816450088000053 ], [ -124.526048420000023, 49.815127204000127 ], [ -124.526047090999953, 49.814691802000056 ], [ -124.526007709999988, 49.814602547000099 ], [ -124.525940916999957, 49.8144512040001 ], [ -124.525491511999945, 49.81386579800008 ], [ -124.52524999699996, 49.81312319000012 ], [ -124.525082151999982, 49.81261839700008 ], [ -124.524892800999964, 49.812048892000092 ], [ -124.524762522999964, 49.811652566000156 ], [ -124.524500500999949, 49.810855393000075 ], [ -124.524374620999978, 49.810666602000069 ], [ -124.523991842999976, 49.810223212000025 ], [ -124.523620512999941, 49.809793009000032 ], [ -124.523535807, 49.809619989000062 ], [ -124.523461097, 49.80926459700008 ], [ -124.52337241399999, 49.808656304000031 ], [ -124.524883114999938, 49.80868120000013 ], [ -124.524915486999959, 49.80754381 ], [ -124.52527629399998, 49.807556701000038 ], [ -124.525817295999985, 49.807581094000057 ], [ -124.525817902999947, 49.807581108000107 ], [ -124.52581849100001, 49.807581101000082 ], [ -124.525873070999964, 49.807581475000092 ], [ -124.526035402999952, 49.807581207000062 ], [ -124.526012574999953, 49.807869136000072 ], [ -124.52596498399997, 49.80786976400006 ], [ -124.525955938999971, 49.807919364000071 ], [ -124.52598699399999, 49.808191777000118 ], [ -124.525973403999899, 49.808363188000051 ], [ -124.526768905999973, 49.811077809000075 ], [ -124.526730189999967, 49.813444803000067 ], [ -124.525760708999954, 49.817522292000056 ], [ -124.525423190999902, 49.821235661000088 ], [ -124.525398891999927, 49.821502993000074 ], [ -124.525829809999934, 49.823681198000017 ], [ -124.526291812999929, 49.826016302000014 ], [ -124.52656239699995, 49.826668586000046 ], [ -124.526792182999912, 49.826890795000033 ], [ -124.526690491999929, 49.827621411000109 ], [ -124.527010614999966, 49.828498690000075 ], [ -124.526969109999953, 49.828930188000108 ], [ -124.527566103999973, 49.831170484000019 ], [ -124.527741193999987, 49.831429699000083 ], [ -124.528215691999947, 49.831451091000105 ], [ -124.528354755999985, 49.831551026000049 ], [ -124.528483339000033, 49.832113964000079 ], [ -124.528486452999928, 49.832122670000032 ], [ -124.52868816199999, 49.832120010000075 ], [ -124.528689351999972, 49.832157798000019 ], [ -124.528670607999942, 49.832173196000035 ], [ -124.52869013599998, 49.832182624000012 ], [ -124.528691824999939, 49.832236233000096 ], [ -124.528630315999962, 49.832237301000063 ], [ -124.528384303999971, 49.832419494000064 ], [ -124.528402879999973, 49.832967895000053 ], [ -124.528273288999955, 49.83330260900005 ], [ -124.528279012999974, 49.83389649700009 ], [ -124.528594578999957, 49.834656994000099 ], [ -124.528579509999972, 49.835025907000059 ], [ -124.528916204999959, 49.83556989699999 ], [ -124.529397507999974, 49.83596117600009 ], [ -124.529174137999945, 49.835963957000033 ], [ -124.529108679999965, 49.836009697000044 ], [ -124.528101796, 49.835980806000052 ], [ -124.527426902999977, 49.83596009700009 ], [ -124.527170491999925, 49.836410792000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145285250", "BldgCostT": "98780000", "sL_LossRatio": "0.943524695238031", "sL_AssetLoss": "177548.4", "sL_BldgLoss": "167521.3", "sL_StrLoss": "140150.4", "sL_NStrLoss": "27370.9", "sL_ContLoss": "10027.1", "geom_point": "0101000020E6100000B2167EF476215FC061A11851C1E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.523985706999923, 49.816357688000018 ], [ -124.522888483000017, 49.816340202000148 ], [ -124.521600582999923, 49.816336298000117 ], [ -124.520282804000018, 49.816354488000144 ], [ -124.520345800999976, 49.814428340000035 ], [ -124.520390301999925, 49.813068396000077 ], [ -124.520396904, 49.812821094000128 ], [ -124.520417618999915, 49.812033541000069 ], [ -124.52043557199994, 49.811350320000074 ], [ -124.520451883999954, 49.810729699000078 ], [ -124.520496297999927, 49.809224508000078 ], [ -124.52051162099994, 49.808536602000117 ], [ -124.520533513999936, 49.807857810000016 ], [ -124.520571509999968, 49.806552296000064 ], [ -124.520601022999969, 49.80542120700008 ], [ -124.521409612999946, 49.805677696000025 ], [ -124.52144321900002, 49.804721994000019 ], [ -124.52156400599992, 49.804550904000045 ], [ -124.521772100999939, 49.804344109000041 ], [ -124.521885781999941, 49.804264702000111 ], [ -124.52222672799995, 49.804161405000102 ], [ -124.522255984999973, 49.804160784000025 ], [ -124.522489379999968, 49.80415589400009 ], [ -124.523089113000012, 49.804144683000047 ], [ -124.524022492999904, 49.804127189000056 ], [ -124.524731988000013, 49.804397596000044 ], [ -124.525758492999984, 49.804789216000131 ], [ -124.525845895999979, 49.80488040200003 ], [ -124.525878879999965, 49.805018397000048 ], [ -124.525465407999945, 49.806991704000019 ], [ -124.525399776999933, 49.807301998000113 ], [ -124.52527629399998, 49.807556701000038 ], [ -124.524915486999959, 49.80754381 ], [ -124.524883114999938, 49.80868120000013 ], [ -124.52337241399999, 49.808656304000031 ], [ -124.523461097, 49.80926459700008 ], [ -124.523535807, 49.809619989000062 ], [ -124.523620512999941, 49.809793009000032 ], [ -124.523991842999976, 49.810223212000025 ], [ -124.524374620999978, 49.810666602000069 ], [ -124.524500500999949, 49.810855393000075 ], [ -124.524762522999964, 49.811652566000156 ], [ -124.524892800999964, 49.812048892000092 ], [ -124.525082151999982, 49.81261839700008 ], [ -124.52524999699996, 49.81312319000012 ], [ -124.525491511999945, 49.81386579800008 ], [ -124.525940916999957, 49.8144512040001 ], [ -124.526007709999988, 49.814602547000099 ], [ -124.526047090999953, 49.814691802000056 ], [ -124.526048420000023, 49.815127204000127 ], [ -124.52570008899994, 49.816450088000053 ], [ -124.525046386999961, 49.816455147000035 ], [ -124.524639678999947, 49.816458293000068 ], [ -124.524143491999965, 49.816418298000031 ], [ -124.524121826999959, 49.816409963000083 ], [ -124.523985706999923, 49.816357688000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121668917", "BldgCostT": "82171667", "sL_LossRatio": "0.965322207209995", "sL_AssetLoss": "147065.3", "sL_BldgLoss": "141965.4", "sL_StrLoss": "121197.4", "sL_NStrLoss": "20768", "sL_ContLoss": "5099.9", "geom_point": "0101000020E6100000496650C829215FC08683184394E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.517299664999911, 49.816350030000102 ], [ -124.517318625999948, 49.815763709000038 ], [ -124.517330979999883, 49.815382627000083 ], [ -124.517355639999948, 49.814593649000059 ], [ -124.51738155299995, 49.813765291000038 ], [ -124.517390305, 49.813486065000099 ], [ -124.517412265999923, 49.812783354000089 ], [ -124.51885702099996, 49.812801632000095 ], [ -124.520396904, 49.812821094000128 ], [ -124.520390301999925, 49.813068396000077 ], [ -124.520345800999976, 49.814428340000035 ], [ -124.520282804000018, 49.816354488000144 ], [ -124.521600582999923, 49.816336298000117 ], [ -124.521490305999947, 49.818807393000093 ], [ -124.521269424999986, 49.818807273000118 ], [ -124.520367490999945, 49.818806701000028 ], [ -124.518998793999955, 49.818806090000081 ], [ -124.518989810999926, 49.819170306000039 ], [ -124.518855605999931, 49.819670419000097 ], [ -124.518507588999967, 49.820245796000073 ], [ -124.517323322999943, 49.820256704000045 ], [ -124.516547701999968, 49.820264206000118 ], [ -124.516295118999935, 49.820338996000039 ], [ -124.516144576999949, 49.820480894000063 ], [ -124.515910002999973, 49.821201789000085 ], [ -124.515683279999948, 49.821229548000133 ], [ -124.51548031899992, 49.821254406000058 ], [ -124.515173272999945, 49.821253570000103 ], [ -124.515070392999931, 49.821253346000034 ], [ -124.515081326999933, 49.820154474000049 ], [ -124.515088420999973, 49.819443815000071 ], [ -124.515093217999947, 49.818964508000093 ], [ -124.515091180999917, 49.818868082000066 ], [ -124.515058492999955, 49.81731236500007 ], [ -124.515050754999947, 49.81694361600011 ], [ -124.51505016499999, 49.81691664700007 ], [ -124.515038010999945, 49.816336392000053 ], [ -124.515407394999954, 49.816338616000039 ], [ -124.516158401000027, 49.816343149000076 ], [ -124.517299664999911, 49.816350030000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123361917", "BldgCostT": "84341667", "sL_LossRatio": "0.959498425776734", "sL_AssetLoss": "152487.9", "sL_BldgLoss": "146311.9", "sL_StrLoss": "126609.8", "sL_NStrLoss": "19702.1", "sL_ContLoss": "6176", "geom_point": "0101000020E61000004E3427B3EA205FC0C76007C6A8E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.508322888999913, 49.821162512000086 ], [ -124.508311108999976, 49.820783664000068 ], [ -124.51140498299999, 49.820743354000079 ], [ -124.511465125999948, 49.818892247000051 ], [ -124.51367504199996, 49.81892230700003 ], [ -124.513629917999978, 49.817476164000013 ], [ -124.514046798999942, 49.817470717000063 ], [ -124.514009795999982, 49.816284986000078 ], [ -124.513987874999913, 49.81558256600011 ], [ -124.516072190999978, 49.815555315000033 ], [ -124.515979480999988, 49.812588222000073 ], [ -124.51620415799999, 49.812585282000022 ], [ -124.516217840999914, 49.811951364000151 ], [ -124.51679341000002, 49.81194566000012 ], [ -124.516737270999968, 49.810149690000088 ], [ -124.516320455999988, 49.810155145000117 ], [ -124.51629516899996, 49.809345937000067 ], [ -124.512127067999984, 49.809400405000076 ], [ -124.512118663999942, 49.809130670000101 ], [ -124.51128504699993, 49.809141545000081 ], [ -124.511276646999988, 49.808871808000063 ], [ -124.51085983899992, 49.80887724400008 ], [ -124.510843044999959, 49.808337771000048 ], [ -124.510426242, 49.808343204000039 ], [ -124.510417846999985, 49.808073467000099 ], [ -124.509584246999935, 49.808084331000011 ], [ -124.509575855999969, 49.807814594000099 ], [ -124.509159057999938, 49.807820023000076 ], [ -124.509119109, 49.806535335000028 ], [ -124.508414797999976, 49.806525727000079 ], [ -124.5084156, 49.806522231000052 ], [ -124.508810463999964, 49.804800648000096 ], [ -124.509472298, 49.802390690000024 ], [ -124.509461722999944, 49.802157080000057 ], [ -124.509449690999986, 49.801892092000124 ], [ -124.509516814, 49.801663592000068 ], [ -124.510794292999947, 49.80197790500003 ], [ -124.511050336999986, 49.802066814000071 ], [ -124.511505810999935, 49.802224998000071 ], [ -124.512179400999969, 49.802527390000144 ], [ -124.513428721999986, 49.803063675000054 ], [ -124.514003631999969, 49.803310435000114 ], [ -124.515263283999957, 49.803851108000039 ], [ -124.515758196999982, 49.804010811000033 ], [ -124.515709378999958, 49.804114900000059 ], [ -124.515331510999957, 49.804920687000084 ], [ -124.515319109999979, 49.805003206000031 ], [ -124.515284301999927, 49.805958111000017 ], [ -124.515281090999977, 49.806046093000077 ], [ -124.515221819999951, 49.806718108000098 ], [ -124.51543839299994, 49.806766996000064 ], [ -124.516589457999913, 49.807170261000053 ], [ -124.518236621999975, 49.80765850000008 ], [ -124.518843381999901, 49.807837596000113 ], [ -124.51929065299997, 49.807840999000071 ], [ -124.520533513999936, 49.807857810000016 ], [ -124.52051162099994, 49.808536602000117 ], [ -124.520496297999927, 49.809224508000078 ], [ -124.520451883999954, 49.810729699000078 ], [ -124.52043557199994, 49.811350320000074 ], [ -124.520417618999915, 49.812033541000069 ], [ -124.520396904, 49.812821094000128 ], [ -124.51885702099996, 49.812801632000095 ], [ -124.517412265999923, 49.812783354000089 ], [ -124.517390305, 49.813486065000099 ], [ -124.51738155299995, 49.813765291000038 ], [ -124.517355639999948, 49.814593649000059 ], [ -124.517330979999883, 49.815382627000083 ], [ -124.517318625999948, 49.815763709000038 ], [ -124.517299664999911, 49.816350030000102 ], [ -124.516158401000027, 49.816343149000076 ], [ -124.515407394999954, 49.816338616000039 ], [ -124.515038010999945, 49.816336392000053 ], [ -124.51505016499999, 49.81691664700007 ], [ -124.515050754999947, 49.81694361600011 ], [ -124.515058492999955, 49.81731236500007 ], [ -124.515091180999917, 49.818868082000066 ], [ -124.515093217999947, 49.818964508000093 ], [ -124.515088420999973, 49.819443815000071 ], [ -124.515081326999933, 49.820154474000049 ], [ -124.515070392999931, 49.821253346000034 ], [ -124.514470642000035, 49.821160925000129 ], [ -124.514290317999937, 49.821158921000084 ], [ -124.514110029999969, 49.821156903000059 ], [ -124.513929866999931, 49.82115980700015 ], [ -124.513749709999956, 49.821162769000111 ], [ -124.513691824999938, 49.821164859000035 ], [ -124.512559462999889, 49.82120572500002 ], [ -124.509373335999911, 49.821152466000044 ], [ -124.509076772999919, 49.821155302000072 ], [ -124.508928153999989, 49.821156724000019 ], [ -124.508322888999913, 49.821162512000086 ] ], [ [ -124.513251332999971, 49.805338035000084 ], [ -124.513234512999958, 49.804798562000087 ], [ -124.512817741999982, 49.804804005000094 ], [ -124.512809333999925, 49.804534267000072 ], [ -124.512483964999916, 49.804538515000104 ], [ -124.512481528999984, 49.804613565000118 ], [ -124.512409920999943, 49.804612591000122 ], [ -124.512368482999989, 49.805889254000093 ], [ -124.512851372999947, 49.805882951000079 ], [ -124.512834557999952, 49.805343477000065 ], [ -124.513251332999971, 49.805338035000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18185417", "BldgCostT": "12541667", "sL_LossRatio": "0.967818778372062", "sL_AssetLoss": "22249", "sL_BldgLoss": "21533", "sL_StrLoss": "18780", "sL_NStrLoss": "2753", "sL_ContLoss": "716", "geom_point": "0101000020E610000064522A7E5F205FC0A9AC5C5EEFE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.503753247999924, 49.821206110000062 ], [ -124.503414685999957, 49.818371330000119 ], [ -124.506492154999989, 49.818413406000055 ], [ -124.506489434999963, 49.818496826000079 ], [ -124.508038102999947, 49.818517967 ], [ -124.508024316999965, 49.818941277000043 ], [ -124.508038327999913, 49.818941469000045 ], [ -124.508011773999925, 49.819756907000048 ], [ -124.508250569999973, 49.819760165000091 ], [ -124.50820487299994, 49.821163640000094 ], [ -124.503753247999924, 49.821206110000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.958095422432982", "sL_AssetLoss": "3099.9", "sL_BldgLoss": "2970", "sL_StrLoss": "2586", "sL_NStrLoss": "384", "sL_ContLoss": "129.9", "geom_point": "0101000020E610000063A93F0C3E205FC00350F7C79CE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.503388157999964, 49.818149182000091 ], [ -124.503195110999911, 49.816532613000057 ], [ -124.504008198999912, 49.816522062000075 ], [ -124.504016560999972, 49.816791799000072 ], [ -124.50443343699996, 49.81678638700005 ], [ -124.504458530999926, 49.817595599000107 ], [ -124.50404164899993, 49.817601010000025 ], [ -124.504058374999929, 49.818140485000043 ], [ -124.503388157999964, 49.818149182000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121852000", "BldgCostT": "83035000", "sL_LossRatio": "0.937972574789861", "sL_AssetLoss": "184283", "sL_BldgLoss": "172852.4", "sL_StrLoss": "141117.4", "sL_NStrLoss": "31735", "sL_ContLoss": "11430.6", "geom_point": "0101000020E6100000ACBA1EB725215FC0CFF31229EEE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.515284301999927, 49.805958111000017 ], [ -124.515319109999979, 49.805003206000031 ], [ -124.515331510999957, 49.804920687000084 ], [ -124.515709378999958, 49.804114900000059 ], [ -124.515758196999982, 49.804010811000033 ], [ -124.515263283999957, 49.803851108000039 ], [ -124.514003631999969, 49.803310435000114 ], [ -124.513428721999986, 49.803063675000054 ], [ -124.512179400999969, 49.802527390000144 ], [ -124.511505810999935, 49.802224998000071 ], [ -124.511050336999986, 49.802066814000071 ], [ -124.510794292999947, 49.80197790500003 ], [ -124.509516814, 49.801663592000068 ], [ -124.508297935999934, 49.800470986000057 ], [ -124.50911561599996, 49.800849103000054 ], [ -124.509942995999921, 49.801062687000098 ], [ -124.512721884999934, 49.801052804000044 ], [ -124.515109407999915, 49.801400308000055 ], [ -124.517391397999958, 49.801504187000013 ], [ -124.518236787999967, 49.801826091000038 ], [ -124.518567863999962, 49.802021726000142 ], [ -124.518568874, 49.802053999000087 ], [ -124.51869804, 49.802182564000134 ], [ -124.518851321999989, 49.802296452000078 ], [ -124.519028860999924, 49.802294125000039 ], [ -124.519608294999955, 49.802636502000013 ], [ -124.520743899999928, 49.802935589000079 ], [ -124.5220110879999, 49.803018196000039 ], [ -124.522683408999981, 49.803161993000124 ], [ -124.523790695999978, 49.803489614000078 ], [ -124.52479160199999, 49.803943907000125 ], [ -124.525620421, 49.804184604000135 ], [ -124.526176988, 49.804204512000048 ], [ -124.526529294999932, 49.804352714000103 ], [ -124.526821001999977, 49.804817011000097 ], [ -124.526791091999883, 49.805158789000039 ], [ -124.526063415999957, 49.807228092000081 ], [ -124.526055587, 49.80732664300006 ], [ -124.526035402999952, 49.807581207000062 ], [ -124.525873070999964, 49.807581475000092 ], [ -124.52581849100001, 49.807581101000082 ], [ -124.525817902999947, 49.807581108000107 ], [ -124.525817295999985, 49.807581094000057 ], [ -124.52527629399998, 49.807556701000038 ], [ -124.525399776999933, 49.807301998000113 ], [ -124.525465407999945, 49.806991704000019 ], [ -124.525878879999965, 49.805018397000048 ], [ -124.525845895999979, 49.80488040200003 ], [ -124.525758492999984, 49.804789216000131 ], [ -124.524731988000013, 49.804397596000044 ], [ -124.524022492999904, 49.804127189000056 ], [ -124.523089113000012, 49.804144683000047 ], [ -124.522489379999968, 49.80415589400009 ], [ -124.522255984999973, 49.804160784000025 ], [ -124.52222672799995, 49.804161405000102 ], [ -124.521885781999941, 49.804264702000111 ], [ -124.521772100999939, 49.804344109000041 ], [ -124.52156400599992, 49.804550904000045 ], [ -124.52144321900002, 49.804721994000019 ], [ -124.521409612999946, 49.805677696000025 ], [ -124.520601022999969, 49.80542120700008 ], [ -124.520571509999968, 49.806552296000064 ], [ -124.520533513999936, 49.807857810000016 ], [ -124.51929065299997, 49.807840999000071 ], [ -124.518843381999901, 49.807837596000113 ], [ -124.518236621999975, 49.80765850000008 ], [ -124.516589457999913, 49.807170261000053 ], [ -124.51543839299994, 49.806766996000064 ], [ -124.515221819999951, 49.806718108000098 ], [ -124.515281090999977, 49.806046093000077 ], [ -124.515284301999927, 49.805958111000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171863917", "BldgCostT": "111711667", "sL_LossRatio": "0.934028571242027", "sL_AssetLoss": "245057.6", "sL_BldgLoss": "228890.8", "sL_StrLoss": "191957.6", "sL_NStrLoss": "36933.2", "sL_ContLoss": "16166.8", "geom_point": "0101000020E61000009816C30F2D1F5FC0D335D58B88E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.478955502999966, 49.825915386000069 ], [ -124.478452686999915, 49.824634439000128 ], [ -124.47813160199992, 49.823816303000065 ], [ -124.47801063299994, 49.82358177800004 ], [ -124.477828211999935, 49.823228082000128 ], [ -124.477459209999964, 49.822512597000127 ], [ -124.477338798999966, 49.822079192000061 ], [ -124.477328742999973, 49.821981223000137 ], [ -124.477298892999926, 49.821690986000092 ], [ -124.477328006999926, 49.821399443000082 ], [ -124.477334410999958, 49.821335309000112 ], [ -124.477430720999948, 49.821071305000032 ], [ -124.477671400999924, 49.820728288000048 ], [ -124.478118195999912, 49.820246121000082 ], [ -124.478755005, 49.819566912000091 ], [ -124.478891574999977, 49.819343891000123 ], [ -124.479013391999914, 49.819024493000079 ], [ -124.479025088999919, 49.818754814000087 ], [ -124.478959384999911, 49.818431891000031 ], [ -124.478915098999934, 49.818350944000038 ], [ -124.478824150999941, 49.818184742000071 ], [ -124.478802200999922, 49.818144596000138 ], [ -124.478768526999957, 49.818099379000081 ], [ -124.478266131999973, 49.817424907000024 ], [ -124.477888292000017, 49.816917591000035 ], [ -124.477786201999947, 49.816436691000014 ], [ -124.477797824999939, 49.816364951000082 ], [ -124.477829895999946, 49.816167485000101 ], [ -124.477852794999976, 49.816022092000061 ], [ -124.477934713999986, 49.815828292000113 ], [ -124.478621772999958, 49.814202292000061 ], [ -124.478730669999933, 49.81376290700014 ], [ -124.478865711999973, 49.813218107000068 ], [ -124.478986203999966, 49.812014511000022 ], [ -124.479038288999988, 49.811785803000063 ], [ -124.479201404999984, 49.811475991000108 ], [ -124.479528189999954, 49.811131510000081 ], [ -124.480630215999938, 49.810202401000062 ], [ -124.481121797999947, 49.809791008000126 ], [ -124.481377882999965, 49.809524696000032 ], [ -124.481544121999917, 49.809205899000112 ], [ -124.481599385, 49.808918783000095 ], [ -124.481548906999961, 49.808641007000091 ], [ -124.481419604999957, 49.808351410000121 ], [ -124.480794908999911, 49.807530988000053 ], [ -124.480550396999945, 49.807209833000073 ], [ -124.480118835999946, 49.806643073000039 ], [ -124.479961792999973, 49.806436802000114 ], [ -124.479733209999949, 49.806001004000066 ], [ -124.479638615999988, 49.805625379000055 ], [ -124.47960178699995, 49.805479305000055 ], [ -124.479496822999934, 49.805278426000051 ], [ -124.479343293999975, 49.804984686000118 ], [ -124.479058648999981, 49.804439929000054 ], [ -124.478654813999981, 49.803667104000091 ], [ -124.478321335999979, 49.803210992000075 ], [ -124.478169836999939, 49.803003714000063 ], [ -124.477545917999947, 49.802125136000036 ], [ -124.477083962999984, 49.801474569000078 ], [ -124.476623833999952, 49.80082656200009 ], [ -124.476462301000012, 49.800599055000092 ], [ -124.476447376999943, 49.800578060000113 ], [ -124.476363394999964, 49.800390983000042 ], [ -124.476319368999924, 49.800292923000086 ], [ -124.476342157999909, 49.800002017000054 ], [ -124.476357756999946, 49.799803645000104 ], [ -124.476408525999915, 49.799156313 ], [ -124.476399913999927, 49.79867928200013 ], [ -124.476380525999986, 49.797609427000019 ], [ -124.476375751999953, 49.797343349000109 ], [ -124.476210009999932, 49.797278553000062 ], [ -124.475768804999973, 49.797105823000081 ], [ -124.475135044999931, 49.796857724000049 ], [ -124.474993709000032, 49.796802396000103 ], [ -124.473531467999962, 49.796268215000048 ], [ -124.472672371, 49.795954378000012 ], [ -124.47245918699997, 49.795876497000037 ], [ -124.47378691699997, 49.795643667000022 ], [ -124.473553318999961, 49.795552709000127 ], [ -124.472970592999928, 49.795325902000108 ], [ -124.471428295999971, 49.79467740700013 ], [ -124.469753698, 49.793877689000055 ], [ -124.468335918999983, 49.793289311000073 ], [ -124.467425121999909, 49.792972631000048 ], [ -124.466640416999937, 49.792699802000136 ], [ -124.466255435, 49.792579373000095 ], [ -124.465354776999931, 49.792297631000068 ], [ -124.464303890999986, 49.791968908000044 ], [ -124.462016494999958, 49.791434809000116 ], [ -124.461695704999954, 49.791308907000086 ], [ -124.461466917999971, 49.791191504000111 ], [ -124.462010810999942, 49.79112138800005 ], [ -124.466446180999981, 49.792367532000085 ], [ -124.466504604999955, 49.792409200000087 ], [ -124.466834696, 49.79247669300004 ], [ -124.466834782999939, 49.792476718000046 ], [ -124.467006387000012, 49.792511799000032 ], [ -124.467656690999917, 49.792872104000089 ], [ -124.468218709999945, 49.793044405000053 ], [ -124.469023134999986, 49.793404563000102 ], [ -124.469898096999913, 49.793796250000106 ], [ -124.470940966999962, 49.79426310500002 ], [ -124.471058452999969, 49.794315714000085 ], [ -124.471568891999979, 49.794544200000132 ], [ -124.472205104999915, 49.794828984000048 ], [ -124.473271591999904, 49.794752114000055 ], [ -124.473738385, 49.795025502000087 ], [ -124.474527885999947, 49.794934406000102 ], [ -124.4754304099999, 49.794579486000025 ], [ -124.475607358000033, 49.794509896000143 ], [ -124.475900492999941, 49.794394600000089 ], [ -124.476487499999934, 49.794001504000079 ], [ -124.477996875999906, 49.793846298000076 ], [ -124.47844351399999, 49.793886102000052 ], [ -124.47927081, 49.79414530500005 ], [ -124.47963971199998, 49.794428804000042 ], [ -124.479619007999943, 49.794635308000124 ], [ -124.479691800999888, 49.794760610000083 ], [ -124.479721076999965, 49.794772058000078 ], [ -124.479921012999952, 49.794850227000083 ], [ -124.48011430199989, 49.794925792000086 ], [ -124.480486410999958, 49.795307502000057 ], [ -124.480697896, 49.795404408000074 ], [ -124.481484497999944, 49.795690591000081 ], [ -124.482461207999933, 49.795813107000093 ], [ -124.483935005999982, 49.795813107000093 ], [ -124.485837690999944, 49.795347404000026 ], [ -124.486072537999917, 49.795220759000138 ], [ -124.486145911999969, 49.795181181000025 ], [ -124.48631570199997, 49.795089603000065 ], [ -124.487512216999903, 49.795092500000109 ], [ -124.487814411999963, 49.795034089000097 ], [ -124.488541498999922, 49.795123790000048 ], [ -124.488923411000016, 49.795361584000048 ], [ -124.488931296000018, 49.79535841400007 ], [ -124.489060923999901, 49.79530610300008 ], [ -124.489757007999927, 49.795395802000016 ], [ -124.489766295999956, 49.795411520000123 ], [ -124.489785662999964, 49.795444232000065 ], [ -124.489963519999947, 49.795744703000025 ], [ -124.49019029, 49.795912791000013 ], [ -124.490684201999926, 49.796139207000074 ], [ -124.490949409000024, 49.796163496000105 ], [ -124.491517796999986, 49.796173388000035 ], [ -124.492906997999953, 49.795714788000083 ], [ -124.4933621099999, 49.795619364000061 ], [ -124.493419248999928, 49.795607391000075 ], [ -124.493680984999941, 49.795552503000053 ], [ -124.495388918999979, 49.79553970500006 ], [ -124.497949984999977, 49.7956407900001 ], [ -124.498761627999968, 49.79593336600005 ], [ -124.498929698999945, 49.795993944000109 ], [ -124.49939598499999, 49.79616200700012 ], [ -124.500461009, 49.796895493000093 ], [ -124.501448002999922, 49.797772809000016 ], [ -124.502835300999934, 49.798573196000056 ], [ -124.503828795999979, 49.79885661000003 ], [ -124.50511662299999, 49.799386884000036 ], [ -124.50596989, 49.799738203000089 ], [ -124.507960611999962, 49.800314996000068 ], [ -124.508297935999934, 49.800470986000057 ], [ -124.509516814, 49.801663592000068 ], [ -124.509449690999986, 49.801892092000124 ], [ -124.509461722999944, 49.802157080000057 ], [ -124.509472298, 49.802390690000024 ], [ -124.508810463999964, 49.804800648000096 ], [ -124.5084156, 49.806522231000052 ], [ -124.508414797999976, 49.806525727000079 ], [ -124.506385976000018, 49.806498026000064 ], [ -124.506412419999961, 49.805686588000057 ], [ -124.50559429599997, 49.805675407000145 ], [ -124.505651475999954, 49.803921802000048 ], [ -124.505593603999955, 49.803921011000106 ], [ -124.505622668999962, 49.80302963200004 ], [ -124.504841341999906, 49.803018947000098 ], [ -124.504840524999935, 49.803018947000098 ], [ -124.503007362999981, 49.802993846000057 ], [ -124.503012187999985, 49.802846104000032 ], [ -124.501443313999957, 49.802824607000062 ], [ -124.501455714999935, 49.802445277000068 ], [ -124.50059580599999, 49.80243348500003 ], [ -124.500616335999965, 49.801805888000061 ], [ -124.500635527, 49.801219250000074 ], [ -124.49869487899997, 49.801192612000065 ], [ -124.498169344999909, 49.801185392000086 ], [ -124.498148788999941, 49.80181272800008 ], [ -124.49786982699996, 49.801808895000043 ], [ -124.497868379999915, 49.801853036000082 ], [ -124.492608732999969, 49.801780629000049 ], [ -124.492491071999893, 49.805357960000087 ], [ -124.492268627999962, 49.805354892000082 ], [ -124.49223562099999, 49.806358164000059 ], [ -124.489932752999934, 49.806326377000104 ], [ -124.489936539, 49.806449714000031 ], [ -124.48785259, 49.806476491000083 ], [ -124.487847104, 49.806297548000032 ], [ -124.486825319000019, 49.806283408000063 ], [ -124.486681331999989, 49.806281415000036 ], [ -124.486683842999938, 49.806205362000078 ], [ -124.485472392999952, 49.80618858400004 ], [ -124.48553323299997, 49.804347484000111 ], [ -124.485285805000018, 49.804350656000089 ], [ -124.48526104099993, 49.803541436000039 ], [ -124.484484669999944, 49.80355138600008 ], [ -124.484465077999957, 49.804143862000089 ], [ -124.48334476799999, 49.804128324000033 ], [ -124.483324797999956, 49.804731850000046 ], [ -124.483288629999961, 49.805824701000084 ], [ -124.48430892899998, 49.805838852000107 ], [ -124.484301518999956, 49.806062884000013 ], [ -124.484653842999975, 49.806067769000045 ], [ -124.485019315999978, 49.806072835000087 ], [ -124.485005119999968, 49.806502270000095 ], [ -124.485449224999954, 49.806508424000036 ], [ -124.485341986999927, 49.809753176000029 ], [ -124.485330365999985, 49.81010472600007 ], [ -124.485329004999954, 49.81010470700005 ], [ -124.485305408999977, 49.810818625000145 ], [ -124.484954382999916, 49.810813761000077 ], [ -124.484918756999946, 49.811891332000052 ], [ -124.483430975999937, 49.811870704000036 ], [ -124.483441037999981, 49.812199811000042 ], [ -124.483163499999947, 49.812203364000084 ], [ -124.483136052999924, 49.813032574000054 ], [ -124.482411642999949, 49.813022521000086 ], [ -124.48059615199999, 49.813045733000124 ], [ -124.480587936999925, 49.813293510000044 ], [ -124.481633793999947, 49.813308039000098 ], [ -124.481612182999967, 49.81396018900007 ], [ -124.481702229999911, 49.813961440000092 ], [ -124.481650133999977, 49.815533657000124 ], [ -124.483166672, 49.815554705000046 ], [ -124.483136421999944, 49.816468511000089 ], [ -124.4844318829999, 49.816486475 ], [ -124.484312918999976, 49.820082725000134 ], [ -124.484140709999934, 49.820080338000068 ], [ -124.484119547999967, 49.820719929000049 ], [ -124.48369426, 49.82071403300003 ], [ -124.483680645999954, 49.821125382000098 ], [ -124.483919889999953, 49.821128699000049 ], [ -124.483804057999933, 49.82462871600007 ], [ -124.48884452099999, 49.824698480000109 ], [ -124.488804955999981, 49.825897833000063 ], [ -124.490160046, 49.825916549000112 ], [ -124.490158004999941, 49.825978487000071 ], [ -124.492398265999924, 49.826009391000071 ], [ -124.492279902999897, 49.829605604000086 ], [ -124.490944959999965, 49.829587194000112 ], [ -124.490930358999918, 49.830030386000033 ], [ -124.487086799999972, 49.830388807000055 ], [ -124.48706081399996, 49.832570547000024 ], [ -124.48705668099997, 49.832921137000021 ], [ -124.487051095999959, 49.833389069000049 ], [ -124.487049465999945, 49.833524164000067 ], [ -124.48704788699996, 49.833659003000015 ], [ -124.487047611999955, 49.833682111000073 ], [ -124.48677110499996, 49.833717790000044 ], [ -124.48640661499999, 49.833727194000083 ], [ -124.486134893999946, 49.833706920000111 ], [ -124.486080821999963, 49.833702896000098 ], [ -124.485915930999951, 49.833676507000085 ], [ -124.485889836999931, 49.833672319000108 ], [ -124.485068311999925, 49.833540792000065 ], [ -124.483663806999928, 49.83331591200006 ], [ -124.483483989999925, 49.833290018000113 ], [ -124.483181945999931, 49.833169084000126 ], [ -124.482939386999988, 49.833072001000104 ], [ -124.482502711999928, 49.832825799000034 ], [ -124.481971192999978, 49.832433124000026 ], [ -124.481820173999921, 49.832321600000114 ], [ -124.481565807999971, 49.832030298000092 ], [ -124.481468495999962, 49.831802251000042 ], [ -124.481418251999955, 49.831684488000064 ], [ -124.480983223999942, 49.830664745000028 ], [ -124.480903384999962, 49.830477622000089 ], [ -124.480717748999922, 49.830042451000082 ], [ -124.480656765999967, 49.829899473000047 ], [ -124.480561696, 49.829676617000061 ], [ -124.480413717999966, 49.829329726000061 ], [ -124.479815694999942, 49.827927808000048 ], [ -124.479030929999965, 49.826091836000018 ], [ -124.478955502999966, 49.825915386000069 ] ], [ [ -124.483270443999984, 49.825152241000048 ], [ -124.483284828999956, 49.824717771000074 ], [ -124.482043163999919, 49.824700544000066 ], [ -124.482028766999974, 49.825135013000065 ], [ -124.483270443999984, 49.825152241000048 ] ], [ [ -124.487448647999926, 49.798541212000039 ], [ -124.487478296999981, 49.797642712000069 ], [ -124.48738369199998, 49.797641403000036 ], [ -124.48738191299999, 49.797695307000083 ], [ -124.487368411999967, 49.797695119000053 ], [ -124.487340540999938, 49.7985397160001 ], [ -124.487448647999926, 49.798541212000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25215083", "BldgCostT": "16598333", "sL_LossRatio": "0.942002150862048", "sL_AssetLoss": "41099.8", "sL_BldgLoss": "38716.1", "sL_StrLoss": "32967.2", "sL_NStrLoss": "5748.9", "sL_ContLoss": "2383.7", "geom_point": "0101000020E61000001EF7EFF2DB1F5FC06D2F375215E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.495950176999941, 49.82422491200002 ], [ -124.495987037999924, 49.823102180000021 ], [ -124.495453387999959, 49.823109068000079 ], [ -124.495445070999949, 49.822839330000086 ], [ -124.495028141999938, 49.822844711000052 ], [ -124.495025181999921, 49.822748656000094 ], [ -124.49153000299998, 49.822700501000078 ], [ -124.491530338999937, 49.822690300000026 ], [ -124.490513864999969, 49.82267627500007 ], [ -124.490559764999972, 49.821283200000089 ], [ -124.490392179999972, 49.821285356000061 ], [ -124.490350742999937, 49.819936663000057 ], [ -124.49060423499995, 49.819933403000078 ], [ -124.490632349999942, 49.819080029000098 ], [ -124.490987341999983, 49.819084929000049 ], [ -124.490987635999929, 49.819076038000105 ], [ -124.492331084999947, 49.81909457000009 ], [ -124.492334084999953, 49.819003372000019 ], [ -124.494455794999965, 49.819032605000068 ], [ -124.494459806999942, 49.81891052400006 ], [ -124.495202004999939, 49.818920740000088 ], [ -124.495213995999947, 49.818555642000071 ], [ -124.49644239599999, 49.818572539000066 ], [ -124.496454467999968, 49.818204672000086 ], [ -124.499891267999914, 49.81825187400009 ], [ -124.499847797999976, 49.816845831000101 ], [ -124.501515303999966, 49.816824237000056 ], [ -124.501548698999969, 49.817903186000137 ], [ -124.501965583999919, 49.817897783000049 ], [ -124.50197743399994, 49.818280474000098 ], [ -124.502010217999924, 49.818280923000088 ], [ -124.502007892, 49.818352068000124 ], [ -124.503414685999957, 49.818371330000119 ], [ -124.503753247999924, 49.821206110000062 ], [ -124.503801204999931, 49.821736592000065 ], [ -124.503769442999925, 49.823555149000107 ], [ -124.501532061999967, 49.823524516000099 ], [ -124.501506657000022, 49.824301188000057 ], [ -124.495950176999941, 49.82422491200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.967244968771686", "sL_AssetLoss": "720.5", "sL_BldgLoss": "696.9", "sL_StrLoss": "630", "sL_NStrLoss": "66.9", "sL_ContLoss": "23.6", "geom_point": "0101000020E6100000E888F85E2E205FC0D2A04F819FE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.502340705, 49.816543692000039 ], [ -124.503195110999911, 49.816532613000057 ], [ -124.503388157999964, 49.818149182000091 ], [ -124.502390823999946, 49.818162116000067 ], [ -124.502340705, 49.816543692000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.966220151426907", "sL_AssetLoss": "1545.3", "sL_BldgLoss": "1493.1", "sL_StrLoss": "1299", "sL_NStrLoss": "194.1", "sL_ContLoss": "52.2", "geom_point": "0101000020E610000085BDC3CC821F5FC01D9F7F71DFE74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.491794403999947, 49.812632261000068 ], [ -124.491777818999978, 49.812092783000075 ], [ -124.491360980999929, 49.812098149000036 ], [ -124.491327820999942, 49.811019194000025 ], [ -124.491744647999937, 49.811013828000036 ], [ -124.491728063999972, 49.810474350000078 ], [ -124.492978535999939, 49.810458245000135 ], [ -124.49298683499994, 49.810727984000117 ], [ -124.493403660999931, 49.810722613000038 ], [ -124.493428564999974, 49.811531829000089 ], [ -124.493011731999971, 49.811537200000075 ], [ -124.493044931999961, 49.812616155000114 ], [ -124.491794403999947, 49.812632261000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.962966670003003", "sL_AssetLoss": "999.1", "sL_BldgLoss": "962.1", "sL_StrLoss": "714.1", "sL_NStrLoss": "248", "sL_ContLoss": "37", "geom_point": "0101000020E6100000DD8410CA1A1E5FC033F26028B3E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.469496634000024, 49.801598060000082 ], [ -124.471564577999928, 49.801626995000049 ], [ -124.471536436999955, 49.801704279000013 ], [ -124.471507307999929, 49.801784517000051 ], [ -124.47147809099998, 49.801864759000068 ], [ -124.471448870999936, 49.801945002000053 ], [ -124.471419722999912, 49.8020252170001 ], [ -124.471390505999963, 49.802105458000078 ], [ -124.471361339999973, 49.802185710000053 ], [ -124.471332136999948, 49.802265917000035 ], [ -124.471302972999965, 49.80234616700006 ], [ -124.47127375399999, 49.802426409000091 ], [ -124.471244534999983, 49.802506650000041 ], [ -124.471215385999969, 49.802586866000105 ], [ -124.471186167999974, 49.802667108000044 ], [ -124.471156983999919, 49.80274733800011 ], [ -124.471127816999939, 49.802827588000056 ], [ -124.471098613999985, 49.80290779600017 ], [ -124.471069394999972, 49.802988037000027 ], [ -124.471040262999978, 49.803068276000054 ], [ -124.471011043999965, 49.80314851800005 ], [ -124.469445208999957, 49.803138035000075 ], [ -124.469496634000024, 49.801598060000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127500917", "BldgCostT": "87931667", "sL_LossRatio": "0.950973609024863", "sL_AssetLoss": "159709.9", "sL_BldgLoss": "151879.9", "sL_StrLoss": "122137.9", "sL_NStrLoss": "29742", "sL_ContLoss": "7830", "geom_point": "0101000020E6100000FED614E9FA1C5FC07C7665BCD2E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.471627441999942, 49.801454240000034 ], [ -124.471717959, 49.798739534000056 ], [ -124.471604120999956, 49.79873794200013 ], [ -124.471609914999959, 49.798564175000116 ], [ -124.471342520999983, 49.798560435000084 ], [ -124.471347345999945, 49.798415740000024 ], [ -124.471024818999922, 49.798411228000077 ], [ -124.471034304999961, 49.798126857000064 ], [ -124.470015698999973, 49.798112603000106 ], [ -124.470021458999938, 49.7979400460001 ], [ -124.469660595999969, 49.79793499400013 ], [ -124.469667782999949, 49.797719724000096 ], [ -124.469193492000016, 49.797713082000023 ], [ -124.469196289999942, 49.79762930000004 ], [ -124.468844583999967, 49.79762437300009 ], [ -124.468848843999979, 49.797496810000048 ], [ -124.468445876999937, 49.797491163000075 ], [ -124.468451091999938, 49.797335064000023 ], [ -124.468072172999939, 49.797329753000099 ], [ -124.468082716999959, 49.79701426000004 ], [ -124.467274861999968, 49.79700293400002 ], [ -124.467281272999969, 49.796811166000097 ], [ -124.466857558999948, 49.796805224000131 ], [ -124.466861866, 49.796676447000017 ], [ -124.466253344, 49.796667909000064 ], [ -124.466270064999961, 49.796168140000063 ], [ -124.465076129999943, 49.796151378000083 ], [ -124.465081914999971, 49.795978595000044 ], [ -124.464453218999964, 49.795969764000041 ], [ -124.464464184999983, 49.795642355000091 ], [ -124.463930117999936, 49.795634850000106 ], [ -124.463935489999969, 49.795474519000031 ], [ -124.462086198999927, 49.795448512000121 ], [ -124.462119366999929, 49.796549933000115 ], [ -124.462536076999982, 49.79654467400011 ], [ -124.46256045399997, 49.797353904000055 ], [ -124.462143737999952, 49.79735916200017 ], [ -124.462208733999958, 49.799517107000035 ], [ -124.46092023099996, 49.799533362000027 ], [ -124.460898737999969, 49.799409208000036 ], [ -124.457545418999942, 49.799534217000016 ], [ -124.453036845999947, 49.799509512000078 ], [ -124.453032450999984, 49.799362699000049 ], [ -124.45261571599994, 49.799367924000101 ], [ -124.452607644999944, 49.799098180000122 ], [ -124.451774176999933, 49.799108626000134 ], [ -124.451766109999966, 49.798838883 ], [ -124.451349377999946, 49.798844102000018 ], [ -124.451317121999978, 49.797765125000112 ], [ -124.45090039899999, 49.797770345000032 ], [ -124.450827850999985, 49.795342644000122 ], [ -124.451244553000024, 49.795337425000064 ], [ -124.451168184999972, 49.792782353000057 ], [ -124.450071064999975, 49.792766798000095 ], [ -124.450087305999929, 49.792286405000056 ], [ -124.447193485999946, 49.792245324000085 ], [ -124.447217906999981, 49.791524307000032 ], [ -124.447239730999925, 49.790879926000045 ], [ -124.447120166999966, 49.790878226000082 ], [ -124.447211555999928, 49.788179975000062 ], [ -124.447241972999919, 49.787281870000086 ], [ -124.452793892999949, 49.787360625000112 ], [ -124.452765465999946, 49.788202995000049 ], [ -124.452747815999942, 49.788726032000092 ], [ -124.452867374999954, 49.788727725000037 ], [ -124.452851163999981, 49.789208121000087 ], [ -124.455687361999964, 49.789248241000038 ], [ -124.455695545999987, 49.789005272000118 ], [ -124.455481503999962, 49.789002247000063 ], [ -124.455497144999981, 49.788537939000022 ], [ -124.455209451999949, 49.788541552000034 ], [ -124.455206095999955, 49.788429534000031 ], [ -124.454030684999935, 49.788412911000123 ], [ -124.454037613999958, 49.788207440000079 ], [ -124.454082765999885, 49.786868276000085 ], [ -124.45087416299998, 49.786822834000127 ], [ -124.450877061999975, 49.786737005000141 ], [ -124.44978422699991, 49.78672150500006 ], [ -124.44979686, 49.786347854000077 ], [ -124.44823369199996, 49.786325666000018 ], [ -124.448240016999975, 49.78613881100005 ], [ -124.446876052999954, 49.78611943100001 ], [ -124.446921479999958, 49.784778293000059 ], [ -124.44239926799996, 49.78471391900009 ], [ -124.442521426, 49.781117536000124 ], [ -124.444522916000011, 49.781146051000093 ], [ -124.444531433999884, 49.780894949000121 ], [ -124.44284592299999, 49.780870939000081 ], [ -124.442862859999934, 49.780372138000061 ], [ -124.442771750999967, 49.780370839000106 ], [ -124.442774524999933, 49.780289155000062 ], [ -124.442267436999941, 49.780281926000022 ], [ -124.442287369, 49.779695166000074 ], [ -124.441259234999976, 49.779680501000044 ], [ -124.441271768999982, 49.779311779000132 ], [ -124.438768764999978, 49.779276038000091 ], [ -124.438794145999964, 49.77853048300009 ], [ -124.436409522999952, 49.778496378000085 ], [ -124.436471860999973, 49.776667990000121 ], [ -124.43585241399991, 49.776659122000105 ], [ -124.435834332999917, 49.777189240000048 ], [ -124.43488552, 49.777175651000121 ], [ -124.434823001, 49.779007461000063 ], [ -124.433552601999963, 49.778989252000066 ], [ -124.433591589999935, 49.77858589800006 ], [ -124.431740708999939, 49.77643029900004 ], [ -124.432512004999936, 49.776245298000099 ], [ -124.432905599, 49.776181702000066 ], [ -124.43305870799999, 49.776050708000135 ], [ -124.433278512999934, 49.775630198000073 ], [ -124.433294212999954, 49.775474856000052 ], [ -124.433322564999969, 49.775194270000121 ], [ -124.433328464999946, 49.775135913000028 ], [ -124.433345595999953, 49.774966396000089 ], [ -124.433357470999965, 49.774331583000098 ], [ -124.433361587999954, 49.774111362000063 ], [ -124.433365695999939, 49.773890817000037 ], [ -124.433372679999962, 49.77368489100008 ], [ -124.43210871899997, 49.772582100000129 ], [ -124.433253117999968, 49.772587095000041 ], [ -124.434245906999934, 49.772782203000105 ], [ -124.437765602999903, 49.773952884000032 ], [ -124.439484904999958, 49.774300391000089 ], [ -124.445465007999985, 49.776411103000065 ], [ -124.446777720999961, 49.776664603000029 ], [ -124.447624395999966, 49.776681702000104 ], [ -124.449817611999947, 49.777580407000066 ], [ -124.452998502999961, 49.779401905000114 ], [ -124.453843203999966, 49.780227989000089 ], [ -124.453939786999939, 49.782565102000078 ], [ -124.454332804999964, 49.78311911000003 ], [ -124.45477251199992, 49.783418192000035 ], [ -124.455205991999961, 49.783557790000067 ], [ -124.456314806999927, 49.784389502000053 ], [ -124.458407379999983, 49.786494491000056 ], [ -124.459653795999955, 49.78733340400008 ], [ -124.461020891999979, 49.787989899000117 ], [ -124.46178926, 49.788550999000016 ], [ -124.463480303999944, 49.789785810000112 ], [ -124.464675397999969, 49.790760002000063 ], [ -124.465254683999945, 49.791517696000049 ], [ -124.46594652, 49.792011163000048 ], [ -124.466235063999974, 49.7922169550001 ], [ -124.466446180999981, 49.792367532000085 ], [ -124.462010810999942, 49.79112138800005 ], [ -124.461466917999971, 49.791191504000111 ], [ -124.461695704999954, 49.791308907000086 ], [ -124.462016494999958, 49.791434809000116 ], [ -124.464303890999986, 49.791968908000044 ], [ -124.465354776999931, 49.792297631000068 ], [ -124.466255435, 49.792579373000095 ], [ -124.466640416999937, 49.792699802000136 ], [ -124.467425121999909, 49.792972631000048 ], [ -124.468335918999983, 49.793289311000073 ], [ -124.469753698, 49.793877689000055 ], [ -124.471428295999971, 49.79467740700013 ], [ -124.472970592999928, 49.795325902000108 ], [ -124.473553318999961, 49.795552709000127 ], [ -124.47378691699997, 49.795643667000022 ], [ -124.47245918699997, 49.795876497000037 ], [ -124.473290014999947, 49.796240195000102 ], [ -124.473491891999956, 49.796328550000112 ], [ -124.47346268199999, 49.796408790000079 ], [ -124.47343350599999, 49.796489019000056 ], [ -124.473404349999939, 49.796569269000017 ], [ -124.473375154999985, 49.796649474000048 ], [ -124.473345961999897, 49.796729737000092 ], [ -124.47331682199993, 49.796809952000046 ], [ -124.47328761199995, 49.796890193000053 ], [ -124.473258399999935, 49.796970433000062 ], [ -124.473229278999895, 49.797050670000033 ], [ -124.47320004599996, 49.79713088900008 ], [ -124.473170890999981, 49.797211140000122 ], [ -124.473141676999944, 49.797291381000065 ], [ -124.473112536999949, 49.797371597000073 ], [ -124.47308332599998, 49.797451836000064 ], [ -124.473054114999954, 49.797532077000042 ], [ -124.47302497099993, 49.797612293000078 ], [ -124.472995778999973, 49.797692557000097 ], [ -124.472966599999921, 49.797772784000117 ], [ -124.472937387999963, 49.797853025000109 ], [ -124.472908245999918, 49.797933241000123 ], [ -124.472879033999973, 49.798013482000094 ], [ -124.472849889999949, 49.798093697000041 ], [ -124.472820696999989, 49.798173961000039 ], [ -124.472791484999973, 49.798254202000109 ], [ -124.47276230599999, 49.798334429000064 ], [ -124.47273312899992, 49.798414657000052 ], [ -124.472703949999968, 49.798494885000132 ], [ -124.472674756999979, 49.798575150000104 ], [ -124.472645611999965, 49.798655365000066 ], [ -124.472616397999943, 49.798735606000029 ], [ -124.472587184999909, 49.798815847000036 ], [ -124.472558004999939, 49.798896075000087 ], [ -124.472528825999945, 49.798976304000078 ], [ -124.472499667999941, 49.799056554000089 ], [ -124.472470452999929, 49.799136795000038 ], [ -124.472441308999976, 49.799217012000064 ], [ -124.472412093999964, 49.799297252000081 ], [ -124.472382881, 49.799377493000108 ], [ -124.472353735999974, 49.799457709000144 ], [ -124.472324519999972, 49.799537950000122 ], [ -124.472295339999931, 49.799618178000031 ], [ -124.472266159999933, 49.799698406000068 ], [ -124.472237, 49.799778658000122 ], [ -124.472207784999938, 49.799858899000064 ], [ -124.472178638999978, 49.79993911400004 ], [ -124.472149422999976, 49.800019357000046 ], [ -124.472120208999954, 49.80009959800001 ], [ -124.472091045999917, 49.800179848000056 ], [ -124.472061845999988, 49.800260054000027 ], [ -124.472032664999972, 49.80034028300004 ], [ -124.472003469999933, 49.800420546000062 ], [ -124.471974323999959, 49.800500763000109 ], [ -124.471945106999968, 49.800581004000023 ], [ -124.471915889999948, 49.80066124400004 ], [ -124.471886743999931, 49.800741461000079 ], [ -124.471857547, 49.800821725000098 ], [ -124.471828364999936, 49.800901954000061 ], [ -124.47179916399989, 49.800982160000039 ], [ -124.471770000999982, 49.801062411000096 ], [ -124.47174078399999, 49.801142652000109 ], [ -124.471711567999989, 49.801222894000055 ], [ -124.471682419999937, 49.801303109000038 ], [ -124.471653201999942, 49.80138335100002 ], [ -124.471627441999942, 49.801454240000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124477000", "BldgCostT": "85165000", "sL_LossRatio": "0.923467588242791", "sL_AssetLoss": "202435.8", "sL_BldgLoss": "186942.9", "sL_StrLoss": "145434.9", "sL_NStrLoss": "41508", "sL_ContLoss": "15492.9", "geom_point": "0101000020E610000085B13322641A5FC0AFBC9AF2D7E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.396141615999909, 49.772528317000088 ], [ -124.396137869999905, 49.771071006000064 ], [ -124.396136991999953, 49.770737989000054 ], [ -124.396135680999976, 49.770232600000035 ], [ -124.396804103999926, 49.769974387000047 ], [ -124.397839889999915, 49.769728690000065 ], [ -124.398069637999953, 49.769690935000071 ], [ -124.399110741999962, 49.769519804000076 ], [ -124.400008539999973, 49.769372218000129 ], [ -124.400683819999969, 49.76926120400006 ], [ -124.401150905999927, 49.769201502000065 ], [ -124.402218906999963, 49.769066876000075 ], [ -124.402951881999968, 49.769025479000085 ], [ -124.403904313999945, 49.769060072000038 ], [ -124.404915036999938, 49.769135063000149 ], [ -124.405502509999906, 49.769205763000066 ], [ -124.405498930999968, 49.768630900000048 ], [ -124.405493426999968, 49.768190015000066 ], [ -124.407398310999923, 49.768470170000093 ], [ -124.409194624999984, 49.768734265000056 ], [ -124.410658212999948, 49.769038889000115 ], [ -124.410920980999947, 49.769065203000096 ], [ -124.411073429999988, 49.768166105000034 ], [ -124.411474895999959, 49.768248900000067 ], [ -124.413048881999913, 49.768436897000043 ], [ -124.416890193999961, 49.769181807000095 ], [ -124.41875461299999, 49.769321406000074 ], [ -124.419676493999944, 49.769470892000072 ], [ -124.42256425199993, 49.770385006000026 ], [ -124.423181603999979, 49.770580412000058 ], [ -124.424423293999922, 49.77077978900013 ], [ -124.425514820999979, 49.771117305000075 ], [ -124.42641655599999, 49.771470539000092 ], [ -124.42711830699993, 49.77174538900006 ], [ -124.427339056, 49.771799401000123 ], [ -124.427747009999933, 49.771899210000079 ], [ -124.428370181999924, 49.772004833000061 ], [ -124.429183685999988, 49.772142698 ], [ -124.430144389999953, 49.772202609000054 ], [ -124.431627211999967, 49.772579995000093 ], [ -124.43210871899997, 49.772582100000129 ], [ -124.433372679999962, 49.77368489100008 ], [ -124.433365695999939, 49.773890817000037 ], [ -124.433361587999954, 49.774111362000063 ], [ -124.433357470999965, 49.774331583000098 ], [ -124.433345595999953, 49.774966396000089 ], [ -124.430955195999985, 49.774635197000094 ], [ -124.430018398999934, 49.774423893000069 ], [ -124.429498820999981, 49.77430592400006 ], [ -124.429063258999975, 49.774206996 ], [ -124.428093997999952, 49.773986898000032 ], [ -124.42804655799992, 49.773977977000094 ], [ -124.427835787999982, 49.773938270000116 ], [ -124.426765127999957, 49.773736649000078 ], [ -124.426480203999986, 49.77368299400009 ], [ -124.42635750099997, 49.77373700900003 ], [ -124.426359392, 49.77384501200001 ], [ -124.426355486999924, 49.774175605000089 ], [ -124.426350895999974, 49.774562420000045 ], [ -124.426346219999985, 49.774958397000049 ], [ -124.426341597999937, 49.775212005000085 ], [ -124.426255296999983, 49.775704617000024 ], [ -124.425461875999957, 49.775725593000082 ], [ -124.421544206999982, 49.775722998000113 ], [ -124.420228806999987, 49.775588790000072 ], [ -124.419349478999919, 49.775551815000043 ], [ -124.416110972999903, 49.773784601000074 ], [ -124.409119817999908, 49.772811802000021 ], [ -124.408868819999924, 49.77446495100007 ], [ -124.408898009999987, 49.774978885000088 ], [ -124.406711603999923, 49.774947016000056 ], [ -124.406789587999953, 49.772702167000077 ], [ -124.406598251999981, 49.77268134500008 ], [ -124.406401637999977, 49.772683732000139 ], [ -124.406417252999944, 49.773223234000099 ], [ -124.406000732999928, 49.773228289000066 ], [ -124.406016343999909, 49.773767790000164 ], [ -124.404766768999963, 49.773782950000111 ], [ -124.404657598999961, 49.770006435000028 ], [ -124.404241106999933, 49.770011484000065 ], [ -124.404240192999964, 49.769979893000105 ], [ -124.40344660699999, 49.769968296000073 ], [ -124.403379667999985, 49.771891329000013 ], [ -124.404571185999913, 49.77190873899999 ], [ -124.404448035999934, 49.775448786000091 ], [ -124.403910705999976, 49.775497303000051 ], [ -124.403339675999945, 49.775488958000061 ], [ -124.403337584999974, 49.775549048000123 ], [ -124.401165818999928, 49.775745101000091 ], [ -124.396149704999985, 49.77566801100005 ], [ -124.396143793999968, 49.773373559000099 ], [ -124.396142180999959, 49.772753113000107 ], [ -124.396141615999909, 49.772528317000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123675333", "BldgCostT": "85293333", "sL_LossRatio": "0.960375608186138", "sL_AssetLoss": "190155.6", "sL_BldgLoss": "182620.8", "sL_StrLoss": "150436.8", "sL_NStrLoss": "32184", "sL_ContLoss": "7534.8", "geom_point": "0101000020E610000055977C8113195FC03888B57CCDE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.383175107999961, 49.800701641000046 ], [ -124.383248271, 49.798627464000042 ], [ -124.380993653999937, 49.798594089000055 ], [ -124.38103161399998, 49.797519358000038 ], [ -124.379999683999984, 49.797504067000069 ], [ -124.380006620999893, 49.797307798000055 ], [ -124.376966182, 49.797262688000046 ], [ -124.376982514999909, 49.796801436000067 ], [ -124.373852494999966, 49.796754909000065 ], [ -124.373959901999939, 49.793727039000018 ], [ -124.373904684999971, 49.793726217000071 ], [ -124.373917416999944, 49.793367259000028 ], [ -124.373625294999968, 49.793362911000024 ], [ -124.373752871999926, 49.789766652000033 ], [ -124.376712942999958, 49.789810664000051 ], [ -124.376765635999931, 49.788322421000032 ], [ -124.379242029999915, 49.788359181000068 ], [ -124.37927188299993, 49.787514682000058 ], [ -124.379677139999941, 49.787520693000047 ], [ -124.379695406999943, 49.787003802000093 ], [ -124.37957941799999, 49.787002082000043 ], [ -124.379593037999911, 49.786616729000094 ], [ -124.377923759999959, 49.786591960000095 ], [ -124.377892220999982, 49.787483453000092 ], [ -124.372340415999972, 49.787400892000036 ], [ -124.372392654999942, 49.785929340000024 ], [ -124.37177788699999, 49.785920181000108 ], [ -124.37178738099999, 49.785652784000064 ], [ -124.371585595999974, 49.785649777000089 ], [ -124.371713310999979, 49.782053481000105 ], [ -124.372030416, 49.782058207000027 ], [ -124.372030998999918, 49.782041788000065 ], [ -124.373760129999965, 49.78206754100006 ], [ -124.373773622999963, 49.781687044000144 ], [ -124.372979694999941, 49.781675223000057 ], [ -124.373003958999973, 49.780991383000135 ], [ -124.371991401999964, 49.780976299000066 ], [ -124.371997015, 49.780818166000088 ], [ -124.371474990999928, 49.78081038600002 ], [ -124.371554073999945, 49.778583489000134 ], [ -124.366910656999892, 49.77851417300014 ], [ -124.366966344999938, 49.776950372000073 ], [ -124.368523589999981, 49.777380011000069 ], [ -124.36912948299999, 49.777521294000088 ], [ -124.369599912999973, 49.777568799000051 ], [ -124.369961010999987, 49.777565203000094 ], [ -124.369986196999918, 49.77756178900006 ], [ -124.370245122999961, 49.77752679200006 ], [ -124.370302780999936, 49.777519001000087 ], [ -124.370757548999961, 49.777427250000123 ], [ -124.370879507999959, 49.777402639000051 ], [ -124.3711691, 49.777344217000064 ], [ -124.371768286, 49.777223295000042 ], [ -124.374720695999955, 49.776655600000062 ], [ -124.375118795, 49.776585110000013 ], [ -124.375711187, 49.776557898000064 ], [ -124.376886798999962, 49.776686006000034 ], [ -124.378499997999981, 49.776806203000014 ], [ -124.37863908099996, 49.776806733000079 ], [ -124.378818284999923, 49.776807399000049 ], [ -124.379714596999918, 49.776810797000095 ], [ -124.380306874999945, 49.776847937000035 ], [ -124.380465495999957, 49.776857909000029 ], [ -124.380688004999925, 49.776884797000029 ], [ -124.380700098999924, 49.777310410000027 ], [ -124.379996876999954, 49.777318789000049 ], [ -124.37994003799993, 49.778217264000048 ], [ -124.379957939999912, 49.778503564000076 ], [ -124.37974527099999, 49.778489301000072 ], [ -124.379728436000022, 49.778965791000154 ], [ -124.380860231999932, 49.778982571 ], [ -124.380843682999924, 49.779451271000035 ], [ -124.381011801999961, 49.779453763000056 ], [ -124.381032824999963, 49.778858304000053 ], [ -124.383245307, 49.778891069000061 ], [ -124.38322249499997, 49.778089857000083 ], [ -124.382805929, 49.778094830000043 ], [ -124.382781711999939, 49.777243980000058 ], [ -124.38298009, 49.777281896000048 ], [ -124.383543604999886, 49.777366689000068 ], [ -124.38362660699994, 49.777369296000124 ], [ -124.384357582999954, 49.777392307000106 ], [ -124.385141898999933, 49.777350825000099 ], [ -124.385640939999917, 49.777324472000089 ], [ -124.386485814999901, 49.777279795000027 ], [ -124.387413862999949, 49.777226754000054 ], [ -124.38814911499999, 49.777184696000077 ], [ -124.388511321999985, 49.777163996000041 ], [ -124.389090492999983, 49.777039409000068 ], [ -124.389787008999974, 49.776775313000016 ], [ -124.389994125999934, 49.776664280000041 ], [ -124.390538404999944, 49.776372594000122 ], [ -124.391139600999921, 49.775936112000082 ], [ -124.39132482499997, 49.775790606000044 ], [ -124.391629543999983, 49.775551249000088 ], [ -124.392027583999905, 49.77523859700004 ], [ -124.392552203999969, 49.774728090000053 ], [ -124.392632959999972, 49.774616968000075 ], [ -124.392746199999962, 49.77446110200006 ], [ -124.392770208999934, 49.774422894000104 ], [ -124.393455541999927, 49.773332423000099 ], [ -124.393941512999973, 49.772559097000048 ], [ -124.39426986, 49.772092044000011 ], [ -124.39468950899996, 49.771495107000106 ], [ -124.39511539599999, 49.771024617000108 ], [ -124.3956175819999, 49.770557911 ], [ -124.395671591999957, 49.770524011000155 ], [ -124.396135680999976, 49.770232600000035 ], [ -124.396136991999953, 49.770737989000054 ], [ -124.396137869999905, 49.771071006000064 ], [ -124.396141615999909, 49.772528317000088 ], [ -124.396142180999959, 49.772753113000107 ], [ -124.396143793999968, 49.773373559000099 ], [ -124.396149704999985, 49.77566801100005 ], [ -124.401165818999928, 49.775745101000091 ], [ -124.403337584999974, 49.775549048000123 ], [ -124.403317666999953, 49.776121150000073 ], [ -124.402614854, 49.77611087500005 ], [ -124.40257420599994, 49.777277866000134 ], [ -124.397023591999982, 49.777196558000099 ], [ -124.397073632999948, 49.775764897000073 ], [ -124.39479718799997, 49.775792326000072 ], [ -124.393575728, 49.775842704000084 ], [ -124.393582441999968, 49.776076788000076 ], [ -124.393165895, 49.776081798000078 ], [ -124.393175172999946, 49.776405350000104 ], [ -124.395912097999982, 49.776445574000022 ], [ -124.395820278999921, 49.779070529000052 ], [ -124.396429142999949, 49.779079468000091 ], [ -124.396327681999978, 49.781980769000086 ], [ -124.396484719999961, 49.781983074000074 ], [ -124.396483548999925, 49.782016534000022 ], [ -124.396982803999919, 49.782023860000074 ], [ -124.396971037999947, 49.782360409000056 ], [ -124.398015884999936, 49.782375735000102 ], [ -124.398001305999983, 49.782793022000121 ], [ -124.398152006999936, 49.782795232000119 ], [ -124.398131591999956, 49.783379576000051 ], [ -124.402273687999937, 49.783440227000064 ], [ -124.402217716000024, 49.785046533000084 ], [ -124.404558564999903, 49.785080740000105 ], [ -124.404599982999983, 49.783890401000072 ], [ -124.405006518999926, 49.78389633700008 ], [ -124.405051040999965, 49.782616410000045 ], [ -124.410602322999949, 49.782697308000138 ], [ -124.410599365999985, 49.782782632000071 ], [ -124.412321062999979, 49.782807664000053 ], [ -124.412315497999913, 49.782968374000042 ], [ -124.415877039999927, 49.783020072000063 ], [ -124.41583905899995, 49.78411943900003 ], [ -124.417425850999962, 49.784142434000074 ], [ -124.417385822999933, 49.785302124000118 ], [ -124.41751092, 49.785303935000059 ], [ -124.417484342999913, 49.786073952000145 ], [ -124.417497166999951, 49.786074138000032 ], [ -124.41746124099997, 49.787115004000022 ], [ -124.41772572299999, 49.787118834000118 ], [ -124.417668249999949, 49.788784192000101 ], [ -124.417685327999919, 49.788784439000018 ], [ -124.417561200999927, 49.792380755000082 ], [ -124.417554496999983, 49.79238065800012 ], [ -124.417528742999963, 49.793126754000141 ], [ -124.417452095999948, 49.793125643000081 ], [ -124.417421291999929, 49.79401795400004 ], [ -124.412192666999914, 49.793942112000089 ], [ -124.412188085999929, 49.794074384000027 ], [ -124.40663542199999, 49.793993567000022 ], [ -124.406649780999913, 49.793580474000088 ], [ -124.404424764999973, 49.79354801100007 ], [ -124.404447574999935, 49.792892651000024 ], [ -124.404307800999959, 49.792890610000043 ], [ -124.404350343999937, 49.791668356000109 ], [ -124.404079869000029, 49.791664406000066 ], [ -124.40410079899999, 49.791063146000013 ], [ -124.40366273699999, 49.791056747000077 ], [ -124.40363950299999, 49.79172400200008 ], [ -124.398087139999987, 49.791642751000047 ], [ -124.398097813, 49.791337279000047 ], [ -124.397440035000017, 49.791327635000087 ], [ -124.397448726999954, 49.791078976000065 ], [ -124.396096452, 49.791059136000094 ], [ -124.396130308999929, 49.792236808000048 ], [ -124.395344854999948, 49.792246270000085 ], [ -124.395335422999949, 49.792515753000103 ], [ -124.396510271999986, 49.792532999000066 ], [ -124.396469379999985, 49.793702031000116 ], [ -124.397971588999937, 49.793724064000074 ], [ -124.397968410999908, 49.793815014000039 ], [ -124.398986755999942, 49.793829937000069 ], [ -124.398861148999956, 49.797426206000054 ], [ -124.397264906999965, 49.797402809000069 ], [ -124.397253002999932, 49.797743246000017 ], [ -124.396395451999965, 49.797730666000085 ], [ -124.39635313899997, 49.798940165000083 ], [ -124.391489097999923, 49.798868689000081 ], [ -124.391487041999966, 49.798927285000062 ], [ -124.388795190999986, 49.798887636000067 ], [ -124.388728541999939, 49.800783649000067 ], [ -124.383175107999961, 49.800701641000046 ] ], [ [ -124.387018021999936, 49.792316881000069 ], [ -124.387034716999949, 49.791842386000084 ], [ -124.392587084999917, 49.7919241990001 ], [ -124.392585160999928, 49.791979053000027 ], [ -124.393622373999975, 49.791994304000099 ], [ -124.393614714999927, 49.791727403000067 ], [ -124.393198034999969, 49.791732414000066 ], [ -124.393190293999979, 49.791462663000068 ], [ -124.392773615999957, 49.791467673000049 ], [ -124.392760491999979, 49.791010121000099 ], [ -124.392351360999911, 49.791004103 ], [ -124.392353852999946, 49.790933029000023 ], [ -124.392341468999959, 49.790933177000092 ], [ -124.392329349999969, 49.790510491000155 ], [ -124.392139997999919, 49.79050770400012 ], [ -124.392129686999951, 49.790801690000102 ], [ -124.386940679999952, 49.79072521600007 ], [ -124.386884745999907, 49.792314913000091 ], [ -124.387018021999936, 49.792316881000069 ] ], [ [ -124.394039139999961, 49.791992142 ], [ -124.393729062999981, 49.791995872000037 ], [ -124.394039379, 49.792000433000105 ], [ -124.394039139999961, 49.791992142 ] ], [ [ -124.390266743999959, 49.779066310000097 ], [ -124.390313470999956, 49.777735134000039 ], [ -124.389879815999961, 49.777740337000097 ], [ -124.389872099999948, 49.777470585000103 ], [ -124.389455539999943, 49.777475581000076 ], [ -124.389447823999944, 49.777205829000088 ], [ -124.389031266999936, 49.777210824000043 ], [ -124.38903898099997, 49.777480576000094 ], [ -124.388829898999958, 49.777483083000099 ], [ -124.38866513899994, 49.778053264000093 ], [ -124.388353738999925, 49.778073163000016 ], [ -124.386972408999952, 49.778073973000083 ], [ -124.386994686999955, 49.778854294000048 ], [ -124.385744970999951, 49.778869248000028 ], [ -124.385729582999929, 49.778329743000072 ], [ -124.385313014999966, 49.778334724000075 ], [ -124.385329756999951, 49.778921896999989 ], [ -124.386583610999949, 49.778940423000044 ], [ -124.386492105999963, 49.781541093000051 ], [ -124.388080227999978, 49.78156453600014 ], [ -124.388169127999959, 49.779035381 ], [ -124.390266743999959, 49.779066310000097 ] ], [ [ -124.383662196, 49.778897238000091 ], [ -124.383662107999953, 49.778894142000063 ], [ -124.38354637099998, 49.778895524000092 ], [ -124.383662196, 49.778897238000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8820834", "BldgCostT": "6083334", "sL_LossRatio": "0.958909179738102", "sL_AssetLoss": "13509.1", "sL_BldgLoss": "12954", "sL_StrLoss": "10669", "sL_NStrLoss": "2285", "sL_ContLoss": "555.1", "geom_point": "0101000020E610000070EED02C201B5FC02A04306D51E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.429283213999938, 49.778603969000073 ], [ -124.429326155999931, 49.777350215000048 ], [ -124.427750314999955, 49.77732754700007 ], [ -124.426718662999974, 49.777312694000145 ], [ -124.426717278999973, 49.777353066000096 ], [ -124.42358249499992, 49.777307874000137 ], [ -124.42357865699995, 49.777419544000033 ], [ -124.418027990000013, 49.777339304000094 ], [ -124.41808637, 49.775646861000027 ], [ -124.417999793999982, 49.775645607000108 ], [ -124.418001353999969, 49.775600390000129 ], [ -124.417476876999928, 49.775592793000058 ], [ -124.41747796199995, 49.775561346000089 ], [ -124.415359799999948, 49.77553063900011 ], [ -124.415368878999971, 49.775267891000077 ], [ -124.415123605999938, 49.775264333000052 ], [ -124.415161121999972, 49.774178686000063 ], [ -124.414639954999927, 49.774171123000016 ], [ -124.414652671999974, 49.773803224000048 ], [ -124.413252126999964, 49.773782889000131 ], [ -124.41326387299992, 49.773443381000064 ], [ -124.412317288999958, 49.773429626000073 ], [ -124.412261960999928, 49.775027831000045 ], [ -124.408898009999987, 49.774978885000088 ], [ -124.408868819999924, 49.77446495100007 ], [ -124.409119817999908, 49.772811802000021 ], [ -124.416110972999903, 49.773784601000074 ], [ -124.419349478999919, 49.775551815000043 ], [ -124.420228806999987, 49.775588790000072 ], [ -124.421544206999982, 49.775722998000113 ], [ -124.425461875999957, 49.775725593000082 ], [ -124.426255296999983, 49.775704617000024 ], [ -124.426341597999937, 49.775212005000085 ], [ -124.426346219999985, 49.774958397000049 ], [ -124.426350895999974, 49.774562420000045 ], [ -124.426355486999924, 49.774175605000089 ], [ -124.426359392, 49.77384501200001 ], [ -124.42635750099997, 49.77373700900003 ], [ -124.426480203999986, 49.77368299400009 ], [ -124.426765127999957, 49.773736649000078 ], [ -124.427835787999982, 49.773938270000116 ], [ -124.42804655799992, 49.773977977000094 ], [ -124.428093997999952, 49.773986898000032 ], [ -124.429063258999975, 49.774206996 ], [ -124.429498820999981, 49.77430592400006 ], [ -124.430018398999934, 49.774423893000069 ], [ -124.430955195999985, 49.774635197000094 ], [ -124.433345595999953, 49.774966396000089 ], [ -124.433328464999946, 49.775135913000028 ], [ -124.433322564999969, 49.775194270000121 ], [ -124.433294212999954, 49.775474856000052 ], [ -124.433278512999934, 49.775630198000073 ], [ -124.43305870799999, 49.776050708000135 ], [ -124.432905599, 49.776181702000066 ], [ -124.432512004999936, 49.776245298000099 ], [ -124.431740708999939, 49.77643029900004 ], [ -124.433591589999935, 49.77858589800006 ], [ -124.433552601999963, 49.778989252000066 ], [ -124.429272122999961, 49.77892779200004 ], [ -124.429283213999938, 49.778603969000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.948175898670948", "sL_AssetLoss": "2242.2", "sL_BldgLoss": "2126", "sL_StrLoss": "1676", "sL_NStrLoss": "450", "sL_ContLoss": "116.2", "geom_point": "0101000020E6100000176F1A911E175FC0648ECCC054E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.360393956999971, 49.782004761000067 ], [ -124.36226753199999, 49.78203286300004 ], [ -124.362139076999966, 49.785629149000073 ], [ -124.360222567999955, 49.785600402000071 ], [ -124.36018781300001, 49.785416006000034 ], [ -124.360228729999974, 49.783962907000102 ], [ -124.360343742999973, 49.783131810000071 ], [ -124.36038040499993, 49.782866896000044 ], [ -124.360393956999971, 49.782004761000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.956818838022521", "sL_AssetLoss": "6234.2", "sL_BldgLoss": "5965", "sL_StrLoss": "4810", "sL_NStrLoss": "1155", "sL_ContLoss": "269.2", "geom_point": "0101000020E610000082E5A5EE4C175FC03821007A12E54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.363759464999973, 49.794048072000045 ], [ -124.362641278999916, 49.788889987000061 ], [ -124.361527843999966, 49.787024644000049 ], [ -124.361496207999892, 49.787000800000065 ], [ -124.361325611999987, 49.786910187000096 ], [ -124.361208674999929, 49.786848096000071 ], [ -124.360951887999974, 49.78676778900013 ], [ -124.360747012999965, 49.78667029900005 ], [ -124.360502002999951, 49.786455201000109 ], [ -124.360396612999978, 49.786281291000115 ], [ -124.360334188999957, 49.786178301000049 ], [ -124.360324991999903, 49.786132579000075 ], [ -124.360307042999949, 49.786043242000041 ], [ -124.361756602999961, 49.786064985000088 ], [ -124.361752860999943, 49.786169684000043 ], [ -124.362613481999929, 49.786159565000077 ], [ -124.362630939999974, 49.786781842000032 ], [ -124.366033385999941, 49.786832776000061 ], [ -124.365905211999944, 49.790429042000042 ], [ -124.36532479899995, 49.790420360000113 ], [ -124.365322910999936, 49.790473304000088 ], [ -124.365629827999925, 49.790477896000048 ], [ -124.365501613, 49.794074143000053 ], [ -124.363759464999973, 49.794048072000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28997583", "BldgCostT": "19998333", "sL_LossRatio": "0.956083880282654", "sL_AssetLoss": "44534.9", "sL_BldgLoss": "42579.1", "sL_StrLoss": "35164.6", "sL_NStrLoss": "7414.5", "sL_ContLoss": "1955.8", "geom_point": "0101000020E6100000986C3CD8E2175FC09E3405191EE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.366966344999938, 49.776950372000073 ], [ -124.367003981999957, 49.775893400000022 ], [ -124.367717990999978, 49.776221690000078 ], [ -124.368276419, 49.776349899000131 ], [ -124.369676307999924, 49.776234496 ], [ -124.370020714999939, 49.776267315000055 ], [ -124.37069231299995, 49.776331299000063 ], [ -124.370817605999932, 49.776311384000088 ], [ -124.370851588999983, 49.775582209000035 ], [ -124.371230906999983, 49.774210707000115 ], [ -124.370850612999931, 49.773919389000099 ], [ -124.370988696999916, 49.773917756000024 ], [ -124.370811239999981, 49.773706064000045 ], [ -124.370732836999977, 49.773650939000085 ], [ -124.370596098, 49.773652556000101 ], [ -124.370593285, 49.773552817000052 ], [ -124.37035540299992, 49.77338555800003 ], [ -124.370156823999977, 49.773387907000092 ], [ -124.370109826999908, 49.773351904000101 ], [ -124.36998427899999, 49.773388896000071 ], [ -124.369984405999929, 49.773389946000066 ], [ -124.369489806999965, 49.773395793000127 ], [ -124.369333738999984, 49.773214288000112 ], [ -124.369328093999954, 49.77301393700008 ], [ -124.369169539, 49.772966065000027 ], [ -124.369060756999943, 49.772861175000124 ], [ -124.369030422999941, 49.772861533 ], [ -124.368902961999964, 49.772713296000049 ], [ -124.368902836999922, 49.77270890500008 ], [ -124.368881472999959, 49.772688306000099 ], [ -124.368608293999927, 49.772370594000044 ], [ -124.368266886999947, 49.772041594 ], [ -124.367202282999926, 49.771704104000051 ], [ -124.36687079799999, 49.771302509000101 ], [ -124.366958218999969, 49.77114456100005 ], [ -124.366975679999939, 49.771112998000063 ], [ -124.367434093999975, 49.77108028700011 ], [ -124.368344842999974, 49.770775671000123 ], [ -124.368644113999935, 49.770675566000087 ], [ -124.369635379999963, 49.770343997000076 ], [ -124.370546792, 49.770197304000128 ], [ -124.372175997999975, 49.770276986000091 ], [ -124.372586703999943, 49.770369459000058 ], [ -124.372587641999971, 49.770402634000021 ], [ -124.372626682999979, 49.770444960000063 ], [ -124.372757993999954, 49.770738506000058 ], [ -124.372983203999979, 49.770870888000069 ], [ -124.373020235999931, 49.770967252000105 ], [ -124.373020896999932, 49.77099063000005 ], [ -124.373040429999932, 49.771019801000122 ], [ -124.373048129999944, 49.771039838000064 ], [ -124.373051363999977, 49.771346793000113 ], [ -124.373002, 49.771500413000105 ], [ -124.373017702999974, 49.77209428599999 ], [ -124.373060908999975, 49.772252765000118 ], [ -124.373062738999934, 49.772426464 ], [ -124.373120444, 49.772471140000114 ], [ -124.373203310999926, 49.772775091000035 ], [ -124.37336138199997, 49.772926101000095 ], [ -124.374963382999937, 49.773572597000062 ], [ -124.37762999899999, 49.774108097000067 ], [ -124.378432594999978, 49.774017001000068 ], [ -124.379004187, 49.774036893000115 ], [ -124.379229180999971, 49.773984109000075 ], [ -124.37935472499997, 49.773954648 ], [ -124.379358108999924, 49.774073844000057 ], [ -124.379579889999917, 49.77435545900002 ], [ -124.379782710999947, 49.774353045000048 ], [ -124.379791090999959, 49.774648184000064 ], [ -124.379876870999922, 49.774891614000076 ], [ -124.380214569999936, 49.774887590000027 ], [ -124.38026054799991, 49.776506112 ], [ -124.380677100999975, 49.776501149000097 ], [ -124.380688004999925, 49.776884797000029 ], [ -124.380465495999957, 49.776857909000029 ], [ -124.380306874999945, 49.776847937000035 ], [ -124.379714596999918, 49.776810797000095 ], [ -124.378818284999923, 49.776807399000049 ], [ -124.37863908099996, 49.776806733000079 ], [ -124.378499997999981, 49.776806203000014 ], [ -124.376886798999962, 49.776686006000034 ], [ -124.375711187, 49.776557898000064 ], [ -124.375118795, 49.776585110000013 ], [ -124.374720695999955, 49.776655600000062 ], [ -124.371768286, 49.777223295000042 ], [ -124.3711691, 49.777344217000064 ], [ -124.370879507999959, 49.777402639000051 ], [ -124.370757548999961, 49.777427250000123 ], [ -124.370302780999936, 49.777519001000087 ], [ -124.370245122999961, 49.77752679200006 ], [ -124.369986196999918, 49.77756178900006 ], [ -124.369961010999987, 49.777565203000094 ], [ -124.369599912999973, 49.777568799000051 ], [ -124.36912948299999, 49.777521294000088 ], [ -124.368523589999981, 49.777380011000069 ], [ -124.366966344999938, 49.776950372000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73764583", "BldgCostT": "50608333", "sL_LossRatio": "0.95931182458831", "sL_AssetLoss": "109803.4", "sL_BldgLoss": "105335.7", "sL_StrLoss": "88133.7", "sL_NStrLoss": "17202", "sL_ContLoss": "4467.7", "geom_point": "0101000020E61000003299BF7C51165FC0EC36E2A860E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.340784296999914, 49.77977970000012 ], [ -124.33919725899996, 49.779429984000053 ], [ -124.33926247299992, 49.777629264000019 ], [ -124.340152744999941, 49.777642794000045 ], [ -124.340153037999968, 49.777634687000067 ], [ -124.340575727999976, 49.777641108000111 ], [ -124.340576520999932, 49.777619197000028 ], [ -124.341310469999897, 49.777630344000031 ], [ -124.341348641999943, 49.776574921000091 ], [ -124.340780878000018, 49.776566299000095 ], [ -124.34078097299998, 49.776563686000081 ], [ -124.33933536, 49.776541719000051 ], [ -124.339802311999932, 49.775425742000067 ], [ -124.339548445999966, 49.775400144000052 ], [ -124.339554375999953, 49.774429269000059 ], [ -124.339541474999976, 49.773387063000087 ], [ -124.339390178999949, 49.772543777000081 ], [ -124.34059899799999, 49.772446095000078 ], [ -124.340643972999942, 49.772438789000056 ], [ -124.342201707999919, 49.772185502000113 ], [ -124.34391018299999, 49.77168839200003 ], [ -124.344731311999951, 49.77124689500009 ], [ -124.344932, 49.77100189800008 ], [ -124.344942315999944, 49.77081250100008 ], [ -124.344512194999965, 49.770376712000079 ], [ -124.344586696999954, 49.770024885000069 ], [ -124.344911901, 49.769761496000093 ], [ -124.345273403999926, 49.76976570500004 ], [ -124.345695084999974, 49.769930898000048 ], [ -124.346182202999941, 49.76994380500004 ], [ -124.34631462499999, 49.770275605000066 ], [ -124.346658893999944, 49.770648693000027 ], [ -124.34630870299992, 49.771013291 ], [ -124.345773803999933, 49.771289600000053 ], [ -124.34588280899996, 49.771665601000095 ], [ -124.346320896999913, 49.771957587000053 ], [ -124.346739694999911, 49.772015987000074 ], [ -124.347754196999944, 49.772551513000053 ], [ -124.349267307999952, 49.774054007000139 ], [ -124.34935928299997, 49.774341701000054 ], [ -124.349514124000024, 49.774465602000063 ], [ -124.349400214999946, 49.775348607000062 ], [ -124.350093206999929, 49.775808587000093 ], [ -124.351016202999972, 49.776030810000123 ], [ -124.352341209999963, 49.7766631920001 ], [ -124.352921721999934, 49.776629005000053 ], [ -124.353016796999952, 49.776512199000102 ], [ -124.353151103999977, 49.776375486000028 ], [ -124.353950699999984, 49.776140501000022 ], [ -124.355019703999957, 49.776137594 ], [ -124.356571403999965, 49.775948188000029 ], [ -124.3575649799999, 49.775695949000109 ], [ -124.360542712999987, 49.774939901000032 ], [ -124.360774880999941, 49.774793193000043 ], [ -124.361615216999937, 49.774539700000069 ], [ -124.362624914999984, 49.774411493000059 ], [ -124.362988152999961, 49.774268682000098 ], [ -124.362888202999969, 49.777068751000051 ], [ -124.362469515999948, 49.777062476000069 ], [ -124.362457503000016, 49.77739886100008 ], [ -124.362127950999934, 49.777393921000076 ], [ -124.362117596999937, 49.777683815000039 ], [ -124.360965613999895, 49.778420102000069 ], [ -124.360688617999983, 49.778534700000087 ], [ -124.35950208499996, 49.778516888000112 ], [ -124.359027007999927, 49.77850975300008 ], [ -124.35757113299999, 49.778487874000092 ], [ -124.356535763999929, 49.778472303000122 ], [ -124.356542754999936, 49.778277225000039 ], [ -124.356464753999916, 49.778276052000145 ], [ -124.356463816999934, 49.778302208000156 ], [ -124.35582390899998, 49.778292579000102 ], [ -124.355822293999907, 49.778337623000091 ], [ -124.355649948999911, 49.778335029000061 ], [ -124.355640902999966, 49.778587327000118 ], [ -124.355622268999937, 49.778587046000098 ], [ -124.355608521999955, 49.778970427000068 ], [ -124.355536646999937, 49.778969345000057 ], [ -124.355527792999936, 49.779216236000067 ], [ -124.355468105999961, 49.779247647000091 ], [ -124.355357203999972, 49.779245978000063 ], [ -124.35535501, 49.779307166000095 ], [ -124.35523410799999, 49.779370791000119 ], [ -124.355233233, 49.779371256000047 ], [ -124.354880993999956, 49.779556604000057 ], [ -124.354516325999924, 49.779699501000039 ], [ -124.35416937799999, 49.779798843000044 ], [ -124.354116508999951, 49.779814010000074 ], [ -124.353962418999956, 49.779828843000082 ], [ -124.353398644999984, 49.779883113000039 ], [ -124.353397581999928, 49.779883203000033 ], [ -124.353096572999931, 49.779886635000011 ], [ -124.352707766999913, 49.779891060000118 ], [ -124.352652216999957, 49.779891693000074 ], [ -124.351746130999956, 49.779902025000062 ], [ -124.350985870999935, 49.779910680000057 ], [ -124.350438903999972, 49.779916897000113 ], [ -124.348555792999974, 49.77980649200007 ], [ -124.348475611999973, 49.779801795000047 ], [ -124.347316051999925, 49.779817512000093 ], [ -124.344870821999947, 49.779850589000077 ], [ -124.344802835999971, 49.779851654000076 ], [ -124.343599595999976, 49.779870089000028 ], [ -124.342999821999939, 49.779910746000105 ], [ -124.342569595999947, 49.779939899000077 ], [ -124.342000531999958, 49.779937605000065 ], [ -124.341764926999943, 49.779915863000106 ], [ -124.341737811999963, 49.779913354000023 ], [ -124.34141652299995, 49.779883708000042 ], [ -124.340784296999914, 49.77977970000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63046667", "BldgCostT": "43216667", "sL_LossRatio": "0.953173543083696", "sL_AssetLoss": "94181.8", "sL_BldgLoss": "89771.6", "sL_StrLoss": "75059.6", "sL_NStrLoss": "14712", "sL_ContLoss": "4410.2", "geom_point": "0101000020E61000002A46F18524195FC0208DB753C2E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.382928953999965, 49.774585375000051 ], [ -124.382935174999915, 49.774315457000085 ], [ -124.382698448999946, 49.774318282000124 ], [ -124.382675420999988, 49.773509021000059 ], [ -124.382953837999978, 49.773505699000111 ], [ -124.382965148999943, 49.773014901000096 ], [ -124.382989212999945, 49.773010108000065 ], [ -124.384501389999983, 49.772487403000049 ], [ -124.386050419999933, 49.771803805000111 ], [ -124.387271495000022, 49.771222701000113 ], [ -124.389499310999938, 49.769990803000141 ], [ -124.390071310999929, 49.769623293000095 ], [ -124.390659771999964, 49.769103947000104 ], [ -124.390763594999939, 49.769012302000107 ], [ -124.391214721999972, 49.768818600000081 ], [ -124.392592416999946, 49.768441193000072 ], [ -124.393401102999988, 49.768018196000092 ], [ -124.395418822999915, 49.766716505000076 ], [ -124.39559591699998, 49.766647624000051 ], [ -124.396132785999967, 49.766438803000021 ], [ -124.396743799999925, 49.76642171400006 ], [ -124.397929466999955, 49.766577381000047 ], [ -124.401202785999914, 49.767007003000067 ], [ -124.404329193999956, 49.767032696000058 ], [ -124.406074325999953, 49.767285202000032 ], [ -124.40851318799993, 49.76763799800009 ], [ -124.411073429999988, 49.768166105000034 ], [ -124.410920980999947, 49.769065203000096 ], [ -124.410658212999948, 49.769038889000115 ], [ -124.409194624999984, 49.768734265000056 ], [ -124.407398310999923, 49.768470170000093 ], [ -124.405493426999968, 49.768190015000066 ], [ -124.405498930999968, 49.768630900000048 ], [ -124.405502509999906, 49.769205763000066 ], [ -124.404915036999938, 49.769135063000149 ], [ -124.403904313999945, 49.769060072000038 ], [ -124.402951881999968, 49.769025479000085 ], [ -124.402218906999963, 49.769066876000075 ], [ -124.401150905999927, 49.769201502000065 ], [ -124.400683819999969, 49.76926120400006 ], [ -124.400008539999973, 49.769372218000129 ], [ -124.399110741999962, 49.769519804000076 ], [ -124.398069637999953, 49.769690935000071 ], [ -124.397839889999915, 49.769728690000065 ], [ -124.396804103999926, 49.769974387000047 ], [ -124.396135680999976, 49.770232600000035 ], [ -124.395671591999957, 49.770524011000155 ], [ -124.3956175819999, 49.770557911 ], [ -124.39511539599999, 49.771024617000108 ], [ -124.39468950899996, 49.771495107000106 ], [ -124.39426986, 49.772092044000011 ], [ -124.393941512999973, 49.772559097000048 ], [ -124.393455541999927, 49.773332423000099 ], [ -124.392770208999934, 49.774422894000104 ], [ -124.392746199999962, 49.77446110200006 ], [ -124.392632959999972, 49.774616968000075 ], [ -124.392552203999969, 49.774728090000053 ], [ -124.392027583999905, 49.77523859700004 ], [ -124.391629543999983, 49.775551249000088 ], [ -124.39132482499997, 49.775790606000044 ], [ -124.391139600999921, 49.775936112000082 ], [ -124.390538404999944, 49.776372594000122 ], [ -124.389994125999934, 49.776664280000041 ], [ -124.389787008999974, 49.776775313000016 ], [ -124.389090492999983, 49.777039409000068 ], [ -124.388511321999985, 49.777163996000041 ], [ -124.38814911499999, 49.777184696000077 ], [ -124.387413862999949, 49.777226754000054 ], [ -124.386485814999901, 49.777279795000027 ], [ -124.385640939999917, 49.777324472000089 ], [ -124.385141898999933, 49.777350825000099 ], [ -124.384357582999954, 49.777392307000106 ], [ -124.38362660699994, 49.777369296000124 ], [ -124.383543604999886, 49.777366689000068 ], [ -124.38298009, 49.777281896000048 ], [ -124.382781711999939, 49.777243980000058 ], [ -124.382708672999925, 49.77467755200005 ], [ -124.382706126999921, 49.774588036000061 ], [ -124.382928953999965, 49.774585375000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.950770013411645", "sL_AssetLoss": "4324.6", "sL_BldgLoss": "4111.7", "sL_StrLoss": "3228.7", "sL_NStrLoss": "883", "sL_ContLoss": "212.9", "geom_point": "0101000020E6100000A1B7FCB0F3155FC0404BFCF69AE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.340287586999963, 49.791951426000061 ], [ -124.345839882999897, 49.792035614000049 ], [ -124.345710110999946, 49.79563183000009 ], [ -124.340157378999919, 49.795547636000066 ], [ -124.340287586999963, 49.791951426000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.95525307686038", "sL_AssetLoss": "6134.5", "sL_BldgLoss": "5860", "sL_StrLoss": "4770", "sL_NStrLoss": "1090", "sL_ContLoss": "274.5", "geom_point": "0101000020E6100000F84C9B16A1125FC07B47535E27EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.28835791099999, 49.846826464000046 ], [ -124.288364913999942, 49.84663917000011 ], [ -124.287897205999982, 49.846631853000112 ], [ -124.28796579499999, 49.844797591000031 ], [ -124.28803166199999, 49.843035961000105 ], [ -124.288697995999954, 49.843046385000015 ], [ -124.288699236999946, 49.843013177000039 ], [ -124.291300554999978, 49.843053836000074 ], [ -124.293605627999952, 49.843089812000045 ], [ -124.29425762699999, 49.843099980000041 ], [ -124.294185484999971, 49.84503648400004 ], [ -124.294123660999944, 49.846695878000062 ], [ -124.293924981, 49.846692781000044 ], [ -124.293916763999931, 49.846913284000017 ], [ -124.28835791099999, 49.846826464000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.968421052631579", "sL_AssetLoss": "855", "sL_BldgLoss": "828", "sL_StrLoss": "693", "sL_NStrLoss": "135", "sL_ContLoss": "27", "geom_point": "0101000020E6100000274853DA2E115FC0D75130BE43E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.269487517999934, 49.760709198000029 ], [ -124.268999721999975, 49.760615205000072 ], [ -124.268590726999946, 49.760686341000117 ], [ -124.268579155999959, 49.760242987000083 ], [ -124.26816272399995, 49.76024754600008 ], [ -124.268169761999957, 49.760517313000065 ], [ -124.266920456999955, 49.760530982000077 ], [ -124.266892335999941, 49.759451915000085 ], [ -124.267308760999967, 49.759447360000053 ], [ -124.267294698999962, 49.758907827000058 ], [ -124.268960382, 49.758889593000035 ], [ -124.268981506000017, 49.759698893000021 ], [ -124.27023078699996, 49.759685202000107 ], [ -124.270258980999984, 49.760764267000056 ], [ -124.269472137999941, 49.760772892000055 ], [ -124.269487517999934, 49.760709198000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.952896512935883", "sL_AssetLoss": "7112", "sL_BldgLoss": "6777", "sL_StrLoss": "5551", "sL_NStrLoss": "1226", "sL_ContLoss": "335", "geom_point": "0101000020E6100000A30C6ECE75155FC0520DB9215FE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.330322218999967, 49.79409044600007 ], [ -124.330314827999985, 49.793820688000032 ], [ -124.329898117999932, 49.793825471000076 ], [ -124.329861179999966, 49.792476678000078 ], [ -124.331527970999971, 49.792457536000093 ], [ -124.331520574999942, 49.79218777800002 ], [ -124.332353965999914, 49.792178198000045 ], [ -124.332346563999963, 49.79190844000005 ], [ -124.332616720999908, 49.791905332000056 ], [ -124.332689110999951, 49.789914933000063 ], [ -124.333953081999979, 49.789934211000094 ], [ -124.333953558999895, 49.78992106400004 ], [ -124.33950559799996, 49.790005574000062 ], [ -124.339375335999975, 49.793601792000082 ], [ -124.338111261000023, 49.793582576000077 ], [ -124.338110784999941, 49.793595723000053 ], [ -124.332558314000025, 49.793511144000078 ], [ -124.332567625999957, 49.793255114000026 ], [ -124.33238357299993, 49.793257231000055 ], [ -124.332398376999919, 49.793796747000052 ], [ -124.331981667999912, 49.793801539000128 ], [ -124.331989067999928, 49.794071296000084 ], [ -124.330322218999967, 49.79409044600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11713583", "BldgCostT": "8078333", "sL_LossRatio": "0.943426479634541", "sL_AssetLoss": "19832.6", "sL_BldgLoss": "18710.6", "sL_StrLoss": "14405.6", "sL_NStrLoss": "4305", "sL_ContLoss": "1122", "geom_point": "0101000020E6100000D59994E598145FC01DD2A04F81E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.319065051999971, 49.7829387190001 ], [ -124.319134026999976, 49.781057117000074 ], [ -124.318138733999959, 49.781041800000033 ], [ -124.318270626999919, 49.777445543000077 ], [ -124.318586818999933, 49.777450411000082 ], [ -124.318609481999928, 49.776832293000062 ], [ -124.317147658999929, 49.776809783000012 ], [ -124.31715195699995, 49.776692650000058 ], [ -124.31656904399992, 49.776683669000072 ], [ -124.316701046999952, 49.773087392 ], [ -124.318496006999979, 49.773115040000043 ], [ -124.318507993999958, 49.77278813700012 ], [ -124.318877886999971, 49.77279383000009 ], [ -124.318917238999973, 49.77172024300004 ], [ -124.324467046999985, 49.7718055200001 ], [ -124.324350337999988, 49.774999963 ], [ -124.324382622999948, 49.774999593000111 ], [ -124.32439732899999, 49.775539114000047 ], [ -124.325230435999941, 49.775529587000065 ], [ -124.325236305999965, 49.775744767000084 ], [ -124.326854700999931, 49.775769568000065 ], [ -124.326788525999973, 49.777583370000073 ], [ -124.326847414000014, 49.777584272000119 ], [ -124.326716193999957, 49.781180538000029 ], [ -124.326132629999947, 49.781171598000121 ], [ -124.326130572999972, 49.781227952000094 ], [ -124.325649745999968, 49.781220584000081 ], [ -124.3256232949999, 49.781944964000083 ], [ -124.324656184999924, 49.781930137000082 ], [ -124.32461621799996, 49.783023985000106 ], [ -124.319065051999971, 49.7829387190001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17025417", "BldgCostT": "11741667", "sL_LossRatio": "0.933840074873338", "sL_AssetLoss": "35152.7", "sL_BldgLoss": "32827", "sL_StrLoss": "24283", "sL_NStrLoss": "8544", "sL_ContLoss": "2325.7", "geom_point": "0101000020E610000016E77F24F20B5FC01CD2C9CE32E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.184810763999948, 49.787020514000098 ], [ -124.18483945399997, 49.786295855000155 ], [ -124.182988517999931, 49.786265089000075 ], [ -124.182979331999945, 49.786496885000112 ], [ -124.177428019999951, 49.786404424000096 ], [ -124.177439538999963, 49.786114661000056 ], [ -124.176795014999968, 49.786103907000083 ], [ -124.176802309999943, 49.785920474000093 ], [ -124.176354211, 49.785912996000071 ], [ -124.176365082999922, 49.785639660000051 ], [ -124.176001313999961, 49.785633588000032 ], [ -124.176023909999955, 49.785065573000104 ], [ -124.175389126999903, 49.78505497400009 ], [ -124.175428155999967, 49.78407422500009 ], [ -124.17519738, 49.78407037100007 ], [ -124.175223930999934, 49.783403220000103 ], [ -124.175059216999927, 49.783400469000064 ], [ -124.175068633999942, 49.783163870000116 ], [ -124.175084091999921, 49.783139104000028 ], [ -124.175905190999913, 49.782663389000035 ], [ -124.177242807999946, 49.782244684000034 ], [ -124.177375809999887, 49.782045292000142 ], [ -124.177382885999961, 49.781739107000114 ], [ -124.177754615999945, 49.781555300000072 ], [ -124.178278892999955, 49.781469895000072 ], [ -124.17914280799999, 49.78158670800012 ], [ -124.179878217999942, 49.781498396000067 ], [ -124.180164322999957, 49.781289005000083 ], [ -124.179848587999928, 49.780860309000055 ], [ -124.179912297999934, 49.780670910000055 ], [ -124.18065061099999, 49.780176696000034 ], [ -124.181233911999982, 49.780162491000027 ], [ -124.182035107999951, 49.780495683000076 ], [ -124.18219058499993, 49.780638202000013 ], [ -124.182829512, 49.78067659500006 ], [ -124.183019909000024, 49.780477192000021 ], [ -124.18302960299999, 49.780306288000112 ], [ -124.182930581999926, 49.780252197000046 ], [ -124.181561988999988, 49.779907496000149 ], [ -124.181066517999966, 49.779542901000084 ], [ -124.180693197999943, 49.779007408000069 ], [ -124.180835003999974, 49.778610089000047 ], [ -124.180958483999945, 49.77852750100007 ], [ -124.18171948199992, 49.778403596000047 ], [ -124.182512988, 49.778511804000104 ], [ -124.182461299999943, 49.778117307000095 ], [ -124.182908696, 49.778175706000084 ], [ -124.183338790999983, 49.778134387000065 ], [ -124.183590288999966, 49.778212702000083 ], [ -124.18386471, 49.77812008800003 ], [ -124.184282021999962, 49.778098798000016 ], [ -124.184326311999911, 49.778205590000056 ], [ -124.183651191999957, 49.77898611500008 ], [ -124.183781011999955, 49.779209688000059 ], [ -124.184319490999897, 49.779068688000038 ], [ -124.184609998999946, 49.779065789000079 ], [ -124.185082996999981, 49.779088587000068 ], [ -124.185629091999942, 49.779218199000077 ], [ -124.186226209, 49.779211096000054 ], [ -124.186603915999967, 49.779342095000096 ], [ -124.186593520999921, 49.779468904000048 ], [ -124.186316217999945, 49.779517298000059 ], [ -124.18678110399999, 49.7797907 ], [ -124.187541814999946, 49.779638398000024 ], [ -124.187705499999979, 49.77949310900005 ], [ -124.189135788999977, 49.77947030300006 ], [ -124.189290306999936, 49.779548609000045 ], [ -124.189166577999956, 49.779639798000055 ], [ -124.188583478999959, 49.779682497000074 ], [ -124.188460100999947, 49.779719503000059 ], [ -124.188504886999908, 49.779800698000074 ], [ -124.189508413999974, 49.779970195000011 ], [ -124.190286008, 49.779980201000072 ], [ -124.191519716999935, 49.779859106000046 ], [ -124.192278673999979, 49.779635494000054 ], [ -124.193483211999961, 49.779461688000012 ], [ -124.195339393, 49.779306515000044 ], [ -124.195471817999959, 49.779054394000056 ], [ -124.195759405, 49.77887919000004 ], [ -124.19672560399999, 49.778627189000083 ], [ -124.19688828799994, 49.778409299000039 ], [ -124.199826412999968, 49.778318625000033 ], [ -124.199739554999937, 49.780531085000064 ], [ -124.198068035999967, 49.780503527000057 ], [ -124.198033236999947, 49.781389025000102 ], [ -124.195803437, 49.781352223000042 ], [ -124.19578876599995, 49.781725080000015 ], [ -124.193337819999925, 49.781684575000092 ], [ -124.193326980999956, 49.781959641000121 ], [ -124.191892152000023, 49.781935903000068 ], [ -124.191887727999926, 49.782048076000095 ], [ -124.189770673999959, 49.782013017000104 ], [ -124.189770341999946, 49.782021428000036 ], [ -124.185067462999911, 49.781943400000088 ], [ -124.185050948999972, 49.782360607000037 ], [ -124.18518122799999, 49.782362770000063 ], [ -124.185167765999964, 49.782702882000173 ], [ -124.185365541999957, 49.782706167000022 ], [ -124.185336861999957, 49.78343083000005 ], [ -124.18905700699996, 49.78349255800002 ], [ -124.189110636999914, 49.782134656000082 ], [ -124.19466145599999, 49.782226524000038 ], [ -124.194519855999928, 49.785822601000042 ], [ -124.190415760999969, 49.785754704000126 ], [ -124.190362164999968, 49.787112600000071 ], [ -124.184810763999948, 49.787020514000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.977869274318065", "sL_AssetLoss": "4468.9", "sL_BldgLoss": "4370", "sL_StrLoss": "3872", "sL_NStrLoss": "498", "sL_ContLoss": "98.9", "geom_point": "0101000020E61000000DB42BC2C7115FC07DB362F265E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.27556759, 49.755456154000058 ], [ -124.275629797999969, 49.753800944000076 ], [ -124.274001734999928, 49.753775218000044 ], [ -124.27413700799994, 49.750178878000078 ], [ -124.276808956999901, 49.750221086000096 ], [ -124.277036902999924, 49.750497583000019 ], [ -124.277284380999973, 49.750926303000043 ], [ -124.277365996999919, 49.751439005000094 ], [ -124.277680819999958, 49.751758002000031 ], [ -124.277622989999927, 49.752172491000067 ], [ -124.277947311999952, 49.752411707000135 ], [ -124.279445998999989, 49.752341985000051 ], [ -124.280039085999988, 49.752209496000063 ], [ -124.28030758099996, 49.751891891000064 ], [ -124.280967902999947, 49.751649789000105 ], [ -124.281538188999932, 49.751167009000021 ], [ -124.281616021999952, 49.750959101000042 ], [ -124.281567326999919, 49.750877723 ], [ -124.281989876999944, 49.750884374000087 ], [ -124.281855217, 49.754480719000057 ], [ -124.281155583000015, 49.754469706000094 ], [ -124.28111535, 49.755543634000041 ], [ -124.27556759, 49.755456154000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31013084", "BldgCostT": "21388334", "sL_LossRatio": "0.955464274355765", "sL_AssetLoss": "48421.8", "sL_BldgLoss": "46265.3", "sL_StrLoss": "36826.3", "sL_NStrLoss": "9439", "sL_ContLoss": "2156.5", "geom_point": "0101000020E6100000555B1C5B70165FC0C8D864E8B3E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.356656035999919, 49.795131866000069 ], [ -124.356708036999962, 49.793681250000091 ], [ -124.35662952399997, 49.793680069000118 ], [ -124.356667310999981, 49.792626011000081 ], [ -124.356429945999963, 49.792622441000042 ], [ -124.35642257399995, 49.792828071000073 ], [ -124.350870163999943, 49.792744421000044 ], [ -124.350873585, 49.792649281000081 ], [ -124.34986763199997, 49.792634096000036 ], [ -124.349939997999954, 49.790623594000067 ], [ -124.348335898999949, 49.790599361000034 ], [ -124.348346414999938, 49.790307491000092 ], [ -124.348353737999929, 49.79010420500002 ], [ -124.34813589, 49.790106741000109 ], [ -124.348126946999926, 49.789784646000058 ], [ -124.348114440999964, 49.789784457000039 ], [ -124.348121502999945, 49.789588474000041 ], [ -124.348105935999953, 49.789027714000071 ], [ -124.348141722, 49.789027297000104 ], [ -124.348153743999958, 49.788693589000097 ], [ -124.34800610399995, 49.788691357000069 ], [ -124.34803480099994, 49.787894937000061 ], [ -124.347890548999928, 49.787892756000147 ], [ -124.347894245999925, 49.787790163000118 ], [ -124.347578672999973, 49.78778539100005 ], [ -124.347390033999915, 49.787782538000073 ], [ -124.347373175999977, 49.788250207000054 ], [ -124.347333204, 49.789359106000077 ], [ -124.345445784999939, 49.789330543000126 ], [ -124.345285304999962, 49.789328113000117 ], [ -124.344444827999922, 49.789315382000034 ], [ -124.341781228999963, 49.789274993000078 ], [ -124.341809191999943, 49.788501851000035 ], [ -124.341830788999957, 49.787904732000044 ], [ -124.341570101999963, 49.787900776000086 ], [ -124.340291259, 49.787881358000121 ], [ -124.340294885999981, 49.787781149000146 ], [ -124.339662540999925, 49.78777154200003 ], [ -124.339664210999956, 49.787725458000118 ], [ -124.339201826999982, 49.787718430000091 ], [ -124.339217262999981, 49.787292271000091 ], [ -124.339122449999948, 49.787290829000042 ], [ -124.339133907999923, 49.786974546000096 ], [ -124.336893786, 49.786940472000019 ], [ -124.336963872999917, 49.785008242000067 ], [ -124.337020403999986, 49.783449570000059 ], [ -124.337024225999954, 49.783344223000071 ], [ -124.338927518, 49.783373176000033 ], [ -124.339267293, 49.783378342000042 ], [ -124.339345143999978, 49.781228781000053 ], [ -124.339132227, 49.781225544000108 ], [ -124.33919725899996, 49.779429984000053 ], [ -124.340784296999914, 49.77977970000012 ], [ -124.34141652299995, 49.779883708000042 ], [ -124.341737811999963, 49.779913354000023 ], [ -124.341764926999943, 49.779915863000106 ], [ -124.342000531999958, 49.779937605000065 ], [ -124.342569595999947, 49.779939899000077 ], [ -124.342999821999939, 49.779910746000105 ], [ -124.343599595999976, 49.779870089000028 ], [ -124.344802835999971, 49.779851654000076 ], [ -124.344870821999947, 49.779850589000077 ], [ -124.347316051999925, 49.779817512000093 ], [ -124.348475611999973, 49.779801795000047 ], [ -124.348555792999974, 49.77980649200007 ], [ -124.350438903999972, 49.779916897000113 ], [ -124.350985870999935, 49.779910680000057 ], [ -124.351746130999956, 49.779902025000062 ], [ -124.352652216999957, 49.779891693000074 ], [ -124.352707766999913, 49.779891060000118 ], [ -124.353096572999931, 49.779886635000011 ], [ -124.353397581999928, 49.779883203000033 ], [ -124.353398644999984, 49.779883113000039 ], [ -124.353962418999956, 49.779828843000082 ], [ -124.354116508999951, 49.779814010000074 ], [ -124.35416937799999, 49.779798843000044 ], [ -124.354516325999924, 49.779699501000039 ], [ -124.354880993999956, 49.779556604000057 ], [ -124.355233233, 49.779371256000047 ], [ -124.35523410799999, 49.779370791000119 ], [ -124.35535501, 49.779307166000095 ], [ -124.355352631999921, 49.779373505000088 ], [ -124.35531749299993, 49.780353231000035 ], [ -124.35429684199994, 49.780337861000071 ], [ -124.354296714999975, 49.780341381000049 ], [ -124.354296052999985, 49.780359855000043 ], [ -124.353990485999972, 49.780355253000053 ], [ -124.353984134999919, 49.78053216799999 ], [ -124.353949803999939, 49.781488562000035 ], [ -124.352385405999911, 49.781464981000035 ], [ -124.352374325999932, 49.781773360000017 ], [ -124.352378195999989, 49.781773419000032 ], [ -124.352373601999943, 49.781901278000078 ], [ -124.353343067999973, 49.781915895000076 ], [ -124.353339015999921, 49.782028697000101 ], [ -124.35423324199995, 49.782042171000064 ], [ -124.354179382000027, 49.78354273499999 ], [ -124.354738915, 49.783551162000037 ], [ -124.354737357999952, 49.78359456400004 ], [ -124.355685484000034, 49.783608838000092 ], [ -124.355612569999934, 49.785641962000057 ], [ -124.360243516999915, 49.785711559000092 ], [ -124.36028070399999, 49.785908911000043 ], [ -124.360275916999939, 49.786042774000066 ], [ -124.360307042999949, 49.786043242000041 ], [ -124.360324991999903, 49.786132579000075 ], [ -124.360334188999957, 49.786178301000049 ], [ -124.360396612999978, 49.786281291000115 ], [ -124.360502002999951, 49.786455201000109 ], [ -124.360747012999965, 49.78667029900005 ], [ -124.360951887999974, 49.78676778900013 ], [ -124.361208674999929, 49.786848096000071 ], [ -124.361325611999987, 49.786910187000096 ], [ -124.361496207999892, 49.787000800000065 ], [ -124.361527843999966, 49.787024644000049 ], [ -124.362641278999916, 49.788889987000061 ], [ -124.363759464999973, 49.794048072000045 ], [ -124.362251253999958, 49.794025480000116 ], [ -124.362208746999912, 49.795215222000074 ], [ -124.356656035999919, 49.795131866000069 ] ], [ [ -124.35425675499998, 49.78899154900008 ], [ -124.354321546999927, 49.787186514000048 ], [ -124.354013752999904, 49.787181878000062 ], [ -124.353948947999953, 49.788986912000048 ], [ -124.35425675499998, 49.78899154900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.991497935915078", "sL_AssetLoss": "406.96", "sL_BldgLoss": "403.5", "sL_StrLoss": "377", "sL_NStrLoss": "26.5", "sL_ContLoss": "3.46", "geom_point": "0101000020E61000007F038BAABC115FC0B3CCA64CFFE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.27620239299992, 49.765016444000089 ], [ -124.278284751999934, 49.764993487000019 ], [ -124.278306035999961, 49.765802783000034 ], [ -124.277473079999965, 49.765811970000051 ], [ -124.27748725899994, 49.766351501000067 ], [ -124.276237808999952, 49.766365272000023 ], [ -124.27620239299992, 49.765016444000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.956139564086465", "sL_AssetLoss": "1114.9", "sL_BldgLoss": "1066", "sL_StrLoss": "856", "sL_NStrLoss": "210", "sL_ContLoss": "48.9", "geom_point": "0101000020E6100000916DF0F0A4155FC0BD86E82955E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.336571880999912, 49.775802863000116 ], [ -124.339548445999966, 49.775400144000052 ], [ -124.339802311999932, 49.775425742000067 ], [ -124.33933536, 49.776541719000051 ], [ -124.336546620999954, 49.776499288000061 ], [ -124.336571880999912, 49.775802863000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22595833", "BldgCostT": "15583333", "sL_LossRatio": "0.935248982506901", "sL_AssetLoss": "43685.8", "sL_BldgLoss": "40857.1", "sL_StrLoss": "31067.1", "sL_NStrLoss": "9790", "sL_ContLoss": "2828.7", "geom_point": "0101000020E610000035C745F724135FC0277BF8F0B4E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.3008939299999, 49.768827480000027 ], [ -124.300926186000012, 49.767956729000097 ], [ -124.300910385999913, 49.767956483000134 ], [ -124.300954128999976, 49.766775570000085 ], [ -124.300324336999964, 49.766765771000088 ], [ -124.300355333999946, 49.76592921000011 ], [ -124.299352696999975, 49.765913602000062 ], [ -124.299332126, 49.766468455000073 ], [ -124.293783010999917, 49.766381902000042 ], [ -124.293799405999962, 49.765941101000045 ], [ -124.293299518999959, 49.765933290000085 ], [ -124.29331203199996, 49.765597016000115 ], [ -124.293365750999953, 49.764153141000087 ], [ -124.29336875499996, 49.764072375000069 ], [ -124.293371369999988, 49.764002121000033 ], [ -124.292917913999929, 49.763995033000114 ], [ -124.292912031999961, 49.76415312000006 ], [ -124.289856081, 49.764105307000129 ], [ -124.287363207999945, 49.764066240000069 ], [ -124.287364017999948, 49.764044538000086 ], [ -124.286591480999945, 49.764032420000028 ], [ -124.286725797999949, 49.760436117000069 ], [ -124.286745828999955, 49.760436431000116 ], [ -124.286808550999936, 49.758756819000077 ], [ -124.286337497999952, 49.75874942700009 ], [ -124.286343141999936, 49.758598324000026 ], [ -124.285890190999979, 49.758591215000145 ], [ -124.285975694999962, 49.756302559000062 ], [ -124.286542396999963, 49.75664310500008 ], [ -124.287380718999927, 49.756823896000064 ], [ -124.288199229999989, 49.756697978000055 ], [ -124.288583909999929, 49.75663879800004 ], [ -124.289488111999972, 49.756745601000027 ], [ -124.291572407999936, 49.757343805000104 ], [ -124.29239621, 49.757477703000127 ], [ -124.293405020999984, 49.757880703000097 ], [ -124.29360328599995, 49.758021693000074 ], [ -124.293511708999986, 49.758185497000134 ], [ -124.29360751199998, 49.758651199000099 ], [ -124.293977715999958, 49.759061401000046 ], [ -124.29427587899994, 49.759246493000056 ], [ -124.294605042999976, 49.759875991000044 ], [ -124.294669105999972, 49.759998502000023 ], [ -124.295095493999909, 49.760298989000063 ], [ -124.295838921999959, 49.761163506000059 ], [ -124.295861889000022, 49.761505307000036 ], [ -124.295742377999929, 49.761713295000064 ], [ -124.295920199999941, 49.762116304000095 ], [ -124.296503382999944, 49.762586305000156 ], [ -124.296838392999916, 49.762681698000037 ], [ -124.297605505999911, 49.762781412000038 ], [ -124.298757504999955, 49.762804185000014 ], [ -124.299561291999936, 49.762731590000051 ], [ -124.30001581199997, 49.762573490000072 ], [ -124.30062519099999, 49.762522193000102 ], [ -124.301257096999962, 49.762263014000048 ], [ -124.301568206999931, 49.761935387000079 ], [ -124.301687610999977, 49.761736010000043 ], [ -124.301355006999955, 49.761263204000095 ], [ -124.301331409999989, 49.760868690000031 ], [ -124.301050099999983, 49.760763305000076 ], [ -124.300494892999936, 49.760787492000084 ], [ -124.300380003999948, 49.760626595000083 ], [ -124.300584918999945, 49.760498401000035 ], [ -124.301071802999928, 49.760565292000059 ], [ -124.302180994999944, 49.760506901000042 ], [ -124.302262014999926, 49.76053317500007 ], [ -124.303147410999912, 49.760820289000101 ], [ -124.303269110999935, 49.760657888000019 ], [ -124.303734099999957, 49.760382009000075 ], [ -124.30507928399993, 49.76040289700007 ], [ -124.305059060999966, 49.760950260000072 ], [ -124.305724091999949, 49.76096058000013 ], [ -124.305708754999927, 49.761375869000069 ], [ -124.305716018999988, 49.761375982000068 ], [ -124.305704178999974, 49.761696578000127 ], [ -124.305977, 49.761700811000054 ], [ -124.305980153999926, 49.76161539700005 ], [ -124.311528716999959, 49.761701331000019 ], [ -124.311433051999984, 49.76430034800012 ], [ -124.31274373199993, 49.764320607000052 ], [ -124.312702421999944, 49.765443694000091 ], [ -124.312466896000018, 49.765473211000028 ], [ -124.31120258199995, 49.765478900000076 ], [ -124.31084991099999, 49.765797908000131 ], [ -124.31075758299994, 49.76646440300005 ], [ -124.310966992, 49.767019905000048 ], [ -124.311439403999927, 49.767545404000018 ], [ -124.312117509999965, 49.767978389000049 ], [ -124.312600247999939, 49.768206327000129 ], [ -124.31259027599998, 49.768477421000043 ], [ -124.309156217999927, 49.768424311000032 ], [ -124.307040892, 49.768391541000035 ], [ -124.307094233, 49.766946302000065 ], [ -124.306516323999944, 49.76693734200007 ], [ -124.306443354999914, 49.768913672000053 ], [ -124.3008939299999, 49.768827480000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.948148148148148", "sL_AssetLoss": "1080", "sL_BldgLoss": "1024", "sL_StrLoss": "808", "sL_NStrLoss": "216", "sL_ContLoss": "56", "geom_point": "0101000020E61000009735560725155FC0569013E4EFE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.329533114999919, 49.795718562000033 ], [ -124.331200017999919, 49.795699424000055 ], [ -124.33123699899997, 49.797048215000054 ], [ -124.329570048999969, 49.797067355000145 ], [ -124.329533114999919, 49.795718562000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.954380306232158", "sL_AssetLoss": "10789.2", "sL_BldgLoss": "10297", "sL_StrLoss": "8434", "sL_NStrLoss": "1863", "sL_ContLoss": "492.2", "geom_point": "0101000020E6100000866FA3F98A0D5FC01E36B2A7F4E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.21341942699992, 49.7843025660001 ], [ -124.213442084999926, 49.783721096000072 ], [ -124.212607533000011, 49.783707447000126 ], [ -124.212613474999927, 49.783555025000119 ], [ -124.212253628999946, 49.783549138000069 ], [ -124.212256035999957, 49.783487428000065 ], [ -124.212048524999958, 49.783484032000025 ], [ -124.212051618999965, 49.783404686000075 ], [ -124.21165671599999, 49.783398222000081 ], [ -124.211662968999988, 49.783237911000136 ], [ -124.211296612999902, 49.783231913000094 ], [ -124.211311399999943, 49.782852860000062 ], [ -124.210122191999972, 49.782833384000114 ], [ -124.210156114999947, 49.781964324000043 ], [ -124.207624651999978, 49.781922821000038 ], [ -124.207726065999964, 49.779328317000122 ], [ -124.205475532999984, 49.779291371000106 ], [ -124.205597034999926, 49.776186428000138 ], [ -124.206664794999966, 49.776159015000111 ], [ -124.207278109999919, 49.776233109000017 ], [ -124.20754789399993, 49.776401102000136 ], [ -124.207781898999983, 49.776883889000047 ], [ -124.209893219999927, 49.777510600000085 ], [ -124.210151277999941, 49.777758395000021 ], [ -124.210210917, 49.77796489900004 ], [ -124.210394216999973, 49.778071700000076 ], [ -124.211651903999964, 49.77841781000005 ], [ -124.211853406999964, 49.778622900000094 ], [ -124.211915687999976, 49.778927708000062 ], [ -124.210200899, 49.779198310000091 ], [ -124.210245310999966, 49.779305101000041 ], [ -124.210720590999983, 49.779497415000016 ], [ -124.210866987, 49.77973950500013 ], [ -124.210859904999964, 49.780062802000032 ], [ -124.211114719999941, 49.780205205000094 ], [ -124.212839493999923, 49.780878808000104 ], [ -124.21415860399999, 49.780829001000015 ], [ -124.214411804999884, 49.781024106000061 ], [ -124.214321610999946, 49.781304704 ], [ -124.214885582999941, 49.781595201000094 ], [ -124.215641394999949, 49.781848716000162 ], [ -124.216410394999912, 49.782019593000108 ], [ -124.217799901999967, 49.782023891000058 ], [ -124.21902370599993, 49.782090793000052 ], [ -124.219088039, 49.782070533000066 ], [ -124.219010038999897, 49.784078699000119 ], [ -124.218982789000023, 49.784078255000075 ], [ -124.218970555999945, 49.784393199000085 ], [ -124.21341942699992, 49.7843025660001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.948595468688374", "sL_AssetLoss": "2281.9", "sL_BldgLoss": "2164.6", "sL_StrLoss": "1652.6", "sL_NStrLoss": "512", "sL_ContLoss": "117.3", "geom_point": "0101000020E6100000B169C61EF1165FC0005C666452E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.356716417999962, 49.781949509000079 ], [ -124.360393956999971, 49.782004761000067 ], [ -124.36038040499993, 49.782866896000044 ], [ -124.360343742999973, 49.783131810000071 ], [ -124.360228729999974, 49.783962907000102 ], [ -124.36018781300001, 49.785416006000034 ], [ -124.360222567999955, 49.785600402000071 ], [ -124.356587526999959, 49.78554578800005 ], [ -124.356716417999962, 49.781949509000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30418584", "BldgCostT": "20978334", "sL_LossRatio": "0.943387249396429", "sL_AssetLoss": "56538.5", "sL_BldgLoss": "53337.7", "sL_StrLoss": "41449.7", "sL_NStrLoss": "11888", "sL_ContLoss": "3200.8", "geom_point": "0101000020E61000002B655BFE6A125FC04964BC391EE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.279697911999961, 49.780257001000066 ], [ -124.279767336999896, 49.778406364000048 ], [ -124.275006051999966, 49.778331283000071 ], [ -124.275116911999959, 49.775383957000024 ], [ -124.275218318999947, 49.775397106000085 ], [ -124.27777589099999, 49.775431192000092 ], [ -124.278584600999963, 49.775026805000117 ], [ -124.279316314, 49.77491990500009 ], [ -124.279341, 49.774757591000068 ], [ -124.280222585999965, 49.773938707000056 ], [ -124.280403606999954, 49.773433089000036 ], [ -124.280391983999948, 49.773020094000081 ], [ -124.279886289999979, 49.772250988000025 ], [ -124.279040911999957, 49.771316693000095 ], [ -124.278550695999911, 49.770601702000128 ], [ -124.27812331199999, 49.770220105000085 ], [ -124.27746179899998, 49.769814195000052 ], [ -124.277215272999968, 49.769712076000111 ], [ -124.277223344000035, 49.76949720400011 ], [ -124.277516143999975, 49.76950182300007 ], [ -124.27755929700001, 49.768352710000052 ], [ -124.278750508999963, 49.768371490000128 ], [ -124.27876957699999, 49.767863339000066 ], [ -124.282530245999936, 49.767922543000125 ], [ -124.282565677999983, 49.766976231000093 ], [ -124.284875711999987, 49.767012533000099 ], [ -124.284904026999968, 49.766255287000043 ], [ -124.289042359999939, 49.76632019900007 ], [ -124.2904531099999, 49.766342292000104 ], [ -124.290319068999935, 49.769938569000018 ], [ -124.288632131999961, 49.769912149000071 ], [ -124.288560111, 49.771842308000068 ], [ -124.284734314, 49.771782295000051 ], [ -124.284720710999963, 49.77214602900014 ], [ -124.2852691679999, 49.772154641000014 ], [ -124.285245943999939, 49.772775822000042 ], [ -124.285572798999937, 49.772780952000105 ], [ -124.285571670999971, 49.772738317000069 ], [ -124.285988208, 49.772733695000049 ], [ -124.285973930999916, 49.772194167000123 ], [ -124.287223523999913, 49.77218028900009 ], [ -124.287230670999961, 49.772450054000032 ], [ -124.288063737999934, 49.772440795000072 ], [ -124.288070889999972, 49.772710559000082 ], [ -124.289320495999931, 49.772696659000083 ], [ -124.289326208999938, 49.772911981000028 ], [ -124.291485679999965, 49.772945780000029 ], [ -124.291412617999953, 49.774906949000105 ], [ -124.291714527999957, 49.774911671000048 ], [ -124.291731367999958, 49.774459577000115 ], [ -124.294756907999968, 49.774506852000044 ], [ -124.294778978999943, 49.77391325100011 ], [ -124.297056411, 49.773948781000072 ], [ -124.297065198999931, 49.773712108000026 ], [ -124.297692657999931, 49.7737218890001 ], [ -124.297694175999979, 49.773681023000066 ], [ -124.299211188999948, 49.773704655000124 ], [ -124.299220927999983, 49.773442060000072 ], [ -124.30477090699999, 49.773528337000144 ], [ -124.304728519999955, 49.774675054000092 ], [ -124.304637967999952, 49.777124596000085 ], [ -124.303120836999966, 49.777101040000048 ], [ -124.303111120999944, 49.77736363300005 ], [ -124.302483609999982, 49.777353884000036 ], [ -124.302482097999984, 49.777394749000074 ], [ -124.300204489999942, 49.777359332000074 ], [ -124.300195717999927, 49.777596004000024 ], [ -124.29781334499999, 49.777558909000092 ], [ -124.297767689999944, 49.778788862000106 ], [ -124.292217086999969, 49.778702231000075 ], [ -124.292223948999947, 49.77851796700007 ], [ -124.289436139999935, 49.778474349000078 ], [ -124.289372235999977, 49.780187467000083 ], [ -124.285256955999927, 49.780122950000099 ], [ -124.28524867899992, 49.780344268000107 ], [ -124.279697911999961, 49.780257001000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.94343032712814", "sL_AssetLoss": "1106.6", "sL_BldgLoss": "1044", "sL_StrLoss": "817", "sL_NStrLoss": "227", "sL_ContLoss": "62.6", "geom_point": "0101000020E6100000F07E471ABD165FC0C6DE491308E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.353988930999947, 49.805689415000096 ], [ -124.353981406999978, 49.80541966000002 ], [ -124.353564600999931, 49.805424529000042 ], [ -124.35354203199995, 49.804615263000066 ], [ -124.354792427999939, 49.804600650000083 ], [ -124.354777368999976, 49.804061140000073 ], [ -124.356027748999907, 49.804046514000042 ], [ -124.356035285999951, 49.80431626900009 ], [ -124.356138960999942, 49.804315056000085 ], [ -124.356868875999908, 49.804306511000071 ], [ -124.35689904, 49.805385531000141 ], [ -124.356065431999966, 49.805395289000053 ], [ -124.35607296799995, 49.805665045000062 ], [ -124.355162558999965, 49.80567569600003 ], [ -124.353988930999947, 49.805689415000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.984163005634595", "sL_AssetLoss": "1031.13", "sL_BldgLoss": "1014.8", "sL_StrLoss": "934", "sL_NStrLoss": "80.8", "sL_ContLoss": "16.33", "geom_point": "0101000020E61000009BC2AD2F10205FC0F3718EB601EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.499531369999957, 49.860564750000073 ], [ -124.499523018999938, 49.860295014 ], [ -124.499105768999968, 49.86030041000005 ], [ -124.499089073000022, 49.859760940000065 ], [ -124.498671826999896, 49.859766335000145 ], [ -124.498641787999986, 49.858795397000044 ], [ -124.500555594999923, 49.858827403000056 ], [ -124.500736474999911, 49.858732802000041 ], [ -124.500791908999972, 49.858703797000025 ], [ -124.501200225000019, 49.858658697000109 ], [ -124.501291592999976, 49.858648609000092 ], [ -124.503541426999945, 49.858652010000142 ], [ -124.503874087999989, 49.858652499000044 ], [ -124.503745993000024, 49.858954706000105 ], [ -124.503773310999932, 49.859678094000046 ], [ -124.503548673999944, 49.859675022000069 ], [ -124.503556577999944, 49.859433230000029 ], [ -124.502835915999952, 49.859442576000077 ], [ -124.502844286, 49.859712311000088 ], [ -124.50200979499999, 49.85972312800007 ], [ -124.502018157999942, 49.859992864000048 ], [ -124.501183661999903, 49.86000367400009 ], [ -124.501192020999923, 49.860273410000033 ], [ -124.500774770999939, 49.860278813000072 ], [ -124.500783128999942, 49.860548548000068 ], [ -124.499531369999957, 49.860564750000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.992530023559156", "sL_AssetLoss": "348.06", "sL_BldgLoss": "345.46", "sL_StrLoss": "336", "sL_NStrLoss": "9.46", "sL_ContLoss": "2.6", "geom_point": "0101000020E610000052B627CC24205FC0922BAB9F6DEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.502485605999979, 49.861605866000104 ], [ -124.503156046999948, 49.861597174000103 ], [ -124.503094789999977, 49.861645904000085 ], [ -124.50298359699994, 49.861854805000107 ], [ -124.502961100999983, 49.862246689000116 ], [ -124.502878761999938, 49.862515365000036 ], [ -124.502859805999933, 49.862577200000082 ], [ -124.502887292999958, 49.863099197000103 ], [ -124.502827666, 49.863490337000023 ], [ -124.50129234299996, 49.863510234000074 ], [ -124.501267261999914, 49.862701028000025 ], [ -124.501684531999942, 49.862695623000036 ], [ -124.501676169999939, 49.862425887000086 ], [ -124.502093437999989, 49.862420481000093 ], [ -124.502076708999965, 49.861881010000104 ], [ -124.502493971999954, 49.861875602000111 ], [ -124.502485605999979, 49.861605866000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.995655790304775", "sL_AssetLoss": "852.399", "sL_BldgLoss": "848.696", "sL_StrLoss": "814.986", "sL_NStrLoss": "33.71", "sL_ContLoss": "3.703", "geom_point": "0101000020E6100000DB171228C91F5FC0C599F4317EEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.495063693999938, 49.869197967000048 ], [ -124.498302984999967, 49.86924244900009 ], [ -124.498243945999903, 49.871428099000077 ], [ -124.498384327999958, 49.872347019000102 ], [ -124.49840302599992, 49.872841444000095 ], [ -124.496298735999957, 49.872812563000068 ], [ -124.494945428999955, 49.872793968000067 ], [ -124.495063693999938, 49.869197967000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.963451019393337", "sL_AssetLoss": "804.4", "sL_BldgLoss": "775", "sL_StrLoss": "644", "sL_NStrLoss": "131", "sL_ContLoss": "29.4", "geom_point": "0101000020E6100000B3718AAF721F5FC03CC030EC72EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.490378993999968, 49.848000138000039 ], [ -124.490370698000035, 49.847730400000039 ], [ -124.489536408999939, 49.847741126000109 ], [ -124.489511536999927, 49.846931914000059 ], [ -124.491597223999975, 49.846905090000078 ], [ -124.491580621, 49.846365615000046 ], [ -124.492832017999916, 49.846349504000088 ], [ -124.492873562999989, 49.84769819000018 ], [ -124.492039274999954, 49.847708933000057 ], [ -124.492047580999937, 49.847978670000046 ], [ -124.490378993999968, 49.848000138000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.992224287708588", "sL_AssetLoss": "691.255", "sL_BldgLoss": "685.88", "sL_StrLoss": "650.11", "sL_NStrLoss": "35.77", "sL_ContLoss": "5.375", "geom_point": "0101000020E6100000210FF1CDFE205FC064F2BC0ADFEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.516287229999946, 49.874719016000036 ], [ -124.516293911999952, 49.874512923000104 ], [ -124.515731621999933, 49.87450530300007 ], [ -124.515753608999958, 49.873827459000047 ], [ -124.514301710999945, 49.873807767000152 ], [ -124.514302338999983, 49.873788405000049 ], [ -124.513462007999948, 49.873776998000032 ], [ -124.513460079999959, 49.873836365000052 ], [ -124.512597694999926, 49.873824653000071 ], [ -124.512592454999933, 49.873985887000082 ], [ -124.507029924999955, 49.873910178000088 ], [ -124.507030397999955, 49.873895687000058 ], [ -124.506324598999953, 49.873886060000117 ], [ -124.506333723999916, 49.873606531000078 ], [ -124.520401379999925, 49.873525684000121 ], [ -124.520360781999969, 49.874774141000103 ], [ -124.516287229999946, 49.874719016000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.972928836128384", "sL_AssetLoss": "1592.1", "sL_BldgLoss": "1549", "sL_StrLoss": "1320", "sL_NStrLoss": "229", "sL_ContLoss": "43.1", "geom_point": "0101000020E6100000A5D2158D31205FC0E08143A0E1EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.502951469, 49.844851243000129 ], [ -124.502954629, 49.84475460200008 ], [ -124.502071941999986, 49.844742520000032 ], [ -124.502189575999978, 49.841146373000093 ], [ -124.502734115999928, 49.841153827000028 ], [ -124.502747707999958, 49.84073809900012 ], [ -124.50390138799996, 49.840713703000112 ], [ -124.503897724999916, 49.841761503000065 ], [ -124.503883985999963, 49.843243586000035 ], [ -124.503858006, 49.843528166000034 ], [ -124.50373624499997, 49.844861978000083 ], [ -124.502951469, 49.844851243000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.995728793489884", "sL_AssetLoss": "1655.27", "sL_BldgLoss": "1648.2", "sL_StrLoss": "1611", "sL_NStrLoss": "37.2", "sL_ContLoss": "7.07", "geom_point": "0101000020E6100000F7CB061D1D1F5FC0C3FA9A40ECEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.483430726000023, 49.864748366000121 ], [ -124.488992102999973, 49.864825274000054 ], [ -124.488873371999958, 49.868421290000128 ], [ -124.483311557, 49.86834437600006 ], [ -124.483430726000023, 49.864748366000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99713054503467", "sL_AssetLoss": "494.519", "sL_BldgLoss": "493.1", "sL_StrLoss": "488", "sL_NStrLoss": "5.1", "sL_ContLoss": "1.419", "geom_point": "0101000020E6100000B88BF6992F215FC04186C8C85DFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.51716116599998, 49.980804685000081 ], [ -124.517277961999966, 49.977209190000046 ], [ -124.519067740999944, 49.977233355000088 ], [ -124.519038819999977, 49.97734000600007 ], [ -124.518702790999924, 49.977775809000022 ], [ -124.517420895000015, 49.978665895000034 ], [ -124.517409390999916, 49.978764194000092 ], [ -124.517796580999942, 49.97907469600009 ], [ -124.51885918799999, 49.979185797000071 ], [ -124.519799307999932, 49.978903797000058 ], [ -124.519993498999966, 49.978900913000061 ], [ -124.520221106999912, 49.979024810000077 ], [ -124.520303900999963, 49.979409396000072 ], [ -124.520152202999896, 49.979924905000125 ], [ -124.520282211999984, 49.980515994000022 ], [ -124.52020775199999, 49.980845802000012 ], [ -124.51716116599998, 49.980804685000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13676000", "BldgCostT": "8960000", "sL_LossRatio": "0.995579049691301", "sL_AssetLoss": "3987.378", "sL_BldgLoss": "3969.75", "sL_StrLoss": "3837.09", "sL_NStrLoss": "132.66", "sL_ContLoss": "17.628", "geom_point": "0101000020E6100000DF5ADC3597215FC0A73428BB95FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.523500982999977, 49.966001245000058 ], [ -124.523519915999941, 49.965415715000063 ], [ -124.52400095199999, 49.965422187000094 ], [ -124.52400602799996, 49.965265151000047 ], [ -124.522624946999912, 49.965246564000076 ], [ -124.52264069899999, 49.964759711000085 ], [ -124.522242960999947, 49.96475435399999 ], [ -124.522265773999962, 49.9640494490001 ], [ -124.521879591999891, 49.96404424700011 ], [ -124.521909347999966, 49.963124996000076 ], [ -124.521853847999964, 49.963124249000046 ], [ -124.521970229999951, 49.959528662000103 ], [ -124.522034776999988, 49.959529532000047 ], [ -124.522057267999983, 49.958834562000071 ], [ -124.522631948999944, 49.958842303000075 ], [ -124.522644868, 49.95844297600005 ], [ -124.528217717999951, 49.958517882000123 ], [ -124.528190098999914, 49.95937483900007 ], [ -124.529144434999978, 49.959387638000095 ], [ -124.528839793999936, 49.959635608000063 ], [ -124.528798685999973, 49.960104205000093 ], [ -124.526846814999942, 49.960111298000101 ], [ -124.525889207999981, 49.960232394000037 ], [ -124.524661078999941, 49.960625500000077 ], [ -124.524562002999943, 49.961005687000082 ], [ -124.524704601999986, 49.961156699000036 ], [ -124.52510077799991, 49.961330392000072 ], [ -124.525204905999914, 49.961499898000071 ], [ -124.525341087999962, 49.962290405000019 ], [ -124.52516341099998, 49.962435600000049 ], [ -124.524475089999953, 49.962714807000076 ], [ -124.524541005999978, 49.963029504000076 ], [ -124.525970086999934, 49.963667591000082 ], [ -124.527081290999945, 49.964435191000057 ], [ -124.528041393999942, 49.964818294000061 ], [ -124.528958089999975, 49.965551791000038 ], [ -124.52904181400001, 49.966018908000137 ], [ -124.528738885999985, 49.966094389000062 ], [ -124.528371310999916, 49.965929195000093 ], [ -124.527955309999953, 49.966060191000103 ], [ -124.527810504999948, 49.966278111000051 ], [ -124.527154691999925, 49.966745312000064 ], [ -124.526876212, 49.967181095000043 ], [ -124.525770598999969, 49.967933090000031 ], [ -124.525834993999979, 49.968246398000097 ], [ -124.526260305999983, 49.968403099000085 ], [ -124.526446289999953, 49.968598189 ], [ -124.526696912999952, 49.969449900000036 ], [ -124.527261510999949, 49.969640707000053 ], [ -124.527847489999942, 49.969659201000077 ], [ -124.5282691889999, 49.969771693000112 ], [ -124.528055208999987, 49.970529402000054 ], [ -124.528444994999958, 49.970911099000098 ], [ -124.528454290999946, 49.971198790000102 ], [ -124.528127450999975, 49.972062827000023 ], [ -124.525283064999968, 49.972024640000051 ], [ -124.525270531, 49.972412625000104 ], [ -124.52307861299991, 49.972383147000066 ], [ -124.522965889999938, 49.972269790000027 ], [ -124.522802599999963, 49.971552008000074 ], [ -124.522190293999984, 49.970705989000052 ], [ -124.522224793999911, 49.970003898000087 ], [ -124.522629395999928, 49.969602194000103 ], [ -124.521935813999946, 49.968810404000031 ], [ -124.521926443000012, 49.9687705260001 ], [ -124.522798268999978, 49.968782266000069 ], [ -124.522888506999919, 49.965993001000136 ], [ -124.523500982999977, 49.966001245000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72913167", "BldgCostT": "49811667", "sL_LossRatio": "0.924895791881213", "sL_AssetLoss": "99512.4", "sL_BldgLoss": "92038.6", "sL_StrLoss": "76353.4", "sL_NStrLoss": "15685.2", "sL_ContLoss": "7473.8", "geom_point": "0101000020E61000002792642DB01E5FC0FA63733867E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.481577651999885, 49.846763761000012 ], [ -124.481557106999929, 49.84609170300007 ], [ -124.479672698999963, 49.846065536000069 ], [ -124.479714385999941, 49.844810017 ], [ -124.479211460999977, 49.84480302700009 ], [ -124.479330888999939, 49.841206905000028 ], [ -124.479332162999967, 49.841206922000069 ], [ -124.479363769999935, 49.840255152000047 ], [ -124.479218942, 49.84025313800008 ], [ -124.479219328999974, 49.840241544000072 ], [ -124.478894629999942, 49.840237029000065 ], [ -124.479014071999984, 49.836640885000122 ], [ -124.479685366999945, 49.836650217000063 ], [ -124.479687548999919, 49.836584502000086 ], [ -124.479716610999958, 49.836584906000049 ], [ -124.479725062999989, 49.836330302000093 ], [ -124.481527561999911, 49.836355336000047 ], [ -124.481548450999966, 49.835725309000104 ], [ -124.481440208999956, 49.835723807000058 ], [ -124.481454843, 49.835282436000085 ], [ -124.480118285999978, 49.835263874000042 ], [ -124.480127956999965, 49.834972485 ], [ -124.478440840999937, 49.834949032000111 ], [ -124.478495260999949, 49.833310919000077 ], [ -124.478246339999927, 49.833314095000084 ], [ -124.478221667999946, 49.832504876000073 ], [ -124.47780465299995, 49.832510194000086 ], [ -124.477738887999976, 49.83035227700006 ], [ -124.478832531999942, 49.830338326000039 ], [ -124.478843626999947, 49.830004250000094 ], [ -124.47766291899994, 49.829987823000081 ], [ -124.477667644999954, 49.82984561500006 ], [ -124.475991964999977, 49.829822280000052 ], [ -124.476035652999954, 49.828509177000015 ], [ -124.475612032999976, 49.828503273000059 ], [ -124.475641421999953, 49.827620120000105 ], [ -124.475631086999925, 49.827619976000044 ], [ -124.475639886999886, 49.827355524000062 ], [ -124.475219687999981, 49.827349666000025 ], [ -124.475264114999973, 49.826014982000125 ], [ -124.472900883999969, 49.825982009000029 ], [ -124.472926219999948, 49.825221972000108 ], [ -124.472764025999979, 49.825219708000091 ], [ -124.47287777299999, 49.821807606000085 ], [ -124.472871540999932, 49.821807519000082 ], [ -124.472893701999979, 49.82114271700005 ], [ -124.471674837999899, 49.821125690000045 ], [ -124.471758783, 49.818609170000101 ], [ -124.471158673999938, 49.81860078100005 ], [ -124.47127866699995, 49.815004538 ], [ -124.474285580999904, 49.815046538000026 ], [ -124.474331570999965, 49.813665297000099 ], [ -124.473477791999969, 49.813676157000081 ], [ -124.473428644999984, 49.812057710000076 ], [ -124.475072074999943, 49.812036802000108 ], [ -124.475082007999944, 49.811738324000089 ], [ -124.476150580999956, 49.811753223000061 ], [ -124.476759757999972, 49.811745461000079 ], [ -124.476763114999969, 49.811644493000102 ], [ -124.476472008999906, 49.811640437000023 ], [ -124.476484914, 49.811252288000041 ], [ -124.471585949999948, 49.811183911000093 ], [ -124.471592026999986, 49.811001669000056 ], [ -124.470061223999963, 49.811021099000129 ], [ -124.470020366999933, 49.809672392000039 ], [ -124.471158013999926, 49.80965795400008 ], [ -124.471257077999923, 49.806688398000084 ], [ -124.471028846999943, 49.806691295000093 ], [ -124.471010023999924, 49.807255489000092 ], [ -124.465455662999886, 49.807177662000079 ], [ -124.465576072999966, 49.803581367000064 ], [ -124.46942859899994, 49.803635378000116 ], [ -124.469445208999957, 49.803138035000075 ], [ -124.471011043999965, 49.80314851800005 ], [ -124.471040262999978, 49.803068276000054 ], [ -124.471069394999972, 49.802988037000027 ], [ -124.471098613999985, 49.80290779600017 ], [ -124.471127816999939, 49.802827588000056 ], [ -124.471156983999919, 49.80274733800011 ], [ -124.471186167999974, 49.802667108000044 ], [ -124.471215385999969, 49.802586866000105 ], [ -124.471244534999983, 49.802506650000041 ], [ -124.47127375399999, 49.802426409000091 ], [ -124.471302972999965, 49.80234616700006 ], [ -124.471332136999948, 49.802265917000035 ], [ -124.471361339999973, 49.802185710000053 ], [ -124.471390505999963, 49.802105458000078 ], [ -124.471419722999912, 49.8020252170001 ], [ -124.471448870999936, 49.801945002000053 ], [ -124.47147809099998, 49.801864759000068 ], [ -124.471507307999929, 49.801784517000051 ], [ -124.471536436999955, 49.801704279000013 ], [ -124.471564577999928, 49.801626995000049 ], [ -124.471621653999989, 49.801627794000055 ], [ -124.471627441999942, 49.801454240000034 ], [ -124.471653201999942, 49.80138335100002 ], [ -124.471682419999937, 49.801303109000038 ], [ -124.471711567999989, 49.801222894000055 ], [ -124.47174078399999, 49.801142652000109 ], [ -124.471770000999982, 49.801062411000096 ], [ -124.47179916399989, 49.800982160000039 ], [ -124.471828364999936, 49.800901954000061 ], [ -124.471857547, 49.800821725000098 ], [ -124.471886743999931, 49.800741461000079 ], [ -124.471915889999948, 49.80066124400004 ], [ -124.471945106999968, 49.800581004000023 ], [ -124.471974323999959, 49.800500763000109 ], [ -124.472003469999933, 49.800420546000062 ], [ -124.472032664999972, 49.80034028300004 ], [ -124.472061845999988, 49.800260054000027 ], [ -124.472091045999917, 49.800179848000056 ], [ -124.472120208999954, 49.80009959800001 ], [ -124.472149422999976, 49.800019357000046 ], [ -124.472178638999978, 49.79993911400004 ], [ -124.472207784999938, 49.799858899000064 ], [ -124.472237, 49.799778658000122 ], [ -124.472266159999933, 49.799698406000068 ], [ -124.472295339999931, 49.799618178000031 ], [ -124.472324519999972, 49.799537950000122 ], [ -124.472353735999974, 49.799457709000144 ], [ -124.472382881, 49.799377493000108 ], [ -124.472412093999964, 49.799297252000081 ], [ -124.472441308999976, 49.799217012000064 ], [ -124.472470452999929, 49.799136795000038 ], [ -124.472499667999941, 49.799056554000089 ], [ -124.472528825999945, 49.798976304000078 ], [ -124.472558004999939, 49.798896075000087 ], [ -124.472587184999909, 49.798815847000036 ], [ -124.472616397999943, 49.798735606000029 ], [ -124.472645611999965, 49.798655365000066 ], [ -124.472674756999979, 49.798575150000104 ], [ -124.472703949999968, 49.798494885000132 ], [ -124.47273312899992, 49.798414657000052 ], [ -124.47276230599999, 49.798334429000064 ], [ -124.472791484999973, 49.798254202000109 ], [ -124.472820696999989, 49.798173961000039 ], [ -124.472849889999949, 49.798093697000041 ], [ -124.472879033999973, 49.798013482000094 ], [ -124.472908245999918, 49.797933241000123 ], [ -124.472937387999963, 49.797853025000109 ], [ -124.472966599999921, 49.797772784000117 ], [ -124.472995778999973, 49.797692557000097 ], [ -124.47302497099993, 49.797612293000078 ], [ -124.473054114999954, 49.797532077000042 ], [ -124.47308332599998, 49.797451836000064 ], [ -124.473112536999949, 49.797371597000073 ], [ -124.473141676999944, 49.797291381000065 ], [ -124.473170890999981, 49.797211140000122 ], [ -124.47320004599996, 49.79713088900008 ], [ -124.473229278999895, 49.797050670000033 ], [ -124.473258399999935, 49.796970433000062 ], [ -124.47328761199995, 49.796890193000053 ], [ -124.47331682199993, 49.796809952000046 ], [ -124.473345961999897, 49.796729737000092 ], [ -124.473375154999985, 49.796649474000048 ], [ -124.473404349999939, 49.796569269000017 ], [ -124.47343350599999, 49.796489019000056 ], [ -124.47346268199999, 49.796408790000079 ], [ -124.473491891999956, 49.796328550000112 ], [ -124.473290014999947, 49.796240195000102 ], [ -124.47245918699997, 49.795876497000037 ], [ -124.472672371, 49.795954378000012 ], [ -124.473531467999962, 49.796268215000048 ], [ -124.474993709000032, 49.796802396000103 ], [ -124.475135044999931, 49.796857724000049 ], [ -124.475768804999973, 49.797105823000081 ], [ -124.476210009999932, 49.797278553000062 ], [ -124.476375751999953, 49.797343349000109 ], [ -124.476380525999986, 49.797609427000019 ], [ -124.476399913999927, 49.79867928200013 ], [ -124.476408525999915, 49.799156313 ], [ -124.476357756999946, 49.799803645000104 ], [ -124.476342157999909, 49.800002017000054 ], [ -124.476319368999924, 49.800292923000086 ], [ -124.476363394999964, 49.800390983000042 ], [ -124.476447376999943, 49.800578060000113 ], [ -124.476462301000012, 49.800599055000092 ], [ -124.476623833999952, 49.80082656200009 ], [ -124.477083962999984, 49.801474569000078 ], [ -124.477545917999947, 49.802125136000036 ], [ -124.478169836999939, 49.803003714000063 ], [ -124.478321335999979, 49.803210992000075 ], [ -124.478654813999981, 49.803667104000091 ], [ -124.479058648999981, 49.804439929000054 ], [ -124.479343293999975, 49.804984686000118 ], [ -124.479496822999934, 49.805278426000051 ], [ -124.47960178699995, 49.805479305000055 ], [ -124.479638615999988, 49.805625379000055 ], [ -124.479733209999949, 49.806001004000066 ], [ -124.479961792999973, 49.806436802000114 ], [ -124.480118835999946, 49.806643073000039 ], [ -124.480550396999945, 49.807209833000073 ], [ -124.480794908999911, 49.807530988000053 ], [ -124.481419604999957, 49.808351410000121 ], [ -124.481548906999961, 49.808641007000091 ], [ -124.481599385, 49.808918783000095 ], [ -124.481544121999917, 49.809205899000112 ], [ -124.481377882999965, 49.809524696000032 ], [ -124.481121797999947, 49.809791008000126 ], [ -124.480630215999938, 49.810202401000062 ], [ -124.479528189999954, 49.811131510000081 ], [ -124.479201404999984, 49.811475991000108 ], [ -124.479038288999988, 49.811785803000063 ], [ -124.478986203999966, 49.812014511000022 ], [ -124.478865711999973, 49.813218107000068 ], [ -124.478730669999933, 49.81376290700014 ], [ -124.478621772999958, 49.814202292000061 ], [ -124.477934713999986, 49.815828292000113 ], [ -124.477852794999976, 49.816022092000061 ], [ -124.477829895999946, 49.816167485000101 ], [ -124.477797824999939, 49.816364951000082 ], [ -124.477786201999947, 49.816436691000014 ], [ -124.477888292000017, 49.816917591000035 ], [ -124.478266131999973, 49.817424907000024 ], [ -124.478768526999957, 49.818099379000081 ], [ -124.478802200999922, 49.818144596000138 ], [ -124.478824150999941, 49.818184742000071 ], [ -124.478915098999934, 49.818350944000038 ], [ -124.478959384999911, 49.818431891000031 ], [ -124.479025088999919, 49.818754814000087 ], [ -124.479013391999914, 49.819024493000079 ], [ -124.478891574999977, 49.819343891000123 ], [ -124.478755005, 49.819566912000091 ], [ -124.478118195999912, 49.820246121000082 ], [ -124.477671400999924, 49.820728288000048 ], [ -124.477430720999948, 49.821071305000032 ], [ -124.477334410999958, 49.821335309000112 ], [ -124.477328006999926, 49.821399443000082 ], [ -124.477298892999926, 49.821690986000092 ], [ -124.477328742999973, 49.821981223000137 ], [ -124.477338798999966, 49.822079192000061 ], [ -124.477459209999964, 49.822512597000127 ], [ -124.477828211999935, 49.823228082000128 ], [ -124.47801063299994, 49.82358177800004 ], [ -124.47813160199992, 49.823816303000065 ], [ -124.478452686999915, 49.824634439000128 ], [ -124.478955502999966, 49.825915386000069 ], [ -124.479030929999965, 49.826091836000018 ], [ -124.479815694999942, 49.827927808000048 ], [ -124.480413717999966, 49.829329726000061 ], [ -124.480561696, 49.829676617000061 ], [ -124.480656765999967, 49.829899473000047 ], [ -124.480717748999922, 49.830042451000082 ], [ -124.480903384999962, 49.830477622000089 ], [ -124.480983223999942, 49.830664745000028 ], [ -124.481418251999955, 49.831684488000064 ], [ -124.481468495999962, 49.831802251000042 ], [ -124.481565807999971, 49.832030298000092 ], [ -124.481820173999921, 49.832321600000114 ], [ -124.481971192999978, 49.832433124000026 ], [ -124.482502711999928, 49.832825799000034 ], [ -124.482939386999988, 49.833072001000104 ], [ -124.483181945999931, 49.833169084000126 ], [ -124.483483989999925, 49.833290018000113 ], [ -124.483663806999928, 49.83331591200006 ], [ -124.485068311999925, 49.833540792000065 ], [ -124.485889836999931, 49.833672319000108 ], [ -124.485915930999951, 49.833676507000085 ], [ -124.486080821999963, 49.833702896000098 ], [ -124.486134893999946, 49.833706920000111 ], [ -124.48640661499999, 49.833727194000083 ], [ -124.48677110499996, 49.833717790000044 ], [ -124.487047611999955, 49.833682111000073 ], [ -124.487315998999975, 49.833418420000044 ], [ -124.492778437999945, 49.833422433000059 ], [ -124.492855744999957, 49.834068608000038 ], [ -124.493077325999977, 49.83562300800002 ], [ -124.493155798999965, 49.835931195000036 ], [ -124.493264274999945, 49.836981620000088 ], [ -124.492834981999977, 49.837423021000134 ], [ -124.492855160999966, 49.84094678600011 ], [ -124.498195207999927, 49.840834247000046 ], [ -124.49816186399994, 49.841850927000081 ], [ -124.495821368999941, 49.841818774000103 ], [ -124.495791821999944, 49.84271828400005 ], [ -124.495745045999968, 49.842717641000043 ], [ -124.49571706899998, 49.84356928200004 ], [ -124.495522502999933, 49.843566608000081 ], [ -124.495511280999892, 49.843908188000086 ], [ -124.489952432999985, 49.843831608000087 ], [ -124.489985747999981, 49.842821350000122 ], [ -124.488075024999944, 49.842794962000042 ], [ -124.488116031999937, 49.841552958000072 ], [ -124.486843203999911, 49.841569294000067 ], [ -124.48683492899994, 49.841299556000088 ], [ -124.486656453999927, 49.841301845000018 ], [ -124.486573117999953, 49.843823409000017 ], [ -124.485309101999945, 49.843805918000051 ], [ -124.485231799999923, 49.846142636000195 ], [ -124.484479412999974, 49.846132218000051 ], [ -124.484489350000018, 49.846456661000069 ], [ -124.48407221699992, 49.846462003000099 ], [ -124.484080476, 49.846731741000035 ], [ -124.481577651999885, 49.846763761000012 ] ], [ [ -124.489669125999939, 49.838482217000092 ], [ -124.489656414999899, 49.838068558 ], [ -124.489297664999981, 49.838063605000116 ], [ -124.489312109999986, 49.837625723000087 ], [ -124.487162331999983, 49.837596015000017 ], [ -124.487160074999963, 49.837664311000083 ], [ -124.487097807999987, 49.837663449000111 ], [ -124.487091383999939, 49.837857911000128 ], [ -124.485477013999954, 49.837835573000078 ], [ -124.48548446599996, 49.83807874200005 ], [ -124.485227594999927, 49.838082034000102 ], [ -124.485209472999941, 49.838629878000077 ], [ -124.485507212999948, 49.838634001000109 ], [ -124.48549369399997, 49.839042766000055 ], [ -124.48626800999989, 49.839053482000075 ], [ -124.486260748999925, 49.839273121000083 ], [ -124.486423916999968, 49.839275378000053 ], [ -124.48641056699995, 49.83967931200003 ], [ -124.486660833999949, 49.839682774000039 ], [ -124.486642860999936, 49.84022659500004 ], [ -124.486691965999981, 49.840227274000029 ], [ -124.486683218999971, 49.84049197000008 ], [ -124.488151682999955, 49.840473123000066 ], [ -124.488193753999951, 49.839198820000078 ], [ -124.489248450999952, 49.839213389000101 ], [ -124.489272751999977, 49.838476745000051 ], [ -124.489669125999939, 49.838482217000092 ] ], [ [ -124.471619038999975, 49.81019179000004 ], [ -124.471635231999983, 49.809706296000087 ], [ -124.471272183999986, 49.809701221000076 ], [ -124.471287186999973, 49.810196004000069 ], [ -124.471619038999975, 49.81019179000004 ] ], [ [ -124.475780761999914, 49.806166211000054 ], [ -124.475780821999948, 49.80616435400006 ], [ -124.472414390999958, 49.806117363000148 ], [ -124.472414446999935, 49.806119222000071 ], [ -124.475780761999914, 49.806166211000054 ] ], [ [ -124.472213444999966, 49.805866714000047 ], [ -124.47223452599998, 49.805234350000013 ], [ -124.471706862999923, 49.805226974000043 ], [ -124.471136307999942, 49.805218995000111 ], [ -124.471139994999987, 49.80534065700008 ], [ -124.471073877999942, 49.805341496000054 ], [ -124.471055865999972, 49.805881416000062 ], [ -124.471940088999972, 49.805870187000075 ], [ -124.472213444999966, 49.805866714000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177916", "BldgCostT": "2191666", "sL_LossRatio": "0.913632180886026", "sL_AssetLoss": "7607", "sL_BldgLoss": "6950", "sL_StrLoss": "5210", "sL_NStrLoss": "1740", "sL_ContLoss": "657", "geom_point": "0101000020E6100000795CF1600D1E5FC0B0324378EEEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.467988385999931, 49.87270619800006 ], [ -124.46774489199997, 49.872492491000081 ], [ -124.467539990999981, 49.87241043800001 ], [ -124.471639545999949, 49.87246774300008 ], [ -124.471633621999942, 49.872645087000109 ], [ -124.47165195499997, 49.87264534300003 ], [ -124.471532110999959, 49.876233212000088 ], [ -124.471508010999983, 49.87624096800009 ], [ -124.466116101999916, 49.876165567000058 ], [ -124.466155216999965, 49.876057304000057 ], [ -124.466410414000023, 49.875765396000098 ], [ -124.467069003999967, 49.875425006000071 ], [ -124.467647907999961, 49.874832499000092 ], [ -124.468236800999989, 49.874456490000064 ], [ -124.46821810299997, 49.873395507000019 ], [ -124.467988385999931, 49.87270619800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "199830000", "BldgCostT": "136605000", "sL_LossRatio": "0.946129879975315", "sL_AssetLoss": "259596.6", "sL_BldgLoss": "245612.1", "sL_StrLoss": "210399.1", "sL_NStrLoss": "35213", "sL_ContLoss": "13984.5", "geom_point": "0101000020E6100000C597DC6A0E205FC0CA29532FECEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.50409201599993, 49.846541371000107 ], [ -124.504144113, 49.844946715000113 ], [ -124.503943201999988, 49.844943969000063 ], [ -124.503945786999935, 49.844864843000103 ], [ -124.50373624499997, 49.844861978000083 ], [ -124.503858006, 49.843528166000034 ], [ -124.503883985999963, 49.843243586000035 ], [ -124.503897724999916, 49.841761503000065 ], [ -124.50390138799996, 49.840713703000112 ], [ -124.502747707999958, 49.84073809900012 ], [ -124.502795738, 49.839269086000073 ], [ -124.501615063999949, 49.839252922000064 ], [ -124.50161960599999, 49.839114102000067 ], [ -124.500860444999915, 49.83910370300012 ], [ -124.500918356999975, 49.837334525000074 ], [ -124.500676054999971, 49.837331204000101 ], [ -124.500637167999912, 49.838518973000042 ], [ -124.500147016999946, 49.838512254000129 ], [ -124.500144550999948, 49.83858758500002 ], [ -124.498433484999907, 49.838564113000103 ], [ -124.498446686999969, 49.838991251000053 ], [ -124.498255566999944, 49.838993721000044 ], [ -124.498195207999927, 49.840834247000046 ], [ -124.492855160999966, 49.84094678600011 ], [ -124.492834981999977, 49.837423021000134 ], [ -124.493264274999945, 49.836981620000088 ], [ -124.493155798999965, 49.835931195000036 ], [ -124.493077325999977, 49.83562300800002 ], [ -124.492855744999957, 49.834068608000038 ], [ -124.492778437999945, 49.833422433000059 ], [ -124.487315998999975, 49.833418420000044 ], [ -124.487047611999955, 49.833682111000073 ], [ -124.48704788699996, 49.833659003000015 ], [ -124.487049465999945, 49.833524164000067 ], [ -124.487051095999959, 49.833389069000049 ], [ -124.48705668099997, 49.832921137000021 ], [ -124.48706081399996, 49.832570547000024 ], [ -124.487086799999972, 49.830388807000055 ], [ -124.490930358999918, 49.830030386000033 ], [ -124.490912021999989, 49.830586950000082 ], [ -124.490933105999943, 49.83058724100006 ], [ -124.49090610699993, 49.831406707000014 ], [ -124.491955202999961, 49.831421175000074 ], [ -124.491949921999918, 49.831249574000083 ], [ -124.49278392799998, 49.831238834000089 ], [ -124.492775624000018, 49.830969097000086 ], [ -124.494026622999954, 49.830952976000106 ], [ -124.49403493199999, 49.831222714000035 ], [ -124.494451934999958, 49.831217338000023 ], [ -124.494460247999925, 49.831487074000059 ], [ -124.495294256999927, 49.831476317000082 ], [ -124.495310891999921, 49.832015792000064 ], [ -124.497395931999975, 49.831988870000025 ], [ -124.497404261999975, 49.832258607000078 ], [ -124.49823828199996, 49.832247828000064 ], [ -124.49824661599996, 49.832517565000039 ], [ -124.498663628999978, 49.832512173000104 ], [ -124.498671965999904, 49.832781910000115 ], [ -124.499505993999918, 49.832771122000089 ], [ -124.499514335999905, 49.833040858000047 ], [ -124.50076538499998, 49.833024663000089 ], [ -124.500773732999932, 49.833294400000092 ], [ -124.50129247299999, 49.833287682000027 ], [ -124.501357493999976, 49.831300527000074 ], [ -124.502246158999938, 49.831312699000165 ], [ -124.502249062999951, 49.831223849000054 ], [ -124.502946330999961, 49.831233394000087 ], [ -124.502947435999943, 49.831199566000073 ], [ -124.503792096999945, 49.831211124 ], [ -124.503795488999955, 49.831107244000066 ], [ -124.503795506999893, 49.831106687000037 ], [ -124.506130179999943, 49.831138598000088 ], [ -124.50612793, 49.8310661800001 ], [ -124.506961927999967, 49.831055338000084 ], [ -124.506953544999988, 49.830785602000091 ], [ -124.506536547999957, 49.830791024000078 ], [ -124.506530080999966, 49.830582840000062 ], [ -124.506371139999942, 49.830538864000069 ], [ -124.50637067299999, 49.830523335000137 ], [ -124.506111174999901, 49.830526708000029 ], [ -124.506102796999954, 49.830256972000043 ], [ -124.505268814999937, 49.830267807000041 ], [ -124.505235321999976, 49.829188862000144 ], [ -124.505652304999956, 49.829183446000066 ], [ -124.50562718099998, 49.828374236000016 ], [ -124.505801253999934, 49.828371974000042 ], [ -124.505882433999915, 49.825883125000068 ], [ -124.509396819999921, 49.825931081000093 ], [ -124.509383193999966, 49.8263486190001 ], [ -124.509331405999959, 49.826926387000071 ], [ -124.509330916, 49.826948395000109 ], [ -124.509325594999922, 49.827182350000093 ], [ -124.509315810999979, 49.82761309300006 ], [ -124.509308900999898, 49.827916398000148 ], [ -124.50936728799995, 49.827957700000177 ], [ -124.509417510999924, 49.827994407000077 ], [ -124.509422793999974, 49.829755615000074 ], [ -124.509423896999948, 49.830661306000074 ], [ -124.509423772999952, 49.831031446000061 ], [ -124.50942375899993, 49.831076410000065 ], [ -124.509423598999916, 49.831568014000013 ], [ -124.509423636999941, 49.831903754000031 ], [ -124.509423627000018, 49.832048340000064 ], [ -124.509423694999953, 49.83228140000007 ], [ -124.509423847999969, 49.833353385000123 ], [ -124.509424047999943, 49.835222581000075 ], [ -124.50942411599999, 49.835780220000025 ], [ -124.509424241999909, 49.836970961000112 ], [ -124.508586010999977, 49.836971468000094 ], [ -124.50663980299997, 49.836972602000081 ], [ -124.506668003999906, 49.837903083000114 ], [ -124.506676577999883, 49.838187290000043 ], [ -124.506669791999968, 49.839270733000014 ], [ -124.50666848799996, 49.839477730000091 ], [ -124.506659044999978, 49.840989184000058 ], [ -124.50665410199997, 49.8417767030001 ], [ -124.506656150999987, 49.843255377000084 ], [ -124.50665638299995, 49.843417211 ], [ -124.506657131999944, 49.843939050000117 ], [ -124.506659309999918, 49.845476935000057 ], [ -124.506659699999943, 49.845773806000061 ], [ -124.506659886999941, 49.845917850000035 ], [ -124.506660363999941, 49.846241694000078 ], [ -124.50666068699995, 49.846479015000106 ], [ -124.506169541999938, 49.846481539000088 ], [ -124.504459298999961, 49.846490309000089 ], [ -124.50409201599993, 49.846541371000107 ] ], [ [ -124.508755812999979, 49.835079673000031 ], [ -124.508752567999963, 49.834975401000051 ], [ -124.508335189999926, 49.83496971100007 ], [ -124.508338781999967, 49.835085101000104 ], [ -124.508755812999979, 49.835079673000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.969640130861505", "sL_AssetLoss": "2292.5", "sL_BldgLoss": "2222.9", "sL_StrLoss": "1964", "sL_NStrLoss": "258.9", "sL_ContLoss": "69.6", "geom_point": "0101000020E6100000676A6D7594205FC0E3399D5C3AE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.50880352899999, 49.823205863000091 ], [ -124.508753187999957, 49.821587446000059 ], [ -124.508336269999987, 49.821592873000057 ], [ -124.508322888999913, 49.821162512000086 ], [ -124.508928153999989, 49.821156724000019 ], [ -124.509076772999919, 49.821155302000072 ], [ -124.509373335999911, 49.821152466000044 ], [ -124.509410527999961, 49.821310310000086 ], [ -124.509482014999904, 49.821613597000031 ], [ -124.509505320999935, 49.822605994000078 ], [ -124.509486037000016, 49.823196975000023 ], [ -124.50880352899999, 49.823205863000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11334167", "BldgCostT": "7816667", "sL_LossRatio": "0.965238109331992", "sL_AssetLoss": "13514.8", "sL_BldgLoss": "13045", "sL_StrLoss": "11500", "sL_NStrLoss": "1545", "sL_ContLoss": "469.8", "geom_point": "0101000020E61000007BFDA43561205FC085AD9F1F42E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.503753247999924, 49.821206110000062 ], [ -124.50820487299994, 49.821163640000094 ], [ -124.50813346699999, 49.823356426000061 ], [ -124.506456984999915, 49.823333542000057 ], [ -124.506450309999934, 49.823538267000067 ], [ -124.505785030999945, 49.823529180000065 ], [ -124.505783285999911, 49.823582683000069 ], [ -124.503769442999925, 49.823555149000107 ], [ -124.503801204999931, 49.821736592000065 ], [ -124.503753247999924, 49.821206110000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155043975", "BldgCostT": "99715309", "sL_LossRatio": "0.891975758432873", "sL_AssetLoss": "201945.69", "sL_BldgLoss": "180130.66", "sL_StrLoss": "143674.66", "sL_NStrLoss": "36456", "sL_ContLoss": "21815.03", "geom_point": "0101000020E61000008121C4F89D205FC03490D37CBAEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.506669791999968, 49.839270733000014 ], [ -124.506676577999883, 49.838187290000043 ], [ -124.506668003999906, 49.837903083000114 ], [ -124.50663980299997, 49.836972602000081 ], [ -124.508586010999977, 49.836971468000094 ], [ -124.509424241999909, 49.836970961000112 ], [ -124.510803388999989, 49.836967259000097 ], [ -124.512142075999947, 49.836967492000085 ], [ -124.512144751000022, 49.837481217000075 ], [ -124.512146740999981, 49.83785885599999 ], [ -124.512152119999939, 49.83888339900011 ], [ -124.513487621999943, 49.838897101000057 ], [ -124.513472989999968, 49.841788604000072 ], [ -124.512162287999956, 49.841778901000055 ], [ -124.512162905999972, 49.846468500000071 ], [ -124.509423888999919, 49.84646449400001 ], [ -124.508339765999921, 49.846471032000139 ], [ -124.508095804999982, 49.846472496000047 ], [ -124.507839133999965, 49.846473649000139 ], [ -124.507588669999947, 49.846474790000109 ], [ -124.50704614699994, 49.846477257000075 ], [ -124.50666068699995, 49.846479015000106 ], [ -124.506660363999941, 49.846241694000078 ], [ -124.506659886999941, 49.845917850000035 ], [ -124.506659699999943, 49.845773806000061 ], [ -124.506659309999918, 49.845476935000057 ], [ -124.506657131999944, 49.843939050000117 ], [ -124.50665638299995, 49.843417211 ], [ -124.506656150999987, 49.843255377000084 ], [ -124.50665410199997, 49.8417767030001 ], [ -124.506659044999978, 49.840989184000058 ], [ -124.50666848799996, 49.839477730000091 ], [ -124.506669791999968, 49.839270733000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.990694566768913", "sL_AssetLoss": "1646.35", "sL_BldgLoss": "1631.03", "sL_StrLoss": "1509.43", "sL_NStrLoss": "121.6", "sL_ContLoss": "15.32", "geom_point": "0101000020E6100000525ED0E748245FC07F287F94E4DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.564964421999932, 49.751493880000019 ], [ -124.564988262999961, 49.750731492000064 ], [ -124.562983995999943, 49.750705131000075 ], [ -124.562987917999976, 49.750579891000072 ], [ -124.562587692999927, 49.750574622000073 ], [ -124.562652337999921, 49.750533666000116 ], [ -124.56315629199996, 49.750388126000125 ], [ -124.563824326999963, 49.749977050000112 ], [ -124.563733621999972, 49.749776992000122 ], [ -124.563726014999972, 49.749769154000035 ], [ -124.563683737999924, 49.749660604000077 ], [ -124.564406332999951, 49.749139677000137 ], [ -124.564554575999978, 49.748969344000095 ], [ -124.564734226999988, 49.74875500100012 ], [ -124.563983650999916, 49.748057693000135 ], [ -124.563156563999954, 49.747546720000081 ], [ -124.562307232999927, 49.746790145 ], [ -124.562201008, 49.746712744000085 ], [ -124.562552327, 49.746717371000052 ], [ -124.562554462999913, 49.746649133000133 ], [ -124.568101658999979, 49.746722034000094 ], [ -124.568087556999942, 49.747174025000049 ], [ -124.568643867999981, 49.747181321000035 ], [ -124.568620089999953, 49.747943712000037 ], [ -124.570624239999958, 49.747969971000074 ], [ -124.570512207999982, 49.751566657000076 ], [ -124.564964421999932, 49.751493880000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.992898486824207", "sL_AssetLoss": "1065.97", "sL_BldgLoss": "1058.4", "sL_StrLoss": "1000", "sL_NStrLoss": "58.4", "sL_ContLoss": "7.57", "geom_point": "0101000020E6100000F27731C583285FC092ACE4DFBEDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.630310736999931, 49.749797676000064 ], [ -124.630418077999963, 49.746200921000089 ], [ -124.635965324999972, 49.74627037400009 ], [ -124.635906735999924, 49.748241628000038 ], [ -124.634818399999915, 49.748104901000069 ], [ -124.634534913999914, 49.748388297000147 ], [ -124.634553711999956, 49.748495197000089 ], [ -124.635881640999941, 49.749085878000081 ], [ -124.63586760500003, 49.749558109000105 ], [ -124.635810296999978, 49.749576111000039 ], [ -124.635820673999959, 49.749866663000063 ], [ -124.630310736999931, 49.749797676000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.973043376456126", "sL_AssetLoss": "1366.64", "sL_BldgLoss": "1329.8", "sL_StrLoss": "1092.9", "sL_NStrLoss": "236.9", "sL_ContLoss": "36.84", "geom_point": "0101000020E610000040B676ECB1225FC0B441C3EEFDDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.539050680999964, 49.725047392000064 ], [ -124.544595229999942, 49.725121489000117 ], [ -124.544484252999951, 49.72862244600001 ], [ -124.544178901999928, 49.728590084000153 ], [ -124.54385272799999, 49.728521075000117 ], [ -124.543462082999895, 49.728454321000136 ], [ -124.543224021999961, 49.728385527000057 ], [ -124.542953859999969, 49.728283990000065 ], [ -124.54264792299989, 49.728159336000047 ], [ -124.542094249999963, 49.727988827000104 ], [ -124.541548533999972, 49.727750191000091 ], [ -124.541047995999961, 49.727563498000052 ], [ -124.540868426999936, 49.727478543000124 ], [ -124.540247041, 49.727237916000064 ], [ -124.539888958999967, 49.727081312000031 ], [ -124.539766364999977, 49.727032926000028 ], [ -124.539612604999974, 49.726970118000047 ], [ -124.539216902999897, 49.726806718000049 ], [ -124.538997426999941, 49.726721043000047 ], [ -124.539050680999964, 49.725047392000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.953603346643849", "sL_AssetLoss": "1051.8", "sL_BldgLoss": "1003", "sL_StrLoss": "803", "sL_NStrLoss": "200", "sL_ContLoss": "48.8", "geom_point": "0101000020E61000002D95D831C5215FC0FAF0EA24F4D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.527574546999972, 49.703956780000048 ], [ -124.527566085999965, 49.703687039000066 ], [ -124.525486571999963, 49.703714452000078 ], [ -124.525452781999903, 49.702635494000056 ], [ -124.525868675999959, 49.702630014000121 ], [ -124.525853370999954, 49.702141376000064 ], [ -124.525851777999961, 49.702090534000057 ], [ -124.525917097, 49.702089673000053 ], [ -124.526267666999914, 49.702085054000065 ], [ -124.526259214999953, 49.701815314000079 ], [ -124.526675101999899, 49.701809832000023 ], [ -124.526666649, 49.701540092000066 ], [ -124.529161953999946, 49.701507167000038 ], [ -124.529187356999969, 49.702316386000057 ], [ -124.529603247, 49.702310893000067 ], [ -124.529645599, 49.703659589000054 ], [ -124.529229695999959, 49.703665082000072 ], [ -124.529238164999924, 49.703934821000118 ], [ -124.527574546999972, 49.703956780000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.992745572184825", "sL_AssetLoss": "1530.1", "sL_BldgLoss": "1519", "sL_StrLoss": "1427", "sL_NStrLoss": "92", "sL_ContLoss": "11.1", "geom_point": "0101000020E6100000D46D1EC16C265FC04F13C7CB64E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.597668787999979, 49.751242118000029 ], [ -124.603216593999932, 49.751313235000097 ], [ -124.603107107999961, 49.754909937000015 ], [ -124.597558866999947, 49.754838816000067 ], [ -124.597668787999979, 49.751242118000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9106000", "BldgCostT": "6280000", "sL_LossRatio": "0.98636558085579", "sL_AssetLoss": "6568.67", "sL_BldgLoss": "6479.11", "sL_StrLoss": "5957.61", "sL_NStrLoss": "521.5", "sL_ContLoss": "89.56", "geom_point": "0101000020E6100000BA9278D4B3205FC05E965DCD0DDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.517641597999926, 49.717875612000128 ], [ -124.517380512999978, 49.717510233000077 ], [ -124.517090832999926, 49.717118257000038 ], [ -124.516830843999955, 49.716788851000061 ], [ -124.516701278999989, 49.7166376220001 ], [ -124.516586433, 49.716513185000103 ], [ -124.516356673999979, 49.716264336000044 ], [ -124.5160856899999, 49.716025026000082 ], [ -124.51591339099997, 49.715838382000079 ], [ -124.515769412999987, 49.715669360000113 ], [ -124.515426783999928, 49.715359016000015 ], [ -124.515155511999978, 49.715110706000068 ], [ -124.514898329999966, 49.714871205000073 ], [ -124.514855351999984, 49.714826801000093 ], [ -124.514611771999938, 49.714578130000042 ], [ -124.514369887999962, 49.714383392000087 ], [ -124.514313033999954, 49.714339181000078 ], [ -124.514289797999979, 49.71432262900003 ], [ -124.514015118999936, 49.714127194000113 ], [ -124.513802374999983, 49.713977039000042 ], [ -124.513617932999978, 49.713844541000064 ], [ -124.513377718999919, 49.713703748000064 ], [ -124.513123385999933, 49.713554158000058 ], [ -124.512841577999922, 49.713413930000058 ], [ -124.512517355999933, 49.713247249000098 ], [ -124.512194235999971, 49.713116560000039 ], [ -124.511899147999955, 49.712994461000051 ], [ -124.511632307999903, 49.712890008000102 ], [ -124.511338060999918, 49.712794894000062 ], [ -124.511002221999931, 49.712700341000051 ], [ -124.510925725999982, 49.712678063000062 ], [ -124.510736256999934, 49.712622858000081 ], [ -124.510609794999979, 49.712570529000104 ], [ -124.510284437999957, 49.712367892000081 ], [ -124.510128306999974, 49.712252991000106 ], [ -124.509970730999981, 49.712093142000107 ], [ -124.509869517000013, 49.711959531000097 ], [ -124.509766594999988, 49.711771964000071 ], [ -124.509693923, 49.711664999 ], [ -124.508153415999956, 49.711640097000036 ], [ -124.507099062999941, 49.711635822000126 ], [ -124.506224971, 49.711629204000076 ], [ -124.50504664799999, 49.711653502000033 ], [ -124.504436523999942, 49.711661433000081 ], [ -124.503909626, 49.711668281000094 ], [ -124.503299555999945, 49.71167621600005 ], [ -124.503202487999943, 49.711677475000052 ], [ -124.502717443999956, 49.711692765000066 ], [ -124.502522497, 49.711668320000022 ], [ -124.50243847199998, 49.711642401000027 ], [ -124.502381339999886, 49.711589187000072 ], [ -124.50236552299998, 49.71152643300006 ], [ -124.502204956999933, 49.710817894000051 ], [ -124.502081007, 49.709947004000135 ], [ -124.501981995999969, 49.709435556000109 ], [ -124.50194846299992, 49.70924709500013 ], [ -124.501941504999962, 49.709022317000127 ], [ -124.501948179999914, 49.708788359000074 ], [ -124.502011135999965, 49.70858066699999 ], [ -124.502076845999966, 49.70846288300006 ], [ -124.502167790999962, 49.708263796000089 ], [ -124.502261233999945, 49.708145662000028 ], [ -124.502381852999974, 49.708009171000135 ], [ -124.502516072999953, 49.707863513000056 ], [ -124.502745406999964, 49.707653654000076 ], [ -124.50285216499995, 49.707517320000079 ], [ -124.502958628999934, 49.707372045000113 ], [ -124.503038483999916, 49.707263042000093 ], [ -124.503103944999935, 49.707136268000077 ], [ -124.503181304999927, 49.706946372000125 ], [ -124.503229822000023, 49.706720863000058 ], [ -124.503238967999948, 49.706567836000104 ], [ -124.503246709, 49.706369853000062 ], [ -124.503275200999951, 49.706305103000034 ], [ -124.50434591699991, 49.706259308 ], [ -124.504435980999958, 49.706255459000026 ], [ -124.505156105999916, 49.706219126000086 ], [ -124.506915208999956, 49.706142264000093 ], [ -124.5072337899999, 49.706129107000038 ], [ -124.507111739999957, 49.705770912000084 ], [ -124.506988889999974, 49.705385721000042 ], [ -124.507236495999948, 49.705319533000086 ], [ -124.507249067999936, 49.705312737000035 ], [ -124.507228779999934, 49.705937076000076 ], [ -124.509135809999989, 49.705963161000078 ], [ -124.509076447999959, 49.707792133000083 ], [ -124.510342677999986, 49.707809434000104 ], [ -124.510313246999928, 49.708716909000067 ], [ -124.512904535999951, 49.708752270000069 ], [ -124.512887426999924, 49.709280752000083 ], [ -124.513159760999926, 49.709284465000046 ], [ -124.51314232199999, 49.709823157000073 ], [ -124.513831467999964, 49.709832549000069 ], [ -124.51381921399998, 49.710211316 ], [ -124.514708358999954, 49.710223427000123 ], [ -124.514649790999982, 49.712034493000068 ], [ -124.519248199999964, 49.712097014000079 ], [ -124.519132232999979, 49.715693827000088 ], [ -124.518045516999919, 49.71567907100011 ], [ -124.518035195999985, 49.715998909000177 ], [ -124.519288140999919, 49.716015923000022 ], [ -124.519236973999909, 49.717602855000102 ], [ -124.521391057999978, 49.717632072000114 ], [ -124.52132660700002, 49.719633775000013 ], [ -124.521317220999933, 49.719626378000065 ], [ -124.521092230999926, 49.719530401000057 ], [ -124.520909145999923, 49.719442851000046 ], [ -124.520642852999941, 49.719356383000118 ], [ -124.520222607999955, 49.719226981000112 ], [ -124.51974602699994, 49.719071333000102 ], [ -124.51940955299996, 49.718958801000042 ], [ -124.519115808999942, 49.718881714000119 ], [ -124.518956350999943, 49.718832604000042 ], [ -124.518947696999959, 49.71882994000007 ], [ -124.518652568999983, 49.718707882000039 ], [ -124.51841260499999, 49.718576097000032 ], [ -124.518270837, 49.718479033000015 ], [ -124.518085796999955, 49.718328532000072 ], [ -124.517871318999966, 49.718124450000062 ], [ -124.517641597999926, 49.717875612000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.992451871235379", "sL_AssetLoss": "1455.99", "sL_BldgLoss": "1445", "sL_StrLoss": "1361", "sL_NStrLoss": "84", "sL_ContLoss": "10.99", "geom_point": "0101000020E610000083EF268D8B275FC05E4BC807BDDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.615173554999956, 49.738310222000045 ], [ -124.620719825999927, 49.738380450000108 ], [ -124.620611742000037, 49.74197723500005 ], [ -124.615065036999908, 49.741907001000072 ], [ -124.615173554999956, 49.738310222000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794166", "BldgCostT": "2616666", "sL_LossRatio": "0.971569952578406", "sL_AssetLoss": "4365.1", "sL_BldgLoss": "4241", "sL_StrLoss": "3700", "sL_NStrLoss": "541", "sL_ContLoss": "124.1", "geom_point": "0101000020E61000004D09D2D612265FC06BF981ABBCE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.596895887999921, 49.775071770000046 ], [ -124.596860426999967, 49.773992860000085 ], [ -124.596027446999983, 49.774004341000072 ], [ -124.596018585999985, 49.77373461300008 ], [ -124.595185609999987, 49.773746085000084 ], [ -124.59517675499994, 49.773476358000053 ], [ -124.594760267999959, 49.773482092000087 ], [ -124.594751415999951, 49.773212365000063 ], [ -124.59391844699999, 49.773223828000035 ], [ -124.593909597999968, 49.772954101000082 ], [ -124.593076633999956, 49.772965559000021 ], [ -124.593067791999943, 49.772695831000092 ], [ -124.592651310999884, 49.772701557000033 ], [ -124.592607106999978, 49.771352918000055 ], [ -124.592190637999948, 49.771358643000077 ], [ -124.592181799999963, 49.771088915000071 ], [ -124.590515932999949, 49.771111798000085 ], [ -124.590507104999944, 49.770842071000096 ], [ -124.590090639999971, 49.770847788000054 ], [ -124.59004651099994, 49.769499147000055 ], [ -124.590879415999964, 49.769487711000068 ], [ -124.590861756, 49.768948253000111 ], [ -124.591278203999963, 49.768942535000079 ], [ -124.591260540999912, 49.768403078000105 ], [ -124.590844095999969, 49.768408798000074 ], [ -124.59082643699999, 49.767869341000093 ], [ -124.590409998, 49.767875059000076 ], [ -124.590383516999978, 49.767065874000082 ], [ -124.591632813999951, 49.767048716000076 ], [ -124.591641645999957, 49.76731844400009 ], [ -124.592058079999958, 49.767312722000099 ], [ -124.592066916999954, 49.767582449000066 ], [ -124.592483353999938, 49.767576726000044 ], [ -124.592492190999963, 49.767846454000029 ], [ -124.592908629999954, 49.76784072800006 ], [ -124.592917471999911, 49.768110456000038 ], [ -124.593333911999963, 49.768104729000072 ], [ -124.593342756999945, 49.768374457000036 ], [ -124.593759198999919, 49.768368728000027 ], [ -124.593768044999933, 49.76863845600014 ], [ -124.594184489999989, 49.768632726000085 ], [ -124.59419333699995, 49.768902454000049 ], [ -124.5946097839999, 49.768896722000129 ], [ -124.59461863699994, 49.769166450000121 ], [ -124.595035084999964, 49.769160716000108 ], [ -124.59504393899995, 49.769430444000079 ], [ -124.595460390999989, 49.769424710000131 ], [ -124.595469245999979, 49.769694437000105 ], [ -124.595885698999922, 49.769688701000092 ], [ -124.595903416999974, 49.770228155000034 ], [ -124.596319874999892, 49.770222417000134 ], [ -124.596328735999961, 49.770492145000105 ], [ -124.597161655999912, 49.77048066400004 ], [ -124.597179387000025, 49.771020119000077 ], [ -124.597595850999966, 49.771014375000078 ], [ -124.597613588999963, 49.771553831000055 ], [ -124.598030056999974, 49.771548086000045 ], [ -124.598038928000022, 49.771817814000038 ], [ -124.59845539899996, 49.771812068000052 ], [ -124.598464271999916, 49.772081794 ], [ -124.598880744999988, 49.772076048000024 ], [ -124.59889849699999, 49.772615501000104 ], [ -124.599314975, 49.772609752000051 ], [ -124.599323852999987, 49.772879479000117 ], [ -124.599740333999975, 49.772873729 ], [ -124.599775856999941, 49.773952636000118 ], [ -124.600192346999975, 49.773946885000051 ], [ -124.600227880999952, 49.775025791000125 ], [ -124.596895887999921, 49.775071770000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15887833", "BldgCostT": "10693333", "sL_LossRatio": "0.86885684935066", "sL_AssetLoss": "50035.4", "sL_BldgLoss": "43473.6", "sL_StrLoss": "30841.6", "sL_NStrLoss": "12632", "sL_ContLoss": "6561.8", "geom_point": "0101000020E61000009215470E26245FC0D70C5F15DEDB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.55814071599994, 49.722978818000094 ], [ -124.558054377999923, 49.720281471000042 ], [ -124.557638339999954, 49.720287067000079 ], [ -124.557491633999959, 49.715701573000075 ], [ -124.557907633999946, 49.715695977000031 ], [ -124.557838590999921, 49.713538096000079 ], [ -124.558254572999928, 49.713532499000053 ], [ -124.558245939999949, 49.713262765000117 ], [ -124.561573762999927, 49.713217938000078 ], [ -124.561565113000015, 49.712948204 ], [ -124.562397061999903, 49.712936982000095 ], [ -124.562388406999929, 49.71266724700012 ], [ -124.563636323999944, 49.712650405000034 ], [ -124.563644986999975, 49.71292013900009 ], [ -124.564476934999945, 49.712908903000077 ], [ -124.564485602, 49.713178637000041 ], [ -124.564901579999955, 49.713173016000042 ], [ -124.564910246999958, 49.713442750000119 ], [ -124.56615818299997, 49.713425880000074 ], [ -124.56616685799996, 49.713695614000095 ], [ -124.566582838999977, 49.713689988000041 ], [ -124.566591516999949, 49.713959722000084 ], [ -124.567007498999928, 49.713954094000016 ], [ -124.5670086199999, 49.71398888500007 ], [ -124.569506660999963, 49.714021671000069 ], [ -124.569477310999929, 49.713111093000037 ], [ -124.569061334999972, 49.713116729000049 ], [ -124.569052644999985, 49.712846996000053 ], [ -124.56863667199994, 49.712852632000072 ], [ -124.568619292, 49.712313164000115 ], [ -124.56778735599994, 49.712324429000056 ], [ -124.5677786699999, 49.712054696000052 ], [ -124.567362704999937, 49.712060326000014 ], [ -124.567354020999915, 49.711790592000106 ], [ -124.56693805899999, 49.711796221000078 ], [ -124.566894661999982, 49.710447550000026 ], [ -124.568142517999931, 49.710430660000029 ], [ -124.568151204999964, 49.710700394000085 ], [ -124.568567159999986, 49.710694760000145 ], [ -124.568593224999987, 49.711503962000101 ], [ -124.569009185999917, 49.711498327000079 ], [ -124.569026568, 49.712037795000043 ], [ -124.571106395999962, 49.712009597000062 ], [ -124.571115098999897, 49.712279330000023 ], [ -124.57153106799997, 49.712273685000063 ], [ -124.571557183999957, 49.713082886000109 ], [ -124.571141209999936, 49.713088530000043 ], [ -124.571172023999978, 49.714043498000123 ], [ -124.571497816999951, 49.714047765000046 ], [ -124.571485830999961, 49.714433112000087 ], [ -124.571600712999981, 49.714431552000079 ], [ -124.571809704999907, 49.720905149000011 ], [ -124.571555422999964, 49.720908601000104 ], [ -124.571495546999984, 49.722833407000032 ], [ -124.565951230999929, 49.7227606760001 ], [ -124.565981429999979, 49.721793659000049 ], [ -124.565595099999925, 49.721798881000083 ], [ -124.565603773999896, 49.72206861500009 ], [ -124.563523510999929, 49.722096720000124 ], [ -124.563532175999953, 49.722366454000067 ], [ -124.562700065999977, 49.722377685000019 ], [ -124.562708723999947, 49.722647419000076 ], [ -124.560212374999978, 49.722681076000114 ], [ -124.560221022999912, 49.722950811000018 ], [ -124.55814071599994, 49.722978818000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.993340962044862", "sL_AssetLoss": "1450.66", "sL_BldgLoss": "1441", "sL_StrLoss": "1370", "sL_NStrLoss": "71", "sL_ContLoss": "9.66", "geom_point": "0101000020E610000045BD1A7F26285FC0E4761ECBF1DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.624629719999973, 49.747733181000072 ], [ -124.630177142999926, 49.747802928000105 ], [ -124.630069778999982, 49.751399675000094 ], [ -124.624521919999921, 49.751329923000085 ], [ -124.624629719999973, 49.747733181000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.986348458063249", "sL_AssetLoss": "1018.2", "sL_BldgLoss": "1004.3", "sL_StrLoss": "908", "sL_NStrLoss": "96.3", "sL_ContLoss": "13.9", "geom_point": "0101000020E61000005E198EC6E5235FC0A201A36871DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.557679818999972, 49.73610421000015 ], [ -124.562943307999973, 49.736173641000086 ], [ -124.562832336999932, 49.739718225000026 ], [ -124.561192099999971, 49.739748791000046 ], [ -124.558591266999898, 49.739714476000067 ], [ -124.558732678999917, 49.739602536000099 ], [ -124.559029220999918, 49.739371500000054 ], [ -124.559229839999958, 49.739161449000022 ], [ -124.559371921999926, 49.738983764000025 ], [ -124.55952372899999, 49.738802726000074 ], [ -124.559589824999975, 49.738619238000062 ], [ -124.559587673999957, 49.738296273000095 ], [ -124.559573019999974, 49.738121743000072 ], [ -124.559518909999966, 49.737984077000107 ], [ -124.559435876999956, 49.737755524000185 ], [ -124.559354538, 49.737677193000145 ], [ -124.559225059999946, 49.737535009000055 ], [ -124.558781177999919, 49.737109250000053 ], [ -124.558237301999966, 49.736594832000108 ], [ -124.557679818999972, 49.73610421000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.992054942095341", "sL_AssetLoss": "2227.8", "sL_BldgLoss": "2210.1", "sL_StrLoss": "2085", "sL_NStrLoss": "125.1", "sL_ContLoss": "17.7", "geom_point": "0101000020E610000039422700D6265FC0F4DE7B2C3BE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.605165134999936, 49.761757896000141 ], [ -124.605171231999989, 49.761557320000065 ], [ -124.603938197999952, 49.761541564000069 ], [ -124.603955780999982, 49.760963798000027 ], [ -124.602872094999924, 49.760949938000131 ], [ -124.602981612999955, 49.757353267000013 ], [ -124.608530166999955, 49.757424112000095 ], [ -124.60851264399993, 49.758001883000119 ], [ -124.60959626199994, 49.758015687000054 ], [ -124.609590183999913, 49.758216263000058 ], [ -124.610823129999957, 49.75823195600006 ], [ -124.610714222999917, 49.761828630000103 ], [ -124.605165134999936, 49.761757896000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.99380962683286", "sL_AssetLoss": "1432.87", "sL_BldgLoss": "1424", "sL_StrLoss": "1350", "sL_NStrLoss": "74", "sL_ContLoss": "8.87", "geom_point": "0101000020E6100000F3E479F4AF275FC0552069264EE14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.617394178999973, 49.758364028000074 ], [ -124.622942876999929, 49.758434141000095 ], [ -124.62283492, 49.762030827000025 ], [ -124.617285786999943, 49.76196070900005 ], [ -124.617394178999973, 49.758364028000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38604500", "BldgCostT": "26360000", "sL_LossRatio": "0.980062995940972", "sL_AssetLoss": "38142.14", "sL_BldgLoss": "37381.7", "sL_StrLoss": "33648.7", "sL_NStrLoss": "3733", "sL_ContLoss": "760.44", "geom_point": "0101000020E6100000E850C055A2225FC04995498934E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.555929093999922, 49.760346004000048 ], [ -124.555803000999944, 49.759853189000047 ], [ -124.555319324999914, 49.759077004000055 ], [ -124.555292010999935, 49.758635488000074 ], [ -124.554972811999917, 49.758199692000098 ], [ -124.55454490399994, 49.757828 ], [ -124.554337207999964, 49.757866504000077 ], [ -124.554500390999962, 49.758188302000072 ], [ -124.554188713999935, 49.758461796000113 ], [ -124.55339159, 49.758698213000116 ], [ -124.552697901000016, 49.759148310000079 ], [ -124.551904107999974, 49.759491497000049 ], [ -124.551910891999981, 49.759733608000026 ], [ -124.552422498999974, 49.76011390300004 ], [ -124.551918001999951, 49.759950097000072 ], [ -124.551682877999923, 49.759944394000044 ], [ -124.551300102999932, 49.759742085000028 ], [ -124.55097171, 49.759863195000015 ], [ -124.550692789999985, 49.759831910000038 ], [ -124.550706515999934, 49.760244893000042 ], [ -124.550261588999945, 49.760269098000101 ], [ -124.549318089999971, 49.759804813000081 ], [ -124.548818711999928, 49.759451605000073 ], [ -124.548598894999941, 49.759462989000035 ], [ -124.548606013999986, 49.759742094000032 ], [ -124.54841269299996, 49.759745003000042 ], [ -124.54801688699996, 49.759525709000101 ], [ -124.547724282999951, 49.759528500000094 ], [ -124.547075587999956, 49.759186691000096 ], [ -124.54661780399999, 49.758733792000072 ], [ -124.546585461999911, 49.75873236900005 ], [ -124.545837785999964, 49.75869959900011 ], [ -124.544763996999947, 49.758515914000078 ], [ -124.544513713999919, 49.758555792000095 ], [ -124.544484884999989, 49.758543429000049 ], [ -124.54452253099997, 49.757356689000105 ], [ -124.543398277000023, 49.757341697000065 ], [ -124.543374587999935, 49.75808785800006 ], [ -124.542057023999959, 49.757671301000109 ], [ -124.540803493999974, 49.757084602000084 ], [ -124.538274706, 49.756596084000094 ], [ -124.538107679999925, 49.756607498000079 ], [ -124.537726789999937, 49.75681971100002 ], [ -124.536687617, 49.756896593000107 ], [ -124.535986716999943, 49.757130093000043 ], [ -124.535565773, 49.756991994 ], [ -124.534983712999932, 49.757063208000019 ], [ -124.5346340899999, 49.756986297 ], [ -124.534218003999939, 49.757001999000074 ], [ -124.534130692999923, 49.756858095000091 ], [ -124.533471492999936, 49.756616017000063 ], [ -124.532720417999926, 49.756184497000092 ], [ -124.532519207999925, 49.755926698000053 ], [ -124.531692141999955, 49.755489978000114 ], [ -124.531690685999976, 49.755443757000108 ], [ -124.531606710999981, 49.755444866000055 ], [ -124.531305478999968, 49.755285803000078 ], [ -124.529587454999941, 49.754787626000059 ], [ -124.529583504999948, 49.754662055000104 ], [ -124.529173113, 49.754667473000026 ], [ -124.528992202999973, 49.754615011000091 ], [ -124.528745882999957, 49.754515733000048 ], [ -124.528742346999948, 49.754403310000086 ], [ -124.528475681999964, 49.754406828000079 ], [ -124.528324027999957, 49.754345704000059 ], [ -124.528317532999949, 49.754139066000029 ], [ -124.527827395, 49.754145533000091 ], [ -124.527543489999942, 49.754031100000041 ], [ -124.52748070899996, 49.75401776700005 ], [ -124.52747639099999, 49.753880313000067 ], [ -124.526871080999911, 49.753888293000102 ], [ -124.526642106999958, 49.753839662000139 ], [ -124.526635257999942, 49.753621552000034 ], [ -124.526218928, 49.753627039000122 ], [ -124.526176596999917, 49.752278353000065 ], [ -124.525760276999975, 49.752283837000093 ], [ -124.525743348999953, 49.751744363000057 ], [ -124.52532703699994, 49.751749845000099 ], [ -124.525301653999989, 49.750940632000052 ], [ -124.52613426799995, 49.750929665000108 ], [ -124.526125801999981, 49.750659928000026 ], [ -124.526542106999941, 49.750654442000119 ], [ -124.526516703999988, 49.749845230000062 ], [ -124.525684109999943, 49.749856200000082 ], [ -124.525675644999964, 49.749586463000043 ], [ -124.525259351999978, 49.74959194500012 ], [ -124.52525089199996, 49.74932220700002 ], [ -124.524834597000037, 49.749327688000037 ], [ -124.524826139999945, 49.749057951000047 ], [ -124.523993557999944, 49.749068908000069 ], [ -124.523985104999923, 49.748799170000048 ], [ -124.523152525999961, 49.748810122000044 ], [ -124.523144077000012, 49.748540384000087 ], [ -124.52272779099999, 49.748545857000025 ], [ -124.522710899999979, 49.74800638100001 ], [ -124.522294616999957, 49.748011853000037 ], [ -124.522252400999918, 49.746663162000118 ], [ -124.522668672999899, 49.746657690000049 ], [ -124.522660227999921, 49.746387953000081 ], [ -124.523492765999933, 49.746377005000049 ], [ -124.523484316999955, 49.746107267000092 ], [ -124.523900582999971, 49.746101792000054 ], [ -124.52389213099994, 49.745832053000065 ], [ -124.524724657999968, 49.745821097000089 ], [ -124.52471620199999, 49.745551359000082 ], [ -124.525132461999974, 49.745545880000137 ], [ -124.525124003999963, 49.745276141000048 ], [ -124.525540262999982, 49.745270660000116 ], [ -124.525523340999911, 49.744731185000035 ], [ -124.526355848999941, 49.744720217000051 ], [ -124.526347384999966, 49.744450480000104 ], [ -124.52759613899994, 49.744434016000064 ], [ -124.527587666999963, 49.744164279000067 ], [ -124.528003913999967, 49.744158788000135 ], [ -124.527978493999925, 49.743349575000096 ], [ -124.527562252999957, 49.743355066000063 ], [ -124.527545310999955, 49.742815591000117 ], [ -124.527129072999969, 49.742821079000095 ], [ -124.52712060499999, 49.742551341000066 ], [ -124.526704369999962, 49.742556829000101 ], [ -124.526695903999979, 49.742287091000065 ], [ -124.526279671999973, 49.742292577000057 ], [ -124.526271206999965, 49.742022839000114 ], [ -124.525438745999907, 49.74203380600008 ], [ -124.525430287999981, 49.741764068000101 ], [ -124.525014057999925, 49.741769549 ], [ -124.52500560299994, 49.741499812000036 ], [ -124.524589377000012, 49.741505290000092 ], [ -124.524580920999966, 49.741235553000081 ], [ -124.524164697999964, 49.74124103 ], [ -124.524147793999958, 49.740701554000104 ], [ -124.523731574999914, 49.740707030000038 ], [ -124.523714676999958, 49.740167554000031 ], [ -124.522882246999956, 49.740178502000028 ], [ -124.522865357999976, 49.73963902500001 ], [ -124.522449147999964, 49.739644496000032 ], [ -124.522373177999924, 49.737216851000092 ], [ -124.522789366999987, 49.73721137900008 ], [ -124.52278092499995, 49.73694164100008 ], [ -124.524445675999985, 49.736919741000101 ], [ -124.524471029999944, 49.737728956000055 ], [ -124.525303419999915, 49.737717997000047 ], [ -124.525320332999968, 49.738257473000026 ], [ -124.525736531999925, 49.738251992000066 ], [ -124.525744991999915, 49.738521730000038 ], [ -124.527409792999904, 49.738499787000116 ], [ -124.527418261999955, 49.738769525000109 ], [ -124.528250666999966, 49.738758545000053 ], [ -124.528267614999919, 49.73929802 ], [ -124.530764853000022, 49.739265042000085 ], [ -124.530773341000014, 49.739534780000071 ], [ -124.531189549, 49.739529278000127 ], [ -124.531240491999981, 49.741147702000085 ], [ -124.530824267999918, 49.741153204000071 ], [ -124.53086671399997, 49.742501890000042 ], [ -124.530450480999903, 49.742507391000039 ], [ -124.530458966, 49.742777128000064 ], [ -124.53004273, 49.742782628000072 ], [ -124.530051214999943, 49.743052365000061 ], [ -124.529634977999976, 49.743057862000057 ], [ -124.529677389999932, 49.74440654900004 ], [ -124.529261139999974, 49.744412046000107 ], [ -124.529278102999939, 49.744951520000072 ], [ -124.529694357999972, 49.744946024000036 ], [ -124.529702840999931, 49.7452157620001 ], [ -124.530119096999968, 49.745210263000018 ], [ -124.530127583999942, 49.745479999000047 ], [ -124.53054384299999, 49.7454745000001 ], [ -124.530560821, 49.746013975000096 ], [ -124.530977083999986, 49.746008474000071 ], [ -124.53098557499996, 49.746278210000092 ], [ -124.53181810699999, 49.746267203000045 ], [ -124.531826601999924, 49.746536940000112 ], [ -124.533075405999952, 49.746520417000113 ], [ -124.533083907999981, 49.746790155000106 ], [ -124.533500178999972, 49.746784644000073 ], [ -124.53352569599997, 49.747593855000048 ], [ -124.533941971999951, 49.74758834300011 ], [ -124.533958985999931, 49.748127815000046 ], [ -124.534791548999976, 49.748116787000114 ], [ -124.53480006199996, 49.748386523000065 ], [ -124.535216345999984, 49.748381006000024 ], [ -124.535241890999956, 49.749190215000091 ], [ -124.535658180999945, 49.749184697000075 ], [ -124.53570077099999, 49.750533378000029 ], [ -124.535284469999965, 49.750538897000084 ], [ -124.535292984999941, 49.750808633000119 ], [ -124.53487668199999, 49.750814151000085 ], [ -124.534893709999906, 49.751353622000103 ], [ -124.533644782999943, 49.751370166000051 ], [ -124.53365329199994, 49.751639902000079 ], [ -124.533236978999952, 49.751645414000031 ], [ -124.533245482999973, 49.75191515000008 ], [ -124.532829169999943, 49.75192066000006 ], [ -124.532854679999971, 49.752729870000032 ], [ -124.533271, 49.752724360000059 ], [ -124.533288010999925, 49.75326383200013 ], [ -124.533704336999975, 49.75325832100004 ], [ -124.533712844999982, 49.753528058000036 ], [ -124.53412917299994, 49.75352254400007 ], [ -124.534137682999983, 49.753792280000013 ], [ -124.534970342999941, 49.753781250000024 ], [ -124.534978857999974, 49.754050985000042 ], [ -124.536644183999925, 49.754028905000105 ], [ -124.536645855999936, 49.754081799000069 ], [ -124.53742559199999, 49.754092247000123 ], [ -124.537421474999988, 49.754221404000134 ], [ -124.538863446999983, 49.754240711000143 ], [ -124.538850851999911, 49.754636213000033 ], [ -124.539769827999976, 49.754648507000063 ], [ -124.539800156999931, 49.753695485000016 ], [ -124.540912056999943, 49.75371034900008 ], [ -124.541009988999974, 49.750630307000058 ], [ -124.541070851999933, 49.750631120000065 ], [ -124.541096133999943, 49.749835906000072 ], [ -124.541550523999931, 49.749841978000077 ], [ -124.541586403999929, 49.748712942000154 ], [ -124.539662924999931, 49.74868723000008 ], [ -124.539679042, 49.748180728000051 ], [ -124.536955354, 49.748144261000064 ], [ -124.536972359999936, 49.747610809000065 ], [ -124.536475567999986, 49.747604150000072 ], [ -124.53649403699994, 49.747025003 ], [ -124.535802879999977, 49.747015735000076 ], [ -124.535837233999942, 49.745938949000092 ], [ -124.53439539299994, 49.745919600000043 ], [ -124.534435174999942, 49.744673796 ], [ -124.53384645, 49.744665890000064 ], [ -124.53396133699999, 49.741069207000102 ], [ -124.534759771999958, 49.741079928 ], [ -124.534820270999944, 49.741104877000048 ], [ -124.534948710999984, 49.741202315000095 ], [ -124.535189996999918, 49.741343297000071 ], [ -124.535489298, 49.741555642000044 ], [ -124.535661550999961, 49.741715620000036 ], [ -124.535834126999958, 49.741884619000075 ], [ -124.535876483999957, 49.741902081000049 ], [ -124.535891283999945, 49.741928940000051 ], [ -124.53600525399996, 49.742008538000086 ], [ -124.536020053999948, 49.742035397000066 ], [ -124.536062390999959, 49.742052838000092 ], [ -124.536205659999979, 49.742177155000022 ], [ -124.53644813699999, 49.742354199000033 ], [ -124.536490173999951, 49.742362641000078 ], [ -124.53650497199996, 49.74238949800008 ], [ -124.536547275999936, 49.742406952000131 ], [ -124.536720753999973, 49.742602982000051 ], [ -124.536763378999979, 49.742629456000053 ], [ -124.536778501999919, 49.742665335000034 ], [ -124.53694984699996, 49.742815975000042 ], [ -124.53703735500001, 49.742949734000057 ], [ -124.537154592999954, 49.743146063000033 ], [ -124.537155346999924, 49.743147296000139 ], [ -124.537726078999938, 49.743105075000095 ], [ -124.53830313099995, 49.743139629000019 ], [ -124.539316281999987, 49.743859834000041 ], [ -124.540000656999936, 49.744454069000078 ], [ -124.54027341199992, 49.74495244600007 ], [ -124.540461490999959, 49.745727875000107 ], [ -124.541807709999944, 49.746079195000078 ], [ -124.543706274999977, 49.748059207000011 ], [ -124.543642909999917, 49.748609717000086 ], [ -124.544248693999947, 49.748739567000058 ], [ -124.545359564999956, 49.749071638000039 ], [ -124.545125437999928, 49.749613871000129 ], [ -124.545915348, 49.749949803000099 ], [ -124.546100599999946, 49.751406250000059 ], [ -124.546199291999926, 49.751990525000075 ], [ -124.546756804999958, 49.752476969000085 ], [ -124.546220830999943, 49.752697670000053 ], [ -124.547497560999943, 49.753541513000101 ], [ -124.547956242999945, 49.75335916300002 ], [ -124.547948924999915, 49.753590413000055 ], [ -124.546973885999947, 49.753577442000015 ], [ -124.546967176999928, 49.753789251000079 ], [ -124.547946408999948, 49.753802278000059 ], [ -124.547960484999948, 49.753357477000144 ], [ -124.54922980500001, 49.752852840000045 ], [ -124.550822865999962, 49.752873997000066 ], [ -124.55083328399995, 49.752544156000091 ], [ -124.55264675799998, 49.752568210000099 ], [ -124.552656327999927, 49.75226480000007 ], [ -124.554506259999982, 49.752289308000066 ], [ -124.554534503999932, 49.751392645000131 ], [ -124.556273948999944, 49.751415660000092 ], [ -124.556346171, 49.751634864000039 ], [ -124.557633946999914, 49.75168010300014 ], [ -124.557275997999952, 49.752026493000088 ], [ -124.556973222999886, 49.752402043000082 ], [ -124.556900700999947, 49.752491998000039 ], [ -124.556805637999958, 49.752647735000032 ], [ -124.556486580999945, 49.753170202000021 ], [ -124.556318118999954, 49.75358619800005 ], [ -124.556318159999947, 49.753884205000134 ], [ -124.556685127999955, 49.754932285000116 ], [ -124.556580964999938, 49.75537706900009 ], [ -124.556593349999972, 49.75551217300012 ], [ -124.556359921999942, 49.755563529000057 ], [ -124.556165056999959, 49.75554815 ], [ -124.55597105899993, 49.755559759000064 ], [ -124.555901690999946, 49.75556069400006 ], [ -124.555752190999925, 49.755598688000148 ], [ -124.555669305, 49.755619743000089 ], [ -124.555623818, 49.755632682000098 ], [ -124.555565856999976, 49.755652785000045 ], [ -124.554623808999935, 49.756294925000077 ], [ -124.554783385999954, 49.756363507000152 ], [ -124.555563603999985, 49.756573504000109 ], [ -124.555502094999952, 49.756676111000075 ], [ -124.555589710999953, 49.756848193000032 ], [ -124.555770461999941, 49.757083395000052 ], [ -124.558365378999923, 49.757375065000069 ], [ -124.558290084999967, 49.757243707000093 ], [ -124.558134000999985, 49.756472531000092 ], [ -124.558475791999939, 49.756459106000094 ], [ -124.559669776999968, 49.756447558000033 ], [ -124.560062532999922, 49.756482701000067 ], [ -124.560517824000016, 49.756611029000055 ], [ -124.561231838999944, 49.756940682000028 ], [ -124.561609086999937, 49.757080573000074 ], [ -124.562288857999988, 49.757529406000081 ], [ -124.562449591999922, 49.7576622610001 ], [ -124.562677068999932, 49.757850256000097 ], [ -124.562936760999918, 49.758193566000088 ], [ -124.563813460999981, 49.755844368000126 ], [ -124.563996749999916, 49.75584677900008 ], [ -124.564250447999882, 49.755949962000088 ], [ -124.56421054, 49.757225280000064 ], [ -124.565903286999941, 49.757247524000135 ], [ -124.56588287699995, 49.756613873000035 ], [ -124.567997625999965, 49.757473879000031 ], [ -124.569116051999956, 49.757928681000131 ], [ -124.569023800999972, 49.760886571000071 ], [ -124.568161409999959, 49.760875267000067 ], [ -124.567991493999969, 49.760642192000063 ], [ -124.567566792, 49.760360309000092 ], [ -124.566764103999958, 49.760038394000055 ], [ -124.566310307999927, 49.760142284000018 ], [ -124.566169607999981, 49.760108196000026 ], [ -124.565772691999953, 49.759844696000066 ], [ -124.565281407999962, 49.759275006000031 ], [ -124.565057315999951, 49.75920660000007 ], [ -124.564447588999968, 49.758782198000105 ], [ -124.564172097, 49.758849194000106 ], [ -124.563823995999982, 49.758827810000064 ], [ -124.563856008999977, 49.75898870300005 ], [ -124.564327907999939, 49.759377493000031 ], [ -124.564329062999946, 49.759416896000047 ], [ -124.564332704999956, 49.759539911000076 ], [ -124.56378941199992, 49.75989738800012 ], [ -124.563362493999961, 49.760021311000074 ], [ -124.56247338799993, 49.760005602000035 ], [ -124.562033097000011, 49.760155208000093 ], [ -124.562050990000017, 49.760263394000056 ], [ -124.562459016999981, 49.760447097000096 ], [ -124.563043393999976, 49.760501293000068 ], [ -124.563389219, 49.760865796000047 ], [ -124.56339519699999, 49.761055297000084 ], [ -124.562892801999936, 49.760962711000055 ], [ -124.562507501999946, 49.760652202000124 ], [ -124.561536595999954, 49.760260608000067 ], [ -124.560947080999966, 49.760467098000071 ], [ -124.560570795000032, 49.7608673 ], [ -124.560174718999974, 49.761062405000033 ], [ -124.559912099999949, 49.761092308000045 ], [ -124.559584107999981, 49.761304487000139 ], [ -124.5583810099999, 49.761445493000046 ], [ -124.556878302999905, 49.7609 ], [ -124.556328378999979, 49.760646494000085 ], [ -124.555929093999922, 49.760346004000048 ] ], [ [ -124.545596701999941, 49.756239244000056 ], [ -124.545629470999984, 49.755205452000069 ], [ -124.545641065999945, 49.754839609000079 ], [ -124.54564974699997, 49.754565730000138 ], [ -124.54532306499999, 49.754561379000023 ], [ -124.545270007999946, 49.756234892000087 ], [ -124.545596701999941, 49.756239244000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.993270607486194", "sL_AssetLoss": "1466.7", "sL_BldgLoss": "1456.83", "sL_StrLoss": "1387", "sL_NStrLoss": "69.83", "sL_ContLoss": "9.87", "geom_point": "0101000020E6100000437F36AC88255FC0929AD1EABFDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.583749104999981, 49.738397539000132 ], [ -124.589295337999928, 49.738469364000096 ], [ -124.589184790999951, 49.742066117 ], [ -124.583638123999918, 49.741994287000132 ], [ -124.583749104999981, 49.738397539000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.986668292484656", "sL_AssetLoss": "492.06", "sL_BldgLoss": "485.5", "sL_StrLoss": "441", "sL_NStrLoss": "44.5", "sL_ContLoss": "6.56", "geom_point": "0101000020E6100000187D0569C6265FC02D356BBE84E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.605284230999985, 49.801940737000102 ], [ -124.605248550999931, 49.800861837000042 ], [ -124.604831830999942, 49.800867610000076 ], [ -124.60480508, 49.800058435000025 ], [ -124.606055213999966, 49.800041113000105 ], [ -124.606064137999965, 49.80031083800003 ], [ -124.606897565999958, 49.800299281000051 ], [ -124.606924353999943, 49.801108456000044 ], [ -124.606507633999982, 49.801114235000085 ], [ -124.606534413999896, 49.801923409000096 ], [ -124.605284230999985, 49.801940737000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.979355058863675", "sL_AssetLoss": "586.1", "sL_BldgLoss": "574", "sL_StrLoss": "506", "sL_NStrLoss": "68", "sL_ContLoss": "12.1", "geom_point": "0101000020E61000005E113E8CB7215FC035357D34A4D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.526191606999944, 49.69965739600012 ], [ -124.526183157, 49.69938765600007 ], [ -124.528262486999949, 49.699360232000053 ], [ -124.528270948999975, 49.699629972 ], [ -124.528686815999933, 49.699624482000011 ], [ -124.528712211, 49.700433701000058 ], [ -124.528296334999979, 49.700439191000093 ], [ -124.52830479799999, 49.700708930000083 ], [ -124.527888920999914, 49.700714418000118 ], [ -124.527897380999917, 49.700984157000036 ], [ -124.527065621999952, 49.700995129000098 ], [ -124.527068690999926, 49.701093066000055 ], [ -124.527070595999973, 49.701153802000135 ], [ -124.52707407699998, 49.701264868000081 ], [ -124.526931385999944, 49.701266751000048 ], [ -124.525301638999906, 49.701288229000106 ], [ -124.524994663999919, 49.701292271000149 ], [ -124.524969331999927, 49.700483052000024 ], [ -124.525385207999946, 49.700477575000043 ], [ -124.525368315999955, 49.699938096000061 ], [ -124.525784186999928, 49.699932616000069 ], [ -124.525775738999954, 49.699662876000097 ], [ -124.526191606999944, 49.69965739600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989731475678542", "sL_AssetLoss": "414.86", "sL_BldgLoss": "410.6", "sL_StrLoss": "395", "sL_NStrLoss": "15.6", "sL_ContLoss": "4.26", "geom_point": "0101000020E6100000DBF236DB01245FC01B3B768AB4DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.56186861499998, 49.709436041000146 ], [ -124.56185996399995, 49.709166308000128 ], [ -124.561444021999989, 49.709171916000074 ], [ -124.561426722999926, 49.708632446000053 ], [ -124.561010784999937, 49.708638054000069 ], [ -124.560984848999951, 49.70782884900008 ], [ -124.563064503999954, 49.707800797000033 ], [ -124.563081818999962, 49.708340267000018 ], [ -124.564329624999942, 49.708323418000091 ], [ -124.564355617999922, 49.709132621000016 ], [ -124.563939674999943, 49.709138238000079 ], [ -124.56394833899995, 49.709407974000101 ], [ -124.56186861499998, 49.709436041000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15178917", "BldgCostT": "9971667", "sL_LossRatio": "0.702836515315975", "sL_AssetLoss": "56290.9", "sL_BldgLoss": "39563.3", "sL_StrLoss": "22695.3", "sL_NStrLoss": "16868", "sL_ContLoss": "16727.6", "geom_point": "0101000020E610000045E216DAD6225FC0A9F909EBEFD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.546384342999943, 49.706675485000034 ], [ -124.546375778999931, 49.706405749000055 ], [ -124.545543932999962, 49.706416853000086 ], [ -124.54552681399997, 49.705877380000068 ], [ -124.545110895999983, 49.705882929 ], [ -124.545093783999988, 49.705343456000037 ], [ -124.544261955999943, 49.705354551000042 ], [ -124.544253404999964, 49.70508481400006 ], [ -124.54051019500001, 49.705134671000067 ], [ -124.540501664999951, 49.704864934000078 ], [ -124.540085753999975, 49.704870465000106 ], [ -124.540077224999933, 49.704600727000084 ], [ -124.539661316999954, 49.704606259000087 ], [ -124.539652789999977, 49.704336520000076 ], [ -124.538405072999979, 49.704353103000059 ], [ -124.538422110999974, 49.704892579000081 ], [ -124.538838021999979, 49.704887053000057 ], [ -124.538863589999934, 49.705696267000143 ], [ -124.537615834999954, 49.705712841000064 ], [ -124.537607319999978, 49.7054431030001 ], [ -124.536775487999947, 49.705454146000129 ], [ -124.536766977999932, 49.705184408000022 ], [ -124.536351062999955, 49.705189926000052 ], [ -124.536342555999965, 49.704920188000102 ], [ -124.535510732999938, 49.704931221000038 ], [ -124.535493725999984, 49.704391744000077 ], [ -124.532582371999965, 49.704430312000049 ], [ -124.532573883999945, 49.704160572000077 ], [ -124.531742072999947, 49.704171578000079 ], [ -124.53173358899997, 49.703901840000078 ], [ -124.530901781999916, 49.703912839000083 ], [ -124.530893304999964, 49.703643100000093 ], [ -124.530477402999978, 49.703648598 ], [ -124.530443502000011, 49.702569642000057 ], [ -124.531275286999971, 49.702558645000046 ], [ -124.531266809000016, 49.702288907000074 ], [ -124.531682698999973, 49.702283406000063 ], [ -124.531674216999974, 49.702013667000145 ], [ -124.533753652999934, 49.701986144000053 ], [ -124.53374516099997, 49.701716405000042 ], [ -124.534992813999949, 49.70169987200007 ], [ -124.535001312999981, 49.701969611000088 ], [ -124.536248972999957, 49.701953065000048 ], [ -124.536223453999952, 49.701143850000108 ], [ -124.536639331999964, 49.701138333000131 ], [ -124.536630823999957, 49.700868594000084 ], [ -124.537878453999951, 49.700852031000082 ], [ -124.537886968999928, 49.701121770000086 ], [ -124.539134603999983, 49.701105193000068 ], [ -124.539143129, 49.701374932000093 ], [ -124.541222530000013, 49.701347274000078 ], [ -124.541231062999913, 49.701617011000067 ], [ -124.5424630399999, 49.701600608000113 ], [ -124.542470886, 49.701353276000056 ], [ -124.542470168999898, 49.701330661000078 ], [ -124.54247160499996, 49.701330642000123 ], [ -124.542544378999949, 49.699036612000043 ], [ -124.543599196999935, 49.699050705000019 ], [ -124.543600937999955, 49.6989957380001 ], [ -124.544476786999937, 49.699007431000091 ], [ -124.544450402, 49.698175135000106 ], [ -124.544818193999944, 49.698159306000072 ], [ -124.545215008999946, 49.698055848000109 ], [ -124.545694499, 49.698049448000113 ], [ -124.545687066999974, 49.69781523500005 ], [ -124.546103706999958, 49.697602490000101 ], [ -124.546535088000027, 49.69723649400003 ], [ -124.546782090999955, 49.697152404000114 ], [ -124.547407596999975, 49.697143908000122 ], [ -124.547897902999978, 49.697353187000019 ], [ -124.548177092999964, 49.697622466000034 ], [ -124.54819710299995, 49.698252118000028 ], [ -124.548228301999956, 49.698252533000108 ], [ -124.547873980999981, 49.698730392000108 ], [ -124.547879095999946, 49.698891390000064 ], [ -124.548184096999975, 49.698914190000067 ], [ -124.548844800999944, 49.698743306000026 ], [ -124.548886577999951, 49.698797397000135 ], [ -124.548460592999973, 49.699307211000075 ], [ -124.548466891999951, 49.699495192000036 ], [ -124.548737901999942, 49.699752992000072 ], [ -124.549428902999949, 49.700103412000068 ], [ -124.550114294999958, 49.700714409000071 ], [ -124.551056893999913, 49.701134507000091 ], [ -124.551959810999975, 49.701238492000137 ], [ -124.552141541999958, 49.70132186700009 ], [ -124.552136831999988, 49.701471346000069 ], [ -124.552559952999957, 49.701465672000062 ], [ -124.552877498999962, 49.701517233000089 ], [ -124.552884318999986, 49.701731175000077 ], [ -124.553708942999933, 49.701720113000064 ], [ -124.553716160999926, 49.701722540000048 ], [ -124.553724683999917, 49.701989755000113 ], [ -124.554481034, 49.701979603000055 ], [ -124.554557301999949, 49.702005235000065 ], [ -124.554565057999952, 49.702248327000049 ], [ -124.555184623999978, 49.702240008000089 ], [ -124.555399589999922, 49.702323663000065 ], [ -124.555405439999959, 49.702506893000063 ], [ -124.555788556999985, 49.702501747000021 ], [ -124.556394796999939, 49.702879187000072 ], [ -124.55666781299999, 49.702950437000069 ], [ -124.556670341999933, 49.703029600000065 ], [ -124.556956422999974, 49.703025754000095 ], [ -124.557087381999978, 49.703059929000112 ], [ -124.557129346999901, 49.704372686000106 ], [ -124.556713444999929, 49.704378279000125 ], [ -124.556722066999939, 49.70464801500006 ], [ -124.556451693999961, 49.704651649000013 ], [ -124.555927651999966, 49.704658691000134 ], [ -124.554642537999925, 49.704675951000105 ], [ -124.55463392899999, 49.704406216000066 ], [ -124.554218025999972, 49.704411798000116 ], [ -124.554209418999946, 49.704142063000127 ], [ -124.553377614999974, 49.70415322300012 ], [ -124.553394819999951, 49.704692696000109 ], [ -124.552147099999971, 49.704709427000132 ], [ -124.552129909999962, 49.704169954000065 ], [ -124.551298104999915, 49.704181100000014 ], [ -124.551289514999908, 49.703911364000113 ], [ -124.550457715, 49.703922503000058 ], [ -124.550466300999929, 49.704192240000047 ], [ -124.550050397999968, 49.70419780800006 ], [ -124.55007615000001, 49.705007018000032 ], [ -124.549660239999966, 49.70501258500007 ], [ -124.54967740499994, 49.705552057000098 ], [ -124.548845575999906, 49.705563187000088 ], [ -124.548854153999955, 49.705832924000106 ], [ -124.548438236, 49.705838486000047 ], [ -124.548455387999951, 49.706377958000104 ], [ -124.547623543999961, 49.706389080000115 ], [ -124.54763211599996, 49.70665881600015 ], [ -124.546384342999943, 49.706675485000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.991340516073785", "sL_AssetLoss": "1144.41", "sL_BldgLoss": "1134.5", "sL_StrLoss": "1086", "sL_NStrLoss": "48.5", "sL_ContLoss": "9.91", "geom_point": "0101000020E6100000B8DF677D86285FC0ACC612D646DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.630502884999927, 49.745890191000122 ], [ -124.630610202999918, 49.742293416000074 ], [ -124.632250143999968, 49.742313977000059 ], [ -124.632272915, 49.742581795000071 ], [ -124.632479409000013, 49.742930800000131 ], [ -124.6327189, 49.743070402000043 ], [ -124.634002076999934, 49.74324129700009 ], [ -124.634334903999971, 49.743237005000019 ], [ -124.634674592999914, 49.742997694000081 ], [ -124.635116091999976, 49.742929402000094 ], [ -124.635263993999928, 49.742828215000038 ], [ -124.635695299999952, 49.742821089000046 ], [ -124.635850402999978, 49.742882384000033 ], [ -124.636135333999917, 49.743091266000071 ], [ -124.636050094999945, 49.745959639000034 ], [ -124.630502884999927, 49.745890191000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.976607243687989", "sL_AssetLoss": "2479.4", "sL_BldgLoss": "2421.4", "sL_StrLoss": "2144", "sL_NStrLoss": "277.4", "sL_ContLoss": "58", "geom_point": "0101000020E6100000B47998CD8E235FC0F87BD6F3BDDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.55218197, 49.731674925000036 ], [ -124.55176935599998, 49.731356635000061 ], [ -124.551681808999902, 49.731298882000061 ], [ -124.551709056999968, 49.73043512100007 ], [ -124.557254276999927, 49.730508574000034 ], [ -124.557225131999971, 49.731435981000068 ], [ -124.558387891, 49.731451347000053 ], [ -124.55827494, 49.735048105000047 ], [ -124.556682885999962, 49.735027062000064 ], [ -124.556616755999954, 49.734961549000161 ], [ -124.556374048, 49.734748923000069 ], [ -124.556089419999978, 49.734527882000101 ], [ -124.555790044999966, 49.734280055000106 ], [ -124.555534345999931, 49.734094576000118 ], [ -124.555152027999924, 49.733856835000097 ], [ -124.554785044999946, 49.733663888000073 ], [ -124.554320368999967, 49.733454240000107 ], [ -124.553882022999957, 49.733199254000041 ], [ -124.553511320999959, 49.732889407000101 ], [ -124.553068375999942, 49.732490569000028 ], [ -124.552781764000017, 49.732206573000013 ], [ -124.552453268999955, 49.731914148000108 ], [ -124.55218197, 49.731674925000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.963922707472356", "sL_AssetLoss": "895.3", "sL_BldgLoss": "863", "sL_StrLoss": "716", "sL_NStrLoss": "147", "sL_ContLoss": "32.3", "geom_point": "0101000020E6100000759C4FDB0E225FC0346A1904B1D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.52995983299995, 49.70041722300008 ], [ -124.529951362999967, 49.700147483000094 ], [ -124.531198977999949, 49.700130994000077 ], [ -124.53120745699999, 49.700400733000066 ], [ -124.532039202999925, 49.700389731000037 ], [ -124.532030721, 49.700119992000133 ], [ -124.532446592, 49.700114489000093 ], [ -124.532429621999967, 49.699575012000082 ], [ -124.53367722099992, 49.699558494000044 ], [ -124.533685713999958, 49.69982823400003 ], [ -124.534101582999966, 49.699822724000093 ], [ -124.534118570999908, 49.700362202000065 ], [ -124.53453444299997, 49.700356692000106 ], [ -124.53455993599999, 49.701165908000057 ], [ -124.534144053999952, 49.701171417000104 ], [ -124.534152549999959, 49.70144115599999 ], [ -124.529577835999987, 49.701501674000077 ], [ -124.529543958999923, 49.700422717000038 ], [ -124.52995983299995, 49.70041722300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.985286103542234", "sL_AssetLoss": "458.75", "sL_BldgLoss": "452", "sL_StrLoss": "429", "sL_NStrLoss": "23", "sL_ContLoss": "6.75", "geom_point": "0101000020E61000001EEE55F1A7215FC00E7D1C7258DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.522453705999951, 49.720635168000115 ], [ -124.527997694999954, 49.720710109000102 ], [ -124.527924101999986, 49.723005859000075 ], [ -124.527916080999944, 49.72300260100009 ], [ -124.527338990999951, 49.72274034 ], [ -124.526764151999942, 49.72255003500004 ], [ -124.526357153999925, 49.722402489000089 ], [ -124.526060848999975, 49.72224449000003 ], [ -124.525721795999928, 49.722051079000039 ], [ -124.525482953999955, 49.721955257000076 ], [ -124.525314240999975, 49.72188552000005 ], [ -124.525146407999912, 49.721842754000086 ], [ -124.524896210999941, 49.721828058 ], [ -124.524687356999934, 49.721803838000021 ], [ -124.524395536999975, 49.721789691000019 ], [ -124.524060457999937, 49.721722131 ], [ -124.523864056999969, 49.721652754000047 ], [ -124.523667904, 49.721592367000056 ], [ -124.523343590999929, 49.72142573800015 ], [ -124.523215957999952, 49.721337462000129 ], [ -124.522974296, 49.721151739000064 ], [ -124.522831660999941, 49.721027695000082 ], [ -124.522645765999968, 49.720850241000058 ], [ -124.522452777999945, 49.720664020000072 ], [ -124.522453705999951, 49.720635168000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.990947103479073", "sL_AssetLoss": "1477.98", "sL_BldgLoss": "1464.6", "sL_StrLoss": "1380", "sL_NStrLoss": "84.6", "sL_ContLoss": "13.38", "geom_point": "0101000020E61000009D1420E917285FC02594BE1072DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.624261972999932, 49.743705462000023 ], [ -124.629808908999976, 49.743775228000104 ], [ -124.629701524000012, 49.74737199500008 ], [ -124.62866514199996, 49.747358981000062 ], [ -124.628656998999972, 49.747631519000024 ], [ -124.623109597999985, 49.747561695000073 ], [ -124.623217499999939, 49.74396493600004 ], [ -124.624253803000016, 49.743978001000102 ], [ -124.624261972999932, 49.743705462000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19088500", "BldgCostT": "12955000", "sL_LossRatio": "0.855888746868649", "sL_AssetLoss": "20474.39", "sL_BldgLoss": "17523.8", "sL_StrLoss": "14360.2", "sL_NStrLoss": "3163.6", "sL_ContLoss": "2950.59", "geom_point": "0101000020E6100000DA36D60FBB275FC09B8E428A68E54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.629321182999931, 49.8007408960001 ], [ -124.629054805999942, 49.80066398600006 ], [ -124.628682190999911, 49.80072231 ], [ -124.628455083999981, 49.800608393000061 ], [ -124.62838080299997, 49.800430400000032 ], [ -124.62854319799996, 49.799906308000097 ], [ -124.627814813, 49.799305302000057 ], [ -124.6278147189999, 49.798872306000057 ], [ -124.627696289999903, 49.798694296000122 ], [ -124.627355809000022, 49.798510598000092 ], [ -124.626912490999942, 49.798489190000076 ], [ -124.626685611999974, 49.798358197000042 ], [ -124.626516383999942, 49.797919493000087 ], [ -124.626402890999913, 49.797849695000053 ], [ -124.624731901999922, 49.798116012000051 ], [ -124.624473199999954, 49.798281306000064 ], [ -124.62376531399994, 49.798318290000054 ], [ -124.623356811999926, 49.798180109000093 ], [ -124.622912995999926, 49.797781397000072 ], [ -124.622191482999966, 49.797772798000118 ], [ -124.622002890999966, 49.797119101000121 ], [ -124.621943191999918, 49.797039304000059 ], [ -124.621580315999935, 49.796990900000026 ], [ -124.621481001999925, 49.796911199000071 ], [ -124.621332190999951, 49.796589313 ], [ -124.62140852, 49.796435502000108 ], [ -124.62128169099999, 49.796382815000037 ], [ -124.620959606999946, 49.795865803000069 ], [ -124.620263383999955, 49.795830205000065 ], [ -124.620058711999974, 49.795509691000078 ], [ -124.620075999, 49.795212111000133 ], [ -124.620367700999935, 49.794811908000014 ], [ -124.621627407999952, 49.794219390000094 ], [ -124.62191110199997, 49.793973006000037 ], [ -124.621946424999962, 49.793800704000084 ], [ -124.621722406999965, 49.79333638600005 ], [ -124.620789914999989, 49.793259498000069 ], [ -124.620295000999946, 49.793428986000045 ], [ -124.618645709999981, 49.793145607000035 ], [ -124.61835550899994, 49.793194002000035 ], [ -124.618127114999965, 49.792990299000053 ], [ -124.617449706999949, 49.79266698900004 ], [ -124.617214689, 49.792706891000073 ], [ -124.615987312999934, 49.792624302000057 ], [ -124.615452118999912, 49.792353693000059 ], [ -124.614451702999958, 49.79238499800006 ], [ -124.61372418799999, 49.79265709900011 ], [ -124.612480300999934, 49.793295113000092 ], [ -124.61208910000002, 49.793624098000073 ], [ -124.612025802999966, 49.793794993000041 ], [ -124.612151613999941, 49.79463959200006 ], [ -124.612391698999915, 49.794761997000123 ], [ -124.613056793999988, 49.794735004000074 ], [ -124.61340676399999, 49.795818502000017 ], [ -124.613232253999954, 49.795816289000086 ], [ -124.61321906499991, 49.796252279000058 ], [ -124.607665806999989, 49.79618167600011 ], [ -124.607691826999897, 49.79532495200008 ], [ -124.606946832999967, 49.795315459000086 ], [ -124.607056112999885, 49.791718955000128 ], [ -124.607907174999951, 49.7917298 ], [ -124.607926515999907, 49.791092876000057 ], [ -124.608506496999937, 49.791100263000018 ], [ -124.608523022999961, 49.790555790000077 ], [ -124.609448810999979, 49.7905675740001 ], [ -124.609462411999971, 49.79011911200007 ], [ -124.610173551999978, 49.790128159000027 ], [ -124.610184001999954, 49.789783429000131 ], [ -124.615736490999979, 49.789853906000069 ], [ -124.615721964999963, 49.790335006000113 ], [ -124.617482620999965, 49.790357295000113 ], [ -124.617497405999927, 49.789867011000098 ], [ -124.622810380999937, 49.78993409800011 ], [ -124.622809596999929, 49.789910668000054 ], [ -124.622806676999929, 49.789823280000043 ], [ -124.622686772999913, 49.789824960000033 ], [ -124.622390056999933, 49.789829114000035 ], [ -124.622382943, 49.789616185000071 ], [ -124.62238104399998, 49.789559392000051 ], [ -124.622300786999958, 49.789560516000094 ], [ -124.621964425999948, 49.789565226000072 ], [ -124.621956475999966, 49.789327205000028 ], [ -124.62195541799997, 49.789295502000087 ], [ -124.62191061599999, 49.789296129000036 ], [ -124.621538799999897, 49.789301334000115 ], [ -124.621530014999962, 49.789038224000095 ], [ -124.621493769, 49.787952718000078 ], [ -124.62191037299999, 49.787946886000057 ], [ -124.621883349999962, 49.787137716000082 ], [ -124.621548944999944, 49.787142397000082 ], [ -124.621466750999957, 49.787143548000074 ], [ -124.621457501999885, 49.786866528000076 ], [ -124.62144874099999, 49.78660410100008 ], [ -124.621331635999951, 49.786605740000034 ], [ -124.621032145999976, 49.786609930000097 ], [ -124.621021507999927, 49.786291163000051 ], [ -124.621014139999929, 49.786070484000049 ], [ -124.620806809999962, 49.786073384000062 ], [ -124.620597552, 49.786076312000077 ], [ -124.620590118999942, 49.785853582000101 ], [ -124.62057955100002, 49.78553686500004 ], [ -124.620353884999986, 49.785540021000017 ], [ -124.620162968, 49.785542691000018 ], [ -124.620150417999966, 49.785166507000092 ], [ -124.620144970999931, 49.785003244000045 ], [ -124.620062114999925, 49.785004402 ], [ -124.619728390999938, 49.785009069000054 ], [ -124.619719395999965, 49.784739345000041 ], [ -124.61930281699992, 49.784745169000104 ], [ -124.619293825999989, 49.784475445000091 ], [ -124.6188772499999, 49.784481267000089 ], [ -124.618868258999953, 49.784211543000019 ], [ -124.618451685999943, 49.784217363 ], [ -124.618442697999953, 49.78394763900009 ], [ -124.618026126999922, 49.78395345800007 ], [ -124.618017140999953, 49.783683734000128 ], [ -124.617600571999944, 49.783689552000141 ], [ -124.617591588999971, 49.783419828000049 ], [ -124.61717502099999, 49.783425642000047 ], [ -124.617166040999948, 49.783155918000027 ], [ -124.616749475999939, 49.783161732000039 ], [ -124.61674089, 49.782903760000075 ], [ -124.616740498999945, 49.782892008000069 ], [ -124.616720120000011, 49.782892293000032 ], [ -124.616323935999944, 49.782897821000091 ], [ -124.616316333999961, 49.782669344000119 ], [ -124.616288034999926, 49.781818924000063 ], [ -124.617954246999972, 49.781795665000061 ], [ -124.617963231999966, 49.782065389000095 ], [ -124.618796341999939, 49.782053751000092 ], [ -124.618805330999962, 49.782323476000073 ], [ -124.619221886999966, 49.782317654000025 ], [ -124.619230878999986, 49.782587378000137 ], [ -124.619647438999934, 49.782581554 ], [ -124.619656431999957, 49.782851279000106 ], [ -124.620072993999969, 49.782845454000061 ], [ -124.620081991999967, 49.783115177000099 ], [ -124.620915118999932, 49.783103524000083 ], [ -124.620924119000023, 49.783373248000103 ], [ -124.621340686999986, 49.783367419000072 ], [ -124.621349688999928, 49.783637142000032 ], [ -124.623432526999963, 49.783607974000105 ], [ -124.623441541999952, 49.783877697000065 ], [ -124.623858112999969, 49.783871859000087 ], [ -124.623867130999898, 49.784141582000139 ], [ -124.624283701999943, 49.784135743000085 ], [ -124.624292722999954, 49.784405466000116 ], [ -124.624709295999978, 49.784399625000056 ], [ -124.624718318999953, 49.784669348000158 ], [ -124.62513489599999, 49.784663505000083 ], [ -124.625143919999957, 49.784933228000092 ], [ -124.625560498999903, 49.784927383000074 ], [ -124.625569525999978, 49.785197106000084 ], [ -124.62598610699996, 49.785191260000083 ], [ -124.625995136999947, 49.785460983000121 ], [ -124.626411720999911, 49.78545513500012 ], [ -124.626420751999888, 49.78572485800003 ], [ -124.626837337, 49.785719009000047 ], [ -124.6268463709999, 49.785988732000085 ], [ -124.62726295899995, 49.785982881000095 ], [ -124.627271996999951, 49.786252604000033 ], [ -124.628105174999973, 49.786240898000109 ], [ -124.628123259999981, 49.786780343000068 ], [ -124.628956445999947, 49.786768631000058 ], [ -124.62896596399996, 49.78705240000005 ], [ -124.628983588, 49.787577797999987 ], [ -124.628785816999965, 49.787580579000057 ], [ -124.628566987999989, 49.787583655000049 ], [ -124.628576032999916, 49.787853378000079 ], [ -124.627742827999924, 49.78786508700005 ], [ -124.627751866999915, 49.788134809000098 ], [ -124.62608544699999, 49.788158212000106 ], [ -124.626067383999924, 49.787618765000047 ], [ -124.625650781999965, 49.787624612000073 ], [ -124.62564175299994, 49.787354889000106 ], [ -124.624808553999969, 49.78736657700005 ], [ -124.624853678999941, 49.788715193000044 ], [ -124.624437066999988, 49.788721034000055 ], [ -124.624473159999951, 49.789799925000061 ], [ -124.624056538999966, 49.789805766000015 ], [ -124.624065558999945, 49.790075489000088 ], [ -124.623628384999961, 49.790081617000048 ], [ -124.62358131299996, 49.791649616000029 ], [ -124.626912956, 49.79169152800015 ], [ -124.627110967999968, 49.791694015000054 ], [ -124.627100810999963, 49.792033142000029 ], [ -124.628227244999948, 49.792047287000138 ], [ -124.628135645999933, 49.795108467000098 ], [ -124.628424328, 49.795112090000032 ], [ -124.62841631799995, 49.795379782000055 ], [ -124.628886326999933, 49.795385679000098 ], [ -124.628884869999965, 49.79543441200007 ], [ -124.630593565999973, 49.79545583400008 ], [ -124.630575803999989, 49.79605041200012 ], [ -124.630745096999973, 49.796052533000129 ], [ -124.630744267999916, 49.796080282000055 ], [ -124.631648663999954, 49.796091609 ], [ -124.631596594999962, 49.797835892000123 ], [ -124.631741867999935, 49.797837711000049 ], [ -124.631721865999978, 49.798507821000108 ], [ -124.631968400999966, 49.798510906000118 ], [ -124.631952566999971, 49.799041486000093 ], [ -124.63236901799999, 49.799046697000136 ], [ -124.632328201999883, 49.800414692000039 ], [ -124.632312212999977, 49.800419 ], [ -124.631672079999959, 49.800806396000105 ], [ -124.630572307999927, 49.800740906000037 ], [ -124.630492617999934, 49.800859105000036 ], [ -124.630766376999929, 49.80110689800005 ], [ -124.630548408, 49.80123650399999 ], [ -124.63030958799996, 49.801212296000109 ], [ -124.629321182999931, 49.8007408960001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.988819176319176", "sL_AssetLoss": "1367.52", "sL_BldgLoss": "1352.23", "sL_StrLoss": "1214.53", "sL_NStrLoss": "137.7", "sL_ContLoss": "15.29", "geom_point": "0101000020E6100000A4D8FAB785215FC0729241495CDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.52107333899994, 49.704105390000116 ], [ -124.526615329999942, 49.704180403000095 ], [ -124.526499958999921, 49.70777726500004 ], [ -124.520957532999901, 49.707702247000128 ], [ -124.52107333899994, 49.704105390000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989097272074659", "sL_AssetLoss": "445.76", "sL_BldgLoss": "440.9", "sL_StrLoss": "407", "sL_NStrLoss": "33.9", "sL_ContLoss": "4.86", "geom_point": "0101000020E61000004B8AB8CE39215FC031D1BDDA93D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.519987229999941, 49.70081840700005 ], [ -124.519978415999944, 49.70053594400013 ], [ -124.516085390999962, 49.700483039000154 ], [ -124.516120700999963, 49.699389825000083 ], [ -124.516266236999982, 49.699272369000013 ], [ -124.516552678999915, 49.699108500000101 ], [ -124.516860526, 49.699000314000045 ], [ -124.51799351399994, 49.698943178000043 ], [ -124.518524273999958, 49.699063667000054 ], [ -124.518864914999938, 49.699275851000053 ], [ -124.519247056999959, 49.699522712000089 ], [ -124.519574042999935, 49.699779276000079 ], [ -124.519857990999981, 49.699991408000102 ], [ -124.519872127, 49.700000224000071 ], [ -124.520157538999982, 49.700257356000073 ], [ -124.52030063700002, 49.700399379000082 ], [ -124.520458474999913, 49.700568213000061 ], [ -124.520516909999969, 49.700618340000091 ], [ -124.520756045999988, 49.700267733000075 ], [ -124.521163881999911, 49.699669622000094 ], [ -124.52199903099995, 49.698627538000018 ], [ -124.52199920699999, 49.698633171000068 ], [ -124.522415066999912, 49.698627704000046 ], [ -124.522431925999982, 49.699167184000054 ], [ -124.522847790999961, 49.699161716000013 ], [ -124.522873087, 49.699970937000046 ], [ -124.521645319999934, 49.699987078000056 ], [ -124.521626939000029, 49.700558305000051 ], [ -124.521227086999929, 49.700552884000054 ], [ -124.521234866999976, 49.700802024000012 ], [ -124.519987229999941, 49.70081840700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.987022531323379", "sL_AssetLoss": "2231.56", "sL_BldgLoss": "2202.6", "sL_StrLoss": "2052", "sL_NStrLoss": "150.6", "sL_ContLoss": "28.96", "geom_point": "0101000020E6100000D7F76559451F5FC0C8D3F203D7D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.485896644999954, 49.692224885000037 ], [ -124.491437146999971, 49.69230168700004 ], [ -124.49131905199998, 49.695898572000075 ], [ -124.485778117, 49.695821764000073 ], [ -124.485896644999954, 49.692224885000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.990686816959201", "sL_AssetLoss": "1238.03", "sL_BldgLoss": "1226.5", "sL_StrLoss": "1140", "sL_NStrLoss": "86.5", "sL_ContLoss": "11.53", "geom_point": "0101000020E6100000A26A89CFFC235FC0336465C9D6DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.560967426, 49.750553279 ], [ -124.560975532999976, 49.750294767000085 ], [ -124.560799072999956, 49.750292440000109 ], [ -124.56071803299993, 49.750291372000056 ], [ -124.560830829999972, 49.746694690000083 ], [ -124.561045104999948, 49.746697514000033 ], [ -124.562201008, 49.746712744000085 ], [ -124.562307232999927, 49.746790145 ], [ -124.563156563999954, 49.747546720000081 ], [ -124.563983650999916, 49.748057693000135 ], [ -124.564734226999988, 49.74875500100012 ], [ -124.564554575999978, 49.748969344000095 ], [ -124.564406332999951, 49.749139677000137 ], [ -124.563683737999924, 49.749660604000077 ], [ -124.563726014999972, 49.749769154000035 ], [ -124.563733621999972, 49.749776992000122 ], [ -124.563824326999963, 49.749977050000112 ], [ -124.56315629199996, 49.750388126000125 ], [ -124.562652337999921, 49.750533666000116 ], [ -124.562587692999927, 49.750574622000073 ], [ -124.560967426, 49.750553279 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.977442954189166", "sL_AssetLoss": "1148.2", "sL_BldgLoss": "1122.3", "sL_StrLoss": "1044", "sL_NStrLoss": "78.3", "sL_ContLoss": "25.9", "geom_point": "0101000020E610000040745A1A6C235FC09AB61C3BEADD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.55272917, 49.734974703000049 ], [ -124.552758408, 49.734047302000093 ], [ -124.551595585999962, 49.734031876000032 ], [ -124.551681808999902, 49.731298882000061 ], [ -124.55176935599998, 49.731356635000061 ], [ -124.55218197, 49.731674925000036 ], [ -124.552453268999955, 49.731914148000108 ], [ -124.552781764000017, 49.732206573000013 ], [ -124.553068375999942, 49.732490569000028 ], [ -124.553511320999959, 49.732889407000101 ], [ -124.553882022999957, 49.733199254000041 ], [ -124.554320368999967, 49.733454240000107 ], [ -124.554785044999946, 49.733663888000073 ], [ -124.555152027999924, 49.733856835000097 ], [ -124.555534345999931, 49.734094576000118 ], [ -124.555790044999966, 49.734280055000106 ], [ -124.556089419999978, 49.734527882000101 ], [ -124.556374048, 49.734748923000069 ], [ -124.556616755999954, 49.734961549000161 ], [ -124.556682885999962, 49.735027062000064 ], [ -124.55272917, 49.734974703000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.987592430129089", "sL_AssetLoss": "2313.91", "sL_BldgLoss": "2285.2", "sL_StrLoss": "2102", "sL_NStrLoss": "183.2", "sL_ContLoss": "28.71", "geom_point": "0101000020E6100000BFA2B6685C205FC0632A1E931CD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.503013559999957, 49.678678775000051 ], [ -124.507596368999913, 49.678741622000118 ], [ -124.507721312999976, 49.678831408000057 ], [ -124.507895183999935, 49.679117703000067 ], [ -124.50789018399999, 49.679396801000117 ], [ -124.508512586, 49.679983487000108 ], [ -124.508435736999928, 49.682351680000103 ], [ -124.502896406, 49.682275742000101 ], [ -124.503013559999957, 49.678678775000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "0.989449153002203", "sL_AssetLoss": "3685.96", "sL_BldgLoss": "3647.07", "sL_StrLoss": "3346.57", "sL_NStrLoss": "300.5", "sL_ContLoss": "38.89", "geom_point": "0101000020E6100000B51A3305C21C5FC0EB756AB2EFD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.447603962999935, 49.697308169000095 ], [ -124.44765250199994, 49.695871555000075 ], [ -124.445417768999974, 49.695839716000137 ], [ -124.445518692999968, 49.69285665700005 ], [ -124.445539455999935, 49.692242881000084 ], [ -124.45107989199991, 49.692321734000124 ], [ -124.451031464, 49.693758357000021 ], [ -124.453266099999922, 49.69379008100006 ], [ -124.453175279999925, 49.69648789900004 ], [ -124.453145013999972, 49.697386917000088 ], [ -124.447603962999935, 49.697308169000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.976974687404697", "sL_AssetLoss": "655.8", "sL_BldgLoss": "640.7", "sL_StrLoss": "592", "sL_NStrLoss": "48.7", "sL_ContLoss": "15.1", "geom_point": "0101000020E61000002368ED3293125FC0E773CD6854CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.289419841999973, 49.603501325000117 ], [ -124.291080209999961, 49.603482816000088 ], [ -124.291108711, 49.604561902000107 ], [ -124.290693608999987, 49.604566532000035 ], [ -124.290700731999948, 49.604836303000056 ], [ -124.289455419999967, 49.604850184000064 ], [ -124.289419841999973, 49.603501325000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58964533", "BldgCostT": "39275546", "sL_LossRatio": "0.893194616779612", "sL_AssetLoss": "61814.3", "sL_BldgLoss": "55212.2", "sL_StrLoss": "46508.7", "sL_NStrLoss": "8703.5", "sL_ContLoss": "6602.1", "geom_point": "0101000020E6100000266893C3671E5FC0A6C5958AF8D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.483027043999968, 49.683925022000061 ], [ -124.483061769999907, 49.682872887000137 ], [ -124.482474287999963, 49.682864710000011 ], [ -124.482488249999932, 49.682441852000096 ], [ -124.480716046999973, 49.682417166000079 ], [ -124.480724818999988, 49.682151795000074 ], [ -124.47572097799997, 49.682081937000056 ], [ -124.475726179000034, 49.681925108000044 ], [ -124.473652108999957, 49.681896084000044 ], [ -124.473677357999961, 49.681135767000107 ], [ -124.472964740999942, 49.681125786000095 ], [ -124.471819687999968, 49.681109738000032 ], [ -124.471834376999965, 49.680667947000046 ], [ -124.469670233999977, 49.680637584000074 ], [ -124.469789983999974, 49.677040645000069 ], [ -124.472121161999951, 49.677073349000068 ], [ -124.472138553999983, 49.676550082000055 ], [ -124.47157945899994, 49.676542243000078 ], [ -124.471584485, 49.676391092000074 ], [ -124.470566930999951, 49.676376817000111 ], [ -124.470609560999932, 49.675095501000101 ], [ -124.470275597999887, 49.675090814000022 ], [ -124.470291863999961, 49.674602015000083 ], [ -124.469785109999918, 49.674594902000088 ], [ -124.469789189000011, 49.674472368000046 ], [ -124.468151456999962, 49.674449360000018 ], [ -124.468241149999983, 49.671757536000023 ], [ -124.467295789999923, 49.671744244000138 ], [ -124.467301925999948, 49.671560189000019 ], [ -124.467336866, 49.670512185000106 ], [ -124.466747815999938, 49.670503899000074 ], [ -124.466650541999982, 49.67050253000005 ], [ -124.466659221999961, 49.670242293000108 ], [ -124.466672407999937, 49.669846903000078 ], [ -124.466524618999955, 49.669844823000084 ], [ -124.465317546999984, 49.669827831000056 ], [ -124.465268659999964, 49.671292283000106 ], [ -124.459730733999933, 49.671214149 ], [ -124.459736650999943, 49.67103755200003 ], [ -124.459389232999982, 49.671032640000078 ], [ -124.459509760999978, 49.667435664000052 ], [ -124.46142689599999, 49.667462751000087 ], [ -124.461472903999962, 49.666087829000084 ], [ -124.46083999299999, 49.666078891000119 ], [ -124.460863029, 49.665390716000104 ], [ -124.458735256999944, 49.665360639000077 ], [ -124.458855820999986, 49.661763633000099 ], [ -124.459426888999985, 49.66177170900005 ], [ -124.459452541999937, 49.661006046000061 ], [ -124.461051722999983, 49.66102864700008 ], [ -124.461057548999946, 49.660854586000085 ], [ -124.460775510999952, 49.660850602000039 ], [ -124.460781239999946, 49.660679484000056 ], [ -124.460626615999928, 49.660677299000056 ], [ -124.460647013999946, 49.660067936000075 ], [ -124.46040344499994, 49.660064494000075 ], [ -124.46052386599996, 49.656467461000069 ], [ -124.461976478999958, 49.656487979000126 ], [ -124.461983217999929, 49.65628649700006 ], [ -124.462484355999933, 49.656293571000035 ], [ -124.462476612, 49.656035212000077 ], [ -124.462474184999977, 49.655954254000115 ], [ -124.46242603499999, 49.655954862000058 ], [ -124.46205867899999, 49.655959502000059 ], [ -124.462038738999951, 49.655294081000072 ], [ -124.462034428999985, 49.655150253000059 ], [ -124.461955483999986, 49.655151250000095 ], [ -124.461618927999979, 49.655155500000049 ], [ -124.461600574999977, 49.654542775000081 ], [ -124.461578527999919, 49.653806751000104 ], [ -124.462480276999898, 49.653795364000047 ], [ -124.463629581999925, 49.654023103000057 ], [ -124.46462728799996, 49.654045901000053 ], [ -124.46559371099994, 49.653961800000083 ], [ -124.467730297999978, 49.653584389000059 ], [ -124.466182523999976, 49.656949802000092 ], [ -124.466124180999927, 49.657786921000131 ], [ -124.466038205999922, 49.659020611000095 ], [ -124.466090308999952, 49.659415099000036 ], [ -124.466449895999958, 49.660319510000079 ], [ -124.466848703999943, 49.660674093000075 ], [ -124.467370300999931, 49.661369192000123 ], [ -124.467584588999955, 49.663031207000074 ], [ -124.467838703999973, 49.663629402000055 ], [ -124.468204008999962, 49.66424609000007 ], [ -124.468546189, 49.664575097000068 ], [ -124.469334711999963, 49.666390893000013 ], [ -124.469903901999956, 49.667282487000058 ], [ -124.47017730399989, 49.668097104000026 ], [ -124.471188405999953, 49.669470091000093 ], [ -124.472302493999919, 49.67150670900007 ], [ -124.472361307999975, 49.671595901000089 ], [ -124.473327148999928, 49.67306003800006 ], [ -124.474002982999977, 49.674084504000064 ], [ -124.475304616999921, 49.674985998000082 ], [ -124.476505407999966, 49.67618520900006 ], [ -124.476851292999953, 49.677088216000058 ], [ -124.47704479099994, 49.678435505000081 ], [ -124.477413690999953, 49.678718898000071 ], [ -124.478681408999961, 49.67886410000002 ], [ -124.47918650599999, 49.67907350600013 ], [ -124.480500022999976, 49.679435304000023 ], [ -124.480608799999942, 49.679371212000085 ], [ -124.481619632999951, 49.679240101000083 ], [ -124.482003492999922, 49.679190309 ], [ -124.482233310999945, 49.679035001000081 ], [ -124.482870704999939, 49.678999396000044 ], [ -124.483640499999979, 49.678755898000141 ], [ -124.483913302999966, 49.678159206000025 ], [ -124.484079410000021, 49.676789109000012 ], [ -124.484058303999944, 49.676592497000058 ], [ -124.483844799999929, 49.676406007000011 ], [ -124.484127606999934, 49.676105388000074 ], [ -124.484396376999939, 49.675346395000126 ], [ -124.484668545999952, 49.675119825000095 ], [ -124.485504918999979, 49.674423506000075 ], [ -124.485736795999941, 49.674322314000094 ], [ -124.487711214999976, 49.67361309700005 ], [ -124.48848879499999, 49.673242798000047 ], [ -124.48943929499994, 49.673023493000052 ], [ -124.49105579299993, 49.672436704000056 ], [ -124.492267695999914, 49.672160390000087 ], [ -124.49319459799996, 49.671670511000073 ], [ -124.494213300999917, 49.671405605000118 ], [ -124.49563660599992, 49.671253187000097 ], [ -124.496884616999964, 49.671281707000105 ], [ -124.497744292999954, 49.6713329150001 ], [ -124.498374118999919, 49.671469599000041 ], [ -124.4990904799999, 49.671625056000067 ], [ -124.499027541999936, 49.673552737000101 ], [ -124.497291177999969, 49.673528809000082 ], [ -124.497282086999959, 49.673806880000058 ], [ -124.496394401999936, 49.673794636000117 ], [ -124.496381473999975, 49.674189902000116 ], [ -124.496377553999949, 49.674189847999983 ], [ -124.496350520999911, 49.675016300000053 ], [ -124.495649581999942, 49.675006627000073 ], [ -124.495642405999931, 49.675225917000041 ], [ -124.495042931999947, 49.675217641000117 ], [ -124.495039887999965, 49.675310632000034 ], [ -124.492302391999942, 49.67527279600008 ], [ -124.492276068999928, 49.675273135000076 ], [ -124.49225024899998, 49.676060327000101 ], [ -124.492249504999933, 49.676083032000108 ], [ -124.492450367999979, 49.676080444 ], [ -124.494680541999955, 49.676051675000082 ], [ -124.494713619, 49.677130654000045 ], [ -124.495129301999896, 49.677125287000074 ], [ -124.495154117999945, 49.677934521000047 ], [ -124.494738427999934, 49.677939887000043 ], [ -124.494746698999975, 49.678209634000048 ], [ -124.494381312999948, 49.678214349000015 ], [ -124.494331006999957, 49.67821499800003 ], [ -124.494346379999953, 49.678716561000037 ], [ -124.494347240999943, 49.67874466000012 ], [ -124.49434792699999, 49.678767024000059 ], [ -124.494392338999916, 49.679032865000082 ], [ -124.494404839999959, 49.679310964000116 ], [ -124.49436458699999, 49.679310543000035 ], [ -124.494372346999967, 49.679563723000122 ], [ -124.493201943999949, 49.679578824000096 ], [ -124.4893839, 49.679627999000068 ], [ -124.489375657999986, 49.679358253000039 ], [ -124.488544253999976, 49.679368944000032 ], [ -124.488552489, 49.679638690000097 ], [ -124.488136785, 49.679644034000077 ], [ -124.488153253999982, 49.68018352400005 ], [ -124.48856896199996, 49.680178181000066 ], [ -124.48857584299995, 49.680403517000109 ], [ -124.488684820999964, 49.680405028000031 ], [ -124.48862032699995, 49.68236637400004 ], [ -124.488576316999939, 49.683704674000047 ], [ -124.488566540999983, 49.684001971000086 ], [ -124.483027043999968, 49.683925022000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.98234578320347", "sL_AssetLoss": "2038.04", "sL_BldgLoss": "2002.06", "sL_StrLoss": "1784.66", "sL_NStrLoss": "217.4", "sL_ContLoss": "35.98", "geom_point": "0101000020E6100000A58615F2311C5FC0EDADD4F53CD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.437839543000024, 49.687522279000049 ], [ -124.44337939699993, 49.687601522000129 ], [ -124.443257552999938, 49.691198378000095 ], [ -124.442353189999935, 49.691185461000032 ], [ -124.437717265999964, 49.691119128000011 ], [ -124.43779680199998, 49.688779581000105 ], [ -124.437839543000024, 49.687522279000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.961682081921066", "sL_AssetLoss": "3481.4", "sL_BldgLoss": "3348", "sL_StrLoss": "2780.2", "sL_NStrLoss": "567.8", "sL_ContLoss": "133.4", "geom_point": "0101000020E6100000ECFD80E6F71A5FC08B30EAFF41D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.418674340000024, 49.65642552 ], [ -124.424210415999966, 49.656505741000103 ], [ -124.424087155, 49.660102735000052 ], [ -124.418550646999947, 49.660022508000061 ], [ -124.418674340000024, 49.65642552 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19299500", "BldgCostT": "13310000", "sL_LossRatio": "0.963402906251783", "sL_AssetLoss": "24540.2", "sL_BldgLoss": "23642.1", "sL_StrLoss": "19942.1", "sL_NStrLoss": "3700", "sL_ContLoss": "898.1", "geom_point": "0101000020E610000083E68C8B971B5FC0CDBF6567B4D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.432042964999965, 49.667128719000104 ], [ -124.432037445999924, 49.666940741000097 ], [ -124.429109226999969, 49.66689856500011 ], [ -124.429172807, 49.665037628000107 ], [ -124.425857820999965, 49.664989786000035 ], [ -124.42589446, 49.663919566000096 ], [ -124.423990316999934, 49.663892040000086 ], [ -124.423991028999964, 49.66387126300004 ], [ -124.423456198999943, 49.663863525000075 ], [ -124.423531922999985, 49.661654894000073 ], [ -124.423579518999958, 49.660266553000042 ], [ -124.42436800800003, 49.660277959000048 ], [ -124.424387719999984, 49.659702672000044 ], [ -124.424827718999936, 49.659709034000073 ], [ -124.424926366999912, 49.656828977000025 ], [ -124.42623919299993, 49.656847950000063 ], [ -124.426249329999948, 49.656551709000048 ], [ -124.431785432999931, 49.656631545000025 ], [ -124.431705989999955, 49.65896114700007 ], [ -124.432309857999925, 49.65896983699999 ], [ -124.432276838999925, 49.659938398000079 ], [ -124.434385844999952, 49.659968727000106 ], [ -124.43441074699993, 49.659237319000091 ], [ -124.439947186999959, 49.659316741000062 ], [ -124.43989412399999, 49.660880831000114 ], [ -124.439825150999951, 49.662913737000018 ], [ -124.439669055999914, 49.662911502000028 ], [ -124.439644085999973, 49.663647340000104 ], [ -124.43651246899995, 49.663602447000116 ], [ -124.43652726199997, 49.664104807000065 ], [ -124.436211171999943, 49.664108729000077 ], [ -124.436170443999956, 49.665306222000055 ], [ -124.434704221999937, 49.665285168 ], [ -124.434646582, 49.666978255000032 ], [ -124.433285247999919, 49.666958689000097 ], [ -124.433289792000025, 49.667113291000113 ], [ -124.432042964999965, 49.667128719000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.979183740370431", "sL_AssetLoss": "610.1", "sL_BldgLoss": "597.4", "sL_StrLoss": "556", "sL_NStrLoss": "41.4", "sL_ContLoss": "12.7", "geom_point": "0101000020E6100000A27E17B6E6165FC05E718AF10ECC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.356876295999939, 49.595444133000107 ], [ -124.35686881, 49.595174369000077 ], [ -124.356453801, 49.595179233000067 ], [ -124.356408902999974, 49.593560644000043 ], [ -124.357653893999938, 49.593546046000036 ], [ -124.357646404, 49.593276281000037 ], [ -124.359721371999981, 49.593251920000064 ], [ -124.359743876999943, 49.594061214000078 ], [ -124.358913873999967, 49.594070963000036 ], [ -124.358921369999933, 49.594340727000016 ], [ -124.358506367999922, 49.594345599000071 ], [ -124.358513861999981, 49.59461536400007 ], [ -124.358098856999959, 49.594620235000036 ], [ -124.358121332999957, 49.595429529000143 ], [ -124.356876295999939, 49.595444133000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.973637380116222", "sL_AssetLoss": "634.99", "sL_BldgLoss": "618.25", "sL_StrLoss": "536.95", "sL_NStrLoss": "81.3", "sL_ContLoss": "16.74", "geom_point": "0101000020E6100000C17D918EBA235FC0A9AF9DDE7BDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.557397395999899, 49.736100477000065 ], [ -124.557679818999972, 49.73610421000015 ], [ -124.558237301999966, 49.736594832000108 ], [ -124.558781177999919, 49.737109250000053 ], [ -124.559225059999946, 49.737535009000055 ], [ -124.559354538, 49.737677193000145 ], [ -124.559435876999956, 49.737755524000185 ], [ -124.559518909999966, 49.737984077000107 ], [ -124.559573019999974, 49.738121743000072 ], [ -124.559587673999957, 49.738296273000095 ], [ -124.559589824999975, 49.738619238000062 ], [ -124.55952372899999, 49.738802726000074 ], [ -124.559371921999926, 49.738983764000025 ], [ -124.559229839999958, 49.739161449000022 ], [ -124.559029220999918, 49.739371500000054 ], [ -124.558732678999917, 49.739602536000099 ], [ -124.558591266999898, 49.739714476000067 ], [ -124.557284355999954, 49.73969721 ], [ -124.557397395999899, 49.736100477000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.968608094768016", "sL_AssetLoss": "2532.5", "sL_BldgLoss": "2453", "sL_StrLoss": "2057", "sL_NStrLoss": "396", "sL_ContLoss": "79.5", "geom_point": "0101000020E6100000EDF483BA480D5FC005AFD0E63CC84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.21003090499994, 49.566579461000032 ], [ -124.210024235999981, 49.566309679000078 ], [ -124.209609447, 49.566314016000042 ], [ -124.209602780999916, 49.566044234000103 ], [ -124.209187993999976, 49.566048569000017 ], [ -124.209181329999979, 49.565778787000049 ], [ -124.209044637999952, 49.565780215000096 ], [ -124.208766543999928, 49.565783121000088 ], [ -124.208759881999981, 49.565513339000084 ], [ -124.207930315999988, 49.56552200100009 ], [ -124.207923660999967, 49.565252220000026 ], [ -124.207508878999974, 49.56525654899999 ], [ -124.207502225, 49.564986766000089 ], [ -124.207087446999978, 49.564991094000071 ], [ -124.20708079399999, 49.564721313000064 ], [ -124.206666016999975, 49.564725638000048 ], [ -124.206659366999986, 49.564455856000087 ], [ -124.20624459299998, 49.564460181000108 ], [ -124.206237945999973, 49.564190398000079 ], [ -124.205823172999885, 49.564194721000078 ], [ -124.205809883, 49.563655157000035 ], [ -124.204980347999964, 49.56366379800005 ], [ -124.204973708999972, 49.563394015000057 ], [ -124.204558942999981, 49.563398334000048 ], [ -124.204552304999979, 49.563128552000094 ], [ -124.203722777999985, 49.563137184000041 ], [ -124.203702878999962, 49.562327836000136 ], [ -124.205361904999947, 49.562310567000061 ], [ -124.205368546, 49.562580349000022 ], [ -124.206198063999949, 49.562571705000046 ], [ -124.206204709999909, 49.562841487000064 ], [ -124.206619470999939, 49.562837163000033 ], [ -124.206626120999985, 49.563106945000079 ], [ -124.207040881999959, 49.563102620000045 ], [ -124.207047535, 49.563372402000027 ], [ -124.207462298999971, 49.563368075000078 ], [ -124.207475607999967, 49.563907639000071 ], [ -124.207890376999956, 49.563903309000089 ], [ -124.20789703399997, 49.564173092000068 ], [ -124.208726575999933, 49.564164430000055 ], [ -124.208733236999933, 49.564434212000059 ], [ -124.209097093999944, 49.564430410000085 ], [ -124.209148010999911, 49.564429878000098 ], [ -124.209154674999979, 49.564699660000045 ], [ -124.20998422699995, 49.564690989000034 ], [ -124.209997562999988, 49.565230553000085 ], [ -124.210412342999959, 49.565226215000145 ], [ -124.210419014999943, 49.565495997 ], [ -124.210833795999932, 49.565491657000038 ], [ -124.210840469999951, 49.565761438000081 ], [ -124.211255253999951, 49.565757097000088 ], [ -124.211275280999956, 49.566566442000102 ], [ -124.21003090499994, 49.566579461000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10147583", "BldgCostT": "6998333", "sL_LossRatio": "0.98291935418468", "sL_AssetLoss": "7644.91", "sL_BldgLoss": "7514.33", "sL_StrLoss": "6837.53", "sL_NStrLoss": "676.8", "sL_ContLoss": "130.58", "geom_point": "0101000020E610000083972A62621A5FC0FD6BD49EEDD44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.408496840999959, 49.663746260000039 ], [ -124.408600787999916, 49.660742882000065 ], [ -124.410015346999927, 49.6607635350001 ], [ -124.410062709999963, 49.659393714000018 ], [ -124.41559912699995, 49.659474373000059 ], [ -124.41557769299996, 49.660096457000066 ], [ -124.416945414999972, 49.660116340000044 ], [ -124.416911613999943, 49.661098186000075 ], [ -124.416870773999932, 49.662284421000031 ], [ -124.417202338999957, 49.662289238000042 ], [ -124.417078514999957, 49.66588619300007 ], [ -124.416647526999967, 49.665879931000077 ], [ -124.416630525999935, 49.666373605000054 ], [ -124.41246163299995, 49.666312944000019 ], [ -124.412424017999939, 49.667402306000028 ], [ -124.411177074999941, 49.667384131000105 ], [ -124.406886651999969, 49.667321487000095 ], [ -124.407011275999963, 49.663724550000055 ], [ -124.408496840999959, 49.663746260000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.959349593495935", "sL_AssetLoss": "2533.8", "sL_BldgLoss": "2430.8", "sL_StrLoss": "2094", "sL_NStrLoss": "336.8", "sL_ContLoss": "103", "geom_point": "0101000020E6100000D5E6417259105FC0399A654711C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.253763345999943, 49.545298835000033 ], [ -124.25591611399993, 49.54533341200009 ], [ -124.256063417999925, 49.545498297000115 ], [ -124.255966380999979, 49.546065191000075 ], [ -124.256468395999931, 49.54620471000009 ], [ -124.256529287999939, 49.54640129600007 ], [ -124.256274392999956, 49.54672740700002 ], [ -124.256444111999969, 49.546905389000088 ], [ -124.256948790999928, 49.547170398000063 ], [ -124.257126805999931, 49.547654593000047 ], [ -124.257908311999955, 49.548464994000042 ], [ -124.259154191, 49.5488724390001 ], [ -124.259149947, 49.548984820000037 ], [ -124.253627084999962, 49.548896199000112 ], [ -124.253763345999943, 49.545298835000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.979909558493562", "sL_AssetLoss": "2896.9", "sL_BldgLoss": "2838.7", "sL_StrLoss": "2559", "sL_NStrLoss": "279.7", "sL_ContLoss": "58.2", "geom_point": "0101000020E6100000FB14954796195FC04F797423ACD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.397091252999985, 49.667476613000069 ], [ -124.402628619999959, 49.667557930000065 ], [ -124.402503641999971, 49.671154842000036 ], [ -124.396965840999911, 49.671073519000103 ], [ -124.397091252999985, 49.667476613000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3202084", "BldgCostT": "2208334", "sL_LossRatio": "0.959221522098583", "sL_AssetLoss": "4475.4", "sL_BldgLoss": "4292.9", "sL_StrLoss": "3575", "sL_NStrLoss": "717.9", "sL_ContLoss": "182.5", "geom_point": "0101000020E6100000E323F7AE201A5FC0DA8CD310D5D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.405537881999962, 49.676538346000029 ], [ -124.411076355999967, 49.676619233000075 ], [ -124.41095201399996, 49.680216108000081 ], [ -124.405413106999973, 49.680135216000082 ], [ -124.405537881999962, 49.676538346000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.919041450777202", "sL_AssetLoss": "7720", "sL_BldgLoss": "7095", "sL_StrLoss": "5350", "sL_NStrLoss": "1745", "sL_ContLoss": "625", "geom_point": "0101000020E61000003BFFB8F501095FC07D0548B8B9C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.137763138999929, 49.522104472000095 ], [ -124.13786723299998, 49.519525854000079 ], [ -124.138069302999952, 49.519661684000042 ], [ -124.13894921399999, 49.520624494000046 ], [ -124.139338187999925, 49.520728509000094 ], [ -124.139668087999937, 49.520698611000057 ], [ -124.139954877999969, 49.520541892000097 ], [ -124.139976404999942, 49.520299793000063 ], [ -124.139719107999909, 49.519888193000057 ], [ -124.13928723, 49.519367712000125 ], [ -124.143393689999982, 49.519438003000133 ], [ -124.143248899999932, 49.523035359000069 ], [ -124.138311028999965, 49.522950818000027 ], [ -124.138310790999924, 49.522943099000081 ], [ -124.137870506999889, 49.52240758300011 ], [ -124.137763138999929, 49.522104472000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.964665296907896", "sL_AssetLoss": "7884.6", "sL_BldgLoss": "7606", "sL_StrLoss": "6501", "sL_NStrLoss": "1105", "sL_ContLoss": "278.6", "geom_point": "0101000020E6100000978D3124651C5FC0A306F43E65D24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.443565188999926, 49.647247789000062 ], [ -124.44358222999989, 49.646744145000071 ], [ -124.442106964999965, 49.646723054000056 ], [ -124.44213490599999, 49.645898028000026 ], [ -124.442045812999964, 49.645896754000049 ], [ -124.442167631999922, 49.642299668000057 ], [ -124.442453762999932, 49.642303760000082 ], [ -124.442465366999926, 49.641961013000113 ], [ -124.438810535999949, 49.641908680000036 ], [ -124.438897469999944, 49.639346794000097 ], [ -124.439346902999887, 49.639620093000111 ], [ -124.442702600999951, 49.640243913000084 ], [ -124.4436132, 49.640565688000102 ], [ -124.44438095, 49.640921723000119 ], [ -124.444345573999897, 49.641967939000082 ], [ -124.445953948999929, 49.641990903000071 ], [ -124.445999586999946, 49.642109592000047 ], [ -124.445930318999928, 49.642623697000083 ], [ -124.445872395999928, 49.642992594000098 ], [ -124.446046492999955, 49.643260292000129 ], [ -124.446456392999892, 49.64350671200004 ], [ -124.447014013999961, 49.643607791000065 ], [ -124.448052075999968, 49.644099196000049 ], [ -124.447983915999941, 49.644144794000098 ], [ -124.447650805999942, 49.64407640000006 ], [ -124.446920985999938, 49.643807199000022 ], [ -124.44580907799994, 49.643623496000075 ], [ -124.4457226899999, 49.644029405000012 ], [ -124.44610901, 49.644861088 ], [ -124.447766887999961, 49.646171400000057 ], [ -124.449114399999971, 49.646905664000094 ], [ -124.449100202999915, 49.647326748000118 ], [ -124.443565188999926, 49.647247789000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.977433628318584", "sL_AssetLoss": "3164", "sL_BldgLoss": "3092.6", "sL_StrLoss": "2728", "sL_NStrLoss": "364.6", "sL_ContLoss": "71.4", "geom_point": "0101000020E61000003146E2ED9A185FC05B4A9693D0CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.383716090999954, 49.601878349000103 ], [ -124.383731328999957, 49.601444216000061 ], [ -124.383066192999934, 49.601434333000022 ], [ -124.383080855999978, 49.601016729000079 ], [ -124.381504761000016, 49.600993294000098 ], [ -124.381631187999957, 49.597396045000011 ], [ -124.382943825999988, 49.597415565000112 ], [ -124.383124792, 49.597560291000036 ], [ -124.38347530899992, 49.59771840500008 ], [ -124.383670391999942, 49.597706996000092 ], [ -124.384023387999946, 49.597954808000047 ], [ -124.384180606999948, 49.598141393000084 ], [ -124.383824115999928, 49.598766608000076 ], [ -124.384063801999929, 49.598934698000022 ], [ -124.385765792999933, 49.599408912000101 ], [ -124.386127076999955, 49.599431695000128 ], [ -124.386354908, 49.599716589000039 ], [ -124.38777438799994, 49.600464302000049 ], [ -124.388500782999984, 49.601184905000096 ], [ -124.388636606999981, 49.601596503000088 ], [ -124.388851981999963, 49.601810101000062 ], [ -124.389127301999935, 49.601780205000075 ], [ -124.389203690999977, 49.601518196000029 ], [ -124.389260735999969, 49.601526129000042 ], [ -124.389245546999973, 49.601960353000024 ], [ -124.383716090999954, 49.601878349000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.982171081747487", "sL_AssetLoss": "3163.4", "sL_BldgLoss": "3107", "sL_StrLoss": "2740", "sL_NStrLoss": "367", "sL_ContLoss": "56.4", "geom_point": "0101000020E61000007094DD4830155FC09A4A9A9ADFCE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.328372420999955, 49.614358169000056 ], [ -124.333903276999962, 49.614442983000032 ], [ -124.333773073, 49.618040088000107 ], [ -124.328241785999964, 49.617955266000145 ], [ -124.32834807399999, 49.615028634000076 ], [ -124.328338183999989, 49.614664815000012 ], [ -124.328361295999912, 49.614664549000082 ], [ -124.328372420999955, 49.614358169000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "0.981799397709538", "sL_AssetLoss": "4549.3", "sL_BldgLoss": "4466.5", "sL_StrLoss": "4042", "sL_NStrLoss": "424.5", "sL_ContLoss": "82.8", "geom_point": "0101000020E61000001D450855CB235FC0AD2691759FE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.560062532999922, 49.756482701000067 ], [ -124.559669776999968, 49.756447558000033 ], [ -124.558475791999939, 49.756459106000094 ], [ -124.558134000999985, 49.756472531000092 ], [ -124.558290084999967, 49.757243707000093 ], [ -124.558365378999923, 49.757375065000069 ], [ -124.555770461999941, 49.757083395000052 ], [ -124.555589710999953, 49.756848193000032 ], [ -124.555502094999952, 49.756676111000075 ], [ -124.555563603999985, 49.756573504000109 ], [ -124.554783385999954, 49.756363507000152 ], [ -124.554623808999935, 49.756294925000077 ], [ -124.555565856999976, 49.755652785000045 ], [ -124.555623818, 49.755632682000098 ], [ -124.555669305, 49.755619743000089 ], [ -124.555752190999925, 49.755598688000148 ], [ -124.555901690999946, 49.75556069400006 ], [ -124.55597105899993, 49.755559759000064 ], [ -124.556165056999959, 49.75554815 ], [ -124.556359921999942, 49.755563529000057 ], [ -124.556593349999972, 49.75551217300012 ], [ -124.556580964999938, 49.75537706900009 ], [ -124.556685127999955, 49.754932285000116 ], [ -124.556318159999947, 49.753884205000134 ], [ -124.556318118999954, 49.75358619800005 ], [ -124.556486580999945, 49.753170202000021 ], [ -124.556805637999958, 49.752647735000032 ], [ -124.556900700999947, 49.752491998000039 ], [ -124.556973222999886, 49.752402043000082 ], [ -124.557275997999952, 49.752026493000088 ], [ -124.557633946999914, 49.75168010300014 ], [ -124.556346171, 49.751634864000039 ], [ -124.556273948999944, 49.751415660000092 ], [ -124.557903014999965, 49.751437190000061 ], [ -124.560082260999963, 49.7514659530001 ], [ -124.560010143999975, 49.753764132000121 ], [ -124.560322593, 49.753768252000071 ], [ -124.56030545299997, 49.754314530000066 ], [ -124.563360912999912, 49.754354776000127 ], [ -124.563358641999955, 49.754427282000101 ], [ -124.563320764000011, 49.755637077000117 ], [ -124.563314477999981, 49.755837804000102 ], [ -124.563813460999981, 49.755844368000126 ], [ -124.562936760999918, 49.758193566000088 ], [ -124.562677068999932, 49.757850256000097 ], [ -124.562449591999922, 49.7576622610001 ], [ -124.562288857999988, 49.757529406000081 ], [ -124.561609086999937, 49.757080573000074 ], [ -124.561231838999944, 49.756940682000028 ], [ -124.560517824000016, 49.756611029000055 ], [ -124.560062532999922, 49.756482701000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.979693855880287", "sL_AssetLoss": "6121.3", "sL_BldgLoss": "5997", "sL_StrLoss": "5364", "sL_NStrLoss": "633", "sL_ContLoss": "124.3", "geom_point": "0101000020E6100000571974DFBD225FC0837EAECF7FDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.546100599999946, 49.751406250000059 ], [ -124.545915348, 49.749949803000099 ], [ -124.545125437999928, 49.749613871000129 ], [ -124.545359564999956, 49.749071638000039 ], [ -124.544248693999947, 49.748739567000058 ], [ -124.543642909999917, 49.748609717000086 ], [ -124.543706274999977, 49.748059207000011 ], [ -124.541807709999944, 49.746079195000078 ], [ -124.540461490999959, 49.745727875000107 ], [ -124.54027341199992, 49.74495244600007 ], [ -124.540000656999936, 49.744454069000078 ], [ -124.539316281999987, 49.743859834000041 ], [ -124.53830313099995, 49.743139629000019 ], [ -124.537726078999938, 49.743105075000095 ], [ -124.537155346999924, 49.743147296000139 ], [ -124.537154592999954, 49.743146063000033 ], [ -124.53703735500001, 49.742949734000057 ], [ -124.53694984699996, 49.742815975000042 ], [ -124.536778501999919, 49.742665335000034 ], [ -124.536763378999979, 49.742629456000053 ], [ -124.536720753999973, 49.742602982000051 ], [ -124.536547275999936, 49.742406952000131 ], [ -124.53650497199996, 49.74238949800008 ], [ -124.536490173999951, 49.742362641000078 ], [ -124.53644813699999, 49.742354199000033 ], [ -124.536205659999979, 49.742177155000022 ], [ -124.536062390999959, 49.742052838000092 ], [ -124.536020053999948, 49.742035397000066 ], [ -124.53600525399996, 49.742008538000086 ], [ -124.535891283999945, 49.741928940000051 ], [ -124.535876483999957, 49.741902081000049 ], [ -124.535834126999958, 49.741884619000075 ], [ -124.535661550999961, 49.741715620000036 ], [ -124.535489298, 49.741555642000044 ], [ -124.535189996999918, 49.741343297000071 ], [ -124.534948710999984, 49.741202315000095 ], [ -124.534820270999944, 49.741104877000048 ], [ -124.534759771999958, 49.741079928 ], [ -124.539507812999929, 49.741143561000065 ], [ -124.539468170999982, 49.742389374000012 ], [ -124.54005686899994, 49.742397249000078 ], [ -124.540049251999903, 49.742636713000124 ], [ -124.543137168999976, 49.742677970000052 ], [ -124.543094659999909, 49.744017155000051 ], [ -124.543350442999923, 49.744020568000096 ], [ -124.543337284999922, 49.744435170000052 ], [ -124.543973145999971, 49.744443653000125 ], [ -124.543950853999931, 49.745146308000059 ], [ -124.545324337999915, 49.745164620000075 ], [ -124.545240186999976, 49.747819465000056 ], [ -124.547163632999968, 49.747845079000051 ], [ -124.547141438, 49.748546124000015 ], [ -124.547475764999945, 49.748550573000117 ], [ -124.547430351999978, 49.749985349000042 ], [ -124.548062729999984, 49.749993761000056 ], [ -124.547956242999945, 49.75335916300002 ], [ -124.547497560999943, 49.753541513000101 ], [ -124.546220830999943, 49.752697670000053 ], [ -124.546756804999958, 49.752476969000085 ], [ -124.546199291999926, 49.751990525000075 ], [ -124.546100599999946, 49.751406250000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4243667", "BldgCostT": "2926667", "sL_LossRatio": "0.985286837222058", "sL_AssetLoss": "2807.69", "sL_BldgLoss": "2766.38", "sL_StrLoss": "2472.48", "sL_NStrLoss": "293.9", "sL_ContLoss": "41.31", "geom_point": "0101000020E6100000FC2C22CC25215FC015338830FAD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.518524273999958, 49.699063667000054 ], [ -124.51799351399994, 49.698943178000043 ], [ -124.516860526, 49.699000314000045 ], [ -124.516552678999915, 49.699108500000101 ], [ -124.516266236999982, 49.699272369000013 ], [ -124.516120700999963, 49.699389825000083 ], [ -124.516194474999921, 49.697105488000069 ], [ -124.516201558999967, 49.696886151000101 ], [ -124.517785138999969, 49.696907688000032 ], [ -124.517781768999924, 49.696799569000078 ], [ -124.518197615999924, 49.696794118000099 ], [ -124.518172399999955, 49.695984895000016 ], [ -124.517756559999953, 49.695990346000016 ], [ -124.517731352999974, 49.695181123000047 ], [ -124.517315522000018, 49.695186573000115 ], [ -124.517290320999933, 49.694377349000035 ], [ -124.516874496999961, 49.694382797000067 ], [ -124.516840909, 49.693303833000115 ], [ -124.516425091999935, 49.693309278000108 ], [ -124.516408303999953, 49.692769796000022 ], [ -124.515992491999953, 49.692775240000095 ], [ -124.515967316999976, 49.691966016000052 ], [ -124.515551511999945, 49.691971459000058 ], [ -124.515526344999969, 49.691162235000071 ], [ -124.515110545999917, 49.691167676000092 ], [ -124.515093773000032, 49.690628192000069 ], [ -124.51467798000003, 49.690633633000083 ], [ -124.514644443999941, 49.689554666000056 ], [ -124.514228658999954, 49.689560104000087 ], [ -124.514220278999971, 49.689290363000104 ], [ -124.513804495, 49.689295798000032 ], [ -124.513770981999954, 49.688216831000034 ], [ -124.513355207999979, 49.688222265000043 ], [ -124.513330080999978, 49.687413040000052 ], [ -124.514577378999931, 49.687396731000035 ], [ -124.514585762999928, 49.68766647400016 ], [ -124.515001530999939, 49.68766103500004 ], [ -124.515026685999956, 49.688470260000095 ], [ -124.515442460999964, 49.688464818000085 ], [ -124.515459236999973, 49.689004302000107 ], [ -124.515875016999956, 49.68899886 ], [ -124.515908578999941, 49.690077826000092 ], [ -124.516324366999967, 49.690072382000082 ], [ -124.516341152999942, 49.69061186400004 ], [ -124.516756946999962, 49.690606418000066 ], [ -124.516773738000012, 49.691145902000109 ], [ -124.517189534999929, 49.691140454000099 ], [ -124.51720633299999, 49.691679937000096 ], [ -124.517622134, 49.691674488000089 ], [ -124.517664139, 49.693023194000041 ], [ -124.518079952999983, 49.693017743000041 ], [ -124.518105163999962, 49.693826967000128 ], [ -124.518520984999938, 49.69382151500011 ], [ -124.518537796999908, 49.694360996000071 ], [ -124.518953620999966, 49.694355543000022 ], [ -124.518962030999901, 49.694625283000057 ], [ -124.519377856999938, 49.694619828000064 ], [ -124.519394678999959, 49.695159310000079 ], [ -124.519810511999964, 49.695153852000075 ], [ -124.519827339999935, 49.695693334000062 ], [ -124.520243174999948, 49.695687876000115 ], [ -124.52027684299992, 49.696766839000084 ], [ -124.52069268799994, 49.696761378000055 ], [ -124.520698487999965, 49.696947252000065 ], [ -124.521742672999963, 49.696961412000064 ], [ -124.521697439999954, 49.698367287000053 ], [ -124.521990779999939, 49.698363430000086 ], [ -124.52199903099995, 49.698627538000018 ], [ -124.521163881999911, 49.699669622000094 ], [ -124.520756045999988, 49.700267733000075 ], [ -124.520516909999969, 49.700618340000091 ], [ -124.520458474999913, 49.700568213000061 ], [ -124.52030063700002, 49.700399379000082 ], [ -124.520157538999982, 49.700257356000073 ], [ -124.519872127, 49.700000224000071 ], [ -124.519857990999981, 49.699991408000102 ], [ -124.519574042999935, 49.699779276000079 ], [ -124.519247056999959, 49.699522712000089 ], [ -124.518864914999938, 49.699275851000053 ], [ -124.518524273999958, 49.699063667000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.983642148605652", "sL_AssetLoss": "2671.5", "sL_BldgLoss": "2627.8", "sL_StrLoss": "2377", "sL_NStrLoss": "250.8", "sL_ContLoss": "43.7", "geom_point": "0101000020E6100000181330F4E71B5FC0803EDBB4E3D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.433324243999948, 49.676985839000082 ], [ -124.438862819999926, 49.677065313000064 ], [ -124.438740650999975, 49.680662217000055 ], [ -124.433201641999929, 49.680582737000051 ], [ -124.433324243999948, 49.676985839000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.985036651117708", "sL_AssetLoss": "1980.84", "sL_BldgLoss": "1951.2", "sL_StrLoss": "1806", "sL_NStrLoss": "145.2", "sL_ContLoss": "29.64", "geom_point": "0101000020E6100000DCA43F873B125FC0B265D8ACA3D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.281761562999975, 49.628392749000092 ], [ -124.28729401799994, 49.628479931000044 ], [ -124.287160130999951, 49.63207690600008 ], [ -124.284432950999943, 49.632033966000023 ], [ -124.284077781999898, 49.631155991000078 ], [ -124.283751289999927, 49.630862589000053 ], [ -124.283203496999988, 49.630572089000054 ], [ -124.28216779, 49.630170389000064 ], [ -124.281955610999944, 49.629983901000081 ], [ -124.28189139399997, 49.629669099000076 ], [ -124.281722593000012, 49.62943639800006 ], [ -124.281761562999975, 49.628392749000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.985379390324718", "sL_AssetLoss": "2414.4", "sL_BldgLoss": "2379.1", "sL_StrLoss": "2215", "sL_NStrLoss": "164.1", "sL_ContLoss": "35.3", "geom_point": "0101000020E61000007225D09A7E1B5FC072288DE2E6D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.4268944949999, 49.677082679000087 ], [ -124.432433071999967, 49.677162480000071 ], [ -124.432310401, 49.680759377000129 ], [ -124.426771389999928, 49.680679570000038 ], [ -124.4268944949999, 49.677082679000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210834", "BldgCostT": "4283334", "sL_LossRatio": "0.978919388812732", "sL_AssetLoss": "5981.8", "sL_BldgLoss": "5855.7", "sL_StrLoss": "5228", "sL_NStrLoss": "627.7", "sL_ContLoss": "126.1", "geom_point": "0101000020E61000000F456030E8195FC08F3A7459D0D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.402386182999976, 49.657518194000041 ], [ -124.402403111999902, 49.657030900000073 ], [ -124.402368611999989, 49.657030395000092 ], [ -124.402387013999913, 49.65650071900005 ], [ -124.401047196999912, 49.656481062000083 ], [ -124.401172249999945, 49.652884076000078 ], [ -124.402627561999964, 49.652905427000135 ], [ -124.402657937999919, 49.652030811 ], [ -124.40819345599999, 49.652111847000064 ], [ -124.408068955999966, 49.655708844000088 ], [ -124.407987845999941, 49.655707659000079 ], [ -124.407922360999933, 49.657599243000107 ], [ -124.402386182999976, 49.657518194000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.977421228089042", "sL_AssetLoss": "2324.75", "sL_BldgLoss": "2272.26", "sL_StrLoss": "1982.16", "sL_NStrLoss": "290.1", "sL_ContLoss": "52.49", "geom_point": "0101000020E6100000E3651BF2AE195FC009A8700429D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.398596928999936, 49.663475140000052 ], [ -124.404133816999945, 49.663556382000095 ], [ -124.404008966999982, 49.667153316000089 ], [ -124.398471645999976, 49.667072069000021 ], [ -124.398596928999936, 49.663475140000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.975196582856033", "sL_AssetLoss": "2060.2", "sL_BldgLoss": "2009.1", "sL_StrLoss": "1734", "sL_NStrLoss": "275.1", "sL_ContLoss": "51.1", "geom_point": "0101000020E61000007E05A371EC165FC0C24E905CA7CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.355831424999948, 49.592135549000034 ], [ -124.35593346899999, 49.589276912000109 ], [ -124.356929217999976, 49.589586201000017 ], [ -124.358336808000033, 49.589480784000109 ], [ -124.358463911999962, 49.589596095000054 ], [ -124.358261686999953, 49.589768500000055 ], [ -124.358375901999977, 49.589875286000101 ], [ -124.358890015999961, 49.589940793000032 ], [ -124.359036308999976, 49.590254091000077 ], [ -124.360229287999985, 49.590860799000026 ], [ -124.361396398999943, 49.591186415000045 ], [ -124.361359662999931, 49.592218971000051 ], [ -124.355831424999948, 49.592135549000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30804166", "BldgCostT": "20716666", "sL_LossRatio": "0.985956954686772", "sL_AssetLoss": "26632.4", "sL_BldgLoss": "26258.4", "sL_StrLoss": "24430.8", "sL_NStrLoss": "1827.6", "sL_ContLoss": "374", "geom_point": "0101000020E610000059D151D47A205FC0A119596CF2DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.513804510999989, 49.723089323000089 ], [ -124.513813722999927, 49.722804693000072 ], [ -124.512529379999961, 49.722787190000069 ], [ -124.512608512000014, 49.720344257000136 ], [ -124.511440512999968, 49.72035950700009 ], [ -124.511381890999985, 49.718471322000077 ], [ -124.512409699000017, 49.71845790400004 ], [ -124.512432046999933, 49.7177679710001 ], [ -124.511538053, 49.717755778000054 ], [ -124.511564772999989, 49.716931344000081 ], [ -124.511413198999904, 49.716929276000045 ], [ -124.511432791999979, 49.716324793000069 ], [ -124.510250092999911, 49.716308648000059 ], [ -124.510321303999902, 49.714113249000071 ], [ -124.506727385999923, 49.714064110000059 ], [ -124.506726739999934, 49.71408394200003 ], [ -124.505705857999942, 49.714069962000046 ], [ -124.505700807999958, 49.714225166000048 ], [ -124.500157638999951, 49.714149091000074 ], [ -124.500186090999989, 49.713277811000118 ], [ -124.500220246999945, 49.712231837000019 ], [ -124.499212120999985, 49.712217972000076 ], [ -124.499251713999953, 49.711006231000042 ], [ -124.498832681999929, 49.711000465000019 ], [ -124.49885850099993, 49.710210455000045 ], [ -124.498844930999937, 49.710210267000065 ], [ -124.498903917999968, 49.708405330000062 ], [ -124.498521329999974, 49.70840006400006 ], [ -124.498638891999946, 49.704803234000074 ], [ -124.498891413999957, 49.704806710000099 ], [ -124.498885099999981, 49.704601530000062 ], [ -124.499540019999969, 49.704593052000106 ], [ -124.499557655999936, 49.704053122000104 ], [ -124.499284409999973, 49.70405666100006 ], [ -124.499259503999923, 49.703247431000072 ], [ -124.500923118999978, 49.703225881000016 ], [ -124.50094805399999, 49.704035110000078 ], [ -124.500758898999919, 49.704037561000057 ], [ -124.501618529999973, 49.704049375000082 ], [ -124.501634846999949, 49.703549106000018 ], [ -124.502597776999949, 49.70356233200004 ], [ -124.502578413999956, 49.702934563000049 ], [ -124.502994313999977, 49.702929167000057 ], [ -124.50299275299993, 49.702878600000105 ], [ -124.501081268999911, 49.702852343000096 ], [ -124.501104375999944, 49.702144129000018 ], [ -124.50047397900002, 49.702152300000101 ], [ -124.500472210999988, 49.702094945000042 ], [ -124.500434590999987, 49.702094428000031 ], [ -124.50045030899993, 49.70161290500004 ], [ -124.500041470999946, 49.701618202000077 ], [ -124.500001890999926, 49.700332810000063 ], [ -124.498830540999961, 49.700316692000051 ], [ -124.498948057999939, 49.696719821000073 ], [ -124.500585058999945, 49.696742344000015 ], [ -124.504489123999932, 49.696795959000042 ], [ -124.504432001999973, 49.698550849000092 ], [ -124.506093271999987, 49.698573621000087 ], [ -124.506068926999959, 49.699322316000114 ], [ -124.506739992999925, 49.699331507000089 ], [ -124.50662307799999, 49.702928372000024 ], [ -124.50595922199993, 49.702919280000067 ], [ -124.505073972000034, 49.702907148000122 ], [ -124.505082150999925, 49.703171899000097 ], [ -124.504666248999939, 49.70317730400005 ], [ -124.504674580999961, 49.703447047000076 ], [ -124.504485951999953, 49.703449498000033 ], [ -124.503842771, 49.703457852000049 ], [ -124.503846526999922, 49.703579470000086 ], [ -124.504479039999964, 49.703588145000019 ], [ -124.506375245999934, 49.703614132000098 ], [ -124.507176740999952, 49.703625107000086 ], [ -124.507137098999948, 49.704844967000049 ], [ -124.507264211999981, 49.70484670700008 ], [ -124.507249067999936, 49.705312737000035 ], [ -124.507236495999948, 49.705319533000086 ], [ -124.506988889999974, 49.705385721000042 ], [ -124.507111739999957, 49.705770912000084 ], [ -124.5072337899999, 49.706129107000038 ], [ -124.506915208999956, 49.706142264000093 ], [ -124.505156105999916, 49.706219126000086 ], [ -124.504435980999958, 49.706255459000026 ], [ -124.50434591699991, 49.706259308 ], [ -124.503275200999951, 49.706305103000034 ], [ -124.503246709, 49.706369853000062 ], [ -124.503238967999948, 49.706567836000104 ], [ -124.503229822000023, 49.706720863000058 ], [ -124.503181304999927, 49.706946372000125 ], [ -124.503103944999935, 49.707136268000077 ], [ -124.503038483999916, 49.707263042000093 ], [ -124.502958628999934, 49.707372045000113 ], [ -124.50285216499995, 49.707517320000079 ], [ -124.502745406999964, 49.707653654000076 ], [ -124.502516072999953, 49.707863513000056 ], [ -124.502381852999974, 49.708009171000135 ], [ -124.502261233999945, 49.708145662000028 ], [ -124.502167790999962, 49.708263796000089 ], [ -124.502076845999966, 49.70846288300006 ], [ -124.502011135999965, 49.70858066699999 ], [ -124.501948179999914, 49.708788359000074 ], [ -124.501941504999962, 49.709022317000127 ], [ -124.50194846299992, 49.70924709500013 ], [ -124.501981995999969, 49.709435556000109 ], [ -124.502081007, 49.709947004000135 ], [ -124.502204956999933, 49.710817894000051 ], [ -124.50236552299998, 49.71152643300006 ], [ -124.502381339999886, 49.711589187000072 ], [ -124.50243847199998, 49.711642401000027 ], [ -124.502522497, 49.711668320000022 ], [ -124.502717443999956, 49.711692765000066 ], [ -124.503202487999943, 49.711677475000052 ], [ -124.503299555999945, 49.71167621600005 ], [ -124.503909626, 49.711668281000094 ], [ -124.504436523999942, 49.711661433000081 ], [ -124.50504664799999, 49.711653502000033 ], [ -124.506224971, 49.711629204000076 ], [ -124.507099062999941, 49.711635822000126 ], [ -124.508153415999956, 49.711640097000036 ], [ -124.509693923, 49.711664999 ], [ -124.509766594999988, 49.711771964000071 ], [ -124.509869517000013, 49.711959531000097 ], [ -124.509970730999981, 49.712093142000107 ], [ -124.510128306999974, 49.712252991000106 ], [ -124.510284437999957, 49.712367892000081 ], [ -124.510609794999979, 49.712570529000104 ], [ -124.510736256999934, 49.712622858000081 ], [ -124.510925725999982, 49.712678063000062 ], [ -124.511002221999931, 49.712700341000051 ], [ -124.511338060999918, 49.712794894000062 ], [ -124.511632307999903, 49.712890008000102 ], [ -124.511899147999955, 49.712994461000051 ], [ -124.512194235999971, 49.713116560000039 ], [ -124.512517355999933, 49.713247249000098 ], [ -124.512841577999922, 49.713413930000058 ], [ -124.513123385999933, 49.713554158000058 ], [ -124.513377718999919, 49.713703748000064 ], [ -124.513617932999978, 49.713844541000064 ], [ -124.513802374999983, 49.713977039000042 ], [ -124.514015118999936, 49.714127194000113 ], [ -124.514289797999979, 49.71432262900003 ], [ -124.514313033999954, 49.714339181000078 ], [ -124.514369887999962, 49.714383392000087 ], [ -124.514611771999938, 49.714578130000042 ], [ -124.514855351999984, 49.714826801000093 ], [ -124.514898329999966, 49.714871205000073 ], [ -124.515155511999978, 49.715110706000068 ], [ -124.515426783999928, 49.715359016000015 ], [ -124.515769412999987, 49.715669360000113 ], [ -124.51591339099997, 49.715838382000079 ], [ -124.5160856899999, 49.716025026000082 ], [ -124.516356673999979, 49.716264336000044 ], [ -124.516586433, 49.716513185000103 ], [ -124.516701278999989, 49.7166376220001 ], [ -124.516830843999955, 49.716788851000061 ], [ -124.517090832999926, 49.717118257000038 ], [ -124.517380512999978, 49.717510233000077 ], [ -124.517641597999926, 49.717875612000128 ], [ -124.517871318999966, 49.718124450000062 ], [ -124.518085796999955, 49.718328532000072 ], [ -124.518270837, 49.718479033000015 ], [ -124.51841260499999, 49.718576097000032 ], [ -124.518652568999983, 49.718707882000039 ], [ -124.518947696999959, 49.71882994000007 ], [ -124.518956350999943, 49.718832604000042 ], [ -124.519115808999942, 49.718881714000119 ], [ -124.51940955299996, 49.718958801000042 ], [ -124.51974602699994, 49.719071333000102 ], [ -124.520222607999955, 49.719226981000112 ], [ -124.520642852999941, 49.719356383000118 ], [ -124.520909145999923, 49.719442851000046 ], [ -124.521092230999926, 49.719530401000057 ], [ -124.521317220999933, 49.719626378000065 ], [ -124.52132660700002, 49.719633775000013 ], [ -124.521275244999984, 49.721228860000096 ], [ -124.520455998999921, 49.721217753000047 ], [ -124.520436146999955, 49.721833880000048 ], [ -124.519866157999957, 49.721826148000034 ], [ -124.5198457599999, 49.722458993000011 ], [ -124.519371745999962, 49.722452561000097 ], [ -124.519348782999955, 49.72316470300013 ], [ -124.513804510999989, 49.723089323000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.983900487595877", "sL_AssetLoss": "2147.27", "sL_BldgLoss": "2112.7", "sL_StrLoss": "1899.6", "sL_NStrLoss": "213.1", "sL_ContLoss": "34.57", "geom_point": "0101000020E61000003B577304191C5FC0AD23FDAC68D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.436317563999964, 49.696668864000046 ], [ -124.44185851899999, 49.69674818500004 ], [ -124.441736532000021, 49.700344992000055 ], [ -124.4361951449999, 49.700265666000114 ], [ -124.436317563999964, 49.696668864000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.983849779769724", "sL_AssetLoss": "2588.2", "sL_BldgLoss": "2546.4", "sL_StrLoss": "2330", "sL_NStrLoss": "216.4", "sL_ContLoss": "41.8", "geom_point": "0101000020E61000003B070930B01B5FC08160E9D7B1D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.42992123, 49.667651530000072 ], [ -124.435458677, 49.667731179000043 ], [ -124.435336265999965, 49.671328127000017 ], [ -124.429798386999963, 49.671248472000102 ], [ -124.42992123, 49.667651530000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.987360125660355", "sL_AssetLoss": "1489.73", "sL_BldgLoss": "1470.9", "sL_StrLoss": "1357", "sL_NStrLoss": "113.9", "sL_ContLoss": "18.83", "geom_point": "0101000020E6100000721638D195215FC017E205CF8CDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.522337967999974, 49.724231942000102 ], [ -124.522452777999945, 49.720664020000072 ], [ -124.522645765999968, 49.720850241000058 ], [ -124.522831660999941, 49.721027695000082 ], [ -124.522974296, 49.721151739000064 ], [ -124.523215957999952, 49.721337462000129 ], [ -124.523343590999929, 49.72142573800015 ], [ -124.523667904, 49.721592367000056 ], [ -124.523864056999969, 49.721652754000047 ], [ -124.524060457999937, 49.721722131 ], [ -124.524395536999975, 49.721789691000019 ], [ -124.524687356999934, 49.721803838000021 ], [ -124.524896210999941, 49.721828058 ], [ -124.525146407999912, 49.721842754000086 ], [ -124.525314240999975, 49.72188552000005 ], [ -124.525482953999955, 49.721955257000076 ], [ -124.525721795999928, 49.722051079000039 ], [ -124.526060848999975, 49.72224449000003 ], [ -124.526357153999925, 49.722402489000089 ], [ -124.526764151999942, 49.72255003500004 ], [ -124.527338990999951, 49.72274034 ], [ -124.527916080999944, 49.72300260100009 ], [ -124.527924101999986, 49.723005859000075 ], [ -124.527882392000024, 49.724306888000122 ], [ -124.522337967999974, 49.724231942000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9956667", "BldgCostT": "6866667", "sL_LossRatio": "0.955292702485966", "sL_AssetLoss": "13966.4", "sL_BldgLoss": "13342", "sL_StrLoss": "11039", "sL_NStrLoss": "2303", "sL_ContLoss": "624.4", "geom_point": "0101000020E61000004E7B08B277085FC08F6CCFA850BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.126880292999886, 49.499626222000096 ], [ -124.126918200999953, 49.498692173000066 ], [ -124.126695876999989, 49.498688336000043 ], [ -124.126682695999961, 49.498490914000101 ], [ -124.12697921499992, 49.498227394000075 ], [ -124.126751921, 49.497959704 ], [ -124.125896579999946, 49.497374295000036 ], [ -124.12605809199998, 49.497202010000116 ], [ -124.126051802999925, 49.496922795000039 ], [ -124.127213407999989, 49.496992606000084 ], [ -124.12830121399999, 49.497476790000043 ], [ -124.128286402999919, 49.497387102000069 ], [ -124.127305685999914, 49.496766197000056 ], [ -124.125905113999963, 49.495961495000124 ], [ -124.124930030999948, 49.495560178000069 ], [ -124.124950423999962, 49.495058210000067 ], [ -124.12906622099996, 49.495129245 ], [ -124.129175128999975, 49.492442231000076 ], [ -124.129236901999931, 49.492483611000054 ], [ -124.129830396999964, 49.492504887000145 ], [ -124.13006788099996, 49.492628800000034 ], [ -124.130270193999962, 49.493023298000068 ], [ -124.130678013999955, 49.49334240200006 ], [ -124.130954679999945, 49.493914899000103 ], [ -124.1312671109999, 49.493686989000054 ], [ -124.131547108999953, 49.49331669900004 ], [ -124.131538501999941, 49.492920798000071 ], [ -124.131283817999929, 49.492590397000114 ], [ -124.131261518999978, 49.492284200000036 ], [ -124.131626909999952, 49.491966589000079 ], [ -124.132358105999941, 49.491932401000049 ], [ -124.132726304999963, 49.491694596000045 ], [ -124.132475832999916, 49.491597132000066 ], [ -124.133910775999979, 49.491621818000091 ], [ -124.133950920999922, 49.490628699000119 ], [ -124.134461613999974, 49.490877090000097 ], [ -124.134650887999953, 49.490730407000065 ], [ -124.134336798999954, 49.490311602000084 ], [ -124.134226989999945, 49.489682114000125 ], [ -124.134240978999983, 49.489669338000105 ], [ -124.135258087999887, 49.489686822000088 ], [ -124.135256517999949, 49.490103701000088 ], [ -124.135536976999987, 49.490209097000026 ], [ -124.135951479999932, 49.49020479500011 ], [ -124.136470604999943, 49.490613611000121 ], [ -124.136557793999913, 49.490190607000059 ], [ -124.136049596999953, 49.489709198000092 ], [ -124.136046652999966, 49.489700371000048 ], [ -124.139505416999924, 49.489759729000056 ], [ -124.139360416999978, 49.493357236000058 ], [ -124.134661113999954, 49.493276561000052 ], [ -124.13458203299993, 49.495233349000102 ], [ -124.130466219999931, 49.495162523000019 ], [ -124.130428756999947, 49.49608743200011 ], [ -124.132542570999959, 49.496123827000091 ], [ -124.132397008999959, 49.499721291000036 ], [ -124.126880292999886, 49.499626222000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.986889254247291", "sL_AssetLoss": "474.42", "sL_BldgLoss": "468.2", "sL_StrLoss": "426", "sL_NStrLoss": "42.2", "sL_ContLoss": "6.22", "geom_point": "0101000020E6100000902CE43A9B225FC09A04148F30DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.538936231999969, 49.728644161000055 ], [ -124.538997426999941, 49.726721043000047 ], [ -124.539216902999897, 49.726806718000049 ], [ -124.539612604999974, 49.726970118000047 ], [ -124.539766364999977, 49.727032926000028 ], [ -124.539888958999967, 49.727081312000031 ], [ -124.540247041, 49.727237916000064 ], [ -124.540868426999936, 49.727478543000124 ], [ -124.541047995999961, 49.727563498000052 ], [ -124.541548533999972, 49.727750191000091 ], [ -124.542094249999963, 49.727988827000104 ], [ -124.54264792299989, 49.728159336000047 ], [ -124.542953859999969, 49.728283990000065 ], [ -124.543224021999961, 49.728385527000057 ], [ -124.543462082999895, 49.728454321000136 ], [ -124.54385272799999, 49.728521075000117 ], [ -124.544178901999928, 49.728590084000153 ], [ -124.544484252999951, 49.72862244600001 ], [ -124.54448121399993, 49.728718263000104 ], [ -124.538936231999969, 49.728644161000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.978540519359039", "sL_AssetLoss": "2373.31", "sL_BldgLoss": "2322.38", "sL_StrLoss": "2027.88", "sL_NStrLoss": "294.5", "sL_ContLoss": "50.93", "geom_point": "0101000020E6100000201B7196CC225FC0086E49B39EDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.54102153599996, 49.729570253000141 ], [ -124.546566634999976, 49.72964425 ], [ -124.546452761999916, 49.733241004000057 ], [ -124.540907229999945, 49.733167002000094 ], [ -124.54102153599996, 49.729570253000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.980006297229219", "sL_AssetLoss": "635.2", "sL_BldgLoss": "622.5", "sL_StrLoss": "548", "sL_NStrLoss": "74.5", "sL_ContLoss": "12.7", "geom_point": "0101000020E61000005BA0F6BEE5155FC08183CD6BB2CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.34017863099993, 49.607242331000052 ], [ -124.340156440999962, 49.606433033000066 ], [ -124.343062201999928, 49.606399350000025 ], [ -124.343069612999926, 49.606669117000081 ], [ -124.343899833999927, 49.606659479000015 ], [ -124.343929501000019, 49.607738543000103 ], [ -124.342684143999975, 49.60775299500007 ], [ -124.342676733999966, 49.607483230000099 ], [ -124.341016262999986, 49.607502481000076 ], [ -124.341008861999981, 49.607232715000102 ], [ -124.34017863099993, 49.607242331000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93769500", "BldgCostT": "62985000", "sL_LossRatio": "0.94284528709958", "sL_AssetLoss": "87480.1", "sL_BldgLoss": "82480.2", "sL_StrLoss": "70727.2", "sL_NStrLoss": "11753", "sL_ContLoss": "4999.9", "geom_point": "0101000020E6100000C02629B8F1265FC05B251600FCF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.620138172999958, 49.904459889000123 ], [ -124.620153525999953, 49.903951077000045 ], [ -124.619800979999965, 49.903946637000033 ], [ -124.616574379999946, 49.903905945000091 ], [ -124.616586547999972, 49.903503760000099 ], [ -124.615910980999956, 49.903495229000029 ], [ -124.615981416999944, 49.901168040000066 ], [ -124.616019815999891, 49.899899254000012 ], [ -124.616779038999951, 49.899908842000059 ], [ -124.6168205099999, 49.898537706000084 ], [ -124.614247685999928, 49.898505194000045 ], [ -124.614247490999944, 49.898511595000045 ], [ -124.613917368, 49.898507419000033 ], [ -124.61395964399992, 49.899774500000028 ], [ -124.613378199999957, 49.899782594000023 ], [ -124.613001383999958, 49.899787836000108 ], [ -124.612463658999943, 49.899795316000102 ], [ -124.612447825999936, 49.900317136000055 ], [ -124.61222399799999, 49.900314301000044 ], [ -124.612188884999938, 49.901471339000075 ], [ -124.606622852999962, 49.901400693 ], [ -124.606624264999965, 49.901354318000053 ], [ -124.605023693999911, 49.90133395100009 ], [ -124.60502539, 49.901278353000045 ], [ -124.604380172999981, 49.901270135000111 ], [ -124.604380391999911, 49.901263001000139 ], [ -124.602575006, 49.901239989000018 ], [ -124.602577548999946, 49.901156775000025 ], [ -124.600725840999957, 49.901133141000059 ], [ -124.60075024799994, 49.900335493000036 ], [ -124.599499445999939, 49.900319511000077 ], [ -124.599501982999968, 49.900236633000084 ], [ -124.598787123999955, 49.900227493000067 ], [ -124.598800279999978, 49.89979809800009 ], [ -124.597186989999955, 49.899777452000116 ], [ -124.597204023999979, 49.899222107000078 ], [ -124.597098120999945, 49.899220751000023 ], [ -124.597156117999958, 49.897330050000051 ], [ -124.597208424999934, 49.89562477400009 ], [ -124.598253134999965, 49.895638147000035 ], [ -124.598263100999972, 49.895313 ], [ -124.598699580999948, 49.895318584000037 ], [ -124.598734749999949, 49.894170709000029 ], [ -124.599024934999974, 49.894174421000038 ], [ -124.599070248999979, 49.892695031000102 ], [ -124.598686406999917, 49.892700326000046 ], [ -124.598677495999937, 49.892430604000033 ], [ -124.598259986999935, 49.892436360000083 ], [ -124.598251076999972, 49.892166640000021 ], [ -124.597833570999967, 49.892172395000024 ], [ -124.597824663999987, 49.891902672000086 ], [ -124.597407159999975, 49.891908426000064 ], [ -124.597389350999947, 49.891368983000092 ], [ -124.596971849999974, 49.891374734000081 ], [ -124.596962947999927, 49.891105013000136 ], [ -124.59654545099994, 49.891110764000089 ], [ -124.59653160799995, 49.890691236000045 ], [ -124.597364087999935, 49.890765110000054 ], [ -124.599612003999965, 49.891391789000046 ], [ -124.600531980999932, 49.891881698000077 ], [ -124.60132941099998, 49.892843108000129 ], [ -124.601941809999957, 49.893266099000122 ], [ -124.602188139999939, 49.893372986000067 ], [ -124.602565304999985, 49.893536601000079 ], [ -124.603491186, 49.893765892000083 ], [ -124.605159989999933, 49.894562092000101 ], [ -124.605844395999938, 49.894597700000084 ], [ -124.605250890000022, 49.894794195000088 ], [ -124.605204697999952, 49.895056309000097 ], [ -124.605306584999951, 49.895161690000116 ], [ -124.605752090999928, 49.89521861 ], [ -124.605997200999951, 49.894999303000091 ], [ -124.606135003999938, 49.894997904000057 ], [ -124.606362793999963, 49.895120387000098 ], [ -124.606302501999934, 49.895400892000069 ], [ -124.606449503, 49.895614603000055 ], [ -124.606816502999934, 49.895771211000074 ], [ -124.607699194999952, 49.895956394000102 ], [ -124.609305715999966, 49.896114497000092 ], [ -124.611718082999971, 49.896215602000076 ], [ -124.612192744999973, 49.896202324000036 ], [ -124.61303957599992, 49.89617859700008 ], [ -124.613578805999964, 49.896081690000038 ], [ -124.614158892999981, 49.895902300000053 ], [ -124.614333697999939, 49.895719993000036 ], [ -124.614868401999971, 49.895487796000083 ], [ -124.615833692999942, 49.895214399000039 ], [ -124.616070320999967, 49.895180834000101 ], [ -124.615344589999935, 49.89593781000012 ], [ -124.615508284999947, 49.895914615000052 ], [ -124.616936116999966, 49.895712207000059 ], [ -124.617355517999954, 49.895729821000039 ], [ -124.617426792999979, 49.89573279200004 ], [ -124.618550875999944, 49.895932192000011 ], [ -124.618703900999947, 49.895982692000139 ], [ -124.618797794999978, 49.896052201000018 ], [ -124.619555689999913, 49.897829020000088 ], [ -124.620408320999942, 49.899989824000102 ], [ -124.62061599799992, 49.90051608800006 ], [ -124.619147100999911, 49.900901868000112 ], [ -124.623940445, 49.905115282000089 ], [ -124.620540681999955, 49.905072533000101 ], [ -124.620119845999938, 49.905067234000114 ], [ -124.620138172999958, 49.904459889000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24091751", "BldgCostT": "16615001", "sL_LossRatio": "0.982478961673183", "sL_AssetLoss": "19264.84", "sL_BldgLoss": "18927.3", "sL_StrLoss": "16887.3", "sL_NStrLoss": "2040", "sL_ContLoss": "337.54", "geom_point": "0101000020E6100000C0ACB3CEF6285FC0BD61154E56F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.637421935999981, 49.920103627000131 ], [ -124.63749459499999, 49.917666033000046 ], [ -124.639227865, 49.917687566000104 ], [ -124.639229450999949, 49.917634263000089 ], [ -124.63878028499991, 49.917628686000093 ], [ -124.638785691999914, 49.917447111000065 ], [ -124.638210975999968, 49.917439972000075 ], [ -124.638226287999899, 49.916925964 ], [ -124.637759290999938, 49.916920161000121 ], [ -124.637770838999984, 49.916532623000087 ], [ -124.637201693999941, 49.91652554800001 ], [ -124.637215925999939, 49.916048163 ], [ -124.636731404999964, 49.916042137000062 ], [ -124.636746938999977, 49.915521220000045 ], [ -124.635910905999978, 49.915510817000069 ], [ -124.635923836999908, 49.915077487000062 ], [ -124.635720471999917, 49.915074955000101 ], [ -124.635751145999947, 49.914453246000051 ], [ -124.635477966999957, 49.914453577000096 ], [ -124.635547775999953, 49.912114634000069 ], [ -124.635563904999941, 49.911574210000069 ], [ -124.636362109999965, 49.911817809000055 ], [ -124.63725738, 49.912327700000091 ], [ -124.638259995999974, 49.913132295000068 ], [ -124.639239212999939, 49.913684898000085 ], [ -124.640173285999964, 49.914489594000059 ], [ -124.641211998999921, 49.915140506000029 ], [ -124.641474580999954, 49.915523601000089 ], [ -124.641800803999928, 49.915644696000129 ], [ -124.642655992999934, 49.915866808000068 ], [ -124.644453384, 49.915868202000112 ], [ -124.64512316199999, 49.91581340600009 ], [ -124.64508757599998, 49.916088383000037 ], [ -124.645027144000011, 49.916673066000072 ], [ -124.644857781999974, 49.91775734400008 ], [ -124.644858529999979, 49.917792560000116 ], [ -124.64486220000002, 49.917968249000069 ], [ -124.644891200999922, 49.919353989000108 ], [ -124.644843945999952, 49.919450337000093 ], [ -124.644824498, 49.919489885000075 ], [ -124.644692691999978, 49.919567413000102 ], [ -124.644479512999936, 49.919619597000057 ], [ -124.642099878999886, 49.919919557000071 ], [ -124.640869020999915, 49.920074680000027 ], [ -124.637421935999981, 49.920103627000131 ] ], [ [ -124.64358183399996, 49.91840671000007 ], [ -124.643589297999981, 49.918155162000055 ], [ -124.643050383999949, 49.918148491000082 ], [ -124.643042915999956, 49.918400039000112 ], [ -124.64358183399996, 49.91840671000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14786333", "BldgCostT": "8723333", "sL_LossRatio": "0.945727927829481", "sL_AssetLoss": "6588.84", "sL_BldgLoss": "6231.25", "sL_StrLoss": "4695.55", "sL_NStrLoss": "1535.7", "sL_ContLoss": "357.59", "geom_point": "0101000020E6100000CD14632EA3275FC04DDC8541F4F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.616429935999975, 49.913163994000108 ], [ -124.616440427999976, 49.912817297000089 ], [ -124.622007865999933, 49.912887443000024 ], [ -124.621998951999913, 49.913183131000018 ], [ -124.622892409999935, 49.913194362000027 ], [ -124.623945810999956, 49.91320759400007 ], [ -124.623907901999956, 49.914466974000014 ], [ -124.621090679999909, 49.91447005200007 ], [ -124.612191814999989, 49.914079488000048 ], [ -124.612200939999965, 49.91377889400006 ], [ -124.615803038999971, 49.913824449000046 ], [ -124.615805898999952, 49.913729983000067 ], [ -124.616142954999958, 49.913734239000036 ], [ -124.616160317999942, 49.913160590000089 ], [ -124.616429935999975, 49.913163994000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544334", "BldgCostT": "4513334", "sL_LossRatio": "0.978825383631368", "sL_AssetLoss": "5558.07", "sL_BldgLoss": "5440.38", "sL_StrLoss": "4974.98", "sL_NStrLoss": "465.4", "sL_ContLoss": "117.69", "geom_point": "0101000020E610000043E1504B35285FC0A8F565067DF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.625841188999985, 49.909075782000095 ], [ -124.62585513499999, 49.908611746000076 ], [ -124.626158593999918, 49.908678789000128 ], [ -124.626590614999898, 49.908690200000173 ], [ -124.627371986999947, 49.908319905000134 ], [ -124.627568114, 49.908317104000069 ], [ -124.628446704999959, 49.909231408000075 ], [ -124.6289434, 49.909466397000052 ], [ -124.630395784999976, 49.909598893000023 ], [ -124.631388960999971, 49.909787646000076 ], [ -124.631376488999962, 49.91020427700002 ], [ -124.63134773199999, 49.911164938000113 ], [ -124.626401779000034, 49.911103055000083 ], [ -124.625780489999954, 49.911095265000057 ], [ -124.625841188999985, 49.909075782000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.982399868410231", "sL_AssetLoss": "1215.9", "sL_BldgLoss": "1194.5", "sL_StrLoss": "1109", "sL_NStrLoss": "85.5", "sL_ContLoss": "21.4", "geom_point": "0101000020E6100000CE44227ECF275FC03479D2DB82F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.621438061999925, 49.911003610000051 ], [ -124.621419970999952, 49.910464175000058 ], [ -124.621002311999945, 49.910470015000058 ], [ -124.620975184999963, 49.909660862000152 ], [ -124.623063445999961, 49.90963164700009 ], [ -124.62309060699999, 49.910440799000064 ], [ -124.622672947999931, 49.910446645000057 ], [ -124.62269105199999, 49.910986080000065 ], [ -124.621438061999925, 49.911003610000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42796750", "BldgCostT": "29515000", "sL_LossRatio": "0.988049297474612", "sL_AssetLoss": "30240.9", "sL_BldgLoss": "29879.5", "sL_StrLoss": "27822.5", "sL_NStrLoss": "2057", "sL_ContLoss": "361.4", "geom_point": "0101000020E6100000731F8845EF275FC091FEEAB37BF34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.623940445, 49.905115282000089 ], [ -124.619147100999911, 49.900901868000112 ], [ -124.62061599799992, 49.90051608800006 ], [ -124.620408320999942, 49.899989824000102 ], [ -124.619555689999913, 49.897829020000088 ], [ -124.618797794999978, 49.896052201000018 ], [ -124.618703900999947, 49.895982692000139 ], [ -124.618550875999944, 49.895932192000011 ], [ -124.617426792999979, 49.89573279200004 ], [ -124.617355517999954, 49.895729821000039 ], [ -124.616936116999966, 49.895712207000059 ], [ -124.615508284999947, 49.895914615000052 ], [ -124.615344589999935, 49.89593781000012 ], [ -124.616070320999967, 49.895180834000101 ], [ -124.616817507999912, 49.895074793000056 ], [ -124.616996203999975, 49.894982205000076 ], [ -124.617714306999943, 49.895224299000063 ], [ -124.618872499999966, 49.895296999000024 ], [ -124.619407391999985, 49.895487803000023 ], [ -124.619869915999956, 49.896011899000079 ], [ -124.620191910999949, 49.897275205000014 ], [ -124.621162688999974, 49.899646508000039 ], [ -124.62188589299997, 49.900904112000028 ], [ -124.622391996999951, 49.901463813000113 ], [ -124.62352068499996, 49.90189820600002 ], [ -124.624244300999962, 49.902274212000108 ], [ -124.624750000999953, 49.90241940300011 ], [ -124.625940382999943, 49.902583196000087 ], [ -124.626843621999953, 49.902526305000059 ], [ -124.627703107999949, 49.90282819600008 ], [ -124.628172889999945, 49.903118692000049 ], [ -124.62843868600001, 49.903177102000015 ], [ -124.629222826000017, 49.903742503000075 ], [ -124.629518716999911, 49.903836498000075 ], [ -124.630923997, 49.904618402000096 ], [ -124.63131299699991, 49.905008692000109 ], [ -124.631195805999965, 49.905199485000026 ], [ -124.629957815999887, 49.90528779300012 ], [ -124.628903720999958, 49.905833304000062 ], [ -124.62808330499999, 49.905715582000063 ], [ -124.62804989599999, 49.9057107940001 ], [ -124.626798292, 49.905341908000032 ], [ -124.62525042199999, 49.905355537000062 ], [ -124.625257147999918, 49.905131810000064 ], [ -124.623940445, 49.905115282000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.957872499067976", "sL_AssetLoss": "804.7", "sL_BldgLoss": "770.8", "sL_StrLoss": "681", "sL_NStrLoss": "89.8", "sL_ContLoss": "33.9", "geom_point": "0101000020E610000018F1B635160D5FC0C2D0558090DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.203789907999976, 49.715581693000047 ], [ -124.203373695999986, 49.715540412000109 ], [ -124.203100399000022, 49.715697014000085 ], [ -124.202821483999955, 49.715654304000076 ], [ -124.202510814, 49.715477696000079 ], [ -124.202439908999963, 49.715387990000089 ], [ -124.202543419999969, 49.715063298000047 ], [ -124.203215808999985, 49.71474138400005 ], [ -124.203610188999917, 49.714440890000098 ], [ -124.203872915999952, 49.714411007000116 ], [ -124.204052910999962, 49.714445193000138 ], [ -124.20430009599994, 49.714892401000036 ], [ -124.204577117999975, 49.714881001000037 ], [ -124.204974411999956, 49.714624591000081 ], [ -124.20555020799992, 49.714906584000062 ], [ -124.206146313999938, 49.714945096000058 ], [ -124.20624578899999, 49.715034799000072 ], [ -124.206059788999966, 49.715377990000036 ], [ -124.206302796999978, 49.715672786000042 ], [ -124.20629497699997, 49.715843694000085 ], [ -124.206005091999927, 49.7159449070001 ], [ -124.205685494999926, 49.715957687000042 ], [ -124.205412886999937, 49.716149907000037 ], [ -124.205221196999943, 49.716187001000065 ], [ -124.204319403999975, 49.71619688800007 ], [ -124.20425819299993, 49.715990416000118 ], [ -124.203952076999968, 49.715912096000061 ], [ -124.203794906999946, 49.715769699000084 ], [ -124.203789907999976, 49.715581693000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.985521254958819", "sL_AssetLoss": "496.59", "sL_BldgLoss": "489.4", "sL_StrLoss": "443", "sL_NStrLoss": "46.4", "sL_ContLoss": "7.19", "geom_point": "0101000020E610000025D5D237040C5FC0C7971616D8D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.188766811999983, 49.700795507000088 ], [ -124.189011391999927, 49.700780479000109 ], [ -124.188946923999978, 49.702415755000054 ], [ -124.188641440999973, 49.702410681000039 ], [ -124.188634920999959, 49.702576062000077 ], [ -124.185835126999933, 49.702529519000123 ], [ -124.185879117999932, 49.702336494000086 ], [ -124.186282402999964, 49.701900704000089 ], [ -124.187397306999983, 49.701484906000076 ], [ -124.188766811999983, 49.700795507000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.958101907751751", "sL_AssetLoss": "1656.4", "sL_BldgLoss": "1587", "sL_StrLoss": "1400", "sL_NStrLoss": "187", "sL_ContLoss": "69.4", "geom_point": "0101000020E6100000F1EA24743AFA5EC01E09EA4ABAE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.907275275999893, 49.75662834500006 ], [ -123.907380088999957, 49.754330511000049 ], [ -123.908235396999942, 49.754452603000061 ], [ -123.909845588999971, 49.754475406000068 ], [ -123.910208821999916, 49.754553805000064 ], [ -123.911860713999957, 49.755270098000096 ], [ -123.912877065999922, 49.755532964000068 ], [ -123.912822399999982, 49.756734534000024 ], [ -123.907275275999893, 49.75662834500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.98231050069541", "sL_AssetLoss": "2300.8", "sL_BldgLoss": "2260.1", "sL_StrLoss": "2094", "sL_NStrLoss": "166.1", "sL_ContLoss": "40.7", "geom_point": "0101000020E61000003D8D079DC8045FC0C5D7C7D8C3DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.071823355, 49.711256054000032 ], [ -124.071974328999943, 49.707659765000109 ], [ -124.072343846999971, 49.707666297000095 ], [ -124.072430330000017, 49.705605571000085 ], [ -124.074689207999967, 49.705645475000054 ], [ -124.075342391999953, 49.705917001000032 ], [ -124.075356708999962, 49.706536501000102 ], [ -124.075091486999909, 49.707151808000098 ], [ -124.075095108, 49.707312707000078 ], [ -124.075291795999959, 49.707409613000046 ], [ -124.075317297999931, 49.70795929300003 ], [ -124.074699910999968, 49.709457596000021 ], [ -124.074796290999984, 49.709483196000114 ], [ -124.074957615999963, 49.709842093000184 ], [ -124.074946088000033, 49.710534309000117 ], [ -124.075057698999984, 49.710596991000088 ], [ -124.075519994999979, 49.70952169100007 ], [ -124.075776404999928, 49.709258196000071 ], [ -124.076290297999932, 49.709289497000036 ], [ -124.077223410999977, 49.709478987000082 ], [ -124.077375801999963, 49.709396311000035 ], [ -124.077356394999924, 49.70915419500011 ], [ -124.077661488999979, 49.709168489000049 ], [ -124.07816731399997, 49.709488892000117 ], [ -124.078710300999944, 49.709564385000057 ], [ -124.079449081999968, 49.710384701000038 ], [ -124.080333934999928, 49.710983739000014 ], [ -124.080326872999962, 49.711152718000065 ], [ -124.077375962999895, 49.711100739000145 ], [ -124.077365364999977, 49.711353891000051 ], [ -124.071823355, 49.711256054000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.965491466301233", "sL_AssetLoss": "802.7", "sL_BldgLoss": "775", "sL_StrLoss": "648", "sL_NStrLoss": "127", "sL_ContLoss": "27.7", "geom_point": "0101000020E61000009612F6AB080C5FC0384CD11D06DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.184909722999976, 49.719991282000144 ], [ -124.184966862999957, 49.718545695000081 ], [ -124.184898477000019, 49.718544557000016 ], [ -124.184966983999956, 49.718509903000026 ], [ -124.185244602999916, 49.718435789000068 ], [ -124.1859402799999, 49.718526994000079 ], [ -124.186439116999907, 49.718512694000054 ], [ -124.186891011999961, 49.718319010000116 ], [ -124.187183211999937, 49.718316192000067 ], [ -124.187867980999982, 49.718004300000125 ], [ -124.188091701999909, 49.718055485000114 ], [ -124.188377799999955, 49.718430108000064 ], [ -124.188734795999935, 49.717698101000074 ], [ -124.189175697999985, 49.717504391000048 ], [ -124.189452702, 49.717492988000075 ], [ -124.190521312999948, 49.717517207000107 ], [ -124.190553331999951, 49.717537798000052 ], [ -124.190453020999925, 49.72008337199999 ], [ -124.189116379999959, 49.720061192000109 ], [ -124.188783014999913, 49.719630701 ], [ -124.188389, 49.718816104000013 ], [ -124.187935904999932, 49.719073885000064 ], [ -124.187741911999936, 49.719587989000082 ], [ -124.187303516000014, 49.719879993000134 ], [ -124.187252647999955, 49.720030239000046 ], [ -124.184909722999976, 49.719991282000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.957412336535123", "sL_AssetLoss": "864.1", "sL_BldgLoss": "827.3", "sL_StrLoss": "728", "sL_NStrLoss": "99.3", "sL_ContLoss": "36.8", "geom_point": "0101000020E6100000BA313D61890B5FC0B47B2C5C5ADC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.181938089999946, 49.722328188000034 ], [ -124.181839901, 49.722248386000096 ], [ -124.181371103999979, 49.722333911000099 ], [ -124.18123081, 49.722299703000061 ], [ -124.180796194999957, 49.722078889000109 ], [ -124.180888398999954, 49.72195220600004 ], [ -124.180735004999946, 49.721872401000098 ], [ -124.180318390999929, 49.721885193000013 ], [ -124.180274391999959, 49.72174140000002 ], [ -124.18005090599999, 49.721681587000063 ], [ -124.179841897999964, 49.721701488000079 ], [ -124.179544490999945, 49.721956397000064 ], [ -124.179730298999957, 49.722205699000043 ], [ -124.179568489999951, 49.722433597000098 ], [ -124.178930388999987, 49.722395103000032 ], [ -124.178677416999946, 49.722271193000033 ], [ -124.178438514999968, 49.721599008000041 ], [ -124.178518901999894, 49.721436587000071 ], [ -124.178901615999948, 49.721252899000071 ], [ -124.17891340199999, 49.721107604000039 ], [ -124.178506717999952, 49.720995107000086 ], [ -124.17880500399994, 49.72062340300009 ], [ -124.179428411999979, 49.720590598000058 ], [ -124.179849805999964, 49.720811405000049 ], [ -124.180629200999959, 49.72090251 ], [ -124.181188491999976, 49.72059059 ], [ -124.181442306999926, 49.720713095000093 ], [ -124.181702689999938, 49.721160306000044 ], [ -124.181985800999968, 49.72135540700004 ], [ -124.182043905999976, 49.722110294000075 ], [ -124.18228481599999, 49.722252702000084 ], [ -124.182260182000036, 49.722450696000088 ], [ -124.181764814999951, 49.722581696000134 ], [ -124.181734895999938, 49.722464894000026 ], [ -124.181913207999969, 49.722436408000071 ], [ -124.181938089999946, 49.722328188000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.984794439575223", "sL_AssetLoss": "981.22", "sL_BldgLoss": "966.3", "sL_StrLoss": "875", "sL_NStrLoss": "91.3", "sL_ContLoss": "14.92", "geom_point": "0101000020E6100000A8C64B37C90B5FC058097140A6DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.182845292999914, 49.716805111000063 ], [ -124.18212531099999, 49.716253907000109 ], [ -124.180773634999966, 49.715793950000055 ], [ -124.180809930999914, 49.714877676000043 ], [ -124.186352604999911, 49.714969975000074 ], [ -124.18629551399999, 49.716415570000088 ], [ -124.189248600999974, 49.7164646310001 ], [ -124.189261176999963, 49.716514498000073 ], [ -124.18905648599997, 49.716686894000034 ], [ -124.188862402999959, 49.716662692000028 ], [ -124.188519791999951, 49.716792311000056 ], [ -124.188047179999955, 49.716777997000044 ], [ -124.186872588999961, 49.716951795000057 ], [ -124.184583409999945, 49.716940396000091 ], [ -124.184049309999978, 49.717242292000059 ], [ -124.183554708000017, 49.717408896000066 ], [ -124.182958202999941, 49.717424602000065 ], [ -124.182136392999936, 49.717289296000104 ], [ -124.182035790999976, 49.71718109600004 ], [ -124.182102815999912, 49.717064295000071 ], [ -124.182907182999941, 49.717047192000074 ], [ -124.182845292999914, 49.716805111000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.983626533609538", "sL_AssetLoss": "1559.23", "sL_BldgLoss": "1533.7", "sL_StrLoss": "1422", "sL_NStrLoss": "111.7", "sL_ContLoss": "25.53", "geom_point": "0101000020E610000079965ACE290A5FC07B5B9F283FD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.156104484999958, 49.67976987300009 ], [ -124.161642875, 49.679863432000026 ], [ -124.161499008999982, 49.683459983000034 ], [ -124.155960183999937, 49.683366418000091 ], [ -124.156104484999958, 49.67976987300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.979462604826288", "sL_AssetLoss": "584.3", "sL_BldgLoss": "572.3", "sL_StrLoss": "533", "sL_NStrLoss": "39.3", "sL_ContLoss": "12", "geom_point": "0101000020E610000023FA52CBD80C5FC02DCF2091F8D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.198051313999912, 49.704005163000019 ], [ -124.19813324299993, 49.701916505000014 ], [ -124.198521492999959, 49.702179903000086 ], [ -124.198787888999945, 49.702825004000069 ], [ -124.199290501999897, 49.703008788000055 ], [ -124.199842919, 49.702886298000045 ], [ -124.2002207, 49.70243198700004 ], [ -124.200770315999989, 49.702228293000047 ], [ -124.20115879399999, 49.701721310000053 ], [ -124.201826207999929, 49.701182892000141 ], [ -124.202284805999938, 49.701222783000077 ], [ -124.203166615999962, 49.701529001000111 ], [ -124.203294884999977, 49.701679991000063 ], [ -124.203016406999964, 49.702195505000105 ], [ -124.202309007999972, 49.702787984000111 ], [ -124.202260079999945, 49.704074627000054 ], [ -124.198051313999912, 49.704005163000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.986926234272582", "sL_AssetLoss": "2236.54", "sL_BldgLoss": "2207.3", "sL_StrLoss": "2071", "sL_NStrLoss": "136.3", "sL_ContLoss": "29.24", "geom_point": "0101000020E61000004479F6C7810B5FC00DEE186808DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.17536425, 49.744354873000134 ], [ -124.175487462999968, 49.741255670000022 ], [ -124.175931480999949, 49.74131430100006 ], [ -124.176156880999912, 49.741428193000075 ], [ -124.176823192999919, 49.741431103000096 ], [ -124.177394219999925, 49.741533603000065 ], [ -124.17750361, 49.741423996000023 ], [ -124.177500290999944, 49.741253100000037 ], [ -124.177275585999951, 49.741137692000031 ], [ -124.17710909499999, 49.740785378000083 ], [ -124.178139127999927, 49.740802576000064 ], [ -124.178203330999949, 49.739185111000054 ], [ -124.178411519999912, 49.73933750300003 ], [ -124.179037391999927, 49.739411616000041 ], [ -124.179135608999971, 49.739499891000015 ], [ -124.179111908999971, 49.739618093000097 ], [ -124.178672091999886, 49.739793295000013 ], [ -124.178661404999929, 49.739928500000133 ], [ -124.179140702000012, 49.740247588000088 ], [ -124.179871885999958, 49.740680497000071 ], [ -124.180277784999959, 49.740811603000068 ], [ -124.180719993999929, 49.740734598000039 ], [ -124.181637410999926, 49.740778806000044 ], [ -124.181822902, 49.74098389800011 ], [ -124.181833677999919, 49.741371299000093 ], [ -124.181959395999968, 49.74144110200011 ], [ -124.182319412999931, 49.741365590000143 ], [ -124.183718921999954, 49.741324306000088 ], [ -124.183251988999984, 49.740969594000063 ], [ -124.18324949, 49.740834307000085 ], [ -124.183371105999953, 49.740743183000042 ], [ -124.183130605999963, 49.740566584000049 ], [ -124.183010911999986, 49.740189208000061 ], [ -124.183347988999955, 49.739781801000056 ], [ -124.183721986999956, 49.739742010000057 ], [ -124.184037674999928, 49.73977769400009 ], [ -124.184011218999956, 49.740446369000068 ], [ -124.184222963999986, 49.74044989300004 ], [ -124.184080674999919, 49.744046167000143 ], [ -124.180928458999958, 49.743993679000013 ], [ -124.180910471999965, 49.74444744400008 ], [ -124.17536425, 49.744354873000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177916", "BldgCostT": "2191666", "sL_LossRatio": "0.979971141954102", "sL_AssetLoss": "2910.8", "sL_BldgLoss": "2852.5", "sL_StrLoss": "2605", "sL_NStrLoss": "247.5", "sL_ContLoss": "58.3", "geom_point": "0101000020E6100000C3C0B50B34FE5EC04C8F645EE0DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.969302035999974, 49.712473008000053 ], [ -123.968699290999965, 49.712092414000089 ], [ -123.96840898499994, 49.712103800000129 ], [ -123.968411541999956, 49.712300512000041 ], [ -123.967999889999959, 49.712209174000122 ], [ -123.968545429999921, 49.711710130000078 ], [ -123.968758556999958, 49.711515195000075 ], [ -123.968905789999951, 49.711227304000055 ], [ -123.968953503999941, 49.711025764000091 ], [ -123.968915211, 49.710857655000041 ], [ -123.968799989, 49.710640477000055 ], [ -123.968525330999967, 49.710319980000058 ], [ -123.968388571999967, 49.710160396000092 ], [ -123.968330003999981, 49.710012703000146 ], [ -123.968331695999936, 49.709880503000115 ], [ -123.968417103999968, 49.709517594000104 ], [ -123.968329996999927, 49.709229905000022 ], [ -123.968098013999949, 49.708895303000062 ], [ -123.96788296499993, 49.708734313000029 ], [ -123.967570503, 49.70850040100003 ], [ -123.967483088999984, 49.708405771000116 ], [ -123.967385329999942, 49.708299899000096 ], [ -123.967270091000017, 49.70808358700004 ], [ -123.967208382999956, 49.707855806000076 ], [ -123.967199799999918, 49.707824101000064 ], [ -123.967204943999917, 49.707707672000062 ], [ -123.967209794999931, 49.70759841200001 ], [ -123.967340606, 49.707273300000047 ], [ -123.967374249999963, 49.707229555000076 ], [ -123.969631779999929, 49.707271610000106 ], [ -123.969566960999899, 49.708737859000067 ], [ -123.970551737999969, 49.708756190000059 ], [ -123.97054177399994, 49.708981690000073 ], [ -123.97081024499991, 49.708986686000102 ], [ -123.970822735999931, 49.708703970000045 ], [ -123.971411330999956, 49.70871492100008 ], [ -123.971431437999968, 49.708259684000055 ], [ -123.976972868999937, 49.70836262100002 ], [ -123.976850511999928, 49.711140271000048 ], [ -123.97639021599997, 49.711074108000041 ], [ -123.97510161299999, 49.711049887000108 ], [ -123.975013309999937, 49.710878884000117 ], [ -123.975303100999966, 49.710742206000084 ], [ -123.975801013999927, 49.710648195000054 ], [ -123.975879103999958, 49.710458799 ], [ -123.975363116999915, 49.710309294000126 ], [ -123.97475369499989, 49.710369101000019 ], [ -123.974491889999982, 49.710389013000082 ], [ -123.973198813999943, 49.71163239200007 ], [ -123.973163806999963, 49.711974204000057 ], [ -123.973718063999954, 49.712307220000142 ], [ -123.973338268999953, 49.712563350000089 ], [ -123.969394245999965, 49.71248553000008 ], [ -123.969302035999974, 49.712473008000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8204583", "BldgCostT": "5658333", "sL_LossRatio": "0.945749592612711", "sL_AssetLoss": "14728", "sL_BldgLoss": "13929", "sL_StrLoss": "11580", "sL_NStrLoss": "2349", "sL_ContLoss": "799", "geom_point": "0101000020E6100000EE1E4542C0025FC0803DECA610D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.041652170999939, 49.668203574000096 ], [ -124.041772464999923, 49.665379521000062 ], [ -124.041260992999952, 49.665370327000041 ], [ -124.04125742399998, 49.665454102000062 ], [ -124.040755102999952, 49.665445070000025 ], [ -124.04075430599994, 49.665463815000081 ], [ -124.03997075599996, 49.665449722000098 ], [ -124.039540005999953, 49.665441971000057 ], [ -124.039530750999972, 49.665659038000094 ], [ -124.03952797, 49.665724244000074 ], [ -124.039450342999956, 49.665722848000094 ], [ -124.037992908999982, 49.665696612000033 ], [ -124.037977926999972, 49.666047683000052 ], [ -124.0324414599999, 49.665947839000104 ], [ -124.032588964999988, 49.662500949000012 ], [ -124.032639764999914, 49.662352176000098 ], [ -124.034130311999917, 49.66237908300004 ], [ -124.034138325999933, 49.662191626000059 ], [ -124.034061244999961, 49.662192315000077 ], [ -124.034055526999964, 49.66192252200009 ], [ -124.033224272999959, 49.661929943000047 ], [ -124.033215400999936, 49.661511002000097 ], [ -124.0332550789999, 49.661487998000041 ], [ -124.033416209999956, 49.661446004 ], [ -124.033641608999986, 49.66142209300012 ], [ -124.033939807999914, 49.661444606000053 ], [ -124.034794599999955, 49.661603108000037 ], [ -124.0362776, 49.661806196000015 ], [ -124.036299712999948, 49.66193619700001 ], [ -124.036482500999952, 49.662197700000021 ], [ -124.037588507999928, 49.662666691000027 ], [ -124.037816685999957, 49.66290201500005 ], [ -124.038185800999898, 49.662854690000067 ], [ -124.038535284999938, 49.662779093000061 ], [ -124.039043202999949, 49.662820611000058 ], [ -124.040396883999918, 49.662745991000072 ], [ -124.041075384999957, 49.662684391000035 ], [ -124.04125207599995, 49.662686719000121 ], [ -124.041631903999956, 49.662691699000142 ], [ -124.042011883000029, 49.662614896000058 ], [ -124.042835068999949, 49.662196975000043 ], [ -124.042820314999943, 49.662543590000048 ], [ -124.045960402, 49.662599958000101 ], [ -124.047714608999982, 49.662631408000102 ], [ -124.04773056399992, 49.662255647000116 ], [ -124.053266617999952, 49.662354714000045 ], [ -124.053114329999971, 49.665951209000056 ], [ -124.047630882999925, 49.665853084000069 ], [ -124.04761492599999, 49.666228844000017 ], [ -124.04727728599994, 49.666222793000031 ], [ -124.047188928999972, 49.668302949000072 ], [ -124.041652170999939, 49.668203574000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.988715697418678", "sL_AssetLoss": "2296.11", "sL_BldgLoss": "2270.2", "sL_StrLoss": "2120", "sL_NStrLoss": "150.2", "sL_ContLoss": "25.91", "geom_point": "0101000020E6100000208504EF980A5FC0487301BBDCDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.160050705999964, 49.73126101000004 ], [ -124.16019420799995, 49.727680398000082 ], [ -124.163683963999958, 49.727739187000047 ], [ -124.16375276199993, 49.726019083000054 ], [ -124.165125624999988, 49.726042179000075 ], [ -124.165251385999966, 49.722895212000076 ], [ -124.165325311999965, 49.722896455000082 ], [ -124.165349517, 49.722290712000074 ], [ -124.16730877900001, 49.722323643000067 ], [ -124.167377734999931, 49.720595958000033 ], [ -124.170978759999969, 49.720656392000087 ], [ -124.170697, 49.720975189000107 ], [ -124.170725994999927, 49.721064897000069 ], [ -124.17101720099997, 49.721080594000021 ], [ -124.17109188299996, 49.721232999000073 ], [ -124.171023912999914, 49.721359703000125 ], [ -124.170763400999931, 49.721496393000031 ], [ -124.17068710599996, 49.721704398000064 ], [ -124.170353814999913, 49.721771303000033 ], [ -124.170371609999933, 49.722445005000047 ], [ -124.170200374999951, 49.722879296000045 ], [ -124.169752295999928, 49.723242494000047 ], [ -124.168566588999937, 49.723551589000138 ], [ -124.168445796999904, 49.723715299000084 ], [ -124.168428314999957, 49.724138295000081 ], [ -124.16804591399999, 49.724411806000035 ], [ -124.168159205999984, 49.724545686000091 ], [ -124.168140998999888, 49.724896012000023 ], [ -124.16780831599999, 49.724900302000044 ], [ -124.167588595999959, 49.725009905000022 ], [ -124.167001216999893, 49.724790593000137 ], [ -124.166708905999926, 49.724793491000042 ], [ -124.166435803999931, 49.72500279700003 ], [ -124.167000406999961, 49.725942809000081 ], [ -124.167036209999964, 49.726274593000078 ], [ -124.166824088999959, 49.726736113000094 ], [ -124.166912806999946, 49.726924110000091 ], [ -124.166845408999947, 49.727563596000046 ], [ -124.165905317999929, 49.728318405000103 ], [ -124.165439192999941, 49.728522098000035 ], [ -124.165121905999968, 49.728596103000065 ], [ -124.163867200999945, 49.728429510000105 ], [ -124.163720497999947, 49.728637394000074 ], [ -124.163865784999984, 49.728896608000049 ], [ -124.163414510000038, 49.729162907000045 ], [ -124.163064916999929, 49.729634398 ], [ -124.162064190999942, 49.730119994000134 ], [ -124.161415520999952, 49.730306598000048 ], [ -124.160925023999965, 49.730662602000088 ], [ -124.160333099999946, 49.730911887000083 ], [ -124.160050705999964, 49.73126101000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20295167", "BldgCostT": "13996667", "sL_LossRatio": "0.973735206942478", "sL_AssetLoss": "21518.54", "sL_BldgLoss": "20953.36", "sL_StrLoss": "18581.46", "sL_NStrLoss": "2371.9", "sL_ContLoss": "565.18", "geom_point": "0101000020E610000041427B92C7FE5EC0DF39F7CB65D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.978276049999977, 49.646675688000066 ], [ -123.978408617999975, 49.643659596000077 ], [ -123.97768384199999, 49.643646139000069 ], [ -123.977683392999893, 49.643656330000056 ], [ -123.972149754999961, 49.643553419000092 ], [ -123.97219293399999, 49.642573985000091 ], [ -123.971603594999976, 49.642563008000117 ], [ -123.971628674999963, 49.641994262000033 ], [ -123.970760599999934, 49.641978087000069 ], [ -123.97082471899995, 49.640524561000113 ], [ -123.969909824999931, 49.640507508000049 ], [ -123.969811823999947, 49.642728026000064 ], [ -123.966908066999977, 49.642673849000062 ], [ -123.966617287999924, 49.642299092000094 ], [ -123.966363600999927, 49.641972198000097 ], [ -123.966166814, 49.641350298000106 ], [ -123.966174033999934, 49.641110064000053 ], [ -123.966181495999962, 49.640861916000105 ], [ -123.966205585999958, 49.640679971000097 ], [ -123.966275028999945, 49.640155473000107 ], [ -123.966293464000032, 49.640013006000082 ], [ -123.966384329, 49.639311637000077 ], [ -123.966516049999882, 49.638868676000079 ], [ -123.966696140999957, 49.638521095000094 ], [ -123.967040710999967, 49.638023602000054 ], [ -123.967175966999946, 49.637882412000117 ], [ -123.967215490999962, 49.637841167000119 ], [ -123.967832808999958, 49.637196925000097 ], [ -123.968009745999922, 49.637012242000026 ], [ -123.968037732999974, 49.636983049000101 ], [ -123.968229111999975, 49.636854169000095 ], [ -123.968491432999912, 49.636677476000038 ], [ -123.96920361599993, 49.636318198000076 ], [ -123.969487021999925, 49.63617050400017 ], [ -123.970031431999956, 49.635965464000094 ], [ -123.970158503000022, 49.635917606000064 ], [ -123.971403111999948, 49.635617621000101 ], [ -123.971600511999981, 49.635570061000116 ], [ -123.971669588999987, 49.635553394000041 ], [ -123.971986564999938, 49.635445921000041 ], [ -123.972172719999961, 49.635382800000038 ], [ -123.972681526999963, 49.635270799000075 ], [ -123.972911631999963, 49.635196141000044 ], [ -123.973219413999956, 49.635096286000113 ], [ -123.97365081699995, 49.634888402000065 ], [ -123.973984981999976, 49.63459140500008 ], [ -123.974617514999977, 49.633744704000037 ], [ -123.974961618999927, 49.633475700000126 ], [ -123.975454355999929, 49.633212896000025 ], [ -123.975568177999932, 49.633152188000068 ], [ -123.976330154999943, 49.632666945000061 ], [ -123.977536509999979, 49.632053173000052 ], [ -123.977811316999947, 49.631869922000057 ], [ -123.977901512999949, 49.631809775000114 ], [ -123.978496075999942, 49.631351991000074 ], [ -123.978770356999931, 49.631221205000031 ], [ -123.979135008999918, 49.631112789000063 ], [ -123.979866281999961, 49.630945496000031 ], [ -123.980597962999965, 49.630673809000037 ], [ -123.98154752, 49.63016822800008 ], [ -123.98191598199999, 49.629972047000074 ], [ -123.982319892999939, 49.629820244000058 ], [ -123.982758418999978, 49.629699702000103 ], [ -123.983222984999941, 49.629615619000077 ], [ -123.984051603999944, 49.629500361000098 ], [ -123.985129475999955, 49.629350383000023 ], [ -123.985521543999951, 49.629246947000077 ], [ -123.986967640999978, 49.628715783000054 ], [ -123.987696783999951, 49.628405293000085 ], [ -123.98774485200002, 49.628340691000048 ], [ -123.987845314999944, 49.628205607000069 ], [ -123.98784883799999, 49.628188777000069 ], [ -123.987866008999958, 49.628106818000077 ], [ -123.987877677999961, 49.628051284000065 ], [ -123.987892479999985, 49.627980592000021 ], [ -123.987868791, 49.627794790000067 ], [ -123.987831397999983, 49.627752872000059 ], [ -123.987556099999949, 49.627444285000131 ], [ -123.987078800999896, 49.627124206000083 ], [ -123.986781707999938, 49.626861313000049 ], [ -123.986738754999962, 49.626801474000075 ], [ -123.986586011999961, 49.626588609000052 ], [ -123.98655559099997, 49.626515443000073 ], [ -123.986332445999892, 49.625978410000101 ], [ -123.98626418799995, 49.625814207000083 ], [ -123.985992907999972, 49.625435687000085 ], [ -123.985618108999944, 49.625081397000045 ], [ -123.985358948999945, 49.624909308000056 ], [ -123.985086915999929, 49.62472869000009 ], [ -123.984149402999932, 49.624171384000064 ], [ -123.98364167499993, 49.62385250100003 ], [ -123.983466414999981, 49.623665410000029 ], [ -123.9834486, 49.623646387000065 ], [ -123.983393591999985, 49.623481608000077 ], [ -123.983454101999925, 49.623301006000119 ], [ -123.983537856999988, 49.623207500000106 ], [ -123.983621372999949, 49.623114196000067 ], [ -123.983824696999989, 49.622958690000054 ], [ -123.984012869999958, 49.622857610000075 ], [ -123.984062792999964, 49.62283079900002 ], [ -123.984443479000021, 49.622733493000069 ], [ -123.98612961699996, 49.622603818000101 ], [ -123.986077218999981, 49.623801163000032 ], [ -123.98677223299994, 49.623814021000037 ], [ -123.986828535000015, 49.622527007000095 ], [ -123.987753696999931, 49.622388892000131 ], [ -123.988290623999916, 49.62234405300007 ], [ -123.98835367699999, 49.622338797000111 ], [ -123.989488782999928, 49.622416093000055 ], [ -123.989767994999966, 49.622435090000117 ], [ -123.991169823999954, 49.622406095000031 ], [ -123.992365680999953, 49.622491624000098 ], [ -123.992295938999987, 49.624090220000092 ], [ -123.990676174999948, 49.624060331000059 ], [ -123.990664995999936, 49.624316373000099 ], [ -123.989988410999956, 49.624510593000124 ], [ -123.987707108999942, 49.62469150400004 ], [ -123.98665599, 49.624043492000077 ], [ -123.986211089999955, 49.624020695000077 ], [ -123.986088896999959, 49.624120388000087 ], [ -123.986115993999988, 49.624722812000066 ], [ -123.986850111999956, 49.625436389000043 ], [ -123.987127395999963, 49.625533211000075 ], [ -123.987708711, 49.625527499000071 ], [ -123.98793428299993, 49.625715504000048 ], [ -123.98797610699998, 49.626372088000053 ], [ -123.987775805999917, 49.626696787000057 ], [ -123.987822202999951, 49.626975913000074 ], [ -123.988938395000034, 49.62745161599999 ], [ -123.989215689999966, 49.62746731400005 ], [ -123.991682406, 49.626843497000024 ], [ -123.994272994999932, 49.626874811000043 ], [ -123.995528781999923, 49.626675400000082 ], [ -123.996277283999959, 49.626722403000024 ], [ -123.99646277199993, 49.626955994000113 ], [ -123.996440503999949, 49.627260804000102 ], [ -123.995880914999944, 49.627643895000098 ], [ -123.995516104999965, 49.628061210000048 ], [ -123.995631303999957, 49.628347389000112 ], [ -123.995599095000017, 49.628824489000131 ], [ -123.996075304999948, 49.629045290000136 ], [ -123.996315086999957, 49.629304493000113 ], [ -123.996276692999913, 49.629448403000012 ], [ -123.995975086999962, 49.629595108000082 ], [ -123.995505895999926, 49.629653410000046 ], [ -123.994887299999903, 49.629865594000115 ], [ -123.994577700999983, 49.630327098000073 ], [ -123.993352805999933, 49.631316887000018 ], [ -123.993217720999937, 49.631561899000118 ], [ -123.993239393999914, 49.631866693000056 ], [ -123.992978611999987, 49.631994806000101 ], [ -123.992310896999953, 49.632577310000023 ], [ -123.992428397999987, 49.632863607000012 ], [ -123.993435502999958, 49.633394792000082 ], [ -123.99368239099999, 49.633239596000074 ], [ -123.994072400999954, 49.632678487000128 ], [ -123.994654306999962, 49.632655697000111 ], [ -123.994905197999969, 49.632752498000059 ], [ -123.995007808999929, 49.633102909000037 ], [ -123.994303889999955, 49.633135593000105 ], [ -123.994179506999942, 49.63323528899999 ], [ -123.994303312999975, 49.63377370600012 ], [ -123.994201415999953, 49.634277806000036 ], [ -123.993712701000021, 49.634777701000125 ], [ -123.993149091, 49.634908808000041 ], [ -123.992297589999936, 49.635274793000143 ], [ -123.991330222999977, 49.635400103000023 ], [ -123.990602735, 49.63569306100004 ], [ -123.990651312999887, 49.634580813000071 ], [ -123.989409867999967, 49.634557893000085 ], [ -123.989426241999951, 49.634183200000038 ], [ -123.989567030999964, 49.630961328000112 ], [ -123.98975225699999, 49.630964749000064 ], [ -123.989796379999959, 49.629954831000084 ], [ -123.991063152999942, 49.629978216000104 ], [ -123.99109671399998, 49.629209521000107 ], [ -123.988862569999981, 49.629168268000079 ], [ -123.988806070999942, 49.630460890000059 ], [ -123.985294392999961, 49.630395955000047 ], [ -123.985225813999961, 49.631962074000043 ], [ -123.983722902999943, 49.631934249000061 ], [ -123.983690594, 49.632671510000051 ], [ -123.98164798699996, 49.632633659000149 ], [ -123.981606661999948, 49.63357565899999 ], [ -123.981522226999942, 49.633574094000032 ], [ -123.981528823999952, 49.633902295000055 ], [ -123.981537133999893, 49.634315818000118 ], [ -123.979460140999947, 49.634333409000092 ], [ -123.979454730999961, 49.634063611000116 ], [ -123.979039333999935, 49.634067124000062 ], [ -123.979060969999964, 49.635146321000121 ], [ -123.97656853300002, 49.635167372000133 ], [ -123.976563137999918, 49.634897574000085 ], [ -123.975842949999944, 49.63490364700008 ], [ -123.975739741999945, 49.637249295000053 ], [ -123.975610377999928, 49.637246889000032 ], [ -123.975591860999913, 49.63766769600003 ], [ -123.974996715999936, 49.637656629000084 ], [ -123.974995836999966, 49.637676612000078 ], [ -123.97432405399999, 49.637664115000071 ], [ -123.974289695999929, 49.638444348000085 ], [ -123.976452259999959, 49.638484561000105 ], [ -123.976427241999957, 49.63905331200008 ], [ -123.977295264999967, 49.639069441000117 ], [ -123.977286985999967, 49.639257707000105 ], [ -123.980152235999938, 49.639310898000119 ], [ -123.980182759999934, 49.638615716000146 ], [ -123.985214047999989, 49.638708935000089 ], [ -123.984974002999977, 49.638845293000053 ], [ -123.98494851099997, 49.639026188000059 ], [ -123.985047180999928, 49.6390873940001 ], [ -123.985691504000016, 49.639273608000096 ], [ -123.985599511999965, 49.641374383000048 ], [ -123.98359717699995, 49.641360598000105 ], [ -123.983670273999905, 49.642279793000064 ], [ -123.981917948999978, 49.642247331000064 ], [ -123.981887213999968, 49.64294788600008 ], [ -123.982957113999944, 49.642938806000089 ], [ -123.982962546999914, 49.643208605000083 ], [ -123.983378020999979, 49.643205077000111 ], [ -123.983381997999928, 49.643402519000084 ], [ -123.983760119999914, 49.643409521000095 ], [ -123.98379254, 49.643817175000045 ], [ -123.983795061999942, 49.643848989000055 ], [ -123.983938564999917, 49.643847016000102 ], [ -123.983933561999919, 49.643961157000057 ], [ -123.983820623999989, 49.646537737000095 ], [ -123.983799934999979, 49.647009670000031 ], [ -123.978265879999967, 49.646907071000058 ], [ -123.978276049999977, 49.646675688000066 ] ], [ [ -123.976951553999982, 49.633545071000093 ], [ -123.976950633999962, 49.633498993000053 ], [ -123.976119399999959, 49.633483543000068 ], [ -123.976120769999952, 49.633552079000019 ], [ -123.976951553999982, 49.633545071000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.989159596047724", "sL_AssetLoss": "458.47", "sL_BldgLoss": "453.5", "sL_StrLoss": "418", "sL_NStrLoss": "35.5", "sL_ContLoss": "4.97", "geom_point": "0101000020E6100000A0259F89F60C5FC0C4B42DD2DDDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.200642784999928, 49.741808146000047 ], [ -124.200636125999949, 49.741538371000054 ], [ -124.200219843999918, 49.741542685000134 ], [ -124.200199877000017, 49.740733363000103 ], [ -124.201864980999957, 49.740716098000057 ], [ -124.201858315999971, 49.740446324000082 ], [ -124.202229932999956, 49.740442468000012 ], [ -124.203939680999923, 49.740424709000109 ], [ -124.203946355999932, 49.740694484000109 ], [ -124.204362631, 49.740690156000035 ], [ -124.204369309999947, 49.740959929000056 ], [ -124.20478558799995, 49.740955601000081 ], [ -124.204805629999953, 49.741764923000083 ], [ -124.203140493, 49.741782230000076 ], [ -124.203133822000012, 49.741512456000102 ], [ -124.202187635999948, 49.74152228100008 ], [ -124.201884974000023, 49.741525421000055 ], [ -124.20189164, 49.741795196000076 ], [ -124.200642784999928, 49.741808146000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.974589081419956", "sL_AssetLoss": "6284.7", "sL_BldgLoss": "6125", "sL_StrLoss": "5570", "sL_NStrLoss": "555", "sL_ContLoss": "159.7", "geom_point": "0101000020E61000005BD6F5F298FB5EC013AAED8922E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.934814226999961, 49.772628226000045 ], [ -123.934836224999927, 49.772139725000066 ], [ -123.93396802700002, 49.772123305000044 ], [ -123.934030844999981, 49.770728880000021 ], [ -123.93277296899997, 49.770705077000081 ], [ -123.932789301999961, 49.770342731000021 ], [ -123.93244797899996, 49.77033627000003 ], [ -123.932499218000018, 49.769199671000081 ], [ -123.931262005999926, 49.769176241000068 ], [ -123.931329874999989, 49.76767156500005 ], [ -123.930784482, 49.76766123200008 ], [ -123.930848696999973, 49.766237843000042 ], [ -123.92782246199998, 49.76618045900009 ], [ -123.927876694999924, 49.764980020000031 ], [ -123.925062934999943, 49.764926590000044 ], [ -123.925072036999936, 49.764725397000056 ], [ -123.922912168999986, 49.764684334000044 ], [ -123.922971931999911, 49.763364566000057 ], [ -123.92155490099999, 49.763337602000036 ], [ -123.921717822999966, 49.759741792000057 ], [ -123.921853352999918, 49.759744371000068 ], [ -123.92280528400002, 49.76092315800004 ], [ -123.924626669999952, 49.760606372 ], [ -123.924664088999975, 49.760636605000037 ], [ -123.924463680999921, 49.761052395000085 ], [ -123.924484412999959, 49.761348698000134 ], [ -123.92491161599996, 49.761921204000039 ], [ -123.925460503999915, 49.762321405000108 ], [ -123.925991613999926, 49.7624524 ], [ -123.926713085999964, 49.762463806000035 ], [ -123.927232280999974, 49.762784291000045 ], [ -123.928028604999966, 49.763012085000064 ], [ -123.92861930399999, 49.763420885000073 ], [ -123.929386285999939, 49.763584692000073 ], [ -123.930372595999984, 49.764261191000045 ], [ -123.931155392999983, 49.764595908000054 ], [ -123.931521194999974, 49.76488211500002 ], [ -123.932021796999962, 49.7648778860001 ], [ -123.932228379999984, 49.764785294000077 ], [ -123.932690504999982, 49.764296796000068 ], [ -123.933524002999917, 49.764325300000074 ], [ -123.933728484999975, 49.76484510500007 ], [ -123.933927210999911, 49.764987494000124 ], [ -123.934330497999952, 49.765057310000081 ], [ -123.936260806999925, 49.765725307000153 ], [ -123.936666487999958, 49.765946004000057 ], [ -123.93727358199996, 49.766471494000072 ], [ -123.937317406999966, 49.767227810000058 ], [ -123.937236196999962, 49.767398689000039 ], [ -123.936919094999922, 49.767536793000026 ], [ -123.93636331299993, 49.767541100000045 ], [ -123.936043994999977, 49.767462812000147 ], [ -123.935525481999903, 49.767259097000071 ], [ -123.935004487999905, 49.766913004000102 ], [ -123.934629203, 49.76680760600005 ], [ -123.934581499999936, 49.767267687000135 ], [ -123.934699179999939, 49.767572392000048 ], [ -123.93551620799991, 49.76824040800004 ], [ -123.936564292999947, 49.769301413000029 ], [ -123.937434794999973, 49.770536207000127 ], [ -123.938178287, 49.770899403000087 ], [ -123.940261383999911, 49.77161999000004 ], [ -123.940409044999953, 49.771715575 ], [ -123.940363350999974, 49.772733013000078 ], [ -123.934814226999961, 49.772628226000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.978227771010962", "sL_AssetLoss": "1313.6", "sL_BldgLoss": "1285", "sL_StrLoss": "1120", "sL_NStrLoss": "165", "sL_ContLoss": "28.6", "geom_point": "0101000020E61000005E57FE42700D5FC0EEA9E683AFDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.20963701699999, 49.723067297000036 ], [ -124.210596294999903, 49.722571701000092 ], [ -124.210928293999956, 49.722531794000112 ], [ -124.211206890999975, 49.722628700000016 ], [ -124.211322122999903, 49.722779600000088 ], [ -124.211654906999954, 49.722812395000105 ], [ -124.211970012999956, 49.722655701000058 ], [ -124.212555506999948, 49.722685609000081 ], [ -124.212896117, 49.723024603000106 ], [ -124.212812308999929, 49.723555790000042 ], [ -124.212210996999943, 49.723921903000061 ], [ -124.211124487999911, 49.724877504000062 ], [ -124.209932707999911, 49.72551130500004 ], [ -124.209876661999971, 49.725536836000067 ], [ -124.20678804899994, 49.725486117000067 ], [ -124.206975590999917, 49.725388811000073 ], [ -124.207226791000011, 49.724935894000119 ], [ -124.207513504999952, 49.724770700000107 ], [ -124.207881206999971, 49.723886307000015 ], [ -124.208246187, 49.72355009800004 ], [ -124.20963701699999, 49.723067297000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.937974203338391", "sL_AssetLoss": "1054.4", "sL_BldgLoss": "989", "sL_StrLoss": "836", "sL_NStrLoss": "153", "sL_ContLoss": "65.4", "geom_point": "0101000020E6100000B9ED5255EE0D5FC0B3E1FAC18ADC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.21853681099999, 49.721660206000145 ], [ -124.218840291999982, 49.721648801000093 ], [ -124.219023995999919, 49.721754185000073 ], [ -124.219015410999987, 49.721935097 ], [ -124.218717413999926, 49.722261205000059 ], [ -124.218677492999959, 49.72283799200008 ], [ -124.218710205999969, 49.723044497000068 ], [ -124.219019801999963, 49.7232112 ], [ -124.219106513, 49.723399190000116 ], [ -124.21911665199994, 49.723793340000078 ], [ -124.215982690999951, 49.723742139000095 ], [ -124.215935088999927, 49.723648389000111 ], [ -124.215872394999977, 49.723325113000058 ], [ -124.215974789999962, 49.723010413000068 ], [ -124.216385095999897, 49.722753998000087 ], [ -124.217280809999949, 49.722537504000037 ], [ -124.217780276999989, 49.721929395000103 ], [ -124.218388175999934, 49.721859595000105 ], [ -124.21853681099999, 49.721660206000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.98159509202454", "sL_AssetLoss": "554.2", "sL_BldgLoss": "544", "sL_StrLoss": "510", "sL_NStrLoss": "34", "sL_ContLoss": "10.2", "geom_point": "0101000020E610000090403005B3035FC0DBB7207C24DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.05727031399999, 49.718702103000069 ], [ -124.057693806999936, 49.718357492000081 ], [ -124.058179390999953, 49.718380311000054 ], [ -124.05883719, 49.718606702000073 ], [ -124.059791704999952, 49.718643853000103 ], [ -124.059694417999978, 49.720946203000011 ], [ -124.054500872999952, 49.720853705000081 ], [ -124.054568601999961, 49.720724487000098 ], [ -124.055128614999987, 49.720322896000027 ], [ -124.056653504999957, 49.719626398000067 ], [ -124.056798908999966, 49.719372887000105 ], [ -124.05666330299999, 49.718851698 ], [ -124.05692519099992, 49.718733502000099 ], [ -124.05727031399999, 49.718702103000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.984478221171921", "sL_AssetLoss": "558.57", "sL_BldgLoss": "549.9", "sL_StrLoss": "494", "sL_NStrLoss": "55.9", "sL_ContLoss": "8.67", "geom_point": "0101000020E6100000A7B650097A0C5FC0F50A6E1843D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.193727411999987, 49.682477397000085 ], [ -124.19297679499999, 49.682411813000115 ], [ -124.192949800999941, 49.682435412000061 ], [ -124.192997619999957, 49.681219190000085 ], [ -124.198198084999902, 49.681305284000082 ], [ -124.197961893999945, 49.68164990000006 ], [ -124.197200320999954, 49.68164990000006 ], [ -124.194970305, 49.682310706000059 ], [ -124.193727411999987, 49.682477397000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.975459591954437", "sL_AssetLoss": "6935.5", "sL_BldgLoss": "6765.3", "sL_StrLoss": "5901", "sL_NStrLoss": "864.3", "sL_ContLoss": "170.2", "geom_point": "0101000020E61000000AFF5C1396FF5EC083AF01740CD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.9897323599999, 49.649421165000099 ], [ -123.989832918999966, 49.647120443000027 ], [ -123.987687326999961, 49.647080817000059 ], [ -123.987715332, 49.646440737000034 ], [ -123.987769801999917, 49.645195678000128 ], [ -123.984079609999981, 49.645127427000013 ], [ -123.984131014999903, 49.643954535000049 ], [ -123.984135845999944, 49.64384430300003 ], [ -123.985805905999911, 49.643821324000015 ], [ -123.986741914999939, 49.643808442000079 ], [ -123.986739328999988, 49.643742490000065 ], [ -123.98668179099991, 49.64227446000006 ], [ -123.986646737999976, 49.641381577000082 ], [ -123.986555492999955, 49.641380951000045 ], [ -123.986635784999947, 49.639546501000069 ], [ -123.987136800999977, 49.639691288000051 ], [ -123.987783194999963, 49.640125596000047 ], [ -123.98839520199999, 49.640238197000052 ], [ -123.988578194999988, 49.640407600000096 ], [ -123.989140105999951, 49.640770784000054 ], [ -123.989430487, 49.640742299000067 ], [ -123.989466887999981, 49.640480298000064 ], [ -123.989698217999944, 49.640280900000072 ], [ -123.99067151099996, 49.63983228899999 ], [ -123.990709484999954, 49.63962430400008 ], [ -123.990498902999931, 49.638852392000089 ], [ -123.990551507999982, 49.63864589300006 ], [ -123.99149020699997, 49.637774310000054 ], [ -123.991141390999971, 49.637687408000026 ], [ -123.991246581999917, 49.637460994000072 ], [ -123.991757888, 49.637394007000076 ], [ -123.991974697999964, 49.637184714000057 ], [ -123.992292691999978, 49.637056492000056 ], [ -123.992371514999974, 49.636911193000131 ], [ -123.9926479, 49.636855700000034 ], [ -123.9928268, 49.636854192000058 ], [ -123.993039894, 49.63704941100012 ], [ -123.993870308999973, 49.636998082000012 ], [ -123.99454280499998, 49.63669469600012 ], [ -123.995196900999986, 49.636230392000066 ], [ -123.996149308999975, 49.636087997000089 ], [ -123.997139187999949, 49.63570210900005 ], [ -123.997364102999981, 49.635222104000036 ], [ -123.997347088999931, 49.635042596000112 ], [ -123.996735806999936, 49.63490450500008 ], [ -123.996683510999958, 49.635102492000058 ], [ -123.996309813999957, 49.635150903000067 ], [ -123.996304011999896, 49.634800495000029 ], [ -123.996932706999985, 49.634407404000093 ], [ -123.997639708999913, 49.634393201000073 ], [ -123.997965298999986, 49.634092694000103 ], [ -123.997972915999966, 49.633815001000109 ], [ -123.999771804999952, 49.633088588000057 ], [ -123.999854421999913, 49.632988906000016 ], [ -123.999675093999926, 49.63241500600008 ], [ -123.999337985999958, 49.632120192000031 ], [ -123.999263992999943, 49.631932196000086 ], [ -123.999809108999955, 49.631486399000096 ], [ -123.999860190999968, 49.631306911000081 ], [ -123.999733895999952, 49.631154595000055 ], [ -123.999757077999931, 49.631002196000061 ], [ -124.000315206000025, 49.630483803000125 ], [ -124.000642483000021, 49.630309996000058 ], [ -124.000846399999944, 49.630039405000097 ], [ -124.000825412999959, 49.629733200000011 ], [ -124.000947482999976, 49.629560901000083 ], [ -124.00123220499999, 49.629360002000098 ], [ -124.001825314999962, 49.629247496000147 ], [ -124.00225280699999, 49.629055300000118 ], [ -124.00259511199998, 49.628971188000058 ], [ -124.003178694999946, 49.628965498000106 ], [ -124.004760203999979, 49.629159183000098 ], [ -124.005764308999986, 49.628835907000123 ], [ -124.006083688, 49.628895796000116 ], [ -124.00628231599994, 49.629109400000075 ], [ -124.006099385999974, 49.629633498 ], [ -124.006469813999928, 49.630187502000069 ], [ -124.007086684999962, 49.630542099000145 ], [ -124.00758819099994, 49.630619091000035 ], [ -124.008164187999952, 49.630379798000021 ], [ -124.00890028399999, 49.62986139700007 ], [ -124.009199473999928, 49.629771437000073 ], [ -124.00896621699999, 49.630606317000044 ], [ -124.007463082999976, 49.630858391000061 ], [ -124.007142218999903, 49.630783965000035 ], [ -124.006835446, 49.630712834000107 ], [ -124.006620664999929, 49.630696519000082 ], [ -124.006398146999942, 49.630679627000085 ], [ -124.005386754999989, 49.630382151000084 ], [ -124.004429078999948, 49.630666040000051 ], [ -124.003341964, 49.631081024000068 ], [ -124.002962510999907, 49.631225858000036 ], [ -124.002752299999884, 49.631445161000016 ], [ -124.002465505999965, 49.631834051000062 ], [ -124.002129640999897, 49.632173415000139 ], [ -124.001701318999949, 49.632441820000096 ], [ -124.001319564999918, 49.63256348500007 ], [ -124.001130996, 49.632666214000011 ], [ -124.000965618999928, 49.632840447000021 ], [ -124.000721810999892, 49.633004247000052 ], [ -124.000000468999957, 49.633330257000061 ], [ -123.999989017999937, 49.633335430000074 ], [ -123.999125670999916, 49.633452753000064 ], [ -123.99870870899997, 49.633715054000078 ], [ -123.997898328999938, 49.635256011000124 ], [ -123.99761093699999, 49.63562507000006 ], [ -123.997307521999943, 49.635853458000035 ], [ -123.996918442999942, 49.636046962000087 ], [ -123.996408028999937, 49.636228336000066 ], [ -123.99562253199997, 49.636337155000056 ], [ -123.995310941999946, 49.636467302000092 ], [ -123.994705493, 49.636891686000041 ], [ -123.99383883199998, 49.637305847000043 ], [ -123.992815534999963, 49.637978069000042 ], [ -123.992305882999943, 49.638426727000088 ], [ -123.992048854999922, 49.638764836000036 ], [ -123.99210783700002, 49.639538902000027 ], [ -123.991965753999978, 49.639685638000053 ], [ -123.99145830499999, 49.639987633000096 ], [ -123.991339716999917, 49.640262611000061 ], [ -123.991380493999941, 49.640438821000068 ], [ -123.991470922999952, 49.640555683000088 ], [ -123.99145877, 49.640770526000061 ], [ -123.991363506999946, 49.640891151000076 ], [ -123.991157346999955, 49.641015107000044 ], [ -123.990660280999933, 49.641142726000076 ], [ -123.990121008999964, 49.641381128000013 ], [ -123.989796194999911, 49.641603732000064 ], [ -123.989777045, 49.64161684500008 ], [ -123.989573919999884, 49.64186146500009 ], [ -123.989565892999948, 49.641927933000048 ], [ -123.989545725999903, 49.642094892000024 ], [ -123.989634843999923, 49.642843419000037 ], [ -123.989517557999989, 49.642992427000067 ], [ -123.989297256999976, 49.643186332000063 ], [ -123.989034568999955, 49.643336251000065 ], [ -123.988656148999951, 49.643821490000057 ], [ -123.988425679999949, 49.643962105000043 ], [ -123.988940769999971, 49.644436838000068 ], [ -123.989253080999973, 49.64460908300007 ], [ -123.989996922000017, 49.644917953000075 ], [ -123.990905912999963, 49.645122778000015 ], [ -123.991111822999954, 49.645131981000048 ], [ -123.992178028999945, 49.645067077000114 ], [ -123.992484418999936, 49.645090666000044 ], [ -123.99330268199995, 49.645320516000055 ], [ -123.993277959999929, 49.645887168000094 ], [ -123.995423500999919, 49.645926684000059 ], [ -123.995273242999957, 49.649374083000041 ], [ -123.995266743999963, 49.64952318000006 ], [ -123.9897323599999, 49.649421165000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.97821071520123", "sL_AssetLoss": "1170.3", "sL_BldgLoss": "1144.8", "sL_StrLoss": "1010", "sL_NStrLoss": "134.8", "sL_ContLoss": "25.5", "geom_point": "0101000020E61000007DD9EA302E0B5FC0199AE3C309DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.171491580999913, 49.712561532000016 ], [ -124.171519234999948, 49.711866919000094 ], [ -124.17172239599995, 49.711719195000065 ], [ -124.171578896, 49.710964390000093 ], [ -124.171780214999927, 49.71067529500008 ], [ -124.172948220999984, 49.710222403000031 ], [ -124.173612897999988, 49.710206699000032 ], [ -124.174258695999967, 49.710497287000088 ], [ -124.17475659499992, 49.710985800000046 ], [ -124.17503378899994, 49.710965807000065 ], [ -124.175233596999973, 49.710675294000055 ], [ -124.175278099999957, 49.710198197000125 ], [ -124.175599608999903, 49.709709691000107 ], [ -124.175571312999949, 49.709134294000094 ], [ -124.175703391999946, 49.709046074000035 ], [ -124.177176190999958, 49.709070699000051 ], [ -124.177033447999989, 49.712667123000088 ], [ -124.173315895000016, 49.712604927000015 ], [ -124.17288980099994, 49.712417101000071 ], [ -124.172279194999973, 49.712405695000058 ], [ -124.171825291999951, 49.712553808000045 ], [ -124.171804819, 49.712579609000052 ], [ -124.171514654999967, 49.712574746000087 ], [ -124.171491580999913, 49.712561532000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.980919196947072", "sL_AssetLoss": "602.7", "sL_BldgLoss": "591.2", "sL_StrLoss": "553", "sL_NStrLoss": "38.2", "sL_ContLoss": "11.5", "geom_point": "0101000020E6100000EAAAA357C1095FC01E07F391F3DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.15097045200001, 49.743842038000011 ], [ -124.151115332999893, 49.7402458070001 ], [ -124.154505909999983, 49.740303191000059 ], [ -124.153988797999929, 49.741300105000036 ], [ -124.154184101999974, 49.74196369100008 ], [ -124.15413860299995, 49.742324094000061 ], [ -124.153741397000019, 49.742534892000087 ], [ -124.152935711999959, 49.742524900000021 ], [ -124.152579893, 49.742789808000047 ], [ -124.152558322999937, 49.743060401000044 ], [ -124.153041203999933, 49.74345060600011 ], [ -124.152903599999945, 49.743497609000045 ], [ -124.152372888999977, 49.743439195000057 ], [ -124.152402676999884, 49.743866291000103 ], [ -124.15097045200001, 49.743842038000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9509584", "BldgCostT": "6558334", "sL_LossRatio": "0.976611142556804", "sL_AssetLoss": "9893.6", "sL_BldgLoss": "9662.2", "sL_StrLoss": "8736", "sL_NStrLoss": "926.2", "sL_ContLoss": "231.4", "geom_point": "0101000020E61000005C719262D7035FC0A2FB28D9A0D14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.070245702999955, 49.644053707000126 ], [ -124.070239788999913, 49.643783916000118 ], [ -124.06940885299997, 49.643791595000096 ], [ -124.069402942999929, 49.643521804000038 ], [ -124.06857201299999, 49.643529476000033 ], [ -124.068566106999967, 49.643259685000075 ], [ -124.06815064499996, 49.643263519000072 ], [ -124.068156545999955, 49.643533310000137 ], [ -124.067741081999955, 49.643537142000127 ], [ -124.067746980999971, 49.643806933000135 ], [ -124.066500577999989, 49.643818422000024 ], [ -124.066477001999971, 49.642739257000059 ], [ -124.066061543, 49.642743082000081 ], [ -124.066049761999977, 49.642203500000079 ], [ -124.065634308000014, 49.642207324000026 ], [ -124.065624645999932, 49.641764753000103 ], [ -124.065138156999964, 49.641756109000077 ], [ -124.065098749999933, 49.642692973000081 ], [ -124.064398010000019, 49.642680520000056 ], [ -124.064405588999932, 49.643028166000093 ], [ -124.061718527000011, 49.643052838000109 ], [ -124.061782098, 49.64294121000006 ], [ -124.061949559999945, 49.642745343000051 ], [ -124.062087541999972, 49.642669615000074 ], [ -124.062225935999933, 49.642593679000079 ], [ -124.062949643999957, 49.642438298000052 ], [ -124.063206436999948, 49.642323182000069 ], [ -124.063473015999961, 49.64210746600002 ], [ -124.063662303999976, 49.641853474000051 ], [ -124.063695889999963, 49.641648025000102 ], [ -124.06359250699991, 49.641374435000067 ], [ -124.06327548299997, 49.641012464000049 ], [ -124.062639740999927, 49.640427958000096 ], [ -124.062289521999929, 49.639934023000087 ], [ -124.0620617229999, 49.639097612000043 ], [ -124.060924103999952, 49.637020334000077 ], [ -124.060768807999949, 49.63643539700012 ], [ -124.060640942999967, 49.636283723000076 ], [ -124.060200331999908, 49.635997827000018 ], [ -124.059816023999986, 49.635821824000026 ], [ -124.059503034999977, 49.635759553000106 ], [ -124.059143777999978, 49.635744147000032 ], [ -124.058533346999965, 49.635808852000082 ], [ -124.057931955999962, 49.635790925000016 ], [ -124.056279861999968, 49.636724276000059 ], [ -124.056059166999916, 49.636836394000049 ], [ -124.055344610999924, 49.637072008000118 ], [ -124.053822501999946, 49.638005840000055 ], [ -124.052374408999967, 49.637647903000108 ], [ -124.051625480999974, 49.637517512000052 ], [ -124.051346858999977, 49.63749363300014 ], [ -124.051051257999958, 49.637511749000147 ], [ -124.047949452999887, 49.638250740000089 ], [ -124.047327414999984, 49.638326863000088 ], [ -124.046211450999976, 49.63839334700009 ], [ -124.04687324399994, 49.63601908400004 ], [ -124.048458623999949, 49.635662186000047 ], [ -124.048558995999954, 49.633078705000095 ], [ -124.048527789999952, 49.632895201000103 ], [ -124.049191580999889, 49.632749696000118 ], [ -124.049519204999953, 49.632530283000087 ], [ -124.050068196999973, 49.632336593000062 ], [ -124.050504309999965, 49.631973503000047 ], [ -124.050556891999946, 49.631949705000032 ], [ -124.050493713999984, 49.633440786000065 ], [ -124.050901707999941, 49.633437083000096 ], [ -124.050895901999937, 49.633167290000053 ], [ -124.05255741900001, 49.633152194000047 ], [ -124.052563235000022, 49.633421988000109 ], [ -124.052978616999937, 49.633418211000041 ], [ -124.052984433999981, 49.633688003000039 ], [ -124.053399816999971, 49.633684224000042 ], [ -124.053397224000022, 49.63356397300003 ], [ -124.052988042999985, 49.63355665600006 ], [ -124.053035548999929, 49.632434055000026 ], [ -124.053865580999926, 49.631808303000071 ], [ -124.054305708999934, 49.631714294000119 ], [ -124.054458911999944, 49.631739902000085 ], [ -124.055471491999981, 49.632396496000091 ], [ -124.057018403999948, 49.632857888000075 ], [ -124.057126086000011, 49.632776699000061 ], [ -124.05713991199994, 49.632137297000071 ], [ -124.057497321999989, 49.63192790500004 ], [ -124.05738201099993, 49.631767008000011 ], [ -124.057401187999957, 49.63139809700003 ], [ -124.058089905999978, 49.631157397000031 ], [ -124.058561089999927, 49.631188702000017 ], [ -124.059083204999979, 49.631626008000119 ], [ -124.059904100999987, 49.631852405000068 ], [ -124.060022687999904, 49.632165690000093 ], [ -124.05982919799996, 49.632275392000111 ], [ -124.059988301999951, 49.632526102000028 ], [ -124.060017608999942, 49.633199691000065 ], [ -124.060212009999958, 49.633279503000054 ], [ -124.060459022999936, 49.633168401 ], [ -124.060765489999966, 49.633219702000069 ], [ -124.060933487999975, 49.63338059200008 ], [ -124.060910913999976, 49.634162490000037 ], [ -124.060429409, 49.635004209000051 ], [ -124.060409696999912, 49.635983988000106 ], [ -124.060774392999946, 49.636224699000074 ], [ -124.061024107999927, 49.636824284000028 ], [ -124.06130909399999, 49.637200304000068 ], [ -124.061697709999933, 49.637250187000078 ], [ -124.061978605999968, 49.637499399000028 ], [ -124.061846675999945, 49.63777999500013 ], [ -124.06200787599991, 49.638210096000094 ], [ -124.062205494999887, 49.638361097000036 ], [ -124.062930002999948, 49.638579007000018 ], [ -124.063388602, 49.638593211000057 ], [ -124.06375560099994, 49.638886598000077 ], [ -124.064285408999936, 49.639061804000036 ], [ -124.064853690999897, 49.639056092000054 ], [ -124.065335885999986, 49.639006202000076 ], [ -124.065639303999916, 49.638896604000138 ], [ -124.066026219999969, 49.638900801000062 ], [ -124.066777995999956, 49.639056113000088 ], [ -124.068359610999934, 49.639185707000067 ], [ -124.068835412999974, 49.639050178000048 ], [ -124.068806055999957, 49.639749473000101 ], [ -124.070566512999946, 49.63973320600013 ], [ -124.070572427999977, 49.64000299800005 ], [ -124.071224549999954, 49.639996967000066 ], [ -124.071243047999957, 49.639555769000069 ], [ -124.071510583999981, 49.639560507000041 ], [ -124.071479101, 49.640001704000056 ], [ -124.071896989999971, 49.640718093000032 ], [ -124.072692304999975, 49.640980195000083 ], [ -124.073044992999954, 49.641292101 ], [ -124.073423301, 49.641406004000025 ], [ -124.073793787999989, 49.641249402000042 ], [ -124.074333919999972, 49.641316299000067 ], [ -124.074777814999905, 49.641959995000043 ], [ -124.074780494999942, 49.642085415000111 ], [ -124.074590583, 49.642257699000069 ], [ -124.07466671199991, 49.642580990000063 ], [ -124.074473424999908, 49.643203404000047 ], [ -124.074465168999936, 49.643212100000021 ], [ -124.07355127199996, 49.643195935000065 ], [ -124.073557593999922, 49.643483351000029 ], [ -124.073142127999944, 49.643487204000024 ], [ -124.073153989, 49.64402678600004 ], [ -124.072396947999948, 49.644033801000042 ], [ -124.070245702999955, 49.644053707000126 ] ], [ [ -124.052996693999916, 49.634256589000103 ], [ -124.052996067999942, 49.634227590000059 ], [ -124.051334513999947, 49.634242692000029 ], [ -124.051346128999938, 49.634782277000035 ], [ -124.050930736999973, 49.634786050000059 ], [ -124.050936542999949, 49.635055843000075 ], [ -124.049690353999949, 49.635067149000051 ], [ -124.049681036, 49.634633617000091 ], [ -124.049595644999968, 49.634632087000078 ], [ -124.049550749000019, 49.635691078000065 ], [ -124.051660694999939, 49.635728857000132 ], [ -124.051690197999946, 49.63503217300012 ], [ -124.05292450499995, 49.635054254000075 ], [ -124.052958291999943, 49.634255902000064 ], [ -124.052996693999916, 49.634256589000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16097417", "BldgCostT": "11101667", "sL_LossRatio": "0.974801164339733", "sL_AssetLoss": "15658.66", "sL_BldgLoss": "15264.08", "sL_StrLoss": "13608.68", "sL_NStrLoss": "1655.4", "sL_ContLoss": "394.58", "geom_point": "0101000020E610000099C7500467FE5EC015E0601429D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.971621235999947, 49.704898854000092 ], [ -123.971627676, 49.704753003000057 ], [ -123.970473302999949, 49.704731525000057 ], [ -123.970632188999986, 49.7011353460001 ], [ -123.971141387999964, 49.701144822000053 ], [ -123.971141867999975, 49.70113395900011 ], [ -123.974705334999967, 49.701200206000102 ], [ -123.974743073999903, 49.70034419800006 ], [ -123.970442576999943, 49.700264235000134 ], [ -123.970444303999983, 49.700225153000062 ], [ -123.968529010999973, 49.700189485000067 ], [ -123.968544440999935, 49.699840573000138 ], [ -123.967508094999928, 49.699821260000114 ], [ -123.96756955799998, 49.698432047000026 ], [ -123.965642813, 49.698396113000086 ], [ -123.965770537999902, 49.695511678000109 ], [ -123.96580205399998, 49.694799910000043 ], [ -123.968706079999947, 49.694854057000022 ], [ -123.968789940999898, 49.692957279000083 ], [ -123.969487205999926, 49.692970268000053 ], [ -123.969624586999927, 49.689861491000045 ], [ -123.973599426999982, 49.689935453000061 ], [ -123.973627359999981, 49.689302089000115 ], [ -123.979166509999942, 49.689404917000047 ], [ -123.979163934999974, 49.6894634780001 ], [ -123.982632586999983, 49.689527726000051 ], [ -123.982523937999972, 49.692002207000066 ], [ -123.982552440999925, 49.692002735000074 ], [ -123.98243952199999, 49.694574253000027 ], [ -123.98304888399997, 49.694585528000083 ], [ -123.982890993999931, 49.69818175800004 ], [ -123.977350777, 49.698079120000081 ], [ -123.977463989999976, 49.695507621000061 ], [ -123.976854616999901, 49.695496314000138 ], [ -123.976896604999965, 49.694542818000031 ], [ -123.976767073999937, 49.694540414000052 ], [ -123.97683663, 49.692960886000073 ], [ -123.975033219999929, 49.692927403000056 ], [ -123.975005304, 49.693560765000058 ], [ -123.974308027999953, 49.693547810000069 ], [ -123.974203789999962, 49.695911871000085 ], [ -123.974977373999977, 49.695926243000045 ], [ -123.97495645, 49.696400927000063 ], [ -123.97502730099994, 49.696402243000072 ], [ -123.9750119699999, 49.696750041000058 ], [ -123.976141481999932, 49.69677101400007 ], [ -123.976049527, 49.69885825000005 ], [ -123.980943934, 49.698948994000069 ], [ -123.980914230999943, 49.699624787000126 ], [ -123.981022571999986, 49.699626793000085 ], [ -123.980864505999975, 49.703222995000026 ], [ -123.979046935999989, 49.70318932300011 ], [ -123.977243550999987, 49.703155885000058 ], [ -123.977162261, 49.705001782000103 ], [ -123.971621235999947, 49.704898854000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.914040991128786", "sL_AssetLoss": "9807", "sL_BldgLoss": "8964", "sL_StrLoss": "6750", "sL_NStrLoss": "2214", "sL_ContLoss": "843", "geom_point": "0101000020E6100000E8F094FEF3F75EC0A513C78948EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.87456199099995, 49.842253582000126 ], [ -123.874654983999946, 49.840250311000041 ], [ -123.873465229999951, 49.840259282000027 ], [ -123.87344578699998, 49.839180091000074 ], [ -123.873028623999943, 49.839183234000089 ], [ -123.873023764999985, 49.838913437000095 ], [ -123.872189442999982, 49.83891971800012 ], [ -123.872184588999971, 49.83864992000008 ], [ -123.871767430999967, 49.838653058000084 ], [ -123.871762578999935, 49.838383260000036 ], [ -123.871345421999976, 49.838386396000018 ], [ -123.871326026999938, 49.837307205000023 ], [ -123.870908879999945, 49.837310339000076 ], [ -123.870904033999963, 49.837040542000032 ], [ -123.870069742999988, 49.837046807000043 ], [ -123.870064900999949, 49.836777009000059 ], [ -123.868396327999918, 49.836789522000096 ], [ -123.868391495999944, 49.836519724000041 ], [ -123.86797435299998, 49.836522848000094 ], [ -123.86795986599995, 49.83571345400005 ], [ -123.868376998999935, 49.835710330000083 ], [ -123.868372167999951, 49.835440531000138 ], [ -123.869206431999956, 49.835434278000029 ], [ -123.869201596, 49.83516448000011 ], [ -123.871287241999937, 49.835148821000047 ], [ -123.871282394999966, 49.834879023000035 ], [ -123.873785153999947, 49.834860183000089 ], [ -123.873790016999948, 49.835129980000048 ], [ -123.874624273, 49.83512368800011 ], [ -123.874629140999929, 49.835393487000033 ], [ -123.87546340199998, 49.835387188000084 ], [ -123.875468273999942, 49.835656985000092 ], [ -123.875885406999984, 49.83565383400007 ], [ -123.875900026999929, 49.836463227000131 ], [ -123.876317166999982, 49.836460074000065 ], [ -123.876331796999935, 49.837269468000059 ], [ -123.876748941999907, 49.837266313000107 ], [ -123.876760326999914, 49.837895898000063 ], [ -123.878735712999941, 49.837934225000083 ], [ -123.878171297999984, 49.838603492000104 ], [ -123.878171990999974, 49.839466511000047 ], [ -123.878844580999953, 49.840406495000131 ], [ -123.878839186, 49.840883590000132 ], [ -123.877082816999959, 49.842245203000047 ], [ -123.876941148999947, 49.842299782000055 ], [ -123.87456199099995, 49.842253582000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.978519326862328", "sL_AssetLoss": "1741.1", "sL_BldgLoss": "1703.7", "sL_StrLoss": "1583", "sL_NStrLoss": "120.7", "sL_ContLoss": "37.4", "geom_point": "0101000020E610000022A21CF525035FC0063E50B8E8D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.046499599999947, 49.669316735000081 ], [ -124.052036502999968, 49.669415864000037 ], [ -124.051884095, 49.673012320000062 ], [ -124.04634675899996, 49.672913185000077 ], [ -124.046499599999947, 49.669316735000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.972175768869352", "sL_AssetLoss": "627.87", "sL_BldgLoss": "610.4", "sL_StrLoss": "529.1", "sL_NStrLoss": "81.3", "sL_ContLoss": "17.47", "geom_point": "0101000020E610000016F1C61767045FC0EB447A381ED34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.068544944999957, 49.651080722000081 ], [ -124.069059253999967, 49.650767888000075 ], [ -124.066746410999983, 49.650862257000014 ], [ -124.066798669999955, 49.649619003000083 ], [ -124.06686783, 49.647973583000081 ], [ -124.069960366999965, 49.648028433000036 ], [ -124.072109799999936, 49.648066504000042 ], [ -124.072034092999928, 49.648227986000073 ], [ -124.071584197999982, 49.648564096000044 ], [ -124.069940023999919, 49.649388703000049 ], [ -124.06979270699999, 49.649588088000058 ], [ -124.06983870599997, 49.649767491 ], [ -124.069978990999957, 49.649874403000062 ], [ -124.070352901999954, 49.649907097000074 ], [ -124.070494307999965, 49.649995407000048 ], [ -124.070431108999941, 49.650320104000095 ], [ -124.069846809999945, 49.65081150300005 ], [ -124.068777715999943, 49.651361200000039 ], [ -124.068533952999942, 49.651602412000017 ], [ -124.068528069, 49.651602308000072 ], [ -124.068541628999952, 49.651183475000067 ], [ -124.068544944999957, 49.651080722000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.975687995947999", "sL_AssetLoss": "592.3", "sL_BldgLoss": "577.9", "sL_StrLoss": "535", "sL_NStrLoss": "42.9", "sL_ContLoss": "14.4", "geom_point": "0101000020E61000003BCA7F50B0FD5EC0BE9F7D5998D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.963547066, 49.691134087000066 ], [ -123.96479472099999, 49.691123699000094 ], [ -123.964826766999948, 49.692742486000057 ], [ -123.964410868999934, 49.692745950000074 ], [ -123.964421546000025, 49.693285546000062 ], [ -123.963173837999975, 49.69329592900003 ], [ -123.963170698999988, 49.693137159000131 ], [ -123.963223886999955, 49.69255330700004 ], [ -123.963020484999916, 49.692140994000063 ], [ -123.962729843999981, 49.691877406000138 ], [ -123.962720627999957, 49.691410803000103 ], [ -123.963552401999948, 49.691403885000057 ], [ -123.963547066, 49.691134087000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.987900869990121", "sL_AssetLoss": "1882.78", "sL_BldgLoss": "1860", "sL_StrLoss": "1738", "sL_NStrLoss": "122", "sL_ContLoss": "22.78", "geom_point": "0101000020E6100000BD9924D8700C5FC0A5383FAC54DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.188748294999982, 49.716358391 ], [ -124.188890132000012, 49.712761970000081 ], [ -124.19320974399993, 49.712833610000061 ], [ -124.193241700999977, 49.712021275000083 ], [ -124.198784053999972, 49.712112944000076 ], [ -124.198767562999947, 49.712533426000093 ], [ -124.201801734, 49.712583491000068 ], [ -124.201060822999949, 49.71292980000004 ], [ -124.200911602999938, 49.713047995000089 ], [ -124.20087670099997, 49.713281607000056 ], [ -124.200462189999897, 49.713376997000104 ], [ -124.2000542899999, 49.713686102000104 ], [ -124.19979580899998, 49.713905394000065 ], [ -124.199815692999934, 49.714156098000075 ], [ -124.199203896999947, 49.714640292000119 ], [ -124.198912700999955, 49.714624598000043 ], [ -124.198784002999929, 49.714490697000045 ], [ -124.19757429199997, 49.714368310000026 ], [ -124.196639202999947, 49.714136092000125 ], [ -124.196361494000016, 49.714111895000052 ], [ -124.196003314999984, 49.714250097000068 ], [ -124.195822306999943, 49.714234399000077 ], [ -124.194926189999975, 49.713892588000057 ], [ -124.194121103, 49.713874102000048 ], [ -124.193765914999943, 49.714047805000142 ], [ -124.19332121199993, 49.71403500300007 ], [ -124.192754501999985, 49.714176008000109 ], [ -124.192263609999912, 49.714450904000024 ], [ -124.192074904999956, 49.714704400000137 ], [ -124.192065489999948, 49.71491088900008 ], [ -124.192223413999955, 49.715125904000047 ], [ -124.192164284999976, 49.715503402000081 ], [ -124.191665287999967, 49.714987793000077 ], [ -124.190674201999983, 49.715303985000119 ], [ -124.189277808999989, 49.715443508000057 ], [ -124.189114099999969, 49.715625812000063 ], [ -124.189091317999953, 49.715840897000071 ], [ -124.18922380199993, 49.716366285000106 ], [ -124.188748294999982, 49.716358391 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.969086187708668", "sL_AssetLoss": "1617.4", "sL_BldgLoss": "1567.4", "sL_StrLoss": "1370", "sL_NStrLoss": "197.4", "sL_ContLoss": "50", "geom_point": "0101000020E610000065A4417E340B5FC0F75D6CB5E2DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.171416949, 49.720310483000063 ], [ -124.171454343, 49.71937145600009 ], [ -124.171746469999945, 49.71937635200009 ], [ -124.171808419999962, 49.717820360000076 ], [ -124.17410474499998, 49.717858821000078 ], [ -124.174179232999933, 49.715985415000048 ], [ -124.17852677799999, 49.716058098000062 ], [ -124.178545100999926, 49.716255308000029 ], [ -124.178882604999941, 49.716377785000127 ], [ -124.179380206999966, 49.716920388000077 ], [ -124.179612389999974, 49.717305001000071 ], [ -124.179600716999985, 49.717413196000052 ], [ -124.17946291, 49.717468810000099 ], [ -124.178688713999932, 49.717557095000096 ], [ -124.178340998999943, 49.717507197000025 ], [ -124.17720108899999, 49.716843496000109 ], [ -124.176644281999984, 49.716822196000109 ], [ -124.17619451599991, 49.716592891000062 ], [ -124.175625507999939, 49.716589993000099 ], [ -124.174936991999985, 49.716723914000099 ], [ -124.174594495999983, 49.716951803000029 ], [ -124.174696913999952, 49.717183903000077 ], [ -124.175238018999963, 49.71715260000007 ], [ -124.175374388, 49.717087107000047 ], [ -124.175481690999931, 49.716870611000104 ], [ -124.175950294999936, 49.716793686000067 ], [ -124.176157907999979, 49.716800794000044 ], [ -124.17662110899991, 49.717021595000091 ], [ -124.176955385000014, 49.71708000200011 ], [ -124.177394719999981, 49.717390400000092 ], [ -124.177397189999979, 49.717517192000102 ], [ -124.177180191, 49.717716597000077 ], [ -124.17714509299995, 49.718032801000092 ], [ -124.17675889499999, 49.718099705000043 ], [ -124.176443296999977, 49.718273406000101 ], [ -124.175958811999962, 49.718269208000109 ], [ -124.17570489299996, 49.718118201000053 ], [ -124.175420012999936, 49.717762190000109 ], [ -124.175099003999961, 49.717764994000049 ], [ -124.175280307999955, 49.718338988000014 ], [ -124.175618314999909, 49.718542603000046 ], [ -124.175952804999923, 49.718592510000121 ], [ -124.176153105999944, 49.718851695000126 ], [ -124.176001288999927, 49.71888019400005 ], [ -124.175749383999971, 49.718774803 ], [ -124.175293111999977, 49.718824597000015 ], [ -124.174965000999961, 49.719033994000064 ], [ -124.17504730499999, 49.719636411000131 ], [ -124.174649190999943, 49.71982009900011 ], [ -124.17462418799991, 49.719928412000051 ], [ -124.173830321999901, 49.719757501000089 ], [ -124.173458008999944, 49.719868606000063 ], [ -124.17313759399994, 49.719808716000095 ], [ -124.172897108999962, 49.719649197000074 ], [ -124.172565987999974, 49.719679104000122 ], [ -124.171661607999908, 49.720129195000027 ], [ -124.171416949, 49.720310483000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "0.987915515129278", "sL_AssetLoss": "3379.54", "sL_BldgLoss": "3338.7", "sL_StrLoss": "3112", "sL_NStrLoss": "226.7", "sL_ContLoss": "40.84", "geom_point": "0101000020E6100000869AF8D5620B5FC06B88017D68D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.174110099999922, 49.67758730900011 ], [ -124.174090609999979, 49.67677797000006 ], [ -124.172011941, 49.676799028000062 ], [ -124.171992489, 49.675989687000083 ], [ -124.17323967, 49.67597705600015 ], [ -124.17320072499993, 49.674358376000029 ], [ -124.173616436999922, 49.674354163000061 ], [ -124.173596959999955, 49.673544823000093 ], [ -124.173181253999928, 49.673549035000079 ], [ -124.173155293999955, 49.672469914000018 ], [ -124.174489971999932, 49.672456384000036 ], [ -124.174523258999955, 49.671618162000108 ], [ -124.174710110999939, 49.671706090000093 ], [ -124.175116178999943, 49.671818599000062 ], [ -124.175725280000037, 49.671839892000079 ], [ -124.176551694999958, 49.671624914000063 ], [ -124.176903997999901, 49.671845594000082 ], [ -124.177894221999949, 49.672079206000113 ], [ -124.178047884999955, 49.672194590000032 ], [ -124.178142683000019, 49.672616102000092 ], [ -124.178024414999953, 49.672922293000049 ], [ -124.178475095999886, 49.673205793000093 ], [ -124.178823520999927, 49.673274098000064 ], [ -124.180151376999945, 49.673261584000052 ], [ -124.180119932999986, 49.674055831000075 ], [ -124.183573184999958, 49.674113446000092 ], [ -124.183431051999946, 49.677710055000084 ], [ -124.177892875999973, 49.677617604000048 ], [ -124.178023318999976, 49.674326915000094 ], [ -124.177773823999971, 49.674322744000051 ], [ -124.177799628999963, 49.675391073000121 ], [ -124.176968185999968, 49.675399527000138 ], [ -124.176981209999951, 49.675939086000056 ], [ -124.17656548299999, 49.675943310000065 ], [ -124.176591520999963, 49.677022430000072 ], [ -124.175344313999958, 49.677035097000065 ], [ -124.175357319999975, 49.677574656000111 ], [ -124.174110099999922, 49.67758730900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.983991462113127", "sL_AssetLoss": "1077.55", "sL_BldgLoss": "1060.3", "sL_StrLoss": "953", "sL_NStrLoss": "107.3", "sL_ContLoss": "17.25", "geom_point": "0101000020E610000010AD5789E00B5FC0F0B0815B94D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.1831312, 49.701536676000075 ], [ -124.18323597399997, 49.698887394000067 ], [ -124.18354143199997, 49.698892483000058 ], [ -124.183547970999925, 49.698727101000081 ], [ -124.189088702999925, 49.698819263000097 ], [ -124.189045118999942, 49.699924898000056 ], [ -124.188645487999949, 49.699790100000101 ], [ -124.187966505999952, 49.699824195000076 ], [ -124.186706193999925, 49.700457987000028 ], [ -124.186079498999945, 49.700940812000063 ], [ -124.185130613999917, 49.701211401000144 ], [ -124.183994201999937, 49.701322496000088 ], [ -124.183748200999929, 49.70143218700013 ], [ -124.1831312, 49.701536676000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.975689080413042", "sL_AssetLoss": "2459.8", "sL_BldgLoss": "2400", "sL_StrLoss": "2150", "sL_NStrLoss": "250", "sL_ContLoss": "59.8", "geom_point": "0101000020E6100000340EF5BBF00B5FC02498AC827FD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.182652701999956, 49.686618505000048 ], [ -124.18279492299996, 49.683021942000089 ], [ -124.18281627699993, 49.683022298000012 ], [ -124.18282824, 49.682719741000042 ], [ -124.18635813099999, 49.682778534000157 ], [ -124.186425392, 49.681074027000044 ], [ -124.191964001999921, 49.681166045000111 ], [ -124.191902294999977, 49.682734565000054 ], [ -124.191709110999938, 49.682776405000077 ], [ -124.191335217999949, 49.682726601000091 ], [ -124.191038894999963, 49.682585612000068 ], [ -124.190853888, 49.682389093000054 ], [ -124.190750105999925, 49.682606992000096 ], [ -124.190272599999929, 49.682971597000112 ], [ -124.189957482999887, 49.683091196000085 ], [ -124.188791506999948, 49.683093990000025 ], [ -124.188617102999942, 49.683320511000055 ], [ -124.187490687999912, 49.683700809000122 ], [ -124.186952000999938, 49.683806195000059 ], [ -124.186059593, 49.684156509000047 ], [ -124.18558461899994, 49.685114996000109 ], [ -124.184692410999972, 49.685555096000122 ], [ -124.184590214999972, 49.685835607000065 ], [ -124.184633414999936, 49.685906904000085 ], [ -124.18563708, 49.686148997000075 ], [ -124.186384122999982, 49.686114805000066 ], [ -124.186830313999977, 49.686181705000067 ], [ -124.187296994999897, 49.68604220800011 ], [ -124.188245262, 49.685901065000074 ], [ -124.188225254999963, 49.686408514000028 ], [ -124.1882039, 49.686408160000106 ], [ -124.18819197, 49.686710714000121 ], [ -124.182652701999956, 49.686618505000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.894291271021622", "sL_AssetLoss": "8741", "sL_BldgLoss": "7817", "sL_StrLoss": "5830", "sL_NStrLoss": "1987", "sL_ContLoss": "924", "geom_point": "0101000020E6100000F087E11BF1F85EC0852AF35E4EDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.890142631999964, 49.748657801000085 ], [ -123.890137693999947, 49.748388 ], [ -123.88930492899999, 49.748394396000094 ], [ -123.889299994999973, 49.748124595000021 ], [ -123.888467234999936, 49.748130985000088 ], [ -123.888462306999969, 49.747861183000083 ], [ -123.887629549999986, 49.747867567000092 ], [ -123.88761970299997, 49.747327965000068 ], [ -123.887203328999973, 49.747331154000051 ], [ -123.887198407999975, 49.747061354000053 ], [ -123.886782035999914, 49.747064541000022 ], [ -123.886772199999939, 49.746524939000047 ], [ -123.886355832999953, 49.746528125000069 ], [ -123.886346, 49.745988523000051 ], [ -123.885929636999947, 49.745991709000101 ], [ -123.885914896999978, 49.745182304000053 ], [ -123.886747607999936, 49.745175933 ], [ -123.886742689999906, 49.744906133 ], [ -123.887991748, 49.744896565000069 ], [ -123.887986824, 49.744626764000067 ], [ -123.888403174999951, 49.744623572000137 ], [ -123.888388392999957, 49.743814168 ], [ -123.887972049999973, 49.743817360000087 ], [ -123.88795235100001, 49.742738155 ], [ -123.887536016999945, 49.742741345000084 ], [ -123.887506484999946, 49.741122539000109 ], [ -123.887922805999921, 49.741119348000076 ], [ -123.887917881999982, 49.74084954700006 ], [ -123.88875051799999, 49.740843162000026 ], [ -123.888745590999989, 49.740573361000038 ], [ -123.891243482999982, 49.740554170000074 ], [ -123.891253368999955, 49.741093772000056 ], [ -123.89166968799999, 49.74109056900005 ], [ -123.891689469, 49.742169772000075 ], [ -123.892105796999942, 49.742166567000034 ], [ -123.892131615999972, 49.743574487000053 ], [ -123.893612229999945, 49.74360307200007 ], [ -123.893549592999989, 49.744024605000028 ], [ -123.893414296999964, 49.74420548700013 ], [ -123.892671013999916, 49.744544405000049 ], [ -123.892247413999939, 49.744907607000087 ], [ -123.891857418999962, 49.745567001999987 ], [ -123.891646007999952, 49.746197885000065 ], [ -123.891615302, 49.746828792000045 ], [ -123.891698406999978, 49.747165157000069 ], [ -123.890947910999927, 49.747150658000102 ], [ -123.89095563299999, 49.747572196000085 ], [ -123.89137200899998, 49.747568992000048 ], [ -123.891376951999987, 49.747838794000103 ], [ -123.89179333099996, 49.747835589000076 ], [ -123.891808169999962, 49.748644991000099 ], [ -123.890142631999964, 49.748657801000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.961297909873309", "sL_AssetLoss": "1870.7", "sL_BldgLoss": "1798.3", "sL_StrLoss": "1490", "sL_NStrLoss": "308.3", "sL_ContLoss": "72.4", "geom_point": "0101000020E6100000BEC5DC18AFF95EC0D0841E185DE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.900921977999957, 49.754324184000026 ], [ -123.900982863999914, 49.752993370000127 ], [ -123.897357127999939, 49.752923595000055 ], [ -123.897449509999902, 49.7509077140001 ], [ -123.897563191999922, 49.750920610000023 ], [ -123.898147594999955, 49.751058701000055 ], [ -123.898481005999926, 49.751065887000081 ], [ -123.899047897999949, 49.750845093000102 ], [ -123.8993526, 49.750852200000111 ], [ -123.899674483999902, 49.750966205000026 ], [ -123.90051678399999, 49.75154439100006 ], [ -123.901410308999971, 49.752545584000067 ], [ -123.901785688999936, 49.752605400000093 ], [ -123.902390500999971, 49.752249393000042 ], [ -123.902849303999986, 49.752236592000045 ], [ -123.904357900999926, 49.752764890000016 ], [ -123.904569607999932, 49.752907407000066 ], [ -123.904659102999929, 49.75323919200008 ], [ -123.905726106999936, 49.75397690700008 ], [ -123.90648151, 49.754152387000062 ], [ -123.906468809999964, 49.754430695000067 ], [ -123.900921977999957, 49.754324184000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.979920405209841", "sL_AssetLoss": "552.8", "sL_BldgLoss": "541.7", "sL_StrLoss": "507", "sL_NStrLoss": "34.7", "sL_ContLoss": "11.1", "geom_point": "0101000020E6100000593C0EE6A3035FC0515EB74A28DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.05532380599999, 49.743383684000086 ], [ -124.05509768899999, 49.74261181100011 ], [ -124.055256498999967, 49.742242908000051 ], [ -124.055673304999956, 49.742230106000129 ], [ -124.056802017999942, 49.7431101990001 ], [ -124.057150795999988, 49.743187094000142 ], [ -124.057708696999967, 49.742670214000064 ], [ -124.057749892999979, 49.742003598000039 ], [ -124.058033597999923, 49.741631910000109 ], [ -124.058488016999959, 49.741483795000057 ], [ -124.058711637999963, 49.741470168000049 ], [ -124.05858275699994, 49.744516869000073 ], [ -124.054335308999953, 49.744441237000046 ], [ -124.054542292999912, 49.743840916000067 ], [ -124.054745985999915, 49.743695607000056 ], [ -124.055174805999954, 49.743574502000051 ], [ -124.05532380599999, 49.743383684000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.952076677316294", "sL_AssetLoss": "939", "sL_BldgLoss": "894", "sL_StrLoss": "777", "sL_NStrLoss": "117", "sL_ContLoss": "45", "geom_point": "0101000020E6100000487C59A03E0A5FC00D399590B8E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.157574629999957, 49.757039079000059 ], [ -124.157582092999974, 49.756853255000095 ], [ -124.157541895999941, 49.756852577000075 ], [ -124.157585242999957, 49.755773180000048 ], [ -124.158344416999938, 49.75576580200007 ], [ -124.159421706, 49.754972489000117 ], [ -124.160026101999975, 49.754687599000057 ], [ -124.160996597999912, 49.754587889000092 ], [ -124.161504592999975, 49.754384314000085 ], [ -124.161781919999953, 49.754372905000096 ], [ -124.16239662, 49.754538107000037 ], [ -124.162581295999985, 49.754716108000089 ], [ -124.162571217999954, 49.754895594000061 ], [ -124.1620400899999, 49.755261611000059 ], [ -124.161658995999943, 49.755660389000134 ], [ -124.161512298000019, 49.75591388600003 ], [ -124.161480518999952, 49.756265697000046 ], [ -124.161235009999984, 49.756456491000037 ], [ -124.160945290999919, 49.756540489000017 ], [ -124.16047359, 49.756536310000101 ], [ -124.160120002999975, 49.7562785060001 ], [ -124.159786882999953, 49.756291295000032 ], [ -124.158160601999938, 49.756784109000115 ], [ -124.157574629999957, 49.757039079000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.98750943935343", "sL_AssetLoss": "979.94", "sL_BldgLoss": "967.7", "sL_StrLoss": "902", "sL_NStrLoss": "65.7", "sL_ContLoss": "12.24", "geom_point": "0101000020E6100000499F77DF880A5FC070D31BC5A4DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.163260311999977, 49.710051643000057 ], [ -124.163267631999986, 49.709868587000052 ], [ -124.162789305999965, 49.709860531000082 ], [ -124.162933155999923, 49.706264111000117 ], [ -124.167204493, 49.706335979000073 ], [ -124.166896207000022, 49.706523697000087 ], [ -124.166736710999956, 49.706812802000066 ], [ -124.165705123999956, 49.707237204000066 ], [ -124.16566180299999, 49.707687296000088 ], [ -124.165762605999959, 49.707848208000115 ], [ -124.166332386999926, 49.707878107000049 ], [ -124.166570685, 49.70802910500008 ], [ -124.16660310499999, 49.708235595000126 ], [ -124.166351801999895, 49.708732686000069 ], [ -124.16635318099999, 49.70936220400003 ], [ -124.16589424299994, 49.710095968000054 ], [ -124.163260311999977, 49.710051643000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.991372138901433", "sL_AssetLoss": "420.73", "sL_BldgLoss": "417.1", "sL_StrLoss": "403", "sL_NStrLoss": "14.1", "sL_ContLoss": "3.63", "geom_point": "0101000020E610000002CC425CB50B5FC08CF1E52E57DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.182385156999914, 49.744424534000061 ], [ -124.1823786, 49.744154758000057 ], [ -124.183627522999956, 49.744142003000071 ], [ -124.183634087999948, 49.74441177900011 ], [ -124.184883017999965, 49.744399011000013 ], [ -124.184902729999976, 49.745208339000023 ], [ -124.182821147999903, 49.745229612000053 ], [ -124.182827706999916, 49.74549938800002 ], [ -124.181162426999904, 49.745516380000048 ], [ -124.181142775999945, 49.744707052000088 ], [ -124.181559088999947, 49.744702806000092 ], [ -124.181552535999984, 49.744433030000032 ], [ -124.182385156999914, 49.744424534000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.988851187590887", "sL_AssetLoss": "474.49", "sL_BldgLoss": "469.2", "sL_StrLoss": "431", "sL_NStrLoss": "38.2", "sL_ContLoss": "5.29", "geom_point": "0101000020E6100000B6FF1A738B0C5FC06607A6E4E6DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.19607027499994, 49.7421252930001 ], [ -124.19606364199997, 49.741855519000083 ], [ -124.193982209999973, 49.741876992000122 ], [ -124.193975589000033, 49.741607216000105 ], [ -124.193559304999937, 49.741611507000115 ], [ -124.193539448999985, 49.740802180000109 ], [ -124.19603711299996, 49.740776419000042 ], [ -124.19604374499994, 49.741046194000091 ], [ -124.198541417999962, 49.741020377000076 ], [ -124.198561356999932, 49.741829701000093 ], [ -124.197728786999946, 49.74183831300013 ], [ -124.19773542800003, 49.742108087000062 ], [ -124.19607027499994, 49.7421252930001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.989179973479235", "sL_AssetLoss": "897.41", "sL_BldgLoss": "887.7", "sL_StrLoss": "834", "sL_NStrLoss": "53.7", "sL_ContLoss": "9.71", "geom_point": "0101000020E61000000EE51B3C99095FC06A2E9A42A5DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.14841494299999, 49.748861359000081 ], [ -124.148560040999911, 49.745265157000077 ], [ -124.151335733999957, 49.745312202000036 ], [ -124.151015580999925, 49.745873198000112 ], [ -124.150148400999939, 49.746763290000082 ], [ -124.150165889999982, 49.746915691000062 ], [ -124.150306091999965, 49.746995512000105 ], [ -124.151661292999933, 49.74672058900007 ], [ -124.15187122, 49.746880101000038 ], [ -124.151947304999922, 49.747149312000069 ], [ -124.151703089999927, 49.74735010600007 ], [ -124.151693991999977, 49.747548113000086 ], [ -124.151823383999968, 49.748919119000071 ], [ -124.14841494299999, 49.748861359000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.973759647188534", "sL_AssetLoss": "1360.5", "sL_BldgLoss": "1324.8", "sL_StrLoss": "1175", "sL_NStrLoss": "149.8", "sL_ContLoss": "35.7", "geom_point": "0101000020E6100000754BBC4D89055FC0DBB253DED4D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.087014698999951, 49.671473898000045 ], [ -124.08668249699997, 49.671441193000085 ], [ -124.086460497999923, 49.671461108000102 ], [ -124.086201112000012, 49.671599307000093 ], [ -124.08571121199995, 49.671414092000084 ], [ -124.084934289999964, 49.671385593000082 ], [ -124.084588890999925, 49.671442603000109 ], [ -124.084339196999963, 49.671391314000111 ], [ -124.084042083999947, 49.670575207000155 ], [ -124.084097504999988, 49.669864605000086 ], [ -124.083899207999977, 49.669722185000118 ], [ -124.083726991999953, 49.66919728900006 ], [ -124.088584603999919, 49.669282610000067 ], [ -124.088435054999977, 49.672879118000019 ], [ -124.087540070999964, 49.672863415000037 ], [ -124.087347676999954, 49.672721494000029 ], [ -124.087567991999961, 49.671982412000091 ], [ -124.087295311999924, 49.67164340500004 ], [ -124.087014698999951, 49.671473898000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.980765868158769", "sL_AssetLoss": "1143.8", "sL_BldgLoss": "1121.8", "sL_StrLoss": "1022", "sL_NStrLoss": "99.8", "sL_ContLoss": "22", "geom_point": "0101000020E6100000A3CA720A590C5FC0194C0D7E2CD64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.192343508999983, 49.672371195000061 ], [ -124.192602089, 49.672188896000058 ], [ -124.192538876999933, 49.671892596000134 ], [ -124.192878392999944, 49.671629210000056 ], [ -124.192875777999959, 49.671547994000065 ], [ -124.192611581999955, 49.671486698000059 ], [ -124.192622892999935, 49.671342904 ], [ -124.193172503, 49.671130711000075 ], [ -124.193298109999915, 49.671191901000128 ], [ -124.193220307999979, 49.67142689100011 ], [ -124.193083289999933, 49.671518110000079 ], [ -124.193182905999947, 49.671562195000021 ], [ -124.19317598399995, 49.671841399000144 ], [ -124.192998113999963, 49.67195959 ], [ -124.193073796999926, 49.672220192000047 ], [ -124.193629288999944, 49.672312793000074 ], [ -124.194513015, 49.672187496000049 ], [ -124.195183497999921, 49.672324189000108 ], [ -124.19562913599999, 49.67230433800006 ], [ -124.195558526999918, 49.674103166000108 ], [ -124.19530828, 49.674099022000085 ], [ -124.195302922999957, 49.67423547100001 ], [ -124.189765141999928, 49.67414362100007 ], [ -124.189811135999932, 49.672975726000097 ], [ -124.190719205999926, 49.672846892000109 ], [ -124.192124081999978, 49.672509302000037 ], [ -124.192343508999983, 49.672371195000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189083", "BldgCostT": "4268333", "sL_LossRatio": "0.967453359159955", "sL_AssetLoss": "7847.2", "sL_BldgLoss": "7591.8", "sL_StrLoss": "6332.1", "sL_NStrLoss": "1259.7", "sL_ContLoss": "255.4", "geom_point": "0101000020E61000007EC57D582D015FC073F2A64B14D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.023618274999976, 49.661911319000076 ], [ -124.023702759999978, 49.659945778000079 ], [ -124.021542157999974, 49.659906559000056 ], [ -124.021547143999896, 49.660144645000067 ], [ -124.021962755999951, 49.660140976 ], [ -124.021979710999958, 49.660950360000101 ], [ -124.021148469999957, 49.660957694000103 ], [ -124.021154115999977, 49.661227489000062 ], [ -124.019907247999967, 49.661238479000119 ], [ -124.019901609999948, 49.660968684000053 ], [ -124.019070368999948, 49.660976003000052 ], [ -124.019064732999979, 49.660706208000093 ], [ -124.018649112999967, 49.66070986600004 ], [ -124.018643481999987, 49.660440071 ], [ -124.017396632999976, 49.660451034000083 ], [ -124.017407883999937, 49.660990624000078 ], [ -124.016161021999906, 49.66100157200006 ], [ -124.016155402999956, 49.660731778000041 ], [ -124.015739782999916, 49.660735425000084 ], [ -124.015722932999935, 49.659926040000137 ], [ -124.015307321999956, 49.659929685000101 ], [ -124.015284865999902, 49.658850504000107 ], [ -124.016947276999957, 49.658835915000076 ], [ -124.016941653999936, 49.658566121000071 ], [ -124.017357252999915, 49.658562469000096 ], [ -124.017346002999915, 49.658022879000072 ], [ -124.019008384999921, 49.658008261000084 ], [ -124.018980213999939, 49.65665928600005 ], [ -124.018922014999987, 49.656659798000142 ], [ -124.018892749999921, 49.657339076000028 ], [ -124.013357373999938, 49.657238262000149 ], [ -124.01339029599994, 49.656476207000061 ], [ -124.011000933999966, 49.656432603000056 ], [ -124.011156485, 49.652836119000128 ], [ -124.012992011, 49.652869622000033 ], [ -124.013032262999971, 49.651938028000075 ], [ -124.011668038000025, 49.651913131000136 ], [ -124.011722391999967, 49.650655931000067 ], [ -124.01172892699999, 49.650656602000062 ], [ -124.012021088999958, 49.650622307000084 ], [ -124.012409710999975, 49.65050700400014 ], [ -124.012635330999956, 49.650407554000019 ], [ -124.013660398999917, 49.649955691000066 ], [ -124.014441194999961, 49.649799897000051 ], [ -124.014795606999897, 49.649768597000055 ], [ -124.015031923999956, 49.649779196000097 ], [ -124.01524140199993, 49.649867602000064 ], [ -124.015394102999892, 49.650018790000097 ], [ -124.016101806999956, 49.651043200000068 ], [ -124.016224776999962, 49.651145297000085 ], [ -124.016351199999946, 49.65120070800009 ], [ -124.016523903999939, 49.651209204000068 ], [ -124.01666791300002, 49.651178505000082 ], [ -124.016824796999984, 49.651361394000055 ], [ -124.016801394999973, 49.651420310000084 ], [ -124.016529368999926, 49.651628599000027 ], [ -124.016514098999977, 49.651918994000056 ], [ -124.016681110999954, 49.652315282000089 ], [ -124.016558902999961, 49.6526441890001 ], [ -124.016375725, 49.652975605000051 ], [ -124.016383698999988, 49.653110691000087 ], [ -124.016459608999952, 49.653341485000055 ], [ -124.016440695999933, 49.653619209000055 ], [ -124.016348592000014, 49.653924408000073 ], [ -124.016338899999951, 49.654116790000096 ], [ -124.016401287999955, 49.654469791000125 ], [ -124.01725998799995, 49.655013598000075 ], [ -124.017358083999909, 49.65514771200008 ], [ -124.01750198900001, 49.65550389500001 ], [ -124.01764631199994, 49.655688302000051 ], [ -124.01794400899999, 49.655915089000125 ], [ -124.01815811499992, 49.65602429900008 ], [ -124.018408802999915, 49.656087283000062 ], [ -124.019368878999941, 49.656111101000128 ], [ -124.019557989999939, 49.6561585930001 ], [ -124.019690071999932, 49.65624199600002 ], [ -124.019778308999932, 49.656348896000026 ], [ -124.019667497999976, 49.657636304000093 ], [ -124.019668924999934, 49.658182500000052 ], [ -124.020015184999963, 49.658984297000053 ], [ -124.020110930999948, 49.659343728000103 ], [ -124.020139195999917, 49.659449897000073 ], [ -124.020432319999912, 49.659431 ], [ -124.020582995999916, 49.659372506000103 ], [ -124.020896393999962, 49.659085323000085 ], [ -124.021148194999967, 49.658854595000079 ], [ -124.021809695999934, 49.658480593000078 ], [ -124.022963808, 49.658114598000083 ], [ -124.024397997, 49.657935516000123 ], [ -124.024555796999948, 49.657936590000048 ], [ -124.024652399999965, 49.657937255000078 ], [ -124.0248037, 49.657938310000063 ], [ -124.025239485999975, 49.658012800000037 ], [ -124.025644181999937, 49.658168606000096 ], [ -124.02587668699999, 49.65833389900012 ], [ -124.026113110000011, 49.658569400000118 ], [ -124.02639869799998, 49.659013715000043 ], [ -124.02669419799993, 49.659358302000101 ], [ -124.026938003999973, 49.659582293000042 ], [ -124.027184494999958, 49.659745092000023 ], [ -124.027414773999936, 49.659832093000055 ], [ -124.027714893, 49.659874388000084 ], [ -124.028038395999971, 49.659856794000078 ], [ -124.028472896, 49.659755769000107 ], [ -124.028691695999953, 49.659704890000093 ], [ -124.029133476999974, 49.65964089700006 ], [ -124.02925615299992, 49.659633806000095 ], [ -124.029154235999968, 49.662011611000075 ], [ -124.023618274999976, 49.661911319000076 ] ], [ [ -124.021499931999969, 49.659875217000092 ], [ -124.02151154799995, 49.659605270000021 ], [ -124.02112023699999, 49.65960872200008 ], [ -124.021125883999929, 49.659878516000077 ], [ -124.021499931999969, 49.659875217000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996502658937383", "sL_AssetLoss": "271.349", "sL_BldgLoss": "270.4", "sL_StrLoss": "267", "sL_NStrLoss": "3.4", "sL_ContLoss": "0.949", "geom_point": "0101000020E61000009C5D8CBBA0F65EC0637F972127154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.852928702999961, 50.165848290000042 ], [ -123.852659807999899, 50.16562618600004 ], [ -123.85237920899999, 50.16567321000008 ], [ -123.851843717999984, 50.165496596000025 ], [ -123.851198894999982, 50.16542959500007 ], [ -123.850637184999968, 50.165281499000073 ], [ -123.850452903999937, 50.16519320400004 ], [ -123.850546499999936, 50.164895502000093 ], [ -123.850035201999944, 50.164539511000065 ], [ -123.850285603999964, 50.164411298000047 ], [ -123.851767695999968, 50.164274613000046 ], [ -123.852248918999962, 50.164603597000102 ], [ -123.852962190999961, 50.164499594000127 ], [ -123.852830775999948, 50.164311597000058 ], [ -123.853023376999957, 50.164112196000104 ], [ -123.85326050499999, 50.163975501000067 ], [ -123.853541505999956, 50.164028201000058 ], [ -123.853849278999945, 50.163779594000111 ], [ -123.854241222999917, 50.164172211000093 ], [ -123.854262587999941, 50.164163543000079 ], [ -123.855111966999957, 50.164993481000089 ], [ -123.856167740000032, 50.164495893000037 ], [ -123.856076041999927, 50.166439504000067 ], [ -123.852130201999913, 50.166362681000074 ], [ -123.852335099999905, 50.166267009000151 ], [ -123.852485387999977, 50.166067694000105 ], [ -123.852875892, 50.165939498000064 ], [ -123.852928702999961, 50.165848290000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.968295721999169", "sL_AssetLoss": "1444.6", "sL_BldgLoss": "1398.8", "sL_StrLoss": "1224", "sL_NStrLoss": "174.8", "sL_ContLoss": "45.8", "geom_point": "0101000020E61000003628F5C022055FC036442E9BADD04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.078732932999955, 49.628524566000095 ], [ -124.081934997999923, 49.628581034000021 ], [ -124.082059046999944, 49.628664635000099 ], [ -124.081931932999936, 49.631714109 ], [ -124.081850190999944, 49.631720002000051 ], [ -124.081441883999943, 49.632003404000066 ], [ -124.080952859999968, 49.632163074000047 ], [ -124.07876909, 49.632124557000026 ], [ -124.078529417999974, 49.631851 ], [ -124.078527410999968, 49.63107760600009 ], [ -124.078940723999921, 49.630398304000032 ], [ -124.078262800999966, 49.629801597000075 ], [ -124.078283891999945, 49.62946970600013 ], [ -124.078732932999955, 49.628524566000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.906902086677368", "sL_AssetLoss": "3115", "sL_BldgLoss": "2825", "sL_StrLoss": "2100", "sL_NStrLoss": "725", "sL_ContLoss": "290", "geom_point": "0101000020E61000001B36806DB3F85EC0A6EC1592A3E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.886568063999931, 49.826668065000014 ], [ -123.886558201999961, 49.826128471000089 ], [ -123.885724102, 49.826134848000059 ], [ -123.8857142499999, 49.825595254000049 ], [ -123.883211973999934, 49.825614348000101 ], [ -123.883207062999958, 49.825344551000121 ], [ -123.882790019999902, 49.825347728000047 ], [ -123.882785109999986, 49.82507793000012 ], [ -123.882368067999963, 49.825081106000013 ], [ -123.882353345999917, 49.82427171300008 ], [ -123.882770380999901, 49.824268537000115 ], [ -123.882765469999924, 49.823998739000018 ], [ -123.884433597999973, 49.823986022000092 ], [ -123.88443851699995, 49.824255819000022 ], [ -123.885272584999967, 49.824249452000075 ], [ -123.885277508999977, 49.824519249000062 ], [ -123.885694543999961, 49.824516064000093 ], [ -123.885699469999949, 49.824785861000116 ], [ -123.888957451999957, 49.824760918000081 ], [ -123.888891078999961, 49.824814296000042 ], [ -123.888840411999965, 49.825039307000125 ], [ -123.889019597999948, 49.8257756040001 ], [ -123.889055345999978, 49.82582804700013 ], [ -123.889070390999976, 49.826648898 ], [ -123.886568063999931, 49.826668065000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.974315195605375", "sL_AssetLoss": "1347.1", "sL_BldgLoss": "1312.5", "sL_StrLoss": "1168", "sL_NStrLoss": "144.5", "sL_ContLoss": "34.6", "geom_point": "0101000020E610000031E39624090B5FC0E4A0E7C3F1D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.169496671999937, 49.705206946000061 ], [ -124.169632147999948, 49.701807065000068 ], [ -124.169927331999986, 49.701812020000062 ], [ -124.169939053999968, 49.701517772000052 ], [ -124.170392052999929, 49.701525373000031 ], [ -124.170400645999933, 49.701309583000125 ], [ -124.170673671999964, 49.701314163000056 ], [ -124.170674137, 49.701302489000078 ], [ -124.176215151999912, 49.701395305000077 ], [ -124.176137985999972, 49.703338889000079 ], [ -124.17554170899993, 49.703314987000098 ], [ -124.175238800999963, 49.703407486000074 ], [ -124.174946802999983, 49.703401802000016 ], [ -124.174721695999963, 49.703250898000071 ], [ -124.174729608999925, 49.702944706000032 ], [ -124.174421488999911, 49.702903395000071 ], [ -124.174103673999966, 49.702933295000015 ], [ -124.173970505999975, 49.703124107000065 ], [ -124.173528486999913, 49.703200997000081 ], [ -124.17313521100003, 49.703572786000109 ], [ -124.172570004999926, 49.703678105000044 ], [ -124.172104779999984, 49.704015695000052 ], [ -124.17086881499992, 49.704459997000036 ], [ -124.169910499999943, 49.705026906000107 ], [ -124.169496671999937, 49.705206946000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6235000", "BldgCostT": "4300000", "sL_LossRatio": "0.988268836684387", "sL_AssetLoss": "5050.65", "sL_BldgLoss": "4991.4", "sL_StrLoss": "4671", "sL_NStrLoss": "320.4", "sL_ContLoss": "59.25", "geom_point": "0101000020E61000001408F9A8D8075FC09D970EC61DD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.123052834999953, 49.670348592000074 ], [ -124.123106196999956, 49.669041606000079 ], [ -124.121983876999977, 49.669022267000052 ], [ -124.122015129999951, 49.668257226000044 ], [ -124.121959623999913, 49.668256269000061 ], [ -124.122075996999982, 49.665407386000048 ], [ -124.116644902999937, 49.665313638000093 ], [ -124.116792222, 49.66171705300011 ], [ -124.117022587999926, 49.661721035000021 ], [ -124.117025956999925, 49.661638748000044 ], [ -124.115225277999926, 49.661607609000086 ], [ -124.115372694999905, 49.658011008000095 ], [ -124.120908383, 49.658106639000067 ], [ -124.12087616499997, 49.658895028000067 ], [ -124.120681790999967, 49.658858292000048 ], [ -124.120390900999951, 49.658851192000071 ], [ -124.120019410999987, 49.658989287000118 ], [ -124.119298301999919, 49.658996395000024 ], [ -124.118775687, 49.659137398000055 ], [ -124.118323284000027, 49.659348205000029 ], [ -124.118382984999954, 49.659519107000065 ], [ -124.119243117999972, 49.659617393000111 ], [ -124.119302180999981, 49.659752703000038 ], [ -124.118723603000021, 49.659875204000066 ], [ -124.118699697999915, 49.66004608800008 ], [ -124.118132396999968, 49.660123009000124 ], [ -124.117940882999946, 49.660188503000022 ], [ -124.117941976999958, 49.660296697000049 ], [ -124.118345503999961, 49.660319490000063 ], [ -124.118405903999971, 49.660525993000093 ], [ -124.11927528699999, 49.661003108000095 ], [ -124.120079806999954, 49.661678194000025 ], [ -124.12008810399999, 49.661948801000051 ], [ -124.120229982999916, 49.662118296000074 ], [ -124.120151187999966, 49.662901605000073 ], [ -124.119803506, 49.663489801000026 ], [ -124.11982118799996, 49.66366929100014 ], [ -124.119918607000031, 49.663704897000073 ], [ -124.119869981999955, 49.663929892000105 ], [ -124.119320389999942, 49.664186192000038 ], [ -124.119132003999965, 49.664368485000061 ], [ -124.119191600999969, 49.66454800400011 ], [ -124.119331205999984, 49.664627704000097 ], [ -124.11983289399997, 49.664721700000051 ], [ -124.120289403999919, 49.664707485000129 ], [ -124.120613319999947, 49.664318701000084 ], [ -124.12142979, 49.663726193000052 ], [ -124.121953995999917, 49.663549586000059 ], [ -124.122487853999928, 49.663552191000093 ], [ -124.12245207199993, 49.664428429000083 ], [ -124.125808774999882, 49.664486223000054 ], [ -124.125825619999901, 49.664072982000071 ], [ -124.12663885799995, 49.664086969000032 ], [ -124.126720807, 49.664160610000053 ], [ -124.126827505999955, 49.664644785000064 ], [ -124.126033902999936, 49.66566880900011 ], [ -124.125322689999948, 49.666061898000088 ], [ -124.125287201999953, 49.666324005000071 ], [ -124.125019896999973, 49.66677551300009 ], [ -124.125070919999956, 49.667162807000039 ], [ -124.125183777999965, 49.667259694000059 ], [ -124.125145804999974, 49.66744058700008 ], [ -124.124970698999945, 49.667585789000036 ], [ -124.124420287999897, 49.667753906000065 ], [ -124.123411397000012, 49.667862088000064 ], [ -124.122847007999937, 49.66809289 ], [ -124.122712710999949, 49.668219597000103 ], [ -124.122906617999973, 49.668272294000069 ], [ -124.124906397999951, 49.667856399000073 ], [ -124.125378414999957, 49.667842208000124 ], [ -124.125536501999974, 49.668075812000112 ], [ -124.125358985, 49.668229602000103 ], [ -124.125625790999976, 49.668424708000103 ], [ -124.126265515999961, 49.668454594000075 ], [ -124.126665798999952, 49.668397590000012 ], [ -124.126705292999986, 49.668279402000067 ], [ -124.127574287999934, 49.668099991000062 ], [ -124.127818204, 49.667863584000024 ], [ -124.128624407999922, 49.667424902000057 ], [ -124.128514805999927, 49.66740780500006 ], [ -124.128128707999963, 49.667572990000082 ], [ -124.127477106999947, 49.667553090000084 ], [ -124.12729661599991, 49.667491791000025 ], [ -124.127180407999916, 49.667258286000049 ], [ -124.126703905999989, 49.66705599600008 ], [ -124.126685301999913, 49.666849484000068 ], [ -124.1268991099999, 49.666460687000068 ], [ -124.126932195, 49.666145997000058 ], [ -124.127355086999941, 49.665818406000021 ], [ -124.127670695999925, 49.66574290300013 ], [ -124.129525611999952, 49.665653203000076 ], [ -124.130082099999953, 49.665755707000152 ], [ -124.130410005999963, 49.665473698000014 ], [ -124.131297189999927, 49.665764105000051 ], [ -124.13126033199994, 49.666670891000081 ], [ -124.130506891999943, 49.666687203000052 ], [ -124.129836494999978, 49.667061694000061 ], [ -124.129951589999962, 49.66728529100012 ], [ -124.130410002999938, 49.667316697000075 ], [ -124.130944006, 49.667600093000068 ], [ -124.13110848800001, 49.667499011000039 ], [ -124.131157787999911, 49.667300999000147 ], [ -124.131234486999929, 49.667306751000076 ], [ -124.131215871999984, 49.667764673000072 ], [ -124.130144914999903, 49.667746299000065 ], [ -124.130085311999935, 49.669211698 ], [ -124.129601427999901, 49.669203393000089 ], [ -124.129561148000022, 49.670193408000046 ], [ -124.128600889999959, 49.670176921000106 ], [ -124.128590023999919, 49.670443832000025 ], [ -124.123052834999953, 49.670348592000074 ] ], [ [ -124.122353557999929, 49.66466394900003 ], [ -124.122361994999949, 49.664457369000125 ], [ -124.122220446999933, 49.664454929000058 ], [ -124.122212008999966, 49.66466151000008 ], [ -124.122353557999929, 49.66466394900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.949368074118288", "sL_AssetLoss": "11559.9", "sL_BldgLoss": "10974.6", "sL_StrLoss": "8823.6", "sL_NStrLoss": "2151", "sL_ContLoss": "585.3", "geom_point": "0101000020E610000026D35746D9035FC07250E35AC4D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.057603635999897, 49.659169013000081 ], [ -124.057663497, 49.657751905000104 ], [ -124.056084082, 49.657723730000072 ], [ -124.054241198999975, 49.657690828000085 ], [ -124.05424872899998, 49.657512876000069 ], [ -124.053696791, 49.657503014000085 ], [ -124.05384900599995, 49.653906477000142 ], [ -124.054873561999969, 49.653924778000011 ], [ -124.05488147599999, 49.653737702000051 ], [ -124.05528749299998, 49.653744952000103 ], [ -124.055300675999888, 49.653433211000056 ], [ -124.055629679999981, 49.653439084000063 ], [ -124.055637873999899, 49.653245318000074 ], [ -124.056277837999929, 49.653256741000064 ], [ -124.05628535799994, 49.653078835000102 ], [ -124.056896882999979, 49.653089746000084 ], [ -124.05690914899999, 49.652799449000014 ], [ -124.057337735999923, 49.652807094000089 ], [ -124.057345640999984, 49.652619959000027 ], [ -124.05773801299992, 49.652626957000045 ], [ -124.057744532999905, 49.652472569000047 ], [ -124.058206053999967, 49.652480798000092 ], [ -124.058211421999957, 49.652353680000012 ], [ -124.058636179999951, 49.652361252000077 ], [ -124.058641011999967, 49.652246791000024 ], [ -124.059236935999962, 49.652257411000043 ], [ -124.059245097999948, 49.652064005000135 ], [ -124.05968936099994, 49.652071920000033 ], [ -124.059709506, 49.651594415000055 ], [ -124.0604365, 49.651607363000025 ], [ -124.060426780999933, 49.651160043000054 ], [ -124.060011248999956, 49.651163849000035 ], [ -124.060005389, 49.650894057000123 ], [ -124.059589859999917, 49.650897860000065 ], [ -124.059601575999977, 49.651437445000091 ], [ -124.059186039999929, 49.651441247000051 ], [ -124.059191895999959, 49.651711038 ], [ -124.058776359999982, 49.651714840000089 ], [ -124.058782211999983, 49.651984630000086 ], [ -124.057596038, 49.651995472000067 ], [ -124.058070124999972, 49.651669073000079 ], [ -124.058335718999956, 49.651446155000038 ], [ -124.059041084999961, 49.650646169000048 ], [ -124.059226917999979, 49.650508214000055 ], [ -124.059467714999968, 49.650380245000072 ], [ -124.059968078999958, 49.650204676000016 ], [ -124.060269759999969, 49.650012099000094 ], [ -124.060985042999945, 49.649205094000074 ], [ -124.061110898, 49.649175845000066 ], [ -124.061220305999896, 49.649207486000101 ], [ -124.061373388999982, 49.648861099000101 ], [ -124.061436777999958, 49.648442 ], [ -124.061369010999954, 49.647815418000036 ], [ -124.061398500999928, 49.647643149000082 ], [ -124.062012591, 49.647637517000113 ], [ -124.062041941999908, 49.648986475000051 ], [ -124.062872966, 49.648978849000109 ], [ -124.062878842999908, 49.649248641000021 ], [ -124.066202958999938, 49.649218076000118 ], [ -124.066213591999926, 49.649704828000104 ], [ -124.066239328000023, 49.650882940000038 ], [ -124.064383046999964, 49.650958636000077 ], [ -124.064072488999969, 49.653171019000069 ], [ -124.063601227999953, 49.653226096000019 ], [ -124.063603414999989, 49.653533479000025 ], [ -124.063804833999981, 49.653540604000085 ], [ -124.063721116999915, 49.653981670000107 ], [ -124.06378057799999, 49.654662593000076 ], [ -124.065123242999945, 49.654570355000033 ], [ -124.065092987999947, 49.655289441000015 ], [ -124.064648691999977, 49.655281547000065 ], [ -124.06462859599999, 49.655759051000089 ], [ -124.064032624999967, 49.655748460000034 ], [ -124.064024482999983, 49.655941866000063 ], [ -124.063622007, 49.655934712000075 ], [ -124.063497034999898, 49.658902370000106 ], [ -124.063354745999945, 49.658899841000043 ], [ -124.063345839999954, 49.659111274000068 ], [ -124.063146074999963, 49.659107722000059 ], [ -124.063139341999914, 49.659267578000026 ], [ -124.057603635999897, 49.659169013000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.975747001090512", "sL_AssetLoss": "1834", "sL_BldgLoss": "1789.52", "sL_StrLoss": "1602.62", "sL_NStrLoss": "186.9", "sL_ContLoss": "44.48", "geom_point": "0101000020E6100000137916AD71025FC03D714A8AD9D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.03589089899999, 49.680383592000041 ], [ -124.035900427999962, 49.680160613000041 ], [ -124.034793871999966, 49.680140665000053 ], [ -124.034947640999974, 49.676544269 ], [ -124.0404853899999, 49.676643984000087 ], [ -124.040475882999957, 49.676866965000052 ], [ -124.041582361999986, 49.676886856000124 ], [ -124.041429111999918, 49.680483259000106 ], [ -124.03589089899999, 49.680383592000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.966387726638773", "sL_AssetLoss": "717", "sL_BldgLoss": "692.9", "sL_StrLoss": "625", "sL_NStrLoss": "67.9", "sL_ContLoss": "24.1", "geom_point": "0101000020E610000044AE8A26060D5FC0883A83F199DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.202578585000012, 49.707499299000048 ], [ -124.202864481999967, 49.706731597000029 ], [ -124.20328300299991, 49.706258800000086 ], [ -124.203388198999946, 49.705996804000108 ], [ -124.203538189999975, 49.705914203000077 ], [ -124.203742409999933, 49.705950017000077 ], [ -124.20368421, 49.70743822100011 ], [ -124.204598743999952, 49.707453280999985 ], [ -124.204554182, 49.708593305000122 ], [ -124.204289011999904, 49.708766802000142 ], [ -124.20393619399999, 49.70911289100011 ], [ -124.203604190999926, 49.709152811000131 ], [ -124.20343568399997, 49.7090645010001 ], [ -124.203046906999973, 49.709050306000094 ], [ -124.202849182999927, 49.708880792000087 ], [ -124.202538394999948, 49.708137312000069 ], [ -124.202578585000012, 49.707499299000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.961558175294721", "sL_AssetLoss": "975.5", "sL_BldgLoss": "938", "sL_StrLoss": "765", "sL_NStrLoss": "173", "sL_ContLoss": "37.5", "geom_point": "0101000020E61000001CD98D25890C5FC01C0C544AF8DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.19368478799997, 49.749237206 ], [ -124.1942524, 49.749140288000028 ], [ -124.195445003000017, 49.749173108000065 ], [ -124.195764410999956, 49.74910758900009 ], [ -124.19584481699998, 49.749051996000091 ], [ -124.195647183999967, 49.74885690400005 ], [ -124.195672983999927, 49.748775697000056 ], [ -124.19594549699994, 49.748583492000087 ], [ -124.196250089, 49.748562097000061 ], [ -124.196556583999921, 49.748594893000096 ], [ -124.196812215999941, 49.74887119800006 ], [ -124.197476786999971, 49.749314093000059 ], [ -124.197670499999944, 49.749833895000087 ], [ -124.197646417, 49.750014806000102 ], [ -124.197297324999951, 49.75048620399999 ], [ -124.196844695999985, 49.750759705000114 ], [ -124.196471816999974, 49.750818102000018 ], [ -124.19642101, 49.751016002000064 ], [ -124.196172476999962, 49.751064399000072 ], [ -124.195922185999976, 49.751013194000123 ], [ -124.196025792999976, 49.750778191000073 ], [ -124.194767382999885, 49.750340905000058 ], [ -124.19404872299998, 49.749962105000044 ], [ -124.193567487999957, 49.749534795000059 ], [ -124.193505807999941, 49.74933689900007 ], [ -124.19368478799997, 49.749237206 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "0.948369989081267", "sL_AssetLoss": "8975.4", "sL_BldgLoss": "8512", "sL_StrLoss": "7007", "sL_NStrLoss": "1505", "sL_ContLoss": "463.4", "geom_point": "0101000020E61000002EC2FB47F2FF5EC07639A1E781C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.997220874999982, 49.562509849000051 ], [ -123.997203489999919, 49.561033185000099 ], [ -123.997257202999904, 49.560529287000072 ], [ -123.997282801999972, 49.560417203000092 ], [ -123.99742170499999, 49.560146188000097 ], [ -123.998254431999925, 49.559111757000089 ], [ -123.998273286, 49.559088295000052 ], [ -123.998455799999945, 49.558770286000026 ], [ -123.998632726999944, 49.558377298000089 ], [ -123.998857980999958, 49.557876901000022 ], [ -123.999023192999957, 49.557414610000109 ], [ -123.999079205999962, 49.557080006 ], [ -123.99906688199999, 49.556885396000069 ], [ -123.998982314, 49.556606606000059 ], [ -123.99876593, 49.556251803000066 ], [ -123.99869591099997, 49.556136992000077 ], [ -123.998454471999977, 49.555872399000094 ], [ -123.99812661, 49.555625188000121 ], [ -123.997820963999942, 49.555460917000033 ], [ -123.997766086999945, 49.555431415000065 ], [ -123.996388996999968, 49.554907400000083 ], [ -123.995939306999958, 49.554667807000051 ], [ -123.995587493999921, 49.554431803000107 ], [ -123.995172155999967, 49.554035297000077 ], [ -123.994928089999945, 49.553802306000115 ], [ -123.994232654999962, 49.553090113000103 ], [ -123.99380228499993, 49.552649393000138 ], [ -123.993396000999951, 49.552334092000088 ], [ -123.992905006999976, 49.552026202 ], [ -123.992648574999947, 49.551889228000093 ], [ -123.992670587999953, 49.551383731000016 ], [ -123.993951479999922, 49.551272603000072 ], [ -123.994457202999939, 49.551522706000121 ], [ -123.994991015999958, 49.551941501000094 ], [ -123.995311612999913, 49.552082503000058 ], [ -123.996240584999924, 49.552263294000085 ], [ -123.996634121999961, 49.552556700000139 ], [ -123.99680071399996, 49.553238904000075 ], [ -123.996940391999971, 49.553337210000024 ], [ -123.997231714999955, 49.553406991000053 ], [ -123.998781305999927, 49.553419792000042 ], [ -123.998939689999986, 49.553697493000115 ], [ -123.998932813999943, 49.55402079900005 ], [ -124.001028409999975, 49.555091787000016 ], [ -124.001711099999937, 49.555338202000094 ], [ -124.001686894, 49.556282400000065 ], [ -124.001568302999956, 49.556480403000116 ], [ -124.001280111999975, 49.556618604000079 ], [ -124.001243104999929, 49.556852090000042 ], [ -124.001795616999914, 49.557531507000057 ], [ -124.00190838899999, 49.558232204000035 ], [ -124.002362094999981, 49.558867398000125 ], [ -124.002471117999946, 49.559405701000081 ], [ -124.002898203999948, 49.560049510000056 ], [ -124.00306269899994, 49.560614903000051 ], [ -124.003514107999976, 49.561060710000056 ], [ -124.00350522399999, 49.561331304000127 ], [ -124.003160013999903, 49.561324091000102 ], [ -124.002823505999928, 49.561147497000064 ], [ -124.002762005999955, 49.562172983000046 ], [ -124.002642189999989, 49.562336800000082 ], [ -124.00171671, 49.5623708890001 ], [ -124.001240492999941, 49.562168707000112 ], [ -124.000743688999961, 49.562137412000048 ], [ -124.0007255, 49.562622991000111 ], [ -124.000797893999973, 49.562748397000057 ], [ -124.001171792000022, 49.562799609000088 ], [ -124.001440013999982, 49.563129991000061 ], [ -124.002350000999968, 49.563661313000082 ], [ -124.002492190999973, 49.563876289000042 ], [ -124.002529261999939, 49.564432613000115 ], [ -123.997244817999956, 49.564335372000052 ], [ -123.997234364999926, 49.563661583000055 ], [ -123.997232723999929, 49.563517140000094 ], [ -123.997220874999982, 49.562509849000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.986925408987967", "sL_AssetLoss": "1382.07", "sL_BldgLoss": "1364", "sL_StrLoss": "1282", "sL_NStrLoss": "82", "sL_ContLoss": "18.07", "geom_point": "0101000020E6100000857A3C25CE0C5FC021EF8FD69CDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.198915915999947, 49.710958368000085 ], [ -124.19901549399999, 49.70841896000006 ], [ -124.198100944, 49.708403853000085 ], [ -124.198242023999939, 49.704807380000055 ], [ -124.202500264999927, 49.704877651000068 ], [ -124.202391216999928, 49.704964204000099 ], [ -124.201965903, 49.705157888000052 ], [ -124.201136414999965, 49.705300307000115 ], [ -124.200162592999959, 49.705679187000023 ], [ -124.200219303999972, 49.705778907000067 ], [ -124.200607888999954, 49.705801605000019 ], [ -124.200986704999963, 49.705941204000055 ], [ -124.20117079100001, 49.706127788000096 ], [ -124.201293215999925, 49.707107595000096 ], [ -124.201482984999984, 49.707554791000092 ], [ -124.201781593999939, 49.707848192000064 ], [ -124.201779399999936, 49.708316814000064 ], [ -124.202016692999962, 49.708880797000134 ], [ -124.202072602999976, 49.709491810000046 ], [ -124.202329792999947, 49.709768104000077 ], [ -124.202298011999943, 49.710172496999988 ], [ -124.20180439899994, 49.710403286000052 ], [ -124.201642489999955, 49.710602588000086 ], [ -124.201645818999935, 49.710765006000052 ], [ -124.202085817999915, 49.711010668000043 ], [ -124.198915915999947, 49.710958368000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.969854248133665", "sL_AssetLoss": "1406.5", "sL_BldgLoss": "1364.1", "sL_StrLoss": "1196", "sL_NStrLoss": "168.1", "sL_ContLoss": "42.4", "geom_point": "0101000020E61000008404B5ADE0FF5EC01A0CBFE5FBCF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.999875098999894, 49.623928446000058 ], [ -123.999932847999986, 49.622599720000061 ], [ -124.000009141999939, 49.622605408000027 ], [ -124.001553297999962, 49.622720512000029 ], [ -124.000827254999962, 49.626220168000067 ], [ -124.00000000299994, 49.62626808800006 ], [ -123.99876058699999, 49.626233904000067 ], [ -123.997525915999987, 49.626118494000103 ], [ -123.995855310999929, 49.625736893000088 ], [ -123.995677397999927, 49.625733252000039 ], [ -123.99279369599999, 49.625674190000062 ], [ -123.992109978999963, 49.625382192000089 ], [ -123.992156028999887, 49.625248691000131 ], [ -123.992467114999954, 49.625254428000069 ], [ -123.992477195000035, 49.625023335000101 ], [ -123.99259891, 49.624955006000057 ], [ -123.992604801999974, 49.624916250000076 ], [ -123.993438052999949, 49.624931614000083 ], [ -123.993445635999976, 49.624757708000061 ], [ -123.99562073099996, 49.624797784000094 ], [ -123.996753035999973, 49.624818629000046 ], [ -123.996794253999923, 49.623871788000017 ], [ -123.999875098999894, 49.623928446000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17943751", "BldgCostT": "12375001", "sL_LossRatio": "0.96711145268793", "sL_AssetLoss": "22640.1", "sL_BldgLoss": "21895.5", "sL_StrLoss": "19078", "sL_NStrLoss": "2817.5", "sL_ContLoss": "744.6", "geom_point": "0101000020E61000009AAA5A568A005FC0066C072376CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.016596986999929, 49.595954106000129 ], [ -124.016381103999919, 49.59592679600005 ], [ -124.016037886999982, 49.595929489000106 ], [ -124.015269805999949, 49.59603880500007 ], [ -124.014683582999908, 49.596064103000046 ], [ -124.014076006999971, 49.596042198000077 ], [ -124.013684568999963, 49.595977391000105 ], [ -124.012877406999934, 49.595710702000076 ], [ -124.012433470999937, 49.595644999000108 ], [ -124.012162238999949, 49.595623552000049 ], [ -124.012251363999951, 49.593558889000086 ], [ -124.011878951999975, 49.593552083000077 ], [ -124.011887579999978, 49.593352226000071 ], [ -124.011162236999937, 49.5933389650001 ], [ -124.011175340999927, 49.593035575000044 ], [ -124.010961248999962, 49.593031659000104 ], [ -124.01097559599998, 49.592699499000112 ], [ -124.010837933999952, 49.592696982000128 ], [ -124.010898499999897, 49.59262930400007 ], [ -124.010963616999987, 49.592466703000071 ], [ -124.010952020999952, 49.592319805000052 ], [ -124.010729606999988, 49.592024985000137 ], [ -124.010509303999939, 49.59184278100004 ], [ -124.009938698999974, 49.591539899000075 ], [ -124.009617175999921, 49.591397191000063 ], [ -124.008585808999953, 49.591070589000019 ], [ -124.008424839999989, 49.590948669000049 ], [ -124.008411681999974, 49.590938689000055 ], [ -124.008342700999961, 49.590807903000083 ], [ -124.0083704199999, 49.590646399000086 ], [ -124.00849729399999, 49.590429992000033 ], [ -124.00891360199995, 49.590046195000063 ], [ -124.009459207999953, 49.589772691000064 ], [ -124.009713513999955, 49.589615402000021 ], [ -124.009876503999948, 49.589460003000042 ], [ -124.010090690999959, 49.589079597000122 ], [ -124.010077108999923, 49.588883189000057 ], [ -124.009763622999984, 49.588135901000079 ], [ -124.009453301999955, 49.586933405000053 ], [ -124.009091493999946, 49.586345393000052 ], [ -124.008846277999908, 49.586163600000091 ], [ -124.008481514999986, 49.585966195000033 ], [ -124.008251399999892, 49.585786505000087 ], [ -124.007392487999979, 49.584704295000044 ], [ -124.006990183000013, 49.584010228000075 ], [ -124.006852096999935, 49.583771989000049 ], [ -124.006505415999953, 49.583381396000078 ], [ -124.00633850599999, 49.583244209000092 ], [ -124.005762311999959, 49.582915102000079 ], [ -124.005589919999949, 49.582745403000104 ], [ -124.005495400999948, 49.582532188000123 ], [ -124.005510492999974, 49.582003362000066 ], [ -124.005516716999921, 49.581785692000039 ], [ -124.005389182999963, 49.581537603000129 ], [ -124.005083106999933, 49.581102787000155 ], [ -124.004906290999941, 49.580968990000066 ], [ -124.004696191999955, 49.580873407000134 ], [ -124.004513591999981, 49.580846902000062 ], [ -124.004483198999964, 49.580842505000057 ], [ -124.004231606999937, 49.580841491000051 ], [ -124.00347288799999, 49.58092919000007 ], [ -124.003214002999982, 49.580938005000156 ], [ -124.00284658899993, 49.580895202000079 ], [ -124.002431476999988, 49.58080659000008 ], [ -124.002100080999924, 49.580701492000095 ], [ -124.001957698999945, 49.580574698000106 ], [ -124.0018511009999, 49.58038560700011 ], [ -124.001844704999925, 49.580086691000083 ], [ -124.001610405999898, 49.579431713000126 ], [ -124.001440887999962, 49.579164015000032 ], [ -124.001282787999955, 49.578985592000123 ], [ -124.00059172399996, 49.578534698000048 ], [ -124.000280712999938, 49.578278786000062 ], [ -124.000096891999988, 49.577990109000041 ], [ -124.000004712999967, 49.577629315000173 ], [ -124.000009611999971, 49.577198395000039 ], [ -123.999827658999934, 49.576943156000027 ], [ -123.999861112999952, 49.576172637000049 ], [ -124.000430211999969, 49.576183105000034 ], [ -124.000550846999914, 49.573403546000044 ], [ -124.002120065999932, 49.573432395000111 ], [ -124.002123172999987, 49.573360732000118 ], [ -124.001014385999937, 49.573340350000144 ], [ -124.00105709199994, 49.572356060000054 ], [ -124.000245417999949, 49.572341132000126 ], [ -124.000341518999932, 49.57012688700005 ], [ -123.999615030999948, 49.570113522000049 ], [ -123.99962342100001, 49.569920286000063 ], [ -123.99966941299995, 49.568860888000096 ], [ -123.999344998999959, 49.568854917000102 ], [ -123.999501163999966, 49.565257999000032 ], [ -124.002279130999952, 49.56530909100006 ], [ -124.002260194999934, 49.565344695000078 ], [ -124.001747811999948, 49.5659599090001 ], [ -124.001738301999978, 49.566130906000048 ], [ -124.001951297999966, 49.566498288000098 ], [ -124.002541790999899, 49.56689850500004 ], [ -124.002520792999945, 49.567284493000095 ], [ -124.00281959299997, 49.567623396000073 ], [ -124.002839796999979, 49.568002298000067 ], [ -124.00340219499995, 49.568438111000056 ], [ -124.003274004999952, 49.5689608100001 ], [ -124.002909600999971, 49.569323911000026 ], [ -124.002913252, 49.569342973000097 ], [ -124.002938788999927, 49.569476312000106 ], [ -124.003372817, 49.56972409300004 ], [ -124.003351903999885, 49.569984811000033 ], [ -124.003466897999928, 49.5702538930001 ], [ -124.00409281, 49.570427706000039 ], [ -124.004097784999971, 49.570652692000039 ], [ -124.003625111999924, 49.570548792000061 ], [ -124.00355711, 49.570621387000074 ], [ -124.003707388999928, 49.571205290000094 ], [ -124.004113902999975, 49.571471596000059 ], [ -124.004017119999986, 49.572146703000044 ], [ -124.004190679999951, 49.57251420100004 ], [ -124.004342989999969, 49.572512692 ], [ -124.004694218999973, 49.572096898000069 ], [ -124.00453369399996, 49.571656807000103 ], [ -124.004582202, 49.571304985000054 ], [ -124.004884091999926, 49.571222390000116 ], [ -124.005746523999946, 49.571465901000096 ], [ -124.005591214, 49.571990105000047 ], [ -124.005828492999939, 49.572086893000105 ], [ -124.00689440799998, 49.572085491000081 ], [ -124.007027813999969, 49.57190459800011 ], [ -124.00713385499995, 49.571418732000069 ], [ -124.007736332999926, 49.571429775000063 ], [ -124.007596791999973, 49.5746566850001 ], [ -124.009234339, 49.574686682000085 ], [ -124.00935880899999, 49.574889696000064 ], [ -124.009719385999958, 49.575002295000061 ], [ -124.009936601, 49.5747842970001 ], [ -124.010060892999888, 49.574765794000037 ], [ -124.010190303999977, 49.574972300000091 ], [ -124.009974803999938, 49.57528001000005 ], [ -124.009491899999944, 49.575319904000068 ], [ -124.009261001999988, 49.575554798000027 ], [ -124.009962403999936, 49.576026286000108 ], [ -124.010605791, 49.577081603000089 ], [ -124.010686212999971, 49.578215305000064 ], [ -124.010274714999923, 49.579118207000135 ], [ -124.010175, 49.579649396000079 ], [ -124.010219605999964, 49.579801799000073 ], [ -124.010861092999946, 49.579975595000036 ], [ -124.011057493999942, 49.580172104000098 ], [ -124.010566890999954, 49.580472594000071 ], [ -124.010545603999944, 49.580778784000145 ], [ -124.010828996999962, 49.58115479300011 ], [ -124.010590283999989, 49.581606291000185 ], [ -124.010706209999952, 49.581902490000111 ], [ -124.011013378, 49.582016492000122 ], [ -124.011483814999949, 49.582003700000023 ], [ -124.012153413999968, 49.581664706000012 ], [ -124.0134352199999, 49.581419697000122 ], [ -124.01360269199999, 49.581426913000101 ], [ -124.013913809999949, 49.581784299000084 ], [ -124.013891308, 49.582027882000112 ], [ -124.013358897999964, 49.582409604000119 ], [ -124.013306178999954, 49.582563394000054 ], [ -124.013872887, 49.583170099000064 ], [ -124.014470194999944, 49.583227115000071 ], [ -124.014312110999953, 49.584290884000033 ], [ -124.014031499999973, 49.584751002000125 ], [ -124.014416411999946, 49.585369101000047 ], [ -124.014457307, 49.586034199000032 ], [ -124.015166195999967, 49.586108200000083 ], [ -124.01582449299994, 49.586489915000094 ], [ -124.015743713999925, 49.58659819100005 ], [ -124.01515150699997, 49.586818901000086 ], [ -124.014811306999945, 49.587065292000013 ], [ -124.014841589999918, 49.587155003000142 ], [ -124.015104718999979, 49.587224799000126 ], [ -124.01566058500002, 49.587273199 ], [ -124.01591568500001, 49.587568106000035 ], [ -124.015991820999915, 49.587901298000098 ], [ -124.015776685999981, 49.588253092000087 ], [ -124.015449379999936, 49.588507998000132 ], [ -124.015912620000023, 49.588747302000101 ], [ -124.015927792999932, 49.58888120500005 ], [ -124.015862610999989, 49.589061995000058 ], [ -124.015589107999972, 49.589225802000051 ], [ -124.015495799999925, 49.589389610000055 ], [ -124.015249980999968, 49.589534894000018 ], [ -124.015265718999927, 49.589651702000062 ], [ -124.015672985, 49.589900908000033 ], [ -124.015406902999985, 49.590370900000046 ], [ -124.015420717999945, 49.591090103000056 ], [ -124.015353209, 49.591198401000042 ], [ -124.014995207999931, 49.591246795000096 ], [ -124.01493039899999, 49.591463289000089 ], [ -124.015045808999957, 49.591651296000059 ], [ -124.015056384999951, 49.59165753200007 ], [ -124.015886281999926, 49.592146899000063 ], [ -124.016015719999984, 49.59236190600005 ], [ -124.01584229299999, 49.592713700000061 ], [ -124.015378120999912, 49.593042697000051 ], [ -124.015206823999932, 49.593475705000067 ], [ -124.015223404, 49.594230498000073 ], [ -124.015421306999912, 49.594481205000093 ], [ -124.015814578999937, 49.594711897000103 ], [ -124.017108697999959, 49.595023795000081 ], [ -124.018305518999952, 49.595409705000115 ], [ -124.018992495999925, 49.595771507000073 ], [ -124.019631901999958, 49.595901111000039 ], [ -124.020033104999953, 49.595906796000108 ], [ -124.020673383999934, 49.596107592000116 ], [ -124.021432804999947, 49.596757088000068 ], [ -124.021676606999932, 49.597097408000081 ], [ -124.021766198999956, 49.598050201000056 ], [ -124.022033302999944, 49.598290912000053 ], [ -124.022364609999954, 49.598907608000019 ], [ -124.023286196999933, 49.599943012000018 ], [ -124.023355112999951, 49.600618100000098 ], [ -124.023042506999971, 49.600898605000062 ], [ -124.023059204999981, 49.601034005 ], [ -124.023526396999912, 49.601533907 ], [ -124.024138106999914, 49.601690496000096 ], [ -124.02405808899999, 49.60182578900006 ], [ -124.024463499999953, 49.602703107000067 ], [ -124.024347811999974, 49.60377559000009 ], [ -124.024617913999919, 49.604095995000101 ], [ -124.024583443999944, 49.604643230000093 ], [ -124.022753599999959, 49.604609990000057 ], [ -124.022923473999953, 49.604549889000097 ], [ -124.023077983999926, 49.604462699000081 ], [ -124.023214601999925, 49.604343714000088 ], [ -124.0235307, 49.603940001000097 ], [ -124.023785107000023, 49.60339570600005 ], [ -124.023818401999947, 49.603165891000117 ], [ -124.02374378899998, 49.602972011000119 ], [ -124.02337671899997, 49.602313863000049 ], [ -124.022900900999929, 49.6014607030001 ], [ -124.022780134999962, 49.601396528000031 ], [ -124.022579508999982, 49.601254050000129 ], [ -124.022508076999927, 49.60114673000006 ], [ -124.022517962999927, 49.600957741000045 ], [ -124.022610877, 49.60076804700001 ], [ -124.02288702, 49.600597423000082 ], [ -124.02296232199997, 49.60051900800007 ], [ -124.02298769799998, 49.600444811000052 ], [ -124.022976399999948, 49.600160296000048 ], [ -124.022900791999959, 49.599988793000087 ], [ -124.022689519999943, 49.599754593000029 ], [ -124.021948090999956, 49.599143596000062 ], [ -124.021545699999962, 49.598947285000079 ], [ -124.021408606999927, 49.598823303000067 ], [ -124.021312199999983, 49.598653311000135 ], [ -124.021282887999959, 49.597789689000081 ], [ -124.021199294999931, 49.597579394000071 ], [ -124.021020879999952, 49.597384496000053 ], [ -124.0207867, 49.597203009000033 ], [ -124.020416701999949, 49.597025303000137 ], [ -124.019308099999975, 49.596591086000032 ], [ -124.018409308999964, 49.596361509000062 ], [ -124.016596986999929, 49.595954106000129 ] ], [ [ -124.012801423999946, 49.586963099000073 ], [ -124.012824668999926, 49.58642432200002 ], [ -124.010951457999965, 49.586390077000011 ], [ -124.011014925999959, 49.584920363000037 ], [ -124.010503118999949, 49.58491100100008 ], [ -124.010389724, 49.587536175000068 ], [ -124.010511125, 49.58753839600012 ], [ -124.010529947999899, 49.587102630000039 ], [ -124.012606564999885, 49.587140599000136 ], [ -124.012614370999927, 49.58695968100006 ], [ -124.012801423999946, 49.586963099000073 ] ], [ [ -124.010369929999968, 49.584275998000074 ], [ -124.010385933999956, 49.583905473000044 ], [ -124.010341888999918, 49.58390466700007 ], [ -124.010351426999989, 49.583683837000095 ], [ -124.00939006699997, 49.583666243000074 ], [ -124.009390260999936, 49.583661757000101 ], [ -124.008568031999971, 49.583646702000095 ], [ -124.008563170999963, 49.583759124000103 ], [ -124.009941112000021, 49.583784349000062 ], [ -124.009920225999949, 49.584267770000089 ], [ -124.010369929999968, 49.584275998000074 ] ], [ [ -124.007105206999938, 49.577222723000013 ], [ -124.007200502999979, 49.575019703000137 ], [ -124.006011514, 49.574997903000025 ], [ -124.00600753099998, 49.575089909000035 ], [ -124.006193817999971, 49.575093325000047 ], [ -124.006102454999947, 49.577204338000037 ], [ -124.007105206999938, 49.577222723000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.986636309641655", "sL_AssetLoss": "1010.2", "sL_BldgLoss": "996.7", "sL_StrLoss": "903", "sL_NStrLoss": "93.7", "sL_ContLoss": "13.5", "geom_point": "0101000020E6100000681E023F51055FC09DA04D0E9FD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.081940915999937, 49.700799795000144 ], [ -124.081856006999942, 49.70072860900013 ], [ -124.081636200999981, 49.700740011000072 ], [ -124.081443496999967, 49.700885311000036 ], [ -124.081236983999972, 49.700896699000054 ], [ -124.081282617999989, 49.700509301000118 ], [ -124.080856693000015, 49.700045012000032 ], [ -124.080931018999976, 49.699657602000038 ], [ -124.081158009999953, 49.699268810000071 ], [ -124.081266818999907, 49.699169101000052 ], [ -124.081516705999888, 49.699122104000047 ], [ -124.08160991599999, 49.69893269199999 ], [ -124.081105305, 49.698757510000064 ], [ -124.080683392, 49.698437111000025 ], [ -124.08058189799999, 49.6982575850001 ], [ -124.08061898199999, 49.698155306000082 ], [ -124.084206261999924, 49.698218396000087 ], [ -124.084179286999955, 49.698865226000066 ], [ -124.084939372999941, 49.698878578000063 ], [ -124.084789442999963, 49.702474930000122 ], [ -124.082512186, 49.702434910000107 ], [ -124.081940915999937, 49.700799795000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.982170276568456", "sL_AssetLoss": "553.57", "sL_BldgLoss": "543.7", "sL_StrLoss": "486", "sL_NStrLoss": "57.7", "sL_ContLoss": "9.87", "geom_point": "0101000020E6100000C73DC87835025FC08342D2E180DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.031789198999917, 49.722051410000127 ], [ -124.037332427999942, 49.722151279000052 ], [ -124.037318585999955, 49.722475079000034 ], [ -124.036483684999965, 49.722983297000027 ], [ -124.035548697999943, 49.723369308000038 ], [ -124.035412010999934, 49.723533101000058 ], [ -124.03530062399993, 49.723784359 ], [ -124.031761916999955, 49.722687856000164 ], [ -124.031789198999917, 49.722051410000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.979178901286637", "sL_AssetLoss": "1873.1", "sL_BldgLoss": "1834.1", "sL_StrLoss": "1670", "sL_NStrLoss": "164.1", "sL_ContLoss": "39", "geom_point": "0101000020E61000004838A93FAD0C5FC006BFAA06A3D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.197652463999958, 49.688385892000021 ], [ -124.197789277999917, 49.684897449000104 ], [ -124.192856200999969, 49.684815776000057 ], [ -124.192882393999923, 49.684149671000029 ], [ -124.193725004999934, 49.684159394000098 ], [ -124.194429014999969, 49.683971393000078 ], [ -124.194974982999923, 49.683659491000093 ], [ -124.195377591999929, 49.683089811000116 ], [ -124.195730189999921, 49.682797791000041 ], [ -124.196048802999883, 49.682757891000065 ], [ -124.196271902999982, 49.682854789000075 ], [ -124.196631401999952, 49.682787785000073 ], [ -124.198264509999944, 49.682078589000078 ], [ -124.199495286999976, 49.681958990000069 ], [ -124.201062294999971, 49.682004508000063 ], [ -124.201258176999957, 49.682074295000056 ], [ -124.201290103999966, 49.682228094000031 ], [ -124.201571615999967, 49.682413307000097 ], [ -124.201523214999895, 49.68268389300006 ], [ -124.201059708999964, 49.682985795000064 ], [ -124.200411808999917, 49.683774786000114 ], [ -124.200409430999969, 49.68401331400004 ], [ -124.198431607999936, 49.683980643000105 ], [ -124.198399512999956, 49.6847993350001 ], [ -124.200205088999965, 49.684829163000039 ], [ -124.200095404999928, 49.684984006000029 ], [ -124.19985030199993, 49.685120698000162 ], [ -124.199338406999971, 49.685180502000058 ], [ -124.199144608999944, 49.685767310000109 ], [ -124.199358892999953, 49.686008003000104 ], [ -124.199070911999954, 49.686163199000077 ], [ -124.198859104999912, 49.686561985000061 ], [ -124.198919901999901, 49.68673999300006 ], [ -124.200187112999956, 49.686466597000098 ], [ -124.200493286999915, 49.686490803000076 ], [ -124.200731716999954, 49.686596195000085 ], [ -124.200911192999982, 49.686540601000104 ], [ -124.201341086999946, 49.686580492000147 ], [ -124.201362703999905, 49.686876686000076 ], [ -124.199783703999969, 49.688117208000094 ], [ -124.199551790999948, 49.688253992000028 ], [ -124.198943082999961, 49.688305198000108 ], [ -124.19869618599995, 49.688403143000066 ], [ -124.197652463999958, 49.688385892000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.964350718634281", "sL_AssetLoss": "1593.3", "sL_BldgLoss": "1536.5", "sL_StrLoss": "1324", "sL_NStrLoss": "212.5", "sL_ContLoss": "56.8", "geom_point": "0101000020E6100000D3EB1EF279FC5EC03D3FB58F4FE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.943508103999989, 49.774048666000077 ], [ -123.944984572999942, 49.77407645600001 ], [ -123.945566013999908, 49.774418606000019 ], [ -123.946307692999966, 49.774736214000065 ], [ -123.946733871999982, 49.775043561000061 ], [ -123.946987909999947, 49.775360004000028 ], [ -123.947075397, 49.775647698000022 ], [ -123.947068596999912, 49.775971010000127 ], [ -123.946854496999919, 49.776359800000108 ], [ -123.945770898999953, 49.777089013000136 ], [ -123.945292901999949, 49.777681061000095 ], [ -123.943346839999933, 49.777644437000056 ], [ -123.943508103999989, 49.774048666000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.886018237082067", "sL_AssetLoss": "1974", "sL_BldgLoss": "1749", "sL_StrLoss": "1300", "sL_NStrLoss": "449", "sL_ContLoss": "225", "geom_point": "0101000020E61000009FCCBBC1C2F85EC0B6794E4034DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.884587987999979, 49.734645970000088 ], [ -123.88456886799996, 49.734285228 ], [ -123.88492059, 49.73433280900008 ], [ -123.885519404999968, 49.734525099000095 ], [ -123.886647513999947, 49.734643291000047 ], [ -123.887400581999927, 49.73488829500009 ], [ -123.888221393999984, 49.735044912000063 ], [ -123.888461495999977, 49.735277109 ], [ -123.888636602999938, 49.735661612000094 ], [ -123.889526933999946, 49.73643147700006 ], [ -123.889492213999944, 49.737186559000087 ], [ -123.885018968999972, 49.737099954000151 ], [ -123.88485840099996, 49.734771831000081 ], [ -123.884656437999979, 49.734683382000071 ], [ -123.884587987999979, 49.734645970000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19369584", "BldgCostT": "13358334", "sL_LossRatio": "0.857205205522933", "sL_AssetLoss": "75612", "sL_BldgLoss": "64815", "sL_StrLoss": "41625", "sL_NStrLoss": "23190", "sL_ContLoss": "10797", "geom_point": "0101000020E61000009F1D916B5AFE5EC050473271CCD04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.964278313999955, 49.642624717000089 ], [ -123.964317187999967, 49.641746341000029 ], [ -123.964234164999979, 49.641747033000058 ], [ -123.964228835999947, 49.641477233000039 ], [ -123.96381337499993, 49.641480692000066 ], [ -123.963824026999944, 49.642020292000048 ], [ -123.962577627999977, 49.642030663000085 ], [ -123.962561670999946, 49.641221261000041 ], [ -123.963808049999969, 49.641210892000153 ], [ -123.963802723, 49.640941092000048 ], [ -123.96214089599998, 49.640954915000037 ], [ -123.962114311999954, 49.639605913000018 ], [ -123.963360650999931, 49.639595549000106 ], [ -123.963371295999949, 49.640135149000088 ], [ -123.964388861999907, 49.640126678000165 ], [ -123.964437469999922, 49.639028230000058 ], [ -123.966380848999947, 49.639064545000075 ], [ -123.966384415999983, 49.638983876000097 ], [ -123.965789597999972, 49.638972765000041 ], [ -123.965825398999954, 49.638163121000105 ], [ -123.965810628999947, 49.637416379000058 ], [ -123.965395201999968, 49.637419843000046 ], [ -123.965411204999924, 49.638229245000069 ], [ -123.96291860099997, 49.638250003000074 ], [ -123.962913278999977, 49.637980203000062 ], [ -123.962497848999959, 49.637983657000028 ], [ -123.962465940999948, 49.636364854000142 ], [ -123.962881358999965, 49.636361400000055 ], [ -123.962876038999966, 49.636091600000086 ], [ -123.964537702, 49.636077767000131 ], [ -123.96453237399993, 49.635807967000062 ], [ -123.964947785999982, 49.635804505000081 ], [ -123.964942454999942, 49.63553470500009 ], [ -123.96535786599999, 49.635531243000052 ], [ -123.965352532999972, 49.635261442000044 ], [ -123.965767941999943, 49.635257976000069 ], [ -123.965751934999986, 49.634448576000118 ], [ -123.966017657999942, 49.634446359000023 ], [ -123.966033193999948, 49.634094957000038 ], [ -123.968553119999967, 49.634142006000076 ], [ -123.968576368999905, 49.633615445000082 ], [ -123.96781290199999, 49.633621830000045 ], [ -123.967818247999986, 49.633891630000036 ], [ -123.966572056999922, 49.633902041000091 ], [ -123.96656137799998, 49.633362442000092 ], [ -123.966145986999948, 49.633365909000069 ], [ -123.966135311999949, 49.632826308000141 ], [ -123.965719923999984, 49.63282977300009 ], [ -123.965714588999973, 49.63255997300007 ], [ -123.965299202999987, 49.632563438000027 ], [ -123.965293870999943, 49.632293638000171 ], [ -123.964878487999982, 49.632297100000073 ], [ -123.964873156999943, 49.632027300000104 ], [ -123.963211631999982, 49.632041136000048 ], [ -123.963200990999937, 49.631501534000023 ], [ -123.96278561299998, 49.631504990000067 ], [ -123.962774977, 49.630965388000092 ], [ -123.961944231999937, 49.630972295000042 ], [ -123.961928291999939, 49.630162892000065 ], [ -123.964835848999954, 49.630138695000085 ], [ -123.96481986, 49.629329294000094 ], [ -123.966065933999943, 49.629318902000115 ], [ -123.966097952999959, 49.630937705000036 ], [ -123.96651332499999, 49.630934239000062 ], [ -123.966524002999947, 49.631473838000097 ], [ -123.966939378999967, 49.631470370000116 ], [ -123.966955402999986, 49.63227977100005 ], [ -123.967370785999918, 49.632276301000083 ], [ -123.96737613, 49.632546102000099 ], [ -123.967791514999959, 49.632542629000064 ], [ -123.967796861999915, 49.632812430000115 ], [ -123.968627636999926, 49.63280548100002 ], [ -123.968622284999981, 49.632535681000086 ], [ -123.96945305399997, 49.632528727000071 ], [ -123.969447697999954, 49.632258927000066 ], [ -123.971939992999964, 49.632238029000042 ], [ -123.971929254999978, 49.631698429999979 ], [ -123.973590762999947, 49.63168446800006 ], [ -123.973596140999959, 49.631954269000062 ], [ -123.974204295000021, 49.631949152000068 ], [ -123.974296707999926, 49.629850149000077 ], [ -123.976232, 49.629886145000064 ], [ -123.97623242899999, 49.62987639600005 ], [ -123.976439695999957, 49.629880249000031 ], [ -123.97651570699999, 49.628151846 ], [ -123.975597590999982, 49.628159587000084 ], [ -123.975602977999941, 49.628429387000011 ], [ -123.974356929999914, 49.62843988 ], [ -123.97434616799994, 49.627900281000045 ], [ -123.973515476999978, 49.627907269000026 ], [ -123.973499346999986, 49.627097870000071 ], [ -123.973914683999936, 49.627094375000105 ], [ -123.973903925999934, 49.626554776000042 ], [ -123.974734591999919, 49.626547784000145 ], [ -123.97472921, 49.626277985000065 ], [ -123.975975201999915, 49.626267487000078 ], [ -123.975969811999946, 49.62599768700003 ], [ -123.976385140999923, 49.625994185000103 ], [ -123.976379747999957, 49.625724385000041 ], [ -123.976795074, 49.625720881000071 ], [ -123.976789679, 49.625451081000094 ], [ -123.977620326999954, 49.625444069000075 ], [ -123.977614925999944, 49.625174269000162 ], [ -123.978030247999953, 49.625170762000096 ], [ -123.978024846999958, 49.624900961000101 ], [ -123.978440165999984, 49.624897452000013 ], [ -123.97843476099996, 49.624627651 ], [ -123.979680710999972, 49.624617115000042 ], [ -123.979702352999965, 49.625696313000105 ], [ -123.979287028, 49.625699827000126 ], [ -123.979292435999952, 49.625969627000096 ], [ -123.97887710900001, 49.625973140000049 ], [ -123.978882514999924, 49.626242939000086 ], [ -123.978467183999967, 49.626246451000021 ], [ -123.978477992999942, 49.626786049000017 ], [ -123.978893328999931, 49.6267825380001 ], [ -123.978914485999908, 49.627838371000045 ], [ -123.979265246999915, 49.627844883000094 ], [ -123.979285251999926, 49.627389365000077 ], [ -123.983400780999915, 49.627465689000068 ], [ -123.98343162299993, 49.626761966000103 ], [ -123.984428631999975, 49.626780432000146 ], [ -123.984481848, 49.625565493000046 ], [ -123.980467287999929, 49.62549108300005 ], [ -123.980517795999916, 49.624340182000026 ], [ -123.980505927999943, 49.624340282000048 ], [ -123.980484269, 49.623261083000052 ], [ -123.980565180999918, 49.62326039900011 ], [ -123.980625118999939, 49.621894484000066 ], [ -123.986156172999955, 49.621996966000061 ], [ -123.98612961699996, 49.622603818000101 ], [ -123.984443479000021, 49.622733493000069 ], [ -123.984062792999964, 49.62283079900002 ], [ -123.984012869999958, 49.622857610000075 ], [ -123.983824696999989, 49.622958690000054 ], [ -123.983621372999949, 49.623114196000067 ], [ -123.983537856999988, 49.623207500000106 ], [ -123.983454101999925, 49.623301006000119 ], [ -123.983393591999985, 49.623481608000077 ], [ -123.9834486, 49.623646387000065 ], [ -123.983466414999981, 49.623665410000029 ], [ -123.98364167499993, 49.62385250100003 ], [ -123.984149402999932, 49.624171384000064 ], [ -123.985086915999929, 49.62472869000009 ], [ -123.985358948999945, 49.624909308000056 ], [ -123.985618108999944, 49.625081397000045 ], [ -123.985992907999972, 49.625435687000085 ], [ -123.98626418799995, 49.625814207000083 ], [ -123.986332445999892, 49.625978410000101 ], [ -123.98655559099997, 49.626515443000073 ], [ -123.986586011999961, 49.626588609000052 ], [ -123.986738754999962, 49.626801474000075 ], [ -123.986781707999938, 49.626861313000049 ], [ -123.987078800999896, 49.627124206000083 ], [ -123.987556099999949, 49.627444285000131 ], [ -123.987831397999983, 49.627752872000059 ], [ -123.987868791, 49.627794790000067 ], [ -123.987892479999985, 49.627980592000021 ], [ -123.987877677999961, 49.628051284000065 ], [ -123.987866008999958, 49.628106818000077 ], [ -123.98784883799999, 49.628188777000069 ], [ -123.987845314999944, 49.628205607000069 ], [ -123.98774485200002, 49.628340691000048 ], [ -123.987696783999951, 49.628405293000085 ], [ -123.986967640999978, 49.628715783000054 ], [ -123.985521543999951, 49.629246947000077 ], [ -123.985129475999955, 49.629350383000023 ], [ -123.984051603999944, 49.629500361000098 ], [ -123.983222984999941, 49.629615619000077 ], [ -123.982758418999978, 49.629699702000103 ], [ -123.982319892999939, 49.629820244000058 ], [ -123.98191598199999, 49.629972047000074 ], [ -123.98154752, 49.63016822800008 ], [ -123.980597962999965, 49.630673809000037 ], [ -123.979866281999961, 49.630945496000031 ], [ -123.979135008999918, 49.631112789000063 ], [ -123.978770356999931, 49.631221205000031 ], [ -123.978496075999942, 49.631351991000074 ], [ -123.977901512999949, 49.631809775000114 ], [ -123.977811316999947, 49.631869922000057 ], [ -123.977536509999979, 49.632053173000052 ], [ -123.976330154999943, 49.632666945000061 ], [ -123.975568177999932, 49.633152188000068 ], [ -123.975454355999929, 49.633212896000025 ], [ -123.974961618999927, 49.633475700000126 ], [ -123.974617514999977, 49.633744704000037 ], [ -123.973984981999976, 49.63459140500008 ], [ -123.97365081699995, 49.634888402000065 ], [ -123.973219413999956, 49.635096286000113 ], [ -123.972911631999963, 49.635196141000044 ], [ -123.972681526999963, 49.635270799000075 ], [ -123.972172719999961, 49.635382800000038 ], [ -123.971986564999938, 49.635445921000041 ], [ -123.971669588999987, 49.635553394000041 ], [ -123.971600511999981, 49.635570061000116 ], [ -123.971403111999948, 49.635617621000101 ], [ -123.970158503000022, 49.635917606000064 ], [ -123.970031431999956, 49.635965464000094 ], [ -123.969487021999925, 49.63617050400017 ], [ -123.96920361599993, 49.636318198000076 ], [ -123.968491432999912, 49.636677476000038 ], [ -123.968229111999975, 49.636854169000095 ], [ -123.968037732999974, 49.636983049000101 ], [ -123.968009745999922, 49.637012242000026 ], [ -123.967832808999958, 49.637196925000097 ], [ -123.967215490999962, 49.637841167000119 ], [ -123.967175966999946, 49.637882412000117 ], [ -123.967040710999967, 49.638023602000054 ], [ -123.966696140999957, 49.638521095000094 ], [ -123.966516049999882, 49.638868676000079 ], [ -123.966384329, 49.639311637000077 ], [ -123.966293464000032, 49.640013006000082 ], [ -123.966275028999945, 49.640155473000107 ], [ -123.966205585999958, 49.640679971000097 ], [ -123.966181495999962, 49.640861916000105 ], [ -123.966174033999934, 49.641110064000053 ], [ -123.966166814, 49.641350298000106 ], [ -123.966363600999927, 49.641972198000097 ], [ -123.966617287999924, 49.642299092000094 ], [ -123.966908066999977, 49.642673849000062 ], [ -123.964278313999955, 49.642624717000089 ] ], [ [ -123.969885954999967, 49.633407255000087 ], [ -123.969884513999943, 49.633334649000105 ], [ -123.968638337999948, 49.633345082000041 ], [ -123.96863910899998, 49.633383997000067 ], [ -123.969885954999967, 49.633407255000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26955584", "BldgCostT": "18118334", "sL_LossRatio": "0.979920895829053", "sL_AssetLoss": "19468", "sL_BldgLoss": "19077.1", "sL_StrLoss": "17029.1", "sL_NStrLoss": "2048", "sL_ContLoss": "390.9", "geom_point": "0101000020E610000021BAD2F8E6FB5EC06B90EE8C5BE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.95776041799995, 49.763109159000088 ], [ -123.956280218999964, 49.762683104000068 ], [ -123.954642718999963, 49.762714495000061 ], [ -123.953820316999924, 49.762559199000044 ], [ -123.952791794999911, 49.762540707000056 ], [ -123.951246190999939, 49.76160929800006 ], [ -123.951050618999886, 49.761583599000062 ], [ -123.950663310999985, 49.761676199000085 ], [ -123.949729912999928, 49.761522408000062 ], [ -123.949566707999935, 49.761649188000057 ], [ -123.94986149099995, 49.761862794000123 ], [ -123.949781490999939, 49.762043715000047 ], [ -123.948989890999925, 49.761986697000111 ], [ -123.947938120999936, 49.761402801000095 ], [ -123.946765898999942, 49.761123604000048 ], [ -123.946190090999949, 49.760858701000075 ], [ -123.946121302999956, 49.760103890000046 ], [ -123.946396501999914, 49.759283610000061 ], [ -123.946402404999972, 49.7588519990001 ], [ -123.945881285999974, 49.758514498000054 ], [ -123.945112793999968, 49.758259505000098 ], [ -123.94469280599999, 49.758028793000072 ], [ -123.944330708, 49.757960495000134 ], [ -123.94397215399999, 49.757971334000025 ], [ -123.943973293999974, 49.757945884000044 ], [ -123.943475418999967, 49.75794993800011 ], [ -123.943473119999979, 49.75800122600009 ], [ -123.942626602999937, 49.758144210000069 ], [ -123.942181309999981, 49.758139900000046 ], [ -123.941552207999933, 49.75792909700008 ], [ -123.941086399999932, 49.757554602000027 ], [ -123.939630601999951, 49.756882292000064 ], [ -123.939364308999956, 49.756804006000074 ], [ -123.937616205999959, 49.756799702000059 ], [ -123.93721021799999, 49.756722801000123 ], [ -123.934582408999944, 49.755808506000065 ], [ -123.933803107999964, 49.75564330600011 ], [ -123.932641310999941, 49.75515759600011 ], [ -123.931456480999955, 49.75489839300009 ], [ -123.93097949499996, 49.754659115000067 ], [ -123.929737088999943, 49.754318798000028 ], [ -123.929569088999983, 49.75418489500003 ], [ -123.929760015999989, 49.753346003000075 ], [ -123.929246902000017, 49.752631105000027 ], [ -123.929198185999894, 49.752280697000039 ], [ -123.930221107999913, 49.752092686000054 ], [ -123.929658003, 49.751592784000117 ], [ -123.929716013999965, 49.751053007000081 ], [ -123.93045699299995, 49.750615792000097 ], [ -123.931174375999973, 49.750393594000037 ], [ -123.93109090199998, 49.750295391000066 ], [ -123.930237300999963, 49.750014810000039 ], [ -123.930197226999951, 49.749951257000063 ], [ -123.929938207999967, 49.74954050500002 ], [ -123.929958289999959, 49.749225791000129 ], [ -123.930655510999927, 49.748661808000094 ], [ -123.931154488999965, 49.748594897000025 ], [ -123.932431690999977, 49.748584906000033 ], [ -123.932722002999981, 49.748492310000117 ], [ -123.93273060599995, 49.748231709000081 ], [ -123.931508289999982, 49.74816051100003 ], [ -123.930991805999966, 49.748039387000077 ], [ -123.92896771499997, 49.74824450800002 ], [ -123.928238890999964, 49.748573492000041 ], [ -123.927830686999954, 49.748982196000021 ], [ -123.927198777999976, 49.749282794000081 ], [ -123.92694981899993, 49.749339702000064 ], [ -123.9260875, 49.749328290000086 ], [ -123.924917404999974, 49.749103305000041 ], [ -123.923541378999943, 49.749006499000103 ], [ -123.923261995999951, 49.748928114000051 ], [ -123.922210221999961, 49.748378405000061 ], [ -123.920224510999972, 49.747566601000109 ], [ -123.919932381999942, 49.747523891000057 ], [ -123.919197389999923, 49.74756660600012 ], [ -123.918863587999965, 49.747515308000153 ], [ -123.917923104999971, 49.74695559700011 ], [ -123.917600983999932, 49.746850201000051 ], [ -123.916878602999958, 49.746828799000127 ], [ -123.91593969199999, 49.746323209000046 ], [ -123.915327506000011, 49.746301908000113 ], [ -123.915011606999897, 49.746421500000018 ], [ -123.914630203999977, 49.746837388000095 ], [ -123.914504791999946, 49.747476904000017 ], [ -123.914351312999898, 49.747532409000051 ], [ -123.914314448999932, 49.747533889000145 ], [ -123.91444680299999, 49.744621873000078 ], [ -123.919992494000013, 49.744727699000087 ], [ -123.91997937799999, 49.745017060000073 ], [ -123.922178331999973, 49.745058943000124 ], [ -123.922152497999946, 49.745629469000072 ], [ -123.923825305999955, 49.745661302000066 ], [ -123.923782584999955, 49.746605509000069 ], [ -123.925649956999948, 49.746641013000087 ], [ -123.925660446, 49.746408955000042 ], [ -123.92668229, 49.746428370000075 ], [ -123.926698022999958, 49.746080180000021 ], [ -123.928501546999911, 49.746114423000094 ], [ -123.92851136099992, 49.745897024000037 ], [ -123.934057237999951, 49.746002135 ], [ -123.934052201999975, 49.746114001000066 ], [ -123.934740020000035, 49.746127018000088 ], [ -123.934697692, 49.747067474000112 ], [ -123.935523651000011, 49.747083100000026 ], [ -123.93549369099992, 49.747748970000018 ], [ -123.937872703999986, 49.747793940000065 ], [ -123.937738950999986, 49.750769972000043 ], [ -123.93771109, 49.751389834000072 ], [ -123.936173964999966, 49.751360784000084 ], [ -123.936147659999918, 49.751945571000135 ], [ -123.935489480999962, 49.751933125000036 ], [ -123.935481548999917, 49.752109428000097 ], [ -123.936843513999932, 49.752135177000071 ], [ -123.936801536, 49.753068649000092 ], [ -123.938156322999973, 49.753094245000113 ], [ -123.93813215199998, 49.753632115000087 ], [ -123.942262106000015, 49.753710039000126 ], [ -123.942223700999989, 49.754566285000088 ], [ -123.94362590899999, 49.754592706000047 ], [ -123.943511721, 49.757140126000124 ], [ -123.944009587, 49.757136071000055 ], [ -123.944014181999989, 49.757033535000076 ], [ -123.949561440999986, 49.757137857000075 ], [ -123.949527571999951, 49.75789562900011 ], [ -123.949545189999981, 49.757895959000059 ], [ -123.949501712999947, 49.758868658000075 ], [ -123.94972534199999, 49.758872857 ], [ -123.94972078099994, 49.758974918000064 ], [ -123.95022813099996, 49.758984444000099 ], [ -123.95022, 49.759166429000068 ], [ -123.952914141999884, 49.759216974000033 ], [ -123.952907051999929, 49.759375862000084 ], [ -123.953696224999973, 49.759390655000061 ], [ -123.953675916999941, 49.759845905000134 ], [ -123.954611319999941, 49.759863432000039 ], [ -123.954595489999946, 49.760218429000133 ], [ -123.956094184999984, 49.760246494000029 ], [ -123.956085540999979, 49.760440514000074 ], [ -123.957877731999986, 49.760474048000056 ], [ -123.95776041799995, 49.763109159000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.984288164665523", "sL_AssetLoss": "2186.25", "sL_BldgLoss": "2151.9", "sL_StrLoss": "1930", "sL_NStrLoss": "221.9", "sL_ContLoss": "34.35", "geom_point": "0101000020E6100000DBAC551620025FC01FD6C0FBCFDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.03173666099994, 49.723276985000055 ], [ -124.031761916999955, 49.722687856000164 ], [ -124.03530062399993, 49.723784359 ], [ -124.03522829399995, 49.723947512000031 ], [ -124.035154825999939, 49.724488704000052 ], [ -124.034626706999944, 49.725059791000071 ], [ -124.034702390999982, 49.725373093000073 ], [ -124.035192604999935, 49.725612399000077 ], [ -124.035245305000032, 49.726123699000105 ], [ -124.035642608999979, 49.726535288000022 ], [ -124.035746197999984, 49.726821586 ], [ -124.035722313999926, 49.726947750000093 ], [ -124.031273141999947, 49.72686755800008 ], [ -124.031427342999962, 49.723271405000112 ], [ -124.03173666099994, 49.723276985000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "0.96441378607507", "sL_AssetLoss": "1569.99", "sL_BldgLoss": "1514.12", "sL_StrLoss": "1281.62", "sL_NStrLoss": "232.5", "sL_ContLoss": "55.87", "geom_point": "0101000020E61000003FF8370545FA5EC040C2CD358EDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.909592308999933, 49.74760651 ], [ -123.909019017, 49.747350099000073 ], [ -123.908169201999939, 49.747221892000077 ], [ -123.907497397999961, 49.746911387000075 ], [ -123.90741242199999, 49.746816966000047 ], [ -123.907459359999962, 49.745787678000028 ], [ -123.907503715999937, 49.745779194000058 ], [ -123.909183511, 49.745737903000084 ], [ -123.90937372199997, 49.745565600000113 ], [ -123.909349939999984, 49.745378744000085 ], [ -123.913025403999967, 49.745449083000082 ], [ -123.912922388, 49.747714065000125 ], [ -123.911174291999899, 49.747566613000082 ], [ -123.910869798999911, 49.747640606000147 ], [ -123.910777405999937, 49.747840011000108 ], [ -123.910512099999963, 49.747841496000092 ], [ -123.909592308999933, 49.74760651 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5548666", "BldgCostT": "3826666", "sL_LossRatio": "0.969319261043832", "sL_AssetLoss": "5591.13", "sL_BldgLoss": "5419.59", "sL_StrLoss": "4683.19", "sL_NStrLoss": "736.4", "sL_ContLoss": "171.54", "geom_point": "0101000020E6100000B9F7B2E543015FC0E8B87D03D1CC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.020129685999919, 49.604562270000045 ], [ -124.020158293999955, 49.603897032000113 ], [ -124.018977784999905, 49.603875543000079 ], [ -124.01911449, 49.600698193000021 ], [ -124.01837555799996, 49.600684735000172 ], [ -124.018422498999911, 49.599594045000032 ], [ -124.016224346999962, 49.599553981000028 ], [ -124.016360257999963, 49.596399171000051 ], [ -124.012132089999938, 49.596321982000077 ], [ -124.012162238999949, 49.595623552000049 ], [ -124.012433470999937, 49.595644999000108 ], [ -124.012877406999934, 49.595710702000076 ], [ -124.013684568999963, 49.595977391000105 ], [ -124.014076006999971, 49.596042198000077 ], [ -124.014683582999908, 49.596064103000046 ], [ -124.015269805999949, 49.59603880500007 ], [ -124.016037886999982, 49.595929489000106 ], [ -124.016381103999919, 49.59592679600005 ], [ -124.016596986999929, 49.595954106000129 ], [ -124.018409308999964, 49.596361509000062 ], [ -124.019308099999975, 49.596591086000032 ], [ -124.020416701999949, 49.597025303000137 ], [ -124.0207867, 49.597203009000033 ], [ -124.021020879999952, 49.597384496000053 ], [ -124.021199294999931, 49.597579394000071 ], [ -124.021282887999959, 49.597789689000081 ], [ -124.021312199999983, 49.598653311000135 ], [ -124.021408606999927, 49.598823303000067 ], [ -124.021545699999962, 49.598947285000079 ], [ -124.021948090999956, 49.599143596000062 ], [ -124.022689519999943, 49.599754593000029 ], [ -124.022900791999959, 49.599988793000087 ], [ -124.022976399999948, 49.600160296000048 ], [ -124.02298769799998, 49.600444811000052 ], [ -124.02296232199997, 49.60051900800007 ], [ -124.02288702, 49.600597423000082 ], [ -124.022610877, 49.60076804700001 ], [ -124.022517962999927, 49.600957741000045 ], [ -124.022508076999927, 49.60114673000006 ], [ -124.022579508999982, 49.601254050000129 ], [ -124.022780134999962, 49.601396528000031 ], [ -124.022900900999929, 49.6014607030001 ], [ -124.02337671899997, 49.602313863000049 ], [ -124.02374378899998, 49.602972011000119 ], [ -124.023818401999947, 49.603165891000117 ], [ -124.023785107000023, 49.60339570600005 ], [ -124.0235307, 49.603940001000097 ], [ -124.023214601999925, 49.604343714000088 ], [ -124.023077983999926, 49.604462699000081 ], [ -124.022923473999953, 49.604549889000097 ], [ -124.022753599999959, 49.604609990000057 ], [ -124.020129685999919, 49.604562270000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438916", "BldgCostT": "2371666", "sL_LossRatio": "0.963441907840836", "sL_AssetLoss": "4516.1", "sL_BldgLoss": "4351", "sL_StrLoss": "3670.4", "sL_NStrLoss": "680.6", "sL_ContLoss": "165.1", "geom_point": "0101000020E610000081135D59DAFD5EC0EB426271EEDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.967434885, 49.714419821000057 ], [ -123.96744718299999, 49.714141970000057 ], [ -123.967127590999922, 49.714136013000015 ], [ -123.96713688899996, 49.713925985000039 ], [ -123.966558282999955, 49.713915200000038 ], [ -123.966620603999928, 49.712507753000089 ], [ -123.965463530999969, 49.712486174000105 ], [ -123.965463798999963, 49.712480138000082 ], [ -123.96547352099995, 49.712260676000042 ], [ -123.964850922999915, 49.712249059000037 ], [ -123.964915896999969, 49.71078281900013 ], [ -123.963931079999924, 49.710764438000041 ], [ -123.964090496999972, 49.707168300000042 ], [ -123.967374249999963, 49.707229555000076 ], [ -123.967340606, 49.707273300000047 ], [ -123.967209794999931, 49.70759841200001 ], [ -123.967204943999917, 49.707707672000062 ], [ -123.967199799999918, 49.707824101000064 ], [ -123.967208382999956, 49.707855806000076 ], [ -123.967270091000017, 49.70808358700004 ], [ -123.967385329999942, 49.708299899000096 ], [ -123.967483088999984, 49.708405771000116 ], [ -123.967570503, 49.70850040100003 ], [ -123.96788296499993, 49.708734313000029 ], [ -123.968098013999949, 49.708895303000062 ], [ -123.968329996999927, 49.709229905000022 ], [ -123.968417103999968, 49.709517594000104 ], [ -123.968331695999936, 49.709880503000115 ], [ -123.968330003999981, 49.710012703000146 ], [ -123.968388571999967, 49.710160396000092 ], [ -123.968525330999967, 49.710319980000058 ], [ -123.968799989, 49.710640477000055 ], [ -123.968915211, 49.710857655000041 ], [ -123.968953503999941, 49.711025764000091 ], [ -123.968905789999951, 49.711227304000055 ], [ -123.968758556999958, 49.711515195000075 ], [ -123.968545429999921, 49.711710130000078 ], [ -123.967999889999959, 49.712209174000122 ], [ -123.968411541999956, 49.712300512000041 ], [ -123.968412503, 49.712374383000089 ], [ -123.967943484, 49.712512493000091 ], [ -123.967924194999938, 49.712845802000032 ], [ -123.96864078599998, 49.71336989600011 ], [ -123.968717587999947, 49.713765809000044 ], [ -123.969145543999957, 49.714451686000075 ], [ -123.968670527999976, 49.714442840000082 ], [ -123.967434885, 49.714419821000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.960942844704272", "sL_AssetLoss": "1607.9", "sL_BldgLoss": "1545.1", "sL_StrLoss": "1256.4", "sL_NStrLoss": "288.7", "sL_ContLoss": "62.8", "geom_point": "0101000020E61000009D53981056FF5EC01D7E48098BCF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.986828535000015, 49.622527007000095 ], [ -123.986921952999964, 49.62039143500003 ], [ -123.992452841, 49.620493598000095 ], [ -123.992365680999953, 49.622491624000098 ], [ -123.991169823999954, 49.622406095000031 ], [ -123.989767994999966, 49.622435090000117 ], [ -123.989488782999928, 49.622416093000055 ], [ -123.98835367699999, 49.622338797000111 ], [ -123.988290623999916, 49.62234405300007 ], [ -123.987753696999931, 49.622388892000131 ], [ -123.986828535000015, 49.622527007000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5833834", "BldgCostT": "4023334", "sL_LossRatio": "0.979980814947658", "sL_AssetLoss": "4795.4", "sL_BldgLoss": "4699.4", "sL_StrLoss": "4077", "sL_NStrLoss": "622.4", "sL_ContLoss": "96", "geom_point": "0101000020E61000006347C24256FF5EC0F21E2DEF26E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.984761405, 49.753715277000019 ], [ -123.984765778999957, 49.753615671000027 ], [ -123.984071883999945, 49.753602860000072 ], [ -123.984193967999943, 49.750824204000075 ], [ -123.98422987399999, 49.750006909000135 ], [ -123.98457287399998, 49.750013242000087 ], [ -123.984597691999952, 49.749448217000037 ], [ -123.989690847999967, 49.749542132000101 ], [ -123.98966740399996, 49.748390004000022 ], [ -123.991332886999928, 49.748375763000098 ], [ -123.991343883999917, 49.748915349000129 ], [ -123.992176633999961, 49.748908220000025 ], [ -123.992182137999961, 49.749178013000105 ], [ -123.993014891999948, 49.749170878000101 ], [ -123.9930336729999, 49.750090726000103 ], [ -123.993866901999951, 49.750106042000063 ], [ -123.993864184999921, 49.749973115000088 ], [ -123.994031163, 49.74997168200008 ], [ -123.995113336999935, 49.749962391000068 ], [ -123.995116744999976, 49.750129005000112 ], [ -123.997480283999948, 49.750172388000045 ], [ -123.997440407999932, 49.751086073000067 ], [ -123.996699401999976, 49.751098589 ], [ -123.996409496999902, 49.751182709000069 ], [ -123.995648009000021, 49.751323604000099 ], [ -123.995513387999921, 49.751487408000123 ], [ -123.995498196999918, 49.752116901000115 ], [ -123.99416060199998, 49.752541305000065 ], [ -123.99375723699994, 49.752557760000101 ], [ -123.993286188999974, 49.752577 ], [ -123.993025401999944, 49.752668098000065 ], [ -123.992010592999975, 49.752641008000182 ], [ -123.991535281999944, 49.752537101000094 ], [ -123.991072598999935, 49.75230780100005 ], [ -123.989925800999956, 49.752488696000057 ], [ -123.98938051, 49.752367607000039 ], [ -123.989007092999941, 49.75240598900006 ], [ -123.988622579999969, 49.752571298000127 ], [ -123.988551213999969, 49.753210690000031 ], [ -123.989230487000029, 49.753797683000087 ], [ -123.984761405, 49.753715277000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.973843998131714", "sL_AssetLoss": "642.3", "sL_BldgLoss": "625.5", "sL_StrLoss": "575", "sL_NStrLoss": "50.5", "sL_ContLoss": "16.8", "geom_point": "0101000020E6100000CFE493FCA5FD5EC07A4A73D04AD24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.962609545999953, 49.643649463000074 ], [ -123.962598905999968, 49.643109863000113 ], [ -123.962183430999943, 49.643113316000075 ], [ -123.96216747899993, 49.642303916000067 ], [ -123.964244823999977, 49.642286633 ], [ -123.964266136999967, 49.643365833000054 ], [ -123.96385066, 49.643369293000021 ], [ -123.963855986999988, 49.643639094000029 ], [ -123.962609545999953, 49.643649463000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.979781160799239", "sL_AssetLoss": "1261.2", "sL_BldgLoss": "1235.7", "sL_StrLoss": "1087", "sL_NStrLoss": "148.7", "sL_ContLoss": "25.5", "geom_point": "0101000020E6100000AC39403087FD5EC073F6CE682BD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.960204041999972, 49.690352327000014 ], [ -123.960177465999919, 49.689003336000113 ], [ -123.959761598999961, 49.689006783000139 ], [ -123.959745662, 49.688197388000084 ], [ -123.960161520999975, 49.688193942000048 ], [ -123.960150894, 49.687654345000112 ], [ -123.960982603999938, 49.687647445000088 ], [ -123.960977284999956, 49.687377647000055 ], [ -123.962224841999941, 49.687367288000104 ], [ -123.962230168999952, 49.68763708700007 ], [ -123.962646023999966, 49.687633631000047 ], [ -123.962667336999957, 49.688712824000099 ], [ -123.96308320199995, 49.688709365000079 ], [ -123.963099194999955, 49.689518759000045 ], [ -123.962683322999936, 49.689522217000132 ], [ -123.962688652999958, 49.689792015000087 ], [ -123.96185690399993, 49.689798925000069 ], [ -123.96186223, 49.690068724000106 ], [ -123.961446353999975, 49.690072177000026 ], [ -123.961451676999957, 49.690341976000106 ], [ -123.960204041999972, 49.690352327000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "0.983594447764802", "sL_AssetLoss": "5956.52", "sL_BldgLoss": "5858.8", "sL_StrLoss": "5399", "sL_NStrLoss": "459.8", "sL_ContLoss": "97.72", "geom_point": "0101000020E61000004C258FE941005FC02DF1994FCADE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.00555213399997, 49.743424746000066 ], [ -124.00555800299999, 49.743289727000089 ], [ -124.001174181999914, 49.743209532 ], [ -124.001177933999898, 49.743123370000049 ], [ -124.000683767999988, 49.743114320000082 ], [ -124.00071884499998, 49.742309190000071 ], [ -124.000697502999941, 49.742308799000064 ], [ -124.00033250599995, 49.742302113000044 ], [ -124.000391106999956, 49.740957162000107 ], [ -124.000273886999935, 49.74095501400015 ], [ -124.000304562999986, 49.740250997000075 ], [ -123.99989031699999, 49.740243405000086 ], [ -123.999902734999964, 49.739958452000046 ], [ -123.999812831999961, 49.739956804000045 ], [ -123.99982858599995, 49.739595322000071 ], [ -123.999723850999914, 49.739593403000086 ], [ -123.99973475799996, 49.739343158000068 ], [ -123.999453155999973, 49.739337996000096 ], [ -123.999460273999972, 49.7391747100001 ], [ -123.999312060999955, 49.73917199300012 ], [ -123.999327740999888, 49.738812289000045 ], [ -123.999098574999948, 49.738808088000035 ], [ -123.999111497999976, 49.738511667000061 ], [ -123.998965289999944, 49.738508986000063 ], [ -123.999088681999964, 49.735678634000088 ], [ -123.999122060000033, 49.734912937000097 ], [ -123.999563028999916, 49.73492102200003 ], [ -123.999643009999957, 49.73497368500005 ], [ -124.000242007999972, 49.735705785000121 ], [ -124.00147650199996, 49.736342406000055 ], [ -124.002310119999962, 49.737064505000028 ], [ -124.002941619999945, 49.738047205000079 ], [ -124.002986107999959, 49.7389373090001 ], [ -124.003086281999941, 49.739054095000064 ], [ -124.003420496999965, 49.739149509000072 ], [ -124.003609074999986, 49.739535497000091 ], [ -124.003588912999959, 49.741253109000148 ], [ -124.00388310799994, 49.741394110000101 ], [ -124.004523420999988, 49.741469504000072 ], [ -124.005339188999969, 49.74126449900006 ], [ -124.00563070799997, 49.741271595000029 ], [ -124.006261521999988, 49.741626202000077 ], [ -124.007483723999911, 49.7416689 ], [ -124.008091802999957, 49.741546483000029 ], [ -124.008690202999972, 49.741532191000097 ], [ -124.009032805999965, 49.741358484000038 ], [ -124.009391923999914, 49.741301502000098 ], [ -124.009665609999956, 49.741092089000055 ], [ -124.00955968599996, 49.740716108000058 ], [ -124.009361684999988, 49.740511100000035 ], [ -124.0093286099999, 49.740196292000093 ], [ -124.009427846999969, 49.739896616000095 ], [ -124.011253723999985, 49.739929903000061 ], [ -124.011097885999931, 49.743525944000062 ], [ -124.00555213399997, 49.743424746000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.978571043988586", "sL_AssetLoss": "1114.38", "sL_BldgLoss": "1090.5", "sL_StrLoss": "997.5", "sL_NStrLoss": "93", "sL_ContLoss": "23.88", "geom_point": "0101000020E6100000475D08C518005FC0ABD0FE0FC9DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.999221281999951, 49.72590592300007 ], [ -123.999343414999942, 49.723103282000096 ], [ -124.000322901999965, 49.723498901000077 ], [ -124.001713406999912, 49.723604290000047 ], [ -124.002078492999971, 49.72378090200003 ], [ -124.002782503999981, 49.724313504000094 ], [ -124.004422088, 49.725064096000089 ], [ -124.00468610199998, 49.725754809000037 ], [ -124.004776062999895, 49.725750681000079 ], [ -124.004764903999984, 49.726007445000107 ], [ -123.999221281999951, 49.72590592300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "0.938917481346499", "sL_AssetLoss": "8121.8", "sL_BldgLoss": "7625.7", "sL_StrLoss": "5980.7", "sL_NStrLoss": "1645", "sL_ContLoss": "496.1", "geom_point": "0101000020E610000082753D4DBDFF5EC0AC7E3A585EC74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.997217796999962, 49.564334873000085 ], [ -123.997233318000028, 49.563977761000025 ], [ -123.996522192999961, 49.563964656000074 ], [ -123.996552706000017, 49.563262829000095 ], [ -123.996016517999962, 49.56325294500008 ], [ -123.99609014899994, 49.561559632000083 ], [ -123.994674072999942, 49.561533514000097 ], [ -123.994830575999941, 49.557936564000094 ], [ -123.995409017999918, 49.557947236000153 ], [ -123.995431781999969, 49.557423824000082 ], [ -123.993571586999934, 49.557389496000049 ], [ -123.993704892999972, 49.554327127000114 ], [ -123.992543337999933, 49.554305676000098 ], [ -123.992648574999947, 49.551889228000093 ], [ -123.992905006999976, 49.552026202 ], [ -123.993396000999951, 49.552334092000088 ], [ -123.99380228499993, 49.552649393000138 ], [ -123.994232654999962, 49.553090113000103 ], [ -123.994928089999945, 49.553802306000115 ], [ -123.995172155999967, 49.554035297000077 ], [ -123.995587493999921, 49.554431803000107 ], [ -123.995939306999958, 49.554667807000051 ], [ -123.996388996999968, 49.554907400000083 ], [ -123.997766086999945, 49.555431415000065 ], [ -123.997820963999942, 49.555460917000033 ], [ -123.99812661, 49.555625188000121 ], [ -123.998454471999977, 49.555872399000094 ], [ -123.99869591099997, 49.556136992000077 ], [ -123.99876593, 49.556251803000066 ], [ -123.998982314, 49.556606606000059 ], [ -123.99906688199999, 49.556885396000069 ], [ -123.999079205999962, 49.557080006 ], [ -123.999023192999957, 49.557414610000109 ], [ -123.998857980999958, 49.557876901000022 ], [ -123.998632726999944, 49.558377298000089 ], [ -123.998455799999945, 49.558770286000026 ], [ -123.998273286, 49.559088295000052 ], [ -123.998254431999925, 49.559111757000089 ], [ -123.99742170499999, 49.560146188000097 ], [ -123.997282801999972, 49.560417203000092 ], [ -123.997257202999904, 49.560529287000072 ], [ -123.997203489999919, 49.561033185000099 ], [ -123.997220874999982, 49.562509849000051 ], [ -123.997232723999929, 49.563517140000094 ], [ -123.997234364999926, 49.563661583000055 ], [ -123.997244817999956, 49.564335372000052 ], [ -123.997217796999962, 49.564334873000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8845000", "BldgCostT": "6100000", "sL_LossRatio": "0.973110327724831", "sL_AssetLoss": "8992.3", "sL_BldgLoss": "8750.5", "sL_StrLoss": "7473.5", "sL_NStrLoss": "1277", "sL_ContLoss": "241.8", "geom_point": "0101000020E6100000AB766E5654005FC03F705B7C06CB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.004816310999956, 49.593114200000073 ], [ -124.00484506399998, 49.592450521000046 ], [ -124.004762148999973, 49.592448999000048 ], [ -124.004917970999912, 49.588852196000062 ], [ -124.005102778999941, 49.588855585000054 ], [ -124.005121386999988, 49.588425999000066 ], [ -124.005730671999942, 49.588437175000102 ], [ -124.00574498099999, 49.58810671300013 ], [ -124.007056951999942, 49.588130764000056 ], [ -124.007059630999933, 49.588068846000091 ], [ -124.009111331999947, 49.588106425000049 ], [ -124.009122292999933, 49.587852844000047 ], [ -124.004848040999931, 49.587774513000056 ], [ -124.00486898299998, 49.587291097000033 ], [ -124.004258748999959, 49.587279899000066 ], [ -124.004346809, 49.585247568000021 ], [ -124.002968827999965, 49.58522227100007 ], [ -124.003042280999964, 49.583528070000042 ], [ -124.001984994999972, 49.583508649000052 ], [ -124.002006228999903, 49.583019119000028 ], [ -123.999747442999961, 49.582977593000088 ], [ -123.999770116999969, 49.582455470000049 ], [ -123.998737337999899, 49.582436467000079 ], [ -123.998893595999945, 49.578839620000096 ], [ -123.999744637999939, 49.57885528000007 ], [ -123.999827658999934, 49.576943156000027 ], [ -124.000009611999971, 49.577198395000039 ], [ -124.000004712999967, 49.577629315000173 ], [ -124.000096891999988, 49.577990109000041 ], [ -124.000280712999938, 49.578278786000062 ], [ -124.00059172399996, 49.578534698000048 ], [ -124.001282787999955, 49.578985592000123 ], [ -124.001440887999962, 49.579164015000032 ], [ -124.001610405999898, 49.579431713000126 ], [ -124.001844704999925, 49.580086691000083 ], [ -124.0018511009999, 49.58038560700011 ], [ -124.001957698999945, 49.580574698000106 ], [ -124.002100080999924, 49.580701492000095 ], [ -124.002431476999988, 49.58080659000008 ], [ -124.00284658899993, 49.580895202000079 ], [ -124.003214002999982, 49.580938005000156 ], [ -124.00347288799999, 49.58092919000007 ], [ -124.004231606999937, 49.580841491000051 ], [ -124.004483198999964, 49.580842505000057 ], [ -124.004513591999981, 49.580846902000062 ], [ -124.004696191999955, 49.580873407000134 ], [ -124.004906290999941, 49.580968990000066 ], [ -124.005083106999933, 49.581102787000155 ], [ -124.005389182999963, 49.581537603000129 ], [ -124.005516716999921, 49.581785692000039 ], [ -124.005510492999974, 49.582003362000066 ], [ -124.005495400999948, 49.582532188000123 ], [ -124.005589919999949, 49.582745403000104 ], [ -124.005762311999959, 49.582915102000079 ], [ -124.00633850599999, 49.583244209000092 ], [ -124.006505415999953, 49.583381396000078 ], [ -124.006852096999935, 49.583771989000049 ], [ -124.006990183000013, 49.584010228000075 ], [ -124.007392487999979, 49.584704295000044 ], [ -124.008251399999892, 49.585786505000087 ], [ -124.008481514999986, 49.585966195000033 ], [ -124.008846277999908, 49.586163600000091 ], [ -124.009091493999946, 49.586345393000052 ], [ -124.009453301999955, 49.586933405000053 ], [ -124.009763622999984, 49.588135901000079 ], [ -124.010077108999923, 49.588883189000057 ], [ -124.010090690999959, 49.589079597000122 ], [ -124.009876503999948, 49.589460003000042 ], [ -124.009713513999955, 49.589615402000021 ], [ -124.009459207999953, 49.589772691000064 ], [ -124.00891360199995, 49.590046195000063 ], [ -124.00849729399999, 49.590429992000033 ], [ -124.0083704199999, 49.590646399000086 ], [ -124.008342700999961, 49.590807903000083 ], [ -124.008411681999974, 49.590938689000055 ], [ -124.008424839999989, 49.590948669000049 ], [ -124.008585808999953, 49.591070589000019 ], [ -124.009617175999921, 49.591397191000063 ], [ -124.009938698999974, 49.591539899000075 ], [ -124.010509303999939, 49.59184278100004 ], [ -124.010729606999988, 49.592024985000137 ], [ -124.010952020999952, 49.592319805000052 ], [ -124.010963616999987, 49.592466703000071 ], [ -124.010898499999897, 49.59262930400007 ], [ -124.010837933999952, 49.592696982000128 ], [ -124.01036673499999, 49.592688363000079 ], [ -124.010348512999926, 49.593110147000083 ], [ -124.010311583999965, 49.593156772000043 ], [ -124.010277311999971, 49.593200053000011 ], [ -124.01026214499997, 49.59321396100006 ], [ -124.004816310999956, 49.593114200000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10575333", "BldgCostT": "7293333", "sL_LossRatio": "0.978849263122353", "sL_AssetLoss": "9240.34", "sL_BldgLoss": "9044.9", "sL_StrLoss": "7793", "sL_NStrLoss": "1251.9", "sL_ContLoss": "195.44", "geom_point": "0101000020E6100000F0C99AC3FB005FC07B7B423C33CF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.003684978999928, 49.622933303000103 ], [ -124.00282700799994, 49.622847676000113 ], [ -124.001553297999962, 49.622720512000029 ], [ -124.000009141999939, 49.622605408000027 ], [ -123.999932847999986, 49.622599720000061 ], [ -123.999988973999933, 49.621308260000049 ], [ -124.005520000999951, 49.621409759000088 ], [ -124.005497866999946, 49.621920487000111 ], [ -124.006177709999946, 49.621932943000033 ], [ -124.006177043999969, 49.621948329000126 ], [ -124.007442862999966, 49.621971510000051 ], [ -124.00743868899994, 49.622067927000082 ], [ -124.007454168999928, 49.622068210000059 ], [ -124.007451529999969, 49.622129185000084 ], [ -124.007720162999959, 49.622134103000114 ], [ -124.007714413999949, 49.622266926000059 ], [ -124.007700983999896, 49.622577149000065 ], [ -124.007714989999968, 49.622577404000062 ], [ -124.007702362999908, 49.622869082000122 ], [ -124.008189190999971, 49.622877993000046 ], [ -124.008185602999959, 49.622960904000067 ], [ -124.010533907999957, 49.623003853000078 ], [ -124.010563593999962, 49.622317163000069 ], [ -124.010602842999972, 49.621409222000032 ], [ -124.010969756999941, 49.62141592800009 ], [ -124.010976936999924, 49.62124983100005 ], [ -124.011811499999951, 49.621265080000072 ], [ -124.011823818999986, 49.620979951000045 ], [ -124.012440688999945, 49.620991218000071 ], [ -124.012445398999944, 49.620882167000083 ], [ -124.013204961999975, 49.62089603500003 ], [ -124.013209574999976, 49.620789185000078 ], [ -124.013753305999941, 49.620799109000075 ], [ -124.01375605600002, 49.620735399000125 ], [ -124.014223702999942, 49.62074393299999 ], [ -124.014228842999927, 49.620624810000081 ], [ -124.014557616999952, 49.620630808000101 ], [ -124.01455763, 49.620630518000034 ], [ -124.014747056999951, 49.620633973000096 ], [ -124.014827125999915, 49.61877771900005 ], [ -124.014942277, 49.618779820000093 ], [ -124.014953763999955, 49.618513483000079 ], [ -124.014735118999937, 49.618509495000048 ], [ -124.014890249999937, 49.614912812000036 ], [ -124.01496143199995, 49.614914109000026 ], [ -124.014982674999885, 49.614421512000099 ], [ -124.015677608999965, 49.614434187000015 ], [ -124.015685656999963, 49.614247529000103 ], [ -124.015714809999977, 49.614248060000065 ], [ -124.015725769999932, 49.613993830000041 ], [ -124.01575830499999, 49.613994423000094 ], [ -124.015781598999951, 49.613454029000081 ], [ -124.016217356999931, 49.613461974000096 ], [ -124.01730340599994, 49.613481767000017 ], [ -124.0173508, 49.612381465000063 ], [ -124.021140098999979, 49.612450442000103 ], [ -124.021160405000032, 49.612710409000051 ], [ -124.021694285999928, 49.613518306000088 ], [ -124.021790804999966, 49.613752200000093 ], [ -124.021833499999929, 49.613980703000038 ], [ -124.021831692999953, 49.614731997000057 ], [ -124.021771305999891, 49.615009905000136 ], [ -124.021531615999919, 49.615435702000077 ], [ -124.02089190400001, 49.616217783000138 ], [ -124.020746795999983, 49.616471594000075 ], [ -124.020718795, 49.616705007000078 ], [ -124.020750417999977, 49.617032289000065 ], [ -124.02101159899992, 49.617715497000084 ], [ -124.021364887999965, 49.618606505000095 ], [ -124.021399314999925, 49.619061598000052 ], [ -124.021247804999987, 49.619526814000054 ], [ -124.020846092999932, 49.620599302000109 ], [ -124.020665598, 49.62116019700008 ], [ -124.020662982999951, 49.62138072000004 ], [ -124.02083239199996, 49.621881428000066 ], [ -124.020817622999942, 49.622065617000089 ], [ -124.020713530999984, 49.622234721000055 ], [ -124.02052660899993, 49.622395934000068 ], [ -124.020182222999907, 49.622520148000056 ], [ -124.019871153999986, 49.622577492000069 ], [ -124.019551665999984, 49.622604960000025 ], [ -124.019184965999955, 49.622604609000092 ], [ -124.019110688999916, 49.622594262000092 ], [ -124.018872699999946, 49.622561110000099 ], [ -124.018175117999988, 49.622273971 ], [ -124.017887859000027, 49.622195846000068 ], [ -124.017058753999962, 49.622168121000136 ], [ -124.016517498999931, 49.622203266000042 ], [ -124.015539006, 49.622335299000063 ], [ -124.01508376299995, 49.622396693000063 ], [ -124.013737475999918, 49.622519726000071 ], [ -124.011756717999987, 49.622818302000049 ], [ -124.010473006999945, 49.623253769000073 ], [ -124.008759533, 49.62360939600007 ], [ -124.008049152999916, 49.623715187000059 ], [ -124.007349275999928, 49.623738359000129 ], [ -124.006716638999961, 49.623710585000026 ], [ -124.006399581, 49.623653116000106 ], [ -124.006236054999988, 49.623623484000056 ], [ -124.005197505999959, 49.623244230000083 ], [ -124.004881856999987, 49.623128927000039 ], [ -124.003736832999934, 49.62294180100006 ], [ -124.003684978999928, 49.622933303000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13112834", "BldgCostT": "9043334", "sL_LossRatio": "0.984743585496652", "sL_AssetLoss": "10867.56", "sL_BldgLoss": "10701.76", "sL_StrLoss": "9731.26", "sL_NStrLoss": "970.5", "sL_ContLoss": "165.8", "geom_point": "0101000020E61000004BE9BA6C8B005FC07F9A498AFEDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.009398898999976, 49.75301279000012 ], [ -124.008690911999963, 49.752964296000115 ], [ -124.007762207999988, 49.753026999000035 ], [ -124.006385796999936, 49.752967206000065 ], [ -124.005514991999931, 49.75316369800003 ], [ -124.003998084999978, 49.752951499000062 ], [ -124.002595391999961, 49.752981414000082 ], [ -124.002010116999912, 49.75280770300008 ], [ -124.001228299999966, 49.752004387000056 ], [ -124.000740798, 49.751829200000039 ], [ -123.99922520199999, 49.751050204000109 ], [ -123.999046553999946, 49.751001465000115 ], [ -123.999074855999964, 49.750352477000078 ], [ -124.000433709999953, 49.750377375000063 ], [ -124.000464539999911, 49.749669908000079 ], [ -124.001958649999935, 49.749697267000059 ], [ -124.001966187999983, 49.74952414500008 ], [ -124.002329139999972, 49.74953078699999 ], [ -124.002343390999911, 49.749203454000053 ], [ -124.004515037999937, 49.749243174000092 ], [ -124.004523313, 49.749052907000106 ], [ -124.004559684999933, 49.749053572000086 ], [ -124.004569524999908, 49.748827307000091 ], [ -124.004657378999951, 49.748828914000057 ], [ -124.004698976, 49.747872309000101 ], [ -124.006402464999965, 49.747903434000129 ], [ -124.006498030000031, 49.745703747000107 ], [ -124.007820862999935, 49.745727899000059 ], [ -124.00782407899996, 49.745653779000087 ], [ -124.013370105999911, 49.745754862000062 ], [ -124.013253820999978, 49.748440748000029 ], [ -124.013822393999931, 49.748451095000078 ], [ -124.01381114499999, 49.747911388000027 ], [ -124.01547659799999, 49.747896801000138 ], [ -124.015493495999934, 49.748706173000123 ], [ -124.014385628999904, 49.748715880000098 ], [ -124.014370073999956, 49.749075337000178 ], [ -124.01460106599994, 49.749079538000089 ], [ -124.014579429999941, 49.749579552000128 ], [ -124.014875285999892, 49.74958493200004 ], [ -124.014719699999958, 49.753180929000017 ], [ -124.014183609999975, 49.753171179000049 ], [ -124.014170490999902, 49.753474279000031 ], [ -124.014073904999961, 49.753521206000109 ], [ -124.01378418799996, 49.753559711000086 ], [ -124.013103413999929, 49.753546797000126 ], [ -124.012205012, 49.753078288000012 ], [ -124.011954910999975, 49.753027008000068 ], [ -124.011137803999986, 49.753123785000049 ], [ -124.010544811999949, 49.753353110000091 ], [ -124.01009299899999, 49.75367219800011 ], [ -124.009870599999928, 49.753692094000051 ], [ -124.009398898999976, 49.75301279000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.972444274013549", "sL_AssetLoss": "2034.06", "sL_BldgLoss": "1978.01", "sL_StrLoss": "1721.21", "sL_NStrLoss": "256.8", "sL_ContLoss": "56.05", "geom_point": "0101000020E610000044D9001147015FC06BEFF89BF5CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.021086056999962, 49.612087377000059 ], [ -124.021100969, 49.611740511000107 ], [ -124.019018802999938, 49.61170262400001 ], [ -124.019077894999981, 49.610329457000027 ], [ -124.01901578699993, 49.610328327000055 ], [ -124.019032691999939, 49.609935485000101 ], [ -124.01827618599998, 49.609921709000076 ], [ -124.018298546999915, 49.609402247000055 ], [ -124.017972105999945, 49.609396302000079 ], [ -124.018067138, 49.60718899700008 ], [ -124.018126952999964, 49.605799566000073 ], [ -124.018373534999938, 49.605804058000103 ], [ -124.018620368999947, 49.607150214000072 ], [ -124.018732463999953, 49.60742348900007 ], [ -124.022707196999932, 49.607014009000082 ], [ -124.022683687999944, 49.607138094000071 ], [ -124.022645058999927, 49.607216411000067 ], [ -124.022577583999976, 49.607353105000065 ], [ -124.022463189999939, 49.607503994000098 ], [ -124.022074070999935, 49.607828724000058 ], [ -124.022004092999907, 49.607887091000116 ], [ -124.021777093999916, 49.608017007000086 ], [ -124.02165889599992, 49.608193101000069 ], [ -124.021554409999965, 49.608306289000055 ], [ -124.021515492999953, 49.608471202000061 ], [ -124.021476970999942, 49.609126002000068 ], [ -124.02146429299998, 49.609341393000086 ], [ -124.021367974999961, 49.609908300000043 ], [ -124.021137852999971, 49.612088319000044 ], [ -124.021086056999962, 49.612087377000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9200250", "BldgCostT": "6345000", "sL_LossRatio": "0.981545313814031", "sL_AssetLoss": "7467.48", "sL_BldgLoss": "7329.67", "sL_StrLoss": "6520.77", "sL_NStrLoss": "808.9", "sL_ContLoss": "137.81", "geom_point": "0101000020E61000001B19DCBDF9FD5EC0A77A32FF68DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.95999405099991, 49.749056142000043 ], [ -123.960153910999964, 49.745460203000086 ], [ -123.960507545999931, 49.74546681200011 ], [ -123.960605220999923, 49.743269009000137 ], [ -123.961343823999982, 49.743282808000053 ], [ -123.961355004999945, 49.743031126000034 ], [ -123.961983978999925, 49.743042873000078 ], [ -123.961991688999959, 49.742869242000062 ], [ -123.962772404999939, 49.742883817000063 ], [ -123.962785573999966, 49.742587161000102 ], [ -123.96393808299996, 49.742608667000084 ], [ -123.963953246999921, 49.742266888000074 ], [ -123.966084304999967, 49.742306622000065 ], [ -123.966088061999983, 49.742221841000116 ], [ -123.971633580999963, 49.742325044000033 ], [ -123.971618066999952, 49.742676045000088 ], [ -123.971902892999978, 49.742681338000132 ], [ -123.971882094999927, 49.743151934000082 ], [ -123.972264007999925, 49.743159030000129 ], [ -123.972228222999959, 49.743968901000088 ], [ -123.972869637000016, 49.743980816000033 ], [ -123.972851640999977, 49.744388201000064 ], [ -123.974046517999938, 49.744410386000013 ], [ -123.97403639199996, 49.744639759000023 ], [ -123.974678209999965, 49.744651670000046 ], [ -123.974670961999919, 49.744815875000057 ], [ -123.97535429499996, 49.74482855300004 ], [ -123.975343415999987, 49.745075126000117 ], [ -123.975904889999967, 49.745085540000069 ], [ -123.975891013999899, 49.74540013900004 ], [ -123.976790575999956, 49.745416816000144 ], [ -123.976787350999956, 49.745489983 ], [ -123.977349560999969, 49.745500403000079 ], [ -123.977342229999977, 49.745666707000034 ], [ -123.977870150999934, 49.745676489000104 ], [ -123.97786988899999, 49.745682446000082 ], [ -123.978330434999947, 49.74569097700001 ], [ -123.978171998999983, 49.749286941000122 ], [ -123.975387896999962, 49.749235339000059 ], [ -123.975502815999931, 49.749076204000083 ], [ -123.975778909999946, 49.749054909000087 ], [ -123.976546207999931, 49.749201597000045 ], [ -123.977057316999918, 49.749116105000041 ], [ -123.977105293999941, 49.74876580700009 ], [ -123.976679592999943, 49.748247404000061 ], [ -123.974348593999977, 49.747583696000078 ], [ -123.973592598999943, 49.747301692000093 ], [ -123.972771477999984, 49.747164995000013 ], [ -123.970116713999971, 49.746341790000088 ], [ -123.969594679999943, 49.745895998000044 ], [ -123.969163404999975, 49.745126890000101 ], [ -123.968895805999963, 49.74494889400016 ], [ -123.967991915999974, 49.744928894000083 ], [ -123.96779590099996, 49.74485920900004 ], [ -123.967332590999916, 49.744574309000043 ], [ -123.96602911299999, 49.744612805000024 ], [ -123.965491698999955, 49.744779386000076 ], [ -123.964598795999947, 49.745253687000059 ], [ -123.96383601299999, 49.745323489000107 ], [ -123.962953317999919, 49.745582696000021 ], [ -123.962928797999922, 49.745717987000084 ], [ -123.96311198799998, 49.745860397000058 ], [ -123.963767393999973, 49.74607120600006 ], [ -123.963744925999919, 49.746304704000096 ], [ -123.963065779999951, 49.746346 ], [ -123.962804095999971, 49.746447188000083 ], [ -123.96278040699994, 49.746699190000072 ], [ -123.963530991999932, 49.747448396000031 ], [ -123.963494288999982, 49.748402589000101 ], [ -123.964111806999966, 49.748757197 ], [ -123.96501459299995, 49.748767211000072 ], [ -123.965548193999922, 49.74898345000004 ], [ -123.965540380999968, 49.749159654000032 ], [ -123.95999405099991, 49.749056142000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "404599109", "BldgCostT": "235337964", "sL_LossRatio": "0.69792225894935", "sL_AssetLoss": "613382.5", "sL_BldgLoss": "428093.3", "sL_StrLoss": "252124.3", "sL_NStrLoss": "175969", "sL_ContLoss": "185289.2", "geom_point": "0101000020E610000001CB633073015FC0064479931DCF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.009974789999958, 49.626243911000039 ], [ -124.010100602999941, 49.62553320100006 ], [ -124.009201779999913, 49.625621495000068 ], [ -124.008250803999942, 49.625855090000073 ], [ -124.007071314999934, 49.626396297000078 ], [ -124.006780808999977, 49.626461791000082 ], [ -124.005690204999937, 49.626624110000144 ], [ -124.005082204999923, 49.626638394000075 ], [ -124.004470214999941, 49.626481694000077 ], [ -124.003658915999964, 49.626137095000082 ], [ -124.00238531399999, 49.626129895000084 ], [ -124.000827254999962, 49.626220168000067 ], [ -124.001553297999962, 49.622720512000029 ], [ -124.00282700799994, 49.622847676000113 ], [ -124.003684978999928, 49.622933303000103 ], [ -124.003736832999934, 49.62294180100006 ], [ -124.004881856999987, 49.623128927000039 ], [ -124.005197505999959, 49.623244230000083 ], [ -124.006236054999988, 49.623623484000056 ], [ -124.006399581, 49.623653116000106 ], [ -124.006716638999961, 49.623710585000026 ], [ -124.007349275999928, 49.623738359000129 ], [ -124.008049152999916, 49.623715187000059 ], [ -124.008759533, 49.62360939600007 ], [ -124.010473006999945, 49.623253769000073 ], [ -124.011756717999987, 49.622818302000049 ], [ -124.013737475999918, 49.622519726000071 ], [ -124.01508376299995, 49.622396693000063 ], [ -124.015539006, 49.622335299000063 ], [ -124.016517498999931, 49.622203266000042 ], [ -124.017058753999962, 49.622168121000136 ], [ -124.017887859000027, 49.622195846000068 ], [ -124.018175117999988, 49.622273971 ], [ -124.018872699999946, 49.622561110000099 ], [ -124.019110688999916, 49.622594262000092 ], [ -124.019184965999955, 49.622604609000092 ], [ -124.019551665999984, 49.622604960000025 ], [ -124.019871153999986, 49.622577492000069 ], [ -124.020182222999907, 49.622520148000056 ], [ -124.02052660899993, 49.622395934000068 ], [ -124.020713530999984, 49.622234721000055 ], [ -124.020817622999942, 49.622065617000089 ], [ -124.02083239199996, 49.621881428000066 ], [ -124.020662982999951, 49.62138072000004 ], [ -124.020665598, 49.62116019700008 ], [ -124.020846092999932, 49.620599302000109 ], [ -124.021247804999987, 49.619526814000054 ], [ -124.021399314999925, 49.619061598000052 ], [ -124.021364887999965, 49.618606505000095 ], [ -124.02101159899992, 49.617715497000084 ], [ -124.020750417999977, 49.617032289000065 ], [ -124.020718795, 49.616705007000078 ], [ -124.020746795999983, 49.616471594000075 ], [ -124.02089190400001, 49.616217783000138 ], [ -124.021531615999919, 49.615435702000077 ], [ -124.021771305999891, 49.615009905000136 ], [ -124.021831692999953, 49.614731997000057 ], [ -124.021833499999929, 49.613980703000038 ], [ -124.021790804999966, 49.613752200000093 ], [ -124.021694285999928, 49.613518306000088 ], [ -124.021160405000032, 49.612710409000051 ], [ -124.021140098999979, 49.612450442000103 ], [ -124.021343828999932, 49.612454146000054 ], [ -124.021348592999956, 49.612508791000032 ], [ -124.0215887, 49.612731006000118 ], [ -124.022294375999934, 49.614101095000137 ], [ -124.022298521000025, 49.614937101000066 ], [ -124.021521010999919, 49.616213206000097 ], [ -124.021538311999961, 49.616384096000097 ], [ -124.021876596999974, 49.616579196000011 ], [ -124.022248687999962, 49.616557802000045 ], [ -124.022661421999942, 49.616364100000027 ], [ -124.023845099999932, 49.616057901000062 ], [ -124.024228493, 49.615865706000065 ], [ -124.024565785999954, 49.615511004000069 ], [ -124.024569605999915, 49.615025403000075 ], [ -124.024018702999939, 49.614464208000072 ], [ -124.023983505000018, 49.614095388000109 ], [ -124.024934906999988, 49.612567206000087 ], [ -124.024781083999969, 49.611902103000041 ], [ -124.024845695999929, 49.611685591000082 ], [ -124.024966199999952, 49.611487586000074 ], [ -124.025498687999956, 49.611150094000067 ], [ -124.025456488999964, 49.611033306000138 ], [ -124.02503569199996, 49.610856702000028 ], [ -124.024191784999957, 49.610828202000043 ], [ -124.023764490999952, 49.610886607000076 ], [ -124.023361687999952, 49.610826809000045 ], [ -124.022852503, 49.610326889000113 ], [ -124.022616323999912, 49.610284203000091 ], [ -124.022215390999961, 49.610342596000038 ], [ -124.021995109, 49.611073199000046 ], [ -124.021438073999931, 49.612093778000023 ], [ -124.021137852999971, 49.612088319000044 ], [ -124.021367974999961, 49.609908300000043 ], [ -124.02146429299998, 49.609341393000086 ], [ -124.021476970999942, 49.609126002000068 ], [ -124.021515492999953, 49.608471202000061 ], [ -124.021554409999965, 49.608306289000055 ], [ -124.02165889599992, 49.608193101000069 ], [ -124.021777093999916, 49.608017007000086 ], [ -124.022004092999907, 49.607887091000116 ], [ -124.022074070999935, 49.607828724000058 ], [ -124.022463189999939, 49.607503994000098 ], [ -124.022577583999976, 49.607353105000065 ], [ -124.022645058999927, 49.607216411000067 ], [ -124.022683687999944, 49.607138094000071 ], [ -124.022707196999932, 49.607014009000082 ], [ -124.025227813999919, 49.606535133000143 ], [ -124.025531191999974, 49.606732213000051 ], [ -124.026308093999944, 49.606770707000145 ], [ -124.026568191999971, 49.606688110000043 ], [ -124.02693349299993, 49.606962915000068 ], [ -124.027437081999935, 49.607821703000091 ], [ -124.027427699999961, 49.608029711000121 ], [ -124.026939597999927, 49.608483996000096 ], [ -124.027058474999976, 49.608611308000079 ], [ -124.027121791999932, 49.608679088000081 ], [ -124.027430681999988, 49.608847201000046 ], [ -124.028304109999951, 49.608894203000105 ], [ -124.028417408999957, 49.609009485000094 ], [ -124.028471802999931, 49.609638993000026 ], [ -124.02880899799996, 49.609896813000077 ], [ -124.029115297999937, 49.609948102000104 ], [ -124.029595810999965, 49.609791410000078 ], [ -124.030191498999912, 49.609839792000095 ], [ -124.030799598999948, 49.609788613000063 ], [ -124.031252083999931, 49.609533595000137 ], [ -124.031859098999917, 49.609492303000088 ], [ -124.032767392, 49.609231696000073 ], [ -124.033147806999978, 49.609543594000108 ], [ -124.03323659499992, 49.60977721400009 ], [ -124.033444318999969, 49.609819904000055 ], [ -124.03371668199999, 49.609556396000094 ], [ -124.033766892999935, 49.609358495 ], [ -124.033648806999949, 49.608964 ], [ -124.033935903999975, 49.608807298000031 ], [ -124.034054011999928, 49.608536693000062 ], [ -124.034356687999946, 49.608452702000072 ], [ -124.034648303999958, 49.608478294000115 ], [ -124.034934208999957, 49.608871409000166 ], [ -124.034810312999952, 49.609619087000041 ], [ -124.034537696999905, 49.610393913000102 ], [ -124.034767119999955, 49.610842503000065 ], [ -124.03516100399996, 49.611117390000082 ], [ -124.036832996999962, 49.611597292000106 ], [ -124.03757549699999, 49.612040204000081 ], [ -124.037629479999936, 49.612634092000064 ], [ -124.037332680999938, 49.612987294000064 ], [ -124.036947218999956, 49.613098400000069 ], [ -124.0352718, 49.613086991000046 ], [ -124.035096706999965, 49.613276501000051 ], [ -124.035115421999961, 49.613582704000102 ], [ -124.034881788999925, 49.613656706000057 ], [ -124.03392308799998, 49.613458804000032 ], [ -124.033816207999919, 49.613027185000092 ], [ -124.033255197999921, 49.612618489000063 ], [ -124.032628409999987, 49.612444701000094 ], [ -124.032552300999924, 49.612094407000093 ], [ -124.032396703999936, 49.611943392000015 ], [ -124.03200568199999, 49.611829494000141 ], [ -124.031479793999893, 49.61179811300007 ], [ -124.031218616999951, 49.611890701000064 ], [ -124.030811697999951, 49.612325101000081 ], [ -124.0320862, 49.612313708000116 ], [ -124.03233718599995, 49.612401999000085 ], [ -124.03246468699993, 49.612617102000044 ], [ -124.033103691999926, 49.612719597000087 ], [ -124.03339160799996, 49.613202391000044 ], [ -124.033513089999971, 49.613659600000069 ], [ -124.034399905999919, 49.613759284000061 ], [ -124.034611374999955, 49.613928695000048 ], [ -124.034524293999965, 49.614405914000017 ], [ -124.034238396999925, 49.614625194000062 ], [ -124.0337024, 49.614827412000103 ], [ -124.03333422499999, 49.615109403000069 ], [ -124.033150614999926, 49.615525307000098 ], [ -124.033479410999959, 49.615989610000042 ], [ -124.033402602999942, 49.616386897000062 ], [ -124.033206405999948, 49.61639970100002 ], [ -124.032630207999915, 49.616437303000048 ], [ -124.032616424999929, 49.616438201000086 ], [ -124.032069110999913, 49.616811297000069 ], [ -124.031992900999981, 49.617081891000041 ], [ -124.032181600999948, 49.617549096000104 ], [ -124.032033607999963, 49.617765604000063 ], [ -124.031730293999928, 49.617814004000124 ], [ -124.031506091999987, 49.617680096000065 ], [ -124.030924397999939, 49.617650189000123 ], [ -124.030447814999917, 49.617365402000075 ], [ -124.031198589999946, 49.616811314000095 ], [ -124.031091010999944, 49.616352691000031 ], [ -124.031472709999917, 49.616062201000091 ], [ -124.031495701999972, 49.615889901000116 ], [ -124.031035690999971, 49.61569620100007 ], [ -124.030753123999929, 49.615446904000109 ], [ -124.030578781999964, 49.615070993000074 ], [ -124.030612408999971, 49.614647990000016 ], [ -124.030259406, 49.613652411000032 ], [ -124.03014678599996, 49.613564104000091 ], [ -124.029871291999953, 49.613646705000065 ], [ -124.029457199999925, 49.61437019300007 ], [ -124.029515799999942, 49.614558197000115 ], [ -124.029853106999937, 49.614763311000061 ], [ -124.029908591999984, 49.615382913000055 ], [ -124.030304982999965, 49.615811505000096 ], [ -124.030308797, 49.616072199000101 ], [ -124.029899282999978, 49.616255898000134 ], [ -124.029273293999964, 49.616774298000067 ], [ -124.029132506999957, 49.617395310000077 ], [ -124.028902804999916, 49.617596110000072 ], [ -124.02860821799996, 49.618776799000031 ], [ -124.028404904999931, 49.618949089000118 ], [ -124.027800101999958, 49.619144210000115 ], [ -124.027693311999926, 49.61932510200014 ], [ -124.027931293, 49.619466100000082 ], [ -124.028774882, 49.619458898000076 ], [ -124.02882039299999, 49.619646906000057 ], [ -124.028814325999917, 49.6196552440001 ], [ -124.028640116999924, 49.619751397000108 ], [ -124.028691196999972, 49.619824466000061 ], [ -124.028510502999922, 49.620072802000081 ], [ -124.028680292999965, 49.620161097000107 ], [ -124.028861447999972, 49.620040093000107 ], [ -124.029031058000015, 49.620198131000073 ], [ -124.029340784999988, 49.620454774000059 ], [ -124.029420998999953, 49.620451881000051 ], [ -124.028980496999964, 49.620706605000066 ], [ -124.028982886999927, 49.620779209000069 ], [ -124.029289797000018, 49.620866100000093 ], [ -124.029579403999946, 49.620863206000081 ], [ -124.030585686999984, 49.620612606000087 ], [ -124.031528303999949, 49.62071080900008 ], [ -124.032537399999967, 49.620576994000061 ], [ -124.032843707999987, 49.620628184000068 ], [ -124.033388077999959, 49.620901694000054 ], [ -124.033315996999974, 49.621424409000113 ], [ -124.032882608999927, 49.621895791000092 ], [ -124.032995308999972, 49.621984109000017 ], [ -124.03288819, 49.622120806000069 ], [ -124.032379310999914, 49.62226890100002 ], [ -124.031477499999951, 49.622907007000045 ], [ -124.030664192999922, 49.623012308000057 ], [ -124.030275408999984, 49.622970992000077 ], [ -124.029839315999979, 49.623325704000102 ], [ -124.029424097999964, 49.623365590000148 ], [ -124.029205396999927, 49.62348519500005 ], [ -124.029183010999986, 49.623664606000027 ], [ -124.028843909999949, 49.624063390000025 ], [ -124.028486411999936, 49.624138904000048 ], [ -124.028348283999946, 49.624121801000065 ], [ -124.027896012999946, 49.623775691000063 ], [ -124.027890406000012, 49.623469489000122 ], [ -124.028230116999936, 49.623106400000061 ], [ -124.028114787000035, 49.62295400700004 ], [ -124.027602889999912, 49.622941099000052 ], [ -124.027218487999974, 49.623114907000073 ], [ -124.026829991999975, 49.623065088000125 ], [ -124.026548276999932, 49.622834294000064 ], [ -124.026529512999971, 49.622609293000068 ], [ -124.026265375999969, 49.622593596000087 ], [ -124.025816315999961, 49.622237596000048 ], [ -124.025485485999951, 49.622357195000113 ], [ -124.02543369599999, 49.622538109000075 ], [ -124.025376949999966, 49.622532073000031 ], [ -124.024643818999934, 49.622454101000159 ], [ -124.02434300099999, 49.622627797000135 ], [ -124.024191697999981, 49.623394013000059 ], [ -124.023657201999953, 49.624262798000103 ], [ -124.02268890000002, 49.624999106000111 ], [ -124.019808984999969, 49.624962093000114 ], [ -124.018693424999981, 49.624594602000087 ], [ -124.018034699999987, 49.624240002000086 ], [ -124.016843606999913, 49.624222889000109 ], [ -124.016569099999984, 49.624396711000067 ], [ -124.016574896999913, 49.624613202000099 ], [ -124.017894311999967, 49.625464800000032 ], [ -124.018090875999945, 49.625669894000097 ], [ -124.018066303999888, 49.625768197000113 ], [ -124.017531083999927, 49.625988897000099 ], [ -124.016000912999957, 49.62630940400004 ], [ -124.015534890999973, 49.626520192000108 ], [ -124.013990293999939, 49.626883392000124 ], [ -124.011012597999979, 49.626856298000092 ], [ -124.01073581199999, 49.626795097000105 ], [ -124.01014649699998, 49.626450408000053 ], [ -124.009974789999958, 49.626243911000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.944773809176134", "sL_AssetLoss": "3424.1", "sL_BldgLoss": "3235", "sL_StrLoss": "2608", "sL_NStrLoss": "627", "sL_ContLoss": "189.1", "geom_point": "0101000020E61000000BE9B6657C025FC0851964DC9ECF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.038154192999954, 49.621092516000047 ], [ -124.03837450499995, 49.620965794000078 ], [ -124.039303720999925, 49.6211011030001 ], [ -124.039584503, 49.621260599000031 ], [ -124.039798304999962, 49.621563884000047 ], [ -124.03982209099992, 49.621986908000039 ], [ -124.039396388999975, 49.622854310000051 ], [ -124.038932213999928, 49.623110608000097 ], [ -124.038294485999941, 49.623062199000081 ], [ -124.03787569, 49.62288559400011 ], [ -124.037936217999956, 49.622489695000091 ], [ -124.038249397999948, 49.622288911000076 ], [ -124.038288190999964, 49.622099402000082 ], [ -124.03804652, 49.621823099000082 ], [ -124.038062287999978, 49.621319002000035 ], [ -124.038154192999954, 49.621092516000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.95213228894691", "sL_AssetLoss": "5745", "sL_BldgLoss": "5470", "sL_StrLoss": "4410", "sL_NStrLoss": "1060", "sL_ContLoss": "275", "geom_point": "0101000020E61000004F42A7EF0E045FC0C9861CF8A4CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.063824036999904, 49.616334706000082 ], [ -124.063941896999935, 49.615704689000026 ], [ -124.063781681999956, 49.615939694000083 ], [ -124.063405768999957, 49.616199149000039 ], [ -124.063396711999928, 49.615782953000036 ], [ -124.063023843999943, 49.615786378000067 ], [ -124.062917304999957, 49.615660600000112 ], [ -124.062582503999977, 49.614971308000044 ], [ -124.062547643999892, 49.614934820000094 ], [ -124.062519325, 49.613632233000082 ], [ -124.061273686999925, 49.613643661000026 ], [ -124.061268630999933, 49.61341083600005 ], [ -124.06133218599993, 49.613398896000064 ], [ -124.061425180999919, 49.613263596000067 ], [ -124.06128499099998, 49.613165389000038 ], [ -124.061279413999941, 49.612564220000088 ], [ -124.062290176999937, 49.612554949000064 ], [ -124.062314000999919, 49.61274240000008 ], [ -124.062499189999954, 49.612706171000063 ], [ -124.062501727999972, 49.612822854000072 ], [ -124.062916931999951, 49.612819042000062 ], [ -124.062922799999953, 49.613088836000081 ], [ -124.064578780999966, 49.613073617000062 ], [ -124.064584333999917, 49.613105951000094 ], [ -124.064595225999952, 49.613605927 ], [ -124.064440419999926, 49.61382910500005 ], [ -124.064357107999925, 49.614397298000064 ], [ -124.064056488999981, 49.615200600000023 ], [ -124.064262102999948, 49.615153592000112 ], [ -124.064646608999951, 49.614394498000074 ], [ -124.064729895999974, 49.61432180500001 ], [ -124.064883610999942, 49.614383110000048 ], [ -124.064813494999939, 49.615003992000076 ], [ -124.064967000999928, 49.61636129 ], [ -124.06481319, 49.616579473000058 ], [ -124.063829562999899, 49.616588517000082 ], [ -124.063824036999904, 49.616334706000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.933367702023457", "sL_AssetLoss": "7759", "sL_BldgLoss": "7242", "sL_StrLoss": "5654", "sL_NStrLoss": "1588", "sL_ContLoss": "517", "geom_point": "0101000020E61000008B6CE7FBA9035FC08FF1B43E5DCD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.055280119, 49.605333195000121 ], [ -124.055245176999946, 49.603714430000096 ], [ -124.055660304999904, 49.603710645000035 ], [ -124.055654478999941, 49.603440850000055 ], [ -124.058975488999963, 49.603410514000167 ], [ -124.058998866999971, 49.604489690000051 ], [ -124.059414001999954, 49.604485891000081 ], [ -124.059431541, 49.605295273000102 ], [ -124.055280119, 49.605333195000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.932395686826067", "sL_AssetLoss": "5332.5", "sL_BldgLoss": "4972", "sL_StrLoss": "3920", "sL_NStrLoss": "1052", "sL_ContLoss": "360.5", "geom_point": "0101000020E61000005559E38557035FC033E04D3334CD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.051575871999944, 49.602149389000097 ], [ -124.053060793999961, 49.602175973000051 ], [ -124.053158421999981, 49.602230301000041 ], [ -124.053603292999966, 49.602325707 ], [ -124.053865763999951, 49.60294598400003 ], [ -124.053861773999984, 49.603040400000047 ], [ -124.053829100999934, 49.603150305000014 ], [ -124.053039608999967, 49.603759894000078 ], [ -124.052477509999918, 49.604034803000033 ], [ -124.051234502999947, 49.60411018700011 ], [ -124.05066119599999, 49.604474807000088 ], [ -124.050489976, 49.604251197000075 ], [ -124.050814486999968, 49.603960690000108 ], [ -124.050759710999912, 49.603339703000067 ], [ -124.050964398999909, 49.603221512000054 ], [ -124.051575871999944, 49.602149389000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.908602150537634", "sL_AssetLoss": "4650", "sL_BldgLoss": "4225", "sL_StrLoss": "3300", "sL_NStrLoss": "925", "sL_ContLoss": "425", "geom_point": "0101000020E6100000349445276C025FC08AC4A97B09D04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.037589214999983, 49.626342195000042 ], [ -124.03731057899995, 49.626263796000039 ], [ -124.03701909499992, 49.626310794000048 ], [ -124.036795714999982, 49.626223907000103 ], [ -124.036830598999956, 49.625826609000114 ], [ -124.037657393999936, 49.625001994000058 ], [ -124.037669412999918, 49.624910806000052 ], [ -124.03748709199999, 49.624849594000125 ], [ -124.037267001999965, 49.62420441000009 ], [ -124.037531091999966, 49.62368028900007 ], [ -124.037899003999968, 49.623406890000048 ], [ -124.038123311999968, 49.623459586000081 ], [ -124.03840798399996, 49.62387969600011 ], [ -124.038441796999948, 49.624121793 ], [ -124.038329099999956, 49.624715698000053 ], [ -124.038112600999938, 49.62499769700004 ], [ -124.03816677399999, 49.625518995000064 ], [ -124.038533904999937, 49.62584798400006 ], [ -124.03873338199999, 49.626169798000035 ], [ -124.038713815000037, 49.626547199000122 ], [ -124.038265486999975, 49.626920406000082 ], [ -124.037915306999977, 49.626779412000083 ], [ -124.037589214999983, 49.626342195000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181755166", "BldgCostT": "124876666", "sL_LossRatio": "0.883745563540269", "sL_AssetLoss": "574472.7", "sL_BldgLoss": "507687.7", "sL_StrLoss": "350681.7", "sL_NStrLoss": "157006", "sL_ContLoss": "66785", "geom_point": "0101000020E61000007FDAF2DB21035FC011EB7D78D0CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.047462595999932, 49.627054310000084 ], [ -124.046233682999954, 49.626578597000098 ], [ -124.04471210299999, 49.626611286000092 ], [ -124.043787290999902, 49.626772293000087 ], [ -124.043051301999952, 49.626698200000114 ], [ -124.042666290999989, 49.626763709000109 ], [ -124.042258934999936, 49.626732930000088 ], [ -124.042138191999953, 49.626723807000054 ], [ -124.041842214999974, 49.626474596000094 ], [ -124.04145979799999, 49.626685407000068 ], [ -124.041072600999911, 49.626750902000047 ], [ -124.040780994, 49.626745205000105 ], [ -124.040195811000018, 49.626543004000048 ], [ -124.039322894999955, 49.625913511000135 ], [ -124.039431687999965, 49.625111598000089 ], [ -124.03989941199994, 49.624369603000119 ], [ -124.040186591999912, 49.624151705000067 ], [ -124.041778616999949, 49.623489498000048 ], [ -124.042336125999952, 49.623060804000083 ], [ -124.042730103999986, 49.622032490000095 ], [ -124.042698796999929, 49.62183449500003 ], [ -124.042352109999953, 49.621837392000074 ], [ -124.04233770799999, 49.621774695000084 ], [ -124.042898596000029, 49.621437203000035 ], [ -124.043317010999914, 49.621001385000113 ], [ -124.043449396999932, 49.620712303000033 ], [ -124.044145592999911, 49.620193813000171 ], [ -124.044521993999979, 49.619713907000083 ], [ -124.045039424, 49.619330802000036 ], [ -124.045143608, 49.619024606000025 ], [ -124.044968922999914, 49.618575903000071 ], [ -124.04596281299996, 49.617154589000073 ], [ -124.046636493999955, 49.616896814000057 ], [ -124.048461986999953, 49.616862597000122 ], [ -124.04856818899999, 49.616646094000032 ], [ -124.048604897999937, 49.61629089700007 ], [ -124.048672395, 49.615637800000087 ], [ -124.048591093999946, 49.615575992000068 ], [ -124.048192812999901, 49.615273194000039 ], [ -124.04765647899994, 49.615431298000132 ], [ -124.047214118999989, 49.615452601000079 ], [ -124.046129486999973, 49.61592119300014 ], [ -124.04444700099998, 49.615549498000107 ], [ -124.043589991999951, 49.615593604000011 ], [ -124.042781584999929, 49.615978205000026 ], [ -124.042226817999932, 49.617278499000101 ], [ -124.041493987999971, 49.61798630600007 ], [ -124.040770421999952, 49.618433502000094 ], [ -124.040774499999941, 49.618604407000134 ], [ -124.040568586999939, 49.61874108900016 ], [ -124.040190789999926, 49.618484791000085 ], [ -124.039994909999947, 49.618440601000088 ], [ -124.039137098999973, 49.61845770700009 ], [ -124.038283006999947, 49.61866279200008 ], [ -124.037687593999962, 49.618597295000065 ], [ -124.037559807999983, 49.618471995000057 ], [ -124.037446200999938, 49.617663012000072 ], [ -124.037289878999914, 49.617484993000076 ], [ -124.037010583999944, 49.617379600000092 ], [ -124.036639799999989, 49.617544807000044 ], [ -124.036469008999973, 49.617977810000099 ], [ -124.0360253059999, 49.618557399000039 ], [ -124.035203420999949, 49.618979005000078 ], [ -124.033993775999988, 49.61943049500011 ], [ -124.0333993, 49.61943618500004 ], [ -124.032939597, 49.619286602000095 ], [ -124.032810785999985, 49.619171295000037 ], [ -124.032556317999976, 49.618857898000037 ], [ -124.032551412999965, 49.6186599870001 ], [ -124.03291788599995, 49.618279696000073 ], [ -124.033787482000022, 49.617697748000111 ], [ -124.034346342999953, 49.618024220000031 ], [ -124.034603593000014, 49.617790911000085 ], [ -124.034727216999912, 49.617649095000047 ], [ -124.034763209999966, 49.617389695000021 ], [ -124.034299244999957, 49.617003195000052 ], [ -124.03471318099993, 49.616824202000124 ], [ -124.035120282999941, 49.61643389400006 ], [ -124.0354082959999, 49.616295795000113 ], [ -124.036127301999954, 49.616262986000081 ], [ -124.036671590999944, 49.616402593000061 ], [ -124.03716041700001, 49.616640395000061 ], [ -124.03786821199999, 49.616697409000082 ], [ -124.038085603999988, 49.617136111000022 ], [ -124.038598188, 49.617175890000091 ], [ -124.03868000099996, 49.61650939400004 ], [ -124.038903792999974, 49.615905511000079 ], [ -124.03901330599993, 49.615841493000104 ], [ -124.039006212999979, 49.615562297000096 ], [ -124.039154806999989, 49.61538139900005 ], [ -124.039591299999941, 49.615062394000063 ], [ -124.040715604999946, 49.614593804000073 ], [ -124.041743385999922, 49.614035599000069 ], [ -124.042027810999969, 49.613709402000019 ], [ -124.04168120599999, 49.61303861100005 ], [ -124.041508544999928, 49.612189188000052 ], [ -124.041480294999957, 49.612050205000074 ], [ -124.041593477999967, 49.611581600000122 ], [ -124.041921086999935, 49.611362307000071 ], [ -124.042156478999956, 49.611325294000025 ], [ -124.042317807999936, 49.611161493000047 ], [ -124.042112478999982, 49.610579 ], [ -124.041566594999978, 49.610259998000103 ], [ -124.040788409999919, 49.610158889000061 ], [ -124.040553889999956, 49.610214398000039 ], [ -124.0403546899999, 49.610557599000025 ], [ -124.040160794999963, 49.61055050300007 ], [ -124.039902413, 49.610138908000074 ], [ -124.039861488999975, 49.609492308000036 ], [ -124.039375907999954, 49.609488092000042 ], [ -124.039226900999978, 49.609633292000048 ], [ -124.038375706999958, 49.609334192000098 ], [ -124.038200784999958, 49.6088500030001 ], [ -124.038047295999959, 49.608861390000101 ], [ -124.03789330699999, 49.60873608800005 ], [ -124.037859906999969, 49.608485384000119 ], [ -124.038112397, 49.608015405000081 ], [ -124.038263892999936, 49.607914315000038 ], [ -124.039116411999956, 49.607655096000059 ], [ -124.039055683999933, 49.607467091000075 ], [ -124.038801489999955, 49.607226394000044 ], [ -124.038921019999947, 49.606928798000084 ], [ -124.038882400999938, 49.606497190000084 ], [ -124.038603313999971, 49.606310607000054 ], [ -124.038297285999988, 49.606303494000045 ], [ -124.03791420499999, 49.606487203000036 ], [ -124.037415412999934, 49.606483006000083 ], [ -124.036987317999916, 49.605857693000083 ], [ -124.037186105999965, 49.60545040100007 ], [ -124.037402306000018, 49.605205494000067 ], [ -124.037648820999948, 49.605087304000087 ], [ -124.038244311999989, 49.605062987000089 ], [ -124.038407314999972, 49.604944802000098 ], [ -124.03872508699996, 49.60495050900002 ], [ -124.038881805999935, 49.605111495000145 ], [ -124.038639604999929, 49.60547319900008 ], [ -124.039227394999926, 49.605702514 ], [ -124.039849703999963, 49.605713894000083 ], [ -124.040275678999961, 49.605540192000014 ], [ -124.0407978, 49.604779607000076 ], [ -124.040988390000024, 49.604642889000026 ], [ -124.041169584999963, 49.60468559700012 ], [ -124.041228416999971, 49.604865100000083 ], [ -124.041606402999918, 49.605051600000095 ], [ -124.041875182999988, 49.605318004000026 ], [ -124.042042704999972, 49.605353595000096 ], [ -124.042344904999965, 49.605286603000117 ], [ -124.042467809999934, 49.60513280400005 ], [ -124.042659097999888, 49.605104295000118 ], [ -124.042849109999935, 49.60493198600004 ], [ -124.042846991999937, 49.604185701000034 ], [ -124.043092093999931, 49.603903696000017 ], [ -124.043194599999936, 49.603588989000073 ], [ -124.043945585999893, 49.603131796000071 ], [ -124.044222088999931, 49.603039193000043 ], [ -124.04535320399998, 49.602931001000094 ], [ -124.046079212999956, 49.602527897000108 ], [ -124.047506008999903, 49.602587782000086 ], [ -124.047958909999963, 49.602421109000062 ], [ -124.048706914999983, 49.602468102000053 ], [ -124.04898078, 49.603005093000085 ], [ -124.04921860599994, 49.603093388000048 ], [ -124.049507088999917, 49.603019294000049 ], [ -124.049856302999984, 49.603133208000074 ], [ -124.049849389999935, 49.603438007000086 ], [ -124.04958679399999, 49.604170096000047 ], [ -124.049458589999986, 49.605214001000071 ], [ -124.049066292999939, 49.606323507000056 ], [ -124.04907240199999, 49.606584085000115 ], [ -124.049370292, 49.60691451100007 ], [ -124.049635619999947, 49.606992796000036 ], [ -124.049694627999912, 49.606993827000061 ], [ -124.050700183999965, 49.607011391000093 ], [ -124.051112593000013, 49.606854702000064 ], [ -124.051808009, 49.606361895000056 ], [ -124.051827394, 49.606001612000107 ], [ -124.051281612999929, 49.605682598000101 ], [ -124.051519311999968, 49.605186887000031 ], [ -124.05171011799996, 49.605013201000098 ], [ -124.052203985999967, 49.604848006000083 ], [ -124.052753195999912, 49.605229688000065 ], [ -124.052946009999985, 49.60522680600009 ], [ -124.053149881999957, 49.605000399000112 ], [ -124.052956895999912, 49.604399411000067 ], [ -124.053843598999961, 49.603825406000034 ], [ -124.054651303999947, 49.603457992000052 ], [ -124.054984833, 49.603344220000047 ], [ -124.055001707999963, 49.603344521000153 ], [ -124.054940414999976, 49.604795386000042 ], [ -124.055221988999946, 49.604800419000128 ], [ -124.055070042999944, 49.608397212000106 ], [ -124.054442410999954, 49.608385990000052 ], [ -124.054435927000014, 49.608539428000036 ], [ -124.053998114999928, 49.608531598000091 ], [ -124.053986622999957, 49.608803438000045 ], [ -124.053341544999924, 49.60879189800005 ], [ -124.053333508999955, 49.608981953000075 ], [ -124.052942723999962, 49.608974961000037 ], [ -124.05292631399999, 49.609362962000048 ], [ -124.05273386599994, 49.609359518000076 ], [ -124.052725916999947, 49.609547467000013 ], [ -124.049719248000017, 49.609493617000076 ], [ -124.04971450699999, 49.609605534000124 ], [ -124.049911787999946, 49.609609070000076 ], [ -124.0498883599999, 49.610162093000049 ], [ -124.050711991999918, 49.610176851000034 ], [ -124.050693172999971, 49.610621258000059 ], [ -124.051013152999971, 49.610626989000103 ], [ -124.05102096, 49.610442592000048 ], [ -124.056550792999957, 49.610541499000057 ], [ -124.056536614999956, 49.610877294000062 ], [ -124.057288059999976, 49.610890712000057 ], [ -124.057223603999901, 49.610972110000048 ], [ -124.057307592999976, 49.611088909000081 ], [ -124.057178377999946, 49.611530397000116 ], [ -124.057304450999951, 49.611572372000083 ], [ -124.057605938999984, 49.611672746000075 ], [ -124.057486897999951, 49.614493736000064 ], [ -124.057155572999946, 49.614487822000029 ], [ -124.057150789999952, 49.614601145000073 ], [ -124.056637222999967, 49.614591974000106 ], [ -124.056610903999939, 49.615215357000075 ], [ -124.05623362299994, 49.615208618000075 ], [ -124.056215711999982, 49.615632765000072 ], [ -124.05603024, 49.615629451000075 ], [ -124.056021115999926, 49.615845469000085 ], [ -124.055636345999957, 49.615838595000049 ], [ -124.055611133999946, 49.616435441000121 ], [ -124.055570588999956, 49.617395176000052 ], [ -124.055551677999944, 49.61739483800006 ], [ -124.055527319999953, 49.617971375000081 ], [ -124.05545671199998, 49.617970113000098 ], [ -124.055435046999932, 49.618482876000016 ], [ -124.055251539, 49.618479598000064 ], [ -124.055239855999929, 49.618756081000043 ], [ -124.055150047999987, 49.618754475000145 ], [ -124.055137568999939, 49.619049782000111 ], [ -124.054385041, 49.619036332000043 ], [ -124.054371155999945, 49.619364801000096 ], [ -124.054269938999965, 49.619362991000045 ], [ -124.054235216999984, 49.62018430200002 ], [ -124.054354762999964, 49.620183213000061 ], [ -124.054359969999922, 49.6204244790001 ], [ -124.054712960999922, 49.620430789000068 ], [ -124.054743969999961, 49.619697108000047 ], [ -124.056704531999969, 49.619732133000106 ], [ -124.056753455999939, 49.618573455000089 ], [ -124.059142360999942, 49.61861608400006 ], [ -124.05915747799996, 49.618257613000097 ], [ -124.060069165999948, 49.618273869000113 ], [ -124.060126916999977, 49.616903634000032 ], [ -124.063019387999987, 49.616955154000088 ], [ -124.063127985999984, 49.617070597000094 ], [ -124.063161223999955, 49.618573106000092 ], [ -124.063370387999953, 49.618669912000087 ], [ -124.063335120999952, 49.618922001000037 ], [ -124.063550111999959, 49.619325108000041 ], [ -124.063179323999975, 49.619409105000038 ], [ -124.06314609599994, 49.619832102000025 ], [ -124.062572898999946, 49.620196701000069 ], [ -124.062578587999937, 49.620421703000083 ], [ -124.062356600000015, 49.62045018900006 ], [ -124.062175677999903, 49.620361899000095 ], [ -124.06181888899999, 49.620554194000078 ], [ -124.061430611999938, 49.620548500000069 ], [ -124.060977992999966, 49.620706613000088 ], [ -124.060858111999949, 49.620968590000125 ], [ -124.060949306999987, 49.621344594000064 ], [ -124.060888390999949, 49.621704895000072 ], [ -124.060414695999938, 49.622186316000061 ], [ -124.060363297999942, 49.622411293000035 ], [ -124.060518495999972, 49.622526692000051 ], [ -124.060947984, 49.622496800000128 ], [ -124.062044015999959, 49.621982593000084 ], [ -124.062500891999917, 49.622023997000028 ], [ -124.06265800700001, 49.622237599000066 ], [ -124.062663003999901, 49.622435501000041 ], [ -124.062491399999914, 49.622797309000084 ], [ -124.062428391999902, 49.622847563000072 ], [ -124.062000283999907, 49.623189007000036 ], [ -124.061423604999987, 49.62340969200006 ], [ -124.06087170899994, 49.623495204000108 ], [ -124.06070118299999, 49.62387539800006 ], [ -124.060114303999953, 49.624285604000093 ], [ -124.059575101999926, 49.624335384000041 ], [ -124.058859814999892, 49.624584697000039 ], [ -124.058835378999902, 49.624674400000124 ], [ -124.058574095999958, 49.624775515000088 ], [ -124.057233218999912, 49.624905107000046 ], [ -124.056900589999913, 49.624845312000062 ], [ -124.05585799499994, 49.625357989000086 ], [ -124.054319198000016, 49.625930607000022 ], [ -124.0526807899999, 49.626305093000042 ], [ -124.051517713999928, 49.626333604000088 ], [ -124.049945009999973, 49.626635509000074 ], [ -124.047996606999988, 49.626733796000153 ], [ -124.047586697999961, 49.627044294000058 ], [ -124.047462595999932, 49.627054310000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.982122020336723", "sL_AssetLoss": "2399.6", "sL_BldgLoss": "2356.7", "sL_StrLoss": "2120", "sL_NStrLoss": "236.7", "sL_ContLoss": "42.9", "geom_point": "0101000020E6100000A49CDCAD74025FC05F268A90BAD44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.037816685999957, 49.66290201500005 ], [ -124.037588507999928, 49.662666691000027 ], [ -124.036482500999952, 49.662197700000021 ], [ -124.036299712999948, 49.66193619700001 ], [ -124.0362776, 49.661806196000015 ], [ -124.034794599999955, 49.661603108000037 ], [ -124.033939807999914, 49.661444606000053 ], [ -124.033641608999986, 49.66142209300012 ], [ -124.033416209999956, 49.661446004 ], [ -124.0332550789999, 49.661487998000041 ], [ -124.033215400999936, 49.661511002000097 ], [ -124.033201419999912, 49.660850769000028 ], [ -124.034448272999953, 49.66083963500008 ], [ -124.034453992999929, 49.661109428000096 ], [ -124.0361164709999, 49.661094564000066 ], [ -124.036122201, 49.661364357000103 ], [ -124.038615928999931, 49.661342015000088 ], [ -124.038620416999933, 49.661552802000109 ], [ -124.04055655399999, 49.661587644000107 ], [ -124.040549281999944, 49.661758293000013 ], [ -124.042851979999938, 49.661799686000023 ], [ -124.042835068999949, 49.662196975000043 ], [ -124.042011883000029, 49.662614896000058 ], [ -124.041631903999956, 49.662691699000142 ], [ -124.04125207599995, 49.662686719000121 ], [ -124.041075384999957, 49.662684391000035 ], [ -124.040396883999918, 49.662745991000072 ], [ -124.039043202999949, 49.662820611000058 ], [ -124.038535284999938, 49.662779093000061 ], [ -124.038185800999898, 49.662854690000067 ], [ -124.037816685999957, 49.66290201500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68971917", "BldgCostT": "44891667", "sL_LossRatio": "0.838686267950993", "sL_AssetLoss": "88191.5", "sL_BldgLoss": "73965", "sL_StrLoss": "59740.1", "sL_NStrLoss": "14224.9", "sL_ContLoss": "14226.5", "geom_point": "0101000020E61000005F3E61A2A4015FC03C4F5D7574D34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.031223255, 49.660451721000108 ], [ -124.031370856999942, 49.657004281000134 ], [ -124.029988922999962, 49.656979297000099 ], [ -124.030025486999961, 49.656125789000058 ], [ -124.029739737999961, 49.656120621000085 ], [ -124.029734021999928, 49.656254012000069 ], [ -124.024198752999936, 49.656153749000076 ], [ -124.024201410999964, 49.656091890000027 ], [ -124.020387815999953, 49.656022649000107 ], [ -124.020433652999941, 49.654957848000024 ], [ -124.018996461999933, 49.654931720000064 ], [ -124.018968532999907, 49.655580010000065 ], [ -124.020204403999927, 49.655569127 ], [ -124.020215684999982, 49.656108717000023 ], [ -124.02063126399996, 49.656105055000111 ], [ -124.02067641, 49.658263413000093 ], [ -124.021092006999979, 49.658259749000102 ], [ -124.021086360999917, 49.65798995300009 ], [ -124.021581236999936, 49.657985588000145 ], [ -124.021653357999966, 49.656309287000035 ], [ -124.027188640999952, 49.656409681000063 ], [ -124.027104311999921, 49.65837523400004 ], [ -124.02930838499999, 49.658415131000062 ], [ -124.02925615299992, 49.659633806000095 ], [ -124.029133476999974, 49.65964089700006 ], [ -124.028691695999953, 49.659704890000093 ], [ -124.028472896, 49.659755769000107 ], [ -124.028038395999971, 49.659856794000078 ], [ -124.027714893, 49.659874388000084 ], [ -124.027414773999936, 49.659832093000055 ], [ -124.027184494999958, 49.659745092000023 ], [ -124.026938003999973, 49.659582293000042 ], [ -124.02669419799993, 49.659358302000101 ], [ -124.02639869799998, 49.659013715000043 ], [ -124.026113110000011, 49.658569400000118 ], [ -124.02587668699999, 49.65833389900012 ], [ -124.025644181999937, 49.658168606000096 ], [ -124.025239485999975, 49.658012800000037 ], [ -124.0248037, 49.657938310000063 ], [ -124.024652399999965, 49.657937255000078 ], [ -124.024555796999948, 49.657936590000048 ], [ -124.024397997, 49.657935516000123 ], [ -124.022963808, 49.658114598000083 ], [ -124.021809695999934, 49.658480593000078 ], [ -124.021148194999967, 49.658854595000079 ], [ -124.020896393999962, 49.659085323000085 ], [ -124.020582995999916, 49.659372506000103 ], [ -124.020432319999912, 49.659431 ], [ -124.020139195999917, 49.659449897000073 ], [ -124.020110930999948, 49.659343728000103 ], [ -124.020015184999963, 49.658984297000053 ], [ -124.019668924999934, 49.658182500000052 ], [ -124.019667497999976, 49.657636304000093 ], [ -124.019778308999932, 49.656348896000026 ], [ -124.019690071999932, 49.65624199600002 ], [ -124.019557989999939, 49.6561585930001 ], [ -124.019368878999941, 49.656111101000128 ], [ -124.018408802999915, 49.656087283000062 ], [ -124.01815811499992, 49.65602429900008 ], [ -124.01794400899999, 49.655915089000125 ], [ -124.01764631199994, 49.655688302000051 ], [ -124.01750198900001, 49.65550389500001 ], [ -124.017358083999909, 49.65514771200008 ], [ -124.01725998799995, 49.655013598000075 ], [ -124.016401287999955, 49.654469791000125 ], [ -124.016338899999951, 49.654116790000096 ], [ -124.016348592000014, 49.653924408000073 ], [ -124.016440695999933, 49.653619209000055 ], [ -124.016459608999952, 49.653341485000055 ], [ -124.016383698999988, 49.653110691000087 ], [ -124.016375725, 49.652975605000051 ], [ -124.016558902999961, 49.6526441890001 ], [ -124.016681110999954, 49.652315282000089 ], [ -124.016514098999977, 49.651918994000056 ], [ -124.016529368999926, 49.651628599000027 ], [ -124.016801394999973, 49.651420310000084 ], [ -124.016824796999984, 49.651361394000055 ], [ -124.01666791300002, 49.651178505000082 ], [ -124.016523903999939, 49.651209204000068 ], [ -124.016351199999946, 49.65120070800009 ], [ -124.016224776999962, 49.651145297000085 ], [ -124.016101806999956, 49.651043200000068 ], [ -124.015394102999892, 49.650018790000097 ], [ -124.01524140199993, 49.649867602000064 ], [ -124.015031923999956, 49.649779196000097 ], [ -124.014795606999897, 49.649768597000055 ], [ -124.014441194999961, 49.649799897000051 ], [ -124.013660398999917, 49.649955691000066 ], [ -124.012635330999956, 49.650407554000019 ], [ -124.012409710999975, 49.65050700400014 ], [ -124.012021088999958, 49.650622307000084 ], [ -124.01172892699999, 49.650656602000062 ], [ -124.011722391999967, 49.650655931000067 ], [ -124.011823522000014, 49.648316623000063 ], [ -124.01514473899995, 49.648377205 ], [ -124.015152393999969, 49.648199806000079 ], [ -124.015809735999937, 49.648211784000182 ], [ -124.015818979999963, 49.647997521000015 ], [ -124.016453683999956, 49.648009083000041 ], [ -124.016459960999924, 49.647863537000056 ], [ -124.021994215999939, 49.647964196000011 ], [ -124.021993620999979, 49.647978018000039 ], [ -124.023375210999944, 49.648003102000125 ], [ -124.023390749999919, 49.64764153800008 ], [ -124.023314047, 49.647640146000114 ], [ -124.023315188999902, 49.647613531000019 ], [ -124.02199229899999, 49.647589512000053 ], [ -124.022146958999912, 49.643992968000141 ], [ -124.025580723999965, 49.644055281000064 ], [ -124.025628881999964, 49.642933351000067 ], [ -124.027552046999986, 49.642968203000059 ], [ -124.029083202999985, 49.642995928000069 ], [ -124.031162563999928, 49.643033544000033 ], [ -124.031008610999962, 49.646630106000067 ], [ -124.028897511999929, 49.646591916000041 ], [ -124.028878676999923, 49.64703139300012 ], [ -124.031750691999946, 49.647083339000091 ], [ -124.031726348999953, 49.647652187000091 ], [ -124.031611332, 49.650339667000104 ], [ -124.031596771999958, 49.650679881000038 ], [ -124.031330063999974, 49.650675060000069 ], [ -124.031287816999935, 49.651661985000047 ], [ -124.02713774199999, 49.651586891000072 ], [ -124.02713415099997, 49.651670587000119 ], [ -124.026610447999957, 49.651661100000062 ], [ -124.026589856999962, 49.652140963000072 ], [ -124.027577863999952, 49.6521588600001 ], [ -124.027572971999959, 49.652272935000063 ], [ -124.030487863999952, 49.652325684000104 ], [ -124.030478912999982, 49.652534690000039 ], [ -124.030522775999927, 49.65253548400009 ], [ -124.030486221999979, 49.653388996000025 ], [ -124.035677938999967, 49.653482752000109 ], [ -124.035530671999965, 49.656930214000027 ], [ -124.036912606999948, 49.656955129000075 ], [ -124.036759056999969, 49.660551627000103 ], [ -124.031223255, 49.660451721000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131400084", "BldgCostT": "85973334", "sL_LossRatio": "0.802436649421743", "sL_AssetLoss": "182944.66", "sL_BldgLoss": "146801.5", "sL_StrLoss": "117656.9", "sL_NStrLoss": "29144.6", "sL_ContLoss": "36143.16", "geom_point": "0101000020E6100000EB4637461B025FC07F778E75AFD14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.041000939, 49.652152897000128 ], [ -124.041020088999971, 49.651703355000102 ], [ -124.039981628999925, 49.651684671000069 ], [ -124.040076041999953, 49.649469297000067 ], [ -124.037869463000021, 49.649429565000055 ], [ -124.037859764, 49.649656928000084 ], [ -124.034439836, 49.649595260000076 ], [ -124.032325269999887, 49.649557077000111 ], [ -124.032370004999962, 49.648511428000113 ], [ -124.032391632999932, 49.64800589500004 ], [ -124.032402130999969, 49.647760486000081 ], [ -124.032479129999899, 49.645960527000106 ], [ -124.034476322, 49.645996593000071 ], [ -124.035916490999938, 49.646022577000053 ], [ -124.035926200999981, 49.645795212000095 ], [ -124.04146024899994, 49.645894881000068 ], [ -124.041453081999961, 49.646063214000094 ], [ -124.041365910999943, 49.648110269000121 ], [ -124.043322161999981, 49.648145434000106 ], [ -124.043303406999939, 49.647267935000066 ], [ -124.042887905999947, 49.647271678000038 ], [ -124.042870613999966, 49.646462297000042 ], [ -124.043203112999933, 49.646459302000075 ], [ -124.043217699999957, 49.646116428000042 ], [ -124.042941385999953, 49.646111462000164 ], [ -124.042952951999951, 49.64583960900007 ], [ -124.043046656999977, 49.643637228000053 ], [ -124.042124209999912, 49.643620647000013 ], [ -124.042134071999953, 49.643388953000049 ], [ -124.04138199599997, 49.643375428000127 ], [ -124.041392111999983, 49.643137838000037 ], [ -124.041074298999916, 49.643132121000043 ], [ -124.041074760999962, 49.643121278000095 ], [ -124.04116013099997, 49.641116560000057 ], [ -124.041188929999947, 49.640440264000055 ], [ -124.037566436999953, 49.640375036000123 ], [ -124.037577913999925, 49.64010598000003 ], [ -124.037203239999897, 49.640099228000096 ], [ -124.037203472999963, 49.640093759000095 ], [ -124.037212765999939, 49.639875947000121 ], [ -124.036734037999977, 49.639867316000014 ], [ -124.036746948999962, 49.639564759000088 ], [ -124.036172633999968, 49.639554402000059 ], [ -124.036194528999886, 49.639041494000026 ], [ -124.035073725999951, 49.639021274000172 ], [ -124.03507800099996, 49.638921197000052 ], [ -124.033523574999947, 49.638893134000043 ], [ -124.03354110399999, 49.63848308300004 ], [ -124.029854563999905, 49.638416440000071 ], [ -124.02985998799997, 49.638289796000016 ], [ -124.028488634999974, 49.638264974000073 ], [ -124.028185891999939, 49.638259492000053 ], [ -124.027876499999934, 49.638253888000079 ], [ -124.027891680999957, 49.637899749000034 ], [ -124.027901257999972, 49.637676314000061 ], [ -124.027919442999988, 49.637252121000081 ], [ -124.027708676999978, 49.637248304000067 ], [ -124.027382933999903, 49.637242402000034 ], [ -124.026293002999964, 49.637222650000048 ], [ -124.026296337999938, 49.637144918000125 ], [ -124.02577888899998, 49.637135536000059 ], [ -124.025779195999945, 49.637128372000099 ], [ -124.025412776999985, 49.637121727000114 ], [ -124.025434900999983, 49.636606255000046 ], [ -124.02420246299998, 49.636583897000094 ], [ -124.024229050999963, 49.635964761000011 ], [ -124.023210464999963, 49.635946272000041 ], [ -124.023235342999968, 49.635367256000023 ], [ -124.023142598, 49.635365572000111 ], [ -124.023175905999906, 49.634590388000078 ], [ -124.022077906999968, 49.634570446000076 ], [ -124.022082998999977, 49.634452 ], [ -124.02186984299999, 49.634448127000063 ], [ -124.02129748499999, 49.634437726000037 ], [ -124.021311125999901, 49.634120580000044 ], [ -124.016399424999975, 49.634031199000077 ], [ -124.016490596999972, 49.631916442000069 ], [ -124.016125944999942, 49.631909798000052 ], [ -124.016126898999985, 49.631887680000105 ], [ -124.014463483999947, 49.63185735400004 ], [ -124.014475289999922, 49.631583789000061 ], [ -124.014143990999941, 49.63157774600004 ], [ -124.014155439999954, 49.631312505000047 ], [ -124.014097405999976, 49.631311446000083 ], [ -124.014106130999949, 49.631109292000055 ], [ -124.012726194999928, 49.631084109 ], [ -124.012709988999987, 49.631459297000113 ], [ -124.010657184999971, 49.631421804000077 ], [ -124.010651237, 49.631559401000082 ], [ -124.010613661999912, 49.632428446000077 ], [ -124.010006365999956, 49.63241734700005 ], [ -124.009996948999969, 49.632635062000062 ], [ -124.004464563999946, 49.632533792000103 ], [ -124.004475451999923, 49.632282751000034 ], [ -124.003958759999975, 49.632273279000081 ], [ -124.00396708, 49.63208150400002 ], [ -124.003545256999956, 49.632073769000066 ], [ -124.003555529999986, 49.631837023000074 ], [ -124.003175857999949, 49.631830059000087 ], [ -124.00318405199999, 49.631641252000108 ], [ -124.003168479999928, 49.631640966000106 ], [ -124.003042680999954, 49.634539428000046 ], [ -124.001772166999942, 49.634516116 ], [ -124.001736075999958, 49.63534705700004 ], [ -124.001200989999944, 49.635337235000073 ], [ -124.001185974999927, 49.635682871 ], [ -124.000473503999942, 49.635669788000058 ], [ -124.000429300999969, 49.636686786000041 ], [ -123.995450413999947, 49.636595231000101 ], [ -123.995316869, 49.639659905000023 ], [ -123.994854080999929, 49.639651384000061 ], [ -123.994841865999959, 49.639931615000073 ], [ -123.994243881999978, 49.639920602000082 ], [ -123.994212783, 49.640633830000084 ], [ -123.993663316, 49.640623707000024 ], [ -123.993590754999957, 49.642287340000067 ], [ -123.992055033999989, 49.642259032000027 ], [ -123.992016140999979, 49.643149977000085 ], [ -123.989706224999949, 49.643107357000105 ], [ -123.989688262999977, 49.643518371000042 ], [ -123.993378332999953, 49.643586432000049 ], [ -123.99330268199995, 49.645320516000055 ], [ -123.992484418999936, 49.645090666000044 ], [ -123.992178028999945, 49.645067077000114 ], [ -123.991111822999954, 49.645131981000048 ], [ -123.990905912999963, 49.645122778000015 ], [ -123.989996922000017, 49.644917953000075 ], [ -123.989253080999973, 49.64460908300007 ], [ -123.988940769999971, 49.644436838000068 ], [ -123.988425679999949, 49.643962105000043 ], [ -123.988656148999951, 49.643821490000057 ], [ -123.989034568999955, 49.643336251000065 ], [ -123.989297256999976, 49.643186332000063 ], [ -123.989517557999989, 49.642992427000067 ], [ -123.989634843999923, 49.642843419000037 ], [ -123.989545725999903, 49.642094892000024 ], [ -123.989565892999948, 49.641927933000048 ], [ -123.989573919999884, 49.64186146500009 ], [ -123.989777045, 49.64161684500008 ], [ -123.989796194999911, 49.641603732000064 ], [ -123.990121008999964, 49.641381128000013 ], [ -123.990660280999933, 49.641142726000076 ], [ -123.991157346999955, 49.641015107000044 ], [ -123.991363506999946, 49.640891151000076 ], [ -123.99145877, 49.640770526000061 ], [ -123.991470922999952, 49.640555683000088 ], [ -123.991380493999941, 49.640438821000068 ], [ -123.991339716999917, 49.640262611000061 ], [ -123.99145830499999, 49.639987633000096 ], [ -123.991965753999978, 49.639685638000053 ], [ -123.99210783700002, 49.639538902000027 ], [ -123.992048854999922, 49.638764836000036 ], [ -123.992305882999943, 49.638426727000088 ], [ -123.992815534999963, 49.637978069000042 ], [ -123.99383883199998, 49.637305847000043 ], [ -123.994705493, 49.636891686000041 ], [ -123.995310941999946, 49.636467302000092 ], [ -123.99562253199997, 49.636337155000056 ], [ -123.996408028999937, 49.636228336000066 ], [ -123.996918442999942, 49.636046962000087 ], [ -123.997307521999943, 49.635853458000035 ], [ -123.99761093699999, 49.63562507000006 ], [ -123.997898328999938, 49.635256011000124 ], [ -123.99870870899997, 49.633715054000078 ], [ -123.999125670999916, 49.633452753000064 ], [ -123.999989017999937, 49.633335430000074 ], [ -124.000000468999957, 49.633330257000061 ], [ -124.000721810999892, 49.633004247000052 ], [ -124.000965618999928, 49.632840447000021 ], [ -124.001130996, 49.632666214000011 ], [ -124.001319564999918, 49.63256348500007 ], [ -124.001701318999949, 49.632441820000096 ], [ -124.002129640999897, 49.632173415000139 ], [ -124.002465505999965, 49.631834051000062 ], [ -124.002752299999884, 49.631445161000016 ], [ -124.002962510999907, 49.631225858000036 ], [ -124.003341964, 49.631081024000068 ], [ -124.004429078999948, 49.630666040000051 ], [ -124.005386754999989, 49.630382151000084 ], [ -124.006398146999942, 49.630679627000085 ], [ -124.006620664999929, 49.630696519000082 ], [ -124.006835446, 49.630712834000107 ], [ -124.007142218999903, 49.630783965000035 ], [ -124.007463082999976, 49.630858391000061 ], [ -124.00896621699999, 49.630606317000044 ], [ -124.009199473999928, 49.629771437000073 ], [ -124.009672506999934, 49.629629203000036 ], [ -124.011133579, 49.629347196000019 ], [ -124.012655587999944, 49.629224806000103 ], [ -124.013937107999951, 49.628917108000145 ], [ -124.014180716999959, 49.62869069700006 ], [ -124.013871891999955, 49.628485597000079 ], [ -124.013970716999964, 49.627873197000063 ], [ -124.015085406999916, 49.627548505000121 ], [ -124.015988578999966, 49.627082695000055 ], [ -124.016622486999921, 49.62687050100002 ], [ -124.017600703999946, 49.626663985000043 ], [ -124.01876110399995, 49.626599886000058 ], [ -124.019082715999915, 49.626740894000143 ], [ -124.019408114999948, 49.627061395000105 ], [ -124.01972718599994, 49.627077 ], [ -124.019866486999888, 49.627156796000101 ], [ -124.020164195999939, 49.627423093000075 ], [ -124.020307308, 49.627629604000084 ], [ -124.020330090999948, 49.628034096000114 ], [ -124.020015284999914, 49.628261999000053 ], [ -124.019189402999984, 49.628475600000044 ], [ -124.018825575999955, 49.628972695000108 ], [ -124.018321689999965, 49.629391407000064 ], [ -124.018329511999966, 49.629778788000039 ], [ -124.018513790999947, 49.629929712000063 ], [ -124.018899900999912, 49.629935384000099 ], [ -124.020736805999917, 49.630359812000101 ], [ -124.02193773599997, 49.630967898000037 ], [ -124.021820988999977, 49.63292427600004 ], [ -124.021915108999934, 49.632912689000086 ], [ -124.02335466000001, 49.632990110000073 ], [ -124.023733908999958, 49.633010485000028 ], [ -124.024319686999917, 49.633003989000088 ], [ -124.024561119999973, 49.633024612000078 ], [ -124.024793598999935, 49.633088217000108 ], [ -124.025135595999942, 49.633248307000052 ], [ -124.025446398999946, 49.633360098000075 ], [ -124.02591642500002, 49.633478775000036 ], [ -124.025617557999965, 49.632625747000105 ], [ -124.025700871999973, 49.63258999300011 ], [ -124.025818186, 49.632502100000124 ], [ -124.025881183999971, 49.632356594000079 ], [ -124.025858804, 49.632298594000133 ], [ -124.025530896999982, 49.632197194000064 ], [ -124.025464211999946, 49.632188444000079 ], [ -124.02541155599998, 49.632062761000093 ], [ -124.025467296999949, 49.632071691000071 ], [ -124.025978801999941, 49.631967796000033 ], [ -124.026454208999937, 49.632198495000104 ], [ -124.026609406999981, 49.632394990000094 ], [ -124.026845200999972, 49.632321005000072 ], [ -124.027414398999923, 49.632414988000093 ], [ -124.027545307999958, 49.632071696000018 ], [ -124.02814159899999, 49.632111605000041 ], [ -124.02838740599999, 49.63193788300002 ], [ -124.028161993999959, 49.631813997000052 ], [ -124.028228696999975, 49.631597514000084 ], [ -124.027740582999968, 49.631511996 ], [ -124.02777219799998, 49.63099081200005 ], [ -124.02730829299999, 49.630661800000048 ], [ -124.026671285999939, 49.630010908000052 ], [ -124.025387286999916, 49.62957230300006 ], [ -124.024834585999955, 49.629549506000018 ], [ -124.024567392999984, 49.629372891000109 ], [ -124.024577208999943, 49.629228999000112 ], [ -124.024846392999976, 49.62886590100009 ], [ -124.02561111199995, 49.629021103000142 ], [ -124.026227009999928, 49.628602398000034 ], [ -124.026596993999974, 49.628499812000072 ], [ -124.02763601799991, 49.628481300000075 ], [ -124.027897482999947, 49.628380206000024 ], [ -124.02781040399995, 49.628264797000043 ], [ -124.027857623000017, 49.627877400000052 ], [ -124.028255292999958, 49.627666690000119 ], [ -124.0292811959999, 49.627648102000094 ], [ -124.029919686999975, 49.627723601000135 ], [ -124.03144761099999, 49.628682102000063 ], [ -124.032027691999943, 49.629243313000103 ], [ -124.032903303999987, 49.629388489000092 ], [ -124.033436594999969, 49.629699002000066 ], [ -124.033831396999943, 49.630009495000074 ], [ -124.033892880999971, 49.630395494000012 ], [ -124.033378390999957, 49.630886789000094 ], [ -124.032912207999971, 49.631106094000067 ], [ -124.031889813999982, 49.631187300000072 ], [ -124.030920379999941, 49.631861002000079 ], [ -124.030643208999933, 49.63183679600008 ], [ -124.03043252099999, 49.631685806000085 ], [ -124.030366100999984, 49.631264207000079 ], [ -124.030268803999917, 49.631147409000015 ], [ -124.029948421999933, 49.631069101000101 ], [ -124.02907971599997, 49.631239995000101 ], [ -124.028790209999954, 49.631376690000124 ], [ -124.028752821999959, 49.631539100000111 ], [ -124.030045891999961, 49.6318068080001 ], [ -124.030537789999968, 49.632080305000102 ], [ -124.030842989999954, 49.632150093000043 ], [ -124.031397188999961, 49.632145812000083 ], [ -124.03166569199999, 49.632466303000079 ], [ -124.032840412999946, 49.632969002000046 ], [ -124.032893687999916, 49.633552905 ], [ -124.033010413999961, 49.633768009000079 ], [ -124.03350180699999, 49.634086991000061 ], [ -124.035734693999984, 49.634300609000078 ], [ -124.036240498999987, 49.634629594000046 ], [ -124.036960209999947, 49.635270489000028 ], [ -124.037325412999962, 49.635428601000079 ], [ -124.038211809999893, 49.635448601000157 ], [ -124.038355968999923, 49.635417226000065 ], [ -124.038598220999972, 49.635364503000119 ], [ -124.039090007999945, 49.635089601000125 ], [ -124.039255689999962, 49.635088197000101 ], [ -124.039536796999954, 49.635239200000044 ], [ -124.03986902299999, 49.635234903000033 ], [ -124.040018500999949, 49.635153695000042 ], [ -124.039972086999938, 49.634857506000031 ], [ -124.039733019999943, 49.634750696000069 ], [ -124.039591923999936, 49.634572700000042 ], [ -124.039214707999989, 49.634477203000067 ], [ -124.039193903999958, 49.634153907000076 ], [ -124.038998405999948, 49.634011496 ], [ -124.03901969399999, 49.633732402000106 ], [ -124.038820413999986, 49.633535807000101 ], [ -124.038344386999981, 49.633298001000057 ], [ -124.0381846, 49.632939105000048 ], [ -124.03835671899999, 49.632560307000084 ], [ -124.03849500699999, 49.632540289000104 ], [ -124.038790314999972, 49.632681291000054 ], [ -124.039031502999975, 49.633011700000083 ], [ -124.039037196999971, 49.633236812000085 ], [ -124.039481305999942, 49.633269503000044 ], [ -124.039877296999933, 49.633013096000063 ], [ -124.041344777999953, 49.632983193000094 ], [ -124.041969798999929, 49.633794987000016 ], [ -124.043811089999949, 49.634346199000106 ], [ -124.04412860199993, 49.634316298000044 ], [ -124.044496004999971, 49.634059906000047 ], [ -124.044071614999922, 49.633559994000031 ], [ -124.044089115999952, 49.633174098 ], [ -124.044251304999932, 49.632947591000089 ], [ -124.044233305999938, 49.632741085000113 ], [ -124.043978206999938, 49.632464784000042 ], [ -124.043998278999936, 49.632175696000068 ], [ -124.044362588999945, 49.631705695000051 ], [ -124.044527814000034, 49.631640207000117 ], [ -124.044667787999984, 49.631665790000085 ], [ -124.045390786999974, 49.632487596000075 ], [ -124.045698994999924, 49.632637190000054 ], [ -124.045733203999987, 49.632951909000049 ], [ -124.046040278999925, 49.633038797000083 ], [ -124.046287320999937, 49.632956202000038 ], [ -124.046638687999987, 49.631944995 ], [ -124.047048974999896, 49.63161739300002 ], [ -124.047228707999963, 49.631643091000079 ], [ -124.047736784999955, 49.632105899000088 ], [ -124.048209993999961, 49.632812292000075 ], [ -124.048418306999935, 49.632919200000046 ], [ -124.048527789999952, 49.632895201000103 ], [ -124.048558995999954, 49.633078705000095 ], [ -124.048458623999949, 49.635662186000047 ], [ -124.04687324399994, 49.63601908400004 ], [ -124.046211450999976, 49.63839334700009 ], [ -124.047327414999984, 49.638326863000088 ], [ -124.047949452999887, 49.638250740000089 ], [ -124.051051257999958, 49.637511749000147 ], [ -124.051346858999977, 49.63749363300014 ], [ -124.051625480999974, 49.637517512000052 ], [ -124.052374408999967, 49.637647903000108 ], [ -124.053822501999946, 49.638005840000055 ], [ -124.055344610999924, 49.637072008000118 ], [ -124.056059166999916, 49.636836394000049 ], [ -124.056279861999968, 49.636724276000059 ], [ -124.057931955999962, 49.635790925000016 ], [ -124.058533346999965, 49.635808852000082 ], [ -124.059143777999978, 49.635744147000032 ], [ -124.059503034999977, 49.635759553000106 ], [ -124.059816023999986, 49.635821824000026 ], [ -124.060200331999908, 49.635997827000018 ], [ -124.060640942999967, 49.636283723000076 ], [ -124.060768807999949, 49.63643539700012 ], [ -124.060924103999952, 49.637020334000077 ], [ -124.0620617229999, 49.639097612000043 ], [ -124.062289521999929, 49.639934023000087 ], [ -124.062639740999927, 49.640427958000096 ], [ -124.06327548299997, 49.641012464000049 ], [ -124.06359250699991, 49.641374435000067 ], [ -124.063695889999963, 49.641648025000102 ], [ -124.063662303999976, 49.641853474000051 ], [ -124.063473015999961, 49.64210746600002 ], [ -124.063206436999948, 49.642323182000069 ], [ -124.062949643999957, 49.642438298000052 ], [ -124.062225935999933, 49.642593679000079 ], [ -124.062087541999972, 49.642669615000074 ], [ -124.061949559999945, 49.642745343000051 ], [ -124.061782098, 49.64294121000006 ], [ -124.061718527000011, 49.643052838000109 ], [ -124.061497351999932, 49.643054867000075 ], [ -124.061505443999977, 49.643426998000038 ], [ -124.06144271, 49.643537153000139 ], [ -124.061444010999963, 49.643595047000105 ], [ -124.060262684999913, 49.643605872000109 ], [ -124.060240981, 49.64260654800006 ], [ -124.059565035999967, 49.642594505000098 ], [ -124.059603345999946, 49.641686317000101 ], [ -124.058804962999943, 49.641672087000074 ], [ -124.05890723499999, 49.639248433000027 ], [ -124.05873101, 49.639245291000066 ], [ -124.058778735999937, 49.638114293000093 ], [ -124.058477158999949, 49.638108916000043 ], [ -124.058464732999965, 49.638403349000036 ], [ -124.057339504999959, 49.638383279000024 ], [ -124.057292748999942, 49.639490475000066 ], [ -124.053628499999945, 49.639425036000034 ], [ -124.053624203999931, 49.639526565000047 ], [ -124.05322418599998, 49.639519414000119 ], [ -124.053219693999978, 49.639625575000103 ], [ -124.051773866999923, 49.639599715000081 ], [ -124.050855584999979, 49.63958328000006 ], [ -124.050805471999965, 49.640765988000076 ], [ -124.050714386, 49.64291552800006 ], [ -124.050174751, 49.642905867000081 ], [ -124.050166075999925, 49.643110541000105 ], [ -124.049359515999967, 49.643096096000136 ], [ -124.04935085299995, 49.643300361000087 ], [ -124.048599535999955, 49.643286900000064 ], [ -124.048590620999931, 49.643497032000028 ], [ -124.048866920999956, 49.643501982000053 ], [ -124.048714349999969, 49.647098567000072 ], [ -124.046207878999937, 49.647053629000013 ], [ -124.046217692999917, 49.647511481000045 ], [ -124.045386685999944, 49.647518988000058 ], [ -124.045398242999937, 49.648058573000128 ], [ -124.045813750999955, 49.648054821000123 ], [ -124.045819529999918, 49.648324614000096 ], [ -124.046650548999949, 49.648317105000068 ], [ -124.046657797999956, 49.648655201000068 ], [ -124.04668852099995, 49.648655752000138 ], [ -124.046668115000031, 49.649136250000026 ], [ -124.046673689999935, 49.649396277000058 ], [ -124.046657064999962, 49.649396427000092 ], [ -124.046535763999984, 49.65225230700009 ], [ -124.041000939, 49.652152897000128 ] ], [ [ -124.047697592999938, 49.639262141000053 ], [ -124.047698351999955, 49.63924424600004 ], [ -124.047582005999928, 49.639242160000101 ], [ -124.047581247, 49.639260055000051 ], [ -124.047697592999938, 49.639262141000053 ] ], [ [ -124.02113715899999, 49.630930300000053 ], [ -124.020675966999988, 49.630768796000091 ], [ -124.020621712999983, 49.631314509000113 ], [ -124.021262081999936, 49.631312883000085 ], [ -124.02113715899999, 49.630930300000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.976712118890761", "sL_AssetLoss": "1305.4", "sL_BldgLoss": "1275", "sL_StrLoss": "1110", "sL_NStrLoss": "165", "sL_ContLoss": "30.4", "geom_point": "0101000020E610000012D8BD91D0035FC00D695C512DD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.059976093999964, 49.649545098000026 ], [ -124.059964374999964, 49.649005515000106 ], [ -124.060379887999943, 49.649001710000093 ], [ -124.060368166999979, 49.648462126000076 ], [ -124.060783675999957, 49.648458320000053 ], [ -124.060766086999976, 49.647648944000181 ], [ -124.061398500999928, 49.647643149000082 ], [ -124.061369010999954, 49.647815418000036 ], [ -124.061436777999958, 49.648442 ], [ -124.061373388999982, 49.648861099000101 ], [ -124.061220305999896, 49.649207486000101 ], [ -124.061110898, 49.649175845000066 ], [ -124.060985042999945, 49.649205094000074 ], [ -124.060269759999969, 49.650012099000094 ], [ -124.059968078999958, 49.650204676000016 ], [ -124.059467714999968, 49.650380245000072 ], [ -124.059226917999979, 49.650508214000055 ], [ -124.059041084999961, 49.650646169000048 ], [ -124.058335718999956, 49.651446155000038 ], [ -124.058070124999972, 49.651669073000079 ], [ -124.057596038, 49.651995472000067 ], [ -124.05753559599998, 49.651996023000073 ], [ -124.057512213, 49.650916857000013 ], [ -124.057927741999904, 49.650913060000036 ], [ -124.057921892999957, 49.65064326800006 ], [ -124.058337420999948, 49.650639471000012 ], [ -124.058325720999903, 49.650099887000081 ], [ -124.058741243999989, 49.650096088000033 ], [ -124.058735390999971, 49.649826296000114 ], [ -124.059566433000015, 49.649818693000086 ], [ -124.059560575999967, 49.64954890100006 ], [ -124.059976093999964, 49.649545098000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99377233", "BldgCostT": "55556211", "sL_LossRatio": "0.627005796211018", "sL_AssetLoss": "97366.883", "sL_BldgLoss": "61049.6", "sL_StrLoss": "30105.7", "sL_NStrLoss": "30943.9", "sL_ContLoss": "36317.283", "geom_point": "0101000020E61000002315195F2CFD5EC0C47B17E756C34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.953989614999941, 49.527433691000034 ], [ -123.953065379999913, 49.526767100000022 ], [ -123.952480381999976, 49.526492300000065 ], [ -123.952394206999941, 49.526376900000038 ], [ -123.952418491999978, 49.525512396000117 ], [ -123.95217819599999, 49.525208988000045 ], [ -123.951915692999961, 49.525183392000059 ], [ -123.951742697999947, 49.525580814000108 ], [ -123.950886379999972, 49.525597900000058 ], [ -123.950234187999982, 49.525458299 ], [ -123.94962999599997, 49.524897106000054 ], [ -123.949128496999975, 49.524730490000074 ], [ -123.948437221999953, 49.524646503000092 ], [ -123.947885303999939, 49.524704901000071 ], [ -123.947551289999979, 49.524653597000089 ], [ -123.947521506999948, 49.524643223000041 ], [ -123.947539822999943, 49.524231599000061 ], [ -123.946583275999942, 49.524239429000062 ], [ -123.94657285599996, 49.52369981500005 ], [ -123.945329462999965, 49.523709981000124 ], [ -123.94531385599997, 49.522900560000089 ], [ -123.946557230999943, 49.522890393000104 ], [ -123.94656764699999, 49.523430008000084 ], [ -123.947396572999963, 49.523423223000101 ], [ -123.947380932999963, 49.522613802000052 ], [ -123.94862429899996, 49.522603614000069 ], [ -123.948629519999955, 49.52287342100005 ], [ -123.949043976999988, 49.522870022000063 ], [ -123.94904546399999, 49.522946849000085 ], [ -123.953117321999926, 49.52302368100009 ], [ -123.953092422999973, 49.523584748000076 ], [ -123.95421771599996, 49.523605953000057 ], [ -123.954215382999948, 49.523658533000045 ], [ -123.954804897999935, 49.523669638000058 ], [ -123.954782619999975, 49.524172054000083 ], [ -123.955287114999948, 49.524167890000101 ], [ -123.955293564999948, 49.524498893 ], [ -123.956149398999983, 49.524515004000115 ], [ -123.95612921499999, 49.524970483000068 ], [ -123.95654631099994, 49.524967035000024 ], [ -123.956551573999917, 49.525236841000023 ], [ -123.957795003999976, 49.525226555000096 ], [ -123.957784461999935, 49.524686942000116 ], [ -123.961295949999965, 49.524657820000087 ], [ -123.961762918999952, 49.525633496000026 ], [ -123.961953294999915, 49.525881792000099 ], [ -123.961955645999936, 49.526001586000092 ], [ -123.962044578999951, 49.526000846000059 ], [ -123.962146207, 49.526133390000133 ], [ -123.962495009999913, 49.526338394000049 ], [ -123.96293618599999, 49.526334194000086 ], [ -123.963243208000037, 49.526431007000099 ], [ -123.963374310999967, 49.526834108000031 ], [ -123.963170308999963, 49.526970791000096 ], [ -123.96321571699994, 49.527104701000106 ], [ -123.96363099199999, 49.527155893000085 ], [ -123.963852998999954, 49.527279802000052 ], [ -123.96387721399995, 49.527347985000119 ], [ -123.963855837000011, 49.527832187000065 ], [ -123.96350680099999, 49.527858091000141 ], [ -123.963106886999952, 49.52730409000003 ], [ -123.96289927899997, 49.527278393000074 ], [ -123.962810207999951, 49.527638703000015 ], [ -123.962387005999929, 49.527859507000052 ], [ -123.962252300999978, 49.528021910000056 ], [ -123.962075217999981, 49.528869294000081 ], [ -123.961217793999964, 49.528876407000034 ], [ -123.96098529399994, 49.528940489000014 ], [ -123.960780018999984, 49.529139901000093 ], [ -123.960356111999914, 49.529333593000089 ], [ -123.95960917799998, 49.529339199000063 ], [ -123.959551990999927, 49.52991460400002 ], [ -123.959374809999971, 49.530034307000079 ], [ -123.958656896000022, 49.530066992000108 ], [ -123.958088815999972, 49.530022919000089 ], [ -123.957812780999987, 49.530001503000086 ], [ -123.957228513999951, 49.52974519800005 ], [ -123.956779214999955, 49.529434708000061 ], [ -123.956363009999961, 49.529320685000094 ], [ -123.956263303999918, 49.52921390800001 ], [ -123.95622821799995, 49.528828001000107 ], [ -123.956045805999921, 49.528631392000158 ], [ -123.955233697999958, 49.528161405000077 ], [ -123.954883296999967, 49.527866596000095 ], [ -123.953989614999941, 49.527433691000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8475417", "BldgCostT": "4901667", "sL_LossRatio": "0.960221949989191", "sL_AssetLoss": "3608.02", "sL_BldgLoss": "3464.5", "sL_StrLoss": "2889", "sL_NStrLoss": "575.5", "sL_ContLoss": "143.52", "geom_point": "0101000020E6100000692C8AEC7DF65EC087E67CA906BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.849902279999924, 49.48545512100003 ], [ -123.850015245999913, 49.483029500000072 ], [ -123.850399408999976, 49.483212774000052 ], [ -123.852455802999955, 49.484032113000069 ], [ -123.852880815, 49.484298848000094 ], [ -123.853155926999975, 49.484554532000061 ], [ -123.853369280999942, 49.484862984000095 ], [ -123.85350778699997, 49.485296868000042 ], [ -123.85350890499997, 49.48552653900007 ], [ -123.849902279999924, 49.48545512100003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "362970605", "BldgCostT": "211488350", "sL_LossRatio": "0.643053453124728", "sL_AssetLoss": "418761.3", "sL_BldgLoss": "269285.9", "sL_StrLoss": "138178.9", "sL_NStrLoss": "131107", "sL_ContLoss": "149475.4", "geom_point": "0101000020E6100000014A3B1C7AFA5EC058782D3A3CC24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.91392545799998, 49.529089448000057 ], [ -123.913920427999969, 49.528819638000066 ], [ -123.913505914999973, 49.528822912000173 ], [ -123.91349585899999, 49.528283293000044 ], [ -123.912666843999887, 49.528289837000074 ], [ -123.912661820999958, 49.528020027000117 ], [ -123.911832810999968, 49.528026563000054 ], [ -123.911827791999926, 49.527756754000038 ], [ -123.911413288999967, 49.527760019 ], [ -123.911403255999971, 49.52722040000004 ], [ -123.910574257999912, 49.527226928000033 ], [ -123.910569247999916, 49.526957118000091 ], [ -123.908911259999911, 49.526970155000129 ], [ -123.908881246999954, 49.525351296000075 ], [ -123.909065313999974, 49.525349850000062 ], [ -123.909295729999911, 49.525348039000136 ], [ -123.909285720999947, 49.524808420000042 ], [ -123.908871242999965, 49.524811677000045 ], [ -123.908866241999959, 49.524541867000089 ], [ -123.908451764999967, 49.524545122000113 ], [ -123.908441766999943, 49.524005502000101 ], [ -123.90802729399995, 49.524008756000072 ], [ -123.908012303999939, 49.523199326000082 ], [ -123.90842676799997, 49.523196072000111 ], [ -123.908406772999939, 49.522116832000059 ], [ -123.908821228999983, 49.522113577 ], [ -123.908786223999968, 49.520224907000021 ], [ -123.909200663, 49.520221651000043 ], [ -123.90918565599992, 49.519412221000096 ], [ -123.90960008899998, 49.519408964000093 ], [ -123.909595083999974, 49.519139153000062 ], [ -123.910838374999955, 49.519129371000062 ], [ -123.910818329999955, 49.518050132000035 ], [ -123.909989485999986, 49.518056654000098 ], [ -123.9099944929999, 49.518326464000076 ], [ -123.908751222999939, 49.518336236000053 ], [ -123.908736221999916, 49.517526805000017 ], [ -123.909150638999947, 49.517523550000064 ], [ -123.909135632999892, 49.516714119000028 ], [ -123.908721223999962, 49.51671737500007 ], [ -123.90871122499999, 49.516177754000068 ], [ -123.907882412999982, 49.516184262000081 ], [ -123.90788740899994, 49.51645407200008 ], [ -123.907338678999963, 49.51645837700007 ], [ -123.907285829999978, 49.517623401 ], [ -123.906858485999976, 49.517615164000091 ], [ -123.906841232999966, 49.517995412000097 ], [ -123.905641856999964, 49.517972283000042 ], [ -123.905613519999989, 49.518596440000067 ], [ -123.904672262, 49.518578280000121 ], [ -123.904547633999982, 49.521321859000111 ], [ -123.900884247999926, 49.521251100000036 ], [ -123.89902883399999, 49.521215215000119 ], [ -123.899036140999925, 49.521054789000104 ], [ -123.898375219999977, 49.521041998000051 ], [ -123.898408758999935, 49.520305862000058 ], [ -123.898126498999915, 49.520300399000057 ], [ -123.898033152, 49.520298591000014 ], [ -123.898043940999983, 49.520061855000087 ], [ -123.897368343999943, 49.52004877500007 ], [ -123.897532290999933, 49.516451752000066 ], [ -123.90018547899993, 49.516503099000047 ], [ -123.900258772999933, 49.514892816 ], [ -123.901458065999989, 49.514916004000085 ], [ -123.901481677999968, 49.514396917000042 ], [ -123.901484023999956, 49.51434534900006 ], [ -123.901451297, 49.514345605000059 ], [ -123.90038842, 49.514353881000083 ], [ -123.900383467, 49.514084070000074 ], [ -123.899140299999928, 49.514093738000028 ], [ -123.899135354999942, 49.513823928000136 ], [ -123.898720966999946, 49.513827147000093 ], [ -123.898706135999987, 49.513017714000092 ], [ -123.899534895999949, 49.513011273000068 ], [ -123.899524997999919, 49.512471651000077 ], [ -123.899110622999942, 49.512474872000062 ], [ -123.899105676999937, 49.512205061000088 ], [ -123.8986913049999, 49.512208281000049 ], [ -123.898651757999986, 49.510049791 ], [ -123.898906854999922, 49.510047808000067 ], [ -123.899886349999974, 49.510040194000034 ], [ -123.89989499699999, 49.510049628000083 ], [ -123.899904722999935, 49.510579749000051 ], [ -123.900377581999948, 49.510576071000116 ], [ -123.901827705999963, 49.512157896000097 ], [ -123.902069690999923, 49.51242270700002 ], [ -123.90255961199999, 49.512823677000021 ], [ -123.903369004999945, 49.513240680000138 ], [ -123.903708802, 49.513359776000065 ], [ -123.904899331999971, 49.513685598000066 ], [ -123.904975869999973, 49.513706537000139 ], [ -123.905927546999933, 49.51396696900013 ], [ -123.906442703999957, 49.514052494000047 ], [ -123.906866297999954, 49.514122790000101 ], [ -123.906952881999985, 49.514130103000042 ], [ -123.907613117, 49.514185808000022 ], [ -123.908967001999926, 49.514167799000077 ], [ -123.910390187999937, 49.514108145000094 ], [ -123.91046787599997, 49.51410489200002 ], [ -123.911239112999937, 49.514122821000122 ], [ -123.911568598999963, 49.514130504000057 ], [ -123.912715118999969, 49.514270490000065 ], [ -123.91342297199995, 49.51440200400009 ], [ -123.915050476999937, 49.514896792000059 ], [ -123.915394267999901, 49.515020399000036 ], [ -123.915626099999926, 49.51477998700004 ], [ -123.915760886999962, 49.514698888000062 ], [ -123.916338715999956, 49.514561503000053 ], [ -123.916707417999959, 49.514438110000093 ], [ -123.918142803999928, 49.513898587000035 ], [ -123.918688203999963, 49.513776704000044 ], [ -123.9189037, 49.513742191000027 ], [ -123.919013059999941, 49.51370980700009 ], [ -123.919326280999954, 49.513617075000113 ], [ -123.919822968999981, 49.513412353 ], [ -123.920290055999928, 49.513409783000064 ], [ -123.92109902299994, 49.513405296000045 ], [ -123.922141683999925, 49.513552160000124 ], [ -123.923286243999939, 49.51364214300002 ], [ -123.923322124999984, 49.513644956000071 ], [ -123.92392576499999, 49.513638514000078 ], [ -123.924111406999955, 49.513686168000035 ], [ -123.924234961999957, 49.513763228000101 ], [ -123.924404795999976, 49.513977964000091 ], [ -123.924463852999978, 49.514086594000034 ], [ -123.924691717999963, 49.514505479000036 ], [ -123.925646981999989, 49.514294221000085 ], [ -123.925971271999913, 49.51414472400004 ], [ -123.923637358999983, 49.512837824000066 ], [ -123.924112881999932, 49.512752891000034 ], [ -123.924404596999949, 49.512841199000022 ], [ -123.924714202999965, 49.51311749900001 ], [ -123.924966114999918, 49.513214397000134 ], [ -123.925234157999938, 49.513224615000098 ], [ -123.925236489999961, 49.513348276000123 ], [ -123.926107081999973, 49.513341311000026 ], [ -123.926110825999913, 49.513258028000109 ], [ -123.926721612000023, 49.513281303000063 ], [ -123.927310714, 49.513816790000092 ], [ -123.927643495999959, 49.513858099000046 ], [ -123.927738, 49.513741293000052 ], [ -123.92775279199999, 49.513120409000088 ], [ -123.926770598999951, 49.512228795000055 ], [ -123.926847312999939, 49.511904089000033 ], [ -123.9285669, 49.511575095000055 ], [ -123.931457801999983, 49.510283287000021 ], [ -123.931890519999968, 49.509848906000059 ], [ -123.932140479999987, 49.509873201000083 ], [ -123.933155709999937, 49.510279094000055 ], [ -123.933418805999963, 49.510259099000102 ], [ -123.933789108999918, 49.510139504000072 ], [ -123.933908515999974, 49.509912996000011 ], [ -123.934100605999944, 49.509830406000084 ], [ -123.935662793999981, 49.509817595000122 ], [ -123.936230812999938, 49.509886002000052 ], [ -123.93636868499999, 49.509982806000039 ], [ -123.9364333, 49.510370213000073 ], [ -123.93651931, 49.512006589000087 ], [ -123.937588497999954, 49.512329911000052 ], [ -123.937864015999978, 49.51224729800002 ], [ -123.939175587999983, 49.512227405000047 ], [ -123.939600093999971, 49.512016609000071 ], [ -123.939878743999955, 49.511961593000095 ], [ -123.939777436999947, 49.514230310000059 ], [ -123.934259402999942, 49.514125455000126 ], [ -123.934268046999961, 49.513932429000114 ], [ -123.933643291999914, 49.513920539000061 ], [ -123.933664597999936, 49.513444862000028 ], [ -123.93343829199992, 49.513440554000077 ], [ -123.933421856, 49.513807467000149 ], [ -123.932154161999975, 49.513783329000034 ], [ -123.932153405999927, 49.513800199000052 ], [ -123.931609612999978, 49.513789840000094 ], [ -123.931599893999987, 49.514006613000113 ], [ -123.927734202999943, 49.51393289300006 ], [ -123.927743183999937, 49.514407602000112 ], [ -123.927328793999948, 49.514410924000025 ], [ -123.927333894999904, 49.514680733000041 ], [ -123.92691950399994, 49.514684054000071 ], [ -123.926924603999979, 49.514953863000066 ], [ -123.926510210999979, 49.514957183000099 ], [ -123.926515307999964, 49.515226991000098 ], [ -123.926107414999976, 49.515230257000098 ], [ -123.926100911999981, 49.515230310000049 ], [ -123.926106007999962, 49.515500118000098 ], [ -123.919890029999976, 49.515549710000066 ], [ -123.919884968999952, 49.515279900000067 ], [ -123.917398584999901, 49.51529964300007 ], [ -123.917403632999964, 49.515569453000097 ], [ -123.916989231999949, 49.515572738000074 ], [ -123.916990098000028, 49.515619055000073 ], [ -123.917009412999917, 49.516651977000045 ], [ -123.916632889999946, 49.516654961000093 ], [ -123.91663105100001, 49.516695673000143 ], [ -123.915419889999967, 49.516672426000056 ], [ -123.915417704, 49.516720803000105 ], [ -123.914938174999961, 49.516711596000015 ], [ -123.914952469999974, 49.517477812000045 ], [ -123.91536688799998, 49.517474534000037 ], [ -123.915371921999977, 49.517744343000061 ], [ -123.915786340999944, 49.517741064000063 ], [ -123.915796417999942, 49.51828068300005 ], [ -123.916210839999962, 49.518277402000059 ], [ -123.916225963999977, 49.519086830000042 ], [ -123.917054822999987, 49.51908026300007 ], [ -123.91706996, 49.519889691000039 ], [ -123.916241086999904, 49.519896259000099 ], [ -123.916251170999971, 49.520435878000058 ], [ -123.915007848999949, 49.520445718000055 ], [ -123.915027988999924, 49.521524957000032 ], [ -123.915442437999928, 49.521521677000045 ], [ -123.915477701999976, 49.523410345000045 ], [ -123.915892167999971, 49.523407064000082 ], [ -123.91592241099994, 49.525025920000111 ], [ -123.914678969999926, 49.525035758000087 ], [ -123.91468903900001, 49.525575376000106 ], [ -123.913445584999963, 49.525585199000041 ], [ -123.913455639999967, 49.526124819000096 ], [ -123.914699105999901, 49.52611499400011 ], [ -123.914705460999983, 49.526455594000033 ], [ -123.914719244999972, 49.527194232000035 ], [ -123.915133741999938, 49.527190954000041 ], [ -123.915169000999924, 49.52907961799999 ], [ -123.91392545799998, 49.529089448000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153406119", "BldgCostT": "95676832", "sL_LossRatio": "0.680766256092821", "sL_AssetLoss": "149725.4", "sL_BldgLoss": "101928", "sL_StrLoss": "56331", "sL_NStrLoss": "45597", "sL_ContLoss": "47797.4", "geom_point": "0101000020E61000007F805AB124FB5EC021530459CBC24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.920946843999957, 49.52768452700009 ], [ -123.92093316399999, 49.526956359000074 ], [ -123.920926571000024, 49.526605291000124 ], [ -123.921755553999944, 49.526598690000078 ], [ -123.921745407999978, 49.526059073000042 ], [ -123.921330921, 49.526062373000045 ], [ -123.921310638999969, 49.524983138000103 ], [ -123.92089616, 49.524986438000049 ], [ -123.920875888999973, 49.523907202000032 ], [ -123.921290358999983, 49.523903903000097 ], [ -123.921285287999964, 49.523634094000094 ], [ -123.92211422299999, 49.523627490000138 ], [ -123.92210914899999, 49.523357681000107 ], [ -123.920451289999932, 49.523370882000037 ], [ -123.920446222999914, 49.523101073000191 ], [ -123.919202834000018, 49.523110959000114 ], [ -123.919172485999965, 49.521492103000064 ], [ -123.920415833999968, 49.521482219000092 ], [ -123.920425962999929, 49.522021837000047 ], [ -123.921254868999952, 49.522015239000019 ], [ -123.921244730999888, 49.521475622000068 ], [ -123.920830282999987, 49.521478921000082 ], [ -123.920794814999979, 49.519590257000125 ], [ -123.920380382999923, 49.519593555000078 ], [ -123.920375317999955, 49.519323745000051 ], [ -123.919546455999978, 49.519330336000053 ], [ -123.919536336999926, 49.518790717000073 ], [ -123.919121910999976, 49.518794010000107 ], [ -123.919111796999957, 49.518254392000081 ], [ -123.918282951999984, 49.518260973000068 ], [ -123.918267795999952, 49.517451545000043 ], [ -123.918682211000018, 49.517448255000076 ], [ -123.918677155999958, 49.517178445000063 ], [ -123.91784832899998, 49.517185024000121 ], [ -123.917833180999978, 49.516375596000024 ], [ -123.918726354999947, 49.516368506000049 ], [ -123.9190764, 49.516365726000103 ], [ -123.919081099999985, 49.51661649600004 ], [ -123.919081455999901, 49.516635535000091 ], [ -123.919107980999911, 49.516635325000081 ], [ -123.919910272999957, 49.516628948000054 ], [ -123.919915334, 49.516898757000064 ], [ -123.920329743999929, 49.516895461000075 ], [ -123.920334806999975, 49.517165270000064 ], [ -123.921578044999976, 49.517155374000069 ], [ -123.921593256999955, 49.517964802000037 ], [ -123.922007674999989, 49.517961500000084 ], [ -123.922002603999928, 49.517691690000035 ], [ -123.92448910399996, 49.517671848000049 ], [ -123.924494189999962, 49.517941658000069 ], [ -123.925323026999962, 49.517935031000093 ], [ -123.925328118999971, 49.518204840000045 ], [ -123.925742538999941, 49.518201524000112 ], [ -123.92575272699996, 49.518741142000096 ], [ -123.926546987999956, 49.518734784000046 ], [ -123.92699600199991, 49.518731187000064 ], [ -123.927001102999924, 49.519000996000095 ], [ -123.928244384999971, 49.518991027000027 ], [ -123.928249492999925, 49.519260835000082 ], [ -123.928663921999913, 49.519257510000088 ], [ -123.928689471, 49.520606553000064 ], [ -123.929103912999892, 49.520603225000123 ], [ -123.92909879799997, 49.520333417000074 ], [ -123.930342115, 49.520323425000086 ], [ -123.930336994999905, 49.520053618000063 ], [ -123.931994737999929, 49.520040274000088 ], [ -123.931999866999959, 49.52031008300002 ], [ -123.932828742999959, 49.520303403000071 ], [ -123.932849274999938, 49.521382636000077 ], [ -123.931605933999919, 49.521392654000032 ], [ -123.931616185999943, 49.521932271000047 ], [ -123.929958379999917, 49.521945608000131 ], [ -123.929963495999957, 49.522215416000115 ], [ -123.928305678999891, 49.52222873000008 ], [ -123.928300569999948, 49.521958921000149 ], [ -123.927886116999929, 49.521962247000076 ], [ -123.927875905999926, 49.521422629000043 ], [ -123.92746145800001, 49.521425952000058 ], [ -123.927456354999919, 49.521156143000063 ], [ -123.926627464999939, 49.521162786000041 ], [ -123.926637660999958, 49.521702402000059 ], [ -123.926463409999897, 49.521703798000054 ], [ -123.926223210999964, 49.521705721000053 ], [ -123.926246262999911, 49.522926025000068 ], [ -123.926248695999917, 49.523054765000104 ], [ -123.926223354999948, 49.523054967000093 ], [ -123.925834233999964, 49.523058082000027 ], [ -123.925844421999969, 49.523597699000028 ], [ -123.925429957999981, 49.523601016000043 ], [ -123.92543505, 49.523870824000014 ], [ -123.925141268999937, 49.523873173000062 ], [ -123.925020581, 49.523874139 ], [ -123.925025672999979, 49.52414394700002 ], [ -123.925359601999943, 49.524141277000084 ], [ -123.925440142999918, 49.524140633000108 ], [ -123.925442066999906, 49.524242539000085 ], [ -123.925450328999915, 49.524680250000081 ], [ -123.925796274999982, 49.524677482000051 ], [ -123.925864803999957, 49.524676934000063 ], [ -123.925866443999922, 49.524763761 ], [ -123.925874994999958, 49.525216551000085 ], [ -123.926010329999954, 49.525215468000042 ], [ -123.92623225799997, 49.525213691000076 ], [ -123.926289475999937, 49.525213233000073 ], [ -123.926290845000011, 49.525285748 ], [ -123.926299670999967, 49.525752850000039 ], [ -123.926668234999951, 49.525749900000044 ], [ -123.926714155999903, 49.52574953200007 ], [ -123.926715253999973, 49.525807729000121 ], [ -123.926724355999923, 49.526289148000018 ], [ -123.92710422199994, 49.526286104000079 ], [ -123.927138843999941, 49.526285827000059 ], [ -123.927139673999974, 49.526329707000095 ], [ -123.927159254999964, 49.527365061000125 ], [ -123.924672265, 49.527384963000046 ], [ -123.924667175999971, 49.527115155000075 ], [ -123.923423686999968, 49.527125087000066 ], [ -123.923428768999955, 49.52739489500005 ], [ -123.922599770999909, 49.5274015090001 ], [ -123.922604849999942, 49.527671318000053 ], [ -123.920946843999957, 49.52768452700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1898750", "BldgCostT": "1100000", "sL_LossRatio": "0.457686448970533", "sL_AssetLoss": "9912.9", "sL_BldgLoss": "4537", "sL_StrLoss": "1150", "sL_NStrLoss": "3387", "sL_ContLoss": "5375.9", "geom_point": "0101000020E6100000470B2B70CDFC5EC0221C71D0F7C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.949409196, 49.507789501000104 ], [ -123.949194107999972, 49.507396502000098 ], [ -123.949202491999955, 49.507144409000027 ], [ -123.949528397000037, 49.506772587000043 ], [ -123.949341316999949, 49.506620214000051 ], [ -123.949976932999945, 49.506632220000036 ], [ -123.94993729, 49.507524498000116 ], [ -123.950985850000038, 49.50754429600012 ], [ -123.95094944199991, 49.508364167000117 ], [ -123.95038450899996, 49.508232507000052 ], [ -123.949409196, 49.507789501000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3504250", "BldgCostT": "1945000", "sL_LossRatio": "0.599840696035782", "sL_AssetLoss": "16321", "sL_BldgLoss": "9790", "sL_StrLoss": "3590", "sL_NStrLoss": "6200", "sL_ContLoss": "6531", "geom_point": "0101000020E610000067D1E05B3DF05EC05D5F980A79C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.753834211999902, 49.532876458000032 ], [ -123.754003540999975, 49.532879960000095 ], [ -123.754335682999951, 49.533834668000068 ], [ -123.753935581999897, 49.536875457000079 ], [ -123.75322486, 49.536860758000095 ], [ -123.753400107999951, 49.533264048000092 ], [ -123.753814913999946, 49.533272628000105 ], [ -123.753834211999902, 49.532876458000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8054553", "BldgCostT": "4268746", "sL_LossRatio": "0.539063293711267", "sL_AssetLoss": "98430", "sL_BldgLoss": "53060", "sL_StrLoss": "20910", "sL_NStrLoss": "32150", "sL_ContLoss": "45370", "geom_point": "0101000020E6100000FEDC65F919EF5EC0B38A2750FEBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.735626794999916, 49.499327946000101 ], [ -123.735622752, 49.499058123000083 ], [ -123.736865587999944, 49.499050213000061 ], [ -123.73686963899992, 49.49932003600005 ], [ -123.737848940999982, 49.499313795000077 ], [ -123.73789422399993, 49.499504985000065 ], [ -123.738040354999953, 49.500122119000082 ], [ -123.737296082999961, 49.500126863000062 ], [ -123.737300136999949, 49.500396687 ], [ -123.736471556999959, 49.50040196500008 ], [ -123.736475604999967, 49.500671788000091 ], [ -123.735647020999977, 49.500677060000072 ], [ -123.735651064999914, 49.500946882000058 ], [ -123.73440818099999, 49.500954779000068 ], [ -123.734383951999959, 49.499335842000065 ], [ -123.735626794999916, 49.499327946000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284340044", "BldgCostT": "158736428", "sL_LossRatio": "0.643671222806829", "sL_AssetLoss": "393959.2", "sL_BldgLoss": "253580.2", "sL_StrLoss": "131537.5", "sL_NStrLoss": "122042.7", "sL_ContLoss": "140379", "geom_point": "0101000020E6100000EC934F6EDFFD5EC06A23CFDCE0C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.983733498, 49.547893762000037 ], [ -123.983745038999956, 49.547629904000082 ], [ -123.981483031999957, 49.547587905000093 ], [ -123.981523969999984, 49.546652940000051 ], [ -123.981549470999965, 49.546070504000085 ], [ -123.980542091, 49.546051784000028 ], [ -123.980549009999947, 49.545893830000054 ], [ -123.979404758999948, 49.545872555000116 ], [ -123.979428232999936, 49.545336954000099 ], [ -123.979417593, 49.545336756000054 ], [ -123.979455387999963, 49.5444743790001 ], [ -123.97849202299993, 49.544482529000078 ], [ -123.978508189999928, 49.545291940000041 ], [ -123.977548153999933, 49.545300054000094 ], [ -123.977264257999977, 49.545302453000048 ], [ -123.977242729999958, 49.544223238000022 ], [ -123.976828095999949, 49.544226738000113 ], [ -123.9768012, 49.542877720000085 ], [ -123.977001455999968, 49.542876029000041 ], [ -123.97721582399997, 49.542874220000037 ], [ -123.977213917999904, 49.542778720000094 ], [ -123.976859171999962, 49.54277211400003 ], [ -123.975697009999948, 49.542750465000054 ], [ -123.975722441999935, 49.542171211000081 ], [ -123.975660943999941, 49.54217006600004 ], [ -123.975668892999977, 49.541989060000084 ], [ -123.975723717999941, 49.540740324000062 ], [ -123.974089267999929, 49.540709855000031 ], [ -123.970268235000034, 49.540638529000049 ], [ -123.970268850999958, 49.540624546000046 ], [ -123.96950700799999, 49.540610310000055 ], [ -123.969546301999955, 49.539718040000011 ], [ -123.968379160999959, 49.53969621900012 ], [ -123.967200020999982, 49.539674160000075 ], [ -123.967200928999887, 49.539720178000032 ], [ -123.96761552699995, 49.539716712000015 ], [ -123.967621687999966, 49.540028697000025 ], [ -123.967647495999955, 49.541335539000059 ], [ -123.968062106999966, 49.541332071000063 ], [ -123.968078098999911, 49.542141484000091 ], [ -123.966834244, 49.542151884000113 ], [ -123.966818272999916, 49.541342471000121 ], [ -123.965989049999919, 49.54134939700009 ], [ -123.965999686999965, 49.541889006000119 ], [ -123.965493805000037, 49.541893229000038 ], [ -123.963926604999941, 49.541906295000061 ], [ -123.963915989, 49.541366685000085 ], [ -123.96350137599994, 49.54137013800004 ], [ -123.963497038999918, 49.541149514000047 ], [ -123.963496071999955, 49.541100334000085 ], [ -123.96334591899992, 49.541101584000032 ], [ -123.962666852, 49.541107235000048 ], [ -123.962662482999946, 49.540884818000087 ], [ -123.96266155099994, 49.540837431000071 ], [ -123.962516871, 49.540838634000075 ], [ -123.961832334999954, 49.540844326000077 ], [ -123.961827640999957, 49.540605160000077 ], [ -123.961827038999957, 49.540574522000092 ], [ -123.961742186999942, 49.540575227000026 ], [ -123.961412432999936, 49.540577967000033 ], [ -123.961409564999911, 49.540431770000033 ], [ -123.9614071399999, 49.540308162000031 ], [ -123.96115307899997, 49.540310273000067 ], [ -123.960992536, 49.540311606000017 ], [ -123.960991004999926, 49.540233497000024 ], [ -123.960987243, 49.540041801000072 ], [ -123.960693477999925, 49.540044241000089 ], [ -123.960572642999963, 49.540045244000048 ], [ -123.960571089999945, 49.539965988000084 ], [ -123.96056735399999, 49.539775438000085 ], [ -123.960300201999971, 49.539777656000112 ], [ -123.960152754999953, 49.539778880000043 ], [ -123.960149894999944, 49.539632956000041 ], [ -123.960147467999917, 49.539509075000055 ], [ -123.960022293999955, 49.53951011300007 ], [ -123.959732870999915, 49.539512514000059 ], [ -123.95972726199993, 49.539226081000102 ], [ -123.959722301999975, 49.538972904000104 ], [ -123.959466485999982, 49.538975026000045 ], [ -123.959307709999962, 49.538976342000112 ], [ -123.959304633999963, 49.538819204000099 ], [ -123.959302427999901, 49.538706536000056 ], [ -123.959188585999968, 49.538707480000063 ], [ -123.958473247999947, 49.538713408000078 ], [ -123.958467969999958, 49.538443603000147 ], [ -123.958053381999946, 49.538447037000047 ], [ -123.958048107999929, 49.538177232000088 ], [ -123.957633520999977, 49.538180663000048 ], [ -123.957628248999967, 49.537910858000011 ], [ -123.957213664999983, 49.537914288000103 ], [ -123.957204570999963, 49.537448734000087 ], [ -123.95720312399996, 49.537374677000123 ], [ -123.95702490099994, 49.537376151000025 ], [ -123.95637396599993, 49.537381534000168 ], [ -123.956371065999946, 49.537232896000027 ], [ -123.95636870099996, 49.537111728000063 ], [ -123.95583, 49.537116179000087 ], [ -123.955124969999929, 49.537122001000057 ], [ -123.955121877999957, 49.53696342700011 ], [ -123.955119709999934, 49.536852196000076 ], [ -123.954625137999955, 49.536856277000012 ], [ -123.953875984999982, 49.536862456000101 ], [ -123.95387270399999, 49.536693881000119 ], [ -123.953870731999942, 49.536592650000067 ], [ -123.953421311999961, 49.53659635500005 ], [ -123.952627014999933, 49.536602896000012 ], [ -123.952623535999962, 49.536423982000038 ], [ -123.95262176899999, 49.536333090000078 ], [ -123.952218263999924, 49.53633641200004 ], [ -123.952207199999975, 49.536336503000051 ], [ -123.952212440999929, 49.536606309000042 ], [ -123.950139573999962, 49.536623350000113 ], [ -123.950125242, 49.535884130000099 ], [ -123.950113419, 49.53527431900006 ], [ -123.950527980999979, 49.535270914000101 ], [ -123.950522748999973, 49.53500110800006 ], [ -123.950937308999954, 49.534997702000105 ], [ -123.950905899999952, 49.533378865000032 ], [ -123.951387554999954, 49.533374905000109 ], [ -123.951416994999974, 49.53271220000007 ], [ -123.951058996999961, 49.532705447000076 ], [ -123.951061554999967, 49.532647859000072 ], [ -123.950546079999924, 49.532638134000123 ], [ -123.950626272999969, 49.530833606000016 ], [ -123.950309683999933, 49.530827632000069 ], [ -123.950469540999933, 49.527230586000059 ], [ -123.950504781999911, 49.527231251000032 ], [ -123.950506673999882, 49.527188680000059 ], [ -123.949125762999955, 49.527162610000097 ], [ -123.949128101999975, 49.527110031000085 ], [ -123.948538546999899, 49.527098896000091 ], [ -123.948563501999985, 49.526537832000081 ], [ -123.947438139999974, 49.526516568000055 ], [ -123.94749046599999, 49.525340735000064 ], [ -123.948461903999913, 49.526003799000122 ], [ -123.949012388999961, 49.52653069900002 ], [ -123.949635524999977, 49.526623303000072 ], [ -123.95044109199992, 49.526859693000048 ], [ -123.951202591999916, 49.527627409000061 ], [ -123.951618307999965, 49.528433502000048 ], [ -123.951664085999951, 49.529350604000051 ], [ -123.951941685999941, 49.529384810000039 ], [ -123.95218539899993, 49.52917550300004 ], [ -123.952235297999891, 49.528806612000061 ], [ -123.952424907999955, 49.528688401000117 ], [ -123.952716405999951, 49.528677003000041 ], [ -123.953817194999914, 49.529152703000115 ], [ -123.954676299999932, 49.529343502000053 ], [ -123.955154690999976, 49.529753716000073 ], [ -123.956591613999976, 49.530425908000041 ], [ -123.957407849999953, 49.530427365000087 ], [ -123.957433395999956, 49.530427411000097 ], [ -123.957587374999918, 49.530507096000122 ], [ -123.957632382999975, 49.530677992000093 ], [ -123.958543011999936, 49.530633893000072 ], [ -123.959335300999925, 49.530878798000117 ], [ -123.959452903999988, 49.531157987000078 ], [ -123.959321006999986, 49.531464193000083 ], [ -123.958417507999926, 49.531994003000079 ], [ -123.95778490399999, 49.532152088000011 ], [ -123.956568782999938, 49.532116503000054 ], [ -123.955592713999977, 49.53169350400001 ], [ -123.954540195000021, 49.531531092000073 ], [ -123.954344892999956, 49.531442789000046 ], [ -123.953866794999968, 49.53170769200009 ], [ -123.953451895999947, 49.531756108000067 ], [ -123.953454605999951, 49.531900007000097 ], [ -123.956102192999978, 49.532939710000051 ], [ -123.956821896999926, 49.533032214000045 ], [ -123.95786660899995, 49.532798689000074 ], [ -123.958611490999914, 49.532720315000049 ], [ -123.96002250799998, 49.532744494000085 ], [ -123.96056509899995, 49.532956711000068 ], [ -123.961096812999983, 49.533447193000093 ], [ -123.96139581499996, 49.533723 ], [ -123.96185812, 49.533997803000027 ], [ -123.964094700999951, 49.533960794000087 ], [ -123.964623700999965, 49.534073287000062 ], [ -123.965044197999958, 49.534420811000125 ], [ -123.965952207999933, 49.53563710400006 ], [ -123.966441897999914, 49.536550003000045 ], [ -123.96674378599999, 49.537924401000055 ], [ -123.966957998999959, 49.538183589000042 ], [ -123.96735811799999, 49.538162207 ], [ -123.968047509, 49.537408787000096 ], [ -123.968924718999943, 49.537059896000123 ], [ -123.969132687999902, 49.537076998000011 ], [ -123.970375690999958, 49.53776769500012 ], [ -123.971064602999974, 49.538355901000067 ], [ -123.97135648299999, 49.538424297000105 ], [ -123.972045400999903, 49.538247710000107 ], [ -123.974035107999953, 49.538205000000154 ], [ -123.974399196999954, 49.537814715000117 ], [ -123.97562041399999, 49.537390306000091 ], [ -123.975756624, 49.537245005000038 ], [ -123.975833177999959, 49.536903197000122 ], [ -123.976133025, 49.536675404000093 ], [ -123.977294595999979, 49.536746594000064 ], [ -123.977615009999923, 49.53688758800007 ], [ -123.978049813999959, 49.537180907000085 ], [ -123.978069787999956, 49.537522801000037 ], [ -123.977872592999944, 49.538001294000011 ], [ -123.978525982999926, 49.538139391000136 ], [ -123.978820311999982, 49.538388708000085 ], [ -123.978670198999964, 49.539163414000036 ], [ -123.97828130799995, 49.539832788000076 ], [ -123.978274117999916, 49.540156102000019 ], [ -123.978649107999985, 49.540188891000078 ], [ -123.979609009999976, 49.539857003000094 ], [ -123.979789817999986, 49.539855595000084 ], [ -123.980155108999952, 49.540176101000071 ], [ -123.980957196999938, 49.540214512000112 ], [ -123.98125030199995, 49.540292801000142 ], [ -123.982615995999964, 49.54088388800006 ], [ -123.983038786999913, 49.541240009000092 ], [ -123.982919709, 49.541538992000064 ], [ -123.982856784999939, 49.54257300600004 ], [ -123.983378499999958, 49.54309000300006 ], [ -123.983151280999934, 49.543478795000063 ], [ -123.983158297999921, 49.543820607000093 ], [ -123.983371579999968, 49.54408979300009 ], [ -123.983624192999983, 49.545004099000032 ], [ -123.984336005, 49.545268996000082 ], [ -123.98526028699996, 49.545260490000103 ], [ -123.986110295999964, 49.545505413000086 ], [ -123.986617996999911, 49.545411510000079 ], [ -123.98703510699994, 49.545479788000129 ], [ -123.987433395999915, 49.546042404000083 ], [ -123.987912411999929, 49.546452503000111 ], [ -123.989304477999966, 49.546877376000026 ], [ -123.989255681999936, 49.547996098000027 ], [ -123.986176570999959, 49.547939072000084 ], [ -123.983733498, 49.547893762000037 ] ], [ [ -123.97950271099991, 49.54339458100003 ], [ -123.979527814, 49.542821778000075 ], [ -123.978873306, 49.542809604000041 ], [ -123.978885095999942, 49.543399808000082 ], [ -123.97950271099991, 49.54339458100003 ] ], [ [ -123.96686124699994, 49.53918331900006 ], [ -123.966861643999934, 49.539174331000034 ], [ -123.966775460999926, 49.539172717 ], [ -123.966775684999945, 49.539184034000073 ], [ -123.96686124699994, 49.53918331900006 ] ], [ [ -123.965945954999953, 49.538467655000069 ], [ -123.966045022999978, 49.53622179400007 ], [ -123.965217000999957, 49.53622870400006 ], [ -123.965058860999989, 49.536230024000133 ], [ -123.965064174999938, 49.536499829000014 ], [ -123.963820461999987, 49.536510196000023 ], [ -123.963819671999914, 49.536469996000022 ], [ -123.960916133999959, 49.536415529000067 ], [ -123.960918461999981, 49.536534333000056 ], [ -123.961333034999953, 49.536530889000069 ], [ -123.961348912999966, 49.537340305000086 ], [ -123.963421803999893, 49.537323064000084 ], [ -123.963432412999964, 49.537862674000046 ], [ -123.96426157799999, 49.53785576700011 ], [ -123.964256267999957, 49.537585962000129 ], [ -123.965500007999978, 49.537575590000081 ], [ -123.965515954999944, 49.538385004000169 ], [ -123.96591795199997, 49.538381649000051 ], [ -123.965930542999928, 49.538381545000064 ], [ -123.965931356999974, 49.538422818000122 ], [ -123.965935861, 49.538651349000055 ], [ -123.965937851999925, 49.538651333000068 ], [ -123.965945954999953, 49.538467655000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20534608", "BldgCostT": "11016012", "sL_LossRatio": "0.788676393270242", "sL_AssetLoss": "12172.8", "sL_BldgLoss": "9600.4", "sL_StrLoss": "4892.4", "sL_NStrLoss": "4708", "sL_ContLoss": "2572.4", "geom_point": "0101000020E6100000D7CC52997FF85EC00297A68C28DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.88394750400002, 49.737079183000091 ], [ -123.883948716999967, 49.737052894000115 ], [ -123.883189178999956, 49.737038163000058 ], [ -123.883191301999958, 49.736992129000065 ], [ -123.880577484999961, 49.736941395000038 ], [ -123.880704587999944, 49.734188760000109 ], [ -123.881975178999966, 49.734193296000093 ], [ -123.88343098899999, 49.734109191000094 ], [ -123.883926385, 49.733898406000058 ], [ -123.884106815999928, 49.733906993000126 ], [ -123.883960295999941, 49.734177612000025 ], [ -123.884099394999907, 49.734221713000046 ], [ -123.88456886799996, 49.734285228 ], [ -123.884587987999979, 49.734645970000088 ], [ -123.884656437999979, 49.734683382000071 ], [ -123.88485840099996, 49.734771831000081 ], [ -123.885018968999972, 49.737099954000151 ], [ -123.88394750400002, 49.737079183000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35807917", "BldgCostT": "19701667", "sL_LossRatio": "0.620046721830448", "sL_AssetLoss": "229015", "sL_BldgLoss": "142000", "sL_StrLoss": "54290", "sL_NStrLoss": "87710", "sL_ContLoss": "87015", "geom_point": "0101000020E6100000715F9C3216F95EC05F05295F6DC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.892096895999956, 49.524977452000044 ], [ -123.894821651999905, 49.52503031 ], [ -123.894657460999952, 49.52862728300007 ], [ -123.889465528999935, 49.528526507000066 ], [ -123.889137809999951, 49.528520138000033 ], [ -123.889302429999987, 49.524923172000058 ], [ -123.892096895999956, 49.524977452000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123190073", "BldgCostT": "80179361", "sL_LossRatio": "0.8066030642123", "sL_AssetLoss": "67891.51", "sL_BldgLoss": "54761.5", "sL_StrLoss": "25505.5", "sL_NStrLoss": "29256", "sL_ContLoss": "13130.01", "geom_point": "0101000020E6100000C0C293279AFC5EC03F42E62D4BC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.944707062999953, 49.512921070000097 ], [ -123.94468970299998, 49.512019787000078 ], [ -123.943253974999948, 49.511992595000031 ], [ -123.943408619999971, 49.508523310000065 ], [ -123.943745984999921, 49.508520197000053 ], [ -123.944438217999974, 49.508658304000022 ], [ -123.945082892999949, 49.508329292000042 ], [ -123.945317792999973, 49.508345001000116 ], [ -123.946239394999964, 49.508842004000059 ], [ -123.946660687999909, 49.509279311000036 ], [ -123.94710788399999, 49.509508596000074 ], [ -123.94738341099999, 49.509534190000046 ], [ -123.947492683999911, 49.50943449600009 ], [ -123.947398798999927, 49.508823499000066 ], [ -123.94681319099999, 49.508558592000064 ], [ -123.946698802999933, 49.508370593000052 ], [ -123.946766393999951, 49.508270889000137 ], [ -123.94612461, 49.507916306000041 ], [ -123.946009892999911, 49.507736807000093 ], [ -123.945894304999982, 49.507450606000063 ], [ -123.946029294999931, 49.50725970600007 ], [ -123.946302902999946, 49.507168594000042 ], [ -123.946662182999944, 49.507201300000055 ], [ -123.94744161199992, 49.507464797000019 ], [ -123.948973602999928, 49.508117105000075 ], [ -123.949735682999943, 49.508219692000118 ], [ -123.950069108999969, 49.50835209000013 ], [ -123.950546490999955, 49.508706695000029 ], [ -123.95092609299995, 49.508889948000082 ], [ -123.950826098999968, 49.511141445000149 ], [ -123.949452745999963, 49.511115513000028 ], [ -123.949444053999954, 49.511311080000048 ], [ -123.948807247999952, 49.511299049000044 ], [ -123.948771771999986, 49.5120969930001 ], [ -123.94800636799999, 49.512082529000104 ], [ -123.948006406999966, 49.512084530000074 ], [ -123.946348940999883, 49.512098101000042 ], [ -123.94635414599999, 49.512367908000066 ], [ -123.94593977699999, 49.512371297000101 ], [ -123.94595018499993, 49.512910912000073 ], [ -123.944707062999953, 49.512921070000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3504250", "BldgCostT": "1945000", "sL_LossRatio": "0.689672493469962", "sL_AssetLoss": "9954", "sL_BldgLoss": "6865", "sL_StrLoss": "2890", "sL_NStrLoss": "3975", "sL_ContLoss": "3089", "geom_point": "0101000020E610000083DC248AF9EF5EC08840DC7281C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.749572283999925, 49.544302974000111 ], [ -123.749568154999963, 49.544033154000019 ], [ -123.74915349699998, 49.544035839000124 ], [ -123.749145245999969, 49.543496199000046 ], [ -123.74873059199993, 49.54349888399999 ], [ -123.748709975999972, 49.542149784000088 ], [ -123.749953901999973, 49.542141728000111 ], [ -123.74996216199996, 49.542681368000082 ], [ -123.750376807999942, 49.542678680000094 ], [ -123.750380940999946, 49.542948500000065 ], [ -123.750795588999893, 49.542945810000049 ], [ -123.750791454999955, 49.54267599000007 ], [ -123.75120610099998, 49.542673299000064 ], [ -123.751201964999908, 49.542403479000079 ], [ -123.751615334999926, 49.542400795000049 ], [ -123.750110085999921, 49.543520198000067 ], [ -123.749768026999945, 49.543818544000068 ], [ -123.74977932899999, 49.544301632000028 ], [ -123.749572283999925, 49.544302974000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52261047", "BldgCostT": "28952822", "sL_LossRatio": "0.545338360088241", "sL_AssetLoss": "67134.1", "sL_BldgLoss": "36610.8", "sL_StrLoss": "14585.8", "sL_NStrLoss": "22025", "sL_ContLoss": "30523.3", "geom_point": "0101000020E6100000F5845FC919FC5EC0013EC3C4B4C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.936311845999938, 49.52444358200006 ], [ -123.936413860999934, 49.522163388000088 ], [ -123.935351394999898, 49.52217198300005 ], [ -123.935346247999959, 49.521902175000029 ], [ -123.934931795999972, 49.521905524000097 ], [ -123.934911217999925, 49.520826292000088 ], [ -123.935325661, 49.520822942000081 ], [ -123.935310220999952, 49.520013519000038 ], [ -123.93779682899999, 49.519993389000021 ], [ -123.937791668999978, 49.51972358200009 ], [ -123.936962804999936, 49.519730297000109 ], [ -123.936931874, 49.518111449000109 ], [ -123.938589547999925, 49.518098012000038 ], [ -123.938579220999927, 49.517558397000037 ], [ -123.938993632999981, 49.517555033000086 ], [ -123.938983301999954, 49.517015418000035 ], [ -123.939397711, 49.517012054000098 ], [ -123.939392541999908, 49.516742245000025 ], [ -123.939806949999976, 49.516738880000048 ], [ -123.939801777999904, 49.516469072000078 ], [ -123.941873800999971, 49.516452222000098 ], [ -123.941878982999981, 49.516722029000064 ], [ -123.942293387999939, 49.516718655000027 ], [ -123.942314126999946, 49.517797885000057 ], [ -123.94024204899992, 49.517814744000063 ], [ -123.940252394999931, 49.518354360000039 ], [ -123.939837974999975, 49.518357727000058 ], [ -123.939843144999898, 49.518627534000132 ], [ -123.939428721999889, 49.518630901000073 ], [ -123.939449397999937, 49.519710132000078 ], [ -123.93986383, 49.519706767000052 ], [ -123.939869001999952, 49.519976574000076 ], [ -123.940283434999941, 49.519973206000031 ], [ -123.940288609999982, 49.520243014000137 ], [ -123.941117480999978, 49.520236275000102 ], [ -123.94112266, 49.520506082000068 ], [ -123.941537098999945, 49.520502710000066 ], [ -123.941539033999931, 49.520603461000043 ], [ -123.942045591999943, 49.520613064 ], [ -123.942026614999961, 49.521038424000061 ], [ -123.94237634699999, 49.521035576000052 ], [ -123.942381531999956, 49.521305384000051 ], [ -123.94321042199999, 49.521298629000022 ], [ -123.943236372999976, 49.522647666000047 ], [ -123.941954351, 49.522658111000069 ], [ -123.941946521999952, 49.522833564000059 ], [ -123.941879415999935, 49.522802106000057 ], [ -123.941091402999959, 49.522834894000056 ], [ -123.940983696999979, 49.522907514000067 ], [ -123.94097189899999, 49.523113994 ], [ -123.941060303999947, 49.523293503000026 ], [ -123.941615790999947, 49.523549791000093 ], [ -123.941912731999935, 49.523590853 ], [ -123.941885099999951, 49.524210131000082 ], [ -123.941846240999965, 49.524209395000106 ], [ -123.941831117000021, 49.524548331000148 ], [ -123.936311845999938, 49.52444358200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30628917", "BldgCostT": "20651667", "sL_LossRatio": "0.90016025133681", "sL_AssetLoss": "66333.3", "sL_BldgLoss": "59710.6", "sL_StrLoss": "44116.1", "sL_NStrLoss": "15594.5", "sL_ContLoss": "6622.7", "geom_point": "0101000020E6100000F6A213958FF05EC0A964C6FCD8C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.760005280999977, 49.548750406000046 ], [ -123.760039597999935, 49.548044207000096 ], [ -123.759219096999942, 49.548027287000082 ], [ -123.759220635999924, 49.54799559800005 ], [ -123.758569675999979, 49.54798217000009 ], [ -123.758588161999981, 49.547601966000094 ], [ -123.758093479999928, 49.547591759000092 ], [ -123.758119245999978, 49.547061979000034 ], [ -123.757972808999966, 49.547058957000047 ], [ -123.75799968699998, 49.546506312000083 ], [ -123.75744402399999, 49.546494844000073 ], [ -123.757446605999959, 49.546441766000058 ], [ -123.756887807999988, 49.546430231000031 ], [ -123.756892269000033, 49.546338533000039 ], [ -123.75620848799997, 49.546324412000061 ], [ -123.756210548999931, 49.546282077000072 ], [ -123.755441562999962, 49.546266192000161 ], [ -123.755454389999926, 49.546002739000066 ], [ -123.755272871999978, 49.545998988000051 ], [ -123.7552915699999, 49.545615018000106 ], [ -123.752910293999904, 49.545630535000065 ], [ -123.752906148999926, 49.545360716000076 ], [ -123.752491478999971, 49.545363414000114 ], [ -123.752495623999948, 49.545633233000025 ], [ -123.750836937999964, 49.545644007000092 ], [ -123.750828667999926, 49.545104368000111 ], [ -123.750414001999957, 49.545107058000063 ], [ -123.750405735999934, 49.544567418000078 ], [ -123.749991072999947, 49.544570106000045 ], [ -123.749986943999929, 49.544300287000105 ], [ -123.74977932899999, 49.544301632000028 ], [ -123.749768026999945, 49.543818544000068 ], [ -123.750110085999921, 49.543520198000067 ], [ -123.75096911, 49.543496404000045 ], [ -123.751710693999911, 49.543475850000071 ], [ -123.753398998999927, 49.543169711000132 ], [ -123.753465600999945, 49.543277292000028 ], [ -123.75394959, 49.543409693000058 ], [ -123.753584230999962, 49.544018722000096 ], [ -123.752849649999959, 49.54480188300009 ], [ -123.753134856999935, 49.544959911000092 ], [ -123.753377224999952, 49.545033320000051 ], [ -123.753784787999948, 49.545091240000041 ], [ -123.75456270199993, 49.545147836000048 ], [ -123.75480453599999, 49.545144761000167 ], [ -123.754860513999972, 49.54514405500003 ], [ -123.755963227, 49.54512996400004 ], [ -123.757251241999967, 49.5454085880001 ], [ -123.75791025599996, 49.545410487000034 ], [ -123.758791985999949, 49.545491676000076 ], [ -123.760951218999949, 49.545471419000052 ], [ -123.760956221999919, 49.545368003000071 ], [ -123.760849119999975, 49.545211895000143 ], [ -123.760722009999967, 49.545126507000106 ], [ -123.760359998999945, 49.544983997000067 ], [ -123.758943718999888, 49.544787413000044 ], [ -123.758605420999942, 49.544697619000061 ], [ -123.758378591999929, 49.544587619000012 ], [ -123.758225097999926, 49.544476415000091 ], [ -123.758099426999948, 49.544305531000091 ], [ -123.758053198999946, 49.544120022000079 ], [ -123.758070698999987, 49.543958431000128 ], [ -123.758376479999981, 49.54321044700005 ], [ -123.758929188999986, 49.542072461000025 ], [ -123.758916004, 49.541775154000064 ], [ -123.75875526399993, 49.54141540400007 ], [ -123.7587163399999, 49.541372513000113 ], [ -123.758385076999943, 49.54100739000009 ], [ -123.758644658000023, 49.541005689000052 ], [ -123.758648835999949, 49.541275508000112 ], [ -123.75947810299995, 49.541270068000102 ], [ -123.759493512999981, 49.542264295000088 ], [ -123.761285685999894, 49.54230124300004 ], [ -123.761065409999929, 49.54248190200007 ], [ -123.760194383999988, 49.542989576000103 ], [ -123.760161409999967, 49.543008794000094 ], [ -123.759226702999968, 49.54334779600007 ], [ -123.75913370399995, 49.543537198000116 ], [ -123.759289700999958, 49.543860512000073 ], [ -123.759268206999934, 49.544175183000078 ], [ -123.759365808999959, 49.544229407000017 ], [ -123.761480498999958, 49.544223711000029 ], [ -123.762308, 49.544119708000039 ], [ -123.762862274999947, 49.544169496000052 ], [ -123.763105700999944, 49.544753497000045 ], [ -123.76300949799996, 49.545607989000061 ], [ -123.763674912999988, 49.545703390000071 ], [ -123.764328891000034, 49.545995390000051 ], [ -123.764688220999957, 49.545992506000132 ], [ -123.764981794999983, 49.546297288000055 ], [ -123.765012391, 49.546485300000079 ], [ -123.76485130399999, 49.546738785000073 ], [ -123.764002188999939, 49.54726579600009 ], [ -123.763819097999942, 49.547950813000085 ], [ -123.763411386999962, 49.548349597000055 ], [ -123.763568810999971, 49.548823817000013 ], [ -123.760005280999977, 49.548750406000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "296092100", "BldgCostT": "202939602", "sL_LossRatio": "0.842705216226966", "sL_AssetLoss": "960426", "sL_BldgLoss": "809356", "sL_StrLoss": "445392", "sL_NStrLoss": "363964", "sL_ContLoss": "151070", "geom_point": "0101000020E61000006409741EFCF05EC04476ADD66CC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.755991412999947, 49.537016939000104 ], [ -123.757048571999974, 49.536650577000117 ], [ -123.757140037999974, 49.536618861000115 ], [ -123.757263350999935, 49.536412603000016 ], [ -123.757260511999988, 49.536272127000096 ], [ -123.757204511999987, 49.536144948000043 ], [ -123.757121768999951, 49.536085635000113 ], [ -123.756846758, 49.535972936000064 ], [ -123.756342878999973, 49.5358814350001 ], [ -123.755616343999918, 49.535851118000032 ], [ -123.755357549999957, 49.535774698000047 ], [ -123.755176139999975, 49.535670999000082 ], [ -123.755081955000023, 49.535561991000094 ], [ -123.755051567999899, 49.535449689000124 ], [ -123.755085160999954, 49.535325312000062 ], [ -123.755398984999928, 49.534980804000021 ], [ -123.755679087999965, 49.534788488000117 ], [ -123.75884260699992, 49.532627898000037 ], [ -123.759132001999944, 49.532386394000106 ], [ -123.760794399999938, 49.530125502000068 ], [ -123.758979309999987, 49.527711790000048 ], [ -123.757884089999948, 49.527483087000086 ], [ -123.756693003999956, 49.526356693000047 ], [ -123.756263900999969, 49.525949987000061 ], [ -123.756261265, 49.525949185000044 ], [ -123.756298357999952, 49.52518669800002 ], [ -123.756326840999918, 49.525187286000097 ], [ -123.756418362999909, 49.523305895000114 ], [ -123.757838386999964, 49.523335227000054 ], [ -123.757843209999976, 49.523236030000071 ], [ -123.761813602999936, 49.523317944000013 ], [ -123.761836070999948, 49.522854928000051 ], [ -123.762474698999966, 49.522868090000095 ], [ -123.762598786999916, 49.520310039000023 ], [ -123.767418057, 49.520409242000056 ], [ -123.767418589999949, 49.520398259000018 ], [ -123.768921059999968, 49.520429143000023 ], [ -123.76896117299998, 49.519599793000069 ], [ -123.76909917099999, 49.519602629000083 ], [ -123.769134908999931, 49.518863697000029 ], [ -123.769308035999956, 49.518867253000103 ], [ -123.76932762399997, 49.518462201000034 ], [ -123.773134752999951, 49.518540354000052 ], [ -123.773140672999929, 49.518417694000064 ], [ -123.77364125299998, 49.51842796000011 ], [ -123.773642153999944, 49.518409306000144 ], [ -123.773661989999965, 49.518409712000093 ], [ -123.77376740599999, 49.518740302000069 ], [ -123.774260516, 49.519339907000138 ], [ -123.775821368999971, 49.519892134000017 ], [ -123.775983196999917, 49.519949386000086 ], [ -123.77628878899999, 49.519992193000085 ], [ -123.776729608999943, 49.519916695000049 ], [ -123.776974601999953, 49.519754291000012 ], [ -123.777251979999917, 49.519788498000018 ], [ -123.777934018999986, 49.520080496000034 ], [ -123.778915996999942, 49.521036101000071 ], [ -123.779541483999949, 49.522165494000035 ], [ -123.779567821999962, 49.522876202000063 ], [ -123.779405818999976, 49.523111203 ], [ -123.778177414999973, 49.523226491000102 ], [ -123.777750790999974, 49.523356191000047 ], [ -123.777157888999938, 49.523368994000073 ], [ -123.777003904999987, 49.523341890000047 ], [ -123.776766611999932, 49.523146804000135 ], [ -123.776679495999929, 49.522886207000049 ], [ -123.776319323999985, 49.522834902000056 ], [ -123.775243912999883, 49.522967307000023 ], [ -123.774680285999949, 49.523142501000024 ], [ -123.773551011, 49.52332910800002 ], [ -123.77305910299999, 49.523665190000088 ], [ -123.772951378999934, 49.52397279500012 ], [ -123.772422892999927, 49.524615091000115 ], [ -123.771290806999943, 49.525485294000113 ], [ -123.770947194000016, 49.525623511000063 ], [ -123.770189595999938, 49.525744515000063 ], [ -123.769926507999941, 49.525931073000052 ], [ -123.769919235999978, 49.525930924000122 ], [ -123.76991897, 49.525936419000061 ], [ -123.76977978799998, 49.526035112000031 ], [ -123.769561401999923, 49.526288587000053 ], [ -123.769514314999967, 49.526765707000052 ], [ -123.76927398399999, 49.527262805000071 ], [ -123.768162605999933, 49.527863797000101 ], [ -123.767973402999985, 49.528080192000075 ], [ -123.767855503999954, 49.528530296000071 ], [ -123.767905117999973, 49.529043002000058 ], [ -123.767823197999959, 49.529124200000105 ], [ -123.767257713999982, 49.529147001000176 ], [ -123.767039598999972, 49.529292304000116 ], [ -123.766928869999973, 49.529395048 ], [ -123.766766402999934, 49.529545801000019 ], [ -123.766428906000016, 49.530068644000089 ], [ -123.765070093999952, 49.530040689000067 ], [ -123.765008010999978, 49.531321685000115 ], [ -123.76603802799994, 49.53134287700005 ], [ -123.765858891999969, 49.531656400000067 ], [ -123.765482682999959, 49.533251593000095 ], [ -123.764573594999902, 49.53432679400003 ], [ -123.764273391999964, 49.534581806000062 ], [ -123.7636554799999, 49.534819599000095 ], [ -123.763560917999925, 49.534927904000064 ], [ -123.763621205999982, 49.535305284000074 ], [ -123.763878402, 49.535743895000053 ], [ -123.764519494999917, 49.536062913000137 ], [ -123.764661810999968, 49.53635918700008 ], [ -123.765260291999979, 49.53657989000007 ], [ -123.765321992999986, 49.537002892000118 ], [ -123.765493020999926, 49.537245001000095 ], [ -123.765487076999989, 49.537367641000117 ], [ -123.759966689999914, 49.537253934000077 ], [ -123.759969265999956, 49.537200924000075 ], [ -123.758785449999962, 49.537176503000033 ], [ -123.758787355999942, 49.537137288000082 ], [ -123.758099128, 49.537123085000054 ], [ -123.758104471999957, 49.537013166000051 ], [ -123.757753458999929, 49.537005921000066 ], [ -123.757756979999925, 49.537233649000044 ], [ -123.755683982999926, 49.537247206000124 ], [ -123.755682082999925, 49.537124144000067 ], [ -123.755991412999947, 49.537016939000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24806719", "BldgCostT": "15820412", "sL_LossRatio": "0.712815542941529", "sL_AssetLoss": "216690", "sL_BldgLoss": "154460", "sL_StrLoss": "74796", "sL_NStrLoss": "79664", "sL_ContLoss": "62230", "geom_point": "0101000020E6100000D07C3108EAEF5EC0CA615A487EC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.74574176099999, 49.510596813000156 ], [ -123.745733558999945, 49.510057169000049 ], [ -123.746562299999979, 49.510051824000037 ], [ -123.746554087999968, 49.509512181000062 ], [ -123.746968454, 49.509509506000022 ], [ -123.74696801499999, 49.509480710000091 ], [ -123.74695201899999, 49.508430220000044 ], [ -123.748195090999943, 49.508422187000129 ], [ -123.748199205999967, 49.508692009000086 ], [ -123.749027924999936, 49.508686647000097 ], [ -123.749032044, 49.508956467000132 ], [ -123.750689488999939, 49.508945724000043 ], [ -123.750693618999961, 49.509215547000053 ], [ -123.751107980999961, 49.50921285700008 ], [ -123.75111211399999, 49.509482678000033 ], [ -123.751526478999949, 49.509479987000105 ], [ -123.751530611999939, 49.509749809000041 ], [ -123.751597858999972, 49.509749371000048 ], [ -123.751944980999951, 49.509747116000057 ], [ -123.751946232999899, 49.50982876400009 ], [ -123.751947537999953, 49.509913979000082 ], [ -123.753579755999979, 49.509947770000075 ], [ -123.753563760999896, 49.510276280000021 ], [ -123.753610741999935, 49.510275973000049 ], [ -123.753614886999941, 49.510545795000077 ], [ -123.754443635999948, 49.510540393000056 ], [ -123.75443948499999, 49.510270573000071 ], [ -123.755268230999945, 49.510265165000057 ], [ -123.75526407699999, 49.509995344000075 ], [ -123.75567844499993, 49.509992638 ], [ -123.755674937999956, 49.509764912000037 ], [ -123.755674289999902, 49.509722817000046 ], [ -123.757746124999954, 49.509709265000076 ], [ -123.757747117999912, 49.509773619000093 ], [ -123.757762796999927, 49.510788549000118 ], [ -123.755690914999931, 49.510802101000117 ], [ -123.75569414499995, 49.511011718000084 ], [ -123.755385097999948, 49.511018205000042 ], [ -123.754543193999922, 49.511105113000077 ], [ -123.75446310199996, 49.511349811000095 ], [ -123.753511184999965, 49.511356015000096 ], [ -123.753428118999977, 49.51306186700009 ], [ -123.753404610999937, 49.513544601000035 ], [ -123.74798090899999, 49.513432223000024 ], [ -123.747930044999933, 49.51447413400011 ], [ -123.742412440999942, 49.514359532000121 ], [ -123.742588444999967, 49.51076272200001 ], [ -123.745330732999918, 49.510819716000057 ], [ -123.745327386999946, 49.510599482000032 ], [ -123.74574176099999, 49.510596813000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10552833", "BldgCostT": "7068333", "sL_LossRatio": "0.740995402758345", "sL_AssetLoss": "50030", "sL_BldgLoss": "37072", "sL_StrLoss": "20137", "sL_NStrLoss": "16935", "sL_ContLoss": "12958", "geom_point": "0101000020E6100000D1544FE65FF05EC09D1638B087C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.758791985999949, 49.545491676000076 ], [ -123.75791025599996, 49.545410487000034 ], [ -123.757251241999967, 49.5454085880001 ], [ -123.755963227, 49.54512996400004 ], [ -123.754860513999972, 49.54514405500003 ], [ -123.75480453599999, 49.545144761000167 ], [ -123.75456270199993, 49.545147836000048 ], [ -123.753784787999948, 49.545091240000041 ], [ -123.753377224999952, 49.545033320000051 ], [ -123.753134856999935, 49.544959911000092 ], [ -123.752849649999959, 49.54480188300009 ], [ -123.753584230999962, 49.544018722000096 ], [ -123.75394959, 49.543409693000058 ], [ -123.753465600999945, 49.543277292000028 ], [ -123.753398998999927, 49.543169711000132 ], [ -123.751710693999911, 49.543475850000071 ], [ -123.75096911, 49.543496404000045 ], [ -123.750110085999921, 49.543520198000067 ], [ -123.751615334999926, 49.542400795000049 ], [ -123.751616608999953, 49.542400787000126 ], [ -123.751616594999916, 49.542399859000085 ], [ -123.751699405999929, 49.542338273000027 ], [ -123.753240328999979, 49.54215832600007 ], [ -123.753280875999906, 49.541850271000101 ], [ -123.753681525999966, 49.541847662000094 ], [ -123.753677376999917, 49.541577843000084 ], [ -123.754506648999936, 49.541572437000056 ], [ -123.754502495999972, 49.541302618000039 ], [ -123.75533176299993, 49.541297209000071 ], [ -123.755327603999916, 49.54102738800001 ], [ -123.755742236999964, 49.541024681000074 ], [ -123.755738074999954, 49.540754861000089 ], [ -123.757787121999939, 49.540741460000064 ], [ -123.757811221999972, 49.540741302000079 ], [ -123.75781539499998, 49.541011122000064 ], [ -123.758385076999943, 49.54100739000009 ], [ -123.7587163399999, 49.541372513000113 ], [ -123.75875526399993, 49.54141540400007 ], [ -123.758916004, 49.541775154000064 ], [ -123.758929188999986, 49.542072461000025 ], [ -123.758376479999981, 49.54321044700005 ], [ -123.758070698999987, 49.543958431000128 ], [ -123.758053198999946, 49.544120022000079 ], [ -123.758099426999948, 49.544305531000091 ], [ -123.758225097999926, 49.544476415000091 ], [ -123.758378591999929, 49.544587619000012 ], [ -123.758605420999942, 49.544697619000061 ], [ -123.758943718999888, 49.544787413000044 ], [ -123.760359998999945, 49.544983997000067 ], [ -123.760722009999967, 49.545126507000106 ], [ -123.760849119999975, 49.545211895000143 ], [ -123.760956221999919, 49.545368003000071 ], [ -123.760951218999949, 49.545471419000052 ], [ -123.758791985999949, 49.545491676000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147085417", "BldgCostT": "98511667", "sL_LossRatio": "0.806145064820718", "sL_AssetLoss": "494055", "sL_BldgLoss": "398280", "sL_StrLoss": "212146", "sL_NStrLoss": "186134", "sL_ContLoss": "95775", "geom_point": "0101000020E6100000845C365BB5EF5EC09524AEE794BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.746935093999923, 49.507318579000149 ], [ -123.746931477999979, 49.507081111000069 ], [ -123.74673883499996, 49.507082355000108 ], [ -123.746517131999923, 49.50708378500012 ], [ -123.74651189099994, 49.506739262000096 ], [ -123.746508920999958, 49.506544142000045 ], [ -123.746383358999978, 49.50654495200012 ], [ -123.746094579999962, 49.506546815000071 ], [ -123.746087755999952, 49.506098062000063 ], [ -123.74608637399993, 49.506007172000061 ], [ -123.746027885999951, 49.506007549000081 ], [ -123.745672035999959, 49.506009844000104 ], [ -123.74566512399997, 49.505555038000075 ], [ -123.74566383399997, 49.505470200000076 ], [ -123.745590927999956, 49.505470670000093 ], [ -123.74524950199995, 49.505472869000073 ], [ -123.745245402999956, 49.505203047000116 ], [ -123.744831073999961, 49.50520571600007 ], [ -123.744826976999946, 49.504935894 ], [ -123.744412649999987, 49.504938561000081 ], [ -123.744405808999957, 49.504487693000051 ], [ -123.744404462999952, 49.504398917000067 ], [ -123.744334360999929, 49.504399367000111 ], [ -123.743990138999948, 49.504401581000089 ], [ -123.743986245999949, 49.504144906000064 ], [ -123.742416261999921, 49.504112260000106 ], [ -123.742454360999972, 49.503546695000111 ], [ -123.74224174299998, 49.503540346000129 ], [ -123.742301251999905, 49.502324067000103 ], [ -123.742296103999976, 49.501983829000068 ], [ -123.742317906, 49.501983688000038 ], [ -123.742354044999942, 49.501245016000077 ], [ -123.741090801, 49.501218730000033 ], [ -123.741092598999927, 49.501182 ], [ -123.741040970999933, 49.501182330000091 ], [ -123.741033657999978, 49.500698053000065 ], [ -123.739541877999955, 49.500666991000038 ], [ -123.739569044999953, 49.500112356000095 ], [ -123.738040354999953, 49.500122119000082 ], [ -123.73789422399993, 49.499504985000065 ], [ -123.737848940999982, 49.499313795000077 ], [ -123.73960871099996, 49.49930255700005 ], [ -123.739718053999965, 49.497070114000032 ], [ -123.739925032999935, 49.4970744250001 ], [ -123.73992689, 49.497036488000106 ], [ -123.739879913999957, 49.49703550900005 ], [ -123.739927571999942, 49.496062333000097 ], [ -123.739720799999986, 49.496063656000075 ], [ -123.739724866999936, 49.496333479000079 ], [ -123.738141798999905, 49.496343591 ], [ -123.738067842999911, 49.496344064000056 ], [ -123.738063784999937, 49.496074240000027 ], [ -123.737649531999963, 49.496076882000033 ], [ -123.737637365999902, 49.495267414000061 ], [ -123.738051613999943, 49.495264772 ], [ -123.738047555999941, 49.494994948000084 ], [ -123.738461799, 49.494992305000032 ], [ -123.738457738999969, 49.494722482000043 ], [ -123.738871982999967, 49.494719837000048 ], [ -123.738867919999905, 49.494450014000108 ], [ -123.738453680999967, 49.494452660000029 ], [ -123.73844150199993, 49.493643191000089 ], [ -123.739269967000013, 49.493637899000049 ], [ -123.73926590399995, 49.493368077000063 ], [ -123.739680134999929, 49.493365429000036 ], [ -123.739676068999955, 49.49309560500005 ], [ -123.740090297, 49.493092957000016 ], [ -123.740086228999985, 49.492823134000041 ], [ -123.74091468, 49.492817831000089 ], [ -123.740894315999952, 49.491468717000103 ], [ -123.741308529999969, 49.491466063000118 ], [ -123.741305534999967, 49.49126770400008 ], [ -123.741304455999966, 49.491196241000075 ], [ -123.742528579999899, 49.491188390000111 ], [ -123.742556110999956, 49.490625467000044 ], [ -123.745231206999946, 49.490681091000113 ], [ -123.745273448999939, 49.489816331000085 ], [ -123.745424171999957, 49.48981946300006 ], [ -123.745459481999973, 49.489096533000044 ], [ -123.745630488999964, 49.4891000860001 ], [ -123.745731691999978, 49.487027835000056 ], [ -123.746982584999913, 49.48705381900001 ], [ -123.747022578999946, 49.486234400000065 ], [ -123.747455862999971, 49.48623274200002 ], [ -123.750618793999962, 49.48622057200005 ], [ -123.752741279999967, 49.486168352000092 ], [ -123.752126006999987, 49.486789603000034 ], [ -123.751993212999949, 49.487149891000101 ], [ -123.752027204999962, 49.487545812000057 ], [ -123.751594913999924, 49.488250792000073 ], [ -123.751765594999952, 49.488509991000051 ], [ -123.751521108999967, 49.48879058400005 ], [ -123.751524485999965, 49.489051193000101 ], [ -123.75104261, 49.489153799000086 ], [ -123.750395701999963, 49.490200593000075 ], [ -123.749770191999971, 49.490798695000066 ], [ -123.749691202999927, 49.491033705000071 ], [ -123.749251899999976, 49.491170401000055 ], [ -123.749102080999975, 49.491342793000051 ], [ -123.749063109999966, 49.491505085000043 ], [ -123.749245487999985, 49.491647508000021 ], [ -123.749218687999957, 49.491720201000085 ], [ -123.748916404999946, 49.491846903000052 ], [ -123.748520787999908, 49.49218300400004 ], [ -123.74811388399999, 49.493534597000078 ], [ -123.747871902, 49.493941907000099 ], [ -123.748049709000014, 49.494713893000068 ], [ -123.748023893, 49.49491181399999 ], [ -123.747819391999911, 49.49508419700004 ], [ -123.746977096999942, 49.495944392000105 ], [ -123.746720288999981, 49.496358801000099 ], [ -123.746134997999931, 49.49684021300007 ], [ -123.746057620999963, 49.497227598000073 ], [ -123.746258102999917, 49.497747384000085 ], [ -123.746826116999969, 49.497842898000023 ], [ -123.747106804999987, 49.498093502000103 ], [ -123.747897001999931, 49.498366990000072 ], [ -123.747750880999902, 49.498656092000076 ], [ -123.747218105999977, 49.499081907000132 ], [ -123.747194013999916, 49.499296996000105 ], [ -123.746746495999972, 49.499866709000081 ], [ -123.746697487999967, 49.500353708000105 ], [ -123.746953801999922, 49.500827994000133 ], [ -123.746617000999962, 49.50135209000004 ], [ -123.746440507999978, 49.501497388000089 ], [ -123.745695010999953, 49.501628386000064 ], [ -123.745204794999921, 49.502108395000043 ], [ -123.745222394999956, 49.502323400000108 ], [ -123.745629404999988, 49.502699402000111 ], [ -123.746169396999974, 49.502821905000104 ], [ -123.746918108, 49.502995692000134 ], [ -123.748164694999957, 49.502812297000027 ], [ -123.748131719999918, 49.503487982000088 ], [ -123.748127943999961, 49.503565353000091 ], [ -123.748535342999915, 49.503562716000054 ], [ -123.748539458999957, 49.503832539000044 ], [ -123.749855734999983, 49.503824016000031 ], [ -123.751881494999949, 49.503839366000122 ], [ -123.752737985999914, 49.504227602000128 ], [ -123.754165884999921, 49.505422500000108 ], [ -123.754369071999989, 49.505691677000129 ], [ -123.754373097, 49.505953434000041 ], [ -123.753958760999964, 49.505956134000073 ], [ -123.75396290799992, 49.506225956000037 ], [ -123.751062540999897, 49.506244821000109 ], [ -123.75106667099999, 49.506514643000031 ], [ -123.750652329999923, 49.506517332000087 ], [ -123.750656459999945, 49.506787154000108 ], [ -123.749827773000021, 49.506792527000052 ], [ -123.749831896999979, 49.507062349000087 ], [ -123.74900320799999, 49.50706771800003 ], [ -123.749007326999902, 49.507337539000069 ], [ -123.74817863199999, 49.507342901000072 ], [ -123.748182745999912, 49.507612723000058 ], [ -123.747304756999938, 49.507618397000087 ], [ -123.746939693999977, 49.507620755000083 ], [ -123.746935093999923, 49.507318579000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12428750", "BldgCostT": "8075000", "sL_LossRatio": "0.744346549192364", "sL_AssetLoss": "68100", "sL_BldgLoss": "50690", "sL_StrLoss": "27680", "sL_NStrLoss": "23010", "sL_ContLoss": "17410", "geom_point": "0101000020E6100000E2A49B8A75F05EC0148953F712C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.755682082999925, 49.537124144000067 ], [ -123.755679820999887, 49.536977386000039 ], [ -123.755265221999963, 49.536980092000107 ], [ -123.755264828999913, 49.536954518000101 ], [ -123.755124024999986, 49.536951608000081 ], [ -123.755126533999913, 49.536900078 ], [ -123.753935581999897, 49.536875457000079 ], [ -123.754335682999951, 49.533834668000068 ], [ -123.754003540999975, 49.532879960000095 ], [ -123.757276110999982, 49.532947587000088 ], [ -123.757275671999977, 49.532919247000073 ], [ -123.757282820999961, 49.53291920000003 ], [ -123.757359058999924, 49.531351641000143 ], [ -123.75843134499992, 49.531373778000017 ], [ -123.758509689999954, 49.529761974000124 ], [ -123.758390393999917, 49.529759511000087 ], [ -123.758435515999935, 49.528831205000088 ], [ -123.75612336699993, 49.528783454000134 ], [ -123.756261265, 49.525949185000044 ], [ -123.756263900999969, 49.525949987000061 ], [ -123.756693003999956, 49.526356693000047 ], [ -123.757884089999948, 49.527483087000086 ], [ -123.758979309999987, 49.527711790000048 ], [ -123.760794399999938, 49.530125502000068 ], [ -123.759132001999944, 49.532386394000106 ], [ -123.75884260699992, 49.532627898000037 ], [ -123.755679087999965, 49.534788488000117 ], [ -123.755398984999928, 49.534980804000021 ], [ -123.755085160999954, 49.535325312000062 ], [ -123.755051567999899, 49.535449689000124 ], [ -123.755081955000023, 49.535561991000094 ], [ -123.755176139999975, 49.535670999000082 ], [ -123.755357549999957, 49.535774698000047 ], [ -123.755616343999918, 49.535851118000032 ], [ -123.756342878999973, 49.5358814350001 ], [ -123.756846758, 49.535972936000064 ], [ -123.757121768999951, 49.536085635000113 ], [ -123.757204511999987, 49.536144948000043 ], [ -123.757260511999988, 49.536272127000096 ], [ -123.757263350999935, 49.536412603000016 ], [ -123.757140037999974, 49.536618861000115 ], [ -123.757048571999974, 49.536650577000117 ], [ -123.755991412999947, 49.537016939000104 ], [ -123.755682082999925, 49.537124144000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126954387", "BldgCostT": "82847080", "sL_LossRatio": "0.812971263592624", "sL_AssetLoss": "641294.5", "sL_BldgLoss": "521354", "sL_StrLoss": "315947", "sL_NStrLoss": "205407", "sL_ContLoss": "119940.5", "geom_point": "0101000020E61000001F76A586B2EF5EC0ED1DFB7ABABC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.749870587999908, 49.483585252000054 ], [ -123.749923212999974, 49.482505513000035 ], [ -123.74987100599999, 49.482505851000084 ], [ -123.749866884999918, 49.482236028000067 ], [ -123.749038613999971, 49.482241396000092 ], [ -123.749018033999945, 49.480892281000131 ], [ -123.74943215899998, 49.480889599000086 ], [ -123.74942392199992, 49.480349953000079 ], [ -123.749009801999975, 49.48035263600012 ], [ -123.749001571999912, 49.479812989000052 ], [ -123.747759224999953, 49.479821028000025 ], [ -123.747746899999981, 49.479011559000099 ], [ -123.747332789999959, 49.479014235000129 ], [ -123.747320471999913, 49.478204766 ], [ -123.749390980999976, 49.47819137000009 ], [ -123.749378629999967, 49.477381901000037 ], [ -123.748550439999946, 49.477387264000114 ], [ -123.748546327000014, 49.477117442000022 ], [ -123.746889954999972, 49.477128148000119 ], [ -123.746898161999965, 49.477667794000119 ], [ -123.745241771999986, 49.47767847900014 ], [ -123.745245865999948, 49.477948302000136 ], [ -123.744417665999961, 49.477953634000094 ], [ -123.744442207999953, 49.479572573000048 ], [ -123.743199864999895, 49.479580562000073 ], [ -123.74319578199993, 49.479310739000091 ], [ -123.742781670999989, 49.479313399000027 ], [ -123.742777588999928, 49.479043576000045 ], [ -123.742363478999977, 49.479046234000045 ], [ -123.742359399999899, 49.478776411000098 ], [ -123.741531184999971, 49.478781723000026 ], [ -123.741527109999964, 49.478511900000079 ], [ -123.741113005, 49.478514553000082 ], [ -123.741108933999897, 49.478244731000053 ], [ -123.740694831, 49.478247383000067 ], [ -123.740690760999911, 49.477977560000078 ], [ -123.740276660999911, 49.477980211 ], [ -123.740272592999943, 49.477710387000101 ], [ -123.739444395999953, 49.477715684000017 ], [ -123.739440332999919, 49.477445861000064 ], [ -123.738198042999969, 49.477453795000059 ], [ -123.738193988999953, 49.477183972000056 ], [ -123.73736579899996, 49.477189255000013 ], [ -123.737353646999964, 49.476379783000077 ], [ -123.736939557999946, 49.476382422000036 ], [ -123.736911217999989, 49.474493656000078 ], [ -123.73649714799997, 49.474496293000058 ], [ -123.736485008999935, 49.47368682200009 ], [ -123.739383462999953, 49.473668330000123 ], [ -123.739391585999968, 49.474207977000049 ], [ -123.744189567999953, 49.474177208000086 ], [ -123.744213615999939, 49.473684972000079 ], [ -123.743684596000023, 49.473673968000071 ], [ -123.743687228999974, 49.473620077000056 ], [ -123.743191180999958, 49.473609756 ], [ -123.743199557999958, 49.47343838000009 ], [ -123.742452663999956, 49.473422836000076 ], [ -123.742456434999937, 49.47334571800009 ], [ -123.739741170999963, 49.473289166 ], [ -123.739754824000016, 49.47301024700004 ], [ -123.739529979999972, 49.473005561000051 ], [ -123.739545565999961, 49.472687155000102 ], [ -123.739257690000017, 49.472681155000046 ], [ -123.739270527, 49.472418957000066 ], [ -123.738996696999948, 49.472413248000102 ], [ -123.739009699999926, 49.472147684000099 ], [ -123.738686300999987, 49.472140941000113 ], [ -123.738698805999888, 49.471885580000077 ], [ -123.738524111999979, 49.47188193700002 ], [ -123.738540155999885, 49.471554339000086 ], [ -123.738338524999989, 49.471550134000047 ], [ -123.738359789999919, 49.471115951000108 ], [ -123.73799413899998, 49.471108325000031 ], [ -123.73801463699999, 49.470689854000071 ], [ -123.737989363999958, 49.47068932700008 ], [ -123.738012984999941, 49.470207124000041 ], [ -123.737936391999952, 49.470205526 ], [ -123.738089642999952, 49.467076746000068 ], [ -123.738079689999935, 49.467076538000136 ], [ -123.738098262999969, 49.466697330000066 ], [ -123.737839503999979, 49.466691932000067 ], [ -123.73786695499993, 49.46613152200019 ], [ -123.736785446999988, 49.466108955000024 ], [ -123.736814076999948, 49.468017880000062 ], [ -123.735206335999948, 49.468028110000056 ], [ -123.735148716, 49.467407448000102 ], [ -123.735137820999952, 49.466679296000045 ], [ -123.735042028999914, 49.466679905000056 ], [ -123.734877012999959, 49.464521799000131 ], [ -123.735156071999967, 49.464514824000091 ], [ -123.736066284999964, 49.464492092000128 ], [ -123.737057946999983, 49.46449133200008 ], [ -123.739392018999979, 49.464489508000099 ], [ -123.739845934999963, 49.464488789000079 ], [ -123.740157596999907, 49.464488295000109 ], [ -123.740535869, 49.464487934000076 ], [ -123.740695498999955, 49.464487812000051 ], [ -123.742746728999933, 49.464485505000127 ], [ -123.743287890999966, 49.464381608000032 ], [ -123.743490481999956, 49.464519200000083 ], [ -123.743437518999897, 49.464718602000062 ], [ -123.743052964999904, 49.464968083000016 ], [ -123.742877695999979, 49.465081806000022 ], [ -123.742688907999977, 49.465316789000035 ], [ -123.742232800999986, 49.466282407000023 ], [ -123.742242200999954, 49.46684919400014 ], [ -123.742956395999926, 49.469379996000043 ], [ -123.743296506999954, 49.469899889000011 ], [ -123.74417160699997, 49.470335689000102 ], [ -123.744986117999957, 49.470357004000057 ], [ -123.745063523999974, 49.469978202000064 ], [ -123.745287001999941, 49.470093585000029 ], [ -123.745360100999946, 49.470489492000098 ], [ -123.745584080999933, 49.470667494000111 ], [ -123.746369630999965, 49.470730449000087 ], [ -123.748499499, 49.470901100000056 ], [ -123.748954219, 49.470905710000103 ], [ -123.751178110999945, 49.470928198000117 ], [ -123.753408290999914, 49.470753706000075 ], [ -123.753505979999943, 49.470908485000074 ], [ -123.753498993999983, 49.471309364000042 ], [ -123.753474400999934, 49.47271989900004 ], [ -123.753474916999949, 49.473389588000074 ], [ -123.753344634999934, 49.473458888000025 ], [ -123.75344395, 49.474088512000066 ], [ -123.753460621, 49.474194019000045 ], [ -123.753460245000014, 49.474244338000055 ], [ -123.753454658999942, 49.475035565000049 ], [ -123.751765846999945, 49.4754209520001 ], [ -123.75149079599997, 49.475943314000119 ], [ -123.750520770999969, 49.476161368000135 ], [ -123.750638296999938, 49.476560074000133 ], [ -123.750889275999953, 49.47707221600011 ], [ -123.751080968999929, 49.477526438000069 ], [ -123.751735659999937, 49.477480233000023 ], [ -123.753438215999935, 49.477360050000037 ], [ -123.753429441999941, 49.478605960000074 ], [ -123.753411988999957, 49.480155702000076 ], [ -123.753410424, 49.48019893200005 ], [ -123.753408802999928, 49.480242153000141 ], [ -123.753407218999939, 49.480285362000096 ], [ -123.75340563499995, 49.480328569000058 ], [ -123.75340407099999, 49.480371799000046 ], [ -123.753402486999974, 49.480415007000076 ], [ -123.753400900999949, 49.480458215000034 ], [ -123.753400739999933, 49.480462147000026 ], [ -123.753399335000012, 49.480501445000073 ], [ -123.753398165999954, 49.480532561000075 ], [ -123.753396600999935, 49.48057579200011 ], [ -123.753394982999964, 49.480619012000055 ], [ -123.753393396999911, 49.480662220000028 ], [ -123.753392439, 49.480690589000119 ], [ -123.753406069999954, 49.480849248000027 ], [ -123.753419793, 49.481007962000106 ], [ -123.753430575999943, 49.481133474000075 ], [ -123.752749287999961, 49.481137909000047 ], [ -123.752754785999983, 49.481496497000123 ], [ -123.752514607999927, 49.481596900000113 ], [ -123.75241792599995, 49.481679764000098 ], [ -123.752343430999957, 49.481680249000057 ], [ -123.752344389999934, 49.481742788000069 ], [ -123.752323503999975, 49.481760689000048 ], [ -123.752205488999977, 49.482058294000097 ], [ -123.752228810999966, 49.482732007000081 ], [ -123.752645592999926, 49.482954187000061 ], [ -123.753366209999982, 49.483066685000054 ], [ -123.753377759999964, 49.48307292000009 ], [ -123.753727798999961, 49.483261791000075 ], [ -123.754036300999957, 49.48363348100002 ], [ -123.754107297999951, 49.483719008000037 ], [ -123.754073392999913, 49.484150502000027 ], [ -123.753423505999976, 49.485063383000067 ], [ -123.753017164999932, 49.485824328000078 ], [ -123.752941297999939, 49.485966400000073 ], [ -123.752741279999967, 49.486168352000092 ], [ -123.750618793999962, 49.48622057200005 ], [ -123.747455862999971, 49.48623274200002 ], [ -123.747022578999946, 49.486234400000065 ], [ -123.747076947999972, 49.485120362000039 ], [ -123.749229977999974, 49.485165053000053 ], [ -123.749256487999958, 49.484621315000084 ], [ -123.749489189999977, 49.484626142000089 ], [ -123.749473340999899, 49.483587825000093 ], [ -123.749870587999908, 49.483585252000054 ] ], [ [ -123.74316311599992, 49.477152153000162 ], [ -123.743150865999979, 49.476342683000034 ], [ -123.742736780999977, 49.476345342000045 ], [ -123.742728617999958, 49.475805695000076 ], [ -123.74231453699997, 49.475808354000058 ], [ -123.742310458999924, 49.475538530000115 ], [ -123.74189637899994, 49.475541187000019 ], [ -123.741888226999919, 49.4750015400001 ], [ -123.741060074999922, 49.475006849000081 ], [ -123.741068217999967, 49.475546496000042 ], [ -123.74065413699995, 49.475549147 ], [ -123.740670413999922, 49.476628442000091 ], [ -123.741498592999918, 49.476623136000043 ], [ -123.741502666999978, 49.476892960000036 ], [ -123.742330850999963, 49.476887648000044 ], [ -123.742334926999945, 49.477157470000066 ], [ -123.74316311599992, 49.477152153000162 ] ], [ [ -123.74477515299999, 49.474217787000015 ], [ -123.744790845999916, 49.475252736000115 ], [ -123.745204922999974, 49.47525006899999 ], [ -123.745209017999983, 49.475519892000101 ], [ -123.745623097999967, 49.475517224000086 ], [ -123.745627192999947, 49.47578704700004 ], [ -123.746058824999935, 49.475784264000033 ], [ -123.746084211999943, 49.475264181000028 ], [ -123.745411963, 49.475250209000102 ], [ -123.74542736299999, 49.474934819000119 ], [ -123.745219874999947, 49.474930505000017 ], [ -123.745233496999901, 49.474651576000035 ], [ -123.745008586, 49.474646901000014 ], [ -123.745029283999898, 49.47422307100004 ], [ -123.74477515299999, 49.474217787000015 ] ], [ [ -123.748109860999932, 49.47401014400004 ], [ -123.747812019999927, 49.474780840000044 ], [ -123.747669880000018, 49.475047397000075 ], [ -123.748031473999959, 49.475161281000055 ], [ -123.748393088999975, 49.475275186000033 ], [ -123.74947693699994, 49.475616494000093 ], [ -123.749754042999939, 49.474983335000033 ], [ -123.749182198999961, 49.474911686000119 ], [ -123.749169240999919, 49.474352606000068 ], [ -123.748854716999958, 49.474295666000081 ], [ -123.748385376999934, 49.474216617000074 ], [ -123.74821837599994, 49.474091482000077 ], [ -123.748109860999932, 49.47401014400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.773381294964029", "sL_AssetLoss": "5560", "sL_BldgLoss": "4300", "sL_StrLoss": "2310", "sL_NStrLoss": "1990", "sL_ContLoss": "1260", "geom_point": "0101000020E6100000CA42A6421DEF5EC0CDBAD2746EBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.735640714999931, 49.472612794999989 ], [ -123.735636672999959, 49.472342972000028 ], [ -123.73553889599999, 49.472343593000076 ], [ -123.735541452999954, 49.471638129000034 ], [ -123.735541527999899, 49.471637896000068 ], [ -123.735506840999932, 49.471264398000088 ], [ -123.735620509999976, 49.471263675000067 ], [ -123.735624550999887, 49.47153349900001 ], [ -123.73603859799999, 49.471530865000041 ], [ -123.736042640999941, 49.471800690000109 ], [ -123.736870738999926, 49.471795416000056 ], [ -123.736882880999957, 49.472604888 ], [ -123.735640714999931, 49.472612794999989 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "698911453", "BldgCostT": "406878500", "sL_LossRatio": "0.647351692179791", "sL_AssetLoss": "3063188.1", "sL_BldgLoss": "1982960", "sL_StrLoss": "800630", "sL_NStrLoss": "1182330", "sL_ContLoss": "1080228.1", "geom_point": "0101000020E61000001D3FB9D87AF05EC0F4D5AD5CF7BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.753429441999941, 49.478605960000074 ], [ -123.753438215999935, 49.477360050000037 ], [ -123.751735659999937, 49.477480233000023 ], [ -123.751080968999929, 49.477526438000069 ], [ -123.750889275999953, 49.47707221600011 ], [ -123.750638296999938, 49.476560074000133 ], [ -123.750520770999969, 49.476161368000135 ], [ -123.75149079599997, 49.475943314000119 ], [ -123.751765846999945, 49.4754209520001 ], [ -123.753454658999942, 49.475035565000049 ], [ -123.753460245000014, 49.474244338000055 ], [ -123.753460621, 49.474194019000045 ], [ -123.753770982999953, 49.474195059000103 ], [ -123.753969289999986, 49.474145165000088 ], [ -123.754541584999956, 49.474150709000085 ], [ -123.755460004000014, 49.474158892000034 ], [ -123.756320502999955, 49.474166798000056 ], [ -123.756333285999943, 49.473278600000121 ], [ -123.759098513, 49.473295293000049 ], [ -123.759090492999974, 49.473744783 ], [ -123.762831116999919, 49.473799147000079 ], [ -123.76282930099994, 49.474224806000052 ], [ -123.762810463, 49.475126313000068 ], [ -123.762799988999959, 49.475626592000083 ], [ -123.762782994999966, 49.476404910000099 ], [ -123.763396787999937, 49.476408504000034 ], [ -123.763420711999984, 49.476811326000053 ], [ -123.763424887999946, 49.476881712000093 ], [ -123.763449295999962, 49.476928230000063 ], [ -123.76357365199999, 49.477165068000055 ], [ -123.763712884999933, 49.477430403000028 ], [ -123.763757197999894, 49.477490942000024 ], [ -123.763771080999959, 49.477509903000083 ], [ -123.763794616999931, 49.477793999000085 ], [ -123.763169391999924, 49.478310397000051 ], [ -123.763134494, 49.478310037000078 ], [ -123.762264866999956, 49.478301136000042 ], [ -123.761450121999985, 49.478292786000047 ], [ -123.760136986999896, 49.478279301000107 ], [ -123.75961666799999, 49.478295326000136 ], [ -123.758999685, 49.478314291000068 ], [ -123.758856258999941, 49.478322313 ], [ -123.75850580499997, 49.47834187900007 ], [ -123.758039980999953, 49.478388090000102 ], [ -123.757330214999939, 49.478458993000018 ], [ -123.756736789999962, 49.478687911000073 ], [ -123.756102515999928, 49.478935900000103 ], [ -123.754337373999959, 49.479709497000044 ], [ -123.753411988999957, 49.480155702000076 ], [ -123.753429441999941, 49.478605960000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160891912", "BldgCostT": "101075744", "sL_LossRatio": "0.764670208456349", "sL_AssetLoss": "625766.5", "sL_BldgLoss": "478505", "sL_StrLoss": "278506", "sL_NStrLoss": "199999", "sL_ContLoss": "147261.5", "geom_point": "0101000020E610000001B37C3CF8F05EC05643552B17BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.771349855999986, 49.493570520000056 ], [ -123.771277484, 49.491925389000137 ], [ -123.770313950999977, 49.491949332000083 ], [ -123.770312734999948, 49.491871909000068 ], [ -123.76911310199992, 49.491847251000067 ], [ -123.768670544999949, 49.491176533000079 ], [ -123.768262922999924, 49.489894801000119 ], [ -123.767489412999964, 49.489569275000058 ], [ -123.76719155799999, 49.489443926000021 ], [ -123.767279523999903, 49.489091101000056 ], [ -123.76755168499993, 49.488847599000096 ], [ -123.767574611999919, 49.488451608000055 ], [ -123.76747015799999, 49.48819683300011 ], [ -123.767287314999948, 49.48775089 ], [ -123.767760582999983, 49.486318205000046 ], [ -123.767490980999966, 49.485752800000078 ], [ -123.76723651199994, 49.4854664980001 ], [ -123.766416894999907, 49.485032112000098 ], [ -123.764348293999916, 49.484290106000095 ], [ -123.763081412, 49.483740302000093 ], [ -123.762725904999968, 49.483868509000075 ], [ -123.762242911999934, 49.48378094100012 ], [ -123.762272328000037, 49.483174082000055 ], [ -123.761477815999982, 49.483157691 ], [ -123.761455874999939, 49.483610151000107 ], [ -123.759801410999941, 49.483096585000069 ], [ -123.759242112, 49.482659409000142 ], [ -123.758449800999983, 49.482394492000083 ], [ -123.758127293999976, 49.482036996000133 ], [ -123.75809895899998, 49.482041748000029 ], [ -123.757796319999954, 49.4820925000001 ], [ -123.75713321099991, 49.482007106000069 ], [ -123.756979608999984, 49.48185610400008 ], [ -123.756862811999952, 49.480659796000054 ], [ -123.756696986999913, 49.48056290700012 ], [ -123.755662713999982, 49.480649792000058 ], [ -123.75346190499999, 49.481216263000121 ], [ -123.753440295999951, 49.481133411000023 ], [ -123.753430575999943, 49.481133474000075 ], [ -123.753419793, 49.481007962000106 ], [ -123.753406069999954, 49.480849248000027 ], [ -123.753392439, 49.480690589000119 ], [ -123.753393396999911, 49.480662220000028 ], [ -123.753394982999964, 49.480619012000055 ], [ -123.753396600999935, 49.48057579200011 ], [ -123.753398165999954, 49.480532561000075 ], [ -123.753399335000012, 49.480501445000073 ], [ -123.753400739999933, 49.480462147000026 ], [ -123.753400900999949, 49.480458215000034 ], [ -123.753402486999974, 49.480415007000076 ], [ -123.75340407099999, 49.480371799000046 ], [ -123.75340563499995, 49.480328569000058 ], [ -123.753407218999939, 49.480285362000096 ], [ -123.753408802999928, 49.480242153000141 ], [ -123.753410424, 49.48019893200005 ], [ -123.753411988999957, 49.480155702000076 ], [ -123.754337373999959, 49.479709497000044 ], [ -123.756102515999928, 49.478935900000103 ], [ -123.756736789999962, 49.478687911000073 ], [ -123.757330214999939, 49.478458993000018 ], [ -123.758039980999953, 49.478388090000102 ], [ -123.75850580499997, 49.47834187900007 ], [ -123.758856258999941, 49.478322313 ], [ -123.758999685, 49.478314291000068 ], [ -123.75961666799999, 49.478295326000136 ], [ -123.760136986999896, 49.478279301000107 ], [ -123.760442505999919, 49.478579983000067 ], [ -123.760569521999955, 49.478662697000111 ], [ -123.760659050999934, 49.478705885000096 ], [ -123.761556408999979, 49.479138598000077 ], [ -123.76169828699993, 49.479219055000051 ], [ -123.762261422999956, 49.479538403000021 ], [ -123.76270209299993, 49.480395925000067 ], [ -123.762706513999973, 49.480404501000031 ], [ -123.762991592999981, 49.480698403000112 ], [ -123.763716102999965, 49.481352499000074 ], [ -123.763352044999948, 49.481589049000014 ], [ -123.762992393999951, 49.481822701000112 ], [ -123.762972580999971, 49.48197438600009 ], [ -123.763154989999947, 49.482241716000075 ], [ -123.763467291999959, 49.482699391 ], [ -123.764227699999964, 49.483095809000098 ], [ -123.764596903999958, 49.483251894000013 ], [ -123.76486699699997, 49.483315998000101 ], [ -123.765349219999948, 49.483388009000109 ], [ -123.765562783999897, 49.483451906000035 ], [ -123.766382904999972, 49.484039406000129 ], [ -123.766560981999973, 49.484125048000053 ], [ -123.766596011999965, 49.484141885000021 ], [ -123.76724238499996, 49.484272310000094 ], [ -123.767670888999959, 49.484314401000098 ], [ -123.76926262099991, 49.484313037000042 ], [ -123.769561387999886, 49.484312794000111 ], [ -123.770541697999931, 49.484301389000095 ], [ -123.770564096999976, 49.485354980000047 ], [ -123.770584711999973, 49.486324882000055 ], [ -123.770588613, 49.486530190000046 ], [ -123.77060893, 49.487441558000093 ], [ -123.770611719999962, 49.487565897000117 ], [ -123.770618220999935, 49.48792722600011 ], [ -123.770627780000012, 49.488460002000089 ], [ -123.771302291999945, 49.488462027000033 ], [ -123.77437269899994, 49.488471191000066 ], [ -123.774325798999925, 49.488670999000107 ], [ -123.774210995999979, 49.488760390000053 ], [ -123.774049046999934, 49.488813964 ], [ -123.773762292999947, 49.488908811000059 ], [ -123.773539206999942, 49.489013992000089 ], [ -123.773330004999963, 49.489201391000115 ], [ -123.77322119199998, 49.489455692000035 ], [ -123.773240500999975, 49.489995890000067 ], [ -123.77325175, 49.490310595000068 ], [ -123.773279902999903, 49.491098785000069 ], [ -123.773251777999974, 49.491909197000084 ], [ -123.77334210799998, 49.493614101000091 ], [ -123.773263323999913, 49.4937313060001 ], [ -123.772749722999919, 49.494164492000067 ], [ -123.772010907999942, 49.494257388000072 ], [ -123.77137930499994, 49.494247140000013 ], [ -123.771358892999928, 49.493778343000081 ], [ -123.771349855999986, 49.493570520000056 ] ], [ [ -123.771464659999978, 49.491538731000041 ], [ -123.771486420999935, 49.491088024000106 ], [ -123.77078065399995, 49.491073525000019 ], [ -123.770763029999927, 49.491438435000077 ], [ -123.770510807999983, 49.491433252000057 ], [ -123.77050540499999, 49.491545124000019 ], [ -123.771464659999978, 49.491538731000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.93123043979575", "sL_AssetLoss": "12142", "sL_BldgLoss": "11307", "sL_StrLoss": "9200", "sL_NStrLoss": "2107", "sL_ContLoss": "835", "geom_point": "0101000020E61000002DE411DC08F15EC02500E6F709BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.764555809999933, 49.492365398000047 ], [ -123.764541141, 49.49199914400009 ], [ -123.76454099599998, 49.491995514000081 ], [ -123.76450971899996, 49.49121459800007 ], [ -123.764516352999976, 49.491173278000055 ], [ -123.764620750999967, 49.490521666000049 ], [ -123.765050551999977, 49.490901987000015 ], [ -123.765714562999946, 49.492130678000095 ], [ -123.768023703999987, 49.492028861000094 ], [ -123.767948640999975, 49.493581098000028 ], [ -123.766545871999966, 49.493552234000077 ], [ -123.766576616999927, 49.493521802000025 ], [ -123.765245214999936, 49.493180004000102 ], [ -123.764672209999929, 49.492751310000145 ], [ -123.764555809999933, 49.492365398000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76631500", "BldgCostT": "51850000", "sL_LossRatio": "0.848820927641035", "sL_AssetLoss": "377797", "sL_BldgLoss": "320682", "sL_StrLoss": "215067", "sL_NStrLoss": "105615", "sL_ContLoss": "57115", "geom_point": "0101000020E6100000A2970F1025F35EC038A40F65C1BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.800277878999907, 49.489125412000071 ], [ -123.800313667999944, 49.48837439200004 ], [ -123.800082377999971, 49.488375992000066 ], [ -123.800079094999958, 49.488174608000023 ], [ -123.799669314999974, 49.488166299000049 ], [ -123.799672047999977, 49.488108980000113 ], [ -123.798835437999941, 49.488114759000027 ], [ -123.798816812999959, 49.486970105000097 ], [ -123.798026027999967, 49.486954058 ], [ -123.798047633999929, 49.486501100000098 ], [ -123.797980762999941, 49.486501561000139 ], [ -123.797976375999923, 49.486231742000044 ], [ -123.79673388099998, 49.486240307000124 ], [ -123.796729502999966, 49.485970486000056 ], [ -123.796315339999964, 49.485973339000047 ], [ -123.796306198999957, 49.485409735000054 ], [ -123.794570893999946, 49.485374472000032 ], [ -123.794683551999981, 49.48301621300002 ], [ -123.793782375999967, 49.483022401 ], [ -123.793779638, 49.482853039000055 ], [ -123.793088773999941, 49.482838987 ], [ -123.793008722999971, 49.484513506000098 ], [ -123.787494586999969, 49.48440118900006 ], [ -123.787561873999891, 49.482997191000095 ], [ -123.787444170999976, 49.482994792000028 ], [ -123.787461511999965, 49.482632948000102 ], [ -123.787419492999959, 49.482632091 ], [ -123.787432469999956, 49.482361336000046 ], [ -123.788629747999977, 49.482337418000043 ], [ -123.789785411999915, 49.482314309000074 ], [ -123.790372248999986, 49.482337355000055 ], [ -123.790739786999936, 49.48235179200001 ], [ -123.791348486999965, 49.482339480000107 ], [ -123.792611224999973, 49.482313895000082 ], [ -123.792625121999933, 49.482313595000051 ], [ -123.792922555999922, 49.482335681000109 ], [ -123.792959186999909, 49.482338407000022 ], [ -123.796285210999912, 49.482236791000034 ], [ -123.796349162999917, 49.47872937700005 ], [ -123.79792806499999, 49.478709363000057 ], [ -123.801805090999963, 49.478660103000031 ], [ -123.802571818999979, 49.478638704000048 ], [ -123.80249780199992, 49.476860282000054 ], [ -123.802097883999963, 49.476797302000087 ], [ -123.801740212, 49.47677739800011 ], [ -123.801716505999963, 49.47605779200007 ], [ -123.803239794999968, 49.47648009900017 ], [ -123.803289196999955, 49.476493811000083 ], [ -123.803580122999932, 49.476613101000034 ], [ -123.803898262999937, 49.476780407000014 ], [ -123.80450747399999, 49.477100744000019 ], [ -123.804561128999936, 49.477128965000134 ], [ -123.804621620999981, 49.477160758000082 ], [ -123.805241079999959, 49.477486502000048 ], [ -123.805388409000017, 49.477543483000098 ], [ -123.80563398799994, 49.477638508000076 ], [ -123.806366663999938, 49.477959447000053 ], [ -123.806414410999977, 49.477980386000119 ], [ -123.807113909999941, 49.47828679800012 ], [ -123.807159300999956, 49.478493908000047 ], [ -123.807327489999963, 49.479454092000076 ], [ -123.807385742999941, 49.480273454000056 ], [ -123.807389455999925, 49.480325827000108 ], [ -123.807412696999918, 49.480652995000177 ], [ -123.807407525999963, 49.481023843000109 ], [ -123.807232939999935, 49.481020314 ], [ -123.80724480799995, 49.480770434000107 ], [ -123.806585168999959, 49.480775036000068 ], [ -123.806560636999933, 49.479281509000025 ], [ -123.80485269, 49.479246959000129 ], [ -123.804780275999946, 49.480769992000042 ], [ -123.80684725199994, 49.480811801000122 ], [ -123.806793713999966, 49.481938788000086 ], [ -123.804382909999987, 49.48218681 ], [ -123.80360668499992, 49.482210131000059 ], [ -123.80311170600001, 49.482225003000067 ], [ -123.802281399999941, 49.482227024000125 ], [ -123.801926318999932, 49.482227902000069 ], [ -123.802002530999971, 49.483503387000049 ], [ -123.802029409999975, 49.483952852000051 ], [ -123.802047682999913, 49.484258565000118 ], [ -123.802091213999944, 49.48498652000012 ], [ -123.802142902999933, 49.485850906000039 ], [ -123.802167342999923, 49.486362611000118 ], [ -123.80223482299999, 49.487776304000057 ], [ -123.802244674999912, 49.487927629000076 ], [ -123.80229813599999, 49.488745825000116 ], [ -123.802325646999975, 49.489166909000055 ], [ -123.800277878999907, 49.489125412000071 ] ], [ [ -123.797314465999989, 49.480318463000124 ], [ -123.797315364999974, 49.480299604000088 ], [ -123.796621317999978, 49.480304385000061 ], [ -123.797314465999989, 49.480318463000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564166", "BldgCostT": "5216666", "sL_LossRatio": "0.840698762607882", "sL_AssetLoss": "38468", "sL_BldgLoss": "32340", "sL_StrLoss": "19720", "sL_NStrLoss": "12620", "sL_ContLoss": "6128", "geom_point": "0101000020E6100000E7962DC4B0F25EC06C4AAA9DFEBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.792849345999983, 49.502188104000034 ], [ -123.792810108999944, 49.499759733000133 ], [ -123.788253030999954, 49.499790874000077 ], [ -123.788246228999981, 49.499367390000074 ], [ -123.788240028999965, 49.498981415000074 ], [ -123.788654301999927, 49.498978591000117 ], [ -123.788649964999976, 49.498708772000043 ], [ -123.793206943999948, 49.49867761600008 ], [ -123.793217623999951, 49.499338385000115 ], [ -123.793220026999947, 49.499487074000079 ], [ -123.793751577999913, 49.499483427000079 ], [ -123.79404858099997, 49.499481389000032 ], [ -123.794052946999898, 49.499751209000102 ], [ -123.794467227, 49.499748364000034 ], [ -123.79450217599999, 49.501906916000053 ], [ -123.794087876999981, 49.501909761000014 ], [ -123.794092245999977, 49.502179580000089 ], [ -123.793774878999926, 49.50218175700013 ], [ -123.792849345999983, 49.502188104000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20918500", "BldgCostT": "13930000", "sL_LossRatio": "0.748723102986169", "sL_AssetLoss": "126556.8", "sL_BldgLoss": "94756", "sL_StrLoss": "56616", "sL_NStrLoss": "38140", "sL_ContLoss": "31800.8", "geom_point": "0101000020E610000079EA910637F35EC0B891F46124BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.800271063999944, 49.495849395000107 ], [ -123.800279697999912, 49.495668266000038 ], [ -123.799352742999986, 49.495649472000096 ], [ -123.79938081100002, 49.495060789000085 ], [ -123.79729740399992, 49.495018518000073 ], [ -123.79746905899998, 49.491421519000099 ], [ -123.800372831999979, 49.491480425000141 ], [ -123.800423597999952, 49.490415090000077 ], [ -123.802409813999986, 49.490455337000064 ], [ -123.802421466999988, 49.490633734 ], [ -123.802539488999955, 49.492440791000014 ], [ -123.802560663999955, 49.492764709000063 ], [ -123.802581223999965, 49.493079070000121 ], [ -123.802655492999946, 49.4942161990001 ], [ -123.80264917699995, 49.494313795000096 ], [ -123.802635756999919, 49.494520191000028 ], [ -123.802614178999974, 49.494852588000107 ], [ -123.802719437999926, 49.495898999000133 ], [ -123.800271063999944, 49.495849395000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93706917", "BldgCostT": "63416667", "sL_LossRatio": "0.818267743410559", "sL_AssetLoss": "457057", "sL_BldgLoss": "373995", "sL_StrLoss": "236053", "sL_NStrLoss": "137942", "sL_ContLoss": "83062", "geom_point": "0101000020E6100000E67CEBA2ECF15EC0A1AFDEB006C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.791287876999917, 49.50813546800007 ], [ -123.79128352599993, 49.507865648000056 ], [ -123.790454827999952, 49.507871315000074 ], [ -123.790450479999961, 49.507601495000088 ], [ -123.790036135999955, 49.507604326000106 ], [ -123.790031788999954, 49.507334507000046 ], [ -123.787960070999986, 49.50734863600006 ], [ -123.787951402, 49.506808998000118 ], [ -123.787537062, 49.506811819000077 ], [ -123.787541392999955, 49.507081638000024 ], [ -123.787127052999949, 49.507084458000101 ], [ -123.787131382999917, 49.507354278000101 ], [ -123.783741988999964, 49.507377289000097 ], [ -123.783397325999942, 49.507069172000108 ], [ -123.783393664999934, 49.50683995 ], [ -123.783131527999942, 49.506841726000076 ], [ -123.782978352999976, 49.50678196500008 ], [ -123.782975018999963, 49.506572937000023 ], [ -123.782560680999936, 49.506575740000059 ], [ -123.782556374999956, 49.506305920000081 ], [ -123.782198220999973, 49.506308343000107 ], [ -123.781721857999941, 49.505944568000096 ], [ -123.781714805999982, 49.505502065000094 ], [ -123.781300476999931, 49.505504864000088 ], [ -123.78129188299999, 49.504965224000038 ], [ -123.780463234999942, 49.504970817000071 ], [ -123.780446324999957, 49.503907828000116 ], [ -123.780441774999929, 49.503621719000115 ], [ -123.780042457999969, 49.503624412000093 ], [ -123.779198834999974, 49.503630097000041 ], [ -123.779185979999909, 49.502820637000099 ], [ -123.778357366999927, 49.502826215000034 ], [ -123.778353086999957, 49.502556395000134 ], [ -123.777524475999954, 49.502561968000059 ], [ -123.777520200999987, 49.502292148000045 ], [ -123.777105899000034, 49.502294931000058 ], [ -123.777093078999926, 49.50148547100008 ], [ -123.776678782999952, 49.501488253000048 ], [ -123.77667296199999, 49.501120423000025 ], [ -123.776670241999952, 49.500948613000048 ], [ -123.776283554999964, 49.500951209000043 ], [ -123.775427368999885, 49.500956950000059 ], [ -123.775423104999959, 49.500687130000067 ], [ -123.775008814999978, 49.500689906000062 ], [ -123.775004553999906, 49.500420086000091 ], [ -123.774590266999923, 49.500422861000068 ], [ -123.774586007, 49.500153040000072 ], [ -123.77417172199992, 49.500155814000095 ], [ -123.774156154999943, 49.499169067000032 ], [ -123.773855263999948, 49.499162895000083 ], [ -123.773546320999955, 49.49915655700007 ], [ -123.773526504999936, 49.499062002000109 ], [ -123.773244375999951, 49.498685996000042 ], [ -123.773211090999922, 49.498379798000016 ], [ -123.771951706999943, 49.497273205000099 ], [ -123.771902474999962, 49.497182561000102 ], [ -123.771810095999967, 49.497012515000044 ], [ -123.771291378999962, 49.496806443000018 ], [ -123.76850381, 49.495698991000097 ], [ -123.768508298999933, 49.49560614500006 ], [ -123.768299914999886, 49.495607529000033 ], [ -123.768287244999911, 49.494798066000037 ], [ -123.768547453999972, 49.494796338000114 ], [ -123.768641633999977, 49.492848314000057 ], [ -123.769914964999955, 49.492874492000048 ], [ -123.769915381999937, 49.492865845 ], [ -123.770328466999942, 49.492874334000078 ], [ -123.770313950999977, 49.491949332000083 ], [ -123.771277484, 49.491925389000137 ], [ -123.771349855999986, 49.493570520000056 ], [ -123.771358892999928, 49.493778343000081 ], [ -123.77137930499994, 49.494247140000013 ], [ -123.772010907999942, 49.494257388000072 ], [ -123.772749722999919, 49.494164492000067 ], [ -123.773263323999913, 49.4937313060001 ], [ -123.77334210799998, 49.493614101000091 ], [ -123.773251777999974, 49.491909197000084 ], [ -123.776190802999935, 49.491923589000116 ], [ -123.776280489999976, 49.491923601000053 ], [ -123.776811030999966, 49.491918894000015 ], [ -123.779426799999982, 49.491895676000055 ], [ -123.779428853999889, 49.492025041000026 ], [ -123.779014639999943, 49.492027831000037 ], [ -123.779018921, 49.492297652000069 ], [ -123.777776266999979, 49.492306014000079 ], [ -123.777771989999962, 49.492036193000139 ], [ -123.776960835999915, 49.492041643000022 ], [ -123.776947833999927, 49.492311580000028 ], [ -123.776847245999932, 49.494399977000036 ], [ -123.776566518, 49.494394225000079 ], [ -123.776566771999981, 49.494410234000071 ], [ -123.777434199999917, 49.494428005000046 ], [ -123.777413331999952, 49.494861337000088 ], [ -123.777841011999897, 49.494870096000049 ], [ -123.777823616999953, 49.495231382000036 ], [ -123.778224318999932, 49.495239587000079 ], [ -123.778204488999933, 49.495651532000103 ], [ -123.778724327999925, 49.49566217500012 ], [ -123.778561409999952, 49.499046959000083 ], [ -123.77871172299993, 49.499045947000106 ], [ -123.778707442, 49.498776127000063 ], [ -123.780778803999908, 49.498762166000098 ], [ -123.780783096999954, 49.499031985000109 ], [ -123.781611645999931, 49.499026389000093 ], [ -123.781617642999933, 49.499402888000084 ], [ -123.781624539999939, 49.499835849000135 ], [ -123.782453101999948, 49.49983024800013 ], [ -123.78245740399997, 49.500100067000091 ], [ -123.782871687999972, 49.5000972650001 ], [ -123.782931958999953, 49.503874741000082 ], [ -123.785003534999973, 49.503860703000051 ], [ -123.785007850999961, 49.504130522000047 ], [ -123.785422168999972, 49.504127710000013 ], [ -123.785417848999899, 49.503857890000056 ], [ -123.787075107999982, 49.503846627000037 ], [ -123.78702750099994, 49.500878614000079 ], [ -123.787989010999965, 49.500872068000092 ], [ -123.788684657, 49.500867328000126 ], [ -123.788762728999956, 49.50572407500001 ], [ -123.791248709999962, 49.505707097000048 ], [ -123.791253060999964, 49.505976917000069 ], [ -123.79166739399993, 49.505974083000041 ], [ -123.791671746999953, 49.506243901000062 ], [ -123.79208608099999, 49.506241065000054 ], [ -123.792090437999917, 49.506510883000068 ], [ -123.792504774999941, 49.506508046000093 ], [ -123.792509133999957, 49.506777865000082 ], [ -123.792923472999973, 49.50677502600012 ], [ -123.79287986599995, 49.504076838000103 ], [ -123.793784612999971, 49.50407063300004 ], [ -123.794122813999948, 49.504068312000093 ], [ -123.794127180999936, 49.50433813100004 ], [ -123.794541497999987, 49.50433528600005 ], [ -123.794589565999928, 49.507303292000095 ], [ -123.794571063999982, 49.507303420000071 ], [ -123.794175223999957, 49.507306137000036 ], [ -123.794183958999938, 49.507845775000114 ], [ -123.792526568999932, 49.507857141000102 ], [ -123.792530927999948, 49.508126959 ], [ -123.791287876999917, 49.50813546800007 ] ], [ [ -123.781270399999954, 49.503616125000043 ], [ -123.781210257999987, 49.499838648000058 ], [ -123.77831028699994, 49.499858195000087 ], [ -123.77830257, 49.499371651000061 ], [ -123.77830070399996, 49.499253993000124 ], [ -123.777471792999975, 49.499237021000063 ], [ -123.777473279999953, 49.499330836000034 ], [ -123.777490273999916, 49.500403407000093 ], [ -123.777904560999971, 49.500400622000029 ], [ -123.777908837, 49.50067044200005 ], [ -123.778323124999986, 49.500667655000029 ], [ -123.778335964999954, 49.501477115000085 ], [ -123.778750260999956, 49.501474328000015 ], [ -123.778754543999952, 49.501744147000096 ], [ -123.779583138999953, 49.501738566000022 ], [ -123.779587425000017, 49.502008387000096 ], [ -123.780001723999987, 49.502005593000035 ], [ -123.780006013999952, 49.502275413000042 ], [ -123.780420315999962, 49.50227262000007 ], [ -123.780428899999947, 49.502812259000038 ], [ -123.78084320499994, 49.50280946400003 ], [ -123.780856087999908, 49.503618923000076 ], [ -123.781270399999954, 49.503616125000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26441417", "BldgCostT": "17971667", "sL_LossRatio": "0.909691004589978", "sL_AssetLoss": "84532", "sL_BldgLoss": "76898", "sL_StrLoss": "59948", "sL_NStrLoss": "16950", "sL_ContLoss": "7634", "geom_point": "0101000020E6100000B98A62458FF25EC0D8E012BAAABE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.785236496999985, 49.49252546200011 ], [ -123.785232181999945, 49.492255643000071 ], [ -123.783161095999915, 49.492269683000124 ], [ -123.783156789999936, 49.491999862000078 ], [ -123.78149993, 49.492011068000068 ], [ -123.781497799999912, 49.491877249000076 ], [ -123.783117694999973, 49.491862810000022 ], [ -123.784882223999958, 49.491848393000083 ], [ -123.784960478, 49.491850398000061 ], [ -123.78626896599999, 49.491883569000038 ], [ -123.787062812999977, 49.49190371100007 ], [ -123.787066045999936, 49.491813543000021 ], [ -123.787069263999982, 49.491723410000091 ], [ -123.787075748999911, 49.491543098000136 ], [ -123.787078965999939, 49.491452967000086 ], [ -123.78708221899997, 49.491362821000124 ], [ -123.787085506, 49.491272664000064 ], [ -123.787088758999985, 49.491182519000091 ], [ -123.787091974999939, 49.491092387000045 ], [ -123.787095226999952, 49.491002242000022 ], [ -123.787098461999932, 49.490912075000061 ], [ -123.787101680000021, 49.490821943000057 ], [ -123.787104932999924, 49.490731798000098 ], [ -123.787108163999932, 49.490641631000088 ], [ -123.787111416999934, 49.490551486000058 ], [ -123.787117920999947, 49.490371198000034 ], [ -123.78712115399999, 49.490281031000031 ], [ -123.787124370999933, 49.490190899000012 ], [ -123.787127641999973, 49.490100777000102 ], [ -123.78713087499996, 49.490010611000109 ], [ -123.787134091999988, 49.48992047900007 ], [ -123.787137343999973, 49.489830335000065 ], [ -123.787140575999985, 49.489740167000036 ], [ -123.787143827999969, 49.489650024000085 ], [ -123.787147045999987, 49.489559891000141 ], [ -123.787150279999963, 49.489469725000106 ], [ -123.787153565, 49.489379568000039 ], [ -123.787156782999958, 49.489289437000103 ], [ -123.787160035999989, 49.489199293000077 ], [ -123.787163267999944, 49.489109126000137 ], [ -123.787166518999982, 49.48901898200004 ], [ -123.787169735999953, 49.488928850000086 ], [ -123.787172968999926, 49.488838683000054 ], [ -123.787176221, 49.488748539000042 ], [ -123.787179438999985, 49.488658408000092 ], [ -123.787182723999976, 49.488568252000057 ], [ -123.787189194999925, 49.48838797700013 ], [ -123.787192445999921, 49.488297832000072 ], [ -123.7871956769999, 49.488207667000069 ], [ -123.78719893, 49.488117523000021 ], [ -123.787202181999959, 49.488027380000062 ], [ -123.78720538, 49.487937226000049 ], [ -123.787208631999974, 49.487847081000062 ], [ -123.787211883999959, 49.4877569390001 ], [ -123.787215098999951, 49.487666806000128 ], [ -123.787218366999952, 49.487576629000117 ], [ -123.787221618999922, 49.48748648600013 ], [ -123.787224849999987, 49.487396319000048 ], [ -123.78722806799999, 49.48730618900008 ], [ -123.787234572, 49.487125901000084 ], [ -123.787234964, 49.487114891000026 ], [ -123.788049394000026, 49.487109346000054 ], [ -123.788058056999901, 49.487648985000078 ], [ -123.788472234999915, 49.487646164000083 ], [ -123.78848090299999, 49.488185803000128 ], [ -123.789309266999965, 49.488180153000023 ], [ -123.789304927999936, 49.487910334000112 ], [ -123.788890747999943, 49.487913159000072 ], [ -123.78887774, 49.487103699000066 ], [ -123.789291914, 49.487100874000085 ], [ -123.789287576999982, 49.486831054000099 ], [ -123.790115917999913, 49.486825399000082 ], [ -123.790111574999955, 49.486555578000015 ], [ -123.791354078999959, 49.48654708600008 ], [ -123.791358428999942, 49.486816905000083 ], [ -123.792186769999944, 49.486811236000079 ], [ -123.79219983199998, 49.487620695 ], [ -123.792614008999919, 49.487617857000046 ], [ -123.792609650999978, 49.487348038000079 ], [ -123.793852176999948, 49.48733951800007 ], [ -123.793891446999965, 49.489767895000085 ], [ -123.793477252999935, 49.489770736000018 ], [ -123.793507782999981, 49.491659472000109 ], [ -123.791436725999958, 49.491673661000057 ], [ -123.791432376999978, 49.491403840000046 ], [ -123.789361330999924, 49.491417992000052 ], [ -123.78936567, 49.491687812000045 ], [ -123.788537244999986, 49.491693461000061 ], [ -123.788541579999958, 49.49196328200005 ], [ -123.788127366999944, 49.491966104000014 ], [ -123.78813169899999, 49.492235924000092 ], [ -123.787717480999902, 49.492238746000034 ], [ -123.787721810999955, 49.492508565000051 ], [ -123.787150958999973, 49.492512451000103 ], [ -123.785236496999985, 49.49252546200011 ] ], [ [ -123.791803060999968, 49.488702809000074 ], [ -123.791798709999981, 49.488432990000042 ], [ -123.791384525999945, 49.488435824000113 ], [ -123.791388875999971, 49.488705644000113 ], [ -123.791803060999968, 49.488702809000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237651079", "BldgCostT": "155777411", "sL_LossRatio": "0.733066023629804", "sL_AssetLoss": "999839", "sL_BldgLoss": "732948", "sL_StrLoss": "403002", "sL_NStrLoss": "329946", "sL_ContLoss": "266891", "geom_point": "0101000020E6100000BEF79948A3F15EC0FC0F6DF053BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.773251777999974, 49.491909197000084 ], [ -123.773279902999903, 49.491098785000069 ], [ -123.77325175, 49.490310595000068 ], [ -123.773240500999975, 49.489995890000067 ], [ -123.77322119199998, 49.489455692000035 ], [ -123.773330004999963, 49.489201391000115 ], [ -123.773539206999942, 49.489013992000089 ], [ -123.773762292999947, 49.488908811000059 ], [ -123.774049046999934, 49.488813964 ], [ -123.774210995999979, 49.488760390000053 ], [ -123.774325798999925, 49.488670999000107 ], [ -123.77437269899994, 49.488471191000066 ], [ -123.771302291999945, 49.488462027000033 ], [ -123.770627780000012, 49.488460002000089 ], [ -123.770618220999935, 49.48792722600011 ], [ -123.770611719999962, 49.487565897000117 ], [ -123.77060893, 49.487441558000093 ], [ -123.770588613, 49.486530190000046 ], [ -123.770584711999973, 49.486324882000055 ], [ -123.770564096999976, 49.485354980000047 ], [ -123.770541697999931, 49.484301389000095 ], [ -123.769561387999886, 49.484312794000111 ], [ -123.76926262099991, 49.484313037000042 ], [ -123.767670888999959, 49.484314401000098 ], [ -123.76724238499996, 49.484272310000094 ], [ -123.766596011999965, 49.484141885000021 ], [ -123.766560981999973, 49.484125048000053 ], [ -123.766382904999972, 49.484039406000129 ], [ -123.765562783999897, 49.483451906000035 ], [ -123.765349219999948, 49.483388009000109 ], [ -123.76486699699997, 49.483315998000101 ], [ -123.764596903999958, 49.483251894000013 ], [ -123.764227699999964, 49.483095809000098 ], [ -123.763467291999959, 49.482699391 ], [ -123.763154989999947, 49.482241716000075 ], [ -123.762972580999971, 49.48197438600009 ], [ -123.762992393999951, 49.481822701000112 ], [ -123.763352044999948, 49.481589049000014 ], [ -123.763716102999965, 49.481352499000074 ], [ -123.762991592999981, 49.480698403000112 ], [ -123.763168608999933, 49.48063370800007 ], [ -123.763951567999953, 49.480500672000076 ], [ -123.764071491999985, 49.480480289000099 ], [ -123.764463603999957, 49.480356807000064 ], [ -123.764790314999942, 49.480253899000083 ], [ -123.768816057999913, 49.479710120000085 ], [ -123.770245367999934, 49.479613108000066 ], [ -123.770434461999969, 49.479613085000075 ], [ -123.770426467999982, 49.480451828000113 ], [ -123.770548291999901, 49.482393212000098 ], [ -123.771436861999973, 49.482432523000057 ], [ -123.772599926999973, 49.482448509000044 ], [ -123.772564497999923, 49.483182814000067 ], [ -123.774189231999969, 49.483216161000044 ], [ -123.774045093999945, 49.486205525000081 ], [ -123.77580045800002, 49.48624152700004 ], [ -123.775702612, 49.488272198000118 ], [ -123.776055404999966, 49.488269831000117 ], [ -123.776038343999986, 49.4871905480001 ], [ -123.777695044, 49.487179422000111 ], [ -123.777699318999964, 49.487449243000071 ], [ -123.778941849999981, 49.487440883000019 ], [ -123.778937567999918, 49.487171062000073 ], [ -123.782250962999981, 49.487148702000084 ], [ -123.78225956199995, 49.48768834300008 ], [ -123.782673740999954, 49.487685541000118 ], [ -123.782665137999928, 49.487145901000083 ], [ -123.785150179999917, 49.48712906 ], [ -123.785154495999947, 49.48739888100009 ], [ -123.786811199999946, 49.487387624000121 ], [ -123.786806875999943, 49.487117803000025 ], [ -123.787234964, 49.487114891000026 ], [ -123.787234572, 49.487125901000084 ], [ -123.78722806799999, 49.48730618900008 ], [ -123.787224849999987, 49.487396319000048 ], [ -123.787221618999922, 49.48748648600013 ], [ -123.787218366999952, 49.487576629000117 ], [ -123.787215098999951, 49.487666806000128 ], [ -123.787211883999959, 49.4877569390001 ], [ -123.787208631999974, 49.487847081000062 ], [ -123.78720538, 49.487937226000049 ], [ -123.787202181999959, 49.488027380000062 ], [ -123.78719893, 49.488117523000021 ], [ -123.7871956769999, 49.488207667000069 ], [ -123.787192445999921, 49.488297832000072 ], [ -123.787189194999925, 49.48838797700013 ], [ -123.787182723999976, 49.488568252000057 ], [ -123.787179438999985, 49.488658408000092 ], [ -123.787176221, 49.488748539000042 ], [ -123.787172968999926, 49.488838683000054 ], [ -123.787169735999953, 49.488928850000086 ], [ -123.787166518999982, 49.48901898200004 ], [ -123.787163267999944, 49.489109126000137 ], [ -123.787160035999989, 49.489199293000077 ], [ -123.787156782999958, 49.489289437000103 ], [ -123.787153565, 49.489379568000039 ], [ -123.787150279999963, 49.489469725000106 ], [ -123.787147045999987, 49.489559891000141 ], [ -123.787143827999969, 49.489650024000085 ], [ -123.787140575999985, 49.489740167000036 ], [ -123.787137343999973, 49.489830335000065 ], [ -123.787134091999988, 49.48992047900007 ], [ -123.78713087499996, 49.490010611000109 ], [ -123.787127641999973, 49.490100777000102 ], [ -123.787124370999933, 49.490190899000012 ], [ -123.78712115399999, 49.490281031000031 ], [ -123.787117920999947, 49.490371198000034 ], [ -123.787111416999934, 49.490551486000058 ], [ -123.787108163999932, 49.490641631000088 ], [ -123.787104932999924, 49.490731798000098 ], [ -123.787101680000021, 49.490821943000057 ], [ -123.787098461999932, 49.490912075000061 ], [ -123.787095226999952, 49.491002242000022 ], [ -123.787091974999939, 49.491092387000045 ], [ -123.787088758999985, 49.491182519000091 ], [ -123.787085506, 49.491272664000064 ], [ -123.78708221899997, 49.491362821000124 ], [ -123.787078965999939, 49.491452967000086 ], [ -123.787075748999911, 49.491543098000136 ], [ -123.787069263999982, 49.491723410000091 ], [ -123.787066045999936, 49.491813543000021 ], [ -123.787062812999977, 49.49190371100007 ], [ -123.78626896599999, 49.491883569000038 ], [ -123.784960478, 49.491850398000061 ], [ -123.784882223999958, 49.491848393000083 ], [ -123.783117694999973, 49.491862810000022 ], [ -123.781497799999912, 49.491877249000076 ], [ -123.78149563599996, 49.491741247000036 ], [ -123.779424569999946, 49.491755221000162 ], [ -123.779426799999982, 49.491895676000055 ], [ -123.776811030999966, 49.491918894000015 ], [ -123.776280489999976, 49.491923601000053 ], [ -123.776190802999935, 49.491923589000116 ], [ -123.773251777999974, 49.491909197000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158272373", "BldgCostT": "105683706", "sL_LossRatio": "0.793401688583812", "sL_AssetLoss": "975492", "sL_BldgLoss": "773957", "sL_StrLoss": "472371", "sL_NStrLoss": "301586", "sL_ContLoss": "201535", "geom_point": "0101000020E610000018F8CC8A8FF25EC0ED74D65D0FBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.787568537999974, 49.471707707000107 ], [ -123.786398933999976, 49.471359810000109 ], [ -123.785908030999963, 49.471194761000021 ], [ -123.785310110999944, 49.470993709000084 ], [ -123.784725628999951, 49.470761256000038 ], [ -123.782988612999972, 49.470070401000115 ], [ -123.782276537999934, 49.46978751600011 ], [ -123.781404776999963, 49.469441192000041 ], [ -123.781187389999943, 49.469287281000064 ], [ -123.780893264000014, 49.468891575000072 ], [ -123.782221281999952, 49.468526269000066 ], [ -123.783328191999928, 49.468254496000078 ], [ -123.784264784999948, 49.468109885000047 ], [ -123.784826190999951, 49.467995299000044 ], [ -123.78534028499999, 49.467832109000071 ], [ -123.78649705299992, 49.46735089000002 ], [ -123.787019408999953, 49.467133595000092 ], [ -123.787596388999972, 49.466951008000095 ], [ -123.788076924999984, 49.46685539500011 ], [ -123.788604399999898, 49.466785204000089 ], [ -123.7899291, 49.466741262000085 ], [ -123.790874286999923, 49.466709891000079 ], [ -123.791265251999945, 49.466699781000031 ], [ -123.792644811999963, 49.466664095000027 ], [ -123.792890083999936, 49.466672565000053 ], [ -123.793216280999943, 49.466683793000101 ], [ -123.794730772999955, 49.466885600000111 ], [ -123.795245605999952, 49.467022983000057 ], [ -123.795268494999931, 49.467030531000013 ], [ -123.79642304, 49.467410606000058 ], [ -123.796431934999987, 49.468665326000078 ], [ -123.796433746999952, 49.468920410000095 ], [ -123.796382387000023, 49.469650259000034 ], [ -123.796399052, 49.470409209000124 ], [ -123.796404983999949, 49.470679614000098 ], [ -123.796390551999977, 49.471446253000117 ], [ -123.796388831999977, 49.471538934000101 ], [ -123.794130892999988, 49.471538147000039 ], [ -123.79371416399999, 49.47153800600011 ], [ -123.792540732999953, 49.47153756200008 ], [ -123.791929016999973, 49.471537337000029 ], [ -123.791168427999963, 49.471518663000069 ], [ -123.790855605, 49.471510997000024 ], [ -123.790747292999967, 49.471512421000085 ], [ -123.787731921999978, 49.471551706000042 ], [ -123.787568537999974, 49.471707707000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "287726501", "BldgCostT": "192835001", "sL_LossRatio": "0.809820099490033", "sL_AssetLoss": "1230374.5", "sL_BldgLoss": "996382", "sL_StrLoss": "612367", "sL_NStrLoss": "384015", "sL_ContLoss": "233992.5", "geom_point": "0101000020E6100000BE03F191BFF25EC0D6272D1ABABC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.796409863999898, 49.476503649000051 ], [ -123.796399012999984, 49.475171207000116 ], [ -123.794832538999984, 49.475155620000059 ], [ -123.794428716999931, 49.47511773500009 ], [ -123.793557022999948, 49.475083746000067 ], [ -123.792415485, 49.475064961000051 ], [ -123.792399083999982, 49.475064691000036 ], [ -123.791813341999983, 49.475139177000095 ], [ -123.790839571999982, 49.475134652000108 ], [ -123.787948139999969, 49.475125684000055 ], [ -123.787349657999926, 49.475123822000107 ], [ -123.78536753899999, 49.47511667100008 ], [ -123.782360435999962, 49.475107445000098 ], [ -123.782337953999942, 49.474139328000092 ], [ -123.782310104999922, 49.472851500000061 ], [ -123.782437676999976, 49.472808858000064 ], [ -123.78292644699999, 49.472645479000064 ], [ -123.783763994000012, 49.472365504000066 ], [ -123.784457721999956, 49.471795396000033 ], [ -123.78496311399995, 49.471382707 ], [ -123.785310110999944, 49.470993709000084 ], [ -123.785908030999963, 49.471194761000021 ], [ -123.786398933999976, 49.471359810000109 ], [ -123.787568537999974, 49.471707707000107 ], [ -123.787731921999978, 49.471551706000042 ], [ -123.790747292999967, 49.471512421000085 ], [ -123.790855605, 49.471510997000024 ], [ -123.791168427999963, 49.471518663000069 ], [ -123.791929016999973, 49.471537337000029 ], [ -123.792540732999953, 49.47153756200008 ], [ -123.79371416399999, 49.47153800600011 ], [ -123.794130892999988, 49.471538147000039 ], [ -123.796388831999977, 49.471538934000101 ], [ -123.796396353999967, 49.471959435000038 ], [ -123.796402694, 49.472317828000023 ], [ -123.796417696999924, 49.473391127000092 ], [ -123.796665798, 49.473388990000075 ], [ -123.797945457999944, 49.473378031000081 ], [ -123.797956235999948, 49.473759915000095 ], [ -123.798677313000013, 49.473981608000024 ], [ -123.798794357999952, 49.474017598000088 ], [ -123.799576919999978, 49.474258192000029 ], [ -123.799870525999978, 49.474320860000027 ], [ -123.799999506999967, 49.474318817000054 ], [ -123.800096064999934, 49.474317275000018 ], [ -123.800294373999975, 49.474314153000073 ], [ -123.800703097999957, 49.474308100000037 ], [ -123.801658300999961, 49.474294091000033 ], [ -123.801688592999966, 49.475212595000094 ], [ -123.801716505999963, 49.47605779200007 ], [ -123.801740212, 49.47677739800011 ], [ -123.802097883999963, 49.476797302000087 ], [ -123.80249780199992, 49.476860282000054 ], [ -123.802571818999979, 49.478638704000048 ], [ -123.801805090999963, 49.478660103000031 ], [ -123.79792806499999, 49.478709363000057 ], [ -123.796349162999917, 49.47872937700005 ], [ -123.796369252999952, 49.477993927000064 ], [ -123.796372047999924, 49.477890965000022 ], [ -123.796380631999952, 49.477576492000054 ], [ -123.796409863999898, 49.476503649000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142999562", "BldgCostT": "95058191", "sL_LossRatio": "0.773291910092559", "sL_AssetLoss": "1010061", "sL_BldgLoss": "781072", "sL_StrLoss": "436152", "sL_NStrLoss": "344920", "sL_ContLoss": "228989", "geom_point": "0101000020E6100000AAA9D9C150F35EC0310D812B72BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.801688592999966, 49.475212595000094 ], [ -123.801658300999961, 49.474294091000033 ], [ -123.800703097999957, 49.474308100000037 ], [ -123.800294373999975, 49.474314153000073 ], [ -123.800096064999934, 49.474317275000018 ], [ -123.799999506999967, 49.474318817000054 ], [ -123.799870525999978, 49.474320860000027 ], [ -123.799576919999978, 49.474258192000029 ], [ -123.798794357999952, 49.474017598000088 ], [ -123.798677313000013, 49.473981608000024 ], [ -123.797956235999948, 49.473759915000095 ], [ -123.797945457999944, 49.473378031000081 ], [ -123.796665798, 49.473388990000075 ], [ -123.796417696999924, 49.473391127000092 ], [ -123.796402694, 49.472317828000023 ], [ -123.796396353999967, 49.471959435000038 ], [ -123.796388831999977, 49.471538934000101 ], [ -123.796390551999977, 49.471446253000117 ], [ -123.796404983999949, 49.470679614000098 ], [ -123.796399052, 49.470409209000124 ], [ -123.796382387000023, 49.469650259000034 ], [ -123.796433746999952, 49.468920410000095 ], [ -123.796431934999987, 49.468665326000078 ], [ -123.79642304, 49.467410606000058 ], [ -123.799052197999941, 49.468276007000043 ], [ -123.799703286999929, 49.468378340000079 ], [ -123.799999363999959, 49.468424841000044 ], [ -123.800620882999965, 49.468522542000109 ], [ -123.801090882999986, 49.468596359000053 ], [ -123.801396217999979, 49.468644859000023 ], [ -123.80263967599997, 49.468834783000041 ], [ -123.803100574999988, 49.46883061000004 ], [ -123.803535117999971, 49.468771895 ], [ -123.804456973999962, 49.468444119000075 ], [ -123.804662834999974, 49.468370897000028 ], [ -123.805218862999979, 49.468173193000077 ], [ -123.805559563999978, 49.468115277000045 ], [ -123.805259884999941, 49.46910838400003 ], [ -123.805247966999957, 49.469358389000035 ], [ -123.805465979999951, 49.470142293000045 ], [ -123.805702743999944, 49.470364324000151 ], [ -123.805908411999937, 49.470557199000098 ], [ -123.805981308999947, 49.470707187000109 ], [ -123.805929594999938, 49.470835792000095 ], [ -123.805812397999944, 49.470981105000064 ], [ -123.805777802999941, 49.471059983000046 ], [ -123.805655682999898, 49.471338269000057 ], [ -123.805636448999948, 49.471382173000087 ], [ -123.805595711999928, 49.471474935000103 ], [ -123.805584981999957, 49.471499415000082 ], [ -123.805397367999944, 49.47166093900006 ], [ -123.805257, 49.471781806000109 ], [ -123.805165689999967, 49.471903203000061 ], [ -123.805125012999966, 49.472034698000073 ], [ -123.805169599999971, 49.472169802000074 ], [ -123.80581870899999, 49.472795063000056 ], [ -123.805863482999911, 49.472838202000041 ], [ -123.8060973, 49.473202106000073 ], [ -123.806127410999963, 49.473351200000046 ], [ -123.806070523999963, 49.473717977 ], [ -123.805994079999934, 49.474210896000145 ], [ -123.80588568, 49.474809996000069 ], [ -123.806546928999964, 49.474864743000118 ], [ -123.806964387999955, 49.474899286000081 ], [ -123.806988440999973, 49.475182615000072 ], [ -123.807030580999935, 49.4756788830001 ], [ -123.807113406999946, 49.476654240000109 ], [ -123.807137788999952, 49.47694159200006 ], [ -123.807159300999956, 49.478493908000047 ], [ -123.807113909999941, 49.47828679800012 ], [ -123.806414410999977, 49.477980386000119 ], [ -123.806366663999938, 49.477959447000053 ], [ -123.80563398799994, 49.477638508000076 ], [ -123.805388409000017, 49.477543483000098 ], [ -123.805241079999959, 49.477486502000048 ], [ -123.804621620999981, 49.477160758000082 ], [ -123.804561128999936, 49.477128965000134 ], [ -123.80450747399999, 49.477100744000019 ], [ -123.803898262999937, 49.476780407000014 ], [ -123.803580122999932, 49.476613101000034 ], [ -123.803289196999955, 49.476493811000083 ], [ -123.803239794999968, 49.47648009900017 ], [ -123.801716505999963, 49.47605779200007 ], [ -123.801688592999966, 49.475212595000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.807465618860511", "sL_AssetLoss": "5090", "sL_BldgLoss": "4110", "sL_StrLoss": "2150", "sL_NStrLoss": "1960", "sL_ContLoss": "980", "geom_point": "0101000020E6100000A8188CB60FF45EC0A41033C191BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.814337062999954, 49.473704613000073 ], [ -123.812680832999916, 49.473716262000067 ], [ -123.812662975999899, 49.472636985000065 ], [ -123.81390512199998, 49.472628252000106 ], [ -123.813909592999963, 49.472898070000035 ], [ -123.814323643999913, 49.472895156000028 ], [ -123.814337062999954, 49.473704613000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15055577", "BldgCostT": "9407409", "sL_LossRatio": "0.716392757296266", "sL_AssetLoss": "76546", "sL_BldgLoss": "54837", "sL_StrLoss": "29662", "sL_NStrLoss": "25175", "sL_ContLoss": "21709", "geom_point": "0101000020E6100000B7E20B280EF45EC054C6BFCF38BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.810692142999969, 49.484254625000126 ], [ -123.816206316999953, 49.484365764000117 ], [ -123.816036147999938, 49.487962830000129 ], [ -123.810521544, 49.487851684000063 ], [ -123.810692142999969, 49.484254625000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14417083", "BldgCostT": "9733333", "sL_LossRatio": "0.759747200630961", "sL_AssetLoss": "96361", "sL_BldgLoss": "73210", "sL_StrLoss": "40310", "sL_NStrLoss": "32900", "sL_ContLoss": "23151", "geom_point": "0101000020E61000001092E43D77F35EC09AED653623BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.802142902999933, 49.485850906000039 ], [ -123.802091213999944, 49.48498652000012 ], [ -123.802047682999913, 49.484258565000118 ], [ -123.802029409999975, 49.483952852000051 ], [ -123.802002530999971, 49.483503387000049 ], [ -123.801926318999932, 49.482227902000069 ], [ -123.802281399999941, 49.482227024000125 ], [ -123.80311170600001, 49.482225003000067 ], [ -123.80360668499992, 49.482210131000059 ], [ -123.804382909999987, 49.48218681 ], [ -123.806793713999966, 49.481938788000086 ], [ -123.806676365999962, 49.484408871000049 ], [ -123.805506241999979, 49.484385207000074 ], [ -123.805447086999948, 49.485629589000034 ], [ -123.805963582999979, 49.485640035000117 ], [ -123.805792609999969, 49.489237078000066 ], [ -123.802325646999975, 49.489166909000055 ], [ -123.80229813599999, 49.488745825000116 ], [ -123.802244674999912, 49.487927629000076 ], [ -123.80223482299999, 49.487776304000057 ], [ -123.802167342999923, 49.486362611000118 ], [ -123.802142902999933, 49.485850906000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11020083", "BldgCostT": "7128333", "sL_LossRatio": "0.85647229163261", "sL_AssetLoss": "42821", "sL_BldgLoss": "36675", "sL_StrLoss": "23815", "sL_NStrLoss": "12860", "sL_ContLoss": "6146", "geom_point": "0101000020E61000009FBC5D6978F35EC0C054F9BF1FBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.802539488999955, 49.492440791000014 ], [ -123.802421466999988, 49.490633734 ], [ -123.802409813999986, 49.490455337000064 ], [ -123.805938484999913, 49.49052674900004 ], [ -123.805851248999915, 49.492361902 ], [ -123.805957597000017, 49.492364053000045 ], [ -123.805786598999987, 49.495961061000074 ], [ -123.802719437999926, 49.495898999000133 ], [ -123.802614178999974, 49.494852588000107 ], [ -123.802635756999919, 49.494520191000028 ], [ -123.80264917699995, 49.494313795000096 ], [ -123.802655492999946, 49.4942161990001 ], [ -123.802581223999965, 49.493079070000121 ], [ -123.802560663999955, 49.492764709000063 ], [ -123.802539488999955, 49.492440791000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22517917", "BldgCostT": "13791667", "sL_LossRatio": "0.948862117777492", "sL_AssetLoss": "20204.2", "sL_BldgLoss": "19171", "sL_StrLoss": "16133", "sL_NStrLoss": "3038", "sL_ContLoss": "1033.2", "geom_point": "0101000020E61000006A8AB6191DF65EC09EED344629BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.846358779999946, 49.481570251000058 ], [ -123.846349478999954, 49.481030619000073 ], [ -123.845935362999981, 49.481033647000032 ], [ -123.84592606699999, 49.480494015000041 ], [ -123.845097843999937, 49.480500069000094 ], [ -123.845088555999936, 49.479960436000106 ], [ -123.844674449999957, 49.479963461000061 ], [ -123.84466922899999, 49.479659883000075 ], [ -123.844050215, 49.479647582000084 ], [ -123.844060455999966, 49.479428242000019 ], [ -123.843836961999969, 49.479429873000136 ], [ -123.843817469999962, 49.478295493000061 ], [ -123.842371536999934, 49.478266742000073 ], [ -123.842432301999963, 49.476966336000046 ], [ -123.842539619, 49.474669584000047 ], [ -123.84433960899996, 49.474705373000084 ], [ -123.844346552999951, 49.47455662800008 ], [ -123.84471708299999, 49.474563991000117 ], [ -123.844646316999942, 49.474628202000112 ], [ -123.844695890999944, 49.475212206000073 ], [ -123.844975507999962, 49.475417291000028 ], [ -123.845583597999919, 49.475431514000043 ], [ -123.846418993999947, 49.475766191000055 ], [ -123.84763600199993, 49.475892891000029 ], [ -123.848364066, 49.476178645000047 ], [ -123.848056085999957, 49.478957406000077 ], [ -123.848023103999964, 49.479726470000095 ], [ -123.84798361699994, 49.479725687000091 ], [ -123.84799496299999, 49.480382665000107 ], [ -123.847944426999916, 49.481561005000067 ], [ -123.847187092999988, 49.481568272000104 ], [ -123.847187020999939, 49.481564188000036 ], [ -123.846358779999946, 49.481570251000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3364000", "BldgCostT": "2320000", "sL_LossRatio": "0.815735781688345", "sL_AssetLoss": "23526", "sL_BldgLoss": "19191", "sL_StrLoss": "11390", "sL_NStrLoss": "7801", "sL_ContLoss": "4335", "geom_point": "0101000020E6100000FC3BBA958EF15EC0A9D1926429BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.772082955999949, 49.470520245000039 ], [ -123.771563638999936, 49.47047628100006 ], [ -123.770897586999965, 49.470500397000123 ], [ -123.77012849299993, 49.470622998000088 ], [ -123.770178885999925, 49.470024047000059 ], [ -123.770180231999973, 49.469997972000066 ], [ -123.770176544, 49.469807663000054 ], [ -123.77076039399995, 49.469818701000058 ], [ -123.771421679999946, 49.469680496000151 ], [ -123.772957285999922, 49.469948302000049 ], [ -123.774416096, 49.469623596000055 ], [ -123.775624501999957, 49.469256104000088 ], [ -123.777470596999962, 49.469099492000119 ], [ -123.778009712999932, 49.468995159 ], [ -123.777972826999971, 49.469761776000034 ], [ -123.777155464000018, 49.47002931600008 ], [ -123.775283801999976, 49.470653469000077 ], [ -123.774889065999929, 49.470744394000072 ], [ -123.774147015, 49.470827276000065 ], [ -123.773761841999914, 49.470804972000067 ], [ -123.77342207399991, 49.470785399000079 ], [ -123.772082955999949, 49.470520245000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.953351200226906", "sL_AssetLoss": "1727.59", "sL_BldgLoss": "1647", "sL_StrLoss": "1355", "sL_NStrLoss": "292", "sL_ContLoss": "80.59", "geom_point": "0101000020E61000006C6903EA2CF55EC060C84D810ABD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.830139607, 49.477640035 ], [ -123.830112242999945, 49.476021128000099 ], [ -123.831354468999976, 49.476012206000085 ], [ -123.831368169999962, 49.476821659000031 ], [ -123.831782252999929, 49.476818683000012 ], [ -123.831795963999966, 49.47762813500006 ], [ -123.830139607, 49.477640035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162530494", "BldgCostT": "106099076", "sL_LossRatio": "0.764690685623085", "sL_AssetLoss": "1027310.8", "sL_BldgLoss": "785575", "sL_StrLoss": "431333", "sL_NStrLoss": "354242", "sL_ContLoss": "241735.8", "geom_point": "0101000020E610000063A100FE27F45EC05F0BFEA7B0BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.814337062999954, 49.473704613000073 ], [ -123.816407350999938, 49.473690019000038 ], [ -123.816411835999929, 49.47395983800002 ], [ -123.816825894999937, 49.473956914000041 ], [ -123.816839355999889, 49.474766371000086 ], [ -123.815183090999966, 49.474778055000058 ], [ -123.815184528999922, 49.474864638000042 ], [ -123.81849856599996, 49.47493134300003 ], [ -123.81849112499999, 49.474484843000063 ], [ -123.817248932999988, 49.474493628000069 ], [ -123.817235464999939, 49.473684170000062 ], [ -123.818477634999965, 49.473675388000082 ], [ -123.818486627999931, 49.474215025000056 ], [ -123.820142872999938, 49.474203293000116 ], [ -123.820156388999919, 49.475012749 ], [ -123.819033019999921, 49.475020709000084 ], [ -123.819020269999939, 49.475290650000055 ], [ -123.820160895999948, 49.47528256700005 ], [ -123.820156388999919, 49.475012749 ], [ -123.822226728999937, 49.474998050000067 ], [ -123.822244798999961, 49.476077323000041 ], [ -123.818982019999964, 49.47610047300001 ], [ -123.818953217999947, 49.476710219000076 ], [ -123.822907997999977, 49.47678966900002 ], [ -123.822738378999986, 49.480386785000064 ], [ -123.822677673999948, 49.480385567000091 ], [ -123.82263832299999, 49.481219985000052 ], [ -123.819047766000011, 49.48114785700011 ], [ -123.819018509000017, 49.481767173000044 ], [ -123.817020941999942, 49.481726994 ], [ -123.816965989999971, 49.482889121000085 ], [ -123.81473156499996, 49.482844134000096 ], [ -123.814679460999969, 49.483944873000063 ], [ -123.80916534, 49.483833658000101 ], [ -123.809237277999969, 49.482317731000073 ], [ -123.80906043, 49.482314159000083 ], [ -123.809086658999888, 49.481761447000146 ], [ -123.808859355999942, 49.481756855000107 ], [ -123.808892719999932, 49.481053852000088 ], [ -123.807407525999963, 49.481023843000109 ], [ -123.807412696999918, 49.480652995000177 ], [ -123.807389455999925, 49.480325827000108 ], [ -123.807385742999941, 49.480273454000056 ], [ -123.807327489999963, 49.479454092000076 ], [ -123.807159300999956, 49.478493908000047 ], [ -123.807137788999952, 49.47694159200006 ], [ -123.807113406999946, 49.476654240000109 ], [ -123.807030580999935, 49.4756788830001 ], [ -123.806988440999973, 49.475182615000072 ], [ -123.806964387999955, 49.474899286000081 ], [ -123.806546928999964, 49.474864743000118 ], [ -123.80588568, 49.474809996000069 ], [ -123.805994079999934, 49.474210896000145 ], [ -123.806070523999963, 49.473717977 ], [ -123.806127410999963, 49.473351200000046 ], [ -123.8060973, 49.473202106000073 ], [ -123.805863482999911, 49.472838202000041 ], [ -123.80581870899999, 49.472795063000056 ], [ -123.805169599999971, 49.472169802000074 ], [ -123.805125012999966, 49.472034698000073 ], [ -123.805165689999967, 49.471903203000061 ], [ -123.805257, 49.471781806000109 ], [ -123.805397367999944, 49.47166093900006 ], [ -123.805584981999957, 49.471499415000082 ], [ -123.805595711999928, 49.471474935000103 ], [ -123.805636448999948, 49.471382173000087 ], [ -123.805655682999898, 49.471338269000057 ], [ -123.805777802999941, 49.471059983000046 ], [ -123.805812397999944, 49.470981105000064 ], [ -123.805929594999938, 49.470835792000095 ], [ -123.805981308999947, 49.470707187000109 ], [ -123.805908411999937, 49.470557199000098 ], [ -123.805702743999944, 49.470364324000151 ], [ -123.805465979999951, 49.470142293000045 ], [ -123.805247966999957, 49.469358389000035 ], [ -123.805259884999941, 49.46910838400003 ], [ -123.805559563999978, 49.468115277000045 ], [ -123.805218862999979, 49.468173193000077 ], [ -123.804662834999974, 49.468370897000028 ], [ -123.804456973999962, 49.468444119000075 ], [ -123.803535117999971, 49.468771895 ], [ -123.803100574999988, 49.46883061000004 ], [ -123.80263967599997, 49.468834783000041 ], [ -123.801396217999979, 49.468644859000023 ], [ -123.801090882999986, 49.468596359000053 ], [ -123.800620882999965, 49.468522542000109 ], [ -123.799999363999959, 49.468424841000044 ], [ -123.799703286999929, 49.468378340000079 ], [ -123.799052197999941, 49.468276007000043 ], [ -123.79642304, 49.467410606000058 ], [ -123.795268494999931, 49.467030531000013 ], [ -123.795245605999952, 49.467022983000057 ], [ -123.794730772999955, 49.466885600000111 ], [ -123.793216280999943, 49.466683793000101 ], [ -123.792890083999936, 49.466672565000053 ], [ -123.792644811999963, 49.466664095000027 ], [ -123.791265251999945, 49.466699781000031 ], [ -123.790874286999923, 49.466709891000079 ], [ -123.7899291, 49.466741262000085 ], [ -123.788604399999898, 49.466785204000089 ], [ -123.788076924999984, 49.46685539500011 ], [ -123.787596388999972, 49.466951008000095 ], [ -123.787019408999953, 49.467133595000092 ], [ -123.78649705299992, 49.46735089000002 ], [ -123.78534028499999, 49.467832109000071 ], [ -123.784826190999951, 49.467995299000044 ], [ -123.784264784999948, 49.468109885000047 ], [ -123.783328191999928, 49.468254496000078 ], [ -123.782221281999952, 49.468526269000066 ], [ -123.780893264000014, 49.468891575000072 ], [ -123.780056600999956, 49.469079673000131 ], [ -123.779793228999949, 49.469165889000053 ], [ -123.779818264999975, 49.468645136000063 ], [ -123.780554178999921, 49.468502698000066 ], [ -123.78189910299993, 49.468098209000118 ], [ -123.783133008999954, 49.467576990000069 ], [ -123.784521602, 49.467172507000065 ], [ -123.786191686, 49.466396305000082 ], [ -123.787208589999977, 49.466030304000036 ], [ -123.788582115999972, 49.465696995000037 ], [ -123.790224504999927, 49.46563150300009 ], [ -123.792157574999919, 49.465662896000069 ], [ -123.793569191999936, 49.465904995000109 ], [ -123.795586, 49.466098687000112 ], [ -123.800119812999981, 49.467388998000075 ], [ -123.801388565, 49.467503133000058 ], [ -123.801971891999955, 49.467555601000043 ], [ -123.803130375999899, 49.467421695000056 ], [ -123.80410198899996, 49.467730792000125 ], [ -123.804967119999972, 49.467552805000089 ], [ -123.805821801999969, 49.467492992000096 ], [ -123.807782811999957, 49.467561292000021 ], [ -123.81006419199997, 49.467796315000079 ], [ -123.812547587999987, 49.467743590000083 ], [ -123.813223307999962, 49.467666701000063 ], [ -123.81471578299994, 49.467017292000051 ], [ -123.81611029, 49.466980208000052 ], [ -123.817011091999987, 49.467270806000109 ], [ -123.818828509999932, 49.468608096000025 ], [ -123.822085305999977, 49.47025730900009 ], [ -123.822860887, 49.470441097000041 ], [ -123.824948622999955, 49.470606302000071 ], [ -123.825912886999916, 49.470526495000037 ], [ -123.826170190999946, 49.470246005000035 ], [ -123.826543284999985, 49.470153391000082 ], [ -123.828103804999898, 49.47026870800002 ], [ -123.829271417999976, 49.470700299000022 ], [ -123.830011401999968, 49.471235795000048 ], [ -123.830224608999941, 49.471557700000112 ], [ -123.830432894999959, 49.471673014000011 ], [ -123.830709517999978, 49.471680099000054 ], [ -123.830925768999961, 49.471645914000142 ], [ -123.831727298999937, 49.471519196000031 ], [ -123.832712695999987, 49.47102640400005 ], [ -123.832917606999942, 49.470837008000018 ], [ -123.832896120999962, 49.470449602000038 ], [ -123.833020106999982, 49.470395501000034 ], [ -123.83358679499996, 49.4704810140001 ], [ -123.83407810599999, 49.470926697000046 ], [ -123.83431449599999, 49.471014993000018 ], [ -123.835434891999981, 49.471141793000122 ], [ -123.836593778999941, 49.471387500000027 ], [ -123.836482304999919, 49.473766847000014 ], [ -123.836473556999962, 49.473953565000095 ], [ -123.835284159999958, 49.473929833000035 ], [ -123.835269824999926, 49.47423559300006 ], [ -123.831379405999911, 49.474157876000028 ], [ -123.831355992999974, 49.474656389000117 ], [ -123.831303626999969, 49.474655342000062 ], [ -123.831289408999979, 49.474958090000058 ], [ -123.825776320999978, 49.474847717000088 ], [ -123.825794746999946, 49.474456370000048 ], [ -123.824324091, 49.474426880000124 ], [ -123.824362057999963, 49.473621058000077 ], [ -123.819825575999928, 49.473529964000079 ], [ -123.819832042999963, 49.473393009000141 ], [ -123.819222162999921, 49.473380748000025 ], [ -123.81926104899992, 49.472557344000137 ], [ -123.818872970999962, 49.472549541000092 ], [ -123.818882694999971, 49.47313282000006 ], [ -123.817226486999971, 49.473144533000031 ], [ -123.817230975999919, 49.473414351 ], [ -123.815574754999986, 49.473426042000014 ], [ -123.815565794999969, 49.472886404000057 ], [ -123.815151745999955, 49.472889323000061 ], [ -123.815147266999986, 49.472619505000125 ], [ -123.814733218999962, 49.472622422000065 ], [ -123.814719791999963, 49.471812965000026 ], [ -123.816491252, 49.47180047300008 ], [ -123.816520818999948, 49.471175158000094 ], [ -123.816482294999929, 49.471174382000051 ], [ -123.816505961999965, 49.470673875000045 ], [ -123.815680995999955, 49.470657262000081 ], [ -123.815694092999962, 49.470380395000106 ], [ -123.815314699999959, 49.470372753000106 ], [ -123.815324349999912, 49.47016878700002 ], [ -123.814910197999922, 49.47016044300009 ], [ -123.814910427999948, 49.4701555850001 ], [ -123.814296748999965, 49.470143219000121 ], [ -123.814262187999958, 49.470873420000025 ], [ -123.80967936799999, 49.470780962000063 ], [ -123.809571625999965, 49.473052430000045 ], [ -123.809560714999989, 49.473052209000066 ], [ -123.80953620799994, 49.473568869000097 ], [ -123.810304877, 49.473584391000067 ], [ -123.810260130999893, 49.47452795500007 ], [ -123.810474827999911, 49.474532289000138 ], [ -123.810474401999954, 49.474541294000083 ], [ -123.810623903999954, 49.474540247000121 ], [ -123.810610544000014, 49.473730789000093 ], [ -123.811852716999979, 49.473722077000048 ], [ -123.81187947799998, 49.475340991000046 ], [ -123.81146540499995, 49.47534389700003 ], [ -123.811469862999914, 49.475613717000023 ], [ -123.81188393799999, 49.475610811000109 ], [ -123.811897318999939, 49.47642026800002 ], [ -123.81148323799998, 49.476423173000015 ], [ -123.811485219999909, 49.476543114000037 ], [ -123.812232221999977, 49.476558184000048 ], [ -123.812254150999976, 49.4760953420001 ], [ -123.812720355999915, 49.476104744000089 ], [ -123.812716550999966, 49.475874814000107 ], [ -123.812302474999939, 49.475877723000117 ], [ -123.812280162999983, 49.47452862700009 ], [ -123.813108289999931, 49.474522809000021 ], [ -123.813099357999974, 49.473983171000043 ], [ -123.814341536999933, 49.473974432000084 ], [ -123.814337062999954, 49.473704613000073 ] ], [ [ -123.817207959999934, 49.472031012000045 ], [ -123.817208529999959, 49.472065257000153 ], [ -123.817291736999891, 49.472064670000059 ], [ -123.817293246999952, 49.47203272800008 ], [ -123.817207959999934, 49.472031012000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85308333", "BldgCostT": "58833333", "sL_LossRatio": "0.858179658725496", "sL_AssetLoss": "395722.5", "sL_BldgLoss": "339601", "sL_StrLoss": "226879", "sL_NStrLoss": "112722", "sL_ContLoss": "56121.5", "geom_point": "0101000020E6100000A2CC7134E8F75EC00CEF8BAEFFBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.874162929999969, 49.483258561000071 ], [ -123.874164078, 49.483233644000109 ], [ -123.873613111999973, 49.483222847000022 ], [ -123.873661885000033, 49.482163884000052 ], [ -123.873338366999974, 49.48215754200001 ], [ -123.873399537999916, 49.480829532000079 ], [ -123.873266866000023, 49.480830534000084 ], [ -123.873255450000016, 49.480188656000053 ], [ -123.868892524999936, 49.480103032000081 ], [ -123.868985379999941, 49.478091233000043 ], [ -123.868236624999938, 49.478076520000073 ], [ -123.868263384999963, 49.477496919000032 ], [ -123.868232960999975, 49.477496321000075 ], [ -123.86827733599992, 49.476535168000062 ], [ -123.86817321700002, 49.476533121000024 ], [ -123.86819730500001, 49.476011381000056 ], [ -123.867990764999959, 49.476012932000103 ], [ -123.867970865999922, 49.476443881000144 ], [ -123.866976569999935, 49.47642433300004 ], [ -123.866978967999955, 49.47656022200006 ], [ -123.866744379999929, 49.476561980000042 ], [ -123.865921884999977, 49.475546910000105 ], [ -123.86534468799999, 49.475109798000098 ], [ -123.864716012999978, 49.474731070000068 ], [ -123.863838796999971, 49.474202614 ], [ -123.863532087999943, 49.473974194000043 ], [ -123.863084393999898, 49.47345319800008 ], [ -123.862709018999951, 49.472533099000067 ], [ -123.862712417999944, 49.472013800000084 ], [ -123.862808581999971, 49.47163399099999 ], [ -123.862913521999957, 49.471454306000048 ], [ -123.860565603999987, 49.471901201000087 ], [ -123.858752596999963, 49.469857303000055 ], [ -123.859530894999921, 49.469821311000068 ], [ -123.861002591999949, 49.470270705000075 ], [ -123.862740487999957, 49.470512893000027 ], [ -123.863465314999985, 49.470707190000056 ], [ -123.863937904999943, 49.470331303000151 ], [ -123.864510246999913, 49.470023917000056 ], [ -123.865012998999958, 49.469753908000044 ], [ -123.865368192999981, 49.469617801 ], [ -123.865879015999965, 49.46951978800012 ], [ -123.866337770999962, 49.469512887000093 ], [ -123.867562984999978, 49.46949440600013 ], [ -123.868227597999947, 49.469590296000064 ], [ -123.86889867, 49.469747202000114 ], [ -123.870224100999963, 49.470057098000019 ], [ -123.868965193999955, 49.471332998000072 ], [ -123.868798709999936, 49.471288308000084 ], [ -123.868495099999976, 49.471206787 ], [ -123.867712930999943, 49.471059107000045 ], [ -123.867258417999949, 49.471013198000072 ], [ -123.867085619999955, 49.471021502000077 ], [ -123.866704576999922, 49.471101554000072 ], [ -123.865780173999937, 49.471295775000137 ], [ -123.865205100999987, 49.471416586000082 ], [ -123.86503030599999, 49.471557202000078 ], [ -123.864955615999961, 49.471681687000078 ], [ -123.864967907999969, 49.471773806000101 ], [ -123.865483591000014, 49.472196207000046 ], [ -123.866163499999956, 49.473005283000106 ], [ -123.867239010999938, 49.472716810000051 ], [ -123.86761658599994, 49.472695405000046 ], [ -123.867797482999947, 49.472720594000094 ], [ -123.868093922999947, 49.472814593000109 ], [ -123.868504655999985, 49.47300889900005 ], [ -123.869950202999931, 49.473692700000065 ], [ -123.871632134, 49.472587026000042 ], [ -123.872830809999954, 49.473150592000081 ], [ -123.874002849999954, 49.47360861000007 ], [ -123.874019200999953, 49.473614995000098 ], [ -123.875776307999942, 49.474162488000083 ], [ -123.877669879999985, 49.473108235000062 ], [ -123.879481504, 49.473627413000074 ], [ -123.880769899999976, 49.474089878000093 ], [ -123.881160292999937, 49.474229993000051 ], [ -123.881406158999937, 49.474301774000033 ], [ -123.881840917999909, 49.47442870200009 ], [ -123.88390843599997, 49.474870182000153 ], [ -123.882466538999964, 49.47623636700007 ], [ -123.88224468699994, 49.477052467000078 ], [ -123.879914501999963, 49.476664699000047 ], [ -123.87170250399997, 49.476947701000078 ], [ -123.871823076999988, 49.477504491000019 ], [ -123.871949906999973, 49.477716700000016 ], [ -123.872390294999946, 49.478221039000076 ], [ -123.87255930699996, 49.478414596000121 ], [ -123.873302205999948, 49.47840120200005 ], [ -123.873359391999912, 49.478457631000062 ], [ -123.874192884999985, 49.479280097000121 ], [ -123.874580581999979, 49.479610797000085 ], [ -123.875841693999959, 49.480688696000122 ], [ -123.875961604999958, 49.480868288000103 ], [ -123.876572289999913, 49.481783093000118 ], [ -123.876759310999915, 49.481886702000068 ], [ -123.876906386999934, 49.48192740200011 ], [ -123.88321940499999, 49.481800073000066 ], [ -123.885652041999947, 49.481750919000042 ], [ -123.886290489999965, 49.481737991000081 ], [ -123.887759007999989, 49.48171026500011 ], [ -123.88857304299999, 49.481694900000079 ], [ -123.88976351299999, 49.4816723980001 ], [ -123.89291370499997, 49.482120600000066 ], [ -123.89306918199999, 49.482881208 ], [ -123.892112931999961, 49.482862632 ], [ -123.892118169999947, 49.482747957000065 ], [ -123.891354311, 49.482733112000069 ], [ -123.891370747999972, 49.482373230000093 ], [ -123.889098205999943, 49.482329035000113 ], [ -123.888463353999967, 49.482333913000048 ], [ -123.888449744999946, 49.482631460000043 ], [ -123.888204631999912, 49.482626689000035 ], [ -123.888174272999947, 49.48329036500013 ], [ -123.887383238999945, 49.483274964000067 ], [ -123.887382940999913, 49.483281485000063 ], [ -123.8861290899999, 49.483257061000096 ], [ -123.886127590999962, 49.483289815000091 ], [ -123.883705551, 49.48324259400006 ], [ -123.883703892999947, 49.483278776000155 ], [ -123.882320577999948, 49.483251783000064 ], [ -123.882318437999913, 49.483298410000053 ], [ -123.881737836999889, 49.48328707500005 ], [ -123.88173711499995, 49.483302824000056 ], [ -123.881162981999935, 49.483291612000095 ], [ -123.881161891999938, 49.483315338000068 ], [ -123.879680813999983, 49.483286402000104 ], [ -123.879677135999913, 49.483366474000107 ], [ -123.874162929999969, 49.483258561000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.990960711821832", "sL_AssetLoss": "565.31", "sL_BldgLoss": "560.2", "sL_StrLoss": "486.2", "sL_NStrLoss": "74", "sL_ContLoss": "5.11", "geom_point": "0101000020E6100000B778BAEB53F65EC0BBBEE68757BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.849133218999953, 49.478642092000023 ], [ -123.849605398999941, 49.478574894000076 ], [ -123.849618947999915, 49.478575498000033 ], [ -123.84956391899999, 49.479757026000094 ], [ -123.848023103999964, 49.479726470000095 ], [ -123.848056085999957, 49.478957406000077 ], [ -123.849133218999953, 49.478642092000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58894166", "BldgCostT": "40616666", "sL_LossRatio": "0.963823463748116", "sL_AssetLoss": "70009.19", "sL_BldgLoss": "67476.5", "sL_StrLoss": "58198.5", "sL_NStrLoss": "9278", "sL_ContLoss": "2532.69", "geom_point": "0101000020E61000003EE3358E1CF75EC011BF41FF2DBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.861499054999939, 49.494681143000065 ], [ -123.86148958199999, 49.494141514000042 ], [ -123.861075356999919, 49.494144598000098 ], [ -123.861065890999896, 49.493604968000064 ], [ -123.860651669999953, 49.493608051000095 ], [ -123.860642206999984, 49.493068421000032 ], [ -123.86022799099996, 49.493071502000085 ], [ -123.860218533999969, 49.492531873000054 ], [ -123.859804321999931, 49.492534952000078 ], [ -123.859799595999974, 49.492265138000079 ], [ -123.85897117699993, 49.492271292000034 ], [ -123.858947569999941, 49.490922217000076 ], [ -123.858533371999926, 49.490925291000075 ], [ -123.858519213999941, 49.490115845000027 ], [ -123.858933405999906, 49.490112771000057 ], [ -123.858928683999977, 49.489842956000054 ], [ -123.858514494999966, 49.489846031000084 ], [ -123.858486183999972, 49.488227140000035 ], [ -123.859314534999925, 49.488220989000084 ], [ -123.859309810999946, 49.487951174000045 ], [ -123.858481465999972, 49.487957324000071 ], [ -123.858462591999952, 49.486878064000102 ], [ -123.858876755999944, 49.486874989000029 ], [ -123.858872036999955, 49.48660517400009 ], [ -123.860114520999943, 49.486595942000058 ], [ -123.86010979299999, 49.486326126000094 ], [ -123.860938111999971, 49.486319965000106 ], [ -123.860933379999935, 49.486050149000121 ], [ -123.862175849999986, 49.486040895000066 ], [ -123.862171111999913, 49.485771080000085 ], [ -123.863413572999889, 49.485761812000064 ], [ -123.863399337999951, 49.484952368000073 ], [ -123.86298519099995, 49.484955458000094 ], [ -123.862980449999924, 49.484685642000031 ], [ -123.862566304999959, 49.484688731000041 ], [ -123.862556822999963, 49.484149102000089 ], [ -123.862142682999902, 49.484152189000106 ], [ -123.862133206999957, 49.483612558000054 ], [ -123.861719071999957, 49.483615645000022 ], [ -123.861709600999916, 49.48307601400009 ], [ -123.860467205999939, 49.483085262000053 ], [ -123.86046247799996, 49.482815448000018 ], [ -123.860048347, 49.482818527000049 ], [ -123.860045366999941, 49.48264837100006 ], [ -123.859631042999951, 49.482640197000066 ], [ -123.85963894199989, 49.483091422000044 ], [ -123.858396544999977, 49.483100648000097 ], [ -123.85838806799994, 49.48261566700009 ], [ -123.855556258999968, 49.482559726000069 ], [ -123.855416690999959, 49.485564267000022 ], [ -123.85350890499997, 49.48552653900007 ], [ -123.85350778699997, 49.485296868000042 ], [ -123.853369280999942, 49.484862984000095 ], [ -123.853155926999975, 49.484554532000061 ], [ -123.852880815, 49.484298848000094 ], [ -123.852455802999955, 49.484032113000069 ], [ -123.850399408999976, 49.483212774000052 ], [ -123.850015245999913, 49.483029500000072 ], [ -123.850069801999936, 49.481857989000041 ], [ -123.855545794999941, 49.481966376000038 ], [ -123.855621218999929, 49.480342517000075 ], [ -123.85623739, 49.480537902000073 ], [ -123.857121299999932, 49.480874999000044 ], [ -123.857824719999925, 49.481030195000116 ], [ -123.858051991999972, 49.481036500000094 ], [ -123.85832919399995, 49.481009514000071 ], [ -123.858747931, 49.480933320000069 ], [ -123.858819488, 49.480920301000012 ], [ -123.85899428299993, 49.480888487000051 ], [ -123.85966709599991, 49.480662403000068 ], [ -123.859934492999969, 49.480519105999988 ], [ -123.8600267299999, 49.480447236000053 ], [ -123.860146320999945, 49.480354105000039 ], [ -123.860370806999967, 49.480124494000052 ], [ -123.860486702999978, 49.480005309000063 ], [ -123.860772298999933, 49.47985789400007 ], [ -123.86115148199994, 49.479802297000091 ], [ -123.861165090999975, 49.479802522000057 ], [ -123.86107573, 49.481731483000011 ], [ -123.862100045999938, 49.481723852000101 ], [ -123.86210478199996, 49.481993667000104 ], [ -123.863761270999944, 49.481981309000062 ], [ -123.863756524999985, 49.481711495000127 ], [ -123.865413003999947, 49.481699113000104 ], [ -123.86542251499999, 49.482238743000025 ], [ -123.865836638999951, 49.48223564400012 ], [ -123.865841395999922, 49.482505458000126 ], [ -123.866255522999964, 49.48250235799999 ], [ -123.866269802999938, 49.483311803000063 ], [ -123.867098069999898, 49.483305597000026 ], [ -123.867093302999976, 49.483035783000055 ], [ -123.868335696999949, 49.483026462000041 ], [ -123.868345238999936, 49.483566092000075 ], [ -123.868759374999925, 49.483562982000066 ], [ -123.868764148999958, 49.483832797000076 ], [ -123.869178285999936, 49.483829686000021 ], [ -123.86918306299998, 49.484099500000085 ], [ -123.869597200999976, 49.484096388000061 ], [ -123.869635432999985, 49.486254904000127 ], [ -123.868392960999969, 49.486264238000089 ], [ -123.868402506999956, 49.48680386800001 ], [ -123.866745856999927, 49.486816293000111 ], [ -123.866750619999905, 49.487086108000028 ], [ -123.865508126999913, 49.487095411000041 ], [ -123.865517640999897, 49.487635041000026 ], [ -123.865103470999955, 49.487638139000104 ], [ -123.865108224999943, 49.487907953000054 ], [ -123.86469405299999, 49.487911050000037 ], [ -123.864698805999936, 49.488180865000167 ], [ -123.863870456999976, 49.488187055000026 ], [ -123.863884700999975, 49.488996499000123 ], [ -123.863470519999936, 49.48899959199999 ], [ -123.863480013, 49.489539222000083 ], [ -123.861409081999952, 49.489554662000018 ], [ -123.861418550999971, 49.490094291000048 ], [ -123.860590169999952, 49.490100457000054 ], [ -123.860594899, 49.490370273000096 ], [ -123.86142328699998, 49.490364107000069 ], [ -123.861428020999981, 49.490633921000061 ], [ -123.861842216999946, 49.490630836000015 ], [ -123.861865903999956, 49.491979910000083 ], [ -123.862694316999978, 49.491973735000087 ], [ -123.862703800999981, 49.492513365000072 ], [ -123.863118011999944, 49.492510274000082 ], [ -123.863132246999939, 49.493319719000034 ], [ -123.863546464999956, 49.493316627000169 ], [ -123.863560706, 49.494126071000039 ], [ -123.862732255999958, 49.494132253 ], [ -123.862741741999983, 49.494671882000013 ], [ -123.861499054999939, 49.494681143000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124569501", "BldgCostT": "85910001", "sL_LossRatio": "0.877518881981765", "sL_AssetLoss": "450919.3", "sL_BldgLoss": "395690.2", "sL_StrLoss": "277486.2", "sL_NStrLoss": "118204", "sL_ContLoss": "55229.1", "geom_point": "0101000020E610000062281F694DF85EC044EB552258BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.873359391999912, 49.478457631000062 ], [ -123.873302205999948, 49.47840120200005 ], [ -123.87255930699996, 49.478414596000121 ], [ -123.872390294999946, 49.478221039000076 ], [ -123.871949906999973, 49.477716700000016 ], [ -123.871823076999988, 49.477504491000019 ], [ -123.87170250399997, 49.476947701000078 ], [ -123.879914501999963, 49.476664699000047 ], [ -123.88224468699994, 49.477052467000078 ], [ -123.882769549, 49.477139787000027 ], [ -123.883101901999964, 49.477195112000139 ], [ -123.883241408999965, 49.477280586000077 ], [ -123.883839394999981, 49.478171695000107 ], [ -123.885481433999971, 49.478160171000098 ], [ -123.885572560999975, 49.478159526000084 ], [ -123.886215885999917, 49.478154995000097 ], [ -123.886240580999939, 49.479272493000046 ], [ -123.88625170399996, 49.479783086000069 ], [ -123.886267593999989, 49.480519705000098 ], [ -123.886290489999965, 49.481737991000081 ], [ -123.885652041999947, 49.481750919000042 ], [ -123.88321940499999, 49.481800073000066 ], [ -123.876906386999934, 49.48192740200011 ], [ -123.876759310999915, 49.481886702000068 ], [ -123.876572289999913, 49.481783093000118 ], [ -123.875961604999958, 49.480868288000103 ], [ -123.875841693999959, 49.480688696000122 ], [ -123.874580581999979, 49.479610797000085 ], [ -123.874192884999985, 49.479280097000121 ], [ -123.873359391999912, 49.478457631000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.889268011136009", "sL_AssetLoss": "23563.2", "sL_BldgLoss": "20954", "sL_StrLoss": "15040", "sL_NStrLoss": "5914", "sL_ContLoss": "2609.2", "geom_point": "0101000020E6100000E8D3CF4091FA5EC0A592AE57E0BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.914200616999921, 49.467812 ], [ -123.913341875999961, 49.467675296000095 ], [ -123.91299818799996, 49.467686696000044 ], [ -123.912654477000018, 49.467841893000113 ], [ -123.912324976999969, 49.467863298000047 ], [ -123.91147670099997, 49.467599807000077 ], [ -123.911321998999952, 49.467430286000138 ], [ -123.911471805999923, 49.46728498500012 ], [ -123.911520993, 49.466987408000072 ], [ -123.912499885999921, 49.466944599000072 ], [ -123.91272001899992, 49.466835005000085 ], [ -123.913326492999914, 49.466891901000068 ], [ -123.913338908999904, 49.466829283000024 ], [ -123.912810899999897, 49.466537314000036 ], [ -123.912791987999967, 49.466347893000048 ], [ -123.913340883000018, 49.466154205000102 ], [ -123.913617803999955, 49.466152800000074 ], [ -123.914225689999952, 49.466211207000072 ], [ -123.91449099799992, 49.46637069500008 ], [ -123.914666122999961, 49.46685490100004 ], [ -123.915153284, 49.46716539500008 ], [ -123.915360892999985, 49.467182515000026 ], [ -123.915443198999924, 49.467064308000062 ], [ -123.915705322999969, 49.467089904000083 ], [ -123.916472311999939, 49.467505796000061 ], [ -123.91789747199999, 49.46750435100008 ], [ -123.917811757999942, 49.469405573000088 ], [ -123.916331482999951, 49.469377142000091 ], [ -123.915853006999953, 49.469139290000015 ], [ -123.914200616999921, 49.467812 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8393083", "BldgCostT": "5788333", "sL_LossRatio": "0.963742212772367", "sL_AssetLoss": "11419.34", "sL_BldgLoss": "11005.3", "sL_StrLoss": "9519.4", "sL_NStrLoss": "1485.9", "sL_ContLoss": "414.04", "geom_point": "0101000020E6100000106734A8ECF65EC05BBD374464BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.856253637999956, 49.4789730520001 ], [ -123.856245897999912, 49.478529128000105 ], [ -123.857074084999908, 49.478522995000091 ], [ -123.857069375999956, 49.478253179000042 ], [ -123.85736043699994, 49.478251022000066 ], [ -123.85739600499997, 49.478312701000128 ], [ -123.857729813999953, 49.478499296000081 ], [ -123.858115183999985, 49.478388206000062 ], [ -123.858143889999951, 49.47824521200004 ], [ -123.859553922999936, 49.478234743000016 ], [ -123.8595633689999, 49.478774373000107 ], [ -123.859977463999911, 49.478771296000112 ], [ -123.859982286999951, 49.479046675000106 ], [ -123.861198992999945, 49.479070673000088 ], [ -123.861165090999975, 49.479802522000057 ], [ -123.86115148199994, 49.479802297000091 ], [ -123.860772298999933, 49.47985789400007 ], [ -123.860486702999978, 49.480005309000063 ], [ -123.860370806999967, 49.480124494000052 ], [ -123.860146320999945, 49.480354105000039 ], [ -123.8600267299999, 49.480447236000053 ], [ -123.859934492999969, 49.480519105999988 ], [ -123.85966709599991, 49.480662403000068 ], [ -123.85899428299993, 49.480888487000051 ], [ -123.858819488, 49.480920301000012 ], [ -123.858747931, 49.480933320000069 ], [ -123.85832919399995, 49.481009514000071 ], [ -123.858051991999972, 49.481036500000094 ], [ -123.857824719999925, 49.481030195000116 ], [ -123.857121299999932, 49.480874999000044 ], [ -123.85623739, 49.480537902000073 ], [ -123.855621218999929, 49.480342517000075 ], [ -123.855685344, 49.478961819000098 ], [ -123.856253637999956, 49.4789730520001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.965190245554508", "sL_AssetLoss": "6377.81", "sL_BldgLoss": "6155.8", "sL_StrLoss": "5239", "sL_NStrLoss": "916.8", "sL_ContLoss": "222.01", "geom_point": "0101000020E6100000508799A65DF65EC0630DDD0D1EBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.848056085999957, 49.478957406000077 ], [ -123.848364066, 49.476178645000047 ], [ -123.848761195999941, 49.476334508000065 ], [ -123.850428090999969, 49.476204793000122 ], [ -123.850835593999989, 49.476347147000055 ], [ -123.850732395999941, 49.478564201000012 ], [ -123.84962050099999, 49.478542164000082 ], [ -123.849618947999915, 49.478575498000033 ], [ -123.849605398999941, 49.478574894000076 ], [ -123.849133218999953, 49.478642092000023 ], [ -123.848056085999957, 49.478957406000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151007833", "BldgCostT": "104143333", "sL_LossRatio": "0.848459331494582", "sL_AssetLoss": "793292", "sL_BldgLoss": "673076", "sL_StrLoss": "431297", "sL_NStrLoss": "241779", "sL_ContLoss": "120216", "geom_point": "0101000020E6100000499CB22658F85EC0C1E76603D9BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.903795389999971, 49.484104601000098 ], [ -123.902696595999913, 49.483202181000081 ], [ -123.902409270999939, 49.482966198000035 ], [ -123.902361895999917, 49.482857288000027 ], [ -123.90235459299997, 49.482713098000033 ], [ -123.902512286999979, 49.482186897000084 ], [ -123.902501425999958, 49.482062498000076 ], [ -123.902405012999921, 49.481907606000078 ], [ -123.902104115999947, 49.481788399000045 ], [ -123.901770132999957, 49.48169032700013 ], [ -123.901275984999955, 49.48154520500006 ], [ -123.901126512999909, 49.481501310000105 ], [ -123.901015779999938, 49.481428666000099 ], [ -123.900483391999984, 49.48107929200004 ], [ -123.900406562999962, 49.481066147000021 ], [ -123.89855721, 49.480749385000102 ], [ -123.89778658099999, 49.480765098000091 ], [ -123.897463650999924, 49.480902885000077 ], [ -123.897419201999924, 49.480921840000072 ], [ -123.897294086999963, 49.480975214000068 ], [ -123.897082534999953, 49.480982691000058 ], [ -123.896769019999965, 49.480993799000011 ], [ -123.895417954999942, 49.480804033000034 ], [ -123.894872989999968, 49.480727495000096 ], [ -123.894760907999938, 49.480647312000059 ], [ -123.894538554999912, 49.480488235000081 ], [ -123.893784110999917, 49.479948494000062 ], [ -123.89297837, 49.479667019000097 ], [ -123.892875579999938, 49.479631102000056 ], [ -123.89290585699996, 49.48160826900007 ], [ -123.892913556999972, 49.482111573000083 ], [ -123.89291370499997, 49.482120600000066 ], [ -123.88976351299999, 49.4816723980001 ], [ -123.88857304299999, 49.481694900000079 ], [ -123.887759007999989, 49.48171026500011 ], [ -123.886290489999965, 49.481737991000081 ], [ -123.886267593999989, 49.480519705000098 ], [ -123.88625170399996, 49.479783086000069 ], [ -123.886240580999939, 49.479272493000046 ], [ -123.886215885999917, 49.478154995000097 ], [ -123.885572560999975, 49.478159526000084 ], [ -123.885481433999971, 49.478160171000098 ], [ -123.883839394999981, 49.478171695000107 ], [ -123.883241408999965, 49.477280586000077 ], [ -123.883101901999964, 49.477195112000139 ], [ -123.882769549, 49.477139787000027 ], [ -123.88224468699994, 49.477052467000078 ], [ -123.882466538999964, 49.47623636700007 ], [ -123.88390843599997, 49.474870182000153 ], [ -123.881840917999909, 49.47442870200009 ], [ -123.881406158999937, 49.474301774000033 ], [ -123.881160292999937, 49.474229993000051 ], [ -123.880769899999976, 49.474089878000093 ], [ -123.879481504, 49.473627413000074 ], [ -123.877669879999985, 49.473108235000062 ], [ -123.875776307999942, 49.474162488000083 ], [ -123.874019200999953, 49.473614995000098 ], [ -123.874002849999954, 49.47360861000007 ], [ -123.872830809999954, 49.473150592000081 ], [ -123.871632134, 49.472587026000042 ], [ -123.869950202999931, 49.473692700000065 ], [ -123.868504655999985, 49.47300889900005 ], [ -123.868093922999947, 49.472814593000109 ], [ -123.867797482999947, 49.472720594000094 ], [ -123.86761658599994, 49.472695405000046 ], [ -123.867239010999938, 49.472716810000051 ], [ -123.866163499999956, 49.473005283000106 ], [ -123.865483591000014, 49.472196207000046 ], [ -123.864967907999969, 49.471773806000101 ], [ -123.864955615999961, 49.471681687000078 ], [ -123.86503030599999, 49.471557202000078 ], [ -123.865205100999987, 49.471416586000082 ], [ -123.865780173999937, 49.471295775000137 ], [ -123.866704576999922, 49.471101554000072 ], [ -123.867085619999955, 49.471021502000077 ], [ -123.867258417999949, 49.471013198000072 ], [ -123.867712930999943, 49.471059107000045 ], [ -123.868495099999976, 49.471206787 ], [ -123.868798709999936, 49.471288308000084 ], [ -123.868965193999955, 49.471332998000072 ], [ -123.870224100999963, 49.470057098000019 ], [ -123.86889867, 49.469747202000114 ], [ -123.868227597999947, 49.469590296000064 ], [ -123.867562984999978, 49.46949440600013 ], [ -123.866337770999962, 49.469512887000093 ], [ -123.865879015999965, 49.46951978800012 ], [ -123.865368192999981, 49.469617801 ], [ -123.865012998999958, 49.469753908000044 ], [ -123.864510246999913, 49.470023917000056 ], [ -123.863937904999943, 49.470331303000151 ], [ -123.863465314999985, 49.470707190000056 ], [ -123.862740487999957, 49.470512893000027 ], [ -123.861002591999949, 49.470270705000075 ], [ -123.859530894999921, 49.469821311000068 ], [ -123.858752596999963, 49.469857303000055 ], [ -123.860565603999987, 49.471901201000087 ], [ -123.862913521999957, 49.471454306000048 ], [ -123.862808581999971, 49.47163399099999 ], [ -123.862712417999944, 49.472013800000084 ], [ -123.862709018999951, 49.472533099000067 ], [ -123.863084393999898, 49.47345319800008 ], [ -123.863532087999943, 49.473974194000043 ], [ -123.863838796999971, 49.474202614 ], [ -123.864716012999978, 49.474731070000068 ], [ -123.86534468799999, 49.475109798000098 ], [ -123.865921884999977, 49.475546910000105 ], [ -123.866744379999929, 49.476561980000042 ], [ -123.866245191999951, 49.47656571900005 ], [ -123.866206849999941, 49.477395423000111 ], [ -123.861491366999985, 49.477302560000027 ], [ -123.862269292999912, 49.476774506000069 ], [ -123.862563515999952, 49.476294603000078 ], [ -123.862757804999902, 49.475465685000117 ], [ -123.862648887999939, 49.474837605000118 ], [ -123.862227707999978, 49.474462990000099 ], [ -123.861437396999975, 49.474153990000062 ], [ -123.858353412999989, 49.472342393000083 ], [ -123.857248897999966, 49.471531988 ], [ -123.85678609199995, 49.471057811000044 ], [ -123.85580928899995, 49.470418311000103 ], [ -123.855594708999945, 49.470050802000102 ], [ -123.855605386999926, 49.469034004000079 ], [ -123.855877298999957, 49.468870198000069 ], [ -123.85646898899995, 49.468730588000049 ], [ -123.857875511999936, 49.468603806000026 ], [ -123.858965416, 49.468622397000019 ], [ -123.860654001999976, 49.468915700000125 ], [ -123.861262810999946, 49.468928594000083 ], [ -123.862446594999966, 49.468776191000082 ], [ -123.864660809999961, 49.468291890000074 ], [ -123.865430194999959, 49.468188007000016 ], [ -123.869290313999983, 49.467843292000076 ], [ -123.870918391999979, 49.467867516000091 ], [ -123.870955306999974, 49.46787824700003 ], [ -123.872001277999942, 49.468182297000105 ], [ -123.872613179, 49.468492799000067 ], [ -123.875080770999958, 49.469403132000046 ], [ -123.875072563999979, 49.469581513000072 ], [ -123.875591910999972, 49.469591688000087 ], [ -123.876435000999891, 49.469902688000055 ], [ -123.877214383999956, 49.470311502000072 ], [ -123.879674118999958, 49.471228704000048 ], [ -123.880286309999931, 49.471574702000055 ], [ -123.881200710999934, 49.471765605000044 ], [ -123.882047049999926, 49.472064239000133 ], [ -123.882042736999892, 49.472158251000103 ], [ -123.882329346999967, 49.472163847000111 ], [ -123.882645808999939, 49.472275508000038 ], [ -123.885248574999977, 49.473407697000056 ], [ -123.886175796999922, 49.473571500000034 ], [ -123.888215987999942, 49.473456110000015 ], [ -123.888555389999908, 49.473876291000074 ], [ -123.888705293999962, 49.474549913000068 ], [ -123.889285009999966, 49.475283408000074 ], [ -123.891517494999931, 49.47658799200007 ], [ -123.89220088499998, 49.476952591000092 ], [ -123.89340950699993, 49.477382705000153 ], [ -123.893858595999987, 49.477847010000104 ], [ -123.894067387999911, 49.477953798000115 ], [ -123.894385707999959, 49.477960888000069 ], [ -123.895016292999941, 49.478477903000062 ], [ -123.896003505999943, 49.478892286000104 ], [ -123.896864617999967, 49.479128707000044 ], [ -123.897350488999933, 49.479217127 ], [ -123.897783155999917, 49.479295847000124 ], [ -123.898899700999948, 49.479499003000065 ], [ -123.900358911999959, 49.479956192000067 ], [ -123.90150711899993, 49.480073 ], [ -123.901951702, 49.48024960300009 ], [ -123.902386290999985, 49.480588595000057 ], [ -123.902418297999986, 49.480822091000093 ], [ -123.902638227999972, 49.4809331330001 ], [ -123.902821775999939, 49.481025794000097 ], [ -123.903272194999929, 49.481436008000102 ], [ -123.903487985999959, 49.481910190000058 ], [ -123.903878396000025, 49.482113888000121 ], [ -123.903930292999945, 49.482699197000059 ], [ -123.904366484999954, 49.48324329600009 ], [ -123.905439898999973, 49.483748906000102 ], [ -123.906078513999944, 49.483959697000095 ], [ -123.906801011999946, 49.484133401000058 ], [ -123.907129390999941, 49.48397819400008 ], [ -123.90729431199999, 49.483985300000036 ], [ -123.90812351699999, 49.484788595000111 ], [ -123.90826989199999, 49.48520159000001 ], [ -123.90819101699999, 49.485453699000061 ], [ -123.90787740899998, 49.48569009100008 ], [ -123.907673004999978, 49.486483394000096 ], [ -123.906814404999949, 49.487174106000069 ], [ -123.906700921000024, 49.487749498000042 ], [ -123.90645880799994, 49.488031501000094 ], [ -123.906445579999939, 49.488212161000092 ], [ -123.906127447999964, 49.488276164000041 ], [ -123.905719851999962, 49.488358147000035 ], [ -123.905023245, 49.488440566000051 ], [ -123.90456794399995, 49.488526094000093 ], [ -123.904424607999943, 49.488389507000079 ], [ -123.90439573499998, 49.488310477000091 ], [ -123.904391774999951, 49.488307932000076 ], [ -123.904293640999967, 49.488227761000061 ], [ -123.904264211999987, 49.488129038000075 ], [ -123.904289339999963, 49.487993917000082 ], [ -123.904341072999955, 49.487804608 ], [ -123.904338429999953, 49.487660708000078 ], [ -123.904438682999938, 49.487512281000122 ], [ -123.904472815999952, 49.487461765000042 ], [ -123.904526551999965, 49.48738040700006 ], [ -123.904633528999938, 49.487190657000099 ], [ -123.904686426999959, 49.487064316000108 ], [ -123.904681630999946, 49.486803496000043 ], [ -123.904665475999977, 49.486677702000094 ], [ -123.904592485999942, 49.486462378000091 ], [ -123.904507339999938, 49.486337141000057 ], [ -123.904436503999975, 49.486238738000026 ], [ -123.90429497699995, 49.486050960000085 ], [ -123.90422793899999, 49.485900736000048 ], [ -123.904222942, 49.485889601000075 ], [ -123.904193512999953, 49.485790878000088 ], [ -123.904192052999989, 49.485711353000099 ], [ -123.904155477999964, 49.485653399000071 ], [ -123.904162937999928, 49.485389680000068 ], [ -123.904178187999918, 49.484850105000149 ], [ -123.904130440999964, 49.484757079000069 ], [ -123.903985601999977, 49.484475045000082 ], [ -123.903795389999971, 49.484104601000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3771667", "BldgCostT": "2391667", "sL_LossRatio": "0.612971639950678", "sL_AssetLoss": "20275", "sL_BldgLoss": "12428", "sL_StrLoss": "5185", "sL_NStrLoss": "7243", "sL_ContLoss": "7847", "geom_point": "0101000020E6100000001B1021EE005FC0BDAE995BA5C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.012886658999946, 49.506338729000035 ], [ -124.012998319999923, 49.503745637000122 ], [ -124.015982119999975, 49.504120805000134 ], [ -124.016745181999937, 49.504286 ], [ -124.016842705000016, 49.504392791000093 ], [ -124.016835004999962, 49.504680502000028 ], [ -124.016592691999961, 49.504988107000081 ], [ -124.015465413999962, 49.505816994000142 ], [ -124.015002946, 49.506377450000038 ], [ -124.012886658999946, 49.506338729000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "340716996", "BldgCostT": "225379049", "sL_LossRatio": "0.827334566043122", "sL_AssetLoss": "256399.9", "sL_BldgLoss": "212128.5", "sL_StrLoss": "130716.5", "sL_NStrLoss": "81412", "sL_ContLoss": "44271.4", "geom_point": "0101000020E610000040E31D3B03FA5EC001EC489AE4BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.911239112999937, 49.514122821000122 ], [ -123.91046787599997, 49.51410489200002 ], [ -123.910390187999937, 49.514108145000094 ], [ -123.908967001999926, 49.514167799000077 ], [ -123.907613117, 49.514185808000022 ], [ -123.906952881999985, 49.514130103000042 ], [ -123.906866297999954, 49.514122790000101 ], [ -123.906442703999957, 49.514052494000047 ], [ -123.905927546999933, 49.51396696900013 ], [ -123.904975869999973, 49.513706537000139 ], [ -123.904899331999971, 49.513685598000066 ], [ -123.903708802, 49.513359776000065 ], [ -123.903369004999945, 49.513240680000138 ], [ -123.90255961199999, 49.512823677000021 ], [ -123.902069690999923, 49.51242270700002 ], [ -123.901827705999963, 49.512157896000097 ], [ -123.900377581999948, 49.510576071000116 ], [ -123.901000189999962, 49.510571224000024 ], [ -123.901037438999964, 49.509752421000059 ], [ -123.902042266999942, 49.509771846000071 ], [ -123.902083348999923, 49.508868344000078 ], [ -123.902256114999915, 49.508871683000116 ], [ -123.902310609, 49.507673046000072 ], [ -123.90269535299997, 49.507680480000076 ], [ -123.902711513999961, 49.507324955000016 ], [ -123.90320069799999, 49.507334406000027 ], [ -123.903218014999936, 49.506953367000058 ], [ -123.904498315999945, 49.506978091000121 ], [ -123.904498360999952, 49.506977099000011 ], [ -123.904664167999954, 49.506980299000112 ], [ -123.904764679, 49.504766799000045 ], [ -123.904894756999965, 49.504769310000036 ], [ -123.905011318999968, 49.502201898000088 ], [ -123.90551621399996, 49.502211643000052 ], [ -123.905753623999942, 49.502216224000072 ], [ -123.905770449999977, 49.501845469 ], [ -123.905825174999947, 49.500639514000071 ], [ -123.906717777999987, 49.50065673400011 ], [ -123.906767533000021, 49.499559812 ], [ -123.906303441999938, 49.499550860000099 ], [ -123.906326426999954, 49.499044221000084 ], [ -123.906261071999921, 49.499042961000093 ], [ -123.906284397999968, 49.498528840000056 ], [ -123.906181799999928, 49.49852686000002 ], [ -123.906208212999957, 49.497944696000069 ], [ -123.906066332999927, 49.497941958000077 ], [ -123.906080399999937, 49.497631908000052 ], [ -123.90547083, 49.497620144000059 ], [ -123.905544684999967, 49.495992742000027 ], [ -123.904652900999977, 49.495975527000013 ], [ -123.904757128999975, 49.493679599000053 ], [ -123.903856811999944, 49.493662212000075 ], [ -123.903871215, 49.49334506100012 ], [ -123.903490317999953, 49.493337703000044 ], [ -123.903547559999936, 49.492077430000052 ], [ -123.903586778999937, 49.491213926000071 ], [ -123.901560477999979, 49.491174758000028 ], [ -123.901600492999989, 49.490294554000108 ], [ -123.900249883999948, 49.490268426000036 ], [ -123.900406326, 49.486829026000116 ], [ -123.900297730999938, 49.486829872000136 ], [ -123.900292784, 49.486560059000034 ], [ -123.89987862699995, 49.486563282000127 ], [ -123.89983906399999, 49.484404782000055 ], [ -123.899010786999938, 49.484411223000073 ], [ -123.89900584599998, 49.484141411000117 ], [ -123.898177574999963, 49.484147845000095 ], [ -123.898172637999934, 49.483878032000106 ], [ -123.897344369999971, 49.483884461000081 ], [ -123.897339436999985, 49.48361464800012 ], [ -123.896925306999918, 49.483617860000038 ], [ -123.896920377999933, 49.48334804800006 ], [ -123.896506246999948, 49.48335125800002 ], [ -123.896505507999947, 49.483310757000076 ], [ -123.894512396999971, 49.483272094000085 ], [ -123.894516422999956, 49.483183824 ], [ -123.893586369999966, 49.483165770000063 ], [ -123.893598882999925, 49.482891494000071 ], [ -123.89306918199999, 49.482881208 ], [ -123.89291370499997, 49.482120600000066 ], [ -123.892913556999972, 49.482111573000083 ], [ -123.89290585699996, 49.48160826900007 ], [ -123.892875579999938, 49.479631102000056 ], [ -123.89297837, 49.479667019000097 ], [ -123.893784110999917, 49.479948494000062 ], [ -123.894538554999912, 49.480488235000081 ], [ -123.894760907999938, 49.480647312000059 ], [ -123.894872989999968, 49.480727495000096 ], [ -123.895417954999942, 49.480804033000034 ], [ -123.896769019999965, 49.480993799000011 ], [ -123.897082534999953, 49.480982691000058 ], [ -123.897294086999963, 49.480975214000068 ], [ -123.897419201999924, 49.480921840000072 ], [ -123.897463650999924, 49.480902885000077 ], [ -123.89778658099999, 49.480765098000091 ], [ -123.89855721, 49.480749385000102 ], [ -123.900406562999962, 49.481066147000021 ], [ -123.900483391999984, 49.48107929200004 ], [ -123.901015779999938, 49.481428666000099 ], [ -123.901126512999909, 49.481501310000105 ], [ -123.901275984999955, 49.48154520500006 ], [ -123.901770132999957, 49.48169032700013 ], [ -123.902104115999947, 49.481788399000045 ], [ -123.902405012999921, 49.481907606000078 ], [ -123.902501425999958, 49.482062498000076 ], [ -123.902512286999979, 49.482186897000084 ], [ -123.90235459299997, 49.482713098000033 ], [ -123.902361895999917, 49.482857288000027 ], [ -123.902409270999939, 49.482966198000035 ], [ -123.902696595999913, 49.483202181000081 ], [ -123.903795389999971, 49.484104601000098 ], [ -123.903985601999977, 49.484475045000082 ], [ -123.904130440999964, 49.484757079000069 ], [ -123.904178187999918, 49.484850105000149 ], [ -123.904162937999928, 49.485389680000068 ], [ -123.904155477999964, 49.485653399000071 ], [ -123.904192052999989, 49.485711353000099 ], [ -123.904193512999953, 49.485790878000088 ], [ -123.904222942, 49.485889601000075 ], [ -123.90422793899999, 49.485900736000048 ], [ -123.90429497699995, 49.486050960000085 ], [ -123.904436503999975, 49.486238738000026 ], [ -123.904507339999938, 49.486337141000057 ], [ -123.904592485999942, 49.486462378000091 ], [ -123.904665475999977, 49.486677702000094 ], [ -123.904681630999946, 49.486803496000043 ], [ -123.904686426999959, 49.487064316000108 ], [ -123.904633528999938, 49.487190657000099 ], [ -123.904526551999965, 49.48738040700006 ], [ -123.904472815999952, 49.487461765000042 ], [ -123.904438682999938, 49.487512281000122 ], [ -123.904338429999953, 49.487660708000078 ], [ -123.904341072999955, 49.487804608 ], [ -123.904289339999963, 49.487993917000082 ], [ -123.904264211999987, 49.488129038000075 ], [ -123.904293640999967, 49.488227761000061 ], [ -123.904391774999951, 49.488307932000076 ], [ -123.90439573499998, 49.488310477000091 ], [ -123.904424607999943, 49.488389507000079 ], [ -123.90456794399995, 49.488526094000093 ], [ -123.905023245, 49.488440566000051 ], [ -123.905719851999962, 49.488358147000035 ], [ -123.906127447999964, 49.488276164000041 ], [ -123.906445579999939, 49.488212161000092 ], [ -123.906436489999976, 49.488336297000046 ], [ -123.906863499999957, 49.489025610000084 ], [ -123.907675113999986, 49.489649394000011 ], [ -123.90873630599998, 49.490261802000099 ], [ -123.908960783999945, 49.490512494000029 ], [ -123.909290377999966, 49.491103497000104 ], [ -123.909492025999938, 49.491788757000066 ], [ -123.909541010999988, 49.491955199000117 ], [ -123.90975666199995, 49.492256325000113 ], [ -123.909951005999943, 49.492527686000074 ], [ -123.910371396999935, 49.493541686000128 ], [ -123.910877389999925, 49.494067311000066 ], [ -123.910961321999977, 49.494903304000076 ], [ -123.910880421999963, 49.495003003000129 ], [ -123.911091893, 49.495910206000104 ], [ -123.911353024000022, 49.496546804000111 ], [ -123.912105109999942, 49.497700403000088 ], [ -123.91229639699999, 49.498284413000057 ], [ -123.91224419299999, 49.498527901000081 ], [ -123.911314111999985, 49.498985097000102 ], [ -123.910667199, 49.499862399000051 ], [ -123.910361083999959, 49.500457697000066 ], [ -123.910057116999937, 49.503393001000077 ], [ -123.909949079999933, 49.503538293000069 ], [ -123.909511012999971, 49.503757590000099 ], [ -123.908362683999925, 49.50521459600008 ], [ -123.908329118999987, 49.505556396000067 ], [ -123.909106378999965, 49.505811297000072 ], [ -123.909246195999955, 49.505936598000055 ], [ -123.909325010999964, 49.506349687000075 ], [ -123.909229296999953, 49.506476386000045 ], [ -123.908974659999942, 49.506563613000125 ], [ -123.908721911000029, 49.50665019100002 ], [ -123.90801251799995, 49.507088795000115 ], [ -123.907577091999926, 49.507531805000042 ], [ -123.907750180000022, 49.507944796000068 ], [ -123.908463293999915, 49.508389090000065 ], [ -123.908536683999927, 49.508595606000078 ], [ -123.908501584999954, 49.508964500000054 ], [ -123.908093892999986, 49.509344801000111 ], [ -123.908200482999959, 49.509847498000049 ], [ -123.908870108999963, 49.510239200000115 ], [ -123.90891610599999, 49.510391596000069 ], [ -123.908574495999957, 49.511328699000074 ], [ -123.908247691999918, 49.511673410000064 ], [ -123.908254299999967, 49.512042210000104 ], [ -123.90843755799996, 49.512124486000104 ], [ -123.908590601999947, 49.512193197000087 ], [ -123.908754317999964, 49.512110605000139 ], [ -123.90908730699999, 49.511513793000049 ], [ -123.909636705999944, 49.511267494000073 ], [ -123.910494705999938, 49.511322986000025 ], [ -123.911426103999958, 49.510955609000057 ], [ -123.912088390999926, 49.510959802000087 ], [ -123.912284394999986, 49.511066615000118 ], [ -123.912219191999938, 49.511310191000128 ], [ -123.91201771599999, 49.511518093000099 ], [ -123.912918411999939, 49.511735999000095 ], [ -123.913048402999934, 49.511959592000096 ], [ -123.912869915999977, 49.512069308000093 ], [ -123.912358897999965, 49.512109189000071 ], [ -123.912251, 49.512254403000028 ], [ -123.912283285999976, 49.512487998000026 ], [ -123.913092803999945, 49.512876810000122 ], [ -123.913701896999981, 49.512962290000054 ], [ -123.914639984999923, 49.51296370400005 ], [ -123.914968117999962, 49.512772903000062 ], [ -123.914990807999985, 49.512466604000075 ], [ -123.915297240999976, 49.512441042000056 ], [ -123.915349399999954, 49.51243669200003 ], [ -123.915820309999901, 49.512522208000043 ], [ -123.915965779999965, 49.512107695000033 ], [ -123.91621031299999, 49.511881294000098 ], [ -123.916660393999919, 49.511651994000019 ], [ -123.917089708999953, 49.511649206000115 ], [ -123.917463891999887, 49.511763090000038 ], [ -123.91766070099996, 49.511976689000036 ], [ -123.918480603999981, 49.512186089000117 ], [ -123.918894611999974, 49.512139089000087 ], [ -123.919181194999979, 49.511919710000058 ], [ -123.919353110999978, 49.511613492000016 ], [ -123.918973595999958, 49.51122050300004 ], [ -123.919027297999932, 49.511102197000078 ], [ -123.91916440299994, 49.511092298000094 ], [ -123.919986290999987, 49.511482501000017 ], [ -123.920591190999943, 49.511342906000024 ], [ -123.921201990999947, 49.51144550600003 ], [ -123.922110486999969, 49.51202229500003 ], [ -123.922471691999945, 49.512177348000058 ], [ -123.922584374999985, 49.512225719000092 ], [ -123.922615645999983, 49.512305708000049 ], [ -123.922657488999974, 49.512413903000095 ], [ -123.922479903, 49.512542103000094 ], [ -123.922511702999913, 49.51274861200001 ], [ -123.92263669099998, 49.512836915000044 ], [ -123.92331550199998, 49.512895310000026 ], [ -123.923637358999983, 49.512837824000066 ], [ -123.925971271999913, 49.51414472400004 ], [ -123.925646981999989, 49.514294221000085 ], [ -123.924691717999963, 49.514505479000036 ], [ -123.924463852999978, 49.514086594000034 ], [ -123.924404795999976, 49.513977964000091 ], [ -123.924234961999957, 49.513763228000101 ], [ -123.924111406999955, 49.513686168000035 ], [ -123.92392576499999, 49.513638514000078 ], [ -123.923322124999984, 49.513644956000071 ], [ -123.923286243999939, 49.51364214300002 ], [ -123.922141683999925, 49.513552160000124 ], [ -123.92109902299994, 49.513405296000045 ], [ -123.920290055999928, 49.513409783000064 ], [ -123.919822968999981, 49.513412353 ], [ -123.919326280999954, 49.513617075000113 ], [ -123.919013059999941, 49.51370980700009 ], [ -123.9189037, 49.513742191000027 ], [ -123.918688203999963, 49.513776704000044 ], [ -123.918142803999928, 49.513898587000035 ], [ -123.916707417999959, 49.514438110000093 ], [ -123.916338715999956, 49.514561503000053 ], [ -123.915760886999962, 49.514698888000062 ], [ -123.915626099999926, 49.51477998700004 ], [ -123.915394267999901, 49.515020399000036 ], [ -123.915050476999937, 49.514896792000059 ], [ -123.91342297199995, 49.51440200400009 ], [ -123.912715118999969, 49.514270490000065 ], [ -123.911568598999963, 49.514130504000057 ], [ -123.911239112999937, 49.514122821000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71767834", "BldgCostT": "50463334", "sL_LossRatio": "0.937860176759637", "sL_AssetLoss": "16207.32", "sL_BldgLoss": "15200.2", "sL_StrLoss": "10550", "sL_NStrLoss": "4650.2", "sL_ContLoss": "1007.12", "geom_point": "0101000020E61000000274A1EABEFE5EC06E829819F0BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.97836342299999, 49.501921439000128 ], [ -123.97852099499994, 49.498324202000063 ], [ -123.978726199, 49.498328024000017 ], [ -123.978759129999901, 49.497576105000057 ], [ -123.983350613999932, 49.49766152200003 ], [ -123.983423593999987, 49.497800110000085 ], [ -123.983398895999954, 49.49866459800009 ], [ -123.982962984999972, 49.498965094000063 ], [ -123.98205368899994, 49.49900790100007 ], [ -123.981931, 49.499072003000094 ], [ -123.981864799999968, 49.499217200000054 ], [ -123.982062607000017, 49.499449395000084 ], [ -123.981928282999917, 49.499711396000102 ], [ -123.981917697999947, 49.500530305000055 ], [ -123.98153290299993, 49.500560212000039 ], [ -123.981213005999962, 49.500463389000046 ], [ -123.980909588999936, 49.500484793000041 ], [ -123.980816302000022, 49.50065570500005 ], [ -123.980891304999957, 49.501024507000039 ], [ -123.981191007999939, 49.50147170300005 ], [ -123.981174660999912, 49.501973766000091 ], [ -123.97836342299999, 49.501921439000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14890083", "BldgCostT": "9378333", "sL_LossRatio": "0.662013180863327", "sL_AssetLoss": "35993.09", "sL_BldgLoss": "23827.9", "sL_StrLoss": "13181", "sL_NStrLoss": "10646.9", "sL_ContLoss": "12165.19", "geom_point": "0101000020E6100000364158B6A4FE5EC022F87C203BBF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.978392151999984, 49.49659555300007 ], [ -123.978411584999961, 49.496151883000039 ], [ -123.976647613999972, 49.496119009000054 ], [ -123.976670929999969, 49.495587144000091 ], [ -123.975788515999923, 49.495570688000079 ], [ -123.975813239999937, 49.495006948000047 ], [ -123.97549874, 49.495001081000076 ], [ -123.975656512999933, 49.491403812000058 ], [ -123.975764874999967, 49.491405833000087 ], [ -123.975786133999932, 49.490921014000087 ], [ -123.981301486999925, 49.491023763000015 ], [ -123.981255629999964, 49.492072326000049 ], [ -123.981461746999983, 49.492076161000043 ], [ -123.981451434999926, 49.492311951000026 ], [ -123.981063902999963, 49.492315484000038 ], [ -123.979525994999975, 49.492076212000043 ], [ -123.979210192000011, 49.492232889000071 ], [ -123.979080299999964, 49.492539102000123 ], [ -123.97860200299999, 49.492812612000137 ], [ -123.978518407999914, 49.4935516910001 ], [ -123.978798193999978, 49.493665701000033 ], [ -123.979338084999966, 49.4936969890001 ], [ -123.980684507999953, 49.49404589100007 ], [ -123.980862409999958, 49.494017401000043 ], [ -123.980955392999959, 49.493855095000114 ], [ -123.981246697999964, 49.493887791000084 ], [ -123.981485799999945, 49.494084404000056 ], [ -123.981436409999958, 49.494407695000099 ], [ -123.981868984999934, 49.49461129500007 ], [ -123.982097099, 49.495032891000108 ], [ -123.983356288999971, 49.495794810000092 ], [ -123.983825183999954, 49.496430101000023 ], [ -123.983815259999986, 49.496696442000037 ], [ -123.978392151999984, 49.49659555300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4484583", "BldgCostT": "2883333", "sL_LossRatio": "0.615184791592868", "sL_AssetLoss": "10162.8", "sL_BldgLoss": "6252", "sL_StrLoss": "3658", "sL_NStrLoss": "2594", "sL_ContLoss": "3910.8", "geom_point": "0101000020E6100000830A602D2BFE5EC04BF1E99890C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.974421193999945, 49.537464415000095 ], [ -123.974122109999925, 49.537042790000072 ], [ -123.973418791000014, 49.53712111400003 ], [ -123.972505413999912, 49.53706559700008 ], [ -123.971973413999962, 49.536700990000021 ], [ -123.971493508999941, 49.536957301000037 ], [ -123.971230695999964, 49.536960185000076 ], [ -123.970470790999954, 49.536192508000056 ], [ -123.970176814999974, 49.536095697000086 ], [ -123.970029790999916, 49.536349214000083 ], [ -123.969716611999957, 49.536585593000076 ], [ -123.968972496000021, 49.53591770000002 ], [ -123.968726084999972, 49.535335194000019 ], [ -123.968487191999984, 49.535165700000029 ], [ -123.968622701999919, 49.535065988000042 ], [ -123.969120400999884, 49.535034708000119 ], [ -123.969157309999986, 49.534818196000082 ], [ -123.968762397999967, 49.534443597000084 ], [ -123.968602338999972, 49.534231825000091 ], [ -123.972577679999958, 49.534306100000087 ], [ -123.972510033999953, 49.535844664000095 ], [ -123.97253367499999, 49.535845106000096 ], [ -123.972519232999915, 49.536173585000014 ], [ -123.972659491999977, 49.536176202000036 ], [ -123.972638732999911, 49.53664835400015 ], [ -123.974274815999934, 49.536678877000107 ], [ -123.974311083999979, 49.535853298000063 ], [ -123.974986062999932, 49.535865884000032 ], [ -123.974715604000025, 49.536292201000023 ], [ -123.974734316999914, 49.536579895000031 ], [ -123.975111575999961, 49.536773595000078 ], [ -123.975143992999961, 49.537044215000059 ], [ -123.974941705999981, 49.537314799000065 ], [ -123.974696496999982, 49.53743450200006 ], [ -123.974421193999945, 49.537464415000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28195416", "BldgCostT": "16791666", "sL_LossRatio": "0.662990203558458", "sL_AssetLoss": "163835", "sL_BldgLoss": "108621", "sL_StrLoss": "50460", "sL_NStrLoss": "58161", "sL_ContLoss": "55214", "geom_point": "0101000020E61000007FE9277BCFFE5EC09F5AA6F486BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.98444170499999, 49.489354600000098 ], [ -123.983336398999981, 49.489319007000084 ], [ -123.982221387999914, 49.489489893000062 ], [ -123.980578708999928, 49.490233286000084 ], [ -123.980572405999908, 49.490459482000063 ], [ -123.97603854499998, 49.490375007000111 ], [ -123.97619625899992, 49.486777713000059 ], [ -123.976932844, 49.486791450000091 ], [ -123.976940338999938, 49.486620430000123 ], [ -123.977286852999939, 49.486626891000085 ], [ -123.977303644999978, 49.486243638000062 ], [ -123.978631733000029, 49.486268389000038 ], [ -123.978633394, 49.486230471000091 ], [ -123.980124902999989, 49.486258249000059 ], [ -123.980131239999977, 49.486113408000037 ], [ -123.983664760999957, 49.486179134000025 ], [ -123.983869502999966, 49.486219898000051 ], [ -123.98489838799999, 49.48661580600006 ], [ -123.986015489999915, 49.487263813 ], [ -123.986214792999959, 49.487513113000041 ], [ -123.986287288999932, 49.489788991000054 ], [ -123.98645179099999, 49.490362907000062 ], [ -123.986704391999979, 49.490639194000074 ], [ -123.987742900999976, 49.491395503000078 ], [ -123.989176987999926, 49.492057709000051 ], [ -123.989348082999953, 49.492254304000028 ], [ -123.989364691999981, 49.492460803000036 ], [ -123.989224385999961, 49.492974904000093 ], [ -123.988900201999925, 49.493319595000102 ], [ -123.988706482999973, 49.493365092000026 ], [ -123.987726315999922, 49.491943797000019 ], [ -123.987318595, 49.49165040200009 ], [ -123.986498085999983, 49.491334202000111 ], [ -123.985651305999966, 49.490459799000092 ], [ -123.98516689899995, 49.489636598000047 ], [ -123.984955198999955, 49.489494094000058 ], [ -123.98444170499999, 49.489354600000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259868572", "BldgCostT": "177525918", "sL_LossRatio": "0.902160507225098", "sL_AssetLoss": "391621", "sL_BldgLoss": "353305", "sL_StrLoss": "172280", "sL_NStrLoss": "181025", "sL_ContLoss": "38316", "geom_point": "0101000020E6100000219D2E492D005FC07261C5259EC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.000739196, 49.509156815000019 ], [ -124.000000396999937, 49.509099811000119 ], [ -123.998513211999921, 49.509104099000112 ], [ -123.998333491999944, 49.509051402000075 ], [ -123.997192619999936, 49.50862980000003 ], [ -123.996112120999939, 49.50778380000007 ], [ -123.996047200999953, 49.507299608000068 ], [ -123.995688605999959, 49.506654404000066 ], [ -123.995567285999925, 49.506197292000067 ], [ -123.99575401599995, 49.505871107000118 ], [ -123.996422594999927, 49.50542539900006 ], [ -123.997023692999974, 49.504375710000076 ], [ -123.997056398999987, 49.503998308000078 ], [ -123.996917481999972, 49.503316093000102 ], [ -123.996713356000015, 49.502988588000051 ], [ -123.998797188999959, 49.503027030000126 ], [ -123.998769622999944, 49.501672921000115 ], [ -123.998355350999987, 49.501676497000076 ], [ -123.99830594699992, 49.499248262000094 ], [ -123.999962954999916, 49.499233951000058 ], [ -123.999968452999909, 49.49950375400006 ], [ -124.001211213999966, 49.499493005000033 ], [ -124.001216718999956, 49.499762808000078 ], [ -124.001630974999955, 49.499759222000094 ], [ -124.001636482999928, 49.500029026000064 ], [ -124.00246499799999, 49.500021849000049 ], [ -124.002481533999983, 49.500831261000037 ], [ -124.002895797999912, 49.500827670000042 ], [ -124.002912341999945, 49.501637080000066 ], [ -124.003172147999976, 49.501634827000032 ], [ -124.00326964199999, 49.499381515000081 ], [ -124.005971250999906, 49.499431186000059 ], [ -124.007556402999967, 49.500714106000054 ], [ -124.00842350799995, 49.501938897000095 ], [ -124.008672049, 49.502125346000078 ], [ -124.008630848999985, 49.503080141000062 ], [ -124.008071758999918, 49.503069882000041 ], [ -124.00794798799997, 49.505937150000086 ], [ -124.00299838699999, 49.505846201000097 ], [ -124.003011622999949, 49.506493541000118 ], [ -124.003425932999988, 49.506489948000073 ], [ -124.003431452999948, 49.506759751000089 ], [ -124.0036897909999, 49.506757511000103 ], [ -124.003724341999913, 49.505958844000055 ], [ -124.009241553999956, 49.506060171000122 ], [ -124.009136249999983, 49.508500933000064 ], [ -124.007478498999944, 49.509025803000107 ], [ -124.00577229, 49.509383191000019 ], [ -124.004834197999941, 49.509454395000049 ], [ -124.001684894999983, 49.509489999000046 ], [ -124.000739196, 49.509156815000019 ] ], [ [ -124.002924762999939, 49.502244730000044 ], [ -124.002917858999965, 49.501906883000089 ], [ -124.000432212999911, 49.50192840700003 ], [ -124.000461240999925, 49.503352023000012 ], [ -124.00056261499995, 49.503353890000085 ], [ -124.00054746, 49.503703703000063 ], [ -124.000595635999929, 49.503704590000055 ], [ -124.000579111999969, 49.504085947000114 ], [ -124.001719102999971, 49.504076080000097 ], [ -124.001724610999943, 49.504345884000053 ], [ -124.002138906999932, 49.504342295000058 ], [ -124.002144416999982, 49.504612099000049 ], [ -124.002483892999976, 49.504609158000058 ], [ -124.002586505999929, 49.502238505000143 ], [ -124.002924762999939, 49.502244730000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69585583", "BldgCostT": "48958333", "sL_LossRatio": "0.975113958359", "sL_AssetLoss": "32468", "sL_BldgLoss": "31660", "sL_StrLoss": "12636", "sL_NStrLoss": "19024", "sL_ContLoss": "808", "geom_point": "0101000020E610000049D6E1E86AFE5EC0AA166C7ED7C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.976094018999945, 49.507667096000077 ], [ -123.976027301, 49.507110193000052 ], [ -123.975543504999962, 49.507104483000035 ], [ -123.974834095999981, 49.506796898000061 ], [ -123.974570413999984, 49.506789705000052 ], [ -123.974685810999944, 49.507040397000033 ], [ -123.975627720999981, 49.507842205000017 ], [ -123.975674595999962, 49.508129908000058 ], [ -123.975521411999935, 49.508121389000117 ], [ -123.974933009999987, 49.50766850800003 ], [ -123.974422283999971, 49.507635692000051 ], [ -123.974141107999912, 49.507467702000064 ], [ -123.972994397999983, 49.506739906000035 ], [ -123.972850187999981, 49.506453589000088 ], [ -123.972037679999985, 49.50602381300012 ], [ -123.97205973599992, 49.505521961000113 ], [ -123.977576825999975, 49.505624896000043 ], [ -123.977450043999966, 49.508517392000144 ], [ -123.97731160299999, 49.508465987000086 ], [ -123.976094018999945, 49.507667096000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6805053", "BldgCostT": "3878746", "sL_LossRatio": "0.767401625162967", "sL_AssetLoss": "12195.7", "sL_BldgLoss": "9359", "sL_StrLoss": "6208", "sL_NStrLoss": "3151", "sL_ContLoss": "2836.7", "geom_point": "0101000020E6100000E6BADF571BFE5EC083F3B1D45DC04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.969267783999939, 49.504045297000161 ], [ -123.968417587999951, 49.502999894 ], [ -123.967954412999987, 49.502635302000037 ], [ -123.968036501999919, 49.502517085000107 ], [ -123.968309398999978, 49.502443107000083 ], [ -123.96901521300002, 49.502455906000073 ], [ -123.969432894999983, 49.502622502000044 ], [ -123.969982395999949, 49.503166604000093 ], [ -123.970262087999984, 49.503309009000098 ], [ -123.970481608999975, 49.503324595000045 ], [ -123.970588805999967, 49.503108184000048 ], [ -123.97023178100001, 49.502517092000033 ], [ -123.96731628099991, 49.501057298000049 ], [ -123.967140687999972, 49.50089836800008 ], [ -123.971479269999932, 49.500979544000103 ], [ -123.971449637999939, 49.50165368400009 ], [ -123.972243883999965, 49.501668526000081 ], [ -123.972085811999989, 49.50526573700008 ], [ -123.970579217999898, 49.505237579000124 ], [ -123.970315710999941, 49.504684794000077 ], [ -123.96972941199999, 49.504392808000041 ], [ -123.969267783999939, 49.504045297000161 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17873333", "BldgCostT": "10433333", "sL_LossRatio": "0.641210591170018", "sL_AssetLoss": "53236.8", "sL_BldgLoss": "34136", "sL_StrLoss": "15266", "sL_NStrLoss": "18870", "sL_ContLoss": "19100.8", "geom_point": "0101000020E61000006F514575E3FD5EC00E8CBCAC09BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.964330417999946, 49.475007388000058 ], [ -123.969843844999914, 49.475110721000092 ], [ -123.969685673999919, 49.478708068000053 ], [ -123.964171818, 49.478604727000025 ], [ -123.964330417999946, 49.475007388000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44715583", "BldgCostT": "30838333", "sL_LossRatio": "0.777335156425379", "sL_AssetLoss": "490010", "sL_BldgLoss": "380902", "sL_StrLoss": "193809", "sL_NStrLoss": "187093", "sL_ContLoss": "109108", "geom_point": "0101000020E6100000E94CB1D52BE55EC0B065C780CBB34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.585023693999943, 49.405444089000127 ], [ -123.584777785999947, 49.405406199 ], [ -123.58004579199995, 49.405532 ], [ -123.579167007999942, 49.405555484000097 ], [ -123.575056577999931, 49.405651703000075 ], [ -123.574865801999962, 49.405653823000087 ], [ -123.574059388, 49.405662864000092 ], [ -123.574067989999961, 49.405498892000061 ], [ -123.572622061999965, 49.405466488000044 ], [ -123.572610901999923, 49.405679089000103 ], [ -123.569080866, 49.405718513000075 ], [ -123.56992303199992, 49.402307303 ], [ -123.569971459999977, 49.402111123000068 ], [ -123.571763512999951, 49.402531900000014 ], [ -123.572781798999969, 49.402699645000034 ], [ -123.573613893999934, 49.402836707000041 ], [ -123.574564388999988, 49.402886500000072 ], [ -123.577653890999926, 49.403068799000046 ], [ -123.57993907800001, 49.402938694000092 ], [ -123.580079210999941, 49.402930708000035 ], [ -123.581677882999955, 49.40294069200008 ], [ -123.582690361999965, 49.402849104000076 ], [ -123.582637609999949, 49.40385833000007 ], [ -123.584051480000014, 49.40388988600003 ], [ -123.584082214999981, 49.403301534000086 ], [ -123.586998842999975, 49.403366572000039 ], [ -123.588026514999953, 49.40364569300008 ], [ -123.58901008, 49.404037293000094 ], [ -123.591017573999949, 49.404443307000093 ], [ -123.591015990999921, 49.404473695000057 ], [ -123.591186598999968, 49.404477491000073 ], [ -123.591221296999905, 49.404484508000102 ], [ -123.591733717999944, 49.404661100000048 ], [ -123.592448339999976, 49.404916848000077 ], [ -123.592282451999964, 49.408103148000059 ], [ -123.592027643999984, 49.408097482000073 ], [ -123.591162093999984, 49.40776331100006 ], [ -123.586639423999941, 49.406016958000151 ], [ -123.585476103999966, 49.405567706000049 ], [ -123.585023693999943, 49.405444089000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136348751", "BldgCostT": "92350001", "sL_LossRatio": "0.784025223784395", "sL_AssetLoss": "1160492", "sL_BldgLoss": "909855", "sL_StrLoss": "491325", "sL_NStrLoss": "418530", "sL_ContLoss": "250637", "geom_point": "0101000020E61000003CC43F6C29E85EC0E7AB689C9BB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.639276408999976, 49.424576003000062 ], [ -123.639315185, 49.423816683000055 ], [ -123.639240531999974, 49.423815055000013 ], [ -123.639256276999902, 49.423506750000044 ], [ -123.63724340099999, 49.423462866000072 ], [ -123.637240944999959, 49.423510901000093 ], [ -123.637043971999958, 49.423506605000107 ], [ -123.638349509999941, 49.421947692000103 ], [ -123.638328395999977, 49.421821192000088 ], [ -123.638404709999946, 49.421407892000083 ], [ -123.638317378999915, 49.420822596000029 ], [ -123.635433898999935, 49.420753390000115 ], [ -123.634160871999967, 49.420766751000016 ], [ -123.634041321, 49.420768001000106 ], [ -123.63365380099998, 49.420800899000071 ], [ -123.63280240099999, 49.420740890000019 ], [ -123.63276220099999, 49.420733653000084 ], [ -123.631533890999933, 49.42051240800005 ], [ -123.631010922999963, 49.420419100000053 ], [ -123.63072570199995, 49.420336296000052 ], [ -123.627838652999927, 49.419499505000061 ], [ -123.627088892999922, 49.419282187000093 ], [ -123.626391414999972, 49.419079997000125 ], [ -123.622121221999947, 49.417842096000129 ], [ -123.618574284999937, 49.416798208000067 ], [ -123.618059916, 49.416646557000036 ], [ -123.614957019999949, 49.415731797000085 ], [ -123.61357248399996, 49.415324096000042 ], [ -123.613328146999891, 49.41525960700001 ], [ -123.611321498999942, 49.414729899000115 ], [ -123.610781704, 49.414587388000044 ], [ -123.610720165999908, 49.414568570000064 ], [ -123.60789382499999, 49.413704305000117 ], [ -123.605039421999933, 49.412816603000131 ], [ -123.603314501999989, 49.412201290000027 ], [ -123.602156622999942, 49.411731792000126 ], [ -123.599988417999953, 49.410952797000078 ], [ -123.599938574999967, 49.410926828000122 ], [ -123.599445103999983, 49.410669687000066 ], [ -123.597483206999982, 49.409183901000063 ], [ -123.596997876, 49.408844494000121 ], [ -123.596895344999936, 49.408795533000109 ], [ -123.596789804999958, 49.408745179000043 ], [ -123.596616111999978, 49.408662299000113 ], [ -123.596257694999935, 49.408533714 ], [ -123.595955927999938, 49.408481098000031 ], [ -123.594934602999928, 49.40844605400018 ], [ -123.594941588999944, 49.408311714000121 ], [ -123.595132172999968, 49.408315947000091 ], [ -123.595252125999963, 49.406009233000098 ], [ -123.595263723999963, 49.406011301000049 ], [ -123.595942501999929, 49.406286087000083 ], [ -123.596743176999922, 49.406444196000052 ], [ -123.597148347999948, 49.406609596000052 ], [ -123.597159211999951, 49.406614030000128 ], [ -123.597214779999945, 49.406636725000041 ], [ -123.597699302999956, 49.406834503000013 ], [ -123.598195612999973, 49.406831600000011 ], [ -123.598474209999978, 49.407082285000151 ], [ -123.598682305999944, 49.407144900000041 ], [ -123.599115710999925, 49.407609209000036 ], [ -123.599590098999954, 49.40803928700003 ], [ -123.600326296999953, 49.408325677000029 ], [ -123.600641019999898, 49.408448102000094 ], [ -123.601129594999961, 49.408903789000099 ], [ -123.601391797999952, 49.40894798500004 ], [ -123.601588293999924, 49.409126014000059 ], [ -123.601703480999959, 49.409576100000045 ], [ -123.601926586000033, 49.409781092000109 ], [ -123.602327082999963, 49.409832406000049 ], [ -123.602550580999917, 49.409993392000082 ], [ -123.602796993999959, 49.409947796000075 ], [ -123.603091302999971, 49.410359397000029 ], [ -123.603974891999954, 49.410427699000095 ], [ -123.604404408999955, 49.410666983000112 ], [ -123.605788989999965, 49.411074295000091 ], [ -123.607610592999947, 49.411199708000083 ], [ -123.608162804999921, 49.41140329300007 ], [ -123.60932200299996, 49.411460311000013 ], [ -123.609903410999948, 49.411646885000074 ], [ -123.610194599999915, 49.411662503000059 ], [ -123.610900911000016, 49.41194739200003 ], [ -123.612033313999945, 49.41208410100004 ], [ -123.612587896999955, 49.41246860900003 ], [ -123.612939508999958, 49.412907291000046 ], [ -123.613285693999941, 49.413068213000052 ], [ -123.614623489999971, 49.413213494000061 ], [ -123.614944883999982, 49.413391497000092 ], [ -123.615082782999963, 49.413391503000099 ], [ -123.616184806999939, 49.413421384000038 ], [ -123.616704840999915, 49.413321498000073 ], [ -123.616763084999931, 49.413310304000092 ], [ -123.616944115999942, 49.413461307000041 ], [ -123.617591705, 49.413521096000075 ], [ -123.617882987999963, 49.413619396000072 ], [ -123.619145807999971, 49.414214698000073 ], [ -123.619961190999987, 49.414327206000074 ], [ -123.62004219799999, 49.41434756400006 ], [ -123.620054789999941, 49.414350733000056 ], [ -123.620074473999978, 49.414355687000068 ], [ -123.620404723000021, 49.414438674000095 ], [ -123.621786003999944, 49.414785798000047 ], [ -123.623981387999947, 49.415133295000039 ], [ -123.624618793999971, 49.41530989400006 ], [ -123.624741503999942, 49.415403347000101 ], [ -123.625286491999987, 49.415818388000083 ], [ -123.62674338699999, 49.416521891000095 ], [ -123.62743490299998, 49.416715602000068 ], [ -123.627847705999969, 49.416761784000123 ], [ -123.627867519999981, 49.416764005000076 ], [ -123.628580891999945, 49.416843805000056 ], [ -123.629164896999924, 49.417128613000081 ], [ -123.62952660599997, 49.417423506000098 ], [ -123.630250591999967, 49.418067199000077 ], [ -123.631153718999911, 49.418502994000015 ], [ -123.632024111999954, 49.418678200000038 ], [ -123.634218412999971, 49.418748005000062 ], [ -123.634673696999954, 49.418870510000076 ], [ -123.635437698999965, 49.419280594000107 ], [ -123.636733992999908, 49.419327596000038 ], [ -123.637506409999972, 49.419269204000081 ], [ -123.640916087999969, 49.418530107000052 ], [ -123.641645396999948, 49.418454604000068 ], [ -123.641673079999947, 49.418492586000113 ], [ -123.640929690999954, 49.419192016000061 ], [ -123.640883463999955, 49.419877161000073 ], [ -123.640889034999987, 49.419902408000119 ], [ -123.641241393999948, 49.420484554000083 ], [ -123.641581136999903, 49.420746404000042 ], [ -123.642152511999953, 49.421014201000112 ], [ -123.64230530699993, 49.42112551200006 ], [ -123.642522757999942, 49.421345423000048 ], [ -123.642778461999981, 49.421521142000124 ], [ -123.643591763999922, 49.421988703000096 ], [ -123.644863080999983, 49.422719747000073 ], [ -123.646229306, 49.423494920000053 ], [ -123.647577704999918, 49.424161496000103 ], [ -123.6489542, 49.424790097000042 ], [ -123.649369986999901, 49.425015204000026 ], [ -123.649629884999982, 49.425189196000055 ], [ -123.649899874999903, 49.425424648000096 ], [ -123.649908312999955, 49.425431993000096 ], [ -123.650026619999892, 49.425571477000062 ], [ -123.650070901999982, 49.425623692000087 ], [ -123.650115512999903, 49.425748904000038 ], [ -123.650134293999926, 49.426139094000057 ], [ -123.650095202000017, 49.426825201000078 ], [ -123.650085595999968, 49.427015805000075 ], [ -123.650153087999982, 49.427802305000064 ], [ -123.65023171099989, 49.428940215000054 ], [ -123.65005138, 49.429369294000047 ], [ -123.649957414999918, 49.429541271000062 ], [ -123.649952970999919, 49.42954939 ], [ -123.649565053999964, 49.430258999000081 ], [ -123.648686813000012, 49.430046372000099 ], [ -123.647709203999923, 49.42978395600003 ], [ -123.64755912, 49.429743667000039 ], [ -123.647445324999964, 49.429713119000048 ], [ -123.646946330999953, 49.429579175000036 ], [ -123.646520405999965, 49.429444778000139 ], [ -123.64616111399999, 49.429300144000067 ], [ -123.644879356999965, 49.428703305000028 ], [ -123.6428261249999, 49.427748485000095 ], [ -123.642057241999936, 49.42733922300004 ], [ -123.640768638999944, 49.426527952000093 ], [ -123.640433091999967, 49.426378380000038 ], [ -123.639983635999926, 49.426246165000094 ], [ -123.63956080299999, 49.426159526000099 ], [ -123.63891763499997, 49.426069877 ], [ -123.638637266999979, 49.426051414000028 ], [ -123.638699780999971, 49.424827634000032 ], [ -123.639173097999972, 49.424837949000114 ], [ -123.63918657499994, 49.424574045000035 ], [ -123.639276408999976, 49.424576003000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51406302", "BldgCostT": "34428745", "sL_LossRatio": "0.735316363436335", "sL_AssetLoss": "509019", "sL_BldgLoss": "374290", "sL_StrLoss": "184470", "sL_NStrLoss": "189820", "sL_ContLoss": "134729", "geom_point": "0101000020E6100000C01EB86FDAED5EC08F0719D024B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.710010984999926, 49.439676191000096 ], [ -123.709955721999975, 49.438672383000075 ], [ -123.70996729299999, 49.438698291000136 ], [ -123.710546709999946, 49.438668404000083 ], [ -123.711330574999963, 49.438474695000075 ], [ -123.71163439299994, 49.438527414000134 ], [ -123.712078108999918, 49.438766697000098 ], [ -123.71250599699999, 49.438674093 ], [ -123.712633072999935, 49.438360117000016 ], [ -123.712637589999957, 49.438349793000064 ], [ -123.712423460999929, 49.43786520800009 ], [ -123.712421174000028, 49.437677601000097 ], [ -123.712772724, 49.437675433000031 ], [ -123.712764901999947, 49.437135779000059 ], [ -123.713178661999947, 49.437133229000054 ], [ -123.713167717999951, 49.436378536000099 ], [ -123.7132309, 49.436349794000108 ], [ -123.71522559499999, 49.437011996000081 ], [ -123.717301, 49.437484890000079 ], [ -123.718656301999971, 49.437655803000055 ], [ -123.721080511999958, 49.438333700000015 ], [ -123.723190979999913, 49.438446199000126 ], [ -123.723246243999967, 49.43888765800002 ], [ -123.72328440699998, 49.439192504000033 ], [ -123.723437408, 49.439272305000046 ], [ -123.723017546999941, 49.439687960000114 ], [ -123.722221249999933, 49.439738128000045 ], [ -123.721120325999948, 49.439746353000082 ], [ -123.717419201999959, 49.439719158000067 ], [ -123.710010984999926, 49.439676191000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "839381112", "BldgCostT": "563216830", "sL_LossRatio": "0.776955800052812", "sL_AssetLoss": "5346535.8", "sL_BldgLoss": "4154022", "sL_StrLoss": "2060049", "sL_NStrLoss": "2093973", "sL_ContLoss": "1192513.8", "geom_point": "0101000020E61000002F27350F7BED5EC0A87FBC361FB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.735561474999912, 49.45734760500013 ], [ -123.735476804999948, 49.457330507000037 ], [ -123.735034909999968, 49.457340762000058 ], [ -123.734374991999971, 49.457356109000081 ], [ -123.733647406000031, 49.457373309000104 ], [ -123.732915296999977, 49.457397604000057 ], [ -123.732331012999964, 49.457415103000059 ], [ -123.732196002999942, 49.457441112 ], [ -123.731933753999897, 49.457462516000128 ], [ -123.731845722999978, 49.457469703000079 ], [ -123.731772093999936, 49.457506898000133 ], [ -123.72989343899998, 49.457824447000114 ], [ -123.729916383999978, 49.457357540000018 ], [ -123.728659534999963, 49.457331216000043 ], [ -123.72868608399996, 49.456791265000057 ], [ -123.726878002999939, 49.456753370000129 ], [ -123.726931446999956, 49.455667308000095 ], [ -123.726524040999934, 49.455669867000083 ], [ -123.726280150999955, 49.45567139800005 ], [ -123.726276163999955, 49.455401572000078 ], [ -123.725862251999942, 49.455404171000026 ], [ -123.725858267999968, 49.455134346000101 ], [ -123.725444356999972, 49.455136942000074 ], [ -123.725436393000024, 49.454597291000056 ], [ -123.725022485999943, 49.454599887000072 ], [ -123.725017249999951, 49.454244851000063 ], [ -123.724434167999974, 49.454232614000077 ], [ -123.724438169999942, 49.454151360000068 ], [ -123.72445577799995, 49.453793888000057 ], [ -123.724182748999922, 49.453795597000116 ], [ -123.724160828999956, 49.452307728000079 ], [ -123.722918672999981, 49.452281642000045 ], [ -123.722925178999972, 49.452724062000051 ], [ -123.722511289999971, 49.452726649000084 ], [ -123.722515254999962, 49.452996475000106 ], [ -123.721684956999951, 49.453001659000023 ], [ -123.721273578999941, 49.453004225000022 ], [ -123.721269618999955, 49.452734399000065 ], [ -123.720855729999954, 49.452736979000065 ], [ -123.72084781599996, 49.452197327000086 ], [ -123.720433930999945, 49.452199907000114 ], [ -123.720422067999976, 49.451390429000078 ], [ -123.720008188999955, 49.451393006000117 ], [ -123.720004236999927, 49.451123180000046 ], [ -123.719590358999966, 49.451125757000042 ], [ -123.7195706099999, 49.449776626000144 ], [ -123.718742881999958, 49.449781773000026 ], [ -123.718734990999977, 49.449242121000111 ], [ -123.7183211299999, 49.449244693000068 ], [ -123.71830536, 49.448165388000035 ], [ -123.718719211999968, 49.448162817000089 ], [ -123.71869948799997, 49.446813685000087 ], [ -123.719113328999981, 49.44681111300013 ], [ -123.719109381999914, 49.446541287000059 ], [ -123.718695543999928, 49.446543859000073 ], [ -123.718683711, 49.445734380000026 ], [ -123.719925204999953, 49.445726658000112 ], [ -123.71991309, 49.444899303000113 ], [ -123.719652060999977, 49.444893812000053 ], [ -123.719669062999927, 49.444549286000047 ], [ -123.719692289999969, 49.444078662000081 ], [ -123.718659191999933, 49.444056921 ], [ -123.718667935999946, 49.444655076000053 ], [ -123.718254111999926, 49.444657646000131 ], [ -123.718255980999942, 49.444785507000077 ], [ -123.718258054999978, 49.444927472000096 ], [ -123.718030312999971, 49.444928886000042 ], [ -123.717936231999886, 49.446833755000114 ], [ -123.715801981999974, 49.446788799000089 ], [ -123.715802605999968, 49.446831652000121 ], [ -123.715388764999929, 49.446834212000027 ], [ -123.715396616999925, 49.447373864000049 ], [ -123.714982771999956, 49.447376424000019 ], [ -123.714988201000011, 49.447749683000069 ], [ -123.714998469999912, 49.448455730000092 ], [ -123.714584614000017, 49.448458288000097 ], [ -123.714592458999945, 49.44899794 ], [ -123.71376474, 49.449003052000101 ], [ -123.713768658, 49.449272879000077 ], [ -123.712527073999965, 49.449280535000049 ], [ -123.712534895999966, 49.449820187000086 ], [ -123.712121027999956, 49.44982273600003 ], [ -123.712124937999945, 49.450092563000076 ], [ -123.711711068999961, 49.45009511100006 ], [ -123.711718882999932, 49.4506347640001 ], [ -123.71089113599993, 49.450639855000084 ], [ -123.710898940999982, 49.451179507000084 ], [ -123.711726695999943, 49.451174416000057 ], [ -123.711738416999978, 49.451983896000087 ], [ -123.710910647999953, 49.451988988000011 ], [ -123.710930159999975, 49.453338119000072 ], [ -123.711344056999934, 49.453335574000079 ], [ -123.711347960999944, 49.45360540100009 ], [ -123.712175757999958, 49.453600306000048 ], [ -123.712183576999962, 49.454139959000045 ], [ -123.713425284, 49.454132306000091 ], [ -123.713429200999897, 49.454402132000062 ], [ -123.713843104999981, 49.454399578000107 ], [ -123.713858780999956, 49.455478883000104 ], [ -123.714272694000016, 49.455476327000028 ], [ -123.714284458999927, 49.456285805000029 ], [ -123.714043001999983, 49.456287297000138 ], [ -123.71387053700002, 49.456288361000084 ], [ -123.713874456999974, 49.456558188000052 ], [ -123.714209219999972, 49.456556121000041 ], [ -123.714288380999946, 49.456555632000111 ], [ -123.714290293999966, 49.456687239000075 ], [ -123.714292739999905, 49.456855667000113 ], [ -123.714395780999922, 49.456857840000033 ], [ -123.715328636999985, 49.456877502000047 ], [ -123.715333359999974, 49.456782005000051 ], [ -123.719691184999974, 49.456873752000035 ], [ -123.72084402199999, 49.45689799399999 ], [ -123.720826367999948, 49.457255795000066 ], [ -123.720765181999951, 49.45849583600009 ], [ -123.720666529999974, 49.460495051000116 ], [ -123.719526601999988, 49.460471081000023 ], [ -123.719521886999956, 49.460566578000048 ], [ -123.714731837999949, 49.460465723000041 ], [ -123.71401079099995, 49.460450524000066 ], [ -123.714069933999951, 49.459255482000067 ], [ -123.71349970699994, 49.459259002000145 ], [ -123.71348795399993, 49.458449524000137 ], [ -123.714110008999953, 49.458445685000093 ], [ -123.714163441999943, 49.457365954000039 ], [ -123.712230495999947, 49.457377874000052 ], [ -123.712226586000014, 49.457108047000119 ], [ -123.711812658999946, 49.457110595000096 ], [ -123.711804841999964, 49.456570943000074 ], [ -123.711390918999967, 49.456573490000061 ], [ -123.711398731999978, 49.457113143000079 ], [ -123.710156947999934, 49.45712077400001 ], [ -123.71015305, 49.456850947000071 ], [ -123.709739122999935, 49.456853489000061 ], [ -123.709715744999983, 49.455234530000084 ], [ -123.709301833, 49.455237069000042 ], [ -123.709278469999944, 49.45361811100004 ], [ -123.708450673999934, 49.453623184000044 ], [ -123.708439004999903, 49.452813705000089 ], [ -123.709266789999901, 49.452808631000046 ], [ -123.709251216, 49.451729325000052 ], [ -123.709665097999931, 49.451726786000044 ], [ -123.709661201999921, 49.451456959000069 ], [ -123.710027641999943, 49.451454710000036 ], [ -123.710075082999936, 49.451454419000086 ], [ -123.710071184999933, 49.451184593000036 ], [ -123.710045422999926, 49.451184751000042 ], [ -123.709657305999954, 49.451187133000118 ], [ -123.709645622, 49.450377653000018 ], [ -123.7092317499999, 49.450380192000118 ], [ -123.709196715999951, 49.447951752000051 ], [ -123.709610566999928, 49.447949213000058 ], [ -123.709610124, 49.447918578000078 ], [ -123.708154144000019, 49.447887803000114 ], [ -123.70819156099999, 49.447133477000051 ], [ -123.707989284999883, 49.447129200000113 ], [ -123.708074179999969, 49.445417777000102 ], [ -123.70699055599998, 49.445394857000096 ], [ -123.70685156499999, 49.448195424000041 ], [ -123.703242996999961, 49.448119021000075 ], [ -123.70312594699999, 49.450473509000084 ], [ -123.701627994, 49.4504417590001 ], [ -123.701543278999949, 49.452144543000074 ], [ -123.696033233999927, 49.452027574000027 ], [ -123.696195426999935, 49.448775110000071 ], [ -123.694885090999932, 49.448747251000093 ], [ -123.695041400999926, 49.445614121000098 ], [ -123.698715145999969, 49.445845242000082 ], [ -123.698760533000026, 49.44560277500004 ], [ -123.698810677000012, 49.445334502 ], [ -123.698956396999918, 49.443212065000061 ], [ -123.69900179699999, 49.44255061300003 ], [ -123.699004218999931, 49.442427795000121 ], [ -123.699043091999954, 49.440446688000044 ], [ -123.697065612999964, 49.440378587000062 ], [ -123.696386893999929, 49.440355188000069 ], [ -123.696258399999962, 49.440338749000027 ], [ -123.69625650199994, 49.440204711000078 ], [ -123.69599744199999, 49.440206270000061 ], [ -123.695992532, 49.440304734000044 ], [ -123.695788304999908, 49.44027860500006 ], [ -123.693845095999905, 49.439851913 ], [ -123.693541042999982, 49.439815092000046 ], [ -123.693346894999934, 49.439791610000086 ], [ -123.692392512999973, 49.439676109000104 ], [ -123.691807705999949, 49.439654598000118 ], [ -123.691712182999979, 49.440578409000089 ], [ -123.689469190999972, 49.440530611000064 ], [ -123.68945314299999, 49.440851572000035 ], [ -123.68795864400002, 49.440819698000055 ], [ -123.683944473999929, 49.440733986000055 ], [ -123.684032807, 49.438971473000024 ], [ -123.683954082, 49.438969790000094 ], [ -123.683967363999926, 49.438704763000082 ], [ -123.682989762999938, 49.43868386500003 ], [ -123.682992618999947, 49.438626920000111 ], [ -123.681496712999987, 49.438594927000061 ], [ -123.681516986999938, 49.438190816000017 ], [ -123.680708108999966, 49.438173508000027 ], [ -123.680723129999961, 49.43787419700007 ], [ -123.680259092999918, 49.437864265000073 ], [ -123.68024701399996, 49.438104905000031 ], [ -123.680129406, 49.438102388000068 ], [ -123.680058987000024, 49.439505106000126 ], [ -123.680033108999922, 49.439504552000137 ], [ -123.679474997999961, 49.438577412000043 ], [ -123.680225413999892, 49.435405803000045 ], [ -123.680452383, 49.434195504000037 ], [ -123.68045243899995, 49.434110483000097 ], [ -123.681519394999967, 49.434354494000026 ], [ -123.682074879999988, 49.434585194000071 ], [ -123.682435786999989, 49.434807393000014 ], [ -123.682983394999937, 49.435444005000114 ], [ -123.683386022000022, 49.435630603000043 ], [ -123.683553403999952, 49.435854190000072 ], [ -123.684054904999954, 49.43613900400009 ], [ -123.685491204999977, 49.436274283000081 ], [ -123.687186398999955, 49.436254286000086 ], [ -123.688681403999951, 49.436560599000138 ], [ -123.689509805999961, 49.43658330200001 ], [ -123.689587103999955, 49.436595935000099 ], [ -123.689554265999917, 49.437252783000105 ], [ -123.689572892999962, 49.437253180000063 ], [ -123.68958894, 49.436932218000031 ], [ -123.689602514999933, 49.436932507000023 ], [ -123.689619078999982, 49.436601160000123 ], [ -123.690407503999907, 49.436730011000066 ], [ -123.692589697999921, 49.436906607000076 ], [ -123.694246592999903, 49.436967899000123 ], [ -123.695279116000023, 49.436926597000088 ], [ -123.69657239299994, 49.436702988000093 ], [ -123.697913002999925, 49.436892411000038 ], [ -123.699512307999953, 49.436792694000047 ], [ -123.700216908999963, 49.43686110900007 ], [ -123.701262187999959, 49.436701596000034 ], [ -123.70291580199995, 49.436610398000013 ], [ -123.703538399999957, 49.436633189000112 ], [ -123.704396292999945, 49.436879602000026 ], [ -123.704727508999923, 49.436886691000069 ], [ -123.705236080999924, 49.43676709600004 ], [ -123.706366806999966, 49.436805499000052 ], [ -123.707095607000014, 49.436620405000092 ], [ -123.707344590999952, 49.436673100000114 ], [ -123.707250416999955, 49.436835404000121 ], [ -123.707306581999958, 49.43694369200005 ], [ -123.707652388999975, 49.437003496000059 ], [ -123.708017506999965, 49.437360987000069 ], [ -123.708485889999935, 49.437313995000046 ], [ -123.709282278999936, 49.43706619800016 ], [ -123.710555792999941, 49.436446608000089 ], [ -123.7106115939999, 49.436527807000104 ], [ -123.710492583999908, 49.436879912000101 ], [ -123.71025818699999, 49.436881351000117 ], [ -123.710237465, 49.437299584000101 ], [ -123.70989679099992, 49.437701302000129 ], [ -123.709867599999953, 49.438474709000054 ], [ -123.709955721999975, 49.438672383000075 ], [ -123.710010984999926, 49.439676191000096 ], [ -123.717419201999959, 49.439719158000067 ], [ -123.721120325999948, 49.439746353000082 ], [ -123.722221249999933, 49.439738128000045 ], [ -123.723017546999941, 49.439687960000114 ], [ -123.723437408, 49.439272305000046 ], [ -123.723771092, 49.439341998000025 ], [ -123.724361898999945, 49.439248001000102 ], [ -123.724421096999961, 49.439446009000051 ], [ -123.725246280999912, 49.440259202000014 ], [ -123.726443186999944, 49.440962792000086 ], [ -123.727733987999926, 49.441583691000048 ], [ -123.728350598999953, 49.44215631 ], [ -123.72853418699999, 49.442478110000103 ], [ -123.728568790999987, 49.444753999000106 ], [ -123.728836399999977, 49.446101299000112 ], [ -123.729269381999956, 49.447403100000031 ], [ -123.730347213999949, 49.449294406000078 ], [ -123.731015283999952, 49.45020735100006 ], [ -123.732063792999966, 49.451640098000048 ], [ -123.733130388999953, 49.452775188000025 ], [ -123.73555950799998, 49.454676490000047 ], [ -123.73780198899999, 49.457063513000087 ], [ -123.737848138999965, 49.457142700000084 ], [ -123.738355592999966, 49.458013406000099 ], [ -123.738332697999937, 49.460126904000013 ], [ -123.738642805999973, 49.460656784000079 ], [ -123.739514092999926, 49.461666500000049 ], [ -123.739743312999934, 49.462196306000088 ], [ -123.740364197999966, 49.463092210000028 ], [ -123.740741800999942, 49.463412592000111 ], [ -123.741464308999966, 49.46382281000006 ], [ -123.74225582299999, 49.464131803000086 ], [ -123.74305848899999, 49.464225805000098 ], [ -123.743287890999966, 49.464381608000032 ], [ -123.742746728999933, 49.464485505000127 ], [ -123.740695498999955, 49.464487812000051 ], [ -123.739960696999944, 49.463720005000013 ], [ -123.737620827999976, 49.461072890000068 ], [ -123.737541705999945, 49.460983388000109 ], [ -123.73711149799999, 49.460501811000036 ], [ -123.736961891999925, 49.460233108000068 ], [ -123.736890685999981, 49.45971671000008 ], [ -123.736931187, 49.459170293000106 ], [ -123.736902682, 49.458992302000048 ], [ -123.736866238999966, 49.458910569000118 ], [ -123.73673121499999, 49.458607998000026 ], [ -123.736264784999932, 49.458105447000044 ], [ -123.735561474999912, 49.45734760500013 ] ], [ [ -123.727772792999971, 49.441804594000047 ], [ -123.727147496, 49.44148359200004 ], [ -123.726228689999942, 49.44230870800007 ], [ -123.726675486999909, 49.442588208000046 ], [ -123.72684229, 49.442784307000046 ], [ -123.726910797999935, 49.442988296000038 ], [ -123.726929309999974, 49.443312787000103 ], [ -123.726173492999962, 49.443312841000129 ], [ -123.725580494999946, 49.443312884000129 ], [ -123.725392082999974, 49.443312900000073 ], [ -123.724601099999958, 49.44331226300006 ], [ -123.72450009, 49.443312206000066 ], [ -123.722630168999956, 49.443355163000085 ], [ -123.722519946999981, 49.443357688000106 ], [ -123.722395561999988, 49.443360543000033 ], [ -123.721901105999976, 49.443371891 ], [ -123.721541955999925, 49.444236169000078 ], [ -123.72151366199995, 49.444678443000051 ], [ -123.721432813999954, 49.445938851000037 ], [ -123.721433606999966, 49.446169882000014 ], [ -123.721742833999883, 49.446441919000044 ], [ -123.721912942999978, 49.446655268000015 ], [ -123.722122649, 49.447071956000109 ], [ -123.722266455999957, 49.447231620000089 ], [ -123.72212484399995, 49.447363714000055 ], [ -123.722037957999987, 49.447672420000075 ], [ -123.722047917999959, 49.44802911600005 ], [ -123.722202234999926, 49.448674217000097 ], [ -123.722255887999921, 49.449041256000086 ], [ -123.722297125999944, 49.449323512000078 ], [ -123.722435536999939, 49.449535213000118 ], [ -123.722831098999947, 49.449985504000082 ], [ -123.722829707999921, 49.450210603000095 ], [ -123.724051879999962, 49.450166902000078 ], [ -123.724472049999932, 49.45015186600002 ], [ -123.724743051999951, 49.450142190000101 ], [ -123.72562813299993, 49.450110520000116 ], [ -123.726430782999913, 49.450081800000049 ], [ -123.727645894999966, 49.450048785000035 ], [ -123.72781565199989, 49.45004510800004 ], [ -123.729439918999987, 49.450017936000059 ], [ -123.729629314999926, 49.450014815000074 ], [ -123.72904049899995, 49.447568216000064 ], [ -123.72852580299994, 49.445417621000033 ], [ -123.72845691299996, 49.443313299000124 ], [ -123.728437388, 49.442728591000048 ], [ -123.728369805999989, 49.442476096000064 ], [ -123.728222391999935, 49.442193896000049 ], [ -123.72799910099998, 49.441969589000102 ], [ -123.727772792999971, 49.441804594000047 ] ], [ [ -123.720788468999984, 49.448149939000068 ], [ -123.720780556999927, 49.447610286000042 ], [ -123.719952862999932, 49.447615442000071 ], [ -123.719960765999986, 49.448155094000072 ], [ -123.720788468999984, 49.448149939000068 ] ], [ [ -123.703530791, 49.444351519000094 ], [ -123.703604616999968, 49.442866049000088 ], [ -123.702251033, 49.442837361000045 ], [ -123.702264758999974, 49.44256133500005 ], [ -123.7021822299999, 49.442559585000019 ], [ -123.702094630999937, 49.444321080000066 ], [ -123.703530791, 49.444351519000094 ] ], [ [ -123.712508220999908, 49.447979778000089 ], [ -123.712511429999893, 49.448201229000027 ], [ -123.713339133999938, 49.448196126000049 ], [ -123.713336249999912, 49.447997250000107 ], [ -123.712508220999908, 49.447979778000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177599561", "BldgCostT": "119488190", "sL_LossRatio": "0.786596198044423", "sL_AssetLoss": "1241782", "sL_BldgLoss": "976781", "sL_StrLoss": "582270", "sL_NStrLoss": "394511", "sL_ContLoss": "265001", "geom_point": "0101000020E61000005E0E68A76EEE5EC0F163482527B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.726228689999942, 49.44230870800007 ], [ -123.727147496, 49.44148359200004 ], [ -123.727772792999971, 49.441804594000047 ], [ -123.72799910099998, 49.441969589000102 ], [ -123.728222391999935, 49.442193896000049 ], [ -123.728369805999989, 49.442476096000064 ], [ -123.728437388, 49.442728591000048 ], [ -123.72845691299996, 49.443313299000124 ], [ -123.72852580299994, 49.445417621000033 ], [ -123.72904049899995, 49.447568216000064 ], [ -123.729629314999926, 49.450014815000074 ], [ -123.729439918999987, 49.450017936000059 ], [ -123.72781565199989, 49.45004510800004 ], [ -123.727645894999966, 49.450048785000035 ], [ -123.726430782999913, 49.450081800000049 ], [ -123.72562813299993, 49.450110520000116 ], [ -123.724743051999951, 49.450142190000101 ], [ -123.724472049999932, 49.45015186600002 ], [ -123.724051879999962, 49.450166902000078 ], [ -123.722829707999921, 49.450210603000095 ], [ -123.722831098999947, 49.449985504000082 ], [ -123.722435536999939, 49.449535213000118 ], [ -123.722297125999944, 49.449323512000078 ], [ -123.722255887999921, 49.449041256000086 ], [ -123.722202234999926, 49.448674217000097 ], [ -123.722047917999959, 49.44802911600005 ], [ -123.722037957999987, 49.447672420000075 ], [ -123.72212484399995, 49.447363714000055 ], [ -123.722266455999957, 49.447231620000089 ], [ -123.722122649, 49.447071956000109 ], [ -123.721912942999978, 49.446655268000015 ], [ -123.721742833999883, 49.446441919000044 ], [ -123.721433606999966, 49.446169882000014 ], [ -123.721432813999954, 49.445938851000037 ], [ -123.72151366199995, 49.444678443000051 ], [ -123.721541955999925, 49.444236169000078 ], [ -123.721901105999976, 49.443371891 ], [ -123.722395561999988, 49.443360543000033 ], [ -123.722519946999981, 49.443357688000106 ], [ -123.722630168999956, 49.443355163000085 ], [ -123.72450009, 49.443312206000066 ], [ -123.724601099999958, 49.44331226300006 ], [ -123.725392082999974, 49.443312900000073 ], [ -123.725580494999946, 49.443312884000129 ], [ -123.726173492999962, 49.443312841000129 ], [ -123.726929309999974, 49.443312787000103 ], [ -123.726910797999935, 49.442988296000038 ], [ -123.72684229, 49.442784307000046 ], [ -123.726675486999909, 49.442588208000046 ], [ -123.726228689999942, 49.44230870800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190699833", "BldgCostT": "130803333", "sL_LossRatio": "0.773594618451154", "sL_AssetLoss": "1320958", "sL_BldgLoss": "1021886", "sL_StrLoss": "530494", "sL_NStrLoss": "491392", "sL_ContLoss": "299072", "geom_point": "0101000020E6100000CF57A048FDEE5EC0217A08991ABB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.73430949699997, 49.466663786000076 ], [ -123.734305773999907, 49.466414731000086 ], [ -123.73347776599995, 49.466419985000087 ], [ -123.733473738999947, 49.466150161000016 ], [ -123.73223173199996, 49.466158030000059 ], [ -123.732225190999955, 49.465719089000046 ], [ -123.731000840999982, 49.465693477000102 ], [ -123.730607494999973, 49.465685246000106 ], [ -123.730660224999951, 49.464612126000119 ], [ -123.730784233999884, 49.462088199000021 ], [ -123.730865529999974, 49.462089900000059 ], [ -123.730903371999915, 49.461319599000078 ], [ -123.731745893999943, 49.461337228000104 ], [ -123.731745394999948, 49.461303806000053 ], [ -123.731985673999972, 49.461302285000038 ], [ -123.732026522999917, 49.460470355000069 ], [ -123.730573817, 49.460439959000063 ], [ -123.73059169499993, 49.460076055000101 ], [ -123.729783608999966, 49.46005913800014 ], [ -123.72989343899998, 49.457824447000114 ], [ -123.731772093999936, 49.457506898000133 ], [ -123.731845722999978, 49.457469703000079 ], [ -123.731933753999897, 49.457462516000128 ], [ -123.732196002999942, 49.457441112 ], [ -123.732331012999964, 49.457415103000059 ], [ -123.732915296999977, 49.457397604000057 ], [ -123.733647406000031, 49.457373309000104 ], [ -123.734374991999971, 49.457356109000081 ], [ -123.735034909999968, 49.457340762000058 ], [ -123.735476804999948, 49.457330507000037 ], [ -123.735561474999912, 49.45734760500013 ], [ -123.736264784999932, 49.458105447000044 ], [ -123.73673121499999, 49.458607998000026 ], [ -123.736866238999966, 49.458910569000118 ], [ -123.736902682, 49.458992302000048 ], [ -123.736931187, 49.459170293000106 ], [ -123.736890685999981, 49.45971671000008 ], [ -123.736961891999925, 49.460233108000068 ], [ -123.73711149799999, 49.460501811000036 ], [ -123.737541705999945, 49.460983388000109 ], [ -123.737620827999976, 49.461072890000068 ], [ -123.739960696999944, 49.463720005000013 ], [ -123.740695498999955, 49.464487812000051 ], [ -123.740535869, 49.464487934000076 ], [ -123.740157596999907, 49.464488295000109 ], [ -123.739845934999963, 49.464488789000079 ], [ -123.739392018999979, 49.464489508000099 ], [ -123.737057946999983, 49.46449133200008 ], [ -123.736066284999964, 49.464492092000128 ], [ -123.735156071999967, 49.464514824000091 ], [ -123.734877012999959, 49.464521799000131 ], [ -123.735042028999914, 49.466679905000056 ], [ -123.734910590999974, 49.466680739000012 ], [ -123.734309807999978, 49.466684556000146 ], [ -123.73430949699997, 49.466663786000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2563334", "BldgCostT": "1558334", "sL_LossRatio": "0.624369421808304", "sL_AssetLoss": "51540", "sL_BldgLoss": "32180", "sL_StrLoss": "8360", "sL_NStrLoss": "23820", "sL_ContLoss": "19360", "geom_point": "0101000020E6100000BC3D290FA2EA5EC0C4219F803BB94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.665299008999924, 49.446053808000016 ], [ -123.666954362999917, 49.446044273000027 ], [ -123.666983646999981, 49.448202907000059 ], [ -123.66532822, 49.448212442000084 ], [ -123.665299008999924, 49.446053808000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.918051797448782", "sL_AssetLoss": "2587", "sL_BldgLoss": "2375", "sL_StrLoss": "1810", "sL_NStrLoss": "565", "sL_ContLoss": "212", "geom_point": "0101000020E61000009E4694D538E85EC006B47C7623B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.627636034999924, 49.445994487000036 ], [ -123.629291397999978, 49.445985491000052 ], [ -123.62929968499995, 49.446632760000043 ], [ -123.629301758999986, 49.446794985000089 ], [ -123.629223896999974, 49.446795410000036 ], [ -123.627646368999962, 49.446803981000059 ], [ -123.627636034999924, 49.445994487000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.939024390243902", "sL_AssetLoss": "2296", "sL_BldgLoss": "2156", "sL_StrLoss": "1740", "sL_NStrLoss": "416", "sL_ContLoss": "140", "geom_point": "0101000020E61000002425A036E8EE5EC0712F59AA45BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.732296082999966, 49.470475221000058 ], [ -123.733538197999948, 49.470467350000085 ], [ -123.733550284999936, 49.471276822000021 ], [ -123.732308151, 49.471284694000097 ], [ -123.732296082999966, 49.470475221000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13375500", "BldgCostT": "8070000", "sL_LossRatio": "0.640675547098002", "sL_AssetLoss": "210200", "sL_BldgLoss": "134670", "sL_StrLoss": "52700", "sL_NStrLoss": "81970", "sL_ContLoss": "75530", "geom_point": "0101000020E6100000B73ED5B61BEA5EC08F88CED751BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.655277647999952, 49.453764621000069 ], [ -123.660787796999955, 49.453883661000063 ], [ -123.660605640999947, 49.457480635000039 ], [ -123.655095063, 49.45736158600009 ], [ -123.655277647999952, 49.453764621000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2539167", "BldgCostT": "1541667", "sL_LossRatio": "0.618606524365687", "sL_AssetLoss": "49660", "sL_BldgLoss": "30720", "sL_StrLoss": "7850", "sL_NStrLoss": "22870", "sL_ContLoss": "18940", "geom_point": "0101000020E6100000B4445F283DEA5EC0C3DEE59E85B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.659461832999909, 49.442849035000059 ], [ -123.659443740999933, 49.441499886000081 ], [ -123.65902993899999, 49.441502245000066 ], [ -123.659019090999948, 49.440692756000011 ], [ -123.659432885999976, 49.440690396000058 ], [ -123.659429266999979, 49.440420566000078 ], [ -123.660670640999953, 49.440413482000039 ], [ -123.660703268999939, 49.442841950000123 ], [ -123.659461832999909, 49.442849035000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.919468334636435", "sL_AssetLoss": "2558", "sL_BldgLoss": "2352", "sL_StrLoss": "1800", "sL_NStrLoss": "552", "sL_ContLoss": "206", "geom_point": "0101000020E6100000BB2DECC480EA5EC0E0B1862832B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.66366186599997, 49.447412465000077 ], [ -123.663658221999967, 49.447142636000081 ], [ -123.66324437499999, 49.447145010000035 ], [ -123.663233454999897, 49.446335522000069 ], [ -123.6639745519999, 49.446331270000087 ], [ -123.664888817999952, 49.44632601700004 ], [ -123.664903415999902, 49.447405333000113 ], [ -123.663750934999939, 49.447411954000074 ], [ -123.66366186599997, 49.447412465000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.777777777777778", "sL_AssetLoss": "7380", "sL_BldgLoss": "5740", "sL_StrLoss": "2700", "sL_NStrLoss": "3040", "sL_ContLoss": "1640", "geom_point": "0101000020E61000005C5E149829EA5EC03B5AEE2F2FB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.657748836999986, 49.438541182000087 ], [ -123.659817715999964, 49.438529397000067 ], [ -123.659828576999942, 49.439338886000087 ], [ -123.657759662999936, 49.439350673000042 ], [ -123.657748836999986, 49.438541182000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417730549", "BldgCostT": "253228541", "sL_LossRatio": "0.671786062676908", "sL_AssetLoss": "3751940", "sL_BldgLoss": "2520501", "sL_StrLoss": "1037962", "sL_NStrLoss": "1482539", "sL_ContLoss": "1231439", "geom_point": "0101000020E6100000019C634867E95EC0541E83995FB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.651018055999927, 49.44588472700012 ], [ -123.651073059999959, 49.444802789000107 ], [ -123.648936207999967, 49.444756457000018 ], [ -123.649033070999963, 49.442852732000084 ], [ -123.648315277000023, 49.442837160000117 ], [ -123.648304414999956, 49.443050576000083 ], [ -123.647405595999928, 49.443031069000085 ], [ -123.647380605999928, 49.443521898000078 ], [ -123.646615530999981, 49.443505288000075 ], [ -123.646593898, 49.443930016000067 ], [ -123.645363075999967, 49.443903283000061 ], [ -123.64526335499994, 49.445860044000035 ], [ -123.644034665999968, 49.445833342000128 ], [ -123.644013726999958, 49.446243973 ], [ -123.643447237999922, 49.446231658 ], [ -123.643331028999953, 49.448509984000083 ], [ -123.641904521999905, 49.448478959000084 ], [ -123.641315781999978, 49.448466150000066 ], [ -123.641226044999939, 49.450223831000109 ], [ -123.635716381999913, 49.4501037960001 ], [ -123.635773906999972, 49.448979693000048 ], [ -123.632302827999965, 49.448903926000042 ], [ -123.630267853999953, 49.448859456000044 ], [ -123.63035749099997, 49.447111824000025 ], [ -123.630452335999948, 49.445262487000079 ], [ -123.630920894, 49.445272730000099 ], [ -123.631009046999935, 49.443553416000071 ], [ -123.630737190999923, 49.443547473000073 ], [ -123.630032372999906, 49.443532063000106 ], [ -123.630216852999965, 49.439935067000114 ], [ -123.631594578999938, 49.439965186000052 ], [ -123.635725289000021, 49.440055383000043 ], [ -123.63566347299998, 49.441263535000111 ], [ -123.636315303999964, 49.441277753000058 ], [ -123.636370089999943, 49.440206718000091 ], [ -123.639977818999938, 49.440285346000103 ], [ -123.63997749, 49.440259996000087 ], [ -123.640115319999921, 49.440259234000081 ], [ -123.640162187, 49.439341510000091 ], [ -123.641067424999932, 49.439361219000041 ], [ -123.641092075999978, 49.438878331000069 ], [ -123.641922783999945, 49.438896410000041 ], [ -123.641927446999915, 49.43880505100006 ], [ -123.642101647999937, 49.438808842000093 ], [ -123.64262091099999, 49.438820139000036 ], [ -123.642658958999945, 49.438074268000051 ], [ -123.643864196999971, 49.438100480000074 ], [ -123.643865261999963, 49.438079613000063 ], [ -123.643673360999941, 49.438080681000017 ], [ -123.643652171999946, 49.436461695000098 ], [ -123.643947831999952, 49.436460050000044 ], [ -123.643954707999981, 49.436325194000105 ], [ -123.644064205999925, 49.43632757500005 ], [ -123.64405957299999, 49.435973791000016 ], [ -123.64167424799993, 49.435921904000061 ], [ -123.63938829599999, 49.43587212900006 ], [ -123.639572016999949, 49.432275075000064 ], [ -123.6431846629999, 49.432353717000126 ], [ -123.643181953999942, 49.432146700000061 ], [ -123.642768230999948, 49.432149002000102 ], [ -123.642737337999947, 49.429784552000115 ], [ -123.641669056999916, 49.429761305000085 ], [ -123.64173367599993, 49.42849481100005 ], [ -123.638516021999919, 49.428424725000099 ], [ -123.638637266999979, 49.426051414000028 ], [ -123.63891763499997, 49.426069877 ], [ -123.63956080299999, 49.426159526000099 ], [ -123.639983635999926, 49.426246165000094 ], [ -123.640433091999967, 49.426378380000038 ], [ -123.640768638999944, 49.426527952000093 ], [ -123.642057241999936, 49.42733922300004 ], [ -123.6428261249999, 49.427748485000095 ], [ -123.644879356999965, 49.428703305000028 ], [ -123.64616111399999, 49.429300144000067 ], [ -123.646520405999965, 49.429444778000139 ], [ -123.646946330999953, 49.429579175000036 ], [ -123.647445324999964, 49.429713119000048 ], [ -123.64755912, 49.429743667000039 ], [ -123.647709203999923, 49.42978395600003 ], [ -123.648686813000012, 49.430046372000099 ], [ -123.649565053999964, 49.430258999000081 ], [ -123.650626951999968, 49.430517896 ], [ -123.652636168999948, 49.430933198000069 ], [ -123.653055055, 49.431044082 ], [ -123.654719978999978, 49.431563486000073 ], [ -123.656714811999962, 49.432265694000101 ], [ -123.658380707000035, 49.432984095000052 ], [ -123.660053332999979, 49.433816956000058 ], [ -123.660283091999929, 49.433934468000118 ], [ -123.66110054399995, 49.434584301000072 ], [ -123.661719557999945, 49.43507638400007 ], [ -123.663643070999953, 49.437246971000071 ], [ -123.664053716999931, 49.437578104000082 ], [ -123.664370190999989, 49.437753310000076 ], [ -123.667602285999976, 49.439049909000126 ], [ -123.668248502999944, 49.439357298000076 ], [ -123.668910837999988, 49.439756213000088 ], [ -123.66724880699995, 49.439720450000095 ], [ -123.667257826999958, 49.439541787000067 ], [ -123.663968501999932, 49.439470932000049 ], [ -123.663977328999977, 49.44012469300003 ], [ -123.664391116999965, 49.440122316000043 ], [ -123.664405699999961, 49.441201635000034 ], [ -123.664819495999936, 49.441199257000086 ], [ -123.664830441000021, 49.442008745000066 ], [ -123.66400283199999, 49.442013501000126 ], [ -123.664006476999973, 49.442283330000087 ], [ -123.663966538999929, 49.442283559000074 ], [ -123.662765054999923, 49.442290451000119 ], [ -123.662761418999963, 49.442020621000061 ], [ -123.662347612999966, 49.442022993000073 ], [ -123.662343977999925, 49.44175316200009 ], [ -123.661516373999959, 49.441757899000095 ], [ -123.661509113999941, 49.441218240000083 ], [ -123.66109531599993, 49.441220606000037 ], [ -123.661084431999939, 49.44041111700006 ], [ -123.662325806999945, 49.440404014000094 ], [ -123.662318538999969, 49.439864355000076 ], [ -123.661904750999966, 49.439866724000083 ], [ -123.661892051999956, 49.438923073000076 ], [ -123.661791750999953, 49.438920909000075 ], [ -123.661814678999946, 49.438467738000035 ], [ -123.661683473999958, 49.438464907000075 ], [ -123.661694407999931, 49.438248824000063 ], [ -123.661469188999931, 49.438250113000066 ], [ -123.661460710999961, 49.437619747000078 ], [ -123.660020865999968, 49.437588666000103 ], [ -123.660036662999943, 49.437276668000024 ], [ -123.659878980999977, 49.43727326400009 ], [ -123.659935504999936, 49.436156999000055 ], [ -123.659666286999936, 49.436151184000074 ], [ -123.659586760999986, 49.437721514000017 ], [ -123.657737339, 49.43768155500009 ], [ -123.657738008999928, 49.437731692000099 ], [ -123.656928524999927, 49.437736293000093 ], [ -123.656880408999939, 49.43868527800003 ], [ -123.654950889999952, 49.438643541000019 ], [ -123.654922894999942, 49.439195191000067 ], [ -123.656732248000012, 49.43923433000009 ], [ -123.656602854999932, 49.441785902000113 ], [ -123.657378342999948, 49.441781496000097 ], [ -123.65738671299999, 49.442407491000019 ], [ -123.657392772999913, 49.442860816000113 ], [ -123.654546732999918, 49.442876958000049 ], [ -123.654514817999967, 49.443505721000079 ], [ -123.656651616999952, 49.443551943000102 ], [ -123.656469179999959, 49.447148965000054 ], [ -123.656220136999977, 49.447143580000088 ], [ -123.656092202999957, 49.449665375000087 ], [ -123.656069834999954, 49.450106266 ], [ -123.656068181999956, 49.450106231000042 ], [ -123.656029975999985, 49.45085926600008 ], [ -123.65375858199999, 49.450810126000157 ], [ -123.653735605999941, 49.451262521000068 ], [ -123.652351194999966, 49.451232547000082 ], [ -123.652332270999977, 49.451604954000068 ], [ -123.646822413999971, 49.451485484000045 ], [ -123.647005618999941, 49.447888501000101 ], [ -123.648389926999968, 49.447918543000036 ], [ -123.64840888099999, 49.447546135000081 ], [ -123.649570403999931, 49.447571328000052 ], [ -123.649600466999942, 49.446980362000055 ], [ -123.650659076999915, 49.447003313000074 ], [ -123.650716285999948, 49.445878187000119 ], [ -123.651018055999927, 49.44588472700012 ] ], [ [ -123.651117738999957, 49.441202769000014 ], [ -123.651174895999986, 49.440078312000068 ], [ -123.650654528999908, 49.440067032000073 ], [ -123.650634021999934, 49.440470384000029 ], [ -123.650739630999951, 49.440469790000115 ], [ -123.650749225999945, 49.441194782000068 ], [ -123.651117738999957, 49.441202769000014 ] ], [ [ -123.652434533, 49.432904422000043 ], [ -123.652450258999977, 49.432594794000067 ], [ -123.65143775199999, 49.432572853000117 ], [ -123.651459972999959, 49.432135541000051 ], [ -123.650629131999949, 49.432117529000031 ], [ -123.650643243000019, 49.433184364000049 ], [ -123.650229511999981, 49.433186692000078 ], [ -123.650243779, 49.43426601500007 ], [ -123.64983003899999, 49.434268340000109 ], [ -123.64983360399998, 49.434538171000057 ], [ -123.650661089999986, 49.434533518000116 ], [ -123.650657519999953, 49.43426368700004 ], [ -123.651071260999984, 49.434261359000111 ], [ -123.651056974999975, 49.433182037000108 ], [ -123.651470705999913, 49.43317970600004 ], [ -123.651467131999951, 49.432909876000068 ], [ -123.652434533, 49.432904422000043 ] ], [ [ -123.635933836999982, 49.445921641000041 ], [ -123.635903892, 49.446506900000024 ], [ -123.637915600999946, 49.446550760000072 ], [ -123.637988321999941, 49.445128291000131 ], [ -123.637971541999931, 49.4451283840001 ], [ -123.637970977999942, 49.445084893000057 ], [ -123.636447428999944, 49.445051679000109 ], [ -123.636402402999963, 49.445931861000119 ], [ -123.635933836999982, 49.445921641000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19195666", "BldgCostT": "11326666", "sL_LossRatio": "0.640378308290748", "sL_AssetLoss": "196665", "sL_BldgLoss": "125940", "sL_StrLoss": "44740", "sL_NStrLoss": "81200", "sL_ContLoss": "70725", "geom_point": "0101000020E61000007EAE6CD5A4E65EC07FC8B66771B64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.605538326999962, 49.429303157000064 ], [ -123.60567747499999, 49.426617001000089 ], [ -123.602330576, 49.426542980000136 ], [ -123.602402707999943, 49.425152336000089 ], [ -123.597885500999936, 49.425052266000058 ], [ -123.597964881999985, 49.423524633000063 ], [ -123.601702462999967, 49.423842847000053 ], [ -123.604951892999921, 49.424001801000045 ], [ -123.60764831699997, 49.423962296000049 ], [ -123.607646233999944, 49.424128904000028 ], [ -123.60763861199996, 49.424736383000052 ], [ -123.607654780999937, 49.424869131000058 ], [ -123.607712088999961, 49.425339413000067 ], [ -123.607833915999947, 49.425701303999986 ], [ -123.607873701999949, 49.425759133000049 ], [ -123.607891622999958, 49.425785203000061 ], [ -123.60796467599999, 49.425891398000068 ], [ -123.606489596999921, 49.427494702000061 ], [ -123.606463529999957, 49.427958402000073 ], [ -123.606386805999961, 49.429321906000034 ], [ -123.605538326999962, 49.429303157000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.936610013780432", "sL_AssetLoss": "2177", "sL_BldgLoss": "2039", "sL_StrLoss": "1630", "sL_NStrLoss": "409", "sL_ContLoss": "138", "geom_point": "0101000020E6100000F8FF0E9809EF5EC0D3DD753664BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.734378376, 49.471271568000098 ], [ -123.735506840999932, 49.471264398000088 ], [ -123.735541527999899, 49.471637896000068 ], [ -123.735541452999954, 49.471638129000034 ], [ -123.73553889599999, 49.472343593000076 ], [ -123.734394512, 49.472350865000116 ], [ -123.734378376, 49.471271568000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "408456022", "BldgCostT": "274219708", "sL_LossRatio": "0.782499935921558", "sL_AssetLoss": "2692013", "sL_BldgLoss": "2106500", "sL_StrLoss": "1062166", "sL_NStrLoss": "1044334", "sL_ContLoss": "585513", "geom_point": "0101000020E6100000BB1BB77791EA5EC09D85B0F93CB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.670916018999918, 49.440133946000046 ], [ -123.67092730399996, 49.439910033000089 ], [ -123.669889296999926, 49.439887719000062 ], [ -123.669894859999928, 49.439777376000023 ], [ -123.668910837999988, 49.439756213000088 ], [ -123.668248502999944, 49.439357298000076 ], [ -123.667602285999976, 49.439049909000126 ], [ -123.664370190999989, 49.437753310000076 ], [ -123.664053716999931, 49.437578104000082 ], [ -123.663643070999953, 49.437246971000071 ], [ -123.661719557999945, 49.43507638400007 ], [ -123.66110054399995, 49.434584301000072 ], [ -123.660283091999929, 49.433934468000118 ], [ -123.660053332999979, 49.433816956000058 ], [ -123.660930821999955, 49.433365070000036 ], [ -123.661279857999958, 49.4331848980001 ], [ -123.663662493999951, 49.431954784 ], [ -123.663696516999934, 49.431937327000114 ], [ -123.664671486999936, 49.431436407000042 ], [ -123.665020686999938, 49.431209006000095 ], [ -123.665307809999888, 49.430981991000088 ], [ -123.665543194999941, 49.430742209000051 ], [ -123.665742417999965, 49.430481796000088 ], [ -123.665935609999934, 49.43015111000004 ], [ -123.665609977999907, 49.430101694000037 ], [ -123.665259286999969, 49.430114892000084 ], [ -123.66331791499999, 49.430317901000116 ], [ -123.663028991999951, 49.430307209000148 ], [ -123.662725707999954, 49.430253811000085 ], [ -123.662501267, 49.430189509000058 ], [ -123.662399701999931, 49.43016039300003 ], [ -123.661488398999893, 49.429837287000048 ], [ -123.66099142799996, 49.429580798000075 ], [ -123.66069332099994, 49.429369987000086 ], [ -123.660510893999955, 49.429160805000045 ], [ -123.660199907999925, 49.428362784000022 ], [ -123.659910743999902, 49.427989767000064 ], [ -123.659885489999937, 49.427957187000075 ], [ -123.659712113999987, 49.427801165000041 ], [ -123.659654788999944, 49.427749607000052 ], [ -123.658842813999939, 49.42723600300004 ], [ -123.658325022999946, 49.426792702000093 ], [ -123.657849676999959, 49.426245892000104 ], [ -123.657467492999928, 49.425954887000081 ], [ -123.655793579999923, 49.425208405000078 ], [ -123.654796301999923, 49.424763707000054 ], [ -123.653992491999986, 49.424498679000095 ], [ -123.65380963099993, 49.424419010000044 ], [ -123.6537969889999, 49.424413516000079 ], [ -123.653258196999971, 49.424111886000034 ], [ -123.65150613199998, 49.425024574000126 ], [ -123.650115512999903, 49.425748904000038 ], [ -123.650070901999982, 49.425623692000087 ], [ -123.650026619999892, 49.425571477000062 ], [ -123.649908312999955, 49.425431993000096 ], [ -123.649899874999903, 49.425424648000096 ], [ -123.649629884999982, 49.425189196000055 ], [ -123.649369986999901, 49.425015204000026 ], [ -123.6489542, 49.424790097000042 ], [ -123.647577704999918, 49.424161496000103 ], [ -123.646229306, 49.423494920000053 ], [ -123.644863080999983, 49.422719747000073 ], [ -123.643591763999922, 49.421988703000096 ], [ -123.642778461999981, 49.421521142000124 ], [ -123.642522757999942, 49.421345423000048 ], [ -123.64230530699993, 49.42112551200006 ], [ -123.642152511999953, 49.421014201000112 ], [ -123.641581136999903, 49.420746404000042 ], [ -123.641241393999948, 49.420484554000083 ], [ -123.640889034999987, 49.419902408000119 ], [ -123.640883463999955, 49.419877161000073 ], [ -123.640929690999954, 49.419192016000061 ], [ -123.641673079999947, 49.418492586000113 ], [ -123.641828105999963, 49.418705196000069 ], [ -123.641808784999938, 49.419398794000131 ], [ -123.641935009999955, 49.419451498000029 ], [ -123.64229400399995, 49.419390345000053 ], [ -123.642319481999934, 49.419385994000059 ], [ -123.643220406999944, 49.418725196000011 ], [ -123.643632478999933, 49.41854289300008 ], [ -123.643879996999971, 49.418522888000027 ], [ -123.644803982, 49.418589893000082 ], [ -123.645370027999931, 49.418776662000027 ], [ -123.64684129599999, 49.419262088000018 ], [ -123.647134586999954, 49.419387651000108 ], [ -123.647257098999916, 49.419440089000027 ], [ -123.64898170099994, 49.420707705000034 ], [ -123.6501757, 49.421294500000073 ], [ -123.651184409999956, 49.421695869000075 ], [ -123.651962271999963, 49.42200533900013 ], [ -123.652670495999956, 49.422287104000056 ], [ -123.654886394999963, 49.422922298000081 ], [ -123.655426306, 49.423153098000093 ], [ -123.656094998999947, 49.423581712000058 ], [ -123.656460582999912, 49.424118700000101 ], [ -123.65787621799997, 49.424803704000034 ], [ -123.65822072099999, 49.424837903000068 ], [ -123.658572320999937, 49.425258005000032 ], [ -123.659387705999947, 49.42549731 ], [ -123.66026739199998, 49.42629201300015 ], [ -123.660809192999963, 49.426495694000089 ], [ -123.661435281999985, 49.426969894000052 ], [ -123.662426994999961, 49.427898505000016 ], [ -123.663274700000017, 49.428379904000117 ], [ -123.664056143999971, 49.428524103000065 ], [ -123.664077298999956, 49.428528001000089 ], [ -123.665549992999956, 49.429319896000052 ], [ -123.666249392999987, 49.429403325000095 ], [ -123.667752524999941, 49.429582626000112 ], [ -123.668283904999967, 49.429645985000022 ], [ -123.668852388999966, 49.42980548900006 ], [ -123.670025702999979, 49.429869609000093 ], [ -123.670507906999916, 49.429876708000108 ], [ -123.67107020399996, 49.429711502000053 ], [ -123.672448695999975, 49.4296859130001 ], [ -123.672823197999918, 49.429737185000107 ], [ -123.673645083999972, 49.430352406000097 ], [ -123.674143902999944, 49.430574601000068 ], [ -123.674558888999968, 49.430635809000101 ], [ -123.675145393999969, 49.431154288000116 ], [ -123.675684500999949, 49.431303802000066 ], [ -123.675892803999986, 49.431437700000089 ], [ -123.67658440299999, 49.432521496000042 ], [ -123.677223816, 49.432806306000018 ], [ -123.678257983, 49.432915995000052 ], [ -123.678732297999943, 49.433309113000057 ], [ -123.679467021, 49.433548307000137 ], [ -123.680329685999936, 49.434082409000062 ], [ -123.68045243899995, 49.434110483000097 ], [ -123.680452383, 49.434195504000037 ], [ -123.680225413999892, 49.435405803000045 ], [ -123.679474997999961, 49.438577412000043 ], [ -123.680033108999922, 49.439504552000137 ], [ -123.679077432999975, 49.439484089000111 ], [ -123.679056969999962, 49.439891529000064 ], [ -123.676445533, 49.439835570000092 ], [ -123.676424582999942, 49.440252194000038 ], [ -123.670916018999918, 49.440133946000046 ] ], [ [ -123.668451980999976, 49.434432050000062 ], [ -123.668446051999965, 49.433995791000036 ], [ -123.666790492999937, 49.433960155000136 ], [ -123.666793359999971, 49.434171775000031 ], [ -123.667620837999948, 49.434167 ], [ -123.667624498999956, 49.43443683000001 ], [ -123.668451980999976, 49.434432050000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131664861", "BldgCostT": "84567956", "sL_LossRatio": "0.751292266681461", "sL_AssetLoss": "1099521.5", "sL_BldgLoss": "826062", "sL_StrLoss": "418261", "sL_NStrLoss": "407801", "sL_ContLoss": "273459.5", "geom_point": "0101000020E6100000434EB21702EA5EC0538581DFEDB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.649565053999964, 49.430258999000081 ], [ -123.649952970999919, 49.42954939 ], [ -123.649957414999918, 49.429541271000062 ], [ -123.65005138, 49.429369294000047 ], [ -123.65023171099989, 49.428940215000054 ], [ -123.650153087999982, 49.427802305000064 ], [ -123.650085595999968, 49.427015805000075 ], [ -123.650095202000017, 49.426825201000078 ], [ -123.650134293999926, 49.426139094000057 ], [ -123.650115512999903, 49.425748904000038 ], [ -123.65150613199998, 49.425024574000126 ], [ -123.653258196999971, 49.424111886000034 ], [ -123.6537969889999, 49.424413516000079 ], [ -123.65380963099993, 49.424419010000044 ], [ -123.653992491999986, 49.424498679000095 ], [ -123.654796301999923, 49.424763707000054 ], [ -123.655793579999923, 49.425208405000078 ], [ -123.657467492999928, 49.425954887000081 ], [ -123.657849676999959, 49.426245892000104 ], [ -123.658325022999946, 49.426792702000093 ], [ -123.658842813999939, 49.42723600300004 ], [ -123.659654788999944, 49.427749607000052 ], [ -123.659712113999987, 49.427801165000041 ], [ -123.659885489999937, 49.427957187000075 ], [ -123.659910743999902, 49.427989767000064 ], [ -123.660199907999925, 49.428362784000022 ], [ -123.660510893999955, 49.429160805000045 ], [ -123.66069332099994, 49.429369987000086 ], [ -123.66099142799996, 49.429580798000075 ], [ -123.661488398999893, 49.429837287000048 ], [ -123.662399701999931, 49.43016039300003 ], [ -123.662501267, 49.430189509000058 ], [ -123.662725707999954, 49.430253811000085 ], [ -123.663028991999951, 49.430307209000148 ], [ -123.66331791499999, 49.430317901000116 ], [ -123.665259286999969, 49.430114892000084 ], [ -123.665609977999907, 49.430101694000037 ], [ -123.665935609999934, 49.43015111000004 ], [ -123.665742417999965, 49.430481796000088 ], [ -123.665543194999941, 49.430742209000051 ], [ -123.665307809999888, 49.430981991000088 ], [ -123.665020686999938, 49.431209006000095 ], [ -123.664671486999936, 49.431436407000042 ], [ -123.663696516999934, 49.431937327000114 ], [ -123.663662493999951, 49.431954784 ], [ -123.661279857999958, 49.4331848980001 ], [ -123.660930821999955, 49.433365070000036 ], [ -123.660053332999979, 49.433816956000058 ], [ -123.658380707000035, 49.432984095000052 ], [ -123.656714811999962, 49.432265694000101 ], [ -123.654719978999978, 49.431563486000073 ], [ -123.653055055, 49.431044082 ], [ -123.652636168999948, 49.430933198000069 ], [ -123.650626951999968, 49.430517896 ], [ -123.649565053999964, 49.430258999000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295507886", "BldgCostT": "188792079", "sL_LossRatio": "0.685085726797313", "sL_AssetLoss": "3356885", "sL_BldgLoss": "2299754", "sL_StrLoss": "1059914", "sL_NStrLoss": "1239840", "sL_ContLoss": "1057131", "geom_point": "0101000020E61000004740FAC3A2E75EC007843A381AB64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.607712088999961, 49.425339413000067 ], [ -123.607654780999937, 49.424869131000058 ], [ -123.60763861199996, 49.424736383000052 ], [ -123.607646233999944, 49.424128904000028 ], [ -123.60764831699997, 49.423962296000049 ], [ -123.607676533999935, 49.422216971000097 ], [ -123.60768133, 49.421921133000112 ], [ -123.607707926999979, 49.420281365000072 ], [ -123.607773297999955, 49.419602254000083 ], [ -123.60775372099998, 49.41864673500006 ], [ -123.60773809899996, 49.417886389000074 ], [ -123.607732197999923, 49.41738752800012 ], [ -123.607728874999978, 49.417108969000068 ], [ -123.607720715999974, 49.416421111000041 ], [ -123.607710620999967, 49.41556840100008 ], [ -123.607714625999947, 49.415490612000092 ], [ -123.607751617999952, 49.414776208000028 ], [ -123.60789382499999, 49.413704305000117 ], [ -123.610720165999908, 49.414568570000064 ], [ -123.610781704, 49.414587388000044 ], [ -123.611321498999942, 49.414729899000115 ], [ -123.613328146999891, 49.41525960700001 ], [ -123.61357248399996, 49.415324096000042 ], [ -123.614957019999949, 49.415731797000085 ], [ -123.618059916, 49.416646557000036 ], [ -123.618574284999937, 49.416798208000067 ], [ -123.622121221999947, 49.417842096000129 ], [ -123.626391414999972, 49.419079997000125 ], [ -123.627088892999922, 49.419282187000093 ], [ -123.627838652999927, 49.419499505000061 ], [ -123.63072570199995, 49.420336296000052 ], [ -123.631010922999963, 49.420419100000053 ], [ -123.631533890999933, 49.42051240800005 ], [ -123.63276220099999, 49.420733653000084 ], [ -123.63280240099999, 49.420740890000019 ], [ -123.63365380099998, 49.420800899000071 ], [ -123.634041321, 49.420768001000106 ], [ -123.634160871999967, 49.420766751000016 ], [ -123.635433898999935, 49.420753390000115 ], [ -123.638317378999915, 49.420822596000029 ], [ -123.638404709999946, 49.421407892000083 ], [ -123.638328395999977, 49.421821192000088 ], [ -123.638349509999941, 49.421947692000103 ], [ -123.637043971999958, 49.423506605000107 ], [ -123.634421618999951, 49.423449373000054 ], [ -123.634419531000034, 49.423490171000026 ], [ -123.633366950999942, 49.423467181000078 ], [ -123.633354978999975, 49.423701052000098 ], [ -123.63393805, 49.423713789000018 ], [ -123.633830264999972, 49.425819568000065 ], [ -123.633754010999908, 49.42730918500007 ], [ -123.633752496999989, 49.427310846000104 ], [ -123.631447852999926, 49.427260485 ], [ -123.631443834, 49.427338933000058 ], [ -123.626203056999955, 49.427224229000046 ], [ -123.62613069399994, 49.428633261000073 ], [ -123.620623643999949, 49.428512455000039 ], [ -123.620654681999966, 49.42790951500011 ], [ -123.620574577999918, 49.427907755000057 ], [ -123.620683094999961, 49.425799600000133 ], [ -123.619952184999974, 49.425783544000048 ], [ -123.619984313999936, 49.425159541000049 ], [ -123.61896508199996, 49.425137144000097 ], [ -123.6186805899999, 49.425130891000094 ], [ -123.618642023999925, 49.425879516000101 ], [ -123.618575635999932, 49.427168155000103 ], [ -123.618558622999942, 49.427498349000132 ], [ -123.617583120999939, 49.42747690200008 ], [ -123.617543438999974, 49.428246780000102 ], [ -123.617499873999961, 49.429091971000041 ], [ -123.61562810799991, 49.429050794000062 ], [ -123.615620203999967, 49.42920401700006 ], [ -123.611062030999975, 49.429103605000122 ], [ -123.611045432999987, 49.429424729000125 ], [ -123.606386805999961, 49.429321906000034 ], [ -123.606463529999957, 49.427958402000073 ], [ -123.606489596999921, 49.427494702000061 ], [ -123.60796467599999, 49.425891398000068 ], [ -123.607891622999958, 49.425785203000061 ], [ -123.607873701999949, 49.425759133000049 ], [ -123.607833915999947, 49.425701303999986 ], [ -123.607712088999961, 49.425339413000067 ] ], [ [ -123.62156046799997, 49.420401713000054 ], [ -123.621564217999975, 49.420328836000074 ], [ -123.620573345999944, 49.420307074000092 ], [ -123.62057375800002, 49.420299092000057 ], [ -123.620582019, 49.420138579000096 ], [ -123.619916533999941, 49.42012395800009 ], [ -123.61992046099999, 49.42004765100004 ], [ -123.61955974299994, 49.420039724000034 ], [ -123.619546436999954, 49.42029814500011 ], [ -123.619543384999986, 49.420357404000114 ], [ -123.62156046799997, 49.420401713000054 ] ], [ [ -123.609067149999987, 49.417039053000074 ], [ -123.609066048, 49.416949915000025 ], [ -123.60865245, 49.416952093000084 ], [ -123.608651658999946, 49.416888175000103 ], [ -123.608237920999912, 49.416879039000086 ], [ -123.608239673999947, 49.417020783000019 ], [ -123.609067149999987, 49.417039053000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.928198957079823", "sL_AssetLoss": "2493", "sL_BldgLoss": "2314", "sL_StrLoss": "1800", "sL_NStrLoss": "514", "sL_ContLoss": "179", "geom_point": "0101000020E6100000413CF9916EE55EC01CEEC08C6BB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.585264837999944, 49.416802981000068 ], [ -123.585487654999966, 49.416801853000074 ], [ -123.58550049499992, 49.417881193000049 ], [ -123.585237761999934, 49.417882523000102 ], [ -123.584259670999984, 49.417887469000057 ], [ -123.584246858000014, 49.416808130000092 ], [ -123.585264837999944, 49.416802981000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "365938333", "BldgCostT": "248142348", "sL_LossRatio": "0.763199313354429", "sL_AssetLoss": "2901060", "sL_BldgLoss": "2214087", "sL_StrLoss": "1040952", "sL_NStrLoss": "1173135", "sL_ContLoss": "686973", "geom_point": "0101000020E6100000FE26EA58A7E55EC036BA8B49E2B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.603231910999938, 49.420579362000097 ], [ -123.60324532199995, 49.42032069000004 ], [ -123.598866134999952, 49.420223704000072 ], [ -123.598899031999963, 49.419590326000062 ], [ -123.598900298999951, 49.419565914000046 ], [ -123.59717081499997, 49.419527562000049 ], [ -123.597202123999949, 49.418925149000074 ], [ -123.597094852999959, 49.418922769000076 ], [ -123.597097865, 49.419171144000096 ], [ -123.59660014799999, 49.419173713000106 ], [ -123.595857011999954, 49.419177545000124 ], [ -123.595853593999919, 49.418895226000117 ], [ -123.595844703999958, 49.418895029000034 ], [ -123.595851913, 49.418756397000024 ], [ -123.595846141999914, 49.418279699000024 ], [ -123.59422878299992, 49.418243788000076 ], [ -123.594302270999961, 49.416831496000057 ], [ -123.594305740999957, 49.416764798000059 ], [ -123.591323368999923, 49.416698515000078 ], [ -123.591331324999913, 49.416545786000015 ], [ -123.588839887999967, 49.416490351000057 ], [ -123.588884375999925, 49.415637269000115 ], [ -123.588852240999984, 49.415636553000063 ], [ -123.588860058, 49.415486657000066 ], [ -123.58769540899999, 49.415460724000084 ], [ -123.587706446999945, 49.415249149000026 ], [ -123.58743359599994, 49.415243071000077 ], [ -123.587395108999957, 49.415980646000051 ], [ -123.585274269999971, 49.415933383000088 ], [ -123.581889666999984, 49.415857869000085 ], [ -123.581965446999945, 49.414408880000025 ], [ -123.581889214999961, 49.414407178000033 ], [ -123.58180858299994, 49.415948883000034 ], [ -123.576303158999906, 49.415825824000081 ], [ -123.576364640999955, 49.414652950000033 ], [ -123.574395600999978, 49.414608868000109 ], [ -123.571509857999985, 49.414544201000091 ], [ -123.571698772, 49.410947151000066 ], [ -123.573908457999934, 49.410996676000138 ], [ -123.577203601999955, 49.411070446000096 ], [ -123.577142145999943, 49.412243327000091 ], [ -123.578119376, 49.412265184000013 ], [ -123.578159904999936, 49.411491386000066 ], [ -123.577985188999904, 49.411487479000115 ], [ -123.578019389999923, 49.410834516000165 ], [ -123.577462810999975, 49.410822067000048 ], [ -123.577482300999947, 49.410450031000018 ], [ -123.577498076, 49.410148921000044 ], [ -123.576940833999913, 49.410136455000064 ], [ -123.5770522, 49.408011066000014 ], [ -123.576479867999979, 49.407998258000134 ], [ -123.57636958099998, 49.410102528000017 ], [ -123.576336062999957, 49.410742031000055 ], [ -123.573854616999967, 49.410686468000037 ], [ -123.570831272999968, 49.41061869200017 ], [ -123.570856174999946, 49.41014469200006 ], [ -123.570519951999984, 49.410137150000054 ], [ -123.570523000999941, 49.410400229000068 ], [ -123.569282360999964, 49.410406345000126 ], [ -123.56927357499994, 49.409646367000065 ], [ -123.567650015999959, 49.40960991200005 ], [ -123.567666611000035, 49.409294421000098 ], [ -123.56312847199996, 49.409192394000087 ], [ -123.563146126999925, 49.408857377000103 ], [ -123.56273126399999, 49.40884804100007 ], [ -123.562678115999972, 49.407746119000109 ], [ -123.562629094999949, 49.406729195000075 ], [ -123.562612170999969, 49.406378253000121 ], [ -123.562591182999967, 49.405943572000041 ], [ -123.562640857999924, 49.405785334000036 ], [ -123.562900424999953, 49.405669620000019 ], [ -123.563113628999972, 49.405676227000114 ], [ -123.563937709999948, 49.405802812000047 ], [ -123.566234100999935, 49.405765195000114 ], [ -123.566286315999903, 49.405764347000066 ], [ -123.566336168999982, 49.405763516000036 ], [ -123.567118820999966, 49.405750709000081 ], [ -123.56763277899995, 49.405742276000083 ], [ -123.569080866, 49.405718513000075 ], [ -123.572610901999923, 49.405679089000103 ], [ -123.572587790999975, 49.406119398000094 ], [ -123.573343444000031, 49.406136335000035 ], [ -123.573319185999949, 49.406598608000117 ], [ -123.574009487999959, 49.40661407500005 ], [ -123.574059388, 49.405662864000092 ], [ -123.574865801999962, 49.405653823000087 ], [ -123.575056577999931, 49.405651703000075 ], [ -123.579167007999942, 49.405555484000097 ], [ -123.58004579199995, 49.405532 ], [ -123.584777785999947, 49.405406199 ], [ -123.585023693999943, 49.405444089000127 ], [ -123.585476103999966, 49.405567706000049 ], [ -123.586639423999941, 49.406016958000151 ], [ -123.591162093999984, 49.40776331100006 ], [ -123.592027643999984, 49.408097482000073 ], [ -123.587100547999952, 49.407987808000037 ], [ -123.587089049, 49.408208175000027 ], [ -123.584971336999956, 49.408160967000093 ], [ -123.584974639999984, 49.408439062000099 ], [ -123.584826431999957, 49.408439811000051 ], [ -123.584771091999968, 49.409499383000131 ], [ -123.585571093999988, 49.409517222000062 ], [ -123.5854996, 49.410886466000115 ], [ -123.585775669999961, 49.410892621000123 ], [ -123.585738525999915, 49.411604042000064 ], [ -123.590159455999952, 49.411702507000051 ], [ -123.590148429999942, 49.411914083000049 ], [ -123.591330265999929, 49.411940376000089 ], [ -123.591344139999947, 49.411674035000033 ], [ -123.594762752999898, 49.411750015000031 ], [ -123.594934602999928, 49.40844605400018 ], [ -123.595955927999938, 49.408481098000031 ], [ -123.596257694999935, 49.408533714 ], [ -123.596616111999978, 49.408662299000113 ], [ -123.596789804999958, 49.408745179000043 ], [ -123.596895344999936, 49.408795533000109 ], [ -123.596997876, 49.408844494000121 ], [ -123.597483206999982, 49.409183901000063 ], [ -123.599445103999983, 49.410669687000066 ], [ -123.599938574999967, 49.410926828000122 ], [ -123.599988417999953, 49.410952797000078 ], [ -123.602156622999942, 49.411731792000126 ], [ -123.603314501999989, 49.412201290000027 ], [ -123.605039421999933, 49.412816603000131 ], [ -123.60789382499999, 49.413704305000117 ], [ -123.607751617999952, 49.414776208000028 ], [ -123.607714625999947, 49.415490612000092 ], [ -123.607710620999967, 49.41556840100008 ], [ -123.607720715999974, 49.416421111000041 ], [ -123.607728874999978, 49.417108969000068 ], [ -123.607732197999923, 49.41738752800012 ], [ -123.60773809899996, 49.417886389000074 ], [ -123.60775372099998, 49.41864673500006 ], [ -123.607773297999955, 49.419602254000083 ], [ -123.607707926999979, 49.420281365000072 ], [ -123.60768133, 49.421921133000112 ], [ -123.607676533999935, 49.422216971000097 ], [ -123.60764831699997, 49.423962296000049 ], [ -123.604951892999921, 49.424001801000045 ], [ -123.601702462999967, 49.423842847000053 ], [ -123.597964881999985, 49.423524633000063 ], [ -123.598072407999965, 49.42145522800012 ], [ -123.60024964199999, 49.42150348300008 ], [ -123.600294165, 49.420645779000068 ], [ -123.600796236999912, 49.420656901000044 ], [ -123.600803052999964, 49.420525592000075 ], [ -123.603231910999938, 49.420579362000097 ] ], [ [ -123.606998457999936, 49.416993367000089 ], [ -123.606996708999958, 49.416851624000095 ], [ -123.606557332999941, 49.41684191500007 ], [ -123.606560624999986, 49.416778333000117 ], [ -123.606412715999966, 49.416775066000078 ], [ -123.606402096999958, 49.416980190000181 ], [ -123.606998457999936, 49.416993367000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133199501", "BldgCostT": "91390001", "sL_LossRatio": "0.799952332055617", "sL_AssetLoss": "1116054", "sL_BldgLoss": "892790", "sL_StrLoss": "492970", "sL_NStrLoss": "399820", "sL_ContLoss": "223264", "geom_point": "0101000020E610000013C936F4BFE35EC031BA6A3BF9B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.556970098999955, 49.40594559900007 ], [ -123.557019505999932, 49.405453409000124 ], [ -123.55729540599998, 49.404795989000057 ], [ -123.557299593999971, 49.404637711000085 ], [ -123.557333210999971, 49.402917421000048 ], [ -123.557333555999932, 49.402898991000022 ], [ -123.557364912999958, 49.402357707000071 ], [ -123.55737817, 49.401793472000087 ], [ -123.55479657599993, 49.401767589000052 ], [ -123.556126862999974, 49.400015728000035 ], [ -123.556380782999952, 49.399681306000105 ], [ -123.55740869200001, 49.399781015000073 ], [ -123.557359084999931, 49.399597992000082 ], [ -123.556820121999962, 49.398718806000026 ], [ -123.556155324999935, 49.398168997000077 ], [ -123.55594399200001, 49.397994218000051 ], [ -123.555553275999927, 49.397508049000123 ], [ -123.555277680999907, 49.396966102000107 ], [ -123.55522166599999, 49.39680773700011 ], [ -123.55503057, 49.396267396000049 ], [ -123.554943506999962, 49.396021322000124 ], [ -123.554510809999954, 49.394797906000065 ], [ -123.552831590999958, 49.395087715000052 ], [ -123.55278101299993, 49.394950560000034 ], [ -123.552563129999967, 49.394254177000079 ], [ -123.552551807999947, 49.393999085000111 ], [ -123.552635396999946, 49.393745297000088 ], [ -123.552770034999952, 49.39358664100007 ], [ -123.553537308999964, 49.392682607000019 ], [ -123.552126870000038, 49.392176234000068 ], [ -123.551985878999929, 49.392160333000035 ], [ -123.551319292999949, 49.392121009000086 ], [ -123.550917484999943, 49.392036297000047 ], [ -123.550152872999888, 49.391892181000053 ], [ -123.549788392999972, 49.391823501000026 ], [ -123.548871921999961, 49.39181558300001 ], [ -123.548378702999926, 49.391811286000099 ], [ -123.547109450999955, 49.391832929000053 ], [ -123.546155084999924, 49.391849185000076 ], [ -123.547427934000012, 49.391068430000104 ], [ -123.547528608999983, 49.389192688000065 ], [ -123.548633918999911, 49.388139107000022 ], [ -123.549070989999947, 49.388465998000065 ], [ -123.549165976999916, 49.388389811000145 ], [ -123.549303375999955, 49.388400396000058 ], [ -123.549381292999968, 49.388406413000091 ], [ -123.55031638399997, 49.388821895 ], [ -123.550832084999954, 49.389019011000094 ], [ -123.550887995999929, 49.389159888000101 ], [ -123.550835106999955, 49.389352192000047 ], [ -123.551813606999943, 49.389729094000089 ], [ -123.553608031999929, 49.389652606000098 ], [ -123.554003625999925, 49.389724598000029 ], [ -123.55421811799999, 49.38970610500008 ], [ -123.555392528999903, 49.390023558000081 ], [ -123.555555498999979, 49.390067613000021 ], [ -123.555775401999981, 49.390153601000101 ], [ -123.556676902, 49.390607904000056 ], [ -123.557066102999954, 49.390820843000022 ], [ -123.557437199999967, 49.391023896000071 ], [ -123.55765701299994, 49.391296312000094 ], [ -123.55777384699995, 49.391647384000095 ], [ -123.558152703999951, 49.392785909000096 ], [ -123.558630984999951, 49.394031044000016 ], [ -123.559248963999949, 49.395385926000117 ], [ -123.55927914099999, 49.395452008000021 ], [ -123.559353856999962, 49.395563284000083 ], [ -123.559903745999989, 49.396382217000088 ], [ -123.55997968899996, 49.396495287000114 ], [ -123.560121982999959, 49.396707169000074 ], [ -123.56079952499999, 49.397440918000029 ], [ -123.560926217999949, 49.397546599000073 ], [ -123.56161492699998, 49.398121059000083 ], [ -123.561877748999976, 49.39830098200013 ], [ -123.562675350999925, 49.398847 ], [ -123.563099978999958, 49.3991376540001 ], [ -123.563397338999906, 49.399312899000051 ], [ -123.564319770999973, 49.399856563000107 ], [ -123.564525775999982, 49.399958832000017 ], [ -123.565095501, 49.400241632000053 ], [ -123.56546351899999, 49.400424298000068 ], [ -123.566831140000019, 49.400771069000058 ], [ -123.566979229999973, 49.400808607000066 ], [ -123.567281155999964, 49.400908120000032 ], [ -123.567481996999959, 49.401018871000126 ], [ -123.567491423999968, 49.401028881000045 ], [ -123.567498642999922, 49.401036569000055 ], [ -123.568299602999929, 49.403283607000049 ], [ -123.568082453999935, 49.404169041000102 ], [ -123.567819292999928, 49.40461360700003 ], [ -123.56763277899995, 49.405742276000083 ], [ -123.567118820999966, 49.405750709000081 ], [ -123.566336168999982, 49.405763516000036 ], [ -123.566286315999903, 49.405764347000066 ], [ -123.566234100999935, 49.405765195000114 ], [ -123.563937709999948, 49.405802812000047 ], [ -123.563113628999972, 49.405676227000114 ], [ -123.562900424999953, 49.405669620000019 ], [ -123.562640857999924, 49.405785334000036 ], [ -123.562591182999967, 49.405943572000041 ], [ -123.562307216999926, 49.405929516000114 ], [ -123.561693906999949, 49.405899088000069 ], [ -123.560844517999968, 49.405886189000036 ], [ -123.56073262399994, 49.405887925000052 ], [ -123.560401738999985, 49.405893069000065 ], [ -123.558903173999937, 49.405916311000055 ], [ -123.557507821999948, 49.405937455000121 ], [ -123.556970098999955, 49.40594559900007 ] ], [ [ -123.559602957999942, 49.400985528000042 ], [ -123.559604086999968, 49.400964143000046 ], [ -123.559567156999961, 49.400963310000044 ], [ -123.559159029999961, 49.400954111000054 ], [ -123.559171502999988, 49.400717781000033 ], [ -123.559171793999937, 49.400712244000083 ], [ -123.559181924999947, 49.400520287000091 ], [ -123.558490332999909, 49.400504694000098 ], [ -123.558506832999939, 49.400192119000053 ], [ -123.558413669999979, 49.400190018000053 ], [ -123.558416899999955, 49.400474827000025 ], [ -123.558003435, 49.400476824000123 ], [ -123.558018724999926, 49.40182600800005 ], [ -123.558432198999981, 49.401824012000077 ], [ -123.558440227999981, 49.402531947000092 ], [ -123.558444439999974, 49.402903359000106 ], [ -123.558030955999982, 49.402905355000065 ], [ -123.558032641999958, 49.403054122000128 ], [ -123.559492066999937, 49.403087027000012 ], [ -123.559494232999938, 49.403045990000066 ], [ -123.559602957999942, 49.400985528000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235323001", "BldgCostT": "161820001", "sL_LossRatio": "0.799730012966482", "sL_AssetLoss": "2026764", "sL_BldgLoss": "1620864", "sL_StrLoss": "908124", "sL_NStrLoss": "712740", "sL_ContLoss": "405900", "geom_point": "0101000020E6100000214DDD1125E35EC05F24619D32B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.541246883999975, 49.406120988000119 ], [ -123.541348621999973, 49.405970208000078 ], [ -123.541316403999971, 49.404746365000065 ], [ -123.541315313999959, 49.404704493000089 ], [ -123.541214730999954, 49.404630793000088 ], [ -123.54116940699997, 49.404597613000064 ], [ -123.541142796999964, 49.404191892000014 ], [ -123.541134951999965, 49.404091120000089 ], [ -123.541118735999945, 49.403881180000056 ], [ -123.541110546000013, 49.403776224000097 ], [ -123.541094294999951, 49.403566297000033 ], [ -123.541086140999965, 49.403461329000038 ], [ -123.541078023999916, 49.403356348000038 ], [ -123.5410698539999, 49.403251414000103 ], [ -123.541061735999946, 49.403146434000057 ], [ -123.541053583999926, 49.403041465000129 ], [ -123.541045431999919, 49.402936497000034 ], [ -123.54104153399993, 49.402886249000133 ], [ -123.541037278, 49.402831529000068 ], [ -123.541029160999955, 49.402726548000118 ], [ -123.541020972999931, 49.402621592000074 ], [ -123.54100588299994, 49.402309692000131 ], [ -123.5409869, 49.401680744000089 ], [ -123.5409645, 49.400937595000087 ], [ -123.540891898999973, 49.399064992000028 ], [ -123.542681586999933, 49.399031796000024 ], [ -123.543015445999956, 49.399011815000094 ], [ -123.544263896, 49.39893709100005 ], [ -123.54481218799998, 49.397090755000072 ], [ -123.544794105999955, 49.39743141200011 ], [ -123.54721956499999, 49.397486391000022 ], [ -123.547211389, 49.396750480000037 ], [ -123.547624822, 49.396748523 ], [ -123.547618820999929, 49.396208848000072 ], [ -123.547205393999931, 49.396210806000084 ], [ -123.547196399999947, 49.395401293000113 ], [ -123.547609821999941, 49.395399335000064 ], [ -123.547606821999977, 49.395129497 ], [ -123.549673918999986, 49.395119688000044 ], [ -123.549676929999961, 49.395389526000109 ], [ -123.550341457999977, 49.395386365000043 ], [ -123.550371182999953, 49.394825062000038 ], [ -123.5462424, 49.394731554000067 ], [ -123.546135444999919, 49.396747711000032 ], [ -123.54492222199994, 49.396720205000136 ], [ -123.546167398999913, 49.392526511000042 ], [ -123.546155084999924, 49.391849185000076 ], [ -123.547109450999955, 49.391832929000053 ], [ -123.548378702999926, 49.391811286000099 ], [ -123.548871921999961, 49.39181558300001 ], [ -123.549788392999972, 49.391823501000026 ], [ -123.550152872999888, 49.391892181000053 ], [ -123.550917484999943, 49.392036297000047 ], [ -123.551319292999949, 49.392121009000086 ], [ -123.551985878999929, 49.392160333000035 ], [ -123.552126870000038, 49.392176234000068 ], [ -123.553537308999964, 49.392682607000019 ], [ -123.552770034999952, 49.39358664100007 ], [ -123.552635396999946, 49.393745297000088 ], [ -123.552551807999947, 49.393999085000111 ], [ -123.552563129999967, 49.394254177000079 ], [ -123.55278101299993, 49.394950560000034 ], [ -123.552831590999958, 49.395087715000052 ], [ -123.554510809999954, 49.394797906000065 ], [ -123.554943506999962, 49.396021322000124 ], [ -123.55503057, 49.396267396000049 ], [ -123.55522166599999, 49.39680773700011 ], [ -123.555277680999907, 49.396966102000107 ], [ -123.555553275999927, 49.397508049000123 ], [ -123.55594399200001, 49.397994218000051 ], [ -123.556155324999935, 49.398168997000077 ], [ -123.556820121999962, 49.398718806000026 ], [ -123.557359084999931, 49.399597992000082 ], [ -123.55740869200001, 49.399781015000073 ], [ -123.556380782999952, 49.399681306000105 ], [ -123.556126862999974, 49.400015728000035 ], [ -123.55479657599993, 49.401767589000052 ], [ -123.55737817, 49.401793472000087 ], [ -123.557364912999958, 49.402357707000071 ], [ -123.557333555999932, 49.402898991000022 ], [ -123.557333210999971, 49.402917421000048 ], [ -123.557299593999971, 49.404637711000085 ], [ -123.55729540599998, 49.404795989000057 ], [ -123.557019505999932, 49.405453409000124 ], [ -123.556970098999955, 49.40594559900007 ], [ -123.55595085099999, 49.405964250000132 ], [ -123.554104481999929, 49.405997995000071 ], [ -123.552381721999964, 49.406036334000127 ], [ -123.55217479199996, 49.406040949000037 ], [ -123.549387306999932, 49.406102902000072 ], [ -123.547682212999959, 49.406148476000041 ], [ -123.547365177999936, 49.406156949000021 ], [ -123.542873208999964, 49.406276916000103 ], [ -123.542515787999946, 49.406286463000079 ], [ -123.541220499999952, 49.40632100400012 ], [ -123.541013494999959, 49.406326530000079 ], [ -123.541055396999965, 49.406289612000137 ], [ -123.541119237999936, 49.406233400000083 ], [ -123.54118309799999, 49.406177211000042 ], [ -123.541246883999975, 49.406120988000119 ] ], [ [ -123.546472590999898, 49.40469140400009 ], [ -123.546462366999904, 49.403770163000061 ], [ -123.546875859999929, 49.403768208000045 ], [ -123.546872861999987, 49.403498371000083 ], [ -123.547286351999958, 49.403496414000095 ], [ -123.547274355999932, 49.402417065000108 ], [ -123.546860875999954, 49.402419022000075 ], [ -123.546851885999956, 49.4016095100001 ], [ -123.54767883299999, 49.401605596000095 ], [ -123.547675832999985, 49.401335759000091 ], [ -123.548502776999953, 49.401331839000051 ], [ -123.548499769999964, 49.40106200200006 ], [ -123.54891323899993, 49.401060039000114 ], [ -123.548904217999919, 49.400250527000054 ], [ -123.548490755, 49.400252489000088 ], [ -123.548487747999971, 49.399982652000062 ], [ -123.547660827999934, 49.399986572000053 ], [ -123.547649419999942, 49.398960650000021 ], [ -123.54753625099994, 49.401094965000013 ], [ -123.54538833099997, 49.401046290000053 ], [ -123.545282371000013, 49.403042715000055 ], [ -123.541904866999943, 49.402966090000099 ], [ -123.54191098099993, 49.403521733000069 ], [ -123.54180612299993, 49.403522224000021 ], [ -123.541791775999954, 49.403792143000089 ], [ -123.541913950999955, 49.403791570000081 ], [ -123.541917558999941, 49.404119371000014 ], [ -123.542744799, 49.404138147000033 ], [ -123.542737961999961, 49.403517854000071 ], [ -123.544391922999978, 49.403510078000039 ], [ -123.544388939999976, 49.403240241000034 ], [ -123.545629402999964, 49.403234394000044 ], [ -123.54564435399999, 49.404583580000086 ], [ -123.543769067999946, 49.40459241500006 ], [ -123.543767067999937, 49.404630065000084 ], [ -123.546472590999898, 49.40469140400009 ] ], [ [ -123.552613263999902, 49.399153453000096 ], [ -123.552625376999941, 49.400232801000122 ], [ -123.552211913999912, 49.40023477700008 ], [ -123.55221796499994, 49.400774451000053 ], [ -123.551804498999957, 49.400776425000103 ], [ -123.551810545999956, 49.401316100000031 ], [ -123.550570132999923, 49.401322013000033 ], [ -123.550585216999977, 49.4026711980001 ], [ -123.550998701999973, 49.402669229000061 ], [ -123.551006173999966, 49.403337134000061 ], [ -123.551068737999984, 49.403365963000056 ], [ -123.551207436999931, 49.403512263000025 ], [ -123.551247071999967, 49.403747451000115 ], [ -123.551424269999984, 49.403746605000038 ], [ -123.551428564999966, 49.404130173000041 ], [ -123.551590669999953, 49.404285515000076 ], [ -123.55184381, 49.404284307000154 ], [ -123.551846668999985, 49.404539470000032 ], [ -123.553914795999972, 49.404586210000112 ], [ -123.553905217999926, 49.403734747000073 ], [ -123.554318710999922, 49.403732766000097 ], [ -123.554315672999962, 49.403462928000067 ], [ -123.553902183000019, 49.403464910000011 ], [ -123.553899148999932, 49.403195073000084 ], [ -123.553485660999954, 49.403197054000017 ], [ -123.553476561999943, 49.402387543 ], [ -123.553890041999921, 49.40238556200012 ], [ -123.553880935999985, 49.401576051000127 ], [ -123.55429441099993, 49.40157407 ], [ -123.554288334999967, 49.401034396000128 ], [ -123.554701803999961, 49.401032413000053 ], [ -123.554695725, 49.400492740000061 ], [ -123.55510918899995, 49.400490755000114 ], [ -123.555103104999901, 49.399951081000033 ], [ -123.555516565999966, 49.399949095000089 ], [ -123.555510477999974, 49.399409421000094 ], [ -123.555923931999956, 49.399407434000096 ], [ -123.555919944999957, 49.399054185000097 ], [ -123.553024889999932, 49.39898879000004 ], [ -123.55302671799997, 49.399151476000064 ], [ -123.552613263999902, 49.399153453000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "88580500", "BldgCostT": "61090000", "sL_LossRatio": "0.772259766249395", "sL_AssetLoss": "1035377", "sL_BldgLoss": "799580", "sL_StrLoss": "401640", "sL_NStrLoss": "397940", "sL_ContLoss": "235797", "geom_point": "0101000020E610000067789A698EE25EC057A28192E1B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.535237939999959, 49.39794736000006 ], [ -123.535192335999952, 49.396580217000185 ], [ -123.535128907999962, 49.394677012000038 ], [ -123.535128595999964, 49.394668015 ], [ -123.535029207999969, 49.392837088000114 ], [ -123.535859649999949, 49.391931238000041 ], [ -123.536416513999981, 49.391928361000055 ], [ -123.539351602999943, 49.391913261000049 ], [ -123.540598918999947, 49.391906797000026 ], [ -123.542176613999956, 49.391893091000085 ], [ -123.542168901999958, 49.391442698000091 ], [ -123.541988887999977, 49.390993890000097 ], [ -123.541837894999929, 49.390724815000048 ], [ -123.541816001999962, 49.390307483000065 ], [ -123.541791963999955, 49.389632914000117 ], [ -123.541786726999987, 49.389484804000077 ], [ -123.541909217999915, 49.389331103000117 ], [ -123.543198025999942, 49.388921705000094 ], [ -123.54653651699995, 49.390709892000089 ], [ -123.547427934000012, 49.391068430000104 ], [ -123.546155084999924, 49.391849185000076 ], [ -123.546167398999913, 49.392526511000042 ], [ -123.54492222199994, 49.396720205000136 ], [ -123.543489602999912, 49.396687706000087 ], [ -123.543491853999967, 49.396891806000028 ], [ -123.544821147999969, 49.396921960000029 ], [ -123.54481218799998, 49.397090755000072 ], [ -123.544263896, 49.39893709100005 ], [ -123.543015445999956, 49.399011815000094 ], [ -123.542681586999933, 49.399031796000024 ], [ -123.540891898999973, 49.399064992000028 ], [ -123.5409645, 49.400937595000087 ], [ -123.5409869, 49.401680744000089 ], [ -123.54100588299994, 49.402309692000131 ], [ -123.541020972999931, 49.402621592000074 ], [ -123.541029160999955, 49.402726548000118 ], [ -123.541037278, 49.402831529000068 ], [ -123.54104153399993, 49.402886249000133 ], [ -123.541045431999919, 49.402936497000034 ], [ -123.541053583999926, 49.403041465000129 ], [ -123.541061735999946, 49.403146434000057 ], [ -123.5410698539999, 49.403251414000103 ], [ -123.541078023999916, 49.403356348000038 ], [ -123.541086140999965, 49.403461329000038 ], [ -123.541094294999951, 49.403566297000033 ], [ -123.541110546000013, 49.403776224000097 ], [ -123.541118735999945, 49.403881180000056 ], [ -123.541134951999965, 49.404091120000089 ], [ -123.541142796999964, 49.404191892000014 ], [ -123.54116940699997, 49.404597613000064 ], [ -123.541214730999954, 49.404630793000088 ], [ -123.541315313999959, 49.404704493000089 ], [ -123.541316403999971, 49.404746365000065 ], [ -123.541348621999973, 49.405970208000078 ], [ -123.541246883999975, 49.406120988000119 ], [ -123.54118309799999, 49.406177211000042 ], [ -123.541119237999936, 49.406233400000083 ], [ -123.541055396999965, 49.406289612000137 ], [ -123.541013494999959, 49.406326530000079 ], [ -123.54017801199997, 49.40634878400008 ], [ -123.538318116999946, 49.406401046000056 ], [ -123.535545636999956, 49.406462242000067 ], [ -123.535541198999923, 49.406329662000076 ], [ -123.535528586999973, 49.405954952000037 ], [ -123.535471412999968, 49.405787075 ], [ -123.53531588, 49.405603483000057 ], [ -123.535225140999941, 49.405538940000042 ], [ -123.535136675999937, 49.405476052000054 ], [ -123.53507482699996, 49.405344097000103 ], [ -123.535474718999978, 49.403423694000061 ], [ -123.535454487999971, 49.40276836200006 ], [ -123.535402490999942, 49.401082998000057 ], [ -123.535279648999932, 49.399200248000106 ], [ -123.535248128999953, 49.398253103000073 ], [ -123.535237939999959, 49.39794736000006 ] ], [ [ -123.540590529, 49.396241922000051 ], [ -123.540587781999989, 49.39599168200008 ], [ -123.538907685999945, 49.395953500000047 ], [ -123.538891916999916, 49.396249852000096 ], [ -123.540590529, 49.396241922000051 ] ], [ [ -123.538310960999951, 49.395561687000061 ], [ -123.53837895199996, 49.394284070000033 ], [ -123.536891806999947, 49.39425024300008 ], [ -123.53689976699998, 49.39410074200002 ], [ -123.536883874999901, 49.394100380000076 ], [ -123.536432722999962, 49.394102474000057 ], [ -123.53643566199996, 49.394372312000087 ], [ -123.536022246999892, 49.394374230000082 ], [ -123.536022862999971, 49.394430669000023 ], [ -123.536405410999961, 49.394439376000065 ], [ -123.536348014999987, 49.395517033000047 ], [ -123.538310960999951, 49.395561687000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177789562", "BldgCostT": "113269531", "sL_LossRatio": "0.684869585320229", "sL_AssetLoss": "2456932", "sL_BldgLoss": "1682678", "sL_StrLoss": "720027", "sL_NStrLoss": "962651", "sL_ContLoss": "774254", "geom_point": "0101000020E610000002B718B022E25EC0C9C0C05AD2B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.555392528999903, 49.390023558000081 ], [ -123.55421811799999, 49.38970610500008 ], [ -123.554003625999925, 49.389724598000029 ], [ -123.553608031999929, 49.389652606000098 ], [ -123.551813606999943, 49.389729094000089 ], [ -123.550835106999955, 49.389352192000047 ], [ -123.550887995999929, 49.389159888000101 ], [ -123.550832084999954, 49.389019011000094 ], [ -123.55031638399997, 49.388821895 ], [ -123.549381292999968, 49.388406413000091 ], [ -123.549303375999955, 49.388400396000058 ], [ -123.549165976999916, 49.388389811000145 ], [ -123.549070989999947, 49.388465998000065 ], [ -123.548633918999911, 49.388139107000022 ], [ -123.547528608999983, 49.389192688000065 ], [ -123.547427934000012, 49.391068430000104 ], [ -123.54653651699995, 49.390709892000089 ], [ -123.545373402999985, 49.389061984000051 ], [ -123.545874792999882, 49.388489003000117 ], [ -123.546468391999952, 49.3880208080001 ], [ -123.547092785999922, 49.387412787000095 ], [ -123.546361394999963, 49.387104511000139 ], [ -123.54505930699996, 49.386987601000058 ], [ -123.543394902999964, 49.386178480000126 ], [ -123.541732989999957, 49.385656426 ], [ -123.539816528999935, 49.385211874000021 ], [ -123.537215897999957, 49.384929400000075 ], [ -123.534993652999958, 49.384615936000039 ], [ -123.532992773000018, 49.384743967000112 ], [ -123.531106316999953, 49.385133984000085 ], [ -123.531217895999944, 49.385616607000038 ], [ -123.531513486000037, 49.386270690000067 ], [ -123.531469705999939, 49.386368799000124 ], [ -123.530392982999956, 49.386468499000024 ], [ -123.529515391999922, 49.386604212000094 ], [ -123.530038513999955, 49.388232305000059 ], [ -123.529249406999938, 49.388361091000071 ], [ -123.529279608999957, 49.389163092000054 ], [ -123.529316413999979, 49.390148896000042 ], [ -123.529351789999936, 49.391267097000117 ], [ -123.52939341199999, 49.392035187000054 ], [ -123.527396540999945, 49.392068086000037 ], [ -123.526730249999943, 49.392079033000087 ], [ -123.52600224399994, 49.392090962000147 ], [ -123.524318582, 49.392133345000055 ], [ -123.52429621099995, 49.392133900000125 ], [ -123.523885515999922, 49.392187935000031 ], [ -123.524160905999949, 49.391316904000092 ], [ -123.524124607999951, 49.390194188000081 ], [ -123.524107881999953, 49.39001334000011 ], [ -123.51938134699999, 49.39044069100008 ], [ -123.518792203999965, 49.388494597000033 ], [ -123.518289897, 49.38861629600013 ], [ -123.517560499999917, 49.388733786000095 ], [ -123.517245210999974, 49.388655390000075 ], [ -123.517268229999942, 49.388032844000065 ], [ -123.517586192999929, 49.387123839000083 ], [ -123.517734886999961, 49.38707210200009 ], [ -123.517938513000033, 49.386926904000084 ], [ -123.517924185999973, 49.386701795000121 ], [ -123.518252701999984, 49.386521004000059 ], [ -123.5191094199999, 49.386714698000077 ], [ -123.520304105999983, 49.386475390000072 ], [ -123.522355488999921, 49.386241793000082 ], [ -123.524222153999943, 49.385880708000101 ], [ -123.52530341899994, 49.38567151700002 ], [ -123.527979703999932, 49.385153702000146 ], [ -123.528309011999966, 49.385018401000075 ], [ -123.529531102999982, 49.384769194000114 ], [ -123.530629191999978, 49.384377496000056 ], [ -123.531909850999966, 49.384067997000038 ], [ -123.53259006699993, 49.383903595000099 ], [ -123.533021592999958, 49.383799290000042 ], [ -123.534191402999951, 49.383686795000067 ], [ -123.536353990999928, 49.383712405000033 ], [ -123.537994778999959, 49.383822099000085 ], [ -123.538838404999964, 49.384015797000124 ], [ -123.541176095999944, 49.384895902000046 ], [ -123.542863212999961, 49.385381594000094 ], [ -123.543539492, 49.38548698800011 ], [ -123.545283684999902, 49.386368603000108 ], [ -123.546723016999962, 49.386902602000056 ], [ -123.547006556999975, 49.387048242000041 ], [ -123.547088542999958, 49.38709032900006 ], [ -123.547901612999979, 49.387507896000017 ], [ -123.550277296999965, 49.388472349000018 ], [ -123.550420597999931, 49.388530509000148 ], [ -123.550625654999948, 49.388659322000123 ], [ -123.551016908999955, 49.388905097000105 ], [ -123.551571297999914, 49.389127310000106 ], [ -123.553186692999972, 49.38941639800003 ], [ -123.554013441000023, 49.389475825000126 ], [ -123.555544995999966, 49.389585887000038 ], [ -123.555920186999941, 49.389772401000052 ], [ -123.555936511999974, 49.390006009000103 ], [ -123.556186017, 49.390229598000062 ], [ -123.557014706999951, 49.390450402000027 ], [ -123.557611116999951, 49.390762298000041 ], [ -123.557848303999918, 49.391031385000119 ], [ -123.558386640999913, 49.392735055000067 ], [ -123.558662901, 49.393609188000021 ], [ -123.559272778999969, 49.395090399000026 ], [ -123.559344072, 49.395159132000082 ], [ -123.559467805999958, 49.395278397000027 ], [ -123.55972208499999, 49.395835295000012 ], [ -123.56015558799993, 49.39628250700008 ], [ -123.560478577999945, 49.396802298000118 ], [ -123.561147003999949, 49.397429006000031 ], [ -123.562438878999913, 49.398448697000049 ], [ -123.56492468499998, 49.39996549800005 ], [ -123.565963921, 49.400445504000103 ], [ -123.567498680999933, 49.400852802000024 ], [ -123.568124012999974, 49.401388299000104 ], [ -123.569137103999964, 49.40191520000004 ], [ -123.569971459999977, 49.402111123000068 ], [ -123.56992303199992, 49.402307303 ], [ -123.569080866, 49.405718513000075 ], [ -123.56763277899995, 49.405742276000083 ], [ -123.567819292999928, 49.40461360700003 ], [ -123.568082453999935, 49.404169041000102 ], [ -123.568299602999929, 49.403283607000049 ], [ -123.567498642999922, 49.401036569000055 ], [ -123.567491423999968, 49.401028881000045 ], [ -123.567481996999959, 49.401018871000126 ], [ -123.567281155999964, 49.400908120000032 ], [ -123.566979229999973, 49.400808607000066 ], [ -123.566831140000019, 49.400771069000058 ], [ -123.56546351899999, 49.400424298000068 ], [ -123.565095501, 49.400241632000053 ], [ -123.564525775999982, 49.399958832000017 ], [ -123.564319770999973, 49.399856563000107 ], [ -123.563397338999906, 49.399312899000051 ], [ -123.563099978999958, 49.3991376540001 ], [ -123.562675350999925, 49.398847 ], [ -123.561877748999976, 49.39830098200013 ], [ -123.56161492699998, 49.398121059000083 ], [ -123.560926217999949, 49.397546599000073 ], [ -123.56079952499999, 49.397440918000029 ], [ -123.560121982999959, 49.396707169000074 ], [ -123.55997968899996, 49.396495287000114 ], [ -123.559903745999989, 49.396382217000088 ], [ -123.559353856999962, 49.395563284000083 ], [ -123.55927914099999, 49.395452008000021 ], [ -123.559248963999949, 49.395385926000117 ], [ -123.558630984999951, 49.394031044000016 ], [ -123.558152703999951, 49.392785909000096 ], [ -123.55777384699995, 49.391647384000095 ], [ -123.55765701299994, 49.391296312000094 ], [ -123.557437199999967, 49.391023896000071 ], [ -123.557066102999954, 49.390820843000022 ], [ -123.556676902, 49.390607904000056 ], [ -123.555775401999981, 49.390153601000101 ], [ -123.555555498999979, 49.390067613000021 ], [ -123.555392528999903, 49.390023558000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163132749", "BldgCostT": "110349999", "sL_LossRatio": "0.760818183570781", "sL_AssetLoss": "1815485", "sL_BldgLoss": "1381254", "sL_StrLoss": "701864", "sL_NStrLoss": "679390", "sL_ContLoss": "434231", "geom_point": "0101000020E6100000D4657C885BE25EC0D582A470B9B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.529351789999936, 49.391267097000117 ], [ -123.529316413999979, 49.390148896000042 ], [ -123.529279608999957, 49.389163092000054 ], [ -123.529249406999938, 49.388361091000071 ], [ -123.530038513999955, 49.388232305000059 ], [ -123.529515391999922, 49.386604212000094 ], [ -123.530392982999956, 49.386468499000024 ], [ -123.531469705999939, 49.386368799000124 ], [ -123.531513486000037, 49.386270690000067 ], [ -123.531217895999944, 49.385616607000038 ], [ -123.531106316999953, 49.385133984000085 ], [ -123.532992773000018, 49.384743967000112 ], [ -123.534993652999958, 49.384615936000039 ], [ -123.537215897999957, 49.384929400000075 ], [ -123.539816528999935, 49.385211874000021 ], [ -123.541732989999957, 49.385656426 ], [ -123.543394902999964, 49.386178480000126 ], [ -123.54505930699996, 49.386987601000058 ], [ -123.546361394999963, 49.387104511000139 ], [ -123.547092785999922, 49.387412787000095 ], [ -123.546468391999952, 49.3880208080001 ], [ -123.545874792999882, 49.388489003000117 ], [ -123.545373402999985, 49.389061984000051 ], [ -123.54653651699995, 49.390709892000089 ], [ -123.543198025999942, 49.388921705000094 ], [ -123.541909217999915, 49.389331103000117 ], [ -123.541786726999987, 49.389484804000077 ], [ -123.541791963999955, 49.389632914000117 ], [ -123.541816001999962, 49.390307483000065 ], [ -123.541837894999929, 49.390724815000048 ], [ -123.541988887999977, 49.390993890000097 ], [ -123.542168901999958, 49.391442698000091 ], [ -123.542176613999956, 49.391893091000085 ], [ -123.540598918999947, 49.391906797000026 ], [ -123.539351602999943, 49.391913261000049 ], [ -123.536416513999981, 49.391928361000055 ], [ -123.535859649999949, 49.391931238000041 ], [ -123.535093655999944, 49.391935161000063 ], [ -123.53483182399998, 49.391936489000109 ], [ -123.534597801999951, 49.391937702000071 ], [ -123.532063237999978, 49.391985210000087 ], [ -123.530410092999915, 49.39201617300003 ], [ -123.52939341199999, 49.392035187000054 ], [ -123.529351789999936, 49.391267097000117 ] ], [ [ -123.538580855999939, 49.390424164000116 ], [ -123.538586687999938, 49.390314534000034 ], [ -123.537218345999989, 49.390320900000084 ], [ -123.537220371, 49.390506582000064 ], [ -123.538421564999936, 49.390533905000069 ], [ -123.53842758899999, 49.390420678000083 ], [ -123.538580855999939, 49.390424164000116 ] ], [ [ -123.540933122999917, 49.389789921000116 ], [ -123.540931202999943, 49.389615020000043 ], [ -123.54083604, 49.38961285900006 ], [ -123.540838461999954, 49.389567286000045 ], [ -123.539696202, 49.389541329000068 ], [ -123.539698410999961, 49.389499794000038 ], [ -123.539689755999959, 49.38949983500008 ], [ -123.539686799999956, 49.389229996000026 ], [ -123.539273429999952, 49.389231925000054 ], [ -123.539276382999958, 49.389501764000059 ], [ -123.538863010999975, 49.389503691000087 ], [ -123.538866116999955, 49.389787791000039 ], [ -123.53927961, 49.389797192000039 ], [ -123.539281992999946, 49.389752397000088 ], [ -123.540933122999917, 49.389789921000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267705992", "BldgCostT": "169654571", "sL_LossRatio": "0.702206803856451", "sL_AssetLoss": "2653113", "sL_BldgLoss": "1863034", "sL_StrLoss": "804999", "sL_NStrLoss": "1058035", "sL_ContLoss": "790079", "geom_point": "0101000020E6100000067FC0E234E15EC0FACA48FFC3B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.513148384, 49.404277290000081 ], [ -123.514086936999902, 49.403860376000033 ], [ -123.515179338999971, 49.403836834000053 ], [ -123.515168890999959, 49.403286506000022 ], [ -123.515216282999944, 49.4029697100001 ], [ -123.515310497999934, 49.402805286000032 ], [ -123.515804094999936, 49.402413304000014 ], [ -123.515909833999942, 49.402163602000059 ], [ -123.515947834999963, 49.401840382000032 ], [ -123.515891240999977, 49.400918897000111 ], [ -123.516331509999986, 49.400928991000129 ], [ -123.517690478999953, 49.401455353000095 ], [ -123.518675063000018, 49.401462622000047 ], [ -123.518636715999961, 49.400811026000071 ], [ -123.51861599599998, 49.40045825400005 ], [ -123.52094728899999, 49.400397323000107 ], [ -123.521197075999964, 49.403292764000092 ], [ -123.524174301999892, 49.403406713000031 ], [ -123.524325753999975, 49.404337299000169 ], [ -123.524437099999915, 49.404336641000057 ], [ -123.524434390999886, 49.404387259000096 ], [ -123.525679194999952, 49.404415712000038 ], [ -123.525764387, 49.406648563000061 ], [ -123.52520503099997, 49.406656115000096 ], [ -123.524420591999942, 49.406666690000101 ], [ -123.523425359999962, 49.406680634000061 ], [ -123.52314941799996, 49.406684499000058 ], [ -123.522972182999951, 49.406687160000068 ], [ -123.522188724999936, 49.406698950000106 ], [ -123.521912818999937, 49.406703122000089 ], [ -123.521718074999953, 49.406706044000046 ], [ -123.521070034, 49.40671581800008 ], [ -123.520445491999951, 49.406725251000076 ], [ -123.518877802999967, 49.406747915000096 ], [ -123.515661933999951, 49.406777657000134 ], [ -123.514199949999949, 49.406807138000062 ], [ -123.513362719999989, 49.406824826000026 ], [ -123.511943636999916, 49.405928337000056 ], [ -123.511197518999936, 49.405456970000095 ], [ -123.51218549499994, 49.404859547000058 ], [ -123.513148384, 49.404277290000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154308660", "BldgCostT": "99930742", "sL_LossRatio": "0.722993970348709", "sL_AssetLoss": "1740565", "sL_BldgLoss": "1258418", "sL_StrLoss": "586160", "sL_NStrLoss": "672258", "sL_ContLoss": "482147", "geom_point": "0101000020E61000007FD34722ACE05EC0032DA02750B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.510741915000011, 49.411693998000018 ], [ -123.51075152599995, 49.411310721000092 ], [ -123.509657855999976, 49.411330610000057 ], [ -123.508872414, 49.41025642400011 ], [ -123.50809173199994, 49.409453350000049 ], [ -123.508025033999957, 49.409361771000093 ], [ -123.507988300999941, 49.408585731000066 ], [ -123.507983420999935, 49.408163069000054 ], [ -123.50798079899999, 49.407938204000068 ], [ -123.507979258999953, 49.407803279000042 ], [ -123.50796981099991, 49.406987183000098 ], [ -123.507608499999918, 49.406993293000014 ], [ -123.506725795999941, 49.407008910000116 ], [ -123.506783312999971, 49.405164224000053 ], [ -123.506814502999958, 49.404163205000039 ], [ -123.507147795999927, 49.404292386000058 ], [ -123.507657097999967, 49.404632713000055 ], [ -123.50857451499995, 49.405222306000034 ], [ -123.50872729699995, 49.405320502000087 ], [ -123.508884898999909, 49.405421792000013 ], [ -123.508850603999988, 49.406953406000056 ], [ -123.51004623299994, 49.406919344000073 ], [ -123.510954991999981, 49.406893438000083 ], [ -123.513362719999989, 49.406824826000026 ], [ -123.513394590999923, 49.407308151000066 ], [ -123.513463413999901, 49.408488300000052 ], [ -123.513479833999952, 49.408786259000131 ], [ -123.513514504999975, 49.409415757000026 ], [ -123.513569412999928, 49.410411202000077 ], [ -123.513603388999925, 49.411060188000114 ], [ -123.513657897999934, 49.412045504000119 ], [ -123.512339692999973, 49.412063908000086 ], [ -123.51137828499995, 49.41208229700009 ], [ -123.511003391999978, 49.412134909000038 ], [ -123.510741915000011, 49.411693998000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "561498154", "BldgCostT": "376732806", "sL_LossRatio": "0.813967680209458", "sL_AssetLoss": "4784932", "sL_BldgLoss": "3894780", "sL_StrLoss": "1749050", "sL_NStrLoss": "2145730", "sL_ContLoss": "890152", "geom_point": "0101000020E6100000E6257B5B9BE05EC05A9A18BB92B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.510508395999949, 49.399651812000073 ], [ -123.512261786999971, 49.399630916000092 ], [ -123.512278787999904, 49.400003169000101 ], [ -123.512340407999915, 49.401350811000029 ], [ -123.512347202999962, 49.401499306000083 ], [ -123.510075614999934, 49.402890945000131 ], [ -123.508593415999954, 49.403798895000065 ], [ -123.508751637999978, 49.403900725000028 ], [ -123.509029260999938, 49.404079346000081 ], [ -123.509247934999948, 49.404220066000043 ], [ -123.509744109999971, 49.404539305000149 ], [ -123.509757997999984, 49.404548231 ], [ -123.509938437999892, 49.404664351000029 ], [ -123.510078085999908, 49.404754200000113 ], [ -123.511197518999936, 49.405456970000095 ], [ -123.511943636999916, 49.405928337000056 ], [ -123.513362719999989, 49.406824826000026 ], [ -123.510954991999981, 49.406893438000083 ], [ -123.51004623299994, 49.406919344000073 ], [ -123.508850603999988, 49.406953406000056 ], [ -123.508884898999909, 49.405421792000013 ], [ -123.50872729699995, 49.405320502000087 ], [ -123.50857451499995, 49.405222306000034 ], [ -123.507657097999967, 49.404632713000055 ], [ -123.507147795999927, 49.404292386000058 ], [ -123.506814502999958, 49.404163205000039 ], [ -123.50682296799999, 49.403950578000064 ], [ -123.506865116999961, 49.402892100000074 ], [ -123.50693091, 49.402745088000046 ], [ -123.506682078999972, 49.402581796000064 ], [ -123.506182305999957, 49.402269486000101 ], [ -123.505678218999947, 49.401962600000068 ], [ -123.507308087, 49.401063794000024 ], [ -123.507805107999957, 49.400737588000084 ], [ -123.508076781999961, 49.400525899000044 ], [ -123.508584610999975, 49.400027977000065 ], [ -123.508929107999947, 49.399690202000038 ], [ -123.510508395999949, 49.399651812000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7298417", "BldgCostT": "4561667", "sL_LossRatio": "0.688687700520867", "sL_AssetLoss": "76987", "sL_BldgLoss": "53020", "sL_StrLoss": "24270", "sL_NStrLoss": "28750", "sL_ContLoss": "23967", "geom_point": "0101000020E61000008F9F95CD3FE05EC049E7706B5AB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.503440755999975, 49.408283102000055 ], [ -123.504330162999963, 49.408279226000069 ], [ -123.504345237999971, 49.40975089800002 ], [ -123.50347170399999, 49.409737681000173 ], [ -123.503467829000016, 49.409622150000096 ], [ -123.503433113999947, 49.408589742000046 ], [ -123.503440755999975, 49.408283102000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252194420", "BldgCostT": "163484203", "sL_LossRatio": "0.703321586621959", "sL_AssetLoss": "2573770", "sL_BldgLoss": "1810188", "sL_StrLoss": "792500", "sL_NStrLoss": "1017688", "sL_ContLoss": "763582", "geom_point": "0101000020E61000002393E02E77E05EC0A31409E045B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.509949131999974, 49.414236417000055 ], [ -123.509925456999923, 49.413230183000138 ], [ -123.510213938000035, 49.413259699000051 ], [ -123.510224818999973, 49.412065956000085 ], [ -123.508922936999952, 49.412163672000091 ], [ -123.507312511999928, 49.412171236000077 ], [ -123.507251733999965, 49.410591436000111 ], [ -123.507229908999989, 49.410024009000033 ], [ -123.507656664999942, 49.410033832000096 ], [ -123.507655116999956, 49.409883781000055 ], [ -123.507241572999959, 49.409885596000073 ], [ -123.507236011999936, 49.409345919000074 ], [ -123.506822469999932, 49.4093477320001 ], [ -123.506819692999954, 49.409077893000124 ], [ -123.505992612999961, 49.409081515000068 ], [ -123.505987066999978, 49.408541838000062 ], [ -123.505573532999946, 49.408543646000105 ], [ -123.505570762, 49.408273808000047 ], [ -123.505157228, 49.408275616000019 ], [ -123.505148921999975, 49.40746609900004 ], [ -123.503908344999971, 49.407471512 ], [ -123.503905581999931, 49.407201673000024 ], [ -123.503492058999939, 49.40720347400007 ], [ -123.503489298999938, 49.406933636000112 ], [ -123.501784852999947, 49.406941046000036 ], [ -123.501827144999936, 49.406744131 ], [ -123.501894028999928, 49.406433058000104 ], [ -123.501987615999951, 49.40623551500002 ], [ -123.501994602999957, 49.406174076000099 ], [ -123.501999190999982, 49.406133807000053 ], [ -123.50207375, 49.405978809000032 ], [ -123.502118693999961, 49.405885392000052 ], [ -123.502527700999977, 49.405455399000097 ], [ -123.502614298999987, 49.405127912000097 ], [ -123.503251594999952, 49.404449305000085 ], [ -123.503793407999936, 49.404672494000053 ], [ -123.504153037999956, 49.404293939000063 ], [ -123.504852300999943, 49.403557901000049 ], [ -123.505041921000029, 49.40341368800005 ], [ -123.50505338899994, 49.40341167400009 ], [ -123.505507896999944, 49.403331701000091 ], [ -123.505188201999957, 49.402950689000157 ], [ -123.505220206999965, 49.402791207000092 ], [ -123.505678218999947, 49.401962600000068 ], [ -123.506182305999957, 49.402269486000101 ], [ -123.506682078999972, 49.402581796000064 ], [ -123.50693091, 49.402745088000046 ], [ -123.506865116999961, 49.402892100000074 ], [ -123.50682296799999, 49.403950578000064 ], [ -123.506814502999958, 49.404163205000039 ], [ -123.506783312999971, 49.405164224000053 ], [ -123.506725795999941, 49.407008910000116 ], [ -123.507608499999918, 49.406993293000014 ], [ -123.50796981099991, 49.406987183000098 ], [ -123.507979258999953, 49.407803279000042 ], [ -123.50798079899999, 49.407938204000068 ], [ -123.507983420999935, 49.408163069000054 ], [ -123.507988300999941, 49.408585731000066 ], [ -123.508025033999957, 49.409361771000093 ], [ -123.50809173199994, 49.409453350000049 ], [ -123.508872414, 49.41025642400011 ], [ -123.509657855999976, 49.411330610000057 ], [ -123.51075152599995, 49.411310721000092 ], [ -123.510741915000011, 49.411693998000018 ], [ -123.511003391999978, 49.412134909000038 ], [ -123.51137828499995, 49.41208229700009 ], [ -123.512339692999973, 49.412063908000086 ], [ -123.513657897999934, 49.412045504000119 ], [ -123.513682452999944, 49.412761022000062 ], [ -123.513692789999979, 49.4130627810001 ], [ -123.512923608999969, 49.413067696000027 ], [ -123.512932006999932, 49.413347888000033 ], [ -123.512938002999988, 49.413568587000071 ], [ -123.513709693999914, 49.413568290000065 ], [ -123.513723039999917, 49.414216866000075 ], [ -123.513312227999933, 49.41422004800004 ], [ -123.512755317999904, 49.414224342000075 ], [ -123.511848168999947, 49.414232333000022 ], [ -123.510383830999928, 49.41423547300014 ], [ -123.509949131999974, 49.414236417000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "343047639", "BldgCostT": "228145600", "sL_LossRatio": "0.751410060353906", "sL_AssetLoss": "1655071", "sL_BldgLoss": "1243637", "sL_StrLoss": "560003", "sL_NStrLoss": "683634", "sL_ContLoss": "411434", "geom_point": "0101000020E61000007EAC007C83E05EC08AD8CD1037B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.50164330299998, 49.404871909000065 ], [ -123.502227193999943, 49.404104293000039 ], [ -123.502949709999882, 49.403417806000093 ], [ -123.503423712999933, 49.402470698000045 ], [ -123.504092978999921, 49.401973593000037 ], [ -123.506384607999976, 49.400812897000094 ], [ -123.507436913999982, 49.400123597000075 ], [ -123.507462193999956, 49.399827398000113 ], [ -123.507431366, 49.399714158000059 ], [ -123.507247003, 49.399036902000041 ], [ -123.506925505999973, 49.398605399000097 ], [ -123.506789973999986, 49.398234912000078 ], [ -123.506998083000028, 49.398201595000067 ], [ -123.508137303999931, 49.397691207000058 ], [ -123.508654553999946, 49.397472671000038 ], [ -123.509236684999934, 49.397226713000087 ], [ -123.509585103999925, 49.39710050300004 ], [ -123.510057589, 49.397002049000029 ], [ -123.510219238999966, 49.396968382000068 ], [ -123.510779202999927, 49.396851711000053 ], [ -123.511826492999916, 49.396633507000018 ], [ -123.51267074499999, 49.39648084500012 ], [ -123.512873894000023, 49.396444115000136 ], [ -123.51293982299994, 49.399612198000092 ], [ -123.512940008999948, 49.399621209000081 ], [ -123.512261786999971, 49.399630916000092 ], [ -123.510508395999949, 49.399651812000073 ], [ -123.508929107999947, 49.399690202000038 ], [ -123.508584610999975, 49.400027977000065 ], [ -123.508076781999961, 49.400525899000044 ], [ -123.507805107999957, 49.400737588000084 ], [ -123.507308087, 49.401063794000024 ], [ -123.505678218999947, 49.401962600000068 ], [ -123.505220206999965, 49.402791207000092 ], [ -123.505188201999957, 49.402950689000157 ], [ -123.505507896999944, 49.403331701000091 ], [ -123.50505338899994, 49.40341167400009 ], [ -123.505041921000029, 49.40341368800005 ], [ -123.504852300999943, 49.403557901000049 ], [ -123.504153037999956, 49.404293939000063 ], [ -123.503793407999936, 49.404672494000053 ], [ -123.503251594999952, 49.404449305000085 ], [ -123.502614298999987, 49.405127912000097 ], [ -123.502527700999977, 49.405455399000097 ], [ -123.502118693999961, 49.405885392000052 ], [ -123.50207375, 49.405978809000032 ], [ -123.501999190999982, 49.406133807000053 ], [ -123.501994602999957, 49.406174076000099 ], [ -123.501987615999951, 49.40623551500002 ], [ -123.501564167999959, 49.405609606000027 ], [ -123.501678598999945, 49.4051974610001 ], [ -123.501444896999942, 49.405128102000035 ], [ -123.501257234999954, 49.405014309000101 ], [ -123.501285794999944, 49.404998707000075 ], [ -123.50164330299998, 49.404871909000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.533444816053512", "sL_AssetLoss": "11960", "sL_BldgLoss": "6380", "sL_StrLoss": "1610", "sL_NStrLoss": "4770", "sL_ContLoss": "5580", "geom_point": "0101000020E6100000137CF40203E05EC04197574B0DB44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.498993637999916, 49.407844363000038 ], [ -123.49897997799999, 49.407762736000059 ], [ -123.4988252099999, 49.407763404000022 ], [ -123.498845488999947, 49.407644804000128 ], [ -123.498723087999963, 49.40659379300012 ], [ -123.499104688999921, 49.406196398000077 ], [ -123.499393119999979, 49.406032605000121 ], [ -123.499929814000026, 49.405739437000079 ], [ -123.499939616999967, 49.405739012000026 ], [ -123.499996732999961, 49.405737400000142 ], [ -123.49999906, 49.406231401000063 ], [ -123.500502109999942, 49.405876198000108 ], [ -123.500640706999945, 49.405778327000078 ], [ -123.500748134999952, 49.405702475000041 ], [ -123.501031339999955, 49.405712640000068 ], [ -123.50109923399999, 49.405715084000029 ], [ -123.501135145999967, 49.405689978000076 ], [ -123.501572887999941, 49.405383987000064 ], [ -123.501678598999945, 49.4051974610001 ], [ -123.501564167999959, 49.405609606000027 ], [ -123.501987615999951, 49.40623551500002 ], [ -123.501894028999928, 49.406433058000104 ], [ -123.501827144999936, 49.406744131 ], [ -123.501784852999947, 49.406941046000036 ], [ -123.501421690999976, 49.406942620000066 ], [ -123.501418942999948, 49.406672781000054 ], [ -123.501005423, 49.406674575000125 ], [ -123.501008168999988, 49.40694441200008 ], [ -123.500594646999943, 49.406946204000121 ], [ -123.500597391999946, 49.407216043000055 ], [ -123.500099244999944, 49.407218198000081 ], [ -123.500100037, 49.407267563000076 ], [ -123.499999936999984, 49.407312063000035 ], [ -123.499894536999932, 49.40734206300003 ], [ -123.499773399999967, 49.407520738000137 ], [ -123.499775820999972, 49.407759299000084 ], [ -123.499611176, 49.407760011000107 ], [ -123.499395536999941, 49.408078063000083 ], [ -123.499263736999978, 49.408169362000095 ], [ -123.49900480899997, 49.408061484000093 ], [ -123.498976436999911, 49.408049663000064 ], [ -123.498993637999916, 49.407844363000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66456000", "BldgCostT": "46800000", "sL_LossRatio": "0.971983563690698", "sL_AssetLoss": "133850", "sL_BldgLoss": "130100", "sL_StrLoss": "52200", "sL_NStrLoss": "77900", "sL_ContLoss": "3750", "geom_point": "0101000020E61000004296C3F6ECDF5EC01E5EC60380B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.497047162999976, 49.409838728000103 ], [ -123.497718111999916, 49.409140001000019 ], [ -123.498164483999929, 49.409150314000051 ], [ -123.49965239699999, 49.409184681000028 ], [ -123.499626526999947, 49.409663114000068 ], [ -123.501462930999963, 49.409705502000122 ], [ -123.501396555999946, 49.410663717000062 ], [ -123.49998339199999, 49.410702927000081 ], [ -123.497338253999942, 49.411104549000072 ], [ -123.496282449999967, 49.411128368000107 ], [ -123.496642715999968, 49.410712603000036 ], [ -123.496989588999924, 49.409911176000044 ], [ -123.497047162999976, 49.409838728000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249882661", "BldgCostT": "168225743", "sL_LossRatio": "0.779248373765098", "sL_AssetLoss": "1875959", "sL_BldgLoss": "1461838", "sL_StrLoss": "720038", "sL_NStrLoss": "741800", "sL_ContLoss": "414121", "geom_point": "0101000020E61000003E4D1C2FD3DF5EC0CD26A713DCB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.487651874999983, 49.428848231000075 ], [ -123.4877965299999, 49.427734219000087 ], [ -123.486992528999977, 49.427666110000075 ], [ -123.486377514999973, 49.427518498000055 ], [ -123.485938226999977, 49.4273085190001 ], [ -123.485750128999953, 49.427066412000059 ], [ -123.485680773999917, 49.426585909000075 ], [ -123.487556312999928, 49.426629423000051 ], [ -123.487551674999949, 49.426161316000098 ], [ -123.486724304999953, 49.426164801000034 ], [ -123.486721635999956, 49.425894962000072 ], [ -123.486307954999944, 49.425896703000056 ], [ -123.486299951999939, 49.425087186000113 ], [ -123.48647720299999, 49.425086440000044 ], [ -123.485886119000014, 49.425072724000081 ], [ -123.48588894299999, 49.425358763000077 ], [ -123.48571500299991, 49.42535949500008 ], [ -123.485726310999922, 49.425222918000088 ], [ -123.485952517999948, 49.424561907000047 ], [ -123.485915812999934, 49.424425890000073 ], [ -123.48578830799994, 49.424362699000014 ], [ -123.485613402999945, 49.424384699000093 ], [ -123.485025397999934, 49.424932906 ], [ -123.484361309999883, 49.425435196000109 ], [ -123.483989453999982, 49.425705227000066 ], [ -123.484213727999958, 49.425086541000105 ], [ -123.48432154899993, 49.424134180000074 ], [ -123.484492531999962, 49.423246555000063 ], [ -123.4845793099999, 49.422272693000053 ], [ -123.484530123999932, 49.421501839000051 ], [ -123.483474098999949, 49.421477304000106 ], [ -123.483463612999941, 49.421344365000067 ], [ -123.483408790999974, 49.420651100000022 ], [ -123.483510957999925, 49.420449927000035 ], [ -123.483612595999958, 49.420249790000135 ], [ -123.48372180599992, 49.420152270000081 ], [ -123.483954495999939, 49.419944392000033 ], [ -123.48416715599997, 49.419784468000067 ], [ -123.484941618999983, 49.419201993000051 ], [ -123.485832802999965, 49.418704098000077 ], [ -123.486538219999957, 49.41822619000007 ], [ -123.485369700999939, 49.41670450600008 ], [ -123.486161261999882, 49.416435383000085 ], [ -123.486522402999952, 49.416312613000109 ], [ -123.487508500999979, 49.417564408000089 ], [ -123.487791295999941, 49.417382978000091 ], [ -123.48808800299993, 49.417145714000078 ], [ -123.488532381999988, 49.416777892000084 ], [ -123.489382940000013, 49.416160885000053 ], [ -123.489934207999923, 49.416416907000063 ], [ -123.490244076999929, 49.416198829000066 ], [ -123.490445691999952, 49.416056899000061 ], [ -123.491428514999924, 49.415469207000122 ], [ -123.491722476999911, 49.415332896000088 ], [ -123.492914515999928, 49.414621304000057 ], [ -123.492659086999964, 49.414553307000105 ], [ -123.492253134999899, 49.414541212000081 ], [ -123.49198940399999, 49.414578294000115 ], [ -123.491838260999955, 49.414676072000049 ], [ -123.49178659799999, 49.414709498000079 ], [ -123.491661307999905, 49.4147336 ], [ -123.492907652999989, 49.413636455000109 ], [ -123.49291589299996, 49.413629205000099 ], [ -123.49311988599996, 49.413523981000054 ], [ -123.493355405999949, 49.413402499000064 ], [ -123.493749278999985, 49.413264845000107 ], [ -123.494097004999958, 49.413143297000062 ], [ -123.495505071999929, 49.412627262000051 ], [ -123.495945576999972, 49.412465793000095 ], [ -123.496056907999943, 49.412400106000057 ], [ -123.496211443, 49.412308902000113 ], [ -123.496504071999937, 49.412136179000122 ], [ -123.496695779999982, 49.412022996000069 ], [ -123.497104117999953, 49.411556202000085 ], [ -123.497317487999965, 49.411178507000066 ], [ -123.497338253999942, 49.411104549000072 ], [ -123.49998339199999, 49.410702927000081 ], [ -123.501396555999946, 49.410663717000062 ], [ -123.501462930999963, 49.409705502000122 ], [ -123.501849647, 49.409714423000047 ], [ -123.501849344999968, 49.409720014000108 ], [ -123.502277206999963, 49.409729883000125 ], [ -123.50226800499992, 49.408827904000098 ], [ -123.502681541999948, 49.408826107000031 ], [ -123.502676030999979, 49.40828642900005 ], [ -123.503440755999975, 49.408283102000055 ], [ -123.503433113999947, 49.408589742000046 ], [ -123.503467829000016, 49.409622150000096 ], [ -123.50347170399999, 49.409737681000173 ], [ -123.503516604999959, 49.411202692000067 ], [ -123.502285990999908, 49.411210960000147 ], [ -123.502134363999971, 49.411211972000068 ], [ -123.501400791999984, 49.411216899000081 ], [ -123.501376613999952, 49.4115873000001 ], [ -123.501377976999933, 49.412352590000069 ], [ -123.501526091999963, 49.412518096000078 ], [ -123.501448490999962, 49.412807087000019 ], [ -123.50151677599996, 49.413022095000066 ], [ -123.501490670999928, 49.413251097000042 ], [ -123.501500637999968, 49.41381575400009 ], [ -123.501503419999921, 49.413973393000099 ], [ -123.50151002099993, 49.414347299000021 ], [ -123.50711636599999, 49.414281075000126 ], [ -123.507090096999917, 49.415637299000124 ], [ -123.507236417999962, 49.416656287000123 ], [ -123.50723911299994, 49.417167687000045 ], [ -123.507401792999971, 49.417267814000105 ], [ -123.507591982999926, 49.417267693000113 ], [ -123.507907816999989, 49.417211909000059 ], [ -123.508597618999929, 49.417223293000077 ], [ -123.508918260999948, 49.417270445000064 ], [ -123.509119894999927, 49.417300085000079 ], [ -123.507210109999903, 49.420644168000095 ], [ -123.507241080999933, 49.42098253300005 ], [ -123.507346279, 49.422131944000071 ], [ -123.507445404999899, 49.42522688400004 ], [ -123.507451947999968, 49.425552299000081 ], [ -123.507457383999935, 49.42582229900006 ], [ -123.50754850099996, 49.426125986000109 ], [ -123.507789390000013, 49.426464644000063 ], [ -123.508058256999973, 49.426769766000106 ], [ -123.504166172999973, 49.427503029000079 ], [ -123.504227909999926, 49.426359654000066 ], [ -123.504101770999981, 49.42636020300008 ], [ -123.504094935999944, 49.425693040000098 ], [ -123.502071426, 49.42564639900008 ], [ -123.502061631999965, 49.42582765600006 ], [ -123.502768006999943, 49.425843941000068 ], [ -123.502754376999945, 49.426096219000051 ], [ -123.503271640999969, 49.426093970000061 ], [ -123.503282681999934, 49.427173321000076 ], [ -123.502868989999953, 49.427175121000097 ], [ -123.502871748999951, 49.427444960000031 ], [ -123.502681461999941, 49.427445787000089 ], [ -123.50266307199999, 49.427786167000072 ], [ -123.500393678999927, 49.428213606000114 ], [ -123.496495908999918, 49.42894758300006 ], [ -123.495859825999915, 49.428985094000012 ], [ -123.495405282999954, 49.429054719000121 ], [ -123.49502825199994, 49.429068502000113 ], [ -123.494567412999984, 49.429000230000106 ], [ -123.487812302999927, 49.42906708300012 ], [ -123.48753138299999, 49.428985841000078 ], [ -123.487651874999983, 49.428848231000075 ] ], [ [ -123.491073395999976, 49.428233729000056 ], [ -123.491085512999959, 49.4280105220001 ], [ -123.490879301999925, 49.428005747000064 ], [ -123.491074542999939, 49.424408912000025 ], [ -123.49154454899994, 49.424419796000024 ], [ -123.491553832999898, 49.424248723000112 ], [ -123.491812042999953, 49.424254702000091 ], [ -123.491924937999954, 49.4221740260001 ], [ -123.493694717999944, 49.422214989000075 ], [ -123.493697266999945, 49.422167969000036 ], [ -123.493818961999949, 49.422170784000059 ], [ -123.493866409999953, 49.421295571 ], [ -123.496098948999986, 49.421347201000074 ], [ -123.496145863999942, 49.420481024000019 ], [ -123.496476676999961, 49.420488671000086 ], [ -123.496492166999985, 49.420202632000105 ], [ -123.499489230000023, 49.420271862000078 ], [ -123.499488233999955, 49.420173669000057 ], [ -123.498660967999953, 49.420177240000058 ], [ -123.498653229999945, 49.419413653000049 ], [ -123.498650029999936, 49.419097886000081 ], [ -123.499596455999949, 49.419093800000013 ], [ -123.499663956999967, 49.417845732000067 ], [ -123.499224741999939, 49.417835592000081 ], [ -123.499238824999949, 49.417575234000061 ], [ -123.496851520999883, 49.41752008700005 ], [ -123.49664546399994, 49.417515325000039 ], [ -123.496696538999942, 49.416572045000052 ], [ -123.495236570999907, 49.416538290000027 ], [ -123.495345213999954, 49.414532888000053 ], [ -123.49529294499996, 49.414524856000043 ], [ -123.495063449, 49.414525839000085 ], [ -123.494953122999931, 49.416562111000125 ], [ -123.4947213, 49.416556749000058 ], [ -123.494705429999925, 49.416849616000064 ], [ -123.494514194999979, 49.416845193000128 ], [ -123.494502932999936, 49.417053021000129 ], [ -123.494195400999928, 49.417045906000055 ], [ -123.494182531999982, 49.417283328000082 ], [ -123.493530267, 49.417268235000051 ], [ -123.493504931999937, 49.417735543000035 ], [ -123.493005305999972, 49.417723980000048 ], [ -123.49299382199996, 49.417935755000073 ], [ -123.492790423999935, 49.417931047000131 ], [ -123.492778925999943, 49.418143060000077 ], [ -123.49247961399999, 49.418136131000068 ], [ -123.492463029999925, 49.418441867000105 ], [ -123.492093752999921, 49.418433317000037 ], [ -123.49208082799997, 49.418671576000172 ], [ -123.491783705999964, 49.418664696000107 ], [ -123.491774326, 49.418837583000034 ], [ -123.491559846999934, 49.418832616000024 ], [ -123.491545929999972, 49.419089087000017 ], [ -123.491317495999908, 49.419083797000098 ], [ -123.491306632, 49.419283993000107 ], [ -123.491216454000011, 49.419281905000076 ], [ -123.491189954999982, 49.419770195000112 ], [ -123.490232890999962, 49.419748023000103 ], [ -123.490222825, 49.419933418000021 ], [ -123.486767420999968, 49.419853297000024 ], [ -123.486678454999947, 49.42148973000014 ], [ -123.48984122899995, 49.421563070000026 ], [ -123.489767883999903, 49.422913749000024 ], [ -123.490828842999932, 49.422909251000064 ], [ -123.490839610999913, 49.423988606000101 ], [ -123.489709253999933, 49.423993398000093 ], [ -123.489645902999925, 49.42515991800007 ], [ -123.487955055000015, 49.425120721000084 ], [ -123.487962682999949, 49.425889732000037 ], [ -123.488790045999906, 49.425886237000029 ], [ -123.488792726000014, 49.426156076000048 ], [ -123.489206409999923, 49.426154326000081 ], [ -123.489214459, 49.426963843000053 ], [ -123.488923583999934, 49.426965073000112 ], [ -123.488874105999955, 49.427875791000076 ], [ -123.488835598999941, 49.428584544000081 ], [ -123.489230558999921, 49.42858287400005 ], [ -123.489233240999965, 49.42885271200003 ], [ -123.491040211999945, 49.428845055000082 ], [ -123.491073395999976, 49.428233729000056 ] ], [ [ -123.506783780999939, 49.416938185000035 ], [ -123.506738833, 49.417771667000046 ], [ -123.506846824999954, 49.417774154 ], [ -123.50689177199996, 49.416940671000106 ], [ -123.506783780999939, 49.416938185000035 ] ], [ [ -123.501546089, 49.41915320600004 ], [ -123.501548147999955, 49.419355202000098 ], [ -123.50170545899999, 49.41935451900013 ], [ -123.501961774, 49.419353407000131 ], [ -123.501964524999948, 49.419623246000107 ], [ -123.502378153999985, 49.419621450000058 ], [ -123.502380909999928, 49.419891288000066 ], [ -123.503208169999979, 49.419887691000106 ], [ -123.503216448, 49.420697206000035 ], [ -123.502802810999952, 49.420699005000131 ], [ -123.502806883999966, 49.421097793000023 ], [ -123.504029004999964, 49.42112596100003 ], [ -123.504093175999941, 49.41993741800006 ], [ -123.506401850999964, 49.419990592000026 ], [ -123.506493261999978, 49.418295822000083 ], [ -123.506255840999984, 49.418290356000092 ], [ -123.506229902999934, 49.418771229000136 ], [ -123.505127690999956, 49.418745846000057 ], [ -123.505101284999952, 49.419235155000145 ], [ -123.501704392999969, 49.419156857000083 ], [ -123.501546089, 49.41915320600004 ] ], [ [ -123.50270083, 49.410714979000055 ], [ -123.502695317999951, 49.410175301000109 ], [ -123.502640329999906, 49.410175540000097 ], [ -123.50261117399999, 49.410715368000055 ], [ -123.50270083, 49.410714979000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158338935", "BldgCostT": "105841897", "sL_LossRatio": "0.851662307538137", "sL_AssetLoss": "720480.4", "sL_BldgLoss": "613606", "sL_StrLoss": "396168", "sL_NStrLoss": "217438", "sL_ContLoss": "106874.4", "geom_point": "0101000020E6100000125F1E1988DE5EC0DF93245B9FB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.468795097999958, 49.445469005000078 ], [ -123.468791582999955, 49.444964798000086 ], [ -123.468390149999976, 49.444590275000103 ], [ -123.469110821999976, 49.444587355000067 ], [ -123.469117293999915, 49.445265681000087 ], [ -123.473256842999916, 49.4453622710001 ], [ -123.473254416, 49.445110170000056 ], [ -123.4736682599999, 49.445108477000097 ], [ -123.473665092999951, 49.444779554000085 ], [ -123.470780516999966, 49.444712274000075 ], [ -123.470824165999943, 49.44391491400004 ], [ -123.470213544999964, 49.443900662000047 ], [ -123.470219444999913, 49.443792914000056 ], [ -123.467352933999976, 49.443725963000091 ], [ -123.46727319899999, 49.443504993000069 ], [ -123.466814789999887, 49.443066305000052 ], [ -123.46795309399999, 49.442549395000057 ], [ -123.468171610999917, 49.442224586000073 ], [ -123.469049908999949, 49.441788805000016 ], [ -123.46950101499999, 49.441373 ], [ -123.470106918999946, 49.441244799000053 ], [ -123.470381505999953, 49.441082402000113 ], [ -123.470488303999929, 49.440659385000117 ], [ -123.470250487999934, 49.440461492000125 ], [ -123.469849302999933, 49.440356112000089 ], [ -123.469986582, 49.440129596000091 ], [ -123.470220307999966, 49.440048388 ], [ -123.470702315999972, 49.440028501000093 ], [ -123.472064495999916, 49.439581307000068 ], [ -123.472746893999926, 49.438958890000059 ], [ -123.472992501999983, 49.438597192000017 ], [ -123.473209091999962, 49.438201201000041 ], [ -123.473096481999946, 49.437994693000086 ], [ -123.472777297999983, 49.437789697 ], [ -123.4727075099999, 49.437573199000092 ], [ -123.473601387999935, 49.436022206000132 ], [ -123.47417522399995, 49.43530010500006 ], [ -123.474235694999933, 49.434418507000068 ], [ -123.473909592999959, 49.433484302000082 ], [ -123.472362978999953, 49.433445798000086 ], [ -123.472117298999947, 49.433599601000019 ], [ -123.471895308999933, 49.433601008000053 ], [ -123.47179870799998, 49.433413085000076 ], [ -123.472055212999948, 49.432863296000107 ], [ -123.473652780999956, 49.432774998000063 ], [ -123.473777488999986, 49.432712303000038 ], [ -123.473813314999944, 49.432216694000047 ], [ -123.473943730999963, 49.431982911000105 ], [ -123.474029420999983, 49.431829297000078 ], [ -123.474134986999928, 49.431306592000084 ], [ -123.474449320999938, 49.430865100000091 ], [ -123.475149118, 49.430439298000074 ], [ -123.478006520999926, 49.429419599000063 ], [ -123.478636098999957, 49.428868393000144 ], [ -123.479382193, 49.427696314000102 ], [ -123.480070995999966, 49.42603850100005 ], [ -123.480925408999965, 49.42320149100005 ], [ -123.481184582999944, 49.421537905000072 ], [ -123.482054699999949, 49.421525410000122 ], [ -123.483474098999949, 49.421477304000106 ], [ -123.484530123999932, 49.421501839000051 ], [ -123.4845793099999, 49.422272693000053 ], [ -123.484492531999962, 49.423246555000063 ], [ -123.48432154899993, 49.424134180000074 ], [ -123.484213727999958, 49.425086541000105 ], [ -123.483989453999982, 49.425705227000066 ], [ -123.484361309999883, 49.425435196000109 ], [ -123.485025397999934, 49.424932906 ], [ -123.485613402999945, 49.424384699000093 ], [ -123.48578830799994, 49.424362699000014 ], [ -123.485915812999934, 49.424425890000073 ], [ -123.485952517999948, 49.424561907000047 ], [ -123.485726310999922, 49.425222918000088 ], [ -123.48571500299991, 49.42535949500008 ], [ -123.485475265999966, 49.425360501000036 ], [ -123.485487311999947, 49.426581418000119 ], [ -123.485680773999917, 49.426585909000075 ], [ -123.485750128999953, 49.427066412000059 ], [ -123.485938226999977, 49.4273085190001 ], [ -123.486377514999973, 49.427518498000055 ], [ -123.486992528999977, 49.427666110000075 ], [ -123.4877965299999, 49.427734219000087 ], [ -123.487651874999983, 49.428848231000075 ], [ -123.48753138299999, 49.428985841000078 ], [ -123.485454869999941, 49.429021395000028 ], [ -123.48548488299997, 49.430876797000074 ], [ -123.484037296999986, 49.430881015000054 ], [ -123.482733327999966, 49.430863614000074 ], [ -123.47968739599996, 49.430971683000038 ], [ -123.479461605999944, 49.431749713000045 ], [ -123.479238174, 49.432671285000055 ], [ -123.479248311999925, 49.433010525000078 ], [ -123.479183097999965, 49.433823902000057 ], [ -123.479150696999966, 49.434012531000029 ], [ -123.479112353999966, 49.434235521000076 ], [ -123.479089006, 49.434335788000055 ], [ -123.47897563099994, 49.434543312000066 ], [ -123.478970979999971, 49.434551806000094 ], [ -123.478666096999973, 49.434834598000045 ], [ -123.478468795999973, 49.434963290000127 ], [ -123.478038888999919, 49.435162201 ], [ -123.47742978399998, 49.435384799000104 ], [ -123.47658228899995, 49.435706291000074 ], [ -123.47618110099998, 49.435908495000056 ], [ -123.475848216999935, 49.436123101000057 ], [ -123.475595335999969, 49.436424246000051 ], [ -123.475582720999952, 49.436439304000032 ], [ -123.475539558999969, 49.43650992700006 ], [ -123.475466190999924, 49.436630107000028 ], [ -123.475388799999948, 49.436961512000067 ], [ -123.475502282999983, 49.439931597000076 ], [ -123.475541484999937, 49.440297997000101 ], [ -123.475583788999984, 49.440378820000021 ], [ -123.475610186999944, 49.440429290000026 ], [ -123.475924905999975, 49.440776004000085 ], [ -123.476432996999975, 49.441192094000066 ], [ -123.475877298999961, 49.441773400000038 ], [ -123.475201700999932, 49.4429334840001 ], [ -123.475104389999899, 49.443043187000036 ], [ -123.474953443999965, 49.443213369 ], [ -123.474682995999956, 49.443518287000046 ], [ -123.47458439899999, 49.444137194000085 ], [ -123.474458413999983, 49.444349484000043 ], [ -123.473278395999941, 49.44557789 ], [ -123.472809683999955, 49.445954098000065 ], [ -123.472336517999949, 49.446209599000063 ], [ -123.472128782999945, 49.446402807000084 ], [ -123.471775378999936, 49.446836594000061 ], [ -123.471734394999928, 49.446874122000047 ], [ -123.471447162999965, 49.447308720000144 ], [ -123.471407379999945, 49.44759423700004 ], [ -123.471362390999957, 49.447742693000116 ], [ -123.471261645999917, 49.448165832000015 ], [ -123.468749109, 49.450183842000079 ], [ -123.467769904999926, 49.449368494000083 ], [ -123.467725517999938, 49.448945503000061 ], [ -123.46781751099995, 49.448603689000073 ], [ -123.468660098999976, 49.447277715000041 ], [ -123.468698415999981, 49.446898903000061 ], [ -123.468572216999959, 49.446539994000055 ], [ -123.468795097999958, 49.445469005000078 ] ], [ [ -123.483010232999902, 49.427105986000086 ], [ -123.483009093999968, 49.426989928000033 ], [ -123.482663090999921, 49.426991372000039 ], [ -123.48259540199993, 49.426991656000027 ], [ -123.482596241999943, 49.427077382000043 ], [ -123.482596429999887, 49.427096370000072 ], [ -123.483010232999902, 49.427105986000086 ] ], [ [ -123.484209596999918, 49.423746708000067 ], [ -123.484249839999947, 49.423007268000049 ], [ -123.48379724599998, 49.422996755 ], [ -123.483804634999956, 49.42374840300004 ], [ -123.484209596999918, 49.423746708000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179073880", "BldgCostT": "119161155", "sL_LossRatio": "0.750712363676959", "sL_AssetLoss": "1298845", "sL_BldgLoss": "975059", "sL_StrLoss": "410973", "sL_NStrLoss": "564086", "sL_ContLoss": "323786", "geom_point": "0101000020E610000074A48EE9A4DD5EC0F1E9FBBA9DAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.458336322999969, 49.368198500000048 ], [ -123.457794805999967, 49.367786911000117 ], [ -123.456003209999921, 49.367748510000055 ], [ -123.455555010999916, 49.366932394000045 ], [ -123.455525690999977, 49.366617594000061 ], [ -123.455147101999955, 49.365989606000021 ], [ -123.454761106999968, 49.365847102000053 ], [ -123.454593315999958, 49.365623507000038 ], [ -123.454934010999963, 49.365136496000048 ], [ -123.456797592999976, 49.364300388000089 ], [ -123.458337213999954, 49.364321005000079 ], [ -123.458255062999967, 49.365817059000086 ], [ -123.45913094799999, 49.365837635000055 ], [ -123.459118904999912, 49.366057024000114 ], [ -123.464321325999975, 49.366179092000074 ], [ -123.464355524, 49.365554850000095 ], [ -123.45937007399999, 49.365437878000158 ], [ -123.45940134099996, 49.364868218000062 ], [ -123.459254804999944, 49.36486477600004 ], [ -123.459313172999927, 49.363801395000046 ], [ -123.460319888999962, 49.363864612000071 ], [ -123.460922176999972, 49.363484393000093 ], [ -123.461044102999935, 49.363086985000052 ], [ -123.460847876999964, 49.36286339600013 ], [ -123.460735411999948, 49.362521608000101 ], [ -123.460838986999988, 49.361919192000116 ], [ -123.460712320999946, 49.361704105000094 ], [ -123.460022617999954, 49.361436405000099 ], [ -123.459860994999957, 49.360304089000103 ], [ -123.459756875999986, 49.360259198000065 ], [ -123.459796086, 49.359544628 ], [ -123.460926297999961, 49.359409704000043 ], [ -123.461485995999936, 49.359019495000112 ], [ -123.461361007999955, 49.358696195000057 ], [ -123.460533707999943, 49.358592205000058 ], [ -123.460185883999955, 49.358233301000105 ], [ -123.460126990999939, 49.357811812000158 ], [ -123.46048035099993, 49.357472143000052 ], [ -123.460910832999929, 49.357482250000047 ], [ -123.460927926999915, 49.357170557000089 ], [ -123.46148138299999, 49.356951493000082 ], [ -123.461879498999949, 49.356904487000072 ], [ -123.462020008999929, 49.357012806000114 ], [ -123.462105610999927, 49.357336092000047 ], [ -123.461792195999948, 49.35769640300007 ], [ -123.461724090999923, 49.357958414000095 ], [ -123.46180857799996, 49.35806529700006 ], [ -123.462248995999971, 49.358090894000092 ], [ -123.463115618999922, 49.357836005000145 ], [ -123.464366885999979, 49.357749107000117 ], [ -123.464533414999934, 49.357803208000064 ], [ -123.464315095999922, 49.358036806000086 ], [ -123.464427188999963, 49.358234694000068 ], [ -123.464895495999912, 49.358331608000078 ], [ -123.466259801999968, 49.358335905000054 ], [ -123.467148615999989, 49.357666506000093 ], [ -123.468509210999969, 49.357400194000029 ], [ -123.468738775999952, 49.35708399300011 ], [ -123.468726095999955, 49.356985711000036 ], [ -123.468516402999981, 49.356860404000088 ], [ -123.46854418599996, 49.356752094000115 ], [ -123.469052598999966, 49.35657840500005 ], [ -123.469712490999925, 49.356512888000097 ], [ -123.470043910999905, 49.356592591000016 ], [ -123.47016921299992, 49.35679060000006 ], [ -123.46996468199994, 49.357069701000043 ], [ -123.469553693999956, 49.35714380600006 ], [ -123.469251915999919, 49.357370202000013 ], [ -123.469407892999982, 49.357837397 ], [ -123.469878711999911, 49.358078110000108 ], [ -123.47071908599996, 49.358155008000011 ], [ -123.470913513999946, 49.358370003000054 ], [ -123.470260803, 49.359191786000103 ], [ -123.470155010999946, 49.359677488000031 ], [ -123.469828012999926, 49.360003590000126 ], [ -123.46929249899992, 49.360104696000043 ], [ -123.468258899999938, 49.360134596000101 ], [ -123.467941800999981, 49.360029204000064 ], [ -123.467653984999927, 49.360101896000046 ], [ -123.467202884999935, 49.360598903000039 ], [ -123.467070284000016, 49.361003399000069 ], [ -123.467322295999949, 49.361416401000021 ], [ -123.468010993999926, 49.361494793000091 ], [ -123.468053006999952, 49.361665708000054 ], [ -123.467698402999957, 49.362080084000048 ], [ -123.467742796999943, 49.362278103000087 ], [ -123.468348089999935, 49.362302312000097 ], [ -123.468502074999961, 49.362464595000105 ], [ -123.46898590899994, 49.362651209000028 ], [ -123.46954380699998, 49.363342003000135 ], [ -123.469518497, 49.363746412000062 ], [ -123.46929168299999, 49.364323199000118 ], [ -123.468687007999932, 49.36464940900003 ], [ -123.468553293999946, 49.364974095000107 ], [ -123.467990893, 49.365146409000033 ], [ -123.467443605999904, 49.365553801000075 ], [ -123.467351098, 49.365914106000069 ], [ -123.467546318999936, 49.366327102000049 ], [ -123.46753560599997, 49.366533606000125 ], [ -123.46724939799995, 49.366876814000079 ], [ -123.467143698999976, 49.367452198000088 ], [ -123.466373111999971, 49.368894890000099 ], [ -123.465976016999903, 49.369194005000047 ], [ -123.465385504999944, 49.369420511000101 ], [ -123.464003474999942, 49.370326293000097 ], [ -123.463069685000036, 49.370626807000114 ], [ -123.462271593999986, 49.370638203000063 ], [ -123.460853887999974, 49.370904502000059 ], [ -123.459988500999941, 49.371160894000099 ], [ -123.459025881999963, 49.371227801000067 ], [ -123.458805408000018, 49.371308995000106 ], [ -123.458283094, 49.371284811000059 ], [ -123.457410490000015, 49.370964312000062 ], [ -123.45686100599994, 49.370930102000095 ], [ -123.45680389499995, 49.370813399000042 ], [ -123.457157493999901, 49.370299190000068 ], [ -123.458129893999967, 49.369711014000124 ], [ -123.458552702999967, 49.369303711000086 ], [ -123.45861481599999, 49.368575899000078 ], [ -123.458336322999969, 49.368198500000048 ] ], [ [ -123.465093288999952, 49.363405372000088 ], [ -123.465194746999941, 49.361552625000051 ], [ -123.464942638999972, 49.361546717000046 ], [ -123.464919658999932, 49.361966334000051 ], [ -123.465066188, 49.361969768000101 ], [ -123.464972806999967, 49.363674936000038 ], [ -123.465075588999966, 49.363677345000035 ], [ -123.465090485999951, 49.363405306000061 ], [ -123.465093288999952, 49.363405372000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268580089", "BldgCostT": "155866785", "sL_LossRatio": "0.630343652109821", "sL_AssetLoss": "2518128", "sL_BldgLoss": "1587286", "sL_StrLoss": "663526", "sL_NStrLoss": "923760", "sL_ContLoss": "930842", "geom_point": "0101000020E61000007A129DA7B2DB5EC03F85332AB6B94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.412896510999957, 49.465245599000077 ], [ -123.413413602999924, 49.464335500000075 ], [ -123.413783606999985, 49.464037787000095 ], [ -123.414547908999978, 49.462991008000124 ], [ -123.414876399999969, 49.462756003000102 ], [ -123.415729808999956, 49.462365789000039 ], [ -123.415865487999952, 49.462032492000034 ], [ -123.416412399, 49.461653692000034 ], [ -123.416366495999966, 49.460915998000139 ], [ -123.416664979999965, 49.460455894000084 ], [ -123.416940918999941, 49.460428904000082 ], [ -123.41741299499995, 49.46061539300004 ], [ -123.417842304999922, 49.460937288000061 ], [ -123.418159505999967, 49.460981508000081 ], [ -123.418590614999971, 49.461186602000083 ], [ -123.418885537999984, 49.461211932000083 ], [ -123.419502209999962, 49.461264891000106 ], [ -123.42014688799992, 49.460965807000029 ], [ -123.420419398999954, 49.460595513000072 ], [ -123.42009941299996, 49.460101300000119 ], [ -123.420357285999927, 49.459588601000043 ], [ -123.420850692999949, 49.459226904000104 ], [ -123.420653698999956, 49.458759708000031 ], [ -123.421005006999934, 49.458056203000076 ], [ -123.421734504999961, 49.45767589600009 ], [ -123.422212895999962, 49.457242901000072 ], [ -123.422682106999915, 49.457187403000027 ], [ -123.422860087999965, 49.457096191000133 ], [ -123.423338201, 49.456510913000031 ], [ -123.423234210999979, 49.455575189000129 ], [ -123.422771496999985, 49.454865891000146 ], [ -123.422616307999974, 49.454363208000089 ], [ -123.422652053999954, 49.453423020000038 ], [ -123.426137087, 49.453505828000068 ], [ -123.426115841999959, 49.453887111000064 ], [ -123.426516297999981, 49.453896619000027 ], [ -123.426474500999959, 49.454646836000101 ], [ -123.426688537999951, 49.454651916000053 ], [ -123.426627911999915, 49.455740158000097 ], [ -123.427160787999952, 49.455752806000078 ], [ -123.427142361999955, 49.456083609000153 ], [ -123.429067045999886, 49.456076485000075 ], [ -123.429062336999905, 49.455536806000111 ], [ -123.429476270999928, 49.455535269000045 ], [ -123.429473913999971, 49.455265430000054 ], [ -123.429887844999911, 49.455263892000076 ], [ -123.429883124999904, 49.454724213000105 ], [ -123.430297052999933, 49.454722673000035 ], [ -123.430296511999927, 49.454660771000114 ], [ -123.430077476999955, 49.454655579000047 ], [ -123.430105512999944, 49.454151649000039 ], [ -123.429528386999948, 49.454137965000022 ], [ -123.429728514999965, 49.450541380000068 ], [ -123.430947588, 49.450570282000093 ], [ -123.431057272999979, 49.448597907000114 ], [ -123.431071226999975, 49.448598238000073 ], [ -123.431065342999943, 49.447927105000126 ], [ -123.431028027999943, 49.447926221000102 ], [ -123.431060252999913, 49.447346689000042 ], [ -123.431042758000018, 49.445351072000051 ], [ -123.430394920999944, 49.445335714000066 ], [ -123.430341426999959, 49.446297512000072 ], [ -123.424907078000018, 49.446168527000125 ], [ -123.425175798999973, 49.445601393000061 ], [ -123.426240498999945, 49.444221386000059 ], [ -123.427095005999917, 49.442617690000134 ], [ -123.428734689999928, 49.440847394000095 ], [ -123.429270421999988, 49.440566903000054 ], [ -123.429611198, 49.440223587000091 ], [ -123.429831096999948, 49.440123887000034 ], [ -123.430739608999914, 49.439850502000112 ], [ -123.431139984999987, 49.439858994000119 ], [ -123.431446100999935, 49.440091207000087 ], [ -123.431527819999985, 49.440092289000106 ], [ -123.431983218999932, 49.440098296 ], [ -123.432269993999924, 49.439800598000041 ], [ -123.432725685999984, 49.439718004000035 ], [ -123.432930515999956, 49.439582706000046 ], [ -123.432732906999917, 49.43894469700011 ], [ -123.432892717999977, 49.438376402000095 ], [ -123.433706497999964, 49.438319491000101 ], [ -123.434774506999986, 49.437434982000092 ], [ -123.435387102999925, 49.436515012000015 ], [ -123.435656218999895, 49.435731698000055 ], [ -123.435887212999887, 49.435424002000133 ], [ -123.436394802, 49.435197592000108 ], [ -123.437096811999965, 49.435078005000094 ], [ -123.43830729799997, 49.434632204000089 ], [ -123.439300793999919, 49.434602313000049 ], [ -123.440333014999922, 49.43431879600012 ], [ -123.440552199999942, 49.434345903000057 ], [ -123.44114821, 49.434639302000107 ], [ -123.441524309999963, 49.435079389000066 ], [ -123.442090893999961, 49.435076487000082 ], [ -123.443826008999977, 49.434683485000036 ], [ -123.444732522999914, 49.434401504000093 ], [ -123.445105191999929, 49.434345904000061 ], [ -123.445712675999943, 49.43440719400013 ], [ -123.446372116999967, 49.434179298000096 ], [ -123.447062486000021, 49.434374393000049 ], [ -123.44756531199999, 49.434885685000026 ], [ -123.44755139199999, 49.434965408000146 ], [ -123.447014794999973, 49.435157692000182 ], [ -123.447141291999984, 49.435327197000042 ], [ -123.446884007999955, 49.435795807000048 ], [ -123.445119176999953, 49.43586549400009 ], [ -123.444636894999931, 49.436066400000094 ], [ -123.444419400999934, 49.436318391000086 ], [ -123.444354710999946, 49.43688529100011 ], [ -123.44404188799993, 49.437209994000057 ], [ -123.444029685999908, 49.437443601000041 ], [ -123.44479060399999, 49.437692796000107 ], [ -123.445286588999963, 49.437718400000094 ], [ -123.44656719699999, 49.437335309000041 ], [ -123.446870493999981, 49.437423595000126 ], [ -123.44696731, 49.437540404000075 ], [ -123.446834193999976, 49.437865112000047 ], [ -123.447006586999962, 49.438674089000081 ], [ -123.446847910999978, 49.43953860400012 ], [ -123.446726396999949, 49.439673898000095 ], [ -123.44521429699995, 49.44026350700004 ], [ -123.444971301999942, 49.440929986000093 ], [ -123.445084693999917, 49.441244811000082 ], [ -123.444782611, 49.441542395000091 ], [ -123.44468700399996, 49.441946326000107 ], [ -123.444650487999951, 49.442100697000093 ], [ -123.444213199999936, 49.442624794000096 ], [ -123.44420907599999, 49.442652811000123 ], [ -123.441191438999937, 49.442581601000057 ], [ -123.441193828999971, 49.442538433000031 ], [ -123.438881114999987, 49.442547230000145 ], [ -123.438882162999931, 49.442664640000068 ], [ -123.43901843499998, 49.442667861000061 ], [ -123.438980269999931, 49.44335640200012 ], [ -123.443026654000022, 49.443340971000055 ], [ -123.443024222999966, 49.443071131000103 ], [ -123.443438051999976, 49.443069546000082 ], [ -123.443435618999928, 49.442799706000052 ], [ -123.444187882999969, 49.44279681900008 ], [ -123.444149683999967, 49.443056398000067 ], [ -123.443889399999961, 49.443255801000085 ], [ -123.443462079999961, 49.443814560000106 ], [ -123.443247907999961, 49.444094600000057 ], [ -123.443115099999901, 49.44415018000003 ], [ -123.44262011, 49.444152074000073 ], [ -123.442621156999948, 49.444268367000092 ], [ -123.442434779999957, 49.444295401000105 ], [ -123.442349311999976, 49.444422960000111 ], [ -123.442208697999959, 49.444423497000081 ], [ -123.442210555999949, 49.444630044000043 ], [ -123.442053998999938, 49.444863695999985 ], [ -123.44180810899995, 49.445017499000052 ], [ -123.441563496999919, 49.445505358000062 ], [ -123.441304038999988, 49.44550634900002 ], [ -123.44127475199997, 49.446035145000096 ], [ -123.44007775299994, 49.446701764000103 ], [ -123.439109988, 49.447240705000091 ], [ -123.438727416999967, 49.447655195000053 ], [ -123.438593206999954, 49.448115198000082 ], [ -123.438960490999975, 49.449120711 ], [ -123.438427812999947, 49.449690307000012 ], [ -123.438373396999921, 49.449744492000029 ], [ -123.438484306999925, 49.449859794000112 ], [ -123.439161914999957, 49.449956702000065 ], [ -123.440036277000019, 49.45059189500008 ], [ -123.440245411999982, 49.450762798000085 ], [ -123.440749091999947, 49.451551804000076 ], [ -123.440902109999982, 49.451623001000137 ], [ -123.44148110099998, 49.451657185000037 ], [ -123.442113236999916, 49.451643281000074 ], [ -123.442971588999953, 49.451624393000074 ], [ -123.44327480599999, 49.451685684000019 ], [ -123.443718115999914, 49.451990405000075 ], [ -123.444429091999922, 49.452769495000048 ], [ -123.445096109999923, 49.453262308000077 ], [ -123.445734611999953, 49.45354709100009 ], [ -123.447648114999964, 49.453926538000104 ], [ -123.447566344, 49.45540636500008 ], [ -123.442720421999937, 49.455292154000034 ], [ -123.442736744999962, 49.457104359000049 ], [ -123.441986733999926, 49.457107228000076 ], [ -123.441908851999983, 49.457107525000012 ], [ -123.441911277999978, 49.457377364000088 ], [ -123.441497327999969, 49.457378945000116 ], [ -123.441499210999964, 49.457588492000077 ], [ -123.44150460099992, 49.458188462000081 ], [ -123.438192948999969, 49.458201056000107 ], [ -123.438195353999959, 49.458470895000112 ], [ -123.437781394999917, 49.458472462000088 ], [ -123.437783798999959, 49.458742301000065 ], [ -123.437369837999981, 49.458743868000106 ], [ -123.437372238999927, 49.459013706000107 ], [ -123.436958275999942, 49.459015272000066 ], [ -123.436960675999941, 49.459285110000096 ], [ -123.436546709999945, 49.459286673000072 ], [ -123.436549105999944, 49.459556513000109 ], [ -123.435721170999983, 49.459559634000058 ], [ -123.435723562999954, 49.459829474000109 ], [ -123.43696547499998, 49.459824789000038 ], [ -123.436963075000037, 49.459554950000083 ], [ -123.438204977999959, 49.459550251000032 ], [ -123.438207383999938, 49.459820091000068 ], [ -123.438621354999924, 49.459818520000049 ], [ -123.438628579999943, 49.460628038000074 ], [ -123.437386648999976, 49.460632741000097 ], [ -123.437389051999972, 49.460902579000063 ], [ -123.435966222999951, 49.460907953000024 ], [ -123.435319152999924, 49.460910389000027 ], [ -123.435321543000029, 49.461180228000082 ], [ -123.433665616, 49.461186449000138 ], [ -123.433663234999955, 49.460916609000066 ], [ -123.433249254999964, 49.460918161000095 ], [ -123.43324687599997, 49.460648322000111 ], [ -123.432832898999891, 49.460649871000079 ], [ -123.432828145999977, 49.460110193000048 ], [ -123.432414172, 49.460111742 ], [ -123.432404674999958, 49.459032385000064 ], [ -123.434474493999971, 49.459024628000122 ], [ -123.434472108999927, 49.458754790000057 ], [ -123.435300031999986, 49.458751676000112 ], [ -123.435297640999963, 49.458481837000114 ], [ -123.436125559999979, 49.458478717000069 ], [ -123.436123165999959, 49.458208879000018 ], [ -123.432811507999958, 49.458221319000131 ], [ -123.432809132999949, 49.457951480000126 ], [ -123.431153313999971, 49.45795766400002 ], [ -123.431136743999957, 49.456068789000028 ], [ -123.430722803999984, 49.456070331000078 ], [ -123.43072516899997, 49.456340169000036 ], [ -123.430311228999983, 49.456341711000086 ], [ -123.430313590999987, 49.456611550000055 ], [ -123.429899647999946, 49.456613090000083 ], [ -123.429902006999939, 49.456882929000116 ], [ -123.429074113999917, 49.456886003000072 ], [ -123.42907647, 49.457155842000105 ], [ -123.427834624999932, 49.457160444000081 ], [ -123.427839323999933, 49.45770012200007 ], [ -123.427425369999966, 49.45770165200009 ], [ -123.427430063999964, 49.458241331000139 ], [ -123.427022081999922, 49.458242838000032 ], [ -123.427016911999928, 49.45833564400008 ], [ -123.427020794999947, 49.45878253900004 ], [ -123.426992010000021, 49.458782645000021 ], [ -123.426960439999917, 49.459349359000022 ], [ -123.42655804899999, 49.459339808000095 ], [ -123.426525453999943, 49.459924768000079 ], [ -123.426202683999989, 49.45991710600007 ], [ -123.426204572999964, 49.460134790000033 ], [ -123.425790598999967, 49.460136315000085 ], [ -123.42579527499997, 49.460675994000056 ], [ -123.425381294999923, 49.460677517000136 ], [ -123.425383572999976, 49.460940486000055 ], [ -123.426489234999906, 49.460966737000092 ], [ -123.426430382999968, 49.462022894 ], [ -123.426634945, 49.462022140000045 ], [ -123.426627917999966, 49.461212621000143 ], [ -123.427041898999946, 49.461211093000067 ], [ -123.427037208999963, 49.460671416000054 ], [ -123.427451186999974, 49.460669885000065 ], [ -123.427446491999888, 49.460130207000113 ], [ -123.428274441000013, 49.460127144000126 ], [ -123.428262681999982, 49.458777948000083 ], [ -123.428676644999939, 49.458776414000035 ], [ -123.428671936999976, 49.458236735000121 ], [ -123.429085894999943, 49.45823520000009 ], [ -123.429081181999948, 49.457695522000094 ], [ -123.430323041999927, 49.457690908000096 ], [ -123.430334854999941, 49.459040105000028 ], [ -123.429920889999906, 49.459041643000091 ], [ -123.429925610999959, 49.459581323000101 ], [ -123.429511642999955, 49.459582860000047 ], [ -123.429516359999937, 49.460122539000039 ], [ -123.429102386999958, 49.460124076000113 ], [ -123.429109454999917, 49.460933593000092 ], [ -123.428695474999927, 49.460935129000141 ], [ -123.428700183999979, 49.461474808000034 ], [ -123.428286198999928, 49.461476341000044 ], [ -123.428290900999912, 49.46201601900006 ], [ -123.427876911999988, 49.462017552000098 ], [ -123.42788396199991, 49.462827069000035 ], [ -123.427469964999929, 49.462828599000069 ], [ -123.427477006999979, 49.463638118000127 ], [ -123.42634013699994, 49.463642315000136 ], [ -123.426339516999988, 49.463653443000091 ], [ -123.426288811999967, 49.464563261000116 ], [ -123.425939042999957, 49.464554957000111 ], [ -123.425923311999938, 49.464837170000102 ], [ -123.425258635999953, 49.464821387000036 ], [ -123.42519664699995, 49.465933184000093 ], [ -123.419685698999928, 49.465802176000089 ], [ -123.419686432999939, 49.465789040000097 ], [ -123.418506156999939, 49.465760945000035 ], [ -123.418512647999975, 49.465644834000045 ], [ -123.416890603999903, 49.465606203000085 ], [ -123.416907784999964, 49.465299063000046 ], [ -123.41650039299995, 49.465289356000035 ], [ -123.416449010999898, 49.466207797000052 ], [ -123.41424421899994, 49.46615524000007 ], [ -123.414104654999974, 49.468647548000028 ], [ -123.409410115, 49.468535492000065 ], [ -123.409515198999983, 49.468514101000039 ], [ -123.410050693999906, 49.468143792 ], [ -123.410461005999977, 49.467683809000064 ], [ -123.411059689999959, 49.466745297000031 ], [ -123.411735897999947, 49.466652689000085 ], [ -123.411940981999948, 49.466481792000067 ], [ -123.412896510999957, 49.465245599000077 ] ], [ [ -123.438562166999958, 49.453185990000094 ], [ -123.438565618999988, 49.453123743000056 ], [ -123.43856161099994, 49.453123648000094 ], [ -123.438562166999958, 49.453185990000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3870417", "BldgCostT": "2141667", "sL_LossRatio": "0.656440129449838", "sL_AssetLoss": "46350", "sL_BldgLoss": "30426", "sL_StrLoss": "23620", "sL_NStrLoss": "6806", "sL_ContLoss": "15924", "geom_point": "0101000020E6100000A9CF40F22FDD5EC06327614B34B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.453470253999953, 49.39304365100007 ], [ -123.45356771299997, 49.391273249000065 ], [ -123.454375400999965, 49.391349004000112 ], [ -123.45467791, 49.391230788000044 ], [ -123.455118506999966, 49.391229382000105 ], [ -123.456231406999976, 49.390847689000097 ], [ -123.45650881399996, 49.390918902000081 ], [ -123.456939424999959, 49.391420204000063 ], [ -123.45818582, 49.391945798000094 ], [ -123.459013807999938, 49.392159405000065 ], [ -123.45902763299992, 49.39217168700003 ], [ -123.458972632999988, 49.393172957000111 ], [ -123.453470253999953, 49.39304365100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6221706", "BldgCostT": "4027039", "sL_LossRatio": "0.749880825785633", "sL_AssetLoss": "27271", "sL_BldgLoss": "20450", "sL_StrLoss": "10647", "sL_NStrLoss": "9803", "sL_ContLoss": "6821", "geom_point": "0101000020E610000023690E7B67DE5EC0CA6141AB5DAF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.474134097999979, 49.371049812000088 ], [ -123.473830200999913, 49.370987108000136 ], [ -123.473391506999988, 49.37113380100002 ], [ -123.47311479, 49.371081106000098 ], [ -123.47245080299993, 49.370696598000066 ], [ -123.47172697799999, 49.37002429800004 ], [ -123.471433288999933, 49.36954870000006 ], [ -123.47146031599999, 49.369441792000018 ], [ -123.47169420199999, 49.369278109000057 ], [ -123.472078197999906, 49.369205398000105 ], [ -123.472307585999943, 49.368799494000086 ], [ -123.472267008999935, 49.368672806000077 ], [ -123.47197539599992, 49.368521789000049 ], [ -123.471960988999953, 49.368394992000027 ], [ -123.472508407999953, 49.368214184000102 ], [ -123.47326652, 49.368246901000099 ], [ -123.47380281, 49.368054688000058 ], [ -123.474352210999939, 49.367999093000059 ], [ -123.47435408399997, 49.368097406000061 ], [ -123.474810613, 49.368231303000087 ], [ -123.474894813999981, 49.368573101000067 ], [ -123.474623507, 49.368987485000062 ], [ -123.475095978999946, 49.369382 ], [ -123.47532041, 49.369766587000093 ], [ -123.475802292999944, 49.369765107000092 ], [ -123.476321497999919, 49.369322207000081 ], [ -123.477107505999982, 49.369273788000058 ], [ -123.477903894999955, 49.369054513000066 ], [ -123.47798669299999, 49.369090099000076 ], [ -123.477962384999927, 49.369477393000054 ], [ -123.47852889, 49.369582805000107 ], [ -123.478806487999947, 49.369770795000093 ], [ -123.478856051999912, 49.369981628000026 ], [ -123.478853815999983, 49.370022655000049 ], [ -123.478685682, 49.370193794000073 ], [ -123.47881210299991, 49.370354792000079 ], [ -123.478835624999988, 49.370356623000049 ], [ -123.478808516999919, 49.370854219000094 ], [ -123.478761995999946, 49.370886003000116 ], [ -123.478089611999977, 49.371149507000077 ], [ -123.477482634999902, 49.371525918 ], [ -123.476184675999932, 49.371495648000071 ], [ -123.476165943999931, 49.371839157000082 ], [ -123.475851104999947, 49.37184309 ], [ -123.47553201, 49.371655095000065 ], [ -123.474305193999953, 49.371588093000099 ], [ -123.47411088799997, 49.371427194000034 ], [ -123.474134097999979, 49.371049812000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7545886", "BldgCostT": "3862079", "sL_LossRatio": "0.716847865390642", "sL_AssetLoss": "41483", "sL_BldgLoss": "29737", "sL_StrLoss": "20155", "sL_NStrLoss": "9582", "sL_ContLoss": "11746", "geom_point": "0101000020E610000063B024713DDF5EC0561BCEC23FAE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.487858030000012, 49.364023061000061 ], [ -123.488007513, 49.361268523000028 ], [ -123.484875709, 49.361195747000096 ], [ -123.48447190199991, 49.360590389000059 ], [ -123.484506910999983, 49.35990679300005 ], [ -123.484796624999916, 49.359663206000072 ], [ -123.484808382999987, 49.359653302000098 ], [ -123.48579580099999, 49.35921739900008 ], [ -123.485448588999972, 49.359056489000054 ], [ -123.48507280599992, 49.358474010000073 ], [ -123.485387614999951, 49.358337307000085 ], [ -123.485993390999951, 49.35829030100011 ], [ -123.486321193999956, 49.358189201000108 ], [ -123.486735, 49.358223306000042 ], [ -123.486805224999983, 49.358340104000035 ], [ -123.486687398999933, 49.358835806000059 ], [ -123.486260690999956, 49.359008102000104 ], [ -123.486220395999965, 49.359134799000067 ], [ -123.486900108999961, 49.359490891000107 ], [ -123.488073315999927, 49.359801393000069 ], [ -123.488469096999921, 49.359756558000086 ], [ -123.488406281999971, 49.360914364000088 ], [ -123.491002219999956, 49.36097460900006 ], [ -123.49110201299996, 49.361047497000087 ], [ -123.491774408999916, 49.36212430200009 ], [ -123.491795182999937, 49.362970205000082 ], [ -123.491721827999925, 49.362994537000105 ], [ -123.491494494999955, 49.363069901000088 ], [ -123.490998694999973, 49.363072790000011 ], [ -123.490418618999939, 49.362948896000049 ], [ -123.490226887999953, 49.362994400000069 ], [ -123.489664190999918, 49.36337470800008 ], [ -123.489669298999942, 49.363725093 ], [ -123.48956109199996, 49.363914500000135 ], [ -123.488998396999975, 49.36414239500003 ], [ -123.488005619999981, 49.364111 ], [ -123.487858030000012, 49.364023061000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56184819", "BldgCostT": "31075398", "sL_LossRatio": "0.646101131444363", "sL_AssetLoss": "196121", "sL_BldgLoss": "126714", "sL_StrLoss": "54896", "sL_NStrLoss": "71818", "sL_ContLoss": "69407", "geom_point": "0101000020E6100000C1CA159C49D65EC06CF0DF3800BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.343636536999909, 49.48049353600004 ], [ -123.343646426999896, 49.48032166600013 ], [ -123.340699842999967, 49.480249459000085 ], [ -123.34072927899993, 49.479738488000073 ], [ -123.34070777499997, 49.47973796000008 ], [ -123.340914928999936, 49.476141678000126 ], [ -123.341105724999963, 49.476146355000019 ], [ -123.341131143999945, 49.47570498200011 ], [ -123.341626025999943, 49.475717115000052 ], [ -123.341648644999935, 49.475324293000078 ], [ -123.342124010999953, 49.475335945000026 ], [ -123.342172571999967, 49.474492404000038 ], [ -123.343068182999943, 49.474514350000113 ], [ -123.343068834999926, 49.474503026000022 ], [ -123.34354566899999, 49.47451470700004 ], [ -123.34356733599999, 49.474138138000114 ], [ -123.343866596999945, 49.474145468000067 ], [ -123.34388534199999, 49.473819644000109 ], [ -123.344136214999978, 49.47382578800007 ], [ -123.34415284799999, 49.47353665 ], [ -123.344179925000034, 49.473537313000051 ], [ -123.344199163999988, 49.473202850000028 ], [ -123.344708101000023, 49.473215313000054 ], [ -123.344727461999966, 49.472878662 ], [ -123.345002762999954, 49.472885403000078 ], [ -123.345019866999976, 49.472587969000095 ], [ -123.345947144999954, 49.472610667000026 ], [ -123.346005682999959, 49.471592290000039 ], [ -123.346223278999972, 49.4715976150001 ], [ -123.346244494999951, 49.471228495000055 ], [ -123.346622270999916, 49.471237739000109 ], [ -123.346644301000012, 49.470854404000107 ], [ -123.347002253999946, 49.470863162000079 ], [ -123.347026808999914, 49.470435812000026 ], [ -123.351487715999937, 49.470544859000064 ], [ -123.349615106999963, 49.472506185000064 ], [ -123.349478208999955, 49.472668488000053 ], [ -123.349520598999973, 49.472839403000059 ], [ -123.34996521, 49.473098592000092 ], [ -123.34982949599997, 49.473423405000077 ], [ -123.348946989999945, 49.47357858800008 ], [ -123.348452106999957, 49.473867709000011 ], [ -123.347052989999966, 49.475122411000093 ], [ -123.346930375999989, 49.475447197000094 ], [ -123.34630158299997, 49.476132200000045 ], [ -123.345656683999948, 49.476583690000027 ], [ -123.34538048899999, 49.476881297000041 ], [ -123.34513579799993, 49.477224586000048 ], [ -123.345015109999963, 49.477620485000081 ], [ -123.345031689000038, 49.478205904000077 ], [ -123.344784681999954, 49.478474993000056 ], [ -123.345077286999981, 49.47886099000003 ], [ -123.345256598999953, 49.478869498000066 ], [ -123.345641012999977, 49.478554807000116 ], [ -123.345959785999952, 49.478517808000099 ], [ -123.345873204999961, 49.478022102000089 ], [ -123.345966890999989, 49.477815612000086 ], [ -123.346627211999987, 49.477301495000084 ], [ -123.347026292999956, 49.477156202000081 ], [ -123.348171709000013, 49.477161896000062 ], [ -123.348944190999973, 49.477077906000027 ], [ -123.349756300999928, 49.476770306000056 ], [ -123.350099996999916, 49.47641848800005 ], [ -123.350493594999975, 49.475652301000082 ], [ -123.351332414999959, 49.47510110200006 ], [ -123.351607608, 49.475091104000036 ], [ -123.351844705999937, 49.475207893000047 ], [ -123.352095078000019, 49.475575395000121 ], [ -123.352426899999969, 49.475808899000107 ], [ -123.352953412999966, 49.475941394000102 ], [ -123.353793776999964, 49.475794695000026 ], [ -123.354032408999942, 49.476163493000044 ], [ -123.354183089999964, 49.476207703000028 ], [ -123.35463629399996, 49.475855908000021 ], [ -123.354620681999918, 49.475405902000119 ], [ -123.354715216999963, 49.475162298000072 ], [ -123.354894394999931, 49.475081099000079 ], [ -123.355406295999984, 49.475321789000063 ], [ -123.355699099999953, 49.475672200000098 ], [ -123.355946386999932, 49.47574340200002 ], [ -123.356595793999986, 49.475777600000178 ], [ -123.357449599999967, 49.475532598000029 ], [ -123.357615389999935, 49.475549697000055 ], [ -123.357782393999955, 49.475729194000095 ], [ -123.35800241299998, 49.47567092100013 ], [ -123.357862526999924, 49.478115198000133 ], [ -123.357798177999896, 49.478113631000063 ], [ -123.357746620999947, 49.47901442300013 ], [ -123.35774397899992, 49.479060598000054 ], [ -123.357547633999971, 49.479055815000059 ], [ -123.353581235999926, 49.478959106000104 ], [ -123.35223165799999, 49.478926166000072 ], [ -123.352236747999925, 49.478837415000072 ], [ -123.351589135999916, 49.478821602000032 ], [ -123.351570532999986, 49.479145849000112 ], [ -123.350930763999926, 49.479130225000105 ], [ -123.350925212, 49.479226965000102 ], [ -123.34923187099993, 49.479185592000128 ], [ -123.349149020999917, 49.480628405000118 ], [ -123.343636536999909, 49.48049353600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4296667", "BldgCostT": "2466667", "sL_LossRatio": "0.696703101395184", "sL_AssetLoss": "11253", "sL_BldgLoss": "7840", "sL_StrLoss": "3151", "sL_NStrLoss": "4689", "sL_ContLoss": "3413", "geom_point": "0101000020E6100000855758910DDA5EC055CA63B42BBC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.405331107999956, 49.469868493000064 ], [ -123.405504692999955, 49.469184897000041 ], [ -123.406220704, 49.469119393000085 ], [ -123.406747990999975, 49.46923479200013 ], [ -123.4071602, 49.469214790000102 ], [ -123.408123008999922, 49.468797491000053 ], [ -123.408944113999937, 49.468630352000041 ], [ -123.408803784, 49.47113107100008 ], [ -123.404567249999943, 49.471029755000096 ], [ -123.404773299999945, 49.470824198000109 ], [ -123.404960919999951, 49.470248804000107 ], [ -123.405331107999956, 49.469868493000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9630083", "BldgCostT": "5378333", "sL_LossRatio": "0.655490499911603", "sL_AssetLoss": "96157", "sL_BldgLoss": "63030", "sL_StrLoss": "37670", "sL_NStrLoss": "25360", "sL_ContLoss": "33127", "geom_point": "0101000020E610000003818417F3D85EC06502B838AEC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.38590648099995, 49.532599316000038 ], [ -123.386094945999972, 49.529274927000081 ], [ -123.387360129999934, 49.529305377000078 ], [ -123.387447979999948, 49.527754856000108 ], [ -123.387969127999938, 49.527767394000101 ], [ -123.387989578999978, 49.527406368000065 ], [ -123.388446619999954, 49.527417362000051 ], [ -123.388471582999941, 49.526976580000046 ], [ -123.388848600999935, 49.526985647000082 ], [ -123.388872590999981, 49.526561988000026 ], [ -123.389248073999923, 49.52657101700003 ], [ -123.389263389999911, 49.526300496000047 ], [ -123.394781477999942, 49.526433038000079 ], [ -123.394729746999985, 49.527348703000079 ], [ -123.393937216999959, 49.527520498000072 ], [ -123.392808986999952, 49.528064606000115 ], [ -123.392165389999946, 49.528884891000054 ], [ -123.391257903999986, 49.529517286000051 ], [ -123.391081780999968, 49.529931695000066 ], [ -123.390505776999987, 49.530374595000097 ], [ -123.390594604999933, 49.531120889000086 ], [ -123.390552506999981, 49.531247689000075 ], [ -123.390347009999971, 49.531364504000095 ], [ -123.38960118199995, 49.531375898000086 ], [ -123.389394094999943, 49.531511208000076 ], [ -123.389396010999974, 49.531736201000037 ], [ -123.38910638499999, 49.531818795000035 ], [ -123.388786081999953, 49.531397203000104 ], [ -123.388355202999961, 49.531182190000045 ], [ -123.387909609999923, 49.530599708000082 ], [ -123.387756688999957, 49.530618192000091 ], [ -123.387510106999954, 49.530969999000028 ], [ -123.387208182000023, 49.531051091000045 ], [ -123.38694831299992, 49.531340297000085 ], [ -123.386893094999905, 49.53156531300003 ], [ -123.386207715999973, 49.532035294000082 ], [ -123.38600388899999, 49.532530906000083 ], [ -123.38590648099995, 49.532599316000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12351642", "BldgCostT": "6501976", "sL_LossRatio": "0.671426669962541", "sL_AssetLoss": "52591", "sL_BldgLoss": "35311", "sL_StrLoss": "18264", "sL_NStrLoss": "17047", "sL_ContLoss": "17280", "geom_point": "0101000020E6100000C942AEB365D85EC0A9818BBA7BBD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.376401614999921, 49.480715306000022 ], [ -123.376606190999922, 49.480364997000066 ], [ -123.376725712999971, 49.479860804000083 ], [ -123.376986498999941, 49.479590194000131 ], [ -123.378632817999957, 49.479907795000024 ], [ -123.379257588999948, 49.48024004300008 ], [ -123.37987830499999, 49.480570092000036 ], [ -123.38015489699994, 49.480577199000024 ], [ -123.380471500999974, 49.480477510000128 ], [ -123.380595496999959, 49.480306593000122 ], [ -123.380849117999958, 49.479217 ], [ -123.381207893999928, 49.479234100000099 ], [ -123.381717287999919, 49.478926503000125 ], [ -123.382419894999927, 49.478869504000066 ], [ -123.382791797999928, 49.478725696000041 ], [ -123.382914397999969, 49.478490700000087 ], [ -123.383503121, 49.477966605000056 ], [ -123.383553890999963, 49.477463799000049 ], [ -123.383804417999954, 49.477205995000098 ], [ -123.38549068, 49.477246658000062 ], [ -123.385286993999941, 49.480843020000044 ], [ -123.383793296999983, 49.48080700100013 ], [ -123.383766655999949, 49.481277056000138 ], [ -123.383471197999981, 49.481269929000028 ], [ -123.383433779999933, 49.481930063000085 ], [ -123.381129220999924, 49.48187444399999 ], [ -123.381104708999914, 49.48230651800003 ], [ -123.375591931999949, 49.4821732730001 ], [ -123.37563265799993, 49.481456945000041 ], [ -123.375921412999929, 49.481005907000039 ], [ -123.376401614999921, 49.480715306000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14212167", "BldgCostT": "7886667", "sL_LossRatio": "0.578718538971778", "sL_AssetLoss": "150261.3", "sL_BldgLoss": "86959", "sL_StrLoss": "27800", "sL_NStrLoss": "59159", "sL_ContLoss": "63302.3", "geom_point": "0101000020E61000000948FB1F20DF5EC088F6B1825FB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.482745900999959, 49.416285501000026 ], [ -123.483157995999974, 49.416194387000068 ], [ -123.483515895999943, 49.415949392000051 ], [ -123.484010800999954, 49.415866784000045 ], [ -123.484256304, 49.415748596000078 ], [ -123.48457240499999, 49.415586183000052 ], [ -123.484914697999912, 49.415188889000063 ], [ -123.486333080999927, 49.415208794000094 ], [ -123.488321204999963, 49.415470901000042 ], [ -123.488722196999959, 49.415478009 ], [ -123.489161502999934, 49.415349801000076 ], [ -123.490903298999939, 49.414461094000025 ], [ -123.49129777899999, 49.413973991000049 ], [ -123.491445697999893, 49.413469792000065 ], [ -123.491623112999974, 49.413261888000051 ], [ -123.491790856999927, 49.413176902000018 ], [ -123.493127538999957, 49.413188967000089 ], [ -123.493182245999918, 49.412793582000099 ], [ -123.494660505999917, 49.412440101000087 ], [ -123.495375315999979, 49.412175203000096 ], [ -123.496282449999967, 49.411128368000107 ], [ -123.497338253999942, 49.411104549000072 ], [ -123.497317487999965, 49.411178507000066 ], [ -123.497104117999953, 49.411556202000085 ], [ -123.496695779999982, 49.412022996000069 ], [ -123.496504071999937, 49.412136179000122 ], [ -123.496211443, 49.412308902000113 ], [ -123.496056907999943, 49.412400106000057 ], [ -123.495945576999972, 49.412465793000095 ], [ -123.495505071999929, 49.412627262000051 ], [ -123.494097004999958, 49.413143297000062 ], [ -123.493749278999985, 49.413264845000107 ], [ -123.493355405999949, 49.413402499000064 ], [ -123.49311988599996, 49.413523981000054 ], [ -123.49291589299996, 49.413629205000099 ], [ -123.492907652999989, 49.413636455000109 ], [ -123.491661307999905, 49.4147336 ], [ -123.49178659799999, 49.414709498000079 ], [ -123.491838260999955, 49.414676072000049 ], [ -123.49198940399999, 49.414578294000115 ], [ -123.492253134999899, 49.414541212000081 ], [ -123.492659086999964, 49.414553307000105 ], [ -123.492914515999928, 49.414621304000057 ], [ -123.491722476999911, 49.415332896000088 ], [ -123.491428514999924, 49.415469207000122 ], [ -123.490445691999952, 49.416056899000061 ], [ -123.490244076999929, 49.416198829000066 ], [ -123.489934207999923, 49.416416907000063 ], [ -123.489382940000013, 49.416160885000053 ], [ -123.488532381999988, 49.416777892000084 ], [ -123.48808800299993, 49.417145714000078 ], [ -123.487791295999941, 49.417382978000091 ], [ -123.487508500999979, 49.417564408000089 ], [ -123.486522402999952, 49.416312613000109 ], [ -123.486161261999882, 49.416435383000085 ], [ -123.485369700999939, 49.41670450600008 ], [ -123.486538219999957, 49.41822619000007 ], [ -123.485832802999965, 49.418704098000077 ], [ -123.484941618999983, 49.419201993000051 ], [ -123.48416715599997, 49.419784468000067 ], [ -123.483954495999939, 49.419944392000033 ], [ -123.48372180599992, 49.420152270000081 ], [ -123.483612595999958, 49.420249790000135 ], [ -123.483510957999925, 49.420449927000035 ], [ -123.483408790999974, 49.420651100000022 ], [ -123.483463612999941, 49.421344365000067 ], [ -123.483474098999949, 49.421477304000106 ], [ -123.482054699999949, 49.421525410000122 ], [ -123.481184582999944, 49.421537905000072 ], [ -123.481184786999961, 49.421536596000117 ], [ -123.4812250899999, 49.420177909000138 ], [ -123.481002004999979, 49.419918693000142 ], [ -123.480491597999944, 49.419703604000105 ], [ -123.480405612999959, 49.419461503000051 ], [ -123.48129219499998, 49.418539995000081 ], [ -123.481664092999949, 49.418340614000108 ], [ -123.482459502999973, 49.418104194000122 ], [ -123.482541505999961, 49.417906297000052 ], [ -123.482410916999953, 49.417285293000106 ], [ -123.482078183999946, 49.417061702000048 ], [ -123.482376199999948, 49.416484904000043 ], [ -123.482745900999959, 49.416285501000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137421350", "BldgCostT": "85201568", "sL_LossRatio": "0.721255144598013", "sL_AssetLoss": "677263.8", "sL_BldgLoss": "488480", "sL_StrLoss": "211540", "sL_NStrLoss": "276940", "sL_ContLoss": "188783.8", "geom_point": "0101000020E6100000FFEE57E0AFDE5EC0ECBE18A18AB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.468175742999932, 49.406631107000088 ], [ -123.4681797099999, 49.406558655000033 ], [ -123.467903462999971, 49.40655219600005 ], [ -123.467922922999932, 49.406196798000067 ], [ -123.467387865999981, 49.406184284000069 ], [ -123.467473496999972, 49.404620660000049 ], [ -123.467290758999965, 49.404616386000079 ], [ -123.467487735999967, 49.40101947000003 ], [ -123.467872953999958, 49.401028480000036 ], [ -123.467946392999977, 49.399687076000177 ], [ -123.468302683, 49.399695408000099 ], [ -123.468316594, 49.399441285000108 ], [ -123.46888168299995, 49.399454498000054 ], [ -123.468897284999926, 49.399169399000115 ], [ -123.469157945999939, 49.399175492000069 ], [ -123.469177293999948, 49.398821904000101 ], [ -123.469691712999989, 49.398833929000041 ], [ -123.469709691, 49.398505316000119 ], [ -123.470349812000023, 49.398520275000074 ], [ -123.470363476, 49.398270432000054 ], [ -123.470922904999981, 49.398283502000041 ], [ -123.470926156999937, 49.398224046000045 ], [ -123.47152169099995, 49.398237956000067 ], [ -123.471526737999937, 49.398145660000047 ], [ -123.47222723500002, 49.398162018000058 ], [ -123.472243124999963, 49.397871277000064 ], [ -123.472918080999989, 49.397887035000096 ], [ -123.472935713999931, 49.397564292000069 ], [ -123.473364206999989, 49.397574294000037 ], [ -123.473370002999914, 49.397468204000091 ], [ -123.473657986999967, 49.397474925000061 ], [ -123.47368391599997, 49.397000210000016 ], [ -123.47392899499998, 49.397005929000073 ], [ -123.47394302, 49.396749116000123 ], [ -123.475052718, 49.396775003000059 ], [ -123.475105505999977, 49.395807996000023 ], [ -123.475109530999987, 49.395734240000117 ], [ -123.476001207999943, 49.395755034000103 ], [ -123.477311438999934, 49.395785575000069 ], [ -123.477343673999954, 49.395194542000119 ], [ -123.47736699599993, 49.394766894000064 ], [ -123.477996085999948, 49.39478155300003 ], [ -123.478007280999961, 49.394576208000082 ], [ -123.47835175199999, 49.394584233000096 ], [ -123.478405704999972, 49.39359453400008 ], [ -123.473205366999963, 49.393473270000101 ], [ -123.473275504999918, 49.392189251000026 ], [ -123.474672290999976, 49.391223699000101 ], [ -123.475292081999925, 49.391210893000022 ], [ -123.476122093999933, 49.391460105000093 ], [ -123.476371195999931, 49.391468708000069 ], [ -123.477825998999919, 49.391038595000076 ], [ -123.47868159799998, 49.391054206 ], [ -123.47899648399999, 49.390854791000031 ], [ -123.47920121099996, 49.390520110000061 ], [ -123.480458179999943, 49.389411417000112 ], [ -123.482107238999944, 49.389449791000018 ], [ -123.482070935999914, 49.390116781000067 ], [ -123.484454629999959, 49.390172206000088 ], [ -123.48445988, 49.390075654000093 ], [ -123.48513138099996, 49.390091258000062 ], [ -123.485165986999931, 49.389454670000156 ], [ -123.486414862999979, 49.389483679000129 ], [ -123.486453574999985, 49.388771200000058 ], [ -123.487902414999951, 49.388804836000105 ], [ -123.487913925999962, 49.388592836000129 ], [ -123.488348193999926, 49.388602914000089 ], [ -123.488354614999977, 49.388484646000045 ], [ -123.492119613999961, 49.388571949000074 ], [ -123.492305010999971, 49.385151696000051 ], [ -123.492431407999945, 49.385166509000079 ], [ -123.492663094999955, 49.385076815000012 ], [ -123.492716485999949, 49.385014482000081 ], [ -123.495527651999964, 49.385079571000048 ], [ -123.495411109999935, 49.385495500000054 ], [ -123.495084299999945, 49.386009699000063 ], [ -123.495174685, 49.386728905000055 ], [ -123.495399292999977, 49.387133411000036 ], [ -123.49537632099999, 49.387718698000121 ], [ -123.495200815999979, 49.388024900000055 ], [ -123.49468137799991, 49.388449295000079 ], [ -123.494274127999958, 49.388652117000028 ], [ -123.493854911, 49.388642411000014 ], [ -123.493846064999971, 49.388805703000052 ], [ -123.493005707999941, 49.388942101000097 ], [ -123.491742, 49.389343699000101 ], [ -123.491510609999978, 49.389659904000034 ], [ -123.491750378999939, 49.390099998000068 ], [ -123.491545578999961, 49.390360591000096 ], [ -123.489994388999989, 49.390951711000113 ], [ -123.48936481599999, 49.391314803000064 ], [ -123.488316587999947, 49.391346201 ], [ -123.487698998999946, 49.391546995000091 ], [ -123.487493818999937, 49.39169079400007 ], [ -123.487290682999927, 49.392042603000107 ], [ -123.486781992999951, 49.392252004000078 ], [ -123.486649003999958, 49.392630806000057 ], [ -123.486361497999923, 49.392882905000079 ], [ -123.48533301, 49.393399899000052 ], [ -123.485307894999934, 49.393562291000066 ], [ -123.485502400999934, 49.393723191000085 ], [ -123.485405293999975, 49.393849901000038 ], [ -123.484719616999882, 49.39402369200009 ], [ -123.484430514999985, 49.394169008000084 ], [ -123.483673607999918, 49.394117688000065 ], [ -123.483493806999931, 49.394173188000089 ], [ -123.483098802999947, 49.394570611000077 ], [ -123.483035796999957, 49.395200114000033 ], [ -123.482354195999903, 49.395895093000028 ], [ -123.48185999899999, 49.396231207000064 ], [ -123.48124220199999, 49.396494697000037 ], [ -123.48095507799999, 49.396738198000087 ], [ -123.480543513, 49.396820803000047 ], [ -123.480238691999958, 49.396786702000099 ], [ -123.480020614999944, 49.396894907000032 ], [ -123.479941398000037, 49.397326413000059 ], [ -123.479643688999914, 49.397796400000054 ], [ -123.479038287999984, 49.398014293000088 ], [ -123.47865589299991, 49.398393191000146 ], [ -123.478436409999944, 49.398421686000042 ], [ -123.477760212999968, 49.398280695000103 ], [ -123.476977094999967, 49.398616799000074 ], [ -123.476197519, 49.399330299000077 ], [ -123.475815297999986, 49.399548189000079 ], [ -123.474989409999949, 49.399784609000044 ], [ -123.47449578799997, 49.400092205000099 ], [ -123.473846559999984, 49.40012225500007 ], [ -123.473201782999979, 49.40015210100011 ], [ -123.473063277999941, 49.400194126000073 ], [ -123.472089490999949, 49.400489616000051 ], [ -123.47151348899996, 49.400905512000058 ], [ -123.471400016999951, 49.401031595000049 ], [ -123.471172590999913, 49.401284299000018 ], [ -123.470996182999926, 49.40165460200005 ], [ -123.471151618999954, 49.401905308000075 ], [ -123.471103701999937, 49.402805385000157 ], [ -123.470628708999982, 49.40340070200007 ], [ -123.470755195999942, 49.403832202000089 ], [ -123.471176994999922, 49.40455000200005 ], [ -123.471775100999963, 49.405069903000054 ], [ -123.47180730300002, 49.405536999000056 ], [ -123.471659194999987, 49.405942891000031 ], [ -123.471493709999933, 49.406051088000034 ], [ -123.470985118999977, 49.406052601000106 ], [ -123.469933302999905, 49.405670901000043 ], [ -123.469036288999959, 49.405646698000083 ], [ -123.468438377999973, 49.406422895000034 ], [ -123.468175742999932, 49.406631107000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4754811", "BldgCostT": "2603190", "sL_LossRatio": "0.683404521304303", "sL_AssetLoss": "28797", "sL_BldgLoss": "19680", "sL_StrLoss": "11970", "sL_NStrLoss": "7710", "sL_ContLoss": "9117", "geom_point": "0101000020E6100000505C86E697D55EC0EF47DD105BBE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.33739777699999, 49.489301558000086 ], [ -123.337395920999953, 49.489031718000035 ], [ -123.336981699999967, 49.489032925000082 ], [ -123.33697243899995, 49.487683721000046 ], [ -123.336558228999976, 49.487684927000046 ], [ -123.33655638, 49.487415086000098 ], [ -123.334427271999985, 49.487421261000073 ], [ -123.33444739, 49.486790992000103 ], [ -123.334334085999956, 49.486413596000048 ], [ -123.334102829999935, 49.486342813000086 ], [ -123.335720581999965, 49.486338130000078 ], [ -123.335713202999955, 49.485258765000061 ], [ -123.336430940999946, 49.485256680000106 ], [ -123.337369960999936, 49.485253945000075 ], [ -123.337375523999938, 49.486063468000125 ], [ -123.337789719999975, 49.486062259000043 ], [ -123.337793432999945, 49.486601941000139 ], [ -123.338207633999929, 49.486600731000159 ], [ -123.338209491999962, 49.486870572000086 ], [ -123.338623696999917, 49.486869360000064 ], [ -123.338621835999916, 49.486599519000023 ], [ -123.33903603600001, 49.48659830600009 ], [ -123.339034171999955, 49.486328465000057 ], [ -123.340276767999967, 49.486324817000053 ], [ -123.340278832999957, 49.486622717000095 ], [ -123.340284249999939, 49.487404180000041 ], [ -123.33945583299996, 49.487406614000086 ], [ -123.339459564999956, 49.487946295000079 ], [ -123.339045352999918, 49.487947511000087 ], [ -123.33904908099997, 49.488487192000058 ], [ -123.338634862999953, 49.488488405000062 ], [ -123.33864044699996, 49.489297928000063 ], [ -123.338159818999912, 49.489299334000108 ], [ -123.33739777699999, 49.489301558000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7667917", "BldgCostT": "4341667", "sL_LossRatio": "0.623383070328684", "sL_AssetLoss": "104751", "sL_BldgLoss": "65300", "sL_StrLoss": "29490", "sL_NStrLoss": "35810", "sL_ContLoss": "39451", "geom_point": "0101000020E6100000C1A9CD071DDF5EC0AF9C39FBB5BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.484355884999943, 49.456240434000037 ], [ -123.488036391999955, 49.456325781000011 ], [ -123.48898567, 49.458491399000124 ], [ -123.489008986999977, 49.458798107000135 ], [ -123.488964208999931, 49.459064397000084 ], [ -123.48872761899996, 49.459483001000095 ], [ -123.488181691999955, 49.460187886 ], [ -123.488032013999913, 49.4604292920001 ], [ -123.487889687999939, 49.460763606000057 ], [ -123.487846166999944, 49.461014410000111 ], [ -123.483528095999986, 49.460914269000064 ], [ -123.483724049, 49.45731762100008 ], [ -123.484296492999988, 49.457330907000014 ], [ -123.484355884999943, 49.456240434000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10495167", "BldgCostT": "5771667", "sL_LossRatio": "0.564663644225478", "sL_AssetLoss": "152636", "sL_BldgLoss": "86188", "sL_StrLoss": "25731", "sL_NStrLoss": "60457", "sL_ContLoss": "66448", "geom_point": "0101000020E61000000F1B7629FFDB5EC07E1700F4C5B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.43207692299994, 49.403981617000035 ], [ -123.432148962999932, 49.402684208000046 ], [ -123.43765242899994, 49.402814595000109 ], [ -123.437625188999959, 49.40330620800011 ], [ -123.439157304999952, 49.403342457000129 ], [ -123.439145158999963, 49.403561801000087 ], [ -123.439928989999927, 49.403580337000072 ], [ -123.439917584999961, 49.403786362000055 ], [ -123.440799670999922, 49.40380721500005 ], [ -123.440786901999942, 49.404037948000045 ], [ -123.441626655999954, 49.404057794000082 ], [ -123.44144969499996, 49.407256338000138 ], [ -123.4402656, 49.406894312000077 ], [ -123.43962871399998, 49.406553904000098 ], [ -123.437458780999961, 49.40575349300007 ], [ -123.436557576999974, 49.405279196000073 ], [ -123.435619981999977, 49.405202295000066 ], [ -123.434830922999964, 49.404782201000067 ], [ -123.433710994999942, 49.40438200100008 ], [ -123.432217818999973, 49.404054402000043 ], [ -123.43207692299994, 49.403981617000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83197834", "BldgCostT": "56223334", "sL_LossRatio": "0.77879208197585", "sL_AssetLoss": "372012", "sL_BldgLoss": "289720", "sL_StrLoss": "109540", "sL_NStrLoss": "180180", "sL_ContLoss": "82292", "geom_point": "0101000020E6100000DF13B1A96FD35EC05198D62AEAC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.298456602999948, 49.516985691000109 ], [ -123.298235201999915, 49.51688739800008 ], [ -123.29800071499993, 49.516914504000027 ], [ -123.297765908999935, 49.517185006000055 ], [ -123.297683197999945, 49.517140894000072 ], [ -123.29783160399991, 49.516330506000038 ], [ -123.297481400999985, 49.515854792000027 ], [ -123.297935584999948, 49.515376298000078 ], [ -123.298100480999892, 49.515305097000066 ], [ -123.29840359799999, 49.515312214000112 ], [ -123.29863730699995, 49.515015983000126 ], [ -123.298790498999935, 49.515087206000089 ], [ -123.298862805999974, 49.515518711000063 ], [ -123.29926280599993, 49.515454592000061 ], [ -123.299495191999966, 49.515219606000052 ], [ -123.299726114999928, 49.514508994000053 ], [ -123.300332988999969, 49.514255491000064 ], [ -123.301472878999959, 49.513335397000105 ], [ -123.30154107299991, 49.513091895000109 ], [ -123.301178705999973, 49.51245380600011 ], [ -123.301437509999957, 49.511995196000051 ], [ -123.30138222, 49.511878403000019 ], [ -123.301181700999933, 49.511853780000088 ], [ -123.30120930799994, 49.511381903 ], [ -123.30297692, 49.511425841000097 ], [ -123.302978935999946, 49.511391347000085 ], [ -123.304975564999907, 49.511440943000117 ], [ -123.305151317999943, 49.511814394000091 ], [ -123.304494104999961, 49.512526502000092 ], [ -123.304524683999958, 49.51302069700008 ], [ -123.304760112999972, 49.513101799000061 ], [ -123.305188181999952, 49.513108994000078 ], [ -123.305710991999945, 49.512982215000143 ], [ -123.306194991999973, 49.512999312000076 ], [ -123.306266419999986, 49.513322605000042 ], [ -123.306061296999985, 49.513520601000039 ], [ -123.30602301299993, 49.514051803000022 ], [ -123.306286594999932, 49.514266797000133 ], [ -123.306536092999963, 49.514311006000113 ], [ -123.306976694999889, 49.514174298000079 ], [ -123.307524212999979, 49.51346220600005 ], [ -123.307870319999978, 49.51334540400002 ], [ -123.309030315999962, 49.513369598000025 ], [ -123.309134179999958, 49.513406969000044 ], [ -123.308949360999989, 49.51657488900009 ], [ -123.308242083999957, 49.51655735300011 ], [ -123.308222050999944, 49.516900606000085 ], [ -123.307950068999943, 49.516893862000053 ], [ -123.307925662999978, 49.517312012000048 ], [ -123.302408918999973, 49.517175056000035 ], [ -123.302461921000017, 49.516268826000065 ], [ -123.302037249999927, 49.516258272000059 ], [ -123.302004095999948, 49.516825058000073 ], [ -123.301473849999965, 49.516811878000091 ], [ -123.30143411099999, 49.517491070000041 ], [ -123.298659771999937, 49.517422065000055 ], [ -123.298679007999937, 49.517254791000035 ], [ -123.298456602999948, 49.516985691000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3528417", "BldgCostT": "1961667", "sL_LossRatio": "0.57760538474702", "sL_AssetLoss": "17531", "sL_BldgLoss": "10126", "sL_StrLoss": "3730", "sL_NStrLoss": "6396", "sL_ContLoss": "7405", "geom_point": "0101000020E61000009FA37EACDADC5EC098AC82FF4AB04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.451661414999975, 49.376258099000054 ], [ -123.452420939999939, 49.376231130000072 ], [ -123.452353109999933, 49.377463180000092 ], [ -123.452085709999906, 49.377488607 ], [ -123.45195158199999, 49.377911601000051 ], [ -123.451567110999974, 49.37812949800005 ], [ -123.450797711999911, 49.378284801000042 ], [ -123.45039819499999, 49.378267695 ], [ -123.449526207999895, 49.377840387000099 ], [ -123.449015786999936, 49.377689404000101 ], [ -123.448834579999968, 49.377528495000014 ], [ -123.448776804999966, 49.377366086000052 ], [ -123.449503095999958, 49.376850603000086 ], [ -123.450563203999977, 49.376683893000056 ], [ -123.450892405000019, 49.376494506000078 ], [ -123.451661414999975, 49.376258099000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110315417", "BldgCostT": "71506667", "sL_LossRatio": "0.668353261786193", "sL_AssetLoss": "450612", "sL_BldgLoss": "301168", "sL_StrLoss": "131717", "sL_NStrLoss": "169451", "sL_ContLoss": "149444", "geom_point": "0101000020E6100000E392E49830DC5EC0A4CF2755CFB24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.443489367999959, 49.4028617210001 ], [ -123.443486938, 49.40259187900007 ], [ -123.441419493999931, 49.402599791000107 ], [ -123.441416312999976, 49.402245122000053 ], [ -123.441409817999968, 49.401520424000061 ], [ -123.443477216999923, 49.401512513000135 ], [ -123.443479646999961, 49.401782355000115 ], [ -123.444306610999988, 49.401779180000077 ], [ -123.4443041749999, 49.401509338000025 ], [ -123.444717655999938, 49.401507749000061 ], [ -123.444712780999922, 49.400968066000047 ], [ -123.445126256999984, 49.400966475000061 ], [ -123.445121378999929, 49.400426792000054 ], [ -123.445534848999912, 49.400425200000093 ], [ -123.445532408, 49.400155358000106 ], [ -123.445945875999982, 49.400153764000045 ], [ -123.445940988999979, 49.399614081000081 ], [ -123.446354452, 49.399612486000088 ], [ -123.446353813999934, 49.39954210700008 ], [ -123.44469955299995, 49.399503074000073 ], [ -123.444700598999958, 49.399618858000096 ], [ -123.444287134, 49.399620448000078 ], [ -123.444289568999949, 49.399890289000041 ], [ -123.443462637999957, 49.399893463000076 ], [ -123.443465066000016, 49.400163306000088 ], [ -123.443051597999968, 49.400164891000031 ], [ -123.443054026999931, 49.400434732000122 ], [ -123.44264055499994, 49.400436316000025 ], [ -123.442642981999967, 49.400706157000101 ], [ -123.442229507999969, 49.400707740000101 ], [ -123.442231931999942, 49.400977581000106 ], [ -123.440578029999941, 49.400983895000081 ], [ -123.440577769999919, 49.400954882000065 ], [ -123.440570786999956, 49.40017437000008 ], [ -123.441397724999945, 49.400171216000075 ], [ -123.441395305999919, 49.399901375000063 ], [ -123.441808771999888, 49.39989979500011 ], [ -123.441804598999937, 49.39943470500004 ], [ -123.440937190999989, 49.399414205000099 ], [ -123.441059468999981, 49.397204146000064 ], [ -123.4409576799999, 49.397204535000107 ], [ -123.440960094999951, 49.397474376000041 ], [ -123.440133201999956, 49.397477527000028 ], [ -123.44013561599999, 49.397747369000044 ], [ -123.439308717999936, 49.397750514000066 ], [ -123.439311124999975, 49.398020356000124 ], [ -123.437188310999915, 49.398028403000097 ], [ -123.437165458999985, 49.398440829000045 ], [ -123.437349769999983, 49.398445192000096 ], [ -123.437150461999948, 49.402042067000117 ], [ -123.431647089999927, 49.40191165500007 ], [ -123.431651906999946, 49.401824898000037 ], [ -123.4305699559999, 49.401799227000076 ], [ -123.430594604999939, 49.401355551000059 ], [ -123.430692691, 49.401281505000057 ], [ -123.431386993999965, 49.4003969910001 ], [ -123.432100192999911, 49.399881496000063 ], [ -123.432151593999919, 49.399566708000101 ], [ -123.431940787999977, 49.39915369700001 ], [ -123.432432698999918, 49.398521294000069 ], [ -123.432862809999946, 49.397440394000107 ], [ -123.43274721799996, 49.396865004000063 ], [ -123.432316090999976, 49.396407797000123 ], [ -123.43263099499994, 49.396028999000059 ], [ -123.434126791, 49.395331089000116 ], [ -123.43433149400002, 49.395168800000135 ], [ -123.434397208999911, 49.394816998000067 ], [ -123.434307804999932, 49.394062097000067 ], [ -123.434443284999986, 49.39368329800002 ], [ -123.434990010999954, 49.393277403000177 ], [ -123.435239, 49.393348591000084 ], [ -123.435556204999926, 49.393274593000115 ], [ -123.436143391000016, 49.392769007000076 ], [ -123.436334908999967, 49.392669300000122 ], [ -123.436666009999897, 49.392640797000055 ], [ -123.436995187999969, 49.392451405000052 ], [ -123.438307598, 49.391178092000082 ], [ -123.439018786999952, 49.390689608000066 ], [ -123.440370084999955, 49.390648301000105 ], [ -123.441885408999923, 49.390822094000022 ], [ -123.442192200999955, 49.391118288000058 ], [ -123.44227841699994, 49.391558397000054 ], [ -123.44349788000001, 49.392354495000035 ], [ -123.444713893999946, 49.392719104 ], [ -123.44619598899996, 49.393441209000073 ], [ -123.446842599999968, 49.393294491000063 ], [ -123.447271239999978, 49.393276683000096 ], [ -123.447144700999942, 49.39556952500007 ], [ -123.44714952899993, 49.396101349000055 ], [ -123.446736094999963, 49.396102949000131 ], [ -123.446738541999963, 49.396372790000079 ], [ -123.45128634, 49.39635512900005 ], [ -123.451293757999977, 49.397164654000072 ], [ -123.450053429999969, 49.397169488000038 ], [ -123.450055893999945, 49.3974393290001 ], [ -123.448402114999951, 49.39744575400006 ], [ -123.448409484999928, 49.398255279000047 ], [ -123.447996032999981, 49.398256882000105 ], [ -123.448010759999931, 49.399875931000039 ], [ -123.44759729499998, 49.399877532000069 ], [ -123.447599746999941, 49.400147373000067 ], [ -123.44842668299998, 49.400144169000136 ], [ -123.448436511999915, 49.401223535000064 ], [ -123.44802303499992, 49.401225138000072 ], [ -123.448025489999949, 49.401494980000038 ], [ -123.447612010999961, 49.401496581000067 ], [ -123.447614462999965, 49.401766422000087 ], [ -123.446374017999972, 49.401771217000061 ], [ -123.446376464999972, 49.402041059000076 ], [ -123.44554949800002, 49.402044248000017 ], [ -123.445556821999944, 49.402853773000096 ], [ -123.443489367999959, 49.4028617210001 ] ], [ [ -123.44675567699997, 49.398261681000086 ], [ -123.446748333999935, 49.397452156000085 ], [ -123.446555748999941, 49.397452900000047 ], [ -123.446511045999983, 49.398262626000061 ], [ -123.44675567699997, 49.398261681000086 ] ], [ [ -123.44053699399997, 49.396396585000105 ], [ -123.440534581999941, 49.396126743000124 ], [ -123.441119198999957, 49.396124514000093 ], [ -123.441136194999928, 49.395817310000098 ], [ -123.441772286999964, 49.39583234300008 ], [ -123.441770514999945, 49.395634920000155 ], [ -123.441631448999914, 49.395631633000114 ], [ -123.441664005999968, 49.395043030000089 ], [ -123.441351778999959, 49.395044222000095 ], [ -123.441350788999941, 49.394933735000031 ], [ -123.440097510000015, 49.394904105000158 ], [ -123.440038229, 49.39597521200006 ], [ -123.439497640999932, 49.395962427000079 ], [ -123.439482323, 49.396239126000147 ], [ -123.43828864299999, 49.396210886000041 ], [ -123.4382721899999, 49.396507955000104 ], [ -123.43781462599999, 49.396497126000035 ], [ -123.437805378999911, 49.39666406500006 ], [ -123.437773671999963, 49.39666331500009 ], [ -123.437757964999932, 49.396946843000116 ], [ -123.438888055999882, 49.396942558000056 ], [ -123.438885651999897, 49.396672716000076 ], [ -123.439712528999948, 49.396669574000128 ], [ -123.439710120999962, 49.396399733000088 ], [ -123.44053699399997, 49.396396585000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68687250", "BldgCostT": "48075000", "sL_LossRatio": "0.8855485320501", "sL_AssetLoss": "47712.8", "sL_BldgLoss": "42252", "sL_StrLoss": "28470", "sL_NStrLoss": "13782", "sL_ContLoss": "5460.8", "geom_point": "0101000020E610000081E3B6A64EDF5EC0BBE875D5CDB84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.488121719999981, 49.445516429000087 ], [ -123.488151649999949, 49.444965887000073 ], [ -123.488067149999935, 49.444963929000032 ], [ -123.48824949899992, 49.441609716000045 ], [ -123.488340389999948, 49.441620003000047 ], [ -123.488660504, 49.441692181000064 ], [ -123.489181423999966, 49.441874504000054 ], [ -123.489629368999928, 49.442129696000016 ], [ -123.489780114999974, 49.442275502000037 ], [ -123.489989699999938, 49.442605316000034 ], [ -123.490084453999941, 49.442789964000099 ], [ -123.490438521, 49.443480008000044 ], [ -123.490485612999947, 49.443704389000075 ], [ -123.490493308999959, 49.443995381000079 ], [ -123.49045064799995, 49.444161608000137 ], [ -123.490091412999973, 49.445562063000061 ], [ -123.488121719999981, 49.445516429000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18091874", "BldgCostT": "8193351", "sL_LossRatio": "0.815550113695994", "sL_AssetLoss": "45736", "sL_BldgLoss": "37300", "sL_StrLoss": "21990", "sL_NStrLoss": "15310", "sL_ContLoss": "8436", "geom_point": "0101000020E6100000C05863F9C8D65EC06E7B2F7C4CBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.354209480999927, 49.465202653000077 ], [ -123.354415516999936, 49.461606268000018 ], [ -123.358096870999972, 49.461696040000099 ], [ -123.35819328, 49.461919996000113 ], [ -123.358034203999964, 49.462901292000012 ], [ -123.357399504999961, 49.464603205000103 ], [ -123.357081720999986, 49.464712902000059 ], [ -123.35643151, 49.464543408000033 ], [ -123.356156475999938, 49.4647057930001 ], [ -123.356073136999953, 49.46524811500008 ], [ -123.354209480999927, 49.465202653000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13511667", "BldgCostT": "7316667", "sL_LossRatio": "0.612620638455828", "sL_AssetLoss": "134700", "sL_BldgLoss": "82520", "sL_StrLoss": "43760", "sL_NStrLoss": "38760", "sL_ContLoss": "52180", "geom_point": "0101000020E610000066AC2E8E67DD5EC066ACEC7195AC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.456119609999959, 49.348913288000126 ], [ -123.455785174999946, 49.348554395000114 ], [ -123.455384198999951, 49.348232491000019 ], [ -123.454652103999948, 49.348181199000116 ], [ -123.4540594, 49.347904998000075 ], [ -123.454193893999943, 49.347688501000036 ], [ -123.454645914999958, 49.347506197000065 ], [ -123.454745751999951, 49.347503296000085 ], [ -123.455334812999936, 49.347486204000035 ], [ -123.455830410999951, 49.347573094000033 ], [ -123.456146693999969, 49.347527495000037 ], [ -123.456405097999905, 49.346969201000093 ], [ -123.456706494999935, 49.346841093000123 ], [ -123.458045294, 49.347268308000011 ], [ -123.458185201999981, 49.347447810000098 ], [ -123.458103395999956, 49.347718403000016 ], [ -123.458435816999966, 49.347850803 ], [ -123.459704398999975, 49.347927706000142 ], [ -123.460515585999985, 49.347806701000088 ], [ -123.460859815999939, 49.347949106000094 ], [ -123.461229917999972, 49.347624395000025 ], [ -123.462646814999971, 49.347573095000058 ], [ -123.46286788799992, 49.347717006000096 ], [ -123.462870106999972, 49.347806694000035 ], [ -123.46265010599997, 49.347968997000045 ], [ -123.462762098, 49.348077306000114 ], [ -123.463353689999977, 49.34811000900006 ], [ -123.463548888999938, 49.34824529200008 ], [ -123.463685997999946, 49.348199806000061 ], [ -123.463794208999971, 49.347983310000075 ], [ -123.464522801, 49.347970497000091 ], [ -123.464530569999951, 49.347973187000051 ], [ -123.46447966299999, 49.348902877000057 ], [ -123.463763808999914, 49.349188191000039 ], [ -123.463213006999936, 49.34928930500012 ], [ -123.4627570899999, 49.349119800000054 ], [ -123.462304603999939, 49.349283586000105 ], [ -123.461601665000018, 49.349349353 ], [ -123.461589319999987, 49.349350505000068 ], [ -123.460981196999967, 49.349163907000076 ], [ -123.460003197, 49.349149691000029 ], [ -123.458514709, 49.348992994000113 ], [ -123.458115808999963, 49.348850597000066 ], [ -123.456792707999966, 49.348874806000111 ], [ -123.456683085999956, 49.34891040100004 ], [ -123.45662920599996, 49.349072792000065 ], [ -123.456991884, 49.349404599000103 ], [ -123.456800292999944, 49.349567002000057 ], [ -123.456675689999898, 49.349566996000057 ], [ -123.456161509999944, 49.349084190000106 ], [ -123.456119609999959, 49.348913288000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8640833", "BldgCostT": "4958333", "sL_LossRatio": "0.705163953389263", "sL_AssetLoss": "82127", "sL_BldgLoss": "57913", "sL_StrLoss": "33400", "sL_NStrLoss": "24513", "sL_ContLoss": "24214", "geom_point": "0101000020E61000003940515578D25EC0875879D9E1C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.285592052, 49.524210395000047 ], [ -123.28559518199999, 49.524157232000086 ], [ -123.28470902399999, 49.524135073000139 ], [ -123.284728888999922, 49.523797688000073 ], [ -123.28401992, 49.523779955000073 ], [ -123.284048384999949, 49.523296638000033 ], [ -123.283862842999952, 49.523291996000125 ], [ -123.283859496999966, 49.522779307000079 ], [ -123.284117290999973, 49.521852214000049 ], [ -123.28461241899997, 49.521598696000147 ], [ -123.284872808999978, 49.5211841980001 ], [ -123.285078794999947, 49.521094506000161 ], [ -123.28569609, 49.520301215000124 ], [ -123.28604039799994, 49.520003610000053 ], [ -123.28701206099997, 49.519769502000074 ], [ -123.287378012999952, 49.519778647000102 ], [ -123.287503594999947, 49.519972197000044 ], [ -123.287794903999938, 49.520016387000055 ], [ -123.288101797999929, 49.520385212000065 ], [ -123.288102109999926, 49.520537595000036 ], [ -123.287799607999915, 49.52096059400013 ], [ -123.287814009999963, 49.52112300600006 ], [ -123.288051610999943, 49.521266806000028 ], [ -123.288107183999955, 49.521410692000131 ], [ -123.288040807999948, 49.521788093000026 ], [ -123.288137879999937, 49.522030192000081 ], [ -123.288651608999942, 49.522245293000033 ], [ -123.289479504999989, 49.522306509000018 ], [ -123.290309007999952, 49.52228660900002 ], [ -123.290626103999969, 49.522213906000061 ], [ -123.290845197999928, 49.522014498000011 ], [ -123.290747723, 49.521718304000103 ], [ -123.290842410999986, 49.521501792000059 ], [ -123.29129739499993, 49.521276801000099 ], [ -123.292180381, 49.521031801000042 ], [ -123.292648389999897, 49.520571789000037 ], [ -123.292590197, 49.52031120099999 ], [ -123.292671902000038, 49.520214760000044 ], [ -123.293471292999953, 49.520234693000127 ], [ -123.293260242999935, 49.523830653000076 ], [ -123.292770488999935, 49.523818442000092 ], [ -123.292748143, 49.524199064000108 ], [ -123.292150252999988, 49.524184153000107 ], [ -123.292146023999962, 49.524256179000062 ], [ -123.291554599999984, 49.524241426000074 ], [ -123.291549903999936, 49.524321393000079 ], [ -123.291111804999929, 49.524310463000106 ], [ -123.29110958699999, 49.524348203000059 ], [ -123.285592052, 49.524210395000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193931105", "BldgCostT": "126621464", "sL_LossRatio": "0.769426179197491", "sL_AssetLoss": "681014", "sL_BldgLoss": "523990", "sL_StrLoss": "212680", "sL_NStrLoss": "311310", "sL_ContLoss": "157024", "geom_point": "0101000020E610000092AB0E6F8CDE5EC0EC96A11A44BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.481737011999883, 49.466069194000028 ], [ -123.481734896999939, 49.465853497000076 ], [ -123.481642019, 49.465853883000136 ], [ -123.48103938099996, 49.464487899000027 ], [ -123.480893450999986, 49.464486805000035 ], [ -123.480893107999961, 49.464451883000052 ], [ -123.480282589999916, 49.464437697000037 ], [ -123.480291587999943, 49.464284194000093 ], [ -123.479995708999965, 49.463710299000105 ], [ -123.479703208999979, 49.463369899000057 ], [ -123.478717115000023, 49.462662005000062 ], [ -123.478523299999964, 49.462600801000129 ], [ -123.478232819999903, 49.462646407000122 ], [ -123.478505898999956, 49.462285991000087 ], [ -123.47849039899998, 49.462042502000052 ], [ -123.477689513999977, 49.460750803000089 ], [ -123.47723031299995, 49.460186802000067 ], [ -123.476421488999947, 49.459487492000072 ], [ -123.475964703999949, 49.459265290000069 ], [ -123.475495005999946, 49.459168502000097 ], [ -123.474952595999966, 49.458702696000096 ], [ -123.474564709999967, 49.458541796000048 ], [ -123.474821316999964, 49.458010604000023 ], [ -123.474679395999928, 49.457687309000086 ], [ -123.474219784999917, 49.457104796000124 ], [ -123.473285699999948, 49.456253091000043 ], [ -123.472712203999947, 49.455293185000116 ], [ -123.472702335999955, 49.454323442000018 ], [ -123.472700295, 49.45412389800007 ], [ -123.472888077, 49.453665293000078 ], [ -123.472801911999923, 49.453242294000056 ], [ -123.471355483999929, 49.451997603000109 ], [ -123.470774612999946, 49.451793907000102 ], [ -123.470371501, 49.451534689000042 ], [ -123.468749109, 49.450183842000079 ], [ -123.471261645999917, 49.448165832000015 ], [ -123.471362390999957, 49.447742693000116 ], [ -123.471407379999945, 49.44759423700004 ], [ -123.471447162999965, 49.447308720000144 ], [ -123.471734394999928, 49.446874122000047 ], [ -123.471775378999936, 49.446836594000061 ], [ -123.472128782999945, 49.446402807000084 ], [ -123.472336517999949, 49.446209599000063 ], [ -123.472809683999955, 49.445954098000065 ], [ -123.473278395999941, 49.44557789 ], [ -123.474458413999983, 49.444349484000043 ], [ -123.47458439899999, 49.444137194000085 ], [ -123.474682995999956, 49.443518287000046 ], [ -123.474953443999965, 49.443213369 ], [ -123.475104389999899, 49.443043187000036 ], [ -123.475201700999932, 49.4429334840001 ], [ -123.475877298999961, 49.441773400000038 ], [ -123.476432996999975, 49.441192094000066 ], [ -123.476891618999957, 49.441403609000126 ], [ -123.47730041199999, 49.441543604000096 ], [ -123.477764188999927, 49.441635494000089 ], [ -123.478193705999942, 49.441658878000091 ], [ -123.47825491899998, 49.441662197000021 ], [ -123.478545101999927, 49.441659331000089 ], [ -123.478460388999977, 49.44321164200008 ], [ -123.47814369000001, 49.443204272000067 ], [ -123.478005646000028, 49.443201060000014 ], [ -123.477989929999978, 49.44348896300005 ], [ -123.47797939699997, 49.443681952000048 ], [ -123.477857935999964, 49.443679125000067 ], [ -123.477842906, 49.443954455000075 ], [ -123.477542465999946, 49.443947463000015 ], [ -123.477516320999925, 49.444426362000094 ], [ -123.477316398999946, 49.444421709000096 ], [ -123.47729823, 49.444754467000038 ], [ -123.476295079999886, 49.444731112000071 ], [ -123.476289093999981, 49.444840691000081 ], [ -123.476148800999965, 49.44483742400017 ], [ -123.476153938999957, 49.445368118000047 ], [ -123.475740091999967, 49.445369822000032 ], [ -123.475742702999923, 49.445639660000076 ], [ -123.47532885599999, 49.445641361000135 ], [ -123.475331463999922, 49.445911199000058 ], [ -123.474917611999928, 49.445912899000085 ], [ -123.474920218999941, 49.446182738000061 ], [ -123.474620510999927, 49.446183969000096 ], [ -123.474506364999954, 49.446184437000085 ], [ -123.474508969999931, 49.446454275000114 ], [ -123.474306196999976, 49.446455107000041 ], [ -123.474303738999964, 49.446500074000078 ], [ -123.474257685999987, 49.447342455000076 ], [ -123.475933741999981, 49.447381501000102 ], [ -123.475916265999956, 49.44770134700012 ], [ -123.476407644999966, 49.447712790000054 ], [ -123.476211162999931, 49.451309474000084 ], [ -123.475964397000013, 49.451303729000081 ], [ -123.475952564999943, 49.451520281000029 ], [ -123.475434951999972, 49.451508227000076 ], [ -123.47543304599999, 49.451543094000058 ], [ -123.475112349999932, 49.45153562400003 ], [ -123.475100244999979, 49.451757101000013 ], [ -123.474737786999967, 49.451748658000028 ], [ -123.474667099999962, 49.453041708000057 ], [ -123.47383454099996, 49.453022309000048 ], [ -123.473827058999916, 49.453159103000083 ], [ -123.476136993999944, 49.453212911000058 ], [ -123.47612162199999, 49.453494257000038 ], [ -123.476784787999932, 49.453509695000086 ], [ -123.476763303999959, 49.453903006000054 ], [ -123.476861610999933, 49.453905294000016 ], [ -123.476814277999949, 49.454771813000079 ], [ -123.477371545999929, 49.454784783000079 ], [ -123.477287504999964, 49.456323586000053 ], [ -123.478167711999944, 49.456344066000021 ], [ -123.478057504, 49.458362549000064 ], [ -123.480150563999942, 49.458411219000062 ], [ -123.480035624999971, 49.460517931000034 ], [ -123.481841033999928, 49.46055988100003 ], [ -123.481823998999943, 49.460872327000082 ], [ -123.482574727999989, 49.460889762000079 ], [ -123.482392555999979, 49.464231666000096 ], [ -123.482961037999971, 49.464229294000063 ], [ -123.48295838599995, 49.463959457000044 ], [ -123.483543727999958, 49.463957011000048 ], [ -123.483644976000036, 49.462098832000052 ], [ -123.487671326999987, 49.462192207000072 ], [ -123.487593509999954, 49.463061412000066 ], [ -123.487570281, 49.463320695000036 ], [ -123.487564380999984, 49.463386728000074 ], [ -123.486335988999912, 49.46386482 ], [ -123.486150670999933, 49.463983467000034 ], [ -123.486473090999965, 49.464804385000043 ], [ -123.486657862999948, 49.465383799000108 ], [ -123.486703770999981, 49.466120509000099 ], [ -123.48670617199997, 49.466140899000052 ], [ -123.486711136999972, 49.466642207000071 ], [ -123.484226985999911, 49.466652635000067 ], [ -123.484229032, 49.46686016300005 ], [ -123.483574786999952, 49.466887710000073 ], [ -123.483229949999952, 49.466926653000066 ], [ -123.482179698999957, 49.466931035000108 ], [ -123.481998207999965, 49.466661203000058 ], [ -123.481737011999883, 49.466069194000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13305137", "BldgCostT": "7207080", "sL_LossRatio": "0.574741602067183", "sL_AssetLoss": "154800", "sL_BldgLoss": "88970", "sL_StrLoss": "32030", "sL_NStrLoss": "56940", "sL_ContLoss": "65830", "geom_point": "0101000020E6100000597D5CB8BFD75EC04E72551323BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.370482107, 49.481099442000065 ], [ -123.370609726999973, 49.478858905000081 ], [ -123.36791655199994, 49.478793579000119 ], [ -123.367991211999978, 49.477484078 ], [ -123.367748127999988, 49.477478178000062 ], [ -123.367779561999967, 49.476926869000053 ], [ -123.367953165999978, 49.473881832000131 ], [ -123.37302260899996, 49.474004753000024 ], [ -123.372363299999932, 49.474414611000135 ], [ -123.371499800999985, 49.475128086000055 ], [ -123.371487987999942, 49.475415809000047 ], [ -123.371627215999979, 49.475613797000079 ], [ -123.372153605999983, 49.475683595000056 ], [ -123.372496312999914, 49.475494208000072 ], [ -123.372635994999882, 49.475663605000079 ], [ -123.372459097999979, 49.475952814000031 ], [ -123.371455687999941, 49.476720390000047 ], [ -123.371392003999986, 49.477214608000104 ], [ -123.371987105999949, 49.477636201000109 ], [ -123.372801884999916, 49.477633300000079 ], [ -123.373548472999943, 49.477811395000067 ], [ -123.373823686999927, 49.477748822000066 ], [ -123.374156193999951, 49.477673216000063 ], [ -123.374432411999976, 49.477735897000088 ], [ -123.3746128, 49.47787970400001 ], [ -123.374697086999959, 49.478175992000111 ], [ -123.374536920999915, 49.478913700000042 ], [ -123.374691603999963, 49.47929970100008 ], [ -123.374554884999895, 49.479462005000066 ], [ -123.37457279600001, 49.479786694000076 ], [ -123.374849804999968, 49.480055890000095 ], [ -123.374841102999966, 49.480550109000021 ], [ -123.375325579999966, 49.480836397000118 ], [ -123.37538663399999, 49.481218233000099 ], [ -123.370482107, 49.481099442000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7018000", "BldgCostT": "3895000", "sL_LossRatio": "0.597493036211699", "sL_AssetLoss": "78980", "sL_BldgLoss": "47190", "sL_StrLoss": "17290", "sL_NStrLoss": "29900", "sL_ContLoss": "31790", "geom_point": "0101000020E61000004D970F5281D95EC04E4401D350BA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.397319090999943, 49.45721470900007 ], [ -123.397344698999987, 49.456760232000121 ], [ -123.397306318999952, 49.456759310000038 ], [ -123.397315355999964, 49.456598918000061 ], [ -123.396952314999965, 49.456590201000033 ], [ -123.396965361999932, 49.456358688000137 ], [ -123.394611545999936, 49.456302140000105 ], [ -123.394670175, 49.455262704000077 ], [ -123.394682494999984, 49.455271785000065 ], [ -123.395373299999946, 49.455494004000087 ], [ -123.39571990599994, 49.455501108000128 ], [ -123.395953714999976, 49.455419893000105 ], [ -123.396116679, 49.455257597000106 ], [ -123.396280511999976, 49.454905798000055 ], [ -123.396116395999911, 49.453467295000124 ], [ -123.39673450299999, 49.452988796000078 ], [ -123.39684350499999, 49.452970294000082 ], [ -123.397176302999981, 49.453131192000058 ], [ -123.397591195999951, 49.453129804000085 ], [ -123.39811419199999, 49.453001599000068 ], [ -123.398347992999973, 49.453045794000083 ], [ -123.398638996999964, 49.453242313000075 ], [ -123.398697903999988, 49.453485903000036 ], [ -123.397942211, 49.454081208000026 ], [ -123.397930305999964, 49.454306198000062 ], [ -123.398138101999962, 49.454377409000095 ], [ -123.398675018999981, 49.454232099000123 ], [ -123.399132999, 49.454545498000101 ], [ -123.399586690999953, 49.454337511000098 ], [ -123.40000140399999, 49.454434393000113 ], [ -123.40043149499999, 49.45476619500009 ], [ -123.400424308999931, 49.455539610000052 ], [ -123.400550692999957, 49.455854294000069 ], [ -123.401642211999985, 49.45587710400013 ], [ -123.401988489999951, 49.456127810000055 ], [ -123.402068147999898, 49.456228310000078 ], [ -123.40235080099994, 49.456584890000059 ], [ -123.402600217999961, 49.4565935010001 ], [ -123.402865589999976, 49.45669525600006 ], [ -123.402828950999961, 49.457346854000093 ], [ -123.397319090999943, 49.45721470900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "324799525", "BldgCostT": "209777679", "sL_LossRatio": "0.720280005464715", "sL_AssetLoss": "1471257", "sL_BldgLoss": "1059717", "sL_StrLoss": "472957", "sL_NStrLoss": "586760", "sL_ContLoss": "411540", "geom_point": "0101000020E610000066519FE4CED65EC09660C33656B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.346234819999921, 49.450147605000083 ], [ -123.346232918999974, 49.449877763000096 ], [ -123.346646810999971, 49.449876523000093 ], [ -123.346644907999959, 49.44960668000008 ], [ -123.345403240999971, 49.449610395000057 ], [ -123.345405136999929, 49.44988023800007 ], [ -123.34292179, 49.449887628000035 ], [ -123.342916141999979, 49.449078100000101 ], [ -123.343330026999951, 49.449076873000095 ], [ -123.343328141999947, 49.44880703000014 ], [ -123.344983671999927, 49.448802103000098 ], [ -123.344981777999948, 49.448532261000068 ], [ -123.346637296999958, 49.448527311000078 ], [ -123.346633491999953, 49.447987626000078 ], [ -123.346219615999956, 49.447988865000056 ], [ -123.346213915999925, 49.447179338000062 ], [ -123.34580004699994, 49.447180576000108 ], [ -123.345792456999973, 49.446101206000073 ], [ -123.345378596999964, 49.446102442000132 ], [ -123.345371769999957, 49.445130593000037 ], [ -123.34261207099999, 49.445062957000133 ], [ -123.342570654999946, 49.445782960000074 ], [ -123.342479279999949, 49.44578071900002 ], [ -123.342483461000015, 49.446380900000065 ], [ -123.340828013999968, 49.446385791000125 ], [ -123.340825008999971, 49.445952383000119 ], [ -123.339847247999927, 49.445928387000045 ], [ -123.339717676999953, 49.448178524000063 ], [ -123.338974090999926, 49.44816026900007 ], [ -123.338967052999976, 49.448282442000114 ], [ -123.333458458999971, 49.448147050000031 ], [ -123.333459269999963, 49.448132987000108 ], [ -123.332964596999943, 49.44812081500001 ], [ -123.332940000999926, 49.447820395000107 ], [ -123.332758987999981, 49.447603891000014 ], [ -123.332797302999921, 49.447109698000112 ], [ -123.332906096999949, 49.446911701000062 ], [ -123.333388713999952, 49.446972999000131 ], [ -123.333596112999956, 49.446774995000062 ], [ -123.333163293999988, 49.446191111000104 ], [ -123.333008712999955, 49.445669798000026 ], [ -123.333048687999963, 49.445399196000061 ], [ -123.333544804999974, 49.44529948600016 ], [ -123.333694203999983, 49.445001797000032 ], [ -123.334011, 49.445018899000033 ], [ -123.334465504999926, 49.444919199 ], [ -123.334631905999984, 49.444981892000037 ], [ -123.334522490999944, 49.445224 ], [ -123.3348554, 49.445376395000082 ], [ -123.335297097999927, 49.445393506000045 ], [ -123.335600097999986, 49.445302388000059 ], [ -123.335750495999918, 49.44510439700008 ], [ -123.335692303999934, 49.44482519200006 ], [ -123.335828909000014, 49.444581702000058 ], [ -123.33577259799992, 49.444385199000081 ], [ -123.335509088999956, 49.444214301000109 ], [ -123.335493803999924, 49.444061904000129 ], [ -123.336193017999932, 49.443412401000025 ], [ -123.33620650599994, 49.443177395000141 ], [ -123.336010108999957, 49.442918188000185 ], [ -123.33605209199996, 49.442773011000035 ], [ -123.336466013999939, 49.442745903000066 ], [ -123.336669889999911, 49.442573595000063 ], [ -123.337250680999887, 49.442580699000068 ], [ -123.337688993999961, 49.442318601000053 ], [ -123.338118688999927, 49.442462512000098 ], [ -123.338313815999967, 49.442794300000095 ], [ -123.338783098999969, 49.442980893 ], [ -123.339145304999974, 49.4432686070001 ], [ -123.339282310999948, 49.443258593000081 ], [ -123.339653582999944, 49.443158903000032 ], [ -123.340039013999956, 49.442932501000023 ], [ -123.340298112999932, 49.442446799000102 ], [ -123.340793584999943, 49.442453901000086 ], [ -123.34113771199999, 49.442218895000096 ], [ -123.340843291999988, 49.441689115000059 ], [ -123.340884308999989, 49.441428508000115 ], [ -123.341405018999964, 49.441120897000147 ], [ -123.34159910899993, 49.441137983000019 ], [ -123.341765520999971, 49.441353001000067 ], [ -123.342497088999892, 49.441216307000076 ], [ -123.343464396999963, 49.441690597000097 ], [ -123.34390719, 49.441697709000024 ], [ -123.344837111999979, 49.440742004000093 ], [ -123.34530539299999, 49.440461495000065 ], [ -123.345622394999964, 49.44050561400006 ], [ -123.345872690999954, 49.440766199000095 ], [ -123.346190896999971, 49.440800388000071 ], [ -123.346532295, 49.440394487000091 ], [ -123.347194408999954, 49.440365999000043 ], [ -123.347306596999928, 49.440599602000127 ], [ -123.347500589, 49.440679405000012 ], [ -123.347788008999942, 49.440318987000083 ], [ -123.34856979599999, 49.439740813000121 ], [ -123.349188306999949, 49.439587001000106 ], [ -123.349833197999928, 49.439108489000077 ], [ -123.350531475999958, 49.43841349700007 ], [ -123.350985380999958, 49.438205493000027 ], [ -123.351219796999928, 49.438158503000075 ], [ -123.351661797999967, 49.438319485000143 ], [ -123.352201907999984, 49.438399200000134 ], [ -123.352543109999885, 49.438118597 ], [ -123.352706811999937, 49.437795296000019 ], [ -123.352884898999932, 49.437704205000081 ], [ -123.353107208999958, 49.437756889000042 ], [ -123.35315068700001, 49.437991903000054 ], [ -123.353399007999897, 49.438142899000063 ], [ -123.353895022999907, 49.438105803000084 ], [ -123.354388502999953, 49.437510494000016 ], [ -123.354274396999983, 49.437178693000121 ], [ -123.354478185999966, 49.436674497000098 ], [ -123.354739711999983, 49.43654770600007 ], [ -123.354890802999961, 49.436610399000067 ], [ -123.354934706999927, 49.436700100000031 ], [ -123.354646900999938, 49.437069009000062 ], [ -123.354743919999962, 49.437177206000108 ], [ -123.355294885, 49.436967896000148 ], [ -123.355611301999886, 49.436930913000026 ], [ -123.356363080999955, 49.436275049000081 ], [ -123.356365519999969, 49.436272903000031 ], [ -123.356805002999977, 49.436027910000121 ], [ -123.356897415999967, 49.435362799000131 ], [ -123.357420097000016, 49.435180504000115 ], [ -123.357649904999946, 49.434801704000087 ], [ -123.357980302000016, 49.434684890000078 ], [ -123.358129085000016, 49.434305990000048 ], [ -123.35831010499993, 49.434323104000015 ], [ -123.358615494999952, 49.434637901000052 ], [ -123.358973495999962, 49.434600791000079 ], [ -123.359123108999981, 49.434419985000098 ], [ -123.359081615999955, 49.434273580000095 ], [ -123.359023805999925, 49.434069606000108 ], [ -123.35907708299996, 49.43376340500005 ], [ -123.359173085999913, 49.433709301000107 ], [ -123.359616399999979, 49.433797604000119 ], [ -123.359754008, 49.433895889000055 ], [ -123.360016483999942, 49.433841703000091 ], [ -123.360422814999964, 49.432886108000041 ], [ -123.360822911999932, 49.432777893000058 ], [ -123.360918208999976, 49.432678209000066 ], [ -123.36079078799996, 49.432229500000112 ], [ -123.361417991999986, 49.43121978900011 ], [ -123.361734482999978, 49.431209795000015 ], [ -123.362654995999961, 49.430829506000066 ], [ -123.362780597, 49.430828109000053 ], [ -123.362727085999964, 49.431107292000029 ], [ -123.362921817999975, 49.43123259500004 ], [ -123.363402804, 49.431186995000061 ], [ -123.364903202999955, 49.430768296000068 ], [ -123.365097779999928, 49.430866597000019 ], [ -123.36538769, 49.430865105000102 ], [ -123.366350410999985, 49.430745508 ], [ -123.366640903999937, 49.430852308000041 ], [ -123.366617780999974, 49.431319492000043 ], [ -123.366715002, 49.431454809000115 ], [ -123.366909094000022, 49.431471890000104 ], [ -123.367263618000024, 49.431155701000094 ], [ -123.367637198999958, 49.431083108000067 ], [ -123.367719209, 49.430956301 ], [ -123.367646619999945, 49.430687106000072 ], [ -123.368032998999979, 49.430560401000037 ], [ -123.368088311999955, 49.43073130500008 ], [ -123.368282580999917, 49.430775401000147 ], [ -123.368297383999959, 49.430846606000053 ], [ -123.367845293999906, 49.431235401000052 ], [ -123.367968206999976, 49.431289604000014 ], [ -123.368104889999955, 49.431162809000028 ], [ -123.368396574999935, 49.431169895000075 ], [ -123.368369688999948, 49.431350808000076 ], [ -123.36854940299996, 49.431440509000012 ], [ -123.368485586999967, 49.432043001000082 ], [ -123.36860989199999, 49.432176791000074 ], [ -123.368802217999985, 49.43218539700014 ], [ -123.369051484999957, 49.432068596000072 ], [ -123.369778686999965, 49.431607200000023 ], [ -123.370233005, 49.431570086000114 ], [ -123.370618523999951, 49.431370702000088 ], [ -123.37080977799998, 49.431369298000071 ], [ -123.37122620299999, 49.431638494000076 ], [ -123.37139469899995, 49.431916196000017 ], [ -123.371685319999983, 49.432023001000076 ], [ -123.371908488999978, 49.432500093000094 ], [ -123.372227724999917, 49.43284910300013 ], [ -123.372352601999921, 49.432938791000062 ], [ -123.372642801999959, 49.43283908500009 ], [ -123.372989186999916, 49.43310830700004 ], [ -123.372952904999948, 49.433900097000048 ], [ -123.372844378999915, 49.434125197000149 ], [ -123.372918417999969, 49.434610796000129 ], [ -123.372685095999927, 49.434988199000053 ], [ -123.372690683999977, 49.435028628000033 ], [ -123.369713010999988, 49.434956382000074 ], [ -123.369741256999987, 49.438713849000109 ], [ -123.369974663000022, 49.438719515000059 ], [ -123.370078302999985, 49.436898584000062 ], [ -123.370580579999938, 49.436910773000101 ], [ -123.370623322999961, 49.43615959400011 ], [ -123.373013574999959, 49.436217573000128 ], [ -123.373596214999949, 49.436865296000043 ], [ -123.37352969799997, 49.437019090000099 ], [ -123.373695796999968, 49.437242694000133 ], [ -123.373711898999886, 49.43750341200009 ], [ -123.373588718999912, 49.437684306000072 ], [ -123.37385431099996, 49.438195493000123 ], [ -123.374450803999977, 49.438581500000083 ], [ -123.374742385999966, 49.43891339700005 ], [ -123.374731904999976, 49.439334905000059 ], [ -123.37507941799997, 49.439676698000071 ], [ -123.37502757699994, 49.439999997000029 ], [ -123.374823310999972, 49.440243597000084 ], [ -123.374712387999921, 49.44022649000005 ], [ -123.374625108000018, 49.43974079900002 ], [ -123.374528802000015, 49.439678211000128 ], [ -123.374336599999964, 49.439759295000037 ], [ -123.374217211999948, 49.440461495000065 ], [ -123.373794387999936, 49.44117360900001 ], [ -123.373742700999927, 49.441434202000082 ], [ -123.373164396999968, 49.441805909000081 ], [ -123.372655514999948, 49.441959706000013 ], [ -123.372354500999933, 49.442149193000063 ], [ -123.37236859799999, 49.442284502000057 ], [ -123.372617912999957, 49.442508109000059 ], [ -123.372647987999969, 49.44275159400015 ], [ -123.37246929899996, 49.442886902000119 ], [ -123.372041605999982, 49.442852688000094 ], [ -123.371945588999893, 49.442969489000099 ], [ -123.372004093000029, 49.443338407000034 ], [ -123.371801920999971, 49.443553720000068 ], [ -123.369675000999933, 49.44350211600009 ], [ -123.369706046999966, 49.442956791000036 ], [ -123.369220518999967, 49.442945005000105 ], [ -123.369257039999979, 49.442303600000081 ], [ -123.368725441, 49.442290693000082 ], [ -123.368850576999989, 49.440093298000079 ], [ -123.368510182999927, 49.440094383 ], [ -123.368512203999941, 49.440364225000089 ], [ -123.358994566999925, 49.440394161000057 ], [ -123.358992595999965, 49.44012431900007 ], [ -123.358164978999952, 49.440126885000019 ], [ -123.358163013999956, 49.439857042000021 ], [ -123.357749206999955, 49.439858323000117 ], [ -123.357747245000013, 49.439588480000047 ], [ -123.357333442, 49.439589760000075 ], [ -123.357328219999943, 49.438871084000048 ], [ -123.357281798999907, 49.439682718000057 ], [ -123.35665039, 49.439667317000101 ], [ -123.356629893, 49.440025632000122 ], [ -123.35601522599994, 49.44001063600011 ], [ -123.356010171999955, 49.440098947000074 ], [ -123.355144982999931, 49.440077834000078 ], [ -123.355111167999951, 49.440668568000085 ], [ -123.353109442999937, 49.440619691000023 ], [ -123.353076615999925, 49.441192717000085 ], [ -123.352475466999948, 49.441178031000128 ], [ -123.352456109999963, 49.441515831000125 ], [ -123.351784016999929, 49.441499408000027 ], [ -123.351758606, 49.441942746000016 ], [ -123.351521737999974, 49.441936957000074 ], [ -123.351478637999932, 49.442688851000106 ], [ -123.350320488999913, 49.442660539000045 ], [ -123.350329526999985, 49.443928765000095 ], [ -123.349501843000013, 49.443931269000139 ], [ -123.349505678999918, 49.444470953000135 ], [ -123.349091833999964, 49.444472204000064 ], [ -123.349093750999913, 49.444742046000087 ], [ -123.347852206999974, 49.44474578800002 ], [ -123.347846480999962, 49.443936260000051 ], [ -123.348260320999927, 49.443935014 ], [ -123.348254118999975, 49.443059193000082 ], [ -123.347511848999957, 49.443041027000028 ], [ -123.347458448999987, 49.443971146000109 ], [ -123.347046047999982, 49.443961051000024 ], [ -123.347021921999911, 49.444381210000067 ], [ -123.347030225999958, 49.445557802000046 ], [ -123.348271788999966, 49.445554069000138 ], [ -123.348273700999954, 49.44582391200008 ], [ -123.34868755799998, 49.44582266500003 ], [ -123.348691384999981, 49.446362350000101 ], [ -123.349932969999941, 49.446358600000082 ], [ -123.34993873099998, 49.447168128000087 ], [ -123.349524862999914, 49.447169379000087 ], [ -123.349526779999906, 49.447439222000057 ], [ -123.348699040000014, 49.447441720000072 ], [ -123.348712436999975, 49.449330617000022 ], [ -123.349954096999923, 49.449326866000085 ], [ -123.349956016999954, 49.449596710000073 ], [ -123.35202546, 49.449590429000118 ], [ -123.35203318899994, 49.450669797000039 ], [ -123.34872200800001, 49.450679829000066 ], [ -123.348720093999958, 49.450409986000054 ], [ -123.348306197999989, 49.450411234000114 ], [ -123.348304286999948, 49.450141391000052 ], [ -123.34789039199994, 49.450142637000049 ], [ -123.347894212999989, 49.45068232100013 ], [ -123.347480314, 49.450683566000109 ], [ -123.347486035999907, 49.451493093000067 ], [ -123.347072132, 49.451494336000081 ], [ -123.347074036999942, 49.451764178000126 ], [ -123.346660130999936, 49.451765419000026 ], [ -123.346662033, 49.452035262000038 ], [ -123.345006395999988, 49.452040212000071 ], [ -123.344996926999954, 49.450691001000081 ], [ -123.345410824999988, 49.45068976600006 ], [ -123.34540893, 49.450419922000073 ], [ -123.345822824000024, 49.450418686000035 ], [ -123.345820926, 49.450148843000107 ], [ -123.346234819999921, 49.450147605000083 ] ], [ [ -123.347867479999977, 49.446904528000069 ], [ -123.347865570999943, 49.446634685000035 ], [ -123.347451707999952, 49.446635929000067 ], [ -123.347453613999946, 49.446905771000033 ], [ -123.347867479999977, 49.446904528000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5769167", "BldgCostT": "3241667", "sL_LossRatio": "0.684679652207704", "sL_AssetLoss": "41174", "sL_BldgLoss": "28191", "sL_StrLoss": "17017", "sL_NStrLoss": "11174", "sL_ContLoss": "12983", "geom_point": "0101000020E6100000C5FEF497C4DC5EC05865325E6BBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.44684823599999, 49.465496193000021 ], [ -123.447039271, 49.462040590000072 ], [ -123.447047062999957, 49.461899636000112 ], [ -123.447090390999989, 49.461900656000083 ], [ -123.447177381999921, 49.462042498000095 ], [ -123.447482698999963, 49.462284593000049 ], [ -123.448396888999966, 49.46264920700002 ], [ -123.449022016999947, 49.463025194000132 ], [ -123.450512715999977, 49.463126292000013 ], [ -123.451135892999957, 49.463285809000176 ], [ -123.452493544999967, 49.463190959000123 ], [ -123.452359222999988, 49.465625820000135 ], [ -123.44684823599999, 49.465496193000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23723917", "BldgCostT": "13206667", "sL_LossRatio": "0.671828060524933", "sL_AssetLoss": "122964.2", "sL_BldgLoss": "82610.8", "sL_StrLoss": "41731", "sL_NStrLoss": "40879.8", "sL_ContLoss": "40353.4", "geom_point": "0101000020E61000007676436462DD5EC0EFBBD86A45B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.455246996999932, 49.409624498000056 ], [ -123.45429509899995, 49.40957321300008 ], [ -123.452822701999963, 49.409697092000087 ], [ -123.452104286999926, 49.409690007000052 ], [ -123.451587424999929, 49.409473288000115 ], [ -123.45173463899999, 49.406801999000031 ], [ -123.457238648999962, 49.406931390000118 ], [ -123.457201838999978, 49.407600795000072 ], [ -123.458363247999955, 49.407628062000079 ], [ -123.458303479999984, 49.408715460000089 ], [ -123.458409334999942, 49.40871794400006 ], [ -123.458419969999952, 49.408524468000067 ], [ -123.45884192299998, 49.408534371000044 ], [ -123.458823707999926, 49.406579799000014 ], [ -123.459480651, 49.406577191000075 ], [ -123.460477792999953, 49.406573224000063 ], [ -123.460490410999967, 49.407922427000081 ], [ -123.460076879, 49.407924073000075 ], [ -123.460079912999959, 49.408248592000085 ], [ -123.460549355999902, 49.408259602000058 ], [ -123.460550600999966, 49.408236919000046 ], [ -123.461169650999949, 49.408251435000111 ], [ -123.461222027999924, 49.40729743300006 ], [ -123.461503748000013, 49.407304038000049 ], [ -123.461552565999938, 49.406414738000052 ], [ -123.461703434999933, 49.406418275000114 ], [ -123.46172077599999, 49.406102342000047 ], [ -123.467224729999884, 49.406231226000088 ], [ -123.467194557999974, 49.406782123000042 ], [ -123.467077096, 49.406778898000077 ], [ -123.466667412999968, 49.407257405000095 ], [ -123.465376812999963, 49.407757297000074 ], [ -123.465142100999941, 49.407900796000035 ], [ -123.46503431099994, 49.407966702000095 ], [ -123.464584180999964, 49.408497898000064 ], [ -123.464485123999907, 49.409685704000061 ], [ -123.464156119999956, 49.410011903000111 ], [ -123.463441704999966, 49.410248306000028 ], [ -123.462988190999909, 49.410241192000051 ], [ -123.462927782999913, 49.410249461000042 ], [ -123.460688991999973, 49.410555898000041 ], [ -123.459793293999923, 49.410783798000075 ], [ -123.459538, 49.410785057000055 ], [ -123.459229202999978, 49.410786594000065 ], [ -123.456673110999958, 49.410319501000025 ], [ -123.455246996999932, 49.409624498000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7010228", "BldgCostT": "3894857", "sL_LossRatio": "0.642824154254705", "sL_AssetLoss": "69288", "sL_BldgLoss": "44540", "sL_StrLoss": "26170", "sL_NStrLoss": "18370", "sL_ContLoss": "24748", "geom_point": "0101000020E6100000D5FBD70337D75EC035941CA8BAC24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36001918, 49.523773598000119 ], [ -123.360005309999949, 49.521884727000042 ], [ -123.35959081299994, 49.521886016000067 ], [ -123.359584876999961, 49.521076500000042 ], [ -123.359999367999961, 49.521075211000017 ], [ -123.359995405999939, 49.520535534000061 ], [ -123.362067836999984, 49.52052906700002 ], [ -123.362065846999911, 49.520259229000089 ], [ -123.361651360999986, 49.520260525000076 ], [ -123.361649371999988, 49.519990686000043 ], [ -123.361234889999963, 49.519991981000032 ], [ -123.361232901999955, 49.519722142 ], [ -123.360818422999941, 49.51972343500006 ], [ -123.360812466999974, 49.518913920000088 ], [ -123.362470358999957, 49.518908738000142 ], [ -123.362472351999941, 49.519178577000091 ], [ -123.362886826999969, 49.519177277000033 ], [ -123.362890819999905, 49.519716954000103 ], [ -123.363305299, 49.519715654000052 ], [ -123.363307298999956, 49.519985492000053 ], [ -123.363721780999981, 49.51998418900012 ], [ -123.363725783999897, 49.520523867000051 ], [ -123.364140270999926, 49.520522564000053 ], [ -123.36414427599999, 49.521062241000031 ], [ -123.36580224, 49.521057010000092 ], [ -123.365804252999979, 49.521326849000097 ], [ -123.366218745999902, 49.521325538000042 ], [ -123.366220761999969, 49.521595377000068 ], [ -123.366962995, 49.521593025000115 ], [ -123.367049751999915, 49.521592749000014 ], [ -123.367057831999958, 49.522672103000033 ], [ -123.366681798999977, 49.52267329600005 ], [ -123.364985309999966, 49.522678660000096 ], [ -123.364981292, 49.522138982000094 ], [ -123.362908793999935, 49.522145502000072 ], [ -123.362904798000017, 49.521605824000083 ], [ -123.360832320999961, 49.521612306000087 ], [ -123.360834306999962, 49.521882145000127 ], [ -123.361248803999928, 49.521880851000056 ], [ -123.361262720999974, 49.523769722000047 ], [ -123.36001918, 49.523773598000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57864789", "BldgCostT": "32365372", "sL_LossRatio": "0.627228358132065", "sL_AssetLoss": "446461", "sL_BldgLoss": "280033", "sL_StrLoss": "120475", "sL_NStrLoss": "159558", "sL_ContLoss": "166428", "geom_point": "0101000020E6100000D30351BDD6D75EC0339A3B7E18BB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.36986324599998, 49.468771857000064 ], [ -123.369888472999961, 49.46832896500004 ], [ -123.369578662999984, 49.468321451000044 ], [ -123.369726500999931, 49.465726068000038 ], [ -123.36953046099994, 49.465726694000054 ], [ -123.369532491, 49.465996536000077 ], [ -123.368290412999983, 49.466000498000071 ], [ -123.36829445799998, 49.466540179000063 ], [ -123.366638337000026, 49.466545441000051 ], [ -123.36663028199996, 49.465466077000059 ], [ -123.366216260999963, 49.465467388000057 ], [ -123.366214248999981, 49.465197547000052 ], [ -123.36580023099999, 49.465198857000118 ], [ -123.365796212999939, 49.464659175000072 ], [ -123.36538219699996, 49.464660484000092 ], [ -123.365380191999975, 49.464390642000083 ], [ -123.364966179999939, 49.46439194900006 ], [ -123.364958829000017, 49.463402669000089 ], [ -123.364801058999944, 49.463398835000092 ], [ -123.36471620199994, 49.463087900000126 ], [ -123.36428579699999, 49.462701915000068 ], [ -123.363922588999969, 49.462109503000121 ], [ -123.36402949799999, 49.461730602000088 ], [ -123.36464721499999, 49.461405892000116 ], [ -123.365310798999985, 49.461367399000039 ], [ -123.366011179999973, 49.461086900000055 ], [ -123.366838502999911, 49.461029884000084 ], [ -123.367334102999976, 49.460911701000086 ], [ -123.367652208999942, 49.46073079100006 ], [ -123.367964389999941, 49.460270795000071 ], [ -123.367726, 49.45965129300005 ], [ -123.367957291999957, 49.459280995000057 ], [ -123.368236000999943, 49.459460406000062 ], [ -123.368635695999956, 49.459486099000067 ], [ -123.3700395, 49.458923503000044 ], [ -123.3706468029999, 49.458930603000077 ], [ -123.370948202999941, 49.458857990000084 ], [ -123.37107271799999, 49.458741194000041 ], [ -123.371165984999962, 49.458245592000075 ], [ -123.371398393999982, 49.458037596000032 ], [ -123.372003198999892, 49.457865298000101 ], [ -123.372304390999929, 49.457530613000046 ], [ -123.372567491, 49.457557706000109 ], [ -123.373038788999978, 49.457898104000066 ], [ -123.373287615999956, 49.457888102000048 ], [ -123.373328005, 49.457663103000058 ], [ -123.372949609999978, 49.457007903000019 ], [ -123.372886387999984, 49.456063695000104 ], [ -123.37327699299999, 49.454676488000132 ], [ -123.373635309999912, 49.454541192000121 ], [ -123.374090998999989, 49.454556896000085 ], [ -123.374284189999983, 49.454673710000037 ], [ -123.374424802999926, 49.454915808000088 ], [ -123.374933707999972, 49.45476189300004 ], [ -123.375099200999912, 49.454814696 ], [ -123.375211676999925, 49.454985592000078 ], [ -123.37536190899999, 49.454975587000064 ], [ -123.375815409999959, 49.45474059000005 ], [ -123.37634949699999, 49.454001385000062 ], [ -123.37663748599999, 49.45390169700007 ], [ -123.376777480999976, 49.454062695000054 ], [ -123.376683089999958, 49.454458594000123 ], [ -123.37675320399994, 49.454583892000137 ], [ -123.37694519199998, 49.454538409000101 ], [ -123.37708178299999, 49.454348897000067 ], [ -123.377316295999961, 49.454286296000078 ], [ -123.377400712999986, 49.454338989000064 ], [ -123.377319004999976, 49.454618098000061 ], [ -123.377431698999942, 49.454816092000065 ], [ -123.378065315999905, 49.454760504000014 ], [ -123.378412716999932, 49.454938505000044 ], [ -123.378191998999966, 49.455192113000116 ], [ -123.378127004999968, 49.455550984000077 ], [ -123.378595313999952, 49.455532508000026 ], [ -123.379233497999962, 49.455879998000079 ], [ -123.379712696999945, 49.455501105000117 ], [ -123.379921014999979, 49.455528197000106 ], [ -123.380239908999897, 49.455768894000158 ], [ -123.3805978, 49.45564211100006 ], [ -123.38070917899995, 49.455713298000013 ], [ -123.380695418999977, 49.455867096000112 ], [ -123.380381716999963, 49.456173303000121 ], [ -123.381022098999935, 49.456990795000124 ], [ -123.381449590999978, 49.457096208000074 ], [ -123.381752089999964, 49.456888311000121 ], [ -123.381863505999888, 49.456896798000109 ], [ -123.382444319999962, 49.457237205000077 ], [ -123.382515108999911, 49.457506397000024 ], [ -123.382378303999985, 49.457668796000142 ], [ -123.381913020999946, 49.457905200000035 ], [ -123.38192701, 49.458138794000085 ], [ -123.382136275000022, 49.458588245000037 ], [ -123.377582671999946, 49.458478187000054 ], [ -123.377630512999957, 49.457635587 ], [ -123.377092706999989, 49.457622575000087 ], [ -123.377103253999948, 49.457436842000078 ], [ -123.376752904999961, 49.457428365000034 ], [ -123.376646406999939, 49.459303390000109 ], [ -123.375394193999952, 49.45927308000006 ], [ -123.375355990999964, 49.45994532000006 ], [ -123.374030721999972, 49.459913227000129 ], [ -123.374002062999978, 49.460417252000127 ], [ -123.373720029999944, 49.460410420000088 ], [ -123.373692577999947, 49.460893158000033 ], [ -123.373057674, 49.46087777500005 ], [ -123.373055152999925, 49.460922073000035 ], [ -123.372034374999927, 49.460897334000052 ], [ -123.37201393199993, 49.461256598000077 ], [ -123.371152670999933, 49.461235717000108 ], [ -123.37115801799996, 49.461943618000092 ], [ -123.370744026999958, 49.461944946000109 ], [ -123.370746061999938, 49.462214787000057 ], [ -123.370656308999955, 49.462215075000074 ], [ -123.370640942999927, 49.462484972000048 ], [ -123.375302053999945, 49.462469941000037 ], [ -123.375305591999947, 49.462933112000123 ], [ -123.375308236999899, 49.463279464000095 ], [ -123.374894233999925, 49.463280807000068 ], [ -123.374895217999949, 49.463409575000064 ], [ -123.37530402500002, 49.463419472000091 ], [ -123.377587623999958, 49.463474732000094 ], [ -123.377566672999976, 49.463843673000085 ], [ -123.37767654299995, 49.463846330000102 ], [ -123.377671484999965, 49.463935431000046 ], [ -123.37718600699999, 49.464288482000036 ], [ -123.375523393999984, 49.465157303000076 ], [ -123.375358904999985, 49.465427885000061 ], [ -123.375361397999896, 49.465580313000039 ], [ -123.375596704, 49.465813805000032 ], [ -123.375446298999975, 49.465984712000115 ], [ -123.374191112999966, 49.46613279300005 ], [ -123.373766381999957, 49.466296598000049 ], [ -123.373477601999966, 49.466585695000063 ], [ -123.373716298999966, 49.467205309000079 ], [ -123.374507011999953, 49.46775068900012 ], [ -123.374674205999938, 49.4678319020001 ], [ -123.37497841699998, 49.467840501000133 ], [ -123.375776152999919, 49.467824822000075 ], [ -123.375772863999984, 49.467882688000081 ], [ -123.37543300399993, 49.46787446300003 ], [ -123.375374406999967, 49.468905395000064 ], [ -123.36986324599998, 49.468771857000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65355494", "BldgCostT": "39614076", "sL_LossRatio": "0.693473261237516", "sL_AssetLoss": "309588", "sL_BldgLoss": "214691", "sL_StrLoss": "109824", "sL_NStrLoss": "104867", "sL_ContLoss": "94897", "geom_point": "0101000020E6100000D57B223635E15EC05462C714E6B14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.52123251899998, 49.391743333000058 ], [ -123.521284449999925, 49.390774160000021 ], [ -123.51936946599993, 49.390730291000089 ], [ -123.519384851999945, 49.390443377000047 ], [ -123.515121130999916, 49.390345580000044 ], [ -123.515164766999959, 49.389533178000057 ], [ -123.514480456999934, 49.389517466000065 ], [ -123.514563366999965, 49.387974238000083 ], [ -123.514590171999956, 49.387475309000102 ], [ -123.51465080699991, 49.387462403000058 ], [ -123.515092223999915, 49.3875065040001 ], [ -123.516662313999944, 49.387445290000066 ], [ -123.517586192999929, 49.387123839000083 ], [ -123.517268229999942, 49.388032844000065 ], [ -123.517245210999974, 49.388655390000075 ], [ -123.517560499999917, 49.388733786000095 ], [ -123.518289897, 49.38861629600013 ], [ -123.518792203999965, 49.388494597000033 ], [ -123.51938134699999, 49.39044069100008 ], [ -123.524107881999953, 49.39001334000011 ], [ -123.524124607999951, 49.390194188000081 ], [ -123.524160905999949, 49.391316904000092 ], [ -123.523885515999922, 49.392187935000031 ], [ -123.523695589999946, 49.392212893000107 ], [ -123.523392214999973, 49.392216771000072 ], [ -123.523378446999942, 49.392216940000061 ], [ -123.52113791, 49.392245585000076 ], [ -123.521116080999917, 49.392245862000053 ], [ -123.521110767999971, 49.391743882000142 ], [ -123.52123251899998, 49.391743333000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "389479322", "BldgCostT": "232366486", "sL_LossRatio": "0.667349444759091", "sL_AssetLoss": "4117492", "sL_BldgLoss": "2747806", "sL_StrLoss": "1130790", "sL_NStrLoss": "1617016", "sL_ContLoss": "1369686", "geom_point": "0101000020E6100000C1FF2E7DB9E05EC0063BD720E1B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.512340407999915, 49.401350811000029 ], [ -123.512278787999904, 49.400003169000101 ], [ -123.512261786999971, 49.399630916000092 ], [ -123.512940008999948, 49.399621209000081 ], [ -123.51293982299994, 49.399612198000092 ], [ -123.512873894000023, 49.396444115000136 ], [ -123.512864242999981, 49.396415858000125 ], [ -123.51280038199999, 49.396228920000063 ], [ -123.512768434999913, 49.396135486000027 ], [ -123.512736504999936, 49.396042018000109 ], [ -123.512704558999971, 49.395948583000063 ], [ -123.512672627999919, 49.395855115000089 ], [ -123.512640750999935, 49.395761658000048 ], [ -123.512608787999937, 49.395668202000138 ], [ -123.512576876999944, 49.39557475600003 ], [ -123.512544911999925, 49.395481299000011 ], [ -123.512513, 49.395387853000024 ], [ -123.512641392999953, 49.395183711000108 ], [ -123.512758223999938, 49.394940014000134 ], [ -123.512767326999949, 49.39492103500006 ], [ -123.512785709999932, 49.394882694000074 ], [ -123.512821800999987, 49.394646712000025 ], [ -123.512806115999979, 49.394055672000093 ], [ -123.512791310999944, 49.393498898000118 ], [ -123.511651397999941, 49.393258399000054 ], [ -123.511893579999978, 49.392903897000124 ], [ -123.512305657999946, 49.392453857000092 ], [ -123.512184146999957, 49.392469060000046 ], [ -123.51087401699999, 49.392632153000129 ], [ -123.509039803999912, 49.393004790000063 ], [ -123.508814692999962, 49.392530512000071 ], [ -123.506215517999962, 49.393146788000124 ], [ -123.506122319999946, 49.393214892000124 ], [ -123.506090301999961, 49.393373586000095 ], [ -123.506030648999968, 49.393828398000032 ], [ -123.506013181999947, 49.393961501000028 ], [ -123.505932, 49.394138792000078 ], [ -123.505091293999925, 49.395169311000082 ], [ -123.504755102999951, 49.395580186000061 ], [ -123.504684699999984, 49.395736206000038 ], [ -123.504692821999939, 49.396734901000059 ], [ -123.505103523999949, 49.396655205000087 ], [ -123.50534439399992, 49.396657998000087 ], [ -123.50571529299998, 49.39675298700007 ], [ -123.505961000999946, 49.396845116000065 ], [ -123.506410110000019, 49.397075196000124 ], [ -123.506680783999968, 49.397317303000101 ], [ -123.506998083000028, 49.398201595000067 ], [ -123.506789973999986, 49.398234912000078 ], [ -123.506712405999949, 49.398022886000028 ], [ -123.506516692999952, 49.397726602000049 ], [ -123.50592169299992, 49.397404794000067 ], [ -123.505313505999965, 49.397228184000028 ], [ -123.504402704999976, 49.397205387000092 ], [ -123.503440706, 49.397407588000057 ], [ -123.503069920999934, 49.397570004000045 ], [ -123.50202529799995, 49.397728096 ], [ -123.501720494999958, 49.39769390100011 ], [ -123.501278197000019, 49.397478813000092 ], [ -123.500484178999926, 49.396745394000042 ], [ -123.500241016999922, 49.395919302000024 ], [ -123.499783293999954, 49.39551629100005 ], [ -123.499769585999985, 49.39419320700005 ], [ -123.49993780599999, 49.393996187000035 ], [ -123.499999937999974, 49.393995918000051 ], [ -123.499999935999966, 49.393923419000046 ], [ -123.500043423, 49.393872488000085 ], [ -123.500048332999967, 49.393871859000072 ], [ -123.500048282, 49.393866796000104 ], [ -123.500301010999962, 49.393570793000094 ], [ -123.502657288999956, 49.39364199300006 ], [ -123.502877682999923, 49.393513803000118 ], [ -123.502983901999983, 49.393253201000086 ], [ -123.503708898999946, 49.392656508000066 ], [ -123.504807487999983, 49.392291892000109 ], [ -123.505262183999918, 49.392316094000051 ], [ -123.505512102999944, 49.39243289400013 ], [ -123.506696692999981, 49.39233741200011 ], [ -123.50702559799997, 49.392210711000097 ], [ -123.507144906999926, 49.391840411000025 ], [ -123.50784650199995, 49.391622509000079 ], [ -123.509183810999943, 49.391660903000073 ], [ -123.511152504999956, 49.391517096000044 ], [ -123.51130279399996, 49.391435891000093 ], [ -123.511994366999929, 49.390435353000051 ], [ -123.512415474999955, 49.390433488000028 ], [ -123.512416796999972, 49.390560657000094 ], [ -123.512463236999949, 49.390528464000099 ], [ -123.512511635999928, 49.390573262000082 ], [ -123.512507635999967, 49.391004163000026 ], [ -123.512568281999961, 49.391123474000054 ], [ -123.512628575999912, 49.39124209800007 ], [ -123.512837284999961, 49.39124117300004 ], [ -123.512840093999898, 49.391511013000084 ], [ -123.513253484999922, 49.391509177000074 ], [ -123.513256295999923, 49.39177901700009 ], [ -123.513669690999933, 49.391777181000116 ], [ -123.513680988999937, 49.392860702000057 ], [ -123.516799552999899, 49.3929322870001 ], [ -123.516606443999976, 49.396529335000018 ], [ -123.513718557999951, 49.396463049000047 ], [ -123.513736109000021, 49.398145646000017 ], [ -123.517785842999956, 49.398238575000022 ], [ -123.517783173999973, 49.398288318000063 ], [ -123.520971872999922, 49.398361381000058 ], [ -123.520994157999922, 49.39794557200004 ], [ -123.521356816999969, 49.397953876000017 ], [ -123.521608094999962, 49.400412916000036 ], [ -123.520949004, 49.40039739000008 ], [ -123.52094728899999, 49.400397323000107 ], [ -123.51861599599998, 49.40045825400005 ], [ -123.518636715999961, 49.400811026000071 ], [ -123.518675063000018, 49.401462622000047 ], [ -123.517690478999953, 49.401455353000095 ], [ -123.516331509999986, 49.400928991000129 ], [ -123.515891240999977, 49.400918897000111 ], [ -123.515947834999963, 49.401840382000032 ], [ -123.515909833999942, 49.402163602000059 ], [ -123.515804094999936, 49.402413304000014 ], [ -123.515310497999934, 49.402805286000032 ], [ -123.515216282999944, 49.4029697100001 ], [ -123.515168890999959, 49.403286506000022 ], [ -123.515179338999971, 49.403836834000053 ], [ -123.514086936999902, 49.403860376000033 ], [ -123.513148384, 49.404277290000081 ], [ -123.51218549499994, 49.404859547000058 ], [ -123.511197518999936, 49.405456970000095 ], [ -123.510078085999908, 49.404754200000113 ], [ -123.509938437999892, 49.404664351000029 ], [ -123.509757997999984, 49.404548231 ], [ -123.509744109999971, 49.404539305000149 ], [ -123.509247934999948, 49.404220066000043 ], [ -123.509029260999938, 49.404079346000081 ], [ -123.508751637999978, 49.403900725000028 ], [ -123.508593415999954, 49.403798895000065 ], [ -123.510075614999934, 49.402890945000131 ], [ -123.512347202999962, 49.401499306000083 ], [ -123.512340407999915, 49.401350811000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143277583", "BldgCostT": "91197348", "sL_LossRatio": "0.693547496166955", "sL_AssetLoss": "2009499", "sL_BldgLoss": "1393683", "sL_StrLoss": "627399", "sL_NStrLoss": "766284", "sL_ContLoss": "615816", "geom_point": "0101000020E61000009F67681392E05EC0DF06AD6E92B24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.50571529299998, 49.39675298700007 ], [ -123.50534439399992, 49.396657998000087 ], [ -123.505103523999949, 49.396655205000087 ], [ -123.504692821999939, 49.396734901000059 ], [ -123.504684699999984, 49.395736206000038 ], [ -123.504755102999951, 49.395580186000061 ], [ -123.505091293999925, 49.395169311000082 ], [ -123.505932, 49.394138792000078 ], [ -123.506013181999947, 49.393961501000028 ], [ -123.506030648999968, 49.393828398000032 ], [ -123.506090301999961, 49.393373586000095 ], [ -123.506122319999946, 49.393214892000124 ], [ -123.506215517999962, 49.393146788000124 ], [ -123.508814692999962, 49.392530512000071 ], [ -123.509039803999912, 49.393004790000063 ], [ -123.51087401699999, 49.392632153000129 ], [ -123.512184146999957, 49.392469060000046 ], [ -123.512305657999946, 49.392453857000092 ], [ -123.511893579999978, 49.392903897000124 ], [ -123.511651397999941, 49.393258399000054 ], [ -123.512791310999944, 49.393498898000118 ], [ -123.512806115999979, 49.394055672000093 ], [ -123.512821800999987, 49.394646712000025 ], [ -123.512785709999932, 49.394882694000074 ], [ -123.512767326999949, 49.39492103500006 ], [ -123.512758223999938, 49.394940014000134 ], [ -123.512641392999953, 49.395183711000108 ], [ -123.512513, 49.395387853000024 ], [ -123.512544911999925, 49.395481299000011 ], [ -123.512576876999944, 49.39557475600003 ], [ -123.512608787999937, 49.395668202000138 ], [ -123.512640750999935, 49.395761658000048 ], [ -123.512672627999919, 49.395855115000089 ], [ -123.512704558999971, 49.395948583000063 ], [ -123.512736504999936, 49.396042018000109 ], [ -123.512768434999913, 49.396135486000027 ], [ -123.51280038199999, 49.396228920000063 ], [ -123.512864242999981, 49.396415858000125 ], [ -123.512873894000023, 49.396444115000136 ], [ -123.51267074499999, 49.39648084500012 ], [ -123.511826492999916, 49.396633507000018 ], [ -123.510779202999927, 49.396851711000053 ], [ -123.510219238999966, 49.396968382000068 ], [ -123.510057589, 49.397002049000029 ], [ -123.509585103999925, 49.39710050300004 ], [ -123.509236684999934, 49.397226713000087 ], [ -123.508654553999946, 49.397472671000038 ], [ -123.508137303999931, 49.397691207000058 ], [ -123.506998083000028, 49.398201595000067 ], [ -123.506680783999968, 49.397317303000101 ], [ -123.506410110000019, 49.397075196000124 ], [ -123.505961000999946, 49.396845116000065 ], [ -123.50571529299998, 49.39675298700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16264166", "BldgCostT": "11216666", "sL_LossRatio": "0.817665435955694", "sL_AssetLoss": "105630", "sL_BldgLoss": "86370", "sL_StrLoss": "48850", "sL_NStrLoss": "37520", "sL_ContLoss": "19260", "geom_point": "0101000020E61000005E4D1A7AF6DE5EC048B6042AADB74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.478666096999973, 49.434834598000045 ], [ -123.478970979999971, 49.434551806000094 ], [ -123.47897563099994, 49.434543312000066 ], [ -123.479089006, 49.434335788000055 ], [ -123.479112353999966, 49.434235521000076 ], [ -123.479150696999966, 49.434012531000029 ], [ -123.479183097999965, 49.433823902000057 ], [ -123.479248311999925, 49.433010525000078 ], [ -123.479238174, 49.432671285000055 ], [ -123.479461605999944, 49.431749713000045 ], [ -123.47968739599996, 49.430971683000038 ], [ -123.482733327999966, 49.430863614000074 ], [ -123.484037296999986, 49.430881015000054 ], [ -123.48548488299997, 49.430876797000074 ], [ -123.485454869999941, 49.429021395000028 ], [ -123.48753138299999, 49.428985841000078 ], [ -123.487812302999927, 49.42906708300012 ], [ -123.494567412999984, 49.429000230000106 ], [ -123.49502825199994, 49.429068502000113 ], [ -123.495405282999954, 49.429054719000121 ], [ -123.495859825999915, 49.428985094000012 ], [ -123.496495908999918, 49.42894758300006 ], [ -123.500393678999927, 49.428213606000114 ], [ -123.50266307199999, 49.427786167000072 ], [ -123.50259396, 49.429065267000027 ], [ -123.502888296999942, 49.429063987000127 ], [ -123.502891758999922, 49.429402551000095 ], [ -123.502892448999916, 49.429470199000065 ], [ -123.502902089999978, 49.430413177000034 ], [ -123.500744205999965, 49.430422541000077 ], [ -123.500599523999952, 49.430423167000122 ], [ -123.500419774999941, 49.430423945000072 ], [ -123.500411539999916, 49.429614430000065 ], [ -123.499997828999938, 49.429616221000046 ], [ -123.500000570999973, 49.429886058000044 ], [ -123.498345711999903, 49.429893202000109 ], [ -123.498342136999966, 49.429540202000055 ], [ -123.496971734999988, 49.429508548000058 ], [ -123.496969548999971, 49.429548926000095 ], [ -123.493376631999951, 49.429465856000078 ], [ -123.493378425999978, 49.42964465100011 ], [ -123.49296471199996, 49.429646415000086 ], [ -123.492967414999924, 49.429916254000084 ], [ -123.48965769199999, 49.429930315000057 ], [ -123.489660375999961, 49.430200153000072 ], [ -123.488747608999944, 49.430204016000062 ], [ -123.488744657999945, 49.430258326000079 ], [ -123.48593669, 49.430193202000048 ], [ -123.485939579999979, 49.43048569800002 ], [ -123.485525858999949, 49.430487436000099 ], [ -123.485531185999918, 49.431027113000013 ], [ -123.484326958999944, 49.431032163000054 ], [ -123.484307543999975, 49.431388832000088 ], [ -123.483938209999963, 49.431380255000079 ], [ -123.483925243, 49.431618440000086 ], [ -123.483462046999975, 49.431607682000056 ], [ -123.483429057999928, 49.432213551000075 ], [ -123.483300630999963, 49.432210568000045 ], [ -123.48328716499995, 49.432457853000145 ], [ -123.481270328999969, 49.432410986000079 ], [ -123.481259093999967, 49.432617139000044 ], [ -123.482143699999938, 49.432637700000072 ], [ -123.482076278999955, 49.433875181000104 ], [ -123.483212336999955, 49.433901576000082 ], [ -123.483210250999932, 49.433939880000047 ], [ -123.485236265999959, 49.433986923000063 ], [ -123.485221625999941, 49.434255963000105 ], [ -123.485218281999963, 49.43431742000007 ], [ -123.485215733999922, 49.434364239000075 ], [ -123.485301186999948, 49.434366222000037 ], [ -123.48526879299996, 49.434961534000131 ], [ -123.485311422999942, 49.434962523000067 ], [ -123.485310858999966, 49.434972890000012 ], [ -123.485755608999952, 49.434983212000098 ], [ -123.485559908999932, 49.438579981000082 ], [ -123.484684897999941, 49.438559673000036 ], [ -123.484681874999964, 49.438615203000076 ], [ -123.483892476999969, 49.438596876000076 ], [ -123.483891042999971, 49.438623222000025 ], [ -123.481637409999976, 49.438570869000031 ], [ -123.481557820999939, 49.438569019000063 ], [ -123.481492339999946, 49.439770433000028 ], [ -123.481411794999985, 49.441248176000066 ], [ -123.478571142999982, 49.441182118000079 ], [ -123.478545101999927, 49.441659331000089 ], [ -123.47825491899998, 49.441662197000021 ], [ -123.478193705999942, 49.441658878000091 ], [ -123.477764188999927, 49.441635494000089 ], [ -123.47730041199999, 49.441543604000096 ], [ -123.476891618999957, 49.441403609000126 ], [ -123.476432996999975, 49.441192094000066 ], [ -123.475924905999975, 49.440776004000085 ], [ -123.475610186999944, 49.440429290000026 ], [ -123.475583788999984, 49.440378820000021 ], [ -123.475541484999937, 49.440297997000101 ], [ -123.475502282999983, 49.439931597000076 ], [ -123.475388799999948, 49.436961512000067 ], [ -123.475466190999924, 49.436630107000028 ], [ -123.475539558999969, 49.43650992700006 ], [ -123.475582720999952, 49.436439304000032 ], [ -123.475595335999969, 49.436424246000051 ], [ -123.475848216999935, 49.436123101000057 ], [ -123.47618110099998, 49.435908495000056 ], [ -123.47658228899995, 49.435706291000074 ], [ -123.47742978399998, 49.435384799000104 ], [ -123.478038888999919, 49.435162201 ], [ -123.478468795999973, 49.434963290000127 ], [ -123.478666096999973, 49.434834598000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.854482626223843", "sL_AssetLoss": "15627", "sL_BldgLoss": "13353", "sL_StrLoss": "7996", "sL_NStrLoss": "5357", "sL_ContLoss": "2274", "geom_point": "0101000020E6100000BF02A0A3F8DF5EC0C591A4F7CFBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.497127776999903, 49.457615165000043 ], [ -123.502403186999942, 49.457736832000087 ], [ -123.502208686999921, 49.461333511000106 ], [ -123.497992722999982, 49.461236299000049 ], [ -123.496698072999934, 49.461206415000056 ], [ -123.496893000999975, 49.457609746000109 ], [ -123.497127776999903, 49.457615165000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35248250", "BldgCostT": "22835000", "sL_LossRatio": "0.739136561117852", "sL_AssetLoss": "383235", "sL_BldgLoss": "283263", "sL_StrLoss": "142300", "sL_NStrLoss": "140963", "sL_ContLoss": "99972", "geom_point": "0101000020E6100000093C0701BFE05EC0E7F338A9BBB54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.507439077999905, 49.429044108000106 ], [ -123.507430729999939, 49.428234594000067 ], [ -123.507017027999936, 49.428236409000043 ], [ -123.507019808999956, 49.428506246000047 ], [ -123.505364997999962, 49.42851349000005 ], [ -123.505363406999948, 49.428358600000081 ], [ -123.505362663999932, 49.428286301000107 ], [ -123.505362227999925, 49.428243652000063 ], [ -123.504948525999936, 49.428245459000095 ], [ -123.504944375999969, 49.427841019000063 ], [ -123.50414891099993, 49.427822696000092 ], [ -123.504166172999973, 49.427503029000079 ], [ -123.508058256999973, 49.426769766000106 ], [ -123.507789390000013, 49.426464644000063 ], [ -123.50754850099996, 49.426125986000109 ], [ -123.507457383999935, 49.42582229900006 ], [ -123.507451947999968, 49.425552299000081 ], [ -123.507445404999899, 49.42522688400004 ], [ -123.507346279, 49.422131944000071 ], [ -123.507241080999933, 49.42098253300005 ], [ -123.507210109999903, 49.420644168000095 ], [ -123.509119894999927, 49.417300085000079 ], [ -123.508918260999948, 49.417270445000064 ], [ -123.508597618999929, 49.417223293000077 ], [ -123.507907816999989, 49.417211909000059 ], [ -123.507591982999926, 49.417267693000113 ], [ -123.507401792999971, 49.417267814000105 ], [ -123.50723911299994, 49.417167687000045 ], [ -123.507236417999962, 49.416656287000123 ], [ -123.507090096999917, 49.415637299000124 ], [ -123.50711636599999, 49.414281075000126 ], [ -123.50151002099993, 49.414347299000021 ], [ -123.501503419999921, 49.413973393000099 ], [ -123.501500637999968, 49.41381575400009 ], [ -123.501490670999928, 49.413251097000042 ], [ -123.50151677599996, 49.413022095000066 ], [ -123.501448490999962, 49.412807087000019 ], [ -123.501526091999963, 49.412518096000078 ], [ -123.501377976999933, 49.412352590000069 ], [ -123.501376613999952, 49.4115873000001 ], [ -123.501400791999984, 49.411216899000081 ], [ -123.502134363999971, 49.411211972000068 ], [ -123.502285990999908, 49.411210960000147 ], [ -123.503516604999959, 49.411202692000067 ], [ -123.50347170399999, 49.409737681000173 ], [ -123.504345237999971, 49.40975089800002 ], [ -123.504360404999943, 49.411231125000064 ], [ -123.504429034999959, 49.409959499000088 ], [ -123.507229908999989, 49.410024009000033 ], [ -123.507251733999965, 49.410591436000111 ], [ -123.507312511999928, 49.412171236000077 ], [ -123.508922936999952, 49.412163672000091 ], [ -123.510224818999973, 49.412065956000085 ], [ -123.510213938000035, 49.413259699000051 ], [ -123.509925456999923, 49.413230183000138 ], [ -123.509949131999974, 49.414236417000055 ], [ -123.510383830999928, 49.41423547300014 ], [ -123.511848168999947, 49.414232333000022 ], [ -123.512755317999904, 49.414224342000075 ], [ -123.513312227999933, 49.41422004800004 ], [ -123.513723039999917, 49.414216866000075 ], [ -123.513774912999935, 49.417557388000048 ], [ -123.513700200999963, 49.417843787000024 ], [ -123.51470809599999, 49.417830383000108 ], [ -123.515700489999944, 49.417817163000066 ], [ -123.516031291999937, 49.417812760000047 ], [ -123.516279557999937, 49.417809438000106 ], [ -123.516900176999911, 49.417801158000032 ], [ -123.517134510999938, 49.417798027000089 ], [ -123.518515903999983, 49.417779600000102 ], [ -123.518577044000025, 49.419071002000116 ], [ -123.518689156, 49.421438389000095 ], [ -123.518529524999977, 49.421439105000104 ], [ -123.518532368999956, 49.421708943000063 ], [ -123.518343356999978, 49.421709791000076 ], [ -123.518258448999987, 49.423291359000075 ], [ -123.518748385999942, 49.423302584000048 ], [ -123.518750327999939, 49.423333676000105 ], [ -123.518752587999984, 49.423369597000026 ], [ -123.518766634999906, 49.423594752000042 ], [ -123.518823411999918, 49.424503102000067 ], [ -123.51888264199998, 49.424549699000046 ], [ -123.518969057999954, 49.424617673000107 ], [ -123.518996700999978, 49.424639387000077 ], [ -123.519255993999977, 49.424661592000113 ], [ -123.519515488999943, 49.424602699000054 ], [ -123.52030858599997, 49.424050990000097 ], [ -123.520713702999956, 49.42382159900005 ], [ -123.520969388, 49.423758192000101 ], [ -123.521166607999973, 49.423807688000117 ], [ -123.521423108999926, 49.424046783000087 ], [ -123.521553780999938, 49.424168591000068 ], [ -123.521754009999952, 49.42423980300002 ], [ -123.521954100999935, 49.424209305000048 ], [ -123.522089087999959, 49.424080907000061 ], [ -123.522181508999935, 49.423899304000038 ], [ -123.522382879999952, 49.423819301000037 ], [ -123.522396145999934, 49.423822184000095 ], [ -123.522530132999933, 49.423851216000074 ], [ -123.522664138999929, 49.423880272000048 ], [ -123.522692140999979, 49.423886335000049 ], [ -123.522694609999945, 49.424118857000096 ], [ -123.523108274999942, 49.424116986000087 ], [ -123.52312262, 49.425466173000082 ], [ -123.522308156999912, 49.425469854000035 ], [ -123.522227018999899, 49.426983515000146 ], [ -123.521366863999958, 49.42696383800012 ], [ -123.521359789999948, 49.427095734000048 ], [ -123.518722388999933, 49.427035360000076 ], [ -123.51585320299999, 49.426969605000089 ], [ -123.516027885999932, 49.423719084000055 ], [ -123.512726589999929, 49.423643332000061 ], [ -123.512788963999981, 49.422484092000083 ], [ -123.511206965999989, 49.42244775500005 ], [ -123.511139184999948, 49.423706694000039 ], [ -123.509565730999952, 49.423670532000081 ], [ -123.509529381999982, 49.424345196000054 ], [ -123.50984934899999, 49.424352551000105 ], [ -123.509742522999957, 49.426335477000094 ], [ -123.509893355000017, 49.426334812000036 ], [ -123.509899411999953, 49.426919343000087 ], [ -123.509915725999946, 49.428493513 ], [ -123.509502024999918, 49.428495337000122 ], [ -123.509507612999968, 49.429035012000014 ], [ -123.507439077999905, 49.429044108000106 ] ], [ [ -123.504267448999954, 49.412953315000017 ], [ -123.504272110999977, 49.412866943 ], [ -123.503963587999976, 49.412868288000013 ], [ -123.503955300999948, 49.412058771000027 ], [ -123.504315817999981, 49.412057199000031 ], [ -123.504344954999965, 49.411517371000123 ], [ -123.503949775999942, 49.411519094000049 ], [ -123.503952536999947, 49.411788932000078 ], [ -123.502552859999966, 49.411795025000096 ], [ -123.502538282000032, 49.412064939000075 ], [ -123.50271460699993, 49.41206417300004 ], [ -123.502722873999971, 49.412873688000019 ], [ -123.502494542999941, 49.412874681000076 ], [ -123.502492505999925, 49.412912397000177 ], [ -123.504267448999954, 49.412953315000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.832164526042077", "sL_AssetLoss": "12691", "sL_BldgLoss": "10561", "sL_StrLoss": "5665", "sL_NStrLoss": "4896", "sL_ContLoss": "2130", "geom_point": "0101000020E610000024BB6F0897DE5EC0DD3ABD5A07BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.47505254399999, 49.48572028300007 ], [ -123.475185895999957, 49.483282354000025 ], [ -123.475341495999928, 49.483274600000094 ], [ -123.47610300299999, 49.483407105000026 ], [ -123.476960208999969, 49.483690504000059 ], [ -123.477026719999969, 49.48369352900005 ], [ -123.477873301, 49.483731810000023 ], [ -123.479953107999947, 49.483193405000051 ], [ -123.480728982999949, 49.482862728000079 ], [ -123.480566025999948, 49.485848475000111 ], [ -123.47505254399999, 49.48572028300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.785392192630427", "sL_AssetLoss": "68525", "sL_BldgLoss": "53819", "sL_StrLoss": "26079", "sL_NStrLoss": "27740", "sL_ContLoss": "14706", "geom_point": "0101000020E610000042F5E6A2E7DE5EC0F8AA53ED6CC34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.483609382999973, 49.530069164000103 ], [ -123.48360672299999, 49.52979933000011 ], [ -123.480290254999957, 49.529813144000045 ], [ -123.480287611000023, 49.529543310000122 ], [ -123.479458497999971, 49.529546748000044 ], [ -123.479453220999986, 49.529007080000063 ], [ -123.479038668999976, 49.529008796000049 ], [ -123.479036031999925, 49.528738962000055 ], [ -123.478621482999969, 49.528740678000062 ], [ -123.478618847999925, 49.528470844000033 ], [ -123.478204300999934, 49.528472558000082 ], [ -123.478198683999935, 49.52789672700009 ], [ -123.478932182999955, 49.527254193000076 ], [ -123.479935894, 49.526656014000096 ], [ -123.47995799499995, 49.526232995000036 ], [ -123.48049319899999, 49.525889806000066 ], [ -123.481116381999954, 49.525905492000035 ], [ -123.481321508999955, 49.525741692000082 ], [ -123.481306404999927, 49.525472487000023 ], [ -123.480970400999922, 49.525113601000086 ], [ -123.480464690999966, 49.524270489000109 ], [ -123.480473108999917, 49.523757805000081 ], [ -123.480346803999979, 49.523542688000056 ], [ -123.480416394999949, 49.523488597000082 ], [ -123.480872509999969, 49.523512809000096 ], [ -123.481647278999915, 49.523816195000038 ], [ -123.481814899999961, 49.523814693000077 ], [ -123.482034087999978, 49.523696496000127 ], [ -123.482045104999955, 49.523400292000083 ], [ -123.481878097999981, 49.523302014000151 ], [ -123.480384609999945, 49.523217995000067 ], [ -123.480467391999923, 49.523092711000075 ], [ -123.481421314999977, 49.523105502000128 ], [ -123.481682907999982, 49.523041382000066 ], [ -123.481707299999954, 49.522843388000098 ], [ -123.481111192999947, 49.522550009000042 ], [ -123.480528700999983, 49.522453207000076 ], [ -123.481203223999955, 49.52217120100002 ], [ -123.484756992999962, 49.523712191000115 ], [ -123.485965412999931, 49.524526907000059 ], [ -123.486525005999979, 49.525134990000048 ], [ -123.486570843999957, 49.525199534000123 ], [ -123.48646311, 49.52519998800004 ], [ -123.48648452899999, 49.5273586590001 ], [ -123.486069991999955, 49.52736040100006 ], [ -123.486080692999934, 49.528439737000042 ], [ -123.48649523899995, 49.528437996000051 ], [ -123.486503272999926, 49.529247497000071 ], [ -123.485674165999939, 49.529250980000036 ], [ -123.485676839999911, 49.529520814000058 ], [ -123.485262285, 49.529522553000085 ], [ -123.485267625999967, 49.53006222100008 ], [ -123.483609382999973, 49.530069164000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.758375742154368", "sL_AssetLoss": "9432", "sL_BldgLoss": "7153", "sL_StrLoss": "2943", "sL_NStrLoss": "4210", "sL_ContLoss": "2279", "geom_point": "0101000020E6100000B3AB98635CE05EC00BBE407B3BC24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.504212477999928, 49.51783816900015 ], [ -123.504198607000021, 49.516488999000082 ], [ -123.504613050999964, 49.516487193000088 ], [ -123.504610274999962, 49.516217359000031 ], [ -123.506268043, 49.516210118000089 ], [ -123.506270828999931, 49.5164799510001 ], [ -123.507099716999932, 49.516476321000084 ], [ -123.507105296999953, 49.517015988000047 ], [ -123.507519744999939, 49.517014171000021 ], [ -123.507530915999965, 49.518093505000145 ], [ -123.50711645799997, 49.518095323000125 ], [ -123.507119248, 49.518365156000094 ], [ -123.505046945999965, 49.518374220000091 ], [ -123.505049725999939, 49.518644054000049 ], [ -123.503806337999947, 49.518649475000103 ], [ -123.503798020999938, 49.517839974000061 ], [ -123.504212477999928, 49.51783816900015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.82015306122449", "sL_AssetLoss": "23520", "sL_BldgLoss": "19290", "sL_StrLoss": "11240", "sL_NStrLoss": "8050", "sL_ContLoss": "4230", "geom_point": "0101000020E6100000B497A75277D95EC01BE9350B6EC74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.395821522999981, 49.557179701000059 ], [ -123.396502494999979, 49.556034606000033 ], [ -123.39694229399997, 49.555520505000104 ], [ -123.397397808999955, 49.555581690000068 ], [ -123.398335388, 49.555182989000073 ], [ -123.399020406999938, 49.554496496000034 ], [ -123.399289554999939, 49.554378415000023 ], [ -123.39960983099995, 49.554386081000075 ], [ -123.399464764999934, 49.556956818000046 ], [ -123.40000627799995, 49.556969777000063 ], [ -123.399803369999944, 49.560565748000101 ], [ -123.394281181999986, 49.560433469000046 ], [ -123.394298483999975, 49.560127515000019 ], [ -123.394697386999923, 49.560052304000081 ], [ -123.395343407999974, 49.559609390000084 ], [ -123.396240603999956, 49.559354508000112 ], [ -123.396277350999952, 49.559242839000056 ], [ -123.396415414999922, 49.558823205000067 ], [ -123.396255974000027, 49.557941594000042 ], [ -123.395821522999981, 49.557179701000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.8336986701739", "sL_AssetLoss": "6843", "sL_BldgLoss": "5705", "sL_StrLoss": "3470", "sL_NStrLoss": "2235", "sL_ContLoss": "1138", "geom_point": "0101000020E6100000A0741A504CDF5EC02F17D08FAFBA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.488036391999955, 49.456325781000011 ], [ -123.489865872999957, 49.456368157000036 ], [ -123.489670401999916, 49.459964821000021 ], [ -123.489097923999935, 49.459951564000093 ], [ -123.489038638999943, 49.461042034000073 ], [ -123.487846166999944, 49.461014410000111 ], [ -123.487889687999939, 49.460763606000057 ], [ -123.488032013999913, 49.4604292920001 ], [ -123.488181691999955, 49.460187886 ], [ -123.48872761899996, 49.459483001000095 ], [ -123.488964208999931, 49.459064397000084 ], [ -123.489008986999977, 49.458798107000135 ], [ -123.48898567, 49.458491399000124 ], [ -123.488036391999955, 49.456325781000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.824443293630243", "sL_AssetLoss": "19310", "sL_BldgLoss": "15920", "sL_StrLoss": "9020", "sL_NStrLoss": "6900", "sL_ContLoss": "3390", "geom_point": "0101000020E61000002BC50A8E7DDF5EC091CDD92BC1B84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.489181423999966, 49.441874504000054 ], [ -123.488660504, 49.441692181000064 ], [ -123.488340389999948, 49.441620003000047 ], [ -123.48824949899992, 49.441609716000045 ], [ -123.488262682999974, 49.441367189000061 ], [ -123.493770908999963, 49.441494718000101 ], [ -123.493753628999983, 49.441813302000099 ], [ -123.494337508999962, 49.441826804000087 ], [ -123.494142448, 49.445423552000115 ], [ -123.493643022999919, 49.445412004000055 ], [ -123.493630439999919, 49.44564396300008 ], [ -123.490091412999973, 49.445562063000061 ], [ -123.49045064799995, 49.444161608000137 ], [ -123.490493308999959, 49.443995381000079 ], [ -123.490485612999947, 49.443704389000075 ], [ -123.490438521, 49.443480008000044 ], [ -123.490084453999941, 49.442789964000099 ], [ -123.489989699999938, 49.442605316000034 ], [ -123.489780114999974, 49.442275502000037 ], [ -123.489629368999928, 49.442129696000016 ], [ -123.489181423999966, 49.441874504000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.85636068098212", "sL_AssetLoss": "35067", "sL_BldgLoss": "30030", "sL_StrLoss": "18710", "sL_NStrLoss": "11320", "sL_ContLoss": "5037", "geom_point": "0101000020E6100000A3B3CC22D4DF5EC0A50A25178CBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.495653117999964, 49.467919569000081 ], [ -123.495669707999966, 49.467613658000054 ], [ -123.493473458999944, 49.467562913000144 ], [ -123.493509643999971, 49.466896249000065 ], [ -123.493378295999946, 49.466893212000102 ], [ -123.493573507999926, 49.463296579000044 ], [ -123.494587382999924, 49.463320012000075 ], [ -123.494652530999971, 49.462119103000141 ], [ -123.498345822999951, 49.462204383000035 ], [ -123.500163248999939, 49.46224630299999 ], [ -123.500045597999986, 49.464419798000044 ], [ -123.50135914099998, 49.464450077000031 ], [ -123.501164530999944, 49.468046717000064 ], [ -123.496243146000012, 49.4679331950001 ], [ -123.495653117999964, 49.467919569000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29425332", "BldgCostT": "20293332", "sL_LossRatio": "0.787661195267059", "sL_AssetLoss": "285911", "sL_BldgLoss": "225201", "sL_StrLoss": "112631", "sL_NStrLoss": "112570", "sL_ContLoss": "60710", "geom_point": "0101000020E6100000B95CFDD8A4DF5EC0FEB4590E57C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.494360731999947, 49.527325276000091 ], [ -123.494358012999896, 49.527055442000091 ], [ -123.493114409, 49.527060749000071 ], [ -123.493098124999932, 49.525441746000055 ], [ -123.493512645999914, 49.525439979000083 ], [ -123.493504494999968, 49.524630191000078 ], [ -123.493308865999964, 49.524625675000031 ], [ -123.493303279999964, 49.52472845700008 ], [ -123.489752395999957, 49.524646420000089 ], [ -123.488115813999926, 49.524653336000043 ], [ -123.488115366999963, 49.524608561000043 ], [ -123.487785116999987, 49.524600920000076 ], [ -123.487793696, 49.524443420000097 ], [ -123.486869922000025, 49.524422042000026 ], [ -123.486876974999944, 49.525132402000047 ], [ -123.4863676, 49.524596591000019 ], [ -123.48508660100002, 49.523648111000043 ], [ -123.483101495999918, 49.522730900000148 ], [ -123.48232548499999, 49.522473094000063 ], [ -123.481326307999964, 49.521973205000052 ], [ -123.480505496999982, 49.521373693000015 ], [ -123.480475714999969, 49.521194191000042 ], [ -123.480764889999989, 49.521048908000161 ], [ -123.480931195999972, 49.521057500000069 ], [ -123.481570023999964, 49.521396401000089 ], [ -123.482191287999953, 49.521403597000109 ], [ -123.484175294, 49.520936409000086 ], [ -123.484201790999947, 49.520774099000079 ], [ -123.484574321999943, 49.520664399000047 ], [ -123.484768480999918, 49.520690002000016 ], [ -123.484921500999931, 49.520825309000074 ], [ -123.485276888999948, 49.520580392000106 ], [ -123.48501321599997, 49.520348201000076 ], [ -123.485011998999951, 49.520204403000058 ], [ -123.485244908999931, 49.519986492000086 ], [ -123.484980890999978, 49.519952301000039 ], [ -123.484786906999901, 49.51979989600008 ], [ -123.48485489299992, 49.519610513 ], [ -123.485046684999958, 49.519466602000058 ], [ -123.48671206099999, 49.519063490000093 ], [ -123.486771085999962, 49.519049199000065 ], [ -123.486823524999977, 49.519036504000063 ], [ -123.48770778899997, 49.519032308000142 ], [ -123.488272007999981, 49.518849895000074 ], [ -123.488866201999954, 49.518874212000078 ], [ -123.489750891999947, 49.518790102000082 ], [ -123.490180996999953, 49.519066396 ], [ -123.49099861599997, 49.518976335000069 ], [ -123.491202183999974, 49.518953907000075 ], [ -123.491396093999967, 49.518845688000084 ], [ -123.49227858899998, 49.518797297000042 ], [ -123.492758688999984, 49.518525197000073 ], [ -123.492950409999949, 49.518263202000071 ], [ -123.492974706999959, 49.517875800000077 ], [ -123.492252305999926, 49.517438601000038 ], [ -123.49294090099994, 49.517391608000068 ], [ -123.492798613999952, 49.516897395000065 ], [ -123.492895013999942, 49.516329214000073 ], [ -123.492916281999925, 49.516203794 ], [ -123.49274841699993, 49.51598869800015 ], [ -123.492717694999939, 49.515692490000056 ], [ -123.492549697999905, 49.515584188000062 ], [ -123.492557582999964, 49.514981803000111 ], [ -123.492335195999928, 49.514722600000077 ], [ -123.492614284999945, 49.513288938000073 ], [ -123.492622685999962, 49.513245702000091 ], [ -123.492925700999962, 49.513118890000072 ], [ -123.49331372099999, 49.513107501000079 ], [ -123.49336530099994, 49.51280130800005 ], [ -123.493777212999987, 49.512466592000095 ], [ -123.493797898999944, 49.511872688000025 ], [ -123.49394711099994, 49.511647699000079 ], [ -123.493820901999982, 49.511432711000069 ], [ -123.494097103999962, 49.51131448600011 ], [ -123.494203908, 49.511106505000079 ], [ -123.494162284999959, 49.511077666000119 ], [ -123.494010712999966, 49.510972707000043 ], [ -123.494049894999932, 49.510874400000112 ], [ -123.494151938999977, 49.510872398000089 ], [ -123.494699690999965, 49.510861596000069 ], [ -123.494795717999978, 49.5107362010001 ], [ -123.494834704999946, 49.510590988000047 ], [ -123.494653994999979, 49.510402992000095 ], [ -123.494638201000015, 49.510323812000088 ], [ -123.495018180999963, 49.510322186000096 ], [ -123.495026349999989, 49.511131689000109 ], [ -123.494197549999939, 49.511135233000083 ], [ -123.494200400999958, 49.511418070000055 ], [ -123.495858468000037, 49.511456334000044 ], [ -123.495852420999967, 49.510858306000024 ], [ -123.495438024999928, 49.510860081000054 ], [ -123.495427123999917, 49.5097807430001 ], [ -123.496670288999923, 49.509775413000121 ], [ -123.496673019999918, 49.510045248000068 ], [ -123.497087410999967, 49.510043468000077 ], [ -123.497095612999942, 49.510852971000091 ], [ -123.49751001099996, 49.510851190000025 ], [ -123.49750180099997, 49.510041686000115 ], [ -123.497916192000019, 49.510039904000038 ], [ -123.497910713999929, 49.509500236000051 ], [ -123.498325099999988, 49.509498451000105 ], [ -123.498308654999974, 49.507879445000057 ], [ -123.499137398999949, 49.507875872000128 ], [ -123.499129161999974, 49.507066369000057 ], [ -123.499543526999972, 49.507064581000094 ], [ -123.499540779999933, 49.506794746000018 ], [ -123.500783868999974, 49.506789372000057 ], [ -123.500794884999934, 49.507868710000032 ], [ -123.499551769999982, 49.507874084000072 ], [ -123.499568256999964, 49.509493090000014 ], [ -123.499153871999937, 49.509494878000083 ], [ -123.499167598999989, 49.510844050000109 ], [ -123.498753201999932, 49.510845837000033 ], [ -123.498769663999923, 49.512464842000057 ], [ -123.4985190579999, 49.51246592300005 ], [ -123.498460510999919, 49.5135455590001 ], [ -123.500023899999974, 49.513538812000029 ], [ -123.500018397999952, 49.512999144000055 ], [ -123.499189566999931, 49.513002723000064 ], [ -123.499181328999924, 49.512193220000071 ], [ -123.500424553999935, 49.51218785100005 ], [ -123.500421801999948, 49.511918016000031 ], [ -123.503322643, 49.511905432000113 ], [ -123.503319873999914, 49.511635598000055 ], [ -123.505806294999971, 49.511624755000106 ], [ -123.50580907799997, 49.511894589000057 ], [ -123.506223482999985, 49.511892777000071 ], [ -123.506231836999973, 49.512702278000113 ], [ -123.506646247999953, 49.512700464000048 ], [ -123.506660186, 49.514049633000134 ], [ -123.506245760999988, 49.514051447000057 ], [ -123.50624854599999, 49.514321281000058 ], [ -123.505005267999977, 49.514326714000106 ], [ -123.505002490999942, 49.514056881000037 ], [ -123.503759218999946, 49.514062300000056 ], [ -123.503756448000033, 49.513792467000087 ], [ -123.502098760999928, 49.513799672000111 ], [ -123.502101522999965, 49.514069507000023 ], [ -123.500029400999892, 49.514078481000112 ], [ -123.500032152999978, 49.514348315000056 ], [ -123.499617725999968, 49.514350105000048 ], [ -123.499620473999968, 49.514619939000092 ], [ -123.500034901999967, 49.514618148000103 ], [ -123.500037652999978, 49.514887983000079 ], [ -123.500452084999978, 49.514886191000123 ], [ -123.500457590999986, 49.515425859000047 ], [ -123.500872028999979, 49.515424065000111 ], [ -123.500885804999882, 49.516773236000041 ], [ -123.500471358999945, 49.516775028000048 ], [ -123.500476866, 49.517314696 ], [ -123.500891316999926, 49.517312903000061 ], [ -123.500896828999913, 49.517852570000088 ], [ -123.501725741999977, 49.517848979000085 ], [ -123.501734022999983, 49.518658481000045 ], [ -123.500905097999976, 49.518662072000041 ], [ -123.50090785499999, 49.518931906 ], [ -123.500078923, 49.518935492000018 ], [ -123.500081674999947, 49.519205325000065 ], [ -123.499252739000013, 49.519208905000049 ], [ -123.499258234, 49.519748573000086 ], [ -123.498014816999927, 49.519753932000121 ], [ -123.49801755599999, 49.520023765000055 ], [ -123.497679214999962, 49.520025222000122 ], [ -123.497494073999974, 49.523437457000043 ], [ -123.496393884999961, 49.523412094000022 ], [ -123.496400630999958, 49.524078397000068 ], [ -123.495157103999929, 49.52408372600005 ], [ -123.495150145999958, 49.523394667000041 ], [ -123.495137092000022, 49.52363501500006 ], [ -123.494917581999957, 49.523629950000071 ], [ -123.49490079899995, 49.523938920000042 ], [ -123.494667723999953, 49.523933542000059 ], [ -123.494652903999977, 49.524206325000101 ], [ -123.49381283699995, 49.524186937000074 ], [ -123.493803466999935, 49.524359357000094 ], [ -123.494745316999968, 49.524355332000027 ], [ -123.49474804, 49.524625167000103 ], [ -123.495577065999967, 49.524621619000122 ], [ -123.495587976999971, 49.525700954000129 ], [ -123.496417021999932, 49.525697400000062 ], [ -123.496427951999934, 49.526776734000094 ], [ -123.496013418999951, 49.526778513000089 ], [ -123.496018878999962, 49.52731817900009 ], [ -123.494360731999947, 49.527325276000091 ] ], [ [ -123.49518162899993, 49.526512229000112 ], [ -123.495176180000016, 49.525972562000021 ], [ -123.49476165499999, 49.525974336000033 ], [ -123.49476710099999, 49.526514003000052 ], [ -123.49518162899993, 49.526512229000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.878345285989155", "sL_AssetLoss": "11434", "sL_BldgLoss": "10043", "sL_StrLoss": "6660", "sL_NStrLoss": "3383", "sL_ContLoss": "1391", "geom_point": "0101000020E61000009DAF40913AD85EC02D49D89605C84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.376758061999936, 49.564648396000095 ], [ -123.376808777999941, 49.563757634000076 ], [ -123.376230997999954, 49.563743685000105 ], [ -123.376435757999928, 49.560147774000029 ], [ -123.378731871999932, 49.560203189000056 ], [ -123.378798316999948, 49.560609194000065 ], [ -123.379202903999911, 49.560868398000125 ], [ -123.379396087999936, 49.560903993000117 ], [ -123.37962009, 49.561227290000076 ], [ -123.379702989999885, 49.561137606000067 ], [ -123.379643179999903, 49.560704594000129 ], [ -123.379251418999942, 49.560215720000038 ], [ -123.379634510999963, 49.56022495800007 ], [ -123.38030299699993, 49.561826900000078 ], [ -123.380709299999964, 49.562698502000103 ], [ -123.381044381999956, 49.56316559600004 ], [ -123.381020599999957, 49.56351601000005 ], [ -123.381118712999978, 49.563686891000067 ], [ -123.382017881999914, 49.564775234000081 ], [ -123.376758061999936, 49.564648396000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21855084", "BldgCostT": "13598334", "sL_LossRatio": "0.800367711254224", "sL_AssetLoss": "97359", "sL_BldgLoss": "77923", "sL_StrLoss": "42191", "sL_NStrLoss": "35732", "sL_ContLoss": "19436", "geom_point": "0101000020E6100000E717EB3CA6DF5EC05E22EE1C10C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.49500729, 49.509242848000056 ], [ -123.495004566999967, 49.508973014000027 ], [ -123.494280255999954, 49.50897611000007 ], [ -123.494194507999964, 49.508822087000084 ], [ -123.4938059, 49.508589901000079 ], [ -123.493912181, 49.508221092000092 ], [ -123.493892803999969, 49.508195198000074 ], [ -123.493716998999929, 49.507960406000102 ], [ -123.493644505999924, 49.507565898000053 ], [ -123.493505816999971, 49.507440606000038 ], [ -123.49369257799998, 49.506828197000111 ], [ -123.493510083, 49.506702897000146 ], [ -123.493506687999954, 49.506333992000123 ], [ -123.493905782999974, 49.506026397000063 ], [ -123.494374916, 49.505979403 ], [ -123.494440485000013, 49.505691694000106 ], [ -123.494312994999945, 49.505439597000091 ], [ -123.494036820999924, 49.505368406000109 ], [ -123.49396509899999, 49.505161904000062 ], [ -123.49345110099992, 49.504958205000044 ], [ -123.493434584999974, 49.504553701000127 ], [ -123.493610709999928, 49.50422900100007 ], [ -123.494077390999934, 49.503929904000152 ], [ -123.494200778, 49.50386579400007 ], [ -123.495110893999964, 49.503798892000113 ], [ -123.495974506999971, 49.503156588000103 ], [ -123.496104405999986, 49.502283507000058 ], [ -123.495893124999895, 49.501919702000095 ], [ -123.495880274999962, 49.501897594000084 ], [ -123.496223285999989, 49.501671095000042 ], [ -123.49616549299999, 49.501483099000154 ], [ -123.496163988999967, 49.501312197000104 ], [ -123.49553701499994, 49.500775308000087 ], [ -123.495507161999925, 49.500709163000131 ], [ -123.495382707999951, 49.500433509000082 ], [ -123.495188280999983, 49.500380792000072 ], [ -123.494845759999947, 49.50006876300008 ], [ -123.495743350999973, 49.500064920000092 ], [ -123.495740624999968, 49.499795085000102 ], [ -123.49532632199994, 49.499796860000032 ], [ -123.495323597999928, 49.499527025000098 ], [ -123.494518183999958, 49.499530470000145 ], [ -123.49452969, 49.499439390000084 ], [ -123.494466977999977, 49.499403954000066 ], [ -123.494292704999978, 49.499305486000047 ], [ -123.494078085999959, 49.499273446000089 ], [ -123.494077975999943, 49.499262506000022 ], [ -123.494006835999983, 49.499262809000122 ], [ -123.493768308999933, 49.499227199000075 ], [ -123.493662627, 49.499264278000076 ], [ -123.493072398999956, 49.499266796000086 ], [ -123.492867503999946, 49.499096207000015 ], [ -123.49304681, 49.498986502000058 ], [ -123.492934809999952, 49.498923800000092 ], [ -123.492003469999943, 49.498971222000058 ], [ -123.492001065999943, 49.498731664000047 ], [ -123.491802204999914, 49.498732509000099 ], [ -123.49178619599995, 49.498552089000057 ], [ -123.49133018799999, 49.498480898000025 ], [ -123.490597617999967, 49.498520806000094 ], [ -123.490444509, 49.498322789000071 ], [ -123.489499788999922, 49.497868492000059 ], [ -123.489417807999985, 49.497905488000086 ], [ -123.489099091999961, 49.497907000000112 ], [ -123.488780405999961, 49.497683402000092 ], [ -123.488819501999942, 49.497538104000071 ], [ -123.489177118999976, 49.497348697000092 ], [ -123.489189311999951, 49.49726748900008 ], [ -123.488912912000018, 49.497133607000116 ], [ -123.488498396999958, 49.497117907000131 ], [ -123.488607212999952, 49.496882901000063 ], [ -123.488176504999942, 49.496596700000111 ], [ -123.488173913999944, 49.496317496000046 ], [ -123.487884815999962, 49.496462802000039 ], [ -123.487648977999967, 49.496472798000092 ], [ -123.487344090999954, 49.496303301000061 ], [ -123.487356298999927, 49.496088210000046 ], [ -123.488084601999958, 49.495689498000033 ], [ -123.487539703999971, 49.495186703000066 ], [ -123.485929885999923, 49.49403042200003 ], [ -123.485942559999941, 49.49379777500004 ], [ -123.491457035999943, 49.493925411000077 ], [ -123.491435205999892, 49.494327011000117 ], [ -123.494958832999913, 49.494408421000095 ], [ -123.494944557999986, 49.494671406000059 ], [ -123.496517362999953, 49.494664667000045 ], [ -123.496525552999941, 49.495474172000115 ], [ -123.49490060299992, 49.49548113500002 ], [ -123.494885951999919, 49.495751044000045 ], [ -123.496942550999933, 49.495742229000015 ], [ -123.496950747999932, 49.496551733000068 ], [ -123.496122194999941, 49.49655529000006 ], [ -123.49612492199995, 49.496825125 ], [ -123.49571064300001, 49.496826901000112 ], [ -123.495724270999972, 49.498176076000092 ], [ -123.496138560999967, 49.498174299000077 ], [ -123.496141289999983, 49.498444135000099 ], [ -123.49738416699995, 49.498438797000105 ], [ -123.497389637, 49.49897846700005 ], [ -123.497803935000022, 49.49897668600002 ], [ -123.49782857, 49.50140519900004 ], [ -123.498242886999961, 49.501403415000013 ], [ -123.498251105999927, 49.50221291900008 ], [ -123.499908402999935, 49.502205769000042 ], [ -123.49991115200001, 49.50247560400009 ], [ -123.50032547899994, 49.502473813000044 ], [ -123.500361250999973, 49.50598166200006 ], [ -123.499946893999919, 49.505983453000098 ], [ -123.499949642999923, 49.506253287000057 ], [ -123.49912092799994, 49.506256866000044 ], [ -123.499123671999897, 49.506526701000091 ], [ -123.49870931199996, 49.506528487000047 ], [ -123.498714797000019, 49.507068156000031 ], [ -123.497057336999916, 49.507075289000063 ], [ -123.497065537999958, 49.507884792000048 ], [ -123.496651165999978, 49.507886572000046 ], [ -123.49665389799999, 49.508156407000087 ], [ -123.496239520999964, 49.508158185000127 ], [ -123.496250440999972, 49.509237523000117 ], [ -123.49500729, 49.509242848000056 ] ], [ [ -123.494882085999933, 49.496830448000047 ], [ -123.494873511999955, 49.495980207000123 ], [ -123.494827342999955, 49.496830682000031 ], [ -123.494882085999933, 49.496830448000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.841302367941712", "sL_AssetLoss": "4392", "sL_BldgLoss": "3695", "sL_StrLoss": "1864", "sL_NStrLoss": "1831", "sL_ContLoss": "697", "geom_point": "0101000020E610000042A5DFF839DF5EC01D26544F6ABB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.487671326999987, 49.462192207000072 ], [ -123.489155662999977, 49.462226591000089 ], [ -123.488960111999916, 49.465823222000047 ], [ -123.486702505999986, 49.465770917000079 ], [ -123.48670617199997, 49.466140899000052 ], [ -123.486703770999981, 49.466120509000099 ], [ -123.486657862999948, 49.465383799000108 ], [ -123.486473090999965, 49.464804385000043 ], [ -123.486150670999933, 49.463983467000034 ], [ -123.486335988999912, 49.46386482 ], [ -123.487564380999984, 49.463386728000074 ], [ -123.487570281, 49.463320695000036 ], [ -123.487593509999954, 49.463061412000066 ], [ -123.487671326999987, 49.462192207000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.845351662025241", "sL_AssetLoss": "16877", "sL_BldgLoss": "14267", "sL_StrLoss": "8630", "sL_NStrLoss": "5637", "sL_ContLoss": "2610", "geom_point": "0101000020E6100000133865B01ADF5EC065596A9C51BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.483069805999989, 49.478764187000102 ], [ -123.483357996, 49.47857330800008 ], [ -123.483661316999985, 49.478571904000084 ], [ -123.484297415999933, 49.478712900000076 ], [ -123.484987198999974, 49.478576196000084 ], [ -123.485067910999959, 49.478368206000034 ], [ -123.484872196999902, 49.478081991000167 ], [ -123.48545210799989, 49.478051992000111 ], [ -123.485671008999986, 49.477942399000085 ], [ -123.485847609999951, 49.47776290400008 ], [ -123.485849830999911, 49.47775008400005 ], [ -123.485914183999981, 49.477375503000076 ], [ -123.486240193999919, 49.476888506000101 ], [ -123.486264691, 49.476627801000127 ], [ -123.486213735999968, 49.476556190000068 ], [ -123.488301081999964, 49.47660455000009 ], [ -123.488105403999924, 49.480201105000098 ], [ -123.487858218999975, 49.48019538000004 ], [ -123.487835917999973, 49.480605210000071 ], [ -123.487530332999967, 49.480598133000044 ], [ -123.487513021999945, 49.48091621800009 ], [ -123.483472805999924, 49.480822556000113 ], [ -123.483570189999966, 49.480424795000019 ], [ -123.483483005999986, 49.479994690000105 ], [ -123.483110473999957, 49.479899919000061 ], [ -123.482749477000013, 49.479808099000124 ], [ -123.482568792, 49.479628593000072 ], [ -123.482606696999937, 49.479430704000038 ], [ -123.483069805999989, 49.478764187000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.849370170424473", "sL_AssetLoss": "9447", "sL_BldgLoss": "8024", "sL_StrLoss": "4990", "sL_NStrLoss": "3034", "sL_ContLoss": "1423", "geom_point": "0101000020E61000005DF499DC3DDF5EC0A3CD927CFCBB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.487259993999956, 49.467007298000112 ], [ -123.487149096999971, 49.466954605000119 ], [ -123.486811213999943, 49.467033768000064 ], [ -123.486776126, 49.466735531 ], [ -123.489817719999962, 49.466805986000089 ], [ -123.489622200999946, 49.470402594000063 ], [ -123.486620142999953, 49.470333056000065 ], [ -123.486603391999964, 49.470311513000077 ], [ -123.486353803999961, 49.470204704000018 ], [ -123.486285286999973, 49.468855899000111 ], [ -123.486664886999932, 49.468079692000067 ], [ -123.487182684999937, 49.467484397000085 ], [ -123.487259993999956, 49.467007298000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115218916", "BldgCostT": "77251666", "sL_LossRatio": "0.755703740952668", "sL_AssetLoss": "1380103", "sL_BldgLoss": "1042949", "sL_StrLoss": "514419", "sL_NStrLoss": "528530", "sL_ContLoss": "337154", "geom_point": "0101000020E61000002544234C4FE25EC0A6AC6C4000B54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.527230158999913, 49.424869601000125 ], [ -123.527256321999957, 49.424380517000046 ], [ -123.525980142999941, 49.424351379000022 ], [ -123.526004846999953, 49.423889812000077 ], [ -123.525898268999981, 49.423887378000117 ], [ -123.525906063000022, 49.423741774000042 ], [ -123.525025346999968, 49.42372165500003 ], [ -123.525047995, 49.423298644000091 ], [ -123.524340642999931, 49.42330185400008 ], [ -123.524343517999924, 49.423571691000113 ], [ -123.522688877999954, 49.42357918200004 ], [ -123.522692140999979, 49.423886335000049 ], [ -123.522664138999929, 49.423880272000048 ], [ -123.522530132999933, 49.423851216000074 ], [ -123.522396145999934, 49.423822184000095 ], [ -123.522382879999952, 49.423819301000037 ], [ -123.522181508999935, 49.423899304000038 ], [ -123.522089087999959, 49.424080907000061 ], [ -123.521954100999935, 49.424209305000048 ], [ -123.521754009999952, 49.42423980300002 ], [ -123.521553780999938, 49.424168591000068 ], [ -123.521423108999926, 49.424046783000087 ], [ -123.521166607999973, 49.423807688000117 ], [ -123.520969388, 49.423758192000101 ], [ -123.520713702999956, 49.42382159900005 ], [ -123.52030858599997, 49.424050990000097 ], [ -123.519515488999943, 49.424602699000054 ], [ -123.519255993999977, 49.424661592000113 ], [ -123.518996700999978, 49.424639387000077 ], [ -123.518969057999954, 49.424617673000107 ], [ -123.51888264199998, 49.424549699000046 ], [ -123.518823411999918, 49.424503102000067 ], [ -123.518766634999906, 49.423594752000042 ], [ -123.518752587999984, 49.423369597000026 ], [ -123.518750327999939, 49.423333676000105 ], [ -123.518748385999942, 49.423302584000048 ], [ -123.519642565999916, 49.423323062000101 ], [ -123.519790404999966, 49.423322397000142 ], [ -123.519790448000023, 49.423326447000086 ], [ -123.522273116999912, 49.423383263000062 ], [ -123.522266624999972, 49.422771539000045 ], [ -123.522680277999925, 49.422769669000047 ], [ -123.522677411999894, 49.422499832000099 ], [ -123.523504713999912, 49.422496090000053 ], [ -123.523501844999942, 49.42222625300009 ], [ -123.5251058, 49.422218980000096 ], [ -123.525199153999935, 49.420475206000091 ], [ -123.523640457999988, 49.420439582000029 ], [ -123.523627712999897, 49.420677497000078 ], [ -123.518934023999961, 49.420570087000065 ], [ -123.518934630999951, 49.420627736000078 ], [ -123.519348265999952, 49.420625880000046 ], [ -123.519356809999977, 49.421435392000078 ], [ -123.518689156, 49.421438389000095 ], [ -123.518577044000025, 49.419071002000116 ], [ -123.518515903999983, 49.417779600000102 ], [ -123.517134510999938, 49.417798027000089 ], [ -123.516900176999911, 49.417801158000032 ], [ -123.516279557999937, 49.417809438000106 ], [ -123.516031291999937, 49.417812760000047 ], [ -123.515700489999944, 49.417817163000066 ], [ -123.51470809599999, 49.417830383000108 ], [ -123.513700200999963, 49.417843787000024 ], [ -123.513774912999935, 49.417557388000048 ], [ -123.513723039999917, 49.414216866000075 ], [ -123.51511055499995, 49.414213903000082 ], [ -123.516544347999925, 49.414210772000075 ], [ -123.516861461999923, 49.414210067000035 ], [ -123.518088935999941, 49.414207384000072 ], [ -123.518370847999947, 49.41420676300001 ], [ -123.519710981999978, 49.414203808000053 ], [ -123.523633509999954, 49.414109905000032 ], [ -123.526607601999942, 49.414039837000068 ], [ -123.527903303999921, 49.414009296000053 ], [ -123.52953032299996, 49.413970904000088 ], [ -123.529440309999956, 49.412758265000051 ], [ -123.533410117999949, 49.412633472000053 ], [ -123.533359328999907, 49.411686331000048 ], [ -123.53514747, 49.411613310000128 ], [ -123.535028020999945, 49.410547217000065 ], [ -123.536272190999952, 49.410511899000085 ], [ -123.537225571999983, 49.410484821000054 ], [ -123.537068873999942, 49.409041843000075 ], [ -123.536783891999946, 49.409032811000074 ], [ -123.534418509999966, 49.408957690000122 ], [ -123.53426884, 49.406490832000017 ], [ -123.535545636999956, 49.406462242000067 ], [ -123.538318116999946, 49.406401046000056 ], [ -123.54017801199997, 49.40634878400008 ], [ -123.541013494999959, 49.406326530000079 ], [ -123.541220499999952, 49.40632100400012 ], [ -123.542515787999946, 49.406286463000079 ], [ -123.542873208999964, 49.406276916000103 ], [ -123.547365177999936, 49.406156949000021 ], [ -123.547682212999959, 49.406148476000041 ], [ -123.549387306999932, 49.406102902000072 ], [ -123.55217479199996, 49.406040949000037 ], [ -123.552381721999964, 49.406036334000127 ], [ -123.554104481999929, 49.405997995000071 ], [ -123.55595085099999, 49.405964250000132 ], [ -123.556970098999955, 49.40594559900007 ], [ -123.557507821999948, 49.405937455000121 ], [ -123.558903173999937, 49.405916311000055 ], [ -123.560401738999985, 49.405893069000065 ], [ -123.56073262399994, 49.405887925000052 ], [ -123.560844517999968, 49.405886189000036 ], [ -123.561693906999949, 49.405899088000069 ], [ -123.562307216999926, 49.405929516000114 ], [ -123.562591182999967, 49.405943572000041 ], [ -123.562612170999969, 49.406378253000121 ], [ -123.562629094999949, 49.406729195000075 ], [ -123.562678115999972, 49.407746119000109 ], [ -123.56273126399999, 49.40884804100007 ], [ -123.561681559999911, 49.408824409000033 ], [ -123.560992977999902, 49.40882775200005 ], [ -123.56099227599999, 49.408766259000096 ], [ -123.55888433599992, 49.408718761000088 ], [ -123.558878749999977, 49.408824566000135 ], [ -123.558511508999956, 49.408816286000096 ], [ -123.558517896999916, 49.409379436000073 ], [ -123.556450203999972, 49.409389405000034 ], [ -123.556445307, 49.408956010000082 ], [ -123.556393521999922, 49.408954842000121 ], [ -123.556373578999967, 49.409332226000096 ], [ -123.554794912999952, 49.409296591000015 ], [ -123.55479605, 49.40939735300006 ], [ -123.554102087999951, 49.409400681000079 ], [ -123.554066827999975, 49.410067280000071 ], [ -123.552224785999954, 49.41002565900007 ], [ -123.552155324999887, 49.411337823000082 ], [ -123.549638589999986, 49.411280907000069 ], [ -123.549626833000019, 49.411502784000056 ], [ -123.547011704999932, 49.411443581000107 ], [ -123.546977659999953, 49.41208534800009 ], [ -123.546523848999954, 49.41207506800005 ], [ -123.546475689999923, 49.412982658000047 ], [ -123.54615096, 49.412975301000124 ], [ -123.546156627999949, 49.413486249000137 ], [ -123.54545225899993, 49.413489574000018 ], [ -123.545448884999985, 49.413553146000041 ], [ -123.545310626999978, 49.416157377000062 ], [ -123.543841569999969, 49.416124073000063 ], [ -123.54383157499997, 49.416312214000179 ], [ -123.543147541999971, 49.416296699000092 ], [ -123.543113482999971, 49.416937630000071 ], [ -123.541321632999953, 49.416896968000096 ], [ -123.54130412499994, 49.417226174000064 ], [ -123.540712870999954, 49.417212750000047 ], [ -123.535798658999965, 49.417101056000085 ], [ -123.535804072999937, 49.416999492000066 ], [ -123.534320012999927, 49.41696571700006 ], [ -123.53436469099999, 49.416127942000045 ], [ -123.534020682999966, 49.416120110000115 ], [ -123.534018770999921, 49.416155954000097 ], [ -123.53046790399999, 49.416075048000032 ], [ -123.530469873, 49.416257785000091 ], [ -123.531297068999933, 49.41625398800003 ], [ -123.531311633999962, 49.417603174000156 ], [ -123.53048441699994, 49.417606972000073 ], [ -123.530484919999978, 49.417653805000043 ], [ -123.530487013999959, 49.417848004000042 ], [ -123.531371542, 49.417868168000062 ], [ -123.531276579999954, 49.419646544000059 ], [ -123.531663641999941, 49.419655365000061 ], [ -123.531598347999946, 49.420878241000011 ], [ -123.531678515999928, 49.420880068000031 ], [ -123.531593840999946, 49.422465868000067 ], [ -123.532869970999982, 49.422494940000028 ], [ -123.532677987999975, 49.426091860000078 ], [ -123.527959933999952, 49.425984300000046 ], [ -123.527890544999977, 49.425012672000065 ], [ -123.52775649699997, 49.424983635000025 ], [ -123.527622502000014, 49.424954609000082 ], [ -123.527488488999921, 49.424925560000098 ], [ -123.5273544409999, 49.424896523000051 ], [ -123.527230158999913, 49.424869601000125 ] ], [ [ -123.519380129999917, 49.416978959000069 ], [ -123.519390253999973, 49.416790279000089 ], [ -123.517652882, 49.416750473000064 ], [ -123.517659662999961, 49.417395245000144 ], [ -123.518291470999927, 49.417392415000016 ], [ -123.518314974999953, 49.41695455900004 ], [ -123.519380129999917, 49.416978959000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29545417", "BldgCostT": "20166667", "sL_LossRatio": "0.821991618439433", "sL_AssetLoss": "150330", "sL_BldgLoss": "123570", "sL_StrLoss": "80710", "sL_NStrLoss": "42860", "sL_ContLoss": "26760", "geom_point": "0101000020E6100000CDF49E0C86F15EC04F2204DC5ABC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.770387796999927, 49.474455556000102 ], [ -123.77105355, 49.472356131000083 ], [ -123.770268685999923, 49.471776731000077 ], [ -123.770122400999966, 49.471671449000027 ], [ -123.77012849299993, 49.470622998000088 ], [ -123.770897586999965, 49.470500397000123 ], [ -123.771563638999936, 49.47047628100006 ], [ -123.772082955999949, 49.470520245000039 ], [ -123.77342207399991, 49.470785399000079 ], [ -123.773761841999914, 49.470804972000067 ], [ -123.774147015, 49.470827276000065 ], [ -123.774889065999929, 49.470744394000072 ], [ -123.775283801999976, 49.470653469000077 ], [ -123.777155464000018, 49.47002931600008 ], [ -123.777972826999971, 49.469761776000034 ], [ -123.777862993999975, 49.472044313000062 ], [ -123.776837986999908, 49.472023306000118 ], [ -123.776836753999945, 49.472048938000057 ], [ -123.773313410999933, 49.471976658000074 ], [ -123.773319556999937, 49.472367019000096 ], [ -123.771663355, 49.472378081000031 ], [ -123.771671832999942, 49.472917724000062 ], [ -123.77138146399993, 49.472919662000017 ], [ -123.771368435999975, 49.473189598000026 ], [ -123.771676071999963, 49.473187546000069 ], [ -123.771688789, 49.473997011000066 ], [ -123.770860660000011, 49.474002534000171 ], [ -123.770864895999949, 49.474272355000103 ], [ -123.770450827999966, 49.474275114000086 ], [ -123.770467758999956, 49.475354401000068 ], [ -123.77039593399995, 49.475354879000058 ], [ -123.770387796999927, 49.474455556000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15697917", "BldgCostT": "10616667", "sL_LossRatio": "0.775558674295585", "sL_AssetLoss": "92630", "sL_BldgLoss": "71840", "sL_StrLoss": "42400", "sL_NStrLoss": "29440", "sL_ContLoss": "20790", "geom_point": "0101000020E6100000407A58E260F15EC05B8C0D1F89BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.770426467999982, 49.480451828000113 ], [ -123.770434461999969, 49.479613085000075 ], [ -123.770428607999975, 49.478966019000033 ], [ -123.771684065999949, 49.47899181700005 ], [ -123.771668606999953, 49.479312134000061 ], [ -123.77272304799996, 49.479333790000041 ], [ -123.772670997, 49.48041273600009 ], [ -123.772698115999958, 49.480413294000115 ], [ -123.772599926999973, 49.482448509000044 ], [ -123.771436861999973, 49.482432523000057 ], [ -123.770548291999901, 49.482393212000098 ], [ -123.770426467999982, 49.480451828000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237248926", "BldgCostT": "159967452", "sL_LossRatio": "0.849351104875482", "sL_AssetLoss": "1037764", "sL_BldgLoss": "881426", "sL_StrLoss": "600049", "sL_NStrLoss": "281377", "sL_ContLoss": "156338", "geom_point": "0101000020E610000094F760086FF25EC03CE9011C10BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.787432469999956, 49.482361336000046 ], [ -123.78745538699999, 49.481883115000102 ], [ -123.787444541999932, 49.481882894000094 ], [ -123.78747839199994, 49.481176540000078 ], [ -123.786711755999988, 49.481181758000083 ], [ -123.786707432999947, 49.480911937000023 ], [ -123.786293311999955, 49.480914752000054 ], [ -123.786267388999988, 49.479295829000144 ], [ -123.784610959, 49.479307077000044 ], [ -123.784593714999943, 49.478227795000087 ], [ -123.785836010999944, 49.478219362000075 ], [ -123.785827375999958, 49.477679720000026 ], [ -123.78502287699996, 49.477685183000055 ], [ -123.785006127999978, 49.478034321000017 ], [ -123.779492783999942, 49.477921596000023 ], [ -123.779665761999965, 49.474324535000051 ], [ -123.780202951999939, 49.474335531000101 ], [ -123.780336153999954, 49.471564540000038 ], [ -123.780189101999923, 49.471561531000141 ], [ -123.780204649999959, 49.47123806900003 ], [ -123.779694103999987, 49.471227618000079 ], [ -123.779793228999949, 49.469165889000053 ], [ -123.780056600999956, 49.469079673000131 ], [ -123.780893264000014, 49.468891575000072 ], [ -123.781187389999943, 49.469287281000064 ], [ -123.781404776999963, 49.469441192000041 ], [ -123.782276537999934, 49.46978751600011 ], [ -123.782988612999972, 49.470070401000115 ], [ -123.784725628999951, 49.470761256000038 ], [ -123.785310110999944, 49.470993709000084 ], [ -123.78496311399995, 49.471382707 ], [ -123.784457721999956, 49.471795396000033 ], [ -123.783763994000012, 49.472365504000066 ], [ -123.78292644699999, 49.472645479000064 ], [ -123.782437676999976, 49.472808858000064 ], [ -123.782310104999922, 49.472851500000061 ], [ -123.782337953999942, 49.474139328000092 ], [ -123.782360435999962, 49.475107445000098 ], [ -123.78536753899999, 49.47511667100008 ], [ -123.787349657999926, 49.475123822000107 ], [ -123.787948139999969, 49.475125684000055 ], [ -123.790839571999982, 49.475134652000108 ], [ -123.791813341999983, 49.475139177000095 ], [ -123.792399083999982, 49.475064691000036 ], [ -123.792415485, 49.475064961000051 ], [ -123.793557022999948, 49.475083746000067 ], [ -123.794428716999931, 49.47511773500009 ], [ -123.794832538999984, 49.475155620000059 ], [ -123.796399012999984, 49.475171207000116 ], [ -123.796409863999898, 49.476503649000051 ], [ -123.796380631999952, 49.477576492000054 ], [ -123.796372047999924, 49.477890965000022 ], [ -123.796369252999952, 49.477993927000064 ], [ -123.796349162999917, 49.47872937700005 ], [ -123.796285210999912, 49.482236791000034 ], [ -123.792959186999909, 49.482338407000022 ], [ -123.792922555999922, 49.482335681000109 ], [ -123.792625121999933, 49.482313595000051 ], [ -123.792611224999973, 49.482313895000082 ], [ -123.791348486999965, 49.482339480000107 ], [ -123.790739786999936, 49.48235179200001 ], [ -123.790372248999986, 49.482337355000055 ], [ -123.789785411999915, 49.482314309000074 ], [ -123.788629747999977, 49.482337418000043 ], [ -123.787432469999956, 49.482361336000046 ] ], [ [ -123.796223274999974, 49.480296300000084 ], [ -123.796205949999916, 49.479227845000047 ], [ -123.795377737999928, 49.479233543000078 ], [ -123.795403960999963, 49.480852462000037 ], [ -123.79457572099993, 49.480858155000099 ], [ -123.794580086999986, 49.481127975000113 ], [ -123.794165965, 49.481130819000022 ], [ -123.794170328999925, 49.481400638000125 ], [ -123.79400886799999, 49.481401747000056 ], [ -123.79397017299999, 49.482211562000018 ], [ -123.794722236000013, 49.482206398000095 ], [ -123.79474272600001, 49.481777426000036 ], [ -123.795616990999946, 49.481795196000036 ], [ -123.79568907399999, 49.480285446000046 ], [ -123.796223274999974, 49.480296300000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.943526699961583", "sL_AssetLoss": "13015", "sL_BldgLoss": "12280", "sL_StrLoss": "9820", "sL_NStrLoss": "2460", "sL_ContLoss": "735", "geom_point": "0101000020E61000007FE9612659F15EC02D54C40A33BD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.770522789999944, 49.478862083000145 ], [ -123.770518556999974, 49.478592261000102 ], [ -123.770425233, 49.478592883000033 ], [ -123.770424054999964, 49.47846274500008 ], [ -123.770413024999968, 49.477243715000064 ], [ -123.770911482999978, 49.47724039400007 ], [ -123.770915717, 49.477510215000081 ], [ -123.771743903999976, 49.477504692000096 ], [ -123.771765105999989, 49.478853800000053 ], [ -123.770522789999944, 49.478862083000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "651328817", "BldgCostT": "406849080", "sL_LossRatio": "0.688987510143569", "sL_AssetLoss": "3145096.2", "sL_BldgLoss": "2166932", "sL_StrLoss": "953254", "sL_NStrLoss": "1213678", "sL_ContLoss": "978164.2", "geom_point": "0101000020E610000038D879C0E1F05EC08FA408FCA3BC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.761556408999979, 49.479138598000077 ], [ -123.760659050999934, 49.478705885000096 ], [ -123.760569521999955, 49.478662697000111 ], [ -123.760442505999919, 49.478579983000067 ], [ -123.760136986999896, 49.478279301000107 ], [ -123.761450121999985, 49.478292786000047 ], [ -123.762264866999956, 49.478301136000042 ], [ -123.763134494, 49.478310037000078 ], [ -123.763169391999924, 49.478310397000051 ], [ -123.763794616999931, 49.477793999000085 ], [ -123.763771080999959, 49.477509903000083 ], [ -123.763757197999894, 49.477490942000024 ], [ -123.763712884999933, 49.477430403000028 ], [ -123.76357365199999, 49.477165068000055 ], [ -123.763449295999962, 49.476928230000063 ], [ -123.763424887999946, 49.476881712000093 ], [ -123.763420711999984, 49.476811326000053 ], [ -123.763396787999937, 49.476408504000034 ], [ -123.762782994999966, 49.476404910000099 ], [ -123.762799988999959, 49.475626592000083 ], [ -123.762810463, 49.475126313000068 ], [ -123.76282930099994, 49.474224806000052 ], [ -123.762831116999919, 49.473799147000079 ], [ -123.759090492999974, 49.473744783 ], [ -123.759098513, 49.473295293000049 ], [ -123.756333285999943, 49.473278600000121 ], [ -123.756320502999955, 49.474166798000056 ], [ -123.755460004000014, 49.474158892000034 ], [ -123.754541584999956, 49.474150709000085 ], [ -123.753969289999986, 49.474145165000088 ], [ -123.753770982999953, 49.474195059000103 ], [ -123.753460621, 49.474194019000045 ], [ -123.75344395, 49.474088512000066 ], [ -123.753344634999934, 49.473458888000025 ], [ -123.753474916999949, 49.473389588000074 ], [ -123.753474400999934, 49.47271989900004 ], [ -123.753498993999983, 49.471309364000042 ], [ -123.753505979999943, 49.470908485000074 ], [ -123.753408290999914, 49.470753706000075 ], [ -123.754927615999989, 49.47063480200007 ], [ -123.758647099000015, 49.470169099000081 ], [ -123.762517092999971, 49.469549491000073 ], [ -123.763012608999972, 49.469429896000115 ], [ -123.76342200299996, 49.469211989000051 ], [ -123.763838402999937, 49.469307403000123 ], [ -123.764088704, 49.46944980500016 ], [ -123.764543617999934, 49.4694555 ], [ -123.764927207999989, 49.469165008000047 ], [ -123.765176204999946, 49.469226193000083 ], [ -123.765234806999942, 49.469469782000026 ], [ -123.765470497999942, 49.469495397000053 ], [ -123.767659709999975, 49.469137905000068 ], [ -123.767852683999976, 49.469173494000103 ], [ -123.76792528699994, 49.469451208000102 ], [ -123.76806392099995, 49.469513905000071 ], [ -123.769031089999942, 49.46955240300008 ], [ -123.770083703, 49.469805907000072 ], [ -123.770176544, 49.469807663000054 ], [ -123.770180231999973, 49.469997972000066 ], [ -123.770178885999925, 49.470024047000059 ], [ -123.77012849299993, 49.470622998000088 ], [ -123.770122400999966, 49.471671449000027 ], [ -123.770268685999923, 49.471776731000077 ], [ -123.77105355, 49.472356131000083 ], [ -123.770387796999927, 49.474455556000102 ], [ -123.77039593399995, 49.475354879000058 ], [ -123.768811454999963, 49.475365422000067 ], [ -123.76881568, 49.475635244000031 ], [ -123.767987521999956, 49.475640746000082 ], [ -123.767995960999912, 49.476180389000064 ], [ -123.765925544999959, 49.476194117000034 ], [ -123.765929753, 49.476463939000112 ], [ -123.764687496999926, 49.476472158000036 ], [ -123.764705272999919, 49.47761384000011 ], [ -123.766909363999957, 49.477659239000076 ], [ -123.766889173999928, 49.47807668100004 ], [ -123.767197299999935, 49.478074638000081 ], [ -123.767193083999985, 49.47780481700002 ], [ -123.767607181999949, 49.477802069000056 ], [ -123.767602962999916, 49.477532246000116 ], [ -123.769259341999884, 49.477521243000055 ], [ -123.769255114999964, 49.477251421000091 ], [ -123.770413024999968, 49.477243715000064 ], [ -123.770424054999964, 49.47846274500008 ], [ -123.770425233, 49.478592883000033 ], [ -123.770104452999988, 49.478595019000124 ], [ -123.770108684999954, 49.478864841000046 ], [ -123.769694578999975, 49.478867597000011 ], [ -123.769695884999976, 49.478950956000055 ], [ -123.770428607999975, 49.478966019000033 ], [ -123.770434461999969, 49.479613085000075 ], [ -123.770245367999934, 49.479613108000066 ], [ -123.768816057999913, 49.479710120000085 ], [ -123.764790314999942, 49.480253899000083 ], [ -123.764463603999957, 49.480356807000064 ], [ -123.764071491999985, 49.480480289000099 ], [ -123.763951567999953, 49.480500672000076 ], [ -123.763168608999933, 49.48063370800007 ], [ -123.762991592999981, 49.480698403000112 ], [ -123.762706513999973, 49.480404501000031 ], [ -123.76270209299993, 49.480395925000067 ], [ -123.762261422999956, 49.479538403000021 ], [ -123.76169828699993, 49.479219055000051 ], [ -123.761556408999979, 49.479138598000077 ] ], [ [ -123.767624472999955, 49.478908346000019 ], [ -123.767619832999955, 49.478611534000095 ], [ -123.76720573099999, 49.47861428100007 ], [ -123.767210190999961, 49.478899819000041 ], [ -123.767624472999955, 49.478908346000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "405539665", "BldgCostT": "241143592", "sL_LossRatio": "0.665560073687789", "sL_AssetLoss": "3291183", "sL_BldgLoss": "2190480", "sL_StrLoss": "892506", "sL_NStrLoss": "1297974", "sL_ContLoss": "1100703", "geom_point": "0101000020E61000003347F1BF8FE15EC00547919478B44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.513723039999917, 49.414216866000075 ], [ -123.513709693999914, 49.413568290000065 ], [ -123.512938002999988, 49.413568587000071 ], [ -123.512932006999932, 49.413347888000033 ], [ -123.512923608999969, 49.413067696000027 ], [ -123.513692789999979, 49.4130627810001 ], [ -123.513682452999944, 49.412761022000062 ], [ -123.513657897999934, 49.412045504000119 ], [ -123.513603388999925, 49.411060188000114 ], [ -123.513569412999928, 49.410411202000077 ], [ -123.513514504999975, 49.409415757000026 ], [ -123.513479833999952, 49.408786259000131 ], [ -123.513463413999901, 49.408488300000052 ], [ -123.513394590999923, 49.407308151000066 ], [ -123.513362719999989, 49.406824826000026 ], [ -123.514199949999949, 49.406807138000062 ], [ -123.515661933999951, 49.406777657000134 ], [ -123.518877802999967, 49.406747915000096 ], [ -123.520445491999951, 49.406725251000076 ], [ -123.521070034, 49.40671581800008 ], [ -123.521718074999953, 49.406706044000046 ], [ -123.521912818999937, 49.406703122000089 ], [ -123.522188724999936, 49.406698950000106 ], [ -123.522972182999951, 49.406687160000068 ], [ -123.52314941799996, 49.406684499000058 ], [ -123.523425359999962, 49.406680634000061 ], [ -123.524420591999942, 49.406666690000101 ], [ -123.52520503099997, 49.406656115000096 ], [ -123.525764387, 49.406648563000061 ], [ -123.525679194999952, 49.404415712000038 ], [ -123.526389744999946, 49.404431946000017 ], [ -123.52639553099999, 49.404323781000059 ], [ -123.527504814999986, 49.404315248000103 ], [ -123.527557292999987, 49.4056694820001 ], [ -123.528262831999925, 49.40565657600014 ], [ -123.528264323999935, 49.406093450000135 ], [ -123.52999756299999, 49.406048960000128 ], [ -123.530004782999953, 49.406203389000062 ], [ -123.531753495999951, 49.406166178000049 ], [ -123.53177068799998, 49.405626290000015 ], [ -123.532901651999964, 49.405618902000114 ], [ -123.532909438999951, 49.405366666000106 ], [ -123.53507482699996, 49.405344097000103 ], [ -123.535136675999937, 49.405476052000054 ], [ -123.535225140999941, 49.405538940000042 ], [ -123.53531588, 49.405603483000057 ], [ -123.535471412999968, 49.405787075 ], [ -123.535528586999973, 49.405954952000037 ], [ -123.535541198999923, 49.406329662000076 ], [ -123.535545636999956, 49.406462242000067 ], [ -123.53426884, 49.406490832000017 ], [ -123.534418509999966, 49.408957690000122 ], [ -123.536783891999946, 49.409032811000074 ], [ -123.537068873999942, 49.409041843000075 ], [ -123.537225571999983, 49.410484821000054 ], [ -123.536272190999952, 49.410511899000085 ], [ -123.535028020999945, 49.410547217000065 ], [ -123.53514747, 49.411613310000128 ], [ -123.533359328999907, 49.411686331000048 ], [ -123.533410117999949, 49.412633472000053 ], [ -123.529440309999956, 49.412758265000051 ], [ -123.52953032299996, 49.413970904000088 ], [ -123.527903303999921, 49.414009296000053 ], [ -123.526607601999942, 49.414039837000068 ], [ -123.523633509999954, 49.414109905000032 ], [ -123.519710981999978, 49.414203808000053 ], [ -123.518370847999947, 49.41420676300001 ], [ -123.518088935999941, 49.414207384000072 ], [ -123.516861461999923, 49.414210067000035 ], [ -123.516544347999925, 49.414210772000075 ], [ -123.51511055499995, 49.414213903000082 ], [ -123.513723039999917, 49.414216866000075 ] ], [ [ -123.520169636000034, 49.411923617000127 ], [ -123.52027529799993, 49.409953387000087 ], [ -123.520890078999969, 49.409967463000015 ], [ -123.520888570999901, 49.409824924000063 ], [ -123.520061481999946, 49.409828647000097 ], [ -123.520058631999987, 49.40955880900006 ], [ -123.519645087999962, 49.409560668000097 ], [ -123.519642240999971, 49.409290830000053 ], [ -123.519228700999975, 49.40929268800005 ], [ -123.51923154499994, 49.409562526000073 ], [ -123.518818003999982, 49.409564382000063 ], [ -123.518826533999928, 49.410373897000106 ], [ -123.518412985999973, 49.410375751000089 ], [ -123.518415827999945, 49.410645590000051 ], [ -123.518002274999958, 49.410647443000045 ], [ -123.518005113999905, 49.410917281000131 ], [ -123.517790746999978, 49.410918242000072 ], [ -123.517776257999969, 49.41118815699999 ], [ -123.518007953999984, 49.411187119000097 ], [ -123.51801523099999, 49.411878711000028 ], [ -123.519106094999984, 49.411903707000121 ], [ -123.519106332999954, 49.41189926400007 ], [ -123.520169636000034, 49.411923617000127 ] ], [ [ -123.526670597999967, 49.409528881000071 ], [ -123.526598409999949, 49.410878465000039 ], [ -123.527103294999932, 49.410876165000026 ], [ -123.52709462599999, 49.410066652000076 ], [ -123.528335264999924, 49.410060989000129 ], [ -123.528332369999973, 49.409791151000043 ], [ -123.527091736999964, 49.409796813000085 ], [ -123.527088847999934, 49.409526976000123 ], [ -123.526670597999967, 49.409528881000071 ] ], [ [ -123.529989448999956, 49.410053419000093 ], [ -123.529993178, 49.410399879000124 ], [ -123.531234191999928, 49.410428177000014 ], [ -123.531233, 49.410317564000081 ], [ -123.532060094999963, 49.410313761000097 ], [ -123.532057035999983, 49.410030763000066 ], [ -123.530402364999958, 49.409993041000099 ], [ -123.53040299599999, 49.410051522000039 ], [ -123.529989448999956, 49.410053419000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150093136", "BldgCostT": "95242079", "sL_LossRatio": "0.69295925734249", "sL_AssetLoss": "1858838", "sL_BldgLoss": "1288099", "sL_StrLoss": "577719", "sL_NStrLoss": "710380", "sL_ContLoss": "570739", "geom_point": "0101000020E61000003ACA7695E0E15EC09F88B81807B34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.530004782999953, 49.406203389000062 ], [ -123.52999756299999, 49.406048960000128 ], [ -123.528264323999935, 49.406093450000135 ], [ -123.528262831999925, 49.40565657600014 ], [ -123.527557292999987, 49.4056694820001 ], [ -123.527504814999986, 49.404315248000103 ], [ -123.52639553099999, 49.404323781000059 ], [ -123.526487021999955, 49.402613179000085 ], [ -123.525307059999989, 49.402586217000106 ], [ -123.525357323999941, 49.401646829000093 ], [ -123.524523319999929, 49.401627764000054 ], [ -123.524527100999975, 49.401982793000087 ], [ -123.524158904999965, 49.401984462000065 ], [ -123.523286664999958, 49.401988413 ], [ -123.523282531999939, 49.401599388000101 ], [ -123.522455339999979, 49.401580462000055 ], [ -123.522465433999969, 49.40253182900009 ], [ -123.522181371999963, 49.40253311300004 ], [ -123.522144007999884, 49.403230494000091 ], [ -123.524172858999975, 49.403276906000038 ], [ -123.524444303999957, 49.403283113000072 ], [ -123.52441201100001, 49.403886391000128 ], [ -123.524461141999922, 49.403887514000097 ], [ -123.524437099999915, 49.404336641000057 ], [ -123.524325753999975, 49.404337299000169 ], [ -123.524174301999892, 49.403406713000031 ], [ -123.521197075999964, 49.403292764000092 ], [ -123.52094728899999, 49.400397323000107 ], [ -123.520949004, 49.40039739000008 ], [ -123.521608094999962, 49.400412916000036 ], [ -123.521356816999969, 49.397953876000017 ], [ -123.524116324999966, 49.398017020000033 ], [ -123.524484952999927, 49.39802544900008 ], [ -123.524478245999944, 49.397395540000048 ], [ -123.525576101999945, 49.397390556000047 ], [ -123.525601847999937, 49.396909284000046 ], [ -123.525359010999964, 49.396903733000052 ], [ -123.525433989999939, 49.395502240000027 ], [ -123.524458131999936, 49.395506670000017 ], [ -123.524449511999975, 49.394697154000056 ], [ -123.525477307999978, 49.394692489000136 ], [ -123.525520625999945, 49.393882736000059 ], [ -123.524440893999952, 49.393887639000042 ], [ -123.524437536999955, 49.393572272000014 ], [ -123.523979629999985, 49.393561799000061 ], [ -123.521599979999948, 49.393507342000063 ], [ -123.521630713999954, 49.392933698 ], [ -123.521169298999936, 49.392923133000075 ], [ -123.521189128999978, 49.392553085000017 ], [ -123.521119332999973, 49.392553398000111 ], [ -123.521116080999917, 49.392245862000053 ], [ -123.52113791, 49.392245585000076 ], [ -123.523378446999942, 49.392216940000061 ], [ -123.523392214999973, 49.392216771000072 ], [ -123.523695589999946, 49.392212893000107 ], [ -123.523885515999922, 49.392187935000031 ], [ -123.52429621099995, 49.392133900000125 ], [ -123.524318582, 49.392133345000055 ], [ -123.52600224399994, 49.392090962000147 ], [ -123.526730249999943, 49.392079033000087 ], [ -123.527396540999945, 49.392068086000037 ], [ -123.52939341199999, 49.392035187000054 ], [ -123.530410092999915, 49.39201617300003 ], [ -123.532063237999978, 49.391985210000087 ], [ -123.534597801999951, 49.391937702000071 ], [ -123.53483182399998, 49.391936489000109 ], [ -123.535093655999944, 49.391935161000063 ], [ -123.535859649999949, 49.391931238000041 ], [ -123.535029207999969, 49.392837088000114 ], [ -123.535128595999964, 49.394668015 ], [ -123.535128907999962, 49.394677012000038 ], [ -123.535192335999952, 49.396580217000185 ], [ -123.535237939999959, 49.39794736000006 ], [ -123.535248128999953, 49.398253103000073 ], [ -123.535279648999932, 49.399200248000106 ], [ -123.535402490999942, 49.401082998000057 ], [ -123.535454487999971, 49.40276836200006 ], [ -123.535474718999978, 49.403423694000061 ], [ -123.53507482699996, 49.405344097000103 ], [ -123.532909438999951, 49.405366666000106 ], [ -123.532901651999964, 49.405618902000114 ], [ -123.53177068799998, 49.405626290000015 ], [ -123.531753495999951, 49.406166178000049 ], [ -123.530004782999953, 49.406203389000062 ] ], [ [ -123.534349564999985, 49.401867264000018 ], [ -123.53435583000001, 49.401749731000045 ], [ -123.53313658899998, 49.401721959000028 ], [ -123.533130319999941, 49.401839492000093 ], [ -123.534349564999985, 49.401867264000018 ] ], [ [ -123.533065789999966, 49.401619244000123 ], [ -123.533113776999954, 49.400719602000038 ], [ -123.532978663, 49.400716523000064 ], [ -123.53298131299999, 49.400666846000064 ], [ -123.532981029999988, 49.400666840000063 ], [ -123.532930391999983, 49.401616159000106 ], [ -123.533065789999966, 49.401619244000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.998943617371895", "sL_AssetLoss": "313.4281", "sL_BldgLoss": "313.097", "sL_StrLoss": "309.151", "sL_NStrLoss": "3.946", "sL_ContLoss": "0.3311", "geom_point": "0101000020E61000008C2A68FFA8A55EC0AB21D4B960764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.593855493999968, 50.92875582900006 ], [ -122.593886878999925, 50.928344732000035 ], [ -122.592580004999945, 50.928305034000083 ], [ -122.588550359999942, 50.928182531000118 ], [ -122.588635263, 50.927072122000041 ], [ -122.586375956999916, 50.927003375000091 ], [ -122.586405516999889, 50.926616998000085 ], [ -122.585536852999923, 50.92659055500004 ], [ -122.585584471999965, 50.925968289000068 ], [ -122.585182380999953, 50.925956046000039 ], [ -122.58521201399995, 50.925568861000023 ], [ -122.585216892999981, 50.925505107000063 ], [ -122.585037405999969, 50.92549964200002 ], [ -122.585061652000022, 50.925182849000066 ], [ -122.584476506999948, 50.925165029000048 ], [ -122.584529321999923, 50.924475063000045 ], [ -122.58368382499999, 50.924449309000067 ], [ -122.583706518999961, 50.924152904000032 ], [ -122.582750809999965, 50.924123785000049 ], [ -122.582783020999926, 50.923703202000091 ], [ -122.58207971399996, 50.923681767000097 ], [ -122.582101137, 50.923402084000053 ], [ -122.581805122999981, 50.923393062000045 ], [ -122.581823168999961, 50.923157486000036 ], [ -122.581208416999985, 50.923138745000102 ], [ -122.581217708999972, 50.923017468000047 ], [ -122.580909394999978, 50.923008068000058 ], [ -122.57945456099999, 50.922963700000075 ], [ -122.57970458699999, 50.919701847000049 ], [ -122.579539384999947, 50.919696807000044 ], [ -122.579552012999969, 50.919532038000092 ], [ -122.578753865999943, 50.919507687000078 ], [ -122.578790230999985, 50.919033357000089 ], [ -122.578187776999954, 50.919014973000067 ], [ -122.578240344, 50.918329399000129 ], [ -122.577721406999984, 50.91831356200008 ], [ -122.577764422999934, 50.917752628000123 ], [ -122.576250991000023, 50.91770642400008 ], [ -122.57626793299994, 50.917485592000077 ], [ -122.575423475999955, 50.91745980300005 ], [ -122.57544334, 50.917200939000097 ], [ -122.572985404999912, 50.917125838000118 ], [ -122.572999680999899, 50.916939938000134 ], [ -122.57192588, 50.916907111000029 ], [ -122.572047988999927, 50.915317389000101 ], [ -122.572186714999972, 50.915344197000124 ], [ -122.573020591999921, 50.915930997000068 ], [ -122.574097312999967, 50.916402386000087 ], [ -122.574663092999955, 50.916845287000086 ], [ -122.575526994999976, 50.917217004000079 ], [ -122.57602729499996, 50.917030498000067 ], [ -122.576652388999932, 50.917023399000094 ], [ -122.578228591999931, 50.917397912000077 ], [ -122.578723382999954, 50.91763290800003 ], [ -122.579162403999987, 50.917950484000123 ], [ -122.579767378999961, 50.918635596000065 ], [ -122.57997780799991, 50.919004398000055 ], [ -122.579986109999965, 50.919643902000104 ], [ -122.580153611999918, 50.92001279700002 ], [ -122.580704890999939, 50.92049129400008 ], [ -122.581171781999927, 50.920736303000048 ], [ -122.582763617, 50.92100260100004 ], [ -122.583687203999915, 50.920969797000062 ], [ -122.58428338399996, 50.921079492000111 ], [ -122.586128198999944, 50.92184149200007 ], [ -122.588404278999974, 50.923477892000108 ], [ -122.58866609899998, 50.924251201000082 ], [ -122.588961907999931, 50.924612989000089 ], [ -122.591058007999948, 50.925698188000041 ], [ -122.592244792999935, 50.926646690000034 ], [ -122.59311300899995, 50.926847506000065 ], [ -122.593848492999925, 50.927227809000037 ], [ -122.595465693, 50.927808911000064 ], [ -122.596388222999934, 50.928001199000057 ], [ -122.597313285999974, 50.927986903000068 ], [ -122.59845450399996, 50.927801797000029 ], [ -122.599062691999961, 50.92801110200007 ], [ -122.599065516999957, 50.927867308000053 ], [ -122.598373597999938, 50.927136688000076 ], [ -122.598308402999976, 50.926497185000052 ], [ -122.598152579999947, 50.926307799000092 ], [ -122.598102658999949, 50.92627788900009 ], [ -122.601198025999977, 50.926371743000047 ], [ -122.600924693999929, 50.929959656000044 ], [ -122.599468806999937, 50.929915523000041 ], [ -122.599460136999966, 50.930029291000082 ], [ -122.598114587999959, 50.929988486000063 ], [ -122.597941343999977, 50.929983231000044 ], [ -122.593771448999959, 50.929856666000056 ], [ -122.593855493999968, 50.92875582900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999633425710054", "sL_AssetLoss": "136.398", "sL_BldgLoss": "136.348", "sL_StrLoss": "136", "sL_NStrLoss": "0.348", "sL_ContLoss": "0.05", "geom_point": "0101000020E6100000CBF3BFE083B15EC0E01ED7C8A6724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771420850999917, 50.896372678000041 ], [ -122.771530666, 50.894853806000093 ], [ -122.771504386999979, 50.894853050000066 ], [ -122.771636188999963, 50.893029957000145 ], [ -122.772822095999942, 50.891923087000073 ], [ -122.773555794999979, 50.893012600000077 ], [ -122.774088900999956, 50.89432568900002 ], [ -122.774421589, 50.894596667000044 ], [ -122.77601589799994, 50.895895191000108 ], [ -122.777841959999932, 50.896714574000079 ], [ -122.777775867999935, 50.89763045200003 ], [ -122.777028520999949, 50.897608963000074 ], [ -122.777026138999958, 50.897641970000059 ], [ -122.772417309999952, 50.897509342000099 ], [ -122.772416265999979, 50.897723524000057 ], [ -122.770709885999963, 50.897720186000107 ], [ -122.770713301999976, 50.897024785000063 ], [ -122.770713860999962, 50.896910853000094 ], [ -122.771140447999983, 50.896911690000131 ], [ -122.771143092, 50.896372135000043 ], [ -122.771420850999917, 50.896372678000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4598917", "BldgCostT": "3171667", "sL_LossRatio": "0.999606377119733", "sL_AssetLoss": "978.8557", "sL_BldgLoss": "978.4704", "sL_StrLoss": "976.0204", "sL_NStrLoss": "2.45", "sL_ContLoss": "0.3853", "geom_point": "0101000020E6100000E125BC2D66B75EC0F94CD5C16A6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.847184151999912, 50.877538326000064 ], [ -122.847297969999914, 50.875925484000057 ], [ -122.848255376999987, 50.875952424000047 ], [ -122.84827414399993, 50.875686406000092 ], [ -122.848882441999976, 50.875703519000069 ], [ -122.848925451999961, 50.875093722000067 ], [ -122.850092089999976, 50.875126532000131 ], [ -122.850130132999979, 50.874586950000072 ], [ -122.851051837999975, 50.87461286300006 ], [ -122.851064001999987, 50.874440272000122 ], [ -122.85286950699999, 50.874491010000035 ], [ -122.852892942999958, 50.874158315000102 ], [ -122.85503366899998, 50.874218436000042 ], [ -122.855095798999955, 50.873335767000064 ], [ -122.85686811799998, 50.873385510000077 ], [ -122.856894343999969, 50.873012710000118 ], [ -122.858056006999931, 50.873045298000065 ], [ -122.85806009799991, 50.872987138000049 ], [ -122.85866404099994, 50.873004076000065 ], [ -122.858664748999942, 50.872770206000077 ], [ -122.86043803499993, 50.872772340000019 ], [ -122.860449519, 50.872608896000081 ], [ -122.861223387999956, 50.872630583000031 ], [ -122.861223764999963, 50.872503495000096 ], [ -122.861650132999927, 50.872504001000053 ], [ -122.861650930999986, 50.872234221000049 ], [ -122.862503660999906, 50.872235228000108 ], [ -122.862504454999964, 50.871965448000012 ], [ -122.862930815999931, 50.871965950000067 ], [ -122.862931605999961, 50.871696169000074 ], [ -122.863784325999973, 50.871697168000026 ], [ -122.863785111999974, 50.871427387 ], [ -122.864637826999967, 50.871428380000062 ], [ -122.864640952999977, 50.870349259000086 ], [ -122.864214604999958, 50.870348764000042 ], [ -122.864216956999911, 50.869539423000042 ], [ -122.864726986999983, 50.869540014000044 ], [ -122.86549597599999, 50.869540903000093 ], [ -122.865495199999884, 50.869810684000129 ], [ -122.865921540999977, 50.869811174000091 ], [ -122.865920768999914, 50.870080954000038 ], [ -122.866047459999947, 50.870081099000096 ], [ -122.866155627999944, 50.868538825000037 ], [ -122.866850669000016, 50.868558270000072 ], [ -122.866899736999954, 50.867858441000088 ], [ -122.868710380999929, 50.86790907500005 ], [ -122.868766004999927, 50.867115285000033 ], [ -122.870723729999938, 50.86717 ], [ -122.870764153999971, 50.866592732000093 ], [ -122.871578461999917, 50.866615480000057 ], [ -122.871632361999929, 50.865845552000074 ], [ -122.872323711999954, 50.865864861000055 ], [ -122.87238118, 50.865043768000049 ], [ -122.875163346999912, 50.865121427000034 ], [ -122.87523351499999, 50.864117935000124 ], [ -122.875728939999959, 50.864131757000109 ], [ -122.875811061999968, 50.862957047000037 ], [ -122.875955751999967, 50.862961083000179 ], [ -122.876006196999967, 50.862239450000096 ], [ -122.876440826999954, 50.862251573000066 ], [ -122.876500827999976, 50.861393060000118 ], [ -122.877014303999928, 50.861407380000117 ], [ -122.877039026999938, 50.861053573000042 ], [ -122.877872472999954, 50.861076812000071 ], [ -122.877909274999979, 50.860550001000085 ], [ -122.877911022999967, 50.860524993000112 ], [ -122.877962950999915, 50.860526441000026 ], [ -122.878617909999917, 50.860544698000041 ], [ -122.878628218999978, 50.860397092000049 ], [ -122.878653520999976, 50.860034809000076 ], [ -122.879831683999953, 50.860067642000082 ], [ -122.87985609, 50.859718038000047 ], [ -122.88553691099996, 50.859876174000071 ], [ -122.885514722999915, 50.860194589000052 ], [ -122.88539763699994, 50.861874735000079 ], [ -122.885277014999971, 50.861980505000119 ], [ -122.884550002999973, 50.862222611000028 ], [ -122.883938888999978, 50.862293796000053 ], [ -122.882959391, 50.861887903000095 ], [ -122.88263400299999, 50.861842395000082 ], [ -122.882122593999924, 50.861976199000033 ], [ -122.881239593999936, 50.86242628800003 ], [ -122.879503396999951, 50.863511511000056 ], [ -122.879189095999948, 50.864096898000113 ], [ -122.879074505999981, 50.864752012000061 ], [ -122.878603894999983, 50.865444201000038 ], [ -122.878258484999904, 50.866540796000031 ], [ -122.877945898999926, 50.867072089000025 ], [ -122.877602887999927, 50.867224503000038 ], [ -122.876111590000022, 50.867168908000046 ], [ -122.875742789999961, 50.867213095000103 ], [ -122.875129777999931, 50.867490801000095 ], [ -122.874860109999986, 50.86773429600008 ], [ -122.87404559099997, 50.868910693000032 ], [ -122.872664793999917, 50.87035770300011 ], [ -122.871031924999954, 50.869860701000079 ], [ -122.870291707999968, 50.86986068300012 ], [ -122.869822601999914, 50.870084297000069 ], [ -122.869280123999943, 50.870559901000043 ], [ -122.869222420999989, 50.870820600000044 ], [ -122.869433484999917, 50.871639503000047 ], [ -122.869317406999969, 50.872907001000065 ], [ -122.869089614999922, 50.873186202000078 ], [ -122.868563716999986, 50.873194700000113 ], [ -122.867937001999934, 50.87305800200005 ], [ -122.867809409999936, 50.873149203000054 ], [ -122.867681208999983, 50.873355689000036 ], [ -122.867638003999957, 50.873876896000098 ], [ -122.868005706999924, 50.874524883000056 ], [ -122.868003113999947, 50.874750005000081 ], [ -122.867705181999938, 50.874919492000032 ], [ -122.867023483999944, 50.875071802000079 ], [ -122.86668219499991, 50.875026304000109 ], [ -122.865930798999941, 50.874530605000118 ], [ -122.865319104999969, 50.874234405000053 ], [ -122.865006998999931, 50.874205898000099 ], [ -122.864721806999938, 50.874232988000131 ], [ -122.863484908999965, 50.874698698000046 ], [ -122.8627148959999, 50.875211390000061 ], [ -122.862360493999972, 50.875237092000063 ], [ -122.86194960899995, 50.875101798000109 ], [ -122.861593011, 50.875254109000096 ], [ -122.860755119999965, 50.875208595000053 ], [ -122.860611095999971, 50.875271193000088 ], [ -122.860199913999907, 50.875208603000075 ], [ -122.860043589999947, 50.875315389000093 ], [ -122.858651297999955, 50.875268392000073 ], [ -122.858394378999961, 50.875474891000067 ], [ -122.85755439199994, 50.875556100000104 ], [ -122.856886609999918, 50.875788209000042 ], [ -122.855918886, 50.876426296000062 ], [ -122.854596977999904, 50.876433396000081 ], [ -122.854226802999946, 50.87657719500001 ], [ -122.85327201699999, 50.876890599000077 ], [ -122.852676797, 50.876745295000049 ], [ -122.852335084999979, 50.876780895000053 ], [ -122.852221699000012, 50.876879211000109 ], [ -122.85214729899991, 50.877454612000108 ], [ -122.851777081999941, 50.877750792000043 ], [ -122.850952006999961, 50.877859002000051 ], [ -122.850084488999968, 50.878135297000085 ], [ -122.849344190999929, 50.878423001000094 ], [ -122.848848099999913, 50.878485705000038 ], [ -122.848376685999952, 50.878700708000103 ], [ -122.848108086999915, 50.878853101000061 ], [ -122.847964099999956, 50.87919489400015 ], [ -122.847577709999911, 50.879724691000078 ], [ -122.84692301799997, 50.879877101000069 ], [ -122.846096796999959, 50.880342795000054 ], [ -122.845656100999975, 50.880728798000078 ], [ -122.844923535999939, 50.881335842000055 ], [ -122.843739356999905, 50.881302489000085 ], [ -122.84388546299999, 50.879234557000117 ], [ -122.843992899999975, 50.87771380800006 ], [ -122.846780138999961, 50.877792293000034 ], [ -122.84716546199995, 50.877803137000022 ], [ -122.847184151999912, 50.877538326000064 ] ], [ [ -122.865731440999966, 50.872697387000059 ], [ -122.865744671999934, 50.872508782000089 ], [ -122.865487435999981, 50.8725084860001 ], [ -122.86548691199999, 50.872690544000058 ], [ -122.865731440999966, 50.872697387000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.999432564175399", "sL_AssetLoss": "439.6973", "sL_BldgLoss": "439.4478", "sL_StrLoss": "437.0388", "sL_NStrLoss": "2.409", "sL_ContLoss": "0.2495", "geom_point": "0101000020E6100000CFF7F0B86AB65EC0AD0507C5A0714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.841371677000012, 50.890665494000068 ], [ -122.841398552000015, 50.890285507000073 ], [ -122.840734645999959, 50.890266793000109 ], [ -122.840803147999949, 50.889298401000111 ], [ -122.839226954999901, 50.889253955000093 ], [ -122.839261942999926, 50.888759549000049 ], [ -122.838658966999972, 50.888742541000113 ], [ -122.838912960999934, 50.885153901000159 ], [ -122.843193304999971, 50.885274573000082 ], [ -122.842138505999912, 50.886642104000103 ], [ -122.842222897999946, 50.886919811000034 ], [ -122.842564079999931, 50.887317198000055 ], [ -122.843626082999918, 50.888064908000018 ], [ -122.843841009999934, 50.888118984000151 ], [ -122.844152095999945, 50.88807351300008 ], [ -122.844821381999935, 50.887859797 ], [ -122.845392504999936, 50.887563600000114 ], [ -122.846101782999966, 50.887465294 ], [ -122.846486186000021, 50.887502303000133 ], [ -122.848076377999959, 50.887953794000076 ], [ -122.8491435, 50.887963789000011 ], [ -122.849698196999938, 50.888109109000034 ], [ -122.850138413, 50.888117602000051 ], [ -122.850408916, 50.888037799000124 ], [ -122.850893381999967, 50.887912500000084 ], [ -122.852303292, 50.887194697000069 ], [ -122.853470092999956, 50.886314600000055 ], [ -122.855378616999957, 50.88566080700015 ], [ -122.855975416000021, 50.885337501000052 ], [ -122.856773585999932, 50.885051299000075 ], [ -122.857911705999967, 50.884673888000123 ], [ -122.859034692999927, 50.884604092000075 ], [ -122.86072788499996, 50.88443460900001 ], [ -122.862659437999952, 50.884022905000066 ], [ -122.862590398999956, 50.885005829000072 ], [ -122.862459767999937, 50.886865525000111 ], [ -122.862019417999988, 50.886853194000111 ], [ -122.86191163899997, 50.888387235000096 ], [ -122.857364041999944, 50.888259792000113 ], [ -122.85735145, 50.888438746000077 ], [ -122.856472178999951, 50.888414083000072 ], [ -122.856449529999963, 50.88873586800004 ], [ -122.851316269999984, 50.888591749000035 ], [ -122.851206495999975, 50.890148791000058 ], [ -122.849997648999974, 50.890114818 ], [ -122.848270553999953, 50.890066258000068 ], [ -122.84711220199992, 50.890033673000119 ], [ -122.847079207999954, 50.890501031000035 ], [ -122.847040275999973, 50.891052489000103 ], [ -122.84135562899999, 50.890892407000067 ], [ -122.841371677000012, 50.890665494000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999097254202634", "sL_AssetLoss": "153.0885", "sL_BldgLoss": "152.9503", "sL_StrLoss": "152.0163", "sL_NStrLoss": "0.934", "sL_ContLoss": "0.1382", "geom_point": "0101000020E6100000E4EDCEFBFBB85EC0838D047D966D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.885616137999975, 50.860050951000041 ], [ -122.885803382999939, 50.857363677000116 ], [ -122.888121055999989, 50.857428109000068 ], [ -122.88812364599994, 50.856345491000134 ], [ -122.888549865999948, 50.856345900000129 ], [ -122.88855243899999, 50.855266775000089 ], [ -122.888978648999966, 50.855267180000091 ], [ -122.88898185, 50.853918275000076 ], [ -122.889408048999925, 50.853918679000131 ], [ -122.889408685999939, 50.853648898000102 ], [ -122.889834881999946, 50.853649301000118 ], [ -122.88983551699998, 50.85337952 ], [ -122.889965311000012, 50.853379643000025 ], [ -122.89007183899993, 50.8518484680001 ], [ -122.890274875999978, 50.851854108000069 ], [ -122.890322869999963, 50.851164173000022 ], [ -122.891498524, 50.851196820000041 ], [ -122.893671948999938, 50.851257141000104 ], [ -122.894270731999924, 50.851273753000108 ], [ -122.89402479, 50.85160230000006 ], [ -122.893411690999969, 50.852671894000068 ], [ -122.893252385999958, 50.853228703000113 ], [ -122.893250597999923, 50.853866798000034 ], [ -122.89357569399999, 50.854865200000091 ], [ -122.893660686999979, 50.855594406000087 ], [ -122.893528288999931, 50.856655392000071 ], [ -122.89357000199999, 50.857347588000025 ], [ -122.893242185999938, 50.858246194000046 ], [ -122.893156875999921, 50.858300397000065 ], [ -122.892573804, 50.858200686000032 ], [ -122.89179218699995, 50.858388708000099 ], [ -122.89147829599996, 50.858749012000054 ], [ -122.891049996, 50.860196003000063 ], [ -122.890778905, 50.860429612000054 ], [ -122.890281481999963, 50.860312800000088 ], [ -122.888776202999935, 50.859483889000046 ], [ -122.88789749399993, 50.859392692000029 ], [ -122.887555388999942, 50.859509508000038 ], [ -122.88685690799997, 50.860083493000026 ], [ -122.886182514999945, 50.860970033000086 ], [ -122.885553309999949, 50.860952536000035 ], [ -122.885616137999975, 50.860050951000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999897129219417", "sL_AssetLoss": "102.0698", "sL_BldgLoss": "102.0593", "sL_StrLoss": "102", "sL_NStrLoss": "0.0593", "sL_ContLoss": "0.0105", "geom_point": "0101000020E6100000044CE847E68C5EC06AC8D34D3D624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.198874282999967, 50.765605718000103 ], [ -122.204540513999973, 50.765798390000043 ], [ -122.204236404999961, 50.769385942000014 ], [ -122.19856972299999, 50.76919325500009 ], [ -122.198874282999967, 50.765605718000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999568811223563", "sL_AssetLoss": "562.6306", "sL_BldgLoss": "562.388", "sL_StrLoss": "561", "sL_NStrLoss": "1.388", "sL_ContLoss": "0.2426", "geom_point": "0101000020E610000078EC88BF3DB15EC027D62D2BE2604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.771844257999987, 50.759726024000067 ], [ -122.771919298999947, 50.758684663000132 ], [ -122.769708950999956, 50.758620770000071 ], [ -122.769737909999918, 50.758219153000056 ], [ -122.768103856999957, 50.758171891000089 ], [ -122.768084738999903, 50.758436887000101 ], [ -122.767446559999911, 50.758418422000048 ], [ -122.767370172999946, 50.759477002000061 ], [ -122.761702498999909, 50.759312856000065 ], [ -122.761722684999938, 50.759033607000013 ], [ -122.761058093999978, 50.759014341000054 ], [ -122.761317564999956, 50.755425342000066 ], [ -122.762620236999979, 50.755463103000082 ], [ -122.762676551999945, 50.754683772000078 ], [ -122.766681418999895, 50.754799768000055 ], [ -122.76676854599998, 50.753592469000068 ], [ -122.772435515999945, 50.753756359000185 ], [ -122.77243358, 50.753783231000043 ], [ -122.773243787999945, 50.753806638000079 ], [ -122.773177856999965, 50.754722073000067 ], [ -122.77337044599993, 50.754727636000084 ], [ -122.773341520999921, 50.755129255000128 ], [ -122.775634888999932, 50.755195477000051 ], [ -122.77555994, 50.756236845000068 ], [ -122.777770179999933, 50.756300622000055 ], [ -122.777512021999954, 50.759889655000102 ], [ -122.771844257999987, 50.759726024000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999465470212819", "sL_AssetLoss": "418.1245", "sL_BldgLoss": "417.901", "sL_StrLoss": "417", "sL_NStrLoss": "0.901", "sL_ContLoss": "0.2235", "geom_point": "0101000020E6100000FA2F4AAFD1B15EC082F6557FA5784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77358901299999, 50.945026203000054 ], [ -122.773391, 50.94463880700004 ], [ -122.773520010999931, 50.94441378700003 ], [ -122.773962096999981, 50.944118906000071 ], [ -122.774206805999967, 50.943812686000079 ], [ -122.774394407999964, 50.943291505000062 ], [ -122.774896416999965, 50.942375695000145 ], [ -122.77520999799998, 50.94216068700009 ], [ -122.776066113999946, 50.941928499000028 ], [ -122.77646418199997, 50.941686400000052 ], [ -122.776968185999976, 50.940491503000025 ], [ -122.777570791999921, 50.93947600300006 ], [ -122.777646104000013, 50.938792395000156 ], [ -122.778613988999979, 50.938668504000077 ], [ -122.779555106999965, 50.938454896000039 ], [ -122.780182804999967, 50.938078901000083 ], [ -122.780382806999924, 50.937835309000036 ], [ -122.781039489999927, 50.937549089000079 ], [ -122.78144059499999, 50.937118891000047 ], [ -122.7817398, 50.937091910000049 ], [ -122.782322694999891, 50.936795699000093 ], [ -122.782866184999975, 50.936365494000029 ], [ -122.782939588999938, 50.935961105000032 ], [ -122.78303852099999, 50.935906898000034 ], [ -122.783638101999941, 50.935566606000052 ], [ -122.784038017999961, 50.934921633000123 ], [ -122.78543707199999, 50.934961732000041 ], [ -122.785724331999972, 50.934969964000061 ], [ -122.785465779, 50.93855827900007 ], [ -122.782460934999932, 50.938472141000034 ], [ -122.782310468999952, 50.940558152000087 ], [ -122.781566539999943, 50.940536813000058 ], [ -122.781553944999928, 50.940711370000066 ], [ -122.780682440999911, 50.940686366000051 ], [ -122.780621855999968, 50.941525790000064 ], [ -122.778785944999967, 50.94147309500007 ], [ -122.778578441999954, 50.944346334000073 ], [ -122.778003424999952, 50.944329824000057 ], [ -122.777969897999952, 50.944793927 ], [ -122.77826777199999, 50.944802480000099 ], [ -122.77800856399999, 50.948390740000086 ], [ -122.777588355, 50.948378674000011 ], [ -122.777488326999944, 50.949763049000062 ], [ -122.776391804999889, 50.949731554000024 ], [ -122.774381795999929, 50.949673796000091 ], [ -122.774633523999967, 50.949515300000044 ], [ -122.775274922999984, 50.949283105000035 ], [ -122.775419810999921, 50.949049594000059 ], [ -122.774027894999918, 50.948344600000048 ], [ -122.773544780999927, 50.948190796000141 ], [ -122.773431004999964, 50.947831891000064 ], [ -122.773006990999974, 50.947228013000085 ], [ -122.773037618999979, 50.946958798000061 ], [ -122.77283929099994, 50.946796509000102 ], [ -122.77283979100001, 50.946498791000053 ], [ -122.773027797999958, 50.945870713000097 ], [ -122.773285703999989, 50.945654201000089 ], [ -122.773300116999934, 50.945457703000045 ], [ -122.77358901299999, 50.945026203000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999522078762619", "sL_AssetLoss": "133.4948", "sL_BldgLoss": "133.431", "sL_StrLoss": "133", "sL_NStrLoss": "0.431", "sL_ContLoss": "0.0638", "geom_point": "0101000020E6100000ABC4449CF1B15EC01E49EE5550754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77765744, 50.914638281000109 ], [ -122.783344880999891, 50.914801588000081 ], [ -122.78308625399994, 50.918389980000086 ], [ -122.777398357999942, 50.918226660000059 ], [ -122.77765744, 50.914638281000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999713748262043", "sL_AssetLoss": "122.27", "sL_BldgLoss": "122.235", "sL_StrLoss": "122", "sL_NStrLoss": "0.235", "sL_ContLoss": "0.035", "geom_point": "0101000020E6100000977A2F21D3BE5EC0AC4875CF74814940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.97977191399994, 51.010807495000094 ], [ -122.98061338399998, 51.010611001000079 ], [ -122.980827298999927, 51.010467211000091 ], [ -122.981084722000034, 51.010511305000101 ], [ -122.981312409999987, 51.01044858900012 ], [ -122.982054719999965, 51.010655200000045 ], [ -122.982452591999959, 51.010475710000023 ], [ -122.982637685999975, 51.010287696000091 ], [ -122.982566193999972, 51.010062696000048 ], [ -122.982110590999966, 51.009819095000054 ], [ -122.982054405999975, 51.009414685000102 ], [ -122.982153595999947, 51.009243794000099 ], [ -122.982582144999981, 51.009061210000063 ], [ -122.98392145199989, 51.009097161000035 ], [ -122.983678428999937, 51.012685622000049 ], [ -122.982568374999957, 51.012655826000064 ], [ -122.982554591999957, 51.012859250000091 ], [ -122.97850070599999, 51.012750341000057 ], [ -122.978488091999949, 51.012706003000105 ], [ -122.978418205999958, 51.012507985000063 ], [ -122.978561314999965, 51.012112101000078 ], [ -122.978944706999982, 51.011590895000076 ], [ -122.978945613999912, 51.011357296000043 ], [ -122.979230808999958, 51.011086706000036 ], [ -122.97977191399994, 51.010807495000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999622487987421", "sL_AssetLoss": "136.4195", "sL_BldgLoss": "136.368", "sL_StrLoss": "136", "sL_NStrLoss": "0.368", "sL_ContLoss": "0.0515", "geom_point": "0101000020E610000091E125F658B35EC0F148FE586F6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.799526081999915, 50.856877366000063 ], [ -122.799554406000013, 50.856481815000073 ], [ -122.799146594999954, 50.856470157000039 ], [ -122.79940357599996, 50.852881475000082 ], [ -122.805083241999952, 50.853043691000074 ], [ -122.805054968999983, 50.853439246000057 ], [ -122.805462754999951, 50.853450882000089 ], [ -122.805206256999952, 50.857039575000066 ], [ -122.799526081999915, 50.856877366000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99915670875474", "sL_AssetLoss": "174.317", "sL_BldgLoss": "174.17", "sL_StrLoss": "173", "sL_NStrLoss": "1.17", "sL_ContLoss": "0.147", "geom_point": "0101000020E6100000FACD279F9CB55EC0A71C7A285D644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.840156591999943, 50.782364759000082 ], [ -122.840646599999985, 50.782378610000116 ], [ -122.840393327999905, 50.785967677000066 ], [ -122.83990328099999, 50.785953825000028 ], [ -122.83472203800001, 50.785807239000107 ], [ -122.83497576399999, 50.782218183000111 ], [ -122.840156591999943, 50.782364759000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.961440042354187", "sL_AssetLoss": "0.11333", "sL_BldgLoss": "0.10896", "sL_StrLoss": "0.00396", "sL_NStrLoss": "0.105", "sL_ContLoss": "0.00437", "geom_point": "0101000020E6100000213D03F27EBA5EC0388F79D3636B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.911282945999929, 50.837111151000045 ], [ -122.916961008999962, 50.837267698000062 ], [ -122.916713547999976, 50.840856709000043 ], [ -122.911035031000011, 50.840700150000025 ], [ -122.911282945999929, 50.837111151000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999227227565247", "sL_AssetLoss": "153.991", "sL_BldgLoss": "153.872", "sL_StrLoss": "153", "sL_NStrLoss": "0.872", "sL_ContLoss": "0.119", "geom_point": "0101000020E6100000772B8D90A8B15EC0F85B12D260724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77437459399999, 50.894129208000074 ], [ -122.773221109999923, 50.891653894000044 ], [ -122.773378009999959, 50.891483004000087 ], [ -122.773718918999975, 50.891601199000085 ], [ -122.774357488999982, 50.891665292000091 ], [ -122.775026519999955, 50.891549896000079 ], [ -122.775354818999972, 50.891522904000084 ], [ -122.775695305999989, 50.891604092000087 ], [ -122.777328312999956, 50.892227888000043 ], [ -122.777389702999969, 50.892239556000042 ], [ -122.777371964999972, 50.892485358000066 ], [ -122.777261234, 50.894019745000058 ], [ -122.778034801999979, 50.894041988000033 ], [ -122.777861191999975, 50.896448046000025 ], [ -122.777054109999938, 50.896094584000075 ], [ -122.776542208999928, 50.895734296000072 ], [ -122.775708091999959, 50.895022190000063 ], [ -122.774685422999951, 50.894420030000042 ], [ -122.774559177999961, 50.894345693000055 ], [ -122.77437459399999, 50.894129208000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999495689523527", "sL_AssetLoss": "134.2427", "sL_BldgLoss": "134.175", "sL_StrLoss": "134", "sL_NStrLoss": "0.175", "sL_ContLoss": "0.0677", "geom_point": "0101000020E6100000202CDF0A13B05EC08F7C357223744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.749913014999919, 50.910035054000026 ], [ -122.749941346999961, 50.909645917000041 ], [ -122.749428531999953, 50.909631050000051 ], [ -122.748019906999929, 50.909590199000057 ], [ -122.748066403999971, 50.908951938 ], [ -122.748281298999942, 50.906001852000024 ], [ -122.749197797999926, 50.906028434000071 ], [ -122.749225078999956, 50.905653774000037 ], [ -122.754911270999926, 50.905818523000086 ], [ -122.754711517999965, 50.908566381000142 ], [ -122.753995294999953, 50.908520795000086 ], [ -122.75339958, 50.908295798000076 ], [ -122.752874785999936, 50.907933993000029 ], [ -122.752490904999917, 50.907798685000024 ], [ -122.75148018699997, 50.907860003000089 ], [ -122.751436094, 50.908048008000058 ], [ -122.751279703999941, 50.908146303000116 ], [ -122.75079661800001, 50.908226008000085 ], [ -122.750250189999946, 50.909053496000098 ], [ -122.750418606999958, 50.909709987000028 ], [ -122.750233108999979, 50.909879486000044 ], [ -122.749913014999919, 50.910035054000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999817831604275", "sL_AssetLoss": "108.1417", "sL_BldgLoss": "108.122", "sL_StrLoss": "108", "sL_NStrLoss": "0.122", "sL_ContLoss": "0.0197", "geom_point": "0101000020E610000057F4A003BFB45EC0FFF04E99F66A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.821881995999959, 50.833701878000078 ], [ -122.82755930799999, 50.83386295800004 ], [ -122.827304695999885, 50.837451783000084 ], [ -122.82644756399999, 50.837427482000045 ], [ -122.826435369999928, 50.83759930300009 ], [ -122.820757585999957, 50.837438166000076 ], [ -122.821012722999953, 50.833849357000169 ], [ -122.821869784999961, 50.833873699000058 ], [ -122.821881995999959, 50.833701878000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999552212178175", "sL_AssetLoss": "423.1915", "sL_BldgLoss": "423.002", "sL_StrLoss": "422", "sL_NStrLoss": "1.002", "sL_ContLoss": "0.1895", "geom_point": "0101000020E61000001227FFAC5CB25EC0DA628E50F9764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.779685071999893, 50.932836993000052 ], [ -122.779944055999977, 50.929248667000152 ], [ -122.782123784999953, 50.92931122400006 ], [ -122.782271478999974, 50.927263219000089 ], [ -122.783307211999912, 50.927292930000092 ], [ -122.783309833999965, 50.927256544000052 ], [ -122.786366526999956, 50.927344168000118 ], [ -122.786388619999968, 50.927037419000065 ], [ -122.787362406999961, 50.927065316000032 ], [ -122.78740691299997, 50.926447141000089 ], [ -122.791959657999925, 50.926577458000075 ], [ -122.793095892999958, 50.926609952000014 ], [ -122.792837979999959, 50.930198318000116 ], [ -122.791864121999978, 50.930170469000053 ], [ -122.791819673999925, 50.930788643000092 ], [ -122.791170605999952, 50.930770076000051 ], [ -122.79111479, 50.931546158000039 ], [ -122.789399349999982, 50.931497070000091 ], [ -122.789290202999965, 50.933013799000022 ], [ -122.787264063999928, 50.932955787 ], [ -122.786384740999921, 50.932930599000073 ], [ -122.786411077999958, 50.9328291960001 ], [ -122.785718391999936, 50.93192910000004 ], [ -122.785963297999913, 50.93138938700006 ], [ -122.786233485999958, 50.931272604000092 ], [ -122.786306193999906, 50.93102190200009 ], [ -122.786876083, 50.930932207000055 ], [ -122.787433182999933, 50.930654491000077 ], [ -122.787718186999925, 50.930268503000086 ], [ -122.787548088, 50.930070505000074 ], [ -122.787135800999962, 50.929962305000053 ], [ -122.786823910999942, 50.92997079800012 ], [ -122.786298490999954, 50.929744394000082 ], [ -122.785658300999955, 50.929554998000107 ], [ -122.785458597999977, 50.92959058800006 ], [ -122.785087608999945, 50.929841191000079 ], [ -122.784775696999986, 50.929858286000055 ], [ -122.784105106999959, 50.930234286000072 ], [ -122.783477000999966, 50.930378187000045 ], [ -122.783248803999967, 50.930539096000139 ], [ -122.782820903999919, 50.930862395000126 ], [ -122.782832996999957, 50.931508998000062 ], [ -122.782689484999977, 50.931752499000062 ], [ -122.782018591999986, 50.932209689000068 ], [ -122.781291021999962, 50.932531601000065 ], [ -122.780805610999977, 50.932738086000064 ], [ -122.780691312999949, 50.932863386000072 ], [ -122.780689296999967, 50.932865818000067 ], [ -122.779685071999893, 50.932836993000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73853417", "BldgCostT": "51901667", "sL_LossRatio": "0.998321150187239", "sL_AssetLoss": "2198.529", "sL_BldgLoss": "2194.838", "sL_StrLoss": "1950.757", "sL_NStrLoss": "244.081", "sL_ContLoss": "3.691", "geom_point": "0101000020E6100000FD538936F0B35EC0BF6CD0D109634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822466433, 50.781839722000022 ], [ -122.82249241599996, 50.781473599000066 ], [ -122.821996838999937, 50.78145951000009 ], [ -122.822023070999961, 50.781089937000047 ], [ -122.821476546, 50.781074397000083 ], [ -122.821494945, 50.780815199000095 ], [ -122.819816402999891, 50.780767454000113 ], [ -122.819835435999934, 50.780499454000044 ], [ -122.816154286999918, 50.780394657000024 ], [ -122.816187442999976, 50.77992834100008 ], [ -122.815963209999921, 50.77992195300012 ], [ -122.816003369999947, 50.779357174000076 ], [ -122.815553033999919, 50.779344344000016 ], [ -122.815581102999943, 50.778949646000086 ], [ -122.815110342999972, 50.778936233000124 ], [ -122.815168129999932, 50.778123759000081 ], [ -122.81377314799991, 50.77808399900006 ], [ -122.813814495999978, 50.777502895000062 ], [ -122.813382872999952, 50.777490590000106 ], [ -122.813427279999956, 50.776866563000098 ], [ -122.812171769999949, 50.776830759000056 ], [ -122.812260375999955, 50.775586063000034 ], [ -122.809124741999938, 50.775496580999985 ], [ -122.80913597199999, 50.775338961000102 ], [ -122.808442626, 50.775319163000106 ], [ -122.808488779999962, 50.774671566000066 ], [ -122.807181723000014, 50.774634232000061 ], [ -122.807194160999956, 50.774459780000036 ], [ -122.806551412999951, 50.774441415000112 ], [ -122.80656819499994, 50.774206061 ], [ -122.805617493999947, 50.774178891000069 ], [ -122.805629387999929, 50.7740121470001 ], [ -122.805025183999959, 50.773994875 ], [ -122.805057985999937, 50.773535087000027 ], [ -122.803653326999964, 50.773494921000044 ], [ -122.80364916299996, 50.774489431000056 ], [ -122.803223688999964, 50.774488714000107 ], [ -122.80321689699997, 50.776107417000055 ], [ -122.801089455999943, 50.776103808000137 ], [ -122.801090598999977, 50.775834024000055 ], [ -122.800665110999958, 50.775833298000087 ], [ -122.800666258999982, 50.775563514000034 ], [ -122.799815291999963, 50.775562057000094 ], [ -122.799816443999973, 50.775292273000069 ], [ -122.799390963999912, 50.775291543000066 ], [ -122.79939211699994, 50.77502175900004 ], [ -122.798966638999957, 50.775021027000072 ], [ -122.798967794999953, 50.774751243000011 ], [ -122.798542319999939, 50.774750509000079 ], [ -122.798545795999985, 50.77394115700006 ], [ -122.80024767, 50.773944083000082 ], [ -122.800249997999956, 50.773397528000011 ], [ -122.799803323999981, 50.773384738000061 ], [ -122.799836648999928, 50.77291839600008 ], [ -122.797553072000014, 50.772852979000028 ], [ -122.797592287999976, 50.772304581000057 ], [ -122.796785581999956, 50.772281461000091 ], [ -122.796808337999934, 50.771963293000042 ], [ -122.796014675, 50.771940541000085 ], [ -122.796054510999966, 50.771383730000082 ], [ -122.795273085999966, 50.771361322000075 ], [ -122.795307491, 50.770880497000078 ], [ -122.795280516999966, 50.770879724000082 ], [ -122.79553731699994, 50.767290696000032 ], [ -122.800376232999909, 50.767429363000069 ], [ -122.80046838, 50.766139411999987 ], [ -122.806137056999972, 50.766301591000094 ], [ -122.80612606699998, 50.766455727000029 ], [ -122.806768044999927, 50.766474075000076 ], [ -122.806765531999957, 50.766509318000075 ], [ -122.807550717, 50.766531755000109 ], [ -122.807539076999916, 50.766695081000115 ], [ -122.808429995999958, 50.766720532000058 ], [ -122.808298617999981, 50.768564199000124 ], [ -122.811043424999966, 50.768642566000103 ], [ -122.811034816999964, 50.768763452000023 ], [ -122.81312945599997, 50.768823211000033 ], [ -122.813112875999977, 50.769056214000045 ], [ -122.813578755999927, 50.769069499000103 ], [ -122.813499053999976, 50.770189752000128 ], [ -122.813812721999966, 50.770198696000101 ], [ -122.813809369999944, 50.770245815000074 ], [ -122.816679719999968, 50.770327620000025 ], [ -122.816653020999965, 50.770703244000082 ], [ -122.817027531999926, 50.770713912000055 ], [ -122.816838930999936, 50.773367466000131 ], [ -122.818096867999884, 50.773403289000107 ], [ -122.81805253, 50.774027319000034 ], [ -122.819307967, 50.774063057000028 ], [ -122.819266691999971, 50.774644166000044 ], [ -122.81969829099998, 50.774656449000112 ], [ -122.819668929999963, 50.775069881000022 ], [ -122.821989334999913, 50.775135889000055 ], [ -122.821979249999927, 50.775277994000099 ], [ -122.823641383999956, 50.775325246000072 ], [ -122.823614278999969, 50.775707393000069 ], [ -122.823784904999982, 50.775712243000036 ], [ -122.82367364199996, 50.777280847000029 ], [ -122.82574143699999, 50.777339594000061 ], [ -122.82573212299998, 50.777471003000073 ], [ -122.829332514999948, 50.777573200000042 ], [ -122.829306267, 50.777943901000093 ], [ -122.83009521299995, 50.777966280000015 ], [ -122.829841119999941, 50.781555342000019 ], [ -122.828172084999963, 50.781507993000083 ], [ -122.828137176000013, 50.782000782000097 ], [ -122.822466433, 50.781839722000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999729865159411", "sL_AssetLoss": "242.4715", "sL_BldgLoss": "242.406", "sL_StrLoss": "242", "sL_NStrLoss": "0.406", "sL_ContLoss": "0.0655", "geom_point": "0101000020E610000018B1911C17A55EC047205ED72F754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.584947505999949, 50.918564388000064 ], [ -122.583769518999958, 50.918272401000081 ], [ -122.58240370499999, 50.918249588000073 ], [ -122.58122509, 50.917857914000109 ], [ -122.580645489999981, 50.917595896000066 ], [ -122.580419893999959, 50.917406493000087 ], [ -122.579547210999962, 50.916287007000051 ], [ -122.579320582999969, 50.916124698000033 ], [ -122.578354814999926, 50.916013608000107 ], [ -122.577704201999936, 50.915543612000057 ], [ -122.577151222999973, 50.915496604000062 ], [ -122.574857105, 50.915775695000065 ], [ -122.574047886999935, 50.915520804000032 ], [ -122.573668194000035, 50.915223200000057 ], [ -122.573217313000015, 50.914663394000087 ], [ -122.572918680999976, 50.914555192000087 ], [ -122.572114182999925, 50.914455578000116 ], [ -122.572201460999935, 50.913319216000062 ], [ -122.57788795799992, 50.913492937000058 ], [ -122.577882328999962, 50.913566358000104 ], [ -122.57994438799993, 50.913629282000073 ], [ -122.579915931999949, 50.914000628000103 ], [ -122.581385360999946, 50.914045445000049 ], [ -122.581368445999914, 50.914266279000039 ], [ -122.582212845999919, 50.914292023000037 ], [ -122.582169888999928, 50.914852960000118 ], [ -122.58368323, 50.914899085000108 ], [ -122.583630749999912, 50.915584663000075 ], [ -122.584149657999916, 50.915600475000112 ], [ -122.58411335299995, 50.91607480800009 ], [ -122.584715768999956, 50.916093160000052 ], [ -122.584703159999918, 50.916257931000096 ], [ -122.585501252999947, 50.91628223900004 ], [ -122.585323396999982, 50.918606760000074 ], [ -122.584947505999949, 50.918564388000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999357466457571", "sL_AssetLoss": "146.9184", "sL_BldgLoss": "146.824", "sL_StrLoss": "146", "sL_NStrLoss": "0.824", "sL_ContLoss": "0.0944", "geom_point": "0101000020E6100000CBD0809390B05EC024264D2869604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.75612073, 50.751332406000074 ], [ -122.761787372999947, 50.751496837000047 ], [ -122.761527962999978, 50.755085853000011 ], [ -122.75586086599999, 50.754921411000119 ], [ -122.75612073, 50.751332406000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999918102280185", "sL_AssetLoss": "404.28476", "sL_BldgLoss": "404.25165", "sL_StrLoss": "404.00245", "sL_NStrLoss": "0.2492", "sL_ContLoss": "0.03311", "geom_point": "0101000020E610000023B238319EB55EC00D85D7470A6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.83150691, 50.858353909000066 ], [ -122.831592238, 50.8571502530001 ], [ -122.83146709, 50.85714671100007 ], [ -122.831617799999933, 50.855020696000054 ], [ -122.830826406999932, 50.854998300000041 ], [ -122.831080837999963, 50.851409539000016 ], [ -122.831565363999985, 50.851423252000124 ], [ -122.831598441999958, 50.850956550000049 ], [ -122.832411867999923, 50.850979567000053 ], [ -122.832467853999958, 50.850189469000014 ], [ -122.83328972299995, 50.850212719000112 ], [ -122.833325647999942, 50.849705589000045 ], [ -122.833795573999936, 50.849718880000054 ], [ -122.83381744399999, 50.8494101000001 ], [ -122.834052589999956, 50.849416750000067 ], [ -122.834101472999976, 50.848726506000034 ], [ -122.835041886999988, 50.848753095000049 ], [ -122.835053842999912, 50.848584229000032 ], [ -122.83547535699995, 50.848596144000048 ], [ -122.836931073999949, 50.84863728300013 ], [ -122.836948373999959, 50.848392774000054 ], [ -122.839014679999963, 50.848451135000168 ], [ -122.839022690999954, 50.848337824000097 ], [ -122.840819048999933, 50.848388530000051 ], [ -122.841044296999968, 50.845200866000063 ], [ -122.841499512999945, 50.845213711000078 ], [ -122.841568801999969, 50.845489593000082 ], [ -122.841991388999958, 50.846057895000094 ], [ -122.842359503999916, 50.846326998000059 ], [ -122.844644109999976, 50.847328200000049 ], [ -122.846189304999911, 50.8483836 ], [ -122.846526796999981, 50.849246691000069 ], [ -122.847461580999919, 50.850300600000068 ], [ -122.847601312999984, 50.850930087000066 ], [ -122.846222896999947, 50.851306112000032 ], [ -122.844530183999964, 50.851430002000043 ], [ -122.843594407999987, 50.851374410000126 ], [ -122.843267593999926, 50.85144560600007 ], [ -122.842641509999936, 50.851642195000125 ], [ -122.841303192999987, 50.852441211000048 ], [ -122.840759398999964, 50.852555208000105 ], [ -122.840587610999947, 50.852550361000077 ], [ -122.839925990999973, 50.852531689000088 ], [ -122.83991176799999, 50.852732883000087 ], [ -122.839468986000014, 50.852825691000092 ], [ -122.83864280799996, 50.853147589000095 ], [ -122.837775785, 50.853866808000085 ], [ -122.837516922999939, 50.854486303000066 ], [ -122.837358882999965, 50.855267577000063 ], [ -122.83734231899993, 50.855349406000101 ], [ -122.836999874999933, 50.85623949400015 ], [ -122.836770383, 50.856500202000085 ], [ -122.836812095999932, 50.857173806000098 ], [ -122.836682803999977, 50.857398800000105 ], [ -122.836284089999978, 50.857667990000024 ], [ -122.836156285999934, 50.857649489000011 ], [ -122.83547288599999, 50.857864497000079 ], [ -122.835117074999943, 50.857989893000052 ], [ -122.834397086999928, 50.858435652000097 ], [ -122.83150691, 50.858353909000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999300007241304", "sL_AssetLoss": "140.8586", "sL_BldgLoss": "140.76", "sL_StrLoss": "140", "sL_NStrLoss": "0.76", "sL_ContLoss": "0.0986", "geom_point": "0101000020E61000003B66C9B12FB05EC0A6D09A9BC6744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.749682929999949, 50.913194936000117 ], [ -122.749793155999939, 50.911681207000093 ], [ -122.749865605999943, 50.910686179000052 ], [ -122.750043010999946, 50.910940587000077 ], [ -122.750081385, 50.911426203000055 ], [ -122.750721109999972, 50.911607102000112 ], [ -122.751717386999957, 50.911708204000028 ], [ -122.752242598999956, 50.911638402000044 ], [ -122.752383806999958, 50.911826411000078 ], [ -122.752484594999899, 50.911827789000064 ], [ -122.752501811999977, 50.911225387000066 ], [ -122.752857112999919, 50.910983293000115 ], [ -122.753298112999985, 50.911020304000033 ], [ -122.753965088999934, 50.911551499000041 ], [ -122.754393098999969, 50.911355001000068 ], [ -122.75474779799994, 50.911355003 ], [ -122.755187785999951, 50.911419104000117 ], [ -122.755501312999954, 50.911626996000123 ], [ -122.755672319999945, 50.911366395000137 ], [ -122.755346593999946, 50.911185503000041 ], [ -122.755375206999972, 50.911051609 ], [ -122.75557581599999, 50.911006106000066 ], [ -122.755943, 50.911168398000015 ], [ -122.755995798999948, 50.911158239000045 ], [ -122.755856386999966, 50.913076449000037 ], [ -122.755391646999925, 50.913063001000097 ], [ -122.755370082999946, 50.913359661000129 ], [ -122.752424853999969, 50.91327439 ], [ -122.749682929999949, 50.913194936000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999800743570928", "sL_AssetLoss": "229.3527", "sL_BldgLoss": "229.307", "sL_StrLoss": "229", "sL_NStrLoss": "0.307", "sL_ContLoss": "0.0457", "geom_point": "0101000020E6100000CDB3ED0F6FB15EC0230BA031F6794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767707558999973, 50.954640933000064 ], [ -122.767744475999962, 50.954131619000108 ], [ -122.767710293000022, 50.954130635000048 ], [ -122.767820961999988, 50.952603791000065 ], [ -122.767985103999962, 50.952550299000045 ], [ -122.768101121999919, 50.952209904000078 ], [ -122.768871194999974, 50.951850995000115 ], [ -122.769326579999955, 50.951798291000053 ], [ -122.770138482999982, 50.951547598000076 ], [ -122.771507704999976, 50.951371003000112 ], [ -122.771920400999932, 50.951237106000114 ], [ -122.773559386999963, 50.95105060700012 ], [ -122.77367340499994, 50.951014998000105 ], [ -122.7737594, 50.950789905000093 ], [ -122.773747291999882, 50.950507585000082 ], [ -122.776202260999966, 50.950578138000061 ], [ -122.776661619999956, 50.950591333000084 ], [ -122.776402247999926, 50.954179565000054 ], [ -122.773585896999947, 50.95409863500003 ], [ -122.773451431999888, 50.954094769000051 ], [ -122.773439647999936, 50.954257642000059 ], [ -122.773400060999947, 50.954804737000067 ], [ -122.772592539999934, 50.954781518000075 ], [ -122.767707558999973, 50.954640933000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999823055478006", "sL_AssetLoss": "127.1585", "sL_BldgLoss": "127.136", "sL_StrLoss": "127", "sL_NStrLoss": "0.136", "sL_ContLoss": "0.0225", "geom_point": "0101000020E6100000F139879D2FAF5EC05A22FEFE20744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734816227999957, 50.908165599000085 ], [ -122.734817761, 50.907895823000089 ], [ -122.73353770099996, 50.907892908000044 ], [ -122.733539241999935, 50.907623132 ], [ -122.732685872999951, 50.907621182000085 ], [ -122.732687771999977, 50.907289687000087 ], [ -122.732688103999976, 50.907231600000031 ], [ -122.732690506999987, 50.906811852000018 ], [ -122.733117184999969, 50.906812829000039 ], [ -122.733118726999976, 50.906543053000028 ], [ -122.736105448999936, 50.906549840000125 ], [ -122.736106076999974, 50.906438653000073 ], [ -122.736924285999947, 50.906334693000083 ], [ -122.737386455999953, 50.906377981000091 ], [ -122.737385472, 50.906552728000129 ], [ -122.740372194999949, 50.906559406000056 ], [ -122.74037156499999, 50.906672567000015 ], [ -122.740370693999964, 50.906829183000056 ], [ -122.740797369999925, 50.906830131000113 ], [ -122.740795872000021, 50.90709990800007 ], [ -122.74207591099993, 50.90710274200007 ], [ -122.742072455999946, 50.907728352000035 ], [ -122.742069948999955, 50.908181848000012 ], [ -122.740789880999898, 50.908179013000058 ], [ -122.740791377999969, 50.907909237000119 ], [ -122.738657942999964, 50.907904482000021 ], [ -122.738659452999983, 50.907634705000071 ], [ -122.736526030999983, 50.907629911000107 ], [ -122.736524507999974, 50.907899687000103 ], [ -122.736097821, 50.90789872300013 ], [ -122.736096295999985, 50.908168499000084 ], [ -122.734816227999957, 50.908165599000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999442094919559", "sL_AssetLoss": "142.6766", "sL_BldgLoss": "142.597", "sL_StrLoss": "142", "sL_NStrLoss": "0.597", "sL_ContLoss": "0.0796", "geom_point": "0101000020E6100000CDD288786FB65EC059E08673E8634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84842751799998, 50.778646501000054 ], [ -122.853111428999966, 50.778778475000173 ], [ -122.852983390999938, 50.779209702000081 ], [ -122.852497791999966, 50.779964600000014 ], [ -122.852411289999935, 50.780495790000067 ], [ -122.853061397999937, 50.781548310000062 ], [ -122.853044594999943, 50.78209658700009 ], [ -122.852795892999964, 50.782365805000055 ], [ -122.848174890999957, 50.782235602000128 ], [ -122.84842751799998, 50.778646501000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77932750", "BldgCostT": "54715000", "sL_LossRatio": "0.999055197159412", "sL_AssetLoss": "2621.711", "sL_BldgLoss": "2619.234", "sL_StrLoss": "2557.667", "sL_NStrLoss": "61.567", "sL_ContLoss": "2.477", "geom_point": "0101000020E61000003139942563B95EC0BFBDEF08BC6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.902789020999961, 50.84495409900007 ], [ -122.901738682, 50.844791701000062 ], [ -122.900984482999931, 50.844818804000042 ], [ -122.900572987999936, 50.845006802000107 ], [ -122.900698789999964, 50.845519498000094 ], [ -122.901110183999947, 50.845924 ], [ -122.900867602999938, 50.84617611200008 ], [ -122.900585099, 50.846274309000123 ], [ -122.89956199699999, 50.84639109600009 ], [ -122.899064310999961, 50.846507896000126 ], [ -122.898793984999926, 50.846731499000057 ], [ -122.898323386999948, 50.847432203000089 ], [ -122.897384592999941, 50.848385001000061 ], [ -122.895020514999956, 50.850272100000019 ], [ -122.894851979999942, 50.850497255000079 ], [ -122.894066127999977, 50.850475457000108 ], [ -122.893460908999941, 50.850458666000122 ], [ -122.893517770999949, 50.849640398000062 ], [ -122.893710287999937, 50.846869746000024 ], [ -122.895018790999984, 50.84690604500004 ], [ -122.895095696999988, 50.845798677000069 ], [ -122.895351088999917, 50.845805761000044 ], [ -122.895410834999964, 50.844945383000066 ], [ -122.896283155, 50.844969572000068 ], [ -122.89631491599999, 50.844512043000037 ], [ -122.896319528, 50.844445604000065 ], [ -122.897632784999971, 50.844482007000082 ], [ -122.897653786999911, 50.844179336000067 ], [ -122.897664589999977, 50.844179636000035 ], [ -122.897743452999961, 50.843043036000054 ], [ -122.898336203999961, 50.843059461000045 ], [ -122.89836895399999, 50.842587350000066 ], [ -122.898382840999929, 50.842587734000062 ], [ -122.898383408999976, 50.842326207000085 ], [ -122.897957317999953, 50.842325836000086 ], [ -122.897957905999988, 50.842056053000093 ], [ -122.897105726999911, 50.842055304000013 ], [ -122.897105132999954, 50.842325087000106 ], [ -122.896679040999928, 50.842324710000106 ], [ -122.896678444999907, 50.842594493000064 ], [ -122.895643354999891, 50.842593572000126 ], [ -122.895400160999955, 50.842593354000016 ], [ -122.895403175999917, 50.841244444000026 ], [ -122.896681423999922, 50.841245583000031 ], [ -122.896682019999943, 50.84097580100012 ], [ -122.89753418, 50.84097655300004 ], [ -122.897534770000036, 50.840706771000086 ], [ -122.897960846999965, 50.84070714300001 ], [ -122.897961435999946, 50.84043736200006 ], [ -122.898387511999942, 50.840437733000066 ], [ -122.898388682999894, 50.839898170000069 ], [ -122.898544045999969, 50.839898304000094 ], [ -122.898711248999987, 50.837487547000109 ], [ -122.900157492999966, 50.837527610000045 ], [ -122.901806462999943, 50.837573267000046 ], [ -122.902019692999943, 50.834495421000085 ], [ -122.902050393999971, 50.834496270000017 ], [ -122.902127453999981, 50.833383821000034 ], [ -122.904587060999972, 50.833451876000112 ], [ -122.904629383999961, 50.832840380000029 ], [ -122.910306881999958, 50.832997266000127 ], [ -122.910058909, 50.836586279000116 ], [ -122.907599124999962, 50.836518344000069 ], [ -122.90755683799992, 50.83712983900007 ], [ -122.90752613399998, 50.837128991000085 ], [ -122.90744920099999, 50.838241439000093 ], [ -122.904353930999932, 50.838155875000069 ], [ -122.904297249999956, 50.838974607000054 ], [ -122.904598235999984, 50.838982931000047 ], [ -122.904598612999962, 50.838977493000101 ], [ -122.910276888999974, 50.839134379000079 ], [ -122.910028880999931, 50.842723367000076 ], [ -122.908632578999985, 50.842684815000084 ], [ -122.90860891799997, 50.84302704800006 ], [ -122.90929208599999, 50.843045913000047 ], [ -122.909197737999975, 50.844410743000054 ], [ -122.910745922999979, 50.844453477000052 ], [ -122.910497923999955, 50.848042445000068 ], [ -122.909736438999971, 50.848021428000052 ], [ -122.909606098999959, 50.849906962000048 ], [ -122.909480709999954, 50.849903501000043 ], [ -122.909371284999963, 50.851486264000116 ], [ -122.909147188999953, 50.851480078000115 ], [ -122.909089123999948, 50.852319869 ], [ -122.908835491999966, 50.852312868000048 ], [ -122.908801441999955, 50.852805275000023 ], [ -122.908594191999939, 50.852799553000118 ], [ -122.908556263999941, 50.853347980000066 ], [ -122.908177889999962, 50.853337532000062 ], [ -122.908077431999956, 50.85478988900006 ], [ -122.907886423999955, 50.854784615000014 ], [ -122.907795899999925, 50.856093192000074 ], [ -122.90736258599999, 50.856081225 ], [ -122.907315218999898, 50.85676580300003 ], [ -122.907247199999986, 50.85676392400007 ], [ -122.90721244599996, 50.857266204000069 ], [ -122.906838834999988, 50.857255885000065 ], [ -122.906786472999954, 50.858012513000077 ], [ -122.90618985499999, 50.857996031000077 ], [ -122.906135892999913, 50.858775627000085 ], [ -122.905272976999953, 50.858751783000031 ], [ -122.905214303999927, 50.859599147000097 ], [ -122.904996741999952, 50.859593134000129 ], [ -122.90496771799999, 50.860012253000043 ], [ -122.904555481999921, 50.860000859000053 ], [ -122.904488756999982, 50.860964263000014 ], [ -122.903890978, 50.860947738000071 ], [ -122.90383977299993, 50.861686877000068 ], [ -122.903385320999945, 50.861674311000066 ], [ -122.90332750099995, 50.862508787000131 ], [ -122.902897271999933, 50.862496890000045 ], [ -122.902842828999923, 50.863282497000114 ], [ -122.901929123999963, 50.863257225000055 ], [ -122.901854349999937, 50.864335819000118 ], [ -122.901499302999952, 50.864325997000044 ], [ -122.901447977999965, 50.865066228000082 ], [ -122.900276379000019, 50.865033808000135 ], [ -122.900192096999959, 50.866248855000052 ], [ -122.89918609599998, 50.866221008000061 ], [ -122.89914738600001, 50.866778880000062 ], [ -122.898424744999943, 50.866758870000105 ], [ -122.898396077999934, 50.867171897000055 ], [ -122.897384638999981, 50.867143883000097 ], [ -122.897284117999988, 50.868591620000061 ], [ -122.897014686999952, 50.868584157000065 ], [ -122.896942564999932, 50.86962272700007 ], [ -122.896685146999928, 50.86961559500002 ], [ -122.89661471299992, 50.870629732000111 ], [ -122.896483895999907, 50.870626109000021 ], [ -122.896431251999928, 50.871384035000077 ], [ -122.895534889999951, 50.871359196000057 ], [ -122.89540432099993, 50.87323835600008 ], [ -122.894284826999979, 50.873207324000141 ], [ -122.894227120999972, 50.874037483000038 ], [ -122.892062888999988, 50.873977459000074 ], [ -122.891996679999963, 50.87492923600005 ], [ -122.891175569999959, 50.874906451000051 ], [ -122.891092714999971, 50.876097155000103 ], [ -122.889863468999948, 50.876063035000051 ], [ -122.88976334299997, 50.877501283000122 ], [ -122.888164438999965, 50.877456883000036 ], [ -122.88807634799997, 50.878721522000035 ], [ -122.887535499999956, 50.878706498000035 ], [ -122.887499552999884, 50.879222435000067 ], [ -122.886686804999925, 50.879199853000081 ], [ -122.8866438539999, 50.879816154000089 ], [ -122.88580091599999, 50.879792727000037 ], [ -122.885768642999921, 50.880255675000065 ], [ -122.885095754999952, 50.88023696900013 ], [ -122.885069535999932, 50.880612990000067 ], [ -122.884819297999968, 50.880606033000049 ], [ -122.884791448999948, 50.881005397000109 ], [ -122.884146325999936, 50.880987458000106 ], [ -122.884115045999977, 50.881435912000079 ], [ -122.883526510999914, 50.881419543000035 ], [ -122.88349724399994, 50.881839026000144 ], [ -122.882403469999986, 50.881808597000038 ], [ -122.882374622, 50.882221953000069 ], [ -122.881076454999942, 50.882185824000075 ], [ -122.88101721299995, 50.883034283000072 ], [ -122.88048600399999, 50.883019496000067 ], [ -122.880457313999941, 50.883430297000068 ], [ -122.878180985999933, 50.883366897000066 ], [ -122.878121164, 50.8842228520001 ], [ -122.873993738999957, 50.884107778000057 ], [ -122.87392663899999, 50.885066552000097 ], [ -122.87307582699998, 50.885042811000083 ], [ -122.873061814999943, 50.885242972000079 ], [ -122.871724302999908, 50.885205638000109 ], [ -122.871711865999913, 50.88538320400005 ], [ -122.870010842999989, 50.885335702000084 ], [ -122.869996403999963, 50.885541746000037 ], [ -122.868808385999969, 50.885508554000076 ], [ -122.868775079999963, 50.885983675000048 ], [ -122.86309099799999, 50.885824692 ], [ -122.863151318999925, 50.884965778000051 ], [ -122.863225211999975, 50.883913572000033 ], [ -122.86425358299999, 50.883872001000036 ], [ -122.865135006999964, 50.88381078900008 ], [ -122.868293111999932, 50.883167006000129 ], [ -122.870042717999951, 50.882980495000012 ], [ -122.870524789999962, 50.882863709000027 ], [ -122.872375313999953, 50.882487708000085 ], [ -122.873952907999964, 50.882382306000089 ], [ -122.876214386999948, 50.881620400000024 ], [ -122.877495117, 50.88127999200006 ], [ -122.87823629799999, 50.880740205000059 ], [ -122.878777392999964, 50.880220401000052 ], [ -122.8790761, 50.88005799200009 ], [ -122.87983131099999, 50.879932701000051 ], [ -122.880741195999946, 50.879529592000033 ], [ -122.881580114999934, 50.879043991000067 ], [ -122.882677011999974, 50.878209395000091 ], [ -122.884342492999934, 50.877239514000102 ], [ -122.885610705999952, 50.876125803000093 ], [ -122.88751810199993, 50.875057600000055 ], [ -122.887618177999983, 50.874886693000114 ], [ -122.887845197999951, 50.874761409000079 ], [ -122.88763220599999, 50.874428107000043 ], [ -122.887689799999976, 50.874167510000042 ], [ -122.887790321999972, 50.873898300000086 ], [ -122.887577682999975, 50.873492403000085 ], [ -122.887606213999973, 50.873358505000063 ], [ -122.88793379399999, 50.873277306000027 ], [ -122.888019387999975, 50.873141995000026 ], [ -122.88900139899998, 50.872747493000098 ], [ -122.890552312999944, 50.872488295000046 ], [ -122.891973715999882, 50.871591108000082 ], [ -122.8927290889999, 50.870719498000014 ], [ -122.893256793999967, 50.870144097000107 ], [ -122.893457801999887, 50.869766691000038 ], [ -122.893359113999978, 50.869460510000096 ], [ -122.893101801999975, 50.869308110000084 ], [ -122.893061082999964, 50.869164199000089 ], [ -122.89317540399999, 50.868831002000078 ], [ -122.893715382999943, 50.868355304000019 ], [ -122.893476002999975, 50.867419610000127 ], [ -122.893861210999916, 50.867077810000083 ], [ -122.894416890999949, 50.865810211000024 ], [ -122.895157697999977, 50.865182107000088 ], [ -122.89584170699996, 50.864957109000052 ], [ -122.89609761899996, 50.864760607000029 ], [ -122.897078898999951, 50.864337587000094 ], [ -122.897662684999915, 50.863834804000064 ], [ -122.897932990999934, 50.863763613000124 ], [ -122.898401904999972, 50.863052907000082 ], [ -122.89834580199999, 50.86282789200002 ], [ -122.898461977999887, 50.862414894000018 ], [ -122.898758907999976, 50.862145702000056 ], [ -122.899173116000014, 50.862020407000088 ], [ -122.899343996999932, 50.861830986000129 ], [ -122.900099285999985, 50.860519292000077 ], [ -122.901909021999984, 50.858236301000062 ], [ -122.901696596999983, 50.857677986000063 ], [ -122.902449688, 50.857454395000097 ], [ -122.902934687999974, 50.857158091000038 ], [ -122.90337539899997, 50.856699487000064 ], [ -122.903916991999949, 50.855873512000095 ], [ -122.904088198999943, 50.855315212000093 ], [ -122.90394759499992, 50.854829615000035 ], [ -122.904515512999964, 50.854335400000146 ], [ -122.904972289999975, 50.853499293000056 ], [ -122.904661574999977, 50.852600695000078 ], [ -122.904733614999941, 50.852186196000048 ], [ -122.905902385, 50.850001491000043 ], [ -122.905959989999971, 50.849596989000091 ], [ -122.90634520199994, 50.84895040100006 ], [ -122.9064741, 50.848437688000061 ], [ -122.90640330299999, 50.848177101000047 ], [ -122.905511506999957, 50.847285503000073 ], [ -122.905612589999933, 50.846630414000117 ], [ -122.904817493999985, 50.846107687000057 ], [ -122.904421282999948, 50.845657598000066 ], [ -122.903894900999916, 50.845261704000066 ], [ -122.902789020999961, 50.84495409900007 ] ], [ [ -122.89880891199999, 50.842599539000027 ], [ -122.89880892, 50.842596359000076 ], [ -122.898690411999951, 50.842596257000103 ], [ -122.89880891199999, 50.842599539000027 ] ], [ [ -122.900514445999931, 50.84205826099999 ], [ -122.900513194999974, 50.84264674200012 ], [ -122.902136229999911, 50.842691670000079 ], [ -122.90214874699997, 50.842511018 ], [ -122.901501144999884, 50.842493094000098 ], [ -122.901593300999963, 50.841163226000056 ], [ -122.899664297999948, 50.841109814000077 ], [ -122.899664000999948, 50.841248186000072 ], [ -122.899237918999958, 50.841247819000053 ], [ -122.89923733799999, 50.841517600000032 ], [ -122.899663422999964, 50.841517968000048 ], [ -122.899662264999947, 50.842057531000108 ], [ -122.900514445999931, 50.84205826099999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.998708578042611", "sL_AssetLoss": "373.232", "sL_BldgLoss": "372.75", "sL_StrLoss": "368", "sL_NStrLoss": "4.75", "sL_ContLoss": "0.482", "geom_point": "0101000020E610000080C4A7E73AB55EC00A2E98F032654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82920500799996, 50.787146354000114 ], [ -122.834876445999939, 50.787307072000033 ], [ -122.834622684999957, 50.790896106000041 ], [ -122.834461983999987, 50.790891557000045 ], [ -122.834235960999962, 50.794087609000059 ], [ -122.828563666000022, 50.793926859000074 ], [ -122.828817929999957, 50.790337851000061 ], [ -122.828978627999959, 50.790342409000118 ], [ -122.82920500799996, 50.787146354000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999783930851632", "sL_AssetLoss": "128.1997", "sL_BldgLoss": "128.172", "sL_StrLoss": "128", "sL_NStrLoss": "0.172", "sL_ContLoss": "0.0277", "geom_point": "0101000020E6100000AFCEEF0329BE5EC09100A050F0814940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.969348980999911, 51.013148932000085 ], [ -122.972633634999966, 51.013237453000116 ], [ -122.972957220999902, 51.013621802000074 ], [ -122.972499704999905, 51.014682792000073 ], [ -122.974210720999935, 51.016508706000124 ], [ -122.974296607999975, 51.01670660000007 ], [ -122.974086182999883, 51.016871557000123 ], [ -122.969104761999972, 51.016737346000099 ], [ -122.969348980999911, 51.013148932000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.999687224670756", "sL_AssetLoss": "764.7662", "sL_BldgLoss": "764.527", "sL_StrLoss": "763", "sL_NStrLoss": "1.527", "sL_ContLoss": "0.2392", "geom_point": "0101000020E6100000630B6A8D7BB65EC0DDE4D8F6CD6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.844635822999948, 50.860342432000074 ], [ -122.844638512999893, 50.859533091000095 ], [ -122.843359768000013, 50.859531382000036 ], [ -122.84336519099999, 50.85791269900006 ], [ -122.843791423999974, 50.857913270000083 ], [ -122.84379412699991, 50.857103928000079 ], [ -122.844220354999919, 50.857104497000073 ], [ -122.844221251999969, 50.856834716000108 ], [ -122.844647475999949, 50.856835285000059 ], [ -122.84464837199999, 50.856565504000052 ], [ -122.845074594999986, 50.856566070000049 ], [ -122.845078169000018, 50.855486949000131 ], [ -122.845930591999959, 50.855488076000086 ], [ -122.845932368999954, 50.854948515000046 ], [ -122.845506163999971, 50.85494795200006 ], [ -122.84551151, 50.853329267000035 ], [ -122.844659126999943, 50.853328136000108 ], [ -122.844660552999954, 50.852898911000075 ], [ -122.844661814999938, 50.852518792000055 ], [ -122.845087998999986, 50.852519360000066 ], [ -122.845088892999939, 50.852249579000087 ], [ -122.84551507499999, 50.852250143000127 ], [ -122.845515267999971, 50.852191716000021 ], [ -122.842726854999981, 50.852113120000105 ], [ -122.842732128999941, 50.852038446000151 ], [ -122.84247582799999, 50.852031219000054 ], [ -122.842938289999935, 50.851796013000047 ], [ -122.844673410000013, 50.851618 ], [ -122.845326306999965, 50.851709108000094 ], [ -122.845696595999968, 50.85178888600008 ], [ -122.846163685999912, 50.851889992000061 ], [ -122.846988491999966, 50.851414288000029 ], [ -122.848623586999963, 50.851110902000109 ], [ -122.84899370899997, 50.850967110000063 ], [ -122.849633301999944, 50.850779106000111 ], [ -122.849804000999924, 50.850653807000036 ], [ -122.850289210999946, 50.85001569800005 ], [ -122.850532097999945, 50.849396193000075 ], [ -122.85069081799999, 50.848541701000038 ], [ -122.850650693999981, 50.847966300000067 ], [ -122.850494584, 50.847561791000011 ], [ -122.849590913999961, 50.846238697000054 ], [ -122.849350607999909, 50.845599288000102 ], [ -122.849368043999931, 50.845573412000064 ], [ -122.850222021999954, 50.844306102000068 ], [ -122.850322905999931, 50.844045409000081 ], [ -122.850280397999967, 50.843639507000063 ], [ -122.850538804999942, 50.843439904000071 ], [ -122.853268840999988, 50.843516682000022 ], [ -122.853391686999956, 50.841771158000086 ], [ -122.85907013799999, 50.84193063900004 ], [ -122.858905044999972, 50.844280648000094 ], [ -122.858818006, 50.845519502000037 ], [ -122.857695485999983, 50.845487999000106 ], [ -122.857555272999932, 50.847482828000118 ], [ -122.856221266, 50.847445375000092 ], [ -122.856182759999939, 50.847992958000113 ], [ -122.856182071999925, 50.848217043000012 ], [ -122.856167002999953, 50.848217025000061 ], [ -122.856067438999943, 50.849632760000105 ], [ -122.855325461999954, 50.84961192100004 ], [ -122.85532477199996, 50.849834677000047 ], [ -122.854898612999946, 50.849834148000092 ], [ -122.854896102999987, 50.850643491000049 ], [ -122.854469934999926, 50.850642960000101 ], [ -122.854467415999977, 50.851452303000016 ], [ -122.85404124199998, 50.8514517710001 ], [ -122.854040398999956, 50.851721552000065 ], [ -122.853614221999948, 50.851721018000035 ], [ -122.853613377999977, 50.851990800000067 ], [ -122.852668629999954, 50.851989611000121 ], [ -122.85233483899998, 50.851989190000111 ], [ -122.852338246999949, 50.850910065000022 ], [ -122.852764415999971, 50.850910604000092 ], [ -122.852766114999966, 50.850371041000066 ], [ -122.853192280999934, 50.850371578000129 ], [ -122.853194819999942, 50.849562235000079 ], [ -122.85357397099996, 50.849562711000054 ], [ -122.852342607999958, 50.8495280980001 ], [ -122.852341652999954, 50.849830941000072 ], [ -122.851915491999932, 50.849830401000133 ], [ -122.851913784999979, 50.850369963000077 ], [ -122.851487618999926, 50.850369421000067 ], [ -122.851485906999983, 50.850908983000096 ], [ -122.851059735999954, 50.850908440000033 ], [ -122.851058876999971, 50.851178222000087 ], [ -122.84983848499995, 50.851176658000057 ], [ -122.84978145499997, 50.851985931000051 ], [ -122.850630121000023, 50.85198702000006 ], [ -122.85062925899993, 50.852256800000127 ], [ -122.852367911999977, 50.852259013000051 ], [ -122.853186350999977, 50.85226004500003 ], [ -122.85318381099998, 50.853069388000108 ], [ -122.852757621999942, 50.853068851000039 ], [ -122.852755922, 50.853608412000042 ], [ -122.852329727999972, 50.853607874000026 ], [ -122.852328875999902, 50.853877655000048 ], [ -122.851902678999963, 50.853877115000017 ], [ -122.851900969999946, 50.85441667700011 ], [ -122.851474767999932, 50.85441613600004 ], [ -122.851473054999971, 50.854955697000094 ], [ -122.851046848999943, 50.854955154000031 ], [ -122.851045128999942, 50.855494716000081 ], [ -122.85061891699999, 50.855494171000082 ], [ -122.850616332999905, 50.856303514000047 ], [ -122.849916512999954, 50.856302616000107 ], [ -122.84976389499991, 50.856302419000045 ], [ -122.849763028999931, 50.85657220000008 ], [ -122.84933680599994, 50.856571650000014 ], [ -122.849335937999939, 50.856841431000085 ], [ -122.84890971399993, 50.856840881000061 ], [ -122.848908841999943, 50.857110661000057 ], [ -122.848482614999966, 50.85711010800005 ], [ -122.848480866999978, 50.857649669000047 ], [ -122.848054636999947, 50.857649116000104 ], [ -122.848052882, 50.858188677000108 ], [ -122.847626647999974, 50.858188121000069 ], [ -122.84762488899996, 50.85872768200003 ], [ -122.847198646999971, 50.858727126000062 ], [ -122.847197765999908, 50.858996906000122 ], [ -122.846345278999976, 50.858995788000115 ], [ -122.846341732999946, 50.860074909000112 ], [ -122.845915479999974, 50.860074347000115 ], [ -122.84591459, 50.860344127000076 ], [ -122.844635822999948, 50.860342432000074 ] ], [ [ -122.848426950999951, 50.85198418000008 ], [ -122.848651590999935, 50.851984471000073 ], [ -122.848427375999961, 50.851978159000083 ], [ -122.848426950999951, 50.85198418000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999715742101781", "sL_AssetLoss": "119.2579", "sL_BldgLoss": "119.224", "sL_StrLoss": "119", "sL_NStrLoss": "0.224", "sL_ContLoss": "0.0339", "geom_point": "0101000020E6100000A23E0B3A48B65EC00D57A415A16C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.846658298999984, 50.848185595000089 ], [ -122.845240190999974, 50.847348211000039 ], [ -122.84498568, 50.84694229600003 ], [ -122.845908587999972, 50.847114602000012 ], [ -122.846600312999925, 50.84710235700004 ], [ -122.846598665999963, 50.847125712000022 ], [ -122.847236544999987, 50.847126548000098 ], [ -122.847234027999889, 50.847897219000117 ], [ -122.848728738999966, 50.847939303000011 ], [ -122.848755953999984, 50.847553207000047 ], [ -122.847941057999932, 50.847530266000035 ], [ -122.847972941999927, 50.847078047000103 ], [ -122.848721010999952, 50.847064793000129 ], [ -122.848890402, 50.847279798000109 ], [ -122.849686180999967, 50.847829598000011 ], [ -122.850023095999987, 50.848414912000116 ], [ -122.85009381499999, 50.84901739 ], [ -122.849976018999925, 50.84926461500006 ], [ -122.849973226999964, 50.849264536000113 ], [ -122.849972735999955, 50.849271506000036 ], [ -122.849721306, 50.849799187 ], [ -122.84910749299992, 50.85044579700012 ], [ -122.848836994999942, 50.850643796000021 ], [ -122.848355006999938, 50.850777692000086 ], [ -122.847985801999954, 50.850408785000035 ], [ -122.847193584999914, 50.849265203000051 ], [ -122.846658298999984, 50.848185595000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99913710886053", "sL_AssetLoss": "154.133", "sL_BldgLoss": "154", "sL_StrLoss": "153", "sL_NStrLoss": "1", "sL_ContLoss": "0.133", "geom_point": "0101000020E6100000CC93AD2636B35EC09949D40BBE664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.796765391999884, 50.803793014000107 ], [ -122.796977901, 50.80364059100004 ], [ -122.797842889999941, 50.803767390000118 ], [ -122.798070200999987, 50.803633487000049 ], [ -122.798868913999968, 50.802951292000053 ], [ -122.799298301999926, 50.802142395 ], [ -122.799355615999943, 50.801783491000101 ], [ -122.79928739399999, 50.801360514000081 ], [ -122.799019600999912, 50.800981589000031 ], [ -122.797631111999962, 50.800125710000032 ], [ -122.79722555099994, 50.799936064000136 ], [ -122.802718323999926, 50.800093249000028 ], [ -122.802461910999966, 50.803682157000075 ], [ -122.801861520999964, 50.803664989000026 ], [ -122.801754671999944, 50.805160071000095 ], [ -122.796523626999928, 50.805010354000039 ], [ -122.796661496999931, 50.804818401 ], [ -122.796765391999884, 50.803793014000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999830269131124", "sL_AssetLoss": "116.0661", "sL_BldgLoss": "116.0464", "sL_StrLoss": "116", "sL_NStrLoss": "0.0464", "sL_ContLoss": "0.0197", "geom_point": "0101000020E6100000F0DB730DF1B65EC089516384687E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.85594441799995, 50.989563904000057 ], [ -122.855982738999955, 50.989020832000058 ], [ -122.855030721, 50.988994181000081 ], [ -122.855283967999952, 50.985405909000107 ], [ -122.860980714999982, 50.985565268000094 ], [ -122.860942457999926, 50.986108343000069 ], [ -122.861894416999974, 50.98613494500006 ], [ -122.861641697999943, 50.989723228000067 ], [ -122.85594441799995, 50.989563904000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999812333962904", "sL_AssetLoss": "116.1638", "sL_BldgLoss": "116.142", "sL_StrLoss": "116", "sL_NStrLoss": "0.142", "sL_ContLoss": "0.0218", "geom_point": "0101000020E6100000B2C7FABCD8785EC07D8007693A5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.888062932999958, 50.741319543 ], [ -121.89019465799997, 50.741398052000058 ], [ -121.88987402199993, 50.744892686000078 ], [ -121.889865567999919, 50.744984816000091 ], [ -121.88950625399994, 50.744971586000126 ], [ -121.889429899000021, 50.745803625000065 ], [ -121.883767606999967, 50.745594980000057 ], [ -121.883818, 50.745046601000077 ], [ -121.887577885000013, 50.744987254000137 ], [ -121.887120959, 50.744167041000026 ], [ -121.888322804999945, 50.744178371000018 ], [ -121.888309409999948, 50.743963418000114 ], [ -121.888062932999958, 50.741319543 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999449350549482", "sL_AssetLoss": "145.6462", "sL_BldgLoss": "145.566", "sL_StrLoss": "145", "sL_NStrLoss": "0.566", "sL_ContLoss": "0.0802", "geom_point": "0101000020E6100000E5C53667CC975EC0C5628A285C564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.371339666999944, 50.672751607000059 ], [ -122.374021721999924, 50.672838884000093 ], [ -122.37373178199999, 50.676427279000109 ], [ -122.368697582999957, 50.676263408000096 ], [ -122.369205902999937, 50.675984496000105 ], [ -122.369435098999986, 50.675825012000111 ], [ -122.369665115999908, 50.675430391000127 ], [ -122.369712504999924, 50.675061602000042 ], [ -122.369573307999971, 50.674926303000063 ], [ -122.369576280999922, 50.674728293000086 ], [ -122.369777203999945, 50.674558809000068 ], [ -122.369851898999954, 50.674144410000117 ], [ -122.369711012999971, 50.674081706000038 ], [ -122.369927119999929, 50.673839595000068 ], [ -122.371339666999944, 50.672751607000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999641531485123", "sL_AssetLoss": "230.4247", "sL_BldgLoss": "230.3421", "sL_StrLoss": "230", "sL_NStrLoss": "0.3421", "sL_ContLoss": "0.0826", "geom_point": "0101000020E61000006E4528D710765EC0D4ED0D3AF85F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.843032216, 50.747220368000058 ], [ -121.848694522999978, 50.747431076000034 ], [ -121.848598466999988, 50.74846741699999 ], [ -121.84840701899999, 50.750532811000042 ], [ -121.848382905999955, 50.750540394000026 ], [ -121.847922694999951, 50.750788195000084 ], [ -121.847655010999929, 50.750991397000071 ], [ -121.84671230399999, 50.750956330000065 ], [ -121.846637415999922, 50.751763843000106 ], [ -121.84590172599998, 50.752322275000012 ], [ -121.842377115999909, 50.752191076000081 ], [ -121.840920354999952, 50.752136818000118 ], [ -121.841253411999972, 50.748550228000127 ], [ -121.842903082999968, 50.748611671000063 ], [ -121.843032216, 50.747220368000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.893957725428795", "sL_AssetLoss": "0.14051", "sL_BldgLoss": "0.12561", "sL_StrLoss": "0.00661", "sL_NStrLoss": "0.119", "sL_ContLoss": "0.0149", "geom_point": "0101000020E6100000575CDA7809785EC03CFE0393B84F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.877453297, 50.621090012000096 ], [ -121.878566081999978, 50.621131222000066 ], [ -121.878385603999988, 50.623098323000157 ], [ -121.878236945999902, 50.624718464000047 ], [ -121.872589952999988, 50.624509222000057 ], [ -121.872919536999959, 50.620921996000021 ], [ -121.877453297, 50.621090012000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999521710626683", "sL_AssetLoss": "145.5186", "sL_BldgLoss": "145.449", "sL_StrLoss": "145", "sL_NStrLoss": "0.449", "sL_ContLoss": "0.0696", "geom_point": "0101000020E6100000F2998975AC765EC07E705F83154D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.853173199999901, 50.600517832000079 ], [ -121.85570547899998, 50.600612194000071 ], [ -121.855374669999975, 50.604199456000067 ], [ -121.853708842999964, 50.604137388000076 ], [ -121.853525205999944, 50.603648890000045 ], [ -121.853021215999959, 50.602888300000075 ], [ -121.852807418999973, 50.602374207000047 ], [ -121.852834881999968, 50.60068369500005 ], [ -121.853173199999901, 50.600517832000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99954467196087", "sL_AssetLoss": "135.5067", "sL_BldgLoss": "135.445", "sL_StrLoss": "135", "sL_NStrLoss": "0.445", "sL_ContLoss": "0.0617", "geom_point": "0101000020E6100000C3FDF45DD9755EC089FB1BF6734D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.842639226999935, 50.603348165000128 ], [ -121.844380087999966, 50.603413203000102 ], [ -121.844048355999917, 50.607000420000112 ], [ -121.84303528, 50.606962575000068 ], [ -121.838403746, 50.606789441000082 ], [ -121.83873592799992, 50.603202240000051 ], [ -121.842639226999935, 50.603348165000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.999890608952387", "sL_AssetLoss": "296.27653", "sL_BldgLoss": "296.24412", "sL_StrLoss": "296.00302", "sL_NStrLoss": "0.2411", "sL_ContLoss": "0.03241", "geom_point": "0101000020E6100000F83F55BFB16F5EC0D375345011704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.743739179, 50.875826122000042 ], [ -121.743842710999957, 50.874739937000072 ], [ -121.743154048999941, 50.874713755000045 ], [ -121.743216756, 50.87405596100006 ], [ -121.741998251999945, 50.874009625000078 ], [ -121.742008665999947, 50.873900404000075 ], [ -121.74194942299999, 50.873899765000054 ], [ -121.741956683999945, 50.873630050000067 ], [ -121.741530408999921, 50.873625454000099 ], [ -121.74153438099999, 50.873477995000094 ], [ -121.741190257999932, 50.87346490500007 ], [ -121.74120101599999, 50.873352108000091 ], [ -121.741111400999927, 50.873351141000057 ], [ -121.741118381999968, 50.873092043000042 ], [ -121.740180947999974, 50.873056379000133 ], [ -121.740192857999943, 50.872931522000066 ], [ -121.739397527999984, 50.872901258000063 ], [ -121.739570005999965, 50.871093469000101 ], [ -121.73958899499992, 50.870894426000064 ], [ -121.740000202999909, 50.871081190000076 ], [ -121.74053799, 50.871185193000088 ], [ -121.742400912999983, 50.871150993000114 ], [ -121.744037404999972, 50.87155550300011 ], [ -121.745433607999971, 50.872488297000082 ], [ -121.747357076999947, 50.873426895000073 ], [ -121.747831923999968, 50.873737405000035 ], [ -121.749006400999974, 50.874955093000125 ], [ -121.749580386999924, 50.875293994000096 ], [ -121.749817498, 50.876545910000068 ], [ -121.749737507999967, 50.877965792000033 ], [ -121.749880731999951, 50.878680820000049 ], [ -121.749288710999963, 50.878658347000105 ], [ -121.748433314999971, 50.878625871000033 ], [ -121.748340583999905, 50.879599694000021 ], [ -121.742662014999937, 50.879383934000053 ], [ -121.74300390099998, 50.875798168000067 ], [ -121.743739179, 50.875826122000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999510020852916", "sL_AssetLoss": "147.5573", "sL_BldgLoss": "147.485", "sL_StrLoss": "147", "sL_NStrLoss": "0.485", "sL_ContLoss": "0.0723", "geom_point": "0101000020E61000000C3A217490945EC03303CF9C79594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.317543368999949, 50.701073076000071 ], [ -122.317545971999891, 50.700893816000068 ], [ -122.317121192999963, 50.700891328000097 ], [ -122.317132945999973, 50.700082020000124 ], [ -122.317557717999975, 50.700084507000064 ], [ -122.317561100999967, 50.699851467000016 ], [ -122.317659842999888, 50.699815312000119 ], [ -122.318411173999934, 50.699819707000088 ], [ -122.31841508399999, 50.699549937 ], [ -122.318839850999964, 50.699552420000089 ], [ -122.318843760999954, 50.699282650000114 ], [ -122.319268525, 50.699285131000103 ], [ -122.319272106999918, 50.699037736000086 ], [ -122.319326788999945, 50.699015678000087 ], [ -122.319697194999989, 50.699017841000035 ], [ -122.319699736999922, 50.698842085000145 ], [ -122.319866461999951, 50.698749036000024 ], [ -122.320550618999974, 50.698753025 ], [ -122.320557098999942, 50.698304555000057 ], [ -122.32066180899993, 50.698214088000036 ], [ -122.321407926999896, 50.698218433000086 ], [ -122.321411819999952, 50.69794866400013 ], [ -122.322261326999964, 50.697953606000091 ], [ -122.322265215999934, 50.697683836000081 ], [ -122.32268996599997, 50.697686304000058 ], [ -122.322693851999972, 50.697416534000062 ], [ -122.323118601999937, 50.697419 ], [ -122.323122484999885, 50.697149231000033 ], [ -122.325670964999958, 50.697164 ], [ -122.325662779999945, 50.697734774000075 ], [ -122.325655490999949, 50.698243081000065 ], [ -122.32395646499999, 50.698233241000054 ], [ -122.323952585999947, 50.698503011000099 ], [ -122.323527827999982, 50.698500547 ], [ -122.323523946999941, 50.698770317000033 ], [ -122.323099183999915, 50.698767851000099 ], [ -122.323091416999915, 50.699307392000016 ], [ -122.322241885999929, 50.699302456000062 ], [ -122.322237996999917, 50.699572226000093 ], [ -122.32138846099997, 50.699567283000114 ], [ -122.321384568000028, 50.699837054000106 ], [ -122.320959798, 50.699834580000065 ], [ -122.320955901999952, 50.700104351000078 ], [ -122.320106354999965, 50.700099399000052 ], [ -122.320102453999979, 50.700369169000055 ], [ -122.319677677999934, 50.700366690000102 ], [ -122.319673775999959, 50.700636460000041 ], [ -122.319248997999978, 50.700633981000109 ], [ -122.319245091999946, 50.700903751000084 ], [ -122.318820312999904, 50.700901269000042 ], [ -122.318816402999971, 50.70117103900008 ], [ -122.317542055999979, 50.701163586000042 ], [ -122.317543368999949, 50.701073076000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999817200313228", "sL_AssetLoss": "360.5039", "sL_BldgLoss": "360.438", "sL_StrLoss": "360", "sL_NStrLoss": "0.438", "sL_ContLoss": "0.0659", "geom_point": "0101000020E6100000B2934DFB1E785EC0386D001592604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.878194448999977, 50.757928475000035 ], [ -121.878207345999954, 50.757389005000135 ], [ -121.877356866999946, 50.757380821000027 ], [ -121.877363320999962, 50.757111087000077 ], [ -121.876938083999903, 50.757106992000047 ], [ -121.876944539999926, 50.75683725800009 ], [ -121.876519304999988, 50.756833162000071 ], [ -121.876525762999933, 50.756563428 ], [ -121.876100530999921, 50.756559330000094 ], [ -121.876106993999969, 50.756289596000101 ], [ -121.875681762999974, 50.756285497000079 ], [ -121.875694689999989, 50.755746028000083 ], [ -121.87526946499996, 50.75574192800012 ], [ -121.875250067999929, 50.75655113100008 ], [ -121.874824836999949, 50.75654702800005 ], [ -121.874818367999964, 50.756816762000042 ], [ -121.873542667999956, 50.756804447000022 ], [ -121.873549140999955, 50.756534713000057 ], [ -121.873123911999969, 50.756530604000019 ], [ -121.873149820999956, 50.755451668000063 ], [ -121.872724599999927, 50.7554475580001 ], [ -121.872711639999949, 50.755987027000046 ], [ -121.871010736999963, 50.755970573000049 ], [ -121.871030205999929, 50.75516137000006 ], [ -121.871455423999933, 50.755165485000063 ], [ -121.871468397999934, 50.754626018000053 ], [ -121.871893611999923, 50.754630132000081 ], [ -121.871900096999951, 50.754360398000046 ], [ -121.872325307999958, 50.754364510000066 ], [ -121.872331790999937, 50.754094777000034 ], [ -121.873182207999946, 50.754102997000075 ], [ -121.873195161999945, 50.753563529000076 ], [ -121.873620366999944, 50.753567637000039 ], [ -121.873626841999965, 50.753297903000096 ], [ -121.87320163899993, 50.753293794000101 ], [ -121.87325344899989, 50.751135920000074 ], [ -121.874954179999946, 50.751152341000036 ], [ -121.874947714999934, 50.751422075000072 ], [ -121.875372898999942, 50.751426177000035 ], [ -121.875353506999957, 50.752235380000073 ], [ -121.87577870099993, 50.752239480000085 ], [ -121.875752851999934, 50.753318419000067 ], [ -121.876178054999954, 50.753322517000122 ], [ -121.87619743399992, 50.752513314000069 ], [ -121.876622627999907, 50.752517411000056 ], [ -121.876648455999927, 50.751438471000043 ], [ -121.877924014, 50.751450753000015 ], [ -121.877917562999968, 50.751720488000068 ], [ -121.87834275199998, 50.751724578000044 ], [ -121.878349198999913, 50.751454843000054 ], [ -121.879624755999956, 50.751467106000071 ], [ -121.879618315999963, 50.751736841000067 ], [ -121.880043506999954, 50.751740925000036 ], [ -121.880024195999965, 50.752550129000042 ], [ -121.880449389999967, 50.75255421300006 ], [ -121.880442956999971, 50.752823947000103 ], [ -121.88086815299999, 50.752828028000067 ], [ -121.88086172099996, 50.753097764000088 ], [ -121.881286923999937, 50.753101844000071 ], [ -121.881267631999975, 50.753911049000109 ], [ -121.880842423999951, 50.753906969000113 ], [ -121.880823124999949, 50.754716173000062 ], [ -121.881248341999978, 50.75472025400002 ], [ -121.881241907999964, 50.754989988000069 ], [ -121.881667127999918, 50.754994066000044 ], [ -121.881660699999912, 50.755263802000066 ], [ -121.88208592099997, 50.755267879000023 ], [ -121.882079494999985, 50.755537614000033 ], [ -121.88250471799995, 50.755541689000097 ], [ -121.882479022999973, 50.756620630000064 ], [ -121.881203320999944, 50.756608398000012 ], [ -121.881209753999897, 50.756338663000115 ], [ -121.880784522999974, 50.756334582000072 ], [ -121.880790956999974, 50.75606484800003 ], [ -121.880365728999891, 50.756060766000061 ], [ -121.880372163999979, 50.755791031000086 ], [ -121.879946938999936, 50.755786947000054 ], [ -121.87995337699999, 50.755517213000061 ], [ -121.879528155999964, 50.755513127 ], [ -121.879541036999939, 50.754973659000022 ], [ -121.879115817999931, 50.754969572000029 ], [ -121.879135146999914, 50.754160368000036 ], [ -121.878709935999922, 50.754156280000103 ], [ -121.878703491999943, 50.754426014000067 ], [ -121.878278278999943, 50.754421925000045 ], [ -121.878258933999945, 50.755231130000091 ], [ -121.878684155999963, 50.755235219000014 ], [ -121.87867126299993, 50.755774688000059 ], [ -121.879096487999917, 50.755778776000099 ], [ -121.879083601999966, 50.75631824600007 ], [ -121.879508831999914, 50.756322332000124 ], [ -121.879502390999932, 50.756592067000049 ], [ -121.879927622999915, 50.756596152000064 ], [ -121.87992118399994, 50.756865886000121 ], [ -121.880346418999977, 50.756869970000118 ], [ -121.880320673999933, 50.75794890900012 ], [ -121.878194448999977, 50.757928475000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99954483386436", "sL_AssetLoss": "139.5095", "sL_BldgLoss": "139.446", "sL_StrLoss": "139", "sL_NStrLoss": "0.446", "sL_ContLoss": "0.0635", "geom_point": "0101000020E610000015F2B5253A755EC09EF419ABA8484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.829020546999985, 50.565747923000124 ], [ -121.834659966999979, 50.565959387000106 ], [ -121.834327736999981, 50.56954673700011 ], [ -121.82868786799996, 50.569335258000073 ], [ -121.829020546999985, 50.565747923000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999514050951543", "sL_AssetLoss": "139.5208", "sL_BldgLoss": "139.453", "sL_StrLoss": "139", "sL_NStrLoss": "0.453", "sL_ContLoss": "0.0678", "geom_point": "0101000020E61000002C003A8ABB785EC014A1C7DEC1504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.883786998999966, 50.629018475000038 ], [ -121.889434612999963, 50.629227148000069 ], [ -121.889106283999979, 50.632814386000071 ], [ -121.888868440999914, 50.632805604000055 ], [ -121.88345822299999, 50.632605698000162 ], [ -121.883649438999953, 50.630519446000029 ], [ -121.883786998999966, 50.629018475000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999787316726569", "sL_AssetLoss": "587.7284", "sL_BldgLoss": "587.6034", "sL_StrLoss": "587", "sL_NStrLoss": "0.6034", "sL_ContLoss": "0.125", "geom_point": "0101000020E6100000FCA73C3659755EC08928477D69614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.835558173999956, 50.762037090000113 ], [ -121.835563380999986, 50.761827341000085 ], [ -121.835394660999953, 50.761825656000092 ], [ -121.835138105999988, 50.761823093000025 ], [ -121.835147588999973, 50.761441225000084 ], [ -121.83515150099997, 50.761283633000026 ], [ -121.835045625999925, 50.761282576000035 ], [ -121.834730283999974, 50.76127942400008 ], [ -121.834722005999978, 50.761368394000058 ], [ -121.829058004999979, 50.761156981000028 ], [ -121.829392075999934, 50.757570466000054 ], [ -121.83162287, 50.757653766000082 ], [ -121.831770266999982, 50.756070319000081 ], [ -121.832001560999927, 50.756078953000078 ], [ -121.837433638999954, 50.756281596000107 ], [ -121.83710021899995, 50.759868140000052 ], [ -121.835613382999966, 50.75981270100003 ], [ -121.835610242999948, 50.759939228000086 ], [ -121.83603549899999, 50.759943474000089 ], [ -121.836028808000023, 50.760213204000095 ], [ -121.836454065999973, 50.760217448000112 ], [ -121.836427307999926, 50.761296370000075 ], [ -121.836852576999945, 50.761300612000056 ], [ -121.83683920199995, 50.761840073000094 ], [ -121.837264474999969, 50.761844314000079 ], [ -121.837258124999948, 50.76210047100011 ], [ -121.83763722099998, 50.762114602000104 ], [ -121.837303774999938, 50.765701123000042 ], [ -121.835888752999963, 50.765648372000051 ], [ -121.835413530999972, 50.765630652000034 ], [ -121.835407733999915, 50.76569297500005 ], [ -121.829721927999955, 50.765709756000021 ], [ -121.830055176999977, 50.762131892000127 ], [ -121.831945265999977, 50.762202455000107 ], [ -121.83197311, 50.761903337000049 ], [ -121.835529872, 50.762036034000104 ], [ -121.835558173999956, 50.762037090000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.9620179034552", "sL_AssetLoss": "0.11953", "sL_BldgLoss": "0.11499", "sL_StrLoss": "0.00399", "sL_NStrLoss": "0.111", "sL_ContLoss": "0.00454", "geom_point": "0101000020E61000000C7DEA37D7745EC0D7B759DDE6704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.830037569999945, 50.880221242000147 ], [ -121.831057141999921, 50.880259205000065 ], [ -121.83101450099997, 50.8802929840001 ], [ -121.830836044999913, 50.880385460000134 ], [ -121.830352191999935, 50.88063621000007 ], [ -121.82955339899992, 50.881294202000049 ], [ -121.829110322999952, 50.881461600000058 ], [ -121.828341598999955, 50.881752053000113 ], [ -121.828162312999922, 50.881819797000041 ], [ -121.82774380799998, 50.882049009000092 ], [ -121.827715903999945, 50.882072073000089 ], [ -121.826754891999911, 50.882866505000088 ], [ -121.825874996999957, 50.883406304000118 ], [ -121.825129590999964, 50.88370400200008 ], [ -121.82436056100002, 50.883876562000083 ], [ -121.823670011999937, 50.884031495 ], [ -121.822511277999951, 50.884013880000083 ], [ -121.821810998999979, 50.884041196000091 ], [ -121.821388236999951, 50.884057668000018 ], [ -121.821486635000014, 50.883006353000084 ], [ -121.821857767999958, 50.88302020000004 ], [ -121.821899742999975, 50.882571662000096 ], [ -121.822633667999952, 50.88259904100007 ], [ -121.822658225999987, 50.8823365800001 ], [ -121.82346546, 50.882366688000012 ], [ -121.823501810999971, 50.88197809900003 ], [ -121.823511826999933, 50.881978472000057 ], [ -121.823609368999939, 50.880935699000062 ], [ -121.824848695999961, 50.880981913 ], [ -121.824870725999972, 50.880746328000043 ], [ -121.826315346999976, 50.88080018000008 ], [ -121.826356085999976, 50.880364362000137 ], [ -121.827012412999977, 50.880388822000064 ], [ -121.827018360999972, 50.880325179000089 ], [ -121.827647614999961, 50.880348626000078 ], [ -121.827658438999961, 50.880232794000086 ], [ -121.828300988999942, 50.88025673300011 ], [ -121.828310315999957, 50.88015690900005 ], [ -121.830037569999945, 50.880221242000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999459132247538", "sL_AssetLoss": "279.181", "sL_BldgLoss": "279.03", "sL_StrLoss": "278", "sL_NStrLoss": "1.03", "sL_ContLoss": "0.151", "geom_point": "0101000020E61000004951C2A7D4765EC0BE70216ED24B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.857402263999973, 50.588631057000057 ], [ -121.861193987999968, 50.588772222000038 ], [ -121.860914596999962, 50.59180680200005 ], [ -121.860863702999936, 50.592359552000097 ], [ -121.858350550999916, 50.592266003000063 ], [ -121.858073855999976, 50.595269012000067 ], [ -121.857516173999954, 50.595248245000072 ], [ -121.857492545999975, 50.595504625000068 ], [ -121.853427773999911, 50.595353177000064 ], [ -121.853033377999921, 50.594831598000091 ], [ -121.852307302999989, 50.594526791000114 ], [ -121.851936168999941, 50.594353159000093 ], [ -121.852178683999952, 50.591724984000038 ], [ -121.857164803999936, 50.591820816000094 ], [ -121.857195828999977, 50.591474083000023 ], [ -121.857275817999948, 50.590579771000101 ], [ -121.857402263999973, 50.588631057000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99941607583691", "sL_AssetLoss": "155.6709", "sL_BldgLoss": "155.58", "sL_StrLoss": "155", "sL_NStrLoss": "0.58", "sL_ContLoss": "0.0909", "geom_point": "0101000020E6100000597B6D7041965EC0CB7C0FB039584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.350171652999975, 50.687590612000022 ], [ -122.350865189999965, 50.687594477000061 ], [ -122.350854020999947, 50.688403793000091 ], [ -122.350429350999917, 50.688401427000038 ], [ -122.350425624999929, 50.688671199000048 ], [ -122.35000095299992, 50.688668832000069 ], [ -122.349997224999925, 50.688938603000061 ], [ -122.349572549999976, 50.688936235000035 ], [ -122.349568820999963, 50.689206007000053 ], [ -122.349144143, 50.689203637000084 ], [ -122.349140409999947, 50.689473408000076 ], [ -122.348291052999983, 50.68946866300012 ], [ -122.348287313999919, 50.689738435000088 ], [ -122.347862632000016, 50.68973606100009 ], [ -122.347858892999938, 50.690005832000097 ], [ -122.347434208999957, 50.690003456000092 ], [ -122.34743046499996, 50.690273227000027 ], [ -122.347005778999943, 50.690270849000072 ], [ -122.347002032999939, 50.690540620000078 ], [ -122.346577344999929, 50.690538242000066 ], [ -122.346573596999946, 50.690808013000051 ], [ -122.346148904999922, 50.690805633000082 ], [ -122.346145155999949, 50.691075404000081 ], [ -122.344871074999972, 50.691068250000122 ], [ -122.344871167999926, 50.691061554000044 ], [ -122.34488610399994, 50.68998916300005 ], [ -122.34531078699996, 50.689991549000098 ], [ -122.345314541, 50.689721777000052 ], [ -122.345739223999914, 50.689724162000054 ], [ -122.345742975999954, 50.689454390000094 ], [ -122.34616765599992, 50.689456773000082 ], [ -122.346175154999969, 50.688917229000019 ], [ -122.347024504000018, 50.688921990000047 ], [ -122.347028247999958, 50.688652218000044 ], [ -122.347877592999936, 50.688656972000018 ], [ -122.347881332999947, 50.688387200000079 ], [ -122.348306001999902, 50.688389575000059 ], [ -122.34830973899993, 50.688119804000031 ], [ -122.348734407, 50.688122177000139 ], [ -122.34873814099997, 50.687852405000086 ], [ -122.349162807, 50.687854777000069 ], [ -122.349166537999963, 50.68758500399999 ], [ -122.350171652999975, 50.687590612000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999599892334665", "sL_AssetLoss": "137.463", "sL_BldgLoss": "137.408", "sL_StrLoss": "137", "sL_NStrLoss": "0.408", "sL_ContLoss": "0.055", "geom_point": "0101000020E6100000A73BB266E2735EC0FC04ED6171464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.809993166999959, 50.548508784000056 ], [ -121.81367900799998, 50.548647715000122 ], [ -121.813586104999942, 50.549646269000142 ], [ -121.813345232999936, 50.552235078000102 ], [ -121.807707631000014, 50.552022530000045 ], [ -121.808041851999931, 50.548435183000031 ], [ -121.809993166999959, 50.548508784000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999490764316467", "sL_AssetLoss": "142.5666", "sL_BldgLoss": "142.494", "sL_StrLoss": "142", "sL_NStrLoss": "0.494", "sL_ContLoss": "0.0726", "geom_point": "0101000020E6100000589297902A955EC06B148A5B22594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330366233999939, 50.695572309000056 ], [ -122.331215700999948, 50.695577185000118 ], [ -122.33121953599999, 50.695307414000084 ], [ -122.331644266999945, 50.695309851000111 ], [ -122.331648099999924, 50.695040079000066 ], [ -122.335470656999973, 50.695061933000034 ], [ -122.335469734999947, 50.695127262000071 ], [ -122.335459220999965, 50.695871246000131 ], [ -122.333760276999939, 50.695861548000032 ], [ -122.333756454999971, 50.696131319000123 ], [ -122.332906978, 50.696126461000077 ], [ -122.332903152999918, 50.696396232000062 ], [ -122.332478411999944, 50.696393801000077 ], [ -122.332474583999954, 50.696663571000087 ], [ -122.331625096999957, 50.696658704000065 ], [ -122.33162126299996, 50.696928475000085 ], [ -122.33119651799997, 50.696926039000076 ], [ -122.3311926799999, 50.697195809000064 ], [ -122.330343184999947, 50.697190933000066 ], [ -122.33033934499997, 50.697460703000054 ], [ -122.329914593999973, 50.697458262000076 ], [ -122.329910748999964, 50.697728033000033 ], [ -122.327786987999914, 50.697715807000066 ], [ -122.327793499999942, 50.697260278000037 ], [ -122.327794700999931, 50.697176266000085 ], [ -122.327369952999931, 50.69717381500007 ], [ -122.327366678, 50.69740277300015 ], [ -122.3273622359999, 50.697713356000101 ], [ -122.326371739999942, 50.697707637000072 ], [ -122.326087980999958, 50.697705997000121 ], [ -122.326099577000022, 50.696896686000045 ], [ -122.327373812999951, 50.696904045000039 ], [ -122.327381529999954, 50.696364504000051 ], [ -122.328655748999964, 50.696371849000101 ], [ -122.328651897999976, 50.696641620000044 ], [ -122.329076638999936, 50.696644065000065 ], [ -122.329088186, 50.695834753000078 ], [ -122.330362392999973, 50.69584208000002 ], [ -122.330366233999939, 50.695572309000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999660388679826", "sL_AssetLoss": "131.3266", "sL_BldgLoss": "131.282", "sL_StrLoss": "131", "sL_NStrLoss": "0.282", "sL_ContLoss": "0.0446", "geom_point": "0101000020E6100000ABEDE4DB14725EC06E4CD390064B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.781829935999951, 50.584311632000059 ], [ -121.785512137999959, 50.584451245000061 ], [ -121.785175852999913, 50.588038367000053 ], [ -121.783431809999939, 50.5879722560001 ], [ -121.779533897999968, 50.587824400000024 ], [ -121.779870630999937, 50.584237294000083 ], [ -121.781829935999951, 50.584311632000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999823515493788", "sL_AssetLoss": "103.1252", "sL_BldgLoss": "103.107", "sL_StrLoss": "103", "sL_NStrLoss": "0.107", "sL_ContLoss": "0.0182", "geom_point": "0101000020E61000009802EB9BE8725EC0505C86E6D7724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.796033362999935, 50.895436496000038 ], [ -121.798456652999946, 50.895527413000131 ], [ -121.798119066999931, 50.899113266000086 ], [ -121.792437778999954, 50.898900032000043 ], [ -121.792636109999961, 50.896796265000013 ], [ -121.792775819999989, 50.895314195000068 ], [ -121.796033362999935, 50.895436496000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999564477231837", "sL_AssetLoss": "138.4543", "sL_BldgLoss": "138.394", "sL_StrLoss": "138", "sL_NStrLoss": "0.394", "sL_ContLoss": "0.0603", "geom_point": "0101000020E610000071C8C4B5338F5EC0F45DDFC1AE5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.239513179999975, 50.745788497000035 ], [ -122.240513721999903, 50.745822190000133 ], [ -122.24021262799999, 50.749409923000066 ], [ -122.237240940999982, 50.749309823000054 ], [ -122.234548314999969, 50.749219054000044 ], [ -122.234849861999933, 50.745631336000031 ], [ -122.239513179999975, 50.745788497000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999761504399254", "sL_AssetLoss": "232.2894", "sL_BldgLoss": "232.234", "sL_StrLoss": "232", "sL_NStrLoss": "0.234", "sL_ContLoss": "0.0554", "geom_point": "0101000020E610000073542415FC735EC0C2E160CA1B744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.809876516999978, 50.909580879000032 ], [ -121.809972763999966, 50.908555991000057 ], [ -121.80906275699999, 50.908521959000083 ], [ -121.809103958, 50.908083313000084 ], [ -121.80854876899997, 50.908062546000124 ], [ -121.808885584999956, 50.904476699000064 ], [ -121.809505257999916, 50.904499876000116 ], [ -121.809506258999988, 50.904489213000062 ], [ -121.81328918899996, 50.904630633000124 ], [ -121.81518833799997, 50.904701581000054 ], [ -121.815050081999985, 50.906175792000091 ], [ -121.815895514, 50.90620736500005 ], [ -121.815683447999959, 50.908468849 ], [ -121.815559246999925, 50.909793227000087 ], [ -121.809876516999978, 50.909580879000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999849595469128", "sL_AssetLoss": "101.19376", "sL_BldgLoss": "101.17854", "sL_StrLoss": "101.00364", "sL_NStrLoss": "0.1749", "sL_ContLoss": "0.01522", "geom_point": "0101000020E61000006C578DCA726E5EC09FD78E980F6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.727588890999968, 50.861481716000107 ], [ -121.727612587999943, 50.861233970000036 ], [ -121.727245356999973, 50.861219952000077 ], [ -121.723045509999977, 50.861059542000099 ], [ -121.723099064999985, 50.860500223000024 ], [ -121.722879641999967, 50.860491838000129 ], [ -121.723037270999939, 50.858845607000028 ], [ -121.722807849999924, 50.858836840000095 ], [ -121.722839707999967, 50.858504133000125 ], [ -121.722211551999948, 50.858480124000053 ], [ -121.7222262499999, 50.858326647000133 ], [ -121.721456035999921, 50.858297204000088 ], [ -121.721646856999953, 50.856304874000045 ], [ -121.72167655599999, 50.855994760000023 ], [ -121.721819293999914, 50.856142699000081 ], [ -121.722396174999943, 50.856337792000048 ], [ -121.72312088399994, 50.856373390000094 ], [ -121.725479682999946, 50.856884697000098 ], [ -121.726389800999982, 50.857307708000072 ], [ -121.726738492999985, 50.857563992000053 ], [ -121.726914591999943, 50.857863111000079 ], [ -121.727341516999957, 50.858424306000053 ], [ -121.727375808999952, 50.858686290000051 ], [ -121.727387702999948, 50.859845608000064 ], [ -121.727133094999928, 50.86033840000006 ], [ -121.727167703999953, 50.860563401000086 ], [ -121.727946890999988, 50.86119291100006 ], [ -121.728484692999942, 50.861773995000071 ], [ -121.729824910999966, 50.862688305000056 ], [ -121.731322487999975, 50.863037309000049 ], [ -121.731629910999928, 50.863732306000045 ], [ -121.732033761999944, 50.864103444000108 ], [ -121.731615870999974, 50.864087509000107 ], [ -121.727355178999943, 50.863924951000072 ], [ -121.727588890999968, 50.861481716000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999310962895577", "sL_AssetLoss": "133.2294", "sL_BldgLoss": "133.1376", "sL_StrLoss": "132.0306", "sL_NStrLoss": "1.107", "sL_ContLoss": "0.0918", "geom_point": "0101000020E610000056B26B94D8735EC0C867AA0E56494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.812625101999956, 50.575432844000041 ], [ -121.812642664999913, 50.574734283000041 ], [ -121.807391226, 50.574536375000072 ], [ -121.807433369999941, 50.574084332000041 ], [ -121.807047142999963, 50.574069767000047 ], [ -121.807369360999957, 50.570613601000048 ], [ -121.807381580999916, 50.570482517000109 ], [ -121.810249253999956, 50.570590632000105 ], [ -121.810682110999934, 50.57096899500003 ], [ -121.81135090599993, 50.571362006000044 ], [ -121.812716801999926, 50.572635303000013 ], [ -121.813199813999958, 50.572942644000129 ], [ -121.813042934999928, 50.574627686000056 ], [ -121.814339776999986, 50.574640896000034 ], [ -121.814319460999968, 50.575450106000048 ], [ -121.814212170999966, 50.575449014000128 ], [ -121.812625101999956, 50.575432844000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999694238815578", "sL_AssetLoss": "124.28", "sL_BldgLoss": "124.242", "sL_StrLoss": "124", "sL_NStrLoss": "0.242", "sL_ContLoss": "0.038", "geom_point": "0101000020E610000015E997EBA1765EC0D8ABD914595C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.851095479999955, 50.719574689000055 ], [ -121.856628177999951, 50.719780309000015 ], [ -121.856296563999933, 50.723367065000097 ], [ -121.85587784099999, 50.723351513000047 ], [ -121.850637257999978, 50.723156736000085 ], [ -121.850969321999941, 50.719569996000118 ], [ -121.851095479999955, 50.719574689000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999628766571021", "sL_AssetLoss": "507.4974", "sL_BldgLoss": "507.309", "sL_StrLoss": "506", "sL_NStrLoss": "1.309", "sL_ContLoss": "0.1884", "geom_point": "0101000020E6100000BA6C53C0E68C5EC0D3407FE3E3704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.20607749899996, 50.886612709000055 ], [ -122.206082083999902, 50.886342955000011 ], [ -122.205229176999978, 50.886337150000095 ], [ -122.20523376700001, 50.886067396000087 ], [ -122.204807315999915, 50.886064491000141 ], [ -122.204811908999957, 50.885794737000012 ], [ -122.204385461999934, 50.885791832000031 ], [ -122.204390054999948, 50.885522078000072 ], [ -122.203537163999982, 50.885516261000092 ], [ -122.203541762999947, 50.885246507000012 ], [ -122.203115320999984, 50.885243596000045 ], [ -122.203119922999974, 50.884973843000104 ], [ -122.202267041999946, 50.884968017000119 ], [ -122.202271647999936, 50.884698263000097 ], [ -122.201418770999936, 50.884692432000051 ], [ -122.201423383999909, 50.884422677000046 ], [ -122.20057051399999, 50.884416840000064 ], [ -122.200575131999955, 50.884147086000077 ], [ -122.199722263999988, 50.884141242000084 ], [ -122.199726885999937, 50.883871487000064 ], [ -122.198447594999948, 50.883862711000113 ], [ -122.198452225999958, 50.883592955000047 ], [ -122.19759937, 50.883587097000046 ], [ -122.197604002999952, 50.883317343000023 ], [ -122.19675115299998, 50.883311478000039 ], [ -122.196755790999987, 50.883041723000076 ], [ -122.19632936899994, 50.883038788000121 ], [ -122.196334009999987, 50.882769034000091 ], [ -122.195907590999965, 50.882766098000104 ], [ -122.195918124999949, 50.8821541350001 ], [ -122.19592152, 50.88195683600005 ], [ -122.196511579999978, 50.881960900000053 ], [ -122.196560751999954, 50.881383567000064 ], [ -122.19591583, 50.881361665000064 ], [ -122.196221367999968, 50.877774599000112 ], [ -122.201901804000016, 50.877967381000126 ], [ -122.201845341999928, 50.878631299000126 ], [ -122.202490225999966, 50.878653166000042 ], [ -122.2023202699999, 50.880651809000049 ], [ -122.203193546999898, 50.88065777300006 ], [ -122.20318434499994, 50.88119728200008 ], [ -122.20403715599997, 50.881203101000082 ], [ -122.204032560999977, 50.881472855000055 ], [ -122.204458968999973, 50.881475762000015 ], [ -122.20444978099998, 50.882015271000043 ], [ -122.20572902399999, 50.882023982000113 ], [ -122.205724436999958, 50.882293737000047 ], [ -122.207430102, 50.882305330000094 ], [ -122.207425525999952, 50.882575085000056 ], [ -122.20827836499997, 50.882580872000091 ], [ -122.208273792999961, 50.882850628000021 ], [ -122.208700214999936, 50.882853519000079 ], [ -122.208695644999963, 50.88312327400012 ], [ -122.209122069999978, 50.88312616300005 ], [ -122.209108366999942, 50.883935427000054 ], [ -122.207829072999957, 50.883926753000061 ], [ -122.207819923999949, 50.884466262000075 ], [ -122.20739348699999, 50.884463367000087 ], [ -122.207388909999935, 50.8847331220001 ], [ -122.205256716999926, 50.884718624000129 ], [ -122.20525212699999, 50.884988379000113 ], [ -122.206105008999927, 50.884994182000078 ], [ -122.206100422999967, 50.885263937000062 ], [ -122.206526867999969, 50.88526683600012 ], [ -122.206522284999934, 50.885536590000044 ], [ -122.207801623999927, 50.885545279000112 ], [ -122.207787898, 50.886354543000095 ], [ -122.207680217999922, 50.886353812000017 ], [ -122.207361444999961, 50.886351649000034 ], [ -122.207356866999959, 50.886621403000078 ], [ -122.20607749899996, 50.886612709000055 ] ], [ [ -122.203583157, 50.882818719000142 ], [ -122.203587755999976, 50.882548964000129 ], [ -122.20316133799993, 50.882546054000066 ], [ -122.203165939999963, 50.882276300000079 ], [ -122.202739524999913, 50.882273389000069 ], [ -122.202744127999964, 50.882003634000064 ], [ -122.20220562199998, 50.881999955000076 ], [ -122.202185185999951, 50.88224024600008 ], [ -122.197198945999958, 50.882071069000069 ], [ -122.197196122999969, 50.882235395000116 ], [ -122.198048952999926, 50.882241257000025 ], [ -122.198044320999927, 50.882511011000133 ], [ -122.198470738999958, 50.882513940000123 ], [ -122.198466110999959, 50.882783694000096 ], [ -122.199745369999974, 50.882792471000101 ], [ -122.19974075099995, 50.883062226000042 ], [ -122.200593595999976, 50.883068070000085 ], [ -122.200598211999974, 50.88279831400007 ], [ -122.201024632999932, 50.882801235000088 ], [ -122.201029245999962, 50.882531480000068 ], [ -122.202734920999958, 50.88254314300012 ], [ -122.202730315999972, 50.882812897000129 ], [ -122.203583157, 50.882818719000142 ], [ -122.203573958999939, 50.883358226000084 ], [ -122.204000385999976, 50.883361136000083 ], [ -122.204009578999958, 50.882821627000077 ], [ -122.203583157, 50.882818719000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99994766908604", "sL_AssetLoss": "95.73691", "sL_BldgLoss": "95.7319", "sL_StrLoss": "95.7", "sL_NStrLoss": "0.0319", "sL_ContLoss": "0.00501", "geom_point": "0101000020E6100000B9467839B4725EC05CE26D4A9E7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.789574080999984, 50.971681183000065 ], [ -121.795264624999987, 50.971894543000126 ], [ -121.794926203999978, 50.975480079000107 ], [ -121.789235203999951, 50.975266701000116 ], [ -121.789574080999984, 50.971681183000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999778983649057", "sL_AssetLoss": "117.1859", "sL_BldgLoss": "117.16", "sL_StrLoss": "117", "sL_NStrLoss": "0.16", "sL_ContLoss": "0.0259", "geom_point": "0101000020E61000002AF95C96C4755EC01404F299AA5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.83663472399995, 50.70978488700009 ], [ -121.836708708999979, 50.708988230000095 ], [ -121.835300428999972, 50.708935652000065 ], [ -121.835347711999944, 50.708426670000065 ], [ -121.839442148000018, 50.708656732000058 ], [ -121.839844286999949, 50.708673463000125 ], [ -121.840034061999944, 50.706977497000061 ], [ -121.840174024999925, 50.70551834900003 ], [ -121.841290603999965, 50.705559991 ], [ -121.841216704999979, 50.706356655000057 ], [ -121.842624911999906, 50.706409158000064 ], [ -121.842389677999975, 50.708945725 ], [ -121.842292277999931, 50.709995929000087 ], [ -121.83663472399995, 50.70978488700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999580158511582", "sL_AssetLoss": "408.4875", "sL_BldgLoss": "408.316", "sL_StrLoss": "407", "sL_NStrLoss": "1.316", "sL_ContLoss": "0.1715", "geom_point": "0101000020E61000004B708F4AD6745EC0B763A8929A474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.823469838999927, 50.562303631000091 ], [ -121.823687861999957, 50.559955263000077 ], [ -121.821717033999974, 50.559881189000102 ], [ -121.821897625999924, 50.557936734000037 ], [ -121.822050197999985, 50.556293835000098 ], [ -121.827688402999939, 50.556505655000102 ], [ -121.827547887999927, 50.558020764000069 ], [ -121.827470605, 50.558854041000167 ], [ -121.828377409, 50.558888082000074 ], [ -121.829441397999958, 50.558928012000109 ], [ -121.829108801999936, 50.562515378000064 ], [ -121.82452886099999, 50.562343420000076 ], [ -121.823469838999927, 50.562303631000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999742188896964", "sL_AssetLoss": "235.4437", "sL_BldgLoss": "235.383", "sL_StrLoss": "235", "sL_NStrLoss": "0.383", "sL_ContLoss": "0.0607", "geom_point": "0101000020E6100000F1F2329296795EC0F9E2C5A102624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.898899301999947, 50.767656342000102 ], [ -121.898916758999974, 50.767465766000051 ], [ -121.897490964999989, 50.767413404000074 ], [ -121.897498275999965, 50.767333620000066 ], [ -121.8966615399999, 50.767302882000116 ], [ -121.896671600999923, 50.767193121000041 ], [ -121.895986923999942, 50.767167964000073 ], [ -121.896315685999937, 50.763581276000131 ], [ -121.901980309999928, 50.763789280000054 ], [ -121.901970262999896, 50.763899042000084 ], [ -121.902654893999966, 50.763924162000102 ], [ -121.902647591999965, 50.76400394700007 ], [ -121.903370885999934, 50.764030482000109 ], [ -121.903236686999961, 50.765801751000019 ], [ -121.903094360999972, 50.767248936000044 ], [ -121.904589594999976, 50.767589357000034 ], [ -121.90456445199996, 50.767864214000042 ], [ -121.898899301999947, 50.767656342000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999669139470688", "sL_AssetLoss": "123.3148", "sL_BldgLoss": "123.274", "sL_StrLoss": "123", "sL_NStrLoss": "0.274", "sL_ContLoss": "0.0408", "geom_point": "0101000020E61000006B8C6BB651755EC0066F6140235A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.830782335999942, 50.706277036000053 ], [ -121.83111586199999, 50.702690285000088 ], [ -121.832394312999895, 50.702738070000109 ], [ -121.836772496999927, 50.702901608000069 ], [ -121.83664782399994, 50.704244227000054 ], [ -121.835782918999939, 50.704154047000024 ], [ -121.833530899999928, 50.704000792000024 ], [ -121.83350524699992, 50.704204036000085 ], [ -121.833232052999961, 50.706368589000093 ], [ -121.830782335999942, 50.706277036000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999725031613253", "sL_AssetLoss": "123.2869", "sL_BldgLoss": "123.253", "sL_StrLoss": "123", "sL_NStrLoss": "0.253", "sL_ContLoss": "0.0339", "geom_point": "0101000020E61000009D6062A0699A5EC01B28115D27534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.40939134599995, 50.651092314000088 ], [ -122.409534857999972, 50.64929749500012 ], [ -122.409592508999978, 50.649307604000093 ], [ -122.410972393999884, 50.648720813000082 ], [ -122.411851397999968, 50.648527110000053 ], [ -122.412792701999962, 50.647966010000125 ], [ -122.413630591999947, 50.647699714000055 ], [ -122.41371365099999, 50.647633696000106 ], [ -122.413793119999966, 50.647636254000126 ], [ -122.413793945999913, 50.64756987400002 ], [ -122.413932629999962, 50.64745963900004 ], [ -122.415068244999972, 50.647465345000036 ], [ -122.415065612999982, 50.647677209000079 ], [ -122.415330493999988, 50.647685733000081 ], [ -122.415044013999974, 50.651274342000086 ], [ -122.40939134599995, 50.651092314000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999608058555902", "sL_AssetLoss": "133.4383", "sL_BldgLoss": "133.386", "sL_StrLoss": "133", "sL_NStrLoss": "0.386", "sL_ContLoss": "0.0523", "geom_point": "0101000020E610000097F18498AA895EC0168114E9BC5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.148447044999912, 50.71477459600009 ], [ -122.152986053999953, 50.714931202000045 ], [ -122.15341591499994, 50.71516730700008 ], [ -122.153801881999982, 50.715718499000097 ], [ -122.153813418999931, 50.716662696000107 ], [ -122.15395400599999, 50.716748976000069 ], [ -122.153798840999968, 50.718557464000085 ], [ -122.148138796999959, 50.718362208000052 ], [ -122.148447044999912, 50.71477459600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999797716346671", "sL_AssetLoss": "116.1735", "sL_BldgLoss": "116.15", "sL_StrLoss": "116", "sL_NStrLoss": "0.15", "sL_ContLoss": "0.0235", "geom_point": "0101000020E6100000B7736915A08B5EC09DD8E0D09D704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.180596278999985, 50.877981637000111 ], [ -122.184639269999963, 50.878119442000099 ], [ -122.184498396999942, 50.879768339000123 ], [ -122.1843328, 50.881706475000016 ], [ -122.178651964999972, 50.881512803000085 ], [ -122.178958888999929, 50.877925785000095 ], [ -122.180596278999985, 50.877981637000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999427956299812", "sL_AssetLoss": "131.6333", "sL_BldgLoss": "131.558", "sL_StrLoss": "131", "sL_NStrLoss": "0.558", "sL_ContLoss": "0.0753", "geom_point": "0101000020E610000075D95CF372785EC0288DE266824F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.879357264999953, 50.619268946000027 ], [ -121.885003631999894, 50.619477846000031 ], [ -121.884675021999968, 50.623065113000081 ], [ -121.879028204999926, 50.622856198000079 ], [ -121.879357264999953, 50.619268946000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999871801786111", "sL_AssetLoss": "113.1061", "sL_BldgLoss": "113.0916", "sL_StrLoss": "113", "sL_NStrLoss": "0.0916", "sL_ContLoss": "0.0145", "geom_point": "0101000020E6100000A87C7C009A775EC0241F05992E694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.866104413999963, 50.819836579000167 ], [ -121.87177601499998, 50.82004610000007 ], [ -121.87144487299993, 50.82363248200005 ], [ -121.865772818999957, 50.823422944000058 ], [ -121.866104413999963, 50.819836579000167 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99993353014408", "sL_AssetLoss": "100.04535", "sL_BldgLoss": "100.0387", "sL_StrLoss": "100", "sL_NStrLoss": "0.0387", "sL_ContLoss": "0.00665", "geom_point": "0101000020E6100000179A907B5F6D5EC0F6B704E01F6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.705792515999974, 50.846836506000074 ], [ -121.706137108999982, 50.843250720000114 ], [ -121.706278298999948, 50.843256139000061 ], [ -121.706847883999941, 50.843277997000037 ], [ -121.70688509899999, 50.842890637000046 ], [ -121.71255886299997, 50.843108218000118 ], [ -121.712214786999979, 50.846694024000094 ], [ -121.712069153999934, 50.84668844300009 ], [ -121.711966090999965, 50.846583407000097 ], [ -121.711390318999975, 50.845821398000027 ], [ -121.710666702, 50.845291604000096 ], [ -121.710201812999969, 50.845179089000055 ], [ -121.709687413999973, 50.845280206000034 ], [ -121.709294092999968, 50.845600706000035 ], [ -121.70890991, 50.846163208000114 ], [ -121.708935898999982, 50.846957105000065 ], [ -121.708414693999913, 50.846937115000081 ], [ -121.705792515999974, 50.846836506000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999868548468371", "sL_AssetLoss": "114.1105", "sL_BldgLoss": "114.0955", "sL_StrLoss": "114", "sL_NStrLoss": "0.0955", "sL_ContLoss": "0.015", "geom_point": "0101000020E6100000A2755CA6C9785EC037D263A5136C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.88463547899994, 50.842452070000085 ], [ -121.890310032999935, 50.842660647000095 ], [ -121.889980208999972, 50.846246990000104 ], [ -121.884305200999961, 50.846038397000051 ], [ -121.88463547899994, 50.842452070000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999297817936115", "sL_AssetLoss": "150.958", "sL_BldgLoss": "150.852", "sL_StrLoss": "150", "sL_NStrLoss": "0.852", "sL_ContLoss": "0.106", "geom_point": "0101000020E6100000D146C738B3725EC0CA9979B4694C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.791480456999963, 50.595149163000087 ], [ -121.795178193999988, 50.595289007000105 ], [ -121.794968410999914, 50.597531393000111 ], [ -121.79484259899999, 50.59887611000012 ], [ -121.789199239999974, 50.598662637000089 ], [ -121.789535283999896, 50.595075549000107 ], [ -121.791480456999963, 50.595149163000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999844035861237", "sL_AssetLoss": "114.1288", "sL_BldgLoss": "114.111", "sL_StrLoss": "114", "sL_NStrLoss": "0.111", "sL_ContLoss": "0.0178", "geom_point": "0101000020E6100000D6B4A40647895EC0C106E15D706D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.141905636999951, 50.856633871000092 ], [ -122.142188769999962, 50.853354569000047 ], [ -122.142970186999918, 50.853599105000093 ], [ -122.144149941999942, 50.853113514000093 ], [ -122.147838135999947, 50.853240509000095 ], [ -122.147887010999966, 50.853304870000045 ], [ -122.147759058999924, 50.85478908100005 ], [ -122.147583152, 50.856829409000099 ], [ -122.141905636999951, 50.856633871000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99989117110771", "sL_AssetLoss": "101.0761", "sL_BldgLoss": "101.0651", "sL_StrLoss": "101", "sL_NStrLoss": "0.0651", "sL_ContLoss": "0.011", "geom_point": "0101000020E61000003B1EAF17B5765EC0E7191CA1766E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.85180742099999, 50.864690791000065 ], [ -121.852140441999964, 50.861104637000082 ], [ -121.855244296999942, 50.86121961300011 ], [ -121.857817210999954, 50.86131485500001 ], [ -121.857491618999944, 50.864825812000078 ], [ -121.857260808999968, 50.864786589000097 ], [ -121.856982009999925, 50.864739193000069 ], [ -121.856579092999965, 50.864867511000107 ], [ -121.851968133999975, 50.864696746000106 ], [ -121.85180742099999, 50.864690791000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964456785838251", "sL_AssetLoss": "1.4405", "sL_BldgLoss": "1.3893", "sL_StrLoss": "0.0693", "sL_NStrLoss": "1.32", "sL_ContLoss": "0.0512", "geom_point": "0101000020E6100000C0189999BC745EC0E0DA899210494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.826357362999943, 50.569106462000079 ], [ -121.82699766599994, 50.56913049900006 ], [ -121.826971113999889, 50.569416679 ], [ -121.826664800999964, 50.572717813000025 ], [ -121.821024570999953, 50.572505945000039 ], [ -121.821357882999919, 50.568918648000057 ], [ -121.826357362999943, 50.569106462000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6781167", "BldgCostT": "4676667", "sL_LossRatio": "0.999682179593739", "sL_AssetLoss": "1332.8282", "sL_BldgLoss": "1332.4046", "sL_StrLoss": "1329.0316", "sL_NStrLoss": "3.373", "sL_ContLoss": "0.4236", "geom_point": "0101000020E610000014BD21C775775EC0A33C358F2A4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.863858701999959, 50.607254611000094 ], [ -121.863883684999948, 50.606983170000063 ], [ -121.859214325999957, 50.606809499000057 ], [ -121.859335481999949, 50.605494630000109 ], [ -121.857713659999916, 50.605434262000067 ], [ -121.858044291999931, 50.601846998000092 ], [ -121.861769010999964, 50.601985606000056 ], [ -121.861833452, 50.60128574900002 ], [ -121.861574444999945, 50.601283219000024 ], [ -121.86158095399999, 50.601013478000041 ], [ -121.861157126999899, 50.601009336000033 ], [ -121.861163636999962, 50.600739596000039 ], [ -121.860739813999942, 50.600735452000023 ], [ -121.860746327999962, 50.600465711000034 ], [ -121.860322505999974, 50.600461565000074 ], [ -121.860348564999953, 50.599382605000095 ], [ -121.862043813999932, 50.59939917800012 ], [ -121.862037308999959, 50.599668919000123 ], [ -121.862461122999932, 50.599673058000093 ], [ -121.86247412799996, 50.599133577000089 ], [ -121.862897939, 50.599137715000047 ], [ -121.862904438999962, 50.598867975000068 ], [ -121.86332824499999, 50.598872111000077 ], [ -121.863331651999943, 50.598730705000079 ], [ -121.860636522999982, 50.598630454000038 ], [ -121.860966871999935, 50.595043152000095 ], [ -121.862215508999896, 50.595089606000016 ], [ -121.86227995899999, 50.594389459000077 ], [ -121.862283656999949, 50.594349282000067 ], [ -121.867926819000019, 50.594559054000079 ], [ -121.86759702799999, 50.598146378000102 ], [ -121.866348300000013, 50.598099984000029 ], [ -121.866280212999968, 50.598840308000042 ], [ -121.865449287999965, 50.598809429000056 ], [ -121.865440798999927, 50.599162511000038 ], [ -121.864593177999922, 50.599154251000066 ], [ -121.864586687999918, 50.599423992000027 ], [ -121.864162875999966, 50.599419861000065 ], [ -121.864143394999928, 50.600229083000073 ], [ -121.864567214999951, 50.600233213000088 ], [ -121.864560724999976, 50.600502954000028 ], [ -121.86667983800001, 50.600523592000044 ], [ -121.866673358999918, 50.60079333200008 ], [ -121.867521007999983, 50.600801575000098 ], [ -121.867527482999918, 50.600531835000027 ], [ -121.867951306999927, 50.60053595500009 ], [ -121.86795777899999, 50.60026621400003 ], [ -121.870506220999943, 50.600290953000076 ], [ -121.870686366999948, 50.598330192000084 ], [ -121.876330066, 50.598539536000018 ], [ -121.876288248000023, 50.598995337000076 ], [ -121.876325996999981, 50.598996737000057 ], [ -121.875996844999918, 50.602584067000116 ], [ -121.87599574599993, 50.602584026000081 ], [ -121.875956467999941, 50.60301206700008 ], [ -121.874252564999935, 50.602948895000111 ], [ -121.874237871, 50.603564720000108 ], [ -121.87376959599996, 50.603560193000064 ], [ -121.873689355999957, 50.604434118000086 ], [ -121.868044928999979, 50.604224641000037 ], [ -121.86828454, 50.601618407000046 ], [ -121.867925418999931, 50.601614919000035 ], [ -121.867918946, 50.601884659000056 ], [ -121.867495111999943, 50.601880539000035 ], [ -121.867491990999923, 50.602010563000057 ], [ -121.867551626999926, 50.602012779000091 ], [ -121.867504557999922, 50.602524669000097 ], [ -121.867588259999977, 50.602527779000148 ], [ -121.867413137, 50.604432255000042 ], [ -121.869774109999966, 50.604519924000058 ], [ -121.869752294999927, 50.60475728600008 ], [ -121.870202909999932, 50.604774012000107 ], [ -121.870087923999932, 50.606025249000027 ], [ -121.871993630999953, 50.606095967000051 ], [ -121.871664079999974, 50.609683255000093 ], [ -121.869241283999955, 50.609593341000064 ], [ -121.869107453999916, 50.611049112000075 ], [ -121.866381071999967, 50.610947869000022 ], [ -121.863462218, 50.610839405000043 ], [ -121.863792431, 50.607252147000061 ], [ -121.863858701999959, 50.607254611000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999777107752402", "sL_AssetLoss": "362.507", "sL_BldgLoss": "362.4262", "sL_StrLoss": "362", "sL_NStrLoss": "0.4262", "sL_ContLoss": "0.0808", "geom_point": "0101000020E6100000EDDBDEA834755EC08B130CA57E6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.831651683999979, 50.868265663000059 ], [ -121.837329266, 50.868476918000113 ], [ -121.837278132999955, 50.869025518000072 ], [ -121.837214960999944, 50.869703280000095 ], [ -121.836686690999983, 50.869988805000048 ], [ -121.834529147, 50.87087813400008 ], [ -121.834447697999934, 50.870911701000068 ], [ -121.832947180999952, 50.871175198000081 ], [ -121.832630782999914, 50.871387399000128 ], [ -121.832494109999985, 50.871682194000066 ], [ -121.832261713999941, 50.872454101000102 ], [ -121.832356895, 50.872608001000046 ], [ -121.833038612999985, 50.873087789000074 ], [ -121.833069189999932, 50.87310930700005 ], [ -121.833151795999981, 50.873281596000083 ], [ -121.833164799999977, 50.873882703000106 ], [ -121.832587181999912, 50.873861206000093 ], [ -121.832562535999955, 50.874125299000077 ], [ -121.831954880999959, 50.874102680000078 ], [ -121.826884259999986, 50.87391380400004 ], [ -121.827219348999947, 50.870327762000073 ], [ -121.827414227999952, 50.870335025000102 ], [ -121.827490685999948, 50.869516667000021 ], [ -121.830749760999964, 50.869638086000073 ], [ -121.830853001999955, 50.868532145000067 ], [ -121.83162413299999, 50.868560860000045 ], [ -121.831651683999979, 50.868265663000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964668279198341", "sL_AssetLoss": "1.1576", "sL_BldgLoss": "1.1167", "sL_StrLoss": "0.0567", "sL_NStrLoss": "1.06", "sL_ContLoss": "0.0409", "geom_point": "0101000020E610000089A31FCBCA755EC02AEDC33096494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.837848246999968, 50.572996750000065 ], [ -121.84348861899997, 50.57320776500007 ], [ -121.843164703999946, 50.576712175000054 ], [ -121.843157036999969, 50.576795110000084 ], [ -121.837516217999948, 50.576584079000014 ], [ -121.837674812999921, 50.574870646000072 ], [ -121.837848246999968, 50.572996750000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999685350469298", "sL_AssetLoss": "123.3118", "sL_BldgLoss": "123.273", "sL_StrLoss": "123", "sL_NStrLoss": "0.273", "sL_ContLoss": "0.0388", "geom_point": "0101000020E6100000948BCE85D3725EC09E37FC0B10524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.793709303999947, 50.637497646000085 ], [ -121.795357090999943, 50.637559884000076 ], [ -121.795351443999934, 50.64404318400004 ], [ -121.792482752999902, 50.643934834000099 ], [ -121.792818873, 50.640347930000111 ], [ -121.793440090999965, 50.640371401000081 ], [ -121.793709303999947, 50.637497646000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999818991291074", "sL_AssetLoss": "112.1493", "sL_BldgLoss": "112.129", "sL_StrLoss": "112", "sL_NStrLoss": "0.129", "sL_ContLoss": "0.0203", "geom_point": "0101000020E6100000C7766B5730725EC0D5C276410E734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.78152939899995, 50.896972731000041 ], [ -121.787210388999952, 50.897186518000126 ], [ -121.78706706199992, 50.898704871000092 ], [ -121.786871886999933, 50.900772330000066 ], [ -121.781190441999939, 50.900558527000065 ], [ -121.781375903999944, 50.89859660700013 ], [ -121.78152939899995, 50.896972731000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999601563991072", "sL_AssetLoss": "693.7124", "sL_BldgLoss": "693.436", "sL_StrLoss": "692", "sL_NStrLoss": "1.436", "sL_ContLoss": "0.2764", "geom_point": "0101000020E61000002ADCB8E64A795EC07ACB726512524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.894011198, 50.646216426000144 ], [ -121.894013623999953, 50.646113101 ], [ -121.893589386999963, 50.64610907400008 ], [ -121.893595721999944, 50.645839332000094 ], [ -121.893171487999936, 50.645835304000094 ], [ -121.893177825999913, 50.645565563000069 ], [ -121.892753594999974, 50.64556153200008 ], [ -121.892810651000019, 50.643133863000052 ], [ -121.892386441000014, 50.643129830000092 ], [ -121.892392782999963, 50.642860090000028 ], [ -121.891968575999954, 50.642856056000014 ], [ -121.89198126299999, 50.64231657400007 ], [ -121.8915570599999, 50.64231254 ], [ -121.891582443999965, 50.641233576000054 ], [ -121.89316491699999, 50.641248618000077 ], [ -121.893182603999918, 50.641055236000078 ], [ -121.891384062999975, 50.640988893000042 ], [ -121.89144973599997, 50.640271155000065 ], [ -121.890604684999971, 50.640239974000082 ], [ -121.890932946999925, 50.636652763000015 ], [ -121.894502640999974, 50.636784439000053 ], [ -121.896581551999958, 50.636861071000062 ], [ -121.89651596600001, 50.637578814000072 ], [ -121.897360970999927, 50.637609951000108 ], [ -121.897185680999954, 50.639528543000026 ], [ -121.899752615999944, 50.639623092000114 ], [ -121.899593190999909, 50.641368955000111 ], [ -121.900593203999946, 50.641405773000031 ], [ -121.900436276, 50.643124592000042 ], [ -121.899183790999984, 50.643127982000102 ], [ -121.898740505999939, 50.643129988000034 ], [ -121.898725935999963, 50.644936300000069 ], [ -121.89658902, 50.644857584000057 ], [ -121.896565365999919, 50.645867492000043 ], [ -121.896141130999979, 50.645863473000141 ], [ -121.896136305999931, 50.646069387000054 ], [ -121.895324832000014, 50.646125539000089 ], [ -121.895286334999952, 50.64612517400009 ], [ -121.895286263999964, 50.646128208000043 ], [ -121.894011198, 50.646216426000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99971366321176", "sL_AssetLoss": "238.5303", "sL_BldgLoss": "238.462", "sL_StrLoss": "238", "sL_NStrLoss": "0.462", "sL_ContLoss": "0.0683", "geom_point": "0101000020E61000000B38F88008725EC075A0DA2261514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.779150046999973, 50.633618290000072 ], [ -121.784797745999953, 50.633832263000045 ], [ -121.784461035999968, 50.637419170000044 ], [ -121.784436810999964, 50.637418253000071 ], [ -121.784388263999958, 50.637935371000012 ], [ -121.778740051999975, 50.637721377000048 ], [ -121.779077220999952, 50.634134490000108 ], [ -121.779101442999917, 50.63413540800012 ], [ -121.779150046999973, 50.633618290000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999902638904784", "sL_AssetLoss": "310.1855", "sL_BldgLoss": "310.1553", "sL_StrLoss": "310", "sL_NStrLoss": "0.1553", "sL_ContLoss": "0.0302", "geom_point": "0101000020E6100000131804B9B8785EC090C4C36271704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.883374559999936, 50.881841003000041 ], [ -121.883684787, 50.878476016000057 ], [ -121.883164879999981, 50.878456904000039 ], [ -121.883495487999966, 50.874870714000039 ], [ -121.889174151999924, 50.875079340000113 ], [ -121.888864361999978, 50.878444355000092 ], [ -121.889384271999944, 50.87846344200004 ], [ -121.889054107999982, 50.882049635000037 ], [ -121.883374559999936, 50.881841003000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999195611052807", "sL_AssetLoss": "159.127", "sL_BldgLoss": "158.999", "sL_StrLoss": "158", "sL_NStrLoss": "0.999", "sL_ContLoss": "0.128", "geom_point": "0101000020E61000008952EF67C0935EC01CE825EF315A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.304072636999962, 50.70612047500002 ], [ -122.304171092999979, 50.704925848000052 ], [ -122.304266324999972, 50.703770287000076 ], [ -122.304287829, 50.703509337000128 ], [ -122.304867588999926, 50.703695300000099 ], [ -122.305951880999899, 50.704034292000067 ], [ -122.307345017, 50.704601101000108 ], [ -122.30761329799999, 50.704665199000068 ], [ -122.308351112999958, 50.704660901000146 ], [ -122.308904089999913, 50.704538399000107 ], [ -122.30964480699997, 50.704209408000111 ], [ -122.310115291999949, 50.703817800000138 ], [ -122.311130802, 50.703823804000088 ], [ -122.311138453999959, 50.703301636000056 ], [ -122.311187840999963, 50.703284556000078 ], [ -122.31156350899991, 50.703286775 ], [ -122.311565453999918, 50.703153961000091 ], [ -122.311954837999949, 50.703019294000086 ], [ -122.312417056999962, 50.703022020000105 ], [ -122.31241800399998, 50.702957287000118 ], [ -122.313249621999958, 50.702846499000046 ], [ -122.313331149999968, 50.702757615000081 ], [ -122.31496978, 50.702767255000076 ], [ -122.31496658699993, 50.702986383000059 ], [ -122.314954056999937, 50.703846334000055 ], [ -122.313679639999989, 50.703838838000081 ], [ -122.313683027999929, 50.703606669000138 ], [ -122.313683576999978, 50.703569068000071 ], [ -122.312833969999943, 50.703564063 ], [ -122.312830379999951, 50.703809629000069 ], [ -122.312822142, 50.704373371000059 ], [ -122.311547707999949, 50.704365852000066 ], [ -122.311551364999914, 50.704116092000078 ], [ -122.31155165899996, 50.704096083000117 ], [ -122.311126848999933, 50.704093574000069 ], [ -122.311123988999952, 50.704288784000035 ], [ -122.31111894499999, 50.704633112000074 ], [ -122.310284021999948, 50.704628176000014 ], [ -122.309870221999944, 50.704625727000064 ], [ -122.309859019, 50.704761865000137 ], [ -122.30974889399999, 50.706100129000056 ], [ -122.309429047999942, 50.706097223000114 ], [ -122.309428555999943, 50.706091795000091 ], [ -122.306373186999963, 50.706108187000041 ], [ -122.306281103999964, 50.706108679000039 ], [ -122.305736884999988, 50.706111601 ], [ -122.304072636999962, 50.70612047500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999029367413322", "sL_AssetLoss": "346.166", "sL_BldgLoss": "345.83", "sL_StrLoss": "343", "sL_NStrLoss": "2.83", "sL_ContLoss": "0.336", "geom_point": "0101000020E6100000E40DD539AB715EC0D1F7A62BD0494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.774524821999989, 50.578621784000077 ], [ -121.774557297999976, 50.578276188000089 ], [ -121.773994849999937, 50.578270269000022 ], [ -121.774022861999939, 50.577191336000034 ], [ -121.772328465, 50.577173489000089 ], [ -121.772340279, 50.57671909500003 ], [ -121.772342490999947, 50.576634023000032 ], [ -121.772310631999915, 50.576633687 ], [ -121.771495301999948, 50.576625089000068 ], [ -121.771509336999941, 50.576085624 ], [ -121.770238568999943, 50.576072213000067 ], [ -121.770271263999916, 50.574816693000045 ], [ -121.770273689999911, 50.57472355000008 ], [ -121.773238727999924, 50.574754820000074 ], [ -121.773231721999963, 50.575024553000056 ], [ -121.773655300999962, 50.575029014000123 ], [ -121.773648295999976, 50.575298747000019 ], [ -121.774071878999976, 50.575303208000079 ], [ -121.774057873999936, 50.57584267200005 ], [ -121.774785245999979, 50.575850328000044 ], [ -121.774861884999922, 50.57503465399999 ], [ -121.777504380999986, 50.575135046000078 ], [ -121.780502213999938, 50.575248860000059 ], [ -121.780165598999972, 50.578836007000085 ], [ -121.776628498999926, 50.578701710000104 ], [ -121.776504150999969, 50.578696987000072 ], [ -121.775648910999962, 50.578664497000062 ], [ -121.774524821999989, 50.578621784000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999627118998971", "sL_AssetLoss": "124.1683", "sL_BldgLoss": "124.122", "sL_StrLoss": "124", "sL_NStrLoss": "0.122", "sL_ContLoss": "0.0463", "geom_point": "0101000020E6100000FCDEA63F7B7A5EC093B1F399605C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.91436334699992, 50.722741566000096 ], [ -121.912567306999961, 50.719726557000023 ], [ -121.913106043, 50.719746293000107 ], [ -121.9131076199999, 50.719678164000136 ], [ -121.91321467399996, 50.719679163000073 ], [ -121.914382328999977, 50.71969004100005 ], [ -121.91437995099993, 50.71979295200007 ], [ -121.915496365999942, 50.719833831000081 ], [ -121.915434814999969, 50.720509229000072 ], [ -121.915638364999921, 50.720511123000051 ], [ -121.91563213799999, 50.720780863000094 ], [ -121.916057052000014, 50.720784814000133 ], [ -121.916038381999968, 50.721594032 ], [ -121.915336544999903, 50.721587505000073 ], [ -121.91516945699999, 50.723420760000103 ], [ -121.914724267999958, 50.723404460000083 ], [ -121.913947771999943, 50.723376026000032 ], [ -121.909509869999965, 50.723213414000028 ], [ -121.909557445999951, 50.722692147000068 ], [ -121.913651762999933, 50.722736456000071 ], [ -121.91436334699992, 50.722741566000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999636536608569", "sL_AssetLoss": "245.967", "sL_BldgLoss": "245.8776", "sL_StrLoss": "245.0156", "sL_NStrLoss": "0.862", "sL_ContLoss": "0.0894", "geom_point": "0101000020E61000006FA5F00384735EC009E78D72B4544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.7991149, 50.664999269000127 ], [ -121.799154913999985, 50.664571822000021 ], [ -121.799092526999971, 50.664569470000089 ], [ -121.799144656999928, 50.664012594000098 ], [ -121.799104265999972, 50.664011071000083 ], [ -121.799440006999973, 50.660424234000075 ], [ -121.799574297000021, 50.660429298000089 ], [ -121.799615623999927, 50.659987737000016 ], [ -121.800510743999894, 50.660021483000023 ], [ -121.800512784999924, 50.659999659000114 ], [ -121.800935624999951, 50.660015598000072 ], [ -121.800967784999941, 50.659671869000078 ], [ -121.801417889999939, 50.659688833000153 ], [ -121.801465192999942, 50.659183179000131 ], [ -121.80404059599999, 50.659280213000059 ], [ -121.804592802999977, 50.65930101200005 ], [ -121.804630675999974, 50.658895855000054 ], [ -121.81028167299992, 50.659108530000026 ], [ -121.810212522999905, 50.659849262000137 ], [ -121.810804304999976, 50.659871518000045 ], [ -121.81076378899999, 50.660305582000092 ], [ -121.811328215999978, 50.660326804000114 ], [ -121.811287641999982, 50.660761526000037 ], [ -121.811420040999948, 50.660766504000073 ], [ -121.811085253999963, 50.664353375000061 ], [ -121.808379710999958, 50.664251620000115 ], [ -121.808230992999967, 50.663091089000027 ], [ -121.80780149099995, 50.662107010000078 ], [ -121.80752701099999, 50.66177938700006 ], [ -121.806778182999949, 50.660675602000026 ], [ -121.806813014999946, 50.659821099000055 ], [ -121.806674596, 50.659711386000069 ], [ -121.806406907999985, 50.659700083000068 ], [ -121.805889684999968, 50.659965001000089 ], [ -121.805475790999978, 50.660634288000054 ], [ -121.804796286999988, 50.66121260700006 ], [ -121.804281895999978, 50.66144040700015 ], [ -121.803809787999953, 50.661661198000076 ], [ -121.803515821, 50.66211690100009 ], [ -121.803491911999956, 50.662431686000062 ], [ -121.803207389999955, 50.662554199000034 ], [ -121.803073797999943, 50.662732197000089 ], [ -121.802972294999989, 50.663441406000082 ], [ -121.803148207999968, 50.663740485000062 ], [ -121.803778787999988, 50.66450249800009 ], [ -121.803994979, 50.664954001000069 ], [ -121.80397642299998, 50.665182466000026 ], [ -121.803460584999954, 50.66516303700012 ], [ -121.7991149, 50.664999269000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999490290288736", "sL_AssetLoss": "154.5978", "sL_BldgLoss": "154.519", "sL_StrLoss": "154", "sL_NStrLoss": "0.519", "sL_ContLoss": "0.0788", "geom_point": "0101000020E6100000C902E45359765EC061EDBD324E4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.850155944999969, 50.590841888000085 ], [ -121.850277535999979, 50.589524694000019 ], [ -121.846639510999978, 50.589388898000031 ], [ -121.84687526399992, 50.586836982000065 ], [ -121.84890175399994, 50.586794494000067 ], [ -121.851355721999951, 50.586566329000121 ], [ -121.851133475, 50.587777303000088 ], [ -121.851177364999927, 50.58896699100012 ], [ -121.851248006, 50.590882629000063 ], [ -121.850155944999969, 50.590841888000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999269828113591", "sL_AssetLoss": "152.019", "sL_BldgLoss": "151.908", "sL_StrLoss": "151", "sL_NStrLoss": "0.908", "sL_ContLoss": "0.111", "geom_point": "0101000020E61000009FBD65146C915EC0CE787486565A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.27026409699999, 50.706874100000064 ], [ -122.270014911999965, 50.706476807000037 ], [ -122.269391027, 50.706099709000057 ], [ -122.2693551079999, 50.706077993000136 ], [ -122.26892947399989, 50.70595339700003 ], [ -122.269073594999981, 50.704221165000028 ], [ -122.274732374999971, 50.704410295000059 ], [ -122.274716827999924, 50.704597453000083 ], [ -122.275355149999925, 50.704618769000085 ], [ -122.275277190999972, 50.706254335000011 ], [ -122.275274416999977, 50.706312565000104 ], [ -122.27526212399998, 50.707098036000076 ], [ -122.275012296999989, 50.707506514000031 ], [ -122.2747423799999, 50.707567698000055 ], [ -122.274303908999926, 50.707502204000093 ], [ -122.27364461699996, 50.707139004000105 ], [ -122.272982580999894, 50.706891193000082 ], [ -122.271808594999982, 50.70683000300005 ], [ -122.271250387999942, 50.707104903000086 ], [ -122.270718309999978, 50.707695906000019 ], [ -122.270391275999927, 50.707863197000087 ], [ -122.269210299999926, 50.707823707000081 ], [ -122.26931768899999, 50.707641793000043 ], [ -122.270000011999983, 50.707448103000125 ], [ -122.270113908999946, 50.707322787000074 ], [ -122.27026409699999, 50.706874100000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999879788928092", "sL_AssetLoss": "128.108", "sL_BldgLoss": "128.0926", "sL_StrLoss": "128", "sL_NStrLoss": "0.0926", "sL_ContLoss": "0.0154", "geom_point": "0101000020E61000006E247D18E9775EC066E9F989394F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.870943749999981, 50.617045141000119 ], [ -121.876589799999934, 50.617254467000066 ], [ -121.876309359999979, 50.620309802000072 ], [ -121.876260533999968, 50.620841720000065 ], [ -121.870614035999921, 50.620632377000156 ], [ -121.870796156999958, 50.618651001000075 ], [ -121.870943749999981, 50.617045141000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999300297037363", "sL_AssetLoss": "297.269", "sL_BldgLoss": "297.061", "sL_StrLoss": "296", "sL_NStrLoss": "1.061", "sL_ContLoss": "0.208", "geom_point": "0101000020E61000002124A86D45935EC098744AF63E594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.29920681199998, 50.697583766000072 ], [ -122.299225524999926, 50.697356971000026 ], [ -122.298845896, 50.697344374000039 ], [ -122.298995584999957, 50.695530285000103 ], [ -122.299141955999971, 50.693756265000097 ], [ -122.304799541999927, 50.693943872000048 ], [ -122.304746724999944, 50.694585026000013 ], [ -122.304248874999956, 50.694717096000062 ], [ -122.303406011999954, 50.695215585000042 ], [ -122.303345096999948, 50.695538888000065 ], [ -122.303353591999908, 50.695628764000077 ], [ -122.303540791999922, 50.697608208000133 ], [ -122.303303190999969, 50.69923469499999 ], [ -122.3031561, 50.699629191000028 ], [ -122.303176082, 50.700214496000108 ], [ -122.303169295999965, 50.700229713000056 ], [ -122.30107343499995, 50.700648961000113 ], [ -122.296798359, 50.700825519000077 ], [ -122.296807738, 50.700711923000057 ], [ -122.297140180999989, 50.700722960000029 ], [ -122.297172845999953, 50.700327332000072 ], [ -122.297323064999929, 50.700332319000061 ], [ -122.29736756899996, 50.699793235000051 ], [ -122.298938783999958, 50.699845384000106 ], [ -122.299125626999967, 50.697581073000059 ], [ -122.29920681199998, 50.697583766000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999474849707862", "sL_AssetLoss": "272.303", "sL_BldgLoss": "272.16", "sL_StrLoss": "271", "sL_NStrLoss": "1.16", "sL_ContLoss": "0.143", "geom_point": "0101000020E6100000E235964D0C775EC05BB673EDCD4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.8577961599999, 50.621200737000031 ], [ -121.861926604999951, 50.621354375000152 ], [ -121.861931291999937, 50.621385997000054 ], [ -121.862580110999914, 50.621994097000027 ], [ -121.86266730199999, 50.623075086000028 ], [ -121.863047894999937, 50.6249136960001 ], [ -121.86311440799993, 50.624975293000041 ], [ -121.863112323999971, 50.624997924000141 ], [ -121.863007724999974, 50.624994036 ], [ -121.862952953999937, 50.625588726000046 ], [ -121.857305920999949, 50.625378711000025 ], [ -121.857636731999946, 50.621791534000103 ], [ -121.857741323999903, 50.621795427000045 ], [ -121.8577961599999, 50.621200737000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999673017820529", "sL_AssetLoss": "133.3406", "sL_BldgLoss": "133.297", "sL_StrLoss": "133", "sL_NStrLoss": "0.297", "sL_ContLoss": "0.0436", "geom_point": "0101000020E6100000B688E6095D775EC017489218EB4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.866644235999971, 50.614808903000025 ], [ -121.86804156, 50.61486079200008 ], [ -121.867966387999942, 50.615678172000045 ], [ -121.867711631999967, 50.618448029000035 ], [ -121.862065473999948, 50.618238253000065 ], [ -121.862395851999949, 50.614651031000058 ], [ -121.866644235999971, 50.614808903000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999868429815428", "sL_AssetLoss": "123.1282", "sL_BldgLoss": "123.112", "sL_StrLoss": "123", "sL_NStrLoss": "0.112", "sL_ContLoss": "0.0162", "geom_point": "0101000020E6100000F7AF6A1817795EC054B3FFE838604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.89248747799995, 50.749954005000028 ], [ -121.895030552999955, 50.750047539000057 ], [ -121.894701786999974, 50.753634280000057 ], [ -121.894567006999964, 50.753629325000077 ], [ -121.889038482, 50.753425905000029 ], [ -121.889367697999944, 50.749839179000048 ], [ -121.89248747799995, 50.749954005000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999848310652384", "sL_AssetLoss": "108.1157", "sL_BldgLoss": "108.0993", "sL_StrLoss": "108", "sL_NStrLoss": "0.0993", "sL_ContLoss": "0.0164", "geom_point": "0101000020E6100000AE1DF773EB765EC08724E5B4C8694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.859452871999949, 50.828972636000046 ], [ -121.859459445999946, 50.828702907000093 ], [ -121.85903356099999, 50.828698743000061 ], [ -121.859053287999984, 50.82788955400013 ], [ -121.858627411, 50.827885389000137 ], [ -121.858640566999938, 50.827345930000035 ], [ -121.858214695999962, 50.827341763000035 ], [ -121.858221274999963, 50.827072034000075 ], [ -121.857795405999923, 50.827067865000075 ], [ -121.857801987999935, 50.826798137000061 ], [ -121.857376120999916, 50.826793966000061 ], [ -121.857382705999967, 50.826524237000136 ], [ -121.856530977999981, 50.826515893000128 ], [ -121.85655733599998, 50.825436976000013 ], [ -121.855705626999963, 50.825428625000029 ], [ -121.85571881499996, 50.824889166000077 ], [ -121.855292966999983, 50.824884990000037 ], [ -121.855319351, 50.82380607200011 ], [ -121.856444797999956, 50.823817110000114 ], [ -121.857022708999949, 50.823822773000053 ], [ -121.856993339999946, 50.825025470000107 ], [ -121.856983190999927, 50.825441148000053 ], [ -121.857338519999985, 50.825444629000067 ], [ -121.857834898999982, 50.825449489000036 ], [ -121.857823782999915, 50.825905047000084 ], [ -121.857821734999959, 50.825988948000045 ], [ -121.857932401999975, 50.825990031000053 ], [ -121.859099314999952, 50.826001448000085 ], [ -121.859086163999933, 50.826540908000069 ], [ -121.859937894999959, 50.826549233000065 ], [ -121.85991818399998, 50.827358422000074 ], [ -121.860344055999946, 50.827362582000056 ], [ -121.86033748899996, 50.827632312000013 ], [ -121.860763363999951, 50.827636471000098 ], [ -121.860730533999984, 50.828985119000031 ], [ -121.860250917999934, 50.828980435000076 ], [ -121.859452871999949, 50.828972636000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999759179345356", "sL_AssetLoss": "257.453", "sL_BldgLoss": "257.391", "sL_StrLoss": "257", "sL_NStrLoss": "0.391", "sL_ContLoss": "0.062", "geom_point": "0101000020E6100000B9B9DF3EFE765EC0E2E612162E5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.855125453999946, 50.745173712000103 ], [ -121.855457322999939, 50.741587052000042 ], [ -121.856373613999907, 50.74162107200015 ], [ -121.85641236399999, 50.742363725000047 ], [ -121.856940018999936, 50.742317700000122 ], [ -121.859715006, 50.742615421000046 ], [ -121.860876774999937, 50.742552925000084 ], [ -121.860937859000032, 50.742540676000104 ], [ -121.862266365999972, 50.742491442000059 ], [ -121.862315838, 50.742502245000011 ], [ -121.864523182999932, 50.742392402000114 ], [ -121.865294843999948, 50.742364023000079 ], [ -121.865976135999972, 50.742338951000065 ], [ -121.865870063999964, 50.74348829100007 ], [ -121.865158916000013, 50.743461951 ], [ -121.865152235999929, 50.743534308000051 ], [ -121.860972778999923, 50.743379412000074 ], [ -121.8607875599999, 50.745383808000049 ], [ -121.856223600999954, 50.745214483000098 ], [ -121.855125453999946, 50.745173712000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.966761144035043", "sL_AssetLoss": "1.9405", "sL_BldgLoss": "1.876", "sL_StrLoss": "0.106", "sL_NStrLoss": "1.77", "sL_ContLoss": "0.0645", "geom_point": "0101000020E6100000FE0C6FD620755EC0EFCF5EE066704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.832205303999928, 50.876511409000074 ], [ -121.833466254999948, 50.87655833700007 ], [ -121.833437115999971, 50.876870622000084 ], [ -121.83286321599995, 50.877414697000134 ], [ -121.832848512999973, 50.877990007000058 ], [ -121.83267208299992, 50.878257159000029 ], [ -121.832493903999989, 50.878526990000097 ], [ -121.83224770399994, 50.879316003000071 ], [ -121.83203282700002, 50.879486244000113 ], [ -121.831288676999975, 50.88007578000002 ], [ -121.830286149999964, 50.880038454000072 ], [ -121.827452575999985, 50.879932907000061 ], [ -121.827787664999946, 50.876346889000068 ], [ -121.832205303999928, 50.876511409000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999500993603311", "sL_AssetLoss": "272.1408", "sL_BldgLoss": "272.005", "sL_StrLoss": "271", "sL_NStrLoss": "1.005", "sL_ContLoss": "0.1358", "geom_point": "0101000020E6100000DFE3E9E8FA725EC021F7423B064D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.794985633999914, 50.603542682000139 ], [ -121.794994867999947, 50.603443992000081 ], [ -121.79216264199998, 50.60333690699999 ], [ -121.792498481999971, 50.59974983000005 ], [ -121.796774797999916, 50.599911488000032 ], [ -121.79814199399999, 50.599963137000053 ], [ -121.79813276699997, 50.600061828000015 ], [ -121.800964800999949, 50.600168761000063 ], [ -121.800629630999964, 50.603755861000131 ], [ -121.797115647999973, 50.603623168000048 ], [ -121.794985633999914, 50.603542682000139 ] ], [ [ -121.79662377799994, 50.60175329400014 ], [ -121.796484296999935, 50.601662092000076 ], [ -121.796214683999963, 50.601730502000073 ], [ -121.796210413, 50.601865804000077 ], [ -121.796462476999963, 50.602003899000067 ], [ -121.796619187999937, 50.601932703000109 ], [ -121.79662377799994, 50.60175329400014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999607864694996", "sL_AssetLoss": "136.4325", "sL_BldgLoss": "136.379", "sL_StrLoss": "136", "sL_NStrLoss": "0.379", "sL_ContLoss": "0.0535", "geom_point": "0101000020E61000008CB98C17E27B5EC03E290FE2B55E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.934611554999961, 50.738100379000024 ], [ -121.937849449999959, 50.738218268000054 ], [ -121.937524193999977, 50.741805185000025 ], [ -121.934358012999951, 50.74168990900008 ], [ -121.933384186999945, 50.741654436000069 ], [ -121.933332790999927, 50.741456804000101 ], [ -121.933571905999955, 50.740909907000038 ], [ -121.93392180299999, 50.739816091000115 ], [ -121.933960805999988, 50.7393133980001 ], [ -121.933789601999962, 50.738816296 ], [ -121.933459090000014, 50.738354893000064 ], [ -121.933124608999975, 50.738046210000043 ], [ -121.934611554999961, 50.738100379000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999706541798075", "sL_AssetLoss": "258.6399", "sL_BldgLoss": "258.564", "sL_StrLoss": "258", "sL_NStrLoss": "0.564", "sL_ContLoss": "0.0759", "geom_point": "0101000020E6100000ACFA64DE8D8E5EC0324D220C4D724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.224617119999976, 50.894800204000042 ], [ -122.224637236999968, 50.89456232200012 ], [ -122.224215021999925, 50.894548095000047 ], [ -122.22451837899996, 50.89096100600009 ], [ -122.230200611999948, 50.89115235100013 ], [ -122.230180525999927, 50.891390236000049 ], [ -122.230602712999925, 50.891404441000098 ], [ -122.230299842999898, 50.894991545000039 ], [ -122.224617119999976, 50.894800204000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999895381221023", "sL_AssetLoss": "214.1107", "sL_BldgLoss": "214.0883", "sL_StrLoss": "214", "sL_NStrLoss": "0.0883", "sL_ContLoss": "0.0224", "geom_point": "0101000020E610000051167CA2448C5EC0ADA7565FDD704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.189187225999959, 50.88358948100003 ], [ -122.189207661999916, 50.883350006000057 ], [ -122.188204006, 50.883315856000053 ], [ -122.188426585999963, 50.880708214000052 ], [ -122.188510175999937, 50.879728818000089 ], [ -122.194190826999957, 50.87992199100011 ], [ -122.194170418999946, 50.880161468000097 ], [ -122.195174008999928, 50.880195565000058 ], [ -122.195016484999897, 50.882044374000017 ], [ -122.194868369999952, 50.88378261800009 ], [ -122.189187225999959, 50.88358948100003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999113195878695", "sL_AssetLoss": "171.402", "sL_BldgLoss": "171.25", "sL_StrLoss": "170", "sL_NStrLoss": "1.25", "sL_ContLoss": "0.152", "geom_point": "0101000020E610000098A1546F8B715EC0043C69E132494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.771650022999935, 50.569970771000023 ], [ -121.777123804999974, 50.570178840000061 ], [ -121.776786959, 50.573765999000017 ], [ -121.776475282999968, 50.573754158000085 ], [ -121.771146832999975, 50.573551604000073 ], [ -121.771484125999962, 50.569964461000055 ], [ -121.771650022999935, 50.569970771000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999860118293992", "sL_AssetLoss": "335.2833", "sL_BldgLoss": "335.2364", "sL_StrLoss": "335", "sL_NStrLoss": "0.2364", "sL_ContLoss": "0.0469", "geom_point": "0101000020E61000000DFC244ED98A5EC0F8542D6DE16F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.165534309999927, 50.876390163000067 ], [ -122.165629419999959, 50.875282358000014 ], [ -122.165278974999964, 50.875270359000048 ], [ -122.165586929000014, 50.871683352000076 ], [ -122.167507814999979, 50.871749111000021 ], [ -122.167514148999899, 50.871675298000092 ], [ -122.172198972, 50.871835539000088 ], [ -122.173193684999916, 50.871869536000069 ], [ -122.173146717999899, 50.87241773600006 ], [ -122.17401819199992, 50.872447514000044 ], [ -122.173937551999956, 50.873388920000103 ], [ -122.173710908999951, 50.876034541000102 ], [ -122.171268738999956, 50.87595107500011 ], [ -122.171214436999918, 50.876584500000028 ], [ -122.165534309999927, 50.876390163000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999647684031229", "sL_AssetLoss": "250.6273", "sL_BldgLoss": "250.539", "sL_StrLoss": "250", "sL_NStrLoss": "0.539", "sL_ContLoss": "0.0883", "geom_point": "0101000020E610000063B55CAA90765EC07375530C08504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.84996202899994, 50.627140110000035 ], [ -121.84999744299999, 50.626756817000022 ], [ -121.849218928999989, 50.626727791000079 ], [ -121.849550393999948, 50.623140644000046 ], [ -121.851776709999982, 50.623223636000063 ], [ -121.85519710799997, 50.623351053000114 ], [ -121.855161740999989, 50.623734350000078 ], [ -121.85594020799999, 50.623763335000021 ], [ -121.855714656999936, 50.626208055000099 ], [ -121.855609246999933, 50.627350498000077 ], [ -121.84996202899994, 50.627140110000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999726464479693", "sL_AssetLoss": "122.1048", "sL_BldgLoss": "122.0714", "sL_StrLoss": "122", "sL_NStrLoss": "0.0714", "sL_ContLoss": "0.0334", "geom_point": "0101000020E6100000B852D7F358725EC0F062AB1537524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.784023240999929, 50.640405721000057 ], [ -121.789671814999963, 50.640619446000109 ], [ -121.789335442999942, 50.644206339000036 ], [ -121.783686418999963, 50.643992597000093 ], [ -121.784023240999929, 50.640405721000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99953298711915", "sL_AssetLoss": "135.5423", "sL_BldgLoss": "135.479", "sL_StrLoss": "135", "sL_NStrLoss": "0.479", "sL_ContLoss": "0.0633", "geom_point": "0101000020E61000006A74204E94745EC0B2C11D038D594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.818890973999927, 50.697716482000097 ], [ -121.82454692499999, 50.697928427000114 ], [ -121.824283368999915, 50.700758609000097 ], [ -121.824212908999982, 50.701515178000086 ], [ -121.818556507999944, 50.701303219000053 ], [ -121.818738356999958, 50.699353183000035 ], [ -121.818890973999927, 50.697716482000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999893028098668", "sL_AssetLoss": "326.2539", "sL_BldgLoss": "326.219", "sL_StrLoss": "326", "sL_NStrLoss": "0.219", "sL_ContLoss": "0.0349", "geom_point": "0101000020E6100000D8729960D9725EC0F2632717BE7E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.791723179999963, 50.993672998000108 ], [ -121.791730959999953, 50.993373424000055 ], [ -121.790609035999964, 50.99333136700006 ], [ -121.790145619999919, 50.993313992000047 ], [ -121.790159579999951, 50.993166331000083 ], [ -121.790291614999958, 50.991769668000181 ], [ -121.789654140999957, 50.991763064000089 ], [ -121.788780656999947, 50.991754011000104 ], [ -121.78882980399996, 50.989866005000067 ], [ -121.78925715099993, 50.989870436000068 ], [ -121.789264167999974, 50.989600720000091 ], [ -121.790546202999948, 50.989614001000078 ], [ -121.790543167999914, 50.989730741000045 ], [ -121.79097021299999, 50.989746751000055 ], [ -121.790987562999973, 50.989078994000117 ], [ -121.790560223999961, 50.98907457100011 ], [ -121.79058826399995, 50.987995709000089 ], [ -121.791015593999987, 50.988000133000085 ], [ -121.791021862999926, 50.987758839000023 ], [ -121.791022599999934, 50.987730417000101 ], [ -121.791200147999987, 50.987732254 ], [ -121.791352627999942, 50.987733832000089 ], [ -121.79230458499994, 50.987743678000079 ], [ -121.792276583999936, 50.988822540000058 ], [ -121.792703920999969, 50.988826958000075 ], [ -121.792678395999985, 50.989810780000035 ], [ -121.79427976, 50.989870781000015 ], [ -121.794558454999958, 50.986919533000034 ], [ -121.800250967999915, 50.987132639000045 ], [ -121.799912831999919, 50.990718127000079 ], [ -121.796117542, 50.99057608 ], [ -121.795838927999966, 50.993527319000094 ], [ -121.793012197999971, 50.99342143800002 ], [ -121.79300532699996, 50.993686253000128 ], [ -121.791723179999963, 50.993672998000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963081292154775", "sL_AssetLoss": "0.2817", "sL_BldgLoss": "0.2713", "sL_StrLoss": "0.0113", "sL_NStrLoss": "0.26", "sL_ContLoss": "0.0104", "geom_point": "0101000020E6100000A02434B4C7775EC0EA9E4C0E655E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.86891715299997, 50.739246083000069 ], [ -121.869710405999939, 50.732970308000048 ], [ -121.869860961999947, 50.732975881000051 ], [ -121.86975037299996, 50.734175547000063 ], [ -121.870126730999971, 50.734189475000065 ], [ -121.86984751199995, 50.737218434000077 ], [ -121.871002251999954, 50.737261161000049 ], [ -121.871028338999977, 50.73697811300012 ], [ -121.871480892999941, 50.736994855000084 ], [ -121.87150033099999, 50.736783924000108 ], [ -121.872444493999964, 50.736818846000084 ], [ -121.872459196999955, 50.736659247000041 ], [ -121.877057898999951, 50.736829225000101 ], [ -121.869394858999982, 50.739596704000107 ], [ -121.869189772999931, 50.739670777000057 ], [ -121.869136254999944, 50.739586454000097 ], [ -121.868951923999987, 50.739295938000105 ], [ -121.86891715299997, 50.739246083000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999620453569548", "sL_AssetLoss": "389.1487", "sL_BldgLoss": "389.001", "sL_StrLoss": "388", "sL_NStrLoss": "1.001", "sL_ContLoss": "0.1477", "geom_point": "0101000020E6100000C7AB83EE18745EC0FA3C6FF897594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.813241900999969, 50.702516365000065 ], [ -121.813242531999933, 50.702491369000036 ], [ -121.811545171, 50.702427628000066 ], [ -121.811559932999927, 50.70226961200008 ], [ -121.809730416999955, 50.70220088000012 ], [ -121.810065594999941, 50.69861417300006 ], [ -121.812538634999953, 50.698707074000055 ], [ -121.812586652999968, 50.69819288700009 ], [ -121.81122736, 50.698179032000034 ], [ -121.811234179999929, 50.697909301000081 ], [ -121.810809489999968, 50.697904970000131 ], [ -121.810836775999974, 50.696826046000126 ], [ -121.812110820999948, 50.696839037000061 ], [ -121.812104005999956, 50.697108768000149 ], [ -121.813552238999989, 50.69712351700008 ], [ -121.813802745999965, 50.697126067000077 ], [ -121.813795940999952, 50.697395799000134 ], [ -121.814220628999976, 50.697400119000072 ], [ -121.814216598999948, 50.697559908000073 ], [ -121.818307144999906, 50.697713393000065 ], [ -121.81816770899999, 50.699208525000131 ], [ -121.81797263199995, 50.701300128000099 ], [ -121.81732892199993, 50.701275984000048 ], [ -121.817201679999954, 50.702639943000065 ], [ -121.814156273999984, 50.702525671000117 ], [ -121.813241900999969, 50.702516365000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999688120497317", "sL_AssetLoss": "804.798", "sL_BldgLoss": "804.547", "sL_StrLoss": "803", "sL_NStrLoss": "1.547", "sL_ContLoss": "0.251", "geom_point": "0101000020E61000005DCAD0E3BD8F5EC0FD29B8CC275D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.238148781999911, 50.731382887000073 ], [ -122.238324910999935, 50.730471542000046 ], [ -122.237610336, 50.729717874000038 ], [ -122.23753103, 50.729634201000053 ], [ -122.237914505999967, 50.729725606000038 ], [ -122.238620198999968, 50.729820998000044 ], [ -122.239161919999944, 50.729752604000076 ], [ -122.239573402999966, 50.729601690000031 ], [ -122.240767718999919, 50.729402305000072 ], [ -122.2407409, 50.729266994000099 ], [ -122.239834303999913, 50.729324009000088 ], [ -122.239680397999962, 50.729170105000037 ], [ -122.240479577999935, 50.728833996000027 ], [ -122.240738703999924, 50.728628893000042 ], [ -122.240894601999926, 50.728603301000057 ], [ -122.240945995999937, 50.728836914000091 ], [ -122.241088717000011, 50.728892395000088 ], [ -122.241271904999962, 50.728821197000087 ], [ -122.242292006999932, 50.728054991000093 ], [ -122.243082377999926, 50.727268796000061 ], [ -122.243329789999947, 50.7268927900001 ], [ -122.243638184999952, 50.726283301000088 ], [ -122.243968204999973, 50.725115391000088 ], [ -122.244278588999975, 50.724326400000038 ], [ -122.244269095999968, 50.724065809000052 ], [ -122.24408761799998, 50.723847894000116 ], [ -122.243525516999952, 50.723548796000074 ], [ -122.24343148899996, 50.72327820000006 ], [ -122.243262496999932, 50.723159999000089 ], [ -122.242788186999931, 50.723043594000103 ], [ -122.244413857999959, 50.723098317000023 ], [ -122.244429113999942, 50.72291621600008 ], [ -122.250090148999959, 50.723106590000022 ], [ -122.250085324999972, 50.723164256000089 ], [ -122.250710831999982, 50.72318527400008 ], [ -122.250698839999984, 50.723328632000097 ], [ -122.251250320999958, 50.72334715900012 ], [ -122.251241046999979, 50.723458033000099 ], [ -122.252507917999978, 50.723500583000089 ], [ -122.252399583999988, 50.726659429000051 ], [ -122.252591890999895, 50.727101336000061 ], [ -122.252228545999984, 50.727089135000057 ], [ -122.250889559999962, 50.727044162000048 ], [ -122.25076425, 50.728542195000053 ], [ -122.250833951999979, 50.72854264300004 ], [ -122.250838253999945, 50.728272879000052 ], [ -122.251167192999958, 50.728274991000021 ], [ -122.252113317999886, 50.72828106300004 ], [ -122.252100431999921, 50.729090358000086 ], [ -122.25167540399994, 50.729087630000102 ], [ -122.25167110699999, 50.729357395000079 ], [ -122.250396011999939, 50.729349204000087 ], [ -122.250402427000012, 50.728947231000092 ], [ -122.250158556999978, 50.728939038000057 ], [ -122.250133339999948, 50.72924043000009 ], [ -122.248320879999966, 50.729179520000066 ], [ -122.24823901399995, 50.73015747300007 ], [ -122.248102276999987, 50.730152877000094 ], [ -122.248016565999961, 50.731176677000093 ], [ -122.247654658000016, 50.731164510000056 ], [ -122.247632664999912, 50.731427185000058 ], [ -122.247560200999942, 50.731424749000062 ], [ -122.247510393999917, 50.732019587000103 ], [ -122.24184824699995, 50.731829084000076 ], [ -122.241870354999946, 50.731565454000048 ], [ -122.240513218, 50.731519750000075 ], [ -122.240564841999941, 50.730904341000056 ], [ -122.239917368999926, 50.730900122000051 ], [ -122.239691758999967, 50.733588972000092 ], [ -122.23773517699999, 50.733523040000129 ], [ -122.238024827999979, 50.732024309000089 ], [ -122.238473407999919, 50.73195930300006 ], [ -122.238588470999943, 50.73190649900004 ], [ -122.238608192999919, 50.73175689300006 ], [ -122.238459883999951, 50.731578302000031 ], [ -122.238148781999911, 50.731382887000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999887047571219", "sL_AssetLoss": "115.0927", "sL_BldgLoss": "115.0797", "sL_StrLoss": "115", "sL_NStrLoss": "0.0797", "sL_ContLoss": "0.013", "geom_point": "0101000020E61000004E9C58B76C7B5EC067B96C744E624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.926103291999965, 50.767425055000089 ], [ -121.9291147499999, 50.765783700000036 ], [ -121.929047589999982, 50.766522330000122 ], [ -121.930109534999957, 50.766561031000059 ], [ -121.929783455999925, 50.770147807000107 ], [ -121.928120885999959, 50.770087212000114 ], [ -121.928456596999979, 50.770012241000117 ], [ -121.927954325999934, 50.769460067000061 ], [ -121.927947175999961, 50.769452224000098 ], [ -121.92699928499998, 50.768410145000097 ], [ -121.92699213799996, 50.768402301000052 ], [ -121.926103291999965, 50.767425055000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999553787230878", "sL_AssetLoss": "134.465", "sL_BldgLoss": "134.405", "sL_StrLoss": "134", "sL_NStrLoss": "0.405", "sL_ContLoss": "0.06", "geom_point": "0101000020E6100000C1C41F45DD8A5EC037E8640CA06E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.166991691999939, 50.865069542000043 ], [ -122.16723102499995, 50.862279970000131 ], [ -122.17117565299999, 50.862414946000079 ], [ -122.171340090999934, 50.862574393000031 ], [ -122.171515893999953, 50.862990310000036 ], [ -122.172218297999933, 50.863515797000041 ], [ -122.172486090999911, 50.863554302000132 ], [ -122.172818804999977, 50.863531395000059 ], [ -122.172781807999954, 50.863963256000076 ], [ -122.172650830999885, 50.865492077000106 ], [ -122.172602063999975, 50.866061290000069 ], [ -122.167142322999908, 50.865874519000066 ], [ -122.16692326699993, 50.865867021000064 ], [ -122.166939790999891, 50.865674441000095 ], [ -122.166991691999939, 50.865069542000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99983786438122", "sL_AssetLoss": "215.2519", "sL_BldgLoss": "215.217", "sL_StrLoss": "215", "sL_NStrLoss": "0.217", "sL_ContLoss": "0.0349", "geom_point": "0101000020E6100000D5D536280E795EC07416AC27A9694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.889378006999934, 50.823516842000032 ], [ -121.895050182999981, 50.82372518400016 ], [ -121.894720876999955, 50.827311618000124 ], [ -121.893615174, 50.827271028000041 ], [ -121.893600338999946, 50.827432545000136 ], [ -121.887927697999928, 50.827224131000044 ], [ -121.888257546999967, 50.823637716000128 ], [ -121.889363157999981, 50.823678359000077 ], [ -121.889378006999934, 50.823516842000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999694583382573", "sL_AssetLoss": "130.3138", "sL_BldgLoss": "130.274", "sL_StrLoss": "130", "sL_NStrLoss": "0.274", "sL_ContLoss": "0.0398", "geom_point": "0101000020E61000002B536917D5725EC0B452EF46F2504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.794042101999935, 50.635066793000114 ], [ -121.794056364999932, 50.634914510000108 ], [ -121.793195082999958, 50.634881971000048 ], [ -121.793264690999948, 50.634138914000104 ], [ -121.792895521, 50.634124965000083 ], [ -121.793231533999972, 50.630538018000102 ], [ -121.79335265, 50.630542595000108 ], [ -121.793439380999985, 50.629616621000075 ], [ -121.795363961999954, 50.629689330000112 ], [ -121.795361333999935, 50.632687062000116 ], [ -121.795359218999963, 50.635116542000048 ], [ -121.794042101999935, 50.635066793000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999409110251189", "sL_AssetLoss": "140.2969", "sL_BldgLoss": "140.214", "sL_StrLoss": "140", "sL_NStrLoss": "0.214", "sL_ContLoss": "0.0829", "geom_point": "0101000020E61000004245939362745EC01AB3DB1D88474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.820878844999967, 50.557130373000078 ], [ -121.821502475999949, 50.557153822000032 ], [ -121.821453949999977, 50.557676293000114 ], [ -121.821169262999916, 50.56074117100006 ], [ -121.81553055800002, 50.560529022000011 ], [ -121.815864219, 50.556941689000041 ], [ -121.820878844999967, 50.557130373000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "0.999413607394719", "sL_AssetLoss": "648.03", "sL_BldgLoss": "647.65", "sL_StrLoss": "645", "sL_NStrLoss": "2.65", "sL_ContLoss": "0.38", "geom_point": "0101000020E610000045617A6F8A735EC0FA9959CF39564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.803821819999925, 50.677842470000037 ], [ -121.804082495999964, 50.675055393000051 ], [ -121.800753299999926, 50.674929993000077 ], [ -121.800786394999989, 50.67457639900006 ], [ -121.800624318999922, 50.674570291000123 ], [ -121.800960017999969, 50.670983494000019 ], [ -121.802393030999923, 50.671037486000102 ], [ -121.802514624999958, 50.669737728 ], [ -121.802950080999963, 50.669754131000083 ], [ -121.803004537999954, 50.669171939000123 ], [ -121.803097928999932, 50.669175457000101 ], [ -121.803995808999957, 50.669209272000046 ], [ -121.804067599999939, 50.66928929900007 ], [ -121.804385811999921, 50.669223957000057 ], [ -121.804797844999911, 50.669239471000047 ], [ -121.805325502999906, 50.669410290000073 ], [ -121.805903786999949, 50.669452994000054 ], [ -121.806112693999964, 50.66958118900012 ], [ -121.806746012999938, 50.669722193000069 ], [ -121.80713747399993, 50.669941494000106 ], [ -121.807728404999949, 50.670073991000088 ], [ -121.807993607999904, 50.670158 ], [ -121.808544547999958, 50.670586582000098 ], [ -121.80832174699999, 50.672971521000058 ], [ -121.807886256999907, 50.672955139000067 ], [ -121.807831858999961, 50.673537331000048 ], [ -121.806560832999935, 50.673489509000078 ], [ -121.806481044999927, 50.674343147000037 ], [ -121.809810213, 50.674468375000068 ], [ -121.809475194999948, 50.678055182000087 ], [ -121.804415438999939, 50.677864819000021 ], [ -121.803821819999925, 50.677842470000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.99969061735476", "sL_AssetLoss": "267.62975", "sL_BldgLoss": "267.54695", "sL_StrLoss": "267.00495", "sL_NStrLoss": "0.542", "sL_ContLoss": "0.0828", "geom_point": "0101000020E610000010B6F18A54765EC08A7914B6384F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.846018328999918, 50.617884312000058 ], [ -121.846237684, 50.615511848000018 ], [ -121.846505922999967, 50.615521860000051 ], [ -121.851883424999954, 50.615722428000055 ], [ -121.851677734999896, 50.617950131000022 ], [ -121.85254395099993, 50.617982413000021 ], [ -121.852540371999936, 50.618021179000074 ], [ -121.853804508999943, 50.618068280000053 ], [ -121.85347342099999, 50.621655461000074 ], [ -121.850037417999914, 50.621527404000055 ], [ -121.849655049999967, 50.62151314700003 ], [ -121.849645254999984, 50.621619153000069 ], [ -121.843998783999922, 50.621408462000041 ], [ -121.84433062799999, 50.617821308000046 ], [ -121.846018328999918, 50.617884312000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999110191909961", "sL_AssetLoss": "498.984", "sL_BldgLoss": "498.54", "sL_StrLoss": "495", "sL_NStrLoss": "3.54", "sL_ContLoss": "0.444", "geom_point": "0101000020E6100000C4DA31D881925EC0BBD4E7EE635A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.28309571100003, 50.707664609000105 ], [ -122.282064104999975, 50.706466914000082 ], [ -122.284914475999955, 50.706574364000083 ], [ -122.284921121999943, 50.706391334000102 ], [ -122.285012154999905, 50.703882617000041 ], [ -122.290203165999984, 50.704055381000046 ], [ -122.290196750999939, 50.704132922000021 ], [ -122.290757678999924, 50.704151576000093 ], [ -122.290772897999972, 50.703967587000093 ], [ -122.292186778999948, 50.704014593000068 ], [ -122.292257581999948, 50.703158220000077 ], [ -122.293938035999957, 50.703214066000101 ], [ -122.294044203999974, 50.705674180000123 ], [ -122.294059622999896, 50.706031338000031 ], [ -122.294035776, 50.706482740000126 ], [ -122.294930398999924, 50.706422718000034 ], [ -122.294398609999945, 50.707616188000067 ], [ -122.29415748699995, 50.707731510000023 ], [ -122.289357016999972, 50.708584599000083 ], [ -122.28839160299999, 50.708704297000104 ], [ -122.287712520999904, 50.708700006000079 ], [ -122.286442114999957, 50.708368109000041 ], [ -122.284017152999922, 50.707987602000095 ], [ -122.283700989999929, 50.707937989000108 ], [ -122.28309571100003, 50.707664609000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998958440567529", "sL_AssetLoss": "330.274", "sL_BldgLoss": "329.93", "sL_StrLoss": "327", "sL_NStrLoss": "2.93", "sL_ContLoss": "0.344", "geom_point": "0101000020E61000004E946BA739925EC0BCAFCA85CA5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.280169506999968, 50.70906125500008 ], [ -122.28002657799999, 50.706378782000087 ], [ -122.280873132999957, 50.706421994000102 ], [ -122.281625049999917, 50.706450355000094 ], [ -122.283020504999911, 50.707960797000041 ], [ -122.283543098999942, 50.708180112000022 ], [ -122.283799848999976, 50.708210024000032 ], [ -122.285988595999953, 50.708464989000056 ], [ -122.287653495999947, 50.708852393000043 ], [ -122.288941789999953, 50.708869505000088 ], [ -122.289452589999911, 50.708791106000078 ], [ -122.291639599999911, 50.708363895000076 ], [ -122.294153699, 50.707893904000116 ], [ -122.29451110799998, 50.707742884000069 ], [ -122.29490039299999, 50.707251589000052 ], [ -122.29520381599994, 50.706404372000122 ], [ -122.296113233999947, 50.70634334900015 ], [ -122.297677558999936, 50.706238352000106 ], [ -122.297620103999918, 50.706934240000052 ], [ -122.296206125000012, 50.706887302000062 ], [ -122.29613539099995, 50.707743674000035 ], [ -122.294761602999941, 50.707698054000041 ], [ -122.294722256999961, 50.70817420700012 ], [ -122.294309565999981, 50.708160499 ], [ -122.294251078999935, 50.708868216000099 ], [ -122.293613412999974, 50.708847033000019 ], [ -122.293598460999988, 50.709027932 ], [ -122.29288517399999, 50.709004231000108 ], [ -122.292872911999893, 50.709152542000083 ], [ -122.292871708999911, 50.709167088000115 ], [ -122.292755281999945, 50.709137361000117 ], [ -122.286681989, 50.709182521000038 ], [ -122.28459064399999, 50.709197991000032 ], [ -122.284546994999957, 50.709744787000048 ], [ -122.284640984999953, 50.710780539000083 ], [ -122.28395601299999, 50.710757726000026 ], [ -122.28383804, 50.712181160000064 ], [ -122.283008098999943, 50.712153511000075 ], [ -122.282978521999979, 50.712510279000107 ], [ -122.280564585999969, 50.71242982900003 ], [ -122.280532837999914, 50.712812537000076 ], [ -122.279927388999951, 50.712792351000083 ], [ -122.279872589999968, 50.711314511000083 ], [ -122.279932964999915, 50.710856320000062 ], [ -122.279950020999962, 50.710727014000092 ], [ -122.280169506999968, 50.70906125500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999780868555822", "sL_AssetLoss": "118.1939", "sL_BldgLoss": "118.168", "sL_StrLoss": "118", "sL_NStrLoss": "0.168", "sL_ContLoss": "0.0259", "geom_point": "0101000020E6100000CADDE7F8287E5EC0893CCDF20A644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.970283371999955, 50.78117089600007 ], [ -121.972536029999958, 50.78119076200003 ], [ -121.97251829399994, 50.781999987000056 ], [ -121.972104534999957, 50.781996341000067 ], [ -121.969965440999914, 50.781977470000122 ], [ -121.969983219, 50.781168246000078 ], [ -121.970283371999955, 50.78117089600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.999680196323639", "sL_AssetLoss": "586.2972", "sL_BldgLoss": "586.1097", "sL_StrLoss": "585", "sL_NStrLoss": "1.1097", "sL_ContLoss": "0.1875", "geom_point": "0101000020E61000007B2B964B787D5EC02B20061DA1614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.95711121399998, 50.760998262000108 ], [ -121.962730444999934, 50.761201548000081 ], [ -121.962407015999972, 50.764788440000068 ], [ -121.959664685999911, 50.764689267000087 ], [ -121.959327592999955, 50.764372300000097 ], [ -121.959025910999969, 50.763946492000031 ], [ -121.958824396999944, 50.763405315000036 ], [ -121.95865121599995, 50.762874107000066 ], [ -121.958321825999974, 50.762421204000084 ], [ -121.957785621999932, 50.761696198000038 ], [ -121.957244510999942, 50.761170697000132 ], [ -121.95711121399998, 50.760998262000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999690667643018", "sL_AssetLoss": "244.7206", "sL_BldgLoss": "244.6449", "sL_StrLoss": "244.0129", "sL_NStrLoss": "0.632", "sL_ContLoss": "0.0757", "geom_point": "0101000020E61000002B519BDDFF7B5EC0ABF0C231A6604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.936089884999959, 50.755960361000071 ], [ -121.936106866999964, 50.75577323100002 ], [ -121.936089776999893, 50.755773075000043 ], [ -121.936095893999934, 50.75550333600011 ], [ -121.935670664, 50.755499455000091 ], [ -121.93568901699993, 50.754690236000066 ], [ -121.93446520899991, 50.754679060000086 ], [ -121.934413346999932, 50.754678585000072 ], [ -121.934420944999914, 50.75434400700005 ], [ -121.934436472999963, 50.75366020400007 ], [ -121.93444397199994, 50.753329887000135 ], [ -121.935609849999977, 50.753340534000095 ], [ -121.935719605999907, 50.753341536000057 ], [ -121.935716653999961, 50.753471739000091 ], [ -121.935707370999921, 50.753881016000079 ], [ -121.935973379999908, 50.753883443000042 ], [ -121.936132587999978, 50.753884896000052 ], [ -121.936126025999982, 50.754174299000084 ], [ -121.936120356999979, 50.754424376000046 ], [ -121.936229176999973, 50.75442536800012 ], [ -121.936233394999988, 50.754378882000033 ], [ -121.9363021299999, 50.753621385 ], [ -121.936966003999956, 50.754358702000104 ], [ -121.937453888000036, 50.754687702000119 ], [ -121.938145596999945, 50.754872790000107 ], [ -121.93895861499999, 50.755248790000074 ], [ -121.939890104999932, 50.755419689000092 ], [ -121.941823587999963, 50.755395461000084 ], [ -121.941753727999966, 50.756166352000079 ], [ -121.939939443999975, 50.756100399000076 ], [ -121.936089884999959, 50.755960361000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "0.999847173399154", "sL_AssetLoss": "802.8707", "sL_BldgLoss": "802.748", "sL_StrLoss": "802", "sL_NStrLoss": "0.748", "sL_ContLoss": "0.1227", "geom_point": "0101000020E610000048712B107F7E5EC099BC7D2D9A644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.975821921999938, 50.786615533000045 ], [ -121.975827814999946, 50.786345792000112 ], [ -121.975402298999938, 50.786342053000084 ], [ -121.97539640399999, 50.786611796000045 ], [ -121.975821921999938, 50.786615533000045 ], [ -121.975816028999986, 50.786885275000024 ], [ -121.97624154899999, 50.786889010000053 ], [ -121.976229766999936, 50.787428494000075 ], [ -121.97665529199999, 50.78743222700011 ], [ -121.976639382999963, 50.788160803000011 ], [ -121.976637622999988, 50.788241452000086 ], [ -121.975361023999952, 50.788230246000076 ], [ -121.975366920999974, 50.787960504000175 ], [ -121.974941389999955, 50.787956766000072 ], [ -121.974947288999942, 50.787687023000025 ], [ -121.974521760999934, 50.787683283000071 ], [ -121.97452766299989, 50.787413542000053 ], [ -121.974102138999967, 50.787409800000049 ], [ -121.974108041999969, 50.787140058000034 ], [ -121.973256994999957, 50.787132571000058 ], [ -121.973262904999928, 50.786862828000068 ], [ -121.972837383999931, 50.786859083000081 ], [ -121.972855118000012, 50.786049858000062 ], [ -121.97311323400001, 50.78605213 ], [ -121.973706143999905, 50.786057350000071 ], [ -121.973723860999982, 50.785248125000116 ], [ -121.974149366999939, 50.785251867000078 ], [ -121.974150856000023, 50.785183871000115 ], [ -121.974157614999982, 50.784875020000065 ], [ -121.974167076999947, 50.784442642000066 ], [ -121.975018072999958, 50.784450124000031 ], [ -121.975029869999958, 50.783910640000073 ], [ -121.97561256799996, 50.783915759000067 ], [ -121.97630635199999, 50.783921850000077 ], [ -121.976312241999949, 50.783652108000069 ], [ -121.977588715999957, 50.783663304000058 ], [ -121.977577823, 50.784162749000089 ], [ -121.977565183999914, 50.78474227200013 ], [ -121.977990683999977, 50.784746001000052 ], [ -121.977984803999988, 50.785015743000031 ], [ -121.978410308999969, 50.78501947000008 ], [ -121.978404429999912, 50.78528921200008 ], [ -121.979255442999914, 50.7852966620001 ], [ -121.979249569999979, 50.78556640500004 ], [ -121.97979009799991, 50.785571134000165 ], [ -121.980526096999938, 50.78557756900004 ], [ -121.980512227999952, 50.786215270000127 ], [ -121.980504277999927, 50.786580767000061 ], [ -121.980496762999977, 50.786926279000042 ], [ -121.979645718999947, 50.786918838000112 ], [ -121.979645268999931, 50.78693956900009 ], [ -121.97963984799999, 50.787188581000095 ], [ -121.97751222799999, 50.787169949000074 ], [ -121.977518110999966, 50.786900207000066 ], [ -121.976832918999918, 50.786894200000098 ], [ -121.976667070999895, 50.786892744000049 ], [ -121.976672959999945, 50.786623002000084 ], [ -121.975821921999938, 50.786615533000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999718699272317", "sL_AssetLoss": "232.4914", "sL_BldgLoss": "232.426", "sL_StrLoss": "232", "sL_NStrLoss": "0.426", "sL_ContLoss": "0.0654", "geom_point": "0101000020E610000007D031184A7D5EC03C0696E9B8614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.956778322999966, 50.764181131000015 ], [ -121.957027494999949, 50.761421633000133 ], [ -121.957634982999963, 50.762028097000098 ], [ -121.958214297999945, 50.762797103000111 ], [ -121.958708899999976, 50.764168705000102 ], [ -121.959119266999934, 50.764669535000046 ], [ -121.957144370999956, 50.764598064000062 ], [ -121.956741988, 50.764583498000057 ], [ -121.956778322999966, 50.764181131000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999791028082611", "sL_AssetLoss": "118.1977", "sL_BldgLoss": "118.173", "sL_StrLoss": "118", "sL_NStrLoss": "0.173", "sL_ContLoss": "0.0247", "geom_point": "0101000020E6100000A7883EE5B97B5EC091841A114E614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93336038299995, 50.759525280000069 ], [ -121.933877810999931, 50.759530011000081 ], [ -121.933851159999975, 50.760702825000074 ], [ -121.933733692999965, 50.760877670000035 ], [ -121.932571326, 50.760867037000025 ], [ -121.932571479999964, 50.760860329000089 ], [ -121.932602010999943, 50.759518341000032 ], [ -121.93336038299995, 50.759525280000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.999809347183191", "sL_AssetLoss": "816.1432", "sL_BldgLoss": "815.9876", "sL_StrLoss": "815", "sL_NStrLoss": "0.9876", "sL_ContLoss": "0.1556", "geom_point": "0101000020E61000007B05B3533D7B5EC05D57A3893D624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.924117899999942, 50.769941212000091 ], [ -121.92421763499999, 50.768845747000093 ], [ -121.923155638999958, 50.76880699000003 ], [ -121.923295840999984, 50.767267345000064 ], [ -121.923482239999956, 50.765220227000015 ], [ -121.928189540999966, 50.765391946000079 ], [ -121.929147194999942, 50.76542685600004 ], [ -121.9291147499999, 50.765783700000036 ], [ -121.926103291999965, 50.767425055000089 ], [ -121.92699213799996, 50.768402301000052 ], [ -121.92699928499998, 50.768410145000097 ], [ -121.927947175999961, 50.769452224000098 ], [ -121.927954325999934, 50.769460067000061 ], [ -121.928456596999979, 50.770012241000117 ], [ -121.928120885999959, 50.770087212000114 ], [ -121.924117899999942, 50.769941212000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999777227722772", "sL_AssetLoss": "121.2", "sL_BldgLoss": "121.173", "sL_StrLoss": "121", "sL_NStrLoss": "0.173", "sL_ContLoss": "0.027", "geom_point": "0101000020E61000004411180C2A875EC0EE59F876A26A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.111122302999959, 50.833589391000082 ], [ -122.111141574999976, 50.832574672000156 ], [ -122.111142795999911, 50.832510389000049 ], [ -122.112420653999948, 50.832520117000129 ], [ -122.112415538, 50.83278986800012 ], [ -122.112841492999948, 50.832793107000015 ], [ -122.11282715899992, 50.833549221000077 ], [ -122.112826150999979, 50.833602358000078 ], [ -122.111122302999959, 50.833589391000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999800406556848", "sL_AssetLoss": "860.2487", "sL_BldgLoss": "860.077", "sL_StrLoss": "859", "sL_NStrLoss": "1.077", "sL_ContLoss": "0.1717", "geom_point": "0101000020E61000007F047247477F5EC006D4409800644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.986052747999906, 50.77937295300007 ], [ -121.991719778999951, 50.779576408000061 ], [ -121.991398537999927, 50.783163307000137 ], [ -121.985731053, 50.782959837000107 ], [ -121.986052747999906, 50.77937295300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8748334", "BldgCostT": "6033334", "sL_LossRatio": "0.999655739315342", "sL_AssetLoss": "1723.4033", "sL_BldgLoss": "1722.81", "sL_StrLoss": "1719", "sL_NStrLoss": "3.81", "sL_ContLoss": "0.5933", "geom_point": "0101000020E61000000419C769C47D5EC0C2596333B4624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.96393253399999, 50.773941172000043 ], [ -121.963973636999967, 50.773485284000053 ], [ -121.963164638999942, 50.773456052000093 ], [ -121.963229161999919, 50.772740535000061 ], [ -121.962189250999955, 50.772702951000092 ], [ -121.96216292099993, 50.772648939000085 ], [ -121.962249965999931, 50.771683884000062 ], [ -121.961682475999936, 50.771663368000105 ], [ -121.961136098999987, 50.770542491000043 ], [ -121.960570779999927, 50.769606252000059 ], [ -121.96021000899999, 50.769256887000097 ], [ -121.960311725999958, 50.768129632000047 ], [ -121.960322012999939, 50.768015614000127 ], [ -121.963763293999989, 50.768140023000079 ], [ -121.963809508999958, 50.768162098000126 ], [ -121.96468241299999, 50.768431297000106 ], [ -121.965960360999986, 50.768521481000022 ], [ -121.965895767999967, 50.769238326000064 ], [ -121.967924695999926, 50.769311584000071 ], [ -121.96812133799996, 50.769607723000064 ], [ -121.96808284399999, 50.77003514200004 ], [ -121.968413071999933, 50.770047061000071 ], [ -121.968419209999965, 50.77005630500004 ], [ -121.968875890999982, 50.770608915000082 ], [ -121.969393913000019, 50.771521793000055 ], [ -121.969507689999915, 50.772124301000119 ], [ -121.969579395000011, 50.772782299000042 ], [ -121.969699634999955, 50.773025547000053 ], [ -121.969598778999909, 50.774145748000073 ], [ -121.969593690999972, 50.774145564000086 ], [ -121.964341433999948, 50.773955944000107 ], [ -121.96393253399999, 50.773941172000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.999754584399177", "sL_AssetLoss": "1090.8027", "sL_BldgLoss": "1090.535", "sL_StrLoss": "1089", "sL_NStrLoss": "1.535", "sL_ContLoss": "0.2677", "geom_point": "0101000020E6100000E701EAD519825EC04C0678B925684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.03034616, 50.815559167000075 ], [ -122.030380995999948, 50.815166694000041 ], [ -122.029317650999971, 50.815128941000097 ], [ -122.029597334999934, 50.811978568000065 ], [ -122.029636083999947, 50.811542066000079 ], [ -122.035307383999921, 50.811743304000053 ], [ -122.035272592999945, 50.812135780000091 ], [ -122.036335872999956, 50.812173478 ], [ -122.036017971999968, 50.81576036800007 ], [ -122.035470533999927, 50.815740962000106 ], [ -122.03034616, 50.815559167000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999799412268953", "sL_AssetLoss": "111.1733", "sL_BldgLoss": "111.151", "sL_StrLoss": "111", "sL_NStrLoss": "0.151", "sL_ContLoss": "0.0223", "geom_point": "0101000020E61000001B15B4A0E27A5EC04BB0D5713E624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.920520798999959, 50.766961412000057 ], [ -121.921796795999967, 50.766973215000114 ], [ -121.921787962999971, 50.767357434000076 ], [ -121.921778194999888, 50.767782429000079 ], [ -121.92050217299996, 50.767770626000065 ], [ -121.920495964999958, 50.768040363000061 ], [ -121.918369255999977, 50.768020658000133 ], [ -121.918382214999966, 50.767458694000084 ], [ -121.918387915999986, 50.76721144600004 ], [ -121.920514590999957, 50.7672311500001 ], [ -121.920520798999959, 50.766961412000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.999799913490996", "sL_AssetLoss": "580.7488", "sL_BldgLoss": "580.6326", "sL_StrLoss": "580", "sL_NStrLoss": "0.6326", "sL_ContLoss": "0.1162", "geom_point": "0101000020E6100000ADE1B75BF17D5EC070ED233BDF634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.96873846499993, 50.778642624000028 ], [ -121.97002634099999, 50.77868908700006 ], [ -121.969860587999932, 50.780529945000112 ], [ -121.969703367999941, 50.782275928000089 ], [ -121.966806081999906, 50.782171382000044 ], [ -121.965019744999921, 50.778508381000023 ], [ -121.96873846499993, 50.778642624000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999810540067546", "sL_AssetLoss": "712.0239", "sL_BldgLoss": "711.889", "sL_StrLoss": "711", "sL_NStrLoss": "0.889", "sL_ContLoss": "0.1349", "geom_point": "0101000020E610000083AD6DE5007A5EC026EB26E7FA614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.903236686999961, 50.765801751000019 ], [ -121.903370885999934, 50.764030482000109 ], [ -121.90348427, 50.764034640000034 ], [ -121.903466832999939, 50.764225217000089 ], [ -121.904784700999983, 50.764273549000073 ], [ -121.904836436999986, 50.763707910000036 ], [ -121.904918289999927, 50.763757105000074 ], [ -121.90558481, 50.763781292000061 ], [ -121.906716488999962, 50.76386389200006 ], [ -121.907134519999971, 50.764245595000027 ], [ -121.908021612999946, 50.76445210300006 ], [ -121.908780911999912, 50.764790988000065 ], [ -121.909982004999961, 50.764910696000101 ], [ -121.910403015999961, 50.764989499000059 ], [ -121.910264610999945, 50.766504681000114 ], [ -121.904882458999964, 50.766307468000015 ], [ -121.90470744199996, 50.76630105100007 ], [ -121.904589594999976, 50.767589357000034 ], [ -121.903094360999972, 50.767248936000044 ], [ -121.903236686999961, 50.765801751000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.99978103215109", "sL_AssetLoss": "580.9072", "sL_BldgLoss": "580.78", "sL_StrLoss": "580", "sL_NStrLoss": "0.78", "sL_ContLoss": "0.1272", "geom_point": "0101000020E6100000349104A71F7C5EC0E0856BBD78604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.939569085999977, 50.755183294000055 ], [ -121.938611917999964, 50.754941199000058 ], [ -121.937084301999974, 50.754162201000078 ], [ -121.936331216999946, 50.753300830000128 ], [ -121.936415355999969, 50.752373508000048 ], [ -121.942078748999961, 50.75257948400013 ], [ -121.941839138999953, 50.755223840000028 ], [ -121.940818187999966, 50.755167710000109 ], [ -121.939569085999977, 50.755183294000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "0.999718949559686", "sL_AssetLoss": "892.0107", "sL_BldgLoss": "891.76", "sL_StrLoss": "890", "sL_NStrLoss": "1.76", "sL_ContLoss": "0.2507", "geom_point": "0101000020E6100000BA7BEB894F815EC0F84AA45D9A664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.017815991999925, 50.799684857000024 ], [ -122.022960683999983, 50.799868018000055 ], [ -122.02345727, 50.800206971000144 ], [ -122.023166894999989, 50.803473602000096 ], [ -122.021214803999953, 50.803404142000097 ], [ -122.017496695999952, 50.803271748 ], [ -122.017630276999938, 50.801771208000055 ], [ -122.017815991999925, 50.799684857000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999728811267932", "sL_AssetLoss": "124.2677", "sL_BldgLoss": "124.234", "sL_StrLoss": "124", "sL_NStrLoss": "0.234", "sL_ContLoss": "0.0337", "geom_point": "0101000020E6100000D71ECDC34F855EC00C894181F3684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.080395698999922, 50.819591988000049 ], [ -122.084555944999948, 50.819624703000102 ], [ -122.08454490299999, 50.820189391000028 ], [ -122.084540119999943, 50.820433949000083 ], [ -122.083522633999934, 50.820425963000083 ], [ -122.082528844, 50.820134239000055 ], [ -122.08212583599996, 50.82011720100008 ], [ -122.080801256999962, 50.819795534000107 ], [ -122.080395698999922, 50.819591988000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99993198993495", "sL_AssetLoss": "91.01594", "sL_BldgLoss": "91.00975", "sL_StrLoss": "91", "sL_NStrLoss": "0.00975", "sL_ContLoss": "0.00619", "geom_point": "0101000020E6100000B7F271F120835EC03D5B3086AC684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.050488520999934, 50.817194102000023 ], [ -122.050533408999982, 50.817194468000132 ], [ -122.05051842899999, 50.817933215000075 ], [ -122.05031442799995, 50.818002058000083 ], [ -122.049239558999972, 50.817993304000026 ], [ -122.049234083, 50.818263050000063 ], [ -122.048808268999949, 50.818259579000092 ], [ -122.048803137999926, 50.818512044000045 ], [ -122.048753123999944, 50.818528920000091 ], [ -122.047573067999963, 50.818519293000094 ], [ -122.04752533599995, 50.818518904000022 ], [ -122.047547284999979, 50.817439919000016 ], [ -122.047973091999907, 50.81744339400008 ], [ -122.047978576999981, 50.817173648000072 ], [ -122.050488520999934, 50.817194102000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1282500", "BldgCostT": "675000", "sL_LossRatio": "0.26866402646993", "sL_AssetLoss": "451.229", "sL_BldgLoss": "121.229", "sL_StrLoss": "0.229", "sL_NStrLoss": "121", "sL_ContLoss": "330", "geom_point": "0101000020E610000055E5D6FF14935EC005696BE9F6594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.296776463999947, 50.701090670000085 ], [ -122.296798359, 50.700825519000077 ], [ -122.30107343499995, 50.700648961000113 ], [ -122.303169295999965, 50.700229713000056 ], [ -122.303165407, 50.700238420000105 ], [ -122.302972004999958, 50.700671698000058 ], [ -122.303206422999935, 50.701096103000054 ], [ -122.303146913999967, 50.701302601000066 ], [ -122.303032473999949, 50.701355295000091 ], [ -122.302921808999912, 50.701184391000055 ], [ -122.302896253999961, 50.701200141000143 ], [ -122.302806219999965, 50.701255602000053 ], [ -122.302712098999947, 50.701946395000036 ], [ -122.30222151399991, 50.702573003000083 ], [ -122.301239306999946, 50.702936198 ], [ -122.300993800999933, 50.703178306000048 ], [ -122.300425505, 50.703344998000027 ], [ -122.299438284999937, 50.703987310000102 ], [ -122.298797689999915, 50.704199490000114 ], [ -122.297590105999959, 50.704452997000018 ], [ -122.296950010999964, 50.704709306000026 ], [ -122.296362812, 50.705073905000042 ], [ -122.295676588999982, 50.705565291000092 ], [ -122.2956045899999, 50.705641725000078 ], [ -122.294985609999969, 50.70629880399999 ], [ -122.294930398999924, 50.706422718000034 ], [ -122.294035776, 50.706482740000126 ], [ -122.294059622999896, 50.706031338000031 ], [ -122.294044203999974, 50.705674180000123 ], [ -122.293938035999957, 50.703214066000101 ], [ -122.295974587999964, 50.703281713000109 ], [ -122.296157243000025, 50.701070109000035 ], [ -122.296776463999947, 50.701090670000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386251", "BldgCostT": "3025001", "sL_LossRatio": "0.999725763549383", "sL_AssetLoss": "901.4119", "sL_BldgLoss": "901.1647", "sL_StrLoss": "900", "sL_NStrLoss": "1.1647", "sL_ContLoss": "0.2472", "geom_point": "0101000020E6100000A320155240735EC093AF3EFD6B4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.8009097299999, 50.618687335000061 ], [ -121.80378968899997, 50.618795958000092 ], [ -121.803789591999958, 50.618815731 ], [ -121.80345635, 50.62238305200006 ], [ -121.801943183999953, 50.622325990000014 ], [ -121.79781, 50.622170021000066 ], [ -121.798145532999968, 50.618583008000058 ], [ -121.8009097299999, 50.618687335000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "0.999749097052902", "sL_AssetLoss": "1037.8515", "sL_BldgLoss": "1037.5911", "sL_StrLoss": "1036", "sL_NStrLoss": "1.5911", "sL_ContLoss": "0.2604", "geom_point": "0101000020E6100000185FB4C70B735EC08EF6894DF5504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.795361333999935, 50.632687062000116 ], [ -121.795363961999954, 50.629689330000112 ], [ -121.797801658999958, 50.629781374000068 ], [ -121.798906143999929, 50.629792766000101 ], [ -121.799378879999935, 50.629797638000092 ], [ -121.799373142999954, 50.630022833000076 ], [ -121.799806023999963, 50.630039167000042 ], [ -121.799842728999963, 50.630040552000075 ], [ -121.799779727999962, 50.630714216000101 ], [ -121.799755059999953, 50.631682846000039 ], [ -121.800025533999943, 50.631693051000063 ], [ -121.79969005399991, 50.635280012000088 ], [ -121.796874765999988, 50.635173767000055 ], [ -121.795359218999963, 50.635116542000048 ], [ -121.795361333999935, 50.632687062000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7298417", "BldgCostT": "4561667", "sL_LossRatio": "0.999181994457659", "sL_AssetLoss": "955.3725", "sL_BldgLoss": "954.591", "sL_StrLoss": "950.18", "sL_NStrLoss": "4.411", "sL_ContLoss": "0.7815", "geom_point": "0101000020E6100000B610E4A004735EC0EE91729C00524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.795351443999934, 50.64404318400004 ], [ -121.795357090999943, 50.637559884000076 ], [ -121.797792867999959, 50.637651839000057 ], [ -121.799357559000029, 50.637710881000039 ], [ -121.799287757999977, 50.638457030000055 ], [ -121.79937130799999, 50.638460182000031 ], [ -121.7990357259999, 50.642047112000114 ], [ -121.798330922999966, 50.642020522000081 ], [ -121.798131810999919, 50.644148129 ], [ -121.796708382999924, 50.644094411000076 ], [ -121.795351443999934, 50.64404318400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999469398561171", "sL_AssetLoss": "452.8823", "sL_BldgLoss": "452.642", "sL_StrLoss": "451", "sL_NStrLoss": "1.642", "sL_ContLoss": "0.2403", "geom_point": "0101000020E61000001246DC316F755EC0C5264B10A26F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.836686690999983, 50.869988805000048 ], [ -121.837214960999944, 50.869703280000095 ], [ -121.83699500099999, 50.8720629990001 ], [ -121.836624953999888, 50.872049238000045 ], [ -121.836491963999961, 50.873475707000075 ], [ -121.836155098999953, 50.873463179000083 ], [ -121.836105779999968, 50.873992115000107 ], [ -121.833164799999977, 50.873882703000106 ], [ -121.833151795999981, 50.873281596000083 ], [ -121.833069189999932, 50.87310930700005 ], [ -121.833038612999985, 50.873087789000074 ], [ -121.832356895, 50.872608001000046 ], [ -121.832261713999941, 50.872454101000102 ], [ -121.832494109999985, 50.871682194000066 ], [ -121.832630782999914, 50.871387399000128 ], [ -121.832947180999952, 50.871175198000081 ], [ -121.834447697999934, 50.870911701000068 ], [ -121.834529147, 50.87087813400008 ], [ -121.836686690999983, 50.869988805000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14741750", "BldgCostT": "9695000", "sL_LossRatio": "0.999776446302998", "sL_AssetLoss": "2012.9392", "sL_BldgLoss": "2012.4892", "sL_StrLoss": "2010.0382", "sL_NStrLoss": "2.451", "sL_ContLoss": "0.45", "geom_point": "0101000020E610000039120586EE745EC04537D28433714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.821357476999978, 50.884386324000083 ], [ -121.821388236999951, 50.884057668000018 ], [ -121.821810998999979, 50.884041196000091 ], [ -121.822511277999951, 50.884013880000083 ], [ -121.823670011999937, 50.884031495 ], [ -121.82436056100002, 50.883876562000083 ], [ -121.825129590999964, 50.88370400200008 ], [ -121.825874996999957, 50.883406304000118 ], [ -121.826754891999911, 50.882866505000088 ], [ -121.827715903999945, 50.882072073000089 ], [ -121.82774380799998, 50.882049009000092 ], [ -121.828162312999922, 50.881819797000041 ], [ -121.828341598999955, 50.881752053000113 ], [ -121.829110322999952, 50.881461600000058 ], [ -121.82955339899992, 50.881294202000049 ], [ -121.830352191999935, 50.88063621000007 ], [ -121.830836044999913, 50.880385460000134 ], [ -121.83101450099997, 50.8802929840001 ], [ -121.831057141999921, 50.880259205000065 ], [ -121.833989391999978, 50.880368330000096 ], [ -121.833924842, 50.881060145000077 ], [ -121.835578597999955, 50.881076654000061 ], [ -121.835570536999938, 50.881400066000062 ], [ -121.835558427999942, 50.881885828000073 ], [ -121.835132061999914, 50.881881575000065 ], [ -121.83512533499993, 50.882151298000068 ], [ -121.833846232000013, 50.882138526000098 ], [ -121.833839497999946, 50.882408251000101 ], [ -121.833799085999971, 50.88240784700006 ], [ -121.833654770999914, 50.883954352000032 ], [ -121.833209811999964, 50.883937797000044 ], [ -121.833151766999961, 50.884559712000083 ], [ -121.833359236, 50.884561785000066 ], [ -121.833365972999928, 50.884292062000036 ], [ -121.833792359999975, 50.884296322000139 ], [ -121.833799093000025, 50.884026598000034 ], [ -121.834225478999954, 50.884030857000013 ], [ -121.834232209999982, 50.88376113300005 ], [ -121.834658592999943, 50.883765390000093 ], [ -121.834665322999939, 50.883495665000055 ], [ -121.835091702999975, 50.883499922000112 ], [ -121.835105154999937, 50.882960474000051 ], [ -121.835957905999948, 50.882968980000079 ], [ -121.835978072, 50.882159806000061 ], [ -121.83640444000001, 50.882164058000107 ], [ -121.836411157999947, 50.881894333000069 ], [ -121.836837523999961, 50.881898582000098 ], [ -121.836858698999933, 50.881048176000057 ], [ -121.836864387999952, 50.88081968200003 ], [ -121.837229562999951, 50.880823322000026 ], [ -121.838668220999978, 50.880837645000071 ], [ -121.838996170999934, 50.88084090700012 ], [ -121.838969353999985, 50.881919807000024 ], [ -121.838542987999915, 50.881915565000057 ], [ -121.838529573999935, 50.882455015000112 ], [ -121.838103204000021, 50.882450771000059 ], [ -121.838096494999888, 50.882720496000097 ], [ -121.837243748999981, 50.882712004000055 ], [ -121.837237033999898, 50.882981730000061 ], [ -121.836540634999949, 50.88297479100008 ], [ -121.836384282000026, 50.88297323200009 ], [ -121.836382158999967, 50.883058436000034 ], [ -121.836343963999965, 50.884591579000137 ], [ -121.83549118399999, 50.884583075000087 ], [ -121.835484458999971, 50.884852799000086 ], [ -121.835058067999938, 50.884848545000082 ], [ -121.835051338999932, 50.885118269000039 ], [ -121.83462494399997, 50.88511401300007 ], [ -121.834618213999974, 50.885383738000066 ], [ -121.834191817, 50.885379479000036 ], [ -121.834185083999969, 50.885649204000124 ], [ -121.833758685999925, 50.885644944000063 ], [ -121.833751948999961, 50.885914668000112 ], [ -121.832899145999974, 50.885906145000064 ], [ -121.832885665000035, 50.886445593000076 ], [ -121.832459258999933, 50.886441329000064 ], [ -121.832449928, 50.886814563000065 ], [ -121.832439030999979, 50.887250502000057 ], [ -121.831159787999937, 50.887237698000014 ], [ -121.831166809999942, 50.8869571440001 ], [ -121.831173550999935, 50.886687770000087 ], [ -121.831186788999958, 50.886158802000068 ], [ -121.831613192999924, 50.886163072000052 ], [ -121.831633434999958, 50.885353899000073 ], [ -121.832059831, 50.885358167000071 ], [ -121.832066575999932, 50.885088442000061 ], [ -121.832492970999922, 50.885092707000098 ], [ -121.832499714, 50.884822984000081 ], [ -121.832926105999917, 50.884827248000093 ], [ -121.832928813999956, 50.884718846000034 ], [ -121.832208416999961, 50.88469204000009 ], [ -121.832191263999974, 50.884875784000059 ], [ -121.831089471999974, 50.884834776000069 ], [ -121.831055534999962, 50.885198212000063 ], [ -121.830297288999986, 50.885169983000061 ], [ -121.830268217999944, 50.885481229000099 ], [ -121.830039662999965, 50.885472719000084 ], [ -121.829990736999932, 50.885996535000082 ], [ -121.828022184999909, 50.88592322100007 ], [ -121.828002461, 50.886134282000071 ], [ -121.827268474, 50.886106938000061 ], [ -121.82724394199991, 50.886369399000081 ], [ -121.826872778999984, 50.886355570000049 ], [ -121.826830849999951, 50.88680410900006 ], [ -121.821380054999977, 50.886600872000059 ], [ -121.82125088399999, 50.887980838000061 ], [ -121.815570899999955, 50.887768774000115 ], [ -121.815699592999934, 50.886395777000068 ], [ -121.815907001999918, 50.884182822000071 ], [ -121.821357476999978, 50.884386324000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999861636488569", "sL_AssetLoss": "213.2065", "sL_BldgLoss": "213.177", "sL_StrLoss": "213", "sL_NStrLoss": "0.177", "sL_ContLoss": "0.0295", "geom_point": "0101000020E610000042FA37795B755EC01250E108D2714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.831498469999985, 50.890748380000069 ], [ -121.83151871699999, 50.889939208000079 ], [ -121.830665838999963, 50.889930668000019 ], [ -121.830692854999953, 50.888851771000091 ], [ -121.833251426999936, 50.888877373000128 ], [ -121.833244688999983, 50.889147098000116 ], [ -121.833671120999924, 50.889151360000042 ], [ -121.83366438399996, 50.889421084000055 ], [ -121.834517251999927, 50.889429603000089 ], [ -121.834557638999925, 50.88781125800007 ], [ -121.834131219999961, 50.887806999000134 ], [ -121.834148668999958, 50.887108018000028 ], [ -121.834151418999937, 50.88699782500003 ], [ -121.835430655999943, 50.887010596000053 ], [ -121.835423932, 50.88728032100007 ], [ -121.835850346999976, 50.887284574000034 ], [ -121.835816726999965, 50.888633196000072 ], [ -121.836243153999973, 50.88863744800009 ], [ -121.836216267999973, 50.8897163460001 ], [ -121.835437929999941, 50.889708584000061 ], [ -121.834936957999972, 50.889703584000124 ], [ -121.83491676899996, 50.890512757000067 ], [ -121.8343197, 50.890506796000068 ], [ -121.833210991999948, 50.890495718000096 ], [ -121.833204253999938, 50.890765443000063 ], [ -121.832244021999912, 50.890755841000093 ], [ -121.831498469999985, 50.890748380000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999588068039103", "sL_AssetLoss": "129.3903", "sL_BldgLoss": "129.337", "sL_StrLoss": "129", "sL_NStrLoss": "0.337", "sL_ContLoss": "0.0533", "geom_point": "0101000020E6100000034D19724B755EC0CF854F4282704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.83286321599995, 50.877414697000134 ], [ -121.833437115999971, 50.876870622000084 ], [ -121.833131619999918, 50.880144372000039 ], [ -121.831288676999975, 50.88007578000002 ], [ -121.83203282700002, 50.879486244000113 ], [ -121.83224770399994, 50.879316003000071 ], [ -121.832493903999989, 50.878526990000097 ], [ -121.83267208299992, 50.878257159000029 ], [ -121.832848512999973, 50.877990007000058 ], [ -121.83286321599995, 50.877414697000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12494167", "BldgCostT": "8616667", "sL_LossRatio": "0.99972296751773", "sL_AssetLoss": "2360.734", "sL_BldgLoss": "2360.08", "sL_StrLoss": "2356", "sL_NStrLoss": "4.08", "sL_ContLoss": "0.654", "geom_point": "0101000020E6100000EF886DFF48785EC0B29E7B8BDE5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.883818, 50.745046601000077 ], [ -121.883870228999953, 50.74447823200007 ], [ -121.880036227999966, 50.744336793000116 ], [ -121.880030093999906, 50.744403483000013 ], [ -121.877344076999961, 50.743851290000102 ], [ -121.874409548999921, 50.743743480000063 ], [ -121.874556706999925, 50.742145638000061 ], [ -121.874642437999967, 50.741214726000052 ], [ -121.874360417999981, 50.741204302000057 ], [ -121.874335901999984, 50.741470494000097 ], [ -121.870517264999961, 50.741329284000059 ], [ -121.869189772999931, 50.739670777000057 ], [ -121.869394858999982, 50.739596704000107 ], [ -121.877057898999951, 50.736829225000101 ], [ -121.877999059999922, 50.73686398800006 ], [ -121.87811679299989, 50.736906691000065 ], [ -121.878098492999982, 50.737105593000145 ], [ -121.878729431999901, 50.737128893000026 ], [ -121.881485739999931, 50.738128535000051 ], [ -121.881337823999928, 50.739737456000036 ], [ -121.88644179, 50.739925677000031 ], [ -121.886633285999977, 50.73999510900007 ], [ -121.886516903999919, 50.741262578000089 ], [ -121.888062932999958, 50.741319543 ], [ -121.888309409999948, 50.743963418000114 ], [ -121.888322804999945, 50.744178371000018 ], [ -121.887120959, 50.744167041000026 ], [ -121.887577885000013, 50.744987254000137 ], [ -121.883818, 50.745046601000077 ] ], [ [ -121.879480959999981, 50.741024983000045 ], [ -121.87950565700001, 50.740756484000073 ], [ -121.87637162599998, 50.740640743000036 ], [ -121.87635934599993, 50.74077414700006 ], [ -121.875910226999963, 50.740757554000055 ], [ -121.875488083999969, 50.740741956000065 ], [ -121.875475644999966, 50.740877051000133 ], [ -121.875964214999925, 50.740895103000078 ], [ -121.879480959999981, 50.741024983000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28287083", "BldgCostT": "19508333", "sL_LossRatio": "0.999772679566214", "sL_AssetLoss": "5168.915", "sL_BldgLoss": "5167.74", "sL_StrLoss": "5160", "sL_NStrLoss": "7.74", "sL_ContLoss": "1.175", "geom_point": "0101000020E6100000E7CA1CA23C775EC0CC1CFDF52B5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.859715006, 50.742615421000046 ], [ -121.856940018999936, 50.742317700000122 ], [ -121.85641236399999, 50.742363725000047 ], [ -121.856373613999907, 50.74162107200015 ], [ -121.857180257999957, 50.741651014000105 ], [ -121.857448708999982, 50.738748093000012 ], [ -121.860042695999979, 50.738844341000139 ], [ -121.860140851999958, 50.737782155000083 ], [ -121.860861164999974, 50.73780887100007 ], [ -121.860879428999951, 50.737611172000079 ], [ -121.862450166999949, 50.737669414000059 ], [ -121.862460546, 50.737557027000058 ], [ -121.861909820999955, 50.737536609000088 ], [ -121.861934785999935, 50.737266335000115 ], [ -121.861682013999925, 50.737263868000134 ], [ -121.861709707000017, 50.736121551000046 ], [ -121.858398390999966, 50.735998718000047 ], [ -121.858460697999973, 50.735324707000125 ], [ -121.858035022999928, 50.735308909000068 ], [ -121.858285795999933, 50.732596213000107 ], [ -121.857372081999983, 50.732562297000129 ], [ -121.857424228999932, 50.73199829100011 ], [ -121.85728161599999, 50.731992996000059 ], [ -121.85761321499993, 50.728406275000047 ], [ -121.858099261999911, 50.728424317000083 ], [ -121.858163412999971, 50.727730280000102 ], [ -121.858952659999915, 50.727733990000104 ], [ -121.863853194999976, 50.727616694000091 ], [ -121.863550216999954, 50.730898874000069 ], [ -121.863206750999936, 50.730886143000113 ], [ -121.863204221000032, 50.730913547000036 ], [ -121.864926484999927, 50.73097738000007 ], [ -121.86490028899999, 50.731785375000079 ], [ -121.867375357999975, 50.731793102000076 ], [ -121.867344797999962, 50.732124441000103 ], [ -121.868089772999951, 50.732152026000101 ], [ -121.868043309999962, 50.732655854000086 ], [ -121.869259964999955, 50.732700896000097 ], [ -121.869236743, 50.732952777 ], [ -121.869710405999939, 50.732970308000048 ], [ -121.86891715299997, 50.739246083000069 ], [ -121.868951923999987, 50.739295938000105 ], [ -121.869136254999944, 50.739586454000097 ], [ -121.869189772999931, 50.739670777000057 ], [ -121.870517264999961, 50.741329284000059 ], [ -121.868674225999911, 50.741261083000062 ], [ -121.868688703999908, 50.741104101000133 ], [ -121.86781687699991, 50.741071829000084 ], [ -121.867807806999934, 50.741170150000059 ], [ -121.866236941999915, 50.741111985000032 ], [ -121.86620965399996, 50.741407688000038 ], [ -121.86606258099999, 50.741402241000088 ], [ -121.865976135999972, 50.742338951000065 ], [ -121.865294843999948, 50.742364023000079 ], [ -121.864523182999932, 50.742392402000114 ], [ -121.862315838, 50.742502245000011 ], [ -121.862266365999972, 50.742491442000059 ], [ -121.860937859000032, 50.742540676000104 ], [ -121.860876774999937, 50.742552925000084 ], [ -121.859715006, 50.742615421000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999379086775454", "sL_AssetLoss": "309.0609", "sL_BldgLoss": "308.869", "sL_StrLoss": "308", "sL_NStrLoss": "0.869", "sL_ContLoss": "0.1919", "geom_point": "0101000020E6100000137E8891CE7A5EC0E6DF577A27584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.917856238999931, 50.68678651900013 ], [ -121.919964547999882, 50.686863701000057 ], [ -121.919984424999896, 50.686920975000127 ], [ -121.920031810999916, 50.687491351000077 ], [ -121.919935740999946, 50.687968267000059 ], [ -121.919907658999975, 50.688107644000148 ], [ -121.919859051999964, 50.688922838000074 ], [ -121.919906322999935, 50.689416749000038 ], [ -121.920162804999947, 50.689905431000085 ], [ -121.920178373999988, 50.68993506000001 ], [ -121.920502192999905, 50.690396685000039 ], [ -121.920563908999924, 50.690484657000063 ], [ -121.917529759999979, 50.690373594000064 ], [ -121.917856238999931, 50.68678651900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13365333", "BldgCostT": "7743333", "sL_LossRatio": "0.998178530136051", "sL_AssetLoss": "835.5889", "sL_BldgLoss": "834.0669", "sL_StrLoss": "820.3619", "sL_NStrLoss": "13.705", "sL_ContLoss": "1.522", "geom_point": "0101000020E6100000AF624C55F5795EC0228E75711B554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.905377462999979, 50.666947915000051 ], [ -121.905532631999975, 50.665247255000018 ], [ -121.905194070999954, 50.665234814000016 ], [ -121.905207328999964, 50.665089493000025 ], [ -121.899624084, 50.664884165000075 ], [ -121.899840542999954, 50.662514953000056 ], [ -121.901573007999971, 50.662522401000111 ], [ -121.90192209099996, 50.662523900000068 ], [ -121.902285293999938, 50.66250581300006 ], [ -121.902585683999959, 50.662526367000083 ], [ -121.902795293999972, 50.662540700000072 ], [ -121.90330450899998, 50.662646702000089 ], [ -121.903640735999943, 50.662802855000095 ], [ -121.903830798999977, 50.66289108700002 ], [ -121.90407464899999, 50.663097718000081 ], [ -121.90446907799999, 50.663431892000069 ], [ -121.905106796999917, 50.663745990000045 ], [ -121.905888601999919, 50.664220091000075 ], [ -121.906117697999946, 50.664320286000091 ], [ -121.90624438899999, 50.664355328000077 ], [ -121.906470300999914, 50.664417816000089 ], [ -121.906658901999961, 50.664448367000027 ], [ -121.907231779999933, 50.664541207000084 ], [ -121.907688489999941, 50.664584995000048 ], [ -121.90806117399994, 50.664571620000075 ], [ -121.908325271999956, 50.6644896110001 ], [ -121.908563076999926, 50.664354328000101 ], [ -121.91155843300001, 50.66492453500009 ], [ -121.911488185999985, 50.665695604000078 ], [ -121.911460392999913, 50.666000677000049 ], [ -121.911136247999977, 50.665988782000056 ], [ -121.911029942999932, 50.667155485000102 ], [ -121.905377462999979, 50.666947915000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999831262962674", "sL_AssetLoss": "132.1583", "sL_BldgLoss": "132.136", "sL_StrLoss": "132", "sL_NStrLoss": "0.136", "sL_ContLoss": "0.0223", "geom_point": "0101000020E61000003341C351A87C5EC0F6F1AF69CE554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949368384999929, 50.669538496000065 ], [ -121.950077064999974, 50.6693231530001 ], [ -121.950028944999943, 50.669856326000072 ], [ -121.949982686999959, 50.670368841000041 ], [ -121.949633398999964, 50.67036029700008 ], [ -121.948966003999928, 50.670452809000089 ], [ -121.947677881999965, 50.671097994000071 ], [ -121.946964290999915, 50.671370015000122 ], [ -121.946310017, 50.671499601000065 ], [ -121.945866806999916, 50.671701903000098 ], [ -121.945829726999989, 50.67172404300009 ], [ -121.946013011999966, 50.671170695000036 ], [ -121.946170382, 50.670725815000019 ], [ -121.946026712999938, 50.669874080000106 ], [ -121.949368384999929, 50.669538496000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8228469", "BldgCostT": "4860412", "sL_LossRatio": "0.99669922951661", "sL_AssetLoss": "1010.0672", "sL_BldgLoss": "1006.7332", "sL_StrLoss": "991.4142", "sL_NStrLoss": "15.319", "sL_ContLoss": "3.334", "geom_point": "0101000020E61000003D52335ABD785EC059B3424FD2554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.884425878999963, 50.672889742000073 ], [ -121.884467391999962, 50.672437163000055 ], [ -121.884111897999944, 50.672424034000109 ], [ -121.884172237999948, 50.671766235000099 ], [ -121.884128942999979, 50.671764636000034 ], [ -121.884287808999943, 50.670032661000114 ], [ -121.88326276199993, 50.670022844000123 ], [ -121.883230760999965, 50.671371538000081 ], [ -121.882559733999955, 50.67136510600006 ], [ -121.881957373999953, 50.671359329000026 ], [ -121.882021445999925, 50.668661941000067 ], [ -121.88244588299996, 50.668666011000099 ], [ -121.882458691999943, 50.668126533000127 ], [ -121.883028157999917, 50.668131992000013 ], [ -121.883731993999973, 50.66813873600011 ], [ -121.883712802999952, 50.668947954000039 ], [ -121.884386705999972, 50.668954406000097 ], [ -121.88445795399997, 50.668177579000051 ], [ -121.887124988999943, 50.668276052000074 ], [ -121.887127466999971, 50.66817120900005 ], [ -121.88840077, 50.668183361000096 ], [ -121.888397471999937, 50.668323013000084 ], [ -121.890110490999959, 50.668386208000079 ], [ -121.89005024299999, 50.669044013000125 ], [ -121.89009353499992, 50.669045610000062 ], [ -121.890052082999929, 50.669498192000077 ], [ -121.890407553999964, 50.669511302000082 ], [ -121.89007901, 50.673098372000084 ], [ -121.884425878999963, 50.672889742000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999708562866474", "sL_AssetLoss": "126.2708", "sL_BldgLoss": "126.234", "sL_StrLoss": "126", "sL_NStrLoss": "0.234", "sL_ContLoss": "0.0368", "geom_point": "0101000020E61000005B9AF8F6307A5EC0F767D4B6405A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.908784474999891, 50.704529091000097 ], [ -121.910058771, 50.704541013000032 ], [ -121.910056481999945, 50.704639828000033 ], [ -121.910033754999972, 50.705619973000076 ], [ -121.908910741999961, 50.705609467000087 ], [ -121.908334651999922, 50.705604072000064 ], [ -121.90835344499996, 50.704794854000028 ], [ -121.908708965999949, 50.704798182000062 ], [ -121.908778212999948, 50.704798831000105 ], [ -121.908784474999891, 50.704529091000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7298416", "BldgCostT": "4561666", "sL_LossRatio": "0.99941973656886", "sL_AssetLoss": "898.5574", "sL_BldgLoss": "898.036", "sL_StrLoss": "895.1", "sL_NStrLoss": "2.936", "sL_ContLoss": "0.5214", "geom_point": "0101000020E61000008C1724E0C4785EC0121017A945574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.884026837999926, 50.683814310000045 ], [ -121.884083848999978, 50.683192977000047 ], [ -121.884022477999963, 50.683190710000112 ], [ -121.884351580999947, 50.67960370300009 ], [ -121.888339274999964, 50.679750879000082 ], [ -121.890005557000023, 50.679812335000101 ], [ -121.889948630999982, 50.680433672000021 ], [ -121.890009997999982, 50.680435935000084 ], [ -121.889725882999954, 50.683536865000114 ], [ -121.889681340999971, 50.68402295700006 ], [ -121.884026837999926, 50.683814310000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999534273635613", "sL_AssetLoss": "266.6802", "sL_BldgLoss": "266.556", "sL_StrLoss": "266", "sL_NStrLoss": "0.556", "sL_ContLoss": "0.1242", "geom_point": "0101000020E6100000697BEC15337E5EC0D89B39A0FC554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.97380699199999, 50.670854496000047 ], [ -121.974394580999927, 50.670702392000067 ], [ -121.97423782599995, 50.672449664000105 ], [ -121.968584388999929, 50.672245298000064 ], [ -121.968652599999942, 50.67148606300006 ], [ -121.969861114, 50.671466891000094 ], [ -121.97133578399999, 50.671308797000059 ], [ -121.972923291999962, 50.671133611000087 ], [ -121.97380699199999, 50.670854496000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998508990896997", "sL_AssetLoss": "535.208", "sL_BldgLoss": "534.41", "sL_StrLoss": "527", "sL_NStrLoss": "7.41", "sL_ContLoss": "0.798", "geom_point": "0101000020E61000001A07EAD6237B5EC0821B4A698D574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.923237258999976, 50.685645468000182 ], [ -121.923258930999964, 50.6846985930001 ], [ -121.922834340999941, 50.684694669000052 ], [ -121.922840519999937, 50.684424927000087 ], [ -121.922415932999968, 50.684421003000097 ], [ -121.922422110999946, 50.684151261000075 ], [ -121.921997526999974, 50.684147335000048 ], [ -121.922009888999966, 50.683607851000062 ], [ -121.92158531099993, 50.683603923000121 ], [ -121.921591494000012, 50.683334182000095 ], [ -121.920742341999983, 50.68332632200007 ], [ -121.920760905999913, 50.682517097000108 ], [ -121.922459180999979, 50.682532809000136 ], [ -121.922453002999958, 50.682802552000062 ], [ -121.922877574, 50.682806475000099 ], [ -121.922871398999945, 50.683076218000075 ], [ -121.923720546999917, 50.683084062000084 ], [ -121.923712305999942, 50.683444278000152 ], [ -121.923721594999932, 50.683342051000047 ], [ -121.926254008999976, 50.683434628000086 ], [ -121.927346881999966, 50.683917303000079 ], [ -121.92776358499999, 50.684189240000087 ], [ -121.927739320999962, 50.684198313000117 ], [ -121.927162476999939, 50.684414002000054 ], [ -121.925631427999946, 50.68498797800008 ], [ -121.924695626999963, 50.685338771000076 ], [ -121.924070841999949, 50.685502170000099 ], [ -121.924057214999934, 50.68550476700004 ], [ -121.923418514999952, 50.685625892000104 ], [ -121.92332036199997, 50.685636490000078 ], [ -121.923237258999976, 50.685645468000182 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.998721687801786", "sL_AssetLoss": "1117.098", "sL_BldgLoss": "1115.67", "sL_StrLoss": "1104", "sL_NStrLoss": "11.67", "sL_ContLoss": "1.428", "geom_point": "0101000020E610000011ADF45E257B5EC02017497935564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.921910595, 50.675872010000077 ], [ -121.921920804999957, 50.675511590000127 ], [ -121.922068608999922, 50.675206785000093 ], [ -121.92185120699996, 50.674819496000069 ], [ -121.92191267799997, 50.674540295000092 ], [ -121.922430085999977, 50.673645900000025 ], [ -121.922605387999937, 50.67279279300007 ], [ -121.922677884, 50.672731601000045 ], [ -121.922903697999985, 50.672741490000085 ], [ -121.923734387, 50.672883993000049 ], [ -121.923922080999958, 50.672732993000068 ], [ -121.923914716999946, 50.672428200000077 ], [ -121.923308706999975, 50.672358385000059 ], [ -121.923015715999938, 50.672203203000031 ], [ -121.922876511999959, 50.672013796000059 ], [ -121.923355294999936, 50.669688001000075 ], [ -121.923403589999964, 50.669022702000078 ], [ -121.92488993799999, 50.669077068000057 ], [ -121.924908688999906, 50.668256061000044 ], [ -121.925162668, 50.668258404000106 ], [ -121.925174843999955, 50.668305740000093 ], [ -121.925140374999927, 50.668965643000071 ], [ -121.925130716999931, 50.669150815000108 ], [ -121.925063402999939, 50.669376896000067 ], [ -121.924522665000012, 50.670303692000083 ], [ -121.924437939999976, 50.670590743000027 ], [ -121.924383387999939, 50.670775466000066 ], [ -121.924240281999985, 50.671266333000098 ], [ -121.9242186099999, 50.671340795000084 ], [ -121.92429336899994, 50.6715010120001 ], [ -121.92509311400002, 50.672016115000112 ], [ -121.925408050999948, 50.672295759000072 ], [ -121.925523472999956, 50.672459107000101 ], [ -121.925558823999935, 50.67250912500009 ], [ -121.925567216999937, 50.672768630000071 ], [ -121.925572960999915, 50.672946944000024 ], [ -121.925704414999984, 50.673404325000099 ], [ -121.92572123399999, 50.673431251000054 ], [ -121.926271378999971, 50.674313106000035 ], [ -121.926515287999948, 50.674828607000101 ], [ -121.927031196999906, 50.675425109000052 ], [ -121.927049670000017, 50.675527834 ], [ -121.927067001999887, 50.675624371000055 ], [ -121.927047857999966, 50.675672849000065 ], [ -121.927002526999942, 50.675787564000089 ], [ -121.926840626999962, 50.67593100600007 ], [ -121.926769498999974, 50.675967956000086 ], [ -121.926468813999975, 50.675855613000117 ], [ -121.92485089499999, 50.676064169000021 ], [ -121.92336605, 50.676255534000084 ], [ -121.922847885999929, 50.676534703000051 ], [ -121.922117193999966, 50.67613400600009 ], [ -121.921910595, 50.675872010000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7330417", "BldgCostT": "4791667", "sL_LossRatio": "0.998787605956589", "sL_AssetLoss": "2638.9935", "sL_BldgLoss": "2635.794", "sL_StrLoss": "2623", "sL_NStrLoss": "12.794", "sL_ContLoss": "3.1995", "geom_point": "0101000020E6100000ACF7446CAA7A5EC00E1B9FA8F0584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.912857999000011, 50.697662354000059 ], [ -121.912918307999959, 50.697000649000096 ], [ -121.912855742999923, 50.696998356000094 ], [ -121.913182643, 50.693411322000038 ], [ -121.914237052999908, 50.693449965000084 ], [ -121.914283725999937, 50.692937647000086 ], [ -121.918877121000023, 50.693105876000047 ], [ -121.919039720999962, 50.691318957000107 ], [ -121.921178082, 50.691397207000129 ], [ -121.92132538499996, 50.69167306300006 ], [ -121.921352497999933, 50.69195207000007 ], [ -121.921254651, 50.692263405000119 ], [ -121.920923644999959, 50.692846036000034 ], [ -121.920696603999957, 50.693517048000032 ], [ -121.920547723999945, 50.693781501000032 ], [ -121.919881517999926, 50.694445457 ], [ -121.919679236999968, 50.694695461000045 ], [ -121.919103272999976, 50.695407257000063 ], [ -121.918917996999966, 50.695636207000092 ], [ -121.918904667999982, 50.695652697000121 ], [ -121.918022461999939, 50.696742842000013 ], [ -121.917200935, 50.69782145400012 ], [ -121.912857999000011, 50.697662354000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12375494", "BldgCostT": "7559076", "sL_LossRatio": "0.998446358249604", "sL_AssetLoss": "1358.55", "sL_BldgLoss": "1356.4393", "sL_StrLoss": "1342.3763", "sL_NStrLoss": "14.063", "sL_ContLoss": "2.1107", "geom_point": "0101000020E6100000922DFD11E7785EC0B7B56C4A05554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.885442019999985, 50.662461056000076 ], [ -121.885471867999939, 50.662135489000057 ], [ -121.890507535999973, 50.662321345000045 ], [ -121.890566240999959, 50.662474630000084 ], [ -121.8926282499999, 50.662483668000085 ], [ -121.894549436999938, 50.66255447800004 ], [ -121.894221273999946, 50.666141588000116 ], [ -121.89316054699999, 50.66610249700004 ], [ -121.893159126999947, 50.666118013000073 ], [ -121.89196524299993, 50.666074003000077 ], [ -121.891962575999955, 50.666103143000079 ], [ -121.889432425999956, 50.666009830000064 ], [ -121.889414373999969, 50.666206903000059 ], [ -121.88376211399995, 50.665998238000029 ], [ -121.883918048999959, 50.664298151000018 ], [ -121.884091110999975, 50.662411158000111 ], [ -121.885442019999985, 50.662461056000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.99963969826568", "sL_AssetLoss": "652.7862", "sL_BldgLoss": "652.551", "sL_StrLoss": "651", "sL_NStrLoss": "1.551", "sL_ContLoss": "0.2352", "geom_point": "0101000020E6100000B7F704E4267F5EC0AD150A6438544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.986801816, 50.656299002000033 ], [ -121.987396793999963, 50.656215005000092 ], [ -121.988538589999933, 50.656387292000019 ], [ -121.9895198359999, 50.656644481000086 ], [ -121.989265390999932, 50.659492233000073 ], [ -121.983613516999952, 50.659288627000073 ], [ -121.983779352999974, 50.657435249000073 ], [ -121.984458710999903, 50.657358703000099 ], [ -121.98448018899991, 50.65698980100008 ], [ -121.985321188999976, 50.656682190000041 ], [ -121.985561314, 50.65666649200007 ], [ -121.986801816, 50.656299002000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13361533", "BldgCostT": "8585546", "sL_LossRatio": "0.999070999322455", "sL_AssetLoss": "2501.8281", "sL_BldgLoss": "2499.5039", "sL_StrLoss": "2480.3449", "sL_NStrLoss": "19.159", "sL_ContLoss": "2.3242", "geom_point": "0101000020E610000003BF1D13EF7B5EC05C465E9428574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.934306176999911, 50.684451063000012 ], [ -121.934310491999923, 50.684260565000059 ], [ -121.934064432999932, 50.684258315000072 ], [ -121.933966370999926, 50.684180128000087 ], [ -121.932964446999932, 50.682997284000074 ], [ -121.932827576999927, 50.682707973000056 ], [ -121.93280142699993, 50.682401994000074 ], [ -121.932869039999972, 50.682125553000084 ], [ -121.933199316999932, 50.681532954000012 ], [ -121.933834484999977, 50.680784138000021 ], [ -121.933876583, 50.680632728000056 ], [ -121.933630208999901, 50.680612927000055 ], [ -121.933487398999944, 50.68063921100002 ], [ -121.933350086, 50.680699004000068 ], [ -121.93325916399999, 50.680794639000112 ], [ -121.932639724999888, 50.681964214000089 ], [ -121.932442431999945, 50.682231436000109 ], [ -121.9322548049999, 50.682407134000059 ], [ -121.932217712999943, 50.682441883000081 ], [ -121.93197627799999, 50.682586035000078 ], [ -121.931650657999981, 50.68273611200005 ], [ -121.931293306999962, 50.682869473000039 ], [ -121.931101610999974, 50.682941007000103 ], [ -121.930733014999973, 50.68307885600003 ], [ -121.930567794999945, 50.682938897000049 ], [ -121.93003437899992, 50.6823327970001 ], [ -121.930107575999941, 50.682333468000131 ], [ -121.930108716999939, 50.68228325500008 ], [ -121.929986863999943, 50.682278806000035 ], [ -121.929339501999934, 50.681543206000065 ], [ -121.929887209999919, 50.68116999700004 ], [ -121.93030737899997, 50.681335198000021 ], [ -121.930507184999954, 50.68127539699999 ], [ -121.93139969500001, 50.680006401000064 ], [ -121.931586817999928, 50.679872607000036 ], [ -121.932514791999935, 50.679530711000027 ], [ -121.932734140999983, 50.67937446300008 ], [ -121.933151724999945, 50.679253265000035 ], [ -121.933382157999915, 50.679169600000066 ], [ -121.93362801899994, 50.67907621800007 ], [ -121.93370301500002, 50.679029994000096 ], [ -121.934316141999929, 50.678651973000036 ], [ -121.93539825199997, 50.677984777000098 ], [ -121.935614682999955, 50.677828559000048 ], [ -121.937120181999944, 50.676742215000075 ], [ -121.938481924999977, 50.675759586000019 ], [ -121.939324338999981, 50.67515166000004 ], [ -121.940152943999962, 50.675950070000098 ], [ -121.939594012, 50.675944987000058 ], [ -121.939581854999986, 50.676484474000127 ], [ -121.938732821999977, 50.676476746000041 ], [ -121.93872065399998, 50.677016234000114 ], [ -121.938296132999966, 50.677012367000067 ], [ -121.938283960999968, 50.677551855000083 ], [ -121.937859432999986, 50.677547986000064 ], [ -121.937847257, 50.678087473000126 ], [ -121.937522881999939, 50.678084516000055 ], [ -121.937474060999975, 50.678623669000018 ], [ -121.937835077999964, 50.678626960000031 ], [ -121.937841166999945, 50.67835721700002 ], [ -121.938265701, 50.67836108500012 ], [ -121.938271787999938, 50.678091342000073 ], [ -121.938696317999984, 50.678095209000041 ], [ -121.938714569999902, 50.677285977000118 ], [ -121.939139094999987, 50.677289842000057 ], [ -121.939145176999929, 50.677020098000114 ], [ -121.939569697999943, 50.677023961 ], [ -121.93957577599997, 50.676754218000035 ], [ -121.940642996999941, 50.676763923000117 ], [ -121.940829261999966, 50.677657573000083 ], [ -121.940790192999941, 50.679393188000034 ], [ -121.941194106999959, 50.679407898000107 ], [ -121.941541079999965, 50.681072358000044 ], [ -121.94125003000002, 50.681432299000015 ], [ -121.940608371999943, 50.681830909000027 ], [ -121.940262792999974, 50.682201625000076 ], [ -121.939354234999897, 50.682681383000073 ], [ -121.939287372999928, 50.682788396000021 ], [ -121.939381127, 50.6831250480001 ], [ -121.939508054999919, 50.683285316000124 ], [ -121.939561106999932, 50.683404219000046 ], [ -121.939556805999928, 50.683530030000092 ], [ -121.939526582999974, 50.68356757500009 ], [ -121.939462543999966, 50.683647167000075 ], [ -121.938870756999961, 50.684026905000096 ], [ -121.938486705999978, 50.684273821000076 ], [ -121.938022142999969, 50.684582601000081 ], [ -121.937468219999971, 50.684950773000082 ], [ -121.936625811999974, 50.685510642000075 ], [ -121.936715480999951, 50.686258901000045 ], [ -121.935672720999946, 50.686339664000052 ], [ -121.935457731999946, 50.686317408000036 ], [ -121.935269463999973, 50.686234974000058 ], [ -121.935195195999981, 50.686115299000065 ], [ -121.935202501999981, 50.686057398000088 ], [ -121.935237443999981, 50.685779486000044 ], [ -121.935262257, 50.685582078000095 ], [ -121.935286472, 50.685389829000052 ], [ -121.935227000999973, 50.685185233000063 ], [ -121.934306176999911, 50.684451063000012 ] ], [ [ -121.935626972999955, 50.682384002000049 ], [ -121.935639178999963, 50.681844516000133 ], [ -121.93479004799994, 50.681836759000078 ], [ -121.934809842999968, 50.680962405000059 ], [ -121.934675048999964, 50.682449885000047 ], [ -121.934351774999953, 50.682438096000034 ], [ -121.934341044999954, 50.682911849000121 ], [ -121.934765618999975, 50.682915731000051 ], [ -121.934771725999965, 50.682645988000061 ], [ -121.935196298999955, 50.682649867000052 ], [ -121.935202403999966, 50.682380123000094 ], [ -121.935626972999955, 50.682384002000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999831788768746", "sL_AssetLoss": "114.1422", "sL_BldgLoss": "114.123", "sL_StrLoss": "114", "sL_NStrLoss": "0.123", "sL_ContLoss": "0.0192", "geom_point": "0101000020E6100000D8122CED187F5EC0CD348A7AFB534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.98382796899989, 50.656891868000066 ], [ -121.983934493999968, 50.655701227000101 ], [ -121.989585917999989, 50.65590481800006 ], [ -121.98954169699999, 50.656399801000134 ], [ -121.989261703999958, 50.656347492000044 ], [ -121.98829291199992, 50.656034093000073 ], [ -121.98731778599992, 50.655990009000071 ], [ -121.986369091999919, 50.656035594000137 ], [ -121.985285788999946, 50.656358903000047 ], [ -121.985127791999929, 50.656428602000027 ], [ -121.984727288, 50.656659403000042 ], [ -121.983945111999944, 50.656885798000047 ], [ -121.98382796899989, 50.656891868000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30280000", "BldgCostT": "19705000", "sL_LossRatio": "0.943690550214495", "sL_AssetLoss": "5658.0734", "sL_BldgLoss": "5339.4704", "sL_StrLoss": "5179.1554", "sL_NStrLoss": "160.315", "sL_ContLoss": "318.603", "geom_point": "0101000020E610000015FDC2A7907A5EC0A1A3131197564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.914718941999979, 50.686078627000029 ], [ -121.914785040999931, 50.685352851000104 ], [ -121.914301173999931, 50.68533511800004 ], [ -121.914502442999961, 50.683125312000094 ], [ -121.912687564999956, 50.683058779000156 ], [ -121.912743607999957, 50.682443693000053 ], [ -121.912110186999939, 50.682420465000028 ], [ -121.912151838999975, 50.681963373000066 ], [ -121.911840607999977, 50.681951959000095 ], [ -121.912164968999932, 50.678392412000072 ], [ -121.911165421999911, 50.67835574700009 ], [ -121.91121760299994, 50.677783182000113 ], [ -121.911132158999948, 50.677780048000066 ], [ -121.911167787999915, 50.677389105000032 ], [ -121.911087183999925, 50.677386148000075 ], [ -121.911252170999916, 50.675575800000068 ], [ -121.910599087999941, 50.675551838000025 ], [ -121.910665170999962, 50.674826791000072 ], [ -121.91048653199995, 50.674820237000041 ], [ -121.910651499999943, 50.673010241000028 ], [ -121.910335245999974, 50.672998636000052 ], [ -121.910381914999959, 50.672486613000039 ], [ -121.91029808, 50.672483536000115 ], [ -121.910625006999965, 50.668896405000062 ], [ -121.911970746999941, 50.668945784000101 ], [ -121.912117925999965, 50.668951183000068 ], [ -121.912311457999976, 50.6668266410001 ], [ -121.917212193999916, 50.667006316000133 ], [ -121.917336610999953, 50.667385106000047 ], [ -121.91733301799999, 50.667608694000137 ], [ -121.917067878999958, 50.668038800000133 ], [ -121.917130596999982, 50.668389209000054 ], [ -121.91756649699991, 50.669077105000035 ], [ -121.91760761099998, 50.669743586000045 ], [ -121.918089180999971, 50.671025393000022 ], [ -121.918253598999982, 50.671197699000032 ], [ -121.918152509999956, 50.673193009000059 ], [ -121.918108506999928, 50.673831105000033 ], [ -121.917586589999956, 50.674950498000037 ], [ -121.917521203999954, 50.675992999000059 ], [ -121.917547781999971, 50.67664959000011 ], [ -121.917776890999988, 50.677209305000055 ], [ -121.917899745999975, 50.677327510000019 ], [ -121.917789104999883, 50.678543499000099 ], [ -121.916824356999925, 50.678508159000145 ], [ -121.916821871999929, 50.678535473000082 ], [ -121.917821427999982, 50.678572086000052 ], [ -121.917779835999937, 50.679029182000086 ], [ -121.918091048999969, 50.679040580000063 ], [ -121.918035083999939, 50.679655670000095 ], [ -121.918668468999968, 50.679678865000056 ], [ -121.918467420999917, 50.681888688000058 ], [ -121.920282260999954, 50.681955127000052 ], [ -121.920216253999953, 50.682680909000126 ], [ -121.920700093999983, 50.682698617000028 ], [ -121.920429472999942, 50.685674392000074 ], [ -121.919543859999976, 50.68565148600004 ], [ -121.919756114999927, 50.68626311000002 ], [ -121.914718941999979, 50.686078627000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999675089161579", "sL_AssetLoss": "132.344", "sL_BldgLoss": "132.301", "sL_StrLoss": "132", "sL_NStrLoss": "0.301", "sL_ContLoss": "0.043", "geom_point": "0101000020E6100000AE81AD122C7F5EC07A396886BF544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.987541844999967, 50.661532442000059 ], [ -121.98788352399994, 50.661535409000052 ], [ -121.987869600999943, 50.662183061000043 ], [ -121.987860327999954, 50.66261440400006 ], [ -121.987354771999946, 50.662610012000073 ], [ -121.986162735999955, 50.662599648000025 ], [ -121.986180160999965, 50.66179040300009 ], [ -121.986604551999946, 50.661794094000058 ], [ -121.986610014999926, 50.661540274000103 ], [ -121.98661035799995, 50.661524346000078 ], [ -121.987541844999967, 50.661532442000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999840866498843", "sL_AssetLoss": "118.1398", "sL_BldgLoss": "118.121", "sL_StrLoss": "118", "sL_NStrLoss": "0.121", "sL_ContLoss": "0.0188", "geom_point": "0101000020E61000006E38EAF0297F5EC0809EC4EFBF554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.985569775999949, 50.670418653000098 ], [ -121.985584937999988, 50.669715118000013 ], [ -121.985044379999948, 50.669695644000051 ], [ -121.985055498999898, 50.669571354000027 ], [ -121.98596299099998, 50.669602593000036 ], [ -121.986600496999927, 50.669599709000103 ], [ -121.987351578999963, 50.669461598000112 ], [ -121.988272694999978, 50.669470094000097 ], [ -121.988892482999958, 50.669555607000085 ], [ -121.989136356999921, 50.669842996000106 ], [ -121.987706002999957, 50.669791507000092 ], [ -121.987692118999973, 50.670437107000083 ], [ -121.985569775999949, 50.670418653000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6617500", "BldgCostT": "4300000", "sL_LossRatio": "0.999276029242846", "sL_AssetLoss": "2225.228", "sL_BldgLoss": "2223.617", "sL_StrLoss": "2218", "sL_NStrLoss": "5.617", "sL_ContLoss": "1.611", "geom_point": "0101000020E61000003D9C5D4A5F7F5EC0597EE89B17554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.985098458999971, 50.669091194000046 ], [ -121.98516919099994, 50.668300600000059 ], [ -121.985365315999957, 50.666108284000096 ], [ -121.987360852999942, 50.66618016300005 ], [ -121.987630394999968, 50.663165332000069 ], [ -121.987744256999974, 50.663169432000132 ], [ -121.989099555999957, 50.663218228000098 ], [ -121.989157665999954, 50.662567967000022 ], [ -121.990012575999941, 50.662598738000057 ], [ -121.990022434999986, 50.662488388000106 ], [ -121.995674740999988, 50.662691668000079 ], [ -121.995453465999972, 50.665171672000064 ], [ -121.995241517999929, 50.665177605000117 ], [ -121.994584824999905, 50.664767402000059 ], [ -121.994217608999946, 50.664700486000093 ], [ -121.99335649899993, 50.664693295000056 ], [ -121.991965803999932, 50.664834305000092 ], [ -121.991297982999953, 50.665016593000139 ], [ -121.990590879999957, 50.6656403920001 ], [ -121.990638183999977, 50.666019297000084 ], [ -121.990537287, 50.666111519000069 ], [ -121.99033591099996, 50.6662955870001 ], [ -121.989980090999907, 50.666418104000087 ], [ -121.98945841699999, 50.666979193000053 ], [ -121.989219798999954, 50.66750175400005 ], [ -121.989023034999974, 50.667932653000086 ], [ -121.988774924999987, 50.668476005000059 ], [ -121.988823744999976, 50.667600919000037 ], [ -121.990840902999963, 50.665198235000062 ], [ -121.989393102999884, 50.664847255000083 ], [ -121.987475208999939, 50.666986530000088 ], [ -121.986225235999939, 50.668948548000046 ], [ -121.986669416999959, 50.668943861000116 ], [ -121.986866579999941, 50.668941767000028 ], [ -121.986482308999967, 50.66909408500004 ], [ -121.986058216999965, 50.66914539600004 ], [ -121.98509527799996, 50.669126761000044 ], [ -121.985098458999971, 50.669091194000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11929333", "BldgCostT": "7963333", "sL_LossRatio": "0.999944657526435", "sL_AssetLoss": "2466.821434", "sL_BldgLoss": "2466.684914", "sL_StrLoss": "2466.000884", "sL_NStrLoss": "0.68403", "sL_ContLoss": "0.13652", "geom_point": "0101000020E61000002E7E4376587B5EC0FE44E9FBBE544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.925285064999983, 50.667835873000058 ], [ -121.925347869999911, 50.667144188000073 ], [ -121.924794083, 50.667123936000053 ], [ -121.924871868999958, 50.666267346000105 ], [ -121.924168516999941, 50.666241620000065 ], [ -121.924231165999956, 50.665551812000011 ], [ -121.923697043999951, 50.665546880000079 ], [ -121.923721712999964, 50.664467909000081 ], [ -121.924329093999987, 50.664473516000101 ], [ -121.924448647999924, 50.663157040000037 ], [ -121.923983415999928, 50.663140022000043 ], [ -121.92403407799992, 50.662582194000088 ], [ -121.923764877999957, 50.662579708000102 ], [ -121.923777210999958, 50.662040222 ], [ -121.923361543999945, 50.662036382000103 ], [ -121.923354089999961, 50.661981077000092 ], [ -121.923365163999961, 50.661496815000071 ], [ -121.923288711999987, 50.661496109000026 ], [ -121.923194835999979, 50.660799718000142 ], [ -121.923173371999937, 50.660415843000095 ], [ -121.923814204999971, 50.660421762000048 ], [ -121.923808038999979, 50.660691506000013 ], [ -121.923899988999935, 50.660692355000087 ], [ -121.924172898, 50.657687103000065 ], [ -121.924301032999921, 50.657691792000058 ], [ -121.924312524999891, 50.657188762 ], [ -121.925585547999944, 50.657200506000045 ], [ -121.925573275999938, 50.65773833 ], [ -121.925634106999979, 50.657740555000075 ], [ -121.925997584999934, 50.657743904 ], [ -121.925997358, 50.657753839000129 ], [ -121.929824299999936, 50.65789372200009 ], [ -121.929688010999897, 50.659396659000102 ], [ -121.930204280999988, 50.659401399000068 ], [ -121.930198151999917, 50.659671142000015 ], [ -121.930622515999971, 50.659675037000099 ], [ -121.930610261999917, 50.660214524000061 ], [ -121.931034631999964, 50.660218419000088 ], [ -121.931022383999959, 50.6607579060001 ], [ -121.931871132999945, 50.66076568800009 ], [ -121.93186501299999, 50.661035432000034 ], [ -121.932289388999948, 50.661039321000025 ], [ -121.932271036999921, 50.66184855300002 ], [ -121.932695421999981, 50.661852440000146 ], [ -121.932677075999905, 50.662661671000073 ], [ -121.931403902999975, 50.662650003000117 ], [ -121.93141614699999, 50.662110517000023 ], [ -121.930991760999973, 50.662106624000089 ], [ -121.930997884999968, 50.661836881000092 ], [ -121.930573501999945, 50.661832987000089 ], [ -121.930579628999951, 50.66156324400005 ], [ -121.930155247999934, 50.661559349000065 ], [ -121.93016137799999, 50.661289605 ], [ -121.929822338999912, 50.661286492000045 ], [ -121.92977344599997, 50.661825643 ], [ -121.930149117999974, 50.661829092000069 ], [ -121.930125685999926, 50.662860271000113 ], [ -121.930146317999984, 50.662861025000026 ], [ -121.930118762999911, 50.663164880000096 ], [ -121.93011846899999, 50.663177810000036 ], [ -121.930542865999925, 50.663181705000056 ], [ -121.930530609999934, 50.663721192000047 ], [ -121.930955011000023, 50.663725086000113 ], [ -121.930936635999956, 50.664534317000111 ], [ -121.930700427999966, 50.664532151000088 ], [ -121.930684241999984, 50.664710675000059 ], [ -121.931238001999944, 50.664730898000123 ], [ -121.931141838999977, 50.665791545000097 ], [ -121.927492142999952, 50.665737930000041 ], [ -121.925285064999983, 50.667835873000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71291750", "BldgCostT": "50135000", "sL_LossRatio": "0.999646746352904", "sL_AssetLoss": "856.3252", "sL_BldgLoss": "856.0227", "sL_StrLoss": "833.8177", "sL_NStrLoss": "22.205", "sL_ContLoss": "0.3025", "geom_point": "0101000020E610000061DDDBA11F7A5EC047061445A35B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.90590286399997, 50.718281827000048 ], [ -121.906026213999937, 50.716931357000099 ], [ -121.904659609999925, 50.716881196000038 ], [ -121.904987308999949, 50.713294270000098 ], [ -121.90784265699989, 50.713399056000092 ], [ -121.910295287999986, 50.71348900400006 ], [ -121.910358211, 50.713904007000089 ], [ -121.910564881999946, 50.714386921000035 ], [ -121.910522421999985, 50.714852329000053 ], [ -121.910757823999987, 50.714860958 ], [ -121.91090671099991, 50.715304003 ], [ -121.911788236999939, 50.716006936000028 ], [ -121.911561812999963, 50.718489357000081 ], [ -121.911128319999989, 50.718473470000028 ], [ -121.90590286399997, 50.718281827000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.924073894960828", "sL_AssetLoss": "1.0339", "sL_BldgLoss": "0.9554", "sL_StrLoss": "0.0754", "sL_NStrLoss": "0.88", "sL_ContLoss": "0.0785", "geom_point": "0101000020E61000001510838E10795EC06CCF4D1739564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.891225670999958, 50.67441567500002 ], [ -121.891238381, 50.673876196000094 ], [ -121.890813894999951, 50.673872157000062 ], [ -121.890839323999941, 50.672793199000033 ], [ -121.892112754999943, 50.672805310000086 ], [ -121.892093704999922, 50.673614530000066 ], [ -121.89251819, 50.673618564000051 ], [ -121.892499146999953, 50.674427783000084 ], [ -121.891225670999958, 50.67441567500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13632161", "BldgCostT": "8425743", "sL_LossRatio": "0.999157283057902", "sL_AssetLoss": "1516.9981", "sL_BldgLoss": "1515.7197", "sL_StrLoss": "1507.1677", "sL_NStrLoss": "8.552", "sL_ContLoss": "1.2784", "geom_point": "0101000020E61000008129DA8782785EC073245D5487534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.883085745999921, 50.652285102000121 ], [ -121.88309303299998, 50.652205624000061 ], [ -121.878918059999961, 50.652051236000069 ], [ -121.879006826999927, 50.651084278000106 ], [ -121.878421605999932, 50.651062625000094 ], [ -121.878653478999951, 50.648536969000055 ], [ -121.878889375999989, 50.648535846000115 ], [ -121.87888930199999, 50.648437 ], [ -121.879098531999929, 50.647615130000084 ], [ -121.879397784999938, 50.64791623900004 ], [ -121.879656108999939, 50.648107565 ], [ -121.879955360999958, 50.64831804500006 ], [ -121.88038708699996, 50.648570314000068 ], [ -121.880852550999947, 50.648749437000035 ], [ -121.881433937999972, 50.648903450000077 ], [ -121.882201298999959, 50.649050206000098 ], [ -121.882351593999942, 50.649112498000122 ], [ -121.883361893999989, 50.649410107000072 ], [ -121.884800089999956, 50.649456954000115 ], [ -121.8865718099999, 50.652042298000019 ], [ -121.887378829999975, 50.654150420000079 ], [ -121.887045891999918, 50.65413812700011 ], [ -121.886873063999985, 50.656024287000051 ], [ -121.886220422999926, 50.656000187000089 ], [ -121.886171663999946, 50.656532202000072 ], [ -121.880520633999964, 50.656323371000113 ], [ -121.880849820999913, 50.65273625800004 ], [ -121.881502411999961, 50.65276039000004 ], [ -121.88155122199997, 50.65222837400011 ], [ -121.883085745999921, 50.652285102000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999758836190872", "sL_AssetLoss": "244.64699", "sL_BldgLoss": "244.58799", "sL_StrLoss": "244.00999", "sL_NStrLoss": "0.578", "sL_ContLoss": "0.059", "geom_point": "0101000020E61000007A1AEE2B287E5EC074C59461BF554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.968747938, 50.670424850000138 ], [ -121.968906659999973, 50.668657997000132 ], [ -121.972341029999953, 50.668782180000036 ], [ -121.972367503999976, 50.668809304000064 ], [ -121.972726483999978, 50.669181000000108 ], [ -121.973035198999966, 50.669344793000029 ], [ -121.973055401999943, 50.669346583000042 ], [ -121.973259996999985, 50.669364711000092 ], [ -121.974522545999989, 50.669275917000085 ], [ -121.974453903999944, 50.670041110000099 ], [ -121.973646488999961, 50.670457101000061 ], [ -121.97240500299992, 50.670967002000097 ], [ -121.971626122999979, 50.670961300000094 ], [ -121.970945000999933, 50.671062389000106 ], [ -121.969854895999944, 50.67107091400009 ], [ -121.968681141000019, 50.6711683710001 ], [ -121.968747938, 50.670424850000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59015999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.99986427639922", "sL_AssetLoss": "739.7387", "sL_BldgLoss": "739.6383", "sL_StrLoss": "739", "sL_NStrLoss": "0.6383", "sL_ContLoss": "0.1004", "geom_point": "0101000020E6100000CE1B0677D07A5EC0A01E15DEE9534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.918371760999918, 50.657133773000034 ], [ -121.918377958999955, 50.656864031000069 ], [ -121.91795362, 50.656860090000087 ], [ -121.917947421999912, 50.65712983300012 ], [ -121.918371760999918, 50.657133773000034 ], [ -121.918365566, 50.65740351500007 ], [ -121.918789908999926, 50.657407454000072 ], [ -121.918783713999943, 50.657677197000048 ], [ -121.919208058999928, 50.657681132000114 ], [ -121.919189483999986, 50.658490361000105 ], [ -121.919037561999971, 50.658488953000088 ], [ -121.917492077999924, 50.658474606000055 ], [ -121.917498278999943, 50.658204863000044 ], [ -121.917073930999962, 50.658200921000052 ], [ -121.91708633799999, 50.657661435000151 ], [ -121.916237648999953, 50.657653546000063 ], [ -121.916243855999937, 50.657383804000112 ], [ -121.915395173999968, 50.657375908000098 ], [ -121.915401386999946, 50.657106165000073 ], [ -121.914977048999944, 50.657102214000084 ], [ -121.914983263999915, 50.65683247200004 ], [ -121.914558925999984, 50.656828520000097 ], [ -121.914565145, 50.656558778000075 ], [ -121.914140810999982, 50.65655482600009 ], [ -121.914147031999931, 50.656285082000089 ], [ -121.913722699999965, 50.656281127000049 ], [ -121.913728922999923, 50.656011385000134 ], [ -121.913304593999896, 50.656007429000091 ], [ -121.913310816999982, 50.655737687000062 ], [ -121.912886491999984, 50.655733728000023 ], [ -121.91289065299999, 50.655553498000103 ], [ -121.912892718999942, 50.655463987000118 ], [ -121.912649681999966, 50.65546171900008 ], [ -121.912044070999968, 50.655456067000024 ], [ -121.912049043999929, 50.655240818000088 ], [ -121.912062766999938, 50.65464684000009 ], [ -121.913335715999963, 50.654658716000071 ], [ -121.91332949199996, 50.65492846000005 ], [ -121.914178129999968, 50.654936369000033 ], [ -121.914171911, 50.655206112000059 ], [ -121.914596231999937, 50.655210065000063 ], [ -121.914590015999948, 50.655479809000092 ], [ -121.916711635999945, 50.655499551000091 ], [ -121.91670543099994, 50.655769292000038 ], [ -121.917537723999928, 50.65577702700007 ], [ -121.91766030699992, 50.654429164000099 ], [ -121.917585085999931, 50.654428465000137 ], [ -121.917603683999943, 50.653619236000047 ], [ -121.917733851999984, 50.653620445000072 ], [ -121.917813659999979, 50.652742840000073 ], [ -121.922951079999976, 50.652930996000123 ], [ -121.922831929999987, 50.65430851200005 ], [ -121.922956133999989, 50.656530341000078 ], [ -121.921782001999958, 50.656487364000022 ], [ -121.921778833999966, 50.656625746000088 ], [ -121.922627504999951, 50.656633595000059 ], [ -121.922602817999945, 50.657712568000122 ], [ -121.92217847299996, 50.657708645000142 ], [ -121.922172298999982, 50.657978387000043 ], [ -121.920899256999974, 50.657966605000155 ], [ -121.920905436999988, 50.65769686200013 ], [ -121.920056746999975, 50.657689001000065 ], [ -121.920062933999972, 50.657419258000118 ], [ -121.91921424899999, 50.657411390000078 ], [ -121.919220441000036, 50.657141647000032 ], [ -121.918371760999918, 50.657133773000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.999674627333425", "sL_AssetLoss": "1018.5244", "sL_BldgLoss": "1018.193", "sL_StrLoss": "1016", "sL_NStrLoss": "2.193", "sL_ContLoss": "0.3314", "geom_point": "0101000020E6100000AECC42D8BC795EC0A14E5866BA524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.899282068999952, 50.645724404000063 ], [ -121.89935194399996, 50.644959351000047 ], [ -121.898725935999963, 50.644936300000069 ], [ -121.898740505999939, 50.643129988000034 ], [ -121.899183790999984, 50.643127982000102 ], [ -121.900436276, 50.643124592000042 ], [ -121.900408387999917, 50.643430021000086 ], [ -121.905144177999958, 50.643604255000113 ], [ -121.905119927, 50.643870166000085 ], [ -121.905546381999926, 50.643885845000085 ], [ -121.905511460999932, 50.644268776000047 ], [ -121.905953692999944, 50.644285035000067 ], [ -121.905626573999896, 50.647872257000088 ], [ -121.904586001999945, 50.647833999000063 ], [ -121.9044853, 50.64893790900009 ], [ -121.904432819999911, 50.649513182000128 ], [ -121.898782588999921, 50.649305274000064 ], [ -121.89911026499999, 50.64571807800008 ], [ -121.899282068999952, 50.645724404000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.86163920574567", "sL_AssetLoss": "4.734", "sL_BldgLoss": "4.079", "sL_StrLoss": "0.289", "sL_NStrLoss": "3.79", "sL_ContLoss": "0.655", "geom_point": "0101000020E6100000DB6F690CE5785EC00AE0A09C6C534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.889574140999969, 50.654434714000061 ], [ -121.88957892799999, 50.654231626000083 ], [ -121.887378829999975, 50.654150420000079 ], [ -121.8865718099999, 50.652042298000019 ], [ -121.884800089999956, 50.649456954000115 ], [ -121.885566387999958, 50.649481901000058 ], [ -121.885680298999944, 50.649485610000099 ], [ -121.885836498999964, 50.649464581000117 ], [ -121.889002981999965, 50.64958150000006 ], [ -121.888978807999976, 50.64984549800004 ], [ -121.891093144999928, 50.64992351700004 ], [ -121.891750384999966, 50.650029704000126 ], [ -121.892135676999914, 50.650042630000065 ], [ -121.891814725999922, 50.65354987400007 ], [ -121.89144351399996, 50.653536182000032 ], [ -121.89138844199999, 50.654137882000043 ], [ -121.89117301, 50.654129936000118 ], [ -121.890854813999965, 50.65411819800007 ], [ -121.890847072999975, 50.654446838000091 ], [ -121.889574140999969, 50.654434714000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0.85934591863866", "sL_AssetLoss": "3.761", "sL_BldgLoss": "3.232", "sL_StrLoss": "0.232", "sL_NStrLoss": "3", "sL_ContLoss": "0.529", "geom_point": "0101000020E6100000825F1BD8077A5EC08F7018D4D0544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.91155843300001, 50.66492453500009 ], [ -121.908563076999926, 50.664354328000101 ], [ -121.908325271999956, 50.6644896110001 ], [ -121.90806117399994, 50.664571620000075 ], [ -121.907688489999941, 50.664584995000048 ], [ -121.907231779999933, 50.664541207000084 ], [ -121.906658901999961, 50.664448367000027 ], [ -121.906470300999914, 50.664417816000089 ], [ -121.90624438899999, 50.664355328000077 ], [ -121.906117697999946, 50.664320286000091 ], [ -121.905888601999919, 50.664220091000075 ], [ -121.905106796999917, 50.663745990000045 ], [ -121.90446907799999, 50.663431892000069 ], [ -121.90407464899999, 50.663097718000081 ], [ -121.903830798999977, 50.66289108700002 ], [ -121.903640735999943, 50.662802855000095 ], [ -121.90330450899998, 50.662646702000089 ], [ -121.902795293999972, 50.662540700000072 ], [ -121.902585683999959, 50.662526367000083 ], [ -121.902285293999938, 50.66250581300006 ], [ -121.90192209099996, 50.662523900000068 ], [ -121.901573007999971, 50.662522401000111 ], [ -121.899840542999954, 50.662514953000056 ], [ -121.899951806999979, 50.661297033000018 ], [ -121.902435623999949, 50.661388413000104 ], [ -121.902480123999965, 50.66090099300002 ], [ -121.903178194999924, 50.660926665000019 ], [ -121.903266489999936, 50.660929912000057 ], [ -121.903271691999961, 50.660872911000062 ], [ -121.908923397999928, 50.661080589000022 ], [ -121.908891433999912, 50.661431250000113 ], [ -121.91007648099999, 50.66147475900005 ], [ -121.910045580999935, 50.661813843000061 ], [ -121.91117316499998, 50.661855230000079 ], [ -121.911124517999966, 50.662389197000017 ], [ -121.911787177999969, 50.662413515000061 ], [ -121.91155843300001, 50.66492453500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15672083", "BldgCostT": "10808333", "sL_LossRatio": "0.999448566886016", "sL_AssetLoss": "3757.482", "sL_BldgLoss": "3755.41", "sL_StrLoss": "3740", "sL_NStrLoss": "15.41", "sL_ContLoss": "2.072", "geom_point": "0101000020E61000006929EEB2BE7B5EC0338BED414A564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.929263412999916, 50.679566968000088 ], [ -121.929298232999955, 50.679183222000063 ], [ -121.92583922599999, 50.679056840000065 ], [ -121.925980435999989, 50.677501831000043 ], [ -121.923895998999939, 50.677425618000065 ], [ -121.923877190999974, 50.677212099000023 ], [ -121.923753475999916, 50.677031293000034 ], [ -121.922847885999929, 50.676534703000051 ], [ -121.92336605, 50.676255534000084 ], [ -121.92485089499999, 50.676064169000021 ], [ -121.926468813999975, 50.675855613000117 ], [ -121.926769498999974, 50.675967956000086 ], [ -121.926840626999962, 50.67593100600007 ], [ -121.927002526999942, 50.675787564000089 ], [ -121.927047857999966, 50.675672849000065 ], [ -121.927067001999887, 50.675624371000055 ], [ -121.927049670000017, 50.675527834 ], [ -121.927031196999906, 50.675425109000052 ], [ -121.926515287999948, 50.674828607000101 ], [ -121.926271378999971, 50.674313106000035 ], [ -121.92572123399999, 50.673431251000054 ], [ -121.925704414999984, 50.673404325000099 ], [ -121.925572960999915, 50.672946944000024 ], [ -121.925567216999937, 50.672768630000071 ], [ -121.925558823999935, 50.67250912500009 ], [ -121.925523472999956, 50.672459107000101 ], [ -121.925408050999948, 50.672295759000072 ], [ -121.92509311400002, 50.672016115000112 ], [ -121.92429336899994, 50.6715010120001 ], [ -121.9242186099999, 50.671340795000084 ], [ -121.924240281999985, 50.671266333000098 ], [ -121.924383387999939, 50.670775466000066 ], [ -121.924437939999976, 50.670590743000027 ], [ -121.924522665000012, 50.670303692000083 ], [ -121.925063402999939, 50.669376896000067 ], [ -121.925130716999931, 50.669150815000108 ], [ -121.925140374999927, 50.668965643000071 ], [ -121.925174843999955, 50.668305740000093 ], [ -121.925162668, 50.668258404000106 ], [ -121.926182011999941, 50.668267800000066 ], [ -121.926162487999974, 50.669123598000027 ], [ -121.926461674, 50.669134535000104 ], [ -121.926172962999956, 50.672314711000119 ], [ -121.92651417399999, 50.672317855000131 ], [ -121.926498439999989, 50.673007682000055 ], [ -121.928542757999978, 50.673082387000107 ], [ -121.928499922999919, 50.673554447000107 ], [ -121.928919576999945, 50.673569778000093 ], [ -121.928879750999911, 50.674008719000078 ], [ -121.929368389999965, 50.674026568000031 ], [ -121.92932983599998, 50.67445153100001 ], [ -121.930891852999963, 50.674508573000075 ], [ -121.930926539000026, 50.674126102000074 ], [ -121.931116234999976, 50.674133028000064 ], [ -121.93115464, 50.673709502000122 ], [ -121.930303821999956, 50.673701697000077 ], [ -121.93032834499995, 50.67262272300011 ], [ -121.930696017999978, 50.67262609700002 ], [ -121.931252421999957, 50.672631200000126 ], [ -121.931310564999976, 50.671989997000068 ], [ -121.931888516999933, 50.671602196000016 ], [ -121.932889924999927, 50.671119998000094 ], [ -121.933029252999987, 50.67112508200006 ], [ -121.933035558999933, 50.671055512000081 ], [ -121.934058192999885, 50.670686407000112 ], [ -121.93532457799995, 50.670418698000049 ], [ -121.936318699999958, 50.670320412000116 ], [ -121.943133799999956, 50.670570991000034 ], [ -121.944134650999956, 50.670404720000079 ], [ -121.944060355999909, 50.671226676000117 ], [ -121.944008884999974, 50.671796101000062 ], [ -121.94418147099999, 50.671802382000131 ], [ -121.944237304, 50.671184675000063 ], [ -121.944311541, 50.670363312000106 ], [ -121.945992799999928, 50.669877485000029 ], [ -121.946026712999938, 50.669874080000106 ], [ -121.946170382, 50.670725815000019 ], [ -121.946013011999966, 50.671170695000036 ], [ -121.945829726999989, 50.67172404300009 ], [ -121.944977104999964, 50.672233111000033 ], [ -121.944772678999968, 50.672554991 ], [ -121.944182483999938, 50.673044897000111 ], [ -121.942750335999932, 50.67348610900013 ], [ -121.942755324999922, 50.673430935000034 ], [ -121.94228916099992, 50.67341396200009 ], [ -121.942280039999929, 50.673514824000094 ], [ -121.941182925999911, 50.673474873000053 ], [ -121.94115371, 50.673797851000067 ], [ -121.939549867999958, 50.673739427000086 ], [ -121.939514658999926, 50.674128489000068 ], [ -121.938460548999984, 50.674090079000052 ], [ -121.938401018999983, 50.674747708000091 ], [ -121.937880397999962, 50.675091493000068 ], [ -121.93779942, 50.67551449500013 ], [ -121.937063592999934, 50.67612830900007 ], [ -121.935669924999928, 50.676438804000057 ], [ -121.934526026999919, 50.676950104000099 ], [ -121.934234083999954, 50.677316104000091 ], [ -121.933673711999958, 50.677687786000043 ], [ -121.932751398999983, 50.678917415000114 ], [ -121.932681281999947, 50.679010893000097 ], [ -121.932223686999947, 50.679194600000038 ], [ -121.931356615999945, 50.679366992000013 ], [ -121.93025279599999, 50.679419696000139 ], [ -121.929263412999916, 50.679566968000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999415144547058", "sL_AssetLoss": "152.6873", "sL_BldgLoss": "152.598", "sL_StrLoss": "152", "sL_NStrLoss": "0.598", "sL_ContLoss": "0.0893", "geom_point": "0101000020E6100000E8E2670AFA7B5EC03813705B9D564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93805951299997, 50.67593030700003 ], [ -121.938943784999964, 50.67512967100005 ], [ -121.939179452999952, 50.675131816000047 ], [ -121.93918774199993, 50.675131891000021 ], [ -121.939187842999928, 50.675127373000052 ], [ -121.939192875999979, 50.67490413300002 ], [ -121.939358789999972, 50.674753906000085 ], [ -121.939694249999931, 50.674596903000079 ], [ -121.940252791999953, 50.674601982000056 ], [ -121.940265434999958, 50.67467481000007 ], [ -121.940448115999985, 50.675727117000037 ], [ -121.940443036999952, 50.675952708000061 ], [ -121.940152943999962, 50.675950070000098 ], [ -121.939324338999981, 50.67515166000004 ], [ -121.938481924999977, 50.675759586000019 ], [ -121.937120181999944, 50.676742215000075 ], [ -121.935614682999955, 50.677828559000048 ], [ -121.93539825199997, 50.677984777000098 ], [ -121.934316141999929, 50.678651973000036 ], [ -121.93370301500002, 50.679029994000096 ], [ -121.93362801899994, 50.67907621800007 ], [ -121.933382157999915, 50.679169600000066 ], [ -121.933151724999945, 50.679253265000035 ], [ -121.932734140999983, 50.67937446300008 ], [ -121.932988589999923, 50.679193211000047 ], [ -121.93305839599995, 50.679174965000101 ], [ -121.933686007999981, 50.67901090600008 ], [ -121.93415088299993, 50.678483994000061 ], [ -121.93439539099991, 50.677703498000049 ], [ -121.936981387999978, 50.676658091000029 ], [ -121.93805951299997, 50.67593030700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999778428214664", "sL_AssetLoss": "369.6319", "sL_BldgLoss": "369.55", "sL_StrLoss": "369", "sL_NStrLoss": "0.55", "sL_ContLoss": "0.0819", "geom_point": "0101000020E61000009B88A7EC6E7B5EC0918BDE6764554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.929146963999969, 50.668564882000076 ], [ -121.929153099999922, 50.668295138000097 ], [ -121.928728658999916, 50.668291237000048 ], [ -121.928729861999926, 50.668238374000047 ], [ -121.925260033999962, 50.66811154600002 ], [ -121.925285064999983, 50.667835873000058 ], [ -121.927492142999952, 50.665737930000041 ], [ -121.931141838999977, 50.665791545000097 ], [ -121.930912751999983, 50.668318107000054 ], [ -121.930426573, 50.668300352000117 ], [ -121.930424094999978, 50.66840945100013 ], [ -121.930420296999941, 50.668576575000046 ], [ -121.929146963999969, 50.668564882000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999706169455427", "sL_AssetLoss": "253.5475", "sL_BldgLoss": "253.473", "sL_StrLoss": "253", "sL_NStrLoss": "0.473", "sL_ContLoss": "0.0745", "geom_point": "0101000020E6100000E31D1AF5147C5EC003FB3B1DC0554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.933133840999943, 50.669971109000052 ], [ -121.93315130299996, 50.669778446000102 ], [ -121.93336489, 50.66978624000005 ], [ -121.935739264999967, 50.669872863000109 ], [ -121.935777309999978, 50.66945280700007 ], [ -121.938540014999958, 50.66955353400008 ], [ -121.938546391999935, 50.66948307400002 ], [ -121.944199343, 50.669688961000062 ], [ -121.944162870999904, 50.670092496000038 ], [ -121.943208277999929, 50.670328896000036 ], [ -121.936224892999988, 50.670049811000077 ], [ -121.935074809999918, 50.67017370700006 ], [ -121.934009580999913, 50.670407304000101 ], [ -121.933063472999933, 50.670747524000056 ], [ -121.933133840999943, 50.669971109000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26013668", "BldgCostT": "17676668", "sL_LossRatio": "0.999317935194621", "sL_AssetLoss": "6386.3433", "sL_BldgLoss": "6381.9874", "sL_StrLoss": "6358.0734", "sL_NStrLoss": "23.914", "sL_ContLoss": "4.3559", "geom_point": "0101000020E6100000158313138C7C5EC03A3AAE46F6564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.943856632999925, 50.683610560000083 ], [ -121.943799703999957, 50.683576517000063 ], [ -121.943288017999976, 50.683270633000056 ], [ -121.942528745999979, 50.682804217000097 ], [ -121.941533716999956, 50.682192959000091 ], [ -121.941538719999969, 50.681428813000146 ], [ -121.941541079999965, 50.681072358000044 ], [ -121.941194106999959, 50.679407898000107 ], [ -121.941443487, 50.67941697800012 ], [ -121.941466652999949, 50.679160898000085 ], [ -121.941140140999977, 50.679149008000095 ], [ -121.94109862000002, 50.678949822000106 ], [ -121.941405311999972, 50.675559655000015 ], [ -121.946234722, 50.675735417000084 ], [ -121.946816767999948, 50.675740679000114 ], [ -121.946816410999986, 50.675756574000097 ], [ -121.947059042, 50.675765396 ], [ -121.947036722999911, 50.676012465000092 ], [ -121.94723524299998, 50.67601425700007 ], [ -121.947234371999912, 50.676053262000032 ], [ -121.947600739999984, 50.676066584000068 ], [ -121.947580814999952, 50.676287178000123 ], [ -121.947653724999938, 50.676287836000064 ], [ -121.947647693999969, 50.676557581000054 ], [ -121.9480722119999, 50.67656141300008 ], [ -121.948068792999933, 50.676714399000041 ], [ -121.95062507599999, 50.676807303000047 ], [ -121.950622399999958, 50.67683695400008 ], [ -121.951608542999935, 50.676872778000053 ], [ -121.951414088999954, 50.679027692000048 ], [ -121.951410418999913, 50.679192456000131 ], [ -121.951408256999954, 50.679289463000053 ], [ -121.951390480999962, 50.679289303000033 ], [ -121.951341824999986, 50.679828463000028 ], [ -121.95182078199997, 50.6798327710001 ], [ -121.951815106999959, 50.680087435000083 ], [ -121.951796745, 50.680911750000107 ], [ -121.951372185999958, 50.680907931000014 ], [ -121.95135414899994, 50.681717165000066 ], [ -121.95092958399999, 50.681713344000087 ], [ -121.950923568999912, 50.681983089000077 ], [ -121.950360066999934, 50.681978015000048 ], [ -121.949649865, 50.681971617000038 ], [ -121.949656046999962, 50.681694696000093 ], [ -121.94941984399992, 50.68168611300009 ], [ -121.949390144999938, 50.682015036000053 ], [ -121.949162248999968, 50.682006754000021 ], [ -121.949137949999951, 50.682275842000067 ], [ -121.948230201999976, 50.682242849000055 ], [ -121.9481625499999, 50.68299186300009 ], [ -121.945849353999961, 50.682907757000081 ], [ -121.945825162999967, 50.683175418000104 ], [ -121.945489247999959, 50.68316320000006 ], [ -121.945464462999936, 50.683437426000069 ], [ -121.944097590999917, 50.683387700000011 ], [ -121.944092873999963, 50.683597807000055 ], [ -121.94398044799999, 50.683592670000067 ], [ -121.943856632999925, 50.683610560000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999800315308569", "sL_AssetLoss": "124.1958", "sL_BldgLoss": "124.171", "sL_StrLoss": "124", "sL_NStrLoss": "0.171", "sL_ContLoss": "0.0248", "geom_point": "0101000020E61000005C77D246DE7C5EC070CECAEEB0574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.950495378999932, 50.684677220000069 ], [ -121.951712600999954, 50.684688173000119 ], [ -121.951694568999983, 50.685497407000121 ], [ -121.95121540099997, 50.685493096000059 ], [ -121.950420768999962, 50.685485944000099 ], [ -121.950438823999932, 50.684676711000101 ], [ -121.950495378999932, 50.684677220000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11334167", "BldgCostT": "7816667", "sL_LossRatio": "0.999574129373012", "sL_AssetLoss": "2535.5118", "sL_BldgLoss": "2534.432", "sL_StrLoss": "2529", "sL_NStrLoss": "5.432", "sL_ContLoss": "1.0798", "geom_point": "0101000020E6100000829B18D4AF7C5EC0D76FE48939564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.943979682999924, 50.673879495000079 ], [ -121.944927883999952, 50.673158806000082 ], [ -121.945545882999937, 50.672832692000064 ], [ -121.94618010399995, 50.672280099000119 ], [ -121.94714870199999, 50.67204648900011 ], [ -121.948603491999975, 50.671456889000027 ], [ -121.949206397999944, 50.671085190000099 ], [ -121.949935166999936, 50.67089534700002 ], [ -121.949917735999946, 50.671088478000073 ], [ -121.951109380999952, 50.671131780000039 ], [ -121.95106962399997, 50.67157238700004 ], [ -121.951399498999976, 50.671584372000098 ], [ -121.951312945999959, 50.672543633000089 ], [ -121.951982995999984, 50.672549660000136 ], [ -121.951976987999942, 50.672819405000084 ], [ -121.953250445999942, 50.672830850000068 ], [ -121.953226447999938, 50.673909830000106 ], [ -121.95237745699994, 50.673902201 ], [ -121.952359442999978, 50.674711437000113 ], [ -121.951934938999983, 50.674707620000042 ], [ -121.951928932999976, 50.674977364000078 ], [ -121.951094015999971, 50.674969854000118 ], [ -121.951075809999978, 50.675171611000088 ], [ -121.950561395999969, 50.675152921000056 ], [ -121.950559788999939, 50.675170723000114 ], [ -121.948277751999967, 50.675087784000063 ], [ -121.948236111999947, 50.675548878000029 ], [ -121.942582404999897, 50.675343196000064 ], [ -121.942681530999948, 50.67424701900007 ], [ -121.943979682999924, 50.673879495000079 ] ], [ [ -121.951528466999932, 50.67389456800008 ], [ -121.951534474999974, 50.673624822000093 ], [ -121.951215646999984, 50.673621954000026 ], [ -121.951191321999943, 50.673891534000099 ], [ -121.951528466999932, 50.67389456800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.99964372029373", "sL_AssetLoss": "370.7761", "sL_BldgLoss": "370.644", "sL_StrLoss": "370", "sL_NStrLoss": "0.644", "sL_ContLoss": "0.1321", "geom_point": "0101000020E610000015A9AC7D6C7C5EC0BD74CDC38D584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.943376184999977, 50.692388323000046 ], [ -121.943617679999988, 50.691683817000111 ], [ -121.943671798999901, 50.691442090000024 ], [ -121.943909092999917, 50.690382430000078 ], [ -121.943950919999963, 50.690369332000103 ], [ -121.943935554999925, 50.690187227000088 ], [ -121.943807355999979, 50.688663786000077 ], [ -121.94397911899992, 50.688665342000036 ], [ -121.943973063999962, 50.688935085000047 ], [ -121.944397692999942, 50.688938932000092 ], [ -121.944349260999942, 50.691096880000039 ], [ -121.944773910000023, 50.691100725000034 ], [ -121.944755753999971, 50.691909956000053 ], [ -121.945180411999971, 50.691913801000055 ], [ -121.945168893999934, 50.692427291000079 ], [ -121.9453937299999, 50.692545964000061 ], [ -121.945163425999937, 50.692671110000049 ], [ -121.945162261999954, 50.692723031000121 ], [ -121.945069422999921, 50.69272219000009 ], [ -121.944733432999968, 50.692904762000111 ], [ -121.944731544999954, 50.692988930000098 ], [ -121.944581042999971, 50.692987567000038 ], [ -121.944303436999988, 50.693138412000089 ], [ -121.944300821999931, 50.693254828000107 ], [ -121.94409265799996, 50.693252943000047 ], [ -121.943873434999958, 50.693372061000055 ], [ -121.943857980999937, 50.694060211000064 ], [ -121.943254777, 50.694054745000123 ], [ -121.943325537999954, 50.69308329800009 ], [ -121.943376184999977, 50.692388323000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999677899918105", "sL_AssetLoss": "375.9701", "sL_BldgLoss": "375.849", "sL_StrLoss": "375", "sL_NStrLoss": "0.849", "sL_ContLoss": "0.1211", "geom_point": "0101000020E6100000B3487619FC7C5EC0A7A9E9A321584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.953308941000031, 50.689289092000159 ], [ -121.953314944999946, 50.689019348000066 ], [ -121.9524656789999, 50.689011719000121 ], [ -121.952471686999928, 50.688741974000052 ], [ -121.952047057999934, 50.68873815700006 ], [ -121.952053067999927, 50.688468413000074 ], [ -121.951628440999954, 50.68846459400006 ], [ -121.951658499999922, 50.687115873000089 ], [ -121.951910483999882, 50.687118139000063 ], [ -121.952932344999951, 50.687127323000013 ], [ -121.952920335999977, 50.687666812000046 ], [ -121.953344955, 50.687670626000042 ], [ -121.953338953999932, 50.687940370000078 ], [ -121.953763575999943, 50.687944182000074 ], [ -121.953769574999953, 50.68767443800008 ], [ -121.954016691, 50.687676656000114 ], [ -121.95392818299996, 50.688855863000107 ], [ -121.954061936999963, 50.688924994000033 ], [ -121.95415868399999, 50.689000495000094 ], [ -121.954180473999926, 50.689104749000101 ], [ -121.95411178699996, 50.689205729000058 ], [ -121.954086357000037, 50.689217277000104 ], [ -121.953974241999973, 50.689268212000037 ], [ -121.953896555999975, 50.68927718100008 ], [ -121.953875027999956, 50.689563972000023 ], [ -121.953727575999935, 50.689562649000081 ], [ -121.953715573999943, 50.690102137000082 ], [ -121.95244164899999, 50.69009069600002 ], [ -121.952459671999989, 50.68928146200011 ], [ -121.953308941000031, 50.689289092000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160967000", "BldgCostT": "100595000", "sL_LossRatio": "0.961263607091494", "sL_AssetLoss": "18331.8566", "sL_BldgLoss": "17621.7466", "sL_StrLoss": "17298.6166", "sL_NStrLoss": "323.13", "sL_ContLoss": "710.11", "geom_point": "0101000020E610000075AB7C09347C5EC030353ACE0A584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.938804991, 50.690079772000118 ], [ -121.938586568999966, 50.68865382000007 ], [ -121.937857092999977, 50.688689317000083 ], [ -121.93771598599993, 50.687741263000063 ], [ -121.936958779999941, 50.687785652000059 ], [ -121.936804275, 50.686797490000053 ], [ -121.936715480999951, 50.686258901000045 ], [ -121.936625811999974, 50.685510642000075 ], [ -121.937468219999971, 50.684950773000082 ], [ -121.938022142999969, 50.684582601000081 ], [ -121.938486705999978, 50.684273821000076 ], [ -121.938870756999961, 50.684026905000096 ], [ -121.939462543999966, 50.683647167000075 ], [ -121.939526582999974, 50.68356757500009 ], [ -121.939556805999928, 50.683530030000092 ], [ -121.939561106999932, 50.683404219000046 ], [ -121.939508054999919, 50.683285316000124 ], [ -121.939381127, 50.6831250480001 ], [ -121.939287372999928, 50.682788396000021 ], [ -121.939354234999897, 50.682681383000073 ], [ -121.940262792999974, 50.682201625000076 ], [ -121.940608371999943, 50.681830909000027 ], [ -121.94125003000002, 50.681432299000015 ], [ -121.941541079999965, 50.681072358000044 ], [ -121.941538719999969, 50.681428813000146 ], [ -121.941533716999956, 50.682192959000091 ], [ -121.942528745999979, 50.682804217000097 ], [ -121.943288017999976, 50.683270633000056 ], [ -121.943799703999957, 50.683576517000063 ], [ -121.943856632999925, 50.683610560000083 ], [ -121.94398044799999, 50.683592670000067 ], [ -121.944092873999963, 50.683597807000055 ], [ -121.944082058999982, 50.684079699000108 ], [ -121.943657474, 50.684075852000021 ], [ -121.943651415999966, 50.684345595000131 ], [ -121.943490732000015, 50.684344139000132 ], [ -121.94347393000001, 50.684383964000091 ], [ -121.94332023, 50.684497464000025 ], [ -121.943222835999961, 50.684519388000126 ], [ -121.943220766999985, 50.684611491000048 ], [ -121.94121230899998, 50.684593264000107 ], [ -121.941096388999981, 50.684655530000043 ], [ -121.94109174399992, 50.68486196700011 ], [ -121.942365357999989, 50.684873531000029 ], [ -121.942373429999989, 50.684857964000152 ], [ -121.942686928999933, 50.684837564000134 ], [ -121.942761030999918, 50.684875864000063 ], [ -121.942760483999962, 50.684877115000106 ], [ -121.942790114999966, 50.684877384000082 ], [ -121.94277192899996, 50.685686615000094 ], [ -121.94319652899992, 50.6856904650001 ], [ -121.943173515999931, 50.686714856000094 ], [ -121.943118071999962, 50.68670965900003 ], [ -121.943135941999969, 50.687456730000051 ], [ -121.943156866999985, 50.687455888000052 ], [ -121.943141985999915, 50.688118158000051 ], [ -121.943566607999955, 50.688122007000089 ], [ -121.94355449199999, 50.688661494000058 ], [ -121.943807355999979, 50.688663786000077 ], [ -121.943935554999925, 50.690187227000088 ], [ -121.943950919999963, 50.690369332000103 ], [ -121.943909092999917, 50.690382430000078 ], [ -121.943671798999901, 50.691442090000024 ], [ -121.943617679999988, 50.691683817000111 ], [ -121.943376184999977, 50.692388323000046 ], [ -121.94080229, 50.693872938 ], [ -121.94001373699993, 50.693290884000092 ], [ -121.93955854599993, 50.692990882000046 ], [ -121.93831772899999, 50.692227828000071 ], [ -121.938262070999983, 50.691750970000051 ], [ -121.938238950999974, 50.691552724000111 ], [ -121.938236648, 50.691264724000071 ], [ -121.938063018, 50.690127420000088 ], [ -121.938804991, 50.690079772000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.999253120423732", "sL_AssetLoss": "613.218", "sL_BldgLoss": "612.76", "sL_StrLoss": "610", "sL_NStrLoss": "2.76", "sL_ContLoss": "0.458", "geom_point": "0101000020E61000009E019AADE17A5EC04423AF39CD574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.919543859999976, 50.68565148600004 ], [ -121.920429472999942, 50.685674392000074 ], [ -121.920373872999946, 50.686285719000104 ], [ -121.919756114999927, 50.68626311000002 ], [ -121.919543859999976, 50.68565148600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103734772", "BldgCostT": "65479158", "sL_LossRatio": "0.894637015242388", "sL_AssetLoss": "27203.415", "sL_BldgLoss": "24337.182", "sL_StrLoss": "23165.042", "sL_NStrLoss": "1172.14", "sL_ContLoss": "2866.233", "geom_point": "0101000020E61000007E0792B96A7B5EC0D18AB9B516594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.918904440999981, 50.707860960000048 ], [ -121.91892060699999, 50.707158048000117 ], [ -121.918615683999988, 50.707146890000118 ], [ -121.918683732999924, 50.706399367000159 ], [ -121.918647882999963, 50.706398055000129 ], [ -121.919162303999954, 50.705586683000028 ], [ -121.919860393999969, 50.704218013000073 ], [ -121.920113806999936, 50.703050087000044 ], [ -121.92032079799999, 50.702594393000076 ], [ -121.922222305999924, 50.700003783000049 ], [ -121.922257401999943, 50.69913070300003 ], [ -121.92282909199993, 50.698875796000088 ], [ -121.923075094999959, 50.698607991000102 ], [ -121.923201692999953, 50.698568413000011 ], [ -121.923743515999931, 50.698588220000026 ], [ -121.923764346, 50.698359065000069 ], [ -121.924119094999966, 50.698159390000058 ], [ -121.924252060999947, 50.698020633000041 ], [ -121.925926090999937, 50.698081807000051 ], [ -121.92593752199997, 50.697581310000054 ], [ -121.925937395999981, 50.697581305 ], [ -121.925937563999966, 50.697579462000043 ], [ -121.925941575999957, 50.697403882000089 ], [ -121.925953506, 50.697403991000044 ], [ -121.926036228000015, 50.696493433000121 ], [ -121.926512187999933, 50.696356399000074 ], [ -121.927059402999959, 50.695947604000075 ], [ -121.927341423999948, 50.695373604000039 ], [ -121.928604404999973, 50.69399221000004 ], [ -121.929059414999969, 50.693277203000079 ], [ -121.929509514999978, 50.692812893000081 ], [ -121.929632051999974, 50.692581456000049 ], [ -121.929715754, 50.692582224000084 ], [ -121.929823029999966, 50.692440264000041 ], [ -121.929880109999928, 50.692333143000099 ], [ -121.929885345999978, 50.692103050000057 ], [ -121.930011703000034, 50.691864387000074 ], [ -121.930040430999952, 50.691506010000147 ], [ -121.930123434999985, 50.691506772000096 ], [ -121.930177529999952, 50.690870365000109 ], [ -121.930282330999916, 50.690423664000086 ], [ -121.930351280999986, 50.690291913000095 ], [ -121.930356842, 50.690047416000084 ], [ -121.93052803099999, 50.689621896000098 ], [ -121.930701092999954, 50.689623483000091 ], [ -121.930795297999964, 50.689443471000075 ], [ -121.930803449999985, 50.689084824000098 ], [ -121.930982124999929, 50.689086464000106 ], [ -121.931239296999976, 50.688595026000066 ], [ -121.93124245199999, 50.688456208000055 ], [ -121.931328331, 50.688280242000062 ], [ -121.931403660999976, 50.688280932000069 ], [ -121.931442630000021, 50.688206464000061 ], [ -121.931680994, 50.68784725600009 ], [ -121.931691555999961, 50.687382207000034 ], [ -121.931853591999968, 50.686936063000132 ], [ -121.932022607999926, 50.686937612000072 ], [ -121.932176730999956, 50.686577464000067 ], [ -121.932556729999973, 50.686716764000082 ], [ -121.932808199999897, 50.686944808000064 ], [ -121.93316890599999, 50.68694811000011 ], [ -121.933350893999943, 50.684940785000059 ], [ -121.934165130999958, 50.684970485000093 ], [ -121.934184970999965, 50.684751603000052 ], [ -121.934299274999915, 50.684755772000081 ], [ -121.934306176999911, 50.684451063000012 ], [ -121.935227000999973, 50.685185233000063 ], [ -121.935286472, 50.685389829000052 ], [ -121.935262257, 50.685582078000095 ], [ -121.935237443999981, 50.685779486000044 ], [ -121.935202501999981, 50.686057398000088 ], [ -121.935195195999981, 50.686115299000065 ], [ -121.935269463999973, 50.686234974000058 ], [ -121.935457731999946, 50.686317408000036 ], [ -121.935672720999946, 50.686339664000052 ], [ -121.936715480999951, 50.686258901000045 ], [ -121.936804275, 50.686797490000053 ], [ -121.936958779999941, 50.687785652000059 ], [ -121.93771598599993, 50.687741263000063 ], [ -121.937857092999977, 50.688689317000083 ], [ -121.938586568999966, 50.68865382000007 ], [ -121.938804991, 50.690079772000118 ], [ -121.938063018, 50.690127420000088 ], [ -121.938236648, 50.691264724000071 ], [ -121.93747540699998, 50.691321554000062 ], [ -121.937505719999947, 50.691080638000123 ], [ -121.93682597400003, 50.691130555000065 ], [ -121.935792960999919, 50.691666030000142 ], [ -121.935604557999966, 50.69153771000002 ], [ -121.934371203999916, 50.692254733000041 ], [ -121.932749637999905, 50.693197389000098 ], [ -121.932644561999908, 50.693258455000084 ], [ -121.932269510999987, 50.693476499000013 ], [ -121.932946729999912, 50.693987047000157 ], [ -121.931103795999917, 50.695066974000071 ], [ -121.930970525999896, 50.695146046000104 ], [ -121.928775091999981, 50.696448561000068 ], [ -121.928323657999954, 50.696889139000099 ], [ -121.926952811999911, 50.698595368000021 ], [ -121.926198246999945, 50.700012378000089 ], [ -121.92618299699997, 50.700041016000078 ], [ -121.925757841999911, 50.700797756000043 ], [ -121.92563601699996, 50.701014631000056 ], [ -121.925274052999981, 50.701658835000018 ], [ -121.92470828099998, 50.702841115000091 ], [ -121.924548698999928, 50.702879365000051 ], [ -121.924284484999973, 50.703121621000058 ], [ -121.924118383999911, 50.703273913000025 ], [ -121.92311743199997, 50.704778591000085 ], [ -121.92260190599994, 50.706109339000101 ], [ -121.922386308999933, 50.706404653000071 ], [ -121.922142788, 50.70663239700017 ], [ -121.922022197999965, 50.706712290000091 ], [ -121.921516100999895, 50.707047637000137 ], [ -121.92077763599994, 50.707443506000118 ], [ -121.920288980999942, 50.707698263000047 ], [ -121.919521208999967, 50.708103859000047 ], [ -121.917823364999919, 50.709076418000052 ], [ -121.916906252999922, 50.709851578000084 ], [ -121.916604079999942, 50.710106978000162 ], [ -121.916066900999937, 50.710473314000069 ], [ -121.915431801999915, 50.710854930000025 ], [ -121.914642580999953, 50.711230003000018 ], [ -121.913992751999956, 50.711617369000116 ], [ -121.913818643999946, 50.711690603000079 ], [ -121.913716281999953, 50.711733654000142 ], [ -121.91373207299999, 50.711050455000084 ], [ -121.914581724999934, 50.711058369000078 ], [ -121.914594182999906, 50.710518889000078 ], [ -121.915019002999898, 50.710522843000028 ], [ -121.91503768299999, 50.70971362300002 ], [ -121.916312125000019, 50.709725477000056 ], [ -121.91632456499994, 50.709185997000148 ], [ -121.916749371999956, 50.709189945000119 ], [ -121.91675559, 50.708920205000034 ], [ -121.917180395999964, 50.708924152000037 ], [ -121.91718661000003, 50.708654411000076 ], [ -121.917611413999978, 50.708658356000065 ], [ -121.917617625999966, 50.708388616000072 ], [ -121.918042426999946, 50.708392559000096 ], [ -121.918048635999966, 50.708122819000046 ], [ -121.918473435999914, 50.708126761000109 ], [ -121.918479642999927, 50.707857020000027 ], [ -121.918904440999981, 50.707860960000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90393583", "BldgCostT": "61153333", "sL_LossRatio": "0.886680546407632", "sL_AssetLoss": "3452.514", "sL_BldgLoss": "3061.277", "sL_StrLoss": "2756.207", "sL_NStrLoss": "305.07", "sL_ContLoss": "391.237", "geom_point": "0101000020E610000029A52DCFFF7A5EC037527C9DD0584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.921178082, 50.691397207000129 ], [ -121.924695330999981, 50.691525827000085 ], [ -121.92447637099994, 50.693935431000149 ], [ -121.924397805999945, 50.694016390000058 ], [ -121.924003991999911, 50.694524814000054 ], [ -121.923402013999976, 50.695077540000099 ], [ -121.919775743999949, 50.694944900000039 ], [ -121.919613160999972, 50.696731813 ], [ -121.918621232999968, 50.69669551000004 ], [ -121.918514380999937, 50.697869538000113 ], [ -121.917200935, 50.69782145400012 ], [ -121.918022461999939, 50.696742842000013 ], [ -121.918904667999982, 50.695652697000121 ], [ -121.918917996999966, 50.695636207000092 ], [ -121.919103272999976, 50.695407257000063 ], [ -121.919679236999968, 50.694695461000045 ], [ -121.919881517999926, 50.694445457 ], [ -121.920547723999945, 50.693781501000032 ], [ -121.920696603999957, 50.693517048000032 ], [ -121.920923644999959, 50.692846036000034 ], [ -121.921254651, 50.692263405000119 ], [ -121.921352497999933, 50.69195207000007 ], [ -121.92132538499996, 50.69167306300006 ], [ -121.921178082, 50.691397207000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998855605349827", "sL_AssetLoss": "114.471", "sL_BldgLoss": "114.34", "sL_StrLoss": "113", "sL_NStrLoss": "1.34", "sL_ContLoss": "0.131", "geom_point": "0101000020E610000069EF8445E27A5EC06F302F1B78594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.919797164999963, 50.698443891000089 ], [ -121.920867347999931, 50.698483044000106 ], [ -121.920290101999953, 50.699005407000087 ], [ -121.919790780999918, 50.699791502000089 ], [ -121.919520018999933, 50.700059355000079 ], [ -121.919548598999967, 50.699745288000017 ], [ -121.919678316999978, 50.699750034000019 ], [ -121.919797164999963, 50.698443891000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13130500", "BldgCostT": "8320000", "sL_LossRatio": "0.998023739717064", "sL_AssetLoss": "4277.5236", "sL_BldgLoss": "4269.0701", "sL_StrLoss": "4230.3011", "sL_NStrLoss": "38.769", "sL_ContLoss": "8.4535", "geom_point": "0101000020E6100000437510C7FC7A5EC0D55CB04C26584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.919964547999882, 50.686863701000057 ], [ -121.923511274999953, 50.686993451000056 ], [ -121.923185245999946, 50.690580542000085 ], [ -121.920563908999924, 50.690484657000063 ], [ -121.920502192999905, 50.690396685000039 ], [ -121.920178373999988, 50.68993506000001 ], [ -121.920162804999947, 50.689905431000085 ], [ -121.919906322999935, 50.689416749000038 ], [ -121.919859051999964, 50.688922838000074 ], [ -121.919907658999975, 50.688107644000148 ], [ -121.919935740999946, 50.687968267000059 ], [ -121.920031810999916, 50.687491351000077 ], [ -121.919984424999896, 50.686920975000127 ], [ -121.919964547999882, 50.686863701000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5217303", "BldgCostT": "2783746", "sL_LossRatio": "0.997397077137776", "sL_AssetLoss": "450.1478", "sL_BldgLoss": "448.9761", "sL_StrLoss": "444.4801", "sL_NStrLoss": "4.496", "sL_ContLoss": "1.1717", "geom_point": "0101000020E610000059F9863EAF7B5EC08DDF46906B574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.932612146999944, 50.684245024000134 ], [ -121.932618267999899, 50.68397528100008 ], [ -121.932193683999955, 50.683971393000064 ], [ -121.932205929999981, 50.683431907000084 ], [ -121.931356771999901, 50.683424125000094 ], [ -121.931350644999924, 50.683693867000052 ], [ -121.931105431, 50.683691618000061 ], [ -121.930998199999948, 50.683303496000029 ], [ -121.930733014999973, 50.68307885600003 ], [ -121.931101610999974, 50.682941007000103 ], [ -121.931293306999962, 50.682869473000039 ], [ -121.931650657999981, 50.68273611200005 ], [ -121.93197627799999, 50.682586035000078 ], [ -121.932217712999943, 50.682441883000081 ], [ -121.9322548049999, 50.682407134000059 ], [ -121.932442431999945, 50.682231436000109 ], [ -121.932639724999888, 50.681964214000089 ], [ -121.93325916399999, 50.680794639000112 ], [ -121.933350086, 50.680699004000068 ], [ -121.933487398999944, 50.68063921100002 ], [ -121.933630208999901, 50.680612927000055 ], [ -121.933876583, 50.680632728000056 ], [ -121.933834484999977, 50.680784138000021 ], [ -121.933199316999932, 50.681532954000012 ], [ -121.932869039999972, 50.682125553000084 ], [ -121.93280142699993, 50.682401994000074 ], [ -121.932827576999927, 50.682707973000056 ], [ -121.932964446999932, 50.682997284000074 ], [ -121.933966370999926, 50.684180128000087 ], [ -121.934064432999932, 50.684258315000072 ], [ -121.932612146999944, 50.684245024000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999174483154671", "sL_AssetLoss": "167.168", "sL_BldgLoss": "167.03", "sL_StrLoss": "166", "sL_NStrLoss": "1.03", "sL_ContLoss": "0.138", "geom_point": "0101000020E6100000C1BCAEFCC57A5EC0DC7B7E39AF594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.918094035999928, 50.700161354 ], [ -121.919369715999977, 50.700208042000078 ], [ -121.919168797999944, 50.700406798000131 ], [ -121.918566196999947, 50.700761390000089 ], [ -121.917900908999954, 50.701321094000022 ], [ -121.917585502999927, 50.701465337000108 ], [ -121.917643714999912, 50.700825946000037 ], [ -121.918032240999963, 50.700840167000102 ], [ -121.918094035999928, 50.700161354 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18510083", "BldgCostT": "11558333", "sL_LossRatio": "0.997215082910479", "sL_AssetLoss": "4269.786", "sL_BldgLoss": "4257.895", "sL_StrLoss": "4196.565", "sL_NStrLoss": "61.33", "sL_ContLoss": "11.891", "geom_point": "0101000020E6100000E116C139427B5EC071C08D18E6574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.924003220999921, 50.689292047000087 ], [ -121.92404024399994, 50.687673596000089 ], [ -121.923615628, 50.687669675000123 ], [ -121.923620843999942, 50.687441692000078 ], [ -121.923554383999928, 50.68743926200009 ], [ -121.923600061999963, 50.686936634000055 ], [ -121.923395610999989, 50.686929158000069 ], [ -121.923426549999974, 50.686588734000054 ], [ -121.923215709999937, 50.686586786000063 ], [ -121.923237258999976, 50.685645468000182 ], [ -121.92332036199997, 50.685636490000078 ], [ -121.923418514999952, 50.685625892000104 ], [ -121.924057214999934, 50.68550476700004 ], [ -121.924070841999949, 50.685502170000099 ], [ -121.924695626999963, 50.685338771000076 ], [ -121.925631427999946, 50.68498797800008 ], [ -121.927162476999939, 50.684414002000054 ], [ -121.927739320999962, 50.684198313000117 ], [ -121.92776358499999, 50.684189240000087 ], [ -121.928086691999937, 50.684400094000054 ], [ -121.928347210999931, 50.685391401000061 ], [ -121.928273681999968, 50.686731606000116 ], [ -121.927456697999972, 50.688514479000112 ], [ -121.925295601999963, 50.688494573000106 ], [ -121.925277111999947, 50.689303800000033 ], [ -121.924003220999921, 50.689292047000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.999476024899001", "sL_AssetLoss": "540.102", "sL_BldgLoss": "539.819", "sL_StrLoss": "539", "sL_NStrLoss": "0.819", "sL_ContLoss": "0.283", "geom_point": "0101000020E610000015E126A34A7B5EC05EA74709305A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.92625696199994, 50.704490229000072 ], [ -121.926643387999945, 50.703877274000078 ], [ -121.926618564999927, 50.704964466000085 ], [ -121.926193791999978, 50.704960555000056 ], [ -121.926191580999983, 50.70505734300005 ], [ -121.926077069999977, 50.705033354000108 ], [ -121.92625696199994, 50.704490229000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214701250", "BldgCostT": "128785000", "sL_LossRatio": "0.835507145892866", "sL_AssetLoss": "28896.389", "sL_BldgLoss": "24143.1395", "sL_StrLoss": "22308.5305", "sL_NStrLoss": "1834.609", "sL_ContLoss": "4753.2495", "geom_point": "0101000020E610000077B160EAC07B5EC003C2DBA41E594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.926952811999911, 50.698595368000021 ], [ -121.928323657999954, 50.696889139000099 ], [ -121.928775091999981, 50.696448561000068 ], [ -121.930970525999896, 50.695146046000104 ], [ -121.931103795999917, 50.695066974000071 ], [ -121.932946729999912, 50.693987047000157 ], [ -121.932269510999987, 50.693476499000013 ], [ -121.932644561999908, 50.693258455000084 ], [ -121.932749637999905, 50.693197389000098 ], [ -121.934371203999916, 50.692254733000041 ], [ -121.935604557999966, 50.69153771000002 ], [ -121.935792960999919, 50.691666030000142 ], [ -121.93682597400003, 50.691130555000065 ], [ -121.937505719999947, 50.691080638000123 ], [ -121.93747540699998, 50.691321554000062 ], [ -121.938236648, 50.691264724000071 ], [ -121.938238950999974, 50.691552724000111 ], [ -121.938262070999983, 50.691750970000051 ], [ -121.93831772899999, 50.692227828000071 ], [ -121.93955854599993, 50.692990882000046 ], [ -121.94001373699993, 50.693290884000092 ], [ -121.94080229, 50.693872938 ], [ -121.943376184999977, 50.692388323000046 ], [ -121.943325537999954, 50.69308329800009 ], [ -121.943254777, 50.694054745000123 ], [ -121.942627465, 50.694049056000033 ], [ -121.942153387999895, 50.694306636000121 ], [ -121.94214714099995, 50.694584294000073 ], [ -121.941758467999975, 50.69458076600003 ], [ -121.941722460999983, 50.694580439000042 ], [ -121.941716390999957, 50.694850182000046 ], [ -121.941126980999982, 50.694844830000058 ], [ -121.940864070999964, 50.694973692000119 ], [ -121.940855656999972, 50.695347176000126 ], [ -121.940784976999979, 50.695381319000063 ], [ -121.940102872999887, 50.695375118000122 ], [ -121.940004293999976, 50.695427667000011 ], [ -121.939999418999932, 50.695643977000074 ], [ -121.93960523, 50.695640391000111 ], [ -121.939574351999937, 50.69565685000007 ], [ -121.939568645999941, 50.695909857000053 ], [ -121.93910757899998, 50.695905660000051 ], [ -121.938714452999946, 50.696115210000123 ], [ -121.938707353999959, 50.696429733000024 ], [ -121.93818584899999, 50.696706663000057 ], [ -121.937614587999931, 50.696701458000099 ], [ -121.937424571999955, 50.696802737000077 ], [ -121.93741752499993, 50.697114648000145 ], [ -121.937186812, 50.697237155000025 ], [ -121.93699000499997, 50.697235360000072 ], [ -121.936987572999925, 50.697342947000024 ], [ -121.936687267999972, 50.697502398000083 ], [ -121.93570979, 50.697493476000027 ], [ -121.935714529, 50.69728410000009 ], [ -121.935632760999951, 50.697222975000059 ], [ -121.935020380999944, 50.697217383000059 ], [ -121.934864804999961, 50.697290220000092 ], [ -121.934860376999978, 50.697485719000085 ], [ -121.934455148999987, 50.697482015000091 ], [ -121.934006108999967, 50.697692245000091 ], [ -121.934004850999955, 50.697747696000114 ], [ -121.933889907999941, 50.697746645000066 ], [ -121.933576752999926, 50.697893253000103 ], [ -121.933565550999958, 50.698387147000062 ], [ -121.933325316, 50.69855087500013 ], [ -121.932712357999961, 50.698545264000074 ], [ -121.932706237, 50.698815007000128 ], [ -121.931628882, 50.698805137000093 ], [ -121.93142992599995, 50.698898272000058 ], [ -121.931419824000031, 50.699342817000058 ], [ -121.930995100999922, 50.699338924000095 ], [ -121.930988967999951, 50.699608665000056 ], [ -121.930564243999981, 50.699604769000096 ], [ -121.930558107999971, 50.699874511000125 ], [ -121.930133380999933, 50.699870614000062 ], [ -121.930127242999973, 50.700140356000055 ], [ -121.929278628999896, 50.700132564000079 ], [ -121.92916027499993, 50.701436253000061 ], [ -121.928686004999946, 50.701781559000047 ], [ -121.927541853999969, 50.701739782000097 ], [ -121.927511187, 50.703084096000083 ], [ -121.927086430999964, 50.703080187000147 ], [ -121.927080274999923, 50.703349929000041 ], [ -121.926836720999944, 50.70334768700009 ], [ -121.926838077999918, 50.703341784000038 ], [ -121.926765893, 50.702964877000021 ], [ -121.926528518999973, 50.702641282000101 ], [ -121.926047731999972, 50.702263829000096 ], [ -121.925492793, 50.701829903000018 ], [ -121.925274052999981, 50.701658835000018 ], [ -121.92563601699996, 50.701014631000056 ], [ -121.925757841999911, 50.700797756000043 ], [ -121.92618299699997, 50.700041016000078 ], [ -121.926198246999945, 50.700012378000089 ], [ -121.926952811999911, 50.698595368000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12303334", "BldgCostT": "8013334", "sL_LossRatio": "0.999539788539475", "sL_AssetLoss": "1453.0277", "sL_BldgLoss": "1452.359", "sL_StrLoss": "1447.1396", "sL_NStrLoss": "5.2194", "sL_ContLoss": "0.6687", "geom_point": "0101000020E610000048428D08A77B5EC02E7D222E045E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.929961996999978, 50.734482406000026 ], [ -121.929315310999968, 50.733667805000053 ], [ -121.928456793999928, 50.732166691000067 ], [ -121.928346863999963, 50.731735746000062 ], [ -121.929894403, 50.731792198000072 ], [ -121.932669763999982, 50.731893384000109 ], [ -121.932690900999944, 50.732979888000067 ], [ -121.932811141999977, 50.733822379000024 ], [ -121.934178815999928, 50.733844822000037 ], [ -121.93414382899999, 50.73423037 ], [ -121.934943274999938, 50.734259492000042 ], [ -121.934702522999913, 50.737379247000071 ], [ -121.934691459999982, 50.737785226000021 ], [ -121.934379903000021, 50.737773309000062 ], [ -121.932583270999928, 50.73754662100005 ], [ -121.932445220999952, 50.737419203000137 ], [ -121.93181957799996, 50.736343900000129 ], [ -121.93108369399999, 50.735644595000096 ], [ -121.929961996999978, 50.734482406000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165638448", "BldgCostT": "105674243", "sL_LossRatio": "0.984108516260836", "sL_AssetLoss": "26862.36899", "sL_BldgLoss": "26435.48609", "sL_StrLoss": "26166.05669", "sL_NStrLoss": "269.4294", "sL_ContLoss": "426.8829", "geom_point": "0101000020E610000060B422C51B7B5EC016731074B45B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.923934203999949, 50.727654015000091 ], [ -121.923963199999946, 50.727335218000121 ], [ -121.923506856999921, 50.727318548000092 ], [ -121.923505177999942, 50.727316784000074 ], [ -121.923555608999919, 50.726762384000018 ], [ -121.923036264999936, 50.726743410000076 ], [ -121.922889492999943, 50.726468403000055 ], [ -121.92238159399993, 50.725953407000105 ], [ -121.922387604999969, 50.725887349000089 ], [ -121.92231378799994, 50.725884652000055 ], [ -121.922167900999938, 50.725736723000082 ], [ -121.922221909000015, 50.725143173000085 ], [ -121.921890008999966, 50.725131042000058 ], [ -121.922129058999943, 50.722503938000031 ], [ -121.920977029999946, 50.722474364000078 ], [ -121.920946718999929, 50.722448956000036 ], [ -121.920693929999985, 50.722446617000031 ], [ -121.920698653, 50.722241023000073 ], [ -121.920621254999972, 50.722176147000063 ], [ -121.920275198999974, 50.72217294200005 ], [ -121.920281667999987, 50.721891493000065 ], [ -121.919970339999949, 50.721630524000076 ], [ -121.919862675999966, 50.721629526000157 ], [ -121.919864688999937, 50.721541962000018 ], [ -121.919644887999937, 50.721357710000049 ], [ -121.91944395899999, 50.721355849000076 ], [ -121.919447715999937, 50.721192429000027 ], [ -121.919319440999942, 50.72108489700004 ], [ -121.91902524599999, 50.721082169000063 ], [ -121.91903075, 50.720842893000061 ], [ -121.918894129999956, 50.720728363000077 ], [ -121.918682404999956, 50.720539396000078 ], [ -121.918612744999976, 50.720538749000035 ], [ -121.918614132999949, 50.720478461000013 ], [ -121.918376946999913, 50.720266765000098 ], [ -121.918194043999932, 50.720265068000074 ], [ -121.918197688999911, 50.72010677 ], [ -121.918071491999953, 50.719994133000064 ], [ -121.917775347999935, 50.719991384000089 ], [ -121.917781251999926, 50.719735077000081 ], [ -121.917460594999952, 50.719448867000047 ], [ -121.91693797, 50.719444013000064 ], [ -121.916948396999928, 50.718991685000034 ], [ -121.916849712000015, 50.718903598000047 ], [ -121.916525509999985, 50.718900585000114 ], [ -121.916532298999925, 50.71860615800005 ], [ -121.916268176999949, 50.718358599000098 ], [ -121.916113057999951, 50.718357157000106 ], [ -121.91611630899996, 50.71821625300008 ], [ -121.916102129999956, 50.718202964000049 ], [ -121.916011976999968, 50.718086419 ], [ -121.915747893999949, 50.718083963000012 ], [ -121.915695814999964, 50.718021682000064 ], [ -121.915703416, 50.717692389000085 ], [ -121.915563157999941, 50.717542650000034 ], [ -121.915281954999926, 50.717540033000063 ], [ -121.915289077999915, 50.71723153300011 ], [ -121.915099936999937, 50.716998745000048 ], [ -121.914869529999933, 50.716996600000058 ], [ -121.914875758, 50.716726861000048 ], [ -121.914026005999915, 50.716718949000089 ], [ -121.91405717399999, 50.715370250000021 ], [ -121.9136323099999, 50.715366292000041 ], [ -121.913657252999897, 50.714287333000108 ], [ -121.912807543999946, 50.714279412000053 ], [ -121.912820080999978, 50.713737463000029 ], [ -121.912838744999974, 50.712930714000024 ], [ -121.91326358699996, 50.712934674000095 ], [ -121.913276060999962, 50.712395195000077 ], [ -121.913700898999963, 50.71239915400011 ], [ -121.913716281999953, 50.711733654000142 ], [ -121.913818643999946, 50.711690603000079 ], [ -121.913992751999956, 50.711617369000116 ], [ -121.914642580999953, 50.711230003000018 ], [ -121.915431801999915, 50.710854930000025 ], [ -121.916066900999937, 50.710473314000069 ], [ -121.916604079999942, 50.710106978000162 ], [ -121.916906252999922, 50.709851578000084 ], [ -121.917823364999919, 50.709076418000052 ], [ -121.919521208999967, 50.708103859000047 ], [ -121.920288980999942, 50.707698263000047 ], [ -121.92077763599994, 50.707443506000118 ], [ -121.921516100999895, 50.707047637000137 ], [ -121.922022197999965, 50.706712290000091 ], [ -121.922142788, 50.70663239700017 ], [ -121.922386308999933, 50.706404653000071 ], [ -121.92260190599994, 50.706109339000101 ], [ -121.92311743199997, 50.704778591000085 ], [ -121.924118383999911, 50.703273913000025 ], [ -121.924284484999973, 50.703121621000058 ], [ -121.924548698999928, 50.702879365000051 ], [ -121.92470828099998, 50.702841115000091 ], [ -121.925274052999981, 50.701658835000018 ], [ -121.925492793, 50.701829903000018 ], [ -121.926047731999972, 50.702263829000096 ], [ -121.926528518999973, 50.702641282000101 ], [ -121.926765893, 50.702964877000021 ], [ -121.926838077999918, 50.703341784000038 ], [ -121.926836720999944, 50.70334768700009 ], [ -121.926655517999947, 50.703346019000051 ], [ -121.926643387999945, 50.703877274000078 ], [ -121.92625696199994, 50.704490229000072 ], [ -121.926077069999977, 50.705033354000108 ], [ -121.926191580999983, 50.70505734300005 ], [ -121.926187630999891, 50.705230296000117 ], [ -121.926012375999932, 50.705228682000104 ], [ -121.925762857000038, 50.705226382000056 ], [ -121.92574430799999, 50.706038038000052 ], [ -121.925725868, 50.706844830000094 ], [ -121.926150659999948, 50.706848743000059 ], [ -121.926141690999913, 50.707241306000057 ], [ -121.927105190999924, 50.707276494000098 ], [ -121.926795280999912, 50.710687644000068 ], [ -121.931443464999973, 50.710857286000085 ], [ -121.931383777999955, 50.71151494300009 ], [ -121.931459009999912, 50.711517687000025 ], [ -121.931408801999936, 50.712070906000079 ], [ -121.931430247999984, 50.712071689 ], [ -121.93110466899999, 50.715658697000045 ], [ -121.929510300999951, 50.715600532000082 ], [ -121.929346863999925, 50.717400250000019 ], [ -121.929734221999965, 50.717403808000086 ], [ -121.92970350199991, 50.718752512000094 ], [ -121.930128398, 50.718756412000076 ], [ -121.93009154399999, 50.720374857000088 ], [ -121.930516454999946, 50.720378756000088 ], [ -121.930498034999957, 50.721187980000074 ], [ -121.928373438999955, 50.721168470000109 ], [ -121.928379591999928, 50.720898730000037 ], [ -121.927954675999928, 50.720894822000076 ], [ -121.927936210000027, 50.721704044000084 ], [ -121.92666144099999, 50.721692316000087 ], [ -121.926679926999967, 50.720883094000037 ], [ -121.925405179999984, 50.720871352000103 ], [ -121.925417517999961, 50.720331871000099 ], [ -121.924142784999972, 50.720320114000074 ], [ -121.924139188999931, 50.72047717600001 ], [ -121.924211996999958, 50.720590550000111 ], [ -121.924561521999934, 50.720593775000104 ], [ -121.924549563999946, 50.721116189000014 ], [ -121.924732129999967, 50.721400464000105 ], [ -121.924837701999934, 50.721639876000069 ], [ -121.927875826999966, 50.721750803000141 ], [ -121.927808982999977, 50.722486485000097 ], [ -121.928140866, 50.722498597000026 ], [ -121.92809376299999, 50.723017051000035 ], [ -121.929450654999926, 50.723066563 ], [ -121.92937188399999, 50.72393381800002 ], [ -121.929491012999989, 50.723938164000124 ], [ -121.929465807999989, 50.724215663000074 ], [ -121.929950712999982, 50.724233352000034 ], [ -121.929864042999952, 50.725187679000094 ], [ -121.930151070999941, 50.725198149000079 ], [ -121.930114583999952, 50.725599910000071 ], [ -121.930685579999931, 50.725620736000145 ], [ -121.930647700999913, 50.726037867000066 ], [ -121.930926399, 50.726048030000108 ], [ -121.93088331099996, 50.72652255600007 ], [ -121.931449911999962, 50.726543217000071 ], [ -121.931124230999956, 50.73013016400008 ], [ -121.929002696999959, 50.730052789000084 ], [ -121.927126148999932, 50.729984315000166 ], [ -121.92690997899993, 50.72972419900001 ], [ -121.925856096999965, 50.728715789000056 ], [ -121.925286001999936, 50.728252892000079 ], [ -121.924866717999919, 50.728032196000058 ], [ -121.924376302999946, 50.727785811000025 ], [ -121.923934203999949, 50.727654015000091 ] ], [ [ -121.928398049999927, 50.720089507000075 ], [ -121.928416506999923, 50.719280285000103 ], [ -121.927991603999942, 50.719276378000124 ], [ -121.928031731999923, 50.717517486000119 ], [ -121.927147981999909, 50.717485225000097 ], [ -121.926983211999982, 50.719298487000081 ], [ -121.926716348999946, 50.719288744000053 ], [ -121.92670457499996, 50.71980413100006 ], [ -121.927129480999938, 50.719808042000089 ], [ -121.927123322999961, 50.720077783000086 ], [ -121.928398049999927, 50.720089507000075 ] ], [ [ -121.924592391999937, 50.719245073000081 ], [ -121.925833781999984, 50.719256518000059 ], [ -121.924593167999916, 50.719211205000107 ], [ -121.924592391999937, 50.719245073000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32903334", "BldgCostT": "21008334", "sL_LossRatio": "0.931582970814515", "sL_AssetLoss": "6879.413", "sL_BldgLoss": "6408.744", "sL_StrLoss": "6161.344", "sL_NStrLoss": "247.4", "sL_ContLoss": "470.669", "geom_point": "0101000020E6100000000593F2058D5EC08B9C8DAE355D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.20617456, 50.730872134000023 ], [ -122.206188783999934, 50.730704129000124 ], [ -122.20386669, 50.730625173000135 ], [ -122.203873429999973, 50.730545598000091 ], [ -122.203037164999927, 50.730517151000072 ], [ -122.203043961999967, 50.730436915000027 ], [ -122.202271442999972, 50.730410631000083 ], [ -122.20227638599998, 50.730352294000085 ], [ -122.198085697999886, 50.730209619000057 ], [ -122.198094571999889, 50.730105012000116 ], [ -122.197333977999918, 50.730079100000097 ], [ -122.197393576999943, 50.729376697000106 ], [ -122.195884273, 50.729325263000057 ], [ -122.195916176999972, 50.728949396000054 ], [ -122.193391009999971, 50.728863296000057 ], [ -122.193519462, 50.727350924000085 ], [ -122.193045252999937, 50.727347643000037 ], [ -122.1930406199999, 50.727617404000085 ], [ -122.190065555999951, 50.727596776000034 ], [ -122.190070205999945, 50.727327016000089 ], [ -122.189220192999926, 50.727321109000044 ], [ -122.189210881999941, 50.727860630000038 ], [ -122.187935846999963, 50.727851756000057 ], [ -122.187931183999964, 50.728121516000094 ], [ -122.18665614299999, 50.728112629000059 ], [ -122.186660813999978, 50.727842869000028 ], [ -122.185385781999983, 50.727833969000095 ], [ -122.185390459999908, 50.727564207000079 ], [ -122.184965452, 50.727561238000135 ], [ -122.184970131999975, 50.727291478000062 ], [ -122.18454512699999, 50.727288506000079 ], [ -122.184559176, 50.726479224000038 ], [ -122.184134176, 50.726476251000051 ], [ -122.184138861999898, 50.726206491000028 ], [ -122.183713865999934, 50.726203517000094 ], [ -122.183746676999959, 50.724315195 ], [ -122.184644863999949, 50.724321478000057 ], [ -122.185475699999969, 50.724703807000068 ], [ -122.185863755999918, 50.724781068000077 ], [ -122.185862222, 50.724869571000085 ], [ -122.186287205999975, 50.724872539000103 ], [ -122.186288046999934, 50.724823916000034 ], [ -122.187556900999979, 50.72481778500002 ], [ -122.187988302999884, 50.724817236000085 ], [ -122.18798714199994, 50.724884390000057 ], [ -122.189329707999889, 50.724893732000048 ], [ -122.190146397999982, 50.724997206000104 ], [ -122.190838903999989, 50.725136785000068 ], [ -122.191582014999952, 50.725564009000102 ], [ -122.192559195999976, 50.725562599000099 ], [ -122.192771087999972, 50.725545491000069 ], [ -122.192943675999913, 50.725458389000046 ], [ -122.19307769199996, 50.725459317000109 ], [ -122.19307888, 50.725390154000117 ], [ -122.193471016999951, 50.725192245000066 ], [ -122.194296532999914, 50.725197953000098 ], [ -122.194745177999934, 50.725380293000072 ], [ -122.195987983999942, 50.725586807000106 ], [ -122.196639498999971, 50.725563988000097 ], [ -122.19764870099999, 50.725390301000054 ], [ -122.197973222999948, 50.725491403000042 ], [ -122.198585889999919, 50.726098115000092 ], [ -122.198907401, 50.726290392000109 ], [ -122.199583978999954, 50.726528193000078 ], [ -122.201323900999967, 50.727502408000056 ], [ -122.202044319, 50.727669004000035 ], [ -122.203406412999954, 50.727508097000076 ], [ -122.20569188499999, 50.728170299000062 ], [ -122.207162312999969, 50.728396796000105 ], [ -122.208041605999938, 50.728258610000104 ], [ -122.210377704999985, 50.727555095000113 ], [ -122.21146980499995, 50.727426895000107 ], [ -122.213171080999956, 50.727348603000046 ], [ -122.2144252209999, 50.726971201000055 ], [ -122.216130704999941, 50.726721890000121 ], [ -122.216816889, 50.726321695000102 ], [ -122.217128405999944, 50.726279001000123 ], [ -122.218029222, 50.726645005000059 ], [ -122.219906694999963, 50.72793391000004 ], [ -122.220628597999948, 50.728784197000081 ], [ -122.221203694999986, 50.729165906000048 ], [ -122.221796308999956, 50.729376585000054 ], [ -122.222584831999896, 50.729503473000058 ], [ -122.222553133999895, 50.729879556000114 ], [ -122.222487781999973, 50.730654904000062 ], [ -122.222445586, 50.731155491000067 ], [ -122.216783655, 50.730963717000108 ], [ -122.216833401999978, 50.73037442400009 ], [ -122.214244804999964, 50.730286651000014 ], [ -122.214252933999902, 50.730190415000031 ], [ -122.213864281999975, 50.730187795000049 ], [ -122.213861569999935, 50.730219899000126 ], [ -122.213209263999929, 50.730197769000029 ], [ -122.213198747999925, 50.730322215000029 ], [ -122.212611131999921, 50.730302276000081 ], [ -122.212559356999989, 50.730914928000104 ], [ -122.211851105, 50.730890892000062 ], [ -122.211836434999981, 50.731064444000019 ], [ -122.20617456, 50.730872134000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999534829099958", "sL_AssetLoss": "437.6886", "sL_BldgLoss": "437.485", "sL_StrLoss": "436", "sL_NStrLoss": "1.485", "sL_ContLoss": "0.2036", "geom_point": "0101000020E610000068929A6E808E5EC0E1F2F508775D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.226109004999898, 50.729054791000095 ], [ -122.226732697999964, 50.729004898000042 ], [ -122.229340874999977, 50.729222785000069 ], [ -122.229313237999946, 50.729551262000022 ], [ -122.229168877999925, 50.73126702900003 ], [ -122.22502475099995, 50.731126943000078 ], [ -122.223506902999986, 50.731075596000032 ], [ -122.223533790999966, 50.730756509000109 ], [ -122.223599666999988, 50.729974735 ], [ -122.223635535999946, 50.729549062000046 ], [ -122.223676094999945, 50.729550386000071 ], [ -122.22488087399995, 50.7295403950001 ], [ -122.226109004999898, 50.729054791000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999613236556304", "sL_AssetLoss": "804.6262", "sL_BldgLoss": "804.315", "sL_StrLoss": "802", "sL_NStrLoss": "2.315", "sL_ContLoss": "0.3112", "geom_point": "0101000020E610000020A73B91188F5EC0555A2D4D9D5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.23414303199992, 50.7320464330001 ], [ -122.234144904999937, 50.732024134000049 ], [ -122.233431417999924, 50.732000059000057 ], [ -122.23361548, 50.72980997100008 ], [ -122.233653197999928, 50.729361159000071 ], [ -122.234933796999925, 50.729230010000066 ], [ -122.23651622200002, 50.729392302000136 ], [ -122.23753103, 50.729634201000053 ], [ -122.237610336, 50.729717874000038 ], [ -122.238324910999935, 50.730471542000046 ], [ -122.238148781999911, 50.731382887000073 ], [ -122.238459883999951, 50.731578302000031 ], [ -122.238608192999919, 50.73175689300006 ], [ -122.238588470999943, 50.73190649900004 ], [ -122.238473407999919, 50.73195930300006 ], [ -122.238024827999979, 50.732024309000089 ], [ -122.23773517699999, 50.733523040000129 ], [ -122.234029446999926, 50.733398073000025 ], [ -122.23414303199992, 50.7320464330001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999563428175646", "sL_AssetLoss": "542.866", "sL_BldgLoss": "542.629", "sL_StrLoss": "541", "sL_NStrLoss": "1.629", "sL_ContLoss": "0.237", "geom_point": "0101000020E6100000AD26DB02FA905EC0AFD8BA2FC25C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.262571791999989, 50.726418048 ], [ -122.262725755999952, 50.724571560000115 ], [ -122.260924905999943, 50.724560160000117 ], [ -122.260673201999978, 50.724558563000109 ], [ -122.260685938999984, 50.723749267000059 ], [ -122.262397153999956, 50.723760106000043 ], [ -122.26279320299993, 50.723762610000051 ], [ -122.262813876999971, 50.723514647000052 ], [ -122.262870944999975, 50.722830158000079 ], [ -122.264501030999909, 50.722884736 ], [ -122.268532045999976, 50.723019597000089 ], [ -122.268233343999924, 50.726607502000093 ], [ -122.262571791999989, 50.726418048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999575091639055", "sL_AssetLoss": "137.4414", "sL_BldgLoss": "137.383", "sL_StrLoss": "137", "sL_NStrLoss": "0.383", "sL_ContLoss": "0.0584", "geom_point": "0101000020E61000007CA7975236905EC08136A417D65C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.252507917999978, 50.723500583000089 ], [ -122.254318718999954, 50.723561378000063 ], [ -122.254132674999966, 50.725787616000027 ], [ -122.254018877999926, 50.72714924200006 ], [ -122.252591890999895, 50.727101336000061 ], [ -122.252399583999988, 50.726659429000051 ], [ -122.252507917999978, 50.723500583000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8296136", "BldgCostT": "4907079", "sL_LossRatio": "0.993406562582094", "sL_AssetLoss": "1853.813", "sL_BldgLoss": "1841.59", "sL_StrLoss": "1792.27", "sL_NStrLoss": "49.32", "sL_ContLoss": "12.223", "geom_point": "0101000020E610000004AEE949B2915EC026647317D95A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.271048334999961, 50.709500028000036 ], [ -122.271174080999984, 50.70798792500009 ], [ -122.271846685999918, 50.70801040500006 ], [ -122.271854858, 50.707912119000071 ], [ -122.271117527999962, 50.707887476000096 ], [ -122.272027985999941, 50.707281492000071 ], [ -122.272665309, 50.707275808000055 ], [ -122.272961713999933, 50.707358389000049 ], [ -122.273192385999963, 50.707936606000075 ], [ -122.273713886999985, 50.708137394000026 ], [ -122.27505888499995, 50.70810039000002 ], [ -122.275560504999973, 50.707842598000092 ], [ -122.276095780999967, 50.707082095000032 ], [ -122.276707298999938, 50.706869900000072 ], [ -122.277316715999987, 50.706874096000078 ], [ -122.27839996699997, 50.706340711000095 ], [ -122.279123111999951, 50.706347218000097 ], [ -122.279123336999973, 50.706342720000038 ], [ -122.279572168999934, 50.70636062100008 ], [ -122.28002657799999, 50.706378782000087 ], [ -122.280169506999968, 50.70906125500008 ], [ -122.279950020999962, 50.710727014000092 ], [ -122.279932964999915, 50.710856320000062 ], [ -122.279872589999968, 50.711314511000083 ], [ -122.279927388999951, 50.712792351000083 ], [ -122.279594187999919, 50.712781240000012 ], [ -122.279565815999916, 50.713123160000109 ], [ -122.27896376299995, 50.713103082 ], [ -122.278956493999914, 50.71319067400006 ], [ -122.275693614999938, 50.713081803000122 ], [ -122.275025332999974, 50.713059492000113 ], [ -122.27509888699997, 50.712975493000044 ], [ -122.275134295999948, 50.712489787000067 ], [ -122.274781537, 50.711867934000047 ], [ -122.274540485, 50.711443 ], [ -122.273788815999978, 50.710638301000053 ], [ -122.272675215999968, 50.710270900000118 ], [ -122.27193725799998, 50.70984884800005 ], [ -122.271833507999972, 50.70978951000005 ], [ -122.271048334999961, 50.709500028000036 ] ], [ [ -122.279263779999951, 50.706978726000031 ], [ -122.279299854, 50.706543958000047 ], [ -122.278766719999979, 50.706526175000107 ], [ -122.278730639999935, 50.706960942000109 ], [ -122.279263779999951, 50.706978726000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36007084", "BldgCostT": "23358334", "sL_LossRatio": "0.999146335406371", "sL_AssetLoss": "6764.952", "sL_BldgLoss": "6759.177", "sL_StrLoss": "6724.84", "sL_NStrLoss": "34.337", "sL_ContLoss": "5.775", "geom_point": "0101000020E6100000F03A97B9AB9E5EC0F88491031B464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.473399663999913, 50.55235684900007 ], [ -122.473493669999982, 50.551157050000029 ], [ -122.472581916999943, 50.551152925000096 ], [ -122.47259395699993, 50.550073787000045 ], [ -122.473440827999966, 50.550077619000085 ], [ -122.473446837000012, 50.549538050000095 ], [ -122.473023406999943, 50.549536135000025 ], [ -122.473030631999947, 50.548887915000137 ], [ -122.470547101999941, 50.548809082000098 ], [ -122.470541194999953, 50.548884412000113 ], [ -122.469964091999941, 50.548702894000023 ], [ -122.46906020499992, 50.548581800000058 ], [ -122.467805284999955, 50.548630198000112 ], [ -122.467451489999988, 50.548735602000079 ], [ -122.467236191, 50.549004806000021 ], [ -122.466906985000023, 50.549104892000052 ], [ -122.466767815, 50.54914720800015 ], [ -122.465840195999988, 50.550104304000079 ], [ -122.465569312999918, 50.550238188000094 ], [ -122.464325901999985, 50.550448995000089 ], [ -122.464069391999928, 50.550572905000053 ], [ -122.463956729999978, 50.550790890000052 ], [ -122.464237374, 50.546359887000037 ], [ -122.465083216999943, 50.54638679300011 ], [ -122.465123105999936, 50.545878821000024 ], [ -122.469063426999952, 50.546004072000095 ], [ -122.469209538999948, 50.544141215000124 ], [ -122.471252009999944, 50.544206084000031 ], [ -122.471282972999973, 50.543811065000035 ], [ -122.471861737999973, 50.543829440000138 ], [ -122.471873655999929, 50.543677379000059 ], [ -122.477513097, 50.543856263000073 ], [ -122.477348663999962, 50.545957655000088 ], [ -122.480768119999979, 50.546065981000055 ], [ -122.480755374999944, 50.546229006000075 ], [ -122.481951721999948, 50.546266880000061 ], [ -122.481965714999944, 50.544989687000069 ], [ -122.482143025999932, 50.544990477000049 ], [ -122.482145349999911, 50.544960729000138 ], [ -122.483235887999953, 50.544995242 ], [ -122.483238834999952, 50.544725546000095 ], [ -122.484085610999955, 50.544729301000061 ], [ -122.484094442999947, 50.543919945000034 ], [ -122.483671062, 50.543918069000043 ], [ -122.483676952999957, 50.543378498000031 ], [ -122.482830200999942, 50.543374740000033 ], [ -122.482839052999964, 50.54256538500006 ], [ -122.484109158999956, 50.542571018000032 ], [ -122.484115045999928, 50.542031448000074 ], [ -122.484961772999938, 50.542035196 ], [ -122.484962041999935, 50.542010735000126 ], [ -122.48457648099999, 50.541998539000048 ], [ -122.484589780999954, 50.541828204000062 ], [ -122.485551986999909, 50.541806265000112 ], [ -122.490018626999955, 50.541827268000134 ], [ -122.489918768999956, 50.544963996000035 ], [ -122.4896373, 50.545039803000066 ], [ -122.488953784999978, 50.545541104000101 ], [ -122.488444800999972, 50.545700601000142 ], [ -122.487723582999962, 50.54576899000007 ], [ -122.487151479999966, 50.546503903000037 ], [ -122.486874217999969, 50.547196102000107 ], [ -122.486234490999919, 50.547589088000123 ], [ -122.484663500999915, 50.548057699000033 ], [ -122.483514685999936, 50.548610297000039 ], [ -122.482228373999973, 50.548748396000114 ], [ -122.481972103999965, 50.54890079600009 ], [ -122.482706293999939, 50.548939306000058 ], [ -122.483144900999932, 50.548879489000058 ], [ -122.484263, 50.548533405000043 ], [ -122.485498615999958, 50.547945201000097 ], [ -122.486303502999959, 50.547903900000058 ], [ -122.48682731199996, 50.547636087000093 ], [ -122.487330183999958, 50.546855706000052 ], [ -122.487557908999932, 50.546686204000139 ], [ -122.487660408999915, 50.546263209000074 ], [ -122.487818607999955, 50.546093708000051 ], [ -122.48875199099993, 50.545899988000023 ], [ -122.489078493999941, 50.545721992000097 ], [ -122.489448409999952, 50.545363095000013 ], [ -122.489719399999942, 50.545220712000052 ], [ -122.489911679, 50.545186701000027 ], [ -122.48986344599993, 50.546701588000126 ], [ -122.49000829000002, 50.549062602000042 ], [ -122.490175187999967, 50.551782723000017 ], [ -122.487617699999973, 50.551701941000012 ], [ -122.487502403999969, 50.553179358000051 ], [ -122.484890150999945, 50.552535440000064 ], [ -122.48343852, 50.552177564000033 ], [ -122.483282240999955, 50.552139047 ], [ -122.48170456099993, 50.552371496000063 ], [ -122.476729269, 50.551050995000018 ], [ -122.476025477999912, 50.551812646000059 ], [ -122.475798761999926, 50.552520953000105 ], [ -122.475512220999974, 50.552694787000085 ], [ -122.474762397999953, 50.553149738000073 ], [ -122.474643202999971, 50.55305810400008 ], [ -122.474305913999913, 50.552949904000101 ], [ -122.473788579999905, 50.552488395000076 ], [ -122.473399663999913, 50.55235684900007 ] ], [ [ -122.479008777999965, 50.550850776000054 ], [ -122.479046181999976, 50.550372628000048 ], [ -122.478519080999931, 50.550370268000073 ], [ -122.478522056999935, 50.55010048300008 ], [ -122.478098620999944, 50.550098586000061 ], [ -122.478100735999973, 50.549907056000073 ], [ -122.477677428999954, 50.549893644000107 ], [ -122.477675184999967, 50.55009668800006 ], [ -122.477251747999929, 50.550094789000127 ], [ -122.477248764999942, 50.550364573000145 ], [ -122.476825326999958, 50.550362671000073 ], [ -122.476822340999931, 50.550632457000091 ], [ -122.4763989, 50.550630552000015 ], [ -122.47639737799993, 50.5507680260001 ], [ -122.479008777999965, 50.550850776000054 ] ], [ [ -122.488946797999972, 50.544540057000084 ], [ -122.489098645999945, 50.542593015000115 ], [ -122.488766221999967, 50.542591557000101 ], [ -122.488757469999939, 50.543400913000063 ], [ -122.488334094999985, 50.543399053000044 ], [ -122.488331174999971, 50.54366883900007 ], [ -122.487907794999956, 50.543666979000101 ], [ -122.487904874999955, 50.543936764000073 ], [ -122.487058110999911, 50.543933037000052 ], [ -122.487055184, 50.544202822000038 ], [ -122.486631799999955, 50.544200957000072 ], [ -122.486628870999979, 50.544470741000097 ], [ -122.485782100000023, 50.544467006000033 ], [ -122.485776230999974, 50.545006576000056 ], [ -122.486199622999919, 50.545008446000068 ], [ -122.486199332999931, 50.545035073000044 ], [ -122.486234497999931, 50.545036185000072 ], [ -122.486256989999973, 50.544748028000093 ], [ -122.486736776999976, 50.54476319500003 ], [ -122.486759584999987, 50.544470939000121 ], [ -122.488946797999972, 50.544540057000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999164152594392", "sL_AssetLoss": "153.138", "sL_BldgLoss": "153.01", "sL_StrLoss": "152", "sL_NStrLoss": "1.01", "sL_ContLoss": "0.128", "geom_point": "0101000020E61000001DF3CF46CD9D5EC09068235395454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.46488658, 50.542275641000117 ], [ -122.46682115599999, 50.542231864000051 ], [ -122.466608539999953, 50.544940843000106 ], [ -122.464331825999963, 50.544868437000048 ], [ -122.464347862999958, 50.544615221000164 ], [ -122.46488658, 50.542275641000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.992560131888571", "sL_AssetLoss": "709.69", "sL_BldgLoss": "704.41", "sL_StrLoss": "674", "sL_NStrLoss": "30.41", "sL_ContLoss": "5.28", "geom_point": "0101000020E6100000802A4DCEF9A85EC0A8981805A0274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64055429699999, 50.308941492000024 ], [ -122.640966239999926, 50.308860075000098 ], [ -122.64088069, 50.310012990000118 ], [ -122.638418590999919, 50.309938144000107 ], [ -122.638733889999969, 50.309863015000055 ], [ -122.63952081099994, 50.309774685000065 ], [ -122.639720414999914, 50.309667806000014 ], [ -122.640030987, 50.309210691000068 ], [ -122.64055429699999, 50.308941492000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38908334", "BldgCostT": "26833334", "sL_LossRatio": "0.994973425075193", "sL_AssetLoss": "19416.8", "sL_BldgLoss": "19319.2", "sL_StrLoss": "18545", "sL_NStrLoss": "774.2", "sL_ContLoss": "97.6", "geom_point": "0101000020E610000008A9A12E4EAB5EC0312889DB57284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.67870912599993, 50.318259176 ], [ -122.678859508999963, 50.316209750000105 ], [ -122.678333072999962, 50.31619393500003 ], [ -122.678322515999966, 50.316337771000036 ], [ -122.672710634999987, 50.31616902100005 ], [ -122.672824663999947, 50.314617778000127 ], [ -122.668821296999937, 50.314497221000096 ], [ -122.668935824999892, 50.312940959000095 ], [ -122.669765813, 50.312707091000085 ], [ -122.670174300999989, 50.312447894000073 ], [ -122.67078031699999, 50.31224280800005 ], [ -122.671414199999973, 50.31190239200005 ], [ -122.672413294999956, 50.311680214000056 ], [ -122.672947501999928, 50.311690193000068 ], [ -122.673593699999941, 50.311755708000121 ], [ -122.674139383999957, 50.311955098000091 ], [ -122.674603610999952, 50.312343297000069 ], [ -122.674582792999971, 50.312626678000044 ], [ -122.674847590999917, 50.312634642000063 ], [ -122.67521148699997, 50.313172801000107 ], [ -122.675490414999956, 50.313443404000068 ], [ -122.675910989, 50.313651409000059 ], [ -122.677384595999953, 50.313996002000117 ], [ -122.67769249899996, 50.314141314000054 ], [ -122.678626900999959, 50.315124002000054 ], [ -122.679045996999946, 50.315431586000074 ], [ -122.680630498999946, 50.315777708000091 ], [ -122.681668089, 50.315861696000056 ], [ -122.684366799999978, 50.315688007000084 ], [ -122.685822873999882, 50.315794160000102 ], [ -122.685800912999966, 50.316094090000064 ], [ -122.684541011999926, 50.316056315000019 ], [ -122.684522772999941, 50.316305321000087 ], [ -122.684476858999929, 50.316303944000033 ], [ -122.684321289999957, 50.31842762100009 ], [ -122.67870912599993, 50.318259176 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.989687383877293", "sL_AssetLoss": "2718.03", "sL_BldgLoss": "2690", "sL_StrLoss": "2500", "sL_NStrLoss": "190", "sL_ContLoss": "28.03", "geom_point": "0101000020E6100000ED1A2596F1A95EC0BC195EDED6274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.653451305999937, 50.311558619000074 ], [ -122.65345631699999, 50.311490846000048 ], [ -122.652351369999948, 50.311457391000047 ], [ -122.652419965999954, 50.310529829000089 ], [ -122.653405387999925, 50.310582199000052 ], [ -122.655214896999908, 50.310992396000096 ], [ -122.656869398999945, 50.311150402000052 ], [ -122.659108802, 50.311101611000012 ], [ -122.659062545999959, 50.31172834700007 ], [ -122.653451305999937, 50.311558619000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6169583", "BldgCostT": "3758333", "sL_LossRatio": "0.944264904103805", "sL_AssetLoss": "2463.08", "sL_BldgLoss": "2325.8", "sL_StrLoss": "1891.2", "sL_NStrLoss": "434.6", "sL_ContLoss": "137.28", "geom_point": "0101000020E6100000A8B2418983AA5EC0654B1C9AAE274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.664891096999952, 50.309005603000095 ], [ -122.665438905999963, 50.309007002000072 ], [ -122.665887389999966, 50.309071107000058 ], [ -122.66619431, 50.309197885000053 ], [ -122.666599887999936, 50.309693060000036 ], [ -122.665079455999972, 50.309647200000093 ], [ -122.664990740999926, 50.310851406000083 ], [ -122.661432918999964, 50.310744011000089 ], [ -122.662155979999966, 50.31051809300007 ], [ -122.66333889299996, 50.309918500000066 ], [ -122.664680295999958, 50.309068206000099 ], [ -122.664891096999952, 50.309005603000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.991780025975801", "sL_AssetLoss": "1170.32", "sL_BldgLoss": "1160.7", "sL_StrLoss": "1087", "sL_NStrLoss": "73.7", "sL_ContLoss": "9.62", "geom_point": "0101000020E6100000FFADE8FFAAA85EC026F166CBC1274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.636724991, 50.310189095000077 ], [ -122.637501369999953, 50.310142544000065 ], [ -122.637444, 50.310914871000115 ], [ -122.631832942999964, 50.310744047000078 ], [ -122.631833491999984, 50.310736658000096 ], [ -122.633561422999946, 50.310449702000057 ], [ -122.635290101999914, 50.310436885000072 ], [ -122.636258474999963, 50.310322994000096 ], [ -122.636724991, 50.310189095000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.986325945697596", "sL_AssetLoss": "457.07", "sL_BldgLoss": "450.82", "sL_StrLoss": "395.32", "sL_NStrLoss": "55.5", "sL_ContLoss": "6.25", "geom_point": "0101000020E61000005262D7F676A95EC0EF33B254AC274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.64699864899994, 50.310210351000087 ], [ -122.647067937999964, 50.309274872000046 ], [ -122.647348187999938, 50.309367292000069 ], [ -122.648381785999959, 50.309991097000079 ], [ -122.650205594999946, 50.310307580000092 ], [ -122.64699864899994, 50.310210351000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7776833", "BldgCostT": "5363333", "sL_LossRatio": "0.994613577453088", "sL_AssetLoss": "3707.47", "sL_BldgLoss": "3687.5", "sL_StrLoss": "3542.5", "sL_NStrLoss": "145", "sL_ContLoss": "19.97", "geom_point": "0101000020E61000000037AC2534AC5EC0271808E1D5284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.690704732999933, 50.320506289000051 ], [ -122.690728716999899, 50.320178289000097 ], [ -122.689792521999934, 50.320150265000052 ], [ -122.689851048999955, 50.319350037000042 ], [ -122.68959466699998, 50.319342362 ], [ -122.689629681999961, 50.318863621000041 ], [ -122.688808869999917, 50.318839042000057 ], [ -122.688843695999978, 50.318363008000098 ], [ -122.688136476999958, 50.318341826000065 ], [ -122.68818588, 50.317666671000048 ], [ -122.687586400999962, 50.317648712000071 ], [ -122.687693797999913, 50.31618118200003 ], [ -122.688211705999919, 50.316274700000093 ], [ -122.688772075999978, 50.316662098000052 ], [ -122.689143679999972, 50.31770750099999 ], [ -122.689955522999981, 50.318140501000087 ], [ -122.691044206999919, 50.319151609000052 ], [ -122.692445083999957, 50.31981110100002 ], [ -122.694113887999933, 50.320130089000038 ], [ -122.696329701999929, 50.320503152000136 ], [ -122.696317219999926, 50.320674125000039 ], [ -122.690704732999933, 50.320506289000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.991889635313867", "sL_AssetLoss": "338.949", "sL_BldgLoss": "336.2", "sL_StrLoss": "308.9", "sL_NStrLoss": "27.3", "sL_ContLoss": "2.749", "geom_point": "0101000020E6100000CCA3F2E11FAA5EC049C8D502DA294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657566677999938, 50.326559103000086 ], [ -122.658831048999943, 50.326562818000056 ], [ -122.658828578999959, 50.326907778000077 ], [ -122.658825253999922, 50.327372224000129 ], [ -122.65756086199994, 50.327368507000109 ], [ -122.65756513, 50.326774564000061 ], [ -122.657566677999938, 50.326559103000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93142001", "BldgCostT": "62290001", "sL_LossRatio": "0.994270580404803", "sL_AssetLoss": "40895.94", "sL_BldgLoss": "40661.63", "sL_StrLoss": "38749.83", "sL_NStrLoss": "1911.8", "sL_ContLoss": "234.31", "geom_point": "0101000020E6100000F526E90E60AA5EC0117BAA3B7D2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.661296501999956, 50.335473658000083 ], [ -122.66129842, 50.335203856000092 ], [ -122.660876884999951, 50.335202628000069 ], [ -122.660877614999933, 50.335100389000061 ], [ -122.660878807999964, 50.334932827000088 ], [ -122.660259400999948, 50.334931019000109 ], [ -122.658771154999954, 50.334926661000068 ], [ -122.658775018999989, 50.334387059000058 ], [ -122.658353493999968, 50.334385821000076 ], [ -122.658355429, 50.334116020000046 ], [ -122.657933906000011, 50.334114780000036 ], [ -122.657937780999973, 50.333575179000036 ], [ -122.65709474399992, 50.333572696000047 ], [ -122.657096684999956, 50.33330289400007 ], [ -122.652881524999884, 50.333290389000069 ], [ -122.652883491999958, 50.333020587000092 ], [ -122.65246197799999, 50.333019328000056 ], [ -122.652463945999912, 50.332749528000093 ], [ -122.651620923999957, 50.332747004000119 ], [ -122.651630788999952, 50.331397999000075 ], [ -122.651840939999914, 50.331398629000091 ], [ -122.652052287999965, 50.331399261000065 ], [ -122.652054256999975, 50.331129460000042 ], [ -122.65145105799995, 50.331127654000092 ], [ -122.650368272, 50.33112440300004 ], [ -122.650374209999924, 50.330315 ], [ -122.652481658999974, 50.330321317000049 ], [ -122.652483624999917, 50.330051517000086 ], [ -122.65459106099992, 50.330057795000052 ], [ -122.654589104999971, 50.330327597000043 ], [ -122.65669655399995, 50.330333836000129 ], [ -122.656698498999944, 50.330064035000134 ], [ -122.657541472999981, 50.330066521000063 ], [ -122.657543411999953, 50.32979672000004 ], [ -122.657964896999943, 50.329797961000082 ], [ -122.65796683399999, 50.32952815900012 ], [ -122.658302778999911, 50.329529147000066 ], [ -122.659652765000018, 50.329533105000081 ], [ -122.659656618999975, 50.328993502000102 ], [ -122.660078096999953, 50.328994736 ], [ -122.660080020999942, 50.328724934000057 ], [ -122.661344448999941, 50.32872862300011 ], [ -122.661336778999939, 50.329807830000092 ], [ -122.661758263999943, 50.329809056000116 ], [ -122.661746770999954, 50.331427865000052 ], [ -122.66258977199999, 50.331430315000027 ], [ -122.662587860999949, 50.331700116000114 ], [ -122.663009363999947, 50.331701337000069 ], [ -122.663011270999945, 50.331431536000089 ], [ -122.664697269999962, 50.331436410000023 ], [ -122.664701066999896, 50.33089680700003 ], [ -122.664279571999941, 50.330895591000036 ], [ -122.664283373999965, 50.330355988000065 ], [ -122.663861883999985, 50.330354771000081 ], [ -122.663863787999958, 50.330084969000097 ], [ -122.6634423, 50.330083749000082 ], [ -122.663444204999934, 50.329813949000076 ], [ -122.663022720999933, 50.329812727000032 ], [ -122.66302653599999, 50.329273125000036 ], [ -122.66260505399994, 50.329271902000137 ], [ -122.662606966999974, 50.3290021010001 ], [ -122.662185487999977, 50.329000877000055 ], [ -122.662187400999954, 50.328731075000071 ], [ -122.661765924999941, 50.328729849000077 ], [ -122.661771669999965, 50.327920446000057 ], [ -122.664171595999974, 50.32792740200005 ], [ -122.665564889999985, 50.327931417000066 ], [ -122.665561101999941, 50.328471020000073 ], [ -122.665982575999976, 50.328472232000067 ], [ -122.665980683999919, 50.328742034000108 ], [ -122.666402159999961, 50.328743244000037 ], [ -122.666400271999962, 50.329013045000053 ], [ -122.666821748999951, 50.329014253000011 ], [ -122.66681986399999, 50.329284055000059 ], [ -122.667241344, 50.329285262000099 ], [ -122.667237576999938, 50.329824865 ], [ -122.667659060999938, 50.329826071000099 ], [ -122.667657180999953, 50.330095873000062 ], [ -122.668500155999979, 50.330098278000037 ], [ -122.668498277999916, 50.330368079000053 ], [ -122.669762750999922, 50.330371678000091 ], [ -122.66976088200002, 50.330641479000057 ], [ -122.671446853999967, 50.33064625600008 ], [ -122.671444992999966, 50.330916058000099 ], [ -122.672287983999951, 50.3309184350001 ], [ -122.67228305899998, 50.331634401000024 ], [ -122.672280561, 50.331997642000047 ], [ -122.671016046, 50.331994072000121 ], [ -122.671010456999937, 50.332803476000088 ], [ -122.670588944999963, 50.332802284000067 ], [ -122.670583347999923, 50.33361168800009 ], [ -122.67016182799999, 50.333610494000048 ], [ -122.670159959999921, 50.333880295000014 ], [ -122.669738438999914, 50.333879098000068 ], [ -122.669736567999948, 50.334148900000073 ], [ -122.669315044999934, 50.334147703000021 ], [ -122.669313171999974, 50.33441750300009 ], [ -122.668891644999945, 50.334416304000122 ], [ -122.668889769999936, 50.334686107000032 ], [ -122.668468239999953, 50.334684905000074 ], [ -122.668466363999954, 50.334954706000154 ], [ -122.665094113999928, 50.334945043000083 ], [ -122.665092218999959, 50.33521484400007 ], [ -122.663827617999985, 50.335211195000106 ], [ -122.663825714999973, 50.335480997000026 ], [ -122.661296501999956, 50.335473658000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.987530987530987", "sL_AssetLoss": "2702.7", "sL_BldgLoss": "2669", "sL_StrLoss": "2550", "sL_NStrLoss": "119", "sL_ContLoss": "33.7", "geom_point": "0101000020E610000023DAAFB7E4AA5EC019F8597EC3274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.66895183699999, 50.312723376000086 ], [ -122.669042191999935, 50.311495478000118 ], [ -122.666875720999897, 50.311430176000037 ], [ -122.666908349999986, 50.3109870440001 ], [ -122.667198891999959, 50.310424099000087 ], [ -122.667190288999961, 50.309498403000056 ], [ -122.667387521999942, 50.30941099100005 ], [ -122.66787856099991, 50.309338792000062 ], [ -122.6726620109999, 50.309218193000063 ], [ -122.672530288999965, 50.311010234 ], [ -122.674696748999963, 50.311075425000084 ], [ -122.674643991999986, 50.311793609000063 ], [ -122.67462736899995, 50.312019887000091 ], [ -122.674015885999964, 50.311657505000092 ], [ -122.672794396999947, 50.31143809900005 ], [ -122.672063487999949, 50.311445306000088 ], [ -122.671007514999928, 50.311928103000056 ], [ -122.670515024999972, 50.312016404000133 ], [ -122.66983970099993, 50.312375294000041 ], [ -122.668965413999985, 50.312722801000113 ], [ -122.66895183699999, 50.312723376000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78926000", "BldgCostT": "55400000", "sL_LossRatio": "0.991560268340186", "sL_AssetLoss": "8317.8", "sL_BldgLoss": "8247.6", "sL_StrLoss": "6994", "sL_NStrLoss": "1253.6", "sL_ContLoss": "70.2", "geom_point": "0101000020E6100000DBC83337B8AB5EC0F5C67B9B1F284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.687733208999987, 50.315642616000076 ], [ -122.687735018999973, 50.3156178710001 ], [ -122.687687614999959, 50.315616451000075 ], [ -122.68762620399994, 50.315581208 ], [ -122.684973194999912, 50.315267806000087 ], [ -122.683891494999926, 50.315292004000078 ], [ -122.681811801999956, 50.31552849400007 ], [ -122.680618098999958, 50.315517096000058 ], [ -122.67994500099995, 50.315326202000094 ], [ -122.679203805999947, 50.314874798000069 ], [ -122.67839320799996, 50.314152686000071 ], [ -122.677539409999923, 50.313691190000057 ], [ -122.677007100999958, 50.31349179000005 ], [ -122.676376008999952, 50.313463400000046 ], [ -122.675830590999965, 50.313255403000042 ], [ -122.675451711999969, 50.312947807000079 ], [ -122.675224495999942, 50.312645979000095 ], [ -122.675774623999928, 50.312662522000046 ], [ -122.675778940999976, 50.312603749000118 ], [ -122.675931769999949, 50.310522555000077 ], [ -122.681542965999967, 50.310691142000024 ], [ -122.68145392, 50.311905818000071 ], [ -122.682510108999907, 50.311937520000079 ], [ -122.682501265, 50.312058186000094 ], [ -122.683922236999933, 50.31210082000009 ], [ -122.683936556, 50.311905352000068 ], [ -122.68908198299999, 50.312059578000053 ], [ -122.689464952999955, 50.313208427000049 ], [ -122.689399425999923, 50.314104386000032 ], [ -122.689767308999961, 50.314115402000063 ], [ -122.690990918999944, 50.317785467000057 ], [ -122.69087018, 50.318341909000011 ], [ -122.690868967999904, 50.318382067000123 ], [ -122.690170210999895, 50.317637689 ], [ -122.689751090999948, 50.316998190000021 ], [ -122.689137491999972, 50.316448494000085 ], [ -122.687733208999987, 50.315642616000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "0.991764678121281", "sL_AssetLoss": "2966.49", "sL_BldgLoss": "2942.06", "sL_StrLoss": "2754.36", "sL_NStrLoss": "187.7", "sL_ContLoss": "24.43", "geom_point": "0101000020E6100000EEAAE6BD9AA85EC096F000265B274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631875637999926, 50.31017023600009 ], [ -122.631999126000011, 50.308510477000077 ], [ -122.62869557499999, 50.308409768000089 ], [ -122.628811942999945, 50.306847134000073 ], [ -122.628962954999963, 50.304819106000089 ], [ -122.630465102999963, 50.304864912000042 ], [ -122.630640907999961, 50.304909588000044 ], [ -122.633194204999967, 50.305312597000096 ], [ -122.633823913999919, 50.305476404000075 ], [ -122.634537474999917, 50.305471585000141 ], [ -122.634493740999943, 50.306059895000047 ], [ -122.639629256999953, 50.306216146000054 ], [ -122.639617406999932, 50.306375810000056 ], [ -122.641147112999931, 50.306422306000044 ], [ -122.641004983, 50.308337913000081 ], [ -122.640994716999984, 50.308476278000036 ], [ -122.639641679999926, 50.308813301000029 ], [ -122.638531021999952, 50.30896290000004 ], [ -122.637192588999966, 50.309435707000077 ], [ -122.636362093999963, 50.309828792000104 ], [ -122.633861295999949, 50.30988290100003 ], [ -122.632538782, 50.31014920300003 ], [ -122.631875637999926, 50.31017023600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.995911956948518", "sL_AssetLoss": "865.94", "sL_BldgLoss": "862.4", "sL_StrLoss": "831", "sL_NStrLoss": "31.4", "sL_ContLoss": "3.54", "geom_point": "0101000020E610000067BC6BD808AB5EC0045716D8A5264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.669924385999963, 50.303661183000081 ], [ -122.670156400999986, 50.300506492000089 ], [ -122.675766333999917, 50.300675374000079 ], [ -122.675641295999966, 50.30237842300005 ], [ -122.675628332999921, 50.302377040000117 ], [ -122.675106067999948, 50.302368548000061 ], [ -122.674565720999951, 50.302453059000115 ], [ -122.673694663999981, 50.302695851000045 ], [ -122.672848374999958, 50.303022126000073 ], [ -122.672418033999946, 50.303044267000068 ], [ -122.672133337999981, 50.303131071000053 ], [ -122.672066364999978, 50.30316163 ], [ -122.671125371999906, 50.303591044 ], [ -122.669576418999895, 50.304469620000084 ], [ -122.66952087599999, 50.304469462000085 ], [ -122.669526484999921, 50.303660053000023 ], [ -122.669924385999963, 50.303661183000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.992381868340462", "sL_AssetLoss": "395.11", "sL_BldgLoss": "392.1", "sL_StrLoss": "367", "sL_NStrLoss": "25.1", "sL_ContLoss": "3.01", "geom_point": "0101000020E6100000D6183A971EA85EC0630D38C710274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.626114157999908, 50.306496443000079 ], [ -122.626120502, 50.305687038000038 ], [ -122.625699232999978, 50.305685683000085 ], [ -122.625701349999972, 50.305415881000123 ], [ -122.624858814999968, 50.305413166000072 ], [ -122.624865180999933, 50.304603760000113 ], [ -122.625707702999961, 50.304606477000107 ], [ -122.625709819999926, 50.304336675000116 ], [ -122.626552337999954, 50.304339384000116 ], [ -122.626556562999909, 50.303799780000134 ], [ -122.627820322999938, 50.303803833000082 ], [ -122.627816113999984, 50.304343437000085 ], [ -122.628237372999962, 50.304344785000104 ], [ -122.628220546999927, 50.306503198000122 ], [ -122.626114157999908, 50.306496443000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.989487010337582", "sL_AssetLoss": "2622.47", "sL_BldgLoss": "2594.9", "sL_StrLoss": "2411", "sL_NStrLoss": "183.9", "sL_ContLoss": "27.57", "geom_point": "0101000020E6100000E39CE825CCA95EC0288BF31E84274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.655372300999929, 50.310335784000074 ], [ -122.653057893, 50.310149212000084 ], [ -122.652031209999961, 50.310154899000104 ], [ -122.650111580999919, 50.309843004000044 ], [ -122.648624992999942, 50.309425702000048 ], [ -122.647105749, 50.308764383000039 ], [ -122.647142767999938, 50.308264551000072 ], [ -122.647264588999974, 50.30661965300007 ], [ -122.652875193999961, 50.30678969500012 ], [ -122.652795166999979, 50.307872084000039 ], [ -122.658227671999953, 50.308036456000103 ], [ -122.65822267, 50.308104229000058 ], [ -122.659327538999946, 50.308137627000093 ], [ -122.659174811999932, 50.310207177000088 ], [ -122.659138265999943, 50.310702378 ], [ -122.656958200999924, 50.310718912000098 ], [ -122.656367796999945, 50.310653412000114 ], [ -122.655372300999929, 50.310335784000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.991474382635469", "sL_AssetLoss": "1110.77", "sL_BldgLoss": "1101.3", "sL_StrLoss": "1044", "sL_NStrLoss": "57.3", "sL_ContLoss": "9.47", "geom_point": "0101000020E6100000919FE8156AA75EC04BA9F00C3F274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.616726558999957, 50.304684739000095 ], [ -122.61864345399999, 50.30474340000012 ], [ -122.618427678999979, 50.307632241000107 ], [ -122.618375257999915, 50.308334038000112 ], [ -122.612764591999976, 50.308162246000037 ], [ -122.612829550999948, 50.307294063000093 ], [ -122.61296690199994, 50.305458243 ], [ -122.614039017999957, 50.30535819300011 ], [ -122.615700998999941, 50.304977907000115 ], [ -122.616726558999957, 50.304684739000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99075966687501", "sL_AssetLoss": "1183.94", "sL_BldgLoss": "1173", "sL_StrLoss": "1106", "sL_NStrLoss": "67", "sL_ContLoss": "10.94", "geom_point": "0101000020E610000023A16F0365AA5EC0592C2C5575274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.663965331999975, 50.306014855000043 ], [ -122.666633450999925, 50.306095351000089 ], [ -122.666065607999911, 50.306731364 ], [ -122.665067839999921, 50.30840616200004 ], [ -122.665107896, 50.308577168000042 ], [ -122.664469979999978, 50.308770594000094 ], [ -122.663950006, 50.309102397000089 ], [ -122.662300617999932, 50.309888597000111 ], [ -122.660468795, 50.310585006000061 ], [ -122.659651416999949, 50.31069019300007 ], [ -122.659379586999989, 50.310681979000073 ], [ -122.659417306999956, 50.310170839000115 ], [ -122.659644548999935, 50.307091253000074 ], [ -122.66387659499999, 50.307219065000048 ], [ -122.663965331999975, 50.306014855000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29438744", "BldgCostT": "15494076", "sL_LossRatio": "0.768497515194542", "sL_AssetLoss": "23100.4", "sL_BldgLoss": "17752.6", "sL_StrLoss": "13177.6", "sL_NStrLoss": "4575", "sL_ContLoss": "5347.8", "geom_point": "0101000020E61000000EEB217596AE5EC0CC19DD8308284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.727172234999927, 50.315411348000055 ], [ -122.7271737799999, 50.315141544000056 ], [ -122.726752420999958, 50.315140555000077 ], [ -122.726753967999969, 50.314870751000043 ], [ -122.725911255999932, 50.314868767000043 ], [ -122.725911637999971, 50.314802517000068 ], [ -122.725136407999926, 50.314779556000069 ], [ -122.725189722999957, 50.312584093000055 ], [ -122.72523045299998, 50.310242772 ], [ -122.725235563999931, 50.309949379000052 ], [ -122.725331528999973, 50.309925093000075 ], [ -122.72568409199999, 50.309835917000058 ], [ -122.726348291999969, 50.309788120000071 ], [ -122.726867834999908, 50.309815214000075 ], [ -122.727935949999932, 50.309857608000137 ], [ -122.728165588999943, 50.30985162300005 ], [ -122.728921997999976, 50.309831908000021 ], [ -122.729477518999929, 50.309779437000024 ], [ -122.730510609999911, 50.30968186800002 ], [ -122.730540251999955, 50.31019793900002 ], [ -122.730578190999935, 50.310858581000083 ], [ -122.730568897999959, 50.310858306000036 ], [ -122.730544647, 50.315149405000113 ], [ -122.730123288999934, 50.315148427000096 ], [ -122.730121980999954, 50.315379318000076 ], [ -122.730043294999973, 50.315418050000105 ], [ -122.729700398999938, 50.315417253000128 ], [ -122.729699435999962, 50.315587309000122 ], [ -122.729497738999967, 50.31568659 ], [ -122.729277505999931, 50.315686077000066 ], [ -122.72927688599998, 50.315795477000073 ], [ -122.728975815999888, 50.315955181000049 ], [ -122.728433243999973, 50.315953914000033 ], [ -122.72843170599999, 50.316223719000064 ], [ -122.728010338, 50.316222734000092 ], [ -122.728008939999967, 50.316468053000079 ], [ -122.727962982999898, 50.316492430000054 ], [ -122.726744689, 50.316489574000052 ], [ -122.726750875, 50.315410358000122 ], [ -122.727172234999927, 50.315411348000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46738969", "BldgCostT": "30239385", "sL_LossRatio": "0.926706087816531", "sL_AssetLoss": "22972.44", "sL_BldgLoss": "21288.7", "sL_StrLoss": "19046", "sL_NStrLoss": "2242.7", "sL_ContLoss": "1683.74", "geom_point": "0101000020E610000085359DB629AE5EC0214FD4CAEB284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.719959973999977, 50.323758226000038 ], [ -122.719961559999931, 50.323488423000079 ], [ -122.719540126999945, 50.323487407000059 ], [ -122.719543301999977, 50.322947801000097 ], [ -122.719121876, 50.322946784000123 ], [ -122.719133006, 50.321058160000028 ], [ -122.71786877599996, 50.321055099000041 ], [ -122.717870371999936, 50.320785296000061 ], [ -122.717737954999976, 50.320784975000024 ], [ -122.717732278000014, 50.32021759000002 ], [ -122.717669678999954, 50.31784802900011 ], [ -122.717665181999948, 50.317218354000069 ], [ -122.718589369999975, 50.317160063000109 ], [ -122.721997078999919, 50.31700519000006 ], [ -122.722543135999956, 50.317045973000127 ], [ -122.724804605999978, 50.317071453000089 ], [ -122.725080575000021, 50.317078357000121 ], [ -122.725691654999977, 50.317077042000108 ], [ -122.725564389999988, 50.31889634700012 ], [ -122.72508932199996, 50.318939895000085 ], [ -122.72507357, 50.320055883000116 ], [ -122.724060259999987, 50.320025865000076 ], [ -122.72397889599992, 50.321149955000159 ], [ -122.722082711999946, 50.32109375900005 ], [ -122.722075010999973, 50.322414266000095 ], [ -122.722496433999964, 50.32241527200005 ], [ -122.722491721000026, 50.323224682000067 ], [ -122.722070292999916, 50.323223675000065 ], [ -122.722067143999979, 50.323763282000073 ], [ -122.72164795499999, 50.32376227900005 ], [ -122.719959973999977, 50.323758226000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52548917", "BldgCostT": "35821667", "sL_LossRatio": "0.896959714869408", "sL_AssetLoss": "41401.38", "sL_BldgLoss": "37135.37", "sL_StrLoss": "32550.27", "sL_NStrLoss": "4585.1", "sL_ContLoss": "4266.01", "geom_point": "0101000020E6100000263DA982D3B25EC0DEA2FE40DA284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.792673481999941, 50.320561892000093 ], [ -122.792665009999894, 50.318757897000054 ], [ -122.792663023999978, 50.318108588000072 ], [ -122.792662586999981, 50.317964712000084 ], [ -122.792662501, 50.317939197000022 ], [ -122.792663397999974, 50.317775836000116 ], [ -122.792667501999929, 50.317035305000047 ], [ -122.795289605999955, 50.317016885000079 ], [ -122.795282316999973, 50.317465731000041 ], [ -122.795281210999917, 50.317532993000128 ], [ -122.795271817999932, 50.317963603000159 ], [ -122.795273014999935, 50.318104244000097 ], [ -122.795273303999934, 50.31814 ], [ -122.79528770499995, 50.318989612000131 ], [ -122.795302989999954, 50.31980599300006 ], [ -122.79531576699999, 50.320514616000068 ], [ -122.79531669899994, 50.320566504000041 ], [ -122.797639197999928, 50.320570892000092 ], [ -122.797793683999956, 50.320872211000101 ], [ -122.792607981999979, 50.321078253000067 ], [ -122.792673481999941, 50.320561892000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994212484497726", "sL_AssetLoss": "338.66", "sL_BldgLoss": "336.7", "sL_StrLoss": "321", "sL_NStrLoss": "15.7", "sL_ContLoss": "1.96", "geom_point": "0101000020E61000002D572699E8B35EC0B83ECD45D3294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.810977409999978, 50.327179484000055 ], [ -122.810978480999935, 50.326909679000117 ], [ -122.810557014999944, 50.326908994000092 ], [ -122.810560232999975, 50.326099579000079 ], [ -122.810591169999981, 50.326099629000019 ], [ -122.811208309, 50.32655298300012 ], [ -122.811528635999977, 50.326756508000152 ], [ -122.811748875999953, 50.3270237340001 ], [ -122.811812802, 50.327144999000062 ], [ -122.811831715, 50.327180870000056 ], [ -122.810977409999978, 50.327179484000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "240508870", "BldgCostT": "156681833", "sL_LossRatio": "0.95653654817583", "sL_AssetLoss": "115792.92", "sL_BldgLoss": "110760.16", "sL_StrLoss": "91074.76", "sL_NStrLoss": "19685.4", "sL_ContLoss": "5032.76", "geom_point": "0101000020E61000000030438850B35EC0FD82F50347294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.802731669999957, 50.328206490000099 ], [ -122.802696696999959, 50.32646103900008 ], [ -122.802695777999972, 50.3264610290001 ], [ -122.802450054999923, 50.326454880000057 ], [ -122.798034926999918, 50.326271288000072 ], [ -122.798035840999916, 50.325644359000137 ], [ -122.798339771999977, 50.325653158000101 ], [ -122.798340253999953, 50.325539415000101 ], [ -122.798035993999989, 50.325538887000086 ], [ -122.798036707999984, 50.325048796000054 ], [ -122.79803792899996, 50.324818247000046 ], [ -122.798039191999962, 50.324576591000074 ], [ -122.79804529399999, 50.32406298500009 ], [ -122.798060880999969, 50.32274996000011 ], [ -122.798062664000014, 50.32259697700006 ], [ -122.798066405999947, 50.322282219000037 ], [ -122.798068421999986, 50.322111346000064 ], [ -122.798071178999962, 50.321878791000124 ], [ -122.798048296999951, 50.321248402000052 ], [ -122.797999786999981, 50.320998718000062 ], [ -122.79790310199995, 50.320776406000142 ], [ -122.797793683999956, 50.320872211000101 ], [ -122.797639197999928, 50.320570892000092 ], [ -122.79531669899994, 50.320566504000041 ], [ -122.79531576699999, 50.320514616000068 ], [ -122.795302989999954, 50.31980599300006 ], [ -122.79528770499995, 50.318989612000131 ], [ -122.795273303999934, 50.31814 ], [ -122.795273014999935, 50.318104244000097 ], [ -122.795271817999932, 50.317963603000159 ], [ -122.795281210999917, 50.317532993000128 ], [ -122.795282316999973, 50.317465731000041 ], [ -122.795289605999955, 50.317016885000079 ], [ -122.792667501999929, 50.317035305000047 ], [ -122.792676693999923, 50.316112190000069 ], [ -122.792677796999897, 50.315999677000029 ], [ -122.792679665000023, 50.315812196000095 ], [ -122.793501869999915, 50.315816258000112 ], [ -122.794148191999938, 50.315881766000118 ], [ -122.79458606499999, 50.315952041000074 ], [ -122.79545968199993, 50.316203173000069 ], [ -122.79608199499999, 50.316479507000111 ], [ -122.796438615999946, 50.316637861000054 ], [ -122.796885506999899, 50.316836289000094 ], [ -122.79695506899999, 50.316867195000029 ], [ -122.79697685099994, 50.316876843000095 ], [ -122.797599664999964, 50.317016337000084 ], [ -122.797993799000011, 50.317108708000035 ], [ -122.798443225999932, 50.317175704000121 ], [ -122.798448635999961, 50.317337783000021 ], [ -122.798525800999968, 50.31747945900004 ], [ -122.798718416999975, 50.317637970000142 ], [ -122.799127052999978, 50.317784728000106 ], [ -122.800020810999939, 50.31811889600003 ], [ -122.800215592, 50.318191709000082 ], [ -122.80127352399991, 50.318587206000103 ], [ -122.801925998999963, 50.318833175000073 ], [ -122.802528068999962, 50.319060116000067 ], [ -122.803019486, 50.319245331000012 ], [ -122.803979797999958, 50.319607296000093 ], [ -122.804821409999988, 50.319915013000056 ], [ -122.805144717999937, 50.320075499000069 ], [ -122.805311892999967, 50.320257484000066 ], [ -122.805430899999976, 50.320503897000037 ], [ -122.80541378400001, 50.320646400000072 ], [ -122.805073704, 50.321719696000073 ], [ -122.804961018999933, 50.321920598000141 ], [ -122.805117806999974, 50.321911697000189 ], [ -122.805266285999963, 50.321977993000154 ], [ -122.805274202999982, 50.322063230000026 ], [ -122.80527510099995, 50.322072708000135 ], [ -122.805532984999985, 50.322109675000029 ], [ -122.805736687999939, 50.322138909000032 ], [ -122.806068606999972, 50.322186490000014 ], [ -122.806304219999944, 50.322215812000131 ], [ -122.806959752999887, 50.322302571000137 ], [ -122.807739093999956, 50.322405693000057 ], [ -122.807549084, 50.322925597000037 ], [ -122.807522115999987, 50.323189289000034 ], [ -122.807597472999959, 50.323458809000087 ], [ -122.807645590999982, 50.323630916000063 ], [ -122.808218507999968, 50.3247799950001 ], [ -122.808445907999939, 50.324944900000105 ], [ -122.808802, 50.325139584000084 ], [ -122.809746081999918, 50.325642114000061 ], [ -122.809723336000019, 50.32596476800007 ], [ -122.809573262999919, 50.325960439000056 ], [ -122.80953955499993, 50.326438572000072 ], [ -122.809318091999955, 50.326432183000037 ], [ -122.809258993999961, 50.327270376000101 ], [ -122.809119143999936, 50.32726634200008 ], [ -122.809091409999951, 50.32765968000006 ], [ -122.803477644999973, 50.327497565000087 ], [ -122.80349527499996, 50.327247987000099 ], [ -122.802800808999933, 50.327227912000069 ], [ -122.802731669999957, 50.328206490000099 ] ], [ [ -122.802838295999948, 50.325978591000094 ], [ -122.802868774999951, 50.325547182000086 ], [ -122.802133325999947, 50.325545931000079 ], [ -122.802134446000011, 50.325276127000031 ], [ -122.801712994999889, 50.325275409000049 ], [ -122.801711872999959, 50.32554521400008 ], [ -122.801290421999923, 50.325544494000027 ], [ -122.801289296, 50.325814299000044 ], [ -122.799249215999922, 50.325810795000052 ], [ -122.799244700999964, 50.325874641000013 ], [ -122.802838295999948, 50.325978591000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17359583", "BldgCostT": "11708333", "sL_LossRatio": "0.975502827002219", "sL_AssetLoss": "18977.7", "sL_BldgLoss": "18512.8", "sL_StrLoss": "16840", "sL_NStrLoss": "1672.8", "sL_ContLoss": "464.9", "geom_point": "0101000020E6100000C88F0087B3BC5EC0EB79AB6CA7134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94682042599996, 50.154409145000066 ], [ -122.946842717, 50.154077417000082 ], [ -122.94625522699999, 50.154061131000105 ], [ -122.946395814999946, 50.151969131000037 ], [ -122.94825949299991, 50.152478590000065 ], [ -122.948647696999942, 50.152601801000074 ], [ -122.94883060599993, 50.152694197000045 ], [ -122.951226988999935, 50.153962625000105 ], [ -122.95125189499997, 50.153975796000118 ], [ -122.951413130999953, 50.154068087000056 ], [ -122.952099179999919, 50.154482840000028 ], [ -122.952225632999927, 50.154558830000084 ], [ -122.94682042599996, 50.154409145000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51891834", "BldgCostT": "32423334", "sL_LossRatio": "0.880426958745456", "sL_AssetLoss": "34482.02", "sL_BldgLoss": "30358.9", "sL_StrLoss": "26733", "sL_NStrLoss": "3625.9", "sL_ContLoss": "4123.12", "geom_point": "0101000020E6100000DF9B6369F5BD5EC06B8355ED01144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963449263, 50.157417778000102 ], [ -122.963544155999926, 50.155997850000055 ], [ -122.963521633999946, 50.155997843000058 ], [ -122.963371129999956, 50.156087795000147 ], [ -122.964105160999964, 50.15562615700005 ], [ -122.9643925069999, 50.155556551000082 ], [ -122.964980809999986, 50.155498598000101 ], [ -122.965383238999934, 50.155596920000086 ], [ -122.965817321999921, 50.15583579000004 ], [ -122.966263242999943, 50.155968718000096 ], [ -122.966621914999962, 50.155978815000012 ], [ -122.966909092999956, 50.155927346000041 ], [ -122.96721321499993, 50.155738326000041 ], [ -122.967317384999916, 50.155588841000075 ], [ -122.967578793999976, 50.155400478000068 ], [ -122.967938589999946, 50.155274682000041 ], [ -122.968929749999958, 50.15505400100006 ], [ -122.969150170999967, 50.154921491000081 ], [ -122.971644460999954, 50.155033657000025 ], [ -122.972346164999919, 50.154265381000123 ], [ -122.972191250999984, 50.156590238000071 ], [ -122.971950174999932, 50.15658361100003 ], [ -122.971912871999962, 50.157143343000094 ], [ -122.96907636499999, 50.157065338000095 ], [ -122.969042579999908, 50.157571812000057 ], [ -122.963449263, 50.157417778000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "237966720", "BldgCostT": "154865413", "sL_LossRatio": "0.925471265739962", "sL_AssetLoss": "76597.866", "sL_BldgLoss": "70889.124", "sL_StrLoss": "64874.864", "sL_NStrLoss": "6014.26", "sL_ContLoss": "5708.742", "geom_point": "0101000020E61000008949B16986BB5EC043B60C9B75144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92489533399997, 50.165436364000136 ], [ -122.924883540999971, 50.165422776000121 ], [ -122.924608356999983, 50.165422598000106 ], [ -122.92460885499996, 50.165106296000054 ], [ -122.924600232999936, 50.165096364000078 ], [ -122.924577676999931, 50.16467282500011 ], [ -122.92487709599996, 50.163958145 ], [ -122.925030950999925, 50.163793302000037 ], [ -122.925031020999967, 50.163748668000053 ], [ -122.925117081999957, 50.163641007000066 ], [ -122.925860983999939, 50.162937497000073 ], [ -122.926189610999984, 50.162429293000102 ], [ -122.926258951999969, 50.162185890000046 ], [ -122.926293516, 50.162185912000034 ], [ -122.926293702999942, 50.162063906000107 ], [ -122.926342194999904, 50.161893700000078 ], [ -122.926362699999984, 50.161740436000073 ], [ -122.926676693999951, 50.15939289700006 ], [ -122.926810508999964, 50.159008893000134 ], [ -122.927006279999901, 50.158537489000018 ], [ -122.927456701999944, 50.157885199000127 ], [ -122.927955194999981, 50.157412305000044 ], [ -122.928480101999966, 50.157045488000051 ], [ -122.928997496999955, 50.15671853300011 ], [ -122.929356980999913, 50.15649133800013 ], [ -122.931038074999918, 50.155428890000039 ], [ -122.932308512999967, 50.154663601 ], [ -122.932915513999959, 50.154222497000042 ], [ -122.933025054999973, 50.154122140000055 ], [ -122.933024713999927, 50.154365375000062 ], [ -122.933864610999947, 50.154365857000101 ], [ -122.933864402999959, 50.154516553000072 ], [ -122.934136934999984, 50.154607464000058 ], [ -122.934185462999977, 50.15463585400007 ], [ -122.934284188999968, 50.154635910000053 ], [ -122.93428411099994, 50.154693561000023 ], [ -122.93459813399997, 50.154877264000056 ], [ -122.934615406, 50.154905911000114 ], [ -122.935123724000036, 50.154906195000137 ], [ -122.935119708999963, 50.157874151000094 ], [ -122.934699728999973, 50.157873915000025 ], [ -122.934698625999943, 50.158683357000065 ], [ -122.934278640999963, 50.158683121000045 ], [ -122.934277530999964, 50.159492563000121 ], [ -122.933857538999945, 50.159492324000098 ], [ -122.933857165999939, 50.159762138000069 ], [ -122.933218489999959, 50.159761772000124 ], [ -122.933151432999978, 50.159842864000076 ], [ -122.933017028, 50.159867144000053 ], [ -122.933016797999954, 50.160031470000028 ], [ -122.932176801999901, 50.160030983000048 ], [ -122.932175657999935, 50.160840425000124 ], [ -122.931755652999968, 50.160840179000054 ], [ -122.931752578999948, 50.162998690000045 ], [ -122.931332555999958, 50.162998442000053 ], [ -122.931332168999958, 50.163268255000027 ], [ -122.93091214199994, 50.163268006000038 ], [ -122.930911753999979, 50.163537821000048 ], [ -122.930177796999956, 50.163537382000086 ], [ -122.930071616999967, 50.16359321700007 ], [ -122.930071302999977, 50.163807132000095 ], [ -122.92966527899992, 50.163806886000039 ], [ -122.929651263, 50.163814258000102 ], [ -122.929650481999929, 50.164346506000101 ], [ -122.92923044599999, 50.164346250000101 ], [ -122.929230045999944, 50.164616063000054 ], [ -122.928452511, 50.164615587000171 ], [ -122.928389889999934, 50.164670084000115 ], [ -122.928389567999915, 50.164885363000067 ], [ -122.928235520999976, 50.164885268000084 ], [ -122.928052234999939, 50.165102463000039 ], [ -122.927969158999971, 50.165130880000028 ], [ -122.927969121999965, 50.165154917000066 ], [ -122.92789901399999, 50.165154873000027 ], [ -122.927803733999937, 50.165187464000084 ], [ -122.926519833999947, 50.165215564000036 ], [ -122.926288796, 50.16525581300003 ], [ -122.92628853799998, 50.165423676000096 ], [ -122.925933628999971, 50.165423451000059 ], [ -122.925709232999978, 50.165529964000072 ], [ -122.925385933999962, 50.165597564000066 ], [ -122.925060534999957, 50.165556064000043 ], [ -122.92489533399997, 50.165436364000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92336450", "BldgCostT": "60312213", "sL_LossRatio": "0.959947308799676", "sL_AssetLoss": "73181.1", "sL_BldgLoss": "70250", "sL_StrLoss": "64781.6", "sL_NStrLoss": "5468.4", "sL_ContLoss": "2931.1", "geom_point": "0101000020E6100000CDA63362ACBD5EC01D9207E06E134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.961999648999949, 50.156267169000053 ], [ -122.961999863999893, 50.155997355000061 ], [ -122.961978016999964, 50.155997348000035 ], [ -122.960739973999949, 50.155996936000108 ], [ -122.96074036499995, 50.155521205000063 ], [ -122.960563492999967, 50.155516325000043 ], [ -122.957686245999923, 50.155436898000033 ], [ -122.958144988999891, 50.155277501000057 ], [ -122.958618480999931, 50.155047708 ], [ -122.960513378999963, 50.153943912000123 ], [ -122.961207794999922, 50.153404308000091 ], [ -122.961887097999949, 50.152631304000124 ], [ -122.961915839999932, 50.152587467000068 ], [ -122.96199941699993, 50.152459906000075 ], [ -122.962146014999973, 50.15194210100011 ], [ -122.96244011099999, 50.15089578200007 ], [ -122.96245299499995, 50.15074501500002 ], [ -122.962451437999974, 50.150736051000138 ], [ -122.962393415999941, 50.150407024000046 ], [ -122.96234939499999, 50.150157307 ], [ -122.962301227999916, 50.149935598000084 ], [ -122.961894004999948, 50.149155091000061 ], [ -122.961439914, 50.148530807000022 ], [ -122.962143351999885, 50.14836586800007 ], [ -122.962768908999919, 50.14821918900001 ], [ -122.963484596999933, 50.148051804000097 ], [ -122.964362510999962, 50.147846605000076 ], [ -122.964809082999949, 50.147660107000064 ], [ -122.96518631399999, 50.147464497000122 ], [ -122.965406027999961, 50.147320307000044 ], [ -122.966438601999968, 50.148070296000114 ], [ -122.966735097, 50.148307894000034 ], [ -122.966876197999937, 50.14854388800012 ], [ -122.967051989999959, 50.149099301000035 ], [ -122.967013322999961, 50.149529273000056 ], [ -122.967000417999927, 50.149672689000049 ], [ -122.966997890999949, 50.149700611000128 ], [ -122.966969405999947, 50.149834219000063 ], [ -122.966962020999958, 50.149868799000053 ], [ -122.966928617999912, 50.150025302000088 ], [ -122.966732416999889, 50.150426607000064 ], [ -122.966490791999945, 50.150919210000112 ], [ -122.966457905999931, 50.151349308000086 ], [ -122.966553801999964, 50.152324514000099 ], [ -122.966446495999946, 50.152631900000038 ], [ -122.96612010399997, 50.153009796000056 ], [ -122.964530602999943, 50.15457649700005 ], [ -122.964476712999954, 50.154628902000134 ], [ -122.962510117999969, 50.15569684600014 ], [ -122.962206199, 50.155861902000069 ], [ -122.962464809999958, 50.156052020000082 ], [ -122.962864130999961, 50.156161323000106 ], [ -122.962962490999985, 50.156157512000021 ], [ -122.96280957399992, 50.156267431000082 ], [ -122.961999648999949, 50.156267169000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148610387", "BldgCostT": "103612080", "sL_LossRatio": "0.96797795686324", "sL_AssetLoss": "19968.12", "sL_BldgLoss": "19328.7", "sL_StrLoss": "12011", "sL_NStrLoss": "7317.7", "sL_ContLoss": "639.42", "geom_point": "0101000020E6100000290669426ABD5EC0E93CF05266134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959903476999955, 50.151899345000061 ], [ -122.959903482999934, 50.1518914070001 ], [ -122.959457066999988, 50.151879085000061 ], [ -122.959541691999945, 50.150614305000062 ], [ -122.959033532999982, 50.150600276000048 ], [ -122.959105766999926, 50.149520824000021 ], [ -122.959065653999986, 50.149520811000095 ], [ -122.959065883999955, 50.14925099700006 ], [ -122.958645979999929, 50.149250847000133 ], [ -122.958646910999946, 50.148171589000128 ], [ -122.959196034999977, 50.148171783000073 ], [ -122.959273893, 50.147008122000024 ], [ -122.960114283999971, 50.147031321000036 ], [ -122.959976281999928, 50.146822981000064 ], [ -122.959907720999936, 50.146822958000016 ], [ -122.95990780799994, 50.146719602000083 ], [ -122.95961876399997, 50.146283227000019 ], [ -122.959488294999957, 50.146283183000065 ], [ -122.959488459999974, 50.146086500000067 ], [ -122.959370933999949, 50.145909063000055 ], [ -122.959483834999958, 50.145914863000073 ], [ -122.959488606999983, 50.145913082000099 ], [ -122.95948867099996, 50.145837889000049 ], [ -122.961287743999947, 50.148320836000053 ], [ -122.961439914, 50.148530807000022 ], [ -122.961894004999948, 50.149155091000061 ], [ -122.962301227999916, 50.149935598000084 ], [ -122.96234939499999, 50.150157307 ], [ -122.962393415999941, 50.150407024000046 ], [ -122.962451437999974, 50.150736051000138 ], [ -122.96245299499995, 50.15074501500002 ], [ -122.96244011099999, 50.15089578200007 ], [ -122.962146014999973, 50.15194210100011 ], [ -122.96199941699993, 50.152459906000075 ], [ -122.961915839999932, 50.152587467000068 ], [ -122.961887097999949, 50.152631304000124 ], [ -122.961207794999922, 50.153404308000091 ], [ -122.960513378999963, 50.153943912000123 ], [ -122.958618480999931, 50.155047708 ], [ -122.958144988999891, 50.155277501000057 ], [ -122.957686245999923, 50.155436898000033 ], [ -122.95647712899999, 50.155403498000062 ], [ -122.956717715999943, 50.151811372000068 ], [ -122.959903476999955, 50.151899345000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.982606900951273", "sL_AssetLoss": "1065.94", "sL_BldgLoss": "1047.4", "sL_StrLoss": "986", "sL_NStrLoss": "61.4", "sL_ContLoss": "18.54", "geom_point": "0101000020E6100000CBB780C8C9BC5EC0195E418194134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.951226988999935, 50.153962625000105 ], [ -122.94883060599993, 50.152694197000045 ], [ -122.948647696999942, 50.152601801000074 ], [ -122.94825949299991, 50.152478590000065 ], [ -122.946395814999946, 50.151969131000037 ], [ -122.946415450999893, 50.151676899000094 ], [ -122.946598789999882, 50.151664608 ], [ -122.947004810999914, 50.151960889000087 ], [ -122.947900607999898, 50.152158787000083 ], [ -122.94892309599993, 50.152033501000119 ], [ -122.949272980999936, 50.152051994000026 ], [ -122.94974800199999, 50.152493489000065 ], [ -122.950378088999969, 50.152681491000109 ], [ -122.950642894999973, 50.153068906 ], [ -122.951202611999946, 50.153231307000091 ], [ -122.951621677, 50.153887798000063 ], [ -122.951704344999939, 50.153912993000084 ], [ -122.951888205999964, 50.153969010000054 ], [ -122.952453936999973, 50.153958366000062 ], [ -122.95241331699999, 50.15456402300007 ], [ -122.952225632999927, 50.154558830000084 ], [ -122.952099179999919, 50.154482840000028 ], [ -122.951413130999953, 50.154068087000056 ], [ -122.95125189499997, 50.153975796000118 ], [ -122.951226988999935, 50.153962625000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15358333", "BldgCostT": "8908333", "sL_LossRatio": "0.691541143978141", "sL_AssetLoss": "8823.77", "sL_BldgLoss": "6102", "sL_StrLoss": "4269.4", "sL_NStrLoss": "1832.6", "sL_ContLoss": "2721.77", "geom_point": "0101000020E6100000D355ECF54FBB5EC067342C254F144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.926293702999942, 50.162063906000107 ], [ -122.926293930999947, 50.16191609800007 ], [ -122.925929377, 50.161915866000093 ], [ -122.925881198999932, 50.161456105000127 ], [ -122.92587463299995, 50.161452624000056 ], [ -122.925874750999981, 50.161376203 ], [ -122.925737306999935, 50.161376116000071 ], [ -122.925737371999944, 50.161379873000101 ], [ -122.925574785999942, 50.161293697000076 ], [ -122.924734596999912, 50.161337886000126 ], [ -122.924160302999894, 50.16150879100006 ], [ -122.923543488999954, 50.161813498000065 ], [ -122.92340330199994, 50.161769403000058 ], [ -122.92284490099999, 50.161192608000128 ], [ -122.922845293999927, 50.160590102000029 ], [ -122.92287341299999, 50.160518902000064 ], [ -122.92403610299999, 50.160393595000095 ], [ -122.924596718, 50.159989105000086 ], [ -122.924933510999921, 50.159486900000047 ], [ -122.924964762999977, 50.159486920000042 ], [ -122.92503779899999, 50.159414722000058 ], [ -122.925037929999974, 50.15933119400006 ], [ -122.925452489999884, 50.158713009000117 ], [ -122.926704520999976, 50.157135515000071 ], [ -122.926721277999917, 50.157119391000094 ], [ -122.926721281999988, 50.157117246000034 ], [ -122.927064382999959, 50.156843100000096 ], [ -122.927848816999969, 50.156484196000051 ], [ -122.929305601999928, 50.156115293000092 ], [ -122.929739706999925, 50.155774898000068 ], [ -122.930227131, 50.155173172000026 ], [ -122.930272273999918, 50.155173199000011 ], [ -122.930504183999943, 50.154944840000084 ], [ -122.93050435, 50.154830937000035 ], [ -122.930882473999958, 50.154364120000096 ], [ -122.930924972999918, 50.154364146000027 ], [ -122.93092500099999, 50.154345285000012 ], [ -122.931073221999952, 50.154309401000098 ], [ -122.931814274999951, 50.15445319700008 ], [ -122.932275904999969, 50.154426188000073 ], [ -122.932669489999981, 50.154175495000082 ], [ -122.932747805999938, 50.15409540100012 ], [ -122.93302509099999, 50.154095561000098 ], [ -122.933025054999973, 50.154122140000055 ], [ -122.932915513999959, 50.154222497000042 ], [ -122.932308512999967, 50.154663601 ], [ -122.931038074999918, 50.155428890000039 ], [ -122.929356980999913, 50.15649133800013 ], [ -122.928997496999955, 50.15671853300011 ], [ -122.928480101999966, 50.157045488000051 ], [ -122.927955194999981, 50.157412305000044 ], [ -122.927456701999944, 50.157885199000127 ], [ -122.927006279999901, 50.158537489000018 ], [ -122.926810508999964, 50.159008893000134 ], [ -122.926676693999951, 50.15939289700006 ], [ -122.926362699999984, 50.161740436000073 ], [ -122.926342194999904, 50.161893700000078 ], [ -122.926293702999942, 50.162063906000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41497083", "BldgCostT": "25518333", "sL_LossRatio": "0.818889233520043", "sL_AssetLoss": "46039.56", "sL_BldgLoss": "37701.3", "sL_StrLoss": "29557.2", "sL_NStrLoss": "8144.1", "sL_ContLoss": "8338.26", "geom_point": "0101000020E6100000C3469C25F3BC5EC06E91385421124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.94479444599996, 50.14465823900008 ], [ -122.944795067999962, 50.144118610000085 ], [ -122.944016832999978, 50.1441182370001 ], [ -122.943607969999945, 50.143778401000084 ], [ -122.944382452999932, 50.143270379000022 ], [ -122.944711741999939, 50.143121191000027 ], [ -122.945729695, 50.142562227000084 ], [ -122.948000925999963, 50.141753077000033 ], [ -122.947861084999914, 50.141563978000171 ], [ -122.948165572999983, 50.141196678000043 ], [ -122.94847090799999, 50.140951353000105 ], [ -122.948577314999952, 50.140836303000107 ], [ -122.948577264999983, 50.140882565 ], [ -122.949416925999913, 50.140882935000072 ], [ -122.949417778999972, 50.140073490000056 ], [ -122.951097070999978, 50.140074209000048 ], [ -122.951097533999942, 50.139620784000094 ], [ -122.951061636999952, 50.139619790000054 ], [ -122.951085450999955, 50.139264759000113 ], [ -122.95067808099995, 50.139264587000049 ], [ -122.950677802999977, 50.13953440100007 ], [ -122.949482774999979, 50.139533888000123 ], [ -122.949534312, 50.139450263000072 ], [ -122.949947787999989, 50.139180012000068 ], [ -122.950044116999919, 50.139163806000042 ], [ -122.95101408499994, 50.138743052000109 ], [ -122.951135915999899, 50.138690199000031 ], [ -122.95149440199999, 50.138627290000088 ], [ -122.952143523999936, 50.13832309 ], [ -122.952288118999945, 50.138212202000076 ], [ -122.95274581299995, 50.137861198000067 ], [ -122.953612060999959, 50.137442485000065 ], [ -122.954427783999918, 50.137373018000041 ], [ -122.954438148999927, 50.137385107000036 ], [ -122.954479994999986, 50.137434089000074 ], [ -122.95533623099999, 50.138181963000058 ], [ -122.955525273999982, 50.138347084000031 ], [ -122.955682065999909, 50.138484047000077 ], [ -122.955716065999965, 50.13851376700007 ], [ -122.955994792999917, 50.138757214000101 ], [ -122.956420792999936, 50.139296200000139 ], [ -122.956563808999974, 50.139878590000116 ], [ -122.956629111999987, 50.141204814000076 ], [ -122.956672333999947, 50.14140125400008 ], [ -122.956762220999963, 50.141809501000104 ], [ -122.957027922999984, 50.142442999000096 ], [ -122.957168710999923, 50.142641303000055 ], [ -122.95783666199992, 50.14355932000008 ], [ -122.95816010399993, 50.144003801000089 ], [ -122.958230562999987, 50.14410093 ], [ -122.95823054099999, 50.14412421800003 ], [ -122.956970964999954, 50.14412375800007 ], [ -122.956970723999987, 50.14439357300008 ], [ -122.956131001, 50.14439325900004 ], [ -122.956130754999919, 50.144663074000043 ], [ -122.954031437999959, 50.14466226200004 ], [ -122.954031696999976, 50.144392447000044 ], [ -122.953611836, 50.144392280000012 ], [ -122.953612096999962, 50.144122466000113 ], [ -122.95354521299997, 50.144122439000064 ], [ -122.953494491999933, 50.144879121000038 ], [ -122.952998599999916, 50.144865401000061 ], [ -122.952932491999903, 50.144831300000064 ], [ -122.95222060899999, 50.143653503000031 ], [ -122.951604382999918, 50.14335579300004 ], [ -122.951129907999984, 50.143491105000088 ], [ -122.950640480999937, 50.143310199000034 ], [ -122.95019139799993, 50.143464001000048 ], [ -122.94858241299994, 50.143318802000046 ], [ -122.947994469999969, 50.143359032000021 ], [ -122.948033953999968, 50.142771029000123 ], [ -122.947735546999951, 50.142770896000073 ], [ -122.947734714999967, 50.143534870000117 ], [ -122.947680969999922, 50.143580315000037 ], [ -122.946475102999983, 50.14357976600013 ], [ -122.946474501, 50.144119396000093 ], [ -122.946054643999943, 50.144119202000056 ], [ -122.946054034999975, 50.144658831000136 ], [ -122.94479444599996, 50.14465823900008 ] ], [ [ -122.951098089999959, 50.139076332000073 ], [ -122.951103547999978, 50.138994951000086 ], [ -122.951098171999945, 50.138994949000057 ], [ -122.951098089999959, 50.139076332000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70698084", "BldgCostT": "42173334", "sL_LossRatio": "0.718460978081845", "sL_AssetLoss": "126288", "sL_BldgLoss": "90733", "sL_StrLoss": "56599", "sL_NStrLoss": "34134", "sL_ContLoss": "35555", "geom_point": "0101000020E6100000D871F4DF60BD5EC075C09E44BE114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.956762220999963, 50.141809501000104 ], [ -122.956672333999947, 50.14140125400008 ], [ -122.956629111999987, 50.141204814000076 ], [ -122.956563808999974, 50.139878590000116 ], [ -122.956420792999936, 50.139296200000139 ], [ -122.955994792999917, 50.138757214000101 ], [ -122.955716065999965, 50.13851376700007 ], [ -122.955682065999909, 50.138484047000077 ], [ -122.955525273999982, 50.138347084000031 ], [ -122.95533623099999, 50.138181963000058 ], [ -122.954479994999986, 50.137434089000074 ], [ -122.954438148999927, 50.137385107000036 ], [ -122.954427783999918, 50.137373018000041 ], [ -122.954174590999941, 50.137076730000032 ], [ -122.953385402999984, 50.136153203000077 ], [ -122.953292054999935, 50.13586521700006 ], [ -122.953274722999979, 50.135811686000054 ], [ -122.95322326299997, 50.13565295300009 ], [ -122.953184702, 50.13553398800007 ], [ -122.953140368999968, 50.134948563000094 ], [ -122.954460522999909, 50.134949088000027 ], [ -122.954459415999978, 50.136114964000043 ], [ -122.954879193999929, 50.136126575000077 ], [ -122.954879792999975, 50.135488882000061 ], [ -122.956558925999985, 50.135489523000032 ], [ -122.95655830799997, 50.136172999000081 ], [ -122.956893212999901, 50.136182256000041 ], [ -122.95681519599999, 50.137347659000042 ], [ -122.956977037999962, 50.1373521310001 ], [ -122.956977500000036, 50.136838755000021 ], [ -122.957817089999963, 50.136839063000082 ], [ -122.957818036999981, 50.135759802000081 ], [ -122.959497179999957, 50.135760400000095 ], [ -122.959497407999962, 50.13549058400006 ], [ -122.9611765399999, 50.135491158000043 ], [ -122.961176758999969, 50.135221343000168 ], [ -122.961596538999942, 50.135221482000112 ], [ -122.961597187999985, 50.134412036000079 ], [ -122.962856506999913, 50.134412447000059 ], [ -122.962856396999939, 50.134553701000044 ], [ -122.962855881999928, 50.135221892000075 ], [ -122.962436099999977, 50.135221756000085 ], [ -122.962435254999903, 50.136301018000076 ], [ -122.962855045999959, 50.136301152000037 ], [ -122.962854836999952, 50.136570968000065 ], [ -122.963274629999944, 50.136571101000101 ], [ -122.963274009999949, 50.137380547000056 ], [ -122.962854208999914, 50.137380413000123 ], [ -122.962854001, 50.137650229000108 ], [ -122.96369360499996, 50.137650494000049 ], [ -122.963692993, 50.138459939000064 ], [ -122.962853373999948, 50.138459674000053 ], [ -122.96285316599996, 50.138729489000063 ], [ -122.961593730999965, 50.138729079000036 ], [ -122.961593947999944, 50.138459264000033 ], [ -122.960754330000015, 50.138458983000085 ], [ -122.960753887999914, 50.138998613000091 ], [ -122.962433142999913, 50.138999169000058 ], [ -122.962432508999953, 50.139808613000078 ], [ -122.961173046999988, 50.139808199000079 ], [ -122.961172828999963, 50.140078014000053 ], [ -122.962432297999939, 50.140078428000045 ], [ -122.962430394999956, 50.142506764000089 ], [ -122.960331173999919, 50.142506065000099 ], [ -122.960331842999977, 50.141696621000101 ], [ -122.959492167999912, 50.141696331000048 ], [ -122.959491255999978, 50.142775590000028 ], [ -122.958231715999943, 50.142775144000076 ], [ -122.958230562999987, 50.14410093 ], [ -122.95816010399993, 50.144003801000089 ], [ -122.95783666199992, 50.14355932000008 ], [ -122.957168710999923, 50.142641303000055 ], [ -122.957027922999984, 50.142442999000096 ], [ -122.956762220999963, 50.141809501000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.977289200289925", "sL_AssetLoss": "827.8", "sL_BldgLoss": "809", "sL_StrLoss": "660", "sL_NStrLoss": "149", "sL_ContLoss": "18.8", "geom_point": "0101000020E61000003213B99EB0BD5EC0665A51395C114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.963275661999972, 50.135222025000097 ], [ -122.96453500399997, 50.135222417000094 ], [ -122.964534405000023, 50.136031862000067 ], [ -122.963275041999978, 50.136031471000166 ], [ -122.963275661999972, 50.135222025000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.966622801770547", "sL_AssetLoss": "835.9", "sL_BldgLoss": "808", "sL_StrLoss": "677", "sL_NStrLoss": "131", "sL_ContLoss": "27.9", "geom_point": "0101000020E6100000573CBB9D79BD5EC0295B45FB2F114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.959918543999947, 50.133871838000118 ], [ -122.961177849999913, 50.133872267000108 ], [ -122.961177194999891, 50.134681712000081 ], [ -122.95991786699993, 50.134681284000123 ], [ -122.959918543999947, 50.133871838000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120308055", "BldgCostT": "69107266", "sL_LossRatio": "0.773987738437816", "sL_AssetLoss": "134762.6", "sL_BldgLoss": "104304.6", "sL_StrLoss": "68928.9", "sL_NStrLoss": "35375.7", "sL_ContLoss": "30458", "geom_point": "0101000020E6100000886F39A88EBD5EC0377ADA8676104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95349248399999, 50.132048995000048 ], [ -122.953894695999949, 50.129535488000016 ], [ -122.953917427999912, 50.129475888000101 ], [ -122.954081569999971, 50.129045579000092 ], [ -122.954366798999956, 50.128297902 ], [ -122.955358916999941, 50.126967693000068 ], [ -122.955758819999957, 50.126568875000039 ], [ -122.956035155999984, 50.12629328700006 ], [ -122.956131455, 50.126197257000044 ], [ -122.956460581999963, 50.126341306000057 ], [ -122.956614185999968, 50.12636811000008 ], [ -122.956782617999949, 50.126341200000105 ], [ -122.956942894999926, 50.126246696000059 ], [ -122.958682612999922, 50.124621293000139 ], [ -122.959024708999962, 50.124423796000031 ], [ -122.959330104999964, 50.124358487000059 ], [ -122.960196411999974, 50.124298700000061 ], [ -122.960591404999931, 50.124296097000084 ], [ -122.960624760999934, 50.124305434000057 ], [ -122.96094872399999, 50.12439598400006 ], [ -122.96130119299994, 50.124462380000082 ], [ -122.961684207999951, 50.12442886600013 ], [ -122.962186284999973, 50.12483409100011 ], [ -122.962360436999944, 50.125033634000033 ], [ -122.962488016999913, 50.125179801000094 ], [ -122.962601597999964, 50.125574284000017 ], [ -122.962586287999926, 50.125718801000083 ], [ -122.962514807999952, 50.126412301000045 ], [ -122.962606690999962, 50.12671349400005 ], [ -122.962830983999964, 50.126980597000077 ], [ -122.96317029600003, 50.127183415000026 ], [ -122.963444087999932, 50.127276515000041 ], [ -122.96384471099999, 50.127314496000075 ], [ -122.96435190699999, 50.127308693000067 ], [ -122.96436628, 50.1273081020001 ], [ -122.964608039999987, 50.127298175000128 ], [ -122.964653704999975, 50.127296289000093 ], [ -122.965092000999988, 50.127231885000086 ], [ -122.965480605999957, 50.127114904000067 ], [ -122.96714529599997, 50.126420309000075 ], [ -122.96729509599993, 50.12637850900007 ], [ -122.967615995999935, 50.126289290000059 ], [ -122.96800151799999, 50.126218898000062 ], [ -122.968568426999951, 50.126156296000026 ], [ -122.969902786999967, 50.1261948040001 ], [ -122.970192553999937, 50.126230735000057 ], [ -122.97039709199997, 50.126256110000021 ], [ -122.970449731999977, 50.126277315000088 ], [ -122.97054569399991, 50.126315990000094 ], [ -122.970588293999938, 50.126348460000074 ], [ -122.970613706, 50.126367848000108 ], [ -122.970802790999954, 50.126511998000076 ], [ -122.970999707999937, 50.126877293000021 ], [ -122.97116686699998, 50.127295811000174 ], [ -122.97133747099997, 50.127793331000092 ], [ -122.970750821999928, 50.128208947000061 ], [ -122.969996539999912, 50.128208754000099 ], [ -122.96999624599999, 50.128680154000065 ], [ -122.969226097, 50.129153655000017 ], [ -122.968397926999927, 50.129557408000032 ], [ -122.96831677199998, 50.129557386000087 ], [ -122.968316745999985, 50.129596985000056 ], [ -122.968160440999895, 50.129673186000154 ], [ -122.967731267999937, 50.12999067300013 ], [ -122.967207171999959, 50.130636341000127 ], [ -122.967056837999948, 50.130636297000066 ], [ -122.967056710999969, 50.130821699000123 ], [ -122.967003168999909, 50.130887658000113 ], [ -122.96697838599998, 50.130906091000142 ], [ -122.966217165999979, 50.130905872000049 ], [ -122.966216786999951, 50.131445502000048 ], [ -122.964957542999969, 50.131445130000053 ], [ -122.964957938999959, 50.130905499000079 ], [ -122.96411845199998, 50.130905242000054 ], [ -122.96411824899991, 50.131175058000082 ], [ -122.963278758999977, 50.131174796000039 ], [ -122.96327855299991, 50.131444611000099 ], [ -122.962019309999917, 50.13144420599999 ], [ -122.962020162999977, 50.130364945000096 ], [ -122.961600424999943, 50.130364807 ], [ -122.961602153999976, 50.128206283000026 ], [ -122.96202187199999, 50.128206420000048 ], [ -122.962023153999937, 50.126587527000027 ], [ -122.961603447999948, 50.126587388000154 ], [ -122.961604094999984, 50.125777942000113 ], [ -122.961184395999965, 50.125777803000112 ], [ -122.961184614999922, 50.125507987000084 ], [ -122.960345224, 50.125507703000032 ], [ -122.960344331999977, 50.126586966000026 ], [ -122.959924627999953, 50.126586822000014 ], [ -122.959923499999903, 50.127935899000086 ], [ -122.95950378399999, 50.127935754000141 ], [ -122.959503555999945, 50.128205570000127 ], [ -122.958244396999959, 50.128205123000072 ], [ -122.95824510099996, 50.127395677000059 ], [ -122.957405675999937, 50.127395372000102 ], [ -122.957406154999916, 50.126855740000032 ], [ -122.957280945999983, 50.126855695000096 ], [ -122.956986106999963, 50.127238588000075 ], [ -122.956985722999917, 50.127665033000049 ], [ -122.956688052999937, 50.1276649220001 ], [ -122.95656584299995, 50.1278486430001 ], [ -122.956565520999931, 50.128204508000074 ], [ -122.956329175999912, 50.128204419000085 ], [ -122.956145549, 50.12848046000002 ], [ -122.956145307999961, 50.128743981000106 ], [ -122.955931425999907, 50.128743901000128 ], [ -122.955746633999951, 50.128946063000114 ], [ -122.955725382999958, 50.128961683000057 ], [ -122.955724338999985, 50.130092899000054 ], [ -122.956144073999937, 50.130093058000163 ], [ -122.956143335999982, 50.130902504000098 ], [ -122.956563079, 50.130902663000036 ], [ -122.956561856999954, 50.132251740000058 ], [ -122.955722348999984, 50.132251422000081 ], [ -122.95572160099999, 50.133060868000015 ], [ -122.955301838999929, 50.133060708000116 ], [ -122.955301586999923, 50.133330523000097 ], [ -122.954462058999965, 50.13333019700012 ], [ -122.954461547999941, 50.133869828000115 ], [ -122.954041778999965, 50.133869662000095 ], [ -122.954041002999986, 50.1346791080001 ], [ -122.95314082699997, 50.134678748000056 ], [ -122.953193219999918, 50.134286929000091 ], [ -122.953302813999954, 50.13346758600008 ], [ -122.953483508999938, 50.13211616400018 ], [ -122.95349248399999, 50.132048995000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117694552", "BldgCostT": "76198745", "sL_LossRatio": "0.860127584119896", "sL_AssetLoss": "39522.16", "sL_BldgLoss": "33994.1", "sL_StrLoss": "26132.3", "sL_NStrLoss": "7861.8", "sL_ContLoss": "5528.06", "geom_point": "0101000020E610000036A2FF0E9ABD5EC0ACA7EA7992124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95948867099996, 50.145837889000049 ], [ -122.959488977999982, 50.145473738000064 ], [ -122.959224815000013, 50.145473646000084 ], [ -122.959069290999977, 50.145258915000142 ], [ -122.95906933699996, 50.145203776000066 ], [ -122.959029346999927, 50.145203762000108 ], [ -122.958649921999921, 50.144679881000101 ], [ -122.958650632999934, 50.143854554000029 ], [ -122.959070488999927, 50.143854702000034 ], [ -122.95907094899998, 50.143315073000096 ], [ -122.960750354999945, 50.143315652000055 ], [ -122.960750575999896, 50.143045838000084 ], [ -122.962010123999974, 50.143046256000062 ], [ -122.962009909999935, 50.143316072000061 ], [ -122.962429760999939, 50.143316208000037 ], [ -122.962429549999953, 50.143586023000047 ], [ -122.963689113999948, 50.143586423000073 ], [ -122.963688908000037, 50.143856239000087 ], [ -122.964528619999925, 50.143856498000055 ], [ -122.964529219, 50.143047053000117 ], [ -122.964949067999939, 50.143047180000103 ], [ -122.964949265999948, 50.142777365000022 ], [ -122.965369111999976, 50.142777491000047 ], [ -122.96536914, 50.142739549000062 ], [ -122.965353633999925, 50.142733964000094 ], [ -122.965326732999969, 50.142612364000072 ], [ -122.965369266999957, 50.142563611000085 ], [ -122.965369695999939, 50.141968046000073 ], [ -122.965789535999974, 50.141968171000052 ], [ -122.965789729000022, 50.141698356000063 ], [ -122.966111411999975, 50.141698451000103 ], [ -122.966209630999941, 50.141605679000079 ], [ -122.966209755999941, 50.141428664000102 ], [ -122.966396983, 50.141428719000075 ], [ -122.966564633999923, 50.141270364000057 ], [ -122.96662978099998, 50.141157385000092 ], [ -122.96662996699996, 50.140889155000146 ], [ -122.966784420999943, 50.140889200000096 ], [ -122.966940932999961, 50.140617764000055 ], [ -122.96697843499993, 50.140117564000029 ], [ -122.966768534, 50.139342864000085 ], [ -122.966801534999945, 50.138963764000039 ], [ -122.96705127199999, 50.138740723000041 ], [ -122.967051278999918, 50.138730755000026 ], [ -122.96707530499998, 50.138730762000144 ], [ -122.967481233999948, 50.138598564000105 ], [ -122.96786483399994, 50.138592364000026 ], [ -122.968016983999959, 50.138662529000037 ], [ -122.96768138, 50.138656524000055 ], [ -122.967263926999934, 50.138783115000102 ], [ -122.967014137999982, 50.139000371000051 ], [ -122.9669749, 50.139359053000078 ], [ -122.967190705999926, 50.140111225000076 ], [ -122.967166440999961, 50.140601133000146 ], [ -122.966779827999957, 50.141229691000085 ], [ -122.966183231999963, 50.141777454000056 ], [ -122.965961839999977, 50.142065232000071 ], [ -122.96600534699995, 50.14226641000004 ], [ -122.966357649999964, 50.142482717000078 ], [ -122.966568685000013, 50.142506023000024 ], [ -122.966420900999978, 50.14270636600002 ], [ -122.966092990999982, 50.143150919000036 ], [ -122.965997895999976, 50.143279800000073 ], [ -122.965728289999987, 50.143856304000067 ], [ -122.965651056999931, 50.144879560000078 ], [ -122.965643787999966, 50.144975901000052 ], [ -122.965505600999975, 50.145368002000048 ], [ -122.965356894999942, 50.145748885000081 ], [ -122.965006481999936, 50.14617289400006 ], [ -122.96390977899992, 50.146928112000069 ], [ -122.963704200999956, 50.147175286000049 ], [ -122.963445498999988, 50.147839297000068 ], [ -122.963484596999933, 50.148051804000097 ], [ -122.962768908999919, 50.14821918900001 ], [ -122.962143351999885, 50.14836586800007 ], [ -122.961439914, 50.148530807000022 ], [ -122.961287743999947, 50.148320836000053 ], [ -122.95948867099996, 50.145837889000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170553670", "BldgCostT": "98056528", "sL_LossRatio": "0.748173050226245", "sL_AssetLoss": "186567.8", "sL_BldgLoss": "139585", "sL_StrLoss": "86514", "sL_NStrLoss": "53071", "sL_ContLoss": "46982.8", "geom_point": "0101000020E610000045B80C0F4CBD5EC0FD4C9B16E10F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950919773999928, 50.131995701000086 ], [ -122.950431597999938, 50.131800487000064 ], [ -122.950095891999979, 50.131482605000016 ], [ -122.950001580999952, 50.13128199300013 ], [ -122.95000209399997, 50.13106518900009 ], [ -122.950081596999937, 50.130861409000055 ], [ -122.950426143999962, 50.130627721000096 ], [ -122.950636053999943, 50.130485334000113 ], [ -122.951071464999941, 50.130241942000026 ], [ -122.951213511999967, 50.130162568000038 ], [ -122.951341551999974, 50.130090990000063 ], [ -122.95150998099993, 50.129929617000066 ], [ -122.951524085999893, 50.129916119000043 ], [ -122.951894447999948, 50.129111201000093 ], [ -122.952082503999975, 50.12892158700005 ], [ -122.952110673999982, 50.128893171000115 ], [ -122.952243159, 50.128826148000087 ], [ -122.95229618099998, 50.128799318000084 ], [ -122.95212043699999, 50.128610973000022 ], [ -122.952045386999899, 50.128530576000038 ], [ -122.95185944, 50.128255502000087 ], [ -122.951764915999945, 50.128015350000034 ], [ -122.951638304999904, 50.126500294000088 ], [ -122.952575225999951, 50.126534337000116 ], [ -122.952785970999969, 50.126541994000071 ], [ -122.952941728999932, 50.126547618000139 ], [ -122.953205197999978, 50.126557204000058 ], [ -122.953608897999942, 50.126550402000127 ], [ -122.953862708999949, 50.12648090100005 ], [ -122.954348808999967, 50.126205510000069 ], [ -122.95424120899996, 50.126035215000094 ], [ -122.954248907999983, 50.125920308000055 ], [ -122.954671314, 50.125320101000099 ], [ -122.954765281999983, 50.124991174000044 ], [ -122.954768182999914, 50.124980891000078 ], [ -122.954557210999951, 50.124201298000052 ], [ -122.954492687999974, 50.12343030300012 ], [ -122.954407553999914, 50.123030002000078 ], [ -122.954360197999932, 50.122807347000112 ], [ -122.954472042999939, 50.122807392000041 ], [ -122.954472809999942, 50.121997944000029 ], [ -122.954188030999958, 50.121997831000058 ], [ -122.954069991, 50.121442806000125 ], [ -122.954123118999945, 50.121301733000124 ], [ -122.95426078499996, 50.120936103000055 ], [ -122.954303678999977, 50.120566590000102 ], [ -122.955209007999926, 50.120530495000047 ], [ -122.955807594999953, 50.120474090000108 ], [ -122.956632785999972, 50.120421414000077 ], [ -122.956990815, 50.120426807000044 ], [ -122.957354487999964, 50.120472805000098 ], [ -122.957778305999952, 50.1205610210001 ], [ -122.958281053999926, 50.120745859000117 ], [ -122.958705932999976, 50.120986132000084 ], [ -122.959328069999941, 50.121416285000116 ], [ -122.959665295999912, 50.121606450000044 ], [ -122.96002243399991, 50.121744550000081 ], [ -122.960354388999946, 50.121872912000093 ], [ -122.960445958999927, 50.121759381000047 ], [ -122.960661715999933, 50.121421622000049 ], [ -122.960821477999943, 50.120958184000074 ], [ -122.960888832999956, 50.120201577000017 ], [ -122.9607501, 50.119450064000056 ], [ -122.960396564999911, 50.118518977000093 ], [ -122.960917588999948, 50.118436057000103 ], [ -122.961528388999952, 50.118338789000177 ], [ -122.961479201999964, 50.118090003000098 ], [ -122.961524401999924, 50.117875287000068 ], [ -122.961738305, 50.117606783 ], [ -122.962072678999917, 50.11720939500006 ], [ -122.962489801999951, 50.117356698000052 ], [ -122.962706503999982, 50.117506699000067 ], [ -122.962800889000036, 50.117685595000133 ], [ -122.962753197999973, 50.118379798000035 ], [ -122.962777105999919, 50.118503712000091 ], [ -122.962870394999968, 50.118636791000036 ], [ -122.962996904999912, 50.118733791000068 ], [ -122.963479283999916, 50.118887498000035 ], [ -122.963309286999944, 50.119169798000058 ], [ -122.963309377999934, 50.119184902000065 ], [ -122.963310585999963, 50.119422696000115 ], [ -122.963770816999926, 50.120811900000092 ], [ -122.964331102999964, 50.120533194000075 ], [ -122.965033286999983, 50.120707290000041 ], [ -122.965230191999936, 50.120798183000055 ], [ -122.965280727999982, 50.120853765000106 ], [ -122.965423185999967, 50.12101049700005 ], [ -122.96550699099997, 50.121224194000057 ], [ -122.965477996999965, 50.121406089000118 ], [ -122.9654011799999, 50.121534363000123 ], [ -122.965366182999958, 50.121592791000069 ], [ -122.964974286999933, 50.121905913000056 ], [ -122.964939608999941, 50.121964289000047 ], [ -122.9648062159999, 50.12218110200007 ], [ -122.964825102999924, 50.12288340900011 ], [ -122.964720006999968, 50.123094605000041 ], [ -122.964568092999954, 50.123231704000055 ], [ -122.96413509599995, 50.123489687000081 ], [ -122.96343221399998, 50.123848209000066 ], [ -122.963033852999956, 50.124017731000016 ], [ -122.962796793999956, 50.124118613000057 ], [ -122.961707677999925, 50.124422301000038 ], [ -122.961684207999951, 50.12442886600013 ], [ -122.96130119299994, 50.124462380000082 ], [ -122.96094872399999, 50.12439598400006 ], [ -122.960624760999934, 50.124305434000057 ], [ -122.960591404999931, 50.124296097000084 ], [ -122.960196411999974, 50.124298700000061 ], [ -122.959330104999964, 50.124358487000059 ], [ -122.959024708999962, 50.124423796000031 ], [ -122.958682612999922, 50.124621293000139 ], [ -122.956942894999926, 50.126246696000059 ], [ -122.956782617999949, 50.126341200000105 ], [ -122.956614185999968, 50.12636811000008 ], [ -122.956460581999963, 50.126341306000057 ], [ -122.956131455, 50.126197257000044 ], [ -122.956035155999984, 50.12629328700006 ], [ -122.955758819999957, 50.126568875000039 ], [ -122.955358916999941, 50.126967693000068 ], [ -122.954366798999956, 50.128297902 ], [ -122.954081569999971, 50.129045579000092 ], [ -122.953917427999912, 50.129475888000101 ], [ -122.953894695999949, 50.129535488000016 ], [ -122.95349248399999, 50.132048995000048 ], [ -122.953478543999935, 50.132048297000061 ], [ -122.953253070999949, 50.132037049000076 ], [ -122.953087801999942, 50.13202879800005 ], [ -122.952784798999943, 50.132051790000048 ], [ -122.952654276, 50.132061695000061 ], [ -122.952044394999959, 50.132074586000023 ], [ -122.951784917999959, 50.132056402000103 ], [ -122.951224326, 50.132017060000095 ], [ -122.950919773999928, 50.131995701000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157347584", "BldgCostT": "91153334", "sL_LossRatio": "0.849531606962275", "sL_AssetLoss": "111049.9", "sL_BldgLoss": "94340.4", "sL_StrLoss": "69383.9", "sL_NStrLoss": "24956.5", "sL_ContLoss": "16709.5", "geom_point": "0101000020E6100000F79DEB3DCDBD5EC00961E24D060F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.965033286999983, 50.120707290000041 ], [ -122.964331102999964, 50.120533194000075 ], [ -122.963770816999926, 50.120811900000092 ], [ -122.963310585999963, 50.119422696000115 ], [ -122.963309377999934, 50.119184902000065 ], [ -122.963309286999944, 50.119169798000058 ], [ -122.963479283999916, 50.118887498000035 ], [ -122.962996904999912, 50.118733791000068 ], [ -122.962870394999968, 50.118636791000036 ], [ -122.962777105999919, 50.118503712000091 ], [ -122.962753197999973, 50.118379798000035 ], [ -122.962800889000036, 50.117685595000133 ], [ -122.962706503999982, 50.117506699000067 ], [ -122.962489801999951, 50.117356698000052 ], [ -122.962072678999917, 50.11720939500006 ], [ -122.961738305, 50.117606783 ], [ -122.961524401999924, 50.117875287000068 ], [ -122.961479201999964, 50.118090003000098 ], [ -122.961528388999952, 50.118338789000177 ], [ -122.960917588999948, 50.118436057000103 ], [ -122.960396564999911, 50.118518977000093 ], [ -122.959547628999957, 50.11631694500003 ], [ -122.959426797999981, 50.116003503000051 ], [ -122.959383521999953, 50.115877308000066 ], [ -122.959110020999958, 50.115152601000084 ], [ -122.959064615999964, 50.114617794000068 ], [ -122.959094184999984, 50.114299308000042 ], [ -122.959098388999962, 50.114254078000094 ], [ -122.9591046099999, 50.114187004000016 ], [ -122.959120650999964, 50.114091212000041 ], [ -122.959178997999942, 50.113743689000025 ], [ -122.959489306999913, 50.112996506000073 ], [ -122.959498558999897, 50.112983467000035 ], [ -122.959920185999977, 50.11239120300008 ], [ -122.960424208999925, 50.111906749000063 ], [ -122.960508005999912, 50.111826198000124 ], [ -122.96097260399992, 50.111470188000034 ], [ -122.9613343729999, 50.111250378000094 ], [ -122.96148626899992, 50.111158071000041 ], [ -122.961515202999962, 50.111140490000039 ], [ -122.961526106999926, 50.111134831000143 ], [ -122.961995074999933, 50.110891112000068 ], [ -122.962616811999965, 50.110634689000079 ], [ -122.964706848999981, 50.110033383000044 ], [ -122.965753016999926, 50.109732399000102 ], [ -122.967104614999954, 50.109547397000036 ], [ -122.967795291999948, 50.109514309000055 ], [ -122.968609244999968, 50.109548948000089 ], [ -122.968692602999937, 50.109552506000128 ], [ -122.970961595999981, 50.109776025000023 ], [ -122.971149494000016, 50.110338104000064 ], [ -122.97122740699993, 50.110953892000111 ], [ -122.971222822999948, 50.111136908000027 ], [ -122.971217300999967, 50.111358488000093 ], [ -122.97121079599998, 50.111496902000113 ], [ -122.971061194999891, 50.111748299000084 ], [ -122.971050089999935, 50.111760191000023 ], [ -122.97088032799995, 50.111942199000055 ], [ -122.970501101999943, 50.112341093000111 ], [ -122.970232995999964, 50.112856497000088 ], [ -122.97022506899998, 50.112873439000076 ], [ -122.969888704999946, 50.113592007000179 ], [ -122.969551915999944, 50.114613794000078 ], [ -122.969396505999981, 50.115937495 ], [ -122.969549802999964, 50.117438884000123 ], [ -122.969514591999925, 50.117735694000046 ], [ -122.969402096999957, 50.118060085000117 ], [ -122.969272078999921, 50.118246396000124 ], [ -122.969178802999949, 50.118386006000058 ], [ -122.968837916999959, 50.118922703000045 ], [ -122.96872290099999, 50.119387386000014 ], [ -122.96873232799993, 50.11952777000004 ], [ -122.96874890699992, 50.119774984000109 ], [ -122.968934103000024, 50.12031458300001 ], [ -122.969140889999935, 50.120572201000066 ], [ -122.969627888999952, 50.121076810000034 ], [ -122.969716408999901, 50.121324896000097 ], [ -122.969720688999971, 50.121743396000085 ], [ -122.969800411999927, 50.122164809000076 ], [ -122.969935694999961, 50.122402510000043 ], [ -122.970875719999981, 50.122834106000056 ], [ -122.971067498999929, 50.12296 ], [ -122.97124330699998, 50.123199704000086 ], [ -122.971373693999951, 50.123553213000086 ], [ -122.971136399, 50.123563801000095 ], [ -122.970925584, 50.123618302000096 ], [ -122.970752603999955, 50.123694515000082 ], [ -122.97021548399999, 50.124128703000096 ], [ -122.970042888999913, 50.124365896000036 ], [ -122.969980804999949, 50.124590764000089 ], [ -122.969971177999966, 50.124625643000073 ], [ -122.969959792999958, 50.124666909000034 ], [ -122.969923388, 50.124786569000037 ], [ -122.969864806999936, 50.124979207000074 ], [ -122.969735775999979, 50.125150100000042 ], [ -122.969711647999986, 50.125173226000072 ], [ -122.969484599999944, 50.12539070800004 ], [ -122.969324671999914, 50.125504614000086 ], [ -122.96872330799998, 50.12593288300009 ], [ -122.968568426999951, 50.126156296000026 ], [ -122.96800151799999, 50.126218898000062 ], [ -122.967615995999935, 50.126289290000059 ], [ -122.96729509599993, 50.12637850900007 ], [ -122.96714529599997, 50.126420309000075 ], [ -122.965480605999957, 50.127114904000067 ], [ -122.965092000999988, 50.127231885000086 ], [ -122.964653704999975, 50.127296289000093 ], [ -122.964608039999987, 50.127298175000128 ], [ -122.96436628, 50.1273081020001 ], [ -122.96435190699999, 50.127308693000067 ], [ -122.96384471099999, 50.127314496000075 ], [ -122.963444087999932, 50.127276515000041 ], [ -122.96317029600003, 50.127183415000026 ], [ -122.962830983999964, 50.126980597000077 ], [ -122.962606690999962, 50.12671349400005 ], [ -122.962514807999952, 50.126412301000045 ], [ -122.962586287999926, 50.125718801000083 ], [ -122.962601597999964, 50.125574284000017 ], [ -122.962488016999913, 50.125179801000094 ], [ -122.962360436999944, 50.125033634000033 ], [ -122.962186284999973, 50.12483409100011 ], [ -122.961684207999951, 50.12442886600013 ], [ -122.961707677999925, 50.124422301000038 ], [ -122.962796793999956, 50.124118613000057 ], [ -122.963033852999956, 50.124017731000016 ], [ -122.96343221399998, 50.123848209000066 ], [ -122.96413509599995, 50.123489687000081 ], [ -122.964568092999954, 50.123231704000055 ], [ -122.964720006999968, 50.123094605000041 ], [ -122.964825102999924, 50.12288340900011 ], [ -122.9648062159999, 50.12218110200007 ], [ -122.964939608999941, 50.121964289000047 ], [ -122.964974286999933, 50.121905913000056 ], [ -122.965366182999958, 50.121592791000069 ], [ -122.9654011799999, 50.121534363000123 ], [ -122.965477996999965, 50.121406089000118 ], [ -122.96550699099997, 50.121224194000057 ], [ -122.965423185999967, 50.12101049700005 ], [ -122.965280727999982, 50.120853765000106 ], [ -122.965230191999936, 50.120798183000055 ], [ -122.965033286999983, 50.120707290000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "515031293", "BldgCostT": "303053415", "sL_LossRatio": "0.575173627394495", "sL_AssetLoss": "335848.5", "sL_BldgLoss": "193171.2", "sL_StrLoss": "83550.8", "sL_NStrLoss": "109620.4", "sL_ContLoss": "142677.3", "geom_point": "0101000020E61000007C3271AB20BD5EC03FF28B3BF30E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947761400999923, 50.119027142000078 ], [ -122.949020317999896, 50.119027702000103 ], [ -122.949020603999912, 50.118757887000058 ], [ -122.950122320999938, 50.11875836500009 ], [ -122.95015851, 50.11821874800011 ], [ -122.949440808999924, 50.118218438000099 ], [ -122.949441660999966, 50.11740899000003 ], [ -122.949861284999912, 50.117409172000073 ], [ -122.94986156799996, 50.117139356000102 ], [ -122.949896223999986, 50.117139370000082 ], [ -122.950230884999911, 50.117139515000105 ], [ -122.950303254999938, 50.116060282000099 ], [ -122.949862693999961, 50.116060092000019 ], [ -122.949862413999981, 50.116329908000104 ], [ -122.949679338999943, 50.116329829000037 ], [ -122.949442797999893, 50.116329726000039 ], [ -122.949442513999941, 50.116599542000081 ], [ -122.949022895999917, 50.116599359000084 ], [ -122.949022035999974, 50.117408806000128 ], [ -122.9486024119999, 50.117408622 ], [ -122.948602121999983, 50.117678437000038 ], [ -122.948182494999983, 50.117678251000072 ], [ -122.948182204, 50.1179480670001 ], [ -122.947762573999938, 50.117947879000084 ], [ -122.947761400999923, 50.119027142000078 ], [ -122.946879354999965, 50.11902674300007 ], [ -122.94651341399999, 50.118969597000024 ], [ -122.946154402999937, 50.118863665000084 ], [ -122.945857301, 50.118776008000047 ], [ -122.946305566999911, 50.118497867000038 ], [ -122.94728428699996, 50.117890606000103 ], [ -122.947782385999915, 50.117580607000043 ], [ -122.948324985999989, 50.117150192000061 ], [ -122.948640399999988, 50.116725311000046 ], [ -122.949179707999988, 50.115428082000058 ], [ -122.949257647999929, 50.115240587000109 ], [ -122.949261290999928, 50.115231805000072 ], [ -122.949348818999951, 50.114761897000029 ], [ -122.949368288999935, 50.114262208000113 ], [ -122.94939759199994, 50.113846388000077 ], [ -122.949547087999974, 50.113594785000032 ], [ -122.949574287999951, 50.113548998000091 ], [ -122.949749688999958, 50.113436911000058 ], [ -122.950078914999921, 50.113329109000098 ], [ -122.950516512999954, 50.113314191000043 ], [ -122.950687090999978, 50.11333164800007 ], [ -122.950923315999916, 50.113355812000073 ], [ -122.951165974, 50.113380612000071 ], [ -122.951339091999898, 50.113398338000067 ], [ -122.951614611999972, 50.113426507000092 ], [ -122.95183533899997, 50.113507356000142 ], [ -122.951853688999933, 50.113514111000072 ], [ -122.951874963999984, 50.113530938000075 ], [ -122.951903866999928, 50.113553804000048 ], [ -122.952435661, 50.113787825000045 ], [ -122.953083906999964, 50.114073057000056 ], [ -122.953385925999939, 50.113846645000123 ], [ -122.95355273899996, 50.113514756000015 ], [ -122.953565580999978, 50.11348880400007 ], [ -122.953446128999943, 50.111714579000079 ], [ -122.953583813999956, 50.111220462000055 ], [ -122.953834065999956, 50.110912360000079 ], [ -122.954335577999984, 50.11061502900008 ], [ -122.955143908999929, 50.110329676000092 ], [ -122.955575744999962, 50.110084997000094 ], [ -122.955672816999964, 50.10990870500008 ], [ -122.955643717999976, 50.109643896000122 ], [ -122.955390881999904, 50.109459552000018 ], [ -122.955120704999942, 50.109378906000138 ], [ -122.955806213999921, 50.109397872000102 ], [ -122.955812451999961, 50.109304645000044 ], [ -122.956422412, 50.109321518000137 ], [ -122.956433435999955, 50.109156760000069 ], [ -122.957014328999918, 50.109172826000105 ], [ -122.957034226999937, 50.108875374000107 ], [ -122.957815117999928, 50.108896965000021 ], [ -122.957822499999935, 50.108786592000058 ], [ -122.959519891999932, 50.108833507000071 ], [ -122.959519932999925, 50.108784800000066 ], [ -122.959872010999945, 50.108893555000108 ], [ -122.961828399999931, 50.108778383000072 ], [ -122.961288607999961, 50.108982089000044 ], [ -122.961238420999962, 50.109063503000073 ], [ -122.961262620999932, 50.109161307000115 ], [ -122.961357506999917, 50.109227800000042 ], [ -122.9615437099999, 50.10924739700004 ], [ -122.96173498099995, 50.109212205000084 ], [ -122.962129289999922, 50.109070097000057 ], [ -122.96238381799995, 50.10892690000005 ], [ -122.96253658699996, 50.108838409000086 ], [ -122.963010809999929, 50.108401602000114 ], [ -122.96377329799995, 50.107984493000068 ], [ -122.96408650099994, 50.108219898000051 ], [ -122.964412002999978, 50.108375484000078 ], [ -122.964579703999931, 50.108420599000084 ], [ -122.96476218899997, 50.10843190700006 ], [ -122.964898185999914, 50.108417165000056 ], [ -122.9649272, 50.10841401600009 ], [ -122.965074896999923, 50.108359597000131 ], [ -122.965341516999956, 50.10818160200008 ], [ -122.965575675000011, 50.1081180810001 ], [ -122.965744788000023, 50.108072198000052 ], [ -122.965987484999985, 50.107979897000071 ], [ -122.96618658299991, 50.107826110000104 ], [ -122.966375086999932, 50.107613660000048 ], [ -122.966501391999941, 50.107471281000038 ], [ -122.966599099999939, 50.107411904000045 ], [ -122.966744198999933, 50.107397900000066 ], [ -122.966989906999984, 50.107447902000075 ], [ -122.96676351899994, 50.107715596000027 ], [ -122.96664047599999, 50.107861096000093 ], [ -122.966228612999913, 50.108350896000069 ], [ -122.965975295999925, 50.108708293000063 ], [ -122.965768793999942, 50.109013001000051 ], [ -122.965702071999928, 50.109321599000076 ], [ -122.96571498099992, 50.109581418000069 ], [ -122.965753016999926, 50.109732399000102 ], [ -122.964706848999981, 50.110033383000044 ], [ -122.962616811999965, 50.110634689000079 ], [ -122.961995074999933, 50.110891112000068 ], [ -122.961526106999926, 50.111134831000143 ], [ -122.961515202999962, 50.111140490000039 ], [ -122.96148626899992, 50.111158071000041 ], [ -122.9613343729999, 50.111250378000094 ], [ -122.96097260399992, 50.111470188000034 ], [ -122.960508005999912, 50.111826198000124 ], [ -122.960424208999925, 50.111906749000063 ], [ -122.959920185999977, 50.11239120300008 ], [ -122.959498558999897, 50.112983467000035 ], [ -122.959489306999913, 50.112996506000073 ], [ -122.959178997999942, 50.113743689000025 ], [ -122.959120650999964, 50.114091212000041 ], [ -122.9591046099999, 50.114187004000016 ], [ -122.959098388999962, 50.114254078000094 ], [ -122.959094184999984, 50.114299308000042 ], [ -122.959064615999964, 50.114617794000068 ], [ -122.959110020999958, 50.115152601000084 ], [ -122.959383521999953, 50.115877308000066 ], [ -122.959426797999981, 50.116003503000051 ], [ -122.959547628999957, 50.11631694500003 ], [ -122.960396564999911, 50.118518977000093 ], [ -122.9607501, 50.119450064000056 ], [ -122.960888832999956, 50.120201577000017 ], [ -122.960821477999943, 50.120958184000074 ], [ -122.960661715999933, 50.121421622000049 ], [ -122.960445958999927, 50.121759381000047 ], [ -122.960354388999946, 50.121872912000093 ], [ -122.96002243399991, 50.121744550000081 ], [ -122.959665295999912, 50.121606450000044 ], [ -122.959328069999941, 50.121416285000116 ], [ -122.958705932999976, 50.120986132000084 ], [ -122.958281053999926, 50.120745859000117 ], [ -122.957778305999952, 50.1205610210001 ], [ -122.957354487999964, 50.120472805000098 ], [ -122.956990815, 50.120426807000044 ], [ -122.956632785999972, 50.120421414000077 ], [ -122.955807594999953, 50.120474090000108 ], [ -122.955209007999926, 50.120530495000047 ], [ -122.954303678999977, 50.120566590000102 ], [ -122.95426078499996, 50.120936103000055 ], [ -122.954123118999945, 50.121301733000124 ], [ -122.954069991, 50.121442806000125 ], [ -122.954188030999958, 50.121997831000058 ], [ -122.954053145000017, 50.121997778000036 ], [ -122.954053403999964, 50.121727963000069 ], [ -122.953633740999976, 50.121727796000144 ], [ -122.95363426199998, 50.121188164000095 ], [ -122.952375287999971, 50.121187655000078 ], [ -122.952375556999968, 50.120917839000121 ], [ -122.951955900999948, 50.120917666000061 ], [ -122.951956066999941, 50.120752305000046 ], [ -122.951956169999946, 50.120647851000079 ], [ -122.951536516999909, 50.120647676 ], [ -122.951536482999956, 50.120682281000057 ], [ -122.951536243999939, 50.120917491000107 ], [ -122.951116588999966, 50.120917316000025 ], [ -122.951115214999987, 50.122266395000061 ], [ -122.951534882999908, 50.122266571000083 ], [ -122.951534336999941, 50.122806202000099 ], [ -122.951954010999913, 50.122806377000089 ], [ -122.951953739999965, 50.123076193000038 ], [ -122.952793088999925, 50.123076536000028 ], [ -122.952792539999948, 50.123634237000061 ], [ -122.952962133999947, 50.123801864 ], [ -122.952987127999961, 50.123886064000075 ], [ -122.953211975000016, 50.123886154000097 ], [ -122.953211711999927, 50.12415596900005 ], [ -122.95363139599999, 50.124156138000139 ], [ -122.953631133999963, 50.12442595400006 ], [ -122.954050820999953, 50.124426121000113 ], [ -122.954051078999939, 50.124156306000089 ], [ -122.954470762999932, 50.124156471000077 ], [ -122.954471018999982, 50.123886655000042 ], [ -122.953631655999956, 50.12388632200004 ], [ -122.953632437, 50.123076875000081 ], [ -122.954052111999928, 50.123077041000016 ], [ -122.954052370999946, 50.122807225000059 ], [ -122.954360197999932, 50.122807347000112 ], [ -122.954407553999914, 50.123030002000078 ], [ -122.954492687999974, 50.12343030300012 ], [ -122.954557210999951, 50.124201298000052 ], [ -122.954768182999914, 50.124980891000078 ], [ -122.954765281999983, 50.124991174000044 ], [ -122.954671314, 50.125320101000099 ], [ -122.954248907999983, 50.125920308000055 ], [ -122.95424120899996, 50.126035215000094 ], [ -122.954348808999967, 50.126205510000069 ], [ -122.953862708999949, 50.12648090100005 ], [ -122.953608897999942, 50.126550402000127 ], [ -122.953205197999978, 50.126557204000058 ], [ -122.952941728999932, 50.126547618000139 ], [ -122.952785970999969, 50.126541994000071 ], [ -122.952575225999951, 50.126534337000116 ], [ -122.951638304999904, 50.126500294000088 ], [ -122.950123099999985, 50.126444800000058 ], [ -122.949137488999966, 50.126393342000092 ], [ -122.948654082999965, 50.126368092000099 ], [ -122.948672710999944, 50.124693389000051 ], [ -122.94856420399995, 50.123747308000084 ], [ -122.948533993999931, 50.123483898000089 ], [ -122.948582211999977, 50.123162187000098 ], [ -122.948711208999924, 50.122867992000117 ], [ -122.948945290999959, 50.12265400200004 ], [ -122.94931799299999, 50.122481700000051 ], [ -122.948847181999923, 50.121883805000053 ], [ -122.948740293999961, 50.121640590000055 ], [ -122.948714588999962, 50.121397904000091 ], [ -122.948633974999922, 50.121243605000096 ], [ -122.948647650999959, 50.12110063100004 ], [ -122.94895736899997, 50.120926252000061 ], [ -122.948806330999972, 50.12064650400005 ], [ -122.949018597999896, 50.120646597000146 ], [ -122.949018884999973, 50.120376782000086 ], [ -122.949858185999943, 50.12037714700007 ], [ -122.94985846799996, 50.120107332000018 ], [ -122.948602957, 50.12010678200005 ], [ -122.948730223999974, 50.119882150000102 ], [ -122.949153477999957, 50.119538865000024 ], [ -122.948864810999964, 50.119430714000039 ], [ -122.948801718999903, 50.119414363000033 ], [ -122.94877379899998, 50.119407138000092 ], [ -122.948005128999952, 50.119208184000087 ], [ -122.947949889999933, 50.119193910000043 ], [ -122.947761249999928, 50.119164454000028 ], [ -122.947761400999923, 50.119027142000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1018495867", "BldgCostT": "659722434", "sL_LossRatio": "0.732518547918653", "sL_AssetLoss": "540309.95", "sL_BldgLoss": "395787.06", "sL_StrLoss": "221524.96", "sL_NStrLoss": "174262.1", "sL_ContLoss": "144522.89", "geom_point": "0101000020E6100000C17751AA33BE5EC05277FA7B880E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.969720688999971, 50.121743396000085 ], [ -122.969716408999901, 50.121324896000097 ], [ -122.969627888999952, 50.121076810000034 ], [ -122.969140889999935, 50.120572201000066 ], [ -122.968934103000024, 50.12031458300001 ], [ -122.96874890699992, 50.119774984000109 ], [ -122.96873232799993, 50.11952777000004 ], [ -122.96872290099999, 50.119387386000014 ], [ -122.968837916999959, 50.118922703000045 ], [ -122.969178802999949, 50.118386006000058 ], [ -122.969272078999921, 50.118246396000124 ], [ -122.969402096999957, 50.118060085000117 ], [ -122.969514591999925, 50.117735694000046 ], [ -122.969549802999964, 50.117438884000123 ], [ -122.969396505999981, 50.115937495 ], [ -122.969551915999944, 50.114613794000078 ], [ -122.969888704999946, 50.113592007000179 ], [ -122.97022506899998, 50.112873439000076 ], [ -122.970232995999964, 50.112856497000088 ], [ -122.970501101999943, 50.112341093000111 ], [ -122.97088032799995, 50.111942199000055 ], [ -122.971050089999935, 50.111760191000023 ], [ -122.971061194999891, 50.111748299000084 ], [ -122.97121079599998, 50.111496902000113 ], [ -122.971217300999967, 50.111358488000093 ], [ -122.971222822999948, 50.111136908000027 ], [ -122.97122740699993, 50.110953892000111 ], [ -122.971149494000016, 50.110338104000064 ], [ -122.970961595999981, 50.109776025000023 ], [ -122.968692602999937, 50.109552506000128 ], [ -122.968609244999968, 50.109548948000089 ], [ -122.967795291999948, 50.109514309000055 ], [ -122.967104614999954, 50.109547397000036 ], [ -122.965753016999926, 50.109732399000102 ], [ -122.96571498099992, 50.109581418000069 ], [ -122.965702071999928, 50.109321599000076 ], [ -122.965768793999942, 50.109013001000051 ], [ -122.965975295999925, 50.108708293000063 ], [ -122.966228612999913, 50.108350896000069 ], [ -122.96664047599999, 50.107861096000093 ], [ -122.96676351899994, 50.107715596000027 ], [ -122.966989906999984, 50.107447902000075 ], [ -122.966744198999933, 50.107397900000066 ], [ -122.966599099999939, 50.107411904000045 ], [ -122.966501391999941, 50.107471281000038 ], [ -122.966375086999932, 50.107613660000048 ], [ -122.96618658299991, 50.107826110000104 ], [ -122.965987484999985, 50.107979897000071 ], [ -122.965744788000023, 50.108072198000052 ], [ -122.965575675000011, 50.1081180810001 ], [ -122.96547474499998, 50.107431658000039 ], [ -122.965814142999974, 50.107431759000058 ], [ -122.965814525999946, 50.106892126000069 ], [ -122.966653592999975, 50.10689237000004 ], [ -122.966653780999962, 50.106622554000104 ], [ -122.967477127999985, 50.106622787000049 ], [ -122.967492848999925, 50.10661399 ], [ -122.967493023999978, 50.106352975000071 ], [ -122.968096052999968, 50.10635314200011 ], [ -122.968295434999973, 50.106285564000082 ], [ -122.968757833999959, 50.106175563000072 ], [ -122.969002933999917, 50.106171264000068 ], [ -122.969295733999957, 50.106232264000063 ], [ -122.96962604499997, 50.106353553000069 ], [ -122.970010194999986, 50.106353652000053 ], [ -122.970010105999947, 50.106494576000024 ], [ -122.97036138299994, 50.106623559000084 ], [ -122.97084908699999, 50.106623683000059 ], [ -122.970848960999916, 50.106831524 ], [ -122.97089893499999, 50.106854663000057 ], [ -122.970953931999986, 50.106893526000064 ], [ -122.97126845799994, 50.106893603000081 ], [ -122.971268336999984, 50.107095303000044 ], [ -122.971398082999926, 50.107163453000034 ], [ -122.971687831999986, 50.107163523000033 ], [ -122.971687762999963, 50.107277360000104 ], [ -122.972095733999964, 50.107430363000084 ], [ -122.97230054299996, 50.107433487000044 ], [ -122.972558522999947, 50.107433548000131 ], [ -122.97273083499999, 50.107407764000044 ], [ -122.972946337999971, 50.107342568000028 ], [ -122.972946437999965, 50.107163824000061 ], [ -122.973359079999938, 50.107163919000072 ], [ -122.973546733999953, 50.107081063000095 ], [ -122.973785590999924, 50.107014962000044 ], [ -122.973785655999933, 50.10689419800012 ], [ -122.974536656999959, 50.106894367000038 ], [ -122.97462475499999, 50.106833265000049 ], [ -122.974624864999953, 50.106624569000168 ], [ -122.974925559999932, 50.106624635000109 ], [ -122.974935389, 50.106617817000014 ], [ -122.976415209999914, 50.106747518000077 ], [ -122.97588542299998, 50.1070769150001 ], [ -122.976030517999931, 50.107199321000067 ], [ -122.976289940999919, 50.107575166000068 ], [ -122.976178348999909, 50.107737660000105 ], [ -122.975662467999982, 50.108186706000041 ], [ -122.975515990999966, 50.10831418600003 ], [ -122.976684491999961, 50.108840216000047 ], [ -122.976920976999935, 50.108987123000126 ], [ -122.976959369999946, 50.109082648000012 ], [ -122.976948384999943, 50.109248840000134 ], [ -122.976824166999961, 50.109643950000105 ], [ -122.976670686999967, 50.110100385000059 ], [ -122.976100629999934, 50.110781128000099 ], [ -122.975279550999971, 50.111132830000045 ], [ -122.974407626999948, 50.111365294000088 ], [ -122.974084838999971, 50.111378903000052 ], [ -122.97414039599991, 50.111848316000071 ], [ -122.974496986999952, 50.112287432000073 ], [ -122.974804013, 50.112665498000133 ], [ -122.97619835799992, 50.113094618000076 ], [ -122.976195658999941, 50.113100914000086 ], [ -122.97613261, 50.114049246000029 ], [ -122.971683843999983, 50.113926918000068 ], [ -122.971683695, 50.114178749000104 ], [ -122.971264097999907, 50.114178646000035 ], [ -122.971263775999887, 50.114718278000119 ], [ -122.970844172999946, 50.114718174000082 ], [ -122.970844009999936, 50.114987991000035 ], [ -122.971263612999948, 50.114988095000051 ], [ -122.971263128999908, 50.115797543000063 ], [ -122.970843518999942, 50.115797439000048 ], [ -122.970842535999978, 50.117416335000065 ], [ -122.970422909999968, 50.117416230000096 ], [ -122.970422577999912, 50.117955862000031 ], [ -122.970842207999937, 50.117955968000039 ], [ -122.970841878999948, 50.118495599000028 ], [ -122.972100783999949, 50.118495909000053 ], [ -122.972100155999968, 50.119575173000065 ], [ -122.971680511999978, 50.119575072000139 ], [ -122.971680352999982, 50.119844887000085 ], [ -122.971260706999914, 50.119844784000065 ], [ -122.971260545999968, 50.120114600000129 ], [ -122.971680192999941, 50.120114704000073 ], [ -122.971679716000011, 50.12092415100004 ], [ -122.971260060999938, 50.120924048000063 ], [ -122.971259736999968, 50.121463680000033 ], [ -122.971756289999959, 50.121463801000047 ], [ -122.971815331999949, 50.120577161000028 ], [ -122.972160308999918, 50.12058665100006 ], [ -122.97223177699999, 50.119513269000066 ], [ -122.973519956999951, 50.11954869700002 ], [ -122.973586778999916, 50.118544600000114 ], [ -122.975088003999971, 50.118585868000068 ], [ -122.975297493999904, 50.118792501 ], [ -122.976127561999931, 50.119262858000091 ], [ -122.975476694999912, 50.119779453000028 ], [ -122.975704891999968, 50.120373899000064 ], [ -122.975759338000017, 50.120508412000078 ], [ -122.975773403999966, 50.120543192000071 ], [ -122.97585120299999, 50.12116248800001 ], [ -122.975783279000012, 50.121300100000077 ], [ -122.97585091699996, 50.12150440700006 ], [ -122.975633296999888, 50.121597398000127 ], [ -122.975528464999954, 50.12162146500004 ], [ -122.975353303999967, 50.121661706000069 ], [ -122.975370304999927, 50.121932109000028 ], [ -122.975194209999927, 50.122222300000068 ], [ -122.974980324999976, 50.122366695000039 ], [ -122.97473460099998, 50.122440895000153 ], [ -122.973969507999925, 50.122473885000112 ], [ -122.973887049999988, 50.122478314000077 ], [ -122.973747490999955, 50.122485798000149 ], [ -122.973422296999914, 50.122597414000126 ], [ -122.973094409999959, 50.122791707000076 ], [ -122.97285960499994, 50.123059692 ], [ -122.972685484999928, 50.123257299000066 ], [ -122.972351612999972, 50.123436191000117 ], [ -122.972014996000027, 50.123508811000143 ], [ -122.971373693999951, 50.123553213000086 ], [ -122.97124330699998, 50.123199704000086 ], [ -122.971067498999929, 50.12296 ], [ -122.970875719999981, 50.122834106000056 ], [ -122.969935694999961, 50.122402510000043 ], [ -122.969800411999927, 50.122164809000076 ], [ -122.969720688999971, 50.121743396000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55057372", "BldgCostT": "31898705", "sL_LossRatio": "0.714999350510851", "sL_AssetLoss": "62356.7", "sL_BldgLoss": "44585", "sL_StrLoss": "24650", "sL_NStrLoss": "19935", "sL_ContLoss": "17771.7", "geom_point": "0101000020E610000073D97D015CBE5EC00B2BBA9AE10F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.96872330799998, 50.12593288300009 ], [ -122.969324671999914, 50.125504614000086 ], [ -122.969484599999944, 50.12539070800004 ], [ -122.969711647999986, 50.125173226000072 ], [ -122.969735775999979, 50.125150100000042 ], [ -122.969864806999936, 50.124979207000074 ], [ -122.969923388, 50.124786569000037 ], [ -122.969959792999958, 50.124666909000034 ], [ -122.969971177999966, 50.124625643000073 ], [ -122.969980804999949, 50.124590764000089 ], [ -122.970042888999913, 50.124365896000036 ], [ -122.97021548399999, 50.124128703000096 ], [ -122.970752603999955, 50.123694515000082 ], [ -122.970925584, 50.123618302000096 ], [ -122.971136399, 50.123563801000095 ], [ -122.971373693999951, 50.123553213000086 ], [ -122.972014996000027, 50.123508811000143 ], [ -122.972351612999972, 50.123436191000117 ], [ -122.972685484999928, 50.123257299000066 ], [ -122.97285960499994, 50.123059692 ], [ -122.973094409999959, 50.122791707000076 ], [ -122.973422296999914, 50.122597414000126 ], [ -122.973747490999955, 50.122485798000149 ], [ -122.973887049999988, 50.122478314000077 ], [ -122.973969507999925, 50.122473885000112 ], [ -122.97473460099998, 50.122440895000153 ], [ -122.974980324999976, 50.122366695000039 ], [ -122.975194209999927, 50.122222300000068 ], [ -122.975370304999927, 50.121932109000028 ], [ -122.975353303999967, 50.121661706000069 ], [ -122.975528464999954, 50.12162146500004 ], [ -122.975633296999888, 50.121597398000127 ], [ -122.97585091699996, 50.12150440700006 ], [ -122.975783279000012, 50.121300100000077 ], [ -122.97585120299999, 50.12116248800001 ], [ -122.975773403999966, 50.120543192000071 ], [ -122.975759338000017, 50.120508412000078 ], [ -122.975704891999968, 50.120373899000064 ], [ -122.975476694999912, 50.119779453000028 ], [ -122.976127561999931, 50.119262858000091 ], [ -122.976584203999948, 50.119521609000095 ], [ -122.976656828000031, 50.119651012000134 ], [ -122.976820808999918, 50.119943205000034 ], [ -122.976974813999945, 50.120599804000044 ], [ -122.977044309999911, 50.12069950900009 ], [ -122.97709700899999, 50.120695149000063 ], [ -122.977267688999945, 50.120681011000038 ], [ -122.977421698999976, 50.120780694000082 ], [ -122.977688781999959, 50.121877300000023 ], [ -122.977688751999921, 50.12191602700009 ], [ -122.977688442999977, 50.122290223000036 ], [ -122.97768839499993, 50.122354406000085 ], [ -122.97782802199994, 50.122641149000032 ], [ -122.977841692999988, 50.122669197000086 ], [ -122.978666890999975, 50.122804409000054 ], [ -122.97925181, 50.122777620000093 ], [ -122.97922297599996, 50.123211649000041 ], [ -122.978786286999963, 50.123199664000069 ], [ -122.978695333999937, 50.124568559000096 ], [ -122.978406583999956, 50.124560633000044 ], [ -122.978364257999928, 50.12519756500005 ], [ -122.976508237999951, 50.125146603000069 ], [ -122.972936358999917, 50.1250484380001 ], [ -122.972935946999911, 50.125781136000086 ], [ -122.973355643999923, 50.12578123300009 ], [ -122.97335549499995, 50.126051048000114 ], [ -122.973775194999959, 50.126051144000058 ], [ -122.973774964999905, 50.126471908000042 ], [ -122.973774752999987, 50.126860591000074 ], [ -122.973063813999957, 50.126860428000072 ], [ -122.972935336999939, 50.126860398000119 ], [ -122.972935296999978, 50.12693063800009 ], [ -122.972935185999944, 50.127130213000065 ], [ -122.972570139999917, 50.127130128000054 ], [ -122.972515474999966, 50.127130115000092 ], [ -122.972515458999979, 50.127160001000071 ], [ -122.972515166999969, 50.127669747000056 ], [ -122.972143264999914, 50.127669658000066 ], [ -122.972095434, 50.127699446000115 ], [ -122.972095137999943, 50.128209277000067 ], [ -122.970750821999928, 50.128208947000061 ], [ -122.97133747099997, 50.127793331000092 ], [ -122.97116686699998, 50.127295811000174 ], [ -122.970999707999937, 50.126877293000021 ], [ -122.970802790999954, 50.126511998000076 ], [ -122.970613706, 50.126367848000108 ], [ -122.970588293999938, 50.126348460000074 ], [ -122.97054569399991, 50.126315990000094 ], [ -122.970449731999977, 50.126277315000088 ], [ -122.97039709199997, 50.126256110000021 ], [ -122.970192553999937, 50.126230735000057 ], [ -122.969902786999967, 50.1261948040001 ], [ -122.968568426999951, 50.126156296000026 ], [ -122.96872330799998, 50.12593288300009 ] ], [ [ -122.972779707999948, 50.124971652000063 ], [ -122.972830813999948, 50.124203980000082 ], [ -122.971576100999968, 50.124169468000034 ], [ -122.971576603999964, 50.124161917000038 ], [ -122.971258122999984, 50.124161838000134 ], [ -122.9712578, 50.124701469000101 ], [ -122.971731203999951, 50.124701586000057 ], [ -122.971857634999978, 50.124663364000043 ], [ -122.972077435999935, 50.124666664000074 ], [ -122.972155017999967, 50.124701688000137 ], [ -122.972516865999964, 50.124701774000059 ], [ -122.972516719999959, 50.124954093000071 ], [ -122.972531032999925, 50.124968464000069 ], [ -122.972532772999926, 50.124971593000069 ], [ -122.972779707999948, 50.124971652000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.962398742594608", "sL_AssetLoss": "827.1", "sL_BldgLoss": "796", "sL_StrLoss": "661", "sL_NStrLoss": "135", "sL_ContLoss": "31.1", "geom_point": "0101000020E61000000F7ADBF10BBE5EC0A118F6078C104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.969226097, 50.129153655000017 ], [ -122.96999624599999, 50.128680154000065 ], [ -122.969995696999973, 50.12955783300005 ], [ -122.968397926999927, 50.129557408000032 ], [ -122.969226097, 50.129153655000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9756250", "BldgCostT": "5785000", "sL_LossRatio": "0.961395672546591", "sL_AssetLoss": "5158.23", "sL_BldgLoss": "4959.1", "sL_StrLoss": "4246.6", "sL_NStrLoss": "712.5", "sL_ContLoss": "199.13", "geom_point": "0101000020E6100000C8318ACCF9BD5EC03158D4D4F0114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.967190705999926, 50.140111225000076 ], [ -122.9669749, 50.139359053000078 ], [ -122.967014137999982, 50.139000371000051 ], [ -122.967263926999934, 50.138783115000102 ], [ -122.96768138, 50.138656524000055 ], [ -122.968016983999959, 50.138662529000037 ], [ -122.968165605999943, 50.138731066000062 ], [ -122.968207986999971, 50.138731078000028 ], [ -122.968738326000022, 50.138992988000098 ], [ -122.969768446, 50.138921613000072 ], [ -122.969266319999946, 50.138731363000105 ], [ -122.969570147999946, 50.13873144300004 ], [ -122.969570097999949, 50.138813325000058 ], [ -122.969578534999982, 50.138812564000062 ], [ -122.970037533999971, 50.138973164000113 ], [ -122.970065774999924, 50.139001387000079 ], [ -122.970799423999935, 50.139001574000119 ], [ -122.970806881999962, 50.139121502000052 ], [ -122.970829308999924, 50.139181192000088 ], [ -122.970828982999961, 50.139717694000048 ], [ -122.970894341999937, 50.139811042000112 ], [ -122.970966786999924, 50.139811060000063 ], [ -122.970966613999963, 50.139814204000103 ], [ -122.970883616999942, 50.139946907000095 ], [ -122.970739884999958, 50.140064411000019 ], [ -122.970606314999884, 50.140108687000087 ], [ -122.970178574, 50.140250494000107 ], [ -122.96952678599996, 50.140511490000065 ], [ -122.968984902, 50.14076289200009 ], [ -122.968018195, 50.141294085000055 ], [ -122.966664609999953, 50.142376009000067 ], [ -122.966568685000013, 50.142506023000024 ], [ -122.966357649999964, 50.142482717000078 ], [ -122.96600534699995, 50.14226641000004 ], [ -122.965961839999977, 50.142065232000071 ], [ -122.966183231999963, 50.141777454000056 ], [ -122.966779827999957, 50.141229691000085 ], [ -122.967166440999961, 50.140601133000146 ], [ -122.967190705999926, 50.140111225000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.971273712737127", "sL_AssetLoss": "922.5", "sL_BldgLoss": "896", "sL_StrLoss": "713", "sL_NStrLoss": "183", "sL_ContLoss": "26.5", "geom_point": "0101000020E6100000A2F674D8F1BD5EC0CC267E94AA104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.968160440999895, 50.129673186000154 ], [ -122.968316745999985, 50.129596985000056 ], [ -122.968316237999957, 50.130366833000103 ], [ -122.9678965, 50.130366717000072 ], [ -122.967896318999976, 50.130636533000015 ], [ -122.967207171999959, 50.130636341000127 ], [ -122.967731267999937, 50.12999067300013 ], [ -122.968160440999895, 50.129673186000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "285558355", "BldgCostT": "180221464", "sL_LossRatio": "0.825491695181901", "sL_AssetLoss": "405601.9", "sL_BldgLoss": "334821", "sL_StrLoss": "220532", "sL_NStrLoss": "114289", "sL_ContLoss": "70780.9", "geom_point": "0101000020E61000002D41787A86BF5EC000C0DAE6000D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.983009943999903, 50.122275441000099 ], [ -122.983010125999968, 50.121762403000041 ], [ -122.98266633899999, 50.121752980000061 ], [ -122.98239195, 50.121745458000085 ], [ -122.982611508999966, 50.121626598000056 ], [ -122.98283580699993, 50.121311901000119 ], [ -122.983004006999977, 50.120259403000027 ], [ -122.983339793999932, 50.119612798000034 ], [ -122.983395315999985, 50.118785306000078 ], [ -122.983495317999939, 50.118712705000121 ], [ -122.98380148699999, 50.118721196000095 ], [ -122.983913014, 50.118514700000091 ], [ -122.984431102999977, 50.118614407000081 ], [ -122.984711899999965, 50.118560307000067 ], [ -122.985285383999937, 50.118155807000072 ], [ -122.98545212, 50.117885199000092 ], [ -122.985284677999928, 50.115969692000128 ], [ -122.984475006999986, 50.115402798000041 ], [ -122.984404198999968, 50.115079502000135 ], [ -122.984628390999958, 50.114890100000068 ], [ -122.984951208999973, 50.114791886000035 ], [ -122.985314373999984, 50.112768095000064 ], [ -122.985692792999942, 50.111652908000124 ], [ -122.986769308999953, 50.110492195000091 ], [ -122.98671499799994, 50.109799995000081 ], [ -122.986405318, 50.109737305000124 ], [ -122.98636460099999, 50.109593508000096 ], [ -122.986882208999972, 50.109080804000094 ], [ -122.987147103999988, 50.108603697000085 ], [ -122.987189787999938, 50.108271790000046 ], [ -122.987371282999945, 50.108172091000078 ], [ -122.987417222999909, 50.107789185000058 ], [ -122.987526595999938, 50.106877501000042 ], [ -122.98738698399994, 50.106796295000045 ], [ -122.986785377999979, 50.107029893000032 ], [ -122.98661800899994, 50.106841889000101 ], [ -122.986787868999954, 50.106577214000019 ], [ -122.987414987999941, 50.105600011000057 ], [ -122.988224476999903, 50.105464698000027 ], [ -122.988197285999902, 50.104880805000057 ], [ -122.988392397999974, 50.104772491000041 ], [ -122.988798092, 50.104745502000107 ], [ -122.9889666099999, 50.104584489000096 ], [ -122.988980895999958, 50.104457799000087 ], [ -122.98871511899999, 50.104053306000047 ], [ -122.988477676999963, 50.103855293000045 ], [ -122.988219996999973, 50.104001572000108 ], [ -122.988128879999977, 50.104053295000071 ], [ -122.986282987, 50.10453041100007 ], [ -122.98597489799999, 50.104726997000029 ], [ -122.985316198999968, 50.105491804000103 ], [ -122.985205500999882, 50.105527400000078 ], [ -122.98505160399999, 50.105456200000091 ], [ -122.984770558999983, 50.105723614000048 ], [ -122.984729793999989, 50.105762407000043 ], [ -122.984462702999949, 50.1058521100001 ], [ -122.984114689999984, 50.10631070200003 ], [ -122.983135087999983, 50.1071381020001 ], [ -122.982730103999955, 50.107309108000031 ], [ -122.982462786, 50.10759670200008 ], [ -122.982225120999956, 50.107649406000043 ], [ -122.982002351999967, 50.107569054000045 ], [ -122.981652589999939, 50.107442906000081 ], [ -122.98106551399998, 50.107424392000041 ], [ -122.980616318999964, 50.107659407 ], [ -122.980086813999932, 50.107955602000132 ], [ -122.979483698999914, 50.108449798000045 ], [ -122.979302204999925, 50.108791710000034 ], [ -122.979189695999978, 50.109366996000084 ], [ -122.978925309999966, 50.109754403000053 ], [ -122.978573894999954, 50.110033592000065 ], [ -122.978412814999956, 50.110672581000124 ], [ -122.978398822999964, 50.110672580000028 ], [ -122.978398789000011, 50.110728221000066 ], [ -122.978362006999959, 50.110874143000075 ], [ -122.97832260199999, 50.111030486000089 ], [ -122.978154916999983, 50.111282605000035 ], [ -122.977986091999952, 50.111355205000109 ], [ -122.977665617999932, 50.111570295000028 ], [ -122.977160090999945, 50.111588811000139 ], [ -122.976447286999985, 50.111274100000081 ], [ -122.975930989999981, 50.111380888000106 ], [ -122.975790598999978, 50.111543186000112 ], [ -122.975762902000014, 50.111839513000056 ], [ -122.976027099999939, 50.112299500000105 ], [ -122.976238610999971, 50.112454819000064 ], [ -122.976222116999963, 50.112702931000086 ], [ -122.976250434999926, 50.112748164000088 ], [ -122.976248234999971, 50.112978263000059 ], [ -122.97619835799992, 50.113094618000076 ], [ -122.974804013, 50.112665498000133 ], [ -122.974496986999952, 50.112287432000073 ], [ -122.97414039599991, 50.111848316000071 ], [ -122.974084838999971, 50.111378903000052 ], [ -122.974407626999948, 50.111365294000088 ], [ -122.975279550999971, 50.111132830000045 ], [ -122.976100629999934, 50.110781128000099 ], [ -122.976670686999967, 50.110100385000059 ], [ -122.976824166999961, 50.109643950000105 ], [ -122.976948384999943, 50.109248840000134 ], [ -122.976959369999946, 50.109082648000012 ], [ -122.976920976999935, 50.108987123000126 ], [ -122.976684491999961, 50.108840216000047 ], [ -122.975515990999966, 50.10831418600003 ], [ -122.975662467999982, 50.108186706000041 ], [ -122.976178348999909, 50.107737660000105 ], [ -122.976289940999919, 50.107575166000068 ], [ -122.976030517999931, 50.107199321000067 ], [ -122.97588542299998, 50.1070769150001 ], [ -122.976415209999914, 50.106747518000077 ], [ -122.97700606699999, 50.106380206000082 ], [ -122.97794781199994, 50.105545981000049 ], [ -122.97798160499994, 50.105545987000042 ], [ -122.977981619999937, 50.105516032000068 ], [ -122.978217813999933, 50.105306797000082 ], [ -122.979111430999978, 50.104299462000093 ], [ -122.979117786999936, 50.104292319000081 ], [ -122.979544553, 50.103975628000143 ], [ -122.980123284999976, 50.103689190000125 ], [ -122.980856279999969, 50.103502368000079 ], [ -122.981766457999967, 50.10344997700016 ], [ -122.981800686, 50.102934474000101 ], [ -122.981956418999914, 50.102674186000051 ], [ -122.9831200899999, 50.103019188000104 ], [ -122.983424895999946, 50.103064485000104 ], [ -122.984558283999931, 50.103127904000054 ], [ -122.985860294999938, 50.102736190000044 ], [ -122.985748494999939, 50.10226980100002 ], [ -122.985704183999971, 50.102093111000038 ], [ -122.985776511999973, 50.101720787000019 ], [ -122.985895021999937, 50.101219301000107 ], [ -122.985945598999976, 50.101132493000065 ], [ -122.986286410999952, 50.100676697000061 ], [ -122.98678849099997, 50.100024704000134 ], [ -122.986852510999981, 50.09998498300007 ], [ -122.987245198999958, 50.099741207000108 ], [ -122.987418409999961, 50.099533586000021 ], [ -122.987599487999915, 50.099292005000024 ], [ -122.987804696999916, 50.099087099000045 ], [ -122.987986806999913, 50.099041703000097 ], [ -122.988895338999939, 50.099091930000064 ], [ -122.989306908999964, 50.099114689000061 ], [ -122.989730389999977, 50.099237277000078 ], [ -122.989821728999914, 50.09926370400003 ], [ -122.990056501000012, 50.098887798000135 ], [ -122.990168588999936, 50.098778396000093 ], [ -122.990402787999955, 50.098684908000095 ], [ -122.990253477999929, 50.098430247000039 ], [ -122.99017278800001, 50.098292608000058 ], [ -122.99001799899996, 50.097946492000098 ], [ -122.989950000999912, 50.097641391000124 ], [ -122.989945900999942, 50.097386699000076 ], [ -122.990003404, 50.097004099000053 ], [ -122.990099787999952, 50.096752099000092 ], [ -122.990271890999935, 50.096476993000074 ], [ -122.99029848699999, 50.096451227000109 ], [ -122.990645605999958, 50.096114706000066 ], [ -122.991061209999913, 50.095775206000035 ], [ -122.991630483999955, 50.095410469000072 ], [ -122.991641903999977, 50.095403139000105 ], [ -122.992926607999919, 50.094580003000019 ], [ -122.99361878799999, 50.095008304000061 ], [ -122.992629503000018, 50.095584105000086 ], [ -122.993871567999946, 50.096287607000072 ], [ -122.994054804999976, 50.096391397000062 ], [ -122.994378000999987, 50.095925763000096 ], [ -122.994657789999962, 50.095522600000074 ], [ -122.99478838499999, 50.09557630700008 ], [ -122.995604403999906, 50.095911886000046 ], [ -122.995826997999956, 50.095930594 ], [ -122.995977680999943, 50.095895096000071 ], [ -122.996371653999944, 50.095648126000121 ], [ -122.996916536999947, 50.09530657300013 ], [ -122.997148112, 50.09516138599999 ], [ -122.997498223999969, 50.094994281000069 ], [ -122.99778650899998, 50.094856690000043 ], [ -122.997855224999967, 50.094808888000102 ], [ -122.997925792000018, 50.094759808000042 ], [ -122.998000800999961, 50.094641206000041 ], [ -122.998011697999985, 50.094476013000119 ], [ -122.997935897000019, 50.094203094000093 ], [ -122.997798724999967, 50.093928088000027 ], [ -122.997740683999936, 50.09381179800004 ], [ -122.997598115999921, 50.093577510000102 ], [ -122.997528697999897, 50.093314708000094 ], [ -122.997505324999963, 50.092658743000094 ], [ -122.997502718999939, 50.092585206000074 ], [ -122.997534603999952, 50.092420508000053 ], [ -122.997047993999956, 50.092267794000108 ], [ -122.996873934999883, 50.092213704000066 ], [ -122.99631189199999, 50.092038997 ], [ -122.997395781999941, 50.090707207000015 ], [ -122.997534714999915, 50.090592529000105 ], [ -122.997706008999927, 50.090451157000132 ], [ -122.997796697999945, 50.09037630400006 ], [ -122.99830299199995, 50.090101308000101 ], [ -122.998446206999958, 50.090055938000077 ], [ -122.99875020399999, 50.089959588000042 ], [ -122.999159807999959, 50.089900598000057 ], [ -122.999644923999938, 50.089904009000087 ], [ -123.000006974999962, 50.089959676000042 ], [ -123.000220998999978, 50.089992581000082 ], [ -123.001382872999926, 50.090266096000043 ], [ -123.00209700299996, 50.090434202000047 ], [ -123.002121286999966, 50.090438304000024 ], [ -123.00109222299993, 50.090438317000128 ], [ -123.001054950999944, 50.090438317000128 ], [ -123.001054955999933, 50.090708134000039 ], [ -123.000635563999978, 50.09070813800011 ], [ -123.000635573999944, 50.091392283000083 ], [ -123.000635575999951, 50.091517590000073 ], [ -123.00044524099998, 50.091517590000073 ], [ -122.999796777999975, 50.091517590000073 ], [ -122.999796776999986, 50.091733795000017 ], [ -122.999923234999969, 50.091829764000046 ], [ -122.99991444699999, 50.091837889000061 ], [ -122.999796776, 50.09194669900004 ], [ -122.999796776, 50.092057226000065 ], [ -122.999677247999941, 50.092057225000104 ], [ -122.999377533999947, 50.09233436400006 ], [ -122.999377367999955, 50.092334763000103 ], [ -122.999377364999987, 50.092596858000064 ], [ -122.999796772999986, 50.092596860000107 ], [ -122.999796772999986, 50.092723856000084 ], [ -122.999802733999928, 50.092724464000092 ], [ -122.999907335999978, 50.092782563000064 ], [ -122.999999934999977, 50.092929064000096 ], [ -122.999999934999977, 50.092949822000115 ], [ -123.000366641999932, 50.092959823000086 ], [ -123.00039320199997, 50.0925568870001 ], [ -123.00103126799999, 50.092574285000126 ], [ -123.001048789999913, 50.092308402000121 ], [ -123.003335223999969, 50.09237071600004 ], [ -123.003451223999917, 50.090609144000048 ], [ -123.003488277999949, 50.090612505000124 ], [ -123.004126212999921, 50.090633391000019 ], [ -123.005958289999953, 50.090531304000073 ], [ -123.006167889000011, 50.090748398000059 ], [ -123.006774992999979, 50.09102409900008 ], [ -123.007730521999946, 50.091447708000061 ], [ -123.007977078999915, 50.09156960300006 ], [ -123.008320713000018, 50.091684198000038 ], [ -123.00868662, 50.091734694000081 ], [ -123.008972005999937, 50.091727192000043 ], [ -123.00969558599999, 50.091708107000102 ], [ -123.010116089999954, 50.091652086000082 ], [ -123.010856506999943, 50.091496697000139 ], [ -123.011184215999947, 50.091390184000019 ], [ -123.011443891999988, 50.091305797000082 ], [ -123.011939172999945, 50.091219394000071 ], [ -123.01237208199997, 50.091209493000086 ], [ -123.012602907999934, 50.091273382000068 ], [ -123.012716318999978, 50.091356485000105 ], [ -123.01277200899996, 50.091467800000089 ], [ -123.01276481099994, 50.091683505000098 ], [ -123.012493288, 50.09258039000013 ], [ -123.012545910999904, 50.092845494000116 ], [ -123.012641053, 50.0929725680001 ], [ -123.012757711999924, 50.093128299000092 ], [ -123.012949702999919, 50.093384608000108 ], [ -123.012963709999923, 50.093422243000099 ], [ -123.012984136999975, 50.09347717 ], [ -123.013051292999933, 50.093657650000047 ], [ -123.013057911999965, 50.093675401000034 ], [ -123.013060416999949, 50.093702717000099 ], [ -123.013078407999913, 50.093896402000091 ], [ -123.013052413999944, 50.094020381000107 ], [ -123.013031498999979, 50.094120112000041 ], [ -123.012982336999968, 50.094176862000069 ], [ -123.01296385099999, 50.094198254000084 ], [ -123.01289530699999, 50.09427740100007 ], [ -123.01268272499999, 50.094362505000028 ], [ -123.011360291999921, 50.094582086000038 ], [ -123.01079973499999, 50.094723499000104 ], [ -123.010792256999949, 50.094725386000022 ], [ -123.01072841499996, 50.094723651000031 ], [ -123.010727222999947, 50.094741790000057 ], [ -123.010458402999959, 50.094809596000111 ], [ -123.009952317999989, 50.094890301000106 ], [ -123.009521684999982, 50.094906498000093 ], [ -123.009317447999933, 50.094891114000056 ], [ -123.009127818999943, 50.094876802000044 ], [ -123.008124084999963, 50.094613135000024 ], [ -123.007718185999948, 50.094506488000057 ], [ -123.007216469999918, 50.094478481000053 ], [ -123.006471301999952, 50.09468402300007 ], [ -123.005474844999966, 50.094796363000043 ], [ -123.004966075, 50.094917471000052 ], [ -123.003545971999927, 50.095472616000073 ], [ -123.003302493999968, 50.095600953000051 ], [ -123.002772425000018, 50.095994760000103 ], [ -123.002099210999972, 50.096494898000067 ], [ -123.002016411999989, 50.096923619000044 ], [ -123.002030803999943, 50.09705886700003 ], [ -122.999796754999977, 50.096997962000032 ], [ -122.999796752999927, 50.097453570000063 ], [ -122.999377301999985, 50.097453567000059 ], [ -122.999377297999928, 50.097723384000105 ], [ -122.998957845999925, 50.097723382000062 ], [ -122.998957839999917, 50.097993198000012 ], [ -122.998118928999972, 50.097993187000064 ], [ -122.998118917999932, 50.098263005000035 ], [ -122.996860544999961, 50.098262978000051 ], [ -122.996860633000011, 50.096913893000135 ], [ -122.995816236999971, 50.096913860000015 ], [ -122.995813533999979, 50.096936664000076 ], [ -122.995327334999971, 50.097014064000128 ], [ -122.995182828999987, 50.097104857000033 ], [ -122.995182821999947, 50.097183652000076 ], [ -122.995057427999939, 50.097183647000051 ], [ -122.995051034999946, 50.097187664000096 ], [ -122.994822534999969, 50.097426464000115 ], [ -122.994763333999984, 50.097556924000074 ], [ -122.994763284999948, 50.097993085000091 ], [ -122.994398823999958, 50.097993068000058 ], [ -122.994335833999955, 50.098032864000103 ], [ -122.993924353999944, 50.098152443000103 ], [ -122.993924340999968, 50.098262862000055 ], [ -122.993544466999978, 50.098262841000071 ], [ -122.993529933999952, 50.098267064000012 ], [ -122.993504881999968, 50.098263444000082 ], [ -122.993504846999954, 50.098532655000042 ], [ -122.992246466, 50.098532579000121 ], [ -122.992246460999937, 50.098559651000123 ], [ -122.99248513399999, 50.098683364000109 ], [ -122.992489153999912, 50.098802411000051 ], [ -122.99266588399999, 50.098802422000034 ], [ -122.992665841999937, 50.099085495000111 ], [ -122.992977227999972, 50.099342075000017 ], [ -122.993085268999963, 50.099342082000142 ], [ -122.993085252999933, 50.099454365000049 ], [ -122.993211188999936, 50.099611907000089 ], [ -122.993504699999903, 50.09961192300004 ], [ -122.993504686000023, 50.099713072000085 ], [ -122.99549522299999, 50.099767451000048 ], [ -122.995441986999978, 50.100573585000049 ], [ -122.998156479, 50.100647683000055 ], [ -122.998127587999946, 50.101085541000018 ], [ -123.00060541799995, 50.101153120000106 ], [ -123.000596850999926, 50.101283055000131 ], [ -123.000562416999969, 50.101451013 ], [ -123.000011209999911, 50.102356933000038 ], [ -122.999903300999961, 50.102534300000102 ], [ -122.999691293999945, 50.102736405000059 ], [ -122.999586843999921, 50.102798465000014 ], [ -122.999455414999915, 50.102876608000052 ], [ -122.999093594, 50.102994497000033 ], [ -122.998096707999963, 50.103217392000083 ], [ -122.997713139999945, 50.103327733000121 ], [ -122.997153916999963, 50.10348860600002 ], [ -122.996647692999915, 50.103526112000104 ], [ -122.996323800999974, 50.103490807000071 ], [ -122.99620727199999, 50.103478095000064 ], [ -122.996038576999965, 50.103420278000094 ], [ -122.995536897999941, 50.103248296000046 ], [ -122.99534710799999, 50.103217344000043 ], [ -122.995172793, 50.10318889100008 ], [ -122.994799114999978, 50.103232708000107 ], [ -122.994544087999955, 50.103327580000034 ], [ -122.99434868699997, 50.103400303000036 ], [ -122.99405527, 50.103606396000046 ], [ -122.993844303999978, 50.103813907000102 ], [ -122.993622408999954, 50.104122814000021 ], [ -122.992918853999967, 50.104103588000044 ], [ -122.992850047, 50.105144527000071 ], [ -122.99271469599995, 50.105258591000059 ], [ -122.992274501999944, 50.105462494000029 ], [ -122.99104618799997, 50.105775306000076 ], [ -122.990874004999966, 50.105883109000054 ], [ -122.990504190999985, 50.106289513 ], [ -122.989982192999946, 50.107010305000081 ], [ -122.98978899299999, 50.107900311000051 ], [ -122.989766370999945, 50.107963318 ], [ -122.989481880999975, 50.108755597 ], [ -122.98913176899994, 50.109270523000085 ], [ -122.989100496999981, 50.109316502000141 ], [ -122.988598397999965, 50.109734699000121 ], [ -122.988535011999915, 50.109775370000101 ], [ -122.98750521099997, 50.110436206000031 ], [ -122.986686803999987, 50.1112343980001 ], [ -122.986445800999917, 50.111682105000092 ], [ -122.986240585999923, 50.112308991000091 ], [ -122.986162371999967, 50.112898003000033 ], [ -122.986167692999985, 50.11372588700003 ], [ -122.986359310999944, 50.115121193000064 ], [ -122.986383601999947, 50.116021608000061 ], [ -122.986377739999966, 50.116761454000034 ], [ -122.986362900999922, 50.118637399000107 ], [ -122.986218991999962, 50.11977340100001 ], [ -122.98621140600001, 50.119798383000095 ], [ -122.985960039999938, 50.120627628000136 ], [ -122.985876783999942, 50.12090218400003 ], [ -122.98585911899994, 50.121017408000114 ], [ -122.985854066999934, 50.121050056000058 ], [ -122.985832940999941, 50.121187504000062 ], [ -122.985785898999978, 50.121493499000039 ], [ -122.985796325999956, 50.121592590000034 ], [ -122.985822280999969, 50.121839447000042 ], [ -122.984269103999964, 50.121796904000114 ], [ -122.984268946999947, 50.122275618000053 ], [ -122.983009943999903, 50.122275441000099 ] ], [ [ -122.992375877999919, 50.103432502000089 ], [ -122.992385864999932, 50.103281434000053 ], [ -122.989671226000013, 50.103207194000078 ], [ -122.989685559999884, 50.102990598000119 ], [ -122.989741242999955, 50.102149033000103 ], [ -122.989748457999923, 50.102040004000045 ], [ -122.989728954, 50.102040002000045 ], [ -122.98972893, 50.102155451000066 ], [ -122.989728896999935, 50.10230981900002 ], [ -122.989432801999968, 50.102309793000131 ], [ -122.989309404999972, 50.102309782000106 ], [ -122.989309388999985, 50.102374116000085 ], [ -122.989309226999978, 50.103105178000106 ], [ -122.989309177999971, 50.103326961000072 ], [ -122.991426107999928, 50.103384868000106 ], [ -122.991424676999912, 50.103406496000055 ], [ -122.992375877999919, 50.103432502000089 ] ], [ [ -122.998684130999948, 50.096374293000132 ], [ -122.99875531899994, 50.095295025000084 ], [ -122.998538465999914, 50.095295023000105 ], [ -122.998538457999956, 50.095564840000094 ], [ -122.997699588999922, 50.095564827000096 ], [ -122.997699575999903, 50.095834643000067 ], [ -122.997280139999972, 50.095834634000035 ], [ -122.997280093999933, 50.096644085000051 ], [ -122.99811898199999, 50.096644103000088 ], [ -122.998118992999949, 50.096374286000085 ], [ -122.998684130999948, 50.096374293000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90160155", "BldgCostT": "53834819", "sL_LossRatio": "0.844615048923153", "sL_AssetLoss": "61686.54", "sL_BldgLoss": "52101.38", "sL_StrLoss": "43794.78", "sL_NStrLoss": "8306.6", "sL_ContLoss": "9585.16", "geom_point": "0101000020E6100000A9034AB723BF5EC08426F50A300C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.980768386999941, 50.099175812000027 ], [ -122.980283591999964, 50.098745004000094 ], [ -122.979918599999948, 50.098235603000056 ], [ -122.979675210999972, 50.098045391000085 ], [ -122.979198523999969, 50.097798578000102 ], [ -122.978965099999982, 50.09767771000012 ], [ -122.978775806999977, 50.097474587000121 ], [ -122.978776091, 50.097258593000035 ], [ -122.978852387999936, 50.097121291000114 ], [ -122.979002893999962, 50.097003900000033 ], [ -122.979244600999948, 50.096902584000077 ], [ -122.979406748999963, 50.09687940800012 ], [ -122.979445202999955, 50.096873897000137 ], [ -122.979595408999927, 50.096887009000056 ], [ -122.979692715999974, 50.09689690500003 ], [ -122.980141180999979, 50.097032495000029 ], [ -122.98036319699996, 50.097060202000122 ], [ -122.980542892999949, 50.097050709000037 ], [ -122.980713688999955, 50.097006804000088 ], [ -122.98085531, 50.096939610000092 ], [ -122.98095199, 50.096852301000098 ], [ -122.981083310999978, 50.096644494000067 ], [ -122.98118338099998, 50.096359292000038 ], [ -122.981185908999947, 50.096173089000089 ], [ -122.981315606999971, 50.095989505000027 ], [ -122.981597996999966, 50.095738992000129 ], [ -122.98166569599999, 50.095520507000046 ], [ -122.981545107999949, 50.095060108000041 ], [ -122.981291203999916, 50.094669791000065 ], [ -122.981261707999934, 50.094440500000111 ], [ -122.981487401, 50.094095799000158 ], [ -122.981515206999958, 50.09393009900004 ], [ -122.98142939199991, 50.09374779500012 ], [ -122.981186701999931, 50.093462193000121 ], [ -122.9810175, 50.093102101000035 ], [ -122.980364676, 50.092251990000129 ], [ -122.980164391999949, 50.092151111000128 ], [ -122.981298289, 50.092239208000123 ], [ -122.982913234999941, 50.09272364300012 ], [ -122.983020382999939, 50.092755143000055 ], [ -122.983019962999961, 50.093944706000102 ], [ -122.983439382999947, 50.09394476600005 ], [ -122.983439197999928, 50.094484400000063 ], [ -122.983858623999964, 50.094484459000064 ], [ -122.983858802999976, 50.09394482500003 ], [ -122.984697643999965, 50.09394493800005 ], [ -122.984697814999947, 50.093405304000036 ], [ -122.98516783, 50.093405365000088 ], [ -122.985956061999929, 50.093405463000053 ], [ -122.985956113999961, 50.093224146000068 ], [ -122.987989265999943, 50.093279145000089 ], [ -122.98966404699992, 50.093337455000061 ], [ -122.989694762999974, 50.09290752200009 ], [ -122.989538983, 50.092689645000092 ], [ -122.98973095299999, 50.092694899000016 ], [ -122.989730971999933, 50.092596407000073 ], [ -122.990048286, 50.092596434000036 ], [ -122.990059635999984, 50.092424835000031 ], [ -122.990569820999937, 50.09243879400006 ], [ -122.99056984399999, 50.092326660000062 ], [ -122.990150435999965, 50.092326626000052 ], [ -122.99015065899998, 50.091247357000093 ], [ -122.990989450999962, 50.091247424000088 ], [ -122.990989502, 50.090977607000106 ], [ -122.991408895999939, 50.090977639000066 ], [ -122.991408943999929, 50.090707821000073 ], [ -122.99182833699993, 50.090707852000094 ], [ -122.991828381999966, 50.09043803400008 ], [ -122.992247770999981, 50.0904380630001 ], [ -122.992247814, 50.090168246000054 ], [ -122.992667200999961, 50.09016827300011 ], [ -122.992667315999981, 50.089418812000069 ], [ -122.992242405999932, 50.089407194000081 ], [ -122.992295804999969, 50.088599227 ], [ -122.990735803999911, 50.088556557000054 ], [ -122.990771970999958, 50.088009599000053 ], [ -122.990570690999931, 50.088009582000026 ], [ -122.99057058399994, 50.088549217000079 ], [ -122.989312464999927, 50.088549109000041 ], [ -122.989312403999989, 50.088818926000094 ], [ -122.988054278999982, 50.088818803000017 ], [ -122.988054312999964, 50.088677827000026 ], [ -122.988054480999935, 50.088009351000046 ], [ -122.987635110999932, 50.088009307000064 ], [ -122.987635180999973, 50.08773948900005 ], [ -122.987215815999946, 50.087739444000064 ], [ -122.987216028999939, 50.086929991000034 ], [ -122.987635388999976, 50.08693003700008 ], [ -122.987635458999932, 50.086660219000073 ], [ -122.988474170999964, 50.086660305000088 ], [ -122.988474291, 50.086162750000014 ], [ -122.988860497999937, 50.086136399000104 ], [ -122.988896304999969, 50.086090382000158 ], [ -122.989650877999978, 50.085810932000093 ], [ -122.989779684999974, 50.085763206000045 ], [ -122.98980001299995, 50.08576933100003 ], [ -122.991956913999957, 50.086416732000046 ], [ -122.993232994999957, 50.087294224000097 ], [ -122.994291922999977, 50.087937788000019 ], [ -122.994259993999975, 50.087949311000116 ], [ -122.99413999799998, 50.088071988000138 ], [ -122.994066593999932, 50.088230215000131 ], [ -122.99405939799999, 50.088306788000168 ], [ -122.993995704999918, 50.088985806000025 ], [ -122.994603807999965, 50.08899160100006 ], [ -122.994784215999957, 50.089055084000044 ], [ -122.99484329699996, 50.089135012000099 ], [ -122.99482552399995, 50.089276604000069 ], [ -122.994406803999979, 50.089855399000086 ], [ -122.99406099399998, 50.09036870700006 ], [ -122.993835287999943, 50.090460597000039 ], [ -122.993129781000022, 50.090615891000063 ], [ -122.992992817999948, 50.09069268300005 ], [ -122.992958382999959, 50.090711992000116 ], [ -122.992865918999939, 50.090884900000127 ], [ -122.992857907, 50.090975632000031 ], [ -122.992854783999988, 50.091010598000032 ], [ -122.992645802999945, 50.0914627820001 ], [ -122.992650393999924, 50.091562812000056 ], [ -122.992768993999931, 50.091673107000133 ], [ -122.993304713999947, 50.091885687000065 ], [ -122.993411178999949, 50.091968698000102 ], [ -122.993442290999923, 50.092110808000044 ], [ -122.992781003999951, 50.092169208000044 ], [ -122.992109675999984, 50.092230896000039 ], [ -122.991885731999929, 50.092277026000026 ], [ -122.991804790999979, 50.092293710000092 ], [ -122.991646773999946, 50.092374323000044 ], [ -122.991525297999914, 50.092436307000057 ], [ -122.991174278999949, 50.092731687000054 ], [ -122.990952202999907, 50.092875006000057 ], [ -122.990614135999948, 50.093037722000069 ], [ -122.990439216999974, 50.0931219 ], [ -122.990276979999948, 50.093291090000037 ], [ -122.990268204999936, 50.093423108000074 ], [ -122.990273282999979, 50.09412960300007 ], [ -122.990352201999926, 50.094226203000112 ], [ -122.989679433999953, 50.094774624000124 ], [ -122.989508548999964, 50.094967900000107 ], [ -122.989442888999989, 50.095114553000059 ], [ -122.989449367999939, 50.095254962000112 ], [ -122.989450726999934, 50.095284536000086 ], [ -122.989460098999942, 50.095488416000052 ], [ -122.989425398999941, 50.09601380600008 ], [ -122.989612101999953, 50.096257406000056 ], [ -122.989623071999972, 50.096263028000088 ], [ -122.989886786999975, 50.096397991000075 ], [ -122.990271890999935, 50.096476993000074 ], [ -122.990099787999952, 50.096752099000092 ], [ -122.990003404, 50.097004099000053 ], [ -122.989945900999942, 50.097386699000076 ], [ -122.989950000999912, 50.097641391000124 ], [ -122.99001799899996, 50.097946492000098 ], [ -122.99017278800001, 50.098292608000058 ], [ -122.990253477999929, 50.098430247000039 ], [ -122.990402787999955, 50.098684908000095 ], [ -122.990168588999936, 50.098778396000093 ], [ -122.990056501000012, 50.098887798000135 ], [ -122.989821728999914, 50.09926370400003 ], [ -122.989730389999977, 50.099237277000078 ], [ -122.989306908999964, 50.099114689000061 ], [ -122.988895338999939, 50.099091930000064 ], [ -122.987986806999913, 50.099041703000097 ], [ -122.987804696999916, 50.099087099000045 ], [ -122.987599487999915, 50.099292005000024 ], [ -122.987418409999961, 50.099533586000021 ], [ -122.987245198999958, 50.099741207000108 ], [ -122.986852510999981, 50.09998498300007 ], [ -122.98678849099997, 50.100024704000134 ], [ -122.986286410999952, 50.100676697000061 ], [ -122.985945598999976, 50.101132493000065 ], [ -122.985895021999937, 50.101219301000107 ], [ -122.985776511999973, 50.101720787000019 ], [ -122.985704183999971, 50.102093111000038 ], [ -122.985748494999939, 50.10226980100002 ], [ -122.985860294999938, 50.102736190000044 ], [ -122.984558283999931, 50.103127904000054 ], [ -122.983424895999946, 50.103064485000104 ], [ -122.983381790999942, 50.102807788000106 ], [ -122.983018009999981, 50.102238193000062 ], [ -122.982739713999976, 50.101834609000058 ], [ -122.981699900999928, 50.100762410000058 ], [ -122.981335678999955, 50.100388899000109 ], [ -122.981232482999971, 50.100000898000076 ], [ -122.98110280899995, 50.099513386000126 ], [ -122.981079750999982, 50.099490134000064 ], [ -122.980768386999941, 50.099175812000027 ] ], [ [ -122.982180122, 50.096642751000132 ], [ -122.983857896999922, 50.096642996000064 ], [ -122.983858258999973, 50.095563728000052 ], [ -122.98343882599994, 50.09556366900005 ], [ -122.983439104999903, 50.094754218000126 ], [ -122.982600249999933, 50.094754094000109 ], [ -122.982599859999979, 50.095833363000047 ], [ -122.982180423999978, 50.095833300000045 ], [ -122.982180122, 50.096642751000132 ], [ -122.981760678999976, 50.096642686000038 ], [ -122.981760473999898, 50.097182319000055 ], [ -122.98217992399999, 50.097182385000096 ], [ -122.982180122, 50.096642751000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179028707", "BldgCostT": "110245017", "sL_LossRatio": "0.75201897308882", "sL_AssetLoss": "96515.65", "sL_BldgLoss": "72581.6", "sL_StrLoss": "51693.3", "sL_NStrLoss": "20888.3", "sL_ContLoss": "23934.05", "geom_point": "0101000020E61000003EDE78D29DBF5EC047C46BC9F00B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.989679433999953, 50.094774624000124 ], [ -122.990352201999926, 50.094226203000112 ], [ -122.990273282999979, 50.09412960300007 ], [ -122.990268204999936, 50.093423108000074 ], [ -122.990276979999948, 50.093291090000037 ], [ -122.990439216999974, 50.0931219 ], [ -122.990614135999948, 50.093037722000069 ], [ -122.990952202999907, 50.092875006000057 ], [ -122.991174278999949, 50.092731687000054 ], [ -122.991525297999914, 50.092436307000057 ], [ -122.991646773999946, 50.092374323000044 ], [ -122.991804790999979, 50.092293710000092 ], [ -122.991885731999929, 50.092277026000026 ], [ -122.992109675999984, 50.092230896000039 ], [ -122.992781003999951, 50.092169208000044 ], [ -122.993442290999923, 50.092110808000044 ], [ -122.993411178999949, 50.091968698000102 ], [ -122.993304713999947, 50.091885687000065 ], [ -122.992768993999931, 50.091673107000133 ], [ -122.992650393999924, 50.091562812000056 ], [ -122.992645802999945, 50.0914627820001 ], [ -122.992854783999988, 50.091010598000032 ], [ -122.992857907, 50.090975632000031 ], [ -122.992865918999939, 50.090884900000127 ], [ -122.992958382999959, 50.090711992000116 ], [ -122.992992817999948, 50.09069268300005 ], [ -122.993129781000022, 50.090615891000063 ], [ -122.993835287999943, 50.090460597000039 ], [ -122.99406099399998, 50.09036870700006 ], [ -122.994406803999979, 50.089855399000086 ], [ -122.99482552399995, 50.089276604000069 ], [ -122.99484329699996, 50.089135012000099 ], [ -122.994784215999957, 50.089055084000044 ], [ -122.994603807999965, 50.08899160100006 ], [ -122.993995704999918, 50.088985806000025 ], [ -122.99405939799999, 50.088306788000168 ], [ -122.994066593999932, 50.088230215000131 ], [ -122.99413999799998, 50.088071988000138 ], [ -122.994259993999975, 50.087949311000116 ], [ -122.994291922999977, 50.087937788000019 ], [ -122.99432010299999, 50.087927606000029 ], [ -122.994470927999927, 50.087925072000075 ], [ -122.994480749999951, 50.08792492200007 ], [ -122.994758530999931, 50.087920263000022 ], [ -122.99476439399993, 50.087938154000021 ], [ -122.995007171999987, 50.088395096000092 ], [ -122.995472817999925, 50.089466565000109 ], [ -122.995477836999953, 50.089546696000077 ], [ -122.99592984499999, 50.090821122000136 ], [ -122.996022000999972, 50.09142939600008 ], [ -122.996055216999963, 50.091648870000064 ], [ -122.996129543999956, 50.091761800000064 ], [ -122.99631189199999, 50.092038997 ], [ -122.996873934999883, 50.092213704000066 ], [ -122.997047993999956, 50.092267794000108 ], [ -122.997534603999952, 50.092420508000053 ], [ -122.997502718999939, 50.092585206000074 ], [ -122.997505324999963, 50.092658743000094 ], [ -122.997528697999897, 50.093314708000094 ], [ -122.997598115999921, 50.093577510000102 ], [ -122.997740683999936, 50.09381179800004 ], [ -122.997798724999967, 50.093928088000027 ], [ -122.997935897000019, 50.094203094000093 ], [ -122.998011697999985, 50.094476013000119 ], [ -122.998000800999961, 50.094641206000041 ], [ -122.997925792000018, 50.094759808000042 ], [ -122.997855224999967, 50.094808888000102 ], [ -122.99778650899998, 50.094856690000043 ], [ -122.997498223999969, 50.094994281000069 ], [ -122.997148112, 50.09516138599999 ], [ -122.996916536999947, 50.09530657300013 ], [ -122.996371653999944, 50.095648126000121 ], [ -122.995977680999943, 50.095895096000071 ], [ -122.995826997999956, 50.095930594 ], [ -122.995604403999906, 50.095911886000046 ], [ -122.99478838499999, 50.09557630700008 ], [ -122.994657789999962, 50.095522600000074 ], [ -122.994378000999987, 50.095925763000096 ], [ -122.994054804999976, 50.096391397000062 ], [ -122.993871567999946, 50.096287607000072 ], [ -122.992629503000018, 50.095584105000086 ], [ -122.99361878799999, 50.095008304000061 ], [ -122.992926607999919, 50.094580003000019 ], [ -122.991641903999977, 50.095403139000105 ], [ -122.991630483999955, 50.095410469000072 ], [ -122.991061209999913, 50.095775206000035 ], [ -122.990645605999958, 50.096114706000066 ], [ -122.99029848699999, 50.096451227000109 ], [ -122.990271890999935, 50.096476993000074 ], [ -122.989886786999975, 50.096397991000075 ], [ -122.989623071999972, 50.096263028000088 ], [ -122.989612101999953, 50.096257406000056 ], [ -122.989425398999941, 50.09601380600008 ], [ -122.989460098999942, 50.095488416000052 ], [ -122.989450726999934, 50.095284536000086 ], [ -122.989449367999939, 50.095254962000112 ], [ -122.989442888999989, 50.095114553000059 ], [ -122.989508548999964, 50.094967900000107 ], [ -122.989679433999953, 50.094774624000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239898191", "BldgCostT": "159109345", "sL_LossRatio": "0.888768347328355", "sL_AssetLoss": "113838.1", "sL_BldgLoss": "101175.7", "sL_StrLoss": "71253.5", "sL_NStrLoss": "29922.2", "sL_ContLoss": "12662.4", "geom_point": "0101000020E610000040D763C7EBBF5EC08C51005A2D0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.99476439399993, 50.087938154000021 ], [ -122.994758530999931, 50.087920263000022 ], [ -122.994480749999951, 50.08792492200007 ], [ -122.994470927999927, 50.087925072000075 ], [ -122.99432010299999, 50.087927606000029 ], [ -122.994291922999977, 50.087937788000019 ], [ -122.993232994999957, 50.087294224000097 ], [ -122.991956913999957, 50.086416732000046 ], [ -122.98980001299995, 50.08576933100003 ], [ -122.989779684999974, 50.085763206000045 ], [ -122.989933619999974, 50.085687790000129 ], [ -122.990373600999959, 50.085609332000075 ], [ -122.990471388999964, 50.085591896000054 ], [ -122.99081441199999, 50.085586805000098 ], [ -122.990884949999923, 50.085594282000038 ], [ -122.991740796999977, 50.085685108000078 ], [ -122.992240593999924, 50.085635790000019 ], [ -122.992464188999932, 50.08565989800011 ], [ -122.993134805999887, 50.085714189000036 ], [ -122.993365106999974, 50.085657509 ], [ -122.993839995999934, 50.085414096000058 ], [ -122.994605779, 50.085254097000139 ], [ -122.994867088999982, 50.085046201000083 ], [ -122.99509940199999, 50.084938302000062 ], [ -122.995248668999949, 50.084908714000044 ], [ -122.99557421, 50.084844199000052 ], [ -122.995983815999978, 50.08457109800004 ], [ -122.996022762999985, 50.084558386000069 ], [ -122.99602271899991, 50.085102075000087 ], [ -122.996557845999916, 50.085116690000085 ], [ -122.996519363999965, 50.085699812000087 ], [ -122.998655806999935, 50.085758136000038 ], [ -122.998561813999956, 50.087183418000123 ], [ -122.999317134999941, 50.087104064000059 ], [ -122.999377435999946, 50.087112436000076 ], [ -122.999377438999943, 50.086930693000014 ], [ -123.000216156999969, 50.086930694000046 ], [ -123.000216154999947, 50.086660878000032 ], [ -123.000635510999956, 50.086660875000057 ], [ -123.000635504999977, 50.086121241000036 ], [ -123.001474206999916, 50.086121233 ], [ -123.001474199999947, 50.085851415000128 ], [ -122.999796800999889, 50.085851424000097 ], [ -122.999796801999963, 50.085581606000034 ], [ -122.998538760999978, 50.08558159800004 ], [ -122.998538785000036, 50.084772145000038 ], [ -122.998119444999986, 50.084772139000059 ], [ -122.99811946899996, 50.084171322000024 ], [ -122.998297694999962, 50.08420239700007 ], [ -122.998779198999912, 50.084387387000064 ], [ -122.999178798999949, 50.0844577 ], [ -122.999555707999917, 50.084467902000036 ], [ -123.000789993999902, 50.084266804000038 ], [ -123.001123989999925, 50.08424980500007 ], [ -123.00138298499995, 50.084288293000029 ], [ -123.001571276999982, 50.084401395000043 ], [ -123.001613205999973, 50.084550993000093 ], [ -123.001528286999942, 50.084692696000047 ], [ -123.001316908999954, 50.0848029980001 ], [ -123.000940906999958, 50.084905202000066 ], [ -122.99992330399999, 50.085002481000039 ], [ -122.999278426999979, 50.084919310000089 ], [ -122.999171683999975, 50.084988305000124 ], [ -122.999168303999966, 50.085104307000108 ], [ -122.999303105999942, 50.085180896000089 ], [ -122.999793902999954, 50.085161885000055 ], [ -123.00128939799994, 50.085347502000062 ], [ -123.00176968699995, 50.085360604000108 ], [ -123.002092403999967, 50.085301882000117 ], [ -123.002402117999964, 50.085166405000109 ], [ -123.003231791999951, 50.084460213000106 ], [ -123.003587741999965, 50.084232464000117 ], [ -123.00399016199998, 50.084232450000052 ], [ -123.003990184999978, 50.084502268000058 ], [ -123.004409521999975, 50.084502253000075 ], [ -123.00440953499999, 50.084638744000067 ], [ -123.004336808999966, 50.084777299000052 ], [ -123.00379609099997, 50.085406807 ], [ -123.00372319899995, 50.085578936000083 ], [ -123.003587404999962, 50.08589960400009 ], [ -123.003437187999921, 50.086013403000081 ], [ -123.00324499099996, 50.086065700000127 ], [ -123.002748399999945, 50.08606660600006 ], [ -123.002399516999958, 50.08611918900008 ], [ -123.002125008999911, 50.086229505000041 ], [ -123.001785908999949, 50.086557697000096 ], [ -123.001593235999948, 50.086619238000026 ], [ -123.003151652999932, 50.086686461000042 ], [ -123.003151702999915, 50.087470287000073 ], [ -123.00440979399994, 50.087470246000088 ], [ -123.004409818999989, 50.087740063000126 ], [ -123.006506648999931, 50.087739964999983 ], [ -123.006506611999924, 50.087470148000079 ], [ -123.008416991, 50.087470025000101 ], [ -123.008698347999925, 50.08840810200013 ], [ -123.008382187000024, 50.08838659200007 ], [ -123.008076510999956, 50.088419585000054 ], [ -123.00758979699999, 50.088524287000027 ], [ -123.006737513999937, 50.088829509000085 ], [ -123.006320287, 50.088899100000013 ], [ -123.005796499999931, 50.088952292000045 ], [ -123.005345084999959, 50.088966996000131 ], [ -123.004998972999942, 50.088912604 ], [ -123.004640887000022, 50.088763394000075 ], [ -123.004457319999958, 50.088641389000081 ], [ -123.004180179999977, 50.088368488000079 ], [ -123.003954580999959, 50.088182396000086 ], [ -123.003629695, 50.088018794000085 ], [ -123.003400301999989, 50.087955809000064 ], [ -123.003127010999947, 50.087920494000052 ], [ -123.002454307999969, 50.087920095000136 ], [ -123.002283115999916, 50.087928103000067 ], [ -123.00197870699999, 50.087984606000099 ], [ -123.001593908999922, 50.088134208000028 ], [ -123.000581705999977, 50.08853038300002 ], [ -123.000346492999967, 50.088619388000048 ], [ -123.000012398999957, 50.088703677000119 ], [ -122.999143087, 50.088923005 ], [ -122.999144609, 50.089238910000084 ], [ -122.999159807999959, 50.089900598000057 ], [ -122.99875020399999, 50.089959588000042 ], [ -122.998446206999958, 50.090055938000077 ], [ -122.99830299199995, 50.090101308000101 ], [ -122.997796697999945, 50.09037630400006 ], [ -122.997706008999927, 50.090451157000132 ], [ -122.997534714999915, 50.090592529000105 ], [ -122.997395781999941, 50.090707207000015 ], [ -122.99631189199999, 50.092038997 ], [ -122.996129543999956, 50.091761800000064 ], [ -122.996055216999963, 50.091648870000064 ], [ -122.996022000999972, 50.09142939600008 ], [ -122.99592984499999, 50.090821122000136 ], [ -122.995477836999953, 50.089546696000077 ], [ -122.995472817999925, 50.089466565000109 ], [ -122.995007171999987, 50.088395096000092 ], [ -122.99476439399993, 50.087938154000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123654085", "BldgCostT": "83618335", "sL_LossRatio": "0.873494226308745", "sL_AssetLoss": "108258.3", "sL_BldgLoss": "94563", "sL_StrLoss": "65296", "sL_NStrLoss": "29267", "sL_ContLoss": "13695.3", "geom_point": "0101000020E61000000D1C86457BC05EC0604E3BC28A0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.012602907999934, 50.091273382000068 ], [ -123.01237208199997, 50.091209493000086 ], [ -123.011939172999945, 50.091219394000071 ], [ -123.011443891999988, 50.091305797000082 ], [ -123.011184215999947, 50.091390184000019 ], [ -123.010856506999943, 50.091496697000139 ], [ -123.010116089999954, 50.091652086000082 ], [ -123.00969558599999, 50.091708107000102 ], [ -123.008972005999937, 50.091727192000043 ], [ -123.00868662, 50.091734694000081 ], [ -123.008320713000018, 50.091684198000038 ], [ -123.007977078999915, 50.09156960300006 ], [ -123.007730521999946, 50.091447708000061 ], [ -123.006774992999979, 50.09102409900008 ], [ -123.006167889000011, 50.090748398000059 ], [ -123.005958289999953, 50.090531304000073 ], [ -123.004126212999921, 50.090633391000019 ], [ -123.003488277999949, 50.090612505000124 ], [ -123.003451223999917, 50.090609144000048 ], [ -123.003462476, 50.090438271000089 ], [ -123.002121286999966, 50.090438304000024 ], [ -123.00209700299996, 50.090434202000047 ], [ -123.001382872999926, 50.090266096000043 ], [ -123.000220998999978, 50.089992581000082 ], [ -123.000006974999962, 50.089959676000042 ], [ -122.999644923999938, 50.089904009000087 ], [ -122.999159807999959, 50.089900598000057 ], [ -122.999144609, 50.089238910000084 ], [ -122.999143087, 50.088923005 ], [ -123.000012398999957, 50.088703677000119 ], [ -123.000346492999967, 50.088619388000048 ], [ -123.000581705999977, 50.08853038300002 ], [ -123.001593908999922, 50.088134208000028 ], [ -123.00197870699999, 50.087984606000099 ], [ -123.002283115999916, 50.087928103000067 ], [ -123.002454307999969, 50.087920095000136 ], [ -123.003127010999947, 50.087920494000052 ], [ -123.003400301999989, 50.087955809000064 ], [ -123.003629695, 50.088018794000085 ], [ -123.003954580999959, 50.088182396000086 ], [ -123.004180179999977, 50.088368488000079 ], [ -123.004457319999958, 50.088641389000081 ], [ -123.004640887000022, 50.088763394000075 ], [ -123.004998972999942, 50.088912604 ], [ -123.005345084999959, 50.088966996000131 ], [ -123.005796499999931, 50.088952292000045 ], [ -123.006320287, 50.088899100000013 ], [ -123.006737513999937, 50.088829509000085 ], [ -123.00758979699999, 50.088524287000027 ], [ -123.008076510999956, 50.088419585000054 ], [ -123.008382187000024, 50.08838659200007 ], [ -123.008698347999925, 50.08840810200013 ], [ -123.009537796999936, 50.089220161000078 ], [ -123.010477615999918, 50.090129213000068 ], [ -123.011666591999955, 50.09002339600007 ], [ -123.012320679999959, 50.089883702000087 ], [ -123.012753460999974, 50.089730692000053 ], [ -123.013981583999936, 50.089764040000098 ], [ -123.013979014999975, 50.089803195000052 ], [ -123.01473886, 50.089823821000067 ], [ -123.014539569999968, 50.092861654000075 ], [ -123.013696694999908, 50.093443403000052 ], [ -123.013461018999976, 50.093506382000108 ], [ -123.01346047, 50.093506542000114 ], [ -123.013459899999972, 50.093506679000072 ], [ -123.013060416999949, 50.093702717000099 ], [ -123.013057911999965, 50.093675401000034 ], [ -123.013051292999933, 50.093657650000047 ], [ -123.012984136999975, 50.09347717 ], [ -123.012963709999923, 50.093422243000099 ], [ -123.012949702999919, 50.093384608000108 ], [ -123.012757711999924, 50.093128299000092 ], [ -123.012641053, 50.0929725680001 ], [ -123.012545910999904, 50.092845494000116 ], [ -123.012493288, 50.09258039000013 ], [ -123.01276481099994, 50.091683505000098 ], [ -123.01277200899996, 50.091467800000089 ], [ -123.012716318999978, 50.091356485000105 ], [ -123.012602907999934, 50.091273382000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8773167", "BldgCostT": "5786667", "sL_LossRatio": "0.988725046940914", "sL_AssetLoss": "7663.89", "sL_BldgLoss": "7577.48", "sL_StrLoss": "7233", "sL_NStrLoss": "344.48", "sL_ContLoss": "86.41", "geom_point": "0101000020E61000006FDDCD53DDC15EC06E0DF83E4D0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.030022897999913, 50.087224593000094 ], [ -123.031817635, 50.087273043000053 ], [ -123.031565773999901, 50.08762921400011 ], [ -123.030814243999913, 50.088278468000041 ], [ -123.030058412999921, 50.088795951000101 ], [ -123.028660639999913, 50.089078446000073 ], [ -123.027640243999926, 50.089273651000099 ], [ -123.026910618999963, 50.089740568000096 ], [ -123.027015368999955, 50.088137123000116 ], [ -123.027689379999956, 50.088155340000043 ], [ -123.027696243999969, 50.088050239000047 ], [ -123.028284045999939, 50.088066122000022 ], [ -123.02830163499999, 50.087796753000127 ], [ -123.029268969999976, 50.087822885000072 ], [ -123.029292914999971, 50.087456076000073 ], [ -123.03000653399999, 50.087475349000044 ], [ -123.030022897999913, 50.087224593000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248353592", "BldgCostT": "155814118", "sL_LossRatio": "0.854189244396159", "sL_AssetLoss": "111374.5", "sL_BldgLoss": "95134.9", "sL_StrLoss": "77246", "sL_NStrLoss": "17888.9", "sL_ContLoss": "16239.6", "geom_point": "0101000020E610000041F96979F1BD5EC06A8287ED97124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.966438601999968, 50.148070296000114 ], [ -122.965406027999961, 50.147320307000044 ], [ -122.96518631399999, 50.147464497000122 ], [ -122.964809082999949, 50.147660107000064 ], [ -122.964362510999962, 50.147846605000076 ], [ -122.963484596999933, 50.148051804000097 ], [ -122.963445498999988, 50.147839297000068 ], [ -122.963704200999956, 50.147175286000049 ], [ -122.96390977899992, 50.146928112000069 ], [ -122.965006481999936, 50.14617289400006 ], [ -122.965356894999942, 50.145748885000081 ], [ -122.965505600999975, 50.145368002000048 ], [ -122.965643787999966, 50.144975901000052 ], [ -122.965651056999931, 50.144879560000078 ], [ -122.965728289999987, 50.143856304000067 ], [ -122.965997895999976, 50.143279800000073 ], [ -122.966092990999982, 50.143150919000036 ], [ -122.966420900999978, 50.14270636600002 ], [ -122.966568685000013, 50.142506023000024 ], [ -122.966664609999953, 50.142376009000067 ], [ -122.968018195, 50.141294085000055 ], [ -122.968984902, 50.14076289200009 ], [ -122.96952678599996, 50.140511490000065 ], [ -122.969690494999938, 50.140849698000096 ], [ -122.96970692299999, 50.141128196000075 ], [ -122.969468006999989, 50.141603911000146 ], [ -122.968497691999943, 50.142818791000181 ], [ -122.970126324999967, 50.142274302000089 ], [ -122.970585316999944, 50.142861432000103 ], [ -122.970913391999943, 50.143281102000053 ], [ -122.97074599699998, 50.143860386 ], [ -122.970813810999957, 50.144145688000023 ], [ -122.971017599, 50.144408601000094 ], [ -122.970774216999928, 50.144487385000041 ], [ -122.969850095999931, 50.144694098000116 ], [ -122.97051649799999, 50.145937792000083 ], [ -122.970634793999935, 50.146264017000085 ], [ -122.970684810999941, 50.146669401000047 ], [ -122.970659617999956, 50.146836895000114 ], [ -122.970520596999947, 50.14709400800006 ], [ -122.9702636, 50.147378399000061 ], [ -122.970009203999936, 50.147560383000084 ], [ -122.96948940299994, 50.147834895000059 ], [ -122.969373086999951, 50.147920688000099 ], [ -122.969274886, 50.148111505000095 ], [ -122.969074824999964, 50.148487406000065 ], [ -122.968789113999918, 50.148737802000014 ], [ -122.968625219999979, 50.148823204000053 ], [ -122.968347716, 50.148909197000094 ], [ -122.967826910999932, 50.149052305000055 ], [ -122.967051989999959, 50.149099301000035 ], [ -122.966876197999937, 50.14854388800012 ], [ -122.966735097, 50.148307894000034 ], [ -122.966438601999968, 50.148070296000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19922917", "BldgCostT": "10791667", "sL_LossRatio": "0.966483362100108", "sL_AssetLoss": "1245.65", "sL_BldgLoss": "1203.9", "sL_StrLoss": "1007.8", "sL_NStrLoss": "196.1", "sL_ContLoss": "41.75", "geom_point": "0101000020E61000003BE1042A8CBB5EC0E82463CE16104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.928026234999962, 50.127111065000122 ], [ -122.928029067999958, 50.125222356000023 ], [ -122.928868452999907, 50.125222874000052 ], [ -122.92886885299994, 50.124953058000166 ], [ -122.930547616999931, 50.124954074000094 ], [ -122.930548006999956, 50.124684259000034 ], [ -122.933485825, 50.124685979000077 ], [ -122.933484327999963, 50.125765240000135 ], [ -122.933064632, 50.125764999000104 ], [ -122.933064255999938, 50.126034815000018 ], [ -122.93180515399996, 50.126034083000064 ], [ -122.931805921999953, 50.125494451000094 ], [ -122.930966530999953, 50.125493955000103 ], [ -122.930965366999914, 50.126303402000076 ], [ -122.930125961999963, 50.126302899000045 ], [ -122.930125176999951, 50.126842530000033 ], [ -122.929285761999978, 50.126842023000052 ], [ -122.929285364999927, 50.127111838000054 ], [ -122.928026234999962, 50.127111065000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22384167", "BldgCostT": "13016667", "sL_LossRatio": "0.773034463933756", "sL_AssetLoss": "21578.21", "sL_BldgLoss": "16680.7", "sL_StrLoss": "13741.9", "sL_NStrLoss": "2938.8", "sL_ContLoss": "4897.51", "geom_point": "0101000020E6100000ECC3FEDBFABC5EC02101A3CB1B0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.950707152999925, 50.077112542000101 ], [ -122.956290563999971, 50.077267238000061 ], [ -122.956050336999965, 50.080859717000102 ], [ -122.95491586499999, 50.080828308000044 ], [ -122.95491548699998, 50.080833944000041 ], [ -122.949331644999944, 50.080679179000072 ], [ -122.949572400999955, 50.077086713000043 ], [ -122.950706775999947, 50.077118178000021 ], [ -122.950707152999925, 50.077112542000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5214417", "BldgCostT": "3386667", "sL_LossRatio": "0.708709689184049", "sL_AssetLoss": "5758.07", "sL_BldgLoss": "4080.8", "sL_StrLoss": "3205.7", "sL_NStrLoss": "875.1", "sL_ContLoss": "1677.27", "geom_point": "0101000020E61000001B28B6A334C25EC0702643E1F50A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.035035923999956, 50.084304148000058 ], [ -123.035180942999943, 50.082077855000136 ], [ -123.035386533999898, 50.082241929000077 ], [ -123.035905276000037, 50.085975970000099 ], [ -123.036967051999923, 50.086746348000084 ], [ -123.03677336899996, 50.086757577000107 ], [ -123.036699284999912, 50.086774586000047 ], [ -123.034626380999953, 50.08725009900008 ], [ -123.033872195999905, 50.08734040900007 ], [ -123.03309519799997, 50.087351900000037 ], [ -123.032756778999939, 50.087319133000086 ], [ -123.032459586999977, 50.087290365000094 ], [ -123.032697889999938, 50.087296795 ], [ -123.032896754999982, 50.08424645600013 ], [ -123.035035923999956, 50.084304148000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.987249163879599", "sL_AssetLoss": "478.4", "sL_BldgLoss": "472.3", "sL_StrLoss": "450", "sL_NStrLoss": "22.3", "sL_ContLoss": "6.1", "geom_point": "0101000020E6100000D582CDEF6ABC5EC04A62A4726E0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.944936127999966, 50.119710913000048 ], [ -122.946154402999937, 50.118863665000084 ], [ -122.94651341399999, 50.118969597000024 ], [ -122.946879354999965, 50.11902674300007 ], [ -122.946502483999964, 50.119026570000123 ], [ -122.94650218299995, 50.11929638500002 ], [ -122.945662900999977, 50.119295995000101 ], [ -122.945662593999899, 50.119565812000097 ], [ -122.945242949999979, 50.119565615000063 ], [ -122.945242642999972, 50.119835430000066 ], [ -122.944822996999974, 50.119835232000042 ], [ -122.944822685999966, 50.120105048000035 ], [ -122.944403037999933, 50.12010484800004 ], [ -122.944402726999925, 50.120374664000039 ], [ -122.943983073999959, 50.120374463000161 ], [ -122.943982444999932, 50.120914094000064 ], [ -122.943562788999941, 50.120913891000043 ], [ -122.943562156, 50.12145352200011 ], [ -122.943142495999936, 50.121453317000103 ], [ -122.943142174999963, 50.12172313300006 ], [ -122.941931219999944, 50.121722534000057 ], [ -122.944936127999966, 50.119710913000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.990202007983549", "sL_AssetLoss": "413.35", "sL_BldgLoss": "409.3", "sL_StrLoss": "390", "sL_NStrLoss": "19.3", "sL_ContLoss": "4.05", "geom_point": "0101000020E61000000C9B5CE73AC05EC0DDC5660DFF0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004336808999966, 50.084777299000052 ], [ -123.00440953499999, 50.084638744000067 ], [ -123.004409546999952, 50.084772071000074 ], [ -123.004828887, 50.084772054000076 ], [ -123.004828967, 50.085581506000089 ], [ -123.004409620999979, 50.085581524000084 ], [ -123.004409670000015, 50.086121159000065 ], [ -123.003990319999943, 50.086121174 ], [ -123.003990340999948, 50.086390991000087 ], [ -123.003570986999932, 50.086391004000028 ], [ -123.003571005999959, 50.086660822000049 ], [ -123.003151649999964, 50.086660834000057 ], [ -123.003151652999932, 50.086686461000042 ], [ -123.001593235999948, 50.086619238000026 ], [ -123.001785908999949, 50.086557697000096 ], [ -123.002125008999911, 50.086229505000041 ], [ -123.002399516999958, 50.08611918900008 ], [ -123.002748399999945, 50.08606660600006 ], [ -123.00324499099996, 50.086065700000127 ], [ -123.003437187999921, 50.086013403000081 ], [ -123.003587404999962, 50.08589960400009 ], [ -123.00372319899995, 50.085578936000083 ], [ -123.00379609099997, 50.085406807 ], [ -123.004336808999966, 50.084777299000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.979271809661139", "sL_AssetLoss": "554.8", "sL_BldgLoss": "543.3", "sL_StrLoss": "507", "sL_NStrLoss": "36.3", "sL_ContLoss": "11.5", "geom_point": "0101000020E61000007BA2A9A67DBE5EC0288293C8990D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977562083999942, 50.105545907000057 ], [ -122.97794781199994, 50.105545981000049 ], [ -122.97700606699999, 50.106380206000082 ], [ -122.976415209999914, 50.106747518000077 ], [ -122.974935389, 50.106617817000014 ], [ -122.975044438999987, 50.106542182000027 ], [ -122.975044535999956, 50.106354844000066 ], [ -122.975883592999963, 50.106355021000084 ], [ -122.975883727999971, 50.106085204000088 ], [ -122.976303253999987, 50.106085290000145 ], [ -122.976303386999945, 50.105815474000067 ], [ -122.977561958999971, 50.105815724000088 ], [ -122.977562083999942, 50.105545907000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68328917", "BldgCostT": "48091667", "sL_LossRatio": "0.991181718872802", "sL_AssetLoss": "2023.07", "sL_BldgLoss": "2005.23", "sL_StrLoss": "1169", "sL_NStrLoss": "836.23", "sL_ContLoss": "17.84", "geom_point": "0101000020E6100000D804833183BB5EC0FBA424357E104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.929280592999959, 50.1303496230001 ], [ -122.92928178599999, 50.129540177000102 ], [ -122.928862054999925, 50.129539921000109 ], [ -122.928863254999925, 50.128730474000022 ], [ -122.928023807999978, 50.128729958000065 ], [ -122.928025022000014, 50.127920511000148 ], [ -122.928864454999925, 50.127921029000056 ], [ -122.928864854999972, 50.127651213 ], [ -122.930963425999963, 50.127652479000034 ], [ -122.930962260999976, 50.128461925000053 ], [ -122.931381983999984, 50.12846217400007 ], [ -122.931380053999987, 50.129811251000099 ], [ -122.930540586999925, 50.129810753000051 ], [ -122.93053980599997, 50.13035038300012 ], [ -122.929280592999959, 50.1303496230001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2847500", "BldgCostT": "1700000", "sL_LossRatio": "0.980686964148275", "sL_AssetLoss": "4469.52", "sL_BldgLoss": "4383.2", "sL_StrLoss": "4216", "sL_NStrLoss": "167.2", "sL_ContLoss": "86.32", "geom_point": "0101000020E610000074B7676D85BC5EC0198A7DFA36124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947736721999917, 50.141691636000097 ], [ -122.94773731, 50.141152006 ], [ -122.946897645999968, 50.141151625000099 ], [ -122.946898542000014, 50.140342180000118 ], [ -122.947318366999951, 50.140342372000099 ], [ -122.947318663999937, 50.14007255700006 ], [ -122.948578133, 50.140073121000022 ], [ -122.948577314999952, 50.140836303000107 ], [ -122.94847090799999, 50.140951353000105 ], [ -122.948165572999983, 50.141196678000043 ], [ -122.947861084999914, 50.141563978000171 ], [ -122.948000925999963, 50.141753077000033 ], [ -122.945729695, 50.142562227000084 ], [ -122.944711741999939, 50.143121191000027 ], [ -122.944382452999932, 50.143270379000022 ], [ -122.943607969999945, 50.143778401000084 ], [ -122.944016832999978, 50.1441182370001 ], [ -122.94353549299997, 50.144118004000099 ], [ -122.94353485699996, 50.14465763400009 ], [ -122.942275265999967, 50.144657014000124 ], [ -122.942276239999956, 50.143847570000091 ], [ -122.943115952999975, 50.143847984000047 ], [ -122.943116593999932, 50.143308355000023 ], [ -122.943536444999921, 50.143308560000058 ], [ -122.943536761999965, 50.143038744000066 ], [ -122.944376460999962, 50.143039149000032 ], [ -122.94437677399992, 50.142769335000054 ], [ -122.94521646699998, 50.142769733000129 ], [ -122.94521677399996, 50.142499919000109 ], [ -122.945636618999913, 50.14250011700009 ], [ -122.945636924, 50.142230302 ], [ -122.946056766999959, 50.142230498000067 ], [ -122.94605707, 50.141960683000036 ], [ -122.946896749999908, 50.141961069000061 ], [ -122.946897048999958, 50.141691255000062 ], [ -122.947736721999917, 50.141691636000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2539167", "BldgCostT": "1541667", "sL_LossRatio": "0.468427627054415", "sL_AssetLoss": "4274.94", "sL_BldgLoss": "2002.5", "sL_StrLoss": "946.8", "sL_NStrLoss": "1055.7", "sL_ContLoss": "2272.44", "geom_point": "0101000020E6100000249B48BC7EBF5EC0C3FD367AEB0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.988893716999911, 50.085850893000064 ], [ -122.988893839999918, 50.085311259000093 ], [ -122.990950367999943, 50.085311437000037 ], [ -122.990973336999929, 50.084964039000049 ], [ -122.993817075999971, 50.085041807000039 ], [ -122.994345353999975, 50.085041834000059 ], [ -122.994345384999917, 50.084772016000016 ], [ -122.994764723999978, 50.084772036000075 ], [ -122.994764754999935, 50.084502219000093 ], [ -122.996022767999975, 50.084502268000058 ], [ -122.996022762999985, 50.084558386000069 ], [ -122.995983815999978, 50.08457109800004 ], [ -122.99557421, 50.084844199000052 ], [ -122.995248668999949, 50.084908714000044 ], [ -122.99509940199999, 50.084938302000062 ], [ -122.994867088999982, 50.085046201000083 ], [ -122.994605779, 50.085254097000139 ], [ -122.993839995999934, 50.085414096000058 ], [ -122.993365106999974, 50.085657509 ], [ -122.993134805999887, 50.085714189000036 ], [ -122.992464188999932, 50.08565989800011 ], [ -122.992240593999924, 50.085635790000019 ], [ -122.991740796999977, 50.085685108000078 ], [ -122.990884949999923, 50.085594282000038 ], [ -122.99081441199999, 50.085586805000098 ], [ -122.990471388999964, 50.085591896000054 ], [ -122.990373600999959, 50.085609332000075 ], [ -122.989933619999974, 50.085687790000129 ], [ -122.989779684999974, 50.085763206000045 ], [ -122.989650877999978, 50.085810932000093 ], [ -122.988896304999969, 50.086090382000158 ], [ -122.988860497999937, 50.086136399000104 ], [ -122.988474291, 50.086162750000014 ], [ -122.988474364999902, 50.085850852000107 ], [ -122.988893716999911, 50.085850893000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12977335", "BldgCostT": "8003335", "sL_LossRatio": "0.784894797248376", "sL_AssetLoss": "13783.86", "sL_BldgLoss": "10818.88", "sL_StrLoss": "9290.8", "sL_NStrLoss": "1528.08", "sL_ContLoss": "2964.98", "geom_point": "0101000020E61000008F1B659ABCB95EC0D7246861090C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.901858234999949, 50.096638263000045 ], [ -122.901614324999954, 50.096602435000058 ], [ -122.901227572000025, 50.096602107000109 ], [ -122.90122944499997, 50.095690656000031 ], [ -122.899237296999914, 50.095634518000104 ], [ -122.899482084999988, 50.092042236000061 ], [ -122.905067150999969, 50.092199528000044 ], [ -122.904822802999931, 50.095791823000084 ], [ -122.902487678999947, 50.095726094000057 ], [ -122.902485898999956, 50.096603170000094 ], [ -122.901872563999959, 50.096602654000094 ], [ -122.901858234999949, 50.096638263000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89608333", "BldgCostT": "61378333", "sL_LossRatio": "0.700841945448352", "sL_AssetLoss": "37899.13", "sL_BldgLoss": "26561.3", "sL_StrLoss": "17363.6", "sL_NStrLoss": "9197.7", "sL_ContLoss": "11337.83", "geom_point": "0101000020E6100000219AC449AFBE5EC09F43D78D900C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977981619999937, 50.105516032000068 ], [ -122.977981727999946, 50.105278045000048 ], [ -122.976354395, 50.105233338000097 ], [ -122.976593147999907, 50.101640931000063 ], [ -122.97845698099999, 50.101692134000146 ], [ -122.979635629999962, 50.10172449700007 ], [ -122.979793889999968, 50.099340530000106 ], [ -122.979662318999914, 50.099340507000072 ], [ -122.979662431999955, 50.099070690000104 ], [ -122.979242966999962, 50.099070616000112 ], [ -122.97924320099996, 50.098530982000099 ], [ -122.978823740999971, 50.098530906000086 ], [ -122.978823858999974, 50.098261090000072 ], [ -122.978404402999928, 50.098261012000087 ], [ -122.97840452299999, 50.097991196000123 ], [ -122.977985068999928, 50.097991117000021 ], [ -122.977986179999945, 50.095562763 ], [ -122.978405615999947, 50.095562842000028 ], [ -122.978405736999946, 50.095293025000132 ], [ -122.980083462999943, 50.095293324000117 ], [ -122.98008357499999, 50.095023508000118 ], [ -122.979664147000022, 50.095023435000023 ], [ -122.97966426, 50.094753617000073 ], [ -122.978825404999924, 50.094753467000032 ], [ -122.978825524999962, 50.09448365 ], [ -122.978784386999962, 50.094483643000075 ], [ -122.978406098999969, 50.094483573000062 ], [ -122.978406220999915, 50.094213756000052 ], [ -122.977567375999968, 50.094213597000085 ], [ -122.977567501999985, 50.093943780000089 ], [ -122.977148081999971, 50.093943698000018 ], [ -122.977148210999957, 50.093673881000051 ], [ -122.976728793999982, 50.093673797000108 ], [ -122.976729314999943, 50.092594529000039 ], [ -122.977987540999948, 50.09259477400014 ], [ -122.977987664999958, 50.092324957000081 ], [ -122.977568258999938, 50.092324876000077 ], [ -122.977568635999958, 50.091515425000068 ], [ -122.977988034999967, 50.091515505000082 ], [ -122.977988280999966, 50.090975870000065 ], [ -122.978407674999957, 50.090975949000054 ], [ -122.978407796999946, 50.090706131000076 ], [ -122.979665973999943, 50.090706359000094 ], [ -122.979665857999947, 50.090976177000123 ], [ -122.980924040999966, 50.09097639000003 ], [ -122.980923826999913, 50.091516024 ], [ -122.981343224999975, 50.091516093000095 ], [ -122.98134312099991, 50.091785910000084 ], [ -122.981762522999958, 50.091785977000086 ], [ -122.981762318000023, 50.092325611000021 ], [ -122.98260112899996, 50.092325739000103 ], [ -122.982601030999945, 50.092595557000053 ], [ -122.983020439999962, 50.092595619000058 ], [ -122.983020382999939, 50.092755143000055 ], [ -122.982913234999941, 50.09272364300012 ], [ -122.981298289, 50.092239208000123 ], [ -122.980164391999949, 50.092151111000128 ], [ -122.980364676, 50.092251990000129 ], [ -122.9810175, 50.093102101000035 ], [ -122.981186701999931, 50.093462193000121 ], [ -122.98142939199991, 50.09374779500012 ], [ -122.981515206999958, 50.09393009900004 ], [ -122.981487401, 50.094095799000158 ], [ -122.981261707999934, 50.094440500000111 ], [ -122.981291203999916, 50.094669791000065 ], [ -122.981545107999949, 50.095060108000041 ], [ -122.98166569599999, 50.095520507000046 ], [ -122.981597996999966, 50.095738992000129 ], [ -122.981315606999971, 50.095989505000027 ], [ -122.981185908999947, 50.096173089000089 ], [ -122.98118338099998, 50.096359292000038 ], [ -122.981083310999978, 50.096644494000067 ], [ -122.98095199, 50.096852301000098 ], [ -122.98085531, 50.096939610000092 ], [ -122.980713688999955, 50.097006804000088 ], [ -122.980542892999949, 50.097050709000037 ], [ -122.98036319699996, 50.097060202000122 ], [ -122.980141180999979, 50.097032495000029 ], [ -122.979692715999974, 50.09689690500003 ], [ -122.979595408999927, 50.096887009000056 ], [ -122.979445202999955, 50.096873897000137 ], [ -122.979406748999963, 50.09687940800012 ], [ -122.979244600999948, 50.096902584000077 ], [ -122.979002893999962, 50.097003900000033 ], [ -122.978852387999936, 50.097121291000114 ], [ -122.978776091, 50.097258593000035 ], [ -122.978775806999977, 50.097474587000121 ], [ -122.978965099999982, 50.09767771000012 ], [ -122.979198523999969, 50.097798578000102 ], [ -122.979675210999972, 50.098045391000085 ], [ -122.979918599999948, 50.098235603000056 ], [ -122.980283591999964, 50.098745004000094 ], [ -122.980768386999941, 50.099175812000027 ], [ -122.981079750999982, 50.099490134000064 ], [ -122.98110280899995, 50.099513386000126 ], [ -122.981232482999971, 50.100000898000076 ], [ -122.981335678999955, 50.100388899000109 ], [ -122.981699900999928, 50.100762410000058 ], [ -122.982739713999976, 50.101834609000058 ], [ -122.983018009999981, 50.102238193000062 ], [ -122.983381790999942, 50.102807788000106 ], [ -122.983424895999946, 50.103064485000104 ], [ -122.9831200899999, 50.103019188000104 ], [ -122.981956418999914, 50.102674186000051 ], [ -122.981800686, 50.102934474000101 ], [ -122.981766457999967, 50.10344997700016 ], [ -122.980856279999969, 50.103502368000079 ], [ -122.980123284999976, 50.103689190000125 ], [ -122.979544553, 50.103975628000143 ], [ -122.979117786999936, 50.104292319000081 ], [ -122.979111430999978, 50.104299462000093 ], [ -122.978217813999933, 50.105306797000082 ], [ -122.977981619999937, 50.105516032000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.982775289544818", "sL_AssetLoss": "506.83", "sL_BldgLoss": "498.1", "sL_StrLoss": "447", "sL_NStrLoss": "51.1", "sL_ContLoss": "8.73", "geom_point": "0101000020E6100000D8BE99FBD8BC5EC0DA4335044B0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95003851599995, 50.111146758000068 ], [ -122.94957099599992, 50.110393823000052 ], [ -122.950288174, 50.110394133000078 ], [ -122.95028761599994, 50.110933765000063 ], [ -122.95154632099991, 50.110934296000039 ], [ -122.951546592999961, 50.110664480000025 ], [ -122.951765846999976, 50.110664572000097 ], [ -122.951763603999964, 50.11070859100009 ], [ -122.951740136999973, 50.110749655000085 ], [ -122.95145499399996, 50.111248407000097 ], [ -122.951482496999958, 50.111669989000099 ], [ -122.951571574999974, 50.111852438000071 ], [ -122.951636882999964, 50.111986195000078 ], [ -122.951217299999882, 50.112336496000097 ], [ -122.95114641399999, 50.11249739700002 ], [ -122.951420824, 50.112930025000026 ], [ -122.950428433999917, 50.112872627000066 ], [ -122.950175021999911, 50.111751011000045 ], [ -122.95003851599995, 50.111146758000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41963252", "BldgCostT": "24334944", "sL_LossRatio": "0.802137770531098", "sL_AssetLoss": "21527.1", "sL_BldgLoss": "17267.7", "sL_StrLoss": "11251.8", "sL_NStrLoss": "6015.9", "sL_ContLoss": "4259.4", "geom_point": "0101000020E61000002FECA332C9BC5EC0E6B45D5782104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.952361899999957, 50.134678431000054 ], [ -122.952362434999927, 50.134138800000052 ], [ -122.95194266499999, 50.134138628000095 ], [ -122.951943204999935, 50.133598997000021 ], [ -122.951103670999913, 50.133598647000056 ], [ -122.951103395999937, 50.13386846100007 ], [ -122.949844091, 50.133867926000093 ], [ -122.949843808, 50.134137740000064 ], [ -122.948584494999963, 50.134137190000075 ], [ -122.948585072999947, 50.133597559000094 ], [ -122.947745538999982, 50.133597184000038 ], [ -122.947746126999959, 50.133057553000086 ], [ -122.947326365999913, 50.133057363 ], [ -122.947327549999969, 50.131978103000044 ], [ -122.949426311999929, 50.131979036000061 ], [ -122.949429155, 50.129280882000081 ], [ -122.949009425999918, 50.129280698000109 ], [ -122.949009711999949, 50.129010883000021 ], [ -122.94817026099993, 50.129010512000107 ], [ -122.948172590999974, 50.126851987000038 ], [ -122.947752882999964, 50.126851799000114 ], [ -122.947754058, 50.125772537000088 ], [ -122.94733436099996, 50.125772348000055 ], [ -122.947336728999943, 50.123613822000046 ], [ -122.946917049999982, 50.123613630000136 ], [ -122.94691735699999, 50.123337131000021 ], [ -122.946887634999968, 50.12313376400008 ], [ -122.946917638999935, 50.123080256000044 ], [ -122.946917945999971, 50.12280418400006 ], [ -122.947072409999976, 50.122804255000034 ], [ -122.94710313499999, 50.12274946400008 ], [ -122.947337892999926, 50.122552940000091 ], [ -122.947338800999916, 50.121725111000096 ], [ -122.947758463999932, 50.121725301000012 ], [ -122.947759051999981, 50.121185670000081 ], [ -122.94817871, 50.121185859000079 ], [ -122.948179, 50.120916042000033 ], [ -122.94859865599993, 50.120916228000077 ], [ -122.94859894399994, 50.120646413000067 ], [ -122.948806330999972, 50.12064650400005 ], [ -122.94895736899997, 50.120926252000061 ], [ -122.948647650999959, 50.12110063100004 ], [ -122.948633974999922, 50.121243605000096 ], [ -122.948714588999962, 50.121397904000091 ], [ -122.948740293999961, 50.121640590000055 ], [ -122.948847181999923, 50.121883805000053 ], [ -122.94931799299999, 50.122481700000051 ], [ -122.948945290999959, 50.12265400200004 ], [ -122.948711208999924, 50.122867992000117 ], [ -122.948582211999977, 50.123162187000098 ], [ -122.948533993999931, 50.123483898000089 ], [ -122.94856420399995, 50.123747308000084 ], [ -122.948672710999944, 50.124693389000051 ], [ -122.948654082999965, 50.126368092000099 ], [ -122.949137488999966, 50.126393342000092 ], [ -122.950123099999985, 50.126444800000058 ], [ -122.951638304999904, 50.126500294000088 ], [ -122.951764915999945, 50.128015350000034 ], [ -122.95185944, 50.128255502000087 ], [ -122.952045386999899, 50.128530576000038 ], [ -122.95212043699999, 50.128610973000022 ], [ -122.95229618099998, 50.128799318000084 ], [ -122.952243159, 50.128826148000087 ], [ -122.952110673999982, 50.128893171000115 ], [ -122.952082503999975, 50.12892158700005 ], [ -122.951894447999948, 50.129111201000093 ], [ -122.951524085999893, 50.129916119000043 ], [ -122.95150998099993, 50.129929617000066 ], [ -122.951341551999974, 50.130090990000063 ], [ -122.951213511999967, 50.130162568000038 ], [ -122.951071464999941, 50.130241942000026 ], [ -122.950636053999943, 50.130485334000113 ], [ -122.950426143999962, 50.130627721000096 ], [ -122.950081596999937, 50.130861409000055 ], [ -122.95000209399997, 50.13106518900009 ], [ -122.950001580999952, 50.13128199300013 ], [ -122.950095891999979, 50.131482605000016 ], [ -122.950431597999938, 50.131800487000064 ], [ -122.950919773999928, 50.131995701000086 ], [ -122.951224326, 50.132017060000095 ], [ -122.951784917999959, 50.132056402000103 ], [ -122.952044394999959, 50.132074586000023 ], [ -122.952654276, 50.132061695000061 ], [ -122.952784798999943, 50.132051790000048 ], [ -122.953087801999942, 50.13202879800005 ], [ -122.953253070999949, 50.132037049000076 ], [ -122.953478543999935, 50.132048297000061 ], [ -122.95349248399999, 50.132048995000048 ], [ -122.953483508999938, 50.13211616400018 ], [ -122.953302813999954, 50.13346758600008 ], [ -122.953193219999918, 50.134286929000091 ], [ -122.95314082699997, 50.134678748000056 ], [ -122.95280169499992, 50.134678610000059 ], [ -122.952361899999957, 50.134678431000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15926250", "BldgCostT": "9300000", "sL_LossRatio": "0.710354994244511", "sL_AssetLoss": "7366.88", "sL_BldgLoss": "5233.1", "sL_StrLoss": "3902.1", "sL_NStrLoss": "1331", "sL_ContLoss": "2133.78", "geom_point": "0101000020E610000069C7476A65BC5EC04FC409E9FC0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.941054234999967, 50.113273445000083 ], [ -122.94105446399999, 50.113087976000038 ], [ -122.940634877999983, 50.113087761 ], [ -122.940635916999923, 50.112246874000114 ], [ -122.940636877999964, 50.111468865000077 ], [ -122.941476025, 50.111469291000056 ], [ -122.941477667999919, 50.110120209000037 ], [ -122.942316790999911, 50.110120629000093 ], [ -122.942317114, 50.10985081200009 ], [ -122.941897555000011, 50.10985060400008 ], [ -122.941898208999959, 50.10931097200006 ], [ -122.941478654999955, 50.109310761000081 ], [ -122.941479312999945, 50.108771128000072 ], [ -122.941059763999974, 50.108770916000061 ], [ -122.941060755999914, 50.107961467000102 ], [ -122.941480297999973, 50.107961679000084 ], [ -122.941480626999976, 50.107691862000095 ], [ -122.941900166999972, 50.107692073000052 ], [ -122.941900493999981, 50.107422256000049 ], [ -122.94395313499993, 50.107423265000051 ], [ -122.945256794999978, 50.107423888000056 ], [ -122.945257409999925, 50.106884254000072 ], [ -122.946516007999932, 50.10688484100006 ], [ -122.946515408, 50.107424474000098 ], [ -122.946934943999977, 50.107424666000043 ], [ -122.946934347999928, 50.107964299000102 ], [ -122.948192975999959, 50.107964868000117 ], [ -122.948192393999946, 50.108504500000102 ], [ -122.949031488999978, 50.108504872000019 ], [ -122.949031201999929, 50.108774688000032 ], [ -122.949450750000011, 50.108774871000065 ], [ -122.949449209999955, 50.110239730000067 ], [ -122.948753891999942, 50.109504406000099 ], [ -122.948783103999972, 50.109424190000041 ], [ -122.948550802999989, 50.109090291000086 ], [ -122.948407606000018, 50.109034992000041 ], [ -122.948356757999989, 50.109054803000021 ], [ -122.947724256999933, 50.108468397000088 ], [ -122.946901807999936, 50.108010882000066 ], [ -122.946005485999962, 50.107974387000105 ], [ -122.94540370299994, 50.108295693000088 ], [ -122.944949326999961, 50.108692908000087 ], [ -122.944459886999965, 50.109305214000059 ], [ -122.94330560899999, 50.110923710000051 ], [ -122.942075888999966, 50.112076684000016 ], [ -122.941191155999917, 50.113113080000097 ], [ -122.941054234999967, 50.113273445000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4296667", "BldgCostT": "2466667", "sL_LossRatio": "0.91707334449471", "sL_AssetLoss": "1122.92", "sL_BldgLoss": "1029.8", "sL_StrLoss": "757.8", "sL_NStrLoss": "272", "sL_ContLoss": "93.12", "geom_point": "0101000020E6100000E34B8F4310C05EC0F5EB77F6CF0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.00128939799994, 50.085347502000062 ], [ -122.999793902999954, 50.085161885000055 ], [ -122.999303105999942, 50.085180896000089 ], [ -122.999168303999966, 50.085104307000108 ], [ -122.999171683999975, 50.084988305000124 ], [ -122.999278426999979, 50.084919310000089 ], [ -122.99992330399999, 50.085002481000039 ], [ -123.000940906999958, 50.084905202000066 ], [ -123.001316908999954, 50.0848029980001 ], [ -123.001528286999942, 50.084692696000047 ], [ -123.001613205999973, 50.084550993000093 ], [ -123.001571276999982, 50.084401395000043 ], [ -123.00138298499995, 50.084288293000029 ], [ -123.001123989999925, 50.08424980500007 ], [ -123.000789993999902, 50.084266804000038 ], [ -122.999555707999917, 50.084467902000036 ], [ -122.999178798999949, 50.0844577 ], [ -122.998779198999912, 50.084387387000064 ], [ -122.998297694999962, 50.08420239700007 ], [ -122.99811946899996, 50.084171322000024 ], [ -122.998119477, 50.083962686000071 ], [ -122.999796810999939, 50.083962702000051 ], [ -122.999796810999939, 50.083692883000083 ], [ -123.001474132999974, 50.083692875000018 ], [ -123.001474140999932, 50.083962693000082 ], [ -123.002312806999939, 50.083962678000013 ], [ -123.002312820999947, 50.084232497000073 ], [ -123.003587741999965, 50.084232464000117 ], [ -123.003231791999951, 50.084460213000106 ], [ -123.002402117999964, 50.085166405000109 ], [ -123.002092403999967, 50.085301882000117 ], [ -123.00176968699995, 50.085360604000108 ], [ -123.00128939799994, 50.085347502000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26506905", "BldgCostT": "15329819", "sL_LossRatio": "0.95186526105139", "sL_AssetLoss": "15031.14", "sL_BldgLoss": "14307.62", "sL_StrLoss": "12621.52", "sL_NStrLoss": "1686.1", "sL_ContLoss": "723.52", "geom_point": "0101000020E61000003F1B4D897FBC5EC0CFDCE097BC084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.942600994999935, 50.067065385000028 ], [ -122.942693151999947, 50.065692917000014 ], [ -122.948275136999939, 50.065848024000069 ], [ -122.948226211999938, 50.066577983000101 ], [ -122.948234983999924, 50.066578226000061 ], [ -122.947994176999927, 50.070170738000066 ], [ -122.947900281999935, 50.070168132000063 ], [ -122.947867488999933, 50.070657300000036 ], [ -122.947857208999935, 50.070810641000087 ], [ -122.943297294999979, 50.070683954000053 ], [ -122.943049511999973, 50.07067706400008 ], [ -122.942274617999914, 50.070655515000063 ], [ -122.942436366999985, 50.068247051000107 ], [ -122.94244572599996, 50.068107691000073 ], [ -122.942515877999966, 50.06706301800007 ], [ -122.942600994999935, 50.067065385000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6633834", "BldgCostT": "4103334", "sL_LossRatio": "0.957218898469118", "sL_AssetLoss": "4546.4", "sL_BldgLoss": "4351.9", "sL_StrLoss": "3647.6", "sL_NStrLoss": "704.3", "sL_ContLoss": "194.5", "geom_point": "0101000020E610000018A894F0E7BC5EC0AD9F82EC8A114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95279517099999, 50.134948423000026 ], [ -122.953140368999968, 50.134948563000094 ], [ -122.953184702, 50.13553398800007 ], [ -122.95322326299997, 50.13565295300009 ], [ -122.953274722999979, 50.135811686000054 ], [ -122.953292054999935, 50.13586521700006 ], [ -122.953385402999984, 50.136153203000077 ], [ -122.954174590999941, 50.137076730000032 ], [ -122.954427783999918, 50.137373018000041 ], [ -122.953612060999959, 50.137442485000065 ], [ -122.95274581299995, 50.137861198000067 ], [ -122.952288118999945, 50.138212202000076 ], [ -122.952143523999936, 50.13832309 ], [ -122.95149440199999, 50.138627290000088 ], [ -122.951135915999899, 50.138690199000031 ], [ -122.95101408499994, 50.138743052000109 ], [ -122.950044116999919, 50.139163806000042 ], [ -122.949947787999989, 50.139180012000068 ], [ -122.949534312, 50.139450263000072 ], [ -122.949482774999979, 50.139533888000123 ], [ -122.94941834899997, 50.139533860000057 ], [ -122.949419201, 50.138724415000098 ], [ -122.949839011999984, 50.138724597000049 ], [ -122.949840987999963, 50.136835892000107 ], [ -122.950260780999926, 50.136836072000122 ], [ -122.950261900999976, 50.135756811000086 ], [ -122.950681685999925, 50.135756991000036 ], [ -122.950681962999909, 50.135487176000062 ], [ -122.951521529, 50.135487529000045 ], [ -122.951521801999917, 50.135217714000085 ], [ -122.952781143999985, 50.135218233000089 ], [ -122.952781409999957, 50.134948418000086 ], [ -122.95279517099999, 50.134948423000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3487917", "BldgCostT": "2141667", "sL_LossRatio": "0.979377558467934", "sL_AssetLoss": "5042.08", "sL_BldgLoss": "4938.1", "sL_StrLoss": "4643", "sL_NStrLoss": "295.1", "sL_ContLoss": "103.98", "geom_point": "0101000020E61000008B74DC7CA5BD5EC0F0405365CE0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.961288607999961, 50.108982089000044 ], [ -122.961828399999931, 50.108778383000072 ], [ -122.959872010999945, 50.108893555000108 ], [ -122.959519932999925, 50.108784800000066 ], [ -122.959519937999971, 50.108778819000058 ], [ -122.960778588, 50.108779250000062 ], [ -122.960778806999883, 50.108509433000066 ], [ -122.961198355999912, 50.108509575000063 ], [ -122.961198572999962, 50.108239758000117 ], [ -122.961618118, 50.108239897000054 ], [ -122.961618333999965, 50.10797008100009 ], [ -122.962037875999926, 50.107970219000137 ], [ -122.962038301999925, 50.107430586000156 ], [ -122.962457839999942, 50.107430722000068 ], [ -122.962458261999956, 50.106891089000037 ], [ -122.962877796, 50.106891224000087 ], [ -122.962878002999986, 50.106621408000088 ], [ -122.964136597000021, 50.106621803000095 ], [ -122.964136192999973, 50.107161437000066 ], [ -122.965394798999952, 50.107161818000058 ], [ -122.965394605999975, 50.107431635000118 ], [ -122.96547474499998, 50.107431658000039 ], [ -122.965575675000011, 50.1081180810001 ], [ -122.965341516999956, 50.10818160200008 ], [ -122.965074896999923, 50.108359597000131 ], [ -122.9649272, 50.10841401600009 ], [ -122.964898185999914, 50.108417165000056 ], [ -122.96476218899997, 50.10843190700006 ], [ -122.964579703999931, 50.108420599000084 ], [ -122.964412002999978, 50.108375484000078 ], [ -122.96408650099994, 50.108219898000051 ], [ -122.96377329799995, 50.107984493000068 ], [ -122.963010809999929, 50.108401602000114 ], [ -122.96253658699996, 50.108838409000086 ], [ -122.96238381799995, 50.10892690000005 ], [ -122.962129289999922, 50.109070097000057 ], [ -122.96173498099995, 50.109212205000084 ], [ -122.9615437099999, 50.10924739700004 ], [ -122.961357506999917, 50.109227800000042 ], [ -122.961262620999932, 50.109161307000115 ], [ -122.961238420999962, 50.109063503000073 ], [ -122.961288607999961, 50.108982089000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.993289853254735", "sL_AssetLoss": "318.92", "sL_BldgLoss": "316.78", "sL_StrLoss": "309", "sL_NStrLoss": "7.78", "sL_ContLoss": "2.14", "geom_point": "0101000020E61000007A91C7DBE3BB5EC0DD056B1815114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.935153276999955, 50.133051205000086 ], [ -122.936412561999987, 50.133051902000062 ], [ -122.936411489999941, 50.13386134600011 ], [ -122.93515218499999, 50.13386065100007 ], [ -122.935153276999955, 50.133051205000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24588509", "BldgCostT": "14195785", "sL_LossRatio": "0.833861619271871", "sL_AssetLoss": "10600.32", "sL_BldgLoss": "8839.2", "sL_StrLoss": "7526.3", "sL_NStrLoss": "1312.9", "sL_ContLoss": "1761.12", "geom_point": "0101000020E6100000FF90C0174DC15EC0F9053F9AFF0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.014055077999956, 50.087199661000071 ], [ -123.014054841999922, 50.086390208000054 ], [ -123.014474195, 50.086390157 ], [ -123.014474032999928, 50.085850522000086 ], [ -123.016151429999979, 50.085850301000022 ], [ -123.01615134, 50.085580483000079 ], [ -123.017409382, 50.085580301000057 ], [ -123.017409185999952, 50.085040666000047 ], [ -123.01782852799991, 50.085040603000039 ], [ -123.017828428999948, 50.08477078500006 ], [ -123.01950579, 50.084770515000109 ], [ -123.019505677999973, 50.084500697000109 ], [ -123.020344354999921, 50.084500553000105 ], [ -123.020344239999972, 50.084230736000031 ], [ -123.022021581, 50.084230430000105 ], [ -123.022021704999929, 50.084500247000051 ], [ -123.022860379999898, 50.084500085000094 ], [ -123.022860507999937, 50.08476990400009 ], [ -123.023699188999956, 50.084769736000062 ], [ -123.023699320999924, 50.08503955200004 ], [ -123.024118662999967, 50.085039466000083 ], [ -123.0241188, 50.085309284000047 ], [ -123.02453814499998, 50.085309196000019 ], [ -123.024538418999953, 50.085848831000106 ], [ -123.024957768999968, 50.08584874200011 ], [ -123.024957908999966, 50.086118559000035 ], [ -123.025377260999903, 50.086118468000102 ], [ -123.025377830999929, 50.087197738000057 ], [ -123.022022941000017, 50.087198423000068 ], [ -123.022022694000015, 50.086658789000055 ], [ -123.020764623999966, 50.086659020000099 ], [ -123.020764739999933, 50.086928837000045 ], [ -123.017829228, 50.086929325000028 ], [ -123.017829128999907, 50.086659508000132 ], [ -123.01573234599995, 50.086659811000104 ], [ -123.015732434999961, 50.086929628000064 ], [ -123.015313075999956, 50.086929684000083 ], [ -123.015313160999952, 50.087199502000075 ], [ -123.014055077999956, 50.087199661000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12130417", "BldgCostT": "6891667", "sL_LossRatio": "0.926631611506341", "sL_AssetLoss": "6466", "sL_BldgLoss": "5991.6", "sL_StrLoss": "4078", "sL_NStrLoss": "1913.6", "sL_ContLoss": "474.4", "geom_point": "0101000020E61000008D0EA37BB1C05EC093A4317B550B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.010477615999918, 50.090129213000068 ], [ -123.009537796999936, 50.089220161000078 ], [ -123.008698347999925, 50.08840810200013 ], [ -123.008416991, 50.087470025000101 ], [ -123.009022794999908, 50.08746997900009 ], [ -123.009022742999946, 50.08720016200003 ], [ -123.011119548999943, 50.087199980000044 ], [ -123.011119612999934, 50.087469797000026 ], [ -123.012377701999981, 50.08746967000009 ], [ -123.012377771999979, 50.087739487000064 ], [ -123.012797137999911, 50.087739442000071 ], [ -123.012797640999949, 50.089628164 ], [ -123.01237826, 50.089628210000051 ], [ -123.012378281999986, 50.089720502000034 ], [ -123.012753460999974, 50.089730692000053 ], [ -123.012320679999959, 50.089883702000087 ], [ -123.011666591999955, 50.09002339600007 ], [ -123.010477615999918, 50.090129213000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98674417", "BldgCostT": "63861667", "sL_LossRatio": "0.823508707915509", "sL_AssetLoss": "30968.95", "sL_BldgLoss": "25503.2", "sL_StrLoss": "19191.5", "sL_NStrLoss": "6311.7", "sL_ContLoss": "5465.75", "geom_point": "0101000020E610000040F2B5046CBC5EC0C14C254DCD0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.937268662999955, 50.120371029000083 ], [ -122.937688312999938, 50.12037125500008 ], [ -122.93768866399995, 50.120101439000045 ], [ -122.937269015999945, 50.120101213000034 ], [ -122.937268662999955, 50.120371029000083 ], [ -122.936009710999897, 50.120370343000033 ], [ -122.936011149999942, 50.119291079000057 ], [ -122.936430790999921, 50.11929130900004 ], [ -122.936431149, 50.119021493000105 ], [ -122.93685078599999, 50.119021723000046 ], [ -122.93685114099999, 50.118751906000021 ], [ -122.937270778999931, 50.118752134000083 ], [ -122.93727113199995, 50.118482318000062 ], [ -122.937690764999957, 50.118482544000088 ], [ -122.937691114999922, 50.11821272800006 ], [ -122.938110748, 50.118212953000054 ], [ -122.938111094999954, 50.117943137000097 ], [ -122.938530723999946, 50.117943359000066 ], [ -122.9385314149999, 50.117403728000056 ], [ -122.938951039999907, 50.117403949000035 ], [ -122.93895172699996, 50.116864317000086 ], [ -122.939371346999962, 50.116864537000019 ], [ -122.939372026999976, 50.11632490500007 ], [ -122.939791643999939, 50.116325123000173 ], [ -122.939792320999928, 50.115785491000082 ], [ -122.940211928999986, 50.11578570800004 ], [ -122.940212266999964, 50.115515892000133 ], [ -122.939373049999929, 50.115515456000018 ], [ -122.939373916999969, 50.114828451000093 ], [ -122.939511211999957, 50.114706080000133 ], [ -122.939793673999972, 50.114706227000084 ], [ -122.93979398899998, 50.114454038000147 ], [ -122.93981375599995, 50.11443642100005 ], [ -122.940213610999962, 50.114436627000032 ], [ -122.940214055999945, 50.114079625000038 ], [ -122.940744878999922, 50.113606478000044 ], [ -122.940896592999934, 50.113458081000019 ], [ -122.940982252999973, 50.113357756000084 ], [ -122.94105413299999, 50.113357792000095 ], [ -122.941054234999967, 50.113273445000083 ], [ -122.941191155999917, 50.113113080000097 ], [ -122.942075888999966, 50.112076684000016 ], [ -122.94330560899999, 50.110923710000051 ], [ -122.944459886999965, 50.109305214000059 ], [ -122.944949326999961, 50.108692908000087 ], [ -122.94540370299994, 50.108295693000088 ], [ -122.946005485999962, 50.107974387000105 ], [ -122.946901807999936, 50.108010882000066 ], [ -122.947724256999933, 50.108468397000088 ], [ -122.948356757999989, 50.109054803000021 ], [ -122.948407606000018, 50.109034992000041 ], [ -122.948550802999989, 50.109090291000086 ], [ -122.948783103999972, 50.109424190000041 ], [ -122.948753891999942, 50.109504406000099 ], [ -122.949449209999955, 50.110239730000067 ], [ -122.949449046999973, 50.110393770000073 ], [ -122.94957099599992, 50.110393823000052 ], [ -122.95003851599995, 50.111146758000068 ], [ -122.950175021999911, 50.111751011000045 ], [ -122.950428433999917, 50.112872627000066 ], [ -122.951420824, 50.112930025000026 ], [ -122.95114641399999, 50.11249739700002 ], [ -122.951217299999882, 50.112336496000097 ], [ -122.951636882999964, 50.111986195000078 ], [ -122.951571574999974, 50.111852438000071 ], [ -122.951482496999958, 50.111669989000099 ], [ -122.95145499399996, 50.111248407000097 ], [ -122.951740136999973, 50.110749655000085 ], [ -122.951763603999964, 50.11070859100009 ], [ -122.951765846999976, 50.110664572000097 ], [ -122.952363616999918, 50.110664818000018 ], [ -122.95240715199999, 50.11001506500007 ], [ -122.952805917999967, 50.110026107000081 ], [ -122.952806350999964, 50.109585734000078 ], [ -122.953221901999882, 50.109585901000095 ], [ -122.95322596699998, 50.109525213000076 ], [ -122.953226171000026, 50.109316086000049 ], [ -122.952806616999936, 50.109315917000096 ], [ -122.952807411999956, 50.108506468000066 ], [ -122.953000614999979, 50.108506546000072 ], [ -122.95335710099999, 50.108711283000119 ], [ -122.953538577999964, 50.108961632000096 ], [ -122.954071953999943, 50.109205803000073 ], [ -122.954484888999943, 50.109259252000101 ], [ -122.954484790000024, 50.109361308000089 ], [ -122.955120704999942, 50.109378906000138 ], [ -122.955390881999904, 50.109459552000018 ], [ -122.955643717999976, 50.109643896000122 ], [ -122.955672816999964, 50.10990870500008 ], [ -122.955575744999962, 50.110084997000094 ], [ -122.955143908999929, 50.110329676000092 ], [ -122.954335577999984, 50.11061502900008 ], [ -122.953834065999956, 50.110912360000079 ], [ -122.953583813999956, 50.111220462000055 ], [ -122.953446128999943, 50.111714579000079 ], [ -122.953565580999978, 50.11348880400007 ], [ -122.95355273899996, 50.113514756000015 ], [ -122.953385925999939, 50.113846645000123 ], [ -122.953083906999964, 50.114073057000056 ], [ -122.952435661, 50.113787825000045 ], [ -122.951903866999928, 50.113553804000048 ], [ -122.951874963999984, 50.113530938000075 ], [ -122.951853688999933, 50.113514111000072 ], [ -122.95183533899997, 50.113507356000142 ], [ -122.951614611999972, 50.113426507000092 ], [ -122.951339091999898, 50.113398338000067 ], [ -122.951165974, 50.113380612000071 ], [ -122.950923315999916, 50.113355812000073 ], [ -122.950687090999978, 50.11333164800007 ], [ -122.950516512999954, 50.113314191000043 ], [ -122.950078914999921, 50.113329109000098 ], [ -122.949749688999958, 50.113436911000058 ], [ -122.949574287999951, 50.113548998000091 ], [ -122.949547087999974, 50.113594785000032 ], [ -122.94939759199994, 50.113846388000077 ], [ -122.949368288999935, 50.114262208000113 ], [ -122.949348818999951, 50.114761897000029 ], [ -122.949261290999928, 50.115231805000072 ], [ -122.949257647999929, 50.115240587000109 ], [ -122.949179707999988, 50.115428082000058 ], [ -122.948640399999988, 50.116725311000046 ], [ -122.948324985999989, 50.117150192000061 ], [ -122.947782385999915, 50.117580607000043 ], [ -122.94728428699996, 50.117890606000103 ], [ -122.946305566999911, 50.118497867000038 ], [ -122.945857301, 50.118776008000047 ], [ -122.946154402999937, 50.118863665000084 ], [ -122.944936127999966, 50.119710913000048 ], [ -122.941931219999944, 50.121722534000057 ], [ -122.940624199999931, 50.121721872000059 ], [ -122.940623531999961, 50.122261504000051 ], [ -122.939364530999981, 50.122260854000068 ], [ -122.939363849999921, 50.122800485000035 ], [ -122.93810483399993, 50.122799820000075 ], [ -122.938105180999941, 50.122530006000041 ], [ -122.937265841999988, 50.122529555000021 ], [ -122.937265488999941, 50.122799370000081 ], [ -122.937685160999948, 50.122799597000089 ], [ -122.937684110999953, 50.123609044 ], [ -122.936752006999939, 50.123608541000031 ], [ -122.936664723999911, 50.123502397000081 ], [ -122.93642543, 50.123339860000087 ], [ -122.936425431999936, 50.123338545000124 ], [ -122.936423491999918, 50.123338545000124 ], [ -122.936008711999989, 50.123056810000051 ], [ -122.93596173899999, 50.122995858000088 ], [ -122.935620902999972, 50.122986699000073 ], [ -122.935190867999964, 50.123068047000103 ], [ -122.934327417999924, 50.123067563000063 ], [ -122.934327192999945, 50.12323142100005 ], [ -122.933775894999926, 50.12333570100003 ], [ -122.933770707999955, 50.123337062000068 ], [ -122.932648340999933, 50.123336417000139 ], [ -122.932649855999955, 50.122257153000113 ], [ -122.933489189999946, 50.12225763800005 ], [ -122.933489563999942, 50.121987822000023 ], [ -122.93474855699999, 50.12198853600006 ], [ -122.934748925999955, 50.121718720000025 ], [ -122.93516858699995, 50.121718955000055 ], [ -122.935169315999957, 50.121179324000124 ], [ -122.936008631999982, 50.121179789000081 ], [ -122.936008991999941, 50.12090997300001 ], [ -122.937267958999982, 50.120910660000071 ], [ -122.937268662999955, 50.120371029000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5099167", "BldgCostT": "3516667", "sL_LossRatio": "0.881780114908949", "sL_AssetLoss": "20538", "sL_BldgLoss": "18110", "sL_StrLoss": "11640", "sL_NStrLoss": "6470", "sL_ContLoss": "2428", "geom_point": "0101000020E6100000EB7032795CCA5EC01DE7F4C48CE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157395166999891, 49.803619727000047 ], [ -123.157413370999976, 49.80332631200006 ], [ -123.15734858399999, 49.803324627000066 ], [ -123.157364657999935, 49.803065550000063 ], [ -123.15647896800003, 49.803042504000082 ], [ -123.156559898999944, 49.80173849200002 ], [ -123.153849522999934, 49.801667925000096 ], [ -123.153860798999958, 49.80157829200008 ], [ -123.15415169299996, 49.801280591000108 ], [ -123.154968091999933, 49.800767890000046 ], [ -123.156107479999946, 49.800289398000125 ], [ -123.156842414999943, 49.799883499000039 ], [ -123.157592541999918, 49.799591526000043 ], [ -123.160574412999907, 49.798430794000055 ], [ -123.161574869999981, 49.797970889000091 ], [ -123.16151252499999, 49.798977324000099 ], [ -123.16509224499994, 49.799070266000072 ], [ -123.165089328999954, 49.799117392000085 ], [ -123.165920991999883, 49.799138968000115 ], [ -123.16842833, 49.799203979000048 ], [ -123.168206189999921, 49.802798263000078 ], [ -123.165526526999912, 49.802728782000031 ], [ -123.165517485, 49.802874929000033 ], [ -123.163581090999955, 49.802824679000032 ], [ -123.163528449999944, 49.803674974000025 ], [ -123.162952369999971, 49.803660018000073 ], [ -123.162945930999967, 49.803763988000163 ], [ -123.157711000999953, 49.803627943000023 ], [ -123.157395166999891, 49.803619727000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10873750", "BldgCostT": "6025000", "sL_LossRatio": "0.767526265520535", "sL_AssetLoss": "26175", "sL_BldgLoss": "20090", "sL_StrLoss": "10350", "sL_NStrLoss": "9740", "sL_ContLoss": "6085", "geom_point": "0101000020E61000001BDC73ECE2C95EC0C2416B1361E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.151847983999929, 49.809562967000033 ], [ -123.151870120999945, 49.809206927000098 ], [ -123.151330186999971, 49.809192854000095 ], [ -123.151553678999932, 49.805598636000056 ], [ -123.155787055999951, 49.805708906000092 ], [ -123.157104665999952, 49.805743194000058 ], [ -123.157082570999933, 49.806099235000026 ], [ -123.157622470999954, 49.806113280000012 ], [ -123.157399450999947, 49.80970750900007 ], [ -123.156036208999964, 49.809672040000045 ], [ -123.155148251999904, 49.809604293000085 ], [ -123.154376903999946, 49.809628846000074 ], [ -123.151847983999929, 49.809562967000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.873242054395638", "sL_AssetLoss": "16141", "sL_BldgLoss": "14095", "sL_StrLoss": "8860", "sL_NStrLoss": "5235", "sL_ContLoss": "2046", "geom_point": "0101000020E61000004D5CD073B2CC5EC0B33E2F26C7E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.197951838, 49.814286809000066 ], [ -123.197956879999964, 49.811488492000088 ], [ -123.193255353999945, 49.811401208000056 ], [ -123.19343730699994, 49.808431464000108 ], [ -123.194276803999983, 49.808453020000073 ], [ -123.194762252999965, 49.808465482000024 ], [ -123.194778564999979, 49.808199095000134 ], [ -123.195162613999969, 49.808208953000047 ], [ -123.195166853999964, 49.808139705000059 ], [ -123.200718284999979, 49.808282048000052 ], [ -123.200712648999925, 49.808374276000031 ], [ -123.201070376999922, 49.808383438000099 ], [ -123.20106464499996, 49.808477260000096 ], [ -123.20129787399992, 49.808483233000068 ], [ -123.201289010999943, 49.8086283170001 ], [ -123.201941161999912, 49.80864501600005 ], [ -123.201928118999959, 49.808858556000068 ], [ -123.202258263999951, 49.808867009000011 ], [ -123.202165331999964, 49.810388609000043 ], [ -123.202038732999952, 49.812461313000071 ], [ -123.201996460999979, 49.812460231000053 ], [ -123.201878735999912, 49.81438741200008 ], [ -123.197951838, 49.814286809000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9811750", "BldgCostT": "6295000", "sL_LossRatio": "0.80816429451978", "sL_AssetLoss": "35692", "sL_BldgLoss": "28845", "sL_StrLoss": "17801", "sL_NStrLoss": "11044", "sL_ContLoss": "6847", "geom_point": "0101000020E61000008750E782E1C95EC09C800D25E6E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.151399734999956, 49.822764422000041 ], [ -123.151426947999965, 49.822326928000038 ], [ -123.151276957, 49.822323021000052 ], [ -123.151359776999968, 49.820991621000097 ], [ -123.151905297999932, 49.820585796000039 ], [ -123.152167591999969, 49.820558689000094 ], [ -123.152378400999964, 49.82068410500009 ], [ -123.152628412999945, 49.820746703000083 ], [ -123.152904193999973, 49.820575797000075 ], [ -123.152682108999969, 49.820009011000096 ], [ -123.152916300999962, 49.819558902000075 ], [ -123.152774602999969, 49.819046191000091 ], [ -123.152343194999929, 49.818606087000035 ], [ -123.151011664999913, 49.817666054000064 ], [ -123.151102480999924, 49.816206052000105 ], [ -123.155508325999961, 49.816320801000089 ], [ -123.156654751999938, 49.816350631000098 ], [ -123.15662717, 49.816794928000036 ], [ -123.157207258999946, 49.816810017000108 ], [ -123.15717505399999, 49.817328872000054 ], [ -123.15726519, 49.817331216000092 ], [ -123.157142120999978, 49.819313944 ], [ -123.157175918999926, 49.819314823000077 ], [ -123.15695280099996, 49.822908985000083 ], [ -123.155095368999952, 49.822860662000011 ], [ -123.151399734999956, 49.822764422000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5028334", "BldgCostT": "3258334", "sL_LossRatio": "0.652022907814521", "sL_AssetLoss": "27065", "sL_BldgLoss": "17647", "sL_StrLoss": "8384", "sL_NStrLoss": "9263", "sL_ContLoss": "9418", "geom_point": "0101000020E610000061FAC16DEBC75EC03B1A87FADDE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121083404999979, 49.778341522000041 ], [ -123.126630995999975, 49.778487632000115 ], [ -123.126405683, 49.782081934000047 ], [ -123.120857656999959, 49.781935813000096 ], [ -123.121083404999979, 49.778341522000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5212750", "BldgCostT": "3595000", "sL_LossRatio": "0.87408106497119", "sL_AssetLoss": "20132", "sL_BldgLoss": "17597", "sL_StrLoss": "12060", "sL_NStrLoss": "5537", "sL_ContLoss": "2535", "geom_point": "0101000020E6100000E78B20429AC75EC051437EAAC8E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116155411999927, 49.789372771000075 ], [ -123.116164112999968, 49.789234525000097 ], [ -123.115942213999944, 49.789228667000017 ], [ -123.11594901, 49.789120658000087 ], [ -123.11587731799996, 49.789118765000055 ], [ -123.115918543999925, 49.788463674000106 ], [ -123.116103492, 49.785524519000077 ], [ -123.116531271999946, 49.785535813000116 ], [ -123.116548086999941, 49.785268529000071 ], [ -123.119312851999936, 49.785341485000146 ], [ -123.122096502999938, 49.785414868000032 ], [ -123.122036263999945, 49.786374214000055 ], [ -123.121812888999926, 49.786262913000058 ], [ -123.121470412999926, 49.786353498000082 ], [ -123.121458207999964, 49.786974489000045 ], [ -123.121000814999945, 49.787531294000075 ], [ -123.121266893999945, 49.788179298000102 ], [ -123.121267402999962, 49.788610909000091 ], [ -123.121783715999982, 49.78897970400007 ], [ -123.121793850999936, 49.789007100000084 ], [ -123.121736574999957, 49.789005590000059 ], [ -123.121704322999932, 49.78951913 ], [ -123.116155411999927, 49.789372771000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12599250", "BldgCostT": "7215000", "sL_LossRatio": "0.748021582733813", "sL_AssetLoss": "55600", "sL_BldgLoss": "41590", "sL_StrLoss": "21760", "sL_NStrLoss": "19830", "sL_ContLoss": "14010", "geom_point": "0101000020E6100000BE4F76AFAAC85EC0470B0A6224DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13528079699995, 49.740802201000051 ], [ -123.13698892299999, 49.740788561000024 ], [ -123.13698279899991, 49.741152881000076 ], [ -123.13706061799995, 49.741488045000018 ], [ -123.137062699999916, 49.741497111000101 ], [ -123.137299707999929, 49.74185789000007 ], [ -123.137812890999925, 49.742308795000106 ], [ -123.138042801000012, 49.742584900000054 ], [ -123.138061564999987, 49.742653225000048 ], [ -123.138159303999927, 49.743009212000068 ], [ -123.138181713999955, 49.743406741000101 ], [ -123.138182883999917, 49.744166450000066 ], [ -123.136215917999934, 49.744166143000044 ], [ -123.135503714999942, 49.744168158000015 ], [ -123.135570699999946, 49.745179814000053 ], [ -123.135754185999986, 49.747950016000082 ], [ -123.135770804999979, 49.748200905 ], [ -123.13555482299995, 49.748195236000079 ], [ -123.135557148999936, 49.749029952000036 ], [ -123.135288947999967, 49.74903026500003 ], [ -123.134971935999957, 49.749030635000082 ], [ -123.13495788299997, 49.748342653000066 ], [ -123.134955442999967, 49.748222582000047 ], [ -123.134903907999941, 49.747621669000111 ], [ -123.134901532999919, 49.747564548000064 ], [ -123.134905818999982, 49.747309302000076 ], [ -123.134887387, 49.746594602000073 ], [ -123.134882731999966, 49.746075584000081 ], [ -123.134871419999925, 49.745845886000076 ], [ -123.134900510999941, 49.74524169799999 ], [ -123.134876264999917, 49.744117152000051 ], [ -123.134731751999979, 49.744101664000027 ], [ -123.134371542999972, 49.744063066000081 ], [ -123.13401133399995, 49.744024467000017 ], [ -123.133155821999964, 49.743932803000092 ], [ -123.13311356399997, 49.743049899000049 ], [ -123.133079659999936, 49.742340241000093 ], [ -123.133062498999919, 49.741981582000086 ], [ -123.133008985999979, 49.740794815000051 ], [ -123.134167495999989, 49.74079859000004 ], [ -123.1345005579999, 49.740799670000065 ], [ -123.134847634999957, 49.740800793000027 ], [ -123.13528079699995, 49.740802201000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5236917", "BldgCostT": "3611667", "sL_LossRatio": "0.867030201342282", "sL_AssetLoss": "21456", "sL_BldgLoss": "18603", "sL_StrLoss": "12550", "sL_NStrLoss": "6053", "sL_ContLoss": "2853", "geom_point": "0101000020E61000008F9787AF23CB5EC0F91D16ACE9EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.171964927999952, 49.864563101000101 ], [ -123.176830754999969, 49.864688749000045 ], [ -123.17695199299996, 49.865674812000037 ], [ -123.177091323999946, 49.866162964000075 ], [ -123.176959959999962, 49.86829178000005 ], [ -123.17657120599992, 49.868281751000104 ], [ -123.176562451, 49.868423589000059 ], [ -123.174043647999952, 49.868358574000077 ], [ -123.171003801999959, 49.868280032000087 ], [ -123.171226036999911, 49.864686068 ], [ -123.1716147599999, 49.864696116000147 ], [ -123.17162352899993, 49.864554277000067 ], [ -123.171964927999952, 49.864563101000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7044417", "BldgCostT": "4361667", "sL_LossRatio": "0.600011672243405", "sL_AssetLoss": "51404", "sL_BldgLoss": "30843", "sL_StrLoss": "11720", "sL_NStrLoss": "19123", "sL_ContLoss": "20561", "geom_point": "0101000020E6100000E23E59CEF1CA5EC08A332B804EEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169415428999955, 49.859926146000056 ], [ -123.173529227999907, 49.860032497000049 ], [ -123.17389104199998, 49.86025289 ], [ -123.173682054000025, 49.863636172000021 ], [ -123.171425386999928, 49.86357786000012 ], [ -123.168123994999945, 49.863492468000082 ], [ -123.168346433999915, 49.859898485000031 ], [ -123.169415428999955, 49.859926146000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.851441241685144", "sL_AssetLoss": "5412", "sL_BldgLoss": "4608", "sL_StrLoss": "3100", "sL_NStrLoss": "1508", "sL_ContLoss": "804", "geom_point": "0101000020E61000009364CA45C4C95EC0B7D56A176CE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152847218, 49.801641811000096 ], [ -123.152853433999923, 49.801541810000089 ], [ -123.152788222999959, 49.801540111000108 ], [ -123.152829272999895, 49.80087954600004 ], [ -123.152797266999954, 49.800878712000028 ], [ -123.152820546, 49.800504094000097 ], [ -123.150536608999971, 49.800444553000013 ], [ -123.150645246999972, 49.798697626000113 ], [ -123.150918793999921, 49.799063099000122 ], [ -123.151546483999965, 49.799188503000011 ], [ -123.152824495999965, 49.799537388000132 ], [ -123.154076807999957, 49.799733906000078 ], [ -123.154676309999928, 49.800228095000108 ], [ -123.155232203999958, 49.800443195000085 ], [ -123.153900494999974, 49.800930289000085 ], [ -123.153622991999967, 49.801219398000086 ], [ -123.153471807999921, 49.80165090300008 ], [ -123.153461868999955, 49.80165782600006 ], [ -123.152847218, 49.801641811000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.913642052565707", "sL_AssetLoss": "3196", "sL_BldgLoss": "2920", "sL_StrLoss": "2200", "sL_NStrLoss": "720", "sL_ContLoss": "276", "geom_point": "0101000020E610000077ED1C145ECB5EC0955AF7A8A2EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175375269999961, 49.874317592000082 ], [ -123.175563590999971, 49.871267842000101 ], [ -123.175568281, 49.871191890000027 ], [ -123.179860756999958, 49.871302585000102 ], [ -123.180189994999949, 49.87196560800006 ], [ -123.180261481999963, 49.872523892000046 ], [ -123.180361613999978, 49.87283860600008 ], [ -123.180361901999959, 49.872944732000093 ], [ -123.179155644, 49.872879290000078 ], [ -123.17945602, 49.872785897000078 ], [ -123.179524601999972, 49.87267769400006 ], [ -123.179038390999921, 49.87253380100006 ], [ -123.17662831899996, 49.872240398000031 ], [ -123.176127916999974, 49.872394299000092 ], [ -123.176033386999933, 49.872709006000072 ], [ -123.17603928099993, 49.872805487000079 ], [ -123.176107105999947, 49.873915290000106 ], [ -123.175732212999961, 49.874340938000053 ], [ -123.175375269999961, 49.874317592000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.848857644991213", "sL_AssetLoss": "5690", "sL_BldgLoss": "4830", "sL_StrLoss": "3240", "sL_NStrLoss": "1590", "sL_ContLoss": "860", "geom_point": "0101000020E61000003E99B99F17CA5EC024006A302EE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157164844999954, 49.785551487000042 ], [ -123.15728585, 49.78360050000007 ], [ -123.15714631799996, 49.7835968690001 ], [ -123.157369229, 49.780002510000045 ], [ -123.157814073999987, 49.780014088000016 ], [ -123.157820915999949, 49.779903720000092 ], [ -123.15818073, 49.779913084000043 ], [ -123.158163814999952, 49.782506601000087 ], [ -123.158139351, 49.783752514000092 ], [ -123.158118033999983, 49.784656479000049 ], [ -123.158073343999945, 49.78486233700005 ], [ -123.157998396999929, 49.78501789400007 ], [ -123.157807164999923, 49.785233412000068 ], [ -123.157220710999965, 49.785526868000026 ], [ -123.157164844999954, 49.785551487000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.850412970327317", "sL_AssetLoss": "3269", "sL_BldgLoss": "2780", "sL_StrLoss": "1670", "sL_NStrLoss": "1110", "sL_ContLoss": "489", "geom_point": "0101000020E6100000B01D4ABC15CA5EC0D96186A585E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1577149399999, 49.775715361000053 ], [ -123.157936863999922, 49.775715060000067 ], [ -123.157997304, 49.775781607000141 ], [ -123.158112805999949, 49.776069103000047 ], [ -123.158169883, 49.776425193000065 ], [ -123.158174472, 49.776794064000065 ], [ -123.158135116999944, 49.776794119000037 ], [ -123.158141264999927, 49.778682935000106 ], [ -123.156891190999943, 49.77868463400003 ], [ -123.156885092999971, 49.77679581700005 ], [ -123.15771844199999, 49.776794686000081 ], [ -123.1577149399999, 49.775715361000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.838610827374872", "sL_AssetLoss": "2937", "sL_BldgLoss": "2463", "sL_StrLoss": "1620", "sL_NStrLoss": "843", "sL_ContLoss": "474", "geom_point": "0101000020E610000029DE33D8F5C95EC0D96EED0A1EE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156463205999955, 49.775177394000124 ], [ -123.156461466999957, 49.774637732000016 ], [ -123.153961529999961, 49.774641080000045 ], [ -123.153960674999936, 49.77437124900009 ], [ -123.153610060999952, 49.774371714000054 ], [ -123.155942842999977, 49.773519430000086 ], [ -123.156459698999953, 49.774088569000106 ], [ -123.156460597999953, 49.774367901000083 ], [ -123.156713068, 49.774367560000023 ], [ -123.157447336999951, 49.775176062000043 ], [ -123.156463205999955, 49.775177394000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.875386996904025", "sL_AssetLoss": "64.6", "sL_BldgLoss": "56.55", "sL_StrLoss": "8.35", "sL_NStrLoss": "48.2", "sL_ContLoss": "8.05", "geom_point": "0101000020E61000001BED3C1A9CCB5EC0340A72E5A6EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.180672238999989, 49.8729615660001 ], [ -123.18056769899999, 49.872073788000115 ], [ -123.180169630999941, 49.871310544 ], [ -123.181127297999964, 49.871335215000052 ], [ -123.181100674999982, 49.871767247000101 ], [ -123.182348681999926, 49.871799384000049 ], [ -123.18227584099999, 49.872981888000041 ], [ -123.183471215999944, 49.873012658000093 ], [ -123.183465033999937, 49.873113034000063 ], [ -123.180672238999989, 49.8729615660001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23284584", "BldgCostT": "16058334", "sL_LossRatio": "0.834202379012547", "sL_AssetLoss": "122740", "sL_BldgLoss": "102390", "sL_StrLoss": "62320", "sL_NStrLoss": "40070", "sL_ContLoss": "20350", "geom_point": "0101000020E61000007E5F01F1DFC85EC0E21913E6E6E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147233985999932, 49.776560323000105 ], [ -123.147445603999984, 49.773159405000072 ], [ -123.14320065599999, 49.77304842500012 ], [ -123.143208850999912, 49.772916917000011 ], [ -123.143086761999925, 49.772913723000038 ], [ -123.14309739399999, 49.772743086000062 ], [ -123.142880763999941, 49.77273741699999 ], [ -123.142888432999897, 49.772614355000016 ], [ -123.142741666999953, 49.772610515000082 ], [ -123.142749574, 49.772483644000069 ], [ -123.142583969999947, 49.772479310000108 ], [ -123.14259366099999, 49.772323810000067 ], [ -123.142452173999956, 49.772320107000056 ], [ -123.142459299, 49.772205800000052 ], [ -123.142256875, 49.772200503000121 ], [ -123.14226632299993, 49.772048912000052 ], [ -123.142143580999971, 49.772045700000085 ], [ -123.142153317999941, 49.771889474000041 ], [ -123.142073986999932, 49.771887398000075 ], [ -123.142083462999921, 49.771735393000085 ], [ -123.141991893999958, 49.771732997000107 ], [ -123.141999308, 49.771614058000033 ], [ -123.141840195999947, 49.771609893000019 ], [ -123.141853933999954, 49.771389505000101 ], [ -123.141754106999926, 49.771386891000077 ], [ -123.141774856999945, 49.771054042000088 ], [ -123.141646824999953, 49.77105069000006 ], [ -123.141656800999954, 49.770890655000066 ], [ -123.141558729999971, 49.770888088000035 ], [ -123.141566453999971, 49.770764201000063 ], [ -123.141481836, 49.770761986000124 ], [ -123.141495055999911, 49.770549943000105 ], [ -123.141370544999944, 49.770546683000099 ], [ -123.141381089999967, 49.770377575000126 ], [ -123.141369954999988, 49.770377283000066 ], [ -123.14137872, 49.770236709000066 ], [ -123.141343363999965, 49.770235783 ], [ -123.141352866999966, 49.770083366000058 ], [ -123.141292370999935, 49.770081782000013 ], [ -123.141304666999986, 49.769884562000165 ], [ -123.141286384999958, 49.769884083000044 ], [ -123.141297685000012, 49.769702822000042 ], [ -123.141292396, 49.769702683000141 ], [ -123.141404081999966, 49.767911276000092 ], [ -123.14019240499999, 49.767912746000043 ], [ -123.140191625999975, 49.76764291500011 ], [ -123.139973361999964, 49.767643179000089 ], [ -123.139947921, 49.768051041000049 ], [ -123.139185474999977, 49.768031066000084 ], [ -123.139140128999927, 49.768757859000104 ], [ -123.138676982000035, 49.768745722000084 ], [ -123.133593673999954, 49.768612382000157 ], [ -123.13362866599995, 49.768052645000118 ], [ -123.133599709999913, 49.768051884000059 ], [ -123.133640400999951, 49.767400968000082 ], [ -123.133160733999944, 49.767388373000095 ], [ -123.133268676999961, 49.765661861000076 ], [ -123.132751028999905, 49.765648267000095 ], [ -123.132975764999927, 49.76205386900007 ], [ -123.136843394999914, 49.762155379000056 ], [ -123.13684290199997, 49.761980431000062 ], [ -123.136009805999976, 49.761981412000061 ], [ -123.136009050999988, 49.761711580000068 ], [ -123.135592503999959, 49.761712068000115 ], [ -123.135587236999925, 49.759823244000138 ], [ -123.136003767999966, 49.759822756000105 ], [ -123.136002257999948, 49.759283092000061 ], [ -123.136418781999936, 49.759282603000052 ], [ -123.136417978999972, 49.758995525000017 ], [ -123.130907988, 49.758850835000025 ], [ -123.131116905999974, 49.755511061000078 ], [ -123.13099378, 49.755511200000079 ], [ -123.130993051999965, 49.755241367000075 ], [ -123.130576562999977, 49.755241838000074 ], [ -123.130574388999932, 49.754432341000054 ], [ -123.132240323999952, 49.754430451000069 ], [ -123.13224105799999, 49.754700283000069 ], [ -123.13265754299999, 49.754699807000037 ], [ -123.132656806999947, 49.754429975000114 ], [ -123.133073291999921, 49.754429497000046 ], [ -123.133072551999987, 49.754159665000017 ], [ -123.132656069999925, 49.754160142000011 ], [ -123.132655333999963, 49.753890311000077 ], [ -123.132238855999901, 49.753890786000056 ], [ -123.132234452999967, 49.752271792000059 ], [ -123.132650918999929, 49.752271316000069 ], [ -123.132649446999935, 49.751731651000078 ], [ -123.134315288999943, 49.751729732000108 ], [ -123.13431603399999, 49.751999564000151 ], [ -123.134732495999984, 49.751999080000068 ], [ -123.134736233999945, 49.753348242000065 ], [ -123.135985656999949, 49.753346783000076 ], [ -123.135987920999952, 49.754156280000046 ], [ -123.135571437999957, 49.754156768000072 ], [ -123.135574447999929, 49.755236096000061 ], [ -123.135157958999969, 49.755236584000038 ], [ -123.13515830599998, 49.755362142000131 ], [ -123.136247140999942, 49.755390716000093 ], [ -123.13638278599997, 49.757437906000099 ], [ -123.136522190999955, 49.759541401000064 ], [ -123.136830099999884, 49.761016586000089 ], [ -123.137755493, 49.763765402000068 ], [ -123.137761152999971, 49.763793041000064 ], [ -123.137797658999958, 49.763971998000059 ], [ -123.137888491999917, 49.764416898000064 ], [ -123.137893869999957, 49.764622434000024 ], [ -123.137909566999951, 49.765224759000134 ], [ -123.137927372999982, 49.765907566000045 ], [ -123.138321399999967, 49.765910147000056 ], [ -123.138640240999933, 49.765912212000096 ], [ -123.138973160999939, 49.765914389000066 ], [ -123.140054815999989, 49.765921415000065 ], [ -123.140669128999889, 49.765925426000152 ], [ -123.14206428599999, 49.765934908000105 ], [ -123.14399751799999, 49.765934187000099 ], [ -123.14393377399989, 49.766846131000058 ], [ -123.143864773999923, 49.768177330000071 ], [ -123.143900497999979, 49.768606684000098 ], [ -123.144046105, 49.769190136000105 ], [ -123.144323379999946, 49.769800424 ], [ -123.144381677999903, 49.769885325000132 ], [ -123.144660845999937, 49.770291693000047 ], [ -123.144979885999959, 49.770678063000091 ], [ -123.145218413999928, 49.770908093000045 ], [ -123.145520988999962, 49.771199844000101 ], [ -123.145946958999929, 49.771474535000095 ], [ -123.146075164999928, 49.771557252000051 ], [ -123.14659725099996, 49.771831215000098 ], [ -123.147925196999935, 49.77252801100007 ], [ -123.148075271000025, 49.772606766000081 ], [ -123.148849088999938, 49.773185009000045 ], [ -123.14911675599997, 49.773571825000097 ], [ -123.149831220999914, 49.775367605000078 ], [ -123.149853160999967, 49.775422657 ], [ -123.151286704999933, 49.775131546000118 ], [ -123.152433759999951, 49.774801446000019 ], [ -123.152910486999971, 49.774627288000097 ], [ -123.152781445999921, 49.776705107000026 ], [ -123.147233985999932, 49.776560323000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32248001", "BldgCostT": "18820001", "sL_LossRatio": "0.755077803830811", "sL_AssetLoss": "98517", "sL_BldgLoss": "74388", "sL_StrLoss": "42158", "sL_NStrLoss": "32230", "sL_ContLoss": "24129", "geom_point": "0101000020E6100000AE57AA6EE2C95EC001261DA3C4E54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15069011699994, 49.797976062000082 ], [ -123.150740473999946, 49.797166243000035 ], [ -123.149893029999973, 49.797144139000096 ], [ -123.149565294999945, 49.796906889000098 ], [ -123.149284499999936, 49.796551396000055 ], [ -123.149472266999936, 49.793533053000075 ], [ -123.153464965999987, 49.793637164000089 ], [ -123.153598141999964, 49.79149310400004 ], [ -123.153597755999954, 49.791371142000131 ], [ -123.153605717999937, 49.791371131000105 ], [ -123.153683092000023, 49.790125346000131 ], [ -123.157345243999927, 49.790220710000021 ], [ -123.157344582999926, 49.790016957000098 ], [ -123.156927794999959, 49.790017522000035 ], [ -123.156925178999941, 49.789208031000051 ], [ -123.157341961999975, 49.789207466000093 ], [ -123.157341087999939, 49.788937635000103 ], [ -123.157757865999969, 49.788937069000049 ], [ -123.157756988999893, 49.78866723800008 ], [ -123.158045570999917, 49.788666846000055 ], [ -123.158040874999969, 49.789124245000046 ], [ -123.158038543999936, 49.789348995000097 ], [ -123.158036169999903, 49.78958291000005 ], [ -123.158026206999949, 49.790551998000161 ], [ -123.157979879999942, 49.792195156000098 ], [ -123.157965329999939, 49.792676300000082 ], [ -123.157952300999924, 49.793116957000073 ], [ -123.157865086999976, 49.796062271000025 ], [ -123.157804904000017, 49.797100220000104 ], [ -123.15763950299997, 49.797393059000029 ], [ -123.157456731999943, 49.797716684000115 ], [ -123.15737476299995, 49.797845412000129 ], [ -123.157017916999934, 49.798405482000057 ], [ -123.157003760999928, 49.798515920000099 ], [ -123.156985627999916, 49.798657555000027 ], [ -123.157019648999935, 49.798848332000091 ], [ -123.157152569999965, 49.799031142000025 ], [ -123.157326800999954, 49.79927077500011 ], [ -123.15740250099999, 49.79937492100008 ], [ -123.157430240999958, 49.79940652599999 ], [ -123.155813898999938, 49.800082886000041 ], [ -123.154395412, 49.799617209000054 ], [ -123.153520211999975, 49.799464798000066 ], [ -123.15222569499997, 49.79881960200008 ], [ -123.151765906999955, 49.798423702000072 ], [ -123.15069011699994, 49.797976062000082 ] ], [ [ -123.155274888999926, 49.794476233000125 ], [ -123.155273307999934, 49.793981383000073 ], [ -123.155003368999942, 49.793974353000095 ], [ -123.154972698999984, 49.794468364000124 ], [ -123.155274888999926, 49.794476233000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.863528553183726", "sL_AssetLoss": "5481", "sL_BldgLoss": "4733", "sL_StrLoss": "3100", "sL_NStrLoss": "1633", "sL_ContLoss": "748", "geom_point": "0101000020E61000007CD13F3D8DC95EC0B30C509E22E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.149894955999969, 49.815171801000119 ], [ -123.149903965999954, 49.815027003000068 ], [ -123.148261405999904, 49.814984158000094 ], [ -123.148477078999946, 49.811519920000102 ], [ -123.148511583999948, 49.81152359000005 ], [ -123.14954328799999, 49.811999200000095 ], [ -123.149890781999943, 49.812395197000107 ], [ -123.150200505999962, 49.813356508000027 ], [ -123.150358222999955, 49.815065604000033 ], [ -123.150338979999944, 49.815183378000022 ], [ -123.149894955999969, 49.815171801000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.923647146034099", "sL_AssetLoss": "1349", "sL_BldgLoss": "1246", "sL_StrLoss": "1010", "sL_NStrLoss": "236", "sL_ContLoss": "103", "geom_point": "0101000020E6100000E798036F4ECA5EC0349445276CEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.159397955999935, 49.838392872000036 ], [ -123.161838749999944, 49.838456246000071 ], [ -123.161688412999965, 49.840880967000018 ], [ -123.161297619999957, 49.840477702000072 ], [ -123.160558404999946, 49.839408196000072 ], [ -123.159805400999971, 49.838690289000027 ], [ -123.159397955999935, 49.838392872000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8506750", "BldgCostT": "5395000", "sL_LossRatio": "0.780387235568304", "sL_AssetLoss": "33468", "sL_BldgLoss": "26118", "sL_StrLoss": "15322", "sL_NStrLoss": "10796", "sL_ContLoss": "7350", "geom_point": "0101000020E6100000DA138F517FC95EC00184935D7EE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14650564499999, 49.789221672000103 ], [ -123.146502388999963, 49.788142350000044 ], [ -123.146085617999987, 49.788142877000041 ], [ -123.146081559999985, 49.786793724000063 ], [ -123.146498319999949, 49.78679319700008 ], [ -123.146495065999957, 49.785713874000116 ], [ -123.147499194999938, 49.785712600000039 ], [ -123.145840363, 49.78566926400007 ], [ -123.145944503999971, 49.783996824000063 ], [ -123.146064169999946, 49.782074940000065 ], [ -123.15037813499994, 49.782187586000056 ], [ -123.151612293000014, 49.782219781000087 ], [ -123.151388918999942, 49.785814116000033 ], [ -123.148162126999964, 49.785729911000011 ], [ -123.148162894999984, 49.785981585000066 ], [ -123.148579648999942, 49.785981052000139 ], [ -123.148581297999897, 49.78652071300008 ], [ -123.148998056000011, 49.786520178000046 ], [ -123.149003023999938, 49.788139162000064 ], [ -123.149419794999986, 49.788138625000087 ], [ -123.149423115999923, 49.789217947000054 ], [ -123.14650564499999, 49.789221672000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.85994805852917", "sL_AssetLoss": "15787", "sL_BldgLoss": "13576", "sL_StrLoss": "9060", "sL_NStrLoss": "4516", "sL_ContLoss": "2211", "geom_point": "0101000020E6100000B4933D19CEC95EC0D95637071DE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150849209999961, 49.812016299000049 ], [ -123.150667606999917, 49.811512190000016 ], [ -123.150561790999987, 49.811444138000091 ], [ -123.154036845999968, 49.811534688000044 ], [ -123.1540278499999, 49.811679486000031 ], [ -123.155440518999939, 49.811716264000111 ], [ -123.155670295999926, 49.811722245000034 ], [ -123.15550509299996, 49.8143825900001 ], [ -123.155447097999954, 49.8153164410001 ], [ -123.150858937999899, 49.815196934000056 ], [ -123.150978784999893, 49.813302398000062 ], [ -123.150849209999961, 49.812016299000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126555167", "BldgCostT": "84121667", "sL_LossRatio": "0.816980931389639", "sL_AssetLoss": "338462", "sL_BldgLoss": "276517", "sL_StrLoss": "141067", "sL_NStrLoss": "135450", "sL_ContLoss": "61945", "geom_point": "0101000020E610000024FDFF30F0C95EC032CFF85B8EEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160950625999945, 49.850807708000033 ], [ -123.160951146999935, 49.85079930800002 ], [ -123.159354867999951, 49.850757866000038 ], [ -123.159397775999977, 49.850066589000043 ], [ -123.159440022999931, 49.849385923000064 ], [ -123.158823445999943, 49.849369909000067 ], [ -123.157603791999932, 49.849338223000075 ], [ -123.157756638999984, 49.846877058000061 ], [ -123.157826986999936, 49.845744192000026 ], [ -123.160804392999964, 49.845821521000033 ], [ -123.160853840999934, 49.84502434200008 ], [ -123.159603841999953, 49.844991887000077 ], [ -123.159789315999916, 49.842002901000086 ], [ -123.15959940399992, 49.841997969000069 ], [ -123.159600598999987, 49.8423609640001 ], [ -123.159183359999986, 49.842361537000038 ], [ -123.159184245999981, 49.842631365000095 ], [ -123.159133516999958, 49.842631435 ], [ -123.158767005999934, 49.842631938000068 ], [ -123.158767666999935, 49.842833600000077 ], [ -123.158768773999952, 49.843171593000122 ], [ -123.158351527999983, 49.843172164000094 ], [ -123.158352409999935, 49.843441992000095 ], [ -123.157983539999961, 49.843442495000041 ], [ -123.157879230999924, 49.845122405000041 ], [ -123.157221611999915, 49.845105314000094 ], [ -123.152323468999967, 49.84497789400011 ], [ -123.152368332999956, 49.844256772000072 ], [ -123.152004102999925, 49.84424728700008 ], [ -123.152063203999944, 49.84329742700001 ], [ -123.151623648999944, 49.843285979000036 ], [ -123.151641938999916, 49.8429920580001 ], [ -123.151608267999976, 49.84299118000007 ], [ -123.151643598999954, 49.842423404000037 ], [ -123.151277690999962, 49.842413873000027 ], [ -123.151297873999951, 49.842089564000069 ], [ -123.15111380499999, 49.84208476900011 ], [ -123.151133501999979, 49.841768281000036 ], [ -123.150656608999967, 49.84175585800012 ], [ -123.15070526, 49.840974288 ], [ -123.150339246999962, 49.840964752000019 ], [ -123.150359314999918, 49.840642401000061 ], [ -123.150349767999941, 49.840642152000079 ], [ -123.150365693999944, 49.84038633000003 ], [ -123.15018987799999, 49.840381748000055 ], [ -123.150212375999899, 49.840020365000058 ], [ -123.14977778599993, 49.840009039000059 ], [ -123.149810700999964, 49.83948040500006 ], [ -123.149209098999933, 49.839464725000049 ], [ -123.149221477999987, 49.839265962000042 ], [ -123.148667191999948, 49.839251511000043 ], [ -123.14867760199995, 49.839084369000055 ], [ -123.148180184999944, 49.83907139900009 ], [ -123.148193158999959, 49.838863157000077 ], [ -123.148087293999936, 49.838860397000076 ], [ -123.148101601999912, 49.838630736000077 ], [ -123.148088608999956, 49.838630397000074 ], [ -123.148124627999948, 49.838052232000017 ], [ -123.147939140999981, 49.838047394000093 ], [ -123.14804264299994, 49.836386021000088 ], [ -123.147120917, 49.83636197800007 ], [ -123.147156373999977, 49.835792981000061 ], [ -123.146883942999949, 49.835785873000091 ], [ -123.146913215999973, 49.835316158000055 ], [ -123.146438156999977, 49.835303762000088 ], [ -123.146474916999949, 49.834713996000104 ], [ -123.145273353, 49.834682633000099 ], [ -123.145448469999948, 49.831874076000062 ], [ -123.145497444999961, 49.831088555000115 ], [ -123.146240444999975, 49.831107950000039 ], [ -123.146289756999963, 49.830316771000071 ], [ -123.151614637999927, 49.830455623000041 ], [ -123.151843722999928, 49.830461591000081 ], [ -123.151829188999969, 49.83069524900008 ], [ -123.152490513999979, 49.83071247400008 ], [ -123.152471817999938, 49.831013096000092 ], [ -123.15260533, 49.831016572000081 ], [ -123.15254049899994, 49.832059000000143 ], [ -123.152523459999912, 49.832332963000098 ], [ -123.152662108999934, 49.832336574000131 ], [ -123.152658555999921, 49.832393703000022 ], [ -123.155520709999976, 49.832468199000054 ], [ -123.155297397999931, 49.836062291000047 ], [ -123.154985140999955, 49.836054167000036 ], [ -123.154979296999983, 49.836148203000072 ], [ -123.157549214999932, 49.836215035000066 ], [ -123.157128387999975, 49.836786203000067 ], [ -123.157003477999965, 49.83715509700005 ], [ -123.157020890999945, 49.837677709000083 ], [ -123.157243286000025, 49.838189007000068 ], [ -123.157774306999983, 49.838737299000087 ], [ -123.158332009999981, 49.839042105000047 ], [ -123.158846189999934, 49.839150409000105 ], [ -123.15950028, 49.839436598000084 ], [ -123.159878205999945, 49.839786992 ], [ -123.161872999000011, 49.841799403000039 ], [ -123.162838299999962, 49.84329050900002 ], [ -123.163479910999953, 49.844018293000062 ], [ -123.164638484999927, 49.845384106000097 ], [ -123.165379120999972, 49.84598509700001 ], [ -123.165561403999959, 49.846354005000066 ], [ -123.16520560399999, 49.848269606000031 ], [ -123.165293787999943, 49.849682406000028 ], [ -123.165490308999949, 49.850428696000101 ], [ -123.165793467999976, 49.850933292000043 ], [ -123.164097386999956, 49.850889334000023 ], [ -123.160950625999945, 49.850807708000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818333", "BldgCostT": "2633333", "sL_LossRatio": "0.97440030796622", "sL_AssetLoss": "4156.3", "sL_BldgLoss": "4049.9", "sL_StrLoss": "3637", "sL_NStrLoss": "412.9", "sL_ContLoss": "106.4", "geom_point": "0101000020E6100000D746E11F9BCA5EC0D1EE4E462EEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.165334795999954, 49.845247413000024 ], [ -123.164621189999977, 49.844493994000068 ], [ -123.162231224999957, 49.841460245000071 ], [ -123.165382211999955, 49.84154196 ], [ -123.165284316999987, 49.843122743000045 ], [ -123.166534269999914, 49.843155133000074 ], [ -123.16646518599994, 49.844271118000101 ], [ -123.167495705999897, 49.844297811000018 ], [ -123.167463504999944, 49.844818142000086 ], [ -123.16775943, 49.844825806000031 ], [ -123.167537017999962, 49.848419861000124 ], [ -123.166665273999968, 49.84839728400005 ], [ -123.166520733999917, 49.850731947000021 ], [ -123.165935811999944, 49.850166592000065 ], [ -123.165569685999984, 49.849124093000114 ], [ -123.165664277999923, 49.848107198000086 ], [ -123.1660605899999, 49.846433798000049 ], [ -123.16597800199996, 49.846156088000065 ], [ -123.165334795999954, 49.845247413000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9025000", "BldgCostT": "4750000", "sL_LossRatio": "0.667357942762339", "sL_AssetLoss": "24110", "sL_BldgLoss": "16090", "sL_StrLoss": "7870", "sL_NStrLoss": "8220", "sL_ContLoss": "8020", "geom_point": "0101000020E6100000CED1574E0AC95EC0167452CA31E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.14115537, 49.750663822000014 ], [ -123.141178087999918, 49.75052171500014 ], [ -123.14164031899999, 49.750591099000047 ], [ -123.141610089, 49.751333605000113 ], [ -123.141709498999916, 49.752069906000045 ], [ -123.141757704999947, 49.752226705000076 ], [ -123.140831174999917, 49.752284384000056 ], [ -123.140788554999986, 49.752220765000075 ], [ -123.140768625999939, 49.752191035000081 ], [ -123.140698397999969, 49.751803063000111 ], [ -123.14115537, 49.750663822000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24775666", "BldgCostT": "17086666", "sL_LossRatio": "0.846161192509411", "sL_AssetLoss": "125651", "sL_BldgLoss": "106321", "sL_StrLoss": "65920", "sL_NStrLoss": "40401", "sL_ContLoss": "19330", "geom_point": "0101000020E610000077A9320843CA5EC0419C03DB73E54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157804904000017, 49.797100220000104 ], [ -123.157865086999976, 49.796062271000025 ], [ -123.157952300999924, 49.793116957000073 ], [ -123.157965329999939, 49.792676300000082 ], [ -123.157979879999942, 49.792195156000098 ], [ -123.158026206999949, 49.790551998000161 ], [ -123.158036169999903, 49.78958291000005 ], [ -123.158038543999936, 49.789348995000097 ], [ -123.158040874999969, 49.789124245000046 ], [ -123.158045570999917, 49.788666846000055 ], [ -123.158857295999951, 49.788665736000098 ], [ -123.158898201999975, 49.78800586800002 ], [ -123.161089211999951, 49.788062836000087 ], [ -123.161088516999925, 49.787853160000068 ], [ -123.16275559599994, 49.787850831000107 ], [ -123.162756449999975, 49.788106156000012 ], [ -123.164447082999985, 49.788150057000017 ], [ -123.164224685999983, 49.791744389000073 ], [ -123.163185355999985, 49.791717403000106 ], [ -123.16318686799994, 49.792167530000022 ], [ -123.161519641999973, 49.792169866000052 ], [ -123.161520538999952, 49.792439695000049 ], [ -123.161261283999949, 49.792440057000093 ], [ -123.161078869999983, 49.795384655000113 ], [ -123.160926567, 49.795380698000073 ], [ -123.160880503999948, 49.796124159000051 ], [ -123.159865338999921, 49.79609777200006 ], [ -123.159865390999968, 49.796113811000097 ], [ -123.159983951999919, 49.79611689400005 ], [ -123.159974795999929, 49.796264615000034 ], [ -123.160738834999961, 49.796284474000039 ], [ -123.160728321999969, 49.796454151000077 ], [ -123.161667311999977, 49.79647855000006 ], [ -123.161604422999957, 49.797493809000066 ], [ -123.161586202999928, 49.797502190000095 ], [ -123.160712311999959, 49.797772806000054 ], [ -123.15888171, 49.798765490000079 ], [ -123.158229816999963, 49.798982008000067 ], [ -123.157604291999945, 49.799333692000076 ], [ -123.157430240999958, 49.79940652599999 ], [ -123.15740250099999, 49.79937492100008 ], [ -123.157326800999954, 49.79927077500011 ], [ -123.157152569999965, 49.799031142000025 ], [ -123.157019648999935, 49.798848332000091 ], [ -123.156985627999916, 49.798657555000027 ], [ -123.157003760999928, 49.798515920000099 ], [ -123.157017916999934, 49.798405482000057 ], [ -123.15737476299995, 49.797845412000129 ], [ -123.157456731999943, 49.797716684000115 ], [ -123.15763950299997, 49.797393059000029 ], [ -123.157804904000017, 49.797100220000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.844146685472496", "sL_AssetLoss": "2836", "sL_BldgLoss": "2394", "sL_StrLoss": "1600", "sL_NStrLoss": "794", "sL_ContLoss": "442", "geom_point": "0101000020E61000003DFD148525CA5EC0B34399995BE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158964935999961, 49.775713654000107 ], [ -123.15896846699999, 49.776792978000067 ], [ -123.158174472, 49.776794064000065 ], [ -123.158169883, 49.776425193000065 ], [ -123.158112805999949, 49.776069103000047 ], [ -123.157997304, 49.775781607000141 ], [ -123.157936863999922, 49.775715060000067 ], [ -123.158964935999961, 49.775713654000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73390584", "BldgCostT": "48668334", "sL_LossRatio": "0.826011128879698", "sL_AssetLoss": "352057", "sL_BldgLoss": "290803", "sL_StrLoss": "173170", "sL_NStrLoss": "117633", "sL_ContLoss": "61254", "geom_point": "0101000020E61000003BADEB8247CA5EC097F4284372E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.158964935999961, 49.775713654000107 ], [ -123.158962287999984, 49.774904161000052 ], [ -123.159795604999928, 49.774903015000106 ], [ -123.159792056999962, 49.773823691000111 ], [ -123.159375406999985, 49.773824264000034 ], [ -123.159373956999985, 49.773381956000058 ], [ -123.159046732999968, 49.773373443000033 ], [ -123.159052209999984, 49.773285044000062 ], [ -123.158956992999947, 49.773285174000065 ], [ -123.158956888999967, 49.773253485000062 ], [ -123.15877053, 49.773248636000119 ], [ -123.15877782599992, 49.773130898000048 ], [ -123.158525427999962, 49.773124330000059 ], [ -123.158540333999952, 49.7728838190001 ], [ -123.1581100289999, 49.772872620000086 ], [ -123.158135609999931, 49.772459930000117 ], [ -123.157942948999988, 49.772454917000104 ], [ -123.157954204999925, 49.772273324000068 ], [ -123.157667570999976, 49.772265863000072 ], [ -123.15763631599998, 49.772769999000111 ], [ -123.157085473, 49.772755658000115 ], [ -123.157066308999944, 49.773064712000028 ], [ -123.156039672999938, 49.77303797800004 ], [ -123.1560404799999, 49.773289138000031 ], [ -123.156457125999921, 49.773288576000027 ], [ -123.156459698999953, 49.774088569000106 ], [ -123.155942842999977, 49.773519430000086 ], [ -123.153822056999971, 49.771135 ], [ -123.152878903999977, 49.770074538000159 ], [ -123.151827507999968, 49.768892271000048 ], [ -123.151563587999931, 49.768595479000034 ], [ -123.15088337399996, 49.767830597000092 ], [ -123.151920606999965, 49.767834189000034 ], [ -123.152952792999955, 49.767829703000103 ], [ -123.153309695999951, 49.76783090900004 ], [ -123.154058368999955, 49.767838373000103 ], [ -123.154712900999982, 49.767844894000071 ], [ -123.156094089999982, 49.767857497000094 ], [ -123.156509107999966, 49.767860210000023 ], [ -123.156569339, 49.767868212000018 ], [ -123.157312033, 49.767902075000102 ], [ -123.157881461999963, 49.76820763500011 ], [ -123.157876783999882, 49.768442567000079 ], [ -123.15787244799999, 49.768660514000018 ], [ -123.15785477299994, 49.769550013000085 ], [ -123.158508618999988, 49.769578005000071 ], [ -123.158627838999934, 49.769582953000068 ], [ -123.160550254, 49.769662653000118 ], [ -123.160659597999981, 49.770836253000077 ], [ -123.16075377, 49.771846933000063 ], [ -123.16260121, 49.771939211000081 ], [ -123.16355315, 49.771986736000024 ], [ -123.163630943999948, 49.772663641000108 ], [ -123.163732163999981, 49.773544132000076 ], [ -123.161874219999945, 49.773495857000043 ], [ -123.161874402999942, 49.773550967000055 ], [ -123.162291049999951, 49.773550385000142 ], [ -123.162291472999954, 49.773676819000087 ], [ -123.162291951999961, 49.773820215000065 ], [ -123.162708600999949, 49.773819631000066 ], [ -123.162709503999949, 49.774089462000049 ], [ -123.163126153999883, 49.774088877000032 ], [ -123.163127060999926, 49.774358708000072 ], [ -123.163960367999948, 49.774357531000106 ], [ -123.163962189999936, 49.774897194000054 ], [ -123.164378846999966, 49.77489660400002 ], [ -123.164379758999942, 49.775166434000013 ], [ -123.164796419999959, 49.775165842000071 ], [ -123.164797912999958, 49.775606154000066 ], [ -123.166089533999966, 49.775639683000065 ], [ -123.166052215999983, 49.776243379000107 ], [ -123.166466760999967, 49.776242784 ], [ -123.166472308000024, 49.77786176900004 ], [ -123.166888989999947, 49.777861170000087 ], [ -123.166889917000034, 49.778131 ], [ -123.167306601999982, 49.778130400000087 ], [ -123.167316822999965, 49.781098538000037 ], [ -123.166066689999951, 49.781100336000044 ], [ -123.166070377999944, 49.782179660000061 ], [ -123.165653656999908, 49.782180256000103 ], [ -123.165654577999973, 49.782450087000051 ], [ -123.165237853999898, 49.782450681000157 ], [ -123.165238771999924, 49.782720512000026 ], [ -123.16398859499995, 49.782722288000045 ], [ -123.163987685000023, 49.782452457000041 ], [ -123.16321994599997, 49.782453541000088 ], [ -123.163157620999982, 49.783460582000053 ], [ -123.163157863999984, 49.783532957000013 ], [ -123.163574596999965, 49.783532369000056 ], [ -123.163576412999973, 49.784072030000111 ], [ -123.163993149999925, 49.784071441000059 ], [ -123.163999525999913, 49.785960255000077 ], [ -123.162749266999981, 49.785962018000113 ], [ -123.162747458999959, 49.785422357000058 ], [ -123.16273034799994, 49.785422381000032 ], [ -123.162698587999941, 49.785935440000038 ], [ -123.157149980999947, 49.785791163000091 ], [ -123.157164844999954, 49.785551487000042 ], [ -123.157220710999965, 49.785526868000026 ], [ -123.157807164999923, 49.785233412000068 ], [ -123.157998396999929, 49.78501789400007 ], [ -123.158073343999945, 49.78486233700005 ], [ -123.158118033999983, 49.784656479000049 ], [ -123.158139351, 49.783752514000092 ], [ -123.158163814999952, 49.782506601000087 ], [ -123.15818073, 49.779913084000043 ], [ -123.160228959999955, 49.779966364000103 ], [ -123.1602238299999, 49.778410242000056 ], [ -123.15980714, 49.778410817000022 ], [ -123.159805365999958, 49.777871155000049 ], [ -123.159388682, 49.777871730000086 ], [ -123.159381601999968, 49.775713082000031 ], [ -123.158964935999961, 49.775713654000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14537917", "BldgCostT": "9816667", "sL_LossRatio": "0.766403824883148", "sL_AssetLoss": "84081", "sL_BldgLoss": "64440", "sL_StrLoss": "35390", "sL_NStrLoss": "29050", "sL_ContLoss": "19641", "geom_point": "0101000020E6100000BBE8F19CA9C95EC00B4898F524E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146285679999963, 49.758802490000043 ], [ -123.14607538599995, 49.758789806000088 ], [ -123.145923217999936, 49.758826303000056 ], [ -123.145731019999957, 49.758947296000024 ], [ -123.145443905999983, 49.758783434000101 ], [ -123.145268312999974, 49.758683189000074 ], [ -123.144037211999901, 49.758339571000128 ], [ -123.143431687999907, 49.758084717000095 ], [ -123.143195634999969, 49.757985373000032 ], [ -123.14292792, 49.757914460000052 ], [ -123.14261345099996, 49.757902672000093 ], [ -123.142196344999931, 49.758022264000068 ], [ -123.141267208, 49.756889023000056 ], [ -123.141201773999953, 49.756688135000019 ], [ -123.141187965999961, 49.756645728000088 ], [ -123.141173409999936, 49.756388846000021 ], [ -123.141195360999944, 49.756135692000065 ], [ -123.141222951999936, 49.755816784000039 ], [ -123.141223639999964, 49.75579611800007 ], [ -123.14245729, 49.755817004000093 ], [ -123.14247060000001, 49.756224387000067 ], [ -123.142611081999988, 49.756566194000072 ], [ -123.142945505999961, 49.75687238600009 ], [ -123.143612702999988, 49.757329489000043 ], [ -123.145001383999968, 49.757805196000092 ], [ -123.146411876999977, 49.758106443000045 ], [ -123.146412129999973, 49.758191073000084 ], [ -123.146805817999976, 49.75819057500005 ], [ -123.14814239899998, 49.758476010000059 ], [ -123.149113207999932, 49.758474604000085 ], [ -123.150376820999924, 49.758283799000019 ], [ -123.151410786999961, 49.758335737000067 ], [ -123.151411155999952, 49.758454481000093 ], [ -123.154326778999987, 49.758450634000077 ], [ -123.154326591999933, 49.758391562000035 ], [ -123.154375885999968, 49.758394797000079 ], [ -123.1550843, 49.758322203000048 ], [ -123.156924169000021, 49.757795905000151 ], [ -123.157291236999924, 49.758556328000104 ], [ -123.158272312999927, 49.760588600000105 ], [ -123.157786709999954, 49.760580496000024 ], [ -123.156664574999951, 49.760560291000054 ], [ -123.155771204999951, 49.760557321000071 ], [ -123.154684811999957, 49.760553681000047 ], [ -123.152503299999964, 49.760531886000138 ], [ -123.151952586, 49.760529635000047 ], [ -123.150605617999972, 49.76052412100006 ], [ -123.149844670999983, 49.760520995000064 ], [ -123.14985138699997, 49.759631002000084 ], [ -123.147756013, 49.759162292000028 ], [ -123.146285679999963, 49.758802490000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.830563701531443", "sL_AssetLoss": "3069", "sL_BldgLoss": "2549", "sL_StrLoss": "1640", "sL_NStrLoss": "909", "sL_ContLoss": "520", "geom_point": "0101000020E61000005AC9B70CB2CA5EC0EF7A400B4FE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.166490797999984, 49.783258384000113 ], [ -123.167740986999931, 49.783256580000064 ], [ -123.16774378299999, 49.784066073000076 ], [ -123.166493571999965, 49.784067876000073 ], [ -123.166490797999984, 49.783258384000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20580333", "BldgCostT": "14193333", "sL_LossRatio": "0.839093176907742", "sL_AssetLoss": "95807", "sL_BldgLoss": "80391", "sL_StrLoss": "49981", "sL_NStrLoss": "30410", "sL_ContLoss": "15416", "geom_point": "0101000020E610000003155D305BCA5EC0ACBC0DFFA3E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.157912482999933, 49.767141466000076 ], [ -123.158657843999961, 49.76716086700003 ], [ -123.15915560900001, 49.768138537000091 ], [ -123.159391277999973, 49.768592919000085 ], [ -123.16018790899993, 49.768843489000091 ], [ -123.161664936999941, 49.769397335000122 ], [ -123.16319033399999, 49.770235605000032 ], [ -123.164203815999954, 49.770917688000026 ], [ -123.164995096999945, 49.77191403900008 ], [ -123.165608752999944, 49.772247069000045 ], [ -123.165525684999963, 49.773590704000043 ], [ -123.163732163999981, 49.773544132000076 ], [ -123.163630943999948, 49.772663641000108 ], [ -123.16355315, 49.771986736000024 ], [ -123.16260121, 49.771939211000081 ], [ -123.16075377, 49.771846933000063 ], [ -123.160659597999981, 49.770836253000077 ], [ -123.160550254, 49.769662653000118 ], [ -123.158627838999934, 49.769582953000068 ], [ -123.158508618999988, 49.769578005000071 ], [ -123.15785477299994, 49.769550013000085 ], [ -123.15787244799999, 49.768660514000018 ], [ -123.157876783999882, 49.768442567000079 ], [ -123.157881461999963, 49.76820763500011 ], [ -123.157900237999982, 49.767929201000086 ], [ -123.157912482999933, 49.767141466000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82608917", "BldgCostT": "56971667", "sL_LossRatio": "0.846707399864223", "sL_AssetLoss": "427170", "sL_BldgLoss": "361688", "sL_StrLoss": "216497", "sL_NStrLoss": "145191", "sL_ContLoss": "65482", "geom_point": "0101000020E6100000626ACF5508CA5EC057E938C8B5E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156569339, 49.767868212000018 ], [ -123.156509107999966, 49.767860210000023 ], [ -123.156094089999982, 49.767857497000094 ], [ -123.156202715999925, 49.766038606000095 ], [ -123.155288070999973, 49.766031224000052 ], [ -123.154800683999966, 49.766027296000054 ], [ -123.154460708999963, 49.766023792000098 ], [ -123.153401598999906, 49.766014184 ], [ -123.151969313999984, 49.76600029800003 ], [ -123.150555799999935, 49.765994902000052 ], [ -123.150572700999945, 49.765455291000102 ], [ -123.14984721399999, 49.764212301000072 ], [ -123.149847105999953, 49.764166834000079 ], [ -123.149844510999969, 49.762758599000094 ], [ -123.149844670999983, 49.760520995000064 ], [ -123.150605617999972, 49.76052412100006 ], [ -123.151952586, 49.760529635000047 ], [ -123.152503299999964, 49.760531886000138 ], [ -123.154684811999957, 49.760553681000047 ], [ -123.155771204999951, 49.760557321000071 ], [ -123.156664574999951, 49.760560291000054 ], [ -123.157786709999954, 49.760580496000024 ], [ -123.158272312999927, 49.760588600000105 ], [ -123.157291236999924, 49.758556328000104 ], [ -123.156924169000021, 49.757795905000151 ], [ -123.157011213999965, 49.75777100500008 ], [ -123.157239983999929, 49.757698467000068 ], [ -123.15724065699996, 49.757907050000064 ], [ -123.158073684, 49.757905916000055 ], [ -123.158078069999988, 49.759255076 ], [ -123.158494592999915, 49.759254507000016 ], [ -123.158495473999949, 49.759524339000123 ], [ -123.159328526999957, 49.759523196000018 ], [ -123.159330295999922, 49.760062860000076 ], [ -123.159746825999932, 49.760062287000039 ], [ -123.159749486999914, 49.760871781000091 ], [ -123.159332947999971, 49.760872356000057 ], [ -123.15933383299992, 49.761142187000125 ], [ -123.159750372999937, 49.761141613000092 ], [ -123.159753918999968, 49.76222094000007 ], [ -123.15948681799992, 49.762221308000015 ], [ -123.159519935, 49.762250163000019 ], [ -123.159519668999906, 49.762256386000075 ], [ -123.165039639999961, 49.762399879000064 ], [ -123.164817413999913, 49.765994341000038 ], [ -123.159271212999926, 49.765850167000075 ], [ -123.15945741299997, 49.762844314000105 ], [ -123.159171335999986, 49.76282616400006 ], [ -123.158922738999976, 49.762809272000027 ], [ -123.158926110999985, 49.763841075000087 ], [ -123.158509548999973, 49.763841647000078 ], [ -123.158510428999946, 49.764111477000021 ], [ -123.157677295999918, 49.764112614000062 ], [ -123.15768079599999, 49.765191940000086 ], [ -123.157264220999977, 49.765192507000052 ], [ -123.157265965999954, 49.765732170000049 ], [ -123.156849386999951, 49.76573273500005 ], [ -123.156851127999943, 49.766272398000133 ], [ -123.157267712999939, 49.766271833000154 ], [ -123.157270472000036, 49.767124751000019 ], [ -123.157912482999933, 49.767141466000076 ], [ -123.157900237999982, 49.767929201000086 ], [ -123.157881461999963, 49.76820763500011 ], [ -123.157312033, 49.767902075000102 ], [ -123.156569339, 49.767868212000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12163083", "BldgCostT": "8388333", "sL_LossRatio": "0.838079122418018", "sL_AssetLoss": "68552", "sL_BldgLoss": "57452", "sL_StrLoss": "33519", "sL_NStrLoss": "23933", "sL_ContLoss": "11100", "geom_point": "0101000020E610000090D2538166CA5EC0A6BBA95076E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16319033399999, 49.770235605000032 ], [ -123.161664936999941, 49.769397335000122 ], [ -123.16018790899993, 49.768843489000091 ], [ -123.159391277999973, 49.768592919000085 ], [ -123.15915560900001, 49.768138537000091 ], [ -123.158657843999961, 49.76716086700003 ], [ -123.161303484999948, 49.767229689000089 ], [ -123.161279063999928, 49.767624157000022 ], [ -123.161645396999958, 49.767633682000103 ], [ -123.161626251999962, 49.767942980000065 ], [ -123.162033701999917, 49.767953572000124 ], [ -123.162021169999989, 49.768156064000067 ], [ -123.162263607999932, 49.76816236600007 ], [ -123.16224943099995, 49.768391439000091 ], [ -123.162623308999954, 49.768401157000028 ], [ -123.162599004999947, 49.768793917000089 ], [ -123.163419504999979, 49.768815238000066 ], [ -123.163408270999938, 49.768996831000074 ], [ -123.163712306999955, 49.76900473000007 ], [ -123.163706264999945, 49.769102385000082 ], [ -123.163958002999976, 49.769108924000079 ], [ -123.163952198999979, 49.769202766000099 ], [ -123.164185200999938, 49.769208817000113 ], [ -123.164177943999903, 49.76932614600004 ], [ -123.164461497999952, 49.76933351100007 ], [ -123.16445416699996, 49.769452069000117 ], [ -123.164644298999946, 49.76945700600001 ], [ -123.164635349999969, 49.769601738000055 ], [ -123.164988095999959, 49.769610899000078 ], [ -123.164986056999936, 49.769643880000082 ], [ -123.165248389999959, 49.769650692000056 ], [ -123.165241454999901, 49.769762849000145 ], [ -123.16530079399999, 49.769764390000049 ], [ -123.165287195999937, 49.769984319000102 ], [ -123.165747892, 49.769996279000097 ], [ -123.165608752999944, 49.772247069000045 ], [ -123.164995096999945, 49.77191403900008 ], [ -123.164203815999954, 49.770917688000026 ], [ -123.16319033399999, 49.770235605000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120834917", "BldgCostT": "77026667", "sL_LossRatio": "0.772657411093681", "sL_AssetLoss": "630467", "sL_BldgLoss": "487135", "sL_StrLoss": "270513", "sL_NStrLoss": "216622", "sL_ContLoss": "143332", "geom_point": "0101000020E61000007597612F96C95EC02CC5D0E273E24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.148849088999938, 49.773185009000045 ], [ -123.148075271000025, 49.772606766000081 ], [ -123.147925196999935, 49.77252801100007 ], [ -123.14659725099996, 49.771831215000098 ], [ -123.146075164999928, 49.771557252000051 ], [ -123.145946958999929, 49.771474535000095 ], [ -123.145520988999962, 49.771199844000101 ], [ -123.145218413999928, 49.770908093000045 ], [ -123.144979885999959, 49.770678063000091 ], [ -123.144660845999937, 49.770291693000047 ], [ -123.144381677999903, 49.769885325000132 ], [ -123.144323379999946, 49.769800424 ], [ -123.144046105, 49.769190136000105 ], [ -123.143900497999979, 49.768606684000098 ], [ -123.143864773999923, 49.768177330000071 ], [ -123.14393377399989, 49.766846131000058 ], [ -123.14399751799999, 49.765934187000099 ], [ -123.145234423000019, 49.765949164000084 ], [ -123.145775481999962, 49.765955735000048 ], [ -123.146430271999975, 49.765963642000052 ], [ -123.148214038999924, 49.765976937000033 ], [ -123.14918155799991, 49.765984215000117 ], [ -123.148366637999956, 49.76508088900006 ], [ -123.147521499999925, 49.764143983000054 ], [ -123.147037917999953, 49.763607843000067 ], [ -123.146719749999932, 49.763252998000077 ], [ -123.146346565, 49.762842746000068 ], [ -123.147192745999988, 49.762802808000046 ], [ -123.14782030399999, 49.762773199000058 ], [ -123.149844510999969, 49.762758599000094 ], [ -123.149847105999953, 49.764166834000079 ], [ -123.14984721399999, 49.764212301000072 ], [ -123.150572700999945, 49.765455291000102 ], [ -123.150555799999935, 49.765994902000052 ], [ -123.151969313999984, 49.76600029800003 ], [ -123.153401598999906, 49.766014184 ], [ -123.154460708999963, 49.766023792000098 ], [ -123.154800683999966, 49.766027296000054 ], [ -123.155288070999973, 49.766031224000052 ], [ -123.156202715999925, 49.766038606000095 ], [ -123.156094089999982, 49.767857497000094 ], [ -123.154712900999982, 49.767844894000071 ], [ -123.154058368999955, 49.767838373000103 ], [ -123.153309695999951, 49.76783090900004 ], [ -123.152952792999955, 49.767829703000103 ], [ -123.151920606999965, 49.767834189000034 ], [ -123.15088337399996, 49.767830597000092 ], [ -123.151563587999931, 49.768595479000034 ], [ -123.151827507999968, 49.768892271000048 ], [ -123.152878903999977, 49.770074538000159 ], [ -123.153822056999971, 49.771135 ], [ -123.155942842999977, 49.773519430000086 ], [ -123.153610060999952, 49.774371714000054 ], [ -123.152926302999958, 49.774372620000094 ], [ -123.152910486999971, 49.774627288000097 ], [ -123.152433759999951, 49.774801446000019 ], [ -123.151286704999933, 49.775131546000118 ], [ -123.149853160999967, 49.775422657 ], [ -123.149831220999914, 49.775367605000078 ], [ -123.14911675599997, 49.773571825000097 ], [ -123.148849088999938, 49.773185009000045 ] ], [ [ -123.151873365999961, 49.773081220000087 ], [ -123.151872890999968, 49.772929371000053 ], [ -123.151519276999949, 49.772920146000082 ], [ -123.151546274999973, 49.772485607000057 ], [ -123.15103822599994, 49.77248626900009 ], [ -123.151036007999963, 49.771771885000078 ], [ -123.150405008999954, 49.771755418000069 ], [ -123.150416389999961, 49.771572304000081 ], [ -123.150236714999949, 49.771567615000052 ], [ -123.150431127, 49.768439571000037 ], [ -123.150192443000023, 49.768439881000077 ], [ -123.150191608999961, 49.768170050000052 ], [ -123.149775008999953, 49.768170589000071 ], [ -123.149774176999955, 49.767900758000053 ], [ -123.148940979999949, 49.767901832000085 ], [ -123.148940152999927, 49.767632000000106 ], [ -123.14810696, 49.76763306800008 ], [ -123.148106138999978, 49.76736323700009 ], [ -123.147689545, 49.767363768000138 ], [ -123.147688724999981, 49.767093936000045 ], [ -123.147272132999959, 49.767094466000032 ], [ -123.14727131399998, 49.766824636000045 ], [ -123.147111301999971, 49.766824839000016 ], [ -123.147104943999949, 49.766927039000144 ], [ -123.147140296999979, 49.766927962000146 ], [ -123.147129776, 49.76709707300008 ], [ -123.147140908999916, 49.767097363000097 ], [ -123.147127715999915, 49.767309407000056 ], [ -123.147252218999967, 49.767312661000098 ], [ -123.14724451, 49.767436548000013 ], [ -123.147329123999953, 49.767438759000044 ], [ -123.147319166999949, 49.767598795000048 ], [ -123.147417230999935, 49.767601358000071 ], [ -123.147396524, 49.767934210000078 ], [ -123.147524547999978, 49.767937555000046 ], [ -123.14751083799996, 49.768157946000052 ], [ -123.147610657999962, 49.768160554000033 ], [ -123.147603259, 49.768279493000101 ], [ -123.147762359999945, 49.768283650000036 ], [ -123.147752903999944, 49.768435655000062 ], [ -123.147844466999956, 49.768438047000096 ], [ -123.147834748999969, 49.768594274000108 ], [ -123.147914073999956, 49.768596346000017 ], [ -123.147904645000011, 49.768747937000086 ], [ -123.148027379999959, 49.768751144000092 ], [ -123.148020269999961, 49.76886545200005 ], [ -123.148222679999961, 49.76887073900005 ], [ -123.148213008, 49.769026240000073 ], [ -123.148354485999903, 49.769029935000013 ], [ -123.148346594999921, 49.769156807000087 ], [ -123.148512185999948, 49.769161132000136 ], [ -123.148504533999954, 49.769284196000065 ], [ -123.148651289999933, 49.769288028000055 ], [ -123.148640678999968, 49.769458667000031 ], [ -123.148857294999971, 49.769464323000101 ], [ -123.148849115999923, 49.769595832000043 ], [ -123.148971196999923, 49.76959902100004 ], [ -123.14875971, 49.772999959000046 ], [ -123.151873365999961, 49.773081220000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96074116", "BldgCostT": "60608879", "sL_LossRatio": "0.720334324696516", "sL_AssetLoss": "691304", "sL_BldgLoss": "497970", "sL_StrLoss": "239800", "sL_NStrLoss": "258170", "sL_ContLoss": "193334", "geom_point": "0101000020E6100000218570D463C95EC001D7F42459E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.1433501399999, 49.759437091000045 ], [ -123.142575612999934, 49.758487401000124 ], [ -123.142196344999931, 49.758022264000068 ], [ -123.14261345099996, 49.757902672000093 ], [ -123.14292792, 49.757914460000052 ], [ -123.143195634999969, 49.757985373000032 ], [ -123.143431687999907, 49.758084717000095 ], [ -123.144037211999901, 49.758339571000128 ], [ -123.145268312999974, 49.758683189000074 ], [ -123.145443905999983, 49.758783434000101 ], [ -123.145731019999957, 49.758947296000024 ], [ -123.145923217999936, 49.758826303000056 ], [ -123.14607538599995, 49.758789806000088 ], [ -123.146285679999963, 49.758802490000043 ], [ -123.147756013, 49.759162292000028 ], [ -123.14985138699997, 49.759631002000084 ], [ -123.149844670999983, 49.760520995000064 ], [ -123.149844510999969, 49.762758599000094 ], [ -123.14782030399999, 49.762773199000058 ], [ -123.147192745999988, 49.762802808000046 ], [ -123.146346565, 49.762842746000068 ], [ -123.144228186999968, 49.760513740000157 ], [ -123.143735574999965, 49.759909708000073 ], [ -123.1433501399999, 49.759437091000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247250165", "BldgCostT": "161706665", "sL_LossRatio": "0.812046152667988", "sL_AssetLoss": "1175230", "sL_BldgLoss": "954341", "sL_StrLoss": "564173", "sL_NStrLoss": "390168", "sL_ContLoss": "220889", "geom_point": "0101000020E6100000F993EF21FAC85EC0B4D61E30EEE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13638278599997, 49.757437906000099 ], [ -123.136247140999942, 49.755390716000093 ], [ -123.136677667999933, 49.755402011000037 ], [ -123.13658702499994, 49.756853907000107 ], [ -123.136828473999969, 49.756853622000058 ], [ -123.136826195999944, 49.75604412600007 ], [ -123.138255994999966, 49.75604242800005 ], [ -123.138304140999978, 49.755270781000057 ], [ -123.139739573999975, 49.755308407 ], [ -123.139738575999928, 49.754961317000067 ], [ -123.140571551999983, 49.754960309000083 ], [ -123.14057077199999, 49.754690477000054 ], [ -123.140987256999949, 49.754689971000097 ], [ -123.140986227999974, 49.754335246000032 ], [ -123.137440923000028, 49.754242319000113 ], [ -123.137550851999919, 49.752480847000136 ], [ -123.136298492999941, 49.752447993000025 ], [ -123.136324043999963, 49.752038736000053 ], [ -123.136181313999941, 49.752034991000102 ], [ -123.136405713999977, 49.748440517000134 ], [ -123.137514422999942, 49.748469604000078 ], [ -123.137528313999923, 49.748247020000086 ], [ -123.135770804999979, 49.748200905 ], [ -123.135754185999986, 49.747950016000082 ], [ -123.135570699999946, 49.745179814000053 ], [ -123.135503714999942, 49.744168158000015 ], [ -123.136215917999934, 49.744166143000044 ], [ -123.138182883999917, 49.744166450000066 ], [ -123.138173356000024, 49.744386729000027 ], [ -123.138060012999958, 49.744645691000073 ], [ -123.138020452999953, 49.744901172000084 ], [ -123.137973668999962, 49.745205972000058 ], [ -123.138022265999908, 49.745406168000081 ], [ -123.13813305399999, 49.745544107000121 ], [ -123.138308707999926, 49.74566187600005 ], [ -123.13833558, 49.745679932000073 ], [ -123.139683554, 49.746258030000092 ], [ -123.140092140999968, 49.74651805000012 ], [ -123.14012854299996, 49.746553693000124 ], [ -123.140506889999969, 49.746924062000083 ], [ -123.140995198999974, 49.747509313000045 ], [ -123.141031574999914, 49.747568167000082 ], [ -123.141215883999948, 49.747866134000034 ], [ -123.141261924999981, 49.748047937000059 ], [ -123.141299624999988, 49.74819689600006 ], [ -123.141331741999963, 49.748323712000058 ], [ -123.141289837999963, 49.749003748000028 ], [ -123.141207698999935, 49.750336658000023 ], [ -123.141178087999918, 49.75052171500014 ], [ -123.14115537, 49.750663822000014 ], [ -123.140698397999969, 49.751803063000111 ], [ -123.140768625999939, 49.752191035000081 ], [ -123.140788554999986, 49.752220765000075 ], [ -123.140831174999917, 49.752284384000056 ], [ -123.140953982999946, 49.752467607000078 ], [ -123.141248803999972, 49.75290748700008 ], [ -123.141312659999983, 49.753152199000155 ], [ -123.141279116999954, 49.75414870100014 ], [ -123.141265195999935, 49.754562224000097 ], [ -123.141256103999964, 49.754832133000093 ], [ -123.141230975999946, 49.755578925000108 ], [ -123.141223639999964, 49.75579611800007 ], [ -123.141222951999936, 49.755816784000039 ], [ -123.141195360999944, 49.756135692000065 ], [ -123.141173409999936, 49.756388846000021 ], [ -123.141187965999961, 49.756645728000088 ], [ -123.141201773999953, 49.756688135000019 ], [ -123.141267208, 49.756889023000056 ], [ -123.142196344999931, 49.758022264000068 ], [ -123.142575612999934, 49.758487401000124 ], [ -123.1433501399999, 49.759437091000045 ], [ -123.143735574999965, 49.759909708000073 ], [ -123.144228186999968, 49.760513740000157 ], [ -123.146346565, 49.762842746000068 ], [ -123.146719749999932, 49.763252998000077 ], [ -123.147037917999953, 49.763607843000067 ], [ -123.147521499999925, 49.764143983000054 ], [ -123.148366637999956, 49.76508088900006 ], [ -123.14918155799991, 49.765984215000117 ], [ -123.148214038999924, 49.765976937000033 ], [ -123.146430271999975, 49.765963642000052 ], [ -123.145775481999962, 49.765955735000048 ], [ -123.145234423000019, 49.765949164000084 ], [ -123.14399751799999, 49.765934187000099 ], [ -123.14206428599999, 49.765934908000105 ], [ -123.140669128999889, 49.765925426000152 ], [ -123.140054815999989, 49.765921415000065 ], [ -123.138973160999939, 49.765914389000066 ], [ -123.138640240999933, 49.765912212000096 ], [ -123.138321399999967, 49.765910147000056 ], [ -123.137927372999982, 49.765907566000045 ], [ -123.137909566999951, 49.765224759000134 ], [ -123.137893869999957, 49.764622434000024 ], [ -123.137888491999917, 49.764416898000064 ], [ -123.137797658999958, 49.763971998000059 ], [ -123.137761152999971, 49.763793041000064 ], [ -123.137755493, 49.763765402000068 ], [ -123.136830099999884, 49.761016586000089 ], [ -123.136522190999955, 49.759541401000064 ], [ -123.13638278599997, 49.757437906000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10295667", "BldgCostT": "6836667", "sL_LossRatio": "0.758761337412118", "sL_AssetLoss": "55899", "sL_BldgLoss": "42414", "sL_StrLoss": "21064", "sL_NStrLoss": "21350", "sL_ContLoss": "13485", "geom_point": "0101000020E6100000F373BF1A12C95EC001857AFA88E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140831174999917, 49.752284384000056 ], [ -123.141757704999947, 49.752226705000076 ], [ -123.141986569999972, 49.752971101000085 ], [ -123.142409221999955, 49.754345804000096 ], [ -123.14241009599999, 49.754372536000055 ], [ -123.142235776999968, 49.754367971000136 ], [ -123.142237503999965, 49.754958276000146 ], [ -123.142429224999901, 49.754958040000076 ], [ -123.14245729, 49.755817004000093 ], [ -123.141223639999964, 49.75579611800007 ], [ -123.141230975999946, 49.755578925000108 ], [ -123.141256103999964, 49.754832133000093 ], [ -123.141265195999935, 49.754562224000097 ], [ -123.141279116999954, 49.75414870100014 ], [ -123.141312659999983, 49.753152199000155 ], [ -123.141248803999972, 49.75290748700008 ], [ -123.140953982999946, 49.752467607000078 ], [ -123.140831174999917, 49.752284384000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1615000", "BldgCostT": "850000", "sL_LossRatio": "0.671014492753623", "sL_AssetLoss": "20700", "sL_BldgLoss": "13890", "sL_StrLoss": "8750", "sL_NStrLoss": "5140", "sL_ContLoss": "6810", "geom_point": "0101000020E6100000CF1CCC05F2C85EC0133E004E14DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.138308707999926, 49.74566187600005 ], [ -123.13813305399999, 49.745544107000121 ], [ -123.138022265999908, 49.745406168000081 ], [ -123.137973668999962, 49.745205972000058 ], [ -123.138020452999953, 49.744901172000084 ], [ -123.138060012999958, 49.744645691000073 ], [ -123.138173356000024, 49.744386729000027 ], [ -123.138182883999917, 49.744166450000066 ], [ -123.138181713999955, 49.743406741000101 ], [ -123.138159303999927, 49.743009212000068 ], [ -123.138061564999987, 49.742653225000048 ], [ -123.138042801000012, 49.742584900000054 ], [ -123.137812890999925, 49.742308795000106 ], [ -123.137299707999929, 49.74185789000007 ], [ -123.137062699999916, 49.741497111000101 ], [ -123.13706061799995, 49.741488045000018 ], [ -123.13698279899991, 49.741152881000076 ], [ -123.13698892299999, 49.740788561000024 ], [ -123.137007685999947, 49.739406085000027 ], [ -123.138871591999958, 49.739338185000165 ], [ -123.141529915999968, 49.739241275000111 ], [ -123.141497644999916, 49.739759278000051 ], [ -123.141244517999922, 49.739752647000053 ], [ -123.141227748999981, 49.740021783000024 ], [ -123.141085934999964, 49.740018068000111 ], [ -123.141070256999939, 49.740269687000065 ], [ -123.140734890999951, 49.740260899000084 ], [ -123.14064764799997, 49.74166083500004 ], [ -123.140832046999947, 49.741665668000046 ], [ -123.140719125000018, 49.74347764200008 ], [ -123.140834760999908, 49.743480672000032 ], [ -123.140831324999951, 49.74353580200011 ], [ -123.142225914999983, 49.743572336000021 ], [ -123.142182018999947, 49.744277040000078 ], [ -123.142905882999955, 49.744295996000034 ], [ -123.142668137999976, 49.746796237000098 ], [ -123.142470139999944, 49.746789059000029 ], [ -123.142005340999958, 49.74677731000007 ], [ -123.141489641999954, 49.746480969000068 ], [ -123.141049696999985, 49.746229350000092 ], [ -123.140350598999973, 49.745598673000096 ], [ -123.140076914999923, 49.745610248000034 ], [ -123.138308707999926, 49.74566187600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87209605", "BldgCostT": "51157491", "sL_LossRatio": "0.681006398644305", "sL_AssetLoss": "547616", "sL_BldgLoss": "372930", "sL_StrLoss": "181040", "sL_NStrLoss": "191890", "sL_ContLoss": "174686", "geom_point": "0101000020E6100000CC034802C7C85EC0828DA1525BDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141033517999986, 49.734976434000089 ], [ -123.141386056999977, 49.734976674000059 ], [ -123.139476688999935, 49.73682324599999 ], [ -123.139315666999906, 49.736978954000072 ], [ -123.139111597999928, 49.737176310000052 ], [ -123.137227569999979, 49.738965800000159 ], [ -123.13707334499999, 49.739146289000104 ], [ -123.137009381999945, 49.739281425000094 ], [ -123.137007685999947, 49.739406085000027 ], [ -123.13698892299999, 49.740788561000024 ], [ -123.13528079699995, 49.740802201000051 ], [ -123.135170717999927, 49.739086839000031 ], [ -123.135166405999968, 49.739019025000061 ], [ -123.135119075999981, 49.738281267000069 ], [ -123.13503369099999, 49.736950516000022 ], [ -123.134909388999944, 49.735012903000012 ], [ -123.135900354999976, 49.735006954000063 ], [ -123.136555985999962, 49.735003009000131 ], [ -123.136871207999917, 49.735000496000055 ], [ -123.137246248999958, 49.734998523000058 ], [ -123.138619932999973, 49.734991238000063 ], [ -123.139298, 49.734987638000085 ], [ -123.139456405999951, 49.734984611000051 ], [ -123.14024208699999, 49.734982694000102 ], [ -123.140637775999977, 49.734979559000095 ], [ -123.141033517999986, 49.734976434000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6643417", "BldgCostT": "4581667", "sL_LossRatio": "0.778800051833614", "sL_AssetLoss": "30868", "sL_BldgLoss": "24040", "sL_StrLoss": "6250", "sL_NStrLoss": "17790", "sL_ContLoss": "6828", "geom_point": "0101000020E6100000251E925237C95EC00C29F51B5CDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.145426990999951, 49.73062180400013 ], [ -123.144865013, 49.730542997000043 ], [ -123.144393797999939, 49.730534514000119 ], [ -123.144247330999974, 49.73047042100012 ], [ -123.144247123999932, 49.730400917000146 ], [ -123.144088945999968, 49.730401114000095 ], [ -123.14383051199999, 49.73028802500005 ], [ -123.14382925299999, 49.729861769000053 ], [ -123.143127059999969, 49.729862638000057 ], [ -123.14257930499997, 49.72947873400004 ], [ -123.142578851999957, 49.729323646000083 ], [ -123.142407470999927, 49.729323856000043 ], [ -123.142161930999919, 49.72910087900005 ], [ -123.142161006999956, 49.728784491000084 ], [ -123.142154020999953, 49.728784499000085 ], [ -123.142208301999929, 49.728763373000049 ], [ -123.142626461999896, 49.728600635000092 ], [ -123.142696395999948, 49.728573431000051 ], [ -123.142830091999926, 49.728521374000103 ], [ -123.143215723999901, 49.72837121 ], [ -123.143398023999978, 49.728250642000056 ], [ -123.143800698999925, 49.728090173000041 ], [ -123.143934254000015, 49.727995557000114 ], [ -123.14395092299999, 49.727905963000048 ], [ -123.14388761399999, 49.727853019000101 ], [ -123.14370355699999, 49.727800477000052 ], [ -123.14450156, 49.727798874000086 ], [ -123.145624746999957, 49.72743222400004 ], [ -123.143915346000014, 49.728299306000061 ], [ -123.143786888999927, 49.728401240000046 ], [ -123.143757206999965, 49.728499472000067 ], [ -123.143841057000017, 49.728645688000057 ], [ -123.144137679999943, 49.728896487000092 ], [ -123.144230723999925, 49.729096057000021 ], [ -123.144312651999897, 49.729273712000037 ], [ -123.14444551, 49.729413113000099 ], [ -123.144698706999975, 49.729536768000052 ], [ -123.144712361999922, 49.729538455000082 ], [ -123.14543127099995, 49.729627934000078 ], [ -123.146073927999979, 49.729737457000091 ], [ -123.145622645999978, 49.730344026000111 ], [ -123.145426990999951, 49.73062180400013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72505083", "BldgCostT": "46383333", "sL_LossRatio": "0.721015495876436", "sL_AssetLoss": "357579", "sL_BldgLoss": "257820", "sL_StrLoss": "89500", "sL_NStrLoss": "168320", "sL_ContLoss": "99759", "geom_point": "0101000020E6100000FE93117AEAC85EC02CCE8BF2D0DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.136353007999972, 49.731451198000109 ], [ -123.13682599699996, 49.731098210000098 ], [ -123.136971039999935, 49.731001816000052 ], [ -123.137412390999955, 49.730708600000078 ], [ -123.13758727799997, 49.730620660000049 ], [ -123.137587442999944, 49.730678853000065 ], [ -123.138003722999912, 49.730678357000095 ], [ -123.138004486999989, 49.730948191 ], [ -123.138420769999954, 49.730947695000069 ], [ -123.138421536999957, 49.73121752900002 ], [ -123.139254105999925, 49.731216530000069 ], [ -123.139253333999946, 49.730946697000043 ], [ -123.141334746999959, 49.730944176000058 ], [ -123.141335529999964, 49.731214009000027 ], [ -123.14274780199996, 49.731212278000079 ], [ -123.142854996999944, 49.731354809000074 ], [ -123.144464486999979, 49.73102869000008 ], [ -123.145101399999987, 49.731084030000041 ], [ -123.145000087999918, 49.731227849000064 ], [ -123.144625501999883, 49.731672597000077 ], [ -123.14391468399999, 49.732257070000067 ], [ -123.143761110999918, 49.732422248000056 ], [ -123.141386056999977, 49.734976674000059 ], [ -123.141033517999986, 49.734976434000089 ], [ -123.140637775999977, 49.734979559000095 ], [ -123.14024208699999, 49.734982694000102 ], [ -123.139456405999951, 49.734984611000051 ], [ -123.139298, 49.734987638000085 ], [ -123.138619932999973, 49.734991238000063 ], [ -123.137246248999958, 49.734998523000058 ], [ -123.136871207999917, 49.735000496000055 ], [ -123.136555985999962, 49.735003009000131 ], [ -123.135900354999976, 49.735006954000063 ], [ -123.134909388999944, 49.735012903000012 ], [ -123.134872806999951, 49.734220705000084 ], [ -123.134971282999942, 49.733642804000063 ], [ -123.135103618999906, 49.733191684000069 ], [ -123.135297508999926, 49.732708887000072 ], [ -123.135596196999984, 49.732236994000083 ], [ -123.135641037999932, 49.732190428000102 ], [ -123.136353007999972, 49.731451198000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419084", "BldgCostT": "1668334", "sL_LossRatio": "0.834965542256075", "sL_AssetLoss": "11028", "sL_BldgLoss": "9208", "sL_StrLoss": "5202", "sL_NStrLoss": "4006", "sL_ContLoss": "1820", "geom_point": "0101000020E6100000F237A98109C95EC059A4475BAEDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140506889999969, 49.746924062000083 ], [ -123.14012854299996, 49.746553693000124 ], [ -123.140092140999968, 49.74651805000012 ], [ -123.139683554, 49.746258030000092 ], [ -123.13833558, 49.745679932000073 ], [ -123.138308707999926, 49.74566187600005 ], [ -123.140076914999923, 49.745610248000034 ], [ -123.140350598999973, 49.745598673000096 ], [ -123.141049696999985, 49.746229350000092 ], [ -123.141489641999954, 49.746480969000068 ], [ -123.142005340999958, 49.74677731000007 ], [ -123.142470139999944, 49.746789059000029 ], [ -123.142668137999976, 49.746796237000098 ], [ -123.142625081999967, 49.747249001000121 ], [ -123.142364381000021, 49.748093494000095 ], [ -123.142004797, 49.749020694000087 ], [ -123.141870089999941, 49.749821108000027 ], [ -123.14164817599999, 49.750397895000027 ], [ -123.14164031899999, 49.750591099000047 ], [ -123.141178087999918, 49.75052171500014 ], [ -123.141207698999935, 49.750336658000023 ], [ -123.141289837999963, 49.749003748000028 ], [ -123.141331741999963, 49.748323712000058 ], [ -123.141299624999988, 49.74819689600006 ], [ -123.141261924999981, 49.748047937000059 ], [ -123.141215883999948, 49.747866134000034 ], [ -123.141031574999914, 49.747568167000082 ], [ -123.140995198999974, 49.747509313000045 ], [ -123.140506889999969, 49.746924062000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.830027464144034", "sL_AssetLoss": "3277", "sL_BldgLoss": "2720", "sL_StrLoss": "1700", "sL_NStrLoss": "1020", "sL_ContLoss": "557", "geom_point": "0101000020E6100000F177F719BAC95EC06A2E9A42A5DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152925001999947, 49.738628207000041 ], [ -123.153014722999956, 49.738586617000117 ], [ -123.153016948999905, 49.73929419200006 ], [ -123.152184241, 49.739295289000104 ], [ -123.152185929999945, 49.739834956000038 ], [ -123.151353211999933, 49.73983604700009 ], [ -123.151354051999988, 49.740105880000087 ], [ -123.150650135999953, 49.74010679600007 ], [ -123.150915779999977, 49.739798901000043 ], [ -123.152120611999976, 49.739024190000109 ], [ -123.152925001999947, 49.738628207000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.768606458297358", "sL_AssetLoss": "579.1", "sL_BldgLoss": "445.1", "sL_StrLoss": "88.1", "sL_NStrLoss": "357", "sL_ContLoss": "134", "geom_point": "0101000020E61000008754CD83E6C95EC078DA75CA7EDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154561783999924, 49.738067094000044 ], [ -123.1555106499999, 49.737908363000074 ], [ -123.155511621999949, 49.738211534000115 ], [ -123.155095274999937, 49.73821209400009 ], [ -123.155096137000029, 49.738481926000055 ], [ -123.153847097000011, 49.738483592000151 ], [ -123.153846386999959, 49.738259166000013 ], [ -123.154561783999924, 49.738067094000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123838666", "BldgCostT": "80986666", "sL_LossRatio": "0.784776183527286", "sL_AssetLoss": "674995", "sL_BldgLoss": "529720", "sL_StrLoss": "293570", "sL_NStrLoss": "236150", "sL_ContLoss": "145275", "geom_point": "0101000020E61000002C45EA2438CA5EC05F65B7E056DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150324381999923, 49.732676501000064 ], [ -123.149061216999911, 49.73228200500008 ], [ -123.148073193999977, 49.731428897000129 ], [ -123.147031619999893, 49.730882 ], [ -123.146448791999902, 49.730765203000061 ], [ -123.145975793, 49.730783703000021 ], [ -123.145504686999942, 49.730632699000111 ], [ -123.145426990999951, 49.73062180400013 ], [ -123.145622645999978, 49.730344026000111 ], [ -123.146073927999979, 49.729737457000091 ], [ -123.146839361999966, 49.729858289000042 ], [ -123.147042109999973, 49.729856999000113 ], [ -123.147666772999955, 49.729852920000042 ], [ -123.14817416399994, 49.729797216000108 ], [ -123.148706308, 49.729738788000127 ], [ -123.149199556999918, 49.729684188000093 ], [ -123.15121736, 49.729481269000132 ], [ -123.152393114999967, 49.729363442000079 ], [ -123.152414230999952, 49.72936128000002 ], [ -123.152497878999924, 49.729352684000105 ], [ -123.152812007999927, 49.72931994700005 ], [ -123.153154316000013, 49.729284317000101 ], [ -123.153608181999957, 49.729237643000076 ], [ -123.154035727999883, 49.729191195000048 ], [ -123.15438860099999, 49.729072575000032 ], [ -123.154637930999925, 49.728923375000036 ], [ -123.155840860999959, 49.727828698000017 ], [ -123.155858043999899, 49.727641041 ], [ -123.155279233999977, 49.727576418000055 ], [ -123.154864520999965, 49.727349586000102 ], [ -123.154724922999918, 49.727183922000016 ], [ -123.154623651999927, 49.726959853000082 ], [ -123.154632083999971, 49.725816925000082 ], [ -123.154635774999988, 49.722802551000029 ], [ -123.154637375999968, 49.7204938040001 ], [ -123.154706181000023, 49.71968355800005 ], [ -123.15476663699998, 49.718971744000058 ], [ -123.154827418999972, 49.718255641000091 ], [ -123.154839826999989, 49.718100334000049 ], [ -123.154935527999939, 49.717810213000121 ], [ -123.155006420999939, 49.717675938000113 ], [ -123.155069103999978, 49.71755719700009 ], [ -123.155321803999939, 49.717284712000051 ], [ -123.155593390999968, 49.717089297000051 ], [ -123.156017398999921, 49.716851008000141 ], [ -123.157071776999942, 49.716223196000072 ], [ -123.157387705999938, 49.715938899000058 ], [ -123.157580293999914, 49.715583893000037 ], [ -123.157627797999922, 49.715443800000038 ], [ -123.157634130999924, 49.715064556000122 ], [ -123.157648789999897, 49.714186 ], [ -123.157676597999966, 49.7136241010001 ], [ -123.157707204999923, 49.713677114000092 ], [ -123.157882713, 49.713981362 ], [ -123.158290068999975, 49.714773242000042 ], [ -123.158625774999933, 49.713113311000036 ], [ -123.158598767999933, 49.71307965000009 ], [ -123.158586258999932, 49.71272168300009 ], [ -123.15879516699998, 49.71203462900008 ], [ -123.158874730999912, 49.711567225000088 ], [ -123.158789612999954, 49.710741551000069 ], [ -123.158773273999927, 49.710602251000054 ], [ -123.158796443999933, 49.710144918000118 ], [ -123.15899579199997, 49.709577030000084 ], [ -123.159048183999971, 49.709447393000097 ], [ -123.159153671999917, 49.709178231000053 ], [ -123.159393648999938, 49.708629475000102 ], [ -123.159479811000026, 49.708524322000109 ], [ -123.15957774599994, 49.708524187000108 ], [ -123.159577355999943, 49.708405277000089 ], [ -123.159701163, 49.708254181000044 ], [ -123.159992949999946, 49.708253779000067 ], [ -123.159992064999969, 49.707983944000091 ], [ -123.160824234999964, 49.707982792000031 ], [ -123.160823344999955, 49.707712958000045 ], [ -123.161655511999967, 49.7077118 ], [ -123.161654615999907, 49.70744196600009 ], [ -123.161941875999958, 49.707441564000092 ], [ -123.161948789999954, 49.707329694000045 ], [ -123.162078502, 49.707322703000024 ], [ -123.162979691999951, 49.707258612000039 ], [ -123.165849280999936, 49.706733099000076 ], [ -123.167472362999916, 49.706181971000085 ], [ -123.167570033999965, 49.706142819000085 ], [ -123.167556992999906, 49.70635423500002 ], [ -123.168308182999951, 49.706353147000073 ], [ -123.168307250999959, 49.706083312000054 ], [ -123.169555459999955, 49.706081492000102 ], [ -123.1695564, 49.706351326000032 ], [ -123.171220684999938, 49.70634887799999 ], [ -123.171223503999954, 49.707150506000069 ], [ -123.17121543699993, 49.707158392000103 ], [ -123.169143136999963, 49.707161436000042 ], [ -123.16914501199993, 49.707701105000112 ], [ -123.168728927999936, 49.707701711 ], [ -123.1687298639999, 49.707971546000103 ], [ -123.167457112999912, 49.707973393000053 ], [ -123.167424890999911, 49.708495729000084 ], [ -123.166235020999977, 49.70846480800008 ], [ -123.166235190999885, 49.708514824000133 ], [ -123.165819101999915, 49.708515421000108 ], [ -123.165820018999952, 49.708785254000119 ], [ -123.16498783499992, 49.708786443000044 ], [ -123.164991489999963, 49.709865779000076 ], [ -123.16457538799996, 49.709866372000107 ], [ -123.164576300999954, 49.71013620600008 ], [ -123.161247467999942, 49.71014088700008 ], [ -123.161249253999983, 49.710680555000081 ], [ -123.159584817999971, 49.710682861000066 ], [ -123.159587469999948, 49.711492363000048 ], [ -123.160003585999931, 49.711491788000039 ], [ -123.160006244999948, 49.712301291000067 ], [ -123.16083849099999, 49.712300138000103 ], [ -123.16084294599996, 49.713649307 ], [ -123.161259080999983, 49.71364872900007 ], [ -123.161259973999904, 49.713918563000028 ], [ -123.161676110999949, 49.713917983000087 ], [ -123.16167700699998, 49.714187817 ], [ -123.162093144999943, 49.71418723500004 ], [ -123.16209853299992, 49.715806239000081 ], [ -123.160850075999988, 49.715807979000019 ], [ -123.160847401999916, 49.714998477000066 ], [ -123.160078496999958, 49.714999542000058 ], [ -123.160011721999979, 49.71607897500013 ], [ -123.160434811999949, 49.716078390000106 ], [ -123.160437229999957, 49.716812 ], [ -123.165655362999956, 49.716947753000092 ], [ -123.165559541000036, 49.718499693000133 ], [ -123.166269272999941, 49.718498676000152 ], [ -123.166270192999932, 49.718768510000075 ], [ -123.16668637099994, 49.7187679110001 ], [ -123.166685446999935, 49.718498079000028 ], [ -123.167933974999968, 49.718496276000131 ], [ -123.167934903999964, 49.718766109000036 ], [ -123.168351082999948, 49.718765505000164 ], [ -123.168353773999911, 49.719543683000083 ], [ -123.168345491999943, 49.719575017000103 ], [ -123.167937695999981, 49.719575610000021 ], [ -123.16793862599999, 49.719845443000111 ], [ -123.167522439999971, 49.719846045000068 ], [ -123.167524296999915, 49.720385713000098 ], [ -123.1679404879999, 49.720385110000024 ], [ -123.167942399999944, 49.720939236000071 ], [ -123.1669270899999, 49.722192897000056 ], [ -123.166884350999979, 49.722275480000135 ], [ -123.16669838, 49.722275748000087 ], [ -123.166699303999962, 49.722545582000116 ], [ -123.166744598999969, 49.722545517000057 ], [ -123.165561975999978, 49.724830494000109 ], [ -123.165276263999928, 49.725245969000063 ], [ -123.165217409999954, 49.725246052000045 ], [ -123.165211608999982, 49.725339987000034 ], [ -123.165122200999988, 49.725469999000026 ], [ -123.164221917999953, 49.726541003000051 ], [ -123.163032904999966, 49.727667509000113 ], [ -123.16236990499999, 49.728488093000053 ], [ -123.16214076299994, 49.728488413000065 ], [ -123.162141661999982, 49.72875824700008 ], [ -123.161725396999969, 49.728758829000114 ], [ -123.161726791999982, 49.729178373000082 ], [ -123.161571765999909, 49.729298712000102 ], [ -123.16131092199997, 49.729299076000054 ], [ -123.161311591999947, 49.72950067500004 ], [ -123.161223528999983, 49.729569032 ], [ -123.160479276999936, 49.729570065000082 ], [ -123.16048086699999, 49.730052435000076 ], [ -123.16034184899999, 49.730109924000104 ], [ -123.16006478099996, 49.730110308000093 ], [ -123.160065155999945, 49.730224345000096 ], [ -123.15968714199991, 49.730380663000147 ], [ -123.15923311399996, 49.730381287000085 ], [ -123.159233724999979, 49.730568159000029 ], [ -123.158377702999957, 49.730922129000092 ], [ -123.157569750999954, 49.730923230000052 ], [ -123.157570825999954, 49.731254945000067 ], [ -123.156440984, 49.731715096000094 ], [ -123.155874607999948, 49.732039884000088 ], [ -123.15462581, 49.732383085 ], [ -123.154239002999986, 49.732626610000061 ], [ -123.154071613000028, 49.732555398000059 ], [ -123.152352407999913, 49.732746310000074 ], [ -123.150324381999923, 49.732676501000064 ] ], [ [ -123.16063172299999, 49.725139554000037 ], [ -123.160460205999982, 49.725103697000129 ], [ -123.160303250999931, 49.725561772000056 ], [ -123.16012202499995, 49.726090561000035 ], [ -123.161325498999986, 49.726348032000082 ], [ -123.16133457399998, 49.72634455700004 ], [ -123.162120775999981, 49.726512493000051 ], [ -123.16360098499996, 49.726136936000046 ], [ -123.163883514999952, 49.725859721000063 ], [ -123.163083574, 49.725652765000106 ], [ -123.163084287999965, 49.725652429000071 ], [ -123.161310868, 49.725281588000023 ], [ -123.16063172299999, 49.725139554000037 ] ], [ [ -123.156718943999948, 49.725257861000067 ], [ -123.156718073999954, 49.72498802700008 ], [ -123.157134304999943, 49.724987463000019 ], [ -123.157122113999932, 49.72120979400011 ], [ -123.156289717, 49.721210920000011 ], [ -123.156290582999958, 49.721480753000073 ], [ -123.155874381000018, 49.721481314000087 ], [ -123.155875244999962, 49.721751148000102 ], [ -123.155459041999947, 49.721751708000099 ], [ -123.155466795000038, 49.724180209000075 ], [ -123.155050572, 49.724180768000089 ], [ -123.155053148999954, 49.724990267000138 ], [ -123.1554693799999, 49.724989710000088 ], [ -123.155470241999978, 49.725259543000028 ], [ -123.156718943999948, 49.725257861000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.736318407960199", "sL_AssetLoss": "1005", "sL_BldgLoss": "740", "sL_StrLoss": "152", "sL_NStrLoss": "588", "sL_ContLoss": "265", "geom_point": "0101000020E610000049726D667CC95EC0CDD9D0072ADE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147592073999974, 49.735253721000014 ], [ -123.148841030999975, 49.73525212300008 ], [ -123.148843506999981, 49.736061622000101 ], [ -123.147594528999932, 49.736063219000066 ], [ -123.147592073999974, 49.735253721000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.834486576252422", "sL_AssetLoss": "7226", "sL_BldgLoss": "6030", "sL_StrLoss": "3510", "sL_NStrLoss": "2520", "sL_ContLoss": "1196", "geom_point": "0101000020E61000009F08FBD93CC95EC0A7F1033EDCDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.144251892999975, 49.747894105000128 ], [ -123.144816814999942, 49.747156403000055 ], [ -123.144830397999968, 49.747157122000075 ], [ -123.144655064999981, 49.749974075000075 ], [ -123.143766415999963, 49.749950820000095 ], [ -123.143748627999926, 49.750236514000107 ], [ -123.143730599999955, 49.750197105000012 ], [ -123.143659898999928, 49.749496395000087 ], [ -123.14414248199995, 49.748577804000035 ], [ -123.144251892999975, 49.747894105000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31429168", "BldgCostT": "19991668", "sL_LossRatio": "0.732961995183143", "sL_AssetLoss": "215078", "sL_BldgLoss": "157644", "sL_StrLoss": "77194", "sL_NStrLoss": "80450", "sL_ContLoss": "57434", "geom_point": "0101000020E610000053B3399442D05EC002F2DBC655D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.253001542, 49.670580684000093 ], [ -123.253000142999923, 49.670310848000064 ], [ -123.252584379999988, 49.670311756000068 ], [ -123.252581585999948, 49.669772087000162 ], [ -123.252165828999978, 49.669772993000031 ], [ -123.252164586999967, 49.669532826000122 ], [ -123.24779988599991, 49.669422638000178 ], [ -123.247890759999976, 49.667905089000037 ], [ -123.249693889999932, 49.667474700000035 ], [ -123.249707409999985, 49.667114407000064 ], [ -123.24951188299994, 49.667034691000048 ], [ -123.24901059799997, 49.666567489000066 ], [ -123.249078894999982, 49.666369609000093 ], [ -123.249827303999908, 49.66615169100001 ], [ -123.249853203000015, 49.665899598000074 ], [ -123.250045483999941, 49.665684492000018 ], [ -123.25046131000002, 49.665439489000065 ], [ -123.251083813, 49.66525009300009 ], [ -123.251119520999936, 49.665223814000043 ], [ -123.252421504999973, 49.665256665000065 ], [ -123.253192384999949, 49.665767105000107 ], [ -123.253677385999978, 49.665990692000086 ], [ -123.253441784999964, 49.6656588990001 ], [ -123.252849825999988, 49.665255943000098 ], [ -123.252973486999934, 49.665171140000062 ], [ -123.252969620999977, 49.664425377000086 ], [ -123.253178584999944, 49.664374032000083 ], [ -123.25336982499999, 49.664373614000084 ], [ -123.253372649999974, 49.664326348 ], [ -123.253960098999926, 49.664182003000072 ], [ -123.254651488999968, 49.664153510000077 ], [ -123.254612388999988, 49.664334397000054 ], [ -123.254722383999933, 49.664405595000147 ], [ -123.255805102999943, 49.664456809000058 ], [ -123.256164890999969, 49.664375701000012 ], [ -123.257118493999926, 49.663860102000029 ], [ -123.257943506999979, 49.663049700000045 ], [ -123.257928391999926, 49.662689413000066 ], [ -123.258370634999935, 49.662548811000086 ], [ -123.25980060900001, 49.66258479700015 ], [ -123.259762654, 49.666556262000014 ], [ -123.259426346999973, 49.666547801000064 ], [ -123.259412715999957, 49.666776395000113 ], [ -123.258770060999922, 49.666760224000036 ], [ -123.258764292999984, 49.66685691100011 ], [ -123.254228845999961, 49.666742677000116 ], [ -123.254236176999925, 49.668149441000082 ], [ -123.254651919999958, 49.668148528000081 ], [ -123.25465896299994, 49.669497700000115 ], [ -123.255074716999957, 49.669496785000064 ], [ -123.255080363999951, 49.670576123000075 ], [ -123.253001542, 49.670580684000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13801584", "BldgCostT": "9518334", "sL_LossRatio": "0.818448312310619", "sL_AssetLoss": "70955", "sL_BldgLoss": "58073", "sL_StrLoss": "31904", "sL_NStrLoss": "26169", "sL_ContLoss": "12882", "geom_point": "0101000020E6100000C70D85F024C95EC029ACD0172DDE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137227569999979, 49.738965800000159 ], [ -123.139111597999928, 49.737176310000052 ], [ -123.139315666999906, 49.736978954000072 ], [ -123.139476688999935, 49.73682324599999 ], [ -123.141386056999977, 49.734976674000059 ], [ -123.143761110999918, 49.732422248000056 ], [ -123.14391468399999, 49.732257070000067 ], [ -123.144625501999883, 49.731672597000077 ], [ -123.145000087999918, 49.731227849000064 ], [ -123.145101399999987, 49.731084030000041 ], [ -123.145284096999916, 49.731099903000029 ], [ -123.14668627599994, 49.731826192000071 ], [ -123.147411408999957, 49.732356005000042 ], [ -123.148482984999973, 49.733605106000027 ], [ -123.149068114000016, 49.734378402000075 ], [ -123.15006839599998, 49.735079090000028 ], [ -123.150419536999948, 49.7352500840001 ], [ -123.149257350999946, 49.735251588000061 ], [ -123.149255694999923, 49.734711921000041 ], [ -123.147590437999924, 49.734714054000015 ], [ -123.147589617999955, 49.734444222000093 ], [ -123.147173306999946, 49.734444751000062 ], [ -123.147170043999921, 49.73336541900008 ], [ -123.146753739999895, 49.733365946000013 ], [ -123.146752925999976, 49.733096113000101 ], [ -123.145920324999935, 49.733097164000071 ], [ -123.145921133999977, 49.733366998000058 ], [ -123.145088526999984, 49.733368044000045 ], [ -123.145089331999927, 49.733637877000092 ], [ -123.144673025999921, 49.733638398000046 ], [ -123.144673827999938, 49.733908231000065 ], [ -123.144257520999986, 49.733908750000104 ], [ -123.144260719999949, 49.734988082000022 ], [ -123.143844401999957, 49.734988600000101 ], [ -123.143845997999961, 49.735528266000124 ], [ -123.143434211999988, 49.735528777000091 ], [ -123.143429882999939, 49.73559833300002 ], [ -123.143431267999972, 49.73606844800004 ], [ -123.143400613999958, 49.736068486000114 ], [ -123.143356048999948, 49.736784340000092 ], [ -123.143017017999952, 49.736775463000072 ], [ -123.143017320999917, 49.736878463000032 ], [ -123.143433652999974, 49.736877948000021 ], [ -123.143436039999955, 49.737687448000088 ], [ -123.143852378999924, 49.737686931 ], [ -123.143855569999985, 49.738766263000059 ], [ -123.142190172999946, 49.738768319000052 ], [ -123.142190960999926, 49.739038153000052 ], [ -123.141542520999934, 49.739038946000093 ], [ -123.141529915999968, 49.739241275000111 ], [ -123.138871591999958, 49.739338185000165 ], [ -123.137007685999947, 49.739406085000027 ], [ -123.137009381999945, 49.739281425000094 ], [ -123.13707334499999, 49.739146289000104 ], [ -123.137227569999979, 49.738965800000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "494793067", "BldgCostT": "277322954", "sL_LossRatio": "0.619038897108363", "sL_AssetLoss": "2953690", "sL_BldgLoss": "1828449", "sL_StrLoss": "690209", "sL_NStrLoss": "1138240", "sL_ContLoss": "1125241", "geom_point": "0101000020E6100000F46116778FC95EC0FF98A46CF0DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.144312651999897, 49.729273712000037 ], [ -123.144230723999925, 49.729096057000021 ], [ -123.144137679999943, 49.728896487000092 ], [ -123.143841057000017, 49.728645688000057 ], [ -123.143757206999965, 49.728499472000067 ], [ -123.143786888999927, 49.728401240000046 ], [ -123.143915346000014, 49.728299306000061 ], [ -123.145624746999957, 49.72743222400004 ], [ -123.14450156, 49.727798874000086 ], [ -123.14370355699999, 49.727800477000052 ], [ -123.143186820999972, 49.727786940000023 ], [ -123.142936619999929, 49.727748888000114 ], [ -123.142722749999962, 49.72766228100005 ], [ -123.14207916, 49.727145850000063 ], [ -123.141227483999927, 49.726672592000114 ], [ -123.140906355999931, 49.726593035000136 ], [ -123.140728318999948, 49.726600086000076 ], [ -123.140606486999914, 49.725838087000113 ], [ -123.140652619000022, 49.725446414000032 ], [ -123.14123971399998, 49.720461196000059 ], [ -123.141502184999979, 49.71825099299999 ], [ -123.141602558999963, 49.717452118000026 ], [ -123.141711753999971, 49.717451984000107 ], [ -123.141712538999954, 49.717721818000015 ], [ -123.142128706999969, 49.717721307000069 ], [ -123.142129494999921, 49.717991142000095 ], [ -123.144210351999959, 49.717988570000067 ], [ -123.144211102999932, 49.718242148000108 ], [ -123.144212749999966, 49.718798071000066 ], [ -123.143796570999939, 49.718798589000109 ], [ -123.143798163999989, 49.719338256000093 ], [ -123.144214348, 49.719337739000075 ], [ -123.144215947, 49.719877408000109 ], [ -123.145048322999941, 49.719876368000072 ], [ -123.145049928999939, 49.720416035000028 ], [ -123.145466121999931, 49.720415514000074 ], [ -123.145468539999939, 49.721225015000137 ], [ -123.145884739999971, 49.721224491000036 ], [ -123.145883930999958, 49.720954658000082 ], [ -123.1467163249999, 49.720953607000062 ], [ -123.146715511999929, 49.720683773000118 ], [ -123.147131706999986, 49.720683244000014 ], [ -123.14713089199995, 49.72041341000007 ], [ -123.147943625000025, 49.72041237500013 ], [ -123.147963274999981, 49.720412351000029 ], [ -123.14796163499993, 49.719872683000048 ], [ -123.147936075999951, 49.719872716000019 ], [ -123.147129259999986, 49.719873744000118 ], [ -123.147125998999968, 49.7187944080001 ], [ -123.146709819999941, 49.718794936000023 ], [ -123.146708130999983, 49.718233905000027 ], [ -123.14670656899996, 49.717715601000116 ], [ -123.14712273899994, 49.717715072 ], [ -123.147120292999929, 49.716905571000055 ], [ -123.147536454999951, 49.716905042000121 ], [ -123.14753563699999, 49.716635207000088 ], [ -123.147119476999976, 49.7166357360001 ], [ -123.14711295599993, 49.714477064000022 ], [ -123.147529097999936, 49.714476535000081 ], [ -123.14752753199997, 49.713959672000065 ], [ -123.147819374999969, 49.713960273000033 ], [ -123.147818851999958, 49.713936496000031 ], [ -123.148775872999934, 49.713935270000071 ], [ -123.148777522999978, 49.714474939000098 ], [ -123.150025946999946, 49.714473328000061 ], [ -123.150023451999914, 49.713663826000051 ], [ -123.150439586999951, 49.713663287000031 ], [ -123.150438753999978, 49.713393452000091 ], [ -123.150854885999962, 49.713392911000021 ], [ -123.150853215000012, 49.712853243000033 ], [ -123.15126934199999, 49.712852700000056 ], [ -123.151267667, 49.712313031000122 ], [ -123.151683788999961, 49.712312488000116 ], [ -123.151682108000017, 49.711772820000121 ], [ -123.152098225999964, 49.71177227400009 ], [ -123.152096580999924, 49.711245406000025 ], [ -123.151575554999965, 49.711231796000057 ], [ -123.151659305999942, 49.709881791000029 ], [ -123.148121414999949, 49.709789308000104 ], [ -123.148215814999958, 49.708269448000131 ], [ -123.147926388999949, 49.708269818000154 ], [ -123.147930486999954, 49.709618989000056 ], [ -123.147438747999942, 49.709619617000058 ], [ -123.147251212999961, 49.708833185000096 ], [ -123.146951428999913, 49.707965693000077 ], [ -123.146905066999963, 49.707854691000065 ], [ -123.146810037999927, 49.707627059000046 ], [ -123.146771270999949, 49.707534195000051 ], [ -123.146125353999949, 49.705986770000031 ], [ -123.145500319999954, 49.70448917700007 ], [ -123.147589533999948, 49.70405687100007 ], [ -123.148084480999941, 49.703917055000019 ], [ -123.148229796999956, 49.703876005000097 ], [ -123.148476075999923, 49.703806420000049 ], [ -123.149044031999949, 49.703526949000086 ], [ -123.149211975999933, 49.703614143000038 ], [ -123.149363808999937, 49.703626200000038 ], [ -123.149747105999907, 49.70382356300005 ], [ -123.15029877399995, 49.704107590000092 ], [ -123.151233289999936, 49.704588728000047 ], [ -123.151386083999938, 49.704741236000061 ], [ -123.151936822999971, 49.706327274000067 ], [ -123.152611804999978, 49.707945352000067 ], [ -123.152787595999925, 49.708248547000039 ], [ -123.152856140999944, 49.708366688000062 ], [ -123.152929012999977, 49.708452324000078 ], [ -123.15316660799999, 49.708731386000096 ], [ -123.153773765999958, 49.709444417000022 ], [ -123.153980996999934, 49.709687803000079 ], [ -123.154043203999947, 49.709757800000055 ], [ -123.155356110999961, 49.710440098000078 ], [ -123.155831782999925, 49.710934101000085 ], [ -123.156368093999902, 49.71168170100006 ], [ -123.157676597999966, 49.7136241010001 ], [ -123.157648789999897, 49.714186 ], [ -123.157634130999924, 49.715064556000122 ], [ -123.157627797999922, 49.715443800000038 ], [ -123.157580293999914, 49.715583893000037 ], [ -123.157387705999938, 49.715938899000058 ], [ -123.157071776999942, 49.716223196000072 ], [ -123.156017398999921, 49.716851008000141 ], [ -123.155593390999968, 49.717089297000051 ], [ -123.155321803999939, 49.717284712000051 ], [ -123.155069103999978, 49.71755719700009 ], [ -123.155006420999939, 49.717675938000113 ], [ -123.154935527999939, 49.717810213000121 ], [ -123.154839826999989, 49.718100334000049 ], [ -123.154827418999972, 49.718255641000091 ], [ -123.15476663699998, 49.718971744000058 ], [ -123.154706181000023, 49.71968355800005 ], [ -123.154637375999968, 49.7204938040001 ], [ -123.154635774999988, 49.722802551000029 ], [ -123.154632083999971, 49.725816925000082 ], [ -123.154623651999927, 49.726959853000082 ], [ -123.154724922999918, 49.727183922000016 ], [ -123.154864520999965, 49.727349586000102 ], [ -123.155279233999977, 49.727576418000055 ], [ -123.155858043999899, 49.727641041 ], [ -123.155840860999959, 49.727828698000017 ], [ -123.154637930999925, 49.728923375000036 ], [ -123.15438860099999, 49.729072575000032 ], [ -123.154035727999883, 49.729191195000048 ], [ -123.153608181999957, 49.729237643000076 ], [ -123.153154316000013, 49.729284317000101 ], [ -123.152812007999927, 49.72931994700005 ], [ -123.152497878999924, 49.729352684000105 ], [ -123.152414230999952, 49.72936128000002 ], [ -123.152393114999967, 49.729363442000079 ], [ -123.15121736, 49.729481269000132 ], [ -123.149199556999918, 49.729684188000093 ], [ -123.148706308, 49.729738788000127 ], [ -123.14817416399994, 49.729797216000108 ], [ -123.147666772999955, 49.729852920000042 ], [ -123.147042109999973, 49.729856999000113 ], [ -123.146839361999966, 49.729858289000042 ], [ -123.146073927999979, 49.729737457000091 ], [ -123.14543127099995, 49.729627934000078 ], [ -123.144712361999922, 49.729538455000082 ], [ -123.144698706999975, 49.729536768000052 ], [ -123.14444551, 49.729413113000099 ], [ -123.144312651999897, 49.729273712000037 ] ], [ [ -123.147988451999979, 49.728695494000064 ], [ -123.14798624, 49.727967691000124 ], [ -123.149235010999959, 49.72796608900007 ], [ -123.14923583699999, 49.728235923000042 ], [ -123.150068355999906, 49.728234848000028 ], [ -123.150066691999925, 49.727695181000087 ], [ -123.15034194699993, 49.727694824000153 ], [ -123.150365234999953, 49.727674863000104 ], [ -123.150482885, 49.727674697000076 ], [ -123.150482112999939, 49.727424807000034 ], [ -123.15173086899992, 49.727423178000052 ], [ -123.151730027999974, 49.727153344000079 ], [ -123.15381127699996, 49.727150600000122 ], [ -123.153808719, 49.726341101000045 ], [ -123.153392475999951, 49.726341652000045 ], [ -123.153389924999914, 49.725532151000067 ], [ -123.153806160999963, 49.725531599000078 ], [ -123.153797637999958, 49.722833265000055 ], [ -123.153381423999988, 49.722833816000019 ], [ -123.15338126499995, 49.722783203000162 ], [ -123.153380574, 49.722563982000082 ], [ -123.150883309999969, 49.722567263000052 ], [ -123.15088385899999, 49.72274464000003 ], [ -123.150884145999967, 49.722837096000056 ], [ -123.15079051599993, 49.722837218000102 ], [ -123.15030457, 49.722837849000079 ], [ -123.149635507999932, 49.722838716000055 ], [ -123.149635251999953, 49.722755788000022 ], [ -123.149634679, 49.722568882000054 ], [ -123.14921846699994, 49.722569418000056 ], [ -123.149219020999965, 49.722749854000043 ], [ -123.149219294999952, 49.72283925300006 ], [ -123.148803081999944, 49.722839788000044 ], [ -123.148803906999916, 49.723109622000067 ], [ -123.149220121999946, 49.723109086000086 ], [ -123.14922260299997, 49.723918587000085 ], [ -123.148806381, 49.723919122000027 ], [ -123.148812154, 49.725807958000097 ], [ -123.147687450999939, 49.725809396000059 ], [ -123.147563438999953, 49.725809554000129 ], [ -123.147564100999944, 49.726027775000105 ], [ -123.14756425799996, 49.726079388000095 ], [ -123.147980498999928, 49.72607885700009 ], [ -123.147981317999978, 49.726348690000023 ], [ -123.148397560999939, 49.726348159000111 ], [ -123.148400027999983, 49.727157659000113 ], [ -123.147151278999971, 49.727159252000028 ], [ -123.147150464, 49.726889418000042 ], [ -123.146670845999978, 49.726890026000035 ], [ -123.14631796799992, 49.726890473000047 ], [ -123.146318578999981, 49.727093664000087 ], [ -123.146325267999941, 49.729318974000066 ], [ -123.147929966, 49.729316936000089 ], [ -123.147896034999945, 49.728802563000038 ], [ -123.147903935999949, 49.72875026300003 ], [ -123.147978734999967, 49.728747163000023 ], [ -123.147988451999979, 49.728695494000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3789417", "BldgCostT": "2141667", "sL_LossRatio": "0.692219842969308", "sL_AssetLoss": "14010", "sL_BldgLoss": "9698", "sL_StrLoss": "3766", "sL_NStrLoss": "5932", "sL_ContLoss": "4312", "geom_point": "0101000020E61000000CE3D13AA8C95EC0A4761AC4E2DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.150474605999975, 49.724996306000044 ], [ -123.151723298999968, 49.724994678000037 ], [ -123.151726662999934, 49.726074011000094 ], [ -123.15131042199998, 49.72607455600015 ], [ -123.151311259999957, 49.72634438900009 ], [ -123.150062532999939, 49.726346014000114 ], [ -123.150059204999977, 49.725266680000075 ], [ -123.150475438999976, 49.72526613900007 ], [ -123.150474605999975, 49.724996306000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96453584", "BldgCostT": "64333334", "sL_LossRatio": "0.794576021597742", "sL_AssetLoss": "342258", "sL_BldgLoss": "271950", "sL_StrLoss": "127370", "sL_NStrLoss": "144580", "sL_ContLoss": "70308", "geom_point": "0101000020E6100000A4796C7087CA5EC0A69B17695ADA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16710926199994, 49.70488700800005 ], [ -123.167646633999965, 49.704900970000118 ], [ -123.167570033999965, 49.706142819000085 ], [ -123.167472362999916, 49.706181971000085 ], [ -123.165849280999936, 49.706733099000076 ], [ -123.162979691999951, 49.707258612000039 ], [ -123.162078502, 49.707322703000024 ], [ -123.161948789999954, 49.707329694000045 ], [ -123.161988021999889, 49.706694950000035 ], [ -123.162107797999937, 49.704756928000045 ], [ -123.16710926199994, 49.70488700800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5481500", "BldgCostT": "3020000", "sL_LossRatio": "0.573334907888521", "sL_AssetLoss": "84680", "sL_BldgLoss": "48550", "sL_StrLoss": "16180", "sL_NStrLoss": "32370", "sL_ContLoss": "36130", "geom_point": "0101000020E6100000288747C9C8CA5EC0ED90C5AAFFD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168628166999952, 49.702574982000051 ], [ -123.169127212999953, 49.702574255000115 ], [ -123.169130958999943, 49.703653593000098 ], [ -123.168561845999974, 49.703654421000081 ], [ -123.167882812999949, 49.703655408000081 ], [ -123.167879094999975, 49.702576071000088 ], [ -123.168628166999952, 49.702574982000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "388041944", "BldgCostT": "236156341", "sL_LossRatio": "0.698983682660727", "sL_AssetLoss": "2136439", "sL_BldgLoss": "1493336", "sL_StrLoss": "665716", "sL_NStrLoss": "827620", "sL_ContLoss": "643103", "geom_point": "0101000020E610000001146567F8C95EC0EDA97A9E64DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152856140999944, 49.708366688000062 ], [ -123.152787595999925, 49.708248547000039 ], [ -123.152611804999978, 49.707945352000067 ], [ -123.151936822999971, 49.706327274000067 ], [ -123.151386083999938, 49.704741236000061 ], [ -123.151233289999936, 49.704588728000047 ], [ -123.15029877399995, 49.704107590000092 ], [ -123.149747105999907, 49.70382356300005 ], [ -123.149363808999937, 49.703626200000038 ], [ -123.149211975999933, 49.703614143000038 ], [ -123.149044031999949, 49.703526949000086 ], [ -123.149165597000021, 49.703467997000075 ], [ -123.149541032999977, 49.703184377000177 ], [ -123.149958226999942, 49.702785725000069 ], [ -123.149968705999967, 49.702661784000085 ], [ -123.150038901999935, 49.702580793000038 ], [ -123.150241337999944, 49.702335861000037 ], [ -123.15087531599994, 49.701572882000058 ], [ -123.152392779999929, 49.701590942000095 ], [ -123.152496657, 49.701593649000088 ], [ -123.154023698999964, 49.701613732000105 ], [ -123.154805892999931, 49.701623734000087 ], [ -123.155388685999952, 49.701631174000077 ], [ -123.155577135999948, 49.70163356200004 ], [ -123.155695489999943, 49.70167085800005 ], [ -123.155800035999945, 49.701594372000024 ], [ -123.155957093999987, 49.70158946400003 ], [ -123.156073461999938, 49.701658221000109 ], [ -123.156304604999931, 49.701621046000106 ], [ -123.15654668399992, 49.701630974000061 ], [ -123.156599984999929, 49.701650554000032 ], [ -123.156641586999967, 49.701665843000058 ], [ -123.156651349999905, 49.701676622000015 ], [ -123.156969159999932, 49.701627266000123 ], [ -123.157079940999949, 49.701643670000124 ], [ -123.157207586999959, 49.701662599000059 ], [ -123.157371859999941, 49.701664239000131 ], [ -123.158662938999939, 49.701677139000012 ], [ -123.160063360999942, 49.701764169000036 ], [ -123.160801040999957, 49.700955365000056 ], [ -123.160802858999901, 49.701506768000066 ], [ -123.160513740999974, 49.70150717000012 ], [ -123.160502034999965, 49.701572363000054 ], [ -123.160387355999944, 49.70166734000005 ], [ -123.16038771099997, 49.701775201000103 ], [ -123.160387717, 49.701777179000025 ], [ -123.15997168399997, 49.701777754000041 ], [ -123.159972568999976, 49.702047589000102 ], [ -123.15955653499995, 49.70204816400009 ], [ -123.159558303, 49.70258783200007 ], [ -123.158310182999969, 49.702589545000073 ], [ -123.158311059999932, 49.702859380000092 ], [ -123.157478976000021, 49.702860513000047 ], [ -123.157479846999934, 49.703130348000116 ], [ -123.157895891999942, 49.703129781000058 ], [ -123.157897640999963, 49.703669451000053 ], [ -123.159561835999938, 49.703667169000013 ], [ -123.159562719999897, 49.703937004000117 ], [ -123.160810873999964, 49.703935278000074 ], [ -123.160814438, 49.705014616000113 ], [ -123.160398376, 49.705015193000065 ], [ -123.160404595999964, 49.706904033000022 ], [ -123.160052103999988, 49.706904520000087 ], [ -123.159988518999938, 49.706904607000126 ], [ -123.159990291999947, 49.707444276000054 ], [ -123.159574209999931, 49.707444850000059 ], [ -123.159575978999925, 49.707984519000057 ], [ -123.15915989299999, 49.707985092000044 ], [ -123.159161655999981, 49.708524759000063 ], [ -123.159479811000026, 49.708524322000109 ], [ -123.159393648999938, 49.708629475000102 ], [ -123.159153671999917, 49.709178231000053 ], [ -123.159048183999971, 49.709447393000097 ], [ -123.15899579199997, 49.709577030000084 ], [ -123.158796443999933, 49.710144918000118 ], [ -123.158773273999927, 49.710602251000054 ], [ -123.158789612999954, 49.710741551000069 ], [ -123.158874730999912, 49.711567225000088 ], [ -123.15879516699998, 49.71203462900008 ], [ -123.158586258999932, 49.71272168300009 ], [ -123.158598767999933, 49.71307965000009 ], [ -123.158625774999933, 49.713113311000036 ], [ -123.158290068999975, 49.714773242000042 ], [ -123.157882713, 49.713981362 ], [ -123.157707204999923, 49.713677114000092 ], [ -123.157676597999966, 49.7136241010001 ], [ -123.156368093999902, 49.71168170100006 ], [ -123.155831782999925, 49.710934101000085 ], [ -123.155356110999961, 49.710440098000078 ], [ -123.154043203999947, 49.709757800000055 ], [ -123.153980996999934, 49.709687803000079 ], [ -123.153773765999958, 49.709444417000022 ], [ -123.15316660799999, 49.708731386000096 ], [ -123.152929012999977, 49.708452324000078 ], [ -123.152856140999944, 49.708366688000062 ] ], [ [ -123.157901137999914, 49.704748788000131 ], [ -123.157899389999926, 49.704209119000019 ], [ -123.154570959999958, 49.704213609000043 ], [ -123.154572672999961, 49.704753277000044 ], [ -123.154988729999914, 49.704752721000048 ], [ -123.154989588999953, 49.705022556000067 ], [ -123.157485952999977, 49.705019189000041 ], [ -123.157485082000022, 49.704749354000064 ], [ -123.157901137999914, 49.704748788000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "504853538", "BldgCostT": "336673046", "sL_LossRatio": "0.754284297110734", "sL_AssetLoss": "3628950", "sL_BldgLoss": "2737260", "sL_StrLoss": "1293010", "sL_NStrLoss": "1444250", "sL_ContLoss": "891690", "geom_point": "0101000020E61000007F477D2720CA5EC0C7E0C69881D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.152496657, 49.701593649000088 ], [ -123.153490125999895, 49.700399910000051 ], [ -123.153813420999981, 49.700012818000069 ], [ -123.154836698999972, 49.69878779000009 ], [ -123.156165573999914, 49.697169796000054 ], [ -123.157376315999969, 49.697593801000103 ], [ -123.158719773999962, 49.695983402000138 ], [ -123.159625304999949, 49.696319381000087 ], [ -123.160914327999961, 49.696753125000043 ], [ -123.162320521999973, 49.697261120000043 ], [ -123.162425387999988, 49.697302102000052 ], [ -123.16340226899996, 49.697683923000092 ], [ -123.162201769999967, 49.699199649000086 ], [ -123.162114072999927, 49.699310412000081 ], [ -123.16136339699996, 49.700252260000084 ], [ -123.16079867099991, 49.700237552000011 ], [ -123.160801040999957, 49.700955365000056 ], [ -123.160063360999942, 49.701764169000036 ], [ -123.158662938999939, 49.701677139000012 ], [ -123.157371859999941, 49.701664239000131 ], [ -123.157207586999959, 49.701662599000059 ], [ -123.157079940999949, 49.701643670000124 ], [ -123.156969159999932, 49.701627266000123 ], [ -123.156651349999905, 49.701676622000015 ], [ -123.156641586999967, 49.701665843000058 ], [ -123.156599984999929, 49.701650554000032 ], [ -123.15654668399992, 49.701630974000061 ], [ -123.156304604999931, 49.701621046000106 ], [ -123.156073461999938, 49.701658221000109 ], [ -123.155957093999987, 49.70158946400003 ], [ -123.155800035999945, 49.701594372000024 ], [ -123.155695489999943, 49.70167085800005 ], [ -123.155577135999948, 49.70163356200004 ], [ -123.155388685999952, 49.701631174000077 ], [ -123.154805892999931, 49.701623734000087 ], [ -123.154023698999964, 49.701613732000105 ], [ -123.152496657, 49.701593649000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "447689051", "BldgCostT": "261879515", "sL_LossRatio": "0.635105381354846", "sL_AssetLoss": "3275532", "sL_BldgLoss": "2080308", "sL_StrLoss": "767308", "sL_NStrLoss": "1313000", "sL_ContLoss": "1195224", "geom_point": "0101000020E6100000BF414000E1C95EC0D664B74301D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141972156999955, 49.708892601000102 ], [ -123.141876429999968, 49.708107775000045 ], [ -123.141699782, 49.705325261000119 ], [ -123.141749021999914, 49.705326551000034 ], [ -123.141750477999963, 49.705303163000082 ], [ -123.14169829299999, 49.705301794000029 ], [ -123.141693570999976, 49.705227395000044 ], [ -123.141702159999952, 49.70508940100008 ], [ -123.141684780999952, 49.705088945000043 ], [ -123.14166474699995, 49.70477333700007 ], [ -123.141428522999945, 49.704160162000036 ], [ -123.141034574999978, 49.703657671000059 ], [ -123.140188391999985, 49.703709012000061 ], [ -123.140207709999956, 49.704111913000141 ], [ -123.140268412999902, 49.704428590000148 ], [ -123.139459213999899, 49.704393796000041 ], [ -123.139466851999913, 49.703773651000091 ], [ -123.139471203999932, 49.703421992000123 ], [ -123.138081254999946, 49.703403513000069 ], [ -123.136734014999917, 49.703390634000115 ], [ -123.136666899999952, 49.703087324000137 ], [ -123.136595254999975, 49.703013422000033 ], [ -123.136025312999948, 49.702745519000089 ], [ -123.135943366999939, 49.702680366000067 ], [ -123.13594612899999, 49.70261381600001 ], [ -123.136035517, 49.702515339000122 ], [ -123.137440189999978, 49.701784412000066 ], [ -123.137209088999938, 49.701620828000074 ], [ -123.13716685299994, 49.701519797000103 ], [ -123.137172644999936, 49.701469139000118 ], [ -123.137179032999981, 49.70141298500009 ], [ -123.137266505999946, 49.701325019000073 ], [ -123.137276703999973, 49.701314728000078 ], [ -123.137433530999886, 49.701224234000051 ], [ -123.138066833999972, 49.700858716000042 ], [ -123.138124037999958, 49.700825700000038 ], [ -123.139978934999988, 49.700435994000081 ], [ -123.140047886, 49.700241586000125 ], [ -123.140212373999972, 49.700016127000033 ], [ -123.140228343999922, 49.699994278000105 ], [ -123.140472467999956, 49.699796638000095 ], [ -123.140595750999964, 49.69969689800007 ], [ -123.140706810000026, 49.69960701300009 ], [ -123.140718978999956, 49.699597147000048 ], [ -123.141180838999929, 49.699223330000123 ], [ -123.141382008, 49.699060476000035 ], [ -123.141434815999943, 49.699007685000026 ], [ -123.141556538999964, 49.698885926000102 ], [ -123.14157662199996, 49.698853240000062 ], [ -123.14173865799998, 49.698589151000078 ], [ -123.142063086999912, 49.697876631000064 ], [ -123.142229901999954, 49.697637703000105 ], [ -123.142294503999949, 49.697545137000056 ], [ -123.142529335999981, 49.697321321000103 ], [ -123.142990466999919, 49.696835162000049 ], [ -123.143232301999959, 49.69669206400004 ], [ -123.14366586899996, 49.696295882000115 ], [ -123.143732188999962, 49.696235294000061 ], [ -123.143818199999927, 49.6961232210001 ], [ -123.143652098, 49.696073874 ], [ -123.143450858999941, 49.696074982000091 ], [ -123.142821192, 49.69576364300007 ], [ -123.143304429999915, 49.694881022000089 ], [ -123.144011942999938, 49.694342816000116 ], [ -123.144207441, 49.694275796000113 ], [ -123.144742525999931, 49.693060432000046 ], [ -123.145478160999957, 49.692475120000097 ], [ -123.145870492000014, 49.692468227000056 ], [ -123.146479423999892, 49.692522809000117 ], [ -123.14731092, 49.692597313000142 ], [ -123.153054720999961, 49.692405213000015 ], [ -123.153663315999921, 49.692413087000055 ], [ -123.153653597999892, 49.692754485000052 ], [ -123.15332533199998, 49.692963632 ], [ -123.153039311999933, 49.692956159000026 ], [ -123.153033011999966, 49.693057820000028 ], [ -123.151784688999925, 49.693025204000072 ], [ -123.15173250499997, 49.693866750000012 ], [ -123.147938575999945, 49.693767536000095 ], [ -123.147842310999948, 49.695317812000042 ], [ -123.147887071999932, 49.695317754000058 ], [ -123.14788625199999, 49.695047920000079 ], [ -123.149966129999953, 49.695045245000088 ], [ -123.149964469999958, 49.694505575000093 ], [ -123.151212382999958, 49.694503952000069 ], [ -123.151210708999912, 49.693964282000131 ], [ -123.152180973999975, 49.69396301300003 ], [ -123.152091290999962, 49.69411461300011 ], [ -123.151622602999936, 49.694366687000098 ], [ -123.150985691999921, 49.69488079600012 ], [ -123.151042285999921, 49.695241102000139 ], [ -123.151208922999984, 49.69544760200008 ], [ -123.151735391999949, 49.695545904000042 ], [ -123.151929694, 49.695671200000078 ], [ -123.15192556, 49.695852199000029 ], [ -123.151632551999967, 49.695852584000107 ], [ -123.151633198999946, 49.696060673000012 ], [ -123.151920625999963, 49.696068184000069 ], [ -123.151918599999959, 49.696156897000044 ], [ -123.151585794999932, 49.696579897000071 ], [ -123.151629202, 49.69675079800006 ], [ -123.151309687999941, 49.696877501000095 ], [ -123.150467885999987, 49.697652293000019 ], [ -123.149999497999971, 49.6986776910001 ], [ -123.14878098, 49.699579294000046 ], [ -123.148394295999964, 49.699731712000059 ], [ -123.148006595999945, 49.700047792000049 ], [ -123.146912020999935, 49.700624605000051 ], [ -123.145372598999984, 49.700869594000046 ], [ -123.144917213999989, 49.701050506000115 ], [ -123.144819706999954, 49.70122138900004 ], [ -123.144678450999976, 49.701249004000033 ], [ -123.144542921999943, 49.701275500000079 ], [ -123.144376532999942, 49.701251695000089 ], [ -123.144294084999927, 49.701239900000068 ], [ -123.143821006999985, 49.70100629000008 ], [ -123.143640091999956, 49.70101490900003 ], [ -123.14341940099996, 49.701079012000065 ], [ -123.142976118999982, 49.701474903000076 ], [ -123.142760408999891, 49.703705209000091 ], [ -123.142956391, 49.704344694000063 ], [ -123.143151583999952, 49.704622405000087 ], [ -123.143306706999965, 49.705485501000069 ], [ -123.143556018999931, 49.705441296000068 ], [ -123.143625398999959, 49.705135085000059 ], [ -123.143373812999954, 49.704559703000058 ], [ -123.143372888, 49.704217899000071 ], [ -123.143455714999959, 49.704065502000049 ], [ -123.143662790999926, 49.704009989000063 ], [ -123.143720108999958, 49.704460009000108 ], [ -123.143902608999923, 49.704882995000062 ], [ -123.143876418999952, 49.705398273000064 ], [ -123.143876404999929, 49.705398319000082 ], [ -123.143876111999958, 49.705404293000086 ], [ -123.143873173, 49.705409025000058 ], [ -123.143873150999966, 49.705409099000065 ], [ -123.143737422999976, 49.705629304000105 ], [ -123.143322491999982, 49.7057376120001 ], [ -123.143296818999914, 49.706431106000068 ], [ -123.143437419999913, 49.707186001000125 ], [ -123.143438610999922, 49.707732493000044 ], [ -123.1434394, 49.708094589000069 ], [ -123.143718400999902, 49.708336712000111 ], [ -123.14402238699995, 49.708336694000117 ], [ -123.144035483999971, 49.708182891 ], [ -123.144403642999947, 49.707712506000043 ], [ -123.144464616999969, 49.707634603000031 ], [ -123.143964291999907, 49.70738249100004 ], [ -123.143839020999962, 49.706923899000095 ], [ -123.14418189899996, 49.705637892000041 ], [ -123.144204909999956, 49.704487106000059 ], [ -123.144204684999963, 49.704477891000046 ], [ -123.144190408999947, 49.703893208000082 ], [ -123.143783997999918, 49.702778001000098 ], [ -123.143795703999942, 49.702085888000049 ], [ -123.144390885999925, 49.701725609000029 ], [ -123.144662569999937, 49.701729119000099 ], [ -123.145597677999959, 49.701741195000061 ], [ -123.146193503999939, 49.701660011000072 ], [ -123.146870178999947, 49.701387736000122 ], [ -123.147786315999966, 49.70101909400011 ], [ -123.148840616999962, 49.700684500000158 ], [ -123.149975194999939, 49.700063512000057 ], [ -123.15091601099999, 49.69928869500005 ], [ -123.151414081000013, 49.699035196000054 ], [ -123.151456177999975, 49.698837297000054 ], [ -123.151786898999944, 49.69856811000011 ], [ -123.152574212999966, 49.697397397000081 ], [ -123.152905587999967, 49.697162397000106 ], [ -123.152961085999962, 49.696857594000036 ], [ -123.153761780999943, 49.696045797000053 ], [ -123.155350686999896, 49.694093203000065 ], [ -123.155280599999969, 49.693895313000048 ], [ -123.154835591999955, 49.693607593000053 ], [ -123.154821785999928, 49.693517806000024 ], [ -123.155538811999946, 49.69205090800002 ], [ -123.155797200999928, 49.690790505000045 ], [ -123.156834799999928, 49.690276299000068 ], [ -123.157499404999939, 49.689574206 ], [ -123.158771383, 49.688501793000036 ], [ -123.161700389999979, 49.685737388000085 ], [ -123.162211382999942, 49.6851962040001 ], [ -123.16219648299996, 49.684926995000062 ], [ -123.161995377999986, 49.684788037000096 ], [ -123.161995335000015, 49.68477526600001 ], [ -123.16241122299995, 49.684774684000047 ], [ -123.162409345999933, 49.684211493000056 ], [ -123.162699759999967, 49.683964769000049 ], [ -123.162824405999956, 49.683964594000052 ], [ -123.162824054999973, 49.683859172000069 ], [ -123.163017900999961, 49.683694484000107 ], [ -123.163239383999922, 49.683694173000106 ], [ -123.163238958999983, 49.683566978000037 ], [ -123.163569622999916, 49.683423871000066 ], [ -123.163707673999937, 49.683423676000089 ], [ -123.164897079999932, 49.683870198000086 ], [ -123.1649035, 49.683869730000055 ], [ -123.164904362999934, 49.684124876000048 ], [ -123.164663102999967, 49.684194995000055 ], [ -123.16437211499999, 49.684392893000023 ], [ -123.164345281999914, 49.684815894000053 ], [ -123.164491258999988, 49.684948794000093 ], [ -123.164491569999953, 49.685041584000025 ], [ -123.164593020999945, 49.68504144000012 ], [ -123.164956991999972, 49.685372803000121 ], [ -123.165742225999963, 49.685918141000066 ], [ -123.16574546799994, 49.686871549000081 ], [ -123.165739893999898, 49.686873914000103 ], [ -123.165739799, 49.686945105000092 ], [ -123.165745727999948, 49.686947935 ], [ -123.165747115999963, 49.687355880000105 ], [ -123.165646467999977, 49.687468466000034 ], [ -123.165019349999938, 49.687469362000101 ], [ -123.164986041999981, 49.688009081000075 ], [ -123.165156281999913, 49.688008839000105 ], [ -123.163114990999972, 49.68979208800009 ], [ -123.162257279999949, 49.690323297000106 ], [ -123.161358093999922, 49.691296108000124 ], [ -123.161263705999943, 49.691808810000076 ], [ -123.15860537699993, 49.692990893000079 ], [ -123.157844790999903, 49.693549215000054 ], [ -123.157765827999967, 49.693586512000074 ], [ -123.157473542999981, 49.693724568000029 ], [ -123.156792602999971, 49.694046189000119 ], [ -123.156557594999981, 49.694396600000104 ], [ -123.156752900999948, 49.694378094000108 ], [ -123.157009087999953, 49.694268416000135 ], [ -123.157637910999966, 49.693999201000061 ], [ -123.158052878999953, 49.693787982000117 ], [ -123.158787801999907, 49.693413895000056 ], [ -123.159022609999951, 49.693205909 ], [ -123.159478899999954, 49.693141808000043 ], [ -123.160352009999912, 49.692646209000031 ], [ -123.161347595, 49.69235710100002 ], [ -123.162052684999978, 49.691771796000133 ], [ -123.162770510999962, 49.690457191000036 ], [ -123.164497976999883, 49.689124197000076 ], [ -123.165419551999975, 49.688278299000054 ], [ -123.166582085999949, 49.688276633000051 ], [ -123.166579318999979, 49.687467128000051 ], [ -123.168242960000015, 49.687464723000112 ], [ -123.168238733999885, 49.686240339000101 ], [ -123.168362649999949, 49.686115367000156 ], [ -123.168654204999953, 49.686114943000064 ], [ -123.168653190999933, 49.685822348000073 ], [ -123.168854605999954, 49.685619211000123 ], [ -123.168868014999958, 49.685574958000082 ], [ -123.169068229999979, 49.685574666000079 ], [ -123.169067081999941, 49.685242954000046 ], [ -123.169336006999941, 49.684961186000052 ], [ -123.170785967999933, 49.683683291000087 ], [ -123.172804584999966, 49.683680296 ], [ -123.172807453999937, 49.684489801000069 ], [ -123.173639222999924, 49.684488557000044 ], [ -123.173642106, 49.685298063000126 ], [ -123.173226213999968, 49.685298686000074 ], [ -123.173229090999911, 49.686108190000027 ], [ -123.172397293999893, 49.686109432000066 ], [ -123.172402064, 49.68745860700006 ], [ -123.171986153999981, 49.687459225000119 ], [ -123.171990913999977, 49.688808400000063 ], [ -123.16741577399992, 49.688815103000067 ], [ -123.16741484799995, 49.688545269000066 ], [ -123.166998925999962, 49.688545869000023 ], [ -123.167002625999928, 49.689625210000045 ], [ -123.166170767, 49.689626406000059 ], [ -123.166179044999964, 49.692054920000082 ], [ -123.165763095999935, 49.692055517000036 ], [ -123.165764013999976, 49.692325351000143 ], [ -123.166179966999948, 49.692324755000094 ], [ -123.166180886999911, 49.692594590000063 ], [ -123.1665968399999, 49.692593992000049 ], [ -123.166602373999964, 49.694213001000023 ], [ -123.164938501, 49.694215383000035 ], [ -123.164939415, 49.694485218000068 ], [ -123.164523443999911, 49.694485809000057 ], [ -123.164527087999957, 49.69556514800005 ], [ -123.164111108999975, 49.695565738000077 ], [ -123.164114743999932, 49.696645076000046 ], [ -123.163698753999938, 49.69664566600008 ], [ -123.163705099999959, 49.698534508000094 ], [ -123.163389100999922, 49.698534955000113 ], [ -123.163279947999982, 49.700302152000077 ], [ -123.16136339699996, 49.700252260000084 ], [ -123.162114072999927, 49.699310412000081 ], [ -123.162201769999967, 49.699199649000086 ], [ -123.16340226899996, 49.697683923000092 ], [ -123.162425387999988, 49.697302102000052 ], [ -123.162320521999973, 49.697261120000043 ], [ -123.160914327999961, 49.696753125000043 ], [ -123.159625304999949, 49.696319381000087 ], [ -123.158719773999962, 49.695983402000138 ], [ -123.157376315999969, 49.697593801000103 ], [ -123.156165573999914, 49.697169796000054 ], [ -123.154836698999972, 49.69878779000009 ], [ -123.153813420999981, 49.700012818000069 ], [ -123.153490125999895, 49.700399910000051 ], [ -123.152496657, 49.701593649000088 ], [ -123.152392779999929, 49.701590942000095 ], [ -123.15087531599994, 49.701572882000058 ], [ -123.150241337999944, 49.702335861000037 ], [ -123.150038901999935, 49.702580793000038 ], [ -123.149968705999967, 49.702661784000085 ], [ -123.149958226999942, 49.702785725000069 ], [ -123.149541032999977, 49.703184377000177 ], [ -123.149165597000021, 49.703467997000075 ], [ -123.149044031999949, 49.703526949000086 ], [ -123.148476075999923, 49.703806420000049 ], [ -123.148229796999956, 49.703876005000097 ], [ -123.148084480999941, 49.703917055000019 ], [ -123.147589533999948, 49.70405687100007 ], [ -123.145500319999954, 49.70448917700007 ], [ -123.144845560999926, 49.704602533000106 ], [ -123.144817554999932, 49.704696326000054 ], [ -123.144916701999989, 49.704886143000053 ], [ -123.145667808999946, 49.705632238000092 ], [ -123.145802087999982, 49.705926498000061 ], [ -123.145815499999983, 49.706223883000092 ], [ -123.145753365999965, 49.706442788000103 ], [ -123.145508979999988, 49.706738827000081 ], [ -123.144693666999956, 49.707726501000117 ], [ -123.144683029999953, 49.707739428000082 ], [ -123.144442291999937, 49.708031007000073 ], [ -123.144208221999961, 49.708314571000074 ], [ -123.143903623999961, 49.708683552000082 ], [ -123.143443280999975, 49.709241156000061 ], [ -123.143362662999962, 49.70934714300008 ], [ -123.142126706999932, 49.709284428000046 ], [ -123.141972156999955, 49.708892601000102 ] ], [ [ -123.147922967999961, 49.700066467000092 ], [ -123.147949760999921, 49.699635050000083 ], [ -123.147900175999922, 49.699635112000088 ], [ -123.147900993999968, 49.699904947000086 ], [ -123.147484977999952, 49.699905477000108 ], [ -123.147485428999957, 49.700055019000104 ], [ -123.147922967999961, 49.700066467000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.586402966625464", "sL_AssetLoss": "40450", "sL_BldgLoss": "23720", "sL_StrLoss": "5000", "sL_NStrLoss": "18720", "sL_ContLoss": "16730", "geom_point": "0101000020E6100000D2A0708FC8CA5EC0EC1EB0DD83D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.167866078999978, 49.698798388000085 ], [ -123.169114099999931, 49.698796572000091 ], [ -123.169116350999943, 49.699444891000027 ], [ -123.169101008999959, 49.699478059000036 ], [ -123.169116639999928, 49.69952843500004 ], [ -123.169117494, 49.699774265 ], [ -123.169099590999934, 49.699875938000027 ], [ -123.167869797999941, 49.699877727000029 ], [ -123.167866078999978, 49.698798388000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17334751", "BldgCostT": "11955001", "sL_LossRatio": "0.880219098801157", "sL_AssetLoss": "58056", "sL_BldgLoss": "51102", "sL_StrLoss": "35387", "sL_NStrLoss": "15715", "sL_ContLoss": "6954", "geom_point": "0101000020E61000003F84020091C95EC059C1EB0A68D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.146479423999892, 49.692522809000117 ], [ -123.145870492000014, 49.692468227000056 ], [ -123.145478160999957, 49.692475120000097 ], [ -123.144798596999948, 49.692490012000114 ], [ -123.144812492, 49.690947411000153 ], [ -123.144365839999949, 49.690961201000057 ], [ -123.144326263999943, 49.690962417 ], [ -123.143857135999937, 49.691104070000058 ], [ -123.143458425999967, 49.691317757000043 ], [ -123.143006564999922, 49.691671367 ], [ -123.142879245999964, 49.69182700900005 ], [ -123.142899148999987, 49.690736803000092 ], [ -123.143713765999934, 49.690735795000116 ], [ -123.14371304, 49.690489476000039 ], [ -123.143798592999943, 49.690485917000032 ], [ -123.14429489099993, 49.690465236000094 ], [ -123.144884852999937, 49.690464500000147 ], [ -123.144914304999972, 49.689990655000081 ], [ -123.144979895999981, 49.689960199000041 ], [ -123.145715288999952, 49.689940205 ], [ -123.146296697999929, 49.689679608000048 ], [ -123.146900263999967, 49.689613466000033 ], [ -123.147440065999973, 49.689554315000095 ], [ -123.14754418699998, 49.689542907000025 ], [ -123.148291692999948, 49.689307899000013 ], [ -123.14853958899999, 49.689307909000078 ], [ -123.14872098799998, 49.689307890000102 ], [ -123.149165489999945, 49.689414706 ], [ -123.149512776, 49.689360595000011 ], [ -123.150052115999969, 49.689206801000083 ], [ -123.150523595999942, 49.688854991000021 ], [ -123.150592887999906, 49.688838329000092 ], [ -123.151311688999968, 49.68866559700006 ], [ -123.151404743999962, 49.688572126000103 ], [ -123.151886150999957, 49.688088433000104 ], [ -123.151948212999955, 49.688026100000073 ], [ -123.152168685999968, 49.687674304000033 ], [ -123.152420463999931, 49.687497576000041 ], [ -123.152501482999966, 49.687440691000091 ], [ -123.152971618999956, 49.687395196000061 ], [ -123.152976270999915, 49.687396186000065 ], [ -123.15295398799995, 49.687755761000055 ], [ -123.153537202999956, 49.68775499 ], [ -123.15354221399997, 49.687781091000026 ], [ -123.153475109999945, 49.68866269200003 ], [ -123.15358092299995, 49.688766603000069 ], [ -123.153768088000035, 49.6889504070001 ], [ -123.154058918999965, 49.689084297000058 ], [ -123.153314984999966, 49.690299090000082 ], [ -123.15337694899992, 49.691428703000071 ], [ -123.153388514999961, 49.691639305000088 ], [ -123.153678694999911, 49.691872894000063 ], [ -123.153663315999921, 49.692413087000055 ], [ -123.153054720999961, 49.692405213000015 ], [ -123.14731092, 49.692597313000142 ], [ -123.146479423999892, 49.692522809000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13087917", "BldgCostT": "8816667", "sL_LossRatio": "0.773597271001025", "sL_AssetLoss": "59509", "sL_BldgLoss": "46036", "sL_StrLoss": "26416", "sL_NStrLoss": "19620", "sL_ContLoss": "13473", "geom_point": "0101000020E61000001882D20656CD5EC0BE19D234EAD34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.203693324999961, 49.657578002000029 ], [ -123.203827557999915, 49.65537111400004 ], [ -123.206787050999978, 49.655447066000107 ], [ -123.206786392999959, 49.65529168300008 ], [ -123.206370758999952, 49.655292426000067 ], [ -123.206369616999936, 49.655022589000055 ], [ -123.205953982999958, 49.655023329000066 ], [ -123.205950568, 49.654213822000024 ], [ -123.206366192999951, 49.654213082000084 ], [ -123.206365053999946, 49.65394324500005 ], [ -123.206780675999966, 49.653942504000014 ], [ -123.206779532999974, 49.653672667000144 ], [ -123.207195153999933, 49.653671925000062 ], [ -123.207194008999977, 49.65340208900006 ], [ -123.207609627999943, 49.653401345000084 ], [ -123.207607332999956, 49.652861672000022 ], [ -123.209685407, 49.652857927000106 ], [ -123.209686564999942, 49.653127764000033 ], [ -123.210102181999929, 49.653127011000045 ], [ -123.21010450499989, 49.653666682000093 ], [ -123.210520125999935, 49.653665928000052 ], [ -123.210524782, 49.654745272000085 ], [ -123.21260293399996, 49.654741475000044 ], [ -123.212601759999956, 49.654471638000054 ], [ -123.213848642999963, 49.65446934200007 ], [ -123.213849824999926, 49.654739178000057 ], [ -123.214265456999954, 49.65473841000005 ], [ -123.214269010999971, 49.655547918000124 ], [ -123.213437735999946, 49.655549453000042 ], [ -123.213440095999943, 49.656089124000047 ], [ -123.213024455, 49.656089891000072 ], [ -123.213025632, 49.656359726000083 ], [ -123.212609987999897, 49.656360489000157 ], [ -123.212611163999924, 49.65663032600002 ], [ -123.211779870999976, 49.656631849000057 ], [ -123.211781040999981, 49.656901684000069 ], [ -123.210534094999929, 49.6569039580001 ], [ -123.210530603, 49.656094451000051 ], [ -123.210946243999942, 49.656093695000052 ], [ -123.210943911999919, 49.655554023000086 ], [ -123.20935791299992, 49.655556902000107 ], [ -123.209258178999931, 49.657199868000077 ], [ -123.20915781599993, 49.657183398000065 ], [ -123.208616503999949, 49.657167705000113 ], [ -123.208326292999942, 49.657265998000078 ], [ -123.207995286999974, 49.657563710000062 ], [ -123.207607479999922, 49.657698998000065 ], [ -123.20553101199998, 49.657982402000101 ], [ -123.20503200499995, 49.657938205000072 ], [ -123.203693324999961, 49.657578002000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.839040298159795", "sL_AssetLoss": "4293", "sL_BldgLoss": "3602", "sL_StrLoss": "1879", "sL_NStrLoss": "1723", "sL_ContLoss": "691", "geom_point": "0101000020E610000073E946F569C75EC0D8B649C12ADA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118787006999952, 49.702906658000117 ], [ -123.119201574999963, 49.702906232000018 ], [ -123.118855241999967, 49.703302135000101 ], [ -123.118494060999964, 49.703598640000074 ], [ -123.117019031999988, 49.704383287000027 ], [ -123.11700622599993, 49.704388402000056 ], [ -123.116331893999956, 49.704657668000102 ], [ -123.115688238999937, 49.704747754000024 ], [ -123.115195710999956, 49.70488235100003 ], [ -123.114827051999967, 49.705083069000111 ], [ -123.114616098999988, 49.705197925000078 ], [ -123.11460127, 49.70520599100012 ], [ -123.11432779899998, 49.705354865000039 ], [ -123.11426228, 49.705390540000082 ], [ -123.113886318999931, 49.705538516000018 ], [ -123.113385016999942, 49.705735798000084 ], [ -123.113383469999945, 49.705070758000083 ], [ -123.113799530999955, 49.705070349000039 ], [ -123.113798898999974, 49.704800515000059 ], [ -123.11421495799999, 49.704800105000132 ], [ -123.114214326999942, 49.704530270000156 ], [ -123.114630382999962, 49.704529859000054 ], [ -123.114629748999974, 49.704260025000117 ], [ -123.115877912999963, 49.704258782000068 ], [ -123.11587727099996, 49.70398894800006 ], [ -123.116709377999911, 49.70398811200009 ], [ -123.116708731999907, 49.703718278000053 ], [ -123.117956879999923, 49.703717013000073 ], [ -123.117956227999954, 49.703447178000026 ], [ -123.118372274999942, 49.703446754000048 ], [ -123.118371620999966, 49.703176919000036 ], [ -123.118787665999889, 49.703176493000115 ], [ -123.118787006999952, 49.702906658000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053333", "BldgCostT": "6933333", "sL_LossRatio": "0.809068429551877", "sL_AssetLoss": "79264", "sL_BldgLoss": "64130", "sL_StrLoss": "33890", "sL_NStrLoss": "30240", "sL_ContLoss": "15134", "geom_point": "0101000020E6100000E051DF0968CA5EC0E1AC2DE1F5D54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.160076025999928, 49.673661612000082 ], [ -123.16011414899999, 49.67304475 ], [ -123.159802616999926, 49.673036629000116 ], [ -123.159506144999966, 49.673028899000045 ], [ -123.159728335999915, 49.669433976000086 ], [ -123.165262909999967, 49.669578146000056 ], [ -123.165255889999969, 49.669691944000121 ], [ -123.165224858999949, 49.670195013000082 ], [ -123.165832827999964, 49.67021083300007 ], [ -123.165669142999903, 49.672864879000031 ], [ -123.165000316999979, 49.67331120700009 ], [ -123.163945311999925, 49.673762411000055 ], [ -123.160076025999928, 49.673661612000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.932814302191465", "sL_AssetLoss": "1387.2", "sL_BldgLoss": "1294", "sL_StrLoss": "976", "sL_NStrLoss": "318", "sL_ContLoss": "93.2", "geom_point": "0101000020E610000028E494CA25CB5EC0C353C024B2D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.174048498999952, 49.661281952000095 ], [ -123.174803688999958, 49.661280815000076 ], [ -123.174806588999942, 49.662090323000029 ], [ -123.17355950699995, 49.662092199 ], [ -123.17355805699999, 49.661684461 ], [ -123.173556626999982, 49.661282690000071 ], [ -123.174048498999952, 49.661281952000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8772500", "BldgCostT": "6050000", "sL_LossRatio": "0.92015723403356", "sL_AssetLoss": "23659", "sL_BldgLoss": "21770", "sL_StrLoss": "15750", "sL_NStrLoss": "6020", "sL_ContLoss": "1889", "geom_point": "0101000020E6100000C34E4E40D5C95EC0BD3188386BD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.151091292999965, 49.684784848000035 ], [ -123.151098638999883, 49.684666401000065 ], [ -123.150579782999941, 49.684652835000044 ], [ -123.150802727999917, 49.681057990000077 ], [ -123.154370537999938, 49.681151227000093 ], [ -123.156338672999979, 49.681202611000096 ], [ -123.156331341999973, 49.681321059000062 ], [ -123.156847983999981, 49.681334541000091 ], [ -123.156713711999942, 49.682720886 ], [ -123.156745252999926, 49.683029822000066 ], [ -123.156723620999941, 49.683379402000071 ], [ -123.155922385999958, 49.68491104800011 ], [ -123.151440097999924, 49.684793967000097 ], [ -123.151091292999965, 49.684784848000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16600750", "BldgCostT": "11185000", "sL_LossRatio": "0.713597281930384", "sL_AssetLoss": "288440", "sL_BldgLoss": "205830", "sL_StrLoss": "93200", "sL_NStrLoss": "112630", "sL_ContLoss": "82610", "geom_point": "0101000020E61000002ACC3980D7C85EC02EA5FCDE05D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.130539219999974, 49.69702850200008 ], [ -123.130648318999931, 49.69695750000006 ], [ -123.132084289999966, 49.69695587000011 ], [ -123.13208356, 49.696686036000102 ], [ -123.131251578999937, 49.696686981000035 ], [ -123.131251250999966, 49.696565092000114 ], [ -123.131355418999959, 49.696497295000022 ], [ -123.132019593999985, 49.695812201000088 ], [ -123.133114108999948, 49.69539778799999 ], [ -123.13333475099995, 49.695065586000069 ], [ -123.133743075999959, 49.695065116000109 ], [ -123.133745297999937, 49.695874621000023 ], [ -123.134161279999944, 49.695874140000079 ], [ -123.134159793999956, 49.69533447000007 ], [ -123.137071642999956, 49.695331059000104 ], [ -123.137072400999983, 49.695600894000073 ], [ -123.137488380999983, 49.695600402000089 ], [ -123.137488906999963, 49.695786653000013 ], [ -123.137593736, 49.695815063000062 ], [ -123.137708991999958, 49.695869976000061 ], [ -123.139985039999942, 49.69586724700013 ], [ -123.13998607399995, 49.696227446000066 ], [ -123.139995799999966, 49.696071266000111 ], [ -123.140401642999947, 49.696081915000057 ], [ -123.140400243999977, 49.69559690800002 ], [ -123.140816224999966, 49.695596404000106 ], [ -123.140808427999957, 49.692898052000082 ], [ -123.141224385999962, 49.692897546000061 ], [ -123.14122282299995, 49.692357876000074 ], [ -123.141638774999976, 49.692357367000106 ], [ -123.141635637999926, 49.691278027000045 ], [ -123.142467524999972, 49.691277007000089 ], [ -123.142466736999921, 49.691007171000095 ], [ -123.142882677999978, 49.691006659000045 ], [ -123.142881887, 49.690736823000073 ], [ -123.142899148999987, 49.690736803000092 ], [ -123.142879245999964, 49.69182700900005 ], [ -123.143006564999922, 49.691671367 ], [ -123.143458425999967, 49.691317757000043 ], [ -123.143857135999937, 49.691104070000058 ], [ -123.144326263999943, 49.690962417 ], [ -123.144365839999949, 49.690961201000057 ], [ -123.144812492, 49.690947411000153 ], [ -123.144798596999948, 49.692490012000114 ], [ -123.145478160999957, 49.692475120000097 ], [ -123.144742525999931, 49.693060432000046 ], [ -123.144207441, 49.694275796000113 ], [ -123.144011942999938, 49.694342816000116 ], [ -123.143304429999915, 49.694881022000089 ], [ -123.142821192, 49.69576364300007 ], [ -123.143450858999941, 49.696074982000091 ], [ -123.143396525999918, 49.696092808000074 ], [ -123.14285439799994, 49.6962616100001 ], [ -123.141903515999985, 49.696541120000049 ], [ -123.140828842999923, 49.696919806000089 ], [ -123.140681773, 49.696934257000073 ], [ -123.140026773000031, 49.697440732000125 ], [ -123.139674854999953, 49.697634912000034 ], [ -123.139368576999914, 49.697766312000077 ], [ -123.139114875999951, 49.697831707000027 ], [ -123.139106968999982, 49.697832495000121 ], [ -123.13911166299998, 49.697757150000051 ], [ -123.138742468999979, 49.697757593000034 ], [ -123.13874274399997, 49.6978542640001 ], [ -123.138490587999939, 49.697836909000081 ], [ -123.138438890999979, 49.697819249000112 ], [ -123.138164520999936, 49.697725665000107 ], [ -123.137621533999919, 49.697540438000054 ], [ -123.136344869999917, 49.697109036000036 ], [ -123.13356380299993, 49.697586842000085 ], [ -123.132367090999935, 49.697807393000097 ], [ -123.13121979899995, 49.698015788000134 ], [ -123.131432883999977, 49.698489405000075 ], [ -123.131380203999953, 49.698578108000042 ], [ -123.129887178999979, 49.699389402000094 ], [ -123.129673001999919, 49.699311793000042 ], [ -123.129064281999973, 49.698799793000063 ], [ -123.128642761000023, 49.698006478000089 ], [ -123.12948688799996, 49.697623813000106 ], [ -123.130539219999974, 49.69702850200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.915882174309141", "sL_AssetLoss": "3293", "sL_BldgLoss": "3016", "sL_StrLoss": "2180", "sL_NStrLoss": "836", "sL_ContLoss": "277", "geom_point": "0101000020E61000000D3B291F04CB5EC0A0230BFBEAD44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.172441541999959, 49.662633545000048 ], [ -123.173145728999941, 49.662632493000046 ], [ -123.173149558999953, 49.663711838000019 ], [ -123.172733849999972, 49.663712459000081 ], [ -123.172734806999969, 49.663982295000032 ], [ -123.172319095999981, 49.66398291400003 ], [ -123.172320048999921, 49.664252750000117 ], [ -123.171072911999914, 49.664254599000039 ], [ -123.171071137999945, 49.663748943000023 ], [ -123.171070072999939, 49.663445091000114 ], [ -123.17144618599994, 49.663444535000053 ], [ -123.171485778999937, 49.663444476000073 ], [ -123.171485665999981, 49.663412489000066 ], [ -123.17148293299999, 49.662634968000148 ], [ -123.172441541999959, 49.662633545000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.895962472776009", "sL_AssetLoss": "5969", "sL_BldgLoss": "5348", "sL_StrLoss": "3660", "sL_NStrLoss": "1688", "sL_ContLoss": "621", "geom_point": "0101000020E610000012E00DCCBECB5EC09709754735D44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.185804407999967, 49.656946281000032 ], [ -123.186426427999947, 49.656945282 ], [ -123.18642952, 49.657754790000062 ], [ -123.18559820599999, 49.657756126000102 ], [ -123.185599231999959, 49.658025961000064 ], [ -123.183936596999942, 49.658028615000035 ], [ -123.183937611999937, 49.658298450000068 ], [ -123.182690627999989, 49.658300424000039 ], [ -123.182691638, 49.658570261000108 ], [ -123.181860309999962, 49.658571570000049 ], [ -123.181861315999967, 49.658841406000057 ], [ -123.180614317999925, 49.658843358000055 ], [ -123.180612143999937, 49.658256203000079 ], [ -123.180611321999933, 49.658033849000049 ], [ -123.18118223, 49.658032956000042 ], [ -123.181442640999975, 49.658032549000055 ], [ -123.181442362000027, 49.657957911000047 ], [ -123.181441637999953, 49.657762713000096 ], [ -123.182161874999977, 49.657761582000091 ], [ -123.182688607000017, 49.657760752000051 ], [ -123.182688198, 49.657651338000086 ], [ -123.182687597999944, 49.65749091700016 ], [ -123.183459877999965, 49.657489695000073 ], [ -123.183934562000019, 49.657488942000114 ], [ -123.18393419099999, 49.657390338000027 ], [ -123.183933543999956, 49.657219105000102 ], [ -123.18475785899993, 49.657217793000093 ], [ -123.185180501, 49.657217118000119 ], [ -123.18518016899999, 49.657129324000074 ], [ -123.185179477999952, 49.656947282000083 ], [ -123.185804407999967, 49.656946281000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.852931953590467", "sL_AssetLoss": "3189", "sL_BldgLoss": "2720", "sL_StrLoss": "1630", "sL_NStrLoss": "1090", "sL_ContLoss": "469", "geom_point": "0101000020E6100000A9F502DC01CA5EC08213D920F6D64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.156204502999969, 49.678846815000021 ], [ -123.156985567999925, 49.678845759000048 ], [ -123.156988894999941, 49.679879552000024 ], [ -123.156984483999949, 49.679925108000141 ], [ -123.15574150399999, 49.679926785000063 ], [ -123.155739918, 49.6794306030001 ], [ -123.155738055999947, 49.678847443000038 ], [ -123.156204502999969, 49.678846815000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.809490579204466", "sL_AssetLoss": "30093", "sL_BldgLoss": "24360", "sL_StrLoss": "12670", "sL_NStrLoss": "11690", "sL_ContLoss": "5733", "geom_point": "0101000020E610000078561C180AC85EC021C033EB56D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.129172344999972, 49.696959155000101 ], [ -123.128414713000026, 49.6969599970001 ], [ -123.128350951999977, 49.696470249000065 ], [ -123.126865661999929, 49.697234959000085 ], [ -123.126365116999963, 49.697589029000021 ], [ -123.126037055999973, 49.697955747000016 ], [ -123.125716446999917, 49.698203840000104 ], [ -123.124150526999969, 49.699071692000075 ], [ -123.123817622999951, 49.69913940800005 ], [ -123.123425340999944, 49.699313596000131 ], [ -123.123146041000012, 49.699499770000038 ], [ -123.12279436099999, 49.699800140000107 ], [ -123.12243011599999, 49.699969669000055 ], [ -123.122315308999987, 49.700004440000093 ], [ -123.122102145999975, 49.700069027000019 ], [ -123.121735864999977, 49.700448221000094 ], [ -123.121460587999977, 49.701233089000077 ], [ -123.121330053999927, 49.701434893000133 ], [ -123.12105993699997, 49.701695106000102 ], [ -123.120301027999972, 49.702098125000141 ], [ -123.120033560999957, 49.702265991000061 ], [ -123.120032476999967, 49.701826031000074 ], [ -123.120448510999935, 49.701825600000063 ], [ -123.120447175999971, 49.701285930000033 ], [ -123.120863205999953, 49.701285496000075 ], [ -123.120861866999945, 49.700745826000116 ], [ -123.12127789199991, 49.700745391000048 ], [ -123.121275877999935, 49.699935886000063 ], [ -123.121691894999969, 49.699935450000055 ], [ -123.121690547999947, 49.69939578 ], [ -123.122522574999962, 49.699394903000019 ], [ -123.122521216999985, 49.698855232000021 ], [ -123.123353234999939, 49.698854349000044 ], [ -123.123352550999954, 49.698584514000039 ], [ -123.12376855799999, 49.698584071000013 ], [ -123.123767871, 49.698314235000019 ], [ -123.12459988099998, 49.698313343000109 ], [ -123.124599188999952, 49.698043509000073 ], [ -123.125015191999935, 49.698043060000025 ], [ -123.125014498999946, 49.697773225000098 ], [ -123.125430497999901, 49.697772775000033 ], [ -123.125429109999985, 49.697233105000059 ], [ -123.125845104999911, 49.697232653000093 ], [ -123.125844407999978, 49.696962818000081 ], [ -123.126260400999954, 49.696962365000104 ], [ -123.1262597, 49.696692530000043 ], [ -123.126675689999971, 49.696692077000051 ], [ -123.126674988999966, 49.696422241000064 ], [ -123.127506963999906, 49.696421327000088 ], [ -123.127506258, 49.696151493000073 ], [ -123.127922243999976, 49.696151035000092 ], [ -123.127921535999974, 49.69588119900002 ], [ -123.128337518999899, 49.69588073900016 ], [ -123.12833680899999, 49.695610904000041 ], [ -123.129168769, 49.69560998 ], [ -123.12916805499998, 49.695340143000095 ], [ -123.130081224999913, 49.6953391220001 ], [ -123.130415988999985, 49.695338745000072 ], [ -123.130418155999948, 49.696148250000107 ], [ -123.130002169999941, 49.696148718000082 ], [ -123.130002890999961, 49.696418554000076 ], [ -123.129586902, 49.696419019000118 ], [ -123.129587620000024, 49.696688855000112 ], [ -123.129171629999973, 49.696689320000132 ], [ -123.129172344999972, 49.696959155000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10055000", "BldgCostT": "6725000", "sL_LossRatio": "0.712437213365364", "sL_AssetLoss": "183160", "sL_BldgLoss": "130490", "sL_StrLoss": "50120", "sL_NStrLoss": "80370", "sL_ContLoss": "52670", "geom_point": "0101000020E61000009A920FEE8CC95EC09C6647CBFDD74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.144914304999972, 49.689990655000081 ], [ -123.144949681999933, 49.689421469000123 ], [ -123.144957677999969, 49.689421679000084 ], [ -123.144956061999949, 49.688878076000094 ], [ -123.144955963999948, 49.688845393000058 ], [ -123.145287270999944, 49.688844978000084 ], [ -123.145371887999943, 49.688844871000072 ], [ -123.145371862999937, 49.688836524000052 ], [ -123.145371083, 49.688575036000039 ], [ -123.145787003999928, 49.688574513000084 ], [ -123.145786195999932, 49.688304678000101 ], [ -123.146711574999955, 49.688303510000026 ], [ -123.146873418999988, 49.685697706000063 ], [ -123.147534989999954, 49.685715026000032 ], [ -123.147554007999958, 49.685408722000055 ], [ -123.150874164999919, 49.685495582000016 ], [ -123.153090466999984, 49.685553507000073 ], [ -123.152976270999915, 49.687396186000065 ], [ -123.152971618999956, 49.687395196000061 ], [ -123.152501482999966, 49.687440691000091 ], [ -123.152420463999931, 49.687497576000041 ], [ -123.152168685999968, 49.687674304000033 ], [ -123.151948212999955, 49.688026100000073 ], [ -123.151886150999957, 49.688088433000104 ], [ -123.151404743999962, 49.688572126000103 ], [ -123.151311688999968, 49.68866559700006 ], [ -123.150592887999906, 49.688838329000092 ], [ -123.150523595999942, 49.688854991000021 ], [ -123.150052115999969, 49.689206801000083 ], [ -123.149512776, 49.689360595000011 ], [ -123.149165489999945, 49.689414706 ], [ -123.14872098799998, 49.689307890000102 ], [ -123.14853958899999, 49.689307909000078 ], [ -123.148291692999948, 49.689307899000013 ], [ -123.14754418699998, 49.689542907000025 ], [ -123.147440065999973, 49.689554315000095 ], [ -123.146900263999967, 49.689613466000033 ], [ -123.146296697999929, 49.689679608000048 ], [ -123.14601991499994, 49.689544298000094 ], [ -123.145713880999949, 49.689544294000065 ], [ -123.145394998999947, 49.689725201000044 ], [ -123.145159386999964, 49.689760795000048 ], [ -123.144979895999981, 49.689960199000041 ], [ -123.144914304999972, 49.689990655000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.759139784946237", "sL_AssetLoss": "9300", "sL_BldgLoss": "7060", "sL_StrLoss": "3120", "sL_NStrLoss": "3940", "sL_ContLoss": "2240", "geom_point": "0101000020E6100000A701A4B2B8C85EC0018DEB42A0D84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13659376, 49.691823755000023 ], [ -123.137061775999953, 49.691823203000062 ], [ -123.137064811999949, 49.692902543000102 ], [ -123.135400982, 49.692904500000104 ], [ -123.135399574999937, 49.692397862000121 ], [ -123.13539873299996, 49.692094994000051 ], [ -123.135814683999953, 49.692094508000061 ], [ -123.135813932999952, 49.691824672000038 ], [ -123.13659376, 49.691823755000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53553583", "BldgCostT": "34753333", "sL_LossRatio": "0.771560841582295", "sL_AssetLoss": "265690", "sL_BldgLoss": "204996", "sL_StrLoss": "109610", "sL_NStrLoss": "95386", "sL_ContLoss": "60694", "geom_point": "0101000020E61000001E5E9D84CEC85EC04146BC4C7FD94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134066318999942, 49.698467807000043 ], [ -123.133805682999977, 49.698132413000067 ], [ -123.13356380299993, 49.697586842000085 ], [ -123.136344869999917, 49.697109036000036 ], [ -123.137621533999919, 49.697540438000054 ], [ -123.138164520999936, 49.697725665000107 ], [ -123.138438890999979, 49.697819249000112 ], [ -123.138490587999939, 49.697836909000081 ], [ -123.13874274399997, 49.6978542640001 ], [ -123.138743236999957, 49.698027428000088 ], [ -123.138327235999952, 49.698027926000087 ], [ -123.138328002999955, 49.698297761000092 ], [ -123.137982931999929, 49.698298173000083 ], [ -123.137912246999974, 49.698386504000112 ], [ -123.137912446999977, 49.698456747000058 ], [ -123.138816949000017, 49.698480493000027 ], [ -123.138829119999968, 49.698285143000106 ], [ -123.139078364999989, 49.698291685000115 ], [ -123.139106968999982, 49.697832495000121 ], [ -123.139114875999951, 49.697831707000027 ], [ -123.139368576999914, 49.697766312000077 ], [ -123.139674854999953, 49.697634912000034 ], [ -123.140026773000031, 49.697440732000125 ], [ -123.140681773, 49.696934257000073 ], [ -123.140828842999923, 49.696919806000089 ], [ -123.141903515999985, 49.696541120000049 ], [ -123.14285439799994, 49.6962616100001 ], [ -123.143396525999918, 49.696092808000074 ], [ -123.143450858999941, 49.696074982000091 ], [ -123.143652098, 49.696073874 ], [ -123.143818199999927, 49.6961232210001 ], [ -123.143732188999962, 49.696235294000061 ], [ -123.14366586899996, 49.696295882000115 ], [ -123.143232301999959, 49.69669206400004 ], [ -123.142990466999919, 49.696835162000049 ], [ -123.142529335999981, 49.697321321000103 ], [ -123.142294503999949, 49.697545137000056 ], [ -123.142229901999954, 49.697637703000105 ], [ -123.142063086999912, 49.697876631000064 ], [ -123.14173865799998, 49.698589151000078 ], [ -123.14157662199996, 49.698853240000062 ], [ -123.141556538999964, 49.698885926000102 ], [ -123.141434815999943, 49.699007685000026 ], [ -123.141382008, 49.699060476000035 ], [ -123.141180838999929, 49.699223330000123 ], [ -123.140718978999956, 49.699597147000048 ], [ -123.140706810000026, 49.69960701300009 ], [ -123.140595750999964, 49.69969689800007 ], [ -123.140472467999956, 49.699796638000095 ], [ -123.140228343999922, 49.699994278000105 ], [ -123.140212373999972, 49.700016127000033 ], [ -123.140047886, 49.700241586000125 ], [ -123.139978934999988, 49.700435994000081 ], [ -123.138124037999958, 49.700825700000038 ], [ -123.138066833999972, 49.700858716000042 ], [ -123.137433530999886, 49.701224234000051 ], [ -123.137276703999973, 49.701314728000078 ], [ -123.137266505999946, 49.701325019000073 ], [ -123.136567332, 49.70157573400013 ], [ -123.135868610999921, 49.701796717000036 ], [ -123.135086210999987, 49.70198209800003 ], [ -123.134273575999927, 49.702027502000078 ], [ -123.134230297999949, 49.702029589000119 ], [ -123.13402549199999, 49.702015808000098 ], [ -123.133667677999981, 49.701991731000057 ], [ -123.13322419499994, 49.701894210000034 ], [ -123.132695992999956, 49.701691217000075 ], [ -123.132312003999942, 49.701199509000091 ], [ -123.133112872999931, 49.70081099800008 ], [ -123.135061816999936, 49.700182705000024 ], [ -123.13510570699998, 49.700162262000028 ], [ -123.135418735999949, 49.700016589000022 ], [ -123.135457399999922, 49.699998604 ], [ -123.135734708999934, 49.699777306000101 ], [ -123.136075094999967, 49.699390208000096 ], [ -123.134992598999986, 49.699001597000063 ], [ -123.13473628399997, 49.698909414000056 ], [ -123.134206902999949, 49.69859299500007 ], [ -123.134066318999942, 49.698467807000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64394500", "BldgCostT": "44410000", "sL_LossRatio": "0.795726084195405", "sL_AssetLoss": "625141", "sL_BldgLoss": "497441", "sL_StrLoss": "248251", "sL_NStrLoss": "249190", "sL_ContLoss": "127700", "geom_point": "0101000020E6100000666E3AD978C85EC0F19C6F3C86D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.13111659, 49.69984489700002 ], [ -123.130970175999934, 49.699791497000085 ], [ -123.130481322999955, 49.700035102000072 ], [ -123.12971771, 49.700415590000063 ], [ -123.128900760999926, 49.699995074000086 ], [ -123.128740922999953, 49.699912795000031 ], [ -123.128026489999982, 49.699295392000053 ], [ -123.129064281999973, 49.698799793000063 ], [ -123.129673001999919, 49.699311793000042 ], [ -123.129887178999979, 49.699389402000094 ], [ -123.131380203999953, 49.698578108000042 ], [ -123.131432883999977, 49.698489405000075 ], [ -123.13121979899995, 49.698015788000134 ], [ -123.132367090999935, 49.697807393000097 ], [ -123.13356380299993, 49.697586842000085 ], [ -123.133805682999977, 49.698132413000067 ], [ -123.134066318999942, 49.698467807000043 ], [ -123.134206902999949, 49.69859299500007 ], [ -123.13473628399997, 49.698909414000056 ], [ -123.134992598999986, 49.699001597000063 ], [ -123.136075094999967, 49.699390208000096 ], [ -123.135734708999934, 49.699777306000101 ], [ -123.135457399999922, 49.699998604 ], [ -123.135418735999949, 49.700016589000022 ], [ -123.13510570699998, 49.700162262000028 ], [ -123.135061816999936, 49.700182705000024 ], [ -123.133112872999931, 49.70081099800008 ], [ -123.132312003999942, 49.701199509000091 ], [ -123.132229402999954, 49.701057804000058 ], [ -123.131586518999967, 49.700536801000062 ], [ -123.131494614999951, 49.700453398000086 ], [ -123.131223192999926, 49.700016509000065 ], [ -123.13111659, 49.69984489700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71013750", "BldgCostT": "48975000", "sL_LossRatio": "0.829895462922254", "sL_AssetLoss": "438983", "sL_BldgLoss": "364310", "sL_StrLoss": "203970", "sL_NStrLoss": "160340", "sL_ContLoss": "74673", "geom_point": "0101000020E61000005F931C4D41C85EC0D951A414D7D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.127860875999929, 49.703494799000055 ], [ -123.127562612999967, 49.703053898000121 ], [ -123.12647511699997, 49.703322289000077 ], [ -123.126051005999955, 49.702563985000083 ], [ -123.125629114, 49.701814792000079 ], [ -123.127952400999945, 49.701255804 ], [ -123.128425109999966, 49.70101619000009 ], [ -123.12971771, 49.700415590000063 ], [ -123.130481322999955, 49.700035102000072 ], [ -123.130970175999934, 49.699791497000085 ], [ -123.13111659, 49.69984489700002 ], [ -123.131223192999926, 49.700016509000065 ], [ -123.131494614999951, 49.700453398000086 ], [ -123.131586518999967, 49.700536801000062 ], [ -123.132229402999954, 49.701057804000058 ], [ -123.132312003999942, 49.701199509000091 ], [ -123.13040023399995, 49.702134632000117 ], [ -123.129954399, 49.702352682000061 ], [ -123.130232485999926, 49.702674203000122 ], [ -123.130244502999957, 49.702814882000098 ], [ -123.130040076999961, 49.703201095000075 ], [ -123.12990751299999, 49.70332629600005 ], [ -123.129737401999975, 49.703384890000102 ], [ -123.128235486999984, 49.703603694000073 ], [ -123.12802911599999, 49.703578405000044 ], [ -123.127860875999929, 49.703494799000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84382833", "BldgCostT": "57723333", "sL_LossRatio": "0.815937159928059", "sL_AssetLoss": "526543", "sL_BldgLoss": "429626", "sL_StrLoss": "240052", "sL_NStrLoss": "189574", "sL_ContLoss": "96917", "geom_point": "0101000020E6100000B2CB43E8D8C75EC0C1D9D6E4E3D94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.114219526999989, 49.706747894000038 ], [ -123.114218755999943, 49.70641911400002 ], [ -123.114097558999958, 49.706419234000101 ], [ -123.113886318999931, 49.705538516000018 ], [ -123.11426228, 49.705390540000082 ], [ -123.11432779899998, 49.705354865000039 ], [ -123.11460127, 49.70520599100012 ], [ -123.114616098999988, 49.705197925000078 ], [ -123.114827051999967, 49.705083069000111 ], [ -123.115195710999956, 49.70488235100003 ], [ -123.115688238999937, 49.704747754000024 ], [ -123.116331893999956, 49.704657668000102 ], [ -123.11700622599993, 49.704388402000056 ], [ -123.117019031999988, 49.704383287000027 ], [ -123.118494060999964, 49.703598640000074 ], [ -123.118855241999967, 49.703302135000101 ], [ -123.119201574999963, 49.702906232000018 ], [ -123.119619092999955, 49.702905801000078 ], [ -123.119618430999935, 49.702635966000088 ], [ -123.120034470999954, 49.702635536000059 ], [ -123.120033560999957, 49.702265991000061 ], [ -123.120301027999972, 49.702098125000141 ], [ -123.12105993699997, 49.701695106000102 ], [ -123.121330053999927, 49.701434893000133 ], [ -123.121460587999977, 49.701233089000077 ], [ -123.121735864999977, 49.700448221000094 ], [ -123.122102145999975, 49.700069027000019 ], [ -123.122315308999987, 49.700004440000093 ], [ -123.12243011599999, 49.699969669000055 ], [ -123.12279436099999, 49.699800140000107 ], [ -123.123146041000012, 49.699499770000038 ], [ -123.123425340999944, 49.699313596000131 ], [ -123.123817622999951, 49.69913940800005 ], [ -123.124150526999969, 49.699071692000075 ], [ -123.125716446999917, 49.698203840000104 ], [ -123.126037055999973, 49.697955747000016 ], [ -123.126365116999963, 49.697589029000021 ], [ -123.126865661999929, 49.697234959000085 ], [ -123.128350951999977, 49.696470249000065 ], [ -123.128414713000026, 49.6969599970001 ], [ -123.128340360999957, 49.696960080000075 ], [ -123.128341070999937, 49.697229915000015 ], [ -123.128449840999977, 49.697229794000052 ], [ -123.12849032299999, 49.697540732000071 ], [ -123.127836218, 49.697796197000088 ], [ -123.127560489999937, 49.697994096000095 ], [ -123.126591105999935, 49.698247612000102 ], [ -123.125800596, 49.698760307000043 ], [ -123.12515040999989, 49.699408409000064 ], [ -123.128434480999928, 49.698100896000064 ], [ -123.128642761000023, 49.698006478000089 ], [ -123.129064281999973, 49.698799793000063 ], [ -123.128026489999982, 49.699295392000053 ], [ -123.128740922999953, 49.699912795000031 ], [ -123.128900760999926, 49.699995074000086 ], [ -123.12971771, 49.700415590000063 ], [ -123.128425109999966, 49.70101619000009 ], [ -123.127952400999945, 49.701255804 ], [ -123.125629114, 49.701814792000079 ], [ -123.126051005999955, 49.702563985000083 ], [ -123.12647511699997, 49.703322289000077 ], [ -123.125308719, 49.703610197000074 ], [ -123.124592065999934, 49.703787219000034 ], [ -123.123474596999927, 49.704063194000113 ], [ -123.122329391999955, 49.704343607000062 ], [ -123.121454887999946, 49.704687715000041 ], [ -123.119784899999971, 49.705440282000076 ], [ -123.118493284999929, 49.706020103000057 ], [ -123.118458995, 49.70603057300012 ], [ -123.118073283999934, 49.70614850300008 ], [ -123.117561192999929, 49.706242106000111 ], [ -123.116951300999972, 49.706279901000123 ], [ -123.116600476999935, 49.706343594000032 ], [ -123.116292814999909, 49.706450703 ], [ -123.116264346999955, 49.706469375000061 ], [ -123.116042500999953, 49.706615092000078 ], [ -123.115857494999958, 49.706800987000157 ], [ -123.115747518999939, 49.707027596000053 ], [ -123.115212598, 49.706928590000054 ], [ -123.114613541999944, 49.706817686000093 ], [ -123.114465586999984, 49.706790296000051 ], [ -123.114219526999989, 49.706747894000038 ] ], [ [ -123.121552814999973, 49.702614300000093 ], [ -123.12189808, 49.702110099000045 ], [ -123.121565176000018, 49.702138593 ], [ -123.121123387999901, 49.702444810000046 ], [ -123.121026878999913, 49.703118400000065 ], [ -123.121552814999973, 49.702614300000093 ] ], [ [ -123.123682092999957, 49.700220212000055 ], [ -123.123419195999958, 49.700138996000092 ], [ -123.123127303999965, 49.700149 ], [ -123.122685314999984, 49.700392495000081 ], [ -123.122436798999956, 49.700742790000056 ], [ -123.122534682999941, 49.701336700000105 ], [ -123.123682092999957, 49.700220212000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102173833", "BldgCostT": "66253333", "sL_LossRatio": "0.785648588645734", "sL_AssetLoss": "630600", "sL_BldgLoss": "495430", "sL_StrLoss": "277830", "sL_NStrLoss": "217600", "sL_ContLoss": "135170", "geom_point": "0101000020E6100000F61A8A543BC85EC093D4CFBC18DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.120589912999918, 49.705940400000031 ], [ -123.120138452999953, 49.705723383000127 ], [ -123.120102478999982, 49.705706101000068 ], [ -123.119784899999971, 49.705440282000076 ], [ -123.121454887999946, 49.704687715000041 ], [ -123.122329391999955, 49.704343607000062 ], [ -123.123474596999927, 49.704063194000113 ], [ -123.124592065999934, 49.703787219000034 ], [ -123.125308719, 49.703610197000074 ], [ -123.12647511699997, 49.703322289000077 ], [ -123.127562612999967, 49.703053898000121 ], [ -123.127860875999929, 49.703494799000055 ], [ -123.12802911599999, 49.703578405000044 ], [ -123.128235486999984, 49.703603694000073 ], [ -123.129737401999975, 49.703384890000102 ], [ -123.12990751299999, 49.70332629600005 ], [ -123.130040076999961, 49.703201095000075 ], [ -123.130244502999957, 49.702814882000098 ], [ -123.130232485999926, 49.702674203000122 ], [ -123.129954399, 49.702352682000061 ], [ -123.13040023399995, 49.702134632000117 ], [ -123.132312003999942, 49.701199509000091 ], [ -123.132695992999956, 49.701691217000075 ], [ -123.13322419499994, 49.701894210000034 ], [ -123.133667677999981, 49.701991731000057 ], [ -123.13402549199999, 49.702015808000098 ], [ -123.134230297999949, 49.702029589000119 ], [ -123.134273575999927, 49.702027502000078 ], [ -123.135086210999987, 49.70198209800003 ], [ -123.135868610999921, 49.701796717000036 ], [ -123.136567332, 49.70157573400013 ], [ -123.137266505999946, 49.701325019000073 ], [ -123.137179032999981, 49.70141298500009 ], [ -123.137172644999936, 49.701469139000118 ], [ -123.13716685299994, 49.701519797000103 ], [ -123.137209088999938, 49.701620828000074 ], [ -123.137440189999978, 49.701784412000066 ], [ -123.136035517, 49.702515339000122 ], [ -123.13594612899999, 49.70261381600001 ], [ -123.135943366999939, 49.702680366000067 ], [ -123.136025312999948, 49.702745519000089 ], [ -123.136595254999975, 49.703013422000033 ], [ -123.136666899999952, 49.703087324000137 ], [ -123.136734014999917, 49.703390634000115 ], [ -123.135298236999958, 49.703468730000054 ], [ -123.13384861099992, 49.70355955800008 ], [ -123.133812119999973, 49.703718897000016 ], [ -123.132868015000028, 49.703712085000127 ], [ -123.132452692999962, 49.703766897 ], [ -123.132093278999918, 49.703903294000106 ], [ -123.130945212999933, 49.704520311000032 ], [ -123.130632218999949, 49.704646103000051 ], [ -123.13030632, 49.704711398000057 ], [ -123.127986200999914, 49.704994990000046 ], [ -123.12717750399996, 49.705218590000065 ], [ -123.125248101999944, 49.705818502000056 ], [ -123.124309197999949, 49.706040727000044 ], [ -123.12416689399997, 49.706074404000034 ], [ -123.123669753999977, 49.706139573000016 ], [ -123.123371680999952, 49.706139891000056 ], [ -123.123370996999967, 49.705870056000023 ], [ -123.121706723999964, 49.705871818000077 ], [ -123.121707353999938, 49.706123813000069 ], [ -123.12120459599997, 49.706091710000052 ], [ -123.120589912999918, 49.705940400000031 ] ], [ [ -123.130023048999945, 49.703973932000032 ], [ -123.130855154999949, 49.703972995000051 ], [ -123.130853704999964, 49.703433325000063 ], [ -123.130437656999902, 49.703433795000088 ], [ -123.130438379999973, 49.703703629000096 ], [ -123.130022330000017, 49.70370409700007 ], [ -123.130023048999945, 49.703973932000032 ], [ -123.128774893999918, 49.703975326000091 ], [ -123.128775606999952, 49.704245161000124 ], [ -123.130023769999966, 49.704243766000104 ], [ -123.130023048999945, 49.703973932000032 ] ], [ [ -123.132712415999919, 49.703161375000064 ], [ -123.132762963999966, 49.702351809000071 ], [ -123.132514959000019, 49.702352094000027 ], [ -123.132517160999939, 49.703161598000108 ], [ -123.132712415999919, 49.703161375000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18119084", "BldgCostT": "11968334", "sL_LossRatio": "0.76020860622727", "sL_AssetLoss": "122911", "sL_BldgLoss": "93438", "sL_StrLoss": "57388", "sL_NStrLoss": "36050", "sL_ContLoss": "29473", "geom_point": "0101000020E610000092386DBE38C75EC05002D51EFADC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11135868099997, 49.729357864000058 ], [ -123.111357445999943, 49.728818196000113 ], [ -123.110524916999907, 49.728818994000108 ], [ -123.11052369199993, 49.728279326000099 ], [ -123.11010743099996, 49.728279722000096 ], [ -123.110106820999974, 49.728009889000113 ], [ -123.109690561999969, 49.728010284000064 ], [ -123.109688130999984, 49.726930947000042 ], [ -123.110104379999925, 49.726930553000052 ], [ -123.110103768999963, 49.726660720000012 ], [ -123.110520014999977, 49.72666032300004 ], [ -123.110519402999927, 49.726390489000075 ], [ -123.108854426, 49.726392066000109 ], [ -123.108851410999961, 49.725042896000048 ], [ -123.109267642999924, 49.725042504000086 ], [ -123.10926703799997, 49.724772670000092 ], [ -123.110515726999921, 49.724771486000058 ], [ -123.110514501999944, 49.724231817000039 ], [ -123.111346953999956, 49.724231020000062 ], [ -123.11134633599994, 49.723961186000061 ], [ -123.112178782999976, 49.72396038400008 ], [ -123.112178160999974, 49.723690549 ], [ -123.113010600999971, 49.723689740000104 ], [ -123.113009974999912, 49.723419906000053 ], [ -123.115091067999955, 49.723417858000069 ], [ -123.115093619999982, 49.724497193000069 ], [ -123.11467739299999, 49.724497606000057 ], [ -123.114679299999978, 49.725307108000095 ], [ -123.116344237999982, 49.725305447000032 ], [ -123.116347461999979, 49.726654617000079 ], [ -123.117179954, 49.726653777000102 ], [ -123.117181901999942, 49.727463278000116 ], [ -123.115933144999957, 49.727464536000113 ], [ -123.115933785999943, 49.727734370000064 ], [ -123.115517529999977, 49.727734786000049 ], [ -123.11551817199998, 49.728004619000068 ], [ -123.115101914, 49.728005033000088 ], [ -123.115103264999931, 49.728576407000055 ], [ -123.114899837999985, 49.728814737000064 ], [ -123.11343876899997, 49.728816177000077 ], [ -123.113439399999933, 49.729086011000135 ], [ -123.112606864999989, 49.729086822000092 ], [ -123.112607488999984, 49.729356656000057 ], [ -123.11135868099997, 49.729357864000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11620000", "BldgCostT": "7750000", "sL_LossRatio": "0.903917880710255", "sL_AssetLoss": "31369", "sL_BldgLoss": "28355", "sL_StrLoss": "22670", "sL_NStrLoss": "5685", "sL_ContLoss": "3014", "geom_point": "0101000020E6100000D04D72F2A8C85EC09F50789E32DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124620584999931, 49.706408390000021 ], [ -123.124619892999959, 49.706138555000088 ], [ -123.123669753999977, 49.706139573000016 ], [ -123.12416689399997, 49.706074404000034 ], [ -123.124309197999949, 49.706040727000044 ], [ -123.125248101999944, 49.705818502000056 ], [ -123.12717750399996, 49.705218590000065 ], [ -123.127986200999914, 49.704994990000046 ], [ -123.13030632, 49.704711398000057 ], [ -123.130632218999949, 49.704646103000051 ], [ -123.130945212999933, 49.704520311000032 ], [ -123.132093278999918, 49.703903294000106 ], [ -123.132452692999962, 49.703766897 ], [ -123.132868015000028, 49.703712085000127 ], [ -123.133812119999973, 49.703718897000016 ], [ -123.13384861099992, 49.70355955800008 ], [ -123.135298236999958, 49.703468730000054 ], [ -123.136734014999917, 49.703390634000115 ], [ -123.138081254999946, 49.703403513000069 ], [ -123.139471203999932, 49.703421992000123 ], [ -123.139466851999913, 49.703773651000091 ], [ -123.139459213999899, 49.704393796000041 ], [ -123.140268412999902, 49.704428590000148 ], [ -123.140207709999956, 49.704111913000141 ], [ -123.140188391999985, 49.703709012000061 ], [ -123.141034574999978, 49.703657671000059 ], [ -123.141428522999945, 49.704160162000036 ], [ -123.14166474699995, 49.70477333700007 ], [ -123.141684780999952, 49.705088945000043 ], [ -123.141224177999973, 49.705076868000084 ], [ -123.141191254999953, 49.705605676000125 ], [ -123.1404284799999, 49.705585671000087 ], [ -123.140425625999953, 49.70563149500007 ], [ -123.13488678799996, 49.705486070000077 ], [ -123.134918749999912, 49.704973818000056 ], [ -123.133344364, 49.704932430000056 ], [ -123.133354035999972, 49.704777508000063 ], [ -123.132852455999952, 49.704764318000102 ], [ -123.132873404999913, 49.704428818000082 ], [ -123.132633668999958, 49.70442251300004 ], [ -123.132645016999945, 49.704240794000057 ], [ -123.13252009699994, 49.704240938000041 ], [ -123.132520829999976, 49.704510772000035 ], [ -123.13168871799999, 49.704511721000088 ], [ -123.131689445999939, 49.704781555000096 ], [ -123.130441268999931, 49.704782969000107 ], [ -123.13044271399994, 49.705322638000048 ], [ -123.128778458999975, 49.705324500000131 ], [ -123.128779171999923, 49.705594334000097 ], [ -123.127530975999946, 49.705595716000047 ], [ -123.127531679999947, 49.705865550000105 ], [ -123.12669954499998, 49.705866464000088 ], [ -123.126700247, 49.706136298000033 ], [ -123.125868105, 49.706137205000061 ], [ -123.125868802999932, 49.706407041000034 ], [ -123.124620584999931, 49.706408390000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71079085", "BldgCostT": "47603335", "sL_LossRatio": "0.790211908119517", "sL_AssetLoss": "422636", "sL_BldgLoss": "333972", "sL_StrLoss": "193618", "sL_NStrLoss": "140354", "sL_ContLoss": "88664", "geom_point": "0101000020E6100000F523EAAAA5C85EC011068E997EDC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.12567979, 49.727327108000118 ], [ -123.124804997999931, 49.727030898000052 ], [ -123.12425688799999, 49.726940822000131 ], [ -123.124255448999975, 49.726376570000042 ], [ -123.124671692000021, 49.726376122000048 ], [ -123.124671001999985, 49.726106289000022 ], [ -123.127168449999942, 49.726103574000049 ], [ -123.127164924999931, 49.724754405000063 ], [ -123.128413612999935, 49.724753028000059 ], [ -123.128412901999965, 49.724483194000079 ], [ -123.12966158499999, 49.724481803000103 ], [ -123.129662301999943, 49.724751636000121 ], [ -123.130078532999931, 49.72475117000004 ], [ -123.130077090999976, 49.724211502000088 ], [ -123.132574439999971, 49.724208671000113 ], [ -123.132575175999989, 49.724478505000036 ], [ -123.132991402999963, 49.724478028000071 ], [ -123.132992139999928, 49.724747862000093 ], [ -123.13340836899998, 49.724747384000096 ], [ -123.133409848000014, 49.725287050000112 ], [ -123.133826083, 49.725286570000094 ], [ -123.13382459799999, 49.724746903000032 ], [ -123.13424082799996, 49.724746421000098 ], [ -123.134240084999959, 49.72447658800013 ], [ -123.134656310999972, 49.724476104000104 ], [ -123.134655564999903, 49.724206271000092 ], [ -123.13507178899999, 49.724205786000041 ], [ -123.135069544999951, 49.723396285000049 ], [ -123.13606695, 49.723395117000059 ], [ -123.136318198999916, 49.723394823000078 ], [ -123.136325754999959, 49.72609315900015 ], [ -123.135493271999934, 49.726094136000036 ], [ -123.135494022999978, 49.726363970000087 ], [ -123.135910267, 49.726363483000071 ], [ -123.13591102099997, 49.726633315000107 ], [ -123.136327265, 49.726632826000078 ], [ -123.136326508999943, 49.726362993000087 ], [ -123.137070191999953, 49.726362115000029 ], [ -123.137224603, 49.723886572000083 ], [ -123.140482055999925, 49.723972025000101 ], [ -123.140478042, 49.722580347000125 ], [ -123.140894252999914, 49.722579842000115 ], [ -123.140888123999929, 49.720462473000111 ], [ -123.140888005999926, 49.720421171000105 ], [ -123.140040162999952, 49.720422201000041 ], [ -123.139807956999945, 49.720422482000039 ], [ -123.139805184999929, 49.720466976000068 ], [ -123.13980016299999, 49.7205475700001 ], [ -123.138807321999963, 49.720521527000088 ], [ -123.138807812999971, 49.720693519000051 ], [ -123.138391617999943, 49.720694017 ], [ -123.138392384999932, 49.720963850000025 ], [ -123.137741287999958, 49.720964626000111 ], [ -123.137673063999912, 49.722058718000042 ], [ -123.136796612999959, 49.722035712000043 ], [ -123.132132253999941, 49.721913157000095 ], [ -123.132234361999977, 49.720278815000079 ], [ -123.13048949799996, 49.720232918000136 ], [ -123.130714186999967, 49.716638294000042 ], [ -123.131515333, 49.716659371000077 ], [ -123.131516454999911, 49.716641414000051 ], [ -123.134894030999959, 49.716730209000104 ], [ -123.134939652999904, 49.715999196000048 ], [ -123.137546155999971, 49.716067648000013 ], [ -123.137545507999917, 49.715837996000126 ], [ -123.138377814999956, 49.715837005000061 ], [ -123.138377048, 49.715567171 ], [ -123.139209349999973, 49.71556617300012 ], [ -123.139208579999917, 49.715296339000105 ], [ -123.140040875999929, 49.71529533500005 ], [ -123.1400401, 49.715025501000071 ], [ -123.140426321999897, 49.715025034000043 ], [ -123.140456246000028, 49.715024998000032 ], [ -123.140456085999929, 49.714968812000031 ], [ -123.140452355999955, 49.713675827000017 ], [ -123.141050851, 49.713675100000067 ], [ -123.141700758999946, 49.713674306000065 ], [ -123.141705470999938, 49.71529331100006 ], [ -123.141852184999934, 49.71529313100006 ], [ -123.141799254999938, 49.715886976000114 ], [ -123.141772132999989, 49.716102734000053 ], [ -123.141707826999976, 49.716102814000038 ], [ -123.141709280999933, 49.716602705000071 ], [ -123.141707971999963, 49.71661311200009 ], [ -123.141643525999939, 49.717126064000126 ], [ -123.14163646799993, 49.71718224100011 ], [ -123.141294801999891, 49.717182658000091 ], [ -123.141295585999984, 49.717452492000106 ], [ -123.141602558999963, 49.717452118000026 ], [ -123.141502184999979, 49.71825099299999 ], [ -123.14123971399998, 49.720461196000059 ], [ -123.140652619000022, 49.725446414000032 ], [ -123.140606486999914, 49.725838087000113 ], [ -123.140728318999948, 49.726600086000076 ], [ -123.140906355999931, 49.726593035000136 ], [ -123.141227483999927, 49.726672592000114 ], [ -123.14207916, 49.727145850000063 ], [ -123.142722749999962, 49.72766228100005 ], [ -123.142936619999929, 49.727748888000114 ], [ -123.143186820999972, 49.727786940000023 ], [ -123.14370355699999, 49.727800477000052 ], [ -123.14388761399999, 49.727853019000101 ], [ -123.14395092299999, 49.727905963000048 ], [ -123.143934254000015, 49.727995557000114 ], [ -123.143800698999925, 49.728090173000041 ], [ -123.143398023999978, 49.728250642000056 ], [ -123.143215723999901, 49.72837121 ], [ -123.142830091999926, 49.728521374000103 ], [ -123.142696395999948, 49.728573431000051 ], [ -123.142626461999896, 49.728600635000092 ], [ -123.142208301999929, 49.728763373000049 ], [ -123.142154020999953, 49.728784499000085 ], [ -123.141814, 49.728784915000112 ], [ -123.141744557999942, 49.728721854000121 ], [ -123.141743957999935, 49.728515167000118 ], [ -123.141354161, 49.728515642000104 ], [ -123.141327655999987, 49.728502212000109 ], [ -123.141326910999922, 49.728245842000092 ], [ -123.140822968999913, 49.728246455000011 ], [ -123.140821699999947, 49.728245812000075 ], [ -123.139127287999898, 49.727807109000068 ], [ -123.137432678999971, 49.727637600000072 ], [ -123.135810498999888, 49.727334289000048 ], [ -123.135435998999981, 49.727369901000031 ], [ -123.135138764999923, 49.72757215200005 ], [ -123.13396660899997, 49.728369709000027 ], [ -123.132582895999946, 49.729658606000029 ], [ -123.131403480999964, 49.72999179100006 ], [ -123.13077939599998, 49.730091490000113 ], [ -123.130238108999919, 49.73007438500008 ], [ -123.129987785999973, 49.729930601000092 ], [ -123.129987306999965, 49.729219888000102 ], [ -123.129889100999961, 49.729004910000086 ], [ -123.129444086999968, 49.728510694000093 ], [ -123.12872031199997, 49.728061996000037 ], [ -123.127484594999927, 49.727757192000084 ], [ -123.126138784999981, 49.727641894000065 ], [ -123.12567979, 49.727327108000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.832973805855162", "sL_AssetLoss": "3245", "sL_BldgLoss": "2703", "sL_StrLoss": "1740", "sL_NStrLoss": "963", "sL_ContLoss": "542", "geom_point": "0101000020E6100000858549A764C75EC0C3691C45B1DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.116775359999934, 49.731511205000068 ], [ -123.116872915999949, 49.731511106000056 ], [ -123.116879896999976, 49.731689510000066 ], [ -123.116603086999959, 49.73196860700012 ], [ -123.116118791999966, 49.732149512000021 ], [ -123.115659689999944, 49.732222196000116 ], [ -123.114107008999952, 49.732205112000067 ], [ -123.113880044999931, 49.732100432000095 ], [ -123.114692957999964, 49.732121937000045 ], [ -123.114717467, 49.731732144000013 ], [ -123.116776020999936, 49.73178657400009 ], [ -123.116775359999934, 49.731511205000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66733334", "BldgCostT": "44758334", "sL_LossRatio": "0.776966994939502", "sL_AssetLoss": "406877", "sL_BldgLoss": "316130", "sL_StrLoss": "192660", "sL_NStrLoss": "123470", "sL_ContLoss": "90747", "geom_point": "0101000020E61000003FAA92AF21C85EC09728392FE7DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.132738387999922, 49.740793096000075 ], [ -123.132709598999924, 49.739145112000053 ], [ -123.131491172999958, 49.739140999000035 ], [ -123.131470016999927, 49.738303309000052 ], [ -123.129649194999971, 49.738299506000061 ], [ -123.129311521999938, 49.738195208 ], [ -123.129199082999946, 49.738017706000093 ], [ -123.129134921999963, 49.735028503000102 ], [ -123.126859685999975, 49.735036094000087 ], [ -123.126130523999905, 49.73503942200005 ], [ -123.125728109, 49.735041236000058 ], [ -123.125353484999962, 49.735042962000108 ], [ -123.123605098999931, 49.735050872000038 ], [ -123.12324599199999, 49.735052495000033 ], [ -123.121050486999977, 49.735094497000063 ], [ -123.119451504999944, 49.73492 ], [ -123.118829913999917, 49.734816665000039 ], [ -123.117082206999925, 49.734526109000029 ], [ -123.116400679999927, 49.734107599000041 ], [ -123.115924095999972, 49.733896001000083 ], [ -123.11582710199994, 49.733875093000073 ], [ -123.115301014999943, 49.733761704000116 ], [ -123.114548321999962, 49.733702997000101 ], [ -123.114374587999947, 49.733707503000097 ], [ -123.114184805999912, 49.733713045000037 ], [ -123.11382537799993, 49.733723514000111 ], [ -123.112727079999956, 49.733753875000112 ], [ -123.111655596999967, 49.733688599000075 ], [ -123.110359520999921, 49.733443635000107 ], [ -123.109809529999936, 49.733257889000093 ], [ -123.109830694999943, 49.732921829000077 ], [ -123.110822938999959, 49.732948113000091 ], [ -123.110871563999964, 49.732175777000066 ], [ -123.111122700999914, 49.732190794000083 ], [ -123.11266417899999, 49.732737700000072 ], [ -123.113262501999941, 49.732988392000031 ], [ -123.113860388, 49.733374293000104 ], [ -123.114289186999883, 49.733482599000098 ], [ -123.115745804999932, 49.73349818900013 ], [ -123.117024289, 49.733398492000056 ], [ -123.117438012, 49.733217696000033 ], [ -123.117814094999943, 49.732902911000082 ], [ -123.118574598999956, 49.731823408000032 ], [ -123.118724190999941, 49.731337699000044 ], [ -123.118751783999954, 49.730572903000095 ], [ -123.118542089999892, 49.730285204000083 ], [ -123.118401202999934, 49.729790985000115 ], [ -123.118621985999965, 49.728818307000019 ], [ -123.11903780499992, 49.728341191000041 ], [ -123.119424916999961, 49.728062 ], [ -123.120435895999933, 49.727647607000094 ], [ -123.120928436999975, 49.727562750000118 ], [ -123.120930191999918, 49.728268930000056 ], [ -123.121346451999955, 49.728268495000052 ], [ -123.121347124999929, 49.728538329000081 ], [ -123.121712041999984, 49.728537946000124 ], [ -123.12176354399999, 49.728601553000018 ], [ -123.121764061999926, 49.728807726000085 ], [ -123.121930339999949, 49.728807551000052 ], [ -123.122132808999964, 49.729057605000087 ], [ -123.122181031999943, 49.7290887690001 ], [ -123.122181680999958, 49.729346954000043 ], [ -123.122579888999965, 49.729346534000037 ], [ -123.122597978999934, 49.729358224000066 ], [ -123.122598628999967, 49.729616347000103 ], [ -123.122996745999927, 49.729615926000065 ], [ -123.123014929999968, 49.729627677000103 ], [ -123.12301558199999, 49.729885741000011 ], [ -123.123407, 49.729885324000094 ], [ -123.123431925999952, 49.729913011000043 ], [ -123.123432539999897, 49.730155132000071 ], [ -123.123649691999944, 49.730154900000123 ], [ -123.123842708999959, 49.730369296000028 ], [ -123.123849364999927, 49.730370850000014 ], [ -123.123849502999946, 49.730424520000021 ], [ -123.124078323, 49.730424276000051 ], [ -123.124265892999958, 49.730468044000091 ], [ -123.124266469999952, 49.730693908000056 ], [ -123.125099030999962, 49.73069301200006 ], [ -123.12509972399998, 49.730962846000089 ], [ -123.125739989999929, 49.730962153000078 ], [ -123.125932576, 49.731072978000022 ], [ -123.125932988, 49.73123177700009 ], [ -123.126208013999985, 49.731231478000012 ], [ -123.126766396999926, 49.731552794000045 ], [ -123.126766963999899, 49.731770536000042 ], [ -123.127306489999924, 49.731769945000039 ], [ -123.127816008999972, 49.731921602000064 ], [ -123.128619497999964, 49.732009910000023 ], [ -123.130770494999965, 49.732017105000082 ], [ -123.131463679999953, 49.731773494000052 ], [ -123.132047691999929, 49.731646801000046 ], [ -123.132835592999925, 49.730944613000062 ], [ -123.133528909999953, 49.730609885000021 ], [ -123.133792092999954, 49.730303696000071 ], [ -123.134054412999916, 49.729647203000063 ], [ -123.13469081099997, 49.729197102000072 ], [ -123.135917583999955, 49.728984235000077 ], [ -123.135920060999965, 49.7298713180001 ], [ -123.136336333999964, 49.729870829000099 ], [ -123.13633709, 49.73014066300005 ], [ -123.137585916999967, 49.730139187000063 ], [ -123.13758727799997, 49.730620660000049 ], [ -123.137412390999955, 49.730708600000078 ], [ -123.136971039999935, 49.731001816000052 ], [ -123.13682599699996, 49.731098210000098 ], [ -123.136353007999972, 49.731451198000109 ], [ -123.135641037999932, 49.732190428000102 ], [ -123.135596196999984, 49.732236994000083 ], [ -123.135297508999926, 49.732708887000072 ], [ -123.135103618999906, 49.733191684000069 ], [ -123.134971282999942, 49.733642804000063 ], [ -123.134872806999951, 49.734220705000084 ], [ -123.134909388999944, 49.735012903000012 ], [ -123.13503369099999, 49.736950516000022 ], [ -123.135119075999981, 49.738281267000069 ], [ -123.135166405999968, 49.739019025000061 ], [ -123.135170717999927, 49.739086839000031 ], [ -123.13528079699995, 49.740802201000051 ], [ -123.134847634999957, 49.740800793000027 ], [ -123.1345005579999, 49.740799670000065 ], [ -123.134167495999989, 49.74079859000004 ], [ -123.133008985999979, 49.740794815000051 ], [ -123.132738387999922, 49.740793096000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12325084", "BldgCostT": "8028334", "sL_LossRatio": "0.84871394527077", "sL_AssetLoss": "36507", "sL_BldgLoss": "30984", "sL_StrLoss": "20637", "sL_NStrLoss": "10347", "sL_ContLoss": "5523", "geom_point": "0101000020E6100000D673F30930C95EC0621DE0ACB5DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139971566999961, 49.710467792000053 ], [ -123.140195466999941, 49.706873100000102 ], [ -123.141596249999964, 49.706909835000047 ], [ -123.141694896000018, 49.705325132000098 ], [ -123.141699782, 49.705325261000119 ], [ -123.141876429999968, 49.708107775000045 ], [ -123.141972156999955, 49.708892601000102 ], [ -123.142126706999932, 49.709284428000046 ], [ -123.143362662999962, 49.70934714300008 ], [ -123.143443280999975, 49.709241156000061 ], [ -123.143903623999961, 49.708683552000082 ], [ -123.144208221999961, 49.708314571000074 ], [ -123.144442291999937, 49.708031007000073 ], [ -123.144683029999953, 49.707739428000082 ], [ -123.144693666999956, 49.707726501000117 ], [ -123.145508979999988, 49.706738827000081 ], [ -123.145753365999965, 49.706442788000103 ], [ -123.145815499999983, 49.706223883000092 ], [ -123.145802087999982, 49.705926498000061 ], [ -123.145667808999946, 49.705632238000092 ], [ -123.144916701999989, 49.704886143000053 ], [ -123.144817554999932, 49.704696326000054 ], [ -123.144845560999926, 49.704602533000106 ], [ -123.145500319999954, 49.70448917700007 ], [ -123.146125353999949, 49.705986770000031 ], [ -123.146771270999949, 49.707534195000051 ], [ -123.146810037999927, 49.707627059000046 ], [ -123.146905066999963, 49.707854691000065 ], [ -123.146951428999913, 49.707965693000077 ], [ -123.147251212999961, 49.708833185000096 ], [ -123.147438747999942, 49.709619617000058 ], [ -123.146682186999954, 49.709620578000049 ], [ -123.146681373999982, 49.709350743000094 ], [ -123.146265275999951, 49.70935126900013 ], [ -123.14626435699995, 49.709045401000019 ], [ -123.145609538999935, 49.709028260000089 ], [ -123.145511019999944, 49.710612958000034 ], [ -123.142588282999938, 49.710536400000137 ], [ -123.141405468999949, 49.710505395000069 ], [ -123.139971566999961, 49.710467792000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.844701986754967", "sL_AssetLoss": "3020", "sL_BldgLoss": "2551", "sL_StrLoss": "1680", "sL_NStrLoss": "871", "sL_ContLoss": "469", "geom_point": "0101000020E6100000D1CD1F4FE2C85EC081F05F2879DC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.137979245999972, 49.722043683000052 ], [ -123.13964407099995, 49.722041688000054 ], [ -123.139646392999921, 49.722851188000107 ], [ -123.137981540999988, 49.722853184000108 ], [ -123.137979245999972, 49.722043683000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.91859344894027", "sL_AssetLoss": "4152", "sL_BldgLoss": "3814", "sL_StrLoss": "2988", "sL_NStrLoss": "826", "sL_ContLoss": "338", "geom_point": "0101000020E610000027ABD84E8AC75EC0AF96F9166FDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.115053451, 49.70749763000002 ], [ -123.115052813999952, 49.70722779500008 ], [ -123.114636733999973, 49.707228208000053 ], [ -123.114636098999966, 49.706958372000074 ], [ -123.114220021, 49.706958784000037 ], [ -123.114219526999989, 49.706747894000038 ], [ -123.114465586999984, 49.706790296000051 ], [ -123.114613541999944, 49.706817686000093 ], [ -123.115212598, 49.706928590000054 ], [ -123.115747518999939, 49.707027596000053 ], [ -123.115857494999958, 49.706800987000157 ], [ -123.116042500999953, 49.706615092000078 ], [ -123.116264346999955, 49.706469375000061 ], [ -123.116292814999909, 49.706450703 ], [ -123.116600476999935, 49.706343594000032 ], [ -123.116951300999972, 49.706279901000123 ], [ -123.117561192999929, 49.706242106000111 ], [ -123.118073283999934, 49.70614850300008 ], [ -123.118458995, 49.70603057300012 ], [ -123.118493284999929, 49.706020103000057 ], [ -123.119784899999971, 49.705440282000076 ], [ -123.120102478999982, 49.705706101000068 ], [ -123.120138452999953, 49.705723383000127 ], [ -123.120589912999918, 49.705940400000031 ], [ -123.12120459599997, 49.706091710000052 ], [ -123.121707353999938, 49.706123813000069 ], [ -123.121707397999941, 49.706141652000028 ], [ -123.121291325999906, 49.706142089000124 ], [ -123.121291997999933, 49.706411923000033 ], [ -123.120043778999971, 49.706413223000062 ], [ -123.120043114999973, 49.706143389000054 ], [ -123.119210972999952, 49.706144248000058 ], [ -123.119211634999914, 49.706414083000041 ], [ -123.11879556, 49.706414511000069 ], [ -123.118796219000018, 49.706684346000088 ], [ -123.11713191699998, 49.70668604100009 ], [ -123.117132565999938, 49.706955875000062 ], [ -123.116716487999923, 49.706956295000055 ], [ -123.116717133999913, 49.707226130000073 ], [ -123.116301054999965, 49.707226548000079 ], [ -123.116301697999958, 49.707496383000077 ], [ -123.115542820999977, 49.707497143000104 ], [ -123.115053451, 49.70749763000002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.821976672805402", "sL_AssetLoss": "3258", "sL_BldgLoss": "2678", "sL_StrLoss": "1690", "sL_NStrLoss": "988", "sL_ContLoss": "580", "geom_point": "0101000020E6100000D7B971A416C75EC02ECD6BF483DD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109696643999953, 49.730708622000051 ], [ -123.109696035999931, 49.730438788000043 ], [ -123.112193708999953, 49.730436396000115 ], [ -123.112194258999978, 49.730675660000088 ], [ -123.11189639199992, 49.730696812000126 ], [ -123.110202395999934, 49.730617092000017 ], [ -123.10928098699999, 49.730986594000044 ], [ -123.109280363, 49.730709015000045 ], [ -123.109696643999953, 49.730708622000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.870168855534709", "sL_AssetLoss": "2665", "sL_BldgLoss": "2319", "sL_StrLoss": "1470", "sL_NStrLoss": "849", "sL_ContLoss": "346", "geom_point": "0101000020E610000065E7860997C75EC0E7EC95600EDD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118012447999959, 49.726652932000121 ], [ -123.119261185999989, 49.726651653000033 ], [ -123.119262506, 49.72719098800011 ], [ -123.118135614999915, 49.727462310000035 ], [ -123.118014408999983, 49.727462434000095 ], [ -123.118012447999959, 49.726652932000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52188416", "BldgCostT": "35231666", "sL_LossRatio": "0.858405119369924", "sL_AssetLoss": "203150", "sL_BldgLoss": "174385", "sL_StrLoss": "116310", "sL_NStrLoss": "58075", "sL_ContLoss": "28765", "geom_point": "0101000020E610000075D2778E73C65EC0805437D562DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.103056145999972, 49.740158911000059 ], [ -123.103055573999939, 49.739889077000022 ], [ -123.102639215999901, 49.739889447000081 ], [ -123.102638644999928, 49.739619614000105 ], [ -123.10222228899994, 49.739619981000075 ], [ -123.102221153999949, 49.739080315000088 ], [ -123.10180480299999, 49.739080682000065 ], [ -123.101802544999927, 49.738001348000083 ], [ -123.100969856999939, 49.738002077000047 ], [ -123.100970977, 49.738541744000059 ], [ -123.099721933999945, 49.73854282500006 ], [ -123.099721379999949, 49.738272992000184 ], [ -123.099305033999897, 49.73827334900006 ], [ -123.099305584999939, 49.738543183000026 ], [ -123.098056539999973, 49.738544247000057 ], [ -123.098055997999907, 49.738274413000084 ], [ -123.09763965099998, 49.738274765000092 ], [ -123.097639110999964, 49.738004931000042 ], [ -123.097222765999959, 49.738005281000014 ], [ -123.097221149999953, 49.737195782000057 ], [ -123.09638847599993, 49.737196477000047 ], [ -123.096389009999939, 49.737466311000027 ], [ -123.095556332999962, 49.737467001000063 ], [ -123.095556862999914, 49.737736834000053 ], [ -123.09389149799992, 49.737738196000073 ], [ -123.093891260999953, 49.737615776000041 ], [ -123.093889934999936, 49.736928695000131 ], [ -123.094306269999933, 49.736928358000107 ], [ -123.094305746999964, 49.736658524000092 ], [ -123.095138410999965, 49.736657843000039 ], [ -123.095137883999911, 49.736388009000052 ], [ -123.095970543999925, 49.73638732200002 ], [ -123.095970009999988, 49.736117488000055 ], [ -123.096802666000016, 49.736116796000083 ], [ -123.096801590999959, 49.735577129000141 ], [ -123.097217914999973, 49.735576781000063 ], [ -123.097216836999976, 49.735037113000033 ], [ -123.097633154999968, 49.73503676300006 ], [ -123.097632613999949, 49.734766929000038 ], [ -123.098048929999962, 49.734766578000105 ], [ -123.098048385999974, 49.734496744000062 ], [ -123.098464699999965, 49.734496391 ], [ -123.098463606999957, 49.733956724000031 ], [ -123.09947483499991, 49.733955860000037 ], [ -123.099879682999983, 49.733955512000094 ], [ -123.100128840999929, 49.73395529600004 ], [ -123.100129157999959, 49.734109090000025 ], [ -123.10013050699996, 49.734764798000107 ], [ -123.099714191999979, 49.73476515700002 ], [ -123.099715296999932, 49.735304824000117 ], [ -123.099298976999961, 49.735305181000065 ], [ -123.099299527999989, 49.735575015000087 ], [ -123.098883204999936, 49.735575371 ], [ -123.098883753999985, 49.735845204000086 ], [ -123.098467428999982, 49.735845559000062 ], [ -123.098468521, 49.736385226000039 ], [ -123.099301179999941, 49.736384515000033 ], [ -123.099300629999902, 49.736114681000075 ], [ -123.100133283, 49.736113965000101 ], [ -123.10013272799992, 49.735844131000064 ], [ -123.101381703999948, 49.735843044000042 ], [ -123.101381141999951, 49.735573212000105 ], [ -123.10184261199997, 49.73557280700004 ], [ -123.102630109999964, 49.735572111000046 ], [ -123.102631271999968, 49.736123503000023 ], [ -123.10263238499999, 49.736651446000032 ], [ -123.103048716999965, 49.736651076000044 ], [ -123.103050431999961, 49.737460577000022 ], [ -123.104722429999953, 49.737459078000064 ], [ -123.106381140999957, 49.73745756700005 ], [ -123.106382909999965, 49.738267067000088 ], [ -123.105966565999964, 49.738267448000101 ], [ -123.105967740999958, 49.738807115000121 ], [ -123.106384090999967, 49.738806733000089 ], [ -123.106384680999938, 49.739076566000115 ], [ -123.106801032999925, 49.739076184000055 ], [ -123.10680162499996, 49.739346017000067 ], [ -123.10739651099999, 49.739345467000149 ], [ -123.106838005999961, 49.739731985000098 ], [ -123.106719256999938, 49.739764354000108 ], [ -123.106029061999948, 49.739952443000078 ], [ -123.105970269999958, 49.739968463000153 ], [ -123.105970090999918, 49.739886448000057 ], [ -123.104928860999934, 49.739887396000086 ], [ -123.104721012999931, 49.739887583000055 ], [ -123.104721593999926, 49.740157417000049 ], [ -123.103056145999972, 49.740158911000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14487916", "BldgCostT": "9991666", "sL_LossRatio": "0.826515580736544", "sL_AssetLoss": "88250", "sL_BldgLoss": "72940", "sL_StrLoss": "42150", "sL_NStrLoss": "30790", "sL_ContLoss": "15310", "geom_point": "0101000020E6100000CF19EEAF20C75EC0A4733C6E11DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109604290999982, 49.73651632700011 ], [ -123.109809529999936, 49.733257889000093 ], [ -123.110359520999921, 49.733443635000107 ], [ -123.111655596999967, 49.733688599000075 ], [ -123.112727079999956, 49.733753875000112 ], [ -123.11382537799993, 49.733723514000111 ], [ -123.114184805999912, 49.733713045000037 ], [ -123.114040799999955, 49.734030911000062 ], [ -123.11278198299999, 49.735237196000064 ], [ -123.112422183999911, 49.735795499000069 ], [ -123.11236874799999, 49.735852211000115 ], [ -123.111690712999973, 49.736571584000124 ], [ -123.109604290999982, 49.73651632700011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48795417", "BldgCostT": "32891667", "sL_LossRatio": "0.847233861127038", "sL_AssetLoss": "204057", "sL_BldgLoss": "172884", "sL_StrLoss": "110250", "sL_NStrLoss": "62634", "sL_ContLoss": "31173", "geom_point": "0101000020E610000069A7288F15C75EC021DB5CA9A5DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.10249653299999, 49.740506151000091 ], [ -123.102518974999938, 49.740150770000078 ], [ -123.104720676999932, 49.740209217000043 ], [ -123.105394505, 49.740227096000126 ], [ -123.10638725199999, 49.740253430000074 ], [ -123.106387038999927, 49.74015590000004 ], [ -123.105970678999967, 49.740156281000054 ], [ -123.105970431999978, 49.740043271000062 ], [ -123.107784381000016, 49.740204011000074 ], [ -123.108899524999913, 49.740302807000042 ], [ -123.108914102999961, 49.740304794000046 ], [ -123.108922588999988, 49.74030486100007 ], [ -123.109161053999983, 49.74030682800003 ], [ -123.109421525999963, 49.740358718000017 ], [ -123.109417311999977, 49.740271308000139 ], [ -123.109530095999958, 49.740001620000022 ], [ -123.10964999199993, 49.739860699000083 ], [ -123.109949888999921, 49.739616618000085 ], [ -123.110265680999973, 49.739407199000048 ], [ -123.110587690000017, 49.739143004000034 ], [ -123.111048182999923, 49.738596202000039 ], [ -123.11127961199999, 49.738449298000084 ], [ -123.111475510999952, 49.738378895000096 ], [ -123.112556803999937, 49.73796011400006 ], [ -123.112899377999909, 49.737808995000108 ], [ -123.113120313999957, 49.737651901000049 ], [ -123.11332591099999, 49.737427790000041 ], [ -123.114019121999931, 49.73660090100001 ], [ -123.114281415, 49.736403489000111 ], [ -123.114628812999953, 49.736241686000028 ], [ -123.115042591999909, 49.736128410000056 ], [ -123.115980298999915, 49.736004706000045 ], [ -123.116275582999947, 49.735988199000083 ], [ -123.116515822999958, 49.736030602000049 ], [ -123.116720310999966, 49.736132294000136 ], [ -123.117629412999946, 49.73681789800002 ], [ -123.117002593999956, 49.737494402000074 ], [ -123.116468182999967, 49.738222906000097 ], [ -123.116026586999951, 49.738844893000092 ], [ -123.115897086999937, 49.73913938900003 ], [ -123.115827509999946, 49.739429205000107 ], [ -123.115796900999968, 49.739562495000023 ], [ -123.115787104, 49.740270695000049 ], [ -123.115787351999927, 49.740325653000134 ], [ -123.115787586999929, 49.740373280000028 ], [ -123.115773697999927, 49.74037327500006 ], [ -123.110195602999966, 49.740365684000103 ], [ -123.110194312, 49.740813261 ], [ -123.110194126999929, 49.740885398000032 ], [ -123.110193490999961, 49.741103792000096 ], [ -123.10786999199992, 49.741105091000108 ], [ -123.106812947999956, 49.741105653000034 ], [ -123.106533131, 49.741105800000142 ], [ -123.105219611999942, 49.741287002000071 ], [ -123.104977395999981, 49.741319217000068 ], [ -123.104650098, 49.741447381000029 ], [ -123.10442229099999, 49.741647485000023 ], [ -123.104421014999929, 49.741648834000053 ], [ -123.104322484999955, 49.741326845000046 ], [ -123.104453812999935, 49.74079904600007 ], [ -123.104499376999982, 49.740709724000133 ], [ -123.104635115999955, 49.740489064000045 ], [ -123.104638515999909, 49.740474067000093 ], [ -123.104558371999971, 49.740472106000055 ], [ -123.104557998999923, 49.740472090000061 ], [ -123.104521789999978, 49.740471202000059 ], [ -123.104090418999959, 49.740300304000094 ], [ -123.103633306999953, 49.740337299000025 ], [ -123.103509103999897, 49.740445490000091 ], [ -123.103501685999944, 49.740560005000098 ], [ -123.103455390999969, 49.741273013000068 ], [ -123.102984492999965, 49.741623411000056 ], [ -123.102537969999958, 49.741814678000011 ], [ -123.102424591999949, 49.741863232000092 ], [ -123.10196036799999, 49.742062060000102 ], [ -123.101930587999931, 49.742074805000144 ], [ -123.10176289599994, 49.742237208000077 ], [ -123.101669883999989, 49.74238299100012 ], [ -123.101636143999926, 49.742435845000088 ], [ -123.101361205999964, 49.742866688000106 ], [ -123.101127007999963, 49.743460587000079 ], [ -123.100711210999975, 49.743810886000084 ], [ -123.100569912999944, 49.744303670000107 ], [ -123.100792608999939, 49.740779729000032 ], [ -123.102088965999968, 49.740814168000114 ], [ -123.102109070999973, 49.740495860000038 ], [ -123.10249653299999, 49.740506151000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385943916", "BldgCostT": "256446666", "sL_LossRatio": "0.861837821364247", "sL_AssetLoss": "1273127", "sL_BldgLoss": "1097229", "sL_StrLoss": "744582", "sL_NStrLoss": "352647", "sL_ContLoss": "175898", "geom_point": "0101000020E6100000E2633DD608C75EC04110738B71DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.113488477999965, 49.750133005000102 ], [ -123.113487847999977, 49.749863171000143 ], [ -123.113071404, 49.749863578000024 ], [ -123.113069520999943, 49.749054080000079 ], [ -123.112653082999941, 49.749054486000105 ], [ -123.112652458999946, 49.748784653000087 ], [ -123.110986718000021, 49.748786261000063 ], [ -123.110989180000018, 49.749865592000113 ], [ -123.109739844999979, 49.749866781999977 ], [ -123.109739235999939, 49.749596949000065 ], [ -123.109322793999979, 49.749597343000069 ], [ -123.109321580000014, 49.749057677000096 ], [ -123.108299844999962, 49.749058637000083 ], [ -123.108266658999952, 49.749585061000083 ], [ -123.10695963199997, 49.749550420000027 ], [ -123.10640755499999, 49.74953578300007 ], [ -123.106407695999934, 49.749600058000055 ], [ -123.104325482999954, 49.749601950000041 ], [ -123.104325221999943, 49.749480549000047 ], [ -123.102722619999923, 49.749438013000059 ], [ -123.102736457999981, 49.749218922000054 ], [ -123.101884203999958, 49.749196292000107 ], [ -123.101908066999897, 49.748818568000104 ], [ -123.10182232599999, 49.748816291000018 ], [ -123.102049401999963, 49.745221872000073 ], [ -123.10206281899994, 49.745222228000017 ], [ -123.10208752099993, 49.744831171000079 ], [ -123.10220418899992, 49.744834269000108 ], [ -123.102210185, 49.744739330000129 ], [ -123.101636576999979, 49.744724096000091 ], [ -123.101656851999977, 49.744403163000065 ], [ -123.100565457999892, 49.744374168000043 ], [ -123.100569912999944, 49.744303670000107 ], [ -123.100711210999975, 49.743810886000084 ], [ -123.101127007999963, 49.743460587000079 ], [ -123.101361205999964, 49.742866688000106 ], [ -123.101636143999926, 49.742435845000088 ], [ -123.101669883999989, 49.74238299100012 ], [ -123.10176289599994, 49.742237208000077 ], [ -123.101930587999931, 49.742074805000144 ], [ -123.10196036799999, 49.742062060000102 ], [ -123.102424591999949, 49.741863232000092 ], [ -123.102537969999958, 49.741814678000011 ], [ -123.102984492999965, 49.741623411000056 ], [ -123.103455390999969, 49.741273013000068 ], [ -123.103501685999944, 49.740560005000098 ], [ -123.103509103999897, 49.740445490000091 ], [ -123.103633306999953, 49.740337299000025 ], [ -123.104090418999959, 49.740300304000094 ], [ -123.104521789999978, 49.740471202000059 ], [ -123.104557998999923, 49.740472090000061 ], [ -123.104558371999971, 49.740472106000055 ], [ -123.104638515999909, 49.740474067000093 ], [ -123.104635115999955, 49.740489064000045 ], [ -123.104499376999982, 49.740709724000133 ], [ -123.104453812999935, 49.74079904600007 ], [ -123.104322484999955, 49.741326845000046 ], [ -123.104421014999929, 49.741648834000053 ], [ -123.10442229099999, 49.741647485000023 ], [ -123.104650098, 49.741447381000029 ], [ -123.104977395999981, 49.741319217000068 ], [ -123.105219611999942, 49.741287002000071 ], [ -123.106533131, 49.741105800000142 ], [ -123.106812947999956, 49.741105653000034 ], [ -123.10786999199992, 49.741105091000108 ], [ -123.110193490999961, 49.741103792000096 ], [ -123.110192680999958, 49.741931899000079 ], [ -123.107156811999957, 49.741935093000095 ], [ -123.107037391999967, 49.74200041200006 ], [ -123.107001897, 49.742080405000067 ], [ -123.107057898999983, 49.742181793000029 ], [ -123.108784817999961, 49.743194297000073 ], [ -123.109458309999951, 49.74358661600013 ], [ -123.109687396999945, 49.743673699000084 ], [ -123.109936411999954, 49.743709992000035 ], [ -123.110189309999967, 49.743705003000088 ], [ -123.110189625999936, 49.744288607000058 ], [ -123.110190107, 49.745059688000048 ], [ -123.110199388999959, 49.746630608000018 ], [ -123.110197195999973, 49.747260606000076 ], [ -123.110194484999965, 49.74743520000002 ], [ -123.11019317599991, 49.748205593000087 ], [ -123.110608188999976, 49.748185089000039 ], [ -123.111157306999957, 49.748062908000094 ], [ -123.112142607999914, 49.747959297000108 ], [ -123.112466720999947, 49.747926498000012 ], [ -123.112792910999971, 49.747927890000092 ], [ -123.112833906999981, 49.747935766000083 ], [ -123.113096479999953, 49.747353593000057 ], [ -123.113149813999925, 49.747257858000083 ], [ -123.113352298999956, 49.746912010000067 ], [ -123.113343603999965, 49.74690497400011 ], [ -123.11296670899999, 49.746600403000102 ], [ -123.111897882999969, 49.745715205000103 ], [ -123.111757791999977, 49.745515204000128 ], [ -123.111731717999987, 49.745378604000109 ], [ -123.111781604999948, 49.745092793000069 ], [ -123.112261732999983, 49.743971383000016 ], [ -123.112463018999946, 49.74302256700004 ], [ -123.112462516999969, 49.742766055000111 ], [ -123.114358241999966, 49.742420154000094 ], [ -123.114370838999903, 49.742415318000049 ], [ -123.114472021999973, 49.742376350000065 ], [ -123.114563240000024, 49.742295057000049 ], [ -123.115046229999933, 49.741677757000076 ], [ -123.115612489999975, 49.740950122000065 ], [ -123.115760251999987, 49.740697501000085 ], [ -123.115787586999929, 49.740373280000028 ], [ -123.116587118999988, 49.740372803000078 ], [ -123.116798070999934, 49.740372986000089 ], [ -123.117547476999917, 49.740375127000028 ], [ -123.117561384999988, 49.740375155000073 ], [ -123.117566066999956, 49.740565160000152 ], [ -123.117639181999948, 49.740904660000055 ], [ -123.117782786999939, 49.741203678000083 ], [ -123.118617812999929, 49.742185273000061 ], [ -123.118791217999927, 49.742341987000032 ], [ -123.118946894999979, 49.742405485000077 ], [ -123.119172911, 49.74245288600013 ], [ -123.119290722999935, 49.742456002000061 ], [ -123.120362794999977, 49.742448297000124 ], [ -123.121623715999931, 49.742440998000099 ], [ -123.121413200999896, 49.742809016000081 ], [ -123.120883913999947, 49.743501601000077 ], [ -123.120771995999931, 49.743824143000012 ], [ -123.121385859999933, 49.744069927000041 ], [ -123.121386155999957, 49.744188661000031 ], [ -123.119720570999931, 49.744190394000114 ], [ -123.119719242999963, 49.743650728000084 ], [ -123.118886459999928, 49.74365158600007 ], [ -123.118885800999948, 49.743381753000094 ], [ -123.118469412999985, 49.743382180000062 ], [ -123.118468753999949, 49.743112347000135 ], [ -123.117635980999964, 49.743113195000056 ], [ -123.117635329, 49.742843362 ], [ -123.117218942999926, 49.742843784000108 ], [ -123.117217643999979, 49.742304117000103 ], [ -123.115784952999931, 49.742305559000073 ], [ -123.115633934999934, 49.742535663000041 ], [ -123.115277834999958, 49.742764563000087 ], [ -123.115136880999955, 49.742786500000101 ], [ -123.115137019999977, 49.742845872000032 ], [ -123.114752957999926, 49.742846253000025 ], [ -123.114304413999932, 49.742916060000098 ], [ -123.114304885999942, 49.743116530000052 ], [ -123.113888497999966, 49.743116939000075 ], [ -123.113889760999911, 49.743656605000069 ], [ -123.113690800999962, 49.743656801000022 ], [ -123.113474780999951, 49.744262444000057 ], [ -123.113475887999982, 49.74473634600006 ], [ -123.113305688, 49.744736513000099 ], [ -123.11329393599999, 49.74476946300009 ], [ -123.113095934999976, 49.744919963000072 ], [ -123.113059919999955, 49.744922788000068 ], [ -123.113060114999911, 49.745006587000063 ], [ -123.112643710999933, 49.745006993000075 ], [ -123.112644335999931, 49.745276825000055 ], [ -123.11306074099997, 49.745276419000099 ], [ -123.1130619959999, 49.745816086000033 ], [ -123.113894815999956, 49.745815270000044 ], [ -123.113894182999928, 49.745545437000104 ], [ -123.114310592999942, 49.745545027000063 ], [ -123.114309956999989, 49.745275193000083 ], [ -123.114726363000031, 49.745274782000131 ], [ -123.114725725999932, 49.745004949000062 ], [ -123.115142130999956, 49.745004536000081 ], [ -123.11514149099996, 49.744734703000098 ], [ -123.117223494999962, 49.744732615000068 ], [ -123.11722414499998, 49.745002448000072 ], [ -123.11764054799994, 49.745002026000058 ], [ -123.117641201999959, 49.745271860000095 ], [ -123.11847401199995, 49.745271010000096 ], [ -123.118474668999951, 49.745540843000065 ], [ -123.118891075999926, 49.745540417000022 ], [ -123.118891735999938, 49.745810250000083 ], [ -123.119308144999977, 49.745809822000083 ], [ -123.119312117999954, 49.747428819000021 ], [ -123.118895692, 49.747429247000063 ], [ -123.118897671999946, 49.748238745000059 ], [ -123.11848124, 49.748239172000098 ], [ -123.118483211999902, 49.749048670000086 ], [ -123.118066775, 49.749049095000018 ], [ -123.118068084999962, 49.749588761000076 ], [ -123.116818756999962, 49.749590027000089 ], [ -123.116820053999916, 49.750129693000119 ], [ -123.113488477999965, 49.750133005000102 ] ], [ [ -123.108899105999953, 49.746361373000099 ], [ -123.108899101999953, 49.746359741000063 ], [ -123.108482685999945, 49.746360131000081 ], [ -123.10848328899999, 49.746629964000078 ], [ -123.108452934999917, 49.746629992000102 ], [ -123.108445159999974, 49.746753332000019 ], [ -123.108367886999986, 49.747979239000102 ], [ -123.108486296999956, 49.747979128000082 ], [ -123.10848509299997, 49.747439462000095 ], [ -123.108901517999954, 49.747439072000105 ], [ -123.108899105999953, 49.746361373000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107142917", "BldgCostT": "69031667", "sL_LossRatio": "0.856055363321799", "sL_AssetLoss": "338130", "sL_BldgLoss": "289458", "sL_StrLoss": "181896", "sL_NStrLoss": "107562", "sL_ContLoss": "48672", "geom_point": "0101000020E61000007FCC5A4C24C75EC05EA282DC28DF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.11019317599991, 49.748205593000087 ], [ -123.110194484999965, 49.74743520000002 ], [ -123.110197195999973, 49.747260606000076 ], [ -123.110199388999959, 49.746630608000018 ], [ -123.110190107, 49.745059688000048 ], [ -123.110189625999936, 49.744288607000058 ], [ -123.110189309999967, 49.743705003000088 ], [ -123.109936411999954, 49.743709992000035 ], [ -123.109687396999945, 49.743673699000084 ], [ -123.109458309999951, 49.74358661600013 ], [ -123.108784817999961, 49.743194297000073 ], [ -123.107057898999983, 49.742181793000029 ], [ -123.107001897, 49.742080405000067 ], [ -123.107037391999967, 49.74200041200006 ], [ -123.107156811999957, 49.741935093000095 ], [ -123.110192680999958, 49.741931899000079 ], [ -123.110193490999961, 49.741103792000096 ], [ -123.110194126999929, 49.740885398000032 ], [ -123.110194312, 49.740813261 ], [ -123.110195602999966, 49.740365684000103 ], [ -123.115773697999927, 49.74037327500006 ], [ -123.115787586999929, 49.740373280000028 ], [ -123.115760251999987, 49.740697501000085 ], [ -123.115612489999975, 49.740950122000065 ], [ -123.115046229999933, 49.741677757000076 ], [ -123.114563240000024, 49.742295057000049 ], [ -123.114472021999973, 49.742376350000065 ], [ -123.114370838999903, 49.742415318000049 ], [ -123.114358241999966, 49.742420154000094 ], [ -123.112462516999969, 49.742766055000111 ], [ -123.112463018999946, 49.74302256700004 ], [ -123.112261732999983, 49.743971383000016 ], [ -123.111781604999948, 49.745092793000069 ], [ -123.111731717999987, 49.745378604000109 ], [ -123.111757791999977, 49.745515204000128 ], [ -123.111897882999969, 49.745715205000103 ], [ -123.11296670899999, 49.746600403000102 ], [ -123.113343603999965, 49.74690497400011 ], [ -123.113352298999956, 49.746912010000067 ], [ -123.113149813999925, 49.747257858000083 ], [ -123.113096479999953, 49.747353593000057 ], [ -123.112833906999981, 49.747935766000083 ], [ -123.112792910999971, 49.747927890000092 ], [ -123.112466720999947, 49.747926498000012 ], [ -123.112142607999914, 49.747959297000108 ], [ -123.111157306999957, 49.748062908000094 ], [ -123.110608188999976, 49.748185089000039 ], [ -123.11019317599991, 49.748205593000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "249578553", "BldgCostT": "161498746", "sL_LossRatio": "0.782164275645648", "sL_AssetLoss": "1379815", "sL_BldgLoss": "1079242", "sL_StrLoss": "609412", "sL_NStrLoss": "469830", "sL_ContLoss": "300573", "geom_point": "0101000020E61000003F7FB1291DC85EC05F47565D0BDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134307838000012, 49.749031406000029 ], [ -123.134304856999947, 49.747952076000026 ], [ -123.132639145999974, 49.747953995000117 ], [ -123.132636935999983, 49.747144496000068 ], [ -123.132220516999894, 49.74714497300009 ], [ -123.13221978299994, 49.746875140000014 ], [ -123.131386944999974, 49.746876087000047 ], [ -123.13138621799996, 49.746606255000096 ], [ -123.13096980099999, 49.746606726000095 ], [ -123.130968347999939, 49.746067061000069 ], [ -123.128469874999936, 49.746069858000027 ], [ -123.128469161999973, 49.745800025000023 ], [ -123.128052752999963, 49.745800486000078 ], [ -123.128048490999959, 49.744181489000084 ], [ -123.128464886999936, 49.744181028000085 ], [ -123.128462748999965, 49.743371530000069 ], [ -123.131468688999945, 49.743368157000099 ], [ -123.131485561999909, 49.743098304000057 ], [ -123.131376743999979, 49.743098428000096 ], [ -123.13137601599999, 49.742828595000042 ], [ -123.129710476999918, 49.74283047200008 ], [ -123.129709758999979, 49.742560639000018 ], [ -123.127377643000031, 49.74256322600008 ], [ -123.1272117, 49.74265284100008 ], [ -123.127212172000014, 49.742833242000074 ], [ -123.12235536899999, 49.742838473000077 ], [ -123.122215930999957, 49.742986533000092 ], [ -123.122217591999942, 49.743648120000096 ], [ -123.121384809999981, 49.743648995000058 ], [ -123.121385859999933, 49.744069927000041 ], [ -123.120771995999931, 49.743824143000012 ], [ -123.120883913999947, 49.743501601000077 ], [ -123.121413200999896, 49.742809016000081 ], [ -123.121623715999931, 49.742440998000099 ], [ -123.120362794999977, 49.742448297000124 ], [ -123.119290722999935, 49.742456002000061 ], [ -123.119172911, 49.74245288600013 ], [ -123.118946894999979, 49.742405485000077 ], [ -123.118791217999927, 49.742341987000032 ], [ -123.118617812999929, 49.742185273000061 ], [ -123.117782786999939, 49.741203678000083 ], [ -123.117639181999948, 49.740904660000055 ], [ -123.117566066999956, 49.740565160000152 ], [ -123.117561384999988, 49.740375155000073 ], [ -123.118854800999941, 49.740378164000063 ], [ -123.11886870799999, 49.740378191000048 ], [ -123.118866758999928, 49.74030512400001 ], [ -123.118865795999923, 49.740270106000082 ], [ -123.118871615999979, 49.739779702000135 ], [ -123.118920583, 49.739618098000058 ], [ -123.119034587999977, 49.739460790000066 ], [ -123.119341713, 49.739212403000039 ], [ -123.120787493999941, 49.738069614000075 ], [ -123.121524881999974, 49.737487798000046 ], [ -123.121867110999986, 49.737609408 ], [ -123.123074191999976, 49.738235304000042 ], [ -123.123279410999913, 49.738393683000055 ], [ -123.123400715999963, 49.73856159300005 ], [ -123.123452721999939, 49.738729496000111 ], [ -123.123384517999938, 49.740304700000088 ], [ -123.12341221299999, 49.740372083000096 ], [ -123.123570914999959, 49.740431104000066 ], [ -123.124072518999952, 49.739979900000058 ], [ -123.124325678000019, 49.739782025000039 ], [ -123.124867916999946, 49.739358207000095 ], [ -123.125131296999953, 49.739230090000042 ], [ -123.125420198999961, 49.739183695000072 ], [ -123.126403982999946, 49.739187090000058 ], [ -123.127037125999948, 49.739073310000109 ], [ -123.127162786999989, 49.739261100000093 ], [ -123.127524722999951, 49.73964330200004 ], [ -123.127963091999945, 49.740001388000088 ], [ -123.12824909499993, 49.740156492000033 ], [ -123.12855548899999, 49.740317612000091 ], [ -123.129110298999962, 49.740522983000048 ], [ -123.129227487000023, 49.740557597000141 ], [ -123.128694500999984, 49.741245713000133 ], [ -123.128703777999974, 49.741300174000081 ], [ -123.128716798999946, 49.741376798000076 ], [ -123.129149102999961, 49.741856209000026 ], [ -123.129321704999981, 49.7419805010001 ], [ -123.130328098999954, 49.741980798000064 ], [ -123.131593896999945, 49.741981697000064 ], [ -123.131637594999958, 49.741981701000057 ], [ -123.133062498999919, 49.741981582000086 ], [ -123.133079659999936, 49.742340241000093 ], [ -123.13311356399997, 49.743049899000049 ], [ -123.133155821999964, 49.743932803000092 ], [ -123.13401133399995, 49.744024467000017 ], [ -123.134371542999972, 49.744063066000081 ], [ -123.134731751999979, 49.744101664000027 ], [ -123.134876264999917, 49.744117152000051 ], [ -123.134900510999941, 49.74524169799999 ], [ -123.134871419999925, 49.745845886000076 ], [ -123.134882731999966, 49.746075584000081 ], [ -123.134887387, 49.746594602000073 ], [ -123.134905818999982, 49.747309302000076 ], [ -123.134901532999919, 49.747564548000064 ], [ -123.134903907999941, 49.747621669000111 ], [ -123.134955442999967, 49.748222582000047 ], [ -123.13495788299997, 49.748342653000066 ], [ -123.134971935999957, 49.749030635000082 ], [ -123.134307838000012, 49.749031406000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128906417", "BldgCostT": "86011667", "sL_LossRatio": "0.835199187262674", "sL_AssetLoss": "600440", "sL_BldgLoss": "501487", "sL_StrLoss": "306900", "sL_NStrLoss": "194587", "sL_ContLoss": "98953", "geom_point": "0101000020E6100000CF6CD3AF9FC75EC05E7AD1AA58DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.109421525999963, 49.740358718000017 ], [ -123.109161053999983, 49.74030682800003 ], [ -123.108922588999988, 49.74030486100007 ], [ -123.108914102999961, 49.740304794000046 ], [ -123.108899524999913, 49.740302807000042 ], [ -123.107784381000016, 49.740204011000074 ], [ -123.105970431999978, 49.740043271000062 ], [ -123.105970269999958, 49.739968463000153 ], [ -123.106029061999948, 49.739952443000078 ], [ -123.106719256999938, 49.739764354000108 ], [ -123.106838005999961, 49.739731985000098 ], [ -123.10739651099999, 49.739345467000149 ], [ -123.107634333999954, 49.739345246 ], [ -123.107634931999911, 49.739615079000018 ], [ -123.108884002999986, 49.73961391200011 ], [ -123.108883399999982, 49.739344078000073 ], [ -123.109299753999935, 49.739343687000058 ], [ -123.10929914799999, 49.7390738530001 ], [ -123.109715500999954, 49.739073460000057 ], [ -123.109714283999935, 49.738533793000066 ], [ -123.110130631999965, 49.73853339900009 ], [ -123.110130020999989, 49.738263566000143 ], [ -123.110546367, 49.738263168000096 ], [ -123.11054514099996, 49.737723502000037 ], [ -123.110961480999919, 49.737723103000079 ], [ -123.110960866999903, 49.737453270000088 ], [ -123.111793544, 49.737452470000051 ], [ -123.111792922999939, 49.737182637000068 ], [ -123.112209260999961, 49.737182234000024 ], [ -123.112208014999936, 49.736642567000089 ], [ -123.112624346999937, 49.736642162000074 ], [ -123.11262424099999, 49.736596295000048 ], [ -123.111690712999973, 49.736571584000124 ], [ -123.11236874799999, 49.735852211000115 ], [ -123.112422183999911, 49.735795499000069 ], [ -123.11278198299999, 49.735237196000064 ], [ -123.114040799999955, 49.734030911000062 ], [ -123.114184805999912, 49.733713045000037 ], [ -123.114374587999947, 49.733707503000097 ], [ -123.114548321999962, 49.733702997000101 ], [ -123.115301014999943, 49.733761704000116 ], [ -123.11582710199994, 49.733875093000073 ], [ -123.115924095999972, 49.733896001000083 ], [ -123.116400679999927, 49.734107599000041 ], [ -123.117082206999925, 49.734526109000029 ], [ -123.118829913999917, 49.734816665000039 ], [ -123.119451504999944, 49.73492 ], [ -123.121050486999977, 49.735094497000063 ], [ -123.12324599199999, 49.735052495000033 ], [ -123.123605098999931, 49.735050872000038 ], [ -123.125353484999962, 49.735042962000108 ], [ -123.125728109, 49.735041236000058 ], [ -123.126130523999905, 49.73503942200005 ], [ -123.126859685999975, 49.735036094000087 ], [ -123.126883809999967, 49.737422098000188 ], [ -123.126891186999941, 49.738500590000065 ], [ -123.126932907999944, 49.738832005000035 ], [ -123.127037125999948, 49.739073310000109 ], [ -123.126403982999946, 49.739187090000058 ], [ -123.125420198999961, 49.739183695000072 ], [ -123.125131296999953, 49.739230090000042 ], [ -123.124867916999946, 49.739358207000095 ], [ -123.124325678000019, 49.739782025000039 ], [ -123.124072518999952, 49.739979900000058 ], [ -123.123570914999959, 49.740431104000066 ], [ -123.12341221299999, 49.740372083000096 ], [ -123.123384517999938, 49.740304700000088 ], [ -123.123452721999939, 49.738729496000111 ], [ -123.123400715999963, 49.73856159300005 ], [ -123.123279410999913, 49.738393683000055 ], [ -123.123074191999976, 49.738235304000042 ], [ -123.121867110999986, 49.737609408 ], [ -123.121524881999974, 49.737487798000046 ], [ -123.120787493999941, 49.738069614000075 ], [ -123.119341713, 49.739212403000039 ], [ -123.119034587999977, 49.739460790000066 ], [ -123.118920583, 49.739618098000058 ], [ -123.118871615999979, 49.739779702000135 ], [ -123.118865795999923, 49.740270106000082 ], [ -123.118866758999928, 49.74030512400001 ], [ -123.11886870799999, 49.740378191000048 ], [ -123.118854800999941, 49.740378164000063 ], [ -123.117561384999988, 49.740375155000073 ], [ -123.117547476999917, 49.740375127000028 ], [ -123.116798070999934, 49.740372986000089 ], [ -123.116587118999988, 49.740372803000078 ], [ -123.115787586999929, 49.740373280000028 ], [ -123.115787351999927, 49.740325653000134 ], [ -123.115787104, 49.740270695000049 ], [ -123.115796900999968, 49.739562495000023 ], [ -123.115827509999946, 49.739429205000107 ], [ -123.115897086999937, 49.73913938900003 ], [ -123.116026586999951, 49.738844893000092 ], [ -123.116468182999967, 49.738222906000097 ], [ -123.117002593999956, 49.737494402000074 ], [ -123.117629412999946, 49.73681789800002 ], [ -123.116720310999966, 49.736132294000136 ], [ -123.116515822999958, 49.736030602000049 ], [ -123.116275582999947, 49.735988199000083 ], [ -123.115980298999915, 49.736004706000045 ], [ -123.115042591999909, 49.736128410000056 ], [ -123.114628812999953, 49.736241686000028 ], [ -123.114281415, 49.736403489000111 ], [ -123.114019121999931, 49.73660090100001 ], [ -123.11332591099999, 49.737427790000041 ], [ -123.113120313999957, 49.737651901000049 ], [ -123.112899377999909, 49.737808995000108 ], [ -123.112556803999937, 49.73796011400006 ], [ -123.111475510999952, 49.738378895000096 ], [ -123.11127961199999, 49.738449298000084 ], [ -123.111048182999923, 49.738596202000039 ], [ -123.110587690000017, 49.739143004000034 ], [ -123.110265680999973, 49.739407199000048 ], [ -123.109949888999921, 49.739616618000085 ], [ -123.10964999199993, 49.739860699000083 ], [ -123.109530095999958, 49.740001620000022 ], [ -123.109417311999977, 49.740271308000139 ], [ -123.109421525999963, 49.740358718000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85201501", "BldgCostT": "56055001", "sL_LossRatio": "0.76595843744665", "sL_AssetLoss": "579897", "sL_BldgLoss": "444177", "sL_StrLoss": "242630", "sL_NStrLoss": "201547", "sL_ContLoss": "135720", "geom_point": "0101000020E61000008FA80EC14AC85EC03C74B48997DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.128694500999984, 49.741245713000133 ], [ -123.129227487000023, 49.740557597000141 ], [ -123.129110298999962, 49.740522983000048 ], [ -123.12855548899999, 49.740317612000091 ], [ -123.12824909499993, 49.740156492000033 ], [ -123.127963091999945, 49.740001388000088 ], [ -123.127524722999951, 49.73964330200004 ], [ -123.127162786999989, 49.739261100000093 ], [ -123.127037125999948, 49.739073310000109 ], [ -123.126932907999944, 49.738832005000035 ], [ -123.126891186999941, 49.738500590000065 ], [ -123.126883809999967, 49.737422098000188 ], [ -123.126859685999975, 49.735036094000087 ], [ -123.129134921999963, 49.735028503000102 ], [ -123.129199082999946, 49.738017706000093 ], [ -123.129311521999938, 49.738195208 ], [ -123.129649194999971, 49.738299506000061 ], [ -123.131470016999927, 49.738303309000052 ], [ -123.131491172999958, 49.739140999000035 ], [ -123.132709598999924, 49.739145112000053 ], [ -123.132738387999922, 49.740793096000075 ], [ -123.133008985999979, 49.740794815000051 ], [ -123.133062498999919, 49.741981582000086 ], [ -123.131637594999958, 49.741981701000057 ], [ -123.131593896999945, 49.741981697000064 ], [ -123.130328098999954, 49.741980798000064 ], [ -123.129321704999981, 49.7419805010001 ], [ -123.129149102999961, 49.741856209000026 ], [ -123.128716798999946, 49.741376798000076 ], [ -123.128703777999974, 49.741300174000081 ], [ -123.128694500999984, 49.741245713000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11404250", "BldgCostT": "7865000", "sL_LossRatio": "0.993420775664785", "sL_AssetLoss": "5938.39", "sL_BldgLoss": "5899.32", "sL_StrLoss": "5527.32", "sL_NStrLoss": "372", "sL_ContLoss": "39.07", "geom_point": "0101000020E6100000DD36BEBCA1AC5EC00EB2762593284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.690990918999944, 50.317785467000057 ], [ -122.689767308999961, 50.314115402000063 ], [ -122.693460843999901, 50.314225934000071 ], [ -122.693411523999927, 50.314901094000085 ], [ -122.694010967999986, 50.314919021000101 ], [ -122.693976199999966, 50.315395060000171 ], [ -122.694683374999968, 50.315416204000044 ], [ -122.694648414999961, 50.3158949480001 ], [ -122.695469177999939, 50.315919484000112 ], [ -122.695410754999912, 50.316719718000044 ], [ -122.69566712299995, 50.316727380000053 ], [ -122.695643177999969, 50.317055383000081 ], [ -122.696577185999914, 50.317083293000088 ], [ -122.696722536999957, 50.315091668000022 ], [ -122.700957339999945, 50.315218118000118 ], [ -122.700976870000019, 50.314950171000078 ], [ -122.703132671999953, 50.315014480000109 ], [ -122.705585411999948, 50.31508759500008 ], [ -122.705507423999947, 50.316084916000051 ], [ -122.705397328999979, 50.316391329000041 ], [ -122.705113662999949, 50.31733606500007 ], [ -122.704411070999939, 50.318651184000046 ], [ -122.702092274999941, 50.318582044000067 ], [ -122.702072750999932, 50.318849990000061 ], [ -122.697593163999912, 50.318716283000086 ], [ -122.696462594, 50.318682510000023 ], [ -122.696432951999952, 50.319088621000141 ], [ -122.696354225999968, 50.320167169000086 ], [ -122.696220587999946, 50.320144300999985 ], [ -122.695744793999921, 50.319963515000083 ], [ -122.69397450699995, 50.319860884000079 ], [ -122.692964796999945, 50.319633012000054 ], [ -122.692319979999922, 50.31940660100004 ], [ -122.69127050699997, 50.318809807000029 ], [ -122.690868967999904, 50.318382067000123 ], [ -122.69087018, 50.318341909000011 ], [ -122.690990918999944, 50.317785467000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19444500", "BldgCostT": "13410000", "sL_LossRatio": "0.987482072592211", "sL_AssetLoss": "13596.5", "sL_BldgLoss": "13426.3", "sL_StrLoss": "11979.3", "sL_NStrLoss": "1447", "sL_ContLoss": "170.2", "geom_point": "0101000020E6100000D50FC1A3D3AD5EC09A1DB12FBC274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.703041110999948, 50.31416113100002 ], [ -122.703302631, 50.310570317000042 ], [ -122.703622395999943, 50.310579853000014 ], [ -122.703690269, 50.309647724000058 ], [ -122.708091485, 50.309778878000017 ], [ -122.708103188999985, 50.309617930000044 ], [ -122.708467312999986, 50.309628773000078 ], [ -122.708648270999916, 50.309634161000112 ], [ -122.708656370999975, 50.309522744000049 ], [ -122.709114753999955, 50.309536391000066 ], [ -122.709119255999923, 50.309474454000025 ], [ -122.709827818999926, 50.309495547000033 ], [ -122.709836931, 50.309370172000115 ], [ -122.710401096999959, 50.309386962000076 ], [ -122.710408913999984, 50.30927938500011 ], [ -122.710992155999946, 50.309296740000015 ], [ -122.710999692999948, 50.309193 ], [ -122.711469345999959, 50.309206973000116 ], [ -122.711477079999923, 50.30910051100004 ], [ -122.712123259999913, 50.30911973300006 ], [ -122.712130857999966, 50.30901512700008 ], [ -122.712701508999913, 50.309032098000102 ], [ -122.712708736999986, 50.308932540000086 ], [ -122.71325449699998, 50.308948769000018 ], [ -122.713261118999966, 50.308857553000117 ], [ -122.713875182, 50.30887581000011 ], [ -122.713884200999928, 50.30875156900003 ], [ -122.714599908999944, 50.308772843000085 ], [ -122.714606973999977, 50.308675486000084 ], [ -122.715227620999926, 50.308693930000061 ], [ -122.715236054999949, 50.308577701000054 ], [ -122.720650248999931, 50.308738454000022 ], [ -122.720776518999955, 50.306995230000041 ], [ -122.723776885999939, 50.307084201000045 ], [ -122.72378482499991, 50.306974501000091 ], [ -122.72383933699993, 50.306221203000092 ], [ -122.724528208999971, 50.306241617000097 ], [ -122.72561401199999, 50.306781001000061 ], [ -122.726119300999983, 50.306863610000022 ], [ -122.726472402999988, 50.307006413000096 ], [ -122.726834114999946, 50.307152699000078 ], [ -122.727772307999942, 50.307380602000087 ], [ -122.729318521, 50.307456007000084 ], [ -122.729332255, 50.307455919000134 ], [ -122.729516669999924, 50.30764815000007 ], [ -122.730262689999961, 50.30799062300013 ], [ -122.73142110699996, 50.308474511000099 ], [ -122.731850527999953, 50.308655380000047 ], [ -122.732170108999981, 50.308790004000116 ], [ -122.732556797999948, 50.309138819000047 ], [ -122.732811443999978, 50.309448624 ], [ -122.732914938999969, 50.309883358 ], [ -122.732958114, 50.310064725000089 ], [ -122.732895722999942, 50.310228339000119 ], [ -122.732022316, 50.309883213 ], [ -122.731427799999949, 50.30972520300007 ], [ -122.730691301999983, 50.30966479900011 ], [ -122.730510609999911, 50.30968186800002 ], [ -122.729477518999929, 50.309779437000024 ], [ -122.728921997999976, 50.309831908000021 ], [ -122.728165588999943, 50.30985162300005 ], [ -122.727449123999975, 50.309689395000071 ], [ -122.726883632999943, 50.309597080000088 ], [ -122.726385971999989, 50.309519357000063 ], [ -122.726326172999961, 50.309518945000065 ], [ -122.726186430999974, 50.309517950000128 ], [ -122.725519854999959, 50.309579183000068 ], [ -122.723950125999963, 50.309741642000091 ], [ -122.723355770999902, 50.309820029000093 ], [ -122.722428836999939, 50.31124912700006 ], [ -122.721514680999945, 50.311583402000039 ], [ -122.720135585999969, 50.311868190000069 ], [ -122.719490057999934, 50.312190343000076 ], [ -122.718825509999974, 50.312522001000069 ], [ -122.718248503999973, 50.312654386000183 ], [ -122.717984693999952, 50.312784820000047 ], [ -122.717813399999969, 50.31286950000009 ], [ -122.716741653999961, 50.313208662000122 ], [ -122.716264888999959, 50.313279601000055 ], [ -122.716036911999979, 50.313224654000059 ], [ -122.715886916000017, 50.313188501000134 ], [ -122.715466688999982, 50.312963502000109 ], [ -122.715216293999958, 50.312558857000106 ], [ -122.715020709999962, 50.312242796000099 ], [ -122.714797287999929, 50.312178698000146 ], [ -122.71434650899999, 50.312187294000076 ], [ -122.71384249499998, 50.312239992000059 ], [ -122.712560286999974, 50.312721306000043 ], [ -122.711619023999916, 50.312980603000035 ], [ -122.709968715999977, 50.313736429000052 ], [ -122.709492117999957, 50.313954695000113 ], [ -122.708732588, 50.313944709000054 ], [ -122.708705001999959, 50.313934382000056 ], [ -122.707677637999979, 50.313549730000098 ], [ -122.707326205999962, 50.313603808000032 ], [ -122.706030348999931, 50.313999923000061 ], [ -122.705855903999947, 50.314245038000067 ], [ -122.703506964999974, 50.314175022000022 ], [ -122.703041110999948, 50.31416113100002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.9966816736691", "sL_AssetLoss": "532.196", "sL_BldgLoss": "530.43", "sL_StrLoss": "514", "sL_NStrLoss": "16.43", "sL_ContLoss": "1.766", "geom_point": "0101000020E6100000C152020719AB5EC0EA080175DA264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.675106067999948, 50.302368548000061 ], [ -122.675628332999921, 50.302377040000117 ], [ -122.675641295999966, 50.30237842300005 ], [ -122.675502688, 50.304266168000034 ], [ -122.671208248999946, 50.304136913000058 ], [ -122.671205922999931, 50.304474239000122 ], [ -122.669576418999895, 50.304469620000084 ], [ -122.671125371999906, 50.303591044 ], [ -122.672066364999978, 50.30316163 ], [ -122.672133337999981, 50.303131071000053 ], [ -122.672418033999946, 50.303044267000068 ], [ -122.672848374999958, 50.303022126000073 ], [ -122.673694663999981, 50.302695851000045 ], [ -122.674565720999951, 50.302453059000115 ], [ -122.675106067999948, 50.302368548000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6633833", "BldgCostT": "4103333", "sL_LossRatio": "0.984641929891671", "sL_AssetLoss": "2457.34", "sL_BldgLoss": "2419.6", "sL_StrLoss": "2177", "sL_NStrLoss": "242.6", "sL_ContLoss": "37.74", "geom_point": "0101000020E6100000074FD7C9CFAA5EC07DE8C41669274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.666059893999915, 50.308576911000088 ], [ -122.665623704999973, 50.308522783000043 ], [ -122.665174418999939, 50.308556999000118 ], [ -122.665107896, 50.308577168000042 ], [ -122.665067839999921, 50.30840616200004 ], [ -122.666065607999911, 50.306731364 ], [ -122.666633450999925, 50.306095351000089 ], [ -122.669575924999961, 50.306184050000091 ], [ -122.669501839999924, 50.307191112000098 ], [ -122.672757776999987, 50.307289168000082 ], [ -122.672705012999984, 50.308007088000018 ], [ -122.672750922999938, 50.308008470000068 ], [ -122.6726620109999, 50.309218193000063 ], [ -122.66787856099991, 50.309338792000062 ], [ -122.667387521999942, 50.30941099100005 ], [ -122.667515009999988, 50.309354488000039 ], [ -122.667585299, 50.309166499000071 ], [ -122.667474313999918, 50.309076788000013 ], [ -122.666913697999959, 50.309029813000109 ], [ -122.666059893999915, 50.308576911000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.845955987424979", "sL_AssetLoss": "3499", "sL_BldgLoss": "2960", "sL_StrLoss": "1740", "sL_NStrLoss": "1220", "sL_ContLoss": "539", "geom_point": "0101000020E61000003744AA62C9CF5EC0D349D7C805BF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.24660559199998, 49.491419655000065 ], [ -123.247520149999957, 49.491417701000088 ], [ -123.247523942999976, 49.492170289000079 ], [ -123.247502593999968, 49.492227276000058 ], [ -123.247109979999948, 49.492228116000106 ], [ -123.24711541399999, 49.493307487000088 ], [ -123.246122853999921, 49.493309603000029 ], [ -123.245872630999898, 49.493310136000048 ], [ -123.24586722399999, 49.492230764000062 ], [ -123.246150156999946, 49.492230162000105 ], [ -123.24628147599995, 49.492229882000089 ], [ -123.24628014699999, 49.491965040000146 ], [ -123.246277414999952, 49.49142035400007 ], [ -123.24660559199998, 49.491419655000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31546949", "BldgCostT": "21127212", "sL_LossRatio": "0.783591766280442", "sL_AssetLoss": "239843", "sL_BldgLoss": "187939", "sL_StrLoss": "101511", "sL_NStrLoss": "86428", "sL_ContLoss": "51904", "geom_point": "0101000020E61000005FFF7DDF22CD5EC03DFFC9215ACF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.198787122999974, 49.630210705000053 ], [ -123.198786024999904, 49.629940868000098 ], [ -123.197124345999953, 49.629943710000063 ], [ -123.197122167999936, 49.629404035000107 ], [ -123.196706751999969, 49.629404742000105 ], [ -123.196705665999929, 49.629134904000111 ], [ -123.195874839999973, 49.629136312000085 ], [ -123.195872675999965, 49.628596638000047 ], [ -123.19545726799997, 49.628597340000113 ], [ -123.195454028999947, 49.627787827000148 ], [ -123.19503862699996, 49.627788527000078 ], [ -123.195031085999972, 49.625899666000059 ], [ -123.195446470999968, 49.625898966000115 ], [ -123.195442153999949, 49.624819615000064 ], [ -123.196443038, 49.624817921000094 ], [ -123.197103658999978, 49.624816798 ], [ -123.197108012999976, 49.625896148000088 ], [ -123.19669262799998, 49.625896855000107 ], [ -123.196696972999973, 49.626976205000062 ], [ -123.197112366999932, 49.6269754980001 ], [ -123.1971112799999, 49.626705661000095 ], [ -123.19836573100001, 49.626703519000081 ], [ -123.198430150999911, 49.625645667000072 ], [ -123.197492333999975, 49.625621519000035 ], [ -123.197654139999926, 49.622965216000068 ], [ -123.197711328999944, 49.622026277000032 ], [ -123.199571976999948, 49.622074179000087 ], [ -123.199621695999937, 49.621257320000012 ], [ -123.201279894999985, 49.62129998400011 ], [ -123.2014144499999, 49.619087858000128 ], [ -123.201556065999966, 49.619091501000071 ], [ -123.201609090999909, 49.618219660000094 ], [ -123.202079444999953, 49.618231757000046 ], [ -123.202098727999925, 49.617914622000043 ], [ -123.202106495999928, 49.617786871000106 ], [ -123.202637750999941, 49.617800531000043 ], [ -123.2026673, 49.617314484000133 ], [ -123.204700672999962, 49.61736674500002 ], [ -123.204764374, 49.616318132000032 ], [ -123.204958263999941, 49.616323114000117 ], [ -123.204960104999941, 49.616292810000118 ], [ -123.20495732, 49.615628613000077 ], [ -123.204542021999913, 49.615629347000038 ], [ -123.204539762999929, 49.615089671000135 ], [ -123.203709175999961, 49.61509113600011 ], [ -123.203708051999911, 49.614821299000013 ], [ -123.203292760999958, 49.614822029000067 ], [ -123.20328714899992, 49.613472839000032 ], [ -123.203702429999979, 49.613472109000071 ], [ -123.203700178999938, 49.612932432000051 ], [ -123.204115453999961, 49.612931701000065 ], [ -123.204114326999928, 49.612661863000049 ], [ -123.20452960099999, 49.612661130000077 ], [ -123.204527341999963, 49.612121453000029 ], [ -123.204942608999914, 49.612120720000071 ], [ -123.204941477999924, 49.61185088100008 ], [ -123.205356745999921, 49.611850146000101 ], [ -123.20535561199992, 49.611580307000118 ], [ -123.205770874, 49.61157957000011 ], [ -123.205768601999921, 49.611039894000037 ], [ -123.206183860999928, 49.611039155000078 ], [ -123.206182723999973, 49.61076931700007 ], [ -123.20659798, 49.610768577000037 ], [ -123.206593417999954, 49.609689225000047 ], [ -123.207008666999968, 49.609688483000099 ], [ -123.207007522999916, 49.609418644000058 ], [ -123.20740749499997, 49.609417928000092 ], [ -123.207422766999983, 49.609417901000086 ], [ -123.207422697999931, 49.609401530000092 ], [ -123.20742193399991, 49.609221327000093 ], [ -123.20742162399992, 49.609148063000063 ], [ -123.207670153999985, 49.609147618000051 ], [ -123.207836864999948, 49.609147318000019 ], [ -123.207836368999949, 49.609030182000033 ], [ -123.207835717999927, 49.608877481000036 ], [ -123.208095162999939, 49.608877014000022 ], [ -123.208250959999972, 49.608876734000027 ], [ -123.208250632999949, 49.608800043000066 ], [ -123.208249810000027, 49.60860689599999 ], [ -123.208642179999927, 49.608606189000035 ], [ -123.208665047999929, 49.608606148000085 ], [ -123.208665, 49.608594892000042 ], [ -123.208663896999909, 49.60833631000002 ], [ -123.209234925999965, 49.608335280000027 ], [ -123.211155311999974, 49.608331792000072 ], [ -123.211156363999962, 49.608575156000029 ], [ -123.211157642999979, 49.608871468000075 ], [ -123.211196996999945, 49.608871396000012 ], [ -123.21121475299999, 49.608578369000035 ], [ -123.211226968999966, 49.60837676900006 ], [ -123.21187517299991, 49.608393385000049 ], [ -123.211878728999949, 49.608334689000095 ], [ -123.211880545999975, 49.608304685000085 ], [ -123.213466752999921, 49.608345330000084 ], [ -123.21691728399999, 49.608433668000075 ], [ -123.216509539999919, 49.608869738000131 ], [ -123.216121810999965, 49.609284394000049 ], [ -123.216110199999946, 49.609859806000074 ], [ -123.216376091999919, 49.610174492000041 ], [ -123.216902079999969, 49.610523497000017 ], [ -123.216946781999951, 49.611135904000108 ], [ -123.216767118999925, 49.611288306000063 ], [ -123.215521301999942, 49.611228391000104 ], [ -123.214996906999986, 49.611274 ], [ -123.21463649899998, 49.611553186000059 ], [ -123.214887110999911, 49.611867892000092 ], [ -123.214793279, 49.612299498000091 ], [ -123.214225310999936, 49.6123364850001 ], [ -123.214158786000013, 49.612378088000064 ], [ -123.214079805000011, 49.612400848000036 ], [ -123.214079921999897, 49.612427412000066 ], [ -123.213590006999979, 49.612733802000037 ], [ -123.21338273299996, 49.612983023000034 ], [ -123.213324334999967, 49.613031562000046 ], [ -123.213252179999955, 49.613070679000025 ], [ -123.21325223299999, 49.61308282300012 ], [ -123.212804315999946, 49.613337700000045 ], [ -123.212428561999971, 49.613687620000121 ], [ -123.212424301999945, 49.613687510000069 ], [ -123.21242431899995, 49.61369157000005 ], [ -123.212386979999934, 49.613726341000145 ], [ -123.212162649999925, 49.61372675299999 ], [ -123.212047135999953, 49.613804963000085 ], [ -123.212009707000036, 49.613846317000075 ], [ -123.212010359999908, 49.613996872000016 ], [ -123.21187320899999, 49.613997123000075 ], [ -123.211783836999984, 49.61409586300006 ], [ -123.211595830999926, 49.614171981000069 ], [ -123.211596243999907, 49.614267469000026 ], [ -123.211364654999969, 49.61426789300009 ], [ -123.211181684999985, 49.614436483000084 ], [ -123.211182123999919, 49.614538065 ], [ -123.211071218999948, 49.614538267000107 ], [ -123.210768036999951, 49.614817616000053 ], [ -123.210769063999962, 49.615055603 ], [ -123.210735428999953, 49.615078559000104 ], [ -123.210150383999945, 49.615079623000035 ], [ -123.210146943, 49.615079629000071 ], [ -123.210140236, 49.615082163000089 ], [ -123.210123193999962, 49.615079672000071 ], [ -123.209107988999946, 49.615081511000021 ], [ -123.209106670999958, 49.614773144 ], [ -123.209070835999952, 49.614753662000027 ], [ -123.209000734999961, 49.614615663000095 ], [ -123.209103924999965, 49.614131522000065 ], [ -123.209101660999977, 49.613602321000037 ], [ -123.207855673999987, 49.613570350000046 ], [ -123.207863396999926, 49.615386436000087 ], [ -123.209756979999966, 49.615435017000053 ], [ -123.210363236999925, 49.615450563000095 ], [ -123.210266793999978, 49.615609310000124 ], [ -123.21013399899999, 49.617039214000044 ], [ -123.209803512999912, 49.617453700000056 ], [ -123.209458107999978, 49.617643086000029 ], [ -123.20948859399999, 49.617930792000074 ], [ -123.209725119999945, 49.618199901000068 ], [ -123.209697109999965, 49.618470604000045 ], [ -123.209159379999974, 49.618830892000084 ], [ -123.20852268599999, 49.619030291000101 ], [ -123.207156510999965, 49.619716693000086 ], [ -123.20633949599997, 49.620014390000101 ], [ -123.206147393999942, 49.620149697000066 ], [ -123.205858486999944, 49.6206353090001 ], [ -123.205831291999957, 49.62077061100014 ], [ -123.206164184999977, 49.620914492000018 ], [ -123.207456396999945, 49.621855890000106 ], [ -123.206626193999952, 49.62223621100005 ], [ -123.206256802999988, 49.623153303000123 ], [ -123.206742785999936, 49.623566395000161 ], [ -123.208282287999964, 49.624022104000062 ], [ -123.20861351, 49.624039204000034 ], [ -123.208599899999953, 49.624264204000013 ], [ -123.208420683999947, 49.624274195000034 ], [ -123.20842137599999, 49.624174494000094 ], [ -123.20718922099995, 49.624231506000065 ], [ -123.20710580099994, 49.624294095000074 ], [ -123.206929112999958, 49.624996305000082 ], [ -123.20719579899999, 49.625715494000119 ], [ -123.207014686999983, 49.62585079100009 ], [ -123.207236976, 49.626011693000059 ], [ -123.207265903999939, 49.626255292000103 ], [ -123.207643002999987, 49.626847686000133 ], [ -123.207659298999971, 49.627460206000094 ], [ -123.207523591000012, 49.628215002000097 ], [ -123.207761521999913, 49.628556806000063 ], [ -123.207762493999965, 49.628952696000042 ], [ -123.20804129599999, 49.629347207000123 ], [ -123.208387819000038, 49.629553697000112 ], [ -123.20840167899999, 49.629605564000016 ], [ -123.20705244599999, 49.629570946000037 ], [ -123.20680589199992, 49.629564619000092 ], [ -123.206770062999965, 49.630154678000039 ], [ -123.205752516999965, 49.63012855699999 ], [ -123.205740729999945, 49.630322602000071 ], [ -123.200864192999958, 49.630197287000094 ], [ -123.200864232999962, 49.630207121000069 ], [ -123.198787122999974, 49.630210705000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.926444833625219", "sL_AssetLoss": "2855", "sL_BldgLoss": "2645", "sL_StrLoss": "2060", "sL_NStrLoss": "585", "sL_ContLoss": "210", "geom_point": "0101000020E610000017024E298ECC5EC065568C4600E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.196326562999957, 49.814245130000103 ], [ -123.196337799999952, 49.814061541000079 ], [ -123.196189068999942, 49.814057725000119 ], [ -123.196279950999966, 49.812572995000025 ], [ -123.193488865999953, 49.812501359000123 ], [ -123.193517532000016, 49.812033468000052 ], [ -123.193217084999958, 49.812025752000082 ], [ -123.193255353999945, 49.811401208000056 ], [ -123.197956879999964, 49.811488492000088 ], [ -123.197951838, 49.814286809000066 ], [ -123.196326562999957, 49.814245130000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.849592674880496", "sL_AssetLoss": "14853", "sL_BldgLoss": "12619", "sL_StrLoss": "7976", "sL_NStrLoss": "4643", "sL_ContLoss": "2234", "geom_point": "0101000020E6100000CA63931D57D05EC02962AE98D3C04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.25921964599992, 49.510449320000177 ], [ -123.259215907999987, 49.509741573000092 ], [ -123.259029165999962, 49.509741991000105 ], [ -123.258801507999962, 49.509742501000076 ], [ -123.25879761799996, 49.509005012000067 ], [ -123.258795812999963, 49.508663134000095 ], [ -123.25859547499999, 49.508663582000061 ], [ -123.258381423999978, 49.508664061000019 ], [ -123.258380066999962, 49.508406433000033 ], [ -123.258380001999953, 49.50839421800007 ], [ -123.258368921999974, 49.508394243000076 ], [ -123.257136838999912, 49.508396989000097 ], [ -123.257135423999955, 49.508127146000106 ], [ -123.25672103899997, 49.508128066000069 ], [ -123.256719625999921, 49.507858224000096 ], [ -123.256305242999986, 49.507859143000097 ], [ -123.256303832999919, 49.50758930100006 ], [ -123.255889451999977, 49.507590218000054 ], [ -123.25588804399996, 49.507320377000035 ], [ -123.255473664999968, 49.50732129200005 ], [ -123.255470854999928, 49.506781608000054 ], [ -123.255056480999954, 49.506782523000069 ], [ -123.255055094999975, 49.506515913000072 ], [ -123.255055079000016, 49.506512680000064 ], [ -123.255048840999976, 49.506512694000044 ], [ -123.253811961999929, 49.506515414000091 ], [ -123.253809309999951, 49.506002944000073 ], [ -123.253809169999954, 49.505975730000053 ], [ -123.253730134999955, 49.505975904000131 ], [ -123.25298043399999, 49.505977545000093 ], [ -123.252979103999962, 49.505719404000075 ], [ -123.252979043, 49.50570770300002 ], [ -123.252945059999902, 49.505707778000072 ], [ -123.25256467899996, 49.505708609000074 ], [ -123.252563868999957, 49.505551399000062 ], [ -123.252563288999951, 49.505438767000037 ], [ -123.252382005999948, 49.505439162000066 ], [ -123.252148924999943, 49.505439670000072 ], [ -123.252147848999954, 49.505230291 ], [ -123.252147537999946, 49.505169828000085 ], [ -123.252087433, 49.50516995900005 ], [ -123.251733178999984, 49.505170730000046 ], [ -123.25173134899994, 49.504814365000072 ], [ -123.251730408999933, 49.504631046000043 ], [ -123.251543207999973, 49.504631454000098 ], [ -123.2504873399999, 49.504633744000024 ], [ -123.250485961999985, 49.504363901000033 ], [ -123.249790258999923, 49.504365407000058 ], [ -123.249657253999928, 49.504365693000061 ], [ -123.249655880999967, 49.504095851000116 ], [ -123.248827177, 49.504097637000015 ], [ -123.248825165999946, 49.503701158000069 ], [ -123.24882444, 49.503557952000044 ], [ -123.24861613799996, 49.503558400000081 ], [ -123.248410093999937, 49.503558842000103 ], [ -123.248409270999915, 49.503396292000026 ], [ -123.248407361999924, 49.503019157000068 ], [ -123.248124453999935, 49.503019765000019 ], [ -123.247993018999921, 49.503020047000092 ], [ -123.247989946999965, 49.502412435000103 ], [ -123.247988926999966, 49.502210519000101 ], [ -123.249231934999926, 49.502207848000126 ], [ -123.249233305999937, 49.502477691000117 ], [ -123.249647644, 49.502476797000028 ], [ -123.249649016999939, 49.502746639000122 ], [ -123.250063357, 49.502745744000038 ], [ -123.250064731999913, 49.50301558700005 ], [ -123.250592168999958, 49.503014446000101 ], [ -123.251307759999946, 49.503012893000076 ], [ -123.251309142999958, 49.503282735000077 ], [ -123.251723487, 49.503281835000095 ], [ -123.251724871999969, 49.503551677000132 ], [ -123.252095522000019, 49.503550870000034 ], [ -123.25213934099996, 49.503574604000043 ], [ -123.252143378999946, 49.504360301000055 ], [ -123.252972086999961, 49.504358492000129 ], [ -123.252973477999959, 49.504628334000131 ], [ -123.253387833999966, 49.504627428000063 ], [ -123.253389227999961, 49.504897270000058 ], [ -123.254165264, 49.504895568000116 ], [ -123.254501884999954, 49.505092091000073 ], [ -123.254633605999985, 49.505145481000028 ], [ -123.254633702999982, 49.505164383000121 ], [ -123.254679988999939, 49.505164280000031 ], [ -123.255048845999966, 49.505313787000027 ], [ -123.255049465999889, 49.505433313000012 ], [ -123.255342147999926, 49.50543266600004 ], [ -123.255879334999975, 49.50565039300006 ], [ -123.255881008999893, 49.505971167000077 ], [ -123.25625429499999, 49.505970341000115 ], [ -123.256262086999939, 49.505977894000104 ], [ -123.256711143999937, 49.50623726000007 ], [ -123.256712565999948, 49.506509014000052 ], [ -123.257126938999974, 49.506508094000068 ], [ -123.257128351999967, 49.506777936000056 ], [ -123.257690177999933, 49.506776686000087 ], [ -123.257957655999945, 49.506881728000103 ], [ -123.257958519999931, 49.507045934000118 ], [ -123.259106958999922, 49.507043368000019 ], [ -123.259617286999955, 49.50728054700005 ], [ -123.259617453999937, 49.507312068000033 ], [ -123.259684783999944, 49.507311917000102 ], [ -123.260032693999918, 49.507473607000087 ], [ -123.260033262999954, 49.507580978000121 ], [ -123.26044764399991, 49.507580047000069 ], [ -123.260450508999952, 49.508119730000033 ], [ -123.260750093999945, 49.508119056000034 ], [ -123.260748480999936, 49.508135601000049 ], [ -123.260865141999886, 49.508165302000052 ], [ -123.260870632999925, 49.509198165000036 ], [ -123.260456237999961, 49.50919909800006 ], [ -123.260467701999971, 49.51135783100009 ], [ -123.25947284199998, 49.511360067000055 ], [ -123.25922446099996, 49.511360625000059 ], [ -123.25921964599992, 49.510449320000177 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.857516339869281", "sL_AssetLoss": "76.5", "sL_BldgLoss": "65.6", "sL_StrLoss": "10.4", "sL_NStrLoss": "55.2", "sL_ContLoss": "10.9", "geom_point": "0101000020E6100000F9F66C25CDCA5EC0E60A6B3AEDF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.168870713999979, 49.945843601 ], [ -123.16783329499999, 49.944396592000018 ], [ -123.167593779999933, 49.943875304000045 ], [ -123.167557914999961, 49.943601864000087 ], [ -123.169150524999964, 49.943643002000044 ], [ -123.169057005999932, 49.945151555000045 ], [ -123.169975011999924, 49.945150213000019 ], [ -123.169977859999932, 49.945959682000101 ], [ -123.169006817999971, 49.945961102000112 ], [ -123.168997929999989, 49.946104478000017 ], [ -123.168870713999979, 49.945843601 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "0.970574439907295", "sL_AssetLoss": "7248.8", "sL_BldgLoss": "7035.5", "sL_StrLoss": "6030", "sL_NStrLoss": "1005.5", "sL_ContLoss": "213.3", "geom_point": "0101000020E6100000A7B3309716CB5EC0CFDCE0973CE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.170252604999973, 49.817040834000068 ], [ -123.170267139999936, 49.816805571000074 ], [ -123.170060812999935, 49.816800230000084 ], [ -123.170081520999986, 49.816465053000059 ], [ -123.169810024999933, 49.816458024000077 ], [ -123.170032103, 49.812863804000081 ], [ -123.170501255999937, 49.812875951000066 ], [ -123.170587761999968, 49.811475514000094 ], [ -123.17092315, 49.811484197 ], [ -123.170925149, 49.811451823000027 ], [ -123.176476904999916, 49.811595396000072 ], [ -123.176369220999945, 49.813342318000096 ], [ -123.17655811399996, 49.813347198000081 ], [ -123.176336543999952, 49.816941428000042 ], [ -123.175820841999979, 49.816928104000112 ], [ -123.175805036999947, 49.817184440000062 ], [ -123.170252604999973, 49.817040834000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.985375712624173", "sL_AssetLoss": "524.47", "sL_BldgLoss": "516.8", "sL_StrLoss": "465", "sL_NStrLoss": "51.8", "sL_ContLoss": "7.67", "geom_point": "0101000020E6100000E023ACD7BECA5EC0C4767B3901F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16744213, 49.938192074000014 ], [ -123.167440074999945, 49.937598813000093 ], [ -123.167022015999976, 49.937599416000097 ], [ -123.167018284, 49.93652012300003 ], [ -123.168272434999949, 49.936518310000039 ], [ -123.168275253999951, 49.937327780000047 ], [ -123.168693310999956, 49.937327173000014 ], [ -123.168698020999926, 49.938676289000057 ], [ -123.167985109999933, 49.938677324000011 ], [ -123.167713887999966, 49.938316605000054 ], [ -123.16744213, 49.938192074000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.814288883958287", "sL_AssetLoss": "4507", "sL_BldgLoss": "3670", "sL_StrLoss": "1960", "sL_NStrLoss": "1710", "sL_ContLoss": "837", "geom_point": "0101000020E610000060BC72FF49CF5EC05B29803965C54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.238242746999973, 49.542977492000084 ], [ -123.23824012399993, 49.542437810000123 ], [ -123.237825445999945, 49.54243866300007 ], [ -123.23782020799996, 49.541359300000067 ], [ -123.239478876999925, 49.541355879000029 ], [ -123.239480196999963, 49.541625720000113 ], [ -123.239894864999911, 49.541624861000095 ], [ -123.239901469999964, 49.542974064000077 ], [ -123.238242746999973, 49.542977492000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4719750", "BldgCostT": "3255000", "sL_LossRatio": "0.984446536008685", "sL_AssetLoss": "3601.77", "sL_BldgLoss": "3545.75", "sL_StrLoss": "3220.55", "sL_NStrLoss": "325.2", "sL_ContLoss": "56.02", "geom_point": "0101000020E610000068501B723FD95EC094FEB9C3810E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.39223638799993, 50.115717787000058 ], [ -123.392276705, 50.115014498000022 ], [ -123.391401802999937, 50.114993767000037 ], [ -123.391435508999948, 50.114405998000052 ], [ -123.391003424999951, 50.114395757000054 ], [ -123.391103421999901, 50.112652179000065 ], [ -123.391209493999924, 50.110802556000095 ], [ -123.396798425999947, 50.110934890000067 ], [ -123.396764791999928, 50.111522663000109 ], [ -123.397196848999926, 50.111532882000105 ], [ -123.397196267999945, 50.111543062000116 ], [ -123.397156610999957, 50.112236175000085 ], [ -123.398031463, 50.112256860000109 ], [ -123.397825924999907, 50.11585006800005 ], [ -123.39223638799993, 50.115717787000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9956666", "BldgCostT": "6866666", "sL_LossRatio": "0.903999069081882", "sL_AssetLoss": "25781", "sL_BldgLoss": "23306", "sL_StrLoss": "17620", "sL_NStrLoss": "5686", "sL_ContLoss": "2475", "geom_point": "0101000020E6100000BFE7B09073CB5EC0630E407284F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.176804914999934, 49.885800543000066 ], [ -123.177008175999958, 49.882508039000058 ], [ -123.176904024999914, 49.882505354000067 ], [ -123.17700725899999, 49.880833005000049 ], [ -123.175965497999982, 49.880806134000075 ], [ -123.176187403999961, 49.87721222100005 ], [ -123.176315965999905, 49.877215537000062 ], [ -123.176346926999912, 49.876714024000179 ], [ -123.176376581999946, 49.876714788000086 ], [ -123.17641866299999, 49.876033123000092 ], [ -123.176462946999905, 49.876034265000051 ], [ -123.176513507999928, 49.875215224000058 ], [ -123.176569832999931, 49.875216677000061 ], [ -123.176594439999988, 49.874818034000093 ], [ -123.175346353999927, 49.874785831000096 ], [ -123.175375269999961, 49.874317592000082 ], [ -123.175732212999961, 49.874340938000053 ], [ -123.176107105999947, 49.873915290000106 ], [ -123.17603928099993, 49.872805487000079 ], [ -123.176033386999933, 49.872709006000072 ], [ -123.17748704, 49.872714512000066 ], [ -123.177548122999966, 49.872792059000048 ], [ -123.178731114999948, 49.872856256000105 ], [ -123.179053013999976, 49.872911199000058 ], [ -123.179155644, 49.872879290000078 ], [ -123.180361901999959, 49.872944732000093 ], [ -123.180364080999937, 49.873745793000104 ], [ -123.180616203999975, 49.874033501000078 ], [ -123.1814382, 49.874473598000044 ], [ -123.181817098999915, 49.874967796000149 ], [ -123.18190088299994, 49.875263998000079 ], [ -123.181890596999978, 49.876118596000097 ], [ -123.18154988299996, 49.878367400000059 ], [ -123.181556789999959, 49.879807291000112 ], [ -123.181685314, 49.880930995000035 ], [ -123.182303713999943, 49.882144395000104 ], [ -123.18213747499999, 49.882765395000078 ], [ -123.180791912999965, 49.883909008000096 ], [ -123.180334887999948, 49.884800607000059 ], [ -123.180228899999989, 49.885852988000067 ], [ -123.180230836999954, 49.885888837000046 ], [ -123.176804914999934, 49.885800543000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "0.887868789748004", "sL_AssetLoss": "20913", "sL_BldgLoss": "18568", "sL_StrLoss": "13170", "sL_NStrLoss": "5398", "sL_ContLoss": "2345", "geom_point": "0101000020E61000003E77C4196ACF5EC0DD1A01AAF2EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.240944183999915, 49.877077056000061 ], [ -123.24097117599996, 49.876629603000019 ], [ -123.237096072999947, 49.876531857000074 ], [ -123.237174716999931, 49.875229918000059 ], [ -123.236181221999956, 49.875204835000083 ], [ -123.236234504999956, 49.874322992000018 ], [ -123.236398372999986, 49.871610774000061 ], [ -123.241957631, 49.871751012000153 ], [ -123.241879129999973, 49.873052960000059 ], [ -123.242872579999954, 49.873077990000084 ], [ -123.242845608999986, 49.873525447000119 ], [ -123.244411552999964, 49.873564883000093 ], [ -123.244677599999974, 49.874348304000101 ], [ -123.245194887999929, 49.874905102000085 ], [ -123.245740796999897, 49.875209906000045 ], [ -123.246381299999953, 49.875415006 ], [ -123.246610914999962, 49.875443001000136 ], [ -123.246504118999908, 49.877217062000042 ], [ -123.24450458199999, 49.8771667440001 ], [ -123.240944183999915, 49.877077056000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49315886", "BldgCostT": "32987079", "sL_LossRatio": "0.825843681049167", "sL_AssetLoss": "167782.6", "sL_BldgLoss": "138562.2", "sL_StrLoss": "93200.2", "sL_NStrLoss": "45362", "sL_ContLoss": "29220.4", "geom_point": "0101000020E6100000550AAADB53D15EC0A226553687F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.266866136999965, 49.901245383000095 ], [ -123.266877424999976, 49.901056572000122 ], [ -123.262957606999962, 49.90095868 ], [ -123.263059985999973, 49.899248707000041 ], [ -123.261797773999945, 49.899217155000066 ], [ -123.261840943999943, 49.898496406000042 ], [ -123.256607131999957, 49.898365419000086 ], [ -123.256652784000025, 49.897604669000025 ], [ -123.253970882999937, 49.897537452000051 ], [ -123.254186744, 49.893943466000088 ], [ -123.259748768999941, 49.894082795000095 ], [ -123.259703172999977, 49.894843551000079 ], [ -123.262384921999939, 49.894910627000108 ], [ -123.262341763999984, 49.895631380000097 ], [ -123.262948008999942, 49.895646535000054 ], [ -123.262941883999929, 49.894519297000038 ], [ -123.260853459999936, 49.894524014000062 ], [ -123.260852006, 49.894254191000094 ], [ -123.26001664099999, 49.894256067000072 ], [ -123.260015190999965, 49.893986243000079 ], [ -123.259597511, 49.893987179000057 ], [ -123.259593805999941, 49.893296619000083 ], [ -123.25959317, 49.893177708000032 ], [ -123.261263861999964, 49.893173956000055 ], [ -123.261265316999982, 49.893443779000137 ], [ -123.262236963999925, 49.893441585000126 ], [ -123.262418914999969, 49.890402758000043 ], [ -123.263755009999954, 49.890436155000089 ], [ -123.263754687999935, 49.890377333000096 ], [ -123.263049480999953, 49.890359708000091 ], [ -123.26326459299996, 49.886765668000116 ], [ -123.265334848999927, 49.886817399000101 ], [ -123.265387754999935, 49.885932719000053 ], [ -123.270948839999988, 49.886071482000055 ], [ -123.270907058999967, 49.886771580000094 ], [ -123.276170094999927, 49.886902645000056 ], [ -123.275960085999927, 49.890428060000019 ], [ -123.276490105999983, 49.890441245000119 ], [ -123.276321602999985, 49.893270041000058 ], [ -123.277105462999899, 49.893289536000047 ], [ -123.277066183, 49.893949104000043 ], [ -123.277557830000021, 49.893961329000085 ], [ -123.277557738999974, 49.893945579000061 ], [ -123.277140060999969, 49.893946579000016 ], [ -123.277135424999969, 49.893137109000122 ], [ -123.278806113999963, 49.893133103000082 ], [ -123.278809221999964, 49.893672750000079 ], [ -123.279226898999951, 49.893671745000105 ], [ -123.279228260999915, 49.893907690000084 ], [ -123.283186878999942, 49.894005977000113 ], [ -123.283168377999942, 49.894317320000027 ], [ -123.286635572999913, 49.894403287000038 ], [ -123.286587791000017, 49.895208401000069 ], [ -123.288297262999919, 49.895250746000038 ], [ -123.288124677999988, 49.898160372000149 ], [ -123.288084078999958, 49.898844793000059 ], [ -123.286053517999932, 49.898794490000036 ], [ -123.286019924999948, 49.899360340000023 ], [ -123.280457178999924, 49.89922234600008 ], [ -123.280458933, 49.899192842000076 ], [ -123.27991495899991, 49.899179332000053 ], [ -123.279926047999965, 49.898992968000073 ], [ -123.279096885999977, 49.898972370000116 ], [ -123.278998713, 49.900621809000064 ], [ -123.273435831999933, 49.900483458000032 ], [ -123.273439289999928, 49.900425488000046 ], [ -123.27291941799993, 49.900412545000044 ], [ -123.273009874999957, 49.898896169000061 ], [ -123.272767332999976, 49.898890130000041 ], [ -123.272738682999943, 49.899370365000046 ], [ -123.27254951499999, 49.8993656540001 ], [ -123.272429088999914, 49.901384068000027 ], [ -123.266866136999965, 49.901245383000095 ] ], [ [ -123.27091495400002, 49.890529258000043 ], [ -123.270916431999964, 49.890504499000016 ], [ -123.26904692, 49.890457887000089 ], [ -123.268613467999941, 49.890458891000037 ], [ -123.268611096999948, 49.89049858900006 ], [ -123.267155191999947, 49.890462260000028 ], [ -123.267096390999953, 49.890462396 ], [ -123.267096382999966, 49.890460792000098 ], [ -123.265843245999974, 49.890429507000071 ], [ -123.265843568999983, 49.890488328000046 ], [ -123.267980535, 49.890541670000097 ], [ -123.267904769999973, 49.891809666000022 ], [ -123.26835682, 49.891808621000045 ], [ -123.268358316, 49.89207844500006 ], [ -123.268775979999972, 49.892077478000097 ], [ -123.26878029099997, 49.892853564000077 ], [ -123.27003349099995, 49.892884815000059 ], [ -123.270033486999964, 49.892884037000037 ], [ -123.270074865999931, 49.892883941 ], [ -123.270216489999925, 49.890511847000084 ], [ -123.27091495400002, 49.890529258000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.856920684292379", "sL_AssetLoss": "2572", "sL_BldgLoss": "2204", "sL_StrLoss": "1520", "sL_NStrLoss": "684", "sL_ContLoss": "368", "geom_point": "0101000020E6100000026C3813B0D05EC00C52F885BAC14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.26048919599999, 49.515405455000071 ], [ -123.260483463999918, 49.514326089000122 ], [ -123.260259037999973, 49.514326595000057 ], [ -123.260069025999954, 49.514327022000025 ], [ -123.260065168999958, 49.513599607000096 ], [ -123.260061872, 49.512977813000056 ], [ -123.2599035369999, 49.512978170000096 ], [ -123.259647445999988, 49.512978745000034 ], [ -123.25964212299999, 49.511973047 ], [ -123.259640302999912, 49.511629536000072 ], [ -123.260883547999981, 49.511626740000104 ], [ -123.260887853999989, 49.512436265000069 ], [ -123.261302276, 49.51243532899999 ], [ -123.261306588999972, 49.51324485400005 ], [ -123.26172101799996, 49.513243917000054 ], [ -123.26173253599994, 49.515402649000109 ], [ -123.26048919599999, 49.515405455000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724166", "BldgCostT": "6016666", "sL_LossRatio": "0.984473376826871", "sL_AssetLoss": "7020.2", "sL_BldgLoss": "6911.2", "sL_StrLoss": "6430", "sL_NStrLoss": "481.2", "sL_ContLoss": "109", "geom_point": "0101000020E6100000D6F5F2D822CC5EC0E9509F47B9F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.187174444, 49.924701425000052 ], [ -123.187189951999969, 49.924449544 ], [ -123.186370430999915, 49.924428505000051 ], [ -123.186383262999954, 49.924220128000087 ], [ -123.18627714099992, 49.924217403000057 ], [ -123.186498447999952, 49.92062368300008 ], [ -123.18670917699994, 49.920629093000088 ], [ -123.186776179999981, 49.919540858000055 ], [ -123.185632914999942, 49.919511497000066 ], [ -123.18585425099999, 49.915917756000141 ], [ -123.187560993999966, 49.915961584000037 ], [ -123.187672980999963, 49.914141996000133 ], [ -123.193237256999907, 49.914284698000095 ], [ -123.193028499999954, 49.917683303000054 ], [ -123.193722954999913, 49.917701093000076 ], [ -123.193502228999961, 49.921294841000091 ], [ -123.193488367999976, 49.921294487000125 ], [ -123.193336766999934, 49.923762439000058 ], [ -123.19324395299995, 49.923760062000056 ], [ -123.193216388999943, 49.924208742000054 ], [ -123.192779734999945, 49.924197556000045 ], [ -123.192740005999894, 49.924844151000038 ], [ -123.187174444, 49.924701425000052 ] ], [ [ -123.192734690999956, 49.918634098000098 ], [ -123.192311477, 49.917664199000072 ], [ -123.191638210999912, 49.916000689000043 ], [ -123.191077913999948, 49.91536410300008 ], [ -123.190853593999975, 49.915193208000069 ], [ -123.19065888799993, 49.915193212000062 ], [ -123.190561687999988, 49.915301394000039 ], [ -123.19055251199994, 49.916650093000023 ], [ -123.190220114999974, 49.917064594000095 ], [ -123.188954602999971, 49.917642785000098 ], [ -123.188524009999924, 49.917994582000084 ], [ -123.18842839599999, 49.918075795000028 ], [ -123.188457508999988, 49.918416210000103 ], [ -123.188623704999941, 49.918560007000096 ], [ -123.189320800999923, 49.918595595000077 ], [ -123.189906391999941, 49.918720910000062 ], [ -123.191245706999936, 49.919393209000056 ], [ -123.191359005999971, 49.919733600000022 ], [ -123.190551826000018, 49.919970004000099 ], [ -123.190204084999962, 49.920159393000063 ], [ -123.189313808999913, 49.920277602000098 ], [ -123.18884210099999, 49.920692110000061 ], [ -123.18902538899999, 49.921294492000129 ], [ -123.189445885999987, 49.921751696000101 ], [ -123.189433588, 49.922516497000053 ], [ -123.189532205, 49.922722999 ], [ -123.18976928699999, 49.922866794000107 ], [ -123.190132287999916, 49.922794201000059 ], [ -123.19033931599995, 49.922290008000083 ], [ -123.19065909899993, 49.922010908000061 ], [ -123.19083832299998, 49.921633503000066 ], [ -123.190931909, 49.920885700000078 ], [ -123.191529807999956, 49.920579486000122 ], [ -123.192140409, 49.919913000000115 ], [ -123.193155795999971, 49.919515689000079 ], [ -123.193209691999982, 49.919136789000063 ], [ -123.192734690999956, 49.918634098000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.875873015873016", "sL_AssetLoss": "6300", "sL_BldgLoss": "5518", "sL_StrLoss": "4010", "sL_NStrLoss": "1508", "sL_ContLoss": "782", "geom_point": "0101000020E6100000790C0BC5C8D05EC05195426233F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.259425155999949, 49.885420024000119 ], [ -123.259581749999967, 49.882806897000108 ], [ -123.260353918999968, 49.883137103000124 ], [ -123.262443397999959, 49.883537302000086 ], [ -123.263042089999914, 49.88359 ], [ -123.26327962199997, 49.883471804000067 ], [ -123.263556494999989, 49.883273786000075 ], [ -123.263891084999955, 49.883228203000051 ], [ -123.265127588999988, 49.883194264000046 ], [ -123.264986159999978, 49.885559089000076 ], [ -123.259425155999949, 49.885420024000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.926728976379814", "sL_AssetLoss": "8463.1", "sL_BldgLoss": "7843", "sL_StrLoss": "6190", "sL_NStrLoss": "1653", "sL_ContLoss": "620.1", "geom_point": "0101000020E610000083B793CA4CDA5EC08460D9F5A0F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.408422059999964, 49.939921550000065 ], [ -123.413990138, 49.940053041000098 ], [ -123.413786629999905, 49.943647107000075 ], [ -123.413422120999911, 49.943638507000074 ], [ -123.413344192999972, 49.945014414000092 ], [ -123.410258549999966, 49.944941572000069 ], [ -123.409523709000013, 49.944704202000068 ], [ -123.407802491999945, 49.944407559000126 ], [ -123.407979497999989, 49.941288843000095 ], [ -123.408343986999952, 49.941297460000058 ], [ -123.408422059999964, 49.939921550000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "0.772813193436156", "sL_AssetLoss": "36503", "sL_BldgLoss": "28210", "sL_StrLoss": "14580", "sL_NStrLoss": "13630", "sL_ContLoss": "8293", "geom_point": "0101000020E6100000F71429624BCF5EC09885764E33C64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.239915894999953, 49.5464433080001 ], [ -123.243754189999933, 49.546540771000082 ], [ -123.243602089999968, 49.549084058000098 ], [ -123.242386201999963, 49.549309488000084 ], [ -123.240646912999978, 49.549483302000077 ], [ -123.23961000499996, 49.54975530400008 ], [ -123.238960103999915, 49.549837902000093 ], [ -123.238078603999924, 49.550118483000112 ], [ -123.237237585999964, 49.550695307000076 ], [ -123.23703927899993, 49.550936641000142 ], [ -123.235720781999987, 49.550903098000099 ], [ -123.234659386999965, 49.550876085 ], [ -123.234875128999974, 49.5472803810001 ], [ -123.237970119999915, 49.547359123000049 ], [ -123.238176388999932, 49.547364368000054 ], [ -123.238185707999932, 49.547208864000012 ], [ -123.238234142999886, 49.546400562000066 ], [ -123.239610859999985, 49.546435556000063 ], [ -123.239915894999953, 49.5464433080001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "0.957255343082115", "sL_AssetLoss": "2578.1", "sL_BldgLoss": "2467.9", "sL_StrLoss": "2085.7", "sL_NStrLoss": "382.2", "sL_ContLoss": "110.2", "geom_point": "0101000020E6100000C9A0A8A683D25EC0949FD83399F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.287570596999942, 49.928512865000101 ], [ -123.287579605999923, 49.928361114000019 ], [ -123.287456300999963, 49.928358062 ], [ -123.287474881999984, 49.928045130000037 ], [ -123.287346817999918, 49.928041959000041 ], [ -123.287560196999934, 49.924448058000067 ], [ -123.291083653999948, 49.92453521700007 ], [ -123.291310104999965, 49.924540815000036 ], [ -123.290936006999971, 49.92491479100007 ], [ -123.290783719000018, 49.925139898000076 ], [ -123.290703196999971, 49.925616993000126 ], [ -123.29085921099994, 49.925913207000043 ], [ -123.291376214999914, 49.92628920200012 ], [ -123.291603196999958, 49.926766304000076 ], [ -123.291575503, 49.927018389000047 ], [ -123.291022185999921, 49.927595203000074 ], [ -123.29078751099992, 49.928026703000107 ], [ -123.290872395999926, 49.928287396000094 ], [ -123.291290992999933, 49.928604884000045 ], [ -123.289363549999948, 49.92855722700002 ], [ -123.287570596999942, 49.928512865000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.896535796766744", "sL_AssetLoss": "2165", "sL_BldgLoss": "1941", "sL_StrLoss": "1310", "sL_NStrLoss": "631", "sL_ContLoss": "224", "geom_point": "0101000020E610000007084913EDCE5EC006259209F4EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.232769904999941, 49.874076908000028 ], [ -123.23443994199998, 49.874073543000129 ], [ -123.23444058599992, 49.874206678000036 ], [ -123.234443861999964, 49.874883018000091 ], [ -123.234026345999979, 49.874883861000143 ], [ -123.234027648999984, 49.875153688000047 ], [ -123.23261692899996, 49.875156525000136 ], [ -123.231940054999967, 49.875157882000039 ], [ -123.231936178999959, 49.874348406000131 ], [ -123.232771201999967, 49.874346733000017 ], [ -123.232769904999941, 49.874076908000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.902452316076294", "sL_AssetLoss": "1835", "sL_BldgLoss": "1656", "sL_StrLoss": "1150", "sL_NStrLoss": "506", "sL_ContLoss": "179", "geom_point": "0101000020E610000093AE3652B8D25EC0ADE631B196F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.29146721799999, 49.925309293000105 ], [ -123.291716306999945, 49.924795188000104 ], [ -123.291909092999958, 49.924555620000078 ], [ -123.293126034999901, 49.924585688000022 ], [ -123.293107494999958, 49.924898622000093 ], [ -123.293235549999949, 49.924901785000102 ], [ -123.29322656099994, 49.925053537000146 ], [ -123.293349856999924, 49.925056583000107 ], [ -123.293136928999942, 49.928650493000092 ], [ -123.292374131999907, 49.92863164900006 ], [ -123.292351596999978, 49.928599300000066 ], [ -123.291833985000011, 49.928240399000103 ], [ -123.291734680999966, 49.928042397000127 ], [ -123.291993401999932, 49.926881690000045 ], [ -123.291849998999936, 49.926324786000102 ], [ -123.291454905, 49.925561385000087 ], [ -123.29146721799999, 49.925309293000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.96873480875016", "sL_AssetLoss": "3908.5", "sL_BldgLoss": "3786.3", "sL_StrLoss": "3323", "sL_NStrLoss": "463.3", "sL_ContLoss": "122.2", "geom_point": "0101000020E610000041951E76B4C85EC0BB61FCB0B5FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.133310740999917, 49.976288583000134 ], [ -123.133327897999891, 49.976015484000072 ], [ -123.13323215399997, 49.976012982000128 ], [ -123.133457887999981, 49.972419622000082 ], [ -123.139029095999931, 49.972565065000069 ], [ -123.13901197399997, 49.972838167000106 ], [ -123.13910771, 49.972840664000088 ], [ -123.138928326999959, 49.97570188100007 ], [ -123.138863895999975, 49.975707787000019 ], [ -123.138150913999979, 49.975366005000076 ], [ -123.137706005999959, 49.975357486000057 ], [ -123.137119200999948, 49.975494185000045 ], [ -123.137148107000016, 49.975763408000041 ], [ -123.136995912, 49.976015505000078 ], [ -123.136954688999964, 49.97637580100011 ], [ -123.136948284999903, 49.976383574000117 ], [ -123.133310740999917, 49.976288583000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.901775147928994", "sL_AssetLoss": "1690", "sL_BldgLoss": "1524", "sL_StrLoss": "1180", "sL_NStrLoss": "344", "sL_ContLoss": "166", "geom_point": "0101000020E61000006C6A8FCDC4C65EC0DB63F1B4DFE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105276971999956, 49.804377007000021 ], [ -123.10527638699989, 49.804107177000091 ], [ -123.104859475999888, 49.804107555000051 ], [ -123.104857728999917, 49.803298064000082 ], [ -123.105274631999947, 49.803297686000079 ], [ -123.105274045999977, 49.803027855000096 ], [ -123.106364589999941, 49.803026860000081 ], [ -123.106524747999927, 49.803026713000072 ], [ -123.10652770799993, 49.804375864000072 ], [ -123.105576272999926, 49.804376735000069 ], [ -123.105276971999956, 49.804377007000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15268500", "BldgCostT": "10530000", "sL_LossRatio": "0.787070215371209", "sL_AssetLoss": "133119", "sL_BldgLoss": "104774", "sL_StrLoss": "54652", "sL_NStrLoss": "50122", "sL_ContLoss": "28345", "geom_point": "0101000020E610000086B2E8842DCE5EC035CA234D76CA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.219783792999962, 49.587967934000091 ], [ -123.219783071999942, 49.587807838000032 ], [ -123.219368012999908, 49.587808625000029 ], [ -123.219366802999943, 49.587538786000088 ], [ -123.21895174299999, 49.587539572000054 ], [ -123.218950535999937, 49.587269734000074 ], [ -123.218535478999954, 49.587270518000068 ], [ -123.218531862999967, 49.586461001000039 ], [ -123.216041562999976, 49.586465676000024 ], [ -123.216040369999945, 49.586195837000041 ], [ -123.215625322999927, 49.586196611000105 ], [ -123.215624133999967, 49.585926772000086 ], [ -123.215209088999941, 49.585927544000057 ], [ -123.215206714999965, 49.585387866000076 ], [ -123.214791672999979, 49.585388636000026 ], [ -123.21478751399999, 49.584441059000028 ], [ -123.21478693499999, 49.584309280000092 ], [ -123.216032030999955, 49.584306963000103 ], [ -123.216033221999979, 49.584576803000047 ], [ -123.216448255999964, 49.584576027000068 ], [ -123.216450643999934, 49.585115705000135 ], [ -123.216865681999963, 49.585114928000053 ], [ -123.21686089799999, 49.584035572000147 ], [ -123.21727592799999, 49.584034794000097 ], [ -123.217274728999911, 49.583764955000042 ], [ -123.21768975599997, 49.583764174000095 ], [ -123.217688554999981, 49.583494336000051 ], [ -123.217273530999961, 49.583495115000119 ], [ -123.217272330999918, 49.58322527600005 ], [ -123.216857310999941, 49.583226054000122 ], [ -123.21685611299992, 49.58295621500011 ], [ -123.216441094999951, 49.582956992000071 ], [ -123.21643870599992, 49.582417314000118 ], [ -123.215608674999913, 49.582418863000029 ], [ -123.215607485999925, 49.582149024000024 ], [ -123.215192471999956, 49.58214979600011 ], [ -123.215191284999918, 49.581879957000041 ], [ -123.21311622899999, 49.581883796000106 ], [ -123.21311505499996, 49.581613957000087 ], [ -123.212700044999977, 49.58161472000009 ], [ -123.212698871999962, 49.581344881000092 ], [ -123.212283865999936, 49.581345643000098 ], [ -123.212282694999914, 49.581075803000019 ], [ -123.211867689999963, 49.58107656400005 ], [ -123.211864186999904, 49.580267046000081 ], [ -123.213109178999957, 49.580264760000027 ], [ -123.213110353999966, 49.580534599000025 ], [ -123.21379303799992, 49.580533341000098 ], [ -123.214355351999984, 49.580532300000137 ], [ -123.214356341999917, 49.580757900000052 ], [ -123.214356534999979, 49.580802139000106 ], [ -123.215186538999944, 49.580800600000025 ], [ -123.215187725999925, 49.58107043900003 ], [ -123.215602729999958, 49.581069667000143 ], [ -123.215603917999928, 49.581339506000099 ], [ -123.216433932999905, 49.581337957000116 ], [ -123.216435125999936, 49.581607797000117 ], [ -123.217265144, 49.581606241 ], [ -123.217263944999928, 49.581336402000076 ], [ -123.217678951999986, 49.58133562200009 ], [ -123.21767175, 49.579716586000096 ], [ -123.218086741999983, 49.579715805000092 ], [ -123.21808554099999, 49.579445966000065 ], [ -123.22016049199999, 49.579442037000085 ], [ -123.220159278999972, 49.579172199000041 ], [ -123.221404241999963, 49.579169824000125 ], [ -123.221403020999944, 49.57889998400006 ], [ -123.221818006999953, 49.578899189000012 ], [ -123.221816783999913, 49.57862935000005 ], [ -123.222231767999972, 49.578628554000097 ], [ -123.22222564099999, 49.577279358000105 ], [ -123.221810669, 49.577280154000015 ], [ -123.221808222999954, 49.576740475000172 ], [ -123.221393254999967, 49.576741269000138 ], [ -123.221387150999973, 49.575392072000078 ], [ -123.221802108999924, 49.575391278000076 ], [ -123.221798438999954, 49.574581759000111 ], [ -123.222628336999918, 49.574580166000047 ], [ -123.222627109999948, 49.574310326000038 ], [ -123.22345700399994, 49.57430872700013 ], [ -123.22345577199998, 49.574038888000068 ], [ -123.22428566, 49.574037282000084 ], [ -123.224284423999961, 49.573767443000044 ], [ -123.225529249999937, 49.573765024000089 ], [ -123.225530494999987, 49.574034863000051 ], [ -123.225945439, 49.574034054000045 ], [ -123.225947929999961, 49.574573733000122 ], [ -123.226362876999957, 49.574572922000137 ], [ -123.226366621999915, 49.575382440000048 ], [ -123.225536709999986, 49.575384061000101 ], [ -123.225537955999968, 49.57565390000007 ], [ -123.225122996999943, 49.575654707000083 ], [ -123.22512548, 49.576194386000054 ], [ -123.224710515999931, 49.576195193000117 ], [ -123.224712993999958, 49.576734872000067 ], [ -123.225127960999956, 49.576734064000071 ], [ -123.22512920299999, 49.577003905000034 ], [ -123.225544172999946, 49.577003097000059 ], [ -123.225544724999935, 49.577123093000047 ], [ -123.225906065999979, 49.577132315000057 ], [ -123.227010329999956, 49.577160491000072 ], [ -123.226811079999962, 49.577233999000057 ], [ -123.226798892999938, 49.577503194000016 ], [ -123.227131705999966, 49.577897706000023 ], [ -123.227603680999948, 49.577968898000051 ], [ -123.227590996999965, 49.57832919300008 ], [ -123.22784090499999, 49.578616886000098 ], [ -123.228077586, 49.578723699000051 ], [ -123.22871349499998, 49.578749303000052 ], [ -123.228754592999977, 49.57887611000011 ], [ -123.228218097999957, 49.579163805000057 ], [ -123.227873098999964, 49.5795882130001 ], [ -123.227725713000012, 49.580711893000057 ], [ -123.227730972999922, 49.58077992700008 ], [ -123.224316164999962, 49.580692789000061 ], [ -123.224316578999918, 49.580783265000086 ], [ -123.22390157800001, 49.580784070000107 ], [ -123.223906516999975, 49.581863426000012 ], [ -123.223491505999974, 49.581864227000025 ], [ -123.223494750999919, 49.58257487000008 ], [ -123.227016531999965, 49.582664760000021 ], [ -123.226629913999915, 49.582863905000089 ], [ -123.226133596999929, 49.583071802000106 ], [ -123.225690906999901, 49.583081803 ], [ -123.22544239799997, 49.583298291000091 ], [ -123.22493130299992, 49.583281212000045 ], [ -123.224542317999962, 49.583057603000057 ], [ -123.223792914999962, 49.582806891000061 ], [ -123.22236369200003, 49.581784290000023 ], [ -123.222198408999972, 49.581730204000046 ], [ -123.222045298999944, 49.581739128000045 ], [ -123.221244806999948, 49.581785782000075 ], [ -123.22187425099996, 49.582213370000048 ], [ -123.222408394999931, 49.582576211000095 ], [ -123.222893101999915, 49.582593313000089 ], [ -123.22368458399994, 49.583031896000058 ], [ -123.224958909999927, 49.583514703000084 ], [ -123.225706902999917, 49.58350479500011 ], [ -123.226798789999947, 49.583241297000036 ], [ -123.227239804999954, 49.583609465000059 ], [ -123.227220758999977, 49.583925772000043 ], [ -123.22631589300002, 49.583657190000103 ], [ -123.22602429599999, 49.58367569800005 ], [ -123.225569299999975, 49.583829493000039 ], [ -123.225404823999952, 49.584017503000055 ], [ -123.225529714999965, 49.584171303000055 ], [ -123.226096914999957, 49.584422007000079 ], [ -123.227082400999933, 49.585075710000041 ], [ -123.225685114999976, 49.584899099000012 ], [ -123.225243, 49.585025798000075 ], [ -123.224967987999946, 49.585277901000104 ], [ -123.224873099999968, 49.585809184000063 ], [ -123.224597704999894, 49.586069808000083 ], [ -123.224086699999972, 49.58635888700006 ], [ -123.223286594999962, 49.58663089000008 ], [ -123.223174713999953, 49.586756301000015 ], [ -123.223379258999941, 49.587395510000064 ], [ -123.222271460999963, 49.587367213000086 ], [ -123.222274666999979, 49.58807292100002 ], [ -123.221859603999945, 49.588073717000071 ], [ -123.221860828, 49.588343557000059 ], [ -123.221445761999917, 49.588344351000018 ], [ -123.221446981999989, 49.588614191000012 ], [ -123.22019809499993, 49.588616573000088 ], [ -123.219786709999966, 49.588617355000096 ], [ -123.219783792999962, 49.587967934000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.925824489330138", "sL_AssetLoss": "8763", "sL_BldgLoss": "8113", "sL_StrLoss": "6230", "sL_NStrLoss": "1883", "sL_ContLoss": "650", "geom_point": "0101000020E6100000A0CDE47ADFCE5EC04B23C1AFECF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.229985633999945, 49.880203840000078 ], [ -123.235545914999975, 49.880344402000055 ], [ -123.235328656, 49.88393841700006 ], [ -123.234814014999927, 49.883925420000054 ], [ -123.234794850999947, 49.884242329000053 ], [ -123.229234098999967, 49.884101731000101 ], [ -123.229451838000017, 49.880507727000108 ], [ -123.229966439999927, 49.880520750000059 ], [ -123.229985633999945, 49.880203840000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26344750", "BldgCostT": "17905000", "sL_LossRatio": "0.956238176085375", "sL_AssetLoss": "41230", "sL_BldgLoss": "39425.7", "sL_StrLoss": "33563.4", "sL_NStrLoss": "5862.3", "sL_ContLoss": "1804.3", "geom_point": "0101000020E610000007184CB204C95EC0016511921E004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134706187999953, 50.009432043000089 ], [ -123.134733042000022, 50.009004699000165 ], [ -123.133737680999957, 50.008978718000023 ], [ -123.133963536999943, 50.005385517000079 ], [ -123.134714507999931, 50.00540512000002 ], [ -123.134733856999944, 50.005097182000092 ], [ -123.13460133699995, 50.005097336000091 ], [ -123.134602090999977, 50.005367156000084 ], [ -123.133346147999987, 50.005368606000104 ], [ -123.133343906999983, 50.004559144000062 ], [ -123.13376254799995, 50.00455866300009 ], [ -123.133760301999985, 50.003749201000154 ], [ -123.135016203999953, 50.003747746000101 ], [ -123.135014692999945, 50.003208105000063 ], [ -123.135433319999933, 50.003207617000072 ], [ -123.135431804999968, 50.002667975000108 ], [ -123.135768689999978, 50.002667581000054 ], [ -123.135849893999975, 50.001374654000074 ], [ -123.13598057899999, 50.001378064000093 ], [ -123.136100996999957, 49.999460555000056 ], [ -123.136202216999934, 49.999463195000018 ], [ -123.136239523999933, 49.998869057000071 ], [ -123.136808752999926, 49.998883907000071 ], [ -123.136835524, 49.998457470000034 ], [ -123.137094352999924, 49.998464222000102 ], [ -123.137094024999953, 49.998348876000065 ], [ -123.137512610999977, 49.998348381000071 ], [ -123.137510301999953, 49.997538918000089 ], [ -123.137742508999963, 49.997538642000073 ], [ -123.137769164999952, 49.997113890000087 ], [ -123.137927679, 49.997118024000081 ], [ -123.137927337999912, 49.996998780000098 ], [ -123.138345911999977, 49.996998280000078 ], [ -123.138345137999963, 49.996728460000043 ], [ -123.138469566999959, 49.996728312000108 ], [ -123.138511597, 49.996058405000099 ], [ -123.138877354, 49.99606794000006 ], [ -123.138963657999938, 49.994692113000042 ], [ -123.139090262999929, 49.994695412000048 ], [ -123.139126785999977, 49.994113115000083 ], [ -123.139991282999972, 49.994135646000068 ], [ -123.140027534999888, 49.993557481000039 ], [ -123.140134075999981, 49.991858234000105 ], [ -123.140430056, 49.991865946000104 ], [ -123.145707676999962, 49.992003334000039 ], [ -123.145621563999939, 49.993379479000097 ], [ -123.147514299999926, 49.993428689000076 ], [ -123.147500796999964, 49.993644618000125 ], [ -123.147657184999943, 49.993648683000089 ], [ -123.147976397999969, 49.993656978000061 ], [ -123.147751703000026, 49.997250264000016 ], [ -123.14747757399999, 49.997243140000094 ], [ -123.147284712999948, 49.99723812800007 ], [ -123.147161492999942, 49.99920807300002 ], [ -123.146991845999977, 49.999203664000042 ], [ -123.146874889999964, 50.001073176000055 ], [ -123.14626319199999, 50.001057275000036 ], [ -123.146233690999921, 50.001528690000043 ], [ -123.14587286299999, 50.001519309000052 ], [ -123.145828915999942, 50.002221498000132 ], [ -123.145195747999935, 50.002205034000028 ], [ -123.145119256999919, 50.00342691200008 ], [ -123.144652838999946, 50.003414781000181 ], [ -123.144593889999953, 50.004356223000066 ], [ -123.144248348999952, 50.004347235000125 ], [ -123.144241434999941, 50.004457669000089 ], [ -123.14421170899999, 50.004932332000045 ], [ -123.143963017999923, 50.004925861000082 ], [ -123.143920135999963, 50.005610537000059 ], [ -123.143553619999949, 50.005601001000045 ], [ -123.143482084999974, 50.006742943000035 ], [ -123.14265912899999, 50.006721527000067 ], [ -123.142599602999979, 50.007671463000115 ], [ -123.142277180999969, 50.00766307100011 ], [ -123.142231429999939, 50.008393070000039 ], [ -123.141196084999933, 50.008366115000051 ], [ -123.141122451999976, 50.009540494000063 ], [ -123.140285601999921, 50.009518701000061 ], [ -123.140281919999936, 50.009577415000116 ], [ -123.138914533999952, 50.009541790000092 ], [ -123.134706187999953, 50.009432043000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.990771415049692", "sL_AssetLoss": "422.6", "sL_BldgLoss": "418.7", "sL_StrLoss": "404", "sL_NStrLoss": "14.7", "sL_ContLoss": "3.9", "geom_point": "0101000020E6100000DFFC446DF4C75EC06B58DF0201114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.124048789999961, 50.134082317000058 ], [ -123.124047394999977, 50.133542688000048 ], [ -123.123627629999959, 50.13354313500006 ], [ -123.123625544999967, 50.132733691000062 ], [ -123.123205786999989, 50.132734137000064 ], [ -123.123203015999962, 50.131654878000106 ], [ -123.124462260999962, 50.131653535000041 ], [ -123.124462962999957, 50.131923351000111 ], [ -123.124882711999959, 50.13192289900006 ], [ -123.124884817999913, 50.13273234400004 ], [ -123.125304577999913, 50.132731892000038 ], [ -123.125308100999987, 50.134080965000116 ], [ -123.124048789999961, 50.134082317000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.867369186046512", "sL_AssetLoss": "5504", "sL_BldgLoss": "4774", "sL_StrLoss": "3160", "sL_NStrLoss": "1614", "sL_ContLoss": "730", "geom_point": "0101000020E6100000B5519D0E24D05EC01E1AF594C5C44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.249834543999938, 49.539175236000084 ], [ -123.249832131999952, 49.538702352000044 ], [ -123.249830417999959, 49.538365714000079 ], [ -123.250171393999949, 49.538364978000089 ], [ -123.250245059999941, 49.538364818000048 ], [ -123.250244688999942, 49.53829252600012 ], [ -123.250243680999972, 49.538094978000139 ], [ -123.250451506, 49.538094528000045 ], [ -123.250658318999967, 49.538094080000114 ], [ -123.250657581999931, 49.537949992000023 ], [ -123.250656939999956, 49.537824239000024 ], [ -123.250837435, 49.537823849000091 ], [ -123.251071576999948, 49.537823341000063 ], [ -123.251070870999968, 49.537685508000045 ], [ -123.25107019499994, 49.53755350000008 ], [ -123.251305873999954, 49.537552988000144 ], [ -123.251484828999978, 49.537552599000072 ], [ -123.251484314999985, 49.537452364000032 ], [ -123.251483443999987, 49.537282759000064 ], [ -123.251786246999956, 49.537282100000063 ], [ -123.251898076999922, 49.537281858000064 ], [ -123.251897656999944, 49.537200372000044 ], [ -123.25189669, 49.537012017000094 ], [ -123.252128934999959, 49.537011511000117 ], [ -123.25231132, 49.537011113000069 ], [ -123.252310298999973, 49.536812875000081 ], [ -123.252307152999933, 49.536201591000129 ], [ -123.252632846000012, 49.536200881000084 ], [ -123.252721774999941, 49.536200686000051 ], [ -123.252719743999961, 49.5358066000001 ], [ -123.25271621, 49.535121324000031 ], [ -123.252923893999949, 49.535120870000071 ], [ -123.253960051999954, 49.535118600000096 ], [ -123.25396824399995, 49.536699356000085 ], [ -123.253931560999959, 49.536737725000137 ], [ -123.253553812999897, 49.53673855400006 ], [ -123.253555841999955, 49.537130718000057 ], [ -123.253414509999971, 49.537278546000039 ], [ -123.253141973999959, 49.537279143000063 ], [ -123.253143435999931, 49.537562077000075 ], [ -123.252959091999955, 49.537754887000041 ], [ -123.252947882999962, 49.53781925400007 ], [ -123.252730123999982, 49.537819730000102 ], [ -123.25273149399996, 49.538085182000074 ], [ -123.252726486999919, 49.538089582000097 ], [ -123.252316876999984, 49.538090475000089 ], [ -123.252318213999928, 49.538350173 ], [ -123.252285481999976, 49.538360388000079 ], [ -123.251903624999926, 49.53836122000007 ], [ -123.251904258999943, 49.538484769000043 ], [ -123.251761635999983, 49.538631373000044 ], [ -123.251490367999949, 49.538631963000071 ], [ -123.251491391999963, 49.538831678000051 ], [ -123.251329768999966, 49.53890215500013 ], [ -123.251077106999986, 49.538902704000058 ], [ -123.251078016999912, 49.53908022300002 ], [ -123.251028461999908, 49.539172653000051 ], [ -123.249834543999938, 49.539175236000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794166", "BldgCostT": "2616666", "sL_LossRatio": "0.973992691376774", "sL_AssetLoss": "4214.2", "sL_BldgLoss": "4104.6", "sL_StrLoss": "3644", "sL_NStrLoss": "460.6", "sL_ContLoss": "109.6", "geom_point": "0101000020E6100000E22EB1E84CCC5EC0213A46AA56EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.189510032999976, 49.832861405000102 ], [ -123.189526455999925, 49.832593870000075 ], [ -123.18932534399994, 49.832588701000063 ], [ -123.189353368999917, 49.832132174000073 ], [ -123.189109164999962, 49.832125896000065 ], [ -123.189329803999968, 49.828531715000054 ], [ -123.194883687999948, 49.828674351000124 ], [ -123.194855719999936, 49.829130881000033 ], [ -123.195099909999925, 49.829137146000079 ], [ -123.195083520999916, 49.829404683000028 ], [ -123.195284618999963, 49.829409842000082 ], [ -123.19506444299999, 49.833004030000062 ], [ -123.189510032999976, 49.832861405000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.906501413350728", "sL_AssetLoss": "9198", "sL_BldgLoss": "8338", "sL_StrLoss": "6150", "sL_NStrLoss": "2188", "sL_ContLoss": "860", "geom_point": "0101000020E610000056DD3C388CD05EC0FF4809A80DF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.255885353999972, 49.889175094000066 ], [ -123.261446803999959, 49.889314339000116 ], [ -123.261231535999968, 49.892908363000117 ], [ -123.258373857999942, 49.892836849 ], [ -123.255669648999941, 49.89276910800006 ], [ -123.255752474999952, 49.891389154000116 ], [ -123.255885353999972, 49.889175094000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.982977145122715", "sL_AssetLoss": "2345.67", "sL_BldgLoss": "2305.74", "sL_StrLoss": "2066.24", "sL_NStrLoss": "239.5", "sL_ContLoss": "39.93", "geom_point": "0101000020E6100000F84B936B2DCA5EC0DF71276429F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.15998018099999, 49.890113210000052 ], [ -123.161914512999914, 49.890163368000074 ], [ -123.161691420999972, 49.89375718700007 ], [ -123.161389033999967, 49.893749348000043 ], [ -123.156129739999969, 49.893612879000067 ], [ -123.156353266999986, 49.890019070000065 ], [ -123.15998018099999, 49.890113210000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.862772695285011", "sL_AssetLoss": "2842", "sL_BldgLoss": "2452", "sL_StrLoss": "1520", "sL_NStrLoss": "932", "sL_ContLoss": "390", "geom_point": "0101000020E61000007313B534B7D05EC0E5F6A2A879C24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.260517473999954, 49.520729062000044 ], [ -123.260513561999929, 49.519992760000086 ], [ -123.260099074999928, 49.519993692000085 ], [ -123.260093350999981, 49.518914326000107 ], [ -123.260507828999962, 49.518913394000045 ], [ -123.260504240999964, 49.518238099000051 ], [ -123.260502095, 49.517834029000063 ], [ -123.261614714999922, 49.517831517000097 ], [ -123.261746638999981, 49.518045152000091 ], [ -123.26174837799995, 49.518370904000101 ], [ -123.26194752499994, 49.518370454000078 ], [ -123.261991207999955, 49.518441191000129 ], [ -123.262164000999988, 49.518585516000094 ], [ -123.262172948999947, 49.520258855000058 ], [ -123.261758459999953, 49.520259794000062 ], [ -123.261761339999936, 49.520799476000057 ], [ -123.260517862999947, 49.520802283000101 ], [ -123.260517473999954, 49.520729062000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.9276361130255", "sL_AssetLoss": "1451", "sL_BldgLoss": "1346", "sL_StrLoss": "1000", "sL_NStrLoss": "346", "sL_ContLoss": "105", "geom_point": "0101000020E610000045A6B6B3F3C85EC0F9FEDD6D24EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.139627567999966, 49.861274748000021 ], [ -123.139626790999955, 49.86100492100006 ], [ -123.139209392999973, 49.861005422000034 ], [ -123.139208616999952, 49.860735595000072 ], [ -123.138373824999931, 49.860736595000077 ], [ -123.13837151199999, 49.859927113000026 ], [ -123.138788901999973, 49.859926614000074 ], [ -123.138788129999924, 49.859656786000123 ], [ -123.140040288999955, 49.859655281000094 ], [ -123.140041068999949, 49.859925108000027 ], [ -123.140458459999962, 49.859924603000145 ], [ -123.140459241999963, 49.860194430000064 ], [ -123.141294024999951, 49.860193416000115 ], [ -123.141297172999927, 49.86127272500007 ], [ -123.139627567999966, 49.861274748000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.854096650828601", "sL_AssetLoss": "8629", "sL_BldgLoss": "7370", "sL_StrLoss": "4820", "sL_NStrLoss": "2550", "sL_ContLoss": "1259", "geom_point": "0101000020E610000067617049E5CF5EC04F85895036BE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.248334385999925, 49.48859846600007 ], [ -123.248332256999902, 49.488177811000092 ], [ -123.248170683999945, 49.488178157000114 ], [ -123.24791804100002, 49.488178699000059 ], [ -123.247900702999971, 49.484745048000079 ], [ -123.247898964999962, 49.484400895000043 ], [ -123.247659612999911, 49.484401408000089 ], [ -123.247484778999976, 49.484401782000063 ], [ -123.247483529999911, 49.484153675000073 ], [ -123.247482059, 49.483862096000095 ], [ -123.247208449999988, 49.483862681000041 ], [ -123.247067877999925, 49.483862981000065 ], [ -123.24706730199992, 49.483748545000076 ], [ -123.247066520999965, 49.483593138000032 ], [ -123.24678723, 49.483593734000124 ], [ -123.246238161999983, 49.483594904000078 ], [ -123.246237187999967, 49.48340045300008 ], [ -123.24623410299999, 49.482785374000066 ], [ -123.248304963999914, 49.482780947000023 ], [ -123.24830632599999, 49.4830507900001 ], [ -123.24872050299993, 49.483049901000108 ], [ -123.248723234999915, 49.483589587000033 ], [ -123.249137413999918, 49.483588697000052 ], [ -123.249155215999977, 49.487096656000112 ], [ -123.249569132999952, 49.487095765000042 ], [ -123.249569428999948, 49.487096917000081 ], [ -123.249579542999953, 49.489086345000032 ], [ -123.24946359099999, 49.489172308000086 ], [ -123.249396276999974, 49.489254905000045 ], [ -123.249166170999956, 49.489255401000058 ], [ -123.249167592999981, 49.489535501000034 ], [ -123.248955655, 49.489795546000011 ], [ -123.247926215999954, 49.489797757000126 ], [ -123.247925737999964, 49.489702994000012 ], [ -123.247920765999964, 49.488718384000066 ], [ -123.248334987999925, 49.488717497000039 ], [ -123.248334385999925, 49.48859846600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.951832946635731", "sL_AssetLoss": "5387.5", "sL_BldgLoss": "5128", "sL_StrLoss": "4289", "sL_NStrLoss": "839", "sL_ContLoss": "259.5", "geom_point": "0101000020E6100000A160AD77CBC75EC0B326FD5AEA044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.119061322999954, 50.04042635900003 ], [ -123.119089416999941, 50.039982059000096 ], [ -123.118806942999967, 50.039974652000097 ], [ -123.119034128999914, 50.036381632000023 ], [ -123.122862606999902, 50.036481963000057 ], [ -123.124613106999959, 50.036527794000072 ], [ -123.124585069999981, 50.036972097000032 ], [ -123.124867525999889, 50.036979489000046 ], [ -123.124659370999922, 50.040278186000123 ], [ -123.12419663799993, 50.040284044000067 ], [ -123.123340431999935, 50.040251793000031 ], [ -123.123148071999978, 50.040253781000061 ], [ -123.121419261999904, 50.040356267000085 ], [ -123.119959527999924, 50.040449907000045 ], [ -123.119061322999954, 50.04042635900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.811820652173913", "sL_AssetLoss": "14720", "sL_BldgLoss": "11950", "sL_StrLoss": "7320", "sL_NStrLoss": "4630", "sL_ContLoss": "2770", "geom_point": "0101000020E610000057A3AA4BFECE5EC0D992761F57C74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.234581678999945, 49.557826336000048 ], [ -123.234568614999986, 49.555098893000057 ], [ -123.234567461000012, 49.554858095000057 ], [ -123.234152679999937, 49.554858934000094 ], [ -123.234151390999955, 49.554589094000065 ], [ -123.233736609999966, 49.554589933000045 ], [ -123.233736094999969, 49.55448197500008 ], [ -123.233731459999944, 49.553510572000036 ], [ -123.233893138999932, 49.553510245000062 ], [ -123.234146229999936, 49.553509734000059 ], [ -123.234144938999961, 49.553239893000068 ], [ -123.235389242999929, 49.553237369000044 ], [ -123.235390539999955, 49.553507209000053 ], [ -123.235572656999949, 49.553506839000065 ], [ -123.235805310999979, 49.553506365000018 ], [ -123.235815704999979, 49.555665086000033 ], [ -123.236230492999937, 49.555664240000034 ], [ -123.236241091999958, 49.557861570000057 ], [ -123.235779410999967, 49.558065606000085 ], [ -123.235228916999944, 49.558452899000073 ], [ -123.234994482999966, 49.558777706000065 ], [ -123.235417671999954, 49.559151779000103 ], [ -123.235417777999942, 49.559173851000047 ], [ -123.233758504999969, 49.559177214000059 ], [ -123.233763229999937, 49.5601669180001 ], [ -123.233453607999934, 49.56058929700005 ], [ -123.233248795999955, 49.560939597000107 ], [ -123.233243437999931, 49.561067151 ], [ -123.23274072399991, 49.561068164000091 ], [ -123.231693349999915, 49.561070265000069 ], [ -123.231684412999968, 49.559181385000102 ], [ -123.232099231999939, 49.559180554000065 ], [ -123.232097952999965, 49.558910714000035 ], [ -123.232512768999982, 49.558909881000048 ], [ -123.232510205999986, 49.558370201000074 ], [ -123.232902349999989, 49.558369412000111 ], [ -123.23292501799996, 49.558369367000125 ], [ -123.23292448699999, 49.55825771700006 ], [ -123.232923733999883, 49.558099527000095 ], [ -123.232955849999883, 49.558099462000058 ], [ -123.234168160999914, 49.558097015000115 ], [ -123.234166870999971, 49.55782717600011 ], [ -123.234581678999945, 49.557826336000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.92864288096032", "sL_AssetLoss": "2999", "sL_BldgLoss": "2785", "sL_StrLoss": "2370", "sL_NStrLoss": "415", "sL_ContLoss": "214", "geom_point": "0101000020E610000079976AEAA5D05EC0B9CB977A0AD54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.25980060900001, 49.66258479700015 ], [ -123.260588393999967, 49.662604614000017 ], [ -123.26037412099997, 49.666199773000109 ], [ -123.260000261999934, 49.666190370000066 ], [ -123.25997812699994, 49.666561682000044 ], [ -123.259762654, 49.666556262000014 ], [ -123.25980060900001, 49.66258479700015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.962704158949318", "sL_AssetLoss": "2375.6", "sL_BldgLoss": "2287", "sL_StrLoss": "2040", "sL_NStrLoss": "247", "sL_ContLoss": "88.6", "geom_point": "0101000020E61000009CC7FE0544C65EC0FA4910093AE74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.097780701999923, 49.808431035000112 ], [ -123.097779614999936, 49.807891374000057 ], [ -123.097362671999988, 49.807891726000094 ], [ -123.097361588999945, 49.807352066000107 ], [ -123.096944650999902, 49.807352414000086 ], [ -123.096944111999903, 49.807082585000025 ], [ -123.09652717799996, 49.8070829320001 ], [ -123.096526640999969, 49.806813102000064 ], [ -123.096109706999968, 49.806813449000117 ], [ -123.096109172999917, 49.806543618000063 ], [ -123.0956922399999, 49.806543963000124 ], [ -123.095691710000011, 49.806274133000038 ], [ -123.094023994999944, 49.806275498000069 ], [ -123.094021963999964, 49.805226850000032 ], [ -123.094021902999899, 49.805196177000077 ], [ -123.09610650099998, 49.805194467000057 ], [ -123.09610703599999, 49.805464298000075 ], [ -123.096940877999913, 49.805463603000085 ], [ -123.096941417999915, 49.805733434000089 ], [ -123.09735834199995, 49.80573308400011 ], [ -123.097358883999917, 49.806002914000047 ], [ -123.097775808999941, 49.806002563000114 ], [ -123.097776352999929, 49.806272393000064 ], [ -123.09819328199994, 49.806272041000099 ], [ -123.09819382799999, 49.806541871000057 ], [ -123.098610757999921, 49.806541517000035 ], [ -123.098611854999916, 49.807081177000086 ], [ -123.099028790999981, 49.807080822000088 ], [ -123.09902659, 49.806001501000011 ], [ -123.098609662999976, 49.806001856000073 ], [ -123.09860747099998, 49.804922535000038 ], [ -123.099285738000034, 49.80492195600003 ], [ -123.100275137, 49.80492110500014 ], [ -123.100277367999951, 49.806000425000036 ], [ -123.100694293999965, 49.806000064000067 ], [ -123.100697653999987, 49.807619045000074 ], [ -123.100140680999957, 49.807619528000046 ], [ -123.099029890999986, 49.8076204830001 ], [ -123.099031542999953, 49.808429973000052 ], [ -123.099027650999972, 49.808429976000085 ], [ -123.097780701999923, 49.808431035000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.977610902517035", "sL_AssetLoss": "1438.2", "sL_BldgLoss": "1406", "sL_StrLoss": "1220", "sL_NStrLoss": "186", "sL_ContLoss": "32.2", "geom_point": "0101000020E61000007971C90EFDC55EC01C44E70C77E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.094448526999955, 49.810183310000049 ], [ -123.094448275000033, 49.81005278200012 ], [ -123.094125765999962, 49.810053044000057 ], [ -123.094031312999931, 49.810053121000117 ], [ -123.094031252999983, 49.810022799000123 ], [ -123.0940307899999, 49.809783291000045 ], [ -123.093613829999953, 49.809783629000023 ], [ -123.093612789999924, 49.809243969000107 ], [ -123.093195835999978, 49.809244305000085 ], [ -123.093195317999914, 49.808974475000177 ], [ -123.09236141299999, 49.808975142000094 ], [ -123.092360899999903, 49.808705311 ], [ -123.091943950999948, 49.808705643000074 ], [ -123.091943438999934, 49.808435813000095 ], [ -123.091526491999929, 49.808436143000073 ], [ -123.091523948999978, 49.807086991000048 ], [ -123.091940883999925, 49.80708666200006 ], [ -123.091940371999954, 49.806816831000049 ], [ -123.091959116999973, 49.806816817000019 ], [ -123.09444197399992, 49.806814819000074 ], [ -123.094442497999964, 49.807084649000082 ], [ -123.094859434999961, 49.807084310000057 ], [ -123.094861543999968, 49.808163630000074 ], [ -123.094444598999985, 49.808163971000106 ], [ -123.094445648999965, 49.808703631000029 ], [ -123.094862597999963, 49.808703290000047 ], [ -123.094863652999905, 49.809242951000073 ], [ -123.095280607999882, 49.809242609000066 ], [ -123.095281137, 49.809512439000038 ], [ -123.095698093999914, 49.809512096000013 ], [ -123.095699688999971, 49.810321587000054 ], [ -123.09444879899992, 49.810322613000018 ], [ -123.094448526999955, 49.810183310000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "0.980675736840704", "sL_AssetLoss": "5633.85", "sL_BldgLoss": "5524.98", "sL_StrLoss": "5079.48", "sL_NStrLoss": "445.5", "sL_ContLoss": "108.87", "geom_point": "0101000020E6100000E6B95374C3CD5EC0C5E2BBBD39F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.210930715999964, 49.902955504000047 ], [ -123.210940735999941, 49.902791311000101 ], [ -123.210523812999924, 49.902780693000103 ], [ -123.210539930999914, 49.902516567000056 ], [ -123.210057611999929, 49.902504282000066 ], [ -123.210276946999926, 49.898910407000081 ], [ -123.210398044999977, 49.898913492000062 ], [ -123.210418559999951, 49.898577309000117 ], [ -123.210782050999924, 49.898586568000042 ], [ -123.210804463999978, 49.898219218000051 ], [ -123.21110611, 49.898226900000068 ], [ -123.211140284999914, 49.897666725000086 ], [ -123.214059110999955, 49.897741020000083 ], [ -123.214089587999965, 49.897240895000039 ], [ -123.219651891999931, 49.897382260000029 ], [ -123.219631243999984, 49.897721760000067 ], [ -123.219891003999962, 49.897728355 ], [ -123.219672430999964, 49.901322255000053 ], [ -123.219662600999953, 49.901322005000061 ], [ -123.219644447999912, 49.901620455000099 ], [ -123.219540375999941, 49.901617812000048 ], [ -123.219472605999954, 49.902731956000167 ], [ -123.219322590999937, 49.902728147000118 ], [ -123.219310209999975, 49.90293166000005 ], [ -123.216508110999939, 49.902860481000104 ], [ -123.21649370599998, 49.903097028000019 ], [ -123.210930715999964, 49.902955504000047 ] ], [ [ -123.216690103999923, 49.899317492000137 ], [ -123.21649430299999, 49.899110988000047 ], [ -123.216189022999956, 49.899183602000036 ], [ -123.216037383999918, 49.899723397000066 ], [ -123.21585920299998, 49.900002588000056 ], [ -123.215483696999982, 49.900318694000092 ], [ -123.215247995999945, 49.90038141200003 ], [ -123.214898917999932, 49.900220499000099 ], [ -123.214883286999964, 49.899743391000044 ], [ -123.214741803999942, 49.899546802000025 ], [ -123.214492386999964, 49.899465596 ], [ -123.214157286999964, 49.899700592000059 ], [ -123.213811892999956, 49.900150709000108 ], [ -123.213410400999948, 49.900429795000051 ], [ -123.213272612999944, 49.900691893000072 ], [ -123.21342490799999, 49.900852784000023 ], [ -123.213969697999943, 49.900959594000014 ], [ -123.214234214, 49.901093495000069 ], [ -123.214432286999909, 49.901624698000077 ], [ -123.214639887999937, 49.901741508000043 ], [ -123.215892195999942, 49.901234508000108 ], [ -123.216974586999982, 49.900630607000053 ], [ -123.217334911999941, 49.90030589100008 ], [ -123.217390589999965, 49.900116501000106 ], [ -123.21727778599994, 49.899919998000072 ], [ -123.216887802999963, 49.899857308000072 ], [ -123.216804288999953, 49.899776099000043 ], [ -123.216690103999923, 49.899317492000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "0.963709711737321", "sL_AssetLoss": "2349.94", "sL_BldgLoss": "2264.66", "sL_StrLoss": "1854.46", "sL_NStrLoss": "410.2", "sL_ContLoss": "85.28", "geom_point": "0101000020E6100000060AC40498C35EC0E50496F1A9F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.054174891999935, 49.943875290000072 ], [ -123.053796409999933, 49.942607799000037 ], [ -123.053879709999947, 49.942401291000117 ], [ -123.054101588999913, 49.942364187000116 ], [ -123.054299497999963, 49.943066408000085 ], [ -123.054646119999944, 49.943047902000039 ], [ -123.054533989999953, 49.941402900000114 ], [ -123.054671309999932, 49.940942897000127 ], [ -123.055034799999973, 49.940573992000054 ], [ -123.055493101999957, 49.940277792000082 ], [ -123.055952600999959, 49.940259309000119 ], [ -123.056649586999953, 49.940447303000084 ], [ -123.056984315999927, 49.940286301000093 ], [ -123.056886979999916, 49.940034193000074 ], [ -123.056580510999964, 49.939836286000073 ], [ -123.055993894, 49.939800708000128 ], [ -123.054001300999957, 49.939414685000074 ], [ -123.053930591999972, 49.939162614000054 ], [ -123.054057661999977, 49.938989637000077 ], [ -123.05791823, 49.939093329000059 ], [ -123.057686720999982, 49.942686694000017 ], [ -123.05757698399999, 49.942683749000032 ], [ -123.057555048999987, 49.943024180000059 ], [ -123.057799485999951, 49.943030742000069 ], [ -123.057567947999971, 49.946624086000035 ], [ -123.054447840999956, 49.946540297000084 ], [ -123.054636318999925, 49.946349198000043 ], [ -123.055638716999951, 49.945853605000096 ], [ -123.056434890999981, 49.945826493000098 ], [ -123.05675508799996, 49.945699705000031 ], [ -123.057340005999976, 49.945682708000085 ], [ -123.057507689999909, 49.945591508000042 ], [ -123.057325384999942, 49.945384999000105 ], [ -123.056531408999945, 49.945224108000033 ], [ -123.054286100999946, 49.945090184000101 ], [ -123.054217320999967, 49.944990503000071 ], [ -123.054327909000023, 49.944846595000037 ], [ -123.054773292, 49.944685690000071 ], [ -123.054174891999935, 49.943875290000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.918602813339655", "sL_AssetLoss": "6327", "sL_BldgLoss": "5812", "sL_StrLoss": "4320", "sL_NStrLoss": "1492", "sL_ContLoss": "515", "geom_point": "0101000020E6100000719A36CA97CA5EC0A402C4B005F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.16656371799999, 49.943576172000071 ], [ -123.166899649999962, 49.943584854000051 ], [ -123.166914608999946, 49.944650095000057 ], [ -123.167209380999978, 49.945171398000113 ], [ -123.167517287999914, 49.94543199000006 ], [ -123.167879326999966, 49.945682602000076 ], [ -123.168160286999978, 49.946132697000031 ], [ -123.168119708999953, 49.946672503000094 ], [ -123.16782969799999, 49.947122514000064 ], [ -123.167745987999965, 49.94720605200007 ], [ -123.166807754999937, 49.947181808000096 ], [ -123.163359526, 49.947092644000044 ], [ -123.16358274699995, 49.943499082000045 ], [ -123.16656371799999, 49.943576172000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.962403197601799", "sL_AssetLoss": "800.6", "sL_BldgLoss": "770.5", "sL_StrLoss": "689", "sL_NStrLoss": "81.5", "sL_ContLoss": "30.1", "geom_point": "0101000020E610000013579DEEDFC75EC0AFFCA66E36044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.122946723999959, 50.031552712000078 ], [ -123.124203348999984, 50.031551375000078 ], [ -123.124207524999989, 50.033170291000097 ], [ -123.123369745999923, 50.033171184000039 ], [ -123.123370630999986, 50.033517058000072 ], [ -123.123373201999954, 50.034520281000027 ], [ -123.122116497999983, 50.034521611000045 ], [ -123.122109655999949, 50.031823417000055 ], [ -123.122458612999964, 50.031823049000089 ], [ -123.122947411999945, 50.031822532000056 ], [ -123.122946723999959, 50.031552712000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.929524123168121", "sL_AssetLoss": "4858.4", "sL_BldgLoss": "4516", "sL_StrLoss": "3646", "sL_NStrLoss": "870", "sL_ContLoss": "342.4", "geom_point": "0101000020E6100000C4A2B7B2A3D25EC04B191F0385F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.291834336999941, 49.900632865000027 ], [ -123.293179645999928, 49.900666123000079 ], [ -123.293368586999989, 49.900992406000022 ], [ -123.293582285999904, 49.901846907000071 ], [ -123.293503713999897, 49.90278260400008 ], [ -123.294235780999955, 49.903005123000078 ], [ -123.294159745999963, 49.9042896300001 ], [ -123.293772813999936, 49.90428007000007 ], [ -123.288596375999973, 49.904152049000075 ], [ -123.288809544999964, 49.900558027000038 ], [ -123.291834336999941, 49.900632865000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.88552155635937", "sL_AssetLoss": "10229", "sL_BldgLoss": "9058", "sL_StrLoss": "6440", "sL_NStrLoss": "2618", "sL_ContLoss": "1171", "geom_point": "0101000020E6100000A31762B36BD25EC094556C2725F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.285149317, 49.889892911000103 ], [ -123.290710943999954, 49.890030670000066 ], [ -123.290497971999955, 49.893624747000054 ], [ -123.284935909999945, 49.893486978000084 ], [ -123.285149317, 49.889892911000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.858335394509028", "sL_AssetLoss": "16172", "sL_BldgLoss": "13881", "sL_StrLoss": "8781", "sL_NStrLoss": "5100", "sL_ContLoss": "2291", "geom_point": "0101000020E610000085A3793AF6C85EC0B60574F432CE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.141827938999967, 49.614373969000027 ], [ -123.141826371999983, 49.613834291000046 ], [ -123.141411088999973, 49.613834798000092 ], [ -123.141408745999939, 49.613025282000109 ], [ -123.140993468999923, 49.613025789000062 ], [ -123.140992690999909, 49.612755950000057 ], [ -123.140162140999976, 49.612756958000041 ], [ -123.140161366999934, 49.61248712000004 ], [ -123.139330820999959, 49.61248812200003 ], [ -123.139330051999977, 49.612218283000118 ], [ -123.138914781999929, 49.612218782000113 ], [ -123.138914015999944, 49.611948943000122 ], [ -123.13849874600001, 49.61194944099999 ], [ -123.138497216999923, 49.611409763000033 ], [ -123.138081954999961, 49.61141025900011 ], [ -123.138081191999959, 49.611140419000058 ], [ -123.137665928999951, 49.611140914000067 ], [ -123.137664410999932, 49.610601236000079 ], [ -123.137249152999985, 49.610601730000084 ], [ -123.137248395999961, 49.610331891000037 ], [ -123.136833141999958, 49.610332382000067 ], [ -123.136832386999941, 49.610062543000012 ], [ -123.136417133999984, 49.610063033000095 ], [ -123.136415627999952, 49.609523355000036 ], [ -123.136000380999931, 49.609523844000051 ], [ -123.135999630999947, 49.609254005000011 ], [ -123.13558438599992, 49.60925449100008 ], [ -123.135583634999989, 49.608984653000071 ], [ -123.135168392999944, 49.608985137000062 ], [ -123.135165408999953, 49.607905781000049 ], [ -123.135580641999979, 49.607905296000091 ], [ -123.135579894999964, 49.607635456000068 ], [ -123.137240820999963, 49.607633499000059 ], [ -123.137241578, 49.607903338000014 ], [ -123.137656812999921, 49.607902846000094 ], [ -123.137657570999963, 49.60817268400006 ], [ -123.138072807999947, 49.608172191000087 ], [ -123.138073570999964, 49.608442029000024 ], [ -123.13890404699994, 49.608441036000052 ], [ -123.138904812999925, 49.608710874000067 ], [ -123.139320053999967, 49.608710376000026 ], [ -123.139320821999917, 49.608980215000045 ], [ -123.140566550999907, 49.60897870900007 ], [ -123.140567326999928, 49.609248548000089 ], [ -123.140982572999974, 49.609248043000065 ], [ -123.140984128999889, 49.609787721000046 ], [ -123.141399378999921, 49.60978721500004 ], [ -123.141400939000036, 49.610326893000149 ], [ -123.141816193999944, 49.610326384000075 ], [ -123.141817759999981, 49.610866062000099 ], [ -123.142233017999956, 49.610865553000068 ], [ -123.1422338039999, 49.611135393000048 ], [ -123.142649065999962, 49.611134881000112 ], [ -123.142649851999963, 49.611404720000046 ], [ -123.143480378999982, 49.611403693000064 ], [ -123.143481171999937, 49.611673533000065 ], [ -123.14389643599999, 49.611673017000101 ], [ -123.143897230999954, 49.611942856000049 ], [ -123.14431249899999, 49.611942339000095 ], [ -123.144318873999936, 49.614101049000034 ], [ -123.14348830099999, 49.614102083000034 ], [ -123.143489093999975, 49.614371922000053 ], [ -123.141827938999967, 49.614373969000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.94223125362869", "sL_AssetLoss": "4478.2", "sL_BldgLoss": "4219.5", "sL_StrLoss": "3451.5", "sL_NStrLoss": "768", "sL_ContLoss": "258.7", "geom_point": "0101000020E6100000314813526BCF5EC0A01FA1C181F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.238253320999959, 49.884905253000042 ], [ -123.2438142, 49.885045394000016 ], [ -123.24359756699999, 49.888639403000084 ], [ -123.23803625299999, 49.888499253000063 ], [ -123.238253320999959, 49.884905253000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.948829500725088", "sL_AssetLoss": "965.4", "sL_BldgLoss": "916", "sL_StrLoss": "789", "sL_NStrLoss": "127", "sL_ContLoss": "49.4", "geom_point": "0101000020E610000098F0747C2EC95EC00455E57355FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143947126999961, 49.978373728000044 ], [ -123.144568720999956, 49.978372954000079 ], [ -123.144571145999961, 49.979182421000111 ], [ -123.143734303999935, 49.97918346000008 ], [ -123.143736716999982, 49.979992925 ], [ -123.142605470999939, 49.979994320000074 ], [ -123.142481434999979, 49.979994473000069 ], [ -123.142478247999961, 49.978915186000101 ], [ -123.14331508399998, 49.978914156 ], [ -123.143313481999954, 49.978374512000109 ], [ -123.143947126999961, 49.978373728000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210833", "BldgCostT": "4283333", "sL_LossRatio": "0.9914451769649", "sL_AssetLoss": "3893.71", "sL_BldgLoss": "3860.4", "sL_StrLoss": "3668", "sL_NStrLoss": "192.4", "sL_ContLoss": "33.31", "geom_point": "0101000020E6100000A3E9D3C78FC65EC048A2D96DFE0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101232056999933, 50.128062287000027 ], [ -123.101354015999931, 50.126149180000056 ], [ -123.098447678999918, 50.126072618000094 ], [ -123.098483953999931, 50.125504121000063 ], [ -123.09811560299994, 50.12549441100002 ], [ -123.098344850999965, 50.121901841000074 ], [ -123.09901174099997, 50.121919419000072 ], [ -123.099021528999984, 50.121765957000029 ], [ -123.104610910999924, 50.121913118000101 ], [ -123.10444313, 50.124548201000039 ], [ -123.107050791999939, 50.124616760000052 ], [ -123.106822218999952, 50.128209335000079 ], [ -123.101232056999933, 50.128062287000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.947678083631015", "sL_AssetLoss": "9518", "sL_BldgLoss": "9020", "sL_StrLoss": "7271", "sL_NStrLoss": "1749", "sL_ContLoss": "498", "geom_point": "0101000020E6100000248059A9B9CB5EC095FF35C588F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.181985793999942, 49.879526692000113 ], [ -123.182103307999924, 49.87742168800002 ], [ -123.182350600999953, 49.876486011000061 ], [ -123.182249005999907, 49.875209886000064 ], [ -123.181813695999935, 49.874373907000113 ], [ -123.180907796999946, 49.87388969700006 ], [ -123.180754022999963, 49.873656102000048 ], [ -123.180672238999989, 49.8729615660001 ], [ -123.183465033999937, 49.873113034000063 ], [ -123.183451559999938, 49.873331870000058 ], [ -123.184041214999951, 49.873347043000081 ], [ -123.183819943999964, 49.876940991000076 ], [ -123.183582163999972, 49.876934873000025 ], [ -123.183564874999945, 49.877215606000057 ], [ -123.183780670999951, 49.877221159000051 ], [ -123.18377175199997, 49.877366003000112 ], [ -123.185416820999947, 49.877408317000082 ], [ -123.18532524599999, 49.878896359000059 ], [ -123.185619107999912, 49.878903915000123 ], [ -123.185397932999948, 49.882497838000042 ], [ -123.183749225999918, 49.882455436000029 ], [ -123.18373927199994, 49.882617078000102 ], [ -123.183005275999932, 49.882598193 ], [ -123.182832596999916, 49.885401293000051 ], [ -123.182399824999948, 49.885390156000035 ], [ -123.182365710999974, 49.885943803000011 ], [ -123.180707525999978, 49.885901114000049 ], [ -123.180686489999957, 49.885744802000012 ], [ -123.180726189999973, 49.88498849700008 ], [ -123.181141012999902, 49.884061390000085 ], [ -123.1820421, 49.883322204000116 ], [ -123.182543596999935, 49.88303450300009 ], [ -123.182681114999966, 49.882853707000024 ], [ -123.182734596999978, 49.882376490000098 ], [ -123.182606799999974, 49.881567594000067 ], [ -123.182229203999924, 49.881010702000019 ], [ -123.181947608999948, 49.880299987000036 ], [ -123.181985793999942, 49.879526692000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.790356394129979", "sL_AssetLoss": "4770", "sL_BldgLoss": "3770", "sL_StrLoss": "2140", "sL_NStrLoss": "1630", "sL_ContLoss": "1000", "geom_point": "0101000020E6100000B7BB419348CF5EC0F97297ABBCC54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.237834613999951, 49.544327547000158 ], [ -123.239908075999949, 49.544323267 ], [ -123.239912039999979, 49.545132788000053 ], [ -123.239082641999971, 49.54513450600011 ], [ -123.239083958999956, 49.545404345000136 ], [ -123.237839853999915, 49.545406910000096 ], [ -123.237834613999951, 49.544327547000158 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.947984911653762", "sL_AssetLoss": "1007.4", "sL_BldgLoss": "955", "sL_StrLoss": "823", "sL_NStrLoss": "132", "sL_ContLoss": "52.4", "geom_point": "0101000020E610000094EB96B206C95EC067759B0514FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.140802053999963, 49.978052875000031 ], [ -123.140801425999911, 49.977837942000114 ], [ -123.140605877999931, 49.977838179000088 ], [ -123.140390496999927, 49.977576394000089 ], [ -123.140613086999977, 49.977449596 ], [ -123.140380992999937, 49.977142794000059 ], [ -123.140380663, 49.977028984000086 ], [ -123.140294975999936, 49.977029087000048 ], [ -123.139960978999937, 49.976587569000074 ], [ -123.13995991299997, 49.976220024000092 ], [ -123.141215096999971, 49.976218502000087 ], [ -123.141216675999956, 49.976758146000094 ], [ -123.141635075999943, 49.976757636000066 ], [ -123.141636658999971, 49.97729728000008 ], [ -123.142055062999972, 49.977296769000091 ], [ -123.142057445999967, 49.978106234000037 ], [ -123.141501492999978, 49.978106914000129 ], [ -123.141480106999964, 49.978079108000081 ], [ -123.140802053999963, 49.978052875000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19330833", "BldgCostT": "10383333", "sL_LossRatio": "0.880221643093895", "sL_AssetLoss": "3952.3", "sL_BldgLoss": "3478.9", "sL_StrLoss": "1944", "sL_NStrLoss": "1534.9", "sL_ContLoss": "473.4", "geom_point": "0101000020E61000004F54DBF2B6C65EC0DDB9831A36084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.105705484999973, 50.063408393000032 ], [ -123.106261966999966, 50.0634078840001 ], [ -123.106263755999947, 50.064217338000091 ], [ -123.105844595999926, 50.064217721000055 ], [ -123.10584518899999, 50.064487539000055 ], [ -123.10542602699999, 50.064487921000065 ], [ -123.105426617999953, 50.064757739000115 ], [ -123.105007453, 50.064758119000039 ], [ -123.1050079499999, 50.064985198000073 ], [ -123.105008041999923, 50.065027937000067 ], [ -123.10448822099994, 50.065028406000124 ], [ -123.103750539999965, 50.065029068000115 ], [ -123.103749563999941, 50.064576316000107 ], [ -123.10374821399995, 50.063949795000042 ], [ -123.10416737099996, 50.063949421000082 ], [ -123.104166200999927, 50.063409783000104 ], [ -123.105705484999973, 50.063408393000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "231637960", "BldgCostT": "136406685", "sL_LossRatio": "0.685368170252824", "sL_AssetLoss": "72320.21", "sL_BldgLoss": "49565.97", "sL_StrLoss": "36025.37", "sL_NStrLoss": "13540.6", "sL_ContLoss": "22754.24", "geom_point": "0101000020E6100000FE6B60485AC25EC063FF8F55420B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.031565773999901, 50.08762921400011 ], [ -123.031817635, 50.087273043000053 ], [ -123.032459586999977, 50.087290365000094 ], [ -123.032756778999939, 50.087319133000086 ], [ -123.03309519799997, 50.087351900000037 ], [ -123.033872195999905, 50.08734040900007 ], [ -123.034626380999953, 50.08725009900008 ], [ -123.036699284999912, 50.086774586000047 ], [ -123.03677336899996, 50.086757577000107 ], [ -123.036967051999923, 50.086746348000084 ], [ -123.035905276000037, 50.085975970000099 ], [ -123.035386533999898, 50.082241929000077 ], [ -123.035180942999943, 50.082077855000136 ], [ -123.035226827999963, 50.081373405000065 ], [ -123.03628742399998, 50.081401993000043 ], [ -123.036283687999941, 50.081563594000038 ], [ -123.036424401999966, 50.081824297000068 ], [ -123.036620015999944, 50.081815701000053 ], [ -123.036884699, 50.081580705000114 ], [ -123.037319303999979, 50.081617694000073 ], [ -123.037905112999979, 50.081743089000042 ], [ -123.038717503999948, 50.082101990000055 ], [ -123.038955277999918, 50.082524997000093 ], [ -123.038844090999987, 50.083667201000019 ], [ -123.038941394999966, 50.08387370700008 ], [ -123.039333175999928, 50.084198397000122 ], [ -123.039879507999956, 50.084432001 ], [ -123.040522696999943, 50.084521711000022 ], [ -123.042046502999966, 50.084555910000063 ], [ -123.042968796999943, 50.08449319100005 ], [ -123.043495040999957, 50.084566367000029 ], [ -123.04346381799995, 50.085047009000078 ], [ -123.044833219999973, 50.085083814000015 ], [ -123.044753943999979, 50.086304755000079 ], [ -123.04459993599994, 50.088676446000122 ], [ -123.04397137, 50.088659555000035 ], [ -123.043960918999971, 50.088820461000054 ], [ -123.043466738999911, 50.088807178000124 ], [ -123.043422835999962, 50.089482972 ], [ -123.040743290999984, 50.089410914000048 ], [ -123.040609734999975, 50.091464736000077 ], [ -123.037425951, 50.091379032000127 ], [ -123.037394526999947, 50.09186171300005 ], [ -123.036457210999941, 50.091836465000071 ], [ -123.036449892999926, 50.091948836000078 ], [ -123.032368842, 50.091838808000048 ], [ -123.032366122000013, 50.091880536000104 ], [ -123.026780663999915, 50.091729702000123 ], [ -123.026910618999963, 50.089740568000096 ], [ -123.027640243999926, 50.089273651000099 ], [ -123.028660639999913, 50.089078446000073 ], [ -123.030058412999921, 50.088795951000101 ], [ -123.030814243999913, 50.088278468000041 ], [ -123.031565773999901, 50.08762921400011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954833", "BldgCostT": "3153333", "sL_LossRatio": "0.978026439318972", "sL_AssetLoss": "7882.2", "sL_BldgLoss": "7709", "sL_StrLoss": "7351", "sL_NStrLoss": "358", "sL_ContLoss": "173.2", "geom_point": "0101000020E6100000F9EAF4CD87C65EC0243E3DD7F3054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.101617655999945, 50.047492717000132 ], [ -123.10161708699998, 50.047222898000015 ], [ -123.10101261799997, 50.047223425 ], [ -123.100360049999949, 50.047223991000074 ], [ -123.100357237999958, 50.045874897000047 ], [ -123.100776237000019, 50.045874533000053 ], [ -123.100775672999958, 50.045604715000117 ], [ -123.102669730999978, 50.045603055000122 ], [ -123.103289661999895, 50.045602505000048 ], [ -123.103290239999964, 50.045872324000094 ], [ -123.103709240999947, 50.045871950000056 ], [ -123.103711566999948, 50.046951226000033 ], [ -123.103292556999975, 50.046951599000138 ], [ -123.10329371399996, 50.047491238000063 ], [ -123.101617655999945, 50.047492717000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22251417", "BldgCostT": "12431667", "sL_LossRatio": "0.588572214076246", "sL_AssetLoss": "13094.4", "sL_BldgLoss": "7707", "sL_StrLoss": "4096.9", "sL_NStrLoss": "3610.1", "sL_ContLoss": "5387.4", "geom_point": "0101000020E6100000113DBEF756C05EC07F388AA4440C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004966075, 50.094917471000052 ], [ -123.005474844999966, 50.094796363000043 ], [ -123.006471301999952, 50.09468402300007 ], [ -123.007216469999918, 50.094478481000053 ], [ -123.007718185999948, 50.094506488000057 ], [ -123.008124084999963, 50.094613135000024 ], [ -123.009127818999943, 50.094876802000044 ], [ -123.009317447999933, 50.094891114000056 ], [ -123.009521684999982, 50.094906498000093 ], [ -123.009952317999989, 50.094890301000106 ], [ -123.010458402999959, 50.094809596000111 ], [ -123.010727222999947, 50.094741790000057 ], [ -123.010711912999952, 50.094974853000039 ], [ -123.007661645999988, 50.094891922000066 ], [ -123.007569259999954, 50.096296728000077 ], [ -123.006537216, 50.096268649000095 ], [ -123.006502946999916, 50.096789552000104 ], [ -123.004256775, 50.096728408000047 ], [ -123.004231071999968, 50.097118806000033 ], [ -123.002030803999943, 50.09705886700003 ], [ -123.002016411999989, 50.096923619000044 ], [ -123.002099210999972, 50.096494898000067 ], [ -123.002772425000018, 50.095994760000103 ], [ -123.003302493999968, 50.095600953000051 ], [ -123.003545971999927, 50.095472616000073 ], [ -123.004966075, 50.094917471000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214977693", "BldgCostT": "138197325", "sL_LossRatio": "0.756050565995788", "sL_AssetLoss": "42101.02", "sL_BldgLoss": "31830.5", "sL_StrLoss": "18332.3", "sL_NStrLoss": "13498.2", "sL_ContLoss": "10270.52", "geom_point": "0101000020E61000002CD9467644BF5EC0C2F394CD830E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.986383601999947, 50.116021608000061 ], [ -122.986359310999944, 50.115121193000064 ], [ -122.986167692999985, 50.11372588700003 ], [ -122.986162371999967, 50.112898003000033 ], [ -122.986240585999923, 50.112308991000091 ], [ -122.986445800999917, 50.111682105000092 ], [ -122.986686803999987, 50.1112343980001 ], [ -122.98750521099997, 50.110436206000031 ], [ -122.988535011999915, 50.109775370000101 ], [ -122.988598397999965, 50.109734699000121 ], [ -122.989100496999981, 50.109316502000141 ], [ -122.98913176899994, 50.109270523000085 ], [ -122.989481880999975, 50.108755597 ], [ -122.989766370999945, 50.107963318 ], [ -122.98978899299999, 50.107900311000051 ], [ -122.989982192999946, 50.107010305000081 ], [ -122.990504190999985, 50.106289513 ], [ -122.990874004999966, 50.105883109000054 ], [ -122.99104618799997, 50.105775306000076 ], [ -122.992274501999944, 50.105462494000029 ], [ -122.99271469599995, 50.105258591000059 ], [ -122.992850047, 50.105144527000071 ], [ -122.992724681999974, 50.10704096000012 ], [ -122.991932239999983, 50.107019300000104 ], [ -122.991739510999963, 50.109933677000114 ], [ -122.99162834, 50.109930639000069 ], [ -122.99159623299991, 50.110416081000047 ], [ -122.990979168999957, 50.110399210000047 ], [ -122.990941838999959, 50.110963495000135 ], [ -122.988927683999947, 50.110908401000088 ], [ -122.988716929999953, 50.114091841000061 ], [ -122.988584155999931, 50.114088208000076 ], [ -122.988563215999989, 50.114404457 ], [ -122.98876081399996, 50.114409864000045 ], [ -122.988727187999956, 50.114917738000024 ], [ -122.988761045999951, 50.114918664000108 ], [ -122.988695342999961, 50.115911012000069 ], [ -122.988712011999937, 50.115911468000043 ], [ -122.988474139999951, 50.119503833000124 ], [ -122.988458258999941, 50.119503400000134 ], [ -122.988395193, 50.120455733000028 ], [ -122.988202337999908, 50.120450456000086 ], [ -122.988156221999958, 50.121146738000071 ], [ -122.987092857999954, 50.121117635000083 ], [ -122.987042819999914, 50.121872863000071 ], [ -122.985822280999969, 50.121839447000042 ], [ -122.985796325999956, 50.121592590000034 ], [ -122.985785898999978, 50.121493499000039 ], [ -122.985832940999941, 50.121187504000062 ], [ -122.985854066999934, 50.121050056000058 ], [ -122.98585911899994, 50.121017408000114 ], [ -122.985876783999942, 50.12090218400003 ], [ -122.985960039999938, 50.120627628000136 ], [ -122.98621140600001, 50.119798383000095 ], [ -122.986218991999962, 50.11977340100001 ], [ -122.986362900999922, 50.118637399000107 ], [ -122.986377739999966, 50.116761454000034 ], [ -122.986383601999947, 50.116021608000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20461978", "BldgCostT": "11489857", "sL_LossRatio": "0.965330560048262", "sL_AssetLoss": "8884.77", "sL_BldgLoss": "8576.74", "sL_StrLoss": "7760.94", "sL_NStrLoss": "815.8", "sL_ContLoss": "308.03", "geom_point": "0101000020E6100000A6ED88D8DABF5EC0E79CAFC4490D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.994781631999956, 50.10459312700003 ], [ -122.994807674999947, 50.104198875000023 ], [ -122.993923589999909, 50.104198833000076 ], [ -122.993923597999981, 50.104131043000038 ], [ -122.993622408999954, 50.104122814000021 ], [ -122.993844303999978, 50.103813907000102 ], [ -122.99405527, 50.103606396000046 ], [ -122.99434868699997, 50.103400303000036 ], [ -122.994544087999955, 50.103327580000034 ], [ -122.994799114999978, 50.103232708000107 ], [ -122.995172793, 50.10318889100008 ], [ -122.99534710799999, 50.103217344000043 ], [ -122.995536897999941, 50.103248296000046 ], [ -122.996038576999965, 50.103420278000094 ], [ -122.99620727199999, 50.103478095000064 ], [ -122.996323800999974, 50.103490807000071 ], [ -122.996647692999915, 50.103526112000104 ], [ -122.997153916999963, 50.10348860600002 ], [ -122.997713139999945, 50.103327733000121 ], [ -122.998096707999963, 50.103217392000083 ], [ -122.999093594, 50.102994497000033 ], [ -122.999455414999915, 50.102876608000052 ], [ -122.999586843999921, 50.102798465000014 ], [ -122.999691293999945, 50.102736405000059 ], [ -122.999903300999961, 50.102534300000102 ], [ -123.000011209999911, 50.102356933000038 ], [ -123.000562416999969, 50.101451013 ], [ -123.000596850999926, 50.101283055000131 ], [ -123.000368560999959, 50.104745581000024 ], [ -122.994781631999956, 50.10459312700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173535562", "BldgCostT": "107918191", "sL_LossRatio": "0.723328282050486", "sL_AssetLoss": "62465.98", "sL_BldgLoss": "45183.41", "sL_StrLoss": "33749.91", "sL_NStrLoss": "11433.5", "sL_ContLoss": "17282.57", "geom_point": "0101000020E610000017138A6313BE5EC0CC167BF512134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.962510117999969, 50.15569684600014 ], [ -122.964476712999954, 50.154628902000134 ], [ -122.964530602999943, 50.15457649700005 ], [ -122.96612010399997, 50.153009796000056 ], [ -122.966446495999946, 50.152631900000038 ], [ -122.966553801999964, 50.152324514000099 ], [ -122.966457905999931, 50.151349308000086 ], [ -122.966490791999945, 50.150919210000112 ], [ -122.966732416999889, 50.150426607000064 ], [ -122.966928617999912, 50.150025302000088 ], [ -122.966962020999958, 50.149868799000053 ], [ -122.966969405999947, 50.149834219000063 ], [ -122.966997890999949, 50.149700611000128 ], [ -122.967000417999927, 50.149672689000049 ], [ -122.967013322999961, 50.149529273000056 ], [ -122.967051989999959, 50.149099301000035 ], [ -122.967826910999932, 50.149052305000055 ], [ -122.968347716, 50.148909197000094 ], [ -122.968625219999979, 50.148823204000053 ], [ -122.968789113999918, 50.148737802000014 ], [ -122.969074824999964, 50.148487406000065 ], [ -122.969274886, 50.148111505000095 ], [ -122.969373086999951, 50.147920688000099 ], [ -122.96948940299994, 50.147834895000059 ], [ -122.970009203999936, 50.147560383000084 ], [ -122.9702636, 50.147378399000061 ], [ -122.970520596999947, 50.14709400800006 ], [ -122.970659617999956, 50.146836895000114 ], [ -122.970684810999941, 50.146669401000047 ], [ -122.970634793999935, 50.146264017000085 ], [ -122.97051649799999, 50.145937792000083 ], [ -122.969850095999931, 50.144694098000116 ], [ -122.970774216999928, 50.144487385000041 ], [ -122.971017599, 50.144408601000094 ], [ -122.970813810999957, 50.144145688000023 ], [ -122.97074599699998, 50.143860386 ], [ -122.970913391999943, 50.143281102000053 ], [ -122.970585316999944, 50.142861432000103 ], [ -122.970126324999967, 50.142274302000089 ], [ -122.968497691999943, 50.142818791000181 ], [ -122.969468006999989, 50.141603911000146 ], [ -122.96970692299999, 50.141128196000075 ], [ -122.969690494999938, 50.140849698000096 ], [ -122.96952678599996, 50.140511490000065 ], [ -122.970178574, 50.140250494000107 ], [ -122.970606314999884, 50.140108687000087 ], [ -122.970739884999958, 50.140064411000019 ], [ -122.970883616999942, 50.139946907000095 ], [ -122.970966613999963, 50.139814204000103 ], [ -122.970966786999924, 50.139811060000063 ], [ -122.971248747999951, 50.13981113100008 ], [ -122.971248474999967, 50.140265432000049 ], [ -122.97154323299999, 50.140563364000023 ], [ -122.971608252999928, 50.140620664000018 ], [ -122.972087918999989, 50.140620780000113 ], [ -122.972087761999902, 50.140890596000062 ], [ -122.97250759299996, 50.140890696000042 ], [ -122.972507437000019, 50.141160510000134 ], [ -122.972927269, 50.141160609000053 ], [ -122.972926965999974, 50.141700240000077 ], [ -122.97334680299997, 50.141700336000078 ], [ -122.973346653999968, 50.141970151000038 ], [ -122.973766493999932, 50.141970247000138 ], [ -122.973766101999942, 50.142686693000044 ], [ -122.973891634999958, 50.142816763000042 ], [ -122.974009882999923, 50.143049562000094 ], [ -122.974185752999958, 50.143049600000047 ], [ -122.974185460999976, 50.143589230000053 ], [ -122.974605315999966, 50.143589323000093 ], [ -122.974604743999933, 50.14466858100009 ], [ -122.974184881, 50.144668490000107 ], [ -122.974184735999984, 50.144938304000071 ], [ -122.973345003999952, 50.144938114000041 ], [ -122.973344853999976, 50.14520792900008 ], [ -122.975024326999929, 50.14520830300004 ], [ -122.975023904999944, 50.14601774700003 ], [ -122.974604031999888, 50.146017656000041 ], [ -122.974603886999958, 50.146287471000051 ], [ -122.974184009999988, 50.146287378000032 ], [ -122.97418371899991, 50.146827007000049 ], [ -122.973763836999964, 50.146826914000037 ], [ -122.973763688999981, 50.147096728000093 ], [ -122.973122849, 50.147096582000124 ], [ -122.972084149999958, 50.147096336000118 ], [ -122.972084934999955, 50.145747263000047 ], [ -122.971899176999969, 50.145747219000029 ], [ -122.97189703399998, 50.14575476400006 ], [ -122.971664869999969, 50.146072739000061 ], [ -122.971662511999938, 50.15006419500002 ], [ -122.971426770999969, 50.150064139000072 ], [ -122.971394634999953, 50.150137464000061 ], [ -122.971242429999933, 50.150350662000108 ], [ -122.971242116, 50.150873536000013 ], [ -122.970579974999964, 50.150873371000024 ], [ -122.970402204999957, 50.150995859000027 ], [ -122.970401780999978, 50.151682769000075 ], [ -122.970015108999974, 50.151682670000071 ], [ -122.969981778999937, 50.151804604000041 ], [ -122.96998175899995, 50.151838109000018 ], [ -122.971265374999945, 50.151873412000072 ], [ -122.971214853999982, 50.152631408000047 ], [ -122.971262324999955, 50.152632712000091 ], [ -122.971240152999954, 50.152965356 ], [ -122.972430603999953, 50.152998082000082 ], [ -122.972346164999919, 50.154265381000123 ], [ -122.971644460999954, 50.155033657000025 ], [ -122.969150170999967, 50.154921491000081 ], [ -122.968929749999958, 50.15505400100006 ], [ -122.967938589999946, 50.155274682000041 ], [ -122.967578793999976, 50.155400478000068 ], [ -122.967317384999916, 50.155588841000075 ], [ -122.96721321499993, 50.155738326000041 ], [ -122.966909092999956, 50.155927346000041 ], [ -122.966621914999962, 50.155978815000012 ], [ -122.966263242999943, 50.155968718000096 ], [ -122.965817321999921, 50.15583579000004 ], [ -122.965383238999934, 50.155596920000086 ], [ -122.964980809999986, 50.155498598000101 ], [ -122.9643925069999, 50.155556551000082 ], [ -122.964105160999964, 50.15562615700005 ], [ -122.963371129999956, 50.156087795000147 ], [ -122.96328933399991, 50.156136682000074 ], [ -122.962962490999985, 50.156157512000021 ], [ -122.962864130999961, 50.156161323000106 ], [ -122.962464809999958, 50.156052020000082 ], [ -122.962206199, 50.155861902000069 ], [ -122.962510117999969, 50.15569684600014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.966854207436399", "sL_AssetLoss": "817.6", "sL_BldgLoss": "790.5", "sL_StrLoss": "711", "sL_NStrLoss": "79.5", "sL_ContLoss": "27.1", "geom_point": "0101000020E6100000BE6BD097DEC75EC0E92A7A332C054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.121419261999904, 50.040356267000085 ], [ -123.123148071999978, 50.040253781000061 ], [ -123.123340431999935, 50.040251793000031 ], [ -123.12419663799993, 50.040284044000067 ], [ -123.124659370999922, 50.040278186000123 ], [ -123.124640796999955, 50.040572518000069 ], [ -123.123207736999973, 50.040535005000017 ], [ -123.119959527999924, 50.040449907000045 ], [ -123.121419261999904, 50.040356267000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12553417", "BldgCostT": "6711667", "sL_LossRatio": "0.852547099231449", "sL_AssetLoss": "1470.3", "sL_BldgLoss": "1253.5", "sL_StrLoss": "609.3", "sL_NStrLoss": "644.2", "sL_ContLoss": "216.8", "geom_point": "0101000020E6100000E955AE01DBC05EC04DE15A500C0C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.011121298999967, 50.094754864000073 ], [ -123.011121292999988, 50.09473432700004 ], [ -123.010792256999949, 50.094725386000022 ], [ -123.01079973499999, 50.094723499000104 ], [ -123.011360291999921, 50.094582086000038 ], [ -123.01268272499999, 50.094362505000028 ], [ -123.01289530699999, 50.09427740100007 ], [ -123.01296385099999, 50.094198254000084 ], [ -123.012982336999968, 50.094176862000069 ], [ -123.013031498999979, 50.094120112000041 ], [ -123.013052413999944, 50.094020381000107 ], [ -123.013078407999913, 50.093896402000091 ], [ -123.013060416999949, 50.093702717000099 ], [ -123.013459899999972, 50.093506679000072 ], [ -123.01346047, 50.093506542000114 ], [ -123.013461018999976, 50.093506382000108 ], [ -123.013696694999908, 50.093443403000052 ], [ -123.014539569999968, 50.092861654000075 ], [ -123.014503177999941, 50.093416366000042 ], [ -123.014440585999949, 50.093414667000033 ], [ -123.014384422999967, 50.094270667000025 ], [ -123.014057142999917, 50.094261784000032 ], [ -123.014057209999962, 50.094484730000104 ], [ -123.013821282999928, 50.094484758000071 ], [ -123.013800130000021, 50.094807079000105 ], [ -123.011874573999961, 50.094754792000067 ], [ -123.011121298999967, 50.094754864000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2539167", "BldgCostT": "1541667", "sL_LossRatio": "0.469459835396657", "sL_AssetLoss": "3026.67", "sL_BldgLoss": "1420.9", "sL_StrLoss": "720.9", "sL_NStrLoss": "700", "sL_ContLoss": "1605.77", "geom_point": "0101000020E6100000B4C21D3D38C55EC06480FA850D0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.081556628999948, 50.077998061000109 ], [ -123.082814470999935, 50.077997170000096 ], [ -123.082815114, 50.078369824000028 ], [ -123.082815864999944, 50.078806624000038 ], [ -123.081558002999955, 50.078807514000133 ], [ -123.081558460999986, 50.079077332000082 ], [ -123.080564484999982, 50.079078026000097 ], [ -123.080300590999983, 50.079078209000052 ], [ -123.080299237999924, 50.078268756000057 ], [ -123.08155708699995, 50.078267880000041 ], [ -123.081556628999948, 50.077998061000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43545035", "BldgCostT": "22914094", "sL_LossRatio": "0.652957434358777", "sL_AssetLoss": "32129.2", "sL_BldgLoss": "20979", "sL_StrLoss": "11349", "sL_NStrLoss": "9630", "sL_ContLoss": "11150.2", "geom_point": "0101000020E61000008CE39F9DBCC25EC0B37C9731890A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.039150498999945, 50.083037710000092 ], [ -123.039290586999982, 50.082641700000046 ], [ -123.039107710999986, 50.082066401000041 ], [ -123.038967984999886, 50.081940994000085 ], [ -123.038632799999974, 50.081751609000058 ], [ -123.037394471999946, 50.081431823000095 ], [ -123.040050728999972, 50.081503351000052 ], [ -123.04005015499996, 50.080815048000034 ], [ -123.040049625, 50.080178344000032 ], [ -123.040888223999957, 50.080178052000043 ], [ -123.040888223999957, 50.080176453000028 ], [ -123.040887994999963, 50.079908234000065 ], [ -123.04145505799994, 50.079908033000038 ], [ -123.041726588999936, 50.079907935000072 ], [ -123.041726485999931, 50.079788228000062 ], [ -123.041726355999927, 50.079638118000027 ], [ -123.042109082999957, 50.079637980000044 ], [ -123.042984240999914, 50.079637658000131 ], [ -123.042985206999916, 50.080716930000087 ], [ -123.042565900999961, 50.080717085000124 ], [ -123.042566379999954, 50.081256720000027 ], [ -123.042147069999885, 50.081256873000079 ], [ -123.042147307, 50.081526690000061 ], [ -123.041308683999929, 50.081526992000086 ], [ -123.041308914999917, 50.081796810000057 ], [ -123.040793284999893, 50.081796992000079 ], [ -123.040744348999951, 50.082549671000088 ], [ -123.042986898999942, 50.082609992000108 ], [ -123.042985929999986, 50.081526383000039 ], [ -123.045082487999977, 50.081525588000034 ], [ -123.045082741, 50.081795406 ], [ -123.046340683999944, 50.081794910000077 ], [ -123.046340942999919, 50.082064728000034 ], [ -123.047179576999966, 50.082064390000028 ], [ -123.047179840999917, 50.082334208000084 ], [ -123.048437796999963, 50.082333690000048 ], [ -123.048438611999956, 50.083143143000051 ], [ -123.048019285999942, 50.08314331600014 ], [ -123.048019556, 50.083413134000047 ], [ -123.044664932, 50.08341447400008 ], [ -123.044664680999958, 50.083144656000101 ], [ -123.043826028999916, 50.083144975000067 ], [ -123.04382578299996, 50.082875158000064 ], [ -123.043604886, 50.082875241000124 ], [ -123.043536306999926, 50.083931065000066 ], [ -123.043150177999962, 50.083953393000044 ], [ -123.041458404999943, 50.084188411000035 ], [ -123.040689108, 50.084206985000037 ], [ -123.040045718, 50.084125796000073 ], [ -123.039487198999922, 50.08388220000009 ], [ -123.039194301999956, 50.083442097000066 ], [ -123.039150498999945, 50.083037710000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.959792027729636", "sL_AssetLoss": "865.5", "sL_BldgLoss": "830.7", "sL_StrLoss": "737", "sL_NStrLoss": "93.7", "sL_ContLoss": "34.8", "geom_point": "0101000020E610000040811C3977C65EC0BD7CA13660084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.100397201999925, 50.06503201600006 ], [ -123.101654703999927, 50.065030922000041 ], [ -123.101656114999969, 50.065698323000078 ], [ -123.101656415999926, 50.065840376000104 ], [ -123.101266142999975, 50.065840718000111 ], [ -123.10039889299999, 50.065841471000084 ], [ -123.100397201999925, 50.06503201600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4168834", "BldgCostT": "2403334", "sL_LossRatio": "0.96151797319469", "sL_AssetLoss": "938.62", "sL_BldgLoss": "902.5", "sL_StrLoss": "769.2", "sL_NStrLoss": "133.3", "sL_ContLoss": "36.12", "geom_point": "0101000020E61000004489752EB5C45EC070F253036A0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073175122999928, 50.080701826000045 ], [ -123.07443303699992, 50.080701026000042 ], [ -123.074433526999954, 50.081018181000019 ], [ -123.074434289999957, 50.081510479000052 ], [ -123.0740149799999, 50.081510747000102 ], [ -123.074015808999931, 50.082050383000109 ], [ -123.072757860999928, 50.082051177000082 ], [ -123.072757505999931, 50.081817340000086 ], [ -123.072756227999903, 50.080971907000091 ], [ -123.07317553399993, 50.08097164400013 ], [ -123.073175122999928, 50.080701826000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99101688825009", "sL_AssetLoss": "417.45", "sL_BldgLoss": "413.7", "sL_StrLoss": "400", "sL_NStrLoss": "13.7", "sL_ContLoss": "3.75", "geom_point": "0101000020E6100000EC1516DC0FBF5EC05B078BB3B7104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.985910909999944, 50.129830669000114 ], [ -122.98594540500001, 50.129830673000129 ], [ -122.985945010999941, 50.131179750000058 ], [ -122.984685774999946, 50.131179591000041 ], [ -122.984686098999973, 50.130162424000062 ], [ -122.98480161399999, 50.130143350000026 ], [ -122.985153347999983, 50.13008527700002 ], [ -122.985521310999957, 50.130024512 ], [ -122.985768595999986, 50.129924419000112 ], [ -122.985837814999968, 50.129896404000121 ], [ -122.985910909999944, 50.129830669000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16602001", "BldgCostT": "9825001", "sL_LossRatio": "0.784551432884046", "sL_AssetLoss": "11309.01", "sL_BldgLoss": "8872.5", "sL_StrLoss": "6966.8", "sL_NStrLoss": "1905.7", "sL_ContLoss": "2436.51", "geom_point": "0101000020E6100000C57DBB5773C65EC026E7A310F1064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.098703922999988, 50.056938905000088 ], [ -123.09870337199996, 50.056669086000078 ], [ -123.098284275999973, 50.056669441000089 ], [ -123.098282622999974, 50.055859985000097 ], [ -123.098701708999968, 50.055859630000072 ], [ -123.098700602999941, 50.055319993000047 ], [ -123.099119684999934, 50.055319636000014 ], [ -123.099118017999899, 50.054510180000079 ], [ -123.099537093999942, 50.054509822000114 ], [ -123.099535975999942, 50.053970184000022 ], [ -123.099955048999988, 50.053969824000085 ], [ -123.099952806999937, 50.052890550000093 ], [ -123.100204578999978, 50.052890333000079 ], [ -123.100371867999954, 50.052890187000052 ], [ -123.100369616999942, 50.051810912000086 ], [ -123.10204582599999, 50.051809450000121 ], [ -123.102046396999967, 50.052079270000021 ], [ -123.102465450999929, 50.052078901000051 ], [ -123.10246602699999, 50.052348720000111 ], [ -123.102885082999975, 50.052348349000063 ], [ -123.102887390999982, 50.053427623000069 ], [ -123.103306456999974, 50.05342725100008 ], [ -123.103308194999912, 50.054236707000022 ], [ -123.102050974999941, 50.054237820000026 ], [ -123.102052119999911, 50.054777456000039 ], [ -123.101633040999971, 50.054777824000091 ], [ -123.101633611999958, 50.055047643000108 ], [ -123.101214532, 50.055048009000124 ], [ -123.10121566699999, 50.055587646000028 ], [ -123.100796582, 50.055588011000061 ], [ -123.100797147999955, 50.055857830000036 ], [ -123.100378058999951, 50.055858192000066 ], [ -123.100379184999966, 50.056397829000083 ], [ -123.099960091999932, 50.056398192000096 ], [ -123.099961212999972, 50.05693782900007 ], [ -123.09871657299999, 50.056938893000073 ], [ -123.098703922999988, 50.056938905000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25355456", "BldgCostT": "17277039", "sL_LossRatio": "0.876971735126912", "sL_AssetLoss": "12239.22", "sL_BldgLoss": "10733.45", "sL_StrLoss": "9421.35", "sL_NStrLoss": "1312.1", "sL_ContLoss": "1505.77", "geom_point": "0101000020E610000069AD4765F3B45EC0AAB9F5FD482C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.828476022999908, 50.352075708000072 ], [ -122.828511019999894, 50.351576625000085 ], [ -122.827831908999926, 50.351557158000055 ], [ -122.827970357999931, 50.349583088000074 ], [ -122.823887095999922, 50.349465958000039 ], [ -122.823924054999921, 50.348939639000086 ], [ -122.820437194999897, 50.348839497000014 ], [ -122.82003375, 50.34820991300009 ], [ -122.820035323999932, 50.348187511000113 ], [ -122.820019094000017, 50.348187044000113 ], [ -122.819883983999915, 50.347976196000097 ], [ -122.819506109999935, 50.347651503000094 ], [ -122.818844645999917, 50.347232064000117 ], [ -122.818928826000032, 50.346035085000068 ], [ -122.81730867, 50.345988492000117 ], [ -122.817483228999947, 50.34350744000001 ], [ -122.816312995999979, 50.343473771000042 ], [ -122.816345066999929, 50.343018080000064 ], [ -122.81630652699999, 50.343016972000029 ], [ -122.816339087999935, 50.342554288000017 ], [ -122.81619945199995, 50.342550270000068 ], [ -122.816219803999928, 50.342261087000097 ], [ -122.814741417999954, 50.342218532000082 ], [ -122.81479275399991, 50.341489447000178 ], [ -122.81262029, 50.341426877000082 ], [ -122.81269596199999, 50.34035283600015 ], [ -122.81237445, 50.340343573000077 ], [ -122.812379261999979, 50.340275273000053 ], [ -122.811670728999928, 50.340254856000136 ], [ -122.811676098999968, 50.340178645000037 ], [ -122.811375485, 50.340169981000031 ], [ -122.81097411899999, 50.339973445000041 ], [ -122.810979255999897, 50.339900574000097 ], [ -122.810815676999979, 50.339895858000069 ], [ -122.810120786999974, 50.339555578000095 ], [ -122.810314280999961, 50.339351942000121 ], [ -122.81201979199993, 50.338120505000042 ], [ -122.812555058999948, 50.337733985000071 ], [ -122.81430139899993, 50.338008997000024 ], [ -122.814275601999924, 50.336177701000054 ], [ -122.813654339999957, 50.33617266200018 ], [ -122.813626130999978, 50.336172428000062 ], [ -122.812103702999977, 50.336160086000092 ], [ -122.812105716999952, 50.334788722000049 ], [ -122.812106879999945, 50.333978707000142 ], [ -122.812142913999978, 50.332954110000102 ], [ -122.812178358999972, 50.331946859000041 ], [ -122.813567703999922, 50.331974127000073 ], [ -122.814058873999926, 50.331983740000119 ], [ -122.814100993999944, 50.335633141000073 ], [ -122.818339000999984, 50.335479389000049 ], [ -122.818316817999914, 50.335794835000051 ], [ -122.818408316, 50.335797466000081 ], [ -122.818380124999948, 50.336198375000038 ], [ -122.818612634999937, 50.336205062000047 ], [ -122.818604279999946, 50.336323877000098 ], [ -122.82354036599996, 50.336465732000121 ], [ -122.823339294999954, 50.33932951000007 ], [ -122.823391685999965, 50.339879895000088 ], [ -122.823574479999976, 50.339880173000083 ], [ -122.823573321999973, 50.340192535000035 ], [ -122.823949291999938, 50.340203330000115 ], [ -122.823697169999917, 50.343794288000012 ], [ -122.82309144099996, 50.343776896000058 ], [ -122.82302834399999, 50.34467531100011 ], [ -122.824648458999917, 50.344721820000053 ], [ -122.824644178999975, 50.344782787000028 ], [ -122.829358791999965, 50.344917996000071 ], [ -122.82935543399995, 50.34496590800007 ], [ -122.830096533999907, 50.344987144000044 ], [ -122.830181307999979, 50.343777366000033 ], [ -122.835797185999965, 50.34393812400009 ], [ -122.835545981999957, 50.347529092000116 ], [ -122.834306868999974, 50.347493646000068 ], [ -122.834283708999919, 50.347824546000084 ], [ -122.834703678999944, 50.347836561000094 ], [ -122.834555661999957, 50.349951632000064 ], [ -122.835723443999939, 50.349985033000017 ], [ -122.835747428999923, 50.349642215000074 ], [ -122.841364053999911, 50.349802688000054 ], [ -122.841180849999958, 50.352425912000058 ], [ -122.843798479999947, 50.352500602000134 ], [ -122.843846963999979, 50.351805817000063 ], [ -122.844945091999961, 50.351837133000103 ], [ -122.845004866999929, 50.35098024300008 ], [ -122.850621689999969, 50.351140246000121 ], [ -122.850581911999939, 50.351711522000045 ], [ -122.850500910999955, 50.352874711000069 ], [ -122.848510690999888, 50.353755708000044 ], [ -122.846470400000015, 50.354274106000055 ], [ -122.844654997999967, 50.35496481400002 ], [ -122.843992797999974, 50.355142812000047 ], [ -122.842039194999955, 50.355131498000063 ], [ -122.841928578999941, 50.355106080000049 ], [ -122.841617870999968, 50.355034681000085 ], [ -122.841252, 50.354950605000042 ], [ -122.839990411999949, 50.354274109000116 ], [ -122.839502194999938, 50.352898293000067 ], [ -122.839052292999952, 50.352590699000082 ], [ -122.838618205999964, 50.352392688000052 ], [ -122.837677893999924, 50.352238892000038 ], [ -122.836735915999981, 50.352210407 ], [ -122.836157805999974, 50.352300110000087 ], [ -122.835004191999971, 50.352703210000037 ], [ -122.83307600599997, 50.353734288000062 ], [ -122.83263741799999, 50.35407469700008 ], [ -122.832412198999947, 50.354633002000107 ], [ -122.832349081999965, 50.356179694000033 ], [ -122.83202669799999, 50.356340596000038 ], [ -122.830958388999989, 50.356330593000067 ], [ -122.830312190999976, 50.356193913000062 ], [ -122.829525195999977, 50.35591479000005 ], [ -122.828200892, 50.354968034000166 ], [ -122.82835484899999, 50.352772744000035 ], [ -122.828403861999945, 50.352774149000041 ], [ -122.828452886999941, 50.352075045000049 ], [ -122.828476022999908, 50.352075708000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7706750", "BldgCostT": "5315000", "sL_LossRatio": "0.996211251589274", "sL_AssetLoss": "2979.348", "sL_BldgLoss": "2968.06", "sL_StrLoss": "2856.44", "sL_NStrLoss": "111.62", "sL_ContLoss": "11.288", "geom_point": "0101000020E61000000749FA0F44BE5EC0E5CE8E4CEE3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.972626450999911, 50.495602484000088 ], [ -122.972704123999918, 50.494445859000081 ], [ -122.971802195999956, 50.494421264000081 ], [ -122.972031570999945, 50.49100636000005 ], [ -122.971299567999921, 50.490986395000057 ], [ -122.97113339199997, 50.493459862000087 ], [ -122.970264457000013, 50.493436155000069 ], [ -122.970238774999942, 50.493818284000085 ], [ -122.968334340999974, 50.493766300000068 ], [ -122.964603771000014, 50.493664376000019 ], [ -122.964845514999979, 50.490073776000038 ], [ -122.965714382, 50.490097526000092 ], [ -122.965740099999934, 50.48971539600003 ], [ -122.966332111999989, 50.48973157400011 ], [ -122.966379810999911, 50.489022679000044 ], [ -122.966525838999956, 50.48685230900012 ], [ -122.972159998999985, 50.487006121000078 ], [ -122.972157567999929, 50.487042325000083 ], [ -122.972842476999972, 50.487061003000115 ], [ -122.97281766299993, 50.487430595000049 ], [ -122.973664469999974, 50.487453682000123 ], [ -122.973435237999965, 50.490868604000063 ], [ -122.977102041999956, 50.490968502000044 ], [ -122.977103953999958, 50.490939975000103 ], [ -122.982738661999988, 50.491093250000034 ], [ -122.982498334999946, 50.494683884000054 ], [ -122.978341166999925, 50.494570829000054 ], [ -122.978261724999982, 50.495755985000109 ], [ -122.972626450999911, 50.495602484000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6568500", "BldgCostT": "4530000", "sL_LossRatio": "0.988768877090356", "sL_AssetLoss": "4441.23", "sL_BldgLoss": "4391.35", "sL_StrLoss": "4024.45", "sL_NStrLoss": "366.9", "sL_ContLoss": "49.88", "geom_point": "0101000020E6100000B32F764E35BC5EC05759FC22F83B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.941238186999925, 50.47206670300006 ], [ -122.941250780999951, 50.471881003000085 ], [ -122.937828624999966, 50.471786626000075 ], [ -122.937602989999959, 50.471399603000059 ], [ -122.93653318299999, 50.470318699000067 ], [ -122.93595827799993, 50.469937535000042 ], [ -122.936085123999931, 50.468070179000037 ], [ -122.934588198, 50.468028836000023 ], [ -122.934789497999972, 50.465066526000051 ], [ -122.934832192000016, 50.464438188 ], [ -122.936725872999915, 50.464490486000074 ], [ -122.940463446999928, 50.46459361200008 ], [ -122.940392802999924, 50.465635197000061 ], [ -122.944138380999931, 50.465738418000058 ], [ -122.944042689999961, 50.467150950000082 ], [ -122.945489424999948, 50.467190785000064 ], [ -122.945451682999959, 50.467748125000057 ], [ -122.94613263799999, 50.467766868000098 ], [ -122.946115359999908, 50.468022062000088 ], [ -122.947059619999905, 50.468048045000025 ], [ -122.947020328999912, 50.468628583000083 ], [ -122.94711345599994, 50.46863114500011 ], [ -122.946870415999967, 50.472221801000046 ], [ -122.944401619999965, 50.472153852000055 ], [ -122.941238186999925, 50.47206670300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.997822772258704", "sL_AssetLoss": "427.608", "sL_BldgLoss": "426.677", "sL_StrLoss": "415.317", "sL_NStrLoss": "11.36", "sL_ContLoss": "0.931", "geom_point": "0101000020E610000097097547F5B75EC0AFAF96B77A304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.87131293499999, 50.376942843000037 ], [ -122.876933074999897, 50.377101506000017 ], [ -122.876684954999945, 50.380692416000052 ], [ -122.871921381999968, 50.380557954000018 ], [ -122.872308493999967, 50.379891301000136 ], [ -122.87235040900002, 50.379397109000116 ], [ -122.872196678999956, 50.379028294000136 ], [ -122.871763478000034, 50.378029896000051 ], [ -122.871609306999957, 50.37781338800005 ], [ -122.871268385999926, 50.377586459000078 ], [ -122.87131293499999, 50.376942843000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.997490699038382", "sL_AssetLoss": "1365.719", "sL_BldgLoss": "1362.292", "sL_StrLoss": "1334.502", "sL_NStrLoss": "27.79", "sL_ContLoss": "3.427", "geom_point": "0101000020E6100000064D222D9BBE5EC06B653EF7D0404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.977669963999972, 50.509104689000047 ], [ -122.977672079999977, 50.509073123000093 ], [ -122.976942539, 50.509053269000056 ], [ -122.977002627, 50.508157517000036 ], [ -122.97556334699999, 50.508118334000109 ], [ -122.975603101999951, 50.50752595800008 ], [ -122.973805320999972, 50.507476989000153 ], [ -122.973817448999966, 50.507296403000055 ], [ -122.973045605999957, 50.507275370000066 ], [ -122.973286751, 50.503684812000095 ], [ -122.973445641999916, 50.503689142000042 ], [ -122.973473168999945, 50.503279215000092 ], [ -122.974837520999969, 50.503316389000098 ], [ -122.974846215999946, 50.503186848000041 ], [ -122.975684737999941, 50.503209687000052 ], [ -122.975731192999945, 50.503240690000048 ], [ -122.97786030599994, 50.504041099000119 ], [ -122.979003109999923, 50.504176404000098 ], [ -122.98043454099998, 50.504055268000087 ], [ -122.980394515999976, 50.504652673000109 ], [ -122.98144069699994, 50.504681112000128 ], [ -122.981380700999978, 50.505576871000095 ], [ -122.982819905999975, 50.505615978000073 ], [ -122.982817791999977, 50.505647544000048 ], [ -122.983547280999986, 50.505667359000022 ], [ -122.983306942999917, 50.509257931000079 ], [ -122.977669963999972, 50.509104689000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "0.992668268882324", "sL_AssetLoss": "3449.39", "sL_BldgLoss": "3424.1", "sL_StrLoss": "3209", "sL_NStrLoss": "215.1", "sL_ContLoss": "25.29", "geom_point": "0101000020E6100000DF4160A3F4B95EC0B30B829E38364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.904976095999928, 50.427671538000077 ], [ -122.905090537999968, 50.426002037000025 ], [ -122.901855091999934, 50.425911659000086 ], [ -122.901900907999917, 50.425243937000104 ], [ -122.901672627999943, 50.425237556000056 ], [ -122.901849152999944, 50.422664925000021 ], [ -122.901191778999987, 50.422646549000071 ], [ -122.90143818199999, 50.419055772000092 ], [ -122.902700868999958, 50.419091065000046 ], [ -122.907063665999956, 50.419212899000122 ], [ -122.90688745199995, 50.421785550000017 ], [ -122.907544816, 50.421803891000103 ], [ -122.907499084999984, 50.422471620000138 ], [ -122.907727352000038, 50.422477988000047 ], [ -122.907613017999921, 50.42414749900005 ], [ -122.910848348999977, 50.424237709000096 ], [ -122.910602664999914, 50.427828484000045 ], [ -122.90761338599999, 50.427745137000116 ], [ -122.904976095999928, 50.427671538000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.986516414799375", "sL_AssetLoss": "460.56", "sL_BldgLoss": "454.35", "sL_StrLoss": "390.25", "sL_NStrLoss": "64.1", "sL_ContLoss": "6.21", "geom_point": "0101000020E6100000E95ECC3BF3B65EC0D5FCDFAE6A2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.856588455999926, 50.368342465000104 ], [ -122.860970931999987, 50.368466821 ], [ -122.860864699999951, 50.368501893000079 ], [ -122.859710713999931, 50.368644303000096 ], [ -122.859458304999933, 50.368742585000035 ], [ -122.859090795999975, 50.369075888000104 ], [ -122.859090783999946, 50.369263902000085 ], [ -122.859301887999948, 50.369372101000046 ], [ -122.85961102200001, 50.369517402000106 ], [ -122.859762901999929, 50.369921890000093 ], [ -122.860212798999925, 50.370128409000067 ], [ -122.860857494999919, 50.370624015000061 ], [ -122.860814889, 50.370848994000056 ], [ -122.860801994, 50.370921704000075 ], [ -122.861054791999933, 50.371092615000023 ], [ -122.862000521999917, 50.371483574000088 ], [ -122.861958233999971, 50.372092794000096 ], [ -122.861033314999929, 50.372066573 ], [ -122.856338767999958, 50.371933370000129 ], [ -122.856540661999958, 50.369029854000061 ], [ -122.856588455999926, 50.368342465000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "0.994380437026613", "sL_AssetLoss": "1583.931", "sL_BldgLoss": "1575.03", "sL_StrLoss": "1489.63", "sL_NStrLoss": "85.4", "sL_ContLoss": "8.901", "geom_point": "0101000020E6100000B8E0146FC7B85EC0C3324F11D4334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.886100334, 50.408343480000106 ], [ -122.886329506999928, 50.405018923000114 ], [ -122.88237741599994, 50.404907789000028 ], [ -122.882625218999962, 50.401316974000025 ], [ -122.885813897999967, 50.401406653000095 ], [ -122.888248428999972, 50.401475059000092 ], [ -122.888019414999945, 50.404799635000074 ], [ -122.89180802, 50.40490598100007 ], [ -122.891956459999946, 50.405129303000081 ], [ -122.891784744999967, 50.407624882000114 ], [ -122.891724430999986, 50.408501387000065 ], [ -122.886100334, 50.408343480000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.995214126479889", "sL_AssetLoss": "840.181", "sL_BldgLoss": "836.16", "sL_StrLoss": "797.07", "sL_NStrLoss": "39.09", "sL_ContLoss": "4.021", "geom_point": "0101000020E6100000855A57F587BC5EC04F9143C44D3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.947786193999931, 50.481108956000135 ], [ -122.947786675999964, 50.480671030000074 ], [ -122.942474183999948, 50.480524817000095 ], [ -122.942717617999932, 50.476934208000088 ], [ -122.948350458999968, 50.477089230000075 ], [ -122.94831577399998, 50.477601801000034 ], [ -122.94905847299998, 50.477602129000068 ], [ -122.949057602999957, 50.478411526000102 ], [ -122.948261003999974, 50.478411175000076 ], [ -122.94815145699998, 50.480029923000068 ], [ -122.949901516999958, 50.480030689000024 ], [ -122.949900661999934, 50.480840085000118 ], [ -122.949477827999914, 50.480839903000124 ], [ -122.949477540999965, 50.481109702000012 ], [ -122.947786193999931, 50.481108956000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.995534741886299", "sL_AssetLoss": "918.2", "sL_BldgLoss": "914.1", "sL_StrLoss": "880", "sL_NStrLoss": "34.1", "sL_ContLoss": "4.1", "geom_point": "0101000020E6100000DBC7231BFCBC5EC06E38C9E2403D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.95019222399999, 50.476669989000058 ], [ -122.955825057999945, 50.476824631000092 ], [ -122.955582665999955, 50.480415270000037 ], [ -122.952235906999974, 50.480323424000126 ], [ -122.949949385999972, 50.480260616000081 ], [ -122.950096033999955, 50.478092335000021 ], [ -122.95019222399999, 50.476669989000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10294250", "BldgCostT": "6890000", "sL_LossRatio": "0.769005542842088", "sL_AssetLoss": "9679.15", "sL_BldgLoss": "7443.32", "sL_StrLoss": "5825.22", "sL_NStrLoss": "1618.1", "sL_ContLoss": "2235.83", "geom_point": "0101000020E610000077CEFD7239B65EC057A13F3CE42D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.84820648699997, 50.360617491000035 ], [ -122.846661796999982, 50.360335501000066 ], [ -122.845917094999919, 50.360235790000068 ], [ -122.844750098999924, 50.360242885000048 ], [ -122.8439187099999, 50.360403888000057 ], [ -122.843216188999918, 50.360708711000051 ], [ -122.84273730299999, 50.360816890000066 ], [ -122.842371803999924, 50.361031988 ], [ -122.841948897999927, 50.36110320600006 ], [ -122.841217784999955, 50.361084591000122 ], [ -122.840107712999966, 50.360804094000088 ], [ -122.839787007999945, 50.360667516000028 ], [ -122.83993649199999, 50.358528488000033 ], [ -122.838656369999924, 50.358491930000113 ], [ -122.838704201999988, 50.357807707000063 ], [ -122.83852641, 50.357802629000048 ], [ -122.838777433999965, 50.354211700000107 ], [ -122.839587775999931, 50.354234845000086 ], [ -122.839597769999955, 50.354091841000084 ], [ -122.840211312999926, 50.354967693000049 ], [ -122.841573484999969, 50.355337992000031 ], [ -122.841778685999927, 50.355338323000126 ], [ -122.842445491999939, 50.355339392000062 ], [ -122.844063083999956, 50.355340805000054 ], [ -122.846174005999927, 50.354526205000099 ], [ -122.848620709999963, 50.353880993000089 ], [ -122.849326000999937, 50.35352209800007 ], [ -122.849648596999955, 50.353442309000108 ], [ -122.850029799999987, 50.353190311000127 ], [ -122.85048834899996, 50.353055130000065 ], [ -122.850463764999972, 50.353408137000059 ], [ -122.851356675999938, 50.353409280000129 ], [ -122.851355219999959, 50.353875395000102 ], [ -122.851806022999966, 50.353888221 ], [ -122.851766449999943, 50.354456712000065 ], [ -122.851833558999928, 50.354458621000013 ], [ -122.851583569999946, 50.358049578000127 ], [ -122.850972253999927, 50.358032186000074 ], [ -122.850966624999927, 50.358113018000111 ], [ -122.852783662999954, 50.358164703000064 ], [ -122.852728724999949, 50.358954080000039 ], [ -122.853565987999943, 50.358977885000073 ], [ -122.853477694999953, 50.360246797000059 ], [ -122.854739326999947, 50.360282657000035 ], [ -122.854704863999984, 50.360778119000017 ], [ -122.855142244999982, 50.360790548000104 ], [ -122.854892484999951, 50.364381483000074 ], [ -122.851946894999969, 50.364297750000041 ], [ -122.849275177999942, 50.364221733000115 ], [ -122.849731610000035, 50.362993096000146 ], [ -122.849918094999936, 50.362084403000068 ], [ -122.848853096999932, 50.360896698 ], [ -122.84820648699997, 50.360617491000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.997032054086784", "sL_AssetLoss": "738.221", "sL_BldgLoss": "736.03", "sL_StrLoss": "720", "sL_NStrLoss": "16.03", "sL_ContLoss": "2.191", "geom_point": "0101000020E6100000315A897125BA5EC08E05854119374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.907579286000015, 50.428835235000037 ], [ -122.911620824999915, 50.428947898000068 ], [ -122.91137517699994, 50.432538653000115 ], [ -122.909790207999947, 50.432494488000081 ], [ -122.909785312999986, 50.432565992000043 ], [ -122.907918018999951, 50.432513931000074 ], [ -122.907708051999947, 50.432508074000054 ], [ -122.90608879199999, 50.430520595000154 ], [ -122.905525486999977, 50.430368203000107 ], [ -122.905174815999942, 50.430170202000056 ], [ -122.904323948999945, 50.429991243000082 ], [ -122.90440437800001, 50.428818267000096 ], [ -122.905989214000016, 50.428862509000105 ], [ -122.905994113999967, 50.428791005000058 ], [ -122.907579286000015, 50.428835235000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.994129638428644", "sL_AssetLoss": "652.43", "sL_BldgLoss": "648.6", "sL_StrLoss": "611", "sL_NStrLoss": "37.6", "sL_ContLoss": "3.83", "geom_point": "0101000020E6100000CE61295844BC5EC00146E1C4A13C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.938510580999917, 50.472113495000087 ], [ -122.944142805999931, 50.472268731000071 ], [ -122.94389950899992, 50.475859364000094 ], [ -122.942595075999989, 50.475823437000017 ], [ -122.942401282, 50.475663702000141 ], [ -122.941050000999951, 50.475151008000097 ], [ -122.940881016999924, 50.474926003000078 ], [ -122.939740592999939, 50.474304994000043 ], [ -122.938965904999961, 50.473711085000026 ], [ -122.938444460999946, 50.47308758100008 ], [ -122.938510580999917, 50.472113495000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5809667", "BldgCostT": "4006667", "sL_LossRatio": "0.994591728096701", "sL_AssetLoss": "2470.29", "sL_BldgLoss": "2456.93", "sL_StrLoss": "2330.95", "sL_NStrLoss": "125.98", "sL_ContLoss": "13.36", "geom_point": "0101000020E61000002D13FA703BBD5EC0ACAD5427523E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.957776875999912, 50.491137399000095 ], [ -122.95785865, 50.489925543000105 ], [ -122.9541627239999, 50.489824207000069 ], [ -122.954194026, 50.489360843000064 ], [ -122.952707267, 50.489320044000074 ], [ -122.952381510999913, 50.488718006000077 ], [ -122.951959997999964, 50.487342191000124 ], [ -122.951721197999987, 50.486406496000079 ], [ -122.951551179999939, 50.486145896000039 ], [ -122.950946377999955, 50.485704395000091 ], [ -122.950919782999975, 50.485673707000011 ], [ -122.95135965599998, 50.485685789000051 ], [ -122.951458018999944, 50.484230937000056 ], [ -122.952054813999936, 50.484247325000098 ], [ -122.952224037999926, 50.481743750000071 ], [ -122.953635466000023, 50.481782496000093 ], [ -122.957857511999947, 50.48189828800006 ], [ -122.957615254999922, 50.485488909000068 ], [ -122.957179740999905, 50.485476972000129 ], [ -122.957018441999978, 50.485472551000043 ], [ -122.956962344999909, 50.486303737000114 ], [ -122.958000282999976, 50.486332184000091 ], [ -122.960039319999964, 50.486388040000151 ], [ -122.95995761099999, 50.487599903000067 ], [ -122.963653367999953, 50.487701047000023 ], [ -122.963565441999933, 50.489006628000027 ], [ -122.963411541999989, 50.491291655000062 ], [ -122.957776875999912, 50.491137399000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997584584120646", "sL_AssetLoss": "224.392", "sL_BldgLoss": "223.85", "sL_StrLoss": "222", "sL_NStrLoss": "1.85", "sL_ContLoss": "0.542", "geom_point": "0101000020E6100000676A2B5902B85EC0322F8F4E40314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.872751228, 50.383554045000054 ], [ -122.876464119999966, 50.383658832000116 ], [ -122.87623062199998, 50.387037096000043 ], [ -122.874389581999949, 50.385380201000032 ], [ -122.874291990999964, 50.384957213000135 ], [ -122.873814987999964, 50.384525701 ], [ -122.873083613999967, 50.38402010700004 ], [ -122.872805398999915, 50.383588600000017 ], [ -122.872751228, 50.383554045000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13588167", "BldgCostT": "9161667", "sL_LossRatio": "0.814368056227113", "sL_AssetLoss": "10961.26", "sL_BldgLoss": "8926.5", "sL_StrLoss": "7320.6", "sL_NStrLoss": "1605.9", "sL_ContLoss": "2034.76", "geom_point": "0101000020E610000082F188E195BB5EC0B4365342AC3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.92884310899997, 50.466026388000088 ], [ -122.928897621999937, 50.465225696000097 ], [ -122.928304441999956, 50.465209275000056 ], [ -122.928527519999975, 50.46193297000007 ], [ -122.92789914, 50.461915572000144 ], [ -122.92793076199996, 50.461451212000014 ], [ -122.927246248, 50.461432256000087 ], [ -122.92740761599994, 50.459062936000045 ], [ -122.925591341999919, 50.45901261700007 ], [ -122.92581588099999, 50.455717295000092 ], [ -122.922744952999921, 50.45563214900011 ], [ -122.922989822999952, 50.452041472000133 ], [ -122.926544291999917, 50.452140018000094 ], [ -122.926615618999946, 50.451092804000091 ], [ -122.92664815699996, 50.450615057000022 ], [ -122.932277658999965, 50.450770899000119 ], [ -122.932204084999967, 50.451853112000073 ], [ -122.932565018999981, 50.451863094000039 ], [ -122.93237914599996, 50.454597250000113 ], [ -122.934079541999964, 50.45464426000008 ], [ -122.93404547399993, 50.45514562600011 ], [ -122.935015641999925, 50.455172436000147 ], [ -122.934840666999932, 50.457748141000074 ], [ -122.934942111999959, 50.45775094400009 ], [ -122.934865055, 50.458885188000117 ], [ -122.939644016000031, 50.459017122000077 ], [ -122.939400431999942, 50.462607804000122 ], [ -122.93848032599999, 50.462582418000082 ], [ -122.938399259999954, 50.463776926000065 ], [ -122.935818569, 50.463705684000061 ], [ -122.934645028999952, 50.463673268 ], [ -122.934553651999948, 50.465017968000076 ], [ -122.934474540999972, 50.466182115000031 ], [ -122.92884310899997, 50.466026388000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994819378325399", "sL_AssetLoss": "285.68", "sL_BldgLoss": "284.2", "sL_StrLoss": "272", "sL_NStrLoss": "12.2", "sL_ContLoss": "1.48", "geom_point": "0101000020E6100000C33C960449B85EC0D28DD1B6F1314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.878411014999941, 50.391274999000132 ], [ -122.878102906999942, 50.391004389000067 ], [ -122.877669898999955, 50.389476292000033 ], [ -122.877419488999962, 50.388665896000106 ], [ -122.876662214999953, 50.387846995000061 ], [ -122.876511129, 50.387559775000057 ], [ -122.878267406999967, 50.387609293000054 ], [ -122.878209763999934, 50.388443727000073 ], [ -122.879339522999899, 50.388475566000096 ], [ -122.879146274999968, 50.391273805000061 ], [ -122.883207864999989, 50.391388171000109 ], [ -122.883105042999929, 50.392878811000131 ], [ -122.882206804999925, 50.392286210000073 ], [ -122.880844106, 50.391888906000091 ], [ -122.879155583999975, 50.391572704000104 ], [ -122.878411014999941, 50.391274999000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6662750", "BldgCostT": "4595000", "sL_LossRatio": "0.993116383847422", "sL_AssetLoss": "2901.382", "sL_BldgLoss": "2881.41", "sL_StrLoss": "2704.44", "sL_NStrLoss": "176.97", "sL_ContLoss": "19.972", "geom_point": "0101000020E610000069849FB487BA5EC078E6AB0572384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.914461071999938, 50.447251235000088 ], [ -122.914583465999954, 50.445461049000095 ], [ -122.913307336999978, 50.445425538000045 ], [ -122.913243419999986, 50.44535649700002 ], [ -122.913157224999921, 50.445187386000079 ], [ -122.913215840999953, 50.444330382 ], [ -122.912713292999925, 50.444316393000044 ], [ -122.912564457999977, 50.444024369000047 ], [ -122.912617714, 50.443245862000126 ], [ -122.912442568999936, 50.443240986000042 ], [ -122.912208584999973, 50.441659302000062 ], [ -122.911321790999978, 50.440678005000095 ], [ -122.910415195999946, 50.439996451000049 ], [ -122.910439374999939, 50.439643206000021 ], [ -122.91046830599997, 50.439220538000058 ], [ -122.912172896999905, 50.439268018000121 ], [ -122.912230139999949, 50.438431250000114 ], [ -122.90973948599995, 50.438361865000047 ], [ -122.909083079999959, 50.43834357000005 ], [ -122.908988489999928, 50.438248307 ], [ -122.908525876999946, 50.437573194000016 ], [ -122.907994384999981, 50.435478209000053 ], [ -122.908190377999929, 50.434721103000143 ], [ -122.90882905899997, 50.434738912000071 ], [ -122.909094593999924, 50.434746314000023 ], [ -122.909116648999941, 50.434424195000112 ], [ -122.914744072999937, 50.43458092900002 ], [ -122.914498642999902, 50.438171665 ], [ -122.913230733999967, 50.438136377000099 ], [ -122.91321695, 50.438337924000045 ], [ -122.917866305999937, 50.438467254000066 ], [ -122.917703075999924, 50.440857657000024 ], [ -122.91841864299991, 50.440877544000038 ], [ -122.918344185, 50.441968086000038 ], [ -122.919015191999947, 50.441986731000014 ], [ -122.9188832, 50.443920242000054 ], [ -122.920325369999986, 50.443960300000057 ], [ -122.920127343999965, 50.446862155000112 ], [ -122.920080332999973, 50.447551007000087 ], [ -122.914636985999934, 50.447399713000024 ], [ -122.914461071999938, 50.447251235000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.985711146430086", "sL_AssetLoss": "1956.77", "sL_BldgLoss": "1928.81", "sL_StrLoss": "1720.91", "sL_NStrLoss": "207.9", "sL_ContLoss": "27.96", "geom_point": "0101000020E61000008C3024AB4BBB5EC0A3F0F2D758394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.924990821999955, 50.445640105000059 ], [ -122.93061969899999, 50.445796033000057 ], [ -122.930476403999975, 50.447902864000142 ], [ -122.930375468999955, 50.449386754000088 ], [ -122.928483220999965, 50.449334368000052 ], [ -122.928456108999939, 50.449732699000052 ], [ -122.928290839999974, 50.44972812200006 ], [ -122.928234350999929, 50.450558002000051 ], [ -122.925593650999971, 50.450484838000101 ], [ -122.922604887999981, 50.450401956000114 ], [ -122.922708003999972, 50.448889868000023 ], [ -122.922782323999925, 50.44779996000004 ], [ -122.92284974099999, 50.446811255000057 ], [ -122.923014998999989, 50.446815841000053 ], [ -122.923071580999988, 50.445985959 ], [ -122.924963681999927, 50.446038437000077 ], [ -122.924990821999955, 50.445640105000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76842833", "BldgCostT": "53963333", "sL_LossRatio": "0.993778176529265", "sL_AssetLoss": "7177.96", "sL_BldgLoss": "7133.3", "sL_StrLoss": "5301.7", "sL_NStrLoss": "1831.6", "sL_ContLoss": "44.66", "geom_point": "0101000020E610000078481032F9B75EC069624F7527324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.880102572999988, 50.396547246000033 ], [ -122.88021619199999, 50.394901784000112 ], [ -122.879413079999935, 50.394879161000063 ], [ -122.879331776999933, 50.39605631600012 ], [ -122.87370927299996, 50.395897778000105 ], [ -122.873761189999954, 50.395147431000076 ], [ -122.872803182, 50.395120389000112 ], [ -122.872791359999965, 50.395291176000057 ], [ -122.867243892999966, 50.395134425000045 ], [ -122.867168973999952, 50.395132307000054 ], [ -122.867186709999942, 50.394876506000074 ], [ -122.866107206999928, 50.394845970000084 ], [ -122.865993022999945, 50.394562102000116 ], [ -122.865785700999965, 50.393689095000084 ], [ -122.86576, 50.392790410000096 ], [ -122.865133648999958, 50.391974339000058 ], [ -122.865185840999985, 50.391222028000115 ], [ -122.866372387999959, 50.391255604000044 ], [ -122.866374493, 50.391225256000112 ], [ -122.867512679999948, 50.39125745200009 ], [ -122.871414667999971, 50.391367738000092 ], [ -122.871445399999942, 50.390923879000091 ], [ -122.872379466999988, 50.390950258000096 ], [ -122.872410984999973, 50.390494901000075 ], [ -122.872435226, 50.390495586000057 ], [ -122.872636, 50.38759456100005 ], [ -122.869143143999935, 50.387495876000045 ], [ -122.869391899999954, 50.383905012000085 ], [ -122.870812353999952, 50.383945158000131 ], [ -122.870843165999929, 50.38350014600006 ], [ -122.871989308999915, 50.383532527000099 ], [ -122.87210673699991, 50.383535843000118 ], [ -122.872129802999964, 50.383570097000103 ], [ -122.87311070899996, 50.384461607000041 ], [ -122.873335302999934, 50.384893204000065 ], [ -122.87437369599995, 50.386072392000067 ], [ -122.875538005, 50.386828699000034 ], [ -122.875878224999951, 50.387240187000025 ], [ -122.874795362999961, 50.387209635000033 ], [ -122.874774536999922, 50.387510785000067 ], [ -122.876133661999958, 50.387549130000117 ], [ -122.876282211999964, 50.387728790000025 ], [ -122.876673992999955, 50.388476494000059 ], [ -122.876715609999934, 50.388772706000147 ], [ -122.877191701999919, 50.389681294000077 ], [ -122.877442891999976, 50.390654114 ], [ -122.877852885999914, 50.391270971000033 ], [ -122.877861286000012, 50.391283610000123 ], [ -122.877871388999893, 50.391290871000045 ], [ -122.87832511, 50.391616901000127 ], [ -122.87925269499999, 50.391923116000058 ], [ -122.881207618999966, 50.392311903000092 ], [ -122.881755396999921, 50.392519791000133 ], [ -122.88259820399999, 50.393059600000086 ], [ -122.882921322999891, 50.393626405000091 ], [ -122.883481909999958, 50.394167589000077 ], [ -122.883848905999969, 50.394338487000077 ], [ -122.885126406999944, 50.394654700000061 ], [ -122.885521117999986, 50.394852701000097 ], [ -122.885836186999967, 50.395094933000024 ], [ -122.885725180999955, 50.396705460000177 ], [ -122.883435641999966, 50.396641069000097 ], [ -122.880102572999988, 50.396547246000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996539710936397", "sL_AssetLoss": "254.892", "sL_BldgLoss": "254.01", "sL_StrLoss": "247", "sL_NStrLoss": "7.01", "sL_ContLoss": "0.882", "geom_point": "0101000020E6100000D224A93394B95EC0936D43398F344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.90021348, 50.412709402000075 ], [ -122.899355392999951, 50.412142605000049 ], [ -122.898935005999974, 50.411457494000082 ], [ -122.898686813999973, 50.409380999000106 ], [ -122.898519495999906, 50.408814199000126 ], [ -122.898471368999964, 50.408768371000065 ], [ -122.900004157999916, 50.408811264000086 ], [ -122.899935753999969, 50.40980792700006 ], [ -122.900672898999915, 50.409828547000096 ], [ -122.900487238, 50.412534098000052 ], [ -122.900503681999979, 50.412534558000047 ], [ -122.900486489999949, 50.412785069000059 ], [ -122.90021348, 50.412709402000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.987360406675177", "sL_AssetLoss": "869.49", "sL_BldgLoss": "858.5", "sL_StrLoss": "804", "sL_NStrLoss": "54.5", "sL_ContLoss": "10.99", "geom_point": "0101000020E6100000AB0DA9FD31B65EC08A74A2D15B2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.845478090999976, 50.36370220000007 ], [ -122.845643009999961, 50.361338188000055 ], [ -122.845369950999967, 50.361330405000068 ], [ -122.845346027999966, 50.36167332100009 ], [ -122.842407191999925, 50.361589520000074 ], [ -122.842509505999956, 50.36158030100011 ], [ -122.844930897999973, 50.36094510100007 ], [ -122.846391515999954, 50.360739999000053 ], [ -122.847263584999936, 50.360741405000084 ], [ -122.848079105999958, 50.36102198800004 ], [ -122.848794802, 50.361517605000131 ], [ -122.84904470499994, 50.36201179800004 ], [ -122.849002713999965, 50.362578601000067 ], [ -122.848253918999959, 50.363719396000093 ], [ -122.84825363600001, 50.363781266000082 ], [ -122.845478090999976, 50.36370220000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7088083", "BldgCostT": "4888333", "sL_LossRatio": "0.987811457472454", "sL_AssetLoss": "4948.91", "sL_BldgLoss": "4888.59", "sL_StrLoss": "4484.09", "sL_NStrLoss": "404.5", "sL_ContLoss": "60.32", "geom_point": "0101000020E61000009AD045BF4DB95EC03DF758D9C2344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.896629804999961, 50.416497142000019 ], [ -122.896662265999908, 50.416024755000109 ], [ -122.894632163999944, 50.415967889000058 ], [ -122.894759510999933, 50.414115812000055 ], [ -122.894307465999987, 50.414103145000084 ], [ -122.894291184999972, 50.414339911000098 ], [ -122.889955514999912, 50.414218321000071 ], [ -122.889724577, 50.414039598000052 ], [ -122.889541783999945, 50.413706302000051 ], [ -122.888724204, 50.413342364000052 ], [ -122.88891370499999, 50.410591349000093 ], [ -122.888983556999946, 50.410593310000067 ], [ -122.889056762999957, 50.409530450000091 ], [ -122.890522213999972, 50.409571582000055 ], [ -122.8905237, 50.409549985000112 ], [ -122.89175987199998, 50.409584667000068 ], [ -122.891892188999947, 50.407661783000101 ], [ -122.891913173999953, 50.40735681300005 ], [ -122.897347415999917, 50.407509112000092 ], [ -122.897499783999933, 50.408058716000077 ], [ -122.897452997999935, 50.408739862000076 ], [ -122.897970247000018, 50.408754343000076 ], [ -122.898405395999959, 50.409479297000118 ], [ -122.89838710799998, 50.410711185000096 ], [ -122.898695290999953, 50.411799314000106 ], [ -122.899370292999961, 50.41249291200014 ], [ -122.899931821999971, 50.412816198 ], [ -122.901140696999903, 50.413313295000066 ], [ -122.901731817999973, 50.413475593000072 ], [ -122.90247074399997, 50.413508360000051 ], [ -122.902449552999911, 50.413817327000118 ], [ -122.902254952999925, 50.416654513000069 ], [ -122.901229193999924, 50.416625837000019 ], [ -122.896629804999961, 50.416497142000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32856443", "BldgCostT": "18106288", "sL_LossRatio": "0.986933899110391", "sL_AssetLoss": "2496.154", "sL_BldgLoss": "2463.539", "sL_StrLoss": "2194.699", "sL_NStrLoss": "268.84", "sL_ContLoss": "32.615", "geom_point": "0101000020E61000000633757013B75EC0677F4523C4234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858736818999887, 50.282189457000051 ], [ -122.858737617999978, 50.281919649000088 ], [ -122.85747441200003, 50.281918107000109 ], [ -122.857475216999916, 50.2816483 ], [ -122.857054152, 50.281647782000036 ], [ -122.857054959999942, 50.281377975000048 ], [ -122.856858571, 50.281377733000021 ], [ -122.857050977999904, 50.281208008000064 ], [ -122.857323184999984, 50.280889205000051 ], [ -122.857328700999943, 50.280879008000063 ], [ -122.858019510999924, 50.279600092000067 ], [ -122.858327197, 50.279275106000071 ], [ -122.858640790999942, 50.279006002000109 ], [ -122.858927459999961, 50.278841372000045 ], [ -122.859029854999932, 50.278682300000114 ], [ -122.859168238999942, 50.278682467000031 ], [ -122.859168875999956, 50.278466328000064 ], [ -122.859203394999952, 50.278412701000029 ], [ -122.85981933799998, 50.278413445000041 ], [ -122.860011109999931, 50.278413678000049 ], [ -122.86001136099999, 50.278327835000042 ], [ -122.860013481999957, 50.277604253000113 ], [ -122.860434513000015, 50.277604759000113 ], [ -122.860435302000013, 50.277334952000025 ], [ -122.862119414999938, 50.277336962000064 ], [ -122.862120193999914, 50.277067153000175 ], [ -122.862837012999933, 50.27706800200005 ], [ -122.862962244999935, 50.277068149000058 ], [ -122.862962406999927, 50.277012093000032 ], [ -122.862963018999892, 50.276798341000138 ], [ -122.863440535, 50.276798903000049 ], [ -122.864647113999979, 50.276800315000067 ], [ -122.864644817999974, 50.277609738000073 ], [ -122.864223787999919, 50.277609247000107 ], [ -122.864223020999972, 50.277879055000049 ], [ -122.863801987999977, 50.27787856200009 ], [ -122.863800446999974, 50.278418178000067 ], [ -122.863379409999979, 50.27841768400004 ], [ -122.863378637999944, 50.278687492000074 ], [ -122.862957596999962, 50.278686997000058 ], [ -122.862956823, 50.278956804000053 ], [ -122.862535779999988, 50.278956307000058 ], [ -122.862534225999966, 50.279495922000102 ], [ -122.86211318099997, 50.279495423000085 ], [ -122.862112399999958, 50.279765232000116 ], [ -122.861691349999958, 50.279764732000068 ], [ -122.861689787999978, 50.280304347000047 ], [ -122.861268732999989, 50.280303845000041 ], [ -122.861267165999905, 50.28084346100011 ], [ -122.860846105999926, 50.280842957000026 ], [ -122.860845319999953, 50.281112765000024 ], [ -122.860424256999977, 50.281112261000132 ], [ -122.860422680999989, 50.281651875000115 ], [ -122.860001612999923, 50.281651370000134 ], [ -122.860000029999952, 50.282190984000053 ], [ -122.858736818999887, 50.282189457000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2847500", "BldgCostT": "1700000", "sL_LossRatio": "0.984869200619816", "sL_AssetLoss": "3510.72", "sL_BldgLoss": "3457.6", "sL_StrLoss": "3296", "sL_NStrLoss": "161.6", "sL_ContLoss": "53.12", "geom_point": "0101000020E6100000D095EFB6DEB35EC0350BACCADB264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.809381105999933, 50.304782888000076 ], [ -122.809384340999941, 50.303973471000113 ], [ -122.809515117999965, 50.303973685000123 ], [ -122.809541592999949, 50.304480338000076 ], [ -122.80954166, 50.304481687000084 ], [ -122.809722726999937, 50.30397402500008 ], [ -122.809805603999962, 50.303974160000081 ], [ -122.8098065399999, 50.303739030000038 ], [ -122.809929913999937, 50.303393113000013 ], [ -122.810043416, 50.30316512600011 ], [ -122.810230085999976, 50.303165432000121 ], [ -122.81023159199999, 50.302787143000046 ], [ -122.810371904999954, 50.302505290000028 ], [ -122.810473100999971, 50.302356404000086 ], [ -122.811497049999957, 50.302358069000057 ], [ -122.811493849999977, 50.303167487000024 ], [ -122.811072595999974, 50.303166803000046 ], [ -122.811069388999925, 50.303976221000035 ], [ -122.81064812699999, 50.303975536000038 ], [ -122.810644913999965, 50.304784953000087 ], [ -122.809434196999959, 50.304782975000066 ], [ -122.809381105999933, 50.304782888000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5245084", "BldgCostT": "3198334", "sL_LossRatio": "0.457099955536442", "sL_AssetLoss": "2881.011", "sL_BldgLoss": "1316.91", "sL_StrLoss": "691.16", "sL_NStrLoss": "625.75", "sL_ContLoss": "1564.101", "geom_point": "0101000020E61000001122110164B45EC0C1B9D0A634264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.814552770999924, 50.298780540000081 ], [ -122.820740493999935, 50.297159989000171 ], [ -122.821359756999954, 50.296964496000072 ], [ -122.821283099999931, 50.298056598000123 ], [ -122.821623145999979, 50.298057121000113 ], [ -122.821620117999942, 50.298866540000098 ], [ -122.82122628800002, 50.298865936000034 ], [ -122.821197631999951, 50.299274154000038 ], [ -122.81752120499999, 50.299168352000059 ], [ -122.817511880999987, 50.299301043000106 ], [ -122.813297640999963, 50.299179612000053 ], [ -122.814090094999969, 50.29890171400006 ], [ -122.814552770999924, 50.298780540000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997437102216907", "sL_AssetLoss": "234.11", "sL_BldgLoss": "233.51", "sL_StrLoss": "231", "sL_NStrLoss": "2.51", "sL_ContLoss": "0.6", "geom_point": "0101000020E6100000F0973F74BBB45EC04CE1FF9619264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.82331098399996, 50.297250274000135 ], [ -122.824574591999962, 50.297252188000094 ], [ -122.824571615999957, 50.298061607000122 ], [ -122.823307984999971, 50.298059694000131 ], [ -122.82331098399996, 50.297250274000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.965201465201465", "sL_AssetLoss": "8.19", "sL_BldgLoss": "7.905", "sL_StrLoss": "0.635", "sL_NStrLoss": "7.27", "sL_ContLoss": "0.285", "geom_point": "0101000020E6100000B3DCA9EB16B65EC0E17A14AEC7244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.843981710999984, 50.287566759000107 ], [ -122.843983725999948, 50.28695019700011 ], [ -122.84436813399999, 50.287028939000088 ], [ -122.844913099999971, 50.287140581000081 ], [ -122.845202722999929, 50.287199902000104 ], [ -122.845636817999903, 50.287212976000077 ], [ -122.845753700999921, 50.287216512000043 ], [ -122.845864046999949, 50.287203981000076 ], [ -122.846386789999912, 50.287144684000019 ], [ -122.84650991499997, 50.287104944000056 ], [ -122.846508418999917, 50.287570123000123 ], [ -122.843981710999984, 50.287566759000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997152999894556", "sL_AssetLoss": "256.059", "sL_BldgLoss": "255.33", "sL_StrLoss": "246", "sL_NStrLoss": "9.33", "sL_ContLoss": "0.729", "geom_point": "0101000020E61000003E63574129B75EC0B8486FF2BA224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.861591209, 50.270591111000059 ], [ -122.862559861, 50.270592260000029 ], [ -122.862555977999975, 50.271941300000023 ], [ -122.860872055999948, 50.271939297000131 ], [ -122.860872526999955, 50.271777813000021 ], [ -122.861145360999942, 50.271613754000057 ], [ -122.861505416999989, 50.270787918000075 ], [ -122.861591209, 50.270591111000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9025000", "BldgCostT": "4750000", "sL_LossRatio": "0.90524379024839", "sL_AssetLoss": "108.7", "sL_BldgLoss": "98.4", "sL_StrLoss": "20", "sL_NStrLoss": "78.4", "sL_ContLoss": "10.3", "geom_point": "0101000020E61000009CC4FFA189B75EC056B7DD78B5224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867190515999937, 50.270597642000077 ], [ -122.868453422999934, 50.270599078000124 ], [ -122.868451010999962, 50.271474054000095 ], [ -122.867491667999985, 50.271833654000055 ], [ -122.867190108999978, 50.271946687000096 ], [ -122.867186762999964, 50.271946684000049 ], [ -122.867190368999957, 50.270651033000036 ], [ -122.867190515999937, 50.270597642000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83262219", "BldgCostT": "49890412", "sL_LossRatio": "0.789360283844811", "sL_AssetLoss": "49280.45", "sL_BldgLoss": "38900.03", "sL_StrLoss": "33058.23", "sL_NStrLoss": "5841.8", "sL_ContLoss": "10380.42", "geom_point": "0101000020E610000089954EDA8AB35EC0E14F9EC3C6284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.810981690999981, 50.326100264000068 ], [ -122.810983831999962, 50.325560654000064 ], [ -122.81056237899999, 50.325559969000025 ], [ -122.810564522999968, 50.325020359000114 ], [ -122.80979, 50.325019095000066 ], [ -122.809746081999918, 50.325642114000061 ], [ -122.808802, 50.325139584000084 ], [ -122.808445907999939, 50.324944900000105 ], [ -122.808218507999968, 50.3247799950001 ], [ -122.807645590999982, 50.323630916000063 ], [ -122.807597472999959, 50.323458809000087 ], [ -122.807522115999987, 50.323189289000034 ], [ -122.807549084, 50.322925597000037 ], [ -122.807739093999956, 50.322405693000057 ], [ -122.806959752999887, 50.322302571000137 ], [ -122.806304219999944, 50.322215812000131 ], [ -122.806068606999972, 50.322186490000014 ], [ -122.805736687999939, 50.322138909000032 ], [ -122.805532984999985, 50.322109675000029 ], [ -122.80527510099995, 50.322072708000135 ], [ -122.805274202999982, 50.322063230000026 ], [ -122.805266285999963, 50.321977993000154 ], [ -122.805117806999974, 50.321911697000189 ], [ -122.804961018999933, 50.321920598000141 ], [ -122.805073704, 50.321719696000073 ], [ -122.80541378400001, 50.320646400000072 ], [ -122.805430899999976, 50.320503897000037 ], [ -122.805311892999967, 50.320257484000066 ], [ -122.805144717999937, 50.320075499000069 ], [ -122.804821409999988, 50.319915013000056 ], [ -122.803979797999958, 50.319607296000093 ], [ -122.803019486, 50.319245331000012 ], [ -122.802528068999962, 50.319060116000067 ], [ -122.801925998999963, 50.318833175000073 ], [ -122.80127352399991, 50.318587206000103 ], [ -122.800215592, 50.318191709000082 ], [ -122.800020810999939, 50.31811889600003 ], [ -122.799127052999978, 50.317784728000106 ], [ -122.798718416999975, 50.317637970000142 ], [ -122.798525800999968, 50.31747945900004 ], [ -122.798448635999961, 50.317337783000021 ], [ -122.798443225999932, 50.317175704000121 ], [ -122.797993799000011, 50.317108708000035 ], [ -122.797599664999964, 50.317016337000084 ], [ -122.79697685099994, 50.316876843000095 ], [ -122.79695506899999, 50.316867195000029 ], [ -122.796885506999899, 50.316836289000094 ], [ -122.796438615999946, 50.316637861000054 ], [ -122.79608199499999, 50.316479507000111 ], [ -122.79545968199993, 50.316203173000069 ], [ -122.79458606499999, 50.315952041000074 ], [ -122.794148191999938, 50.315881766000118 ], [ -122.793501869999915, 50.315816258000112 ], [ -122.792679665000023, 50.315812196000095 ], [ -122.792672591999946, 50.315671883000036 ], [ -122.792570959999978, 50.313657759000087 ], [ -122.79291295899999, 50.313658369000038 ], [ -122.792914129999943, 50.313388564000078 ], [ -122.79345861899999, 50.313389532000066 ], [ -122.79574282099999, 50.314407786000082 ], [ -122.795922879, 50.314400940000063 ], [ -122.799271031999979, 50.314274143000077 ], [ -122.799171, 50.311936100000068 ], [ -122.800566247999953, 50.311976487000074 ], [ -122.80046284399999, 50.313439529000064 ], [ -122.805063281999978, 50.313572571000059 ], [ -122.804979580999927, 50.314758463000082 ], [ -122.805127621999944, 50.31475871100011 ], [ -122.805128723999928, 50.314488906000065 ], [ -122.8055500789999, 50.314489611000113 ], [ -122.805551178999949, 50.314219806000033 ], [ -122.805972531999899, 50.314220510000027 ], [ -122.805976924, 50.313141288000033 ], [ -122.806330522999986, 50.313141877000099 ], [ -122.806398266999963, 50.313141991000052 ], [ -122.806399361999951, 50.312872186000106 ], [ -122.807663383999937, 50.312874283000106 ], [ -122.807659028999964, 50.313953504000054 ], [ -122.808080382, 50.313954201 ], [ -122.808077121999972, 50.314763617000082 ], [ -122.808498477999976, 50.314764312000065 ], [ -122.808494143999937, 50.315843533000056 ], [ -122.808915508999945, 50.315844226000046 ], [ -122.80891010299996, 50.317193253000042 ], [ -122.808488723999943, 50.317192560000102 ], [ -122.808485472999934, 50.318001975000101 ], [ -122.809328244, 50.318003361000045 ], [ -122.809324926999935, 50.318832768000078 ], [ -122.809503719999967, 50.318837927000075 ], [ -122.812504947, 50.318924487000089 ], [ -122.812344612999965, 50.32120110300005 ], [ -122.812284452999904, 50.322055273000039 ], [ -122.813104851000034, 50.322056596000017 ], [ -122.813104437999968, 50.322161958000081 ], [ -122.813155733999963, 50.322219264000076 ], [ -122.813165575999975, 50.322326501000077 ], [ -122.813525216999921, 50.322327078000058 ], [ -122.813522049999904, 50.323136492000117 ], [ -122.813943481999942, 50.323137168000095 ], [ -122.813941374999914, 50.323676778000021 ], [ -122.814362811999956, 50.323677452000013 ], [ -122.8143617599999, 50.323947257000079 ], [ -122.814783198999947, 50.323947929000056 ], [ -122.814777955999901, 50.325296954000095 ], [ -122.81435650499999, 50.325296282000089 ], [ -122.814354403999971, 50.325835891000054 ], [ -122.813932947999959, 50.325835218000108 ], [ -122.813931894999939, 50.326105023000082 ], [ -122.813510437999966, 50.326104347000111 ], [ -122.813509380999989, 50.326374152 ], [ -122.812666461999939, 50.326372798000108 ], [ -122.812666258999954, 50.326424271000086 ], [ -122.812665400999961, 50.326642603000046 ], [ -122.81224393799998, 50.326641923000075 ], [ -122.812243582999926, 50.326731998000092 ], [ -122.812241811999968, 50.327181533000072 ], [ -122.811831715, 50.327180870000056 ], [ -122.811812802, 50.327144999000062 ], [ -122.811748875999953, 50.3270237340001 ], [ -122.811528635999977, 50.326756508000152 ], [ -122.811208309, 50.32655298300012 ], [ -122.810591169999981, 50.326099629000019 ], [ -122.810981690999981, 50.326100264000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.928346847592255", "sL_AssetLoss": "120.86", "sL_BldgLoss": "112.2", "sL_StrLoss": "17.1", "sL_NStrLoss": "95.1", "sL_ContLoss": "8.66", "geom_point": "0101000020E61000009717E45701B75EC0890D710745204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.858826975999946, 50.251701118000042 ], [ -122.860089382999945, 50.251702645000073 ], [ -122.860088315999974, 50.252066922000047 ], [ -122.860087011999909, 50.252512072000066 ], [ -122.85987767599994, 50.252511820000066 ], [ -122.85882458399999, 50.252510544000039 ], [ -122.858826975999946, 50.251701118000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963077210693588", "sL_AssetLoss": "10.698", "sL_BldgLoss": "10.303", "sL_StrLoss": "0.863", "sL_NStrLoss": "9.44", "sL_ContLoss": "0.395", "geom_point": "0101000020E6100000FFEEBA0A6BB75EC03B3C21C798214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.865110061999971, 50.261961349000039 ], [ -122.866793630999965, 50.261963292000097 ], [ -122.866791373999973, 50.262772718000079 ], [ -122.866370474999925, 50.262772234000117 ], [ -122.86636972, 50.263042043000077 ], [ -122.865359225999924, 50.263040877 ], [ -122.865107012999957, 50.263040584000038 ], [ -122.865109470999954, 50.262170658000109 ], [ -122.865110061999971, 50.261961349000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "67688500", "BldgCostT": "47650000", "sL_LossRatio": "0.993355816796672", "sL_AssetLoss": "813.042", "sL_BldgLoss": "807.64", "sL_StrLoss": "562.3", "sL_NStrLoss": "245.34", "sL_ContLoss": "5.402", "geom_point": "0101000020E61000002793E89FBFB35EC07F9ECC6088274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.808397160000013, 50.30774915400012 ], [ -122.809369241999946, 50.307750751000064 ], [ -122.809367526999964, 50.30817962800009 ], [ -122.809362770999883, 50.309369586000081 ], [ -122.808941460999932, 50.309368894000094 ], [ -122.808939298999945, 50.309908506000042 ], [ -122.807675355999976, 50.309906422000047 ], [ -122.807675787999969, 50.30979946100009 ], [ -122.807679707999952, 50.308827199000071 ], [ -122.808028818, 50.308827776000022 ], [ -122.808101012999941, 50.308827895000071 ], [ -122.808101874999949, 50.308613854000065 ], [ -122.808104587999935, 50.307939633000032 ], [ -122.808105355999956, 50.307748673000091 ], [ -122.808397160000013, 50.30774915400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11799333", "BldgCostT": "6663333", "sL_LossRatio": "0.966864035738354", "sL_AssetLoss": "2359.37", "sL_BldgLoss": "2281.19", "sL_StrLoss": "1723.49", "sL_NStrLoss": "557.7", "sL_ContLoss": "78.18", "geom_point": "0101000020E6100000DCD8CB3A8CB75EC022E207631B224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.867204048999938, 50.265731434000017 ], [ -122.867204771999937, 50.265471284000071 ], [ -122.867047886999927, 50.265471105000096 ], [ -122.86678384899993, 50.265470802000102 ], [ -122.86678496399999, 50.265070930000093 ], [ -122.866786857999926, 50.264391569000104 ], [ -122.868891428999959, 50.264393961000053 ], [ -122.868882540999934, 50.267631663000031 ], [ -122.86846159699999, 50.267631187000099 ], [ -122.868457880999955, 50.268980230000054 ], [ -122.867375223999915, 50.268978999000112 ], [ -122.867195018999965, 50.268978793 ], [ -122.867204048999938, 50.265731434000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.997665376329319", "sL_AssetLoss": "233.014", "sL_BldgLoss": "232.47", "sL_StrLoss": "228", "sL_NStrLoss": "4.47", "sL_ContLoss": "0.544", "geom_point": "0101000020E61000001192600553B65EC0CDCFCB3087244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.848287395999961, 50.28506950000012 ], [ -122.848582884999956, 50.285003305000046 ], [ -122.84893121499999, 50.285044703000018 ], [ -122.849211913999966, 50.285149912000087 ], [ -122.849351988999942, 50.285225507000099 ], [ -122.849704565999957, 50.285415831000044 ], [ -122.849463052999909, 50.285415519000054 ], [ -122.849462202000012, 50.285685327000103 ], [ -122.84830839299994, 50.285683827000099 ], [ -122.848305407999987, 50.285659303000017 ], [ -122.848159691999939, 50.285350193000113 ], [ -122.848159692999928, 50.285188189000031 ], [ -122.848287395999961, 50.28506950000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43948393", "BldgCostT": "24816977", "sL_LossRatio": "0.973051795291934", "sL_AssetLoss": "17662.03", "sL_BldgLoss": "17186.07", "sL_StrLoss": "14992.97", "sL_NStrLoss": "2193.1", "sL_ContLoss": "475.96", "geom_point": "0101000020E61000006F46BC2B31B45EC06F2D59366F2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.814100993999944, 50.335633141000073 ], [ -122.814058873999926, 50.331983740000119 ], [ -122.813567703999922, 50.331974127000073 ], [ -122.812178358999972, 50.331946859000041 ], [ -122.812190517999952, 50.331577656000078 ], [ -122.812223189999884, 50.331578598000057 ], [ -122.812463664999925, 50.328164901000036 ], [ -122.818077545, 50.328326559000047 ], [ -122.817920844, 50.330555004000047 ], [ -122.818263383, 50.330564858000095 ], [ -122.818010863999959, 50.334155848000094 ], [ -122.816449759999983, 50.33411092799999 ], [ -122.816404218999963, 50.334758185000084 ], [ -122.818360254999945, 50.33481446600004 ], [ -122.818329329, 50.335254234000047 ], [ -122.818354782999947, 50.335254967000068 ], [ -122.818339000999984, 50.335479389000049 ], [ -122.814100993999944, 50.335633141000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15854500", "BldgCostT": "9460000", "sL_LossRatio": "0.997937837714926", "sL_AssetLoss": "1792.0995", "sL_BldgLoss": "1788.4039", "sL_StrLoss": "1758.8129", "sL_NStrLoss": "29.591", "sL_ContLoss": "3.6956", "geom_point": "0101000020E6100000FF4C31C5A4AB5EC0490966F1073A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.679021681999956, 50.457475282000118 ], [ -122.67902220399999, 50.457397923000016 ], [ -122.675542658999944, 50.4572936940001 ], [ -122.675801780999976, 50.453777091000056 ], [ -122.675807196000022, 50.45370359100005 ], [ -122.67597952599999, 50.453708756000026 ], [ -122.676379585999953, 50.453720745000098 ], [ -122.676382510999971, 50.453681052000036 ], [ -122.676564812999985, 50.451206203000034 ], [ -122.680717347999916, 50.451330560000066 ], [ -122.680917585999964, 50.448608503000095 ], [ -122.68654595699995, 50.448776807000087 ], [ -122.686471527999984, 50.44979036400008 ], [ -122.686402021999953, 50.450736836000061 ], [ -122.686299054999935, 50.452138873000067 ], [ -122.688863191999971, 50.452215453000065 ], [ -122.688704720999937, 50.454374761000089 ], [ -122.688599702999937, 50.455805592000033 ], [ -122.68629104099989, 50.455736646000055 ], [ -122.68297044799999, 50.455637394000028 ], [ -122.683217616999954, 50.452275350000072 ], [ -122.682860165999983, 50.452264660000075 ], [ -122.682859531999938, 50.452359581000032 ], [ -122.682121218999967, 50.452357568000082 ], [ -122.681929476, 50.454964855000114 ], [ -122.681357068999972, 50.45494773100009 ], [ -122.681172093999976, 50.457462269000104 ], [ -122.680712371999959, 50.457448513000038 ], [ -122.68070852699995, 50.458019524000065 ], [ -122.680285902999969, 50.458018365000044 ], [ -122.680284082999961, 50.458288161000034 ], [ -122.679438829999981, 50.458285835000041 ], [ -122.67943700699999, 50.458555632000113 ], [ -122.67858143200003, 50.458553271000049 ], [ -122.678169118999904, 50.458552132000065 ], [ -122.67817461099996, 50.457742745000068 ], [ -122.678597232999962, 50.457743912000055 ], [ -122.678599061999989, 50.457474116000064 ], [ -122.679021681999956, 50.457475282000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15770417", "BldgCostT": "10666667", "sL_LossRatio": "0.845352481847236", "sL_AssetLoss": "11689.68", "sL_BldgLoss": "9881.9", "sL_StrLoss": "8624.1", "sL_NStrLoss": "1257.8", "sL_ContLoss": "1807.78", "geom_point": "0101000020E61000003FA6D677D5A55EC060A3D55EFE3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.584066981999925, 50.490090369000079 ], [ -122.584068220999882, 50.48994927300005 ], [ -122.581674002999961, 50.489875569000013 ], [ -122.58012281799995, 50.489827789000103 ], [ -122.580395137999986, 50.486238063000016 ], [ -122.582014824999959, 50.486287952000062 ], [ -122.582083618, 50.485380600000049 ], [ -122.584450508999964, 50.485453462000081 ], [ -122.584501852999949, 50.484775758000055 ], [ -122.584716833999934, 50.48478237300003 ], [ -122.584754241999931, 50.484288589000116 ], [ -122.584592749999956, 50.484283620000078 ], [ -122.584864682, 50.480693858000123 ], [ -122.590496691999988, 50.48086702600007 ], [ -122.590407628, 50.482044763000076 ], [ -122.591580829999941, 50.482080800000048 ], [ -122.591541553999946, 50.482600337000072 ], [ -122.59166406099996, 50.482604099000071 ], [ -122.591633791999953, 50.483004494000035 ], [ -122.591745922999905, 50.48300793700011 ], [ -122.591916483999924, 50.480751628000043 ], [ -122.594528065999924, 50.480831796000118 ], [ -122.594600824999958, 50.479868490000101 ], [ -122.59511403099998, 50.479884236000025 ], [ -122.595212374999946, 50.478581902000045 ], [ -122.600844161999987, 50.478754547000108 ], [ -122.600777432999905, 50.479639679000087 ], [ -122.601758485999966, 50.479669725000107 ], [ -122.601689603999944, 50.480583634000055 ], [ -122.601487905999988, 50.48325953300013 ], [ -122.601158384999948, 50.483249442000073 ], [ -122.601093239999983, 50.484113541000113 ], [ -122.600866439999947, 50.484106595000085 ], [ -122.600813869999911, 50.48480384600002 ], [ -122.600196202999911, 50.484784927000184 ], [ -122.60015607299998, 50.485317061000025 ], [ -122.597705418000018, 50.485241966000075 ], [ -122.597691375999943, 50.48542802 ], [ -122.593967650999971, 50.485313811000012 ], [ -122.593755972999944, 50.488115409000052 ], [ -122.59323332799994, 50.488099369000118 ], [ -122.593209367999918, 50.488416421000096 ], [ -122.591376407999931, 50.488360148000062 ], [ -122.591352504999961, 50.488676265000024 ], [ -122.58748884, 50.488557550000095 ], [ -122.587444469999937, 50.48914365700012 ], [ -122.585824674999969, 50.489093848000024 ], [ -122.585755950999911, 50.49000119800013 ], [ -122.585336630999947, 50.489988299000068 ], [ -122.585335698999955, 50.490094896000095 ], [ -122.584066981999925, 50.490090369000079 ] ], [ [ -122.59211835, 50.484467047000109 ], [ -122.592126727999982, 50.4843561960001 ], [ -122.59195324199996, 50.48435086900006 ], [ -122.591944862999966, 50.484461720000091 ], [ -122.59211835, 50.484467047000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.99138583302164", "sL_AssetLoss": "350.237", "sL_BldgLoss": "347.22", "sL_StrLoss": "312.12", "sL_NStrLoss": "35.1", "sL_ContLoss": "3.017", "geom_point": "0101000020E6100000CA00CC8C69AE5EC060C656C8C32A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.725586909999905, 50.337799775000079 ], [ -122.725803094999932, 50.33481265200006 ], [ -122.722485711999965, 50.334714402000024 ], [ -122.722703716999945, 50.331704793000057 ], [ -122.723881013999943, 50.332175996000061 ], [ -122.72658890299995, 50.332838301000088 ], [ -122.727345305999933, 50.33323568400003 ], [ -122.727946496999962, 50.333785392000067 ], [ -122.72791440099995, 50.334298085000064 ], [ -122.727644505999962, 50.334666999000042 ], [ -122.727364402999953, 50.334872088000026 ], [ -122.726980718999968, 50.335456 ], [ -122.726876575999938, 50.33631049600006 ], [ -122.726309889999939, 50.337271895000093 ], [ -122.725586909999905, 50.337799775000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.995686046088318", "sL_AssetLoss": "549.38", "sL_BldgLoss": "547.01", "sL_StrLoss": "528", "sL_NStrLoss": "19.01", "sL_ContLoss": "2.37", "geom_point": "0101000020E6100000E8569D0FEEAE5EC05D252F9D9C2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.73152144, 50.366145042000028 ], [ -122.731522960999953, 50.365875241000012 ], [ -122.731101153999973, 50.365874266000027 ], [ -122.73110725399999, 50.364795060000098 ], [ -122.731950847999926, 50.364797007000107 ], [ -122.731955407999976, 50.363987602000037 ], [ -122.732377196999934, 50.363988574000047 ], [ -122.732378715999971, 50.363718772000063 ], [ -122.732800502999922, 50.363719742000058 ], [ -122.732805047999989, 50.362910337000073 ], [ -122.733226827999943, 50.362911305000104 ], [ -122.733232876999963, 50.361832098000065 ], [ -122.734498193, 50.361834993000087 ], [ -122.734495183999954, 50.362374597000056 ], [ -122.73491695899996, 50.362375558000039 ], [ -122.734910946999904, 50.363454766000103 ], [ -122.735332733999954, 50.363455726000062 ], [ -122.735328231999986, 50.364265131000096 ], [ -122.734484645999913, 50.364263209000086 ], [ -122.734483142999949, 50.364533011000049 ], [ -122.734061345999947, 50.364532047000104 ], [ -122.734059836999947, 50.364801848000134 ], [ -122.733638039999931, 50.364800883000022 ], [ -122.733631999999886, 50.365880090000118 ], [ -122.733210190999984, 50.365879123000106 ], [ -122.733208678, 50.366148925000047 ], [ -122.73152144, 50.366145042000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8298833", "BldgCostT": "5723333", "sL_LossRatio": "0.996925232688609", "sL_AssetLoss": "2883.145", "sL_BldgLoss": "2874.28", "sL_StrLoss": "2800.68", "sL_NStrLoss": "73.6", "sL_ContLoss": "8.865", "geom_point": "0101000020E6100000DEA768B42EAE5EC0E0519DED55414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.717129787999951, 50.515300889000052 ], [ -122.716934214999966, 50.514706996 ], [ -122.717191680999946, 50.514329593000099 ], [ -122.717024392999988, 50.514123097000038 ], [ -122.716447199999891, 50.513744189000136 ], [ -122.716464113999947, 50.513446598000051 ], [ -122.716831410999987, 50.513097603000112 ], [ -122.716847005999952, 50.512962293000037 ], [ -122.716523700999971, 50.512619092000079 ], [ -122.716400997999955, 50.512178997000078 ], [ -122.716190409999953, 50.511908401000028 ], [ -122.716036213999956, 50.511854293000063 ], [ -122.715216280999982, 50.511932596000058 ], [ -122.714326892999949, 50.512327093000039 ], [ -122.714172637, 50.512368786000138 ], [ -122.714038693999939, 50.512404988000078 ], [ -122.714118479999954, 50.51131094400008 ], [ -122.714202437999987, 50.510159650000048 ], [ -122.716688714, 50.510233179000068 ], [ -122.716696436999939, 50.510127210000107 ], [ -122.720378561999979, 50.510236002000092 ], [ -122.720518456999969, 50.508313906000076 ], [ -122.719456793999896, 50.508282551000043 ], [ -122.719718134999965, 50.504692571000113 ], [ -122.719940023999968, 50.504699125000101 ], [ -122.719986960999961, 50.504054275000136 ], [ -122.725622395999906, 50.504220588000074 ], [ -122.725465463999981, 50.506380319000108 ], [ -122.727973052999928, 50.506454229000099 ], [ -122.727712359999899, 50.510044221000022 ], [ -122.72763966399998, 50.510042079000094 ], [ -122.727568312999921, 50.511024523000117 ], [ -122.725972975999952, 50.510977506000089 ], [ -122.725923182999964, 50.511662761000103 ], [ -122.722255808999989, 50.511554592000053 ], [ -122.722001616999975, 50.515048536000045 ], [ -122.722308730999899, 50.515057598000048 ], [ -122.722047536999938, 50.518647539000071 ], [ -122.719026482999936, 50.518558351000102 ], [ -122.719084096999936, 50.51853379600005 ], [ -122.720214385999981, 50.518186300000082 ], [ -122.720485210999939, 50.517989798000031 ], [ -122.720487115999958, 50.51758389400004 ], [ -122.719754202, 50.517321799000044 ], [ -122.719219508999984, 50.517222087000064 ], [ -122.718910681999887, 50.517032695000076 ], [ -122.718672897999909, 50.516528597000068 ], [ -122.718084382999905, 50.515870591000059 ], [ -122.717324506999958, 50.515481790000116 ], [ -122.717129787999951, 50.515300889000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4695583", "BldgCostT": "3238333", "sL_LossRatio": "0.993436404332449", "sL_AssetLoss": "2353.588", "sL_BldgLoss": "2338.14", "sL_StrLoss": "2233.88", "sL_NStrLoss": "104.26", "sL_ContLoss": "15.448", "geom_point": "0101000020E6100000BEBFDE50BAAE5EC003C72B314B2B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.734189418, 50.341598859000065 ], [ -122.734184901, 50.342408268000028 ], [ -122.732498500999966, 50.342404401000046 ], [ -122.732495471999982, 50.342944007000021 ], [ -122.731899676999916, 50.342942634000067 ], [ -122.730809053999934, 50.342940115000097 ], [ -122.730812104999956, 50.342400509000043 ], [ -122.729547305999958, 50.342397576000089 ], [ -122.729548837999943, 50.342127773000115 ], [ -122.728705643999959, 50.342125808000048 ], [ -122.728708716999932, 50.341586203000141 ], [ -122.727865534, 50.341584234000081 ], [ -122.727868615999952, 50.34104462800012 ], [ -122.727447028, 50.341043641000091 ], [ -122.727450117, 50.340504036000041 ], [ -122.726606951999955, 50.34050205700008 ], [ -122.726608500999959, 50.340232254000028 ], [ -122.725765340999914, 50.340230269000088 ], [ -122.725768447999911, 50.339690664000031 ], [ -122.725346871999974, 50.339689669000087 ], [ -122.725354057999979, 50.338443492000046 ], [ -122.72560090099995, 50.338321507000067 ], [ -122.726208401999912, 50.33787429900007 ], [ -122.726971896999913, 50.337029814000104 ], [ -122.72748479899991, 50.335861887000078 ], [ -122.72754220299997, 50.335538592000034 ], [ -122.728023804999964, 50.33482930100012 ], [ -122.728207557999937, 50.33433680100007 ], [ -122.728225569999907, 50.334337334000097 ], [ -122.728229948999925, 50.334276790000054 ], [ -122.728338889999947, 50.333984795000049 ], [ -122.728341466999908, 50.333867494000074 ], [ -122.730663977999953, 50.333936168000015 ], [ -122.733874001999979, 50.334031004000082 ], [ -122.733614768999971, 50.337621782000078 ], [ -122.731231613999952, 50.337551384000122 ], [ -122.73119749199995, 50.338023641000092 ], [ -122.729993908999958, 50.337988068000058 ], [ -122.729991849999919, 50.338351515000085 ], [ -122.729148720999902, 50.338349554000096 ], [ -122.729147186999938, 50.338619356000024 ], [ -122.730411885999942, 50.3386222950001 ], [ -122.730407303999968, 50.339431704000042 ], [ -122.732515169999928, 50.339436571000093 ], [ -122.732512139999955, 50.339976177000082 ], [ -122.732933717999984, 50.339977146000123 ], [ -122.732932205999987, 50.340246949000097 ], [ -122.733775365999975, 50.340248882 ], [ -122.733767824999944, 50.341597895000071 ], [ -122.734189418, 50.341598859000065 ] ], [ [ -122.72872869399994, 50.338078769000063 ], [ -122.72872942399998, 50.337950680000027 ], [ -122.726621954000024, 50.337888336000027 ], [ -122.726620888, 50.338073832000141 ], [ -122.727042449999942, 50.338074823000078 ], [ -122.727040903999978, 50.338344626000094 ], [ -122.727884029999984, 50.338346602000051 ], [ -122.72788557199999, 50.338076799000063 ], [ -122.72872869399994, 50.338078769000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999081855798966", "sL_AssetLoss": "801.617", "sL_BldgLoss": "800.881", "sL_StrLoss": "796", "sL_NStrLoss": "4.881", "sL_ContLoss": "0.736", "geom_point": "0101000020E610000009F790110CA15EC06548BA0B39414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.513093751999975, 50.5116557610001 ], [ -122.51315958, 50.510805206000036 ], [ -122.513021204999973, 50.510800861000085 ], [ -122.513146720999899, 50.509179053000096 ], [ -122.513163174999974, 50.508966459000142 ], [ -122.513298992999978, 50.507211392000066 ], [ -122.518934037999969, 50.50738818500006 ], [ -122.518884975, 50.508023215000037 ], [ -122.519853145999917, 50.508053562000093 ], [ -122.519822332999979, 50.508452479000049 ], [ -122.519785081999942, 50.508934759000098 ], [ -122.519575875000015, 50.511643042000081 ], [ -122.518746004999954, 50.511617032000046 ], [ -122.518729349999944, 50.511832563000063 ], [ -122.513093751999975, 50.5116557610001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999406539496559", "sL_AssetLoss": "1049.775", "sL_BldgLoss": "1049.152", "sL_StrLoss": "1046", "sL_NStrLoss": "3.152", "sL_ContLoss": "0.623", "geom_point": "0101000020E610000003AAA88FBA9E5EC0745C1125EF464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.475749291999989, 50.553908412000048 ], [ -122.474762397999953, 50.553149738000073 ], [ -122.475512220999974, 50.552694787000085 ], [ -122.475798761999926, 50.552520953000105 ], [ -122.476025477999912, 50.551812646000059 ], [ -122.476729269, 50.551050995000018 ], [ -122.48170456099993, 50.552371496000063 ], [ -122.483282240999955, 50.552139047 ], [ -122.48343852, 50.552177564000033 ], [ -122.484890150999945, 50.552535440000064 ], [ -122.487502403999969, 50.553179358000051 ], [ -122.487480118999969, 50.553464921000028 ], [ -122.487459524999935, 50.553464269000109 ], [ -122.487394565999949, 50.554296621000042 ], [ -122.483497994999965, 50.554173428000041 ], [ -122.482132287999931, 50.554130218000076 ], [ -122.48187182199996, 50.557462346000136 ], [ -122.480344, 50.557413987000047 ], [ -122.480343256999959, 50.557423483000029 ], [ -122.476235055999965, 50.557293344000051 ], [ -122.476479893999937, 50.556807994000074 ], [ -122.476744137999958, 50.556547826000049 ], [ -122.47696886199995, 50.556326566000095 ], [ -122.477007817999947, 50.556288197000057 ], [ -122.477043593999966, 50.5554521930001 ], [ -122.476460392999911, 50.554694492000074 ], [ -122.475943905999912, 50.554251606000022 ], [ -122.475749291999989, 50.553908412000048 ] ], [ [ -122.481773871999962, 50.553861182000105 ], [ -122.481834695999979, 50.553083048000076 ], [ -122.481818366999931, 50.553082975000081 ], [ -122.481757576999911, 50.553860666000041 ], [ -122.481773871999962, 50.553861182000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.998695501325063", "sL_AssetLoss": "379.3028", "sL_BldgLoss": "378.808", "sL_StrLoss": "373.138", "sL_NStrLoss": "5.67", "sL_ContLoss": "0.4948", "geom_point": "0101000020E6100000116598A8D8AC5EC0585DC11554354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.70360154799999, 50.414987992000128 ], [ -122.703796002999979, 50.414993777000056 ], [ -122.703651961999967, 50.416967061000058 ], [ -122.703426699999966, 50.417248294000068 ], [ -122.702915796999932, 50.417768193000022 ], [ -122.702193803999975, 50.418477407000076 ], [ -122.70216009399999, 50.418543246000041 ], [ -122.701390730999918, 50.418520349000083 ], [ -122.697909242999984, 50.418416669000074 ], [ -122.698171774999949, 50.41482634000009 ], [ -122.70360154799999, 50.414987992000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998608753572119", "sL_AssetLoss": "186.164", "sL_BldgLoss": "185.905", "sL_StrLoss": "185", "sL_NStrLoss": "0.905", "sL_ContLoss": "0.259", "geom_point": "0101000020E61000008AE297F208AD5EC0880374A16A334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.703263395999898, 50.400071735000026 ], [ -122.704314374999953, 50.400074411000062 ], [ -122.704294230999935, 50.403312001000103 ], [ -122.703508505999949, 50.403310002000104 ], [ -122.70302781499997, 50.403308776000102 ], [ -122.70304804499996, 50.400071185000137 ], [ -122.703263395999898, 50.400071735000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8678250", "BldgCostT": "5985000", "sL_LossRatio": "0.998037466547725", "sL_AssetLoss": "2802.5", "sL_BldgLoss": "2797", "sL_StrLoss": "2754.46", "sL_NStrLoss": "42.54", "sL_ContLoss": "5.5", "geom_point": "0101000020E610000053C0664E51A75EC069984EA99A3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.606975471999988, 50.4846808140001 ], [ -122.607011099999966, 50.484207438000112 ], [ -122.606047969999963, 50.484177990000063 ], [ -122.606164456, 50.482630583000059 ], [ -122.605183139999923, 50.482600570000066 ], [ -122.605289777999957, 50.481184309000078 ], [ -122.605453423, 50.479010750000093 ], [ -122.607308979, 50.479067492000112 ], [ -122.607355575, 50.478448195000084 ], [ -122.60762979799992, 50.478456578000063 ], [ -122.607657384999968, 50.478089901000018 ], [ -122.613289156999926, 50.478261915000083 ], [ -122.613259706999941, 50.478654017000053 ], [ -122.613193517999932, 50.478705801000046 ], [ -122.610747110999924, 50.47975830200005 ], [ -122.610434582999972, 50.480144293000123 ], [ -122.610416498999896, 50.480540203000011 ], [ -122.610625485999961, 50.480836497000098 ], [ -122.610877182999943, 50.480973206000101 ], [ -122.611442499999924, 50.480983088000087 ], [ -122.61219129599999, 50.480752396000035 ], [ -122.61268470399996, 50.480709702000077 ], [ -122.613347380999954, 50.480521696000061 ], [ -122.613843706999958, 50.480245400000058 ], [ -122.614200205999964, 50.479742687000083 ], [ -122.614541415999966, 50.479492001000061 ], [ -122.61568588399993, 50.479037693000109 ], [ -122.616364413999989, 50.478661689000063 ], [ -122.617465797999955, 50.478440898000038 ], [ -122.61866442299997, 50.478299901000057 ], [ -122.619608801999931, 50.478304190000138 ], [ -122.620102813999921, 50.478386790000087 ], [ -122.620692503999976, 50.478523500000023 ], [ -122.623223100999937, 50.479422203000091 ], [ -122.623825489999902, 50.479890809000047 ], [ -122.62412200599999, 50.479937802000101 ], [ -122.625703087999952, 50.479910811000096 ], [ -122.625697964999915, 50.479979271000047 ], [ -122.626861391999938, 50.479983006000097 ], [ -122.626859886999938, 50.480174066000053 ], [ -122.626855018999962, 50.480792387000044 ], [ -122.625637404999978, 50.480788477000033 ], [ -122.625505465999979, 50.482551355000027 ], [ -122.619873111999965, 50.482379961000106 ], [ -122.619887717999958, 50.482185132000048 ], [ -122.619280802, 50.482166646000067 ], [ -122.619311784999979, 50.481753447000081 ], [ -122.618382096999966, 50.481725124000107 ], [ -122.61839562199998, 50.48154480600008 ], [ -122.617869941999942, 50.481528787000109 ], [ -122.617772559999963, 50.482826941000013 ], [ -122.617123060999987, 50.48280714600007 ], [ -122.617116734999954, 50.482891457000093 ], [ -122.616887756999944, 50.482884478000116 ], [ -122.616791797999966, 50.484163262000031 ], [ -122.614356245999929, 50.484088994000075 ], [ -122.614352594999971, 50.484137621000066 ], [ -122.61266567199999, 50.484086149000078 ], [ -122.612608064, 50.484852861000036 ], [ -122.606975471999988, 50.4846808140001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.990600658190686", "sL_AssetLoss": "422.37", "sL_BldgLoss": "418.4", "sL_StrLoss": "388", "sL_NStrLoss": "30.4", "sL_ContLoss": "3.97", "geom_point": "0101000020E6100000CFAF39492BAD5EC04DE68A1897284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.705585411999948, 50.31508759500008 ], [ -122.706588704999945, 50.315117487000109 ], [ -122.706506738999977, 50.316244006000019 ], [ -122.70632741899999, 50.318708288000025 ], [ -122.704411070999939, 50.318651184000046 ], [ -122.705113662999949, 50.31733606500007 ], [ -122.705397328999979, 50.316391329000041 ], [ -122.705507423999947, 50.316084916000051 ], [ -122.705585411999948, 50.31508759500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.993373583178526", "sL_AssetLoss": "594.288", "sL_BldgLoss": "590.35", "sL_StrLoss": "572.71", "sL_NStrLoss": "17.64", "sL_ContLoss": "3.938", "geom_point": "0101000020E6100000B2B2431D52AC5EC0DDB9EEB5B9384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.692227363999933, 50.44140941600007 ], [ -122.692229673999961, 50.441053077000085 ], [ -122.692450912999973, 50.44105366200013 ], [ -122.69349709699999, 50.441056422000031 ], [ -122.69349457199999, 50.441447211000096 ], [ -122.69545504499996, 50.441505655000057 ], [ -122.69521636099995, 50.444765158000074 ], [ -122.694944292999963, 50.445034710000058 ], [ -122.694916273999979, 50.445087637000022 ], [ -122.691918254999933, 50.444998242000054 ], [ -122.689564197999943, 50.444927991000014 ], [ -122.689827546999936, 50.441337800000063 ], [ -122.692227363999933, 50.44140941600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.994143354044653", "sL_AssetLoss": "336.37", "sL_BldgLoss": "334.4", "sL_StrLoss": "318", "sL_NStrLoss": "16.4", "sL_ContLoss": "1.97", "geom_point": "0101000020E610000026E0F8567BAE5EC09F91E77E772A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.722745810999982, 50.331123636000029 ], [ -122.728359730999955, 50.331289845000121 ], [ -122.728240288999942, 50.332941700000099 ], [ -122.728203892999929, 50.332851102000049 ], [ -122.72741939, 50.332606194000057 ], [ -122.725144705999952, 50.332089190000062 ], [ -122.723926399999968, 50.331590704000071 ], [ -122.722737203999927, 50.331242449000115 ], [ -122.722745810999982, 50.331123636000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "0.996172506096602", "sL_AssetLoss": "1595.561", "sL_BldgLoss": "1589.454", "sL_StrLoss": "1534.894", "sL_NStrLoss": "54.56", "sL_ContLoss": "6.107", "geom_point": "0101000020E6100000297D3A81DDA15EC0C8C4F70F33414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.529472538999983, 50.506818981000059 ], [ -122.535107597999982, 50.506994954000078 ], [ -122.534994839, 50.508461249000064 ], [ -122.534831547999914, 50.510584478000048 ], [ -122.530342616999945, 50.510444321000115 ], [ -122.530270505999979, 50.511380686000081 ], [ -122.529157002999938, 50.511345891000047 ], [ -122.52910249599995, 50.512053412000057 ], [ -122.523466828999972, 50.511877137000049 ], [ -122.523646141999961, 50.509553269000037 ], [ -122.523743307999979, 50.508293909000074 ], [ -122.52374379099993, 50.508287647000017 ], [ -122.52393311599991, 50.508293574000056 ], [ -122.524857213999908, 50.508322496000041 ], [ -122.524872878999986, 50.508119395000044 ], [ -122.524911782999979, 50.507614974000013 ], [ -122.528181218999961, 50.507717240000055 ], [ -122.529400415999973, 50.507755351000085 ], [ -122.529472538999983, 50.506818981000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.998399898342549", "sL_AssetLoss": "598.087", "sL_BldgLoss": "597.13", "sL_StrLoss": "592", "sL_NStrLoss": "5.13", "sL_ContLoss": "0.957", "geom_point": "0101000020E61000003CDF0D7185A95EC00BC73DA7EA484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.646081740999932, 50.567781235000062 ], [ -122.651724875999946, 50.567951282000124 ], [ -122.651457748000013, 50.57154082300007 ], [ -122.645814163999972, 50.571370765000069 ], [ -122.646081740999932, 50.567781235000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8772500", "BldgCostT": "6050000", "sL_LossRatio": "0.999454348657946", "sL_AssetLoss": "2073.6685", "sL_BldgLoss": "2072.537", "sL_StrLoss": "2065", "sL_NStrLoss": "7.537", "sL_ContLoss": "1.1315", "geom_point": "0101000020E6100000ECEEE81C4F9F5EC0E758180119454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.491298706999956, 50.542637199000069 ], [ -122.491232694999951, 50.542349512000051 ], [ -122.490392301999989, 50.542911987000117 ], [ -122.490227995999959, 50.543802215000035 ], [ -122.489982109999957, 50.544367588000121 ], [ -122.490245800999944, 50.544727905000066 ], [ -122.490160801999977, 50.544898808000063 ], [ -122.489918768999956, 50.544963996000035 ], [ -122.490018626999955, 50.541827268000134 ], [ -122.485551986999909, 50.541806265000112 ], [ -122.484589780999954, 50.541828204000062 ], [ -122.484650439999925, 50.541051365000058 ], [ -122.483425499999939, 50.54101261100007 ], [ -122.483705831999913, 50.537423349000086 ], [ -122.48653721699992, 50.537512908000117 ], [ -122.486588918999942, 50.536850331000053 ], [ -122.485417053, 50.536813273000085 ], [ -122.485542207999956, 50.535209828000063 ], [ -122.485697198999944, 50.533223988000017 ], [ -122.48721733499994, 50.533272057000076 ], [ -122.491335387999968, 50.533402174000045 ], [ -122.491233218, 50.534713351000121 ], [ -122.49240503599999, 50.53475034800006 ], [ -122.492314321999942, 50.535914821000084 ], [ -122.492125414, 50.53833964300005 ], [ -122.491932184999882, 50.538333543000071 ], [ -122.48929396599999, 50.538250226000038 ], [ -122.489270682999944, 50.538548817000098 ], [ -122.490495559999914, 50.538587507000038 ], [ -122.490287446999972, 50.541257266000066 ], [ -122.491783034999955, 50.541304489000034 ], [ -122.494844680999989, 50.541401096000108 ], [ -122.494565210999951, 50.54499036900004 ], [ -122.492377968999946, 50.544921361000071 ], [ -122.492119501, 50.54823832000011 ], [ -122.491639676999952, 50.5482231760001 ], [ -122.491616897999933, 50.54851543200008 ], [ -122.491432104999959, 50.548509599000099 ], [ -122.491382823999942, 50.549141836000032 ], [ -122.49079234599999, 50.549123195000035 ], [ -122.490760322999975, 50.549533951000093 ], [ -122.490425484999946, 50.549523379000092 ], [ -122.490249135999989, 50.551785057000068 ], [ -122.490175187999967, 50.551782723000017 ], [ -122.49000829000002, 50.549062602000042 ], [ -122.48986344599993, 50.546701588000126 ], [ -122.489911679, 50.545186701000027 ], [ -122.490114101999964, 50.545150896000109 ], [ -122.490316213000014, 50.544925906000032 ], [ -122.490631290999957, 50.54439750500007 ], [ -122.490782712999987, 50.543490287000076 ], [ -122.491069192999987, 50.543148487000089 ], [ -122.491298706999956, 50.542637199000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.999010371150723", "sL_AssetLoss": "701.6772", "sL_BldgLoss": "700.9828", "sL_StrLoss": "695.0988", "sL_NStrLoss": "5.884", "sL_ContLoss": "0.6944", "geom_point": "0101000020E61000006D284A7C8DA35EC0B1F168FCA5404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.552531023999947, 50.507374119000133 ], [ -122.552615149999966, 50.5062745890001 ], [ -122.551665365999924, 50.506245099000068 ], [ -122.55168693199991, 50.50596328200006 ], [ -122.551940049, 50.502655514000011 ], [ -122.557574674999969, 50.502830348000046 ], [ -122.557545520999923, 50.503211978000081 ], [ -122.557841105999927, 50.503221141000083 ], [ -122.559456234, 50.503271199000011 ], [ -122.559182143999976, 50.5068608 ], [ -122.558221078999935, 50.506831016000064 ], [ -122.558166241999942, 50.507548922000133 ], [ -122.552531023999947, 50.507374119000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.998312011258362", "sL_AssetLoss": "783.773", "sL_BldgLoss": "782.45", "sL_StrLoss": "772", "sL_NStrLoss": "10.45", "sL_ContLoss": "1.323", "geom_point": "0101000020E61000003FEF7CF5A7AA5EC0357D4D41443B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.663755407999972, 50.464765582000069 ], [ -122.66375560699997, 50.464737853 ], [ -122.663356611999987, 50.464725854000051 ], [ -122.663568513999948, 50.461861152000068 ], [ -122.663622161999982, 50.461135813000084 ], [ -122.664505263999956, 50.461162370000075 ], [ -122.669252031000028, 50.461304993000091 ], [ -122.669218089999973, 50.461764648000063 ], [ -122.669685926999975, 50.461765977000091 ], [ -122.669693996999968, 50.461765999000072 ], [ -122.669694015999966, 50.461763292000079 ], [ -122.66969587799997, 50.461496204000092 ], [ -122.670417959999924, 50.461498251000066 ], [ -122.670963842999981, 50.461499796000034 ], [ -122.67095822499995, 50.462309182000119 ], [ -122.67011290100001, 50.462306789000131 ], [ -122.67011102399999, 50.462576585000086 ], [ -122.669265694999922, 50.462574186000097 ], [ -122.669263814999979, 50.462843981000027 ], [ -122.669138416999928, 50.462843625000026 ], [ -122.668986928999942, 50.464895046000031 ], [ -122.665446015999976, 50.464788674000069 ], [ -122.66544268299999, 50.465261267000088 ], [ -122.663751928999972, 50.465256395000061 ], [ -122.663755407999972, 50.464765582000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999344043289268", "sL_AssetLoss": "774.2889", "sL_BldgLoss": "773.781", "sL_StrLoss": "771", "sL_NStrLoss": "2.781", "sL_ContLoss": "0.5079", "geom_point": "0101000020E6100000A079317B76A05EC0E3C315E50C444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.509141801999974, 50.529387651000079 ], [ -122.510981584999982, 50.529445443000043 ], [ -122.510703474999929, 50.533034808000053 ], [ -122.509199407999972, 50.532987564000074 ], [ -122.50911946699992, 50.534018744000058 ], [ -122.50348113099993, 50.533841460000069 ], [ -122.503494202999931, 50.533673106 ], [ -122.503759820999974, 50.530252116000035 ], [ -122.505263791999951, 50.530299434 ], [ -122.505343812999968, 50.529268252000108 ], [ -122.509141801999974, 50.529387651000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11684666", "BldgCostT": "7586666", "sL_LossRatio": "0.998618039969028", "sL_AssetLoss": "1938.551", "sL_BldgLoss": "1935.872", "sL_StrLoss": "1915.765", "sL_NStrLoss": "20.107", "sL_ContLoss": "2.679", "geom_point": "0101000020E610000060BD7AAA3DA45EC0E2A8BB36C43F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.576792323999939, 50.49392039 ], [ -122.577710332, 50.493948694000068 ], [ -122.577538641999936, 50.496209787000069 ], [ -122.577437750999977, 50.497538381000041 ], [ -122.575027892999969, 50.497464064000035 ], [ -122.574460147999929, 50.497446548000084 ], [ -122.574415922999933, 50.498028389000048 ], [ -122.57438078, 50.498490752000066 ], [ -122.57392961, 50.498476830000072 ], [ -122.570803978999905, 50.498380333000057 ], [ -122.570751963999896, 50.499063938000063 ], [ -122.569223554999965, 50.499016720000022 ], [ -122.569145954999925, 50.500036074 ], [ -122.565955613999989, 50.499937445000086 ], [ -122.565818615999973, 50.501735250000138 ], [ -122.563543817, 50.501664869000138 ], [ -122.56353102599995, 50.5018326060001 ], [ -122.561638746999932, 50.501774023000081 ], [ -122.561551706999964, 50.502914752000038 ], [ -122.558319913999966, 50.502814624000038 ], [ -122.555917055999942, 50.502740119000073 ], [ -122.556191379999945, 50.499150508000078 ], [ -122.558083542999924, 50.499209183000069 ], [ -122.558170661999966, 50.498068453 ], [ -122.559011448999939, 50.498094515000069 ], [ -122.559116103999912, 50.496723773000021 ], [ -122.560073558999989, 50.496753444000028 ], [ -122.560103383999959, 50.496362696000084 ], [ -122.563769777999937, 50.496476238000135 ], [ -122.563785334999977, 50.496272184000084 ], [ -122.565313644999947, 50.496319477000078 ], [ -122.565391324999922, 50.49530012100012 ], [ -122.56896786899992, 50.49541071400008 ], [ -122.569019907999945, 50.494727108000099 ], [ -122.57199732, 50.494819086000057 ], [ -122.572076736999961, 50.4937748790001 ], [ -122.576792323999939, 50.49392039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.997569527508787", "sL_AssetLoss": "706.447", "sL_BldgLoss": "704.73", "sL_StrLoss": "692", "sL_NStrLoss": "12.73", "sL_ContLoss": "1.717", "geom_point": "0101000020E61000004B3F9FD044AA5EC05C902DCB57484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.657762020999911, 50.563299708000045 ], [ -122.663404639, 50.563469163000036 ], [ -122.663138467999943, 50.56705875200003 ], [ -122.65749540299997, 50.566889283000094 ], [ -122.657762020999911, 50.563299708000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.989664710716063", "sL_AssetLoss": "864.03", "sL_BldgLoss": "855.1", "sL_StrLoss": "789", "sL_NStrLoss": "66.1", "sL_ContLoss": "8.93", "geom_point": "0101000020E6100000D264106925AF5EC0CE4B49FFE0274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.735546433999957, 50.31272009600012 ], [ -122.735654963999977, 50.311215083000072 ], [ -122.733216047999989, 50.311143038000104 ], [ -122.733230914999965, 50.310937003000085 ], [ -122.730578190999935, 50.310858581000083 ], [ -122.730540251999955, 50.31019793900002 ], [ -122.732103212999959, 50.310398149000065 ], [ -122.732163260999954, 50.310425144000092 ], [ -122.73344676, 50.310856447000056 ], [ -122.73559229599999, 50.311104677000095 ], [ -122.738015091999955, 50.31066473700011 ], [ -122.73947132, 50.310280959000075 ], [ -122.739313626999945, 50.312831272000089 ], [ -122.735546433999957, 50.31272009600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19670417", "BldgCostT": "12091667", "sL_LossRatio": "0.994127490541561", "sL_AssetLoss": "4796.246", "sL_BldgLoss": "4768.08", "sL_StrLoss": "4542.6", "sL_NStrLoss": "225.48", "sL_ContLoss": "28.166", "geom_point": "0101000020E61000000D2C4F3989A85EC0D1C75B32B73C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.631169397999955, 50.474356296000074 ], [ -122.63053998599996, 50.473806599000063 ], [ -122.62976779, 50.473272506000072 ], [ -122.629080911999935, 50.473027489000081 ], [ -122.628459616999947, 50.473115793000048 ], [ -122.628088414999951, 50.47355590500004 ], [ -122.626958188999964, 50.474126995000049 ], [ -122.62544678499999, 50.474491602000072 ], [ -122.624390117999937, 50.474541395000116 ], [ -122.62262309599997, 50.475192300000032 ], [ -122.622185682999941, 50.475263502000054 ], [ -122.621735310999952, 50.475199408000073 ], [ -122.621198774999939, 50.475296295000128 ], [ -122.620674182999963, 50.475689299000067 ], [ -122.619756008999985, 50.476172474000116 ], [ -122.61976963799999, 50.475990673000155 ], [ -122.619565916999932, 50.475984467000089 ], [ -122.619825693999928, 50.472518969000134 ], [ -122.619835016999957, 50.472394583000082 ], [ -122.620442237999967, 50.472413078000038 ], [ -122.620491655999956, 50.472414583000038 ], [ -122.620492415999948, 50.472404460000078 ], [ -122.620511903999983, 50.472144397000129 ], [ -122.621781455999965, 50.472183058000113 ], [ -122.622409664000017, 50.472202181000043 ], [ -122.62241132199992, 50.472180043000051 ], [ -122.623235583999985, 50.472205131000116 ], [ -122.623247794999912, 50.472042063000067 ], [ -122.625913464999897, 50.472123154000016 ], [ -122.625962723000015, 50.471464775000072 ], [ -122.62602426299992, 50.470642227000027 ], [ -122.631655175, 50.470813312000061 ], [ -122.631551891999976, 50.472196116000084 ], [ -122.631536422999929, 50.472403212000074 ], [ -122.632589255, 50.472435168000047 ], [ -122.634295743999971, 50.472486944000067 ], [ -122.634404480999976, 50.472490242000021 ], [ -122.634393502999956, 50.472637348000021 ], [ -122.634298382999958, 50.473911828000098 ], [ -122.634374676, 50.473914142000105 ], [ -122.634474852999944, 50.472571843000019 ], [ -122.634532811000014, 50.47179522400009 ], [ -122.634580376999949, 50.471157835000099 ], [ -122.634749492999973, 50.471162965000048 ], [ -122.637308637999951, 50.471240552000069 ], [ -122.639567557999925, 50.471308988000054 ], [ -122.640211384999986, 50.471328485000114 ], [ -122.640179983999957, 50.47174999100011 ], [ -122.640063031999972, 50.473319718 ], [ -122.640490134999979, 50.473332649000028 ], [ -122.642461934999915, 50.473392330000102 ], [ -122.642373724999985, 50.474577057000019 ], [ -122.643281182999914, 50.474604510000056 ], [ -122.643013935999974, 50.478194442000088 ], [ -122.64077653399994, 50.478126738000121 ], [ -122.640736069999946, 50.478669896000035 ], [ -122.639231928999919, 50.47862435600009 ], [ -122.639226407999899, 50.478698433000105 ], [ -122.633913925999977, 50.478537424000088 ], [ -122.633594483999957, 50.478527734000082 ], [ -122.633618390999942, 50.478207504000068 ], [ -122.634158598999974, 50.477801496000062 ], [ -122.634470306, 50.477469598000063 ], [ -122.634407020999959, 50.476768899000014 ], [ -122.634040824999957, 50.47646130400004 ], [ -122.63393170199997, 50.476227687000026 ], [ -122.633144697999938, 50.475801906000086 ], [ -122.633148091999942, 50.47551420700011 ], [ -122.633035981999939, 50.475433 ], [ -122.632639803999936, 50.475404488000024 ], [ -122.632233881000019, 50.475169493000081 ], [ -122.631319898999919, 50.474906 ], [ -122.63132201699996, 50.474608406000058 ], [ -122.631169397999955, 50.474356296000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999389615896283", "sL_AssetLoss": "470.0319", "sL_BldgLoss": "469.745", "sL_StrLoss": "468", "sL_NStrLoss": "1.745", "sL_ContLoss": "0.2869", "geom_point": "0101000020E6100000336B8C4AE8A25EC01DCA5015D3404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.542748120999988, 50.504559296000103 ], [ -122.548382947999968, 50.504734596000091 ], [ -122.548244455999949, 50.506542523000128 ], [ -122.548107968999929, 50.508324163000097 ], [ -122.542472692999951, 50.508148850000069 ], [ -122.542530955999894, 50.507389569000097 ], [ -122.542748120999988, 50.504559296000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999329487147308", "sL_AssetLoss": "139.4455", "sL_BldgLoss": "139.352", "sL_StrLoss": "139.014", "sL_NStrLoss": "0.338", "sL_ContLoss": "0.0935", "geom_point": "0101000020E61000004AA3767D6E9D5EC0C0DF58E5FC464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.457919596999943, 50.552791764000041 ], [ -122.462501894999946, 50.552937682000099 ], [ -122.462430012999945, 50.553218999000045 ], [ -122.461996610999918, 50.554251586000071 ], [ -122.461942589999978, 50.555168811000073 ], [ -122.46145358299998, 50.555947805000137 ], [ -122.461386885999943, 50.556500314000104 ], [ -122.457637116999948, 50.556380892000021 ], [ -122.457919596999943, 50.552791764000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.995905051851496", "sL_AssetLoss": "541.643", "sL_BldgLoss": "539.425", "sL_StrLoss": "513.865", "sL_NStrLoss": "25.56", "sL_ContLoss": "2.218", "geom_point": "0101000020E6100000866D93A323A05EC0DEA3480820424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.499496621999938, 50.514719077000116 ], [ -122.505132550999974, 50.51489656800004 ], [ -122.504854065999965, 50.51848598200008 ], [ -122.499217688999948, 50.518308478000058 ], [ -122.499496621999938, 50.514719077000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999105484070736", "sL_AssetLoss": "174.396", "sL_BldgLoss": "174.24", "sL_StrLoss": "173", "sL_NStrLoss": "1.24", "sL_ContLoss": "0.156", "geom_point": "0101000020E6100000C28E5ABCB39D5EC0530438BD0B4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.463724238999987, 50.585376736000136 ], [ -122.465419245999939, 50.585384527000016 ], [ -122.46541008199992, 50.586193875000049 ], [ -122.46498632299992, 50.58619192900008 ], [ -122.464980209000018, 50.586731494000098 ], [ -122.464556444999971, 50.586729546000043 ], [ -122.464553385999963, 50.586999329000086 ], [ -122.46412961899992, 50.586997380000092 ], [ -122.464126557999975, 50.587267162000067 ], [ -122.462855252999958, 50.587261308000052 ], [ -122.462867529999954, 50.586182178000044 ], [ -122.463291288999926, 50.586184132000042 ], [ -122.463294355999935, 50.585914349000063 ], [ -122.463718111999938, 50.585916301000076 ], [ -122.463724238999987, 50.585376736000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.99759645423525", "sL_AssetLoss": "888.271", "sL_BldgLoss": "886.136", "sL_StrLoss": "868.416", "sL_NStrLoss": "17.72", "sL_ContLoss": "2.135", "geom_point": "0101000020E610000060A05A3328A85EC0FAA1A909E8484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.625252757999959, 50.571765418000098 ], [ -122.625262201999959, 50.571639519000051 ], [ -122.623590305999954, 50.571588774000112 ], [ -122.623859654999976, 50.567999300000068 ], [ -122.62491725299995, 50.568031402000123 ], [ -122.624987261999976, 50.567098025000078 ], [ -122.630630231999987, 50.567269141000125 ], [ -122.630550909999968, 50.568328423000018 ], [ -122.63116508399996, 50.568347029000094 ], [ -122.630896314999958, 50.571936519000097 ], [ -122.625252757999959, 50.571765418000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.998093766640217", "sL_AssetLoss": "858.237", "sL_BldgLoss": "856.601", "sL_StrLoss": "840.321", "sL_NStrLoss": "16.28", "sL_ContLoss": "1.636", "geom_point": "0101000020E6100000B32FD10768A95EC0B7CB4432603C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.650114780999928, 50.469257981000084 ], [ -122.650582658999951, 50.469272106000126 ], [ -122.650560667, 50.469568218000063 ], [ -122.650370324999983, 50.472131022000028 ], [ -122.650316024999981, 50.472862078000077 ], [ -122.64910473599997, 50.472825506000106 ], [ -122.648997451999961, 50.474269307000021 ], [ -122.64336604199994, 50.474099103000086 ], [ -122.643483460999917, 50.47252157000004 ], [ -122.643633235999971, 50.470509152000055 ], [ -122.644844457999952, 50.47054578400008 ], [ -122.644913618999979, 50.469616111000107 ], [ -122.644951865999971, 50.469101981000115 ], [ -122.64894928399994, 50.469222785000049 ], [ -122.650114780999928, 50.469257981000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6213250", "BldgCostT": "4285000", "sL_LossRatio": "0.991927019062939", "sL_AssetLoss": "3363.07", "sL_BldgLoss": "3335.92", "sL_StrLoss": "3117.12", "sL_NStrLoss": "218.8", "sL_ContLoss": "27.15", "geom_point": "0101000020E6100000F299CB91FEAE5EC0ABEF364E8E2C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.73238578199999, 50.349497391000106 ], [ -122.732398387999979, 50.349322901000079 ], [ -122.729807747999928, 50.349246364000102 ], [ -122.730067348999953, 50.34565564800009 ], [ -122.730477991999948, 50.345667784000064 ], [ -122.730533033999947, 50.344906272000046 ], [ -122.730949611999947, 50.3444498920001 ], [ -122.731034390999952, 50.343991300000056 ], [ -122.730645613999982, 50.343468608000045 ], [ -122.730637142999925, 50.343465874000039 ], [ -122.730665373999983, 50.343075256000077 ], [ -122.732000960999983, 50.343114718000024 ], [ -122.736280806999929, 50.343241061000057 ], [ -122.736247886999976, 50.343697315 ], [ -122.736923513999926, 50.343717244000089 ], [ -122.736810464999948, 50.345284332000048 ], [ -122.736694743999962, 50.346888353000118 ], [ -122.738572060999914, 50.346943708000047 ], [ -122.738313127999945, 50.350534439000064 ], [ -122.737939965999942, 50.350523438000053 ], [ -122.737832495999925, 50.352013446000079 ], [ -122.737748534999952, 50.352010971000041 ], [ -122.737659061000016, 50.353251348000079 ], [ -122.733565383999974, 50.353130584000041 ], [ -122.732042381999975, 50.353085615000047 ], [ -122.732301827999947, 50.349494912000068 ], [ -122.73238578199999, 50.349497391000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.997765839855495", "sL_AssetLoss": "853.117", "sL_BldgLoss": "851.211", "sL_StrLoss": "833.161", "sL_NStrLoss": "18.05", "sL_ContLoss": "1.906", "geom_point": "0101000020E6100000DEEF69B108AA5EC0F1F89384063C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.655545122999953, 50.470749233000078 ], [ -122.655550825999967, 50.470672341000089 ], [ -122.654108114999943, 50.470628845000114 ], [ -122.652118905999885, 50.470568843000102 ], [ -122.652281428999956, 50.46837938000003 ], [ -122.652385381999977, 50.466978855000029 ], [ -122.656430960999955, 50.467100849000062 ], [ -122.65801593799992, 50.467148604000073 ], [ -122.658010239999953, 50.467225496 ], [ -122.65894710699996, 50.467253713000076 ], [ -122.661441919999916, 50.467328813000066 ], [ -122.661176159999968, 50.470918821000069 ], [ -122.655545122999953, 50.470749233000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "0.993203741386288", "sL_AssetLoss": "3484.27", "sL_BldgLoss": "3460.59", "sL_StrLoss": "3263.23", "sL_NStrLoss": "197.36", "sL_ContLoss": "23.68", "geom_point": "0101000020E6100000A29E5F1068A65EC072135A7BC4484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.603032139999982, 50.566086593000065 ], [ -122.608674899999954, 50.566258822000108 ], [ -122.608404349999944, 50.56984826700004 ], [ -122.607385202, 50.569817182000065 ], [ -122.607346533999987, 50.570329992000069 ], [ -122.605999918999913, 50.570288903000119 ], [ -122.605988383999943, 50.570441824000042 ], [ -122.604716465999914, 50.570403001000017 ], [ -122.604708333999923, 50.570510755000058 ], [ -122.601362525999932, 50.570408559000072 ], [ -122.601353794999937, 50.570524135000049 ], [ -122.597135470999916, 50.570395144000081 ], [ -122.597102435999957, 50.570831938000019 ], [ -122.59145914799997, 50.570659122000052 ], [ -122.591731051999886, 50.567069722000049 ], [ -122.592637067999959, 50.567097486000094 ], [ -122.592673039999923, 50.566622444000124 ], [ -122.593927962999913, 50.566660889000104 ], [ -122.593930288999957, 50.56663017400016 ], [ -122.596733966999963, 50.566716013000089 ], [ -122.596749876999965, 50.566505642000074 ], [ -122.601967036999923, 50.566665185000033 ], [ -122.601974355999943, 50.566568268000069 ], [ -122.602993425999969, 50.566599403000126 ], [ -122.603032139999982, 50.566086593000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8393084", "BldgCostT": "5788334", "sL_LossRatio": "0.990611724962262", "sL_AssetLoss": "5346.03", "sL_BldgLoss": "5295.84", "sL_StrLoss": "4919.84", "sL_NStrLoss": "376", "sL_ContLoss": "50.19", "geom_point": "0101000020E61000002BE1C7A0ECAD5EC00EBF9B6E59284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.716185173999989, 50.320708551000102 ], [ -122.716186347, 50.320511391000089 ], [ -122.715343536999953, 50.320509331000075 ], [ -122.715345148999944, 50.320239528000023 ], [ -122.713750136999948, 50.320235613000122 ], [ -122.7132746139999, 50.320044596000123 ], [ -122.712818344999903, 50.319965664000051 ], [ -122.712818357999979, 50.31996350600005 ], [ -122.712805693999925, 50.319963476000112 ], [ -122.711900011999916, 50.319806793000062 ], [ -122.711555015000016, 50.31981846300009 ], [ -122.711560687999935, 50.318881165000079 ], [ -122.710717905999942, 50.31887907 ], [ -122.710719542999982, 50.31860926800006 ], [ -122.709876765999979, 50.31860716800005 ], [ -122.7098816929999, 50.317797758000076 ], [ -122.710303073999981, 50.317798809000074 ], [ -122.71030471399996, 50.317529005000019 ], [ -122.710726092999977, 50.317530055000105 ], [ -122.71072936799996, 50.316990448000098 ], [ -122.711424653999956, 50.31699217600007 ], [ -122.71283623699999, 50.316995670000047 ], [ -122.71283461199998, 50.317265473000113 ], [ -122.713431290999921, 50.317266946000046 ], [ -122.713511313999973, 50.316164857000018 ], [ -122.713078560999961, 50.316151992000094 ], [ -122.71310946599999, 50.315726405000071 ], [ -122.712920581999981, 50.315720789000125 ], [ -122.71294560299998, 50.315376264000108 ], [ -122.712727697999952, 50.315369785000051 ], [ -122.712757067999917, 50.314965389000093 ], [ -122.712474214999929, 50.314956979000144 ], [ -122.712539719999967, 50.314055055000075 ], [ -122.709644706999967, 50.313968930000023 ], [ -122.709618495999933, 50.314329519000097 ], [ -122.70865485599991, 50.314300834000051 ], [ -122.708652855999972, 50.314328342000081 ], [ -122.705855903999947, 50.314245038000067 ], [ -122.706030348999931, 50.313999923000061 ], [ -122.707326205999962, 50.313603808000032 ], [ -122.707677637999979, 50.313549730000098 ], [ -122.708705001999959, 50.313934382000056 ], [ -122.708732588, 50.313944709000054 ], [ -122.709492117999957, 50.313954695000113 ], [ -122.709968715999977, 50.313736429000052 ], [ -122.711619023999916, 50.312980603000035 ], [ -122.712560286999974, 50.312721306000043 ], [ -122.71384249499998, 50.312239992000059 ], [ -122.71434650899999, 50.312187294000076 ], [ -122.714797287999929, 50.312178698000146 ], [ -122.715020709999962, 50.312242796000099 ], [ -122.715216293999958, 50.312558857000106 ], [ -122.715466688999982, 50.312963502000109 ], [ -122.715886916000017, 50.313188501000134 ], [ -122.716036911999979, 50.313224654000059 ], [ -122.716264888999959, 50.313279601000055 ], [ -122.716741653999961, 50.313208662000122 ], [ -122.717813399999969, 50.31286950000009 ], [ -122.717984693999952, 50.312784820000047 ], [ -122.718248503999973, 50.312654386000183 ], [ -122.718825509999974, 50.312522001000069 ], [ -122.719490057999934, 50.312190343000076 ], [ -122.720135585999969, 50.311868190000069 ], [ -122.721514680999945, 50.311583402000039 ], [ -122.722428836999939, 50.31124912700006 ], [ -122.723355770999902, 50.309820029000093 ], [ -122.723950125999963, 50.309741642000091 ], [ -122.725519854999959, 50.309579183000068 ], [ -122.726186430999974, 50.309517950000128 ], [ -122.726326172999961, 50.309518945000065 ], [ -122.726385971999989, 50.309519357000063 ], [ -122.726883632999943, 50.309597080000088 ], [ -122.727449123999975, 50.309689395000071 ], [ -122.728165588999943, 50.30985162300005 ], [ -122.727935949999932, 50.309857608000137 ], [ -122.726867834999908, 50.309815214000075 ], [ -122.726348291999969, 50.309788120000071 ], [ -122.72568409199999, 50.309835917000058 ], [ -122.725331528999973, 50.309925093000075 ], [ -122.725235563999931, 50.309949379000052 ], [ -122.72523045299998, 50.310242772 ], [ -122.725189722999957, 50.312584093000055 ], [ -122.725136407999926, 50.314779556000069 ], [ -122.722672716999924, 50.314706550000068 ], [ -122.722718099999952, 50.314079744000033 ], [ -122.722567649999988, 50.31407528400004 ], [ -122.722539540999946, 50.314463506000052 ], [ -122.722160028999909, 50.314452254000059 ], [ -122.722131645999966, 50.314844215000072 ], [ -122.720584244999984, 50.314798325000083 ], [ -122.720512733999954, 50.315785352000049 ], [ -122.720185794999935, 50.315775653000124 ], [ -122.720154750999953, 50.316204093000088 ], [ -122.721737673999939, 50.316207893000076 ], [ -122.721740332999957, 50.316170964000044 ], [ -122.722050632999967, 50.316148264000098 ], [ -122.723337632999929, 50.316163064000065 ], [ -122.723695843999934, 50.316212562000011 ], [ -122.723796661999955, 50.316212800000066 ], [ -122.723796581999949, 50.316226481000101 ], [ -122.723908632999951, 50.316241963000074 ], [ -122.723908989999941, 50.316422847000084 ], [ -122.725095640999953, 50.316458003000079 ], [ -122.725080575000021, 50.317078357000121 ], [ -122.724804605999978, 50.317071453000089 ], [ -122.722543135999956, 50.317045973000127 ], [ -122.721997078999919, 50.31700519000006 ], [ -122.718589369999975, 50.317160063000109 ], [ -122.717665181999948, 50.317218354000069 ], [ -122.717669678999954, 50.31784802900011 ], [ -122.717732278000014, 50.32021759000002 ], [ -122.717737954999976, 50.320784975000024 ], [ -122.717124913999925, 50.320783485000042 ], [ -122.717034103999964, 50.320763910000124 ], [ -122.716185173999989, 50.320708551000102 ] ], [ [ -122.717461757999956, 50.31862584600006 ], [ -122.717468341999947, 50.317515206000088 ], [ -122.715361790999935, 50.31745264400012 ], [ -122.715359647999975, 50.317811297000048 ], [ -122.715781030999963, 50.317812327000134 ], [ -122.715779420999951, 50.318082131000054 ], [ -122.716622188999935, 50.318084188000086 ], [ -122.716618980999911, 50.318623795000072 ], [ -122.717461757999956, 50.31862584600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.998551243374069", "sL_AssetLoss": "586.71", "sL_BldgLoss": "585.86", "sL_StrLoss": "581", "sL_NStrLoss": "4.86", "sL_ContLoss": "0.85", "geom_point": "0101000020E61000008475EB4E1AA95EC043C70E2AF1484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63954310299998, 50.567979779000048 ], [ -122.645186236999919, 50.568150157000062 ], [ -122.644918586999921, 50.5717396820001 ], [ -122.639275002999938, 50.571569291000074 ], [ -122.63954310299998, 50.567979779000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99932247945419", "sL_AssetLoss": "295.194", "sL_BldgLoss": "294.994", "sL_StrLoss": "294", "sL_NStrLoss": "0.994", "sL_ContLoss": "0.2", "geom_point": "0101000020E6100000EF7E6828A69D5EC0146E22C87B454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.461251149999924, 50.54117221700006 ], [ -122.466890234999966, 50.541351641000041 ], [ -122.46682115599999, 50.542231864000051 ], [ -122.46488658, 50.542275641000117 ], [ -122.464347862999958, 50.544615221000164 ], [ -122.464331825999963, 50.544868437000048 ], [ -122.460969005999985, 50.544761406000127 ], [ -122.461251149999924, 50.54117221700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.99881258037742", "sL_AssetLoss": "350.8448", "sL_BldgLoss": "350.4282", "sL_StrLoss": "347.0452", "sL_NStrLoss": "3.383", "sL_ContLoss": "0.4166", "geom_point": "0101000020E610000064462EEEB59B5EC08B73D4D1F14C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.432535464999916, 50.599136183000077 ], [ -122.435609627999966, 50.59923469299999 ], [ -122.435325074, 50.602823564000083 ], [ -122.429678410999941, 50.602642553000052 ], [ -122.42978761699996, 50.601267453000069 ], [ -122.430093495999955, 50.601016896000054 ], [ -122.430916514999964, 50.600760607000026 ], [ -122.431033288999956, 50.600356088000112 ], [ -122.43120590599996, 50.600176594000068 ], [ -122.431859993, 50.599856208000126 ], [ -122.431990120999899, 50.599488803000057 ], [ -122.432535464999916, 50.599136183000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.965193680327211", "sL_AssetLoss": "1.2469", "sL_BldgLoss": "1.2035", "sL_StrLoss": "0.0635", "sL_NStrLoss": "1.14", "sL_ContLoss": "0.0434", "geom_point": "0101000020E6100000F9BCC19B9E9D5EC0FBAC32535A464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.464108819999979, 50.546355798 ], [ -122.464237374, 50.546359887000037 ], [ -122.463956729999978, 50.550790890000052 ], [ -122.463652078999971, 50.551380395000081 ], [ -122.463381430999917, 50.551532218000119 ], [ -122.461413981999982, 50.551469603000037 ], [ -122.461696132, 50.547880443000025 ], [ -122.463983339999984, 50.547953231000065 ], [ -122.464108819999979, 50.546355798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16458167", "BldgCostT": "11086667", "sL_LossRatio": "0.994471801306639", "sL_AssetLoss": "8278.646", "sL_BldgLoss": "8232.88", "sL_StrLoss": "7975.13", "sL_NStrLoss": "257.75", "sL_ContLoss": "45.766", "geom_point": "0101000020E6100000E004538B909F5EC0E4D2210509434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.487272897999944, 50.52944528400014 ], [ -122.48727088399994, 50.529431616000061 ], [ -122.48504531, 50.529378024000096 ], [ -122.485150311999973, 50.528032695000071 ], [ -122.483294518999941, 50.527973966 ], [ -122.483157547999951, 50.527969631000062 ], [ -122.48316235799993, 50.527908032000063 ], [ -122.481145778999945, 50.527844178000073 ], [ -122.481426210999956, 50.52425486400012 ], [ -122.484291872999961, 50.524345594000089 ], [ -122.484303594, 50.524195433000038 ], [ -122.485677004999957, 50.524238891000053 ], [ -122.485750086999957, 50.523302266000023 ], [ -122.486946919999937, 50.523340123000011 ], [ -122.489312178999981, 50.523414898000034 ], [ -122.489342160999911, 50.523030248000069 ], [ -122.488226266999902, 50.522994976000099 ], [ -122.488284638999971, 50.522246293000087 ], [ -122.488506102999935, 50.519405623000097 ], [ -122.488894966999965, 50.519417916000116 ], [ -122.488940018, 50.518839932000056 ], [ -122.490402293, 50.518886146000071 ], [ -122.490474405999947, 50.517960568000078 ], [ -122.493411691999967, 50.518053338000051 ], [ -122.49611070499999, 50.518138515000068 ], [ -122.496095680999986, 50.518331652000114 ], [ -122.497564466999947, 50.518377976000068 ], [ -122.497371962999949, 50.520853662000064 ], [ -122.497335350999919, 50.521324482000075 ], [ -122.498253450999982, 50.52135342800009 ], [ -122.49928025599999, 50.521385792000075 ], [ -122.499478379, 50.518836486000097 ], [ -122.505114822999985, 50.51901397700005 ], [ -122.505080347999979, 50.519458294000067 ], [ -122.505067700999973, 50.519621307000108 ], [ -122.507036193999937, 50.519683228000126 ], [ -122.506757829999955, 50.523272625000097 ], [ -122.501120847999985, 50.523095219000034 ], [ -122.50116802499997, 50.52248789300004 ], [ -122.499511555999959, 50.522435706000032 ], [ -122.499313420999911, 50.524985001000047 ], [ -122.498602502999944, 50.524962596000123 ], [ -122.498571410999915, 50.525362518000058 ], [ -122.497935521999921, 50.525342474000105 ], [ -122.497924591999947, 50.525483033000079 ], [ -122.495405756999958, 50.525403599000114 ], [ -122.495373860999933, 50.525813507000073 ], [ -122.493766190999906, 50.525677705000049 ], [ -122.49261799199995, 50.52537274400008 ], [ -122.492388192999911, 50.525311698000053 ], [ -122.492038515999965, 50.525149295000055 ], [ -122.491639511999949, 50.525389996000051 ], [ -122.491579292999972, 50.525694812000047 ], [ -122.491350787999963, 50.525955398000072 ], [ -122.4906863, 50.526267289000096 ], [ -122.490147289999982, 50.52640830800005 ], [ -122.48977729799995, 50.526767210000074 ], [ -122.489391969999986, 50.526950880000108 ], [ -122.489419576999978, 50.527019762000094 ], [ -122.491269750999919, 50.527509418000086 ], [ -122.495224744999959, 50.52772969300004 ], [ -122.495156461999969, 50.528607092000136 ], [ -122.495116667999952, 50.528605837 ], [ -122.495087081999941, 50.528985994000095 ], [ -122.494819525999972, 50.528977552000136 ], [ -122.494788791999966, 50.529372399000124 ], [ -122.494471036999983, 50.52936237400008 ], [ -122.494439001, 50.529773907000084 ], [ -122.492371587999955, 50.529708655000078 ], [ -122.492341732999947, 50.530091957000138 ], [ -122.490645440999984, 50.530038390000122 ], [ -122.490571211999907, 50.530990897000066 ], [ -122.487485004999954, 50.530893372000072 ], [ -122.487464473999978, 50.530753189000087 ], [ -122.487351021000023, 50.529978637000056 ], [ -122.487272897999944, 50.52944528400014 ] ], [ [ -122.492378889999884, 50.524130036000017 ], [ -122.492402521999963, 50.52382659600007 ], [ -122.491362628999966, 50.52379375600006 ], [ -122.491338988999956, 50.524097196000071 ], [ -122.492378889999884, 50.524130036000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.994541419231", "sL_AssetLoss": "333.42", "sL_BldgLoss": "331.6", "sL_StrLoss": "316", "sL_NStrLoss": "15.6", "sL_ContLoss": "1.82", "geom_point": "0101000020E61000005762B73255AE5EC03EF38B751E2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.723712211999924, 50.330782182000092 ], [ -122.723715340999917, 50.330242575000099 ], [ -122.723293849999919, 50.33024157400007 ], [ -122.723296983999887, 50.329701968000073 ], [ -122.722875495999972, 50.329700963000064 ], [ -122.722878635999933, 50.329161357000011 ], [ -122.722457152999965, 50.329160352000031 ], [ -122.722461867999925, 50.328350943000075 ], [ -122.722040392999972, 50.328349937000056 ], [ -122.722046688999953, 50.327270724000087 ], [ -122.723732547999973, 50.327274741000053 ], [ -122.723730985999907, 50.327544545000094 ], [ -122.724074285999933, 50.327545359000105 ], [ -122.724152452999945, 50.327545545000063 ], [ -122.724152057999959, 50.327613811000028 ], [ -122.724149328999957, 50.328085151000103 ], [ -122.724570801999946, 50.328086150000033 ], [ -122.724569241999959, 50.32835595400006 ], [ -122.72499071699994, 50.328356951000046 ], [ -122.724987602999931, 50.328896558000118 ], [ -122.725409083999963, 50.328897554000079 ], [ -122.725407528999966, 50.329167356000021 ], [ -122.725829009999984, 50.329168350000018 ], [ -122.725821248999964, 50.330517366000095 ], [ -122.725399752999962, 50.330516372000041 ], [ -122.725398198000036, 50.330786175000107 ], [ -122.723712211999924, 50.330782182000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998822641729514", "sL_AssetLoss": "548.686", "sL_BldgLoss": "548.04", "sL_StrLoss": "543", "sL_NStrLoss": "5.04", "sL_ContLoss": "0.646", "geom_point": "0101000020E610000047A30A98E3A45EC0B13F3F4203484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.573706783999938, 50.560717873000044 ], [ -122.57934875799999, 50.560891590000082 ], [ -122.579075903000017, 50.564480987000103 ], [ -122.573433480999967, 50.564307256000063 ], [ -122.573706783999938, 50.560717873000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28079167", "BldgCostT": "16416667", "sL_LossRatio": "0.979336483048647", "sL_AssetLoss": "7704.4", "sL_BldgLoss": "7545.2", "sL_StrLoss": "6414.8", "sL_NStrLoss": "1130.4", "sL_ContLoss": "159.2", "geom_point": "0101000020E6100000E2AE14B86BAF5EC07E7A09A1C5274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.739313626999945, 50.312831272000089 ], [ -122.73947132, 50.310280959000075 ], [ -122.738015091999955, 50.31066473700011 ], [ -122.73559229599999, 50.311104677000095 ], [ -122.73344676, 50.310856447000056 ], [ -122.732163260999954, 50.310425144000092 ], [ -122.732103212999959, 50.310398149000065 ], [ -122.730540251999955, 50.31019793900002 ], [ -122.730510609999911, 50.30968186800002 ], [ -122.730691301999983, 50.30966479900011 ], [ -122.731427799999949, 50.30972520300007 ], [ -122.732022316, 50.309883213 ], [ -122.732895722999942, 50.310228339000119 ], [ -122.733692918999949, 50.310538883000028 ], [ -122.734187422000034, 50.310640757000051 ], [ -122.734869980999974, 50.310728406000116 ], [ -122.735615222999954, 50.310745915000069 ], [ -122.736228575999945, 50.310701044000034 ], [ -122.736795338, 50.310600817000079 ], [ -122.73925189099999, 50.310007581000015 ], [ -122.740039057999965, 50.309774402000073 ], [ -122.741636769999957, 50.309061321000094 ], [ -122.742049978999958, 50.308945747000053 ], [ -122.742537888999919, 50.308885452000041 ], [ -122.743035959999986, 50.308899228000108 ], [ -122.743421997, 50.30896547300005 ], [ -122.743877437999927, 50.309121936000068 ], [ -122.744323638999973, 50.309329407000121 ], [ -122.74457220499994, 50.30952835900009 ], [ -122.745675861, 50.310817618000065 ], [ -122.745952517999939, 50.311075867000092 ], [ -122.746332672999955, 50.311302972000121 ], [ -122.74773523, 50.311876824000095 ], [ -122.747865836999893, 50.311914240000107 ], [ -122.74482504199996, 50.31182474400007 ], [ -122.744882573, 50.311024677000105 ], [ -122.742626295999969, 50.310958217000071 ], [ -122.742540233999961, 50.312154227000072 ], [ -122.7412135899999, 50.312115129000041 ], [ -122.741158119999938, 50.312885659000067 ], [ -122.739313626999945, 50.312831272000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66707118", "BldgCostT": "37117427", "sL_LossRatio": "0.981633545307733", "sL_AssetLoss": "17406.19", "sL_BldgLoss": "17086.5", "sL_StrLoss": "14833.7", "sL_NStrLoss": "2252.8", "sL_ContLoss": "319.69", "geom_point": "0101000020E61000002FD9A9A07FB05EC09F98D4543F284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.757493787999962, 50.318716228000071 ], [ -122.757495159999934, 50.318446425000069 ], [ -122.757073771999956, 50.318445545000024 ], [ -122.757076521999949, 50.317905936000109 ], [ -122.756655137999971, 50.317905055000033 ], [ -122.75665927099999, 50.317095643000108 ], [ -122.756237892999962, 50.317094759000071 ], [ -122.756238109999956, 50.317052788000062 ], [ -122.756242032999978, 50.316285347000118 ], [ -122.755820663999927, 50.31628446200012 ], [ -122.75582481, 50.315475049000021 ], [ -122.756601423999896, 50.315476677000056 ], [ -122.756692433999945, 50.314206515000059 ], [ -122.756722870999951, 50.313781707000118 ], [ -122.751747085, 50.313635624000014 ], [ -122.751870617999955, 50.311914038000111 ], [ -122.755739824999978, 50.311117027000073 ], [ -122.756667778999969, 50.311037198000058 ], [ -122.756762298999917, 50.311037356000028 ], [ -122.757556767999986, 50.311038613000044 ], [ -122.757393420999961, 50.313319074000049 ], [ -122.758486967999957, 50.313351143000091 ], [ -122.758490351999953, 50.31330388500006 ], [ -122.758224752999979, 50.313296096000052 ], [ -122.758253164999985, 50.312899356000095 ], [ -122.757674358999935, 50.312882382000041 ], [ -122.757806386999974, 50.311039007000048 ], [ -122.758353180999976, 50.311039868000087 ], [ -122.758987512999951, 50.311114223000075 ], [ -122.759614372999948, 50.311352125000099 ], [ -122.760542645999976, 50.31207292800012 ], [ -122.760799703999979, 50.312371042000116 ], [ -122.76095038699998, 50.312681327000064 ], [ -122.760961557999948, 50.312957836000074 ], [ -122.760806837999937, 50.313941097000068 ], [ -122.760825380999918, 50.314212401000113 ], [ -122.760917448999962, 50.31451737400014 ], [ -122.761367339999978, 50.314890411000086 ], [ -122.762072919999966, 50.315242547000018 ], [ -122.762267388999959, 50.315339591000033 ], [ -122.762372623999909, 50.315387174000172 ], [ -122.763546854999944, 50.315917859000074 ], [ -122.76350142899993, 50.316000262000038 ], [ -122.763500901999961, 50.316000120000112 ], [ -122.763286329999943, 50.31606579400006 ], [ -122.762620145999904, 50.316269683000129 ], [ -122.762246935999912, 50.316383902000048 ], [ -122.760558202999931, 50.3169006930001 ], [ -122.760313233999966, 50.316975671000094 ], [ -122.760217278999932, 50.317641999000074 ], [ -122.760595102999957, 50.318200295000111 ], [ -122.760601800999936, 50.31845286300009 ], [ -122.760444879999966, 50.318452539000056 ], [ -122.760443524, 50.318722344000101 ], [ -122.759511423999967, 50.318720419000051 ], [ -122.757493787999962, 50.318716228000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4120500", "BldgCostT": "2370000", "sL_LossRatio": "0.980250290436905", "sL_AssetLoss": "680.01", "sL_BldgLoss": "666.58", "sL_StrLoss": "592.28", "sL_NStrLoss": "74.3", "sL_ContLoss": "13.43", "geom_point": "0101000020E610000099BF9D9F7DB05EC060893013FF284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.757481432999967, 50.32114446700006 ], [ -122.757482805999928, 50.320874662000072 ], [ -122.757061395999983, 50.320873783000081 ], [ -122.757062772, 50.320603979000104 ], [ -122.756219955999967, 50.320602216000033 ], [ -122.756224094999965, 50.319792802000038 ], [ -122.757066895999955, 50.31979456600007 ], [ -122.757068272999945, 50.319524762000086 ], [ -122.75856572, 50.319527881000091 ], [ -122.758753864, 50.319528271000145 ], [ -122.758745670999986, 50.321147097000058 ], [ -122.758162227999904, 50.321145885000114 ], [ -122.757481432999967, 50.32114446700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995939982347749", "sL_AssetLoss": "283.25", "sL_BldgLoss": "282.1", "sL_StrLoss": "272", "sL_NStrLoss": "10.1", "sL_ContLoss": "1.15", "geom_point": "0101000020E610000015986788D7B05EC0295E235181294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.762524938999917, 50.323852946000066 ], [ -122.76378924899997, 50.323855521000041 ], [ -122.76378523599999, 50.324664933000072 ], [ -122.762520906999981, 50.32466235900003 ], [ -122.762524938999917, 50.323852946000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "0.987402490576725", "sL_AssetLoss": "3318.91", "sL_BldgLoss": "3277.1", "sL_StrLoss": "3030", "sL_NStrLoss": "247.1", "sL_ContLoss": "41.81", "geom_point": "0101000020E61000008E6E4A9AFBB15EC04C58761C1A284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.77711984699998, 50.315642680000053 ], [ -122.777261842999962, 50.313648251000068 ], [ -122.776779433999977, 50.313634188000037 ], [ -122.777035105999971, 50.31004319900007 ], [ -122.782646611999922, 50.310206659000102 ], [ -122.782484348999972, 50.312489717000155 ], [ -122.782966748999954, 50.312503755000101 ], [ -122.78290395499999, 50.31338734300008 ], [ -122.782942306999956, 50.313388458000077 ], [ -122.782858031999965, 50.31457427000003 ], [ -122.783243614999961, 50.314585490000091 ], [ -122.783244881999948, 50.314567660000101 ], [ -122.784051651999931, 50.314591130000053 ], [ -122.784052045999914, 50.314585580000063 ], [ -122.789664139999914, 50.314748682000065 ], [ -122.789599062000022, 50.315666292000067 ], [ -122.781091581999959, 50.315650372000086 ], [ -122.781077480999926, 50.315650354000049 ], [ -122.77711984699998, 50.315642680000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.988379187669549", "sL_AssetLoss": "2130.66", "sL_BldgLoss": "2105.9", "sL_StrLoss": "1956", "sL_NStrLoss": "149.9", "sL_ContLoss": "24.76", "geom_point": "0101000020E6100000857F8DFB419F5EC0E489DEB1F1134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.48733528299999, 50.15252777300006 ], [ -122.489767123999982, 50.152605313000024 ], [ -122.489871288999922, 50.153326711000055 ], [ -122.490724411999949, 50.15463410800006 ], [ -122.490953283999914, 50.155444506000023 ], [ -122.490927691999957, 50.156657911000089 ], [ -122.490415188, 50.157367194000159 ], [ -122.489482389999921, 50.158307100000137 ], [ -122.488489148999946, 50.15893647500009 ], [ -122.486047483999954, 50.158858604000038 ], [ -122.486107413999946, 50.158083877000081 ], [ -122.486292024999955, 50.155697195000059 ], [ -122.486325251999972, 50.155267600000094 ], [ -122.486465442999958, 50.155272073000091 ], [ -122.48649426599998, 50.154899404000034 ], [ -122.48663927299999, 50.154904029000093 ], [ -122.486757944999937, 50.153369506000061 ], [ -122.487009933999929, 50.153377545000083 ], [ -122.487076280999972, 50.15251951100003 ], [ -122.48733528299999, 50.15252777300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818334", "BldgCostT": "2633334", "sL_LossRatio": "0.976906510288279", "sL_AssetLoss": "3853.9", "sL_BldgLoss": "3764.9", "sL_StrLoss": "3411", "sL_NStrLoss": "353.9", "sL_ContLoss": "89", "geom_point": "0101000020E6100000E88685DECBB05EC0433E2AF6FE274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.764649589999948, 50.316029633000014 ], [ -122.763817686999971, 50.315888127000072 ], [ -122.763546854999944, 50.315917859000074 ], [ -122.762372623999909, 50.315387174000172 ], [ -122.762267388999959, 50.315339591000033 ], [ -122.762072919999966, 50.315242547000018 ], [ -122.761367339999978, 50.314890411000086 ], [ -122.760917448999962, 50.31451737400014 ], [ -122.760825380999918, 50.314212401000113 ], [ -122.760806837999937, 50.313941097000068 ], [ -122.760961557999948, 50.312957836000074 ], [ -122.76095038699998, 50.312681327000064 ], [ -122.760799703999979, 50.312371042000116 ], [ -122.760542645999976, 50.31207292800012 ], [ -122.759614372999948, 50.311352125000099 ], [ -122.758987512999951, 50.311114223000075 ], [ -122.758353180999976, 50.311039868000087 ], [ -122.757806386999974, 50.311039007000048 ], [ -122.757825104999981, 50.310777639000086 ], [ -122.75812154499998, 50.310778696000114 ], [ -122.758007284999962, 50.309293656000094 ], [ -122.763542885999982, 50.309455863000011 ], [ -122.763514521999966, 50.309852607000096 ], [ -122.764093291999956, 50.309869550000066 ], [ -122.764060330999939, 50.310330671000067 ], [ -122.764325913999969, 50.310338445000106 ], [ -122.764232607999958, 50.31164385400006 ], [ -122.764440694999976, 50.311649945000028 ], [ -122.764405101999969, 50.312147916000065 ], [ -122.764621219999938, 50.312154242000126 ], [ -122.764586177999931, 50.312644524000056 ], [ -122.76476434599995, 50.312649739000079 ], [ -122.76460339399992, 50.314901716000115 ], [ -122.766616980999984, 50.314960623000061 ], [ -122.766687546999961, 50.31397270700009 ], [ -122.766857615999967, 50.315406002000032 ], [ -122.767354961999956, 50.31619268400005 ], [ -122.766040253000014, 50.316281649000032 ], [ -122.764649589999948, 50.316029633000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.997927702757179", "sL_AssetLoss": "458.911", "sL_BldgLoss": "457.96", "sL_StrLoss": "450", "sL_NStrLoss": "7.96", "sL_ContLoss": "0.951", "geom_point": "0101000020E61000005B142CC459B55EC0A4E9C3E53E254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.835774851999986, 50.28863468900002 ], [ -122.836819017999971, 50.28863615900007 ], [ -122.836817934999928, 50.288952382000019 ], [ -122.836136744999976, 50.289618103000109 ], [ -122.835928193999962, 50.289821916000101 ], [ -122.835762635999956, 50.289983713000026 ], [ -122.835550986999962, 50.289983414000069 ], [ -122.835550269999942, 50.290191255000074 ], [ -122.835486954999922, 50.290253132000018 ], [ -122.835128915999988, 50.290252624000047 ], [ -122.83512770099999, 50.290604218000034 ], [ -122.834497065000022, 50.291220500000094 ], [ -122.833773603999987, 50.291927459000071 ], [ -122.83367969899993, 50.292019199 ], [ -122.833557063999947, 50.292139042000045 ], [ -122.833437756, 50.292138871000098 ], [ -122.833437348999922, 50.292256030000033 ], [ -122.833404145999964, 50.292288476000138 ], [ -122.83328134599999, 50.292408455000107 ], [ -122.833015656, 50.292408074000072 ], [ -122.833014802000022, 50.292651722000087 ], [ -122.832984358999951, 50.292677837000063 ], [ -122.832593546999931, 50.292677274000077 ], [ -122.832592600999988, 50.292947082000055 ], [ -122.832171435999953, 50.292946475000043 ], [ -122.832170650999956, 50.293169589000051 ], [ -122.832056541999989, 50.293216117000036 ], [ -122.830906983999967, 50.293214450000079 ], [ -122.83091080899996, 50.292135223000088 ], [ -122.831331966999954, 50.29213583500011 ], [ -122.831332921999916, 50.291866028000094 ], [ -122.831754075999925, 50.291866638000073 ], [ -122.831755978999979, 50.291327025000079 ], [ -122.832177129999934, 50.291327633 ], [ -122.832179027999956, 50.290788020000036 ], [ -122.832600174999968, 50.29078862700009 ], [ -122.83260112, 50.290518820000052 ], [ -122.833022264999954, 50.29051942600006 ], [ -122.833023208, 50.290249619000058 ], [ -122.833444349999965, 50.290250223000093 ], [ -122.833445292999954, 50.289980416000034 ], [ -122.833866429999915, 50.289981019000095 ], [ -122.83386808099999, 50.289507189000126 ], [ -122.834235461999967, 50.289441930000059 ], [ -122.834710577999928, 50.289442606000051 ], [ -122.834711048000017, 50.289306947000071 ], [ -122.834933399999954, 50.289173114000086 ], [ -122.835132643999913, 50.289173396000081 ], [ -122.835133059999947, 50.289052938000069 ], [ -122.835380606999948, 50.288903939000122 ], [ -122.835554706999972, 50.288904186000075 ], [ -122.835555069999955, 50.288798929000059 ], [ -122.835590681999989, 50.288777493000133 ], [ -122.835774851999986, 50.28863468900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.98679638637943", "sL_AssetLoss": "431.7", "sL_BldgLoss": "426", "sL_StrLoss": "407", "sL_NStrLoss": "19", "sL_ContLoss": "5.7", "geom_point": "0101000020E6100000D11E92CE3EB05EC0061E296CD0274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.751870617999955, 50.311914038000111 ], [ -122.751975316999946, 50.310454830000033 ], [ -122.752304320999897, 50.310453424000109 ], [ -122.753175594, 50.310449692000091 ], [ -122.755140205999965, 50.31074169000005 ], [ -122.755744522999962, 50.310770199000018 ], [ -122.757575524999936, 50.310776749000041 ], [ -122.757556767999986, 50.311038613000044 ], [ -122.756762298999917, 50.311037356000028 ], [ -122.756667778999969, 50.311037198000058 ], [ -122.755739824999978, 50.311117027000073 ], [ -122.751870617999955, 50.311914038000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.992881912757802", "sL_AssetLoss": "767.06", "sL_BldgLoss": "761.6", "sL_StrLoss": "728", "sL_NStrLoss": "33.6", "sL_ContLoss": "5.46", "geom_point": "0101000020E6100000D35B4DE8FFB25EC084200F9614284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.794954458999911, 50.311813938000064 ], [ -122.799171, 50.311936100000068 ], [ -122.799271031999979, 50.314274143000077 ], [ -122.795922879, 50.314400940000063 ], [ -122.79574282099999, 50.314407786000082 ], [ -122.79345861899999, 50.313389532000066 ], [ -122.793756818999938, 50.313390061000064 ], [ -122.793757986999978, 50.313120256000083 ], [ -122.794861829999945, 50.313122209000049 ], [ -122.794954458999911, 50.311813938000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.997623397854189", "sL_AssetLoss": "946.309", "sL_BldgLoss": "944.06", "sL_StrLoss": "924", "sL_NStrLoss": "20.06", "sL_ContLoss": "2.249", "geom_point": "0101000020E610000099D4AFF836B45EC0399FB61D05264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.811901599999914, 50.299139351000051 ], [ -122.812154407999969, 50.295548215000053 ], [ -122.815830527999935, 50.295654196000108 ], [ -122.815839856999958, 50.295521504000078 ], [ -122.819790644999955, 50.295635268000105 ], [ -122.820051511999978, 50.295868700000042 ], [ -122.820697614999972, 50.29612930200004 ], [ -122.821417619999977, 50.29614012800014 ], [ -122.821359756999954, 50.296964496000072 ], [ -122.820740493999935, 50.297159989000171 ], [ -122.814552770999924, 50.298780540000081 ], [ -122.814090094999969, 50.29890171400006 ], [ -122.813297640999963, 50.299179612000053 ], [ -122.811901599999914, 50.299139351000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331667", "BldgCostT": "4366667", "sL_LossRatio": "0.997793626423829", "sL_AssetLoss": "2324.629", "sL_BldgLoss": "2319.5", "sL_StrLoss": "2287", "sL_NStrLoss": "32.5", "sL_ContLoss": "5.129", "geom_point": "0101000020E61000001C146268D4A05EC0DC076A42A4214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.518388377999941, 50.265714 ], [ -122.518437125999952, 50.265079548000031 ], [ -122.516737493, 50.265025945000041 ], [ -122.516734221999968, 50.265068475000056 ], [ -122.516694017999953, 50.265591494000027 ], [ -122.511089031000026, 50.265414535000083 ], [ -122.51109773899995, 50.265301438000094 ], [ -122.510068401999945, 50.265268908000088 ], [ -122.510124925999946, 50.264535 ], [ -122.50973263799996, 50.264522600000092 ], [ -122.509755304999942, 50.264228299000088 ], [ -122.509388144999889, 50.264216693000058 ], [ -122.509400306, 50.264058817000056 ], [ -122.50874743299994, 50.264038176000049 ], [ -122.508977973999919, 50.261045701000086 ], [ -122.506060429999962, 50.260953411000052 ], [ -122.506079684999989, 50.260703674000112 ], [ -122.505002609999949, 50.260669584 ], [ -122.505084651999979, 50.259605777000104 ], [ -122.505204828999979, 50.258047373000153 ], [ -122.505474796000016, 50.258036013000037 ], [ -122.505922203999958, 50.258172699000021 ], [ -122.507165911999934, 50.25876370400011 ], [ -122.507625599999969, 50.259098399000059 ], [ -122.510173518, 50.259495794000038 ], [ -122.510859812999982, 50.259723690000101 ], [ -122.511964983999945, 50.259907391000063 ], [ -122.512466212999954, 50.260331804000053 ], [ -122.51316469399994, 50.26061379500004 ], [ -122.513707907999958, 50.261110806000012 ], [ -122.514320011, 50.261572288000117 ], [ -122.515686978999952, 50.262234596000056 ], [ -122.516105377999949, 50.262523694000095 ], [ -122.518720311999942, 50.263433689000088 ], [ -122.519154816999972, 50.263561894000127 ], [ -122.520271312, 50.264105986000082 ], [ -122.521371309999907, 50.264956207000083 ], [ -122.522077005999961, 50.265786493000107 ], [ -122.522044082999955, 50.266434499000077 ], [ -122.522097427999981, 50.266501933000029 ], [ -122.52053387799999, 50.266452675000096 ], [ -122.51833694199999, 50.266383425000079 ], [ -122.518388377999941, 50.265714 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.989083480518375", "sL_AssetLoss": "469.93", "sL_BldgLoss": "464.8", "sL_StrLoss": "426", "sL_NStrLoss": "38.8", "sL_ContLoss": "5.13", "geom_point": "0101000020E610000032A81D9B30B15EC0FE2399F649284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.767987534000014, 50.313531170000019 ], [ -122.76894500399996, 50.313559157000057 ], [ -122.76915849199996, 50.313875078000109 ], [ -122.769254665999981, 50.313948808000056 ], [ -122.769173339999924, 50.315944528000038 ], [ -122.768207792999974, 50.316086820000052 ], [ -122.767996705, 50.315264984000045 ], [ -122.767932794999965, 50.31408720900005 ], [ -122.767987534000014, 50.313531170000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.996986585067889", "sL_AssetLoss": "257.847", "sL_BldgLoss": "257.07", "sL_StrLoss": "250", "sL_NStrLoss": "7.07", "sL_ContLoss": "0.777", "geom_point": "0101000020E6100000E98F387D60B65EC0474E0DD174244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.847777795999917, 50.285683133000084 ], [ -122.847778657999953, 50.285413326 ], [ -122.84693646, 50.285412221000037 ], [ -122.846938947999917, 50.284636213000056 ], [ -122.847019488999962, 50.284602904000081 ], [ -122.847781238999957, 50.28460390500009 ], [ -122.847782099999918, 50.284334097000091 ], [ -122.849887546999966, 50.284336834000086 ], [ -122.849886698999939, 50.284606642000028 ], [ -122.850307790000016, 50.28460718500007 ], [ -122.850308636999955, 50.284337378 ], [ -122.850729724999951, 50.284337919000052 ], [ -122.850730570999971, 50.28406811100011 ], [ -122.852414918999969, 50.2840702620001 ], [ -122.852414608999965, 50.284170872000111 ], [ -122.852159014999955, 50.284348695000169 ], [ -122.851887319999904, 50.284679209000132 ], [ -122.851797353999984, 50.284843364000082 ], [ -122.851652395999906, 50.285107905000181 ], [ -122.851611888999969, 50.285148473000085 ], [ -122.851569387999973, 50.285148419000073 ], [ -122.851569254, 50.285191172000054 ], [ -122.851543398999965, 50.285217067000112 ], [ -122.851385092999976, 50.285375590000037 ], [ -122.851321922999887, 50.285417912000064 ], [ -122.849704565999957, 50.285415831000044 ], [ -122.849351988999942, 50.285225507000099 ], [ -122.849211913999966, 50.285149912000087 ], [ -122.84893121499999, 50.285044703000018 ], [ -122.848582884999956, 50.285003305000046 ], [ -122.848287395999961, 50.28506950000012 ], [ -122.848159692999928, 50.285188189000031 ], [ -122.848159691999939, 50.285350193000113 ], [ -122.848305407999987, 50.285659303000017 ], [ -122.84830839299994, 50.285683827000099 ], [ -122.847777795999917, 50.285683133000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.988604978691493", "sL_AssetLoss": "3827.11", "sL_BldgLoss": "3783.5", "sL_StrLoss": "3537", "sL_NStrLoss": "246.5", "sL_ContLoss": "43.61", "geom_point": "0101000020E61000002EFF00EF4DAF5EC08517F15B7C274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.74773523, 50.311876824000095 ], [ -122.746332672999955, 50.311302972000121 ], [ -122.745952517999939, 50.311075867000092 ], [ -122.745675861, 50.310817618000065 ], [ -122.74457220499994, 50.30952835900009 ], [ -122.744323638999973, 50.309329407000121 ], [ -122.743877437999927, 50.309121936000068 ], [ -122.743421997, 50.30896547300005 ], [ -122.743035959999986, 50.308899228000108 ], [ -122.742537888999919, 50.308885452000041 ], [ -122.742049978999958, 50.308945747000053 ], [ -122.741636769999957, 50.309061321000094 ], [ -122.740039057999965, 50.309774402000073 ], [ -122.73925189099999, 50.310007581000015 ], [ -122.736795338, 50.310600817000079 ], [ -122.736228575999945, 50.310701044000034 ], [ -122.735615222999954, 50.310745915000069 ], [ -122.734869980999974, 50.310728406000116 ], [ -122.734187422000034, 50.310640757000051 ], [ -122.733692918999949, 50.310538883000028 ], [ -122.732895722999942, 50.310228339000119 ], [ -122.732958114, 50.310064725000089 ], [ -122.732914938999969, 50.309883358 ], [ -122.732811443999978, 50.309448624 ], [ -122.732556797999948, 50.309138819000047 ], [ -122.732170108999981, 50.308790004000116 ], [ -122.731850527999953, 50.308655380000047 ], [ -122.73142110699996, 50.308474511000099 ], [ -122.730262689999961, 50.30799062300013 ], [ -122.729516669999924, 50.30764815000007 ], [ -122.729332255, 50.307455919000134 ], [ -122.73238009, 50.307436110000062 ], [ -122.734093596999983, 50.307223898000103 ], [ -122.734438973999929, 50.307117622000106 ], [ -122.734405648999953, 50.307579633000024 ], [ -122.737691141999989, 50.307676646000083 ], [ -122.737755525999958, 50.306783141000096 ], [ -122.738527657999924, 50.30680592500007 ], [ -122.73853529799996, 50.306699860000066 ], [ -122.739487030999953, 50.306727938000037 ], [ -122.739502669999965, 50.3065107830001 ], [ -122.742318508999944, 50.306593806000066 ], [ -122.742447248999952, 50.304804550000036 ], [ -122.743969572999973, 50.304849405 ], [ -122.743970297999951, 50.305314999000082 ], [ -122.743951387999928, 50.305534770000122 ], [ -122.743974368999901, 50.306209877000079 ], [ -122.744016028999937, 50.306717149000129 ], [ -122.744249115999978, 50.306769602000038 ], [ -122.744696645999966, 50.307082431000055 ], [ -122.744947994999961, 50.307258112000063 ], [ -122.745478208999927, 50.308085489000092 ], [ -122.745538611999905, 50.309884302000086 ], [ -122.745718593999968, 50.310298803000116 ], [ -122.746009006999941, 50.310574028000133 ], [ -122.746137790999938, 50.310696104000094 ], [ -122.747581511999911, 50.311480903000117 ], [ -122.748522293999926, 50.311546394000089 ], [ -122.749405610999986, 50.311485109000074 ], [ -122.750055081999932, 50.311180403000044 ], [ -122.750516794999953, 50.310873360000066 ], [ -122.750436651999934, 50.311989837000105 ], [ -122.747865836999893, 50.311914240000107 ], [ -122.74773523, 50.311876824000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6685500", "BldgCostT": "3720000", "sL_LossRatio": "0.429383359245493", "sL_AssetLoss": "9712.3", "sL_BldgLoss": "4170.3", "sL_StrLoss": "1186.3", "sL_NStrLoss": "2984", "sL_ContLoss": "5542", "geom_point": "0101000020E6100000ADC8BF0173B15EC005B8E6AF8C284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.773380716999924, 50.317290204000066 ], [ -122.772131683999959, 50.317233204000075 ], [ -122.771316707999986, 50.317348587000026 ], [ -122.769559423999979, 50.317416999000109 ], [ -122.768915604999975, 50.317119307000105 ], [ -122.76842621599999, 50.316723398000057 ], [ -122.76831985699999, 50.316511070000111 ], [ -122.76917387, 50.316336424000085 ], [ -122.77208299199998, 50.315928600000085 ], [ -122.775691992999938, 50.315941359000078 ], [ -122.775523763999956, 50.318302915000061 ], [ -122.774785553999891, 50.318281385000049 ], [ -122.774781607999941, 50.318174604000085 ], [ -122.774124388999979, 50.317552301000084 ], [ -122.773380716999924, 50.317290204000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16651061", "BldgCostT": "9178190", "sL_LossRatio": "0.501141000969032", "sL_AssetLoss": "7326.9", "sL_BldgLoss": "3671.81", "sL_StrLoss": "1571.01", "sL_NStrLoss": "2100.8", "sL_ContLoss": "3655.09", "geom_point": "0101000020E61000006F1D6F34F8B05EC0E711B3C9A7284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.760595102999957, 50.318200295000111 ], [ -122.760217278999932, 50.317641999000074 ], [ -122.760313233999966, 50.316975671000094 ], [ -122.760558202999931, 50.3169006930001 ], [ -122.762246935999912, 50.316383902000048 ], [ -122.762620145999904, 50.316269683000129 ], [ -122.763286329999943, 50.31606579400006 ], [ -122.764312712999981, 50.316652971000103 ], [ -122.765495178999956, 50.316854107000076 ], [ -122.767300158999902, 50.316719574000054 ], [ -122.767574369000016, 50.31666350800009 ], [ -122.767581380999943, 50.316864403000068 ], [ -122.76776331399999, 50.317251796000022 ], [ -122.76827919499999, 50.31776590200009 ], [ -122.768700891999913, 50.317919688000053 ], [ -122.769612189999961, 50.318092010000065 ], [ -122.770735298999952, 50.318049294000062 ], [ -122.771340406999968, 50.317861298000068 ], [ -122.772339616, 50.317837107000074 ], [ -122.773152219999957, 50.317973795000064 ], [ -122.773474589999964, 50.318279993000061 ], [ -122.773482581999929, 50.31836443600006 ], [ -122.772979821999982, 50.318349764000068 ], [ -122.77297506599993, 50.318416476000039 ], [ -122.772183626999947, 50.318393375000028 ], [ -122.772176337999966, 50.318495595000044 ], [ -122.766792421, 50.31833829100006 ], [ -122.766776317, 50.318563726000022 ], [ -122.762835297999942, 50.318448413000027 ], [ -122.762826191999963, 50.318446708000067 ], [ -122.76280645099996, 50.318447569000064 ], [ -122.761163831999966, 50.318399463000077 ], [ -122.761206816999973, 50.317798768000046 ], [ -122.760869601999943, 50.317788889000042 ], [ -122.760866268999933, 50.318453407000106 ], [ -122.760601800999936, 50.31845286300009 ], [ -122.760595102999957, 50.318200295000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.991832931374699", "sL_AssetLoss": "364.88", "sL_BldgLoss": "361.9", "sL_StrLoss": "351", "sL_NStrLoss": "10.9", "sL_ContLoss": "2.98", "geom_point": "0101000020E61000009344C40795B25EC01563AAAAE1294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.790770606999942, 50.32654189600003 ], [ -122.791448888, 50.326538509000038 ], [ -122.791367575999956, 50.327685308000078 ], [ -122.78834813899999, 50.32759766400001 ], [ -122.789349092999942, 50.327168496000098 ], [ -122.789771482999953, 50.326890804000051 ], [ -122.790770606999942, 50.32654189600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "241633896", "BldgCostT": "136361969", "sL_LossRatio": "0.701360100274864", "sL_AssetLoss": "102872.70401", "sL_BldgLoss": "72150.81", "sL_StrLoss": "50711.81", "sL_NStrLoss": "21439", "sL_ContLoss": "30721.89401", "geom_point": "0101000020E61000006A4D1D58CCB25EC078862C1CD2294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.806974836999956, 50.337767632000116 ], [ -122.806974959999962, 50.337765880000084 ], [ -122.806971818999955, 50.337765790000049 ], [ -122.806373787999931, 50.337400787000028 ], [ -122.806378665999958, 50.337331685000017 ], [ -122.80623370099994, 50.337327499000054 ], [ -122.803951721999979, 50.336313398000129 ], [ -122.802743580999959, 50.336176593000033 ], [ -122.800199607999971, 50.336189498000053 ], [ -122.799343988999937, 50.336000004000041 ], [ -122.799294764999914, 50.335978195000109 ], [ -122.798669099, 50.335701001000061 ], [ -122.798032611999972, 50.335285718000051 ], [ -122.798156753999933, 50.333531477000037 ], [ -122.795009539999967, 50.333440328000052 ], [ -122.795054836999938, 50.332800831000021 ], [ -122.794210788999919, 50.332776371000058 ], [ -122.794033795999908, 50.332311405000048 ], [ -122.793898682999966, 50.331097900000032 ], [ -122.794097818999887, 50.330657795000036 ], [ -122.794421894, 50.330270512 ], [ -122.794930189999917, 50.329921509000087 ], [ -122.7953814, 50.329400311000022 ], [ -122.79541656, 50.32918701400007 ], [ -122.79552509199999, 50.328528589000015 ], [ -122.794982002999973, 50.327339388000091 ], [ -122.79435410499994, 50.3266828920001 ], [ -122.79379309399998, 50.326249895000103 ], [ -122.793597896, 50.326181982000016 ], [ -122.793605741999954, 50.326071246000076 ], [ -122.793249964999958, 50.32606093 ], [ -122.792024924999936, 50.325634702000073 ], [ -122.79146350699996, 50.325661710000077 ], [ -122.790618985999942, 50.325875295000117 ], [ -122.789817388999936, 50.32628689200007 ], [ -122.788873086999942, 50.326645798000122 ], [ -122.788424995999932, 50.326771197000049 ], [ -122.787426201999949, 50.32685951100013 ], [ -122.787058777999931, 50.327110099000024 ], [ -122.78639738399994, 50.327396391000036 ], [ -122.786272285999971, 50.327404899000058 ], [ -122.785964281999952, 50.327242593000079 ], [ -122.785773739999968, 50.327242591000065 ], [ -122.785790777999949, 50.327002700000058 ], [ -122.785015092999984, 50.326980152000047 ], [ -122.785012072999976, 50.327022664000019 ], [ -122.782930897000014, 50.326962142000063 ], [ -122.78287208, 50.327789494000079 ], [ -122.782240026999958, 50.327804194000066 ], [ -122.778552433999963, 50.327696840000023 ], [ -122.778501111999901, 50.327686905000029 ], [ -122.778109904999965, 50.327497487000066 ], [ -122.777276048999965, 50.327378147000026 ], [ -122.777511756999928, 50.324068145000105 ], [ -122.779592791999931, 50.324128768000058 ], [ -122.779637382999937, 50.323502136000073 ], [ -122.778833472999963, 50.323478721000107 ], [ -122.77893507899995, 50.322051130000034 ], [ -122.776781290999935, 50.321988370000085 ], [ -122.77703701199999, 50.318397420000032 ], [ -122.778957916999957, 50.318453395000063 ], [ -122.779070297999965, 50.316874141 ], [ -122.777074737999982, 50.316815989000069 ], [ -122.777136652999957, 50.315946433000065 ], [ -122.781089089999981, 50.315960219000097 ], [ -122.781103209999941, 50.315960258000068 ], [ -122.789576156999942, 50.315989233000067 ], [ -122.789409441999979, 50.318339678000093 ], [ -122.788602601999912, 50.318316247 ], [ -122.788602208, 50.318321798000063 ], [ -122.787789439999955, 50.318298189000117 ], [ -122.787788173999985, 50.318316018000132 ], [ -122.787025943999964, 50.31829387100008 ], [ -122.787024441999932, 50.318315036000079 ], [ -122.78597800599999, 50.318284624000086 ], [ -122.785977697999911, 50.318288962000089 ], [ -122.784745196999921, 50.318253129000055 ], [ -122.784617643, 50.320048680000063 ], [ -122.784701771999934, 50.320051126000095 ], [ -122.78453102, 50.322454610000101 ], [ -122.785150135999956, 50.322472612000055 ], [ -122.785176155999977, 50.322106325000085 ], [ -122.786281266999978, 50.322138448000047 ], [ -122.786446437999956, 50.319812250000091 ], [ -122.788934045999937, 50.319884520000116 ], [ -122.789002586, 50.318918411000112 ], [ -122.791625583999974, 50.318994552000035 ], [ -122.791626509999944, 50.3187824070001 ], [ -122.791205118000036, 50.318781650000048 ], [ -122.791207480999944, 50.318242041000147 ], [ -122.790786094999959, 50.318241283000091 ], [ -122.790789645999951, 50.317431868000035 ], [ -122.791211027, 50.317432625000087 ], [ -122.791212209, 50.317162820000071 ], [ -122.791633585999989, 50.317163576000077 ], [ -122.791638688999953, 50.315996188000035 ], [ -122.792677796999897, 50.315999677000029 ], [ -122.792676693999923, 50.316112190000069 ], [ -122.792667501999929, 50.317035305000047 ], [ -122.792663397999974, 50.317775836000116 ], [ -122.792662501, 50.317939197000022 ], [ -122.792662586999981, 50.317964712000084 ], [ -122.792663023999978, 50.318108588000072 ], [ -122.792665009999894, 50.318757897000054 ], [ -122.792673481999941, 50.320561892000093 ], [ -122.792607981999979, 50.321078253000067 ], [ -122.797793683999956, 50.320872211000101 ], [ -122.79790310199995, 50.320776406000142 ], [ -122.797999786999981, 50.320998718000062 ], [ -122.798048296999951, 50.321248402000052 ], [ -122.798071178999962, 50.321878791000124 ], [ -122.798068421999986, 50.322111346000064 ], [ -122.798066405999947, 50.322282219000037 ], [ -122.798062664000014, 50.32259697700006 ], [ -122.798060880999969, 50.32274996000011 ], [ -122.79804529399999, 50.32406298500009 ], [ -122.798039191999962, 50.324576591000074 ], [ -122.79803792899996, 50.324818247000046 ], [ -122.798036707999984, 50.325048796000054 ], [ -122.798035993999989, 50.325538887000086 ], [ -122.797497349999944, 50.325537950000047 ], [ -122.797501934999957, 50.324458732000053 ], [ -122.797080491999949, 50.324457997000117 ], [ -122.797082691999933, 50.323941189000074 ], [ -122.796244965999932, 50.323916922000109 ], [ -122.796239912999937, 50.323916913000048 ], [ -122.796239913999955, 50.323916776000061 ], [ -122.79539769099992, 50.323892372000074 ], [ -122.795279282999928, 50.325564510000085 ], [ -122.798035840999916, 50.325644359000137 ], [ -122.798034926999918, 50.326271288000072 ], [ -122.802450054999923, 50.326454880000057 ], [ -122.802695777999972, 50.3264610290001 ], [ -122.802696696999959, 50.32646103900008 ], [ -122.802731669999957, 50.328206490000099 ], [ -122.802635254999984, 50.32957103100005 ], [ -122.801821791999913, 50.329547511000094 ], [ -122.801812252999952, 50.329682471000034 ], [ -122.804336158999888, 50.329755426000091 ], [ -122.804318234999982, 50.330009213000096 ], [ -122.80571942399996, 50.330049691000035 ], [ -122.805602929999949, 50.331699884000088 ], [ -122.80908953, 50.331800527000091 ], [ -122.809099097999976, 50.331664828000058 ], [ -122.810992324999916, 50.331719430000099 ], [ -122.811004726999911, 50.331543474000014 ], [ -122.812190517999952, 50.331577656000078 ], [ -122.812178358999972, 50.331946859000041 ], [ -122.812142913999978, 50.332954110000102 ], [ -122.812106879999945, 50.333978707000142 ], [ -122.812105716999952, 50.334788722000049 ], [ -122.812103702999977, 50.336160086000092 ], [ -122.813626130999978, 50.336172428000062 ], [ -122.813654339999957, 50.33617266200018 ], [ -122.814275601999924, 50.336177701000054 ], [ -122.81430139899993, 50.338008997000024 ], [ -122.812555058999948, 50.337733985000071 ], [ -122.81201979199993, 50.338120505000042 ], [ -122.810314280999961, 50.339351942000121 ], [ -122.810120786999974, 50.339555578000095 ], [ -122.80902589899992, 50.339019409000038 ], [ -122.806974836999956, 50.337767632000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "257", "sL_BldgLoss": "257", "sL_StrLoss": "257", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006759411D60185EC0ED30C3D282524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.378695715999953, 50.644686643000114 ], [ -120.37873412299993, 50.643996779000084 ], [ -120.380429534999948, 50.644034929000028 ], [ -120.380414540999936, 50.644304438000098 ], [ -120.382533822999932, 50.644352091000073 ], [ -120.382518839999989, 50.644621601000047 ], [ -120.382942699999958, 50.644631127000117 ], [ -120.382901394999948, 50.645374212000064 ], [ -120.38060567299999, 50.644947888000097 ], [ -120.379678857999963, 50.644775744000071 ], [ -120.378695715999953, 50.644686643000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85778000", "BldgCostT": "56420000", "sL_LossRatio": "0.999995753362968", "sL_AssetLoss": "9237.89806", "sL_BldgLoss": "9237.85883", "sL_StrLoss": "9237.60373", "sL_NStrLoss": "0.2551", "sL_ContLoss": "0.03923", "geom_point": "0101000020E6100000F4BF541A4E1C5EC07B2AAFAE6D544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.442382189999975, 50.663134285000083 ], [ -120.442476058999915, 50.66237696000006 ], [ -120.442213478999918, 50.662363850000126 ], [ -120.44241587, 50.660730979000078 ], [ -120.441083052999915, 50.660664421000014 ], [ -120.441418503999984, 50.657958406000013 ], [ -120.439091968999961, 50.657842187000043 ], [ -120.439082174999925, 50.658022146000064 ], [ -120.439930173999969, 50.658040788000079 ], [ -120.439886189000035, 50.658849352000047 ], [ -120.436918146999957, 50.658784075000064 ], [ -120.43697520399995, 50.657736404000076 ], [ -120.436223668999972, 50.657698837000069 ], [ -120.435822561999956, 50.657678785000023 ], [ -120.435963042999987, 50.656546600000119 ], [ -120.435422526999929, 50.656519576000022 ], [ -120.435866983999986, 50.652937477000094 ], [ -120.441509702999966, 50.653219464000053 ], [ -120.441418286999948, 50.653957022000057 ], [ -120.44232372499999, 50.654002243000079 ], [ -120.442151753999951, 50.655389883000069 ], [ -120.441939443999928, 50.657102911000038 ], [ -120.447170373999938, 50.657364017000056 ], [ -120.44696817099999, 50.658996903000116 ], [ -120.448300947999925, 50.659063390000071 ], [ -120.448154454999923, 50.660246593000089 ], [ -120.448417023999966, 50.660259689000071 ], [ -120.447973495999989, 50.663841807000097 ], [ -120.445979367999911, 50.66374232800009 ], [ -120.445731216999931, 50.665745507000089 ], [ -120.445641891999969, 50.666466541000013 ], [ -120.445618342999964, 50.666656628000077 ], [ -120.445527990999935, 50.666651240000093 ], [ -120.444663978999955, 50.666599719000125 ], [ -120.439980677, 50.666320290000044 ], [ -120.440000444, 50.666160899000019 ], [ -120.440388105999972, 50.663034706000126 ], [ -120.442382189999975, 50.663134285000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999988875177329", "sL_AssetLoss": "231.913809", "sL_BldgLoss": "231.911229", "sL_StrLoss": "231.9", "sL_NStrLoss": "0.011229", "sL_ContLoss": "0.00258", "geom_point": "0101000020E6100000E19CF096541D5EC01323CF1EFD544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.457037616999983, 50.663542573000065 ], [ -120.459581946999919, 50.663598094000101 ], [ -120.459547979, 50.664227237000034 ], [ -120.45953829099993, 50.664406670000062 ], [ -120.459179211999967, 50.664398837000078 ], [ -120.456993916999977, 50.664351146000072 ], [ -120.457037616999983, 50.663542573000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17068918", "BldgCostT": "11771668", "sL_LossRatio": "0.999996088866676", "sL_AssetLoss": "2137.48786", "sL_BldgLoss": "2137.4795", "sL_StrLoss": "2137.4", "sL_NStrLoss": "0.0795", "sL_ContLoss": "0.00836", "geom_point": "0101000020E6100000F93CD222D31C5EC0CF1FCB69EC534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.450763345999945, 50.653868912000114 ], [ -120.453429816999957, 50.654001840000056 ], [ -120.452986748999962, 50.657584004000043 ], [ -120.44734341099999, 50.657302599000019 ], [ -120.44751264199995, 50.655935839000065 ], [ -120.447786926999953, 50.653720456 ], [ -120.450763345999945, 50.653868912000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "67.7", "sL_BldgLoss": "67.7", "sL_StrLoss": "67.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000763D4D3DBD165EC04D1F91210D514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35471125299992, 50.633469197000039 ], [ -120.354741523999934, 50.632930189000092 ], [ -120.356012758999938, 50.632959060000061 ], [ -120.355997631999941, 50.633228564000056 ], [ -120.356845127999961, 50.633247804000106 ], [ -120.356844896999959, 50.633251920000099 ], [ -120.353856795999917, 50.633573794000036 ], [ -120.353863754999978, 50.633449941000016 ], [ -120.35471125299992, 50.633469197000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "320.2", "sL_BldgLoss": "320.2", "sL_StrLoss": "320.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DBCE31FF2C165EC0C3B802A74A514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.34576402199994, 50.635322632000069 ], [ -120.345613034999971, 50.635190795000014 ], [ -120.345090824999957, 50.634808269000075 ], [ -120.344107482999931, 50.634189083000123 ], [ -120.344337202999938, 50.63420076400012 ], [ -120.347294577999918, 50.634351099000057 ], [ -120.347223158999952, 50.63491793700004 ], [ -120.347416477999971, 50.634922342000031 ], [ -120.34740129799998, 50.635191844000097 ], [ -120.34782506199997, 50.635201497000068 ], [ -120.347816940999934, 50.635345712000088 ], [ -120.348660298999917, 50.635388564000017 ], [ -120.348649255999973, 50.635476230000044 ], [ -120.347163122, 50.636101407000098 ], [ -120.347086664999907, 50.636133562000076 ], [ -120.346915991999978, 50.636183429000091 ], [ -120.346731228, 50.636283094000142 ], [ -120.34665788199996, 50.636189257000098 ], [ -120.346315279999928, 50.635836116000107 ], [ -120.34611156099993, 50.635626162000115 ], [ -120.34576402199994, 50.635322632000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17428250", "BldgCostT": "11810000", "sL_LossRatio": "0.962665424227728", "sL_AssetLoss": "2364.527738", "sL_BldgLoss": "2276.249098", "sL_StrLoss": "2244.008798", "sL_NStrLoss": "32.2403", "sL_ContLoss": "88.27864", "geom_point": "0101000020E610000058CE7BEF31195EC030E0C03F804F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.391077459999934, 50.619168155000054 ], [ -120.396715659999984, 50.619452420000101 ], [ -120.396268414999938, 50.623034505000092 ], [ -120.39062977, 50.622750219000082 ], [ -120.391077459999934, 50.619168155000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "129.7", "sL_BldgLoss": "129.7", "sL_StrLoss": "129.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A411EC93E185EC035CFB63FBC514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.378913136, 50.639654791000055 ], [ -120.378079641999932, 50.637235876000048 ], [ -120.378685361999899, 50.637249512000039 ], [ -120.378670361999966, 50.63751902100006 ], [ -120.379094155999951, 50.637528560000121 ], [ -120.379004159999937, 50.639145616000107 ], [ -120.37942796899992, 50.639155153000047 ], [ -120.379367976999944, 50.640233192000103 ], [ -120.37911049199991, 50.640227397000096 ], [ -120.378913136, 50.639654791000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18543751", "BldgCostT": "12525001", "sL_LossRatio": "0.999837572112821", "sL_AssetLoss": "3233.8043", "sL_BldgLoss": "3233.27904", "sL_StrLoss": "3231.6", "sL_NStrLoss": "1.67904", "sL_ContLoss": "0.52526", "geom_point": "0101000020E6100000074FCF58071E5EC0414EF3E98C524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.466598436999945, 50.642993970000127 ], [ -120.472240099999965, 50.643274406000081 ], [ -120.471798636, 50.646856690000028 ], [ -120.466156526999924, 50.646576234000101 ], [ -120.466598436999945, 50.642993970000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "64.8", "sL_BldgLoss": "64.8", "sL_StrLoss": "64.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002970575469175EC07FBDA17412514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.366577192999927, 50.633722736000074 ], [ -120.364904748999905, 50.63328083100005 ], [ -120.364911465999938, 50.633160774000046 ], [ -120.366182717999976, 50.633189535000085 ], [ -120.366167648999976, 50.633459041000023 ], [ -120.366591401, 50.633468625000091 ], [ -120.366577192999927, 50.633722736000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66079001", "BldgCostT": "43570001", "sL_LossRatio": "0.999844911542545", "sL_AssetLoss": "8865.71459", "sL_BldgLoss": "8864.33962", "sL_StrLoss": "8858.72932", "sL_NStrLoss": "5.6103", "sL_ContLoss": "1.37497", "geom_point": "0101000020E6100000FE9B1F9806155EC0E6F2DDB59D4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.327894851999957, 50.623284803000097 ], [ -120.327170076999977, 50.623238817000058 ], [ -120.32630342299997, 50.623226138000042 ], [ -120.326173166999965, 50.623233773000081 ], [ -120.325563089999889, 50.623269465000057 ], [ -120.32465022299999, 50.623385373000055 ], [ -120.324125209999963, 50.623452005000061 ], [ -120.323871861999976, 50.623484173000108 ], [ -120.32329702599999, 50.623486363000055 ], [ -120.322891317999975, 50.623438600000092 ], [ -120.322966546999936, 50.62284395000006 ], [ -120.321089819999955, 50.622748120000061 ], [ -120.321416088999953, 50.620169748000066 ], [ -120.321273350999903, 50.620162457000056 ], [ -120.321262227999938, 50.620250358000135 ], [ -120.320358844999987, 50.620204217000079 ], [ -120.32034299299994, 50.620329480000066 ], [ -120.320019494999968, 50.62031295500001 ], [ -120.320020423999978, 50.620299013000128 ], [ -120.319966401999963, 50.619761824000115 ], [ -120.319882857999986, 50.619446636000092 ], [ -120.319769932999932, 50.619274134000122 ], [ -120.319660414999973, 50.619106870000081 ], [ -120.319391212999946, 50.618695890000055 ], [ -120.319282326999883, 50.618529637000108 ], [ -120.319783928999982, 50.618518735000123 ], [ -120.321478193999951, 50.618481888000119 ], [ -120.326261935999938, 50.618377667000075 ], [ -120.326751966999922, 50.617988951000093 ], [ -120.328611738999925, 50.61803163700008 ], [ -120.328969101999974, 50.618383889000057 ], [ -120.329302752000032, 50.61838128800008 ], [ -120.32968467099991, 50.618383488000084 ], [ -120.329645160999974, 50.619080750000073 ], [ -120.329626833999981, 50.61940417200001 ], [ -120.329828587999884, 50.619408799000084 ], [ -120.330050447999923, 50.619413887000078 ], [ -120.33003029799994, 50.619769539000103 ], [ -120.330019908999958, 50.619952885000046 ], [ -120.330134283999939, 50.619955509000114 ], [ -120.33044352899995, 50.619962600000065 ], [ -120.330415653999964, 50.620454638000076 ], [ -120.330382459999967, 50.621040597000047 ], [ -120.326990105, 50.62096276700008 ], [ -120.326890744999943, 50.62174877000006 ], [ -120.330309458999963, 50.621923139000096 ], [ -120.33029232, 50.62205879900003 ], [ -120.331531311, 50.622121967000062 ], [ -120.331759520999981, 50.622133600000069 ], [ -120.33174285599992, 50.622265544000058 ], [ -120.332728296999932, 50.622315773000146 ], [ -120.332705197999985, 50.622498685000082 ], [ -120.333412986999988, 50.622534756000022 ], [ -120.333408603999914, 50.622569473000048 ], [ -120.337491153999935, 50.622777445000082 ], [ -120.33744859299992, 50.62311474200002 ], [ -120.337595873999945, 50.623122242000164 ], [ -120.337143882999968, 50.626704073000056 ], [ -120.336809326999969, 50.626687037000089 ], [ -120.336732599999962, 50.627294982000066 ], [ -120.335847300999944, 50.627249895000055 ], [ -120.335801477999922, 50.627612903000106 ], [ -120.334256639999978, 50.627534210000121 ], [ -120.33405974499999, 50.627176916000117 ], [ -120.333633203999966, 50.62525182500007 ], [ -120.333523710999927, 50.624905579000036 ], [ -120.333403933999946, 50.624775515000103 ], [ -120.333131954999942, 50.624480062000089 ], [ -120.33300386099998, 50.624359989000048 ], [ -120.332669664999955, 50.624197865000042 ], [ -120.332264889999976, 50.624088906000033 ], [ -120.331824809999915, 50.624002361000073 ], [ -120.331429709999952, 50.623924667000082 ], [ -120.32900492899995, 50.623447763000101 ], [ -120.327894851999957, 50.623284803000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "192.7", "sL_BldgLoss": "192.7", "sL_StrLoss": "192.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000069F59BAAB7185EC00F71DEC59C524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.385440960999944, 50.645496782000073 ], [ -120.38548586099995, 50.644688251000098 ], [ -120.386757443999912, 50.644716791000057 ], [ -120.386742485999903, 50.644986302000049 ], [ -120.387590214999975, 50.645005322000102 ], [ -120.387545351999904, 50.645813853000014 ], [ -120.387121478999958, 50.645804345000037 ], [ -120.387106523999975, 50.646073855000083 ], [ -120.386682648999951, 50.646064344000131 ], [ -120.386681992999925, 50.646076157000067 ], [ -120.385880033999939, 50.645927276000116 ], [ -120.383302850999968, 50.645448760000079 ], [ -120.385440960999944, 50.645496782000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "136.6", "sL_BldgLoss": "136.6", "sL_StrLoss": "136.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B78BD4D22185EC0095E80BF10524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.376923555999952, 50.640714349000092 ], [ -120.377652785999913, 50.640552685000046 ], [ -120.37764268699999, 50.640734045000031 ], [ -120.378066509999911, 50.640743589000081 ], [ -120.378021489999981, 50.641552116000128 ], [ -120.375923474, 50.641504859000158 ], [ -120.37591712699999, 50.641433832000089 ], [ -120.376036872, 50.641006584000088 ], [ -120.376923555999952, 50.640714349000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "244903583", "BldgCostT": "165218333", "sL_LossRatio": "0.999978456595995", "sL_AssetLoss": "30589.037825", "sL_BldgLoss": "30588.378833", "sL_StrLoss": "30585.640933", "sL_NStrLoss": "2.7379", "sL_ContLoss": "0.658992", "geom_point": "0101000020E61000007D49CE4FD2195EC071E30E822B544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.420816036999938, 50.665992778000053 ], [ -120.420816503999973, 50.665984260000045 ], [ -120.420671943999977, 50.665981059000039 ], [ -120.420648991999926, 50.665979194000073 ], [ -120.419972877999939, 50.665883369000071 ], [ -120.419980293999984, 50.665748151000074 ], [ -120.420010235999911, 50.665202108000074 ], [ -120.419163420999965, 50.665159656000107 ], [ -120.41914981799999, 50.665407654000042 ], [ -120.418725758999955, 50.665398257000064 ], [ -120.418716782999951, 50.665561870000033 ], [ -120.418710972000014, 50.665667773000067 ], [ -120.418403744999964, 50.665660964000011 ], [ -120.417904590999981, 50.665590210000062 ], [ -120.417446992999928, 50.66549011500009 ], [ -120.417453582999912, 50.665370056 ], [ -120.417029525999979, 50.665360653000079 ], [ -120.417035215999988, 50.665257 ], [ -120.416186785999912, 50.665214445000032 ], [ -120.416055537999981, 50.665185733000072 ], [ -120.415665387999937, 50.665100392000078 ], [ -120.407809018999899, 50.663066015000069 ], [ -120.404086235999927, 50.662179607999988 ], [ -120.400000037999959, 50.66123646700008 ], [ -120.398978559999961, 50.661000678000086 ], [ -120.398765047999987, 50.66095139500009 ], [ -120.398651781999959, 50.660925275000103 ], [ -120.398564936999946, 50.660905267000039 ], [ -120.39586213599992, 50.660266389000114 ], [ -120.394762986999979, 50.659925280000031 ], [ -120.394420251999989, 50.659818931000046 ], [ -120.393556582999935, 50.659436617000054 ], [ -120.393045743999949, 50.659127911999988 ], [ -120.392390762999952, 50.658620913000021 ], [ -120.391917850999988, 50.658194389000116 ], [ -120.39071448899989, 50.657109108000071 ], [ -120.390175477999961, 50.656731395000094 ], [ -120.389799182, 50.656505114000041 ], [ -120.389281180999916, 50.656253721000041 ], [ -120.38875907299996, 50.656047200000081 ], [ -120.388238421, 50.655884969000041 ], [ -120.388069066999947, 50.655832208000092 ], [ -120.387116486999957, 50.655617391000121 ], [ -120.384335702, 50.65507159100008 ], [ -120.383488901999939, 50.654828793000071 ], [ -120.382397680999944, 50.654451200000075 ], [ -120.382232329999937, 50.654386169000063 ], [ -120.380571283000023, 50.653732718000043 ], [ -120.379156164999969, 50.653210607000076 ], [ -120.379027202999978, 50.653163612000078 ], [ -120.379156307999963, 50.652994361000061 ], [ -120.379196871999923, 50.652942331000112 ], [ -120.379229419999959, 50.652900753000033 ], [ -120.379745344999932, 50.652241299000067 ], [ -120.380072438999932, 50.651823178000129 ], [ -120.38020297199995, 50.651857705000062 ], [ -120.38147380199996, 50.652228289000099 ], [ -120.381581991999923, 50.652259868000051 ], [ -120.3824825519999, 50.652527025000076 ], [ -120.383269756999965, 50.652781212000043 ], [ -120.383655013999956, 50.652946657000065 ], [ -120.383931284999932, 50.653056765000066 ], [ -120.384351603999974, 50.652488321000085 ], [ -120.384627823999963, 50.652494525000037 ], [ -120.384597872999919, 50.653033545 ], [ -120.385021809999984, 50.653043064000023 ], [ -120.384998021999976, 50.653471215000089 ], [ -120.384991862999954, 50.653582084000071 ], [ -120.385661434999975, 50.653597117000082 ], [ -120.386687627999905, 50.653620148000122 ], [ -120.386702591999907, 50.653350637000102 ], [ -120.387974409999984, 50.653379169000061 ], [ -120.387989365999942, 50.653109658000098 ], [ -120.390956935999924, 50.653176176000059 ], [ -120.390941997, 50.653445688000112 ], [ -120.391789880999951, 50.65346467900013 ], [ -120.391774944999923, 50.653734191000048 ], [ -120.392622833999937, 50.653753177000119 ], [ -120.392607905999981, 50.654022687000072 ], [ -120.393031851999979, 50.654032178000172 ], [ -120.393016924999984, 50.6543016890001 ], [ -120.393440874999939, 50.654311178000086 ], [ -120.393425948999962, 50.65458069000001 ], [ -120.39469780899995, 50.65460914900008 ], [ -120.394727643999914, 50.654070124000086 ], [ -120.394303695999895, 50.654060640000054 ], [ -120.39431861499996, 50.653791129000084 ], [ -120.393470724999958, 50.653772156000095 ], [ -120.393485649999946, 50.65350264300011 ], [ -120.392637764999975, 50.653483664000071 ], [ -120.392667622999923, 50.652944641000033 ], [ -120.392243684999954, 50.65293515000009 ], [ -120.392363131, 50.650779057000072 ], [ -120.391939211999897, 50.650769565000097 ], [ -120.391969078000017, 50.650230542000031 ], [ -120.39154516399995, 50.650221049000038 ], [ -120.391575032, 50.649682026000114 ], [ -120.391151123999947, 50.649672530000011 ], [ -120.391180995999918, 50.649133508000048 ], [ -120.390757092999962, 50.649124011000055 ], [ -120.390772030999969, 50.648854499000052 ], [ -120.389076432999957, 50.648816498000102 ], [ -120.38909137899995, 50.648546987000088 ], [ -120.388243585999959, 50.648527977000057 ], [ -120.388228632999983, 50.648797487000081 ], [ -120.387099118999913, 50.648772151000053 ], [ -120.387695575999913, 50.647965317000086 ], [ -120.387959351999967, 50.647608490000039 ], [ -120.388004074999955, 50.647384589000104 ], [ -120.388099733999965, 50.646905674000074 ], [ -120.388757176999945, 50.646920417000089 ], [ -120.388712330999951, 50.647728950000051 ], [ -120.389136219999941, 50.647738454000049 ], [ -120.389121272999915, 50.648007965000019 ], [ -120.39293631000001, 50.648093431000042 ], [ -120.392861683999968, 50.649440990000151 ], [ -120.393285589999977, 50.649450480000105 ], [ -120.39327066599995, 50.649719991000104 ], [ -120.393694573999966, 50.649729478000026 ], [ -120.393679653999968, 50.649998990000086 ], [ -120.394103564999952, 50.650008477000021 ], [ -120.394088644999968, 50.650277989000045 ], [ -120.394512558999907, 50.650287474000081 ], [ -120.394542394, 50.649748450000118 ], [ -120.39539021299997, 50.64976741400006 ], [ -120.395434946999927, 50.648958877000027 ], [ -120.395858850999929, 50.648968357000108 ], [ -120.395873759999958, 50.648698845000048 ], [ -120.397569364000034, 50.648736746000097 ], [ -120.39758426299997, 50.648467234000108 ], [ -120.399279859999965, 50.648505111000105 ], [ -120.399250080999977, 50.64904413800015 ], [ -120.399673985999968, 50.649053603000063 ], [ -120.399659099999937, 50.649323117000073 ], [ -120.400083005999988, 50.649332581000131 ], [ -120.40006812299994, 50.649602094000102 ], [ -120.40049203300002, 50.649611557000163 ], [ -120.400477149999972, 50.649881070000042 ], [ -120.400901061999917, 50.649890532000022 ], [ -120.400886181999923, 50.650160046000067 ], [ -120.401310097999925, 50.650169505000086 ], [ -120.401295218999962, 50.650439018000029 ], [ -120.402143054999954, 50.650457934000059 ], [ -120.402128181999942, 50.650727448000062 ], [ -120.402976022999923, 50.650746357000124 ], [ -120.402961154999957, 50.651015872000102 ], [ -120.40338507899996, 50.651025324000067 ], [ -120.403370211, 50.651294837000108 ], [ -120.403794138999942, 50.651304289000088 ], [ -120.403779272999955, 50.65157380200003 ], [ -120.404203202999938, 50.651583252000123 ], [ -120.404114023999924, 50.653200336000026 ], [ -120.404537968999989, 50.653209785000115 ], [ -120.404523105999942, 50.653479299000026 ], [ -120.404947052999958, 50.65348874600005 ], [ -120.40493219399994, 50.653758261000071 ], [ -120.406204041999928, 50.653786593000035 ], [ -120.406189189999964, 50.654056107000073 ], [ -120.406613142999959, 50.654065549000038 ], [ -120.406598291999927, 50.654335062000079 ], [ -120.407022246999986, 50.654344502000065 ], [ -120.406948006999954, 50.655692074000072 ], [ -120.406524037999986, 50.655682635000105 ], [ -120.406509187999944, 50.655952149000072 ], [ -120.40608521799993, 50.655942707000037 ], [ -120.40607036399993, 50.656212221000068 ], [ -120.405222419999959, 50.656193334000058 ], [ -120.405207560999898, 50.656462847000114 ], [ -120.403511669999958, 50.656425051000099 ], [ -120.403526539, 50.656155537000046 ], [ -120.402678596999962, 50.656136631000045 ], [ -120.402604226999955, 50.657484198000112 ], [ -120.403028208999928, 50.657493653000088 ], [ -120.403013335999901, 50.657763167000027 ], [ -120.403437321, 50.657772620000131 ], [ -120.403422451999958, 50.658042134000013 ], [ -120.404270425999968, 50.658061035000102 ], [ -120.404255560999914, 50.658330550000052 ], [ -120.404679549999983, 50.658339998000045 ], [ -120.404664687999912, 50.658609512000048 ], [ -120.405088678999931, 50.658618959000087 ], [ -120.405029234999972, 50.65969701500007 ], [ -120.404605232000023, 50.659687567000041 ], [ -120.404603962999929, 50.659710574000059 ], [ -120.40753929899995, 50.659858104000072 ], [ -120.407402587999982, 50.660954199000081 ], [ -120.411812430999944, 50.661175690000114 ], [ -120.411703467999956, 50.66204995800004 ], [ -120.411793791999955, 50.662054492000031 ], [ -120.411748683999946, 50.66241641600007 ], [ -120.412085261999891, 50.662433313000079 ], [ -120.412103856, 50.662284110000023 ], [ -120.412118737999918, 50.66201351200008 ], [ -120.41213752699997, 50.662013929000096 ], [ -120.412212710999952, 50.661410645000061 ], [ -120.413422171999983, 50.661471356000085 ], [ -120.413435328999967, 50.661231991000108 ], [ -120.408517234999962, 50.660985033000038 ], [ -120.408667747999942, 50.65977802500003 ], [ -120.40757325499996, 50.65975366900004 ], [ -120.407632641999967, 50.658675610000046 ], [ -120.406784655, 50.658656733000072 ], [ -120.406814355999956, 50.658117704000084 ], [ -120.405542390999955, 50.658089376000099 ], [ -120.405631534999969, 50.656472293000014 ], [ -120.407327433, 50.656510057000055 ], [ -120.407312585999975, 50.65677957200004 ], [ -120.407736562999929, 50.656789008000032 ], [ -120.407692026999882, 50.657597552000041 ], [ -120.408936178999966, 50.657625239000048 ], [ -120.408963881999966, 50.657403061000075 ], [ -120.414606990999957, 50.657686407000071 ], [ -120.414498377999962, 50.658558381000063 ], [ -120.414855383999949, 50.658566306000083 ], [ -120.414840577999925, 50.658835822000057 ], [ -120.415264577999935, 50.658845233000079 ], [ -120.415205363999917, 50.659923297000034 ], [ -120.414330774999925, 50.659903884000073 ], [ -120.414230206999932, 50.660711185000082 ], [ -120.415584965999983, 50.660741255000048 ], [ -120.415540557999989, 50.661549803000106 ], [ -120.414544975999945, 50.661527706000065 ], [ -120.415962406999938, 50.661598826000052 ], [ -120.415979382, 50.661289694000068 ], [ -120.417251445999938, 50.661317909000104 ], [ -120.417243698999968, 50.661459034000053 ], [ -120.421886695999959, 50.661691817000055 ], [ -120.421619029999988, 50.663843275000076 ], [ -120.422206832999947, 50.663856287000087 ], [ -120.422221599999901, 50.663586769000105 ], [ -120.424341817999945, 50.663633674000017 ], [ -120.424327065999989, 50.663903192000127 ], [ -120.42559920799998, 50.663931317000035 ], [ -120.42556971399992, 50.664470353000063 ], [ -120.426417819999969, 50.664489096000118 ], [ -120.426432561999945, 50.664219578000072 ], [ -120.427704713999944, 50.664247680000067 ], [ -120.427719449, 50.663978161000095 ], [ -120.428143496999937, 50.663987525000067 ], [ -120.428158227999958, 50.663718007000064 ], [ -120.42985441699993, 50.663755447000078 ], [ -120.429869138999919, 50.663485928000114 ], [ -120.431565320999965, 50.663523345000101 ], [ -120.43156462599994, 50.663536087000047 ], [ -120.431521183999948, 50.664331902000164 ], [ -120.430249025999927, 50.664303842000102 ], [ -120.430234303999953, 50.664573360000112 ], [ -120.429386195999911, 50.664554647000031 ], [ -120.429356744999907, 50.665093683000052 ], [ -120.431901103999934, 50.665149811000113 ], [ -120.43186891, 50.665739664000085 ], [ -120.431860779999937, 50.665888595000112 ], [ -120.430705283999956, 50.665916114 ], [ -120.427617995, 50.665989615000122 ], [ -120.423617594999925, 50.666084705000053 ], [ -120.42209399499994, 50.6660967 ], [ -120.420816036999938, 50.665992778000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "73.7", "sL_BldgLoss": "73.7", "sL_StrLoss": "73.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B2F5DF3301D5EC0EA0F28F62B554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.455224302999952, 50.665670613000088 ], [ -120.455253939999949, 50.665122674000095 ], [ -120.45594021099997, 50.665137665000024 ], [ -120.457374282999965, 50.665168978000068 ], [ -120.457373881999956, 50.665176400000071 ], [ -120.457351128999989, 50.665597450000114 ], [ -120.456809997999983, 50.66539885500007 ], [ -120.456281228999899, 50.665570276000089 ], [ -120.455400431999976, 50.66585579100007 ], [ -120.455211673999926, 50.665904100000084 ], [ -120.455224302999952, 50.665670613000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11150334", "BldgCostT": "7193334", "sL_LossRatio": "0.925411725493513", "sL_AssetLoss": "813.800834", "sL_BldgLoss": "753.100834", "sL_StrLoss": "731.000834", "sL_NStrLoss": "22.1", "sL_ContLoss": "60.7", "geom_point": "0101000020E6100000C9AAE72870185EC04C4CDDB66B534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.3824825519999, 50.652527025000076 ], [ -120.381581991999923, 50.652259868000051 ], [ -120.38147380199996, 50.652228289000099 ], [ -120.38020297199995, 50.651857705000062 ], [ -120.380072438999932, 50.651823178000129 ], [ -120.380077570999958, 50.651814755000075 ], [ -120.38039749, 50.651290809000088 ], [ -120.380435903999981, 50.650962041000149 ], [ -120.380357795999942, 50.650701331000022 ], [ -120.380156108999955, 50.650385649000015 ], [ -120.380171427999969, 50.650297150000014 ], [ -120.38011086399996, 50.650234230000073 ], [ -120.381356331999953, 50.650262241000092 ], [ -120.381296359999965, 50.651340278000063 ], [ -120.38172027899999, 50.651349809000074 ], [ -120.3817052859999, 50.651619319000076 ], [ -120.38212921, 50.651628848000122 ], [ -120.382114220999981, 50.651898357000029 ], [ -120.383809920999951, 50.651936463000091 ], [ -120.383779961999934, 50.652475482000028 ], [ -120.384351603999974, 50.652488321000085 ], [ -120.383931284999932, 50.653056765000066 ], [ -120.383655013999956, 50.652946657000065 ], [ -120.383269756999965, 50.652781212000043 ], [ -120.3824825519999, 50.652527025000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99999686260383", "sL_AssetLoss": "144.705984", "sL_BldgLoss": "144.70553", "sL_StrLoss": "144.7", "sL_NStrLoss": "0.00553", "sL_ContLoss": "0.000454", "geom_point": "0101000020E6100000423CD88345185EC0C0108B7B20534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.379318444999967, 50.649662012000078 ], [ -120.37852582299999, 50.649119176000028 ], [ -120.379296799999921, 50.649136528000035 ], [ -120.379281797, 50.649406036000123 ], [ -120.379705698999942, 50.64941557500002 ], [ -120.37967852099996, 50.649903835000018 ], [ -120.379318444999967, 50.649662012000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239841835", "BldgCostT": "151118335", "sL_LossRatio": "0.998226002220012", "sL_AssetLoss": "15558.080349", "sL_BldgLoss": "15530.480349", "sL_StrLoss": "15520.500349", "sL_NStrLoss": "9.98", "sL_ContLoss": "27.6", "geom_point": "0101000020E61000008B0DACFC15185EC07DE960DC91524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.384368629999955, 50.649520396000113 ], [ -120.384428527999916, 50.648442356000039 ], [ -120.381885164999971, 50.648385206000043 ], [ -120.38190015399999, 50.648115697000129 ], [ -120.380204593999949, 50.648077567000065 ], [ -120.380208309999887, 50.648010787000061 ], [ -120.38021958899995, 50.647808058000074 ], [ -120.379795702999957, 50.647798521 ], [ -120.379785678999937, 50.647978640000041 ], [ -120.379780702999952, 50.648068030000083 ], [ -120.379356813999962, 50.64805849200004 ], [ -120.379341810999904, 50.64832800100001 ], [ -120.378494027, 50.648308920000076 ], [ -120.378451732999949, 50.649068434000114 ], [ -120.377828268999949, 50.648641432000083 ], [ -120.377195072999911, 50.648144431000098 ], [ -120.376711471999982, 50.647763927000085 ], [ -120.376334636999985, 50.647467452000129 ], [ -120.375858406999967, 50.647281163000059 ], [ -120.374018696999912, 50.646638492000086 ], [ -120.372358290999912, 50.645878604000131 ], [ -120.372116791999957, 50.645767294000052 ], [ -120.371600496999974, 50.645640182000072 ], [ -120.371102983999933, 50.645567307000128 ], [ -120.37006009699995, 50.645473998000064 ], [ -120.369633606999955, 50.645389300000083 ], [ -120.369195803, 50.645236495000077 ], [ -120.368872798999973, 50.645062505000055 ], [ -120.36854831, 50.644820702000054 ], [ -120.368356395999982, 50.644608306000094 ], [ -120.367495562, 50.643794688000064 ], [ -120.367392221999935, 50.643696998000038 ], [ -120.367071285999913, 50.643393301000074 ], [ -120.366751417999936, 50.643024799000074 ], [ -120.366548388999917, 50.642662990000105 ], [ -120.366581310999919, 50.642175392000055 ], [ -120.366701582999951, 50.641906601000144 ], [ -120.366875320999952, 50.6417323370001 ], [ -120.367151388999929, 50.641455403000066 ], [ -120.367509802999976, 50.641257227000068 ], [ -120.367879591999952, 50.641114719000058 ], [ -120.368787672999957, 50.640890319000057 ], [ -120.369131167999939, 50.640777031000056 ], [ -120.369503052999931, 50.640584043000082 ], [ -120.369704452999883, 50.640675349000077 ], [ -120.369984121999906, 50.640742670000122 ], [ -120.370243462999895, 50.640756684000053 ], [ -120.370845254999949, 50.640760334000042 ], [ -120.370871712999957, 50.640760503000067 ], [ -120.371361509999986, 50.640758305000105 ], [ -120.37203130199994, 50.640770605000057 ], [ -120.373082500999942, 50.641146310000089 ], [ -120.373499114999959, 50.641230504000134 ], [ -120.373850091999941, 50.641250010000107 ], [ -120.374022094999958, 50.641236215000049 ], [ -120.374163192999987, 50.641129793000069 ], [ -120.375503771999931, 50.641041643000051 ], [ -120.375493533999972, 50.641225323000072 ], [ -120.375069707999927, 50.641215771000098 ], [ -120.375024635999978, 50.642024296000073 ], [ -120.374176968999919, 50.642005185000045 ], [ -120.374161940999954, 50.642274693000097 ], [ -120.374585775999961, 50.642284250000039 ], [ -120.374570748999986, 50.642553758000126 ], [ -120.374994586999932, 50.64256331200005 ], [ -120.374919460999962, 50.643910853000122 ], [ -120.376141023999963, 50.643938382000051 ], [ -120.376149707999929, 50.644035511 ], [ -120.376182614999976, 50.644090198000058 ], [ -120.376145954999956, 50.644748035000049 ], [ -120.376569814999982, 50.644757584000075 ], [ -120.376539779999916, 50.64529660000008 ], [ -120.376963643999929, 50.645306148000024 ], [ -120.376918596999985, 50.646114673000064 ], [ -120.377342468999984, 50.646124220000026 ], [ -120.377327455999975, 50.64639372900006 ], [ -120.377751328999963, 50.64640327400015 ], [ -120.377721306999945, 50.646942292000034 ], [ -120.37814518499998, 50.646951835000024 ], [ -120.378130175999942, 50.647221344000066 ], [ -120.379401820999959, 50.647249966000118 ], [ -120.379431823999965, 50.64671094800012 ], [ -120.379007948, 50.646701408000069 ], [ -120.37905295899999, 50.645892882000069 ], [ -120.379476827999966, 50.645902421000052 ], [ -120.37950683, 50.6453634020001 ], [ -120.379930695, 50.645372940000108 ], [ -120.379945692999939, 50.645103430000034 ], [ -120.378674103999984, 50.64507481400009 ], [ -120.378695715999953, 50.644686643000114 ], [ -120.379678857999963, 50.644775744000071 ], [ -120.38060567299999, 50.644947888000097 ], [ -120.382901394999948, 50.645374212000064 ], [ -120.382897756999952, 50.645439656000086 ], [ -120.383302850999968, 50.645448760000079 ], [ -120.385880033999939, 50.645927276000116 ], [ -120.386681992999925, 50.646076157000067 ], [ -120.386667688999964, 50.646333855000066 ], [ -120.386243812999922, 50.646324343000046 ], [ -120.386228850999942, 50.646593853000127 ], [ -120.387500485999936, 50.646622387000036 ], [ -120.387485530999982, 50.64689189700006 ], [ -120.388099733999965, 50.646905674000074 ], [ -120.388004074999955, 50.647384589000104 ], [ -120.387959351999967, 50.647608490000039 ], [ -120.387695575999913, 50.647965317000086 ], [ -120.387099118999913, 50.648772151000053 ], [ -120.386533039999904, 50.648759449000067 ], [ -120.386518077999966, 50.649028959000098 ], [ -120.386094177999937, 50.649019447000072 ], [ -120.386079212999903, 50.649288957000067 ], [ -120.385655309999976, 50.649279441000026 ], [ -120.385640343999967, 50.649548951000106 ], [ -120.384368629999955, 50.649520396000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134059249", "BldgCostT": "89884999", "sL_LossRatio": "0.97840394554922", "sL_AssetLoss": "6669.17748", "sL_BldgLoss": "6525.14956", "sL_StrLoss": "6472.71066", "sL_NStrLoss": "52.4389", "sL_ContLoss": "144.02792", "geom_point": "0101000020E61000005622B327FF175EC0BC85AE4420534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.37950043099994, 50.651664504000067 ], [ -120.37913114, 50.651632379000041 ], [ -120.377236304999926, 50.65163130600012 ], [ -120.37675300699999, 50.651579807000097 ], [ -120.376335423999976, 50.651491096000093 ], [ -120.37580921499999, 50.6513293020001 ], [ -120.375336287999957, 50.651071104000067 ], [ -120.374449402999915, 50.650457689000064 ], [ -120.374332029999962, 50.650399694000058 ], [ -120.373839890999989, 50.650156489000047 ], [ -120.372749759999948, 50.649670519000082 ], [ -120.37236929699999, 50.649500896000099 ], [ -120.370783604999957, 50.648926011000079 ], [ -120.37031050899999, 50.648850702000118 ], [ -120.3674557399999, 50.648760921000076 ], [ -120.365748092999951, 50.648707195000057 ], [ -120.365757215999977, 50.648522002000028 ], [ -120.365920312999975, 50.648341908000098 ], [ -120.366151612999928, 50.648195903000072 ], [ -120.366454416999943, 50.648101299000075 ], [ -120.36679567399996, 50.648050993000119 ], [ -120.367508227999934, 50.648063480000111 ], [ -120.369383202000023, 50.648096303000031 ], [ -120.371581803999931, 50.647960696000062 ], [ -120.372455800999958, 50.647906594000034 ], [ -120.374375580999981, 50.647787483000087 ], [ -120.37483870600002, 50.647738797000059 ], [ -120.375149326000013, 50.647672479000079 ], [ -120.375475193999989, 50.647541170000046 ], [ -120.375858406999967, 50.647281163000059 ], [ -120.376334636999985, 50.647467452000129 ], [ -120.376711471999982, 50.647763927000085 ], [ -120.377195072999911, 50.648144431000098 ], [ -120.377828268999949, 50.648641432000083 ], [ -120.378451732999949, 50.649068434000114 ], [ -120.378449002999943, 50.649117447000087 ], [ -120.37852582299999, 50.649119176000028 ], [ -120.379318444999967, 50.649662012000078 ], [ -120.37967852099996, 50.649903835000018 ], [ -120.379660695, 50.650224102000053 ], [ -120.38011086399996, 50.650234230000073 ], [ -120.380171427999969, 50.650297150000014 ], [ -120.380156108999955, 50.650385649000015 ], [ -120.380357795999942, 50.650701331000022 ], [ -120.380435903999981, 50.650962041000149 ], [ -120.38039749, 50.651290809000088 ], [ -120.380077570999958, 50.651814755000075 ], [ -120.380072438999932, 50.651823178000129 ], [ -120.37950043099994, 50.651664504000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "506243220", "BldgCostT": "330230413", "sL_LossRatio": "0.993584181333774", "sL_AssetLoss": "15212.400019", "sL_BldgLoss": "15114.800019", "sL_StrLoss": "15079.600019", "sL_NStrLoss": "35.2", "sL_ContLoss": "97.6", "geom_point": "0101000020E6100000AB8010037C175EC081A0824744534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.366706316999981, 50.652198067000022 ], [ -120.366238100999936, 50.652083364000056 ], [ -120.366233229999963, 50.652082588 ], [ -120.365748224999948, 50.652005381000023 ], [ -120.365268066999974, 50.651985584000052 ], [ -120.36315163299993, 50.652143324000114 ], [ -120.36312067799993, 50.652143120000119 ], [ -120.362225515999967, 50.652136947000017 ], [ -120.361603896999952, 50.652062614000073 ], [ -120.361585006999974, 50.652060358000071 ], [ -120.361428124999989, 50.65201789400006 ], [ -120.360819823999947, 50.651853248000087 ], [ -120.360806621999984, 50.651849684000069 ], [ -120.359989585999969, 50.65148387000005 ], [ -120.359759187999927, 50.651327911000102 ], [ -120.359731828999955, 50.651309377000089 ], [ -120.359716199999966, 50.651298784000069 ], [ -120.359402090999964, 50.651019718000043 ], [ -120.359075951999912, 50.650621994000112 ], [ -120.358835269999929, 50.65027545800011 ], [ -120.358575566, 50.649901476000089 ], [ -120.358490511999946, 50.649779038000041 ], [ -120.358394930999935, 50.649641355000085 ], [ -120.357950424, 50.649001304000095 ], [ -120.356726604999949, 50.647238854000108 ], [ -120.355998706999955, 50.646368346000024 ], [ -120.355783728999882, 50.646114110000042 ], [ -120.355985168999965, 50.646081095000085 ], [ -120.356061831999966, 50.646073471000122 ], [ -120.356327256999933, 50.646047083 ], [ -120.356656492999917, 50.646047558000113 ], [ -120.35680677, 50.646048865000097 ], [ -120.35727616, 50.64611953100011 ], [ -120.358438612999961, 50.646412787000038 ], [ -120.358592634999923, 50.646429604000041 ], [ -120.358626729999955, 50.646440889000104 ], [ -120.35905865899997, 50.646583918000069 ], [ -120.359463419999912, 50.646818902000071 ], [ -120.359659544999928, 50.646974829000051 ], [ -120.360107710999955, 50.647412923000061 ], [ -120.360291548999925, 50.647592617000058 ], [ -120.360843717999927, 50.648134284000044 ], [ -120.361103839999913, 50.64830064900007 ], [ -120.361427253999977, 50.648437812000054 ], [ -120.361704985999936, 50.648520384000051 ], [ -120.362350998999887, 50.648620672000085 ], [ -120.362469026999946, 50.648623800000102 ], [ -120.364208509999969, 50.648669716000029 ], [ -120.365748092999951, 50.648707195000057 ], [ -120.3674557399999, 50.648760921000076 ], [ -120.37031050899999, 50.648850702000118 ], [ -120.370783604999957, 50.648926011000079 ], [ -120.37236929699999, 50.649500896000099 ], [ -120.372749759999948, 50.649670519000082 ], [ -120.373839890999989, 50.650156489000047 ], [ -120.374332029999962, 50.650399694000058 ], [ -120.374449402999915, 50.650457689000064 ], [ -120.375336287999957, 50.651071104000067 ], [ -120.37580921499999, 50.6513293020001 ], [ -120.376335423999976, 50.651491096000093 ], [ -120.37675300699999, 50.651579807000097 ], [ -120.377236304999926, 50.65163130600012 ], [ -120.37913114, 50.651632379000041 ], [ -120.37950043099994, 50.651664504000067 ], [ -120.380072438999932, 50.651823178000129 ], [ -120.379745344999932, 50.652241299000067 ], [ -120.379229419999959, 50.652900753000033 ], [ -120.379196871999923, 50.652942331000112 ], [ -120.379156307999963, 50.652994361000061 ], [ -120.379027202999978, 50.653163612000078 ], [ -120.378324286999955, 50.652973091000028 ], [ -120.377282097999924, 50.652760010000122 ], [ -120.376371711000019, 50.652673393000086 ], [ -120.375111792999931, 50.652690895000092 ], [ -120.373651190999951, 50.652882896000143 ], [ -120.372256285999939, 50.653139404000058 ], [ -120.370806550999959, 50.653466607000077 ], [ -120.370488489999957, 50.653538412000053 ], [ -120.368854518999981, 50.653855910000047 ], [ -120.368604703999921, 50.653900886000031 ], [ -120.368485604999961, 50.653639897000041 ], [ -120.368464414999949, 50.653594161000072 ], [ -120.368329295999956, 50.653302144000129 ], [ -120.368170470999985, 50.653085895000139 ], [ -120.368001472999978, 50.652916970000064 ], [ -120.367527070000023, 50.652557725000129 ], [ -120.36705084, 50.65233718000006 ], [ -120.366706316999981, 50.652198067000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127484666", "BldgCostT": "82706666", "sL_LossRatio": "0.999989340501798", "sL_AssetLoss": "14056.94688", "sL_BldgLoss": "14056.79704", "sL_StrLoss": "14056.12114", "sL_NStrLoss": "0.6759", "sL_ContLoss": "0.14984", "geom_point": "0101000020E6100000C0E06090F0165EC0E1A72F532C544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.347231387999926, 50.662213693000069 ], [ -120.34689339699996, 50.661854087000094 ], [ -120.34640581499994, 50.66141928400004 ], [ -120.346230792999961, 50.661309480000057 ], [ -120.345642290999976, 50.660943444000083 ], [ -120.345564007999926, 50.660798890000095 ], [ -120.345049832999948, 50.660485303000023 ], [ -120.345300813999955, 50.66030789100008 ], [ -120.345556323000011, 50.660240698000031 ], [ -120.346072898, 50.660208393000069 ], [ -120.346356703999945, 50.660311100000087 ], [ -120.346713111999946, 50.66047968400003 ], [ -120.347000091999945, 50.66064985400007 ], [ -120.348109511999908, 50.661307599000054 ], [ -120.348369283999929, 50.661386597000067 ], [ -120.348657295999956, 50.66143360700007 ], [ -120.349024401999955, 50.661461315000054 ], [ -120.349128944999933, 50.661457606000106 ], [ -120.350558183999937, 50.661407110000027 ], [ -120.350688696999953, 50.661402495000047 ], [ -120.350973998999962, 50.661358415000088 ], [ -120.351267514, 50.66128229700012 ], [ -120.351632309999943, 50.661125096000085 ], [ -120.352424990999964, 50.660603012000067 ], [ -120.352891390999915, 50.660338203000052 ], [ -120.353296606999933, 50.660165095000124 ], [ -120.354118494999923, 50.659893954000069 ], [ -120.354645991999959, 50.65971990500001 ], [ -120.354748853999965, 50.659686227000066 ], [ -120.355122907999927, 50.659563794000121 ], [ -120.355613793999908, 50.659295787000126 ], [ -120.35595059399995, 50.659056113000076 ], [ -120.356219119999935, 50.658679635000041 ], [ -120.356255795999985, 50.658628209 ], [ -120.35643969299997, 50.658295094000053 ], [ -120.356589607, 50.657464616000084 ], [ -120.356779342999957, 50.657221460000073 ], [ -120.356915706999956, 50.657046666000028 ], [ -120.356950088999923, 50.657002592000048 ], [ -120.357083789999976, 50.656752494000081 ], [ -120.357194975999931, 50.656432811000101 ], [ -120.357260959999977, 50.656133585000092 ], [ -120.357363750999951, 50.655667297000079 ], [ -120.357492633999968, 50.655308865000109 ], [ -120.357727508999986, 50.654739528000043 ], [ -120.358182467999924, 50.654226414000078 ], [ -120.358647440999945, 50.653870586000075 ], [ -120.35918131899993, 50.653677766000037 ], [ -120.359675478999989, 50.653623023000065 ], [ -120.359815637999958, 50.653607499000067 ], [ -120.360135783999951, 50.653572052000037 ], [ -120.360237, 50.653636746000124 ], [ -120.36027337900002, 50.653742147000116 ], [ -120.36013970499998, 50.653879545000031 ], [ -120.359448163999929, 50.654208640000057 ], [ -120.359335244, 50.654350647000065 ], [ -120.359375074999932, 50.654507632000069 ], [ -120.359529372999944, 50.654635327000086 ], [ -120.359788163999923, 50.654722328000034 ], [ -120.359805906999966, 50.654724563000094 ], [ -120.36025633299991, 50.654781203000077 ], [ -120.360545620999986, 50.654738213000037 ], [ -120.361128596999933, 50.654504606000096 ], [ -120.36135641099996, 50.654386384000112 ], [ -120.361679998999946, 50.654308110000045 ], [ -120.361961319999949, 50.654295387000047 ], [ -120.362748812999953, 50.65437670600005 ], [ -120.36309130099994, 50.654340016000027 ], [ -120.363436300000018, 50.654249315000122 ], [ -120.363689010999934, 50.65412519900012 ], [ -120.363909896999985, 50.653903803000041 ], [ -120.364027094, 50.653693502000131 ], [ -120.364039500000018, 50.653482392000058 ], [ -120.363987512999969, 50.653285969000095 ], [ -120.365050120999939, 50.653064930000077 ], [ -120.36705084, 50.65233718000006 ], [ -120.367527070000023, 50.652557725000129 ], [ -120.368001472999978, 50.652916970000064 ], [ -120.368170470999985, 50.653085895000139 ], [ -120.368329295999956, 50.653302144000129 ], [ -120.368464414999949, 50.653594161000072 ], [ -120.368485604999961, 50.653639897000041 ], [ -120.368604703999921, 50.653900886000031 ], [ -120.366224320999919, 50.65433997000008 ], [ -120.36516211799993, 50.654602579 ], [ -120.364299120999974, 50.655008473000123 ], [ -120.36365529499993, 50.655443584000096 ], [ -120.363200792999962, 50.655840571000049 ], [ -120.36289957199989, 50.656322098000039 ], [ -120.362766040999986, 50.656319074000102 ], [ -120.362752716999964, 50.656556854 ], [ -120.362130875, 50.657550872000094 ], [ -120.362099188999963, 50.657601494000062 ], [ -120.361608201999942, 50.658265984000103 ], [ -120.361057003, 50.658799488000064 ], [ -120.359557093999967, 50.659730091000064 ], [ -120.359140810999946, 50.65991664900011 ], [ -120.356513271999944, 50.661094200000029 ], [ -120.35526669199993, 50.661488803000111 ], [ -120.355253459, 50.661492300000084 ], [ -120.354732093999971, 50.661630156000108 ], [ -120.354025067999942, 50.661701942000029 ], [ -120.353937432999942, 50.661710842000033 ], [ -120.349859422999955, 50.662124597000087 ], [ -120.347921855999971, 50.662264156000106 ], [ -120.347540983, 50.662291590000066 ], [ -120.34740868699997, 50.662298264000064 ], [ -120.347326661999901, 50.662302348000075 ], [ -120.347231387999926, 50.662213693000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177553833", "BldgCostT": "116613333", "sL_LossRatio": "0.999999811238973", "sL_AssetLoss": "17807.06567728", "sL_BldgLoss": "17807.062316", "sL_StrLoss": "17806.901906", "sL_NStrLoss": "0.16041", "sL_ContLoss": "0.00336128", "geom_point": "0101000020E610000033ACEAFE54165EC0FE7D944B42544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.345049832999948, 50.660485303000023 ], [ -120.344714886999938, 50.660271807000079 ], [ -120.344531396999983, 50.660154841000143 ], [ -120.344504442999934, 50.660137669000036 ], [ -120.344251700999962, 50.660018996000133 ], [ -120.344106359999955, 50.659950728000126 ], [ -120.343739652999929, 50.659841071000116 ], [ -120.34322333599999, 50.659769772000111 ], [ -120.342689676999939, 50.659733062000072 ], [ -120.342017044999963, 50.659686823000044 ], [ -120.34211608399994, 50.659126803000106 ], [ -120.342230774999962, 50.658949693000054 ], [ -120.342402573999919, 50.658791701000091 ], [ -120.342744978999946, 50.658610012000089 ], [ -120.342979976, 50.658557112000025 ], [ -120.342993396999944, 50.658554105000057 ], [ -120.342751455999974, 50.658133857000067 ], [ -120.342531124999951, 50.657751104000106 ], [ -120.342332404999979, 50.65741301100006 ], [ -120.342211414999923, 50.657334216000059 ], [ -120.342134451999954, 50.65728409500008 ], [ -120.342029831999923, 50.657215983000079 ], [ -120.34185542499992, 50.657102411000032 ], [ -120.341718405999956, 50.657013201000012 ], [ -120.341556799999978, 50.656775208000099 ], [ -120.341434917999976, 50.656222001000124 ], [ -120.341700218999961, 50.656197060000075 ], [ -120.342480814999973, 50.656123692000122 ], [ -120.342876474999983, 50.656048290000051 ], [ -120.343270809999979, 50.655938603000074 ], [ -120.34363201799998, 50.655776706000019 ], [ -120.343927003999923, 50.6556097100001 ], [ -120.344509311999929, 50.655934009000163 ], [ -120.345050188999949, 50.655393688000039 ], [ -120.345179286999937, 50.655304795000056 ], [ -120.345639399999968, 50.65513439100004 ], [ -120.345892591999956, 50.655468091000053 ], [ -120.346076615999962, 50.655608105000091 ], [ -120.34629581199999, 50.655727404000046 ], [ -120.34658952299999, 50.655818907000082 ], [ -120.346888792999948, 50.655865597000101 ], [ -120.34829401599994, 50.655880718000063 ], [ -120.349185486999943, 50.655890318000026 ], [ -120.349818639999953, 50.656001668000087 ], [ -120.351026861999969, 50.656214202000051 ], [ -120.351887071999968, 50.65642904700011 ], [ -120.352070420999979, 50.656429734000078 ], [ -120.35270437299998, 50.656432058000107 ], [ -120.353197150999947, 50.656433885000062 ], [ -120.353228157, 50.65642496100007 ], [ -120.353277253000016, 50.65641079800011 ], [ -120.353561031999945, 50.65631444300007 ], [ -120.35377074799996, 50.65624325700005 ], [ -120.354419279999917, 50.6559984310001 ], [ -120.35449689699999, 50.655969135000078 ], [ -120.356589607, 50.657464616000084 ], [ -120.35643969299997, 50.658295094000053 ], [ -120.356255795999985, 50.658628209 ], [ -120.356219119999935, 50.658679635000041 ], [ -120.35595059399995, 50.659056113000076 ], [ -120.355613793999908, 50.659295787000126 ], [ -120.355122907999927, 50.659563794000121 ], [ -120.354748853999965, 50.659686227000066 ], [ -120.354645991999959, 50.65971990500001 ], [ -120.354118494999923, 50.659893954000069 ], [ -120.353296606999933, 50.660165095000124 ], [ -120.352891390999915, 50.660338203000052 ], [ -120.352424990999964, 50.660603012000067 ], [ -120.351632309999943, 50.661125096000085 ], [ -120.351267514, 50.66128229700012 ], [ -120.350973998999962, 50.661358415000088 ], [ -120.350688696999953, 50.661402495000047 ], [ -120.350558183999937, 50.661407110000027 ], [ -120.349128944999933, 50.661457606000106 ], [ -120.349024401999955, 50.661461315000054 ], [ -120.348657295999956, 50.66143360700007 ], [ -120.348369283999929, 50.661386597000067 ], [ -120.348109511999908, 50.661307599000054 ], [ -120.347000091999945, 50.66064985400007 ], [ -120.346713111999946, 50.66047968400003 ], [ -120.346356703999945, 50.660311100000087 ], [ -120.346072898, 50.660208393000069 ], [ -120.345556323000011, 50.660240698000031 ], [ -120.345300813999955, 50.66030789100008 ], [ -120.345049832999948, 50.660485303000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134149023", "BldgCostT": "89969159", "sL_LossRatio": "1", "sL_AssetLoss": "8305", "sL_BldgLoss": "8305", "sL_StrLoss": "8305", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EF9259394B165EC0EF86E1E1C5534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.349818639999953, 50.656001668000087 ], [ -120.349185486999943, 50.655890318000026 ], [ -120.34829401599994, 50.655880718000063 ], [ -120.346888792999948, 50.655865597000101 ], [ -120.34658952299999, 50.655818907000082 ], [ -120.34629581199999, 50.655727404000046 ], [ -120.346076615999962, 50.655608105000091 ], [ -120.345892591999956, 50.655468091000053 ], [ -120.345639399999968, 50.65513439100004 ], [ -120.345391894999963, 50.654800993000052 ], [ -120.345089885999982, 50.654651392000055 ], [ -120.344713419999934, 50.6545746050001 ], [ -120.344515420999983, 50.654569005000063 ], [ -120.344520790999965, 50.654447597000043 ], [ -120.344465725999939, 50.654234672000072 ], [ -120.344451105999937, 50.654178189000042 ], [ -120.344276880999985, 50.653893601000043 ], [ -120.344261681999924, 50.653876943000057 ], [ -120.343971299999964, 50.653559102000095 ], [ -120.34343579499999, 50.653246211000123 ], [ -120.341275708999916, 50.652286500000088 ], [ -120.34151449299992, 50.652081483000103 ], [ -120.341861908999959, 50.651915282000076 ], [ -120.342187815999949, 50.651841787000123 ], [ -120.342764812999988, 50.651825162000058 ], [ -120.343185826, 50.651851969000063 ], [ -120.34405524899995, 50.652049349000087 ], [ -120.344487277999974, 50.652260670000032 ], [ -120.344517880999931, 50.652275634 ], [ -120.344864838999968, 50.652496043000021 ], [ -120.34518022099995, 50.652786925000036 ], [ -120.34553421199999, 50.653210443000049 ], [ -120.3456646399999, 50.653309254000064 ], [ -120.345851683999967, 50.65345095 ], [ -120.346074969999989, 50.653552340000019 ], [ -120.346198110999978, 50.653608255000059 ], [ -120.347025354999957, 50.653825097000087 ], [ -120.347307081999972, 50.653966465000117 ], [ -120.347813281, 50.654387802000045 ], [ -120.348208321999905, 50.654553854000078 ], [ -120.348605194999934, 50.654648797000071 ], [ -120.349008656, 50.654680118000037 ], [ -120.349618044999943, 50.654665986000026 ], [ -120.349889070999893, 50.654633996 ], [ -120.350050378, 50.654614955000106 ], [ -120.350419948999914, 50.654498831000062 ], [ -120.350470137999963, 50.654483074000105 ], [ -120.35079700599999, 50.654311328000126 ], [ -120.35103847299996, 50.654084758000067 ], [ -120.351377198999927, 50.653536931000112 ], [ -120.35198544, 50.653781001000048 ], [ -120.353169015999953, 50.654255996000082 ], [ -120.353697151999938, 50.654481037000032 ], [ -120.353891191999963, 50.654512111 ], [ -120.354542436999935, 50.654616468 ], [ -120.35534333799994, 50.654744778000108 ], [ -120.354424251999916, 50.655192688000092 ], [ -120.353985368999972, 50.6554065710001 ], [ -120.352028349999941, 50.656360217000056 ], [ -120.351887071999968, 50.65642904700011 ], [ -120.351026861999969, 50.656214202000051 ], [ -120.349818639999953, 50.656001668000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "307339748", "BldgCostT": "204669998", "sL_LossRatio": "0.9943685293245", "sL_AssetLoss": "14182.134171", "sL_BldgLoss": "14102.2678983", "sL_StrLoss": "14072.6209683", "sL_NStrLoss": "29.64693", "sL_ContLoss": "79.8662727", "geom_point": "0101000020E610000001580D57C1155EC0F7F48DBF1F544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.342445327999911, 50.662121474000067 ], [ -120.342331810999923, 50.66203050200005 ], [ -120.342101418999974, 50.662020097000031 ], [ -120.339758408999927, 50.661914298000085 ], [ -120.336986705999948, 50.661789067000051 ], [ -120.336993485999983, 50.6616692710001 ], [ -120.339113475999952, 50.661717726000084 ], [ -120.339128714000012, 50.661448226000033 ], [ -120.337856728, 50.661419159000026 ], [ -120.337932962, 50.660071662000107 ], [ -120.337508978999963, 50.660061970000122 ], [ -120.337524227999921, 50.65979247100006 ], [ -120.337100245999949, 50.659782778000064 ], [ -120.33711761099994, 50.659475923000095 ], [ -120.337130748000021, 50.659243779000121 ], [ -120.336706772999918, 50.659234084000033 ], [ -120.336722024999958, 50.658964585000092 ], [ -120.336298053999926, 50.658954889000057 ], [ -120.336313307999973, 50.658685390000088 ], [ -120.335889337999987, 50.658675692 ], [ -120.33590459499996, 50.658406194000065 ], [ -120.33548062899996, 50.658396495000012 ], [ -120.335511145999959, 50.657857497000109 ], [ -120.334663221999932, 50.657838095000059 ], [ -120.334693746999903, 50.657299097000127 ], [ -120.334269790999954, 50.657289394000124 ], [ -120.334300322999979, 50.656750396000049 ], [ -120.333876369, 50.656740692000056 ], [ -120.333937437999978, 50.655662698000121 ], [ -120.334785323999938, 50.6556821040001 ], [ -120.334800585999972, 50.655412605000045 ], [ -120.33522452599999, 50.655422307000023 ], [ -120.33528556, 50.654344311000024 ], [ -120.335415251999905, 50.654347278000067 ], [ -120.335464524999963, 50.654294963000012 ], [ -120.335503824999961, 50.654284463000039 ], [ -120.335724702, 50.654085292000033 ], [ -120.33574000199998, 50.653815012000081 ], [ -120.33603438599999, 50.65382174500013 ], [ -120.336169564999949, 50.653725127000065 ], [ -120.336179180999977, 50.653555210000086 ], [ -120.33638988199999, 50.653560028000058 ], [ -120.336613558999957, 50.65338017200007 ], [ -120.336627224999987, 50.653138670000082 ], [ -120.338372994999958, 50.652372229 ], [ -120.339015132999933, 50.651281258000061 ], [ -120.339223608999987, 50.651393597000045 ], [ -120.340264716999968, 50.651846604000099 ], [ -120.341275708999916, 50.652286500000088 ], [ -120.34343579499999, 50.653246211000123 ], [ -120.343971299999964, 50.653559102000095 ], [ -120.344261681999924, 50.653876943000057 ], [ -120.344276880999985, 50.653893601000043 ], [ -120.344451105999937, 50.654178189000042 ], [ -120.344465725999939, 50.654234672000072 ], [ -120.344520790999965, 50.654447597000043 ], [ -120.344515420999983, 50.654569005000063 ], [ -120.344713419999934, 50.6545746050001 ], [ -120.345089885999982, 50.654651392000055 ], [ -120.345391894999963, 50.654800993000052 ], [ -120.345639399999968, 50.65513439100004 ], [ -120.345179286999937, 50.655304795000056 ], [ -120.345050188999949, 50.655393688000039 ], [ -120.344509311999929, 50.655934009000163 ], [ -120.343927003999923, 50.6556097100001 ], [ -120.343130581999958, 50.65515919500011 ], [ -120.342647614999976, 50.654712005000093 ], [ -120.342475102999984, 50.654616692000019 ], [ -120.342195785999948, 50.654523197000046 ], [ -120.341873109999938, 50.654493303000038 ], [ -120.34124508299999, 50.654497397000121 ], [ -120.341056625999954, 50.654463767000031 ], [ -120.340997998999953, 50.654453312000044 ], [ -120.340952028999979, 50.654437647000037 ], [ -120.340702594999954, 50.654352599000035 ], [ -120.34043270799999, 50.654175040000077 ], [ -120.340064292999969, 50.653932702000091 ], [ -120.339006984999983, 50.654480891000027 ], [ -120.338128509999962, 50.654748910000102 ], [ -120.337910312999966, 50.654880207000112 ], [ -120.337529403999909, 50.655344691000103 ], [ -120.337026611999988, 50.655729188000116 ], [ -120.336915607999956, 50.655989408000018 ], [ -120.33693561399997, 50.656213886000067 ], [ -120.337353102999913, 50.656807921000109 ], [ -120.337501210999946, 50.657018588000021 ], [ -120.337504348999971, 50.65703832500003 ], [ -120.337536176999933, 50.657236895000025 ], [ -120.337543313999959, 50.657281213000061 ], [ -120.33732321599993, 50.657985879000115 ], [ -120.337274020999956, 50.65814338900006 ], [ -120.337271163999958, 50.658163610000074 ], [ -120.337222509999904, 50.658505792000021 ], [ -120.337274187000034, 50.658624606000039 ], [ -120.337404395999926, 50.658684395000115 ], [ -120.337591495999931, 50.658675912000021 ], [ -120.339031596999973, 50.658458098000025 ], [ -120.33903178499996, 50.658458586000066 ], [ -120.339086050999981, 50.658596103000065 ], [ -120.339089711, 50.658605306000091 ], [ -120.339109677999915, 50.658627563000053 ], [ -120.339161785999977, 50.658685619000053 ], [ -120.339286546999958, 50.658824697000043 ], [ -120.339352284999961, 50.658897998000064 ], [ -120.339594095999971, 50.659108506000052 ], [ -120.339739148999953, 50.659194264000057 ], [ -120.339771005000017, 50.659213093000091 ], [ -120.339924390999968, 50.659303790000145 ], [ -120.34052931, 50.659516591000049 ], [ -120.340903869999948, 50.659596912000112 ], [ -120.342017044999963, 50.659686823000044 ], [ -120.342689676999939, 50.659733062000072 ], [ -120.34322333599999, 50.659769772000111 ], [ -120.343739652999929, 50.659841071000116 ], [ -120.344106359999955, 50.659950728000126 ], [ -120.344251700999962, 50.660018996000133 ], [ -120.344504442999934, 50.660137669000036 ], [ -120.344531396999983, 50.660154841000143 ], [ -120.344714886999938, 50.660271807000079 ], [ -120.345049832999948, 50.660485303000023 ], [ -120.345564007999926, 50.660798890000095 ], [ -120.345642290999976, 50.660943444000083 ], [ -120.346230792999961, 50.661309480000057 ], [ -120.34640581499994, 50.66141928400004 ], [ -120.34689339699996, 50.661854087000094 ], [ -120.347231387999926, 50.662213693000069 ], [ -120.347326661999901, 50.662302348000075 ], [ -120.346886687999927, 50.662286069000118 ], [ -120.342445327999911, 50.662121474000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61791395", "BldgCostT": "37311524", "sL_LossRatio": "0.999994746798847", "sL_AssetLoss": "4757.09939", "sL_BldgLoss": "4757.0744", "sL_StrLoss": "4756.5144", "sL_NStrLoss": "0.56", "sL_ContLoss": "0.02499", "geom_point": "0101000020E61000001FE1AC6FBD155EC0B1A799C5F6534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.340064292999969, 50.653932702000091 ], [ -120.34043270799999, 50.654175040000077 ], [ -120.340702594999954, 50.654352599000035 ], [ -120.340952028999979, 50.654437647000037 ], [ -120.340997998999953, 50.654453312000044 ], [ -120.341056625999954, 50.654463767000031 ], [ -120.34124508299999, 50.654497397000121 ], [ -120.341873109999938, 50.654493303000038 ], [ -120.342195785999948, 50.654523197000046 ], [ -120.342475102999984, 50.654616692000019 ], [ -120.342647614999976, 50.654712005000093 ], [ -120.343130581999958, 50.65515919500011 ], [ -120.343927003999923, 50.6556097100001 ], [ -120.34363201799998, 50.655776706000019 ], [ -120.343270809999979, 50.655938603000074 ], [ -120.342876474999983, 50.656048290000051 ], [ -120.342480814999973, 50.656123692000122 ], [ -120.341700218999961, 50.656197060000075 ], [ -120.341434917999976, 50.656222001000124 ], [ -120.340753088999932, 50.656315317000036 ], [ -120.340370474999972, 50.656451513000043 ], [ -120.340156978999943, 50.656527486000108 ], [ -120.340110893999949, 50.656543904000038 ], [ -120.340066796999963, 50.656567196 ], [ -120.340012103999953, 50.656596103000041 ], [ -120.339706302999915, 50.656757694000071 ], [ -120.339432024999937, 50.656973503000074 ], [ -120.339334497, 50.657078060000103 ], [ -120.33926771199998, 50.65714964200005 ], [ -120.33919238299994, 50.657230453000118 ], [ -120.339151178999884, 50.657274591000032 ], [ -120.339032923999952, 50.657537202000093 ], [ -120.339026532999938, 50.657559907000135 ], [ -120.338955316999915, 50.657814410000071 ], [ -120.33894807199998, 50.657904223000095 ], [ -120.338942492999948, 50.657973435000038 ], [ -120.338942457999934, 50.657974047000046 ], [ -120.338935193999944, 50.658063896000058 ], [ -120.338944689999963, 50.658102736000117 ], [ -120.339031596999973, 50.658458098000025 ], [ -120.337591495999931, 50.658675912000021 ], [ -120.337404395999926, 50.658684395000115 ], [ -120.337274187000034, 50.658624606000039 ], [ -120.337222509999904, 50.658505792000021 ], [ -120.337271163999958, 50.658163610000074 ], [ -120.337274020999956, 50.65814338900006 ], [ -120.33732321599993, 50.657985879000115 ], [ -120.337543313999959, 50.657281213000061 ], [ -120.337536176999933, 50.657236895000025 ], [ -120.337504348999971, 50.65703832500003 ], [ -120.337501210999946, 50.657018588000021 ], [ -120.337353102999913, 50.656807921000109 ], [ -120.33693561399997, 50.656213886000067 ], [ -120.336915607999956, 50.655989408000018 ], [ -120.337026611999988, 50.655729188000116 ], [ -120.337529403999909, 50.655344691000103 ], [ -120.337910312999966, 50.654880207000112 ], [ -120.338128509999962, 50.654748910000102 ], [ -120.339006984999983, 50.654480891000027 ], [ -120.340064292999969, 50.653932702000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178276417", "BldgCostT": "121971667", "sL_LossRatio": "0.989567800211589", "sL_AssetLoss": "3442.376558", "sL_BldgLoss": "3406.464998", "sL_StrLoss": "3393.203898", "sL_NStrLoss": "13.2611", "sL_ContLoss": "35.91156", "geom_point": "0101000020E61000001BBE111FD0155EC000E1C7C13A544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.340753088999932, 50.656315317000036 ], [ -120.341434917999976, 50.656222001000124 ], [ -120.341556799999978, 50.656775208000099 ], [ -120.341718405999956, 50.657013201000012 ], [ -120.34185542499992, 50.657102411000032 ], [ -120.342029831999923, 50.657215983000079 ], [ -120.342134451999954, 50.65728409500008 ], [ -120.342211414999923, 50.657334216000059 ], [ -120.342332404999979, 50.65741301100006 ], [ -120.342531124999951, 50.657751104000106 ], [ -120.342751455999974, 50.658133857000067 ], [ -120.342993396999944, 50.658554105000057 ], [ -120.342979976, 50.658557112000025 ], [ -120.342744978999946, 50.658610012000089 ], [ -120.342402573999919, 50.658791701000091 ], [ -120.342230774999962, 50.658949693000054 ], [ -120.34211608399994, 50.659126803000106 ], [ -120.342017044999963, 50.659686823000044 ], [ -120.340903869999948, 50.659596912000112 ], [ -120.34052931, 50.659516591000049 ], [ -120.339924390999968, 50.659303790000145 ], [ -120.339771005000017, 50.659213093000091 ], [ -120.339739148999953, 50.659194264000057 ], [ -120.339594095999971, 50.659108506000052 ], [ -120.339352284999961, 50.658897998000064 ], [ -120.339286546999958, 50.658824697000043 ], [ -120.339161785999977, 50.658685619000053 ], [ -120.339109677999915, 50.658627563000053 ], [ -120.339089711, 50.658605306000091 ], [ -120.339086050999981, 50.658596103000065 ], [ -120.33903178499996, 50.658458586000066 ], [ -120.339031596999973, 50.658458098000025 ], [ -120.338944689999963, 50.658102736000117 ], [ -120.338935193999944, 50.658063896000058 ], [ -120.338942457999934, 50.657974047000046 ], [ -120.338942492999948, 50.657973435000038 ], [ -120.33894807199998, 50.657904223000095 ], [ -120.338955316999915, 50.657814410000071 ], [ -120.339026532999938, 50.657559907000135 ], [ -120.339032923999952, 50.657537202000093 ], [ -120.339151178999884, 50.657274591000032 ], [ -120.33919238299994, 50.657230453000118 ], [ -120.33926771199998, 50.65714964200005 ], [ -120.339334497, 50.657078060000103 ], [ -120.339432024999937, 50.656973503000074 ], [ -120.339706302999915, 50.656757694000071 ], [ -120.340012103999953, 50.656596103000041 ], [ -120.340066796999963, 50.656567196 ], [ -120.340110893999949, 50.656543904000038 ], [ -120.340156978999943, 50.656527486000108 ], [ -120.340370474999972, 50.656451513000043 ], [ -120.340753088999932, 50.656315317000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150055583", "BldgCostT": "100538333", "sL_LossRatio": "0.995245845664039", "sL_AssetLoss": "7004.400288", "sL_BldgLoss": "6971.100288", "sL_StrLoss": "6959.000288", "sL_NStrLoss": "12.1", "sL_ContLoss": "33.3", "geom_point": "0101000020E610000031C81B68D7155EC09B5497003A554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.338075118999939, 50.667101203000094 ], [ -120.338051492, 50.667063062000096 ], [ -120.338035150999943, 50.667036715000044 ], [ -120.337775258999955, 50.666617163000097 ], [ -120.337717695999913, 50.666524304000085 ], [ -120.33715289099996, 50.665959404000027 ], [ -120.336972911999922, 50.665810592000078 ], [ -120.33678747099998, 50.665592093000107 ], [ -120.336711406999925, 50.665441300000047 ], [ -120.336737305000028, 50.6649551020001 ], [ -120.337235799999959, 50.664965989000066 ], [ -120.337639908999932, 50.665060483000111 ], [ -120.338331169999918, 50.665343496000062 ], [ -120.338523037999948, 50.665385882000074 ], [ -120.338643414, 50.665412501000013 ], [ -120.33896187, 50.66544220100009 ], [ -120.339120590999983, 50.665423750000095 ], [ -120.339290512, 50.665404003000035 ], [ -120.339604725999934, 50.665322592000088 ], [ -120.339850992999942, 50.665204496000065 ], [ -120.340056187999949, 50.665041886000083 ], [ -120.340180876999966, 50.66481838800005 ], [ -120.33977619800001, 50.664695093000041 ], [ -120.339398419999938, 50.66448220500007 ], [ -120.339183593999934, 50.664170311000085 ], [ -120.339180909999953, 50.664152611000063 ], [ -120.339130808999982, 50.663824188000056 ], [ -120.339803864999936, 50.663958802000138 ], [ -120.34018737599996, 50.663989252000079 ], [ -120.341856184, 50.664411418000029 ], [ -120.343103895999931, 50.664822656000055 ], [ -120.344433386999938, 50.665266318000086 ], [ -120.34514889799999, 50.665581488000065 ], [ -120.346011600999958, 50.665859698000069 ], [ -120.34722679399998, 50.665928101000084 ], [ -120.347740592999955, 50.666114593 ], [ -120.347128092999966, 50.666524089000063 ], [ -120.346989611999931, 50.666664894000121 ], [ -120.346781413999963, 50.667021095000031 ], [ -120.346097393999941, 50.66692780700005 ], [ -120.345765816999943, 50.66679829400011 ], [ -120.345083102999965, 50.666333696000052 ], [ -120.342775906999975, 50.665701656000067 ], [ -120.342176503999951, 50.665534510000086 ], [ -120.341654588999972, 50.665596299000072 ], [ -120.341653857999987, 50.665649298000105 ], [ -120.341644993999935, 50.666269008000043 ], [ -120.341634800999941, 50.66671001400006 ], [ -120.342013675999922, 50.667251931000052 ], [ -120.341592231000021, 50.66740594900012 ], [ -120.341537272999958, 50.667426045000099 ], [ -120.341516881999979, 50.667425503000118 ], [ -120.340423478999952, 50.667396423000064 ], [ -120.338856887999981, 50.667230215000053 ], [ -120.33862286899992, 50.667191575000075 ], [ -120.338075118999939, 50.667101203000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158730167", "BldgCostT": "103156667", "sL_LossRatio": "0.995511632918712", "sL_AssetLoss": "14571.000726", "sL_BldgLoss": "14505.600726", "sL_StrLoss": "14482.000726", "sL_NStrLoss": "23.6", "sL_ContLoss": "65.4", "geom_point": "0101000020E6100000615CBBFE2E165EC0D620502683554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.340733714999899, 50.669010807000099 ], [ -120.34026202799997, 50.668956195000057 ], [ -120.339719394999932, 50.668969183000122 ], [ -120.339400184999974, 50.668921391000019 ], [ -120.339068586999986, 50.668836899000048 ], [ -120.338811816999979, 50.668711197000093 ], [ -120.338742606999958, 50.668652249000054 ], [ -120.338536171999976, 50.668476386000108 ], [ -120.338379100999958, 50.667999799 ], [ -120.338376139999966, 50.667990984 ], [ -120.33807816399991, 50.667110249000103 ], [ -120.338075118999939, 50.667101203000094 ], [ -120.33862286899992, 50.667191575000075 ], [ -120.338856887999981, 50.667230215000053 ], [ -120.340423478999952, 50.667396423000064 ], [ -120.341516881999979, 50.667425503000118 ], [ -120.341537272999958, 50.667426045000099 ], [ -120.341592231000021, 50.66740594900012 ], [ -120.342013675999922, 50.667251931000052 ], [ -120.341634800999941, 50.66671001400006 ], [ -120.341644993999935, 50.666269008000043 ], [ -120.341653857999987, 50.665649298000105 ], [ -120.341654588999972, 50.665596299000072 ], [ -120.342176503999951, 50.665534510000086 ], [ -120.342775906999975, 50.665701656000067 ], [ -120.345083102999965, 50.666333696000052 ], [ -120.345765816999943, 50.66679829400011 ], [ -120.346097393999941, 50.66692780700005 ], [ -120.346781413999963, 50.667021095000031 ], [ -120.346989611999931, 50.666664894000121 ], [ -120.347128092999966, 50.666524089000063 ], [ -120.347740592999955, 50.666114593 ], [ -120.348697207999962, 50.666726323000034 ], [ -120.349201784999963, 50.667116942000042 ], [ -120.349624917999947, 50.66737967500007 ], [ -120.349691683999964, 50.667421161000021 ], [ -120.349957337999967, 50.667510328000049 ], [ -120.35030657199999, 50.667533471000105 ], [ -120.350415829000013, 50.667511984000022 ], [ -120.350596737, 50.667479176 ], [ -120.350624320999941, 50.667474194000086 ], [ -120.350629436999938, 50.667473263000019 ], [ -120.351599021999931, 50.667080893000076 ], [ -120.351854687999946, 50.666832539000083 ], [ -120.351867854999938, 50.666836231000048 ], [ -120.352677571999934, 50.66706352500006 ], [ -120.353554040999953, 50.667083649000048 ], [ -120.354082563999953, 50.667069925000064 ], [ -120.35427790199995, 50.667063607000053 ], [ -120.354334007, 50.667643333000093 ], [ -120.354414913999932, 50.668479051000126 ], [ -120.354549176999953, 50.669870916000093 ], [ -120.354366898999942, 50.669875193000074 ], [ -120.353709324999926, 50.669886908000116 ], [ -120.353385337999939, 50.669888489000122 ], [ -120.350586002999975, 50.669902356000108 ], [ -120.350430549999956, 50.669851217000058 ], [ -120.350303245999896, 50.669757339000078 ], [ -120.349730951, 50.669058745000029 ], [ -120.349255259999964, 50.668776871000063 ], [ -120.348709297999932, 50.669108695000013 ], [ -120.348332532999919, 50.66924729900007 ], [ -120.348205886999949, 50.669328272000072 ], [ -120.347968209999962, 50.669219778000077 ], [ -120.347566071999964, 50.66908671600001 ], [ -120.34716033, 50.668982303000107 ], [ -120.345798671999958, 50.668845564000058 ], [ -120.345593191999953, 50.669686688000127 ], [ -120.344306181999968, 50.669678104000084 ], [ -120.343084871999963, 50.669622364000055 ], [ -120.342421915999921, 50.669586884000047 ], [ -120.341941946999967, 50.669474173000062 ], [ -120.341289622999952, 50.669219318000096 ], [ -120.341015135999953, 50.669088218000084 ], [ -120.340733714999899, 50.669010807000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118779895", "BldgCostT": "75611524", "sL_LossRatio": "0.999990063275968", "sL_AssetLoss": "10456.16238", "sL_BldgLoss": "10456.05848", "sL_StrLoss": "10455.02248", "sL_NStrLoss": "1.036", "sL_ContLoss": "0.1039", "geom_point": "0101000020E61000004FED0C535B165EC021B23831DE554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.351003978999969, 50.672727003000048 ], [ -120.350338662999945, 50.67254098800008 ], [ -120.349293291999956, 50.672699706000074 ], [ -120.34896166599999, 50.67270540400007 ], [ -120.348647664999973, 50.672638978000073 ], [ -120.348376027999933, 50.672540499000029 ], [ -120.347998684999979, 50.67234561600003 ], [ -120.347673000999947, 50.672090270000091 ], [ -120.347550244999965, 50.67190380300007 ], [ -120.347377518999963, 50.671922092000017 ], [ -120.347262336999947, 50.67151792300006 ], [ -120.347440197999987, 50.671492705000063 ], [ -120.347227716999939, 50.67139446200008 ], [ -120.346282408999912, 50.671041808000041 ], [ -120.34617619899997, 50.670908318000059 ], [ -120.346060727999927, 50.670854918000089 ], [ -120.345921884999896, 50.670852371000137 ], [ -120.34540623599996, 50.670752307000022 ], [ -120.345017372999948, 50.670716321000022 ], [ -120.34435383099999, 50.670730365000068 ], [ -120.343596228999957, 50.670746850000057 ], [ -120.343061812, 50.670817919000079 ], [ -120.342993044999957, 50.670654025000012 ], [ -120.342780822999941, 50.670512581000011 ], [ -120.342025787999916, 50.670193948000062 ], [ -120.341852688999936, 50.670046356000071 ], [ -120.341840579999939, 50.670019406000037 ], [ -120.341777297999954, 50.669878522000076 ], [ -120.341792622, 50.669678331000107 ], [ -120.341941946999967, 50.669474173000062 ], [ -120.342421915999921, 50.669586884000047 ], [ -120.343084871999963, 50.669622364000055 ], [ -120.344306181999968, 50.669678104000084 ], [ -120.345593191999953, 50.669686688000127 ], [ -120.345798671999958, 50.668845564000058 ], [ -120.34716033, 50.668982303000107 ], [ -120.347566071999964, 50.66908671600001 ], [ -120.347968209999962, 50.669219778000077 ], [ -120.348205886999949, 50.669328272000072 ], [ -120.348332532999919, 50.66924729900007 ], [ -120.348709297999932, 50.669108695000013 ], [ -120.349255259999964, 50.668776871000063 ], [ -120.349730951, 50.669058745000029 ], [ -120.350303245999896, 50.669757339000078 ], [ -120.350430549999956, 50.669851217000058 ], [ -120.350586002999975, 50.669902356000108 ], [ -120.353385337999939, 50.669888489000122 ], [ -120.353709324999926, 50.669886908000116 ], [ -120.354366898999942, 50.669875193000074 ], [ -120.354549176999953, 50.669870916000093 ], [ -120.354574348999918, 50.670156041000091 ], [ -120.354621822999917, 50.6707261970001 ], [ -120.354485712999946, 50.671299621000074 ], [ -120.354306831999949, 50.671660006000081 ], [ -120.354108897999978, 50.671934749000108 ], [ -120.353851521, 50.672219067000093 ], [ -120.353643001999927, 50.672402770000126 ], [ -120.353563801999954, 50.672472506000062 ], [ -120.353508124999948, 50.672521558000064 ], [ -120.353291045999981, 50.67267042900005 ], [ -120.35328507, 50.672674520000086 ], [ -120.353111698999953, 50.672793418000033 ], [ -120.352426033999947, 50.673140729000103 ], [ -120.351618912999982, 50.673380925000039 ], [ -120.351560206999963, 50.673283334000068 ], [ -120.351489311999927, 50.673169797000106 ], [ -120.351405807999967, 50.673032183000046 ], [ -120.351210902999952, 50.672832188000115 ], [ -120.351003978999969, 50.672727003000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "441353812", "BldgCostT": "307568191", "sL_LossRatio": "0.99240715630119", "sL_AssetLoss": "4477.900685", "sL_BldgLoss": "4443.900685", "sL_StrLoss": "4431.600685", "sL_NStrLoss": "12.3", "sL_ContLoss": "34", "geom_point": "0101000020E61000000183499638165EC0DBAF1ACF10564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.344644997999978, 50.672305965000113 ], [ -120.344955011999929, 50.67196486000006 ], [ -120.344922003999912, 50.671809976000063 ], [ -120.344805194999978, 50.671655351000069 ], [ -120.344784649, 50.671644105000041 ], [ -120.34458071799996, 50.67153221100007 ], [ -120.344291372999947, 50.671484168000092 ], [ -120.343953180000014, 50.671485922000066 ], [ -120.34363736499995, 50.671433831000066 ], [ -120.343415723999897, 50.67133335900008 ], [ -120.343246243999928, 50.671179644000091 ], [ -120.343061812, 50.670817919000079 ], [ -120.343596228999957, 50.670746850000057 ], [ -120.34435383099999, 50.670730365000068 ], [ -120.345017372999948, 50.670716321000022 ], [ -120.34540623599996, 50.670752307000022 ], [ -120.345921884999896, 50.670852371000137 ], [ -120.346060727999927, 50.670854918000089 ], [ -120.34617619899997, 50.670908318000059 ], [ -120.346282408999912, 50.671041808000041 ], [ -120.347227716999939, 50.67139446200008 ], [ -120.347440197999987, 50.671492705000063 ], [ -120.347262336999947, 50.67151792300006 ], [ -120.347377518999963, 50.671922092000017 ], [ -120.347550244999965, 50.67190380300007 ], [ -120.347673000999947, 50.672090270000091 ], [ -120.347998684999979, 50.67234561600003 ], [ -120.348376027999933, 50.672540499000029 ], [ -120.348647664999973, 50.672638978000073 ], [ -120.34896166599999, 50.67270540400007 ], [ -120.349293291999956, 50.672699706000074 ], [ -120.350338662999945, 50.67254098800008 ], [ -120.351003978999969, 50.672727003000048 ], [ -120.351210902999952, 50.672832188000115 ], [ -120.351405807999967, 50.673032183000046 ], [ -120.351489311999927, 50.673169797000106 ], [ -120.351560206999963, 50.673283334000068 ], [ -120.349835985999988, 50.673802317000089 ], [ -120.349414690999978, 50.673877355000066 ], [ -120.349147608999914, 50.67391157100009 ], [ -120.34871755799999, 50.673909551000129 ], [ -120.348132173999886, 50.673821281000116 ], [ -120.346852802999976, 50.673323758000087 ], [ -120.345474391999971, 50.672688743000037 ], [ -120.344644997999978, 50.672305965000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217122219", "BldgCostT": "139110412", "sL_LossRatio": "0.986926283947626", "sL_AssetLoss": "11176.89029", "sL_BldgLoss": "11030.7668", "sL_StrLoss": "10977.0239", "sL_NStrLoss": "53.7429", "sL_ContLoss": "146.12349", "geom_point": "0101000020E610000080AC540EF5155EC045FF786D3E564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.338971731999976, 50.674495812000011 ], [ -120.338967082999943, 50.673610602000039 ], [ -120.338958788999946, 50.672719915000094 ], [ -120.33895570199995, 50.671979892000131 ], [ -120.338953293999964, 50.67147057800004 ], [ -120.340253812999961, 50.671462885000082 ], [ -120.340445588999899, 50.671461760000106 ], [ -120.341250020999951, 50.671524269000145 ], [ -120.342141707999986, 50.671660626000083 ], [ -120.342998517999931, 50.671825796000078 ], [ -120.343567417999978, 50.671988090000056 ], [ -120.344544599999963, 50.67240360300007 ], [ -120.344644997999978, 50.672305965000113 ], [ -120.345474391999971, 50.672688743000037 ], [ -120.346852802999976, 50.673323758000087 ], [ -120.348132173999886, 50.673821281000116 ], [ -120.34871755799999, 50.673909551000129 ], [ -120.349147608999914, 50.67391157100009 ], [ -120.349414690999978, 50.673877355000066 ], [ -120.349418906, 50.673886275000029 ], [ -120.349452401999969, 50.673956670000067 ], [ -120.349465191999954, 50.673983557000028 ], [ -120.349512724999926, 50.674079685000031 ], [ -120.349689021999936, 50.67415712400004 ], [ -120.350077206999956, 50.6742209760001 ], [ -120.350918753999935, 50.674507882000043 ], [ -120.350717525999983, 50.67471850600004 ], [ -120.350502428999931, 50.67476879500007 ], [ -120.35019009799997, 50.674767398000078 ], [ -120.348013099999918, 50.674765901000157 ], [ -120.34788632199999, 50.674847800000052 ], [ -120.347828996999937, 50.674941299000089 ], [ -120.34843501499995, 50.675620897000087 ], [ -120.347969285999966, 50.675619807000054 ], [ -120.347661103999926, 50.675586114000019 ], [ -120.347535620999935, 50.675536739000059 ], [ -120.347384990999956, 50.675477495000116 ], [ -120.345843317999964, 50.674515199000083 ], [ -120.345503703999924, 50.67440419800004 ], [ -120.345222917999962, 50.674366498000012 ], [ -120.344876821999947, 50.674345832000014 ], [ -120.344320817999971, 50.674312591000074 ], [ -120.343145907999926, 50.674315094000086 ], [ -120.342651888999939, 50.674290909000064 ], [ -120.34196759699995, 50.6741633520001 ], [ -120.341953892, 50.674160798000081 ], [ -120.341957505999957, 50.674672797000056 ], [ -120.342578682999928, 50.674791808000101 ], [ -120.343830284999967, 50.674968916000054 ], [ -120.343678810999947, 50.675494707000105 ], [ -120.343442796999952, 50.675935091000042 ], [ -120.343227997999975, 50.676343197000129 ], [ -120.342290607999985, 50.676140602000054 ], [ -120.341978788999953, 50.676022914000043 ], [ -120.341410209999964, 50.675880506000077 ], [ -120.338978098999974, 50.67540091100004 ], [ -120.338971731999976, 50.674495812000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111557000", "BldgCostT": "70040000", "sL_LossRatio": "1", "sL_AssetLoss": "9565.4", "sL_BldgLoss": "9565.4", "sL_StrLoss": "9565.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F7000C393165EC0A194F70E8A564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.34788632199999, 50.674847800000052 ], [ -120.348013099999918, 50.674765901000157 ], [ -120.35019009799997, 50.674767398000078 ], [ -120.350502428999931, 50.67476879500007 ], [ -120.350717525999983, 50.67471850600004 ], [ -120.350918753999935, 50.674507882000043 ], [ -120.351945273999902, 50.674870895 ], [ -120.352142004999948, 50.674943900000045 ], [ -120.352436693999934, 50.674994886000057 ], [ -120.35295571099995, 50.675046516000094 ], [ -120.353393616999981, 50.675042600000026 ], [ -120.354384679999924, 50.675033291000027 ], [ -120.356695193999954, 50.675012613000035 ], [ -120.356131938999951, 50.675718471000067 ], [ -120.356044486999949, 50.675894260000049 ], [ -120.356007492999979, 50.676075318000073 ], [ -120.356034739, 50.676794910000091 ], [ -120.356019622999952, 50.677479009000081 ], [ -120.356005011999954, 50.678215397000095 ], [ -120.354067201999925, 50.677959494000078 ], [ -120.353688603999956, 50.67766180200011 ], [ -120.352484297999951, 50.677074511000079 ], [ -120.351984881999954, 50.676832908000137 ], [ -120.351656492999922, 50.676734202000034 ], [ -120.350080498999958, 50.676572201000035 ], [ -120.349362814999978, 50.676429494000025 ], [ -120.34895407499998, 50.6762014930001 ], [ -120.34843501499995, 50.675620897000087 ], [ -120.347828996999937, 50.674941299000089 ], [ -120.34788632199999, 50.674847800000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174914728", "BldgCostT": "119504857", "sL_LossRatio": "0.992860556055647", "sL_AssetLoss": "13857.8711271", "sL_BldgLoss": "13758.933633", "sL_StrLoss": "13722.205683", "sL_NStrLoss": "36.72795", "sL_ContLoss": "98.9374941", "geom_point": "0101000020E6100000CD075782BD165EC081800042B9574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.358300517999936, 50.687262806000064 ], [ -120.358613909999974, 50.686962387000037 ], [ -120.359155598999905, 50.686440193000095 ], [ -120.357911719999947, 50.685883306000115 ], [ -120.356682911999911, 50.685352496000107 ], [ -120.356311588999958, 50.685232705000026 ], [ -120.355918893999942, 50.685136211000092 ], [ -120.354862791999949, 50.684994396000015 ], [ -120.354431208999955, 50.684846405000044 ], [ -120.353525813999966, 50.684647284000043 ], [ -120.353089589999968, 50.684580096000118 ], [ -120.352864809999943, 50.684571402000088 ], [ -120.35248078799998, 50.684597889 ], [ -120.35189330299994, 50.684716807000036 ], [ -120.351387620999958, 50.684818209000106 ], [ -120.350850706999893, 50.684908094000043 ], [ -120.350524094999969, 50.684962698000113 ], [ -120.350293978999957, 50.684986219000116 ], [ -120.349646299999989, 50.685052383000112 ], [ -120.349196498999945, 50.684981008000051 ], [ -120.34886138399996, 50.684878305000069 ], [ -120.348567603999982, 50.684706591000086 ], [ -120.348379593999979, 50.684530383000052 ], [ -120.348274881999913, 50.684268207000045 ], [ -120.348299708999946, 50.68382340600008 ], [ -120.347766693999944, 50.684602899000062 ], [ -120.347654708, 50.684827011000102 ], [ -120.347497405999931, 50.684778505000025 ], [ -120.347936380999926, 50.684079893000018 ], [ -120.348163784999912, 50.683785323000109 ], [ -120.348632589, 50.683178004000084 ], [ -120.348869907999969, 50.682872806000084 ], [ -120.349146203, 50.682514056000045 ], [ -120.349276298999939, 50.682550101000082 ], [ -120.350274018000022, 50.682826513000052 ], [ -120.350745011999962, 50.682951789000093 ], [ -120.351478269999973, 50.683249040000092 ], [ -120.35161022799997, 50.683295354000087 ], [ -120.352501949999933, 50.683542290000091 ], [ -120.353959793999962, 50.683878802000073 ], [ -120.354151018999943, 50.683938734000016 ], [ -120.354256308999979, 50.683981401000082 ], [ -120.354500114999951, 50.684048189000066 ], [ -120.354500402999946, 50.684048276000084 ], [ -120.355162986999986, 50.684255986000089 ], [ -120.356812564999927, 50.68472083500005 ], [ -120.357466122999966, 50.68492813500005 ], [ -120.357826932999942, 50.685066349000081 ], [ -120.357862787999935, 50.685081525000022 ], [ -120.357866786, 50.685081615000101 ], [ -120.358588894999983, 50.685358222000062 ], [ -120.358588355999984, 50.685367825000135 ], [ -120.358615576999966, 50.685368443000073 ], [ -120.359440415999956, 50.68568438900013 ], [ -120.359559202999932, 50.685748882000084 ], [ -120.359835158999928, 50.685857064000089 ], [ -120.359831164999918, 50.685928159000106 ], [ -120.359848778999904, 50.685936092000048 ], [ -120.360013444999979, 50.685939823000126 ], [ -120.361077021999947, 50.686434715000111 ], [ -120.361074038999973, 50.686487838000055 ], [ -120.361110770999971, 50.686504378000016 ], [ -120.36123267499994, 50.686507140000089 ], [ -120.361365980999921, 50.686569166000062 ], [ -120.361909575, 50.686737351000026 ], [ -120.361907655999971, 50.686771546000031 ], [ -120.361983428999935, 50.686793989000144 ], [ -120.362101266999943, 50.686796658000084 ], [ -120.362744622999983, 50.686995702000097 ], [ -120.362743313999928, 50.687019054000046 ], [ -120.36296652599999, 50.687085163000113 ], [ -120.36296871899998, 50.687086144 ], [ -120.362994910999987, 50.687086738000076 ], [ -120.363242241999941, 50.687209288000055 ], [ -120.364002721999924, 50.687695356000063 ], [ -120.364002201999966, 50.68769580100011 ], [ -120.363891105999983, 50.687790109000083 ], [ -120.363581217999979, 50.688074489000051 ], [ -120.36163121099996, 50.68725670200012 ], [ -120.360881515999921, 50.687942289000034 ], [ -120.360185907999934, 50.688615395000028 ], [ -120.358606407999957, 50.687981191000063 ], [ -120.358300517999936, 50.687262806000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418738887", "BldgCostT": "275391024", "sL_LossRatio": "0.934223940535788", "sL_AssetLoss": "16253.74534", "sL_BldgLoss": "15184.63802", "sL_StrLoss": "14791.15681", "sL_NStrLoss": "393.48121", "sL_ContLoss": "1069.10732", "geom_point": "0101000020E61000005FA261CE7F165EC0A0CDE47ADF574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.349435924999952, 50.687365155000123 ], [ -120.349165796999927, 50.687307898000022 ], [ -120.348968774999975, 50.687631389000053 ], [ -120.348781601999974, 50.687932693000057 ], [ -120.348088898999933, 50.688051707000056 ], [ -120.347807103999969, 50.687695902000137 ], [ -120.347678674999941, 50.687449930000071 ], [ -120.347498263999981, 50.687372548000099 ], [ -120.34711559699997, 50.687208394000031 ], [ -120.346240105999939, 50.686974703000082 ], [ -120.346684570999955, 50.686345789000043 ], [ -120.347175094999955, 50.685914692000054 ], [ -120.347203988999965, 50.685696409000045 ], [ -120.347205217999914, 50.685687291000136 ], [ -120.347226916999915, 50.685693427000068 ], [ -120.347321788999977, 50.685720300000042 ], [ -120.347470620999957, 50.685182588000025 ], [ -120.347527594, 50.685072541000103 ], [ -120.347378950999911, 50.68504438500009 ], [ -120.347497405999931, 50.684778505000025 ], [ -120.347654708, 50.684827011000102 ], [ -120.347766693999944, 50.684602899000062 ], [ -120.348299708999946, 50.68382340600008 ], [ -120.348274881999913, 50.684268207000045 ], [ -120.348379593999979, 50.684530383000052 ], [ -120.348567603999982, 50.684706591000086 ], [ -120.34886138399996, 50.684878305000069 ], [ -120.349196498999945, 50.684981008000051 ], [ -120.349646299999989, 50.685052383000112 ], [ -120.350293978999957, 50.684986219000116 ], [ -120.350524094999969, 50.684962698000113 ], [ -120.350850706999893, 50.684908094000043 ], [ -120.351387620999958, 50.684818209000106 ], [ -120.35189330299994, 50.684716807000036 ], [ -120.35248078799998, 50.684597889 ], [ -120.352864809999943, 50.684571402000088 ], [ -120.353089589999968, 50.684580096000118 ], [ -120.353525813999966, 50.684647284000043 ], [ -120.354431208999955, 50.684846405000044 ], [ -120.354862791999949, 50.684994396000015 ], [ -120.355918893999942, 50.685136211000092 ], [ -120.356311588999958, 50.685232705000026 ], [ -120.356021792999968, 50.685662305000072 ], [ -120.35582606, 50.685952461000049 ], [ -120.355555796999951, 50.686349717000084 ], [ -120.354960319999947, 50.687220606000047 ], [ -120.356032510999952, 50.687414585000077 ], [ -120.355227104999955, 50.68788749600008 ], [ -120.353755204999956, 50.688745501000035 ], [ -120.352789120999958, 50.689309305000108 ], [ -120.350283798999953, 50.687544893000094 ], [ -120.349435924999952, 50.687365155000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203010018", "BldgCostT": "112422644", "sL_LossRatio": "0.896794891303903", "sL_AssetLoss": "15018.521075", "sL_BldgLoss": "13468.532975", "sL_StrLoss": "12845.015685", "sL_NStrLoss": "623.51729", "sL_ContLoss": "1549.9881", "geom_point": "0101000020E6100000681283C0CA165EC0BFC6AA1819584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.353755204999956, 50.688745501000035 ], [ -120.355227104999955, 50.68788749600008 ], [ -120.356032510999952, 50.687414585000077 ], [ -120.354960319999947, 50.687220606000047 ], [ -120.355555796999951, 50.686349717000084 ], [ -120.35582606, 50.685952461000049 ], [ -120.356021792999968, 50.685662305000072 ], [ -120.356311588999958, 50.685232705000026 ], [ -120.356682911999911, 50.685352496000107 ], [ -120.357911719999947, 50.685883306000115 ], [ -120.359155598999905, 50.686440193000095 ], [ -120.358613909999974, 50.686962387000037 ], [ -120.358300517999936, 50.687262806000064 ], [ -120.358606407999957, 50.687981191000063 ], [ -120.358931069999983, 50.688667932000044 ], [ -120.359635194999967, 50.689086013000058 ], [ -120.359658200999974, 50.689099778000063 ], [ -120.35837608699994, 50.689957399000058 ], [ -120.35787190699989, 50.688692780000054 ], [ -120.357053509999929, 50.68915599600011 ], [ -120.356674002999952, 50.689371009000055 ], [ -120.356260348999911, 50.689603181000109 ], [ -120.356189412999925, 50.689642952000035 ], [ -120.355936609999944, 50.689784337000042 ], [ -120.355700413999912, 50.689916411000034 ], [ -120.354541199, 50.690569597000049 ], [ -120.353711708999953, 50.691041196000135 ], [ -120.351968409999969, 50.689790281000093 ], [ -120.352789120999958, 50.689309305000108 ], [ -120.353755204999956, 50.688745501000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174860833", "BldgCostT": "117493333", "sL_LossRatio": "0.972440048314123", "sL_AssetLoss": "19987.8616", "sL_BldgLoss": "19436.9971", "sL_StrLoss": "19084.9477", "sL_NStrLoss": "352.0494", "sL_ContLoss": "550.8645", "geom_point": "0101000020E61000006C6B4CA156165EC0AB59143435584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35276989599997, 50.69156919400006 ], [ -120.352014198999925, 50.691027203000054 ], [ -120.351893879000031, 50.691079689000055 ], [ -120.351132573, 50.690536458000068 ], [ -120.35058816199998, 50.690147986000049 ], [ -120.350473107999917, 50.690065913000062 ], [ -120.350413957999962, 50.690086715000135 ], [ -120.350172785999959, 50.690171517000103 ], [ -120.350067101999983, 50.690277793000114 ], [ -120.350043092999911, 50.690434297000124 ], [ -120.346729107999948, 50.690384205000022 ], [ -120.345918993999959, 50.689621298000105 ], [ -120.345559593999951, 50.689316486000095 ], [ -120.345209593999968, 50.688938193000091 ], [ -120.345031996999936, 50.688690392000105 ], [ -120.345775702999944, 50.687637792000018 ], [ -120.346240105999939, 50.686974703000082 ], [ -120.34711559699997, 50.687208394000031 ], [ -120.347498263999981, 50.687372548000099 ], [ -120.347678674999941, 50.687449930000071 ], [ -120.347807103999969, 50.687695902000137 ], [ -120.348088898999933, 50.688051707000056 ], [ -120.348781601999974, 50.687932693000057 ], [ -120.348968774999975, 50.687631389000053 ], [ -120.349165796999927, 50.687307898000022 ], [ -120.349435924999952, 50.687365155000123 ], [ -120.350283798999953, 50.687544893000094 ], [ -120.352789120999958, 50.689309305000108 ], [ -120.351968409999969, 50.689790281000093 ], [ -120.353711708999953, 50.691041196000135 ], [ -120.35276989599997, 50.69156919400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999711547942891", "sL_AssetLoss": "597.3263", "sL_BldgLoss": "597.154", "sL_StrLoss": "596", "sL_NStrLoss": "1.154", "sL_ContLoss": "0.1723", "geom_point": "0101000020E61000005A1D8C1A84165EC037BCC56842594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.352319952999906, 50.698622534000087 ], [ -120.352344960999943, 50.69817869600007 ], [ -120.352032238999925, 50.698171588000093 ], [ -120.352014619999977, 50.698143700000088 ], [ -120.351731917, 50.697363299000031 ], [ -120.351148140999925, 50.696798377000043 ], [ -120.351163112999984, 50.696532755000078 ], [ -120.351011506999953, 50.696529307000077 ], [ -120.350779133999964, 50.695807552000076 ], [ -120.350814097999915, 50.695187266000069 ], [ -120.351267119999974, 50.696220305000061 ], [ -120.351649083999973, 50.696887608000118 ], [ -120.351945197999967, 50.697412685000053 ], [ -120.351952615999906, 50.697423267000104 ], [ -120.352376807999946, 50.698024792000076 ], [ -120.353214700999956, 50.699031403000099 ], [ -120.352818408999937, 50.699020625000102 ], [ -120.352319952999906, 50.698622534000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148975916", "BldgCostT": "101801666", "sL_LossRatio": "0.968962147318628", "sL_AssetLoss": "10966.2893369", "sL_BldgLoss": "10625.919264", "sL_StrLoss": "10497.365264", "sL_NStrLoss": "128.554", "sL_ContLoss": "340.3700729", "geom_point": "0101000020E610000071B2BBDD1E165EC09C3D8EEEB9574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.350393117999943, 50.695118651000087 ], [ -120.350405644999924, 50.69489645400003 ], [ -120.349981344999932, 50.694886802000127 ], [ -120.349986161999936, 50.694801366000085 ], [ -120.349996540999911, 50.694617301000093 ], [ -120.349843320999966, 50.69461381600015 ], [ -120.349722905999926, 50.694312598000074 ], [ -120.349765002999959, 50.693576309000079 ], [ -120.349639782999958, 50.693409938000045 ], [ -120.349648230999975, 50.693260148000071 ], [ -120.349524932999941, 50.69325734300002 ], [ -120.34946160799997, 50.693173203000057 ], [ -120.349236215, 50.693032927000047 ], [ -120.349253284999975, 50.692730244000067 ], [ -120.349233727999945, 50.69271102400004 ], [ -120.348792633999921, 50.692700986000027 ], [ -120.348424300999937, 50.692363875000055 ], [ -120.348436186999919, 50.69215318100003 ], [ -120.348213255999951, 50.692148106000083 ], [ -120.348022953999987, 50.691947832000061 ], [ -120.348027116999972, 50.691874023000054 ], [ -120.34795117799996, 50.691872295000138 ], [ -120.347248912999973, 50.69113320700005 ], [ -120.34704110499996, 50.69091449900008 ], [ -120.346411006999915, 50.690400945000064 ], [ -120.34642131399994, 50.690218377000065 ], [ -120.346180278999967, 50.690212887000044 ], [ -120.345598782999943, 50.689738926000103 ], [ -120.34560323699999, 50.689660047000139 ], [ -120.345499095999941, 50.689657674000017 ], [ -120.345192678, 50.689407915000025 ], [ -120.345209425999911, 50.689111380000035 ], [ -120.344960552999979, 50.689105708000056 ], [ -120.344798050999927, 50.688873796000046 ], [ -120.344815621999942, 50.688562712000078 ], [ -120.344576253999932, 50.688557255000042 ], [ -120.344517505999988, 50.688473408000029 ], [ -120.344403443999965, 50.688339486000125 ], [ -120.344406605999978, 50.688283541000104 ], [ -120.344354791999962, 50.688282360000073 ], [ -120.343665994999981, 50.687473600000096 ], [ -120.343605665000013, 50.687422913000063 ], [ -120.343619041999943, 50.687186198000063 ], [ -120.343345729999939, 50.687179965000027 ], [ -120.343315687999933, 50.687179280000123 ], [ -120.343193011999972, 50.68707620900004 ], [ -120.342808883999965, 50.686489225000066 ], [ -120.342846745999964, 50.68581935100007 ], [ -120.343008040999948, 50.685823030000059 ], [ -120.343014344999929, 50.685761745000065 ], [ -120.343035732999951, 50.685553815000027 ], [ -120.343003105999941, 50.685553071000029 ], [ -120.342861977999959, 50.68554985200003 ], [ -120.342877210999958, 50.685280353000046 ], [ -120.34255131399999, 50.685272919000063 ], [ -120.342546100999982, 50.68524471100006 ], [ -120.342606199999935, 50.684193595000096 ], [ -120.342851454999973, 50.683799540000109 ], [ -120.343478392999927, 50.682792193000118 ], [ -120.34398950399995, 50.682255292000058 ], [ -120.34438540399999, 50.682076586000115 ], [ -120.344756704999966, 50.682085050000111 ], [ -120.344760939999972, 50.682010065000014 ], [ -120.34549689399995, 50.681903495 ], [ -120.346882319999935, 50.682050219000089 ], [ -120.346877627000012, 50.682133377000085 ], [ -120.349132821999902, 50.682184722000059 ], [ -120.349346552999961, 50.682253850000073 ], [ -120.349146203, 50.682514056000045 ], [ -120.348869907999969, 50.682872806000084 ], [ -120.348632589, 50.683178004000084 ], [ -120.348163784999912, 50.683785323000109 ], [ -120.347936380999926, 50.684079893000018 ], [ -120.347497405999931, 50.684778505000025 ], [ -120.347378950999911, 50.68504438500009 ], [ -120.347527594, 50.685072541000103 ], [ -120.347470620999957, 50.685182588000025 ], [ -120.347321788999977, 50.685720300000042 ], [ -120.347226916999915, 50.685693427000068 ], [ -120.347205217999914, 50.685687291000136 ], [ -120.347203988999965, 50.685696409000045 ], [ -120.347175094999955, 50.685914692000054 ], [ -120.346684570999955, 50.686345789000043 ], [ -120.346240105999939, 50.686974703000082 ], [ -120.345775702999944, 50.687637792000018 ], [ -120.345031996999936, 50.688690392000105 ], [ -120.345209593999968, 50.688938193000091 ], [ -120.345559593999951, 50.689316486000095 ], [ -120.345918993999959, 50.689621298000105 ], [ -120.346729107999948, 50.690384205000022 ], [ -120.347508778999966, 50.691095995000069 ], [ -120.34833460499999, 50.69184801100004 ], [ -120.349122191, 50.69256559300009 ], [ -120.34985720499995, 50.693238208000061 ], [ -120.349909585999939, 50.693329200000079 ], [ -120.350308596, 50.694029791000041 ], [ -120.350628163999971, 50.694763257000098 ], [ -120.3508089259999, 50.695175471000013 ], [ -120.350432532999974, 50.695166911000037 ], [ -120.350393117999943, 50.695118651000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116153061", "BldgCostT": "75488190", "sL_LossRatio": "0.976021689873841", "sL_AssetLoss": "17952.14499", "sL_BldgLoss": "17521.68289", "sL_StrLoss": "17322.19329", "sL_NStrLoss": "199.4896", "sL_ContLoss": "430.4621", "geom_point": "0101000020E610000091BBF0FF7A165EC00158891E9D584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.34985720499995, 50.693238208000061 ], [ -120.349122191, 50.69256559300009 ], [ -120.34833460499999, 50.69184801100004 ], [ -120.347508778999966, 50.691095995000069 ], [ -120.346729107999948, 50.690384205000022 ], [ -120.350043092999911, 50.690434297000124 ], [ -120.350067101999983, 50.690277793000114 ], [ -120.350172785999959, 50.690171517000103 ], [ -120.350413957999962, 50.690086715000135 ], [ -120.350473107999917, 50.690065913000062 ], [ -120.35058816199998, 50.690147986000049 ], [ -120.351132573, 50.690536458000068 ], [ -120.351893879000031, 50.691079689000055 ], [ -120.352014198999925, 50.691027203000054 ], [ -120.35276989599997, 50.69156919400006 ], [ -120.35326929899999, 50.691924408000084 ], [ -120.35424010699991, 50.692620588000104 ], [ -120.354436118999928, 50.692891911000075 ], [ -120.354941890999967, 50.693252697000084 ], [ -120.355063896999965, 50.693209298000042 ], [ -120.355449078999925, 50.693512695000067 ], [ -120.355636205999957, 50.69371860600004 ], [ -120.355889717999958, 50.694097312000103 ], [ -120.35569278899996, 50.694092810000043 ], [ -120.350308596, 50.694029791000041 ], [ -120.349909585999939, 50.693329200000079 ], [ -120.34985720499995, 50.693238208000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "329045395", "BldgCostT": "206839156", "sL_LossRatio": "0.941476420777265", "sL_AssetLoss": "23136.11399", "sL_BldgLoss": "21782.10579", "sL_StrLoss": "21241.73099", "sL_NStrLoss": "540.3748", "sL_ContLoss": "1354.0082", "geom_point": "0101000020E6100000DD525106D8165EC0FF5C3CD584584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.355449078999925, 50.693512695000067 ], [ -120.355063896999965, 50.693209298000042 ], [ -120.354941890999967, 50.693252697000084 ], [ -120.354436118999928, 50.692891911000075 ], [ -120.35424010699991, 50.692620588000104 ], [ -120.35326929899999, 50.691924408000084 ], [ -120.35276989599997, 50.69156919400006 ], [ -120.353711708999953, 50.691041196000135 ], [ -120.354541199, 50.690569597000049 ], [ -120.355700413999912, 50.689916411000034 ], [ -120.355936609999944, 50.689784337000042 ], [ -120.356189412999925, 50.689642952000035 ], [ -120.356260348999911, 50.689603181000109 ], [ -120.356674002999952, 50.689371009000055 ], [ -120.357053509999929, 50.68915599600011 ], [ -120.35787190699989, 50.688692780000054 ], [ -120.35837608699994, 50.689957399000058 ], [ -120.359154444999888, 50.690276388000015 ], [ -120.35916640799995, 50.690281281000068 ], [ -120.360159294999946, 50.690746107000109 ], [ -120.360171142999903, 50.690751207000069 ], [ -120.360601109999919, 50.690936487000108 ], [ -120.36066868599994, 50.690965607000052 ], [ -120.360809256999971, 50.69102629500005 ], [ -120.361614592999956, 50.691374003000128 ], [ -120.361335441999984, 50.691312668000094 ], [ -120.361321522999987, 50.691309604000033 ], [ -120.36106021099999, 50.691286406000081 ], [ -120.360908752999961, 50.69129665400002 ], [ -120.360821895999919, 50.691302551000014 ], [ -120.360763621, 50.691306491000034 ], [ -120.36032571599999, 50.691376308000081 ], [ -120.359892060999982, 50.691441899000054 ], [ -120.360340904999987, 50.693201349000049 ], [ -120.359707011, 50.693322893000058 ], [ -120.359312908999982, 50.692334203 ], [ -120.358192307999943, 50.692973985000052 ], [ -120.35719256899992, 50.693545202000102 ], [ -120.356340607, 50.694026487000073 ], [ -120.35616379899993, 50.694098596000082 ], [ -120.355889717999958, 50.694097312000103 ], [ -120.355636205999957, 50.69371860600004 ], [ -120.355449078999925, 50.693512695000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198134592", "BldgCostT": "126171793", "sL_LossRatio": "0.967569225756385", "sL_AssetLoss": "15840.04397", "sL_BldgLoss": "15326.33908", "sL_StrLoss": "15090.25378", "sL_NStrLoss": "236.0853", "sL_ContLoss": "513.70489", "geom_point": "0101000020E6100000B96AAE05C3165EC0F9EAE3A1EF584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.350814097999915, 50.695187266000069 ], [ -120.350814755999949, 50.695175604000049 ], [ -120.3508089259999, 50.695175471000013 ], [ -120.350628163999971, 50.694763257000098 ], [ -120.350308596, 50.694029791000041 ], [ -120.35569278899996, 50.694092810000043 ], [ -120.355889717999958, 50.694097312000103 ], [ -120.35616379899993, 50.694098596000082 ], [ -120.356340607, 50.694026487000073 ], [ -120.35719256899992, 50.693545202000102 ], [ -120.358192307999943, 50.692973985000052 ], [ -120.359312908999982, 50.692334203 ], [ -120.359707011, 50.693322893000058 ], [ -120.360084768999926, 50.69432873900012 ], [ -120.360198282999988, 50.694633735000082 ], [ -120.360300853999931, 50.694909354000039 ], [ -120.360366358999954, 50.695085433000017 ], [ -120.360443639999986, 50.695293074000077 ], [ -120.360548141999985, 50.69541102700002 ], [ -120.360601265999975, 50.69555338 ], [ -120.36046180699999, 50.695600392000046 ], [ -120.360351115999947, 50.695621819000081 ], [ -120.356390521000023, 50.695592439000109 ], [ -120.356208473, 50.695590792000083 ], [ -120.35617477299995, 50.695590524000082 ], [ -120.356420665999963, 50.69602251400007 ], [ -120.356487689999938, 50.696140237000158 ], [ -120.356588793999947, 50.696317867000054 ], [ -120.356593606999965, 50.696326319000057 ], [ -120.356405157999987, 50.696322181000042 ], [ -120.353151958999888, 50.69626002400004 ], [ -120.351267119999974, 50.696220305000061 ], [ -120.350814097999915, 50.695187266000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181956000", "BldgCostT": "123510000", "sL_LossRatio": "0.992077278482667", "sL_AssetLoss": "17663.46068", "sL_BldgLoss": "17523.518", "sL_StrLoss": "17443.8611", "sL_NStrLoss": "79.6569", "sL_ContLoss": "139.94268", "geom_point": "0101000020E610000004C41CEB3F175EC0BF3C8D49B9584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.36196509899996, 50.696040533000058 ], [ -120.36133136699999, 50.695295690000108 ], [ -120.360601265999975, 50.69555338 ], [ -120.360548141999985, 50.69541102700002 ], [ -120.360443639999986, 50.695293074000077 ], [ -120.360366358999954, 50.695085433000017 ], [ -120.360300853999931, 50.694909354000039 ], [ -120.360198282999988, 50.694633735000082 ], [ -120.360084768999926, 50.69432873900012 ], [ -120.359707011, 50.693322893000058 ], [ -120.360340904999987, 50.693201349000049 ], [ -120.359892060999982, 50.691441899000054 ], [ -120.36032571599999, 50.691376308000081 ], [ -120.360763621, 50.691306491000034 ], [ -120.360821895999919, 50.691302551000014 ], [ -120.360908752999961, 50.69129665400002 ], [ -120.36106021099999, 50.691286406000081 ], [ -120.361321522999987, 50.691309604000033 ], [ -120.361335441999984, 50.691312668000094 ], [ -120.361614592999956, 50.691374003000128 ], [ -120.362126304999933, 50.691598098000043 ], [ -120.362768498999912, 50.691891892000065 ], [ -120.363053114999957, 50.692023503000016 ], [ -120.363679780999973, 50.692316502000061 ], [ -120.364272129999947, 50.691742075000107 ], [ -120.364383705999927, 50.69163388700008 ], [ -120.364642494999913, 50.691383002000045 ], [ -120.365028410999955, 50.691139411000108 ], [ -120.365521223999977, 50.690638999000065 ], [ -120.365582083999954, 50.690577206000057 ], [ -120.366529908999922, 50.691005398000094 ], [ -120.367019290999977, 50.691214900000055 ], [ -120.368162181999949, 50.691696192000052 ], [ -120.366276697999979, 50.693482389000032 ], [ -120.365711413999932, 50.693221292000082 ], [ -120.364516178999949, 50.694318812000091 ], [ -120.362982839999972, 50.695766743000071 ], [ -120.362667507999959, 50.696070690000063 ], [ -120.362480655999889, 50.696077088 ], [ -120.362072415999961, 50.696091017000079 ], [ -120.36196509899996, 50.696040533000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81425417", "BldgCostT": "55891667", "sL_LossRatio": "0.999962423533235", "sL_AssetLoss": "11769.86657", "sL_BldgLoss": "11769.4243", "sL_StrLoss": "11767.6", "sL_NStrLoss": "1.8243", "sL_ContLoss": "0.44227", "geom_point": "0101000020E6100000DD9035D975175EC08D109A34F8584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.364516178999949, 50.694318812000091 ], [ -120.365711413999932, 50.693221292000082 ], [ -120.366276697999979, 50.693482389000032 ], [ -120.366863601999981, 50.693752598000067 ], [ -120.367360309999953, 50.693983186000047 ], [ -120.367626103999939, 50.693767802000146 ], [ -120.36764189199999, 50.693381999000081 ], [ -120.368786996000011, 50.6922639900001 ], [ -120.369118890999971, 50.69208699700004 ], [ -120.368215592999945, 50.69437969300008 ], [ -120.368873724999929, 50.69468240600002 ], [ -120.369009019999964, 50.6948838940001 ], [ -120.36903926, 50.694987558000051 ], [ -120.36941328399999, 50.696267701000124 ], [ -120.369478702, 50.696493596000025 ], [ -120.36918315199992, 50.696509279000061 ], [ -120.368043988999958, 50.696569699000094 ], [ -120.364791815000018, 50.696522391000109 ], [ -120.362982839999972, 50.695766743000071 ], [ -120.364516178999949, 50.694318812000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89534667", "BldgCostT": "58121667", "sL_LossRatio": "0.992788137806789", "sL_AssetLoss": "11176.90242", "sL_BldgLoss": "11096.29614", "sL_StrLoss": "11062.90818", "sL_NStrLoss": "33.38796", "sL_ContLoss": "80.60628", "geom_point": "0101000020E61000002419AD618E175EC00B12BACF9A584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.372240394999949, 50.698420894000073 ], [ -120.370499994999946, 50.697468813000086 ], [ -120.370140102999983, 50.697211786000054 ], [ -120.369770787999983, 50.696848895000052 ], [ -120.369478702, 50.696493596000025 ], [ -120.36941328399999, 50.696267701000124 ], [ -120.36903926, 50.694987558000051 ], [ -120.369009019999964, 50.6948838940001 ], [ -120.368873724999929, 50.69468240600002 ], [ -120.368215592999945, 50.69437969300008 ], [ -120.369118890999971, 50.69208699700004 ], [ -120.368786996000011, 50.6922639900001 ], [ -120.36764189199999, 50.693381999000081 ], [ -120.367626103999939, 50.693767802000146 ], [ -120.367360309999953, 50.693983186000047 ], [ -120.366863601999981, 50.693752598000067 ], [ -120.366276697999979, 50.693482389000032 ], [ -120.368162181999949, 50.691696192000052 ], [ -120.367019290999977, 50.691214900000055 ], [ -120.366529908999922, 50.691005398000094 ], [ -120.365582083999954, 50.690577206000057 ], [ -120.365873107, 50.690294248000107 ], [ -120.365951199999984, 50.690218302000062 ], [ -120.366347004999938, 50.689748103000063 ], [ -120.366182592999905, 50.68953094000004 ], [ -120.366059178999976, 50.689367899000011 ], [ -120.365820706999955, 50.689052916000044 ], [ -120.363581217999979, 50.688074489000051 ], [ -120.363891105999983, 50.687790109000083 ], [ -120.364002201999966, 50.68769580100011 ], [ -120.364002721999924, 50.687695356000063 ], [ -120.364016191999909, 50.687702598000108 ], [ -120.364465389999964, 50.687900591000108 ], [ -120.364502011, 50.687911975000084 ], [ -120.364527024999987, 50.687923863000023 ], [ -120.364549357999977, 50.687931452000029 ], [ -120.364565871999957, 50.687931826000074 ], [ -120.364811731999907, 50.688008249000056 ], [ -120.364811050999919, 50.68802038000009 ], [ -120.365320406999942, 50.688193463000047 ], [ -120.365788400999961, 50.6884163940001 ], [ -120.366677309999901, 50.688977487000059 ], [ -120.367473685, 50.689911798000082 ], [ -120.369308530999945, 50.69114972300008 ], [ -120.369306261999924, 50.691190250000034 ], [ -120.369450778999962, 50.691280382000116 ], [ -120.369503981999955, 50.69128158400008 ], [ -120.369717886999922, 50.691425892000012 ], [ -120.369716747999945, 50.691446260000099 ], [ -120.369910924999942, 50.691567363000075 ], [ -120.370029179999932, 50.691688360000072 ], [ -120.370054991999922, 50.69212079700003 ], [ -120.369717955999974, 50.693157290000045 ], [ -120.369693744999921, 50.693178332000087 ], [ -120.369499612999974, 50.693386984 ], [ -120.3693143, 50.693782604000056 ], [ -120.369283501999988, 50.694066294000031 ], [ -120.369314875999947, 50.694689106000077 ], [ -120.369315722999957, 50.694691658000089 ], [ -120.369319580999914, 50.694701348000109 ], [ -120.369471340999922, 50.695082340000127 ], [ -120.369463208999932, 50.695084506000093 ], [ -120.36946522099997, 50.695309602000165 ], [ -120.369750294999932, 50.696044389000043 ], [ -120.370748085999978, 50.697209503000053 ], [ -120.371221200999969, 50.69758830100006 ], [ -120.371893890999928, 50.697964290000044 ], [ -120.372216405999922, 50.698042600000058 ], [ -120.372360792999928, 50.697965705000065 ], [ -120.372359327999902, 50.697935905000129 ], [ -120.372637781999941, 50.698081806000111 ], [ -120.372893275999971, 50.698215683000072 ], [ -120.373023027, 50.698268316000068 ], [ -120.372647894999943, 50.698604598000074 ], [ -120.372240394999949, 50.698420894000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114704333", "BldgCostT": "74423333", "sL_LossRatio": "0.999876445112726", "sL_AssetLoss": "13874.07684", "sL_BldgLoss": "13872.36263", "sL_StrLoss": "13864.19653", "sL_NStrLoss": "8.1661", "sL_ContLoss": "1.71421", "geom_point": "0101000020E610000051CD075F33175EC0C129D61D49584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.358931069999983, 50.688667932000044 ], [ -120.358606407999957, 50.687981191000063 ], [ -120.360185907999934, 50.688615395000028 ], [ -120.360881515999921, 50.687942289000034 ], [ -120.36163121099996, 50.68725670200012 ], [ -120.363581217999979, 50.688074489000051 ], [ -120.365820706999955, 50.689052916000044 ], [ -120.366059178999976, 50.689367899000011 ], [ -120.366182592999905, 50.68953094000004 ], [ -120.366347004999938, 50.689748103000063 ], [ -120.365951199999984, 50.690218302000062 ], [ -120.365873107, 50.690294248000107 ], [ -120.365582083999954, 50.690577206000057 ], [ -120.365521223999977, 50.690638999000065 ], [ -120.365028410999955, 50.691139411000108 ], [ -120.364642494999913, 50.691383002000045 ], [ -120.364383705999927, 50.69163388700008 ], [ -120.364272129999947, 50.691742075000107 ], [ -120.363679780999973, 50.692316502000061 ], [ -120.363053114999957, 50.692023503000016 ], [ -120.362768498999912, 50.691891892000065 ], [ -120.362126304999933, 50.691598098000043 ], [ -120.361614592999956, 50.691374003000128 ], [ -120.360809256999971, 50.69102629500005 ], [ -120.36066868599994, 50.690965607000052 ], [ -120.360601109999919, 50.690936487000108 ], [ -120.360171142999903, 50.690751207000069 ], [ -120.360159294999946, 50.690746107000109 ], [ -120.35916640799995, 50.690281281000068 ], [ -120.359154444999888, 50.690276388000015 ], [ -120.35837608699994, 50.689957399000058 ], [ -120.359658200999974, 50.689099778000063 ], [ -120.359635194999967, 50.689086013000058 ], [ -120.358931069999983, 50.688667932000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208311456", "BldgCostT": "131529714", "sL_LossRatio": "0.976213868751555", "sL_AssetLoss": "18330.881363", "sL_BldgLoss": "17894.860613", "sL_StrLoss": "17696.174913", "sL_NStrLoss": "198.6857", "sL_ContLoss": "436.02075", "geom_point": "0101000020E610000078E61E127E175EC002DEA8995E594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.361125211999962, 50.697035206000095 ], [ -120.360843167999917, 50.696227943000075 ], [ -120.360677637999956, 50.695766316000132 ], [ -120.360601265999975, 50.69555338 ], [ -120.36133136699999, 50.695295690000108 ], [ -120.36196509899996, 50.696040533000058 ], [ -120.362072415999961, 50.696091017000079 ], [ -120.362480655999889, 50.696077088 ], [ -120.362667507999959, 50.696070690000063 ], [ -120.362982839999972, 50.695766743000071 ], [ -120.364791815000018, 50.696522391000109 ], [ -120.368043988999958, 50.696569699000094 ], [ -120.36918315199992, 50.696509279000061 ], [ -120.369478702, 50.696493596000025 ], [ -120.369770787999983, 50.696848895000052 ], [ -120.370140102999983, 50.697211786000054 ], [ -120.370499994999946, 50.697468813000086 ], [ -120.372240394999949, 50.698420894000073 ], [ -120.372647894999943, 50.698604598000074 ], [ -120.372664216999979, 50.699289298000096 ], [ -120.372677070999941, 50.700002820000087 ], [ -120.372678102999942, 50.70006049000007 ], [ -120.372689779, 50.700541686000044 ], [ -120.372696499999961, 50.70081920900008 ], [ -120.370251494999977, 50.700452411000128 ], [ -120.369832617999961, 50.700390577000057 ], [ -120.369118702999984, 50.700285182000094 ], [ -120.367909407999946, 50.700104191000044 ], [ -120.367319210999966, 50.700008733000082 ], [ -120.365965201000037, 50.699789690000081 ], [ -120.36564832000002, 50.699738972000048 ], [ -120.365297989999988, 50.699682893000102 ], [ -120.36501157899994, 50.699541061000048 ], [ -120.364565219, 50.6993199610001 ], [ -120.364029364999936, 50.699054576000073 ], [ -120.362959801999978, 50.698524814000073 ], [ -120.362897961999963, 50.698519344000047 ], [ -120.362718016999963, 50.698503501000083 ], [ -120.362635899999987, 50.698402023000057 ], [ -120.362492986999911, 50.698225394000083 ], [ -120.36188596299999, 50.697708089000088 ], [ -120.361214744999984, 50.697147868000052 ], [ -120.361125211999962, 50.697035206000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "341302662", "BldgCostT": "224366700", "sL_LossRatio": "0.909837593663742", "sL_AssetLoss": "23420.1084", "sL_BldgLoss": "21308.49507", "sL_StrLoss": "19741.16307", "sL_NStrLoss": "1567.332", "sL_ContLoss": "2111.61333", "geom_point": "0101000020E6100000492146BE01175EC0DFFF43D16E594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.359479993999969, 50.699753498000113 ], [ -120.35893056399999, 50.699117379000079 ], [ -120.354414389999945, 50.699050802000045 ], [ -120.353214700999956, 50.699031403000099 ], [ -120.352376807999946, 50.698024792000076 ], [ -120.351952615999906, 50.697423267000104 ], [ -120.351945197999967, 50.697412685000053 ], [ -120.351649083999973, 50.696887608000118 ], [ -120.351267119999974, 50.696220305000061 ], [ -120.353151958999888, 50.69626002400004 ], [ -120.356405157999987, 50.696322181000042 ], [ -120.356593606999965, 50.696326319000057 ], [ -120.356588793999947, 50.696317867000054 ], [ -120.356487689999938, 50.696140237000158 ], [ -120.356420665999963, 50.69602251400007 ], [ -120.35617477299995, 50.695590524000082 ], [ -120.356208473, 50.695590792000083 ], [ -120.356390521000023, 50.695592439000109 ], [ -120.360351115999947, 50.695621819000081 ], [ -120.36046180699999, 50.695600392000046 ], [ -120.360601265999975, 50.69555338 ], [ -120.360677637999956, 50.695766316000132 ], [ -120.360843167999917, 50.696227943000075 ], [ -120.361125211999962, 50.697035206000095 ], [ -120.361214744999984, 50.697147868000052 ], [ -120.36188596299999, 50.697708089000088 ], [ -120.362492986999911, 50.698225394000083 ], [ -120.362635899999987, 50.698402023000057 ], [ -120.362718016999963, 50.698503501000083 ], [ -120.362897961999963, 50.698519344000047 ], [ -120.362959801999978, 50.698524814000073 ], [ -120.364029364999936, 50.699054576000073 ], [ -120.364565219, 50.6993199610001 ], [ -120.36501157899994, 50.699541061000048 ], [ -120.365297989999988, 50.699682893000102 ], [ -120.36564832000002, 50.699738972000048 ], [ -120.365965201000037, 50.699789690000081 ], [ -120.367319210999966, 50.700008733000082 ], [ -120.367909407999946, 50.700104191000044 ], [ -120.369118702999984, 50.700285182000094 ], [ -120.369832617999961, 50.700390577000057 ], [ -120.370251494999977, 50.700452411000128 ], [ -120.370248690999944, 50.700564908000061 ], [ -120.3702459, 50.700734207000117 ], [ -120.367896617000028, 50.700702812000046 ], [ -120.366186905999939, 50.700682192000073 ], [ -120.365131836999936, 50.700744199000042 ], [ -120.36332789, 50.700850193000051 ], [ -120.363350259999947, 50.700974440000039 ], [ -120.363410286999937, 50.701308108000056 ], [ -120.363463382999953, 50.701603201000054 ], [ -120.363660329999959, 50.702727013000043 ], [ -120.363661893999918, 50.702735998000058 ], [ -120.363748110999936, 50.703214288000026 ], [ -120.363573302999939, 50.703214506000108 ], [ -120.362719236999951, 50.703204652000124 ], [ -120.362393767999961, 50.703200898000041 ], [ -120.361612131999948, 50.703191868000033 ], [ -120.361450675999933, 50.702521398000101 ], [ -120.361365296999935, 50.702183685000179 ], [ -120.361147708999965, 50.701857302000086 ], [ -120.360599312999966, 50.701054600000127 ], [ -120.360506193999981, 50.700945322000074 ], [ -120.360133794999982, 50.700508309000092 ], [ -120.359684126999966, 50.699989154000086 ], [ -120.359479993999969, 50.699753498000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107594834", "BldgCostT": "69253334", "sL_LossRatio": "0.999869069585923", "sL_AssetLoss": "13372.98146", "sL_BldgLoss": "13371.23053", "sL_StrLoss": "13361.31903", "sL_NStrLoss": "9.9115", "sL_ContLoss": "1.75093", "geom_point": "0101000020E61000003FC9E38A87175EC0F8DCCF4AD6594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.370248690999944, 50.700564908000061 ], [ -120.370251494999977, 50.700452411000128 ], [ -120.372696499999961, 50.70081920900008 ], [ -120.372691794999966, 50.700936102000114 ], [ -120.372676898999899, 50.701620188000028 ], [ -120.372655594999941, 50.702479703000087 ], [ -120.370220290999967, 50.702464788000043 ], [ -120.367858572999978, 50.7024516970001 ], [ -120.367840218999916, 50.703367205000099 ], [ -120.366652882999972, 50.70336130400009 ], [ -120.363812000999971, 50.703576202000164 ], [ -120.363748110999936, 50.703214288000026 ], [ -120.363661893999918, 50.702735998000058 ], [ -120.363660329999959, 50.702727013000043 ], [ -120.363463382999953, 50.701603201000054 ], [ -120.363410286999937, 50.701308108000056 ], [ -120.363350259999947, 50.700974440000039 ], [ -120.36332789, 50.700850193000051 ], [ -120.365131836999936, 50.700744199000042 ], [ -120.366186905999939, 50.700682192000073 ], [ -120.367896617000028, 50.700702812000046 ], [ -120.3702459, 50.700734207000117 ], [ -120.370248690999944, 50.700564908000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120706750", "BldgCostT": "75520000", "sL_LossRatio": "0.992159075588893", "sL_AssetLoss": "11722.826695", "sL_BldgLoss": "11630.908897", "sL_StrLoss": "11591.746607", "sL_NStrLoss": "39.16229", "sL_ContLoss": "91.917798", "geom_point": "0101000020E6100000E3D2F88597175EC03F7ABB0C1C5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.363637944999965, 50.70358499499999 ], [ -120.36360361499996, 50.703388148000094 ], [ -120.363573302999939, 50.703214506000108 ], [ -120.363748110999936, 50.703214288000026 ], [ -120.363812000999971, 50.703576202000164 ], [ -120.366652882999972, 50.70336130400009 ], [ -120.367840218999916, 50.703367205000099 ], [ -120.367858572999978, 50.7024516970001 ], [ -120.370220290999967, 50.702464788000043 ], [ -120.372655594999941, 50.702479703000087 ], [ -120.37263599399995, 50.703393302000116 ], [ -120.372620834, 50.70402330400006 ], [ -120.372615001999989, 50.704296001000117 ], [ -120.372596585999972, 50.705121405000028 ], [ -120.372480783999933, 50.705138091000066 ], [ -120.370176697999952, 50.705129807000084 ], [ -120.367806674999926, 50.705125398000085 ], [ -120.366964195, 50.705123300000089 ], [ -120.364731610999925, 50.705283218000055 ], [ -120.364124695000015, 50.705326711000048 ], [ -120.363942491999964, 50.705339965000057 ], [ -120.363790406999954, 50.70445909500009 ], [ -120.363637944999965, 50.70358499499999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52806417", "BldgCostT": "34526667", "sL_LossRatio": "0.973798754329614", "sL_AssetLoss": "9211.86546", "sL_BldgLoss": "8970.50311", "sL_StrLoss": "8879.22531", "sL_NStrLoss": "91.2778", "sL_ContLoss": "241.36235", "geom_point": "0101000020E610000031A6C3B7EE175EC07F5515B7DD594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.372677070999941, 50.700002820000087 ], [ -120.372664216999979, 50.699289298000096 ], [ -120.375139212999898, 50.699721596000053 ], [ -120.375129572999967, 50.700005696000076 ], [ -120.375115, 50.700435008000156 ], [ -120.375113901999924, 50.701179189000079 ], [ -120.375824215999913, 50.701283499000098 ], [ -120.375820498999957, 50.701369004000107 ], [ -120.375798355999962, 50.702047150000084 ], [ -120.375792809999922, 50.702216180000065 ], [ -120.375782507999958, 50.70253220500004 ], [ -120.375770565999971, 50.702930693000077 ], [ -120.375757085, 50.70337969400002 ], [ -120.374181904999958, 50.70336139800002 ], [ -120.374169176999914, 50.704051003000046 ], [ -120.37416749499998, 50.704268092000106 ], [ -120.374156160999974, 50.704940754000049 ], [ -120.374153590999967, 50.705091898000042 ], [ -120.372837986999969, 50.705088509000049 ], [ -120.372596585999972, 50.705121405000028 ], [ -120.372615001999989, 50.704296001000117 ], [ -120.372620834, 50.70402330400006 ], [ -120.37263599399995, 50.703393302000116 ], [ -120.372655594999941, 50.702479703000087 ], [ -120.372676898999899, 50.701620188000028 ], [ -120.372691794999966, 50.700936102000114 ], [ -120.372696499999961, 50.70081920900008 ], [ -120.372689779, 50.700541686000044 ], [ -120.372678102999942, 50.70006049000007 ], [ -120.372677070999941, 50.700002820000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95808971", "BldgCostT": "60135414", "sL_LossRatio": "0.992519951206006", "sL_AssetLoss": "11750.74955", "sL_BldgLoss": "11662.85337", "sL_StrLoss": "11619.87064", "sL_NStrLoss": "42.98273", "sL_ContLoss": "87.89618", "geom_point": "0101000020E610000074DDD60E2D185EC011EB1A4E155A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.376308974999972, 50.705299844000137 ], [ -120.375682538999968, 50.70512765900007 ], [ -120.375032101, 50.705102749000091 ], [ -120.37486927399999, 50.705096517000108 ], [ -120.374805260999921, 50.705096074000075 ], [ -120.374352091999981, 50.705093175000052 ], [ -120.374153590999967, 50.705091898000042 ], [ -120.374156160999974, 50.704940754000049 ], [ -120.37416749499998, 50.704268092000106 ], [ -120.374169176999914, 50.704051003000046 ], [ -120.374181904999958, 50.70336139800002 ], [ -120.375757085, 50.70337969400002 ], [ -120.375770565999971, 50.702930693000077 ], [ -120.375782507999958, 50.70253220500004 ], [ -120.375792809999922, 50.702216180000065 ], [ -120.375798355999962, 50.702047150000084 ], [ -120.375820498999957, 50.701369004000107 ], [ -120.375824215999913, 50.701283499000098 ], [ -120.376381790999915, 50.70136940900008 ], [ -120.377699792999948, 50.701567510000046 ], [ -120.378403399999925, 50.701679504 ], [ -120.379169910999963, 50.701799298000054 ], [ -120.380718014999943, 50.702044102000094 ], [ -120.38068249599999, 50.702123436000079 ], [ -120.380509913, 50.70252549000007 ], [ -120.38041745799994, 50.702740802000058 ], [ -120.380414718999958, 50.70294964900004 ], [ -120.380406033999947, 50.70361338700009 ], [ -120.38039098299997, 50.704469558000042 ], [ -120.380378498999931, 50.705192508000039 ], [ -120.380370668999959, 50.705601858000108 ], [ -120.380355190000017, 50.706408694000061 ], [ -120.379108268, 50.706061931000058 ], [ -120.378342840999906, 50.705853561000076 ], [ -120.376308974999972, 50.705299844000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121553417", "BldgCostT": "78496667", "sL_LossRatio": "0.984409787856299", "sL_AssetLoss": "15390.70205", "sL_BldgLoss": "15150.75774", "sL_StrLoss": "15049.90664", "sL_NStrLoss": "100.8511", "sL_ContLoss": "239.94431", "geom_point": "0101000020E6100000AC506A5070185EC0DC79E1EF135A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.380412112000016, 50.699260545000108 ], [ -120.381565057000017, 50.699279047000118 ], [ -120.381564027999914, 50.69981964800008 ], [ -120.381563029999953, 50.700005564000037 ], [ -120.381559777999954, 50.70058986300004 ], [ -120.381555858999917, 50.701369100000129 ], [ -120.38155460199998, 50.701594329000109 ], [ -120.381344027999944, 50.702151388000054 ], [ -120.382647393999889, 50.702375708000076 ], [ -120.382661332999987, 50.70237730000013 ], [ -120.382694933999915, 50.70238117600006 ], [ -120.384251456999948, 50.702560185000053 ], [ -120.384250327999922, 50.702604010000101 ], [ -120.384248979999938, 50.702659172 ], [ -120.384242498, 50.702828528000033 ], [ -120.384222101999981, 50.703360694000075 ], [ -120.384195376999969, 50.70450370000006 ], [ -120.384187711999971, 50.705238046000069 ], [ -120.384181015999957, 50.705876192000112 ], [ -120.384153919999974, 50.707384997000062 ], [ -120.383862927999971, 50.707382099000078 ], [ -120.383047010999945, 50.707156248000103 ], [ -120.38258713499998, 50.707026740000067 ], [ -120.382457260999914, 50.706990634000149 ], [ -120.381577749999934, 50.706746083000091 ], [ -120.381006927999977, 50.706588565000075 ], [ -120.380355190000017, 50.706408694000061 ], [ -120.380370668999959, 50.705601858000108 ], [ -120.380378498999931, 50.705192508000039 ], [ -120.38039098299997, 50.704469558000042 ], [ -120.380406033999947, 50.70361338700009 ], [ -120.380414718999958, 50.70294964900004 ], [ -120.38041745799994, 50.702740802000058 ], [ -120.380509913, 50.70252549000007 ], [ -120.38068249599999, 50.702123436000079 ], [ -120.380718014999943, 50.702044102000094 ], [ -120.379169910999963, 50.701799298000054 ], [ -120.378403399999925, 50.701679504 ], [ -120.378536699999984, 50.701297001000057 ], [ -120.378528000999964, 50.70057299900003 ], [ -120.38037299299999, 50.700602994000057 ], [ -120.380390580000011, 50.699998720000082 ], [ -120.380412112000016, 50.699260545000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139810999", "BldgCostT": "92209999", "sL_LossRatio": "0.98497291117188", "sL_AssetLoss": "11829.72178", "sL_BldgLoss": "11651.9555", "sL_StrLoss": "11524.6991", "sL_NStrLoss": "127.2564", "sL_ContLoss": "177.76628", "geom_point": "0101000020E6100000ACF7F123C0185EC08F90FD03175A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.38550440899995, 50.705239205000098 ], [ -120.385530088999985, 50.704512397000023 ], [ -120.384195376999969, 50.70450370000006 ], [ -120.384222101999981, 50.703360694000075 ], [ -120.384242498, 50.702828528000033 ], [ -120.384248979999938, 50.702659172 ], [ -120.384250327999922, 50.702604010000101 ], [ -120.384251456999948, 50.702560185000053 ], [ -120.385227662999924, 50.702673822000058 ], [ -120.385343943999928, 50.702687342000083 ], [ -120.385725212999944, 50.702706556000074 ], [ -120.385741459999934, 50.702706124 ], [ -120.38615586, 50.702694908000126 ], [ -120.386677452999976, 50.702614864000047 ], [ -120.38743714099995, 50.702426967000093 ], [ -120.387625329999963, 50.702422016000121 ], [ -120.38804559099998, 50.702295425000088 ], [ -120.388786087999918, 50.702072310000105 ], [ -120.38877619599999, 50.702707086000068 ], [ -120.388761779999967, 50.703631522000116 ], [ -120.388747689999917, 50.704533919000049 ], [ -120.388731713999903, 50.70542160800008 ], [ -120.38550440899995, 50.705239205000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54099750", "BldgCostT": "35895000", "sL_LossRatio": "0.999759816883456", "sL_AssetLoss": "8178.38501", "sL_BldgLoss": "8176.4207", "sL_StrLoss": "8164.0606", "sL_NStrLoss": "12.3601", "sL_ContLoss": "1.96431", "geom_point": "0101000020E6100000B151E79BBE185EC08935012BAC594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.387414912999972, 50.698385395000109 ], [ -120.388845603999954, 50.697933045000042 ], [ -120.388837005999946, 50.698524572000046 ], [ -120.388836098999946, 50.698587457000123 ], [ -120.388821412999974, 50.699600586000059 ], [ -120.388815522999963, 50.699954012 ], [ -120.388814770999929, 50.699998926000042 ], [ -120.388806595999966, 50.700490203000136 ], [ -120.388793451999945, 50.701639271000033 ], [ -120.388786087999918, 50.702072310000105 ], [ -120.38804559099998, 50.702295425000088 ], [ -120.387625329999963, 50.702422016000121 ], [ -120.38743714099995, 50.702426967000093 ], [ -120.386677452999976, 50.702614864000047 ], [ -120.38615586, 50.702694908000126 ], [ -120.385741459999934, 50.702706124 ], [ -120.385725212999944, 50.702706556000074 ], [ -120.385343943999928, 50.702687342000083 ], [ -120.385227662999924, 50.702673822000058 ], [ -120.384251456999948, 50.702560185000053 ], [ -120.384256302999916, 50.701501706000101 ], [ -120.384290104999963, 50.7007447 ], [ -120.384313474999942, 50.700047496000103 ], [ -120.384313375999938, 50.700004736000068 ], [ -120.384311304999969, 50.699305784000067 ], [ -120.384466608999986, 50.699313605000015 ], [ -120.385084538999976, 50.699112608000057 ], [ -120.38545471599997, 50.698992202000078 ], [ -120.386826304999943, 50.698567616000076 ], [ -120.386975222999951, 50.69852151400007 ], [ -120.387414912999972, 50.698385395000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290645916", "BldgCostT": "194286666", "sL_LossRatio": "0.987464337167233", "sL_AssetLoss": "22056.26808", "sL_BldgLoss": "21779.77814", "sL_StrLoss": "21584.65424", "sL_NStrLoss": "195.1239", "sL_ContLoss": "276.48994", "geom_point": "0101000020E610000060947FB167185EC0AF1198B986594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.382647393999889, 50.702375708000076 ], [ -120.381344027999944, 50.702151388000054 ], [ -120.38155460199998, 50.701594329000109 ], [ -120.381555858999917, 50.701369100000129 ], [ -120.381559777999954, 50.70058986300004 ], [ -120.381563029999953, 50.700005564000037 ], [ -120.381564027999914, 50.69981964800008 ], [ -120.381565057000017, 50.699279047000118 ], [ -120.380412112000016, 50.699260545000108 ], [ -120.380390580000011, 50.699998720000082 ], [ -120.38037299299999, 50.700602994000057 ], [ -120.378528000999964, 50.70057299900003 ], [ -120.378536699999984, 50.701297001000057 ], [ -120.378403399999925, 50.701679504 ], [ -120.377699792999948, 50.701567510000046 ], [ -120.376381790999915, 50.70136940900008 ], [ -120.375824215999913, 50.701283499000098 ], [ -120.375113901999924, 50.701179189000079 ], [ -120.375115, 50.700435008000156 ], [ -120.375129572999967, 50.700005696000076 ], [ -120.375139212999898, 50.699721596000053 ], [ -120.372664216999979, 50.699289298000096 ], [ -120.372647894999943, 50.698604598000074 ], [ -120.373023027, 50.698268316000068 ], [ -120.373023604999958, 50.698286205000066 ], [ -120.373411893999901, 50.698447095000098 ], [ -120.374826685999935, 50.698801731000039 ], [ -120.375309690999927, 50.698922795000072 ], [ -120.376637279999926, 50.699023892000064 ], [ -120.377359023999958, 50.698987378000055 ], [ -120.37835479, 50.698936998000036 ], [ -120.37885464499999, 50.698746215000071 ], [ -120.378952557999938, 50.698708848000145 ], [ -120.379179310999987, 50.698622300000117 ], [ -120.379883099999986, 50.698214898000096 ], [ -120.380417683999951, 50.698076907000043 ], [ -120.381549286999956, 50.697784811000083 ], [ -120.382769296, 50.697740700000047 ], [ -120.383173252999967, 50.697753747000029 ], [ -120.384578478999941, 50.697799098000097 ], [ -120.38587098, 50.697468207 ], [ -120.3859927, 50.697437055000115 ], [ -120.386130786999942, 50.697401699000096 ], [ -120.386890362999949, 50.697081321000034 ], [ -120.387059220999987, 50.697010105000054 ], [ -120.387441587999959, 50.69673949000002 ], [ -120.387821499999973, 50.696297999000066 ], [ -120.388531444999941, 50.695720866000059 ], [ -120.388664224999943, 50.695674663000041 ], [ -120.389025488999962, 50.695633952000023 ], [ -120.389032998999966, 50.695498744000055 ], [ -120.38936108899992, 50.695506097000148 ], [ -120.388875152999972, 50.695858994000012 ], [ -120.388875109, 50.695859294000059 ], [ -120.388868088999956, 50.696312209000084 ], [ -120.388845603999954, 50.697933045000042 ], [ -120.387414912999972, 50.698385395000109 ], [ -120.386975222999951, 50.69852151400007 ], [ -120.386826304999943, 50.698567616000076 ], [ -120.38545471599997, 50.698992202000078 ], [ -120.385084538999976, 50.699112608000057 ], [ -120.384466608999986, 50.699313605000015 ], [ -120.384311304999969, 50.699305784000067 ], [ -120.384313375999938, 50.700004736000068 ], [ -120.384313474999942, 50.700047496000103 ], [ -120.384290104999963, 50.7007447 ], [ -120.384256302999916, 50.701501706000101 ], [ -120.384251456999948, 50.702560185000053 ], [ -120.382694933999915, 50.70238117600006 ], [ -120.382661332999987, 50.70237730000013 ], [ -120.382647393999889, 50.702375708000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183421084", "BldgCostT": "121623334", "sL_LossRatio": "0.984032681332253", "sL_AssetLoss": "14203.31082", "sL_BldgLoss": "13976.52203", "sL_StrLoss": "13887.6843", "sL_NStrLoss": "88.83773", "sL_ContLoss": "226.78879", "geom_point": "0101000020E610000044A6018B55195EC0BC513B2E70594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.39312031499999, 50.700073876000012 ], [ -120.393131192999988, 50.699532885000075 ], [ -120.393131511999968, 50.699371598000027 ], [ -120.39315209199998, 50.6979805060001 ], [ -120.392961222999986, 50.697973616000084 ], [ -120.392020819999985, 50.697823503000102 ], [ -120.391613486999972, 50.697808419000111 ], [ -120.39075049899995, 50.697778477000078 ], [ -120.389632308999978, 50.697743793000015 ], [ -120.389311673999927, 50.697785324000037 ], [ -120.388845603999954, 50.697933045000042 ], [ -120.388868088999956, 50.696312209000084 ], [ -120.388875109, 50.695859294000059 ], [ -120.388875152999972, 50.695858994000012 ], [ -120.38936108899992, 50.695506097000148 ], [ -120.390305960999967, 50.69552726600012 ], [ -120.390298012999963, 50.69567038499999 ], [ -120.390367825999974, 50.69567966300005 ], [ -120.390844926999989, 50.695809184000112 ], [ -120.39128575899997, 50.695819056000069 ], [ -120.392566983000023, 50.696242406000131 ], [ -120.393492503999965, 50.696407605000047 ], [ -120.39372297099996, 50.696538998000037 ], [ -120.39375490799992, 50.696557202000129 ], [ -120.394437600999964, 50.696733799000071 ], [ -120.395182911999939, 50.697101205000138 ], [ -120.39601752099999, 50.697363301000067 ], [ -120.397112790999984, 50.697522803000055 ], [ -120.397455916999917, 50.697467197000044 ], [ -120.397908403999978, 50.697504305000038 ], [ -120.399604605999968, 50.698333204000072 ], [ -120.400456008, 50.698532494000091 ], [ -120.400624385999919, 50.698596212000098 ], [ -120.401163704999959, 50.698800292000058 ], [ -120.403086415999937, 50.69911220200008 ], [ -120.403192785000016, 50.699113583000077 ], [ -120.406852702999942, 50.699160968000051 ], [ -120.40734663799999, 50.699167354000082 ], [ -120.404368298999913, 50.699792407000096 ], [ -120.404356777999979, 50.699911986000096 ], [ -120.404348612999911, 50.699996547000111 ], [ -120.404334077999948, 50.700146591000113 ], [ -120.404354497999961, 50.700210710000071 ], [ -120.404204396999887, 50.70018339900011 ], [ -120.403359175999924, 50.70012470700005 ], [ -120.401639795, 50.700011303000039 ], [ -120.400738353999941, 50.699951162000083 ], [ -120.400400340999965, 50.699928627000084 ], [ -120.40000937399995, 50.699902545000143 ], [ -120.399995197999914, 50.699901600000025 ], [ -120.397811564999984, 50.699773182000051 ], [ -120.397769306999962, 50.699770696000044 ], [ -120.397767711999933, 50.699850061000106 ], [ -120.39776473399999, 50.700000724000105 ], [ -120.397746660999957, 50.700909152000051 ], [ -120.397734081999928, 50.701540490000106 ], [ -120.393100794999938, 50.701512811000036 ], [ -120.393105851999948, 50.701137828000178 ], [ -120.39312031499999, 50.700073876000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156426970", "BldgCostT": "104130413", "sL_LossRatio": "0.977510601339493", "sL_AssetLoss": "12852.51973", "sL_BldgLoss": "12563.47429", "sL_StrLoss": "12410.78109", "sL_NStrLoss": "152.6932", "sL_ContLoss": "289.04544", "geom_point": "0101000020E61000006250BF6E05195EC07E14E081A2594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.388845603999954, 50.697933045000042 ], [ -120.389311673999927, 50.697785324000037 ], [ -120.389632308999978, 50.697743793000015 ], [ -120.39075049899995, 50.697778477000078 ], [ -120.391613486999972, 50.697808419000111 ], [ -120.392020819999985, 50.697823503000102 ], [ -120.392961222999986, 50.697973616000084 ], [ -120.39315209199998, 50.6979805060001 ], [ -120.393131511999968, 50.699371598000027 ], [ -120.393131192999988, 50.699532885000075 ], [ -120.39312031499999, 50.700073876000012 ], [ -120.393105851999948, 50.701137828000178 ], [ -120.393100794999938, 50.701512811000036 ], [ -120.393090867999987, 50.702405726000073 ], [ -120.393087216999945, 50.702733989000073 ], [ -120.390225898999958, 50.702716995000088 ], [ -120.38877619599999, 50.702707086000068 ], [ -120.388786087999918, 50.702072310000105 ], [ -120.388793451999945, 50.701639271000033 ], [ -120.388806595999966, 50.700490203000136 ], [ -120.388814770999929, 50.699998926000042 ], [ -120.388815522999963, 50.699954012 ], [ -120.388821412999974, 50.699600586000059 ], [ -120.388836098999946, 50.698587457000123 ], [ -120.388837005999946, 50.698524572000046 ], [ -120.388845603999954, 50.697933045000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114510584", "BldgCostT": "70483334", "sL_LossRatio": "0.975015491168146", "sL_AssetLoss": "11457.67371", "sL_BldgLoss": "11171.40936", "sL_StrLoss": "11050.93846", "sL_NStrLoss": "120.4709", "sL_ContLoss": "286.26435", "geom_point": "0101000020E610000076E5D44A38195EC04EB26A4A115A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.393034112999942, 50.704849684000116 ], [ -120.393003305999926, 50.704562495000104 ], [ -120.391675499999934, 50.704554311000045 ], [ -120.39023179499999, 50.704541998000131 ], [ -120.388747689999917, 50.704533919000049 ], [ -120.388761779999967, 50.703631522000116 ], [ -120.38877619599999, 50.702707086000068 ], [ -120.390225898999958, 50.702716995000088 ], [ -120.393087216999945, 50.702733989000073 ], [ -120.393090867999987, 50.702405726000073 ], [ -120.393100794999938, 50.701512811000036 ], [ -120.397734081999928, 50.701540490000106 ], [ -120.397729861999935, 50.701772418000118 ], [ -120.397722823, 50.702159034000069 ], [ -120.397712311999925, 50.702737799000012 ], [ -120.397701414999958, 50.703355691000105 ], [ -120.397693702999959, 50.703792796000052 ], [ -120.397690588, 50.703967539000089 ], [ -120.397689195999959, 50.70404681400008 ], [ -120.39757071799994, 50.704369710000051 ], [ -120.397570337000019, 50.704409497000029 ], [ -120.397568693999972, 50.704590415000013 ], [ -120.397563314999914, 50.70528616100011 ], [ -120.397559992999945, 50.705716306000092 ], [ -120.395918622999957, 50.705704895000061 ], [ -120.395196208999948, 50.70569740300008 ], [ -120.394855007999965, 50.705743299000062 ], [ -120.394367611999925, 50.705844883000033 ], [ -120.39294750899991, 50.70614289500007 ], [ -120.393034112999942, 50.704849684000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153866833", "BldgCostT": "100693333", "sL_LossRatio": "0.9999789830118", "sL_AssetLoss": "16089.270108", "sL_BldgLoss": "16088.93196", "sL_StrLoss": "16087.04916", "sL_NStrLoss": "1.8828", "sL_ContLoss": "0.338148", "geom_point": "0101000020E6100000DE6F27F012195EC08908DE147F5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.388705464999958, 50.706572059000059 ], [ -120.388731713999903, 50.70542160800008 ], [ -120.388747689999917, 50.704533919000049 ], [ -120.39023179499999, 50.704541998000131 ], [ -120.391675499999934, 50.704554311000045 ], [ -120.393003305999926, 50.704562495000104 ], [ -120.393034112999942, 50.704849684000116 ], [ -120.39294750899991, 50.70614289500007 ], [ -120.394367611999925, 50.705844883000033 ], [ -120.394855007999965, 50.705743299000062 ], [ -120.395196208999948, 50.70569740300008 ], [ -120.395918622999957, 50.705704895000061 ], [ -120.395889622000013, 50.708151608000065 ], [ -120.390056518, 50.709538610000074 ], [ -120.39003102099997, 50.709538283000029 ], [ -120.388637505999938, 50.709520282000064 ], [ -120.388665783999912, 50.708409812000113 ], [ -120.388674696999956, 50.707919188000048 ], [ -120.388705464999958, 50.706572059000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125465541", "BldgCostT": "80603048", "sL_LossRatio": "0.995675422872878", "sL_AssetLoss": "12820.0975888", "sL_BldgLoss": "12764.656088", "sL_StrLoss": "12744.012008", "sL_NStrLoss": "20.64408", "sL_ContLoss": "55.4415008", "geom_point": "0101000020E610000001C3C1F7A1195EC0AB14D8EF4B5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.399997103999951, 50.70275592500014 ], [ -120.404309375999944, 50.702789996000071 ], [ -120.404292595999934, 50.703720800000092 ], [ -120.40429009599994, 50.703910797000049 ], [ -120.404277877999959, 50.704521094000022 ], [ -120.4042736869999, 50.704748007000042 ], [ -120.404257379999976, 50.705651796000026 ], [ -120.404257487999985, 50.705764493000068 ], [ -120.404256290999967, 50.705822142000052 ], [ -120.404242994999933, 50.706449496000062 ], [ -120.404221306999929, 50.707817993000091 ], [ -120.40359168899991, 50.707817895000083 ], [ -120.402868884999961, 50.707813089000091 ], [ -120.401596395999917, 50.707805993000086 ], [ -120.39999959, 50.707794857000088 ], [ -120.399577195999953, 50.707791892000081 ], [ -120.39828059899996, 50.707783518000078 ], [ -120.397546485999939, 50.707778114000043 ], [ -120.396731891999963, 50.707950698000076 ], [ -120.395889622000013, 50.708151608000065 ], [ -120.395918622999957, 50.705704895000061 ], [ -120.397559992999945, 50.705716306000092 ], [ -120.397563314999914, 50.70528616100011 ], [ -120.397568693999972, 50.704590415000013 ], [ -120.397570337000019, 50.704409497000029 ], [ -120.39757071799994, 50.704369710000051 ], [ -120.397689195999959, 50.70404681400008 ], [ -120.397690588, 50.703967539000089 ], [ -120.397693702999959, 50.703792796000052 ], [ -120.397701414999958, 50.703355691000105 ], [ -120.397712311999925, 50.702737799000012 ], [ -120.399997103999951, 50.70275592500014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124540251", "BldgCostT": "78080001", "sL_LossRatio": "0.990466471404718", "sL_AssetLoss": "10413.959743", "sL_BldgLoss": "10314.67796", "sL_StrLoss": "10276.67069", "sL_NStrLoss": "38.00727", "sL_ContLoss": "99.281783", "geom_point": "0101000020E61000006D3F19E383195EC042479B78C15A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.404221306999929, 50.707817993000091 ], [ -120.40471428499994, 50.707819297000079 ], [ -120.404708318999894, 50.709914899000132 ], [ -120.404705688999968, 50.71010275800009 ], [ -120.403977505999961, 50.71009956300005 ], [ -120.397395687999904, 50.710010509000035 ], [ -120.397367969999934, 50.710010116000021 ], [ -120.391995449999911, 50.709847984000092 ], [ -120.388597034000014, 50.709768408000038 ], [ -120.388637505999938, 50.709520282000064 ], [ -120.39003102099997, 50.709538283000029 ], [ -120.390056518, 50.709538610000074 ], [ -120.395889622000013, 50.708151608000065 ], [ -120.396731891999963, 50.707950698000076 ], [ -120.397546485999939, 50.707778114000043 ], [ -120.39828059899996, 50.707783518000078 ], [ -120.399577195999953, 50.707791892000081 ], [ -120.39999959, 50.707794857000088 ], [ -120.401596395999917, 50.707805993000086 ], [ -120.402868884999961, 50.707813089000091 ], [ -120.40359168899991, 50.707817895000083 ], [ -120.404221306999929, 50.707817993000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129898250", "BldgCostT": "88640000", "sL_LossRatio": "0.997362843897661", "sL_AssetLoss": "15868.343919", "sL_BldgLoss": "15826.496619", "sL_StrLoss": "15811.000619", "sL_NStrLoss": "15.496", "sL_ContLoss": "41.8473", "geom_point": "0101000020E6100000D9429083521A5EC02AD8674AC25A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.413934516999973, 50.71101373500008 ], [ -120.41070333099999, 50.710649104000048 ], [ -120.409976820999958, 50.710582040000126 ], [ -120.407522740999966, 50.710386702000065 ], [ -120.407520340999966, 50.710386576000133 ], [ -120.405237603, 50.710134822000043 ], [ -120.404705688999968, 50.71010275800009 ], [ -120.404708318999894, 50.709914899000132 ], [ -120.40471428499994, 50.707819297000079 ], [ -120.40530560299996, 50.707818390000043 ], [ -120.405909222999952, 50.707821605000078 ], [ -120.406372935999912, 50.707825593000088 ], [ -120.406472007, 50.707826430000111 ], [ -120.407350018999963, 50.707833989000058 ], [ -120.407793091999949, 50.707837798000085 ], [ -120.407821020999975, 50.707273303000093 ], [ -120.408425306999931, 50.707247785000085 ], [ -120.40974811199996, 50.707261895000023 ], [ -120.410434570999939, 50.706907996000112 ], [ -120.413207401999927, 50.706946603000112 ], [ -120.415882402999983, 50.70698378600008 ], [ -120.415872619999973, 50.707608691000154 ], [ -120.41586810799997, 50.707896802000079 ], [ -120.41586793299993, 50.70794094700004 ], [ -120.415867395999925, 50.708073303000063 ], [ -120.415855693999944, 50.708771087000045 ], [ -120.415853413999983, 50.708937599000095 ], [ -120.415850953999907, 50.708993920000083 ], [ -120.415821781999952, 50.709670398000142 ], [ -120.415802628999984, 50.710109208000098 ], [ -120.415785202999984, 50.710875992000048 ], [ -120.420804805999978, 50.711289601000011 ], [ -120.42184535399997, 50.711329164000091 ], [ -120.421860960999936, 50.711374623000097 ], [ -120.421964810999967, 50.711683368000116 ], [ -120.421432988999968, 50.711640540000097 ], [ -120.420537418999984, 50.71156844900004 ], [ -120.420529022999958, 50.711567862000074 ], [ -120.420514674999978, 50.711567056000078 ], [ -120.416838832999943, 50.711315554000066 ], [ -120.415768370999899, 50.711201953000064 ], [ -120.413934516999973, 50.71101373500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158529167", "BldgCostT": "103171667", "sL_LossRatio": "0.997067141166453", "sL_AssetLoss": "17150.50156", "sL_BldgLoss": "17100.20156", "sL_StrLoss": "17082.00156", "sL_NStrLoss": "18.2", "sL_ContLoss": "50.3", "geom_point": "0101000020E61000008FA3A44D361A5EC06F33EC62605A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.415362047, 50.704868129000062 ], [ -120.415914882, 50.704876992000116 ], [ -120.41591229699992, 50.705182296000132 ], [ -120.415911358999949, 50.705253010000028 ], [ -120.415905584999962, 50.705691997000024 ], [ -120.415900379999982, 50.705962100000072 ], [ -120.415882402999983, 50.70698378600008 ], [ -120.413207401999927, 50.706946603000112 ], [ -120.410434570999939, 50.706907996000112 ], [ -120.40974811199996, 50.707261895000023 ], [ -120.408425306999931, 50.707247785000085 ], [ -120.407821020999975, 50.707273303000093 ], [ -120.407793091999949, 50.707837798000085 ], [ -120.407350018999963, 50.707833989000058 ], [ -120.406472007, 50.707826430000111 ], [ -120.406372935999912, 50.707825593000088 ], [ -120.405909222999952, 50.707821605000078 ], [ -120.40530560299996, 50.707818390000043 ], [ -120.40471428499994, 50.707819297000079 ], [ -120.404221306999929, 50.707817993000091 ], [ -120.404242994999933, 50.706449496000062 ], [ -120.404256290999967, 50.705822142000052 ], [ -120.404257487999985, 50.705764493000068 ], [ -120.404257379999976, 50.705651796000026 ], [ -120.4042736869999, 50.704748007000042 ], [ -120.410227705999958, 50.704785609000041 ], [ -120.415362047, 50.704868129000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187727751", "BldgCostT": "124370001", "sL_LossRatio": "0.996687683714319", "sL_AssetLoss": "26826.47801", "sL_BldgLoss": "26737.62023", "sL_StrLoss": "26693.47111", "sL_NStrLoss": "44.14912", "sL_ContLoss": "88.85778", "geom_point": "0101000020E610000004156E5C331A5EC08292B00CFD594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.404309375999944, 50.702789996000071 ], [ -120.404385790999953, 50.700301508000088 ], [ -120.404354497999961, 50.700210710000071 ], [ -120.40629309699996, 50.700582902000136 ], [ -120.406804239999943, 50.700681018000104 ], [ -120.408041598999901, 50.700918505000082 ], [ -120.408424648999983, 50.700991759000082 ], [ -120.409377441999979, 50.701172480000068 ], [ -120.409736387999928, 50.701240566000102 ], [ -120.410007103999931, 50.701291885000089 ], [ -120.41049118799999, 50.701386503000037 ], [ -120.411071302999972, 50.701498509000054 ], [ -120.411327989999933, 50.701524886000058 ], [ -120.411989213000012, 50.701567104000105 ], [ -120.41197388399992, 50.702372704000069 ], [ -120.415939220999945, 50.70253910400006 ], [ -120.41593710799999, 50.702909294000058 ], [ -120.415924267999955, 50.704003498000105 ], [ -120.415924805999964, 50.704170206000121 ], [ -120.415920315999955, 50.704490865000103 ], [ -120.415914882, 50.704876992000116 ], [ -120.415362047, 50.704868129000062 ], [ -120.410227705999958, 50.704785609000041 ], [ -120.4042736869999, 50.704748007000042 ], [ -120.404277877999959, 50.704521094000022 ], [ -120.40429009599994, 50.703910797000049 ], [ -120.404292595999934, 50.703720800000092 ], [ -120.404309375999944, 50.702789996000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "238604416", "BldgCostT": "159691666", "sL_LossRatio": "0.963128807059123", "sL_AssetLoss": "11692.52757", "sL_BldgLoss": "11261.41013", "sL_StrLoss": "11088.99263", "sL_NStrLoss": "172.4175", "sL_ContLoss": "431.11744", "geom_point": "0101000020E610000094572A7FA9195EC01FED8F62C6594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.397734081999928, 50.701540490000106 ], [ -120.397746660999957, 50.700909152000051 ], [ -120.39776473399999, 50.700000724000105 ], [ -120.397767711999933, 50.699850061000106 ], [ -120.397769306999962, 50.699770696000044 ], [ -120.397811564999984, 50.699773182000051 ], [ -120.399995197999914, 50.699901600000025 ], [ -120.40000937399995, 50.699902545000143 ], [ -120.400400340999965, 50.699928627000084 ], [ -120.400738353999941, 50.699951162000083 ], [ -120.401639795, 50.700011303000039 ], [ -120.403359175999924, 50.70012470700005 ], [ -120.404204396999887, 50.70018339900011 ], [ -120.404354497999961, 50.700210710000071 ], [ -120.404385790999953, 50.700301508000088 ], [ -120.404309375999944, 50.702789996000071 ], [ -120.399997103999951, 50.70275592500014 ], [ -120.397712311999925, 50.702737799000012 ], [ -120.397722823, 50.702159034000069 ], [ -120.397729861999935, 50.701772418000118 ], [ -120.397734081999928, 50.701540490000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165315834", "BldgCostT": "110153334", "sL_LossRatio": "0.999875384720308", "sL_AssetLoss": "23316.08136", "sL_BldgLoss": "23313.17582", "sL_StrLoss": "23295.57885", "sL_NStrLoss": "17.59697", "sL_ContLoss": "2.90554", "geom_point": "0101000020E61000009F0F2ACC961A5EC04A5AF97ECD594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.41593710799999, 50.702909294000058 ], [ -120.415939220999945, 50.70253910400006 ], [ -120.41197388399992, 50.702372704000069 ], [ -120.411989213000012, 50.701567104000105 ], [ -120.411327989999933, 50.701524886000058 ], [ -120.411071302999972, 50.701498509000054 ], [ -120.41049118799999, 50.701386503000037 ], [ -120.410007103999931, 50.701291885000089 ], [ -120.409736387999928, 50.701240566000102 ], [ -120.409377441999979, 50.701172480000068 ], [ -120.408424648999983, 50.700991759000082 ], [ -120.408041598999901, 50.700918505000082 ], [ -120.406804239999943, 50.700681018000104 ], [ -120.40629309699996, 50.700582902000136 ], [ -120.404354497999961, 50.700210710000071 ], [ -120.404334077999948, 50.700146591000113 ], [ -120.404348612999911, 50.699996547000111 ], [ -120.404356777999979, 50.699911986000096 ], [ -120.404368298999913, 50.699792407000096 ], [ -120.40734663799999, 50.699167354000082 ], [ -120.408685811999987, 50.699184654000135 ], [ -120.409696210999968, 50.699197695000038 ], [ -120.410700480999949, 50.699210501000096 ], [ -120.411482759999956, 50.699340468000081 ], [ -120.412131908, 50.699448302000057 ], [ -120.412669655999949, 50.699638972000052 ], [ -120.412758508999929, 50.699670484000073 ], [ -120.41301679599998, 50.699722647000094 ], [ -120.413011904999976, 50.699811496000116 ], [ -120.41351167199997, 50.699822592000054 ], [ -120.413809279999938, 50.699882695000049 ], [ -120.414273824999952, 50.700042981000074 ], [ -120.414270177999953, 50.700109273000045 ], [ -120.414479416999896, 50.70011391600012 ], [ -120.415031184999947, 50.700304290000162 ], [ -120.415168377999933, 50.700327301000087 ], [ -120.41552952, 50.700387818000067 ], [ -120.415528464999966, 50.700407036000115 ], [ -120.415661893000021, 50.700410001000101 ], [ -120.416084995999981, 50.700480903000063 ], [ -120.416480758999924, 50.700497032000051 ], [ -120.416607595999977, 50.700502205000099 ], [ -120.416897389999988, 50.700624697000066 ], [ -120.417655799, 50.700768591000042 ], [ -120.418989568999976, 50.700860259000152 ], [ -120.419955014999971, 50.700926603000049 ], [ -120.420612412999958, 50.700906847000077 ], [ -120.420806688999974, 50.700901003000091 ], [ -120.42228708199994, 50.700510795000142 ], [ -120.422658991999981, 50.700177514000067 ], [ -120.422689147999975, 50.700169093000071 ], [ -120.422928657999989, 50.700102234000099 ], [ -120.422717107999958, 50.70046468900005 ], [ -120.422791732999926, 50.700995624000015 ], [ -120.422935598999956, 50.702019185000061 ], [ -120.423068805999918, 50.702946692000118 ], [ -120.42308941499999, 50.703125110000073 ], [ -120.423120075999947, 50.70339079700009 ], [ -120.423036473999929, 50.703548801000096 ], [ -120.42253178699994, 50.704212797000153 ], [ -120.415924805999964, 50.704170206000121 ], [ -120.415924267999955, 50.704003498000105 ], [ -120.41593710799999, 50.702909294000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148888500", "BldgCostT": "98790000", "sL_LossRatio": "0.999988403329188", "sL_AssetLoss": "15616.5509", "sL_BldgLoss": "15616.3698", "sL_StrLoss": "15615.0588", "sL_NStrLoss": "1.311", "sL_ContLoss": "0.1811", "geom_point": "0101000020E6100000AE861FF7C81A5EC0B14DAE528F5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.415924805999964, 50.704170206000121 ], [ -120.42253178699994, 50.704212797000153 ], [ -120.422196621999902, 50.704644707000085 ], [ -120.421741496999971, 50.705218397000102 ], [ -120.421669465999955, 50.705309429000053 ], [ -120.421429408999956, 50.705612803000093 ], [ -120.42112839699999, 50.705998711000099 ], [ -120.421022785999952, 50.706276302000084 ], [ -120.420866479999958, 50.706994706000067 ], [ -120.4207832069999, 50.707377980000075 ], [ -120.420728797, 50.707643810000043 ], [ -120.420731578999963, 50.708100799000064 ], [ -120.420736857999884, 50.708381822000071 ], [ -120.420750129999988, 50.709092823000034 ], [ -120.420757679999952, 50.709408585000034 ], [ -120.420775191999937, 50.710146492000028 ], [ -120.420785684999913, 50.710552010000065 ], [ -120.420804805999978, 50.711289601000011 ], [ -120.415785202999984, 50.710875992000048 ], [ -120.415802628999984, 50.710109208000098 ], [ -120.415821781999952, 50.709670398000142 ], [ -120.415850953999907, 50.708993920000083 ], [ -120.415853413999983, 50.708937599000095 ], [ -120.415855693999944, 50.708771087000045 ], [ -120.415867395999925, 50.708073303000063 ], [ -120.41586793299993, 50.70794094700004 ], [ -120.41586810799997, 50.707896802000079 ], [ -120.415872619999973, 50.707608691000154 ], [ -120.415882402999983, 50.70698378600008 ], [ -120.415900379999982, 50.705962100000072 ], [ -120.415905584999962, 50.705691997000024 ], [ -120.415911358999949, 50.705253010000028 ], [ -120.41591229699992, 50.705182296000132 ], [ -120.415914882, 50.704876992000116 ], [ -120.415920315999955, 50.704490865000103 ], [ -120.415924805999964, 50.704170206000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14101667", "BldgCostT": "8041667", "sL_LossRatio": "0.87656616345956", "sL_AssetLoss": "623.91077", "sL_BldgLoss": "546.89907", "sL_StrLoss": "518.15969", "sL_NStrLoss": "28.73938", "sL_ContLoss": "77.0117", "geom_point": "0101000020E61000007B8505F7831B5EC08C15905179594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.43081299499994, 50.698638535000072 ], [ -120.431777308999969, 50.698569377000062 ], [ -120.431272920999945, 50.699332640000058 ], [ -120.429412982999949, 50.699294995000095 ], [ -120.428918728999989, 50.699312653000028 ], [ -120.428478227999975, 50.699328405000074 ], [ -120.428155206000014, 50.699434806000035 ], [ -120.42802723299998, 50.699513212000063 ], [ -120.428108509000012, 50.698859753000079 ], [ -120.428185102999961, 50.698833110000074 ], [ -120.42962948899995, 50.698820194000042 ], [ -120.429947417999955, 50.69870059600008 ], [ -120.43081299499994, 50.698638535000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "378883584", "BldgCostT": "233363334", "sL_LossRatio": "0.988591284149044", "sL_AssetLoss": "30410.4957589", "sL_BldgLoss": "30063.5510539", "sL_StrLoss": "29924.7617239", "sL_NStrLoss": "138.78933", "sL_ContLoss": "346.944705", "geom_point": "0101000020E61000006303A746411B5EC0DF4A0216715A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.421860960999936, 50.711374623000097 ], [ -120.42184535399997, 50.711329164000091 ], [ -120.420804805999978, 50.711289601000011 ], [ -120.420785684999913, 50.710552010000065 ], [ -120.420775191999937, 50.710146492000028 ], [ -120.420757679999952, 50.709408585000034 ], [ -120.420750129999988, 50.709092823000034 ], [ -120.420736857999884, 50.708381822000071 ], [ -120.420731578999963, 50.708100799000064 ], [ -120.420728797, 50.707643810000043 ], [ -120.4207832069999, 50.707377980000075 ], [ -120.420866479999958, 50.706994706000067 ], [ -120.421022785999952, 50.706276302000084 ], [ -120.42112839699999, 50.705998711000099 ], [ -120.421429408999956, 50.705612803000093 ], [ -120.421669465999955, 50.705309429000053 ], [ -120.421741496999971, 50.705218397000102 ], [ -120.422196621999902, 50.704644707000085 ], [ -120.42253178699994, 50.704212797000153 ], [ -120.423036473999929, 50.703548801000096 ], [ -120.423120075999947, 50.70339079700009 ], [ -120.42308941499999, 50.703125110000073 ], [ -120.423068805999918, 50.702946692000118 ], [ -120.422935598999956, 50.702019185000061 ], [ -120.422791732999926, 50.700995624000015 ], [ -120.422717107999958, 50.70046468900005 ], [ -120.422928657999989, 50.700102234000099 ], [ -120.423046602999989, 50.700069305000099 ], [ -120.424289709999954, 50.699627807000105 ], [ -120.42506010299999, 50.699501649000048 ], [ -120.425055500999932, 50.699538618000098 ], [ -120.425348174999939, 50.699545087000097 ], [ -120.425333407999958, 50.699814603000071 ], [ -120.425757779999955, 50.699823981000058 ], [ -120.425743015999927, 50.700093497000069 ], [ -120.427432889999977, 50.700130824000077 ], [ -120.427186422999966, 50.701294809000018 ], [ -120.427109628999915, 50.702048708000113 ], [ -120.428157549, 50.702055178000158 ], [ -120.429235403999925, 50.702060423000027 ], [ -120.429708500999965, 50.702084077000059 ], [ -120.429868132999928, 50.702115841000115 ], [ -120.430077359, 50.702157475000078 ], [ -120.43040235199993, 50.702286358000045 ], [ -120.430686097999967, 50.702484353000095 ], [ -120.430872934999954, 50.702718951000058 ], [ -120.430973892999958, 50.703004218000046 ], [ -120.430956103, 50.705021626000061 ], [ -120.430908754999933, 50.705481879000061 ], [ -120.430853723999974, 50.706016668000068 ], [ -120.430809303000032, 50.706315448000083 ], [ -120.427267361, 50.706138357000036 ], [ -120.427325321999945, 50.705672483000114 ], [ -120.427104786999976, 50.705661453000097 ], [ -120.427151703999954, 50.705284357000096 ], [ -120.426939607999941, 50.705273749000135 ], [ -120.426976415999974, 50.704977909000029 ], [ -120.426750467999938, 50.70497291700012 ], [ -120.42667665799992, 50.706320499000071 ], [ -120.42625223, 50.706311125000084 ], [ -120.426089798999911, 50.709275802000029 ], [ -120.426514256999937, 50.709285178000115 ], [ -120.426469960999938, 50.710093726000089 ], [ -120.426894424999915, 50.710103101000051 ], [ -120.426868364999947, 50.710578837000106 ], [ -120.42715492, 50.710593167000098 ], [ -120.42711456499994, 50.710917488000106 ], [ -120.427699077999975, 50.710930395000055 ], [ -120.427772870999945, 50.709582814000029 ], [ -120.428819313999952, 50.709605911000061 ], [ -120.42896976899999, 50.708396343000082 ], [ -120.429112333999967, 50.708403471000054 ], [ -120.429120002999966, 50.708263334000051 ], [ -120.42869555499999, 50.708253969000083 ], [ -120.428754560999977, 50.707175902000117 ], [ -120.430452318000022, 50.707213357000114 ], [ -120.430422833999941, 50.707752391000035 ], [ -120.430595097999941, 50.707756191000051 ], [ -120.430575808999961, 50.707885919000049 ], [ -120.43066188899995, 50.708713756000115 ], [ -120.430743615, 50.709560974000041 ], [ -120.430906530999977, 50.711249759000069 ], [ -120.431048385999944, 50.711591385000055 ], [ -120.431057442999972, 50.711613202000059 ], [ -120.431349138, 50.711896299000053 ], [ -120.43108230899999, 50.712064966000064 ], [ -120.43103888, 50.712146998000037 ], [ -120.431004277999989, 50.712212444000023 ], [ -120.431019190999947, 50.712364018000116 ], [ -120.431052267999945, 50.712699911000129 ], [ -120.421964810999967, 50.711683368000116 ], [ -120.421860960999936, 50.711374623000097 ] ], [ [ -120.428584986999951, 50.711489634000046 ], [ -120.42865193899999, 50.71095142700004 ], [ -120.428123548999949, 50.710939766000116 ], [ -120.42810879399994, 50.711209282000027 ], [ -120.428533267999939, 50.711218651000074 ], [ -120.428518513999933, 50.711488167 ], [ -120.428584986999951, 50.711489634000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47777583", "BldgCostT": "32478333", "sL_LossRatio": "0.999977988388124", "sL_AssetLoss": "378.754634", "sL_BldgLoss": "378.746297", "sL_StrLoss": "378.017297", "sL_NStrLoss": "0.729", "sL_ContLoss": "0.008337", "geom_point": "0101000020E6100000E29D3A5EDA1A5EC07FA724462A5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.412782018999948, 50.711702982000084 ], [ -120.412783310999927, 50.711679509000128 ], [ -120.412738870999959, 50.711678522000049 ], [ -120.412377649999968, 50.711473747000113 ], [ -120.411753614999924, 50.711200970000057 ], [ -120.411324288999964, 50.71106499200009 ], [ -120.411250136999953, 50.711041508000065 ], [ -120.41114519199999, 50.711008274000022 ], [ -120.41102863499999, 50.710984990000043 ], [ -120.410700248999916, 50.710919372000077 ], [ -120.410705514999947, 50.71082382400013 ], [ -120.410281049999924, 50.710814389000042 ], [ -120.410279238999976, 50.710847220000034 ], [ -120.409890422, 50.710812874000041 ], [ -120.409947374999973, 50.710660694000111 ], [ -120.409976820999958, 50.710582040000126 ], [ -120.41070333099999, 50.710649104000048 ], [ -120.413934516999973, 50.71101373500008 ], [ -120.415768370999899, 50.711201953000064 ], [ -120.416838832999943, 50.711315554000066 ], [ -120.420514674999978, 50.711567056000078 ], [ -120.420529022999958, 50.711567862000074 ], [ -120.420537418999984, 50.71156844900004 ], [ -120.421432988999968, 50.711640540000097 ], [ -120.421964810999967, 50.711683368000116 ], [ -120.431052267999945, 50.712699911000129 ], [ -120.431102889999934, 50.713213889 ], [ -120.431057989999928, 50.713437819000049 ], [ -120.430377373999931, 50.713424517000057 ], [ -120.429764582999951, 50.713346131000058 ], [ -120.429273571999957, 50.713222579000067 ], [ -120.429278965999984, 50.713124 ], [ -120.428843645999933, 50.713114394000087 ], [ -120.428297807999968, 50.712977040000062 ], [ -120.428066675999901, 50.712918876000046 ], [ -120.428015693999967, 50.712909553 ], [ -120.42802024799991, 50.712826380000145 ], [ -120.42749790699996, 50.71281484800005 ], [ -120.427174119999947, 50.71275562600011 ], [ -120.427186032999941, 50.712538120000069 ], [ -120.426913645999917, 50.712532105000058 ], [ -120.426890279999938, 50.71271987800003 ], [ -120.426213782, 50.712644283000017 ], [ -120.425920312999978, 50.712611499000076 ], [ -120.424883586999954, 50.712570455000119 ], [ -120.423105732999943, 50.71280857900009 ], [ -120.420769473999954, 50.713047531000029 ], [ -120.419012685999945, 50.713227169000035 ], [ -120.417847298999959, 50.713317487000054 ], [ -120.417083056999928, 50.713427870000025 ], [ -120.416584725999925, 50.713411920000141 ], [ -120.416148252999918, 50.713321569000051 ], [ -120.415897436999941, 50.713224304000086 ], [ -120.414552026999957, 50.712706346000118 ], [ -120.412782018999948, 50.711702982000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A25C7DE96B1C5EC07D8E134F0B5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.443374405999933, 50.719640489000064 ], [ -120.443389080000017, 50.719370970000057 ], [ -120.44296452599994, 50.719361654000082 ], [ -120.44300855299997, 50.718553097000061 ], [ -120.445131285999977, 50.71859965900007 ], [ -120.445072633999956, 50.719677738000016 ], [ -120.443374405999933, 50.719640489000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2822667", "BldgCostT": "1946667", "sL_LossRatio": "1", "sL_AssetLoss": "126", "sL_BldgLoss": "126", "sL_StrLoss": "126", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D72B8FE2DA1A5EC0810449C8555B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.414293425000011, 50.714370786000103 ], [ -120.414299340999932, 50.714323365000048 ], [ -120.412900581999963, 50.714253248000034 ], [ -120.413186884999973, 50.71195831300011 ], [ -120.41276846599996, 50.71194902200012 ], [ -120.412782018999948, 50.711702982000084 ], [ -120.414552026999957, 50.712706346000118 ], [ -120.415897436999941, 50.713224304000086 ], [ -120.416148252999918, 50.713321569000051 ], [ -120.416584725999925, 50.713411920000141 ], [ -120.417083056999928, 50.713427870000025 ], [ -120.417847298999959, 50.713317487000054 ], [ -120.419012685999945, 50.713227169000035 ], [ -120.420769473999954, 50.713047531000029 ], [ -120.423105732999943, 50.71280857900009 ], [ -120.424883586999954, 50.712570455000119 ], [ -120.425920312999978, 50.712611499000076 ], [ -120.426213782, 50.712644283000017 ], [ -120.426890279999938, 50.71271987800003 ], [ -120.426709195999962, 50.71417498700005 ], [ -120.422929500999928, 50.713985900000104 ], [ -120.422927623999911, 50.714000976000065 ], [ -120.420043071999928, 50.713856583000116 ], [ -120.419943731999979, 50.714653844000068 ], [ -120.414293425000011, 50.714370786000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.997768523722074", "sL_AssetLoss": "0.00425279", "sL_BldgLoss": "0.0042433", "sL_StrLoss": "0.0000933", "sL_NStrLoss": "0.00415", "sL_ContLoss": "0.00000949", "geom_point": "0101000020E6100000A773C961051D5EC0A8A53D4E665B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.452626396999932, 50.713636780000122 ], [ -120.454324419, 50.713673892000024 ], [ -120.454307714999956, 50.713982080000058 ], [ -120.454280593999925, 50.714482457000059 ], [ -120.452582542999934, 50.714445345000094 ], [ -120.452615058999967, 50.713845846000041 ], [ -120.452626396999932, 50.713636780000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15131500", "BldgCostT": "9700000", "sL_LossRatio": "1", "sL_AssetLoss": "907.6", "sL_BldgLoss": "907.6", "sL_StrLoss": "907.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009AFA4863971D5EC02E026BEE4B5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.462113751999937, 50.717791385000055 ], [ -120.462135571999937, 50.717614932000053 ], [ -120.460727216999942, 50.717544947000142 ], [ -120.460914878999944, 50.716027796000034 ], [ -120.460921216999978, 50.715976557000062 ], [ -120.460575451999915, 50.715969021000028 ], [ -120.460566614999948, 50.716132453000043 ], [ -120.460560877999924, 50.716238544000085 ], [ -120.460208137999985, 50.716230857000085 ], [ -120.459287286999967, 50.716210781000086 ], [ -120.459324844999955, 50.715516501000081 ], [ -120.456944725, 50.71539814800007 ], [ -120.457092265999933, 50.714206114000078 ], [ -120.457388046999966, 50.711816214000081 ], [ -120.461630025999966, 50.712027113 ], [ -120.461694313999956, 50.711507243 ], [ -120.457412618999939, 50.711294369000044 ], [ -120.457855863999896, 50.707712415000096 ], [ -120.463505606999902, 50.707993271000056 ], [ -120.46310718300002, 50.711216316000034 ], [ -120.467388896999964, 50.711428971000053 ], [ -120.467018024999973, 50.714431020000056 ], [ -120.468207273999951, 50.714490056000045 ], [ -120.467989713999927, 50.716251308000061 ], [ -120.467909882999933, 50.716897532000111 ], [ -120.467764788999915, 50.71807202100009 ], [ -120.462113751999937, 50.717791385000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49880750", "BldgCostT": "33665000", "sL_LossRatio": "0.999791063765122", "sL_AssetLoss": "2799.56227", "sL_BldgLoss": "2798.97734", "sL_StrLoss": "2793.13074", "sL_NStrLoss": "5.8466", "sL_ContLoss": "0.58493", "geom_point": "0101000020E6100000876732B1331C5EC031AFE1F1865A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.433968055999983, 50.717205518000085 ], [ -120.43403236499995, 50.716688134000037 ], [ -120.433721582999937, 50.716672612000103 ], [ -120.43375446099995, 50.716408110000074 ], [ -120.432274252999946, 50.716334174000039 ], [ -120.43234348799993, 50.715777304000021 ], [ -120.431936378999964, 50.715756965000047 ], [ -120.431943754999935, 50.715697654000039 ], [ -120.431383265999955, 50.715669650000031 ], [ -120.431525877999889, 50.71452276300009 ], [ -120.430054216999935, 50.714490312000095 ], [ -120.430083711999927, 50.713951278000145 ], [ -120.429659210999915, 50.713941916000088 ], [ -120.429688709999979, 50.713402883000093 ], [ -120.429264214999961, 50.713393517000036 ], [ -120.429273571999957, 50.713222579000067 ], [ -120.429764582999951, 50.713346131000058 ], [ -120.430377373999931, 50.713424517000057 ], [ -120.431057989999928, 50.713437819000049 ], [ -120.431102889999934, 50.713213889 ], [ -120.431052267999945, 50.712699911000129 ], [ -120.431019190999947, 50.712364018000116 ], [ -120.431004277999989, 50.712212444000023 ], [ -120.43103888, 50.712146998000037 ], [ -120.43108230899999, 50.712064966000064 ], [ -120.431349138, 50.711896299000053 ], [ -120.431057442999972, 50.711613202000059 ], [ -120.431048385999944, 50.711591385000055 ], [ -120.430906530999977, 50.711249759000069 ], [ -120.430743615, 50.709560974000041 ], [ -120.43066188899995, 50.708713756000115 ], [ -120.430575808999961, 50.707885919000049 ], [ -120.430595097999941, 50.707756191000051 ], [ -120.430847278, 50.707761751000106 ], [ -120.430838906999924, 50.707914836000043 ], [ -120.434084028999948, 50.708076979000076 ], [ -120.434450421999912, 50.705128364000061 ], [ -120.435860662999957, 50.705198797000044 ], [ -120.435959998999977, 50.704399098000074 ], [ -120.437509899999938, 50.704476485000029 ], [ -120.437609869999974, 50.703671433000125 ], [ -120.43872976599998, 50.703727338000128 ], [ -120.438743324999976, 50.703618127 ], [ -120.437449191999988, 50.703589671000046 ], [ -120.437463891999954, 50.703320152000053 ], [ -120.436190671999924, 50.703292140000052 ], [ -120.436175964999919, 50.70356166000002 ], [ -120.434053925999933, 50.703514943000059 ], [ -120.434083362999971, 50.702975907000088 ], [ -120.433658959999903, 50.7029665600001 ], [ -120.433673680999945, 50.702697042000061 ], [ -120.433159009999912, 50.702685704000025 ], [ -120.433141343000017, 50.70282786500006 ], [ -120.433361863999934, 50.702838884000116 ], [ -120.432916712999926, 50.706420761000089 ], [ -120.430809303000032, 50.706315448000083 ], [ -120.430853723999974, 50.706016668000068 ], [ -120.430908754999933, 50.705481879000061 ], [ -120.430956103, 50.705021626000061 ], [ -120.430973892999958, 50.703004218000046 ], [ -120.430872934999954, 50.702718951000058 ], [ -120.430686097999967, 50.702484353000095 ], [ -120.43040235199993, 50.702286358000045 ], [ -120.430077359, 50.702157475000078 ], [ -120.429868132999928, 50.702115841000115 ], [ -120.429708500999965, 50.702084077000059 ], [ -120.429235403999925, 50.702060423000027 ], [ -120.428157549, 50.702055178000158 ], [ -120.427109628999915, 50.702048708000113 ], [ -120.427186422999966, 50.701294809000018 ], [ -120.427432889999977, 50.700130824000077 ], [ -120.427440512999922, 50.70013099300008 ], [ -120.42741100299996, 50.700670025000107 ], [ -120.428194178999931, 50.700687316000014 ], [ -120.42822091699999, 50.70047234200009 ], [ -120.427909869999965, 50.700456785 ], [ -120.42802723299998, 50.699513212000063 ], [ -120.428155206000014, 50.699434806000035 ], [ -120.428478227999975, 50.699328405000074 ], [ -120.428918728999989, 50.699312653000028 ], [ -120.429412982999949, 50.699294995000095 ], [ -120.431272920999945, 50.699332640000058 ], [ -120.431777308999969, 50.698569377000062 ], [ -120.432053299999936, 50.698549589000066 ], [ -120.432632992999956, 50.698283297000096 ], [ -120.43464229599999, 50.698048288000095 ], [ -120.435802919999929, 50.697980039000086 ], [ -120.437611998999969, 50.697979227000069 ], [ -120.439036586, 50.698001299000076 ], [ -120.440577217999959, 50.698054002000084 ], [ -120.442481962999921, 50.698006185000075 ], [ -120.442178109999944, 50.700455483000042 ], [ -120.44271814499993, 50.700467338000081 ], [ -120.442732811999932, 50.700197818000106 ], [ -120.443157192999934, 50.70020713300012 ], [ -120.443171857999971, 50.699937613000017 ], [ -120.444869371999943, 50.699974854000097 ], [ -120.444825405999921, 50.700783416000036 ], [ -120.4444010199999, 50.700774107000022 ], [ -120.444386361999975, 50.701043627000047 ], [ -120.44353758499993, 50.701025006000066 ], [ -120.443508256999976, 50.701564046000094 ], [ -120.443932650999912, 50.701573358000083 ], [ -120.443917990999964, 50.7018428780001 ], [ -120.445191177999959, 50.701870804000116 ], [ -120.445176523999976, 50.70214032400002 ], [ -120.447298518999958, 50.702186836000067 ], [ -120.447283877999908, 50.702456358000113 ], [ -120.449830293999966, 50.702512123000126 ], [ -120.449815665999921, 50.702781644000055 ], [ -120.452362105999967, 50.702837354000053 ], [ -120.452347493000033, 50.703106876000092 ], [ -120.454893955999921, 50.703162531000075 ], [ -120.454879354999917, 50.703432053000022 ], [ -120.457001426999938, 50.703478390000058 ], [ -120.456986837999978, 50.703747913000058 ], [ -120.457411255999929, 50.70375717600006 ], [ -120.457352913999969, 50.704835268000039 ], [ -120.454806355999906, 50.704779665000025 ], [ -120.454791754999945, 50.70504918700005 ], [ -120.453518472, 50.705021365000071 ], [ -120.453503864999902, 50.705290886000057 ], [ -120.452655005999958, 50.705272331000032 ], [ -120.452567322, 50.706889462000042 ], [ -120.452991765999911, 50.70689874100006 ], [ -120.452968219999903, 50.707333063000135 ], [ -120.452947928999933, 50.707707306000088 ], [ -120.451674576999963, 50.70767946200008 ], [ -120.451440629999951, 50.711991804 ], [ -120.45186511799993, 50.712001088000079 ], [ -120.451768734, 50.713777718000131 ], [ -120.451748142999932, 50.714157259000103 ], [ -120.449450799999966, 50.714106993000087 ], [ -120.449394794999989, 50.714558857000064 ], [ -120.449351454999885, 50.71455669900007 ], [ -120.449311909999963, 50.714875759000094 ], [ -120.44366139, 50.714594187000074 ], [ -120.443770757999985, 50.713712677000025 ], [ -120.443272671999964, 50.713701749000073 ], [ -120.44328734399997, 50.713432229000034 ], [ -120.43946685399996, 50.713348334000095 ], [ -120.439466470999932, 50.713355336000092 ], [ -120.439817042999934, 50.713372828000054 ], [ -120.439752805999888, 50.713890218000046 ], [ -120.440063570999925, 50.713905722000106 ], [ -120.439830257999958, 50.715784908000039 ], [ -120.439618844999956, 50.717487579000121 ], [ -120.433968055999983, 50.717205518000085 ] ], [ [ -120.44035991199992, 50.712558432 ], [ -120.440448031999978, 50.710941317000113 ], [ -120.440023556, 50.710931992000084 ], [ -120.440096994999976, 50.709584398000089 ], [ -120.443492716999955, 50.709658954000119 ], [ -120.443605020999954, 50.707595232000074 ], [ -120.441262048999974, 50.707478374000097 ], [ -120.441164674999939, 50.708262964000063 ], [ -120.439754329999914, 50.708192597000092 ], [ -120.439655051999978, 50.708992297000101 ], [ -120.436192658999985, 50.708819471000048 ], [ -120.43614196, 50.709227593000094 ], [ -120.437564915999957, 50.709258895000048 ], [ -120.437519466999902, 50.710092057000089 ], [ -120.438100685, 50.710121069000117 ], [ -120.437871805999933, 50.711964062000092 ], [ -120.438691342999945, 50.711982080000013 ], [ -120.438662103999988, 50.712518291000052 ], [ -120.438763461999955, 50.712523349000016 ], [ -120.44035991199992, 50.712558432 ] ], [ [ -120.44871806299993, 50.707344919000022 ], [ -120.448731945999967, 50.707089261000085 ], [ -120.44402594499995, 50.706854709000027 ], [ -120.444011405999944, 50.706971919000061 ], [ -120.44533715099999, 50.707000996000076 ], [ -120.445322495999932, 50.707270516000072 ], [ -120.44871806299993, 50.707344919000022 ] ], [ [ -120.451835382999946, 50.704714725000059 ], [ -120.451864615999966, 50.704175682000049 ], [ -120.451440197999943, 50.70416639900008 ], [ -120.451454815999966, 50.703896876000123 ], [ -120.450020275999975, 50.703865489000059 ], [ -120.449920246999966, 50.704672824000085 ], [ -120.450137687999955, 50.704677582000045 ], [ -120.450123060999928, 50.704947104000048 ], [ -120.451396339, 50.704974964000066 ], [ -120.451410959, 50.704705441000101 ], [ -120.451835382999946, 50.704714725000059 ] ], [ [ -120.4493508899999, 50.70351604500005 ], [ -120.449361998999919, 50.703311396000068 ], [ -120.448513178999974, 50.703292810000107 ], [ -120.44850643499997, 50.703416994000044 ], [ -120.449220123999936, 50.703452552000087 ], [ -120.449213105999959, 50.703509180000012 ], [ -120.4493508899999, 50.70351604500005 ] ], [ [ -120.445966445999943, 50.703242098000025 ], [ -120.445966720999976, 50.703237016000088 ], [ -120.445958159999975, 50.70323682800003 ], [ -120.445957560999958, 50.703241656000067 ], [ -120.445966445999943, 50.703242098000025 ] ], [ [ -120.431217315999959, 50.700994121000129 ], [ -120.431223148999891, 50.700887437000134 ], [ -120.428257004999978, 50.700739135000042 ], [ -120.428251165999939, 50.700845818000055 ], [ -120.431217315999959, 50.700994121000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4531250", "BldgCostT": "3125000", "sL_LossRatio": "1", "sL_AssetLoss": "66.7", "sL_BldgLoss": "66.7", "sL_StrLoss": "66.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD2ECFF7511E5EC0F47F3772975B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.472559118999953, 50.717130294000107 ], [ -120.47166322599999, 50.716819663000123 ], [ -120.471720266999952, 50.716740433000083 ], [ -120.468949684999984, 50.716602973000114 ], [ -120.469392060999937, 50.713020996000097 ], [ -120.475042543999933, 50.713301266000045 ], [ -120.474916398999966, 50.714323784000065 ], [ -120.478568395999915, 50.71450477300008 ], [ -120.47812673699994, 50.718086780000064 ], [ -120.472475633, 50.717806668000044 ], [ -120.472559118999953, 50.717130294000107 ] ], [ [ -120.472579765999967, 50.716963017000076 ], [ -120.472601843999897, 50.716784157000077 ], [ -120.471955914999938, 50.716752121000056 ], [ -120.472579765999967, 50.716963017000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3107833", "BldgCostT": "2143333", "sL_LossRatio": "0.999994401182134", "sL_AssetLoss": "150.031671", "sL_BldgLoss": "150.030831", "sL_StrLoss": "150.000661", "sL_NStrLoss": "0.03017", "sL_ContLoss": "0.00084", "geom_point": "0101000020E610000063B08F0C011F5EC02DBE57633F5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.481833992999938, 50.718753599000095 ], [ -120.48748527399999, 50.719033238000129 ], [ -120.487099900999965, 50.722163530000053 ], [ -120.48704428299996, 50.722615261000122 ], [ -120.481392552999978, 50.722335601000047 ], [ -120.481591308999967, 50.720722896000098 ], [ -120.481833992999938, 50.718753599000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14474750", "BldgCostT": "9455000", "sL_LossRatio": "0.999782586793357", "sL_AssetLoss": "1910.371529", "sL_BldgLoss": "1909.956189", "sL_StrLoss": "1908.007589", "sL_NStrLoss": "1.9486", "sL_ContLoss": "0.41534", "geom_point": "0101000020E61000005FE25D684D215EC065F1CDFC8B5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.518195161, 50.72744749500005 ], [ -120.518242468999944, 50.72706110700004 ], [ -120.51815068599997, 50.727056594000061 ], [ -120.518275631999941, 50.726036083000047 ], [ -120.518257657999982, 50.726035199000108 ], [ -120.518372192999934, 50.725099697000083 ], [ -120.51837953199994, 50.725039745000096 ], [ -120.517475632999918, 50.725020492000098 ], [ -120.517475162999972, 50.725029354000149 ], [ -120.517461379999972, 50.725290027000035 ], [ -120.51576285699997, 50.725253830000021 ], [ -120.515821520999964, 50.724145074000013 ], [ -120.515145575999924, 50.724111819000058 ], [ -120.515205462999987, 50.723622917000107 ], [ -120.514999189999955, 50.723618518000052 ], [ -120.515013454, 50.723348984000069 ], [ -120.514588841999952, 50.723339929000048 ], [ -120.514603108999921, 50.723070395000015 ], [ -120.513753889999975, 50.723052280000111 ], [ -120.513739616999914, 50.723321813000084 ], [ -120.512465779999928, 50.723294627000023 ], [ -120.512480060999906, 50.723025094000022 ], [ -120.512055449999977, 50.723016029000064 ], [ -120.512126855999924, 50.721668363000099 ], [ -120.512976049999949, 50.721686489 ], [ -120.512990325999965, 50.72141695700001 ], [ -120.513414921, 50.721426017000077 ], [ -120.513429192999951, 50.721156484000048 ], [ -120.513853786999945, 50.721165544000058 ], [ -120.513868055999964, 50.720896010000111 ], [ -120.514717237999946, 50.720914124000082 ], [ -120.514731502999922, 50.720644590000084 ], [ -120.515156091999984, 50.720653645000056 ], [ -120.515170354999952, 50.72038411000009 ], [ -120.515585519999931, 50.720392963000066 ], [ -120.515602122999965, 50.720257397000054 ], [ -120.515609199999972, 50.720123630000096 ], [ -120.51561848199999, 50.720123828000112 ], [ -120.515619572, 50.720114930000136 ], [ -120.515893776999974, 50.720005796000102 ], [ -120.515934327999929, 50.720042643000099 ], [ -120.516160370999941, 50.720056483000093 ], [ -120.516630091999929, 50.719751737000124 ], [ -120.517263248999896, 50.719525356000048 ], [ -120.51946066, 50.719633421 ], [ -120.519473177999927, 50.719396433000085 ], [ -120.520780039, 50.71942424700007 ], [ -120.520881600999957, 50.719442803000099 ], [ -120.521013779999961, 50.719429219000091 ], [ -120.525417300999891, 50.719522816000058 ], [ -120.525431504, 50.719253280000054 ], [ -120.527554402999925, 50.719298343000055 ], [ -120.527540210999987, 50.719567880000071 ], [ -120.527964794999946, 50.719576887000102 ], [ -120.527908039, 50.720655034000117 ], [ -120.52493589699999, 50.72059194300008 ], [ -120.524924680000012, 50.720804736000062 ], [ -120.525270305, 50.720821711000028 ], [ -120.525056239999955, 50.722572536000072 ], [ -120.52547921899999, 50.722593310000072 ], [ -120.525041223999921, 50.726175467000068 ], [ -120.52491214199992, 50.726169128000045 ], [ -120.524857242999929, 50.726618071000082 ], [ -120.524654453999972, 50.726608111000139 ], [ -120.524633625999911, 50.726778422000073 ], [ -120.524553075999961, 50.72743707500009 ], [ -120.52388701699999, 50.72740436100009 ], [ -120.523847763999925, 50.727725292000031 ], [ -120.520477661999948, 50.727559704000022 ], [ -120.518195161, 50.72744749500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10179667", "BldgCostT": "6756667", "sL_LossRatio": "0.999921542569387", "sL_AssetLoss": "706.1154", "sL_BldgLoss": "706.06", "sL_StrLoss": "705.9", "sL_NStrLoss": "0.16", "sL_ContLoss": "0.0554", "geom_point": "0101000020E61000003AC22F1642195EC0C2AD71EC0F5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.385197242999965, 50.713104094000094 ], [ -120.385344026999988, 50.711933336000079 ], [ -120.384052218999898, 50.711868241000055 ], [ -120.3840643599999, 50.711760076000076 ], [ -120.384064384999974, 50.711759753000095 ], [ -120.384094423999926, 50.709940279000108 ], [ -120.384099508999952, 50.709633420000081 ], [ -120.384103221999979, 50.709409896000082 ], [ -120.386358650999952, 50.70976541300012 ], [ -120.388597034000014, 50.709768408000038 ], [ -120.391995449999911, 50.709847984000092 ], [ -120.397367969999934, 50.710010116000021 ], [ -120.397395687999904, 50.710010509000035 ], [ -120.403977505999961, 50.71009956300005 ], [ -120.404705688999968, 50.71010275800009 ], [ -120.405237603, 50.710134822000043 ], [ -120.407520340999966, 50.710386576000133 ], [ -120.407522740999966, 50.710386702000065 ], [ -120.409976820999958, 50.710582040000126 ], [ -120.409947374999973, 50.710660694000111 ], [ -120.409890422, 50.710812874000041 ], [ -120.410279238999976, 50.710847220000034 ], [ -120.410266189999945, 50.711083902000084 ], [ -120.407294919999941, 50.711017821000027 ], [ -120.40730979699994, 50.710748310000049 ], [ -120.406885334999956, 50.710738863000117 ], [ -120.406893014999923, 50.710599705000099 ], [ -120.40690021199994, 50.710469352000104 ], [ -120.405783267999965, 50.710444488000086 ], [ -120.405773825, 50.710520090000045 ], [ -120.405496099999937, 50.712743384000078 ], [ -120.400162004999956, 50.712475468000079 ], [ -120.400150758999956, 50.712565409000071 ], [ -120.399418085999969, 50.712528589000073 ], [ -120.39939553399995, 50.712708926000069 ], [ -120.398388285999914, 50.712658299000132 ], [ -120.398373493999955, 50.712776551000076 ], [ -120.397148508999976, 50.712714968000078 ], [ -120.397142539999962, 50.712762679000072 ], [ -120.395633942999936, 50.712686820000059 ], [ -120.395548906999977, 50.713366314000055 ], [ -120.394670948999945, 50.713322157000086 ], [ -120.394643677999966, 50.713540035000022 ], [ -120.390852136999953, 50.713349258000051 ], [ -120.390847205999975, 50.713388624000096 ], [ -120.385197242999965, 50.713104094000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122952499", "BldgCostT": "81169999", "sL_LossRatio": "0.999998666092479", "sL_AssetLoss": "13394.2568887", "sL_BldgLoss": "13394.239022", "sL_StrLoss": "13393.906012", "sL_NStrLoss": "0.33301", "sL_ContLoss": "0.0178667", "geom_point": "0101000020E61000005F605E999A185EC02E01C66D935A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.386358650999952, 50.70976541300012 ], [ -120.384103221999979, 50.709409896000082 ], [ -120.382418708999921, 50.709376924000082 ], [ -120.380303507999912, 50.709335491000047 ], [ -120.379059517999934, 50.709304307000089 ], [ -120.379108268, 50.706061931000058 ], [ -120.380355190000017, 50.706408694000061 ], [ -120.381006927999977, 50.706588565000075 ], [ -120.381577749999934, 50.706746083000091 ], [ -120.382457260999914, 50.706990634000149 ], [ -120.38258713499998, 50.707026740000067 ], [ -120.383047010999945, 50.707156248000103 ], [ -120.383862927999971, 50.707382099000078 ], [ -120.384153919999974, 50.707384997000062 ], [ -120.384181015999957, 50.705876192000112 ], [ -120.384187711999971, 50.705238046000069 ], [ -120.384195376999969, 50.70450370000006 ], [ -120.385530088999985, 50.704512397000023 ], [ -120.38550440899995, 50.705239205000098 ], [ -120.388731713999903, 50.70542160800008 ], [ -120.388705464999958, 50.706572059000059 ], [ -120.388674696999956, 50.707919188000048 ], [ -120.388665783999912, 50.708409812000113 ], [ -120.388637505999938, 50.709520282000064 ], [ -120.388597034000014, 50.709768408000038 ], [ -120.386358650999952, 50.70976541300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171142510", "BldgCostT": "115490402", "sL_LossRatio": "0.976967730921384", "sL_AssetLoss": "14366.21806", "sL_BldgLoss": "14035.33146", "sL_StrLoss": "13912.91346", "sL_NStrLoss": "122.418", "sL_ContLoss": "330.8866", "geom_point": "0101000020E6100000C28565010D185EC0846A4AB28E5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.37264062399997, 50.709509362000041 ], [ -120.372512208999979, 50.708756591000096 ], [ -120.372528231999951, 50.708070511000095 ], [ -120.372553414, 50.706991701000113 ], [ -120.372576194999937, 50.706075488000053 ], [ -120.372596585999972, 50.705121405000028 ], [ -120.372837986999969, 50.705088509000049 ], [ -120.374153590999967, 50.705091898000042 ], [ -120.374352091999981, 50.705093175000052 ], [ -120.374805260999921, 50.705096074000075 ], [ -120.37486927399999, 50.705096517000108 ], [ -120.375032101, 50.705102749000091 ], [ -120.375682538999968, 50.70512765900007 ], [ -120.376308974999972, 50.705299844000137 ], [ -120.378342840999906, 50.705853561000076 ], [ -120.379108268, 50.706061931000058 ], [ -120.379059517999934, 50.709304307000089 ], [ -120.380303507999912, 50.709335491000047 ], [ -120.382418708999921, 50.709376924000082 ], [ -120.384103221999979, 50.709409896000082 ], [ -120.376361287999913, 50.709587146000061 ], [ -120.374428681999973, 50.709542058000068 ], [ -120.37264062399997, 50.709509362000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72038469", "BldgCostT": "46035412", "sL_LossRatio": "0.993021968233471", "sL_AssetLoss": "7797.10122", "sL_BldgLoss": "7742.6928", "sL_StrLoss": "7722.0088", "sL_NStrLoss": "20.684", "sL_ContLoss": "54.40842", "geom_point": "0101000020E6100000BA68AFDBB3175EC019B590BA7C5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.367748598999967, 50.707813997000045 ], [ -120.367765810999956, 50.706953397000078 ], [ -120.367785083999962, 50.70603169000001 ], [ -120.37016298499999, 50.706052698000086 ], [ -120.370176697999952, 50.705129807000084 ], [ -120.372480783999933, 50.705138091000066 ], [ -120.372596585999972, 50.705121405000028 ], [ -120.372576194999937, 50.706075488000053 ], [ -120.372553414, 50.706991701000113 ], [ -120.372528231999951, 50.708070511000095 ], [ -120.372512208999979, 50.708756591000096 ], [ -120.37148591199994, 50.708701190000092 ], [ -120.371424817999966, 50.707773590000066 ], [ -120.370209634999966, 50.707771745000038 ], [ -120.369016190999915, 50.707769905000106 ], [ -120.369320916, 50.708817096000097 ], [ -120.36830859899996, 50.708955211000031 ], [ -120.367748598999967, 50.707813997000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107323417", "BldgCostT": "67236667", "sL_LossRatio": "0.9941066425381", "sL_AssetLoss": "11186.418171", "sL_BldgLoss": "11120.49261", "sL_StrLoss": "11094.07162", "sL_NStrLoss": "26.42099", "sL_ContLoss": "65.925561", "geom_point": "0101000020E6100000AD4D103383175EC0A1D12535975A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.365288517999957, 50.709776241000043 ], [ -120.365185076000031, 50.709606416000042 ], [ -120.365026986999951, 50.709631809000093 ], [ -120.364961984999965, 50.709515807000059 ], [ -120.36487676199999, 50.709364738000019 ], [ -120.364709789999949, 50.709068799000086 ], [ -120.364498501999947, 50.708522792000032 ], [ -120.364449075999914, 50.708259888000093 ], [ -120.364446304999944, 50.708243041000046 ], [ -120.364307307999937, 50.707410208000056 ], [ -120.36426374499996, 50.707191742000084 ], [ -120.364101692999938, 50.706254516000037 ], [ -120.363942491999964, 50.705339965000057 ], [ -120.364124695000015, 50.705326711000048 ], [ -120.364731610999925, 50.705283218000055 ], [ -120.366964195, 50.705123300000089 ], [ -120.367806674999926, 50.705125398000085 ], [ -120.370176697999952, 50.705129807000084 ], [ -120.37016298499999, 50.706052698000086 ], [ -120.367785083999962, 50.70603169000001 ], [ -120.367765810999956, 50.706953397000078 ], [ -120.367748598999967, 50.707813997000045 ], [ -120.36830859899996, 50.708955211000031 ], [ -120.369320916, 50.708817096000097 ], [ -120.369016190999915, 50.707769905000106 ], [ -120.370209634999966, 50.707771745000038 ], [ -120.371424817999966, 50.707773590000066 ], [ -120.37148591199994, 50.708701190000092 ], [ -120.372512208999979, 50.708756591000096 ], [ -120.37264062399997, 50.709509362000041 ], [ -120.371828477999941, 50.709504900000098 ], [ -120.369341244999987, 50.709699086000114 ], [ -120.367742614999912, 50.71001251100013 ], [ -120.366737644999915, 50.710254864000056 ], [ -120.365776485999959, 50.710577232000091 ], [ -120.365501111999919, 50.710125221000069 ], [ -120.365288517999957, 50.709776241000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105047000", "BldgCostT": "65960000", "sL_LossRatio": "0.983743415018646", "sL_AssetLoss": "11545.695373", "sL_BldgLoss": "11358.001795", "sL_StrLoss": "11276.449535", "sL_NStrLoss": "81.55226", "sL_ContLoss": "187.693578", "geom_point": "0101000020E6100000D1018BF409175EC0C151A85D825A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.359725355999942, 50.708543354000042 ], [ -120.359730104999983, 50.708093194000064 ], [ -120.356104217999928, 50.70810610500007 ], [ -120.356165097999934, 50.707374684000079 ], [ -120.356177522999971, 50.706673821000038 ], [ -120.356182801999978, 50.706377209000046 ], [ -120.356028707999883, 50.705355708000134 ], [ -120.357199685999902, 50.705356394000084 ], [ -120.358265592999928, 50.705356294000062 ], [ -120.358245895, 50.705512989000063 ], [ -120.358088007999982, 50.705761802000026 ], [ -120.357870892999983, 50.705985102000092 ], [ -120.361665449999975, 50.706019527000059 ], [ -120.362379147999917, 50.7060403300001 ], [ -120.362721907999955, 50.706004489000158 ], [ -120.362933982999905, 50.70595665600009 ], [ -120.36305503399997, 50.705864569000077 ], [ -120.363445155999955, 50.706129962000048 ], [ -120.363670304999957, 50.706283170000134 ], [ -120.364101692999938, 50.706254516000037 ], [ -120.36426374499996, 50.707191742000084 ], [ -120.364307307999937, 50.707410208000056 ], [ -120.363901489999989, 50.707401004000083 ], [ -120.36337198399994, 50.707388999000081 ], [ -120.363356338999964, 50.708244933000088 ], [ -120.36335098699999, 50.708537800000038 ], [ -120.363261309, 50.708686382000053 ], [ -120.362913896999942, 50.708736399000088 ], [ -120.361943614, 50.708721591000028 ], [ -120.361257509, 50.708718387000033 ], [ -120.36054459799999, 50.708713896000056 ], [ -120.360101133999933, 50.708733595000076 ], [ -120.359775742999929, 50.708726239000029 ], [ -120.359725355999942, 50.708543354000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145738167", "BldgCostT": "92171667", "sL_LossRatio": "0.995138292829591", "sL_AssetLoss": "16026.25318", "sL_BldgLoss": "15948.33823", "sL_StrLoss": "15914.14123", "sL_NStrLoss": "34.197", "sL_ContLoss": "77.91495", "geom_point": "0101000020E6100000F5ADD6890B175EC030E4C74E2E5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.363445155999955, 50.706129962000048 ], [ -120.36305503399997, 50.705864569000077 ], [ -120.362933982999905, 50.70595665600009 ], [ -120.362721907999955, 50.706004489000158 ], [ -120.362379147999917, 50.7060403300001 ], [ -120.361665449999975, 50.706019527000059 ], [ -120.357870892999983, 50.705985102000092 ], [ -120.358088007999982, 50.705761802000026 ], [ -120.358245895, 50.705512989000063 ], [ -120.358265592999928, 50.705356294000062 ], [ -120.357199685999902, 50.705356394000084 ], [ -120.356028707999883, 50.705355708000134 ], [ -120.355902930999932, 50.703711635000069 ], [ -120.35585797899995, 50.703124 ], [ -120.357123694000023, 50.703139402000048 ], [ -120.357908497999944, 50.703147701000013 ], [ -120.358532805999957, 50.703155790000075 ], [ -120.361612131999948, 50.703191868000033 ], [ -120.362393767999961, 50.703200898000041 ], [ -120.362719236999951, 50.703204652000124 ], [ -120.363573302999939, 50.703214506000108 ], [ -120.36360361499996, 50.703388148000094 ], [ -120.363637944999965, 50.70358499499999 ], [ -120.363790406999954, 50.70445909500009 ], [ -120.363942491999964, 50.705339965000057 ], [ -120.364101692999938, 50.706254516000037 ], [ -120.363670304999957, 50.706283170000134 ], [ -120.363445155999955, 50.706129962000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118224886", "BldgCostT": "73177079", "sL_LossRatio": "0.98391983660158", "sL_AssetLoss": "13268.119528", "sL_BldgLoss": "13054.765998", "sL_StrLoss": "12966.896968", "sL_NStrLoss": "87.86903", "sL_ContLoss": "213.35353", "geom_point": "0101000020E61000006247E350FF165EC09EBA7692C25A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.355747402999938, 50.709578691000054 ], [ -120.355776153999969, 50.707381663000042 ], [ -120.35579058699993, 50.706278807000075 ], [ -120.355465708999958, 50.705264799000034 ], [ -120.355494904999972, 50.703762207000125 ], [ -120.355168883999937, 50.703252390000024 ], [ -120.355125881999925, 50.703223149000031 ], [ -120.354867288999927, 50.703047293000033 ], [ -120.35463875799995, 50.702716409000111 ], [ -120.354648209999965, 50.702548549000035 ], [ -120.354520825999955, 50.702545657000016 ], [ -120.354501383999931, 50.702517506000021 ], [ -120.354438992999945, 50.702128690000109 ], [ -120.354103111999933, 50.701563309000036 ], [ -120.354018102999973, 50.701049098000063 ], [ -120.353899441999943, 50.700754039000088 ], [ -120.353905708999946, 50.700642767000048 ], [ -120.353854224999935, 50.70064159800009 ], [ -120.353656683999958, 50.70015039000004 ], [ -120.352963387999964, 50.699136410000044 ], [ -120.352818408999937, 50.699020625000102 ], [ -120.353214700999956, 50.699031403000099 ], [ -120.353510684999961, 50.699388907000134 ], [ -120.353953829999966, 50.700019898000093 ], [ -120.354731189999953, 50.701126801000079 ], [ -120.354940002999939, 50.701420303000077 ], [ -120.35554369599997, 50.702460210000091 ], [ -120.355732422999921, 50.702858740000117 ], [ -120.35585797899995, 50.703124 ], [ -120.355902930999932, 50.703711635000069 ], [ -120.356028707999883, 50.705355708000134 ], [ -120.356182801999978, 50.706377209000046 ], [ -120.356177522999971, 50.706673821000038 ], [ -120.356165097999934, 50.707374684000079 ], [ -120.356104217999928, 50.70810610500007 ], [ -120.359730104999983, 50.708093194000064 ], [ -120.359725355999942, 50.708543354000042 ], [ -120.359775742999929, 50.708726239000029 ], [ -120.360101133999933, 50.708733595000076 ], [ -120.36054459799999, 50.708713896000056 ], [ -120.361257509, 50.708718387000033 ], [ -120.361943614, 50.708721591000028 ], [ -120.362913896999942, 50.708736399000088 ], [ -120.363261309, 50.708686382000053 ], [ -120.36335098699999, 50.708537800000038 ], [ -120.363356338999964, 50.708244933000088 ], [ -120.36337198399994, 50.707388999000081 ], [ -120.363901489999989, 50.707401004000083 ], [ -120.364307307999937, 50.707410208000056 ], [ -120.364446304999944, 50.708243041000046 ], [ -120.364449075999914, 50.708259888000093 ], [ -120.364498501999947, 50.708522792000032 ], [ -120.364709789999949, 50.709068799000086 ], [ -120.36487676199999, 50.709364738000019 ], [ -120.364961984999965, 50.709515807000059 ], [ -120.365026986999951, 50.709631809000093 ], [ -120.365185076000031, 50.709606416000042 ], [ -120.365288517999957, 50.709776241000043 ], [ -120.365501111999919, 50.710125221000069 ], [ -120.365776485999959, 50.710577232000091 ], [ -120.365610639999957, 50.710610756000086 ], [ -120.363446141999972, 50.711048353000052 ], [ -120.357996237999927, 50.712182935000044 ], [ -120.356469945999919, 50.712914034000043 ], [ -120.356289800999974, 50.712523995000048 ], [ -120.356211913999971, 50.712126608000126 ], [ -120.35628690099999, 50.711813314000047 ], [ -120.356246600999967, 50.71172950700003 ], [ -120.356193475999987, 50.711619031000041 ], [ -120.356020490999967, 50.711259298000101 ], [ -120.355747402999938, 50.709578691000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147263668", "BldgCostT": "97931668", "sL_LossRatio": "0.992512538936903", "sL_AssetLoss": "23050.70017", "sL_BldgLoss": "22878.10895", "sL_StrLoss": "22759.04695", "sL_NStrLoss": "119.062", "sL_ContLoss": "172.59122", "geom_point": "0101000020E61000006C2065DDE2165EC075C8309BBE594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.354414389999945, 50.699050802000045 ], [ -120.35893056399999, 50.699117379000079 ], [ -120.359479993999969, 50.699753498000113 ], [ -120.359684126999966, 50.699989154000086 ], [ -120.360133794999982, 50.700508309000092 ], [ -120.360506193999981, 50.700945322000074 ], [ -120.360599312999966, 50.701054600000127 ], [ -120.361147708999965, 50.701857302000086 ], [ -120.361365296999935, 50.702183685000179 ], [ -120.361450675999933, 50.702521398000101 ], [ -120.361612131999948, 50.703191868000033 ], [ -120.358532805999957, 50.703155790000075 ], [ -120.357908497999944, 50.703147701000013 ], [ -120.357123694000023, 50.703139402000048 ], [ -120.35585797899995, 50.703124 ], [ -120.355732422999921, 50.702858740000117 ], [ -120.35554369599997, 50.702460210000091 ], [ -120.354940002999939, 50.701420303000077 ], [ -120.354731189999953, 50.701126801000079 ], [ -120.353953829999966, 50.700019898000093 ], [ -120.353510684999961, 50.699388907000134 ], [ -120.353214700999956, 50.699031403000099 ], [ -120.354414389999945, 50.699050802000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138395918", "BldgCostT": "91761668", "sL_LossRatio": "0.999993432198111", "sL_AssetLoss": "13946.8275", "sL_BldgLoss": "13946.7359", "sL_StrLoss": "13946.1256", "sL_NStrLoss": "0.6103", "sL_ContLoss": "0.0916", "geom_point": "0101000020E6100000C545736C16175EC081F7FAFF5D5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.357558580999978, 50.718795910000097 ], [ -120.357618711999976, 50.717727289000109 ], [ -120.35721317399999, 50.717718092000112 ], [ -120.357212789999949, 50.717528595000019 ], [ -120.35706088799995, 50.715950611000089 ], [ -120.356734182999915, 50.714188906000054 ], [ -120.356516719999959, 50.713015307000077 ], [ -120.356469945999919, 50.712914034000043 ], [ -120.357996237999927, 50.712182935000044 ], [ -120.363446141999972, 50.711048353000052 ], [ -120.365610639999957, 50.710610756000086 ], [ -120.365776485999959, 50.710577232000091 ], [ -120.365782768999935, 50.710587559000039 ], [ -120.365786777999929, 50.71059410700007 ], [ -120.366014098999969, 50.710967242000052 ], [ -120.366038284999917, 50.711006947000023 ], [ -120.365861664999926, 50.711013534000081 ], [ -120.366228465999896, 50.711593819000043 ], [ -120.366290993999925, 50.711808742000066 ], [ -120.366055439999968, 50.711895944000034 ], [ -120.366015073999975, 50.712002036000044 ], [ -120.365892545999955, 50.712117489000015 ], [ -120.365267049999929, 50.712795914000068 ], [ -120.364425782999959, 50.713550841000071 ], [ -120.363961994999926, 50.713960840000027 ], [ -120.363082853999941, 50.714621457000142 ], [ -120.362907317999955, 50.714753363000064 ], [ -120.362509012999936, 50.715052635000056 ], [ -120.36232603599997, 50.715190049000086 ], [ -120.362221484999935, 50.715139706000095 ], [ -120.361492298999963, 50.714778401000068 ], [ -120.361000703999977, 50.714505706000054 ], [ -120.3606595699999, 50.714234390000058 ], [ -120.359599581999973, 50.714631835000084 ], [ -120.357808089999949, 50.714753182000059 ], [ -120.357953284999908, 50.715845499000046 ], [ -120.358019801999944, 50.71636700300008 ], [ -120.359370615999978, 50.716590396000115 ], [ -120.359980618999955, 50.716849205000081 ], [ -120.36006206899998, 50.716882339000044 ], [ -120.36009960299999, 50.716897614000032 ], [ -120.359825310999923, 50.717212597000085 ], [ -120.359576005999926, 50.717668612000125 ], [ -120.35950930599995, 50.718050910000102 ], [ -120.359610124000014, 50.718673196000026 ], [ -120.359472201999949, 50.718684214000078 ], [ -120.35795740399999, 50.718803087000033 ], [ -120.357231604999953, 50.718896361000134 ], [ -120.357215578999984, 50.718905145000058 ], [ -120.357215361999948, 50.718797520000074 ], [ -120.357325501999981, 50.718800018000067 ], [ -120.357558580999978, 50.718795910000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90685417", "BldgCostT": "62541667", "sL_LossRatio": "0.999999168295757", "sL_AssetLoss": "10280.09665", "sL_BldgLoss": "10280.0881", "sL_StrLoss": "10280", "sL_NStrLoss": "0.0881", "sL_ContLoss": "0.00855", "geom_point": "0101000020E61000008F6EA553AE175EC07D6ED365525B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.371277210999935, 50.71448909800003 ], [ -120.371380593999916, 50.71411859100003 ], [ -120.370300078999975, 50.714086597000048 ], [ -120.370032208999987, 50.714046906000085 ], [ -120.36990859799999, 50.714260489 ], [ -120.369657673999953, 50.714537993000143 ], [ -120.368959005999955, 50.715029811000079 ], [ -120.368534460999953, 50.715327091000034 ], [ -120.368274761999928, 50.715508843000073 ], [ -120.367011951, 50.714755709 ], [ -120.366555244999944, 50.714419933000045 ], [ -120.366364104999931, 50.714244488000091 ], [ -120.366178683999962, 50.714000824000045 ], [ -120.365992842999958, 50.713636385000058 ], [ -120.365917831999951, 50.713272165000113 ], [ -120.365943555999976, 50.713011240000135 ], [ -120.366168411999922, 50.712591008000089 ], [ -120.366261340999984, 50.712519087000075 ], [ -120.366387458999952, 50.712284877000045 ], [ -120.366444689, 50.71202196400003 ], [ -120.366426576999984, 50.711804442000066 ], [ -120.366423752999978, 50.711770403000095 ], [ -120.366750908999975, 50.711760947000052 ], [ -120.370920401999939, 50.711524655000105 ], [ -120.371207819999952, 50.711558411000119 ], [ -120.371892679999959, 50.711573862000087 ], [ -120.373034595999954, 50.712437797000099 ], [ -120.37328874499994, 50.712916920000048 ], [ -120.373646021999932, 50.71359049600008 ], [ -120.373675806999969, 50.714122802000091 ], [ -120.373677609999959, 50.714866293000092 ], [ -120.373156795999975, 50.714858911000142 ], [ -120.372725197999969, 50.714900206000017 ], [ -120.372353100999973, 50.71498731900008 ], [ -120.372332699999959, 50.714992112000076 ], [ -120.371906093999911, 50.715174210000022 ], [ -120.371747947999893, 50.715286349000088 ], [ -120.371078, 50.715761334 ], [ -120.370891700999977, 50.715893391000101 ], [ -120.369826588, 50.715569207000094 ], [ -120.370140165999899, 50.715305302000019 ], [ -120.370192201999913, 50.715261514000119 ], [ -120.371277210999935, 50.71448909800003 ] ], [ [ -120.368518464999951, 50.712846923000058 ], [ -120.368542040999927, 50.712426110000095 ], [ -120.366846833999929, 50.712340427000051 ], [ -120.366835696999956, 50.712539060000083 ], [ -120.366411229999954, 50.712529466000099 ], [ -120.366365896, 50.713337975000023 ], [ -120.367214844, 50.713357162000136 ], [ -120.36720337899996, 50.713561691000052 ], [ -120.367627190999912, 50.713583114000123 ], [ -120.367654422, 50.713097250000018 ], [ -120.368078891999943, 50.713106839000076 ], [ -120.36809399399999, 50.712837336000078 ], [ -120.368518464999951, 50.712846923000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142081417", "BldgCostT": "93831667", "sL_LossRatio": "0.999995760197657", "sL_AssetLoss": "11807.15419", "sL_BldgLoss": "11807.10413", "sL_StrLoss": "11806.81163", "sL_NStrLoss": "0.2925", "sL_ContLoss": "0.05006", "geom_point": "0101000020E6100000F301584FB3175EC001E7738BCC5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.374558438999927, 50.721976037000104 ], [ -120.373136360999936, 50.72153819600004 ], [ -120.37306376899997, 50.721515842000017 ], [ -120.371968134999975, 50.72115511100003 ], [ -120.37125355799999, 50.720919840000107 ], [ -120.370226954999964, 50.720581422000073 ], [ -120.370117825999969, 50.72052894899999 ], [ -120.369902539999956, 50.720425418000097 ], [ -120.369649854, 50.720253115000084 ], [ -120.369406681999962, 50.720039021 ], [ -120.369199858999963, 50.719705115000124 ], [ -120.369127673999941, 50.719487909000058 ], [ -120.369122749999946, 50.719187601000037 ], [ -120.369266617999955, 50.718611485000075 ], [ -120.369486508999913, 50.717730888000112 ], [ -120.36912900499999, 50.717781291000051 ], [ -120.368919901999931, 50.717861712000051 ], [ -120.368712293000016, 50.718008895000018 ], [ -120.368611203999961, 50.718127387000102 ], [ -120.368400513999958, 50.718374306000023 ], [ -120.368139883000012, 50.718502597000096 ], [ -120.367761603999952, 50.71857180700011 ], [ -120.366632596999949, 50.718572115000036 ], [ -120.366395409999924, 50.71857219600011 ], [ -120.365343384, 50.718572141000067 ], [ -120.363851731, 50.718559531000082 ], [ -120.363823856999915, 50.718559290000073 ], [ -120.363517446999978, 50.718626942000114 ], [ -120.363026932999972, 50.71873525100002 ], [ -120.36158127899995, 50.718734207000075 ], [ -120.361596471999931, 50.718500676000133 ], [ -120.361811769999974, 50.718258370000036 ], [ -120.36202547100001, 50.718142127000107 ], [ -120.362444997999958, 50.717993939000024 ], [ -120.362646379999944, 50.717873479000033 ], [ -120.362808786, 50.71770147900002 ], [ -120.362951736999918, 50.717333842000109 ], [ -120.363074668999971, 50.717181483000076 ], [ -120.3633117299999, 50.71703757500012 ], [ -120.363716746999913, 50.71692560700005 ], [ -120.365242006999949, 50.71675674199999 ], [ -120.365655872999966, 50.716687549 ], [ -120.365867750999911, 50.716620885000061 ], [ -120.365944494999937, 50.716596721000059 ], [ -120.366296199999951, 50.716422576000134 ], [ -120.36649590799999, 50.716247898000034 ], [ -120.366687326999951, 50.71596932500011 ], [ -120.366775244999971, 50.715665558000111 ], [ -120.366758977999908, 50.715489911000091 ], [ -120.366683277999954, 50.715277944000071 ], [ -120.366281447999953, 50.714844920000075 ], [ -120.366235753999888, 50.714711062000092 ], [ -120.366267472999965, 50.714594617000088 ], [ -120.366360419999978, 50.714511019000049 ], [ -120.366555244999944, 50.714419933000045 ], [ -120.367011951, 50.714755709 ], [ -120.368274761999928, 50.715508843000073 ], [ -120.368534460999953, 50.715327091000034 ], [ -120.368959005999955, 50.715029811000079 ], [ -120.369657673999953, 50.714537993000143 ], [ -120.36990859799999, 50.714260489 ], [ -120.370032208999987, 50.714046906000085 ], [ -120.370300078999975, 50.714086597000048 ], [ -120.371380593999916, 50.71411859100003 ], [ -120.371277210999935, 50.71448909800003 ], [ -120.370192201999913, 50.715261514000119 ], [ -120.370140165999899, 50.715305302000019 ], [ -120.369826588, 50.715569207000094 ], [ -120.370891700999977, 50.715893391000101 ], [ -120.371078, 50.715761334 ], [ -120.371747947999893, 50.715286349000088 ], [ -120.371906093999911, 50.715174210000022 ], [ -120.372332699999959, 50.714992112000076 ], [ -120.372353100999973, 50.71498731900008 ], [ -120.372725197999969, 50.714900206000017 ], [ -120.373156795999975, 50.714858911000142 ], [ -120.373677609999959, 50.714866293000092 ], [ -120.373675806999969, 50.714122802000091 ], [ -120.373646021999932, 50.71359049600008 ], [ -120.37328874499994, 50.712916920000048 ], [ -120.373034595999954, 50.712437797000099 ], [ -120.371892679999959, 50.711573862000087 ], [ -120.372414085999978, 50.711585621000047 ], [ -120.372404393999915, 50.711758852000052 ], [ -120.372488718999961, 50.711857149000082 ], [ -120.373672395999961, 50.711883838000105 ], [ -120.373642255999982, 50.712422846 ], [ -120.374066723999988, 50.71243241400002 ], [ -120.37403658800001, 50.712971423000063 ], [ -120.375734479999963, 50.713009678000127 ], [ -120.375719422999936, 50.713279183000097 ], [ -120.376143897999981, 50.713288743000078 ], [ -120.376083672999926, 50.714366764000054 ], [ -120.376508158, 50.714376322000035 ], [ -120.376447938999931, 50.715454344000058 ], [ -120.375598949, 50.715435224000103 ], [ -120.375583886999948, 50.715704729000016 ], [ -120.372955941999948, 50.715645506000051 ], [ -120.372864624999963, 50.715651963000056 ], [ -120.372788774999933, 50.715641736000116 ], [ -120.372187912999919, 50.715628186000103 ], [ -120.372172832999951, 50.715897690000112 ], [ -120.37174833399996, 50.715888116000023 ], [ -120.371733250999938, 50.71615761900005 ], [ -120.371417661999885, 50.716150500000019 ], [ -120.371248543999954, 50.717495907000057 ], [ -120.371657835999955, 50.717505140000085 ], [ -120.371672917999931, 50.717235636000048 ], [ -120.372097427999961, 50.717245211000034 ], [ -120.372112510999926, 50.716975707000174 ], [ -120.372537017999903, 50.716985280000067 ], [ -120.372552096999982, 50.716715776000157 ], [ -120.373825614999973, 50.716744487000021 ], [ -120.373810544, 50.717013992000062 ], [ -120.374235053999911, 50.717023559000083 ], [ -120.374174774999943, 50.718101578000066 ], [ -120.373750256999955, 50.718092010000106 ], [ -120.373735183999926, 50.718361515000026 ], [ -120.373310662999984, 50.718351945000045 ], [ -120.373280513999987, 50.718890954000074 ], [ -120.372855987999955, 50.718881383000095 ], [ -120.372840910999969, 50.719150887000104 ], [ -120.373265436999944, 50.71916045800004 ], [ -120.373250362999926, 50.719429962 ], [ -120.373674892999972, 50.719439532000123 ], [ -120.373629670999932, 50.720248045000055 ], [ -120.373205132999928, 50.720238475000052 ], [ -120.373159902999944, 50.721046988000062 ], [ -120.374008992999975, 50.721066127000043 ], [ -120.373993920999936, 50.721335631000073 ], [ -120.374843018999982, 50.72135476400009 ], [ -120.374827949999926, 50.721624269000088 ], [ -120.375677051999901, 50.721643395000122 ], [ -120.375645122999913, 50.722214664000013 ], [ -120.375110068999945, 50.722112013000121 ], [ -120.374558438999927, 50.721976037000104 ] ], [ [ -120.37120314799995, 50.71803457000005 ], [ -120.371221066999951, 50.717714498000049 ], [ -120.371180893999906, 50.718034069000069 ], [ -120.37120314799995, 50.71803457000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107107417", "BldgCostT": "73131667", "sL_LossRatio": "0.999993286976902", "sL_AssetLoss": "11260.351544", "sL_BldgLoss": "11260.275953", "sL_StrLoss": "11259.511273", "sL_NStrLoss": "0.76468", "sL_ContLoss": "0.075591", "geom_point": "0101000020E610000024D404381A185EC0779E99DCFF5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.376992851999944, 50.713307859000132 ], [ -120.377007901999932, 50.713038353000073 ], [ -120.376583429999968, 50.71302879600006 ], [ -120.376613534999962, 50.712489786000091 ], [ -120.376189065999981, 50.712480227000093 ], [ -120.376204120999944, 50.712210723000055 ], [ -120.375779654000027, 50.712201162000028 ], [ -120.375794710999969, 50.711931657000072 ], [ -120.375370247999967, 50.711922097000063 ], [ -120.375400366999926, 50.711383086000041 ], [ -120.374975908999986, 50.711373524000088 ], [ -120.374990970999988, 50.711104019000054 ], [ -120.3737176019999, 50.711075322000084 ], [ -120.3737262329999, 50.710920949000062 ], [ -120.373719527999981, 50.710974328000106 ], [ -120.372051566, 50.710890098000029 ], [ -120.372037455999973, 50.711002368000038 ], [ -120.369421190999958, 50.710870199000112 ], [ -120.36937379499993, 50.711247171000089 ], [ -120.369882422999964, 50.711258654000062 ], [ -120.369874408999948, 50.711401797000086 ], [ -120.370920401999939, 50.711524655000105 ], [ -120.366750908999975, 50.711760947000052 ], [ -120.366423752999978, 50.711770403000095 ], [ -120.366290993999925, 50.711808742000066 ], [ -120.366228465999896, 50.711593819000043 ], [ -120.365861664999926, 50.711013534000081 ], [ -120.366038284999917, 50.711006947000023 ], [ -120.366014098999969, 50.710967242000052 ], [ -120.365786777999929, 50.71059410700007 ], [ -120.365782768999935, 50.710587559000039 ], [ -120.365776485999959, 50.710577232000091 ], [ -120.366737644999915, 50.710254864000056 ], [ -120.367742614999912, 50.71001251100013 ], [ -120.369341244999987, 50.709699086000114 ], [ -120.371828477999941, 50.709504900000098 ], [ -120.37264062399997, 50.709509362000041 ], [ -120.374428681999973, 50.709542058000068 ], [ -120.376361287999913, 50.709587146000061 ], [ -120.384103221999979, 50.709409896000082 ], [ -120.384099508999952, 50.709633420000081 ], [ -120.384094423999926, 50.709940279000108 ], [ -120.384064384999974, 50.711759753000095 ], [ -120.3840643599999, 50.711760076000076 ], [ -120.384052218999898, 50.711868241000055 ], [ -120.383873700999942, 50.711859244000053 ], [ -120.383859564999923, 50.712113025000079 ], [ -120.38343509699996, 50.712103493 ], [ -120.383405069999952, 50.712642507000083 ], [ -120.38170718, 50.712604364000057 ], [ -120.381722203999971, 50.712334857000073 ], [ -120.380873264999963, 50.712315777000065 ], [ -120.380843208, 50.712854790000065 ], [ -120.37914531399997, 50.712816608000061 ], [ -120.379115236999951, 50.713355620000094 ], [ -120.376992851999944, 50.713307859000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "630157417", "BldgCostT": "412266667", "sL_LossRatio": "0.99760276542102", "sL_AssetLoss": "50683.400392", "sL_BldgLoss": "50561.900392", "sL_StrLoss": "50518.000392", "sL_NStrLoss": "43.9", "sL_ContLoss": "121.5", "geom_point": "0101000020E610000042D7E0D84E175EC0D6C695A3955C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.366368475999963, 50.728449318000123 ], [ -120.366398716, 50.727910314000049 ], [ -120.365974110999986, 50.727900717000111 ], [ -120.365989233000022, 50.727631214000048 ], [ -120.365140029999978, 50.727612015000076 ], [ -120.365124902999952, 50.727881518000061 ], [ -120.364700297999931, 50.72787191500003 ], [ -120.364670039999965, 50.728410919000055 ], [ -120.364245430999958, 50.728401315000035 ], [ -120.364109228999922, 50.730826831000044 ], [ -120.363684599999885, 50.730817225000095 ], [ -120.363639187999951, 50.731625730000133 ], [ -120.364488462999972, 50.731644942000095 ], [ -120.36436739499996, 50.733800955000056 ], [ -120.363093423999956, 50.733772134000084 ], [ -120.363137481999942, 50.732987930000043 ], [ -120.362846024999953, 50.73298866400004 ], [ -120.362594857999966, 50.732951319000087 ], [ -120.361864899999944, 50.732934795000055 ], [ -120.361819452999924, 50.733743299000096 ], [ -120.361394797999964, 50.73373368300004 ], [ -120.361364493999986, 50.734272686000054 ], [ -120.360939832999961, 50.734263069000093 ], [ -120.360894369999954, 50.735071572000038 ], [ -120.360469701999961, 50.735061953000084 ], [ -120.360452873999961, 50.735361162000068 ], [ -120.358645213, 50.735340274000102 ], [ -120.358276793999906, 50.735335989000035 ], [ -120.358286091999943, 50.73518337000008 ], [ -120.358291991999948, 50.734877303000061 ], [ -120.358305995999942, 50.734804723000067 ], [ -120.358317816999929, 50.734743347000077 ], [ -120.358361535999947, 50.734744337000031 ], [ -120.358379668999987, 50.734422199000065 ], [ -120.358399041, 50.73432161200008 ], [ -120.358421314999958, 50.734206005000047 ], [ -120.358816533999985, 50.734214962000053 ], [ -120.358846867999915, 50.733675962000063 ], [ -120.358524841999952, 50.733668662000056 ], [ -120.358594054999969, 50.733309422000055 ], [ -120.358806308999974, 50.732207577000047 ], [ -120.35907332499994, 50.730821502000111 ], [ -120.359217391999962, 50.730840509000096 ], [ -120.359297209000019, 50.730876819000081 ], [ -120.359865643999953, 50.731135479000102 ], [ -120.359728199999907, 50.731831386000103 ], [ -120.362208816999967, 50.732007294000027 ], [ -120.362294175999963, 50.731306982000049 ], [ -120.362703071999988, 50.730943717000052 ], [ -120.362950611, 50.730723846000039 ], [ -120.362603537, 50.730544108000032 ], [ -120.36244239399997, 50.730378262000073 ], [ -120.362413332999921, 50.730078524000113 ], [ -120.362404031999958, 50.729926730000045 ], [ -120.362156133999946, 50.729444734000069 ], [ -120.361934725999959, 50.729329019000097 ], [ -120.361122027999983, 50.72940231700008 ], [ -120.360464209999989, 50.729386988000066 ], [ -120.360127614999953, 50.729338493000064 ], [ -120.35948106699999, 50.729142180000032 ], [ -120.359395480999979, 50.729116206000072 ], [ -120.359255169999983, 50.72907357200009 ], [ -120.359197475999935, 50.728854381000112 ], [ -120.359143977999949, 50.728761639000048 ], [ -120.358656808999953, 50.727916624000102 ], [ -120.358512515999976, 50.727666350000064 ], [ -120.35849790099995, 50.727614401000032 ], [ -120.35849246199993, 50.727594982 ], [ -120.358360324999964, 50.72712521000004 ], [ -120.358487586999956, 50.726047639000051 ], [ -120.358818903000014, 50.724679135000038 ], [ -120.358896800999901, 50.724357310000123 ], [ -120.358917511999906, 50.724271760000043 ], [ -120.359675038, 50.72209610400008 ], [ -120.359965151999987, 50.721260181000027 ], [ -120.359987707999906, 50.72106291700004 ], [ -120.359992893999944, 50.721017373000052 ], [ -120.360049901999929, 50.720508468000027 ], [ -120.35996310099992, 50.719764298000044 ], [ -120.359610124000014, 50.718673196000026 ], [ -120.35950930599995, 50.718050910000102 ], [ -120.359576005999926, 50.717668612000125 ], [ -120.359825310999923, 50.717212597000085 ], [ -120.36009960299999, 50.716897614000032 ], [ -120.36006206899998, 50.716882339000044 ], [ -120.359980618999955, 50.716849205000081 ], [ -120.359370615999978, 50.716590396000115 ], [ -120.358019801999944, 50.71636700300008 ], [ -120.357953284999908, 50.715845499000046 ], [ -120.357808089999949, 50.714753182000059 ], [ -120.359599581999973, 50.714631835000084 ], [ -120.3606595699999, 50.714234390000058 ], [ -120.361000703999977, 50.714505706000054 ], [ -120.361492298999963, 50.714778401000068 ], [ -120.362221484999935, 50.715139706000095 ], [ -120.36232603599997, 50.715190049000086 ], [ -120.362509012999936, 50.715052635000056 ], [ -120.362907317999955, 50.714753363000064 ], [ -120.363082853999941, 50.714621457000142 ], [ -120.363961994999926, 50.713960840000027 ], [ -120.364425782999959, 50.713550841000071 ], [ -120.365267049999929, 50.712795914000068 ], [ -120.365892545999955, 50.712117489000015 ], [ -120.366015073999975, 50.712002036000044 ], [ -120.366055439999968, 50.711895944000034 ], [ -120.366290993999925, 50.711808742000066 ], [ -120.366423752999978, 50.711770403000095 ], [ -120.366426576999984, 50.711804442000066 ], [ -120.366444689, 50.71202196400003 ], [ -120.366387458999952, 50.712284877000045 ], [ -120.366261340999984, 50.712519087000075 ], [ -120.366168411999922, 50.712591008000089 ], [ -120.365943555999976, 50.713011240000135 ], [ -120.365917831999951, 50.713272165000113 ], [ -120.365992842999958, 50.713636385000058 ], [ -120.366178683999962, 50.714000824000045 ], [ -120.366364104999931, 50.714244488000091 ], [ -120.366555244999944, 50.714419933000045 ], [ -120.366360419999978, 50.714511019000049 ], [ -120.366267472999965, 50.714594617000088 ], [ -120.366235753999888, 50.714711062000092 ], [ -120.366281447999953, 50.714844920000075 ], [ -120.366683277999954, 50.715277944000071 ], [ -120.366758977999908, 50.715489911000091 ], [ -120.366775244999971, 50.715665558000111 ], [ -120.366687326999951, 50.71596932500011 ], [ -120.36649590799999, 50.716247898000034 ], [ -120.366296199999951, 50.716422576000134 ], [ -120.365944494999937, 50.716596721000059 ], [ -120.365867750999911, 50.716620885000061 ], [ -120.365655872999966, 50.716687549 ], [ -120.365242006999949, 50.71675674199999 ], [ -120.363716746999913, 50.71692560700005 ], [ -120.3633117299999, 50.71703757500012 ], [ -120.363074668999971, 50.717181483000076 ], [ -120.362951736999918, 50.717333842000109 ], [ -120.362808786, 50.71770147900002 ], [ -120.362646379999944, 50.717873479000033 ], [ -120.362444997999958, 50.717993939000024 ], [ -120.36202547100001, 50.718142127000107 ], [ -120.361811769999974, 50.718258370000036 ], [ -120.361596471999931, 50.718500676000133 ], [ -120.36158127899995, 50.718734207000075 ], [ -120.363026932999972, 50.71873525100002 ], [ -120.363517446999978, 50.718626942000114 ], [ -120.363823856999915, 50.718559290000073 ], [ -120.363851731, 50.718559531000082 ], [ -120.365343384, 50.718572141000067 ], [ -120.366395409999924, 50.71857219600011 ], [ -120.366632596999949, 50.718572115000036 ], [ -120.367761603999952, 50.71857180700011 ], [ -120.368139883000012, 50.718502597000096 ], [ -120.368400513999958, 50.718374306000023 ], [ -120.368611203999961, 50.718127387000102 ], [ -120.368712293000016, 50.718008895000018 ], [ -120.368919901999931, 50.717861712000051 ], [ -120.36912900499999, 50.717781291000051 ], [ -120.369486508999913, 50.717730888000112 ], [ -120.369266617999955, 50.718611485000075 ], [ -120.369122749999946, 50.719187601000037 ], [ -120.369127673999941, 50.719487909000058 ], [ -120.369199858999963, 50.719705115000124 ], [ -120.369406681999962, 50.720039021 ], [ -120.369649854, 50.720253115000084 ], [ -120.369902539999956, 50.720425418000097 ], [ -120.370117825999969, 50.72052894899999 ], [ -120.370226954999964, 50.720581422000073 ], [ -120.37125355799999, 50.720919840000107 ], [ -120.371968134999975, 50.72115511100003 ], [ -120.37306376899997, 50.721515842000017 ], [ -120.373136360999936, 50.72153819600004 ], [ -120.374558438999927, 50.721976037000104 ], [ -120.375110068999945, 50.722112013000121 ], [ -120.375645122999913, 50.722214664000013 ], [ -120.375616797999953, 50.722721415000137 ], [ -120.37476767599999, 50.722702287000061 ], [ -120.374752608, 50.722971791000099 ], [ -120.374328044, 50.722962225000096 ], [ -120.374297899999988, 50.723501233000057 ], [ -120.373873333999938, 50.723491665000083 ], [ -120.373858257999942, 50.723761169000056 ], [ -120.372584549999971, 50.723732456000135 ], [ -120.372599630999986, 50.723462952000041 ], [ -120.369627667999936, 50.723395900000057 ], [ -120.36952197199993, 50.725282422000092 ], [ -120.367399063999954, 50.725234478000047 ], [ -120.367368837999948, 50.725773483000047 ], [ -120.366944252999986, 50.725763890000088 ], [ -120.366914019999925, 50.726302895000039 ], [ -120.36648943099999, 50.726293299000083 ], [ -120.366474311999966, 50.726562802000096 ], [ -120.366898904999985, 50.726572398000059 ], [ -120.366883788999985, 50.726841900000075 ], [ -120.367308383999983, 50.726851494000094 ], [ -120.367278155999969, 50.727390498000069 ], [ -120.367702755999971, 50.727400093000057 ], [ -120.367687643999972, 50.727669594000105 ], [ -120.369386057999961, 50.72770795000006 ], [ -120.36934075, 50.728516459000076 ], [ -120.368916139999939, 50.728506873000057 ], [ -120.368901033999919, 50.728776375000102 ], [ -120.368476419999951, 50.728766787000033 ], [ -120.368431094999963, 50.729575295000132 ], [ -120.367157232999958, 50.729546520000113 ], [ -120.367172349999976, 50.729277017000115 ], [ -120.366747730999947, 50.729267423000046 ], [ -120.366793084999983, 50.728458915000054 ], [ -120.366368475999963, 50.728449318000123 ] ], [ [ -120.366580135999968, 50.724676285000093 ], [ -120.366595251999939, 50.72440678100007 ], [ -120.366170678999936, 50.724397186000076 ], [ -120.366231155999969, 50.723319176000075 ], [ -120.365382027999985, 50.723299979000096 ], [ -120.365366903999941, 50.723569481000048 ], [ -120.364093210999926, 50.723540675000081 ], [ -120.364123471999946, 50.723001670000073 ], [ -120.363698909999982, 50.72299206600006 ], [ -120.363774570999979, 50.721644556000058 ], [ -120.363350023999914, 50.721634949000055 ], [ -120.363374467999947, 50.721199618000099 ], [ -120.361279532999916, 50.721093652000022 ], [ -120.36123222499999, 50.722052463000075 ], [ -120.361185607999914, 50.722328545000074 ], [ -120.361121262999959, 50.723473406000096 ], [ -120.360937048999943, 50.72346923300011 ], [ -120.36088562499999, 50.723627363000091 ], [ -120.360675953999987, 50.723832828000099 ], [ -120.36064839, 50.724323139000063 ], [ -120.361291874999964, 50.724355693000078 ], [ -120.361259076999886, 50.724616104000106 ], [ -120.361481515999955, 50.724627356000056 ], [ -120.361485243999951, 50.724561026000117 ], [ -120.3623343899999, 50.724580251000056 ], [ -120.362349530999936, 50.724310750000051 ], [ -120.363623245999975, 50.724339576000034 ], [ -120.363608111999937, 50.72460907700011 ], [ -120.364032685999987, 50.724618683000102 ], [ -120.364002421999956, 50.725157686000081 ], [ -120.364427001999971, 50.725167291000091 ], [ -120.364411871999934, 50.725436793000021 ], [ -120.364836453999942, 50.725446397000098 ], [ -120.364821324999966, 50.725715899000143 ], [ -120.36524591099996, 50.725725500000081 ], [ -120.365261034999975, 50.725455998000051 ], [ -120.365685618999962, 50.725465598000078 ], [ -120.36571586399999, 50.724926593000141 ], [ -120.366140441999974, 50.724936190000044 ], [ -120.366155560999985, 50.724666687000088 ], [ -120.366580135999968, 50.724676285000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17090750", "BldgCostT": "11315000", "sL_LossRatio": "1", "sL_AssetLoss": "1218", "sL_BldgLoss": "1218", "sL_StrLoss": "1218", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F0F00246C175EC0B23AFF97675D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.366368475999963, 50.728449318000123 ], [ -120.366307993999953, 50.729527328000103 ], [ -120.366732614999989, 50.729536924000058 ], [ -120.366717494999975, 50.729806427000035 ], [ -120.367142116999929, 50.729816021000033 ], [ -120.367127, 50.73008552400006 ], [ -120.367551624999962, 50.730095118000051 ], [ -120.367506281999923, 50.730903626000043 ], [ -120.36580775299997, 50.73086524000005 ], [ -120.365822877999975, 50.730595738000027 ], [ -120.365398249999885, 50.730586139000081 ], [ -120.365428502999947, 50.730047135000056 ], [ -120.365003878999985, 50.730037534000132 ], [ -120.36501900699993, 50.729768031000056 ], [ -120.364594386999968, 50.72975842800011 ], [ -120.364654908999952, 50.728680421000064 ], [ -120.36507952099997, 50.728690023000084 ], [ -120.365094647999967, 50.728420521000032 ], [ -120.366368475999963, 50.728449318000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "65.5", "sL_BldgLoss": "65.5", "sL_StrLoss": "65.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061E3B85BEB165EC05B77989B145E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.357936872999971, 50.734734709000129 ], [ -120.358317816999929, 50.734743347000077 ], [ -120.358305995999942, 50.734804723000067 ], [ -120.358291991999948, 50.734877303000061 ], [ -120.358286091999943, 50.73518337000008 ], [ -120.358276793999906, 50.735335989000035 ], [ -120.358127808999981, 50.735278640000097 ], [ -120.358082568999976, 50.735261205000072 ], [ -120.357911119000022, 50.73519215600006 ], [ -120.357936872999971, 50.734734709000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87176334", "BldgCostT": "57173334", "sL_LossRatio": "0.999996393252286", "sL_AssetLoss": "8206.83961", "sL_BldgLoss": "8206.81001", "sL_StrLoss": "8206.50851", "sL_NStrLoss": "0.3015", "sL_ContLoss": "0.0296", "geom_point": "0101000020E6100000C657A76FFE165EC0D937DEBAEE5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.358422212999983, 50.733666336000077 ], [ -120.358437379999927, 50.733396835000093 ], [ -120.358012727999935, 50.733387209000107 ], [ -120.358040314999982, 50.732897145000045 ], [ -120.358183791999934, 50.732489991000058 ], [ -120.358249121, 50.731773501000085 ], [ -120.358528386999922, 50.731779833000097 ], [ -120.358554206999941, 50.731321049000087 ], [ -120.358364240999961, 50.731236422000059 ], [ -120.35829822699999, 50.731234927000052 ], [ -120.358371176999967, 50.730434796000083 ], [ -120.35804209599999, 50.729456388000067 ], [ -120.357860613999932, 50.727931100000063 ], [ -120.357793496999989, 50.72683301100011 ], [ -120.357918575999932, 50.72463259700006 ], [ -120.357738292999983, 50.723044606000016 ], [ -120.35773999, 50.722557328000065 ], [ -120.35776132499997, 50.722205062000072 ], [ -120.357742039999948, 50.721968454000056 ], [ -120.357746683999949, 50.720634804000042 ], [ -120.357216688999927, 50.719452803000067 ], [ -120.357215578999984, 50.718905145000058 ], [ -120.357231604999953, 50.718896361000134 ], [ -120.35795740399999, 50.718803087000033 ], [ -120.359472201999949, 50.718684214000078 ], [ -120.359610124000014, 50.718673196000026 ], [ -120.35996310099992, 50.719764298000044 ], [ -120.360049901999929, 50.720508468000027 ], [ -120.359992893999944, 50.721017373000052 ], [ -120.359987707999906, 50.72106291700004 ], [ -120.359965151999987, 50.721260181000027 ], [ -120.359675038, 50.72209610400008 ], [ -120.358917511999906, 50.724271760000043 ], [ -120.358896800999901, 50.724357310000123 ], [ -120.358818903000014, 50.724679135000038 ], [ -120.358487586999956, 50.726047639000051 ], [ -120.358360324999964, 50.72712521000004 ], [ -120.35849246199993, 50.727594982 ], [ -120.35849790099995, 50.727614401000032 ], [ -120.358512515999976, 50.727666350000064 ], [ -120.358656808999953, 50.727916624000102 ], [ -120.359143977999949, 50.728761639000048 ], [ -120.359197475999935, 50.728854381000112 ], [ -120.359255169999983, 50.72907357200009 ], [ -120.359395480999979, 50.729116206000072 ], [ -120.35948106699999, 50.729142180000032 ], [ -120.360127614999953, 50.729338493000064 ], [ -120.360464209999989, 50.729386988000066 ], [ -120.361122027999983, 50.72940231700008 ], [ -120.361934725999959, 50.729329019000097 ], [ -120.362156133999946, 50.729444734000069 ], [ -120.362404031999958, 50.729926730000045 ], [ -120.362413332999921, 50.730078524000113 ], [ -120.36244239399997, 50.730378262000073 ], [ -120.362603537, 50.730544108000032 ], [ -120.362950611, 50.730723846000039 ], [ -120.362703071999988, 50.730943717000052 ], [ -120.362294175999963, 50.731306982000049 ], [ -120.362208816999967, 50.732007294000027 ], [ -120.359728199999907, 50.731831386000103 ], [ -120.359865643999953, 50.731135479000102 ], [ -120.359297209000019, 50.730876819000081 ], [ -120.359217391999962, 50.730840509000096 ], [ -120.35907332499994, 50.730821502000111 ], [ -120.358806308999974, 50.732207577000047 ], [ -120.358594054999969, 50.733309422000055 ], [ -120.358524841999952, 50.733668662000056 ], [ -120.358422212999983, 50.733666336000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1079975011", "BldgCostT": "656990430", "sL_LossRatio": "0.874356439045911", "sL_AssetLoss": "30359.626001", "sL_BldgLoss": "26545.134481", "sL_StrLoss": "25138.945401", "sL_NStrLoss": "1406.18908", "sL_ContLoss": "3814.49152", "geom_point": "0101000020E610000038D9C387A7145EC06FBD527593564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.321564285999898, 50.68002350000004 ], [ -120.320337194, 50.679446698000099 ], [ -120.319448798999971, 50.67864351000005 ], [ -120.318827712999976, 50.677855895000093 ], [ -120.31826690199992, 50.677501190000037 ], [ -120.317575812999934, 50.677215 ], [ -120.316806083999964, 50.677072593000076 ], [ -120.316259289999934, 50.676959996000079 ], [ -120.315749802999946, 50.67672358500004 ], [ -120.315146216999949, 50.676619697000042 ], [ -120.314213286999987, 50.676589703000083 ], [ -120.312248092999965, 50.676310603000061 ], [ -120.311006516999939, 50.676236494000108 ], [ -120.309353301999963, 50.676189501000096 ], [ -120.307084711999934, 50.676001593000073 ], [ -120.306006892, 50.67580639600007 ], [ -120.305553599999925, 50.675786501000069 ], [ -120.305083209999964, 50.675874792000165 ], [ -120.304565297999972, 50.675755211000038 ], [ -120.303659897999978, 50.675481699000031 ], [ -120.302496207999923, 50.675283803000077 ], [ -120.30134106499996, 50.674901459000111 ], [ -120.300482315999929, 50.674617208000065 ], [ -120.299511296, 50.674261208000068 ], [ -120.298184079999956, 50.673979199000016 ], [ -120.297140287999952, 50.673927897000105 ], [ -120.295801186999981, 50.674067494000091 ], [ -120.294696506999955, 50.674554596000128 ], [ -120.294508509999915, 50.674722260000067 ], [ -120.294212994999924, 50.674715395000135 ], [ -120.294196593999985, 50.67500043600004 ], [ -120.293918714999904, 50.675248257000078 ], [ -120.293439101999965, 50.675237113000058 ], [ -120.293403050999927, 50.675130951 ], [ -120.293358153999989, 50.675062633000096 ], [ -120.293171097999902, 50.674778085000057 ], [ -120.294766397, 50.673760406000049 ], [ -120.295156399999939, 50.673577431000091 ], [ -120.295310218999973, 50.673505307000021 ], [ -120.296181215999951, 50.673167801000069 ], [ -120.297255201999988, 50.672857095000133 ], [ -120.297623885999911, 50.67275044000008 ], [ -120.297663089999944, 50.672739100000044 ], [ -120.297807086999953, 50.672772817000087 ], [ -120.297879601999981, 50.672789790000053 ], [ -120.298190066999922, 50.672895084000118 ], [ -120.298192789000026, 50.672896001000076 ], [ -120.299050108999936, 50.67311198800013 ], [ -120.299534090999913, 50.673181904000025 ], [ -120.302181185999984, 50.673306598000117 ], [ -120.302365284999922, 50.6733114990001 ], [ -120.302418286999966, 50.673229492000118 ], [ -120.303209801, 50.67326009500006 ], [ -120.303224045999983, 50.673259968000053 ], [ -120.303853891999964, 50.673254302000046 ], [ -120.305050307999977, 50.673171298000092 ], [ -120.305411105999937, 50.67310409700012 ], [ -120.305729836999916, 50.673012224000068 ], [ -120.305742810999931, 50.673008501000041 ], [ -120.305773045999899, 50.672996450000021 ], [ -120.306374079999912, 50.672756907000085 ], [ -120.30680269599999, 50.672547199000086 ], [ -120.306939680999918, 50.672519902000083 ], [ -120.308017102999912, 50.671987489000067 ], [ -120.30844382199993, 50.672194902000072 ], [ -120.308964605999932, 50.672243184000095 ], [ -120.309396318999973, 50.672243603000084 ], [ -120.31176180099996, 50.672248212000085 ], [ -120.31413545599996, 50.672251878000111 ], [ -120.314216904999938, 50.672251987000067 ], [ -120.316630511999946, 50.672258092000014 ], [ -120.31662451599999, 50.673100391000034 ], [ -120.316620885999953, 50.674013999000117 ], [ -120.318970991999961, 50.674017711000062 ], [ -120.318963522999951, 50.67455544500006 ], [ -120.321437021999927, 50.674546541000105 ], [ -120.324274604999971, 50.674901014000078 ], [ -120.327139748999969, 50.67451737800004 ], [ -120.327137381999989, 50.674916285000101 ], [ -120.32712931, 50.67582149400004 ], [ -120.327122993, 50.676690800000074 ], [ -120.329576722999946, 50.676685096 ], [ -120.331992208999978, 50.676677497000043 ], [ -120.334379115999923, 50.676671906000088 ], [ -120.33665250599995, 50.676664994000099 ], [ -120.33795399199991, 50.676660898000108 ], [ -120.338988776999926, 50.676609893000062 ], [ -120.338985402, 50.676333104000058 ], [ -120.338978098999974, 50.67540091100004 ], [ -120.341410209999964, 50.675880506000077 ], [ -120.341978788999953, 50.676022914000043 ], [ -120.342290607999985, 50.676140602000054 ], [ -120.343227997999975, 50.676343197000129 ], [ -120.345659499, 50.676884003000069 ], [ -120.346435892999963, 50.677361395000105 ], [ -120.348616293999982, 50.677990203000071 ], [ -120.348639684999966, 50.677993271000112 ], [ -120.349245090999929, 50.678072608000036 ], [ -120.349366771999883, 50.678298863000123 ], [ -120.350333418999952, 50.678600319000076 ], [ -120.350588849999966, 50.678679987000109 ], [ -120.350623119, 50.678678702000084 ], [ -120.350916361999978, 50.678718790000033 ], [ -120.351235336999963, 50.678870148000065 ], [ -120.351433558999958, 50.679066736000053 ], [ -120.35148635199999, 50.679267688000031 ], [ -120.35148025, 50.679406137000093 ], [ -120.351457284999967, 50.67944875600007 ], [ -120.351369054999978, 50.679612273000053 ], [ -120.351336196999952, 50.679670096000038 ], [ -120.351220404999964, 50.679820493000108 ], [ -120.351028476999915, 50.680069728000028 ], [ -120.350059399999935, 50.679811301000043 ], [ -120.349218596999947, 50.679667501000019 ], [ -120.348305407999987, 50.679409914000061 ], [ -120.348332562999943, 50.67892834700006 ], [ -120.346445975, 50.678885383000072 ], [ -120.345797112999961, 50.678702334000043 ], [ -120.34580283799994, 50.678600885000044 ], [ -120.345206147999988, 50.678587286000088 ], [ -120.344981708999953, 50.678464006000091 ], [ -120.344674911999931, 50.678412701000049 ], [ -120.344115747999979, 50.678393679000052 ], [ -120.344121449999989, 50.678292712000022 ], [ -120.34327315099992, 50.678273366000013 ], [ -120.343260136999959, 50.678503712000108 ], [ -120.343088735999913, 50.678539008000065 ], [ -120.341985472999937, 50.678513837000054 ], [ -120.341971039999962, 50.678769162000037 ], [ -120.341908992999947, 50.678781939000011 ], [ -120.340697779999942, 50.678754293000054 ], [ -120.340682539999989, 50.679023792000059 ], [ -120.339834230999926, 50.679004422000062 ], [ -120.339822513999977, 50.679211547000115 ], [ -120.339549460999976, 50.679267764000073 ], [ -120.338970671999903, 50.679254543000091 ], [ -120.338963092999947, 50.679388488000029 ], [ -120.338369673000017, 50.679510659000059 ], [ -120.337682944999955, 50.67949496500011 ], [ -120.337675874999945, 50.679619869000071 ], [ -120.335820816999956, 50.679765700000104 ], [ -120.334820298999915, 50.679940902000112 ], [ -120.333763103999928, 50.679862591000102 ], [ -120.33001549, 50.679795607000074 ], [ -120.326820401999967, 50.679938112000116 ], [ -120.325181108999928, 50.679882497000087 ], [ -120.324948739999911, 50.679857147000114 ], [ -120.323183918999945, 50.679664601000184 ], [ -120.322033498999986, 50.679997896000081 ], [ -120.321564285999898, 50.68002350000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "259986880", "BldgCostT": "176354573", "sL_LossRatio": "0.970581971890895", "sL_AssetLoss": "13916.701299", "sL_BldgLoss": "13507.299389", "sL_StrLoss": "13356.7602", "sL_NStrLoss": "150.539189", "sL_ContLoss": "409.40191", "geom_point": "0101000020E6100000B5DB1597B6145EC052F64CE523564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.321444215999975, 50.673116497000059 ], [ -120.321448108999945, 50.672267785000059 ], [ -120.321456696000027, 50.671381502000052 ], [ -120.321459578, 50.67049489500004 ], [ -120.324308607999953, 50.670504998000105 ], [ -120.324303394999944, 50.671387003000127 ], [ -120.324294889000029, 50.672273311000041 ], [ -120.324289123999932, 50.67312639500004 ], [ -120.326270498999946, 50.673133202 ], [ -120.327151115, 50.673136190000022 ], [ -120.327142592999905, 50.674033392000062 ], [ -120.327139748999969, 50.67451737800004 ], [ -120.324274604999971, 50.674901014000078 ], [ -120.321437021999927, 50.674546541000105 ], [ -120.321438899999933, 50.674021996000107 ], [ -120.321444215999975, 50.673116497000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147934169", "BldgCostT": "97212625", "sL_LossRatio": "0.990295717037547", "sL_AssetLoss": "18910.22765", "sL_BldgLoss": "18726.71745", "sL_StrLoss": "18657.92545", "sL_NStrLoss": "68.792", "sL_ContLoss": "183.5102", "geom_point": "0101000020E61000005EA7470970145EC04FD68779FF554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.318963522999951, 50.67455544500006 ], [ -120.318970991999961, 50.674017711000062 ], [ -120.316620885999953, 50.674013999000117 ], [ -120.31662451599999, 50.673100391000034 ], [ -120.316630511999946, 50.672258092000014 ], [ -120.316636597999931, 50.671369794000057 ], [ -120.316643966999919, 50.670482597000102 ], [ -120.319003295999948, 50.670490313000073 ], [ -120.319011597000014, 50.669606688000044 ], [ -120.319020714999951, 50.668705992000078 ], [ -120.321088666999927, 50.668706415000045 ], [ -120.32146889699996, 50.668706504000049 ], [ -120.321464511999949, 50.669615605000054 ], [ -120.321459578, 50.67049489500004 ], [ -120.321456696000027, 50.671381502000052 ], [ -120.321448108999945, 50.672267785000059 ], [ -120.321444215999975, 50.673116497000059 ], [ -120.321438899999933, 50.674021996000107 ], [ -120.321437021999927, 50.674546541000105 ], [ -120.318963522999951, 50.67455544500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127702666", "BldgCostT": "84706666", "sL_LossRatio": "0.994518691276668", "sL_AssetLoss": "14814.7317363", "sL_BldgLoss": "14733.527618", "sL_StrLoss": "14704.003128", "sL_NStrLoss": "29.52449", "sL_ContLoss": "81.2041183", "geom_point": "0101000020E61000004F0017C7B5145EC01C7820789D554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.324303394999944, 50.671387003000127 ], [ -120.324308607999953, 50.670504998000105 ], [ -120.321459578, 50.67049489500004 ], [ -120.321464511999949, 50.669615605000054 ], [ -120.32146889699996, 50.668706504000049 ], [ -120.321088666999927, 50.668706415000045 ], [ -120.319020714999951, 50.668705992000078 ], [ -120.319031182999964, 50.667715202000103 ], [ -120.31904180399999, 50.666825402000043 ], [ -120.321209010999922, 50.666811783000114 ], [ -120.321479111999921, 50.666810106000135 ], [ -120.321493278999938, 50.666810172000062 ], [ -120.323426730999969, 50.666820518000101 ], [ -120.324341406999977, 50.666825399000047 ], [ -120.324335515, 50.66771270300007 ], [ -120.32719668499999, 50.667726100000081 ], [ -120.327185820999929, 50.668709593000123 ], [ -120.327181120999953, 50.669633103000102 ], [ -120.327180366999968, 50.669716920000091 ], [ -120.327178921999931, 50.669879200000075 ], [ -120.327173321999936, 50.670514106999981 ], [ -120.327164626999945, 50.671309709000063 ], [ -120.327164209, 50.671348993000052 ], [ -120.327164113999913, 50.671428307000092 ], [ -120.326103681999939, 50.671424702000138 ], [ -120.325966003999966, 50.671390700000124 ], [ -120.324303394999944, 50.671387003000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245515033", "BldgCostT": "160339561", "sL_LossRatio": "0.970260430767428", "sL_AssetLoss": "13550.61322", "sL_BldgLoss": "13147.62382", "sL_StrLoss": "12988.51711", "sL_NStrLoss": "159.10671", "sL_ContLoss": "402.9894", "geom_point": "0101000020E61000005802A42E00155EC0384CA7540D564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.324303394999944, 50.671387003000127 ], [ -120.325966003999966, 50.671390700000124 ], [ -120.326103681999939, 50.671424702000138 ], [ -120.327164113999913, 50.671428307000092 ], [ -120.327517071999978, 50.671428901000063 ], [ -120.327859882999974, 50.671429493000034 ], [ -120.329186687999965, 50.671435366000075 ], [ -120.329622717999897, 50.671437303000097 ], [ -120.332004701999921, 50.671445903000091 ], [ -120.332007603999969, 50.672287791000088 ], [ -120.331999393999951, 50.673149783000035 ], [ -120.329607099999947, 50.673144210000018 ], [ -120.327151115, 50.673136190000022 ], [ -120.326270498999946, 50.673133202 ], [ -120.324289123999932, 50.67312639500004 ], [ -120.324294889000029, 50.672273311000041 ], [ -120.324303394999944, 50.671387003000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "422979344", "BldgCostT": "287603736", "sL_LossRatio": "0.961349254863701", "sL_AssetLoss": "9363.969536", "sL_BldgLoss": "9002.045136", "sL_StrLoss": "8867.271136", "sL_NStrLoss": "134.774", "sL_ContLoss": "361.9244", "geom_point": "0101000020E61000003FA08DD87E155EC03326CCCD1A564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.336672913999934, 50.674097736000085 ], [ -120.336380876999939, 50.674048625000118 ], [ -120.33440711499999, 50.674045530000093 ], [ -120.33441968799994, 50.673159399000042 ], [ -120.331999393999951, 50.673149783000035 ], [ -120.332007603999969, 50.672287791000088 ], [ -120.332004701999921, 50.671445903000091 ], [ -120.333163934999902, 50.67144957900009 ], [ -120.333333623999962, 50.671450101000119 ], [ -120.334439312999933, 50.671453584000083 ], [ -120.334453515999911, 50.67145363800006 ], [ -120.335201184999946, 50.67145599600012 ], [ -120.335413703999976, 50.671456663000157 ], [ -120.335838290999973, 50.671457993000104 ], [ -120.336703594999932, 50.671460685000064 ], [ -120.336717818999915, 50.671460760000102 ], [ -120.336899524999964, 50.671461539000035 ], [ -120.337295852999944, 50.671463255000035 ], [ -120.338541692999911, 50.671468596000153 ], [ -120.338953293999964, 50.67147057800004 ], [ -120.33895570199995, 50.671979892000131 ], [ -120.338958788999946, 50.672719915000094 ], [ -120.338967082999943, 50.673610602000039 ], [ -120.338971731999976, 50.674495812000011 ], [ -120.336672913999934, 50.674097736000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1387923264", "BldgCostT": "868970705", "sL_LossRatio": "0.822279317410256", "sL_AssetLoss": "27579.443476", "sL_BldgLoss": "22678.005956", "sL_StrLoss": "20896.360356", "sL_NStrLoss": "1781.6456", "sL_ContLoss": "4901.43752", "geom_point": "0101000020E610000081C71AA248155EC0BBBD509F68564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.327142592999905, 50.674033392000062 ], [ -120.327151115, 50.673136190000022 ], [ -120.329607099999947, 50.673144210000018 ], [ -120.331999393999951, 50.673149783000035 ], [ -120.33441968799994, 50.673159399000042 ], [ -120.33440711499999, 50.674045530000093 ], [ -120.336380876999939, 50.674048625000118 ], [ -120.336672913999934, 50.674097736000085 ], [ -120.338971731999976, 50.674495812000011 ], [ -120.338978098999974, 50.67540091100004 ], [ -120.338985402, 50.676333104000058 ], [ -120.338988776999926, 50.676609893000062 ], [ -120.33795399199991, 50.676660898000108 ], [ -120.33665250599995, 50.676664994000099 ], [ -120.334379115999923, 50.676671906000088 ], [ -120.331992208999978, 50.676677497000043 ], [ -120.329576722999946, 50.676685096 ], [ -120.327122993, 50.676690800000074 ], [ -120.32712931, 50.67582149400004 ], [ -120.327137381999989, 50.674916285000101 ], [ -120.327139748999969, 50.67451737800004 ], [ -120.327142592999905, 50.674033392000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129027834", "BldgCostT": "86303334", "sL_LossRatio": "0.99999968384656", "sL_AssetLoss": "13158.16777", "sL_BldgLoss": "13158.16361", "sL_StrLoss": "13158.00361", "sL_NStrLoss": "0.16", "sL_ContLoss": "0.00416", "geom_point": "0101000020E6100000DE8ECB1323145EC056DE4C5488554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31422690299992, 50.667246382000023 ], [ -120.3165923, 50.665446804000105 ], [ -120.31689678599993, 50.665620898000064 ], [ -120.317194200999936, 50.665717210000068 ], [ -120.317524821999939, 50.665774706000015 ], [ -120.31904960199995, 50.665788483000092 ], [ -120.319048113999884, 50.665987252000029 ], [ -120.31904180399999, 50.666825402000043 ], [ -120.319031182999964, 50.667715202000103 ], [ -120.319020714999951, 50.668705992000078 ], [ -120.316520407999931, 50.668701792000071 ], [ -120.314226893999972, 50.66870178900011 ], [ -120.31422090299999, 50.669589203000079 ], [ -120.314222100999984, 50.670475088000067 ], [ -120.31178448699994, 50.67046870800003 ], [ -120.309388414999887, 50.67045969900007 ], [ -120.30938749799999, 50.66957201200011 ], [ -120.309383257999983, 50.669111953000034 ], [ -120.309382302999921, 50.669008493 ], [ -120.309424984999964, 50.66888451100008 ], [ -120.309711700999955, 50.668696413000127 ], [ -120.310407392999977, 50.66869744100002 ], [ -120.311800286999969, 50.668699511000035 ], [ -120.311817886, 50.667799205000101 ], [ -120.311889912999931, 50.667701986000118 ], [ -120.312147103000015, 50.667667385000058 ], [ -120.312741182999929, 50.667673369000028 ], [ -120.312896988999967, 50.667674915000099 ], [ -120.314231883999938, 50.667688285000089 ], [ -120.31422690299992, 50.667246382000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133843583", "BldgCostT": "87503333", "sL_LossRatio": "0.994369834108123", "sL_AssetLoss": "11957.240922", "sL_BldgLoss": "11889.919672", "sL_StrLoss": "11865.208572", "sL_NStrLoss": "24.7111", "sL_ContLoss": "67.32125", "geom_point": "0101000020E610000040A374E91F145EC061321314D8554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.316520407999931, 50.668701792000071 ], [ -120.319020714999951, 50.668705992000078 ], [ -120.319011597000014, 50.669606688000044 ], [ -120.319003295999948, 50.670490313000073 ], [ -120.316643966999919, 50.670482597000102 ], [ -120.316636597999931, 50.671369794000057 ], [ -120.316630511999946, 50.672258092000014 ], [ -120.314216904999938, 50.672251987000067 ], [ -120.31413545599996, 50.672251878000111 ], [ -120.31176180099996, 50.672248212000085 ], [ -120.309396318999973, 50.672243603000084 ], [ -120.309390193999889, 50.671351997000073 ], [ -120.309388414999887, 50.67045969900007 ], [ -120.31178448699994, 50.67046870800003 ], [ -120.314222100999984, 50.670475088000067 ], [ -120.31422090299999, 50.669589203000079 ], [ -120.314226893999972, 50.66870178900011 ], [ -120.316520407999931, 50.668701792000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.99126884149255", "sL_AssetLoss": "0.0046042", "sL_BldgLoss": "0.004564", "sL_StrLoss": "0.000104", "sL_NStrLoss": "0.00446", "sL_ContLoss": "0.0000402", "geom_point": "0101000020E6100000223359D48E155EC05C4C9E786F524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.335441367999977, 50.644093639000047 ], [ -120.335456617999981, 50.64382413900011 ], [ -120.338847314999938, 50.643901673000109 ], [ -120.338839521999915, 50.644039562000025 ], [ -120.336707697999927, 50.644225544000093 ], [ -120.336092397999977, 50.643871598000018 ], [ -120.33537224, 50.644342011000077 ], [ -120.33500109, 50.644374378000094 ], [ -120.33501752899997, 50.644083940000044 ], [ -120.335441367999977, 50.644093639000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10925834", "BldgCostT": "7063334", "sL_LossRatio": "0.999999335889977", "sL_AssetLoss": "934.9354449", "sL_BldgLoss": "934.934824", "sL_StrLoss": "934.900824", "sL_NStrLoss": "0.034", "sL_ContLoss": "0.0006209", "geom_point": "0101000020E6100000FAAAE851E9115EC05475EA25A14F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.27727519699998, 50.620169509000029 ], [ -120.282912794999987, 50.620459531000087 ], [ -120.28245647599999, 50.624041152000054 ], [ -120.276818430999981, 50.623751107000032 ], [ -120.27727519699998, 50.620169509000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "68", "sL_BldgLoss": "68", "sL_StrLoss": "68", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B9CF0D830165EC0467CE5496B524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.345659138999963, 50.643517440000082 ], [ -120.347778325999926, 50.643565725000023 ], [ -120.347734548999966, 50.644342865000041 ], [ -120.347555723999989, 50.64432828000011 ], [ -120.347346413, 50.644310390000058 ], [ -120.345622748000011, 50.644162977000065 ], [ -120.345659138999963, 50.643517440000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9608500", "BldgCostT": "6130000", "sL_LossRatio": "1", "sL_AssetLoss": "515.6", "sL_BldgLoss": "515.6", "sL_StrLoss": "515.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B34F0E5B6145EC00E25A47F13534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.32106925799998, 50.647097790000053 ], [ -120.326710516999967, 50.647385587000095 ], [ -120.326257413999912, 50.650967270000095 ], [ -120.320615709999942, 50.650679452000141 ], [ -120.32106925799998, 50.647097790000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34567084", "BldgCostT": "22368334", "sL_LossRatio": "0.999975742402475", "sL_AssetLoss": "3854.4625", "sL_BldgLoss": "3854.369", "sL_StrLoss": "3854", "sL_NStrLoss": "0.369", "sL_ContLoss": "0.0935", "geom_point": "0101000020E6100000CE5A860FD7135EC077ED98DBB94F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.312012013999947, 50.625323366000089 ], [ -120.312100484999945, 50.624625401000046 ], [ -120.310795838999951, 50.624558660000105 ], [ -120.31079172699999, 50.624591091000084 ], [ -120.30986680499997, 50.624543767000041 ], [ -120.309864185999928, 50.624564413000023 ], [ -120.307219117999978, 50.624429033000148 ], [ -120.307196073999961, 50.624610675000028 ], [ -120.301557798999937, 50.624321882000118 ], [ -120.301581796999969, 50.624132909000068 ], [ -120.300214767999975, 50.624062847000097 ], [ -120.300669672999973, 50.620481154000061 ], [ -120.305606255999948, 50.620734083000052 ], [ -120.305607945999967, 50.620720769000059 ], [ -120.30736895299998, 50.620810942000105 ], [ -120.30737306599994, 50.620778511000083 ], [ -120.31301093499999, 50.62106701000009 ], [ -120.312922483999969, 50.621764980000115 ], [ -120.313573862999959, 50.621798293000069 ], [ -120.313684484999939, 50.620925258000035 ], [ -120.319322412999952, 50.621213437000101 ], [ -120.318868985999984, 50.624795203000112 ], [ -120.317761034999961, 50.624738594000085 ], [ -120.317650480999959, 50.625611630000044 ], [ -120.312012013999947, 50.625323366000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4267834", "BldgCostT": "2943334", "sL_LossRatio": "1", "sL_AssetLoss": "448.8", "sL_BldgLoss": "448.8", "sL_StrLoss": "448.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DA073808A30F5EC0AC63E81A5E514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.242338757999931, 50.634244180000074 ], [ -120.246444578999913, 50.634456656000033 ], [ -120.246098223999951, 50.637157029000015 ], [ -120.245714757999963, 50.637142957000066 ], [ -120.244917766999919, 50.637113683000116 ], [ -120.243615597999977, 50.637012413000086 ], [ -120.243567374999927, 50.637008661000053 ], [ -120.243278018999987, 50.636992587000044 ], [ -120.242359661999927, 50.636941632000088 ], [ -120.242365465999953, 50.6364114880001 ], [ -120.242382011999908, 50.634887836000125 ], [ -120.242360427999984, 50.634566583000066 ], [ -120.242341123999921, 50.634279381000042 ], [ -120.242338757999931, 50.634244180000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26033834", "BldgCostT": "16483334", "sL_LossRatio": "0.999969547465066", "sL_AssetLoss": "2922.581", "sL_BldgLoss": "2922.492", "sL_StrLoss": "2922.2", "sL_NStrLoss": "0.292", "sL_ContLoss": "0.089", "geom_point": "0101000020E6100000051D2932A5125EC0F9358A9318564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.280220220000018, 50.67523550100001 ], [ -120.280143594999956, 50.674967489000025 ], [ -120.279958304999965, 50.674749803000076 ], [ -120.279759088999953, 50.674592605000086 ], [ -120.279350846999961, 50.674270510000035 ], [ -120.27996240899995, 50.674216550000054 ], [ -120.280656025, 50.674155392000067 ], [ -120.28062633699993, 50.674668823000097 ], [ -120.281050431999986, 50.674678724000067 ], [ -120.28103485299998, 50.674948210000146 ], [ -120.281883046999937, 50.674968007000082 ], [ -120.281898622999947, 50.674698521000039 ], [ -120.282746814999925, 50.67471831200001 ], [ -120.282762382999977, 50.674448825000049 ], [ -120.281066009999904, 50.674409238000059 ], [ -120.281082863, 50.674117753000104 ], [ -120.281979547999939, 50.674038680000059 ], [ -120.283000252999926, 50.673948641000045 ], [ -120.283098472999967, 50.673947568000045 ], [ -120.283171049999936, 50.673405007000113 ], [ -120.28328351899999, 50.672564666000035 ], [ -120.28256844400002, 50.67261056400006 ], [ -120.281978787999932, 50.672675559000041 ], [ -120.281982010999954, 50.672541669000076 ], [ -120.282871365999966, 50.672562420000077 ], [ -120.282902502999931, 50.672023447000093 ], [ -120.28417471899999, 50.672053119000097 ], [ -120.284143598999918, 50.672592092000087 ], [ -120.284567674999906, 50.672601979000035 ], [ -120.284536557999971, 50.673140954000047 ], [ -120.284960639999937, 50.673150840000105 ], [ -120.284976195999931, 50.672881354000019 ], [ -120.287944763999988, 50.6729505140001 ], [ -120.28797584299997, 50.672411538000091 ], [ -120.288399918999957, 50.672421413000066 ], [ -120.288415454999921, 50.672151924000083 ], [ -120.28926360499996, 50.672171667000107 ], [ -120.28927913699999, 50.671902179000021 ], [ -120.290313482, 50.67192624800002 ], [ -120.290528537999961, 50.670237933000116 ], [ -120.290961417999952, 50.670260135000085 ], [ -120.29102354299999, 50.669772343000048 ], [ -120.29159909599997, 50.669801859000074 ], [ -120.291643936999961, 50.669449756000063 ], [ -120.297287811999922, 50.669739035000134 ], [ -120.29722428299999, 50.670238394000066 ], [ -120.298921632999978, 50.670325334000026 ], [ -120.299037886999912, 50.670331288000078 ], [ -120.299031425999914, 50.670382089000086 ], [ -120.299648170999959, 50.670413673000063 ], [ -120.299485069999989, 50.671696179000058 ], [ -120.300731515999971, 50.671759999000109 ], [ -120.300752547999949, 50.671761076000102 ], [ -120.300753001999951, 50.67175317900017 ], [ -120.300760120999954, 50.671629118000048 ], [ -120.301075663999953, 50.671636430000021 ], [ -120.301184194999962, 50.67163894400003 ], [ -120.301187403999947, 50.671583022000071 ], [ -120.301199657000012, 50.671369454000036 ], [ -120.301614139999941, 50.671379056000013 ], [ -120.301826080999945, 50.671383967000111 ], [ -120.30125478399998, 50.671656798000093 ], [ -120.300469678999903, 50.671967197000129 ], [ -120.298807418999957, 50.672418293000078 ], [ -120.298080053999982, 50.672621118000151 ], [ -120.297835598999953, 50.672689305000098 ], [ -120.297663089999944, 50.672739100000044 ], [ -120.297623885999911, 50.67275044000008 ], [ -120.297255201999988, 50.672857095000133 ], [ -120.296181215999951, 50.673167801000069 ], [ -120.295310218999973, 50.673505307000021 ], [ -120.295156399999939, 50.673577431000091 ], [ -120.294766397, 50.673760406000049 ], [ -120.293171097999902, 50.674778085000057 ], [ -120.291837490999967, 50.675680408000041 ], [ -120.291674979999939, 50.675562104000079 ], [ -120.291440219999984, 50.675376105000069 ], [ -120.290503980999986, 50.674641403000059 ], [ -120.289969387999946, 50.674935694000062 ], [ -120.28954478599999, 50.675058105000083 ], [ -120.288697816999928, 50.675161590000073 ], [ -120.288056998999977, 50.674394187000125 ], [ -120.28782561299991, 50.674203893000048 ], [ -120.287681617999908, 50.673862995000043 ], [ -120.287137905999913, 50.673604399000055 ], [ -120.286784480000023, 50.673591706000067 ], [ -120.285543710999931, 50.673631699000026 ], [ -120.285191203999958, 50.673978610000113 ], [ -120.284959117999961, 50.674262209000119 ], [ -120.284914698999927, 50.674509592000078 ], [ -120.28526210699998, 50.675572789000029 ], [ -120.285036804999962, 50.675601805000028 ], [ -120.28487553399998, 50.675621299000078 ], [ -120.283728395999958, 50.675760007000079 ], [ -120.283587012999973, 50.675197496000081 ], [ -120.281554485999962, 50.675433537000089 ], [ -120.280847781999938, 50.675515602000068 ], [ -120.280963190999927, 50.676091085000046 ], [ -120.280101384999924, 50.676170030000065 ], [ -120.280031615999974, 50.676176423000101 ], [ -120.280017519999944, 50.676177705000107 ], [ -120.28007028799999, 50.675932202000105 ], [ -120.280220220000018, 50.67523550100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2039667", "BldgCostT": "1406667", "sL_LossRatio": "1", "sL_AssetLoss": "125", "sL_BldgLoss": "125", "sL_StrLoss": "125", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF940BF8E9105EC01A2EB46B29524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.261251479999913, 50.64110908500011 ], [ -120.266891600999926, 50.641399911000079 ], [ -120.266720086999953, 50.64274173899999 ], [ -120.266268817999915, 50.642766614 ], [ -120.265869398999953, 50.642788619000044 ], [ -120.262633076999961, 50.642330853000097 ], [ -120.262109356999957, 50.642256777000036 ], [ -120.261203541999947, 50.641483764000057 ], [ -120.261251479999913, 50.64110908500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15123584", "BldgCostT": "9958334", "sL_LossRatio": "0.999980369562075", "sL_AssetLoss": "1492.070636", "sL_BldgLoss": "1492.041346", "sL_StrLoss": "1491.70688", "sL_NStrLoss": "0.334466", "sL_ContLoss": "0.02929", "geom_point": "0101000020E61000006DAB61D804155EC0AF5D985406504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.330162641999976, 50.627325559000028 ], [ -120.330256871999921, 50.62657980700002 ], [ -120.329808581999956, 50.626556950000072 ], [ -120.329816436999977, 50.62649479400006 ], [ -120.328190187999937, 50.626411863000051 ], [ -120.328187580999909, 50.626432483000031 ], [ -120.322548942999958, 50.626144753000084 ], [ -120.322891317999975, 50.623438600000092 ], [ -120.32329702599999, 50.623486363000055 ], [ -120.323871861999976, 50.623484173000108 ], [ -120.324125209999963, 50.623452005000061 ], [ -120.32465022299999, 50.623385373000055 ], [ -120.325563089999889, 50.623269465000057 ], [ -120.326173166999965, 50.623233773000081 ], [ -120.32630342299997, 50.623226138000042 ], [ -120.327170076999977, 50.623238817000058 ], [ -120.327894851999957, 50.623284803000097 ], [ -120.32900492899995, 50.623447763000101 ], [ -120.331429709999952, 50.623924667000082 ], [ -120.331824809999915, 50.624002361000073 ], [ -120.332264889999976, 50.624088906000033 ], [ -120.332669664999955, 50.624197865000042 ], [ -120.33300386099998, 50.624359989000048 ], [ -120.333131954999942, 50.624480062000089 ], [ -120.333403933999946, 50.624775515000103 ], [ -120.333523710999927, 50.624905579000036 ], [ -120.333633203999966, 50.62525182500007 ], [ -120.33405974499999, 50.627176916000117 ], [ -120.334256639999978, 50.627534210000121 ], [ -120.330162641999976, 50.627325559000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20336417", "BldgCostT": "13081667", "sL_LossRatio": "1", "sL_AssetLoss": "1324.6", "sL_BldgLoss": "1324.6", "sL_StrLoss": "1324.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A921DC2A29165EC0EF3B239DC3514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.349019493999947, 50.644133681000056 ], [ -120.34903466599999, 50.643864180000037 ], [ -120.350290014999928, 50.643892749000059 ], [ -120.350298400999989, 50.643826168000011 ], [ -120.350022753999909, 50.643812169000157 ], [ -120.350057475, 50.643536513000065 ], [ -120.349784764000034, 50.643522663000084 ], [ -120.349836105999927, 50.64311508300009 ], [ -120.34943978199999, 50.643094954000048 ], [ -120.349477608000015, 50.64279467700004 ], [ -120.349248694999972, 50.642783049000109 ], [ -120.349291826999959, 50.64244065900008 ], [ -120.348820904999954, 50.642416739000083 ], [ -120.348850899999931, 50.642178647000065 ], [ -120.34843320799996, 50.642157429000122 ], [ -120.348464130999957, 50.641911994000075 ], [ -120.347976408999955, 50.641887217000047 ], [ -120.348011715000013, 50.641607014000058 ], [ -120.347352106999921, 50.641573500000028 ], [ -120.347543789000028, 50.640052357000116 ], [ -120.347128046999913, 50.640042887000035 ], [ -120.347142963999929, 50.639778089000053 ], [ -120.346974953999933, 50.639769552000054 ], [ -120.346719424999961, 50.63976373000002 ], [ -120.34671982899998, 50.639756587000136 ], [ -120.343590301999924, 50.639597502000107 ], [ -120.343698285999949, 50.638741117000045 ], [ -120.342568726999943, 50.638683676000063 ], [ -120.342616360999941, 50.638305972000062 ], [ -120.34117460799996, 50.638232638000019 ], [ -120.341248299999961, 50.637648442000035 ], [ -120.341203047999954, 50.637646139000047 ], [ -120.341654823999932, 50.634064338000044 ], [ -120.344107482999931, 50.634189083000123 ], [ -120.345090824999957, 50.634808269000075 ], [ -120.345613034999971, 50.635190795000014 ], [ -120.34576402199994, 50.635322632000069 ], [ -120.34611156099993, 50.635626162000115 ], [ -120.346315279999928, 50.635836116000107 ], [ -120.34665788199996, 50.636189257000098 ], [ -120.346731228, 50.636283094000142 ], [ -120.347008494999969, 50.636616204000099 ], [ -120.347024031999979, 50.63664095500004 ], [ -120.34736613499993, 50.637187029000067 ], [ -120.347419648999917, 50.637272447000051 ], [ -120.348261042, 50.638816584000054 ], [ -120.348817356999987, 50.639751427000064 ], [ -120.349592369, 50.640583843000108 ], [ -120.351766593999912, 50.642503394000059 ], [ -120.353894085999983, 50.644381548000084 ], [ -120.351958847999981, 50.644392069000105 ], [ -120.351935613999956, 50.64414439900002 ], [ -120.351532993999967, 50.644129405000072 ], [ -120.351203182999981, 50.644189297000025 ], [ -120.350894084999936, 50.644299705000051 ], [ -120.350715940999976, 50.644398810000062 ], [ -120.349147137999978, 50.644407289000092 ], [ -120.348580680999959, 50.64438985400006 ], [ -120.34859565, 50.64412403200005 ], [ -120.349019493999947, 50.644133681000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "68.8", "sL_BldgLoss": "68.8", "sL_StrLoss": "68.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A7DF98D84135EC0EE9836F3164F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.302175626999912, 50.61742162400008 ], [ -120.303411494999921, 50.61736019500006 ], [ -120.307823363999887, 50.617628996000072 ], [ -120.307719541999944, 50.618447577000062 ], [ -120.302082034999898, 50.618158810000104 ], [ -120.302175626999912, 50.61742162400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16328167", "BldgCostT": "9786667", "sL_LossRatio": "0.999979208314473", "sL_AssetLoss": "710.1829229", "sL_BldgLoss": "710.168157", "sL_StrLoss": "710.006207", "sL_NStrLoss": "0.16195", "sL_ContLoss": "0.0147659", "geom_point": "0101000020E6100000202DC6A79D125EC0A639C31EA44F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.288281517999934, 50.620260465000051 ], [ -120.293919198999959, 50.620549931000035 ], [ -120.293463755999966, 50.624131595000108 ], [ -120.287825627999936, 50.623842108000083 ], [ -120.288281517999934, 50.620260465000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13226500", "BldgCostT": "8650000", "sL_LossRatio": "1", "sL_AssetLoss": "880.2", "sL_BldgLoss": "880.2", "sL_StrLoss": "880.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7C4053D67135EC01127E60F3C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.305676480999963, 50.66339058100003 ], [ -120.306901732000014, 50.663453260000075 ], [ -120.30670673399996, 50.664988795000099 ], [ -120.306446889000014, 50.66703479400006 ], [ -120.304003082999913, 50.666909766000067 ], [ -120.303951202999912, 50.667815038000072 ], [ -120.303929454999917, 50.668194488000047 ], [ -120.303505410999961, 50.668184671000056 ], [ -120.303489961999929, 50.668454162000103 ], [ -120.302299996000016, 50.668426606000018 ], [ -120.302217824999971, 50.668424702000053 ], [ -120.302215928999928, 50.668457741000076 ], [ -120.302186912999943, 50.66896368500003 ], [ -120.30176286399994, 50.668953862000095 ], [ -120.30174740399994, 50.669223352000088 ], [ -120.301323350999951, 50.669213528000085 ], [ -120.301307890999951, 50.669483018000072 ], [ -120.300035725999933, 50.669453535000102 ], [ -120.300046571999985, 50.669264578000117 ], [ -120.300267723999951, 50.665411175000024 ], [ -120.30069174099999, 50.665421003000063 ], [ -120.300707202999916, 50.665151512000101 ], [ -120.301005117999949, 50.665158416000047 ], [ -120.301258583999953, 50.663164466000048 ], [ -120.305676480999963, 50.66339058100003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "1", "sL_AssetLoss": "228.1", "sL_BldgLoss": "228.1", "sL_StrLoss": "228.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000044C09564F145EC082A0EDE2474F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.317673675999956, 50.620748510000055 ], [ -120.31770520099991, 50.620194708000071 ], [ -120.314705168999922, 50.62004135100009 ], [ -120.31494231899994, 50.618169278000089 ], [ -120.316927404999959, 50.618334148000066 ], [ -120.319282326999883, 50.618529637000108 ], [ -120.319391212999946, 50.618695890000055 ], [ -120.319660414999973, 50.619106870000081 ], [ -120.319769932999932, 50.619274134000122 ], [ -120.319882857999986, 50.619446636000092 ], [ -120.319966401999963, 50.619761824000115 ], [ -120.320020423999978, 50.620299013000128 ], [ -120.320019494999968, 50.62031295500001 ], [ -120.318974031999957, 50.620259543000024 ], [ -120.31894454599994, 50.620777781000072 ], [ -120.317673675999956, 50.620748510000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9456500", "BldgCostT": "6050000", "sL_LossRatio": "0.999952858539343", "sL_AssetLoss": "664.468168", "sL_BldgLoss": "664.436844", "sL_StrLoss": "664.007544", "sL_NStrLoss": "0.4293", "sL_ContLoss": "0.031324", "geom_point": "0101000020E6100000326F611F95105EC06E2F0ED3E3504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.256511523999961, 50.630016349000044 ], [ -120.262150223999953, 50.630307418000079 ], [ -120.261692149999973, 50.633888912000046 ], [ -120.25605300499997, 50.633597821000087 ], [ -120.256511523999961, 50.630016349000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10698417", "BldgCostT": "6881667", "sL_LossRatio": "0.999884520166489", "sL_AssetLoss": "855.898359", "sL_BldgLoss": "855.79952", "sL_StrLoss": "854.91052", "sL_NStrLoss": "0.889", "sL_ContLoss": "0.098839", "geom_point": "0101000020E6100000A184DBD251155EC0A8EAD44BC2514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.330525345999959, 50.636807387000019 ], [ -120.336165374, 50.637094709000081 ], [ -120.335713128999956, 50.640676475000049 ], [ -120.330072654999952, 50.640389131000106 ], [ -120.330525345999959, 50.636807387000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8985834", "BldgCostT": "5933334", "sL_LossRatio": "0.999996118031245", "sL_AssetLoss": "1344.67852", "sL_BldgLoss": "1344.6733", "sL_StrLoss": "1344.6", "sL_NStrLoss": "0.0733", "sL_ContLoss": "0.00522", "geom_point": "0101000020E61000003D981C9027145EC08CDDDB8011554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.302939335999923, 50.670652073000085 ], [ -120.302942306999967, 50.670600273000098 ], [ -120.302518239999927, 50.670590452000049 ], [ -120.302564603999883, 50.669781980000039 ], [ -120.303412720999972, 50.669801618000072 ], [ -120.303428169999947, 50.66953212700011 ], [ -120.303852225999918, 50.669541945000091 ], [ -120.30386767399996, 50.669272453000055 ], [ -120.304715781, 50.669292083000094 ], [ -120.30473122399998, 50.669022591000065 ], [ -120.305579328999954, 50.669042214000072 ], [ -120.305594763999977, 50.668772722000085 ], [ -120.306674986999937, 50.668797707000074 ], [ -120.306866915999947, 50.668802145000058 ], [ -120.306871596999954, 50.66872040000009 ], [ -120.30688234499999, 50.668532653000035 ], [ -120.307306393999951, 50.668542457000029 ], [ -120.307352671999965, 50.667733980000058 ], [ -120.308624796999979, 50.66776338300015 ], [ -120.308671049999958, 50.666954906000093 ], [ -120.310367191999958, 50.666994088000095 ], [ -120.310475039999972, 50.665107637000084 ], [ -120.310051022, 50.665097844000059 ], [ -120.310128060999929, 50.663750379000106 ], [ -120.311824089999931, 50.663789537000071 ], [ -120.311793293999955, 50.664328524000027 ], [ -120.3126413199999, 50.664348095000022 ], [ -120.312625926999928, 50.664617588000056 ], [ -120.313897972999925, 50.664646932000032 ], [ -120.313913359999958, 50.664377438000017 ], [ -120.31433737399999, 50.664387217000048 ], [ -120.31438352399999, 50.663578734000076 ], [ -120.315231535999942, 50.663598286000138 ], [ -120.315246913999943, 50.663328792000137 ], [ -120.315670918999956, 50.663338566000057 ], [ -120.315686294999949, 50.663069070000084 ], [ -120.315910923999965, 50.663074248000093 ], [ -120.315947973999982, 50.662782007000018 ], [ -120.31677748599995, 50.662824368000052 ], [ -120.316973670999957, 50.662828887000103 ], [ -120.316989039999896, 50.662559392000084 ], [ -120.317837034999911, 50.662578925000048 ], [ -120.317852398999946, 50.662309430000086 ], [ -120.318700391999982, 50.662328955000049 ], [ -120.318715748999978, 50.662059459000048 ], [ -120.319563737999928, 50.662078980000061 ], [ -120.31957909099998, 50.661809484000109 ], [ -120.320427075999973, 50.661828997000072 ], [ -120.32044242399999, 50.661559502000074 ], [ -120.320866412999976, 50.661569255000082 ], [ -120.320881759, 50.661299760000055 ], [ -120.321305747999986, 50.661309513000042 ], [ -120.321321088999966, 50.661040017000047 ], [ -120.322169062999961, 50.661059518000116 ], [ -120.322184399999969, 50.660790022000064 ], [ -120.32345635199999, 50.660819260000089 ], [ -120.323441023, 50.661088756000069 ], [ -120.32683293, 50.661166658000099 ], [ -120.326817618999911, 50.661436155000068 ], [ -120.328513586999932, 50.661475069000055 ], [ -120.32849828599997, 50.661744566000081 ], [ -120.328710472999958, 50.661749433000075 ], [ -120.329685310999949, 50.661771789000106 ], [ -120.329694784999987, 50.661841521000042 ], [ -120.32967200799996, 50.661841934000087 ], [ -120.328484263999968, 50.66186322300004 ], [ -120.327783490999963, 50.661875802000075 ], [ -120.324106205999925, 50.661908792000055 ], [ -120.323423795999958, 50.661914905000032 ], [ -120.322263795999973, 50.662037809000026 ], [ -120.320163988999965, 50.662372201000025 ], [ -120.319779103999934, 50.662462943000044 ], [ -120.318922896999965, 50.66266481500007 ], [ -120.317593293999934, 50.663050293000012 ], [ -120.31604458299995, 50.663639896000106 ], [ -120.314838209999962, 50.664218099000031 ], [ -120.314001399999938, 50.664725117000039 ], [ -120.313351300999955, 50.665204696000067 ], [ -120.312459064999985, 50.665953289000122 ], [ -120.311875580999967, 50.666442779000086 ], [ -120.311479198999976, 50.666775293000072 ], [ -120.310861783999954, 50.667187098000049 ], [ -120.310262123999948, 50.667525987 ], [ -120.308754298999958, 50.668138307000035 ], [ -120.306277426999912, 50.669102102000124 ], [ -120.305191307999948, 50.669524209000066 ], [ -120.304645311999963, 50.669798084000085 ], [ -120.303268973999977, 50.670580885000078 ], [ -120.303258358999969, 50.670586899000057 ], [ -120.302932464000023, 50.670771929000047 ], [ -120.302939335999923, 50.670652073000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7804083", "BldgCostT": "5118333", "sL_LossRatio": "0.999939175218291", "sL_AssetLoss": "1192.523803", "sL_BldgLoss": "1192.451268", "sL_StrLoss": "1192.004468", "sL_NStrLoss": "0.4468", "sL_ContLoss": "0.072535", "geom_point": "0101000020E6100000B3DC25B372155EC0A9E7D5E707514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.335861590999968, 50.631288828000038 ], [ -120.338171513999967, 50.631406443000046 ], [ -120.3380789509999, 50.632139949000077 ], [ -120.337719484999965, 50.634988241000038 ], [ -120.332079713999974, 50.634700997000074 ], [ -120.332532187999917, 50.631119220000066 ], [ -120.335861590999968, 50.631288828000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6784250", "BldgCostT": "4415000", "sL_LossRatio": "1", "sL_AssetLoss": "964.9", "sL_BldgLoss": "964.9", "sL_StrLoss": "964.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AD0E16B99115EC0CFD90242EB514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.274593429, 50.640871836000088 ], [ -120.274345086999986, 50.640804412000108 ], [ -120.273766892999987, 50.640832164000116 ], [ -120.273266877999916, 50.640856158000062 ], [ -120.27248350499994, 50.64095552000007 ], [ -120.271819760999961, 50.641248380000022 ], [ -120.272164257999989, 50.638550633000087 ], [ -120.277804127999971, 50.638840907 ], [ -120.277347215999953, 50.642422428000067 ], [ -120.277097580999964, 50.642409586000099 ], [ -120.276985420999907, 50.64196860000002 ], [ -120.276002906999963, 50.641404342000094 ], [ -120.275209281999977, 50.641039039000077 ], [ -120.274593429, 50.640871836000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24124667", "BldgCostT": "15931667", "sL_LossRatio": "0.983006792438953", "sL_AssetLoss": "1488.830164", "sL_BldgLoss": "1463.530164", "sL_StrLoss": "1454.400164", "sL_NStrLoss": "9.13", "sL_ContLoss": "25.3", "geom_point": "0101000020E61000003F3AF91D98125EC081AB23E48F534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.287564341999939, 50.653798548000097 ], [ -120.286987394999954, 50.653423752000059 ], [ -120.28562513299994, 50.653808939 ], [ -120.285201314999981, 50.653825931000064 ], [ -120.284906039999967, 50.653770188000117 ], [ -120.2846979709999, 50.653701809000019 ], [ -120.28463622, 50.653681533000089 ], [ -120.284325388999974, 50.653647547000034 ], [ -120.284173544999987, 50.653702818000077 ], [ -120.283930458000015, 50.653905737000109 ], [ -120.283523408999983, 50.654092114000072 ], [ -120.283441202999882, 50.654269043000049 ], [ -120.283433831999957, 50.654649888000058 ], [ -120.283342576999956, 50.654764156000084 ], [ -120.282892370999903, 50.654943815000067 ], [ -120.282171990999956, 50.655170845000072 ], [ -120.281801817999963, 50.65523474600009 ], [ -120.281749460999919, 50.655234287000077 ], [ -120.281763206999969, 50.65499630400015 ], [ -120.28099142799999, 50.654978288000024 ], [ -120.281051662999943, 50.654849232000089 ], [ -120.281352805, 50.654580795000108 ], [ -120.281705673999937, 50.6542964900001 ], [ -120.283657214999963, 50.65272404600011 ], [ -120.284822584999986, 50.651785 ], [ -120.284980657999967, 50.651513727000093 ], [ -120.284984656999939, 50.651293138000042 ], [ -120.284925207999933, 50.651202649000048 ], [ -120.283989196999968, 50.651163355000087 ], [ -120.283868979999966, 50.651158308000099 ], [ -120.283261901999964, 50.651084022000106 ], [ -120.283266758999929, 50.651045920000101 ], [ -120.283911091, 50.651079023000086 ], [ -120.283960148999938, 50.650694135000059 ], [ -120.285560295999943, 50.650776327000059 ], [ -120.287341867999899, 50.65086781100009 ], [ -120.287891775999952, 50.650896044000056 ], [ -120.288068441999926, 50.6495090290001 ], [ -120.293709788999976, 50.649798495000013 ], [ -120.293637683, 50.650365183000105 ], [ -120.295585164999949, 50.650465044000015 ], [ -120.295270859999974, 50.652935831000072 ], [ -120.296679097999956, 50.653008019000069 ], [ -120.296223545999965, 50.656589556000064 ], [ -120.295089017999928, 50.656531400000084 ], [ -120.29508409499999, 50.656570083000098 ], [ -120.294618697999908, 50.656546224000117 ], [ -120.294206746999947, 50.656344627000081 ], [ -120.293213008999885, 50.655964740000044 ], [ -120.292281597999931, 50.65566372200005 ], [ -120.291223097999932, 50.655335451000035 ], [ -120.290485734999905, 50.655016429000042 ], [ -120.288671879999981, 50.654722387000028 ], [ -120.288401359999924, 50.654639109000087 ], [ -120.288164572999946, 50.654514293000048 ], [ -120.287976382999915, 50.654353240000063 ], [ -120.287825130999948, 50.654169732000092 ], [ -120.287564341999939, 50.653798548000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126321583", "BldgCostT": "87118333", "sL_LossRatio": "0.999995668168935", "sL_AssetLoss": "13831.564321", "sL_BldgLoss": "13831.504405", "sL_StrLoss": "13830.900265", "sL_NStrLoss": "0.60414", "sL_ContLoss": "0.059916", "geom_point": "0101000020E6100000B7DC708A94155EC0A0B7A1F700534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.33500109, 50.644374378000094 ], [ -120.33537224, 50.644342011000077 ], [ -120.336092397999977, 50.643871598000018 ], [ -120.336707697999927, 50.644225544000093 ], [ -120.336908794, 50.644341186000105 ], [ -120.337716014999955, 50.644783306000093 ], [ -120.337864709999948, 50.644920705000125 ], [ -120.337975704999948, 50.645030802000115 ], [ -120.33806896199998, 50.645214966000033 ], [ -120.338163104999964, 50.645400894000062 ], [ -120.338406997999954, 50.646111706000056 ], [ -120.338675703999982, 50.646377693000119 ], [ -120.338940312, 50.646530790000092 ], [ -120.339245321999925, 50.646644607000056 ], [ -120.33987588199993, 50.646753287000138 ], [ -120.340214916999969, 50.646766906000046 ], [ -120.341215678999973, 50.646687194000073 ], [ -120.342015607999926, 50.646613409000047 ], [ -120.342645192999925, 50.646471489000071 ], [ -120.342869882999963, 50.646960604000085 ], [ -120.342973716999964, 50.647186605000094 ], [ -120.34315555699996, 50.647658134000061 ], [ -120.342407916999917, 50.64777873800012 ], [ -120.34234664899995, 50.647813009000068 ], [ -120.342275074999961, 50.647853093000059 ], [ -120.34210453699994, 50.647880164000057 ], [ -120.340228408999948, 50.648177960000098 ], [ -120.34018737699995, 50.648186014000046 ], [ -120.33982895299998, 50.648256166000067 ], [ -120.339556003999959, 50.648309594000104 ], [ -120.339120492999953, 50.64847671400004 ], [ -120.338881125999933, 50.648596108000056 ], [ -120.338754928999933, 50.648685655000079 ], [ -120.338491405999946, 50.648872705000031 ], [ -120.338368889999941, 50.649007967000081 ], [ -120.338202707999983, 50.649191500000086 ], [ -120.338014581999957, 50.649556788000041 ], [ -120.337957011, 50.64986748900003 ], [ -120.337975418999946, 50.650113663000063 ], [ -120.337975996999958, 50.650121713000047 ], [ -120.338004756999936, 50.65022051400004 ], [ -120.338057188999954, 50.650400693000066 ], [ -120.338148600999929, 50.650529501000079 ], [ -120.338306584999941, 50.650752191000088 ], [ -120.338480886999974, 50.650923290000065 ], [ -120.338758373999951, 50.651142896000053 ], [ -120.339015132999933, 50.651281258000061 ], [ -120.338372994999958, 50.652372229 ], [ -120.336627224999987, 50.653138670000082 ], [ -120.336648854999964, 50.652756407000062 ], [ -120.337422869999955, 50.65277410600001 ], [ -120.337500276999933, 50.652712395000087 ], [ -120.337511934999924, 50.652506295000052 ], [ -120.337751911999973, 50.652511780000097 ], [ -120.337891089999957, 50.652400822000118 ], [ -120.337387710999934, 50.652375207 ], [ -120.337439514999986, 50.651964943000031 ], [ -120.335422873999946, 50.651918819000102 ], [ -120.335438130999989, 50.651649320000061 ], [ -120.33416641300002, 50.651620216000069 ], [ -120.334196939999984, 50.651081218000044 ], [ -120.33377303799989, 50.651071513000034 ], [ -120.333788303999924, 50.65080201500006 ], [ -120.333364403999923, 50.650792309000153 ], [ -120.333379670999989, 50.65052281100008 ], [ -120.332955776999896, 50.65051310300003 ], [ -120.333016851999929, 50.649435108000056 ], [ -120.333440738999982, 50.649444815000081 ], [ -120.333456002999952, 50.649175316000054 ], [ -120.333879887999913, 50.649185022000047 ], [ -120.333895150999965, 50.648915522000081 ], [ -120.334319031999897, 50.648925226000081 ], [ -120.334334293000012, 50.648655727000076 ], [ -120.33475817299994, 50.648665429000054 ], [ -120.334773431, 50.648395930000021 ], [ -120.335197307999934, 50.648405630000092 ], [ -120.335212562999928, 50.648136130000132 ], [ -120.335636438999941, 50.648145829000036 ], [ -120.335666943999954, 50.64760683 ], [ -120.335243073999919, 50.647597132000016 ], [ -120.335304090999927, 50.646519134000073 ], [ -120.336151810999965, 50.646538528000121 ], [ -120.336167062999948, 50.646269029000095 ], [ -120.335743202999979, 50.64625933300006 ], [ -120.335819455999939, 50.644911835000173 ], [ -120.334971764999949, 50.644892439000088 ], [ -120.33500109, 50.644374378000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147550334", "BldgCostT": "96658334", "sL_LossRatio": "0.996772831396917", "sL_AssetLoss": "15731.77799", "sL_BldgLoss": "15681.00889", "sL_StrLoss": "15662.01589", "sL_NStrLoss": "18.993", "sL_ContLoss": "50.7691", "geom_point": "0101000020E61000009A4B478C20165EC0D96FF5B511534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.34168600299995, 50.649563288000145 ], [ -120.34091401799995, 50.649213103000086 ], [ -120.340605710999967, 50.648967681000087 ], [ -120.340228408999948, 50.648177960000098 ], [ -120.34210453699994, 50.647880164000057 ], [ -120.342275074999961, 50.647853093000059 ], [ -120.342450096000022, 50.647871894000062 ], [ -120.34319339399994, 50.647751986000088 ], [ -120.346850384999968, 50.647160998000096 ], [ -120.34691708599992, 50.647357206000045 ], [ -120.346975688999933, 50.647529685000116 ], [ -120.347039519, 50.647722211000051 ], [ -120.347044417999911, 50.648077501000031 ], [ -120.347023705999945, 50.648185507000036 ], [ -120.346923992999947, 50.648660693000046 ], [ -120.347690793999945, 50.648782604000068 ], [ -120.348193087999988, 50.648963988000077 ], [ -120.34875958399999, 50.649053208000069 ], [ -120.349556196999941, 50.649129684000044 ], [ -120.350261198999959, 50.649132993000094 ], [ -120.350827988999953, 50.64908430800002 ], [ -120.352322191999946, 50.648851095000047 ], [ -120.353010513999934, 50.648683197000054 ], [ -120.353362129999965, 50.649158793000076 ], [ -120.353602403999972, 50.64948380700006 ], [ -120.352254892999909, 50.649686937000062 ], [ -120.351388593999943, 50.649817501000058 ], [ -120.350439513999945, 50.649933688000012 ], [ -120.350321809999969, 50.649948107000078 ], [ -120.349357293999958, 50.649908087000078 ], [ -120.34828759799997, 50.64981257000013 ], [ -120.348059502999888, 50.649792182000098 ], [ -120.348023788999953, 50.649789012000042 ], [ -120.34774660699999, 50.649803794000057 ], [ -120.347319199999944, 50.649894692000039 ], [ -120.345069164999984, 50.650338329000064 ], [ -120.344757320999946, 50.650399804000109 ], [ -120.344360383, 50.650429211000095 ], [ -120.344013891999936, 50.650407092000123 ], [ -120.343611704999972, 50.650332606000056 ], [ -120.342347907999951, 50.649829494000059 ], [ -120.341745212999939, 50.64958712100011 ], [ -120.34168600299995, 50.649563288000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "209", "sL_BldgLoss": "209", "sL_StrLoss": "209", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003CB11C5B2E165EC0792F4A127C524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.346022211999966, 50.644605108000107 ], [ -120.346037403999929, 50.644335606000091 ], [ -120.345613558999943, 50.644325946000066 ], [ -120.345622748000011, 50.644162977000065 ], [ -120.347346413, 50.644310390000058 ], [ -120.347555723999989, 50.64432828000011 ], [ -120.347734548999966, 50.644342865000041 ], [ -120.34773278199998, 50.644374231000057 ], [ -120.347308937999941, 50.644364577000054 ], [ -120.347293752999988, 50.644634079000085 ], [ -120.346022211999966, 50.644605108000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137509917", "BldgCostT": "92891667", "sL_LossRatio": "1", "sL_AssetLoss": "15229", "sL_BldgLoss": "15229", "sL_StrLoss": "15229", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006706F9F225165EC0A7CFD40CA5524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.346022211999966, 50.644605108000107 ], [ -120.345991827999981, 50.645144112000096 ], [ -120.346415679999964, 50.645153770000022 ], [ -120.346400489999951, 50.645423272000066 ], [ -120.348095909, 50.645461893000025 ], [ -120.348050366999956, 50.646270399000052 ], [ -120.34847423099994, 50.64628005100009 ], [ -120.348459050999978, 50.646549553000064 ], [ -120.34930678099991, 50.646568852000073 ], [ -120.349382648999935, 50.645221340000063 ], [ -120.348958794999973, 50.645211691000078 ], [ -120.348973969999946, 50.644942189000105 ], [ -120.348550118999981, 50.644932540000106 ], [ -120.348580680999959, 50.64438985400006 ], [ -120.349147137999978, 50.644407289000092 ], [ -120.350715940999976, 50.644398810000062 ], [ -120.350894084999936, 50.644299705000051 ], [ -120.351203182999981, 50.644189297000025 ], [ -120.351532993999967, 50.644129405000072 ], [ -120.351935613999956, 50.64414439900002 ], [ -120.351958847999981, 50.644392069000105 ], [ -120.353894085999983, 50.644381548000084 ], [ -120.354030779999917, 50.644502195000079 ], [ -120.355280220999958, 50.645648804000054 ], [ -120.355688438999891, 50.646025478000134 ], [ -120.355783728999882, 50.646114110000042 ], [ -120.355076045999965, 50.646199885000044 ], [ -120.354114496999941, 50.646317795000044 ], [ -120.352996387999895, 50.646405253000054 ], [ -120.351063995999979, 50.646556791000059 ], [ -120.350182884999953, 50.646656195000091 ], [ -120.349404877999987, 50.646747406000081 ], [ -120.34864766, 50.646870017000012 ], [ -120.346864128999954, 50.647158779000051 ], [ -120.346850384999968, 50.647160998000096 ], [ -120.34319339399994, 50.647751986000088 ], [ -120.342450096000022, 50.647871894000062 ], [ -120.342275074999961, 50.647853093000059 ], [ -120.34234664899995, 50.647813009000068 ], [ -120.342407916999917, 50.64777873800012 ], [ -120.34315555699996, 50.647658134000061 ], [ -120.342973716999964, 50.647186605000094 ], [ -120.342869882999963, 50.646960604000085 ], [ -120.342645192999925, 50.646471489000071 ], [ -120.342015607999926, 50.646613409000047 ], [ -120.341215678999973, 50.646687194000073 ], [ -120.340214916999969, 50.646766906000046 ], [ -120.33987588199993, 50.646753287000138 ], [ -120.339245321999925, 50.646644607000056 ], [ -120.338940312, 50.646530790000092 ], [ -120.338675703999982, 50.646377693000119 ], [ -120.338406997999954, 50.646111706000056 ], [ -120.338163104999964, 50.645400894000062 ], [ -120.33806896199998, 50.645214966000033 ], [ -120.337975704999948, 50.645030802000115 ], [ -120.337864709999948, 50.644920705000125 ], [ -120.337716014999955, 50.644783306000093 ], [ -120.336908794, 50.644341186000105 ], [ -120.336707697999927, 50.644225544000093 ], [ -120.338839521999915, 50.644039562000025 ], [ -120.338832081999968, 50.644171173000075 ], [ -120.339255923999957, 50.644180858000048 ], [ -120.339240692999965, 50.644450358000014 ], [ -120.340088378999965, 50.644469723000064 ], [ -120.339997022999967, 50.646086727000075 ], [ -120.340420880999915, 50.646096407000115 ], [ -120.340436104999952, 50.645826907000078 ], [ -120.340859961999939, 50.645836587000112 ], [ -120.340967841999927, 50.643926464000067 ], [ -120.341342759000028, 50.64383060300004 ], [ -120.342242842999937, 50.643893770000069 ], [ -120.342238025999933, 50.643979108000075 ], [ -120.342661866999947, 50.643988781000068 ], [ -120.34263144499999, 50.644527782000125 ], [ -120.346022211999966, 50.644605108000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85234166", "BldgCostT": "57101666", "sL_LossRatio": "0.995306471532064", "sL_AssetLoss": "10418.600917", "sL_BldgLoss": "10369.700917", "sL_StrLoss": "10352.000917", "sL_NStrLoss": "17.7", "sL_ContLoss": "48.9", "geom_point": "0101000020E61000008068418368165EC003C3FBA2EB524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.346923992999947, 50.648660693000046 ], [ -120.347023705999945, 50.648185507000036 ], [ -120.347044417999911, 50.648077501000031 ], [ -120.347039519, 50.647722211000051 ], [ -120.346975688999933, 50.647529685000116 ], [ -120.34691708599992, 50.647357206000045 ], [ -120.346850384999968, 50.647160998000096 ], [ -120.346864128999954, 50.647158779000051 ], [ -120.34864766, 50.646870017000012 ], [ -120.349404877999987, 50.646747406000081 ], [ -120.350182884999953, 50.646656195000091 ], [ -120.351063995999979, 50.646556791000059 ], [ -120.352996387999895, 50.646405253000054 ], [ -120.353084238999955, 50.646857603000107 ], [ -120.353182729999943, 50.647123888000145 ], [ -120.353410395999944, 50.647536484000078 ], [ -120.35237274499994, 50.647816279000075 ], [ -120.352229118999972, 50.647854987000073 ], [ -120.352607653999954, 50.648256251000127 ], [ -120.353010513999934, 50.648683197000054 ], [ -120.352322191999946, 50.648851095000047 ], [ -120.350827988999953, 50.64908430800002 ], [ -120.350261198999959, 50.649132993000094 ], [ -120.349556196999941, 50.649129684000044 ], [ -120.34875958399999, 50.649053208000069 ], [ -120.348193087999988, 50.648963988000077 ], [ -120.347690793999945, 50.648782604000068 ], [ -120.346923992999947, 50.648660693000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148807000", "BldgCostT": "103330000", "sL_LossRatio": "0.99999948153156", "sL_AssetLoss": "9084.44881", "sL_BldgLoss": "9084.4441", "sL_StrLoss": "9084.4", "sL_NStrLoss": "0.0441", "sL_ContLoss": "0.00471", "geom_point": "0101000020E6100000465F490B3A175EC041E798A0C4524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.360107710999955, 50.647412923000061 ], [ -120.359659544999928, 50.646974829000051 ], [ -120.35992272699994, 50.646857521000143 ], [ -120.360090723000013, 50.646706507000019 ], [ -120.360176508000023, 50.64653239000004 ], [ -120.360179219999978, 50.646364103000032 ], [ -120.360174402999931, 50.646289000000124 ], [ -120.360077502999957, 50.646111988000015 ], [ -120.359897899999979, 50.645948804000078 ], [ -120.359573216999962, 50.64577639700012 ], [ -120.35885979399994, 50.645523999000034 ], [ -120.357126481999956, 50.645143193000074 ], [ -120.356939317999903, 50.645096708000025 ], [ -120.356840767000023, 50.645052507000109 ], [ -120.356506711999927, 50.644902683000034 ], [ -120.356443264999925, 50.644858280000044 ], [ -120.356353107999936, 50.644795117000136 ], [ -120.356238385000012, 50.644714775000132 ], [ -120.356223714999956, 50.644704493000091 ], [ -120.355949392999946, 50.644448207000032 ], [ -120.355762775999935, 50.64412599500011 ], [ -120.356277983999959, 50.644035907000038 ], [ -120.356600107999938, 50.644047696 ], [ -120.357137795999989, 50.644195706000076 ], [ -120.357610207999969, 50.64435285200004 ], [ -120.358224906999936, 50.644557289000105 ], [ -120.358601108999963, 50.644613299000071 ], [ -120.358973610999954, 50.644619606000091 ], [ -120.359345713999943, 50.644538395000026 ], [ -120.360316597999955, 50.644119893000024 ], [ -120.360557998999937, 50.644028498000061 ], [ -120.360897177999931, 50.643994293000091 ], [ -120.361230377999959, 50.643997693000074 ], [ -120.361557004999952, 50.64407460200011 ], [ -120.361881204999989, 50.644239809000076 ], [ -120.362127504999933, 50.644504595000079 ], [ -120.362192907999955, 50.644717894000067 ], [ -120.36219029499999, 50.644930389000073 ], [ -120.362093806999894, 50.64513369900007 ], [ -120.362694511999948, 50.645288411000124 ], [ -120.363027044999939, 50.645374065000105 ], [ -120.363156517999926, 50.645407378000101 ], [ -120.36366821199999, 50.645401785000104 ], [ -120.363646404999912, 50.64566559200005 ], [ -120.36355241699998, 50.645950108000079 ], [ -120.363394399999947, 50.646168294000084 ], [ -120.363206103999914, 50.646334495000069 ], [ -120.362653615999989, 50.646642689000039 ], [ -120.363020996999978, 50.64693788400006 ], [ -120.363196287999955, 50.647044987000136 ], [ -120.363486203999955, 50.647155192000085 ], [ -120.36386561399999, 50.647219503000052 ], [ -120.364488391999927, 50.647255598000051 ], [ -120.364915685999932, 50.647254695000122 ], [ -120.36535239799997, 50.647213699000062 ], [ -120.365765782999986, 50.647120193000028 ], [ -120.36612742199999, 50.646987108000125 ], [ -120.366440391999944, 50.646811898000053 ], [ -120.36671638299994, 50.64659159100016 ], [ -120.367265767000021, 50.646703511000091 ], [ -120.367604329999963, 50.646772465000012 ], [ -120.368200023999989, 50.64689379600005 ], [ -120.368926002999942, 50.647102806000092 ], [ -120.369654805999986, 50.647312612000043 ], [ -120.370965977999916, 50.647529394000102 ], [ -120.371207198999954, 50.647609198000026 ], [ -120.371369979999898, 50.647725594000065 ], [ -120.371581803999931, 50.647960696000062 ], [ -120.369383202000023, 50.648096303000031 ], [ -120.367508227999934, 50.648063480000111 ], [ -120.36679567399996, 50.648050993000119 ], [ -120.366454416999943, 50.648101299000075 ], [ -120.366151612999928, 50.648195903000072 ], [ -120.365920312999975, 50.648341908000098 ], [ -120.365757215999977, 50.648522002000028 ], [ -120.365748092999951, 50.648707195000057 ], [ -120.364208509999969, 50.648669716000029 ], [ -120.362469026999946, 50.648623800000102 ], [ -120.362350998999887, 50.648620672000085 ], [ -120.361704985999936, 50.648520384000051 ], [ -120.361427253999977, 50.648437812000054 ], [ -120.361103839999913, 50.64830064900007 ], [ -120.360843717999927, 50.648134284000044 ], [ -120.360291548999925, 50.647592617000058 ], [ -120.360107710999955, 50.647412923000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "165943333", "BldgCostT": "112243333", "sL_LossRatio": "0.999999997544467", "sL_AssetLoss": "16774.36429119", "sL_BldgLoss": "16774.36425", "sL_StrLoss": "16774.00365", "sL_NStrLoss": "0.3606", "sL_ContLoss": "0.00004119", "geom_point": "0101000020E6100000FE6DA2D8C2165EC037BBA4202E524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35727616, 50.64611953100011 ], [ -120.35680677, 50.646048865000097 ], [ -120.356656492999917, 50.646047558000113 ], [ -120.356327256999933, 50.646047083 ], [ -120.356061831999966, 50.646073471000122 ], [ -120.355985168999965, 50.646081095000085 ], [ -120.355783728999882, 50.646114110000042 ], [ -120.355688438999891, 50.646025478000134 ], [ -120.355280220999958, 50.645648804000054 ], [ -120.354030779999917, 50.644502195000079 ], [ -120.353894085999983, 50.644381548000084 ], [ -120.351766593999912, 50.642503394000059 ], [ -120.349592369, 50.640583843000108 ], [ -120.348817356999987, 50.639751427000064 ], [ -120.348261042, 50.638816584000054 ], [ -120.347419648999917, 50.637272447000051 ], [ -120.34736613499993, 50.637187029000067 ], [ -120.347024031999979, 50.63664095500004 ], [ -120.347008494999969, 50.636616204000099 ], [ -120.346731228, 50.636283094000142 ], [ -120.346952582999947, 50.63622674600002 ], [ -120.347603889999988, 50.636238237000065 ], [ -120.347665909999975, 50.636255125000083 ], [ -120.347843975999965, 50.636303615000053 ], [ -120.347936222000016, 50.636346673000084 ], [ -120.348321779999964, 50.636526650000135 ], [ -120.348435635, 50.636579761000057 ], [ -120.348821015999931, 50.636759679000072 ], [ -120.348699817999929, 50.636888662000089 ], [ -120.348616616999948, 50.637154787000092 ], [ -120.348693794, 50.637409271000095 ], [ -120.348837292999974, 50.637587801000073 ], [ -120.349124199999935, 50.637766412000111 ], [ -120.349259224999912, 50.637806006000041 ], [ -120.349514191999944, 50.637880798000076 ], [ -120.350172691999916, 50.638004405000103 ], [ -120.351130827999938, 50.638201049000095 ], [ -120.351164603999919, 50.638207989000122 ], [ -120.351791784999961, 50.638388514000063 ], [ -120.352343421999961, 50.638628293000053 ], [ -120.352639382999897, 50.638801069000152 ], [ -120.353870296999943, 50.639519587000066 ], [ -120.354477697999982, 50.639677510000119 ], [ -120.356667019999989, 50.640244504000044 ], [ -120.356990309999944, 50.640291588000075 ], [ -120.359283476999906, 50.640371814000034 ], [ -120.359518248, 50.640917312000099 ], [ -120.359785390999946, 50.641538210000078 ], [ -120.360088385, 50.642017598000074 ], [ -120.360371694999913, 50.642270782000068 ], [ -120.360680196999922, 50.642446804000087 ], [ -120.361110212999975, 50.642605589000063 ], [ -120.36130748199993, 50.642644446000055 ], [ -120.362398125999974, 50.642859200000018 ], [ -120.362672214000014, 50.642905973 ], [ -120.363310837999961, 50.643014965000091 ], [ -120.363449880999923, 50.643038699000073 ], [ -120.363513768999951, 50.643062380000103 ], [ -120.364195810999888, 50.643315296000026 ], [ -120.364449796999935, 50.643473198000081 ], [ -120.36447498699998, 50.643501453000113 ], [ -120.364750807999968, 50.643811114000059 ], [ -120.364819004999944, 50.644014672000068 ], [ -120.36488810500002, 50.644220910000072 ], [ -120.365118093999953, 50.644537096000114 ], [ -120.364686004999939, 50.644665708000062 ], [ -120.364413272999954, 50.644780797000053 ], [ -120.363890006999924, 50.645251693000041 ], [ -120.36366821199999, 50.645401785000104 ], [ -120.363156517999926, 50.645407378000101 ], [ -120.363027044999939, 50.645374065000105 ], [ -120.362694511999948, 50.645288411000124 ], [ -120.362093806999894, 50.64513369900007 ], [ -120.36219029499999, 50.644930389000073 ], [ -120.362192907999955, 50.644717894000067 ], [ -120.362127504999933, 50.644504595000079 ], [ -120.361881204999989, 50.644239809000076 ], [ -120.361557004999952, 50.64407460200011 ], [ -120.361230377999959, 50.643997693000074 ], [ -120.360897177999931, 50.643994293000091 ], [ -120.360557998999937, 50.644028498000061 ], [ -120.360316597999955, 50.644119893000024 ], [ -120.359345713999943, 50.644538395000026 ], [ -120.358973610999954, 50.644619606000091 ], [ -120.358601108999963, 50.644613299000071 ], [ -120.358224906999936, 50.644557289000105 ], [ -120.357610207999969, 50.64435285200004 ], [ -120.357137795999989, 50.644195706000076 ], [ -120.356600107999938, 50.644047696 ], [ -120.356277983999959, 50.644035907000038 ], [ -120.355762775999935, 50.64412599500011 ], [ -120.355949392999946, 50.644448207000032 ], [ -120.356223714999956, 50.644704493000091 ], [ -120.356238385000012, 50.644714775000132 ], [ -120.356353107999936, 50.644795117000136 ], [ -120.356443264999925, 50.644858280000044 ], [ -120.356506711999927, 50.644902683000034 ], [ -120.356840767000023, 50.645052507000109 ], [ -120.356939317999903, 50.645096708000025 ], [ -120.357126481999956, 50.645143193000074 ], [ -120.35885979399994, 50.645523999000034 ], [ -120.359573216999962, 50.64577639700012 ], [ -120.359897899999979, 50.645948804000078 ], [ -120.360077502999957, 50.646111988000015 ], [ -120.360174402999931, 50.646289000000124 ], [ -120.360179219999978, 50.646364103000032 ], [ -120.360176508000023, 50.64653239000004 ], [ -120.360090723000013, 50.646706507000019 ], [ -120.35992272699994, 50.646857521000143 ], [ -120.359659544999928, 50.646974829000051 ], [ -120.359463419999912, 50.646818902000071 ], [ -120.35905865899997, 50.646583918000069 ], [ -120.358626729999955, 50.646440889000104 ], [ -120.358592634999923, 50.646429604000041 ], [ -120.358438612999961, 50.646412787000038 ], [ -120.35727616, 50.64611953100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78883333", "BldgCostT": "51958333", "sL_LossRatio": "0.991247356658429", "sL_AssetLoss": "7277.801404", "sL_BldgLoss": "7214.101404", "sL_StrLoss": "7191.001404", "sL_NStrLoss": "23.1", "sL_ContLoss": "63.7", "geom_point": "0101000020E610000059F9863E2F175EC0A83B0D2015524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.359283476999906, 50.640371814000034 ], [ -120.359552005999987, 50.640380897000092 ], [ -120.359875875999975, 50.640288294000079 ], [ -120.36015030199998, 50.640159795000088 ], [ -120.36025910799998, 50.639610191000024 ], [ -120.360328580999933, 50.639449832000103 ], [ -120.360333222999927, 50.639439210000077 ], [ -120.360527083999969, 50.639250701000115 ], [ -120.360691660999976, 50.639200147000068 ], [ -120.360955202999975, 50.639119179000055 ], [ -120.361216198999898, 50.639108996000054 ], [ -120.362339316999908, 50.639205599000093 ], [ -120.36280729399999, 50.639321287000108 ], [ -120.362682389999932, 50.639558197000063 ], [ -120.362689799999941, 50.639770405000064 ], [ -120.362827306, 50.640088297000069 ], [ -120.363019002999977, 50.640403502000048 ], [ -120.36306831899995, 50.640451332000069 ], [ -120.363284603999929, 50.64066108800013 ], [ -120.363358323999961, 50.640709831000045 ], [ -120.36364499299998, 50.640899310000101 ], [ -120.364154798999948, 50.641133294000028 ], [ -120.364855191999965, 50.641398591000026 ], [ -120.365332108999979, 50.641737208000087 ], [ -120.365592095999972, 50.642028909 ], [ -120.365716055999926, 50.642199225000077 ], [ -120.365912409999979, 50.642469005000109 ], [ -120.365961204999977, 50.642536002000092 ], [ -120.365955024999948, 50.64275549900006 ], [ -120.365764797999958, 50.643003696000122 ], [ -120.365693044999929, 50.642958996000061 ], [ -120.365517385000018, 50.642849607000059 ], [ -120.365326760999935, 50.642777620000018 ], [ -120.365192213999947, 50.642726795000044 ], [ -120.364928193, 50.64265940800005 ], [ -120.36459759499995, 50.642636305000075 ], [ -120.36404260099998, 50.642682098000087 ], [ -120.363615222999954, 50.642853306000042 ], [ -120.363449880999923, 50.643038699000073 ], [ -120.363310837999961, 50.643014965000091 ], [ -120.362672214000014, 50.642905973 ], [ -120.362398125999974, 50.642859200000018 ], [ -120.36130748199993, 50.642644446000055 ], [ -120.361110212999975, 50.642605589000063 ], [ -120.360680196999922, 50.642446804000087 ], [ -120.360371694999913, 50.642270782000068 ], [ -120.360088385, 50.642017598000074 ], [ -120.359785390999946, 50.641538210000078 ], [ -120.359518248, 50.640917312000099 ], [ -120.359283476999906, 50.640371814000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103358333", "BldgCostT": "68783333", "sL_LossRatio": "0.999996143991071", "sL_AssetLoss": "10829.85044", "sL_BldgLoss": "10829.80868", "sL_StrLoss": "10829.50538", "sL_NStrLoss": "0.3033", "sL_ContLoss": "0.04176", "geom_point": "0101000020E61000001A7EEC0591175EC042B06842AC524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.367265767000021, 50.646703511000091 ], [ -120.36671638299994, 50.64659159100016 ], [ -120.366440391999944, 50.646811898000053 ], [ -120.36612742199999, 50.646987108000125 ], [ -120.365765782999986, 50.647120193000028 ], [ -120.36535239799997, 50.647213699000062 ], [ -120.364915685999932, 50.647254695000122 ], [ -120.364488391999927, 50.647255598000051 ], [ -120.36386561399999, 50.647219503000052 ], [ -120.363486203999955, 50.647155192000085 ], [ -120.363196287999955, 50.647044987000136 ], [ -120.363020996999978, 50.64693788400006 ], [ -120.362653615999989, 50.646642689000039 ], [ -120.363206103999914, 50.646334495000069 ], [ -120.363394399999947, 50.646168294000084 ], [ -120.36355241699998, 50.645950108000079 ], [ -120.363646404999912, 50.64566559200005 ], [ -120.36366821199999, 50.645401785000104 ], [ -120.363890006999924, 50.645251693000041 ], [ -120.364413272999954, 50.644780797000053 ], [ -120.364686004999939, 50.644665708000062 ], [ -120.365118093999953, 50.644537096000114 ], [ -120.36488810500002, 50.644220910000072 ], [ -120.364819004999944, 50.644014672000068 ], [ -120.364750807999968, 50.643811114000059 ], [ -120.36447498699998, 50.643501453000113 ], [ -120.364449796999935, 50.643473198000081 ], [ -120.364195810999888, 50.643315296000026 ], [ -120.363513768999951, 50.643062380000103 ], [ -120.363449880999923, 50.643038699000073 ], [ -120.363615222999954, 50.642853306000042 ], [ -120.36404260099998, 50.642682098000087 ], [ -120.36459759499995, 50.642636305000075 ], [ -120.364928193, 50.64265940800005 ], [ -120.365192213999947, 50.642726795000044 ], [ -120.365326760999935, 50.642777620000018 ], [ -120.365517385000018, 50.642849607000059 ], [ -120.365693044999929, 50.642958996000061 ], [ -120.365764797999958, 50.643003696000122 ], [ -120.365959103999941, 50.643174788000074 ], [ -120.366205824999938, 50.643560402000105 ], [ -120.366382490999953, 50.643679289000019 ], [ -120.366619303999968, 50.643771507000011 ], [ -120.366904983999973, 50.643813008000066 ], [ -120.367178610999957, 50.643781784000033 ], [ -120.367392221999935, 50.643696998000038 ], [ -120.367495562, 50.643794688000064 ], [ -120.368356395999982, 50.644608306000094 ], [ -120.36854831, 50.644820702000054 ], [ -120.368872798999973, 50.645062505000055 ], [ -120.369195803, 50.645236495000077 ], [ -120.369633606999955, 50.645389300000083 ], [ -120.37006009699995, 50.645473998000064 ], [ -120.371102983999933, 50.645567307000128 ], [ -120.371600496999974, 50.645640182000072 ], [ -120.372116791999957, 50.645767294000052 ], [ -120.372358290999912, 50.645878604000131 ], [ -120.374018696999912, 50.646638492000086 ], [ -120.375858406999967, 50.647281163000059 ], [ -120.375475193999989, 50.647541170000046 ], [ -120.375149326000013, 50.647672479000079 ], [ -120.37483870600002, 50.647738797000059 ], [ -120.374375580999981, 50.647787483000087 ], [ -120.372455800999958, 50.647906594000034 ], [ -120.371581803999931, 50.647960696000062 ], [ -120.371369979999898, 50.647725594000065 ], [ -120.371207198999954, 50.647609198000026 ], [ -120.370965977999916, 50.647529394000102 ], [ -120.369654805999986, 50.647312612000043 ], [ -120.368926002999942, 50.647102806000092 ], [ -120.368200023999989, 50.64689379600005 ], [ -120.367604329999963, 50.646772465000012 ], [ -120.367265767000021, 50.646703511000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110499250", "BldgCostT": "73525000", "sL_LossRatio": "1", "sL_AssetLoss": "10273.1", "sL_BldgLoss": "10273.1", "sL_StrLoss": "10273.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B6EDAAD61175EC00186A3B3E5514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.362339316999908, 50.639205599000093 ], [ -120.361216198999898, 50.639108996000054 ], [ -120.360955202999975, 50.639119179000055 ], [ -120.360691660999976, 50.639200147000068 ], [ -120.360527083999969, 50.639250701000115 ], [ -120.360333222999927, 50.639439210000077 ], [ -120.360328580999933, 50.639449832000103 ], [ -120.36025910799998, 50.639610191000024 ], [ -120.36015030199998, 50.640159795000088 ], [ -120.359875875999975, 50.640288294000079 ], [ -120.359552005999987, 50.640380897000092 ], [ -120.359283476999906, 50.640371814000034 ], [ -120.358917388999913, 50.63952509000007 ], [ -120.358822307999972, 50.639243608000072 ], [ -120.358794907999979, 50.638987199000034 ], [ -120.358826995999948, 50.638777002000047 ], [ -120.35904459299995, 50.63826540200008 ], [ -120.359357315999915, 50.638305669000033 ], [ -120.359910407999948, 50.638376892000032 ], [ -120.36006138499999, 50.638345747000074 ], [ -120.360075103000014, 50.638342902000019 ], [ -120.361840720999965, 50.638622501000057 ], [ -120.362246708999962, 50.638644005000046 ], [ -120.36260155899997, 50.638631309000104 ], [ -120.362819801999962, 50.638623494000093 ], [ -120.363283392999975, 50.638547804000034 ], [ -120.364344841, 50.638237773000085 ], [ -120.365126283999984, 50.638009469000082 ], [ -120.365473301999913, 50.637946862000021 ], [ -120.3658461899999, 50.637892773000097 ], [ -120.36647929599999, 50.637879783000123 ], [ -120.367114234999946, 50.637943466000053 ], [ -120.368035133999939, 50.638146884000051 ], [ -120.369893523999949, 50.638569875000073 ], [ -120.369627096999963, 50.639030381000069 ], [ -120.369612076999914, 50.639206311000081 ], [ -120.369766868999989, 50.640087322000078 ], [ -120.369702879999949, 50.640314833000062 ], [ -120.369503052999931, 50.640584043000082 ], [ -120.369131167999939, 50.640777031000056 ], [ -120.368787672999957, 50.640890319000057 ], [ -120.367879591999952, 50.641114719000058 ], [ -120.367509802999976, 50.641257227000068 ], [ -120.367151388999929, 50.641455403000066 ], [ -120.366875320999952, 50.6417323370001 ], [ -120.366701582999951, 50.641906601000144 ], [ -120.366581310999919, 50.642175392000055 ], [ -120.366548388999917, 50.642662990000105 ], [ -120.366751417999936, 50.643024799000074 ], [ -120.367071285999913, 50.643393301000074 ], [ -120.367392221999935, 50.643696998000038 ], [ -120.367178610999957, 50.643781784000033 ], [ -120.366904983999973, 50.643813008000066 ], [ -120.366619303999968, 50.643771507000011 ], [ -120.366382490999953, 50.643679289000019 ], [ -120.366205824999938, 50.643560402000105 ], [ -120.365959103999941, 50.643174788000074 ], [ -120.365764797999958, 50.643003696000122 ], [ -120.365955024999948, 50.64275549900006 ], [ -120.365961204999977, 50.642536002000092 ], [ -120.365912409999979, 50.642469005000109 ], [ -120.365716055999926, 50.642199225000077 ], [ -120.365592095999972, 50.642028909 ], [ -120.365332108999979, 50.641737208000087 ], [ -120.364855191999965, 50.641398591000026 ], [ -120.364154798999948, 50.641133294000028 ], [ -120.36364499299998, 50.640899310000101 ], [ -120.363358323999961, 50.640709831000045 ], [ -120.363284603999929, 50.64066108800013 ], [ -120.36306831899995, 50.640451332000069 ], [ -120.363019002999977, 50.640403502000048 ], [ -120.362827306, 50.640088297000069 ], [ -120.362689799999941, 50.639770405000064 ], [ -120.362682389999932, 50.639558197000063 ], [ -120.36280729399999, 50.639321287000108 ], [ -120.362339316999908, 50.639205599000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87490583", "BldgCostT": "60338333", "sL_LossRatio": "1", "sL_AssetLoss": "9180", "sL_BldgLoss": "9180", "sL_StrLoss": "9180", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D31A138B6165EC00B1D6C98BE514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.348693794, 50.637409271000095 ], [ -120.348616616999948, 50.637154787000092 ], [ -120.348699817999929, 50.636888662000089 ], [ -120.348821015999931, 50.636759679000072 ], [ -120.348833149999976, 50.636764344000056 ], [ -120.349623903999927, 50.637066300000143 ], [ -120.349719110999942, 50.637094835000092 ], [ -120.349847726999897, 50.637133404000025 ], [ -120.35010519199993, 50.637210612000061 ], [ -120.350415508999944, 50.637277580000081 ], [ -120.350706210999974, 50.63734030500013 ], [ -120.351316185999963, 50.637409096000091 ], [ -120.351596846999925, 50.637427071000076 ], [ -120.351860995, 50.637444012000046 ], [ -120.352496706999915, 50.637433009000105 ], [ -120.352600802000012, 50.637431651000092 ], [ -120.352997456999944, 50.63742654 ], [ -120.353232987999974, 50.637423497000078 ], [ -120.353753386000022, 50.637438198000048 ], [ -120.354409312999962, 50.637514805000102 ], [ -120.354574191999973, 50.637541515000088 ], [ -120.354761808999953, 50.637571885000092 ], [ -120.355837061, 50.637746035000156 ], [ -120.356003519999888, 50.63777297900004 ], [ -120.35904459299995, 50.63826540200008 ], [ -120.358826995999948, 50.638777002000047 ], [ -120.358794907999979, 50.638987199000034 ], [ -120.358822307999972, 50.639243608000072 ], [ -120.358917388999913, 50.63952509000007 ], [ -120.359283476999906, 50.640371814000034 ], [ -120.356990309999944, 50.640291588000075 ], [ -120.356667019999989, 50.640244504000044 ], [ -120.354477697999982, 50.639677510000119 ], [ -120.353870296999943, 50.639519587000066 ], [ -120.352639382999897, 50.638801069000152 ], [ -120.352343421999961, 50.638628293000053 ], [ -120.351791784999961, 50.638388514000063 ], [ -120.351164603999919, 50.638207989000122 ], [ -120.351130827999938, 50.638201049000095 ], [ -120.350172691999916, 50.638004405000103 ], [ -120.349514191999944, 50.637880798000076 ], [ -120.349259224999912, 50.637806006000041 ], [ -120.349124199999935, 50.637766412000111 ], [ -120.348837292999974, 50.637587801000073 ], [ -120.348693794, 50.637409271000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "511069083", "BldgCostT": "341748333", "sL_LossRatio": "0.976676678435203", "sL_AssetLoss": "12146.109473", "sL_BldgLoss": "11862.821856", "sL_StrLoss": "11759.073356", "sL_NStrLoss": "103.7485", "sL_ContLoss": "283.287617", "geom_point": "0101000020E6100000BE4E7EE647125EC00C7F8781B2564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.283532953999938, 50.678691759000067 ], [ -120.283499052999986, 50.678559944000035 ], [ -120.278915135999966, 50.679461294000106 ], [ -120.278838622999956, 50.679364343000053 ], [ -120.278735411999961, 50.679233595 ], [ -120.278407989999891, 50.678460699000041 ], [ -120.27827621199999, 50.678357499000107 ], [ -120.278063625999906, 50.678276200000063 ], [ -120.277891342999951, 50.678270146000067 ], [ -120.277227893999935, 50.678246793000078 ], [ -120.276970400999986, 50.678204690000044 ], [ -120.277099915999898, 50.677924809000054 ], [ -120.277197502999968, 50.677461196000095 ], [ -120.278070581999884, 50.677525394000028 ], [ -120.279437804999986, 50.677625909000071 ], [ -120.279398681999965, 50.677353501000034 ], [ -120.279277216999901, 50.67708139800007 ], [ -120.279063806999915, 50.676883900000078 ], [ -120.276853215999921, 50.676709004000031 ], [ -120.276931004999966, 50.67595510600006 ], [ -120.278871908999974, 50.676095097 ], [ -120.279744065999949, 50.676157976000084 ], [ -120.280017519999944, 50.676177705000107 ], [ -120.280031615999974, 50.676176423000101 ], [ -120.280101384999924, 50.676170030000065 ], [ -120.280963190999927, 50.676091085000046 ], [ -120.280847781999938, 50.675515602000068 ], [ -120.281554485999962, 50.675433537000089 ], [ -120.283587012999973, 50.675197496000081 ], [ -120.283728395999958, 50.675760007000079 ], [ -120.28487553399998, 50.675621299000078 ], [ -120.285036804999962, 50.675601805000028 ], [ -120.28526210699998, 50.675572789000029 ], [ -120.284914698999927, 50.674509592000078 ], [ -120.284959117999961, 50.674262209000119 ], [ -120.285191203999958, 50.673978610000113 ], [ -120.285543710999931, 50.673631699000026 ], [ -120.286784480000023, 50.673591706000067 ], [ -120.287137905999913, 50.673604399000055 ], [ -120.287681617999908, 50.673862995000043 ], [ -120.28782561299991, 50.674203893000048 ], [ -120.288056998999977, 50.674394187000125 ], [ -120.288697816999928, 50.675161590000073 ], [ -120.28954478599999, 50.675058105000083 ], [ -120.289969387999946, 50.674935694000062 ], [ -120.290503980999986, 50.674641403000059 ], [ -120.291440219999984, 50.675376105000069 ], [ -120.291674979999939, 50.675562104000079 ], [ -120.291837490999967, 50.675680408000041 ], [ -120.293171097999902, 50.674778085000057 ], [ -120.293358153999989, 50.675062633000096 ], [ -120.293403050999927, 50.675130951 ], [ -120.293439101999965, 50.675237113000058 ], [ -120.293333774999923, 50.675234665000083 ], [ -120.293319658999962, 50.675479947000149 ], [ -120.293524213999902, 50.675490433000078 ], [ -120.292968805, 50.675819294000142 ], [ -120.291824409999919, 50.676763488000098 ], [ -120.291513279999904, 50.677223496000046 ], [ -120.291249493999914, 50.679358394000111 ], [ -120.291137893999974, 50.679580597000069 ], [ -120.290841014999941, 50.679808492000063 ], [ -120.290292592999975, 50.67997509800005 ], [ -120.287258976999979, 50.680299795000025 ], [ -120.286582492999983, 50.680500604000024 ], [ -120.284016165999944, 50.680774891000063 ], [ -120.283963605999958, 50.680430395000016 ], [ -120.283734128, 50.6794961350001 ], [ -120.283648139999968, 50.679145940000083 ], [ -120.283612990999956, 50.679002899000075 ], [ -120.283564120999955, 50.678812828000083 ], [ -120.283532953999938, 50.678691759000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66828916", "BldgCostT": "41146666", "sL_LossRatio": "0.980836420273597", "sL_AssetLoss": "7409.74818", "sL_BldgLoss": "7267.75088", "sL_StrLoss": "7215.32578", "sL_NStrLoss": "52.4251", "sL_ContLoss": "141.9973", "geom_point": "0101000020E6100000B645BA1B9B115EC0C4472809CB564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.272289206, 50.678988712000042 ], [ -120.272312554999957, 50.677881457000112 ], [ -120.272329113999959, 50.677098193000035 ], [ -120.272357301999989, 50.675621594000077 ], [ -120.275953805999961, 50.675883854000034 ], [ -120.276163994999962, 50.675899175000126 ], [ -120.276931004999966, 50.67595510600006 ], [ -120.276853215999921, 50.676709004000031 ], [ -120.279063806999915, 50.676883900000078 ], [ -120.279277216999901, 50.67708139800007 ], [ -120.279398681999965, 50.677353501000034 ], [ -120.279437804999986, 50.677625909000071 ], [ -120.278070581999884, 50.677525394000028 ], [ -120.277197502999968, 50.677461196000095 ], [ -120.277099915999898, 50.677924809000054 ], [ -120.276970400999986, 50.678204690000044 ], [ -120.277227893999935, 50.678246793000078 ], [ -120.277891342999951, 50.678270146000067 ], [ -120.278063625999906, 50.678276200000063 ], [ -120.27827621199999, 50.678357499000107 ], [ -120.278407989999891, 50.678460699000041 ], [ -120.278735411999961, 50.679233595 ], [ -120.278838622999956, 50.679364343000053 ], [ -120.278915135999966, 50.679461294000106 ], [ -120.274562799999956, 50.680316870000063 ], [ -120.273213667999968, 50.680491709000044 ], [ -120.272312305999947, 50.680563966000108 ], [ -120.272285485999973, 50.680418398000036 ], [ -120.272272797999975, 50.680006208000087 ], [ -120.272276128999977, 50.679798802000036 ], [ -120.272289071, 50.678997751000097 ], [ -120.272289206, 50.678988712000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179051750", "BldgCostT": "113885000", "sL_LossRatio": "0.993840017254429", "sL_AssetLoss": "19849.5305507", "sL_BldgLoss": "19727.257785", "sL_StrLoss": "19681.818775", "sL_NStrLoss": "45.43901", "sL_ContLoss": "122.2727657", "geom_point": "0101000020E61000005D2F1BD71E115EC0FF9A308AB3564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.261097302999957, 50.678642188000083 ], [ -120.26087055899994, 50.678593560000074 ], [ -120.260674507999937, 50.678633500000032 ], [ -120.260426573999922, 50.6786840010001 ], [ -120.260249198999972, 50.678720121 ], [ -120.25993646799995, 50.67873153500004 ], [ -120.259900957999932, 50.678732821000082 ], [ -120.259826363999977, 50.678717601000116 ], [ -120.25832836899994, 50.678411996000122 ], [ -120.258290690999942, 50.678096409000041 ], [ -120.25788317899999, 50.67762929900001 ], [ -120.25754989899994, 50.677460214000078 ], [ -120.257374997999975, 50.677371493000059 ], [ -120.257168688999926, 50.677163485 ], [ -120.257028334, 50.676921868000129 ], [ -120.256996497999964, 50.676867086000058 ], [ -120.257087120999984, 50.676015584000027 ], [ -120.257096252999958, 50.675928749000086 ], [ -120.257152726999948, 50.675392610000095 ], [ -120.257718311999952, 50.675509354000113 ], [ -120.259975724, 50.675975286000032 ], [ -120.261247891999943, 50.676200737000045 ], [ -120.26164548299991, 50.676271174000078 ], [ -120.262077183999949, 50.676347682000021 ], [ -120.26213659099993, 50.676351304000072 ], [ -120.26227730899997, 50.676359790000113 ], [ -120.262492827999893, 50.675841895000033 ], [ -120.262637179999956, 50.675596682000084 ], [ -120.263584339999923, 50.675618939000074 ], [ -120.263568659999919, 50.675888421000067 ], [ -120.265265061000022, 50.675928263000053 ], [ -120.265280731999908, 50.67565878000007 ], [ -120.265704828999986, 50.675668738000148 ], [ -120.265720497999951, 50.675399255000087 ], [ -120.267416882999896, 50.675439067000084 ], [ -120.26743254199998, 50.675169583000063 ], [ -120.270825306999967, 50.675249131000065 ], [ -120.270840943999971, 50.674979647000072 ], [ -120.271265038999971, 50.674989584000038 ], [ -120.271280673999911, 50.674720100000059 ], [ -120.273401137999898, 50.674769759000071 ], [ -120.273416761999982, 50.674500275000121 ], [ -120.276809493999963, 50.674579647000073 ], [ -120.276825098999893, 50.67431016200004 ], [ -120.278521460999983, 50.674349810000102 ], [ -120.278528739999942, 50.674224006000067 ], [ -120.279350846999961, 50.674270510000035 ], [ -120.279759088999953, 50.674592605000086 ], [ -120.279958304999965, 50.674749803000076 ], [ -120.280143594999956, 50.674967489000025 ], [ -120.280220220000018, 50.67523550100001 ], [ -120.28007028799999, 50.675932202000105 ], [ -120.280017519999944, 50.676177705000107 ], [ -120.279744065999949, 50.676157976000084 ], [ -120.278871908999974, 50.676095097 ], [ -120.276931004999966, 50.67595510600006 ], [ -120.276163994999962, 50.675899175000126 ], [ -120.275953805999961, 50.675883854000034 ], [ -120.272357301999989, 50.675621594000077 ], [ -120.272329113999959, 50.677098193000035 ], [ -120.272312554999957, 50.677881457000112 ], [ -120.272289206, 50.678988712000042 ], [ -120.272289071, 50.678997751000097 ], [ -120.272276128999977, 50.679798802000036 ], [ -120.272272797999975, 50.680006208000087 ], [ -120.272285485999973, 50.680418398000036 ], [ -120.272312305999947, 50.680563966000108 ], [ -120.272254891999921, 50.680568569000151 ], [ -120.271175650999936, 50.68062117900012 ], [ -120.269109668999974, 50.680580658000096 ], [ -120.267620552999986, 50.680483274000039 ], [ -120.266237824, 50.680321048000025 ], [ -120.264934496999956, 50.680104313000086 ], [ -120.262930231999917, 50.679678478000085 ], [ -120.262650072999932, 50.67961893600004 ], [ -120.262607673999952, 50.679609942000077 ], [ -120.262252410999977, 50.679534445000073 ], [ -120.260936519999987, 50.679254824000068 ], [ -120.260914326999952, 50.679250084000088 ], [ -120.260922571999913, 50.679235170000027 ], [ -120.260973460999978, 50.679143197000016 ], [ -120.261159836999965, 50.678797513000092 ], [ -120.261228723999963, 50.678669694000128 ], [ -120.261097302999957, 50.678642188000083 ] ], [ [ -120.27932287499999, 50.675178083000063 ], [ -120.279338463999977, 50.674908597000119 ], [ -120.278490271999956, 50.674888782000075 ], [ -120.27847467699992, 50.675158267000015 ], [ -120.27932287499999, 50.675178083000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86752500", "BldgCostT": "56940000", "sL_LossRatio": "0.999995304967678", "sL_AssetLoss": "8093.661", "sL_BldgLoss": "8093.623", "sL_StrLoss": "8093.313", "sL_NStrLoss": "0.31", "sL_ContLoss": "0.038", "geom_point": "0101000020E61000007B7D39F539105EC041A196CDB9564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.267713181999952, 50.681160239000114 ], [ -120.267718310999967, 50.681120139000051 ], [ -120.267463409999934, 50.681107015000052 ], [ -120.266679955999933, 50.681088632000055 ], [ -120.265819174999976, 50.681006224000043 ], [ -120.265831233999918, 50.680798861 ], [ -120.264722740999929, 50.680772835000013 ], [ -120.263914785999972, 50.680546197000062 ], [ -120.262709102999949, 50.680328303000103 ], [ -120.262464551999969, 50.680264579000031 ], [ -120.262469463999963, 50.680180198000095 ], [ -120.262108138999949, 50.680171706000138 ], [ -120.261627809999979, 50.680046539000024 ], [ -120.261636882999952, 50.679890778000164 ], [ -120.260822726999933, 50.679871634000087 ], [ -120.26029000299998, 50.679795590000047 ], [ -120.259512206999943, 50.679542097000123 ], [ -120.259113532999933, 50.679462814000075 ], [ -120.259123491999944, 50.679291959000103 ], [ -120.258137780999974, 50.679268760000085 ], [ -120.257854004999928, 50.679212321000094 ], [ -120.257860455999946, 50.679101699000064 ], [ -120.257100806999958, 50.679062519000063 ], [ -120.256798498999927, 50.67900239100009 ], [ -120.255660392, 50.678606404000071 ], [ -120.25497141699999, 50.678536605000048 ], [ -120.254022891999966, 50.678271712000011 ], [ -120.253069980999982, 50.678105094000095 ], [ -120.25076619099994, 50.67804099500006 ], [ -120.250324438999911, 50.678109380000087 ], [ -120.250343892999965, 50.677957745000107 ], [ -120.25028277, 50.677954589000059 ], [ -120.250279873999943, 50.678004114000039 ], [ -120.249431646999952, 50.677984086000016 ], [ -120.249418382999963, 50.678210838000076 ], [ -120.247720671999957, 50.678192134000028 ], [ -120.247730823999973, 50.678018676000057 ], [ -120.247307025999973, 50.6780427630001 ], [ -120.246456510999934, 50.67802233 ], [ -120.246447390999933, 50.678178090000145 ], [ -120.246157912999976, 50.678174895000069 ], [ -120.244412195999942, 50.67799970100004 ], [ -120.243918127999947, 50.677854823000132 ], [ -120.24391819099999, 50.677853754000033 ], [ -120.243914157999939, 50.677853658000075 ], [ -120.243508811999945, 50.677734794000074 ], [ -120.243500575999931, 50.677732904000095 ], [ -120.24350667799996, 50.677628814000109 ], [ -120.243126697999969, 50.677565171000062 ], [ -120.242728515999886, 50.677555746000046 ], [ -120.242243400999953, 50.677444426000129 ], [ -120.242246812999952, 50.677386236000103 ], [ -120.241699538999981, 50.677261531000077 ], [ -120.241015093999962, 50.677245320000075 ], [ -120.240145968999968, 50.677000688000071 ], [ -120.240148655, 50.676954941000112 ], [ -120.239968257999976, 50.676950666000046 ], [ -120.239303312999951, 50.676763497000096 ], [ -120.239198461999948, 50.676750193000046 ], [ -120.238968424999911, 50.676703163000063 ], [ -120.238788807999981, 50.676652860000033 ], [ -120.238470560999986, 50.676645315000094 ], [ -120.237714199999942, 50.676347586000119 ], [ -120.235799105999959, 50.675924597000076 ], [ -120.235250593999965, 50.675641202000072 ], [ -120.234020710999971, 50.6751355970001 ], [ -120.23249248399992, 50.674379407000067 ], [ -120.231167980999942, 50.674051801000118 ], [ -120.230448190999937, 50.674007703000058 ], [ -120.229203487999911, 50.673500589000085 ], [ -120.228704432999962, 50.673362623000109 ], [ -120.22893517699994, 50.673133960000023 ], [ -120.229058631999948, 50.672980253000084 ], [ -120.229350225999937, 50.672617128000084 ], [ -120.229718801999951, 50.672694845000052 ], [ -120.23819070799999, 50.674480410000051 ], [ -120.238208797, 50.674444664000134 ], [ -120.238257367999921, 50.674348665000103 ], [ -120.241309998999895, 50.674988801000076 ], [ -120.241473168999946, 50.675023206000112 ], [ -120.244883749999985, 50.675742265000089 ], [ -120.251081094999932, 50.677048442000078 ], [ -120.251539995999963, 50.676161884000052 ], [ -120.252183000999949, 50.676305801000133 ], [ -120.252297634999962, 50.676331458000035 ], [ -120.253314306999982, 50.676558985000113 ], [ -120.252926787999968, 50.677310495000036 ], [ -120.257289239, 50.678200120000071 ], [ -120.25832836899994, 50.678411996000122 ], [ -120.259826363999977, 50.678717601000116 ], [ -120.259900957999932, 50.678732821000082 ], [ -120.25993646799995, 50.67873153500004 ], [ -120.260249198999972, 50.678720121 ], [ -120.260426573999922, 50.6786840010001 ], [ -120.260674507999937, 50.678633500000032 ], [ -120.26087055899994, 50.678593560000074 ], [ -120.261097302999957, 50.678642188000083 ], [ -120.261228723999963, 50.678669694000128 ], [ -120.261159836999965, 50.678797513000092 ], [ -120.260973460999978, 50.679143197000016 ], [ -120.260922571999913, 50.679235170000027 ], [ -120.260914326999952, 50.679250084000088 ], [ -120.260936519999987, 50.679254824000068 ], [ -120.262252410999977, 50.679534445000073 ], [ -120.262607673999952, 50.679609942000077 ], [ -120.262650072999932, 50.67961893600004 ], [ -120.262930231999917, 50.679678478000085 ], [ -120.264934496999956, 50.680104313000086 ], [ -120.266237824, 50.680321048000025 ], [ -120.267620552999986, 50.680483274000039 ], [ -120.269109668999974, 50.680580658000096 ], [ -120.271175650999936, 50.68062117900012 ], [ -120.272254891999921, 50.680568569000151 ], [ -120.272312305999947, 50.680563966000108 ], [ -120.273213667999968, 50.680491709000044 ], [ -120.274562799999956, 50.680316870000063 ], [ -120.278915135999966, 50.679461294000106 ], [ -120.283499052999986, 50.678559944000035 ], [ -120.283532953999938, 50.678691759000067 ], [ -120.283564120999955, 50.678812828000083 ], [ -120.283612990999956, 50.679002899000075 ], [ -120.283648139999968, 50.679145940000083 ], [ -120.283734128, 50.6794961350001 ], [ -120.283963605999958, 50.680430395000016 ], [ -120.284016165999944, 50.680774891000063 ], [ -120.283477185999942, 50.680832489000061 ], [ -120.281382606999927, 50.680828199000111 ], [ -120.275467282999969, 50.681031893000103 ], [ -120.272431116999897, 50.681114504000021 ], [ -120.269264225999947, 50.681057504000059 ], [ -120.267713181999952, 50.681160239000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136337917", "BldgCostT": "88191667", "sL_LossRatio": "0.999990770045403", "sL_AssetLoss": "13553.912827", "sL_BldgLoss": "13553.787725", "sL_StrLoss": "13552.715025", "sL_NStrLoss": "1.0727", "sL_ContLoss": "0.125102", "geom_point": "0101000020E6100000BE5F3FA3380F5EC0F11958E00E564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.22941873799995, 50.672499501000061 ], [ -120.229720286999964, 50.671981966000089 ], [ -120.230007716000017, 50.671305994000129 ], [ -120.230381897999933, 50.670425817000122 ], [ -120.23395281099999, 50.670426901000091 ], [ -120.235133268999959, 50.670385750000072 ], [ -120.235990512999962, 50.67032065800003 ], [ -120.235809931999967, 50.671724870000034 ], [ -120.236632615999923, 50.671744391000082 ], [ -120.23661678399999, 50.672013868000093 ], [ -120.239585175999977, 50.67208425899999 ], [ -120.239616806999962, 50.671545305000073 ], [ -120.240888963999936, 50.671575449000088 ], [ -120.240873156999939, 50.671844927000123 ], [ -120.241297209999985, 50.671854972000048 ], [ -120.241313017, 50.671585494000034 ], [ -120.24428139399997, 50.671655766000114 ], [ -120.24426560499991, 50.671925244000107 ], [ -120.244689661999956, 50.671935277000031 ], [ -120.244705448999952, 50.671665798000028 ], [ -120.247673837999912, 50.671735983000076 ], [ -120.247658069999915, 50.672005462000094 ], [ -120.247771938999904, 50.672008152000039 ], [ -120.247693720999933, 50.672397006000097 ], [ -120.247701211, 50.672781299000036 ], [ -120.249086188999954, 50.672813189000067 ], [ -120.249311913, 50.67291318900002 ], [ -120.249426693999979, 50.673037205000057 ], [ -120.249410774999944, 50.673106961000116 ], [ -120.249280986999963, 50.6736748880001 ], [ -120.246679963999966, 50.673421589000043 ], [ -120.246511139999953, 50.673405127000116 ], [ -120.246128804999955, 50.673367882000065 ], [ -120.244996529999952, 50.673259165000083 ], [ -120.244855800999957, 50.673245648 ], [ -120.244380585, 50.673199988000086 ], [ -120.242525972999957, 50.67301940300009 ], [ -120.239133835999922, 50.672690659000104 ], [ -120.238694288999909, 50.67352410400008 ], [ -120.238590830999954, 50.673721544000031 ], [ -120.238384980999953, 50.674107420000048 ], [ -120.238257367999921, 50.674348665000103 ], [ -120.238208797, 50.674444664000134 ], [ -120.23819070799999, 50.674480410000051 ], [ -120.229718801999951, 50.672694845000052 ], [ -120.229350225999937, 50.672617128000084 ], [ -120.22941873799995, 50.672499501000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "106487206", "BldgCostT": "66571054", "sL_LossRatio": "0.981705405504456", "sL_AssetLoss": "10958.490993", "sL_BldgLoss": "10758.009844", "sL_StrLoss": "10682.533574", "sL_NStrLoss": "75.47627", "sL_ContLoss": "200.481149", "geom_point": "0101000020E61000004B1D2E83BB0F5EC05D0D475F5A564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.238694288999909, 50.67352410400008 ], [ -120.239133835999922, 50.672690659000104 ], [ -120.242525972999957, 50.67301940300009 ], [ -120.244380585, 50.673199988000086 ], [ -120.244855800999957, 50.673245648 ], [ -120.244996529999952, 50.673259165000083 ], [ -120.246128804999955, 50.673367882000065 ], [ -120.246511139999953, 50.673405127000116 ], [ -120.246679963999966, 50.673421589000043 ], [ -120.249280986999963, 50.6736748880001 ], [ -120.2524816869999, 50.674379201000072 ], [ -120.251706494999951, 50.67582709900006 ], [ -120.251539995999963, 50.676161884000052 ], [ -120.251081094999932, 50.677048442000078 ], [ -120.244883749999985, 50.675742265000089 ], [ -120.241473168999946, 50.675023206000112 ], [ -120.241309998999895, 50.674988801000076 ], [ -120.238257367999921, 50.674348665000103 ], [ -120.238384980999953, 50.674107420000048 ], [ -120.238590830999954, 50.673721544000031 ], [ -120.238694288999909, 50.67352410400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48926667", "BldgCostT": "30266667", "sL_LossRatio": "0.9999730706811", "sL_AssetLoss": "4641.669567", "sL_BldgLoss": "4641.54457", "sL_StrLoss": "4640.4318", "sL_NStrLoss": "1.11277", "sL_ContLoss": "0.124997", "geom_point": "0101000020E61000006EE4DB37CE105EC011061A43EB554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.260005405999962, 50.669315422000075 ], [ -120.265649060999976, 50.669606301000073 ], [ -120.265211786999899, 50.673024141000077 ], [ -120.265088143999932, 50.673020452000102 ], [ -120.264652640999955, 50.673038585000029 ], [ -120.264354262000012, 50.673116944000071 ], [ -120.264306238999936, 50.673142064000082 ], [ -120.259546764999953, 50.672896739000052 ], [ -120.260005405999962, 50.669315422000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74251084", "BldgCostT": "46788334", "sL_LossRatio": "1", "sL_AssetLoss": "7055", "sL_BldgLoss": "7055", "sL_StrLoss": "7055", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AEFCF0FB50105EC06D50031F66564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.251706494999951, 50.67582709900006 ], [ -120.2524816869999, 50.674379201000072 ], [ -120.249280986999963, 50.6736748880001 ], [ -120.249410774999944, 50.673106961000116 ], [ -120.249426693999979, 50.673037205000057 ], [ -120.249311913, 50.67291318900002 ], [ -120.249086188999954, 50.672813189000067 ], [ -120.247701211, 50.672781299000036 ], [ -120.247693720999933, 50.672397006000097 ], [ -120.247771938999904, 50.672008152000039 ], [ -120.248930248999969, 50.672035519000048 ], [ -120.248920842999937, 50.672196285000084 ], [ -120.248993224999978, 50.672199362000079 ], [ -120.249155423999937, 50.672234662000101 ], [ -120.249163215999914, 50.672310872000011 ], [ -120.251034798999953, 50.672355061000083 ], [ -120.251019048999964, 50.672624541000111 ], [ -120.254835650999965, 50.672714558000045 ], [ -120.254785141999946, 50.673579902000057 ], [ -120.256902066999928, 50.673689133000089 ], [ -120.256908841999959, 50.673572958000072 ], [ -120.258605150999941, 50.67361289600008 ], [ -120.258558024999928, 50.674421339000098 ], [ -120.258982111999941, 50.674431320000039 ], [ -120.258966404999939, 50.674700801000029 ], [ -120.260662757, 50.674740710000016 ], [ -120.260647059999911, 50.675010192000087 ], [ -120.261071151999886, 50.675020166000074 ], [ -120.261055456999927, 50.675289647000042 ], [ -120.261479548999944, 50.67529962000004 ], [ -120.261463857999956, 50.675569101000065 ], [ -120.262396160999941, 50.675591017000052 ], [ -120.262637179999956, 50.675596682000084 ], [ -120.262492827999893, 50.675841895000033 ], [ -120.26227730899997, 50.676359790000113 ], [ -120.26213659099993, 50.676351304000072 ], [ -120.262077183999949, 50.676347682000021 ], [ -120.26164548299991, 50.676271174000078 ], [ -120.261247891999943, 50.676200737000045 ], [ -120.259975724, 50.675975286000032 ], [ -120.257718311999952, 50.675509354000113 ], [ -120.257152726999948, 50.675392610000095 ], [ -120.257096252999958, 50.675928749000086 ], [ -120.257087120999984, 50.676015584000027 ], [ -120.256996497999964, 50.676867086000058 ], [ -120.257028334, 50.676921868000129 ], [ -120.257168688999926, 50.677163485 ], [ -120.257374997999975, 50.677371493000059 ], [ -120.25754989899994, 50.677460214000078 ], [ -120.25788317899999, 50.67762929900001 ], [ -120.258290690999942, 50.678096409000041 ], [ -120.25832836899994, 50.678411996000122 ], [ -120.257289239, 50.678200120000071 ], [ -120.252926787999968, 50.677310495000036 ], [ -120.253314306999982, 50.676558985000113 ], [ -120.252297634999962, 50.676331458000035 ], [ -120.252183000999949, 50.676305801000133 ], [ -120.251539995999963, 50.676161884000052 ], [ -120.251706494999951, 50.67582709900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198700250", "BldgCostT": "133115000", "sL_LossRatio": "1", "sL_AssetLoss": "11848.9", "sL_BldgLoss": "11848.9", "sL_StrLoss": "11848.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E1FBA036C30F5EC036040982AE544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.244972709999928, 50.664373456000142 ], [ -120.245020843999981, 50.66399850600002 ], [ -120.243692692999986, 50.663929822000036 ], [ -120.243749622999971, 50.663486457000019 ], [ -120.24373932499995, 50.663485925000032 ], [ -120.243800544999914, 50.663009133000116 ], [ -120.242242648999976, 50.66297225400011 ], [ -120.242258442999969, 50.662702776000046 ], [ -120.240986524, 50.662672651000022 ], [ -120.241033932, 50.661864218000026 ], [ -120.240186001, 50.661844127000052 ], [ -120.24020180799999, 50.66157464900008 ], [ -120.239353882999978, 50.661554552000098 ], [ -120.239369693999961, 50.661285076000077 ], [ -120.23894573499993, 50.661275025000045 ], [ -120.23896154799999, 50.661005548000034 ], [ -120.238537590999954, 50.660995496000119 ], [ -120.238553407000012, 50.660726019000045 ], [ -120.238129451999953, 50.660715966000069 ], [ -120.238145270999922, 50.660446488000062 ], [ -120.237721318999931, 50.66043643400009 ], [ -120.237737138999975, 50.660166956000104 ], [ -120.234345554999948, 50.660086462000066 ], [ -120.234313876999977, 50.660625415000069 ], [ -120.233042021999921, 50.660595205000071 ], [ -120.233057868999978, 50.660325728000068 ], [ -120.232633919999927, 50.660315654000094 ], [ -120.232649769, 50.660046179000126 ], [ -120.231692477999985, 50.660023427000112 ], [ -120.23170731, 50.659770916000127 ], [ -120.231783088, 50.659561797000023 ], [ -120.229831541999943, 50.659591636000087 ], [ -120.229687912999935, 50.658418778000105 ], [ -120.229683857999987, 50.658365332000059 ], [ -120.22964572699999, 50.65786213000009 ], [ -120.230349695999948, 50.657987313000014 ], [ -120.230305219999977, 50.657826795000041 ], [ -120.229715760999937, 50.656915988000023 ], [ -120.230158863999961, 50.656864287000062 ], [ -120.230376613999937, 50.656811723000061 ], [ -120.231509060999926, 50.656887398000094 ], [ -120.231752187999945, 50.656903623000133 ], [ -120.231955526999968, 50.65733792100005 ], [ -120.23215871799998, 50.657334773000073 ], [ -120.234754743999957, 50.657150939000104 ], [ -120.243203715999954, 50.658453892000097 ], [ -120.243114899999981, 50.658656634000089 ], [ -120.243073218999939, 50.658751804000175 ], [ -120.238889920999966, 50.658043605000039 ], [ -120.235117879999919, 50.657404885000055 ], [ -120.234216911999908, 50.657252305000043 ], [ -120.231495605999925, 50.657445579000139 ], [ -120.23149216299997, 50.657704983 ], [ -120.231487095999938, 50.658086010000019 ], [ -120.233987105999972, 50.657912800000048 ], [ -120.234082496999974, 50.65792525700008 ], [ -120.234741195999916, 50.658011294000104 ], [ -120.23470929599992, 50.658557597000076 ], [ -120.234669172999972, 50.659255860000016 ], [ -120.235433980999943, 50.659308536 ], [ -120.238323011999967, 50.659507302000108 ], [ -120.238495622999963, 50.659133129000047 ], [ -120.238704809999945, 50.658679807000084 ], [ -120.242797796999952, 50.659370204000027 ], [ -120.242577715, 50.659868110000076 ], [ -120.241465245999947, 50.660680237000072 ], [ -120.242432095999959, 50.661234075000095 ], [ -120.2427762, 50.661252785000045 ], [ -120.243990764, 50.661171401 ], [ -120.244024220999933, 50.66116555500011 ], [ -120.24435151499992, 50.661719491000099 ], [ -120.246438302999962, 50.66138369700014 ], [ -120.246571738999975, 50.661452669000042 ], [ -120.24680733199996, 50.661519827000077 ], [ -120.247432932999985, 50.6616242670001 ], [ -120.24795202899999, 50.661696174000085 ], [ -120.24955380199998, 50.661805999000094 ], [ -120.253527497999926, 50.662068008000091 ], [ -120.25354156899999, 50.662068915000134 ], [ -120.254187303999984, 50.662110817000055 ], [ -120.254330221999922, 50.662120090000059 ], [ -120.254344290999938, 50.662120997000059 ], [ -120.256482934999951, 50.662253017000161 ], [ -120.256781130999968, 50.662219727000043 ], [ -120.256944263999912, 50.662147789000038 ], [ -120.257086690999984, 50.662084986000153 ], [ -120.257258010999962, 50.661933407000099 ], [ -120.257478438999982, 50.661542826000101 ], [ -120.257567851999966, 50.661380522000044 ], [ -120.257678286999976, 50.661179992 ], [ -120.257700783999979, 50.661161203000063 ], [ -120.257861142999914, 50.66102722100009 ], [ -120.25813051399993, 50.660919439000097 ], [ -120.258457168999925, 50.660885820000026 ], [ -120.258844698999923, 50.660911922000061 ], [ -120.258985986999988, 50.660921425000076 ], [ -120.259660890999925, 50.66096684900004 ], [ -120.261071136999931, 50.66106144200004 ], [ -120.261985251999988, 50.661122774000084 ], [ -120.262023059999976, 50.661182380000085 ], [ -120.262143069, 50.661221017000038 ], [ -120.262011294, 50.662106475000073 ], [ -120.261883783999977, 50.66293625600013 ], [ -120.261902356999926, 50.664515528000081 ], [ -120.261683049999959, 50.664510372000017 ], [ -120.261667363999962, 50.664779854000116 ], [ -120.26039537, 50.664749940000021 ], [ -120.26047382900002, 50.663402530000035 ], [ -120.258546542999966, 50.663357180000105 ], [ -120.25851422599996, 50.663609516000065 ], [ -120.257869302999922, 50.663576246000076 ], [ -120.2578577, 50.663666832000033 ], [ -120.25735824399996, 50.663641062000067 ], [ -120.257348882, 50.663714144000018 ], [ -120.254443373, 50.663564189000041 ], [ -120.254372776999958, 50.664115011000078 ], [ -120.253814596999959, 50.664086194000042 ], [ -120.253814450999968, 50.66408732499999 ], [ -120.251503095999951, 50.663967968000108 ], [ -120.251409382999924, 50.664698780000087 ], [ -120.250616577999963, 50.664657829000063 ], [ -120.250615645999986, 50.664665097000068 ], [ -120.244972709999928, 50.664373456000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113240750", "BldgCostT": "77360000", "sL_LossRatio": "0.998653064850629", "sL_AssetLoss": "10468.21", "sL_BldgLoss": "10454.11", "sL_StrLoss": "10449", "sL_NStrLoss": "5.11", "sL_ContLoss": "14.1", "geom_point": "0101000020E6100000D2411338840F5EC0C352765D6C544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.24435151499992, 50.661719491000099 ], [ -120.244024220999933, 50.66116555500011 ], [ -120.243990764, 50.661171401 ], [ -120.2427762, 50.661252785000045 ], [ -120.242432095999959, 50.661234075000095 ], [ -120.241465245999947, 50.660680237000072 ], [ -120.242577715, 50.659868110000076 ], [ -120.242797796999952, 50.659370204000027 ], [ -120.238704809999945, 50.658679807000084 ], [ -120.238495622999963, 50.659133129000047 ], [ -120.238323011999967, 50.659507302000108 ], [ -120.235433980999943, 50.659308536 ], [ -120.234669172999972, 50.659255860000016 ], [ -120.23470929599992, 50.658557597000076 ], [ -120.234741195999916, 50.658011294000104 ], [ -120.234082496999974, 50.65792525700008 ], [ -120.233987105999972, 50.657912800000048 ], [ -120.231487095999938, 50.658086010000019 ], [ -120.23149216299997, 50.657704983 ], [ -120.231495605999925, 50.657445579000139 ], [ -120.234216911999908, 50.657252305000043 ], [ -120.235117879999919, 50.657404885000055 ], [ -120.238889920999966, 50.658043605000039 ], [ -120.243073218999939, 50.658751804000175 ], [ -120.243114899999981, 50.658656634000089 ], [ -120.243203715999954, 50.658453892000097 ], [ -120.246080611999957, 50.658961396000073 ], [ -120.24859810699999, 50.659404303000017 ], [ -120.249828619999931, 50.65977429400003 ], [ -120.249748091999905, 50.660368598000048 ], [ -120.249651698999941, 50.66107649900011 ], [ -120.249561421999928, 50.66174690400009 ], [ -120.24955380199998, 50.661805999000094 ], [ -120.24795202899999, 50.661696174000085 ], [ -120.247432932999985, 50.6616242670001 ], [ -120.24680733199996, 50.661519827000077 ], [ -120.246571738999975, 50.661452669000042 ], [ -120.246438302999962, 50.66138369700014 ], [ -120.24435151499992, 50.661719491000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99829917", "BldgCostT": "68351667", "sL_LossRatio": "1", "sL_AssetLoss": "8640", "sL_BldgLoss": "8640", "sL_StrLoss": "8640", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000612E6F2F65105EC0A112F83F97544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.249651698999941, 50.66107649900011 ], [ -120.249748091999905, 50.660368598000048 ], [ -120.249828619999931, 50.65977429400003 ], [ -120.254681907999952, 50.660096202000048 ], [ -120.254736694999977, 50.659778992000085 ], [ -120.258616762000017, 50.660031953000058 ], [ -120.259010733999986, 50.660057638000097 ], [ -120.261306261999977, 50.660207208000024 ], [ -120.262767620999966, 50.660302406000021 ], [ -120.263289491999956, 50.660273405000083 ], [ -120.263805704999953, 50.660179310000103 ], [ -120.264194305000018, 50.660082986000063 ], [ -120.264629683999914, 50.659898196000086 ], [ -120.26489349399999, 50.660028243000085 ], [ -120.265170615999963, 50.660164896000019 ], [ -120.265462819000021, 50.660378243000117 ], [ -120.26570013499996, 50.66066533300009 ], [ -120.265716589999954, 50.660775815000065 ], [ -120.26575021499994, 50.661001978000044 ], [ -120.265752850999917, 50.661019542000105 ], [ -120.265708639999971, 50.661231771000097 ], [ -120.264294252999946, 50.661141821000029 ], [ -120.264252154999923, 50.661139131000034 ], [ -120.263990272999962, 50.661122491000064 ], [ -120.263511891999954, 50.661110442000066 ], [ -120.262866106999979, 50.661141129000093 ], [ -120.26231876899999, 50.661112926000044 ], [ -120.262272749999937, 50.661195284000094 ], [ -120.262143069, 50.661221017000038 ], [ -120.262023059999976, 50.661182380000085 ], [ -120.261985251999988, 50.661122774000084 ], [ -120.261071136999931, 50.66106144200004 ], [ -120.259660890999925, 50.66096684900004 ], [ -120.258985986999988, 50.660921425000076 ], [ -120.258844698999923, 50.660911922000061 ], [ -120.258457168999925, 50.660885820000026 ], [ -120.25813051399993, 50.660919439000097 ], [ -120.257861142999914, 50.66102722100009 ], [ -120.257700783999979, 50.661161203000063 ], [ -120.257678286999976, 50.661179992 ], [ -120.257567851999966, 50.661380522000044 ], [ -120.257478438999982, 50.661542826000101 ], [ -120.257258010999962, 50.661933407000099 ], [ -120.257086690999984, 50.662084986000153 ], [ -120.256944263999912, 50.662147789000038 ], [ -120.256781130999968, 50.662219727000043 ], [ -120.256482934999951, 50.662253017000161 ], [ -120.254344290999938, 50.662120997000059 ], [ -120.254330221999922, 50.662120090000059 ], [ -120.254187303999984, 50.662110817000055 ], [ -120.25354156899999, 50.662068915000134 ], [ -120.253527497999926, 50.662068008000091 ], [ -120.24955380199998, 50.661805999000094 ], [ -120.249561421999928, 50.66174690400009 ], [ -120.249651698999941, 50.66107649900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "1", "sL_AssetLoss": "540", "sL_BldgLoss": "540", "sL_StrLoss": "540", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B0340D31A125EC0189C3DA78B534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.283125559999945, 50.652153518000048 ], [ -120.283261901999964, 50.651084022000106 ], [ -120.283868979999966, 50.651158308000099 ], [ -120.283989196999968, 50.651163355000087 ], [ -120.284925207999933, 50.651202649000048 ], [ -120.284984656999939, 50.651293138000042 ], [ -120.284980657999967, 50.651513727000093 ], [ -120.284822584999986, 50.651785 ], [ -120.283657214999963, 50.65272404600011 ], [ -120.281705673999937, 50.6542964900001 ], [ -120.281352805, 50.654580795000108 ], [ -120.281051662999943, 50.654849232000089 ], [ -120.28099142799999, 50.654978288000024 ], [ -120.280915370999978, 50.654976512000069 ], [ -120.280993215999928, 50.653629077000026 ], [ -120.28141712199999, 50.653638973000042 ], [ -120.28144825499993, 50.653099999000069 ], [ -120.281872154999959, 50.653109894000067 ], [ -120.281887717999965, 50.652840407000078 ], [ -120.282290096999972, 50.652849798000041 ], [ -120.282383734999911, 50.652115402000035 ], [ -120.283125559999945, 50.652153518000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "160.5", "sL_BldgLoss": "160.5", "sL_StrLoss": "160.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DECC847810B5EC0B5C4463040514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.17826403799998, 50.634443790000027 ], [ -120.182242654999982, 50.634651986000058 ], [ -120.17879025400002, 50.635218350000081 ], [ -120.17826403799998, 50.634443790000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7515834", "BldgCostT": "5183334", "sL_LossRatio": "1", "sL_AssetLoss": "694.1", "sL_BldgLoss": "694.1", "sL_StrLoss": "694.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E97EDB7B40E5EC004D1ACCFC9554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.226782069999942, 50.669737166000111 ], [ -120.226125983999978, 50.669462109000101 ], [ -120.227844350999959, 50.66955123000011 ], [ -120.227854620999963, 50.669376972000045 ], [ -120.22955073699994, 50.669417331000069 ], [ -120.229534863999959, 50.669686806000058 ], [ -120.230382928, 50.669706976000093 ], [ -120.230371250999951, 50.6699052700001 ], [ -120.235101751999963, 50.670150365000012 ], [ -120.235133268999959, 50.670385750000072 ], [ -120.23395281099999, 50.670426901000091 ], [ -120.230381897999933, 50.670425817000122 ], [ -120.229803621999949, 50.671157751000116 ], [ -120.229728632, 50.671252684000095 ], [ -120.227160336999958, 50.670758990000124 ], [ -120.227484972999918, 50.669892575000048 ], [ -120.226782069999942, 50.669737166000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25158167", "BldgCostT": "17086667", "sL_LossRatio": "1", "sL_AssetLoss": "2882.3", "sL_BldgLoss": "2882.3", "sL_StrLoss": "2882.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006012A03240F5EC0A42DF87E34534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.233982751999946, 50.648102768000108 ], [ -120.239623574999953, 50.648394970000069 ], [ -120.239163520999938, 50.651976293000132 ], [ -120.233522251999915, 50.651684068000101 ], [ -120.233982751999946, 50.648102768000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "69.8", "sL_BldgLoss": "69.8", "sL_StrLoss": "69.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8FEA299E1115EC0656B43E646564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.278528739999942, 50.674224006000067 ], [ -120.27855264899992, 50.67381084000008 ], [ -120.280248994999951, 50.673850463000093 ], [ -120.280233411999973, 50.674119949000065 ], [ -120.280657500999936, 50.674129851000011 ], [ -120.280656025, 50.674155392000067 ], [ -120.27996240899995, 50.674216550000054 ], [ -120.279350846999961, 50.674270510000035 ], [ -120.278528739999942, 50.674224006000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10693750", "BldgCostT": "7375000", "sL_LossRatio": "0.999989782606778", "sL_AssetLoss": "1331.06358", "sL_BldgLoss": "1331.04998", "sL_StrLoss": "1331", "sL_NStrLoss": "0.04998", "sL_ContLoss": "0.0136", "geom_point": "0101000020E61000007E2B0231830F5EC0803EBAA67A514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.240345647, 50.637746182000043 ], [ -120.240805459999962, 50.634164793000089 ], [ -120.242338757999931, 50.634244180000074 ], [ -120.242341123999921, 50.634279381000042 ], [ -120.242360427999984, 50.634566583000066 ], [ -120.242382011999908, 50.634887836000125 ], [ -120.242365465999953, 50.6364114880001 ], [ -120.242359661999927, 50.636941632000088 ], [ -120.243278018999987, 50.636992587000044 ], [ -120.243567374999927, 50.637008661000053 ], [ -120.243615597999977, 50.637012413000086 ], [ -120.244917766999919, 50.637113683000116 ], [ -120.245714757999963, 50.637142957000066 ], [ -120.246098223999951, 50.637157029000015 ], [ -120.245985211999979, 50.638038067000075 ], [ -120.240345647, 50.637746182000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24827084", "BldgCostT": "16858334", "sL_LossRatio": "0.999974747725787", "sL_AssetLoss": "3370.1043828", "sL_BldgLoss": "3370.01928", "sL_StrLoss": "3369.9", "sL_NStrLoss": "0.11928", "sL_ContLoss": "0.0851028", "geom_point": "0101000020E6100000794D9BB3360D5EC01F4828C72E514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.203875659999966, 50.632302532000082 ], [ -120.209514302999978, 50.63259626300006 ], [ -120.209052013999937, 50.636177529000072 ], [ -120.203412922999931, 50.635883775000117 ], [ -120.203875659999966, 50.632302532000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "1", "sL_AssetLoss": "745.4", "sL_BldgLoss": "745.4", "sL_StrLoss": "745.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001AFF788E8C115EC0241432C221524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.273766892999987, 50.640832164000116 ], [ -120.274345086999986, 50.640804412000108 ], [ -120.274593429, 50.640871836000088 ], [ -120.275209281999977, 50.641039039000077 ], [ -120.276002906999963, 50.641404342000094 ], [ -120.276985420999907, 50.64196860000002 ], [ -120.277097580999964, 50.642409586000099 ], [ -120.271706897999977, 50.642132132000022 ], [ -120.271819760999961, 50.641248380000022 ], [ -120.27248350499994, 50.64095552000007 ], [ -120.273266877999916, 50.640856158000062 ], [ -120.273766892999987, 50.640832164000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48862667", "BldgCostT": "31696667", "sL_LossRatio": "1", "sL_AssetLoss": "4277", "sL_BldgLoss": "4277", "sL_StrLoss": "4277", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007EC75B74130C5EC0984E0C4511524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.18556892099997, 50.643981872000026 ], [ -120.185936575999946, 50.641145849000047 ], [ -120.185387602000034, 50.641117153000103 ], [ -120.185443125999939, 50.640165331000063 ], [ -120.188024593999941, 50.637964419000077 ], [ -120.187607810999978, 50.637627786000067 ], [ -120.191372721999969, 50.637824471000059 ], [ -120.191005438000019, 50.640660522000076 ], [ -120.191672703999984, 50.64069536800011 ], [ -120.191208909999943, 50.644276525000073 ], [ -120.18556892099997, 50.643981872000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16719167", "BldgCostT": "11266667", "sL_LossRatio": "1", "sL_AssetLoss": "2023", "sL_BldgLoss": "2023", "sL_StrLoss": "2023", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D5A643BDF105EC0DA475D2162524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.260793223999912, 50.644690528000119 ], [ -120.261203541999947, 50.641483764000057 ], [ -120.262109356999957, 50.642256777000036 ], [ -120.262633076999961, 50.642330853000097 ], [ -120.265869398999953, 50.642788619000044 ], [ -120.266268817999915, 50.642766614 ], [ -120.266720086999953, 50.64274173899999 ], [ -120.266433792999933, 50.64498137600004 ], [ -120.260793223999912, 50.644690528000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28299334", "BldgCostT": "18573334", "sL_LossRatio": "1", "sL_AssetLoss": "2190.9", "sL_BldgLoss": "2190.9", "sL_StrLoss": "2190.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000087B6A506010F5EC054686A2368524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.231847803999955, 50.641866204000053 ], [ -120.237487829999935, 50.642158517000048 ], [ -120.23702767099999, 50.645739857000116 ], [ -120.231387197999979, 50.645447523000072 ], [ -120.231847803999955, 50.641866204000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136769752", "BldgCostT": "91115002", "sL_LossRatio": "1", "sL_AssetLoss": "12266", "sL_BldgLoss": "12266", "sL_StrLoss": "12266", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A1DCC71BEA0F5EC0E22C2E8659544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.227689450999961, 50.657769382 ], [ -120.228113373999946, 50.657779473000033 ], [ -120.228129246999956, 50.657509998000108 ], [ -120.227705325, 50.657499907000073 ], [ -120.227689450999961, 50.657769382 ], [ -120.22684160299994, 50.657749195000086 ], [ -120.226825720999955, 50.658018669000079 ], [ -120.226401795999962, 50.6580085740001 ], [ -120.226385911999941, 50.658278049000096 ], [ -120.225538056999966, 50.658257852000091 ], [ -120.2254745, 50.659335749000029 ], [ -120.224202691999949, 50.659305443000086 ], [ -120.224218588, 50.659035969000051 ], [ -120.223794654999963, 50.659025863000167 ], [ -120.223858247999956, 50.657947967000119 ], [ -120.224282170999942, 50.657958072000078 ], [ -120.224298066999935, 50.657688598000021 ], [ -120.223450223999961, 50.657668387000058 ], [ -120.22351382199993, 50.656590491000117 ], [ -120.223937733999904, 50.656600597000057 ], [ -120.223969525999948, 50.656061649999984 ], [ -120.224393434, 50.656071753000084 ], [ -120.224425221000018, 50.655532806000053 ], [ -120.224849123999945, 50.655542908000051 ], [ -120.224865012999942, 50.655273434000044 ], [ -120.226560615999944, 50.655313828000033 ], [ -120.226544734999933, 50.655583303000057 ], [ -120.22993597299994, 50.655664019000028 ], [ -120.229920110999899, 50.655933494000109 ], [ -120.232887472999977, 50.656004039000081 ], [ -120.232871627999941, 50.656273516000084 ], [ -120.234143364999937, 50.656303727000093 ], [ -120.234111688, 50.656842680000118 ], [ -120.236655199999944, 50.656903061000087 ], [ -120.236639374999982, 50.657172538000033 ], [ -120.23791114, 50.657202709000074 ], [ -120.237895323, 50.657472186000078 ], [ -120.240014949999932, 50.657522439000118 ], [ -120.239999143999938, 50.657791918000022 ], [ -120.240832199999957, 50.657811658000099 ], [ -120.240884517999987, 50.657404350000121 ], [ -120.24098427200002, 50.657409512000143 ], [ -120.241064145999985, 50.65678765300008 ], [ -120.243291148999944, 50.656902883000079 ], [ -120.243322755999912, 50.656656704000092 ], [ -120.248964712999936, 50.656948432000021 ], [ -120.248878899, 50.657617454000125 ], [ -120.249344644999923, 50.657641523000059 ], [ -120.249325303999967, 50.657792318000091 ], [ -120.250470518, 50.657851493000052 ], [ -120.250423926999986, 50.658214828000069 ], [ -120.252125888999956, 50.658302748000068 ], [ -120.252116784999956, 50.658373774000083 ], [ -120.253310601999928, 50.658435428000118 ], [ -120.253364944999959, 50.658011441000042 ], [ -120.258649211999924, 50.658284195000107 ], [ -120.25866792299999, 50.657963011000049 ], [ -120.260363669999904, 50.658002914000093 ], [ -120.260347982, 50.65827239700014 ], [ -120.26119586099999, 50.658292340000045 ], [ -120.261211545999956, 50.658022858000066 ], [ -120.261635484999942, 50.658032827000099 ], [ -120.261651166999926, 50.657763345000085 ], [ -120.263770847999965, 50.657813166000068 ], [ -120.263786515999968, 50.657543684000089 ], [ -120.265058321999945, 50.657573557000056 ], [ -120.265042658999946, 50.657843041000042 ], [ -120.265890535, 50.657862950000045 ], [ -120.26582790399999, 50.658940884000067 ], [ -120.268371594999977, 50.659000574000089 ], [ -120.268355951999951, 50.659270059000036 ], [ -120.268779902999938, 50.65928000200006 ], [ -120.268748619999911, 50.65981897000006 ], [ -120.270020490999968, 50.659848791000073 ], [ -120.26995795199997, 50.660926728000113 ], [ -120.26953398399999, 50.660916789000062 ], [ -120.269487069, 50.661725241000042 ], [ -120.269063094999979, 50.661715301000136 ], [ -120.269047451999953, 50.661984785000115 ], [ -120.26862347699992, 50.66197484200012 ], [ -120.268592188, 50.662513809000082 ], [ -120.268168207999963, 50.662503865000062 ], [ -120.268136914, 50.663042832000073 ], [ -120.266440972999987, 50.663003038000042 ], [ -120.266425315999982, 50.663272522000028 ], [ -120.265153355999956, 50.66324266000003 ], [ -120.265169020999963, 50.662973177000026 ], [ -120.263897068999938, 50.662943301000041 ], [ -120.263865725999921, 50.663482267000106 ], [ -120.263441738999958, 50.66347230500002 ], [ -120.26339471299994, 50.664280753000121 ], [ -120.262122728999941, 50.664250858000059 ], [ -120.262107046999986, 50.664520340000145 ], [ -120.261902356999926, 50.664515528000081 ], [ -120.261883783999977, 50.66293625600013 ], [ -120.262011294, 50.662106475000073 ], [ -120.262143069, 50.661221017000038 ], [ -120.262272749999937, 50.661195284000094 ], [ -120.26231876899999, 50.661112926000044 ], [ -120.262866106999979, 50.661141129000093 ], [ -120.263511891999954, 50.661110442000066 ], [ -120.263990272999962, 50.661122491000064 ], [ -120.264252154999923, 50.661139131000034 ], [ -120.264294252999946, 50.661141821000029 ], [ -120.265708639999971, 50.661231771000097 ], [ -120.265752850999917, 50.661019542000105 ], [ -120.26575021499994, 50.661001978000044 ], [ -120.265716589999954, 50.660775815000065 ], [ -120.26570013499996, 50.66066533300009 ], [ -120.265462819000021, 50.660378243000117 ], [ -120.265170615999963, 50.660164896000019 ], [ -120.26489349399999, 50.660028243000085 ], [ -120.264629683999914, 50.659898196000086 ], [ -120.264194305000018, 50.660082986000063 ], [ -120.263805704999953, 50.660179310000103 ], [ -120.263289491999956, 50.660273405000083 ], [ -120.262767620999966, 50.660302406000021 ], [ -120.261306261999977, 50.660207208000024 ], [ -120.259010733999986, 50.660057638000097 ], [ -120.258616762000017, 50.660031953000058 ], [ -120.254736694999977, 50.659778992000085 ], [ -120.254681907999952, 50.660096202000048 ], [ -120.249828619999931, 50.65977429400003 ], [ -120.24859810699999, 50.659404303000017 ], [ -120.246080611999957, 50.658961396000073 ], [ -120.243203715999954, 50.658453892000097 ], [ -120.234754743999957, 50.657150939000104 ], [ -120.23215871799998, 50.657334773000073 ], [ -120.231955526999968, 50.65733792100005 ], [ -120.231752187999945, 50.656903623000133 ], [ -120.231509060999926, 50.656887398000094 ], [ -120.230376613999937, 50.656811723000061 ], [ -120.230158863999961, 50.656864287000062 ], [ -120.229715760999937, 50.656915988000023 ], [ -120.230305219999977, 50.657826795000041 ], [ -120.230349695999948, 50.657987313000014 ], [ -120.22964572699999, 50.65786213000009 ], [ -120.229683857999987, 50.658365332000059 ], [ -120.229687912999935, 50.658418778000105 ], [ -120.229831541999943, 50.659591636000087 ], [ -120.231783088, 50.659561797000023 ], [ -120.23170731, 50.659770916000127 ], [ -120.231692477999985, 50.660023427000112 ], [ -120.23137793299999, 50.660015950000115 ], [ -120.231346220999953, 50.660554901000069 ], [ -120.230922268999976, 50.660544822000112 ], [ -120.230906411, 50.660814297000101 ], [ -120.227938751999886, 50.660743695000079 ], [ -120.22797050299998, 50.660204747000101 ], [ -120.226274720999967, 50.660164369000086 ], [ -120.22632237599997, 50.659355946000041 ], [ -120.226746313999939, 50.65936604300007 ], [ -120.226762195999981, 50.659096567000105 ], [ -120.227186130999939, 50.65910666300006 ], [ -120.227233767999948, 50.658298238000015 ], [ -120.227657698, 50.658308331000093 ], [ -120.227689450999961, 50.657769382 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30923500", "BldgCostT": "20830000", "sL_LossRatio": "1", "sL_AssetLoss": "2700.3", "sL_BldgLoss": "2700.3", "sL_StrLoss": "2700.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002AB6B4E066125EC00A866B9CEA534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.286455931999953, 50.656969906000064 ], [ -120.286464226999968, 50.656904810000093 ], [ -120.285213194999955, 50.656840572000064 ], [ -120.28524765799996, 50.656570174000137 ], [ -120.284404086999928, 50.65652685000007 ], [ -120.28444949499999, 50.656170616000111 ], [ -120.282849159999927, 50.656088408000166 ], [ -120.282892752999942, 50.655746503000017 ], [ -120.281927051999944, 50.655696884000058 ], [ -120.281981329999951, 50.655271246000012 ], [ -120.281747642999932, 50.655265791000055 ], [ -120.281749460999919, 50.655234287000077 ], [ -120.281801817999963, 50.65523474600009 ], [ -120.282171990999956, 50.655170845000072 ], [ -120.282892370999903, 50.654943815000067 ], [ -120.283342576999956, 50.654764156000084 ], [ -120.283433831999957, 50.654649888000058 ], [ -120.283441202999882, 50.654269043000049 ], [ -120.283523408999983, 50.654092114000072 ], [ -120.283930458000015, 50.653905737000109 ], [ -120.284173544999987, 50.653702818000077 ], [ -120.284325388999974, 50.653647547000034 ], [ -120.28463622, 50.653681533000089 ], [ -120.2846979709999, 50.653701809000019 ], [ -120.284906039999967, 50.653770188000117 ], [ -120.285201314999981, 50.653825931000064 ], [ -120.28562513299994, 50.653808939 ], [ -120.286987394999954, 50.653423752000059 ], [ -120.287564341999939, 50.653798548000097 ], [ -120.287825130999948, 50.654169732000092 ], [ -120.287976382999915, 50.654353240000063 ], [ -120.288164572999946, 50.654514293000048 ], [ -120.288401359999924, 50.654639109000087 ], [ -120.288671879999981, 50.654722387000028 ], [ -120.290485734999905, 50.655016429000042 ], [ -120.291223097999932, 50.655335451000035 ], [ -120.292281597999931, 50.65566372200005 ], [ -120.293213008999885, 50.655964740000044 ], [ -120.294206746999947, 50.656344627000081 ], [ -120.294618697999908, 50.656546224000117 ], [ -120.293400802999912, 50.656483775000076 ], [ -120.293379326999982, 50.65665252200008 ], [ -120.292183274999928, 50.656591182000071 ], [ -120.292098207, 50.657259451000144 ], [ -120.286455931999953, 50.656969906000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26671084", "BldgCostT": "17658334", "sL_LossRatio": "1", "sL_AssetLoss": "2473", "sL_BldgLoss": "2473", "sL_StrLoss": "2473", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006023E6E5720E5EC05FA5715ED2524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.223173189999926, 50.645107910000064 ], [ -120.228813566999946, 50.645400661000046 ], [ -120.22835268299994, 50.648981952000014 ], [ -120.222711861, 50.648689179000037 ], [ -120.223173189999926, 50.645107910000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.99999888826103", "sL_AssetLoss": "349.002788", "sL_BldgLoss": "349.0024", "sL_StrLoss": "349", "sL_NStrLoss": "0.0024", "sL_ContLoss": "0.000388", "geom_point": "0101000020E6100000223E87640E125EC0E84FB8AA2E564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.281082863, 50.674117753000104 ], [ -120.281175061999988, 50.672522835000038 ], [ -120.281982010999954, 50.672541669000076 ], [ -120.281978787999932, 50.672675559000041 ], [ -120.28256844400002, 50.67261056400006 ], [ -120.28328351899999, 50.672564666000035 ], [ -120.283171049999936, 50.673405007000113 ], [ -120.283098472999967, 50.673947568000045 ], [ -120.283000252999926, 50.673948641000045 ], [ -120.281979547999939, 50.674038680000059 ], [ -120.281082863, 50.674117753000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25793167", "BldgCostT": "17316667", "sL_LossRatio": "1", "sL_AssetLoss": "2066.6", "sL_BldgLoss": "2066.6", "sL_StrLoss": "2066.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE8DF32FB0105EC0674815C52B534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.258162325999976, 50.647837029000108 ], [ -120.263803271, 50.648128009000047 ], [ -120.263345148999946, 50.651709431000072 ], [ -120.257703756999931, 50.651418430000078 ], [ -120.258162325999976, 50.647837029000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8132083", "BldgCostT": "5608333", "sL_LossRatio": "0.999967576923317", "sL_AssetLoss": "1040.30843", "sL_BldgLoss": "1040.2747", "sL_StrLoss": "1040.1", "sL_NStrLoss": "0.1747", "sL_ContLoss": "0.03373", "geom_point": "0101000020E6100000BFA67B5B780E5EC0098A1F63EE554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.223085248999965, 50.671175364000121 ], [ -120.223324787999971, 50.669316769000019 ], [ -120.226125983999978, 50.669462109000101 ], [ -120.226782069999942, 50.669737166000111 ], [ -120.227484972999918, 50.669892575000048 ], [ -120.227160336999958, 50.670758990000124 ], [ -120.229728632, 50.671252684000095 ], [ -120.229803621999949, 50.671157751000116 ], [ -120.230381897999933, 50.670425817000122 ], [ -120.230007716000017, 50.671305994000129 ], [ -120.229720286999964, 50.671981966000089 ], [ -120.22941873799995, 50.672499501000061 ], [ -120.229350225999937, 50.672617128000084 ], [ -120.229058631999948, 50.672980253000084 ], [ -120.22893517699994, 50.673133960000023 ], [ -120.228704432999962, 50.673362623000109 ], [ -120.226962702999913, 50.67288109400009 ], [ -120.225727210999935, 50.672698784000026 ], [ -120.222920366999972, 50.672454594000094 ], [ -120.223085248999965, 50.671175364000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46686500", "BldgCostT": "31670000", "sL_LossRatio": "0.999998359200973", "sL_AssetLoss": "5936.13224", "sL_BldgLoss": "5936.1225", "sL_StrLoss": "5936", "sL_NStrLoss": "0.1225", "sL_ContLoss": "0.00974", "geom_point": "0101000020E6100000B158379C810C5EC0B13511EC2E554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.190531438000036, 50.670100011000102 ], [ -120.190799215999945, 50.669721302000063 ], [ -120.18939371899998, 50.669834900000076 ], [ -120.190877432999969, 50.669554144000067 ], [ -120.190925161999971, 50.669339851000053 ], [ -120.188984092999959, 50.669413817000105 ], [ -120.187617613999947, 50.669465877000057 ], [ -120.187402260999946, 50.669474062000049 ], [ -120.185767482999935, 50.669451780000124 ], [ -120.184724916999983, 50.669450097000016 ], [ -120.182295469999957, 50.669446103000084 ], [ -120.182271313999962, 50.669336689000019 ], [ -120.184696195999919, 50.669299689000098 ], [ -120.186868849999968, 50.669266477000093 ], [ -120.18707729, 50.669263308000055 ], [ -120.187629506999954, 50.66924734000002 ], [ -120.188299207999975, 50.669227980000095 ], [ -120.187914921999933, 50.669157429000037 ], [ -120.187618383999975, 50.669001337000068 ], [ -120.187580963999949, 50.668829942000073 ], [ -120.187552562999926, 50.668720295000107 ], [ -120.187256598999966, 50.668231643000084 ], [ -120.187198590999984, 50.668185352000073 ], [ -120.187099573999959, 50.668106286000089 ], [ -120.187937114999968, 50.667309996000029 ], [ -120.188111552999956, 50.667147851000088 ], [ -120.188389052, 50.666882774000086 ], [ -120.189281881999932, 50.666030034000045 ], [ -120.189446212999911, 50.665748365000141 ], [ -120.189481436999955, 50.665454600000039 ], [ -120.189377514999947, 50.665160749000087 ], [ -120.189145504999928, 50.664890832000054 ], [ -120.188818272, 50.664676374000102 ], [ -120.188527387999969, 50.664564738000095 ], [ -120.188087316999983, 50.66449723500007 ], [ -120.187542682999947, 50.664413771000078 ], [ -120.187118184999974, 50.664348701000101 ], [ -120.186570892999967, 50.664210204000085 ], [ -120.186039818999973, 50.663979709000053 ], [ -120.185766807999968, 50.663795905000057 ], [ -120.185501512999963, 50.663551033000012 ], [ -120.186175867999935, 50.663374216000129 ], [ -120.186167155999911, 50.663519865000119 ], [ -120.186537158999926, 50.663528804000102 ], [ -120.186570629999949, 50.663270706000048 ], [ -120.189405623999932, 50.662527293000089 ], [ -120.191610720999975, 50.661948959000028 ], [ -120.191105981999939, 50.661509865000106 ], [ -120.191072908999928, 50.661425805000093 ], [ -120.190478815999967, 50.660964225000065 ], [ -120.19045240399997, 50.660943688000025 ], [ -120.190450484999957, 50.660939574000047 ], [ -120.190110502999971, 50.659822385000062 ], [ -120.188742139999974, 50.658928873000022 ], [ -120.186489015999911, 50.655042534000067 ], [ -120.187784324999967, 50.655110203000056 ], [ -120.187564327999937, 50.656807254000071 ], [ -120.188689499999953, 50.656834422000038 ], [ -120.188705598999945, 50.656564956000118 ], [ -120.189977294999949, 50.656595648000042 ], [ -120.189993386999973, 50.656326182000036 ], [ -120.191688977999945, 50.656367085000099 ], [ -120.191672895999943, 50.656636551000076 ], [ -120.192096796999948, 50.656646773000034 ], [ -120.192048559999975, 50.657455173000123 ], [ -120.192472466999988, 50.657465394000084 ], [ -120.192456390999965, 50.657734861000066 ], [ -120.19288030099996, 50.657745079000101 ], [ -120.192864226999987, 50.658014547000036 ], [ -120.193288137999971, 50.658024764000032 ], [ -120.193272065999935, 50.658294231000148 ], [ -120.193695982999927, 50.658304447 ], [ -120.193679911999979, 50.658573914000087 ], [ -120.194527749999949, 50.658594343000082 ], [ -120.194511683999963, 50.658863810000085 ], [ -120.194935605999916, 50.658874021000045 ], [ -120.194919541000019, 50.659143489000037 ], [ -120.195343464999937, 50.659153699000036 ], [ -120.195327402999965, 50.659423167000099 ], [ -120.195751329999979, 50.659433375000042 ], [ -120.19568709, 50.660511245000087 ], [ -120.195263154999964, 50.660501035000117 ], [ -120.195247091999974, 50.660770502000062 ], [ -120.194823150999952, 50.660760292000113 ], [ -120.194807086999987, 50.661029759000023 ], [ -120.193111323999972, 50.66098889900011 ], [ -120.193095247999963, 50.661258365000066 ], [ -120.192671306999969, 50.661248147000109 ], [ -120.192606990999948, 50.662326013000026 ], [ -120.192374326999953, 50.662320405000045 ], [ -120.192085215999953, 50.664551958000068 ], [ -120.189510112999969, 50.664417545000035 ], [ -120.189490226999979, 50.664750434000062 ], [ -120.190057699999954, 50.664780059000051 ], [ -120.190043886999931, 50.664886624000125 ], [ -120.190737685, 50.664922840000088 ], [ -120.190590914999987, 50.666055354000058 ], [ -120.190743206999954, 50.666059028000056 ], [ -120.191116124999937, 50.665967763000019 ], [ -120.19136132499996, 50.665941863000107 ], [ -120.191573824999949, 50.665983463000074 ], [ -120.191638524999959, 50.666034862000096 ], [ -120.191669095999913, 50.666081358000028 ], [ -120.191957870999943, 50.666088322000064 ], [ -120.191893530999977, 50.667166186000067 ], [ -120.191719929999948, 50.667162000000104 ], [ -120.191670662999954, 50.66729183800004 ], [ -120.191919302999935, 50.66730481299999 ], [ -120.191762838999963, 50.668512305000043 ], [ -120.191813097999983, 50.668513517000058 ], [ -120.191797010999949, 50.668782982000081 ], [ -120.192470553999925, 50.668799221 ], [ -120.192726249999936, 50.666825654000071 ], [ -120.198369154999952, 50.66711993600007 ], [ -120.198203784999947, 50.668397582000111 ], [ -120.199885324999968, 50.668438023000085 ], [ -120.199869283999988, 50.668707491000063 ], [ -120.201141321999955, 50.668738067000014 ], [ -120.201157354999978, 50.668468599000036 ], [ -120.203701423999988, 50.668529710000101 ], [ -120.20371744299996, 50.668260241 ], [ -120.203750861999964, 50.668261044000076 ], [ -120.203889148999963, 50.667191613000028 ], [ -120.209532170999964, 50.667485331000108 ], [ -120.2091007399999, 50.670824836000087 ], [ -120.209069524999975, 50.671066447000086 ], [ -120.204497931999953, 50.670828520000029 ], [ -120.204286994999947, 50.670692111000029 ], [ -120.203621111999922, 50.670497004 ], [ -120.203466161, 50.670462594000071 ], [ -120.203507339999945, 50.670144171000089 ], [ -120.201061147999908, 50.67008540800002 ], [ -120.201077183999985, 50.66981594 ], [ -120.198029676999965, 50.6697426630001 ], [ -120.197997546999929, 50.669990875000032 ], [ -120.196060674999927, 50.670045494000064 ], [ -120.195011079999958, 50.670091091000174 ], [ -120.193445591999961, 50.66997290800002 ], [ -120.192311591999939, 50.670026067000023 ], [ -120.19233113, 50.66987527600002 ], [ -120.191732658999953, 50.669860847000116 ], [ -120.19172114099996, 50.670053741000061 ], [ -120.191288814999893, 50.670074002000028 ], [ -120.190531843999977, 50.670156988000066 ], [ -120.190531438000036, 50.670100011000102 ] ], [ [ -120.198173236999949, 50.66866670100012 ], [ -120.198176890999918, 50.66860535900009 ], [ -120.198168963999976, 50.668666597000055 ], [ -120.198173236999949, 50.66866670100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10580000", "BldgCostT": "6800000", "sL_LossRatio": "0.933979771625262", "sL_AssetLoss": "986.142696", "sL_BldgLoss": "921.03733", "sL_StrLoss": "897.30163", "sL_NStrLoss": "23.7357", "sL_ContLoss": "65.105366", "geom_point": "0101000020E610000066191C04E10D5EC0372ECA09E6554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.214032169999953, 50.67285981300008 ], [ -120.214071367999964, 50.672556171000068 ], [ -120.213230249999953, 50.672536048000026 ], [ -120.213278148999962, 50.671727636000078 ], [ -120.21412421499997, 50.67174787600009 ], [ -120.21417555299999, 50.671749104000106 ], [ -120.214488568999968, 50.669324164000024 ], [ -120.220131929, 50.669617345000027 ], [ -120.219965632999987, 50.670906930000065 ], [ -120.219772003999978, 50.672408386000079 ], [ -120.217970403999971, 50.67245950400013 ], [ -120.217015582000016, 50.672553504000028 ], [ -120.216513517999957, 50.672676008000089 ], [ -120.214032169999953, 50.67285981300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236534416", "BldgCostT": "153796666", "sL_LossRatio": "0.996549616390544", "sL_AssetLoss": "21938.531644", "sL_BldgLoss": "21862.835294", "sL_StrLoss": "21833.644694", "sL_NStrLoss": "29.1906", "sL_ContLoss": "75.69635", "geom_point": "0101000020E61000000C08294FCB0A5EC0D40769F85C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.150714048999959, 50.667209535000055 ], [ -120.146084129999977, 50.666249507000082 ], [ -120.143692044999966, 50.665806414000059 ], [ -120.139327400999932, 50.664868364 ], [ -120.131103598999985, 50.663100315000051 ], [ -120.12992866099998, 50.662847664 ], [ -120.129807783, 50.662612770000116 ], [ -120.129706927999948, 50.662416809000085 ], [ -120.13138898499993, 50.662772612000012 ], [ -120.133022210999926, 50.66311810200002 ], [ -120.135267728999978, 50.663543384000036 ], [ -120.135666510999926, 50.663618892000109 ], [ -120.136043388999965, 50.663691009000061 ], [ -120.136526639999957, 50.663806522000108 ], [ -120.138326525, 50.6642368400001 ], [ -120.139825187999946, 50.664595109000025 ], [ -120.143416689999967, 50.665367954000054 ], [ -120.143723579999971, 50.665433991000064 ], [ -120.147478693999986, 50.666066002 ], [ -120.148208118999918, 50.666081802000079 ], [ -120.149696316999965, 50.665879296000099 ], [ -120.150219509999914, 50.66580810600005 ], [ -120.154057103999932, 50.665285003000086 ], [ -120.154361, 50.66524445400006 ], [ -120.154478352999917, 50.665228804000122 ], [ -120.154528145999947, 50.665222167000096 ], [ -120.155904302999943, 50.665038602000045 ], [ -120.155987187999955, 50.665027322000093 ], [ -120.156028949999936, 50.665021628000027 ], [ -120.15605677899994, 50.665017836000061 ], [ -120.156812060999982, 50.664915033000092 ], [ -120.157270698000033, 50.664852591000042 ], [ -120.15818914, 50.664726686000058 ], [ -120.158687902999958, 50.664658292000112 ], [ -120.158858054999953, 50.664644876000068 ], [ -120.159455667999936, 50.664597776000051 ], [ -120.159889013999958, 50.664563593000047 ], [ -120.160888186999898, 50.664557514000066 ], [ -120.162998197999968, 50.664680803000074 ], [ -120.164114898, 50.6647763 ], [ -120.164357485999957, 50.664816563000088 ], [ -120.166567918999974, 50.665183364000093 ], [ -120.170736513999913, 50.665874993000017 ], [ -120.170818586999943, 50.665890658000059 ], [ -120.171556997999943, 50.666031601000093 ], [ -120.17233909199993, 50.666275283000111 ], [ -120.172864604999972, 50.666516999000095 ], [ -120.173230302999968, 50.66668518900007 ], [ -120.175678302999984, 50.667815707000045 ], [ -120.176076899999913, 50.667917603000063 ], [ -120.176548993000011, 50.668000910000053 ], [ -120.178387661000016, 50.668038533000107 ], [ -120.179264953999962, 50.668042045000036 ], [ -120.179504903999955, 50.668042881000126 ], [ -120.180112196999985, 50.668047589000096 ], [ -120.179690815999933, 50.667934519000077 ], [ -120.179454060999944, 50.667777927000017 ], [ -120.179253831999972, 50.667570061000028 ], [ -120.179141237999929, 50.667343357000071 ], [ -120.179179408999957, 50.667185043000131 ], [ -120.179202811999971, 50.667087900000112 ], [ -120.17973103099996, 50.666332580000081 ], [ -120.180054062999929, 50.666340402000102 ], [ -120.180037908999935, 50.666609866000108 ], [ -120.181309869999936, 50.666640659000073 ], [ -120.181326015999929, 50.666371194000085 ], [ -120.183445939999899, 50.666422483000119 ], [ -120.183462073, 50.66615301900007 ], [ -120.184196478999965, 50.66617077800008 ], [ -120.184410594, 50.664520430000024 ], [ -120.183139213999979, 50.664453987000066 ], [ -120.183134901999949, 50.664525979000096 ], [ -120.183982839999942, 50.664546486000106 ], [ -120.183918318999986, 50.665624343000111 ], [ -120.183494339999982, 50.665614090000091 ], [ -120.183478207999954, 50.665883554000075 ], [ -120.182206266000023, 50.665852787000041 ], [ -120.182254687999915, 50.665044395000024 ], [ -120.181830713999886, 50.665034136000024 ], [ -120.181854628999957, 50.664634941000067 ], [ -120.185501512999963, 50.663551033000012 ], [ -120.185766807999968, 50.663795905000057 ], [ -120.186039818999973, 50.663979709000053 ], [ -120.186570892999967, 50.664210204000085 ], [ -120.187118184999974, 50.664348701000101 ], [ -120.187542682999947, 50.664413771000078 ], [ -120.188087316999983, 50.66449723500007 ], [ -120.188527387999969, 50.664564738000095 ], [ -120.188818272, 50.664676374000102 ], [ -120.189145504999928, 50.664890832000054 ], [ -120.189377514999947, 50.665160749000087 ], [ -120.189481436999955, 50.665454600000039 ], [ -120.189446212999911, 50.665748365000141 ], [ -120.189281881999932, 50.666030034000045 ], [ -120.188389052, 50.666882774000086 ], [ -120.188111552999956, 50.667147851000088 ], [ -120.187937114999968, 50.667309996000029 ], [ -120.187099573999959, 50.668106286000089 ], [ -120.187198590999984, 50.668185352000073 ], [ -120.187256598999966, 50.668231643000084 ], [ -120.187552562999926, 50.668720295000107 ], [ -120.187580963999949, 50.668829942000073 ], [ -120.187618383999975, 50.669001337000068 ], [ -120.187914921999933, 50.669157429000037 ], [ -120.188299207999975, 50.669227980000095 ], [ -120.187629506999954, 50.66924734000002 ], [ -120.18707729, 50.669263308000055 ], [ -120.186868849999968, 50.669266477000093 ], [ -120.184696195999919, 50.669299689000098 ], [ -120.182271313999962, 50.669336689000019 ], [ -120.182295469999957, 50.669446103000084 ], [ -120.178744090999913, 50.669756161000088 ], [ -120.177429731999922, 50.669782053000048 ], [ -120.176457863999985, 50.66973402700004 ], [ -120.176180719999962, 50.669720318000039 ], [ -120.173826853999941, 50.669516689000069 ], [ -120.171728477999935, 50.669335129000054 ], [ -120.16848761599999, 50.669054616000096 ], [ -120.167055273999935, 50.668930607000064 ], [ -120.161415280000014, 50.668415879000115 ], [ -120.158734622999958, 50.66810236200007 ], [ -120.15811636699999, 50.668030049000045 ], [ -120.152986678999937, 50.667556977000075 ], [ -120.150714048999959, 50.667209535000055 ] ], [ [ -120.160877471999981, 50.667493614000094 ], [ -120.160881008999979, 50.667435005000065 ], [ -120.16045773899998, 50.667412798000065 ], [ -120.160453483999959, 50.667483277000017 ], [ -120.160877471999981, 50.667493614000094 ] ], [ [ -120.186104130999965, 50.66457359800004 ], [ -120.186134922999912, 50.664058795000116 ], [ -120.185824277999956, 50.664051289000035 ], [ -120.185820618999927, 50.664079504000043 ], [ -120.185039413999931, 50.664038689000051 ], [ -120.184977660999962, 50.664514747000098 ], [ -120.186104130999965, 50.66457359800004 ] ], [ [ -120.187374600999988, 50.664628450000073 ], [ -120.186964653999965, 50.664618549000046 ], [ -120.187373913999934, 50.664639924000063 ], [ -120.187374600999988, 50.664628450000073 ] ], [ [ -120.162214457999951, 50.666446779000104 ], [ -120.162215160999963, 50.666435119 ], [ -120.16170667499992, 50.66640844600002 ], [ -120.161668267999914, 50.666703324000068 ], [ -120.161774221999963, 50.666705907000043 ], [ -120.161790479999979, 50.666436447000045 ], [ -120.162214457999951, 50.666446779000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "186.8", "sL_BldgLoss": "186.8", "sL_StrLoss": "186.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007065A26B53085EC0DC0851DF2E534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.128215236999921, 50.649413004000046 ], [ -120.130598632999934, 50.649167034000129 ], [ -120.130936615999957, 50.649325797000046 ], [ -120.131239925, 50.64944212000016 ], [ -120.131069188999973, 50.650746604000119 ], [ -120.130155093999974, 50.650698380000073 ], [ -120.130118765999967, 50.650639983000111 ], [ -120.128215236999921, 50.649413004000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11691834", "BldgCostT": "8063334", "sL_LossRatio": "1", "sL_AssetLoss": "923.6", "sL_BldgLoss": "923.6", "sL_StrLoss": "923.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBA5CD1FF00A5EC067FA809BA0544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.168317941999959, 50.659213069000074 ], [ -120.173959729999979, 50.659508589000097 ], [ -120.173494329000022, 50.66308959200007 ], [ -120.167852094999944, 50.662794049000048 ], [ -120.168317941999959, 50.659213069000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13726667", "BldgCostT": "9466667", "sL_LossRatio": "0.999998325445608", "sL_AssetLoss": "1427.245368", "sL_BldgLoss": "1427.242978", "sL_StrLoss": "1427.200468", "sL_NStrLoss": "0.04251", "sL_ContLoss": "0.00239", "geom_point": "0101000020E61000001590B4232E0A5EC031399425E3544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.156584981999984, 50.663581773000082 ], [ -120.149921528999926, 50.663162403000044 ], [ -120.149254124999985, 50.663155408000065 ], [ -120.149270042999902, 50.663033436 ], [ -120.149302965999965, 50.663035166000029 ], [ -120.149405083999952, 50.662252737000074 ], [ -120.153962625999924, 50.662492248000042 ], [ -120.153979579999913, 50.6623622440001 ], [ -120.158735826999958, 50.662611996000095 ], [ -120.158741461999938, 50.662568754000041 ], [ -120.159362608999942, 50.662601356000046 ], [ -120.159365434999955, 50.662579668000028 ], [ -120.161090280999986, 50.662670180000084 ], [ -120.161092855999982, 50.662650409000065 ], [ -120.166735026999973, 50.662946294000065 ], [ -120.166729591999953, 50.66298806100005 ], [ -120.167466306999941, 50.663026674000093 ], [ -120.167321136999973, 50.664142406000011 ], [ -120.168720119999975, 50.664176427000086 ], [ -120.168710053999988, 50.66434365300006 ], [ -120.156584981999984, 50.663581773000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154979750", "BldgCostT": "102935000", "sL_LossRatio": "0.999999264422121", "sL_AssetLoss": "13948.21716", "sL_BldgLoss": "13948.2069", "sL_StrLoss": "13948.0077", "sL_NStrLoss": "0.1992", "sL_ContLoss": "0.01026", "geom_point": "0101000020E6100000013DA27CE00A5EC01B3192C1FA534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.181854628999957, 50.664634941000067 ], [ -120.181869443999986, 50.664387614000134 ], [ -120.180128054999955, 50.664296564000097 ], [ -120.179330616999948, 50.66425486000005 ], [ -120.179370107999915, 50.663950725000099 ], [ -120.179122130999971, 50.66393775500012 ], [ -120.179226642999964, 50.663132879000059 ], [ -120.177292624999922, 50.66303170700008 ], [ -120.177351396999896, 50.662579224000119 ], [ -120.17656713199996, 50.662538188000056 ], [ -120.176902156999986, 50.659959006000065 ], [ -120.177032281999942, 50.65895717000005 ], [ -120.177435662, 50.658978277000131 ], [ -120.177485882999946, 50.658591581000032 ], [ -120.178167257999959, 50.658627231000118 ], [ -120.178224073999914, 50.658189696000072 ], [ -120.178787459999924, 50.658219170000031 ], [ -120.178901192999916, 50.657343210000121 ], [ -120.178954471999987, 50.657345997000029 ], [ -120.179012115999939, 50.656902012000039 ], [ -120.180191495999964, 50.656963702000034 ], [ -120.180211525999951, 50.656629444000075 ], [ -120.179787628999961, 50.656619179000138 ], [ -120.179803777999922, 50.65634971500009 ], [ -120.178108206, 50.656308640000105 ], [ -120.178124363999942, 50.656039177000117 ], [ -120.177276583999941, 50.656018630000069 ], [ -120.177260420999986, 50.656288093000065 ], [ -120.176340154999963, 50.656265783000023 ], [ -120.175980163999924, 50.656400274000077 ], [ -120.175972574999918, 50.656526723000113 ], [ -120.175459236999956, 50.656514275000056 ], [ -120.175216925999962, 50.656565863000026 ], [ -120.17478252399998, 50.656632163000083 ], [ -120.173975824999928, 50.6566013630001 ], [ -120.173604823999966, 50.656552962000028 ], [ -120.173345935999961, 50.656462997000119 ], [ -120.173005323999959, 50.656454729000082 ], [ -120.173013025999921, 50.656326529000069 ], [ -120.172769123999942, 50.656196563000066 ], [ -120.172742396999979, 50.65617849000008 ], [ -120.172597621999955, 50.656174975000035 ], [ -120.172603072999934, 50.656084279000055 ], [ -120.172352824999976, 50.655915062000034 ], [ -120.172332752999978, 50.655898689 ], [ -120.171342152999941, 50.655874631000167 ], [ -120.171358351000023, 50.655605169000104 ], [ -120.170086700999917, 50.655574273000049 ], [ -120.170102903999918, 50.65530481200004 ], [ -120.169679022999929, 50.655294510000012 ], [ -120.16971143499994, 50.654755587000103 ], [ -120.168863684999963, 50.654734979000047 ], [ -120.168872163999978, 50.654594025000101 ], [ -120.168708624, 50.654569563000123 ], [ -120.168173020999944, 50.654448330000051 ], [ -120.167184406999979, 50.654424284000115 ], [ -120.167200625999911, 50.654154823000034 ], [ -120.166352888999953, 50.654134198000115 ], [ -120.166369112999945, 50.653864737000099 ], [ -120.165521380999948, 50.653844106000115 ], [ -120.1655376099999, 50.653574645000027 ], [ -120.165113747, 50.653564326000073 ], [ -120.165129977999968, 50.653294866000067 ], [ -120.164282257999943, 50.653274226000029 ], [ -120.164298491999986, 50.653004766000052 ], [ -120.16387463599996, 50.652994443000097 ], [ -120.163890872999971, 50.652724983000077 ], [ -120.163043162999926, 50.652704334000134 ], [ -120.163075647999904, 50.652165413000027 ], [ -120.162738048999969, 50.652157189000057 ], [ -120.162668362999966, 50.652692468000062 ], [ -120.162067525999987, 50.652660943000065 ], [ -120.162058939999937, 50.652726881 ], [ -120.161464439999932, 50.652695686000058 ], [ -120.16145481599996, 50.652769595000038 ], [ -120.160616102999924, 50.652725580000066 ], [ -120.160589387999906, 50.652930715000124 ], [ -120.160363669, 50.652918869000054 ], [ -120.160312998999984, 50.653307921000092 ], [ -120.158766852, 50.653226759000127 ], [ -120.158763174999976, 50.653287673000158 ], [ -120.158755826999979, 50.653409373000066 ], [ -120.159069953999932, 50.653417037000118 ], [ -120.159179686999963, 50.653419714000051 ], [ -120.159177211999989, 50.653460719000108 ], [ -120.159130889000025, 50.654228092000103 ], [ -120.157011558999983, 50.654176368 ], [ -120.157025434000019, 50.653946668000039 ], [ -120.156875406999973, 50.653938789000073 ], [ -120.156854593999938, 50.654098498000074 ], [ -120.15222388299999, 50.653855215000092 ], [ -120.152195791999986, 50.654070607000065 ], [ -120.148247160000011, 50.653863003000062 ], [ -120.148235113999959, 50.653955299000046 ], [ -120.14259419299999, 50.653658475000015 ], [ -120.142626757999949, 50.653409204000077 ], [ -120.141657078999955, 50.653358151000063 ], [ -120.141767391999949, 50.652513846000076 ], [ -120.141526233000022, 50.652501148000063 ], [ -120.141537070999931, 50.652418197000095 ], [ -120.138675344999967, 50.652267471000101 ], [ -120.138839827999959, 50.651009163000033 ], [ -120.140542682999978, 50.65106620600006 ], [ -120.141825705999977, 50.651157190000042 ], [ -120.142357000999979, 50.65125278600005 ], [ -120.144007575999979, 50.651274741000051 ], [ -120.144419295999981, 50.651280196000066 ], [ -120.144850403999953, 50.651316388000041 ], [ -120.145097304999965, 50.65127438400004 ], [ -120.145544498, 50.650969918000087 ], [ -120.146342996999948, 50.650128512000052 ], [ -120.146660609999941, 50.650251594000061 ], [ -120.14708060699999, 50.650285157000063 ], [ -120.148379105999979, 50.650388914000104 ], [ -120.14937171099993, 50.650510840000052 ], [ -120.149636809999919, 50.650543400000046 ], [ -120.150547905999957, 50.650687689000087 ], [ -120.151500094999946, 50.650930702000053 ], [ -120.152047422999914, 50.651023399000067 ], [ -120.153155706999911, 50.651071804000047 ], [ -120.155834071999948, 50.651198064000013 ], [ -120.156821783999987, 50.651648351000084 ], [ -120.156986471000025, 50.651650004000011 ], [ -120.158104638999959, 50.65166081600006 ], [ -120.160505900999937, 50.651684005000035 ], [ -120.160852515999977, 50.651660805000098 ], [ -120.16112429899999, 50.651590290000108 ], [ -120.162318378999942, 50.650597507000107 ], [ -120.163283196999956, 50.649795396000023 ], [ -120.163632585, 50.649314389000097 ], [ -120.163940521999947, 50.649457597000065 ], [ -120.165214292999934, 50.650394202000058 ], [ -120.165752798999975, 50.650728891000057 ], [ -120.167694088999937, 50.651653699000079 ], [ -120.168890702999974, 50.652114787000166 ], [ -120.169238299999961, 50.652302511000066 ], [ -120.170229415999984, 50.653208008000071 ], [ -120.171459294999977, 50.653948391000064 ], [ -120.171800866999916, 50.654060930000156 ], [ -120.171801101999961, 50.654061002000063 ], [ -120.172192005999946, 50.654112088000055 ], [ -120.173440911999975, 50.654083798000023 ], [ -120.173869289999956, 50.653989013000036 ], [ -120.174134597999938, 50.653826287000044 ], [ -120.174290127999924, 50.653619286000037 ], [ -120.174910589999925, 50.652793415000126 ], [ -120.174401282999938, 50.651303804000037 ], [ -120.174663594999942, 50.651348575000071 ], [ -120.174844593999936, 50.651397930000066 ], [ -120.17513857899999, 50.651450043000075 ], [ -120.175476572999955, 50.651476242000086 ], [ -120.175996122999905, 50.651542807000091 ], [ -120.176304226999918, 50.65159524500006 ], [ -120.17662646699992, 50.651648034000068 ], [ -120.176891134999963, 50.651717423000029 ], [ -120.17698845299995, 50.651746773000092 ], [ -120.177180293000021, 50.651850359000051 ], [ -120.177287947999957, 50.651942941000065 ], [ -120.177544542999954, 50.652147050000124 ], [ -120.177623912999977, 50.652238906000086 ], [ -120.177683799999954, 50.652420272000022 ], [ -120.177701798999962, 50.652591607000055 ], [ -120.17773505599996, 50.652745346000088 ], [ -120.177806369999985, 50.652971947000012 ], [ -120.177844443999945, 50.653044833000067 ], [ -120.178058658999973, 50.653247911000086 ], [ -120.17825817, 50.653459657000028 ], [ -120.178363675999947, 50.653588136000089 ], [ -120.178445207999943, 50.653644093000025 ], [ -120.178644742999921, 50.653855804000081 ], [ -120.178761179, 50.654038518000092 ], [ -120.178833568999934, 50.654247159000121 ], [ -120.178922233999941, 50.654420229000017 ], [ -120.17905706799999, 50.654531427000073 ], [ -120.179319583000037, 50.654636743000061 ], [ -120.179472865999983, 50.654676438000159 ], [ -120.179764463999959, 50.654726579000076 ], [ -120.179875504000023, 50.654746529000107 ], [ -120.179972992000017, 50.654757306000086 ], [ -120.180214965999966, 50.654764603000061 ], [ -120.18052879599999, 50.654764967000055 ], [ -120.180757032999935, 50.654734514000026 ], [ -120.181054806999981, 50.654723741000062 ], [ -120.181227033999946, 50.654682930000099 ], [ -120.181453031999965, 50.654661857000093 ], [ -120.181632601999965, 50.654583601000041 ], [ -120.181859894999945, 50.654889396000058 ], [ -120.18267399699999, 50.655804389000075 ], [ -120.182695479999921, 50.655821609000064 ], [ -120.18282024899996, 50.655921715000019 ], [ -120.183722214999946, 50.656645202000085 ], [ -120.184165905, 50.657055988000096 ], [ -120.18448944, 50.657337894000094 ], [ -120.184763216999912, 50.657576425000101 ], [ -120.18478212299999, 50.657592911000116 ], [ -120.184976477999925, 50.657889692000033 ], [ -120.185582868999973, 50.6579546930001 ], [ -120.186231132000032, 50.658186292000032 ], [ -120.187828980999953, 50.658757109000085 ], [ -120.188673123999976, 50.658927304000066 ], [ -120.188742139999974, 50.658928873000022 ], [ -120.190110502999971, 50.659822385000062 ], [ -120.190450484999957, 50.660939574000047 ], [ -120.19045240399997, 50.660943688000025 ], [ -120.190478815999967, 50.660964225000065 ], [ -120.191072908999928, 50.661425805000093 ], [ -120.191105981999939, 50.661509865000106 ], [ -120.191610720999975, 50.661948959000028 ], [ -120.189405623999932, 50.662527293000089 ], [ -120.186570629999949, 50.663270706000048 ], [ -120.18685111799999, 50.661107698000102 ], [ -120.186736136, 50.66110492100011 ], [ -120.186687799999945, 50.661913318000082 ], [ -120.186263852, 50.661903074000065 ], [ -120.186175867999935, 50.663374216000129 ], [ -120.185501512999963, 50.663551033000012 ], [ -120.181854628999957, 50.664634941000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "1", "sL_AssetLoss": "171.9", "sL_BldgLoss": "171.9", "sL_StrLoss": "171.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007C8D4DC0A9085EC02B47F1BF4F544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.131812286999917, 50.658000019000042 ], [ -120.137453681999972, 50.658297387000054 ], [ -120.137257418000019, 50.659798201000093 ], [ -120.134778331999911, 50.658991585000095 ], [ -120.131792447999928, 50.658151588000109 ], [ -120.131812286999917, 50.658000019000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "66", "sL_BldgLoss": "66", "sL_StrLoss": "66", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E0AD4C51A0A5EC0F4C9827022544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.157272653999939, 50.65688130300007 ], [ -120.158544325999941, 50.656912340000126 ], [ -120.158495510999941, 50.657720716000028 ], [ -120.157223817999935, 50.657689679000086 ], [ -120.157272653999939, 50.65688130300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "1", "sL_AssetLoss": "188", "sL_BldgLoss": "188", "sL_StrLoss": "188", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023C9FF268C0A5EC0876921F931544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.163533577999971, 50.658653106000052 ], [ -120.163631034999952, 50.657036345000058 ], [ -120.16405492899996, 50.657046670000106 ], [ -120.16407116699996, 50.656777209000019 ], [ -120.165766736999942, 50.656818490000028 ], [ -120.165734276999913, 50.657357410000031 ], [ -120.166158174, 50.657367726000075 ], [ -120.166093260999929, 50.658445569000023 ], [ -120.165669354999963, 50.658435252000075 ], [ -120.165653122999984, 50.658704713000091 ], [ -120.163533577999971, 50.658653106000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999997130230136", "sL_AssetLoss": "146.004739", "sL_BldgLoss": "146.00432", "sL_StrLoss": "146", "sL_NStrLoss": "0.00432", "sL_ContLoss": "0.000419", "geom_point": "0101000020E61000009ACDE330580B5EC05B608F8914554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.176335266999928, 50.664631168000028 ], [ -120.176351438999959, 50.664361705000076 ], [ -120.178047299, 50.66440281100008 ], [ -120.178031135, 50.664672274000154 ], [ -120.179303039999979, 50.664703087000063 ], [ -120.179284815999949, 50.665007022000083 ], [ -120.174631880999982, 50.66471526400003 ], [ -120.17463940099999, 50.664590038000021 ], [ -120.176335266999928, 50.664631168000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113149750", "BldgCostT": "77035000", "sL_LossRatio": "1", "sL_AssetLoss": "10493.8", "sL_BldgLoss": "10493.8", "sL_StrLoss": "10493.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000090E40BBD720B5EC0EF97CB1DE8524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.181859894999945, 50.654889396000058 ], [ -120.181632601999965, 50.654583601000041 ], [ -120.181453031999965, 50.654661857000093 ], [ -120.181227033999946, 50.654682930000099 ], [ -120.181054806999981, 50.654723741000062 ], [ -120.180757032999935, 50.654734514000026 ], [ -120.18052879599999, 50.654764967000055 ], [ -120.180214965999966, 50.654764603000061 ], [ -120.179972992000017, 50.654757306000086 ], [ -120.179875504000023, 50.654746529000107 ], [ -120.179764463999959, 50.654726579000076 ], [ -120.179472865999983, 50.654676438000159 ], [ -120.179319583000037, 50.654636743000061 ], [ -120.17905706799999, 50.654531427000073 ], [ -120.178922233999941, 50.654420229000017 ], [ -120.178833568999934, 50.654247159000121 ], [ -120.178761179, 50.654038518000092 ], [ -120.178644742999921, 50.653855804000081 ], [ -120.178445207999943, 50.653644093000025 ], [ -120.178363675999947, 50.653588136000089 ], [ -120.17825817, 50.653459657000028 ], [ -120.178058658999973, 50.653247911000086 ], [ -120.177844443999945, 50.653044833000067 ], [ -120.177806369999985, 50.652971947000012 ], [ -120.17773505599996, 50.652745346000088 ], [ -120.177701798999962, 50.652591607000055 ], [ -120.177683799999954, 50.652420272000022 ], [ -120.177623912999977, 50.652238906000086 ], [ -120.177544542999954, 50.652147050000124 ], [ -120.177287947999957, 50.651942941000065 ], [ -120.177180293000021, 50.651850359000051 ], [ -120.17698845299995, 50.651746773000092 ], [ -120.176891134999963, 50.651717423000029 ], [ -120.17662646699992, 50.651648034000068 ], [ -120.176304226999918, 50.65159524500006 ], [ -120.175996122999905, 50.651542807000091 ], [ -120.175476572999955, 50.651476242000086 ], [ -120.17513857899999, 50.651450043000075 ], [ -120.174844593999936, 50.651397930000066 ], [ -120.174663594999942, 50.651348575000071 ], [ -120.174401282999938, 50.651303804000037 ], [ -120.174225895999925, 50.651014318000072 ], [ -120.174176517999925, 50.650750293000065 ], [ -120.174236747999913, 50.649458152000065 ], [ -120.174244903999934, 50.649283786000069 ], [ -120.174761576999941, 50.649278674000044 ], [ -120.175170283999961, 50.649274604000041 ], [ -120.176174107999955, 50.649547997000077 ], [ -120.176977805999925, 50.649721601000124 ], [ -120.177170599999926, 50.649691188000112 ], [ -120.176433997999965, 50.648967610000078 ], [ -120.175980702999979, 50.648522889000084 ], [ -120.175724948999957, 50.648373274000086 ], [ -120.175525513999972, 50.648256594000088 ], [ -120.175380653999937, 50.648187208000046 ], [ -120.173404421999948, 50.647240601000078 ], [ -120.172305609999938, 50.646836005000104 ], [ -120.172013610999969, 50.646658500000107 ], [ -120.171534214999937, 50.646250301000116 ], [ -120.171051212999956, 50.645925704000064 ], [ -120.170608499999929, 50.64574929600014 ], [ -120.17034902099999, 50.645685004 ], [ -120.170067956999986, 50.645615405000065 ], [ -120.169856088999978, 50.645562900000122 ], [ -120.169115323999947, 50.645453671 ], [ -120.16907890799996, 50.645448280000117 ], [ -120.169089377999953, 50.645442129000067 ], [ -120.169195689999967, 50.645379406000131 ], [ -120.170032090999953, 50.644886209000049 ], [ -120.170938393999933, 50.644281108000094 ], [ -120.171168187999939, 50.644205701 ], [ -120.171471201999978, 50.644200902000129 ], [ -120.173099707999938, 50.644308690000031 ], [ -120.173949083999943, 50.64432620000013 ], [ -120.17413461799994, 50.64417720200003 ], [ -120.174124893999988, 50.643957331000081 ], [ -120.174087435999937, 50.643108647000069 ], [ -120.174086013, 50.64307589800012 ], [ -120.174197924999959, 50.642793399000013 ], [ -120.174994570999957, 50.641426634000041 ], [ -120.175047309999954, 50.641336203000051 ], [ -120.175275306999964, 50.641077697000078 ], [ -120.175499805999934, 50.640890279000104 ], [ -120.176054133999926, 50.640505219000033 ], [ -120.176155093999938, 50.640435087000107 ], [ -120.176279213999976, 50.640265887000055 ], [ -120.176333781999958, 50.640064105000107 ], [ -120.176213989999923, 50.639838800000071 ], [ -120.175435968, 50.639324627000093 ], [ -120.175146002999924, 50.639132989000096 ], [ -120.175043411, 50.639015896000039 ], [ -120.17505980299994, 50.638868008000081 ], [ -120.175250216999984, 50.638702207000044 ], [ -120.175472295999967, 50.638610195000126 ], [ -120.175694680999939, 50.638558686000074 ], [ -120.175793504999902, 50.638570220000069 ], [ -120.176017709999954, 50.638596402000125 ], [ -120.177116597999898, 50.638921593000127 ], [ -120.177326991999934, 50.638919094000116 ], [ -120.17745009, 50.638878719000104 ], [ -120.177479601999934, 50.638782905000028 ], [ -120.177449288999981, 50.638655109000041 ], [ -120.177277514999972, 50.638371196 ], [ -120.176806094999932, 50.637914906000063 ], [ -120.176630687999989, 50.637745095000078 ], [ -120.176435602999987, 50.637635534000054 ], [ -120.175975807999961, 50.637377296000054 ], [ -120.175634703999918, 50.6372170960001 ], [ -120.175742984999943, 50.636929797000093 ], [ -120.175911489999962, 50.636812407000093 ], [ -120.176149608999978, 50.636782488000073 ], [ -120.176397884999957, 50.636868984000017 ], [ -120.176536595999934, 50.636917316000059 ], [ -120.177565075999937, 50.637340201 ], [ -120.177756446999979, 50.63741888000007 ], [ -120.177978293999971, 50.637510099000117 ], [ -120.179079200000018, 50.638181612000096 ], [ -120.182259636999973, 50.639173064 ], [ -120.182155171999952, 50.639978445000025 ], [ -120.181089970999949, 50.639922724000044 ], [ -120.180946980999963, 50.641024870000066 ], [ -120.180610139999928, 50.641007248000129 ], [ -120.180435034999945, 50.642356779000096 ], [ -120.179741802999928, 50.642320508000097 ], [ -120.179482611999987, 50.644317705000041 ], [ -120.180747355999969, 50.644383874000013 ], [ -120.180282652999935, 50.647964970000039 ], [ -120.178348672999959, 50.647863782000073 ], [ -120.178267803999972, 50.648486708000121 ], [ -120.179000525999953, 50.64850446100008 ], [ -120.178989928999954, 50.648681274000069 ], [ -120.17933406, 50.648782396000058 ], [ -120.1806796799999, 50.648814983000079 ], [ -120.18065065399999, 50.649299579000051 ], [ -120.180822304999978, 50.649358147000086 ], [ -120.181495061999939, 50.64937443200003 ], [ -120.181480615999959, 50.649615703000052 ], [ -120.181546595000015, 50.649645534000037 ], [ -120.181902762, 50.649654155000057 ], [ -120.181893668999948, 50.649806010000056 ], [ -120.182146917999958, 50.649929918000069 ], [ -120.183158137999939, 50.649954383000129 ], [ -120.183134993999985, 50.650341114000078 ], [ -120.183495425, 50.650464962000065 ], [ -120.183579477999956, 50.650504284000093 ], [ -120.183973569999935, 50.650513815000053 ], [ -120.183963394999978, 50.650683889000078 ], [ -120.184187759999972, 50.650788851000115 ], [ -120.184381292999944, 50.650793530000058 ], [ -120.184374410999979, 50.65090859 ], [ -120.184598523999938, 50.651063863000047 ], [ -120.184600952999958, 50.651068696000081 ], [ -120.184789021999933, 50.651073243000042 ], [ -120.184724549999899, 50.652151104000041 ], [ -120.184510817999964, 50.652145937000057 ], [ -120.184349324, 50.652443663000021 ], [ -120.184276634999918, 50.652542959000087 ], [ -120.184268451000023, 50.652679786000064 ], [ -120.184692312999942, 50.652690034000081 ], [ -120.184557617999971, 50.654941607000147 ], [ -120.186489015999911, 50.655042534000067 ], [ -120.188742139999974, 50.658928873000022 ], [ -120.188673123999976, 50.658927304000066 ], [ -120.187828980999953, 50.658757109000085 ], [ -120.186231132000032, 50.658186292000032 ], [ -120.185582868999973, 50.6579546930001 ], [ -120.184976477999925, 50.657889692000033 ], [ -120.18478212299999, 50.657592911000116 ], [ -120.184763216999912, 50.657576425000101 ], [ -120.18448944, 50.657337894000094 ], [ -120.184165905, 50.657055988000096 ], [ -120.183722214999946, 50.656645202000085 ], [ -120.18282024899996, 50.655921715000019 ], [ -120.182695479999921, 50.655821609000064 ], [ -120.18267399699999, 50.655804389000075 ], [ -120.181859894999945, 50.654889396000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130557561", "BldgCostT": "88628190", "sL_LossRatio": "0.999998081869242", "sL_AssetLoss": "14441.1427", "sL_BldgLoss": "14441.115", "sL_StrLoss": "14441", "sL_NStrLoss": "0.115", "sL_ContLoss": "0.0277", "geom_point": "0101000020E6100000F08AE07FEB0A5EC0B4E55C8A2B534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.165904280999911, 50.648789898000111 ], [ -120.166103292999935, 50.648569596000094 ], [ -120.16622006299994, 50.648430078000054 ], [ -120.166401401999977, 50.648213415000043 ], [ -120.16670551599999, 50.647850058000145 ], [ -120.166886681999983, 50.647633589000073 ], [ -120.167168602999936, 50.647179709000113 ], [ -120.167892885999933, 50.64657771100012 ], [ -120.168599121999989, 50.645808005000077 ], [ -120.16907890799996, 50.645448280000117 ], [ -120.169115323999947, 50.645453671 ], [ -120.169856088999978, 50.645562900000122 ], [ -120.170067956999986, 50.645615405000065 ], [ -120.17034902099999, 50.645685004 ], [ -120.170608499999929, 50.64574929600014 ], [ -120.171051212999956, 50.645925704000064 ], [ -120.171534214999937, 50.646250301000116 ], [ -120.172013610999969, 50.646658500000107 ], [ -120.172305609999938, 50.646836005000104 ], [ -120.173404421999948, 50.647240601000078 ], [ -120.175380653999937, 50.648187208000046 ], [ -120.175525513999972, 50.648256594000088 ], [ -120.175724948999957, 50.648373274000086 ], [ -120.175980702999979, 50.648522889000084 ], [ -120.176433997999965, 50.648967610000078 ], [ -120.177170599999926, 50.649691188000112 ], [ -120.176977805999925, 50.649721601000124 ], [ -120.176174107999955, 50.649547997000077 ], [ -120.175170283999961, 50.649274604000041 ], [ -120.174761576999941, 50.649278674000044 ], [ -120.174244903999934, 50.649283786000069 ], [ -120.174236747999913, 50.649458152000065 ], [ -120.174176517999925, 50.650750293000065 ], [ -120.174225895999925, 50.651014318000072 ], [ -120.174401282999938, 50.651303804000037 ], [ -120.174910589999925, 50.652793415000126 ], [ -120.174290127999924, 50.653619286000037 ], [ -120.174134597999938, 50.653826287000044 ], [ -120.173869289999956, 50.653989013000036 ], [ -120.173440911999975, 50.654083798000023 ], [ -120.172192005999946, 50.654112088000055 ], [ -120.171801101999961, 50.654061002000063 ], [ -120.171800866999916, 50.654060930000156 ], [ -120.171459294999977, 50.653948391000064 ], [ -120.170229415999984, 50.653208008000071 ], [ -120.169238299999961, 50.652302511000066 ], [ -120.168890702999974, 50.652114787000166 ], [ -120.167694088999937, 50.651653699000079 ], [ -120.165752798999975, 50.650728891000057 ], [ -120.165214292999934, 50.650394202000058 ], [ -120.163940521999947, 50.649457597000065 ], [ -120.163632585, 50.649314389000097 ], [ -120.163860380999949, 50.649167705000089 ], [ -120.164182695999912, 50.649091705000075 ], [ -120.165377016999926, 50.64902370700009 ], [ -120.165677801999934, 50.648926802000055 ], [ -120.165904280999911, 50.648789898000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131973918", "BldgCostT": "89281668", "sL_LossRatio": "1", "sL_AssetLoss": "13998.4", "sL_BldgLoss": "13998.4", "sL_StrLoss": "13998.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5112B8A740A5EC0CF7B52DC27524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.156821783999987, 50.651648351000084 ], [ -120.155834071999948, 50.651198064000013 ], [ -120.153155706999911, 50.651071804000047 ], [ -120.152047422999914, 50.651023399000067 ], [ -120.151500094999946, 50.650930702000053 ], [ -120.150547905999957, 50.650687689000087 ], [ -120.149636809999919, 50.650543400000046 ], [ -120.14937171099993, 50.650510840000052 ], [ -120.148379105999979, 50.650388914000104 ], [ -120.14708060699999, 50.650285157000063 ], [ -120.146660609999941, 50.650251594000061 ], [ -120.146342996999948, 50.650128512000052 ], [ -120.146138586999925, 50.650008695000103 ], [ -120.145896916999931, 50.649717488000057 ], [ -120.14567207499999, 50.649341067000137 ], [ -120.144391777999957, 50.647197017000046 ], [ -120.143700012999957, 50.646038543000053 ], [ -120.143068310999951, 50.644980500000088 ], [ -120.142971057999929, 50.644579217000029 ], [ -120.142720236999978, 50.643544163000051 ], [ -120.147401931999966, 50.643790586000058 ], [ -120.147344314999941, 50.64423209300007 ], [ -120.148438527999929, 50.644289659000037 ], [ -120.14817624699999, 50.646299724000045 ], [ -120.14842959799995, 50.646313051000078 ], [ -120.148637826999973, 50.644717179000104 ], [ -120.150064988999944, 50.644792241000104 ], [ -120.150097172999949, 50.644545512000022 ], [ -120.152448245999949, 50.644669127000029 ], [ -120.152490981999932, 50.644341368000063 ], [ -120.158130798999963, 50.644637694000068 ], [ -120.158126429999982, 50.644671231000075 ], [ -120.15931916199996, 50.644733861000127 ], [ -120.159318953999929, 50.644735457000081 ], [ -120.162241764999976, 50.644888882000075 ], [ -120.162204258999935, 50.645177015000094 ], [ -120.163333149999971, 50.645236252000075 ], [ -120.163164214999966, 50.646534238000079 ], [ -120.163168442999932, 50.646534459000044 ], [ -120.163096860999971, 50.647084424000113 ], [ -120.163800559, 50.64712134300013 ], [ -120.163774052999941, 50.647325020000061 ], [ -120.163791775999954, 50.647325452000054 ], [ -120.163784635999903, 50.647443953000057 ], [ -120.165224623999976, 50.64762406300008 ], [ -120.165523324999953, 50.647632962000074 ], [ -120.165897881999967, 50.647591809000097 ], [ -120.165910812, 50.647377046000038 ], [ -120.165999844999988, 50.64737921300005 ], [ -120.166167796999943, 50.646088168000041 ], [ -120.166045064999949, 50.646081732000049 ], [ -120.166510882999916, 50.642500688000055 ], [ -120.167122000999896, 50.64253273500001 ], [ -120.167179878999946, 50.642087703000094 ], [ -120.168282226999963, 50.642145502000112 ], [ -120.16832284399996, 50.641833128 ], [ -120.169355158999949, 50.641887246000046 ], [ -120.169361098999929, 50.641841553000106 ], [ -120.169959178999989, 50.641872902000024 ], [ -120.170019093999954, 50.641411967000053 ], [ -120.170579556999911, 50.641441341000117 ], [ -120.17070912, 50.640444481000046 ], [ -120.171115168999961, 50.640465760000033 ], [ -120.171185330999904, 50.639925891000054 ], [ -120.171623150999949, 50.639948833000105 ], [ -120.171693337999969, 50.639408701000086 ], [ -120.172043457999948, 50.639427047000062 ], [ -120.172107245999911, 50.638936110000053 ], [ -120.172485593999937, 50.638955934000059 ], [ -120.172667389999958, 50.637556632000091 ], [ -120.171595543999942, 50.637530601000016 ], [ -120.171611726999956, 50.637261138000035 ], [ -120.171188007999959, 50.63725084400005 ], [ -120.171204196999952, 50.636981381000098 ], [ -120.170356764999923, 50.636960789000057 ], [ -120.170372956, 50.636691327000065 ], [ -120.169949242999934, 50.636681029000108 ], [ -120.169965437999949, 50.636411566000035 ], [ -120.16911801599997, 50.6363909660001 ], [ -120.169134213999897, 50.63612150400013 ], [ -120.168286800999965, 50.636100898000073 ], [ -120.168335406999944, 50.635292511000081 ], [ -120.168759107999946, 50.635302814000042 ], [ -120.168937295, 50.632338729000054 ], [ -120.168089947999974, 50.632318122000122 ], [ -120.168106148999982, 50.632048661000034 ], [ -120.167682477999946, 50.632038355000056 ], [ -120.167698681999937, 50.631768892000117 ], [ -120.166851347999952, 50.63174827700005 ], [ -120.166964803999932, 50.629862042000127 ], [ -120.167388454999951, 50.629872350000014 ], [ -120.167420864999968, 50.629333426000116 ], [ -120.166573573000022, 50.629312809000105 ], [ -120.166622197999942, 50.628504423000081 ], [ -120.16704583799995, 50.628514731000045 ], [ -120.167078246999921, 50.627975807000084 ], [ -120.167501880999936, 50.627986114000102 ], [ -120.167534286999967, 50.627447189000108 ], [ -120.167770102999967, 50.627452927000093 ], [ -120.167991582999946, 50.62574908400012 ], [ -120.173629170999902, 50.626044633000063 ], [ -120.173387409999947, 50.627906271000022 ], [ -120.174116673999961, 50.627944481000021 ], [ -120.174111408999977, 50.628330296000058 ], [ -120.174280846000016, 50.628579778000052 ], [ -120.173896631, 50.631538456000044 ], [ -120.171115576999981, 50.631392721000061 ], [ -120.171071850999965, 50.632120755000123 ], [ -120.170648177999965, 50.632110461000103 ], [ -120.170615803999951, 50.632649386000061 ], [ -120.171039481, 50.632659681000121 ], [ -120.170877613, 50.635354310000103 ], [ -120.170453912, 50.635344013000086 ], [ -120.170437720999942, 50.635613477000071 ], [ -120.170861424999941, 50.635623772000073 ], [ -120.170845236999966, 50.635893236000058 ], [ -120.171268942999944, 50.635903529000061 ], [ -120.17125275699999, 50.636172992000091 ], [ -120.17167646599998, 50.636183285000079 ], [ -120.17166028099993, 50.636452748000075 ], [ -120.172807179999921, 50.636480603000081 ], [ -120.172929105999984, 50.635542021000077 ], [ -120.172932119999984, 50.635542179000012 ], [ -120.173058856999958, 50.634566521000124 ], [ -120.176777032999922, 50.634761268000013 ], [ -120.176828004999948, 50.634368609000063 ], [ -120.17826403799998, 50.634443790000027 ], [ -120.17879025400002, 50.635218350000081 ], [ -120.182242654999982, 50.634651986000058 ], [ -120.182466731999966, 50.634663707000072 ], [ -120.182244442999945, 50.636377681000056 ], [ -120.182619643999914, 50.636397307000017 ], [ -120.182259636999973, 50.639173064 ], [ -120.179079200000018, 50.638181612000096 ], [ -120.177978293999971, 50.637510099000117 ], [ -120.177756446999979, 50.63741888000007 ], [ -120.177565075999937, 50.637340201 ], [ -120.176536595999934, 50.636917316000059 ], [ -120.176397884999957, 50.636868984000017 ], [ -120.176149608999978, 50.636782488000073 ], [ -120.175911489999962, 50.636812407000093 ], [ -120.175742984999943, 50.636929797000093 ], [ -120.175634703999918, 50.6372170960001 ], [ -120.175975807999961, 50.637377296000054 ], [ -120.176435602999987, 50.637635534000054 ], [ -120.176630687999989, 50.637745095000078 ], [ -120.176806094999932, 50.637914906000063 ], [ -120.177277514999972, 50.638371196 ], [ -120.177449288999981, 50.638655109000041 ], [ -120.177479601999934, 50.638782905000028 ], [ -120.17745009, 50.638878719000104 ], [ -120.177326991999934, 50.638919094000116 ], [ -120.177116597999898, 50.638921593000127 ], [ -120.176017709999954, 50.638596402000125 ], [ -120.175793504999902, 50.638570220000069 ], [ -120.175694680999939, 50.638558686000074 ], [ -120.175472295999967, 50.638610195000126 ], [ -120.175250216999984, 50.638702207000044 ], [ -120.17505980299994, 50.638868008000081 ], [ -120.175043411, 50.639015896000039 ], [ -120.175146002999924, 50.639132989000096 ], [ -120.175435968, 50.639324627000093 ], [ -120.176213989999923, 50.639838800000071 ], [ -120.176333781999958, 50.640064105000107 ], [ -120.176279213999976, 50.640265887000055 ], [ -120.176155093999938, 50.640435087000107 ], [ -120.176054133999926, 50.640505219000033 ], [ -120.175499805999934, 50.640890279000104 ], [ -120.175275306999964, 50.641077697000078 ], [ -120.175047309999954, 50.641336203000051 ], [ -120.174994570999957, 50.641426634000041 ], [ -120.174197924999959, 50.642793399000013 ], [ -120.174086013, 50.64307589800012 ], [ -120.174087435999937, 50.643108647000069 ], [ -120.174124893999988, 50.643957331000081 ], [ -120.17413461799994, 50.64417720200003 ], [ -120.173949083999943, 50.64432620000013 ], [ -120.173099707999938, 50.644308690000031 ], [ -120.171471201999978, 50.644200902000129 ], [ -120.171168187999939, 50.644205701 ], [ -120.170938393999933, 50.644281108000094 ], [ -120.170032090999953, 50.644886209000049 ], [ -120.169195689999967, 50.645379406000131 ], [ -120.169089377999953, 50.645442129000067 ], [ -120.16907890799996, 50.645448280000117 ], [ -120.168599121999989, 50.645808005000077 ], [ -120.167892885999933, 50.64657771100012 ], [ -120.167168602999936, 50.647179709000113 ], [ -120.166886681999983, 50.647633589000073 ], [ -120.16670551599999, 50.647850058000145 ], [ -120.166401401999977, 50.648213415000043 ], [ -120.16622006299994, 50.648430078000054 ], [ -120.166103292999935, 50.648569596000094 ], [ -120.165904280999911, 50.648789898000111 ], [ -120.165677801999934, 50.648926802000055 ], [ -120.165377016999926, 50.64902370700009 ], [ -120.164182695999912, 50.649091705000075 ], [ -120.163860380999949, 50.649167705000089 ], [ -120.163632585, 50.649314389000097 ], [ -120.163283196999956, 50.649795396000023 ], [ -120.162318378999942, 50.650597507000107 ], [ -120.16112429899999, 50.651590290000108 ], [ -120.160852515999977, 50.651660805000098 ], [ -120.160505900999937, 50.651684005000035 ], [ -120.158104638999959, 50.65166081600006 ], [ -120.156986471000025, 50.651650004000011 ], [ -120.156821783999987, 50.651648351000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.8", "sL_BldgLoss": "168.8", "sL_StrLoss": "168.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC6FA3B7EE0B5EC08381AD33BA514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.185733539999944, 50.637529823000143 ], [ -120.187607810999978, 50.637627786000067 ], [ -120.188024593999941, 50.637964419000077 ], [ -120.185443125999939, 50.640165331000063 ], [ -120.185393887999965, 50.640149985000043 ], [ -120.185733539999944, 50.637529823000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.999989812950025", "sL_AssetLoss": "819.079127", "sL_BldgLoss": "819.070783", "sL_StrLoss": "819.000283", "sL_NStrLoss": "0.0705", "sL_ContLoss": "0.008344", "geom_point": "0101000020E6100000B388BC40A4085EC0A8395883A0504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.133391404999955, 50.633112784000055 ], [ -120.13420420199995, 50.631357384000061 ], [ -120.134401604999979, 50.63070529200013 ], [ -120.134395483999953, 50.630603601000089 ], [ -120.134337314999982, 50.629634313000018 ], [ -120.134275698999957, 50.62860728900003 ], [ -120.134081100999978, 50.628177390000069 ], [ -120.133947585999934, 50.627882387000078 ], [ -120.134083423, 50.627130952000044 ], [ -120.134132407999942, 50.626860003000083 ], [ -120.13466095699998, 50.625818746000107 ], [ -120.136507716999986, 50.625916148000073 ], [ -120.136225410999913, 50.628076165000017 ], [ -120.136293571999914, 50.628079760000055 ], [ -120.13582549599991, 50.63166073900004 ], [ -120.134694904999961, 50.631601113000059 ], [ -120.13466699599995, 50.631814570000074 ], [ -120.135649453, 50.631866384000055 ], [ -120.135298796999948, 50.634548574000043 ], [ -120.135231683999962, 50.634516894000065 ], [ -120.13465490699997, 50.634336889000018 ], [ -120.133966221999955, 50.634203824000068 ], [ -120.133858900999911, 50.634183094000051 ], [ -120.133417107999946, 50.633328688000113 ], [ -120.133391404999955, 50.633112784000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10079167", "BldgCostT": "6741667", "sL_LossRatio": "0.972815080763792", "sL_AssetLoss": "912.270505", "sL_BldgLoss": "887.470505", "sL_StrLoss": "878.500505", "sL_NStrLoss": "8.97", "sL_ContLoss": "24.8", "geom_point": "0101000020E61000006AC9A14D27095EC021B0EE2F6D514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.140087189999974, 50.6343638560001 ], [ -120.145725673999891, 50.634660814000028 ], [ -120.145258280999954, 50.638241805000057 ], [ -120.141896652999932, 50.638064796000073 ], [ -120.141556500999954, 50.637264308000098 ], [ -120.14129658899999, 50.636873792000074 ], [ -120.14089638199998, 50.636536308000096 ], [ -120.140517899999978, 50.636304495000083 ], [ -120.139874637999952, 50.635990863000117 ], [ -120.140087189999974, 50.6343638560001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.893972862101609", "sL_AssetLoss": "0.003169", "sL_BldgLoss": "0.002833", "sL_StrLoss": "0.000133", "sL_NStrLoss": "0.0027", "sL_ContLoss": "0.000336", "geom_point": "0101000020E6100000799E0D33D3055EC06A7B47CF25544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.090201177, 50.6568437930001 ], [ -120.09189663899997, 50.656886147000058 ], [ -120.091847773999959, 50.657676785000071 ], [ -120.091830026999929, 50.657963919000103 ], [ -120.09013452899994, 50.65792156400007 ], [ -120.090163940999943, 50.657445923000083 ], [ -120.090201177, 50.6568437930001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7448833", "BldgCostT": "4873333", "sL_LossRatio": "0.999978394379623", "sL_AssetLoss": "1152.4779", "sL_BldgLoss": "1152.453", "sL_StrLoss": "1152.3", "sL_NStrLoss": "0.153", "sL_ContLoss": "0.0249", "geom_point": "0101000020E6100000E36BAE1EE0035EC0CBA8090D8A544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.057959015999984, 50.662289139000045 ], [ -120.058072409999951, 50.661433716000026 ], [ -120.057384269999929, 50.661416330000101 ], [ -120.057428628999943, 50.661055530000077 ], [ -120.056018066999954, 50.660382717000076 ], [ -120.056076641999965, 50.659446626000076 ], [ -120.056081525999971, 50.65936856200004 ], [ -120.05607071499999, 50.659202118000074 ], [ -120.056346581999946, 50.65918244100007 ], [ -120.058218962999945, 50.659133278000084 ], [ -120.05822426499999, 50.659048491000071 ], [ -120.059013301999954, 50.658992192000071 ], [ -120.06011135299994, 50.658786606000021 ], [ -120.060637022999927, 50.65879987700005 ], [ -120.061148809999978, 50.658786424000091 ], [ -120.061191263999945, 50.658465963000019 ], [ -120.061284597999972, 50.658436798000096 ], [ -120.061808791999937, 50.658363220000034 ], [ -120.061882995999937, 50.658352804000067 ], [ -120.062835077, 50.658297196000085 ], [ -120.06392338199997, 50.658310427000103 ], [ -120.063887743999942, 50.658698077000054 ], [ -120.063884919999978, 50.658709115000079 ], [ -120.063859453999967, 50.660526048000108 ], [ -120.063839440999942, 50.661954051000066 ], [ -120.063684168999941, 50.661958137000035 ], [ -120.063600457999968, 50.662590241000046 ], [ -120.057959015999984, 50.662289139000045 ] ], [ [ -120.058077539999914, 50.661395013000124 ], [ -120.058090720999957, 50.661295576000093 ], [ -120.05808374599998, 50.661295759000048 ], [ -120.058077539999914, 50.661395013000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46584834", "BldgCostT": "29708334", "sL_LossRatio": "0.987507640296728", "sL_AssetLoss": "3793.0464", "sL_BldgLoss": "3745.6623", "sL_StrLoss": "3727.9373", "sL_NStrLoss": "17.725", "sL_ContLoss": "47.3841", "geom_point": "0101000020E6100000EFF2103A26075EC0419049675C544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.128852533999961, 50.663470197 ], [ -120.128885422999986, 50.662931294000046 ], [ -120.125493956999918, 50.662847630000016 ], [ -120.125510421999977, 50.662578179000036 ], [ -120.123814704999972, 50.662536309000139 ], [ -120.123831177999961, 50.662266859000098 ], [ -120.121711550000015, 50.662214489000064 ], [ -120.121728033999929, 50.661945039000038 ], [ -120.115793143999937, 50.661798199000032 ], [ -120.115826178999953, 50.66125930200009 ], [ -120.11370661200003, 50.661206788000051 ], [ -120.113723141999984, 50.660937339000093 ], [ -120.111603592999984, 50.660884786000032 ], [ -120.111620132999931, 50.660615338000049 ], [ -120.109076697999939, 50.660552225000082 ], [ -120.109060140999972, 50.660821672000132 ], [ -120.107160243999942, 50.660774491000048 ], [ -120.106522487999953, 50.660664374000099 ], [ -120.106533270999989, 50.660489055000063 ], [ -120.106109365999927, 50.660478522000055 ], [ -120.106125939999941, 50.660209075000111 ], [ -120.105278137999989, 50.660188004000098 ], [ -120.105294714999971, 50.659918557000047 ], [ -120.102541539999976, 50.659850087000052 ], [ -120.102329991999923, 50.659803243000056 ], [ -120.102344027999919, 50.659575314000058 ], [ -120.101920134999929, 50.659564765000084 ], [ -120.101936731999928, 50.659295320000091 ], [ -120.099393386999978, 50.659231996000123 ], [ -120.099409997999928, 50.658962551000087 ], [ -120.095595021999898, 50.658867463000085 ], [ -120.095611653999981, 50.658598018000099 ], [ -120.094763890999971, 50.658576870000097 ], [ -120.094780525999965, 50.658307427000096 ], [ -120.093508888999978, 50.658275694000068 ], [ -120.09353162499994, 50.657907619000078 ], [ -120.09355881799999, 50.657467364000041 ], [ -120.093982690999965, 50.657477943000082 ], [ -120.09403261199999, 50.656669612000059 ], [ -120.091489427999988, 50.656606118000127 ], [ -120.091540316999982, 50.655782780000088 ], [ -120.091572696999904, 50.655258902000078 ], [ -120.093691955999986, 50.655311815000047 ], [ -120.093725236999958, 50.654772928000092 ], [ -120.095844477999961, 50.654825802000062 ], [ -120.095827847999914, 50.655095246000059 ], [ -120.096675550999947, 50.655116384000102 ], [ -120.096658928999972, 50.655385830000036 ], [ -120.09708278199993, 50.655396396000057 ], [ -120.097071192999977, 50.65558427800007 ], [ -120.097066161, 50.65566584000009 ], [ -120.097440099, 50.655675162000108 ], [ -120.097490017999959, 50.65567640600009 ], [ -120.097495026999965, 50.655595173000052 ], [ -120.097506636999938, 50.655406962000086 ], [ -120.100473627, 50.655480878000027 ], [ -120.100469622999981, 50.655545836000087 ], [ -120.100423817999967, 50.656289214000026 ], [ -120.09957609199995, 50.656268102000098 ], [ -120.099559482999922, 50.656537547000056 ], [ -120.102102680999934, 50.656600865 ], [ -120.102052898999943, 50.65740920100005 ], [ -120.102476772999978, 50.657419749000084 ], [ -120.102592874, 50.655534247000105 ], [ -120.102592911, 50.65553363 ], [ -120.104288342999936, 50.65557580300004 ], [ -120.104271763999947, 50.655845249000031 ], [ -120.105119487, 50.655866326000123 ], [ -120.105136061999985, 50.655596880000111 ], [ -120.106407640999961, 50.655628485000115 ], [ -120.106357933999959, 50.656436825000107 ], [ -120.106781801999944, 50.656447357000012 ], [ -120.106765234999926, 50.656716804000041 ], [ -120.107612975999956, 50.656737863000046 ], [ -120.107593741999906, 50.657050737000112 ], [ -120.107530159999953, 50.658085097000061 ], [ -120.10668239599994, 50.65806403600002 ], [ -120.10663268899998, 50.658872376000069 ], [ -120.107904357999971, 50.658903967000143 ], [ -120.107854673, 50.659712307000113 ], [ -120.109126365999956, 50.659743883000012 ], [ -120.109159474999927, 50.659204990000063 ], [ -120.110431155999905, 50.659236551000021 ], [ -120.11041460899996, 50.659505999 ], [ -120.112534092999951, 50.659558572000059 ], [ -120.112550627999951, 50.659289125000086 ], [ -120.115094004999932, 50.659352161000044 ], [ -120.115110525999967, 50.659082713000096 ], [ -120.115534419999932, 50.659093213000055 ], [ -120.115550938999917, 50.658823765000051 ], [ -120.118942082999979, 50.658907714000073 ], [ -120.118975081999949, 50.658368815000109 ], [ -120.118551191999941, 50.658358327 ], [ -120.118589158999953, 50.65773833400003 ], [ -120.118600692999934, 50.657549979000102 ], [ -120.119872338999969, 50.657581436000058 ], [ -120.119855845999965, 50.657850887000109 ], [ -120.122399160999962, 50.657913763000067 ], [ -120.122382682999984, 50.658183213000015 ], [ -120.123230461999952, 50.658204159000043 ], [ -120.123213986999943, 50.658473610000094 ], [ -120.126605129999945, 50.658557335000111 ], [ -120.126588674999965, 50.658826787000109 ], [ -120.127012571999941, 50.658837246000125 ], [ -120.126996117999937, 50.659106697000077 ], [ -120.127420017999938, 50.659117155000047 ], [ -120.127403567999963, 50.659386606000076 ], [ -120.127827468999953, 50.659397062000039 ], [ -120.127811020999957, 50.659666514000051 ], [ -120.128234924999902, 50.659676969000024 ], [ -120.128218478999941, 50.659946420000047 ], [ -120.129066294999944, 50.659967325000082 ], [ -120.129132057999968, 50.658889517000048 ], [ -120.130115580000023, 50.65891376000009 ], [ -120.129745590999931, 50.659269775000084 ], [ -120.129652369, 50.659352653000049 ], [ -120.1297554, 50.659411400000117 ], [ -120.129754313999953, 50.659487317000057 ], [ -120.129741823999936, 50.660349958000076 ], [ -120.129746583999989, 50.66156079600011 ], [ -120.129719675999937, 50.662141422000069 ], [ -120.129706927999948, 50.662416809000085 ], [ -120.129807783, 50.662612770000116 ], [ -120.12992866099998, 50.662847664 ], [ -120.12994207499996, 50.663113190000097 ], [ -120.129882384999988, 50.663295311000113 ], [ -120.129829029999982, 50.663492802000071 ], [ -120.129828181999954, 50.663494247000095 ], [ -120.128852533999961, 50.663470197 ] ], [ [ -120.102867467999886, 50.657969188000017 ], [ -120.102884057999972, 50.657699742000055 ], [ -120.102460180999969, 50.657689195000025 ], [ -120.102443588999947, 50.657958641000072 ], [ -120.102867467999886, 50.657969188000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8820834", "BldgCostT": "6083334", "sL_LossRatio": "1", "sL_AssetLoss": "571.9", "sL_BldgLoss": "571.9", "sL_StrLoss": "571.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D3F9A69F26085EC050CB6A15D8524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.125428783999951, 50.650448911000069 ], [ -120.125776326999969, 50.647796003000096 ], [ -120.123598204999936, 50.647680967 ], [ -120.124067421999897, 50.644100108000067 ], [ -120.125871142999969, 50.64419537300008 ], [ -120.12970702099993, 50.644397872000077 ], [ -120.129359735999941, 50.647050803000077 ], [ -120.131537841999943, 50.647165727000143 ], [ -120.131239925, 50.64944212000016 ], [ -120.130936615999957, 50.649325797000046 ], [ -120.130598632999934, 50.649167034000129 ], [ -120.128215236999921, 50.649413004000046 ], [ -120.130118765999967, 50.650639983000111 ], [ -120.130155093999974, 50.650698380000073 ], [ -120.125428783999951, 50.650448911000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EEAF3F0517045EC0680035D6FA524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.06312133899992, 50.648607862000048 ], [ -120.063129352999965, 50.648479406000099 ], [ -120.063014792999979, 50.648482420000022 ], [ -120.063005530999973, 50.648340087000065 ], [ -120.062980782999958, 50.647959827000172 ], [ -120.065278177999986, 50.648052863000018 ], [ -120.065273842999886, 50.648122413000088 ], [ -120.065113363999899, 50.648118369000031 ], [ -120.065115897999959, 50.648157258000012 ], [ -120.064846785999961, 50.648164342000094 ], [ -120.064833264999933, 50.648381169000082 ], [ -120.064705815999943, 50.648377955000079 ], [ -120.064709712999985, 50.648437817000051 ], [ -120.06440478599994, 50.64844584400003 ], [ -120.06439268099993, 50.648639921999987 ], [ -120.063295247999946, 50.648612248000077 ], [ -120.06312133899992, 50.648607862000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22031000", "BldgCostT": "14930000", "sL_LossRatio": "0.999972337105586", "sL_AssetLoss": "2727.408017", "sL_BldgLoss": "2727.332569", "sL_StrLoss": "2727.001129", "sL_NStrLoss": "0.33144", "sL_ContLoss": "0.075448", "geom_point": "0101000020E61000009216CB8035055EC07E263593F3534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.088689091999925, 50.653837547000059 ], [ -120.088265254999925, 50.653826950000095 ], [ -120.08824858499996, 50.654096391000088 ], [ -120.08782474399996, 50.654085793000014 ], [ -120.08780807, 50.654355234 ], [ -120.088231911999941, 50.654365834000053 ], [ -120.08824858499996, 50.654096391000088 ], [ -120.088672422999977, 50.654106989000098 ], [ -120.088689091999925, 50.653837547000059 ], [ -120.089960604999931, 50.653869330000092 ], [ -120.089893956999916, 50.654947102000072 ], [ -120.089046261999954, 50.654925913000113 ], [ -120.089012926999942, 50.655464798000089 ], [ -120.087741371999982, 50.655433004000024 ], [ -120.087728363999986, 50.655643182000112 ], [ -120.087724696999956, 50.655702447000088 ], [ -120.087300843999969, 50.655691845000028 ], [ -120.087284164999957, 50.655961287000054 ], [ -120.086489241999985, 50.655941401000064 ], [ -120.0863596, 50.656924238000087 ], [ -120.086257752999927, 50.657696327000068 ], [ -120.084100494999973, 50.65758165000004 ], [ -120.08394800399999, 50.658737195000143 ], [ -120.085132068999926, 50.6588001430001 ], [ -120.082993506999969, 50.659108994000071 ], [ -120.081367584999953, 50.65953630000007 ], [ -120.080945692999975, 50.659497812000033 ], [ -120.080298309999989, 50.659212999000061 ], [ -120.079833000999926, 50.659164590000138 ], [ -120.079434286999955, 50.659200208000058 ], [ -120.078694716999962, 50.65948639400002 ], [ -120.077947607999988, 50.659450812000038 ], [ -120.075831635, 50.65897273000008 ], [ -120.076047515999946, 50.657339063000116 ], [ -120.073525828999934, 50.657204776000071 ], [ -120.073735112999941, 50.655621586000109 ], [ -120.073720909999963, 50.655621230000108 ], [ -120.073760350999947, 50.654986985000065 ], [ -120.073771176999941, 50.654812913000043 ], [ -120.073841772999984, 50.654814688000066 ], [ -120.073877246, 50.654546324000101 ], [ -120.073999134, 50.653624169000047 ], [ -120.079639594999961, 50.653924463000074 ], [ -120.07944487499995, 50.655399008000074 ], [ -120.079432231999974, 50.655494757000106 ], [ -120.079671524, 50.655500759000063 ], [ -120.07965110499994, 50.655829771000086 ], [ -120.080815438999949, 50.655891720000092 ], [ -120.080859640999961, 50.655556936000046 ], [ -120.081089517999942, 50.653815733000059 ], [ -120.083165192999957, 50.653926141000092 ], [ -120.083179229999985, 50.653699660000022 ], [ -120.083603063999973, 50.65371027600002 ], [ -120.083619761999984, 50.653440834000051 ], [ -120.084043593999922, 50.653451448000098 ], [ -120.084093677999974, 50.652643124000136 ], [ -120.084517501999983, 50.652653736000048 ], [ -120.084534194999932, 50.652384295000104 ], [ -120.085381840999915, 50.652405515000062 ], [ -120.08539852699991, 50.652136073000079 ], [ -120.086669989999933, 50.65216789200008 ], [ -120.086703347999915, 50.651629007000089 ], [ -120.087974799999969, 50.651660811000035 ], [ -120.087958128999972, 50.651930253000103 ], [ -120.088381947999892, 50.651940852000052 ], [ -120.088315267999917, 50.653018622000033 ], [ -120.088739096999959, 50.653029220000064 ], [ -120.088689091999925, 50.653837547000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55258334", "BldgCostT": "37108334", "sL_LossRatio": "0.992743378885065", "sL_AssetLoss": "7297.6856806", "sL_BldgLoss": "7244.7291406", "sL_StrLoss": "7224.41348", "sL_NStrLoss": "20.3156606", "sL_ContLoss": "52.95654", "geom_point": "0101000020E610000091519FC300085EC0B8EE837F53514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.119279614999954, 50.643749957000111 ], [ -120.119332808999943, 50.643344288000087 ], [ -120.118283909999931, 50.643288829000028 ], [ -120.118753503, 50.639707974000054 ], [ -120.119738730999956, 50.639760067000068 ], [ -120.119779827999963, 50.639446610000086 ], [ -120.118804781999984, 50.639395056000119 ], [ -120.118804406999942, 50.639397916000114 ], [ -120.113165507999952, 50.63909959800008 ], [ -120.113557771999965, 50.636110775000098 ], [ -120.11363546499993, 50.635518746000081 ], [ -120.118851948999989, 50.635794728000057 ], [ -120.118852324999963, 50.635791867000101 ], [ -120.119061127999927, 50.63580290900007 ], [ -120.119099428999988, 50.635510772000067 ], [ -120.119304177999979, 50.6355215990001 ], [ -120.119366243999963, 50.635048177000122 ], [ -120.119451675999983, 50.635052695000056 ], [ -120.119507263999949, 50.63462867900013 ], [ -120.121601632999955, 50.634739404000065 ], [ -120.121878275999919, 50.63262833000006 ], [ -120.122394091999951, 50.632655594000028 ], [ -120.122416359999932, 50.632485642000077 ], [ -120.123051504999964, 50.632519210000083 ], [ -120.12305616899999, 50.632483610000072 ], [ -120.122059886, 50.632430954000121 ], [ -120.122529064999966, 50.628850036000067 ], [ -120.128166739999969, 50.629147884000119 ], [ -120.127870346999956, 50.631412287000039 ], [ -120.129034607999984, 50.631473761000031 ], [ -120.129102160999977, 50.630957594000087 ], [ -120.130232726999949, 50.631017276000051 ], [ -120.130470071000019, 50.629203287000067 ], [ -120.130401908999929, 50.62919968900011 ], [ -120.130870389999984, 50.625618722000077 ], [ -120.13466095699998, 50.625818746000107 ], [ -120.134132407999942, 50.626860003000083 ], [ -120.134083423, 50.627130952000044 ], [ -120.133947585999934, 50.627882387000078 ], [ -120.134081100999978, 50.628177390000069 ], [ -120.134275698999957, 50.62860728900003 ], [ -120.134337314999982, 50.629634313000018 ], [ -120.134395483999953, 50.630603601000089 ], [ -120.134401604999979, 50.63070529200013 ], [ -120.13420420199995, 50.631357384000061 ], [ -120.133391404999955, 50.633112784000055 ], [ -120.133417107999946, 50.633328688000113 ], [ -120.133858900999911, 50.634183094000051 ], [ -120.133966221999955, 50.634203824000068 ], [ -120.13465490699997, 50.634336889000018 ], [ -120.135231683999962, 50.634516894000065 ], [ -120.135298796999948, 50.634548574000043 ], [ -120.135181285999934, 50.635447345000095 ], [ -120.13391436900001, 50.635380526000056 ], [ -120.133910228999937, 50.635412174000088 ], [ -120.132366592999944, 50.635330742000122 ], [ -120.132240307999936, 50.636296111000092 ], [ -120.130409249999971, 50.636199488000052 ], [ -120.130331654999964, 50.636792454000073 ], [ -120.12928365399992, 50.636737138000115 ], [ -120.129113572999941, 50.638036580000048 ], [ -120.126842927999945, 50.637916696000062 ], [ -120.126558881999955, 50.640085834000082 ], [ -120.126380903999973, 50.640076435000076 ], [ -120.126237629999963, 50.641170439000071 ], [ -120.12530255, 50.641121054000074 ], [ -120.124991648999966, 50.643494454000077 ], [ -120.12491913799991, 50.644047963000034 ], [ -120.119279614999954, 50.643749957000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8294083", "BldgCostT": "5248333", "sL_LossRatio": "1", "sL_AssetLoss": "474", "sL_BldgLoss": "474", "sL_StrLoss": "474", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D82BEA9B8D055EC051E37361834F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.085594406999959, 50.619326391000094 ], [ -120.089816087999935, 50.619550916000023 ], [ -120.089344400999948, 50.62313173600009 ], [ -120.084833847999988, 50.622891843000062 ], [ -120.083707737999987, 50.622831922000088 ], [ -120.08373647800002, 50.622613961000063 ], [ -120.084169025000037, 50.619333384000072 ], [ -120.085594406999959, 50.619326391000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "65.2", "sL_BldgLoss": "65.2", "sL_StrLoss": "65.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CBE8F47AFF085EC0C2889E1091514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.139619351999954, 50.637944825000083 ], [ -120.139874637999952, 50.635990863000117 ], [ -120.140517899999978, 50.636304495000083 ], [ -120.14089638199998, 50.636536308000096 ], [ -120.14129658899999, 50.636873792000074 ], [ -120.141556500999954, 50.637264308000098 ], [ -120.141896652999932, 50.638064796000073 ], [ -120.139619351999954, 50.637944825000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47657750", "BldgCostT": "30920000", "sL_LossRatio": "0.995481182145776", "sL_AssetLoss": "3474.36", "sL_BldgLoss": "3458.66", "sL_StrLoss": "3453", "sL_NStrLoss": "5.66", "sL_ContLoss": "15.7", "geom_point": "0101000020E61000006E788BD184035EC0D9A8B9A2B5534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.072109343999969, 50.654231419000048 ], [ -120.071685508999977, 50.654220762000072 ], [ -120.071668743999922, 50.654490200000076 ], [ -120.07209258099995, 50.654500858000034 ], [ -120.072109343999969, 50.654231419000048 ], [ -120.072783451999925, 50.654248368000033 ], [ -120.073380848999989, 50.654263383000036 ], [ -120.073368707999961, 50.654458595000058 ], [ -120.073339384999898, 50.654930092000065 ], [ -120.073313820999914, 50.655341138000075 ], [ -120.070673731999975, 50.655274754000033 ], [ -120.070692776999962, 50.655566583000038 ], [ -120.068573817999933, 50.65562244700002 ], [ -120.068547653999971, 50.655221249000128 ], [ -120.068227699999937, 50.655213194000105 ], [ -120.068235273999989, 50.65509163500014 ], [ -120.067384865999955, 50.655114042000044 ], [ -120.067380015999902, 50.655191848000072 ], [ -120.065872554999942, 50.655153873000053 ], [ -120.065148368999957, 50.655172940000071 ], [ -120.065226749999951, 50.656376096000031 ], [ -120.062763686999986, 50.656487010000042 ], [ -120.06181099399997, 50.656565563000093 ], [ -120.060575897999911, 50.656667390000102 ], [ -120.060574284999987, 50.656642595000136 ], [ -120.058879064999957, 50.656687142000074 ], [ -120.058861549999918, 50.656417736000122 ], [ -120.058764226999941, 50.656420293000046 ], [ -120.058387959999948, 50.656430177000054 ], [ -120.05838496599999, 50.656478055000072 ], [ -120.058378346999973, 50.656583957000109 ], [ -120.056030395999969, 50.656524618000077 ], [ -120.055414775999949, 50.656455006000044 ], [ -120.055428259999985, 50.656239532000036 ], [ -120.055398815999965, 50.656238788000117 ], [ -120.055029815999958, 50.656248469000047 ], [ -120.055028579999941, 50.656229425000028 ], [ -120.055004415, 50.656228814000016 ], [ -120.05501393499999, 50.656076695000067 ], [ -120.055016254999899, 50.656039622000065 ], [ -120.055012321999982, 50.655979063000132 ], [ -120.054506211999964, 50.655992341000093 ], [ -120.05289331299997, 50.656034642000108 ], [ -120.052884923999926, 50.655905330000067 ], [ -120.05240853299992, 50.655893273000061 ], [ -120.052034484, 50.655883804000048 ], [ -120.052034994999957, 50.655891689000057 ], [ -120.05204570799998, 50.656056863000089 ], [ -120.05162190599999, 50.656067971000034 ], [ -120.051627222999969, 50.656149972000073 ], [ -120.050020989999922, 50.656146596000106 ], [ -120.04866033699993, 50.656223788000034 ], [ -120.048655275999977, 50.656145685000098 ], [ -120.047366202999953, 50.656179430000059 ], [ -120.047359279999924, 50.656289773000047 ], [ -120.047126320999951, 50.656299161000064 ], [ -120.045662948, 50.656262042000066 ], [ -120.045665339999971, 50.656223932000053 ], [ -120.044841020999954, 50.656245491000057 ], [ -120.044823585999893, 50.655976082000109 ], [ -120.044399781999985, 50.655987164000074 ], [ -120.044385609999907, 50.65576812900013 ], [ -120.044382350999953, 50.655717753 ], [ -120.04337746899995, 50.655744023000047 ], [ -120.043371521999944, 50.655788787000049 ], [ -120.043282928999986, 50.656455545000071 ], [ -120.041651447000021, 50.656618327000075 ], [ -120.041618458999949, 50.656465932000145 ], [ -120.041618386999971, 50.656465353000094 ], [ -120.041535972999895, 50.655164483000114 ], [ -120.04147062, 50.654132879000066 ], [ -120.041467731999916, 50.654086986000046 ], [ -120.041439673999946, 50.653754145000043 ], [ -120.04151249200001, 50.653588318000047 ], [ -120.04191197499992, 50.652678690000073 ], [ -120.041892748999928, 50.651174155000064 ], [ -120.04189247699999, 50.65115407300005 ], [ -120.041877789999916, 50.650768715000048 ], [ -120.04263865599998, 50.650788044000102 ], [ -120.042711880999903, 50.650236936000084 ], [ -120.048351707, 50.65053881300004 ], [ -120.048263854999959, 50.651200640000063 ], [ -120.048950895999951, 50.651218054000012 ], [ -120.048917107999941, 50.651756920000096 ], [ -120.050188517999914, 50.651789137000073 ], [ -120.050171667999948, 50.652057982000045 ], [ -120.050936075999971, 50.652037954000029 ], [ -120.050938672999962, 50.652078 ], [ -120.05483351799991, 50.652176579000056 ], [ -120.054816658999968, 50.652446013000066 ], [ -120.056088093999932, 50.652478166000066 ], [ -120.056104948999987, 50.652208730000076 ], [ -120.058224002999964, 50.652262287000084 ], [ -120.058216226999932, 50.652386693000096 ], [ -120.058598861999926, 50.652376642000021 ], [ -120.058609601999976, 50.652541888000052 ], [ -120.059478602999917, 50.652563836000098 ], [ -120.059474876999985, 50.652623493000185 ], [ -120.059887680999964, 50.652612644000079 ], [ -120.059902752, 50.652844408000099 ], [ -120.060634502, 50.6528628820001 ], [ -120.061600280999969, 50.652837491000071 ], [ -120.061603524999924, 50.652887340000113 ], [ -120.062428494999921, 50.652908155000112 ], [ -120.062440918999968, 50.652709127000051 ], [ -120.062430287999945, 50.652545796000013 ], [ -120.062876328999977, 50.652534063000097 ], [ -120.062885945999952, 50.65237997300008 ], [ -120.065005019999916, 50.652433405000103 ], [ -120.064988216999978, 50.652702842000075 ], [ -120.06503073, 50.652703914000078 ], [ -120.065871437999959, 50.652725102000034 ], [ -120.067109270999978, 50.652692500000107 ], [ -120.067084573999978, 50.652313570000061 ], [ -120.06707415399994, 50.652153692000113 ], [ -120.067241522999979, 50.652149282000067 ], [ -120.06757015299992, 50.652140625000122 ], [ -120.067581496999978, 50.65195859900011 ], [ -120.068852933999963, 50.651990612000091 ], [ -120.068819371999965, 50.652529487 ], [ -120.069243189999895, 50.652540155000032 ], [ -120.069232744999951, 50.652707868000114 ], [ -120.069239402000036, 50.652809920000031 ], [ -120.070921694999967, 50.652852250000059 ], [ -120.070905734999926, 50.653108668000073 ], [ -120.070904924999923, 50.653121688000084 ], [ -120.070948558999959, 50.653122786000068 ], [ -120.071328749999935, 50.653132349000046 ], [ -120.071317916999945, 50.653306377000142 ], [ -120.071311981999955, 50.653401787000028 ], [ -120.071488442999964, 50.65340622500004 ], [ -120.072159633999945, 50.653423104000112 ], [ -120.072133897999919, 50.653836772000034 ], [ -120.072109343999969, 50.654231419000048 ] ], [ [ -120.05423731799999, 50.654919930000041 ], [ -120.054224190999918, 50.655129635000037 ], [ -120.054958375999902, 50.65514820500001 ], [ -120.054942355999984, 50.654901434000074 ], [ -120.05423731799999, 50.654919930000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10150667", "BldgCostT": "6736667", "sL_LossRatio": "0.999977429937274", "sL_AssetLoss": "1342.4863", "sL_BldgLoss": "1342.456", "sL_StrLoss": "1342.3", "sL_NStrLoss": "0.156", "sL_ContLoss": "0.0303", "geom_point": "0101000020E6100000DF20F7001F095EC07B0DE27F02534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.141825705999977, 50.651157190000042 ], [ -120.140542682999978, 50.65106620600006 ], [ -120.138839827999959, 50.651009163000033 ], [ -120.139143406999963, 50.648686568000095 ], [ -120.140206164999952, 50.648742552000108 ], [ -120.14022006299993, 50.648636192000055 ], [ -120.141384187999975, 50.648697504000062 ], [ -120.14138571399991, 50.648685832000062 ], [ -120.140742065999959, 50.648651934000064 ], [ -120.141209926, 50.645071007000098 ], [ -120.141553884999922, 50.645089123000027 ], [ -120.141762291999939, 50.643493717000098 ], [ -120.142720236999978, 50.643544163000051 ], [ -120.142971057999929, 50.644579217000029 ], [ -120.143068310999951, 50.644980500000088 ], [ -120.143700012999957, 50.646038543000053 ], [ -120.144391777999957, 50.647197017000046 ], [ -120.14567207499999, 50.649341067000137 ], [ -120.145896916999931, 50.649717488000057 ], [ -120.146138586999925, 50.650008695000103 ], [ -120.146342996999948, 50.650128512000052 ], [ -120.145544498, 50.650969918000087 ], [ -120.145097304999965, 50.65127438400004 ], [ -120.144850403999953, 50.651316388000041 ], [ -120.144419295999981, 50.651280196000066 ], [ -120.144007575999979, 50.651274741000051 ], [ -120.142357000999979, 50.65125278600005 ], [ -120.141825705999977, 50.651157190000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35408166", "BldgCostT": "23736666", "sL_LossRatio": "0.984220316602507", "sL_AssetLoss": "3656.600614", "sL_BldgLoss": "3598.900614", "sL_StrLoss": "3578.000614", "sL_NStrLoss": "20.9", "sL_ContLoss": "57.7", "geom_point": "0101000020E61000003ED1E07C8B055EC0547A9E26D0514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.080747216999896, 50.645003201000137 ], [ -120.080830758999952, 50.643655996000042 ], [ -120.08167824499999, 50.643677240000073 ], [ -120.081745055999946, 50.642599474000079 ], [ -120.080897588999946, 50.64257823100008 ], [ -120.080964411999958, 50.641500465000057 ], [ -120.080670829999931, 50.641493105000052 ], [ -120.081059300999954, 50.637127846000091 ], [ -120.078949435999974, 50.637019501000054 ], [ -120.079027502999978, 50.636814023000106 ], [ -120.079005822999974, 50.636433907000026 ], [ -120.078481577999952, 50.636404099000082 ], [ -120.078446582000012, 50.634950384000057 ], [ -120.07842907699991, 50.634425801000056 ], [ -120.079014577999899, 50.634467130000111 ], [ -120.079092303999943, 50.634472966 ], [ -120.081328615999951, 50.634594609000033 ], [ -120.081340020999946, 50.633357631000109 ], [ -120.081355123999955, 50.632874431000062 ], [ -120.082942949999975, 50.632958930000058 ], [ -120.082470574999945, 50.636539664000104 ], [ -120.081984941999963, 50.636513822000083 ], [ -120.081964591999963, 50.636668057000108 ], [ -120.085501885999975, 50.636756656000095 ], [ -120.08548520799998, 50.637026099000131 ], [ -120.08717994899996, 50.637068510000091 ], [ -120.087196616999961, 50.636799066000023 ], [ -120.088467668999982, 50.636830859000078 ], [ -120.088451007999979, 50.637100301000103 ], [ -120.089557691999957, 50.637127971000055 ], [ -120.089907148999956, 50.634475893000108 ], [ -120.090635943999928, 50.634514623000079 ], [ -120.090636815999986, 50.634508010000012 ], [ -120.096274989, 50.634807469000087 ], [ -120.095899958999937, 50.637656674000063 ], [ -120.095803657, 50.638388251000066 ], [ -120.095074793999984, 50.63834955600003 ], [ -120.095073922999958, 50.638356168000044 ], [ -120.090933057999976, 50.638136236000072 ], [ -120.090843309999968, 50.639588839000083 ], [ -120.089572181999941, 50.639557071000084 ], [ -120.089522215999921, 50.640365402000022 ], [ -120.09079336399995, 50.640397169000096 ], [ -120.090760066999977, 50.640936056000029 ], [ -120.09160751099995, 50.640957229000072 ], [ -120.091590865999962, 50.641226672000137 ], [ -120.092014591999956, 50.641237255000085 ], [ -120.091948019999961, 50.64231503100013 ], [ -120.091524285999967, 50.642304447000051 ], [ -120.091490993, 50.642843335000116 ], [ -120.091067252999949, 50.642832748000053 ], [ -120.091050604999907, 50.64310219200005 ], [ -120.089779381999932, 50.643070425000126 ], [ -120.089762725999933, 50.643339869000073 ], [ -120.089338982999934, 50.643329277000106 ], [ -120.089289004999955, 50.644137606000101 ], [ -120.088017755999886, 50.644105820000078 ], [ -120.088034420999946, 50.643836377000113 ], [ -120.085915689999979, 50.643783370000044 ], [ -120.085848973999987, 50.644861140000096 ], [ -120.08415395499999, 50.644818704000102 ], [ -120.084170643000036, 50.644549262000034 ], [ -120.082899389, 50.644517421000096 ], [ -120.082865994999935, 50.64505630300004 ], [ -120.080747216999896, 50.645003201000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25968416", "BldgCostT": "17381666", "sL_LossRatio": "0.999958050606736", "sL_AssetLoss": "3637.716499", "sL_BldgLoss": "3637.563899", "sL_StrLoss": "3637.000549", "sL_NStrLoss": "0.56335", "sL_ContLoss": "0.1526", "geom_point": "0101000020E6100000A23094B8B3065EC07F573EAA65514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.103793766999942, 50.63854048700005 ], [ -120.103821223, 50.638331636000032 ], [ -120.103751772999928, 50.638327954000026 ], [ -120.103722791999942, 50.638548414000098 ], [ -120.103652634999932, 50.639082068000029 ], [ -120.09801387600001, 50.638782983000048 ], [ -120.098123917999956, 50.637946725000091 ], [ -120.098485036999946, 50.635202194000058 ], [ -120.100312405999915, 50.635299151000041 ], [ -120.10041159099994, 50.634545037000109 ], [ -120.100451168999911, 50.63454713699999 ], [ -120.100735902999944, 50.632382139000093 ], [ -120.103672507999974, 50.632537886000115 ], [ -120.10403220099991, 50.632556958000038 ], [ -120.10413889299997, 50.631745217000052 ], [ -120.109776808999953, 50.632043993000075 ], [ -120.10946914099999, 50.634386999000057 ], [ -120.110244852999983, 50.63442808500006 ], [ -120.11018411099991, 50.634890694000042 ], [ -120.110289683999966, 50.63489628400005 ], [ -120.11007630099999, 50.636521333000083 ], [ -120.109819467999898, 50.638477125000072 ], [ -120.10948244199993, 50.638459276000084 ], [ -120.109305219999925, 50.639808635000115 ], [ -120.103666332999936, 50.639509837 ], [ -120.103793766999942, 50.63854048700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3724083", "BldgCostT": "2568333", "sL_LossRatio": "1", "sL_AssetLoss": "299", "sL_BldgLoss": "299", "sL_StrLoss": "299", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001300562680075EC01B775AE97B534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.118638776999902, 50.649994901000085 ], [ -120.119910217999987, 50.650026355000172 ], [ -120.119794795999923, 50.651912506000038 ], [ -120.119370964999945, 50.651902022000066 ], [ -120.119337979999941, 50.652440922000032 ], [ -120.118914145, 50.652430435000042 ], [ -120.118897647999944, 50.6526998860001 ], [ -120.118473810999916, 50.652689398000057 ], [ -120.11845731399994, 50.652958847000058 ], [ -120.118033472, 50.65294835800011 ], [ -120.118000470999931, 50.653487257000037 ], [ -120.11715278099993, 50.653466274000095 ], [ -120.117136275999911, 50.653735724000036 ], [ -120.116712428, 50.65372523000012 ], [ -120.116695920999987, 50.653994679000036 ], [ -120.115848222999944, 50.653973686000057 ], [ -120.115831709999938, 50.654243135000108 ], [ -120.114560157999961, 50.654211634000028 ], [ -120.114692317000021, 50.652056045000066 ], [ -120.115116148999917, 50.652066546000079 ], [ -120.11513266599998, 50.651797096000095 ], [ -120.115556493999961, 50.651807595000093 ], [ -120.11557300799997, 50.651538147000075 ], [ -120.115996834999933, 50.651548644000108 ], [ -120.116013346000017, 50.651279195000036 ], [ -120.11686099500001, 50.651300186000078 ], [ -120.116877499999958, 50.651030736000031 ], [ -120.11772514599997, 50.651051722000041 ], [ -120.117741646999946, 50.6507822720001 ], [ -120.118165468999948, 50.650792762000023 ], [ -120.118181964999977, 50.650523312000118 ], [ -120.118605783999925, 50.650533800000069 ], [ -120.118638776999902, 50.649994901000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "59.4", "sL_BldgLoss": "59.4", "sL_StrLoss": "59.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6F8B1D527045EC01BF80FF128534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.064408773999958, 50.650334807000064 ], [ -120.06440386099996, 50.650259367000089 ], [ -120.064291848000011, 50.650256544000122 ], [ -120.064303625999983, 50.650067707000105 ], [ -120.063967487999932, 50.650076553000105 ], [ -120.06396109399995, 50.649978343000058 ], [ -120.063884859999959, 50.64997642000008 ], [ -120.063922100999918, 50.64937943600011 ], [ -120.063908124999941, 50.649164743000085 ], [ -120.063897330999978, 50.648998932000033 ], [ -120.065168533999952, 50.648965473000025 ], [ -120.065183781999977, 50.649199586000066 ], [ -120.065630429999885, 50.649210843000027 ], [ -120.065619938999959, 50.649379127000039 ], [ -120.06562655, 50.649480605000051 ], [ -120.065869953999936, 50.649486739000046 ], [ -120.066051101999932, 50.649481969000107 ], [ -120.066100811999974, 50.650244968000067 ], [ -120.066103756999951, 50.650290183000031 ], [ -120.065987409999977, 50.650293246000096 ], [ -120.065987034, 50.650299270000112 ], [ -120.065870324999963, 50.650296330000089 ], [ -120.064408773999958, 50.650334807000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8159333", "BldgCostT": "5363333", "sL_LossRatio": "0.999975582099162", "sL_AssetLoss": "1335.0861", "sL_BldgLoss": "1335.0535", "sL_StrLoss": "1335", "sL_NStrLoss": "0.0535", "sL_ContLoss": "0.0326", "geom_point": "0101000020E6100000E325AC4B15065EC0319502FB7D4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.096682143999914, 50.619269199000044 ], [ -120.098071871999949, 50.61934298900011 ], [ -120.097600844999988, 50.622923845000038 ], [ -120.094715744999945, 50.622770638000084 ], [ -120.09196415299999, 50.622624449000028 ], [ -120.092402826999958, 50.619292743000109 ], [ -120.096531804, 50.619272135000081 ], [ -120.096552252, 50.619271814000093 ], [ -120.096682143999914, 50.619269199000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134445728", "BldgCostT": "89889857", "sL_LossRatio": "0.997000263729463", "sL_AssetLoss": "11439.165615", "sL_BldgLoss": "11404.851135", "sL_StrLoss": "11392.305335", "sL_NStrLoss": "12.5458", "sL_ContLoss": "34.31448", "geom_point": "0101000020E6100000E48D51A6AA095EC051C87CDDF5544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.170736513999913, 50.665874993000017 ], [ -120.166567918999974, 50.665183364000093 ], [ -120.164357485999957, 50.664816563000088 ], [ -120.164114898, 50.6647763 ], [ -120.162998197999968, 50.664680803000074 ], [ -120.160888186999898, 50.664557514000066 ], [ -120.159889013999958, 50.664563593000047 ], [ -120.159455667999936, 50.664597776000051 ], [ -120.158858054999953, 50.664644876000068 ], [ -120.158687902999958, 50.664658292000112 ], [ -120.15818914, 50.664726686000058 ], [ -120.157270698000033, 50.664852591000042 ], [ -120.156812060999982, 50.664915033000092 ], [ -120.15605677899994, 50.665017836000061 ], [ -120.156028949999936, 50.665021628000027 ], [ -120.155987187999955, 50.665027322000093 ], [ -120.155904302999943, 50.665038602000045 ], [ -120.154528145999947, 50.665222167000096 ], [ -120.154478352999917, 50.665228804000122 ], [ -120.154361, 50.66524445400006 ], [ -120.154057103999932, 50.665285003000086 ], [ -120.150219509999914, 50.66580810600005 ], [ -120.149696316999965, 50.665879296000099 ], [ -120.148208118999918, 50.666081802000079 ], [ -120.147478693999986, 50.666066002 ], [ -120.143723579999971, 50.665433991000064 ], [ -120.143416689999967, 50.665367954000054 ], [ -120.139825187999946, 50.664595109000025 ], [ -120.138326525, 50.6642368400001 ], [ -120.136526639999957, 50.663806522000108 ], [ -120.136043388999965, 50.663691009000061 ], [ -120.135666510999926, 50.663618892000109 ], [ -120.135267728999978, 50.663543384000036 ], [ -120.133022210999926, 50.66311810200002 ], [ -120.13138898499993, 50.662772612000012 ], [ -120.129706927999948, 50.662416809000085 ], [ -120.129719675999937, 50.662141422000069 ], [ -120.129746583999989, 50.66156079600011 ], [ -120.129741823999936, 50.660349958000076 ], [ -120.129754313999953, 50.659487317000057 ], [ -120.1297554, 50.659411400000117 ], [ -120.129652369, 50.659352653000049 ], [ -120.129745590999931, 50.659269775000084 ], [ -120.130115580000023, 50.65891376000009 ], [ -120.130827650999947, 50.658931307000053 ], [ -120.130794789999953, 50.659470211000063 ], [ -120.131617190999961, 50.659490471000026 ], [ -120.131792447999928, 50.658151588000109 ], [ -120.134778331999911, 50.658991585000095 ], [ -120.137257418000019, 50.659798201000093 ], [ -120.137033186999986, 50.661512747000081 ], [ -120.137038601, 50.661512880000039 ], [ -120.13700580699998, 50.662051788000049 ], [ -120.13742973799998, 50.662062208000108 ], [ -120.137413342999977, 50.662331663000039 ], [ -120.137837272999917, 50.662342083000098 ], [ -120.137820881999914, 50.662611536000071 ], [ -120.138244815999911, 50.662621955000134 ], [ -120.138228424999966, 50.662891408000071 ], [ -120.138652362999935, 50.662901826000095 ], [ -120.138623307999936, 50.663379535000075 ], [ -120.139143923999896, 50.663434063000096 ], [ -120.139101323999938, 50.663651163000075 ], [ -120.138610350999969, 50.663592554000097 ], [ -120.138586807999928, 50.66397964100004 ], [ -120.138413875999944, 50.663975393000136 ], [ -120.138574429999949, 50.664269916000052 ], [ -120.13941562399998, 50.664314217000076 ], [ -120.139418317999969, 50.664269926000053 ], [ -120.142385974999982, 50.664342784000063 ], [ -120.1423782359999, 50.664470191000099 ], [ -120.142466811999924, 50.664474853000073 ], [ -120.142655129000019, 50.663033682000062 ], [ -120.147701882999968, 50.663299193000064 ], [ -120.147714702999934, 50.663201000000122 ], [ -120.148550884, 50.663244970000072 ], [ -120.148557664999885, 50.663193020000115 ], [ -120.14924450299999, 50.663229131000122 ], [ -120.149254124999985, 50.663155408000065 ], [ -120.149921528999926, 50.663162403000044 ], [ -120.156584981999984, 50.663581773000082 ], [ -120.168710053999988, 50.66434365300006 ], [ -120.168703901999933, 50.664445887000078 ], [ -120.169551826999978, 50.664466498000095 ], [ -120.169535615999962, 50.66473595900009 ], [ -120.170383545999968, 50.664756565000062 ], [ -120.17036733799992, 50.665026026000071 ], [ -120.172487183999934, 50.665077514000117 ], [ -120.172470985999936, 50.665346976000187 ], [ -120.17459085, 50.665398424000053 ], [ -120.174631880999982, 50.66471526400003 ], [ -120.179284815999949, 50.665007022000083 ], [ -120.179254569999955, 50.665511477000024 ], [ -120.179678544999902, 50.665521745000049 ], [ -120.179630079999953, 50.666330136000106 ], [ -120.17973103099996, 50.666332580000081 ], [ -120.179202811999971, 50.667087900000112 ], [ -120.179179408999957, 50.667185043000131 ], [ -120.179141237999929, 50.667343357000071 ], [ -120.179253831999972, 50.667570061000028 ], [ -120.179454060999944, 50.667777927000017 ], [ -120.179690815999933, 50.667934519000077 ], [ -120.180112196999985, 50.668047589000096 ], [ -120.179504903999955, 50.668042881000126 ], [ -120.179264953999962, 50.668042045000036 ], [ -120.178387661000016, 50.668038533000107 ], [ -120.176548993000011, 50.668000910000053 ], [ -120.176076899999913, 50.667917603000063 ], [ -120.175678302999984, 50.667815707000045 ], [ -120.173230302999968, 50.66668518900007 ], [ -120.172864604999972, 50.666516999000095 ], [ -120.17233909199993, 50.666275283000111 ], [ -120.171556997999943, 50.666031601000093 ], [ -120.170818586999943, 50.665890658000059 ], [ -120.170736513999913, 50.665874993000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104950584", "BldgCostT": "71588334", "sL_LossRatio": "0.999998842253206", "sL_AssetLoss": "13611.8709931", "sL_BldgLoss": "13611.855234", "sL_StrLoss": "13611.700104", "sL_NStrLoss": "0.15513", "sL_ContLoss": "0.0157591", "geom_point": "0101000020E6100000D25B4DE83F0A5EC05ADAA14894554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.151758024999964, 50.670526463000037 ], [ -120.151655015999964, 50.670506688000067 ], [ -120.151428945999967, 50.6705011600001 ], [ -120.150934139999933, 50.670420381000078 ], [ -120.150936613999974, 50.670379523000058 ], [ -120.149589328999951, 50.670186294000082 ], [ -120.14948463799999, 50.670183732000062 ], [ -120.149022009999953, 50.670108196000093 ], [ -120.147417801999936, 50.669700802000143 ], [ -120.145277006999947, 50.668829184000089 ], [ -120.144221120999958, 50.66826380000002 ], [ -120.14150509599996, 50.667098806000091 ], [ -120.138577011999956, 50.666127505000055 ], [ -120.13791440599999, 50.66585978900013 ], [ -120.133810482999962, 50.664679101000054 ], [ -120.133036709999899, 50.664364302000102 ], [ -120.13108942, 50.663912047000061 ], [ -120.131104671999978, 50.663795558000096 ], [ -120.13053185699999, 50.66378144400008 ], [ -120.130564725999974, 50.663242541000024 ], [ -120.130140789999984, 50.663232095000062 ], [ -120.130124352999957, 50.663501545000095 ], [ -120.129828181999954, 50.663494247000095 ], [ -120.129829029999982, 50.663492802000071 ], [ -120.129882384999988, 50.663295311000113 ], [ -120.12994207499996, 50.663113190000097 ], [ -120.12992866099998, 50.662847664 ], [ -120.131103598999985, 50.663100315000051 ], [ -120.139327400999932, 50.664868364 ], [ -120.143692044999966, 50.665806414000059 ], [ -120.146084129999977, 50.666249507000082 ], [ -120.150714048999959, 50.667209535000055 ], [ -120.152986678999937, 50.667556977000075 ], [ -120.15811636699999, 50.668030049000045 ], [ -120.158734622999958, 50.66810236200007 ], [ -120.161415280000014, 50.668415879000115 ], [ -120.167055273999935, 50.668930607000064 ], [ -120.16848761599999, 50.669054616000096 ], [ -120.171728477999935, 50.669335129000054 ], [ -120.173826853999941, 50.669516689000069 ], [ -120.176180719999962, 50.669720318000039 ], [ -120.176457863999985, 50.66973402700004 ], [ -120.177429731999922, 50.669782053000048 ], [ -120.178744090999913, 50.669756161000088 ], [ -120.182295469999957, 50.669446103000084 ], [ -120.184724916999983, 50.669450097000016 ], [ -120.185767482999935, 50.669451780000124 ], [ -120.187402260999946, 50.669474062000049 ], [ -120.187617613999947, 50.669465877000057 ], [ -120.188984092999959, 50.669413817000105 ], [ -120.190925161999971, 50.669339851000053 ], [ -120.190877432999969, 50.669554144000067 ], [ -120.18939371899998, 50.669834900000076 ], [ -120.190799215999945, 50.669721302000063 ], [ -120.190531438000036, 50.670100011000102 ], [ -120.190531843999977, 50.670156988000066 ], [ -120.189678005999923, 50.670250589000048 ], [ -120.187989786999978, 50.670561097000132 ], [ -120.187268492, 50.670561104000051 ], [ -120.183690018999982, 50.671230499000089 ], [ -120.181346599, 50.671569391000055 ], [ -120.178748880999976, 50.671471091000065 ], [ -120.17734419899989, 50.671301701000075 ], [ -120.176237808999971, 50.67107660500006 ], [ -120.172983008999921, 50.670135189000092 ], [ -120.172189776999929, 50.670024971000018 ], [ -120.172195615999911, 50.66992782200002 ], [ -120.171341371999986, 50.66990707800003 ], [ -120.169529684999986, 50.669655307000056 ], [ -120.168118500999981, 50.669602597000022 ], [ -120.167968691999988, 50.669605690000047 ], [ -120.16797172299999, 50.669555330000087 ], [ -120.167154250999928, 50.669535450000105 ], [ -120.167142890999983, 50.669622743000055 ], [ -120.166118595999961, 50.669643886000117 ], [ -120.163680483999926, 50.669952891000023 ], [ -120.158844814999952, 50.67081600100002 ], [ -120.156199476, 50.671012498000088 ], [ -120.153619296999977, 50.670858711000065 ], [ -120.151966220999924, 50.670588869000056 ], [ -120.151758024999964, 50.670526463000037 ] ], [ [ -120.157116907999963, 50.669355785000043 ], [ -120.157193402999937, 50.668518812000045 ], [ -120.156979661999955, 50.668500134000055 ], [ -120.156810457999967, 50.668485343000079 ], [ -120.155849418999949, 50.668401390000042 ], [ -120.15327977599999, 50.668173602000095 ], [ -120.151556406999958, 50.667937895000094 ], [ -120.149671789999971, 50.667599104000026 ], [ -120.14677724299996, 50.666965152000088 ], [ -120.146615794999931, 50.666929793000122 ], [ -120.145864804999988, 50.666765301000069 ], [ -120.145405387, 50.667650602000023 ], [ -120.145302802999964, 50.667838099000022 ], [ -120.14521890499995, 50.667991397000094 ], [ -120.146685790999939, 50.668722995000088 ], [ -120.147634593999953, 50.669114514000043 ], [ -120.148487226999961, 50.66936210700009 ], [ -120.149675815999927, 50.669592213000072 ], [ -120.15050580299993, 50.669697994000053 ], [ -120.153291610999986, 50.670206802000095 ], [ -120.154253781999955, 50.670311405000071 ], [ -120.154675514999965, 50.670356099000074 ], [ -120.155573792999945, 50.67038431000001 ], [ -120.155848090999896, 50.670285086000035 ], [ -120.157074211999941, 50.670261193000037 ], [ -120.157116907999963, 50.669355785000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114721124", "BldgCostT": "70638351", "sL_LossRatio": "0.973242429095461", "sL_AssetLoss": "8740.401019", "sL_BldgLoss": "8506.529119", "sL_StrLoss": "8421.444119", "sL_NStrLoss": "85.085", "sL_ContLoss": "233.8719", "geom_point": "0101000020E6100000613EFFC1B0095EC0FFA325459A554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.145405387, 50.667650602000023 ], [ -120.145864804999988, 50.666765301000069 ], [ -120.146615794999931, 50.666929793000122 ], [ -120.14677724299996, 50.666965152000088 ], [ -120.149671789999971, 50.667599104000026 ], [ -120.151556406999958, 50.667937895000094 ], [ -120.15327977599999, 50.668173602000095 ], [ -120.155849418999949, 50.668401390000042 ], [ -120.156810457999967, 50.668485343000079 ], [ -120.156979661999955, 50.668500134000055 ], [ -120.157193402999937, 50.668518812000045 ], [ -120.157116907999963, 50.669355785000043 ], [ -120.157074211999941, 50.670261193000037 ], [ -120.155848090999896, 50.670285086000035 ], [ -120.155573792999945, 50.67038431000001 ], [ -120.154675514999965, 50.670356099000074 ], [ -120.154253781999955, 50.670311405000071 ], [ -120.153291610999986, 50.670206802000095 ], [ -120.15050580299993, 50.669697994000053 ], [ -120.149675815999927, 50.669592213000072 ], [ -120.148487226999961, 50.66936210700009 ], [ -120.147634593999953, 50.669114514000043 ], [ -120.146685790999939, 50.668722995000088 ], [ -120.14521890499995, 50.667991397000094 ], [ -120.145302802999964, 50.667838099000022 ], [ -120.145405387, 50.667650602000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61634749", "BldgCostT": "40594999", "sL_LossRatio": "0.9999780316963", "sL_AssetLoss": "6489.941233", "sL_BldgLoss": "6489.79866", "sL_StrLoss": "6489.01126", "sL_NStrLoss": "0.7874", "sL_ContLoss": "0.142573", "geom_point": "0101000020E6100000619DC7B4F8135EC0D1F26EF27C684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.318372059999916, 50.820602362000066 ], [ -120.318381468999945, 50.820528382000077 ], [ -120.31764734099994, 50.820491043000054 ], [ -120.317688130999983, 50.820170400000038 ], [ -120.316591527999947, 50.820114615000058 ], [ -120.316679122, 50.819426170000035 ], [ -120.313886185999976, 50.819284043000103 ], [ -120.313910436999905, 50.819093535000064 ], [ -120.312695957999964, 50.819031711000086 ], [ -120.312831235, 50.817969202000064 ], [ -120.309622958999938, 50.817805816000089 ], [ -120.309541387999928, 50.817746 ], [ -120.308725500999955, 50.817367097000073 ], [ -120.306786409999944, 50.81703528900011 ], [ -120.305767991999943, 50.81696549600013 ], [ -120.30429139599994, 50.816724790000087 ], [ -120.302946599999984, 50.816405812000028 ], [ -120.301582607999947, 50.815924403000039 ], [ -120.300201992, 50.815532912000073 ], [ -120.300427693999964, 50.813763889000015 ], [ -120.300739342999961, 50.813779791000115 ], [ -120.300845723999899, 50.81294589700012 ], [ -120.301679774999954, 50.812988452000077 ], [ -120.301749714, 50.812440117000044 ], [ -120.30741167799998, 50.812728835000065 ], [ -120.307389883000027, 50.812899885000014 ], [ -120.308540152999967, 50.812958505000047 ], [ -120.308521097999972, 50.813108077000024 ], [ -120.309365136999986, 50.813151083000051 ], [ -120.309340730999949, 50.813342679000073 ], [ -120.31438858199995, 50.813599746000108 ], [ -120.314146550999936, 50.815501427000115 ], [ -120.318814264999943, 50.815738930000059 ], [ -120.318790037999946, 50.815929438000076 ], [ -120.320004438999945, 50.815991197000073 ], [ -120.31991690299995, 50.816679647000051 ], [ -120.322709695999919, 50.816821625000046 ], [ -120.322668945999951, 50.817142272000048 ], [ -120.32376548399999, 50.817197997000036 ], [ -120.32375608299995, 50.817271977000082 ], [ -120.32449016299995, 50.817309277000092 ], [ -120.324450361999979, 50.817622558000018 ], [ -120.324645725999972, 50.817632484000086 ], [ -120.324527069999974, 50.817789778000162 ], [ -120.32415406799997, 50.818094361000064 ], [ -120.323973072999976, 50.818242153000014 ], [ -120.322935656999931, 50.819089267000059 ], [ -120.321234857999983, 50.820732785000089 ], [ -120.321218356999964, 50.8207470850001 ], [ -120.318372059999916, 50.820602362000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10005000", "BldgCostT": "6900000", "sL_LossRatio": "1", "sL_AssetLoss": "963.7", "sL_BldgLoss": "963.7", "sL_StrLoss": "963.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FF5DDE717145EC03CD9EE9AE7694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.312711809999911, 50.824991900000086 ], [ -120.317746371999959, 50.825248068000057 ], [ -120.317539889, 50.825550092000114 ], [ -120.317107272999962, 50.826029998000095 ], [ -120.316238986999963, 50.826993103000092 ], [ -120.316017791999926, 50.827204292000026 ], [ -120.31424807499999, 50.828893692000072 ], [ -120.313770427999941, 50.829349621000112 ], [ -120.31323921799995, 50.829856687000124 ], [ -120.312551404999965, 50.830513204000049 ], [ -120.311876653999946, 50.831331355 ], [ -120.31142087299996, 50.831308153000101 ], [ -120.31187698799998, 50.827727287000037 ], [ -120.312360336, 50.827751892000016 ], [ -120.312711809999911, 50.824991900000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47093667", "BldgCostT": "31061667", "sL_LossRatio": "0.989299303888776", "sL_AssetLoss": "7148.61624", "sL_BldgLoss": "7072.12107", "sL_StrLoss": "7038.92097", "sL_NStrLoss": "33.2001", "sL_ContLoss": "76.49517", "geom_point": "0101000020E610000060E35DA278155EC0A17F828B95634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.335832701999919, 50.779545902000059 ], [ -120.33588956899996, 50.77854571500005 ], [ -120.333767671999937, 50.778438005000112 ], [ -120.33376763199999, 50.778438704000081 ], [ -120.332917530999964, 50.778419256000049 ], [ -120.332886851999945, 50.778958242000087 ], [ -120.332036742999975, 50.778938787000108 ], [ -120.332021395999945, 50.779208279000109 ], [ -120.331171282999946, 50.779188818000073 ], [ -120.331140581999975, 50.779727802000089 ], [ -120.331565644999927, 50.77973753400007 ], [ -120.331519599999979, 50.780546012000066 ], [ -120.329819323999942, 50.780507075000116 ], [ -120.329803964999968, 50.780776568000078 ], [ -120.326828474999957, 50.780708369000138 ], [ -120.3268746, 50.779899895000071 ], [ -120.327299662999962, 50.77990964300006 ], [ -120.327358262999951, 50.778882297000074 ], [ -120.327500205999954, 50.778752608000069 ], [ -120.328183767999946, 50.777501315000102 ], [ -120.328288085999986, 50.77750370600004 ], [ -120.328299026999943, 50.777311803000103 ], [ -120.328571595999918, 50.776970516000091 ], [ -120.32874385199996, 50.776974464000027 ], [ -120.328757334999978, 50.776737948000111 ], [ -120.328783230999989, 50.776705523000061 ], [ -120.329184247999933, 50.776714712000121 ], [ -120.329199607999925, 50.776445220000056 ], [ -120.329624640999896, 50.776454958000059 ], [ -120.329656110999963, 50.775902670000093 ], [ -120.330090909999939, 50.775558779000107 ], [ -120.330868603999974, 50.775499111000023 ], [ -120.333670327999968, 50.775493892000107 ], [ -120.33377741299995, 50.775493702000105 ], [ -120.333968422999973, 50.775493430000061 ], [ -120.335473296999979, 50.775491316000085 ], [ -120.33697357599999, 50.775489201000013 ], [ -120.33843919, 50.775494203000051 ], [ -120.339716335999952, 50.775504257000122 ], [ -120.339974996999928, 50.775506291000063 ], [ -120.340074478999938, 50.775506803000063 ], [ -120.34024159799999, 50.775116870000076 ], [ -120.340260393999969, 50.775073007000074 ], [ -120.340956713999987, 50.774058321000041 ], [ -120.34111730099994, 50.773824314000088 ], [ -120.341732209999961, 50.772888745000053 ], [ -120.341979310999989, 50.772512793000033 ], [ -120.343224726999907, 50.772738169000043 ], [ -120.343742223999982, 50.772957182000042 ], [ -120.344124985999883, 50.773216305000112 ], [ -120.343901781999975, 50.773551897000061 ], [ -120.34397960799997, 50.77389369900002 ], [ -120.344556093000023, 50.774512193000106 ], [ -120.34482857799999, 50.77479999800012 ], [ -120.345584087999953, 50.775924413000062 ], [ -120.34433855499995, 50.775890150000073 ], [ -120.344336343999927, 50.775889618000058 ], [ -120.344318327999986, 50.775889598000013 ], [ -120.340276087999968, 50.775886624000059 ], [ -120.340022210999962, 50.775886431000082 ], [ -120.340008003999969, 50.775886426000078 ], [ -120.339922619, 50.775886612000072 ], [ -120.339976501999956, 50.776303809000119 ], [ -120.339967318000021, 50.777253907000066 ], [ -120.339857689999974, 50.77763580000002 ], [ -120.337486376999934, 50.781894609000119 ], [ -120.337213604999945, 50.782384510000021 ], [ -120.335216269999989, 50.785315096000041 ], [ -120.334232455999896, 50.785265164000052 ], [ -120.334686278999982, 50.78168401500006 ], [ -120.334859230999896, 50.781692794000037 ], [ -120.33492179699999, 50.781199019000091 ], [ -120.33512707899996, 50.781209438000133 ], [ -120.335187112999947, 50.780735623000055 ], [ -120.335381175999913, 50.780745473000053 ], [ -120.335433025999919, 50.780336228000081 ], [ -120.335639212999965, 50.780346693000112 ], [ -120.335694138999955, 50.779913134000054 ], [ -120.33577444399999, 50.779917210000058 ], [ -120.335821553999892, 50.779545335000073 ], [ -120.335832701999919, 50.779545902000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47831333", "BldgCostT": "31103333", "sL_LossRatio": "0.977529620361152", "sL_AssetLoss": "3698.20187", "sL_BldgLoss": "3615.10187", "sL_StrLoss": "3585.00187", "sL_NStrLoss": "30.1", "sL_ContLoss": "83.1", "geom_point": "0101000020E6100000743ED92055135EC0593EE490016C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.298130107999967, 50.849942754000033 ], [ -120.29819865099995, 50.849406173000062 ], [ -120.298192447999924, 50.849405856000025 ], [ -120.298311183999914, 50.848476314000067 ], [ -120.298047308000022, 50.848462854000054 ], [ -120.298140591, 50.847732574000112 ], [ -120.298136360999962, 50.847732358 ], [ -120.298593706999966, 50.84415161400009 ], [ -120.298632998999949, 50.844153618000071 ], [ -120.298695396999918, 50.843665023 ], [ -120.298051236999925, 50.84363216400002 ], [ -120.298508546999983, 50.840051403000132 ], [ -120.300718546999974, 50.840164123000086 ], [ -120.300829293999954, 50.839296556000086 ], [ -120.301196743999981, 50.839315293000062 ], [ -120.301452081, 50.837314765000087 ], [ -120.30314148, 50.837400897000087 ], [ -120.30324074399999, 50.836622905000098 ], [ -120.308437629000011, 50.836887699000059 ], [ -120.308276743999926, 50.837124338000052 ], [ -120.30778797399999, 50.837683946000119 ], [ -120.307772686999982, 50.837701434000081 ], [ -120.307289693999948, 50.838079597000011 ], [ -120.306699934999941, 50.838466887000102 ], [ -120.305978205, 50.83894083900001 ], [ -120.30572529899996, 50.839067837000123 ], [ -120.30414741, 50.839860291000065 ], [ -120.304025802999973, 50.839937728000123 ], [ -120.303635339999971, 50.840186484000135 ], [ -120.303338544999946, 50.840467792000034 ], [ -120.303289762999924, 50.840528971000062 ], [ -120.303075488999951, 50.840797673000019 ], [ -120.30289366699999, 50.841250627000058 ], [ -120.302974465999966, 50.842197483000049 ], [ -120.302987489, 50.842350272000083 ], [ -120.303009642999882, 50.842609857000078 ], [ -120.302907342999944, 50.842897500000049 ], [ -120.302673424999952, 50.843200034000141 ], [ -120.301909897999963, 50.843932361000071 ], [ -120.300536408999974, 50.846538363 ], [ -120.300388099000017, 50.847029968000093 ], [ -120.300290920999956, 50.847560510000015 ], [ -120.300239422999979, 50.847915284000088 ], [ -120.300376038999914, 50.847872703000114 ], [ -120.300473237999981, 50.847781236000081 ], [ -120.300606188999964, 50.847499695000081 ], [ -120.300787850999953, 50.847327764000084 ], [ -120.301785270000011, 50.846863336000084 ], [ -120.302080354999987, 50.846673836000072 ], [ -120.302176760999927, 50.84649944500012 ], [ -120.302235298999932, 50.84618617400011 ], [ -120.302349745, 50.845982076000077 ], [ -120.302566782999961, 50.845763212000072 ], [ -120.303432727, 50.845271413000091 ], [ -120.304199783999977, 50.845003242000068 ], [ -120.304497047999988, 50.844941823000049 ], [ -120.304737791999941, 50.844948233000054 ], [ -120.30494163399996, 50.845032945000057 ], [ -120.30532495599999, 50.845358828000052 ], [ -120.30543284499997, 50.845395845000127 ], [ -120.305580132999978, 50.845392541000102 ], [ -120.305686723999955, 50.845339393000131 ], [ -120.30585186199994, 50.845128872000032 ], [ -120.30602619099993, 50.845047646000097 ], [ -120.3063071, 50.845002486000062 ], [ -120.306424608999976, 50.844941806000072 ], [ -120.306499889999913, 50.844687044000068 ], [ -120.306635135999912, 50.844554276000032 ], [ -120.306636609999913, 50.844553619000109 ], [ -120.30635870499999, 50.846732590000038 ], [ -120.306087105999964, 50.846718756000087 ], [ -120.305934454999957, 50.847915498000063 ], [ -120.305722322999941, 50.847904691000068 ], [ -120.305627883999989, 50.848645003000065 ], [ -120.304009786999956, 50.848562566000076 ], [ -120.303796796999904, 50.850231643000036 ], [ -120.299410140999925, 50.850008036000155 ], [ -120.298130107999967, 50.849942754000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50862750", "BldgCostT": "31920000", "sL_LossRatio": "0.993590195563133", "sL_AssetLoss": "3120.22", "sL_BldgLoss": "3100.22", "sL_StrLoss": "3093", "sL_NStrLoss": "7.22", "sL_ContLoss": "20", "geom_point": "0101000020E610000006B0E9BDC8125EC0B70EEDE73D6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.289930804999969, 50.866052299000039 ], [ -120.290014694999982, 50.865396765000114 ], [ -120.28978703599995, 50.865385140000079 ], [ -120.289842682999961, 50.864881603000121 ], [ -120.289833043999948, 50.864854207000107 ], [ -120.28979458799995, 50.864744901000087 ], [ -120.289450007999946, 50.864548395000021 ], [ -120.289460175, 50.864143894000051 ], [ -120.289324188999956, 50.863780704000057 ], [ -120.289610293999928, 50.863490206000094 ], [ -120.28988522, 50.862939005000072 ], [ -120.28992839799993, 50.862436288000019 ], [ -120.29040019199999, 50.862160010000103 ], [ -120.290704808999962, 50.861788191000123 ], [ -120.29073249299999, 50.861331091000139 ], [ -120.291276381999936, 50.860039300000047 ], [ -120.291237482999961, 50.859454005000018 ], [ -120.291457387999969, 50.859126393000047 ], [ -120.291447993999924, 50.858774594000103 ], [ -120.291092812999949, 50.858542502000084 ], [ -120.29109960299995, 50.858182096000057 ], [ -120.291388312, 50.857837487000047 ], [ -120.291774788999987, 50.856092806000106 ], [ -120.292652488999948, 50.853694494000123 ], [ -120.293046190999917, 50.852117637000035 ], [ -120.292595126999956, 50.855645091000092 ], [ -120.292126579999902, 50.855621171000074 ], [ -120.292062584999911, 50.856121547000022 ], [ -120.294178252999927, 50.856229538000079 ], [ -120.297158641999957, 50.856381598000048 ], [ -120.296793602999983, 50.859238143000084 ], [ -120.296701056999922, 50.859962286000055 ], [ -120.296408653999947, 50.859947371000054 ], [ -120.296324534999954, 50.860605517000103 ], [ -120.29629898799999, 50.860805392 ], [ -120.296051829999953, 50.860792786000012 ], [ -120.295947854, 50.861606225000102 ], [ -120.296616321999949, 50.861640322000035 ], [ -120.296158639999959, 50.865220986000104 ], [ -120.295745438, 50.865199910000079 ], [ -120.295599480999968, 50.866341598000091 ], [ -120.290814390999969, 50.866097412000052 ], [ -120.289930804999969, 50.866052299000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43498666", "BldgCostT": "27556666", "sL_LossRatio": "0.988169887736275", "sL_AssetLoss": "3237.500976", "sL_BldgLoss": "3199.200976", "sL_StrLoss": "3185.300976", "sL_NStrLoss": "13.9", "sL_ContLoss": "38.3", "geom_point": "0101000020E610000091CE1311F6145EC0D0383F8B46664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.326635224999961, 50.788592442000066 ], [ -120.331917953999934, 50.788860800000066 ], [ -120.330972371, 50.789703093000114 ], [ -120.330475507, 50.790331096000038 ], [ -120.329983681999934, 50.791019791000046 ], [ -120.329727707999979, 50.791443820000076 ], [ -120.329459130999936, 50.791888801000042 ], [ -120.329340895, 50.792203593000075 ], [ -120.329313174999967, 50.792429938000112 ], [ -120.329301099999924, 50.792528589000078 ], [ -120.32932237899999, 50.792977502000049 ], [ -120.329269290999974, 50.79330639900008 ], [ -120.328818210999913, 50.794145766 ], [ -120.328602628999988, 50.79489080900003 ], [ -120.328501976999959, 50.796305795000137 ], [ -120.32848642499998, 50.796524801000068 ], [ -120.328588518999979, 50.797291363000049 ], [ -120.329324799999981, 50.799244346000108 ], [ -120.329378731999952, 50.799571467000149 ], [ -120.329309639999948, 50.800003169000107 ], [ -120.329241394999954, 50.800429481000066 ], [ -120.32919907199998, 50.802693419000043 ], [ -120.329198886, 50.80297543500005 ], [ -120.329284434999948, 50.803381645000123 ], [ -120.329315310999945, 50.803528288000031 ], [ -120.329289100999944, 50.803891864 ], [ -120.328918612999971, 50.804699975000084 ], [ -120.328316142999981, 50.806013929000109 ], [ -120.328181061999956, 50.807262083000055 ], [ -120.328093524999957, 50.808070488000112 ], [ -120.32757327199991, 50.809700150000054 ], [ -120.32750298299996, 50.810220087000076 ], [ -120.327614547999985, 50.810743835000082 ], [ -120.327612367999947, 50.810767670000089 ], [ -120.327591244999951, 50.810994941000082 ], [ -120.327234036999982, 50.811612043000082 ], [ -120.322663248999945, 50.811379797000015 ], [ -120.322841112999981, 50.809980056 ], [ -120.324291409999972, 50.809603804000076 ], [ -120.32503410799994, 50.809269104000059 ], [ -120.325547412999981, 50.808742092000017 ], [ -120.326180410999939, 50.808333392000115 ], [ -120.326191091999988, 50.80792889 ], [ -120.32678972399999, 50.807278900000043 ], [ -120.32720498499998, 50.806827996000088 ], [ -120.327537895999939, 50.805720007000062 ], [ -120.327687294999947, 50.804590595000036 ], [ -120.327755587999931, 50.804141902000048 ], [ -120.327666790999928, 50.803707602000088 ], [ -120.327670290999933, 50.802898612000078 ], [ -120.328015511999979, 50.801800499000109 ], [ -120.328006205999969, 50.800000283000024 ], [ -120.327710089999982, 50.79846499600005 ], [ -120.327715610999988, 50.797637596000108 ], [ -120.327415892999966, 50.796659088000098 ], [ -120.326698413999978, 50.795284799000086 ], [ -120.326472903999914, 50.794299195000043 ], [ -120.325983596999976, 50.793424805000036 ], [ -120.325336685999901, 50.791551650000081 ], [ -120.325375625999982, 50.791244920000032 ], [ -120.325714182999945, 50.791262128 ], [ -120.32581085, 50.790500627000078 ], [ -120.326389302999985, 50.790530027000038 ], [ -120.326635224999961, 50.788592442000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166998333", "BldgCostT": "107043333", "sL_LossRatio": "0.999909627363262", "sL_AssetLoss": "19368.80524", "sL_BldgLoss": "19367.05483", "sL_StrLoss": "19357.24953", "sL_NStrLoss": "9.8053", "sL_ContLoss": "1.75041", "geom_point": "0101000020E6100000DB2DE15494155EC0A5526830F8624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.334934851999932, 50.771155257 ], [ -120.335367433, 50.770807784000105 ], [ -120.335624874999951, 50.770663169000059 ], [ -120.335889343999966, 50.770586499000068 ], [ -120.336342320999961, 50.770527482000041 ], [ -120.337249288999914, 50.770524874000046 ], [ -120.338835215999936, 50.77053324700011 ], [ -120.339266254, 50.770591157000069 ], [ -120.340032112999964, 50.770803922 ], [ -120.342559308999952, 50.771393409000076 ], [ -120.342718406999964, 50.771396094000131 ], [ -120.341979310999989, 50.772512793000033 ], [ -120.341732209999961, 50.772888745000053 ], [ -120.34111730099994, 50.773824314000088 ], [ -120.340956713999987, 50.774058321000041 ], [ -120.340260393999969, 50.775073007000074 ], [ -120.34024159799999, 50.775116870000076 ], [ -120.340074478999938, 50.775506803000063 ], [ -120.339974996999928, 50.775506291000063 ], [ -120.339716335999952, 50.775504257000122 ], [ -120.33843919, 50.775494203000051 ], [ -120.33697357599999, 50.775489201000013 ], [ -120.335473296999979, 50.775491316000085 ], [ -120.333968422999973, 50.775493430000061 ], [ -120.33377741299995, 50.775493702000105 ], [ -120.333670327999968, 50.775493892000107 ], [ -120.330868603999974, 50.775499111000023 ], [ -120.331693409999957, 50.774606584000082 ], [ -120.33262549899996, 50.773632095000089 ], [ -120.333768210999935, 50.772533199000137 ], [ -120.333887111999928, 50.77241840500006 ], [ -120.334251463, 50.772066677000105 ], [ -120.334471483999934, 50.771644437000063 ], [ -120.334934851999932, 50.771155257 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "69.1", "sL_BldgLoss": "69.1", "sL_StrLoss": "69.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000118AADA0E9165EC069A2748E265E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35786647499999, 50.735985128000038 ], [ -120.357911119000022, 50.73519215600006 ], [ -120.358082568999976, 50.735261205000072 ], [ -120.358127808999981, 50.735278640000097 ], [ -120.358126705999922, 50.735319497 ], [ -120.35817673499993, 50.735656401000035 ], [ -120.358186697999898, 50.735723509000131 ], [ -120.358043787, 50.735773912000091 ], [ -120.357890711, 50.735950900000049 ], [ -120.35786647499999, 50.735985128000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247141501", "BldgCostT": "164130001", "sL_LossRatio": "0.994463682721223", "sL_AssetLoss": "33154.11866", "sL_BldgLoss": "32970.56694", "sL_StrLoss": "32884.51554", "sL_NStrLoss": "86.0514", "sL_ContLoss": "183.55172", "geom_point": "0101000020E610000031B3019ED5155EC02F03EF601B624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.329656110999963, 50.775902670000093 ], [ -120.329676474999957, 50.775545300000026 ], [ -120.329640945999955, 50.775545700000073 ], [ -120.329813703999918, 50.775243294000099 ], [ -120.330153696000011, 50.775018298000106 ], [ -120.330530643999936, 50.774557387000108 ], [ -120.330587371999911, 50.774496542000087 ], [ -120.330587893999905, 50.774487384000068 ], [ -120.330723654999971, 50.774321379000064 ], [ -120.330750120999966, 50.774321985000064 ], [ -120.33080272499997, 50.774265563000093 ], [ -120.331032724999943, 50.773958763000032 ], [ -120.331044646999942, 50.773939809000041 ], [ -120.331045316999905, 50.773928054000102 ], [ -120.331236883999935, 50.77369380600004 ], [ -120.331746379999984, 50.773219491000127 ], [ -120.332313790999962, 50.772719603000034 ], [ -120.332757395999948, 50.772135692000063 ], [ -120.333124899, 50.77190210000002 ], [ -120.333559917999935, 50.771264104000053 ], [ -120.334406096999928, 50.770329803000024 ], [ -120.33503636899999, 50.76983271700005 ], [ -120.335108161999969, 50.769834358000033 ], [ -120.33511163, 50.769773359000098 ], [ -120.335282002999946, 50.769638984000039 ], [ -120.335352991999954, 50.769551261000039 ], [ -120.335552412999931, 50.769304826000095 ], [ -120.335563773999951, 50.769305086000038 ], [ -120.335564648999977, 50.76928970500007 ], [ -120.335739518999929, 50.769073606000063 ], [ -120.335795730999948, 50.769040545000074 ], [ -120.336004059999965, 50.769045306000081 ], [ -120.336011543999987, 50.768913611000066 ], [ -120.336237360999974, 50.768780794000058 ], [ -120.336444340999947, 50.76878552400008 ], [ -120.336454705999955, 50.768603117000112 ], [ -120.336701595999926, 50.768385689000098 ], [ -120.336830752999944, 50.768254667000114 ], [ -120.336899927999923, 50.76825624600005 ], [ -120.336904253999933, 50.768180104000116 ], [ -120.33735102899999, 50.767726864000075 ], [ -120.337355503999973, 50.767726968000062 ], [ -120.337355782999936, 50.767722041000084 ], [ -120.33761116099997, 50.767462964000039 ], [ -120.337795765999957, 50.767467179000022 ], [ -120.337807304999899, 50.767263975000077 ], [ -120.33784571699999, 50.76722500500005 ], [ -120.338157296999981, 50.766935749000041 ], [ -120.338251323999955, 50.766937896000094 ], [ -120.338256684999948, 50.766843481000066 ], [ -120.338413287999941, 50.766698096000049 ], [ -120.338460017, 50.766672819000078 ], [ -120.338895567999941, 50.766682764000052 ], [ -120.33913354399999, 50.766387860000044 ], [ -120.339140275999966, 50.766269246000014 ], [ -120.339563208999948, 50.765958892000072 ], [ -120.33983669, 50.765632698000083 ], [ -120.339944993999922, 50.764735498000071 ], [ -120.340476400999975, 50.764342395000014 ], [ -120.340960182999979, 50.76382399400007 ], [ -120.341238295999986, 50.763270923000022 ], [ -120.341367904999942, 50.763013170000107 ], [ -120.341394532999956, 50.762978298000114 ], [ -120.34178158899999, 50.762592095000095 ], [ -120.34228059699997, 50.761784513000123 ], [ -120.34272264899991, 50.760905867000098 ], [ -120.342861694999939, 50.760668073000012 ], [ -120.342864159, 50.76062458800007 ], [ -120.344182118999981, 50.75800470100009 ], [ -120.344319050999971, 50.757570635000057 ], [ -120.345172678999973, 50.757333392000113 ], [ -120.346065713999934, 50.757315500000111 ], [ -120.34610150599994, 50.758596896000043 ], [ -120.346130706999986, 50.759603887000068 ], [ -120.346174193999971, 50.761038811000041 ], [ -120.346185806, 50.761363800000041 ], [ -120.345873793999914, 50.76183910600011 ], [ -120.345555904999969, 50.762327499000044 ], [ -120.345300610999985, 50.762715608000043 ], [ -120.34519765099999, 50.762874497000084 ], [ -120.344955794999919, 50.763247700000129 ], [ -120.344663715999943, 50.763700579000037 ], [ -120.344367309999953, 50.764154086000048 ], [ -120.343811392999953, 50.76500528800009 ], [ -120.343518982999953, 50.765516704000113 ], [ -120.345080109999927, 50.765505802000163 ], [ -120.346454794999914, 50.765495227 ], [ -120.346492135999952, 50.765495038000054 ], [ -120.346617126999931, 50.765494448000013 ], [ -120.34599832, 50.766427206000074 ], [ -120.344746812999929, 50.768317 ], [ -120.34446261899997, 50.768746195000098 ], [ -120.344185681999988, 50.769169218000037 ], [ -120.34388101399999, 50.769631285000031 ], [ -120.343305483, 50.770503590000061 ], [ -120.343300004999918, 50.770511883000083 ], [ -120.343164053999928, 50.770718552000105 ], [ -120.342718406999964, 50.771396094000131 ], [ -120.342559308999952, 50.771393409000076 ], [ -120.340032112999964, 50.770803922 ], [ -120.339266254, 50.770591157000069 ], [ -120.338835215999936, 50.77053324700011 ], [ -120.337249288999914, 50.770524874000046 ], [ -120.336342320999961, 50.770527482000041 ], [ -120.335889343999966, 50.770586499000068 ], [ -120.335624874999951, 50.770663169000059 ], [ -120.335367433, 50.770807784000105 ], [ -120.334934851999932, 50.771155257 ], [ -120.334471483999934, 50.771644437000063 ], [ -120.334251463, 50.772066677000105 ], [ -120.333887111999928, 50.77241840500006 ], [ -120.333768210999935, 50.772533199000137 ], [ -120.33262549899996, 50.773632095000089 ], [ -120.331693409999957, 50.774606584000082 ], [ -120.330868603999974, 50.775499111000023 ], [ -120.330090909999939, 50.775558779000107 ], [ -120.329656110999963, 50.775902670000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160336228", "BldgCostT": "101429857", "sL_LossRatio": "0.99245420956744", "sL_AssetLoss": "11224.801531", "sL_BldgLoss": "11140.101531", "sL_StrLoss": "11109.501531", "sL_NStrLoss": "30.6", "sL_ContLoss": "84.7", "geom_point": "0101000020E6100000AFEA7ADC56165EC0EF702A0854624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.343305483, 50.770503590000061 ], [ -120.34388101399999, 50.769631285000031 ], [ -120.344185681999988, 50.769169218000037 ], [ -120.34446261899997, 50.768746195000098 ], [ -120.344746812999929, 50.768317 ], [ -120.34599832, 50.766427206000074 ], [ -120.346617126999931, 50.765494448000013 ], [ -120.348519286999988, 50.765509697000013 ], [ -120.349194486999963, 50.765516001000101 ], [ -120.350637619999972, 50.765526904000069 ], [ -120.351782222999958, 50.765535303000043 ], [ -120.353230794999916, 50.765536511000086 ], [ -120.353235627999979, 50.766459773000051 ], [ -120.353243188999983, 50.767906899000153 ], [ -120.35335689099999, 50.768088386000045 ], [ -120.353873098999941, 50.768497394000057 ], [ -120.353873807999989, 50.768717293000066 ], [ -120.353877108999953, 50.768916616000055 ], [ -120.353473687999937, 50.769319552000084 ], [ -120.352945501999926, 50.769847106000086 ], [ -120.35213931, 50.770674900000103 ], [ -120.35178512399996, 50.770549804000083 ], [ -120.343495618999981, 50.770551508000082 ], [ -120.343300004999918, 50.770511883000083 ], [ -120.343305483, 50.770503590000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123525501", "BldgCostT": "85190001", "sL_LossRatio": "1", "sL_AssetLoss": "10914.9", "sL_BldgLoss": "10914.9", "sL_StrLoss": "10914.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE253A8950165EC0AFE59D5CB6624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.345584087999953, 50.775924413000062 ], [ -120.34482857799999, 50.77479999800012 ], [ -120.344556093000023, 50.774512193000106 ], [ -120.34397960799997, 50.77389369900002 ], [ -120.343901781999975, 50.773551897000061 ], [ -120.344124985999883, 50.773216305000112 ], [ -120.343742223999982, 50.772957182000042 ], [ -120.343224726999907, 50.772738169000043 ], [ -120.341979310999989, 50.772512793000033 ], [ -120.342718406999964, 50.771396094000131 ], [ -120.343164053999928, 50.770718552000105 ], [ -120.343300004999918, 50.770511883000083 ], [ -120.343495618999981, 50.770551508000082 ], [ -120.35178512399996, 50.770549804000083 ], [ -120.35213931, 50.770674900000103 ], [ -120.352945501999926, 50.769847106000086 ], [ -120.353473687999937, 50.769319552000084 ], [ -120.353877108999953, 50.768916616000055 ], [ -120.353873807999989, 50.768717293000066 ], [ -120.353873098999941, 50.768497394000057 ], [ -120.35335689099999, 50.768088386000045 ], [ -120.353243188999983, 50.767906899000153 ], [ -120.353235627999979, 50.766459773000051 ], [ -120.353230794999916, 50.765536511000086 ], [ -120.354417578, 50.76553710400006 ], [ -120.354686672999904, 50.765524603000109 ], [ -120.354700912999959, 50.76552382000007 ], [ -120.354984795999968, 50.765508217000054 ], [ -120.355586094999964, 50.765564846000132 ], [ -120.35578736899997, 50.764772067000088 ], [ -120.355792915999942, 50.764652187000145 ], [ -120.356342314999935, 50.764716306000082 ], [ -120.356670679999922, 50.764758197000035 ], [ -120.35658511099993, 50.766275767000096 ], [ -120.35616016299997, 50.766266128000083 ], [ -120.356144963999924, 50.766535627000081 ], [ -120.355295062, 50.76651634500007 ], [ -120.355279857999918, 50.766785843000036 ], [ -120.354854905999957, 50.76677620000001 ], [ -120.354839698999967, 50.767045698000125 ], [ -120.35441474199996, 50.767036053000041 ], [ -120.354399533999953, 50.767305552000067 ], [ -120.353974577, 50.767295905000033 ], [ -120.353944149999961, 50.767834901000121 ], [ -120.354369112999962, 50.767844547000031 ], [ -120.354353902999932, 50.768114045000068 ], [ -120.354778868999986, 50.768123690000024 ], [ -120.354702823999929, 50.769471180000053 ], [ -120.354277845999917, 50.769461534000129 ], [ -120.354262634999927, 50.769731032000067 ], [ -120.353837654999921, 50.769721385000054 ], [ -120.353807225999972, 50.770260380000074 ], [ -120.353382243999974, 50.77025073100009 ], [ -120.353367025999916, 50.770520229000113 ], [ -120.352942038999942, 50.770510578000042 ], [ -120.352911597999963, 50.771049574000045 ], [ -120.352496041999984, 50.771040135000064 ], [ -120.352485955999953, 50.771051482000132 ], [ -120.352456162999928, 50.771578915000049 ], [ -120.352031166999922, 50.771569260000064 ], [ -120.352015939999959, 50.771838758000158 ], [ -120.351590943999952, 50.771829102000048 ], [ -120.351560486999944, 50.772368096000058 ], [ -120.350980818999986, 50.772354925000059 ], [ -120.350695289999948, 50.77261754000007 ], [ -120.350680013999977, 50.772887775000072 ], [ -120.350408189999925, 50.772881595000072 ], [ -120.350246397999925, 50.773030400000032 ], [ -120.350239771999952, 50.773147611000098 ], [ -120.350121869999938, 50.773144930000029 ], [ -120.34979749699994, 50.773443257000046 ], [ -120.349784282999963, 50.773676940000051 ], [ -120.349549218999954, 50.773671596000078 ], [ -120.349536423999908, 50.773683363000018 ], [ -120.349410424, 50.773726764000045 ], [ -120.348501947999964, 50.77377691300007 ], [ -120.34849399699999, 50.773917440000098 ], [ -120.347643967999943, 50.773898100000061 ], [ -120.347628715000013, 50.77416759700003 ], [ -120.346937969999914, 50.774151877000044 ], [ -120.346773994999921, 50.774231024000116 ], [ -120.346763423, 50.774417747000051 ], [ -120.346487187999969, 50.774411459000135 ], [ -120.346405025999942, 50.774470264000087 ], [ -120.346333408999939, 50.774496297000105 ], [ -120.346307883999927, 50.774947063000042 ], [ -120.345882858999985, 50.774937386000026 ], [ -120.345861744000018, 50.775310206000078 ], [ -120.345864425999963, 50.77531166300006 ], [ -120.346004923999928, 50.775499964000069 ], [ -120.346047375999945, 50.7757506620001 ], [ -120.346262100999937, 50.775755551000017 ], [ -120.346253053999959, 50.775915311000105 ], [ -120.345584087999953, 50.775924413000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62330001", "BldgCostT": "38300001", "sL_LossRatio": "1", "sL_AssetLoss": "3771.4", "sL_BldgLoss": "3771.4", "sL_StrLoss": "3771.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C114DD61F0165EC061F9F36D415F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35595141099999, 50.750111240000059 ], [ -120.356359917999939, 50.749692222000107 ], [ -120.356973645999972, 50.749236681000085 ], [ -120.357572336999908, 50.748798422000029 ], [ -120.357940166999981, 50.748442178000126 ], [ -120.35822093899999, 50.748077051000031 ], [ -120.358423037999941, 50.747557442000101 ], [ -120.358491624999886, 50.747092357000078 ], [ -120.358389082999949, 50.746517698000083 ], [ -120.358227925, 50.746159939000087 ], [ -120.358197503999975, 50.746119055000108 ], [ -120.357795902999953, 50.745579706000058 ], [ -120.357641594999933, 50.74537248700009 ], [ -120.357431070999922, 50.7449888 ], [ -120.357353559999964, 50.744633449000069 ], [ -120.357307351999964, 50.744435576000051 ], [ -120.357148061999965, 50.742291993000087 ], [ -120.357238682999935, 50.741878503000109 ], [ -120.357505584999956, 50.741397301000063 ], [ -120.357510366999975, 50.741388816000054 ], [ -120.357743499999941, 50.740976842000094 ], [ -120.357954563999925, 50.740600070000077 ], [ -120.358060205999905, 50.740190918000117 ], [ -120.358151739999926, 50.739577406000116 ], [ -120.358256133999987, 50.738869639000015 ], [ -120.358279035999971, 50.738714335000019 ], [ -120.358326868999896, 50.738389454000071 ], [ -120.358476713999949, 50.737371816000049 ], [ -120.358467416999972, 50.736655903000027 ], [ -120.358333040999938, 50.73572562600004 ], [ -120.358322656999931, 50.735653543000026 ], [ -120.358276793999906, 50.735335989000035 ], [ -120.358645213, 50.735340274000102 ], [ -120.360452873999961, 50.735361162000068 ], [ -120.360427208999923, 50.735817437000073 ], [ -120.360566424999931, 50.735846263000063 ], [ -120.36062854, 50.735875083000089 ], [ -120.36084890299999, 50.7358800740001 ], [ -120.360841825999984, 50.736005914000039 ], [ -120.361006894999917, 50.736153497000046 ], [ -120.361258425, 50.736159192000045 ], [ -120.361244096999954, 50.736413993000049 ], [ -120.361366124999918, 50.736584663000087 ], [ -120.361419841999933, 50.736702536000116 ], [ -120.361652798999927, 50.73670781000007 ], [ -120.361627479999967, 50.737158158000049 ], [ -120.361637325999965, 50.737179763000064 ], [ -120.361731024999969, 50.737949863000047 ], [ -120.361715124999975, 50.738042463000028 ], [ -120.361599625999958, 50.738171463000072 ], [ -120.361566228999919, 50.73824754700005 ], [ -120.36154673099999, 50.738594316000075 ], [ -120.36139865200002, 50.738590964000075 ], [ -120.361227824999972, 50.738869763000068 ], [ -120.361087620999939, 50.739196598000056 ], [ -120.361061407999941, 50.739662702000054 ], [ -120.360574300999957, 50.73965167100004 ], [ -120.360191583999921, 50.742688672000043 ], [ -120.360041085999939, 50.742681060000074 ], [ -120.359969373999917, 50.743955470000103 ], [ -120.359731233999952, 50.743950075000036 ], [ -120.359505613999914, 50.74463900500011 ], [ -120.359468784999962, 50.745293347 ], [ -120.359893545999952, 50.745302970000097 ], [ -120.359726702, 50.748267472000066 ], [ -120.359301914999918, 50.748257847000069 ], [ -120.359271570999951, 50.74879684700003 ], [ -120.358905345, 50.7487885480001 ], [ -120.358899124999965, 50.748808663 ], [ -120.358838033999987, 50.748942533000012 ], [ -120.358786079999959, 50.749865220000054 ], [ -120.359210881999957, 50.749874846000083 ], [ -120.359165360999924, 50.750683346000095 ], [ -120.358740552999961, 50.750673719000069 ], [ -120.358725376999985, 50.750943218 ], [ -120.35787575699996, 50.750923960000094 ], [ -120.357799847999985, 50.752271457000049 ], [ -120.357548127999962, 50.752265750000092 ], [ -120.35694434199992, 50.752356240000012 ], [ -120.356935016999955, 50.75252169000003 ], [ -120.35651019299999, 50.75251205600005 ], [ -120.356467260999977, 50.753273752000013 ], [ -120.35528161399999, 50.753277908000022 ], [ -120.352912212999968, 50.753259791000076 ], [ -120.353783309999926, 50.752355077000104 ], [ -120.35479913399999, 50.75130628900007 ], [ -120.355419505999933, 50.750662794000107 ], [ -120.35595141099999, 50.750111240000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24732833", "BldgCostT": "16793333", "sL_LossRatio": "1", "sL_AssetLoss": "2679.8", "sL_BldgLoss": "2679.8", "sL_StrLoss": "2679.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EF44C50F40145EC059A0FE2F2E6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.312398060999925, 50.831916675000066 ], [ -120.312401248999933, 50.831861193000115 ], [ -120.311846652999975, 50.83183296300011 ], [ -120.311910326999964, 50.831333069000081 ], [ -120.311876653999946, 50.831331355 ], [ -120.312551404999965, 50.830513204000049 ], [ -120.31323921799995, 50.829856687000124 ], [ -120.313770427999941, 50.829349621000112 ], [ -120.31424807499999, 50.828893692000072 ], [ -120.316017791999926, 50.827204292000026 ], [ -120.316238986999963, 50.826993103000092 ], [ -120.317107272999962, 50.826029998000095 ], [ -120.317539889, 50.825550092000114 ], [ -120.317746371999959, 50.825248068000057 ], [ -120.318375432999986, 50.825280060000118 ], [ -120.318176301999983, 50.826845356000092 ], [ -120.31907281799991, 50.826890943000102 ], [ -120.318932502999957, 50.827994013000101 ], [ -120.319627176000012, 50.828029330000057 ], [ -120.319171678999979, 50.831610226000052 ], [ -120.317586408999915, 50.831529622000076 ], [ -120.317511134999975, 50.832121164000071 ], [ -120.313675799999928, 50.831926059000061 ], [ -120.313674648999964, 50.831946092000059 ], [ -120.312398060999925, 50.831916675000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12685083", "BldgCostT": "8748333", "sL_LossRatio": "1", "sL_AssetLoss": "1129.5", "sL_BldgLoss": "1129.5", "sL_StrLoss": "1129.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000471210D5CC145EC04D80274EEA684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.321555945999975, 50.821079548000107 ], [ -120.321595770999934, 50.82076627000005 ], [ -120.321218356999964, 50.8207470850001 ], [ -120.321234857999983, 50.820732785000089 ], [ -120.322935656999931, 50.819089267000059 ], [ -120.323973072999976, 50.818242153000014 ], [ -120.32415406799997, 50.818094361000064 ], [ -120.324527069999974, 50.817789778000162 ], [ -120.324645725999972, 50.817632484000086 ], [ -120.327673878999974, 50.817786291000075 ], [ -120.327268670999928, 50.82097718000005 ], [ -120.327219129999918, 50.821367262000102 ], [ -120.321555945999975, 50.821079548000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76266917", "BldgCostT": "49891667", "sL_LossRatio": "1", "sL_AssetLoss": "5680", "sL_BldgLoss": "5680", "sL_StrLoss": "5680", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D19BFEAA2B155EC05F4F956B61664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.328316142999981, 50.806013929000109 ], [ -120.328918612999971, 50.804699975000084 ], [ -120.329289100999944, 50.803891864 ], [ -120.329315310999945, 50.803528288000031 ], [ -120.329284434999948, 50.803381645000123 ], [ -120.329198886, 50.80297543500005 ], [ -120.32919907199998, 50.802693419000043 ], [ -120.329241394999954, 50.800429481000066 ], [ -120.329309639999948, 50.800003169000107 ], [ -120.329378731999952, 50.799571467000149 ], [ -120.329324799999981, 50.799244346000108 ], [ -120.328588518999979, 50.797291363000049 ], [ -120.32848642499998, 50.796524801000068 ], [ -120.328501976999959, 50.796305795000137 ], [ -120.328602628999988, 50.79489080900003 ], [ -120.328818210999913, 50.794145766 ], [ -120.329269290999974, 50.79330639900008 ], [ -120.32932237899999, 50.792977502000049 ], [ -120.329301099999924, 50.792528589000078 ], [ -120.329313174999967, 50.792429938000112 ], [ -120.329340895, 50.792203593000075 ], [ -120.329459130999936, 50.791888801000042 ], [ -120.329727707999979, 50.791443820000076 ], [ -120.329983681999934, 50.791019791000046 ], [ -120.330475507, 50.790331096000038 ], [ -120.330972371, 50.789703093000114 ], [ -120.331917953999934, 50.788860800000066 ], [ -120.332294335, 50.788879911000038 ], [ -120.332036260999956, 50.790915255000137 ], [ -120.333108547999956, 50.790969692000054 ], [ -120.332940885999932, 50.792292141000111 ], [ -120.333461827999955, 50.792318584000043 ], [ -120.333400273999956, 50.79280411000007 ], [ -120.33368535399994, 50.792818580000073 ], [ -120.33356113499994, 50.793798432000052 ], [ -120.33360942299997, 50.793800883000053 ], [ -120.333542162999919, 50.794331433000075 ], [ -120.333751953999965, 50.794342081000138 ], [ -120.333705707999954, 50.794706869000045 ], [ -120.333956072999953, 50.79471957600007 ], [ -120.333891963999974, 50.795225279000071 ], [ -120.334177500999957, 50.795239770000073 ], [ -120.333723499999977, 50.79882086100006 ], [ -120.333264957999972, 50.798797590000106 ], [ -120.333196906999888, 50.799334272000088 ], [ -120.332906162999933, 50.799319516000097 ], [ -120.33265309799999, 50.80131508 ], [ -120.331607919999939, 50.801262028000082 ], [ -120.331597137999935, 50.801347040000067 ], [ -120.331875003999968, 50.801361145000037 ], [ -120.331702079999971, 50.802724457000103 ], [ -120.33172760299999, 50.802725752000136 ], [ -120.331382449000017, 50.80544666400008 ], [ -120.332502962999968, 50.805503536000074 ], [ -120.332048724999936, 50.809084577000085 ], [ -120.3304246, 50.809002141000072 ], [ -120.330323391999926, 50.809799716000057 ], [ -120.329455798999945, 50.809755669000069 ], [ -120.329257132999913, 50.81132093700009 ], [ -120.328374888999946, 50.811276140000096 ], [ -120.328325212999985, 50.811667458000102 ], [ -120.327234036999982, 50.811612043000082 ], [ -120.327591244999951, 50.810994941000082 ], [ -120.327612367999947, 50.810767670000089 ], [ -120.327614547999985, 50.810743835000082 ], [ -120.32750298299996, 50.810220087000076 ], [ -120.32757327199991, 50.809700150000054 ], [ -120.328093524999957, 50.808070488000112 ], [ -120.328181061999956, 50.807262083000055 ], [ -120.328316142999981, 50.806013929000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29092583", "BldgCostT": "19328333", "sL_LossRatio": "1", "sL_AssetLoss": "2800.3", "sL_BldgLoss": "2800.3", "sL_StrLoss": "2800.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ABEDA2BF82135EC04F2C4BCFCF6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.300536408999974, 50.846538363 ], [ -120.301909897999963, 50.843932361000071 ], [ -120.302673424999952, 50.843200034000141 ], [ -120.302907342999944, 50.842897500000049 ], [ -120.303009642999882, 50.842609857000078 ], [ -120.302987489, 50.842350272000083 ], [ -120.302974465999966, 50.842197483000049 ], [ -120.30289366699999, 50.841250627000058 ], [ -120.303075488999951, 50.840797673000019 ], [ -120.303289762999924, 50.840528971000062 ], [ -120.303338544999946, 50.840467792000034 ], [ -120.303635339999971, 50.840186484000135 ], [ -120.304025802999973, 50.839937728000123 ], [ -120.30414741, 50.839860291000065 ], [ -120.30572529899996, 50.839067837000123 ], [ -120.305978205, 50.83894083900001 ], [ -120.306699934999941, 50.838466887000102 ], [ -120.307289693999948, 50.838079597000011 ], [ -120.307772686999982, 50.837701434000081 ], [ -120.30778797399999, 50.837683946000119 ], [ -120.308276743999926, 50.837124338000052 ], [ -120.308437629000011, 50.836887699000059 ], [ -120.308905776999936, 50.836911540000131 ], [ -120.308449330999963, 50.840492356000048 ], [ -120.30675980299999, 50.840406304000112 ], [ -120.306660592999918, 50.84118429500009 ], [ -120.30653679199996, 50.841177989000116 ], [ -120.306288491000018, 50.843124971000137 ], [ -120.306815381000021, 50.843151809000091 ], [ -120.306636609999913, 50.844553619000109 ], [ -120.306635135999912, 50.844554276000032 ], [ -120.306499889999913, 50.844687044000068 ], [ -120.306424608999976, 50.844941806000072 ], [ -120.3063071, 50.845002486000062 ], [ -120.30602619099993, 50.845047646000097 ], [ -120.30585186199994, 50.845128872000032 ], [ -120.305686723999955, 50.845339393000131 ], [ -120.305580132999978, 50.845392541000102 ], [ -120.30543284499997, 50.845395845000127 ], [ -120.30532495599999, 50.845358828000052 ], [ -120.30494163399996, 50.845032945000057 ], [ -120.304737791999941, 50.844948233000054 ], [ -120.304497047999988, 50.844941823000049 ], [ -120.304199783999977, 50.845003242000068 ], [ -120.303432727, 50.845271413000091 ], [ -120.302566782999961, 50.845763212000072 ], [ -120.302349745, 50.845982076000077 ], [ -120.302235298999932, 50.84618617400011 ], [ -120.302176760999927, 50.84649944500012 ], [ -120.302080354999987, 50.846673836000072 ], [ -120.301785270000011, 50.846863336000084 ], [ -120.300787850999953, 50.847327764000084 ], [ -120.300606188999964, 50.847499695000081 ], [ -120.300473237999981, 50.847781236000081 ], [ -120.300376038999914, 50.847872703000114 ], [ -120.300239422999979, 50.847915284000088 ], [ -120.300290920999956, 50.847560510000015 ], [ -120.300388099000017, 50.847029968000093 ], [ -120.300536408999974, 50.846538363 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37421000", "BldgCostT": "25280000", "sL_LossRatio": "1", "sL_AssetLoss": "4003.8", "sL_BldgLoss": "4003.8", "sL_StrLoss": "4003.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A946333FCC155EC00820F7A5E5634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.339967318000021, 50.777253907000066 ], [ -120.339976501999956, 50.776303809000119 ], [ -120.339922619, 50.775886612000072 ], [ -120.340008003999969, 50.775886426000078 ], [ -120.340022210999962, 50.775886431000082 ], [ -120.340276087999968, 50.775886624000059 ], [ -120.344318327999986, 50.775889598000013 ], [ -120.344336343999927, 50.775889618000058 ], [ -120.34433855499995, 50.775890150000073 ], [ -120.345584087999953, 50.775924413000062 ], [ -120.346253053999959, 50.775915311000105 ], [ -120.346201054999938, 50.776833534000062 ], [ -120.345795249999981, 50.77682429400005 ], [ -120.345831025999971, 50.77694036300003 ], [ -120.34575953399991, 50.777114810000114 ], [ -120.345745484999924, 50.777362848000031 ], [ -120.345320437999973, 50.777353168000033 ], [ -120.345289903999969, 50.777892159000018 ], [ -120.345714953999945, 50.777901839000066 ], [ -120.345669156999961, 50.778710326000123 ], [ -120.343968928, 50.778671597000049 ], [ -120.344060578999972, 50.777054625000062 ], [ -120.343373832999987, 50.7770389760001 ], [ -120.343155942999942, 50.778761286000076 ], [ -120.343155653999986, 50.778761271000036 ], [ -120.343054083999959, 50.779564087000033 ], [ -120.342803436999958, 50.779551383000125 ], [ -120.342713308999933, 50.780263693000094 ], [ -120.342407989, 50.780248216000096 ], [ -120.342338723999916, 50.780795601000108 ], [ -120.342237776999923, 50.780790484000065 ], [ -120.342164150999935, 50.781372304000094 ], [ -120.341970595999939, 50.78136249100001 ], [ -120.341916264999966, 50.781791809000069 ], [ -120.341774124999986, 50.781784603000062 ], [ -120.341716779999928, 50.78223771200004 ], [ -120.341555004999947, 50.782229510000072 ], [ -120.34150069699993, 50.78265861600007 ], [ -120.341396491999916, 50.782653333000034 ], [ -120.341340714999944, 50.783094018000064 ], [ -120.341068509999928, 50.78308021800008 ], [ -120.341026319999912, 50.783413526000054 ], [ -120.340946008999978, 50.783409453000026 ], [ -120.340898935999974, 50.783781328000053 ], [ -120.340692732999983, 50.783770873000023 ], [ -120.340637849999951, 50.784204432000074 ], [ -120.340443768999975, 50.784194592000084 ], [ -120.340391960999952, 50.784603837000077 ], [ -120.340186661999937, 50.784593427000075 ], [ -120.340126675999983, 50.785067243000086 ], [ -120.339953710999978, 50.785058472000081 ], [ -120.339891194999936, 50.785552247000076 ], [ -120.335216269999989, 50.785315096000041 ], [ -120.337213604999945, 50.782384510000021 ], [ -120.337486376999934, 50.781894609000119 ], [ -120.339857689999974, 50.77763580000002 ], [ -120.339967318000021, 50.777253907000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "334353001", "BldgCostT": "215760001", "sL_LossRatio": "0.9999921208999", "sL_AssetLoss": "30712.7840641", "sL_BldgLoss": "30712.542075", "sL_StrLoss": "30710.077155", "sL_NStrLoss": "2.46492", "sL_ContLoss": "0.2419891", "geom_point": "0101000020E61000001383E94993165EC03C49671E48614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.346454794999914, 50.765495227 ], [ -120.347644166999956, 50.763707443000058 ], [ -120.347713268999925, 50.763693964000076 ], [ -120.347787171999968, 50.763679538000098 ], [ -120.348702605999961, 50.76234729599999 ], [ -120.348901795999936, 50.76189702200007 ], [ -120.348986006999922, 50.76138848700009 ], [ -120.348991910999942, 50.760496785000079 ], [ -120.348994990999955, 50.759965308000119 ], [ -120.348993403999941, 50.759594900000117 ], [ -120.348993539999981, 50.759523853000125 ], [ -120.348994612999917, 50.75901062500008 ], [ -120.348997201999978, 50.757762301000099 ], [ -120.349074806999951, 50.757418500000085 ], [ -120.349146071999954, 50.757304903000048 ], [ -120.349339603999951, 50.757011985000112 ], [ -120.34967329, 50.756656803000077 ], [ -120.3505234799999, 50.755760902000105 ], [ -120.350720621999926, 50.755554143000033 ], [ -120.351600997999981, 50.754630583000043 ], [ -120.352912212999968, 50.753259791000076 ], [ -120.35528161399999, 50.753277908000022 ], [ -120.356467260999977, 50.753273752000013 ], [ -120.356368660999976, 50.755022960000105 ], [ -120.356430684000017, 50.755748375000124 ], [ -120.356752753999899, 50.75575567900011 ], [ -120.356722372999968, 50.756294677000056 ], [ -120.3571472309999, 50.756304312000069 ], [ -120.356980147999948, 50.759268802000086 ], [ -120.356697474000015, 50.759262391000043 ], [ -120.356712624, 50.75940656300002 ], [ -120.356671825999953, 50.759554963 ], [ -120.356534077999953, 50.759634934000111 ], [ -120.356524877000012, 50.759798163000063 ], [ -120.356099984999915, 50.759788525000083 ], [ -120.356069592999972, 50.760327523000079 ], [ -120.355644697999949, 50.760317882000031 ], [ -120.355599100999939, 50.761126378000085 ], [ -120.356024002999973, 50.76113601800008 ], [ -120.355948014999981, 50.762483511000028 ], [ -120.356797842999967, 50.762502785999985 ], [ -120.356670679999922, 50.764758197000035 ], [ -120.356342314999935, 50.764716306000082 ], [ -120.355792915999942, 50.764652187000145 ], [ -120.35578736899997, 50.764772067000088 ], [ -120.355586094999964, 50.765564846000132 ], [ -120.354984795999968, 50.765508217000054 ], [ -120.354700912999959, 50.76552382000007 ], [ -120.354686672999904, 50.765524603000109 ], [ -120.354417578, 50.76553710400006 ], [ -120.353230794999916, 50.765536511000086 ], [ -120.351782222999958, 50.765535303000043 ], [ -120.350637619999972, 50.765526904000069 ], [ -120.349194486999963, 50.765516001000101 ], [ -120.348519286999988, 50.765509697000013 ], [ -120.346617126999931, 50.765494448000013 ], [ -120.346492135999952, 50.765495038000054 ], [ -120.346454794999914, 50.765495227 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203401622", "BldgCostT": "128961380", "sL_LossRatio": "0.994603583251005", "sL_AssetLoss": "16418.302018", "sL_BldgLoss": "16329.702018", "sL_StrLoss": "16297.602018", "sL_NStrLoss": "32.1", "sL_ContLoss": "88.6", "geom_point": "0101000020E610000001997C3746165EC0AF8EEBF812614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.353578608999982, 50.752398766000113 ], [ -120.353783309999926, 50.752355077000104 ], [ -120.352912212999968, 50.753259791000076 ], [ -120.351600997999981, 50.754630583000043 ], [ -120.350720621999926, 50.755554143000033 ], [ -120.3505234799999, 50.755760902000105 ], [ -120.34967329, 50.756656803000077 ], [ -120.349339603999951, 50.757011985000112 ], [ -120.349146071999954, 50.757304903000048 ], [ -120.349074806999951, 50.757418500000085 ], [ -120.348997201999978, 50.757762301000099 ], [ -120.348994612999917, 50.75901062500008 ], [ -120.348993539999981, 50.759523853000125 ], [ -120.348993403999941, 50.759594900000117 ], [ -120.348994990999955, 50.759965308000119 ], [ -120.348991910999942, 50.760496785000079 ], [ -120.348986006999922, 50.76138848700009 ], [ -120.348901795999936, 50.76189702200007 ], [ -120.348702605999961, 50.76234729599999 ], [ -120.347787171999968, 50.763679538000098 ], [ -120.347713268999925, 50.763693964000076 ], [ -120.347644166999956, 50.763707443000058 ], [ -120.346454794999914, 50.765495227 ], [ -120.345080109999927, 50.765505802000163 ], [ -120.343518982999953, 50.765516704000113 ], [ -120.343811392999953, 50.76500528800009 ], [ -120.344367309999953, 50.764154086000048 ], [ -120.344663715999943, 50.763700579000037 ], [ -120.344955794999919, 50.763247700000129 ], [ -120.34519765099999, 50.762874497000084 ], [ -120.345300610999985, 50.762715608000043 ], [ -120.345555904999969, 50.762327499000044 ], [ -120.345873793999914, 50.76183910600011 ], [ -120.346185806, 50.761363800000041 ], [ -120.346174193999971, 50.761038811000041 ], [ -120.346130706999986, 50.759603887000068 ], [ -120.34610150599994, 50.758596896000043 ], [ -120.346065713999934, 50.757315500000111 ], [ -120.34606759699993, 50.756439193000077 ], [ -120.346069624999984, 50.755528029000054 ], [ -120.346070302999948, 50.755365025000089 ], [ -120.346950713999917, 50.754635582000091 ], [ -120.347798002, 50.753937956000051 ], [ -120.34814648099993, 50.753650997000058 ], [ -120.348628489999953, 50.753405106000066 ], [ -120.349910382999894, 50.752391425000056 ], [ -120.353578608999982, 50.752398766000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203281917", "BldgCostT": "132671667", "sL_LossRatio": "0.995738078966202", "sL_AssetLoss": "20536.355626", "sL_BldgLoss": "20448.8313", "sL_StrLoss": "20416.00872", "sL_NStrLoss": "32.82258", "sL_ContLoss": "87.524326", "geom_point": "0101000020E6100000B6673B4B75165EC01FBA4505F35F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.34681552699999, 50.750942532000124 ], [ -120.346876502999947, 50.749864544000097 ], [ -120.346451706999929, 50.749854872000114 ], [ -120.346497443999979, 50.749046381000035 ], [ -120.346922231999955, 50.749056053000054 ], [ -120.346967960999947, 50.748247561000042 ], [ -120.347392742999929, 50.748257231000117 ], [ -120.347514653999937, 50.746101251000056 ], [ -120.347939416999921, 50.746110919000053 ], [ -120.347969886999934, 50.74557192400011 ], [ -120.347545127999979, 50.745562257000088 ], [ -120.347567396999963, 50.745168411000044 ], [ -120.352772520999963, 50.743174297000031 ], [ -120.352328029999953, 50.74387899500006 ], [ -120.350624318999934, 50.746557103000079 ], [ -120.350424818999898, 50.746819187000035 ], [ -120.349417590999963, 50.748092701000083 ], [ -120.349405592999958, 50.748491294000083 ], [ -120.351346791999944, 50.748496782000089 ], [ -120.351754003999957, 50.748426389000045 ], [ -120.35208562499993, 50.748281299000077 ], [ -120.352130395999964, 50.748261689000053 ], [ -120.352248342999957, 50.748173003000012 ], [ -120.352444807, 50.748025286 ], [ -120.352867268999901, 50.747349329000031 ], [ -120.35422710399996, 50.745173494000042 ], [ -120.354881279999987, 50.745377891000032 ], [ -120.355405699999949, 50.745602943000065 ], [ -120.355688304999944, 50.74572419000004 ], [ -120.356089308999969, 50.745883423000087 ], [ -120.356432011, 50.746019503000078 ], [ -120.357143285999982, 50.746199691000108 ], [ -120.357319326, 50.745856659000054 ], [ -120.35736009099999, 50.745777211000068 ], [ -120.357999729999932, 50.746038337000122 ], [ -120.358197503999975, 50.746119055000108 ], [ -120.358227925, 50.746159939000087 ], [ -120.358389082999949, 50.746517698000083 ], [ -120.358491624999886, 50.747092357000078 ], [ -120.358423037999941, 50.747557442000101 ], [ -120.35822093899999, 50.748077051000031 ], [ -120.357940166999981, 50.748442178000126 ], [ -120.357572336999908, 50.748798422000029 ], [ -120.356973645999972, 50.749236681000085 ], [ -120.356359917999939, 50.749692222000107 ], [ -120.35595141099999, 50.750111240000059 ], [ -120.355419505999933, 50.750662794000107 ], [ -120.35479913399999, 50.75130628900007 ], [ -120.353783309999926, 50.752355077000104 ], [ -120.353578608999982, 50.752398766000113 ], [ -120.349910382999894, 50.752391425000056 ], [ -120.348628489999953, 50.753405106000066 ], [ -120.34814648099993, 50.753650997000058 ], [ -120.347798002, 50.753937956000051 ], [ -120.346950713999917, 50.754635582000091 ], [ -120.346070302999948, 50.755365025000089 ], [ -120.346069624999984, 50.755528029000054 ], [ -120.34606759699993, 50.756439193000077 ], [ -120.346065713999934, 50.757315500000111 ], [ -120.345172678999973, 50.757333392000113 ], [ -120.344319050999971, 50.757570635000057 ], [ -120.344339819999945, 50.75750480400005 ], [ -120.344356692999952, 50.757190015000035 ], [ -120.344593195999934, 50.755774389000116 ], [ -120.344597308999951, 50.755424000000104 ], [ -120.344646546999982, 50.754401107000014 ], [ -120.344917976999966, 50.754407291000113 ], [ -120.344933235, 50.754137795000055 ], [ -120.345358068999928, 50.754147472000049 ], [ -120.345519133999957, 50.751301747000113 ], [ -120.345568498999967, 50.751047390000075 ], [ -120.345585661999962, 50.750914528000031 ], [ -120.34681552699999, 50.750942532000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122962420", "BldgCostT": "75756172", "sL_LossRatio": "0.991299580721565", "sL_AssetLoss": "12217.801993", "sL_BldgLoss": "12111.501993", "sL_StrLoss": "12073.001993", "sL_NStrLoss": "38.5", "sL_ContLoss": "106.3", "geom_point": "0101000020E6100000E4D22AC098165EC031D905A4795F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.350624318999934, 50.746557103000079 ], [ -120.352328029999953, 50.74387899500006 ], [ -120.352772520999963, 50.743174297000031 ], [ -120.353615800999961, 50.743457608000043 ], [ -120.353987404999941, 50.743646704000078 ], [ -120.354265689999949, 50.743831097000076 ], [ -120.354867284999941, 50.744384204000013 ], [ -120.355093497, 50.744541598000097 ], [ -120.355450511, 50.744676783000038 ], [ -120.355773391999946, 50.744733702000055 ], [ -120.3560844, 50.744748498000092 ], [ -120.356765541999977, 50.744687135000035 ], [ -120.356847887999947, 50.744679723000033 ], [ -120.357211020999941, 50.744646964 ], [ -120.357229559999936, 50.744645243000065 ], [ -120.357353559999964, 50.744633449000069 ], [ -120.357431070999922, 50.7449888 ], [ -120.357641594999933, 50.74537248700009 ], [ -120.357795902999953, 50.745579706000058 ], [ -120.358197503999975, 50.746119055000108 ], [ -120.357999729999932, 50.746038337000122 ], [ -120.35736009099999, 50.745777211000068 ], [ -120.357319326, 50.745856659000054 ], [ -120.357143285999982, 50.746199691000108 ], [ -120.356432011, 50.746019503000078 ], [ -120.356089308999969, 50.745883423000087 ], [ -120.355688304999944, 50.74572419000004 ], [ -120.355405699999949, 50.745602943000065 ], [ -120.354881279999987, 50.745377891000032 ], [ -120.35422710399996, 50.745173494000042 ], [ -120.352867268999901, 50.747349329000031 ], [ -120.352444807, 50.748025286 ], [ -120.352248342999957, 50.748173003000012 ], [ -120.352130395999964, 50.748261689000053 ], [ -120.35208562499993, 50.748281299000077 ], [ -120.351754003999957, 50.748426389000045 ], [ -120.351346791999944, 50.748496782000089 ], [ -120.349405592999958, 50.748491294000083 ], [ -120.349417590999963, 50.748092701000083 ], [ -120.350424818999898, 50.746819187000035 ], [ -120.350624318999934, 50.746557103000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61475167", "BldgCostT": "42396667", "sL_LossRatio": "1", "sL_AssetLoss": "249.1", "sL_BldgLoss": "249.1", "sL_StrLoss": "249.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E6996FCB6165EC07C2E8D3EEA5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.350657045999952, 50.743175533000098 ], [ -120.35068585099998, 50.742665413000061 ], [ -120.351110584999986, 50.742675068000111 ], [ -120.351141016, 50.742136072000037 ], [ -120.351565742999966, 50.742145725000071 ], [ -120.35162659099997, 50.741067730000076 ], [ -120.352476028999959, 50.741087031000063 ], [ -120.352491236, 50.740817533000026 ], [ -120.353765387999957, 50.740846474000058 ], [ -120.353795785999964, 50.740307475000087 ], [ -120.354220497999947, 50.740317119000053 ], [ -120.354235695999989, 50.740047620000048 ], [ -120.354660406999983, 50.740057261000111 ], [ -120.354675598999933, 50.739787763000116 ], [ -120.354867423999977, 50.739792116000046 ], [ -120.35498989199999, 50.738821190000117 ], [ -120.356002928999928, 50.738872472000033 ], [ -120.356010467999909, 50.738738679000086 ], [ -120.356435166999958, 50.738748316000041 ], [ -120.356465532999934, 50.738209315000077 ], [ -120.356890225999919, 50.738218949000014 ], [ -120.356920585999902, 50.737679949000068 ], [ -120.357345276999979, 50.737689581000033 ], [ -120.35737563099994, 50.737150581000051 ], [ -120.357800315999938, 50.737160211000109 ], [ -120.35786647499999, 50.735985128000038 ], [ -120.357890711, 50.735950900000049 ], [ -120.358043787, 50.735773912000091 ], [ -120.358186697999898, 50.735723509000131 ], [ -120.35817673499993, 50.735656401000035 ], [ -120.358126705999922, 50.735319497 ], [ -120.358127808999981, 50.735278640000097 ], [ -120.358276793999906, 50.735335989000035 ], [ -120.358322656999931, 50.735653543000026 ], [ -120.358333040999938, 50.73572562600004 ], [ -120.358467416999972, 50.736655903000027 ], [ -120.358476713999949, 50.737371816000049 ], [ -120.358326868999896, 50.738389454000071 ], [ -120.358279035999971, 50.738714335000019 ], [ -120.358256133999987, 50.738869639000015 ], [ -120.358151739999926, 50.739577406000116 ], [ -120.358060205999905, 50.740190918000117 ], [ -120.357954563999925, 50.740600070000077 ], [ -120.357743499999941, 50.740976842000094 ], [ -120.357510366999975, 50.741388816000054 ], [ -120.357505584999956, 50.741397301000063 ], [ -120.357238682999935, 50.741878503000109 ], [ -120.357148061999965, 50.742291993000087 ], [ -120.357307351999964, 50.744435576000051 ], [ -120.357353559999964, 50.744633449000069 ], [ -120.357229559999936, 50.744645243000065 ], [ -120.357211020999941, 50.744646964 ], [ -120.356847887999947, 50.744679723000033 ], [ -120.356765541999977, 50.744687135000035 ], [ -120.3560844, 50.744748498000092 ], [ -120.355773391999946, 50.744733702000055 ], [ -120.355450511, 50.744676783000038 ], [ -120.355093497, 50.744541598000097 ], [ -120.354867284999941, 50.744384204000013 ], [ -120.354265689999949, 50.743831097000076 ], [ -120.353987404999941, 50.743646704000078 ], [ -120.353615800999961, 50.743457608000043 ], [ -120.352772520999963, 50.743174297000031 ], [ -120.347567396999963, 50.745168411000044 ], [ -120.34759208, 50.744731730000055 ], [ -120.347753903999958, 50.744487630000037 ], [ -120.348030823999963, 50.744493933000122 ], [ -120.348045774999932, 50.744229464000085 ], [ -120.348052175999968, 50.744224575000061 ], [ -120.348470805999966, 50.744234100000114 ], [ -120.348486036999972, 50.743964603000087 ], [ -120.349580207, 50.743989492000011 ], [ -120.349758324999925, 50.743849263000051 ], [ -120.349769070999983, 50.743837778000049 ], [ -120.349790716999948, 50.743454592000035 ], [ -120.350215227999954, 50.743464245000062 ], [ -120.350215465999966, 50.743464091000128 ], [ -120.350230677999903, 50.743194752000093 ], [ -120.350614286999928, 50.743203474000055 ], [ -120.350657045999952, 50.743175533000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "65.7", "sL_BldgLoss": "65.7", "sL_StrLoss": "65.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A46958A5571B5EC02A84BCBBA1584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.426610155, 50.692017372000066 ], [ -120.427883057999978, 50.692045483000051 ], [ -120.427838812999966, 50.692854034000092 ], [ -120.42656588600002, 50.692825923000072 ], [ -120.426610155, 50.692017372000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166870916", "BldgCostT": "96464654", "sL_LossRatio": "0.925693586124212", "sL_AssetLoss": "11761.928714", "sL_BldgLoss": "10887.941971", "sL_StrLoss": "10566.501011", "sL_NStrLoss": "321.44096", "sL_ContLoss": "873.986743", "geom_point": "0101000020E6100000A59B485994195EC021E4D59C30584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.404459104999916, 50.694798288000065 ], [ -120.404062091999961, 50.694537590000024 ], [ -120.403435811999927, 50.69460459800009 ], [ -120.402615420999979, 50.694577497000111 ], [ -120.402356515999898, 50.694537265000065 ], [ -120.402613825999964, 50.692477693000043 ], [ -120.402761921999968, 50.692485135000062 ], [ -120.406897408999981, 50.692692871000077 ], [ -120.406926079999963, 50.692558751 ], [ -120.402764672999979, 50.692349713000063 ], [ -120.401978270999919, 50.692310193000019 ], [ -120.402011499999944, 50.692044227000082 ], [ -120.400259231999911, 50.691956146000074 ], [ -120.400513561999972, 50.689921068000103 ], [ -120.400121322999965, 50.689901347000031 ], [ -120.397218896999931, 50.689755380000086 ], [ -120.397217993999931, 50.689762607000027 ], [ -120.39714614199994, 50.690337230000075 ], [ -120.394268806999918, 50.690192450000033 ], [ -120.394207434999899, 50.690682998000057 ], [ -120.392358803, 50.690589940000102 ], [ -120.392296576999954, 50.691087142000079 ], [ -120.391781470999902, 50.691061207000089 ], [ -120.391718279999964, 50.691566054000127 ], [ -120.388817917999987, 50.691419977000109 ], [ -120.387893004, 50.691190709000097 ], [ -120.386615282999927, 50.690739305000115 ], [ -120.386171250999908, 50.690481881000103 ], [ -120.38626344099994, 50.689746050000068 ], [ -120.385149718, 50.689689909000087 ], [ -120.385143017999923, 50.689681097000047 ], [ -120.384464407999985, 50.688135784000067 ], [ -120.384124502999953, 50.687912196000077 ], [ -120.38369632199999, 50.687453605000016 ], [ -120.383201186999955, 50.687173090000051 ], [ -120.383159792999933, 50.686425305000085 ], [ -120.38167978199999, 50.685780201000135 ], [ -120.381200196999927, 50.685481113000087 ], [ -120.380646826999964, 50.685304145 ], [ -120.380685953999901, 50.684992127000037 ], [ -120.380701209999955, 50.68487046500006 ], [ -120.38231912599997, 50.684952092000074 ], [ -120.382323536999962, 50.684916903000023 ], [ -120.38796993599999, 50.685201588000027 ], [ -120.387932238999909, 50.685502588000048 ], [ -120.389824693999969, 50.685597938000065 ], [ -120.389734720999982, 50.68631659600014 ], [ -120.390513419999962, 50.686355821000099 ], [ -120.390457433999941, 50.68680305400003 ], [ -120.39045607, 50.686813955000041 ], [ -120.391099606999944, 50.686846367000065 ], [ -120.39110073, 50.686837392000029 ], [ -120.391163273999936, 50.686337712000096 ], [ -120.392380627999955, 50.686399015000056 ], [ -120.39378432099997, 50.686430428000087 ], [ -120.393782150999954, 50.686469576000043 ], [ -120.396408283999961, 50.686601742000086 ], [ -120.396469357999976, 50.686113335000044 ], [ -120.401112201999936, 50.686346845000045 ], [ -120.401439083999932, 50.683730445000066 ], [ -120.407085453999954, 50.684014164000097 ], [ -120.406940213, 50.685177906000064 ], [ -120.408002301999986, 50.685231241000132 ], [ -120.407776278999918, 50.687042453000032 ], [ -120.412053389999983, 50.687257134000113 ], [ -120.411631424999939, 50.690640696000095 ], [ -120.41295539099994, 50.690707116000063 ], [ -120.412556642999931, 50.693904787000093 ], [ -120.412511979999962, 50.694262918000085 ], [ -120.410301405999959, 50.694137387000154 ], [ -120.410038349999937, 50.694165018000064 ], [ -120.408537816999925, 50.69408970500006 ], [ -120.408098271999989, 50.694067640000085 ], [ -120.408086586999971, 50.694161256000072 ], [ -120.408040169999964, 50.694533153000059 ], [ -120.407164813999913, 50.694526198000098 ], [ -120.406401785999904, 50.69472560100013 ], [ -120.40492178099997, 50.694863793000131 ], [ -120.404459104999916, 50.694798288000065 ] ], [ [ -120.401943707, 50.688246182000029 ], [ -120.402053706999951, 50.687365667000108 ], [ -120.401995391999975, 50.687362736000068 ], [ -120.401885389999961, 50.688243250000028 ], [ -120.401943707, 50.688246182000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40198578", "BldgCostT": "23282410", "sL_LossRatio": "0.907909318902484", "sL_AssetLoss": "2100.103916", "sL_BldgLoss": "1906.703916", "sL_StrLoss": "1836.803916", "sL_NStrLoss": "69.9", "sL_ContLoss": "193.4", "geom_point": "0101000020E61000008FBBFF9704185EC05B2C4D635E574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.376008395999989, 50.684384399000045 ], [ -120.371702909999954, 50.683675204000096 ], [ -120.369593885999905, 50.683672307000037 ], [ -120.368934091999961, 50.68354130200003 ], [ -120.368038781999971, 50.68350220500011 ], [ -120.368128697999978, 50.683427950000123 ], [ -120.368531819999987, 50.683112256000079 ], [ -120.36869862499999, 50.682968664000093 ], [ -120.36909514499996, 50.682627253000113 ], [ -120.370452385999954, 50.680929419000073 ], [ -120.370520385999939, 50.680932857000073 ], [ -120.37051346, 50.680987993 ], [ -120.371086070999937, 50.681016940000077 ], [ -120.371084277999927, 50.681031218 ], [ -120.371099423999908, 50.681031984000107 ], [ -120.371174676999942, 50.68043283300009 ], [ -120.37682044099995, 50.68071808400007 ], [ -120.376810975999916, 50.680793522000052 ], [ -120.379542155999957, 50.680931411000081 ], [ -120.379515825999988, 50.681141356000069 ], [ -120.380358541999939, 50.681183888000056 ], [ -120.38030393199989, 50.681619400000109 ], [ -120.380739458999983, 50.68164137900002 ], [ -120.380328836999979, 50.684916 ], [ -120.380294299999932, 50.685191405000104 ], [ -120.379810588999931, 50.685036709000045 ], [ -120.377406783999945, 50.684703502000104 ], [ -120.376008395999989, 50.684384399000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74382511", "BldgCostT": "43534305", "sL_LossRatio": "0.946712158211289", "sL_AssetLoss": "6336.814509", "sL_BldgLoss": "5999.13934", "sL_StrLoss": "5875.73274", "sL_NStrLoss": "123.4066", "sL_ContLoss": "337.675169", "geom_point": "0101000020E610000041E74E132A185EC00182DEC009594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.373153693999896, 50.698001291000068 ], [ -120.373068209999971, 50.697989885000091 ], [ -120.373018406999947, 50.698123788000039 ], [ -120.373023027, 50.698268316000068 ], [ -120.372893275999971, 50.698215683000072 ], [ -120.372637781999941, 50.698081806000111 ], [ -120.372359327999902, 50.697935905000129 ], [ -120.372347480999949, 50.69769510200009 ], [ -120.37152161899999, 50.697289207000019 ], [ -120.37059680099999, 50.696350694000081 ], [ -120.37036322499992, 50.695977503000051 ], [ -120.370099612999965, 50.695107292000039 ], [ -120.369650115999946, 50.695034691000082 ], [ -120.369471340999922, 50.695082340000127 ], [ -120.369319580999914, 50.694701348000109 ], [ -120.369315722999957, 50.694691658000089 ], [ -120.369314875999947, 50.694689106000077 ], [ -120.369283501999988, 50.694066294000031 ], [ -120.3693143, 50.693782604000056 ], [ -120.369499612999974, 50.693386984 ], [ -120.369693744999921, 50.693178332000087 ], [ -120.369717955999974, 50.693157290000045 ], [ -120.369593287999948, 50.693540701000053 ], [ -120.369413798999986, 50.694472104000042 ], [ -120.369467199999917, 50.694526197000123 ], [ -120.369807595999958, 50.694524806000096 ], [ -120.369992480999926, 50.694493500000057 ], [ -120.370195499999966, 50.69313050100002 ], [ -120.370355409999902, 50.692837091000058 ], [ -120.370674004, 50.692431190000043 ], [ -120.37115221, 50.692234687000088 ], [ -120.371609393999904, 50.692164898000065 ], [ -120.372317279999919, 50.692180592000071 ], [ -120.375154890999937, 50.692568016000067 ], [ -120.375594159999963, 50.692699352000062 ], [ -120.375590322, 50.692768084000058 ], [ -120.375843091999982, 50.692773777000113 ], [ -120.376429859999917, 50.69294920700009 ], [ -120.376423861999982, 50.693056704000078 ], [ -120.376819195999957, 50.693065606000161 ], [ -120.3772031099999, 50.693180382000087 ], [ -120.377264743999916, 50.693213880000023 ], [ -120.377257409999942, 50.693345318000055 ], [ -120.377517357999977, 50.693351169000074 ], [ -120.377601321, 50.693396802000102 ], [ -120.377678492999962, 50.693412452000068 ], [ -120.377666669999925, 50.693624375000105 ], [ -120.378447893, 50.693641958000114 ], [ -120.378929760999981, 50.693828884000091 ], [ -120.378924539999929, 50.693922528000051 ], [ -120.379295801999945, 50.693930881000014 ], [ -120.380097420999974, 50.694118902000092 ], [ -120.380426118999964, 50.694296901000101 ], [ -120.381326398999974, 50.694398111000062 ], [ -120.384102797999958, 50.69437949100007 ], [ -120.384609803999979, 50.694453590000151 ], [ -120.38612271199996, 50.694469307000112 ], [ -120.388156794999972, 50.694839605000048 ], [ -120.388216870999955, 50.694894686000062 ], [ -120.388184725, 50.695473157000052 ], [ -120.388175131999972, 50.695479514000063 ], [ -120.387760041999954, 50.695470207000042 ], [ -120.387745061999965, 50.695739716000119 ], [ -120.38778122399999, 50.695740527000027 ], [ -120.38766429399999, 50.695818007000113 ], [ -120.387132103999988, 50.696471708000054 ], [ -120.386657580999923, 50.696856203000031 ], [ -120.386277607999929, 50.697054209000058 ], [ -120.385082209999979, 50.697414502000072 ], [ -120.383632113999937, 50.697517093000059 ], [ -120.381962803999969, 50.697461497000113 ], [ -120.381109099999946, 50.697532799000115 ], [ -120.379783579999952, 50.697934393000047 ], [ -120.378798215999936, 50.69860520200006 ], [ -120.377668818999936, 50.698777504000113 ], [ -120.376056809999952, 50.698750495000098 ], [ -120.373971092999952, 50.698307503000095 ], [ -120.373153693999896, 50.698001291000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17820668", "BldgCostT": "10401668", "sL_LossRatio": "0.973408843036253", "sL_AssetLoss": "1580.19074", "sL_BldgLoss": "1538.17164", "sL_StrLoss": "1522.90114", "sL_NStrLoss": "15.2705", "sL_ContLoss": "42.0191", "geom_point": "0101000020E6100000AF4303EB571C5EC0364ED8B85D584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.444463505, 50.691811800000075 ], [ -120.444504265999981, 50.691062060000114 ], [ -120.44153418199997, 50.690996870000085 ], [ -120.441519512999946, 50.691266391000106 ], [ -120.439398017999949, 50.69121977900005 ], [ -120.439427380999931, 50.690680740000069 ], [ -120.438154501999961, 50.690652755000066 ], [ -120.438139812999935, 50.690922274000073 ], [ -120.436018339999947, 50.690875603000116 ], [ -120.436062441999951, 50.690067045000042 ], [ -120.436486728999967, 50.690076383000083 ], [ -120.436501426999939, 50.689806863000051 ], [ -120.436925710999944, 50.689816199000042 ], [ -120.436940405999962, 50.689546680000078 ], [ -120.439486104999943, 50.689602661000045 ], [ -120.439500783999932, 50.689333141000048 ], [ -120.44331932599999, 50.689417007000053 ], [ -120.443333982999931, 50.689147487000135 ], [ -120.446303954999962, 50.689212629000075 ], [ -120.446289311999948, 50.68948215000011 ], [ -120.447137882999954, 50.689500748000057 ], [ -120.447123246999979, 50.689770269000064 ], [ -120.447547534999941, 50.68977956600002 ], [ -120.44751826599996, 50.690318609 ], [ -120.448494114999946, 50.690339986000069 ], [ -120.448791144999973, 50.690346492000018 ], [ -120.448732632999935, 50.69142457800006 ], [ -120.446611119999929, 50.691378099000097 ], [ -120.446596479999968, 50.691647620000012 ], [ -120.445874517999982, 50.691631794000067 ], [ -120.445747870999924, 50.691629017000153 ], [ -120.44574313899993, 50.691716104000058 ], [ -120.44573429899999, 50.691878781000106 ], [ -120.445733224999984, 50.691898538000046 ], [ -120.445551856999927, 50.691894562000066 ], [ -120.444460307999989, 50.691870622000074 ], [ -120.444463505, 50.691811800000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999994835769114", "sL_AssetLoss": "76.100393", "sL_BldgLoss": "76.1", "sL_StrLoss": "76.1", "sL_NStrLoss": "0", "sL_ContLoss": "0.000393", "geom_point": "0101000020E61000009ED0CA4139195EC05CF54E3F07554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.393342378999989, 50.663753567000079 ], [ -120.395038520999933, 50.663791514000103 ], [ -120.395008846999986, 50.664327492000034 ], [ -120.394993756999938, 50.664600049000043 ], [ -120.394569712999925, 50.664590564000072 ], [ -120.394554787999937, 50.664860076000096 ], [ -120.393282651999968, 50.66483161200005 ], [ -120.393313146999986, 50.664281207000059 ], [ -120.393342378999989, 50.663753567000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72069250", "BldgCostT": "49990000", "sL_LossRatio": "0.903299095949905", "sL_AssetLoss": "448.97512", "sL_BldgLoss": "405.55882", "sL_StrLoss": "389.80102", "sL_NStrLoss": "15.7578", "sL_ContLoss": "43.4163", "geom_point": "0101000020E6100000CE3569A63D1B5EC097FE25A94C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.421620323999932, 50.666811589000119 ], [ -120.421635092999978, 50.666542073000109 ], [ -120.421211022999955, 50.66653268400011 ], [ -120.421225795999959, 50.666263168000086 ], [ -120.420801730000022, 50.666253777000094 ], [ -120.420816036999938, 50.665992778000053 ], [ -120.42209399499994, 50.6660967 ], [ -120.423617594999925, 50.666084705000053 ], [ -120.427617995, 50.665989615000122 ], [ -120.430705283999956, 50.665916114 ], [ -120.431860779999937, 50.665888595000112 ], [ -120.431856969999913, 50.665958369000101 ], [ -120.431008834999986, 50.66593966500006 ], [ -120.430994117999902, 50.66620918500012 ], [ -120.429721909999955, 50.666181117000114 ], [ -120.429707185, 50.66645063600005 ], [ -120.428434970999945, 50.6664225560001 ], [ -120.428420238999934, 50.66669207400011 ], [ -120.427996166999932, 50.66668271 ], [ -120.427981431999953, 50.666952228000078 ], [ -120.421620323999932, 50.666811589000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "79.7", "sL_BldgLoss": "79.7", "sL_StrLoss": "79.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079266EF4351D5EC0DBCB6C463C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.456281228999899, 50.665570276000089 ], [ -120.456809997999983, 50.66539885500007 ], [ -120.457351128999989, 50.665597450000114 ], [ -120.457316020999897, 50.666247077000079 ], [ -120.455195627999956, 50.666200770000096 ], [ -120.455211673999926, 50.665904100000084 ], [ -120.455400431999976, 50.66585579100007 ], [ -120.456281228999899, 50.665570276000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "563936754", "BldgCostT": "332929649", "sL_LossRatio": "0.947535128534092", "sL_AssetLoss": "30096.328379", "sL_BldgLoss": "28517.328379", "sL_StrLoss": "27946.528379", "sL_NStrLoss": "570.8", "sL_ContLoss": "1579", "geom_point": "0101000020E61000000CFC67B4F2175EC044BDF2493C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.375569308999928, 50.677926119000084 ], [ -120.37559939, 50.677387106000062 ], [ -120.374751085999989, 50.677367991000025 ], [ -120.374766130999959, 50.677098483000044 ], [ -120.374341980999944, 50.677088924000017 ], [ -120.37434519699994, 50.677031318000061 ], [ -120.37436444699999, 50.676686518000047 ], [ -120.372522155999917, 50.676593419000085 ], [ -120.372673789999965, 50.675385676000097 ], [ -120.372023522999925, 50.675352808000113 ], [ -120.372133556999955, 50.674476465000033 ], [ -120.370970746999973, 50.674417681000087 ], [ -120.371170383999953, 50.672827952000027 ], [ -120.370483613999923, 50.672793227000071 ], [ -120.370226884999965, 50.674837324000123 ], [ -120.371069319999904, 50.674856340000147 ], [ -120.371009058999945, 50.675934364000049 ], [ -120.36973665, 50.675905638000131 ], [ -120.369751722, 50.675636132000108 ], [ -120.36932758799999, 50.675626554000083 ], [ -120.369349262999961, 50.675239027000018 ], [ -120.364706389999967, 50.67500412600004 ], [ -120.364536387999948, 50.674913743000033 ], [ -120.364572539999955, 50.674626198000063 ], [ -120.364335489999931, 50.674614200000114 ], [ -120.364358042999953, 50.674434829000091 ], [ -120.363874287999963, 50.674423881000067 ], [ -120.363889393999969, 50.674154377000043 ], [ -120.363465274999925, 50.674144777000102 ], [ -120.363480383, 50.673875272000089 ], [ -120.36263214899995, 50.673856070000021 ], [ -120.362647260999935, 50.673586565000043 ], [ -120.362223148999988, 50.673576962000041 ], [ -120.362228324999961, 50.673484669000075 ], [ -120.361750021999967, 50.673460447000096 ], [ -120.360068967999894, 50.672590728000074 ], [ -120.360020923999954, 50.672565861000102 ], [ -120.360025907999955, 50.67250395600005 ], [ -120.360235211999949, 50.669904020000047 ], [ -120.360281814999951, 50.669940708000119 ], [ -120.360285564999941, 50.669278567000099 ], [ -120.360489223999977, 50.668901382000072 ], [ -120.36047321199996, 50.668723950000121 ], [ -120.36031612599993, 50.668415020000076 ], [ -120.359874776999945, 50.668514312000092 ], [ -120.359042548, 50.668699341000028 ], [ -120.358475216999949, 50.668825459000097 ], [ -120.357946401999968, 50.668942849000103 ], [ -120.357759585999958, 50.668982952000086 ], [ -120.357612575999951, 50.669010784000101 ], [ -120.35706129, 50.669115161 ], [ -120.355310310999954, 50.669859943000091 ], [ -120.355017110999896, 50.669899150000077 ], [ -120.354801193999933, 50.669865674000079 ], [ -120.354549176999953, 50.669870916000093 ], [ -120.354414913999932, 50.668479051000126 ], [ -120.354334007, 50.667643333000093 ], [ -120.35427790199995, 50.667063607000053 ], [ -120.354269446999922, 50.666928 ], [ -120.354218282999966, 50.666375696000038 ], [ -120.354218285999934, 50.666375523000077 ], [ -120.354135476999929, 50.6654658510001 ], [ -120.354110350999974, 50.665203222000081 ], [ -120.354071504999979, 50.664786384000095 ], [ -120.3540065, 50.664088657000086 ], [ -120.35400638599998, 50.664087315000131 ], [ -120.353969640999978, 50.663704699000085 ], [ -120.353967387999887, 50.663587441000061 ], [ -120.353958593999963, 50.663262574000086 ], [ -120.354003342999988, 50.662952149000013 ], [ -120.354196858999927, 50.662542913000031 ], [ -120.354319357999898, 50.662393237000032 ], [ -120.354775865999954, 50.662060426000046 ], [ -120.356513271999944, 50.661094200000029 ], [ -120.359140810999946, 50.65991664900011 ], [ -120.359557093999967, 50.659730091000064 ], [ -120.361057003, 50.658799488000064 ], [ -120.361608201999942, 50.658265984000103 ], [ -120.362099188999963, 50.657601494000062 ], [ -120.362130875, 50.657550872000094 ], [ -120.362752716999964, 50.656556854 ], [ -120.362750938999966, 50.656588579000079 ], [ -120.363174898999915, 50.656598178000117 ], [ -120.3631598, 50.656867683000044 ], [ -120.363583761999976, 50.656877281000014 ], [ -120.363566156999966, 50.657191556000086 ], [ -120.364349956999931, 50.657231250000066 ], [ -120.364435446999963, 50.656551022000045 ], [ -120.367837385999962, 50.656723241000051 ], [ -120.36784046299999, 50.65666821300006 ], [ -120.363951405999956, 50.656471324000023 ], [ -120.364000943999912, 50.656077184000054 ], [ -120.363629054999976, 50.656068766000082 ], [ -120.363613958999963, 50.656338271000052 ], [ -120.36289957199989, 50.656322098000039 ], [ -120.363200792999962, 50.655840571000049 ], [ -120.36365529499993, 50.655443584000096 ], [ -120.364299120999974, 50.655008473000123 ], [ -120.36516211799993, 50.654602579 ], [ -120.366224320999919, 50.65433997000008 ], [ -120.368604703999921, 50.653900886000031 ], [ -120.368854518999981, 50.653855910000047 ], [ -120.370488489999957, 50.653538412000053 ], [ -120.370806550999959, 50.653466607000077 ], [ -120.372256285999939, 50.653139404000058 ], [ -120.373651190999951, 50.652882896000143 ], [ -120.375111792999931, 50.652690895000092 ], [ -120.376371711000019, 50.652673393000086 ], [ -120.377282097999924, 50.652760010000122 ], [ -120.378324286999955, 50.652973091000028 ], [ -120.379027202999978, 50.653163612000078 ], [ -120.378970614999957, 50.653236913000065 ], [ -120.378871306999898, 50.65336559900009 ], [ -120.377766949999966, 50.654780506000044 ], [ -120.377682399999983, 50.654888878000015 ], [ -120.377512735999971, 50.655064990000092 ], [ -120.377143355, 50.655293292000131 ], [ -120.376929413999946, 50.655346479000059 ], [ -120.37582245499999, 50.655457248000026 ], [ -120.375430751999957, 50.65558073700003 ], [ -120.375118846999925, 50.655803762000069 ], [ -120.374995030999969, 50.656032689000071 ], [ -120.37500963599993, 50.656221771000041 ], [ -120.37511379299994, 50.656466749000053 ], [ -120.375326045999913, 50.656653195000047 ], [ -120.375830026999921, 50.656902155000083 ], [ -120.375983015999964, 50.65704053600011 ], [ -120.376709402999978, 50.656795187000064 ], [ -120.376950824999952, 50.656658707000098 ], [ -120.377562122999962, 50.656187650000092 ], [ -120.377878659000018, 50.656074800000084 ], [ -120.378200359999965, 50.656022564000139 ], [ -120.378500263999968, 50.656019685000082 ], [ -120.378901324999944, 50.656093096000035 ], [ -120.379466233999921, 50.656207252000165 ], [ -120.379961130999945, 50.656188973000056 ], [ -120.380215365999973, 50.656097283000108 ], [ -120.380229312999973, 50.656087455000026 ], [ -120.38067003299993, 50.655776907000082 ], [ -120.381205423999944, 50.656002221000072 ], [ -120.381579618999965, 50.656086014000053 ], [ -120.382968982999941, 50.656146194000073 ], [ -120.382904798, 50.656556605000041 ], [ -120.383001204, 50.656716386000078 ], [ -120.383210809999937, 50.656878403000057 ], [ -120.384941623999964, 50.657729363000087 ], [ -120.387177401999978, 50.658828489000086 ], [ -120.387974104999955, 50.658893876000043 ], [ -120.388817979999928, 50.658877871000108 ], [ -120.389076482999926, 50.658843179000058 ], [ -120.389457092999962, 50.659029896000057 ], [ -120.389787811999923, 50.659192122000036 ], [ -120.390014137999941, 50.659303142000063 ], [ -120.390084321999964, 50.659337397000037 ], [ -120.391120701999967, 50.659842815000069 ], [ -120.39172546199994, 50.660138231000083 ], [ -120.392496014999949, 50.660515862000089 ], [ -120.393201140999977, 50.660826234000041 ], [ -120.393992489999945, 50.66103730400004 ], [ -120.394327342999972, 50.661081743000132 ], [ -120.39472632899999, 50.661134729000061 ], [ -120.395687934999984, 50.661262367000084 ], [ -120.396102247999963, 50.661355312000083 ], [ -120.398138875999976, 50.661906593000033 ], [ -120.398200053999943, 50.661564549000097 ], [ -120.39837629499999, 50.661221978000093 ], [ -120.398564936999946, 50.660905267000039 ], [ -120.398651781999959, 50.660925275000103 ], [ -120.398765047999987, 50.66095139500009 ], [ -120.398978559999961, 50.661000678000086 ], [ -120.400000037999959, 50.66123646700008 ], [ -120.404086235999927, 50.662179607999988 ], [ -120.407809018999899, 50.663066015000069 ], [ -120.415665387999937, 50.665100392000078 ], [ -120.416055537999981, 50.665185733000072 ], [ -120.416186785999912, 50.665214445000032 ], [ -120.415841198999942, 50.665197108000037 ], [ -120.415683158999968, 50.666465953000078 ], [ -120.410038939999978, 50.666182664000047 ], [ -120.410069633999953, 50.665936489000039 ], [ -120.406193227999978, 50.665741760000053 ], [ -120.406238382999959, 50.665379840000092 ], [ -120.40570323699994, 50.665352947000045 ], [ -120.405752404999987, 50.664958900000116 ], [ -120.404328117999952, 50.664887311000044 ], [ -120.40448052099994, 50.663666179000103 ], [ -120.402692498999897, 50.663576281000068 ], [ -120.402671208999891, 50.663961973000049 ], [ -120.40139908899999, 50.663933598000014 ], [ -120.40141397399999, 50.663664085000086 ], [ -120.400565899999947, 50.663645161000034 ], [ -120.400551010999919, 50.663914673000122 ], [ -120.399702932999901, 50.663895743000062 ], [ -120.399688038999969, 50.664165255000086 ], [ -120.398415915, 50.664136848000055 ], [ -120.398401013999944, 50.6644063600001 ], [ -120.39628080199995, 50.664358983000035 ], [ -120.396295447999975, 50.664094312000032 ], [ -120.39632554399995, 50.663550447000041 ], [ -120.396749578999916, 50.663559926000048 ], [ -120.396764490999956, 50.663290413000055 ], [ -120.395492394999962, 50.663261974000065 ], [ -120.395522231999905, 50.662722951 ], [ -120.395098204999897, 50.662713468000049 ], [ -120.395128044999979, 50.662174445000048 ], [ -120.394704024999911, 50.662164961000123 ], [ -120.39474879, 50.661356427000051 ], [ -120.39390076199993, 50.661337455000087 ], [ -120.393855981999934, 50.662145988000098 ], [ -120.393007939999961, 50.662127009000081 ], [ -120.392993006999944, 50.662396520000115 ], [ -120.392568983999979, 50.66238702900008 ], [ -120.392509242999921, 50.663465073000054 ], [ -120.391767194999915, 50.66344845900008 ], [ -120.391237147999959, 50.663436587000042 ], [ -120.391252091999917, 50.663167076000065 ], [ -120.390828062999901, 50.66315757800006 ], [ -120.3908878399999, 50.662079535000075 ], [ -120.390039802000018, 50.662060535000109 ], [ -120.390054749999962, 50.661791025000049 ], [ -120.389630734999926, 50.661781522000069 ], [ -120.389660635999917, 50.661242501000082 ], [ -120.389236624999938, 50.661232997000127 ], [ -120.389251578999961, 50.660963487000075 ], [ -120.38882757099995, 50.66095398100002 ], [ -120.388857480999945, 50.660414960000033 ], [ -120.38843347599996, 50.660405454000134 ], [ -120.388448433999912, 50.660135944000046 ], [ -120.388024433999959, 50.660126436000091 ], [ -120.388039393000028, 50.659856925000092 ], [ -120.387615393999965, 50.65984741600009 ], [ -120.387630355999974, 50.659577906000059 ], [ -120.385086385999898, 50.659520816000054 ], [ -120.38505643299996, 50.66005983600008 ], [ -120.384208434999948, 50.660040794000075 ], [ -120.38419345399997, 50.660310303000095 ], [ -120.382497450999921, 50.660272200000094 ], [ -120.382512442999953, 50.660002692000077 ], [ -120.381664448, 50.659983629000067 ], [ -120.381679442999882, 50.659714121000064 ], [ -120.381255448999966, 50.659704588000068 ], [ -120.381269272999987, 50.659456166000083 ], [ -120.381216724999945, 50.659454263000093 ], [ -120.381121413999949, 50.659431728000094 ], [ -120.380846452999918, 50.659425546000072 ], [ -120.38084995299999, 50.659362671000054 ], [ -120.380590625999957, 50.659278563000086 ], [ -120.380553925999934, 50.659200063000085 ], [ -120.380900224999962, 50.658115863000098 ], [ -120.380924223999955, 50.658028203000093 ], [ -120.380951451, 50.657538985000038 ], [ -120.38110428499999, 50.657542421000073 ], [ -120.381113024999962, 50.657528763000094 ], [ -120.381242125999961, 50.657513763000033 ], [ -120.381376985000017, 50.657520491000085 ], [ -120.38139042099999, 50.657279009000099 ], [ -120.38223836799996, 50.657298071000028 ], [ -120.382248696999966, 50.657112366000135 ], [ -120.382026535999969, 50.657023464000119 ], [ -120.379709536999897, 50.656971358000057 ], [ -120.379694531, 50.657240867000056 ], [ -120.377150702999984, 50.657183606000039 ], [ -120.377090621999969, 50.658261638000084 ], [ -120.377514601999934, 50.658271185000025 ], [ -120.377484563999971, 50.658810202000083 ], [ -120.378332535999988, 50.658829292000078 ], [ -120.37828749099998, 50.659637817000089 ], [ -120.376591519999977, 50.659599628000123 ], [ -120.376606544999959, 50.659330120000099 ], [ -120.376182555999947, 50.659320569000045 ], [ -120.376197581999946, 50.65905106200006 ], [ -120.375773595999988, 50.65904150800008 ], [ -120.375803652999977, 50.658502494000089 ], [ -120.375379671999951, 50.658492940000095 ], [ -120.375439792999913, 50.657414910000064 ], [ -120.373743905999973, 50.657376680000077 ], [ -120.373728866999969, 50.657646187000068 ], [ -120.372032974999968, 50.65760793400004 ], [ -120.372002874000017, 50.658146946000038 ], [ -120.371578896999949, 50.658137379000067 ], [ -120.371533737999982, 50.658945899000017 ], [ -120.370261784999954, 50.658917186000032 ], [ -120.370246723999941, 50.659186693000052 ], [ -120.369822738999929, 50.659177118000109 ], [ -120.36979261099998, 50.659716131000067 ], [ -120.370216602999974, 50.659725706000138 ], [ -120.370156355999939, 50.660803731000065 ], [ -120.369883836999946, 50.660797578000022 ], [ -120.369770086999978, 50.660795008000022 ], [ -120.369737907999962, 50.661051267000133 ], [ -120.369701996999936, 50.66133724600013 ], [ -120.369687406999944, 50.661598259000058 ], [ -120.36975247499997, 50.66160155000005 ], [ -120.369845327999911, 50.66160624700008 ], [ -120.36993771799996, 50.661608334000078 ], [ -120.370111168, 50.661612250000097 ], [ -120.370110753999924, 50.661619673000047 ], [ -120.37112165799995, 50.661670802000046 ], [ -120.371078067999989, 50.662018012000075 ], [ -120.371473167999923, 50.662037993000091 ], [ -120.371421993999945, 50.662445635000047 ], [ -120.371818485999938, 50.662465685000015 ], [ -120.371752355999917, 50.662992485000082 ], [ -120.371968147999951, 50.663003397000075 ], [ -120.372155954, 50.66300763500012 ], [ -120.372155662999944, 50.663012878000053 ], [ -120.373636359999978, 50.663087735000069 ], [ -120.373529324999964, 50.663940666000045 ], [ -120.374177400999926, 50.66397342300013 ], [ -120.374106716999947, 50.664536727000069 ], [ -120.374678223, 50.664565611000043 ], [ -120.374639123999913, 50.664877223000062 ], [ -120.374957335999952, 50.664893304000039 ], [ -120.374916314999965, 50.66522024800004 ], [ -120.375311045999979, 50.665240195000116 ], [ -120.375247084999913, 50.66574999800013 ], [ -120.378107886999942, 50.66589452000008 ], [ -120.377975686999946, 50.666948735000105 ], [ -120.37909172699996, 50.667005095000071 ], [ -120.378956053999929, 50.668087163000067 ], [ -120.38011086799996, 50.668145469000095 ], [ -120.379959114999963, 50.669355970000034 ], [ -120.381186813999946, 50.669417943000042 ], [ -120.381088474999927, 50.670202509000049 ], [ -120.38431786299999, 50.670365459000053 ], [ -120.384242274999934, 50.670968840000072 ], [ -120.386141143999964, 50.671064610000045 ], [ -120.385722145999978, 50.674410071000153 ], [ -120.39067462099996, 50.674659694000063 ], [ -120.390226344000013, 50.678241519000046 ], [ -120.384580806, 50.677956946000087 ], [ -120.384999920999945, 50.674611504000076 ], [ -120.384806417999954, 50.674601745000118 ], [ -120.384657862, 50.67578755500012 ], [ -120.380746771999966, 50.675590233000065 ], [ -120.380687106999972, 50.676066146000068 ], [ -120.378284561999948, 50.675944864 ], [ -120.378167445999921, 50.676878603000027 ], [ -120.376905361999889, 50.676814871000019 ], [ -120.376841782, 50.677954782000072 ], [ -120.375569308999928, 50.677926119000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21246916", "BldgCostT": "11971666", "sL_LossRatio": "0.999953762793978", "sL_AssetLoss": "1862.634173", "sL_BldgLoss": "1862.54805", "sL_StrLoss": "1862.11577", "sL_NStrLoss": "0.43228", "sL_ContLoss": "0.086123", "geom_point": "0101000020E6100000B6620B83EA1C5EC022AECEF774584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.45207127899999, 50.689799660000077 ], [ -120.454880899999921, 50.689939571000089 ], [ -120.454855517999974, 50.690144677000063 ], [ -120.454605248999911, 50.692166957000012 ], [ -120.453726304, 50.692170592000089 ], [ -120.451957211999968, 50.692402807000065 ], [ -120.451519695999963, 50.692401301000075 ], [ -120.450902700999976, 50.692559395000075 ], [ -120.45003900599994, 50.69254090099999 ], [ -120.449660005999988, 50.692478190000017 ], [ -120.449205407999955, 50.691964110000072 ], [ -120.448952392, 50.691927314000083 ], [ -120.449001386999925, 50.69153183100007 ], [ -120.44915330799995, 50.690305489000124 ], [ -120.449233482999915, 50.689658273000092 ], [ -120.45207127899999, 50.689799660000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999994207094174", "sL_AssetLoss": "70.603599", "sL_BldgLoss": "70.60319", "sL_StrLoss": "70.6", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.000409", "geom_point": "0101000020E61000000D73FEFD541C5EC00557D4BB53554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.439943907999989, 50.666616779000023 ], [ -120.439980677, 50.666320290000044 ], [ -120.444663978999955, 50.666599719000125 ], [ -120.445527990999935, 50.666651240000093 ], [ -120.445618342999964, 50.666656628000077 ], [ -120.445588371000028, 50.666898555000095 ], [ -120.439943907999989, 50.666616779000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123461584", "BldgCostT": "79623334", "sL_LossRatio": "0.987843634246281", "sL_AssetLoss": "12222.13966", "sL_BldgLoss": "12073.56286", "sL_StrLoss": "12017.58093", "sL_NStrLoss": "55.98193", "sL_ContLoss": "148.5768", "geom_point": "0101000020E61000006C6526A4B7185EC0C1713A451E544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.389457092999962, 50.659029896000057 ], [ -120.389076482999926, 50.658843179000058 ], [ -120.388817979999928, 50.658877871000108 ], [ -120.387974104999955, 50.658893876000043 ], [ -120.387177401999978, 50.658828489000086 ], [ -120.384941623999964, 50.657729363000087 ], [ -120.383210809999937, 50.656878403000057 ], [ -120.383001204, 50.656716386000078 ], [ -120.382904798, 50.656556605000041 ], [ -120.382968982999941, 50.656146194000073 ], [ -120.381579618999965, 50.656086014000053 ], [ -120.381205423999944, 50.656002221000072 ], [ -120.38067003299993, 50.655776907000082 ], [ -120.380229312999973, 50.656087455000026 ], [ -120.380215365999973, 50.656097283000108 ], [ -120.379961130999945, 50.656188973000056 ], [ -120.379466233999921, 50.656207252000165 ], [ -120.378901324999944, 50.656093096000035 ], [ -120.378500263999968, 50.656019685000082 ], [ -120.378200359999965, 50.656022564000139 ], [ -120.377878659000018, 50.656074800000084 ], [ -120.377562122999962, 50.656187650000092 ], [ -120.376950824999952, 50.656658707000098 ], [ -120.376709402999978, 50.656795187000064 ], [ -120.375983015999964, 50.65704053600011 ], [ -120.375830026999921, 50.656902155000083 ], [ -120.375326045999913, 50.656653195000047 ], [ -120.37511379299994, 50.656466749000053 ], [ -120.37500963599993, 50.656221771000041 ], [ -120.374995030999969, 50.656032689000071 ], [ -120.375118846999925, 50.655803762000069 ], [ -120.375430751999957, 50.65558073700003 ], [ -120.37582245499999, 50.655457248000026 ], [ -120.376929413999946, 50.655346479000059 ], [ -120.377143355, 50.655293292000131 ], [ -120.377512735999971, 50.655064990000092 ], [ -120.377682399999983, 50.654888878000015 ], [ -120.377766949999966, 50.654780506000044 ], [ -120.378871306999898, 50.65336559900009 ], [ -120.378970614999957, 50.653236913000065 ], [ -120.379027202999978, 50.653163612000078 ], [ -120.379156164999969, 50.653210607000076 ], [ -120.380571283000023, 50.653732718000043 ], [ -120.382232329999937, 50.654386169000063 ], [ -120.382397680999944, 50.654451200000075 ], [ -120.383488901999939, 50.654828793000071 ], [ -120.384335702, 50.65507159100008 ], [ -120.387116486999957, 50.655617391000121 ], [ -120.388069066999947, 50.655832208000092 ], [ -120.388238421, 50.655884969000041 ], [ -120.38875907299996, 50.656047200000081 ], [ -120.389281180999916, 50.656253721000041 ], [ -120.389799182, 50.656505114000041 ], [ -120.390175477999961, 50.656731395000094 ], [ -120.39071448899989, 50.657109108000071 ], [ -120.391917850999988, 50.658194389000116 ], [ -120.392390762999952, 50.658620913000021 ], [ -120.393045743999949, 50.659127911999988 ], [ -120.393556582999935, 50.659436617000054 ], [ -120.394420251999989, 50.659818931000046 ], [ -120.394762986999979, 50.659925280000031 ], [ -120.39586213599992, 50.660266389000114 ], [ -120.398564936999946, 50.660905267000039 ], [ -120.39837629499999, 50.661221978000093 ], [ -120.398200053999943, 50.661564549000097 ], [ -120.398138875999976, 50.661906593000033 ], [ -120.396102247999963, 50.661355312000083 ], [ -120.395687934999984, 50.661262367000084 ], [ -120.39472632899999, 50.661134729000061 ], [ -120.394327342999972, 50.661081743000132 ], [ -120.393992489999945, 50.66103730400004 ], [ -120.393201140999977, 50.660826234000041 ], [ -120.392496014999949, 50.660515862000089 ], [ -120.39172546199994, 50.660138231000083 ], [ -120.391120701999967, 50.659842815000069 ], [ -120.390084321999964, 50.659337397000037 ], [ -120.390014137999941, 50.659303142000063 ], [ -120.389787811999923, 50.659192122000036 ], [ -120.389457092999962, 50.659029896000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "344906220", "BldgCostT": "230660413", "sL_LossRatio": "0.996723366291762", "sL_AssetLoss": "29383.8884273", "sL_BldgLoss": "29287.608188", "sL_StrLoss": "29251.130438", "sL_NStrLoss": "36.47775", "sL_ContLoss": "96.2802393", "geom_point": "0101000020E6100000E089B4E8B8165EC0B56ABEE793534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.356589607, 50.657464616000084 ], [ -120.35449689699999, 50.655969135000078 ], [ -120.354419279999917, 50.6559984310001 ], [ -120.35377074799996, 50.65624325700005 ], [ -120.353561031999945, 50.65631444300007 ], [ -120.353277253000016, 50.65641079800011 ], [ -120.353228157, 50.65642496100007 ], [ -120.353197150999947, 50.656433885000062 ], [ -120.35270437299998, 50.656432058000107 ], [ -120.352070420999979, 50.656429734000078 ], [ -120.351887071999968, 50.65642904700011 ], [ -120.352028349999941, 50.656360217000056 ], [ -120.353985368999972, 50.6554065710001 ], [ -120.354424251999916, 50.655192688000092 ], [ -120.35534333799994, 50.654744778000108 ], [ -120.354542436999935, 50.654616468 ], [ -120.353891191999963, 50.654512111 ], [ -120.353697151999938, 50.654481037000032 ], [ -120.353169015999953, 50.654255996000082 ], [ -120.35198544, 50.653781001000048 ], [ -120.351377198999927, 50.653536931000112 ], [ -120.35103847299996, 50.654084758000067 ], [ -120.35079700599999, 50.654311328000126 ], [ -120.350470137999963, 50.654483074000105 ], [ -120.350419948999914, 50.654498831000062 ], [ -120.350050378, 50.654614955000106 ], [ -120.349889070999893, 50.654633996 ], [ -120.349618044999943, 50.654665986000026 ], [ -120.349008656, 50.654680118000037 ], [ -120.348605194999934, 50.654648797000071 ], [ -120.348208321999905, 50.654553854000078 ], [ -120.347813281, 50.654387802000045 ], [ -120.347307081999972, 50.653966465000117 ], [ -120.347025354999957, 50.653825097000087 ], [ -120.346198110999978, 50.653608255000059 ], [ -120.346074969999989, 50.653552340000019 ], [ -120.345851683999967, 50.65345095 ], [ -120.3456646399999, 50.653309254000064 ], [ -120.34553421199999, 50.653210443000049 ], [ -120.34518022099995, 50.652786925000036 ], [ -120.344864838999968, 50.652496043000021 ], [ -120.344517880999931, 50.652275634 ], [ -120.344487277999974, 50.652260670000032 ], [ -120.34405524899995, 50.652049349000087 ], [ -120.343185826, 50.651851969000063 ], [ -120.342764812999988, 50.651825162000058 ], [ -120.342187815999949, 50.651841787000123 ], [ -120.341861908999959, 50.651915282000076 ], [ -120.34151449299992, 50.652081483000103 ], [ -120.341275708999916, 50.652286500000088 ], [ -120.340264716999968, 50.651846604000099 ], [ -120.339223608999987, 50.651393597000045 ], [ -120.339015132999933, 50.651281258000061 ], [ -120.339089641999962, 50.651197945000085 ], [ -120.341600344999947, 50.651259938000067 ], [ -120.342828394999941, 50.650986702000097 ], [ -120.343109784999982, 50.65089087300003 ], [ -120.345023579999989, 50.651817626000081 ], [ -120.345509693999986, 50.652053023000128 ], [ -120.346324669999888, 50.652482041000034 ], [ -120.347552869999959, 50.651999029000123 ], [ -120.347820544999976, 50.651902586000105 ], [ -120.34835886899999, 50.651889653000083 ], [ -120.350134665999974, 50.651826690000043 ], [ -120.350179648999955, 50.65182519600004 ], [ -120.350147307999976, 50.652081912000021 ], [ -120.350133489999962, 50.652081211000038 ], [ -120.350111724000016, 50.652253973000093 ], [ -120.350259830999903, 50.652257343000024 ], [ -120.35024466, 50.652526845000118 ], [ -120.350668578999944, 50.65253648900007 ], [ -120.350653410999911, 50.65280599200009 ], [ -120.351501254999974, 50.652825277000041 ], [ -120.351486089999966, 50.653094778000089 ], [ -120.351910013999898, 50.653104419000059 ], [ -120.351925175999938, 50.652834916000131 ], [ -120.352349098999923, 50.652844555000023 ], [ -120.352364258999955, 50.652575052000067 ], [ -120.35278818099998, 50.652584688000097 ], [ -120.352833650999955, 50.651776180000056 ], [ -120.354105391999951, 50.651805080000045 ], [ -120.354120541999976, 50.651535576000079 ], [ -120.354544452999988, 50.651545207000098 ], [ -120.354574746999972, 50.651006200000012 ], [ -120.354998653999971, 50.65101582800002 ], [ -120.355028939999912, 50.650476822000051 ], [ -120.355452842999938, 50.650486448000088 ], [ -120.355508747999949, 50.649491323000078 ], [ -120.355982270999988, 50.649169249000053 ], [ -120.356793959999933, 50.649142618000091 ], [ -120.35764633, 50.64933359200009 ], [ -120.357950424, 50.649001304000095 ], [ -120.358394930999935, 50.649641355000085 ], [ -120.358490511999946, 50.649779038000041 ], [ -120.358575566, 50.649901476000089 ], [ -120.358835269999929, 50.65027545800011 ], [ -120.359075951999912, 50.650621994000112 ], [ -120.359402090999964, 50.651019718000043 ], [ -120.359716199999966, 50.651298784000069 ], [ -120.359731828999955, 50.651309377000089 ], [ -120.359759187999927, 50.651327911000102 ], [ -120.359989585999969, 50.65148387000005 ], [ -120.360806621999984, 50.651849684000069 ], [ -120.360819823999947, 50.651853248000087 ], [ -120.361428124999989, 50.65201789400006 ], [ -120.361585006999974, 50.652060358000071 ], [ -120.361603896999952, 50.652062614000073 ], [ -120.362225515999967, 50.652136947000017 ], [ -120.36312067799993, 50.652143120000119 ], [ -120.36315163299993, 50.652143324000114 ], [ -120.365268066999974, 50.651985584000052 ], [ -120.365748224999948, 50.652005381000023 ], [ -120.366233229999963, 50.652082588 ], [ -120.366238100999936, 50.652083364000056 ], [ -120.366706316999981, 50.652198067000022 ], [ -120.36705084, 50.65233718000006 ], [ -120.365050120999939, 50.653064930000077 ], [ -120.363987512999969, 50.653285969000095 ], [ -120.364039500000018, 50.653482392000058 ], [ -120.364027094, 50.653693502000131 ], [ -120.363909896999985, 50.653903803000041 ], [ -120.363689010999934, 50.65412519900012 ], [ -120.363436300000018, 50.654249315000122 ], [ -120.36309130099994, 50.654340016000027 ], [ -120.362748812999953, 50.65437670600005 ], [ -120.361961319999949, 50.654295387000047 ], [ -120.361679998999946, 50.654308110000045 ], [ -120.36135641099996, 50.654386384000112 ], [ -120.361128596999933, 50.654504606000096 ], [ -120.360545620999986, 50.654738213000037 ], [ -120.36025633299991, 50.654781203000077 ], [ -120.359805906999966, 50.654724563000094 ], [ -120.359788163999923, 50.654722328000034 ], [ -120.359529372999944, 50.654635327000086 ], [ -120.359375074999932, 50.654507632000069 ], [ -120.359335244, 50.654350647000065 ], [ -120.359448163999929, 50.654208640000057 ], [ -120.36013970499998, 50.653879545000031 ], [ -120.36027337900002, 50.653742147000116 ], [ -120.360237, 50.653636746000124 ], [ -120.360135783999951, 50.653572052000037 ], [ -120.359815637999958, 50.653607499000067 ], [ -120.359675478999989, 50.653623023000065 ], [ -120.35918131899993, 50.653677766000037 ], [ -120.358647440999945, 50.653870586000075 ], [ -120.358182467999924, 50.654226414000078 ], [ -120.357727508999986, 50.654739528000043 ], [ -120.357492633999968, 50.655308865000109 ], [ -120.357363750999951, 50.655667297000079 ], [ -120.357260959999977, 50.656133585000092 ], [ -120.357194975999931, 50.656432811000101 ], [ -120.357083789999976, 50.656752494000081 ], [ -120.356950088999923, 50.657002592000048 ], [ -120.356915706999956, 50.657046666000028 ], [ -120.356779342999957, 50.657221460000073 ], [ -120.356589607, 50.657464616000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000038E15628AF165EC06FE578473E534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.354263772999929, 50.650338082000026 ], [ -120.354626144999926, 50.650091624000055 ], [ -120.35460503899999, 50.65046719300009 ], [ -120.35409112399999, 50.650455519000097 ], [ -120.354263772999929, 50.650338082000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174464833", "BldgCostT": "111508333", "sL_LossRatio": "0.993364434719572", "sL_AssetLoss": "15461.416724", "sL_BldgLoss": "15358.821484", "sL_StrLoss": "15320.746084", "sL_NStrLoss": "38.0754", "sL_ContLoss": "102.59524", "geom_point": "0101000020E6100000ACAEF9A74A165EC06F4BAAD729534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.345023579999989, 50.651817626000081 ], [ -120.343109784999982, 50.65089087300003 ], [ -120.342828394999941, 50.650986702000097 ], [ -120.341600344999947, 50.651259938000067 ], [ -120.339089641999962, 50.651197945000085 ], [ -120.339015132999933, 50.651281258000061 ], [ -120.338758373999951, 50.651142896000053 ], [ -120.338480886999974, 50.650923290000065 ], [ -120.338306584999941, 50.650752191000088 ], [ -120.338148600999929, 50.650529501000079 ], [ -120.338057188999954, 50.650400693000066 ], [ -120.338004756999936, 50.65022051400004 ], [ -120.337975996999958, 50.650121713000047 ], [ -120.337975418999946, 50.650113663000063 ], [ -120.337957011, 50.64986748900003 ], [ -120.338014581999957, 50.649556788000041 ], [ -120.338202707999983, 50.649191500000086 ], [ -120.338368889999941, 50.649007967000081 ], [ -120.338491405999946, 50.648872705000031 ], [ -120.338754928999933, 50.648685655000079 ], [ -120.338881125999933, 50.648596108000056 ], [ -120.339120492999953, 50.64847671400004 ], [ -120.339556003999959, 50.648309594000104 ], [ -120.33982895299998, 50.648256166000067 ], [ -120.34018737699995, 50.648186014000046 ], [ -120.340228408999948, 50.648177960000098 ], [ -120.340605710999967, 50.648967681000087 ], [ -120.34091401799995, 50.649213103000086 ], [ -120.34168600299995, 50.649563288000145 ], [ -120.341745212999939, 50.64958712100011 ], [ -120.342347907999951, 50.649829494000059 ], [ -120.343611704999972, 50.650332606000056 ], [ -120.344013891999936, 50.650407092000123 ], [ -120.344360383, 50.650429211000095 ], [ -120.344757320999946, 50.650399804000109 ], [ -120.345069164999984, 50.650338329000064 ], [ -120.347319199999944, 50.649894692000039 ], [ -120.34774660699999, 50.649803794000057 ], [ -120.348023788999953, 50.649789012000042 ], [ -120.348059502999888, 50.649792182000098 ], [ -120.34828759799997, 50.64981257000013 ], [ -120.349357293999958, 50.649908087000078 ], [ -120.350321809999969, 50.649948107000078 ], [ -120.350439513999945, 50.649933688000012 ], [ -120.351388593999943, 50.649817501000058 ], [ -120.352254892999909, 50.649686937000062 ], [ -120.353602403999972, 50.64948380700006 ], [ -120.353362129999965, 50.649158793000076 ], [ -120.353010513999934, 50.648683197000054 ], [ -120.352607653999954, 50.648256251000127 ], [ -120.352229118999972, 50.647854987000073 ], [ -120.35237274499994, 50.647816279000075 ], [ -120.353410395999944, 50.647536484000078 ], [ -120.353182729999943, 50.647123888000145 ], [ -120.353084238999955, 50.646857603000107 ], [ -120.352996387999895, 50.646405253000054 ], [ -120.354114496999941, 50.646317795000044 ], [ -120.355076045999965, 50.646199885000044 ], [ -120.355783728999882, 50.646114110000042 ], [ -120.355998706999955, 50.646368346000024 ], [ -120.356726604999949, 50.647238854000108 ], [ -120.357950424, 50.649001304000095 ], [ -120.35764633, 50.64933359200009 ], [ -120.356793959999933, 50.649142618000091 ], [ -120.355982270999988, 50.649169249000053 ], [ -120.355508747999949, 50.649491323000078 ], [ -120.355528543999981, 50.649138930000085 ], [ -120.355104653999931, 50.649129303000038 ], [ -120.355134936999974, 50.648590297000162 ], [ -120.354711052999974, 50.648580669000133 ], [ -120.354626144999926, 50.650091624000055 ], [ -120.354263772999929, 50.650338082000026 ], [ -120.35409112399999, 50.650455519000097 ], [ -120.353333332999952, 50.650438299000108 ], [ -120.353348484999941, 50.650168796000067 ], [ -120.352500686999946, 50.650149525000046 ], [ -120.352470370999967, 50.650688531000107 ], [ -120.352046466999951, 50.650678894000073 ], [ -120.352016146999972, 50.651217899000123 ], [ -120.350744422, 50.651188977000054 ], [ -120.350729254999976, 50.651458479000055 ], [ -120.350227287999971, 50.65144705900012 ], [ -120.350179648999955, 50.65182519600004 ], [ -120.350134665999974, 50.651826690000043 ], [ -120.34835886899999, 50.651889653000083 ], [ -120.347820544999976, 50.651902586000105 ], [ -120.347552869999959, 50.651999029000123 ], [ -120.346324669999888, 50.652482041000034 ], [ -120.345509693999986, 50.652053023000128 ], [ -120.345023579999989, 50.651817626000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "252080395", "BldgCostT": "165716524", "sL_LossRatio": "0.992846769655564", "sL_AssetLoss": "24855.903059", "sL_BldgLoss": "24678.103059", "sL_StrLoss": "24613.603059", "sL_NStrLoss": "64.5", "sL_ContLoss": "177.8", "geom_point": "0101000020E6100000C19891CD57145EC08B647E245B554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.30125478399998, 50.671656798000093 ], [ -120.301826080999945, 50.671383967000111 ], [ -120.302047801999947, 50.671389102000042 ], [ -120.302054614999975, 50.671270321000073 ], [ -120.302310004999953, 50.67112532699999 ], [ -120.302487330999924, 50.671129435000068 ], [ -120.302493540999961, 50.671021126000063 ], [ -120.302766675999948, 50.670866055000076 ], [ -120.302926853999935, 50.670869764000017 ], [ -120.302932464000023, 50.670771929000047 ], [ -120.303258358999969, 50.670586899000057 ], [ -120.303268973999977, 50.670580885000078 ], [ -120.304645311999963, 50.669798084000085 ], [ -120.305191307999948, 50.669524209000066 ], [ -120.306277426999912, 50.669102102000124 ], [ -120.308754298999958, 50.668138307000035 ], [ -120.310262123999948, 50.667525987 ], [ -120.310861783999954, 50.667187098000049 ], [ -120.311479198999976, 50.666775293000072 ], [ -120.311875580999967, 50.666442779000086 ], [ -120.312459064999985, 50.665953289000122 ], [ -120.313351300999955, 50.665204696000067 ], [ -120.314001399999938, 50.664725117000039 ], [ -120.314838209999962, 50.664218099000031 ], [ -120.31604458299995, 50.663639896000106 ], [ -120.317593293999934, 50.663050293000012 ], [ -120.318922896999965, 50.66266481500007 ], [ -120.319779103999934, 50.662462943000044 ], [ -120.320163988999965, 50.662372201000025 ], [ -120.322263795999973, 50.662037809000026 ], [ -120.323423795999958, 50.661914905000032 ], [ -120.324106205999925, 50.661908792000055 ], [ -120.327783490999963, 50.661875802000075 ], [ -120.328484263999968, 50.66186322300004 ], [ -120.32967200799996, 50.661841934000087 ], [ -120.329694784999987, 50.661841521000042 ], [ -120.329595135999952, 50.664448192000087 ], [ -120.32921246899997, 50.665789472000064 ], [ -120.329204604999973, 50.666210804000087 ], [ -120.3294589919999, 50.667631885000041 ], [ -120.329481682999955, 50.667758741000085 ], [ -120.329483543999942, 50.667878681000033 ], [ -120.329690188999976, 50.668389348000055 ], [ -120.329702305999959, 50.668563002000013 ], [ -120.329658510999963, 50.668695951000117 ], [ -120.328650731999957, 50.669982846000046 ], [ -120.327905342999955, 50.671350702000076 ], [ -120.32787546699997, 50.671402467000078 ], [ -120.327859882999974, 50.671429493000034 ], [ -120.327517071999978, 50.671428901000063 ], [ -120.327164113999913, 50.671428307000092 ], [ -120.327164209, 50.671348993000052 ], [ -120.327164626999945, 50.671309709000063 ], [ -120.327173321999936, 50.670514106999981 ], [ -120.327178921999931, 50.669879200000075 ], [ -120.327180366999968, 50.669716920000091 ], [ -120.327181120999953, 50.669633103000102 ], [ -120.327185820999929, 50.668709593000123 ], [ -120.32719668499999, 50.667726100000081 ], [ -120.324335515, 50.66771270300007 ], [ -120.324341406999977, 50.666825399000047 ], [ -120.323426730999969, 50.666820518000101 ], [ -120.321493278999938, 50.666810172000062 ], [ -120.321479111999921, 50.666810106000135 ], [ -120.321209010999922, 50.666811783000114 ], [ -120.31904180399999, 50.666825402000043 ], [ -120.319048113999884, 50.665987252000029 ], [ -120.31904960199995, 50.665788483000092 ], [ -120.317524821999939, 50.665774706000015 ], [ -120.317194200999936, 50.665717210000068 ], [ -120.31689678599993, 50.665620898000064 ], [ -120.3165923, 50.665446804000105 ], [ -120.31422690299992, 50.667246382000023 ], [ -120.314231883999938, 50.667688285000089 ], [ -120.312896988999967, 50.667674915000099 ], [ -120.312741182999929, 50.667673369000028 ], [ -120.312147103000015, 50.667667385000058 ], [ -120.311889912999931, 50.667701986000118 ], [ -120.311817886, 50.667799205000101 ], [ -120.311800286999969, 50.668699511000035 ], [ -120.310407392999977, 50.66869744100002 ], [ -120.309711700999955, 50.668696413000127 ], [ -120.309424984999964, 50.66888451100008 ], [ -120.309382302999921, 50.669008493 ], [ -120.309383257999983, 50.669111953000034 ], [ -120.30938749799999, 50.66957201200011 ], [ -120.309388414999887, 50.67045969900007 ], [ -120.309390193999889, 50.671351997000073 ], [ -120.309396318999973, 50.672243603000084 ], [ -120.308964605999932, 50.672243184000095 ], [ -120.30844382199993, 50.672194902000072 ], [ -120.308017102999912, 50.671987489000067 ], [ -120.306939680999918, 50.672519902000083 ], [ -120.30680269599999, 50.672547199000086 ], [ -120.306374079999912, 50.672756907000085 ], [ -120.305773045999899, 50.672996450000021 ], [ -120.305742810999931, 50.673008501000041 ], [ -120.305729836999916, 50.673012224000068 ], [ -120.305411105999937, 50.67310409700012 ], [ -120.305050307999977, 50.673171298000092 ], [ -120.303853891999964, 50.673254302000046 ], [ -120.303224045999983, 50.673259968000053 ], [ -120.303209801, 50.67326009500006 ], [ -120.302418286999966, 50.673229492000118 ], [ -120.302365284999922, 50.6733114990001 ], [ -120.302181185999984, 50.673306598000117 ], [ -120.299534090999913, 50.673181904000025 ], [ -120.299050108999936, 50.67311198800013 ], [ -120.298192789000026, 50.672896001000076 ], [ -120.298190066999922, 50.672895084000118 ], [ -120.297879601999981, 50.672789790000053 ], [ -120.297807086999953, 50.672772817000087 ], [ -120.297663089999944, 50.672739100000044 ], [ -120.297835598999953, 50.672689305000098 ], [ -120.298080053999982, 50.672621118000151 ], [ -120.298807418999957, 50.672418293000078 ], [ -120.300469678999903, 50.671967197000129 ], [ -120.30125478399998, 50.671656798000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "434700970", "BldgCostT": "274440413", "sL_LossRatio": "0.99005576891217", "sL_AssetLoss": "28119.59278", "sL_BldgLoss": "27839.9650513", "sL_StrLoss": "27734.1659213", "sL_NStrLoss": "105.79913", "sL_ContLoss": "279.6277287", "geom_point": "0101000020E610000019CE87CAF3165EC0670B5BF5B1564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.366144982999955, 50.68331629200005 ], [ -120.364502281999975, 50.683045700000093 ], [ -120.362667308999931, 50.682967385000076 ], [ -120.36183508, 50.683146797000113 ], [ -120.361401504999961, 50.683074193000024 ], [ -120.358554896999976, 50.682802207000059 ], [ -120.356336588999966, 50.682239614000132 ], [ -120.356130916999973, 50.682108604000057 ], [ -120.355166003999926, 50.681889208 ], [ -120.354977190999975, 50.681741095000071 ], [ -120.354507590999944, 50.681531807000098 ], [ -120.354168807999898, 50.681272610000043 ], [ -120.353583160999975, 50.681035070000078 ], [ -120.35360265, 50.680880384000048 ], [ -120.353144517999922, 50.68085715200008 ], [ -120.351538698999931, 50.680205785000091 ], [ -120.351028476999915, 50.680069728000028 ], [ -120.351220404999964, 50.679820493000108 ], [ -120.351336196999952, 50.679670096000038 ], [ -120.351369054999978, 50.679612273000053 ], [ -120.351457284999967, 50.67944875600007 ], [ -120.35148025, 50.679406137000093 ], [ -120.35148635199999, 50.679267688000031 ], [ -120.351433558999958, 50.679066736000053 ], [ -120.351235336999963, 50.678870148000065 ], [ -120.350916361999978, 50.678718790000033 ], [ -120.350623119, 50.678678702000084 ], [ -120.350588849999966, 50.678679987000109 ], [ -120.350333418999952, 50.678600319000076 ], [ -120.349366771999883, 50.678298863000123 ], [ -120.349245090999929, 50.678072608000036 ], [ -120.348639684999966, 50.677993271000112 ], [ -120.348616293999982, 50.677990203000071 ], [ -120.346435892999963, 50.677361395000105 ], [ -120.345659499, 50.676884003000069 ], [ -120.343227997999975, 50.676343197000129 ], [ -120.343442796999952, 50.675935091000042 ], [ -120.343678810999947, 50.675494707000105 ], [ -120.343830284999967, 50.674968916000054 ], [ -120.342578682999928, 50.674791808000101 ], [ -120.341957505999957, 50.674672797000056 ], [ -120.341953892, 50.674160798000081 ], [ -120.34196759699995, 50.6741633520001 ], [ -120.342651888999939, 50.674290909000064 ], [ -120.343145907999926, 50.674315094000086 ], [ -120.344320817999971, 50.674312591000074 ], [ -120.344876821999947, 50.674345832000014 ], [ -120.345222917999962, 50.674366498000012 ], [ -120.345503703999924, 50.67440419800004 ], [ -120.345843317999964, 50.674515199000083 ], [ -120.347384990999956, 50.675477495000116 ], [ -120.347535620999935, 50.675536739000059 ], [ -120.347661103999926, 50.675586114000019 ], [ -120.347969285999966, 50.675619807000054 ], [ -120.34843501499995, 50.675620897000087 ], [ -120.34895407499998, 50.6762014930001 ], [ -120.349362814999978, 50.676429494000025 ], [ -120.350080498999958, 50.676572201000035 ], [ -120.351656492999922, 50.676734202000034 ], [ -120.351984881999954, 50.676832908000137 ], [ -120.352484297999951, 50.677074511000079 ], [ -120.353688603999956, 50.67766180200011 ], [ -120.354067201999925, 50.677959494000078 ], [ -120.356005011999954, 50.678215397000095 ], [ -120.356019622999952, 50.677479009000081 ], [ -120.356034739, 50.676794910000091 ], [ -120.356007492999979, 50.676075318000073 ], [ -120.356044486999949, 50.675894260000049 ], [ -120.356131938999951, 50.675718471000067 ], [ -120.356695193999954, 50.675012613000035 ], [ -120.354384679999924, 50.675033291000027 ], [ -120.353393616999981, 50.675042600000026 ], [ -120.35295571099995, 50.675046516000094 ], [ -120.352436693999934, 50.674994886000057 ], [ -120.352142004999948, 50.674943900000045 ], [ -120.351945273999902, 50.674870895 ], [ -120.350918753999935, 50.674507882000043 ], [ -120.350077206999956, 50.6742209760001 ], [ -120.349689021999936, 50.67415712400004 ], [ -120.349512724999926, 50.674079685000031 ], [ -120.349465191999954, 50.673983557000028 ], [ -120.349452401999969, 50.673956670000067 ], [ -120.349418906, 50.673886275000029 ], [ -120.349414690999978, 50.673877355000066 ], [ -120.349835985999988, 50.673802317000089 ], [ -120.351560206999963, 50.673283334000068 ], [ -120.351618912999982, 50.673380925000039 ], [ -120.352426033999947, 50.673140729000103 ], [ -120.353111698999953, 50.672793418000033 ], [ -120.35328507, 50.672674520000086 ], [ -120.353291045999981, 50.67267042900005 ], [ -120.353508124999948, 50.672521558000064 ], [ -120.353563801999954, 50.672472506000062 ], [ -120.353643001999927, 50.672402770000126 ], [ -120.353851521, 50.672219067000093 ], [ -120.354108897999978, 50.671934749000108 ], [ -120.354306831999949, 50.671660006000081 ], [ -120.354485712999946, 50.671299621000074 ], [ -120.354621822999917, 50.6707261970001 ], [ -120.354574348999918, 50.670156041000091 ], [ -120.354549176999953, 50.669870916000093 ], [ -120.354801193999933, 50.669865674000079 ], [ -120.355017110999896, 50.669899150000077 ], [ -120.355310310999954, 50.669859943000091 ], [ -120.35706129, 50.669115161 ], [ -120.357612575999951, 50.669010784000101 ], [ -120.357759585999958, 50.668982952000086 ], [ -120.357946401999968, 50.668942849000103 ], [ -120.358475216999949, 50.668825459000097 ], [ -120.359042548, 50.668699341000028 ], [ -120.359874776999945, 50.668514312000092 ], [ -120.36031612599993, 50.668415020000076 ], [ -120.36047321199996, 50.668723950000121 ], [ -120.360489223999977, 50.668901382000072 ], [ -120.360285564999941, 50.669278567000099 ], [ -120.360281814999951, 50.669940708000119 ], [ -120.360235211999949, 50.669904020000047 ], [ -120.360025907999955, 50.67250395600005 ], [ -120.360020923999954, 50.672565861000102 ], [ -120.360068967999894, 50.672590728000074 ], [ -120.361750021999967, 50.673460447000096 ], [ -120.359687641999983, 50.673355982000047 ], [ -120.359678473999935, 50.67351930700007 ], [ -120.360526696999926, 50.673538532000116 ], [ -120.360511572999926, 50.673808036000054 ], [ -120.360935688999973, 50.673817645000071 ], [ -120.360890320999957, 50.674626156000031 ], [ -120.361314442999969, 50.674635765000069 ], [ -120.361284202999926, 50.675174773 ], [ -120.36240787199992, 50.675200222000107 ], [ -120.362556586, 50.675203590000102 ], [ -120.362546185999975, 50.675389021000051 ], [ -120.363172782999939, 50.675420746000029 ], [ -120.363157953999988, 50.675538647000074 ], [ -120.365667606999935, 50.675665679000083 ], [ -120.365637240999902, 50.675907240000136 ], [ -120.366106107999926, 50.675930966000088 ], [ -120.366089992999903, 50.676059173000056 ], [ -120.366754120999957, 50.676092777000044 ], [ -120.367641812000016, 50.676564681000087 ], [ -120.367628882999938, 50.676667561000031 ], [ -120.367844507999962, 50.676672434000075 ], [ -120.367929141999952, 50.676717425000035 ], [ -120.368040737999962, 50.676777131000044 ], [ -120.368815362999953, 50.677191519000075 ], [ -120.368812986999941, 50.677234006000063 ], [ -120.368898393999956, 50.677235936000073 ], [ -120.369227706999965, 50.67741209900003 ], [ -120.369146671999928, 50.678860618000058 ], [ -120.368722508999923, 50.678851038000047 ], [ -120.368692348999957, 50.679390049000112 ], [ -120.367844012999967, 50.679370881000054 ], [ -120.367831901999963, 50.679587279000067 ], [ -120.368091685999943, 50.679600420000135 ], [ -120.368052118999941, 50.679915276000067 ], [ -120.36866218599998, 50.679929059000074 ], [ -120.368632024999954, 50.680468069000099 ], [ -120.369056201999953, 50.680477649000103 ], [ -120.369041122999974, 50.680747155000077 ], [ -120.370313664999955, 50.680775890000078 ], [ -120.37030549399999, 50.680921992000059 ], [ -120.370452385999954, 50.680929419000073 ], [ -120.36909514499996, 50.682627253000113 ], [ -120.36869862499999, 50.682968664000093 ], [ -120.368531819999987, 50.683112256000079 ], [ -120.368128697999978, 50.683427950000123 ], [ -120.368038781999971, 50.68350220500011 ], [ -120.367663220999972, 50.683485802000099 ], [ -120.366144982999955, 50.68331629200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "152.1", "sL_BldgLoss": "152.1", "sL_StrLoss": "152.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000092725A6479165EC00A6AD7086D574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.349146203, 50.682514056000045 ], [ -120.349346552999961, 50.682253850000073 ], [ -120.349967279999973, 50.682454598000049 ], [ -120.350281206999981, 50.682649800000043 ], [ -120.351600389999987, 50.683121198000016 ], [ -120.35334248699999, 50.683611109000061 ], [ -120.354151018999943, 50.683938734000016 ], [ -120.353959793999962, 50.683878802000073 ], [ -120.352501949999933, 50.683542290000091 ], [ -120.35161022799997, 50.683295354000087 ], [ -120.351478269999973, 50.683249040000092 ], [ -120.350745011999962, 50.682951789000093 ], [ -120.350274018000022, 50.682826513000052 ], [ -120.349276298999939, 50.682550101000082 ], [ -120.349146203, 50.682514056000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "268691841", "BldgCostT": "167746792", "sL_LossRatio": "0.988323759265845", "sL_AssetLoss": "17988.490284", "sL_BldgLoss": "17778.452341", "sL_StrLoss": "17701.116941", "sL_NStrLoss": "77.3354", "sL_ContLoss": "210.037943", "geom_point": "0101000020E6100000FFAF2946CC155EC02204CCF84E554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.341250020999951, 50.671524269000145 ], [ -120.340445588999899, 50.671461760000106 ], [ -120.340253812999961, 50.671462885000082 ], [ -120.338953293999964, 50.67147057800004 ], [ -120.338541692999911, 50.671468596000153 ], [ -120.337295852999944, 50.671463255000035 ], [ -120.336899524999964, 50.671461539000035 ], [ -120.336717818999915, 50.671460760000102 ], [ -120.336703594999932, 50.671460685000064 ], [ -120.335838290999973, 50.671457993000104 ], [ -120.335413703999976, 50.671456663000157 ], [ -120.335201184999946, 50.67145599600012 ], [ -120.334453515999911, 50.67145363800006 ], [ -120.334439312999933, 50.671453584000083 ], [ -120.333333623999962, 50.671450101000119 ], [ -120.333163934999902, 50.67144957900009 ], [ -120.332004701999921, 50.671445903000091 ], [ -120.329622717999897, 50.671437303000097 ], [ -120.329186687999965, 50.671435366000075 ], [ -120.327859882999974, 50.671429493000034 ], [ -120.32787546699997, 50.671402467000078 ], [ -120.327905342999955, 50.671350702000076 ], [ -120.328650731999957, 50.669982846000046 ], [ -120.329658510999963, 50.668695951000117 ], [ -120.329702305999959, 50.668563002000013 ], [ -120.329690188999976, 50.668389348000055 ], [ -120.329483543999942, 50.667878681000033 ], [ -120.329481682999955, 50.667758741000085 ], [ -120.3294589919999, 50.667631885000041 ], [ -120.329204604999973, 50.666210804000087 ], [ -120.32921246899997, 50.665789472000064 ], [ -120.329595135999952, 50.664448192000087 ], [ -120.329694784999987, 50.661841521000042 ], [ -120.329685310999949, 50.661771789000106 ], [ -120.330618263999924, 50.661793175000057 ], [ -120.330616367999966, 50.661826605000066 ], [ -120.33054181699994, 50.663140663000036 ], [ -120.330117807999969, 50.663130945000049 ], [ -120.330056635999966, 50.664208934000037 ], [ -120.330480653999984, 50.664218653000027 ], [ -120.330465362999945, 50.664488151000057 ], [ -120.331313402999939, 50.664507586000056 ], [ -120.331275223, 50.665180688000106 ], [ -120.333392003999919, 50.665288473000011 ], [ -120.333418235999957, 50.6648256430001 ], [ -120.333842259999955, 50.664835351000079 ], [ -120.333857532999957, 50.664565852000074 ], [ -120.334281555999922, 50.66457555800006 ], [ -120.334296825999985, 50.664306059000054 ], [ -120.335992906999977, 50.664344866000071 ], [ -120.336008167, 50.664075368000027 ], [ -120.336856203999943, 50.66409476300008 ], [ -120.336871458999937, 50.663825263000092 ], [ -120.337295475999923, 50.663834957000056 ], [ -120.337310726999959, 50.663565458000093 ], [ -120.337734741999967, 50.663575151000067 ], [ -120.33778048799995, 50.662766654000031 ], [ -120.338204495999918, 50.66277634600003 ], [ -120.338219741999978, 50.662506846000056 ], [ -120.336947728, 50.662477768000052 ], [ -120.33698181499993, 50.661875484000063 ], [ -120.336986705999948, 50.661789067000051 ], [ -120.339758408999927, 50.661914298000085 ], [ -120.342101418999974, 50.662020097000031 ], [ -120.342331810999923, 50.66203050200005 ], [ -120.342445327999911, 50.662121474000067 ], [ -120.346886687999927, 50.662286069000118 ], [ -120.347326661999901, 50.662302348000075 ], [ -120.34740868699997, 50.662298264000064 ], [ -120.347540983, 50.662291590000066 ], [ -120.347921855999971, 50.662264156000106 ], [ -120.349859422999955, 50.662124597000087 ], [ -120.353937432999942, 50.661710842000033 ], [ -120.354025067999942, 50.661701942000029 ], [ -120.354732093999971, 50.661630156000108 ], [ -120.355253459, 50.661492300000084 ], [ -120.35526669199993, 50.661488803000111 ], [ -120.356513271999944, 50.661094200000029 ], [ -120.354775865999954, 50.662060426000046 ], [ -120.354319357999898, 50.662393237000032 ], [ -120.354196858999927, 50.662542913000031 ], [ -120.354003342999988, 50.662952149000013 ], [ -120.353958593999963, 50.663262574000086 ], [ -120.353967387999887, 50.663587441000061 ], [ -120.353969640999978, 50.663704699000085 ], [ -120.35400638599998, 50.664087315000131 ], [ -120.3540065, 50.664088657000086 ], [ -120.354071504999979, 50.664786384000095 ], [ -120.354110350999974, 50.665203222000081 ], [ -120.354135476999929, 50.6654658510001 ], [ -120.354218285999934, 50.666375523000077 ], [ -120.354218282999966, 50.666375696000038 ], [ -120.354269446999922, 50.666928 ], [ -120.35427790199995, 50.667063607000053 ], [ -120.354082563999953, 50.667069925000064 ], [ -120.353554040999953, 50.667083649000048 ], [ -120.352677571999934, 50.66706352500006 ], [ -120.351867854999938, 50.666836231000048 ], [ -120.351854687999946, 50.666832539000083 ], [ -120.351599021999931, 50.667080893000076 ], [ -120.350629436999938, 50.667473263000019 ], [ -120.350624320999941, 50.667474194000086 ], [ -120.350596737, 50.667479176 ], [ -120.350415829000013, 50.667511984000022 ], [ -120.35030657199999, 50.667533471000105 ], [ -120.349957337999967, 50.667510328000049 ], [ -120.349691683999964, 50.667421161000021 ], [ -120.349624917999947, 50.66737967500007 ], [ -120.349201784999963, 50.667116942000042 ], [ -120.348697207999962, 50.666726323000034 ], [ -120.347740592999955, 50.666114593 ], [ -120.34722679399998, 50.665928101000084 ], [ -120.346011600999958, 50.665859698000069 ], [ -120.34514889799999, 50.665581488000065 ], [ -120.344433386999938, 50.665266318000086 ], [ -120.343103895999931, 50.664822656000055 ], [ -120.341856184, 50.664411418000029 ], [ -120.34018737599996, 50.663989252000079 ], [ -120.339803864999936, 50.663958802000138 ], [ -120.339130808999982, 50.663824188000056 ], [ -120.339180909999953, 50.664152611000063 ], [ -120.339183593999934, 50.664170311000085 ], [ -120.339398419999938, 50.66448220500007 ], [ -120.33977619800001, 50.664695093000041 ], [ -120.340180876999966, 50.66481838800005 ], [ -120.340056187999949, 50.665041886000083 ], [ -120.339850992999942, 50.665204496000065 ], [ -120.339604725999934, 50.665322592000088 ], [ -120.339290512, 50.665404003000035 ], [ -120.339120590999983, 50.665423750000095 ], [ -120.33896187, 50.66544220100009 ], [ -120.338643414, 50.665412501000013 ], [ -120.338523037999948, 50.665385882000074 ], [ -120.338331169999918, 50.665343496000062 ], [ -120.337639908999932, 50.665060483000111 ], [ -120.337235799999959, 50.664965989000066 ], [ -120.336737305000028, 50.6649551020001 ], [ -120.336711406999925, 50.665441300000047 ], [ -120.33678747099998, 50.665592093000107 ], [ -120.336972911999922, 50.665810592000078 ], [ -120.33715289099996, 50.665959404000027 ], [ -120.337717695999913, 50.666524304000085 ], [ -120.337775258999955, 50.666617163000097 ], [ -120.338035150999943, 50.667036715000044 ], [ -120.338051492, 50.667063062000096 ], [ -120.338075118999939, 50.667101203000094 ], [ -120.33807816399991, 50.667110249000103 ], [ -120.338376139999966, 50.667990984 ], [ -120.338379100999958, 50.667999799 ], [ -120.338536171999976, 50.668476386000108 ], [ -120.338742606999958, 50.668652249000054 ], [ -120.338811816999979, 50.668711197000093 ], [ -120.339068586999986, 50.668836899000048 ], [ -120.339400184999974, 50.668921391000019 ], [ -120.339719394999932, 50.668969183000122 ], [ -120.34026202799997, 50.668956195000057 ], [ -120.340733714999899, 50.669010807000099 ], [ -120.341015135999953, 50.669088218000084 ], [ -120.341289622999952, 50.669219318000096 ], [ -120.341941946999967, 50.669474173000062 ], [ -120.341792622, 50.669678331000107 ], [ -120.341777297999954, 50.669878522000076 ], [ -120.341840579999939, 50.670019406000037 ], [ -120.341852688999936, 50.670046356000071 ], [ -120.342025787999916, 50.670193948000062 ], [ -120.342780822999941, 50.670512581000011 ], [ -120.342993044999957, 50.670654025000012 ], [ -120.343061812, 50.670817919000079 ], [ -120.343246243999928, 50.671179644000091 ], [ -120.343415723999897, 50.67133335900008 ], [ -120.34363736499995, 50.671433831000066 ], [ -120.343953180000014, 50.671485922000066 ], [ -120.344291372999947, 50.671484168000092 ], [ -120.34458071799996, 50.67153221100007 ], [ -120.344784649, 50.671644105000041 ], [ -120.344805194999978, 50.671655351000069 ], [ -120.344922003999912, 50.671809976000063 ], [ -120.344955011999929, 50.67196486000006 ], [ -120.344644997999978, 50.672305965000113 ], [ -120.344544599999963, 50.67240360300007 ], [ -120.343567417999978, 50.671988090000056 ], [ -120.342998517999931, 50.671825796000078 ], [ -120.342141707999986, 50.671660626000083 ], [ -120.341250020999951, 50.671524269000145 ] ], [ [ -120.337089619, 50.667472029000109 ], [ -120.337112436999945, 50.667068945000082 ], [ -120.336688389999949, 50.667059249000083 ], [ -120.33673415899996, 50.666250753000071 ], [ -120.335462045999975, 50.666221657000094 ], [ -120.335477308999913, 50.665952158000024 ], [ -120.334629239999956, 50.665932754000082 ], [ -120.33464450699995, 50.665663255000041 ], [ -120.333793015999959, 50.665643767000098 ], [ -120.333520941, 50.667796320000022 ], [ -120.33367425299997, 50.667799830000021 ], [ -120.333658977999931, 50.668069328000087 ], [ -120.334529842999984, 50.668089262000109 ], [ -120.334623705999917, 50.667346553000137 ], [ -120.337089619, 50.667472029000109 ] ], [ [ -120.343246951999973, 50.663701021000037 ], [ -120.343277386999915, 50.663162021000055 ], [ -120.341581337999969, 50.663123319000114 ], [ -120.341551582999969, 50.66364993400002 ], [ -120.341593047999979, 50.663663282000087 ], [ -120.3419749, 50.663671997000094 ], [ -120.341968563999941, 50.663784163000059 ], [ -120.342495297999974, 50.663953720000066 ], [ -120.342807713999917, 50.663960848000038 ], [ -120.34282293499993, 50.663691348000064 ], [ -120.343246951999973, 50.663701021000037 ] ], [ [ -120.341216013999912, 50.662075057000017 ], [ -120.341218241999911, 50.662035641000067 ], [ -120.339591044999949, 50.66199848300004 ], [ -120.339098235, 50.661987225000118 ], [ -120.339067754, 50.662526224000075 ], [ -120.339491757999966, 50.662535910000059 ], [ -120.33947652199997, 50.662805410000097 ], [ -120.341044328999914, 50.662841213 ], [ -120.341172555999918, 50.662844141000086 ], [ -120.341176558999948, 50.662773284000082 ], [ -120.341216013999912, 50.662075057000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9412917", "BldgCostT": "6491667", "sL_LossRatio": "1", "sL_AssetLoss": "1064", "sL_BldgLoss": "1064", "sL_StrLoss": "1064", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000556F6825C8895EC00786C50B16BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.152400850999925, 51.472203535000105 ], [ -122.152421762999893, 51.471964179000054 ], [ -122.15171454299994, 51.471940218000036 ], [ -122.151717401999974, 51.471907502000143 ], [ -122.151469816999935, 51.471905710000023 ], [ -122.151470991999986, 51.471842373000079 ], [ -122.14839292799995, 51.471738029000072 ], [ -122.148405503000035, 51.471594267000093 ], [ -122.147843718999965, 51.47157521500008 ], [ -122.147876506, 51.471200399000089 ], [ -122.147334125999961, 51.471182001000059 ], [ -122.147362491999914, 51.470857761000069 ], [ -122.14757291799999, 51.468452281000076 ], [ -122.149263981, 51.467250690000121 ], [ -122.150069877999954, 51.466678041000129 ], [ -122.150758078999914, 51.465999858000011 ], [ -122.155125019, 51.466147797000083 ], [ -122.155108482999978, 51.466337216000092 ], [ -122.155937303999963, 51.466365275000094 ], [ -122.155838143999958, 51.467501394000053 ], [ -122.156395664999948, 51.467520265000076 ], [ -122.15636655400003, 51.46785383800006 ], [ -122.15697266799998, 51.467874351000034 ], [ -122.156916235999986, 51.468521066000051 ], [ -122.156992820999989, 51.468523657000055 ], [ -122.156936880999965, 51.468713514000093 ], [ -122.158338707999945, 51.470323153000017 ], [ -122.158291274999968, 51.470866909000158 ], [ -122.158157670999941, 51.472398412000061 ], [ -122.152400850999925, 51.472203535000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999882928612152", "sL_AssetLoss": "210.1282", "sL_BldgLoss": "210.1036", "sL_StrLoss": "210", "sL_NStrLoss": "0.1036", "sL_ContLoss": "0.0246", "geom_point": "0101000020E6100000F2AF06A4D4725EC009E8740F3F854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.792438922999921, 51.043250760000099 ], [ -121.792540338999984, 51.042178688000043 ], [ -121.78993920899994, 51.042081296000013 ], [ -121.790132038999928, 51.040043961000094 ], [ -121.790188703999917, 51.039445260000043 ], [ -121.790369483999953, 51.039395696000057 ], [ -121.790345909999971, 51.03923330100011 ], [ -121.790208192999941, 51.039239322000071 ], [ -121.790278536999949, 51.03849604100008 ], [ -121.79597762199991, 51.038709350000083 ], [ -121.795876297999897, 51.039781429000101 ], [ -121.798477306, 51.039878685000112 ], [ -121.798140235999981, 51.043446929000027 ], [ -121.798138626999943, 51.0434639590001 ], [ -121.792438922999921, 51.043250760000099 ] ], [ [ -121.790892183999915, 51.03962639700007 ], [ -121.790680092999978, 51.039588013000127 ], [ -121.790648408999971, 51.039694803000081 ], [ -121.79093491, 51.040193309000109 ], [ -121.791161687999974, 51.040213198000011 ], [ -121.791207412999981, 51.04015909000001 ], [ -121.790892183999915, 51.03962639700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999971535363263", "sL_AssetLoss": "82.628843", "sL_BldgLoss": "82.626491", "sL_StrLoss": "82.600591", "sL_NStrLoss": "0.0259", "sL_ContLoss": "0.002352", "geom_point": "0101000020E6100000F0C640A64E7B5EC04C4364C3E0894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.927038532999944, 51.076468733000063 ], [ -121.927051010999946, 51.075929285000051 ], [ -121.9266228499999, 51.075925354000105 ], [ -121.926610367999956, 51.076464802000061 ], [ -121.927038532999944, 51.076468733000063 ], [ -121.927026055999988, 51.077008181000068 ], [ -121.927454224000016, 51.077012110000048 ], [ -121.927441751999979, 51.077551559000064 ], [ -121.927869927999893, 51.077555486000094 ], [ -121.927857459000023, 51.078094935000074 ], [ -121.928285638999952, 51.078098861000058 ], [ -121.928279405999902, 51.078368585000113 ], [ -121.928707587999938, 51.078372510000129 ], [ -121.928688899999955, 51.079181683000158 ], [ -121.928260709999961, 51.079177758000121 ], [ -121.928254477999985, 51.079447482000049 ], [ -121.92696990099995, 51.0794356970001 ], [ -121.926976140999969, 51.079165973 ], [ -121.926547950999961, 51.079162042000029 ], [ -121.926554193999934, 51.078892318000108 ], [ -121.926126007999954, 51.078888385000049 ], [ -121.926132251999917, 51.078618662000054 ], [ -121.92570406699997, 51.078614727000073 ], [ -121.925685324999975, 51.079423898000051 ], [ -121.926113517999937, 51.079427834000128 ], [ -121.92610102699993, 51.079967280000062 ], [ -121.926529224999953, 51.0799712130001 ], [ -121.926510495999963, 51.080780386000079 ], [ -121.925225883999985, 51.080768582000069 ], [ -121.925232134999973, 51.080498858000112 ], [ -121.924803931999961, 51.080494920000028 ], [ -121.924810185999945, 51.080225196000114 ], [ -121.924381985999958, 51.080221257000055 ], [ -121.92439449599999, 51.079681810000103 ], [ -121.923966302999943, 51.079677869000115 ], [ -121.923991330999968, 51.078598974000137 ], [ -121.923563145999964, 51.078595033000035 ], [ -121.923575664999973, 51.078055585000136 ], [ -121.92314748599992, 51.07805164100008 ], [ -121.923160009999918, 51.077512193000118 ], [ -121.922731835999926, 51.077508248000093 ], [ -121.922738099999961, 51.077238524000087 ], [ -121.922309928999937, 51.077234578000038 ], [ -121.922316194999937, 51.076964854000046 ], [ -121.921888025999976, 51.07696090600011 ], [ -121.921906832999966, 51.076151735000103 ], [ -121.922334991999961, 51.076155684000071 ], [ -121.922347525999967, 51.075616235000041 ], [ -121.923631994999951, 51.075628070000079 ], [ -121.923619475999885, 51.076167518000055 ], [ -121.924047637999976, 51.076171460000097 ], [ -121.924041381999984, 51.076441184000068 ], [ -121.924469546999916, 51.07644512400001 ], [ -121.92446329299996, 51.076714848000087 ], [ -121.924891459999941, 51.076718787000075 ], [ -121.92491021299999, 51.075909615000029 ], [ -121.924482053999895, 51.075905676000126 ], [ -121.924513318999971, 51.074557057000092 ], [ -121.924941466999925, 51.074560995000077 ], [ -121.924947716999966, 51.074291272000067 ], [ -121.926660294999962, 51.07430700900003 ], [ -121.926654053999968, 51.074576733000072 ], [ -121.927082202999927, 51.074580664000088 ], [ -121.927075962999965, 51.074850388000094 ], [ -121.927504112999941, 51.074854317000067 ], [ -121.927497877999912, 51.075124042000049 ], [ -121.927926030999942, 51.075127968000096 ], [ -121.927919796999973, 51.075397693000113 ], [ -121.928347951999939, 51.075401619000083 ], [ -121.928341721000024, 51.075671344000042 ], [ -121.928769878999958, 51.075675267000094 ], [ -121.928763649999922, 51.075944992000146 ], [ -121.929191809999963, 51.075948915 ], [ -121.92920426099991, 51.075409467000057 ], [ -121.930488727999958, 51.075421226000053 ], [ -121.930482509999976, 51.07569095000008 ], [ -121.930910667999953, 51.075694867000024 ], [ -121.930904451999979, 51.075964591000151 ], [ -121.931332613, 51.075968506000059 ], [ -121.931326397999982, 51.076238231000033 ], [ -121.93175456099999, 51.076242146000055 ], [ -121.931748350999925, 51.076511869000107 ], [ -121.932604682999937, 51.076519692000041 ], [ -121.932586062999988, 51.077328865000062 ], [ -121.932157888999953, 51.077324954000076 ], [ -121.932151679999947, 51.0775946790001 ], [ -121.93129532899999, 51.077586853000099 ], [ -121.93128911399999, 51.077856577000063 ], [ -121.929576402999942, 51.077840907000059 ], [ -121.929582627999935, 51.077571182000042 ], [ -121.929154452999981, 51.077567261000127 ], [ -121.929160677999974, 51.077297537000042 ], [ -121.928732505999932, 51.077293613000045 ], [ -121.928738735, 51.077023889000088 ], [ -121.928310564999919, 51.077019964000044 ], [ -121.92831679599999, 51.07675024100007 ], [ -121.927460461999928, 51.076742387000067 ], [ -121.927466697999961, 51.076472663000104 ], [ -121.927038532999944, 51.076468733000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999962776149723", "sL_AssetLoss": "159.03782", "sL_BldgLoss": "159.0319", "sL_StrLoss": "159", "sL_NStrLoss": "0.0319", "sL_ContLoss": "0.00592", "geom_point": "0101000020E610000076C0B7E15E875EC0C988D19419974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.116421630999966, 51.183805690000071 ], [ -122.116426789999963, 51.183535956000064 ], [ -122.116034092999953, 51.183532989000064 ], [ -122.11556842899995, 51.18352947000006 ], [ -122.115589914999987, 51.182406818000047 ], [ -122.115593933999904, 51.182196825000041 ], [ -122.115048034999944, 51.182178025000077 ], [ -122.110712802999942, 51.182028628000083 ], [ -122.110955933999961, 51.179256633000122 ], [ -122.111027293999911, 51.178442986000057 ], [ -122.111866385999946, 51.178471916000071 ], [ -122.111899476999909, 51.178094506000072 ], [ -122.112951126000013, 51.178130755 ], [ -122.112984050999941, 51.177755132000065 ], [ -122.118295404999941, 51.177938055000034 ], [ -122.118536288999934, 51.178334412000027 ], [ -122.118658249999939, 51.178457665000067 ], [ -122.118388637999956, 51.181537730000073 ], [ -122.117336904999945, 51.181501533000095 ], [ -122.117304012999938, 51.181877155000066 ], [ -122.11646485199999, 51.181848267000085 ], [ -122.116435170999935, 51.182187152000054 ], [ -122.11988591799998, 51.182213162000046 ], [ -122.119865370999904, 51.183292101000113 ], [ -122.119007013999962, 51.183285640000079 ], [ -122.119001872999903, 51.183555375000047 ], [ -122.118143510999971, 51.183548908000027 ], [ -122.118138361999968, 51.183818643000087 ], [ -122.116421630999966, 51.183805690000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000125FF599D6865EC07C7F83F66A994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.104145274999979, 51.196685258000045 ], [ -122.109866128999954, 51.196882635000065 ], [ -122.109826260999967, 51.197336884 ], [ -122.109551413999952, 51.200468204000089 ], [ -122.103830099999939, 51.20027081100006 ], [ -122.104015753999988, 51.198158825000128 ], [ -122.104145274999979, 51.196685258000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999992327591575", "sL_AssetLoss": "75.204547", "sL_BldgLoss": "75.20397", "sL_StrLoss": "75.2", "sL_NStrLoss": "0.00397", "sL_ContLoss": "0.000577", "geom_point": "0101000020E61000005CE17E3C8B8A5EC016DBE6BE03BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.161693656999972, 51.462778399000165 ], [ -122.162006004999981, 51.459193655000064 ], [ -122.167761167999942, 51.459388048000051 ], [ -122.16744928599995, 51.462972807000071 ], [ -122.163329762999965, 51.462833692000075 ], [ -122.164669205999971, 51.462270505000063 ], [ -122.164571497999972, 51.462170802000038 ], [ -122.164456188999949, 51.462061203000097 ], [ -122.164195076999988, 51.46221209400003 ], [ -122.163558307999907, 51.462351693000123 ], [ -122.163138103999984, 51.462582393000069 ], [ -122.163091882999979, 51.462690699000127 ], [ -122.163111096999941, 51.462826304000032 ], [ -122.161693656999972, 51.462778399000165 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999952641526493", "sL_AssetLoss": "95.23111", "sL_BldgLoss": "95.2266", "sL_StrLoss": "95.2", "sL_NStrLoss": "0.0266", "sL_ContLoss": "0.00451", "geom_point": "0101000020E610000047105B3858865EC01A27CF062A924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.096435351999958, 51.140015759000093 ], [ -122.102148872999948, 51.140213538000069 ], [ -122.101833937999928, 51.143799302000026 ], [ -122.09611995599991, 51.143601508000117 ], [ -122.096435351999958, 51.140015759000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.999979785850956", "sL_AssetLoss": "418.073498", "sL_BldgLoss": "418.065047", "sL_StrLoss": "418.000447", "sL_NStrLoss": "0.0646", "sL_ContLoss": "0.008451", "geom_point": "0101000020E610000084A2929DEB635EC0D301FF4A9D874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.563998761999969, 51.065692981999987 ], [ -121.564057572999957, 51.065103700000044 ], [ -121.563182073999883, 51.065069161000061 ], [ -121.56333794299999, 51.063507593000097 ], [ -121.561108507999947, 51.063419607000057 ], [ -121.561125904999955, 51.063245402000121 ], [ -121.56038339399997, 51.063216089000079 ], [ -121.560567874999961, 51.061368938000015 ], [ -121.557035103999965, 51.061229402 ], [ -121.557309295, 51.058485888000085 ], [ -121.554054386999937, 51.058357227000087 ], [ -121.55418776599997, 51.057023512000093 ], [ -121.553376053999926, 51.056991412000073 ], [ -121.553433816999956, 51.056413908000096 ], [ -121.55298868099996, 51.05639630200006 ], [ -121.553283590999953, 51.053447830000088 ], [ -121.553347198999958, 51.05281183800011 ], [ -121.559046947999988, 51.053037142000036 ], [ -121.558989264000033, 51.053614650000114 ], [ -121.559434374999967, 51.053632233000037 ], [ -121.559355254999943, 51.054424397000098 ], [ -121.561319960999938, 51.054501983000137 ], [ -121.560991966999936, 51.057787081000114 ], [ -121.563093725, 51.057870042000054 ], [ -121.562909362999989, 51.059717204000052 ], [ -121.566442033, 51.059856556000057 ], [ -121.566424657999974, 51.060030763000078 ], [ -121.56716711899999, 51.060060036000046 ], [ -121.567011397999963, 51.061621616000103 ], [ -121.569240753999964, 51.061709484000055 ], [ -121.569238264999939, 51.061734451000078 ], [ -121.570342417999925, 51.061777955000096 ], [ -121.570217314999965, 51.063033332000039 ], [ -121.569985197, 51.065362438000129 ], [ -121.56975646399999, 51.065353426000122 ], [ -121.569700216999934, 51.065917743000085 ], [ -121.563998761999969, 51.065692981999987 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999949453545402", "sL_AssetLoss": "86.455124", "sL_BldgLoss": "86.450754", "sL_StrLoss": "86.400954", "sL_NStrLoss": "0.0498", "sL_ContLoss": "0.00437", "geom_point": "0101000020E610000034AF132C085E5EC011B7960B0D904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.467576299999976, 51.127606774000064 ], [ -121.467673252999958, 51.126657406000106 ], [ -121.464846570999924, 51.126543602000069 ], [ -121.465212760999989, 51.122959695000098 ], [ -121.470921057999945, 51.123189443000072 ], [ -121.470824181999944, 51.124138816000041 ], [ -121.473650725999931, 51.124252471000027 ], [ -121.473285203999978, 51.127836401000096 ], [ -121.467576299999976, 51.127606774000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99996920157451", "sL_AssetLoss": "84.4199", "sL_BldgLoss": "84.4173", "sL_StrLoss": "84.4", "sL_NStrLoss": "0.0173", "sL_ContLoss": "0.0026", "geom_point": "0101000020E6100000143F84C0236F5EC0A3186A5E9F9A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.733869425999941, 51.206088241000032 ], [ -121.739589768999949, 51.206304368000083 ], [ -121.739245058999956, 51.209888819000071 ], [ -121.733524256999942, 51.209672677000107 ], [ -121.733869425999941, 51.206088241000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999993926430525", "sL_AssetLoss": "73.103634", "sL_BldgLoss": "73.10319", "sL_StrLoss": "73.1", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.000444", "geom_point": "0101000020E61000005C6A8CEFAE835EC05B423EE859954940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.054853310999974, 51.164913515000109 ], [ -122.060569850999968, 51.16511339500007 ], [ -122.060251379999968, 51.168698946000056 ], [ -122.054534379999978, 51.168499050000037 ], [ -122.054853310999974, 51.164913515000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.99997805788914", "sL_AssetLoss": "232.42978", "sL_BldgLoss": "232.42468", "sL_StrLoss": "232.4", "sL_NStrLoss": "0.02468", "sL_ContLoss": "0.0051", "geom_point": "0101000020E61000004F6FEB13A56A5EC01B79C5F855874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.663717584999958, 51.060448372000081 ], [ -121.663903025999971, 51.058547112000035 ], [ -121.662459671999954, 51.05849144200004 ], [ -121.662809389999921, 51.054906642000034 ], [ -121.663188484999935, 51.054921265000054 ], [ -121.663208382999983, 51.054717255000071 ], [ -121.663256313999938, 51.054225851000112 ], [ -121.664075156999957, 51.054257433000018 ], [ -121.664083481999938, 51.054172070000092 ], [ -121.669783960999936, 51.054391767000091 ], [ -121.669720350999938, 51.055044892000126 ], [ -121.66952273899993, 51.057073825000103 ], [ -121.66976804200003, 51.057083272000057 ], [ -121.669725390999986, 51.057521181000013 ], [ -121.66941886599993, 51.060668085000025 ], [ -121.664037465999911, 51.060460707000054 ], [ -121.663717584999958, 51.060448372000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999984754721053", "sL_AssetLoss": "162.01737", "sL_BldgLoss": "162.0149", "sL_StrLoss": "162", "sL_NStrLoss": "0.0149", "sL_ContLoss": "0.00247", "geom_point": "0101000020E61000003F4010832D635EC09FD1D2EC6C834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.546605012999976, 51.028847881000047 ], [ -121.546686305999941, 51.02803580200009 ], [ -121.546645468999969, 51.02803418400002 ], [ -121.547004267999938, 51.024449628000106 ], [ -121.548697921000027, 51.024516747000092 ], [ -121.552700358999957, 51.024675260000031 ], [ -121.55261918199993, 51.025487347000123 ], [ -121.552660016999965, 51.025488963000065 ], [ -121.55230166299999, 51.029073533000044 ], [ -121.549467889999931, 51.028961320000086 ], [ -121.546605012999976, 51.028847881000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999993338070328", "sL_AssetLoss": "76.404289", "sL_BldgLoss": "76.40378", "sL_StrLoss": "76.4", "sL_NStrLoss": "0.00378", "sL_ContLoss": "0.000509", "geom_point": "0101000020E610000097A6EFD2995D5EC05F030927757D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.461992647999921, 50.980630554000072 ], [ -121.461605619999887, 50.97982259500003 ], [ -121.461427323999942, 50.979567903000017 ], [ -121.461311558999967, 50.979454681000064 ], [ -121.461262282999911, 50.979406501000113 ], [ -121.460271719999952, 50.97875541000009 ], [ -121.45997012199993, 50.978449893000047 ], [ -121.45980420599993, 50.978200196000067 ], [ -121.45956380199999, 50.977713598 ], [ -121.458991956999952, 50.977075917000022 ], [ -121.462341236999976, 50.977211405000077 ], [ -121.46218479699999, 50.978746852000043 ], [ -121.462596532999939, 50.978763501000067 ], [ -121.462450473999965, 50.980197095000037 ], [ -121.464908150999989, 50.980296441000064 ], [ -121.46454310699994, 50.983880909000071 ], [ -121.463882911999946, 50.98385422700008 ], [ -121.463837101999943, 50.983745107000118 ], [ -121.46270041, 50.982156894000049 ], [ -121.462306085999941, 50.981218605000102 ], [ -121.462242453999949, 50.981105965000062 ], [ -121.462097901999982, 50.980850301000103 ], [ -121.461992647999921, 50.980630554000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999976527117206", "sL_AssetLoss": "78.81435", "sL_BldgLoss": "78.8125", "sL_StrLoss": "78.8", "sL_NStrLoss": "0.0125", "sL_ContLoss": "0.00185", "geom_point": "0101000020E61000009830DCB1BF605EC08F6104438C8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.509028224999923, 51.103937093000063 ], [ -121.514734302999955, 51.104164629000074 ], [ -121.514372258999956, 51.107748769000061 ], [ -121.508665722000018, 51.10752121600008 ], [ -121.509028224999923, 51.103937093000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999984871832511", "sL_AssetLoss": "84.61038", "sL_BldgLoss": "84.6091", "sL_StrLoss": "84.6", "sL_NStrLoss": "0.0091", "sL_ContLoss": "0.00128", "geom_point": "0101000020E6100000F520B19B61805EC09F46109DD4A74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.003252011999962, 51.309282269000057 ], [ -122.008986965999981, 51.309484732000058 ], [ -122.008663277999972, 51.313069592000055 ], [ -122.002927859999915, 51.31286711500011 ], [ -122.003252011999962, 51.309282269000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999951044860523", "sL_AssetLoss": "87.42698", "sL_BldgLoss": "87.4227", "sL_StrLoss": "87.4", "sL_NStrLoss": "0.0227", "sL_ContLoss": "0.00428", "geom_point": "0101000020E6100000467196ABC2715EC099C9C384C9834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.775524513000036, 51.027713836000054 ], [ -121.780525672999943, 51.027901744000069 ], [ -121.780185640999903, 51.031487012000113 ], [ -121.77868026099999, 51.031430474000011 ], [ -121.774487554999936, 51.031272902000048 ], [ -121.774828046, 51.027687650000125 ], [ -121.775524513000036, 51.027713836000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999969732102098", "sL_AssetLoss": "81.835878", "sL_BldgLoss": "81.833401", "sL_StrLoss": "81.800601", "sL_NStrLoss": "0.0328", "sL_ContLoss": "0.002477", "geom_point": "0101000020E610000099ACFEC666845EC0FBE46A5CE6924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.06620220399999, 51.149658896000041 ], [ -122.066254377999982, 51.149070383 ], [ -122.065311612999949, 51.149037474000089 ], [ -122.065629533999953, 51.145451833000024 ], [ -122.071343616999982, 51.145651172000065 ], [ -122.071291515999988, 51.146239690000094 ], [ -122.07223422499996, 51.146272549000102 ], [ -122.071916830999939, 51.149858206000076 ], [ -122.06620220399999, 51.149658896000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999670680353753", "sL_AssetLoss": "116.30038", "sL_BldgLoss": "116.26208", "sL_StrLoss": "116.00978", "sL_NStrLoss": "0.2523", "sL_ContLoss": "0.0383", "geom_point": "0101000020E61000000BC635FCB65F5EC09B31B36C397D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.492954996999956, 50.98019252700005 ], [ -121.492991669, 50.979830146000104 ], [ -121.492079389999915, 50.979793504000035 ], [ -121.492304220999983, 50.977572170000016 ], [ -121.492442187999984, 50.976208931000045 ], [ -121.498131838999939, 50.976437339000057 ], [ -121.498095210999949, 50.976799723000077 ], [ -121.499007433999964, 50.976836317000078 ], [ -121.498748609999893, 50.979397348000084 ], [ -121.498645157999988, 50.980420908000042 ], [ -121.492954996999956, 50.98019252700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "117", "sL_BldgLoss": "117", "sL_StrLoss": "117", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F4AF574A08A5EC0650963F2A3BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.163169925999938, 51.468435476000124 ], [ -122.163277477999955, 51.467200890000079 ], [ -122.162585688999954, 51.467177516000042 ], [ -122.16289799499998, 51.463592785000074 ], [ -122.163634160999933, 51.46361765900005 ], [ -122.163663080999967, 51.463285602000049 ], [ -122.169418785999966, 51.463479910000046 ], [ -122.169401438999941, 51.463679386000074 ], [ -122.16910701099998, 51.467064660000077 ], [ -122.169062573999938, 51.467063161000105 ], [ -122.168920903999904, 51.468691861000075 ], [ -122.163164520999942, 51.468497529000082 ], [ -122.163169925999938, 51.468435476000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999986559870227", "sL_AssetLoss": "154.01637", "sL_BldgLoss": "154.0143", "sL_StrLoss": "154", "sL_NStrLoss": "0.0143", "sL_ContLoss": "0.00207", "geom_point": "0101000020E610000007C43588E07D5EC0A083F435C7A34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.964714733999969, 51.281690246000068 ], [ -121.964729318999929, 51.281530376000035 ], [ -121.962659872999922, 51.281456491000057 ], [ -121.962987055000013, 51.277871646000087 ], [ -121.964426538999973, 51.277923044000055 ], [ -121.964509541999945, 51.277013180000033 ], [ -121.967062480999971, 51.277104289000093 ], [ -121.970240138999912, 51.277217612000065 ], [ -121.970142688999942, 51.278287350000028 ], [ -121.97077249199999, 51.278309800000102 ], [ -121.970445937999955, 51.281894666000071 ], [ -121.967471490999984, 51.281788610000021 ], [ -121.964714733999969, 51.281690246000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999925871639423", "sL_AssetLoss": "86.74143", "sL_BldgLoss": "86.735", "sL_StrLoss": "86.7", "sL_NStrLoss": "0.035", "sL_ContLoss": "0.00643", "geom_point": "0101000020E610000097293969D2825EC013277B74B89E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.041058681999928, 51.241699659000069 ], [ -122.041379228999986, 51.2381144390001 ], [ -122.047105147999986, 51.238314987000052 ], [ -122.046785060999966, 51.241900221000094 ], [ -122.041058681999928, 51.241699659000069 ] ], [ [ -122.04184789, 51.240679202000081 ], [ -122.041593397, 51.240560994000091 ], [ -122.0415195, 51.24068490600007 ], [ -122.041512884, 51.240991097000062 ], [ -122.041846092999947, 51.240787411000078 ], [ -122.04184789, 51.240679202000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999958648540759", "sL_AssetLoss": "82.947496", "sL_BldgLoss": "82.944066", "sL_StrLoss": "82.900866", "sL_NStrLoss": "0.0432", "sL_ContLoss": "0.00343", "geom_point": "0101000020E6100000415819CF586F5EC0DC945DF60C834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.736973079999984, 51.026277804000067 ], [ -121.736980410999948, 51.026008096000069 ], [ -121.735697397999957, 51.025994221000076 ], [ -121.735756096999964, 51.023836556000084 ], [ -121.735328447999962, 51.023831928000085 ], [ -121.735348340999948, 51.023100841 ], [ -121.735365142999953, 51.022483387000122 ], [ -121.736283468999957, 51.022493323000049 ], [ -121.736397969999985, 51.021298322000099 ], [ -121.73743599, 51.021337711000122 ], [ -121.737437423999907, 51.02132274700007 ], [ -121.743134057999939, 51.021538736000096 ], [ -121.743129665999973, 51.021584634000114 ], [ -121.744137324999926, 51.021622809000078 ], [ -121.74394623099991, 51.02362078400008 ], [ -121.743794410999897, 51.02520799100008 ], [ -121.743419374, 51.025193783000141 ], [ -121.743388190999937, 51.026346973000116 ], [ -121.736973079999984, 51.026277804000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999993733400912", "sL_AssetLoss": "73.4050469", "sL_BldgLoss": "73.4045869", "sL_StrLoss": "73.4000469", "sL_NStrLoss": "0.00454", "sL_ContLoss": "0.00046", "geom_point": "0101000020E6100000F750AA96175D5EC051B94FAF10974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.451652822999975, 51.18279794500004 ], [ -121.451840746999963, 51.180966590000025 ], [ -121.451393338999964, 51.180948541000099 ], [ -121.45176106599996, 51.17736488800012 ], [ -121.45747628699992, 51.17759530400005 ], [ -121.457288609999978, 51.179426674000055 ], [ -121.457736003999969, 51.179444700000033 ], [ -121.457368743999965, 51.183028365000069 ], [ -121.451652822999975, 51.18279794500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.999891489518555", "sL_AssetLoss": "205.23363", "sL_BldgLoss": "205.21136", "sL_StrLoss": "205.00326", "sL_NStrLoss": "0.2081", "sL_ContLoss": "0.02227", "geom_point": "0101000020E610000054C32396F97E5EC0664791525CA74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.98696494899994, 51.30490607800008 ], [ -121.989696195999969, 51.305002941000055 ], [ -121.989370976999965, 51.308587762000094 ], [ -121.988902144999912, 51.308571139000058 ], [ -121.988830801999896, 51.309357373000054 ], [ -121.98760674499999, 51.309313966000069 ], [ -121.98498239, 51.309220856000046 ], [ -121.983628529999962, 51.309172799000081 ], [ -121.98355651299994, 51.309965398000095 ], [ -121.977821614, 51.309761648000077 ], [ -121.978147776999933, 51.306176864000129 ], [ -121.983349672999935, 51.306361691000049 ], [ -121.983421687999964, 51.305569088 ], [ -121.983890485999936, 51.305585733000093 ], [ -121.98396191099999, 51.304799500000051 ], [ -121.98696494899994, 51.30490607800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999976715837524", "sL_AssetLoss": "520.09601", "sL_BldgLoss": "520.0839", "sL_StrLoss": "520", "sL_NStrLoss": "0.0839", "sL_ContLoss": "0.01211", "geom_point": "0101000020E610000018CACB9267715EC0D86F9AFC9E814940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.768723218, 51.018276271000033 ], [ -121.768758005, 51.017910399000129 ], [ -121.768568637999948, 51.017903267000065 ], [ -121.76860157499999, 51.017556866000056 ], [ -121.768476756999917, 51.017552165000069 ], [ -121.768521245, 51.01708428000007 ], [ -121.768425287999932, 51.017080665000094 ], [ -121.768675916999925, 51.014444583000028 ], [ -121.767918649999956, 51.014416055000062 ], [ -121.768046783999978, 51.013068471000054 ], [ -121.768211150999917, 51.011339713000034 ], [ -121.767429140999965, 51.011310248000022 ], [ -121.767488478999937, 51.010686237000058 ], [ -121.767332542999938, 51.010684591000064 ], [ -121.767325391999975, 51.010954303000076 ], [ -121.766470318999978, 51.010945278000172 ], [ -121.766463162999955, 51.011214990000077 ], [ -121.766035623, 51.011210476000038 ], [ -121.766028466999899, 51.011480187000096 ], [ -121.765173382999961, 51.011471152000112 ], [ -121.765166218999966, 51.011740865000043 ], [ -121.764311130999957, 51.011731823000055 ], [ -121.764303962999975, 51.012001535000138 ], [ -121.763876416999977, 51.011997012000023 ], [ -121.763869245999942, 51.012266724000028 ], [ -121.762586599999935, 51.012253146000013 ], [ -121.762572242999923, 51.012792569000034 ], [ -121.761289583999911, 51.012778976000135 ], [ -121.76131114199994, 51.011969843000031 ], [ -121.762593777999896, 51.011983435000062 ], [ -121.762608134999951, 51.011444011000037 ], [ -121.76303567699992, 51.01144853900005 ], [ -121.763042849999934, 51.011178828 ], [ -121.763897927999935, 51.011187878000108 ], [ -121.763905098999885, 51.010918166000053 ], [ -121.764332634999946, 51.010922688000086 ], [ -121.76433980399996, 51.010652977000106 ], [ -121.765194872, 51.010662018000076 ], [ -121.765202033999969, 51.010392305000025 ], [ -121.765629564999941, 51.010396823000086 ], [ -121.765636725999954, 51.010127111000081 ], [ -121.766491784999957, 51.010136143000096 ], [ -121.766498938999973, 51.009866430000073 ], [ -121.766926464999955, 51.009870943000088 ], [ -121.766933619999975, 51.009601231000062 ], [ -121.767590988999984, 51.009608168000092 ], [ -121.767770046999914, 51.007724939000141 ], [ -121.773465087999909, 51.007939396000062 ], [ -121.77341260799993, 51.008492108000027 ], [ -121.773479833999929, 51.008494638000052 ], [ -121.773482859, 51.008462778000087 ], [ -121.774316635999924, 51.008494150000054 ], [ -121.77437847799996, 51.008644194000105 ], [ -121.775491097000014, 51.009689488000049 ], [ -121.775995906999952, 51.010045600000055 ], [ -121.776432177999965, 51.010230695000089 ], [ -121.776901403999901, 51.010299093000071 ], [ -121.778033184999956, 51.010589607000156 ], [ -121.778747188999901, 51.01055120900007 ], [ -121.779242110999974, 51.010196603000111 ], [ -121.779546822, 51.009659920000082 ], [ -121.779900961999957, 51.009673227000086 ], [ -121.779888552000017, 51.009804127000059 ], [ -121.779561019, 51.013258564000118 ], [ -121.7760829599999, 51.013127832000059 ], [ -121.775873785999948, 51.015331847000034 ], [ -121.774723630999944, 51.015288592000047 ], [ -121.774419612999964, 51.018490676000035 ], [ -121.77151490599999, 51.018381383000133 ], [ -121.768723218, 51.018276271000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999965414338362", "sL_AssetLoss": "163.94077", "sL_BldgLoss": "163.9351", "sL_StrLoss": "163.9", "sL_NStrLoss": "0.0351", "sL_ContLoss": "0.00567", "geom_point": "0101000020E61000004077F653EB855EC03C6F0089E89B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.090031112999924, 51.215803259000047 ], [ -122.095754369999952, 51.216001347000017 ], [ -122.095438377999955, 51.21958680300002 ], [ -122.095006755, 51.219571875000035 ], [ -122.09494569899999, 51.220264513000053 ], [ -122.08922189499998, 51.220066385000116 ], [ -122.089538391999923, 51.216480949000108 ], [ -122.089969984, 51.216495898000105 ], [ -122.090031112999924, 51.215803259000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999958704371236", "sL_AssetLoss": "90.32433", "sL_BldgLoss": "90.3206", "sL_StrLoss": "90.3", "sL_NStrLoss": "0.0206", "sL_ContLoss": "0.00373", "geom_point": "0101000020E6100000FC53682847615EC01F4718ABF2834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.517300370999962, 51.028937333000066 ], [ -121.522996883999951, 51.029164468000019 ], [ -121.52263611399998, 51.032748928000075 ], [ -121.516939144000034, 51.032521776000074 ], [ -121.517300370999962, 51.028937333000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99989549625021", "sL_AssetLoss": "93.96792", "sL_BldgLoss": "93.9581", "sL_StrLoss": "93.9", "sL_NStrLoss": "0.0581", "sL_ContLoss": "0.00982", "geom_point": "0101000020E6100000DDACC96C33635EC0703F64BA25844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.549509422999918, 51.030582017000022 ], [ -121.553041456999949, 51.030721863000075 ], [ -121.55268309299997, 51.034306413000095 ], [ -121.549779356999977, 51.034191453000055 ], [ -121.546985770999967, 51.034080782000103 ], [ -121.54734459299999, 51.030496249000073 ], [ -121.549509422999918, 51.030582017000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999989113064011", "sL_AssetLoss": "81.106383", "sL_BldgLoss": "81.1055", "sL_StrLoss": "81.1", "sL_NStrLoss": "0.0055", "sL_ContLoss": "0.000883", "geom_point": "0101000020E61000009026E672A6875EC09D7DCCA4D9974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.11683148099992, 51.18443823800007 ], [ -122.12255081099994, 51.184634974000041 ], [ -122.122237209000019, 51.188220625000028 ], [ -122.119402611999959, 51.188123155000021 ], [ -122.116517417999901, 51.188023873000112 ], [ -122.116819611999972, 51.184573754000027 ], [ -122.11683148099992, 51.18443823800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.999989940434443", "sL_AssetLoss": "81.216231", "sL_BldgLoss": "81.215414", "sL_StrLoss": "81.200304", "sL_NStrLoss": "0.01511", "sL_ContLoss": "0.000817", "geom_point": "0101000020E6100000CBEF1BFC907E5EC03D5C593F09A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.971251138999889, 51.267709146000136 ], [ -121.971577524999987, 51.264124224000042 ], [ -121.976239228999972, 51.264290305000053 ], [ -121.976287946999946, 51.263754535000054 ], [ -121.982016881999954, 51.263958373000044 ], [ -121.981992238999936, 51.264229779000068 ], [ -121.98384463499994, 51.264295625000038 ], [ -121.983519241999943, 51.267880582000039 ], [ -121.977789791999953, 51.26767682100008 ], [ -121.977814463999934, 51.267405417000127 ], [ -121.977029276999986, 51.26737747100001 ], [ -121.976980563999959, 51.267913238000119 ], [ -121.971251138999889, 51.267709146000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "69.8", "sL_BldgLoss": "69.8", "sL_StrLoss": "69.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095575B6F63855EC03CE3569C459C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.08149068299997, 51.21898236100008 ], [ -122.087214312999947, 51.219180881000064 ], [ -122.086897606999969, 51.22276630100005 ], [ -122.081173516999954, 51.222567766000033 ], [ -122.08149068299997, 51.21898236100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999986187230743", "sL_AssetLoss": "81.80836", "sL_BldgLoss": "81.80723", "sL_StrLoss": "81.8", "sL_NStrLoss": "0.00723", "sL_ContLoss": "0.00113", "geom_point": "0101000020E610000055E573D5995C5EC011C6ECB8A37A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.447804904999941, 50.956565749000077 ], [ -121.450144801999954, 50.956660695000075 ], [ -121.44980392399998, 50.95999885300008 ], [ -121.449778765999895, 50.960245209000107 ], [ -121.447782429999933, 50.960164207000076 ], [ -121.447781974999941, 50.9601686560001 ], [ -121.445929308999965, 50.96009345200013 ], [ -121.445838276999908, 50.960012897000126 ], [ -121.44542282899999, 50.959605030000041 ], [ -121.444444282999953, 50.958644356000029 ], [ -121.44381840299998, 50.958029920000065 ], [ -121.443203202999896, 50.957425907000051 ], [ -121.443119702999979, 50.95735014800006 ], [ -121.442762914999946, 50.957026382000059 ], [ -121.442420237999926, 50.956754757000077 ], [ -121.44246130799992, 50.956353205000035 ], [ -121.444457463999925, 50.956434302000076 ], [ -121.444457918999944, 50.956429853000039 ], [ -121.447804904999941, 50.956565749000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999969217332789", "sL_AssetLoss": "167.6268", "sL_BldgLoss": "167.62164", "sL_StrLoss": "167.6", "sL_NStrLoss": "0.02164", "sL_ContLoss": "0.00516", "geom_point": "0101000020E61000004279616345605EC0AB2599ACBC924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.498661813999945, 51.148960771000056 ], [ -121.499025461999949, 51.145376842000054 ], [ -121.501885354999899, 51.145491062000069 ], [ -121.502785776999929, 51.145527008000052 ], [ -121.502984, 51.143571532000045 ], [ -121.508695138999911, 51.143799364000074 ], [ -121.508369644999917, 51.147014344000077 ], [ -121.508731458999961, 51.147028768000098 ], [ -121.508497411999926, 51.149340394000063 ], [ -121.508359216999906, 51.149306230000043 ], [ -121.507034102999953, 51.148871046000089 ], [ -121.506246770999951, 51.148504991000053 ], [ -121.505958033999946, 51.148251733000102 ], [ -121.505265842999961, 51.147644523000103 ], [ -121.505053549999943, 51.147501369000082 ], [ -121.503635385999971, 51.14654491800011 ], [ -121.50267202, 51.145809277000062 ], [ -121.502622678999941, 51.145793190000113 ], [ -121.502351458999982, 51.145704716000061 ], [ -121.501929564999955, 51.145694173000045 ], [ -121.502250732000022, 51.148041482000082 ], [ -121.502460806000016, 51.149112482000071 ], [ -121.498661813999945, 51.148960771000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999962324806789", "sL_AssetLoss": "175.44701", "sL_BldgLoss": "175.4404", "sL_StrLoss": "175.4", "sL_NStrLoss": "0.0404", "sL_ContLoss": "0.00661", "geom_point": "0101000020E6100000E209F7A96E5D5EC0D097FF0CC67B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.456725294999941, 50.966945747000111 ], [ -121.456546499999916, 50.966853792000116 ], [ -121.45645179199991, 50.96680511200001 ], [ -121.45600781399996, 50.966580102000137 ], [ -121.45559911399999, 50.966275602000117 ], [ -121.45521100399999, 50.965922493000114 ], [ -121.454814592999924, 50.965452423000087 ], [ -121.454602098999942, 50.965200414000073 ], [ -121.454311098999952, 50.964778297000073 ], [ -121.45387402099999, 50.964262107000124 ], [ -121.453410395999967, 50.963838384000091 ], [ -121.453112611999956, 50.963620152000054 ], [ -121.453111776999904, 50.963619540000103 ], [ -121.457953793999948, 50.963815698000076 ], [ -121.457873483999904, 50.964603430000061 ], [ -121.459352501999959, 50.96466330500008 ], [ -121.462604184999932, 50.964794875000045 ], [ -121.46255645899997, 50.965263477000072 ], [ -121.46295920399993, 50.965279766000023 ], [ -121.462766607999967, 50.967170850000052 ], [ -121.464358783999913, 50.967235232000064 ], [ -121.464243850999964, 50.968364075000039 ], [ -121.463993802999951, 50.970819750000011 ], [ -121.459665790999935, 50.970644687000039 ], [ -121.459850380999967, 50.97011000599999 ], [ -121.459860489999926, 50.969964219000076 ], [ -121.459861744999955, 50.969946252000042 ], [ -121.459865313999927, 50.969894699000086 ], [ -121.459559898999984, 50.969075236000023 ], [ -121.459505291999903, 50.968928719000054 ], [ -121.4593874, 50.968612415000088 ], [ -121.459192511999959, 50.968089366000058 ], [ -121.459129408999942, 50.967573059000131 ], [ -121.458241537999982, 50.967429968000033 ], [ -121.45785583299994, 50.967334277000148 ], [ -121.457003086999961, 50.967041607000056 ], [ -121.45673668699996, 50.966951602000016 ], [ -121.456725294999941, 50.966945747000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999983952558826", "sL_AssetLoss": "162.0196", "sL_BldgLoss": "162.017", "sL_StrLoss": "162", "sL_NStrLoss": "0.017", "sL_ContLoss": "0.0026", "geom_point": "0101000020E610000095877DE90A6E5EC0848C367DAC824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.716981368999953, 51.022601273000085 ], [ -121.71698251299992, 51.022589380000078 ], [ -121.715809127999975, 51.022544642000106 ], [ -121.71615427299993, 51.018959535000128 ], [ -121.721850500999906, 51.019176603000112 ], [ -121.721849356999925, 51.019188497000073 ], [ -121.723022660999973, 51.019233172000057 ], [ -121.722678065999929, 51.022818299000086 ], [ -121.716981368999953, 51.022601273000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "64.7", "sL_BldgLoss": "64.7", "sL_StrLoss": "64.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CFD3E36B4D5F5EC0BCC8A942288E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.486429207999933, 51.108697267000103 ], [ -121.492135780999973, 51.108925945000045 ], [ -121.491771875999973, 51.112509994000099 ], [ -121.486064844999959, 51.112281298000013 ], [ -121.486429207999933, 51.108697267000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999920665361766", "sL_AssetLoss": "93.02368", "sL_BldgLoss": "93.0163", "sL_StrLoss": "93", "sL_NStrLoss": "0.0163", "sL_ContLoss": "0.00738", "geom_point": "0101000020E610000041C47A61FA605EC016EB6525778F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.512609071999975, 51.118917809000088 ], [ -121.518317090999957, 51.11914515900002 ], [ -121.517955213999983, 51.122729252000049 ], [ -121.512246735999952, 51.122501884000059 ], [ -121.512609071999975, 51.118917809000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999997201629093", "sL_AssetLoss": "77.902468", "sL_BldgLoss": "77.90225", "sL_StrLoss": "77.9", "sL_NStrLoss": "0.00225", "sL_ContLoss": "0.000218", "geom_point": "0101000020E61000003A3B7C4620935EC066F2727D44B74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.296119472999976, 51.429891215000048 ], [ -122.301871394999978, 51.430078821000066 ], [ -122.301609126999963, 51.433205068000056 ], [ -122.301570617999943, 51.433664048000026 ], [ -122.295818230999899, 51.433476426 ], [ -122.29589542799999, 51.432557727000152 ], [ -122.296119472999976, 51.429891215000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99995848993332", "sL_AssetLoss": "184.05174", "sL_BldgLoss": "184.0441", "sL_StrLoss": "184", "sL_NStrLoss": "0.0441", "sL_ContLoss": "0.00764", "geom_point": "0101000020E61000002D16548E28635EC0CFD0AA5CC9854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.547043567999978, 51.047388459000047 ], [ -121.547137906999978, 51.046446382000141 ], [ -121.545599382999981, 51.046385421000082 ], [ -121.545958413999969, 51.04280094100011 ], [ -121.548771393999957, 51.042912383000065 ], [ -121.551656846999904, 51.043026622000127 ], [ -121.551562609999976, 51.043968707 ], [ -121.55310106099995, 51.044029585000075 ], [ -121.552742592999948, 51.047614083000028 ], [ -121.54942965, 51.047482959000085 ], [ -121.547043567999978, 51.047388459000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999999056521115", "sL_AssetLoss": "81.4008678", "sL_BldgLoss": "81.400791", "sL_StrLoss": "81.4", "sL_NStrLoss": "0.000791", "sL_ContLoss": "0.0000768", "geom_point": "0101000020E610000076CDFD38CE5D5EC08E1F2A8D18914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.463040231999955, 51.13165486000009 ], [ -121.468749633999948, 51.131884717000027 ], [ -121.46838365399999, 51.135468601000092 ], [ -121.46267379399994, 51.135238726000075 ], [ -121.463040231999955, 51.13165486000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999985697354726", "sL_AssetLoss": "76.90885", "sL_BldgLoss": "76.90775", "sL_StrLoss": "76.9", "sL_NStrLoss": "0.00775", "sL_ContLoss": "0.0011", "geom_point": "0101000020E6100000AD465D0885745EC05C76E3384BA74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.816573912999914, 51.30697068500011 ], [ -121.816713334999946, 51.305497512000073 ], [ -121.822446924999966, 51.305709421000081 ], [ -121.822430096999966, 51.305887487000042 ], [ -121.823196810999917, 51.305915802000108 ], [ -121.823165885999941, 51.306243087000055 ], [ -121.823975505999968, 51.306272981000063 ], [ -121.82371988099996, 51.308978598000081 ], [ -121.823601110999931, 51.308941476000086 ], [ -121.820985037999947, 51.308549726000059 ], [ -121.820898982999935, 51.30853682300009 ], [ -121.820853226999944, 51.308518966000086 ], [ -121.820153937000015, 51.308245867000082 ], [ -121.817895571999912, 51.307363868000024 ], [ -121.816573912999914, 51.30697068500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999966356927705", "sL_AssetLoss": "83.82112", "sL_BldgLoss": "83.8183", "sL_StrLoss": "83.8", "sL_NStrLoss": "0.0183", "sL_ContLoss": "0.00282", "geom_point": "0101000020E6100000F299AA83557C5EC06A0602AEF5884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.940295357999943, 51.06809637900011 ], [ -121.945998939999953, 51.068302083000049 ], [ -121.945671930999964, 51.071887682000032 ], [ -121.945146340999926, 51.071868738000042 ], [ -121.94514360899997, 51.071898695000087 ], [ -121.939439569999976, 51.071692948000077 ], [ -121.939767080999971, 51.068107367000096 ], [ -121.940292622999962, 51.068126335000052 ], [ -121.940295357999943, 51.06809637900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.969757193467554", "sL_AssetLoss": "0.034719", "sL_BldgLoss": "0.033669", "sL_StrLoss": "0.000869", "sL_NStrLoss": "0.0328", "sL_ContLoss": "0.00105", "geom_point": "0101000020E610000012AD2E0A6F5E5EC0ECB886BEE08E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.472856351999894, 51.114326958000056 ], [ -121.478563577999978, 51.114556321000066 ], [ -121.478198531999936, 51.118140304000072 ], [ -121.47249084699996, 51.11791092300011 ], [ -121.472856351999894, 51.114326958000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999934391803992", "sL_AssetLoss": "80.93501", "sL_BldgLoss": "80.9297", "sL_StrLoss": "80.9", "sL_NStrLoss": "0.0297", "sL_ContLoss": "0.00531", "geom_point": "0101000020E61000001A66CB668C6D5EC0F2AC495CEC9B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.709007175999972, 51.21624977200004 ], [ -121.714728707999953, 51.216467154000021 ], [ -121.714381909999958, 51.220051491000078 ], [ -121.708659918999956, 51.219834092000056 ], [ -121.709007175999972, 51.21624977200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999962036004013", "sL_AssetLoss": "176.74641", "sL_BldgLoss": "176.7397", "sL_StrLoss": "176.7", "sL_NStrLoss": "0.0397", "sL_ContLoss": "0.00671", "geom_point": "0101000020E61000008279445CAB7C5EC06D561A847B9B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.946234749999974, 51.212538316000071 ], [ -121.951956930999984, 51.212743687000092 ], [ -121.951867496999967, 51.213722480000115 ], [ -121.9516376669999, 51.216237608000021 ], [ -121.95162933899995, 51.216328745000091 ], [ -121.950405165999911, 51.216284835000145 ], [ -121.950362909999981, 51.216747076000104 ], [ -121.949677229999978, 51.216722474000072 ], [ -121.949665086999943, 51.216855292000076 ], [ -121.943942384999929, 51.216649805000053 ], [ -121.944270600999971, 51.213064770000102 ], [ -121.944956221999973, 51.213089404000094 ], [ -121.944968377999942, 51.212956587000079 ], [ -121.946192454999959, 51.213000557000022 ], [ -121.946234749999974, 51.212538316000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999995241958123", "sL_AssetLoss": "86.800413", "sL_BldgLoss": "86.8", "sL_StrLoss": "86.8", "sL_NStrLoss": "0", "sL_ContLoss": "0.000413", "geom_point": "0101000020E61000003D4C56A071615EC0D78DD200B98E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.521060849999969, 51.11628247600003 ], [ -121.521069460999954, 51.11601279500006 ], [ -121.520640998999966, 51.11600737599999 ], [ -121.520649611999886, 51.11573769600011 ], [ -121.519792692999957, 51.11572685000008 ], [ -121.51983578299992, 51.114378452000047 ], [ -121.523263362999941, 51.114421795000105 ], [ -121.523271961999967, 51.11415211600012 ], [ -121.524557297999934, 51.114168344000099 ], [ -121.524565885999948, 51.113898663000093 ], [ -121.525851218999946, 51.113914877000113 ], [ -121.52583558000002, 51.114406257000056 ], [ -121.525816888999941, 51.114993598000069 ], [ -121.524531525999976, 51.114977384000042 ], [ -121.524522936999972, 51.115247064000073 ], [ -121.523666025999901, 51.115236246000073 ], [ -121.52365742899994, 51.115505926000047 ], [ -121.522800513999925, 51.115495103000043 ], [ -121.52277471, 51.116304142000054 ], [ -121.522591452999961, 51.116301827000029 ], [ -121.521060849999969, 51.11628247600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "74.5", "sL_BldgLoss": "74.5", "sL_StrLoss": "74.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002833F7F3DA5D5EC0342B80CEC9914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.463816872999971, 51.137064290000126 ], [ -121.469526972999986, 51.13729410600007 ], [ -121.469161011999972, 51.140877972000148 ], [ -121.463450452999922, 51.140648138000138 ], [ -121.463816872999971, 51.137064290000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964039336562454", "sL_AssetLoss": "0.06813", "sL_BldgLoss": "0.06568", "sL_StrLoss": "0.00208", "sL_NStrLoss": "0.0636", "sL_ContLoss": "0.00245", "geom_point": "0101000020E6100000800131C73A655EC011DD16D90C974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.578314127999974, 51.179089091000066 ], [ -121.584030220000017, 51.179313101000055 ], [ -121.583815849999922, 51.181464942000034 ], [ -121.58301953299997, 51.181474306000055 ], [ -121.582648348999953, 51.181427368000058 ], [ -121.581666298999949, 51.181060579000132 ], [ -121.579203509, 51.179890028000038 ], [ -121.578263925999963, 51.1795923990001 ], [ -121.578314127999974, 51.179089091000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999931036553667", "sL_AssetLoss": "187.49063", "sL_BldgLoss": "187.4777", "sL_StrLoss": "187.4", "sL_NStrLoss": "0.0777", "sL_ContLoss": "0.01293", "geom_point": "0101000020E61000006CAEDC035B6C5EC04D41A7B5A39B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.692363089000011, 51.218557356000133 ], [ -121.692528083999932, 51.216860783000101 ], [ -121.687676938999957, 51.216675534000032 ], [ -121.688025866999936, 51.213091266000099 ], [ -121.693746887999964, 51.21330971200009 ], [ -121.69358195199996, 51.215006293000037 ], [ -121.698432939999961, 51.215191289000046 ], [ -121.698084834999946, 51.218775580000049 ], [ -121.692363089000011, 51.218557356000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999669348028977", "sL_AssetLoss": "112.505", "sL_BldgLoss": "112.4678", "sL_StrLoss": "112.0118", "sL_NStrLoss": "0.456", "sL_ContLoss": "0.0372", "geom_point": "0101000020E61000001CD502DE365F5EC0E3B3C8B8DA7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.485413700999956, 50.977397730000128 ], [ -121.485467447999923, 50.976867501000108 ], [ -121.483981087999908, 50.976807692000058 ], [ -121.484163656999925, 50.975007031000125 ], [ -121.484344511999922, 50.973223134000079 ], [ -121.490033740999934, 50.973451952000104 ], [ -121.489980054999975, 50.973982185000125 ], [ -121.489983805999898, 50.973982336000034 ], [ -121.491466327999944, 50.974041915000065 ], [ -121.491145873999969, 50.977207612000036 ], [ -121.491103467999935, 50.977626492000056 ], [ -121.485413700999956, 50.977397730000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999971729401971", "sL_AssetLoss": "245.83845", "sL_BldgLoss": "245.8315", "sL_StrLoss": "245.8", "sL_NStrLoss": "0.0315", "sL_ContLoss": "0.00695", "geom_point": "0101000020E6100000AFDA4EBECD695EC0A1146BC039884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.653749998999942, 51.063513282000052 ], [ -121.653997702999959, 51.060979645000032 ], [ -121.659699003999918, 51.061199851000062 ], [ -121.659478856999982, 51.063454575000044 ], [ -121.66033848, 51.063464431000078 ], [ -121.660608031999942, 51.063467521000078 ], [ -121.660584678999911, 51.064276616000079 ], [ -121.659399915999984, 51.064263032000063 ], [ -121.659348982999944, 51.064784617000036 ], [ -121.654028860999958, 51.064579144000021 ], [ -121.653712712999948, 51.064566925000101 ], [ -121.653702593999938, 51.064670403000058 ], [ -121.653464969999973, 51.067100551000131 ], [ -121.652338799999924, 51.067057021000039 ], [ -121.652303640999946, 51.067416479000023 ], [ -121.648616760999928, 51.067273889000056 ], [ -121.646601580999956, 51.067195900000087 ], [ -121.646952646999964, 51.063611184000074 ], [ -121.648078723999916, 51.063654768000049 ], [ -121.648113914999939, 51.063295310000107 ], [ -121.653749998999942, 51.063513282000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999828987592414", "sL_AssetLoss": "212.2653", "sL_BldgLoss": "212.229", "sL_StrLoss": "212", "sL_NStrLoss": "0.229", "sL_ContLoss": "0.0363", "geom_point": "0101000020E6100000A865D61895635EC00EBE30992A8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.553411452999939, 51.105471124000061 ], [ -121.553447161999912, 51.105114499000116 ], [ -121.552455648, 51.105075326000055 ], [ -121.552358739999974, 51.105071496000036 ], [ -121.552451328999922, 51.104147040000086 ], [ -121.552717700999949, 51.101487224000117 ], [ -121.55457506599997, 51.101560601000131 ], [ -121.554642153999964, 51.100890369000076 ], [ -121.560348074999965, 51.101115595000095 ], [ -121.560295114999988, 51.101645347 ], [ -121.560668799999917, 51.101660088000081 ], [ -121.560603782999976, 51.102310498000122 ], [ -121.560597099999939, 51.102377350000062 ], [ -121.560448398999938, 51.102504311000075 ], [ -121.559751995999989, 51.102923016000069 ], [ -121.558019261999974, 51.10373880000008 ], [ -121.557406430999933, 51.104027331000054 ], [ -121.554789102999976, 51.105259494000094 ], [ -121.554710930999974, 51.105285248000072 ], [ -121.554067839999959, 51.105497052000082 ], [ -121.553411452999939, 51.105471124000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99999927545505", "sL_AssetLoss": "167.001371", "sL_BldgLoss": "167.00125", "sL_StrLoss": "167", "sL_NStrLoss": "0.00125", "sL_ContLoss": "0.000121", "geom_point": "0101000020E6100000C136660213685EC0CA73D8D8008A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.623418129999948, 51.080041053000066 ], [ -121.623458421999942, 51.079631983000077 ], [ -121.622747834999984, 51.079604336000052 ], [ -121.623100917999949, 51.076019743000082 ], [ -121.628803992000016, 51.076241509000084 ], [ -121.628763753999962, 51.076650582000084 ], [ -121.629474297999934, 51.076678191000141 ], [ -121.629271867999975, 51.078736347000039 ], [ -121.62912172099999, 51.080262802000156 ], [ -121.626097595999951, 51.080145264000123 ], [ -121.623418129999948, 51.080041053000066 ] ], [ [ -121.624936391999952, 51.077440598000074 ], [ -121.624653597999952, 51.077320990000025 ], [ -121.624303495999953, 51.077612901000144 ], [ -121.623272901999911, 51.077672788000079 ], [ -121.623183400999935, 51.077842205000081 ], [ -121.623264220999943, 51.077970403000052 ], [ -121.624491615999943, 51.077993193000069 ], [ -121.624936391999952, 51.077440598000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999975554650662", "sL_AssetLoss": "90.81482", "sL_BldgLoss": "90.8126", "sL_StrLoss": "90.8", "sL_NStrLoss": "0.0126", "sL_ContLoss": "0.00222", "geom_point": "0101000020E6100000E6381A34726A5EC069739CDB04994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.660536627999932, 51.193558673000084 ], [ -121.666254994999974, 51.193778515000069 ], [ -121.665904457999929, 51.197362788000085 ], [ -121.660185631999965, 51.19714293000002 ], [ -121.660536627999932, 51.193558673000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999999993262405", "sL_AssetLoss": "74.804144294", "sL_BldgLoss": "74.80414379", "sL_StrLoss": "74.8000901", "sL_NStrLoss": "0.00405369", "sL_ContLoss": "0.000000504", "geom_point": "0101000020E61000006BC5AB6A51A05EC00096F0DF17A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.508973741999952, 51.323961770000039 ], [ -122.508976622999967, 51.323692020000095 ], [ -122.50725453299999, 51.323684789000076 ], [ -122.50725742399996, 51.32341503900011 ], [ -122.50682690499994, 51.32341322700011 ], [ -122.506829795999977, 51.32314347700008 ], [ -122.505538245999929, 51.32313803100007 ], [ -122.505541146999988, 51.32286828200003 ], [ -122.505110630999951, 51.322866463000146 ], [ -122.505111223999975, 51.322811620000039 ], [ -122.500231677999949, 51.322660859000059 ], [ -122.500515596999904, 51.319074715000063 ], [ -122.500606121999937, 51.319077514000128 ], [ -122.500640818999926, 51.318639218000072 ], [ -122.502142157999941, 51.318685626000089 ], [ -122.502146679999896, 51.318267943000109 ], [ -122.50300762099999, 51.318271599000099 ], [ -122.503010536999952, 51.318001849000019 ], [ -122.505162879999958, 51.318010962000066 ], [ -122.505159978999956, 51.318280713000057 ], [ -122.506020921999905, 51.318284347000052 ], [ -122.50601532599994, 51.31880525600009 ], [ -122.506379117999941, 51.318816486000074 ], [ -122.506335789000019, 51.319364723000042 ], [ -122.506439813999918, 51.319365162000047 ], [ -122.506436917999949, 51.319634912000012 ], [ -122.506867402999958, 51.319636725000102 ], [ -122.506864509999915, 51.319906476000021 ], [ -122.50772548299993, 51.319910098000079 ], [ -122.507719708999943, 51.320449598000039 ], [ -122.508150201999982, 51.3204514070001 ], [ -122.508147315999935, 51.320721156000062 ], [ -122.509438799999913, 51.320726573000051 ], [ -122.509435920999977, 51.320996322999989 ], [ -122.509866418999934, 51.320998125000081 ], [ -122.509857794999959, 51.321807376000052 ], [ -122.510288299999957, 51.32180917700007 ], [ -122.51026531799999, 51.323967178000018 ], [ -122.508973741999952, 51.323961770000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999991756508237", "sL_AssetLoss": "85.400704", "sL_BldgLoss": "85.4", "sL_StrLoss": "85.4", "sL_NStrLoss": "0", "sL_ContLoss": "0.000704", "geom_point": "0101000020E6100000B9219DEC6C6C5EC09F5933AE0F844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.694972378000017, 51.02973056700003 ], [ -121.696644073999977, 51.029794600000059 ], [ -121.696297274999949, 51.033379604000118 ], [ -121.69068776499995, 51.033164635000091 ], [ -121.690599354999961, 51.033161245000045 ], [ -121.690641479999925, 51.032726392000036 ], [ -121.691373716999948, 51.031998395000102 ], [ -121.692380093999958, 51.031155196000029 ], [ -121.692763279999923, 51.030700896000049 ], [ -121.693786190999944, 51.029893398000134 ], [ -121.694355889999969, 51.029706946000069 ], [ -121.694972378000017, 51.02973056700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999979175672264", "sL_AssetLoss": "198.32573", "sL_BldgLoss": "198.3216", "sL_StrLoss": "198.3", "sL_NStrLoss": "0.0216", "sL_ContLoss": "0.00413", "geom_point": "0101000020E6100000D787F546ED785EC069E6660BCA8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.887893383999938, 51.121171839000098 ], [ -121.89360353099994, 51.121380185000106 ], [ -121.89327190399996, 51.124965424000059 ], [ -121.892305032999943, 51.124930167000073 ], [ -121.891772405999959, 51.124910740000068 ], [ -121.891735359999984, 51.12531105900004 ], [ -121.891125437999932, 51.125288810000072 ], [ -121.891101246999952, 51.125550174000111 ], [ -121.885390574999974, 51.125341702000107 ], [ -121.885722839999971, 51.121756488000173 ], [ -121.88633271199997, 51.121778766000062 ], [ -121.886356927999927, 51.121517402000094 ], [ -121.887856306999979, 51.121572158000035 ], [ -121.887875066999925, 51.121369611000148 ], [ -121.887893383999938, 51.121171839000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999863530585953", "sL_AssetLoss": "98.1905", "sL_BldgLoss": "98.1771", "sL_StrLoss": "98.1", "sL_NStrLoss": "0.0771", "sL_ContLoss": "0.0134", "geom_point": "0101000020E6100000EEA02B74927A5EC03A4668BA0D924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.912497544999908, 51.139147762000079 ], [ -121.918210116999958, 51.139354858000026 ], [ -121.917904570999951, 51.142676711000028 ], [ -121.917880341999947, 51.142940100000068 ], [ -121.912167308999983, 51.142732987000073 ], [ -121.912407961999989, 51.140120391000018 ], [ -121.912497544999908, 51.139147762000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999999098791328", "sL_AssetLoss": "73.9007536", "sL_BldgLoss": "73.900687", "sL_StrLoss": "73.9", "sL_NStrLoss": "0.000687", "sL_ContLoss": "0.0000666", "geom_point": "0101000020E6100000CFA55580B19F5EC0B194D9DEF6A84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.497868475999965, 51.315821817000021 ], [ -122.499159818999928, 51.315827346000042 ], [ -122.49914513199991, 51.317176096000033 ], [ -122.498714671999977, 51.317174254000079 ], [ -122.498691150999946, 51.319332254000081 ], [ -122.498260671, 51.31933041100006 ], [ -122.498257727999928, 51.319600161000061 ], [ -122.4973967599999, 51.319596469000039 ], [ -122.497393812999931, 51.319866219000104 ], [ -122.496532839999958, 51.31986252100009 ], [ -122.496529886999937, 51.32013227100007 ], [ -122.4960994, 51.320130420000062 ], [ -122.496093489999922, 51.320669919000061 ], [ -122.49566299599995, 51.320668066000103 ], [ -122.495657077999937, 51.321207566000083 ], [ -122.495226579999908, 51.321205710000115 ], [ -122.49522065799999, 51.321745210000088 ], [ -122.494790155999965, 51.32174335399999 ], [ -122.494784228999961, 51.322282853000026 ], [ -122.49435372, 51.322280995000064 ], [ -122.494347787999985, 51.322820494000084 ], [ -122.493917275999948, 51.322818635000083 ], [ -122.493911337999947, 51.323358134000024 ], [ -122.493480819999931, 51.323356273000108 ], [ -122.493477847999969, 51.323626023000095 ], [ -122.49261680599993, 51.323622295000099 ], [ -122.492613829999982, 51.323892045000051 ], [ -122.492183307999952, 51.323890180000063 ], [ -122.492180327999975, 51.324159929000061 ], [ -122.490888752, 51.324154322000012 ], [ -122.490897710999946, 51.32334507500012 ], [ -122.49132822899999, 51.323346944000093 ], [ -122.491337179999945, 51.322537696000069 ], [ -122.491767690999936, 51.322539564000081 ], [ -122.491776633999905, 51.321730317000053 ], [ -122.492207137999984, 51.321732184000055 ], [ -122.492213093999936, 51.321192685000014 ], [ -122.492643591999951, 51.321194551000112 ], [ -122.492652519999965, 51.320385303000052 ], [ -122.493083010999953, 51.320387166000089 ], [ -122.493088956999884, 51.319847666000044 ], [ -122.493519442999954, 51.319849529000045 ], [ -122.49352241299998, 51.31957977900008 ], [ -122.493952897, 51.319581640000088 ], [ -122.493958831999947, 51.319042141000104 ], [ -122.494389310999949, 51.319044000000119 ], [ -122.494392273999921, 51.318774250000011 ], [ -122.494822750999973, 51.318776108000108 ], [ -122.494825713999958, 51.318506358000072 ], [ -122.495256187999928, 51.31850821400009 ], [ -122.495259147999931, 51.318238465000043 ], [ -122.495689617, 51.3182403180001 ], [ -122.49569257499999, 51.317970569000067 ], [ -122.496123042999955, 51.317972421000064 ], [ -122.496128953, 51.317432921000048 ], [ -122.496559415999926, 51.31743477300008 ], [ -122.496562368999946, 51.31716502300003 ], [ -122.496992828999979, 51.317166872000087 ], [ -122.497001679999983, 51.316357623000094 ], [ -122.497862587, 51.316361316000062 ], [ -122.497868475999965, 51.315821817000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999976463266021", "sL_AssetLoss": "161.02489", "sL_BldgLoss": "161.0211", "sL_StrLoss": "161", "sL_NStrLoss": "0.0211", "sL_ContLoss": "0.00379", "geom_point": "0101000020E6100000A88327BA4F725EC074D8D880E3844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.78370956399999, 51.040734631000049 ], [ -121.783855070999934, 51.039199543000038 ], [ -121.781825199999943, 51.039123383000074 ], [ -121.78216516, 51.035538141000096 ], [ -121.782793762999958, 51.035561729000079 ], [ -121.787863828999974, 51.035751862000033 ], [ -121.787792865999961, 51.036501287000128 ], [ -121.79032069299997, 51.036595997000099 ], [ -121.790069960999972, 51.03924536500012 ], [ -121.790018719999978, 51.039247605000057 ], [ -121.790057121999922, 51.039381028000072 ], [ -121.789999281999911, 51.039992134000073 ], [ -121.789981381999922, 51.040181260000089 ], [ -121.789483275999928, 51.04016260200013 ], [ -121.78940890299999, 51.040948273 ], [ -121.78370956399999, 51.040734631000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999794399510637", "sL_AssetLoss": "100.0484", "sL_BldgLoss": "100.02783", "sL_StrLoss": "99.80493", "sL_NStrLoss": "0.2229", "sL_ContLoss": "0.02057", "geom_point": "0101000020E61000007F4E628CDF5B5EC0C5824E4AB9794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.434758672999962, 50.952213319000116 ], [ -121.433748975999933, 50.951505322000102 ], [ -121.433579284999922, 50.951379697000114 ], [ -121.432611590999954, 50.950586636000011 ], [ -121.431895088999951, 50.949999383000076 ], [ -121.431713408999983, 50.949850499000036 ], [ -121.429463912999964, 50.94791408800009 ], [ -121.428662187999947, 50.947241600000027 ], [ -121.428505326999925, 50.947073284000062 ], [ -121.428077185999911, 50.946613897000105 ], [ -121.427978818999946, 50.946480693000062 ], [ -121.431732213, 50.946633672000154 ], [ -121.431674131999927, 50.947200329000019 ], [ -121.432367029000019, 50.947228556000056 ], [ -121.432313449999953, 50.947751349000043 ], [ -121.432954044999974, 50.947777441000099 ], [ -121.432852008999959, 50.94877315300004 ], [ -121.436607484999982, 50.948926045000114 ], [ -121.436520302999924, 50.949777479000062 ], [ -121.436363102999977, 50.951312608000137 ], [ -121.436911937999952, 50.951334941000034 ], [ -121.436832303999978, 50.952112654000089 ], [ -121.441746720999902, 50.952312513000017 ], [ -121.441380045999921, 50.95589701600003 ], [ -121.441141925999958, 50.955887337000043 ], [ -121.440556434999948, 50.955555795000066 ], [ -121.439730943999976, 50.955088338000074 ], [ -121.438656030999979, 50.954479621000054 ], [ -121.436592203999922, 50.953310792000131 ], [ -121.435654436999968, 50.952779676000077 ], [ -121.435608398999989, 50.952753603000055 ], [ -121.434758672999962, 50.952213319000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999992516619929", "sL_AssetLoss": "93.406989", "sL_BldgLoss": "93.40629", "sL_StrLoss": "93.4", "sL_NStrLoss": "0.00629", "sL_ContLoss": "0.000699", "geom_point": "0101000020E61000001BA2C862F45F5EC04B242C851B8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.496619025999976, 51.116121225000079 ], [ -121.502326604999951, 51.116349385000014 ], [ -121.501963459999956, 51.119933438000032 ], [ -121.496255423999955, 51.119705260000018 ], [ -121.496619025999976, 51.116121225000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999982634127791", "sL_AssetLoss": "79.120702", "sL_BldgLoss": "79.119328", "sL_StrLoss": "79.100328", "sL_NStrLoss": "0.019", "sL_ContLoss": "0.001374", "geom_point": "0101000020E6100000F25BD7DC4F665EC0A2AA954BDB8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.59600583299999, 51.110285861000115 ], [ -121.596071882999951, 51.109619918000064 ], [ -121.595180450000015, 51.109585040000063 ], [ -121.59553599599991, 51.10600065000007 ], [ -121.601242776999939, 51.106223805000063 ], [ -121.601176809999941, 51.106889754000072 ], [ -121.602068193999969, 51.106924584000105 ], [ -121.601713166999929, 51.110508991000117 ], [ -121.59600583299999, 51.110285861000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99998558462339", "sL_AssetLoss": "77.00111", "sL_BldgLoss": "77", "sL_StrLoss": "77", "sL_NStrLoss": "0", "sL_ContLoss": "0.00111", "geom_point": "0101000020E6100000F75DCFDF5D5F5EC015E1CBE9D7934940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.487430693999954, 51.153120382000147 ], [ -121.49314298, 51.153348999000073 ], [ -121.49277879199991, 51.156932879000109 ], [ -121.487066046999971, 51.156704245000064 ], [ -121.487430693999954, 51.153120382000147 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999956144916218", "sL_AssetLoss": "94.62985", "sL_BldgLoss": "94.6257", "sL_StrLoss": "94.6", "sL_NStrLoss": "0.0257", "sL_ContLoss": "0.00415", "geom_point": "0101000020E6100000EBAAFE10F47B5EC0C04C67699F944940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.934164416000016, 51.159030820000076 ], [ -121.939879646999955, 51.159236815000028 ], [ -121.939709052999916, 51.161100590000039 ], [ -121.93955147399997, 51.16282204200013 ], [ -121.939414035999903, 51.162817092000054 ], [ -121.939379087999896, 51.1631988460001 ], [ -121.933663349999946, 51.162992826000036 ], [ -121.933951741, 51.159846822000119 ], [ -121.933992, 51.159407616000031 ], [ -121.934129425999927, 51.159412573000047 ], [ -121.934164416000016, 51.159030820000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999952512163692", "sL_AssetLoss": "96.23517", "sL_BldgLoss": "96.2306", "sL_StrLoss": "96.2", "sL_NStrLoss": "0.0306", "sL_ContLoss": "0.00457", "geom_point": "0101000020E61000006701870E49635EC0525489F4D3844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.549983700999988, 51.035865538000039 ], [ -121.554362069999982, 51.036038837000092 ], [ -121.554003768999948, 51.039623370000115 ], [ -121.548723484999968, 51.03941435400008 ], [ -121.548305758999945, 51.039397808000061 ], [ -121.548664516999963, 51.035813291000075 ], [ -121.549983700999988, 51.035865538000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007ECC20A11A865EC0880C50BF309B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.092672019999952, 51.210533411000043 ], [ -122.098394608999939, 51.210731367000079 ], [ -122.098078867999902, 51.214316851000028 ], [ -122.092355818999962, 51.2141188800001 ], [ -122.092672019999952, 51.210533411000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "67.4", "sL_BldgLoss": "67.4", "sL_StrLoss": "67.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A13C95FB3915EC06C63E4134FB54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.273928493999975, 51.414162453000095 ], [ -122.279678270999952, 51.414351186000026 ], [ -122.279375799999983, 51.417936410000088 ], [ -122.279290220999968, 51.417933603000037 ], [ -122.279218044999951, 51.418789012000104 ], [ -122.273467690999922, 51.418600255000065 ], [ -122.273770647999982, 51.415015050000086 ], [ -122.273856217999963, 51.41501786100013 ], [ -122.273928493999975, 51.414162453000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "67.3", "sL_BldgLoss": "67.3", "sL_StrLoss": "67.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099345F8889915EC0C4CDA96480AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.271298675999944, 51.369218604000118 ], [ -122.277042594999941, 51.369407479000074 ], [ -122.276740216999926, 51.372992859000057 ], [ -122.270995832, 51.372803969000053 ], [ -122.271298675999944, 51.369218604000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999976909470222", "sL_AssetLoss": "87.91483", "sL_BldgLoss": "87.9128", "sL_StrLoss": "87.9", "sL_NStrLoss": "0.0128", "sL_ContLoss": "0.00203", "geom_point": "0101000020E6100000FEAAD0FECF805EC03894EBB740A04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.009992838999935, 51.250081413000061 ], [ -122.015720161999965, 51.25028354800002 ], [ -122.015397450999941, 51.253868648000037 ], [ -122.009669664999976, 51.253666499000126 ], [ -122.009992838999935, 51.250081413000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999971207067133", "sL_AssetLoss": "81.61725", "sL_BldgLoss": "81.6149", "sL_StrLoss": "81.6", "sL_NStrLoss": "0.0149", "sL_ContLoss": "0.00235", "geom_point": "0101000020E61000008846DA3AB66D5EC0013A27510A9B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.71156048499995, 51.209351517000123 ], [ -121.717281138999951, 51.209568773000044 ], [ -121.716934601999967, 51.213153144000046 ], [ -121.711213486999895, 51.212935872000038 ], [ -121.71156048499995, 51.209351517000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3296333", "BldgCostT": "2273333", "sL_LossRatio": "0.999966785006177", "sL_AssetLoss": "351.1366", "sL_BldgLoss": "351.124937", "sL_StrLoss": "351.002037", "sL_NStrLoss": "0.1229", "sL_ContLoss": "0.011663", "geom_point": "0101000020E61000003AB6D8CCE5665EC0280031CFEB8A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.599070285999986, 51.087833927000069 ], [ -121.599045387999951, 51.085700901000095 ], [ -121.599102635999955, 51.085538025000169 ], [ -121.600196011999984, 51.085171491000011 ], [ -121.604085712999947, 51.085394199000099 ], [ -121.603762817999922, 51.083960217000083 ], [ -121.603779780999929, 51.083802460000058 ], [ -121.60095460399998, 51.083861238000054 ], [ -121.599091194999943, 51.083899957000114 ], [ -121.596117616999933, 51.086639895000083 ], [ -121.59542781099999, 51.086389600000047 ], [ -121.594716322999929, 51.086969996000022 ], [ -121.595502605999954, 51.087275491000078 ], [ -121.593499169999916, 51.088641767000063 ], [ -121.59273979699999, 51.089161955000073 ], [ -121.591765781999953, 51.089409234000065 ], [ -121.591596407999944, 51.089406595000057 ], [ -121.591537083999967, 51.089405679000038 ], [ -121.591207965999956, 51.089302816000085 ], [ -121.591371497999901, 51.089094987000138 ], [ -121.591424269999962, 51.089027928000107 ], [ -121.591526573999943, 51.088761149000057 ], [ -121.591602566999924, 51.088139799000132 ], [ -121.592611299999987, 51.086153547000073 ], [ -121.592847327999976, 51.08616279400011 ], [ -121.592822079, 51.086417326000081 ], [ -121.593226931999951, 51.086433184000029 ], [ -121.593225105999977, 51.086451602000039 ], [ -121.593271244999983, 51.08645340900005 ], [ -121.593303486999972, 51.086128356000117 ], [ -121.593525757999927, 51.086137061000088 ], [ -121.593602622999967, 51.085362079000028 ], [ -121.594581098, 51.084641845000071 ], [ -121.597580024999971, 51.084759234000067 ], [ -121.597706676999977, 51.083481024000108 ], [ -121.598313542999989, 51.083382040000046 ], [ -121.598226838999921, 51.082352974000045 ], [ -121.59847798599999, 51.082362800000062 ], [ -121.59851351199994, 51.082004171000094 ], [ -121.604217229999961, 51.082227181000121 ], [ -121.604171912999973, 51.082685243000064 ], [ -121.605602811999987, 51.082741144000074 ], [ -121.60556215299998, 51.083152236000046 ], [ -121.608922566999951, 51.08328344500012 ], [ -121.60898612599999, 51.082640321000056 ], [ -121.61089177099997, 51.082714682000116 ], [ -121.610942466999958, 51.082201467000083 ], [ -121.616646273999919, 51.082423847 ], [ -121.616578666999928, 51.083109133000121 ], [ -121.617809286999929, 51.08315707400007 ], [ -121.617938674999948, 51.0831621130001 ], [ -121.617927932999933, 51.083271039000159 ], [ -121.621821044999962, 51.083422609000102 ], [ -121.621467798999959, 51.087007170000085 ], [ -121.617343089999977, 51.086846580000092 ], [ -121.61725986099999, 51.087690268000067 ], [ -121.611555375999941, 51.087467921000091 ], [ -121.611666468999971, 51.086343245000066 ], [ -121.610045750999987, 51.086280020000103 ], [ -121.609982203, 51.086923143000064 ], [ -121.604397928999916, 51.086705117000051 ], [ -121.604394151999898, 51.086743276000092 ], [ -121.604075155999979, 51.086730813000081 ], [ -121.603948809999963, 51.08800768400009 ], [ -121.601834036999918, 51.087925039000041 ], [ -121.601724975999943, 51.089026635000074 ], [ -121.601118336999932, 51.089002920000084 ], [ -121.601082467999973, 51.089365150000035 ], [ -121.601001001999961, 51.089361964000048 ], [ -121.60089842299999, 51.090397851000056 ], [ -121.600517625999956, 51.09038296300006 ], [ -121.600501214999966, 51.090548661000085 ], [ -121.599762997999932, 51.090519794000052 ], [ -121.599494486999973, 51.089478816000103 ], [ -121.599070285999986, 51.087833927000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999936095221397", "sL_AssetLoss": "305.1415", "sL_BldgLoss": "305.122", "sL_StrLoss": "305", "sL_NStrLoss": "0.122", "sL_ContLoss": "0.0195", "geom_point": "0101000020E6100000D70BECCEA67F5EC04B2298F68F9E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.994057656999928, 51.242154101000033 ], [ -121.994347161999912, 51.238954196000108 ], [ -121.989004193999918, 51.238764572000072 ], [ -121.98932893099996, 51.235179490000057 ], [ -121.995054232999905, 51.235382674000071 ], [ -121.994764800999945, 51.238582593000046 ], [ -122.000107771999964, 51.238771945000053 ], [ -121.999783881999946, 51.242357044000094 ], [ -121.994057656999928, 51.242154101000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999952487533502", "sL_AssetLoss": "171.95487", "sL_BldgLoss": "171.9467", "sL_StrLoss": "171.9", "sL_NStrLoss": "0.0467", "sL_ContLoss": "0.00817", "geom_point": "0101000020E610000070937273C1625EC023DDAE1BDF8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.545900585999973, 51.106201193000082 ], [ -121.547140722999956, 51.10625026000006 ], [ -121.54695830699994, 51.108069291000021 ], [ -121.546781273999969, 51.109834496000076 ], [ -121.544777250999985, 51.109755199000055 ], [ -121.544680635999924, 51.110718044000109 ], [ -121.543437533999921, 51.110668837000055 ], [ -121.53897356399996, 51.110492026000088 ], [ -121.539037419999886, 51.109856460000145 ], [ -121.539333647999953, 51.106907818000103 ], [ -121.541337532999989, 51.10698721100011 ], [ -121.541434210999952, 51.106024366000035 ], [ -121.545900585999973, 51.106201193000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999974048404823", "sL_AssetLoss": "86.31454", "sL_BldgLoss": "86.3123", "sL_StrLoss": "86.3", "sL_NStrLoss": "0.0123", "sL_ContLoss": "0.00224", "geom_point": "0101000020E610000066F6DCB6ED7C5EC0F0C3DE17D9A04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949309050999958, 51.254730074000037 ], [ -121.95503669499999, 51.254935280000026 ], [ -121.954937446999921, 51.256021219000075 ], [ -121.954709039999912, 51.258520189000123 ], [ -121.954062209999947, 51.258497029000097 ], [ -121.948980932000012, 51.258314967000061 ], [ -121.949309050999958, 51.254730074000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "72.7", "sL_BldgLoss": "72.7", "sL_StrLoss": "72.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD402002D4915EC02E9D410954B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.27461647299999, 51.387398140000151 ], [ -122.274633608999963, 51.387195162000097 ], [ -122.273941762999939, 51.387172423000045 ], [ -122.274244465999971, 51.383587102000043 ], [ -122.27425880499996, 51.383587573000085 ], [ -122.274311800999982, 51.382959801000077 ], [ -122.280057518999953, 51.383148522000084 ], [ -122.28004132699999, 51.383340624000027 ], [ -122.280985198999986, 51.383371598000103 ], [ -122.280966251999956, 51.383596451000095 ], [ -122.281872281999981, 51.38362617500006 ], [ -122.28184988799994, 51.383891984000087 ], [ -122.283443042999977, 51.383944233000058 ], [ -122.283141084999897, 51.387529578000063 ], [ -122.282360831999966, 51.387503991000038 ], [ -122.282352255999939, 51.387605797000042 ], [ -122.280366662999953, 51.387540660000099 ], [ -122.28036276899999, 51.387586844000083 ], [ -122.27461647299999, 51.387398140000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99984292889801", "sL_AssetLoss": "117.1444", "sL_BldgLoss": "117.126", "sL_StrLoss": "117", "sL_NStrLoss": "0.126", "sL_ContLoss": "0.0184", "geom_point": "0101000020E61000006A9D3C5593615EC03C468157AE7E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.522271008999951, 50.988001682000082 ], [ -121.521959797999926, 50.987943302000097 ], [ -121.521919337999961, 50.987955435000032 ], [ -121.521936933999925, 50.987780456000095 ], [ -121.527628213999918, 50.988007367000115 ], [ -121.527268148999966, 50.991592005000015 ], [ -121.524789178999939, 50.99149320500009 ], [ -121.521576414999913, 50.991365077000097 ], [ -121.521799614999949, 50.989145887000113 ], [ -121.521881267999959, 50.988333981000068 ], [ -121.522148107999897, 50.98830649100006 ], [ -121.522310609999948, 50.988092783000042 ], [ -121.522271008999951, 50.988001682000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999962181338258", "sL_AssetLoss": "85.40757", "sL_BldgLoss": "85.40434", "sL_StrLoss": "85.4", "sL_NStrLoss": "0.00434", "sL_ContLoss": "0.00323", "geom_point": "0101000020E6100000E5CF1A30467D5EC03320D676EE9B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.954711158999928, 51.216319826000074 ], [ -121.960433866999978, 51.216524767000053 ], [ -121.960106931000013, 51.220109836000091 ], [ -121.959821960999989, 51.220099638000065 ], [ -121.954383760999974, 51.219904880000065 ], [ -121.954608365999931, 51.217445477000048 ], [ -121.954711158999928, 51.216319826000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999934985080845", "sL_AssetLoss": "90.44078", "sL_BldgLoss": "90.4349", "sL_StrLoss": "90.4", "sL_NStrLoss": "0.0349", "sL_ContLoss": "0.00588", "geom_point": "0101000020E610000064C4AAE65E5B5EC0433E43939F784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.424767241999959, 50.94062577800004 ], [ -121.42982619199999, 50.940832113000134 ], [ -121.429458653999973, 50.944416624000148 ], [ -121.426700987999979, 50.944304179000078 ], [ -121.426572419999914, 50.944050922000024 ], [ -121.426516052999943, 50.943939842000063 ], [ -121.425689983999959, 50.942312674000071 ], [ -121.425494910999959, 50.941928324000095 ], [ -121.424982207999946, 50.940918305000096 ], [ -121.424767241999959, 50.94062577800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10338500", "BldgCostT": "7130000", "sL_LossRatio": "1", "sL_AssetLoss": "1115.1", "sL_BldgLoss": "1115.1", "sL_StrLoss": "1115.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE412165F8635EC06D5A08F6088C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.559929252999908, 51.092138591000101 ], [ -121.564520616999985, 51.092319667000019 ], [ -121.564405383999897, 51.093473663000047 ], [ -121.564162680999971, 51.095904012000162 ], [ -121.559531839999963, 51.095721378000064 ], [ -121.55962180799996, 51.094910279000061 ], [ -121.559929252999908, 51.092138591000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10689000", "BldgCostT": "6900000", "sL_LossRatio": "1", "sL_AssetLoss": "967.3", "sL_BldgLoss": "967.3", "sL_StrLoss": "967.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5BC985E09665EC0C3F2A5BF308D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.591320536999888, 51.104348586000093 ], [ -121.591584022999939, 51.101694348000088 ], [ -121.597290232999939, 51.101917704000115 ], [ -121.59705281199993, 51.10431249099999 ], [ -121.592352694999988, 51.104348329000096 ], [ -121.591320536999888, 51.104348586000093 ] ], [ [ -121.59377779499999, 51.103185996000079 ], [ -121.593235914999966, 51.103116200000095 ], [ -121.592206614999924, 51.103193200000128 ], [ -121.592211484999922, 51.103490805000057 ], [ -121.593123413999962, 51.10351930600013 ], [ -121.593743707999963, 51.103824097000036 ], [ -121.593975389999983, 51.103745792000097 ], [ -121.594025110999937, 51.103468 ], [ -121.594015419999948, 51.103305702000114 ], [ -121.59377779499999, 51.103185996000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210833", "BldgCostT": "4283333", "sL_LossRatio": "0.999990638803215", "sL_AssetLoss": "721.06165", "sL_BldgLoss": "721.0549", "sL_StrLoss": "721", "sL_NStrLoss": "0.0549", "sL_ContLoss": "0.00675", "geom_point": "0101000020E61000009C315042BE635EC05E7EE9E55E8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.558019261999974, 51.10373880000008 ], [ -121.559751995999989, 51.102923016000069 ], [ -121.560448398999938, 51.102504311000075 ], [ -121.560597099999939, 51.102377350000062 ], [ -121.560452450999961, 51.103824302000078 ], [ -121.56131070299989, 51.103834867000103 ], [ -121.561285584999922, 51.104643922000086 ], [ -121.560371635, 51.104632671000068 ], [ -121.560314141999982, 51.105207745000122 ], [ -121.560050197999928, 51.10523411800007 ], [ -121.559771712999989, 51.105223132000013 ], [ -121.559767793999967, 51.105262334000038 ], [ -121.556469072999946, 51.105591872000026 ], [ -121.554067839999959, 51.105497052000082 ], [ -121.554710930999974, 51.105285248000072 ], [ -121.554789102999976, 51.105259494000094 ], [ -121.557406430999933, 51.104027331000054 ], [ -121.558019261999974, 51.10373880000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161800290", "BldgCostT": "110115373", "sL_LossRatio": "0.999963964030859", "sL_AssetLoss": "24724.324647", "sL_BldgLoss": "24723.433682", "sL_StrLoss": "24716.840782", "sL_NStrLoss": "6.5929", "sL_ContLoss": "0.890965", "geom_point": "0101000020E6100000C16F649A80655EC0120DCEB7F08B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.584055033999931, 51.102763613000072 ], [ -121.584063273999931, 51.102493925000076 ], [ -121.583634922999963, 51.102488736000041 ], [ -121.583643165999945, 51.102219049000112 ], [ -121.583214821, 51.102213858000034 ], [ -121.583227254999912, 51.101807141000073 ], [ -121.583101591999963, 51.101802210000116 ], [ -121.583087754999951, 51.101941351000065 ], [ -121.577381612999929, 51.101717276000088 ], [ -121.577657339, 51.098948328000105 ], [ -121.576029355999935, 51.098884345000066 ], [ -121.576110729999982, 51.098067388000032 ], [ -121.574188146999987, 51.097991796000024 ], [ -121.574212812999988, 51.097744265000074 ], [ -121.573910854999895, 51.097732389000051 ], [ -121.573936321999923, 51.097476823000051 ], [ -121.57362766199995, 51.097464683000041 ], [ -121.573676771999928, 51.096971906000164 ], [ -121.573092307999957, 51.096964774000064 ], [ -121.57307570399999, 51.097504147000045 ], [ -121.572647402999948, 51.097498919000017 ], [ -121.572639096999964, 51.097768605000056 ], [ -121.571354185999965, 51.097752910000068 ], [ -121.57135667299994, 51.097672255000077 ], [ -121.571364771999981, 51.097409501000058 ], [ -121.57137912499995, 51.096943850000109 ], [ -121.57180742, 51.096949083000034 ], [ -121.571831557999957, 51.096165709000033 ], [ -121.571848967999941, 51.095600651000076 ], [ -121.573133818999949, 51.095616340000028 ], [ -121.573142119999943, 51.095346654000068 ], [ -121.573570400999969, 51.095351880000031 ], [ -121.573578700999974, 51.095082193000103 ], [ -121.573864737999912, 51.095085683000022 ], [ -121.573984846999934, 51.093880314000081 ], [ -121.575102815999927, 51.093924280000124 ], [ -121.575124108999958, 51.09371054000006 ], [ -121.576083344, 51.093748255000065 ], [ -121.576121786999963, 51.093362263000124 ], [ -121.576438953999983, 51.09337473100009 ], [ -121.576453379999961, 51.093229871000119 ], [ -121.576515950999976, 51.093232330000021 ], [ -121.576576980999945, 51.09261946700007 ], [ -121.576624740999961, 51.09213984900007 ], [ -121.576761615999899, 51.090765273000109 ], [ -121.578804867999906, 51.090845575000046 ], [ -121.578870559999984, 51.090185521000095 ], [ -121.581865256999933, 51.090303149000071 ], [ -121.581881029999963, 51.089787443000105 ], [ -121.582886092999956, 51.089799631000062 ], [ -121.583273930999937, 51.08980433100006 ], [ -121.583598903, 51.08964639800012 ], [ -121.583602196999934, 51.089538521000065 ], [ -121.583815553999941, 51.08954110800007 ], [ -121.584033744999914, 51.089435066000107 ], [ -121.584038662999944, 51.089274021000058 ], [ -121.58413999899993, 51.089275249000131 ], [ -121.58416971299999, 51.088976317000039 ], [ -121.584399236999985, 51.086667145000021 ], [ -121.584974307999971, 51.086689713000069 ], [ -121.584977426999984, 51.086587507000061 ], [ -121.58579156799999, 51.086597359000088 ], [ -121.585803985999974, 51.086472378000082 ], [ -121.58625899599997, 51.086490229000042 ], [ -121.586285981999964, 51.086218590000058 ], [ -121.586655883999939, 51.086233100000101 ], [ -121.586686001999979, 51.085929909000043 ], [ -121.586712495999947, 51.085663198000063 ], [ -121.588684572999938, 51.085740538000032 ], [ -121.591362781, 51.08584551500013 ], [ -121.592416624999913, 51.08588680500003 ], [ -121.592391017999915, 51.08614491800008 ], [ -121.592611299999987, 51.086153547000073 ], [ -121.591602566999924, 51.088139799000132 ], [ -121.591526573999943, 51.088761149000057 ], [ -121.591424269999962, 51.089027928000107 ], [ -121.591371497999901, 51.089094987000138 ], [ -121.591207965999956, 51.089302816000085 ], [ -121.591537083999967, 51.089405679000038 ], [ -121.591596407999944, 51.089406595000057 ], [ -121.591765781999953, 51.089409234000065 ], [ -121.59273979699999, 51.089161955000073 ], [ -121.593499169999916, 51.088641767000063 ], [ -121.595502605999954, 51.087275491000078 ], [ -121.594716322999929, 51.086969996000022 ], [ -121.59542781099999, 51.086389600000047 ], [ -121.596117616999933, 51.086639895000083 ], [ -121.599091194999943, 51.083899957000114 ], [ -121.60095460399998, 51.083861238000054 ], [ -121.603779780999929, 51.083802460000058 ], [ -121.603762817999922, 51.083960217000083 ], [ -121.604085712999947, 51.085394199000099 ], [ -121.600196011999984, 51.085171491000011 ], [ -121.599102635999955, 51.085538025000169 ], [ -121.599045387999951, 51.085700901000095 ], [ -121.599070285999986, 51.087833927000069 ], [ -121.599494486999973, 51.089478816000103 ], [ -121.599762997999932, 51.090519794000052 ], [ -121.599263792999949, 51.090500271000025 ], [ -121.599233675999969, 51.090804290000079 ], [ -121.598928993999934, 51.090792374000067 ], [ -121.598868595999988, 51.09140199800003 ], [ -121.595059058999979, 51.091252932000074 ], [ -121.594924001999956, 51.092614888000085 ], [ -121.594418462999968, 51.092595097000078 ], [ -121.59436460799995, 51.093138101000115 ], [ -121.593432976999935, 51.093101622000049 ], [ -121.593387491999934, 51.093560123000088 ], [ -121.592803046999961, 51.093537235000078 ], [ -121.592779978999943, 51.093769737000045 ], [ -121.592190855999903, 51.093746663000054 ], [ -121.592137280999921, 51.094286551000032 ], [ -121.590403974999944, 51.094218644000065 ], [ -121.590307058999912, 51.095194893000048 ], [ -121.590255193999923, 51.095192861000093 ], [ -121.590185694999917, 51.095892895000084 ], [ -121.587617490999918, 51.095792228000072 ], [ -121.587267249999925, 51.095787995000087 ], [ -121.58725081299994, 51.096327372000097 ], [ -121.587679104999935, 51.096332548000078 ], [ -121.587662669999958, 51.096871924000069 ], [ -121.588090967999932, 51.096877098000149 ], [ -121.588082752999952, 51.097146786000096 ], [ -121.58851105399998, 51.097151958000048 ], [ -121.588486414999963, 51.097961024000035 ], [ -121.588058106999938, 51.097955852000041 ], [ -121.588056670999961, 51.098002949000026 ], [ -121.58807441499998, 51.098003645000077 ], [ -121.588034576999945, 51.09840468400008 ], [ -121.587972065999963, 51.099033964000043 ], [ -121.588025241999986, 51.099034605000057 ], [ -121.588008810999952, 51.099573982000067 ], [ -121.588437133999946, 51.099579155000043 ], [ -121.588412491000014, 51.100388220000056 ], [ -121.58783822099997, 51.100381285000068 ], [ -121.587718331999966, 51.101588042000067 ], [ -121.584951263999983, 51.101479531000052 ], [ -121.584944675999949, 51.101695234000061 ], [ -121.585373019999935, 51.101700418000128 ], [ -121.585340089999946, 51.102779171000094 ], [ -121.584957938999949, 51.102774544000077 ], [ -121.584055033999931, 51.102763613000072 ] ], [ [ -121.58420509099993, 51.097851889000047 ], [ -121.584211575999987, 51.097639543000085 ], [ -121.584639881, 51.097644729000095 ], [ -121.584648116999958, 51.09737504200006 ], [ -121.584907259999966, 51.097378178000085 ], [ -121.58636132599996, 51.097395771 ], [ -121.586369551999908, 51.097126082000074 ], [ -121.585941251999927, 51.097120902000043 ], [ -121.58595770699999, 51.096581526000129 ], [ -121.585720089999938, 51.096578651000122 ], [ -121.58568986099999, 51.096882799000085 ], [ -121.585200028999907, 51.096863584000118 ], [ -121.58518304899999, 51.097034411000017 ], [ -121.585027015999941, 51.097028289000093 ], [ -121.584718594999956, 51.09701619000009 ], [ -121.584702437, 51.097178722000081 ], [ -121.582171043999949, 51.097079378000068 ], [ -121.582152333999943, 51.097267482000127 ], [ -121.58191917299996, 51.097258329000113 ], [ -121.581830084999979, 51.098153929000048 ], [ -121.582329594, 51.098173538000083 ], [ -121.582368753999972, 51.097779820000028 ], [ -121.58420509099993, 51.097851889000047 ] ], [ [ -121.586937113999952, 51.088102200000037 ], [ -121.586362019999981, 51.087790302000016 ], [ -121.58620392, 51.087797407000103 ], [ -121.586158204999975, 51.087904307 ], [ -121.586241096999956, 51.088003996000047 ], [ -121.586567792999944, 51.088089405000041 ], [ -121.586835509999958, 51.088146397000088 ], [ -121.586937113999952, 51.088102200000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999990427750419", "sL_AssetLoss": "79.605112", "sL_BldgLoss": "79.60435", "sL_StrLoss": "79.6", "sL_NStrLoss": "0.00435", "sL_ContLoss": "0.000762", "geom_point": "0101000020E610000061D0B65899645EC06CAD923C158D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.572514502999979, 51.101813904000046 ], [ -121.572489581999946, 51.102622963000051 ], [ -121.571204536999971, 51.102607265000067 ], [ -121.571229480999989, 51.101798206000069 ], [ -121.572514502999979, 51.101813904000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999982818308551", "sL_AssetLoss": "165.234023", "sL_BldgLoss": "165.231184", "sL_StrLoss": "165.200334", "sL_NStrLoss": "0.03085", "sL_ContLoss": "0.002839", "geom_point": "0101000020E61000006D87C8E17A645EC0FD3ED296298C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.570127515999943, 51.095849395000137 ], [ -121.570135835999963, 51.095579710000074 ], [ -121.569279270999971, 51.095569229000041 ], [ -121.569295918999927, 51.095029856000025 ], [ -121.568439364999946, 51.09501937000001 ], [ -121.568464348999925, 51.094210311000012 ], [ -121.569003731999956, 51.094216915000104 ], [ -121.570177431, 51.094231276000102 ], [ -121.570160792999928, 51.094770650000079 ], [ -121.571445619999963, 51.094786358000114 ], [ -121.571416531999958, 51.095730166000052 ], [ -121.571412372999959, 51.095865105 ], [ -121.570127515999943, 51.095849395000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999958309195594", "sL_AssetLoss": "91.62692", "sL_BldgLoss": "91.6231", "sL_StrLoss": "91.6", "sL_NStrLoss": "0.0231", "sL_ContLoss": "0.00382", "geom_point": "0101000020E6100000598638D645665EC0FD3FDA419D8A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.597820021999922, 51.082337056000064 ], [ -121.598226838999921, 51.082352974000045 ], [ -121.598313542999989, 51.083382040000046 ], [ -121.597706676999977, 51.083481024000108 ], [ -121.597820021999922, 51.082337056000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "80.8", "sL_BldgLoss": "80.8", "sL_StrLoss": "80.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD2D00CFAE645EC05C934D3DFB8C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.572514502999979, 51.101813904000046 ], [ -121.572539423999956, 51.101004845 ], [ -121.573824424999884, 51.101020528000028 ], [ -121.573799525999931, 51.101829588000101 ], [ -121.572514502999979, 51.101813904000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999493011681965", "sL_AssetLoss": "268.448", "sL_BldgLoss": "268.3119", "sL_StrLoss": "267.0239", "sL_NStrLoss": "1.288", "sL_ContLoss": "0.1361", "geom_point": "0101000020E61000000DADC224E4655EC01BC31868298A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.591601306999976, 51.080053070000055 ], [ -121.591605260999984, 51.079922845000027 ], [ -121.591177118999937, 51.079917686000101 ], [ -121.591218078999987, 51.078569237000053 ], [ -121.592502467999964, 51.078584710000058 ], [ -121.592494283999926, 51.078854400000111 ], [ -121.592922417999887, 51.078859555000115 ], [ -121.592888365999954, 51.079981909000011 ], [ -121.592881505999983, 51.080208005000053 ], [ -121.591597072999932, 51.080192535000052 ], [ -121.591601306999976, 51.080053070000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999960711702754", "sL_AssetLoss": "178.93369", "sL_BldgLoss": "178.92666", "sL_StrLoss": "178.9", "sL_NStrLoss": "0.02666", "sL_ContLoss": "0.00703", "geom_point": "0101000020E610000026AA96F8CC715EC054827299A2A64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.780469000999915, 51.303056701000045 ], [ -121.780256300999966, 51.302937109000027 ], [ -121.7798079, 51.303032494 ], [ -121.77941399299999, 51.303315893000054 ], [ -121.777881278999956, 51.303227601000103 ], [ -121.777427818999968, 51.303060995000152 ], [ -121.777065506, 51.302643705000051 ], [ -121.7764534, 51.302412988000093 ], [ -121.775134997999942, 51.30182339300007 ], [ -121.774955357999914, 51.301708743000077 ], [ -121.775057318, 51.300641911000113 ], [ -121.780790079000013, 51.300855930000054 ], [ -121.780546899999962, 51.303403742000079 ], [ -121.780200886, 51.303422698000112 ], [ -121.780060515999978, 51.303296005000107 ], [ -121.780334291999935, 51.303261811000013 ], [ -121.780469000999915, 51.303056701000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999815268169041", "sL_AssetLoss": "120.1742", "sL_BldgLoss": "120.152", "sL_StrLoss": "120", "sL_NStrLoss": "0.152", "sL_ContLoss": "0.0222", "geom_point": "0101000020E61000009E2FEEEDB3675EC0A43569C74BA24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.619111705999927, 51.267065489000075 ], [ -121.621289588999943, 51.267136689000075 ], [ -121.62151424399994, 51.267205196000084 ], [ -121.621395450999941, 51.268405404000113 ], [ -121.620789523999974, 51.268381923000049 ], [ -121.620660039999933, 51.26968990500005 ], [ -121.620240816999967, 51.269085095000079 ], [ -121.619506284999957, 51.26829320000008 ], [ -121.619381102999938, 51.267680803000125 ], [ -121.618893193999938, 51.267198004000115 ], [ -121.619111705999927, 51.267065489000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999924792584089", "sL_AssetLoss": "400.49242", "sL_BldgLoss": "400.4623", "sL_StrLoss": "400.3", "sL_NStrLoss": "0.1623", "sL_ContLoss": "0.03012", "geom_point": "0101000020E6100000E434E1EA826B5EC0DEBB7AD37CA14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.6761742, 51.263403242000081 ], [ -121.676524426999933, 51.259819186000108 ], [ -121.677967714999951, 51.25987441000013 ], [ -121.677994878999968, 51.259596320000128 ], [ -121.683081810999951, 51.259790809000116 ], [ -121.682807786999959, 51.259806309000041 ], [ -121.682689817999943, 51.259876096000042 ], [ -121.682869520999986, 51.260121098000127 ], [ -121.683158111999958, 51.26009690800003 ], [ -121.683545084999977, 51.260092596000092 ], [ -121.68368720399998, 51.260170473000095 ], [ -121.683372208999955, 51.263399342000127 ], [ -121.6819288, 51.263344188000069 ], [ -121.681901658999962, 51.263622276000014 ], [ -121.6761742, 51.263403242000081 ] ], [ [ -121.682795007, 51.261720500000131 ], [ -121.682238285999944, 51.261669205000068 ], [ -121.682164986999979, 51.261740410000101 ], [ -121.682244590999971, 51.261931312000051 ], [ -121.682399193999956, 51.262085092000071 ], [ -121.683226197, 51.262220386000159 ], [ -121.68334159799997, 51.26216769800002 ], [ -121.683392401999967, 51.261934113000059 ], [ -121.682795007, 51.261720500000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999965790935409", "sL_AssetLoss": "192.34668", "sL_BldgLoss": "192.3401", "sL_StrLoss": "192.3", "sL_NStrLoss": "0.0401", "sL_ContLoss": "0.00658", "geom_point": "0101000020E6100000063AE67EBF725EC0F9EEFBDCF5A74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.793667463999981, 51.313652832000066 ], [ -121.793681608999947, 51.313113431 ], [ -121.793251267999935, 51.313108998000097 ], [ -121.793258341999916, 51.312839297000039 ], [ -121.792397660999939, 51.312830424 ], [ -121.792404741999988, 51.312560725000054 ], [ -121.78982271299995, 51.312534069000087 ], [ -121.789829809, 51.312264370000037 ], [ -121.789668347999978, 51.312262701000044 ], [ -121.788969139999949, 51.312255472000082 ], [ -121.788979112999954, 51.311876633000082 ], [ -121.789004641999981, 51.310906971000058 ], [ -121.789542241999939, 51.310912530000074 ], [ -121.789658058999947, 51.310947057000078 ], [ -121.79231831499996, 51.311740089000061 ], [ -121.792426258, 51.311741205000025 ], [ -121.792425982999944, 51.311751623000056 ], [ -121.794577637999964, 51.311773791000086 ], [ -121.794581690999905, 51.311619183000055 ], [ -121.795174663999958, 51.311510161000093 ], [ -121.796736350999979, 51.311526217000065 ], [ -121.79672282, 51.312043471000024 ], [ -121.796449500999969, 51.312349691000051 ], [ -121.796367296999932, 51.312871293000072 ], [ -121.794979706999982, 51.312857023000099 ], [ -121.794958509999958, 51.313666124000065 ], [ -121.793667463999981, 51.313652832000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999997834769687", "sL_AssetLoss": "277.10678", "sL_BldgLoss": "277.10618", "sL_StrLoss": "277.1", "sL_NStrLoss": "0.00618", "sL_ContLoss": "0.0006", "geom_point": "0101000020E6100000A32CF0D300715EC054BF984E67AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.761729210999931, 51.371743251000055 ], [ -121.762073357999967, 51.368159334000133 ], [ -121.763071409999924, 51.368196670000032 ], [ -121.763086022, 51.368044458000099 ], [ -121.763635044999944, 51.368064993000132 ], [ -121.763143898999928, 51.368493511000096 ], [ -121.763291993999971, 51.368799689000099 ], [ -121.763897481999976, 51.369292401000052 ], [ -121.766384797999962, 51.369228293000027 ], [ -121.767152693999947, 51.3690204010001 ], [ -121.767821111, 51.368731299000039 ], [ -121.768239399999956, 51.368654395000107 ], [ -121.768922889, 51.368878010000067 ], [ -121.76944438299995, 51.369269591000077 ], [ -121.770072288, 51.369356492000094 ], [ -121.770272812999949, 51.369457592000032 ], [ -121.770437401, 51.369721111000054 ], [ -121.770243708999914, 51.369997392000109 ], [ -121.76952570399996, 51.370457398000035 ], [ -121.769271825999979, 51.370814905000039 ], [ -121.768644079999902, 51.371222193000101 ], [ -121.76867590199997, 51.371608185000063 ], [ -121.768946408000019, 51.371773409000085 ], [ -121.770223201999983, 51.372060806000071 ], [ -121.767471126999965, 51.371957981000058 ], [ -121.765951966999921, 51.37190119300007 ], [ -121.761729210999931, 51.371743251000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "251.6", "sL_BldgLoss": "251.6", "sL_StrLoss": "251.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B1F5C0936735EC06B56C73B51B04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.797472381999924, 51.375580591000059 ], [ -121.80321497599999, 51.375793459000086 ], [ -121.80305218699999, 51.37750515000004 ], [ -121.80287410699999, 51.379377472000101 ], [ -121.797131048999972, 51.379164587000048 ], [ -121.797418490999931, 51.376146487000021 ], [ -121.797472381999924, 51.375580591000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30991333", "BldgCostT": "21373333", "sL_LossRatio": "0.999682657192732", "sL_AssetLoss": "5732.91708", "sL_BldgLoss": "5731.09778", "sL_StrLoss": "5720.03178", "sL_NStrLoss": "11.066", "sL_ContLoss": "1.8193", "geom_point": "0101000020E61000000745351DE8585EC0C344285BC9A74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.383453280999944, 51.323273361000112 ], [ -121.383720948999922, 51.320711992000078 ], [ -121.383919679999977, 51.320638599000112 ], [ -121.384663080999971, 51.320765303000066 ], [ -121.385538672999971, 51.320776693 ], [ -121.38607689499996, 51.320533190000013 ], [ -121.38635211199994, 51.320077502000082 ], [ -121.38673070399993, 51.319912299000073 ], [ -121.387056992999959, 51.320006189000026 ], [ -121.386971993999907, 51.320410702000089 ], [ -121.387054795999944, 51.320483399000096 ], [ -121.387451715999958, 51.320651401000049 ], [ -121.387824513999959, 51.320620101000095 ], [ -121.38805048099999, 51.320343800000053 ], [ -121.388270405999947, 51.319358197000071 ], [ -121.388602900999899, 51.318922409000031 ], [ -121.388592403999922, 51.318805601000058 ], [ -121.38682342, 51.318465304000092 ], [ -121.385702193999947, 51.318136290000055 ], [ -121.385318592999965, 51.318176606000073 ], [ -121.385626082999977, 51.315232598000115 ], [ -121.38632019899994, 51.315260914000099 ], [ -121.386408799999955, 51.314412416000017 ], [ -121.386800291999975, 51.314428384000117 ], [ -121.386886028999953, 51.313607225000077 ], [ -121.388838331999978, 51.31368683700007 ], [ -121.388852647999954, 51.313549671000061 ], [ -121.389057368999985, 51.313558017000069 ], [ -121.389072898999984, 51.313409209000035 ], [ -121.387865932999929, 51.313359996 ], [ -121.388239902999914, 51.309777050000051 ], [ -121.392349597999981, 51.30994456400002 ], [ -121.392509599999968, 51.308410048000091 ], [ -121.395240206999972, 51.308521267000053 ], [ -121.395434583999958, 51.306655846000048 ], [ -121.391837355999911, 51.306509315 ], [ -121.39185007499999, 51.306387329000131 ], [ -121.39057063599995, 51.306335184 ], [ -121.390569128, 51.30637825300002 ], [ -121.38996046799997, 51.306369885000045 ], [ -121.389874535999965, 51.307193614000028 ], [ -121.38902373399999, 51.307158926000049 ], [ -121.38899371399999, 51.30744663400008 ], [ -121.384195819999903, 51.307250900000028 ], [ -121.384154815999949, 51.307643449000032 ], [ -121.382388403000022, 51.307571335000056 ], [ -121.382303680999911, 51.308382091000098 ], [ -121.381448001999942, 51.308347148000081 ], [ -121.38143694799993, 51.308452911000046 ], [ -121.380658414999928, 51.308421113000165 ], [ -121.380623330999967, 51.30875673000007 ], [ -121.380144769, 51.308737180000037 ], [ -121.380123120999968, 51.308944240000123 ], [ -121.379632735999976, 51.308924207000103 ], [ -121.379606414, 51.30917595300005 ], [ -121.37901846299998, 51.309151930000041 ], [ -121.378969611999963, 51.309619067000021 ], [ -121.373676076999942, 51.309402641000091 ], [ -121.373650936, 51.310113612000123 ], [ -121.37452273699999, 51.310149272000082 ], [ -121.374147652999952, 51.31373217200013 ], [ -121.373730548999973, 51.313715112000111 ], [ -121.373694952999983, 51.314055083000056 ], [ -121.373341873999948, 51.314040640000066 ], [ -121.373308454999929, 51.314359791000079 ], [ -121.373025506999937, 51.314348217000095 ], [ -121.372995557999971, 51.314634198000121 ], [ -121.367263079999987, 51.314399539000107 ], [ -121.367313666999948, 51.31391708000011 ], [ -121.365822763999972, 51.313856001000062 ], [ -121.365883993999915, 51.313272207000054 ], [ -121.36561039599998, 51.313260996000082 ], [ -121.365621588999915, 51.313154281000031 ], [ -121.364979781999949, 51.313127981000036 ], [ -121.365045714999951, 51.312499460000012 ], [ -121.364957184999952, 51.312498224000045 ], [ -121.364966770999942, 51.312228574000088 ], [ -121.364536515999987, 51.312222565000098 ], [ -121.36456528199993, 51.311413613000056 ], [ -121.365158746999981, 51.311421902000092 ], [ -121.365355602999955, 51.309545108000087 ], [ -121.36592306499989, 51.309568362000057 ], [ -121.366161768999973, 51.307292105000101 ], [ -121.367103214999958, 51.307168003000157 ], [ -121.368005431999947, 51.307072160000054 ], [ -121.369431611999957, 51.306920638000108 ], [ -121.370250858999938, 51.306888517000054 ], [ -121.370692364999968, 51.306906583000021 ], [ -121.370764905999977, 51.306909552 ], [ -121.370825474999904, 51.30691204500004 ], [ -121.37135426199994, 51.306974177000022 ], [ -121.372145505999981, 51.307144464000068 ], [ -121.371884906999981, 51.309632734000083 ], [ -121.37175209899999, 51.309627299000098 ], [ -121.371715520999913, 51.309976538000079 ], [ -121.371711374, 51.309976368000093 ], [ -121.37170533699998, 51.310034004000102 ], [ -121.372361455999965, 51.310060854000049 ], [ -121.372386105999951, 51.309364314000071 ], [ -121.373238646999965, 51.309376163000067 ], [ -121.37344697099995, 51.307386475000058 ], [ -121.373692933999962, 51.307411689000062 ], [ -121.374397571999978, 51.307416231000069 ], [ -121.375130312999929, 51.307331077000093 ], [ -121.375952334999923, 51.30713530200012 ], [ -121.376024826999981, 51.307112161000106 ], [ -121.376644593999956, 51.30691442600012 ], [ -121.380440592999989, 51.305649145000054 ], [ -121.381533057999974, 51.305327378000108 ], [ -121.382146461999966, 51.305146706000073 ], [ -121.383620977999925, 51.304709453000029 ], [ -121.384280206999975, 51.304569927000024 ], [ -121.384963208999963, 51.304505875000132 ], [ -121.385028569999974, 51.304499731000128 ], [ -121.385846519999973, 51.304521417000032 ], [ -121.387138175999922, 51.304677566000102 ], [ -121.3891503, 51.30515545300009 ], [ -121.389899036999964, 51.305247134000119 ], [ -121.390519298999948, 51.305232852000124 ], [ -121.391363315999968, 51.305142206000092 ], [ -121.391419985999988, 51.305128071000105 ], [ -121.39192469399994, 51.305002258000094 ], [ -121.39303784499999, 51.304607725000054 ], [ -121.393826809999922, 51.304423990000018 ], [ -121.394021050999967, 51.304389815000043 ], [ -121.396421241999988, 51.30396740800014 ], [ -121.39685412299994, 51.303859098000082 ], [ -121.397399533999945, 51.303692408000089 ], [ -121.39736038800001, 51.303308501000096 ], [ -121.39733467399999, 51.303071761000105 ], [ -121.397292483999976, 51.302689536000095 ], [ -121.397186193999971, 51.301015715000091 ], [ -121.397234487999967, 51.3004419210001 ], [ -121.397389774999951, 51.299994780000098 ], [ -121.397503704, 51.299666707000043 ], [ -121.397829989999977, 51.299185197000071 ], [ -121.398226869, 51.298768986000056 ], [ -121.398387300999929, 51.298600686000057 ], [ -121.398927299999954, 51.298208897000052 ], [ -121.399547595999934, 51.297860789000026 ], [ -121.399965665999957, 51.297685965000049 ], [ -121.400355278999896, 51.29752299900013 ], [ -121.401178085999945, 51.297247987000027 ], [ -121.402467774999948, 51.296895751000115 ], [ -121.404562257999928, 51.296323650000069 ], [ -121.404992725999975, 51.296206064000039 ], [ -121.404775639999968, 51.298294279000089 ], [ -121.403833632, 51.298255988000037 ], [ -121.403680778999927, 51.299725902000091 ], [ -121.401454084999926, 51.299635361000099 ], [ -121.401303158999909, 51.301085955000062 ], [ -121.398885008999954, 51.300987580000012 ], [ -121.398857294999942, 51.301253797000101 ], [ -121.403855227999955, 51.301457067000108 ], [ -121.403482591999989, 51.305040097000067 ], [ -121.401729712999924, 51.304968831000068 ], [ -121.401642323999937, 51.305808696000064 ], [ -121.401605683999975, 51.306160827000014 ], [ -121.40154181299999, 51.306774638000022 ], [ -121.397670317999953, 51.306617141000068 ], [ -121.397582392999936, 51.306613563000106 ], [ -121.397576838999981, 51.306666900000025 ], [ -121.39767423499994, 51.306670864000083 ], [ -121.401174098999917, 51.306813248000019 ], [ -121.40083520599994, 51.310069542000079 ], [ -121.401263320999988, 51.310086951000066 ], [ -121.401134533999979, 51.311324399000085 ], [ -121.40111737699999, 51.311489247000083 ], [ -121.401257718999915, 51.311494954000089 ], [ -121.400884787999942, 51.315077938000066 ], [ -121.400714727999969, 51.315071023000051 ], [ -121.400696911999916, 51.315242176000019 ], [ -121.401269577999969, 51.315265460000056 ], [ -121.401199715999923, 51.31593665300008 ], [ -121.401236825999959, 51.315938162000094 ], [ -121.401187611999987, 51.316410983000047 ], [ -121.40123875799999, 51.31641306300002 ], [ -121.400865785999912, 51.31999602800007 ], [ -121.398701557999985, 51.319908016000106 ], [ -121.398404708999962, 51.319748498000095 ], [ -121.39797298299996, 51.319725692000077 ], [ -121.397913716999966, 51.319840999000036 ], [ -121.397939469, 51.319877014000028 ], [ -121.39513246599995, 51.319762781000122 ], [ -121.395154953999977, 51.319547028000052 ], [ -121.394522135999978, 51.319521265000105 ], [ -121.394475607999965, 51.319967580000124 ], [ -121.392404366999983, 51.319883233000056 ], [ -121.3923743299999, 51.32017122900006 ], [ -121.389547192999927, 51.320056037000057 ], [ -121.389186993999942, 51.323507199000105 ], [ -121.387025668999925, 51.323419088000058 ], [ -121.383453280999944, 51.323273361000112 ] ], [ [ -121.394739512999976, 51.318260195000107 ], [ -121.394209000999979, 51.318234491000077 ], [ -121.393830989999969, 51.318337112000087 ], [ -121.393932088, 51.318743009000137 ], [ -121.39423969799995, 51.319376688000062 ], [ -121.394408201999937, 51.319496404000134 ], [ -121.394810702999948, 51.319502094000015 ], [ -121.395189291999941, 51.319336905000029 ], [ -121.396432426999965, 51.319091903000071 ], [ -121.396596301999978, 51.318878287000061 ], [ -121.396474411999947, 51.318670295000111 ], [ -121.394739512999976, 51.318260195000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999844744781462", "sL_AssetLoss": "527.5185", "sL_BldgLoss": "527.4366", "sL_StrLoss": "527", "sL_NStrLoss": "0.4366", "sL_ContLoss": "0.0819", "geom_point": "0101000020E6100000D8AAF2774E625EC09FE2FE44E1994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.534775587999931, 51.205296190000062 ], [ -121.533192116999928, 51.204822748000034 ], [ -121.533189415999971, 51.204816038000089 ], [ -121.532705469999939, 51.203609543000027 ], [ -121.534789702999916, 51.201761531000038 ], [ -121.535273081999918, 51.200341902000019 ], [ -121.535214238999956, 51.199997294000127 ], [ -121.53513871, 51.199554841000129 ], [ -121.534997800000014, 51.198729797000055 ], [ -121.534833814999942, 51.19826359400011 ], [ -121.534475716999935, 51.197686291000089 ], [ -121.534260505999939, 51.197400804000146 ], [ -121.533613162999956, 51.196773596000114 ], [ -121.537524084999916, 51.196928383000092 ], [ -121.537216260999941, 51.199984695000104 ], [ -121.538128273999945, 51.200020772000087 ], [ -121.537774287999966, 51.203535612000046 ], [ -121.538157714999926, 51.203550777 ], [ -121.537846378999944, 51.206641923000099 ], [ -121.537796751999977, 51.207134610000068 ], [ -121.534808151000021, 51.20701637500008 ], [ -121.535325597999986, 51.206486799000075 ], [ -121.535686277999957, 51.20589929300008 ], [ -121.535741145999978, 51.205759421000025 ], [ -121.535864094, 51.205445792000027 ], [ -121.534775587999931, 51.205296190000062 ] ], [ [ -121.535600197999941, 51.204747792000049 ], [ -121.533829704999974, 51.2037452100001 ], [ -121.533868305999988, 51.203888992000046 ], [ -121.534259389999988, 51.204163909000066 ], [ -121.535423211999969, 51.204907303 ], [ -121.535708782999961, 51.20498279600011 ], [ -121.535600197999941, 51.204747792000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999975876546044", "sL_AssetLoss": "172.03175", "sL_BldgLoss": "172.0276", "sL_StrLoss": "172", "sL_NStrLoss": "0.0276", "sL_ContLoss": "0.00415", "geom_point": "0101000020E61000004A5C6CFFAF615EC0C5D9DF9F73934940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.528807666999967, 51.155769188000164 ], [ -121.528833399999925, 51.154960152000065 ], [ -121.527975751999946, 51.154949360000067 ], [ -121.527992916999921, 51.15441000200012 ], [ -121.527564096999953, 51.154404605000131 ], [ -121.527589850999973, 51.153595568000107 ], [ -121.526732228999933, 51.153584768000087 ], [ -121.526749406999897, 51.153045411000079 ], [ -121.526320601999942, 51.153040008000076 ], [ -121.526337783999921, 51.152500650000064 ], [ -121.525908981999976, 51.15249524700009 ], [ -121.525934763999928, 51.151686211000055 ], [ -121.525077176999957, 51.151675399000069 ], [ -121.52509437399999, 51.151136042000118 ], [ -121.524665585, 51.151130633000051 ], [ -121.524691385999944, 51.150321598000083 ], [ -121.52383382499994, 51.150310777000087 ], [ -121.523851034999907, 51.149771420000057 ], [ -121.523422259999933, 51.149766006000021 ], [ -121.52344808299992, 51.148956971000068 ], [ -121.522590546999979, 51.148946141000053 ], [ -121.522616382999971, 51.148137106000014 ], [ -121.523902662999916, 51.14815334900009 ], [ -121.523876849999937, 51.148962385000047 ], [ -121.524734385999949, 51.148973206000065 ], [ -121.524717186999951, 51.149512563000094 ], [ -121.525145960000017, 51.149517970000041 ], [ -121.525120167999916, 51.150327006000012 ], [ -121.525977728999976, 51.150337818 ], [ -121.525960542999925, 51.150877176000073 ], [ -121.52638933, 51.150882579000033 ], [ -121.526363557999971, 51.151691615000068 ], [ -121.527221144999942, 51.15170241800012 ], [ -121.527203971999938, 51.152241775000086 ], [ -121.527632771999976, 51.152247175000078 ], [ -121.527615603999934, 51.152786532000029 ], [ -121.528044407999957, 51.152791930000014 ], [ -121.528018661999965, 51.153600967000088 ], [ -121.528876285999957, 51.153611758000075 ], [ -121.528859132999941, 51.154151116000065 ], [ -121.529287949000022, 51.154156508000014 ], [ -121.529262224999954, 51.154965545000088 ], [ -121.53011987399999, 51.154976328000025 ], [ -121.530094162999958, 51.155785364000096 ], [ -121.528807666999967, 51.155769188000164 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999926048222531", "sL_AssetLoss": "569.2899", "sL_BldgLoss": "569.2478", "sL_StrLoss": "569", "sL_NStrLoss": "0.2478", "sL_ContLoss": "0.0421", "geom_point": "0101000020E610000062493D34C1665EC0091DCFC2F9A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.602488749999964, 51.277273737 ], [ -121.602556475999961, 51.276592581000038 ], [ -121.601925377999962, 51.276568024000021 ], [ -121.601988770999981, 51.275930513000063 ], [ -121.601816818999978, 51.27592382200006 ], [ -121.602173161999985, 51.272340045000114 ], [ -121.602343493999939, 51.272346673000143 ], [ -121.602381474999987, 51.271964649000026 ], [ -121.60281976899995, 51.271981704000055 ], [ -121.602868481999948, 51.271491660000038 ], [ -121.603148967000024, 51.27150257400011 ], [ -121.603445592999947, 51.271514115000024 ], [ -121.60348157699994, 51.271152074000085 ], [ -121.603621566999934, 51.271157521000085 ], [ -121.603700115999914, 51.270367177000018 ], [ -121.606561466999935, 51.270478461000074 ], [ -121.606736384999977, 51.268717247000062 ], [ -121.611097646999909, 51.268886726000083 ], [ -121.611227005999964, 51.269013885000071 ], [ -121.611358877999947, 51.269411195000131 ], [ -121.610472973999961, 51.270218695000089 ], [ -121.609579909999951, 51.270873896000104 ], [ -121.608699188999978, 51.271034806000067 ], [ -121.608203088999971, 51.270893811000043 ], [ -121.607757606999883, 51.270896694000079 ], [ -121.607782087999951, 51.271059006000016 ], [ -121.607991390999956, 51.271241302000149 ], [ -121.607930488999898, 51.271385205000051 ], [ -121.607587075, 51.271318195000056 ], [ -121.606760688999955, 51.270714405000064 ], [ -121.60614179599996, 51.27078839100011 ], [ -121.606081776999986, 51.27087669600013 ], [ -121.606166099999925, 51.270959285000089 ], [ -121.606876888999977, 51.271578894000079 ], [ -121.607120318999975, 51.272067395000107 ], [ -121.607214490999951, 51.272760999000056 ], [ -121.606956891999957, 51.2732167140001 ], [ -121.60615751099999, 51.273585589000042 ], [ -121.605765409999918, 51.274182283000137 ], [ -121.605719590999939, 51.274811793000012 ], [ -121.605814813999956, 51.274965596000087 ], [ -121.606313800999914, 51.275556704000053 ], [ -121.606917301999914, 51.275941197000094 ], [ -121.607626601999968, 51.276174792000056 ], [ -121.60834632699995, 51.276200467000088 ], [ -121.60821763699991, 51.277496499000044 ], [ -121.606910144999972, 51.277445684000021 ], [ -121.602488749999964, 51.277273737 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.9998251608578", "sL_AssetLoss": "345.4604", "sL_BldgLoss": "345.4", "sL_StrLoss": "345", "sL_NStrLoss": "0.4", "sL_ContLoss": "0.0604", "geom_point": "0101000020E6100000514066A92D5F5EC07DE28432A29F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.48842193099992, 51.2494093930001 ], [ -121.48843077399999, 51.249139724000038 ], [ -121.488001081999954, 51.249134174000048 ], [ -121.488009928999958, 51.248864504000117 ], [ -121.487580238999954, 51.248858951000031 ], [ -121.487581516999981, 51.248819988000044 ], [ -121.483954222999927, 51.248674998000091 ], [ -121.48425877699998, 51.245690340000124 ], [ -121.48440265, 51.245582559000056 ], [ -121.485020738999978, 51.245119519000106 ], [ -121.490044000999916, 51.245320246000084 ], [ -121.489751491999954, 51.248190598000079 ], [ -121.489746355999912, 51.248347357000092 ], [ -121.490176040999984, 51.248352901000075 ], [ -121.49014071, 51.249431580000099 ], [ -121.48842193099992, 51.2494093930001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999952468280705", "sL_AssetLoss": "356.81436", "sL_BldgLoss": "356.7974", "sL_StrLoss": "356.7", "sL_NStrLoss": "0.0974", "sL_ContLoss": "0.01696", "geom_point": "0101000020E6100000BA4D341F025A5EC00D5830F938AC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.402374830999932, 51.347390529000045 ], [ -121.402630616999929, 51.344934171000027 ], [ -121.402747912999956, 51.343807660000067 ], [ -121.40348023199999, 51.343837402000112 ], [ -121.403496587999939, 51.34368027700004 ], [ -121.404597675, 51.343724988000098 ], [ -121.404637160999982, 51.343345604000099 ], [ -121.407650232999984, 51.343467898000029 ], [ -121.410373587999942, 51.343578364000066 ], [ -121.410001125999926, 51.347161259000124 ], [ -121.408899948999988, 51.347116601000032 ], [ -121.408860496999964, 51.34749598500013 ], [ -121.408128113999965, 51.347466278000041 ], [ -121.408111771, 51.347623403000043 ], [ -121.40749384499999, 51.347598334000047 ], [ -121.407489315999939, 51.347499203000062 ], [ -121.407231004, 51.347450787000085 ], [ -121.40708012499995, 51.347581548000043 ], [ -121.402374830999932, 51.347390529000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999866088791283", "sL_AssetLoss": "429.389", "sL_BldgLoss": "429.3315", "sL_StrLoss": "429", "sL_NStrLoss": "0.3315", "sL_ContLoss": "0.0575", "geom_point": "0101000020E6100000A4FFC44C8B675EC0E93C748B0AA44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.612551572999962, 51.282858409000021 ], [ -121.612691397999953, 51.281449030000033 ], [ -121.612785283999983, 51.281532708000043 ], [ -121.613166112999963, 51.281726287000012 ], [ -121.614169703999934, 51.281756293000122 ], [ -121.614917594999923, 51.281692211000085 ], [ -121.615701086999962, 51.281368901000121 ], [ -121.61699798399998, 51.281150997000076 ], [ -121.618187101999951, 51.28071520600011 ], [ -121.618394512999913, 51.280474509000065 ], [ -121.618447181999954, 51.280142600000069 ], [ -121.617947812999972, 51.279605693000079 ], [ -121.618334899999979, 51.278657206000048 ], [ -121.618541514999919, 51.278426507000098 ], [ -121.619002805999926, 51.278386594000025 ], [ -121.619574789999902, 51.278447813000078 ], [ -121.620345698999927, 51.278996096000064 ], [ -121.620868913999985, 51.279245404000015 ], [ -121.621096911999956, 51.279273890000084 ], [ -121.622202414999947, 51.279288102000088 ], [ -121.622499144999935, 51.27926211400009 ], [ -121.622323056999903, 51.281041057000095 ], [ -121.621832427999948, 51.281022054000104 ], [ -121.621786261999958, 51.281488369000051 ], [ -121.620319618999972, 51.281431549000025 ], [ -121.620137798999963, 51.283267404000078 ], [ -121.619030672999955, 51.283224500000124 ], [ -121.618997866999962, 51.28355563000008 ], [ -121.618237091999958, 51.283526143000103 ], [ -121.618211446999936, 51.283784950000047 ], [ -121.613303854999913, 51.283594604 ], [ -121.612481697999925, 51.283562695000057 ], [ -121.612551572999962, 51.282858409000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "0.999925275397494", "sL_AssetLoss": "176.113349", "sL_BldgLoss": "176.100189", "sL_StrLoss": "176.001989", "sL_NStrLoss": "0.0982", "sL_ContLoss": "0.01316", "geom_point": "0101000020E61000002425A03668715EC083A9E29D2EA74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.77059223, 51.308014498000034 ], [ -121.77065523499999, 51.307356042000066 ], [ -121.769391132999928, 51.30730876800007 ], [ -121.769526710999941, 51.305892220000047 ], [ -121.766866840999938, 51.305792703000066 ], [ -121.767003541999884, 51.304365223000076 ], [ -121.767089727999959, 51.30346519600009 ], [ -121.76751289299996, 51.303613608000042 ], [ -121.770135317999987, 51.303704695000071 ], [ -121.772048425999941, 51.304102102000037 ], [ -121.77245959399994, 51.304250190000054 ], [ -121.77257158399999, 51.304341399000087 ], [ -121.772578703999898, 51.304620491000065 ], [ -121.772364108999966, 51.305201602000082 ], [ -121.772736993999942, 51.305737102000123 ], [ -121.773046499999936, 51.305946511000116 ], [ -121.773781279999952, 51.306332402000081 ], [ -121.774323777999939, 51.306427794000115 ], [ -121.774699405000021, 51.306395108000082 ], [ -121.775012088999944, 51.305922194000075 ], [ -121.775312502999938, 51.30594358900008 ], [ -121.775506798999942, 51.306197102000056 ], [ -121.775634794999974, 51.306225610000133 ], [ -121.775865578999969, 51.306228399000062 ], [ -121.776977692999978, 51.305952214000065 ], [ -121.777249588999922, 51.305955004000019 ], [ -121.777699235999975, 51.306175431000071 ], [ -121.777537783999946, 51.307865560000089 ], [ -121.777506272999958, 51.308195413000071 ], [ -121.776333293999954, 51.308151620000032 ], [ -121.776325924999966, 51.308228742000082 ], [ -121.77059223, 51.308014498000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999957824946673", "sL_AssetLoss": "433.43158", "sL_BldgLoss": "433.4133", "sL_StrLoss": "433.3", "sL_NStrLoss": "0.1133", "sL_ContLoss": "0.01828", "geom_point": "0101000020E610000061C289641F6E5EC01DF0D0E2D2AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.718820431000026, 51.371216510000046 ], [ -121.724562073999934, 51.371433361000079 ], [ -121.724473584999942, 51.372346765000088 ], [ -121.724214858999972, 51.375017152000098 ], [ -121.723187453999927, 51.374978370000143 ], [ -121.723092666999918, 51.375956377000136 ], [ -121.722427191999927, 51.375931252000044 ], [ -121.722424938999922, 51.375954493000037 ], [ -121.716682718999934, 51.375737534000123 ], [ -121.717030549999961, 51.372153770000061 ], [ -121.717695964999933, 51.372178926000068 ], [ -121.717698220999949, 51.372155686000085 ], [ -121.718725555, 51.372194517000111 ], [ -121.718773754999944, 51.371697656000094 ], [ -121.718820431000026, 51.371216510000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999922829967036", "sL_AssetLoss": "438.25302", "sL_BldgLoss": "438.2192", "sL_StrLoss": "438", "sL_NStrLoss": "0.2192", "sL_ContLoss": "0.03382", "geom_point": "0101000020E6100000BE5C38CE75675EC0D2CE61A51FA24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.614905796999935, 51.267250692000076 ], [ -121.614582005, 51.26711109700004 ], [ -121.613349295, 51.267096892000083 ], [ -121.613227398999982, 51.267301987000103 ], [ -121.613410395999935, 51.267465715000135 ], [ -121.614067796999919, 51.267491405000087 ], [ -121.614465788999965, 51.267595310000111 ], [ -121.614491412999925, 51.267739193000054 ], [ -121.614254289999963, 51.267979900000149 ], [ -121.614273585999939, 51.268267609000119 ], [ -121.615130796999907, 51.268844413000068 ], [ -121.615137982999968, 51.26908789500002 ], [ -121.615036092999958, 51.269140600000092 ], [ -121.614792882999922, 51.269119203000052 ], [ -121.614032397999907, 51.268652090000067 ], [ -121.612633709999926, 51.267061292000108 ], [ -121.612272904999884, 51.266903758000133 ], [ -121.612419439999911, 51.265426275000017 ], [ -121.613092271999946, 51.265452400000093 ], [ -121.613155545999945, 51.264814290000054 ], [ -121.615990642999961, 51.264924331000017 ], [ -121.616022835999956, 51.264599459000038 ], [ -121.621750148999965, 51.264821538000078 ], [ -121.621572794999977, 51.266613592000056 ], [ -121.621434401999963, 51.266571291000105 ], [ -121.620602009999956, 51.266139805000101 ], [ -121.620190319999935, 51.266035798000082 ], [ -121.619090709999981, 51.266354895000049 ], [ -121.618285914999916, 51.266427500000049 ], [ -121.617837699999924, 51.266547112000069 ], [ -121.617513593999917, 51.266813514000084 ], [ -121.617423195999962, 51.267433007000101 ], [ -121.618097184999968, 51.268384398000094 ], [ -121.618453911999936, 51.269386988000107 ], [ -121.618786719999903, 51.269804302000068 ], [ -121.618655097999948, 51.269911106000059 ], [ -121.61765079599995, 51.26989121000004 ], [ -121.616618205999927, 51.269446792000082 ], [ -121.615499988999929, 51.268471207000118 ], [ -121.6153640039999, 51.268217712000109 ], [ -121.614710793999947, 51.268039710000032 ], [ -121.615027708999961, 51.267529789000044 ], [ -121.614905796999935, 51.267250692000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999918749973874", "sL_AssetLoss": "208.12301", "sL_BldgLoss": "208.1061", "sL_StrLoss": "208", "sL_NStrLoss": "0.1061", "sL_ContLoss": "0.01691", "geom_point": "0101000020E6100000B7C94D7919615EC00F5CCC6C639C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.516168335999936, 51.221323195000124 ], [ -121.5192157379999, 51.218991153000026 ], [ -121.518890349999978, 51.222206928000034 ], [ -121.518519064999978, 51.222192187000047 ], [ -121.518461365999954, 51.222762338000067 ], [ -121.518232165999976, 51.222753236000123 ], [ -121.518172986999986, 51.223337943000139 ], [ -121.51376416799998, 51.22316279100005 ], [ -121.513909836000011, 51.223051337000044 ], [ -121.514247601, 51.222792890000051 ], [ -121.515012344999946, 51.222207754000095 ], [ -121.51577399899999, 51.221624944000077 ], [ -121.516168335999936, 51.221323195000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999903986801124", "sL_AssetLoss": "102.0693", "sL_BldgLoss": "102.0595", "sL_StrLoss": "102", "sL_NStrLoss": "0.0595", "sL_ContLoss": "0.0098", "geom_point": "0101000020E61000003C3CD7397E735EC0271E48C59CA84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.803453245999947, 51.318069599000026 ], [ -121.80346026399998, 51.31779989800004 ], [ -121.803029873999932, 51.317795499000091 ], [ -121.803050934999959, 51.316986396000118 ], [ -121.803911697999951, 51.316995190000043 ], [ -121.80391871199997, 51.316725489000092 ], [ -121.804203945999916, 51.316728401000063 ], [ -121.804227314999977, 51.316754794000133 ], [ -121.804427297999936, 51.316801793000096 ], [ -121.804832384999912, 51.316652202000149 ], [ -121.804824392999976, 51.316464962000076 ], [ -121.806077608999928, 51.31647774599999 ], [ -121.80605660399999, 51.31728685000013 ], [ -121.805626219999951, 51.317282462000072 ], [ -121.805612211, 51.317821865000077 ], [ -121.804751431999975, 51.317813083 ], [ -121.804744422999974, 51.318082784000062 ], [ -121.803453245999947, 51.318069599000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999947001890992", "sL_AssetLoss": "468.12991", "sL_BldgLoss": "468.1051", "sL_StrLoss": "468", "sL_NStrLoss": "0.1051", "sL_ContLoss": "0.02481", "geom_point": "0101000020E6100000464BD4C1F0615EC0608A17B089984940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.529147018999979, 51.192792670000117 ], [ -121.527581779999963, 51.191388496000116 ], [ -121.52564282299997, 51.189648850000083 ], [ -121.524175314999937, 51.18833210100005 ], [ -121.523763321999979, 51.187956841000108 ], [ -121.528247034999978, 51.188134716000036 ], [ -121.528083379999927, 51.189756620000047 ], [ -121.529715049999965, 51.189821305000073 ], [ -121.530417869999965, 51.189849161000026 ], [ -121.530390837999946, 51.190117188000023 ], [ -121.532251523999932, 51.190190913000073 ], [ -121.532159837999984, 51.191100348000063 ], [ -121.533773831999952, 51.191164273000034 ], [ -121.533721020999934, 51.191688287000026 ], [ -121.534674736999989, 51.191726049000088 ], [ -121.534313587999989, 51.195309917000017 ], [ -121.532985561999965, 51.19525733100005 ], [ -121.532920163999975, 51.195906049 ], [ -121.532658903999973, 51.195895702 ], [ -121.53177028099999, 51.195152302000089 ], [ -121.531595254999971, 51.194994647000108 ], [ -121.529988886999931, 51.193547898000126 ], [ -121.529591540999888, 51.193191471000063 ], [ -121.529147018999979, 51.192792670000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "153.4", "sL_BldgLoss": "153.4", "sL_StrLoss": "153.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007AB9DB37AF535EC0A29D0DD859AC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.304896899, 51.34644530200007 ], [ -121.304862201999981, 51.34622018800011 ], [ -121.304542297999916, 51.346287212000064 ], [ -121.304338058999917, 51.346373617000083 ], [ -121.304357993999972, 51.346186185000107 ], [ -121.304555298999958, 51.346108383000072 ], [ -121.30587192199999, 51.345589167000142 ], [ -121.306387570999973, 51.345345186000081 ], [ -121.306959600999932, 51.345028470000095 ], [ -121.307249203999959, 51.34486815000011 ], [ -121.307829589000022, 51.344479890000052 ], [ -121.310289945999941, 51.344581865000123 ], [ -121.309909363999964, 51.348164424000068 ], [ -121.307193797999957, 51.348051869000074 ], [ -121.304172876999985, 51.347926580000085 ], [ -121.304308254999953, 51.346653822000086 ], [ -121.30454388699999, 51.346637493000053 ], [ -121.304896899, 51.34644530200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999993665752545", "sL_AssetLoss": "245.017267", "sL_BldgLoss": "245.015715", "sL_StrLoss": "245.000155", "sL_NStrLoss": "0.01556", "sL_ContLoss": "0.001552", "geom_point": "0101000020E6100000A0E469543B5D5EC09BAFED48D0AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.453731336999937, 51.375484064000084 ], [ -121.453780941999952, 51.375002643000066 ], [ -121.453380157999987, 51.374986556000046 ], [ -121.453749336999962, 51.371403620000073 ], [ -121.459489664999978, 51.371633888000112 ], [ -121.459487433999982, 51.371655571000083 ], [ -121.460141043, 51.371681771000105 ], [ -121.459772379999947, 51.375264726000083 ], [ -121.459519506999968, 51.37525459000004 ], [ -121.459472195000018, 51.375714333000062 ], [ -121.453731336999937, 51.375484064000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999931507179994", "sL_AssetLoss": "188.48691", "sL_BldgLoss": "188.474", "sL_StrLoss": "188.4", "sL_NStrLoss": "0.074", "sL_ContLoss": "0.01291", "geom_point": "0101000020E61000005752D5A126655EC0E5F0070B40974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.577956606999962, 51.18267314500013 ], [ -121.578263925999963, 51.1795923990001 ], [ -121.579203509, 51.179890028000038 ], [ -121.581666298999949, 51.181060579000132 ], [ -121.582648348999953, 51.181427368000058 ], [ -121.58301953299997, 51.181474306000055 ], [ -121.583815849999922, 51.181464942000034 ], [ -121.583673157999925, 51.182897171000079 ], [ -121.577956606999962, 51.18267314500013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999911334532848", "sL_AssetLoss": "204.1381", "sL_BldgLoss": "204.12", "sL_StrLoss": "204", "sL_NStrLoss": "0.12", "sL_ContLoss": "0.0181", "geom_point": "0101000020E61000005B17C8FD18635EC0C0F81694719B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.54595696799997, 51.215303570000103 ], [ -121.54621477299996, 51.212739798000086 ], [ -121.551935037999911, 51.212965423000071 ], [ -121.551751792999966, 51.214790095000104 ], [ -121.55117191, 51.214419586000048 ], [ -121.550621597999935, 51.214205996000032 ], [ -121.549845209999901, 51.214331297000058 ], [ -121.549349582999966, 51.214586301000075 ], [ -121.549349396999958, 51.215034893000087 ], [ -121.549787297999927, 51.215661486000073 ], [ -121.549379599999924, 51.215880894000065 ], [ -121.549135208999957, 51.216372200000087 ], [ -121.549147166999916, 51.216453535000078 ], [ -121.546481716999949, 51.216348380000106 ], [ -121.545854385999945, 51.216323622000061 ], [ -121.54595696799997, 51.215303570000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999978208835991", "sL_AssetLoss": "269.83414", "sL_BldgLoss": "269.82826", "sL_StrLoss": "269.8", "sL_NStrLoss": "0.02826", "sL_ContLoss": "0.00588", "geom_point": "0101000020E6100000EA0A32D9EA5B5EC0C3C2FF0C25A44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.439646727999957, 51.278455811000043 ], [ -121.439764384999947, 51.278460559000074 ], [ -121.439394847999949, 51.282043792000088 ], [ -121.437739771999972, 51.281976994000054 ], [ -121.437604046999965, 51.283292432000017 ], [ -121.436821700999957, 51.283260849000058 ], [ -121.436753246999956, 51.283924151000058 ], [ -121.435927545999931, 51.283890811000063 ], [ -121.435852350999966, 51.284619270000086 ], [ -121.435416150999984, 51.284601655000095 ], [ -121.43538145, 51.284937781000146 ], [ -121.431190171999972, 51.284768439000104 ], [ -121.433281979999919, 51.283237634000052 ], [ -121.435270693999882, 51.28178213700005 ], [ -121.435808199999968, 51.28138871600008 ], [ -121.438494912999957, 51.279422090000061 ], [ -121.438647825999951, 51.279310139000067 ], [ -121.439105804999912, 51.278974898000037 ], [ -121.439296559999946, 51.278797823000055 ], [ -121.439630595, 51.278487809000111 ], [ -121.439646727999957, 51.278455811000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59016999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999876520401469", "sL_AssetLoss": "106.0904", "sL_BldgLoss": "106.0773", "sL_StrLoss": "106", "sL_NStrLoss": "0.0773", "sL_ContLoss": "0.0131", "geom_point": "0101000020E6100000EDCE03ED085C5EC06129FD4A08A64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.436895218999965, 51.29837281800009 ], [ -121.436904378999913, 51.298103157000071 ], [ -121.4364742399999, 51.298097414000061 ], [ -121.436501728999957, 51.297288433000112 ], [ -121.436931858999969, 51.297294176000058 ], [ -121.436950177999947, 51.296754854000014 ], [ -121.437380303999959, 51.296760596000077 ], [ -121.437389460999938, 51.296490935000115 ], [ -121.437819583999925, 51.296496675000085 ], [ -121.43783789299999, 51.295957353000119 ], [ -121.439558367999979, 51.295980297000057 ], [ -121.439512647999962, 51.297328602000057 ], [ -121.438652381999958, 51.297317132000067 ], [ -121.438643233999954, 51.297586794000061 ], [ -121.438213098999938, 51.29758105600007 ], [ -121.43818564299994, 51.298390039 ], [ -121.436895218999965, 51.29837281800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999997502253888", "sL_AssetLoss": "229.006462", "sL_BldgLoss": "229.00589", "sL_StrLoss": "229", "sL_NStrLoss": "0.00589", "sL_ContLoss": "0.000572", "geom_point": "0101000020E6100000EB00CAD74C605EC03044B1890A934940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.50267490899995, 51.150203972000064 ], [ -121.502784260999974, 51.14912539300007 ], [ -121.502460806000016, 51.149112482000071 ], [ -121.502250732000022, 51.148041482000082 ], [ -121.501929564999955, 51.145694173000045 ], [ -121.502351458999982, 51.145704716000061 ], [ -121.502622678999941, 51.145793190000113 ], [ -121.50267202, 51.145809277000062 ], [ -121.503635385999971, 51.14654491800011 ], [ -121.505053549999943, 51.147501369000082 ], [ -121.505265842999961, 51.147644523000103 ], [ -121.505958033999946, 51.148251733000102 ], [ -121.506246770999951, 51.148504991000053 ], [ -121.507034102999953, 51.148871046000089 ], [ -121.508359216999906, 51.149306230000043 ], [ -121.508497411999926, 51.149340394000063 ], [ -121.508368580999942, 51.150612722000076 ], [ -121.502710819999919, 51.150387042000055 ], [ -121.50267490899995, 51.150203972000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999858239698593", "sL_AssetLoss": "105.107", "sL_BldgLoss": "105.0921", "sL_StrLoss": "105", "sL_NStrLoss": "0.0921", "sL_ContLoss": "0.0149", "geom_point": "0101000020E610000052C800165A5B5EC0E40B83C7F1A44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.428035918999925, 51.287076441000046 ], [ -121.429024157999976, 51.286353367000068 ], [ -121.428662858999985, 51.289847830000085 ], [ -121.424420006999938, 51.289676170000099 ], [ -121.424691615999961, 51.289489909000061 ], [ -121.426661494999962, 51.28806897200004 ], [ -121.427155259999935, 51.287712767000116 ], [ -121.427938702999924, 51.287147588000082 ], [ -121.428035918999925, 51.287076441000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "156.9", "sL_BldgLoss": "156.9", "sL_StrLoss": "156.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084BFDB9372745EC0682F2E9785A74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.8179027199999, 51.309645465000074 ], [ -121.817933686999964, 51.309318181000016 ], [ -121.817124013999887, 51.309288244000115 ], [ -121.817140866, 51.30911018000009 ], [ -121.816374098999972, 51.309081824000046 ], [ -121.816573912999914, 51.30697068500011 ], [ -121.817895571999912, 51.307363868000024 ], [ -121.820153937000015, 51.308245867000082 ], [ -121.820853226999944, 51.308518966000086 ], [ -121.820898982999935, 51.30853682300009 ], [ -121.820985037999947, 51.308549726000059 ], [ -121.823601110999931, 51.308941476000086 ], [ -121.82371988099996, 51.308978598000081 ], [ -121.823636852999968, 51.30985731300013 ], [ -121.8179027199999, 51.309645465000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "258.3", "sL_BldgLoss": "258.3", "sL_StrLoss": "258.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000062D41821FA4C5EC055E274719FB24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.199670266999973, 51.397805073000043 ], [ -121.199794688999972, 51.396662231000107 ], [ -121.199169928999964, 51.396635762000066 ], [ -121.19918299899993, 51.396515723000036 ], [ -121.198643119999957, 51.396492848000094 ], [ -121.199033141999976, 51.39291084300001 ], [ -121.201079592999946, 51.392997540000096 ], [ -121.204774900999908, 51.393153996000187 ], [ -121.20476184799999, 51.393274036000022 ], [ -121.20530169199999, 51.39329688300014 ], [ -121.205222699, 51.394023345000029 ], [ -121.207032980999941, 51.394099937000057 ], [ -121.206643597999985, 51.397681965000103 ], [ -121.205457943999974, 51.397631803000131 ], [ -121.205412664999983, 51.398048193000122 ], [ -121.202550379999977, 51.397927048000078 ], [ -121.199670266999973, 51.397805073000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30706167", "BldgCostT": "21176667", "sL_LossRatio": "1", "sL_AssetLoss": "3190", "sL_BldgLoss": "3190", "sL_StrLoss": "3190", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2904CE2474F5EC03EE490817AB14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.258788078999928, 51.375124998000054 ], [ -121.258894068999965, 51.374138759000083 ], [ -121.258876249, 51.37413801300012 ], [ -121.259261190999908, 51.370555721000102 ], [ -121.259329950999984, 51.370558599000042 ], [ -121.259392619999957, 51.369975323000055 ], [ -121.26020871599998, 51.370009483000068 ], [ -121.260334748999924, 51.368836243000032 ], [ -121.261513249999936, 51.368885563000099 ], [ -121.261584029999952, 51.368226470000089 ], [ -121.262727210999941, 51.368274301000064 ], [ -121.262783608999911, 51.367748998000103 ], [ -121.263568579999969, 51.367781834000013 ], [ -121.263582879999944, 51.367648617000114 ], [ -121.264516149999977, 51.367687649000132 ], [ -121.264532345999925, 51.367536740000091 ], [ -121.265591904999923, 51.36758104400014 ], [ -121.265617086999967, 51.366914642000033 ], [ -121.266047832000012, 51.36692101900006 ], [ -121.266058019999917, 51.366651384000086 ], [ -121.26648876299997, 51.366657760000088 ], [ -121.266498945999942, 51.366388125000043 ], [ -121.266778087999938, 51.36639225600009 ], [ -121.266831245999924, 51.36589668900006 ], [ -121.267402132999948, 51.365920552000055 ], [ -121.267446141999955, 51.365510204000039 ], [ -121.267667936999914, 51.365519474000067 ], [ -121.267712855999932, 51.365100610000098 ], [ -121.268251746999979, 51.36512313 ], [ -121.268320866999957, 51.364478523000059 ], [ -121.26895237599993, 51.364504911000076 ], [ -121.268986456999983, 51.364187038000104 ], [ -121.269854809999927, 51.364223317000061 ], [ -121.269898237999925, 51.363818158000115 ], [ -121.270641612999967, 51.363849210000062 ], [ -121.270799787999948, 51.362373277000138 ], [ -121.272221124999959, 51.362432636000108 ], [ -121.273500500999887, 51.36248604900009 ], [ -121.27297718899996, 51.362778091000052 ], [ -121.272875008999961, 51.363216790000067 ], [ -121.27315999399994, 51.363652601000133 ], [ -121.273471399, 51.363810692000058 ], [ -121.274302186999975, 51.363821998000098 ], [ -121.276048904999953, 51.364028587000128 ], [ -121.276558679999965, 51.364223698000075 ], [ -121.276935517999945, 51.364490006000061 ], [ -121.277430290999945, 51.365073915000053 ], [ -121.277801585999924, 51.365888604000077 ], [ -121.277783911999933, 51.366795807000116 ], [ -121.277509513999959, 51.366792893000117 ], [ -121.276196092999967, 51.366224707000086 ], [ -121.275542783999981, 51.366016807000101 ], [ -121.275128802999916, 51.365965494000086 ], [ -121.274583000999911, 51.365958401000114 ], [ -121.272820187999912, 51.366183401000072 ], [ -121.272096287999972, 51.366361410000088 ], [ -121.271432087000036, 51.366810005000112 ], [ -121.27077488099998, 51.367106303000092 ], [ -121.270623790999963, 51.367275812000081 ], [ -121.270621994999942, 51.367751400000067 ], [ -121.269930779999981, 51.368145893000047 ], [ -121.269813708999948, 51.368611710000074 ], [ -121.270169399999986, 51.369084492000084 ], [ -121.270197904999947, 51.369427699000063 ], [ -121.270121272999972, 51.369561596000104 ], [ -121.269621807999954, 51.369877809000059 ], [ -121.269638915999963, 51.370183999000041 ], [ -121.269520322999952, 51.370253802000015 ], [ -121.2688063, 51.370179696000072 ], [ -121.268028012999949, 51.369872098000045 ], [ -121.266776586999981, 51.369862092000126 ], [ -121.264210690999946, 51.370867589000028 ], [ -121.263347387999929, 51.371304811000094 ], [ -121.263078407999927, 51.371579692000111 ], [ -121.262793812999973, 51.37223200800004 ], [ -121.26268479799991, 51.373245989000104 ], [ -121.26272741299999, 51.37436120400011 ], [ -121.262922507, 51.374913797 ], [ -121.262939096999958, 51.376001888000118 ], [ -121.261987787999942, 51.376823707000071 ], [ -121.261773590999965, 51.377567098000036 ], [ -121.261530496999967, 51.377877592000047 ], [ -121.260610915999933, 51.378638096000032 ], [ -121.260465298999947, 51.379085311000047 ], [ -121.259106512999921, 51.380045195000037 ], [ -121.258243603999944, 51.380095092000069 ], [ -121.257848280999923, 51.380268799000078 ], [ -121.257444315999948, 51.380667604000053 ], [ -121.257154483999955, 51.381140392000049 ], [ -121.25576418599999, 51.382144501000049 ], [ -121.254470102999932, 51.383312293000081 ], [ -121.253050590999948, 51.383966103000077 ], [ -121.251729396999977, 51.384360596000057 ], [ -121.247299909, 51.386703404000102 ], [ -121.245417403999966, 51.387808600000049 ], [ -121.243704080999933, 51.388646001000019 ], [ -121.242020896999946, 51.389026298000012 ], [ -121.240360295999892, 51.389234199000029 ], [ -121.235841590999939, 51.39051601200002 ], [ -121.234455622999974, 51.390648501000015 ], [ -121.232498875999923, 51.39107709300005 ], [ -121.230770497999941, 51.391896102000082 ], [ -121.229517300999973, 51.392011395000097 ], [ -121.227691212, 51.392730688000086 ], [ -121.226388311999983, 51.39335869300006 ], [ -121.225150308999972, 51.39414920200003 ], [ -121.224432012999983, 51.394866993000072 ], [ -121.222472602, 51.396483399000068 ], [ -121.220752508999951, 51.398228108000069 ], [ -121.218027792, 51.400227699000069 ], [ -121.215635898999892, 51.402601808000043 ], [ -121.213895100999963, 51.40481510000005 ], [ -121.213585097999953, 51.405044400000087 ], [ -121.212958817999947, 51.405259393000016 ], [ -121.21249700599995, 51.405683804000063 ], [ -121.211544885999956, 51.407233392000109 ], [ -121.211398887999977, 51.407303201000104 ], [ -121.210517987999978, 51.407388609000101 ], [ -121.210321701999959, 51.407602205000103 ], [ -121.210307511999972, 51.407952602000094 ], [ -121.210099382999928, 51.408146302000084 ], [ -121.209495692999951, 51.408156304000109 ], [ -121.208379209000014, 51.408768694000109 ], [ -121.207039806999944, 51.408836995000058 ], [ -121.206501398999976, 51.408955209000084 ], [ -121.205354486999966, 51.409638910000069 ], [ -121.205313855, 51.40969434000008 ], [ -121.205678539999951, 51.406341426000083 ], [ -121.206875474999947, 51.406392052000037 ], [ -121.206975164999946, 51.406396268000073 ], [ -121.207044316999969, 51.405760257000075 ], [ -121.207480449999963, 51.40577870000002 ], [ -121.207847284999971, 51.40240417000004 ], [ -121.209384506999953, 51.402469162000138 ], [ -121.209556303999932, 51.400888107000092 ], [ -121.210908166999928, 51.400945246000042 ], [ -121.21107002399998, 51.39945514000005 ], [ -121.211915263999941, 51.399490857000082 ], [ -121.212004930999981, 51.398665160000057 ], [ -121.212803892999915, 51.3986989160001 ], [ -121.212897444999953, 51.397837279000044 ], [ -121.213803260999953, 51.397875543000033 ], [ -121.213882843999954, 51.397142401000075 ], [ -121.214769147999931, 51.397179834000056 ], [ -121.214849143999928, 51.396442723000114 ], [ -121.216937221999913, 51.396530884000086 ], [ -121.217183474999956, 51.394260674000108 ], [ -121.217638365999932, 51.394279875000045 ], [ -121.217683176999941, 51.393866685 ], [ -121.218212896999972, 51.393889042000062 ], [ -121.218269181999986, 51.393369997000093 ], [ -121.218844009999913, 51.393394255000075 ], [ -121.218900784999946, 51.392870612000138 ], [ -121.219146309999985, 51.392880972000043 ], [ -121.219201401999939, 51.392372818000084 ], [ -121.219954144999974, 51.39240457800004 ], [ -121.220023804, 51.391761936000037 ], [ -121.220796663999963, 51.391794540000021 ], [ -121.220863702999978, 51.391175955000037 ], [ -121.221408646999947, 51.391198940000066 ], [ -121.221482014999978, 51.39052186800005 ], [ -121.221898904999975, 51.390539450000105 ], [ -121.221940117999935, 51.390159078000075 ], [ -121.222357000999963, 51.390176659000055 ], [ -121.222398219999945, 51.389796188000048 ], [ -121.223267121999982, 51.389832827000049 ], [ -121.223311001999889, 51.389427709000095 ], [ -121.224203449999962, 51.389465333000075 ], [ -121.224256989999915, 51.388970930000077 ], [ -121.225903529999968, 51.389040328000078 ], [ -121.22596704799993, 51.388453570000124 ], [ -121.226979645999975, 51.388496236000059 ], [ -121.227017519999961, 51.388146294000123 ], [ -121.22825793799997, 51.388198547000044 ], [ -121.228289479999887, 51.387907023000118 ], [ -121.229656855999963, 51.387964609000022 ], [ -121.229724853000022, 51.387335956000072 ], [ -121.231124039999955, 51.387394864000079 ], [ -121.231194224999967, 51.386745790000056 ], [ -121.232340786999913, 51.386794049000095 ], [ -121.232359080999984, 51.386624816000051 ], [ -121.233143382999984, 51.386657821000064 ], [ -121.233162154999903, 51.386484136000057 ], [ -121.234643162999944, 51.386546444000082 ], [ -121.23466880099997, 51.386309171000036 ], [ -121.23938567499998, 51.386507487000081 ], [ -121.239399490999944, 51.38637948300007 ], [ -121.240150977999946, 51.386411060000071 ], [ -121.24017186699993, 51.386217501000054 ], [ -121.240866930999957, 51.38624670200003 ], [ -121.240880341999969, 51.386122417000117 ], [ -121.241533771999926, 51.386149865000064 ], [ -121.241558924999978, 51.385916733000087 ], [ -121.242210246999946, 51.38594408900007 ], [ -121.24224411299997, 51.385630148000082 ], [ -121.242886753, 51.385657136000098 ], [ -121.242930206, 51.385254264000068 ], [ -121.243419903999978, 51.385274826000028 ], [ -121.243453600999928, 51.384962376000018 ], [ -121.244073467999939, 51.384988401000108 ], [ -121.244130401999911, 51.384460391000125 ], [ -121.244458972999979, 51.38447418500008 ], [ -121.244490303999896, 51.38418359900006 ], [ -121.244918096999967, 51.384201557000047 ], [ -121.244940795999966, 51.383991009000084 ], [ -121.24547668299999, 51.384013502000116 ], [ -121.245506486999972, 51.383737022000048 ], [ -121.246026944999969, 51.383758865000033 ], [ -121.246067183999926, 51.383385535000038 ], [ -121.24651894099999, 51.383404492000075 ], [ -121.246549078999976, 51.383124845000083 ], [ -121.247165855999953, 51.383150726000032 ], [ -121.247208371999989, 51.382756160000014 ], [ -121.247707800999933, 51.382777113000024 ], [ -121.247754974999964, 51.382339271000077 ], [ -121.248476947999919, 51.382369558000086 ], [ -121.248512159999947, 51.38204268900008 ], [ -121.249303673999975, 51.382075887000077 ], [ -121.249319331, 51.381930508000075 ], [ -121.250603778999903, 51.381984369000065 ], [ -121.250692717999968, 51.381158338000112 ], [ -121.251683144999959, 51.381199861000084 ], [ -121.251704683999975, 51.380999763000062 ], [ -121.252054138999952, 51.381014411000081 ], [ -121.252105894999886, 51.380533571000079 ], [ -121.252514935999926, 51.380550715000069 ], [ -121.252561101999973, 51.380121781000121 ], [ -121.252951210999981, 51.380138130000013 ], [ -121.252995605999971, 51.379725590000064 ], [ -121.253470239999913, 51.379745481000079 ], [ -121.25351210599996, 51.379356402000042 ], [ -121.254021678999919, 51.379377755000057 ], [ -121.254080113999976, 51.378834615000088 ], [ -121.254441291, 51.378849748000128 ], [ -121.25449782599999, 51.37832422300005 ], [ -121.254836659999953, 51.378338419000059 ], [ -121.254879232999926, 51.377942631000032 ], [ -121.255604103999929, 51.377972997000015 ], [ -121.25565362499999, 51.37751254900008 ], [ -121.256429344999916, 51.37754504 ], [ -121.25648281699992, 51.377047767000185 ], [ -121.257022685999971, 51.377070377000038 ], [ -121.257062412999986, 51.376700880000087 ], [ -121.257442287999964, 51.376716788000067 ], [ -121.257475312999944, 51.376409590000087 ], [ -121.257904776999936, 51.376427572000047 ], [ -121.257946114999967, 51.376043 ], [ -121.258327897, 51.376058984000082 ], [ -121.258379624999947, 51.375577710000101 ], [ -121.25862597299999, 51.375588023000077 ], [ -121.258676239999915, 51.375120316000022 ], [ -121.258788078999928, 51.375124998000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999875233050461", "sL_AssetLoss": "197.1676", "sL_BldgLoss": "197.143", "sL_StrLoss": "197", "sL_NStrLoss": "0.143", "sL_ContLoss": "0.0246", "geom_point": "0101000020E6100000401007A6E6795EC09E6DE2A2E2AC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.901787282999976, 51.351859099000144 ], [ -121.902006390999958, 51.349498131000111 ], [ -121.907746091999954, 51.349705711000105 ], [ -121.907577487999944, 51.351525063000061 ], [ -121.90715979099997, 51.351635089000055 ], [ -121.906382016999899, 51.351753297000094 ], [ -121.905391212999987, 51.35179739100009 ], [ -121.903913889999941, 51.35164931200012 ], [ -121.90325459899999, 51.351679198000063 ], [ -121.902589907999925, 51.351815996000056 ], [ -121.901787282999976, 51.351859099000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14036000", "BldgCostT": "9680000", "sL_LossRatio": "1", "sL_AssetLoss": "1473.9", "sL_BldgLoss": "1473.9", "sL_StrLoss": "1473.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015CC5666E34A5EC0FDF63B3593B54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.154050833999918, 51.426708292000058 ], [ -121.154178969999975, 51.425543243000064 ], [ -121.153339789999961, 51.425507375000059 ], [ -121.153733746999976, 51.421925631000136 ], [ -121.154399484999914, 51.421954087000088 ], [ -121.154458045999917, 51.421421547000108 ], [ -121.155382506999956, 51.421461054000105 ], [ -121.15544133399996, 51.42092597000007 ], [ -121.156151782999984, 51.420956326000031 ], [ -121.156185016999956, 51.420653986000026 ], [ -121.156910820999926, 51.420684995000101 ], [ -121.156961409999951, 51.420224704000105 ], [ -121.160251230999961, 51.420365193000123 ], [ -121.16032279400001, 51.419713582000021 ], [ -121.16164318899996, 51.419769941000048 ], [ -121.161669047999922, 51.419534413000051 ], [ -121.163231777999954, 51.4196010960001 ], [ -121.163272996999936, 51.419225551000089 ], [ -121.164116326999988, 51.419261527000046 ], [ -121.164162081999905, 51.418844571000122 ], [ -121.164805266999949, 51.41887200500004 ], [ -121.164849474999954, 51.418469087000041 ], [ -121.165757446999976, 51.418507808000101 ], [ -121.165803255999904, 51.418090208000066 ], [ -121.166802677999925, 51.418132821000057 ], [ -121.166845031999955, 51.417746632000032 ], [ -121.168197974999913, 51.417804304000079 ], [ -121.168277509999939, 51.417078864000075 ], [ -121.16913876199996, 51.417115569000046 ], [ -121.169190696999976, 51.416641786000071 ], [ -121.169900622999961, 51.416672036000143 ], [ -121.169935982999959, 51.416349402000108 ], [ -121.170912642999951, 51.416391012000091 ], [ -121.170968665999936, 51.415879725000067 ], [ -121.17182943099999, 51.415916390000106 ], [ -121.171883554999951, 51.415422347000067 ], [ -121.172997184999957, 51.415469772000051 ], [ -121.173075942999958, 51.414750673000064 ], [ -121.173798027999922, 51.414781418000075 ], [ -121.173836029999975, 51.414434390000103 ], [ -121.174485802999953, 51.414462053000101 ], [ -121.174529021999916, 51.414067306000049 ], [ -121.175276799999921, 51.414099136000125 ], [ -121.175315707999957, 51.413743724 ], [ -121.17587711799996, 51.413767617000076 ], [ -121.175910498999954, 51.413462637000059 ], [ -121.176585354999958, 51.413491356000101 ], [ -121.17663169099994, 51.413067954000049 ], [ -121.177575959999928, 51.413108130000055 ], [ -121.177631875999964, 51.412597077000079 ], [ -121.178290400000023, 51.412625091000066 ], [ -121.17832386399999, 51.412319192000062 ], [ -121.17935949799994, 51.412363241000044 ], [ -121.179411943999952, 51.411883717000094 ], [ -121.180005235999914, 51.411908947000029 ], [ -121.180040833999939, 51.411583432000093 ], [ -121.180748497999929, 51.411613521000049 ], [ -121.180792623999963, 51.411209949000067 ], [ -121.18154857199994, 51.411242087000105 ], [ -121.181579903999975, 51.410955466000082 ], [ -121.186119452999961, 51.411148351000143 ], [ -121.187323913999961, 51.411199498000087 ], [ -121.187200279999942, 51.412331761000111 ], [ -121.187669680999974, 51.412351691000062 ], [ -121.187555784999972, 51.41339482300009 ], [ -121.18743255699999, 51.414523383000109 ], [ -121.186764409999952, 51.414254702000044 ], [ -121.185673188999885, 51.414237596000099 ], [ -121.18438388899996, 51.414478291000059 ], [ -121.18364967299999, 51.414817294000038 ], [ -121.182785801999927, 51.415208897000113 ], [ -121.181540989999959, 51.416178815000102 ], [ -121.18059808199996, 51.416379596000063 ], [ -121.179588888999959, 51.417118802000047 ], [ -121.177317097999904, 51.418226801000102 ], [ -121.176247697999912, 51.419037213000131 ], [ -121.17570832499996, 51.419235205000106 ], [ -121.17495949399995, 51.419259398000086 ], [ -121.174451593999976, 51.419404691000111 ], [ -121.173888891999923, 51.419800590000129 ], [ -121.17315258499994, 51.42055400800006 ], [ -121.17209889499999, 51.420662199000049 ], [ -121.17107011799996, 51.421600806000043 ], [ -121.169535798999931, 51.42217901500004 ], [ -121.169092301, 51.422126303000042 ], [ -121.167971913999949, 51.422469605000039 ], [ -121.167483702999945, 51.422443890000075 ], [ -121.166787687999971, 51.422557898000093 ], [ -121.166199596999945, 51.422855489 ], [ -121.165647107999945, 51.423376801000124 ], [ -121.164979392999967, 51.423554802000062 ], [ -121.163765407999975, 51.423680099000116 ], [ -121.162704996999977, 51.423250003000071 ], [ -121.162102302, 51.423204510000062 ], [ -121.161712191999982, 51.42325290600013 ], [ -121.161357091999903, 51.423480814000058 ], [ -121.160822198999966, 51.424236996000047 ], [ -121.160541703, 51.424466309000103 ], [ -121.160002802999941, 51.424601591000012 ], [ -121.1594440099999, 51.424916406000058 ], [ -121.158248113999917, 51.425329388000115 ], [ -121.156904306999976, 51.42547040900007 ], [ -121.15600380699999, 51.426058599000022 ], [ -121.155206905999975, 51.426757694000052 ], [ -121.154050833999918, 51.426708292000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999944426316755", "sL_AssetLoss": "190.37788", "sL_BldgLoss": "190.3673", "sL_StrLoss": "190.3", "sL_NStrLoss": "0.0673", "sL_ContLoss": "0.01058", "geom_point": "0101000020E6100000A0FED4F430595EC0E512C3E563A54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.39411854399999, 51.289507031000042 ], [ -121.397528352, 51.289645916 ], [ -121.397155303999966, 51.293228969000033 ], [ -121.39703406699995, 51.293224033000058 ], [ -121.396926955999973, 51.294252673000074 ], [ -121.395406098999985, 51.294190738000033 ], [ -121.395348018999954, 51.294748309000042 ], [ -121.393691665999981, 51.294680833000101 ], [ -121.389617997999963, 51.294514777000117 ], [ -121.389991666999947, 51.290931753000045 ], [ -121.390058552999974, 51.290934481000065 ], [ -121.390125699999956, 51.290290555000077 ], [ -121.391700757999928, 51.290354777000104 ], [ -121.391798979999962, 51.289412493000064 ], [ -121.39411854399999, 51.289507031000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999958324821804", "sL_AssetLoss": "87.82206", "sL_BldgLoss": "87.8184", "sL_StrLoss": "87.8", "sL_NStrLoss": "0.0184", "sL_ContLoss": "0.00366", "geom_point": "0101000020E6100000297099703B495EC0509E05E358874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.145471684999976, 51.056004801000022 ], [ -121.147602482999929, 51.055857838000101 ], [ -121.147348433999966, 51.058184747000034 ], [ -121.146909416, 51.058165794000118 ], [ -121.146894819999929, 51.058299458000121 ], [ -121.146462884999949, 51.058280808000056 ], [ -121.146445209999953, 51.058442668000083 ], [ -121.145956339999927, 51.058421557 ], [ -121.145935499999936, 51.058612379000095 ], [ -121.140237222999957, 51.058366163000116 ], [ -121.140398075999926, 51.05689506500007 ], [ -121.14048497899995, 51.056869292000059 ], [ -121.140958293999958, 51.05681380300004 ], [ -121.142741610999948, 51.056833710000092 ], [ -121.143596293999963, 51.056540313000077 ], [ -121.14415179299999, 51.056531793000033 ], [ -121.144664519999964, 51.056234100000076 ], [ -121.145471684999976, 51.056004801000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "64.5", "sL_BldgLoss": "64.5", "sL_StrLoss": "64.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070C9580AD42B5EC0A6A036050DAA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.682167375999981, 51.32659747400006 ], [ -120.687897533999944, 51.326866792000033 ], [ -120.687466704999977, 51.330447188000065 ], [ -120.68173608699999, 51.330177850000076 ], [ -120.682167375999981, 51.32659747400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.4", "sL_BldgLoss": "58.4", "sL_StrLoss": "58.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009AE74ED1CD3A5EC03136DF4EC3A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.917084035999892, 51.266394549000061 ], [ -120.917433493999951, 51.263354139000057 ], [ -120.914946773999972, 51.263242197000025 ], [ -120.915333378999932, 51.259879739000063 ], [ -120.91643251499994, 51.259867592 ], [ -120.917140797999949, 51.260059895000126 ], [ -120.91775318699996, 51.260421594000078 ], [ -120.918394488999979, 51.261179311000078 ], [ -120.918391909000022, 51.262483885000137 ], [ -120.918555299, 51.263007998000056 ], [ -120.91897039399997, 51.263654615000078 ], [ -120.919029596999977, 51.264258400000053 ], [ -120.919238975999946, 51.264350994000075 ], [ -120.91995389500002, 51.264390894000044 ], [ -120.92126508799997, 51.264269792000078 ], [ -120.921485093999948, 51.264130206000026 ], [ -120.921515612999954, 51.263798389000037 ], [ -120.921370410999941, 51.263507889000053 ], [ -120.921362604999928, 51.263372591000113 ], [ -120.921885493999952, 51.263228703000074 ], [ -120.92320051699997, 51.26323136100013 ], [ -120.922807801000019, 51.266652001000104 ], [ -120.917084035999892, 51.266394549000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "122.1", "sL_BldgLoss": "122.1", "sL_StrLoss": "122.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000766627286A395EC01C5F5A58E0B24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.895700870999974, 51.399708943000107 ], [ -120.895723602999936, 51.39951262600006 ], [ -120.895104363999977, 51.399484726000068 ], [ -120.895159437999936, 51.399009156 ], [ -120.894992293999977, 51.39900162400005 ], [ -120.895013883000033, 51.398815207000027 ], [ -120.892106107999922, 51.398684146000043 ], [ -120.892521008999935, 51.395103236000068 ], [ -120.898261311999974, 51.39536189600009 ], [ -120.898239738999948, 51.395548314000102 ], [ -120.90114732699999, 51.39567921900008 ], [ -120.901092320999979, 51.396154793000093 ], [ -120.901259455999963, 51.396162316000051 ], [ -120.901236748999935, 51.396358634000102 ], [ -120.901855947999934, 51.396386501000066 ], [ -120.901441791999929, 51.399967440000061 ], [ -120.895700870999974, 51.399708943000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.989318950930626", "sL_AssetLoss": "0.009456", "sL_BldgLoss": "0.009355", "sL_StrLoss": "0.000215", "sL_NStrLoss": "0.00914", "sL_ContLoss": "0.000101", "geom_point": "0101000020E6100000A9A74DA40D4E5EC0E6D8CDCE1AAE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.219225936999962, 51.358286043000092 ], [ -121.223189197999915, 51.358453339000036 ], [ -121.22280143799999, 51.362035552000066 ], [ -121.221733586999989, 51.361990490000025 ], [ -121.221713599999987, 51.362175078000071 ], [ -121.215975771999965, 51.361932775000092 ], [ -121.216296310999937, 51.358975842000042 ], [ -121.21636408499991, 51.358350585000082 ], [ -121.217431843000028, 51.35839569700002 ], [ -121.217451845999975, 51.358211109000102 ], [ -121.219225936999962, 51.358286043000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999987424650893", "sL_AssetLoss": "78.407366", "sL_BldgLoss": "78.40638", "sL_StrLoss": "78.4", "sL_NStrLoss": "0.00638", "sL_ContLoss": "0.000986", "geom_point": "0101000020E6100000A625B9709E5A5EC0C665811BCE874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.414048894999922, 51.058957550000045 ], [ -121.419748716999948, 51.059189905000132 ], [ -121.419379389999932, 51.062773912000111 ], [ -121.417821701999927, 51.062710442000117 ], [ -121.417792133999953, 51.062997249000048 ], [ -121.412091834999984, 51.062764796000096 ], [ -121.412461747999913, 51.059180813000111 ], [ -121.41401930399995, 51.059244357000082 ], [ -121.414048894999922, 51.058957550000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.2", "sL_BldgLoss": "38.2", "sL_StrLoss": "38.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A758C4C7C245EC087A5A22D3EB04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.567354095000013, 51.378734581000089 ], [ -120.56773762399996, 51.375621597000134 ], [ -120.57347343399999, 51.375896688000054 ], [ -120.573262492999945, 51.377610697000108 ], [ -120.572453300999925, 51.377467385000038 ], [ -120.570899520999944, 51.377507305000073 ], [ -120.570110103999951, 51.378031397000079 ], [ -120.569683813999944, 51.378210793000065 ], [ -120.568683499999949, 51.378360401000052 ], [ -120.56757378599994, 51.378697908000021 ], [ -120.567354095000013, 51.378734581000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "106.8", "sL_BldgLoss": "106.8", "sL_StrLoss": "106.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB4A525FB7355EC06BD619DF97A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.837339663999927, 51.328102080000065 ], [ -120.837675778999952, 51.325227277000081 ], [ -120.835144987999968, 51.325111726000038 ], [ -120.835563809999954, 51.32153075600008 ], [ -120.841294230999964, 51.321792317000124 ], [ -120.840958375999946, 51.324667141000091 ], [ -120.843489157999898, 51.324782562000046 ], [ -120.843070946999973, 51.328363549000052 ], [ -120.837339663999927, 51.328102080000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.999814620642264", "sL_AssetLoss": "324.57767", "sL_BldgLoss": "324.5175", "sL_StrLoss": "324.0065", "sL_NStrLoss": "0.511", "sL_ContLoss": "0.06017", "geom_point": "0101000020E6100000A3E889000A595EC0BD5873DB99A64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.378713090999952, 51.304637171000088 ], [ -121.378797869999957, 51.303826415000124 ], [ -121.38196455699989, 51.303955788000103 ], [ -121.382049071, 51.303146990000045 ], [ -121.387780168999896, 51.303380903000104 ], [ -121.38776675299999, 51.303509444000056 ], [ -121.389411453999969, 51.30357651800005 ], [ -121.389503576999971, 51.302693465000033 ], [ -121.39016125900001, 51.302720280000109 ], [ -121.39018896099995, 51.302454681 ], [ -121.390798135999916, 51.302479514000076 ], [ -121.390813542000018, 51.302331795000036 ], [ -121.392830550999975, 51.302413997000038 ], [ -121.392918296999966, 51.301572243000074 ], [ -121.39312515899995, 51.301580672000092 ], [ -121.393153259999949, 51.301311077000065 ], [ -121.393096360999934, 51.301308759000101 ], [ -121.393315635999954, 51.299205007000069 ], [ -121.39346980599997, 51.29772575 ], [ -121.395887764999969, 51.297824241000065 ], [ -121.395945525999977, 51.297269707000076 ], [ -121.398172088999942, 51.29736035600007 ], [ -121.398323105999935, 51.295909760000072 ], [ -121.399265059999891, 51.29594809600006 ], [ -121.39941804599999, 51.294478184000063 ], [ -121.405148112999953, 51.294711220000117 ], [ -121.404992725999975, 51.296206064000039 ], [ -121.404562257999928, 51.296323650000069 ], [ -121.402467774999948, 51.296895751000115 ], [ -121.401178085999945, 51.297247987000027 ], [ -121.400355278999896, 51.29752299900013 ], [ -121.399965665999957, 51.297685965000049 ], [ -121.399547595999934, 51.297860789000026 ], [ -121.398927299999954, 51.298208897000052 ], [ -121.398387300999929, 51.298600686000057 ], [ -121.398226869, 51.298768986000056 ], [ -121.397829989999977, 51.299185197000071 ], [ -121.397503704, 51.299666707000043 ], [ -121.397389774999951, 51.299994780000098 ], [ -121.397234487999967, 51.3004419210001 ], [ -121.397186193999971, 51.301015715000091 ], [ -121.397292483999976, 51.302689536000095 ], [ -121.39733467399999, 51.303071761000105 ], [ -121.39736038800001, 51.303308501000096 ], [ -121.397399533999945, 51.303692408000089 ], [ -121.39685412299994, 51.303859098000082 ], [ -121.396421241999988, 51.30396740800014 ], [ -121.394021050999967, 51.304389815000043 ], [ -121.393826809999922, 51.304423990000018 ], [ -121.39303784499999, 51.304607725000054 ], [ -121.39192469399994, 51.305002258000094 ], [ -121.391419985999988, 51.305128071000105 ], [ -121.391363315999968, 51.305142206000092 ], [ -121.390519298999948, 51.305232852000124 ], [ -121.389899036999964, 51.305247134000119 ], [ -121.3891503, 51.30515545300009 ], [ -121.387138175999922, 51.304677566000102 ], [ -121.385846519999973, 51.304521417000032 ], [ -121.385028569999974, 51.304499731000128 ], [ -121.384963208999963, 51.304505875000132 ], [ -121.384280206999975, 51.304569927000024 ], [ -121.383620977999925, 51.304709453000029 ], [ -121.382146461999966, 51.305146706000073 ], [ -121.381533057999974, 51.305327378000108 ], [ -121.380440592999989, 51.305649145000054 ], [ -121.376644593999956, 51.30691442600012 ], [ -121.376024826999981, 51.307112161000106 ], [ -121.375952334999923, 51.30713530200012 ], [ -121.375130312999929, 51.307331077000093 ], [ -121.374397571999978, 51.307416231000069 ], [ -121.373692933999962, 51.307411689000062 ], [ -121.37344697099995, 51.307386475000058 ], [ -121.373612873999932, 51.305801795 ], [ -121.374200776999942, 51.305825846000047 ], [ -121.374249672999937, 51.305358710000043 ], [ -121.374740015999961, 51.305378767000015 ], [ -121.374766363999925, 51.305127021000025 ], [ -121.375244885999976, 51.305146593000082 ], [ -121.375266553999893, 51.304939533000017 ], [ -121.376045022999989, 51.304971368000068 ], [ -121.376066533999932, 51.304765769000056 ], [ -121.37608013699996, 51.304635751000092 ], [ -121.376935740999926, 51.304670736000077 ], [ -121.37694680499996, 51.304564972000087 ], [ -121.378713090999952, 51.304637171000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999970243822591", "sL_AssetLoss": "169.04053", "sL_BldgLoss": "169.0355", "sL_StrLoss": "169", "sL_NStrLoss": "0.0355", "sL_ContLoss": "0.00503", "geom_point": "0101000020E6100000EDB5E21359555EC0E997A9C5B7884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.329425373999925, 51.070836451000091 ], [ -121.329494672999942, 51.070177118000046 ], [ -121.329143808999945, 51.070162545000052 ], [ -121.329218065999967, 51.069456083000013 ], [ -121.330879386, 51.068691707000049 ], [ -121.331812692999961, 51.068535005000093 ], [ -121.33256809599996, 51.06819461000002 ], [ -121.334893807999933, 51.068210307000086 ], [ -121.335009681999949, 51.068149103000117 ], [ -121.335015396999964, 51.068013813000022 ], [ -121.334820515000033, 51.06783999000006 ], [ -121.333651602999936, 51.067822906000032 ], [ -121.333426810999967, 51.067738908000067 ], [ -121.332405079999916, 51.067184893000089 ], [ -121.331598597999943, 51.066562497000078 ], [ -121.3301095299999, 51.06613868200008 ], [ -121.33026154399991, 51.064691980000077 ], [ -121.335961659999953, 51.064928575000117 ], [ -121.33580105899992, 51.066458856000096 ], [ -121.336758237999931, 51.066498557000081 ], [ -121.336683668999981, 51.067209190000035 ], [ -121.33715767299999, 51.06722884600002 ], [ -121.33678162699999, 51.070812549000095 ], [ -121.336302181999926, 51.070792666000074 ], [ -121.336295309, 51.070858160000022 ], [ -121.335715109999953, 51.070834097000088 ], [ -121.335700489999979, 51.070973374000083 ], [ -121.335139183999942, 51.070950091000036 ], [ -121.335126271, 51.071073088000084 ], [ -121.329425373999925, 51.070836451000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999919285722013", "sL_AssetLoss": "200.58409", "sL_BldgLoss": "200.5679", "sL_StrLoss": "200.5", "sL_NStrLoss": "0.0679", "sL_ContLoss": "0.01619", "geom_point": "0101000020E6100000358F0DEE58465EC0E54392514C864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.102056720999954, 51.050585705000067 ], [ -121.10190170499996, 51.050547311000081 ], [ -121.101244910999952, 51.050562886000058 ], [ -121.101120798999943, 51.050426187000063 ], [ -121.101130498999964, 51.050201200000075 ], [ -121.100519807999959, 51.050111390000083 ], [ -121.099890092999956, 51.049839389000084 ], [ -121.098209176999916, 51.049731194000103 ], [ -121.097573390000022, 51.049937697000068 ], [ -121.096732913999972, 51.050948909000027 ], [ -121.09644109499996, 51.051124090000066 ], [ -121.095926397999932, 51.051132605000099 ], [ -121.095474084999978, 51.051071398000033 ], [ -121.094557690999935, 51.050769411000068 ], [ -121.093717987000019, 51.050396300000088 ], [ -121.093101781999977, 51.050377544000078 ], [ -121.09328238099999, 51.048741454000051 ], [ -121.093774183999983, 51.048762927000062 ], [ -121.093781861999901, 51.048693366000087 ], [ -121.095348041999941, 51.04876173300007 ], [ -121.095533883000016, 51.047077303000023 ], [ -121.096272889, 51.047109555000105 ], [ -121.096292857999956, 51.046928521000048 ], [ -121.10198942599996, 51.047176964000059 ], [ -121.10177247599999, 51.049145929000076 ], [ -121.106108526999947, 51.049334841000089 ], [ -121.105914711999986, 51.049406488000088 ], [ -121.105798508999968, 51.050151299000056 ], [ -121.104849699999974, 51.050990213000084 ], [ -121.104745599999944, 51.0514659090001 ], [ -121.104611311, 51.051606898000045 ], [ -121.104280886999959, 51.051638192000055 ], [ -121.103762197, 51.051450191000072 ], [ -121.102185, 51.051270784000074 ], [ -121.101848990999926, 51.051104112000083 ], [ -121.101840095999975, 51.050995905000022 ], [ -121.102045181999983, 51.050837799000114 ], [ -121.102052577999956, 51.050656894000085 ], [ -121.102056720999954, 51.050585705000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.9", "sL_BldgLoss": "44.9", "sL_StrLoss": "44.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007E11B54AC295EC0678A8C50E4A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.649223079999913, 51.270674204000095 ], [ -120.649387603999955, 51.270681597000049 ], [ -120.650408593999927, 51.27089099800002 ], [ -120.651125690999933, 51.271165811000039 ], [ -120.651540097999927, 51.271480595000121 ], [ -120.652977014999948, 51.272265305000047 ], [ -120.654599235999953, 51.273811346000102 ], [ -120.654586293999927, 51.273918370000104 ], [ -120.648863190999947, 51.273647353000079 ], [ -120.648980722999966, 51.272676420000096 ], [ -120.649223079999913, 51.270674204000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999973339438758", "sL_AssetLoss": "85.51958", "sL_BldgLoss": "85.5173", "sL_StrLoss": "85.5", "sL_NStrLoss": "0.0173", "sL_ContLoss": "0.00228", "geom_point": "0101000020E61000004B2922A21C4E5EC078C1F9375CA74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.218435280999984, 51.307598503000065 ], [ -121.218369910999968, 51.307417701000098 ], [ -121.217579275999967, 51.30745039600005 ], [ -121.217453107999958, 51.307394887000093 ], [ -121.217287612999911, 51.307230941000086 ], [ -121.217428107999979, 51.305932906000045 ], [ -121.217605552999956, 51.305940411000044 ], [ -121.217646019999933, 51.305566511000123 ], [ -121.218083046999965, 51.305584995000046 ], [ -121.218117217999975, 51.30526922100006 ], [ -121.223847710999934, 51.305511431000049 ], [ -121.223460466999882, 51.309093842000017 ], [ -121.223023402999956, 51.309075379000042 ], [ -121.222989262999988, 51.309391152000082 ], [ -121.222811803999932, 51.309383655000019 ], [ -121.222771377999919, 51.3097575560001 ], [ -121.217040341999947, 51.309515293000054 ], [ -121.217192100999966, 51.308113331000115 ], [ -121.218048497999959, 51.307916096000056 ], [ -121.218435280999984, 51.307598503000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "71", "sL_BldgLoss": "71", "sL_StrLoss": "71", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0E9FF24975C5EC01820764B97854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.444059737999979, 51.041772124 ], [ -121.449757515999963, 51.042002964000105 ], [ -121.449390746999939, 51.045587138000052 ], [ -121.44369251099999, 51.045356279000011 ], [ -121.444059737999979, 51.041772124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.99972245918817", "sL_AssetLoss": "114.39759", "sL_BldgLoss": "114.36584", "sL_StrLoss": "114.00884", "sL_NStrLoss": "0.357", "sL_ContLoss": "0.03175", "geom_point": "0101000020E6100000693CCFA7675D5EC0C159A54F867D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.458852677999985, 50.983650803000081 ], [ -121.458998865999916, 50.982217219000042 ], [ -121.456541096, 50.982117743000053 ], [ -121.456697742999964, 50.980582310000074 ], [ -121.456285991999962, 50.980565639000083 ], [ -121.456651673, 50.976981185000092 ], [ -121.458991956999952, 50.977075917000022 ], [ -121.45956380199999, 50.977713598 ], [ -121.45980420599993, 50.978200196000067 ], [ -121.45997012199993, 50.978449893000047 ], [ -121.460271719999952, 50.97875541000009 ], [ -121.461262282999911, 50.979406501000113 ], [ -121.461311558999967, 50.979454681000064 ], [ -121.461427323999942, 50.979567903000017 ], [ -121.461605619999887, 50.97982259500003 ], [ -121.461992647999921, 50.980630554000072 ], [ -121.462097901999982, 50.980850301000103 ], [ -121.462242453999949, 50.981105965000062 ], [ -121.462306085999941, 50.981218605000102 ], [ -121.46270041, 50.982156894000049 ], [ -121.463837101999943, 50.983745107000118 ], [ -121.463882911999946, 50.98385422700008 ], [ -121.458852677999985, 50.983650803000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "55.9", "sL_BldgLoss": "55.9", "sL_StrLoss": "55.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC838B2ED2405EC09BB4A149FFB04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.010066638999902, 51.383760737000074 ], [ -121.010402551999931, 51.380791778000109 ], [ -121.01612783899995, 51.38104386800007 ], [ -121.016010603999987, 51.381117706000111 ], [ -121.015471712999968, 51.381305606000097 ], [ -121.014251580999911, 51.381915203000077 ], [ -121.013854201999933, 51.38216020700002 ], [ -121.013773511999929, 51.382365307000015 ], [ -121.013852792999927, 51.382529004000091 ], [ -121.014147401999963, 51.382695698000141 ], [ -121.015185688999949, 51.382605890000079 ], [ -121.015914390999967, 51.382348198000031 ], [ -121.0160084799999, 51.382223149000019 ], [ -121.015954332999939, 51.382702282000096 ], [ -121.015736930999964, 51.384625885000055 ], [ -121.009997341999977, 51.384373165000099 ], [ -121.010066638999902, 51.383760737000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999996594241636", "sL_AssetLoss": "78.103016", "sL_BldgLoss": "78.10275", "sL_StrLoss": "78.1", "sL_NStrLoss": "0.00275", "sL_ContLoss": "0.000266", "geom_point": "0101000020E6100000A612965FA35A5EC0803D70DF34874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.413556688999961, 51.054392829000037 ], [ -121.419255923999941, 51.054625210000012 ], [ -121.418886594999947, 51.058209234000081 ], [ -121.413186901999978, 51.057976834000094 ], [ -121.413556688999961, 51.054392829000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999991583775322", "sL_AssetLoss": "307.026024", "sL_BldgLoss": "307.02344", "sL_StrLoss": "307", "sL_NStrLoss": "0.02344", "sL_ContLoss": "0.002584", "geom_point": "0101000020E6100000D392BF626A565EC01622335954884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.349730628999936, 51.063311589000072 ], [ -121.349952909999942, 51.061187037000138 ], [ -121.350102224999944, 51.061193213000095 ], [ -121.350197953999924, 51.060278142000101 ], [ -121.355897609999928, 51.060513730000146 ], [ -121.355763481999958, 51.061797410000075 ], [ -121.356727068999959, 51.061837209000082 ], [ -121.35635264499993, 51.065420997000054 ], [ -121.354198207999971, 51.065332000000105 ], [ -121.354014642999971, 51.067087949000047 ], [ -121.34839793499998, 51.066855734000086 ], [ -121.348077158999942, 51.06992018400004 ], [ -121.342376339999959, 51.069684203000087 ], [ -121.342751924999945, 51.066100478000109 ], [ -121.348368509999929, 51.066332975000094 ], [ -121.348689238999953, 51.063268512000086 ], [ -121.349730628999936, 51.063311589000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5982FCC153F5EC0C9AE516219B24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.983039015999964, 51.389481951000072 ], [ -120.988779113999897, 51.389736034000066 ], [ -120.988530001999976, 51.391927851000048 ], [ -120.988372066999915, 51.393317311000011 ], [ -120.985619942999946, 51.39319552700006 ], [ -120.982631506999908, 51.393063210000115 ], [ -120.983039015999964, 51.389481951000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "196", "sL_BldgLoss": "196", "sL_StrLoss": "196", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000443735AF2E435EC02567F6B337AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.046168977, 51.368801096 ], [ -121.046590388999959, 51.36870851400009 ], [ -121.04707349899995, 51.368815308000087 ], [ -121.047404589999985, 51.368802500000044 ], [ -121.050818986999943, 51.367223096000025 ], [ -121.051356593999927, 51.3667558880001 ], [ -121.051619703999918, 51.366318698000057 ], [ -121.051712008999928, 51.365494085000059 ], [ -121.051638898999954, 51.365205011000029 ], [ -121.05158891799995, 51.36464670200008 ], [ -121.05098703699997, 51.364618843000095 ], [ -121.051015271999944, 51.364367114000089 ], [ -121.051099103999917, 51.364331908000104 ], [ -121.05193110399992, 51.364381790000088 ], [ -121.053096178999965, 51.363755219000033 ], [ -121.05533864, 51.36385318300011 ], [ -121.056830854999973, 51.363918347000052 ], [ -121.05642956199992, 51.367499962000032 ], [ -121.055259350999947, 51.367448861000057 ], [ -121.055149261999972, 51.368431089000062 ], [ -121.051305228999965, 51.368263143000036 ], [ -121.051103185999963, 51.370064282000044 ], [ -121.050664364999946, 51.37004510100008 ], [ -121.050633479999988, 51.370320393000043 ], [ -121.05016135699999, 51.370299755000083 ], [ -121.050134971999952, 51.370534904000031 ], [ -121.049546896, 51.370509194000107 ], [ -121.049518558999964, 51.37076171800009 ], [ -121.048500345999955, 51.37071719600003 ], [ -121.04845973299993, 51.371079042000076 ], [ -121.04770967799999, 51.371046240000076 ], [ -121.047654825999984, 51.371534860000025 ], [ -121.047341048999982, 51.371521136000055 ], [ -121.047299830999947, 51.37188826700001 ], [ -121.046665176999952, 51.371860507000086 ], [ -121.046614526999946, 51.372311583000041 ], [ -121.046571001999965, 51.37230967800005 ], [ -121.04650645699999, 51.372884484000103 ], [ -121.04649435399989, 51.372883955000106 ], [ -121.046434385999973, 51.373417986000106 ], [ -121.046403218999941, 51.373416622000043 ], [ -121.046341415999976, 51.373966986000042 ], [ -121.046250704999949, 51.373963018000069 ], [ -121.046194736999951, 51.374461388000057 ], [ -121.042812462999962, 51.374313376000039 ], [ -121.04279419199996, 51.374475969000102 ], [ -121.042067093999933, 51.374444137000062 ], [ -121.042024478999949, 51.374823286000044 ], [ -121.041498783999913, 51.374800268000058 ], [ -121.040952250999936, 51.374776335000014 ], [ -121.041126097999935, 51.374526408000094 ], [ -121.042597696999977, 51.373740192000078 ], [ -121.042917409999916, 51.373287298000029 ], [ -121.043234194999982, 51.372627892000068 ], [ -121.043305606999979, 51.371962805000052 ], [ -121.04369899699995, 51.371133889000063 ], [ -121.043908307, 51.370255190000094 ], [ -121.043973310999888, 51.37009429700008 ], [ -121.044252711999931, 51.369937589000102 ], [ -121.045237212999965, 51.369450507000096 ], [ -121.046168977, 51.368801096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999850628549356", "sL_AssetLoss": "105.1071", "sL_BldgLoss": "105.0914", "sL_StrLoss": "105", "sL_NStrLoss": "0.0914", "sL_ContLoss": "0.0157", "geom_point": "0101000020E610000033A857463A455EC0EBA1A62B92864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.07978033699996, 51.052834938000025 ], [ -121.079813203999933, 51.052538022000107 ], [ -121.079196536, 51.052511023000115 ], [ -121.079593157999952, 51.048928132000079 ], [ -121.082655572999968, 51.049062179000011 ], [ -121.08239159, 51.049275415000047 ], [ -121.081964494999937, 51.049960496000089 ], [ -121.082003911999934, 51.05036640000008 ], [ -121.082906610999913, 51.050956009000075 ], [ -121.08349709499997, 51.051532799000043 ], [ -121.084238206999927, 51.051896009000117 ], [ -121.084946797, 51.052032703000087 ], [ -121.085446189999985, 51.051987102000048 ], [ -121.085587934999978, 51.052086005000035 ], [ -121.085477567999973, 51.053084215000091 ], [ -121.07978033699996, 51.052834938000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "56.3", "sL_BldgLoss": "56.3", "sL_StrLoss": "56.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BEF031F5062B5EC06447BAD10DA44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.672301696999952, 51.279224033000048 ], [ -120.673830626999973, 51.279296136000049 ], [ -120.673832389, 51.279759513000052 ], [ -120.674052092999943, 51.279953188000107 ], [ -120.674087681999936, 51.279968061000041 ], [ -120.67373526199998, 51.282892504000095 ], [ -120.673563763999965, 51.282884418000059 ], [ -120.673456402999989, 51.283775209000112 ], [ -120.669677133, 51.283596950000081 ], [ -120.669916190999942, 51.283468201000076 ], [ -120.670057697999979, 51.283236001000034 ], [ -120.670620398999986, 51.283167597 ], [ -120.670741199999952, 51.283043710000065 ], [ -120.670728598999972, 51.282710489000124 ], [ -120.670456592000022, 51.282452708000079 ], [ -120.670400508999975, 51.282128005000096 ], [ -120.670571894999938, 51.281017114000086 ], [ -120.670828797999917, 51.28074221 ], [ -120.671842381999966, 51.280286495000055 ], [ -120.671933294999917, 51.280171094000131 ], [ -120.671839391, 51.279477499000073 ], [ -120.672301696999952, 51.279224033000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "74", "sL_BldgLoss": "74", "sL_StrLoss": "74", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF4A5B1A875B5EC09ADD49FAEA844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.427456662999958, 51.03651302 ], [ -121.433153682999929, 51.036744702000092 ], [ -121.432785619999947, 51.040328842000037 ], [ -121.427088144999971, 51.040097142000107 ], [ -121.427456662999958, 51.03651302 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "81.2", "sL_BldgLoss": "81.2", "sL_StrLoss": "81.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DDD310ABC245EC0BC7139FBD6B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.568149338999916, 51.391741555000053 ], [ -120.568152890999926, 51.391712733000091 ], [ -120.5673315129999, 51.391673332000053 ], [ -120.56738829899993, 51.391212585000083 ], [ -120.564759857999888, 51.391086464000047 ], [ -120.565157853999963, 51.387858532000102 ], [ -120.565634480999961, 51.387902598000053 ], [ -120.566085185999953, 51.388064903000107 ], [ -120.566129209999986, 51.388299899000032 ], [ -120.566034586999962, 51.388478001000053 ], [ -120.565356686999976, 51.389326792000126 ], [ -120.56534661799995, 51.38952479500005 ], [ -120.565631807999978, 51.389548982000086 ], [ -120.5666582899999, 51.389201498000055 ], [ -120.56700078199998, 51.388965 ], [ -120.568548404999945, 51.3895732 ], [ -120.569510189999932, 51.389611604000045 ], [ -120.57068789600001, 51.389887889000079 ], [ -120.571453799999958, 51.389849490000074 ], [ -120.572469303999952, 51.3893852 ], [ -120.57409401299995, 51.389373798000108 ], [ -120.574269912, 51.389305400000111 ], [ -120.57518132, 51.388919501000018 ], [ -120.576757698, 51.387126392000077 ], [ -120.577186918999956, 51.386865806000117 ], [ -120.57768631199994, 51.386686295000111 ], [ -120.578430906999955, 51.386476908000084 ], [ -120.579793503999952, 51.386236297000075 ], [ -120.580539475999927, 51.386008393000047 ], [ -120.582035304, 51.38514960500008 ], [ -120.582203442999983, 51.385130850000074 ], [ -120.581797475999963, 51.388434043000068 ], [ -120.580080267999946, 51.38835186700004 ], [ -120.580006729, 51.388949984000099 ], [ -120.579639069999971, 51.388932387000118 ], [ -120.57957054299996, 51.389489693000058 ], [ -120.578753445999936, 51.389450580000052 ], [ -120.578638154999965, 51.390388013000099 ], [ -120.574950313999949, 51.390211406000049 ], [ -120.574744073999938, 51.39188710100013 ], [ -120.573908120999988, 51.391847051000077 ], [ -120.573887245999984, 51.392016621000074 ], [ -120.568149338999916, 51.391741555000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999950468085092", "sL_AssetLoss": "353.10567", "sL_BldgLoss": "353.08818", "sL_StrLoss": "353", "sL_NStrLoss": "0.08818", "sL_ContLoss": "0.01749", "geom_point": "0101000020E610000045CA1EBAC35E5EC0CDC47421569D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.479375229999931, 51.234400100000038 ], [ -121.479410052999953, 51.234059081000076 ], [ -121.476772362999967, 51.233953431000046 ], [ -121.477138476999954, 51.230369896000035 ], [ -121.478710028999927, 51.230432850000071 ], [ -121.478757694999928, 51.229966076000025 ], [ -121.477349161999982, 51.229909653000043 ], [ -121.477385707999957, 51.229551888000088 ], [ -121.477170079999937, 51.229543249000095 ], [ -121.477194974999975, 51.229299556000058 ], [ -121.476505573999972, 51.229271932000067 ], [ -121.476766542999911, 51.226717487000045 ], [ -121.476595652999961, 51.226710638000043 ], [ -121.476779777, 51.224908272000086 ], [ -121.476961722999988, 51.223127076000033 ], [ -121.482626635, 51.223353951000014 ], [ -121.482682973999957, 51.223356206000048 ], [ -121.482470404999944, 51.2254398070001 ], [ -121.482802712999913, 51.225453106000025 ], [ -121.482761725999978, 51.225854864000027 ], [ -121.483030031999945, 51.225865601000116 ], [ -121.482998121999969, 51.226178406000045 ], [ -121.483257744999975, 51.226188795000056 ], [ -121.483221248999968, 51.226546563000106 ], [ -121.483436863999898, 51.226555191000067 ], [ -121.483371505999912, 51.227195909000038 ], [ -121.48477996099993, 51.227252257000067 ], [ -121.484752575999934, 51.227520792000035 ], [ -121.484991571999956, 51.227530351000091 ], [ -121.484636462999973, 51.231012471000014 ], [ -121.485463394999954, 51.231045544000082 ], [ -121.485097948999965, 51.234629104000071 ], [ -121.482781879999919, 51.234536458000015 ], [ -121.479375229999931, 51.234400100000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999867415241458", "sL_AssetLoss": "107.1013", "sL_BldgLoss": "107.0871", "sL_StrLoss": "107", "sL_NStrLoss": "0.0871", "sL_ContLoss": "0.0142", "geom_point": "0101000020E6100000F323FA8C365B5EC07E94E897CEA44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.423304227999964, 51.286032832000117 ], [ -121.429033327999946, 51.286264661000061 ], [ -121.429024157999976, 51.286353367000068 ], [ -121.428035918999925, 51.287076441000046 ], [ -121.427938702999924, 51.287147588000082 ], [ -121.427155259999935, 51.287712767000116 ], [ -121.426661494999962, 51.28806897200004 ], [ -121.424691615999961, 51.289489909000061 ], [ -121.424420006999938, 51.289676170000099 ], [ -121.422933297000014, 51.289615982000029 ], [ -121.423304227999964, 51.286032832000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "63.4", "sL_BldgLoss": "63.4", "sL_StrLoss": "63.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FFDC23DDC73A5EC048EC66885BB34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.916491466999958, 51.399343308000034 ], [ -120.921525630999966, 51.399569072000112 ], [ -120.921113037999973, 51.403150072000095 ], [ -120.915371588999903, 51.402892570000112 ], [ -120.915727972999903, 51.399802931000046 ], [ -120.915784643999984, 51.399311591000121 ], [ -120.916491466999958, 51.399343308000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "66.9", "sL_BldgLoss": "66.9", "sL_StrLoss": "66.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094CC1C586F405EC05BF724EA64A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.004160422999945, 51.261806417000045 ], [ -121.004163476999977, 51.261779384000057 ], [ -121.003621406999983, 51.261755403000073 ], [ -121.003847706999977, 51.259752130000024 ], [ -121.004061705999973, 51.259614084000113 ], [ -121.004525311999956, 51.259514390000049 ], [ -121.004696420999949, 51.259525801000045 ], [ -121.004890973, 51.259709493000081 ], [ -121.005446276, 51.259782094000109 ], [ -121.0059553899999, 51.259952991000027 ], [ -121.006485719999915, 51.259953 ], [ -121.007221879999975, 51.259793501000082 ], [ -121.007508682999969, 51.259817697000067 ], [ -121.007916916999974, 51.259985794000038 ], [ -121.008361496999925, 51.259984407000033 ], [ -121.009158000999946, 51.259790690000102 ], [ -121.009565293999927, 51.260283514000058 ], [ -121.010065516999958, 51.260451492000087 ], [ -121.009884096999954, 51.262059465000057 ], [ -121.004160422999945, 51.261806417000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999973170327634", "sL_AssetLoss": "83.11693", "sL_BldgLoss": "83.1147", "sL_StrLoss": "83.1", "sL_NStrLoss": "0.0147", "sL_ContLoss": "0.00223", "geom_point": "0101000020E6100000E8361B0A23485EC008D8FD1994864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.126306814999964, 51.052155199000048 ], [ -121.125638615999961, 51.051730800000072 ], [ -121.124932103999953, 51.051530001000138 ], [ -121.124165178999988, 51.051183921000074 ], [ -121.124259053999964, 51.050328088000057 ], [ -121.129956212, 51.050575114000061 ], [ -121.12979771, 51.052021809000088 ], [ -121.129347211, 51.052095407000053 ], [ -121.12858888599996, 51.052138103000061 ], [ -121.127565208999954, 51.052085404000074 ], [ -121.127443516999961, 51.052236404000055 ], [ -121.127640016, 51.052697801000065 ], [ -121.127564212999971, 51.05283169800007 ], [ -121.126803292999952, 51.052927108000112 ], [ -121.126295408999965, 51.053108004000102 ], [ -121.125932580999958, 51.052904296000051 ], [ -121.12578782, 51.052623798000106 ], [ -121.125793910999974, 51.052452909000088 ], [ -121.125884100999926, 51.05238160300005 ], [ -121.126240909999964, 51.052351699000056 ], [ -121.126306814999964, 51.052155199000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999912982577251", "sL_AssetLoss": "303.15768", "sL_BldgLoss": "303.1313", "sL_StrLoss": "303", "sL_NStrLoss": "0.1313", "sL_ContLoss": "0.02638", "geom_point": "0101000020E61000007A96B5879C5B5EC0A13B7771D1794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.435693305999934, 50.955665731000053 ], [ -121.435772965999959, 50.954888021000059 ], [ -121.430858290999979, 50.954687902000039 ], [ -121.430912137999883, 50.954162744000136 ], [ -121.428544046999917, 50.954066241000064 ], [ -121.428715160999943, 50.952398193000079 ], [ -121.428242748999963, 50.952378936000059 ], [ -121.428364729999885, 50.951189900000017 ], [ -121.426900583999952, 50.951130202000044 ], [ -121.42695423, 50.950607414000054 ], [ -121.426313598, 50.950581287000098 ], [ -121.42637175299997, 50.95001463600012 ], [ -121.425678815999945, 50.949986371000072 ], [ -121.426046703999944, 50.946401895000086 ], [ -121.427978818999946, 50.946480693000062 ], [ -121.428077185999911, 50.946613897000105 ], [ -121.428505326999925, 50.947073284000062 ], [ -121.428662187999947, 50.947241600000027 ], [ -121.429463912999964, 50.94791408800009 ], [ -121.431713408999983, 50.949850499000036 ], [ -121.431895088999951, 50.949999383000076 ], [ -121.432611590999954, 50.950586636000011 ], [ -121.433579284999922, 50.951379697000114 ], [ -121.433748975999933, 50.951505322000102 ], [ -121.434758672999962, 50.952213319000116 ], [ -121.435608398999989, 50.952753603000055 ], [ -121.435654436999968, 50.952779676000077 ], [ -121.436592203999922, 50.953310792000131 ], [ -121.438656030999979, 50.954479621000054 ], [ -121.439730943999976, 50.955088338000074 ], [ -121.440556434999948, 50.955555795000066 ], [ -121.441141925999958, 50.955887337000043 ], [ -121.436897234999918, 50.955714720000095 ], [ -121.435693305999934, 50.955665731000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "73.3", "sL_BldgLoss": "73.3", "sL_StrLoss": "73.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001860DD80284D5EC05EFC65DE479E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.203212927999928, 51.234484028000118 ], [ -121.208934187999944, 51.234727010000078 ], [ -121.208546356999975, 51.238309634000075 ], [ -121.208021085, 51.238287338000127 ], [ -121.207981552999968, 51.23865244700005 ], [ -121.207331276999952, 51.238624841000053 ], [ -121.202259791999936, 51.238409418000032 ], [ -121.202303702, 51.23800435200004 ], [ -121.202648131, 51.234826816000052 ], [ -121.203173358999962, 51.234849137000033 ], [ -121.203212927999928, 51.234484028000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.3", "sL_BldgLoss": "51.3", "sL_StrLoss": "51.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009088C66609345EC026602AECD8AB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.810417856, 51.340635604000077 ], [ -120.816150603999958, 51.340898432000095 ], [ -120.815730024999979, 51.344479258000106 ], [ -120.809996814999963, 51.344216411000048 ], [ -120.810417856, 51.340635604000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "124.4", "sL_BldgLoss": "124.4", "sL_StrLoss": "124.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B36AB3E973C5EC0BD6FDF17D5A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.937316435999961, 51.265819599000118 ], [ -120.937409472999946, 51.265006932000084 ], [ -120.936175974999927, 51.264985185000086 ], [ -120.936224290999931, 51.263906834000089 ], [ -120.936653990999929, 51.263914411000044 ], [ -120.936690217999953, 51.263105649000046 ], [ -120.937126506999931, 51.263113341000071 ], [ -120.937140617999916, 51.263121896 ], [ -120.937628096999958, 51.263157487000051 ], [ -120.938007897999938, 51.26330700200004 ], [ -120.938420992999951, 51.263341214000064 ], [ -120.939179103999962, 51.263687305000083 ], [ -120.939866820999953, 51.263727206000127 ], [ -120.94094871599998, 51.263584791000092 ], [ -120.941963925, 51.263322704000089 ], [ -120.942724079999948, 51.263274299000059 ], [ -120.943616583000036, 51.263217302000044 ], [ -120.944704103, 51.263254403000055 ], [ -120.945679307999981, 51.262938189000089 ], [ -120.947341494999932, 51.262940990000097 ], [ -120.949124399999945, 51.262468196000036 ], [ -120.949597690999894, 51.262162001000029 ], [ -120.949516892999966, 51.261063898000025 ], [ -120.95001210099997, 51.260928601000039 ], [ -120.951846910999976, 51.261221989000063 ], [ -120.951944791999978, 51.261600793000106 ], [ -120.951773014999944, 51.262227506000023 ], [ -120.952049502999927, 51.262475305000109 ], [ -120.95296511, 51.262526603000047 ], [ -120.953290297999899, 51.26263199000006 ], [ -120.953427007999935, 51.262768700000052 ], [ -120.953792194999977, 51.263899494000079 ], [ -120.954199193999969, 51.264436389000075 ], [ -120.954840278999924, 51.264816692000117 ], [ -120.955448584999957, 51.264989006000093 ], [ -120.955796115999973, 51.264941992000054 ], [ -120.956804842999972, 51.265052485000119 ], [ -120.956678639999936, 51.266159107000071 ], [ -120.951186399999955, 51.265913725000132 ], [ -120.951167979999951, 51.266327813000011 ], [ -120.949878801999944, 51.266305236000058 ], [ -120.949902799999961, 51.265766056000096 ], [ -120.949473077999954, 51.265758528000056 ], [ -120.949497081999965, 51.265219349000084 ], [ -120.948637650999942, 51.265204287000124 ], [ -120.948649657999937, 51.26493469800004 ], [ -120.947843275999986, 51.264920560000093 ], [ -120.947772117999975, 51.265543417000032 ], [ -120.946434440999937, 51.265483571000068 ], [ -120.946421860999948, 51.265593649000053 ], [ -120.945448699999986, 51.265550101000045 ], [ -120.945419430999948, 51.265806172000048 ], [ -120.943083063999893, 51.265701586000127 ], [ -120.943040244000017, 51.266076027000047 ], [ -120.937316435999961, 51.265819599000118 ] ], [ [ -120.95012436899998, 51.264420938000093 ], [ -120.950159496999945, 51.264113307000052 ], [ -120.949118350999967, 51.264066749000094 ], [ -120.949115378999934, 51.264133460000025 ], [ -120.94997479099996, 51.264148518000077 ], [ -120.949962792999955, 51.264418108000022 ], [ -120.95012436899998, 51.264420938000093 ] ], [ [ -120.949030253999979, 51.263592367000051 ], [ -120.949066836999947, 51.263272059000023 ], [ -120.948640937999954, 51.263253011000074 ], [ -120.948695748999953, 51.262773143000096 ], [ -120.948091679999933, 51.262746123000063 ], [ -120.947997078999947, 51.26357425500003 ], [ -120.949030253999979, 51.263592367000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "121.2", "sL_BldgLoss": "121.2", "sL_StrLoss": "121.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3FFA9FACD265EC0F7D8C83B28B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.599477165999986, 51.385245219000183 ], [ -120.599482867999882, 51.385198667000076 ], [ -120.598842046999948, 51.385168102000122 ], [ -120.599073270999924, 51.383280682000091 ], [ -120.599408113999942, 51.383339406000047 ], [ -120.600085397999948, 51.383308102000036 ], [ -120.601214977000012, 51.383672698000048 ], [ -120.601728886999979, 51.383467602000067 ], [ -120.602945896, 51.38355449200003 ], [ -120.604205104999892, 51.383419185000072 ], [ -120.605398794999971, 51.383110104000089 ], [ -120.607069395999986, 51.383298111000109 ], [ -120.608557391999952, 51.383165703000039 ], [ -120.609741378999928, 51.38278539300012 ], [ -120.610356504999956, 51.382293987 ], [ -120.611288213999984, 51.382080399000117 ], [ -120.611758313999943, 51.381863890000076 ], [ -120.612248406999967, 51.381856794000072 ], [ -120.612756508999922, 51.381750011000086 ], [ -120.612816867999982, 51.38175198700003 ], [ -120.612446393999974, 51.384783834000082 ], [ -120.611811519999918, 51.384753626000112 ], [ -120.611787574999937, 51.384949551000062 ], [ -120.610584615999954, 51.384892302 ], [ -120.610558030999954, 51.385109778000064 ], [ -120.605295128999941, 51.384859165000123 ], [ -120.605214422999921, 51.385518703000088 ], [ -120.599477165999986, 51.385245219000183 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "60", "sL_BldgLoss": "60", "sL_StrLoss": "60", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D92FD09C923F5EC0B4A2B4D4CDB14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.990903621, 51.387065132000025 ], [ -120.996643448999961, 51.387318816000061 ], [ -120.996521372999922, 51.388394675000022 ], [ -120.996237062999981, 51.390900131000087 ], [ -120.995771255999927, 51.390879554000044 ], [ -120.995743654999984, 51.391122742000064 ], [ -120.991619733999954, 51.390940489000087 ], [ -120.99000333699999, 51.390869013000085 ], [ -120.990410227999945, 51.387287720000117 ], [ -120.990875994999925, 51.38730831900007 ], [ -120.990903621, 51.387065132000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999907164515132", "sL_AssetLoss": "98.56145", "sL_BldgLoss": "98.5523", "sL_StrLoss": "98.5", "sL_NStrLoss": "0.0523", "sL_ContLoss": "0.00915", "geom_point": "0101000020E6100000EFE9454878475EC04A1CC3ADCC874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.111848309, 51.062038589000032 ], [ -121.112082119999968, 51.05991284600001 ], [ -121.113206875999978, 51.060217598000023 ], [ -121.113380904999971, 51.060166407000054 ], [ -121.113578790999952, 51.059872990000052 ], [ -121.113618792999944, 51.059261992000067 ], [ -121.11302128199992, 51.058820497000056 ], [ -121.112853429999987, 51.058482190000092 ], [ -121.112934835999965, 51.058485729000033 ], [ -121.112935153999942, 51.058482838000025 ], [ -121.113445828999929, 51.058505040000092 ], [ -121.113504279999944, 51.05855989600007 ], [ -121.113925685, 51.058727898000029 ], [ -121.114242810999968, 51.058984288 ], [ -121.114070709999964, 51.059360299000069 ], [ -121.11404599799998, 51.059988300000036 ], [ -121.114179307999933, 51.06018918800001 ], [ -121.11477171199999, 51.060351500000095 ], [ -121.116089608999971, 51.060229 ], [ -121.116294295999978, 51.060123594000082 ], [ -121.116314018999972, 51.060016808000107 ], [ -121.116153893999979, 51.059699202000083 ], [ -121.116216004999956, 51.059609505000076 ], [ -121.116531491999979, 51.059552503000084 ], [ -121.118012678999904, 51.059998299000014 ], [ -121.119345880999958, 51.059848795000029 ], [ -121.121844392999932, 51.059872943000094 ], [ -121.121619749999951, 51.061919445000058 ], [ -121.120388878999904, 51.061866022000054 ], [ -121.12038709399999, 51.061882275000052 ], [ -121.11829705699995, 51.061791531000075 ], [ -121.118239725999956, 51.062313424000138 ], [ -121.117547214999917, 51.06228334900004 ], [ -121.117546896999968, 51.06228624000002 ], [ -121.111848309, 51.062038589000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "242.4", "sL_BldgLoss": "242.4", "sL_StrLoss": "242.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D46732ABA505EC0884997825E8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.250952748999936, 51.108474664000035 ], [ -121.251013443999938, 51.107907275000109 ], [ -121.250754781999973, 51.107896360000019 ], [ -121.250836385999918, 51.107133526000055 ], [ -121.251823985000016, 51.106773599000057 ], [ -121.252267705999913, 51.106411897000058 ], [ -121.252672305999965, 51.106265206000067 ], [ -121.253723589999964, 51.10603729400006 ], [ -121.254375701999933, 51.105805191000073 ], [ -121.256201821999966, 51.104707101000088 ], [ -121.257932885999949, 51.10391520600006 ], [ -121.25886719099995, 51.103362616000048 ], [ -121.259808805999953, 51.103035107000032 ], [ -121.260484617999964, 51.10291829800007 ], [ -121.261467601999982, 51.102960994000085 ], [ -121.261827288999896, 51.10289410500009 ], [ -121.262980706999969, 51.101858708000044 ], [ -121.264390314999972, 51.101214898000187 ], [ -121.265275517999953, 51.100462900000053 ], [ -121.265720500999947, 51.100397395000101 ], [ -121.26620540299993, 51.100414488000098 ], [ -121.266665904999968, 51.100313403000044 ], [ -121.267890990999945, 51.099279414000137 ], [ -121.268373327999939, 51.099021685000075 ], [ -121.269114306999938, 51.099052841000066 ], [ -121.269069286999922, 51.099475405000078 ], [ -121.270049602999947, 51.09951661700012 ], [ -121.269667875, 51.103099967000048 ], [ -121.269217924999978, 51.103081053000025 ], [ -121.269167481999887, 51.103554478000092 ], [ -121.2683924899999, 51.103521896000046 ], [ -121.26833177799989, 51.104091597000036 ], [ -121.267468556, 51.104055298000084 ], [ -121.267427560999948, 51.10443991800004 ], [ -121.266291336999956, 51.104392130000065 ], [ -121.266237535999949, 51.104896745000055 ], [ -121.265157792999943, 51.104851322000108 ], [ -121.265109211999956, 51.105306872000099 ], [ -121.263698165999969, 51.105247494000075 ], [ -121.263612992999981, 51.106045905000073 ], [ -121.262331065999916, 51.105991946000088 ], [ -121.262268867000017, 51.106574835000096 ], [ -121.260799339999934, 51.10651296200006 ], [ -121.260742528999955, 51.107045170000049 ], [ -121.259272212000013, 51.106983245000073 ], [ -121.259192502999966, 51.107729705000047 ], [ -121.257966064999934, 51.107678036000081 ], [ -121.257913373999898, 51.108171335000044 ], [ -121.256721533999936, 51.108121110000091 ], [ -121.256658051999935, 51.108715264000118 ], [ -121.250952748999936, 51.108474664000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.7", "sL_BldgLoss": "60.7", "sL_StrLoss": "60.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D7E7125924B5EC000D6782352904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.17718519099995, 51.130155232000064 ], [ -121.177574606999954, 51.12657230300006 ], [ -121.179231079999937, 51.126643241000117 ], [ -121.179234631999975, 51.126610543000062 ], [ -121.179887483999948, 51.126638494000062 ], [ -121.180005863999952, 51.125548658000106 ], [ -121.18571297199999, 51.125792843000021 ], [ -121.185628333999958, 51.126572969000051 ], [ -121.184647480999971, 51.126983200000055 ], [ -121.18268367899995, 51.12788749700006 ], [ -121.182169792999957, 51.128203703000075 ], [ -121.181824815999931, 51.128989896000071 ], [ -121.18084822, 51.129486897000142 ], [ -121.180227495999972, 51.129666409000045 ], [ -121.179655809999957, 51.129278999000057 ], [ -121.179128084999903, 51.129244802000109 ], [ -121.178572910999961, 51.129578096000081 ], [ -121.178240988999917, 51.130022413000162 ], [ -121.178018759999972, 51.130190932000041 ], [ -121.17718519099995, 51.130155232000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999995521059846", "sL_AssetLoss": "76.803884", "sL_BldgLoss": "76.80354", "sL_StrLoss": "76.8", "sL_NStrLoss": "0.00354", "sL_ContLoss": "0.000344", "geom_point": "0101000020E61000006D7EF434FD405EC0712DA40D51A44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.012793311999928, 51.281806339000113 ], [ -121.018519621999985, 51.282058944000035 ], [ -121.018115971000014, 51.28564072400011 ], [ -121.012389200999976, 51.285388100000056 ], [ -121.012793311999928, 51.281806339000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "73.6", "sL_BldgLoss": "73.6", "sL_StrLoss": "73.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C15D26DCB5D5EC0FE37407AD47E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.463836658999966, 50.988815581000047 ], [ -121.466440756999972, 50.988920791000105 ], [ -121.466822388999901, 50.989359892000074 ], [ -121.466947327999932, 50.989648306000063 ], [ -121.466950542999925, 50.989691087000047 ], [ -121.467012390999983, 50.99051029200011 ], [ -121.467160282999942, 50.990811410000049 ], [ -121.467508309999957, 50.991295104000088 ], [ -121.467937691999907, 50.991595914000058 ], [ -121.468076911999916, 50.991772496000081 ], [ -121.468144293999956, 50.992036113000076 ], [ -121.468142526999927, 50.992106872000072 ], [ -121.468130422999963, 50.992588197000032 ], [ -121.466793031999913, 50.992534197000069 ], [ -121.463471457999958, 50.992400010000026 ], [ -121.463698885999989, 50.990167880000023 ], [ -121.463836658999966, 50.988815581000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999888136800089", "sL_AssetLoss": "92.9707", "sL_BldgLoss": "92.9603", "sL_StrLoss": "92.9", "sL_NStrLoss": "0.0603", "sL_ContLoss": "0.0104", "geom_point": "0101000020E6100000699292FDF7605EC098E5E3C1339C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.51269668499998, 51.220691606000074 ], [ -121.512814697, 51.219526919000046 ], [ -121.513043881, 51.219536031000054 ], [ -121.513103120999986, 51.218951325000084 ], [ -121.513474375999976, 51.218966085000027 ], [ -121.513532136, 51.218395934000107 ], [ -121.519252964999978, 51.218623213000072 ], [ -121.5192157379999, 51.218991153000026 ], [ -121.516168335999936, 51.221323195000124 ], [ -121.51577399899999, 51.221624944000077 ], [ -121.515012344999946, 51.222207754000095 ], [ -121.514247601, 51.222792890000051 ], [ -121.513909836000011, 51.223051337000044 ], [ -121.51376416799998, 51.22316279100005 ], [ -121.512451555999988, 51.223110611000017 ], [ -121.512581913999966, 51.221824225000042 ], [ -121.513032603999989, 51.221396786000078 ], [ -121.513125424999956, 51.221200304000043 ], [ -121.512710296, 51.220725988000012 ], [ -121.51269668499998, 51.220691606000074 ] ], [ [ -121.514636013999947, 51.220562293000057 ], [ -121.51420790399996, 51.220485291000053 ], [ -121.514099985, 51.220708890000054 ], [ -121.514358811999969, 51.220730291000038 ], [ -121.51459000199999, 51.220624908000033 ], [ -121.514636013999947, 51.220562293000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53", "sL_BldgLoss": "53", "sL_StrLoss": "53", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000045AC725FD6285EC0E1E255941AA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.633416481999959, 51.250743764000106 ], [ -120.633618320999986, 51.249080284000108 ], [ -120.639338158999976, 51.249352080000108 ], [ -120.639315480999954, 51.249539177000059 ], [ -120.640054247999942, 51.24957426000001 ], [ -120.64003673, 51.249718806000018 ], [ -120.640999824999966, 51.249764535000089 ], [ -120.640985088999912, 51.249886150000137 ], [ -120.641799504999966, 51.249924813000085 ], [ -120.641365700999984, 51.25350532000008 ], [ -120.639860278999947, 51.253433848 ], [ -120.639449398, 51.252565702000062 ], [ -120.638844190999947, 51.252060097000054 ], [ -120.638451488999962, 51.251899098000109 ], [ -120.637401695999969, 51.251669810000074 ], [ -120.63543810699997, 51.251414886000134 ], [ -120.633416481999959, 51.250743764000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.4", "sL_BldgLoss": "47.4", "sL_StrLoss": "47.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066F3DD52732A5EC0248FF17222A44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.661442761, 51.280068796000116 ], [ -120.663356972999935, 51.280159249000114 ], [ -120.664105899999981, 51.281247798000031 ], [ -120.665204506999928, 51.282511100000157 ], [ -120.665773787999953, 51.28285430500005 ], [ -120.666810086999959, 51.283295128000077 ], [ -120.666734719999965, 51.283919666000024 ], [ -120.661010248999929, 51.28364926600004 ], [ -120.661442761, 51.280068796000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999942447263519", "sL_AssetLoss": "198.0792", "sL_BldgLoss": "198.0678", "sL_StrLoss": "198", "sL_NStrLoss": "0.0678", "sL_ContLoss": "0.0114", "geom_point": "0101000020E6100000EE7321FB055F5EC08A62C987E69E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.482113130999934, 51.244628155000022 ], [ -121.482172098999968, 51.244050490000056 ], [ -121.48209877, 51.244047556000076 ], [ -121.482315116, 51.241928035000051 ], [ -121.481530596999932, 51.241896645000061 ], [ -121.48189639099995, 51.238313124000065 ], [ -121.484584023999972, 51.238420640000086 ], [ -121.487619626999972, 51.238542 ], [ -121.487403551999989, 51.24066153800009 ], [ -121.488188053999977, 51.24069288800009 ], [ -121.48812917099994, 51.241270559000064 ], [ -121.488202493999907, 51.241273489000058 ], [ -121.488043397999959, 51.242834232000114 ], [ -121.486488980999965, 51.244019536000046 ], [ -121.485496027999972, 51.244763448000064 ], [ -121.482113130999934, 51.244628155000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.6", "sL_BldgLoss": "47.6", "sL_StrLoss": "47.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000057D4FDEF4A365EC07E30952389A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.845667408999972, 51.32257659600009 ], [ -120.851398026999959, 51.322837644000089 ], [ -120.850980473000021, 51.32641866700007 ], [ -120.845249393999921, 51.326157599000041 ], [ -120.845667408999972, 51.32257659600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "57.2", "sL_BldgLoss": "57.2", "sL_StrLoss": "57.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000801984A0402A5EC04028397103B24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.657542316999979, 51.388804721000021 ], [ -120.66328039499993, 51.389075267000123 ], [ -120.662846963999954, 51.392655342000104 ], [ -120.657108422999897, 51.392384775000032 ], [ -120.657542316999979, 51.388804721000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "54.1", "sL_BldgLoss": "54.1", "sL_StrLoss": "54.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FECC07A10F385EC046D3D9C960A84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.873296852999928, 51.313533325000023 ], [ -120.879026461999942, 51.313792979000063 ], [ -120.878611228999958, 51.317374137000058 ], [ -120.872881160999938, 51.317114463000074 ], [ -120.873296852999928, 51.313533325000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999993947545669", "sL_AssetLoss": "151.013118", "sL_BldgLoss": "151.012204", "sL_StrLoss": "151.000144", "sL_NStrLoss": "0.01206", "sL_ContLoss": "0.000914", "geom_point": "0101000020E610000086C4A0C0B9345EC09C74B6DB09A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.821920736999957, 51.324451468000113 ], [ -120.821940333999976, 51.324284347000066 ], [ -120.821232826, 51.324251950000132 ], [ -120.821233719999924, 51.324244327000024 ], [ -120.820349396999958, 51.324203826000044 ], [ -120.820610576999954, 51.32197713500009 ], [ -120.819219212999968, 51.321913399000103 ], [ -120.819311103999922, 51.32113013900009 ], [ -120.818775251999909, 51.321105587000041 ], [ -120.819195360999942, 51.317524664000089 ], [ -120.820541109999965, 51.317586317000078 ], [ -120.820826633999943, 51.315151598000092 ], [ -120.825284287999978, 51.315355703000094 ], [ -120.825229979999946, 51.316251999000073 ], [ -120.824231514999951, 51.316727696000058 ], [ -120.823522523999941, 51.316877301000062 ], [ -120.823312203999947, 51.317079503000095 ], [ -120.823197501999957, 51.317382901000094 ], [ -120.823200107999952, 51.317905491000019 ], [ -120.823379380999938, 51.318969392000049 ], [ -120.823690012, 51.319712909000039 ], [ -120.824029012, 51.32012449899999 ], [ -120.824199393999947, 51.320765405000053 ], [ -120.824349504999986, 51.320939102000132 ], [ -120.824715599999976, 51.322591204000027 ], [ -120.82508691799994, 51.322643905000128 ], [ -120.82559510499999, 51.322527111000063 ], [ -120.825920109999984, 51.322299210000082 ], [ -120.82614168899994, 51.321863389000036 ], [ -120.826624896999959, 51.321674003000098 ], [ -120.827282000999915, 51.321137088000071 ], [ -120.827506884999977, 51.320647103000077 ], [ -120.827761990999946, 51.320373708000027 ], [ -120.827968704999961, 51.320278308000042 ], [ -120.828832995999932, 51.320212812000086 ], [ -120.83065801199993, 51.319267101000058 ], [ -120.831217607999946, 51.319033250000125 ], [ -120.831244616999953, 51.319034484000042 ], [ -120.830825467999944, 51.322615448000114 ], [ -120.827912827999981, 51.322482271000048 ], [ -120.827651455999927, 51.32471371700008 ], [ -120.821920736999957, 51.324451468000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "139", "sL_BldgLoss": "139", "sL_StrLoss": "139", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A0D4CF28C405EC0049DDEFF26AC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.005617228999967, 51.34765260900015 ], [ -121.005689027999949, 51.347018081000101 ], [ -121.005227259999955, 51.34699770000001 ], [ -121.005632514999974, 51.343416192000063 ], [ -121.005967915, 51.34343099500007 ], [ -121.006141682999939, 51.34189500100004 ], [ -121.010333198999902, 51.342079915000078 ], [ -121.010365798999956, 51.342287997000057 ], [ -121.01078718399998, 51.342520103000055 ], [ -121.01126919599993, 51.342295088000071 ], [ -121.011246057999927, 51.342120166 ], [ -121.011875735999979, 51.342147927000106 ], [ -121.011630457999956, 51.344318465000065 ], [ -121.011756792999918, 51.344324033000092 ], [ -121.011352025999926, 51.347905560000136 ], [ -121.005617228999967, 51.34765260900015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "186.6", "sL_BldgLoss": "186.6", "sL_StrLoss": "186.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DA007EB7D4E5EC06B38FAD2BA8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.236606161999987, 51.116815027000058 ], [ -121.236916133999927, 51.116828144000102 ], [ -121.23653158799999, 51.120411314000052 ], [ -121.235421327999944, 51.120364330000079 ], [ -121.23539105299993, 51.120646340000079 ], [ -121.23488570799999, 51.120624952000064 ], [ -121.234850447999989, 51.120953353000104 ], [ -121.232284357, 51.120844707000096 ], [ -121.232110919999954, 51.12245911500009 ], [ -121.231353822999893, 51.122427048000084 ], [ -121.231323899999964, 51.122705532000033 ], [ -121.23080364499998, 51.122683495000061 ], [ -121.230776590999966, 51.122935245000072 ], [ -121.229562537999968, 51.122883809000051 ], [ -121.229482576999928, 51.123627674000033 ], [ -121.228042360999908, 51.123566639000082 ], [ -121.227941261999945, 51.124506809000053 ], [ -121.222994592999967, 51.124297031000069 ], [ -121.222675500999941, 51.127261127000089 ], [ -121.221228086999986, 51.127199704000105 ], [ -121.221182558999942, 51.127622461000058 ], [ -121.215475021999964, 51.127380072000065 ], [ -121.21571513499994, 51.125153024000085 ], [ -121.216035194, 51.125064692000045 ], [ -121.217113701999949, 51.124873909 ], [ -121.21788090299999, 51.124651702000051 ], [ -121.220993095999958, 51.124007995000063 ], [ -121.221860197999931, 51.123733092000123 ], [ -121.222648513999957, 51.12365479200006 ], [ -121.223920611999986, 51.123268799000115 ], [ -121.224285083000026, 51.123076497000099 ], [ -121.224622308, 51.122525390000071 ], [ -121.224974886999945, 51.122277607000051 ], [ -121.225968215, 51.122076793000055 ], [ -121.226509496999938, 51.121743509000062 ], [ -121.227107697999955, 51.121042812000034 ], [ -121.227488685999958, 51.120804909000057 ], [ -121.227923193999942, 51.120649711000034 ], [ -121.2290319, 51.120433195000103 ], [ -121.229734110999942, 51.120399003000053 ], [ -121.230735189999947, 51.119946115000083 ], [ -121.231017685999944, 51.119689800000067 ], [ -121.231091312, 51.11926820900004 ], [ -121.231420706999955, 51.118867990000084 ], [ -121.231921810999978, 51.118489190000076 ], [ -121.232500795999911, 51.118282707000056 ], [ -121.23313500099999, 51.118147296000103 ], [ -121.233834497999965, 51.118150192000016 ], [ -121.234280679999983, 51.11807469399999 ], [ -121.234890575999913, 51.117796998000046 ], [ -121.236606161999987, 51.116815027000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "53.1", "sL_BldgLoss": "53.1", "sL_StrLoss": "53.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F35B1188192B5EC09A38A04201AA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.670865708999926, 51.325896209000071 ], [ -120.676595707000033, 51.326166099000091 ], [ -120.676163971999969, 51.329746455000056 ], [ -120.676084173000021, 51.329742698000054 ], [ -120.676001205999981, 51.330430656000047 ], [ -120.67027065799999, 51.330160737000021 ], [ -120.67070287599995, 51.326580406000069 ], [ -120.670782666999941, 51.326584166000089 ], [ -120.670865708999926, 51.325896209000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999996116959005", "sL_AssetLoss": "137.006022", "sL_BldgLoss": "137.00549", "sL_StrLoss": "137", "sL_NStrLoss": "0.00549", "sL_ContLoss": "0.000532", "geom_point": "0101000020E61000005F32E1D996545EC09DEF8E29AB894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.324527077999946, 51.072196463000047 ], [ -121.326306925999987, 51.072270449000044 ], [ -121.32592996399994, 51.075854095000054 ], [ -121.32561550899996, 51.075841026000049 ], [ -121.325589662999931, 51.076086703000058 ], [ -121.325177539999942, 51.076069573000026 ], [ -121.325157954999938, 51.076255713000073 ], [ -121.324617882, 51.076233262000052 ], [ -121.324596039999975, 51.076440826000066 ], [ -121.323723695999945, 51.076404557000025 ], [ -121.32369681599999, 51.076659946000063 ], [ -121.322773960999925, 51.076621571000061 ], [ -121.322743190999986, 51.076913869000073 ], [ -121.321924872999958, 51.07687983300012 ], [ -121.321886972999934, 51.077239788000057 ], [ -121.321265073999911, 51.077213918000027 ], [ -121.321237158999963, 51.07747900300005 ], [ -121.320453464, 51.077446398000077 ], [ -121.320404947999975, 51.077907021000051 ], [ -121.314703252999948, 51.077669642000046 ], [ -121.314726102999913, 51.077452959000048 ], [ -121.315134204999964, 51.077423491000076 ], [ -121.315481220999956, 51.077293897000118 ], [ -121.31587969399996, 51.076895107000041 ], [ -121.31756350199997, 51.076173092000026 ], [ -121.318114001999973, 51.075523613000058 ], [ -121.31956881499994, 51.074753093000027 ], [ -121.320018014999903, 51.074570796000025 ], [ -121.321519318999904, 51.07452100200004 ], [ -121.32223948499994, 51.074368604000036 ], [ -121.32299220199999, 51.07367779 ], [ -121.323722581999931, 51.07322069300011 ], [ -121.324360996999957, 51.072511410000132 ], [ -121.324527077999946, 51.072196463000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999986296484085", "sL_AssetLoss": "81.00111", "sL_BldgLoss": "81", "sL_StrLoss": "81", "sL_NStrLoss": "0", "sL_ContLoss": "0.00111", "geom_point": "0101000020E610000045DB6B20614B5EC03D41A4D74D914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.175490069999938, 51.136837674000105 ], [ -121.175528296999985, 51.136486174000069 ], [ -121.173893638999971, 51.136416132000072 ], [ -121.174283373999984, 51.13283323800006 ], [ -121.174527181999977, 51.132843686000037 ], [ -121.174570394999961, 51.132446356000059 ], [ -121.175211410999935, 51.133266795000047 ], [ -121.175694808999978, 51.133669797000067 ], [ -121.176540220999982, 51.133970300000065 ], [ -121.177035811999957, 51.134085706000064 ], [ -121.177537111999953, 51.134094205000054 ], [ -121.178528401999955, 51.133587197000068 ], [ -121.179019407999959, 51.133468982000089 ], [ -121.179764104999961, 51.133436197000044 ], [ -121.180205420999968, 51.133362240000061 ], [ -121.180197010999976, 51.133439651000131 ], [ -121.181587754999953, 51.133499168000064 ], [ -121.181198603999931, 51.137082085000131 ], [ -121.175490069999938, 51.136837674000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "175", "sL_BldgLoss": "175", "sL_StrLoss": "175", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E109DE0CCE4C5EC032BCA31092904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.19585849799995, 51.131528734000064 ], [ -121.195987826999939, 51.13033427500006 ], [ -121.195600615999979, 51.13032830000008 ], [ -121.195590105999912, 51.130597935000011 ], [ -121.194304523999989, 51.13057808800005 ], [ -121.19429400599995, 51.130847722000105 ], [ -121.193436947999942, 51.130834482000061 ], [ -121.193426424000023, 51.131104117000064 ], [ -121.192140828999953, 51.131084246000093 ], [ -121.192151360999958, 51.130814611000112 ], [ -121.191722831999982, 51.130807984000029 ], [ -121.191754431999968, 51.129999080000076 ], [ -121.190897389999975, 51.129985822000037 ], [ -121.19095007699994, 51.128637651000112 ], [ -121.191378584999924, 51.128644280000039 ], [ -121.191385116999953, 51.128477099000108 ], [ -121.191710965999931, 51.128379623000079 ], [ -121.191817625999974, 51.128381274000063 ], [ -121.191818951999963, 51.128347320000039 ], [ -121.19256850799999, 51.128123087000056 ], [ -121.19268516599999, 51.12812489100007 ], [ -121.192686615999932, 51.128087753000031 ], [ -121.19299898499996, 51.127994305000101 ], [ -121.194042277999941, 51.127991494000057 ], [ -121.19440412299997, 51.128024731000039 ], [ -121.194399182000026, 51.128151374000019 ], [ -121.195088950999931, 51.128162023000087 ], [ -121.19509692699998, 51.128088363000103 ], [ -121.196290784000013, 51.128198008000084 ], [ -121.197498772999921, 51.128414496000119 ], [ -121.199391202999919, 51.128253486000069 ], [ -121.202099985999936, 51.12801709700004 ], [ -121.203871704999983, 51.127675302000021 ], [ -121.204637910999921, 51.127463110000079 ], [ -121.205354114999949, 51.127032994000025 ], [ -121.205843998999981, 51.126968913000034 ], [ -121.206670101, 51.127017303000102 ], [ -121.207113502, 51.126987407000065 ], [ -121.207865486999964, 51.126792290000061 ], [ -121.208897485999913, 51.126736808000068 ], [ -121.208947385000016, 51.126720642000095 ], [ -121.208691408999982, 51.129091353000028 ], [ -121.206058782999918, 51.128979298000019 ], [ -121.205838001999936, 51.131022716000068 ], [ -121.204943503999985, 51.130984628000121 ], [ -121.204922871999941, 51.131175538000143 ], [ -121.204010504999971, 51.131136681000051 ], [ -121.203983742999924, 51.131384259000107 ], [ -121.20328754799999, 51.13135460500007 ], [ -121.203270620999945, 51.131511176000096 ], [ -121.202695632999962, 51.131486681000112 ], [ -121.202681901999966, 51.131613689000062 ], [ -121.202216557999975, 51.13159386300002 ], [ -121.202201187999961, 51.131736001000078 ], [ -121.201573260999936, 51.131709245000053 ], [ -121.201566461999974, 51.13177211600005 ], [ -121.19585849799995, 51.131528734000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "152", "sL_BldgLoss": "152", "sL_StrLoss": "152", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED66C20636335EC013B06719F3AA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.797705368999971, 51.338259387000086 ], [ -120.79780704699999, 51.337396632000065 ], [ -120.796700995999984, 51.337345761000087 ], [ -120.796831297999987, 51.336240309000083 ], [ -120.796158252999987, 51.336209349000121 ], [ -120.796580338999917, 51.332628565000086 ], [ -120.802311966999966, 51.332892094000087 ], [ -120.802239119999925, 51.333510817000061 ], [ -120.803500268999983, 51.33356876300013 ], [ -120.803457791999946, 51.33392962500011 ], [ -120.804196169999926, 51.333963544000035 ], [ -120.803774689999969, 51.337544351000098 ], [ -120.803554118999941, 51.337534219000119 ], [ -120.803437732999939, 51.338522858000083 ], [ -120.797705368999971, 51.338259387000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999999706897524", "sL_AssetLoss": "75.4002501", "sL_BldgLoss": "75.400228", "sL_StrLoss": "75.4", "sL_NStrLoss": "0.000228", "sL_ContLoss": "0.0000221", "geom_point": "0101000020E6100000FA4EE517125D5EC090FC1C7A66824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.451565106999979, 51.016844949000124 ], [ -121.457259736999944, 51.017075416000054 ], [ -121.45689377599993, 51.020659713000065 ], [ -121.451198689999941, 51.020429228000118 ], [ -121.451565106999979, 51.016844949000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63", "sL_BldgLoss": "63", "sL_StrLoss": "63", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB142E168C3B5EC007BCE54DF2A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.925880548999928, 51.26664768800007 ], [ -120.926094928999987, 51.264779319000098 ], [ -120.926282519999944, 51.264872299000082 ], [ -120.927064289999976, 51.265047396000092 ], [ -120.927859405999939, 51.26490930900016 ], [ -120.92909051099997, 51.264309705000102 ], [ -120.929510318999917, 51.264182907000077 ], [ -120.93070920599996, 51.264014888000133 ], [ -120.932307188999928, 51.262725347000057 ], [ -120.933886465999962, 51.262796204000097 ], [ -120.933476147999954, 51.266377752000089 ], [ -120.93267846699996, 51.266341965000088 ], [ -120.932672014, 51.266398270000082 ], [ -120.932188734999968, 51.266376585000089 ], [ -120.932159007999957, 51.266635982000111 ], [ -120.931637877999918, 51.266612597000112 ], [ -120.931604397999976, 51.266904694000097 ], [ -120.925880548999928, 51.26664768800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999929860256349", "sL_AssetLoss": "178.78594", "sL_BldgLoss": "178.7734", "sL_StrLoss": "178.7", "sL_NStrLoss": "0.0734", "sL_ContLoss": "0.01254", "geom_point": "0101000020E610000040FDE3946B535EC027A7D13F9C8A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.303692233999982, 51.08168094400002 ], [ -121.303707904999953, 51.081532709000051 ], [ -121.302893846999936, 51.081498716000112 ], [ -121.302925239, 51.081201825000015 ], [ -121.302974220999914, 51.081186301000038 ], [ -121.304202186999987, 51.080404408000064 ], [ -121.305013807999927, 51.080065394000037 ], [ -121.306615998999973, 51.079593990000021 ], [ -121.307318594999941, 51.079549903000022 ], [ -121.309532013999956, 51.079132591000118 ], [ -121.310461796999959, 51.07880953500004 ], [ -121.310131848999958, 51.081935156000071 ], [ -121.309395906999953, 51.081904468000047 ], [ -121.309361833, 51.082227173000071 ], [ -121.304467104999901, 51.082022947000027 ], [ -121.304120891999943, 51.085298191000071 ], [ -121.30190228399999, 51.085205552000069 ], [ -121.301763963999974, 51.086513344000153 ], [ -121.296061265, 51.086275023000077 ], [ -121.296128584999977, 51.085639301000079 ], [ -121.296843098999958, 51.085260886000086 ], [ -121.297580890999939, 51.08459730900006 ], [ -121.298573517999984, 51.084000501000091 ], [ -121.299860516999942, 51.082778493000042 ], [ -121.301160525999975, 51.081969606000037 ], [ -121.301887713000028, 51.081605585000055 ], [ -121.303692233999982, 51.08168094400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "123", "sL_BldgLoss": "123", "sL_StrLoss": "123", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006E616922A44F5EC0ECE80B63838E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.245976855999942, 51.110331570000056 ], [ -121.248204170999941, 51.110425627000069 ], [ -121.247820591, 51.114008861000094 ], [ -121.247247645999934, 51.113984671 ], [ -121.247200287999974, 51.114426974000075 ], [ -121.246645070999961, 51.114403529000072 ], [ -121.246603782999912, 51.114789088000087 ], [ -121.246009950999934, 51.114764009000076 ], [ -121.245969477999921, 51.115141902000111 ], [ -121.244926766999981, 51.115097859000059 ], [ -121.24485636799993, 51.115755028000073 ], [ -121.23915022499996, 51.115513833000072 ], [ -121.239201501999958, 51.115035743000071 ], [ -121.240186493999929, 51.114208006000112 ], [ -121.240634916999952, 51.113648299000019 ], [ -121.241617906999949, 51.112997401000023 ], [ -121.242709010999974, 51.112464786000075 ], [ -121.24400381, 51.111828084000138 ], [ -121.245976855999942, 51.110331570000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "65.9", "sL_BldgLoss": "65.9", "sL_StrLoss": "65.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A23F1B56C4325EC0BDE8C81D78AC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.790305202999946, 51.349472115 ], [ -120.790406753999889, 51.348611890000043 ], [ -120.790015161999975, 51.34859386100004 ], [ -120.790437862999937, 51.345013145000109 ], [ -120.796171057999956, 51.34527698100009 ], [ -120.796091271999941, 51.345953648000069 ], [ -120.796059940999939, 51.34621936700006 ], [ -120.796451513999983, 51.34623737600004 ], [ -120.796029289000018, 51.349818110000051 ], [ -120.79029550499996, 51.349554267000073 ], [ -120.790305202999946, 51.349472115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4079333", "BldgCostT": "2813333", "sL_LossRatio": "1", "sL_AssetLoss": "317.3", "sL_BldgLoss": "317.3", "sL_StrLoss": "317.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E58422407A305EC0B15CC2E353AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.750911784, 51.372118101000041 ], [ -120.75240752099991, 51.371535607000041 ], [ -120.752695990999939, 51.371505689000081 ], [ -120.75370141799999, 51.371784795000082 ], [ -120.754303404999931, 51.371841784000026 ], [ -120.754735304999897, 51.37179619200009 ], [ -120.755465086999948, 51.371566903000016 ], [ -120.756808986999957, 51.371421600000055 ], [ -120.757149495999968, 51.371239311000117 ], [ -120.757567987999948, 51.371185207000096 ], [ -120.759129690999913, 51.370369114000063 ], [ -120.760033898999936, 51.370134113000034 ], [ -120.760661188999975, 51.369642806000066 ], [ -120.761094998999937, 51.369561601000086 ], [ -120.761566880999965, 51.369336595000085 ], [ -120.761586313999942, 51.368923591000055 ], [ -120.760222001, 51.368033399000048 ], [ -120.760119179999933, 51.36747369800004 ], [ -120.759909807000014, 51.367344083000027 ], [ -120.759172883999966, 51.367158992000036 ], [ -120.759156204999968, 51.366898303000013 ], [ -120.75934909399993, 51.366767315000125 ], [ -120.759857299999936, 51.366687608000063 ], [ -120.761055418999902, 51.365945499000134 ], [ -120.762132486999946, 51.365111008000056 ], [ -120.76199588499999, 51.364659494000065 ], [ -120.761437015999945, 51.364333297000108 ], [ -120.761328976999891, 51.36416960000011 ], [ -120.761698823999936, 51.363951701000062 ], [ -120.761709702999951, 51.363755108000142 ], [ -120.76141220099997, 51.363668211000061 ], [ -120.760994273999955, 51.363705294000056 ], [ -120.761001592999932, 51.363551412000078 ], [ -120.761652397999967, 51.362853595000061 ], [ -120.761599396999927, 51.362753896000093 ], [ -120.761226992, 51.362746800000124 ], [ -120.760828679000014, 51.362954693000027 ], [ -120.7605996879999, 51.362960392000062 ], [ -120.760025494999965, 51.362661307000167 ], [ -120.759922407999966, 51.362416285000037 ], [ -120.759986804999954, 51.362238300000051 ], [ -120.760424311999941, 51.361832398000061 ], [ -120.760444192999941, 51.361688599000082 ], [ -120.760292712999913, 51.361577502000088 ], [ -120.759406601999956, 51.361470712000028 ], [ -120.759172176999982, 51.361384478000097 ], [ -120.759206454000022, 51.361095945000073 ], [ -120.759711689999989, 51.361119338 ], [ -120.75995144, 51.359100859000073 ], [ -120.762178880999969, 51.359203967000056 ], [ -120.765686281999976, 51.359366234000028 ], [ -120.765522862999944, 51.360743609000103 ], [ -120.766958635999956, 51.360810002000036 ], [ -120.766533882999937, 51.364390572000033 ], [ -120.765432455999971, 51.364339641000072 ], [ -120.765171153999944, 51.366541599000158 ], [ -120.763629697999988, 51.366470304000103 ], [ -120.763010630999958, 51.366441664000014 ], [ -120.762930963999963, 51.367112683000073 ], [ -120.762747882000014, 51.368654676000041 ], [ -120.763289122999979, 51.368679714000038 ], [ -120.763153742000014, 51.369819992000032 ], [ -120.76826633099995, 51.370056382000072 ], [ -120.767841594999965, 51.373636923000092 ], [ -120.76210488699995, 51.373371661000114 ], [ -120.76224030599991, 51.372231389000071 ], [ -120.76179593099998, 51.372210829000089 ], [ -120.760476105999942, 51.37214975400012 ], [ -120.760383220999984, 51.37293161200008 ], [ -120.760340346999925, 51.3732925 ], [ -120.759619240999911, 51.373259123000103 ], [ -120.75947442199994, 51.37325242 ], [ -120.759465809999938, 51.373324896000085 ], [ -120.759444620999957, 51.373503219000085 ], [ -120.759095195999976, 51.373487044000051 ], [ -120.7570663, 51.37339310500009 ], [ -120.757008337999935, 51.373880676000041 ], [ -120.756292166999955, 51.373847508 ], [ -120.756287507999943, 51.373886692000085 ], [ -120.755442159999959, 51.373847536000085 ], [ -120.755437370999985, 51.37388781300006 ], [ -120.754027751999928, 51.373822506000067 ], [ -120.753940544999978, 51.374555646000061 ], [ -120.751665059999979, 51.374450186000054 ], [ -120.751578279999947, 51.375179400000057 ], [ -120.75042078499996, 51.375125738000079 ], [ -120.750332365999896, 51.375868529000115 ], [ -120.748185639, 51.375768971000099 ], [ -120.74813169199993, 51.376221979000043 ], [ -120.747515984999964, 51.376193417000117 ], [ -120.747494573999987, 51.37637319400001 ], [ -120.746917171999911, 51.376346405000014 ], [ -120.746897255999954, 51.376513607000049 ], [ -120.746107113999955, 51.376476944000032 ], [ -120.746085028999971, 51.376662327000055 ], [ -120.746048555999963, 51.37666063400011 ], [ -120.745535379999978, 51.376636819000097 ], [ -120.745506816999978, 51.376876539000122 ], [ -120.745119609999932, 51.376858569000056 ], [ -120.745086413999985, 51.377137149000134 ], [ -120.739349388999969, 51.37687073700004 ], [ -120.739367669999936, 51.376717494000033 ], [ -120.739455124999921, 51.375984351000071 ], [ -120.739896617999989, 51.375791099000011 ], [ -120.740314015999957, 51.375493394000031 ], [ -120.740756321999953, 51.375268403000113 ], [ -120.741029195999914, 51.374967910000073 ], [ -120.742355802999953, 51.374003703000078 ], [ -120.7433387, 51.373923995000027 ], [ -120.745250099999936, 51.373610594000056 ], [ -120.746473110999929, 51.373255986000075 ], [ -120.748233994, 51.372543909000107 ], [ -120.749545705999935, 51.372173591000035 ], [ -120.750623588999972, 51.372139397000097 ], [ -120.750911784, 51.372118101000041 ] ], [ [ -120.762774813999911, 51.362543103000078 ], [ -120.762802294999915, 51.362236888000055 ], [ -120.762459124, 51.362222703000057 ], [ -120.762370387999965, 51.362588691000092 ], [ -120.762380790999913, 51.362642813000122 ], [ -120.762668601999906, 51.362629996000109 ], [ -120.762774813999911, 51.362543103000078 ] ], [ [ -120.762337688999978, 51.360906706000073 ], [ -120.762376413999931, 51.360395401000119 ], [ -120.762288690999966, 51.360123402000063 ], [ -120.76197730299999, 51.360044998000014 ], [ -120.761740803999928, 51.360140508000015 ], [ -120.761770786999961, 51.360409609000072 ], [ -120.762016179999932, 51.360693096000027 ], [ -120.762022908999938, 51.360838301000101 ], [ -120.762120921999966, 51.360911007 ], [ -120.762337688999978, 51.360906706000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "188.5", "sL_BldgLoss": "188.5", "sL_StrLoss": "188.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034C35FF65F425EC0BB1EB72593AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.04529780199999, 51.366487871000025 ], [ -121.045660238999972, 51.366503732000133 ], [ -121.044405303999923, 51.367359796000045 ], [ -121.042525290999933, 51.368325390000031 ], [ -121.042243000999989, 51.368564711000062 ], [ -121.042204694999938, 51.368779686000046 ], [ -121.042380403, 51.369708294000041 ], [ -121.042315287999912, 51.370569912000114 ], [ -121.041644505999955, 51.371152488000064 ], [ -121.041552780999936, 51.372249094000047 ], [ -121.041351289999952, 51.37259660200003 ], [ -121.040845189999956, 51.373019591000038 ], [ -121.039776975999928, 51.373505194000082 ], [ -121.038702906999958, 51.373720300000116 ], [ -121.037567209999921, 51.374106291000025 ], [ -121.035781883999945, 51.374149005000092 ], [ -121.033618302, 51.374382589000064 ], [ -121.031928189999988, 51.374910899000028 ], [ -121.031450098999969, 51.375308311000055 ], [ -121.031457007999975, 51.375485394000073 ], [ -121.030430132999982, 51.375440334000125 ], [ -121.030833605999959, 51.371858841000041 ], [ -121.031969882999974, 51.371908700000112 ], [ -121.03200347, 51.371610468000021 ], [ -121.03298481799996, 51.371653519000077 ], [ -121.032988625999934, 51.371619690000038 ], [ -121.034606379999943, 51.371690644000054 ], [ -121.034625460999948, 51.371521130000069 ], [ -121.034883502999918, 51.371532445000078 ], [ -121.035084548000015, 51.369746137000092 ], [ -121.038487260999901, 51.369895292000081 ], [ -121.038641567999917, 51.368523218000078 ], [ -121.038846575999955, 51.368532201000143 ], [ -121.038911392, 51.367955823000024 ], [ -121.041960454999966, 51.368089384000051 ], [ -121.041964252999932, 51.368055595000023 ], [ -121.04227800299995, 51.368069334000104 ], [ -121.042319258999981, 51.367702202000032 ], [ -121.043069251999924, 51.367735041000117 ], [ -121.043124151999976, 51.367246421000118 ], [ -121.044142278999985, 51.367290990000065 ], [ -121.044182923999969, 51.36692914500005 ], [ -121.044770949999958, 51.366954882000101 ], [ -121.044799310999977, 51.366702360000026 ], [ -121.045271393999968, 51.366723020000094 ], [ -121.04529780199999, 51.366487871000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99996374997922", "sL_AssetLoss": "86.62064", "sL_BldgLoss": "86.6175", "sL_StrLoss": "86.6", "sL_NStrLoss": "0.0175", "sL_ContLoss": "0.00314", "geom_point": "0101000020E6100000E67010216C595EC067D45B8793864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.395503957999978, 51.053383708000048 ], [ -121.395541241999965, 51.052305042000114 ], [ -121.395113392999946, 51.052299166000047 ], [ -121.39515068299994, 51.051220499000095 ], [ -121.39557852199999, 51.051226374000059 ], [ -121.395597161999945, 51.050687041000131 ], [ -121.396024995999966, 51.050692915000084 ], [ -121.396034312, 51.050423248000108 ], [ -121.396889975999969, 51.050434990000035 ], [ -121.396899286999925, 51.050165322000076 ], [ -121.397327117999922, 51.050171191000032 ], [ -121.397336426999928, 51.049901524000092 ], [ -121.398192080999934, 51.049913256000117 ], [ -121.39820138499995, 51.049643589 ], [ -121.398629209999939, 51.049649453000029 ], [ -121.398638510999916, 51.049379786000095 ], [ -121.399921980999977, 51.049397368000051 ], [ -121.399884803999953, 51.050476037000116 ], [ -121.39945697099995, 51.050470177000072 ], [ -121.399447673999944, 51.050739845000059 ], [ -121.398592002999933, 51.050728121000041 ], [ -121.398582699999906, 51.0509977890001 ], [ -121.39815486199997, 51.050991925000062 ], [ -121.398145557999953, 51.051261592000081 ], [ -121.39728987899997, 51.051249859000059 ], [ -121.397280569999964, 51.051519525000082 ], [ -121.396852727999914, 51.051513657000122 ], [ -121.396834100999939, 51.052052991000039 ], [ -121.397261948999954, 51.052058860000109 ], [ -121.397252637999884, 51.05232852700005 ], [ -121.398108338000014, 51.052340260000072 ], [ -121.398080419999957, 51.05314926100003 ], [ -121.39722470699995, 51.053137528000093 ], [ -121.397215394999947, 51.053407195000055 ], [ -121.395503957999978, 51.053383708000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.1", "sL_BldgLoss": "55.1", "sL_StrLoss": "55.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000858B687D42375EC0F0D5D86FB7B24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.860771837999934, 51.394302490000058 ], [ -120.866511850999956, 51.394562756 ], [ -120.866109826999931, 51.398014925999988 ], [ -120.866094845999953, 51.398143573000034 ], [ -120.860354369, 51.397883286000067 ], [ -120.860738367999957, 51.394589604000039 ], [ -120.860771837999934, 51.394302490000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999981539375103", "sL_AssetLoss": "78.00386", "sL_BldgLoss": "78.00242", "sL_StrLoss": "78", "sL_NStrLoss": "0.00242", "sL_ContLoss": "0.00144", "geom_point": "0101000020E6100000D0E9609AF5485EC0D146095545924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.137332287, 51.140826283000074 ], [ -121.143041123, 51.141072625000078 ], [ -121.142648793999939, 51.144655378000088 ], [ -121.136939501999933, 51.144409018000054 ], [ -121.137332287, 51.140826283000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "54.5", "sL_BldgLoss": "54.5", "sL_StrLoss": "54.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B805282F82E5EC0C30AF99876B04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.728456995000016, 51.378169510000092 ], [ -120.72855639499997, 51.377595603000067 ], [ -120.72911391099997, 51.377642586000036 ], [ -120.729345114999958, 51.377898903000123 ], [ -120.729714614999949, 51.377995807000076 ], [ -120.730146287999929, 51.377725199000032 ], [ -120.731093776999913, 51.377708096000049 ], [ -120.731917997, 51.377598407000093 ], [ -120.73253771499999, 51.377861892000055 ], [ -120.73289739099999, 51.378165307000117 ], [ -120.733301709999978, 51.378128196000127 ], [ -120.733563902999919, 51.37773800100004 ], [ -120.73389019199999, 51.377528591000058 ], [ -120.73509898399999, 51.377497298000058 ], [ -120.737230822999933, 51.377125606000085 ], [ -120.738458499999965, 51.376420592000052 ], [ -120.738746697999929, 51.376294445000056 ], [ -120.738670927999962, 51.376929535000052 ], [ -120.73834827, 51.379633802000122 ], [ -120.735359357, 51.379494871000126 ], [ -120.735283567999915, 51.380129672000088 ], [ -120.732579942999948, 51.380003934000065 ], [ -120.731950012999988, 51.379974628000063 ], [ -120.73194721499999, 51.379998051000051 ], [ -120.729510807999986, 51.379884671000092 ], [ -120.729576604999949, 51.379612289000136 ], [ -120.728941497999969, 51.37912229500008 ], [ -120.728603998000011, 51.378675102000052 ], [ -120.728456995000016, 51.378169510000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.3", "sL_BldgLoss": "55.3", "sL_StrLoss": "55.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF032C87502A5EC0AA3CCB3DEEA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.663020986, 51.258849311000034 ], [ -120.662392505, 51.2587823100001 ], [ -120.661146300999988, 51.258776593000064 ], [ -120.660679689999981, 51.258641293000025 ], [ -120.660066516999962, 51.258332302000056 ], [ -120.658249090999988, 51.25797199900007 ], [ -120.658054094999954, 51.257894446000073 ], [ -120.658303244999971, 51.255831874000066 ], [ -120.664024103999978, 51.256102420000069 ], [ -120.663665180999914, 51.259076872000044 ], [ -120.663020986, 51.258849311000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999963328649732", "sL_AssetLoss": "91.62466", "sL_BldgLoss": "91.6213", "sL_StrLoss": "91.6", "sL_NStrLoss": "0.0213", "sL_ContLoss": "0.00336", "geom_point": "0101000020E6100000512766DE265D5EC07DDA7614C67B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.458305044999975, 50.970589612000033 ], [ -121.458472125999961, 50.968950809000056 ], [ -121.45632968699995, 50.968864062000044 ], [ -121.45648355499999, 50.967355471000097 ], [ -121.451900035999941, 50.967169746000174 ], [ -121.452265958999959, 50.963585253000069 ], [ -121.453111776999904, 50.963619540000103 ], [ -121.453112611999956, 50.963620152000054 ], [ -121.453410395999967, 50.963838384000091 ], [ -121.45387402099999, 50.964262107000124 ], [ -121.454311098999952, 50.964778297000073 ], [ -121.454602098999942, 50.965200414000073 ], [ -121.454814592999924, 50.965452423000087 ], [ -121.45521100399999, 50.965922493000114 ], [ -121.45559911399999, 50.966275602000117 ], [ -121.45600781399996, 50.966580102000137 ], [ -121.45645179199991, 50.96680511200001 ], [ -121.456546499999916, 50.966853792000116 ], [ -121.456725294999941, 50.966945747000111 ], [ -121.45673668699996, 50.966951602000016 ], [ -121.457003086999961, 50.967041607000056 ], [ -121.45785583299994, 50.967334277000148 ], [ -121.458241537999982, 50.967429968000033 ], [ -121.459129408999942, 50.967573059000131 ], [ -121.459192511999959, 50.968089366000058 ], [ -121.4593874, 50.968612415000088 ], [ -121.459505291999903, 50.968928719000054 ], [ -121.459559898999984, 50.969075236000023 ], [ -121.459865313999927, 50.969894699000086 ], [ -121.459861744999955, 50.969946252000042 ], [ -121.459860489999926, 50.969964219000076 ], [ -121.459850380999967, 50.97011000599999 ], [ -121.459665790999935, 50.970644687000039 ], [ -121.458305044999975, 50.970589612000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999942566239789", "sL_AssetLoss": "86.53447", "sL_BldgLoss": "86.5295", "sL_StrLoss": "86.5", "sL_NStrLoss": "0.0295", "sL_ContLoss": "0.00497", "geom_point": "0101000020E610000063A110E0784E5EC0F081E353FCA54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.222692440999964, 51.298389223000079 ], [ -121.222855936999935, 51.296876650000037 ], [ -121.223003494999958, 51.295511417000057 ], [ -121.223646921999915, 51.29553860500009 ], [ -121.223654170999936, 51.295471532000093 ], [ -121.22429667599998, 51.295498678000122 ], [ -121.224361174999927, 51.294901748000072 ], [ -121.23009035799997, 51.295143644000099 ], [ -121.229921683999947, 51.296706558000039 ], [ -121.229802808000017, 51.296673400000032 ], [ -121.229254399999931, 51.296746107000082 ], [ -121.228898900000019, 51.297028090000062 ], [ -121.228820802999962, 51.297576410000055 ], [ -121.228908303999916, 51.297909585000127 ], [ -121.229202913999984, 51.298463695000059 ], [ -121.229559981999955, 51.298513492000026 ], [ -121.2297353299999, 51.298433168000052 ], [ -121.229708096999957, 51.298685474000116 ], [ -121.229707259999913, 51.298693227000079 ], [ -121.229609196999917, 51.298702889000019 ], [ -121.229569090999988, 51.298720434000067 ], [ -121.229061155999943, 51.298698999000081 ], [ -121.229026579999982, 51.299019274000074 ], [ -121.22899671499998, 51.299295930000071 ], [ -121.228901274999885, 51.299291903000018 ], [ -121.228679992999972, 51.298976400000086 ], [ -121.227227102999962, 51.29757920600008 ], [ -121.22648630099998, 51.2974781120001 ], [ -121.225608902999937, 51.297527895 ], [ -121.224942415999948, 51.297705997000094 ], [ -121.224909007999926, 51.297831293000037 ], [ -121.22510378799997, 51.297996492000017 ], [ -121.225135901999977, 51.298294208000065 ], [ -121.224599902999941, 51.298752792000101 ], [ -121.224542411999963, 51.29917429500005 ], [ -121.224542694999968, 51.299175254000033 ], [ -121.222616271999968, 51.299093862000056 ], [ -121.222692440999964, 51.298389223000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999992316836645", "sL_AssetLoss": "79.003917", "sL_BldgLoss": "79.00331", "sL_StrLoss": "79", "sL_NStrLoss": "0.00331", "sL_ContLoss": "0.000607", "geom_point": "0101000020E6100000F0B6B9CE923E5EC092F249DD04AB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.975047697999941, 51.334167955000048 ], [ -120.980780568999975, 51.334422456000013 ], [ -120.980373384999922, 51.338003907000065 ], [ -120.97464005099999, 51.337749387000038 ], [ -120.975047697999941, 51.334167955000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E265D9D59C3F5EC0B9B4D0845CAF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.991310316999929, 51.371744581000051 ], [ -120.991321741999954, 51.371643948000042 ], [ -120.990440393999947, 51.371604957000038 ], [ -120.990847072999912, 51.368023593000025 ], [ -120.996584427999906, 51.368277286000065 ], [ -120.996573013999949, 51.368377920000071 ], [ -120.997454303999973, 51.368416863000029 ], [ -120.997048158000027, 51.371998249000086 ], [ -120.991310316999929, 51.371744581000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999974641601298", "sL_AssetLoss": "82.8128", "sL_BldgLoss": "82.8107", "sL_StrLoss": "82.8", "sL_NStrLoss": "0.0107", "sL_ContLoss": "0.0021", "geom_point": "0101000020E6100000794FED25B0575EC0CAEF7E268C874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.367463206999943, 51.057055243000043 ], [ -121.373162539999981, 51.057289958000091 ], [ -121.372789477999959, 51.060873819000079 ], [ -121.36708968799995, 51.060639086000045 ], [ -121.367463206999943, 51.057055243000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.8", "sL_BldgLoss": "52.8", "sL_StrLoss": "52.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E11FBE6531295EC0D4C21B889BA24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.642367185999959, 51.271671079000129 ], [ -120.642433157999932, 51.271126731000088 ], [ -120.64100867599997, 51.271059143000116 ], [ -120.641042477999946, 51.270780298000069 ], [ -120.639740552999925, 51.270718509000083 ], [ -120.640031451999974, 51.268319291000061 ], [ -120.640852799999919, 51.268531008000075 ], [ -120.642150091, 51.268674907000012 ], [ -120.64292322099999, 51.268951203000071 ], [ -120.644610798999977, 51.26934429900011 ], [ -120.64713509099991, 51.270456615000079 ], [ -120.647614392999955, 51.270601902000116 ], [ -120.648248829999957, 51.270630420000025 ], [ -120.64808999399996, 51.271942425000113 ], [ -120.642367185999959, 51.271671079000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "67", "sL_BldgLoss": "67", "sL_StrLoss": "67", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000281B830CEC395EC008379D8D2AA24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.902161015999951, 51.268716541000053 ], [ -120.902573887999964, 51.265135115000113 ], [ -120.908297405999932, 51.265393301000131 ], [ -120.908047484999926, 51.267563726000098 ], [ -120.907985791999977, 51.267522707000076 ], [ -120.907413496999979, 51.267504189000121 ], [ -120.90710600599999, 51.267327595000054 ], [ -120.906857115999912, 51.267421596000091 ], [ -120.906835808999972, 51.267583909000059 ], [ -120.907018212999972, 51.267667992000099 ], [ -120.907491386999965, 51.267676496000021 ], [ -120.907526990999955, 51.267838902000058 ], [ -120.907033800999926, 51.268280386000114 ], [ -120.906288687999947, 51.268301808000061 ], [ -120.906098687999958, 51.268380112000052 ], [ -120.905963715, 51.268493991000035 ], [ -120.90589431699999, 51.26888498100012 ], [ -120.902161015999951, 51.268716541000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.868535419382877", "sL_AssetLoss": "0.009204", "sL_BldgLoss": "0.007994", "sL_StrLoss": "0.000324", "sL_NStrLoss": "0.00767", "sL_ContLoss": "0.00121", "geom_point": "0101000020E61000009EC70F321C5C5EC0FD0B4E8ECC844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.436556227999972, 51.035584833000016 ], [ -121.442253176999941, 51.035816055000126 ], [ -121.441885853999977, 51.039400228000069 ], [ -121.436188449999989, 51.039168989000046 ], [ -121.436556227999972, 51.035584833000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999785187799803", "sL_AssetLoss": "211.3474", "sL_BldgLoss": "211.302", "sL_StrLoss": "211", "sL_NStrLoss": "0.302", "sL_ContLoss": "0.0454", "geom_point": "0101000020E610000063C9E21FB2615EC02C4875329F984940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.527202194999944, 51.195679457000047 ], [ -121.527279834999931, 51.19491028400008 ], [ -121.526171511999962, 51.194866330000046 ], [ -121.526246184999977, 51.194126707000031 ], [ -121.525421936999948, 51.194094011000068 ], [ -121.525462515999934, 51.193692149000064 ], [ -121.524820942999938, 51.19366669500009 ], [ -121.524865328999937, 51.193227178000029 ], [ -121.524338756999981, 51.193206284000027 ], [ -121.524502560999963, 51.191584391000042 ], [ -121.522167991999979, 51.191491728000109 ], [ -121.522530089999975, 51.187907886000069 ], [ -121.523763321999979, 51.187956841000108 ], [ -121.524175314999937, 51.18833210100005 ], [ -121.52564282299997, 51.189648850000083 ], [ -121.527581779999963, 51.191388496000116 ], [ -121.529147018999979, 51.192792670000117 ], [ -121.529591540999888, 51.193191471000063 ], [ -121.529988886999931, 51.193547898000126 ], [ -121.531595254999971, 51.194994647000108 ], [ -121.53177028099999, 51.195152302000089 ], [ -121.532658903999973, 51.195895702 ], [ -121.530172254999968, 51.195797191000096 ], [ -121.527202194999944, 51.195679457000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "65.9", "sL_BldgLoss": "65.9", "sL_StrLoss": "65.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D98D2549E3505EC02C64F028FC8B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.261085870999921, 51.095635054000084 ], [ -121.261393324999972, 51.092753711000071 ], [ -121.262226637999973, 51.09278880700009 ], [ -121.262284016999956, 51.092250931000081 ], [ -121.267987299999916, 51.092490960000063 ], [ -121.267956549999937, 51.092779554000089 ], [ -121.267232603, 51.093170995000023 ], [ -121.266755796999959, 51.093309111000103 ], [ -121.265691186999973, 51.093948599000029 ], [ -121.26523131, 51.094391505000047 ], [ -121.264761613999909, 51.095078006000051 ], [ -121.263786209000017, 51.095207595000012 ], [ -121.262819708, 51.09507518700012 ], [ -121.262535993999933, 51.09503529300008 ], [ -121.262062599999965, 51.095090804000108 ], [ -121.261085870999921, 51.095635054000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999797668546043", "sL_AssetLoss": "114.1691", "sL_BldgLoss": "114.146", "sL_StrLoss": "114", "sL_NStrLoss": "0.146", "sL_ContLoss": "0.0231", "geom_point": "0101000020E6100000D834C6B9935D5EC0B93953F02D7E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.459675435999941, 50.983789372000061 ], [ -121.46392787299996, 50.98396132500006 ], [ -121.464108388999961, 50.984391315000046 ], [ -121.46429220899995, 50.984675907000089 ], [ -121.464577757999933, 50.985022424000114 ], [ -121.464715595999962, 50.985189706000021 ], [ -121.464884220999949, 50.985497902000105 ], [ -121.46513266299999, 50.986309622000128 ], [ -121.46500084899999, 50.987603891000091 ], [ -121.459309943, 50.987373808000079 ], [ -121.459675435999941, 50.983789372000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999904579398163", "sL_AssetLoss": "206.13997", "sL_BldgLoss": "206.1203", "sL_StrLoss": "206", "sL_NStrLoss": "0.1203", "sL_ContLoss": "0.01967", "geom_point": "0101000020E61000005B6BBD1914625EC0983E6CD0B4994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.53233007599999, 51.204401947000072 ], [ -121.53237746899994, 51.203931992000086 ], [ -121.531937510999953, 51.203914569000098 ], [ -121.53219917199999, 51.2013199370001 ], [ -121.528878880999926, 51.201188391000052 ], [ -121.528925319999985, 51.200728223000056 ], [ -121.529240516999948, 51.197604565000091 ], [ -121.529588366999974, 51.197618350000049 ], [ -121.529660540999913, 51.196902973000071 ], [ -121.530724188999912, 51.196945120000088 ], [ -121.531777239999897, 51.196986838000022 ], [ -121.531805960999975, 51.196702023000036 ], [ -121.533613162999956, 51.196773596000114 ], [ -121.534260505999939, 51.197400804000146 ], [ -121.534475716999935, 51.197686291000089 ], [ -121.534833814999942, 51.19826359400011 ], [ -121.534997800000014, 51.198729797000055 ], [ -121.53513871, 51.199554841000129 ], [ -121.535214238999956, 51.199997294000127 ], [ -121.535273081999918, 51.200341902000019 ], [ -121.534789702999916, 51.201761531000038 ], [ -121.532705469999939, 51.203609543000027 ], [ -121.533189415999971, 51.204816038000089 ], [ -121.533192116999928, 51.204822748000034 ], [ -121.534775587999931, 51.205296190000062 ], [ -121.535864094, 51.205445792000027 ], [ -121.535741145999978, 51.205759421000025 ], [ -121.535686277999957, 51.20589929300008 ], [ -121.535325597999986, 51.206486799000075 ], [ -121.534808151000021, 51.20701637500008 ], [ -121.532077309999934, 51.206908267000109 ], [ -121.53233007599999, 51.204401947000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999954620589696", "sL_AssetLoss": "256.28363", "sL_BldgLoss": "256.272", "sL_StrLoss": "256.2", "sL_NStrLoss": "0.072", "sL_ContLoss": "0.01163", "geom_point": "0101000020E61000005D635DFD145B5EC092FB67179D854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.419033547999931, 51.043384701000065 ], [ -121.419282946999942, 51.040963636000107 ], [ -121.419793560999892, 51.040984448000096 ], [ -121.419802429999933, 51.040898348000098 ], [ -121.425499970999951, 51.041130417000076 ], [ -121.42549803, 51.041149280000056 ], [ -121.427210411999937, 51.041218971000035 ], [ -121.427197778999968, 51.04134181900006 ], [ -121.429400143999942, 51.041431413000105 ], [ -121.429031740999989, 51.045015521000046 ], [ -121.427807258999962, 51.044965714000092 ], [ -121.427756511999974, 51.045459250000079 ], [ -121.424711815999956, 51.045335346000115 ], [ -121.424581743999937, 51.046599422000099 ], [ -121.423257583999899, 51.04654551000003 ], [ -121.423195017999944, 51.047153355000034 ], [ -121.41749671799991, 51.046921170000097 ], [ -121.417866065999959, 51.043337107000049 ], [ -121.419033547999931, 51.043384701000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "62.2", "sL_BldgLoss": "62.2", "sL_StrLoss": "62.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D62B6C7BF3E5EC075813FBAE0B24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.977373983999925, 51.399159358000077 ], [ -120.977717373999937, 51.396145244000124 ], [ -120.97778197699995, 51.395578140000062 ], [ -120.979900028999964, 51.395672014000084 ], [ -120.983522835999977, 51.395832487000064 ], [ -120.98311530699999, 51.399413723000052 ], [ -120.979993969999896, 51.399275471000109 ], [ -120.979671787999976, 51.398941588000071 ], [ -120.97945748699999, 51.398928791000131 ], [ -120.979324584, 51.399007107000045 ], [ -120.979288497999974, 51.399244211000045 ], [ -120.977373983999925, 51.399159358000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999982404300118", "sL_AssetLoss": "236.4214", "sL_BldgLoss": "236.41724", "sL_StrLoss": "236.4", "sL_NStrLoss": "0.01724", "sL_ContLoss": "0.00416", "geom_point": "0101000020E6100000EDAF688408525EC00FD93849108C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.271561556999956, 51.097777340000036 ], [ -121.271638560999932, 51.097054155000144 ], [ -121.271391616999921, 51.097043776000064 ], [ -121.274504979999946, 51.095015294000049 ], [ -121.275412987999943, 51.09476748900007 ], [ -121.276301803999971, 51.094699185000131 ], [ -121.277212807999902, 51.094038293000075 ], [ -121.27832949, 51.093955697000133 ], [ -121.27932400899999, 51.093719289000049 ], [ -121.2812906, 51.093019988000066 ], [ -121.282405724999961, 51.092649705000071 ], [ -121.28396071099999, 51.092303701000105 ], [ -121.284861591999942, 51.091866413000012 ], [ -121.285523182999981, 51.091714005 ], [ -121.287385995999912, 51.090771213000096 ], [ -121.288379987000027, 51.090551905000012 ], [ -121.289540699999989, 51.089704512000026 ], [ -121.29052200299999, 51.089378287000088 ], [ -121.290846417999916, 51.089103503000082 ], [ -121.291043758999976, 51.089017706000028 ], [ -121.291154191999922, 51.089022328000041 ], [ -121.290774255999935, 51.092605792000022 ], [ -121.289358501999942, 51.092546522000092 ], [ -121.289268238, 51.093397525000036 ], [ -121.2880325779999, 51.093345780000071 ], [ -121.287966915999931, 51.093964655000072 ], [ -121.286562345999954, 51.09390582100005 ], [ -121.286478895999949, 51.094692088000102 ], [ -121.28589016399998, 51.094667423000068 ], [ -121.285882671999929, 51.094738002000057 ], [ -121.285284264, 51.094712929000067 ], [ -121.285263457999932, 51.09490891700009 ], [ -121.284685118, 51.094884681000082 ], [ -121.284661742999958, 51.095104830000054 ], [ -121.284068448999946, 51.095079964 ], [ -121.284053222999944, 51.095223344000026 ], [ -121.283397345999987, 51.095195851000014 ], [ -121.283375604999947, 51.095400560000066 ], [ -121.282740133999951, 51.095373919000103 ], [ -121.282713690999955, 51.095622875000103 ], [ -121.281975365999955, 51.095591918000125 ], [ -121.281949668999943, 51.09583379300004 ], [ -121.281103298999952, 51.095798299000094 ], [ -121.281072746999939, 51.096085814000091 ], [ -121.279950876999962, 51.096038756000034 ], [ -121.279918311999936, 51.096345140000082 ], [ -121.278519046000014, 51.096286431000081 ], [ -121.278465976999939, 51.096785574000123 ], [ -121.278029807999971, 51.096767270000058 ], [ -121.277896526999911, 51.098020684000026 ], [ -121.277268001999929, 51.097994306000011 ], [ -121.2772656, 51.098016899000122 ], [ -121.271561556999956, 51.097777340000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "125.6", "sL_BldgLoss": "125.6", "sL_StrLoss": "125.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BE484E814295EC044A31A7A34B64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.642069142999986, 51.42694510900003 ], [ -120.642188009000037, 51.425967972000088 ], [ -120.642028010999965, 51.425960409000027 ], [ -120.642080041999947, 51.425532681000043 ], [ -120.641985439999985, 51.425528208000046 ], [ -120.642056682999936, 51.424942549000015 ], [ -120.636796502999971, 51.424693768000054 ], [ -120.637232360000013, 51.421113909000063 ], [ -120.638100339999966, 51.421154977000171 ], [ -120.638125930999976, 51.420944730000045 ], [ -120.643868069999911, 51.421216249000096 ], [ -120.643771290999965, 51.422012160000101 ], [ -120.648163179999969, 51.422219634000079 ], [ -120.648111210999943, 51.422647366000021 ], [ -120.648205806999954, 51.422651833000117 ], [ -120.648148008999911, 51.423127547000085 ], [ -120.647651501999945, 51.422936707000098 ], [ -120.647104711999987, 51.422942391000042 ], [ -120.646724997999939, 51.423052089000116 ], [ -120.645906004999958, 51.423601790000063 ], [ -120.645308206, 51.423769893000049 ], [ -120.645343894999897, 51.423888089000108 ], [ -120.645691796999941, 51.424120208000076 ], [ -120.645764682, 51.424382298000069 ], [ -120.645753305999918, 51.425424811000035 ], [ -120.64534257899993, 51.425874796000116 ], [ -120.644096605999934, 51.426605511000062 ], [ -120.644164543, 51.427044137000102 ], [ -120.642069142999986, 51.42694510900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.3", "sL_BldgLoss": "49.3", "sL_StrLoss": "49.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BADF5F0C7E285EC02F67F84746A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.631403066999937, 51.268919186000105 ], [ -120.631456149999934, 51.268482057000043 ], [ -120.630234156999933, 51.268423955000031 ], [ -120.630279706999914, 51.268048948000043 ], [ -120.628460122999925, 51.26796240700007 ], [ -120.62862427599994, 51.266611337000043 ], [ -120.62955387599996, 51.266602693000017 ], [ -120.630177703999948, 51.26646309800006 ], [ -120.630915791999897, 51.266055794000124 ], [ -120.631389284999941, 51.266055793000127 ], [ -120.631870206999935, 51.26617399800012 ], [ -120.635679397999979, 51.267653696000096 ], [ -120.636695184999923, 51.267971289000066 ], [ -120.637254610999904, 51.268126359000071 ], [ -120.637125452999896, 51.269191087000074 ], [ -120.631403066999937, 51.268919186000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.4", "sL_BldgLoss": "49.4", "sL_StrLoss": "49.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F71BD41BC1315EC0980E42E584AE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.774755751999962, 51.361508011000048 ], [ -120.780490995000022, 51.361772636000062 ], [ -120.780067328, 51.365353253000066 ], [ -120.774331623999942, 51.365088607000168 ], [ -120.774755751999962, 51.361508011000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "230.7", "sL_BldgLoss": "230.7", "sL_StrLoss": "230.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040CC3537AC5D5EC03441DCEE48804940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.46246802, 51.000625200000044 ], [ -121.46279768899997, 50.997390875000029 ], [ -121.468352178999936, 50.997615219000089 ], [ -121.468471736999945, 50.997799126000096 ], [ -121.468467813999922, 50.997837654000072 ], [ -121.468497565999925, 50.997838855000047 ], [ -121.468653696999951, 50.99807901700008 ], [ -121.46866086199995, 50.998124512000089 ], [ -121.468700782999946, 50.998377762000047 ], [ -121.46893330199994, 50.99837521700011 ], [ -121.468621028999962, 51.001442975000032 ], [ -121.467220922999928, 51.00138646000007 ], [ -121.466913633999951, 51.004403909000111 ], [ -121.463694009000037, 51.004273883000096 ], [ -121.463411741999948, 51.007043286000091 ], [ -121.457718361999952, 51.006813129000051 ], [ -121.458084141999947, 51.003228775000132 ], [ -121.461303674999954, 51.003358963 ], [ -121.461586050999955, 51.000589552000079 ], [ -121.46246802, 51.000625200000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999967750531496", "sL_AssetLoss": "173.33619", "sL_BldgLoss": "173.3306", "sL_StrLoss": "173.3", "sL_NStrLoss": "0.0306", "sL_ContLoss": "0.00559", "geom_point": "0101000020E6100000C78C0994C15B5EC002A3C32AFBA34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.434036237999976, 51.278229270000089 ], [ -121.439646727999957, 51.278455811000043 ], [ -121.439630595, 51.278487809000111 ], [ -121.439296559999946, 51.278797823000055 ], [ -121.439105804999912, 51.278974898000037 ], [ -121.438647825999951, 51.279310139000067 ], [ -121.438494912999957, 51.279422090000061 ], [ -121.435808199999968, 51.28138871600008 ], [ -121.435270693999882, 51.28178213700005 ], [ -121.433281979999919, 51.283237634000052 ], [ -121.431190171999972, 51.284768439000104 ], [ -121.429652489999953, 51.28470627200003 ], [ -121.430022835999964, 51.281123081000082 ], [ -121.430459000999974, 51.281140717 ], [ -121.430493734999942, 51.280804591000077 ], [ -121.431319374999973, 51.280837971000039 ], [ -121.431394636999954, 51.280109511000049 ], [ -121.432176923999947, 51.280141132000026 ], [ -121.432245438999956, 51.279477831000072 ], [ -121.433900413999964, 51.279544709000099 ], [ -121.434036237999976, 51.278229270000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999965890873535", "sL_AssetLoss": "102.02548", "sL_BldgLoss": "102.022", "sL_StrLoss": "102", "sL_NStrLoss": "0.022", "sL_ContLoss": "0.00348", "geom_point": "0101000020E61000008589D4EE36465EC00425FDA477874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.095959787999959, 51.057662605000068 ], [ -121.096675995999945, 51.057242510000066 ], [ -121.097208726999938, 51.057486005000129 ], [ -121.097423895999924, 51.057426200000116 ], [ -121.097444201999977, 51.05728229700005 ], [ -121.09761800699999, 51.05719549100008 ], [ -121.097860786999945, 51.057226795000062 ], [ -121.098812311999936, 51.057691109000118 ], [ -121.099058198999913, 51.057597093000048 ], [ -121.09927319799999, 51.057249604000035 ], [ -121.099875572999935, 51.057247816000043 ], [ -121.099647848999936, 51.059313169000085 ], [ -121.093949740999975, 51.059064610000028 ], [ -121.094094548999948, 51.057752812000075 ], [ -121.094499388999935, 51.05775659200004 ], [ -121.095340791999888, 51.057779403000083 ], [ -121.095959787999959, 51.057662605000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D19F89F27D325EC0F756C96CB5AE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.786280961999978, 51.36298928300004 ], [ -120.792016466999954, 51.363253325000066 ], [ -120.791593719999923, 51.366833980000074 ], [ -120.785857752999959, 51.366569917000078 ], [ -120.786280961999978, 51.36298928300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.9", "sL_BldgLoss": "44.9", "sL_StrLoss": "44.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006844E5364C2E5EC07C660764C8B04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.726293303999952, 51.379466991000101 ], [ -120.72705449099999, 51.379472699000075 ], [ -120.72745280099997, 51.37957099600002 ], [ -120.727716726999915, 51.379801147000101 ], [ -120.727359399999955, 51.379784509000075 ], [ -120.727234207999985, 51.380831479000044 ], [ -120.727110515999954, 51.381865860000069 ], [ -120.724229490999932, 51.381731666000036 ], [ -120.724130927999951, 51.382555428000053 ], [ -120.721263491999935, 51.382421794000088 ], [ -120.718393325999941, 51.382287958000035 ], [ -120.71847648399995, 51.381593708000111 ], [ -120.718866914000017, 51.381409594000139 ], [ -120.719293199, 51.38123730000008 ], [ -120.719917097999939, 51.381114794000055 ], [ -120.720737483999955, 51.380798598000105 ], [ -120.721258397999961, 51.380431206000061 ], [ -120.721989104999963, 51.380184801000084 ], [ -120.723341197999957, 51.379868605000048 ], [ -120.724654099999924, 51.379794598000068 ], [ -120.725324614999948, 51.379573791000041 ], [ -120.726293303999952, 51.379466991000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "171.5", "sL_BldgLoss": "171.5", "sL_StrLoss": "171.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079C21A80F02C5EC0186CD91052B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.704661938999948, 51.382626850000108 ], [ -120.704729431999979, 51.38206485400007 ], [ -120.70501171299999, 51.382289791000105 ], [ -120.706600182999949, 51.383319504000028 ], [ -120.707168680999928, 51.383447700000076 ], [ -120.70825520599999, 51.383531695000066 ], [ -120.708748589999956, 51.383748198000085 ], [ -120.70923129399992, 51.384152601000025 ], [ -120.709908414999958, 51.384427498000015 ], [ -120.710209809999967, 51.384476153000072 ], [ -120.710075097999948, 51.385598952000102 ], [ -120.707188715999948, 51.385464083000038 ], [ -120.707083511999883, 51.386340419000078 ], [ -120.702482262999979, 51.386125271000097 ], [ -120.7022623, 51.387955830000081 ], [ -120.701466883999927, 51.387918618000121 ], [ -120.701438274999973, 51.388156649000059 ], [ -120.695700083999938, 51.387888032000092 ], [ -120.696130805999971, 51.384307815000064 ], [ -120.696926151999932, 51.384345064000094 ], [ -120.696954781999935, 51.384107034000053 ], [ -120.701555794999933, 51.384322409000028 ], [ -120.701775767999962, 51.382491843000061 ], [ -120.704661938999948, 51.382626850000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "118.5", "sL_BldgLoss": "118.5", "sL_StrLoss": "118.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CE186A3D51405EC0B687180A33B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.001866324000034, 51.382793395000135 ], [ -121.001938336999956, 51.382157981 ], [ -121.00251888799994, 51.382183600000076 ], [ -121.002524112999978, 51.382137495000073 ], [ -121.003189915999926, 51.382166872000013 ], [ -121.003190182999901, 51.382164510000038 ], [ -121.006128473999979, 51.382294107000078 ], [ -121.008929445999968, 51.382417575000019 ], [ -121.008891452999961, 51.382753288000089 ], [ -121.008893470999951, 51.38275337700005 ], [ -121.008735554999959, 51.384148663000111 ], [ -121.008488119999939, 51.386334752000046 ], [ -121.007880873999952, 51.386307990000049 ], [ -121.007879291, 51.386321966000025 ], [ -121.00729198099998, 51.386296080000072 ], [ -121.007287666999957, 51.386334181000059 ], [ -121.006784488999969, 51.386312 ], [ -121.006750960999966, 51.386608092000074 ], [ -121.001011165999927, 51.386354919000084 ], [ -121.001046077999888, 51.386046950000065 ], [ -121.001417123999914, 51.382773571000023 ], [ -121.001866324000034, 51.382793395000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999952202709664", "sL_AssetLoss": "553.37865", "sL_BldgLoss": "553.3522", "sL_StrLoss": "553.2", "sL_NStrLoss": "0.1522", "sL_ContLoss": "0.02645", "geom_point": "0101000020E6100000CD5C3BACCB5F5EC095E7A840399B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.490725211999916, 51.216148638000035 ], [ -121.490831278999934, 51.215106855000101 ], [ -121.488600673999926, 51.215017700000033 ], [ -121.485162389999957, 51.214880190000031 ], [ -121.48552766799996, 51.211296556000036 ], [ -121.486220324999977, 51.211324267000052 ], [ -121.486230942999967, 51.211220072000081 ], [ -121.490701895999962, 51.211398835000082 ], [ -121.490866329999946, 51.209783579000018 ], [ -121.496585930999942, 51.210012008000035 ], [ -121.496499808999928, 51.210859084000106 ], [ -121.496635291999965, 51.210864491000109 ], [ -121.49671396, 51.210090718000089 ], [ -121.497078626999922, 51.210105272000121 ], [ -121.49708764799999, 51.210016528000089 ], [ -121.497593306999988, 51.210036707000015 ], [ -121.497604932999977, 51.209922339000052 ], [ -121.501330489999987, 51.210070939000047 ], [ -121.501438721999989, 51.20900522900012 ], [ -121.505481319999944, 51.209166334000059 ], [ -121.507158276999959, 51.20923312200005 ], [ -121.507113951999941, 51.209670137000089 ], [ -121.507492595999977, 51.209685214000039 ], [ -121.507421357999959, 51.210387610000055 ], [ -121.507549540999918, 51.210392713000047 ], [ -121.507186050999934, 51.213976422000073 ], [ -121.504959825999933, 51.213887764000056 ], [ -121.50495481199998, 51.213937169000076 ], [ -121.504699701999954, 51.213844301000123 ], [ -121.504165815999954, 51.213962508000066 ], [ -121.503742003999932, 51.213795812000065 ], [ -121.503268683999977, 51.21381719400005 ], [ -121.503208602999976, 51.213896994000059 ], [ -121.503205287999918, 51.214013690000044 ], [ -121.503895990999951, 51.214347013000108 ], [ -121.504812990999966, 51.21431279100009 ], [ -121.504912869999984, 51.214350440000047 ], [ -121.504878693999956, 51.214687175000073 ], [ -121.503341925999948, 51.214625948000105 ], [ -121.503333328999986, 51.214710612000019 ], [ -121.502402101999934, 51.214673501000085 ], [ -121.502343219999915, 51.21525333400011 ], [ -121.501661432999953, 51.215226159000117 ], [ -121.501633602999931, 51.215500151000064 ], [ -121.500477176999951, 51.215454047000051 ], [ -121.500441870999978, 51.21580157799999 ], [ -121.49652006099997, 51.215645137000088 ], [ -121.496445633999926, 51.216377072000043 ], [ -121.490725211999916, 51.216148638000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999915897173454", "sL_AssetLoss": "83.94486", "sL_BldgLoss": "83.9378", "sL_StrLoss": "83.9", "sL_NStrLoss": "0.0378", "sL_ContLoss": "0.00706", "geom_point": "0101000020E610000055A480BC704D5EC0B49487E013AD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.207640559999902, 51.350132663000082 ], [ -121.213376808999939, 51.350375390000032 ], [ -121.212988323999951, 51.353957600000079 ], [ -121.212400998999925, 51.353932761000074 ], [ -121.212371412999971, 51.354205514000029 ], [ -121.206634670999961, 51.353962736 ], [ -121.20702367199999, 51.350380548000047 ], [ -121.20761094699999, 51.350405415000075 ], [ -121.207640559999902, 51.350132663000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "52.9", "sL_BldgLoss": "52.9", "sL_StrLoss": "52.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042BE7C99452B5EC00DCD8EB789A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.673713395999954, 51.26754979800009 ], [ -120.6787138669999, 51.267785541000045 ], [ -120.678282870999936, 51.271366121000057 ], [ -120.677833310999986, 51.271344936000098 ], [ -120.677731096999977, 51.272193932000022 ], [ -120.673917356999951, 51.272014142000039 ], [ -120.673714611999969, 51.271608785000126 ], [ -120.673689703999955, 51.270942205000033 ], [ -120.674147708999953, 51.268982493000046 ], [ -120.673818205999936, 51.268147896000137 ], [ -120.673713395999954, 51.26754979800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999994101876068", "sL_AssetLoss": "76.804083", "sL_BldgLoss": "76.80363", "sL_StrLoss": "76.8", "sL_NStrLoss": "0.00363", "sL_ContLoss": "0.000453", "geom_point": "0101000020E61000002EFAAF185A4E5EC088D2A435828E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.223133438999966, 51.111632447000041 ], [ -121.228838996999926, 51.111874453000084 ], [ -121.228785768999956, 51.112369675000117 ], [ -121.227735799999948, 51.112840806000115 ], [ -121.226997603999934, 51.113495903000072 ], [ -121.226371509, 51.113782208000011 ], [ -121.225837887999944, 51.113891790000139 ], [ -121.224732417, 51.114441591000052 ], [ -121.224423313999978, 51.11465230700005 ], [ -121.224251682999949, 51.11500979900012 ], [ -121.22362689199997, 51.115306103000144 ], [ -121.222409591999977, 51.115368706 ], [ -121.22233081399996, 51.11556529100006 ], [ -121.222370598999987, 51.116017973000027 ], [ -121.221229818999944, 51.115969548000059 ], [ -121.221615559999975, 51.11238641200007 ], [ -121.222309198999938, 51.112415858000077 ], [ -121.222362155, 51.111923830000102 ], [ -121.223098718999964, 51.111955092000088 ], [ -121.223133438999966, 51.111632447000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "64.5", "sL_BldgLoss": "64.5", "sL_StrLoss": "64.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF963B3341505EC07431DD56C08C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.253619506999954, 51.100847493000053 ], [ -121.251304698999903, 51.100507105000077 ], [ -121.25107097399993, 51.100562478000079 ], [ -121.25129741799995, 51.098445084000048 ], [ -121.257001435999882, 51.09868566700009 ], [ -121.256812118999974, 51.100458043000103 ], [ -121.256486315999908, 51.100556897000082 ], [ -121.25475218099993, 51.100720694000067 ], [ -121.253619506999954, 51.100847493000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49", "sL_BldgLoss": "49", "sL_StrLoss": "49", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5FA29E9BC2D5EC0C451C1FA22B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.717048782999896, 51.382434998000043 ], [ -120.717145465, 51.38237177000012 ], [ -120.716998, 51.383602541000045 ], [ -120.716831357000018, 51.384993294 ], [ -120.713535229999962, 51.384839470000038 ], [ -120.711093482999942, 51.38472545500008 ], [ -120.711145043999963, 51.384295616000024 ], [ -120.711677791999961, 51.384075708000104 ], [ -120.712012709999939, 51.383722501000065 ], [ -120.713103099999927, 51.383481789000029 ], [ -120.71359048699999, 51.382907910000014 ], [ -120.714872682999896, 51.382823893000044 ], [ -120.715807400999921, 51.382527607000043 ], [ -120.717048782999896, 51.382434998000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "56", "sL_BldgLoss": "56", "sL_StrLoss": "56", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000749AA2AFE2345EC04BEBCAC2B2AA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.823679817999974, 51.331658798000014 ], [ -120.829411481999983, 51.331920957000108 ], [ -120.828992061999926, 51.335501865000019 ], [ -120.823259938, 51.33523968700009 ], [ -120.823679817999974, 51.331658798000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.3", "sL_BldgLoss": "61.3", "sL_StrLoss": "61.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006C6B079CB3D5EC0FEBB781EE0A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.965209080999912, 51.263415304000048 ], [ -120.965346418999914, 51.262914005000013 ], [ -120.965692597999947, 51.262857005000058 ], [ -120.966095504999913, 51.263143296000109 ], [ -120.966421484999955, 51.263247195000041 ], [ -120.967710890999967, 51.263233008000036 ], [ -120.968292215999909, 51.263302704000097 ], [ -120.968091468999958, 51.265067040000133 ], [ -120.967837346999971, 51.265055718000042 ], [ -120.967734007000018, 51.265963848000048 ], [ -120.962010069999934, 51.265708669000034 ], [ -120.962098880999918, 51.264929103000071 ], [ -120.962175680999962, 51.264926399000096 ], [ -120.963207289999943, 51.264288295000078 ], [ -120.964565113999981, 51.263745693000061 ], [ -120.965209080999912, 51.263415304000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999953156352522", "sL_AssetLoss": "90.72735", "sL_BldgLoss": "90.7231", "sL_StrLoss": "90.7", "sL_NStrLoss": "0.0231", "sL_ContLoss": "0.00425", "geom_point": "0101000020E6100000A300B45ADE455EC0828B364301A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.088975025, 51.256067466000069 ], [ -121.089002977999897, 51.255815680000048 ], [ -121.094726357999932, 51.256064436000074 ], [ -121.0947234699999, 51.256090478000075 ], [ -121.09536213799997, 51.256118218000033 ], [ -121.094964936999943, 51.25970036800009 ], [ -121.093804234999936, 51.259649950000082 ], [ -121.093779194999968, 51.259875696000066 ], [ -121.088055327999911, 51.259626892000014 ], [ -121.088453086999962, 51.256044767000098 ], [ -121.088975025, 51.256067466000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999729681731671", "sL_AssetLoss": "127.2574", "sL_BldgLoss": "127.223", "sL_StrLoss": "127", "sL_NStrLoss": "0.223", "sL_ContLoss": "0.0344", "geom_point": "0101000020E6100000A8E2C62D26545EC0906390604F514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.313476093999938, 50.635748255000046 ], [ -121.313605550999966, 50.634508142000058 ], [ -121.316282884999964, 50.63485517 ], [ -121.316189793999968, 50.635766493000126 ], [ -121.315682568999989, 50.635841135000078 ], [ -121.313476093999938, 50.635748255000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999910605227715", "sL_AssetLoss": "394.31836", "sL_BldgLoss": "394.28311", "sL_StrLoss": "394.00271", "sL_NStrLoss": "0.2804", "sL_ContLoss": "0.03525", "geom_point": "0101000020E61000003FABEDA27F425EC053746E249A614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.035095579999918, 50.763850430000055 ], [ -121.035407971, 50.761034567000131 ], [ -121.037431591999919, 50.761124559000052 ], [ -121.03743338299995, 50.76110841400007 ], [ -121.043093292999913, 50.761359919000057 ], [ -121.042804447, 50.763967583000081 ], [ -121.04139009499994, 50.763826791000028 ], [ -121.03571799099997, 50.763831100000097 ], [ -121.035095579999918, 50.763850430000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8274667", "BldgCostT": "5706667", "sL_LossRatio": "0.999838898993346", "sL_AssetLoss": "1250.7681", "sL_BldgLoss": "1250.5666", "sL_StrLoss": "1249.0166", "sL_NStrLoss": "1.55", "sL_ContLoss": "0.2015", "geom_point": "0101000020E6100000BF09E832733F5EC0AD23BB9096614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.990184227, 50.764620472000075 ], [ -120.99020733699993, 50.764081232000102 ], [ -120.989825560000014, 50.76407465000004 ], [ -120.988931977999925, 50.764059241 ], [ -120.988924892999961, 50.764224441000103 ], [ -120.988920414999924, 50.764328860000099 ], [ -120.988355596999924, 50.764319116000095 ], [ -120.987645048999966, 50.764306853000072 ], [ -120.987639412999926, 50.764438214000108 ], [ -120.987633479999886, 50.764576473000083 ], [ -120.986885614999949, 50.764563562000049 ], [ -120.985932985, 50.764547109000041 ], [ -120.985925422999955, 50.764723222000036 ], [ -120.985921406999964, 50.764816728000028 ], [ -120.98541561199994, 50.764807990000072 ], [ -120.984646030999954, 50.764794689000098 ], [ -120.984639915999978, 50.764936965000061 ], [ -120.984634444000022, 50.765064308000063 ], [ -120.983945630000036, 50.765052399000055 ], [ -120.981658555999957, 50.765012828000074 ], [ -120.981693366999934, 50.764203973000065 ], [ -120.979992893999949, 50.764174523000108 ], [ -120.980027732999986, 50.763365669000052 ], [ -120.980332252999972, 50.763370944000016 ], [ -120.982578402999934, 50.763409833000082 ], [ -120.98259000099999, 50.763140215000057 ], [ -120.986415993999984, 50.76320635700008 ], [ -120.986427568999957, 50.762936737000089 ], [ -120.990678664999962, 50.763010080000058 ], [ -120.990701767999923, 50.762470840000077 ], [ -120.989851557999927, 50.762456184000044 ], [ -120.989863112999942, 50.762186564000082 ], [ -120.989012907999964, 50.762171902 ], [ -120.989024468999958, 50.761902283000026 ], [ -120.988174269999917, 50.761887614000059 ], [ -120.988185835999928, 50.761617995000037 ], [ -120.98733564099993, 50.761603321000074 ], [ -120.987347212, 50.761333702000094 ], [ -120.98649702199999, 50.761319021000091 ], [ -120.986508598999961, 50.761049402000062 ], [ -120.986083507999965, 50.761042060000058 ], [ -120.986025617999957, 50.762390156000023 ], [ -120.984750307999931, 50.762368119 ], [ -120.98476189199999, 50.762098499000039 ], [ -120.984336793, 50.762091151000114 ], [ -120.984429489999982, 50.759934199000064 ], [ -120.984927671999955, 50.759942811000059 ], [ -120.986129814999984, 50.759963583000044 ], [ -120.986141391999936, 50.759693963000117 ], [ -120.987416630999931, 50.759715985000049 ], [ -120.987405059999944, 50.759985605000061 ], [ -120.988255225999964, 50.760000277000124 ], [ -120.988243661999945, 50.760269897000079 ], [ -120.989093831999952, 50.760284564000074 ], [ -120.989116951999932, 50.759745325000104 ], [ -120.99081727399998, 50.759774639000071 ], [ -120.990805724999944, 50.760044260000022 ], [ -120.991230807999955, 50.760051585000042 ], [ -120.991219259999923, 50.76032120500011 ], [ -120.992069433999987, 50.760335850000097 ], [ -120.992057890999931, 50.760605471000112 ], [ -120.992908068999952, 50.760620109000051 ], [ -120.992896531, 50.76088973 ], [ -120.993746716000018, 50.760904364000069 ], [ -120.99373518199998, 50.761173984000088 ], [ -120.995435560999923, 50.761203233000032 ], [ -120.995424037999925, 50.76147285400009 ], [ -120.997974627999923, 50.761516681000089 ], [ -120.997942381999948, 50.762272074000109 ], [ -120.99829247199996, 50.759139788000034 ], [ -121.000291070999964, 50.759229339000058 ], [ -121.000551791999968, 50.7594645020001 ], [ -121.001630505999984, 50.761434183000091 ], [ -121.002290622999979, 50.762254501000022 ], [ -121.002769393999955, 50.762623405000063 ], [ -121.003501786999948, 50.76297483400009 ], [ -120.997891914999926, 50.762723567000144 ], [ -120.997906310999952, 50.762594783000047 ], [ -120.994952832999957, 50.762544026000064 ], [ -120.99491784, 50.763362510000114 ], [ -120.994883668999989, 50.764161751000138 ], [ -120.994458546999908, 50.764154438000112 ], [ -120.994447013999945, 50.764424059000071 ], [ -120.993596766999971, 50.764409430000107 ], [ -120.993585232999934, 50.764679050000062 ], [ -120.992734978999948, 50.764664416000095 ], [ -120.992723438, 50.764934035000088 ], [ -120.992298310999942, 50.764926715000044 ], [ -120.992286766999939, 50.765196336000081 ], [ -120.991436506999889, 50.765181690000041 ], [ -120.991424957999953, 50.765451310000046 ], [ -120.990574691999939, 50.765436659000102 ], [ -120.990563138999974, 50.76570627800001 ], [ -120.98886260099999, 50.765676957000103 ], [ -120.988866938999948, 50.765575817000077 ], [ -120.988897290999915, 50.764868099000111 ], [ -120.989322416999983, 50.764875431000071 ], [ -120.98933397699993, 50.764605812000106 ], [ -120.990184227, 50.764620472000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999864251075912", "sL_AssetLoss": "513.4479", "sL_BldgLoss": "513.3782", "sL_StrLoss": "513", "sL_NStrLoss": "0.3782", "sL_ContLoss": "0.0697", "geom_point": "0101000020E6100000CF4CEE7F59535EC01DB51DAEB04D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.299704248999944, 50.605042445000109 ], [ -121.305345951999968, 50.60528071500012 ], [ -121.304971232999975, 50.608866214000059 ], [ -121.299329081999971, 50.60862792600004 ], [ -121.299704248999944, 50.605042445000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.999920422050732", "sL_AssetLoss": "96.383484", "sL_BldgLoss": "96.375814", "sL_StrLoss": "96.301914", "sL_NStrLoss": "0.0739", "sL_ContLoss": "0.00767", "geom_point": "0101000020E610000033CD118558505EC0F4AC20DDBA5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.255796312999948, 50.736024998000026 ], [ -121.256085693999935, 50.7332930480001 ], [ -121.254374448999954, 50.73322026500005 ], [ -121.254446601999959, 50.732539287000073 ], [ -121.253519464999926, 50.732499843 ], [ -121.253584480999933, 50.731886332000087 ], [ -121.25389932899995, 50.728915045000079 ], [ -121.257225603000023, 50.729056523000111 ], [ -121.257226119000038, 50.729093485000099 ], [ -121.25641926499992, 50.729123295000107 ], [ -121.255521652999903, 50.729413743000059 ], [ -121.255223732999951, 50.730504631000038 ], [ -121.255241472999927, 50.730735112000062 ], [ -121.255355650999917, 50.731246969000026 ], [ -121.255416784999952, 50.732006539000068 ], [ -121.255796097999976, 50.73228462 ], [ -121.256835001999931, 50.732644374000088 ], [ -121.257300494999981, 50.732682803000081 ], [ -121.257113041999929, 50.736080983000122 ], [ -121.255796312999948, 50.736024998000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999748830950706", "sL_AssetLoss": "574.9116", "sL_BldgLoss": "574.7672", "sL_StrLoss": "574", "sL_NStrLoss": "0.7672", "sL_ContLoss": "0.1444", "geom_point": "0101000020E6100000F350E3F7194D5EC01D5DF80316604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.201891516999964, 50.753119768000012 ], [ -121.201970800999945, 50.752380054000113 ], [ -121.201713796999954, 50.752369004000023 ], [ -121.202097968999965, 50.748784468000082 ], [ -121.203744058999945, 50.748855228000089 ], [ -121.203753198999905, 50.748769906000078 ], [ -121.209193162999952, 50.749003579000075 ], [ -121.208921305000032, 50.749405305000103 ], [ -121.207355406999952, 50.751073084000105 ], [ -121.20638769, 50.751903396000081 ], [ -121.20580489, 50.752280794000086 ], [ -121.204967121999957, 50.752691003000059 ], [ -121.20373329399996, 50.753112506000051 ], [ -121.201891516999964, 50.753119768000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999907142715014", "sL_AssetLoss": "226.1535", "sL_BldgLoss": "226.1325", "sL_StrLoss": "226", "sL_NStrLoss": "0.1325", "sL_ContLoss": "0.021", "geom_point": "0101000020E6100000D00E769206555EC07465ED4235524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.327592586, 50.640228277000098 ], [ -121.329700388999967, 50.640316729000084 ], [ -121.329327321999955, 50.643902159000049 ], [ -121.32928947, 50.643900570000035 ], [ -121.329237346999932, 50.644401459000036 ], [ -121.327533683999889, 50.644329970000065 ], [ -121.32757219899996, 50.641053401000086 ], [ -121.32757913899999, 50.6410315850001 ], [ -121.32759095099999, 50.640908921000083 ], [ -121.327592586, 50.640228277000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8700000", "BldgCostT": "6000000", "sL_LossRatio": "0.999867525355743", "sL_AssetLoss": "1452.3534", "sL_BldgLoss": "1452.161", "sL_StrLoss": "1451", "sL_NStrLoss": "1.161", "sL_ContLoss": "0.1924", "geom_point": "0101000020E61000009EEE7E0D6F4B5EC01418BA2B1E5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.177669708999957, 50.722585112000026 ], [ -121.177673285999958, 50.722551876000082 ], [ -121.174969717999943, 50.72243494000007 ], [ -121.17521302599999, 50.720175851000064 ], [ -121.174850336999953, 50.720170172000046 ], [ -121.174839859999963, 50.72043982300012 ], [ -121.173990317999966, 50.720426517000121 ], [ -121.173979835999916, 50.720696168000075 ], [ -121.172705516999912, 50.720676197000081 ], [ -121.17272649599991, 50.720136897000046 ], [ -121.172301726999947, 50.720130237000014 ], [ -121.172375168999935, 50.718242682000096 ], [ -121.1727999189999, 50.718249341000046 ], [ -121.172820895999905, 50.717710040000028 ], [ -121.174024287999941, 50.717728898000061 ], [ -121.174188674999982, 50.716202735000088 ], [ -121.174960463999938, 50.716236133000088 ], [ -121.174976949999987, 50.716083054000109 ], [ -121.180631940999916, 50.716327608 ], [ -121.180395420999957, 50.718526364000084 ], [ -121.182117338999944, 50.718600772000059 ], [ -121.182102061999984, 50.718742829000064 ], [ -121.185215242999931, 50.718877289000048 ], [ -121.184829977999954, 50.722461893000059 ], [ -121.183371832999981, 50.722398927000079 ], [ -121.183325535000023, 50.722829528000027 ], [ -121.177669708999957, 50.722585112000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999986702110656", "sL_AssetLoss": "391.0395", "sL_BldgLoss": "391.0343", "sL_StrLoss": "391", "sL_NStrLoss": "0.0343", "sL_ContLoss": "0.0052", "geom_point": "0101000020E61000006C33C299A7445EC0AC6E9AE301654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.07009525, 50.787203241000057 ], [ -121.075758642, 50.787453085000102 ], [ -121.075545962999968, 50.789384736000031 ], [ -121.075364027999967, 50.791037020000033 ], [ -121.069700185999949, 50.79078715800005 ], [ -121.070080040999983, 50.787341225000034 ], [ -121.07009525, 50.787203241000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999558578638787", "sL_AssetLoss": "128.4487", "sL_BldgLoss": "128.392", "sL_StrLoss": "128", "sL_NStrLoss": "0.392", "sL_ContLoss": "0.0567", "geom_point": "0101000020E610000044C1EF53D34B5EC080AB6500E25B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.186381610999902, 50.718731275000053 ], [ -121.186392021999893, 50.718461622000071 ], [ -121.185542509999934, 50.718448401000046 ], [ -121.185563340999948, 50.717909095000095 ], [ -121.183864339999957, 50.717882635000116 ], [ -121.183853915, 50.71815228700013 ], [ -121.183429163999946, 50.718145668 ], [ -121.183418735999936, 50.718415321000109 ], [ -121.181719717999968, 50.718388829000048 ], [ -121.1817510299999, 50.717579873000048 ], [ -121.182175775999937, 50.717586498000102 ], [ -121.182186209999927, 50.717316845000042 ], [ -121.183460443999948, 50.717336711000016 ], [ -121.183470870999884, 50.717067058000104 ], [ -121.186019329999922, 50.717106748000063 ], [ -121.186008916999981, 50.717376400000077 ], [ -121.186858408999981, 50.717389618 ], [ -121.186848000999959, 50.717659272000084 ], [ -121.187272749999977, 50.717665878000041 ], [ -121.187262344999965, 50.717935531000101 ], [ -121.18768709599999, 50.717942135000065 ], [ -121.187655885999945, 50.718751095000066 ], [ -121.186381610999902, 50.718731275000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999796149822198", "sL_AssetLoss": "559.7248", "sL_BldgLoss": "559.6107", "sL_StrLoss": "559", "sL_NStrLoss": "0.6107", "sL_ContLoss": "0.1141", "geom_point": "0101000020E610000088AA4EBD64515EC0F3CD70E2AF544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.27195888299994, 50.663689137000034 ], [ -121.272015413999938, 50.663152736 ], [ -121.270297407999976, 50.663079791000037 ], [ -121.268386939999957, 50.662379076000036 ], [ -121.26851327699994, 50.661181167000045 ], [ -121.268699980999941, 50.659410738000147 ], [ -121.274348343999989, 50.659650562000088 ], [ -121.274208664999946, 50.66097668500008 ], [ -121.274019410999927, 50.662773310000084 ], [ -121.275759380999929, 50.66284712900012 ], [ -121.274412019999914, 50.664317466000114 ], [ -121.274225985, 50.664520529000043 ], [ -121.27195888299994, 50.663689137000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053334", "BldgCostT": "6933334", "sL_LossRatio": "0.999708745724204", "sL_AssetLoss": "2108.4669", "sL_BldgLoss": "2107.8528", "sL_StrLoss": "2104", "sL_NStrLoss": "3.8528", "sL_ContLoss": "0.6141", "geom_point": "0101000020E6100000D42CD0EE90535EC0871E8C33E14E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.306431491999916, 50.630689544000063 ], [ -121.306547777999924, 50.627453453000093 ], [ -121.30612381600001, 50.627447289000067 ], [ -121.306162581999956, 50.626368592000084 ], [ -121.305738629999894, 50.626362426000107 ], [ -121.30576771099993, 50.625553404000044 ], [ -121.30534376599995, 50.625547237000028 ], [ -121.305372852999966, 50.624738214000025 ], [ -121.30494891499994, 50.624732045000052 ], [ -121.304978007999935, 50.623923023000067 ], [ -121.304554076999963, 50.623916853000075 ], [ -121.304563777999974, 50.623647180000056 ], [ -121.304139848999981, 50.623641009000039 ], [ -121.3042077599999, 50.621753289000019 ], [ -121.303783848999942, 50.621747117000091 ], [ -121.303812957999938, 50.620938094000046 ], [ -121.303389055999958, 50.620931920000039 ], [ -121.303427875999944, 50.619853223000092 ], [ -121.30300398199995, 50.619847048000132 ], [ -121.303033102999947, 50.619038026000084 ], [ -121.303456988999955, 50.619044200000097 ], [ -121.303487112999946, 50.618207045000062 ], [ -121.302763570999915, 50.618176501000121 ], [ -121.303100813999919, 50.614951844000124 ], [ -121.301533745999961, 50.614885673000103 ], [ -121.301908787999977, 50.61130021200006 ], [ -121.304070381999935, 50.611391482000087 ], [ -121.304282399999963, 50.609363364000053 ], [ -121.309924668999926, 50.609601400000088 ], [ -121.309858686999974, 50.610233347000076 ], [ -121.310134265999977, 50.610237346000076 ], [ -121.310153590999988, 50.609697995000033 ], [ -121.310577392999917, 50.609704142000098 ], [ -121.310596714999917, 50.609164791000069 ], [ -121.311020513999949, 50.60917093700008 ], [ -121.311039829999984, 50.608631586000087 ], [ -121.311463622999952, 50.608637730000105 ], [ -121.311502240999914, 50.607559026000054 ], [ -121.312731620999912, 50.607576842000078 ], [ -121.312600097999919, 50.607907309000069 ], [ -121.311974899999939, 50.608778905000079 ], [ -121.311611490999951, 50.609087912000085 ], [ -121.310208505999981, 50.61076848900008 ], [ -121.309083606999977, 50.612531696000133 ], [ -121.308566180999961, 50.613199599000026 ], [ -121.307485821999975, 50.614109703000103 ], [ -121.307242995999957, 50.61461959600009 ], [ -121.306947503999979, 50.615370088000056 ], [ -121.30683801, 50.615674902000087 ], [ -121.306410988999986, 50.616126408000078 ], [ -121.30640402599991, 50.616334303000073 ], [ -121.306356917999935, 50.616459595000038 ], [ -121.305983489999946, 50.616633388000103 ], [ -121.305871386999939, 50.617792692000108 ], [ -121.305853397999954, 50.617855405000043 ], [ -121.305764463999964, 50.618303153000092 ], [ -121.305180945999922, 50.618278532000097 ], [ -121.305123450999943, 50.619877906000063 ], [ -121.305547344999965, 50.619884074000019 ], [ -121.305489185999974, 50.621502121000091 ], [ -121.305913093999976, 50.621508286000015 ], [ -121.305864636999928, 50.622856660000082 ], [ -121.306288558999952, 50.622862824000045 ], [ -121.306259487999966, 50.623671848000058 ], [ -121.306683416999959, 50.623678011000017 ], [ -121.306644664999908, 50.624756710000064 ], [ -121.307068604999969, 50.624762871000058 ], [ -121.30702986099999, 50.625841570000027 ], [ -121.307453808999952, 50.625847730000032 ], [ -121.30741507399992, 50.626926428000083 ], [ -121.307839030999943, 50.626932587000056 ], [ -121.307735296999951, 50.629821657000065 ], [ -121.307536880999947, 50.630047997000119 ], [ -121.307402666999948, 50.630703659000105 ], [ -121.306431491999916, 50.630689544000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999978378218054", "sL_AssetLoss": "465.27155", "sL_BldgLoss": "465.26149", "sL_StrLoss": "465.2", "sL_NStrLoss": "0.06149", "sL_ContLoss": "0.01006", "geom_point": "0101000020E6100000C42055B975565EC0566EBB33076A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.348288148999956, 50.826433793000042 ], [ -121.353742883999985, 50.82666060100005 ], [ -121.353949191999959, 50.826754381000072 ], [ -121.353585333999959, 50.830254267000043 ], [ -121.347915018999984, 50.830018502 ], [ -121.348288148999956, 50.826433793000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9792334", "BldgCostT": "6753334", "sL_LossRatio": "0.999965658962468", "sL_AssetLoss": "1243.9927", "sL_BldgLoss": "1243.94998", "sL_StrLoss": "1243.60325", "sL_NStrLoss": "0.34673", "sL_ContLoss": "0.04272", "geom_point": "0101000020E61000006289C5773B3F5EC01C1F143178604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.987107257999952, 50.757012450000104 ], [ -120.987141965999982, 50.756203591 ], [ -120.986716917999928, 50.756196251000105 ], [ -120.98672849099998, 50.755926632000055 ], [ -120.985028310999951, 50.755897259000058 ], [ -120.985039891999946, 50.755627639000039 ], [ -120.984742932999964, 50.755622506000073 ], [ -120.984621900999954, 50.756702596000061 ], [ -120.983840404999953, 50.756334088000095 ], [ -120.982525685999988, 50.755592106000115 ], [ -120.981436796999944, 50.755169093000085 ], [ -120.981300103999942, 50.755066489000065 ], [ -120.981334002999944, 50.754941207000094 ], [ -120.981100983999937, 50.754767500000106 ], [ -120.979217342999959, 50.754180041000033 ], [ -120.979217598999981, 50.754177765000051 ], [ -120.979209595999976, 50.754177625000061 ], [ -120.978728467999929, 50.754027566000104 ], [ -120.97875721599999, 50.753360323000045 ], [ -120.979308221999958, 50.753369875000061 ], [ -120.979341237999932, 50.753075529000057 ], [ -120.98126590899993, 50.753162108 ], [ -120.981329447999954, 50.752595434000085 ], [ -120.979217075999955, 50.752558835000059 ], [ -120.979251915999967, 50.751749981000103 ], [ -120.979676921999953, 50.751757346000041 ], [ -120.979688532999887, 50.751487728000072 ], [ -120.980113534999958, 50.751495092000035 ], [ -120.980136749999971, 50.750955855000051 ], [ -120.981510606999947, 50.750979651000065 ], [ -120.981537781000014, 50.750737275000034 ], [ -120.987196069, 50.750991612000114 ], [ -120.98716147799999, 50.751300485000044 ], [ -120.987767269999935, 50.751327698000118 ], [ -120.987764195999972, 50.751355150000073 ], [ -120.98862428299999, 50.751393781000061 ], [ -120.988636755999948, 50.751102819000039 ], [ -120.989061756999902, 50.751110151000027 ], [ -120.989073315999917, 50.750840531000087 ], [ -120.990348314999949, 50.750862518000105 ], [ -120.990308307999953, 50.751796498000019 ], [ -120.993660393999932, 50.75194694000006 ], [ -120.99362520199999, 50.752261584000031 ], [ -120.996496416999946, 50.752390363000089 ], [ -120.996494466999934, 50.752407815000034 ], [ -120.997182094999971, 50.752438645000048 ], [ -120.997003779999901, 50.754033997000121 ], [ -120.996896706999948, 50.754991906000072 ], [ -120.996781509999963, 50.756022447000078 ], [ -120.995604552999936, 50.755969675000053 ], [ -120.995603256999956, 50.755981275000082 ], [ -120.995088269999954, 50.755958180000093 ], [ -120.995086333999936, 50.755975487000029 ], [ -120.994083540999981, 50.755930509000059 ], [ -120.994071595999912, 50.756037311000057 ], [ -120.99355157599993, 50.756013983000074 ], [ -120.993543776, 50.756083723000067 ], [ -120.992635362999948, 50.756042967000063 ], [ -120.992628036999974, 50.756108446000106 ], [ -120.988854756999928, 50.755939074000082 ], [ -120.988819038999949, 50.75677217300003 ], [ -120.988393986999967, 50.756764839000063 ], [ -120.988382422999976, 50.757034460000078 ], [ -120.987107257999952, 50.757012450000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.999746783941817", "sL_AssetLoss": "490.0953", "sL_BldgLoss": "489.9712", "sL_StrLoss": "489.0102", "sL_NStrLoss": "0.961", "sL_ContLoss": "0.1241", "geom_point": "0101000020E6100000B57072222E525EC069D43208E2654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.281422116999948, 50.794048541000059 ], [ -121.287087526, 50.794287683000064 ], [ -121.286709763999923, 50.79787232000011 ], [ -121.281043903999915, 50.797633160000125 ], [ -121.281422116999948, 50.794048541000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999737320945102", "sL_AssetLoss": "125.2479", "sL_BldgLoss": "125.215", "sL_StrLoss": "125", "sL_NStrLoss": "0.215", "sL_ContLoss": "0.0329", "geom_point": "0101000020E6100000889C00BB81535EC06671B504CF544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.305238331999973, 50.663859365000079 ], [ -121.30524804099997, 50.663589692000059 ], [ -121.304823754, 50.663583521000106 ], [ -121.304833466999966, 50.66331384700004 ], [ -121.304409181999986, 50.663307675000063 ], [ -121.30441889599993, 50.663038003000068 ], [ -121.303994613999947, 50.663031828000044 ], [ -121.304014044999974, 50.66249248200009 ], [ -121.303589766999977, 50.662486306000055 ], [ -121.303609204999987, 50.661946961000091 ], [ -121.303184931999922, 50.66194078300007 ], [ -121.303214093999912, 50.661131767000079 ], [ -121.304486890999968, 50.661150295000056 ], [ -121.304467463999941, 50.66168964000007 ], [ -121.30489173399998, 50.66169581300003 ], [ -121.304872312999933, 50.66223515700004 ], [ -121.305296586999958, 50.662241330000036 ], [ -121.305286878999965, 50.662511003000127 ], [ -121.305711156999962, 50.662517173000062 ], [ -121.305701448999983, 50.662786846000067 ], [ -121.306079015999956, 50.662792335000077 ], [ -121.306124660999927, 50.662822733000105 ], [ -121.30611602599997, 50.663062687000043 ], [ -121.306540308999942, 50.663068854000052 ], [ -121.306511203999918, 50.663877872000079 ], [ -121.305238331999973, 50.663859365000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999939713617895", "sL_AssetLoss": "385.49336", "sL_BldgLoss": "385.47012", "sL_StrLoss": "385.30216", "sL_NStrLoss": "0.16796", "sL_ContLoss": "0.02324", "geom_point": "0101000020E61000001CD41B416C515EC099B556ACC8574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.274206495, 50.684094761000068 ], [ -121.275247053000029, 50.684138887000074 ], [ -121.274869274999915, 50.687723947000059 ], [ -121.274446193999935, 50.687706006000035 ], [ -121.269217375999958, 50.687484157000085 ], [ -121.269595604999964, 50.683899115000031 ], [ -121.274206495, 50.684094761000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "0.999925888844669", "sL_AssetLoss": "519.22008", "sL_BldgLoss": "519.1816", "sL_StrLoss": "519", "sL_NStrLoss": "0.1816", "sL_ContLoss": "0.03848", "geom_point": "0101000020E6100000A8E630670F525EC0FD4BAD5255524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.279555480999974, 50.641316553000074 ], [ -121.285201628999943, 50.641555833000027 ], [ -121.284825000999945, 50.645141108000104 ], [ -121.279178404000035, 50.644901810000071 ], [ -121.279555480999974, 50.641316553000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999906271340008", "sL_AssetLoss": "515.3173", "sL_BldgLoss": "515.269", "sL_StrLoss": "515", "sL_NStrLoss": "0.269", "sL_ContLoss": "0.0483", "geom_point": "0101000020E61000003D5AA4A254505EC0A715F07CD0564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.252530177999944, 50.676324694000122 ], [ -121.258180581999923, 50.676565333000063 ], [ -121.258044138999978, 50.677855786000052 ], [ -121.257801503999971, 50.680150367000046 ], [ -121.252150650999965, 50.679909710000068 ], [ -121.252511617999943, 50.676500019000045 ], [ -121.252530177999944, 50.676324694000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999896451057093", "sL_AssetLoss": "95.1241", "sL_BldgLoss": "95.11425", "sL_StrLoss": "95.00225", "sL_NStrLoss": "0.112", "sL_ContLoss": "0.00985", "geom_point": "0101000020E61000009BC7402216525EC0B6A2CD716E5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.281968, 50.735828244000075 ], [ -121.283860411999925, 50.735908256000123 ], [ -121.283802527999967, 50.736457949000034 ], [ -121.283482885999987, 50.739493126000113 ], [ -121.281006271999971, 50.739388407000021 ], [ -121.281359456999951, 50.738387557000117 ], [ -121.281395591999939, 50.738285176000041 ], [ -121.28157880399999, 50.737651538000101 ], [ -121.281785590999959, 50.736936503000024 ], [ -121.281831482999976, 50.736777776000032 ], [ -121.281945174000029, 50.736210870000022 ], [ -121.281968, 50.735828244000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "0.999751368281025", "sL_AssetLoss": "960.8589", "sL_BldgLoss": "960.62", "sL_StrLoss": "959", "sL_NStrLoss": "1.62", "sL_ContLoss": "0.2389", "geom_point": "0101000020E6100000FD3FB933F44D5EC0FDD73DA2D7494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.214616387999939, 50.579410697000071 ], [ -121.214688911999957, 50.578729454000069 ], [ -121.214627234000019, 50.578726798000098 ], [ -121.214696594999936, 50.578075268000099 ], [ -121.214483570999931, 50.578066096000079 ], [ -121.21486523899992, 50.574480771000061 ], [ -121.21659407, 50.574555192000084 ], [ -121.216449227999988, 50.574287363000117 ], [ -121.216933591999947, 50.574305477000031 ], [ -121.216935217999989, 50.574262388000129 ], [ -121.216943565999955, 50.574041302000111 ], [ -121.217010085999959, 50.574042321 ], [ -121.217473506999937, 50.574049416000044 ], [ -121.219907809999981, 50.574086656000084 ], [ -121.219895387999941, 50.57441619300009 ], [ -121.21998022799994, 50.574419363000047 ], [ -121.220022863999972, 50.574702713000114 ], [ -121.220502659999966, 50.574723346000027 ], [ -121.220466836999918, 50.575060290000103 ], [ -121.221844136999962, 50.575119511000047 ], [ -121.221688053999941, 50.576587927000055 ], [ -121.22146301899997, 50.578704857000034 ], [ -121.220360314999965, 50.578657445 ], [ -121.220254423999933, 50.579653283000042 ], [ -121.214616387999939, 50.579410697000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.880793226381462", "sL_AssetLoss": "0.017952", "sL_BldgLoss": "0.015812", "sL_StrLoss": "0.000612", "sL_NStrLoss": "0.0152", "sL_ContLoss": "0.00214", "geom_point": "0101000020E6100000F1390365CB4C5EC0F11661ED1C5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.199424152999953, 50.711108859000078 ], [ -121.202397003999948, 50.711154747000073 ], [ -121.202366055, 50.711963714000014 ], [ -121.201941354999931, 50.711957163000108 ], [ -121.201931035999934, 50.712226819000094 ], [ -121.199807521999958, 50.712194040000085 ], [ -121.199797191999906, 50.712463695000068 ], [ -121.198947781999934, 50.712450573000083 ], [ -121.19893744599996, 50.712720228000116 ], [ -121.197663326999958, 50.712700532000049 ], [ -121.1977047, 50.711621914000034 ], [ -121.198129396999946, 50.71162848000008 ], [ -121.198139736999948, 50.711358825000069 ], [ -121.199413819999933, 50.711378515000021 ], [ -121.199424152999953, 50.711108859000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.99981654638054", "sL_AssetLoss": "1056.3978", "sL_BldgLoss": "1056.204", "sL_StrLoss": "1055", "sL_NStrLoss": "1.204", "sL_ContLoss": "0.1938", "geom_point": "0101000020E61000005ABFF45161525EC026223637AA674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.286833618999964, 50.807029798000038 ], [ -121.292500698999973, 50.80726866200007 ], [ -121.292440533999937, 50.807840102000064 ], [ -121.292123261999933, 50.810853263000133 ], [ -121.28839308499991, 50.810696071000116 ], [ -121.288216284999976, 50.812373652000097 ], [ -121.287735565, 50.812353385000058 ], [ -121.28769418499995, 50.812745963000111 ], [ -121.282942816999963, 50.812545536000094 ], [ -121.282026436999956, 50.812506857000102 ], [ -121.282404696999933, 50.80892229800007 ], [ -121.282885376999971, 50.808942587000125 ], [ -121.282926796, 50.808550009000044 ], [ -121.286459108999949, 50.80869904700009 ], [ -121.286656774999983, 50.808707383000112 ], [ -121.286680181999955, 50.80848534400009 ], [ -121.286833618999964, 50.807029798000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.999850299453477", "sL_AssetLoss": "429.52415", "sL_BldgLoss": "429.45985", "sL_StrLoss": "429.00555", "sL_NStrLoss": "0.4543", "sL_ContLoss": "0.0643", "geom_point": "0101000020E6100000BDB544151B4F5EC024DF3A39A24C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.236885112, 50.596936584000069 ], [ -121.23903826399993, 50.597028790000095 ], [ -121.23865833, 50.600614100000087 ], [ -121.236294119999982, 50.600512853000055 ], [ -121.233017566999933, 50.600372451000055 ], [ -121.23339794799999, 50.596787159000016 ], [ -121.236885112, 50.596936584000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7397417", "BldgCostT": "5101667", "sL_LossRatio": "0.999880477109928", "sL_AssetLoss": "1188.22428", "sL_BldgLoss": "1188.08226", "sL_StrLoss": "1187.00776", "sL_NStrLoss": "1.0745", "sL_ContLoss": "0.14202", "geom_point": "0101000020E6100000264A4A9375535EC04F78E83F94624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.30429552799994, 50.774357864000088 ], [ -121.304036563999944, 50.774194741 ], [ -121.303806345999973, 50.774191392000034 ], [ -121.303810459999923, 50.77407771100011 ], [ -121.303670728, 50.774017864000065 ], [ -121.303518556999904, 50.773917397000083 ], [ -121.303390816999951, 50.773915538000018 ], [ -121.303393731999947, 50.773834984000082 ], [ -121.303354927999976, 50.773809364000108 ], [ -121.30328042799999, 50.773701564000078 ], [ -121.303166477999952, 50.773372656000049 ], [ -121.302985053999976, 50.773370016000058 ], [ -121.303024094999898, 50.772291347000092 ], [ -121.303272641, 50.772294963000085 ], [ -121.30340322899994, 50.771987664000115 ], [ -121.303462643999922, 50.771930527000045 ], [ -121.303468879999983, 50.771758201000047 ], [ -121.303614076999963, 50.771760313000101 ], [ -121.30390964299994, 50.771335898000082 ], [ -121.303913651999935, 50.771225053000087 ], [ -121.303964881999931, 50.771225797000085 ], [ -121.303968066999943, 50.771195442000078 ], [ -121.300685528999935, 50.771057342000063 ], [ -121.300689937999934, 50.77101535500006 ], [ -121.299275183999967, 50.770955804000067 ], [ -121.299316517999955, 50.770562310000081 ], [ -121.297115935999926, 50.770469646000073 ], [ -121.29743592599999, 50.767424540000015 ], [ -121.297492633999951, 50.766884860000083 ], [ -121.303154693999929, 50.767123196000078 ], [ -121.303113396999919, 50.767516693000111 ], [ -121.304018656999958, 50.767554772000047 ], [ -121.305313847, 50.767609239000137 ], [ -121.305309442999928, 50.767651226000083 ], [ -121.306724099999883, 50.767710701000055 ], [ -121.306546644999941, 50.769402803000119 ], [ -121.306530274999943, 50.769558892000113 ], [ -121.30671922799999, 50.769566835000056 ], [ -121.309812720000011, 50.769696822000121 ], [ -121.309751552999927, 50.770280441000125 ], [ -121.310326940999957, 50.770304609000071 ], [ -121.31005655, 50.772884660000159 ], [ -121.310235829999968, 50.7728921900001 ], [ -121.310282855, 50.771587329000084 ], [ -121.310708119999944, 50.771593490000051 ], [ -121.31073726599999, 50.77078448400006 ], [ -121.311372416999973, 50.770793685000072 ], [ -121.311587780999929, 50.770796803000103 ], [ -121.311613470999973, 50.770083385000085 ], [ -121.31162662, 50.769718130000108 ], [ -121.312138331999904, 50.769725538000046 ], [ -121.312047279999916, 50.769917329000059 ], [ -121.311400736999943, 50.771528456000098 ], [ -121.311335629999988, 50.771831742000074 ], [ -121.311236942999926, 50.772291215000024 ], [ -121.311062774, 50.773098516000132 ], [ -121.310506567999965, 50.77309075400008 ], [ -121.304423892999978, 50.773131514000099 ], [ -121.304444251999925, 50.773607462000022 ], [ -121.304476028999943, 50.774348310000065 ], [ -121.30429552799994, 50.774357864000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999881079326011", "sL_AssetLoss": "202.6561", "sL_BldgLoss": "202.632", "sL_StrLoss": "202.5", "sL_NStrLoss": "0.132", "sL_ContLoss": "0.0241", "geom_point": "0101000020E61000004AF89452064F5EC0CCD1040620534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.232304217999939, 50.650364156000116 ], [ -121.232364950999923, 50.648746180000039 ], [ -121.23278908899999, 50.648752614000031 ], [ -121.23280932499992, 50.648213288000051 ], [ -121.23492999299998, 50.648245437000135 ], [ -121.234919885999943, 50.648515100000097 ], [ -121.236192294999952, 50.648534371000082 ], [ -121.236182194999913, 50.64880403400015 ], [ -121.236606334999962, 50.648810454000078 ], [ -121.236596235999968, 50.649080118000029 ], [ -121.23786866199994, 50.649099371000084 ], [ -121.237838389999965, 50.649908362000055 ], [ -121.237414241999929, 50.649901945000067 ], [ -121.237404147999911, 50.650171609000061 ], [ -121.236131694999941, 50.650152350000091 ], [ -121.236121593999911, 50.650422015000061 ], [ -121.232304217999939, 50.650364156000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99977141498167", "sL_AssetLoss": "346.4794", "sL_BldgLoss": "346.4002", "sL_StrLoss": "346", "sL_NStrLoss": "0.4002", "sL_ContLoss": "0.0792", "geom_point": "0101000020E6100000D8B0CF311A455EC08CEA00CAD7634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.078609908999979, 50.778494803000115 ], [ -121.079039994, 50.778385099000083 ], [ -121.079550085999983, 50.778410804000082 ], [ -121.080831498999956, 50.778638593000046 ], [ -121.082633403, 50.779176958000072 ], [ -121.08238276699997, 50.781456976000051 ], [ -121.076720096999949, 50.781207466000126 ], [ -121.076938327999969, 50.779224522000042 ], [ -121.077739582999968, 50.778947703000014 ], [ -121.078609908999979, 50.778494803000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999961588042511", "sL_AssetLoss": "97.62585", "sL_BldgLoss": "97.6221", "sL_StrLoss": "97.6", "sL_NStrLoss": "0.0221", "sL_ContLoss": "0.00375", "geom_point": "0101000020E61000008EDE999E6A4E5EC087489748B36B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.225544811999967, 50.840749023000129 ], [ -121.226822434999931, 50.840768449000059 ], [ -121.226814414999978, 50.840980026000096 ], [ -121.226791765999934, 50.841577408000063 ], [ -121.226365883999932, 50.841570934000025 ], [ -121.226355657999974, 50.841840587000078 ], [ -121.225078005999976, 50.841821156000101 ], [ -121.22506777199996, 50.84209080800013 ], [ -121.223790113999954, 50.842071364000034 ], [ -121.223811678999951, 50.841503526000125 ], [ -121.223831076999929, 50.840992753000059 ], [ -121.225534580999977, 50.841018676000076 ], [ -121.225544811999967, 50.840749023000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18615584", "BldgCostT": "12838334", "sL_LossRatio": "0.999936550926885", "sL_AssetLoss": "2745.9818", "sL_BldgLoss": "2745.80757", "sL_StrLoss": "2744.70187", "sL_NStrLoss": "1.1057", "sL_ContLoss": "0.17423", "geom_point": "0101000020E6100000AA1FA355D03D5EC0AD1397E395614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.957289620999944, 50.768301772000072 ], [ -120.95760924299999, 50.765465646000045 ], [ -120.961184600999957, 50.765627104000046 ], [ -120.961226883999984, 50.765251632000044 ], [ -120.961287864, 50.763848937000056 ], [ -120.961384641, 50.763850630000043 ], [ -120.961479921999953, 50.763004431000077 ], [ -120.965995423999942, 50.763208181000088 ], [ -120.966029329999984, 50.762426392000144 ], [ -120.963436765000026, 50.762309431000091 ], [ -120.963422156999968, 50.762439217000036 ], [ -120.958671749999951, 50.762224750000023 ], [ -120.958694282999886, 50.761679097000098 ], [ -120.959140287999958, 50.760230705 ], [ -120.959085379999976, 50.759572699000039 ], [ -120.959192989999949, 50.759386200000101 ], [ -120.959180290999939, 50.759025810000075 ], [ -120.959006908999953, 50.758638016000091 ], [ -120.962725912999943, 50.758805938000073 ], [ -120.962740520999901, 50.758676152000078 ], [ -120.966185219999943, 50.758831577000095 ], [ -120.966268076999938, 50.756920599000082 ], [ -120.965843029999945, 50.756913183000044 ], [ -120.965878104999931, 50.756104335 ], [ -120.968003312999912, 50.756141398000054 ], [ -120.967886510999946, 50.758837562000025 ], [ -120.96825579399993, 50.758843997000042 ], [ -120.968641759999954, 50.755410882000028 ], [ -120.974300563999989, 50.75566587100009 ], [ -120.97404616599999, 50.757931310000032 ], [ -120.973898119999888, 50.759249578000031 ], [ -120.971276898999974, 50.759131500000116 ], [ -120.971217078000038, 50.760514486000098 ], [ -120.971642161999966, 50.760521883000102 ], [ -120.971587992999957, 50.761774368000033 ], [ -120.972046961, 50.761795045000049 ], [ -120.972037655999927, 50.761877861000073 ], [ -120.972434048999943, 50.761884756000057 ], [ -120.972415308999985, 50.762318260000015 ], [ -120.972387421999926, 50.762963224000096 ], [ -120.971916625999924, 50.762955036000079 ], [ -120.971644281999957, 50.765378717000019 ], [ -120.971432502, 50.765369177000117 ], [ -120.97140892299997, 50.765914218000013 ], [ -120.970645317999981, 50.765900929000033 ], [ -120.969708396999962, 50.765884618000072 ], [ -120.969734025999983, 50.765292646000063 ], [ -120.966925238999963, 50.765166030000039 ], [ -120.966789430999981, 50.766373389000115 ], [ -120.9696850499999, 50.766423850000109 ], [ -120.969673375999918, 50.766693467000067 ], [ -120.970523653999962, 50.766708270000059 ], [ -120.970515069999948, 50.766906582000075 ], [ -120.970498581999976, 50.767287525000114 ], [ -120.970488644999946, 50.767517120000058 ], [ -120.969264212000027, 50.767495800000127 ], [ -120.964961761999945, 50.767420780000045 ], [ -120.9649500599999, 50.767690397000081 ], [ -120.96367462399995, 50.767668127000093 ], [ -120.963662913999954, 50.767937742000143 ], [ -120.963021000999916, 50.767926529000093 ], [ -120.962934669999981, 50.768693390000067 ], [ -120.962865836999967, 50.769304816000052 ], [ -120.960872848999941, 50.769214867000059 ], [ -120.957350137999953, 50.769055791000106 ], [ -120.95735639899999, 50.768911780000103 ], [ -120.957289620999944, 50.768301772000072 ] ], [ [ -120.969889649, 50.761697839000121 ], [ -120.969941829999939, 50.760492287000055 ], [ -120.969516748, 50.760484885000075 ], [ -120.969551766, 50.759676036000016 ], [ -120.969126690999943, 50.759668632000043 ], [ -120.969115015999961, 50.759938248000076 ], [ -120.96868994, 50.759930842000102 ], [ -120.968666585999969, 50.760470075000107 ], [ -120.968241503999977, 50.760462668000052 ], [ -120.968229822999945, 50.760732284000063 ], [ -120.968197289999949, 50.760731718000066 ], [ -120.968097739999948, 50.761617066000099 ], [ -120.969889649, 50.761697839000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999958373170357", "sL_AssetLoss": "90.32636", "sL_BldgLoss": "90.3226", "sL_StrLoss": "90.3", "sL_NStrLoss": "0.0226", "sL_ContLoss": "0.00376", "geom_point": "0101000020E6100000DAF53DB004485EC09089CE117D6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.125042973999925, 50.839177068000033 ], [ -121.126746320999985, 50.839204432000074 ], [ -121.12673998299999, 50.83936264600009 ], [ -121.126713922999969, 50.840013347000102 ], [ -121.126288077999931, 50.840006508000023 ], [ -121.12627727499995, 50.840276146000065 ], [ -121.123722200999964, 50.840235079000124 ], [ -121.123734392999907, 50.839931145000016 ], [ -121.123754651999946, 50.839426166000116 ], [ -121.125032165999968, 50.839446706000111 ], [ -121.125042973999925, 50.839177068000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999985915285646", "sL_AssetLoss": "78.80884", "sL_BldgLoss": "78.80773", "sL_StrLoss": "78.8", "sL_NStrLoss": "0.00773", "sL_ContLoss": "0.00111", "geom_point": "0101000020E6100000D60B365C813E5EC061FD7EB513624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.976533784999958, 50.765463636000042 ], [ -120.977809172999983, 50.765485766000047 ], [ -120.977783690999956, 50.76607666000011 ], [ -120.977751036999976, 50.766833853000051 ], [ -120.9752001899999, 50.766789581000097 ], [ -120.975212523999957, 50.766503933000074 ], [ -120.975235115999908, 50.765980730000067 ], [ -120.976085382999955, 50.765995493000013 ], [ -120.97609701899999, 50.765725875000044 ], [ -120.976522150999955, 50.765733254000068 ], [ -120.976533784999958, 50.765463636000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "0.99984409606601", "sL_AssetLoss": "973.0351", "sL_BldgLoss": "972.8834", "sL_StrLoss": "972", "sL_NStrLoss": "0.8834", "sL_ContLoss": "0.1517", "geom_point": "0101000020E6100000BDC85FB54D555EC029839B730D694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.333448708, 50.82365652400005 ], [ -121.333502921, 50.823137255000127 ], [ -121.332545811999964, 50.823097301000104 ], [ -121.332623760000033, 50.822350829000101 ], [ -121.33136742, 50.822298371000052 ], [ -121.331434651999956, 50.821654692000095 ], [ -121.32921829, 50.821562114000059 ], [ -121.329502688999966, 50.818840337000026 ], [ -121.325128831999933, 50.818657509000097 ], [ -121.325248476999946, 50.817513449000089 ], [ -121.3267433499999, 50.81826074 ], [ -121.329003879999973, 50.817399213000016 ], [ -121.328455892, 50.817114576000122 ], [ -121.328451275999953, 50.817112193000114 ], [ -121.328470710999937, 50.816609506000091 ], [ -121.328286030999919, 50.816389657000045 ], [ -121.328775344999926, 50.816396366000042 ], [ -121.329276599999915, 50.816157886000049 ], [ -121.330477516999963, 50.81730620600009 ], [ -121.330923611999935, 50.817687903000056 ], [ -121.330887720999897, 50.818031526000048 ], [ -121.331390985999974, 50.818052546000061 ], [ -121.331961807999946, 50.818479781000065 ], [ -121.333215875999969, 50.819324193000078 ], [ -121.333609192999987, 50.819552191000106 ], [ -121.334539895999981, 50.820099564000053 ], [ -121.335586314999901, 50.820619482000041 ], [ -121.335667140999973, 50.820659658000132 ], [ -121.336866995999969, 50.821178187000093 ], [ -121.337451386999973, 50.821430746000061 ], [ -121.338523641, 50.821822882000063 ], [ -121.338601300999983, 50.821848914000078 ], [ -121.339306645999926, 50.822085272000059 ], [ -121.339118140999972, 50.823893023000011 ], [ -121.333448708, 50.82365652400005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.9996901891407", "sL_AssetLoss": "128.1427", "sL_BldgLoss": "128.103", "sL_StrLoss": "128", "sL_NStrLoss": "0.103", "sL_ContLoss": "0.0397", "geom_point": "0101000020E610000036D420B350545EC0963E74417D4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.316676048999952, 50.621757769000077 ], [ -121.316879770999947, 50.619804227000081 ], [ -121.318202076999953, 50.620684818000065 ], [ -121.318216419999928, 50.621822593000068 ], [ -121.316676048999952, 50.621757769000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999868030598314", "sL_AssetLoss": "215.2014", "sL_BldgLoss": "215.173", "sL_StrLoss": "215", "sL_NStrLoss": "0.173", "sL_ContLoss": "0.0284", "geom_point": "0101000020E6100000A3DFA571BB4C5EC02A500FFAE75A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.196907044999961, 50.710260502000089 ], [ -121.196917390999957, 50.709990848000061 ], [ -121.197342071999913, 50.709997416000078 ], [ -121.19735241799998, 50.709727762000085 ], [ -121.198201776999923, 50.70974089500006 ], [ -121.198212116999954, 50.709471241000124 ], [ -121.199061472999972, 50.709484368000112 ], [ -121.199071804999946, 50.709214713000044 ], [ -121.200345831999982, 50.70923439200002 ], [ -121.200335505999988, 50.709504047000095 ], [ -121.201015820999956, 50.709514549000055 ], [ -121.20160954, 50.709523712000049 ], [ -121.201599218999945, 50.709793367000024 ], [ -121.202023900000015, 50.709799920000101 ], [ -121.20201475199994, 50.71003900400008 ], [ -121.201992946999937, 50.71060888700007 ], [ -121.200718882999951, 50.710589224000032 ], [ -121.200729207999956, 50.710319569000056 ], [ -121.199455150999967, 50.71029989400008 ], [ -121.199444818, 50.710569550000038 ], [ -121.198595444999938, 50.71055642500005 ], [ -121.198585106999985, 50.710826080000089 ], [ -121.197735727999927, 50.710812948000068 ], [ -121.19772538499997, 50.711082604000055 ], [ -121.197300693999964, 50.711076036000051 ], [ -121.197290347999953, 50.711345691000119 ], [ -121.196016267999966, 50.71132597800004 ], [ -121.196047323999935, 50.710517014000132 ], [ -121.19647201, 50.710523586000107 ], [ -121.196482359999905, 50.710253932000057 ], [ -121.196907044999961, 50.710260502000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544334", "BldgCostT": "4513334", "sL_LossRatio": "0.999780758495446", "sL_AssetLoss": "1167.66212", "sL_BldgLoss": "1167.40612", "sL_StrLoss": "1166.00912", "sL_NStrLoss": "1.397", "sL_ContLoss": "0.256", "geom_point": "0101000020E6100000C23BAF67FE515EC0F4FF8915DE664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.281168931999929, 50.806174547000118 ], [ -121.281255775999909, 50.80535165200007 ], [ -121.276805237999938, 50.805163631000028 ], [ -121.276882520999948, 50.804432 ], [ -121.275366037999959, 50.804367893000048 ], [ -121.275449056999918, 50.803582173000081 ], [ -121.27574476099997, 50.800783321000075 ], [ -121.281410991999905, 50.801022749000019 ], [ -121.281333788999959, 50.801754386000013 ], [ -121.282850192999916, 50.801818413 ], [ -121.28276338499991, 50.802641313000102 ], [ -121.28721369699997, 50.802829096000082 ], [ -121.286904051999969, 50.805766912000109 ], [ -121.286835872999958, 50.806413698000057 ], [ -121.281168931999929, 50.806174547000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999856506773264", "sL_AssetLoss": "651.5987", "sL_BldgLoss": "651.5052", "sL_StrLoss": "651", "sL_NStrLoss": "0.5052", "sL_ContLoss": "0.0935", "geom_point": "0101000020E61000002B572E0AF14E5EC0636E6BC932654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.231200193999939, 50.792423223000071 ], [ -121.231219617999969, 50.792241056000059 ], [ -121.23047588199999, 50.792209304000046 ], [ -121.230477146999959, 50.792197457000036 ], [ -121.229648655999981, 50.792162081000129 ], [ -121.230002065999912, 50.78884831900011 ], [ -121.23003093399997, 50.788577615000051 ], [ -121.235695375999953, 50.788819361000023 ], [ -121.235694113999941, 50.78883120700003 ], [ -121.236522547999982, 50.788866539000068 ], [ -121.23650314799994, 50.789048707000056 ], [ -121.237246833999947, 50.789080420000055 ], [ -121.237060448999969, 50.790830777000096 ], [ -121.23686513, 50.792664908000056 ], [ -121.231200193999939, 50.792423223000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999853263746498", "sL_AssetLoss": "450.60439", "sL_BldgLoss": "450.53827", "sL_StrLoss": "450.00527", "sL_NStrLoss": "0.533", "sL_ContLoss": "0.06612", "geom_point": "0101000020E6100000ED5DE6E8EF515EC0D380E618B5554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.277631815999939, 50.667676868000065 ], [ -121.283281266999964, 50.667916237000028 ], [ -121.28290426599996, 50.671501392000032 ], [ -121.277254364999948, 50.671262005000052 ], [ -121.277631815999939, 50.667676868000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5169250", "BldgCostT": "3565000", "sL_LossRatio": "0.999865349126489", "sL_AssetLoss": "680.2778", "sL_BldgLoss": "680.1862", "sL_StrLoss": "679.4114", "sL_NStrLoss": "0.7748", "sL_ContLoss": "0.0916", "geom_point": "0101000020E61000003B3C21C758515EC085D7AA3414574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.268862239, 50.683385854000072 ], [ -121.268927315999989, 50.682769057000044 ], [ -121.268854279999971, 50.682765955000079 ], [ -121.26895748599999, 50.681787742000083 ], [ -121.267115385999901, 50.681709510000097 ], [ -121.267493733999956, 50.678124451000066 ], [ -121.26779338599999, 50.67813718000005 ], [ -121.267919784999975, 50.676939259000044 ], [ -121.273570349999929, 50.67717911900008 ], [ -121.27334099899997, 50.679355267000041 ], [ -121.274883350999971, 50.679420688000071 ], [ -121.274818361999976, 50.680037491000093 ], [ -121.274891392999933, 50.680040587000057 ], [ -121.274709806999965, 50.681763921000069 ], [ -121.274513619999979, 50.683625663000086 ], [ -121.274252351999934, 50.683614583000086 ], [ -121.268862239, 50.683385854000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999769176233945", "sL_AssetLoss": "109.1742", "sL_BldgLoss": "109.149", "sL_StrLoss": "109", "sL_NStrLoss": "0.149", "sL_ContLoss": "0.0252", "geom_point": "0101000020E6100000FA99BCF9B4515EC0492A95E813554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.276258213999981, 50.662868287000016 ], [ -121.2777129399999, 50.662929977000047 ], [ -121.277335536999956, 50.666515136000072 ], [ -121.275662379999915, 50.66644418100001 ], [ -121.275770557999977, 50.66528546500011 ], [ -121.275952038999975, 50.662855301000086 ], [ -121.276258213999981, 50.662868287000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999941371576964", "sL_AssetLoss": "435.79545", "sL_BldgLoss": "435.7699", "sL_StrLoss": "435.6", "sL_NStrLoss": "0.1699", "sL_ContLoss": "0.02555", "geom_point": "0101000020E6100000F358F115F6405EC050B3F62D29624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.014658023999985, 50.765004311000077 ], [ -121.017977283000022, 50.765152506000071 ], [ -121.017578245999971, 50.768736330000088 ], [ -121.01191754599995, 50.768483536000105 ], [ -121.01224919099991, 50.765508392000093 ], [ -121.012347599999927, 50.76549460000011 ], [ -121.013216805999932, 50.765400602000021 ], [ -121.013553289999933, 50.765164190000036 ], [ -121.014123177999949, 50.765128593000028 ], [ -121.014658023999985, 50.765004311000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999447313986614", "sL_AssetLoss": "147.6426", "sL_BldgLoss": "147.561", "sL_StrLoss": "147", "sL_NStrLoss": "0.561", "sL_ContLoss": "0.0816", "geom_point": "0101000020E61000006003E0A783535EC000AC2BF22D514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.305081925999943, 50.63282843700005 ], [ -121.306353956999942, 50.632846938000078 ], [ -121.306342959999981, 50.633152913000117 ], [ -121.305975311999973, 50.633650877000036 ], [ -121.305900860999969, 50.63364979500011 ], [ -121.305897007999988, 50.633756935000086 ], [ -121.30558112499989, 50.634184775000023 ], [ -121.305457445999963, 50.63418297500008 ], [ -121.305451044999984, 50.634360955000027 ], [ -121.305221086999921, 50.634672409000061 ], [ -121.304734489999973, 50.635232091000042 ], [ -121.304455998999956, 50.635787294000089 ], [ -121.303703104999926, 50.635776333000045 ], [ -121.303741939999952, 50.634697639000137 ], [ -121.304165966999989, 50.634703812000112 ], [ -121.304195082999968, 50.633894791000081 ], [ -121.304619102999979, 50.633900963 ], [ -121.304638509999933, 50.633361615000076 ], [ -121.305062524999968, 50.633367785000125 ], [ -121.305081925999943, 50.63282843700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999884365084415", "sL_AssetLoss": "344.1867", "sL_BldgLoss": "344.1469", "sL_StrLoss": "344", "sL_NStrLoss": "0.1469", "sL_ContLoss": "0.0398", "geom_point": "0101000020E61000005014F08401565EC079A69F8993694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.341131933999961, 50.826025227000045 ], [ -121.341473811999919, 50.822745276 ], [ -121.342300535999968, 50.822993457000123 ], [ -121.34456811599992, 50.823674120000128 ], [ -121.346995218999922, 50.824402599000109 ], [ -121.346801707999973, 50.826261336000073 ], [ -121.341131933999961, 50.826025227000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999917886099729", "sL_AssetLoss": "88.04843", "sL_BldgLoss": "88.0412", "sL_StrLoss": "88", "sL_NStrLoss": "0.0412", "sL_ContLoss": "0.00723", "geom_point": "0101000020E610000026FE49F8353F5EC0208BE1A8E45F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.986983020999944, 50.749994997000044 ], [ -120.986994588999949, 50.749725377000054 ], [ -120.9865696, 50.749718037000015 ], [ -120.986581170999926, 50.749448418000078 ], [ -120.986156182999949, 50.749441076000075 ], [ -120.986190898999922, 50.748632218000047 ], [ -120.986615877999938, 50.748639558000022 ], [ -120.986627446999989, 50.748369938000081 ], [ -120.988327355999928, 50.748399284000129 ], [ -120.988315797000013, 50.748668905000031 ], [ -120.989165755999949, 50.748683569000079 ], [ -120.989119536, 50.749762050000093 ], [ -120.988269557999928, 50.749747386000152 ], [ -120.988257996999963, 50.750017006000071 ], [ -120.986983020999944, 50.749994997000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999961953759842", "sL_AssetLoss": "103.03252", "sL_BldgLoss": "103.0286", "sL_StrLoss": "103", "sL_NStrLoss": "0.0286", "sL_ContLoss": "0.00392", "geom_point": "0101000020E61000008ACBAFEE71535EC0A098ABD58D514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.303269357999909, 50.636039831000055 ], [ -121.304361532999948, 50.636055733000035 ], [ -121.304494522999974, 50.637153406000046 ], [ -121.304392208999928, 50.637673184000114 ], [ -121.304423879999916, 50.638215160000122 ], [ -121.303191663999883, 50.638197219000055 ], [ -121.303269357999909, 50.636039831000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999766028965614", "sL_AssetLoss": "128.221", "sL_BldgLoss": "128.191", "sL_StrLoss": "128", "sL_NStrLoss": "0.191", "sL_ContLoss": "0.03", "geom_point": "0101000020E6100000DCEFF55A75535EC00AC67718C9664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.304821015999934, 50.804964302000023 ], [ -121.304830778999957, 50.804694636000121 ], [ -121.304405212999896, 50.80468845000005 ], [ -121.304414976999979, 50.804418784000056 ], [ -121.303989414999975, 50.804412597000052 ], [ -121.304008946999915, 50.803873266000132 ], [ -121.303583388999982, 50.803867076000131 ], [ -121.303593156999966, 50.803597411000112 ], [ -121.303167602999949, 50.803591220000108 ], [ -121.30317737299994, 50.803321555000082 ], [ -121.302751822999966, 50.803315363000088 ], [ -121.302790908999953, 50.802236700000016 ], [ -121.303216449999965, 50.802242892000073 ], [ -121.303226218999967, 50.801973227000104 ], [ -121.303651758999962, 50.801979416000016 ], [ -121.303661524999896, 50.801709750000065 ], [ -121.304884729999927, 50.801727534000072 ], [ -121.30491716599991, 50.804965698000117 ], [ -121.304821015999934, 50.804964302000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999379965387079", "sL_AssetLoss": "293.532", "sL_BldgLoss": "293.35", "sL_StrLoss": "292", "sL_NStrLoss": "1.35", "sL_ContLoss": "0.182", "geom_point": "0101000020E6100000C10854DE92505EC0D701C6E9DA5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.25827023, 50.740872998000036 ], [ -121.258286582999958, 50.74071854900005 ], [ -121.258098816999976, 50.740710569000044 ], [ -121.258140899999916, 50.740636393000017 ], [ -121.2583166, 50.739343307000105 ], [ -121.258361403999956, 50.739280605000111 ], [ -121.258830490999955, 50.739208010000084 ], [ -121.259950797999963, 50.739467977000096 ], [ -121.260035804999944, 50.739948257000073 ], [ -121.260105790999958, 50.740343590000116 ], [ -121.259992131999979, 50.741549838000012 ], [ -121.260269006999948, 50.742251901 ], [ -121.259887472999949, 50.742246206000075 ], [ -121.259877474999925, 50.742515869000037 ], [ -121.257327536, 50.742477781000041 ], [ -121.257357153, 50.741680062000029 ], [ -121.257368421999928, 50.741668957000059 ], [ -121.257782553999903, 50.74167514600007 ], [ -121.257792562999924, 50.741405484000055 ], [ -121.258217540999922, 50.74141183400009 ], [ -121.25823755499999, 50.740872510000088 ], [ -121.25827023, 50.740872998000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3342250", "BldgCostT": "2305000", "sL_LossRatio": "0.999936497044844", "sL_AssetLoss": "478.24546", "sL_BldgLoss": "478.21509", "sL_StrLoss": "478.00169", "sL_NStrLoss": "0.2134", "sL_ContLoss": "0.03037", "geom_point": "0101000020E6100000E0A2518984515EC01567770E06594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.270872558999883, 50.697590681000094 ], [ -121.270959391999938, 50.696767600000051 ], [ -121.270525103999915, 50.696749173000036 ], [ -121.270903305999965, 50.693164167000063 ], [ -121.273373960999905, 50.693268972000048 ], [ -121.276555927999965, 50.693403869000029 ], [ -121.276469205999888, 50.694226959000055 ], [ -121.276903470999983, 50.694245363000078 ], [ -121.276525738999936, 50.697830384000049 ], [ -121.273319066999974, 50.69769445300004 ], [ -121.270872558999883, 50.697590681000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9033500", "BldgCostT": "6230000", "sL_LossRatio": "0.9999687600677", "sL_AssetLoss": "1219.913015", "sL_BldgLoss": "1219.874905", "sL_StrLoss": "1219.600865", "sL_NStrLoss": "0.27404", "sL_ContLoss": "0.03811", "geom_point": "0101000020E61000001E5EE711A9475EC02C04208BC0654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.120022272999961, 50.796980397000063 ], [ -121.120207875999981, 50.7952795530001 ], [ -121.117011270999967, 50.795139870000042 ], [ -121.116873919999946, 50.796397730000066 ], [ -121.113723544, 50.796259978000073 ], [ -121.111209170000038, 50.796149971000091 ], [ -121.111405585999961, 50.794353250000043 ], [ -121.111479903999964, 50.793673394000059 ], [ -121.111600959999961, 50.792565931000091 ], [ -121.112769485999962, 50.792617063000101 ], [ -121.117053745999911, 50.792804426000032 ], [ -121.117101486999928, 50.792367157000044 ], [ -121.117191080999987, 50.791546560000086 ], [ -121.12285528299995, 50.791794018000139 ], [ -121.122559720999959, 50.79450413100011 ], [ -121.127705599999913, 50.794728693000131 ], [ -121.127488787999965, 50.796718611000109 ], [ -121.127315079999946, 50.798312780000046 ], [ -121.125577163999949, 50.798236965000086 ], [ -121.125571303999948, 50.798290721000093 ], [ -121.123124730999976, 50.798183947000055 ], [ -121.119906265999973, 50.798043403000108 ], [ -121.120022272999961, 50.796980397000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999945112768681", "sL_AssetLoss": "467.86838", "sL_BldgLoss": "467.8427", "sL_StrLoss": "467.7", "sL_NStrLoss": "0.1427", "sL_ContLoss": "0.02568", "geom_point": "0101000020E610000088B7EFCDC6515EC0C7745390C05A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.278122006999979, 50.71131625000006 ], [ -121.27824226499996, 50.710174937000012 ], [ -121.276553530999962, 50.710103409000112 ], [ -121.276832480999971, 50.707456725000085 ], [ -121.278762683999943, 50.707496637000084 ], [ -121.278741297999986, 50.707663307000047 ], [ -121.27868452599995, 50.709238302000067 ], [ -121.27866378, 50.709813608000026 ], [ -121.278619434999911, 50.711043967000094 ], [ -121.278612075999916, 50.711278799000048 ], [ -121.278610266999976, 50.711336926000051 ], [ -121.278122006999979, 50.71131625000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55904000", "BldgCostT": "38345000", "sL_LossRatio": "0.983264115630077", "sL_AssetLoss": "10771.9793", "sL_BldgLoss": "10591.7007", "sL_StrLoss": "10513.043", "sL_NStrLoss": "78.6577", "sL_ContLoss": "180.2786", "geom_point": "0101000020E610000042A1AF6A9A515EC01207B7525B5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.276455410999944, 50.723875325000108 ], [ -121.276569024999958, 50.722797757000144 ], [ -121.27645986499999, 50.722796143000075 ], [ -121.27639852799993, 50.722854964000092 ], [ -121.276331328999973, 50.722892466000047 ], [ -121.276325034999928, 50.723063961000094 ], [ -121.275944805999984, 50.723058338000087 ], [ -121.275896126999896, 50.723073763000045 ], [ -121.275619527999979, 50.723101364000094 ], [ -121.275322238999976, 50.723049129000088 ], [ -121.274727131999938, 50.723040322000074 ], [ -121.274492864999971, 50.725261270000047 ], [ -121.26883624, 50.725021471000083 ], [ -121.268838171, 50.725003191000035 ], [ -121.267075879999965, 50.724928424000048 ], [ -121.26717172099994, 50.724021261000139 ], [ -121.267053040999912, 50.724016226000082 ], [ -121.26714434499992, 50.723152003000052 ], [ -121.267344649, 50.721255906000096 ], [ -121.269356056999953, 50.721310349000049 ], [ -121.26927536, 50.720509565000022 ], [ -121.270890913999907, 50.720578082000102 ], [ -121.270901683, 50.720285518000047 ], [ -121.272474731999978, 50.720308841000062 ], [ -121.272511626999957, 50.720222564000061 ], [ -121.272581026999902, 50.719511864 ], [ -121.272633034999956, 50.719435515000107 ], [ -121.272650430999974, 50.718962385000097 ], [ -121.273924771999987, 50.71898126100011 ], [ -121.273919351999965, 50.719128786000113 ], [ -121.274354859999931, 50.719257442000085 ], [ -121.27476443099999, 50.719263504000025 ], [ -121.274760253999915, 50.719377199000036 ], [ -121.274810499999958, 50.719392042000088 ], [ -121.27531639399993, 50.7195414850001 ], [ -121.275604098999935, 50.719545741000054 ], [ -121.275601165999944, 50.719625606000079 ], [ -121.276277942999954, 50.719825520000072 ], [ -121.27729335399998, 50.719840532000063 ], [ -121.277282260999982, 50.720142990000085 ], [ -121.277400226999987, 50.720294563000024 ], [ -121.277509926999969, 50.720678864000028 ], [ -121.277439527999931, 50.721162763000017 ], [ -121.277223631999959, 50.721741627000071 ], [ -121.277204343999969, 50.72226752500012 ], [ -121.276929352999929, 50.722263461000097 ], [ -121.276809080999939, 50.722420010000107 ], [ -121.278046914999933, 50.72247242300007 ], [ -121.278053966999948, 50.722280078000047 ], [ -121.278418319000011, 50.722285460000144 ], [ -121.278444755999956, 50.722285851000088 ], [ -121.278455666999932, 50.722182328000024 ], [ -121.278496945999962, 50.721790650000059 ], [ -121.278597368999954, 50.719050360000104 ], [ -121.278172584999965, 50.719044086000046 ], [ -121.278175015999949, 50.718977754000079 ], [ -121.275027685999959, 50.718844451000109 ], [ -121.275036587999935, 50.718760041000117 ], [ -121.275405714999977, 50.715259522000068 ], [ -121.277629400999928, 50.715353715000056 ], [ -121.277846226999955, 50.713296277000012 ], [ -121.27855307699997, 50.713326209000101 ], [ -121.278565241999914, 50.713782078000058 ], [ -121.279169370999938, 50.71454485900005 ], [ -121.279357332999965, 50.714580734000037 ], [ -121.27948843199998, 50.714657392000099 ], [ -121.279949076999941, 50.715152332000038 ], [ -121.280340636999952, 50.715572996000063 ], [ -121.280627163999952, 50.715968163000106 ], [ -121.280755873999979, 50.716145703000109 ], [ -121.280841640999967, 50.716263971000039 ], [ -121.281397087999906, 50.716788003000012 ], [ -121.28145795099999, 50.717127259000129 ], [ -121.28120017, 50.718045415000084 ], [ -121.28093068, 50.719005338000137 ], [ -121.280669899999936, 50.719984597000099 ], [ -121.280405312000013, 50.720986083000071 ], [ -121.280146984999959, 50.721954599000085 ], [ -121.279922823, 50.722791784000059 ], [ -121.279882416999939, 50.722942704000097 ], [ -121.279618698999968, 50.723936201000114 ], [ -121.279348387999988, 50.724950987000042 ], [ -121.279092126999942, 50.725926785000077 ], [ -121.278464679999971, 50.726057779000051 ], [ -121.278048948999967, 50.72622737300005 ], [ -121.277777809999975, 50.726315783000118 ], [ -121.277457648999928, 50.726420162000068 ], [ -121.276579974999947, 50.726781867000071 ], [ -121.275803434999943, 50.727134005000025 ], [ -121.275550587999959, 50.727248676000023 ], [ -121.274852079999917, 50.727514372000087 ], [ -121.273902381999932, 50.727763984000056 ], [ -121.272791679999955, 50.727950985000085 ], [ -121.271456226999973, 50.728131746000052 ], [ -121.270922492999972, 50.728203983000071 ], [ -121.27079181, 50.728225416000029 ], [ -121.268296127999946, 50.728634849000038 ], [ -121.26837127099999, 50.727923485000069 ], [ -121.269226193999927, 50.727959747000035 ], [ -121.269242038999948, 50.727809705000027 ], [ -121.269924225999958, 50.727838636000037 ], [ -121.269943719999972, 50.727654022000095 ], [ -121.270867660999954, 50.727693198000026 ], [ -121.27088698699994, 50.727510144000107 ], [ -121.273182649999939, 50.727607450000043 ], [ -121.273192683999952, 50.727334593000073 ], [ -121.273532161999967, 50.727339622000102 ], [ -121.273733188999969, 50.72543430600011 ], [ -121.275385331999971, 50.725504301000072 ], [ -121.275396185999938, 50.725208719000122 ], [ -121.275821024999971, 50.725215003000088 ], [ -121.27585072299992, 50.724406007000077 ], [ -121.276275552999934, 50.724412290000075 ], [ -121.276295345999969, 50.723872958000101 ], [ -121.276455410999944, 50.723875325000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999243313261897", "sL_AssetLoss": "311.886", "sL_BldgLoss": "311.65", "sL_StrLoss": "310", "sL_NStrLoss": "1.65", "sL_ContLoss": "0.236", "geom_point": "0101000020E6100000462FDD03B8505EC087FE85F5B15E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.258920396999926, 50.739109712000094 ], [ -121.258866858999966, 50.738944679000042 ], [ -121.26129665, 50.739582806000016 ], [ -121.263692011999936, 50.740292403000119 ], [ -121.263412577999986, 50.740523940000074 ], [ -121.261965919999923, 50.740220129000086 ], [ -121.261485706999935, 50.740058214000101 ], [ -121.260035804999944, 50.739948257000073 ], [ -121.259950797999963, 50.739467977000096 ], [ -121.258830490999955, 50.739208010000084 ], [ -121.258920396999926, 50.739109712000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053333", "BldgCostT": "6933333", "sL_LossRatio": "0.999843543952974", "sL_AssetLoss": "1744.899", "sL_BldgLoss": "1744.626", "sL_StrLoss": "1743", "sL_NStrLoss": "1.626", "sL_ContLoss": "0.273", "geom_point": "0101000020E6100000C729BECAEF4F5EC03F2A0F1C615F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.24665558399991, 50.743431007 ], [ -121.252314412999965, 50.743671924000068 ], [ -121.252229738999972, 50.744470496000133 ], [ -121.252173055999975, 50.745005075000023 ], [ -121.251304029999915, 50.745898984000114 ], [ -121.24956040099994, 50.746865893000098 ], [ -121.248803021999905, 50.747123381000058 ], [ -121.246275019999985, 50.747015719000053 ], [ -121.246411677999902, 50.745728539000019 ], [ -121.24665558399991, 50.743431007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26527750", "BldgCostT": "18295000", "sL_LossRatio": "0.999882949547512", "sL_AssetLoss": "4723.51869", "sL_BldgLoss": "4722.9658", "sL_StrLoss": "4720", "sL_NStrLoss": "2.9658", "sL_ContLoss": "0.55289", "geom_point": "0101000020E6100000F050F3D96A4F5EC0BB6E9DC1D75E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.241339006999979, 50.742974694000111 ], [ -121.241383655999982, 50.74255454900004 ], [ -121.240119454999899, 50.742500627000034 ], [ -121.240101222999968, 50.742672143000121 ], [ -121.234442585999915, 50.742430608000049 ], [ -121.234667897999913, 50.740313414000084 ], [ -121.234824056999955, 50.73884591800001 ], [ -121.23700832599998, 50.738939186000088 ], [ -121.23702656899999, 50.738767669000069 ], [ -121.242684757999911, 50.739009075000105 ], [ -121.242640123999976, 50.739429221000137 ], [ -121.247378223999988, 50.739631149000083 ], [ -121.247268239999983, 50.740667452000139 ], [ -121.246997749999963, 50.743215879000061 ], [ -121.241339006999979, 50.742974694000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12114750", "BldgCostT": "8355000", "sL_LossRatio": "0.999947534461849", "sL_AssetLoss": "1760.96545", "sL_BldgLoss": "1760.87306", "sL_StrLoss": "1760.30142", "sL_NStrLoss": "0.57164", "sL_ContLoss": "0.09239", "geom_point": "0101000020E61000007F29A84D81505EC01B2D077AA85D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.256835001999931, 50.732644374000088 ], [ -121.255796097999976, 50.73228462 ], [ -121.255416784999952, 50.732006539000068 ], [ -121.255355650999917, 50.731246969000026 ], [ -121.255241472999927, 50.730735112000062 ], [ -121.255223732999951, 50.730504631000038 ], [ -121.255521652999903, 50.729413743000059 ], [ -121.25641926499992, 50.729123295000107 ], [ -121.257226119000038, 50.729093485000099 ], [ -121.257225603000023, 50.729056523000111 ], [ -121.257246081999952, 50.729057394000101 ], [ -121.25955636499998, 50.729155599000137 ], [ -121.259484294999965, 50.729836583000129 ], [ -121.260411380999983, 50.729875977000077 ], [ -121.260122285999969, 50.73260795 ], [ -121.260201007999953, 50.732611294000087 ], [ -121.259949473999939, 50.73282549500005 ], [ -121.259365470999938, 50.73340288200005 ], [ -121.259138118999914, 50.733693719000023 ], [ -121.258915294999937, 50.733978791000048 ], [ -121.258587176999981, 50.734527493000073 ], [ -121.258379595999912, 50.735048086000056 ], [ -121.258268068999953, 50.735327778000105 ], [ -121.258095181999948, 50.73598118000011 ], [ -121.258076806999938, 50.736121951000072 ], [ -121.257113041999929, 50.736080983000122 ], [ -121.257300494999981, 50.732682803000081 ], [ -121.256835001999931, 50.732644374000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39542667", "BldgCostT": "25796667", "sL_LossRatio": "0.999515994005444", "sL_AssetLoss": "5922.2407", "sL_BldgLoss": "5919.3743", "sL_StrLoss": "5900.5573", "sL_NStrLoss": "18.817", "sL_ContLoss": "2.8664", "geom_point": "0101000020E6100000926D5CD6EF505EC047DEA42FA55E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.259992131999979, 50.741549838000012 ], [ -121.260105790999958, 50.740343590000116 ], [ -121.260035804999944, 50.739948257000073 ], [ -121.261485706999935, 50.740058214000101 ], [ -121.261965919999923, 50.740220129000086 ], [ -121.263412577999986, 50.740523940000074 ], [ -121.263692011999936, 50.740292403000119 ], [ -121.26129665, 50.739582806000016 ], [ -121.258866858999966, 50.738944679000042 ], [ -121.258767921999933, 50.738639702000093 ], [ -121.258976592999957, 50.738364795000052 ], [ -121.258957883999969, 50.738058604000059 ], [ -121.259400213000021, 50.737236894 ], [ -121.259415260999944, 50.737165603000044 ], [ -121.263636963999957, 50.737344905000072 ], [ -121.263610386, 50.737596213000117 ], [ -121.264297657999947, 50.737625387000044 ], [ -121.264285906999959, 50.737736510000055 ], [ -121.264661362, 50.737752446000052 ], [ -121.264742791999979, 50.736982320000045 ], [ -121.270400901999935, 50.737222322000044 ], [ -121.270270982999975, 50.738452496000079 ], [ -121.270022288999883, 50.740807140000086 ], [ -121.266015418999942, 50.740637210000088 ], [ -121.265825005999901, 50.742438337000095 ], [ -121.265193432999936, 50.742411538000077 ], [ -121.260314244999947, 50.742204390000012 ], [ -121.260312459999938, 50.742252550000025 ], [ -121.260269006999948, 50.742251901 ], [ -121.259992131999979, 50.741549838000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70392667", "BldgCostT": "48546667", "sL_LossRatio": "0.99983464772583", "sL_AssetLoss": "12840.28303", "sL_BldgLoss": "12838.15986", "sL_StrLoss": "12825.00736", "sL_NStrLoss": "13.1525", "sL_ContLoss": "2.12317", "geom_point": "0101000020E6100000B91E3B5E77515EC055532F4BFD5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.271581541999979, 50.739883817000148 ], [ -121.271609943, 50.739614844000087 ], [ -121.27106864299995, 50.739591903000075 ], [ -121.27110179, 50.739278001000116 ], [ -121.270603748999946, 50.739256891000146 ], [ -121.270693218999952, 50.738409679 ], [ -121.270982302999954, 50.735672065000138 ], [ -121.271437758999937, 50.735691369000023 ], [ -121.271468162999909, 50.73540338700014 ], [ -121.271195435999985, 50.735399344000029 ], [ -121.271205365999933, 50.735129679000067 ], [ -121.270780439999967, 50.735123377000043 ], [ -121.270790370999961, 50.734853713000106 ], [ -121.270365446999975, 50.734847408000036 ], [ -121.270375380999965, 50.734577744000056 ], [ -121.269525540999979, 50.7345651320001 ], [ -121.269515600999938, 50.734834796000051 ], [ -121.268240832999965, 50.734815866000133 ], [ -121.268250779999988, 50.734546202000068 ], [ -121.267825860999977, 50.734539889000075 ], [ -121.267832388999949, 50.734362928000017 ], [ -121.267754027999942, 50.734405964000068 ], [ -121.267368427999926, 50.734118064000043 ], [ -121.267582228999956, 50.73399936400002 ], [ -121.267548721000011, 50.733975818000047 ], [ -121.262145403999924, 50.733746473000096 ], [ -121.26224363099999, 50.732817882000084 ], [ -121.262888896000021, 50.732199414000057 ], [ -121.263788805999965, 50.731628292000075 ], [ -121.264811804999951, 50.731156910000045 ], [ -121.266351596, 50.730533102000081 ], [ -121.26713760199999, 50.730346503000071 ], [ -121.269105305, 50.730033205000034 ], [ -121.270120503, 50.729752610000034 ], [ -121.271376189999913, 50.729563209000084 ], [ -121.276888990999979, 50.729133090000062 ], [ -121.278074577999917, 50.728881001000069 ], [ -121.27890702299996, 50.728577702000095 ], [ -121.280476894999978, 50.72819380100011 ], [ -121.280500771999982, 50.728252057000091 ], [ -121.281235366999937, 50.728262890000032 ], [ -121.281245234999943, 50.727993224000066 ], [ -121.282519827999963, 50.72801201000005 ], [ -121.282503406999979, 50.728460960000142 ], [ -121.282402016999981, 50.728420908000025 ], [ -121.282252302999936, 50.728426287000048 ], [ -121.28217848099996, 50.72844978900013 ], [ -121.282112659999953, 50.728470790000124 ], [ -121.282028800999939, 50.728524847000067 ], [ -121.281714384999987, 50.72854305900011 ], [ -121.281611879999957, 50.728585543000115 ], [ -121.281533605999925, 50.728681243000011 ], [ -121.281500547999912, 50.729021931 ], [ -121.281451531999963, 50.729082870000113 ], [ -121.281320556999944, 50.729125957000115 ], [ -121.281069840999976, 50.729145960000068 ], [ -121.280879564, 50.729190249000084 ], [ -121.28079168499994, 50.729210689000098 ], [ -121.278986603999897, 50.729920118000102 ], [ -121.278657627999934, 50.730049405000059 ], [ -121.2778648, 50.730361937000055 ], [ -121.276766830999961, 50.730794725000052 ], [ -121.275411475999988, 50.731328922000067 ], [ -121.275257701999962, 50.731318821000045 ], [ -121.275108080999956, 50.731504598000107 ], [ -121.274917647999942, 50.731741031000112 ], [ -121.27485021499993, 50.731814689000075 ], [ -121.272431046999984, 50.73232343600003 ], [ -121.272439988999977, 50.73235006500002 ], [ -121.272494686999934, 50.73251430400007 ], [ -121.273404271999979, 50.733225293000025 ], [ -121.273543316999934, 50.733429194000053 ], [ -121.273890198999979, 50.733831008000024 ], [ -121.274216483999936, 50.734056957000043 ], [ -121.274893225999961, 50.734525533000109 ], [ -121.274920272999964, 50.734544271000097 ], [ -121.276333101999924, 50.735522494000058 ], [ -121.276660213999889, 50.735694697000085 ], [ -121.27724829899995, 50.735870912000081 ], [ -121.279471883999989, 50.736423638000097 ], [ -121.280370207999951, 50.736646951000061 ], [ -121.280377272999942, 50.736648702000103 ], [ -121.280700807999921, 50.736705581000102 ], [ -121.280984206999918, 50.736755401000039 ], [ -121.281831482999976, 50.736777776000032 ], [ -121.281785590999959, 50.736936503000024 ], [ -121.28157880399999, 50.737651538000101 ], [ -121.281395591999939, 50.738285176000041 ], [ -121.281359456999951, 50.738387557000117 ], [ -121.281006271999971, 50.739388407000021 ], [ -121.278576510000022, 50.739285615000021 ], [ -121.278553776999914, 50.73950124200006 ], [ -121.277907226999957, 50.73947388000002 ], [ -121.277870764999946, 50.739819658000037 ], [ -121.277274756999972, 50.739794432000103 ], [ -121.277240056999986, 50.740123472000064 ], [ -121.271581541999979, 50.739883817000148 ] ], [ [ -121.267853875999919, 50.733780480000078 ], [ -121.267869435999984, 50.733358685000063 ], [ -121.267826873999951, 50.733761530000088 ], [ -121.267853875999919, 50.733780480000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999974547411493", "sL_AssetLoss": "284.45044", "sL_BldgLoss": "284.4432", "sL_StrLoss": "284.4", "sL_NStrLoss": "0.0432", "sL_ContLoss": "0.00724", "geom_point": "0101000020E6100000369D537FB3505EC07B7EFF831B5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.261521810999938, 50.73350970000012 ], [ -121.261771085999982, 50.733270789000066 ], [ -121.261454255999979, 50.736265454000019 ], [ -121.259621696999929, 50.736187603000054 ], [ -121.25964042, 50.736098899000105 ], [ -121.260145293, 50.735522099000065 ], [ -121.261521810999938, 50.73350970000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999844039960817", "sL_AssetLoss": "114.1318", "sL_BldgLoss": "114.114", "sL_StrLoss": "114", "sL_NStrLoss": "0.114", "sL_ContLoss": "0.0178", "geom_point": "0101000020E61000000E3DF758D9505EC0E04EBF97845D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.263764637999913, 50.730214310000044 ], [ -121.264368112999975, 50.730239931000057 ], [ -121.263154911999919, 50.730772397000116 ], [ -121.262461213999984, 50.731139796000022 ], [ -121.262417258000013, 50.731176418000103 ], [ -121.262450714999943, 50.730860099000104 ], [ -121.26250937899999, 50.730826787000069 ], [ -121.262893881999958, 50.730639182000104 ], [ -121.263764637999913, 50.730214310000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999985073577373", "sL_AssetLoss": "278.03045", "sL_BldgLoss": "278.0263", "sL_StrLoss": "278", "sL_NStrLoss": "0.0263", "sL_ContLoss": "0.00415", "geom_point": "0101000020E6100000FCEC576C99505EC02C508350FB5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.260201007999953, 50.732611294000087 ], [ -121.260992220999967, 50.732644910000083 ], [ -121.260362421, 50.73345560500011 ], [ -121.26009999899999, 50.734009600000071 ], [ -121.259723801999954, 50.734238912000087 ], [ -121.259305801999986, 50.734817099000061 ], [ -121.25919318899993, 50.735156104000069 ], [ -121.259172310999929, 50.735389705000024 ], [ -121.258777587999973, 50.735663096000089 ], [ -121.25859699399993, 50.735948015000105 ], [ -121.25853949199994, 50.73614161600009 ], [ -121.258076806999938, 50.736121951000072 ], [ -121.258095181999948, 50.73598118000011 ], [ -121.258268068999953, 50.735327778000105 ], [ -121.258379595999912, 50.735048086000056 ], [ -121.258587176999981, 50.734527493000073 ], [ -121.258915294999937, 50.733978791000048 ], [ -121.259138118999914, 50.733693719000023 ], [ -121.259365470999938, 50.73340288200005 ], [ -121.259949473999939, 50.73282549500005 ], [ -121.260201007999953, 50.732611294000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "0.999790344285808", "sL_AssetLoss": "912.4483", "sL_BldgLoss": "912.257", "sL_StrLoss": "911", "sL_NStrLoss": "1.257", "sL_ContLoss": "0.1913", "geom_point": "0101000020E610000058AAEA69B0515EC0B4036C0F145D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.279589589999929, 50.725856927000052 ], [ -121.279959225, 50.725853677000039 ], [ -121.280507732999951, 50.725973206000063 ], [ -121.28111575399997, 50.72642875800004 ], [ -121.280076504999954, 50.726860088000109 ], [ -121.279016703999943, 50.72716770200006 ], [ -121.276610292999948, 50.727465397000046 ], [ -121.273580922999912, 50.728149002000059 ], [ -121.271975508999972, 50.728277203000076 ], [ -121.269162504999926, 50.728829707000102 ], [ -121.268264709000036, 50.728932292000088 ], [ -121.268296127999946, 50.728634849000038 ], [ -121.27079181, 50.728225416000029 ], [ -121.270922492999972, 50.728203983000071 ], [ -121.271456226999973, 50.728131746000052 ], [ -121.272791679999955, 50.727950985000085 ], [ -121.273902381999932, 50.727763984000056 ], [ -121.274852079999917, 50.727514372000087 ], [ -121.275550587999959, 50.727248676000023 ], [ -121.275803434999943, 50.727134005000025 ], [ -121.276579974999947, 50.726781867000071 ], [ -121.277457648999928, 50.726420162000068 ], [ -121.277777809999975, 50.726315783000118 ], [ -121.278048948999967, 50.72622737300005 ], [ -121.278464679999971, 50.726057779000051 ], [ -121.279092126999942, 50.725926785000077 ], [ -121.279589589999929, 50.725856927000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74995749", "BldgCostT": "51039999", "sL_LossRatio": "0.987803042420054", "sL_AssetLoss": "15663.5373", "sL_BldgLoss": "15472.4898", "sL_StrLoss": "15374.1178", "sL_NStrLoss": "98.372", "sL_ContLoss": "191.0475", "geom_point": "0101000020E6100000EF5921F6D3515EC0D6532FE8D25D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.276660213999889, 50.735694697000085 ], [ -121.276333101999924, 50.735522494000058 ], [ -121.274920272999964, 50.734544271000097 ], [ -121.274893225999961, 50.734525533000109 ], [ -121.274216483999936, 50.734056957000043 ], [ -121.273890198999979, 50.733831008000024 ], [ -121.273543316999934, 50.733429194000053 ], [ -121.273404271999979, 50.733225293000025 ], [ -121.272494686999934, 50.73251430400007 ], [ -121.272439988999977, 50.73235006500002 ], [ -121.272431046999984, 50.73232343600003 ], [ -121.27485021499993, 50.731814689000075 ], [ -121.274917647999942, 50.731741031000112 ], [ -121.275108080999956, 50.731504598000107 ], [ -121.275257701999962, 50.731318821000045 ], [ -121.275411475999988, 50.731328922000067 ], [ -121.276766830999961, 50.730794725000052 ], [ -121.2778648, 50.730361937000055 ], [ -121.278657627999934, 50.730049405000059 ], [ -121.278986603999897, 50.729920118000102 ], [ -121.28079168499994, 50.729210689000098 ], [ -121.280879564, 50.729190249000084 ], [ -121.281069840999976, 50.729145960000068 ], [ -121.281320556999944, 50.729125957000115 ], [ -121.281451531999963, 50.729082870000113 ], [ -121.281500547999912, 50.729021931 ], [ -121.281533605999925, 50.728681243000011 ], [ -121.281611879999957, 50.728585543000115 ], [ -121.281714384999987, 50.72854305900011 ], [ -121.282028800999939, 50.728524847000067 ], [ -121.282112659999953, 50.728470790000124 ], [ -121.28217848099996, 50.72844978900013 ], [ -121.282252302999936, 50.728426287000048 ], [ -121.282402016999981, 50.728420908000025 ], [ -121.282503406999979, 50.728460960000142 ], [ -121.28247255699992, 50.7293044890001 ], [ -121.28244708299998, 50.729366412000054 ], [ -121.282393678999966, 50.729496265000137 ], [ -121.281901974999926, 50.730691492000055 ], [ -121.281813455999924, 50.730906710000035 ], [ -121.281775752, 50.731120694000083 ], [ -121.281725145999971, 50.731407991000047 ], [ -121.281726469999967, 50.731934691000049 ], [ -121.281816450999955, 50.732641464000032 ], [ -121.281886616999941, 50.733192771000077 ], [ -121.28199000199993, 50.73405947400002 ], [ -121.282004237999942, 50.734598673000022 ], [ -121.282015616999942, 50.735030065000061 ], [ -121.281983134999933, 50.735574549000056 ], [ -121.281818282999907, 50.735567577000033 ], [ -121.28180899099999, 50.735821520000052 ], [ -121.281968, 50.735828244000075 ], [ -121.281945174000029, 50.736210870000022 ], [ -121.281831482999976, 50.736777776000032 ], [ -121.280984206999918, 50.736755401000039 ], [ -121.280700807999921, 50.736705581000102 ], [ -121.280377272999942, 50.736648702000103 ], [ -121.280370207999951, 50.736646951000061 ], [ -121.279471883999989, 50.736423638000097 ], [ -121.27724829899995, 50.735870912000081 ], [ -121.276660213999889, 50.735694697000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15268500", "BldgCostT": "10530000", "sL_LossRatio": "0.999759925734855", "sL_AssetLoss": "2945.3386", "sL_BldgLoss": "2944.6315", "sL_StrLoss": "2940.0105", "sL_NStrLoss": "4.621", "sL_ContLoss": "0.7071", "geom_point": "0101000020E6100000C3576C7A6D545EC0C3E8EA75285C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.320931753999929, 50.723715020000057 ], [ -121.32096141699995, 50.722885270000084 ], [ -121.319018161999963, 50.722803731000063 ], [ -121.319150056999945, 50.721541338000108 ], [ -121.319028445999976, 50.721536234000077 ], [ -121.31904352899997, 50.721391872000048 ], [ -121.318155825999966, 50.721354611000059 ], [ -121.318157981999917, 50.72133398500003 ], [ -121.317727016, 50.721315893000074 ], [ -121.317419703, 50.721302991000186 ], [ -121.317434649999953, 50.721159983000099 ], [ -121.316419676999942, 50.721117364000065 ], [ -121.316445832999989, 50.72086716300003 ], [ -121.314461425999923, 50.720783812 ], [ -121.31450514799999, 50.720365743000094 ], [ -121.312751795999986, 50.720292066000091 ], [ -121.312773978999985, 50.720080039000045 ], [ -121.311013150999941, 50.720006021000117 ], [ -121.31118985099998, 50.718317545000026 ], [ -121.311242670999931, 50.717812805000037 ], [ -121.311302925999939, 50.717236990000096 ], [ -121.311388313999913, 50.716420976000045 ], [ -121.314451511999948, 50.716549722000103 ], [ -121.314459020999934, 50.716477916000095 ], [ -121.31502670899998, 50.716704002000043 ], [ -121.315555477999936, 50.716612896000115 ], [ -121.315989905999956, 50.716726806000082 ], [ -121.316480965, 50.716924771000073 ], [ -121.316661103999948, 50.716997389000028 ], [ -121.317179181999961, 50.717313262000069 ], [ -121.317672609999974, 50.717614098000098 ], [ -121.31842938599999, 50.71781349900008 ], [ -121.319302350999962, 50.718189735000117 ], [ -121.319810685, 50.718408798000098 ], [ -121.320250456999972, 50.718445142000071 ], [ -121.320603405999975, 50.718474309000015 ], [ -121.321538303999944, 50.718838909000063 ], [ -121.323146515999937, 50.719032601000038 ], [ -121.323294760999957, 50.719080831000056 ], [ -121.324044019, 50.719324598000078 ], [ -121.324174067999977, 50.719337887000073 ], [ -121.324718210999947, 50.719393482000029 ], [ -121.325270600999943, 50.7194498960001 ], [ -121.325333748999938, 50.719468677000087 ], [ -121.327080489, 50.719988295000078 ], [ -121.327309835999969, 50.720020313000084 ], [ -121.328039645999979, 50.720122251000106 ], [ -121.327445070999943, 50.72129062000009 ], [ -121.327240100999973, 50.721693394000049 ], [ -121.326814188999947, 50.722481206000054 ], [ -121.326620018000014, 50.722876198000108 ], [ -121.324700365999931, 50.722795747000077 ], [ -121.32467477299997, 50.723040989000062 ], [ -121.324358520999937, 50.723027732000098 ], [ -121.323507873999944, 50.722992069000064 ], [ -121.32350001199994, 50.723212365000101 ], [ -121.323075180999979, 50.723206254000019 ], [ -121.323065553999925, 50.723475926000035 ], [ -121.322640721999917, 50.72346981400009 ], [ -121.322631090999948, 50.723739486000049 ], [ -121.320931753999929, 50.723715020000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8441417", "BldgCostT": "5821667", "sL_LossRatio": "0.999776301051956", "sL_AssetLoss": "1541.8043", "sL_BldgLoss": "1541.4594", "sL_StrLoss": "1539.0094", "sL_NStrLoss": "2.45", "sL_ContLoss": "0.3449", "geom_point": "0101000020E6100000BB664D87E9555EC0441DF38DAA5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.338148504999936, 50.706629205000091 ], [ -121.338034649999884, 50.706376888000101 ], [ -121.34357911599993, 50.706608585000055 ], [ -121.343553859999957, 50.706851691000104 ], [ -121.345035181999933, 50.706913547000113 ], [ -121.344662786999976, 50.710498745000052 ], [ -121.343672586999944, 50.710457399000127 ], [ -121.34358888599999, 50.711262968000057 ], [ -121.341464118999937, 50.711174219000057 ], [ -121.341542252999943, 50.711044716000075 ], [ -121.342063056999962, 50.71034443000007 ], [ -121.342184150999955, 50.710105404000068 ], [ -121.342219482999909, 50.709768796000063 ], [ -121.342016603000033, 50.709247157000057 ], [ -121.341777053999976, 50.70889453300002 ], [ -121.341594224999966, 50.70873772300012 ], [ -121.341227680999964, 50.70856555500005 ], [ -121.340807777999927, 50.708404797000107 ], [ -121.340417752999912, 50.708199601000061 ], [ -121.340287955999955, 50.708048819000027 ], [ -121.339463711999883, 50.707908087000092 ], [ -121.339118801999973, 50.707668785000045 ], [ -121.338148504999936, 50.706629205000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5239333", "BldgCostT": "3613333", "sL_LossRatio": "0.999717922888155", "sL_AssetLoss": "1015.3252", "sL_BldgLoss": "1015.0388", "sL_StrLoss": "1013.0128", "sL_NStrLoss": "2.026", "sL_ContLoss": "0.2864", "geom_point": "0101000020E6100000F3E589106C545EC08525FD41CD5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.31842938599999, 50.71781349900008 ], [ -121.317672609999974, 50.717614098000098 ], [ -121.317179181999961, 50.717313262000069 ], [ -121.316661103999948, 50.716997389000028 ], [ -121.316480965, 50.716924771000073 ], [ -121.315989905999956, 50.716726806000082 ], [ -121.315555477999936, 50.716612896000115 ], [ -121.31502670899998, 50.716704002000043 ], [ -121.314459020999934, 50.716477916000095 ], [ -121.314537118999937, 50.715731049000077 ], [ -121.320192816999921, 50.715968536000069 ], [ -121.320041500999977, 50.71741731700007 ], [ -121.320492204999979, 50.717436230000033 ], [ -121.32046607499997, 50.717686434000029 ], [ -121.320595494000017, 50.717691865000035 ], [ -121.322450353999969, 50.717769678000067 ], [ -121.322435424999981, 50.717912688000084 ], [ -121.323450328999925, 50.71795525200011 ], [ -121.323448176999989, 50.717975878000118 ], [ -121.323956299, 50.717997184000083 ], [ -121.323294760999957, 50.719080831000056 ], [ -121.323146515999937, 50.719032601000038 ], [ -121.321538303999944, 50.718838909000063 ], [ -121.320603405999975, 50.718474309000015 ], [ -121.320250456999972, 50.718445142000071 ], [ -121.319810685, 50.718408798000098 ], [ -121.319302350999962, 50.718189735000117 ], [ -121.31842938599999, 50.71781349900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9748084", "BldgCostT": "6513334", "sL_LossRatio": "0.88327858454805", "sL_AssetLoss": "2016.8484", "sL_BldgLoss": "1781.439", "sL_StrLoss": "1693.0799", "sL_NStrLoss": "88.3591", "sL_ContLoss": "235.4094", "geom_point": "0101000020E610000066142E5828555EC0BF5994232E5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.332778729999944, 50.702856795000088 ], [ -121.333663835999985, 50.702893846000102 ], [ -121.333449337999966, 50.704954118000053 ], [ -121.333019634999943, 50.705728158000078 ], [ -121.332654292999976, 50.706452389000084 ], [ -121.331174299999944, 50.706390422000077 ], [ -121.327635995000023, 50.70624219600009 ], [ -121.328009715999883, 50.702657038000034 ], [ -121.332778729999944, 50.702856795000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544333", "BldgCostT": "4513333", "sL_LossRatio": "0.999917937914815", "sL_AssetLoss": "997.65927", "sL_BldgLoss": "997.5774", "sL_StrLoss": "997.0027", "sL_NStrLoss": "0.5747", "sL_ContLoss": "0.08187", "geom_point": "0101000020E61000006851E971A9555EC0D196521B455C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.334930190999927, 50.722269562000037 ], [ -121.335131899999922, 50.720332310000053 ], [ -121.33547138599999, 50.720280195000022 ], [ -121.335819295999968, 50.720419814000074 ], [ -121.336317792999964, 50.720768705000033 ], [ -121.3371671, 50.72157201000006 ], [ -121.337882159999978, 50.721894895000091 ], [ -121.338012536999926, 50.720163052000096 ], [ -121.337982315999966, 50.719889858000059 ], [ -121.337648138999924, 50.718927002 ], [ -121.337639391999915, 50.7187821260001 ], [ -121.340959641, 50.718920881000052 ], [ -121.340586819999928, 50.722506014000047 ], [ -121.334930190999927, 50.722269562000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "0.999602407085989", "sL_AssetLoss": "642.8686", "sL_BldgLoss": "642.613", "sL_StrLoss": "641", "sL_NStrLoss": "1.613", "sL_ContLoss": "0.2556", "geom_point": "0101000020E6100000FB452297EC545EC0FB53780A985B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.326824496999961, 50.714034036000065 ], [ -121.328787428999988, 50.714116280000091 ], [ -121.327291457999962, 50.717080440000082 ], [ -121.324938305, 50.716621079000085 ], [ -121.324985650999935, 50.716167297000034 ], [ -121.325213284000014, 50.716176839000049 ], [ -121.325269968999976, 50.715633503000035 ], [ -121.325977727999941, 50.715663170000099 ], [ -121.325995746999936, 50.715490419000027 ], [ -121.326257271999964, 50.715501381000109 ], [ -121.32630555899999, 50.715038426000064 ], [ -121.326509494999954, 50.715046973000057 ], [ -121.326558977, 50.714572531000066 ], [ -121.32676742799994, 50.71458126700005 ], [ -121.326824496999961, 50.714034036000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999664183188071", "sL_AssetLoss": "600.3273", "sL_BldgLoss": "600.1257", "sL_StrLoss": "599", "sL_NStrLoss": "1.1257", "sL_ContLoss": "0.2016", "geom_point": "0101000020E61000000C088C7906555EC08FD16CE45B5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.327445070999943, 50.72129062000009 ], [ -121.328039645999979, 50.720122251000106 ], [ -121.328884907999935, 50.72024030500004 ], [ -121.330701900999898, 50.719937415000103 ], [ -121.330640378999988, 50.720527754000059 ], [ -121.330021841999908, 50.720501855000052 ], [ -121.330002661999984, 50.720685869000121 ], [ -121.329566417999914, 50.720667602000063 ], [ -121.329324367999959, 50.72298947899999 ], [ -121.326620018000014, 50.722876198000108 ], [ -121.326814188999947, 50.722481206000054 ], [ -121.327240100999973, 50.721693394000049 ], [ -121.327445070999943, 50.72129062000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37430500", "BldgCostT": "24340000", "sL_LossRatio": "0.998790645546907", "sL_AssetLoss": "7064.4301", "sL_BldgLoss": "7055.8867", "sL_StrLoss": "6989.3987", "sL_NStrLoss": "66.488", "sL_ContLoss": "8.5434", "geom_point": "0101000020E61000004787F2CB01525EC076AA9DDDB15B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.280507732999951, 50.725973206000063 ], [ -121.279959225, 50.725853677000039 ], [ -121.279589589999929, 50.725856927000052 ], [ -121.279092126999942, 50.725926785000077 ], [ -121.279348387999988, 50.724950987000042 ], [ -121.279618698999968, 50.723936201000114 ], [ -121.279882416999939, 50.722942704000097 ], [ -121.279922823, 50.722791784000059 ], [ -121.280146984999959, 50.721954599000085 ], [ -121.280405312000013, 50.720986083000071 ], [ -121.280669899999936, 50.719984597000099 ], [ -121.28093068, 50.719005338000137 ], [ -121.28120017, 50.718045415000084 ], [ -121.28145795099999, 50.717127259000129 ], [ -121.281397087999906, 50.716788003000012 ], [ -121.280841640999967, 50.716263971000039 ], [ -121.280755873999979, 50.716145703000109 ], [ -121.280627163999952, 50.715968163000106 ], [ -121.280340636999952, 50.715572996000063 ], [ -121.279949076999941, 50.715152332000038 ], [ -121.27948843199998, 50.714657392000099 ], [ -121.279357332999965, 50.714580734000037 ], [ -121.279169370999938, 50.71454485900005 ], [ -121.278565241999914, 50.713782078000058 ], [ -121.27855307699997, 50.713326209000101 ], [ -121.278806694999943, 50.713336947000059 ], [ -121.278814726999954, 50.713117700000033 ], [ -121.279192031999941, 50.713123271000022 ], [ -121.279236527999956, 50.713017463000099 ], [ -121.279243709999946, 50.71300779900006 ], [ -121.27925920499996, 50.712584639000092 ], [ -121.279557207999943, 50.712589038000033 ], [ -121.279687970999987, 50.712480572000068 ], [ -121.27972810699994, 50.711384254000023 ], [ -121.278610266999976, 50.711336926000051 ], [ -121.278612075999916, 50.711278799000048 ], [ -121.278619434999911, 50.711043967000094 ], [ -121.27866378, 50.709813608000026 ], [ -121.27868452599995, 50.709238302000067 ], [ -121.278741297999986, 50.707663307000047 ], [ -121.278762683999943, 50.707496637000084 ], [ -121.278780961999985, 50.707354399000096 ], [ -121.278981267999896, 50.706894755000057 ], [ -121.279132504999964, 50.706645485000081 ], [ -121.27915832199993, 50.706612759000052 ], [ -121.282585700999903, 50.706757834000044 ], [ -121.282523502999979, 50.707348736000057 ], [ -121.282465562999974, 50.707899155000071 ], [ -121.283578508999952, 50.707946241000052 ], [ -121.28304578499997, 50.709204108000051 ], [ -121.282864207999964, 50.709911989000062 ], [ -121.282779406999964, 50.711017206000093 ], [ -121.282664202999953, 50.711508510000037 ], [ -121.28184953799996, 50.711474041000031 ], [ -121.281777969999936, 50.713431233000072 ], [ -121.28135323599993, 50.713424971000052 ], [ -121.28135251399999, 50.713444708000083 ], [ -121.282093214999946, 50.713476049000072 ], [ -121.282105417999958, 50.713614901000049 ], [ -121.282008580999928, 50.714288593000063 ], [ -121.282028086999972, 50.714908107000021 ], [ -121.282185905999953, 50.716026101000089 ], [ -121.28295899799997, 50.717386187000066 ], [ -121.283910001999985, 50.720062291000048 ], [ -121.284462680999965, 50.721986400000063 ], [ -121.284347509999932, 50.723181283000066 ], [ -121.284025810999964, 50.723823695000128 ], [ -121.282916206999985, 50.725156687000087 ], [ -121.282748735999988, 50.725300322000095 ], [ -121.282619189999963, 50.725294842000039 ], [ -121.282614790999943, 50.725415201000061 ], [ -121.281730506999963, 50.726173595000049 ], [ -121.28111575399997, 50.72642875800004 ], [ -121.280507732999951, 50.725973206000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11305250", "BldgCostT": "7325000", "sL_LossRatio": "0.999535027907888", "sL_AssetLoss": "1620.9575", "sL_BldgLoss": "1620.2038", "sL_StrLoss": "1615.1038", "sL_NStrLoss": "5.1", "sL_ContLoss": "0.7537", "geom_point": "0101000020E61000000BF2717559555EC01188BE586B584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.33373921399999, 50.688981983000083 ], [ -121.336597902, 50.68910163900005 ], [ -121.33626455199996, 50.692306466000076 ], [ -121.336224979999926, 50.692686884000096 ], [ -121.330572129999936, 50.692450203000078 ], [ -121.330945501999949, 50.688864976000097 ], [ -121.33373921399999, 50.688981983000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99988055981569", "sL_AssetLoss": "220.1939", "sL_BldgLoss": "220.1676", "sL_StrLoss": "220", "sL_NStrLoss": "0.1676", "sL_ContLoss": "0.0263", "geom_point": "0101000020E6100000F970E20E08525EC0FA0A56C5E9594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.280878672999918, 50.703165097000131 ], [ -121.280888536999953, 50.70289543000009 ], [ -121.280563324999918, 50.702890633000017 ], [ -121.280485587999948, 50.70229627300003 ], [ -121.28049349399997, 50.702080165 ], [ -121.280918123999953, 50.70208642900014 ], [ -121.28092798599998, 50.701816762000099 ], [ -121.283051121999961, 50.701848058000117 ], [ -121.283021570999921, 50.702657060000021 ], [ -121.282596938, 50.702650804000044 ], [ -121.282587083999942, 50.702920472000059 ], [ -121.282162446999948, 50.702914214000117 ], [ -121.282152590999956, 50.703183882000047 ], [ -121.280878672999918, 50.703165097000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11191583", "BldgCostT": "7718333", "sL_LossRatio": "0.999667699593382", "sL_AssetLoss": "2155.8806", "sL_BldgLoss": "2155.1642", "sL_StrLoss": "2150.0332", "sL_NStrLoss": "5.131", "sL_ContLoss": "0.7164", "geom_point": "0101000020E6100000FCFD41A8FB595EC0BBA95867C2744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.40768049, 50.919647683000065 ], [ -121.407818205999945, 50.918310251000094 ], [ -121.406785456999927, 50.918267921000066 ], [ -121.406826606999985, 50.917868363000068 ], [ -121.404821914999971, 50.917786170000056 ], [ -121.404947763999971, 50.916564696000144 ], [ -121.403893264999951, 50.916521447000044 ], [ -121.403971779999921, 50.91575953300007 ], [ -121.403811214999962, 50.915752947000087 ], [ -121.40386180800003, 50.915261995000016 ], [ -121.403280129999928, 50.915238133000059 ], [ -121.40334035099994, 50.914653811000065 ], [ -121.402794651999898, 50.91463142200007 ], [ -121.403136075999981, 50.91131866900011 ], [ -121.399585766999962, 50.911172941000061 ], [ -121.399626459999936, 50.910778372000067 ], [ -121.399092077, 50.910756428000056 ], [ -121.399120190999952, 50.910483851000016 ], [ -121.398525175999907, 50.910459414000051 ], [ -121.398567195999988, 50.910052075000053 ], [ -121.398102887999954, 50.910033003000066 ], [ -121.39825055599999, 50.908601587000121 ], [ -121.397184252999963, 50.908557782000109 ], [ -121.397554085999957, 50.90497323200001 ], [ -121.398266051999954, 50.905002481000011 ], [ -121.39835640299998, 50.904126549000061 ], [ -121.399787576, 50.904185333000029 ], [ -121.399787838999941, 50.904182782000127 ], [ -121.402139764999959, 50.904279345000077 ], [ -121.40490823499999, 50.904392946000051 ], [ -121.405226575999961, 50.901302005000055 ], [ -121.410906238999956, 50.901534848000082 ], [ -121.410537505000022, 50.905119456000122 ], [ -121.405416998999925, 50.904909550000099 ], [ -121.405412514999981, 50.904953089000117 ], [ -121.405420176999939, 50.90495340300005 ], [ -121.405242487999956, 50.906678649000114 ], [ -121.406808444999911, 50.906742869000027 ], [ -121.406727198999988, 50.907531950000113 ], [ -121.407393178999968, 50.907559255000081 ], [ -121.407055879000012, 50.910835332000083 ], [ -121.410253702999967, 50.910966384000048 ], [ -121.410201045999941, 50.911478141000046 ], [ -121.410719321999963, 50.911499372 ], [ -121.410682365999918, 50.911858561000059 ], [ -121.411509817999956, 50.911892452000039 ], [ -121.411449737999988, 50.912476483000042 ], [ -121.411624752999941, 50.912483650000098 ], [ -121.411562239999924, 50.913091359000084 ], [ -121.412191675999949, 50.913117136000047 ], [ -121.412094073, 50.914066036000129 ], [ -121.413326799999965, 50.914116506000056 ], [ -121.41326877299997, 50.914680770000089 ], [ -121.414362641999929, 50.91469563400004 ], [ -121.414340122999974, 50.915358200000107 ], [ -121.414325977999965, 50.915774337000109 ], [ -121.413422953999927, 50.915762067000074 ], [ -121.413291738999988, 50.917038005000052 ], [ -121.413653286999974, 50.917052803000118 ], [ -121.413284645999909, 50.920637358000121 ], [ -121.410955895999933, 50.920542015000095 ], [ -121.409167753999924, 50.920468773000081 ], [ -121.407848532999964, 50.920414720000132 ], [ -121.407734216000023, 50.921524888000093 ], [ -121.407557354999966, 50.923242288000083 ], [ -121.407134676999988, 50.923224967000131 ], [ -121.401874950999982, 50.923009281000077 ], [ -121.402244526999951, 50.919424773000095 ], [ -121.40768049, 50.919647683000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999304171639999", "sL_AssetLoss": "285.2715", "sL_BldgLoss": "285.073", "sL_StrLoss": "284", "sL_NStrLoss": "1.073", "sL_ContLoss": "0.1985", "geom_point": "0101000020E61000001264EBB617595EC0974BF443366E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.38942025599999, 50.859121839000117 ], [ -121.395094478999951, 50.859355494000063 ], [ -121.394724824999969, 50.862940222000056 ], [ -121.389050149999889, 50.862706550000105 ], [ -121.38942025599999, 50.859121839000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999930894141815", "sL_AssetLoss": "194.33953", "sL_BldgLoss": "194.3261", "sL_StrLoss": "194.3", "sL_NStrLoss": "0.0261", "sL_ContLoss": "0.01343", "geom_point": "0101000020E6100000DE3E69B082595EC06D7CBB5F64714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.398790436999903, 50.88408350900005 ], [ -121.401625114999973, 50.884199966000011 ], [ -121.401258231999975, 50.887760819000036 ], [ -121.401255778999911, 50.887784614000083 ], [ -121.401049620999956, 50.887776147000061 ], [ -121.399976392999989, 50.887732062000104 ], [ -121.395577916999969, 50.887551278000046 ], [ -121.39594770399999, 50.883966648000118 ], [ -121.398790436999903, 50.88408350900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999738037024101", "sL_AssetLoss": "400.82", "sL_BldgLoss": "400.715", "sL_StrLoss": "400", "sL_NStrLoss": "0.715", "sL_ContLoss": "0.105", "geom_point": "0101000020E610000002CAAECD69655EC08E65B098C7544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.582158114, 50.660288765000054 ], [ -121.587808205000016, 50.660512712000134 ], [ -121.587455569999989, 50.664098896000027 ], [ -121.587038177999929, 50.664082362000102 ], [ -121.587007566999887, 50.664393605000043 ], [ -121.581356991999925, 50.664169618000123 ], [ -121.581710114999964, 50.660583455000094 ], [ -121.582127471999968, 50.660600009000113 ], [ -121.582158114, 50.660288765000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999855361668311", "sL_AssetLoss": "92.43746", "sL_BldgLoss": "92.42409", "sL_StrLoss": "92.30339", "sL_NStrLoss": "0.1207", "sL_ContLoss": "0.01337", "geom_point": "0101000020E610000040A49DA2FC585EC0035018D6856C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.388789421999888, 50.845967168000108 ], [ -121.393440849999976, 50.846158813000045 ], [ -121.393081674, 50.849641773 ], [ -121.393071172999953, 50.849743590000102 ], [ -121.387398179999977, 50.849509831000013 ], [ -121.387768308999981, 50.845925071000039 ], [ -121.388789421999888, 50.845967168000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.961964531926021", "sL_AssetLoss": "0.21033", "sL_BldgLoss": "0.20233", "sL_StrLoss": "0.00733", "sL_NStrLoss": "0.195", "sL_ContLoss": "0.008", "geom_point": "0101000020E610000090359F4AF8535EC0521DBCC0F6624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.311062774, 50.773098516000132 ], [ -121.311236942999926, 50.772291215000024 ], [ -121.311335629999988, 50.771831742000074 ], [ -121.311400736999943, 50.771528456000098 ], [ -121.312047279999916, 50.769917329000059 ], [ -121.312138331999904, 50.769725538000046 ], [ -121.312902365999946, 50.769736594000044 ], [ -121.312834447999975, 50.77162427400004 ], [ -121.312409181999953, 50.771618121000124 ], [ -121.312399475999939, 50.771887789000104 ], [ -121.312824743999968, 50.771893943000116 ], [ -121.312805336999958, 50.772433280000037 ], [ -121.313230609999962, 50.772439433000073 ], [ -121.31317240099996, 50.774057443000054 ], [ -121.31274711199994, 50.774051290000081 ], [ -121.312727701999947, 50.774590627000066 ], [ -121.312302410999933, 50.774584473000104 ], [ -121.312292702999954, 50.774854141000084 ], [ -121.312251803, 50.774853550000017 ], [ -121.31207199, 50.776569867000042 ], [ -121.311200053999968, 50.776533261000111 ], [ -121.31110462099997, 50.775694746000063 ], [ -121.311096678999974, 50.775624855000032 ], [ -121.311067622999985, 50.774222827000074 ], [ -121.311055602999943, 50.773641909000105 ], [ -121.311062774, 50.773098516000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.999486901150935", "sL_AssetLoss": "559.7362", "sL_BldgLoss": "559.449", "sL_StrLoss": "558", "sL_NStrLoss": "1.449", "sL_ContLoss": "0.2872", "geom_point": "0101000020E61000006CB802E926665EC08F196670AD564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.592911612999941, 50.67929690000004 ], [ -121.592972399999937, 50.678678223000077 ], [ -121.592288732999975, 50.678651185000049 ], [ -121.592306838999903, 50.678466924000119 ], [ -121.591787228999976, 50.678446371000113 ], [ -121.592139630999966, 50.674860236000022 ], [ -121.597791604999912, 50.675083672000049 ], [ -121.597773521999954, 50.675267934000132 ], [ -121.59829309899996, 50.675288459000065 ], [ -121.598286008999963, 50.675360723000054 ], [ -121.600620024999927, 50.675452897000113 ], [ -121.600268293999974, 50.679039057000097 ], [ -121.598617766999922, 50.6789738800001 ], [ -121.598564149999916, 50.679520297000131 ], [ -121.592911612999941, 50.67929690000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999881869416484", "sL_AssetLoss": "203.165", "sL_BldgLoss": "203.141", "sL_StrLoss": "203", "sL_NStrLoss": "0.141", "sL_ContLoss": "0.024", "geom_point": "0101000020E6100000B85EEC20E3595EC03CDFAA468A704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.4070401809999, 50.877524693000112 ], [ -121.40751064299999, 50.877543994000106 ], [ -121.407141834999948, 50.881128689000029 ], [ -121.40146478599999, 50.88089565000012 ], [ -121.401585388999962, 50.879724936000073 ], [ -121.401834045999962, 50.877310972000032 ], [ -121.4070401809999, 50.877524693000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999803141267932", "sL_AssetLoss": "408.4147", "sL_BldgLoss": "408.3343", "sL_StrLoss": "408", "sL_NStrLoss": "0.3343", "sL_ContLoss": "0.0804", "geom_point": "0101000020E6100000EB8ABE273B5A5EC0EFC2BDCF44714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.407368973999937, 50.883746830000064 ], [ -121.40754152099997, 50.882069818000062 ], [ -121.41321875099996, 50.882302549000059 ], [ -121.413082045, 50.883632872000071 ], [ -121.413742722000023, 50.883659938000058 ], [ -121.413517885999937, 50.885848013000079 ], [ -121.41337436399999, 50.88724462800009 ], [ -121.411486442999944, 50.887167279000074 ], [ -121.411450798999979, 50.887513973000068 ], [ -121.409713058999941, 50.887442749000094 ], [ -121.407060138999938, 50.887333961000039 ], [ -121.405772915999961, 50.887281153000139 ], [ -121.406141883999979, 50.883696489000101 ], [ -121.407368973999937, 50.883746830000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999903301153616", "sL_AssetLoss": "102.06947", "sL_BldgLoss": "102.0596", "sL_StrLoss": "102", "sL_NStrLoss": "0.0596", "sL_ContLoss": "0.00987", "geom_point": "0101000020E6100000F6F18E5B655C5EC06BC52FA375714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.443568265999957, 50.888280370000061 ], [ -121.443584475999927, 50.888121600000069 ], [ -121.441747112999977, 50.888046822000064 ], [ -121.44185965099993, 50.886944906000053 ], [ -121.442113202999934, 50.88446204200001 ], [ -121.445366816, 50.884594441000061 ], [ -121.445400240999973, 50.88562973100003 ], [ -121.44544601299998, 50.88704689500004 ], [ -121.445408320999931, 50.887754250000036 ], [ -121.445376398999912, 50.888353930000093 ], [ -121.443568265999957, 50.888280370000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999808676600062", "sL_AssetLoss": "113.26372", "sL_BldgLoss": "113.24205", "sL_StrLoss": "113.00505", "sL_NStrLoss": "0.237", "sL_ContLoss": "0.02167", "geom_point": "0101000020E6100000C296CB048B5A5EC01F311744E6764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.416146830999963, 50.927160113000063 ], [ -121.417760820999973, 50.927226112000049 ], [ -121.417431118999914, 50.930434194000078 ], [ -121.417392425999978, 50.930810639000079 ], [ -121.411709006999956, 50.930578131000068 ], [ -121.411809482999985, 50.929601749000014 ], [ -121.412077855999925, 50.926993623000072 ], [ -121.415543369999966, 50.927135431000082 ], [ -121.416146830999963, 50.927160113000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999670539293645", "sL_AssetLoss": "375.7656", "sL_BldgLoss": "375.6418", "sL_StrLoss": "375", "sL_NStrLoss": "0.6418", "sL_ContLoss": "0.1238", "geom_point": "0101000020E6100000EBA03B56E3675EC04206D1DE09594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.620779992999928, 50.694075626000064 ], [ -121.620857824999973, 50.693278659000065 ], [ -121.626512260999917, 50.693500636000088 ], [ -121.62648296499998, 50.693800989000124 ], [ -121.626713474999988, 50.69381003200003 ], [ -121.626680165999986, 50.694151541000039 ], [ -121.62684809199996, 50.694158129000044 ], [ -121.626498311999939, 50.697744292000095 ], [ -121.625198994999934, 50.697693314000098 ], [ -121.625183861000025, 50.697848423000046 ], [ -121.619528884999966, 50.697626379000042 ], [ -121.619879221999966, 50.694040238000099 ], [ -121.620779992999928, 50.694075626000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999076184024142", "sL_AssetLoss": "162.37", "sL_BldgLoss": "162.22", "sL_StrLoss": "161", "sL_NStrLoss": "1.22", "sL_ContLoss": "0.15", "geom_point": "0101000020E61000002B3FFC3E14545EC0543B60AA5B364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.311669215999956, 50.425790035000048 ], [ -121.311704832999951, 50.425447305000091 ], [ -121.311696139999952, 50.425446937000117 ], [ -121.311697900999945, 50.425429979000086 ], [ -121.311749468999949, 50.42541083000004 ], [ -121.31195262599999, 50.425252293000064 ], [ -121.312886366999948, 50.424772817000111 ], [ -121.313393896999941, 50.424385480000126 ], [ -121.313718084999948, 50.42400436499999 ], [ -121.313748890999946, 50.423933015000038 ], [ -121.313780419999901, 50.423843743000113 ], [ -121.313778473999903, 50.423520592000031 ], [ -121.313744008999961, 50.423313666000134 ], [ -121.313719922999951, 50.423205650000085 ], [ -121.313534102999967, 50.422906821000012 ], [ -121.3130736909999, 50.422424653000114 ], [ -121.312583188999952, 50.421995950000067 ], [ -121.312038054999988, 50.421615646000063 ], [ -121.31205734199996, 50.421430032000053 ], [ -121.312592980999938, 50.421656999000085 ], [ -121.313102594, 50.421926307000049 ], [ -121.313410397999959, 50.422155388000071 ], [ -121.31361489599999, 50.42235948800009 ], [ -121.313715696999978, 50.422530311000102 ], [ -121.313996714999931, 50.423505802000065 ], [ -121.314150500999943, 50.423777910000069 ], [ -121.314294303999958, 50.423939465000053 ], [ -121.314375403999946, 50.424030599000083 ], [ -121.314607511999924, 50.424206132000101 ], [ -121.314728614999964, 50.424297700000096 ], [ -121.31526982, 50.424548399000066 ], [ -121.315312140999964, 50.424560472000067 ], [ -121.315501053, 50.424614342000041 ], [ -121.315504412999985, 50.424615290000048 ], [ -121.315208688999945, 50.425939798000037 ], [ -121.311669215999956, 50.425790035000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.999209972533757", "sL_AssetLoss": "140.7546", "sL_BldgLoss": "140.6434", "sL_StrLoss": "139.0644", "sL_NStrLoss": "1.579", "sL_ContLoss": "0.1112", "geom_point": "0101000020E610000055F5556688655EC053305B998D534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.583480798999986, 50.654752595000041 ], [ -121.58354185799999, 50.654132125000089 ], [ -121.583417539, 50.654127194000097 ], [ -121.583770418999947, 50.650540981000113 ], [ -121.589419292999963, 50.650764849000026 ], [ -121.589358320999921, 50.651385325000028 ], [ -121.589482631999914, 50.651390249000066 ], [ -121.589130201999936, 50.654976476000094 ], [ -121.583480798999986, 50.654752595000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999713002741928", "sL_AssetLoss": "113.2415", "sL_BldgLoss": "113.209", "sL_StrLoss": "113", "sL_NStrLoss": "0.209", "sL_ContLoss": "0.0325", "geom_point": "0101000020E61000000B82437F13565EC0943091DA5D694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.341505574999971, 50.822440525000047 ], [ -121.347174894999981, 50.822676616000074 ], [ -121.346995218999922, 50.824402599000109 ], [ -121.34456811599992, 50.823674120000128 ], [ -121.342300535999968, 50.822993457000123 ], [ -121.341473811999919, 50.822745276 ], [ -121.341505574999971, 50.822440525000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.9995164357314", "sL_AssetLoss": "275.041", "sL_BldgLoss": "274.908", "sL_StrLoss": "274", "sL_NStrLoss": "0.908", "sL_ContLoss": "0.133", "geom_point": "0101000020E610000019CBD33D5B665EC048684FF2B8624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.59667665299996, 50.770527775000048 ], [ -121.596729558999982, 50.76998999200007 ], [ -121.596404845000023, 50.769986085000063 ], [ -121.595828797999957, 50.769979150000069 ], [ -121.595850008999903, 50.76927076000004 ], [ -121.595853024999926, 50.769170036000077 ], [ -121.597128925999954, 50.769185392000061 ], [ -121.597121056999981, 50.769448441000058 ], [ -121.60244806599998, 50.76965833500001 ], [ -121.60209574199996, 50.773244103000074 ], [ -121.599763487999951, 50.773152240000115 ], [ -121.59897631699999, 50.773121223000018 ], [ -121.596431366999965, 50.773020909000138 ], [ -121.596544922999968, 50.771866740000057 ], [ -121.59667665299996, 50.770527775000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999614426298463", "sL_AssetLoss": "273.8776", "sL_BldgLoss": "273.772", "sL_StrLoss": "273", "sL_NStrLoss": "0.772", "sL_ContLoss": "0.1056", "geom_point": "0101000020E61000008A8DDC476C665EC0659EA6E0BA5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.597706900999981, 50.706923439000036 ], [ -121.603362940999958, 50.707146587000103 ], [ -121.603011181999975, 50.710732620000094 ], [ -121.597354692999929, 50.710509457000121 ], [ -121.597706900999981, 50.706923439000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.959108150615228", "sL_AssetLoss": "0.10809", "sL_BldgLoss": "0.10367", "sL_StrLoss": "0.00367", "sL_NStrLoss": "0.1", "sL_ContLoss": "0.00442", "geom_point": "0101000020E6100000983D2209AF6A5EC089471C9173694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.668225596999903, 50.823238512000103 ], [ -121.670364895999938, 50.823249805000103 ], [ -121.670372254999961, 50.823298848000036 ], [ -121.66974963199999, 50.823274739000084 ], [ -121.669625357999934, 50.824557686000112 ], [ -121.663954156, 50.824337926000062 ], [ -121.66406293299994, 50.823216417000019 ], [ -121.668225596999903, 50.823238512000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.999832994552259", "sL_AssetLoss": "677.8222", "sL_BldgLoss": "677.709", "sL_StrLoss": "677", "sL_NStrLoss": "0.709", "sL_ContLoss": "0.1132", "geom_point": "0101000020E6100000B58122B346555EC072721AFDC3454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.330947580999975, 50.549289088000116 ], [ -121.330995195999904, 50.54794068100005 ], [ -121.331418451, 50.547946748000079 ], [ -121.33146954599999, 50.546499352000033 ], [ -121.329733564999941, 50.546426373000024 ], [ -121.329997148999951, 50.543887206000065 ], [ -121.328545194999961, 50.543826146000065 ], [ -121.328917495999946, 50.540240286000014 ], [ -121.334551237999904, 50.540477095000014 ], [ -121.334287931999967, 50.543016284000011 ], [ -121.335739867999919, 50.54307726800004 ], [ -121.335368084999985, 50.546663140000049 ], [ -121.335275015999969, 50.546659231000064 ], [ -121.33526574199999, 50.546922551000087 ], [ -121.335688987999902, 50.546928603000055 ], [ -121.335651003999956, 50.548007331000058 ], [ -121.335396065999987, 50.548003686000101 ], [ -121.335227746999919, 50.548001279000069 ], [ -121.335218249, 50.548270961000064 ], [ -121.335616, 50.54827664900008 ], [ -121.335641507999952, 50.54827701300006 ], [ -121.335638933999974, 50.548350135000085 ], [ -121.335632011999948, 50.548546694000031 ], [ -121.33567735299998, 50.548547343000116 ], [ -121.336055271999953, 50.54855274500003 ], [ -121.336026788999916, 50.549361792000077 ], [ -121.335316191999965, 50.549351632000068 ], [ -121.335180252999933, 50.549349689000046 ], [ -121.335177631999926, 50.549424097000035 ], [ -121.335170754000018, 50.549619370000073 ], [ -121.334747483999962, 50.549613318000056 ], [ -121.33473798199999, 50.549883000000143 ], [ -121.334314707999965, 50.549876945000051 ], [ -121.334305203999975, 50.5501466260001 ], [ -121.332439043999955, 50.550119914000071 ], [ -121.331342283999945, 50.550104199000089 ], [ -121.331332760999956, 50.550373880000052 ], [ -121.329639657999948, 50.550349601000022 ], [ -121.32964497099999, 50.550199287000112 ], [ -121.329668251999976, 50.549540558000061 ], [ -121.330091519999968, 50.549546630000059 ], [ -121.330101047999918, 50.549276950000063 ], [ -121.330947580999975, 50.549289088000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999803214699781", "sL_AssetLoss": "370.4545", "sL_BldgLoss": "370.3816", "sL_StrLoss": "370", "sL_NStrLoss": "0.3816", "sL_ContLoss": "0.0729", "geom_point": "0101000020E6100000EB750788B4565EC0612727A0AA494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.352374749999939, 50.578464677000049 ], [ -121.352393572, 50.577925311000079 ], [ -121.351970043999955, 50.577919317000088 ], [ -121.351998282999929, 50.57711026900003 ], [ -121.351574762000013, 50.577104275000075 ], [ -121.351584177999939, 50.576834592000054 ], [ -121.351160659999948, 50.57682859500003 ], [ -121.351170076999963, 50.576558913000078 ], [ -121.350746562999959, 50.576552916000018 ], [ -121.350755981999939, 50.576283232000087 ], [ -121.350332469999927, 50.576277234000123 ], [ -121.350351313999951, 50.575737868000054 ], [ -121.349927806999929, 50.575731869000116 ], [ -121.349945023999922, 50.575239110000069 ], [ -121.349956076999916, 50.574922820000154 ], [ -121.351226578999899, 50.57494081500009 ], [ -121.351217161999912, 50.575210498000025 ], [ -121.351640666, 50.575216494000074 ], [ -121.351631250999958, 50.575486177000109 ], [ -121.352054756999962, 50.57549217100005 ], [ -121.352045344999965, 50.575761853000053 ], [ -121.352892360999974, 50.575773838000032 ], [ -121.353014642999938, 50.572267956000097 ], [ -121.35428507499995, 50.572285918000112 ], [ -121.354303869999953, 50.571746551000039 ], [ -121.355997762999962, 50.571770478000083 ], [ -121.355960207999971, 50.572849213000055 ], [ -121.354689759999957, 50.572831269000027 ], [ -121.354642779999963, 50.574179687000083 ], [ -121.358030740999936, 50.574227508000021 ], [ -121.358021362999963, 50.574497192000102 ], [ -121.358868358999985, 50.574509132000053 ], [ -121.358840241999985, 50.575318185000036 ], [ -121.359263746999957, 50.575324152000121 ], [ -121.359235632999955, 50.576133203000012 ], [ -121.357965095999987, 50.576115296000104 ], [ -121.35797447299997, 50.575845611000062 ], [ -121.357550964999945, 50.575839639000094 ], [ -121.357569724999976, 50.575300271000074 ], [ -121.354605189999944, 50.575258420000132 ], [ -121.354595793999934, 50.575528104000064 ], [ -121.355866314999943, 50.575546049000089 ], [ -121.355856924999912, 50.575815732000109 ], [ -121.356280434, 50.575821711000046 ], [ -121.356271044999986, 50.576091395000084 ], [ -121.356694558999976, 50.576097372000085 ], [ -121.356685172999946, 50.576367056000024 ], [ -121.357108687999926, 50.576373032000035 ], [ -121.357099304999963, 50.576642715000062 ], [ -121.357522820999975, 50.57664868900013 ], [ -121.357513439999963, 50.576918373000048 ], [ -121.357936959999961, 50.576924347000052 ], [ -121.357918201999922, 50.577463714000011 ], [ -121.358341725999964, 50.577469685000075 ], [ -121.358332350999916, 50.577739369000049 ], [ -121.358755876999908, 50.577745340000057 ], [ -121.358727753, 50.578554390000058 ], [ -121.357033614999949, 50.57853050100006 ], [ -121.357043000999965, 50.578260818000068 ], [ -121.356619469999956, 50.578254841000081 ], [ -121.356638242999949, 50.577715474000101 ], [ -121.356214715999926, 50.577709496000068 ], [ -121.356224104999939, 50.577439813000119 ], [ -121.355800580999983, 50.577433834000075 ], [ -121.355809971999975, 50.577164150000037 ], [ -121.355386450999958, 50.577158170000097 ], [ -121.355395842999911, 50.57688848600003 ], [ -121.354972323999903, 50.576882504000082 ], [ -121.354981718999909, 50.576612821000055 ], [ -121.353711170999958, 50.576594865000089 ], [ -121.35368223499998, 50.577424778000122 ], [ -121.353647796999937, 50.577410701000126 ], [ -121.353395393, 50.577389293000053 ], [ -121.353314624999939, 50.577640003000027 ], [ -121.353441705999984, 50.578028812000106 ], [ -121.353434211999968, 50.578479662000063 ], [ -121.352921657999929, 50.578472414000011 ], [ -121.352374749999939, 50.578464677000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999184198266269", "sL_AssetLoss": "491.541", "sL_BldgLoss": "491.14", "sL_StrLoss": "488", "sL_NStrLoss": "3.14", "sL_ContLoss": "0.401", "geom_point": "0101000020E6100000ED02D2BC6B655EC08FE4F21FD2514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.582655080999928, 50.641091800000055 ], [ -121.582684051999976, 50.640797354000036 ], [ -121.580746133999966, 50.640720450000117 ], [ -121.581099121999983, 50.637134187000107 ], [ -121.586746298999984, 50.637358195000068 ], [ -121.586717354999962, 50.637652643000067 ], [ -121.588655150999926, 50.637729443000126 ], [ -121.588302761999913, 50.64131572700007 ], [ -121.582655080999928, 50.641091800000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "0.999931468795884", "sL_AssetLoss": "293.29705", "sL_BldgLoss": "293.27695", "sL_StrLoss": "293.00505", "sL_NStrLoss": "0.2719", "sL_ContLoss": "0.0201", "geom_point": "0101000020E6100000447F2E3B00625EC0E7696567766D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.53041645299993, 50.850524161000052 ], [ -121.536090309999963, 50.850750679000043 ], [ -121.535919606, 50.85245894600007 ], [ -121.535870469999935, 50.852950637000099 ], [ -121.535732029999949, 50.854335900000088 ], [ -121.53426467599999, 50.854277347000021 ], [ -121.534020798999961, 50.856716636000016 ], [ -121.533749440999969, 50.856705805000047 ], [ -121.533665132999914, 50.857548942000072 ], [ -121.532399077999941, 50.857498403000115 ], [ -121.532165803999959, 50.859830472000105 ], [ -121.530429194999954, 50.85976112600008 ], [ -121.526490814999974, 50.859603759000066 ], [ -121.526849878999926, 50.85601858800004 ], [ -121.528115885999938, 50.85606919100011 ], [ -121.528349350999974, 50.853737120000098 ], [ -121.528620689999954, 50.853747963000032 ], [ -121.528705085999931, 50.852904826000099 ], [ -121.530172385999947, 50.852963452000026 ], [ -121.530178289999967, 50.85290444800011 ], [ -121.53041645299993, 50.850524161000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.999914101601118", "sL_AssetLoss": "569.2772", "sL_BldgLoss": "569.2283", "sL_StrLoss": "569", "sL_NStrLoss": "0.2283", "sL_ContLoss": "0.0489", "geom_point": "0101000020E61000009D107C0465625EC0C3395DF5046C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.535853712999966, 50.84439258500008 ], [ -121.535943847999988, 50.84349043800011 ], [ -121.532697843999983, 50.843360857000079 ], [ -121.533056279999968, 50.839775600000074 ], [ -121.538728785999979, 50.840001986000075 ], [ -121.538518392999933, 50.842109196000123 ], [ -121.541165432999946, 50.842214739000056 ], [ -121.541764323999971, 50.842238608000109 ], [ -121.541406565999949, 50.845823884 ], [ -121.540952541999971, 50.845805788000085 ], [ -121.540714975999947, 50.848185995000051 ], [ -121.539050957999947, 50.848119658000059 ], [ -121.53504142099996, 50.847959712 ], [ -121.535399706999954, 50.844374467000051 ], [ -121.535853712999966, 50.84439258500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999797493827194", "sL_AssetLoss": "220.2402", "sL_BldgLoss": "220.1956", "sL_StrLoss": "220", "sL_NStrLoss": "0.1956", "sL_ContLoss": "0.0446", "geom_point": "0101000020E6100000031843F774575EC0CA5F10478D524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.363875693999944, 50.643026151000072 ], [ -121.369522501999953, 50.643261160000165 ], [ -121.369152586999931, 50.646846709000094 ], [ -121.363505329999924, 50.646611683000039 ], [ -121.363605849999942, 50.645638599000044 ], [ -121.363649064999962, 50.645220250000065 ], [ -121.363875693999944, 50.643026151000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.99997300659239", "sL_AssetLoss": "180.04396", "sL_BldgLoss": "180.0391", "sL_StrLoss": "180", "sL_NStrLoss": "0.0391", "sL_ContLoss": "0.00486", "geom_point": "0101000020E6100000343E40B5095A5EC06E0545DA636F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.404844413, 50.868352812000104 ], [ -121.409864647999953, 50.868558812000032 ], [ -121.409496103, 50.872143552000068 ], [ -121.406583493999946, 50.872024064000051 ], [ -121.403820181999933, 50.871910630000045 ], [ -121.40418918, 50.868325908000045 ], [ -121.404844413, 50.868352812000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999949821440536", "sL_AssetLoss": "101.03917", "sL_BldgLoss": "101.0341", "sL_StrLoss": "101", "sL_NStrLoss": "0.0341", "sL_ContLoss": "0.00507", "geom_point": "0101000020E61000001A93F6ED81555EC01A47B436F0684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.335586314999901, 50.820619482000041 ], [ -121.334539895999981, 50.820099564000053 ], [ -121.333609192999987, 50.819552191000106 ], [ -121.333215875999969, 50.819324193000078 ], [ -121.331961807999946, 50.818479781000065 ], [ -121.331390985999974, 50.818052546000061 ], [ -121.335261539999948, 50.818214129000076 ], [ -121.335194368999922, 50.818857812000097 ], [ -121.337410609999949, 50.818950272000087 ], [ -121.337332745999959, 50.819696751000038 ], [ -121.338589019999972, 50.819749141000017 ], [ -121.338534868999972, 50.820268415000086 ], [ -121.339491922999954, 50.82030831900007 ], [ -121.339306645999926, 50.822085272000059 ], [ -121.338601300999983, 50.821848914000078 ], [ -121.338523641, 50.821822882000063 ], [ -121.337451386999973, 50.821430746000061 ], [ -121.336866995999969, 50.821178187000093 ], [ -121.335667140999973, 50.820659658000132 ], [ -121.335586314999901, 50.820619482000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999911275161327", "sL_AssetLoss": "317.16034", "sL_BldgLoss": "317.1322", "sL_StrLoss": "317", "sL_NStrLoss": "0.1322", "sL_ContLoss": "0.02814", "geom_point": "0101000020E6100000E955112C16675EC0580672DCEB654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.608353278999957, 50.79424688700005 ], [ -121.614020396999976, 50.794469472000088 ], [ -121.613779339999951, 50.796927959000108 ], [ -121.613668804999989, 50.798055173000101 ], [ -121.61312703000003, 50.798033907000089 ], [ -121.613103493999986, 50.798273886000054 ], [ -121.608585201999944, 50.798096426000086 ], [ -121.607435898999967, 50.798051256000036 ], [ -121.607787989999935, 50.794465574000078 ], [ -121.608329719999972, 50.794486867000053 ], [ -121.608353278999957, 50.79424688700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999927773696418", "sL_AssetLoss": "96.9176", "sL_BldgLoss": "96.9106", "sL_StrLoss": "96.9", "sL_NStrLoss": "0.0106", "sL_ContLoss": "0.007", "geom_point": "0101000020E6100000CCB547F330545EC09ECE57C1D6624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.314922012999958, 50.772733695000056 ], [ -121.314960776999925, 50.771655020000019 ], [ -121.314535511999978, 50.771648874000022 ], [ -121.314574283999931, 50.770570198000023 ], [ -121.315316307, 50.7705809220001 ], [ -121.315850054999927, 50.770588632000162 ], [ -121.315840368999943, 50.77085830100004 ], [ -121.316265628999957, 50.770864441000064 ], [ -121.316246262999968, 50.771403779000124 ], [ -121.316671526999968, 50.771409919000035 ], [ -121.316632800999955, 50.77248859600008 ], [ -121.316207525999957, 50.772482455000052 ], [ -121.31616878799997, 50.773561131000086 ], [ -121.315743506000018, 50.773554989000075 ], [ -121.315733817999941, 50.77382465800008 ], [ -121.315478256999924, 50.773820966000109 ], [ -121.314457958999952, 50.773806223000093 ], [ -121.314496735999967, 50.772727548000034 ], [ -121.314922012999958, 50.772733695000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999682458211988", "sL_AssetLoss": "123.1334", "sL_BldgLoss": "123.0943", "sL_StrLoss": "123", "sL_NStrLoss": "0.0943", "sL_ContLoss": "0.0391", "geom_point": "0101000020E610000087662295F7555EC013D6E7E6724C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.342337371999974, 50.598828238000081 ], [ -121.342365796999928, 50.598019196000088 ], [ -121.341518384999972, 50.598007132000134 ], [ -121.341565781, 50.596658728000101 ], [ -121.343260556999937, 50.596682849000082 ], [ -121.343279494999976, 50.59614348800006 ], [ -121.343703182999946, 50.596149514000103 ], [ -121.34371265099999, 50.595879833000012 ], [ -121.344104504999933, 50.595885406000015 ], [ -121.344983710999912, 50.595897902000033 ], [ -121.344936413999932, 50.597246308000145 ], [ -121.344512713999933, 50.597240287000062 ], [ -121.344503251999981, 50.597509967000164 ], [ -121.343232147, 50.597491892000043 ], [ -121.343213208999941, 50.598031254000055 ], [ -121.34363691399993, 50.598037281000138 ], [ -121.343608511999975, 50.598846322000064 ], [ -121.342992607000014, 50.598837561000039 ], [ -121.342337371999974, 50.598828238000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802833", "BldgCostT": "1243333", "sL_LossRatio": "0.999413606922692", "sL_AssetLoss": "307.3024", "sL_BldgLoss": "307.1222", "sL_StrLoss": "305.0512", "sL_NStrLoss": "2.071", "sL_ContLoss": "0.1802", "geom_point": "0101000020E61000006A5AB5ADDE645EC0B070161F34514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.572133668999967, 50.636898326000029 ], [ -121.57222800699995, 50.635941721000066 ], [ -121.571828220999976, 50.6359258190001 ], [ -121.572181882999956, 50.632339564000056 ], [ -121.57451521199998, 50.63243235300007 ], [ -121.574596424000021, 50.631608320000048 ], [ -121.580242873999978, 50.63183265800005 ], [ -121.579889858999977, 50.635418940000136 ], [ -121.579756859, 50.635413659000065 ], [ -121.579613233, 50.636872543000038 ], [ -121.577812459999933, 50.636801027000054 ], [ -121.577780769999919, 50.637122787000116 ], [ -121.572133668999967, 50.636898326000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999600988177299", "sL_AssetLoss": "373.1719", "sL_BldgLoss": "373.023", "sL_StrLoss": "372", "sL_NStrLoss": "1.023", "sL_ContLoss": "0.1489", "geom_point": "0101000020E6100000B48A0642555C5EC04DC1B73C18524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.440659718999925, 50.643464070000107 ], [ -121.440737145999947, 50.642701768000094 ], [ -121.438736502, 50.642619821000032 ], [ -121.439100832999927, 50.639034023000136 ], [ -121.444747528999955, 50.639265223000073 ], [ -121.444670176999978, 50.640027531000079 ], [ -121.446670714999982, 50.64010937200004 ], [ -121.446306979999918, 50.643695190000066 ], [ -121.440659718999925, 50.643464070000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999577833111175", "sL_AssetLoss": "255.823", "sL_BldgLoss": "255.715", "sL_StrLoss": "255", "sL_NStrLoss": "0.715", "sL_ContLoss": "0.108", "geom_point": "0101000020E61000008463D8595B535EC03D420FADFC3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.300201717000022, 50.485706362000052 ], [ -121.300208670999936, 50.48551262000003 ], [ -121.299674247000013, 50.485489975000128 ], [ -121.29977790099997, 50.484790095000044 ], [ -121.300211909999959, 50.48404088900007 ], [ -121.300478085999927, 50.483334507000031 ], [ -121.301407179999927, 50.482592499000113 ], [ -121.301984094999952, 50.482205113000077 ], [ -121.302160650999937, 50.481957458000061 ], [ -121.303295790999968, 50.481974014000095 ], [ -121.30329337799999, 50.48204142400008 ], [ -121.303562944999925, 50.482052838000108 ], [ -121.305313739999946, 50.48212696500007 ], [ -121.304940042999988, 50.485713001000107 ], [ -121.301701956000031, 50.485575886000021 ], [ -121.301475479999937, 50.485566292000065 ], [ -121.301466156999979, 50.485826252000052 ], [ -121.301460123999945, 50.485994557000012 ], [ -121.30133749, 50.485992767000063 ], [ -121.301037428999976, 50.48598838700012 ], [ -121.301022370999988, 50.486408238000045 ], [ -121.301008412, 50.486797427000056 ], [ -121.300788762999929, 50.486794221000061 ], [ -121.300585709999936, 50.486791256000089 ], [ -121.30057280299999, 50.487151035000061 ], [ -121.300566357999941, 50.487330616000087 ], [ -121.300465003999932, 50.487329135000088 ], [ -121.299298241999949, 50.487312090000081 ], [ -121.299321734999978, 50.486657775000012 ], [ -121.299373094999964, 50.486503720000059 ], [ -121.29974998699997, 50.486509226000074 ], [ -121.299779025999939, 50.485700187000056 ], [ -121.300201717000022, 50.485706362000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7042167", "BldgCostT": "4856667", "sL_LossRatio": "0.999714485804274", "sL_AssetLoss": "1310.2676", "sL_BldgLoss": "1309.8935", "sL_StrLoss": "1307.0375", "sL_NStrLoss": "2.856", "sL_ContLoss": "0.3741", "geom_point": "0101000020E61000005A00E86ACA555EC08BE5D0014D364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.333207693999924, 50.425958129000037 ], [ -121.333186213999966, 50.425726282000028 ], [ -121.332662786999961, 50.425815808000124 ], [ -121.330219316999973, 50.426316075000052 ], [ -121.330245180999952, 50.42651165400008 ], [ -121.330316523999912, 50.427051344000077 ], [ -121.329758556999948, 50.427043333000036 ], [ -121.329777534999948, 50.426503959000115 ], [ -121.329332703999967, 50.426497572000066 ], [ -121.32851102299999, 50.426485767000045 ], [ -121.328504639999892, 50.426667076000129 ], [ -121.328501525999968, 50.426755455000034 ], [ -121.328100992999964, 50.426749699000013 ], [ -121.327235009999967, 50.426737249000055 ], [ -121.327228274999982, 50.426928331000084 ], [ -121.327225506999966, 50.427006935000101 ], [ -121.32686927, 50.427001813000082 ], [ -121.326381155999968, 50.426994791000034 ], [ -121.32637736, 50.427102496000089 ], [ -121.326371647999935, 50.427264478000041 ], [ -121.325637563, 50.427253914000069 ], [ -121.325105118999957, 50.427246249000113 ], [ -121.325100973999966, 50.427363735000093 ], [ -121.325095602999937, 50.427515935000073 ], [ -121.324405837999947, 50.427506001000047 ], [ -121.32382906799999, 50.427497692000017 ], [ -121.323824572999925, 50.427624960000074 ], [ -121.323819546, 50.42776737800007 ], [ -121.323174096999935, 50.427758076000039 ], [ -121.322130823999956, 50.42774303300012 ], [ -121.322159420999952, 50.42693397500009 ], [ -121.323003765999928, 50.426946151000017 ], [ -121.323013293999963, 50.426676465000071 ], [ -121.323857635999943, 50.426688634000108 ], [ -121.323867157999985, 50.426418949000094 ], [ -121.324711494999946, 50.426431111000063 ], [ -121.32472101399999, 50.426161425000089 ], [ -121.325565346999923, 50.426173581000079 ], [ -121.325574858999943, 50.425903895000026 ], [ -121.326841353999896, 50.42592211800013 ], [ -121.326850858999961, 50.425652431000067 ], [ -121.327273020999968, 50.425658503000136 ], [ -121.327282523999941, 50.425388816000066 ], [ -121.326438203999913, 50.425376673000073 ], [ -121.326485738999949, 50.424028240000077 ], [ -121.326907885999958, 50.424034312000096 ], [ -121.32691739099999, 50.423764625000089 ], [ -121.3290331809999, 50.423795038000044 ], [ -121.329442614999934, 50.42401851000001 ], [ -121.329440778999981, 50.424070714000102 ], [ -121.329540894999937, 50.42407215300009 ], [ -121.329657517999948, 50.424135806000031 ], [ -121.329861879999967, 50.424106576000035 ], [ -121.329853439999937, 50.424346463000049 ], [ -121.330861383999945, 50.424360931000088 ], [ -121.330871366999972, 50.424264459000042 ], [ -121.330893625999963, 50.42426539700007 ], [ -121.330926532000021, 50.423947437000088 ], [ -121.33308501, 50.423519103000032 ], [ -121.334297812999978, 50.423482094000043 ], [ -121.334892417999967, 50.423373902000073 ], [ -121.337548804999983, 50.422710183000042 ], [ -121.341541596999932, 50.421651990000015 ], [ -121.342127514999945, 50.421399907000108 ], [ -121.343203829999965, 50.421174456000095 ], [ -121.343772592000022, 50.421055314000078 ], [ -121.344102591999942, 50.420905704000035 ], [ -121.345717897999961, 50.420691897000061 ], [ -121.346491291999939, 50.420589513000095 ], [ -121.347620286000023, 50.420515509000076 ], [ -121.348527422999965, 50.42033030200006 ], [ -121.349416284999947, 50.42028899300005 ], [ -121.352047793999986, 50.419904513000098 ], [ -121.353637708999955, 50.419558395000124 ], [ -121.354762577999949, 50.419267742000017 ], [ -121.354746451999972, 50.419290044000036 ], [ -121.354606384999968, 50.419483889000077 ], [ -121.35567917899999, 50.419208332000082 ], [ -121.355443746999967, 50.421495559000107 ], [ -121.352763931999974, 50.421383145000064 ], [ -121.352762125999902, 50.421435246000101 ], [ -121.352517533999929, 50.421431782000141 ], [ -121.351917864999947, 50.421423287000074 ], [ -121.351908502999962, 50.421692976000031 ], [ -121.351486370999979, 50.421686995000094 ], [ -121.351480152999954, 50.421866070000092 ], [ -121.351477005999968, 50.421956686000058 ], [ -121.351208200999906, 50.421952876 ], [ -121.350898182999927, 50.421948481000086 ], [ -121.350887655999912, 50.422050637000034 ], [ -121.350723770999977, 50.423641066000066 ], [ -121.349886233999968, 50.423605905000088 ], [ -121.349759128, 50.424839100000014 ], [ -121.34967414499998, 50.425663586000084 ], [ -121.349007126999979, 50.425635580000076 ], [ -121.348972732999982, 50.425969202000068 ], [ -121.348488138999969, 50.425948853000122 ], [ -121.348430641999954, 50.426506514000103 ], [ -121.34728193899997, 50.426458268 ], [ -121.347280290999933, 50.426474241000044 ], [ -121.342434047999973, 50.426270566000028 ], [ -121.342313715999978, 50.426265506000078 ], [ -121.342312733999947, 50.426275032000035 ], [ -121.342277586999927, 50.426615459000061 ], [ -121.341104803999897, 50.426566136000098 ], [ -121.341098137999921, 50.426630687000113 ], [ -121.340048794999944, 50.42658654500012 ], [ -121.34002850199991, 50.426783011000062 ], [ -121.339071136999948, 50.426742730000079 ], [ -121.33906136399996, 50.426837334000027 ], [ -121.338285489999947, 50.426804683000071 ], [ -121.338129610999971, 50.428313153000097 ], [ -121.337215982999922, 50.428274698000102 ], [ -121.337182485999961, 50.428598775000111 ], [ -121.336945186999969, 50.428588786000027 ], [ -121.333437971999942, 50.428441087000067 ], [ -121.333207693999924, 50.425958129000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999103092605689", "sL_AssetLoss": "347.862", "sL_BldgLoss": "347.55", "sL_StrLoss": "345", "sL_NStrLoss": "2.55", "sL_ContLoss": "0.312", "geom_point": "0101000020E6100000A988912DA4585EC044262A65E3504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.382382270999955, 50.630029659000037 ], [ -121.388027542999907, 50.630263734000025 ], [ -121.387659210999942, 50.633849401000084 ], [ -121.382013489999977, 50.633615308000074 ], [ -121.382382270999955, 50.630029659000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999719977566609", "sL_AssetLoss": "506.388", "sL_BldgLoss": "506.2462", "sL_StrLoss": "505.0132", "sL_NStrLoss": "1.233", "sL_ContLoss": "0.1418", "geom_point": "0101000020E610000003A4CBD5AE535EC0637DE284323A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.30998988499999, 50.450864526000068 ], [ -121.313151780999988, 50.450998288000122 ], [ -121.312778963999989, 50.454584490000087 ], [ -121.308722595999967, 50.454412871000073 ], [ -121.308362267999925, 50.45787538600004 ], [ -121.307866351999976, 50.457854395000091 ], [ -121.307801578999943, 50.458476698000048 ], [ -121.302178209999965, 50.458238511000062 ], [ -121.302219659999935, 50.457840764000132 ], [ -121.302551899999926, 50.454652362000132 ], [ -121.303047777999936, 50.454673377000084 ], [ -121.303112611999921, 50.454051073000088 ], [ -121.306294710999936, 50.454185878000011 ], [ -121.307168924999942, 50.454222897000115 ], [ -121.307263230999979, 50.453316885000035 ], [ -121.307529315999929, 50.450760369000115 ], [ -121.30998988499999, 50.450864526000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999443850602057", "sL_AssetLoss": "281.2194", "sL_BldgLoss": "281.063", "sL_StrLoss": "280", "sL_NStrLoss": "1.063", "sL_ContLoss": "0.1564", "geom_point": "0101000020E61000002FF603C39E555EC0A46B68FB3E474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.335271037999988, 50.558794602000077 ], [ -121.335299542999962, 50.557985558000041 ], [ -121.334876197999932, 50.557979504000123 ], [ -121.334895205999928, 50.557440141000086 ], [ -121.33447186599993, 50.5574340860001 ], [ -121.334500383999938, 50.556625043000032 ], [ -121.334077049999976, 50.556618986000018 ], [ -121.334105573999921, 50.555809941000071 ], [ -121.33368225000001, 50.555803883000053 ], [ -121.333720287999981, 50.554725158000046 ], [ -121.333765398999958, 50.554725803000096 ], [ -121.334990235999953, 50.554743325000103 ], [ -121.334971231999987, 50.555282689000094 ], [ -121.335394552999929, 50.55528874200008 ], [ -121.33538505199999, 50.5555584230001 ], [ -121.335808374999942, 50.555564474000064 ], [ -121.33577988199994, 50.556373520000086 ], [ -121.336203211999987, 50.556379570000047 ], [ -121.336174722999914, 50.557188616000055 ], [ -121.33659806199995, 50.557194665000026 ], [ -121.33660755599999, 50.556924982000091 ], [ -121.337030892999977, 50.55693103000003 ], [ -121.337040383000016, 50.556661348000063 ], [ -121.337463717999967, 50.556667394000108 ], [ -121.337482694999906, 50.556128029000057 ], [ -121.33705936599992, 50.556121984000121 ], [ -121.337078347999963, 50.555582620000088 ], [ -121.336655023, 50.555576573000025 ], [ -121.336674009999911, 50.555037210000094 ], [ -121.336250690999947, 50.555031161000038 ], [ -121.33629816499996, 50.553682752000071 ], [ -121.337437157999958, 50.553699022000067 ], [ -121.337991394, 50.553706934000054 ], [ -121.337953453999958, 50.554785663000139 ], [ -121.338376769999968, 50.55479170500012 ], [ -121.338357803999955, 50.555331069000019 ], [ -121.338781125999986, 50.555337109000021 ], [ -121.338762163999931, 50.55587647400008 ], [ -121.341302129999974, 50.555912686000092 ], [ -121.341292661999944, 50.556182369000091 ], [ -121.342139324999962, 50.556194428000026 ], [ -121.342110937999962, 50.557003476000034 ], [ -121.340840923999934, 50.556985385000139 ], [ -121.340831453999925, 50.557255067000085 ], [ -121.341254793999937, 50.557261099000087 ], [ -121.341245325999978, 50.557530781000025 ], [ -121.342092012999927, 50.557542841000078 ], [ -121.342044696999977, 50.558891253000077 ], [ -121.340774633, 50.558873161000065 ], [ -121.34079357399996, 50.558333797000039 ], [ -121.340370223999969, 50.558327763000122 ], [ -121.340379696999918, 50.558058080000073 ], [ -121.339533003999961, 50.558046009000158 ], [ -121.339542481999985, 50.557776326000059 ], [ -121.339119137999958, 50.557770288000114 ], [ -121.339128615999982, 50.557500607000101 ], [ -121.338281932999919, 50.557488526000093 ], [ -121.338272448999945, 50.557758207000091 ], [ -121.337849104999961, 50.557752164000128 ], [ -121.337839616999958, 50.558021847000063 ], [ -121.337416270999967, 50.558015803000032 ], [ -121.337406780999942, 50.558285485000098 ], [ -121.336983432999958, 50.558279439000053 ], [ -121.33696444899999, 50.558818802000097 ], [ -121.336182872, 50.558807637000015 ], [ -121.335271037999988, 50.558794602000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999448458441344", "sL_AssetLoss": "725.24", "sL_BldgLoss": "724.84", "sL_StrLoss": "722", "sL_NStrLoss": "2.84", "sL_ContLoss": "0.4", "geom_point": "0101000020E61000004060ED41AB655EC0746A80357B604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.586713005999982, 50.756562279 ], [ -121.586796260999947, 50.75571764400005 ], [ -121.586455553999954, 50.755704174000108 ], [ -121.586492544999913, 50.755328906000059 ], [ -121.583776685999965, 50.75522150300003 ], [ -121.583934772999925, 50.753618674000023 ], [ -121.584130332999919, 50.751635718000017 ], [ -121.586310215999944, 50.751721930000038 ], [ -121.586395282999945, 50.750858869000105 ], [ -121.592056807999924, 50.751082578000108 ], [ -121.592013006999977, 50.751527538000062 ], [ -121.592330428999958, 50.751540071000129 ], [ -121.592252332999976, 50.752333448000037 ], [ -121.592470675999948, 50.752342069000122 ], [ -121.592387535999961, 50.753186712000115 ], [ -121.592728224999959, 50.753200163000081 ], [ -121.592375253999961, 50.756785970000088 ], [ -121.589827451999895, 50.756685353000137 ], [ -121.586713005999982, 50.756562279 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999846184876806", "sL_AssetLoss": "109.22203", "sL_BldgLoss": "109.20523", "sL_StrLoss": "109.00393", "sL_NStrLoss": "0.2013", "sL_ContLoss": "0.0168", "geom_point": "0101000020E61000009D17405BBB5A5EC04DAD6B7280514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.415074393999987, 50.636273199000101 ], [ -121.415069982999938, 50.636021099000054 ], [ -121.414911780999972, 50.636075708000085 ], [ -121.415039801999967, 50.634822144000069 ], [ -121.420685844999966, 50.635054563000033 ], [ -121.420320078999964, 50.638640317000039 ], [ -121.414673585999978, 50.638407880000059 ], [ -121.41488783899996, 50.636310135000087 ], [ -121.415074393999987, 50.636273199000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999671490297203", "sL_AssetLoss": "127.5457", "sL_BldgLoss": "127.5038", "sL_StrLoss": "127.0118", "sL_NStrLoss": "0.492", "sL_ContLoss": "0.0419", "geom_point": "0101000020E610000033571F72E7655EC0099C5366D6614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.593816689999954, 50.762617393000085 ], [ -121.595259365999965, 50.762674314000058 ], [ -121.594906522999963, 50.766260089000092 ], [ -121.59418155799996, 50.766231488000081 ], [ -121.58924306599999, 50.766036529000083 ], [ -121.589596360999948, 50.762450771 ], [ -121.593816689999954, 50.762617393000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999067121521141", "sL_AssetLoss": "328.017", "sL_BldgLoss": "327.711", "sL_StrLoss": "326", "sL_NStrLoss": "1.711", "sL_ContLoss": "0.306", "geom_point": "0101000020E6100000E321A53CA7655EC034F21E0C61564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.585682818999942, 50.672931678000097 ], [ -121.591334516999922, 50.673155442000059 ], [ -121.590982063999917, 50.676741583000087 ], [ -121.585329915999949, 50.676517801000053 ], [ -121.585682818999942, 50.672931678000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999336326113032", "sL_AssetLoss": "453.536", "sL_BldgLoss": "453.235", "sL_StrLoss": "451", "sL_NStrLoss": "2.235", "sL_ContLoss": "0.301", "geom_point": "0101000020E61000003340587CF9535EC04CD82379D3374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.309075791999959, 50.438272539000131 ], [ -121.309199944999975, 50.437078838000069 ], [ -121.308784160999949, 50.437061233000136 ], [ -121.308945066999925, 50.435514218000073 ], [ -121.310679891999968, 50.434015612000103 ], [ -121.311287022999977, 50.433565133000023 ], [ -121.313164497999963, 50.433644580000056 ], [ -121.314777473999968, 50.433712809000035 ], [ -121.314653475999989, 50.434906520000069 ], [ -121.315069243999915, 50.434924103000171 ], [ -121.314696709999964, 50.438510383000121 ], [ -121.312011606999974, 50.438396801000096 ], [ -121.309075791999959, 50.438272539000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999920838322168", "sL_AssetLoss": "101.059", "sL_BldgLoss": "101.051", "sL_StrLoss": "101", "sL_NStrLoss": "0.051", "sL_ContLoss": "0.008", "geom_point": "0101000020E6100000FEE17C2444575EC0C27FA1E4616A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.36406382699991, 50.831983364000102 ], [ -121.363476222999978, 50.831703356000077 ], [ -121.363071156000018, 50.831697673000079 ], [ -121.363077602999979, 50.83151340200007 ], [ -121.362990229000019, 50.831471764000057 ], [ -121.362786824999915, 50.831423878000052 ], [ -121.362228951999953, 50.831416048000115 ], [ -121.362257268999912, 50.830607031000085 ], [ -121.362670369999989, 50.830612829000124 ], [ -121.36272160099999, 50.830513523000057 ], [ -121.362831827999941, 50.830299864000054 ], [ -121.365114427999941, 50.830978763000097 ], [ -121.364983505999959, 50.83110395700006 ], [ -121.364348788999948, 50.831710886000067 ], [ -121.364348622999955, 50.831715590000051 ], [ -121.364343935999926, 50.831715525000057 ], [ -121.36406382699991, 50.831983364000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27670833", "BldgCostT": "19083333", "sL_LossRatio": "0.999856931997954", "sL_AssetLoss": "5095.479", "sL_BldgLoss": "5094.75", "sL_StrLoss": "5090", "sL_NStrLoss": "4.75", "sL_ContLoss": "0.729", "geom_point": "0101000020E6100000F1FB50CC2E585EC0DB7525B8476B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.381277324999928, 50.845470873000096 ], [ -121.381379527, 50.844482300000067 ], [ -121.379312221999953, 50.84439692200008 ], [ -121.379377615999942, 50.843764653000044 ], [ -121.379195261999897, 50.843757120000113 ], [ -121.379321493999953, 50.842536619000029 ], [ -121.378607123999956, 50.842507106000099 ], [ -121.378646651999944, 50.842124979000054 ], [ -121.377705318, 50.842086082000094 ], [ -121.377874141999939, 50.840454229000052 ], [ -121.374731326999964, 50.84032430600012 ], [ -121.374790849999926, 50.83974931300007 ], [ -121.373755230999919, 50.8397064810001 ], [ -121.373890729999914, 50.838397799000084 ], [ -121.368779148, 50.838186250000014 ], [ -121.368956063999931, 50.836479322000073 ], [ -121.364867628999946, 50.836309947000132 ], [ -121.365239452999958, 50.832725208000035 ], [ -121.36837993099999, 50.83285532500004 ], [ -121.368395419999956, 50.832705884000099 ], [ -121.36931531399992, 50.832743981000135 ], [ -121.370496302999953, 50.832792878000092 ], [ -121.370537446999961, 50.832395734000052 ], [ -121.376208181, 50.83263035300007 ], [ -121.37620528199993, 50.832658372000047 ], [ -121.378189514999946, 50.832740399000045 ], [ -121.378138107999959, 50.833237429000114 ], [ -121.378514637999913, 50.833252990000062 ], [ -121.378462347999942, 50.83375858900007 ], [ -121.378781661999966, 50.833771785000053 ], [ -121.378778161999904, 50.833805638000101 ], [ -121.38003880299999, 50.833823150000114 ], [ -121.380034670999976, 50.833942464000081 ], [ -121.380010790999975, 50.834632174000092 ], [ -121.379806199, 50.834629333000045 ], [ -121.379722629999918, 50.835437584000033 ], [ -121.379982774999974, 50.835441198000119 ], [ -121.379964098999949, 50.835980547000091 ], [ -121.380389962999971, 50.835986460000072 ], [ -121.380382296999983, 50.836207909000066 ], [ -121.383548755999954, 50.836338661000163 ], [ -121.383518499000019, 50.836631534000098 ], [ -121.384884830999937, 50.83668792600006 ], [ -121.38484992399998, 50.837025893000039 ], [ -121.385369037999979, 50.837047313000021 ], [ -121.385313895999985, 50.837581236000084 ], [ -121.385640362999951, 50.837594707000115 ], [ -121.38563334299999, 50.837662690000101 ], [ -121.386878924999934, 50.837714074000104 ], [ -121.38683636199994, 50.838126327000069 ], [ -121.387593528999957, 50.838157556000098 ], [ -121.387363222999952, 50.840388491000091 ], [ -121.388811936999971, 50.840448227000103 ], [ -121.388514982999979, 50.843325351000068 ], [ -121.386599358999888, 50.844171006000082 ], [ -121.383336689999908, 50.845175663000077 ], [ -121.383353064999966, 50.845279398000052 ], [ -121.383363464999917, 50.84534524000005 ], [ -121.382916309, 50.845538535000088 ], [ -121.381277324999928, 50.845470873000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9412917", "BldgCostT": "6491667", "sL_LossRatio": "0.99970146068822", "sL_AssetLoss": "1949.492", "sL_BldgLoss": "1948.91", "sL_StrLoss": "1945", "sL_NStrLoss": "3.91", "sL_ContLoss": "0.582", "geom_point": "0101000020E6100000D3B32805006B5EC0F9737E4847694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.672656475999958, 50.825923456000083 ], [ -121.672712508999922, 50.825344623000092 ], [ -121.672059193999957, 50.825319340000057 ], [ -121.672198554999952, 50.823879840000117 ], [ -121.672247770999931, 50.823371451000085 ], [ -121.670538410999924, 50.82330528100006 ], [ -121.670372254999961, 50.823298848000036 ], [ -121.670364895999938, 50.823249805000103 ], [ -121.668225596999903, 50.823238512000103 ], [ -121.66406293299994, 50.823216417000019 ], [ -121.664124376999965, 50.822582904000072 ], [ -121.664105165999928, 50.822582683000157 ], [ -121.664135955999939, 50.821503844000063 ], [ -121.664228925999936, 50.821504909000069 ], [ -121.664257182999989, 50.821213542000137 ], [ -121.664301924999947, 50.820752176000092 ], [ -121.666135246999914, 50.820823249000092 ], [ -121.666286731, 50.8192605200001 ], [ -121.671301722999885, 50.819454785000147 ], [ -121.671302693999948, 50.819481679000027 ], [ -121.671956279999989, 50.819490721000065 ], [ -121.671943195999944, 50.819625868000102 ], [ -121.673445859999944, 50.819684024 ], [ -121.673432884999954, 50.819818101000038 ], [ -121.67450793099998, 50.819859696000044 ], [ -121.67436751199989, 50.821311044000048 ], [ -121.674319466999947, 50.821807597000038 ], [ -121.67530928099994, 50.821845884 ], [ -121.678077235999979, 50.821952903000103 ], [ -121.678021278999907, 50.822531741000063 ], [ -121.67867455499993, 50.822556988000024 ], [ -121.67856460299997, 50.823694476000064 ], [ -121.678327922999955, 50.826142776000047 ], [ -121.677662362999939, 50.826117052000079 ], [ -121.676978083, 50.826090602000129 ], [ -121.672656475999958, 50.825923456000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.999964131454059", "sL_AssetLoss": "1009.2408", "sL_BldgLoss": "1009.2046", "sL_StrLoss": "1009", "sL_NStrLoss": "0.2046", "sL_ContLoss": "0.0362", "geom_point": "0101000020E6100000B5A293C6A4695EC0A9BAEC7C64684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.654403847999973, 50.819270025000066 ], [ -121.654404893999924, 50.819233626 ], [ -121.653553362999929, 50.81922380100012 ], [ -121.653561120999925, 50.818954092000091 ], [ -121.653135357999972, 50.818949177000029 ], [ -121.653143116999914, 50.818679468000042 ], [ -121.652717356999986, 50.818674553000037 ], [ -121.652732880999963, 50.818135134000094 ], [ -121.652307126999958, 50.818130217000096 ], [ -121.652338180999919, 50.817051382000109 ], [ -121.651912435999975, 50.817046464000057 ], [ -121.651918321000011, 50.816842114000025 ], [ -121.650216689999965, 50.816775924000098 ], [ -121.650209457999949, 50.81702677100008 ], [ -121.648080736999944, 50.817002123000051 ], [ -121.648089659, 50.816693149000095 ], [ -121.646749526999912, 50.816640977000112 ], [ -121.64677063799995, 50.816424150000103 ], [ -121.645884810999974, 50.816389654000105 ], [ -121.645937238999963, 50.815851275000092 ], [ -121.645596141999988, 50.81583799 ], [ -121.645552055999957, 50.812270328000068 ], [ -121.645551019999971, 50.812236905000113 ], [ -121.646088497999969, 50.812257840000065 ], [ -121.646092405999951, 50.81212268600008 ], [ -121.647369503999926, 50.812137501000102 ], [ -121.647364591999946, 50.812307532000084 ], [ -121.650902219999949, 50.81244521500011 ], [ -121.65084985599999, 50.812983599000063 ], [ -121.651903620999974, 50.81302459000004 ], [ -121.651882536999921, 50.813241419000065 ], [ -121.652768306999931, 50.813275867000051 ], [ -121.652602106999936, 50.814985311000029 ], [ -121.652532166999933, 50.815704630000049 ], [ -121.652802729999976, 50.815707755000034 ], [ -121.652794969999917, 50.815977464000042 ], [ -121.65364644099999, 50.815987294000053 ], [ -121.653638684999976, 50.816257003000025 ], [ -121.654064422999937, 50.816261915000076 ], [ -121.654056669999974, 50.816531625000131 ], [ -121.654908150999944, 50.816541446000066 ], [ -121.65490040399996, 50.816811155000089 ], [ -121.655326146, 50.816816063000054 ], [ -121.655318398999952, 50.817085772000063 ], [ -121.65616989199998, 50.817095584000093 ], [ -121.656162150999961, 50.817365293000073 ], [ -121.656587897999984, 50.817370196000113 ], [ -121.656580160999965, 50.817639905000036 ], [ -121.657005909999953, 50.817644807000079 ], [ -121.656998174999941, 50.81791451600008 ], [ -121.65742392699994, 50.817919417000077 ], [ -121.657416193999921, 50.818189126000078 ], [ -121.657841948999945, 50.818194025000061 ], [ -121.657818752999944, 50.819003154000065 ], [ -121.657392988000012, 50.818998255000068 ], [ -121.657385252000012, 50.819267963000065 ], [ -121.656959486999966, 50.819263063000051 ], [ -121.656957958999925, 50.819316305000015 ], [ -121.654403847999973, 50.819270025000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7346750", "BldgCostT": "4595000", "sL_LossRatio": "0.999763431925071", "sL_AssetLoss": "271.80337", "sL_BldgLoss": "271.73907", "sL_StrLoss": "271.02417", "sL_NStrLoss": "0.7149", "sL_ContLoss": "0.0643", "geom_point": "0101000020E6100000ED99671DBC545EC01C755BBF6C644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.322133061999978, 50.785248860000131 ], [ -121.322200638999959, 50.783361175000088 ], [ -121.321775265999946, 50.783355054000062 ], [ -121.321804232999952, 50.782546046000029 ], [ -121.322229599999929, 50.782552167000091 ], [ -121.32223925299995, 50.782282497000047 ], [ -121.322502409999942, 50.782286283000118 ], [ -121.324213208999979, 50.782310880000068 ], [ -121.324791442000034, 50.782319188000059 ], [ -121.32478180399994, 50.782588857000114 ], [ -121.325632539999901, 50.782601074000077 ], [ -121.325622904999946, 50.782870744000071 ], [ -121.326048276999956, 50.782876851000033 ], [ -121.326038644999969, 50.783146520000052 ], [ -121.326464019999918, 50.783152626000096 ], [ -121.326415872999974, 50.784500976000089 ], [ -121.326251191999958, 50.784498611000082 ], [ -121.325990485999952, 50.784494870000088 ], [ -121.325980853999923, 50.784764539000093 ], [ -121.326334471999985, 50.784769615000052 ], [ -121.326406241999962, 50.784770645000037 ], [ -121.326398803999922, 50.784978954000081 ], [ -121.326367723999965, 50.785849324000019 ], [ -121.325942325999904, 50.785843218000039 ], [ -121.325932692999942, 50.786112888000069 ], [ -121.325507292999959, 50.786106781000058 ], [ -121.325497656999943, 50.786376451000116 ], [ -121.325141440999943, 50.786371335000084 ], [ -121.325072255999913, 50.78637034100008 ], [ -121.325062617999947, 50.786640010000049 ], [ -121.323786403999975, 50.786621675000056 ], [ -121.323776757999894, 50.786891345000086 ], [ -121.322952900999923, 50.786879499000037 ], [ -121.321649726999965, 50.786860752000067 ], [ -121.321707670999928, 50.785242738000079 ], [ -121.322133061999978, 50.785248860000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73916228", "BldgCostT": "48354857", "sL_LossRatio": "0.972619082967959", "sL_AssetLoss": "11850.23349", "sL_BldgLoss": "11525.76323", "sL_StrLoss": "11386.39653", "sL_NStrLoss": "139.3667", "sL_ContLoss": "324.47026", "geom_point": "0101000020E6100000DB5AA14086545EC000C3B83C52674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.329076171999986, 50.815961114000068 ], [ -121.328166931999988, 50.815068509000128 ], [ -121.327224139999927, 50.814142948000075 ], [ -121.32720220099992, 50.814121423000081 ], [ -121.327108295999949, 50.814029205000047 ], [ -121.326691080999979, 50.813619597000056 ], [ -121.326441513999981, 50.813393205000082 ], [ -121.326028009999973, 50.812923991000062 ], [ -121.325962836999977, 50.812832973000113 ], [ -121.325723709999977, 50.812499096000074 ], [ -121.325502766999961, 50.812093780000104 ], [ -121.325300889999966, 50.811194239000066 ], [ -121.323719642999947, 50.811249612000047 ], [ -121.323472328999912, 50.811328373000109 ], [ -121.323365521999946, 50.81123388300005 ], [ -121.322825490999975, 50.810920965000086 ], [ -121.322446400999965, 50.810701306000048 ], [ -121.321569289999985, 50.811222594000064 ], [ -121.321533013999897, 50.811236643000029 ], [ -121.320680802999931, 50.811566191000111 ], [ -121.320373502999942, 50.811614906000074 ], [ -121.319504318000014, 50.811752696000077 ], [ -121.31866750599994, 50.811751901000015 ], [ -121.317614098999968, 50.811591694000086 ], [ -121.316668126999943, 50.811383684000134 ], [ -121.314463294999911, 50.810898800000118 ], [ -121.313952667999956, 50.810786493000045 ], [ -121.311979895999968, 50.8103555020001 ], [ -121.307278447, 50.809463003000104 ], [ -121.306178107, 50.809254125000074 ], [ -121.306042039999937, 50.809229531000014 ], [ -121.305323772999884, 50.809099858000103 ], [ -121.304252483999974, 50.808906443000105 ], [ -121.30429781, 50.80765477300006 ], [ -121.30440680299999, 50.807656357000049 ], [ -121.304464261999925, 50.807109215000011 ], [ -121.305773532, 50.807164218000032 ], [ -121.305840237999959, 50.806528847000102 ], [ -121.306041491999963, 50.806537300000123 ], [ -121.306078208999921, 50.805522182000033 ], [ -121.305652638999973, 50.805516001000115 ], [ -121.305662395999931, 50.805246335000042 ], [ -121.305236825999984, 50.805240153000099 ], [ -121.305246584999978, 50.804970486000109 ], [ -121.30491716599991, 50.804965698000117 ], [ -121.304884729999927, 50.801727534000072 ], [ -121.305363673999935, 50.801734495000076 ], [ -121.305353915999902, 50.802004160000067 ], [ -121.306204996999966, 50.80201652300007 ], [ -121.306195243999952, 50.802286188000075 ], [ -121.307046330999981, 50.802298545000077 ], [ -121.307036583, 50.802568211000043 ], [ -121.30788767599995, 50.802580563000063 ], [ -121.30787793199994, 50.802850229000079 ], [ -121.308729028999934, 50.802862573000027 ], [ -121.308719290999974, 50.803132240000068 ], [ -121.30957039299993, 50.80314457900004 ], [ -121.30956066, 50.80341424500012 ], [ -121.311688429999919, 50.803445063000062 ], [ -121.311678708999963, 50.803714731000063 ], [ -121.312529820999927, 50.803727048000056 ], [ -121.312490956999952, 50.804805716000089 ], [ -121.312065389999958, 50.804799558000063 ], [ -121.312026511999946, 50.805878224000018 ], [ -121.312452088999976, 50.805884383000034 ], [ -121.312442370999975, 50.80615405 ], [ -121.313293528999907, 50.806166361000116 ], [ -121.313283816999942, 50.806436029000075 ], [ -121.3137094, 50.806442182000076 ], [ -121.313699688999961, 50.806711849000045 ], [ -121.314550857999933, 50.806724152000086 ], [ -121.31454115299999, 50.806993819000084 ], [ -121.314966740999978, 50.806999968000113 ], [ -121.31491822199996, 50.808348303000081 ], [ -121.314067023999911, 50.808336003000107 ], [ -121.314037908999921, 50.809144623000059 ], [ -121.314413609, 50.809160374000072 ], [ -121.314394413999963, 50.809343527000074 ], [ -121.315444484999915, 50.809387546000025 ], [ -121.315408201999944, 50.80973384100011 ], [ -121.317475937999944, 50.809820492000057 ], [ -121.317327161999927, 50.811240987000126 ], [ -121.317835522999985, 50.811262285000062 ], [ -121.317814450999919, 50.811463499000084 ], [ -121.31883040799994, 50.811506057000074 ], [ -121.318992674999961, 50.809956265000046 ], [ -121.319782715999921, 50.809989351000077 ], [ -121.319835564999934, 50.809484484000073 ], [ -121.321289776999961, 50.809545371000134 ], [ -121.321337824999915, 50.809086219000093 ], [ -121.323253233999964, 50.809166388000023 ], [ -121.323405116999979, 50.809172742000094 ], [ -121.323410930999941, 50.809010301000107 ], [ -121.323265489999969, 50.809008210000094 ], [ -121.32298532599999, 50.809004183000134 ], [ -121.322994982999958, 50.808734515 ], [ -121.322569376999965, 50.808728395000095 ], [ -121.322644136999912, 50.806641296000059 ], [ -121.322655367999971, 50.806327735000096 ], [ -121.322536568999951, 50.806322763000026 ], [ -121.322585440999944, 50.805855567000016 ], [ -121.322458696999888, 50.805850262000021 ], [ -121.322465682999905, 50.805783484000123 ], [ -121.322336810999929, 50.805757172000021 ], [ -121.321824474000024, 50.80574980100004 ], [ -121.321851615, 50.804992384000052 ], [ -121.321848331999945, 50.804992247000065 ], [ -121.321853330999929, 50.80494446400013 ], [ -121.321853462999968, 50.804940797000022 ], [ -121.32142789299999, 50.804934673000027 ], [ -121.321442350999916, 50.80453128200012 ], [ -121.321103227999913, 50.804455564000072 ], [ -121.320923423999943, 50.804387797000082 ], [ -121.320596092999935, 50.804383084000072 ], [ -121.32061778399999, 50.803778175000048 ], [ -121.320576527999918, 50.803673164000024 ], [ -121.320454386999941, 50.803301815000118 ], [ -121.319783660999946, 50.803292155000101 ], [ -121.319812684999988, 50.802483151000111 ], [ -121.320080010999902, 50.802487001 ], [ -121.317125532999938, 50.802363224000032 ], [ -121.31750089799999, 50.798778505000037 ], [ -121.3231670979999, 50.799015818000036 ], [ -121.322997204000018, 50.800640329 ], [ -121.323710174999945, 50.800650578000017 ], [ -121.323700522999943, 50.800920247000107 ], [ -121.323945379999913, 50.800923767000093 ], [ -121.324126056999958, 50.800926362000084 ], [ -121.324116407999981, 50.801196031000089 ], [ -121.324541944999964, 50.801202145000069 ], [ -121.324531143999977, 50.801504110000053 ], [ -121.32788989699999, 50.801644596000102 ], [ -121.327838743999919, 50.802134201000065 ], [ -121.32814462199994, 50.802146990000089 ], [ -121.328109180999917, 50.802486228000099 ], [ -121.328500332999965, 50.802502580000116 ], [ -121.328451525, 50.80296978100008 ], [ -121.328578261999965, 50.802975079000106 ], [ -121.328542927999976, 50.80331332100009 ], [ -121.329029667999947, 50.803333669000089 ], [ -121.328655188999974, 50.806918408000065 ], [ -121.328595603999958, 50.806915918000101 ], [ -121.328556733999989, 50.80800492500002 ], [ -121.328982334, 50.808011023000141 ], [ -121.328975267999951, 50.808209058000067 ], [ -121.332657072999893, 50.808362880000097 ], [ -121.332598909999959, 50.80892006300008 ], [ -121.33300859799995, 50.80893717100011 ], [ -121.33297229499999, 50.809284962000064 ], [ -121.334109483999939, 50.809332442000063 ], [ -121.334108929999928, 50.809337746000075 ], [ -121.334771960999916, 50.809365425000095 ], [ -121.334461453999921, 50.81234107400013 ], [ -121.333648517999933, 50.812353661000081 ], [ -121.333511858999913, 50.813390211000119 ], [ -121.33282171399992, 50.813361395000129 ], [ -121.332754982999973, 50.814000596000071 ], [ -121.330490871, 50.813906032000062 ], [ -121.330480578999982, 50.814004561000104 ], [ -121.33077452399999, 50.814016841000083 ], [ -121.33064179900002, 50.815287587000142 ], [ -121.331171996999956, 50.81530973400001 ], [ -121.331166889999949, 50.815358631000052 ], [ -121.329276599999915, 50.816157886000049 ], [ -121.329076171999986, 50.815961114000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.999950657891089", "sL_AssetLoss": "90.18666", "sL_BldgLoss": "90.18221", "sL_StrLoss": "90.10181", "sL_NStrLoss": "0.0804", "sL_ContLoss": "0.00445", "geom_point": "0101000020E61000004B96EE096D545EC057BC89089C644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.319513029999953, 50.787099791000074 ], [ -121.3195227, 50.786830123000094 ], [ -121.319097293999945, 50.786823992000031 ], [ -121.319106966999982, 50.786554323000054 ], [ -121.318681563999931, 50.78654819100008 ], [ -121.318691237999985, 50.786278522000039 ], [ -121.318265837999917, 50.786272389000104 ], [ -121.318275516999961, 50.786002720000106 ], [ -121.317424720999938, 50.785990448000156 ], [ -121.317452581999987, 50.785214406000044 ], [ -121.317463448999931, 50.784911774000101 ], [ -121.31873960899992, 50.784930179000106 ], [ -121.318729934999951, 50.78519984800004 ], [ -121.319155325999986, 50.785205980000086 ], [ -121.319145654999929, 50.785475649000027 ], [ -121.31957104699994, 50.785481779000058 ], [ -121.319561377999918, 50.785751448000056 ], [ -121.3204121699999, 50.785763703000043 ], [ -121.320402504999919, 50.786033372000098 ], [ -121.320827903999898, 50.786039498000086 ], [ -121.320798352999958, 50.786864209000022 ], [ -121.320789251999955, 50.787118175000046 ], [ -121.319513029999953, 50.787099791000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6144833", "BldgCostT": "4028333", "sL_LossRatio": "0.761807826217543", "sL_AssetLoss": "651.2418", "sL_BldgLoss": "496.1211", "sL_StrLoss": "438.0811", "sL_NStrLoss": "58.04", "sL_ContLoss": "155.1207", "geom_point": "0101000020E610000011F826FABA535EC0376F39EA2A634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.30643111299996, 50.776118204000063 ], [ -121.306679309999978, 50.773751953000058 ], [ -121.306057888999987, 50.773725834000054 ], [ -121.306046427999945, 50.773870563000081 ], [ -121.305959426999962, 50.774082564000068 ], [ -121.305937338999982, 50.774096215 ], [ -121.305932782999932, 50.774222303000037 ], [ -121.305674920999962, 50.774218556000136 ], [ -121.305347828, 50.774302164000048 ], [ -121.304476028999943, 50.774348310000065 ], [ -121.304444251999925, 50.773607462000022 ], [ -121.304423892999978, 50.773131514000099 ], [ -121.310506567999965, 50.77309075400008 ], [ -121.311062774, 50.773098516000132 ], [ -121.311055602999943, 50.773641909000105 ], [ -121.311067622999985, 50.774222827000074 ], [ -121.311096678999974, 50.775624855000032 ], [ -121.31110462099997, 50.775694746000063 ], [ -121.311200053999968, 50.776533261000111 ], [ -121.30670715799998, 50.776344530000102 ], [ -121.306685961999946, 50.7769313330001 ], [ -121.305671732999912, 50.776916600000099 ], [ -121.305410025999947, 50.776912798000133 ], [ -121.305439267999986, 50.776103795000068 ], [ -121.305778392999926, 50.776108723000092 ], [ -121.30643111299996, 50.776118204000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7923500", "BldgCostT": "5255000", "sL_LossRatio": "0.837536011180771", "sL_AssetLoss": "788.7828", "sL_BldgLoss": "660.634", "sL_StrLoss": "612.092", "sL_NStrLoss": "48.542", "sL_ContLoss": "128.1488", "geom_point": "0101000020E61000002AB6170B22545EC0FBBDC1D509654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.313827493999909, 50.791334657000085 ], [ -121.313833044999967, 50.79118035700008 ], [ -121.311188373, 50.791069387000071 ], [ -121.311564117999964, 50.787484639000063 ], [ -121.312250012999954, 50.787513426000082 ], [ -121.312258791999952, 50.787429655000103 ], [ -121.31493852499996, 50.787542080000023 ], [ -121.31524039899989, 50.787554742000054 ], [ -121.315249265999938, 50.787308082 ], [ -121.315484071, 50.78731147400002 ], [ -121.31652549099995, 50.787326512000099 ], [ -121.316515371999941, 50.78760820500009 ], [ -121.31792352699992, 50.787667237000065 ], [ -121.31770136899992, 50.789789656000067 ], [ -121.317627951999924, 50.790491011000036 ], [ -121.317612295999979, 50.790640585000055 ], [ -121.317548289999976, 50.791252005000068 ], [ -121.316862334999911, 50.79122325100009 ], [ -121.316853563999956, 50.791307021000065 ], [ -121.315958164999955, 50.791269482000089 ], [ -121.315954717999929, 50.791365392000053 ], [ -121.313827493999909, 50.791334657000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167038083", "BldgCostT": "109578333", "sL_LossRatio": "0.992133412389497", "sL_AssetLoss": "22817.06108", "sL_BldgLoss": "22637.56867", "sL_StrLoss": "22553.57397", "sL_NStrLoss": "83.9947", "sL_ContLoss": "179.49241", "geom_point": "0101000020E6100000738A9F104B545EC01C6CB09120684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.325248476999946, 50.817513449000089 ], [ -121.325261723999944, 50.817386776000077 ], [ -121.324970750999967, 50.817374606000023 ], [ -121.324929531999942, 50.817354001000069 ], [ -121.324732103999935, 50.817358869000053 ], [ -121.324784859999951, 50.816854440000064 ], [ -121.323021737999952, 50.816829106000029 ], [ -121.322893619999931, 50.816781158 ], [ -121.322195541, 50.816329725000088 ], [ -121.32187125699997, 50.816326266000075 ], [ -121.32187316699995, 50.816272974000071 ], [ -121.321021820999988, 50.816260723000049 ], [ -121.321031492999964, 50.815991056000087 ], [ -121.320180151, 50.815978799 ], [ -121.320189827999954, 50.815709131000148 ], [ -121.319772448999942, 50.815703120000137 ], [ -121.319759829999938, 50.815823644000076 ], [ -121.319754482999954, 50.81597266800005 ], [ -121.319744243999963, 50.815972521000077 ], [ -121.319718858, 50.816214999000103 ], [ -121.319320490999985, 50.816198318000076 ], [ -121.319319130999958, 50.816236204000091 ], [ -121.3188182479999, 50.816228985000159 ], [ -121.318811483999951, 50.81629357900011 ], [ -121.317963052999971, 50.816284501000048 ], [ -121.313140357999941, 50.816082391000123 ], [ -121.313174508999964, 50.815756660000098 ], [ -121.310271882999928, 50.815634914000043 ], [ -121.310293879999946, 50.81542523400001 ], [ -121.309077254999977, 50.815374183000067 ], [ -121.309313389999943, 50.81312372900004 ], [ -121.308358889999937, 50.813109890000135 ], [ -121.30836192, 50.813026016000045 ], [ -121.307942327999939, 50.812969264000053 ], [ -121.307981881999964, 50.812859147000076 ], [ -121.307990647999986, 50.812834742000049 ], [ -121.307942993999916, 50.812834050000106 ], [ -121.30795281599994, 50.812562283000027 ], [ -121.307618490999943, 50.812548248000105 ], [ -121.307634747999899, 50.812393369000105 ], [ -121.306190150999953, 50.812332711000096 ], [ -121.306253397999967, 50.811730299000075 ], [ -121.305853832999972, 50.811724497000114 ], [ -121.305861308, 50.811517865000077 ], [ -121.304092333999932, 50.811443555000039 ], [ -121.304170710999955, 50.810697341000022 ], [ -121.30408778499999, 50.810693857000054 ], [ -121.304265339999958, 50.8090033390001 ], [ -121.304248983999969, 50.809003102000119 ], [ -121.304252483999974, 50.808906443000105 ], [ -121.305323772999884, 50.809099858000103 ], [ -121.306042039999937, 50.809229531000014 ], [ -121.306178107, 50.809254125000074 ], [ -121.307278447, 50.809463003000104 ], [ -121.311979895999968, 50.8103555020001 ], [ -121.313952667999956, 50.810786493000045 ], [ -121.314463294999911, 50.810898800000118 ], [ -121.316668126999943, 50.811383684000134 ], [ -121.317614098999968, 50.811591694000086 ], [ -121.31866750599994, 50.811751901000015 ], [ -121.319504318000014, 50.811752696000077 ], [ -121.320373502999942, 50.811614906000074 ], [ -121.320680802999931, 50.811566191000111 ], [ -121.321533013999897, 50.811236643000029 ], [ -121.321569289999985, 50.811222594000064 ], [ -121.322446400999965, 50.810701306000048 ], [ -121.322825490999975, 50.810920965000086 ], [ -121.323365521999946, 50.81123388300005 ], [ -121.323472328999912, 50.811328373000109 ], [ -121.323719642999947, 50.811249612000047 ], [ -121.325300889999966, 50.811194239000066 ], [ -121.325502766999961, 50.812093780000104 ], [ -121.325723709999977, 50.812499096000074 ], [ -121.325962836999977, 50.812832973000113 ], [ -121.326028009999973, 50.812923991000062 ], [ -121.326441513999981, 50.813393205000082 ], [ -121.326691080999979, 50.813619597000056 ], [ -121.327108295999949, 50.814029205000047 ], [ -121.32720220099992, 50.814121423000081 ], [ -121.327224139999927, 50.814142948000075 ], [ -121.328166931999988, 50.815068509000128 ], [ -121.329076171999986, 50.815961114000068 ], [ -121.329276599999915, 50.816157886000049 ], [ -121.328775344999926, 50.816396366000042 ], [ -121.328286030999919, 50.816389657000045 ], [ -121.328470710999937, 50.816609506000091 ], [ -121.328451275999953, 50.817112193000114 ], [ -121.328455892, 50.817114576000122 ], [ -121.329003879999973, 50.817399213000016 ], [ -121.3267433499999, 50.81826074 ], [ -121.325248476999946, 50.817513449000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999740443496108", "sL_AssetLoss": "237.3279", "sL_BldgLoss": "237.2663", "sL_StrLoss": "237", "sL_NStrLoss": "0.2663", "sL_ContLoss": "0.0616", "geom_point": "0101000020E6100000874C1A1FBD3F5EC06AE4CA0BF6404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.9954828, 50.510807306000061 ], [ -120.995619840999936, 50.507571715000033 ], [ -120.995197027999964, 50.507564432000095 ], [ -120.995242713999971, 50.506485902000058 ], [ -120.995665516999964, 50.506493184000121 ], [ -120.995699771999952, 50.505684286000069 ], [ -120.9952769759999, 50.505677004000162 ], [ -120.995345493999963, 50.50405920700009 ], [ -120.994922713, 50.504051924000073 ], [ -120.994968397999941, 50.502973394000058 ], [ -120.994545625999962, 50.502966108000066 ], [ -120.994568471999969, 50.502426843000102 ], [ -120.993300168999895, 50.502404980000072 ], [ -120.993334459999943, 50.501596082000042 ], [ -120.993757219999907, 50.501603371000058 ], [ -120.993768647999971, 50.501333739000081 ], [ -120.994191405999985, 50.501341026000063 ], [ -120.99420283099991, 50.501071393000117 ], [ -120.996739366999947, 50.501115086000077 ], [ -120.996727956999962, 50.501384718000082 ], [ -120.997150715999908, 50.501391995000063 ], [ -120.997048036999942, 50.503818694000131 ], [ -120.997470816999979, 50.503825969000061 ], [ -120.997333917999953, 50.507061566000097 ], [ -120.997756727999942, 50.50706884100012 ], [ -120.997585605, 50.511113334000107 ], [ -120.99716275899999, 50.511106059000028 ], [ -120.997105697999956, 50.512454222000081 ], [ -120.996682838999931, 50.512446943000036 ], [ -120.996660008999925, 50.512986208000036 ], [ -120.996237145999913, 50.51297893 ], [ -120.996225727999899, 50.513248562000086 ], [ -120.99580286299999, 50.513241280000059 ], [ -120.995791441999927, 50.513510912000122 ], [ -120.995368576999937, 50.513503630000045 ], [ -120.9953457299999, 50.514042895000038 ], [ -120.994499987, 50.514028323000069 ], [ -120.994488557999915, 50.514297956000043 ], [ -120.994065684999896, 50.51429066900009 ], [ -120.99405425399999, 50.514560300000021 ], [ -120.992785625999986, 50.51453842800003 ], [ -120.992819940999965, 50.51372953200007 ], [ -120.993242808999966, 50.513736824000091 ], [ -120.993254243999914, 50.513467192000121 ], [ -120.993677109999965, 50.513474484 ], [ -120.993699974, 50.512935219000099 ], [ -120.99412283599996, 50.512942508000037 ], [ -120.994145695999975, 50.512403244000083 ], [ -120.994568552999965, 50.512410531000015 ], [ -120.99459140699993, 50.511871266000114 ], [ -120.99501425899993, 50.511878552000098 ], [ -120.995059955999963, 50.510800022000083 ], [ -120.9954828, 50.510807306000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999845478240768", "sL_AssetLoss": "245.2729", "sL_BldgLoss": "245.235", "sL_StrLoss": "245", "sL_NStrLoss": "0.235", "sL_ContLoss": "0.0379", "geom_point": "0101000020E6100000B42BE3959A345EC0AC762C3A023D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.819529027, 50.478531593000078 ], [ -120.819561566999965, 50.478248655000108 ], [ -120.819219834999956, 50.478232686000098 ], [ -120.819337476, 50.477209835000046 ], [ -120.817979262999955, 50.477146354000098 ], [ -120.818284402999922, 50.474493735000067 ], [ -120.818587689999916, 50.474607706000079 ], [ -120.81882759, 50.474697846000019 ], [ -120.820709758999925, 50.474791472000021 ], [ -120.820712381999968, 50.474791602000032 ], [ -120.82390145899997, 50.474805631000095 ], [ -120.82389664399993, 50.474847545000088 ], [ -120.825254795999939, 50.474910955000034 ], [ -120.825222294, 50.475193896000121 ], [ -120.82556400499999, 50.475209847000066 ], [ -120.82515224699992, 50.478794219000122 ], [ -120.823644201999983, 50.478723815000123 ], [ -120.819529027, 50.478531593000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18139500", "BldgCostT": "12510000", "sL_LossRatio": "0.999692723612338", "sL_AssetLoss": "3188.3348", "sL_BldgLoss": "3187.3551", "sL_StrLoss": "3180.0971", "sL_NStrLoss": "7.258", "sL_ContLoss": "0.9797", "geom_point": "0101000020E6100000E2CBE1E6563F5EC002CE39157C3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.977988519999897, 50.504298582000082 ], [ -120.977996304999948, 50.504116367000059 ], [ -120.974999355999941, 50.503980661000135 ], [ -120.975240242, 50.501822327000099 ], [ -120.975132873999911, 50.501820459000029 ], [ -120.975086736999984, 50.502898977 ], [ -120.974663970999956, 50.502891620000057 ], [ -120.974629358999934, 50.503700508000115 ], [ -120.974206585, 50.503693149000092 ], [ -120.974171965999957, 50.504502037000066 ], [ -120.973749185000017, 50.504494677000068 ], [ -120.973714557999955, 50.505303564 ], [ -120.972023405999963, 50.505274106000066 ], [ -120.972034959999988, 50.505004477000035 ], [ -120.971612172999983, 50.504997109000101 ], [ -120.971635281999951, 50.504457850000065 ], [ -120.971212503999979, 50.50445048200006 ], [ -120.971258728999914, 50.503371966000046 ], [ -120.970835958999928, 50.503364595000079 ], [ -120.970870634, 50.502555708000074 ], [ -120.970447871999923, 50.502548336000061 ], [ -120.970459431999956, 50.502278708000048 ], [ -120.970036671999978, 50.502271334000042 ], [ -120.970059796999948, 50.501732077000028 ], [ -120.969214287999989, 50.501717325000108 ], [ -120.969225855000019, 50.501447696000092 ], [ -120.968803101999939, 50.501440319000054 ], [ -120.968814671999965, 50.501170691000091 ], [ -120.968391921999967, 50.501163311000035 ], [ -120.968403492999954, 50.500893682000033 ], [ -120.967980746999942, 50.500886301000101 ], [ -120.968015468999937, 50.500077415000071 ], [ -120.970129168999932, 50.500114304000149 ], [ -120.97014073099993, 50.499844676000066 ], [ -120.971408946999958, 50.499866791000038 ], [ -120.971432052999887, 50.499327532000073 ], [ -120.971854787999945, 50.49933490100009 ], [ -120.971877889, 50.498795642000069 ], [ -120.97230062099996, 50.498803009000014 ], [ -120.972312167999959, 50.498533380000097 ], [ -120.974425805999928, 50.498570191000042 ], [ -120.974437342999963, 50.498300561000057 ], [ -120.974860066999923, 50.498307918000123 ], [ -120.974883135999903, 50.497768659000016 ], [ -120.975305854999931, 50.497776014000102 ], [ -120.975351979, 50.496697496000095 ], [ -120.97577469099997, 50.4967048500001 ], [ -120.97579774499998, 50.496165589000043 ], [ -120.976220453999957, 50.496172942000065 ], [ -120.976278075999929, 50.494824792000045 ], [ -120.976700770999955, 50.494832142000128 ], [ -120.976746857999956, 50.493753622000078 ], [ -120.97716954399999, 50.493760971000036 ], [ -120.97720409899992, 50.492952080000045 ], [ -120.976781418999934, 50.492944732000076 ], [ -120.976815980999959, 50.492135840000095 ], [ -120.976393308999917, 50.492128491000081 ], [ -120.976416353999937, 50.491589231000063 ], [ -120.975993686999956, 50.491581879000115 ], [ -120.976005212999951, 50.491312250000135 ], [ -120.975582548999967, 50.491304897000127 ], [ -120.975594073999943, 50.491035267000044 ], [ -120.975171414, 50.49102791300006 ], [ -120.975240584999966, 50.489410132000046 ], [ -120.975663230999956, 50.48941748600005 ], [ -120.975674755999961, 50.489147856000081 ], [ -120.976097400999947, 50.48915520700006 ], [ -120.976108922999956, 50.488885578000101 ], [ -120.976531565999892, 50.488892928000084 ], [ -120.97654308599999, 50.488623297000103 ], [ -120.976965725999918, 50.488630646000082 ], [ -120.977023312999933, 50.48728249400007 ], [ -120.977445940999957, 50.487289840000088 ], [ -120.977457454999922, 50.487020209000086 ], [ -120.979570585999966, 50.487056920000057 ], [ -120.979559084999934, 50.487326551000095 ], [ -120.980404340999911, 50.487341225000058 ], [ -120.980392845999944, 50.487610856000039 ], [ -120.98123810899996, 50.487625524000087 ], [ -120.981226615999901, 50.487895155000039 ], [ -120.98164925199994, 50.487902487000049 ], [ -120.98163775899998, 50.488172118000058 ], [ -120.982060396999898, 50.488179449000036 ], [ -120.982048907999982, 50.488449079000127 ], [ -120.982471548999925, 50.488456409000086 ], [ -120.982460060999955, 50.488726040000053 ], [ -120.982882702999959, 50.488733367000052 ], [ -120.982848251999954, 50.489542261000075 ], [ -120.984538851999929, 50.489571556000087 ], [ -120.984550326999965, 50.489301924000102 ], [ -120.98497297599999, 50.489309243000058 ], [ -120.984984447999977, 50.48903961200007 ], [ -120.985407092999964, 50.489046930000072 ], [ -120.985418562999968, 50.488777297000112 ], [ -120.985841206999936, 50.48878461400011 ], [ -120.985852673999958, 50.488514982000019 ], [ -120.986697957, 50.488529610000057 ], [ -120.986709418999965, 50.488259979000055 ], [ -120.987132057999972, 50.48826729000006 ], [ -120.987143518, 50.487997658 ], [ -120.989256706, 50.488034194000072 ], [ -120.989245256999965, 50.488303826000035 ], [ -120.992203744999941, 50.488354911000073 ], [ -120.992215175999917, 50.488085279000082 ], [ -120.993060454, 50.488099861000073 ], [ -120.993071879999931, 50.487830227000075 ], [ -120.993494517999949, 50.48783751700006 ], [ -120.993505940999952, 50.487567883000096 ], [ -120.993928576999963, 50.487575170000021 ], [ -120.993939995999966, 50.487305537000097 ], [ -120.994362630999944, 50.487312822000035 ], [ -120.994385465999983, 50.486773555000077 ], [ -120.995230721999988, 50.486788121000117 ], [ -120.995242134999955, 50.486518487000048 ], [ -120.995664760999958, 50.486525768000028 ], [ -120.99568758199996, 50.485986501000085 ], [ -120.998223313, 50.486030151000087 ], [ -120.998211917999967, 50.486299786000068 ], [ -120.998634542, 50.486307055000026 ], [ -120.998623149999901, 50.486576689000039 ], [ -120.999045775999917, 50.48658395800004 ], [ -120.999034384999945, 50.486853592000017 ], [ -120.999457013999987, 50.486860859000068 ], [ -120.999445624999964, 50.487130493000095 ], [ -120.999868257999978, 50.487137759000063 ], [ -120.999845482999959, 50.487677027000046 ], [ -121.000268120999976, 50.487684291000043 ], [ -121.000233966999957, 50.488493194000064 ], [ -121.000656611999943, 50.488500457000107 ], [ -121.000645229999947, 50.488770091000063 ], [ -121.001067875999951, 50.488777352000064 ], [ -121.001056494999929, 50.489046987000108 ], [ -121.00256723699998, 50.489072929000045 ], [ -121.002747096999926, 50.489076017000031 ], [ -121.002734772999943, 50.489368259000052 ], [ -121.002724353999923, 50.489615286000131 ], [ -121.002893683999986, 50.489618193000105 ], [ -121.003147010999939, 50.489622539000102 ], [ -121.003158378999927, 50.48935290500004 ], [ -121.005158516999941, 50.489387211000079 ], [ -121.006116956999932, 50.489403638000084 ], [ -121.006105603999984, 50.489673273000129 ], [ -121.007373575999978, 50.489694993000086 ], [ -121.007350885999955, 50.490234264 ], [ -121.007773546999886, 50.490241500000081 ], [ -121.007705484999974, 50.491859314000102 ], [ -121.008128163999942, 50.491866549000058 ], [ -121.00811682199992, 50.492136184000081 ], [ -121.008539500999959, 50.492143418000076 ], [ -121.008494141999932, 50.49322196 ], [ -121.008916830999951, 50.493229194 ], [ -121.008873019999967, 50.494271104000063 ], [ -121.008871478999978, 50.494307735000071 ], [ -121.008448779999966, 50.494300502000044 ], [ -121.008414757999986, 50.495109408000118 ], [ -121.00799205, 50.49510217300007 ], [ -121.007958018999886, 50.495911079000081 ], [ -121.008803445999902, 50.495925548000059 ], [ -121.008792105999987, 50.496195183000076 ], [ -121.009214819999954, 50.496202416000116 ], [ -121.009203482999965, 50.496472051000126 ], [ -121.00962620199995, 50.496479282000095 ], [ -121.009614867999971, 50.496748918000129 ], [ -121.01003758799996, 50.496756147000106 ], [ -121.009969588999979, 50.498373960000059 ], [ -121.009546852999947, 50.498366730000043 ], [ -121.009512843999985, 50.499175635000064 ], [ -121.009090101999973, 50.499168404000066 ], [ -121.009022061999985, 50.500786215000119 ], [ -121.008599305999937, 50.500778982000085 ], [ -121.00857662099996, 50.501318252000054 ], [ -121.008153857999943, 50.501311017000063 ], [ -121.008142512999967, 50.501580652000037 ], [ -121.007400338999958, 50.501567947000112 ], [ -121.005183171999988, 50.501529962000113 ], [ -121.005194533999926, 50.501260327000068 ], [ -121.00434901599999, 50.501245831000084 ], [ -121.004360380999984, 50.500976196000082 ], [ -121.003937623999946, 50.50096894600015 ], [ -121.003948994, 50.500699311000076 ], [ -121.00268072899992, 50.500677551000116 ], [ -121.002692105999969, 50.500407918000093 ], [ -121.002269353999949, 50.500400661000064 ], [ -121.002280732999964, 50.500131026000091 ], [ -121.00101248599999, 50.500109247000047 ], [ -121.001023870999973, 50.499839613000056 ], [ -120.995528181999973, 50.499745082000096 ], [ -120.995516765999966, 50.500014714000038 ], [ -120.98663912799995, 50.499861459000023 ], [ -120.986627661999961, 50.500131090000131 ], [ -120.984936680999951, 50.500101823000136 ], [ -120.984925205, 50.500371453000056 ], [ -120.98534795099998, 50.500378773000122 ], [ -120.985336476000015, 50.500648404000046 ], [ -120.986181974999951, 50.500663040000035 ], [ -120.986170504999947, 50.500932671000079 ], [ -120.98701601099998, 50.500947298000035 ], [ -120.98700454399993, 50.501216930000083 ], [ -120.988695564999958, 50.50124616900009 ], [ -120.988707021999957, 50.500976538000039 ], [ -120.99082079199999, 50.501013051000065 ], [ -120.990752124999972, 50.502630844000102 ], [ -120.991597661999947, 50.502645439000055 ], [ -120.991563340999988, 50.503454335000121 ], [ -120.99114056599997, 50.503447039000029 ], [ -120.991129119999954, 50.503716671000035 ], [ -120.990706341999925, 50.50370937200006 ], [ -120.990694897000012, 50.503979004000023 ], [ -120.990272115999986, 50.503971703000047 ], [ -120.990260667999934, 50.504241336000092 ], [ -120.989415102999956, 50.50422673100006 ], [ -120.989403649999971, 50.504496361000086 ], [ -120.988558079999962, 50.50448174900005 ], [ -120.988546621999944, 50.504751381000077 ], [ -120.988123834999939, 50.504744073000019 ], [ -120.98811237399994, 50.505013705000088 ], [ -120.987163170999935, 50.504997291000059 ], [ -120.987107191999954, 50.50550005100007 ], [ -120.982600028999926, 50.505296307000094 ], [ -120.98259314499991, 50.505457816000082 ], [ -120.982170353999919, 50.505450487000111 ], [ -120.982158857999977, 50.50572011700006 ], [ -120.981736063999989, 50.505712785000128 ], [ -120.981724565999968, 50.505982416000101 ], [ -120.981301769999902, 50.505975083000074 ], [ -120.981290269999946, 50.506244713000044 ], [ -120.980444673999955, 50.506230042000055 ], [ -120.980433168999951, 50.506499672000054 ], [ -120.977473568999955, 50.506448274000014 ], [ -120.97756574099995, 50.504291236000043 ], [ -120.977988519999897, 50.504298582000082 ] ], [ [ -120.987553384999956, 50.498258293000063 ], [ -120.98756484700003, 50.497988662000061 ], [ -120.986719394999938, 50.497974039000148 ], [ -120.986730860999941, 50.497704406000047 ], [ -120.98588541399999, 50.497689777000048 ], [ -120.985873942999959, 50.497959408000028 ], [ -120.985451217999938, 50.497952090000048 ], [ -120.985439742999972, 50.498221723000086 ], [ -120.986707928999962, 50.498243670000143 ], [ -120.986696461999912, 50.498513302000042 ], [ -120.987119192999941, 50.498520614000114 ], [ -120.987130655999962, 50.498250983000041 ], [ -120.987553384999956, 50.498258293000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "0.999509493833557", "sL_AssetLoss": "807.3293", "sL_BldgLoss": "806.9333", "sL_StrLoss": "804.0293", "sL_NStrLoss": "2.904", "sL_ContLoss": "0.396", "geom_point": "0101000020E61000000A9613828F405EC073D85CB907394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.004269280999935, 50.452944840000036 ], [ -121.004280627999947, 50.45267520400008 ], [ -121.003858301999969, 50.452667957000131 ], [ -121.003960445999937, 50.450241227000085 ], [ -121.00438275199997, 50.450248473000023 ], [ -121.004450826, 50.448630652000084 ], [ -121.004873117, 50.448637895000026 ], [ -121.005167970999963, 50.441627331000085 ], [ -121.004745743999976, 50.441620089000018 ], [ -121.004813783999964, 50.440002266000093 ], [ -121.004391570999957, 50.439995023000087 ], [ -121.00444827699999, 50.438646837000043 ], [ -121.004870478999962, 50.438654079000045 ], [ -121.004881817999959, 50.438384442000078 ], [ -121.006992818999947, 50.438420629000127 ], [ -121.006981492, 50.438690266000059 ], [ -121.007403694999937, 50.43869750000006 ], [ -121.00739237199997, 50.438967138000073 ], [ -121.007814574999927, 50.438974370000089 ], [ -121.00780325399991, 50.439244008000081 ], [ -121.008225462999974, 50.439251238000097 ], [ -121.008214142, 50.439520876000074 ], [ -121.008636352999972, 50.439528104000033 ], [ -121.008625035999899, 50.439797743000071 ], [ -121.009891674999935, 50.439819418000091 ], [ -121.009880363999969, 50.440089057000094 ], [ -121.01283588299998, 50.440139584000057 ], [ -121.012824588999976, 50.440409222000028 ], [ -121.013246808999952, 50.44041643500001 ], [ -121.01314517499992, 50.442843182000068 ], [ -121.013567415999944, 50.442850393000072 ], [ -121.013488373999948, 50.444737863000078 ], [ -121.013910632999966, 50.444745073000036 ], [ -121.013752557999922, 50.448520012000053 ], [ -121.013330266999944, 50.448512801000099 ], [ -121.013296379999986, 50.449321715000025 ], [ -121.012874080999921, 50.44931450300006 ], [ -121.012851484999942, 50.449853778000076 ], [ -121.012429181999977, 50.449846565 ], [ -121.012395280999925, 50.450655479000083 ], [ -121.011550658999965, 50.450641044000115 ], [ -121.011528046999956, 50.451180321000145 ], [ -121.008149530999958, 50.451122522000013 ], [ -121.00813820399999, 50.451392161000058 ], [ -121.00687125599994, 50.451370460000078 ], [ -121.006859923999912, 50.451640097000109 ], [ -121.006437606999938, 50.451632862000018 ], [ -121.006414934999924, 50.452172135000076 ], [ -121.005992611999972, 50.452164897000074 ], [ -121.005969936999932, 50.452704171000086 ], [ -121.005547607999972, 50.45269693100002 ], [ -121.00553627, 50.452966568000072 ], [ -121.004269280999935, 50.452944840000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999334732973744", "sL_AssetLoss": "140.8457", "sL_BldgLoss": "140.752", "sL_StrLoss": "140", "sL_NStrLoss": "0.752", "sL_ContLoss": "0.0937", "geom_point": "0101000020E61000006031D1BD9A3F5EC00C65B86C3A3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.98664209699993, 50.479894066000114 ], [ -120.986653555, 50.479624434000087 ], [ -120.985808430999938, 50.479609807 ], [ -120.985850878999926, 50.478611381000064 ], [ -120.985854284999931, 50.478531278000105 ], [ -120.989234708999945, 50.478589746000097 ], [ -120.989246150999932, 50.478320113000066 ], [ -120.991428019999887, 50.478357798000104 ], [ -120.99178146299991, 50.478363899000044 ], [ -120.991784735999985, 50.478286696000104 ], [ -120.991792893999943, 50.478094265000074 ], [ -120.992673862999965, 50.478109467000117 ], [ -120.993060542999913, 50.478116138000118 ], [ -120.993064122999925, 50.478031674000128 ], [ -120.993071965999917, 50.477846504000077 ], [ -120.99391706199999, 50.477861077000078 ], [ -120.993928477999958, 50.477591444000069 ], [ -120.995138606999902, 50.477612302000075 ], [ -120.995196117999939, 50.477613292000015 ], [ -120.995196848999925, 50.477596037000119 ], [ -120.995218936999962, 50.477074025000057 ], [ -120.996958922999951, 50.477103991000085 ], [ -120.997331648999975, 50.477110407000055 ], [ -120.997336373999985, 50.476998587000018 ], [ -120.997343044999951, 50.47684077400006 ], [ -120.997934623, 50.476850954000099 ], [ -120.99818812599996, 50.476855315000108 ], [ -120.998190126999958, 50.476807920000084 ], [ -120.998199516999961, 50.476585681000103 ], [ -120.999889671999981, 50.47661474700007 ], [ -120.99987828899999, 50.47688438200003 ], [ -121.000300831999965, 50.476891645000116 ], [ -121.000293905999982, 50.477055704000087 ], [ -121.000289450999929, 50.477161280000082 ], [ -121.000668759999925, 50.477167797000028 ], [ -121.000711994999989, 50.477168541000012 ], [ -121.000711401999936, 50.477182590000062 ], [ -121.000666481999957, 50.478247080000138 ], [ -120.998976268999968, 50.478218025000096 ], [ -120.998964879999946, 50.478487660000027 ], [ -120.997274659999945, 50.478458579000112 ], [ -120.997263261999976, 50.478728214000071 ], [ -120.995995590999897, 50.478706387000074 ], [ -120.995984185999959, 50.478976021000108 ], [ -120.99429395099996, 50.478946897000135 ], [ -120.994282535999915, 50.479216531000112 ], [ -120.992592293999962, 50.479187382000056 ], [ -120.99258087, 50.479457016000069 ], [ -120.990468059999969, 50.479420544000057 ], [ -120.990456622999929, 50.47969017800007 ], [ -120.988766368999904, 50.479660974000119 ], [ -120.988777816999956, 50.479391341000067 ], [ -120.987932694999941, 50.479376729000073 ], [ -120.987909792000011, 50.479915995000056 ], [ -120.98664209699993, 50.479894066000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4364500", "BldgCostT": "3010000", "sL_LossRatio": "0.999560296737028", "sL_AssetLoss": "813.7306", "sL_BldgLoss": "813.3728", "sL_StrLoss": "810.0528", "sL_NStrLoss": "3.32", "sL_ContLoss": "0.3578", "geom_point": "0101000020E61000005CAD1397A3435EC06ACE6EEBF63F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.054448076999961, 50.507220898000114 ], [ -121.054459159999936, 50.50695125600005 ], [ -121.053613515999942, 50.506937116000081 ], [ -121.053617409999944, 50.506842402000068 ], [ -121.053665579000025, 50.506882402 ], [ -121.054002708, 50.506915100000086 ], [ -121.055347196999946, 50.506794097000103 ], [ -121.05551029899999, 50.506590392000128 ], [ -121.055473461999938, 50.506477774000068 ], [ -121.055285299999952, 50.505902485000028 ], [ -121.055598897999943, 50.505493803000029 ], [ -121.055568613999981, 50.505160490000065 ], [ -121.055345798999952, 50.504761689000063 ], [ -121.054958394999971, 50.50459229800002 ], [ -121.05465584699999, 50.504561558000056 ], [ -121.054116809999968, 50.504506784000043 ], [ -121.053970899999925, 50.504603691000042 ], [ -121.053979689999949, 50.504711891000106 ], [ -121.054339391999932, 50.504833208000079 ], [ -121.054342915999925, 50.50483439700006 ], [ -121.05461500499996, 50.505063690000092 ], [ -121.054626217999896, 50.505495197000094 ], [ -121.054390994999949, 50.505843057000043 ], [ -121.054355598999919, 50.505895400999989 ], [ -121.053448015999891, 50.506339801000081 ], [ -121.053481609999935, 50.506665082000097 ], [ -121.052778961999977, 50.506653329000102 ], [ -121.052790055999964, 50.506383687000096 ], [ -121.051944420999945, 50.506369534000022 ], [ -121.051955517999943, 50.506099892000144 ], [ -121.051109888999974, 50.506085735000035 ], [ -121.051120990999934, 50.505816092000011 ], [ -121.050275364999948, 50.505801930000082 ], [ -121.050286472999971, 50.505532288000047 ], [ -121.049863664999961, 50.505525204000037 ], [ -121.049874772999942, 50.505255562000094 ], [ -121.049451965999964, 50.505248476000077 ], [ -121.04946307699997, 50.504978835000081 ], [ -121.049040274000021, 50.504971748000109 ], [ -121.049051386999963, 50.50470210600006 ], [ -121.04862858599995, 50.504695017000124 ], [ -121.0486397, 50.504425375999986 ], [ -121.048216901999965, 50.504418286000082 ], [ -121.048239138999975, 50.503879003000101 ], [ -121.047816342999937, 50.503871911000033 ], [ -121.047905302999979, 50.501714781000075 ], [ -121.048328077999955, 50.501721872000132 ], [ -121.048339193999936, 50.50145223 ], [ -121.048761967999951, 50.501459319000105 ], [ -121.048773081, 50.501189678000166 ], [ -121.050041392999987, 50.501210937000053 ], [ -121.050052499999964, 50.50094129400005 ], [ -121.050475269999978, 50.500948377000029 ], [ -121.050486374999934, 50.500678736000076 ], [ -121.050909139999931, 50.500685817000068 ], [ -121.050920242999894, 50.500416175000055 ], [ -121.051343006, 50.500423255000015 ], [ -121.051365203, 50.499883971000024 ], [ -121.05178796499996, 50.499891050000066 ], [ -121.051810155999988, 50.499351765000071 ], [ -121.052232911999951, 50.499358841000067 ], [ -121.05229946899999, 50.49774098700005 ], [ -121.051876728999972, 50.497733912000058 ], [ -121.051898918999953, 50.497194627000056 ], [ -121.051476183999981, 50.497187550000049 ], [ -121.05153166599996, 50.49583933800006 ], [ -121.056181634999945, 50.495917102000064 ], [ -121.056192705999948, 50.495647460000086 ], [ -121.056615426999898, 50.49565451900007 ], [ -121.056637560999931, 50.495115234000089 ], [ -121.057060279999931, 50.495122292000104 ], [ -121.057082408999989, 50.49458300600007 ], [ -121.057505122999942, 50.49459006200005 ], [ -121.057516183999923, 50.494320420000079 ], [ -121.059207031999961, 50.49434863200004 ], [ -121.059195979999956, 50.494618275000057 ], [ -121.05961869399999, 50.494625325000129 ], [ -121.059607643999954, 50.49489496800004 ], [ -121.060875797000037, 50.494916107000073 ], [ -121.060864752999947, 50.495185750000125 ], [ -121.061710193999915, 50.495199835000051 ], [ -121.061721231999954, 50.494930191000059 ], [ -121.062143950999925, 50.494937231000073 ], [ -121.062154984999921, 50.494667587000059 ], [ -121.062577700999938, 50.494674626000062 ], [ -121.062621830999944, 50.493596050000079 ], [ -121.063044538000014, 50.493603085000061 ], [ -121.063055567999982, 50.493333442000093 ], [ -121.064323679999973, 50.493354542000127 ], [ -121.06431265799992, 50.493624186000027 ], [ -121.06473536499999, 50.493631217000065 ], [ -121.06472434399997, 50.493900862000018 ], [ -121.065147054999926, 50.493907891000049 ], [ -121.06513603599997, 50.494177535000034 ], [ -121.06598146, 50.494191589000089 ], [ -121.065970446999927, 50.494461234000021 ], [ -121.066815877999957, 50.494475281000064 ], [ -121.066804867999977, 50.494744925000084 ], [ -121.06934117699997, 50.494787033000101 ], [ -121.069330182999977, 50.495056678000076 ], [ -121.069752903999955, 50.495063691000034 ], [ -121.06971992699998, 50.495872627000125 ], [ -121.06929719799993, 50.49586561400006 ], [ -121.069286201999958, 50.49613525800001 ], [ -121.068863471999975, 50.496128245000108 ], [ -121.068852475999947, 50.496397889000079 ], [ -121.06758427699999, 50.496376837000113 ], [ -121.067573270999944, 50.496646482000145 ], [ -121.066727802999964, 50.496632439000088 ], [ -121.066705780999939, 50.497171728000069 ], [ -121.066283042999913, 50.497164704000092 ], [ -121.066272029999979, 50.497434349000088 ], [ -121.064158325999941, 50.497399207000072 ], [ -121.064169349999958, 50.497129563000087 ], [ -121.062055661999977, 50.497094383000146 ], [ -121.062044624999928, 50.497364026000092 ], [ -121.061621884999951, 50.497356986000064 ], [ -121.061577725999982, 50.498435561000051 ], [ -121.061154977999962, 50.498428520000104 ], [ -121.061110806, 50.499507093000041 ], [ -121.060688047999989, 50.499500049000055 ], [ -121.060610723999957, 50.501387554000182 ], [ -121.060187947999921, 50.501380508000096 ], [ -121.060154800999925, 50.50218943800008 ], [ -121.059309236999965, 50.5021753400001 ], [ -121.059298181999964, 50.502444983000061 ], [ -121.058875397999941, 50.502437932000049 ], [ -121.058864339999957, 50.502707575000031 ], [ -121.058018767999968, 50.502693468000103 ], [ -121.058007705999913, 50.502963111000085 ], [ -121.057584916999957, 50.50295605600008 ], [ -121.057573852999923, 50.503225698000051 ], [ -121.057151060999914, 50.503218641000061 ], [ -121.057139687999921, 50.503495733000079 ], [ -121.057128925999919, 50.503757927000017 ], [ -121.056706132000016, 50.503750868000111 ], [ -121.056639709999928, 50.505368724000057 ], [ -121.057062518999942, 50.505375783000083 ], [ -121.056996104999911, 50.506993639000022 ], [ -121.056573282, 50.506986579000063 ], [ -121.056565438999883, 50.507177579000015 ], [ -121.056562208999964, 50.507256221000041 ], [ -121.054448076999961, 50.507220898000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.999457794742778", "sL_AssetLoss": "129.1024", "sL_BldgLoss": "129.0324", "sL_StrLoss": "128.0294", "sL_NStrLoss": "1.003", "sL_ContLoss": "0.07", "geom_point": "0101000020E61000005CB1F997A8465EC01078FDD525414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.105438521999957, 50.51237935200006 ], [ -121.105449318999987, 50.512109701000035 ], [ -121.105026435999946, 50.512102816000109 ], [ -121.105037234999912, 50.511833167000063 ], [ -121.104614355999971, 50.511826280000044 ], [ -121.104625154999923, 50.511556631000055 ], [ -121.10420227899999, 50.51154974300006 ], [ -121.104213079999951, 50.511280093000053 ], [ -121.103790205999942, 50.511273205000059 ], [ -121.103801009999955, 50.511003554000105 ], [ -121.103378138999958, 50.510996665000057 ], [ -121.103388944999935, 50.51072701400004 ], [ -121.102966075999987, 50.510720122000073 ], [ -121.102976884999961, 50.510450473000077 ], [ -121.10255401799995, 50.510443580000121 ], [ -121.102564830999967, 50.510173930000065 ], [ -121.101719103, 50.510160139000043 ], [ -121.101729917999947, 50.509890490000082 ], [ -121.101307057, 50.509883591000104 ], [ -121.10131787399996, 50.509613941000104 ], [ -121.100049298999963, 50.509593240000122 ], [ -121.100060123999938, 50.509323590000093 ], [ -121.099637268999984, 50.509316686000069 ], [ -121.099648095999967, 50.509047037000094 ], [ -121.099225242999964, 50.509040132000017 ], [ -121.099236073, 50.508770482000045 ], [ -121.098390371000022, 50.508756667000064 ], [ -121.098412039999985, 50.508217369000043 ], [ -121.097989192999961, 50.508210460000051 ], [ -121.098021702999972, 50.507401513000062 ], [ -121.098444541999953, 50.50740842200004 ], [ -121.098498706999962, 50.506060176000069 ], [ -121.09892153299991, 50.506067084000087 ], [ -121.098943194999933, 50.505527785000019 ], [ -121.099366015999962, 50.50553469000004 ], [ -121.099376843999934, 50.505265042000062 ], [ -121.101913762999914, 50.505306444000077 ], [ -121.101902949999968, 50.505576095000052 ], [ -121.10274859699993, 50.505589883000027 ], [ -121.102737786999938, 50.505859533000113 ], [ -121.103583439999966, 50.505873316000141 ], [ -121.10356183199994, 50.506412617000073 ], [ -121.103984662999906, 50.506419506000121 ], [ -121.103930651999988, 50.507767756000121 ], [ -121.104353495999959, 50.507774644000101 ], [ -121.104342695999961, 50.508044294000094 ], [ -121.107725464999973, 50.50809934400008 ], [ -121.107703901999912, 50.508638645000083 ], [ -121.108126755999976, 50.508645520000094 ], [ -121.108115975999965, 50.508915169000076 ], [ -121.108961684999969, 50.508928913000048 ], [ -121.108950909, 50.509198565000084 ], [ -121.109373766999909, 50.509205435000091 ], [ -121.109362994999941, 50.509475085000048 ], [ -121.109785854999984, 50.509481955000098 ], [ -121.109775084999967, 50.509751605000076 ], [ -121.110197947999907, 50.509758472000044 ], [ -121.110187178, 50.510028123000026 ], [ -121.110610042999966, 50.510034989000097 ], [ -121.110566980999948, 50.511113592000079 ], [ -121.110144106999968, 50.511106726000065 ], [ -121.110133339, 50.511376377000026 ], [ -121.109287584999961, 50.511362641000055 ], [ -121.109255264999959, 50.512171593000105 ], [ -121.107986613999955, 50.512150976000065 ], [ -121.107975832999955, 50.512420627000033 ], [ -121.105438521999957, 50.51237935200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999849654156679", "sL_AssetLoss": "313.2777", "sL_BldgLoss": "313.2306", "sL_StrLoss": "313", "sL_NStrLoss": "0.2306", "sL_ContLoss": "0.0471", "geom_point": "0101000020E61000003B8B41D43B345EC0E112BA2A543E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.814839590999895, 50.489733899000015 ], [ -120.814493791999922, 50.489459202000042 ], [ -120.814447054999974, 50.489393341000103 ], [ -120.813427096999973, 50.487956188000098 ], [ -120.812905386999944, 50.487232713 ], [ -120.81238657599999, 50.486520097000046 ], [ -120.811856896999984, 50.485903407000123 ], [ -120.8116645899999, 50.485670998000124 ], [ -120.811332486, 50.485056404000041 ], [ -120.810284590999927, 50.485318097000075 ], [ -120.810033410999921, 50.485357606000058 ], [ -120.809776423999949, 50.485398007000143 ], [ -120.809469095999958, 50.48536559300004 ], [ -120.80922859199994, 50.485318300000046 ], [ -120.809204917999963, 50.485310028000079 ], [ -120.809254197999934, 50.484244663000077 ], [ -120.809676752, 50.484252618000049 ], [ -120.809689219999896, 50.483983017000114 ], [ -120.810111772999974, 50.483990971000075 ], [ -120.810124237999958, 50.483721369000072 ], [ -120.81054679099999, 50.483729322000087 ], [ -120.81055925199999, 50.483459719000059 ], [ -120.810981800999954, 50.483467670000039 ], [ -120.811031639999968, 50.482389262000069 ], [ -120.811454179999913, 50.482397211000041 ], [ -120.81146663599999, 50.482127609000067 ], [ -120.813156785999951, 50.48215938900011 ], [ -120.81314433899999, 50.482428992000052 ], [ -120.813566878999922, 50.482436932000091 ], [ -120.813541988999958, 50.482976138000097 ], [ -120.813964533999965, 50.482984077000069 ], [ -120.813939648999906, 50.483523282000064 ], [ -120.814362197999969, 50.483531221000064 ], [ -120.814237781999935, 50.486227245000052 ], [ -120.816350655999898, 50.486266918000062 ], [ -120.816363086999914, 50.485997315000091 ], [ -120.816891502999951, 50.486007232000105 ], [ -120.817630806999929, 50.486021101000105 ], [ -120.817643229999959, 50.485751497000038 ], [ -120.818910944999956, 50.485775269000023 ], [ -120.81892336, 50.485505665000126 ], [ -120.820191067999957, 50.485529422000106 ], [ -120.820178659999968, 50.485799027000084 ], [ -120.821446378999923, 50.48582277 ], [ -120.821396771000011, 50.486901185000086 ], [ -120.821819354999931, 50.48690909600009 ], [ -120.821707746999948, 50.489335529000122 ], [ -120.821285142999912, 50.489327616000082 ], [ -120.821278464999949, 50.489472799000055 ], [ -120.821948194999919, 50.489504075000106 ], [ -120.82190296099995, 50.489897463000062 ], [ -120.82218242799999, 50.489910513000105 ], [ -120.822145083999956, 50.48991726900006 ], [ -120.820970518999971, 50.490129736000057 ], [ -120.820619709999932, 50.490193190000063 ], [ -120.819622703, 50.49036931100008 ], [ -120.819562812999948, 50.490379903000097 ], [ -120.819106484999921, 50.490460512000041 ], [ -120.818100917999942, 50.490638109000038 ], [ -120.817231405999976, 50.490791703000099 ], [ -120.817011794999971, 50.490488589000094 ], [ -120.816796321999931, 50.490334398000101 ], [ -120.816433674999971, 50.490168793000066 ], [ -120.815589607999982, 50.49003479600001 ], [ -120.815197511999955, 50.489916394000019 ], [ -120.815003185999956, 50.489817307000102 ], [ -120.814839590999895, 50.489733899000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999722913151111", "sL_AssetLoss": "372.8073", "sL_BldgLoss": "372.704", "sL_StrLoss": "372", "sL_NStrLoss": "0.704", "sL_ContLoss": "0.1033", "geom_point": "0101000020E610000054AEAE1205355EC0ADBB1EF1D03D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.827134629999975, 50.48565478600009 ], [ -120.827174341999964, 50.48530904800009 ], [ -120.826654035999951, 50.485284773000075 ], [ -120.826681904999958, 50.485042169000025 ], [ -120.826341042999928, 50.485026265000037 ], [ -120.826399065999922, 50.484521158000064 ], [ -120.825685254999911, 50.484487849000089 ], [ -120.825750136999901, 50.483923110000106 ], [ -120.823315911999927, 50.483809485000094 ], [ -120.823727861999927, 50.480225143000041 ], [ -120.825540653999937, 50.48030976600004 ], [ -120.825868805999974, 50.4803250820001 ], [ -120.825874468, 50.480275794000129 ], [ -120.831497943999963, 50.480538097000114 ], [ -120.831427482999985, 50.481152129000101 ], [ -120.83172057799996, 50.481165792000077 ], [ -120.831662617999882, 50.481670904000055 ], [ -120.832376389, 50.48170417500009 ], [ -120.832348553999964, 50.481946782000101 ], [ -120.832689393999928, 50.481962668000087 ], [ -120.832649728999954, 50.482308408000065 ], [ -120.83317000199996, 50.482332655000022 ], [ -120.832758783999964, 50.485917023000034 ], [ -120.83148708899995, 50.485857753000104 ], [ -120.827134629999975, 50.48565478600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999702235697587", "sL_AssetLoss": "259.6013", "sL_BldgLoss": "259.524", "sL_StrLoss": "259", "sL_NStrLoss": "0.524", "sL_ContLoss": "0.0773", "geom_point": "0101000020E610000026B8261742405EC030300A0600364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.002505324999902, 50.424582213000043 ], [ -121.00251667199997, 50.424312576000013 ], [ -121.001672522999954, 50.424298075000088 ], [ -121.001695223999945, 50.423758801000112 ], [ -121.001273156999972, 50.42375154800002 ], [ -121.00137532799999, 50.421324810000037 ], [ -121.000953281999912, 50.421317557000066 ], [ -121.001021403, 50.419699732000026 ], [ -121.002709535999927, 50.419728733000142 ], [ -121.002720877999977, 50.419459096000026 ], [ -121.003986970999946, 50.419480831000058 ], [ -121.003998307999922, 50.419211193000173 ], [ -121.006108453999914, 50.419247386000031 ], [ -121.006097129999944, 50.41951702500004 ], [ -121.006519162999922, 50.419524259000106 ], [ -121.006473874999955, 50.420602813000116 ], [ -121.006895917999955, 50.420610046000093 ], [ -121.006839314999965, 50.421958238000066 ], [ -121.007261369999938, 50.421965471000057 ], [ -121.007216092999968, 50.423044024000014 ], [ -121.006794029999938, 50.42303679200009 ], [ -121.006782706999957, 50.42330643000011 ], [ -121.006360642999951, 50.423299197000105 ], [ -121.006326668999961, 50.424108112000106 ], [ -121.005904595999979, 50.424100876000068 ], [ -121.005893268999941, 50.424370515000078 ], [ -121.004204967999954, 50.424341558000094 ], [ -121.004193632999943, 50.424611195000118 ], [ -121.002505324999902, 50.424582213000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41566666", "BldgCostT": "28666666", "sL_LossRatio": "0.999686020057221", "sL_AssetLoss": "7761.0053", "sL_BldgLoss": "7758.5685", "sL_StrLoss": "7742.0805", "sL_NStrLoss": "16.488", "sL_ContLoss": "2.4368", "geom_point": "0101000020E610000076E2AC670C425EC0369B010DBA3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.033147651999926, 50.480149818000079 ], [ -121.033158846999953, 50.479880178000037 ], [ -121.032736269999972, 50.479873035000068 ], [ -121.032758663999971, 50.479333754000109 ], [ -121.032336092999984, 50.479326609000111 ], [ -121.032358490999968, 50.478787329000049 ], [ -121.029823093999966, 50.478744426000091 ], [ -121.029856731999971, 50.477935508000023 ], [ -121.0302792899999, 50.477942662000061 ], [ -121.030447421999909, 50.473898065000093 ], [ -121.030024898999983, 50.473890912000066 ], [ -121.030092155999952, 50.472273072000164 ], [ -121.029669648, 50.472265918000119 ], [ -121.029781752999938, 50.469569519000089 ], [ -121.030204236, 50.469576673000049 ], [ -121.030226650999907, 50.469037392000132 ], [ -121.030649129999986, 50.469044544000027 ], [ -121.030660333999933, 50.468774905000068 ], [ -121.031082810999948, 50.46878205400003 ], [ -121.031094011999983, 50.468512415000092 ], [ -121.03151648799998, 50.468519563000022 ], [ -121.031527685999933, 50.468249922000091 ], [ -121.031950158999933, 50.468257070000092 ], [ -121.03196135599994, 50.467987429000068 ], [ -121.032383827, 50.467994575000027 ], [ -121.032395019999967, 50.46772493400006 ], [ -121.033239954999956, 50.467739219000116 ], [ -121.033243927999962, 50.467643538000132 ], [ -121.031600077999968, 50.467569870000034 ], [ -121.031707875, 50.466592154000061 ], [ -121.030672610999943, 50.466545748000094 ], [ -121.030747526999946, 50.465866377000083 ], [ -121.029334309999982, 50.465803012000045 ], [ -121.02960372299998, 50.463360415000082 ], [ -121.02919467, 50.463353487000091 ], [ -121.029183460999988, 50.463623127000105 ], [ -121.02876102899998, 50.463615971000053 ], [ -121.028749816999934, 50.463885611000165 ], [ -121.028327383999951, 50.463878453000078 ], [ -121.028316167999932, 50.464148093000077 ], [ -121.027893733999932, 50.464140933000046 ], [ -121.027882513999955, 50.464410573000094 ], [ -121.027460077999933, 50.464403412000074 ], [ -121.027448856999968, 50.464673051000091 ], [ -121.027026417999977, 50.464665888000098 ], [ -121.027003969999981, 50.465205167000086 ], [ -121.02615908300001, 50.465190836000026 ], [ -121.026147853999987, 50.465460476000032 ], [ -121.025725406999953, 50.465453309000033 ], [ -121.025714175999937, 50.465722948000071 ], [ -121.025291728999903, 50.465715779000064 ], [ -121.025269260999949, 50.466255057000048 ], [ -121.02484680699996, 50.466247887000073 ], [ -121.024835570999954, 50.466517527000086 ], [ -121.024413115999963, 50.466510353000061 ], [ -121.024401877999964, 50.466779993000038 ], [ -121.023979420999964, 50.466772819000042 ], [ -121.023968177999961, 50.467042458000087 ], [ -121.023123259999977, 50.467028104000036 ], [ -121.02311201199997, 50.46729774300011 ], [ -121.021422166999969, 50.467269018000081 ], [ -121.021410909999958, 50.467538657000084 ], [ -121.01845367, 50.467488328000044 ], [ -121.018442396999944, 50.4677579660001 ], [ -121.01759746799999, 50.467743573000099 ], [ -121.01758619099999, 50.468013212000059 ], [ -121.017163721999964, 50.46800601300005 ], [ -121.017152441999897, 50.46827565100007 ], [ -121.016729973999986, 50.468268450000018 ], [ -121.016718689999948, 50.468538087000105 ], [ -121.01629621799999, 50.468530885000092 ], [ -121.016284932999952, 50.468800524000088 ], [ -121.01543998699999, 50.468786114000096 ], [ -121.015428695999958, 50.46905575100007 ], [ -121.015006219999961, 50.469048545000085 ], [ -121.014994926999947, 50.469318182000031 ], [ -121.014149971999956, 50.469303764000074 ], [ -121.014138672999962, 50.469573401000027 ], [ -121.009491403999931, 50.469493987000057 ], [ -121.009502728999976, 50.469224350000033 ], [ -121.00865778099994, 50.469209891000091 ], [ -121.008669110999961, 50.468940255000099 ], [ -121.007824163999885, 50.468925790000071 ], [ -121.007835498999967, 50.468656153000062 ], [ -121.007413028999949, 50.468648919 ], [ -121.007435700999935, 50.468109646000045 ], [ -121.007013235999977, 50.46810241 ], [ -121.007024574999932, 50.467832774000016 ], [ -121.006602113, 50.467825537000095 ], [ -121.006772201999937, 50.46378099000006 ], [ -121.006349775999965, 50.463773752000122 ], [ -121.006372457999987, 50.463234480000089 ], [ -121.005527614999949, 50.46322 ], [ -121.005618367999958, 50.461062908000031 ], [ -121.006040770999931, 50.461070148000033 ], [ -121.006074793, 50.460261239000033 ], [ -121.005652399999974, 50.460253998000056 ], [ -121.005686425999954, 50.459445089000106 ], [ -121.005264038999911, 50.459437848000057 ], [ -121.005286729999966, 50.458898575000042 ], [ -121.004864347999984, 50.458891332000057 ], [ -121.004898386999983, 50.458082422000139 ], [ -121.004476012999959, 50.458075178000122 ], [ -121.004510057999966, 50.457266269000066 ], [ -121.004932426999972, 50.457273513000125 ], [ -121.004943772999951, 50.457003877000027 ], [ -121.005788502999934, 50.457018360000056 ], [ -121.005799843999938, 50.456748723000089 ], [ -121.006222208999972, 50.456755962000024 ], [ -121.00623354599999, 50.45648632600011 ], [ -121.007078267999958, 50.456500799000096 ], [ -121.007089600999947, 50.456231163000076 ], [ -121.007934320999979, 50.456245630000083 ], [ -121.007945648999936, 50.45597599200007 ], [ -121.008790362999946, 50.455990454000101 ], [ -121.008801686999988, 50.455720816000067 ], [ -121.009224040999982, 50.45572804500005 ], [ -121.009235361999956, 50.45545840700008 ], [ -121.009657716999968, 50.45546563400007 ], [ -121.009669034999916, 50.455195997000011 ], [ -121.010091383999978, 50.455203221000041 ], [ -121.01010270099998, 50.454933584000116 ], [ -121.010525048999952, 50.454940808000039 ], [ -121.010536361999954, 50.454671169000036 ], [ -121.011381053999941, 50.454685612000063 ], [ -121.011392361999981, 50.454415975000103 ], [ -121.012659395999933, 50.454437625000104 ], [ -121.012772395999946, 50.451741245000079 ], [ -121.013194715999973, 50.451748459000065 ], [ -121.013206013999977, 50.451478821000052 ], [ -121.013628331999939, 50.451486033000066 ], [ -121.013639625999971, 50.451216395000074 ], [ -121.015751208999973, 50.45125243000011 ], [ -121.015762490999947, 50.450982791000115 ], [ -121.016607120999979, 50.450997195000141 ], [ -121.016629673999944, 50.450457917000101 ], [ -121.017051983999949, 50.450465117000064 ], [ -121.017164719999982, 50.447768728000078 ], [ -121.016742432999976, 50.447761529000026 ], [ -121.016798805999898, 50.446413335000138 ], [ -121.016376531999981, 50.446406135000075 ], [ -121.016444187999952, 50.444788301000088 ], [ -121.016021927999972, 50.444781100000107 ], [ -121.016078314999959, 50.443432905000101 ], [ -121.015656067999899, 50.443425704000049 ], [ -121.015701183999951, 50.442347148000117 ], [ -121.015278946999956, 50.44233994400004 ], [ -121.015335348999898, 50.440991749000077 ], [ -121.014913124999964, 50.440984545000035 ], [ -121.014946970999986, 50.440175628000141 ], [ -121.015369190999948, 50.440182832000104 ], [ -121.015391748999946, 50.439643555000067 ], [ -121.016236176999911, 50.439657959000066 ], [ -121.016247450999984, 50.439388319000081 ], [ -121.019625149999939, 50.439445873000082 ], [ -121.019636403999968, 50.439176233000147 ], [ -121.020480826000025, 50.439190605000128 ], [ -121.020492075999982, 50.438920965000122 ], [ -121.020914284999918, 50.438928150000038 ], [ -121.020925532999939, 50.438658509000085 ], [ -121.021347739999953, 50.438665691000026 ], [ -121.021358983999988, 50.43839605200008 ], [ -121.022203393000012, 50.438410411000042 ], [ -121.022214633999923, 50.438140772000033 ], [ -121.023903442999938, 50.438169473000102 ], [ -121.023892211999978, 50.438439114000047 ], [ -121.024736621999935, 50.438453456000047 ], [ -121.024714170999943, 50.438992737000035 ], [ -121.025136380999953, 50.438999906000085 ], [ -121.025113932999929, 50.439539187000086 ], [ -121.025536148999919, 50.4395463540001 ], [ -121.025513704000019, 50.440085636000084 ], [ -121.025935923999924, 50.440092802000038 ], [ -121.025924704999909, 50.440362442000044 ], [ -121.028035819999971, 50.440398249000083 ], [ -121.028002194999971, 50.44120717300013 ], [ -121.027579963999969, 50.44120001400006 ], [ -121.027479060999923, 50.443626782000095 ], [ -121.02790131299993, 50.443633942000112 ], [ -121.027834049999967, 50.445251787000146 ], [ -121.028256316999929, 50.445258945000035 ], [ -121.028054534999953, 50.450112478000079 ], [ -121.028476844999958, 50.450119636000039 ], [ -121.028420797999914, 50.451467839000017 ], [ -121.028843117999912, 50.451474997000091 ], [ -121.028809494999962, 50.452283918000091 ], [ -121.029231824999954, 50.452291073000026 ], [ -121.029198206999951, 50.453099995000073 ], [ -121.02962054399994, 50.453107149000125 ], [ -121.029586931999944, 50.453916072000055 ], [ -121.030009274999927, 50.453923224000029 ], [ -121.02997566899991, 50.454732146000048 ], [ -121.030398019999936, 50.454739297000046 ], [ -121.030375618999969, 50.455278578000062 ], [ -121.030797975999974, 50.455285729000131 ], [ -121.030775579999954, 50.455825010000105 ], [ -121.031197940999959, 50.45583215900006 ], [ -121.03117554799995, 50.456371441000066 ], [ -121.03159791599991, 50.456378588000078 ], [ -121.031575526999916, 50.456917870000026 ], [ -121.031997899, 50.456925015000095 ], [ -121.031975514999914, 50.457464298000062 ], [ -121.032397890999974, 50.457471442000106 ], [ -121.03238670099995, 50.457741082000048 ], [ -121.03280908, 50.457748225000053 ], [ -121.032786704999978, 50.458287507000115 ], [ -121.033209088000021, 50.45829464800007 ], [ -121.033186717999939, 50.458833931000107 ], [ -121.033609105999972, 50.458841070000126 ], [ -121.033597922999945, 50.459110712000047 ], [ -121.03402031499995, 50.459117851 ], [ -121.034009132999955, 50.459387491000044 ], [ -121.034431526999967, 50.459394628000091 ], [ -121.034397987999967, 50.46020355200006 ], [ -121.033975587999976, 50.460196415000041 ], [ -121.033953223999958, 50.460735697000082 ], [ -121.033530816999985, 50.460728557999985 ], [ -121.033528832999977, 50.460776388000049 ], [ -121.037326112999963, 50.460946482000054 ], [ -121.037365965999967, 50.459983829000109 ], [ -121.038210766999939, 50.459998077000066 ], [ -121.038221924999974, 50.459728435000102 ], [ -121.039911519, 50.459756913000085 ], [ -121.039922667, 50.45948727100005 ], [ -121.041189856999921, 50.459508613000054 ], [ -121.041200996999962, 50.459238971000069 ], [ -121.042045788999971, 50.459253192000091 ], [ -121.042056922999961, 50.45898354900001 ], [ -121.042901709999981, 50.45899776300007 ], [ -121.042912838999911, 50.458728121000057 ], [ -121.0433352299999, 50.458735226000087 ], [ -121.043346358999941, 50.458465583000056 ], [ -121.043768745999984, 50.458472686000114 ], [ -121.043779871999917, 50.45820304300004 ], [ -121.044202258999945, 50.458210145000052 ], [ -121.044213381999981, 50.457940502000078 ], [ -121.044635763999949, 50.457947602000083 ], [ -121.044658004999988, 50.457408316000098 ], [ -121.045080384999949, 50.457415414000067 ], [ -121.045091501999977, 50.457145771000093 ], [ -121.045513878999941, 50.45715286700004 ], [ -121.045536109999958, 50.456613581000056 ], [ -121.045958481999989, 50.456620676000099 ], [ -121.04598070699997, 50.456081390000072 ], [ -121.04640307499993, 50.456088483000045 ], [ -121.04642529399996, 50.455549197000074 ], [ -121.046847657999976, 50.455556288000146 ], [ -121.046880975999954, 50.454747359000102 ], [ -121.047303331999956, 50.454754447 ], [ -121.047480976999978, 50.45044015000007 ], [ -121.047058659999905, 50.450433061000055 ], [ -121.04711417499999, 50.449084842000062 ], [ -121.046691868999957, 50.449077752000022 ], [ -121.046725184999943, 50.448268821000063 ], [ -121.046302885999978, 50.448261730000091 ], [ -121.04632510099999, 50.447722443000075 ], [ -121.045902809, 50.447715350000045 ], [ -121.045925024999946, 50.447176062000132 ], [ -121.045502737999954, 50.447168968000035 ], [ -121.045524959999966, 50.446629681000111 ], [ -121.045102676999988, 50.446622586000103 ], [ -121.04513601599993, 50.445813655000045 ], [ -121.044713740999924, 50.445806558000079 ], [ -121.044735969999962, 50.445267271000013 ], [ -121.044313698999972, 50.445260172000125 ], [ -121.044369283999941, 50.44391195500004 ], [ -121.043947023999948, 50.443904855 ], [ -121.043991498999986, 50.442826282000055 ], [ -121.044413747999926, 50.44283338200006 ], [ -121.044424862999961, 50.442563737000107 ], [ -121.04526935799997, 50.442577931000031 ], [ -121.045280467999987, 50.442308286000078 ], [ -121.04570271299994, 50.442315382000125 ], [ -121.045713821999925, 50.44204573800004 ], [ -121.04613606499997, 50.44205283100009 ], [ -121.04614717, 50.441783187000091 ], [ -121.046569410999979, 50.441790278000056 ], [ -121.04658051399997, 50.441520634000064 ], [ -121.047002752999944, 50.441527723000043 ], [ -121.047013853999928, 50.441258079000072 ], [ -121.047436087999984, 50.441265168000079 ], [ -121.047447185999971, 50.440995523000026 ], [ -121.047869419999955, 50.441002610000105 ], [ -121.04789161199993, 50.440463321000031 ], [ -121.048313839999963, 50.44047040600006 ], [ -121.048369301999969, 50.439122184000041 ], [ -121.048791519999938, 50.439129267000027 ], [ -121.048802607999946, 50.438859622000138 ], [ -121.049224823999978, 50.438866704000105 ], [ -121.049235911, 50.438597060000077 ], [ -121.051769191999952, 50.438639515000105 ], [ -121.051780263999902, 50.43836987 ], [ -121.053469109999924, 50.438398143000022 ], [ -121.053446984999965, 50.438937433000014 ], [ -121.053869202999977, 50.438944498000069 ], [ -121.053858141999953, 50.4392141430001 ], [ -121.054280360999911, 50.439221206000092 ], [ -121.054269303999945, 50.439490852000084 ], [ -121.05553597, 50.439512032000081 ], [ -121.055547020999938, 50.439242386000103 ], [ -121.055969242999964, 50.439249442000069 ], [ -121.05598029, 50.438979797000052 ], [ -121.056402508999938, 50.43898685200007 ], [ -121.056424599999971, 50.438447561000082 ], [ -121.058113455999916, 50.438475766000082 ], [ -121.058091381999972, 50.439015058000095 ], [ -121.05851360099993, 50.439022106000017 ], [ -121.058502566999934, 50.439291752000067 ], [ -121.060191454999966, 50.439319927000035 ], [ -121.060180428999956, 50.439589574000088 ], [ -121.061024877999941, 50.439603653000106 ], [ -121.060991816999902, 50.44041259100004 ], [ -121.061414048999978, 50.440419629000118 ], [ -121.061347936999965, 50.442037508000041 ], [ -121.060925689999962, 50.442030470000127 ], [ -121.060815464999934, 50.444726932000101 ], [ -121.060393193999943, 50.444719892000059 ], [ -121.060360116999959, 50.445528830000057 ], [ -121.059937839999918, 50.445521789000075 ], [ -121.059915782, 50.446061081000089 ], [ -121.059493499999974, 50.446054037000131 ], [ -121.059482467999914, 50.446323683000067 ], [ -121.059060185999925, 50.446316638000098 ], [ -121.05904915, 50.44658628400002 ], [ -121.058626863999962, 50.446579238000055 ], [ -121.058615826999969, 50.446848883000058 ], [ -121.056926673999925, 50.446820682000059 ], [ -121.056915627999928, 50.44709032800003 ], [ -121.055226466999954, 50.447062101000071 ], [ -121.05521541199991, 50.447331746000017 ], [ -121.05394853599999, 50.447310560000098 ], [ -121.053937471999959, 50.447580206000076 ], [ -121.053515177999898, 50.447573140000038 ], [ -121.053504110999953, 50.447842785000091 ], [ -121.052659519999935, 50.447828650000076 ], [ -121.052648449999978, 50.448098294000054 ], [ -121.052226150999942, 50.448091225000056 ], [ -121.052215076999957, 50.448360870000073 ], [ -121.051370476999949, 50.448346725000107 ], [ -121.051359396999928, 50.448616369000035 ], [ -121.050937096, 50.448609296000051 ], [ -121.050926014999973, 50.448878939000032 ], [ -121.050503709999958, 50.448871864000076 ], [ -121.05049262599999, 50.449141508000068 ], [ -121.050070319999961, 50.449134430000129 ], [ -121.05004814599999, 50.449673718000092 ], [ -121.049625835999933, 50.449666639000085 ], [ -121.049581478999983, 50.45074521500009 ], [ -121.049159156999949, 50.450738133000058 ], [ -121.049070414999903, 50.452895286000064 ], [ -121.048648078, 50.452888202000075 ], [ -121.048426127999932, 50.458281076000056 ], [ -121.048848515999964, 50.458288160000109 ], [ -121.048804128999976, 50.459366735000096 ], [ -121.049226526999973, 50.459373817000035 ], [ -121.049215431999968, 50.45964346100002 ], [ -121.049637830999956, 50.459650543000151 ], [ -121.049615645999893, 50.460189830000033 ], [ -121.050038049999941, 50.460196911000061 ], [ -121.050026959999926, 50.46046655500006 ], [ -121.050449367999974, 50.46047363400006 ], [ -121.050427189999937, 50.461012922000094 ], [ -121.05084960399995, 50.46102 ], [ -121.050838516999931, 50.461289644000061 ], [ -121.05126093199999, 50.461296719000046 ], [ -121.051238763999962, 50.461836007000031 ], [ -121.051661183999954, 50.461843081000026 ], [ -121.051650101999911, 50.462112725000054 ], [ -121.052072523999954, 50.462119799000078 ], [ -121.052050363999939, 50.462659087000084 ], [ -121.052472791999932, 50.462666158000076 ], [ -121.052461715, 50.462935802000104 ], [ -121.052884144999894, 50.46294287300006 ], [ -121.052861993999912, 50.463482161000059 ], [ -121.053284429999934, 50.463489230000093 ], [ -121.053251207999963, 50.464298163000095 ], [ -121.053673649999951, 50.464305230000058 ], [ -121.053562925999984, 50.46700167000013 ], [ -121.053140458999962, 50.46699460300006 ], [ -121.05309615499999, 50.468073177000043 ], [ -121.052673678999966, 50.468066107000077 ], [ -121.052618283999919, 50.469414326000091 ], [ -121.053040771999946, 50.469421396000058 ], [ -121.053007538999935, 50.470230328000085 ], [ -121.053430033999959, 50.470237397000062 ], [ -121.053407883999967, 50.470776684000093 ], [ -121.05383038399998, 50.470783752000038 ], [ -121.053808236999942, 50.471323040000051 ], [ -121.054230741999987, 50.471330106000075 ], [ -121.05420859899999, 50.471869394000052 ], [ -121.05463111, 50.471876459000057 ], [ -121.054586831, 50.472955034000051 ], [ -121.054164312999916, 50.472947970000092 ], [ -121.054153237999955, 50.473217613000052 ], [ -121.053308195999961, 50.473203477000034 ], [ -121.053297116999914, 50.473473121000076 ], [ -121.052874592999942, 50.473466051000045 ], [ -121.052863512999963, 50.473735695000073 ], [ -121.052018461000017, 50.473721549000111 ], [ -121.052007375999935, 50.473991193000053 ], [ -121.051162317999911, 50.47397704200008 ], [ -121.051151227999966, 50.474246685000118 ], [ -121.048616046999925, 50.474204195000048 ], [ -121.048604942999958, 50.474473838000044 ], [ -121.04480216, 50.474409998000063 ], [ -121.044791033999971, 50.474679640000033 ], [ -121.043523434999926, 50.474658333000079 ], [ -121.043512300999936, 50.474927975000128 ], [ -121.042667231999957, 50.474913762000043 ], [ -121.042656092999891, 50.475183403000067 ], [ -121.042233555999942, 50.475176295000011 ], [ -121.04220013299998, 50.47598521900008 ], [ -121.042622676999912, 50.475992328000096 ], [ -121.042555839999963, 50.477610179000067 ], [ -121.040865605999926, 50.477581733000143 ], [ -121.040887904999934, 50.477042449000074 ], [ -121.040465351999941, 50.477035334000057 ], [ -121.04047650299999, 50.476765692000072 ], [ -121.039631401999941, 50.476751457000049 ], [ -121.03964255899993, 50.476481815000092 ], [ -121.038797463999984, 50.476467574000097 ], [ -121.038786301999934, 50.476737215000085 ], [ -121.037518653999911, 50.476715841000107 ], [ -121.037507485000035, 50.476985483000071 ], [ -121.037084932999946, 50.476978356000124 ], [ -121.037073762999981, 50.477247995000013 ], [ -121.036651208999942, 50.477240866000031 ], [ -121.036590370999974, 50.478708934000096 ], [ -121.036588327999937, 50.478758251000031 ], [ -121.036528289999964, 50.480206914000114 ], [ -121.033147651999926, 50.480149818000079 ] ], [ [ -121.03797641499996, 50.46566055300007 ], [ -121.037998737999956, 50.465121269000043 ], [ -121.037576291, 50.465114144000026 ], [ -121.037587453999961, 50.464844502000126 ], [ -121.03755108099989, 50.4648438890001 ], [ -121.037402785999973, 50.466190537000074 ], [ -121.037531637, 50.466192710000065 ], [ -121.037553964000011, 50.465653427000049 ], [ -121.03797641499996, 50.46566055300007 ] ], [ [ -121.02962520299999, 50.463165653000068 ], [ -121.029633426999951, 50.463091089000102 ], [ -121.029628306999925, 50.463091001000059 ], [ -121.02962520299999, 50.463165653000068 ] ], [ [ -121.032817117999969, 50.462356248000106 ], [ -121.032938138999924, 50.461258200000081 ], [ -121.032663625999973, 50.461253557000092 ], [ -121.03265243499996, 50.461523198000137 ], [ -121.032230023999944, 50.461516054000114 ], [ -121.032218830999952, 50.46178569500006 ], [ -121.031796415999949, 50.461778549000059 ], [ -121.031785220999936, 50.462048191000044 ], [ -121.031362802999922, 50.462041044000053 ], [ -121.031352439999978, 50.462290598000095 ], [ -121.032817117999969, 50.462356248000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "0.999461732376404", "sL_AssetLoss": "508.6689", "sL_BldgLoss": "508.3951", "sL_StrLoss": "506.0301", "sL_NStrLoss": "2.365", "sL_ContLoss": "0.2738", "geom_point": "0101000020E610000023925301984B5EC015CD3D036E464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.180842338, 50.554274852000077 ], [ -121.180850768999932, 50.554055875000053 ], [ -121.180487941999928, 50.554050205000102 ], [ -121.180430310999938, 50.553976103000139 ], [ -121.18043787699996, 50.553779600000141 ], [ -121.180296063999933, 50.553777385000082 ], [ -121.180161790999975, 50.553099315000097 ], [ -121.179712796999937, 50.552634086000104 ], [ -121.179382692999965, 50.552412714000113 ], [ -121.178386685999925, 50.552055954000075 ], [ -121.178394281999942, 50.551858890000048 ], [ -121.177971027999888, 50.551852267000086 ], [ -121.177981422999935, 50.551582608000018 ], [ -121.177558171999948, 50.551575983000063 ], [ -121.17756857099999, 50.551306324000102 ], [ -121.177145319999937, 50.551299698000015 ], [ -121.177166122999949, 50.550760378000106 ], [ -121.176742879999921, 50.55075375100013 ], [ -121.176763685999958, 50.550214433000107 ], [ -121.176340445, 50.550207804000088 ], [ -121.176350851999956, 50.549938144000095 ], [ -121.175927614, 50.549931514000022 ], [ -121.17593802199994, 50.549661855000103 ], [ -121.175514786999898, 50.549655223000045 ], [ -121.175525198999964, 50.549385564000062 ], [ -121.17530221599999, 50.549382070000036 ], [ -121.175092612999933, 50.54834360400006 ], [ -121.174877690999892, 50.548088316000097 ], [ -121.174730862999951, 50.548022489000111 ], [ -121.174741219999973, 50.547754342000061 ], [ -121.175164438999929, 50.54776097700011 ], [ -121.175174849999976, 50.547491317000073 ], [ -121.175598064999946, 50.547497951000032 ], [ -121.175608473999958, 50.547228292000106 ], [ -121.176031684999984, 50.547234922 ], [ -121.17604209299999, 50.546965264000086 ], [ -121.176465303999947, 50.546971894000052 ], [ -121.17647570699998, 50.546702234000072 ], [ -121.176898916999932, 50.546708862000074 ], [ -121.176909317999957, 50.546439203000084 ], [ -121.177332523999951, 50.546445829000049 ], [ -121.177342922999983, 50.546176170000145 ], [ -121.17776612699997, 50.546182796000068 ], [ -121.17778691800001, 50.545643476000102 ], [ -121.179902916999964, 50.54567657799999 ], [ -121.179892533999947, 50.545946237000045 ], [ -121.180738938999951, 50.545959468000042 ], [ -121.180728559999977, 50.546229128000114 ], [ -121.181574969999957, 50.546242351000075 ], [ -121.181564595999987, 50.54651201100009 ], [ -121.182834221999926, 50.54653183600005 ], [ -121.182823852999945, 50.54680149700004 ], [ -121.183670274999926, 50.546814705000031 ], [ -121.183649549999984, 50.547354026000079 ], [ -121.183860104999951, 50.547357311000148 ], [ -121.184062746, 50.547621409000044 ], [ -121.184052043999955, 50.54789994900004 ], [ -121.184279187999934, 50.547903492000096 ], [ -121.184459818999969, 50.548138897000072 ], [ -121.184466264999969, 50.548140846000102 ], [ -121.184464906999935, 50.548176210000044 ], [ -121.184589763999938, 50.548178157000102 ], [ -121.18488488399997, 50.548267319000075 ], [ -121.184877773999958, 50.54845246900009 ], [ -121.185475961999941, 50.548461795000065 ], [ -121.185709995, 50.548836359000084 ], [ -121.18569317099994, 50.549274646000029 ], [ -121.185986709999952, 50.549279220000088 ], [ -121.186108970999982, 50.549474890000027 ], [ -121.186095704999971, 50.549820562000022 ], [ -121.186327218999963, 50.54982416900004 ], [ -121.186394598999925, 50.54993200100003 ], [ -121.18651485, 50.549933868000025 ], [ -121.186467202999964, 50.55117545800006 ], [ -121.186043952999981, 50.551168865000129 ], [ -121.186023251, 50.551708185000031 ], [ -121.185599994999933, 50.551701590000057 ], [ -121.18554822599998, 50.553049892000089 ], [ -121.185124958999936, 50.553043295000052 ], [ -121.185083529999986, 50.554121936000051 ], [ -121.184660253999965, 50.554115337000034 ], [ -121.18462917399998, 50.554924317 ], [ -121.184205890999962, 50.554917716000027 ], [ -121.184185163999985, 50.555457036000071 ], [ -121.18376187699999, 50.555450433000019 ], [ -121.183741143999953, 50.55598975400008 ], [ -121.183317851999973, 50.555983149000028 ], [ -121.183307483999954, 50.556252810000082 ], [ -121.182884187999946, 50.556246204000033 ], [ -121.182863444999967, 50.556785523 ], [ -121.181593545999974, 50.556765696000127 ], [ -121.181603666999976, 50.556502732000126 ], [ -121.181762703999965, 50.556236700000049 ], [ -121.181920712999911, 50.556148992000033 ], [ -121.182049915999983, 50.555719501000056 ], [ -121.182480617999971, 50.555546306000089 ], [ -121.182401997999989, 50.55464580200011 ], [ -121.18222259699999, 50.554553007000067 ], [ -121.181265090999929, 50.55447490100002 ], [ -121.180842338, 50.554274852000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999707250287797", "sL_AssetLoss": "136.2939", "sL_BldgLoss": "136.254", "sL_StrLoss": "136", "sL_NStrLoss": "0.254", "sL_ContLoss": "0.0399", "geom_point": "0101000020E6100000F0E9A0012B4C5EC0567FA56F29464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.187094843999958, 50.549792012000047 ], [ -121.18747845199999, 50.546206658000067 ], [ -121.187567684999976, 50.546210525000028 ], [ -121.187645777999975, 50.546416997000101 ], [ -121.187839380999918, 50.546528091 ], [ -121.188522807999973, 50.54637710500004 ], [ -121.188539007999978, 50.546252608000025 ], [ -121.191136554999957, 50.546365106000074 ], [ -121.193112186999912, 50.546450629000027 ], [ -121.19272902499992, 50.550036002000134 ], [ -121.191530138999951, 50.549984108000061 ], [ -121.187094843999958, 50.549792012000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390584", "BldgCostT": "2338334", "sL_LossRatio": "0.999660498784147", "sL_AssetLoss": "601.4706", "sL_BldgLoss": "601.2664", "sL_StrLoss": "600.0148", "sL_NStrLoss": "1.2516", "sL_ContLoss": "0.2042", "geom_point": "0101000020E610000083D0AC3274405EC0E25DECC5E9414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.003152734999958, 50.519573680000043 ], [ -121.003198258999944, 50.518495147000081 ], [ -121.002775344999947, 50.518487890000088 ], [ -121.002786727999961, 50.518218257000051 ], [ -121.002363815999971, 50.518210999000097 ], [ -121.00238658699999, 50.517671732000068 ], [ -121.001117868999955, 50.517649948999988 ], [ -121.001106477999897, 50.517919582000111 ], [ -121.000683569999964, 50.517912318000086 ], [ -121.00064938499996, 50.518721217000042 ], [ -120.99938064199992, 50.5186994150001 ], [ -120.999642847999937, 50.512497858000096 ], [ -120.999219989999958, 50.51249058900008 ], [ -120.999265590999983, 50.51141205600009 ], [ -121.001379839, 50.511448384000076 ], [ -121.001368451999937, 50.511718018000124 ], [ -121.00475127699994, 50.511776062000067 ], [ -121.004739907999962, 50.512045696000079 ], [ -121.005162764999952, 50.512052945000057 ], [ -121.005174131999922, 50.511783311000066 ], [ -121.006442694999961, 50.511805048000042 ], [ -121.006431334999945, 50.512074682000062 ], [ -121.008122764999925, 50.512103643000039 ], [ -121.008111414000027, 50.512373278 ], [ -121.013608609999949, 50.512467233000102 ], [ -121.013597291999957, 50.512736868000026 ], [ -121.017825946999935, 50.51280896600008 ], [ -121.017724285999947, 50.515235689000129 ], [ -121.01730139899999, 50.515228486000126 ], [ -121.017290098999979, 50.515498122000061 ], [ -121.0164443199999, 50.515483710000083 ], [ -121.016433015999937, 50.515753346000054 ], [ -121.01558723, 50.515738927000037 ], [ -121.015575921999968, 50.516008563000099 ], [ -121.014730131999926, 50.515994139000057 ], [ -121.01471881899991, 50.516263774000038 ], [ -121.013450130999956, 50.516242127000048 ], [ -121.013438809999968, 50.516511762000057 ], [ -121.012170113999943, 50.516490099000102 ], [ -121.012158785999986, 50.516759735000029 ], [ -121.010890086999936, 50.516738059000055 ], [ -121.010878748999986, 50.517007694000064 ], [ -121.01003294499999, 50.516993235000037 ], [ -121.010021605999924, 50.517262869000085 ], [ -121.008752892999922, 50.517241171000059 ], [ -121.008741542999957, 50.517510804000068 ], [ -121.008318638, 50.517503569000063 ], [ -121.008307286999951, 50.517773202000086 ], [ -121.007461469999939, 50.517758725000142 ], [ -121.00745011399998, 50.518028360000088 ], [ -121.007027203999911, 50.518021118000114 ], [ -121.007015845999916, 50.51829075200007 ], [ -121.006592932999979, 50.518283510000082 ], [ -121.006581571999959, 50.518553143000048 ], [ -121.005735741999928, 50.518538654000146 ], [ -121.005713009999965, 50.51907792 ], [ -121.005290090999921, 50.519070673000101 ], [ -121.005278721999971, 50.519340308000068 ], [ -121.004855799999973, 50.519333059000068 ], [ -121.004844428999959, 50.519602692000042 ], [ -121.003152734999958, 50.519573680000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31701834", "BldgCostT": "21863334", "sL_LossRatio": "0.999748232707804", "sL_AssetLoss": "5582.53611", "sL_BldgLoss": "5581.13061", "sL_StrLoss": "5571.11111", "sL_NStrLoss": "10.0195", "sL_ContLoss": "1.4055", "geom_point": "0101000020E61000001924B7054F475EC03C5385928B454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.161436290999944, 50.563194675000055 ], [ -121.161446784999939, 50.562925019000069 ], [ -121.159753385999963, 50.562898266000083 ], [ -121.159763889999937, 50.562628609000072 ], [ -121.158070502999934, 50.562601833 ], [ -121.158081018999937, 50.56233217700008 ], [ -121.156810986999957, 50.562312078000076 ], [ -121.156800463999943, 50.562581733000094 ], [ -121.153413700999963, 50.562528068000113 ], [ -121.153424241999986, 50.562258413000059 ], [ -121.150037509999947, 50.562204649000108 ], [ -121.150048069999968, 50.561934994000175 ], [ -121.148354715999929, 50.561908077000048 ], [ -121.148344145999943, 50.562177731000091 ], [ -121.147497464999944, 50.562164262000088 ], [ -121.147486890999957, 50.562433916000074 ], [ -121.144100155999951, 50.56237998000006 ], [ -121.144110749, 50.562110326000088 ], [ -121.14241739499991, 50.562083321000088 ], [ -121.142427998999963, 50.561813669000045 ], [ -121.142004664999902, 50.561806914000073 ], [ -121.142015269999931, 50.561537260000108 ], [ -121.141591936999959, 50.561530504000132 ], [ -121.141623760999892, 50.560721544000032 ], [ -121.138660483999928, 50.560674207000041 ], [ -121.13868173299997, 50.560134901000033 ], [ -121.138258412999946, 50.560128132000052 ], [ -121.138269039999926, 50.559858480000088 ], [ -121.137845722999927, 50.559851710000032 ], [ -121.137856351999943, 50.559582057000078 ], [ -121.137009722999949, 50.559568513000052 ], [ -121.137030989999971, 50.559029208000027 ], [ -121.136607679999912, 50.559022433000095 ], [ -121.13662895199991, 50.558483127000052 ], [ -121.136205647999986, 50.558476352000127 ], [ -121.136216285999978, 50.558206700000071 ], [ -121.135792982999959, 50.558199923000103 ], [ -121.135814263999947, 50.55766061700006 ], [ -121.134967669, 50.557647058 ], [ -121.134978313999966, 50.557377405000068 ], [ -121.134131725999978, 50.557363840000107 ], [ -121.134142374999954, 50.557094189000047 ], [ -121.13329579199997, 50.557080617000068 ], [ -121.133306445999906, 50.556810965000082 ], [ -121.132883158, 50.556804178000057 ], [ -121.132893811999949, 50.556534525000075 ], [ -121.132047241999928, 50.556520946000063 ], [ -121.132057902999946, 50.556251293000024 ], [ -121.131211335999978, 50.556237708000026 ], [ -121.131222000999955, 50.555968056000047 ], [ -121.130798720999962, 50.555961261000078 ], [ -121.130809388999964, 50.555691608000046 ], [ -121.13038611099995, 50.55568481300002 ], [ -121.130396779999899, 50.555415160000045 ], [ -121.129973504999938, 50.555408362000108 ], [ -121.129984175999979, 50.555138711000033 ], [ -121.129560903999931, 50.555131911000039 ], [ -121.129582251999949, 50.554592608000057 ], [ -121.129158983999957, 50.554585806 ], [ -121.129180336999951, 50.554046503000031 ], [ -121.128757073999978, 50.554039701000058 ], [ -121.128778430999944, 50.553500397000072 ], [ -121.126238886999943, 50.553459551000138 ], [ -121.126249579999978, 50.55318990100006 ], [ -121.125826325, 50.553183087000015 ], [ -121.125837018999974, 50.55291343600009 ], [ -121.125413767999973, 50.552906622000087 ], [ -121.12542446399999, 50.552636970000059 ], [ -121.125001213999937, 50.552630154000042 ], [ -121.125011914999931, 50.552360503000045 ], [ -121.124588667999944, 50.552353685000057 ], [ -121.124610071999896, 50.551814383000099 ], [ -121.124186829999971, 50.551807564000065 ], [ -121.124197533999947, 50.551537914000065 ], [ -121.123774294999947, 50.551531093000094 ], [ -121.123795705999953, 50.550991792000076 ], [ -121.123372472999932, 50.550984970000059 ], [ -121.123383179999976, 50.550715319000084 ], [ -121.122959947, 50.550708495000038 ], [ -121.122981367999927, 50.550169193000052 ], [ -121.122558141999946, 50.550162369000105 ], [ -121.12256885499994, 50.549892718000109 ], [ -121.122145630999967, 50.549885892000141 ], [ -121.122167059999981, 50.549346591000074 ], [ -121.121743840999955, 50.549339763 ], [ -121.121754556999974, 50.549070112000052 ], [ -121.12133134099993, 50.549063283000073 ], [ -121.121342059999961, 50.548793632000056 ], [ -121.120918844999935, 50.548786803 ], [ -121.120929565999987, 50.548517151000048 ], [ -121.12050635599995, 50.548510320000055 ], [ -121.120517077999935, 50.548240669000108 ], [ -121.120093869999948, 50.548233836000108 ], [ -121.120104596999937, 50.547964184000065 ], [ -121.119681390999943, 50.547957350000033 ], [ -121.119692117999975, 50.547687700000083 ], [ -121.11842250799999, 50.547667186000083 ], [ -121.118401035999966, 50.548206487000051 ], [ -121.117977827999965, 50.548199645000068 ], [ -121.117945614999911, 50.549008596000135 ], [ -121.116252754999934, 50.548981217000041 ], [ -121.116274250999965, 50.54844191700009 ], [ -121.115851039999939, 50.54843506800006 ], [ -121.115872540999973, 50.547895768000046 ], [ -121.115026131999912, 50.547882066000078 ], [ -121.115047639999901, 50.547342766000028 ], [ -121.114624441999965, 50.547335914 ], [ -121.114645954999929, 50.546796614000122 ], [ -121.114222759999947, 50.546789760000067 ], [ -121.114233518999953, 50.546520110000053 ], [ -121.113810325999935, 50.546513254000082 ], [ -121.113821087999938, 50.54624360400004 ], [ -121.113397898999963, 50.546236747000073 ], [ -121.113408660999937, 50.545967097000059 ], [ -121.11256228799999, 50.545953378000085 ], [ -121.112573055999945, 50.54568372800005 ], [ -121.11172668799999, 50.545670002000115 ], [ -121.111737459999986, 50.545400353000048 ], [ -121.110467917999969, 50.545379754000081 ], [ -121.110478696999934, 50.545110104000109 ], [ -121.109632339999962, 50.545096364000088 ], [ -121.109643124999963, 50.544826715000077 ], [ -121.10921994899995, 50.544819842000067 ], [ -121.109230736999976, 50.54455019300007 ], [ -121.108384389999941, 50.544536444000052 ], [ -121.108395179999917, 50.544266795000063 ], [ -121.105432990999972, 50.544218624000088 ], [ -121.105443798999914, 50.543948975000056 ], [ -121.103751133999964, 50.543921415000106 ], [ -121.103761950999981, 50.543651767000085 ], [ -121.10291562399999, 50.543637978000049 ], [ -121.102926444999952, 50.543368330000064 ], [ -121.100387482999949, 50.543326927000038 ], [ -121.100398319999954, 50.543057279000109 ], [ -121.099552003999946, 50.543043465000075 ], [ -121.09956284499999, 50.542773818000065 ], [ -121.097023918999966, 50.54273234200015 ], [ -121.097034774999912, 50.542462694000072 ], [ -121.096611622999887, 50.542455776000082 ], [ -121.096633336999943, 50.541916481000065 ], [ -121.095787044999966, 50.541902641000064 ], [ -121.095797906999977, 50.541632993000086 ], [ -121.09537476299991, 50.541626071000046 ], [ -121.095385626999985, 50.541356425000046 ], [ -121.094962485999972, 50.541349500000102 ], [ -121.094973352999915, 50.54107985400001 ], [ -121.09455021499997, 50.541072928000069 ], [ -121.094561081999956, 50.540803281000116 ], [ -121.09413794699995, 50.540796354000086 ], [ -121.094148817999908, 50.540526707000055 ], [ -121.093302550999951, 50.540512848000105 ], [ -121.093313426999899, 50.540243202000084 ], [ -121.092044035999947, 50.540222403000058 ], [ -121.09205491799996, 50.539952757000059 ], [ -121.090362408999979, 50.539925004000125 ], [ -121.090373299999968, 50.539655357000107 ], [ -121.08825768, 50.539620633000048 ], [ -121.088268582999916, 50.539350987000034 ], [ -121.08784546299999, 50.53934403600006 ], [ -121.08787818, 50.538535098000104 ], [ -121.087455065999961, 50.538528147000093 ], [ -121.087465974999958, 50.538258501000023 ], [ -121.086619750999915, 50.538244596000048 ], [ -121.086630663, 50.537974949000073 ], [ -121.08536133799997, 50.537954079000052 ], [ -121.085372258999911, 50.537684432000084 ], [ -121.084526046999898, 50.537670511000059 ], [ -121.08453697299997, 50.537400865000087 ], [ -121.084113868999978, 50.537393902000126 ], [ -121.084124795999912, 50.537124257000052 ], [ -121.083701695999963, 50.537117292000076 ], [ -121.083723552999984, 50.536578002000134 ], [ -121.083300457999968, 50.53657103600009 ], [ -121.083311388999945, 50.536301391000059 ], [ -121.082888294999975, 50.536294423000079 ], [ -121.082899228999949, 50.536024778000126 ], [ -121.082476139, 50.536017808000111 ], [ -121.082487073999971, 50.535748164 ], [ -121.082063987999945, 50.535741193000028 ], [ -121.08207492399994, 50.535471548000061 ], [ -121.081228754999984, 50.535457603000076 ], [ -121.081239698000019, 50.53518795800008 ], [ -121.080816614999904, 50.535180984000135 ], [ -121.08083850499996, 50.534641693000012 ], [ -121.079992348999923, 50.534627739000051 ], [ -121.079981398999976, 50.534897384000011 ], [ -121.078712160999928, 50.534876442000019 ], [ -121.078723117999971, 50.534606797000016 ], [ -121.078300041999952, 50.534599813000106 ], [ -121.078311000999975, 50.534330168000039 ], [ -121.077887925999988, 50.534323183000026 ], [ -121.077898886999947, 50.534053539000084 ], [ -121.075783531999946, 50.534018590000109 ], [ -121.075794506, 50.53374894500007 ], [ -121.074948368999941, 50.533734955000092 ], [ -121.074959345999972, 50.533465311 ], [ -121.07453628199994, 50.533458313000025 ], [ -121.074558241999966, 50.532919025000098 ], [ -121.074135180999988, 50.532912026000069 ], [ -121.074146162999924, 50.532642381000123 ], [ -121.073723103999924, 50.532635382000059 ], [ -121.073745071999895, 50.532096093000064 ], [ -121.072898966999958, 50.532082088000053 ], [ -121.072909956999951, 50.531812445000043 ], [ -121.072063854999982, 50.531798434000109 ], [ -121.072074849, 50.531528790000017 ], [ -121.071651801999906, 50.531521782000077 ], [ -121.071673790999981, 50.530982494000078 ], [ -121.071250750000019, 50.530975486000038 ], [ -121.071261745999919, 50.530705841000028 ], [ -121.070838706999936, 50.530698831000088 ], [ -121.070849706999951, 50.530429187000081 ], [ -121.07042667099995, 50.530422175000083 ], [ -121.070503680999963, 50.528534669000116 ], [ -121.070080660999906, 50.528527656000108 ], [ -121.070102667999933, 50.527988369000063 ], [ -121.069679652000019, 50.527981354000069 ], [ -121.069690657999971, 50.527711711000059 ], [ -121.069267644999954, 50.527704695000075 ], [ -121.069289659999967, 50.527165407000048 ], [ -121.068443644999903, 50.527151371000102 ], [ -121.068465667999959, 50.526612084000071 ], [ -121.068042666999972, 50.526605063000048 ], [ -121.068064694999975, 50.526065777000071 ], [ -121.067641696999942, 50.526058755000079 ], [ -121.067663727999957, 50.525519468000013 ], [ -121.067240736999935, 50.525512445000047 ], [ -121.067251754999916, 50.525242802000079 ], [ -121.066405773999946, 50.525228751000029 ], [ -121.066412627999924, 50.525061099000112 ], [ -121.066416797999977, 50.524959108000104 ], [ -121.065993810999927, 50.524952080000126 ], [ -121.066026884999985, 50.524143150000079 ], [ -121.065603905, 50.524136121000076 ], [ -121.065625960999938, 50.523596834000088 ], [ -121.065202984999956, 50.523589805000071 ], [ -121.065236071999934, 50.522780875000137 ], [ -121.065659038999968, 50.52278790500003 ], [ -121.065670065999925, 50.522518262000048 ], [ -121.066093030999951, 50.52252529000009 ], [ -121.066104054999968, 50.522255647000073 ], [ -121.066527019, 50.52226267300005 ], [ -121.066538037999948, 50.521993031000129 ], [ -121.067383960999976, 50.522007079000055 ], [ -121.067394977999953, 50.521737436000123 ], [ -121.067817935999983, 50.521744458000086 ], [ -121.067839962999983, 50.52120517100014 ], [ -121.067864060999938, 50.521205570000056 ], [ -121.067968697999959, 50.521359501000049 ], [ -121.068324257999947, 50.521213209000116 ], [ -121.068685870999957, 50.521219210000027 ], [ -121.068692297999931, 50.521061780000082 ], [ -121.068954633, 50.520953843000051 ], [ -121.069119831999984, 50.520956583000078 ], [ -121.069122767999929, 50.520884663000047 ], [ -121.069187098999976, 50.520858193000073 ], [ -121.06912419299999, 50.520849729000062 ], [ -121.069130837999978, 50.520686940000118 ], [ -121.070399687999952, 50.520707983000065 ], [ -121.070410686999978, 50.520438338000076 ], [ -121.070833633999953, 50.520445349000042 ], [ -121.070844630999915, 50.520175705000092 ], [ -121.071690521999955, 50.520189721000058 ], [ -121.071701513000022, 50.519920078 ], [ -121.072547399999962, 50.51993408900006 ], [ -121.072558386999958, 50.51966444400005 ], [ -121.07382721299993, 50.519685449000058 ], [ -121.073816233999977, 50.519955094000082 ], [ -121.074239177999942, 50.519962093000075 ], [ -121.074228202999947, 50.520231738000071 ], [ -121.075074095, 50.52024573000007 ], [ -121.075063122999964, 50.520515375000066 ], [ -121.075909023999913, 50.52052936200009 ], [ -121.075898056999904, 50.520799007000093 ], [ -121.0763210099999, 50.520805998000071 ], [ -121.0763100449999, 50.521075643000053 ], [ -121.076733, 50.521082633000113 ], [ -121.07672203599995, 50.521352277000098 ], [ -121.077144994999941, 50.521359266000076 ], [ -121.077134034, 50.521628912000025 ], [ -121.078825875999911, 50.521656849000124 ], [ -121.078793022999946, 50.522465786000119 ], [ -121.079215991999973, 50.522472766000121 ], [ -121.079205040999909, 50.522742411000159 ], [ -121.079628012999976, 50.522749391000048 ], [ -121.07961706699993, 50.523019036000044 ], [ -121.080040039, 50.523026014000067 ], [ -121.080007204999959, 50.523834951000033 ], [ -121.080430184999955, 50.523841927000021 ], [ -121.080419244, 50.524111573000035 ], [ -121.080842227999966, 50.524118548000025 ], [ -121.080831286999981, 50.524388193000057 ], [ -121.081254271999939, 50.524395167000073 ], [ -121.081243333999979, 50.524664813000122 ], [ -121.081666323, 50.524671785000088 ], [ -121.081644450999974, 50.525211077000066 ], [ -121.082067443999918, 50.525218047000067 ], [ -121.082045678999975, 50.52575482400006 ], [ -121.082045574999981, 50.525757339000087 ], [ -121.08213612099992, 50.525758830000079 ], [ -121.082468574999979, 50.52576430800007 ], [ -121.082468198999919, 50.525773542000117 ], [ -121.082446711, 50.52630360000007 ], [ -121.082869713999969, 50.526310568000078 ], [ -121.082858782999921, 50.526580213000059 ], [ -121.083281789999901, 50.526587180000057 ], [ -121.083259934999916, 50.527126472000091 ], [ -121.084528969999965, 50.527147362000036 ], [ -121.084518046999918, 50.527417008000064 ], [ -121.085787090999958, 50.52743788500009 ], [ -121.085798003, 50.527168239000027 ], [ -121.087913064999924, 50.527203002000071 ], [ -121.087902163999956, 50.527472650000099 ], [ -121.088325177999963, 50.527479598000049 ], [ -121.088314279999949, 50.527749245000052 ], [ -121.088737297999955, 50.527756190000098 ], [ -121.08868281099997, 50.529104425000064 ], [ -121.088259780999948, 50.52909747700005 ], [ -121.088237980999907, 50.529636770000089 ], [ -121.088661015999918, 50.529643718000038 ], [ -121.088628321999963, 50.53045265700009 ], [ -121.089051363999886, 50.530459603000111 ], [ -121.089040467999936, 50.530729250000043 ], [ -121.08946351099999, 50.530736194000028 ], [ -121.089441725999947, 50.531275487000066 ], [ -121.08986477399999, 50.531282431000065 ], [ -121.089853881999957, 50.531552078000047 ], [ -121.09069998699999, 50.531565959000055 ], [ -121.090689098999988, 50.531835606000065 ], [ -121.092381319999959, 50.53186335 ], [ -121.092392198999974, 50.531593703000098 ], [ -121.093238303999939, 50.531607566000133 ], [ -121.093249177999894, 50.531337920000055 ], [ -121.095364433999976, 50.531372550000079 ], [ -121.095353572999926, 50.531642197000103 ], [ -121.095776627999925, 50.531649119000065 ], [ -121.095765768999982, 50.5319187670001 ], [ -121.096188826999949, 50.531925687000133 ], [ -121.096177969999971, 50.532195334 ], [ -121.09702409, 50.532209170000051 ], [ -121.097013238999949, 50.532478817000083 ], [ -121.097859363999987, 50.532492648000137 ], [ -121.097848515999942, 50.532762295000055 ], [ -121.098271580999949, 50.53276920900003 ], [ -121.098260737999922, 50.533038856000132 ], [ -121.098442797999965, 50.533041830000045 ], [ -121.098624650999923, 50.531372413000092 ], [ -121.098692727999946, 50.530747428000055 ], [ -121.104324044999913, 50.53099590000005 ], [ -121.104235792999958, 50.531807032000131 ], [ -121.103933951999963, 50.534581032000077 ], [ -121.102580398999947, 50.534521335000143 ], [ -121.100744517999914, 50.534440340000081 ], [ -121.100734161, 50.534698190000022 ], [ -121.10115724500001, 50.534705092000102 ], [ -121.101146414999945, 50.534974740000024 ], [ -121.101569501999919, 50.534981641000101 ], [ -121.101558674000017, 50.535251289000072 ], [ -121.101981762999969, 50.535258189000047 ], [ -121.10197093799998, 50.535527837000046 ], [ -121.102394028, 50.535534735000113 ], [ -121.10238320799999, 50.535804384000066 ], [ -121.102806300999958, 50.535811280000082 ], [ -121.102795481, 50.536080929000079 ], [ -121.10364167299997, 50.536094717000012 ], [ -121.103620042999964, 50.536634015000033 ], [ -121.104043142999984, 50.536640907000056 ], [ -121.104032330999928, 50.536910555000112 ], [ -121.104455433999973, 50.536917446000082 ], [ -121.104444622999893, 50.53718709400006 ], [ -121.105290835999966, 50.537200871000096 ], [ -121.105280028999985, 50.537470520000085 ], [ -121.105703136999949, 50.53747740600005 ], [ -121.105692333999954, 50.537747054000086 ], [ -121.10653855799994, 50.537760822000088 ], [ -121.106527758999945, 50.538030471000113 ], [ -121.106950871999956, 50.538037353000085 ], [ -121.106940075999944, 50.538307002000117 ], [ -121.108209426999963, 50.538327637000052 ], [ -121.108198636999987, 50.538597287000101 ], [ -121.10862175699999, 50.53860416300008 ], [ -121.108610967999965, 50.538873811000101 ], [ -121.109457211999938, 50.538887559000138 ], [ -121.10944643, 50.539157207000073 ], [ -121.110292679999972, 50.539170949000066 ], [ -121.110281903, 50.539440598000105 ], [ -121.111128156999925, 50.539454333000052 ], [ -121.111117383999925, 50.539723983000037 ], [ -121.11196364599999, 50.539737711000051 ], [ -121.111952875999975, 50.540007361000079 ], [ -121.112799141999929, 50.540021084000053 ], [ -121.112809905999939, 50.539751434000053 ], [ -121.114079299999958, 50.539772006000064 ], [ -121.114068543999963, 50.540041656000028 ], [ -121.11491481299997, 50.540055363000121 ], [ -121.114904058999954, 50.540325013 ], [ -121.115327196999914, 50.540331864000102 ], [ -121.115316444999934, 50.540601515000091 ], [ -121.115739585, 50.540608365000026 ], [ -121.115728839000028, 50.540878015000011 ], [ -121.116089856999949, 50.540883858000029 ], [ -121.116151978999937, 50.540884863000038 ], [ -121.116149709999945, 50.540941851000042 ], [ -121.116141232999965, 50.541154513000031 ], [ -121.116418402999926, 50.541158999000061 ], [ -121.116564377999964, 50.541161360000068 ], [ -121.116560115999945, 50.541268352000053 ], [ -121.116553634999917, 50.541431011 ], [ -121.116749, 50.541434172000052 ], [ -121.118246223999932, 50.541458384000066 ], [ -121.118235490999922, 50.541728035000077 ], [ -121.119081789999939, 50.541741712000068 ], [ -121.119071061999961, 50.542011362000096 ], [ -121.11949421599999, 50.542018198000051 ], [ -121.119483487999943, 50.542287850000058 ], [ -121.119765937999958, 50.542292412000101 ], [ -121.120329797999929, 50.542301518000087 ], [ -121.120319077999966, 50.542571170000059 ], [ -121.120742233999934, 50.542578001000038 ], [ -121.120731512999953, 50.542847651000081 ], [ -121.121154674999943, 50.542854483000099 ], [ -121.12114395699993, 50.543124133000099 ], [ -121.121567121999988, 50.543130963000081 ], [ -121.121524256999962, 50.544209567000046 ], [ -121.122793777999959, 50.544230045000106 ], [ -121.12278306799999, 50.544499696000031 ], [ -121.123206245999924, 50.544506519000116 ], [ -121.123184832999982, 50.545045822000112 ], [ -121.123608012999938, 50.545052644000052 ], [ -121.123597307999944, 50.545322295000055 ], [ -121.124340181999969, 50.545334267000072 ], [ -121.124443674999938, 50.545335933000032 ], [ -121.124432973999959, 50.545605586000136 ], [ -121.125702534999959, 50.545626033000104 ], [ -121.125691840999963, 50.545895685000097 ], [ -121.127384599999971, 50.545922926000046 ], [ -121.127373915999939, 50.546192578000081 ], [ -121.128643493999959, 50.546212993000054 ], [ -121.128632815999964, 50.546482645000047 ], [ -121.129479207999935, 50.546496248000032 ], [ -121.129468535999976, 50.546765900000025 ], [ -121.130738129999941, 50.546786293000089 ], [ -121.130727465999911, 50.547055945000075 ], [ -121.13157386799999, 50.54706953200008 ], [ -121.131563206999957, 50.547339184000123 ], [ -121.13198641, 50.547345976000059 ], [ -121.131975752999935, 50.547615629000042 ], [ -121.132822165999954, 50.547629207000057 ], [ -121.132811511999961, 50.547898860000082 ], [ -121.1340811399999, 50.5479192170001 ], [ -121.134070493999971, 50.548188869000057 ], [ -121.134099649999911, 50.548189337000089 ], [ -121.13576334199999, 50.54821599000006 ], [ -121.135752703999927, 50.548485643000078 ], [ -121.136599135999973, 50.548499194000058 ], [ -121.136588502999956, 50.548768847000112 ], [ -121.137434938999917, 50.548782393000025 ], [ -121.137424311999979, 50.54905204600005 ], [ -121.138270752999958, 50.549065585000079 ], [ -121.13826013100001, 50.549335238000033 ], [ -121.13910657699995, 50.549348772000045 ], [ -121.139095958, 50.549618425000048 ], [ -121.139137184999981, 50.549619084000085 ], [ -121.13994241099999, 50.549631952000013 ], [ -121.139931796, 50.549901606000034 ], [ -121.140778252999937, 50.549915127000119 ], [ -121.140767644999983, 50.550184781000084 ], [ -121.142037340999977, 50.550205052000095 ], [ -121.142026737, 50.550474705000049 ], [ -121.142873206999923, 50.550488212000033 ], [ -121.142862609999924, 50.550757865000051 ], [ -121.143709084999898, 50.550771366000092 ], [ -121.14369849199997, 50.551041020000099 ], [ -121.144544970999931, 50.551054513000111 ], [ -121.144534382999964, 50.551324168000086 ], [ -121.14495762599995, 50.55133091200004 ], [ -121.144947040999938, 50.551600567000051 ], [ -121.145793531999985, 50.551614052000069 ], [ -121.145782949999969, 50.551883706000076 ], [ -121.146206196999927, 50.551890447000083 ], [ -121.14619561799995, 50.552160101000048 ], [ -121.146618869999926, 50.552166840000019 ], [ -121.146608293, 50.552436494000077 ], [ -121.147454798999945, 50.552449968000111 ], [ -121.147444227999983, 50.55271962300003 ], [ -121.147867482999956, 50.552726356000072 ], [ -121.147856914999949, 50.552996012000058 ], [ -121.149126689999946, 50.553016205000063 ], [ -121.149116126999971, 50.553285859000034 ], [ -121.153348743999956, 50.553353074000071 ], [ -121.153359283, 50.553083418000057 ], [ -121.155052324999986, 50.553110260000047 ], [ -121.155062852999976, 50.552840605000021 ], [ -121.156755887999935, 50.552867422000077 ], [ -121.156766406999921, 50.552597767000123 ], [ -121.157612920999981, 50.552611166000119 ], [ -121.157623432999955, 50.552341509000051 ], [ -121.158469943999947, 50.55235490200009 ], [ -121.158480451999964, 50.552085246000054 ], [ -121.16101996899998, 50.552125387000054 ], [ -121.161030462999989, 50.551855731000053 ], [ -121.162723468999943, 50.551882461000062 ], [ -121.162716633999963, 50.552058251000133 ], [ -121.161919888999975, 50.552030505000047 ], [ -121.161391394999953, 50.552552898000094 ], [ -121.161567395999953, 50.553104203000096 ], [ -121.161812201, 50.553377686000026 ], [ -121.16236360799995, 50.553728201000048 ], [ -121.162320202999979, 50.554114590000069 ], [ -121.162442877000018, 50.55422409600007 ], [ -121.16262965599999, 50.554295190000055 ], [ -121.162629103999976, 50.554309373000102 ], [ -121.162668554999982, 50.554309996000036 ], [ -121.163047013999943, 50.554454049000078 ], [ -121.163030148999951, 50.554887837000081 ], [ -121.162852589999943, 50.554905504000025 ], [ -121.16265201099999, 50.555009885000061 ], [ -121.162832808999937, 50.555417889000097 ], [ -121.163351301999938, 50.55589359400004 ], [ -121.162600418999915, 50.557068695000069 ], [ -121.162620687999961, 50.55725809800002 ], [ -121.163217199, 50.557897003000058 ], [ -121.162808808999941, 50.558223687000094 ], [ -121.162696818000015, 50.558590205000023 ], [ -121.163138586999978, 50.559533104000074 ], [ -121.163086512999897, 50.560872006000068 ], [ -121.16318528199993, 50.561269704000047 ], [ -121.162975890999959, 50.561571812000061 ], [ -121.16242249499993, 50.561995100000011 ], [ -121.162427512999983, 50.562606591000055 ], [ -121.162281488999909, 50.562730200000047 ], [ -121.162289893999969, 50.562883100000064 ], [ -121.162574045999946, 50.563212637000113 ], [ -121.161436290999944, 50.563194675000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999638164771722", "sL_AssetLoss": "124.366", "sL_BldgLoss": "124.321", "sL_StrLoss": "124", "sL_NStrLoss": "0.321", "sL_ContLoss": "0.045", "geom_point": "0101000020E6100000399B2BD632415EC087653BF86C3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.015279958999926, 50.473790516000065 ], [ -121.015676569999982, 50.470205431000025 ], [ -121.021299873999965, 50.470458126000075 ], [ -121.021249747999931, 50.470911770000093 ], [ -121.021412626999961, 50.470994463000061 ], [ -121.022288426999964, 50.470988463000047 ], [ -121.022273327999955, 50.470943462000072 ], [ -121.023104527000015, 50.47093996300007 ], [ -121.023225227999959, 50.471753863000046 ], [ -121.022926328, 50.471749008000089 ], [ -121.022920795999966, 50.47188160500005 ], [ -121.022719505999987, 50.471878184000026 ], [ -121.0226137289999, 50.472080763000037 ], [ -121.022489617999966, 50.472082323000095 ], [ -121.022487042999941, 50.472144063000037 ], [ -121.022064535999974, 50.472136882000015 ], [ -121.022042027999959, 50.472676159000059 ], [ -121.021161126999942, 50.472661180000074 ], [ -121.021170626999947, 50.47293326300008 ], [ -121.021026656999965, 50.472930649000091 ], [ -121.020903705999928, 50.474043230000035 ], [ -121.015279958999926, 50.473790516000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91349334", "BldgCostT": "62318334", "sL_LossRatio": "0.989485059312189", "sL_AssetLoss": "15829.124", "sL_BldgLoss": "15662.6817", "sL_StrLoss": "15574.2177", "sL_NStrLoss": "88.464", "sL_ContLoss": "166.4423", "geom_point": "0101000020E6100000BAC4910762345EC0FE8D6E6BA83F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.813235170999988, 50.502797673000025 ], [ -120.813416477000018, 50.50122399 ], [ -120.812708058999959, 50.501190862000058 ], [ -120.812756949999979, 50.50076655000008 ], [ -120.811614849999941, 50.500713133000055 ], [ -120.811651354999981, 50.500396374000076 ], [ -120.811472967999975, 50.500388029000085 ], [ -120.811508316999962, 50.50008131200007 ], [ -120.811115175999987, 50.500062921000087 ], [ -120.811206708, 50.499268744000055 ], [ -120.810782818999954, 50.499248913000024 ], [ -120.810785355999911, 50.499226897000071 ], [ -120.810146298999953, 50.499196996000094 ], [ -120.810166638999959, 50.499020550000061 ], [ -120.809656594000018, 50.498996683000051 ], [ -120.80967748099998, 50.49881550100006 ], [ -120.809243092999978, 50.498795173000076 ], [ -120.809277520999899, 50.498496553000045 ], [ -120.808891000999949, 50.498478463000026 ], [ -120.80892569099997, 50.498177600000083 ], [ -120.808760315999962, 50.498169860000132 ], [ -120.808794447999915, 50.497873841000072 ], [ -120.808553327999959, 50.497862555000104 ], [ -120.80863515399993, 50.497152915000058 ], [ -120.809533092999956, 50.49659701000008 ], [ -120.811629599999961, 50.49529899900007 ], [ -120.811664731999954, 50.495277280000067 ], [ -120.811967798999945, 50.495027500000056 ], [ -120.812181647999964, 50.494778940000117 ], [ -120.812346124999976, 50.494419073000074 ], [ -120.812418723999954, 50.494525171000127 ], [ -120.812362975999932, 50.494825280000022 ], [ -120.812456972999925, 50.494892697000076 ], [ -120.812586014999965, 50.494941038000015 ], [ -120.813267492999927, 50.495196406000126 ], [ -120.812988904999884, 50.495467105000053 ], [ -120.81275458499999, 50.495635506000049 ], [ -120.812186996999941, 50.495898097000051 ], [ -120.812163009999935, 50.495931232000068 ], [ -120.812052506999947, 50.496083700000064 ], [ -120.812170712999929, 50.496395504000105 ], [ -120.812775916999968, 50.496984201000032 ], [ -120.813033108999946, 50.497107906000068 ], [ -120.813304397999957, 50.49718370500009 ], [ -120.81516188899991, 50.497384011000065 ], [ -120.815407494999974, 50.497363100000143 ], [ -120.815660699, 50.497288401000027 ], [ -120.816009681999915, 50.49692190400004 ], [ -120.81647241499995, 50.497102900000179 ], [ -120.817072313999944, 50.497332805000056 ], [ -120.817911901999963, 50.497679190000056 ], [ -120.818248599999919, 50.49733371000012 ], [ -120.819215314999909, 50.495604995000072 ], [ -120.819275206999961, 50.495354699000089 ], [ -120.819329305999929, 50.49465089900005 ], [ -120.819310391, 50.494262598000077 ], [ -120.819284774, 50.494189909000049 ], [ -120.819250690999965, 50.494093207000098 ], [ -120.819128097999965, 50.49392979400006 ], [ -120.818952524999986, 50.493773003000022 ], [ -120.81826029299998, 50.493374895000031 ], [ -120.817779799999968, 50.493114609000088 ], [ -120.817468321999968, 50.493008099000043 ], [ -120.81720896799996, 50.492950074000156 ], [ -120.817188511999987, 50.492945504000076 ], [ -120.816912402999961, 50.492924510000066 ], [ -120.815826589999944, 50.492913326000071 ], [ -120.815668803999955, 50.49251194800005 ], [ -120.815771274000014, 50.49227183300011 ], [ -120.816097825999947, 50.492038907000072 ], [ -120.81646950599999, 50.49190435000007 ], [ -120.817005047999942, 50.491856824000116 ], [ -120.81787698699992, 50.4917172890001 ], [ -120.817471987999966, 50.491649790000118 ], [ -120.817322435999969, 50.491601622000083 ], [ -120.816915803999905, 50.491470593000095 ], [ -120.81657538099995, 50.491246602000103 ], [ -120.816425774999956, 50.490937793000043 ], [ -120.817231405999976, 50.490791703000099 ], [ -120.818100917999942, 50.490638109000038 ], [ -120.819106484999921, 50.490460512000041 ], [ -120.819562812999948, 50.490379903000097 ], [ -120.819622703, 50.49036931100008 ], [ -120.820619709999932, 50.490193190000063 ], [ -120.820970518999971, 50.490129736000057 ], [ -120.822145083999956, 50.48991726900006 ], [ -120.82218242799999, 50.489910513000105 ], [ -120.82249400299996, 50.489925060000125 ], [ -120.822457582999959, 50.490241827000069 ], [ -120.82263601899993, 50.49025015800003 ], [ -120.822590908, 50.490642523000112 ], [ -120.822878537999927, 50.490655952000033 ], [ -120.822829912999907, 50.491078894000047 ], [ -120.822871866999961, 50.491080853000021 ], [ -120.822667154999962, 50.492861350000055 ], [ -120.823237053999932, 50.492872012000106 ], [ -120.823227515, 50.493079514000044 ], [ -120.823502276999974, 50.493092339000064 ], [ -120.823469707999919, 50.493375646000054 ], [ -120.82378008799995, 50.493390133000048 ], [ -120.823750181999955, 50.493650280000118 ], [ -120.823946198999948, 50.493659428000051 ], [ -120.823924715999965, 50.493846316000038 ], [ -120.824188403, 50.49385862400004 ], [ -120.824151679999943, 50.494178103000117 ], [ -120.824475514999946, 50.494193216000042 ], [ -120.824449844999918, 50.494416544000039 ], [ -120.824695522, 50.494428010000085 ], [ -120.824685166999956, 50.494518107000069 ], [ -120.824853289999936, 50.494521250000084 ], [ -120.824845984999968, 50.49468022300001 ], [ -120.824882032999966, 50.494681906000032 ], [ -120.824869449999966, 50.494791387000063 ], [ -120.825686210999933, 50.494806653000076 ], [ -120.82566144799992, 50.495345861 ], [ -120.826084107, 50.495353758000114 ], [ -120.826059348999948, 50.495892966000042 ], [ -120.826482011999971, 50.495900861000131 ], [ -120.826457257999934, 50.496440070000084 ], [ -120.826879926999979, 50.496447964000076 ], [ -120.82683042399999, 50.497526381000057 ], [ -120.82491289799999, 50.497490555000084 ], [ -120.82474299499998, 50.498968680000118 ], [ -120.824737749999926, 50.498968435000137 ], [ -120.824702512, 50.499274981000084 ], [ -120.824404469999948, 50.499261074000096 ], [ -120.824379109999938, 50.49948168800006 ], [ -120.824095062999973, 50.499468433000104 ], [ -120.824063210999952, 50.499745495000113 ], [ -120.823706493999978, 50.499728848000117 ], [ -120.82368940299996, 50.499877502000103 ], [ -120.823238820999961, 50.499856474000111 ], [ -120.823216992999974, 50.500046313000048 ], [ -120.822654461999917, 50.500020057000043 ], [ -120.822623681999929, 50.500287727000064 ], [ -120.821980601999954, 50.500257708000113 ], [ -120.821972455, 50.500328542000105 ], [ -120.819514937999955, 50.500213789000092 ], [ -120.81951242699995, 50.500268289000104 ], [ -120.819666426999945, 50.500270763000074 ], [ -120.820751425999973, 50.500278363000042 ], [ -120.821095184999962, 50.50038731700004 ], [ -120.821199123999975, 50.500389264000034 ], [ -120.821197717999951, 50.50041981400004 ], [ -120.821300726999965, 50.500452463 ], [ -120.821521311999945, 50.500665131000055 ], [ -120.821609419999945, 50.50066678000006 ], [ -120.821605747999982, 50.500746537000104 ], [ -120.821785426999895, 50.500919763000056 ], [ -120.821799179, 50.500940168000085 ], [ -120.822019719999929, 50.500944296000078 ], [ -120.821982504999966, 50.501753105000077 ], [ -120.821795293999983, 50.501749601000029 ], [ -120.821651327999945, 50.501979863000059 ], [ -120.821543512999938, 50.502098852000124 ], [ -120.821534973, 50.502284398000093 ], [ -120.821378053999965, 50.502281460000084 ], [ -120.82112932699998, 50.502555963000091 ], [ -120.82109848099995, 50.502575676000085 ], [ -120.82108743299996, 50.502815689000045 ], [ -120.820690993000014, 50.50280826500007 ], [ -120.820614226999936, 50.502844663000111 ], [ -120.820143626999965, 50.50299336300008 ], [ -120.819951926999963, 50.503006563000035 ], [ -120.819671910999929, 50.502789176000142 ], [ -120.819396536999989, 50.502784016000106 ], [ -120.819413680999972, 50.502411859000091 ], [ -120.819228203999927, 50.50197135500013 ], [ -120.819011081, 50.501967286000124 ], [ -120.819027018999961, 50.50162136100009 ], [ -120.818861380000016, 50.503060609000045 ], [ -120.813235170999988, 50.502797673000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15007500", "BldgCostT": "10350000", "sL_LossRatio": "0.999809275530769", "sL_AssetLoss": "2784.121", "sL_BldgLoss": "2783.59", "sL_StrLoss": "2780", "sL_NStrLoss": "3.59", "sL_ContLoss": "0.531", "geom_point": "0101000020E6100000D334C56F0C355EC0D1A75D65D03E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.829108449, 50.488913598000075 ], [ -120.831879285999918, 50.489042771000136 ], [ -120.831463887999945, 50.491046001000079 ], [ -120.83141569699994, 50.491429413000098 ], [ -120.83142580899991, 50.49171089900009 ], [ -120.831507793999904, 50.492043495000061 ], [ -120.831580063, 50.492200994000086 ], [ -120.831530818999909, 50.492630036000058 ], [ -120.829107855999922, 50.492517086000127 ], [ -120.825905834999958, 50.492367738000105 ], [ -120.826273202999957, 50.489170365000092 ], [ -120.82755660399998, 50.48893812500004 ], [ -120.827982366999962, 50.488861081000081 ], [ -120.829108449, 50.488913598000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22100417", "BldgCostT": "15241667", "sL_LossRatio": "0.999846248695769", "sL_AssetLoss": "3954.438", "sL_BldgLoss": "3953.83", "sL_StrLoss": "3950", "sL_NStrLoss": "3.83", "sL_ContLoss": "0.608", "geom_point": "0101000020E610000028DFE0C936355EC061E50ACE64404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.829584148, 50.502053625000023 ], [ -120.829603771, 50.501625669000141 ], [ -120.830026488999962, 50.501633553000019 ], [ -120.830071861999897, 50.50064375100002 ], [ -120.829887426999932, 50.500351262000024 ], [ -120.830085396999962, 50.500348514000073 ], [ -120.830088282999938, 50.500285530000092 ], [ -120.832022957999939, 50.500321592000041 ], [ -120.833069035999969, 50.500307043000113 ], [ -120.834044826999914, 50.500293463000048 ], [ -120.83400072799999, 50.500571263000083 ], [ -120.833861551999988, 50.501035559000059 ], [ -120.833843279999954, 50.501434832000086 ], [ -120.833544103999955, 50.501429261000048 ], [ -120.83341666699998, 50.501512136000038 ], [ -120.833393616999928, 50.502015690000043 ], [ -120.83357142599999, 50.502239275000086 ], [ -120.833806266999929, 50.502243647000071 ], [ -120.833805960999911, 50.502250333000084 ], [ -120.835036668999962, 50.502307645 ], [ -120.834933702999933, 50.503205103000028 ], [ -120.834703172999951, 50.505214282000033 ], [ -120.827708497999964, 50.505212551000092 ], [ -120.828065012999971, 50.502109496000045 ], [ -120.82939598499999, 50.502171547000117 ], [ -120.829410457999927, 50.502045528000075 ], [ -120.829584148, 50.502053625000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66323000", "BldgCostT": "45740000", "sL_LossRatio": "0.999635969911622", "sL_AssetLoss": "8794.0533", "sL_BldgLoss": "8790.852", "sL_StrLoss": "8751.0556", "sL_NStrLoss": "39.7964", "sL_ContLoss": "3.2013", "geom_point": "0101000020E610000097AB61B7F6335EC0EFC1D632BA3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.80773482599993, 50.488993229000094 ], [ -120.808102689999885, 50.488770101000036 ], [ -120.80833130399995, 50.488675398000026 ], [ -120.808647692999955, 50.488604591000104 ], [ -120.808664348999955, 50.488604568000028 ], [ -120.808876059999989, 50.488604184000074 ], [ -120.808926195999945, 50.488604091000127 ], [ -120.809347885999941, 50.488661715000127 ], [ -120.810014795999962, 50.488885695000072 ], [ -120.810187586, 50.488919887000051 ], [ -120.810550312999965, 50.488925181000127 ], [ -120.81050500299996, 50.48864380200007 ], [ -120.810513158999939, 50.488476675000122 ], [ -120.810517491999974, 50.488387599000042 ], [ -120.810488907, 50.487899787000082 ], [ -120.810453617999912, 50.487776500000066 ], [ -120.81030786, 50.487224346000083 ], [ -120.810303104999946, 50.48720639400004 ], [ -120.810335822999946, 50.486861096000091 ], [ -120.810281100999973, 50.486599997000035 ], [ -120.810154678999965, 50.486469707 ], [ -120.809512107999979, 50.486010798000088 ], [ -120.809446806999972, 50.485927587000099 ], [ -120.809372708999916, 50.485711498000036 ], [ -120.809469095999958, 50.48536559300004 ], [ -120.809776423999949, 50.485398007000143 ], [ -120.810033410999921, 50.485357606000058 ], [ -120.810284590999927, 50.485318097000075 ], [ -120.811332486, 50.485056404000041 ], [ -120.8116645899999, 50.485670998000124 ], [ -120.811856896999984, 50.485903407000123 ], [ -120.81238657599999, 50.486520097000046 ], [ -120.812905386999944, 50.487232713 ], [ -120.813427096999973, 50.487956188000098 ], [ -120.814447054999974, 50.489393341000103 ], [ -120.814493791999922, 50.489459202000042 ], [ -120.814839590999895, 50.489733899000015 ], [ -120.815003185999956, 50.489817307000102 ], [ -120.815197511999955, 50.489916394000019 ], [ -120.815589607999982, 50.49003479600001 ], [ -120.816433674999971, 50.490168793000066 ], [ -120.816796321999931, 50.490334398000101 ], [ -120.817011794999971, 50.490488589000094 ], [ -120.817231405999976, 50.490791703000099 ], [ -120.816425774999956, 50.490937793000043 ], [ -120.81657538099995, 50.491246602000103 ], [ -120.816915803999905, 50.491470593000095 ], [ -120.817322435999969, 50.491601622000083 ], [ -120.817471987999966, 50.491649790000118 ], [ -120.81787698699992, 50.4917172890001 ], [ -120.817005047999942, 50.491856824000116 ], [ -120.81646950599999, 50.49190435000007 ], [ -120.816097825999947, 50.492038907000072 ], [ -120.815771274000014, 50.49227183300011 ], [ -120.815668803999955, 50.49251194800005 ], [ -120.815826589999944, 50.492913326000071 ], [ -120.814923654999944, 50.492904016000104 ], [ -120.813048078999927, 50.492884702000083 ], [ -120.81243878399999, 50.492878393000055 ], [ -120.812129626999962, 50.49287923100016 ], [ -120.810669845999925, 50.492883110000086 ], [ -120.810069911999918, 50.492884704000097 ], [ -120.809467047999931, 50.492953343000089 ], [ -120.809436708999968, 50.492956803000077 ], [ -120.80917857699994, 50.492950995000122 ], [ -120.808935782999967, 50.492911704000107 ], [ -120.808779585999943, 50.492855793000054 ], [ -120.808558053999931, 50.492729330000039 ], [ -120.808547525999927, 50.492723299000055 ], [ -120.808317188999965, 50.492329593000136 ], [ -120.808293485999911, 50.492262722000078 ], [ -120.808239297999961, 50.492109793000083 ], [ -120.808188703999974, 50.491666001000041 ], [ -120.808386103999936, 50.490750900000094 ], [ -120.808285200999961, 50.490485810000088 ], [ -120.808153085999919, 50.490258008000076 ], [ -120.80741657499999, 50.489436091000044 ], [ -120.807227191999957, 50.489301094000069 ], [ -120.80773482599993, 50.488993229000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999769772682196", "sL_AssetLoss": "457.8084", "sL_BldgLoss": "457.703", "sL_StrLoss": "457", "sL_NStrLoss": "0.703", "sL_ContLoss": "0.1054", "geom_point": "0101000020E6100000C4B047D1D8325EC005FDE0D7A33F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.793874614999964, 50.496636385000073 ], [ -120.795142599999934, 50.496660420000126 ], [ -120.795109836999984, 50.49736392600007 ], [ -120.795092374999939, 50.497738813000126 ], [ -120.794588702999945, 50.497729268000121 ], [ -120.793824360999949, 50.497714779000049 ], [ -120.793857122999938, 50.497011739000065 ], [ -120.793874614999964, 50.496636385000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999839511139358", "sL_AssetLoss": "328.3717", "sL_BldgLoss": "328.319", "sL_StrLoss": "328", "sL_NStrLoss": "0.319", "sL_ContLoss": "0.0527", "geom_point": "0101000020E610000091A4DE322B335EC041F0D7E8C53F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.798896428999967, 50.49781083400012 ], [ -120.8001644499999, 50.497834813000068 ], [ -120.80013872399995, 50.498388423000051 ], [ -120.800126864999967, 50.498643611000062 ], [ -120.798858821999943, 50.498619632000093 ], [ -120.798863829, 50.498511972000074 ], [ -120.798896428999967, 50.49781083400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181725167", "BldgCostT": "125116667", "sL_LossRatio": "0.969301086322071", "sL_AssetLoss": "19288.3405", "sL_BldgLoss": "18696.2094", "sL_StrLoss": "18437.8317", "sL_NStrLoss": "258.3777", "sL_ContLoss": "592.1311", "geom_point": "0101000020E61000009C91E634F0335EC0002C3C79223F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.81647241499995, 50.497102900000179 ], [ -120.816009681999915, 50.49692190400004 ], [ -120.815660699, 50.497288401000027 ], [ -120.815407494999974, 50.497363100000143 ], [ -120.81516188899991, 50.497384011000065 ], [ -120.813304397999957, 50.49718370500009 ], [ -120.813033108999946, 50.497107906000068 ], [ -120.812775916999968, 50.496984201000032 ], [ -120.812170712999929, 50.496395504000105 ], [ -120.812052506999947, 50.496083700000064 ], [ -120.812163009999935, 50.495931232000068 ], [ -120.812186996999941, 50.495898097000051 ], [ -120.81275458499999, 50.495635506000049 ], [ -120.812988904999884, 50.495467105000053 ], [ -120.813267492999927, 50.495196406000126 ], [ -120.812586014999965, 50.494941038000015 ], [ -120.812456972999925, 50.494892697000076 ], [ -120.812362975999932, 50.494825280000022 ], [ -120.812418723999954, 50.494525171000127 ], [ -120.812346124999976, 50.494419073000074 ], [ -120.812181647999964, 50.494778940000117 ], [ -120.811967798999945, 50.495027500000056 ], [ -120.811664731999954, 50.495277280000067 ], [ -120.811629599999961, 50.49529899900007 ], [ -120.809533092999956, 50.49659701000008 ], [ -120.80863515399993, 50.497152915000058 ], [ -120.80870874599999, 50.496514661000077 ], [ -120.809369196999953, 50.496226493000052 ], [ -120.810041298999977, 50.495717984000059 ], [ -120.810530807999967, 50.495528604000079 ], [ -120.811575294999969, 50.494900487000095 ], [ -120.811307418999931, 50.494590001000034 ], [ -120.811141792999962, 50.494506008000045 ], [ -120.810308798999927, 50.494544513000108 ], [ -120.808933321999959, 50.49406880100004 ], [ -120.808450989999955, 50.494131408000065 ], [ -120.80822238799999, 50.4942083030001 ], [ -120.807984691999977, 50.49446469100009 ], [ -120.807818781999913, 50.494991695000081 ], [ -120.807580414999961, 50.495283600000036 ], [ -120.806565212999942, 50.495300693000019 ], [ -120.806531089999922, 50.495341007000015 ], [ -120.806212712999937, 50.495326097000074 ], [ -120.806223848999977, 50.495229559000016 ], [ -120.805380790999948, 50.495190075000089 ], [ -120.80544696599992, 50.494616476000047 ], [ -120.80472500799999, 50.494582658000127 ], [ -120.805138532999976, 50.490998432000062 ], [ -120.805870150999937, 50.491032703000066 ], [ -120.805967243999987, 50.490190950000091 ], [ -120.8060056529999, 50.490192749000094 ], [ -120.806063369999947, 50.489692351000016 ], [ -120.806289244999959, 50.489702931000046 ], [ -120.806302756999983, 50.489585780000027 ], [ -120.806046536999972, 50.489580949000072 ], [ -120.806059025999943, 50.489311348000122 ], [ -120.805636427999929, 50.489303379000056 ], [ -120.805670851999963, 50.488560475 ], [ -120.80567390499999, 50.488494577000083 ], [ -120.80609649799996, 50.488502546000078 ], [ -120.80610898799992, 50.488232946000096 ], [ -120.807376757999961, 50.488256842000084 ], [ -120.807389240999939, 50.487987242000017 ], [ -120.80772705599999, 50.487993608000075 ], [ -120.807733699999972, 50.487935986000089 ], [ -120.807814395999969, 50.487939765000057 ], [ -120.807824308999912, 50.487725603000101 ], [ -120.808246894999968, 50.487733564000031 ], [ -120.808259372999913, 50.487463963000017 ], [ -120.808681957999951, 50.487471922000054 ], [ -120.808694431999953, 50.487202321000083 ], [ -120.808271848999965, 50.487194362000075 ], [ -120.808334232999968, 50.485846356000124 ], [ -120.808756801999948, 50.48585431500004 ], [ -120.808769275999964, 50.485584713000037 ], [ -120.809191843999955, 50.485592670000088 ], [ -120.809204917999963, 50.485310028000079 ], [ -120.80922859199994, 50.485318300000046 ], [ -120.809469095999958, 50.48536559300004 ], [ -120.809372708999916, 50.485711498000036 ], [ -120.809446806999972, 50.485927587000099 ], [ -120.809512107999979, 50.486010798000088 ], [ -120.810154678999965, 50.486469707 ], [ -120.810281100999973, 50.486599997000035 ], [ -120.810335822999946, 50.486861096000091 ], [ -120.810303104999946, 50.48720639400004 ], [ -120.81030786, 50.487224346000083 ], [ -120.810453617999912, 50.487776500000066 ], [ -120.810488907, 50.487899787000082 ], [ -120.810517491999974, 50.488387599000042 ], [ -120.810513158999939, 50.488476675000122 ], [ -120.81050500299996, 50.48864380200007 ], [ -120.810550312999965, 50.488925181000127 ], [ -120.810187586, 50.488919887000051 ], [ -120.810014795999962, 50.488885695000072 ], [ -120.809347885999941, 50.488661715000127 ], [ -120.808926195999945, 50.488604091000127 ], [ -120.808876059999989, 50.488604184000074 ], [ -120.808664348999955, 50.488604568000028 ], [ -120.808647692999955, 50.488604591000104 ], [ -120.80833130399995, 50.488675398000026 ], [ -120.808102689999885, 50.488770101000036 ], [ -120.80773482599993, 50.488993229000094 ], [ -120.807227191999957, 50.489301094000069 ], [ -120.80741657499999, 50.489436091000044 ], [ -120.808153085999919, 50.490258008000076 ], [ -120.808285200999961, 50.490485810000088 ], [ -120.808386103999936, 50.490750900000094 ], [ -120.808188703999974, 50.491666001000041 ], [ -120.808239297999961, 50.492109793000083 ], [ -120.808293485999911, 50.492262722000078 ], [ -120.808317188999965, 50.492329593000136 ], [ -120.808547525999927, 50.492723299000055 ], [ -120.808558053999931, 50.492729330000039 ], [ -120.808779585999943, 50.492855793000054 ], [ -120.808935782999967, 50.492911704000107 ], [ -120.80917857699994, 50.492950995000122 ], [ -120.809436708999968, 50.492956803000077 ], [ -120.809467047999931, 50.492953343000089 ], [ -120.810069911999918, 50.492884704000097 ], [ -120.810669845999925, 50.492883110000086 ], [ -120.812129626999962, 50.49287923100016 ], [ -120.81243878399999, 50.492878393000055 ], [ -120.813048078999927, 50.492884702000083 ], [ -120.814923654999944, 50.492904016000104 ], [ -120.815826589999944, 50.492913326000071 ], [ -120.816912402999961, 50.492924510000066 ], [ -120.817188511999987, 50.492945504000076 ], [ -120.81720896799996, 50.492950074000156 ], [ -120.817468321999968, 50.493008099000043 ], [ -120.817779799999968, 50.493114609000088 ], [ -120.81826029299998, 50.493374895000031 ], [ -120.818952524999986, 50.493773003000022 ], [ -120.819128097999965, 50.49392979400006 ], [ -120.819250690999965, 50.494093207000098 ], [ -120.819284774, 50.494189909000049 ], [ -120.819310391, 50.494262598000077 ], [ -120.819329305999929, 50.49465089900005 ], [ -120.819275206999961, 50.495354699000089 ], [ -120.819215314999909, 50.495604995000072 ], [ -120.818248599999919, 50.49733371000012 ], [ -120.817911901999963, 50.497679190000056 ], [ -120.817072313999944, 50.497332805000056 ], [ -120.81647241499995, 50.497102900000179 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999942309811062", "sL_AssetLoss": "92.21672", "sL_BldgLoss": "92.2114", "sL_StrLoss": "92.2", "sL_NStrLoss": "0.0114", "sL_ContLoss": "0.00532", "geom_point": "0101000020E6100000F2A41A3067245EC07F49CF99593D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.567557082999954, 50.479982036000131 ], [ -120.56757092499997, 50.479712481000071 ], [ -120.567205548999965, 50.479704840000103 ], [ -120.567148482999983, 50.479703646000068 ], [ -120.56718843699997, 50.478925753000091 ], [ -120.567190017999977, 50.478894979000053 ], [ -120.567231844, 50.478895854000037 ], [ -120.567612453999956, 50.478903813000045 ], [ -120.567626294999968, 50.478634257000081 ], [ -120.568048728999926, 50.478643088000076 ], [ -120.568062567999917, 50.478373533000052 ], [ -120.569177947999961, 50.478396845000056 ], [ -120.569329861999904, 50.478400018000109 ], [ -120.56930219799996, 50.478939131000068 ], [ -120.570569509999956, 50.478965604000109 ], [ -120.570528031999928, 50.479774274000114 ], [ -120.570105586999958, 50.479765450000102 ], [ -120.570091757999975, 50.480035007000012 ], [ -120.567557082999954, 50.479982036000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999972781256027", "sL_AssetLoss": "335.06322", "sL_BldgLoss": "335.0541", "sL_StrLoss": "335", "sL_NStrLoss": "0.0541", "sL_ContLoss": "0.00912", "geom_point": "0101000020E61000009A654791521C5EC05E85949FD44A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.439944164999972, 50.582681608000065 ], [ -120.445578100999967, 50.582963413000087 ], [ -120.445135108, 50.586545852000071 ], [ -120.43950072599992, 50.586264026000087 ], [ -120.439944164999972, 50.582681608000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999988081344594", "sL_AssetLoss": "349.03266", "sL_BldgLoss": "349.0285", "sL_StrLoss": "349", "sL_NStrLoss": "0.0285", "sL_ContLoss": "0.00416", "geom_point": "0101000020E610000057F71B2FD5185EC0D3A1D3F3EE474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.385420010999965, 50.560046285000105 ], [ -120.391050772999989, 50.560330856000093 ], [ -120.390603663999954, 50.563913176000057 ], [ -120.38497245699989, 50.563628583000131 ], [ -120.385420010999965, 50.560046285000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999991103842728", "sL_AssetLoss": "242.913871", "sL_BldgLoss": "242.91171", "sL_StrLoss": "242.9", "sL_NStrLoss": "0.01171", "sL_ContLoss": "0.002161", "geom_point": "0101000020E6100000FB92F031D6155EC0FB260B6750404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.339048980999948, 50.500564371000046 ], [ -120.343643192999977, 50.500798831000097 ], [ -120.343379275999936, 50.502898579000011 ], [ -120.343192907999963, 50.504381220000049 ], [ -120.340892403999973, 50.504263841000132 ], [ -120.338955397999911, 50.504164971000129 ], [ -120.338948, 50.502965995000139 ], [ -120.338860058999941, 50.50295659500005 ], [ -120.338950241999925, 50.502647998000079 ], [ -120.338987083999911, 50.501870359000129 ], [ -120.339048980999948, 50.500564371000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999879328873182", "sL_AssetLoss": "491.4183", "sL_BldgLoss": "491.359", "sL_StrLoss": "491", "sL_NStrLoss": "0.359", "sL_ContLoss": "0.0593", "geom_point": "0101000020E61000003A46AAD69F1F5EC0DD0F70EFB7504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.491590913999957, 50.628297820000128 ], [ -120.497230887999976, 50.62857699500011 ], [ -120.49679156, 50.632159442000052 ], [ -120.496765398999941, 50.63215814800008 ], [ -120.496670899999984, 50.632928642000088 ], [ -120.491030382999938, 50.632649440000087 ], [ -120.491470174999961, 50.629067018000079 ], [ -120.491496335999955, 50.629068315000033 ], [ -120.491590913999957, 50.628297820000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "0.999990136311828", "sL_AssetLoss": "251.021723", "sL_BldgLoss": "251.019247", "sL_StrLoss": "251.000197", "sL_NStrLoss": "0.01905", "sL_ContLoss": "0.002476", "geom_point": "0101000020E6100000B4558B80F11C5EC0F66FA829934C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.44964356199992, 50.59630916600004 ], [ -120.455279265999934, 50.596590475000056 ], [ -120.454836910999987, 50.60017289400011 ], [ -120.44920076199999, 50.599891564000096 ], [ -120.44964356199992, 50.59630916600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537501", "BldgCostT": "1750001", "sL_LossRatio": "0.999969849494077", "sL_AssetLoss": "344.27283", "sL_BldgLoss": "344.26245", "sL_StrLoss": "344.2", "sL_NStrLoss": "0.06245", "sL_ContLoss": "0.01038", "geom_point": "0101000020E61000004BCE261379165EC05BB56B42DA404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.349189913999965, 50.504758759 ], [ -120.35417649199999, 50.505012752000042 ], [ -120.35376949299993, 50.508256543000094 ], [ -120.353727001999957, 50.508595165000131 ], [ -120.348102936999979, 50.508308686000127 ], [ -120.348552869999963, 50.504726295000069 ], [ -120.349189913999965, 50.504758759 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999776976625427", "sL_AssetLoss": "510.7088", "sL_BldgLoss": "510.5949", "sL_StrLoss": "510", "sL_NStrLoss": "0.5949", "sL_ContLoss": "0.1139", "geom_point": "0101000020E6100000A4C0C8EC68365EC04C40C018194D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.847826536999932, 50.60430740700005 ], [ -120.847878394999924, 50.603855346000046 ], [ -120.84749325599995, 50.603837499000079 ], [ -120.847904378999928, 50.600253592000072 ], [ -120.851304176999989, 50.600411087000055 ], [ -120.851546093999971, 50.600556907000048 ], [ -120.851911607999966, 50.600599591000098 ], [ -120.85207520799996, 50.600746288000046 ], [ -120.852340484999971, 50.600787610000026 ], [ -120.852839399999965, 50.60131741300011 ], [ -120.853064009999983, 50.601663496000043 ], [ -120.853607054999941, 50.603334453000031 ], [ -120.853582070999963, 50.603552497000045 ], [ -120.853434794999927, 50.60377561100011 ], [ -120.853192111999988, 50.603833988000098 ], [ -120.852535698999958, 50.603335485000073 ], [ -120.852074696999978, 50.603237295000035 ], [ -120.851037313999953, 50.601491200000083 ], [ -120.850658385999978, 50.601098099000026 ], [ -120.850474586999951, 50.601120902000034 ], [ -120.85049011299999, 50.601382894000039 ], [ -120.851235182999915, 50.603033595000056 ], [ -120.851204799999948, 50.603986392000067 ], [ -120.851275293999961, 50.604467156000091 ], [ -120.847826536999932, 50.60430740700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999956345746057", "sL_AssetLoss": "91.6291", "sL_BldgLoss": "91.6251", "sL_StrLoss": "91.6", "sL_NStrLoss": "0.0251", "sL_ContLoss": "0.004", "geom_point": "0101000020E61000006CCB04ECB8365EC0CE599701845B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.853736955999963, 50.715508725000049 ], [ -120.853749275, 50.715239125000089 ], [ -120.8533246329999, 50.715231305000025 ], [ -120.853361592999946, 50.714422508000062 ], [ -120.856758668999973, 50.71448503200002 ], [ -120.856721767999915, 50.715293830000036 ], [ -120.856297125999973, 50.715286019000096 ], [ -120.856284821999935, 50.71555561800006 ], [ -120.853736955999963, 50.715508725000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999865514659016", "sL_AssetLoss": "439.4531", "sL_BldgLoss": "439.394", "sL_StrLoss": "439", "sL_NStrLoss": "0.394", "sL_ContLoss": "0.0591", "geom_point": "0101000020E6100000D054BA81231B5EC0CADFFFBF984D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.420957275999967, 50.608048177000065 ], [ -120.421402404999967, 50.604465928000074 ], [ -120.427038952999965, 50.604748663000088 ], [ -120.426594268999949, 50.608330934000058 ], [ -120.424479434999981, 50.60822488500002 ], [ -120.424486299999984, 50.608101008000091 ], [ -120.424356688999964, 50.607891605000106 ], [ -120.42437759299996, 50.607757715000091 ], [ -120.425005799999937, 50.607905798000083 ], [ -120.4253319849999, 50.607904393000112 ], [ -120.425576202999949, 50.607810385000086 ], [ -120.425629914999917, 50.607632392 ], [ -120.425581285999982, 50.607487096000021 ], [ -120.424640007999983, 50.607367492000016 ], [ -120.424344598999966, 50.607343287000113 ], [ -120.423937098999943, 50.607531287000029 ], [ -120.423465495999949, 50.607368888000046 ], [ -120.422829499999963, 50.607381697000065 ], [ -120.422398208999979, 50.607534108000053 ], [ -120.421557153999927, 50.60807828100004 ], [ -120.420957275999967, 50.608048177000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999995083306491", "sL_AssetLoss": "348.811655", "sL_BldgLoss": "348.80994", "sL_StrLoss": "348.8", "sL_NStrLoss": "0.00994", "sL_ContLoss": "0.001715", "geom_point": "0101000020E61000001F9E67E45A165EC058241E3799444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.347489054999969, 50.534031056000103 ], [ -120.352336329999943, 50.534277861000113 ], [ -120.35188640299999, 50.537860138000084 ], [ -120.34818530699998, 50.53767171200009 ], [ -120.346258696999939, 50.537573578000014 ], [ -120.346709069999974, 50.53399132200007 ], [ -120.347489054999969, 50.534031056000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23045333", "BldgCostT": "15893333", "sL_LossRatio": "0.999973687269754", "sL_AssetLoss": "3231.89571", "sL_BldgLoss": "3231.81067", "sL_StrLoss": "3231.30168", "sL_NStrLoss": "0.50899", "sL_ContLoss": "0.08504", "geom_point": "0101000020E61000000946A9ADA61F5EC060DFF368CF3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.496336588999952, 50.477516592 ], [ -120.496756505999926, 50.477337208000087 ], [ -120.497168613999989, 50.477245993000039 ], [ -120.497208991999983, 50.477031012000069 ], [ -120.497013515999967, 50.476711898000126 ], [ -120.496908893999972, 50.476575215 ], [ -120.495729117999943, 50.476217701000046 ], [ -120.493511603999977, 50.475764785000102 ], [ -120.492413195, 50.475749205000078 ], [ -120.491950253999974, 50.47581599600003 ], [ -120.491985812999957, 50.47552524000011 ], [ -120.490269645999945, 50.475439935000068 ], [ -120.490351010999987, 50.474774857000057 ], [ -120.486103753999942, 50.474563624000041 ], [ -120.486120994000018, 50.474422796000084 ], [ -120.483970190999983, 50.474315765000085 ], [ -120.484035791999958, 50.473780149000056 ], [ -120.482709586999974, 50.473714132000048 ], [ -120.483148490999895, 50.470131050000084 ], [ -120.484192814, 50.470183037000076 ], [ -120.484378120999978, 50.468669775000059 ], [ -120.48545855499999, 50.468723549000025 ], [ -120.485520997999956, 50.468213501000051 ], [ -120.486394633999922, 50.468256974000056 ], [ -120.486416367999979, 50.468079421000027 ], [ -120.48762805099993, 50.468139705000098 ], [ -120.487632413999947, 50.4681040500001 ], [ -120.488419242999939, 50.46814319000007 ], [ -120.488432484000015, 50.468034968000055 ], [ -120.494052409999966, 50.468314359000061 ], [ -120.494031667999963, 50.46848404600005 ], [ -120.495267081999941, 50.468545425000094 ], [ -120.495110288999939, 50.469828377000042 ], [ -120.49533926, 50.469839752000034 ], [ -120.495391506999937, 50.469412234000067 ], [ -120.499764566999943, 50.469629380000086 ], [ -120.50101164799996, 50.46969127100003 ], [ -120.500960401999933, 50.470111018000097 ], [ -120.501747050999938, 50.470150052000079 ], [ -120.501309624000015, 50.473733208000077 ], [ -120.500059316999966, 50.473671165000056 ], [ -120.500058366999966, 50.473678937000138 ], [ -120.499164385, 50.473634568000094 ], [ -120.499092569999959, 50.474222557000083 ], [ -120.499623703999944, 50.474248919000068 ], [ -120.499487713999883, 50.475362403000126 ], [ -120.498937601999955, 50.475521289000056 ], [ -120.497363815999947, 50.476234790000049 ], [ -120.497253088999969, 50.476474102000054 ], [ -120.497357898999979, 50.476629314000078 ], [ -120.497477707999977, 50.476740403000093 ], [ -120.497856397999982, 50.476766101000038 ], [ -120.498774601999969, 50.477002502000133 ], [ -120.499874601999963, 50.477520901000069 ], [ -120.500832409999958, 50.477532302000114 ], [ -120.502835485999952, 50.477241693000046 ], [ -120.504385522999925, 50.477266004000064 ], [ -120.505173879999916, 50.477030992000024 ], [ -120.505768095999898, 50.476972600000131 ], [ -120.506164002999952, 50.476674901000131 ], [ -120.50649481799995, 50.476573804000076 ], [ -120.506987492999954, 50.476279008000098 ], [ -120.50769520499999, 50.476240492000095 ], [ -120.508085076999947, 50.47605109200002 ], [ -120.507766804999946, 50.475693611000096 ], [ -120.507932097999941, 50.475237901000128 ], [ -120.507812989999962, 50.475084675000126 ], [ -120.509782194999943, 50.475182243000113 ], [ -120.509345356999944, 50.478765409000076 ], [ -120.509023277, 50.478749453000034 ], [ -120.508990457000024, 50.479018616000104 ], [ -120.508423597999965, 50.47899053200004 ], [ -120.508382149999974, 50.47933043000009 ], [ -120.507885325999922, 50.479305813000067 ], [ -120.507873930999949, 50.479399242000078 ], [ -120.507384593999959, 50.479374994000047 ], [ -120.507367316999961, 50.479516652000051 ], [ -120.507107435999899, 50.479503774000086 ], [ -120.507107009999942, 50.479511876000096 ], [ -120.506000277999988, 50.479488154000094 ], [ -120.505961172999932, 50.47980868500013 ], [ -120.50458569700001, 50.47974049700008 ], [ -120.504577212999934, 50.479810017000055 ], [ -120.502714355999942, 50.479717641000057 ], [ -120.502678743999923, 50.480009361000036 ], [ -120.499563365999947, 50.479854804000063 ], [ -120.499536611999943, 50.480073835000049 ], [ -120.49907211799993, 50.480050783000117 ], [ -120.498991326999942, 50.48071214600003 ], [ -120.498201645999984, 50.480672951000017 ], [ -120.498136217999914, 50.48120846500008 ], [ -120.497102247999962, 50.481157136000071 ], [ -120.497059188999941, 50.481509489000061 ], [ -120.496455120999912, 50.481479497000066 ], [ -120.49640958099998, 50.481852103000044 ], [ -120.495926868999987, 50.481828134000068 ], [ -120.495875080999966, 50.482251814000023 ], [ -120.495568819999946, 50.482236606000065 ], [ -120.495538646999933, 50.482483440000081 ], [ -120.495519186999971, 50.482642621000046 ], [ -120.495023335999974, 50.482617997000041 ], [ -120.494973487999971, 50.483025734000073 ], [ -120.494545960999986, 50.483004501000039 ], [ -120.494502585999925, 50.483359244000113 ], [ -120.493728573999988, 50.483320799000097 ], [ -120.493679871999959, 50.483719063000152 ], [ -120.492759747999955, 50.483673353000079 ], [ -120.492682762999934, 50.48430278299999 ], [ -120.492301740999963, 50.484283852000026 ], [ -120.492246568999974, 50.48473489400002 ], [ -120.486624607999943, 50.484455417000078 ], [ -120.486811351999947, 50.482930265000043 ], [ -120.487004887999973, 50.482864506000091 ], [ -120.488021196999966, 50.482841692000079 ], [ -120.488365004999963, 50.48271499500008 ], [ -120.488845702999981, 50.482176600000109 ], [ -120.490255089999948, 50.481631203000049 ], [ -120.490651702999955, 50.481324901000043 ], [ -120.491652689999938, 50.480815091000082 ], [ -120.49285080199995, 50.479735502000075 ], [ -120.493332206, 50.479422201000055 ], [ -120.494357614999984, 50.478957904000076 ], [ -120.494855618999907, 50.478888094000105 ], [ -120.495463284999943, 50.478603309000107 ], [ -120.495983007999911, 50.478093398000055 ], [ -120.496336588999952, 50.477516592 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999816231846601", "sL_AssetLoss": "119.1719", "sL_BldgLoss": "119.15", "sL_StrLoss": "119", "sL_NStrLoss": "0.15", "sL_ContLoss": "0.0219", "geom_point": "0101000020E6100000705434F78C345EC0C2C79A70B33C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.818391573999989, 50.473562001000083 ], [ -120.824014168999952, 50.473824686000142 ], [ -120.82390145899997, 50.474805631000095 ], [ -120.820712381999968, 50.474791602000032 ], [ -120.820709758999925, 50.474791472000021 ], [ -120.81882759, 50.474697846000019 ], [ -120.818587689999916, 50.474607706000079 ], [ -120.818284402999922, 50.474493735000067 ], [ -120.818319162999927, 50.474191553000061 ], [ -120.818391573999989, 50.473562001000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999985996810342", "sL_AssetLoss": "417.04784", "sL_BldgLoss": "417.042", "sL_StrLoss": "417", "sL_NStrLoss": "0.042", "sL_ContLoss": "0.00584", "geom_point": "0101000020E61000002D3C16783A1C5EC0CB123A3BDB4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.43809151499994, 50.594546071000075 ], [ -120.438156707999923, 50.594019661000111 ], [ -120.437967046999958, 50.594010168000061 ], [ -120.438379610999959, 50.590678735000019 ], [ -120.438410684999923, 50.590427791000117 ], [ -120.444045580999969, 50.590709670000088 ], [ -120.443980460999953, 50.591236086000045 ], [ -120.44417011199999, 50.591245568000062 ], [ -120.44372692599994, 50.594827965000043 ], [ -120.438382147999945, 50.594560616000066 ], [ -120.43809151499994, 50.594546071000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999989942317037", "sL_AssetLoss": "341.728807", "sL_BldgLoss": "341.72537", "sL_StrLoss": "341.7", "sL_NStrLoss": "0.02537", "sL_ContLoss": "0.003437", "geom_point": "0101000020E610000004E2B71955175EC0353AE7A7B8424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.36198075799993, 50.519326143000143 ], [ -120.367606284999937, 50.519611915000027 ], [ -120.367157715999923, 50.523194318000044 ], [ -120.36153174499999, 50.52290852400003 ], [ -120.36198075799993, 50.519326143000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999932216773919", "sL_AssetLoss": "411.16367", "sL_BldgLoss": "411.1358", "sL_StrLoss": "411", "sL_NStrLoss": "0.1358", "sL_ContLoss": "0.02787", "geom_point": "0101000020E61000009B97050B0E275EC07454C1EAC03A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.607636815999953, 50.457083827000083 ], [ -120.613256107999959, 50.457357187000085 ], [ -120.612964106999939, 50.459799608000061 ], [ -120.61282765699994, 50.460940834000013 ], [ -120.610250824999952, 50.460815516000082 ], [ -120.60720792099994, 50.460667454000031 ], [ -120.607636815999953, 50.457083827000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999969400128447", "sL_AssetLoss": "331.37394", "sL_BldgLoss": "331.3638", "sL_StrLoss": "331.3", "sL_NStrLoss": "0.0638", "sL_ContLoss": "0.01014", "geom_point": "0101000020E6100000BAA0219049165EC0A6091D6C98454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.347020848999961, 50.541849397000178 ], [ -120.351279194999947, 50.542066206000143 ], [ -120.350829103999899, 50.545648444000044 ], [ -120.345200432999945, 50.545361832000076 ], [ -120.345383645999945, 50.543905168000073 ], [ -120.345650966999969, 50.541779616000063 ], [ -120.347020848999961, 50.541849397000178 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999987819293584", "sL_AssetLoss": "330.03012", "sL_BldgLoss": "330.0261", "sL_StrLoss": "330", "sL_NStrLoss": "0.0261", "sL_ContLoss": "0.00402", "geom_point": "0101000020E61000000419E8776D175EC02256DA3D544C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.363463673999945, 50.5943869540001 ], [ -120.369098594999969, 50.594672625000044 ], [ -120.368649397999931, 50.598254706000027 ], [ -120.363014032999942, 50.597969015000068 ], [ -120.363463673999945, 50.5943869540001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2987000", "BldgCostT": "2060000", "sL_LossRatio": "0.999981879829349", "sL_AssetLoss": "336.08955", "sL_BldgLoss": "336.08346", "sL_StrLoss": "336.00126", "sL_NStrLoss": "0.0822", "sL_ContLoss": "0.00609", "geom_point": "0101000020E610000030018D0C51175EC0EBB40B591F404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.362240994999965, 50.503236084000036 ], [ -120.362386027999918, 50.502078354000041 ], [ -120.360330609999963, 50.501973833000108 ], [ -120.360534820999959, 50.500344195000075 ], [ -120.360779508999883, 50.498391365000032 ], [ -120.366402417999936, 50.498677205000028 ], [ -120.366257499999961, 50.499834945000018 ], [ -120.36831283399999, 50.499939356000013 ], [ -120.368031011999975, 50.502191464000113 ], [ -120.367864517999962, 50.503521848000076 ], [ -120.362240994999965, 50.503236084000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999970390411622", "sL_AssetLoss": "347.86029", "sL_BldgLoss": "347.84999", "sL_StrLoss": "347.8", "sL_NStrLoss": "0.04999", "sL_ContLoss": "0.0103", "geom_point": "0101000020E61000008B68C74F5B385EC073535E86DA5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.877951367999955, 50.715684763000077 ], [ -120.883604642999956, 50.715944354000079 ], [ -120.883195310999923, 50.719527899000106 ], [ -120.877541586999897, 50.719268287000027 ], [ -120.877951367999955, 50.715684763000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999848964691195", "sL_AssetLoss": "418.4452", "sL_BldgLoss": "418.382", "sL_StrLoss": "418", "sL_NStrLoss": "0.382", "sL_ContLoss": "0.0632", "geom_point": "0101000020E6100000956E6481E3275EC02A8AFC9FE83A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.620664889999915, 50.45829593400007 ], [ -120.626284411999961, 50.458568634000052 ], [ -120.626174641999967, 50.459489037000047 ], [ -120.62585698299992, 50.462152326000144 ], [ -120.620237018999916, 50.461879605000078 ], [ -120.620554141999946, 50.459223571000081 ], [ -120.620664889999915, 50.45829593400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22571667", "BldgCostT": "15566667", "sL_LossRatio": "1", "sL_AssetLoss": "2582", "sL_BldgLoss": "2582", "sL_StrLoss": "2582", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF984E67BE355EC0BB108A3159604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.812697824999958, 50.759914022000054 ], [ -120.812377575999932, 50.759420105000103 ], [ -120.812714704999976, 50.759386006000092 ], [ -120.813313142999945, 50.759325508000089 ], [ -120.813690022999964, 50.759287412000027 ], [ -120.81360188799998, 50.759004210000079 ], [ -120.813781676999952, 50.758557693000093 ], [ -120.81383828499996, 50.758290203000101 ], [ -120.813718705999946, 50.757505582000093 ], [ -120.81408860699996, 50.757304969000074 ], [ -120.814581267999969, 50.756870119000041 ], [ -120.814737964999921, 50.756877401000054 ], [ -120.814755126999941, 50.756729291000084 ], [ -120.815006138999976, 50.756548455000022 ], [ -120.815917355999929, 50.756093082000113 ], [ -120.816017108999915, 50.756097716000042 ], [ -120.816023808999944, 50.756039882000053 ], [ -120.816043405999935, 50.756030088000038 ], [ -120.816156303999946, 50.755940491000111 ], [ -120.816731227999981, 50.755967198000086 ], [ -120.816753046999949, 50.755778816000038 ], [ -120.816850983999956, 50.755783366000045 ], [ -120.817008900999909, 50.754419855000059 ], [ -120.817300851999974, 50.754220602000061 ], [ -120.817813023000014, 50.754010156000042 ], [ -120.818336828999946, 50.753898407000051 ], [ -120.818913354999921, 50.753850810000067 ], [ -120.819353737999961, 50.753781706000034 ], [ -120.819740692000011, 50.753657469000068 ], [ -120.819907259000033, 50.753545541000037 ], [ -120.819961340999924, 50.753288892000121 ], [ -120.819873111999968, 50.752976279000059 ], [ -120.819846033999937, 50.752915845000075 ], [ -120.822861746999962, 50.752996494000094 ], [ -120.822839002999899, 50.753193108000119 ], [ -120.823529788, 50.753225158000063 ], [ -120.823466212999975, 50.753774812000096 ], [ -120.823668045999966, 50.753784175000057 ], [ -120.82367146899999, 50.753754574000034 ], [ -120.824332766999973, 50.753785251000096 ], [ -120.824334438999983, 50.753770790000011 ], [ -120.824859498999942, 50.753795144000037 ], [ -120.824873621999984, 50.753673003000067 ], [ -120.825383062999947, 50.753696630000078 ], [ -120.825410710999961, 50.753457515000015 ], [ -120.826095316999954, 50.753489262000095 ], [ -120.826107285, 50.753385731000044 ], [ -120.827040764999978, 50.753429012000026 ], [ -120.827077741, 50.753109105000085 ], [ -120.827484183999985, 50.75311995300013 ], [ -120.827659765999982, 50.753128093000036 ], [ -120.827660164999955, 50.753124650000061 ], [ -120.832475081999974, 50.753253038000075 ], [ -120.832951601999923, 50.753289671000068 ], [ -120.832938269999886, 50.752392529000055 ], [ -120.836393965999974, 50.752552507000111 ], [ -120.836381164999935, 50.752663465000097 ], [ -120.837313783999917, 50.752706621000122 ], [ -120.837360065999931, 50.752305392 ], [ -120.840394117999949, 50.752445736000062 ], [ -120.840563096999972, 50.752453550000034 ], [ -120.840566022999951, 50.752390031000125 ], [ -120.840573311999933, 50.752231624000075 ], [ -120.841028844999954, 50.752240062000062 ], [ -120.841423257999921, 50.752247366000148 ], [ -120.841427859999953, 50.752147388000097 ], [ -120.84143566399996, 50.751977771000064 ], [ -120.84186913399995, 50.751985797000032 ], [ -120.841890800999934, 50.751797798000084 ], [ -120.842718176999981, 50.751836044000072 ], [ -120.84272297099993, 50.751731778000121 ], [ -120.84372664199999, 50.751750347000012 ], [ -120.844422846999947, 50.751763223000154 ], [ -120.844429012999967, 50.751629024000046 ], [ -120.844435232999928, 50.751493627000094 ], [ -120.844940259999973, 50.751502964000053 ], [ -120.845285166999929, 50.751509341000066 ], [ -120.845290719, 50.75138846500009 ], [ -120.845297548999909, 50.751239745000085 ], [ -120.845648754999957, 50.751246236000092 ], [ -120.845722514999963, 50.751247599000067 ], [ -120.845723947999943, 50.751216365000104 ], [ -120.845734892999957, 50.750978004000089 ], [ -120.846218857999986, 50.750986947000044 ], [ -120.847009782, 50.751001557000052 ], [ -120.846997408, 50.751271152000058 ], [ -120.847847339999973, 50.751286848000071 ], [ -120.847896808000016, 50.750208463000085 ], [ -120.848321765, 50.750216308000105 ], [ -120.848326640999971, 50.750109995000066 ], [ -120.84833412799999, 50.749946712000082 ], [ -120.849864098999944, 50.749974943000048 ], [ -120.850114267999928, 50.749979558000128 ], [ -120.851572562999948, 50.750006444000036 ], [ -120.851577847, 50.749960511000054 ], [ -120.850819224, 50.749925502000146 ], [ -120.850827614999943, 50.749852566000072 ], [ -120.850030600999986, 50.749815780000063 ], [ -120.850033224, 50.749792995000114 ], [ -120.848652256999969, 50.749729243000083 ], [ -120.848722244999962, 50.749121124000062 ], [ -120.84859269599994, 50.749115142000043 ], [ -120.848780681999955, 50.747481689000089 ], [ -120.849005062999964, 50.745531850000113 ], [ -120.854661930999953, 50.745792898000055 ], [ -120.854655910999938, 50.745845277000051 ], [ -120.85548420799995, 50.74588347700012 ], [ -120.855476336999956, 50.745951959000124 ], [ -120.856317684999937, 50.745990754000097 ], [ -120.856311316999964, 50.746046166000099 ], [ -120.857254056000016, 50.746089629 ], [ -120.857224357999954, 50.746348120000064 ], [ -120.858846520999947, 50.746422886000133 ], [ -120.858715588999971, 50.747562845000097 ], [ -120.858602622999939, 50.748546356000126 ], [ -120.860614304999956, 50.748639042000043 ], [ -120.86041598199995, 50.750366231000086 ], [ -120.864181144999947, 50.750539609000086 ], [ -120.864555487999951, 50.750556839000076 ], [ -120.864519086999948, 50.750874107000115 ], [ -120.864505164999969, 50.750995437000036 ], [ -120.865056800999952, 50.751020826000058 ], [ -120.864961421999979, 50.751852174000106 ], [ -120.864969160999976, 50.751852530000143 ], [ -120.864939745999948, 50.752108911000079 ], [ -120.865550456999955, 50.752137015000081 ], [ -120.865520576999984, 50.752397481000081 ], [ -120.86611865699993, 50.752425000000102 ], [ -120.865952022000016, 50.753877653000046 ], [ -120.865987959999941, 50.753879307000098 ], [ -120.86597126199996, 50.754024860000065 ], [ -120.864052529999981, 50.753106422000073 ], [ -120.863418934999942, 50.752803105000027 ], [ -120.863355015999943, 50.752772490000048 ], [ -120.862104788999901, 50.752254807000121 ], [ -120.861862997999964, 50.752379588000061 ], [ -120.861481796999925, 50.752578188000079 ], [ -120.860342198999916, 50.75317860300008 ], [ -120.860199180999956, 50.753247696000116 ], [ -120.85898899399993, 50.752740704000125 ], [ -120.858551690999889, 50.752623303000043 ], [ -120.858103602999961, 50.752588309000011 ], [ -120.857149002999932, 50.752666695000066 ], [ -120.855896996999945, 50.752679077000074 ], [ -120.855915876, 50.752514828000116 ], [ -120.855022479999917, 50.752498392000085 ], [ -120.855045966999924, 50.751984694000072 ], [ -120.854545123999955, 50.751961598000037 ], [ -120.85454646, 50.751949984000092 ], [ -120.854197185999979, 50.751943555000068 ], [ -120.854172522999974, 50.752482750000091 ], [ -120.853747544999976, 50.75247492500008 ], [ -120.853735210999957, 50.752744523000054 ], [ -120.854160191999966, 50.752752346000051 ], [ -120.854153401999923, 50.752900758000052 ], [ -120.853256583999922, 50.753166317000108 ], [ -120.852876079999973, 50.753185709000029 ], [ -120.852531870999954, 50.753087791000084 ], [ -120.851843607999967, 50.752642690000094 ], [ -120.851518, 50.752481788000139 ], [ -120.849301188999988, 50.75182741000004 ], [ -120.848949609000016, 50.751756274000059 ], [ -120.846489220999956, 50.751760643000125 ], [ -120.846433627999915, 50.75176727200008 ], [ -120.845902375999955, 50.751830794000057 ], [ -120.844025145000018, 50.752438412000089 ], [ -120.843367023999974, 50.752695294000056 ], [ -120.84267472399992, 50.752964979000119 ], [ -120.842676798999946, 50.753230713000065 ], [ -120.841791007999987, 50.753230300000062 ], [ -120.840061089999949, 50.753557400000048 ], [ -120.838592547999951, 50.753874946000046 ], [ -120.836238427999945, 50.75437392900006 ], [ -120.835343470999973, 50.754588176000034 ], [ -120.834414520999985, 50.754810585000065 ], [ -120.832811931999984, 50.75519421700011 ], [ -120.83046596299999, 50.755621410000082 ], [ -120.829593793999933, 50.755809773000045 ], [ -120.827553214999909, 50.756251940000048 ], [ -120.825731689999969, 50.756680824000071 ], [ -120.82537541, 50.756847133000093 ], [ -120.825051564999953, 50.757089684000078 ], [ -120.82422328199999, 50.757709607000017 ], [ -120.823542540999981, 50.758123820000037 ], [ -120.82290920299999, 50.758373642000066 ], [ -120.821731266999976, 50.758696311000115 ], [ -120.820590902000021, 50.758927976000081 ], [ -120.819803868999927, 50.758994119000093 ], [ -120.818932871999948, 50.758999606000046 ], [ -120.818081306999929, 50.759040152000061 ], [ -120.817448438999961, 50.759070272000017 ], [ -120.817110949999943, 50.75915478100007 ], [ -120.817023679999977, 50.759176634000077 ], [ -120.816696612999962, 50.759336158000053 ], [ -120.816291433999979, 50.75964155300003 ], [ -120.815698916999949, 50.760213839000158 ], [ -120.8149033399999, 50.759924707000074 ], [ -120.813944103999972, 50.760874399000116 ], [ -120.814328892999967, 50.761014789000043 ], [ -120.814370002999951, 50.76110218200008 ], [ -120.814087791999967, 50.761107092000053 ], [ -120.813759012999967, 50.761060291000057 ], [ -120.813485197, 50.760943994000051 ], [ -120.813249917999954, 50.760765601000081 ], [ -120.813059681999931, 50.760472211000092 ], [ -120.812915104999917, 50.76024917700002 ], [ -120.812907960999951, 50.760238213000079 ], [ -120.81280399099991, 50.760077805000016 ], [ -120.812697824999958, 50.759914022000054 ] ], [ [ -120.854732179999957, 50.750334457000072 ], [ -120.854750804999966, 50.750172437000053 ], [ -120.853854766999987, 50.750131112000076 ], [ -120.853847503999987, 50.750289875000064 ], [ -120.853846209999972, 50.750318148000062 ], [ -120.854284969999952, 50.750326226000055 ], [ -120.854732179999957, 50.750334457000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999992420487664", "sL_AssetLoss": "557.423725", "sL_BldgLoss": "557.4195", "sL_StrLoss": "557.4", "sL_NStrLoss": "0.0195", "sL_ContLoss": "0.004225", "geom_point": "0101000020E610000081CC10BFC9185EC0DBF876BF48494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.384096638999935, 50.575266536000058 ], [ -120.384352354000015, 50.573220695000018 ], [ -120.383690464999916, 50.573187228000059 ], [ -120.384138214999922, 50.569604977000033 ], [ -120.389770164999973, 50.569889610000089 ], [ -120.389684868999922, 50.570572753000064 ], [ -120.391213761999964, 50.570649973000094 ], [ -120.39076656499999, 50.57423224800003 ], [ -120.389899457999974, 50.574188456000066 ], [ -120.389729296999988, 50.575551169000043 ], [ -120.384096638999935, 50.575266536000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999788599675253", "sL_AssetLoss": "111.1635", "sL_BldgLoss": "111.14", "sL_StrLoss": "111", "sL_NStrLoss": "0.14", "sL_ContLoss": "0.0235", "geom_point": "0101000020E61000003502B70F35355EC03EC10F18B5404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.827708497999964, 50.505212551000092 ], [ -120.834703172999951, 50.505214282000033 ], [ -120.834625416999984, 50.505891933000022 ], [ -120.833294327000019, 50.505829945000123 ], [ -120.833279863, 50.50595596400008 ], [ -120.827653207999958, 50.505693758000099 ], [ -120.827708497999964, 50.505212551000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99988974423246", "sL_AssetLoss": "116.0937", "sL_BldgLoss": "116.0809", "sL_StrLoss": "116", "sL_NStrLoss": "0.0809", "sL_ContLoss": "0.0128", "geom_point": "0101000020E61000004175BD7E122B5EC033068CE461424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.673036739999986, 50.519377652000053 ], [ -120.67305, 50.519108077000091 ], [ -120.672627173999928, 50.519099622000091 ], [ -120.672640436999927, 50.518830047000087 ], [ -120.671371964999935, 50.518804671000076 ], [ -120.67141177799999, 50.517995948000078 ], [ -120.673948679999981, 50.518046684000097 ], [ -120.673935423999964, 50.518316259000073 ], [ -120.674358243999919, 50.518324710000051 ], [ -120.674305227999952, 50.519403009 ], [ -120.673036739999986, 50.519377652000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999997644641042", "sL_AssetLoss": "166.004421", "sL_BldgLoss": "166.00403", "sL_StrLoss": "166", "sL_NStrLoss": "0.00403", "sL_ContLoss": "0.000391", "geom_point": "0101000020E6100000A0A8E81FEF165EC05B6D93C4F14C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.357297521999911, 50.599054070000101 ], [ -120.359636345999931, 50.599172792000019 ], [ -120.35918635099992, 50.602754817000104 ], [ -120.359181795999973, 50.602754585000113 ], [ -120.359103782999981, 50.603375516 ], [ -120.357316425999926, 50.60328479200011 ], [ -120.357310669999976, 50.601995992000113 ], [ -120.357304632999941, 50.600648658000054 ], [ -120.357297521999911, 50.599054070000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999980369989917", "sL_AssetLoss": "332.65393", "sL_BldgLoss": "332.6474", "sL_StrLoss": "332.6", "sL_NStrLoss": "0.0474", "sL_ContLoss": "0.00653", "geom_point": "0101000020E6100000B29F6228E9165EC02D59BA27343B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.355396107, 50.460594749000066 ], [ -120.361014273999928, 50.460880875000058 ], [ -120.360569309999974, 50.464435218000084 ], [ -120.360565766999983, 50.464463511000133 ], [ -120.360267264999962, 50.464448315000062 ], [ -120.354947156999955, 50.464177363000047 ], [ -120.355396107, 50.460594749000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999820697847652", "sL_AssetLoss": "761.8425", "sL_BldgLoss": "761.7059", "sL_StrLoss": "761", "sL_NStrLoss": "0.7059", "sL_ContLoss": "0.1366", "geom_point": "0101000020E6100000A4923290442F5EC0E028FDAD323E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.73733792799996, 50.488607738000084 ], [ -120.737556920999907, 50.486733822000083 ], [ -120.73373893499992, 50.486552545000102 ], [ -120.733843184999913, 50.485661060000027 ], [ -120.734158023999981, 50.482968549000105 ], [ -120.73978129699999, 50.483235496000063 ], [ -120.739562412999987, 50.485109424000044 ], [ -120.743380302999952, 50.485290502000083 ], [ -120.743194816999946, 50.486879519000141 ], [ -120.7431618599999, 50.48716185300011 ], [ -120.742961923999957, 50.488874521000128 ], [ -120.73733792799996, 50.488607738000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "0.999995425735532", "sL_AssetLoss": "658.02929", "sL_BldgLoss": "658.02628", "sL_StrLoss": "658", "sL_NStrLoss": "0.02628", "sL_ContLoss": "0.00301", "geom_point": "0101000020E610000029DDE910F0195EC0ED76E6B3F64A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.40501886199999, 50.582720295000065 ], [ -120.41065258399999, 50.583003867000095 ], [ -120.410206810999938, 50.58658616600011 ], [ -120.405813108999979, 50.586365035 ], [ -120.405536324999971, 50.588587270000055 ], [ -120.399901936999967, 50.588303441000022 ], [ -120.400348547999954, 50.584721190000053 ], [ -120.404742062999901, 50.584942536000035 ], [ -120.40501886199999, 50.582720295000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999960586108347", "sL_AssetLoss": "277.56711", "sL_BldgLoss": "277.55617", "sL_StrLoss": "277.5", "sL_NStrLoss": "0.05617", "sL_ContLoss": "0.01094", "geom_point": "0101000020E6100000DF4AD996BF205EC0D563B6BF8E3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.509471026, 50.486740692000097 ], [ -120.514267522999887, 50.486978146000133 ], [ -120.514028802999945, 50.488937383000071 ], [ -120.51386123099995, 50.490312595000042 ], [ -120.513830926999901, 50.490561276000044 ], [ -120.513017081999948, 50.490521001000062 ], [ -120.508208106999959, 50.490282895000057 ], [ -120.50823354399995, 50.490074372000059 ], [ -120.508289941999976, 50.489612015000027 ], [ -120.509086396999976, 50.489474298000104 ], [ -120.509439198999985, 50.489185192000058 ], [ -120.510049190999922, 50.488866103000106 ], [ -120.509875895999983, 50.488124095000018 ], [ -120.509894104999901, 50.487504611000105 ], [ -120.509669272999929, 50.487238293000118 ], [ -120.509602608999927, 50.486886503000093 ], [ -120.509471026, 50.486740692000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999845359735517", "sL_AssetLoss": "416.4504", "sL_BldgLoss": "416.386", "sL_StrLoss": "416", "sL_NStrLoss": "0.386", "sL_ContLoss": "0.0644", "geom_point": "0101000020E61000007251EB05F8335EC03D0EC515FE3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.811236739999984, 50.466853376000074 ], [ -120.815030345999929, 50.467030917000045 ], [ -120.814645704999961, 50.470373071000033 ], [ -120.814617825999932, 50.470615285000072 ], [ -120.808995684999914, 50.47035212400008 ], [ -120.80940865, 50.466767775000037 ], [ -120.811236739999984, 50.466853376000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.999976640076954", "sL_AssetLoss": "257.064203", "sL_BldgLoss": "257.058198", "sL_StrLoss": "257.000698", "sL_NStrLoss": "0.0575", "sL_ContLoss": "0.006005", "geom_point": "0101000020E6100000E3E6964E521C5EC045775257254D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.439927223999959, 50.600769950000064 ], [ -120.44556342499996, 50.601051749000071 ], [ -120.445120252, 50.604634110000063 ], [ -120.44190224, 50.604473251000087 ], [ -120.439483604999921, 50.604352289000047 ], [ -120.439887039999959, 50.601094468999989 ], [ -120.439927223999959, 50.600769950000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "0.99966518505501", "sL_AssetLoss": "960.5306", "sL_BldgLoss": "960.209", "sL_StrLoss": "958", "sL_NStrLoss": "2.209", "sL_ContLoss": "0.3216", "geom_point": "0101000020E610000060140C00F8285EC0C2DE82744A444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.636053933999904, 50.535897586000111 ], [ -120.636089709999908, 50.53559758900014 ], [ -120.635000717999972, 50.535544957000127 ], [ -120.635428115999957, 50.531961554000105 ], [ -120.63658320399999, 50.532017380000092 ], [ -120.63659606899995, 50.531909482000088 ], [ -120.637808836999966, 50.531968082000034 ], [ -120.637817916999921, 50.531891910000077 ], [ -120.641687376999954, 50.532078792000092 ], [ -120.641929182999903, 50.532090466000078 ], [ -120.641932831999952, 50.532017319000097 ], [ -120.641988781999956, 50.530895497000088 ], [ -120.642411703999969, 50.530904065000115 ], [ -120.642425146000022, 50.530634496000097 ], [ -120.64325886, 50.530651384000102 ], [ -120.644116830999977, 50.530668755000086 ], [ -120.644076533999922, 50.531477461000044 ], [ -120.646191179999931, 50.531520249000039 ], [ -120.646177760999947, 50.531789818000036 ], [ -120.646600692999954, 50.5317983710001 ], [ -120.64656043799999, 50.532607078000055 ], [ -120.643401534999896, 50.532543156000024 ], [ -120.643019957999925, 50.535747151000116 ], [ -120.64283375, 50.535738164000108 ], [ -120.642784071999969, 50.536155255000018 ], [ -120.641691204999972, 50.536102504000027 ], [ -120.641683224999937, 50.536169481000059 ], [ -120.639819758999963, 50.53607950800005 ], [ -120.639668356999948, 50.536072196000092 ], [ -120.639479493999943, 50.535808105000044 ], [ -120.638511190999964, 50.535131595000045 ], [ -120.637912881999966, 50.534382399000023 ], [ -120.637743181999895, 50.53439670300002 ], [ -120.637764009999927, 50.534559007000034 ], [ -120.637280308999934, 50.534900884000052 ], [ -120.637022103, 50.535255492000111 ], [ -120.636970887999951, 50.535941894000068 ], [ -120.636053933999904, 50.535897586000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331666", "BldgCostT": "4366666", "sL_LossRatio": "0.999852918832396", "sL_AssetLoss": "1132.028", "sL_BldgLoss": "1131.8615", "sL_StrLoss": "1131", "sL_NStrLoss": "0.8615", "sL_ContLoss": "0.1665", "geom_point": "0101000020E6100000EB9CB87F191E5EC03BD6FF183E3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.472000224999974, 50.489614008000032 ], [ -120.472054337999978, 50.489173306000048 ], [ -120.46964307899999, 50.489053045000063 ], [ -120.469743931000025, 50.488232011000036 ], [ -120.468758005999916, 50.488182822000049 ], [ -120.468837126999944, 50.487538780000136 ], [ -120.46789961799999, 50.487492 ], [ -120.467922946999963, 50.487302146000076 ], [ -120.467116104999917, 50.48726187900008 ], [ -120.467222965999966, 50.486392298000119 ], [ -120.465831621999897, 50.486322846000078 ], [ -120.465937949999955, 50.485457782000104 ], [ -120.464502535999927, 50.485386112000043 ], [ -120.464536126999946, 50.485112891000057 ], [ -120.464011638999963, 50.485086699000107 ], [ -120.464074951000015, 50.484571762000087 ], [ -120.463544857999977, 50.484545287000067 ], [ -120.463985387999955, 50.480962329000079 ], [ -120.465193583999934, 50.481022667000055 ], [ -120.465896093999945, 50.481346296000019 ], [ -120.465949408999975, 50.481670986000069 ], [ -120.465673989999956, 50.481799211000073 ], [ -120.465734014999924, 50.482007101000086 ], [ -120.46591320099995, 50.482101101000048 ], [ -120.466374796, 50.482156688000011 ], [ -120.46762989099993, 50.483461309000106 ], [ -120.468117211000035, 50.483597988000021 ], [ -120.468400311999943, 50.483837299000065 ], [ -120.468884982999967, 50.484001003000046 ], [ -120.469081105999962, 50.484545099000066 ], [ -120.469613807999977, 50.484854089000123 ], [ -120.470450412999952, 50.4852770910001 ], [ -120.471448879999983, 50.485604702000046 ], [ -120.471599907999916, 50.485930805000066 ], [ -120.472153224999914, 50.486393701000054 ], [ -120.473074493999945, 50.487654112000058 ], [ -120.473420684999951, 50.487761007000039 ], [ -120.473704914999956, 50.487730998000053 ], [ -120.474878093999962, 50.487406290000074 ], [ -120.475081283999941, 50.487275307000125 ], [ -120.475661104999944, 50.486442086000068 ], [ -120.47592470499994, 50.48620473700003 ], [ -120.478062202999979, 50.486311231000045 ], [ -120.477622738999969, 50.489894222000075 ], [ -120.472000224999974, 50.489614008000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.999917065831788", "sL_AssetLoss": "797.0177", "sL_BldgLoss": "796.9516", "sL_StrLoss": "796.6", "sL_NStrLoss": "0.3516", "sL_ContLoss": "0.0661", "geom_point": "0101000020E61000004564927025175EC0ECE86E8D3E424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.361707267999975, 50.514092424000047 ], [ -120.367332140999977, 50.514378211000036 ], [ -120.366883603999938, 50.517960636000076 ], [ -120.362022159, 50.517713654000019 ], [ -120.361613349999956, 50.520975452000073 ], [ -120.355987689999921, 50.520689378000057 ], [ -120.356437120999928, 50.517107009000028 ], [ -120.361298469999966, 50.517354235000056 ], [ -120.361707267999975, 50.514092424000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999807378948081", "sL_AssetLoss": "422.5914", "sL_BldgLoss": "422.51", "sL_StrLoss": "422", "sL_NStrLoss": "0.51", "sL_ContLoss": "0.0814", "geom_point": "0101000020E61000005FCC7D0FEA285EC043E3CB3CA03A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.636689433999933, 50.45608720300006 ], [ -120.642308776999982, 50.456359093000117 ], [ -120.642004652999944, 50.458916815000094 ], [ -120.64196483399999, 50.459251674000015 ], [ -120.641919296999944, 50.459634606000058 ], [ -120.641882641999985, 50.459942856000048 ], [ -120.638714138999887, 50.45978958500006 ], [ -120.636262855, 50.459670946000088 ], [ -120.636689433999933, 50.45608720300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "72", "sL_BldgLoss": "72", "sL_StrLoss": "72", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DE4F74FACD235EC02439CBF216524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.558192552999941, 50.642256792000055 ], [ -120.55825251199991, 50.640515985000079 ], [ -120.55968250399998, 50.640585915000081 ], [ -120.559671377999948, 50.640677672000102 ], [ -120.561056264999962, 50.640745379000037 ], [ -120.560931330999921, 50.641775913000096 ], [ -120.559866914999972, 50.641797696000069 ], [ -120.559393890999957, 50.642054290000033 ], [ -120.559197317, 50.642160897000068 ], [ -120.55883859799999, 50.642270587000063 ], [ -120.558585028999929, 50.64227297500009 ], [ -120.558192552999941, 50.642256792000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "0.999942664415833", "sL_AssetLoss": "992.4029", "sL_BldgLoss": "992.346", "sL_StrLoss": "992", "sL_NStrLoss": "0.346", "sL_ContLoss": "0.0569", "geom_point": "0101000020E610000043A5D787B1215EC099652EF4313E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.522865117999942, 50.487603591000052 ], [ -120.522872897999932, 50.487539637000054 ], [ -120.522509780999897, 50.487521697000034 ], [ -120.520242040999918, 50.487409628000066 ], [ -120.520334611999942, 50.486648999000032 ], [ -120.520678097999905, 50.483826458000053 ], [ -120.52138844299995, 50.483861568000037 ], [ -120.52143928699995, 50.483443675000046 ], [ -120.524223686999932, 50.483581253000111 ], [ -120.52429749099997, 50.482974341000109 ], [ -120.527923361999967, 50.483153390000027 ], [ -120.527990254999906, 50.48260292600002 ], [ -120.528998626999964, 50.482652700000138 ], [ -120.528820398999969, 50.482798996000099 ], [ -120.528254888999967, 50.483632209000099 ], [ -120.528033513999944, 50.483824400000103 ], [ -120.527603215999989, 50.483995296000082 ], [ -120.527357704999986, 50.484341397999984 ], [ -120.527055300999933, 50.484496713000127 ], [ -120.52699099199998, 50.48463909700012 ], [ -120.527076575999928, 50.484902596000083 ], [ -120.526981419999956, 50.485070598000071 ], [ -120.526478280999967, 50.485258602000037 ], [ -120.525184515000021, 50.485194489000101 ], [ -120.524644197, 50.485282812000058 ], [ -120.523721685999988, 50.485675909000093 ], [ -120.523133681999937, 50.486131703000126 ], [ -120.523273306999911, 50.486692788000084 ], [ -120.523861099999962, 50.487064497000063 ], [ -120.524340907999942, 50.487074504000091 ], [ -120.5249921059999, 50.486719897000064 ], [ -120.526410405999982, 50.486309701000053 ], [ -120.52664719299996, 50.486098904000116 ], [ -120.527087286999958, 50.486036199000054 ], [ -120.527235199999936, 50.485903785000097 ], [ -120.527593402999955, 50.485794110000128 ], [ -120.52780058499999, 50.485591903000042 ], [ -120.527946691999929, 50.485235798000076 ], [ -120.52846630099998, 50.484733101000046 ], [ -120.52892809799998, 50.484528006000119 ], [ -120.529268195, 50.484237506000092 ], [ -120.529841612999945, 50.484025204000027 ], [ -120.530279301999897, 50.484008207000038 ], [ -120.530852992999897, 50.484127794000067 ], [ -120.532068479999936, 50.484603498000077 ], [ -120.532839279999962, 50.48470029700006 ], [ -120.533392134999929, 50.484693373 ], [ -120.53322792499992, 50.486045911000083 ], [ -120.533177219999942, 50.486463534000094 ], [ -120.531933296999938, 50.486402185000081 ], [ -120.531864792999968, 50.486966264000088 ], [ -120.531480350999971, 50.486947300000026 ], [ -120.531442690999896, 50.487257373000077 ], [ -120.531409084999979, 50.487255714000099 ], [ -120.531354712999942, 50.487703374000027 ], [ -120.530864873999974, 50.487679210000074 ], [ -120.53083986799993, 50.487885067000036 ], [ -120.530816809999962, 50.488074885000039 ], [ -120.530258159999931, 50.48804732400005 ], [ -120.530239392999988, 50.488201798000077 ], [ -120.529563750999984, 50.488168462000033 ], [ -120.529529177999976, 50.488453014000093 ], [ -120.528984919, 50.488426158000017 ], [ -120.528956864999884, 50.48865702700008 ], [ -120.528396774, 50.488629386000135 ], [ -120.528385344999961, 50.488723441000083 ], [ -120.525232978999938, 50.488567813000053 ], [ -120.52276266399997, 50.488445795000054 ], [ -120.522865117999942, 50.487603591000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999871237055395", "sL_AssetLoss": "426.3649", "sL_BldgLoss": "426.31", "sL_StrLoss": "426", "sL_NStrLoss": "0.31", "sL_ContLoss": "0.0549", "geom_point": "0101000020E61000009D2DBD89E3215EC02F0ACC54523C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.526920263999926, 50.469332170000072 ], [ -120.532540587999989, 50.469609612000042 ], [ -120.532105611999896, 50.47319289100006 ], [ -120.526484843999953, 50.4729154280001 ], [ -120.526920263999926, 50.469332170000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999941385938277", "sL_AssetLoss": "358.44641", "sL_BldgLoss": "358.4254", "sL_StrLoss": "358.3", "sL_NStrLoss": "0.1254", "sL_ContLoss": "0.02101", "geom_point": "0101000020E61000003755D6BAFD1E5EC04052E15B1A424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.480907058999932, 50.518884954000121 ], [ -120.480921413999937, 50.518615417000056 ], [ -120.48087610499999, 50.518614437000039 ], [ -120.480075890999899, 50.518597109000098 ], [ -120.480162046999936, 50.516979892000045 ], [ -120.480584795, 50.516989046000106 ], [ -120.480599152999929, 50.516719509000026 ], [ -120.48144464399995, 50.516737813000049 ], [ -120.48145071, 50.516623868000075 ], [ -120.481626215999896, 50.516659595000078 ], [ -120.48203937599996, 50.516578393000039 ], [ -120.482243904999962, 50.516485264000025 ], [ -120.482727224999948, 50.516495720000073 ], [ -120.482770255999966, 50.51568711000003 ], [ -120.483192994999982, 50.515696254000062 ], [ -120.483307715999914, 50.513539958000102 ], [ -120.484143787999955, 50.51355804000012 ], [ -120.484998590999965, 50.513576519000054 ], [ -120.484898274999964, 50.515463281000095 ], [ -120.485321010999925, 50.515472418000122 ], [ -120.485306683999966, 50.515741955000053 ], [ -120.48574460499999, 50.515751418000043 ], [ -120.486152159999946, 50.515760224000076 ], [ -120.486212444999978, 50.514625809000044 ], [ -120.486223777999953, 50.514412535000112 ], [ -120.486300396999951, 50.514414191000128 ], [ -120.487914685999925, 50.51444905400006 ], [ -120.487900371999942, 50.514718592000051 ], [ -120.488745832999925, 50.514736842000097 ], [ -120.488702905999972, 50.515545457000037 ], [ -120.489125642999923, 50.515554580000106 ], [ -120.489068412999984, 50.516632733000066 ], [ -120.487800169999929, 50.516605358000085 ], [ -120.487843114999961, 50.51579674500011 ], [ -120.487420377000021, 50.515787616000075 ], [ -120.487391741999943, 50.516326692000156 ], [ -120.486546252999986, 50.516308432000109 ], [ -120.486531931999977, 50.516577969000068 ], [ -120.485686439999967, 50.516559702000066 ], [ -120.485672111999946, 50.516829239000025 ], [ -120.485298478999979, 50.516821166000028 ], [ -120.485249364999945, 50.516820104000047 ], [ -120.485242135999954, 50.516956082000071 ], [ -120.485206373999986, 50.517628717000072 ], [ -120.484963422999925, 50.517623465000113 ], [ -120.484360864999957, 50.517610439000073 ], [ -120.484346527999961, 50.51787997600006 ], [ -120.48392377199994, 50.517870836000043 ], [ -120.483866417999977, 50.518948983 ], [ -120.482615052999947, 50.518921919000086 ], [ -120.480907058999932, 50.518884954000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.9999362584439", "sL_AssetLoss": "202.06598", "sL_BldgLoss": "202.0531", "sL_StrLoss": "202", "sL_NStrLoss": "0.0531", "sL_ContLoss": "0.01288", "geom_point": "0101000020E610000036005D2CB3225EC09573733B453E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.540509521999979, 50.48777857100005 ], [ -120.54052352299999, 50.487509020000061 ], [ -120.540101017000012, 50.487500088000075 ], [ -120.540140485999984, 50.486740325 ], [ -120.540157028999886, 50.486421888000073 ], [ -120.539734533999948, 50.486412954000116 ], [ -120.539773644, 50.485660177000121 ], [ -120.539776545999985, 50.485604304000084 ], [ -120.541466494999938, 50.485640030000063 ], [ -120.54148048899998, 50.485370480000036 ], [ -120.544437890999916, 50.485432942000024 ], [ -120.544409936999926, 50.485972043000018 ], [ -120.54483242799995, 50.485980960000134 ], [ -120.544823295999919, 50.486157089000073 ], [ -120.54479050099998, 50.486789613000099 ], [ -120.544368001999914, 50.486780696000132 ], [ -120.544354024, 50.487050246000138 ], [ -120.543509020999949, 50.487032407000065 ], [ -120.543502857999954, 50.48715122400008 ], [ -120.543495037999932, 50.487301958000096 ], [ -120.543072536999887, 50.487293036000025 ], [ -120.543058549999955, 50.487562586000074 ], [ -120.54221354, 50.487544737000107 ], [ -120.542199546999939, 50.487814287000091 ], [ -120.540509521999979, 50.48777857100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999966772963778", "sL_AssetLoss": "340.0845", "sL_BldgLoss": "340.0732", "sL_StrLoss": "340", "sL_NStrLoss": "0.0732", "sL_ContLoss": "0.0113", "geom_point": "0101000020E6100000FA347A77DC165EC0EFB14F5BFE474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.354615805999956, 50.560515668000086 ], [ -120.360246430999936, 50.560801798000043 ], [ -120.359796866999943, 50.564383991000078 ], [ -120.354165796999936, 50.564097839000098 ], [ -120.354615805999956, 50.560515668000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.99998250066378", "sL_AssetLoss": "347.44175", "sL_BldgLoss": "347.43567", "sL_StrLoss": "347.4", "sL_NStrLoss": "0.03567", "sL_ContLoss": "0.00608", "geom_point": "0101000020E610000023DED7D4BB165EC0A65714C05E444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35262561799999, 50.532207256000049 ], [ -120.358252694999948, 50.532493496000079 ], [ -120.357803254999936, 50.536075804000049 ], [ -120.352175734999946, 50.53578954300005 ], [ -120.35262561799999, 50.532207256000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999988330166431", "sL_AssetLoss": "240.020561", "sL_BldgLoss": "240.01776", "sL_StrLoss": "240", "sL_NStrLoss": "0.01776", "sL_ContLoss": "0.002801", "geom_point": "0101000020E61000006D5FD593D8375EC0E3E8226C15604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.870762235999933, 50.748857569000094 ], [ -120.875604277999955, 50.749080068000069 ], [ -120.87519041899999, 50.749358296000018 ], [ -120.875127006999946, 50.74951070600013 ], [ -120.875238902999911, 50.749566204000125 ], [ -120.874944097999929, 50.749822586000107 ], [ -120.874710390999951, 50.75027690200006 ], [ -120.874737196999902, 50.750915000000177 ], [ -120.874629687999956, 50.751120089000096 ], [ -120.874113807999962, 50.751560086000083 ], [ -120.874090283999948, 50.75161019200003 ], [ -120.873988083999933, 50.751827906000109 ], [ -120.873885788999971, 50.752222405000062 ], [ -120.874009510999912, 50.752584088000056 ], [ -120.874053845999953, 50.752611070000029 ], [ -120.870351577999912, 50.752440927000094 ], [ -120.870478608999989, 50.751332531000067 ], [ -120.870762235999933, 50.748857569000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25532167", "BldgCostT": "17136667", "sL_LossRatio": "0.999996372869866", "sL_AssetLoss": "2676.496194", "sL_BldgLoss": "2676.486486", "sL_StrLoss": "2676.401446", "sL_NStrLoss": "0.08504", "sL_ContLoss": "0.009708", "geom_point": "0101000020E61000009B1ACB68A2275EC0A136E47E8B584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.62742741299999, 50.700494125000041 ], [ -120.62748050299993, 50.700051384000083 ], [ -120.623150298999946, 50.699842508000081 ], [ -120.62322197599994, 50.699245236000067 ], [ -120.621981701999971, 50.699185378000067 ], [ -120.622040651999924, 50.698694239000112 ], [ -120.620663189999959, 50.69862774300001 ], [ -120.62101334099998, 50.6957110600001 ], [ -120.616789358999981, 50.695507044000095 ], [ -120.61711581199998, 50.692789544000114 ], [ -120.616978857000021, 50.692782927000088 ], [ -120.616811508999959, 50.694175996000041 ], [ -120.611162558999936, 50.693902894000132 ], [ -120.611373658999952, 50.692147441000046 ], [ -120.60637151899999, 50.691905367000082 ], [ -120.606411877999946, 50.691570047000091 ], [ -120.601386774999966, 50.691326633000045 ], [ -120.601690718000015, 50.688803515000075 ], [ -120.597229505999934, 50.688587224000088 ], [ -120.597628662999952, 50.685276001000069 ], [ -120.597661373999969, 50.685004627000104 ], [ -120.603309121999956, 50.68527841500007 ], [ -120.603103902999933, 50.686982691 ], [ -120.603005293999971, 50.687801547000056 ], [ -120.603968287999962, 50.687848201000044 ], [ -120.604063302999961, 50.687059048000059 ], [ -120.604205340999954, 50.685879282000073 ], [ -120.607582723999954, 50.686042841000145 ], [ -120.607841400999945, 50.683892762000035 ], [ -120.613489070999961, 50.684166036000114 ], [ -120.613156517999954, 50.686933010000111 ], [ -120.615755789, 50.687058684000078 ], [ -120.615809300999928, 50.686613255000097 ], [ -120.621457363, 50.686886125000036 ], [ -120.621406123999975, 50.687313077000056 ], [ -120.623162632999978, 50.687397879000059 ], [ -120.623051747999909, 50.688322122000095 ], [ -120.62405551099998, 50.688370570000096 ], [ -120.624150286999921, 50.687580452000063 ], [ -120.629798518999934, 50.68785289900012 ], [ -120.62970718099993, 50.688615150000096 ], [ -120.631002030999923, 50.688677568000045 ], [ -120.630982328999934, 50.688842025000014 ], [ -120.634028141, 50.688988787000021 ], [ -120.633599137, 50.692571508000114 ], [ -120.627950287000019, 50.692299255000144 ], [ -120.627970001999955, 50.692134798000076 ], [ -120.626388141999911, 50.692058507000041 ], [ -120.626384799999983, 50.692086377000074 ], [ -120.622328663999951, 50.691890650000055 ], [ -120.622295196999957, 50.692169524000064 ], [ -120.622868469999929, 50.692197197000056 ], [ -120.622661554999965, 50.693921536000104 ], [ -120.622518466999963, 50.695113897000056 ], [ -120.623202574999951, 50.695146915000095 ], [ -120.623318861999934, 50.694177774000075 ], [ -120.623357956999911, 50.693851948000017 ], [ -120.628923565999983, 50.694120412000132 ], [ -120.62910448199996, 50.69261098000004 ], [ -120.634753377999957, 50.692883174000066 ], [ -120.634525148999941, 50.694789330000035 ], [ -120.636419251999939, 50.694880533000109 ], [ -120.635990382999978, 50.698463238000038 ], [ -120.635867902000015, 50.698457341000093 ], [ -120.633368288999947, 50.698336973000039 ], [ -120.633077291999939, 50.700766402000049 ], [ -120.62742741299999, 50.700494125000041 ] ], [ [ -120.612836597999944, 50.688691515000123 ], [ -120.612950555999959, 50.687743479000055 ], [ -120.60968094399999, 50.687585305000027 ], [ -120.609671955999957, 50.687660038000118 ], [ -120.609576100999973, 50.688456993000024 ], [ -120.6124509099999, 50.688596073000056 ], [ -120.61223986899995, 50.690351535000048 ], [ -120.61263474899998, 50.690370633000086 ], [ -120.612836597999944, 50.688691515000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "159.3", "sL_BldgLoss": "159.3", "sL_StrLoss": "159.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDF9942907295EC016D0B82E845C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.63820568499996, 50.72434028100011 ], [ -120.638547696, 50.721483766000127 ], [ -120.644200284999954, 50.72175547300008 ], [ -120.643956845999938, 50.723790872000059 ], [ -120.643803813999966, 50.723738207000082 ], [ -120.642927509999978, 50.723666983000051 ], [ -120.64250811899997, 50.723837899000088 ], [ -120.642068102999929, 50.723847891000034 ], [ -120.640232305999945, 50.724017298000042 ], [ -120.639494895999917, 50.724020189000051 ], [ -120.63820568499996, 50.72434028100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999966356204369", "sL_AssetLoss": "241.64931", "sL_BldgLoss": "241.64118", "sL_StrLoss": "241.6", "sL_NStrLoss": "0.04118", "sL_ContLoss": "0.00813", "geom_point": "0101000020E6100000D2FFB449AC325EC08A549C932C604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.791720934999944, 50.749557011000086 ], [ -120.794802612999902, 50.74970083200003 ], [ -120.794385875999922, 50.75328390500006 ], [ -120.79285639899993, 50.753212537000152 ], [ -120.788728415999941, 50.753019809000087 ], [ -120.789106350999973, 50.749773885000067 ], [ -120.78914560199999, 50.749436755 ], [ -120.791720934999944, 50.749557011000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999970586017755", "sL_AssetLoss": "244.44157", "sL_BldgLoss": "244.43438", "sL_StrLoss": "244.4", "sL_NStrLoss": "0.03438", "sL_ContLoss": "0.00719", "geom_point": "0101000020E6100000956DD89D8B325EC0C9D81A5B995E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.787152305999967, 50.737131381000026 ], [ -120.792807752999977, 50.737395562000074 ], [ -120.792390970999961, 50.740978680000111 ], [ -120.786735074999982, 50.740714478000058 ], [ -120.787152305999967, 50.737131381000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82768500", "BldgCostT": "58050000", "sL_LossRatio": "0.999987357232274", "sL_AssetLoss": "2010.082013", "sL_BldgLoss": "2010.0566", "sL_StrLoss": "2009.90115", "sL_NStrLoss": "0.15545", "sL_ContLoss": "0.025413", "geom_point": "0101000020E61000003957D62E54285EC0EA7CECEC335B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.635513076999956, 50.720195505000042 ], [ -120.635861649999953, 50.717285378000028 ], [ -120.633033492, 50.71714924400009 ], [ -120.633069966, 50.716844869000042 ], [ -120.633335432999928, 50.714629429000091 ], [ -120.631154967, 50.71452442300005 ], [ -120.630956662999949, 50.716178706000036 ], [ -120.63090052199999, 50.71664701600011 ], [ -120.625248657, 50.716374634000026 ], [ -120.625323246999955, 50.71575308600007 ], [ -120.625247901999984, 50.715749454000054 ], [ -120.625212741999974, 50.716042451000121 ], [ -120.62403086299993, 50.715985454000133 ], [ -120.624030486999956, 50.715988578000044 ], [ -120.618378748999987, 50.715715848000066 ], [ -120.618809187999943, 50.712133283000128 ], [ -120.6199909599999, 50.712190335000095 ], [ -120.61999133399999, 50.712187212000096 ], [ -120.620569878999959, 50.71221513600004 ], [ -120.620609614000017, 50.711884287000082 ], [ -120.62073726399997, 50.710821369000023 ], [ -120.620363154999922, 50.71080331100007 ], [ -120.620467221999917, 50.709936783000032 ], [ -120.62038291499999, 50.709932713000079 ], [ -120.620394351999934, 50.709837468000032 ], [ -120.616427287999983, 50.709645907000024 ], [ -120.616505840999949, 50.70899230000007 ], [ -120.616083520999936, 50.708971898000101 ], [ -120.616514077999966, 50.705389314000072 ], [ -120.622164506000033, 50.705662142000044 ], [ -120.622086042999939, 50.706315755000084 ], [ -120.622508339999968, 50.706336134000011 ], [ -120.622496905999952, 50.70643138 ], [ -120.626463713999954, 50.706622727000095 ], [ -120.626441114999949, 50.706811124000154 ], [ -120.627411294999902, 50.706857901000042 ], [ -120.627386236999925, 50.707066826000144 ], [ -120.630062434999985, 50.707195813000091 ], [ -120.630067994999976, 50.707149435000126 ], [ -120.635611399999917, 50.707416411000018 ], [ -120.63571872599999, 50.707421577000048 ], [ -120.635646874999964, 50.708021599000055 ], [ -120.637033622999951, 50.708088342000046 ], [ -120.636905069999912, 50.709162099000054 ], [ -120.63725498899997, 50.709178937000033 ], [ -120.637169698999969, 50.709891363000047 ], [ -120.637352033999917, 50.709900137000069 ], [ -120.637086859999926, 50.712115037000046 ], [ -120.637072926999934, 50.712231410000108 ], [ -120.637319061999932, 50.7122432520001 ], [ -120.641780443999906, 50.712457821000065 ], [ -120.641467655999989, 50.71507241500008 ], [ -120.641861019999965, 50.715091325000067 ], [ -120.641830416999966, 50.715347132000041 ], [ -120.645033030999983, 50.715501038000063 ], [ -120.644741851999939, 50.717936317000088 ], [ -120.644604652999973, 50.719083690000026 ], [ -120.641622968999982, 50.718940404000101 ], [ -120.641501768999944, 50.719953360000019 ], [ -120.641228562999956, 50.719940227000052 ], [ -120.641165484999988, 50.720467367000012 ], [ -120.635513076999956, 50.720195505000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "158.6", "sL_BldgLoss": "158.6", "sL_StrLoss": "158.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001392167878215EC09311610DE1544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.518542066999899, 50.664599267000014 ], [ -120.518556280999974, 50.664329731000073 ], [ -120.518132199999926, 50.664320695000036 ], [ -120.518156445999935, 50.663861 ], [ -120.518174850999912, 50.663512083000043 ], [ -120.518598923999932, 50.663521119000066 ], [ -120.518613137, 50.663251580000036 ], [ -120.519037209999908, 50.663260615000084 ], [ -120.519051419999982, 50.662991076000068 ], [ -120.519475490999923, 50.663000108000055 ], [ -120.519489698999962, 50.662730570000107 ], [ -120.519916846999962, 50.662739667000046 ], [ -120.52076190299999, 50.662757656000032 ], [ -120.520776104999953, 50.662488118000105 ], [ -120.521624235999923, 50.662506168000029 ], [ -120.521638433, 50.662236630000059 ], [ -120.522486558999901, 50.662254673000085 ], [ -120.522500749999935, 50.661985135000059 ], [ -120.522924812999946, 50.661994154000048 ], [ -120.522938999999894, 50.661724615000033 ], [ -120.523363059999966, 50.66173363300004 ], [ -120.523391433000015, 50.661194556000112 ], [ -120.526359821999947, 50.661257634000023 ], [ -120.526331484999986, 50.661796712000111 ], [ -120.526755545999947, 50.661805717000114 ], [ -120.52674138, 50.662075255000097 ], [ -120.527165442999944, 50.66208426000005 ], [ -120.527108784999982, 50.663162416 ], [ -120.526684711999962, 50.663153412000099 ], [ -120.526670543999927, 50.663422951000094 ], [ -120.52624646799994, 50.663413946000041 ], [ -120.526232297999925, 50.663683485000071 ], [ -120.525808220999977, 50.663674477000058 ], [ -120.525794046999962, 50.663944016000116 ], [ -120.524945886999959, 50.663925996000074 ], [ -120.524931707999912, 50.664195535000069 ], [ -120.524083543999964, 50.664177509000091 ], [ -120.52406936199999, 50.664447048000071 ], [ -120.522797108999924, 50.664419998000085 ], [ -120.522782917999947, 50.664689536000012 ], [ -120.518542066999899, 50.664599267000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.99998993685675", "sL_AssetLoss": "169.827653", "sL_BldgLoss": "169.825944", "sL_StrLoss": "169.800184", "sL_NStrLoss": "0.02576", "sL_ContLoss": "0.001709", "geom_point": "0101000020E6100000614D4CB437335EC0E18A7A779A604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.797654340999912, 50.752790562000044 ], [ -120.80331182499999, 50.753054207000055 ], [ -120.802895736999972, 50.75663729800003 ], [ -120.797237802999973, 50.756373633000088 ], [ -120.797654340999912, 50.752790562000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999996066845644", "sL_AssetLoss": "227.806976", "sL_BldgLoss": "227.80608", "sL_StrLoss": "227.8", "sL_NStrLoss": "0.00608", "sL_ContLoss": "0.000896", "geom_point": "0101000020E6100000D0AA221E012A5EC02861A6EDDF584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.653707336999943, 50.692406855000087 ], [ -120.659356355999989, 50.69267780400002 ], [ -120.65892933899994, 50.696260607000077 ], [ -120.653279870999953, 50.695989637000089 ], [ -120.653707336999943, 50.692406855000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "289.3", "sL_BldgLoss": "289.3", "sL_StrLoss": "289.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF4805A1BE2A5EC097333E40B55C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.666383442999972, 50.727187831000066 ], [ -120.666662182, 50.724847618000069 ], [ -120.663306697999971, 50.724687053000103 ], [ -120.663544476999974, 50.722691780000019 ], [ -120.663733636999922, 50.721104354000012 ], [ -120.669386329999895, 50.721374787000094 ], [ -120.669107755999946, 50.723715017000089 ], [ -120.672463185999931, 50.723875408000012 ], [ -120.67233029, 50.724992446000037 ], [ -120.672036917999947, 50.727458129000063 ], [ -120.666383442999972, 50.727187831000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999998691228042", "sL_AssetLoss": "369.5066946", "sL_BldgLoss": "369.506211", "sL_StrLoss": "369.5", "sL_NStrLoss": "0.006211", "sL_ContLoss": "0.0004836", "geom_point": "0101000020E6100000C8F77B1810255EC05C70ABC5CC584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.577342236999954, 50.690339565000038 ], [ -120.582990530999936, 50.690614380000042 ], [ -120.58255744, 50.694196897000062 ], [ -120.58123888199999, 50.694132769000149 ], [ -120.580872939999949, 50.697158629000043 ], [ -120.575223834999974, 50.696883709000097 ], [ -120.575657536999969, 50.693301232000096 ], [ -120.57697606399995, 50.693365426000064 ], [ -120.577342236999954, 50.690339565000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2987000", "BldgCostT": "2060000", "sL_LossRatio": "0.999986673061066", "sL_AssetLoss": "305.546534", "sL_BldgLoss": "305.542462", "sL_StrLoss": "305.500422", "sL_NStrLoss": "0.04204", "sL_ContLoss": "0.004072", "geom_point": "0101000020E61000008C374B2C9D2C5EC0E6DD3FB3775E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.701536229999974, 50.742557421000079 ], [ -120.701549433, 50.742287851000086 ], [ -120.700699749999941, 50.742271092000095 ], [ -120.70071295699999, 50.742001523000063 ], [ -120.698361220999985, 50.741955106000049 ], [ -120.698360193999974, 50.741963780000027 ], [ -120.69644403800001, 50.741872685000054 ], [ -120.696118009999935, 50.741639089000039 ], [ -120.695983985999987, 50.741448196000107 ], [ -120.69593532, 50.741033799000036 ], [ -120.695705695999933, 50.740794508000072 ], [ -120.694982389999922, 50.740502590000062 ], [ -120.69330090199999, 50.740109503000085 ], [ -120.693234708999981, 50.739126806000044 ], [ -120.693032260999956, 50.738932195000118 ], [ -120.693129482999936, 50.738112080000064 ], [ -120.693884735, 50.7381480150001 ], [ -120.693953980999964, 50.7375637990001 ], [ -120.695823481999952, 50.737652727000111 ], [ -120.6958531399999, 50.737048604000051 ], [ -120.695428346999947, 50.737040206000074 ], [ -120.695441583999951, 50.736770637000077 ], [ -120.695016792999951, 50.736762237000029 ], [ -120.69508298199996, 50.735414393000106 ], [ -120.695507759999941, 50.735422793000069 ], [ -120.695547462999983, 50.734614086000072 ], [ -120.695122693999949, 50.734605686000116 ], [ -120.695135929999964, 50.734336118000087 ], [ -120.693436856999966, 50.734302505000088 ], [ -120.693450104999954, 50.734032936000098 ], [ -120.692600574999958, 50.734016120000078 ], [ -120.692613824999938, 50.733746552000099 ], [ -120.692189064999951, 50.733738142000099 ], [ -120.692201081999883, 50.733493684000116 ], [ -120.692228273999959, 50.732940599000074 ], [ -120.692242073999964, 50.732659868000049 ], [ -120.692666826999968, 50.732668277000087 ], [ -120.692680076999963, 50.732398710000098 ], [ -120.692896993999952, 50.732403004000034 ], [ -120.693513384999932, 50.732415205000073 ], [ -120.69437907799994, 50.732432333000062 ], [ -120.694371243999967, 50.732591851000024 ], [ -120.694365837999911, 50.732701901000077 ], [ -120.694790590999915, 50.732710304000072 ], [ -120.69477735399991, 50.732979873000048 ], [ -120.69605162299996, 50.733005070000061 ], [ -120.696038391999963, 50.733274639000086 ], [ -120.697685763999971, 50.733307193 ], [ -120.697737428999972, 50.733308214000026 ], [ -120.697736822999929, 50.733320537000083 ], [ -120.697724207999968, 50.733577783000044 ], [ -120.698573732999975, 50.733594561000146 ], [ -120.698559775, 50.73387923700006 ], [ -120.698534081999966, 50.734403270000094 ], [ -120.698424926999934, 50.734401114000043 ], [ -120.698109311999971, 50.734394882000025 ], [ -120.698082872999976, 50.734934020000026 ], [ -120.698507647999946, 50.734942409000091 ], [ -120.698454775999892, 50.73602068600011 ], [ -120.696755639999964, 50.735987121000086 ], [ -120.696715953999956, 50.736795828000048 ], [ -120.697140744999956, 50.736804222000103 ], [ -120.697114293999903, 50.737343360000054 ], [ -120.697963884999979, 50.737360145000061 ], [ -120.697950664999979, 50.737629713000075 ], [ -120.69922506099999, 50.737654877000132 ], [ -120.699217255999955, 50.737814082000028 ], [ -120.69960892899999, 50.737832697000044 ], [ -120.699597164999901, 50.737932053000037 ], [ -120.700061450999939, 50.737941215000028 ], [ -120.700048240999948, 50.738210785 ], [ -120.700473045999942, 50.738219167000103 ], [ -120.700471124, 50.738258393000081 ], [ -120.700901910999946, 50.738278863000041 ], [ -120.700876095999931, 50.738496949000115 ], [ -120.70088464499996, 50.738497117000065 ], [ -120.700858233999924, 50.739036256000091 ], [ -120.701283045999958, 50.739044636000067 ], [ -120.701177413000011, 50.74120119400002 ], [ -120.701602244999961, 50.741209573000098 ], [ -120.701589042999956, 50.741479142000074 ], [ -120.70243871199996, 50.741495893000028 ], [ -120.702425513999941, 50.741765464000125 ], [ -120.702850351000038, 50.741773837000061 ], [ -120.702810763999963, 50.742582547000119 ], [ -120.701536229999974, 50.742557421000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "0.999987268940824", "sL_AssetLoss": "247.426389", "sL_BldgLoss": "247.423239", "sL_StrLoss": "247.400249", "sL_NStrLoss": "0.02299", "sL_ContLoss": "0.00315", "geom_point": "0101000020E6100000714730BCAF325EC03DC899C3415F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.790061994999974, 50.742029460000033 ], [ -120.795718078, 50.742293493000027 ], [ -120.795301482, 50.745876601000077 ], [ -120.793953721999983, 50.745813712000064 ], [ -120.79389025099999, 50.746359433000066 ], [ -120.78823366599994, 50.746095310000065 ], [ -120.788650827999902, 50.742512228000066 ], [ -120.789998481999987, 50.742575181000085 ], [ -120.790061994999974, 50.742029460000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "158.4", "sL_BldgLoss": "158.4", "sL_StrLoss": "158.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0837404F2325EC00394E94440614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.79811931799999, 50.758499768000021 ], [ -120.799866727000023, 50.758581212000124 ], [ -120.799807964999957, 50.759086869000065 ], [ -120.799698783999958, 50.76002636200009 ], [ -120.799453214999915, 50.760061348000129 ], [ -120.798395282999962, 50.760255195000077 ], [ -120.79746139099997, 50.760495356000106 ], [ -120.796541760999943, 50.7607839140001 ], [ -120.796271637999965, 50.760892072000104 ], [ -120.795620653999961, 50.761152712000097 ], [ -120.795248371999975, 50.761301789000058 ], [ -120.794527932, 50.761650950000046 ], [ -120.794353647999984, 50.761753144000117 ], [ -120.793992383999949, 50.761964984000059 ], [ -120.793124874999961, 50.761924511000103 ], [ -120.793541792999989, 50.758341478000041 ], [ -120.794202178999981, 50.758372289000071 ], [ -120.794208564999934, 50.758317395000077 ], [ -120.79811931799999, 50.758499768000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9902250", "BldgCostT": "5355000", "sL_LossRatio": "0.998233688789988", "sL_AssetLoss": "82.861955", "sL_BldgLoss": "82.715595", "sL_StrLoss": "81.681645", "sL_NStrLoss": "1.03395", "sL_ContLoss": "0.14636", "geom_point": "0101000020E6100000443A130580225EC003FF088164544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.5386639099999, 50.661396551000038 ], [ -120.538671649, 50.661248609000133 ], [ -120.537959581999985, 50.661233560000049 ], [ -120.537399468999965, 50.66122171900011 ], [ -120.537405558000032, 50.661105347000074 ], [ -120.537413575, 50.660952178000045 ], [ -120.536676310999951, 50.66093658700003 ], [ -120.536141402999988, 50.660925274000043 ], [ -120.53614537599999, 50.660849410000012 ], [ -120.536155515999909, 50.660655733000119 ], [ -120.535731461999944, 50.660646762000063 ], [ -120.535787916999979, 50.65956859900011 ], [ -120.536211960999978, 50.659577569000099 ], [ -120.53622607199992, 50.659308028000027 ], [ -120.536650113999983, 50.659316997000104 ], [ -120.53666422299996, 50.659047454000124 ], [ -120.537088261999941, 50.659056422000049 ], [ -120.53710236699996, 50.658786880000022 ], [ -120.537526405999984, 50.658795846000075 ], [ -120.537554612999941, 50.65825676300004 ], [ -120.537978645999914, 50.658265726000067 ], [ -120.538063241999964, 50.656648477 ], [ -120.53933530099998, 50.656675358000058 ], [ -120.539321207999976, 50.656944900000063 ], [ -120.539745230999941, 50.656953858000101 ], [ -120.53973114199999, 50.657223399000074 ], [ -120.540579188999985, 50.65724131000006 ], [ -120.540565105999946, 50.65751085100004 ], [ -120.540989131999964, 50.657519804000081 ], [ -120.540975048999954, 50.657789346000072 ], [ -120.541399079000016, 50.657798297000021 ], [ -120.541384998999888, 50.658067840000101 ], [ -120.541809030999957, 50.658076790000031 ], [ -120.541696398999974, 50.660233128000094 ], [ -120.541272346999961, 50.66022417800005 ], [ -120.541244180999968, 50.660763262000096 ], [ -120.540820122999961, 50.660754309000055 ], [ -120.540806038999932, 50.661023852000028 ], [ -120.539957919999964, 50.661005942000031 ], [ -120.539929738999902, 50.661545026000063 ], [ -120.539242829999978, 50.661530517000102 ], [ -120.538657550999943, 50.661518149000102 ], [ -120.5386639099999, 50.661396551000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "220.4", "sL_BldgLoss": "220.4", "sL_StrLoss": "220.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000774BB4DC80265EC08B7C4DC5FC564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.599007440999927, 50.677660741000111 ], [ -120.604654274999973, 50.677934464000053 ], [ -120.60422303299994, 50.681517119000041 ], [ -120.598575752999949, 50.681243376000083 ], [ -120.599007440999927, 50.677660741000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "0.999924925027786", "sL_AssetLoss": "284.64879", "sL_BldgLoss": "284.62742", "sL_StrLoss": "284.40542", "sL_NStrLoss": "0.222", "sL_ContLoss": "0.02137", "geom_point": "0101000020E610000078A0EB4E39245EC02D95B7239C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.56517187299994, 50.671645485000134 ], [ -120.565244877999987, 50.671043254000054 ], [ -120.563681762999963, 50.670966945 ], [ -120.563790782999931, 50.670067847000027 ], [ -120.562049268999914, 50.669982803000046 ], [ -120.562125527, 50.669354081000016 ], [ -120.560796669999945, 50.669289170000084 ], [ -120.561173611999948, 50.666181860000023 ], [ -120.561231256999946, 50.665706632000131 ], [ -120.563802870999908, 50.665832233000074 ], [ -120.565300838999946, 50.665905369000022 ], [ -120.566876356999984, 50.665982270000029 ], [ -120.566808212999916, 50.666544645000094 ], [ -120.566800170999898, 50.666610998000081 ], [ -120.566971350999921, 50.666619352000083 ], [ -120.568128957999974, 50.666675837000128 ], [ -120.56807459699999, 50.667124555000136 ], [ -120.568020032999954, 50.667574944000073 ], [ -120.569181980999957, 50.667631629000077 ], [ -120.569761464999928, 50.667659895000043 ], [ -120.56974003199997, 50.667836861000097 ], [ -120.569688525999979, 50.668262131000056 ], [ -120.571251554999918, 50.668338356000078 ], [ -120.570852797, 50.671631449000095 ], [ -120.570817741999932, 50.671920922000062 ], [ -120.56517187299994, 50.671645485000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999986167716073", "sL_AssetLoss": "243.63294", "sL_BldgLoss": "243.62957", "sL_StrLoss": "243.6", "sL_NStrLoss": "0.02957", "sL_ContLoss": "0.00337", "geom_point": "0101000020E6100000CBAC312AE1315EC0112C9A106B5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.780485418999916, 50.720080234000136 ], [ -120.782576367, 50.720178106000077 ], [ -120.782183068, 50.723554074000049 ], [ -120.782158927999987, 50.723761258000089 ], [ -120.781856628999961, 50.723747111000087 ], [ -120.781813032999978, 50.724121267000065 ], [ -120.77615932399999, 50.723856525000059 ], [ -120.776577242999977, 50.720273395000049 ], [ -120.776879516999898, 50.720287557000056 ], [ -120.776923149999931, 50.719913402000053 ], [ -120.780485418999916, 50.720080234000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999998233224095", "sL_AssetLoss": "224.703087", "sL_BldgLoss": "224.70269", "sL_StrLoss": "224.7", "sL_NStrLoss": "0.00269", "sL_ContLoss": "0.000397", "geom_point": "0101000020E61000002BFFB5176C325EC0B711CB3D8F5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.78624116099995, 50.729038173000092 ], [ -120.790187882999987, 50.729222632000102 ], [ -120.790838879999939, 50.729928858000065 ], [ -120.790500214999938, 50.732839843000107 ], [ -120.78830282, 50.732737174000128 ], [ -120.784845355999934, 50.732575543000046 ], [ -120.785262662, 50.728992418000075 ], [ -120.78624116099995, 50.729038173000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999979883077573", "sL_AssetLoss": "83.51178", "sL_BldgLoss": "83.5101", "sL_StrLoss": "83.5", "sL_NStrLoss": "0.0101", "sL_ContLoss": "0.00168", "geom_point": "0101000020E6100000619390A3D4255EC0178B95873B584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.590231228000022, 50.690659564000036 ], [ -120.590300311, 50.689311812000049 ], [ -120.589875982999956, 50.68930303500013 ], [ -120.589945070999974, 50.687955282000068 ], [ -120.591218023999915, 50.687981607000083 ], [ -120.591204212999955, 50.688251158000099 ], [ -120.59162853399999, 50.68825993100009 ], [ -120.59161472699995, 50.688529482000114 ], [ -120.592039048999965, 50.68853825300009 ], [ -120.592025242999966, 50.688807803000074 ], [ -120.592449568999882, 50.68881657300004 ], [ -120.59238054799998, 50.690164329000012 ], [ -120.591956211999985, 50.6901555580001 ], [ -120.591942403999937, 50.690425109000103 ], [ -120.591518063999942, 50.690416337000038 ], [ -120.591504253999929, 50.69068588800004 ], [ -120.590231228000022, 50.690659564000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99999003759925", "sL_AssetLoss": "80.000797", "sL_BldgLoss": "80", "sL_StrLoss": "80", "sL_NStrLoss": "0", "sL_ContLoss": "0.000797", "geom_point": "0101000020E6100000D3BAB2B00C2D5EC0162B3085835E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.703341153999972, 50.74043436000003 ], [ -120.70335434499998, 50.740164790000044 ], [ -120.702929523999941, 50.740156418000055 ], [ -120.702942716999971, 50.739886847000058 ], [ -120.702517895999989, 50.739878474000122 ], [ -120.702583877, 50.738530625000116 ], [ -120.702159068999933, 50.73852225000013 ], [ -120.702211858999974, 50.737443970000051 ], [ -120.703061458000022, 50.737460716000122 ], [ -120.703127417999923, 50.736112865000081 ], [ -120.704606479999967, 50.73614200400003 ], [ -120.705251353999984, 50.736154702000128 ], [ -120.705243967999976, 50.736305771000055 ], [ -120.705211813999966, 50.736963415000055 ], [ -120.704787018999966, 50.736955050000056 ], [ -120.704747472999898, 50.737763762000057 ], [ -120.704322668999922, 50.737755395000079 ], [ -120.704296298999964, 50.738294536000097 ], [ -120.705145912999939, 50.738311268000075 ], [ -120.70513273100002, 50.738580838000154 ], [ -120.705557540999976, 50.73858920100006 ], [ -120.705491645, 50.739937054000102 ], [ -120.705066822999953, 50.739928691000053 ], [ -120.705040457999957, 50.740467831000053 ], [ -120.703341153999972, 50.74043436000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999996741230283", "sL_AssetLoss": "237.206083", "sL_BldgLoss": "237.20531", "sL_StrLoss": "237.2", "sL_NStrLoss": "0.00531", "sL_ContLoss": "0.000773", "geom_point": "0101000020E6100000D116BE5B2C295EC053BDEB22BB584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.640722159999953, 50.69128374800006 ], [ -120.646370959999928, 50.69155535500002 ], [ -120.64594291599991, 50.69513811300002 ], [ -120.640293669, 50.694866485000055 ], [ -120.640722159999953, 50.69128374800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.999998089841726", "sL_AssetLoss": "75.90994", "sL_BldgLoss": "75.909795", "sL_StrLoss": "75.900202", "sL_NStrLoss": "0.009593", "sL_ContLoss": "0.000145", "geom_point": "0101000020E61000009A34DB4FA5235EC0F3627A253D524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.554979562999961, 50.644052061000068 ], [ -120.554990699999905, 50.643960306000054 ], [ -120.553605723999922, 50.643892523000062 ], [ -120.554017409999972, 50.640501261000068 ], [ -120.554040637999933, 50.640309904000048 ], [ -120.55825251199991, 50.640515985000079 ], [ -120.558192552999941, 50.642256792000055 ], [ -120.558585028999929, 50.64227297500009 ], [ -120.55883859799999, 50.642270587000063 ], [ -120.559197317, 50.642160897000068 ], [ -120.559393890999957, 50.642054290000033 ], [ -120.559866914999972, 50.641797696000069 ], [ -120.560931330999921, 50.641775913000096 ], [ -120.560621906, 50.644328023000106 ], [ -120.559273736, 50.644262112000092 ], [ -120.558582180999977, 50.644228295000083 ], [ -120.554979562999961, 50.644052061000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19150834", "BldgCostT": "11733334", "sL_LossRatio": "0.999970518795109", "sL_AssetLoss": "1134.451598", "sL_BldgLoss": "1134.418153", "sL_StrLoss": "1134.018423", "sL_NStrLoss": "0.39973", "sL_ContLoss": "0.033445", "geom_point": "0101000020E610000052710C9624255EC0DEF1817838574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.583591232999964, 50.689619751000087 ], [ -120.583658977999946, 50.689059241000081 ], [ -120.582369230999987, 50.688996520000124 ], [ -120.58266556299999, 50.686545129000095 ], [ -120.582692093999981, 50.686325631000088 ], [ -120.582302646999963, 50.686306690000052 ], [ -120.577230939999978, 50.686059885000063 ], [ -120.577325473999935, 50.685278577000098 ], [ -120.575071721999919, 50.685168828000016 ], [ -120.575312642999933, 50.683178339000023 ], [ -120.574230127999968, 50.683125608000054 ], [ -120.574513725999935, 50.680782774000107 ], [ -120.574438694999941, 50.6807791190001 ], [ -120.574780559999937, 50.677954636000095 ], [ -120.573176744999941, 50.677876491000099 ], [ -120.573368374999959, 50.676293561000094 ], [ -120.572283124, 50.676240669000023 ], [ -120.572377349999954, 50.675462431000085 ], [ -120.571501749999968, 50.675419750000081 ], [ -120.571891147999921, 50.67220386300005 ], [ -120.571935542999967, 50.67183719600007 ], [ -120.577581478999889, 50.672112290000037 ], [ -120.577487347999977, 50.67289053500005 ], [ -120.578362904999963, 50.672933171000068 ], [ -120.57817146599993, 50.67451611500006 ], [ -120.57925668199999, 50.674568950000037 ], [ -120.578915124999966, 50.677393458000012 ], [ -120.580518932999979, 50.677471521000072 ], [ -120.580235668999975, 50.679814379000113 ], [ -120.580310699, 50.679818031000089 ], [ -120.58014926, 50.681153186000131 ], [ -120.580070015999951, 50.681808538000084 ], [ -120.580794813999887, 50.681843808000039 ], [ -120.580843767999966, 50.68143890200011 ], [ -120.581015477000022, 50.680018627000031 ], [ -120.586662496999978, 50.680293259000081 ], [ -120.586651688999936, 50.68038275700011 ], [ -120.588691834999977, 50.680481904000033 ], [ -120.588349767999958, 50.683315191000098 ], [ -120.588259296999965, 50.6840644870001 ], [ -120.586861180999932, 50.683996545000106 ], [ -120.58667541399997, 50.685534620000041 ], [ -120.58299701699994, 50.685355783000048 ], [ -120.58298888599991, 50.685423056000026 ], [ -120.588449995999909, 50.68568852100006 ], [ -120.588382316999954, 50.686249037000017 ], [ -120.589671993999957, 50.686311689000043 ], [ -120.589239475999975, 50.689894251000069 ], [ -120.585258814999975, 50.689700823000109 ], [ -120.583591232999964, 50.689619751000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8820833", "BldgCostT": "6083333", "sL_LossRatio": "0.999986311059267", "sL_AssetLoss": "1187.08966", "sL_BldgLoss": "1187.07341", "sL_StrLoss": "1187", "sL_NStrLoss": "0.07341", "sL_ContLoss": "0.01625", "geom_point": "0101000020E61000001E87031928265EC07F582547F0594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.588628939999978, 50.705550058 ], [ -120.588874389999958, 50.703518026000033 ], [ -120.584093125999942, 50.703285738000055 ], [ -120.584526182999952, 50.699703254000035 ], [ -120.584746095999947, 50.699713942000123 ], [ -120.584822407999965, 50.699082559000068 ], [ -120.59047184799995, 50.699356993000038 ], [ -120.590216257999955, 50.701473803000056 ], [ -120.593450249999947, 50.701630770000094 ], [ -120.593487500999956, 50.701322088000019 ], [ -120.593624864, 50.700183767000048 ], [ -120.599274497999957, 50.700457755000095 ], [ -120.599241177999971, 50.700734173000065 ], [ -120.599900690999945, 50.700766138000077 ], [ -120.599926173, 50.700554715000116 ], [ -120.605575891999976, 50.700828384000047 ], [ -120.605568125999952, 50.700892880000083 ], [ -120.60642086699994, 50.70093416100007 ], [ -120.606328849, 50.701698502000092 ], [ -120.608665844999962, 50.70181160200007 ], [ -120.608234692999986, 50.705394171000073 ], [ -120.607034633999916, 50.7053360990001 ], [ -120.606999252999941, 50.705629999000102 ], [ -120.60628340699999, 50.705595353000071 ], [ -120.601348921999914, 50.705356404000064 ], [ -120.601432002, 50.704666994000021 ], [ -120.599268300999967, 50.70456214900004 ], [ -120.599295049999938, 50.70434025400003 ], [ -120.598025472999964, 50.704278715000058 ], [ -120.598058802999972, 50.704002300000077 ], [ -120.595160998999958, 50.703861782000061 ], [ -120.594986418999966, 50.705308781000085 ], [ -120.594345178999944, 50.705277676000023 ], [ -120.594279219, 50.705824296000095 ], [ -120.588628939999978, 50.705550058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.999990218275276", "sL_AssetLoss": "620.033805", "sL_BldgLoss": "620.02774", "sL_StrLoss": "620", "sL_NStrLoss": "0.02774", "sL_ContLoss": "0.006065", "geom_point": "0101000020E610000056325B0D24205EC0780BE20BAC544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.501766425999975, 50.664470670000085 ], [ -120.50180217399999, 50.664179137000104 ], [ -120.498927049999963, 50.664037093000033 ], [ -120.499047243999925, 50.663057394000063 ], [ -120.497304362999898, 50.662971251000016 ], [ -120.497328361999919, 50.662775704000055 ], [ -120.495394711999936, 50.662680100000024 ], [ -120.495834448999929, 50.659097790000061 ], [ -120.500236194999957, 50.659315373 ], [ -120.500244752999947, 50.659245593000058 ], [ -120.501692775999985, 50.659317132000048 ], [ -120.501751310999921, 50.6588397270001 ], [ -120.501765464, 50.658840426 ], [ -120.501823333999937, 50.658368428000124 ], [ -120.507467145999925, 50.658647076000143 ], [ -120.50743338299999, 50.658922737000076 ], [ -120.507162643999891, 50.661133062000069 ], [ -120.507849802999885, 50.661166970000075 ], [ -120.507435390999959, 50.664550237000071 ], [ -120.507411003999948, 50.664749318000098 ], [ -120.501766425999975, 50.664470670000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7322583", "BldgCostT": "4578333", "sL_LossRatio": "0.999957474653788", "sL_AssetLoss": "547.20307", "sL_BldgLoss": "547.1798", "sL_StrLoss": "547.002", "sL_NStrLoss": "0.1778", "sL_ContLoss": "0.02327", "geom_point": "0101000020E6100000B764D14B77255EC03148978A4F594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.57764875099997, 50.700897867000023 ], [ -120.578082298999959, 50.69731539800005 ], [ -120.582495909999977, 50.697530100000087 ], [ -120.58282043899996, 50.694845903000051 ], [ -120.588363276999971, 50.695115287000121 ], [ -120.588469334999942, 50.695120439000043 ], [ -120.588457399, 50.695219269000077 ], [ -120.593337478999956, 50.695456207000078 ], [ -120.592905165999952, 50.699038744000084 ], [ -120.590758399999942, 50.698934541 ], [ -120.587255749999926, 50.698764433000044 ], [ -120.587267689999976, 50.698665604000077 ], [ -120.583622883999979, 50.698488475000055 ], [ -120.583298375999931, 50.701172663000079 ], [ -120.57764875099997, 50.700897867000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999975490130064", "sL_AssetLoss": "334.1511", "sL_BldgLoss": "334.14291", "sL_StrLoss": "334.1", "sL_NStrLoss": "0.04291", "sL_ContLoss": "0.00819", "geom_point": "0101000020E6100000D836BD729A235EC0937706F4DF544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.552610057999956, 50.665023755000099 ], [ -120.552636701999987, 50.664804435000043 ], [ -120.551946050999931, 50.664770638000078 ], [ -120.552203786999954, 50.6626492890001 ], [ -120.552381299999951, 50.661188115000108 ], [ -120.554161608999905, 50.661275226000036 ], [ -120.554208237999973, 50.660891257000046 ], [ -120.559852690999932, 50.661167252000027 ], [ -120.55983654799995, 50.661300308000143 ], [ -120.560696470999986, 50.661342329 ], [ -120.560261882999939, 50.664924884000079 ], [ -120.558312086999948, 50.664829594000068 ], [ -120.558306291999912, 50.664877345000036 ], [ -120.558255017999954, 50.665299830000052 ], [ -120.552610057999956, 50.665023755000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9746417", "BldgCostT": "6721667", "sL_LossRatio": "0.999989764575268", "sL_AssetLoss": "1040.797063", "sL_BldgLoss": "1040.78641", "sL_StrLoss": "1040.70133", "sL_NStrLoss": "0.08508", "sL_ContLoss": "0.010653", "geom_point": "0101000020E61000007F910A42FD205EC017F5EE34BE534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.520098425999976, 50.659235609000085 ], [ -120.520126831999917, 50.658696534000107 ], [ -120.519702799999934, 50.658687505000096 ], [ -120.51974541499996, 50.657878891000024 ], [ -120.519321391999981, 50.657869862000069 ], [ -120.51934980399993, 50.657330785000049 ], [ -120.512989546999933, 50.65719515200005 ], [ -120.512975303999951, 50.65746468800004 ], [ -120.51127923199999, 50.657428460000084 ], [ -120.511264979999979, 50.657697997000092 ], [ -120.510416940999932, 50.65767987300012 ], [ -120.510402682999938, 50.657949409000111 ], [ -120.509554639999948, 50.657931280000113 ], [ -120.509540376999951, 50.65820081500005 ], [ -120.509116353999929, 50.658191748000057 ], [ -120.509102088999953, 50.658461284000047 ], [ -120.50798451199995, 50.658437378 ], [ -120.5078300119999, 50.658434072000034 ], [ -120.507858558999928, 50.65789500200011 ], [ -120.50743453699998, 50.657885928000077 ], [ -120.50747736199996, 50.657077323000081 ], [ -120.50705334899996, 50.657068247000012 ], [ -120.507081902999957, 50.656529177000074 ], [ -120.506657894999975, 50.656520101000126 ], [ -120.506672173999959, 50.656250565000079 ], [ -120.506248167999956, 50.656241488000077 ], [ -120.506262447999944, 50.655971952000101 ], [ -120.505838446999974, 50.65596287400006 ], [ -120.505852730999962, 50.655693338000034 ], [ -120.505428729999949, 50.655684258000086 ], [ -120.50544301399999, 50.655414723000085 ], [ -120.505019018999931, 50.655405642000076 ], [ -120.505033305999959, 50.655136106000057 ], [ -120.504609311999914, 50.655127023000027 ], [ -120.50462360100002, 50.654857488000111 ], [ -120.504277888999965, 50.654850081000127 ], [ -120.504199608999983, 50.654848403000102 ], [ -120.504213900999929, 50.654578868000051 ], [ -120.503789910999927, 50.654569783000035 ], [ -120.503804205999941, 50.654300247000016 ], [ -120.503380219999926, 50.654291161000096 ], [ -120.503394515999929, 50.654021625000105 ], [ -120.502546548999973, 50.654003445000086 ], [ -120.50258944899997, 50.653194842000076 ], [ -120.50343740299995, 50.653213021000042 ], [ -120.503451698999982, 50.652943486000034 ], [ -120.504299646999939, 50.65296165900007 ], [ -120.504313938999957, 50.652692124000055 ], [ -120.504737909999932, 50.652701209000057 ], [ -120.504752196999959, 50.652431673000066 ], [ -120.505176168999967, 50.65244075500005 ], [ -120.505190451999951, 50.65217122100011 ], [ -120.50603838899994, 50.652189380000031 ], [ -120.506052668999928, 50.651919844000084 ], [ -120.506476634999956, 50.651928923000057 ], [ -120.506490913, 50.651659387000038 ], [ -120.507338838999914, 50.651677537000054 ], [ -120.50735311299999, 50.651408002000032 ], [ -120.50820103599996, 50.651426146000063 ], [ -120.508215303, 50.651156610000108 ], [ -120.509487182999919, 50.651183815000074 ], [ -120.509501442999962, 50.650914278000101 ], [ -120.51162123499995, 50.650959587000067 ], [ -120.51163548299999, 50.650690051000048 ], [ -120.513755268999944, 50.650735321000134 ], [ -120.51376950300002, 50.650465785000087 ], [ -120.51504137099991, 50.650492927000116 ], [ -120.515055597999947, 50.650223391000083 ], [ -120.515903504999969, 50.650241478000041 ], [ -120.515917728999952, 50.649971941000061 ], [ -120.51803748899998, 50.650017133000112 ], [ -120.518051698999955, 50.649747595000072 ], [ -120.52101935599994, 50.649810798000047 ], [ -120.52100516199999, 50.650080337000091 ], [ -120.52142911599995, 50.650089359000056 ], [ -120.521414925999949, 50.650358898000135 ], [ -120.521838881999926, 50.650367920000079 ], [ -120.521824693999974, 50.650637458000048 ], [ -120.522248652999934, 50.650646479000031 ], [ -120.522220279999942, 50.651185556000016 ], [ -120.522644244, 50.651194575000055 ], [ -120.52263006, 50.651464113000024 ], [ -120.52305402699993, 50.651473130000056 ], [ -120.523039844999943, 50.651742669000022 ], [ -120.523463814999957, 50.651751686000061 ], [ -120.52343545399999, 50.652290763000053 ], [ -120.523859428999955, 50.652299778000064 ], [ -120.523845249999965, 50.652569317000086 ], [ -120.524269228999927, 50.652578329000093 ], [ -120.524255051999944, 50.652847868 ], [ -120.524679032, 50.652856880000044 ], [ -120.524664858999969, 50.653126419000017 ], [ -120.525088841999917, 50.653135429000045 ], [ -120.525060496999956, 50.653674508000073 ], [ -120.525484484999978, 50.653683517000026 ], [ -120.525470314999964, 50.653953055000052 ], [ -120.525894304999937, 50.653962063000051 ], [ -120.52588013899999, 50.654231602000038 ], [ -120.526304132999911, 50.654240607000098 ], [ -120.526289966999954, 50.654510147000032 ], [ -120.526713962999906, 50.654519152000077 ], [ -120.526685635999982, 50.655058230000108 ], [ -120.527109636999938, 50.655067233000118 ], [ -120.527095475999957, 50.655336772000062 ], [ -120.527519479999967, 50.655345774000068 ], [ -120.527477001999969, 50.656154393000058 ], [ -120.524932940999946, 50.656100359000035 ], [ -120.524918766, 50.656369898000086 ], [ -120.52449475600001, 50.656360887000105 ], [ -120.524480577999924, 50.656630426000056 ], [ -120.524056563999963, 50.656621414000064 ], [ -120.52402820499999, 50.657160491000035 ], [ -120.523604186999961, 50.657151477000099 ], [ -120.523561638999965, 50.657960092000032 ], [ -120.523137614999968, 50.657951076000074 ], [ -120.523109242999965, 50.658490154000042 ], [ -120.522685211999885, 50.658481137000066 ], [ -120.522656836999914, 50.659020213000062 ], [ -120.521910949999935, 50.65900434600011 ], [ -120.521384730999898, 50.658993150000121 ], [ -120.521370535999978, 50.659262687000059 ], [ -120.520098425999976, 50.659235609000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.999958680648206", "sL_AssetLoss": "80.34976", "sL_BldgLoss": "80.34644", "sL_StrLoss": "80.30108", "sL_NStrLoss": "0.04536", "sL_ContLoss": "0.00332", "geom_point": "0101000020E61000008558E474A5335EC0E4194D91F0604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.807600532999942, 50.758395521000118 ], [ -120.807618921999961, 50.758237043000108 ], [ -120.8070183399999, 50.758209095000041 ], [ -120.807037582999925, 50.758043280000059 ], [ -120.806434452999923, 50.758015210000039 ], [ -120.80624462499999, 50.758006376000068 ], [ -120.806298135999924, 50.757545326000098 ], [ -120.806298770999931, 50.757539849000068 ], [ -120.80629651699995, 50.757539744000063 ], [ -120.805708238999898, 50.757512362000064 ], [ -120.806124110999917, 50.753929263000025 ], [ -120.807225445999933, 50.75398052500006 ], [ -120.807712125999942, 50.754003173000079 ], [ -120.80785389, 50.754147121000173 ], [ -120.80797383, 50.754311283000078 ], [ -120.808119980999919, 50.754520896000045 ], [ -120.80832452599999, 50.754695637000061 ], [ -120.808433622999956, 50.754787623000013 ], [ -120.808556916999947, 50.754879895000073 ], [ -120.808776035999969, 50.75504588200009 ], [ -120.80895094100002, 50.755247062000073 ], [ -120.808991342999917, 50.755292799000124 ], [ -120.809094597999902, 50.755510604000051 ], [ -120.809121275999956, 50.755547074000056 ], [ -120.809296202999974, 50.755748219000075 ], [ -120.809504480999962, 50.755842088000122 ], [ -120.809781139000023, 50.755991197000071 ], [ -120.810060675999949, 50.756077395000112 ], [ -120.810452305999945, 50.756192691000074 ], [ -120.81076145599999, 50.756252458000056 ], [ -120.811071020999961, 50.756303233000025 ], [ -120.811423076999972, 50.756354806000068 ], [ -120.811678115999896, 50.756359593000106 ], [ -120.811959759999979, 50.756400872000015 ], [ -120.812241424999968, 50.756442116000052 ], [ -120.812522658999981, 50.756492386000041 ], [ -120.812832638999936, 50.756534163000083 ], [ -120.812901102999902, 50.756535175000074 ], [ -120.812871490999981, 50.756790652000049 ], [ -120.812959425999921, 50.756794740000011 ], [ -120.812607147999955, 50.756925848000058 ], [ -120.811901359, 50.757104916000038 ], [ -120.811423588, 50.757185576000019 ], [ -120.809588346999959, 50.75731474700013 ], [ -120.809302908999939, 50.757357836000111 ], [ -120.809181835999979, 50.757397856000132 ], [ -120.809134204999907, 50.757439862000069 ], [ -120.809009121999964, 50.757667612000063 ], [ -120.80845171499999, 50.759263885000053 ], [ -120.808416573999963, 50.759502370000106 ], [ -120.808349883999966, 50.759619963000098 ], [ -120.808050399999956, 50.759629040000043 ], [ -120.806121497, 50.759687401000086 ], [ -120.80373586099995, 50.759766628000115 ], [ -120.802462208999899, 50.75980889500002 ], [ -120.802029495999975, 50.759827632000032 ], [ -120.801771733999928, 50.759838795000086 ], [ -120.801836632999965, 50.759280129000054 ], [ -120.801969843000037, 50.758133375000085 ], [ -120.806530336999927, 50.758345718000065 ], [ -120.807600532999942, 50.758395521000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "130", "sL_BldgLoss": "130", "sL_StrLoss": "130", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1AFAF54DB285EC0D8201F36895F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.635321485999981, 50.74798144600009 ], [ -120.63538761299999, 50.747429782000012 ], [ -120.63527252199999, 50.747424246000065 ], [ -120.635317504999989, 50.747048975000034 ], [ -120.635314848999883, 50.747048847000087 ], [ -120.63554566099999, 50.745123202000059 ], [ -120.635845597, 50.745028711000046 ], [ -120.63800478499995, 50.744649894000105 ], [ -120.638866384, 50.744145702000075 ], [ -120.639295983999915, 50.744073104000044 ], [ -120.639772017999974, 50.744433405000066 ], [ -120.640799385999955, 50.744859198000086 ], [ -120.641340783999937, 50.745218369000035 ], [ -120.640977395000036, 50.748253308000102 ], [ -120.635321485999981, 50.74798144600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2A89E9254375EC017B9C8B9A4614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.86127669299999, 50.762612739000097 ], [ -120.861996099999942, 50.762365611000092 ], [ -120.862264282999945, 50.762388393000059 ], [ -120.863706487999977, 50.761830111000059 ], [ -120.86430789299996, 50.761724698000087 ], [ -120.864993292999912, 50.761287510000074 ], [ -120.865161117999946, 50.761048200000054 ], [ -120.865607623, 50.760875902000045 ], [ -120.865695264999914, 50.760727763000027 ], [ -120.867174083999913, 50.760795788000038 ], [ -120.866763028999983, 50.764379083000087 ], [ -120.861103743999976, 50.764118653000011 ], [ -120.86127669299999, 50.762612739000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "202.7", "sL_BldgLoss": "202.7", "sL_StrLoss": "202.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D88CE3F2651B5EC0C298A1AFA86A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.425766922999955, 50.835143567000102 ], [ -120.425795284999964, 50.834916350000114 ], [ -120.425063513999987, 50.834879850000071 ], [ -120.42507974199999, 50.834749863000056 ], [ -120.424299298, 50.83471092900011 ], [ -120.424746414999944, 50.831129622000049 ], [ -120.430411527999979, 50.83141211200013 ], [ -120.430395317999952, 50.831542100000085 ], [ -120.431175710999923, 50.831580992000056 ], [ -120.431147377999935, 50.831808211000137 ], [ -120.431879103999961, 50.831844673000063 ], [ -120.431432549999911, 50.835426005000116 ], [ -120.425766922999955, 50.835143567000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "207", "sL_BldgLoss": "207", "sL_StrLoss": "207", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB41D5649D3E5EC0B555C52BFB754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.973876882999932, 50.923897108000077 ], [ -120.97397226799994, 50.923051059000066 ], [ -120.973759336999962, 50.923041506000118 ], [ -120.974163268999973, 50.919458474000109 ], [ -120.977734890999983, 50.919618652000082 ], [ -120.977735205999949, 50.919615859000082 ], [ -120.983414866999965, 50.919870339000106 ], [ -120.983011672999979, 50.923453402000014 ], [ -120.979652657999949, 50.923302935000081 ], [ -120.979557065999984, 50.924151782000095 ], [ -120.973876882999932, 50.923897108000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "141", "sL_BldgLoss": "141", "sL_StrLoss": "141", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004C2B8DB176255EC0FBC10A018A964940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.583102575999959, 51.174114451000044 ], [ -120.588812444, 51.174388823000115 ], [ -120.588375103999951, 51.177969412000039 ], [ -120.587651718999936, 51.177934668000042 ], [ -120.58763657499999, 51.178058629000098 ], [ -120.581926242999941, 51.177784199000094 ], [ -120.582364102999961, 51.174203634000037 ], [ -120.583087421999906, 51.174238412000108 ], [ -120.583102575999959, 51.174114451000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "229.2", "sL_BldgLoss": "229.2", "sL_StrLoss": "229.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015243283A33E5EC089C2BA330B7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.976674747999979, 50.958573918000141 ], [ -120.982359360999979, 50.958828441000044 ], [ -120.981955730999942, 50.962411343000049 ], [ -120.98190095299999, 50.962408891000059 ], [ -120.981831262999933, 50.963027445000051 ], [ -120.980793380999984, 50.962980996000027 ], [ -120.980686166999988, 50.963932370000123 ], [ -120.975000912999988, 50.963677764000103 ], [ -120.975405112999951, 50.960094892000072 ], [ -120.976442921999961, 50.960141390000061 ], [ -120.976550216999939, 50.95919001700004 ], [ -120.976604991000016, 50.959192471000087 ], [ -120.976674747999979, 50.958573918000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999980382304586", "sL_AssetLoss": "158.0206", "sL_BldgLoss": "158.0175", "sL_StrLoss": "158", "sL_NStrLoss": "0.0175", "sL_ContLoss": "0.0031", "geom_point": "0101000020E6100000D06DBA4CEA2E5EC0C7A41A51B5844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.730416250999895, 51.034859004000069 ], [ -120.73610915899998, 51.035125965000063 ], [ -120.735685029999942, 51.038707658000078 ], [ -120.729991666999965, 51.038440676000079 ], [ -120.730416250999895, 51.034859004000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999969216200887", "sL_AssetLoss": "367.0762", "sL_BldgLoss": "367.0649", "sL_StrLoss": "367", "sL_NStrLoss": "0.0649", "sL_ContLoss": "0.0113", "geom_point": "0101000020E6100000E8715277E93E5EC054686A2368794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.979549079999984, 50.951987809000045 ], [ -120.979614408999979, 50.951408090000079 ], [ -120.979427215999948, 50.951399707000107 ], [ -120.979830949999922, 50.947816770000053 ], [ -120.980564099999967, 50.947849600000012 ], [ -120.980917985999909, 50.944708088000048 ], [ -120.986600856999971, 50.94496240000008 ], [ -120.986197692999951, 50.948545373000066 ], [ -120.985464527, 50.948512580000077 ], [ -120.985448962999939, 50.948650860000029 ], [ -120.985636144999944, 50.948659233000036 ], [ -120.985232871000022, 50.952242187000081 ], [ -120.979549079999984, 50.951987809000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999984607818113", "sL_AssetLoss": "165.01884", "sL_BldgLoss": "165.0163", "sL_StrLoss": "165", "sL_NStrLoss": "0.0163", "sL_ContLoss": "0.00254", "geom_point": "0101000020E6100000DF9D42CFE2355EC0183D7D250C754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.839582364999941, 50.91248180499999 ], [ -120.844938835, 50.912728482000063 ], [ -120.844734323999987, 50.914497286000056 ], [ -120.844524596999946, 50.91631107000012 ], [ -120.838846193, 50.916049559000065 ], [ -120.838974170999961, 50.914944 ], [ -120.839127838999943, 50.913616439000101 ], [ -120.839394703999957, 50.913535484000114 ], [ -120.839896611999919, 50.913158004000124 ], [ -120.839954381999945, 50.912826196000012 ], [ -120.839710573999952, 50.912551293000028 ], [ -120.839582364999941, 50.91248180499999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999993180925332", "sL_AssetLoss": "170.404352", "sL_BldgLoss": "170.40319", "sL_StrLoss": "170.4", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.001162", "geom_point": "0101000020E610000094CBD290693E5EC0EDBF6B23E0724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.97353882100002, 50.895590279000082 ], [ -120.978233322, 50.895800935000075 ], [ -120.977829928999967, 50.899384076000011 ], [ -120.974608656999962, 50.899239551000079 ], [ -120.97215290599992, 50.899129308000099 ], [ -120.972556749999967, 50.895546185000093 ], [ -120.97353882100002, 50.895590279000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.99993393465975", "sL_AssetLoss": "85.97549", "sL_BldgLoss": "85.96981", "sL_StrLoss": "85.90131", "sL_NStrLoss": "0.0685", "sL_ContLoss": "0.00568", "geom_point": "0101000020E6100000E303338DC32F5EC06FD40AD377834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.74367625099994, 51.0251701930001 ], [ -120.749368, 51.025436488000132 ], [ -120.748945029999931, 51.02901826800008 ], [ -120.743252825999932, 51.028751954000064 ], [ -120.74367625099994, 51.0251701930001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.998035947119114", "sL_AssetLoss": "0.00424123", "sL_BldgLoss": "0.0042329", "sL_StrLoss": "0.0000929", "sL_NStrLoss": "0.00414", "sL_ContLoss": "0.00000833", "geom_point": "0101000020E610000070074DBF02315EC0A9EE57224C624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.763378115999942, 50.766391990000109 ], [ -120.769037115999978, 50.766657365000064 ], [ -120.76877760499994, 50.768876772000048 ], [ -120.767248480999967, 50.768981100000104 ], [ -120.76630571, 50.769134911000044 ], [ -120.765739910999983, 50.769411200000071 ], [ -120.765269286999981, 50.769438205000036 ], [ -120.763751494999923, 50.769760096000034 ], [ -120.763228792999953, 50.769987548000074 ], [ -120.762958710999953, 50.769974876000035 ], [ -120.763378115999942, 50.766391990000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "129.1", "sL_BldgLoss": "129.1", "sL_StrLoss": "129.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024747E27393F5EC07BAA9E2779784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.985223821999952, 50.939278778000094 ], [ -120.990906025999919, 50.939532873000047 ], [ -120.990503256999972, 50.9431158840001 ], [ -120.984820599, 50.942861769000089 ], [ -120.985223821999952, 50.939278778000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999991595313668", "sL_AssetLoss": "75.910031", "sL_BldgLoss": "75.909393", "sL_StrLoss": "75.900153", "sL_NStrLoss": "0.00924", "sL_ContLoss": "0.000638", "geom_point": "0101000020E6100000975D6A63F0395EC08A8D3F7267954940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.901835820999949, 51.168634108000091 ], [ -120.902026218999978, 51.166978782000079 ], [ -120.901503777999963, 51.166969407000053 ], [ -120.901516019, 51.166699820000133 ], [ -120.901087230999934, 51.166692126 ], [ -120.901111713999981, 51.166152954000083 ], [ -120.900254149999938, 51.166137558000074 ], [ -120.900290887999958, 51.165328800000061 ], [ -120.900941623999984, 51.165340482 ], [ -120.901566423999938, 51.165589481000055 ], [ -120.901552733999978, 51.165891062000057 ], [ -120.902150090999953, 51.165901781000102 ], [ -120.902158854999982, 51.165825575000021 ], [ -120.902191015999975, 51.165838391000143 ], [ -120.902888188999967, 51.165922491000039 ], [ -120.903466192999957, 51.166140392000017 ], [ -120.904467311999966, 51.166113302000099 ], [ -120.90465330399995, 51.165809912000043 ], [ -120.905231011999931, 51.165704594000012 ], [ -120.906247288999907, 51.165362703000028 ], [ -120.90774630599995, 51.165758697000044 ], [ -120.90853479399999, 51.16632979300006 ], [ -120.909318804999955, 51.166712887000074 ], [ -120.909413866999955, 51.166721924000065 ], [ -120.909175657999924, 51.168795920000093 ], [ -120.908167748999929, 51.16875037900013 ], [ -120.908161514999961, 51.168804644000033 ], [ -120.907560094999937, 51.168777465000076 ], [ -120.907546893999935, 51.16889235900004 ], [ -120.901835820999949, 51.168634108000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999992860271112", "sL_AssetLoss": "254.91164", "sL_BldgLoss": "254.90982", "sL_StrLoss": "254.9", "sL_NStrLoss": "0.00982", "sL_ContLoss": "0.00182", "geom_point": "0101000020E6100000323233F9C73D5EC0EF46723B2C714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.964859160999964, 50.881777477000092 ], [ -120.970369277999936, 50.882025222000109 ], [ -120.969965380999938, 50.885608391000119 ], [ -120.969133597999971, 50.88557101 ], [ -120.966092863999975, 50.885434306000043 ], [ -120.965966462999944, 50.886554683000043 ], [ -120.96029113699997, 50.886299311000073 ], [ -120.960442124999972, 50.884962484000035 ], [ -120.960695814999923, 50.882716178000052 ], [ -120.962476708999986, 50.882796345000074 ], [ -120.964165549999947, 50.882872341000088 ], [ -120.964568074999974, 50.882890451000058 ], [ -120.9646651689999, 50.882030009000111 ], [ -120.964694499999936, 50.88177007000008 ], [ -120.964859160999964, 50.881777477000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "184.6", "sL_BldgLoss": "184.6", "sL_StrLoss": "184.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B96E4A792D395EC0B58993FB1D844940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.889891978999913, 51.032110712000062 ], [ -120.890076116, 51.030508438000084 ], [ -120.890488373, 51.03052719300014 ], [ -120.890507406999944, 51.03036154800003 ], [ -120.890588412999932, 51.030365233000076 ], [ -120.890658135999928, 51.029758449000028 ], [ -120.893109699999968, 51.029869952000062 ], [ -120.89311892799995, 51.029789608000073 ], [ -120.898812147999962, 51.030048338000057 ], [ -120.898401151999948, 51.033630654000035 ], [ -120.896970583999959, 51.033565669000041 ], [ -120.89692031199999, 51.034003688000077 ], [ -120.896865809999966, 51.034001211000074 ], [ -120.896795500999971, 51.033463899000012 ], [ -120.89688770399999, 51.032969706000046 ], [ -120.896736209999915, 51.03254519500004 ], [ -120.89707580699995, 51.031967004000116 ], [ -120.89710049199999, 51.031733414000051 ], [ -120.896975309999945, 51.031659411000057 ], [ -120.895972885999981, 51.031784704000088 ], [ -120.895580690999978, 51.031939988000062 ], [ -120.895226296000018, 51.032203414000037 ], [ -120.894833718999948, 51.032367199000063 ], [ -120.894144692999959, 51.032471197000106 ], [ -120.893103110999931, 51.032776009000045 ], [ -120.892385523999977, 51.033167605000074 ], [ -120.892353089999986, 51.03327590100011 ], [ -120.892682593999936, 51.033848393000071 ], [ -120.892602711999956, 51.034701490000046 ], [ -120.892332913999937, 51.035308194000066 ], [ -120.891814954999944, 51.035799185000023 ], [ -120.889219089, 51.035681105000052 ], [ -120.889630840999985, 51.032098831000056 ], [ -120.889891978999913, 51.032110712000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7515833", "BldgCostT": "5183333", "sL_LossRatio": "0.99998347075969", "sL_AssetLoss": "1012.14573", "sL_BldgLoss": "1012.129", "sL_StrLoss": "1012", "sL_NStrLoss": "0.129", "sL_ContLoss": "0.01673", "geom_point": "0101000020E6100000DF4181B19D345EC0711CDBDF17614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.810083397999918, 50.764990396000087 ], [ -120.809065189999927, 50.764630100000048 ], [ -120.808275796999965, 50.764655209000047 ], [ -120.807631512999976, 50.764675709000123 ], [ -120.806873317999987, 50.764507599000105 ], [ -120.805873816999906, 50.764021993 ], [ -120.805408304999958, 50.763671613000078 ], [ -120.804902693999949, 50.762959503000097 ], [ -120.804787109999936, 50.762409792 ], [ -120.803808816999961, 50.761526696000082 ], [ -120.803318593999961, 50.761374411000091 ], [ -120.80262728799994, 50.761009801000071 ], [ -120.80219041499997, 50.76099604700002 ], [ -120.801639309, 50.760978703 ], [ -120.801771733999928, 50.759838795000086 ], [ -120.802029495999975, 50.759827632000032 ], [ -120.802462208999899, 50.75980889500002 ], [ -120.80373586099995, 50.759766628000115 ], [ -120.806121497, 50.759687401000086 ], [ -120.808050399999956, 50.759629040000043 ], [ -120.808349883999966, 50.759619963000098 ], [ -120.808416573999963, 50.759502370000106 ], [ -120.80845171499999, 50.759263885000053 ], [ -120.809009121999964, 50.757667612000063 ], [ -120.809134204999907, 50.757439862000069 ], [ -120.809181835999979, 50.757397856000132 ], [ -120.809302908999939, 50.757357836000111 ], [ -120.809588346999959, 50.75731474700013 ], [ -120.811423588, 50.757185576000019 ], [ -120.811901359, 50.757104916000038 ], [ -120.812607147999955, 50.756925848000058 ], [ -120.812959425999921, 50.756794740000011 ], [ -120.813476303999934, 50.756818765000091 ], [ -120.814581267999969, 50.756870119000041 ], [ -120.81408860699996, 50.757304969000074 ], [ -120.813718705999946, 50.757505582000093 ], [ -120.81383828499996, 50.758290203000101 ], [ -120.813781676999952, 50.758557693000093 ], [ -120.81360188799998, 50.759004210000079 ], [ -120.813690022999964, 50.759287412000027 ], [ -120.813313142999945, 50.759325508000089 ], [ -120.812714704999976, 50.759386006000092 ], [ -120.812377575999932, 50.759420105000103 ], [ -120.812697824999958, 50.759914022000054 ], [ -120.81280399099991, 50.760077805000016 ], [ -120.812907960999951, 50.760238213000079 ], [ -120.812915104999917, 50.76024917700002 ], [ -120.813059681999931, 50.760472211000092 ], [ -120.813249917999954, 50.760765601000081 ], [ -120.813485197, 50.760943994000051 ], [ -120.813759012999967, 50.761060291000057 ], [ -120.814087791999967, 50.761107092000053 ], [ -120.814370002999951, 50.76110218200008 ], [ -120.814328892999967, 50.761014789000043 ], [ -120.813944103999972, 50.760874399000116 ], [ -120.8149033399999, 50.759924707000074 ], [ -120.815698916999949, 50.760213839000158 ], [ -120.816291433999979, 50.75964155300003 ], [ -120.816696612999962, 50.759336158000053 ], [ -120.817023679999977, 50.759176634000077 ], [ -120.817110949999943, 50.75915478100007 ], [ -120.817448438999961, 50.759070272000017 ], [ -120.818081306999929, 50.759040152000061 ], [ -120.818932871999948, 50.758999606000046 ], [ -120.819803868999927, 50.758994119000093 ], [ -120.820590902000021, 50.758927976000081 ], [ -120.821731266999976, 50.758696311000115 ], [ -120.82290920299999, 50.758373642000066 ], [ -120.823542540999981, 50.758123820000037 ], [ -120.82422328199999, 50.757709607000017 ], [ -120.825051564999953, 50.757089684000078 ], [ -120.82537541, 50.756847133000093 ], [ -120.825731689999969, 50.756680824000071 ], [ -120.827553214999909, 50.756251940000048 ], [ -120.829593793999933, 50.755809773000045 ], [ -120.83046596299999, 50.755621410000082 ], [ -120.832811931999984, 50.75519421700011 ], [ -120.834414520999985, 50.754810585000065 ], [ -120.835343470999973, 50.754588176000034 ], [ -120.836238427999945, 50.75437392900006 ], [ -120.838592547999951, 50.753874946000046 ], [ -120.840061089999949, 50.753557400000048 ], [ -120.841791007999987, 50.753230300000062 ], [ -120.842676798999946, 50.753230713000065 ], [ -120.84267472399992, 50.752964979000119 ], [ -120.843367023999974, 50.752695294000056 ], [ -120.844025145000018, 50.752438412000089 ], [ -120.845902375999955, 50.751830794000057 ], [ -120.846433627999915, 50.75176727200008 ], [ -120.846489220999956, 50.751760643000125 ], [ -120.848949609000016, 50.751756274000059 ], [ -120.849301188999988, 50.75182741000004 ], [ -120.851518, 50.752481788000139 ], [ -120.851843607999967, 50.752642690000094 ], [ -120.852531870999954, 50.753087791000084 ], [ -120.852876079999973, 50.753185709000029 ], [ -120.853256583999922, 50.753166317000108 ], [ -120.854153401999923, 50.752900758000052 ], [ -120.854123699999946, 50.753550080000089 ], [ -120.854217826999957, 50.753789264000012 ], [ -120.854192682999894, 50.753876359000074 ], [ -120.853722804999947, 50.753849196000033 ], [ -120.853536593999962, 50.753820162000089 ], [ -120.853400831, 50.753817662000081 ], [ -120.852840424999911, 50.75370820400012 ], [ -120.852841138999935, 50.75369261 ], [ -120.852571326999978, 50.75362816300003 ], [ -120.85223025399992, 50.753526277000091 ], [ -120.852184431, 50.75352543300005 ], [ -120.851843482999968, 50.753328992 ], [ -120.851579245999943, 50.753383708000086 ], [ -120.851580981999973, 50.75334577100007 ], [ -120.851102226999956, 50.753270864000179 ], [ -120.850607257999982, 50.753352541000041 ], [ -120.850596689999946, 50.753351795000171 ], [ -120.85058182899995, 50.753356737000104 ], [ -120.850302332999917, 50.753402856000058 ], [ -120.850300155999932, 50.753450401000073 ], [ -120.850185333999931, 50.753488583000049 ], [ -120.849823266999962, 50.753481906000104 ], [ -120.849733826999966, 50.753496663000114 ], [ -120.849451127999927, 50.753514763000069 ], [ -120.849151426, 50.753507963000082 ], [ -120.848936988000034, 50.753465555000112 ], [ -120.848598366, 50.753459305000035 ], [ -120.848601591000019, 50.753388980000103 ], [ -120.848433727999932, 50.753319763 ], [ -120.848153669999988, 50.75318127300006 ], [ -120.847420799999924, 50.753167743000112 ], [ -120.847419593999945, 50.753178209000041 ], [ -120.847022199999941, 50.75305980900005 ], [ -120.846496804999973, 50.753076890000081 ], [ -120.845801797999954, 50.753378791000074 ], [ -120.845465005, 50.753948486000077 ], [ -120.844816099999917, 50.754458387000128 ], [ -120.843282082, 50.755131994000052 ], [ -120.842914697999959, 50.755412609000082 ], [ -120.842601191999933, 50.75547961400008 ], [ -120.842393489999907, 50.755690307000073 ], [ -120.841802815, 50.755878302000077 ], [ -120.841174008999957, 50.755992305000042 ], [ -120.839966603000022, 50.756005097000084 ], [ -120.837623304999951, 50.755189012000102 ], [ -120.837283393999954, 50.755173387000092 ], [ -120.835060783999936, 50.755725895000104 ], [ -120.834721785999974, 50.756007890000063 ], [ -120.834700001999963, 50.756150403000113 ], [ -120.834482996999981, 50.756237191000125 ], [ -120.834549096999936, 50.756364 ], [ -120.834141076999956, 50.756617493000093 ], [ -120.834131092999939, 50.756805502000049 ], [ -120.834379005999935, 50.756972083000107 ], [ -120.83463668899995, 50.756923691000068 ], [ -120.83465389499996, 50.757138802000028 ], [ -120.834504812999967, 50.757333902000056 ], [ -120.834003491999965, 50.757433600000105 ], [ -120.833984389999969, 50.75754039200006 ], [ -120.833884380999976, 50.757557501000065 ], [ -120.833492119999974, 50.757469207000071 ], [ -120.832808015999944, 50.757519006000066 ], [ -120.831718513999988, 50.757786807000024 ], [ -120.830993911999926, 50.757809596000094 ], [ -120.828053994999919, 50.757276915000041 ], [ -120.827059492999979, 50.757349510000068 ], [ -120.826810603999931, 50.757487711000081 ], [ -120.826299701, 50.758108705000105 ], [ -120.825232900999936, 50.758799401000054 ], [ -120.823515393999912, 50.75945879600004 ], [ -120.822352898999966, 50.759743601000103 ], [ -120.820737182999935, 50.760351804000067 ], [ -120.820368608, 50.76035459400007 ], [ -120.818363093999949, 50.759876094000084 ], [ -120.817722701999941, 50.759908893000102 ], [ -120.817187712999967, 50.760132505000115 ], [ -120.816452595999948, 50.760720687000095 ], [ -120.815857215999984, 50.761619306000064 ], [ -120.815250317999954, 50.76214630700008 ], [ -120.814600797999987, 50.762710287000075 ], [ -120.814486697999925, 50.763023601000022 ], [ -120.814456111999931, 50.763984910000033 ], [ -120.814157781999938, 50.764006300000098 ], [ -120.813158881999982, 50.763833997000113 ], [ -120.812603684999914, 50.763886695000096 ], [ -120.811024903999936, 50.76490069500008 ], [ -120.810708694999974, 50.764976200000028 ], [ -120.810382716999925, 50.764951992000086 ], [ -120.810083397999918, 50.764990396000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999977918829591", "sL_AssetLoss": "76.128211", "sL_BldgLoss": "76.12653", "sL_StrLoss": "76.10044", "sL_NStrLoss": "0.02609", "sL_ContLoss": "0.001681", "geom_point": "0101000020E6100000BB88E75364315EC0DAC576EF8F694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.769980613999962, 50.822821192000106 ], [ -120.77479123199997, 50.823046218000044 ], [ -120.774372209999967, 50.826628911000078 ], [ -120.771596286999937, 50.826499088000041 ], [ -120.768705595999933, 50.826363823000079 ], [ -120.7691250699999, 50.822781150000033 ], [ -120.769980613999962, 50.822821192000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "142.9", "sL_BldgLoss": "142.9", "sL_StrLoss": "142.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CE65728344395EC05F8B69E817654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.89197555599992, 50.791487204000049 ], [ -120.891987687, 50.791217602000081 ], [ -120.892413026999975, 50.791225292000078 ], [ -120.89242515499997, 50.790955689000079 ], [ -120.892850493999944, 50.79096337600005 ], [ -120.892862619999931, 50.790693774000083 ], [ -120.894989298999974, 50.790732184000092 ], [ -120.895001411999928, 50.790462582000032 ], [ -120.89457607699994, 50.790454903000054 ], [ -120.894588193999951, 50.790185301000058 ], [ -120.893312199999954, 50.790162255000062 ], [ -120.893324322999959, 50.789892652000084 ], [ -120.89247366799998, 50.789877281000024 ], [ -120.892485795999903, 50.789607679000028 ], [ -120.891635143999935, 50.789592301000063 ], [ -120.891659408999956, 50.789053097000064 ], [ -120.8908087699999, 50.789037714000116 ], [ -120.890845178999911, 50.788228907000054 ], [ -120.892546430999971, 50.788259669000126 ], [ -120.892558556999958, 50.787990066000134 ], [ -120.89468511299998, 50.788028480000023 ], [ -120.894697227999956, 50.787758878000098 ], [ -120.896398466, 50.78778958200008 ], [ -120.896386359999937, 50.788059185000066 ], [ -120.897662299999922, 50.788082197000037 ], [ -120.897650202999898, 50.788351799000061 ], [ -120.899351464999938, 50.788382460000065 ], [ -120.899330714999977, 50.788845286000075 ], [ -120.89930311399999, 50.789460873000074 ], [ -120.89760181299999, 50.789430212000092 ], [ -120.897613909999961, 50.789160608 ], [ -120.896337941999946, 50.789137596 ], [ -120.896350047999974, 50.788867994000078 ], [ -120.894648769999947, 50.788837289000078 ], [ -120.894636654999914, 50.789106892000085 ], [ -120.895061976999941, 50.789114569000034 ], [ -120.895049863999972, 50.789384172000069 ], [ -120.895900511999955, 50.789399524000068 ], [ -120.895888404999965, 50.789669128000057 ], [ -120.896313730999978, 50.789676802000024 ], [ -120.896301624999978, 50.789946405000151 ], [ -120.896726955999952, 50.789954076000051 ], [ -120.896714853, 50.790223680000132 ], [ -120.897140183999952, 50.790231351000045 ], [ -120.897128083999974, 50.790500954000024 ], [ -120.897553418999962, 50.790508624000068 ], [ -120.89752705599993, 50.791096055000033 ], [ -120.89751712099999, 50.791317432000071 ], [ -120.897091778999965, 50.791309762000026 ], [ -120.897086327999929, 50.791431206000084 ], [ -120.897079676999937, 50.791579365000125 ], [ -120.896654332999987, 50.791571694000019 ], [ -120.896642226999973, 50.79184129700009 ], [ -120.894515495999926, 50.791802915000105 ], [ -120.894527612999937, 50.791533312000169 ], [ -120.894102270999923, 50.791525632000102 ], [ -120.894090149999968, 50.791795234000062 ], [ -120.893664803999926, 50.791787551000041 ], [ -120.893652682999971, 50.792057154000084 ], [ -120.893227335999981, 50.792049470000116 ], [ -120.893215210999955, 50.792319072000048 ], [ -120.891978946, 50.792296730000018 ], [ -120.891513810999953, 50.792288320000068 ], [ -120.891550212999903, 50.791479515000084 ], [ -120.89197555599992, 50.791487204000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999997227809506", "sL_AssetLoss": "151.50474", "sL_BldgLoss": "151.50432", "sL_StrLoss": "151.5", "sL_NStrLoss": "0.00432", "sL_ContLoss": "0.00042", "geom_point": "0101000020E6100000F628F964873E5EC07D14BF73B9744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.974376418999952, 50.90999065900013 ], [ -120.980054835999937, 50.910245311000054 ], [ -120.979651460999932, 50.913828402000071 ], [ -120.973972590999978, 50.913573730000088 ], [ -120.974376418999952, 50.90999065900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "127", "sL_BldgLoss": "127", "sL_StrLoss": "127", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005470362532385EC0F6DC19D8F0924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.876457650999924, 51.150061252000036 ], [ -120.876498505999947, 51.149707677000045 ], [ -120.874619912999989, 51.14962220300005 ], [ -120.875033897999941, 51.146040426000077 ], [ -120.880741911000015, 51.146300038000057 ], [ -120.880701092999985, 51.146653617000112 ], [ -120.882579571999941, 51.146738990000095 ], [ -120.882370791999961, 51.148548055000028 ], [ -120.882056592999987, 51.148225205000116 ], [ -120.881739806999946, 51.14799588400011 ], [ -120.881200517999943, 51.147886295000021 ], [ -120.880928411999932, 51.147917598000056 ], [ -120.880028887999941, 51.148512889000102 ], [ -120.879619783999942, 51.148685296000096 ], [ -120.879443408999961, 51.148807708000014 ], [ -120.879415409999979, 51.14906838600006 ], [ -120.879803595999988, 51.149650911000023 ], [ -120.880135694999964, 51.149917202000083 ], [ -120.881380426999925, 51.150285084000132 ], [ -120.876457650999924, 51.150061252000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "126", "sL_BldgLoss": "126", "sL_StrLoss": "126", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000433D1ADAC2395EC0662FDB4EDB954940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.899868263999977, 51.168835156000107 ], [ -120.905579351999933, 51.169093505000035 ], [ -120.905167616999933, 51.172675305000098 ], [ -120.899456070999946, 51.172416936000062 ], [ -120.899868263999977, 51.168835156000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BFE4D23A22365EC0D3139678C0904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.843194492999913, 51.128952244000061 ], [ -120.848900123999925, 51.129213472000067 ], [ -120.84848418899999, 51.132795218000098 ], [ -120.842778099999975, 51.132533970000082 ], [ -120.843194492999913, 51.128952244000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5715417", "BldgCostT": "3941667", "sL_LossRatio": "1", "sL_AssetLoss": "566.5", "sL_BldgLoss": "566.5", "sL_StrLoss": "566.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005412E0E3A2B5EC0A5A77E94476E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.672249374999978, 50.866702624000084 ], [ -120.672324028, 50.866077249000043 ], [ -120.671441289999976, 50.866035203000138 ], [ -120.671868927999967, 50.862453061000103 ], [ -120.672970112999934, 50.86250551100003 ], [ -120.673106739000019, 50.861360687000065 ], [ -120.674029918999977, 50.86140465000004 ], [ -120.674031328999888, 50.861392836000043 ], [ -120.670303876999967, 50.861215282000089 ], [ -120.670524430999976, 50.859368054000072 ], [ -120.668253734999936, 50.859259829000045 ], [ -120.668681561999989, 50.855677671000095 ], [ -120.674351289999933, 50.855947811000121 ], [ -120.674130911999953, 50.857795054000057 ], [ -120.676401547999902, 50.857903159000088 ], [ -120.676294113999958, 50.858804008000092 ], [ -120.680021388999933, 50.85898136200003 ], [ -120.679887777999937, 50.860102445000066 ], [ -120.68254268, 50.860228696000043 ], [ -120.6821159199999, 50.863810890000089 ], [ -120.681449646999937, 50.863779211000114 ], [ -120.681182408999987, 50.866021806000091 ], [ -120.678051653999958, 50.865872902000085 ], [ -120.677920523999944, 50.866972580000045 ], [ -120.672249374999978, 50.866702624000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999981857982039", "sL_AssetLoss": "256.641792", "sL_BldgLoss": "256.637136", "sL_StrLoss": "256.600446", "sL_NStrLoss": "0.03669", "sL_ContLoss": "0.004656", "geom_point": "0101000020E610000055BC706BBB2E5EC0BCFFF23D61854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.729540759999935, 51.038700691000024 ], [ -120.735234154999915, 51.038967696000078 ], [ -120.734809918999957, 51.04254937100005 ], [ -120.733059528999888, 51.042467313 ], [ -120.732849332999962, 51.044241112000044 ], [ -120.730819034999953, 51.044145899000029 ], [ -120.7306908, 51.045227561000068 ], [ -120.724996631999915, 51.044960328000073 ], [ -120.725421679999954, 51.041378702000038 ], [ -120.72745184199999, 51.041474012000052 ], [ -120.727580143999916, 51.040392350000097 ], [ -120.729330442999938, 51.040474492000065 ], [ -120.729540759999935, 51.038700691000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "69.3", "sL_BldgLoss": "69.3", "sL_StrLoss": "69.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FF8B5817D3C5EC0376A2A30897C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.942520680999905, 50.971017143000061 ], [ -120.948206683999956, 50.971273391000153 ], [ -120.947800198999971, 50.97485611900008 ], [ -120.942113740999943, 50.974599852000068 ], [ -120.942520680999905, 50.971017143000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "132.8", "sL_BldgLoss": "132.8", "sL_StrLoss": "132.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000427ED347E22F5EC03267A649E3654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.745214935999968, 50.798185509000135 ], [ -120.745227912999951, 50.797915935000063 ], [ -120.743951835999937, 50.797891252000056 ], [ -120.744003778, 50.796812952000074 ], [ -120.744429125999943, 50.796821181000084 ], [ -120.744455091999967, 50.796282030000086 ], [ -120.744880435999903, 50.796290257000081 ], [ -120.74490639499993, 50.79575110600009 ], [ -120.746182413000028, 50.795775777000081 ], [ -120.74619538599994, 50.795506203000073 ], [ -120.746620722999936, 50.795514422000089 ], [ -120.746633691999961, 50.795244848000046 ], [ -120.747484363999945, 50.795261283000066 ], [ -120.747497326999977, 50.794991707000115 ], [ -120.748347994, 50.795008138000057 ], [ -120.748360951999985, 50.794738561000038 ], [ -120.748786284999966, 50.794746774000075 ], [ -120.748799239999983, 50.79447719800001 ], [ -120.74964989899999, 50.794493618000025 ], [ -120.749662850000021, 50.794224041000106 ], [ -120.750088177999913, 50.794232249000039 ], [ -120.75012702199993, 50.793423520000076 ], [ -120.751828302999968, 50.793456335000023 ], [ -120.751789486999911, 50.794265064000044 ], [ -120.752214814999903, 50.794273265000072 ], [ -120.752137192999925, 50.795890725000021 ], [ -120.75128650799999, 50.795874322000088 ], [ -120.751273565999952, 50.796143899000072 ], [ -120.749997532999927, 50.796119284000035 ], [ -120.749984582, 50.796388859000039 ], [ -120.749133887999932, 50.796372441000109 ], [ -120.749120933999933, 50.796642018000092 ], [ -120.748695584999936, 50.796633806000024 ], [ -120.74868262699999, 50.79690338200006 ], [ -120.748257277, 50.796895168000113 ], [ -120.748231355999962, 50.797434320000072 ], [ -120.747806, 50.797426106000046 ], [ -120.747780071999969, 50.797965257000051 ], [ -120.747354711999932, 50.797957041000089 ], [ -120.747341745999961, 50.798226616000107 ], [ -120.745214935999968, 50.798185509000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C676E32E8235EC0371AE16909784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.558262613999958, 50.938977185000041 ], [ -120.558700027999976, 50.93539577500006 ], [ -120.558752494999936, 50.935398324000076 ], [ -120.558828388999927, 50.935426993000071 ], [ -120.559301001999955, 50.935912603000119 ], [ -120.559692101999985, 50.936083512000074 ], [ -120.561039689999959, 50.936156213000054 ], [ -120.561286486999947, 50.936349909000079 ], [ -120.56130561099999, 50.936503709000107 ], [ -120.561100617999926, 50.936895396000061 ], [ -120.561585703, 50.937157412000097 ], [ -120.561895310999901, 50.937200105000102 ], [ -120.562583307999915, 50.937124610000062 ], [ -120.562914673999941, 50.936779994000105 ], [ -120.5630564, 50.936792796000091 ], [ -120.563116295999961, 50.937000711000081 ], [ -120.563418402999957, 50.93720440500006 ], [ -120.564417862999946, 50.937215061000089 ], [ -120.564222833999949, 50.93881358000008 ], [ -120.56399718499992, 50.938802633000108 ], [ -120.563942247999975, 50.939252886000105 ], [ -120.558262613999958, 50.938977185000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999942146865539", "sL_AssetLoss": "93.3398", "sL_BldgLoss": "93.3344", "sL_StrLoss": "93.3", "sL_NStrLoss": "0.0344", "sL_ContLoss": "0.0054", "geom_point": "0101000020E6100000EBD25489D13D5EC09F234D17BD6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.963839945999908, 50.872617970000078 ], [ -120.967765596999982, 50.871851951000089 ], [ -120.967546479999953, 50.873795374000039 ], [ -120.963670590999953, 50.873621005000111 ], [ -120.963839945999908, 50.872617970000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999993837279722", "sL_AssetLoss": "159.507483", "sL_BldgLoss": "159.5065", "sL_StrLoss": "159.5", "sL_NStrLoss": "0.0065", "sL_ContLoss": "0.000983", "geom_point": "0101000020E6100000801EF6849D3E5EC0DC1ECE0D17744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.975727053999918, 50.905034680000028 ], [ -120.981404848999944, 50.905289266000118 ], [ -120.981001627, 50.90887238100003 ], [ -120.975323378999946, 50.908617776000064 ], [ -120.975727053999918, 50.905034680000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "255", "sL_BldgLoss": "255", "sL_StrLoss": "255", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2EADE50193C5EC07670B037B17F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.93864073899999, 50.994820103000059 ], [ -120.944329755999931, 50.995076539000095 ], [ -120.94392274099998, 50.998659159000034 ], [ -120.94274826399996, 50.998606243000076 ], [ -120.942674423999918, 50.999255987000019 ], [ -120.939453376999907, 50.999110798000089 ], [ -120.939312442999977, 51.000350064000045 ], [ -120.933622782999976, 51.000093375000091 ], [ -120.93403063699995, 50.996510798000052 ], [ -120.937251479999972, 50.996656142000063 ], [ -120.937392457999948, 50.995416874000085 ], [ -120.93856684499994, 50.995469846000084 ], [ -120.93864073899999, 50.994820103000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0.962913687011475", "sL_AssetLoss": "0.012026", "sL_BldgLoss": "0.01158", "sL_StrLoss": "0.00033", "sL_NStrLoss": "0.01125", "sL_ContLoss": "0.000446", "geom_point": "0101000020E61000002ABD1D7E0A245EC00D1F6C0C15974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.560505001999928, 51.178401833000123 ], [ -120.566215281000026, 51.17867734700009 ], [ -120.56577607599999, 51.182257831000058 ], [ -120.560065337999973, 51.181982295000068 ], [ -120.560505001999928, 51.178401833000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999988090378629", "sL_AssetLoss": "328.64185", "sL_BldgLoss": "328.637936", "sL_StrLoss": "328.600306", "sL_NStrLoss": "0.03763", "sL_ContLoss": "0.003914", "geom_point": "0101000020E61000005C5008B218285EC01B9F4D379E6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.623915634999918, 50.843977752000093 ], [ -120.624032029999981, 50.843010970000122 ], [ -120.623415886000018, 50.842981339000069 ], [ -120.623618466999943, 50.84129877800008 ], [ -120.623681123, 50.84077834900009 ], [ -120.62222234499994, 50.840708184000128 ], [ -120.621906785999926, 50.840693003000126 ], [ -120.621928655999952, 50.840511413000122 ], [ -120.622338146999979, 50.837110946000088 ], [ -120.628005241, 50.837383437000071 ], [ -120.627773061999974, 50.839313581000106 ], [ -120.630222796999973, 50.839431281000017 ], [ -120.630217029999983, 50.839479255000086 ], [ -120.630689886, 50.839501967000032 ], [ -120.630668629999946, 50.839678756000133 ], [ -120.631182881, 50.839703455000034 ], [ -120.631128129, 50.840158877000079 ], [ -120.631196411999937, 50.840162156000083 ], [ -120.630765731999972, 50.843744234000027 ], [ -120.630685211999918, 50.843740367000052 ], [ -120.629650895999987, 50.843690688000059 ], [ -120.629583609999912, 50.844250161000041 ], [ -120.623915634999918, 50.843977752000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "158.6", "sL_BldgLoss": "158.6", "sL_StrLoss": "158.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FADB96AF68335EC0CAFE791AB0764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.800633686999959, 50.925326313000085 ], [ -120.806313045999943, 50.925589755000097 ], [ -120.805899552000014, 50.929138164000065 ], [ -120.80589559199997, 50.929172147000017 ], [ -120.805855609999966, 50.929170294000095 ], [ -120.800215777999981, 50.928908686000035 ], [ -120.800633686999959, 50.925326313000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "0.999993440610286", "sL_AssetLoss": "300.027912", "sL_BldgLoss": "300.025944", "sL_StrLoss": "300.000244", "sL_NStrLoss": "0.0257", "sL_ContLoss": "0.001968", "geom_point": "0101000020E6100000B50B7A2D30335EC0F7ACADD06E774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.797975668999982, 50.93315338500004 ], [ -120.798048707999953, 50.93252766100003 ], [ -120.794277623999903, 50.932352518000073 ], [ -120.794696039999934, 50.928770182000022 ], [ -120.799039209999975, 50.928971884000063 ], [ -120.800375802999937, 50.929033923000105 ], [ -120.800149902999934, 50.930970177000084 ], [ -120.80006911599996, 50.931662586000037 ], [ -120.803840165999958, 50.931837534000053 ], [ -120.803741354999929, 50.932685010000064 ], [ -120.80546846799993, 50.932765092000061 ], [ -120.80505087899999, 50.936347452000071 ], [ -120.802851282999924, 50.936245457000012 ], [ -120.802765917999977, 50.936977404000089 ], [ -120.80247526799991, 50.936963923000093 ], [ -120.79708513, 50.936713786000055 ], [ -120.797503362999933, 50.933131457000073 ], [ -120.797975668999982, 50.93315338500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "134", "sL_BldgLoss": "134", "sL_StrLoss": "134", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE1DDD4A27395EC072E371AC66864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.890381259999955, 51.048087783000092 ], [ -120.896076802999971, 51.048346646000034 ], [ -120.895665419999929, 51.051928880000105 ], [ -120.889969419999943, 51.051669996000136 ], [ -120.890381259999955, 51.048087783000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999991622238632", "sL_AssetLoss": "148.0109", "sL_BldgLoss": "148.00966", "sL_StrLoss": "148", "sL_NStrLoss": "0.00966", "sL_ContLoss": "0.00124", "geom_point": "0101000020E61000003B459ABA23365EC0347161936B914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.843285677999958, 51.134173957000058 ], [ -120.848991980999969, 51.134435179000093 ], [ -120.84857600399998, 51.138016905 ], [ -120.842869244, 51.137755662000089 ], [ -120.843285677999958, 51.134173957000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999948735634878", "sL_AssetLoss": "84.46413", "sL_BldgLoss": "84.4598", "sL_StrLoss": "84.4011", "sL_NStrLoss": "0.0587", "sL_ContLoss": "0.00433", "geom_point": "0101000020E610000020B7FC13DE335EC0446CF28C64744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.807928653, 50.907001045000079 ], [ -120.813605726999938, 50.90726412300004 ], [ -120.813189025999947, 50.9108466160001 ], [ -120.813023485999935, 50.91083894900008 ], [ -120.812930760999947, 50.911636021000042 ], [ -120.807253136999975, 50.911372910000082 ], [ -120.807670316999975, 50.90779044100001 ], [ -120.807835845999989, 50.907798116000073 ], [ -120.807928653, 50.907001045000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999976251332152", "sL_AssetLoss": "168.4305", "sL_BldgLoss": "168.4265", "sL_StrLoss": "168.4", "sL_NStrLoss": "0.0265", "sL_ContLoss": "0.004", "geom_point": "0101000020E610000012A73042BA3C5EC028AAC8328E7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.946228974999926, 50.963357614000095 ], [ -120.951914023999976, 50.963613675000055 ], [ -120.951507903999982, 50.96719644800006 ], [ -120.945822401999948, 50.966940367000092 ], [ -120.946228974999926, 50.963357614000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999972920760042", "sL_AssetLoss": "250.74559", "sL_BldgLoss": "250.7388", "sL_StrLoss": "250.7", "sL_NStrLoss": "0.0388", "sL_ContLoss": "0.00679", "geom_point": "0101000020E61000001D3D3C53412E5EC0564190AC91744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.72034388699997, 50.91317444500001 ], [ -120.720530080999978, 50.911602083000062 ], [ -120.719029149999969, 50.911531312000093 ], [ -120.719453406999932, 50.907949175000098 ], [ -120.725130075999971, 50.908216729000117 ], [ -120.724944055999956, 50.909789105000094 ], [ -120.726444937999958, 50.909859796000063 ], [ -120.726021223999936, 50.913441953000053 ], [ -120.72034388699997, 50.91317444500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "1", "sL_AssetLoss": "719", "sL_BldgLoss": "719", "sL_StrLoss": "719", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000001E6945F0A2A5EC01136C0F5766D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.65982676199999, 50.86015909800004 ], [ -120.659868224999926, 50.859812507000093 ], [ -120.65853964199999, 50.859749065000116 ], [ -120.658698056999981, 50.858425179000058 ], [ -120.658270523999974, 50.858404760000056 ], [ -120.658377852999976, 50.857507817000091 ], [ -120.658043677999956, 50.857491855000049 ], [ -120.658078757999959, 50.857198703000023 ], [ -120.655380407999928, 50.857069783000036 ], [ -120.655638560999961, 50.854913476000014 ], [ -120.654560880999952, 50.854861969000034 ], [ -120.654525522999933, 50.855157253000129 ], [ -120.651986275999946, 50.855035850000078 ], [ -120.651803487999985, 50.856561615000032 ], [ -120.650931590999932, 50.856519915 ], [ -120.650922852999884, 50.856592834000061 ], [ -120.645253183999955, 50.856321509000104 ], [ -120.645682825, 50.852739427000117 ], [ -120.646554644, 50.852781168000064 ], [ -120.646563386999972, 50.852708248000098 ], [ -120.648408511999961, 50.852796564000066 ], [ -120.648617697999924, 50.851051392000109 ], [ -120.64906702399999, 50.851072894000083 ], [ -120.64921024, 50.849877903000063 ], [ -120.654879115999975, 50.850149031000072 ], [ -120.65474513399991, 50.851268152000053 ], [ -120.658024186999967, 50.851424847000018 ], [ -120.657766169999903, 50.853581168000105 ], [ -120.66147861799999, 50.853758457000033 ], [ -120.661443562, 50.854051611000045 ], [ -120.664141747999963, 50.854180385000092 ], [ -120.664034540999964, 50.855077338000093 ], [ -120.664368701999962, 50.855093282000091 ], [ -120.664344375999988, 50.855296807000045 ], [ -120.668398779999976, 50.855490172000046 ], [ -120.667970931999932, 50.859072330000068 ], [ -120.665672312999945, 50.858962721000061 ], [ -120.665497004999935, 50.860429685000085 ], [ -120.65982676199999, 50.86015909800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.985325367868169", "sL_AssetLoss": "0.0049882", "sL_BldgLoss": "0.004915", "sL_StrLoss": "0.000115", "sL_NStrLoss": "0.0048", "sL_ContLoss": "0.0000732", "geom_point": "0101000020E6100000B4556A7208335EC0C06A97FC70614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.799453214999915, 50.760061348000129 ], [ -120.799698783999958, 50.76002636200009 ], [ -120.799542044999924, 50.76137499100011 ], [ -120.799090783999986, 50.761392890000081 ], [ -120.798891190999896, 50.761461192000112 ], [ -120.798411888999908, 50.76199250600007 ], [ -120.798065949000019, 50.762154938000073 ], [ -120.793992383999949, 50.761964984000059 ], [ -120.794353647999984, 50.761753144000117 ], [ -120.794527932, 50.761650950000046 ], [ -120.795248371999975, 50.761301789000058 ], [ -120.795620653999961, 50.761152712000097 ], [ -120.796271637999965, 50.760892072000104 ], [ -120.796541760999943, 50.7607839140001 ], [ -120.79746139099997, 50.760495356000106 ], [ -120.798395282999962, 50.760255195000077 ], [ -120.799453214999915, 50.760061348000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999987720564296", "sL_AssetLoss": "86.323185", "sL_BldgLoss": "86.322125", "sL_StrLoss": "86.300375", "sL_NStrLoss": "0.02175", "sL_ContLoss": "0.00106", "geom_point": "0101000020E610000049E2DD7894325EC079DC01E8C16C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.787686306999944, 50.847744141000099 ], [ -120.793355740999928, 50.848008261000075 ], [ -120.792937971999976, 50.851590921000096 ], [ -120.78726808699993, 50.851326781000104 ], [ -120.787686306999944, 50.847744141000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999995755128339", "sL_AssetLoss": "210.607074", "sL_BldgLoss": "210.60618", "sL_StrLoss": "210.6", "sL_NStrLoss": "0.00618", "sL_ContLoss": "0.000894", "geom_point": "0101000020E6100000B74CE19CEC375EC00FE8D012798A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.87168376299995, 51.084800440000087 ], [ -120.871699211999911, 51.084666661000036 ], [ -120.870489931999884, 51.084611508000116 ], [ -120.870903644999942, 51.081029494000042 ], [ -120.871824092999972, 51.08107147600014 ], [ -120.871843473999945, 51.080903630000115 ], [ -120.871804435999977, 51.080901850000039 ], [ -120.872218007999933, 51.077319817000074 ], [ -120.874730346999982, 51.077434368000048 ], [ -120.875130693999949, 51.078282308000084 ], [ -120.875092174999921, 51.078524394000048 ], [ -120.874716795999973, 51.078931704000077 ], [ -120.874848292999914, 51.079158203000127 ], [ -120.875490606, 51.079494309000033 ], [ -120.875779501999915, 51.079715087000061 ], [ -120.875358520999953, 51.080166499 ], [ -120.875364996999949, 51.080643687000048 ], [ -120.875709500999974, 51.080910008000018 ], [ -120.876548289999945, 51.081303094000056 ], [ -120.877046017999987, 51.082309996000056 ], [ -120.87725681399999, 51.083950694000038 ], [ -120.877129682999907, 51.084820893 ], [ -120.877248705999989, 51.08505408000012 ], [ -120.87168376299995, 51.084800440000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999989812044804", "sL_AssetLoss": "159.0113", "sL_BldgLoss": "159.00968", "sL_StrLoss": "159", "sL_NStrLoss": "0.00968", "sL_ContLoss": "0.00162", "geom_point": "0101000020E61000000051F6B780365EC0AE41C2A436754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.850607170999979, 50.913784134000082 ], [ -120.854493061999946, 50.913962725000097 ], [ -120.854079581999969, 50.917545343000036 ], [ -120.848400962999975, 50.917284316000078 ], [ -120.848635117999919, 50.915257786000055 ], [ -120.848672645999955, 50.914932976000074 ], [ -120.848821210999972, 50.914932604000093 ], [ -120.849175590999891, 50.914921208000059 ], [ -120.849553307999912, 50.914783110000087 ], [ -120.850117808999926, 50.914273200000146 ], [ -120.850422891999955, 50.913801804000087 ], [ -120.850426247000016, 50.913775816000054 ], [ -120.850607170999979, 50.913784134000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "65.6", "sL_BldgLoss": "65.6", "sL_StrLoss": "65.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DAF55EBEED375EC0C9923996F7944940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.871237816999965, 51.161884970000131 ], [ -120.876947843999957, 51.162144770000097 ], [ -120.876533861999974, 51.165726492000076 ], [ -120.870823377999955, 51.165466672000058 ], [ -120.871237816999965, 51.161884970000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.959541932387026", "sL_AssetLoss": "0.029166", "sL_BldgLoss": "0.027986", "sL_StrLoss": "0.000786", "sL_NStrLoss": "0.0272", "sL_ContLoss": "0.00118", "geom_point": "0101000020E6100000D3712D41E3335EC0F70F1AA8A9604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.811959759999979, 50.756400872000015 ], [ -120.811678115999896, 50.756359593000106 ], [ -120.811423076999972, 50.756354806000068 ], [ -120.811071020999961, 50.756303233000025 ], [ -120.81076145599999, 50.756252458000056 ], [ -120.810452305999945, 50.756192691000074 ], [ -120.810060675999949, 50.756077395000112 ], [ -120.809781139000023, 50.755991197000071 ], [ -120.809504480999962, 50.755842088000122 ], [ -120.809296202999974, 50.755748219000075 ], [ -120.809121275999956, 50.755547074000056 ], [ -120.809094597999902, 50.755510604000051 ], [ -120.808991342999917, 50.755292799000124 ], [ -120.80895094100002, 50.755247062000073 ], [ -120.808776035999969, 50.75504588200009 ], [ -120.808556916999947, 50.754879895000073 ], [ -120.808433622999956, 50.754787623000013 ], [ -120.80832452599999, 50.754695637000061 ], [ -120.808119980999919, 50.754520896000045 ], [ -120.80797383, 50.754311283000078 ], [ -120.80785389, 50.754147121000173 ], [ -120.807712125999942, 50.754003173000079 ], [ -120.811781788999951, 50.754192480000036 ], [ -120.811727703999949, 50.754659010000061 ], [ -120.812318201999958, 50.754686466000074 ], [ -120.812298981999945, 50.754852283000069 ], [ -120.813091888999963, 50.754889145000114 ], [ -120.812901102999902, 50.756535175000074 ], [ -120.812832638999936, 50.756534163000083 ], [ -120.812522658999981, 50.756492386000041 ], [ -120.812241424999968, 50.756442116000052 ], [ -120.811959759999979, 50.756400872000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999984964374847", "sL_AssetLoss": "264.03957", "sL_BldgLoss": "264.0356", "sL_StrLoss": "264", "sL_NStrLoss": "0.0356", "sL_ContLoss": "0.00397", "geom_point": "0101000020E61000003C86856244375EC0175E5163A5604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.865920107999969, 50.75839918300008 ], [ -120.865586214999965, 50.758268190000116 ], [ -120.865486479999944, 50.758265296000097 ], [ -120.865539986999963, 50.758347896000025 ], [ -120.865311911999981, 50.758360707000058 ], [ -120.864369808999967, 50.758164203000049 ], [ -120.864197302999941, 50.758205505 ], [ -120.863761692, 50.757838106000086 ], [ -120.8636601499999, 50.757798630000075 ], [ -120.863204895999942, 50.757621602 ], [ -120.86316581799997, 50.757521906000129 ], [ -120.863528102999965, 50.757366590000096 ], [ -120.863580094999989, 50.757160115000104 ], [ -120.863132299999975, 50.756378187000102 ], [ -120.861618993999983, 50.755092205000025 ], [ -120.86150112499999, 50.755179102000056 ], [ -120.860317910999981, 50.754672001000124 ], [ -120.859576780999944, 50.754136495000068 ], [ -120.85873019, 50.754066715000135 ], [ -120.858446310999938, 50.754070990000137 ], [ -120.858299693999982, 50.754149289000082 ], [ -120.857854914999962, 50.753988403000086 ], [ -120.856249000999938, 50.754075301000043 ], [ -120.855744849999937, 50.754002796000123 ], [ -120.855896996999945, 50.752679077000074 ], [ -120.857149002999932, 50.752666695000066 ], [ -120.858103602999961, 50.752588309000011 ], [ -120.858551690999889, 50.752623303000043 ], [ -120.85898899399993, 50.752740704000125 ], [ -120.860199180999956, 50.753247696000116 ], [ -120.860342198999916, 50.75317860300008 ], [ -120.861481796999925, 50.752578188000079 ], [ -120.861862997999964, 50.752379588000061 ], [ -120.862104788999901, 50.752254807000121 ], [ -120.863355015999943, 50.752772490000048 ], [ -120.863418934999942, 50.752803105000027 ], [ -120.864052529999981, 50.753106422000073 ], [ -120.86597126199996, 50.754024860000065 ], [ -120.86594940399999, 50.754215408000071 ], [ -120.866414019, 50.754236785000053 ], [ -120.866602112999956, 50.754326814000066 ], [ -120.86664646599999, 50.754344709000051 ], [ -120.866594162999903, 50.754800708000069 ], [ -120.866740340999968, 50.754807434000107 ], [ -120.867923124999933, 50.754861839000064 ], [ -120.867969116999959, 50.754880505000081 ], [ -120.868655895999893, 50.755123793000081 ], [ -120.868628621999974, 50.755361653000122 ], [ -120.869378136999941, 50.755396117000039 ], [ -120.869333933999926, 50.755781683000102 ], [ -120.869521657999925, 50.755790314000059 ], [ -120.869414978999913, 50.756720857000097 ], [ -120.868451103999988, 50.757046282000033 ], [ -120.868356437999964, 50.757078238000076 ], [ -120.86758123099996, 50.75733996600006 ], [ -120.86732519899999, 50.757426404000093 ], [ -120.866814291999972, 50.757741204000091 ], [ -120.865946979999975, 50.758111495000129 ], [ -120.865853382999958, 50.758280992000017 ], [ -120.865920107999969, 50.75839918300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999993300569918", "sL_AssetLoss": "160.312144", "sL_BldgLoss": "160.31107", "sL_StrLoss": "160.3", "sL_NStrLoss": "0.01107", "sL_ContLoss": "0.001074", "geom_point": "0101000020E6100000A397EE017C365EC09B17CC04E8914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.848673317999911, 51.13797179200008 ], [ -120.854380139999961, 51.138232740000078 ], [ -120.853964562999977, 51.141814471000011 ], [ -120.84825728399997, 51.141553502000065 ], [ -120.848673317999911, 51.13797179200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "74.7", "sL_BldgLoss": "74.7", "sL_StrLoss": "74.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A3962002D2315EC03E89192BFB664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.776810468999912, 50.805267983000064 ], [ -120.776848867, 50.804459240000014 ], [ -120.777274294999941, 50.804467351000035 ], [ -120.777287091999966, 50.804197769000034 ], [ -120.776861667999938, 50.804189659000123 ], [ -120.776887264999942, 50.803650498000096 ], [ -120.776461844999943, 50.803642387000139 ], [ -120.776513047999913, 50.802564064000094 ], [ -120.777789279999979, 50.802588392000061 ], [ -120.777776485999979, 50.802857973000037 ], [ -120.778201901, 50.802866079000111 ], [ -120.778189109999943, 50.80313565900012 ], [ -120.778614525999942, 50.803143765000073 ], [ -120.778537789999945, 50.804761252000027 ], [ -120.778963221999987, 50.804769355000104 ], [ -120.778976009999909, 50.804499774000114 ], [ -120.779401437999951, 50.804507877000027 ], [ -120.779439789999984, 50.803699133000116 ], [ -120.779865212999965, 50.803707232000129 ], [ -120.779877994999964, 50.803437651000181 ], [ -120.782005093999928, 50.80347812800008 ], [ -120.782004385999926, 50.803493068000101 ], [ -120.781966784999938, 50.804286874000049 ], [ -120.78111593, 50.804270687000027 ], [ -120.781103154999954, 50.804540269000036 ], [ -120.780677724999933, 50.804532173000084 ], [ -120.780639392999916, 50.805340918000063 ], [ -120.780213954999937, 50.805332819000107 ], [ -120.780201173999984, 50.805602401000037 ], [ -120.778905985999984, 50.805577739000036 ], [ -120.778499420999978, 50.805569995000056 ], [ -120.778512210999963, 50.80530041400003 ], [ -120.778086774999963, 50.805292308000034 ], [ -120.77805605699993, 50.805939617000092 ], [ -120.778048394999971, 50.806101052000017 ], [ -120.776772067999957, 50.806076725000054 ], [ -120.776746466999953, 50.806615886000046 ], [ -120.775874942999977, 50.806599267000102 ], [ -120.775470125999931, 50.806591546000043 ], [ -120.77550854899999, 50.805782805000042 ], [ -120.776359429999928, 50.805799033000014 ], [ -120.776385032999954, 50.805259872000093 ], [ -120.776810468999912, 50.805267983000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "62.6", "sL_BldgLoss": "62.6", "sL_StrLoss": "62.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FE3E0B123395EC053A40C665D854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.89048713199999, 51.043048126000073 ], [ -120.890898848999939, 51.039465875000062 ], [ -120.891953026999929, 51.039513815000092 ], [ -120.89232689, 51.040740207000084 ], [ -120.892533804999971, 51.040941001000064 ], [ -120.893561193999943, 51.041220092000025 ], [ -120.894718492999914, 51.042140199000066 ], [ -120.895197688999971, 51.042256896000019 ], [ -120.895426309999934, 51.042261195000037 ], [ -120.895658998999977, 51.042167212000031 ], [ -120.896143105999897, 51.04185099900009 ], [ -120.89635511499992, 51.041799419000029 ], [ -120.89618203199997, 51.043306985000065 ], [ -120.89048713199999, 51.043048126000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "238.8", "sL_BldgLoss": "238.8", "sL_StrLoss": "238.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B7350998D315EC0F136040191724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.772824537999924, 50.892590518000105 ], [ -120.778074760999957, 50.892835560000066 ], [ -120.777655347999939, 50.896417981000056 ], [ -120.776273293999949, 50.896353500000082 ], [ -120.776135547999957, 50.897529614000092 ], [ -120.774614719999988, 50.897458639000028 ], [ -120.770459933999959, 50.897264637000013 ], [ -120.770879930999968, 50.893682247000086 ], [ -120.772261893999911, 50.893746793000055 ], [ -120.772399729999961, 50.892570681000073 ], [ -120.772824537999924, 50.892590518000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999982486251708", "sL_AssetLoss": "314.039", "sL_BldgLoss": "314.0335", "sL_StrLoss": "314", "sL_NStrLoss": "0.0335", "sL_ContLoss": "0.0055", "geom_point": "0101000020E6100000A41F68607F315EC0605200B566734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.771865546999919, 50.905146860000116 ], [ -120.771929634999964, 50.904600213000045 ], [ -120.771673577999977, 50.904588256000039 ], [ -120.772034861999956, 50.901506524000069 ], [ -120.768377177999966, 50.901335673000041 ], [ -120.76879738099997, 50.897753308000077 ], [ -120.774473046999972, 50.898018368000074 ], [ -120.774177771999959, 50.900538480000129 ], [ -120.775390457999933, 50.900595076000158 ], [ -120.77787270499999, 50.900710881000037 ], [ -120.777742928999913, 50.901819178000046 ], [ -120.777961676999936, 50.901829381000091 ], [ -120.777542170999979, 50.905411763000075 ], [ -120.774271375999916, 50.905259165000061 ], [ -120.771865546999919, 50.905146860000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "133", "sL_BldgLoss": "133", "sL_StrLoss": "133", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000067171960A265EC0F6E91D134E614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.591784163999989, 50.758266955000082 ], [ -120.597441104999945, 50.758541018000045 ], [ -120.597008511999945, 50.76212330500006 ], [ -120.59135112099996, 50.761849222000052 ], [ -120.591784163999989, 50.758266955000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006546AAB511385EC0B46D9C3DE58F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.874774753999986, 51.125877850000059 ], [ -120.874816879999912, 51.125513196000078 ], [ -120.874499469999947, 51.125498743000058 ], [ -120.87452041, 51.125317481000081 ], [ -120.874047165999983, 51.125295931000061 ], [ -120.874460971999923, 51.121714063000098 ], [ -120.877353002999953, 51.121845725000085 ], [ -120.877143922999963, 51.121938604000086 ], [ -120.876832494999988, 51.122166498000126 ], [ -120.876467296999976, 51.122672110000032 ], [ -120.876439202999947, 51.12296831 ], [ -120.876933500999954, 51.123741592000059 ], [ -120.877480091999956, 51.12425580200005 ], [ -120.878924409999939, 51.12519008500005 ], [ -120.87908572299996, 51.125400803000019 ], [ -120.879036581999955, 51.125849498000065 ], [ -120.878876551999937, 51.126064536000051 ], [ -120.874774753999986, 51.125877850000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999999253737636", "sL_AssetLoss": "134.00113", "sL_BldgLoss": "134.00103", "sL_StrLoss": "134", "sL_NStrLoss": "0.00103", "sL_ContLoss": "0.0001", "geom_point": "0101000020E61000008F750EF1512D5EC0F2ECF2AD8F864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.70549227, 51.049334851000076 ], [ -120.711186880999918, 51.049603070000039 ], [ -120.710760609999909, 51.053184611000091 ], [ -120.705065544, 51.05291637199999 ], [ -120.70549227, 51.049334851000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "149.9", "sL_BldgLoss": "149.9", "sL_StrLoss": "149.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FA211DBB973E5EC0C102F3EB62754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.975373169999941, 50.915162494000072 ], [ -120.981052249999962, 50.915417095000073 ], [ -120.980648907999964, 50.919000168000117 ], [ -120.974969374999958, 50.918745548000054 ], [ -120.975373169999941, 50.915162494000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "0.999988676306131", "sL_AssetLoss": "224.838293", "sL_BldgLoss": "224.835747", "sL_StrLoss": "224.800547", "sL_NStrLoss": "0.0352", "sL_ContLoss": "0.002546", "geom_point": "0101000020E61000004BB80C0F8C315EC0FB1222C7F3704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.773124625999955, 50.882724004000082 ], [ -120.773168685999948, 50.881800138000102 ], [ -120.772566768999965, 50.881772024000121 ], [ -120.772986451999941, 50.878189563000063 ], [ -120.77434361899995, 50.878252949000043 ], [ -120.778659658999942, 50.878454418000047 ], [ -120.77824042899999, 50.882036898000102 ], [ -120.776998837999926, 50.881978960000041 ], [ -120.776989692999933, 50.882171029000105 ], [ -120.777415828999949, 50.882179147000109 ], [ -120.777402996999953, 50.882448725000032 ], [ -120.7782552729999, 50.882464957000138 ], [ -120.778203965000017, 50.883543267000071 ], [ -120.777777816999901, 50.8835351500001 ], [ -120.777752154999973, 50.884074305000098 ], [ -120.776899850999925, 50.884058070000094 ], [ -120.77688701699999, 50.884327646000067 ], [ -120.77646086099999, 50.884319526000084 ], [ -120.776448021999968, 50.884589103000025 ], [ -120.775595707999969, 50.884572858000084 ], [ -120.775582864999961, 50.884842434000106 ], [ -120.775156706999979, 50.884834309000084 ], [ -120.775143860999947, 50.885103886000088 ], [ -120.774746395999955, 50.885096307000055 ], [ -120.774594326999946, 50.886394674 ], [ -120.773878526999908, 50.886361253000047 ], [ -120.768920134999945, 50.886129616000048 ], [ -120.76934015099999, 50.8825471870001 ], [ -120.773124625999955, 50.882724004000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "142", "sL_BldgLoss": "142", "sL_StrLoss": "142", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000755C2AC28F2E5EC0F0A33B04E5834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.724477698999976, 51.032068138000064 ], [ -120.724902663999984, 51.02848646100005 ], [ -120.72864458299992, 51.028662177000044 ], [ -120.728416576999933, 51.028709896000073 ], [ -120.728380283999954, 51.028879295000124 ], [ -120.728616698999986, 51.028991796000071 ], [ -120.729060302999969, 51.028964811000023 ], [ -120.729154310999945, 51.028805296000037 ], [ -120.72898389, 51.028678105000012 ], [ -120.730594724999889, 51.028753704000124 ], [ -120.730170213999912, 51.032335401000047 ], [ -120.724477698999976, 51.032068138000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.99999825618471", "sL_AssetLoss": "216.3073132", "sL_BldgLoss": "216.306936", "sL_StrLoss": "216.300106", "sL_NStrLoss": "0.00683", "sL_ContLoss": "0.0003772", "geom_point": "0101000020E610000001A1370DB8365EC04ADBF0A24C934940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.853859424999925, 51.154140132000123 ], [ -120.854254444999967, 51.150736658000064 ], [ -120.849742519999921, 51.150530427000028 ], [ -120.850082362999942, 51.147604471000086 ], [ -120.850413311999972, 51.14762989500008 ], [ -120.850619992999924, 51.14780511000005 ], [ -120.851001011999983, 51.147893407000034 ], [ -120.851261702999949, 51.147826509000012 ], [ -120.851996546, 51.147032779000035 ], [ -120.855866501999927, 51.147209615000072 ], [ -120.855471637999969, 51.150613108000144 ], [ -120.859983597999928, 51.150819110000072 ], [ -120.859568353999975, 51.154400813000038 ], [ -120.853859424999925, 51.154140132000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.968163538873995", "sL_AssetLoss": "0.020888", "sL_BldgLoss": "0.020223", "sL_StrLoss": "0.000523", "sL_NStrLoss": "0.0197", "sL_ContLoss": "0.000665", "geom_point": "0101000020E6100000D837A40FE5305EC04CAEFFC660654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.75981691899996, 50.793205746000091 ], [ -120.759965589999979, 50.791937200000071 ], [ -120.760079990999927, 50.791959306000102 ], [ -120.76053870699999, 50.792174286000083 ], [ -120.760894516999898, 50.792162897 ], [ -120.763328405999971, 50.790834085000036 ], [ -120.765106193999955, 50.790418295000073 ], [ -120.76614450199996, 50.790069306000063 ], [ -120.766813817999946, 50.790037995000063 ], [ -120.7670614099999, 50.790109717000064 ], [ -120.766733205999969, 50.792913966000079 ], [ -120.765984815999971, 50.792878893000122 ], [ -120.765970279999948, 50.793003083000016 ], [ -120.765536480999941, 50.792982750000114 ], [ -120.765479285999959, 50.793471293000074 ], [ -120.75981691899996, 50.793205746000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6450083", "BldgCostT": "4448333", "sL_LossRatio": "0.999989130252051", "sL_AssetLoss": "745.095474", "sL_BldgLoss": "745.087375", "sL_StrLoss": "745.000875", "sL_NStrLoss": "0.0865", "sL_ContLoss": "0.008099", "geom_point": "0101000020E6100000941A77D6303C5EC0A7C7F8280A694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.938649379999958, 50.823765142000084 ], [ -120.938902437999928, 50.821530903000038 ], [ -120.934965306, 50.82135254700011 ], [ -120.935371424999971, 50.817769240000118 ], [ -120.937002266999912, 50.8178431360001 ], [ -120.937034266999888, 50.817560678000127 ], [ -120.94064316599993, 50.817724118000044 ], [ -120.942700745999915, 50.817817249000015 ], [ -120.94257079499999, 50.818965569000099 ], [ -120.945263335999982, 50.819087382000099 ], [ -120.945152134999915, 50.820070491000095 ], [ -120.945348700999915, 50.82007938099999 ], [ -120.94494335899995, 50.823662716000086 ], [ -120.944360245999945, 50.823636341000082 ], [ -120.944316653999934, 50.824021629000057 ], [ -120.94246671599997, 50.823937938000022 ], [ -120.938649379999958, 50.823765142000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999961341852215", "sL_AssetLoss": "268.76611", "sL_BldgLoss": "268.75572", "sL_StrLoss": "268.7", "sL_NStrLoss": "0.05572", "sL_ContLoss": "0.01039", "geom_point": "0101000020E610000073C6A47DBB3D5EC0B927BCC28A6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.962574592999957, 50.873571673000058 ], [ -120.962591212999939, 50.87307892700013 ], [ -120.961908536999914, 50.873223168000088 ], [ -120.962277199999974, 50.869956887000093 ], [ -120.962584728999971, 50.86997073200012 ], [ -120.96795046299998, 50.870212164000129 ], [ -120.967765596999982, 50.871851951000089 ], [ -120.963839945999908, 50.872617970000078 ], [ -120.963670590999953, 50.873621005000111 ], [ -120.962574592999957, 50.873571673000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "72.1", "sL_BldgLoss": "72.1", "sL_StrLoss": "72.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000CCD962852395EC04462CCA758634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.895582641999951, 50.777521646000075 ], [ -120.895594745999929, 50.777252042000057 ], [ -120.895348196000015, 50.777247592000052 ], [ -120.895181963999988, 50.776967525000039 ], [ -120.895193744000025, 50.776705162000027 ], [ -120.895024427999914, 50.77670210400008 ], [ -120.894786344999915, 50.77630097100004 ], [ -120.89479275299999, 50.776158278000075 ], [ -120.894700667999984, 50.776156616000037 ], [ -120.894390737, 50.775634413000091 ], [ -120.894428099999956, 50.774802584000092 ], [ -120.894664524999925, 50.774806854000104 ], [ -120.89612887, 50.774833286000096 ], [ -120.89608046799998, 50.775911700000101 ], [ -120.896505668999936, 50.775919372000054 ], [ -120.896481471999977, 50.776458578000103 ], [ -120.896906679999958, 50.776466249000066 ], [ -120.89685829199999, 50.777544664000068 ], [ -120.896632237999967, 50.777540586000093 ], [ -120.895582641999951, 50.777521646000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.999993334696047", "sL_AssetLoss": "604.323528", "sL_BldgLoss": "604.3195", "sL_StrLoss": "604.3", "sL_NStrLoss": "0.0195", "sL_ContLoss": "0.004028", "geom_point": "0101000020E6100000ACBABB8C6A3D5EC00096AEC3C56D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.956934787999927, 50.860179269000078 ], [ -120.957068337999956, 50.858996911000133 ], [ -120.956177541999935, 50.8589567510001 ], [ -120.956582302999976, 50.85537352100004 ], [ -120.956821775999984, 50.855384318000112 ], [ -120.956892726999982, 50.854756127000051 ], [ -120.95857686, 50.85483204600007 ], [ -120.962564030999914, 50.855011681000065 ], [ -120.96235976299999, 50.856822244000035 ], [ -120.963011039999955, 50.856851573000085 ], [ -120.96260678099992, 50.860434819000027 ], [ -120.959388916999927, 50.860289875000049 ], [ -120.956934787999927, 50.860179269000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16667750", "BldgCostT": "11495000", "sL_LossRatio": "0.999979380592995", "sL_AssetLoss": "2115.628252", "sL_BldgLoss": "2115.584629", "sL_StrLoss": "2115.301599", "sL_NStrLoss": "0.28303", "sL_ContLoss": "0.043623", "geom_point": "0101000020E6100000C9BC3C3A013D5EC0B76CA5BEC96B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.950624622999939, 50.848841620000051 ], [ -120.95066545, 50.848480531000064 ], [ -120.950031426999985, 50.848451904000051 ], [ -120.950415279000012, 50.845057102000034 ], [ -120.947467171, 50.844923941000062 ], [ -120.947575808999915, 50.843963606000102 ], [ -120.94669091099999, 50.843923622000055 ], [ -120.946724115999956, 50.843630127000033 ], [ -120.946595627999969, 50.843624321000064 ], [ -120.946633542999948, 50.843289212000087 ], [ -120.946631551999971, 50.843289121000019 ], [ -120.946689500999923, 50.842776928000063 ], [ -120.946638485999969, 50.842774624000043 ], [ -120.946679380999925, 50.842413175000083 ], [ -120.946479005999976, 50.84240412 ], [ -120.946521777999976, 50.842026085000107 ], [ -120.946372027999956, 50.842019317000059 ], [ -120.946667072999929, 50.839411474000066 ], [ -120.946490682000032, 50.839408370000072 ], [ -120.94656170599994, 50.837790714000107 ], [ -120.946644943999942, 50.837792180000072 ], [ -120.946987482999958, 50.837798209000077 ], [ -120.94699931699995, 50.8375286 ], [ -120.948702420999936, 50.837558562000027 ], [ -120.948695272999942, 50.837721547000079 ], [ -120.948669434999942, 50.838310689000089 ], [ -120.949519973999955, 50.838349111000049 ], [ -120.949526638999941, 50.838197059000066 ], [ -120.949530333999945, 50.838112753000054 ], [ -120.95110486599998, 50.838140420000045 ], [ -120.951136067999983, 50.837864355000107 ], [ -120.951376069, 50.837875192000126 ], [ -120.951531030999959, 50.836504061000021 ], [ -120.95187554499995, 50.836519616000061 ], [ -120.951932042999914, 50.836019669000052 ], [ -120.95760094399999, 50.836275480000104 ], [ -120.957383605999922, 50.838200832000084 ], [ -120.95743808, 50.838203289000077 ], [ -120.957432386999983, 50.838253723000065 ], [ -120.95805216399998, 50.838281672000015 ], [ -120.957957504999968, 50.839120299000101 ], [ -120.95930467699999, 50.839181039000088 ], [ -120.959241541, 50.839740526000114 ], [ -120.959829397999926, 50.839767026000075 ], [ -120.959774263999932, 50.840255637000034 ], [ -120.960175418999981, 50.840273719000045 ], [ -120.960137495999959, 50.840609824000104 ], [ -120.960445633999925, 50.840623711 ], [ -120.960041315999959, 50.844207015000073 ], [ -120.958757579999954, 50.84414915100006 ], [ -120.958737467, 50.844327346000114 ], [ -120.953638933999954, 50.844097381000111 ], [ -120.953566667999908, 50.84473696600007 ], [ -120.953189160999955, 50.844719930000025 ], [ -120.953158471000023, 50.844991527000033 ], [ -120.956106599999913, 50.84512453800005 ], [ -120.956065819999964, 50.845485630000027 ], [ -120.956699804999928, 50.845514223000087 ], [ -120.95629514300002, 50.849097492000098 ], [ -120.954296697999894, 50.849007349000026 ], [ -120.950624622999939, 50.848841620000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287667", "BldgCostT": "3646667", "sL_LossRatio": "0.999984792211075", "sL_AssetLoss": "702.074447", "sL_BldgLoss": "702.06377", "sL_StrLoss": "702.00037", "sL_NStrLoss": "0.0634", "sL_ContLoss": "0.010677", "geom_point": "0101000020E610000090941DB0E53D5EC013D519E7886E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.964335217999917, 50.866722857000049 ], [ -120.964406105999942, 50.866094451000066 ], [ -120.963841643999913, 50.866069044000071 ], [ -120.964118092999939, 50.86361846700008 ], [ -120.964082321999953, 50.863616856000064 ], [ -120.964486490999946, 50.860033618000045 ], [ -120.970158507999926, 50.86028878500008 ], [ -120.969882411999919, 50.862739388000129 ], [ -120.969918182999947, 50.86274099600012 ], [ -120.969847377999898, 50.863369409000072 ], [ -120.970411807999966, 50.863394785000068 ], [ -120.970008083999957, 50.866978031000031 ], [ -120.964335217999917, 50.866722857000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "1", "sL_AssetLoss": "602", "sL_BldgLoss": "602", "sL_StrLoss": "602", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FB80D59933C5EC0ADE9EEF87E6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.944344051999948, 50.834667576000165 ], [ -120.944561140999923, 50.832749244000063 ], [ -120.942568823, 50.83265913200011 ], [ -120.942974434999954, 50.829075844000094 ], [ -120.945292063999901, 50.829180666000049 ], [ -120.948642406999966, 50.829332111000085 ], [ -120.948425508999961, 50.831250459000088 ], [ -120.950417776000023, 50.831340466000057 ], [ -120.950012738999973, 50.834923772000117 ], [ -120.947438976999948, 50.834807487000042 ], [ -120.944344051999948, 50.834667576000165 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999980584787571", "sL_AssetLoss": "335.149565", "sL_BldgLoss": "335.143058", "sL_StrLoss": "335.100158", "sL_NStrLoss": "0.0429", "sL_ContLoss": "0.006507", "geom_point": "0101000020E61000007B8C34E91D3C5EC077C820B92D684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.940507328999971, 50.812148013000062 ], [ -120.942361378999934, 50.812231947000058 ], [ -120.941955870999948, 50.815815302000075 ], [ -120.941562719999979, 50.815797507000092 ], [ -120.936289649999949, 50.815558694000082 ], [ -120.93669560799999, 50.811975358000076 ], [ -120.940507328999971, 50.812148013000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "83.8", "sL_BldgLoss": "83.8", "sL_StrLoss": "83.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D16418DA6D3D5EC0FB54FC7C676C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.959337399999967, 50.847728318000044 ], [ -120.95936093499995, 50.847189096000051 ], [ -120.958935066999985, 50.847181647000077 ], [ -120.95898214499999, 50.846103203000048 ], [ -120.960259715999925, 50.846125548000032 ], [ -120.96024795299995, 50.846395159000032 ], [ -120.960673813, 50.846402605000037 ], [ -120.960615015999963, 50.847750660000031 ], [ -120.959337399999967, 50.847728318000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7230667", "BldgCostT": "4986667", "sL_LossRatio": "1", "sL_AssetLoss": "702.7", "sL_BldgLoss": "702.7", "sL_StrLoss": "702.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029A215CE643B5EC03D89BE7108664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.928599547999966, 50.800777769000064 ], [ -120.928611471999957, 50.800508161000067 ], [ -120.927760603999943, 50.800493045000053 ], [ -120.927784462999938, 50.799953830000078 ], [ -120.927359033999906, 50.799946269000053 ], [ -120.927382895999983, 50.799407054000056 ], [ -120.926957472999916, 50.799399492000127 ], [ -120.926969404999937, 50.799129884000138 ], [ -120.925693141999943, 50.799107190000015 ], [ -120.925705083999929, 50.798837582000083 ], [ -120.924854246999985, 50.798822444000074 ], [ -120.924866192999986, 50.798552837000081 ], [ -120.92401536099996, 50.798537694000053 ], [ -120.924027309999943, 50.798268087000025 ], [ -120.923601898999934, 50.798260513000059 ], [ -120.923613849999953, 50.797990906000095 ], [ -120.923188441, 50.797983330000079 ], [ -120.923212349999986, 50.797444116000065 ], [ -120.922786944999928, 50.797436540000028 ], [ -120.922810857999963, 50.796897325000081 ], [ -120.922385458999912, 50.796889748000048 ], [ -120.922409375999933, 50.796350533000108 ], [ -120.921983979999979, 50.796342954000131 ], [ -120.922007900999986, 50.795803740000089 ], [ -120.921582510999912, 50.795796159000041 ], [ -120.921642323999933, 50.794448125 ], [ -120.922918456999952, 50.794470862000033 ], [ -120.922906502999965, 50.794740469000025 ], [ -120.923757261999981, 50.794755620000082 ], [ -120.923769211999954, 50.794486013000068 ], [ -120.923343833999951, 50.794478439000052 ], [ -120.923403592999975, 50.793130402000081 ], [ -120.92467968899993, 50.793153120000106 ], [ -120.924655800999943, 50.793692335000038 ], [ -120.925081173999956, 50.793699905000082 ], [ -120.925057289999955, 50.79423911900011 ], [ -120.925482665999965, 50.794246688000058 ], [ -120.925458785999965, 50.79478590300004 ], [ -120.925884167, 50.794793469000048 ], [ -120.92589610499999, 50.794523862000069 ], [ -120.928448382999989, 50.794569231000068 ], [ -120.928436459999944, 50.794838839000121 ], [ -120.928861842999979, 50.794846395000064 ], [ -120.928849922999987, 50.795116003 ], [ -120.929700692999987, 50.795131110000071 ], [ -120.929712607999988, 50.794861502000039 ], [ -120.929287225999957, 50.794853949000071 ], [ -120.929346813, 50.793505907000117 ], [ -120.929759113999964, 50.793513229 ], [ -120.930622927999934, 50.793528561000095 ], [ -120.930611015999929, 50.793798170000102 ], [ -120.931036391999911, 50.793805717000119 ], [ -120.93100066699995, 50.794614542000026 ], [ -120.93142604799999, 50.794622089000093 ], [ -120.931390330999932, 50.79543091500004 ], [ -120.931815719999932, 50.795438460000064 ], [ -120.931768102999953, 50.79651689400005 ], [ -120.93219350399994, 50.796524438000063 ], [ -120.93216969799991, 50.79706365500008 ], [ -120.932595100999961, 50.797071198000054 ], [ -120.932583200999957, 50.797340806000093 ], [ -120.933008608999984, 50.797348348000106 ], [ -120.932984812999905, 50.797887566000057 ], [ -120.933410223999928, 50.797895105000052 ], [ -120.933386433, 50.798434322000041 ], [ -120.933811849999969, 50.798441861000072 ], [ -120.933799953999966, 50.798711469000061 ], [ -120.934225374000022, 50.798719007000052 ], [ -120.934177808999948, 50.799797442000077 ], [ -120.933752378999912, 50.799789905000054 ], [ -120.933740484999973, 50.800059513000079 ], [ -120.933661460999986, 50.800058113000034 ], [ -120.933315054000033, 50.800051975000031 ], [ -120.933303155999965, 50.800321583 ], [ -120.931601422999961, 50.800291412000036 ], [ -120.931577607999913, 50.800830629000053 ], [ -120.928599547999966, 50.800777769000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999986760728209", "sL_AssetLoss": "401.83479", "sL_BldgLoss": "401.82947", "sL_StrLoss": "401.8", "sL_NStrLoss": "0.02947", "sL_ContLoss": "0.00532", "geom_point": "0101000020E6100000FDB031F1BF3B5EC0E3B732F243674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.930960872999933, 50.804840907000049 ], [ -120.936625708999941, 50.805097789000094 ], [ -120.936219803999919, 50.808681153000116 ], [ -120.930554519999987, 50.808424252000108 ], [ -120.930960872999933, 50.804840907000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9770584", "BldgCostT": "6738334", "sL_LossRatio": "0.999988628530748", "sL_AssetLoss": "1316.01288", "sL_BldgLoss": "1315.997915", "sL_StrLoss": "1315.900315", "sL_NStrLoss": "0.0976", "sL_ContLoss": "0.014965", "geom_point": "0101000020E6100000524B8CC8643A5EC026EFB12ECD614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.908448250000021, 50.769295729000085 ], [ -120.908589416000012, 50.768055235000126 ], [ -120.907909414999978, 50.768024216000057 ], [ -120.908317213999936, 50.76444078600008 ], [ -120.911912879999974, 50.764604757000079 ], [ -120.91195989, 50.764606900000103 ], [ -120.912233540999949, 50.762200199000084 ], [ -120.90862074599994, 50.762035447000052 ], [ -120.909028435, 50.758451989000079 ], [ -120.914687280999942, 50.758709994000057 ], [ -120.914346383999884, 50.761709745000097 ], [ -120.917959173999989, 50.761874312000025 ], [ -120.917552168999947, 50.765457788000035 ], [ -120.913909405999945, 50.765291856000083 ], [ -120.913835806999941, 50.765939331000062 ], [ -120.914515779999988, 50.765970314000064 ], [ -120.914125028999976, 50.769408014000099 ], [ -120.914108461999888, 50.769553761000083 ], [ -120.908448250000021, 50.769295729000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "159", "sL_BldgLoss": "159", "sL_StrLoss": "159", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007A42A7CE400E5EC05C1723B74B8A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.22009080399998, 51.078499499000067 ], [ -120.225786086999989, 51.078792259000089 ], [ -120.225320471999964, 51.082371763000033 ], [ -120.219624732999961, 51.082078980000077 ], [ -120.22009080399998, 51.078499499000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "165.8", "sL_BldgLoss": "165.8", "sL_StrLoss": "165.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099EC860AE10A5EC009D341A81C894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.167373540999961, 51.0692496570001 ], [ -120.173067292999946, 51.06954508500008 ], [ -120.172597532999973, 51.073124406000069 ], [ -120.166903326999957, 51.072828955000091 ], [ -120.167373540999961, 51.0692496570001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "140.7", "sL_BldgLoss": "140.7", "sL_StrLoss": "140.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016363D071A0F5EC0C957C00CDF794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.237331533999949, 50.949650275000103 ], [ -120.237612359999915, 50.949664718000086 ], [ -120.237592481999954, 50.949717500000055 ], [ -120.23750798699993, 50.951146011000048 ], [ -120.237635026999897, 50.9523258910001 ], [ -120.237673908999966, 50.952687008000062 ], [ -120.23805700299998, 50.953893305000086 ], [ -120.238319390999962, 50.954462909000071 ], [ -120.238297350999943, 50.954633235000117 ], [ -120.2345571809999, 50.954440865000045 ], [ -120.234226951, 50.954423874000057 ], [ -120.23422039499998, 50.954099920000054 ], [ -120.234213821999944, 50.953774308000106 ], [ -120.234164441999951, 50.951552901000042 ], [ -120.234159046999963, 50.951309623000022 ], [ -120.234126658999969, 50.949852341000103 ], [ -120.234118514, 50.949484978000037 ], [ -120.234480091999941, 50.949503585000059 ], [ -120.237331533999949, 50.949650275000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999993701707609", "sL_AssetLoss": "144.007287", "sL_BldgLoss": "144.00638", "sL_StrLoss": "144", "sL_NStrLoss": "0.00638", "sL_ContLoss": "0.000907", "geom_point": "0101000020E6100000B4FCC8C6260F5EC09179CB72E5834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.236836783999976, 51.031766207000011 ], [ -120.235848314999899, 51.031365996 ], [ -120.235132815999947, 51.0309174060001 ], [ -120.23427609499997, 51.029484595000021 ], [ -120.233061210999949, 51.028330994000022 ], [ -120.232632485999957, 51.027628909000043 ], [ -120.232384390999982, 51.026750088000028 ], [ -120.232382014999956, 51.026700415000079 ], [ -120.234468972999949, 51.02680762800005 ], [ -120.234173637999945, 51.029084363000031 ], [ -120.236851350999927, 51.029221867000039 ], [ -120.236559563999933, 51.031472055000066 ], [ -120.241279059999911, 51.031714251000096 ], [ -120.241021854999985, 51.033699179000131 ], [ -120.240970217999944, 51.033753003000101 ], [ -120.240813319999972, 51.033750096000034 ], [ -120.238662411999925, 51.032736085000067 ], [ -120.236836783999976, 51.031766207000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.3", "sL_BldgLoss": "43.3", "sL_StrLoss": "43.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C33C12CCA40F5EC053E5DE70DD824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.244239364999913, 51.02046589400004 ], [ -120.245170141999949, 51.020513624000053 ], [ -120.244861116999971, 51.022900692000086 ], [ -120.244706693999944, 51.024093437000033 ], [ -120.244016801999976, 51.024058061000105 ], [ -120.243261837999967, 51.024019342000038 ], [ -120.243897908999955, 51.023091302000061 ], [ -120.244200094999911, 51.022343605000067 ], [ -120.244170680999943, 51.021883595000048 ], [ -120.244115205999933, 51.021352404000062 ], [ -120.244239364999913, 51.02046589400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "208.4", "sL_BldgLoss": "208.4", "sL_StrLoss": "208.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB3DCE552F0F5EC0318308A31F884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.238990359999917, 51.061267388000054 ], [ -120.240541534999934, 51.061346924000055 ], [ -120.240077288999899, 51.064926557000085 ], [ -120.239805085999947, 51.064912601000103 ], [ -120.239680126999943, 51.065875965000068 ], [ -120.237224106999989, 51.065750018000074 ], [ -120.233986404999911, 51.065583903000075 ], [ -120.234451147999934, 51.062004297000101 ], [ -120.23472333199993, 51.062018266000045 ], [ -120.234848386, 51.061054904000081 ], [ -120.238990359999917, 51.061267388000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "313", "sL_BldgLoss": "313", "sL_StrLoss": "313", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DBB998FB3115EC07F243669E4714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.273820379999918, 50.892771509000092 ], [ -120.27415918899996, 50.890132999000102 ], [ -120.273217340999935, 50.890084798000082 ], [ -120.273677115999959, 50.886504330000044 ], [ -120.274390888999946, 50.886540859 ], [ -120.279348280999955, 50.886794442000067 ], [ -120.27900980299998, 50.889432979000084 ], [ -120.279951643999965, 50.889481131000061 ], [ -120.279492340999937, 50.893061613000079 ], [ -120.274552539999945, 50.892808973000072 ], [ -120.273820379999918, 50.892771509000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "184.3", "sL_BldgLoss": "184.3", "sL_StrLoss": "184.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FDCFF53330E5EC0802B768756854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.223553898999938, 51.039987345000064 ], [ -120.224960738000021, 51.040059712000065 ], [ -120.224495461999965, 51.043639365000026 ], [ -120.222840681999969, 51.04355424300006 ], [ -120.218804682999973, 51.043346528000058 ], [ -120.219270413999951, 51.039766899000085 ], [ -120.223553898999938, 51.039987345000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "138.3", "sL_BldgLoss": "138.3", "sL_StrLoss": "138.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000089F415830B105EC0046E1FEA257B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.251632726999958, 50.960189833000051 ], [ -120.253562281999947, 50.960288784000099 ], [ -120.253100132999947, 50.963868872000091 ], [ -120.251296181999948, 50.96377636400009 ], [ -120.247419340999969, 50.96357745600011 ], [ -120.247713196999911, 50.961303384000125 ], [ -120.248486788999969, 50.961272101000084 ], [ -120.248776392999972, 50.961179503000068 ], [ -120.249493403999935, 50.960863398000065 ], [ -120.250160682999962, 50.960169806000039 ], [ -120.250165763999917, 50.960114582000053 ], [ -120.251632726999958, 50.960189833000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "205.3", "sL_BldgLoss": "205.3", "sL_StrLoss": "205.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BFAB506A500F5EC07BEC57CF83874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.240350165999956, 51.056636251000036 ], [ -120.242806135999956, 51.05676215400004 ], [ -120.242342118999915, 51.060341815000072 ], [ -120.24153718499997, 51.060300557000083 ], [ -120.241453013999958, 51.060949734000118 ], [ -120.239066779999945, 51.060827390000078 ], [ -120.235759910999917, 51.060657760000069 ], [ -120.23622446, 51.05707812800005 ], [ -120.237029329999984, 51.057119424000106 ], [ -120.237113557999962, 51.05647024700005 ], [ -120.240350165999956, 51.056636251000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15080000", "BldgCostT": "10400000", "sL_LossRatio": "1", "sL_AssetLoss": "1118", "sL_BldgLoss": "1118", "sL_StrLoss": "1118", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDAD0BC370105EC0CDB3CC0106784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.252864180999921, 50.945555238000033 ], [ -120.252876718999957, 50.945458088000088 ], [ -120.250689716999958, 50.945345879000094 ], [ -120.25115186699999, 50.94176572600005 ], [ -120.251195960999979, 50.94176799000013 ], [ -120.251305409999958, 50.94092002800005 ], [ -120.252297539999944, 50.94097093600007 ], [ -120.252639803999955, 50.938318554000034 ], [ -120.252907475999976, 50.938332287000051 ], [ -120.253017136999944, 50.93748236100005 ], [ -120.253087884999943, 50.937485990000091 ], [ -120.253147750999958, 50.937021965000106 ], [ -120.253135977999989, 50.937021361000063 ], [ -120.253308405999945, 50.935684853000133 ], [ -120.253860595999967, 50.935106491000099 ], [ -120.254803186999936, 50.933860394000121 ], [ -120.254980017999955, 50.933505708000062 ], [ -120.255063584999931, 50.932329301000053 ], [ -120.255080798, 50.932050205000046 ], [ -120.255481685999968, 50.930053404000063 ], [ -120.255483719999944, 50.928831496000065 ], [ -120.255270997999943, 50.928313095000057 ], [ -120.255185309999959, 50.927367385000061 ], [ -120.255353066999987, 50.92689242100009 ], [ -120.256817616999953, 50.926967538000028 ], [ -120.258911, 50.927074877000024 ], [ -120.258616419999925, 50.92936086200006 ], [ -120.259736130999926, 50.929418258000034 ], [ -120.259668145999939, 50.929945899000074 ], [ -120.260663934999982, 50.929996934000023 ], [ -120.260477546999965, 50.931443710000089 ], [ -120.261584106, 50.93150041100003 ], [ -120.26112289699999, 50.935080647000071 ], [ -120.259793749999957, 50.935012540000059 ], [ -120.259762547999927, 50.935254680000071 ], [ -120.259497277999969, 50.935241084000047 ], [ -120.259353329999939, 50.936358069000057 ], [ -120.26231472299996, 50.936509800000096 ], [ -120.261853520999949, 50.94009002000012 ], [ -120.26127191799992, 50.940060227000124 ], [ -120.260815181999988, 50.943604837000073 ], [ -120.258844698999923, 50.943503874000086 ], [ -120.258542712999912, 50.94584638500001 ], [ -120.253351762999927, 50.945580249000074 ], [ -120.252864180999921, 50.945555238000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "138.9", "sL_BldgLoss": "138.9", "sL_StrLoss": "138.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DBA70D6160F5EC07576CF0D0F794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.234001978999913, 50.944237222000091 ], [ -120.233989186999949, 50.943661860000084 ], [ -120.23398299099992, 50.943383108000035 ], [ -120.234053186999944, 50.942840708000041 ], [ -120.234117503999983, 50.942344037000048 ], [ -120.234118494999947, 50.942341374000129 ], [ -120.234426519999957, 50.942348674000122 ], [ -120.235131089999967, 50.94236537000009 ], [ -120.235099098, 50.942904296000066 ], [ -120.235525612999979, 50.942914400000035 ], [ -120.235455100999928, 50.944102451000077 ], [ -120.23848632, 50.944258380000072 ], [ -120.238350097999955, 50.944644514000103 ], [ -120.238147892999933, 50.945161502000083 ], [ -120.238052296999925, 50.946031711000032 ], [ -120.238025100999963, 50.946750892000061 ], [ -120.237816007999953, 50.947168204000072 ], [ -120.23782034299991, 50.947757445000079 ], [ -120.237820699999972, 50.947806187000019 ], [ -120.237821050999955, 50.947828078000065 ], [ -120.237793549999964, 50.947826663000093 ], [ -120.235241824999946, 50.947695400000072 ], [ -120.235157722999958, 50.949112053000079 ], [ -120.234473235999957, 50.949095835000065 ], [ -120.234109682999986, 50.949087220000074 ], [ -120.234077285999902, 50.947629816000116 ], [ -120.234039548999945, 50.945929268000086 ], [ -120.234025764999984, 50.945308099000087 ], [ -120.234006953999966, 50.944462072000135 ], [ -120.234001978999913, 50.944237222000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "93.4", "sL_BldgLoss": "93.4", "sL_StrLoss": "93.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DC772BF81105EC08D0A9C6C03764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.257047735999947, 50.920053845000055 ], [ -120.259732996999929, 50.920191541000115 ], [ -120.259271756999965, 50.923771815000045 ], [ -120.255834580999931, 50.923595552000073 ], [ -120.25583600799996, 50.923559001000065 ], [ -120.25599829, 50.922725911000036 ], [ -120.257047735999947, 50.920053845000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "186.6", "sL_BldgLoss": "186.6", "sL_StrLoss": "186.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082D45888EF105EC0A283688C5A6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.26234701199995, 50.86885267300007 ], [ -120.262354411999965, 50.868570705000138 ], [ -120.262576854999978, 50.867352975000074 ], [ -120.264224414999958, 50.86743749000005 ], [ -120.26422339899996, 50.867449504 ], [ -120.264231894999938, 50.868024910000031 ], [ -120.264436811999971, 50.868650108000054 ], [ -120.26454411499995, 50.868778298000052 ], [ -120.26485500199999, 50.868786789000076 ], [ -120.265014802999957, 50.868718399000045 ], [ -120.265206479999947, 50.868362397000055 ], [ -120.265468709999979, 50.868269801000018 ], [ -120.265904811999917, 50.868594489000081 ], [ -120.266842080999979, 50.869570095000036 ], [ -120.267331138999936, 50.869808194000029 ], [ -120.267053172999965, 50.871971348000052 ], [ -120.262801773999925, 50.871753346000084 ], [ -120.262833498999925, 50.871167690000071 ], [ -120.262754111999953, 50.870742912000068 ], [ -120.262593899999928, 50.870230746000047 ], [ -120.262429607999962, 50.869705397000061 ], [ -120.262338714999942, 50.869169088000042 ], [ -120.26234701199995, 50.86885267300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13158750", "BldgCostT": "9075000", "sL_LossRatio": "1", "sL_AssetLoss": "1065", "sL_BldgLoss": "1065", "sL_StrLoss": "1065", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000732DFFC643115EC09C6A4EDA2B744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.265609042999969, 50.916565840000082 ], [ -120.265935766000013, 50.914026535000097 ], [ -120.26472119, 50.91396432100003 ], [ -120.265181892999962, 50.910383984000134 ], [ -120.266738635999943, 50.910463723000078 ], [ -120.267059150999955, 50.907971822000022 ], [ -120.267857129999982, 50.908012688000028 ], [ -120.267983492999988, 50.907030046000017 ], [ -120.265758011999978, 50.90691606200015 ], [ -120.266218558999967, 50.903335693000059 ], [ -120.266856450999967, 50.903368369000134 ], [ -120.266945409999948, 50.902676639000084 ], [ -120.2670082, 50.902684412000085 ], [ -120.267421622999962, 50.902657407000035 ], [ -120.268017511, 50.902446585000078 ], [ -120.268157814999981, 50.902215895000033 ], [ -120.268022895999977, 50.901385492000031 ], [ -120.267925609999949, 50.901086489000065 ], [ -120.268171793999926, 50.900291705000043 ], [ -120.268552019999944, 50.899887300000067 ], [ -120.268392091999914, 50.899199412 ], [ -120.267905787999965, 50.89874789 ], [ -120.267588213999915, 50.898580087000084 ], [ -120.267639897, 50.898178114000061 ], [ -120.270750035, 50.898337377000132 ], [ -120.273312504, 50.898468529000084 ], [ -120.273149498999956, 50.899737548000125 ], [ -120.274704245999899, 50.899817094000127 ], [ -120.274244415999974, 50.903397512000076 ], [ -120.272574262999939, 50.903312061000101 ], [ -120.27252875799999, 50.903666251000082 ], [ -120.271890856999974, 50.903633608000071 ], [ -120.271621155999938, 50.905732460000074 ], [ -120.273846592000012, 50.905846328000052 ], [ -120.273621892999955, 50.907595481000065 ], [ -120.274300996999955, 50.907630220000023 ], [ -120.273841053999931, 50.911210605000043 ], [ -120.272363854999952, 50.911135035000058 ], [ -120.272272923999964, 50.911842639000071 ], [ -120.270716121999925, 50.911762976000041 ], [ -120.270529615000015, 50.913213848000083 ], [ -120.271744179999928, 50.913276000000103 ], [ -120.271283972999953, 50.916856352000124 ], [ -120.266101278999912, 50.916591051000047 ], [ -120.265609042999969, 50.916565840000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "245", "sL_BldgLoss": "245", "sL_StrLoss": "245", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024EC3E743F125EC0BE917173C76E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.287796512999989, 50.863912941000109 ], [ -120.287889717, 50.863184845000063 ], [ -120.288181286999958, 50.863403312000067 ], [ -120.288719396999937, 50.863658207000057 ], [ -120.288838721999966, 50.863823404000101 ], [ -120.288839885999963, 50.863859334000068 ], [ -120.288792384999937, 50.864069375000014 ], [ -120.288766300999939, 50.864203740000079 ], [ -120.288763407999966, 50.864223069000069 ], [ -120.288474803999947, 50.864480010000115 ], [ -120.288458886999962, 50.86453711100004 ], [ -120.288072213999968, 50.864517360000036 ], [ -120.287894649999984, 50.865904408000056 ], [ -120.28729868799995, 50.866611995000035 ], [ -120.286988303999962, 50.867315612000063 ], [ -120.28685756099999, 50.867469012000086 ], [ -120.282020132999932, 50.867221781000104 ], [ -120.282478968999925, 50.863641183000041 ], [ -120.287796512999989, 50.863912941000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12494167", "BldgCostT": "8616667", "sL_LossRatio": "1", "sL_AssetLoss": "1171", "sL_BldgLoss": "1171", "sL_StrLoss": "1171", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D936182C4D0F5EC07B892D141B764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.235400487999968, 50.931144692000053 ], [ -120.235462021999965, 50.930489468000175 ], [ -120.23554219699993, 50.929635895000082 ], [ -120.235556822999953, 50.929430018000048 ], [ -120.235564699999927, 50.929319010000043 ], [ -120.235592550999982, 50.929061658000137 ], [ -120.235704638999906, 50.928025972000043 ], [ -120.235729450999912, 50.927796748000027 ], [ -120.235790578999982, 50.92723178500011 ], [ -120.235866318999953, 50.926532106000153 ], [ -120.236025302000016, 50.92506299800003 ], [ -120.236031881999963, 50.924837019000144 ], [ -120.236037737999965, 50.92463562700005 ], [ -120.236037153999973, 50.924198603000022 ], [ -120.235977855999934, 50.923221573000035 ], [ -120.235926966999969, 50.922853078000124 ], [ -120.235317991999949, 50.920759378000135 ], [ -120.23512489699999, 50.919491711 ], [ -120.235087602999954, 50.919239206000057 ], [ -120.235182793999911, 50.91850350700004 ], [ -120.235215608, 50.918294404000093 ], [ -120.235258190999943, 50.918166030000066 ], [ -120.23550571, 50.917419840000051 ], [ -120.235550327999931, 50.917285404000026 ], [ -120.235916708999952, 50.916583413000119 ], [ -120.236119096999943, 50.916296506000108 ], [ -120.236444812999963, 50.915834799000059 ], [ -120.23707168599999, 50.915095799000042 ], [ -120.237858704999923, 50.914398398000152 ], [ -120.239205183999957, 50.913516198000153 ], [ -120.241038796999987, 50.912576217000037 ], [ -120.241180915999905, 50.912501941000102 ], [ -120.241299193, 50.912440092000104 ], [ -120.24162921199995, 50.91226508200004 ], [ -120.242655767999935, 50.911720636000048 ], [ -120.24386079599999, 50.9110814920001 ], [ -120.243877529999935, 50.911069868000027 ], [ -120.24424458199999, 50.910814472 ], [ -120.244683554999966, 50.910837041000029 ], [ -120.244707103999971, 50.910438462000059 ], [ -120.244975883000023, 50.910217119000023 ], [ -120.245146757999962, 50.910221153000087 ], [ -120.245158098999951, 50.910029167000062 ], [ -120.245429455999954, 50.909688142000086 ], [ -120.245604807999896, 50.909692283000076 ], [ -120.245619472999962, 50.909443989000088 ], [ -120.245760862999987, 50.909222220000096 ], [ -120.245802281999929, 50.909157258000043 ], [ -120.246062847999923, 50.909163409 ], [ -120.24608984299999, 50.9087062360001 ], [ -120.246141271999974, 50.908625574000034 ], [ -120.246520876999966, 50.90863453300009 ], [ -120.246558163, 50.908002976000063 ], [ -120.246690862, 50.907829016000086 ], [ -120.246994801999961, 50.907836189000079 ], [ -120.247014246999967, 50.90750676600004 ], [ -120.247223210999948, 50.907301893000046 ], [ -120.248305192999965, 50.907327417000019 ], [ -120.24824159799999, 50.908405288000054 ], [ -120.247815393999971, 50.908395236000047 ], [ -120.247767686999964, 50.909203639000125 ], [ -120.247341475999974, 50.909193584000072 ], [ -120.24729376099998, 50.910001986000076 ], [ -120.246867543999883, 50.909991929000043 ], [ -120.246835726999976, 50.910530865000034 ], [ -120.246409504999974, 50.910520805000068 ], [ -120.246393594, 50.910790273000046 ], [ -120.24596736899997, 50.910780213000059 ], [ -120.245935539999948, 50.911319148000068 ], [ -120.244668099999956, 50.911289222000022 ], [ -120.24426386, 50.914419484000085 ], [ -120.243367548, 50.914373400000066 ], [ -120.243311241999947, 50.91480930500007 ], [ -120.24048619699991, 50.914664007000084 ], [ -120.24004479199999, 50.918079274000092 ], [ -120.239109319999898, 50.918031146000068 ], [ -120.238745649999885, 50.920844095000064 ], [ -120.239989372999972, 50.920908082 ], [ -120.239730706999978, 50.922909041 ], [ -120.241130772999938, 50.922981055000072 ], [ -120.240835714999932, 50.925263868000137 ], [ -120.240971735999921, 50.925270864000076 ], [ -120.24070502799999, 50.927334178000109 ], [ -120.242349333, 50.927418730000106 ], [ -120.241886624999935, 50.930998903000074 ], [ -120.239592406999947, 50.930880927000068 ], [ -120.239584606999969, 50.930941255000114 ], [ -120.23960707599997, 50.930942411000046 ], [ -120.239144111000016, 50.934522559000058 ], [ -120.235102725999951, 50.934314623000027 ], [ -120.235251222, 50.932733642000102 ], [ -120.235400487999968, 50.931144692000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "118.2", "sL_BldgLoss": "118.2", "sL_StrLoss": "118.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B5B3CFE430E5EC08F496F4D748B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.220126317999942, 51.091206078000035 ], [ -120.220141890999983, 51.091086510000117 ], [ -120.219510806999921, 51.091054062000083 ], [ -120.219976980999945, 51.08747461600008 ], [ -120.223533301999979, 51.087657423000095 ], [ -120.225673414, 51.087767379000063 ], [ -120.225657857999977, 51.087886948000126 ], [ -120.226288899999957, 51.087919362000058 ], [ -120.225823229999932, 51.091498832000127 ], [ -120.223261615999959, 51.091367231000014 ], [ -120.220126317999942, 51.091206078000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999998329013311", "sL_AssetLoss": "76.601448", "sL_BldgLoss": "76.60132", "sL_StrLoss": "76.6", "sL_NStrLoss": "0.00132", "sL_ContLoss": "0.000128", "geom_point": "0101000020E610000091838E2DB60E5EC068AF803ACC824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.231177476000013, 51.024046161000108 ], [ -120.228635990000015, 51.022668407000033 ], [ -120.228512805999955, 51.022349295000041 ], [ -120.228493896999979, 51.021450687000012 ], [ -120.228640016999961, 51.02068020600008 ], [ -120.229548526999949, 51.02002650400005 ], [ -120.230618409, 51.019445725 ], [ -120.230289739999961, 51.021978153000113 ], [ -120.231327657999955, 51.022031505 ], [ -120.231219833999944, 51.022862380000042 ], [ -120.23129041699994, 51.022866007000033 ], [ -120.231210313999938, 51.023483257000038 ], [ -120.231250261999975, 51.023485310000112 ], [ -120.231177476000013, 51.024046161000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "322.8", "sL_BldgLoss": "322.8", "sL_StrLoss": "322.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000052C5E0A3360E5EC06388523184814940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.219784456999946, 51.011541468000068 ], [ -120.220205617999937, 51.008301452000104 ], [ -120.222445483999948, 51.008416813000075 ], [ -120.225891930999964, 51.008594230000028 ], [ -120.225774021999925, 51.009502250000047 ], [ -120.225795098000034, 51.009503334000058 ], [ -120.225330206999928, 51.013083111000107 ], [ -120.224104724999904, 51.013020038000036 ], [ -120.223801773000019, 51.015352041 ], [ -120.221614545999941, 51.015239436000051 ], [ -120.218114610999976, 51.015059160000057 ], [ -120.218580101999919, 51.011479421000082 ], [ -120.219784456999946, 51.011541468000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "101.8", "sL_BldgLoss": "101.8", "sL_StrLoss": "101.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000633D5A41780A5EC0C980E484A68C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.161543617999911, 51.097824881000065 ], [ -120.16724099, 51.098120595000118 ], [ -120.167057129999975, 51.09951922800014 ], [ -120.166912905999936, 51.099513011000035 ], [ -120.163956301999974, 51.099980088000123 ], [ -120.163412189, 51.100002909000118 ], [ -120.16152531399996, 51.099534409000078 ], [ -120.160025054999963, 51.099363803000102 ], [ -120.160231276999937, 51.097796951000085 ], [ -120.160936412999931, 51.097833574000084 ], [ -120.16093724299995, 51.097827267000042 ], [ -120.161539190999974, 51.097858527000042 ], [ -120.161543617999911, 51.097824881000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "87.6", "sL_BldgLoss": "87.6", "sL_StrLoss": "87.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D1BE1C4C20F5EC0AA37595911804940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.244956401999929, 50.998632809000071 ], [ -120.248075837999949, 50.998792804000139 ], [ -120.247612846999957, 51.00237271600006 ], [ -120.244814259999913, 51.00222918100004 ], [ -120.244273939999943, 51.002216430000061 ], [ -120.244623286999939, 51.00081023700011 ], [ -120.244924300999941, 50.999598426000055 ], [ -120.244956401999929, 50.998632809000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.9", "sL_BldgLoss": "39.9", "sL_StrLoss": "39.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005AEB93F5BE0B5EC0F9D7F2CAF58A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.185085520999934, 51.083645560000043 ], [ -120.186010541999977, 51.083667846 ], [ -120.185945097999962, 51.084745627000082 ], [ -120.185517298999969, 51.084735322000029 ], [ -120.185468205999939, 51.085543657000109 ], [ -120.185040399999977, 51.085533350000077 ], [ -120.185024032999962, 51.085802795000056 ], [ -120.184596223999961, 51.085792486000088 ], [ -120.18457985400002, 51.086061931000131 ], [ -120.184152043999987, 51.086051619000074 ], [ -120.184135670999936, 51.086321064000082 ], [ -120.183707856999931, 51.086310752000031 ], [ -120.183691481999972, 51.086580196000064 ], [ -120.183263666999949, 51.08656988300006 ], [ -120.183247287999933, 51.086839327000085 ], [ -120.18281947199992, 51.086829011000106 ], [ -120.182806168999917, 51.087047821000098 ], [ -120.182637390999943, 51.087094459000092 ], [ -120.181519631999933, 51.087067498000131 ], [ -120.181505195999975, 51.087304827000075 ], [ -120.181236568999964, 51.087330507000061 ], [ -120.180219779999916, 51.087305970000074 ], [ -120.180255620999958, 51.086716975000044 ], [ -120.180268966999961, 51.08649763800004 ], [ -120.181031750999963, 51.086516046000092 ], [ -120.181552407999931, 51.086528609000084 ], [ -120.18156299099995, 51.086354585000066 ], [ -120.181568795999937, 51.086259164000047 ], [ -120.181854279999968, 51.086266052000063 ], [ -120.181996608999953, 51.086269485000066 ], [ -120.182001282999963, 51.086192609000101 ], [ -120.182012994000019, 51.086000041000048 ], [ -120.182310693999966, 51.086007221000031 ], [ -120.182440802999963, 51.086010360000088 ], [ -120.18244591899996, 51.08592619900007 ], [ -120.182457185999937, 51.085740915000031 ], [ -120.182696540999984, 51.085746688000086 ], [ -120.182884992999973, 51.08575123300006 ], [ -120.182895268999943, 51.085582184000067 ], [ -120.182917750999962, 51.08521234200002 ], [ -120.183311460999974, 51.08522183700002 ], [ -120.183345553, 51.085222659000117 ], [ -120.183347553999965, 51.085189768000077 ], [ -120.183361930999965, 51.084953214000109 ], [ -120.183607146, 51.084959126000093 ], [ -120.183789729999887, 51.084963528000038 ], [ -120.183800434999924, 51.084787390000045 ], [ -120.183822478999986, 51.084424637000069 ], [ -120.184198506999977, 51.084433702000105 ], [ -120.18425027399999, 51.084434949000084 ], [ -120.184253307999953, 51.084385010000027 ], [ -120.18426664499998, 51.084165505000037 ], [ -120.18449418299997, 51.084170989000015 ], [ -120.184694438999912, 51.08417581500003 ], [ -120.184706174, 51.083982627000054 ], [ -120.18472717499999, 51.08363692500005 ], [ -120.185085520999934, 51.083645560000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13182917", "BldgCostT": "9091667", "sL_LossRatio": "1", "sL_AssetLoss": "1033.5", "sL_BldgLoss": "1033.5", "sL_StrLoss": "1033.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FC6DDDEBD0D5EC021F9739F56884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.209424744, 51.071904423000056 ], [ -120.209457351999944, 51.071362625000063 ], [ -120.206576802999933, 51.071214144000088 ], [ -120.207043809999917, 51.067634673000079 ], [ -120.207416351999967, 51.067653881000091 ], [ -120.207482618999933, 51.067145882000048 ], [ -120.20774266899997, 51.067159289000053 ], [ -120.207793526999978, 51.066769389000044 ], [ -120.208128965999933, 51.066786682000021 ], [ -120.208188335999921, 51.066331497000149 ], [ -120.208616972999948, 51.06635359200002 ], [ -120.208692246999945, 51.06577640800009 ], [ -120.208963148999985, 51.065790372000052 ], [ -120.209025060999949, 51.065315614000021 ], [ -120.209560635999964, 51.065343219000063 ], [ -120.209647069999917, 51.064680327000055 ], [ -120.210078518999936, 51.064702563000019 ], [ -120.21013797499991, 51.064246537000024 ], [ -120.210486958999979, 51.06426452200003 ], [ -120.210525226999948, 51.063970987000111 ], [ -120.20989382899991, 51.063938447000098 ], [ -120.21036049199995, 51.060358935000089 ], [ -120.216053391999978, 51.060652193000074 ], [ -120.215967441999965, 51.061312150000028 ], [ -120.218242100999959, 51.061429243000127 ], [ -120.218806574999945, 51.06145829400004 ], [ -120.219079070999953, 51.059364835000103 ], [ -120.22477190099994, 51.059657652000091 ], [ -120.224306403999947, 51.063237227000066 ], [ -120.21913999, 51.062971500000081 ], [ -120.218883849999912, 51.064939160000065 ], [ -120.220450831999983, 51.065019780000029 ], [ -120.220238097999939, 51.066654292000074 ], [ -120.218941602999976, 51.067607901000038 ], [ -120.218423498999954, 51.067892705000133 ], [ -120.218335289, 51.068206016000019 ], [ -120.218367619999967, 51.068516106000061 ], [ -120.21490226899999, 51.068337736000089 ], [ -120.214874206999923, 51.068553134000048 ], [ -120.214338588999979, 51.068525556000068 ], [ -120.21425221599999, 51.069188449000123 ], [ -120.213981291999971, 51.069174497000049 ], [ -120.213919428999958, 51.069649255000115 ], [ -120.213490756999988, 51.069627180000111 ], [ -120.213415537999978, 51.070204366000027 ], [ -120.21308007099999, 51.070187088000104 ], [ -120.213020747999906, 51.070642274000079 ], [ -120.212760674999956, 51.070628879000068 ], [ -120.212709855999933, 51.071018780000031 ], [ -120.212337282999968, 51.070999590000056 ], [ -120.212271065999971, 51.071507589000099 ], [ -120.211165254999983, 51.071450626000079 ], [ -120.211156964999958, 51.071588457000168 ], [ -120.210729276999956, 51.071578245000083 ], [ -120.21069685799992, 51.072117148000054 ], [ -120.209413782999945, 51.072086503 ], [ -120.209424744, 51.071904423000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "86.7", "sL_BldgLoss": "86.7", "sL_StrLoss": "86.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED0BE8857B0F5EC010D6949EC8824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.239482180999957, 51.020221825000107 ], [ -120.243774057999971, 51.020442030000019 ], [ -120.243666878999989, 51.022430493000073 ], [ -120.243045413999965, 51.023530001000076 ], [ -120.242518504999964, 51.023981215000056 ], [ -120.242168344999982, 51.023963254000066 ], [ -120.242123598999939, 51.023940211000038 ], [ -120.241088390999963, 51.022881988000044 ], [ -120.240074319999948, 51.021463504000103 ], [ -120.23940801699996, 51.020794167000084 ], [ -120.239482180999957, 51.020221825000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.2", "sL_BldgLoss": "46.2", "sL_StrLoss": "46.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA2C8C3E300E5EC0045881ADD4804940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.221969729999941, 51.005465609000048 ], [ -120.221985837999966, 51.005196152000039 ], [ -120.222886580999926, 51.005217581000068 ], [ -120.223267077999964, 51.005226631000092 ], [ -120.22325098, 51.005496088000022 ], [ -120.224105147000017, 51.005516401000079 ], [ -120.224056862999959, 51.006324773000074 ], [ -120.222775590999973, 51.00629430300004 ], [ -120.22275948799998, 51.006563761000052 ], [ -120.222679745999955, 51.006561863000051 ], [ -120.222332394999967, 51.006553600000053 ], [ -120.222267971999941, 51.007631430000082 ], [ -120.221413766999945, 51.007611105000059 ], [ -120.221397654999976, 51.007880562000132 ], [ -120.219689239999965, 51.007839891000053 ], [ -120.219737601999924, 51.007031521000044 ], [ -120.220164697999962, 51.007041691000026 ], [ -120.220229167999946, 51.005963863000019 ], [ -120.220656255, 51.005974031000065 ], [ -120.220672369999946, 51.005704573000095 ], [ -120.22109945299999, 51.005714739000027 ], [ -120.221115565, 51.005445282000025 ], [ -120.221969729999941, 51.005465609000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.6", "sL_BldgLoss": "47.6", "sL_StrLoss": "47.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000329067972F0D5EC05DCD3272B3894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.207531490999941, 51.074200232000095 ], [ -120.208000902999913, 51.074211452000121 ], [ -120.207935990999928, 51.075289256000111 ], [ -120.20750827099999, 51.075279032000026 ], [ -120.207475807999941, 51.075817934000078 ], [ -120.207048082999975, 51.075807708000113 ], [ -120.207015616999954, 51.076346609000041 ], [ -120.206587886999955, 51.076336382000115 ], [ -120.206571649999944, 51.076605832000084 ], [ -120.206143917999924, 51.07659560200004 ], [ -120.206127677999916, 51.076865053000098 ], [ -120.205272211999983, 51.076844590000043 ], [ -120.205255966999914, 51.07711404 ], [ -120.203972758999953, 51.077083332000093 ], [ -120.204019322999926, 51.076311330000081 ], [ -120.204054018999926, 51.075736083000059 ], [ -120.204991533999987, 51.075758519000082 ], [ -120.205337188999977, 51.075766788000067 ], [ -120.205349519999913, 51.075562238000046 ], [ -120.205353430999963, 51.075497338000048 ], [ -120.205463433999967, 51.075499970000052 ], [ -120.205781152999961, 51.075507569000052 ], [ -120.20579229799992, 51.075322666000012 ], [ -120.205797393999958, 51.075238120000051 ], [ -120.205942665999913, 51.075241595000108 ], [ -120.20622511199997, 51.075248350000059 ], [ -120.206235454999955, 51.075076715000122 ], [ -120.20624135099996, 51.074978899000065 ], [ -120.206402242999928, 51.074982747000035 ], [ -120.20666906699995, 51.074989128000027 ], [ -120.20667991899991, 51.074809036000104 ], [ -120.206717771999962, 51.074180777000038 ], [ -120.207531490999941, 51.074200232000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16053917", "BldgCostT": "11071667", "sL_LossRatio": "1", "sL_AssetLoss": "1169.7", "sL_BldgLoss": "1169.7", "sL_StrLoss": "1169.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001973F8209B0E5EC02523E328AB834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.223454194999988, 51.037881717000047 ], [ -120.223613452999956, 51.035218795000034 ], [ -120.221204140999944, 51.035094808000053 ], [ -120.22166959299993, 51.031515135000113 ], [ -120.223410925999971, 51.031604752000092 ], [ -120.223482240999942, 51.031056077000073 ], [ -120.223489360999935, 51.031056443000026 ], [ -120.223628398999949, 51.02998667800005 ], [ -120.22428259099999, 51.030020338000035 ], [ -120.224311678999953, 51.029796494000017 ], [ -120.22436542199992, 51.029799259000107 ], [ -120.224380993999944, 51.029538725000073 ], [ -120.224738520999949, 51.029547222000083 ], [ -120.224808298999932, 51.029548880000057 ], [ -120.224821930999937, 51.02932076400004 ], [ -120.224848053999921, 51.028883665000087 ], [ -120.224526293999972, 51.028867111000075 ], [ -120.224606558999966, 51.028249408000136 ], [ -120.224163325999911, 51.028226603000078 ], [ -120.224293547999963, 51.027224483000047 ], [ -120.22396928799999, 51.027207798000092 ], [ -120.224089254999939, 51.026284604000089 ], [ -120.223958950999972, 51.026277900000075 ], [ -120.22442409, 51.022698180000049 ], [ -120.224970711999944, 51.022726308000138 ], [ -120.225507755999956, 51.022753939000026 ], [ -120.225608584999918, 51.021977728000124 ], [ -120.22457067499991, 51.021924325000079 ], [ -120.224651572999917, 51.021301638000061 ], [ -120.223840726999967, 51.021259911000058 ], [ -120.222979465999913, 51.021215582000067 ], [ -120.223098830999945, 51.020297053000071 ], [ -120.223444629999932, 51.017635847000058 ], [ -120.229132157, 51.017928457000025 ], [ -120.22905132699999, 51.018551149000139 ], [ -120.230581261999959, 51.018629811000032 ], [ -120.22993271199995, 51.019100704000095 ], [ -120.228814587000016, 51.019911098000108 ], [ -120.228049475999953, 51.02029699500013 ], [ -120.227761396999966, 51.020587589000044 ], [ -120.227647023999964, 51.021547505000058 ], [ -120.227856204999952, 51.022577208000044 ], [ -120.22803821399999, 51.022896192000097 ], [ -120.228632692999952, 51.02342319000013 ], [ -120.230716908999909, 51.02437169100007 ], [ -120.231069782999924, 51.024875970000025 ], [ -120.230843254999982, 51.026621339000023 ], [ -120.231527941999957, 51.026656526000089 ], [ -120.2315266949999, 51.02727850100009 ], [ -120.23188419399996, 51.027970710000027 ], [ -120.232228189999958, 51.028419306000082 ], [ -120.232853411999898, 51.02895619 ], [ -120.234401783999928, 51.030989999000077 ], [ -120.234868797999965, 51.031495613000125 ], [ -120.235241009999982, 51.031737690000085 ], [ -120.236258604999961, 51.032130790000089 ], [ -120.238445620999983, 51.033253099 ], [ -120.240261914999948, 51.034366792000057 ], [ -120.240843562999927, 51.035074999000059 ], [ -120.240815181999906, 51.035294004000093 ], [ -120.235125361999962, 51.035001990000062 ], [ -120.235417244999979, 51.032751813000033 ], [ -120.23472197299999, 51.032716110000109 ], [ -120.234582821999979, 51.033788751000081 ], [ -120.232682316999927, 51.033691136000101 ], [ -120.232676935999933, 51.033732596000085 ], [ -120.231778483999946, 51.033686437 ], [ -120.231754903999942, 51.033868117000019 ], [ -120.230812680999975, 51.03381970200013 ], [ -120.23078327199994, 51.034046238000037 ], [ -120.228834201999945, 51.033946063 ], [ -120.228706632999916, 51.034928385000114 ], [ -120.226965159999921, 51.034838850000064 ], [ -120.226893881999985, 51.035387527000061 ], [ -120.225320064999948, 51.035306588000054 ], [ -120.225292565999922, 51.035766696000024 ], [ -120.22486520399994, 51.035756541000069 ], [ -120.224736338999932, 51.037912194000036 ], [ -120.223659081999983, 51.037886589000024 ], [ -120.223454194999988, 51.037881717000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10314333", "BldgCostT": "7113333", "sL_LossRatio": "1", "sL_AssetLoss": "679.8", "sL_BldgLoss": "679.8", "sL_StrLoss": "679.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D39D69BA050E5EC0BA5C712FB8864940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.215556229999947, 51.058272412000072 ], [ -120.215619823999972, 51.057784109000082 ], [ -120.215153650999952, 51.057760102000088 ], [ -120.215619826999927, 51.054180544000118 ], [ -120.215840669, 51.054191916000093 ], [ -120.215966567999928, 51.053225050000087 ], [ -120.216408253999958, 51.053247795000111 ], [ -120.216445561999961, 51.05296126000011 ], [ -120.216488020999961, 51.052963447000117 ], [ -120.216537480999946, 51.052583562000045 ], [ -120.216566655999955, 51.052585064000034 ], [ -120.216590424999964, 51.052402501000053 ], [ -120.216531172999936, 51.052399450000067 ], [ -120.216963079999957, 51.04908183 ], [ -120.21196075099999, 51.048824131000117 ], [ -120.212427089999963, 51.045244551000032 ], [ -120.218118069999974, 51.045537710000069 ], [ -120.217686282999935, 51.048855347000043 ], [ -120.221510477999928, 51.04905217700005 ], [ -120.222688648999934, 51.049112791000063 ], [ -120.222250842999983, 51.052479058000053 ], [ -120.222310095999958, 51.05248210600007 ], [ -120.22229773299992, 51.052577157000023 ], [ -120.223843550999959, 51.052656665000043 ], [ -120.22381506699999, 51.052875718000095 ], [ -120.228624205999978, 51.053122935000033 ], [ -120.228614127999919, 51.05320050500012 ], [ -120.228510007999972, 51.053201982000076 ], [ -120.227421190999976, 51.053293089000086 ], [ -120.226955801999935, 51.053407106000051 ], [ -120.226542606999971, 51.053640590000072 ], [ -120.226325890999973, 51.053941099000056 ], [ -120.226385393999948, 51.055093304000088 ], [ -120.226422413999956, 51.05661330100007 ], [ -120.222466613999956, 51.056409904000063 ], [ -120.222495106999958, 51.056190852000086 ], [ -120.22180293299999, 51.056155249000042 ], [ -120.221763795999948, 51.056456100000098 ], [ -120.221721332999962, 51.056453916000123 ], [ -120.221671911999977, 51.056833802000064 ], [ -120.221475496999972, 51.056823698000116 ], [ -120.22124889599999, 51.058565408000078 ], [ -120.219218137999988, 51.058460920000137 ], [ -120.215556229999947, 51.058272412000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "448.5", "sL_BldgLoss": "448.5", "sL_StrLoss": "448.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000742F49C5B0F5EC083FD959D17784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.234753141999974, 50.941537219000089 ], [ -120.234784559999952, 50.941007947000038 ], [ -120.234615971999958, 50.941003952000088 ], [ -120.234737700999986, 50.940676681000113 ], [ -120.234752303999954, 50.940641649000092 ], [ -120.235048536999955, 50.939931338000079 ], [ -120.235175192000014, 50.939623204000064 ], [ -120.235273304, 50.939384445000016 ], [ -120.235492760999932, 50.938850507000033 ], [ -120.235654230999941, 50.938210090000091 ], [ -120.235658189999981, 50.938104992000049 ], [ -120.235661232999973, 50.938024227000064 ], [ -120.235676616, 50.937617510000159 ], [ -120.235598306999961, 50.937085488000065 ], [ -120.235382759999936, 50.936480002000096 ], [ -120.239982103999978, 50.936716610000133 ], [ -120.24021114, 50.9349453580001 ], [ -120.244946282999976, 50.93518875300007 ], [ -120.245321771999983, 50.935208045000145 ], [ -120.245438902999979, 50.935969593000024 ], [ -120.245413904999921, 50.936661808000053 ], [ -120.24494882, 50.93703780000002 ], [ -120.243870105, 50.938441991000111 ], [ -120.241078042999973, 50.940931650000039 ], [ -120.240331530999924, 50.941597247000068 ], [ -120.238571732999944, 50.941506754000045 ], [ -120.238733482999976, 50.940256335000122 ], [ -120.236118426999923, 50.940121811000033 ], [ -120.23608003799994, 50.9407687960001 ], [ -120.236506533999943, 50.940778896000097 ], [ -120.236458576999965, 50.941587287000068 ], [ -120.23603207399999, 50.941577186000039 ], [ -120.236000096999959, 50.942116113000061 ], [ -120.234720576999962, 50.942085800000065 ], [ -120.234753141999974, 50.941537219000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "132.9", "sL_BldgLoss": "132.9", "sL_StrLoss": "132.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B34488A76E0F5EC0E4A8B3C5FB814940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.239003691999955, 51.01357380000006 ], [ -120.243457770999925, 51.013802379000055 ], [ -120.243619086999914, 51.014108904000111 ], [ -120.243412586999966, 51.016856192000063 ], [ -120.243226267999901, 51.01739411300008 ], [ -120.238539818999982, 51.017153615000055 ], [ -120.239003691999955, 51.01357380000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "1", "sL_AssetLoss": "397.6", "sL_BldgLoss": "397.6", "sL_StrLoss": "397.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BA0532D35105EC0D540D22B0E734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.252861404999948, 50.896560301000079 ], [ -120.253543671999978, 50.890344351000046 ], [ -120.253591122999936, 50.889912178000074 ], [ -120.254450497999969, 50.889932406000042 ], [ -120.254341765, 50.891780510000011 ], [ -120.254450587999926, 50.891786097000086 ], [ -120.254473196999967, 50.892351794000092 ], [ -120.254605484999956, 50.892740603000064 ], [ -120.255160910999962, 50.893465492000097 ], [ -120.256012795999965, 50.894204708000117 ], [ -120.2564622, 50.894791393000048 ], [ -120.256761420999936, 50.895052570000047 ], [ -120.256513174999924, 50.896979738000034 ], [ -120.256452701999962, 50.896976635000058 ], [ -120.256293036999949, 50.89821604100009 ], [ -120.25588780899993, 50.898195242000092 ], [ -120.255574614999944, 50.900626023000093 ], [ -120.255250320999892, 50.900878507000073 ], [ -120.254522609999981, 50.901401209000028 ], [ -120.253379199999927, 50.902480799000095 ], [ -120.252516708999963, 50.903593091000111 ], [ -120.251983893999963, 50.90445301400009 ], [ -120.251834805999962, 50.904693622000067 ], [ -120.251571608999939, 50.905118383000129 ], [ -120.251382738999965, 50.905377186000059 ], [ -120.251092798999935, 50.905774472000061 ], [ -120.25094229699998, 50.905766742000026 ], [ -120.248792727999941, 50.905656315000037 ], [ -120.248908985999947, 50.905478192000054 ], [ -120.24902440299995, 50.905170486000017 ], [ -120.249193115, 50.904553279000091 ], [ -120.24921749, 50.904464081000036 ], [ -120.24972741, 50.902598209000139 ], [ -120.24993024, 50.902107806000039 ], [ -120.249985269999982, 50.901974816000084 ], [ -120.250090475999926, 50.901720395000076 ], [ -120.250778891999971, 50.90059781800003 ], [ -120.250813577999949, 50.900541193000031 ], [ -120.251223707999927, 50.899998530000104 ], [ -120.251394292999947, 50.899772778000091 ], [ -120.251668997999957, 50.899409300000059 ], [ -120.251898712999932, 50.899045385000115 ], [ -120.251903612999953, 50.899035502000096 ], [ -120.252119075999971, 50.898600926000022 ], [ -120.252462013999946, 50.897909285 ], [ -120.252781280999955, 50.89693818900011 ], [ -120.252861404999948, 50.896560301000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "168.2", "sL_BldgLoss": "168.2", "sL_StrLoss": "168.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000832780A4400F5EC0B3793D145C854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.23779689, 51.038399425000108 ], [ -120.241236235999963, 51.03857587800006 ], [ -120.240474812999977, 51.040856897000033 ], [ -120.240286925999982, 51.041878104000034 ], [ -120.240050318, 51.042510406000112 ], [ -120.239368408999965, 51.043168396000091 ], [ -120.238533790999938, 51.044238002000078 ], [ -120.238330618999896, 51.044538503000112 ], [ -120.238185690999984, 51.045056913000082 ], [ -120.238151307999942, 51.045555608000051 ], [ -120.23565276, 51.045427385000075 ], [ -120.236117158999946, 51.041847693000101 ], [ -120.237341558999987, 51.041910536000053 ], [ -120.23779689, 51.038399425000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "141", "sL_BldgLoss": "141", "sL_StrLoss": "141", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F998D55CEA0E5EC0D4678323B37C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.230871085, 50.97230073100009 ], [ -120.235658485999963, 50.972546996000055 ], [ -120.235194770999939, 50.976126961000055 ], [ -120.230405196999968, 50.975880585000027 ], [ -120.230572506999962, 50.974926307000082 ], [ -120.230834291999926, 50.9731828910001 ], [ -120.230871085, 50.97230073100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "217.8", "sL_BldgLoss": "217.8", "sL_StrLoss": "217.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B3B3C7C800F5EC0C09636A0CE7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.240047928, 50.973161384000051 ], [ -120.244650312999923, 50.973397752000011 ], [ -120.244187310999948, 50.976977751000071 ], [ -120.239792283999932, 50.976752036000043 ], [ -120.240056085999953, 50.975653799000035 ], [ -120.240047928, 50.973161384000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "257.1", "sL_BldgLoss": "257.1", "sL_StrLoss": "257.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AEF8028A830F5EC04AF38598647D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.239442985999943, 50.980721108000068 ], [ -120.23963743399996, 50.977421776000028 ], [ -120.245081593999899, 50.977701348000018 ], [ -120.24504098599999, 50.978015350000135 ], [ -120.245572598999914, 50.978042635000072 ], [ -120.24544390899996, 50.979037797000096 ], [ -120.245774963999949, 50.979045607000032 ], [ -120.245751112999983, 50.979448432000012 ], [ -120.245727101999933, 50.979854001000085 ], [ -120.245339539, 50.979844855000081 ], [ -120.245109623999937, 50.981622619000056 ], [ -120.243365210999983, 50.981533077000023 ], [ -120.243322959999929, 50.981859659000115 ], [ -120.239888873999931, 50.981683305000054 ], [ -120.239387766, 50.981657562000123 ], [ -120.239442985999943, 50.980721108000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "290", "sL_BldgLoss": "290", "sL_StrLoss": "290", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADB36B8C670F5EC0287BF07F6C7E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.239723449999971, 50.984465549000085 ], [ -120.243930817999939, 50.984681592000122 ], [ -120.243562540999974, 50.987528095000123 ], [ -120.243561004999918, 50.987554013000128 ], [ -120.243524668999925, 50.988167064000017 ], [ -120.243480001999956, 50.988166010000072 ], [ -120.243467642, 50.988261543000121 ], [ -120.242561194999965, 50.988215011000129 ], [ -120.242480730999944, 50.988836764000048 ], [ -120.242212357999975, 50.988822986000024 ], [ -120.242104962999946, 50.989652772000063 ], [ -120.241575080999951, 50.989625566000051 ], [ -120.241392112999947, 50.991039085000075 ], [ -120.237486740999913, 50.990838495000077 ], [ -120.237242421999895, 50.989447201000075 ], [ -120.237606702000022, 50.98885339400006 ], [ -120.239068212999953, 50.987511705000067 ], [ -120.239246809999955, 50.986409396000099 ], [ -120.239059479, 50.985506495000031 ], [ -120.23915859399996, 50.984555099000012 ], [ -120.23913801599997, 50.984435475000105 ], [ -120.239723449999971, 50.984465549000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "66.6", "sL_BldgLoss": "66.6", "sL_StrLoss": "66.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D122ABC340F5EC0B42506DC4E7E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.236701610999958, 50.987194408000065 ], [ -120.236884712999981, 50.985780891000026 ], [ -120.237153065999934, 50.985794682000126 ], [ -120.237260543999966, 50.984964898000108 ], [ -120.237861650999974, 50.984995786000063 ], [ -120.237146410999969, 50.986279797000073 ], [ -120.237260602, 50.986524799000101 ], [ -120.237418692999938, 50.986502002000123 ], [ -120.238001187999956, 50.985814113000089 ], [ -120.23812001899995, 50.985727203000067 ], [ -120.23833201799998, 50.985740008000043 ], [ -120.238521112999976, 50.986177292000072 ], [ -120.238512800999942, 50.987255409000049 ], [ -120.238408097999951, 50.987568688000124 ], [ -120.237917280000019, 50.987934701000071 ], [ -120.237100307999967, 50.988004489000048 ], [ -120.236888408999931, 50.987991706000102 ], [ -120.236779806999891, 50.987899087000052 ], [ -120.236625428999929, 50.987190493000121 ], [ -120.236701610999958, 50.987194408000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "137.1", "sL_BldgLoss": "137.1", "sL_StrLoss": "137.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A33F55018E0F5EC09052A6242D804940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.241284674999946, 51.004304553000054 ], [ -120.241300668999912, 51.004035091000048 ], [ -120.240873591999943, 51.004024999000109 ], [ -120.240921578999988, 51.003216614000102 ], [ -120.242202788000014, 51.003246884000056 ], [ -120.242234762999928, 51.002707960000087 ], [ -120.241807698999963, 51.002697872000041 ], [ -120.241823687999911, 51.002428409000075 ], [ -120.241396626999943, 51.002418320000054 ], [ -120.241508566999983, 51.000532086000085 ], [ -120.241935610999917, 51.000542175000092 ], [ -120.241951600000021, 51.000272713000044 ], [ -120.242160655999953, 51.000277652000065 ], [ -120.242390628999971, 50.99850114500007 ], [ -120.244537034999894, 50.998611293000053 ], [ -120.244956401999929, 50.998632809000071 ], [ -120.244924300999941, 50.999598426000055 ], [ -120.244623286999939, 51.00081023700011 ], [ -120.244273939999943, 51.002216430000061 ], [ -120.243974977999969, 51.002209372000088 ], [ -120.24386313299999, 51.00409560900011 ], [ -120.243307122999937, 51.00408248300009 ], [ -120.243008976999974, 51.00407544300009 ], [ -120.242992992, 51.004344905000046 ], [ -120.241284674999946, 51.004304553000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8584000", "BldgCostT": "5920000", "sL_LossRatio": "1", "sL_AssetLoss": "644", "sL_BldgLoss": "644", "sL_StrLoss": "644", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F014D5CF59135EC0339DC68B3F674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.29783455899998, 50.810364980000017 ], [ -120.297888682999911, 50.809940907000041 ], [ -120.297479422999942, 50.809920012000099 ], [ -120.297936433999951, 50.806339115000085 ], [ -120.299170091999912, 50.80640209900006 ], [ -120.299247708999957, 50.805793744000084 ], [ -120.299606147999953, 50.805812041000067 ], [ -120.29970023199995, 50.805074553000075 ], [ -120.30053322099999, 50.805117070000037 ], [ -120.300573309999962, 50.804802773000105 ], [ -120.30195109399989, 50.804873083000032 ], [ -120.302041182999986, 50.804166606000109 ], [ -120.303923884999918, 50.80426265500013 ], [ -120.304072656999949, 50.80309555000013 ], [ -120.308928781999938, 50.803343147000113 ], [ -120.308935089999963, 50.803233414 ], [ -120.30915103199996, 50.803238398000083 ], [ -120.309152632999954, 50.803238890000095 ], [ -120.308952019999936, 50.803564596000079 ], [ -120.308412462999939, 50.804235443000046 ], [ -120.30853355499994, 50.80427299600003 ], [ -120.308038513999932, 50.804887587000032 ], [ -120.307086990999949, 50.805770797000058 ], [ -120.306614796999895, 50.806111686000044 ], [ -120.305994394999971, 50.8065088970001 ], [ -120.304700215999944, 50.807164829000044 ], [ -120.304290302999931, 50.807372600000122 ], [ -120.30143259499999, 50.808691115000066 ], [ -120.301040413999914, 50.808878513000096 ], [ -120.30118984799999, 50.808969972000156 ], [ -120.301505010999961, 50.809174006000049 ], [ -120.301896030999984, 50.809489415000037 ], [ -120.301314892999983, 50.809712015000066 ], [ -120.299942786999964, 50.810391393 ], [ -120.298622065999936, 50.811428242000027 ], [ -120.297704829999972, 50.811381415000014 ], [ -120.2978122, 50.810540176000117 ], [ -120.29783455899998, 50.810364980000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17641666", "BldgCostT": "12166666", "sL_LossRatio": "0.999972871216893", "sL_AssetLoss": "2021.469219", "sL_BldgLoss": "2021.414379", "sL_StrLoss": "2021.004279", "sL_NStrLoss": "0.4101", "sL_ContLoss": "0.05484", "geom_point": "0101000020E61000009D4E150021125EC025A0155A4E6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.279256692999951, 50.857561024000077 ], [ -120.279326357999963, 50.857017564000095 ], [ -120.27875271399995, 50.856988211000086 ], [ -120.278802411999933, 50.856600539000034 ], [ -120.274873211999932, 50.856399406000087 ], [ -120.275332507999963, 50.852818793000111 ], [ -120.276180084, 50.852862191000042 ], [ -120.276180568999976, 50.852858412000018 ], [ -120.27683515199999, 50.852891925000115 ], [ -120.27684574199999, 50.852809328000056 ], [ -120.27748727399999, 50.852842168000116 ], [ -120.277499918999965, 50.852743543000081 ], [ -120.278243453999934, 50.8527816000001 ], [ -120.278255188999978, 50.852690060000029 ], [ -120.279357755999939, 50.852746486000079 ], [ -120.279358537999912, 50.852740386000086 ], [ -120.279898649999964, 50.852768023000081 ], [ -120.280118002999984, 50.851056400000083 ], [ -120.280228992000033, 50.851062079000044 ], [ -120.28035474899994, 50.850080704000028 ], [ -120.281385523999973, 50.850133439000082 ], [ -120.281395005999968, 50.850059428000051 ], [ -120.284050224999959, 50.85019522600011 ], [ -120.284064187999974, 50.85008619000012 ], [ -120.285159168999911, 50.850142172000062 ], [ -120.285166140999962, 50.850087715000036 ], [ -120.289791168999926, 50.850324059000101 ], [ -120.289902583999961, 50.851606594000017 ], [ -120.290064203999989, 50.851780306000066 ], [ -120.290503593999958, 50.85180030800008 ], [ -120.290667108999969, 50.85189430500003 ], [ -120.290648501999982, 50.852730290000117 ], [ -120.290078816999966, 50.853724402000033 ], [ -120.290012394999977, 50.854136006000083 ], [ -120.289605094999956, 50.855007594000014 ], [ -120.288815684999975, 50.856141309000108 ], [ -120.288566302999968, 50.856402031000087 ], [ -120.287656646999949, 50.856355559000114 ], [ -120.287518311999975, 50.857436305000121 ], [ -120.284993833999977, 50.857307295000084 ], [ -120.284924222999962, 50.857850865000046 ], [ -120.279256692999951, 50.857561024000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7090500", "BldgCostT": "4890000", "sL_LossRatio": "1", "sL_AssetLoss": "773", "sL_BldgLoss": "773", "sL_StrLoss": "773", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005750832F2D125EC004C53478046C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.282261398999978, 50.847408425000069 ], [ -120.282696970999908, 50.844007659000034 ], [ -120.280457472999984, 50.843893082000079 ], [ -120.280916194999946, 50.84031239600008 ], [ -120.28653643799997, 50.840599851000107 ], [ -120.286394234999975, 50.842065823000027 ], [ -120.286393453999963, 50.842071923000056 ], [ -120.285787288999956, 50.843181015000013 ], [ -120.285426987999983, 50.843551196000107 ], [ -120.28542661899999, 50.844512595000083 ], [ -120.286052020999961, 50.845238906000077 ], [ -120.288053919999982, 50.846711443000082 ], [ -120.28792766399999, 50.847698117000057 ], [ -120.282261398999978, 50.847408425000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "57.1", "sL_BldgLoss": "57.1", "sL_StrLoss": "57.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004CA7B73766105EC0090E9A23CC6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.25517817099994, 50.86499155200007 ], [ -120.26084648799997, 50.865282608 ], [ -120.260752186, 50.866015736000108 ], [ -120.259555027999966, 50.866044036000126 ], [ -120.252288801999953, 50.866215544000099 ], [ -120.252451891999968, 50.864949488000043 ], [ -120.255165633000018, 50.865088936000042 ], [ -120.25517817099994, 50.86499155200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544333", "BldgCostT": "4513333", "sL_LossRatio": "0.999988993158819", "sL_AssetLoss": "848.563166", "sL_BldgLoss": "848.553826", "sL_StrLoss": "848.500306", "sL_NStrLoss": "0.05352", "sL_ContLoss": "0.00934", "geom_point": "0101000020E6100000C88089CB33135EC0CCCFB29366694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.297889837999946, 50.822338787000042 ], [ -120.29805947599999, 50.821009951000086 ], [ -120.303722501999928, 50.821298853000037 ], [ -120.303635236, 50.821983117000109 ], [ -120.303810443999936, 50.821992051000038 ], [ -120.303524480999926, 50.824234270000062 ], [ -120.302333986999969, 50.825063598000071 ], [ -120.300344019999969, 50.825574898000063 ], [ -120.298777517999937, 50.825988253000105 ], [ -120.296387191999941, 50.825866251000029 ], [ -120.296844454999984, 50.822285426000114 ], [ -120.297889837999946, 50.822338787000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17712416", "BldgCostT": "11951666", "sL_LossRatio": "1", "sL_AssetLoss": "1851.7", "sL_BldgLoss": "1851.7", "sL_StrLoss": "1851.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009016670CB3115EC0640B399D816B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.273545385999981, 50.847871993000048 ], [ -120.273584219999989, 50.847206266000086 ], [ -120.273255740999957, 50.847198586000054 ], [ -120.273158565999978, 50.84719631400008 ], [ -120.273168855999984, 50.847019907000046 ], [ -120.273190006999982, 50.846657361000013 ], [ -120.272990292999964, 50.846652691000024 ], [ -120.272764356999943, 50.846647408000038 ], [ -120.272788288999962, 50.846237258000016 ], [ -120.272795802999966, 50.846108455000085 ], [ -120.272724851999953, 50.84610679700009 ], [ -120.271944514999973, 50.846088544000104 ], [ -120.271950785999977, 50.845981111000121 ], [ -120.271992379999958, 50.845268412000031 ], [ -120.270786626999893, 50.845206615000109 ], [ -120.271049058999921, 50.843161732000105 ], [ -120.269663229999964, 50.843090689000093 ], [ -120.270122806999922, 50.839510043000075 ], [ -120.272244078999989, 50.839618779000084 ], [ -120.272999207999959, 50.83965747900006 ], [ -120.273229768999954, 50.837860011000082 ], [ -120.275401213999885, 50.837971263000092 ], [ -120.275426637999914, 50.837534942000097 ], [ -120.275737855999978, 50.837542213000063 ], [ -120.275852206999943, 50.837544885000113 ], [ -120.275862233999973, 50.837372748000092 ], [ -120.275883605, 50.837005930000039 ], [ -120.276146034999897, 50.837012061000067 ], [ -120.276309167999912, 50.837015871000048 ], [ -120.276320676999916, 50.836818311000101 ], [ -120.276324865999939, 50.836746393000062 ], [ -120.276384250999968, 50.836747781000085 ], [ -120.276458708999925, 50.836749520000076 ], [ -120.27647131399999, 50.83665119100008 ], [ -120.27653202499999, 50.836177584000048 ], [ -120.276783381999962, 50.8361904570001 ], [ -120.276828897999948, 50.835408944000072 ], [ -120.277254443999965, 50.83541888200012 ], [ -120.277285826999943, 50.834879926000092 ], [ -120.277711370999924, 50.834889862000047 ], [ -120.277742744999969, 50.834350905000051 ], [ -120.278528191999968, 50.834369240000044 ], [ -120.280295986999946, 50.83441048300007 ], [ -120.280343003999945, 50.833602048000046 ], [ -120.279242792, 50.833576383000036 ], [ -120.279066404999952, 50.833572266000104 ], [ -120.279124972999938, 50.832565649000053 ], [ -120.279129119999979, 50.83249435400004 ], [ -120.279222761999961, 50.832496538000036 ], [ -120.27939732599999, 50.832500612000082 ], [ -120.284235411999973, 50.832613390000056 ], [ -120.284172812999941, 50.833691309000137 ], [ -120.283747276999989, 50.833681397000142 ], [ -120.283715969999932, 50.834220355000099 ], [ -120.283290431999916, 50.834210442000014 ], [ -120.283274774999953, 50.834479921000103 ], [ -120.282849232999951, 50.834470006000103 ], [ -120.282817914999924, 50.835008964000103 ], [ -120.282392369999954, 50.834999048000071 ], [ -120.28236104699999, 50.835538006000064 ], [ -120.281935494999971, 50.835528086000053 ], [ -120.281904165999919, 50.836067045000085 ], [ -120.281478609999951, 50.836057124000135 ], [ -120.281456948999917, 50.8364297110001 ], [ -120.282196828999986, 50.83646757000011 ], [ -120.281738249999975, 50.840048278000097 ], [ -120.279963599999974, 50.839957464000079 ], [ -120.279631203999955, 50.842551721000106 ], [ -120.27684839199999, 50.842409259000085 ], [ -120.276846448999919, 50.842424413000039 ], [ -120.276846397000014, 50.84242529700002 ], [ -120.276846334999959, 50.84242529600003 ], [ -120.27645253899999, 50.845496888000106 ], [ -120.275391965999944, 50.845442576000067 ], [ -120.275365381000015, 50.845898675000058 ], [ -120.27493973899999, 50.845888730000055 ], [ -120.274798335999975, 50.84831402000011 ], [ -120.273680610999975, 50.848287896000045 ], [ -120.273521342999956, 50.848284172000078 ], [ -120.273545385999981, 50.847871993000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37099417", "BldgCostT": "24111667", "sL_LossRatio": "1", "sL_AssetLoss": "2227", "sL_BldgLoss": "2227", "sL_StrLoss": "2227", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA26E92FEE105EC0465C088BED6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.264128241999941, 50.86311455000002 ], [ -120.264138963999969, 50.862931470000021 ], [ -120.264056501999931, 50.862927240000019 ], [ -120.261224271999978, 50.862781921000121 ], [ -120.261273954999965, 50.862395609000039 ], [ -120.26071668099992, 50.862367008000064 ], [ -120.260761690999985, 50.862017059000024 ], [ -120.259504164999925, 50.861987516000113 ], [ -120.259488357999913, 50.862256990000077 ], [ -120.25906257099993, 50.862246984000095 ], [ -120.259046758999901, 50.862516455000026 ], [ -120.25265995499997, 50.862366184000095 ], [ -120.252707498999939, 50.861557771000065 ], [ -120.253133274999968, 50.861567800000088 ], [ -120.253208931999964, 50.860281053000101 ], [ -120.253212495999946, 50.860220444000035 ], [ -120.253456125999946, 50.860226182000062 ], [ -120.253638259999946, 50.860230471000079 ], [ -120.253640532999967, 50.860191825000058 ], [ -120.253654102999974, 50.859961 ], [ -120.254124146999942, 50.859972067000058 ], [ -120.254186146, 50.859490561000037 ], [ -120.254463792999928, 50.859491839000086 ], [ -120.254997855999946, 50.858356367000091 ], [ -120.254919696999963, 50.855760480000143 ], [ -120.260526255999963, 50.855667037000089 ], [ -120.260521628, 50.855315396000044 ], [ -120.261597502999976, 50.855370623000105 ], [ -120.261602187000022, 50.855290695000079 ], [ -120.26245363699995, 50.855310685000056 ], [ -120.262469422999942, 50.855041212000074 ], [ -120.26374659, 50.855071183000064 ], [ -120.263762369999952, 50.854801709000071 ], [ -120.264872689999947, 50.854827754000027 ], [ -120.264883948000019, 50.854740155000101 ], [ -120.266061070999982, 50.854800533000059 ], [ -120.270551027999943, 50.855030723000084 ], [ -120.270496661999971, 50.855454209000094 ], [ -120.273520269999935, 50.855609120000103 ], [ -120.273648334999962, 50.85341417100009 ], [ -120.273784271999943, 50.853417348000093 ], [ -120.27492547099996, 50.853444021000065 ], [ -120.2747840299999, 50.855869307000034 ], [ -120.274010180999952, 50.855851222000091 ], [ -120.273951637999986, 50.856307505000125 ], [ -120.274164882999941, 50.856318426000072 ], [ -120.274093166999933, 50.85687739400008 ], [ -120.275177088999897, 50.856932900000039 ], [ -120.27471773799995, 50.860513496000088 ], [ -120.274272597999968, 50.860490702000114 ], [ -120.274126076999963, 50.861632607000018 ], [ -120.273294204999956, 50.861590006 ], [ -120.27327614499994, 50.86173072600009 ], [ -120.272343034999949, 50.861682933000104 ], [ -120.272335219999931, 50.861743819000054 ], [ -120.270277986999957, 50.861600195000051 ], [ -120.269582789999944, 50.861593112000087 ], [ -120.268716797, 50.861806786000095 ], [ -120.268156901999973, 50.862144304000047 ], [ -120.266410087999972, 50.86287630200011 ], [ -120.266136498999956, 50.863033916000028 ], [ -120.265414272, 50.862996880000075 ], [ -120.265386294999956, 50.863474801000066 ], [ -120.264108895999954, 50.863444843000138 ], [ -120.264128241999941, 50.86311455000002 ] ], [ [ -120.255719606999975, 50.861088997000046 ], [ -120.255735437999974, 50.860819525000061 ], [ -120.256586981999988, 50.860839558000073 ], [ -120.256612800999932, 50.860399863000104 ], [ -120.254912506999943, 50.860312512000085 ], [ -120.254868058999989, 50.861068956000032 ], [ -120.255719606999975, 50.861088997000046 ] ], [ [ -120.257888027999968, 50.860465359000074 ], [ -120.257880117999918, 50.860600125000111 ], [ -120.258419829999951, 50.860612812000134 ], [ -120.258435186999947, 50.860493456000079 ], [ -120.257888027999968, 50.860465359000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7349083", "BldgCostT": "5068333", "sL_LossRatio": "0.999997690833704", "sL_AssetLoss": "855.0272034", "sL_BldgLoss": "855.025229", "sL_StrLoss": "855.000159", "sL_NStrLoss": "0.02507", "sL_ContLoss": "0.0019744", "geom_point": "0101000020E6100000D88E145776125EC04DA53C463B6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.288412960999949, 50.833729519000059 ], [ -120.288813099999985, 50.830601021000049 ], [ -120.28416623599999, 50.830363409000078 ], [ -120.28434352599993, 50.828978232000054 ], [ -120.284624520999955, 50.826782651000045 ], [ -120.288171682999959, 50.82696404900009 ], [ -120.290288187999963, 50.827072230000084 ], [ -120.289888183999963, 50.830200747000056 ], [ -120.29326228199993, 50.830373123000086 ], [ -120.292889318999983, 50.830942702000087 ], [ -120.292429776999953, 50.832020794000101 ], [ -120.291531499999962, 50.833070492000054 ], [ -120.291031993999979, 50.833863353000076 ], [ -120.288412960999949, 50.833729519000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13064500", "BldgCostT": "9010000", "sL_LossRatio": "1", "sL_AssetLoss": "971", "sL_BldgLoss": "971", "sL_StrLoss": "971", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BD80DBAC8125EC0425DC55E7F684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.292047903000011, 50.820444443000042 ], [ -120.292084130999939, 50.820160935000075 ], [ -120.29100709799999, 50.820105898000072 ], [ -120.28957454, 50.820032676000089 ], [ -120.289881244999918, 50.817633485000087 ], [ -120.28979068299995, 50.817631379000055 ], [ -120.289775074999966, 50.817900861000069 ], [ -120.288498893999943, 50.817871189000044 ], [ -120.288503465999966, 50.817792290000114 ], [ -120.288576974, 50.816523784000033 ], [ -120.289427735999936, 50.816543566000092 ], [ -120.289443347, 50.81627408500006 ], [ -120.289702483999989, 50.81628010900009 ], [ -120.289771266999963, 50.815742019000034 ], [ -120.28878800499993, 50.815719158000071 ], [ -120.288623817999962, 50.815715340000054 ], [ -120.288670661999944, 50.814906896000075 ], [ -120.289348070999949, 50.814922648000042 ], [ -120.289874438999959, 50.814934884000053 ], [ -120.290062959999943, 50.813459948000073 ], [ -120.29072391899993, 50.813493736000062 ], [ -120.290765946999926, 50.81316486300004 ], [ -120.291163766999915, 50.813185198000056 ], [ -120.29125186499999, 50.812495772000062 ], [ -120.291632878, 50.812515247000128 ], [ -120.291708577999898, 50.811922783000114 ], [ -120.292020293999968, 50.811938713000096 ], [ -120.29209179499999, 50.811379090000059 ], [ -120.296161980999983, 50.81158702700003 ], [ -120.29635722799999, 50.811596998000063 ], [ -120.29775356199994, 50.811668297000097 ], [ -120.297690901999943, 50.81215922500018 ], [ -120.296849508999969, 50.812819708000085 ], [ -120.295590808999975, 50.814212488000095 ], [ -120.295275178999958, 50.814743792000073 ], [ -120.295279012999984, 50.814924605000108 ], [ -120.295667088999949, 50.815329101000074 ], [ -120.296044499999937, 50.815931606000071 ], [ -120.29711830899997, 50.816522606000078 ], [ -120.297852190999976, 50.816767758000033 ], [ -120.297805402999956, 50.817134291000094 ], [ -120.298167920999944, 50.817152796000052 ], [ -120.29771081799997, 50.820733649000026 ], [ -120.292047903000011, 50.820444443000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "132042334", "BldgCostT": "87963334", "sL_LossRatio": "0.99534067253759", "sL_AssetLoss": "13007.6863", "sL_BldgLoss": "12947.07923", "sL_StrLoss": "12925.00503", "sL_NStrLoss": "22.0742", "sL_ContLoss": "60.60707", "geom_point": "0101000020E61000007EC69EA001145EC0D9CD8C7E34664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.307086990999949, 50.805770797000058 ], [ -120.308038513999932, 50.804887587000032 ], [ -120.30853355499994, 50.80427299600003 ], [ -120.308412462999939, 50.804235443000046 ], [ -120.308952019999936, 50.803564596000079 ], [ -120.309152632999954, 50.803238890000095 ], [ -120.30915103199996, 50.803238398000083 ], [ -120.309152911, 50.803238441000047 ], [ -120.309360357999964, 50.803243228000078 ], [ -120.309382006999968, 50.802866540000089 ], [ -120.309406820999925, 50.80243477000009 ], [ -120.30960487, 50.802439340000042 ], [ -120.309832081999957, 50.802444583000074 ], [ -120.309896122999987, 50.801330068000013 ], [ -120.309971440999973, 50.80001920400008 ], [ -120.309546201999964, 50.800009391000096 ], [ -120.309654596, 50.798122985000106 ], [ -120.310079815999956, 50.798132797000058 ], [ -120.310157220999912, 50.79678536200008 ], [ -120.310582429999911, 50.796795173000099 ], [ -120.310628861999973, 50.795986712000058 ], [ -120.310203659999942, 50.795976902000127 ], [ -120.310265575999949, 50.794898954000118 ], [ -120.311541153999968, 50.794928378000094 ], [ -120.311572095999963, 50.794389404000142 ], [ -120.311997283999958, 50.794399208000058 ], [ -120.312030880999913, 50.793813874000129 ], [ -120.308631843999933, 50.79364064700011 ], [ -120.309087798999883, 50.79005963700012 ], [ -120.309826370999971, 50.790097286000055 ], [ -120.310033150999971, 50.788472856000098 ], [ -120.313192728999951, 50.788633862000076 ], [ -120.313314454999897, 50.787677031000101 ], [ -120.316518483999943, 50.78784021000007 ], [ -120.316630280999945, 50.787845902000115 ], [ -120.316633810999988, 50.787784276000082 ], [ -120.316650640999967, 50.78749046800008 ], [ -120.317301952999969, 50.787505459000087 ], [ -120.31750089599997, 50.787510037000061 ], [ -120.317516329999975, 50.787240548000057 ], [ -120.317636069999978, 50.78724330300011 ], [ -120.317661116999943, 50.787046273000101 ], [ -120.318000442999974, 50.784376632000068 ], [ -120.319788963999969, 50.784467663000065 ], [ -120.319514785999957, 50.784822603000123 ], [ -120.31925637199997, 50.785126687000023 ], [ -120.31924634799995, 50.785313420000072 ], [ -120.319223592999919, 50.78573591 ], [ -120.318772709999905, 50.786258985000075 ], [ -120.317680610999957, 50.788018078000071 ], [ -120.315651507999945, 50.79132171000002 ], [ -120.312160949999964, 50.796993511000046 ], [ -120.312021593999987, 50.797219896000058 ], [ -120.312427903999918, 50.79731720300007 ], [ -120.313024494999951, 50.797329601000094 ], [ -120.31370919699999, 50.797329289000032 ], [ -120.314954395999962, 50.79732870400013 ], [ -120.314963098999939, 50.798388287000044 ], [ -120.314967605000021, 50.798937804000026 ], [ -120.314832388999918, 50.799552592000083 ], [ -120.314725966999973, 50.800002124000102 ], [ -120.314715396999986, 50.800046685000055 ], [ -120.314267322999982, 50.800916002000058 ], [ -120.313892274999915, 50.801590698000091 ], [ -120.313818776999966, 50.80166384900005 ], [ -120.31320741, 50.802272104000082 ], [ -120.31281619, 50.802603603000108 ], [ -120.312724083999953, 50.802757391000085 ], [ -120.312604584999974, 50.802956895000072 ], [ -120.312028215999973, 50.803926799000116 ], [ -120.313293303999927, 50.8042272960001 ], [ -120.314442598999946, 50.804497514000033 ], [ -120.315668917999972, 50.804789703000068 ], [ -120.316551513999926, 50.804883300000014 ], [ -120.317448848999945, 50.804888103000103 ], [ -120.318045187999971, 50.804891264000055 ], [ -120.318706611999986, 50.804894793000074 ], [ -120.320359416999949, 50.804902206000065 ], [ -120.320361395999896, 50.805749293000098 ], [ -120.320368123999955, 50.806499073000097 ], [ -120.320369088999911, 50.806608409000063 ], [ -120.320375652999971, 50.80747088100005 ], [ -120.320379400999954, 50.807961394000124 ], [ -120.320379707999962, 50.807970822000044 ], [ -120.320383986999914, 50.808093202000045 ], [ -120.321133628999974, 50.808383607000039 ], [ -120.320894017999976, 50.808427397000031 ], [ -120.320549977999988, 50.808432797000066 ], [ -120.319715615999954, 50.808445899000034 ], [ -120.318863294999943, 50.808327431000137 ], [ -120.318863757999949, 50.80831935100008 ], [ -120.318793539999945, 50.808317736000092 ], [ -120.318322014999936, 50.808252193000037 ], [ -120.318022935999977, 50.808128552000049 ], [ -120.318025648999964, 50.808081203000036 ], [ -120.317891941999946, 50.808074399000084 ], [ -120.317202900999945, 50.807789540000051 ], [ -120.316685603999971, 50.807575686000092 ], [ -120.315486799999945, 50.807196890000071 ], [ -120.315396754999981, 50.807182890000028 ], [ -120.315536551999969, 50.806084041000076 ], [ -120.31430898399999, 50.806055768000149 ], [ -120.314324445999944, 50.805786282000064 ], [ -120.313969313999976, 50.805778100000083 ], [ -120.313912324999961, 50.805782462000067 ], [ -120.313853912999946, 50.805775442000098 ], [ -120.312197985999944, 50.80573727800008 ], [ -120.312213459999953, 50.805467790000122 ], [ -120.310932372999929, 50.805438248000108 ], [ -120.310743571, 50.806921091000042 ], [ -120.308843489999944, 50.807161309000087 ], [ -120.306041005999987, 50.807770798000071 ], [ -120.305530808999961, 50.808001589000078 ], [ -120.305495173999944, 50.808022075000039 ], [ -120.30503290199999, 50.808287796000045 ], [ -120.301896030999984, 50.809489415000037 ], [ -120.301505010999961, 50.809174006000049 ], [ -120.30118984799999, 50.808969972000156 ], [ -120.301040413999914, 50.808878513000096 ], [ -120.30143259499999, 50.808691115000066 ], [ -120.304290302999931, 50.807372600000122 ], [ -120.304700215999944, 50.807164829000044 ], [ -120.305994394999971, 50.8065088970001 ], [ -120.306614796999895, 50.806111686000044 ], [ -120.307086990999949, 50.805770797000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90109666", "BldgCostT": "60991666", "sL_LossRatio": "0.996904369679916", "sL_AssetLoss": "8980.400476", "sL_BldgLoss": "8952.600476", "sL_StrLoss": "8942.500476", "sL_NStrLoss": "10.1", "sL_ContLoss": "27.8", "geom_point": "0101000020E61000009035E1664A145EC0F121D1996E664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.314954395999962, 50.79732870400013 ], [ -120.314946111999916, 50.796251506000104 ], [ -120.316158513999952, 50.796259203000034 ], [ -120.317457804999904, 50.796266791000086 ], [ -120.317458493999965, 50.797325501000039 ], [ -120.31932973899994, 50.797322940000079 ], [ -120.31948671399999, 50.797322726000047 ], [ -120.320303093999939, 50.797321615000079 ], [ -120.320311912999898, 50.79859698700006 ], [ -120.320313334999952, 50.79881623600005 ], [ -120.320319712999947, 50.799768812000067 ], [ -120.320321271999916, 50.800003964000062 ], [ -120.320327382999949, 50.800917998000024 ], [ -120.320341777999985, 50.802373896000091 ], [ -120.319430394999983, 50.802372602000077 ], [ -120.319088404999931, 50.802430006000094 ], [ -120.318749778, 50.802538890000037 ], [ -120.318354500999959, 50.802768398000097 ], [ -120.316874907999946, 50.804042885000037 ], [ -120.312604584999974, 50.802956895000072 ], [ -120.312724083999953, 50.802757391000085 ], [ -120.31281619, 50.802603603000108 ], [ -120.31320741, 50.802272104000082 ], [ -120.313818776999966, 50.80166384900005 ], [ -120.313892274999915, 50.801590698000091 ], [ -120.314267322999982, 50.800916002000058 ], [ -120.314715396999986, 50.800046685000055 ], [ -120.314725966999973, 50.800002124000102 ], [ -120.314832388999918, 50.799552592000083 ], [ -120.314967605000021, 50.798937804000026 ], [ -120.314963098999939, 50.798388287000044 ], [ -120.314954395999962, 50.79732870400013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "221565197", "BldgCostT": "150025269", "sL_LossRatio": "0.992061962128132", "sL_AssetLoss": "14877.731992", "sL_BldgLoss": "14759.631992", "sL_StrLoss": "14717.001992", "sL_NStrLoss": "42.63", "sL_ContLoss": "118.1", "geom_point": "0101000020E61000009331787768145EC02F9FB48976654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.312160949999964, 50.796993511000046 ], [ -120.315651507999945, 50.79132171000002 ], [ -120.317680610999957, 50.788018078000071 ], [ -120.318772709999905, 50.786258985000075 ], [ -120.319223592999919, 50.78573591 ], [ -120.31924634799995, 50.785313420000072 ], [ -120.31925637199997, 50.785126687000023 ], [ -120.319514785999957, 50.784822603000123 ], [ -120.319788963999969, 50.784467663000065 ], [ -120.319803368999942, 50.784468396000086 ], [ -120.319804565999974, 50.784447466000053 ], [ -120.320102395000021, 50.784061901 ], [ -120.321102280999924, 50.784084884000045 ], [ -120.32107664399993, 50.784533185000065 ], [ -120.321342351999988, 50.784546703000096 ], [ -120.32128048699991, 50.784816805000062 ], [ -120.321162138999938, 50.78764639200007 ], [ -120.32112489099994, 50.788536908000047 ], [ -120.321206708999938, 50.78943376700007 ], [ -120.321273695999977, 50.790167594000131 ], [ -120.321348679999957, 50.790392881000059 ], [ -120.321527313999965, 50.790929600000077 ], [ -120.32156020499994, 50.790965128000046 ], [ -120.321551854999882, 50.791111156000056 ], [ -120.321698515999984, 50.79111452600003 ], [ -120.322156211999967, 50.791608903000068 ], [ -120.322364693999958, 50.792085593000103 ], [ -120.322657021999987, 50.792753999000055 ], [ -120.323133338999952, 50.793400633000012 ], [ -120.323204445, 50.793577708000093 ], [ -120.323264797999954, 50.793579094000037 ], [ -120.323519649999952, 50.793925058000063 ], [ -120.323497755999966, 50.794308136000012 ], [ -120.323553623999942, 50.794447263000123 ], [ -120.323700475999971, 50.794938314000035 ], [ -120.323824047999921, 50.794941151000096 ], [ -120.323877072999949, 50.795120628000035 ], [ -120.323857489999952, 50.7954633350001 ], [ -120.324025513999956, 50.796025150000048 ], [ -120.324131214999952, 50.79602757599999 ], [ -120.324225458999976, 50.796474716000013 ], [ -120.324214984999912, 50.796658009000069 ], [ -120.324311864, 50.796884666000018 ], [ -120.324369034999933, 50.797155933000063 ], [ -120.324106691999972, 50.797292665000057 ], [ -120.323633313999935, 50.797317993000043 ], [ -120.322859789999939, 50.797319203000079 ], [ -120.320303093999939, 50.797321615000079 ], [ -120.31948671399999, 50.797322726000047 ], [ -120.31932973899994, 50.797322940000079 ], [ -120.317458493999965, 50.797325501000039 ], [ -120.317457804999904, 50.796266791000086 ], [ -120.316158513999952, 50.796259203000034 ], [ -120.314946111999916, 50.796251506000104 ], [ -120.314954395999962, 50.79732870400013 ], [ -120.31370919699999, 50.797329289000032 ], [ -120.313024494999951, 50.797329601000094 ], [ -120.312427903999918, 50.79731720300007 ], [ -120.312021593999987, 50.797219896000058 ], [ -120.312160949999964, 50.796993511000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121484417", "BldgCostT": "79561667", "sL_LossRatio": "0.986977796021107", "sL_AssetLoss": "11565.2240008", "sL_BldgLoss": "11414.6192948", "sL_StrLoss": "11360.0006948", "sL_NStrLoss": "54.6186", "sL_ContLoss": "150.604706", "geom_point": "0101000020E610000021E2CDB791145EC0A18B1BF1C3664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.320361395999896, 50.805749293000098 ], [ -120.320359416999949, 50.804902206000065 ], [ -120.318706611999986, 50.804894793000074 ], [ -120.318045187999971, 50.804891264000055 ], [ -120.317448848999945, 50.804888103000103 ], [ -120.316551513999926, 50.804883300000014 ], [ -120.315668917999972, 50.804789703000068 ], [ -120.314442598999946, 50.804497514000033 ], [ -120.313293303999927, 50.8042272960001 ], [ -120.312028215999973, 50.803926799000116 ], [ -120.312604584999974, 50.802956895000072 ], [ -120.316874907999946, 50.804042885000037 ], [ -120.318354500999959, 50.802768398000097 ], [ -120.318749778, 50.802538890000037 ], [ -120.319088404999931, 50.802430006000094 ], [ -120.319430394999983, 50.802372602000077 ], [ -120.320341777999985, 50.802373896000091 ], [ -120.320327382999949, 50.800917998000024 ], [ -120.320321271999916, 50.800003964000062 ], [ -120.320319712999947, 50.799768812000067 ], [ -120.320313334999952, 50.79881623600005 ], [ -120.320311912999898, 50.79859698700006 ], [ -120.320303093999939, 50.797321615000079 ], [ -120.322859789999939, 50.797319203000079 ], [ -120.323633313999935, 50.797317993000043 ], [ -120.324106691999972, 50.797292665000057 ], [ -120.324369034999933, 50.797155933000063 ], [ -120.324477783999924, 50.797671804000075 ], [ -120.32476356299999, 50.798149588000122 ], [ -120.324753039999933, 50.798149053000067 ], [ -120.324769519999933, 50.798200972000181 ], [ -120.324788095999949, 50.798201398000046 ], [ -120.324716293999955, 50.799373520000046 ], [ -120.32468614899993, 50.799865567000076 ], [ -120.324633220999928, 50.800729535000073 ], [ -120.324558688999929, 50.801945802000041 ], [ -120.324625141999945, 50.80229775800013 ], [ -120.324689909999961, 50.802640793000066 ], [ -120.324899283999926, 50.803118542000043 ], [ -120.325040699999988, 50.803441194000072 ], [ -120.325097000999918, 50.804056250000045 ], [ -120.325145514999946, 50.804586303000072 ], [ -120.325079857999938, 50.804986581000058 ], [ -120.325036882999953, 50.805248593000059 ], [ -120.324684704999981, 50.805985024000115 ], [ -120.324376922999988, 50.806628601000064 ], [ -120.324243385999964, 50.806757822000108 ], [ -120.324208152999944, 50.806791927000091 ], [ -120.323647633999954, 50.807334321 ], [ -120.323558008999953, 50.807421077000065 ], [ -120.32323341299994, 50.807735187000056 ], [ -120.322590392999956, 50.808061393000116 ], [ -120.321985100999953, 50.808228008000071 ], [ -120.321513662999934, 50.808314158000066 ], [ -120.321133628999974, 50.808383607000039 ], [ -120.320383986999914, 50.808093202000045 ], [ -120.320379707999962, 50.807970822000044 ], [ -120.320379400999954, 50.807961394000124 ], [ -120.320375652999971, 50.80747088100005 ], [ -120.320369088999911, 50.806608409000063 ], [ -120.320368123999955, 50.806499073000097 ], [ -120.320361395999896, 50.805749293000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "208771252", "BldgCostT": "128210002", "sL_LossRatio": "0.991818218623208", "sL_AssetLoss": "29327.417704", "sL_BldgLoss": "29087.467184", "sL_StrLoss": "28956.991994", "sL_NStrLoss": "130.47519", "sL_ContLoss": "239.95052", "geom_point": "0101000020E610000082B7C5048E155EC0A12D7446105A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.342001473999915, 50.726071489000049 ], [ -120.342259411999962, 50.724030515000109 ], [ -120.339663735999935, 50.723898730000087 ], [ -120.340116504999941, 50.720317302000076 ], [ -120.343289739999989, 50.720478402000019 ], [ -120.343300331999927, 50.720394568000053 ], [ -120.339704426999972, 50.720212002000025 ], [ -120.339272176999927, 50.723630901000078 ], [ -120.33535625799999, 50.72343195600007 ], [ -120.334833495999987, 50.722180697000063 ], [ -120.334769259999959, 50.722026955000018 ], [ -120.334016034999962, 50.720224343000083 ], [ -120.334074496999932, 50.71976235900005 ], [ -120.338215440999974, 50.719972799000068 ], [ -120.3396173309999, 50.720044007000055 ], [ -120.340047123999952, 50.716644050000035 ], [ -120.340049521999944, 50.716625092000129 ], [ -120.340062378999946, 50.716625745000073 ], [ -120.345551459999939, 50.716904387000071 ], [ -120.345606676999921, 50.716467123000065 ], [ -120.342901469999973, 50.716329833000067 ], [ -120.343117306999943, 50.714621331000075 ], [ -120.34313644099997, 50.71446987500007 ], [ -120.343255547999945, 50.713526998000049 ], [ -120.343304924999941, 50.7131361080001 ], [ -120.341892089999973, 50.713064380000105 ], [ -120.341722347999948, 50.714407766000093 ], [ -120.341371948999978, 50.714389973000046 ], [ -120.341349287999918, 50.714569309000083 ], [ -120.34133385899996, 50.714691400000014 ], [ -120.341252393999952, 50.715336064000077 ], [ -120.341205899999935, 50.715703975000061 ], [ -120.34091282299994, 50.715689093000023 ], [ -120.337994420999976, 50.71554085300005 ], [ -120.33790958900002, 50.716211750000092 ], [ -120.337109170999938, 50.716171080000038 ], [ -120.337039878999988, 50.71671896900007 ], [ -120.335153594, 50.716623101000025 ], [ -120.335120013999969, 50.717214874000021 ], [ -120.333846521999945, 50.717185741000051 ], [ -120.333882135999957, 50.71655846400008 ], [ -120.333458315999948, 50.71653691300002 ], [ -120.333452630999943, 50.716637034000051 ], [ -120.332508254999965, 50.716615417000078 ], [ -120.332013959000022, 50.715432149000073 ], [ -120.331904308999938, 50.71516957700009 ], [ -120.331064756000018, 50.713158565000114 ], [ -120.331160422000025, 50.712402849000036 ], [ -120.330740359999965, 50.712381479000037 ], [ -120.329625289999939, 50.709710121000057 ], [ -120.329570224999941, 50.709583874000018 ], [ -120.329184533999964, 50.708653459000097 ], [ -120.329183967999938, 50.708652055000051 ], [ -120.329051125999968, 50.708331630000032 ], [ -120.32905070000001, 50.708330528000047 ], [ -120.328257314999917, 50.706416311000048 ], [ -120.327361509999974, 50.704254772000105 ], [ -120.327240752999927, 50.703963328000043 ], [ -120.326163051, 50.701362512000081 ], [ -120.32842212599995, 50.701477546000042 ], [ -120.328367960999969, 50.701905326000094 ], [ -120.330524385999979, 50.702015090000039 ], [ -120.330320452999956, 50.703626230000097 ], [ -120.331580783999939, 50.703690363000092 ], [ -120.33167163, 50.702972499000097 ], [ -120.331685579999913, 50.702862265000121 ], [ -120.33283775699999, 50.702920882000072 ], [ -120.333187396999989, 50.70015724800011 ], [ -120.332179479999965, 50.700105971000035 ], [ -120.332255686999943, 50.699503670000084 ], [ -120.331100280999962, 50.699444878000065 ], [ -120.330898707999935, 50.701037648000039 ], [ -120.329606811999923, 50.700971897000045 ], [ -120.32592349699999, 50.70078435300006 ], [ -120.325600911999956, 50.700005774000026 ], [ -120.324987498, 50.698525170000075 ], [ -120.324306972999963, 50.696886444000036 ], [ -120.323855498999976, 50.696019974000087 ], [ -120.32335790499998, 50.69533766900004 ], [ -120.322550886999963, 50.694417923000096 ], [ -120.321735213999972, 50.693828813000017 ], [ -120.321583193999942, 50.693719021000156 ], [ -120.321591970999989, 50.693564979000023 ], [ -120.32164777599999, 50.693527497000105 ], [ -120.321928098999962, 50.693232690000059 ], [ -120.321953315999949, 50.692630224000013 ], [ -120.321969996999925, 50.692004990000051 ], [ -120.322009030999979, 50.690542362 ], [ -120.32215370699997, 50.687530037000045 ], [ -120.322179798999983, 50.686986103000059 ], [ -120.322376523999978, 50.68648790600016 ], [ -120.322546083999967, 50.686158600000063 ], [ -120.32353389299999, 50.68422640900004 ], [ -120.324333889999963, 50.682654095000025 ], [ -120.324807886999935, 50.681727688000066 ], [ -120.324841704999969, 50.681661596000083 ], [ -120.324847851999962, 50.68163676100005 ], [ -120.324923181999935, 50.681332388000079 ], [ -120.324858531999951, 50.681102949000035 ], [ -120.324915214, 50.681090304000087 ], [ -120.332096243999899, 50.681444508000041 ], [ -120.33207236799997, 50.681633297000069 ], [ -120.333574892999948, 50.6817097670001 ], [ -120.333559780999977, 50.68182927800008 ], [ -120.333728002999933, 50.681833128000058 ], [ -120.333743284999983, 50.681563631000095 ], [ -120.337560874999923, 50.681650952000062 ], [ -120.337517712999897, 50.682413169 ], [ -120.337237741999985, 50.682722954000042 ], [ -120.337075643999967, 50.682719248000062 ], [ -120.337064582, 50.682914550000099 ], [ -120.33699879800001, 50.682987338 ], [ -120.336636190999968, 50.682979049000053 ], [ -120.336601996999946, 50.68358268100009 ], [ -120.336574508999973, 50.683705083000099 ], [ -120.336570873999932, 50.683787095000078 ], [ -120.335742000999915, 50.683768141000051 ], [ -120.335726727999955, 50.684037638000106 ], [ -120.336558924999906, 50.684056670000103 ], [ -120.336528298999937, 50.684747610000095 ], [ -120.336535024999989, 50.684764886000103 ], [ -120.336529322999951, 50.684865534000018 ], [ -120.336105116999974, 50.684855833000029 ], [ -120.33607457699999, 50.685394828000071 ], [ -120.335226155999948, 50.685375424000057 ], [ -120.335134498999963, 50.686992408000037 ], [ -120.335558723999952, 50.68700211200008 ], [ -120.335543449999975, 50.687271610000053 ], [ -120.336816131999967, 50.687300713000056 ], [ -120.336760118999976, 50.688289426000068 ], [ -120.337030715999958, 50.688303185000109 ], [ -120.337025398999955, 50.68834525700003 ], [ -120.339596936999953, 50.688475987000089 ], [ -120.339737708999962, 50.688607202000071 ], [ -120.339868890999966, 50.689016003000091 ], [ -120.339826799999983, 50.689508791000037 ], [ -120.339823216999946, 50.68986050700002 ], [ -120.340208394999962, 50.690786297000031 ], [ -120.340984148999922, 50.691983322000063 ], [ -120.340374986999905, 50.691969416000106 ], [ -120.340298736999969, 50.693316908000064 ], [ -120.340723021999949, 50.693326593000059 ], [ -120.340692523999934, 50.69386559000003 ], [ -120.341116812999957, 50.693875275000067 ], [ -120.34104057699993, 50.69522276700004 ], [ -120.340191976999918, 50.695203395000078 ], [ -120.340130965999975, 50.696281388000031 ], [ -120.339738752, 50.696272432000043 ], [ -120.339706655, 50.696271700000075 ], [ -120.339691399999936, 50.696541197000073 ], [ -120.339897020999956, 50.696545892000117 ], [ -120.340115712999975, 50.69655088600009 ], [ -120.34010045899997, 50.696820384000041 ], [ -120.341373405999946, 50.696849441000062 ], [ -120.341358158999938, 50.69711894000006 ], [ -120.341782477000024, 50.697128623000083 ], [ -120.341742132999926, 50.697841846000053 ], [ -120.341721497999941, 50.698206616000064 ], [ -120.342255061999978, 50.698218790000027 ], [ -120.342994484999963, 50.698235657000097 ], [ -120.34296596899999, 50.698739974000041 ], [ -120.342933530999957, 50.699313652000029 ], [ -120.343037837999972, 50.699316031000137 ], [ -120.343357869999977, 50.699323329000023 ], [ -120.343281683999933, 50.700670823000095 ], [ -120.342857332999969, 50.700661144000037 ], [ -120.342842091999941, 50.700930643000099 ], [ -120.341569034999935, 50.700901600000037 ], [ -120.341538538999927, 50.701440596000097 ], [ -120.340948916999949, 50.701427140000085 ], [ -120.340802101999913, 50.701423789000074 ], [ -120.3407122939999, 50.702134618000102 ], [ -120.339076541999958, 50.702051510000068 ], [ -120.339016773999958, 50.702524432000089 ], [ -120.341607335, 50.702656038000036 ], [ -120.34311587199997, 50.702732648000037 ], [ -120.342835950999955, 50.704949005000145 ], [ -120.342663519999945, 50.706314162000083 ], [ -120.342191102999976, 50.706290173000077 ], [ -120.342135520999989, 50.706730174000086 ], [ -120.338919472999919, 50.706566813000059 ], [ -120.338656324999988, 50.708648618000083 ], [ -120.34133144899999, 50.708784508000051 ], [ -120.34125022899994, 50.709427326000082 ], [ -120.341868898, 50.709458744000109 ], [ -120.342163280999941, 50.707128519000037 ], [ -120.343420781999939, 50.707192368000037 ], [ -120.343538519, 50.706260122000046 ], [ -120.343627006999924, 50.705559449000077 ], [ -120.349275757, 50.705846085000083 ], [ -120.349081708999961, 50.70738412 ], [ -120.349995914999937, 50.707430482000028 ], [ -120.350043894999956, 50.707714389000074 ], [ -120.350246077999955, 50.708410895000071 ], [ -120.350508325999925, 50.708776010000051 ], [ -120.350408309000031, 50.709568879000095 ], [ -120.350780383999947, 50.709587744000018 ], [ -120.350864311999942, 50.70999029200005 ], [ -120.351477403999937, 50.710688212000029 ], [ -120.35223764899996, 50.712489706000035 ], [ -120.352240091999931, 50.712495493000119 ], [ -120.352283440999955, 50.712605450000112 ], [ -120.352334273999958, 50.712734388000086 ], [ -120.352267036999976, 50.713267523000091 ], [ -120.349844302999927, 50.713144707000019 ], [ -120.349368550999898, 50.713120584000116 ], [ -120.348995145999965, 50.713101648000048 ], [ -120.348982058999937, 50.713205368000054 ], [ -120.348965199999938, 50.713338962000122 ], [ -120.348845202999954, 50.714289844000092 ], [ -120.34931110199993, 50.714300445000106 ], [ -120.349295890999926, 50.714569943000114 ], [ -120.350993807999942, 50.714608560000038 ], [ -120.350980600999932, 50.714842700000077 ], [ -120.353141013999959, 50.714952194000041 ], [ -120.353148218999948, 50.715735604000095 ], [ -120.353605390999959, 50.71715841500005 ], [ -120.353485102999954, 50.719296168000014 ], [ -120.353264517999918, 50.719284991000109 ], [ -120.353199455999942, 50.719800886000023 ], [ -120.352619863999934, 50.71977152000008 ], [ -120.352558654999925, 50.72025680000008 ], [ -120.352071704999915, 50.720232125000038 ], [ -120.351991264999953, 50.720869812000032 ], [ -120.351658561999898, 50.720852952 ], [ -120.351465329999911, 50.722384621000053 ], [ -120.348828127000019, 50.722250940000087 ], [ -120.348555721999944, 50.724408984000064 ], [ -120.347903069999958, 50.724375891000108 ], [ -120.347652795999963, 50.726358200000057 ], [ -120.347173918999943, 50.726333916 ], [ -120.346571454999946, 50.726303362000102 ], [ -120.342001473999915, 50.726071489000049 ] ], [ [ -120.346625746999962, 50.712914399000034 ], [ -120.346870960999922, 50.710971923000081 ], [ -120.346144161999916, 50.710935047000078 ], [ -120.345898917999975, 50.712877522000092 ], [ -120.346625746999962, 50.712914399000034 ] ], [ [ -120.332466263999933, 50.711553283000057 ], [ -120.332470000999933, 50.711487465000054 ], [ -120.333912807999937, 50.71152049100008 ], [ -120.334167782999927, 50.711526325000122 ], [ -120.334161359999953, 50.711639487000063 ], [ -120.334252391999925, 50.711644115000126 ], [ -120.334296848999969, 50.71129272700005 ], [ -120.33431097899998, 50.711181035000067 ], [ -120.334330912999974, 50.711023473000068 ], [ -120.334528372999969, 50.709462622000061 ], [ -120.331700407999946, 50.709318794000062 ], [ -120.331653382999917, 50.709690325000089 ], [ -120.331637731999962, 50.709813986000057 ], [ -120.331348726000016, 50.712097237000101 ], [ -120.332088201999966, 50.712134854000091 ], [ -120.332163755999929, 50.711537896000017 ], [ -120.332466263999933, 50.711553283000057 ] ], [ [ -120.339174817999947, 50.698161138000025 ], [ -120.33917553299996, 50.698148493000176 ], [ -120.339167832999948, 50.698148318000044 ], [ -120.338751205999984, 50.698138801000049 ], [ -120.338789950999967, 50.697454641000043 ], [ -120.338796991000024, 50.697330308000105 ], [ -120.338721277999923, 50.697328579000107 ], [ -120.338372672999952, 50.697320615000095 ], [ -120.338387936999965, 50.697051117000065 ], [ -120.33825028199999, 50.697047971000082 ], [ -120.338079864999912, 50.698396339000055 ], [ -120.33915839399999, 50.698451152000189 ], [ -120.339174817999947, 50.698161138000025 ] ], [ [ -120.337977504999955, 50.696796285000055 ], [ -120.338009415999949, 50.696232929000089 ], [ -120.337160798999932, 50.696213533000048 ], [ -120.33719133799994, 50.695674539000038 ], [ -120.336767035999969, 50.695664840000049 ], [ -120.336858663000015, 50.694047855000079 ], [ -120.33643437399999, 50.69403815400009 ], [ -120.33644964799997, 50.693768657000064 ], [ -120.336025360999926, 50.69375895500005 ], [ -120.336076001999984, 50.692865508000125 ], [ -120.334127810999973, 50.692766422000062 ], [ -120.33407618299999, 50.693174671000087 ], [ -120.33435878899995, 50.693181138000035 ], [ -120.334282362999915, 50.694528623000082 ], [ -120.333906037999938, 50.694520011000115 ], [ -120.333841486999987, 50.695030393000096 ], [ -120.33324912499999, 50.695000258000036 ], [ -120.33312980099997, 50.695943588000048 ], [ -120.336329369999945, 50.69610631900008 ], [ -120.336253223999947, 50.696708626000095 ], [ -120.337977504999955, 50.696796285000055 ] ], [ [ -120.331248565999957, 50.689088425000101 ], [ -120.331319952999948, 50.688524164000107 ], [ -120.331224687999963, 50.688521981000122 ], [ -120.331194087999947, 50.689060973000039 ], [ -120.330769845999967, 50.689051254000042 ], [ -120.33076912099996, 50.689064020000046 ], [ -120.331248565999957, 50.689088425000101 ] ], [ [ -120.325532427000013, 50.68835794400006 ], [ -120.326153593999933, 50.688058282000071 ], [ -120.326164516999967, 50.687866247000088 ], [ -120.326534074999984, 50.687874729000036 ], [ -120.326590361999976, 50.687847575000028 ], [ -120.326619397999949, 50.687336993000081 ], [ -120.327043624999973, 50.687346728000101 ], [ -120.327074269999983, 50.686807737000073 ], [ -120.327498490999957, 50.686817469000047 ], [ -120.327513809999957, 50.686547974000085 ], [ -120.328786464999922, 50.686577165000124 ], [ -120.328801779999978, 50.686307668000047 ], [ -120.330922864999962, 50.686356289000067 ], [ -120.330907563999915, 50.686625785000047 ], [ -120.331756002999896, 50.686645223000077 ], [ -120.331786595999958, 50.686106230000128 ], [ -120.330938164999935, 50.686086792000047 ], [ -120.330984064999924, 50.685278303000118 ], [ -120.329563082999954, 50.685245735000095 ], [ -120.329544344999988, 50.685393815000104 ], [ -120.328855694999945, 50.685358747000073 ], [ -120.32884771699996, 50.685499180000093 ], [ -120.328591148000015, 50.685493297000093 ], [ -120.32851423999989, 50.686100938000024 ], [ -120.326410183999926, 50.685993762000095 ], [ -120.326357165999937, 50.686412486000094 ], [ -120.32626957799999, 50.686408024000045 ], [ -120.326089735999943, 50.687828289000095 ], [ -120.324121435999984, 50.68772799100006 ], [ -120.324054772999943, 50.688254236000027 ], [ -120.323857427999968, 50.688244178000041 ], [ -120.323853851999928, 50.688272403000028 ], [ -120.325532427000013, 50.68835794400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5242417", "BldgCostT": "3351667", "sL_LossRatio": "0.999736296856219", "sL_AssetLoss": "1179.204751", "sL_BldgLoss": "1178.893791", "sL_StrLoss": "1178.000983", "sL_NStrLoss": "0.892808", "sL_ContLoss": "0.31096", "geom_point": "0101000020E6100000F6A26E4E42165EC0FBE6DDDC085E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.347355962999941, 50.73282093100007 ], [ -120.350849245999939, 50.732997995000048 ], [ -120.350397206999929, 50.736579413000094 ], [ -120.348008984999979, 50.736458374000087 ], [ -120.34640821499994, 50.736377215000111 ], [ -120.344744579999954, 50.736292845000058 ], [ -120.345197067999933, 50.732711448000025 ], [ -120.347355962999941, 50.73282093100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "104.4", "sL_BldgLoss": "104.4", "sL_StrLoss": "104.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E34578DEBA065EC0693FADFD785F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.104277320999969, 50.74457300500012 ], [ -120.104762095999945, 50.744548795000121 ], [ -120.105246292999965, 50.744741008000062 ], [ -120.106034396999917, 50.74482359000006 ], [ -120.10636704700002, 50.744977222000053 ], [ -120.106076966999979, 50.747179163000055 ], [ -120.103914790999966, 50.747064852000051 ], [ -120.104286954999949, 50.746146292000077 ], [ -120.104330636999947, 50.745682229000096 ], [ -120.104283094, 50.745534851000045 ], [ -120.103819553999955, 50.74482065500009 ], [ -120.104277320999969, 50.74457300500012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40399417", "BldgCostT": "27861667", "sL_LossRatio": "0.99999900374714", "sL_AssetLoss": "3854.44314", "sL_BldgLoss": "3854.4393", "sL_StrLoss": "3854.4", "sL_NStrLoss": "0.0393", "sL_ContLoss": "0.00384", "geom_point": "0101000020E6100000C639C9DA8F025EC07E1B8B3B185D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.033158211999933, 50.73174235200004 ], [ -120.031915231999946, 50.731647157000069 ], [ -120.031884737999931, 50.731651528000079 ], [ -120.030489607000021, 50.731851158000069 ], [ -120.030588551999941, 50.730380866000068 ], [ -120.03061275099999, 50.730021549000114 ], [ -120.031472747999928, 50.729332959000033 ], [ -120.031649041999927, 50.72920340600011 ], [ -120.031792907999915, 50.729097714000041 ], [ -120.032123879999972, 50.728535813000043 ], [ -120.032666346999932, 50.728041153000085 ], [ -120.033046372999976, 50.727857821 ], [ -120.033615800999954, 50.727662875000085 ], [ -120.033709373999955, 50.727579582000033 ], [ -120.034240767999975, 50.727093303000061 ], [ -120.034489874999935, 50.726526130000082 ], [ -120.034753695999939, 50.726068354000077 ], [ -120.034822955999957, 50.725948124000048 ], [ -120.03481055499995, 50.725721200000102 ], [ -120.033798542999989, 50.725182061000083 ], [ -120.033559218999955, 50.724939373000097 ], [ -120.03288906, 50.724085871000085 ], [ -120.032836307999986, 50.723741882000112 ], [ -120.032896861999944, 50.723609456000112 ], [ -120.032986821999927, 50.723412882000076 ], [ -120.033052203999929, 50.722972771000087 ], [ -120.033119491000022, 50.722519587000065 ], [ -120.032959226999964, 50.722192688000064 ], [ -120.03270589499999, 50.72190473700006 ], [ -120.034450591999956, 50.721903166000047 ], [ -120.03677278899994, 50.721901076000037 ], [ -120.036957138, 50.721900910000059 ], [ -120.036943117999968, 50.722006147000094 ], [ -120.037583841999975, 50.722040433000103 ], [ -120.037602505999956, 50.721900327000149 ], [ -120.04202291799993, 50.721896236000099 ], [ -120.042127905999962, 50.721877864000064 ], [ -120.043286257999938, 50.7219397920001 ], [ -120.043172129999945, 50.722797390000018 ], [ -120.047358183999975, 50.723021082000052 ], [ -120.04703405, 50.725458254000024 ], [ -120.046882020999931, 50.726601281000086 ], [ -120.046284015000012, 50.726569335000136 ], [ -120.046279384999963, 50.726604139000074 ], [ -120.046597056999985, 50.726621110000053 ], [ -120.046543705999923, 50.72702219600005 ], [ -120.048134533999928, 50.727107169000121 ], [ -120.048000774999977, 50.72811298200007 ], [ -120.048245798999986, 50.728126067000069 ], [ -120.048196643999987, 50.728495694000081 ], [ -120.048338420999983, 50.728503266000075 ], [ -120.047862277999954, 50.732083446000019 ], [ -120.047139616999942, 50.732044852000037 ], [ -120.047093163999946, 50.732394064000125 ], [ -120.046547196999938, 50.732364902000015 ], [ -120.04654494, 50.732381876000019 ], [ -120.040894835999907, 50.732079936000098 ], [ -120.040961932999934, 50.731576052000065 ], [ -120.040950470999931, 50.731575439000089 ], [ -120.041014180999923, 50.73109698800004 ], [ -120.040863601999931, 50.731088937000102 ], [ -120.040890076999972, 50.730890110000054 ], [ -120.039898708999957, 50.730837101000091 ], [ -120.039917455999927, 50.731126494000108 ], [ -120.03967651899994, 50.731132782000046 ], [ -120.039625633999947, 50.731939428000032 ], [ -120.039544775, 50.731937372000068 ], [ -120.039545320999977, 50.731945793000129 ], [ -120.037847350999982, 50.731990081000035 ], [ -120.037829908999981, 50.73172067400008 ], [ -120.036980926999945, 50.731742809000174 ], [ -120.036971820999966, 50.731602106000118 ], [ -120.035821956999897, 50.731572856000057 ], [ -120.035826365999966, 50.731503038000035 ], [ -120.035690023999905, 50.731506591000048 ], [ -120.035676612999978, 50.73129929800006 ], [ -120.035414457999977, 50.731292628000105 ], [ -120.035423847999979, 50.731143994000035 ], [ -120.035234295999928, 50.732566144000067 ], [ -120.034865280999909, 50.732232064000108 ], [ -120.034820129000011, 50.732191186000115 ], [ -120.034350756999942, 50.731945203000109 ], [ -120.034086596999927, 50.731858018000032 ], [ -120.033910642999942, 50.731799953000078 ], [ -120.033158211999933, 50.73174235200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5928084", "BldgCostT": "4088334", "sL_LossRatio": "1", "sL_AssetLoss": "473", "sL_BldgLoss": "473", "sL_StrLoss": "473", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FDDC6D6AE2085EC0358E3FEEAE5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.135692432000013, 50.725751146000071 ], [ -120.136161499999957, 50.722170568000095 ], [ -120.141810990999915, 50.722467692000052 ], [ -120.141791456999925, 50.722616959000085 ], [ -120.142240503999972, 50.722627976000055 ], [ -120.142191294999975, 50.723436331000045 ], [ -120.141766811999958, 50.723425918000018 ], [ -120.141733998999953, 50.723964822000042 ], [ -120.141615441999988, 50.72396191400005 ], [ -120.141342371999883, 50.726048293000105 ], [ -120.135692432000013, 50.725751146000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "126.4", "sL_BldgLoss": "126.4", "sL_StrLoss": "126.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000392CECEDFF0A5EC0AAA7E2084A564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169972075999965, 50.674513485000055 ], [ -120.170167432999961, 50.673011712000068 ], [ -120.170905073999947, 50.673207191000131 ], [ -120.172108097999953, 50.673874086000097 ], [ -120.172351352999954, 50.673948877000065 ], [ -120.172588912999942, 50.674021901000096 ], [ -120.172958220999973, 50.674105789000087 ], [ -120.175599598999952, 50.674705804000091 ], [ -120.175628901999929, 50.67470808000008 ], [ -120.175615796999978, 50.674808916000153 ], [ -120.169972075999965, 50.674513485000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "363", "sL_BldgLoss": "363", "sL_StrLoss": "363", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008DCBFAC513075EC01F1B9A157E5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.107312037999989, 50.747088728000072 ], [ -120.107556317999965, 50.745234068000087 ], [ -120.107610717999961, 50.745249499000053 ], [ -120.108361585999887, 50.745250904000038 ], [ -120.110720118999922, 50.744948997000044 ], [ -120.113016004999963, 50.74426818400007 ], [ -120.113381888000021, 50.744215043000111 ], [ -120.112964477999938, 50.74738730300006 ], [ -120.107312037999989, 50.747088728000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "1", "sL_AssetLoss": "494.7", "sL_BldgLoss": "494.7", "sL_StrLoss": "494.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000420EE76DEE085EC0BFCD0B45F4574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.13956140699996, 50.685775900000102 ], [ -120.139677909999975, 50.685623397000022 ], [ -120.139384011999965, 50.684314655000101 ], [ -120.139353786999962, 50.684180159000057 ], [ -120.139278652999963, 50.683845594000054 ], [ -120.141278287999967, 50.68395083300004 ], [ -120.141176242999933, 50.684731213000049 ], [ -120.14103292599999, 50.685827172000103 ], [ -120.1417485, 50.685864823000017 ], [ -120.141280257999966, 50.689445578000054 ], [ -120.138534943999971, 50.689301105000013 ], [ -120.138505338999948, 50.689527371000082 ], [ -120.13848965899993, 50.68951939600008 ], [ -120.137723841999957, 50.689026684000055 ], [ -120.137346981999926, 50.688675361000037 ], [ -120.136736909999982, 50.688188034000078 ], [ -120.13647796699999, 50.687757873000066 ], [ -120.136466911, 50.687454185000036 ], [ -120.13647352699995, 50.687363531000067 ], [ -120.13657101799997, 50.687193402000084 ], [ -120.136725861999963, 50.687015509000027 ], [ -120.136759717999951, 50.686997137000048 ], [ -120.137095713999912, 50.686814933000107 ], [ -120.137250492, 50.686745808000076 ], [ -120.137715993999961, 50.686684607000103 ], [ -120.138007711999975, 50.686605391000064 ], [ -120.138312280999941, 50.686471792000098 ], [ -120.139313556999966, 50.685955033000063 ], [ -120.139380487999929, 50.685920498000037 ], [ -120.13956140699996, 50.685775900000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5928084", "BldgCostT": "4088334", "sL_LossRatio": "1", "sL_AssetLoss": "539.4", "sL_BldgLoss": "539.4", "sL_StrLoss": "539.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD0D624EED0A5EC0B0EC7A50ED5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.168140855999965, 50.747491666000052 ], [ -120.173793748999927, 50.747787166000094 ], [ -120.173620811999982, 50.749115098000026 ], [ -120.173327417999957, 50.751367794000039 ], [ -120.17151054599999, 50.751272850000099 ], [ -120.167674076999972, 50.751072273000041 ], [ -120.168140855999965, 50.747491666000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50330667", "BldgCostT": "33236667", "sL_LossRatio": "1", "sL_AssetLoss": "3648.5", "sL_BldgLoss": "3648.5", "sL_StrLoss": "3648.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004EAF077294095EC059663298165E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.165949574999928, 50.738318888000023 ], [ -120.165982125999932, 50.737779974000063 ], [ -120.165557500999981, 50.737769646000125 ], [ -120.165524945999934, 50.738308559000103 ], [ -120.165949574999928, 50.738318888000023 ], [ -120.165851916999898, 50.739935628000033 ], [ -120.165434557999944, 50.739925476000089 ], [ -120.164153347999928, 50.739894301000049 ], [ -120.164251063999956, 50.738277563000061 ], [ -120.163826437999987, 50.73826722800009 ], [ -120.163859012, 50.737728315000012 ], [ -120.162585149, 50.737697302000072 ], [ -120.162601441999968, 50.737427846000081 ], [ -120.161752203999953, 50.737407162000082 ], [ -120.161764488999907, 50.737204104000099 ], [ -120.161526122999945, 50.737191620000083 ], [ -120.161359355999977, 50.738469801000086 ], [ -120.155707717999945, 50.738173671000013 ], [ -120.155923479999942, 50.736521555000081 ], [ -120.15579033599991, 50.736514576000069 ], [ -120.155800456999941, 50.736437072000044 ], [ -120.156884699999964, 50.736450688000048 ], [ -120.158142703999943, 50.736284104000042 ], [ -120.158992586999929, 50.73606190300012 ], [ -120.159647590999924, 50.736004908000098 ], [ -120.159881316999972, 50.73587670700001 ], [ -120.15972160099993, 50.735710089000122 ], [ -120.158329985999956, 50.735757105000047 ], [ -120.157908997, 50.735692999000015 ], [ -120.157719411999921, 50.735292798000081 ], [ -120.157220095999932, 50.734902588000089 ], [ -120.15630000499999, 50.734656201000071 ], [ -120.155365397999958, 50.734623398000096 ], [ -120.153893988999968, 50.734354303000089 ], [ -120.152631909999954, 50.734349994000084 ], [ -120.151900599999948, 50.734493791000062 ], [ -120.150828608, 50.734881190000074 ], [ -120.149903313999985, 50.734931103000122 ], [ -120.147507893999943, 50.735420997000055 ], [ -120.146376201, 50.735825493000057 ], [ -120.145444982999976, 50.736017699000044 ], [ -120.144280386999952, 50.736034790000176 ], [ -120.142919903999896, 50.736252691000075 ], [ -120.140577881999917, 50.736331101000069 ], [ -120.140027516999936, 50.736514804000102 ], [ -120.139327516999941, 50.736605904000058 ], [ -120.138461100999947, 50.737078804000078 ], [ -120.138164622, 50.737081602000082 ], [ -120.137410589999931, 50.736873712000076 ], [ -120.136286402999943, 50.736728412000083 ], [ -120.135696803, 50.736399390000031 ], [ -120.135135299999973, 50.736295492000032 ], [ -120.134524191999944, 50.736335301000054 ], [ -120.133946000999956, 50.736509106000113 ], [ -120.133164209999919, 50.736544684000073 ], [ -120.131145007999962, 50.735963593000037 ], [ -120.130854719999945, 50.735831207000089 ], [ -120.130100587999934, 50.735200213000041 ], [ -120.129902, 50.735186010000085 ], [ -120.128558500999986, 50.735144698000113 ], [ -120.127978585999983, 50.73490540000013 ], [ -120.127626798999955, 50.734861299000059 ], [ -120.12641319, 50.735002297000058 ], [ -120.125492583, 50.735006500000047 ], [ -120.125023652999985, 50.735150394000058 ], [ -120.125405482999952, 50.732241741000152 ], [ -120.131056171999901, 50.732539407000033 ], [ -120.131055852999935, 50.732541840000117 ], [ -120.132129736999971, 50.732598377000073 ], [ -120.131964099999962, 50.733861636000036 ], [ -120.134515445999924, 50.733995914000019 ], [ -120.134514836999955, 50.734000559000023 ], [ -120.135334617999916, 50.734043692000029 ], [ -120.135326918999922, 50.734102446000065 ], [ -120.13790837099998, 50.734238230000066 ], [ -120.137930035999929, 50.73407283500007 ], [ -120.138575179999933, 50.734106760000053 ], [ -120.138592312999933, 50.73397595100009 ], [ -120.138883875999966, 50.73399128100008 ], [ -120.139263109999916, 50.734011221000095 ], [ -120.13927868899998, 50.733892267000037 ], [ -120.139849506999923, 50.733922277000076 ], [ -120.139855464999982, 50.73387678000006 ], [ -120.140856967999966, 50.733929426000032 ], [ -120.140870822999929, 50.733823603000047 ], [ -120.141383350999945, 50.733850541000038 ], [ -120.141396105999902, 50.733753115000084 ], [ -120.142041700999982, 50.733787044000081 ], [ -120.142056181999962, 50.733676431000021 ], [ -120.142796078999964, 50.733715311000061 ], [ -120.142815954999932, 50.733563448000048 ], [ -120.143689010999978, 50.733609319000053 ], [ -120.143710621999986, 50.733444168000048 ], [ -120.144381862999978, 50.73347943100007 ], [ -120.144394796999961, 50.733380584000095 ], [ -120.145121710999945, 50.733418767000025 ], [ -120.145143671999975, 50.733250902000123 ], [ -120.145813514999986, 50.733286082000035 ], [ -120.145834347999951, 50.733126816000023 ], [ -120.146457150999979, 50.733159523 ], [ -120.146493235999969, 50.73288363200006 ], [ -120.147070518999953, 50.73291394500005 ], [ -120.147075410999946, 50.732876545000138 ], [ -120.147787831999935, 50.732913950000111 ], [ -120.147819789999971, 50.732669562000133 ], [ -120.148501327999952, 50.732705341000084 ], [ -120.148527968999986, 50.732501578000075 ], [ -120.149312301999885, 50.732542748000142 ], [ -120.149332740999967, 50.732386396000081 ], [ -120.15027675499999, 50.732435941000048 ], [ -120.15029210299997, 50.73231851900006 ], [ -120.151081601999977, 50.732359948000074 ], [ -120.15110887699997, 50.732151237 ], [ -120.152532102999913, 50.732225907000085 ], [ -120.152532212, 50.732225070000034 ], [ -120.153805637999966, 50.732291865000029 ], [ -120.153827160999953, 50.732127100000142 ], [ -120.155158860999919, 50.732196936000051 ], [ -120.155173605999948, 50.73208403100007 ], [ -120.156269043999927, 50.732141466000023 ], [ -120.156290862999967, 50.731974357000105 ], [ -120.157347026999901, 50.732029722000014 ], [ -120.157375125999977, 50.731814482000082 ], [ -120.163025972999975, 50.732110530000099 ], [ -120.162884549999944, 50.733194871000094 ], [ -120.162922050999896, 50.733196835000086 ], [ -120.162897214999987, 50.733387254000036 ], [ -120.163270410999957, 50.733396340000105 ], [ -120.163254122999916, 50.733665796000068 ], [ -120.164103293999943, 50.733686469000133 ], [ -120.164087010999964, 50.733955924000078 ], [ -120.164511598999979, 50.733966258000073 ], [ -120.164495315999929, 50.734235715000153 ], [ -120.16491990699997, 50.734246046000081 ], [ -120.164903628000019, 50.734515503000047 ], [ -120.165328222, 50.734525834000074 ], [ -120.165311942999921, 50.734795291000111 ], [ -120.165736539999955, 50.73480562 ], [ -120.165720264999933, 50.735075077000062 ], [ -120.166144863999975, 50.73508540400011 ], [ -120.166128591999964, 50.735354862000037 ], [ -120.166553192999942, 50.735365188000074 ], [ -120.166520652999978, 50.73590410200012 ], [ -120.166945257999942, 50.735914427000068 ], [ -120.166880182999961, 50.736992256000057 ], [ -120.167304798999979, 50.737002579000034 ], [ -120.16727226499998, 50.737541493000016 ], [ -120.167696884999955, 50.737551816000099 ], [ -120.167664353999939, 50.738090730000046 ], [ -120.168088981999944, 50.738101051000115 ], [ -120.168056452999963, 50.738639966000029 ], [ -120.168481087, 50.738650286000052 ], [ -120.16854612899999, 50.737572457000063 ], [ -120.169567038999986, 50.737597260000022 ], [ -120.169819996999976, 50.737603404000062 ], [ -120.16980374399995, 50.737872863000078 ], [ -120.170228368999986, 50.737883176000111 ], [ -120.17009835499999, 50.740038838000054 ], [ -120.16970969499998, 50.740029398000097 ], [ -120.169673709999969, 50.740028523000092 ], [ -120.16965745499999, 50.740297982000094 ], [ -120.169232806999943, 50.740287665000089 ], [ -120.169227230999951, 50.740380089000091 ], [ -120.169216547999966, 50.740557123000066 ], [ -120.167942601999954, 50.740526166000073 ], [ -120.167975131999953, 50.739987252000084 ], [ -120.167550487999947, 50.739976931000065 ], [ -120.167566756999975, 50.739707474000078 ], [ -120.167142113999887, 50.739697151000016 ], [ -120.167158385, 50.739427694000049 ], [ -120.166733745999949, 50.739417370000083 ], [ -120.166766288999924, 50.738878455000169 ], [ -120.166341655999972, 50.73886812900016 ], [ -120.166374202999933, 50.738329215000093 ], [ -120.165949574999928, 50.738318888000023 ] ], [ [ -120.16557378, 50.737500189000031 ], [ -120.165606334999922, 50.736961275000112 ], [ -120.165181718, 50.736950945000075 ], [ -120.165230555999983, 50.736142575000038 ], [ -120.164805947, 50.736132244000068 ], [ -120.164822227999935, 50.735862787000102 ], [ -120.164397621999953, 50.735852455000014 ], [ -120.164413904999947, 50.735582998000076 ], [ -120.163989301999933, 50.735572664000109 ], [ -120.164005587999924, 50.735303208000119 ], [ -120.163580987999936, 50.735292872000095 ], [ -120.163597274999944, 50.735023416000054 ], [ -120.163172677999967, 50.735013079000055 ], [ -120.163188966999911, 50.734743622000053 ], [ -120.16317882599995, 50.73474337600009 ], [ -120.162968312999979, 50.736357367000025 ], [ -120.163091225999921, 50.736360361000038 ], [ -120.163074936000015, 50.736629817000065 ], [ -120.163924158999919, 50.736650490000052 ], [ -120.163907872, 50.736919946000086 ], [ -120.164332487999971, 50.73693028100007 ], [ -120.164316203999988, 50.737199738000122 ], [ -120.165165438, 50.737220402000062 ], [ -120.165149157999963, 50.737489858000103 ], [ -120.16557378, 50.737500189000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "62.4", "sL_BldgLoss": "62.4", "sL_StrLoss": "62.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000049AF175425095EC08C783E4586574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.142511983, 50.683235800000041 ], [ -120.143784351999955, 50.68326700900009 ], [ -120.143755002999967, 50.683750049000068 ], [ -120.14373523899998, 50.684075371000098 ], [ -120.143311109, 50.684064970000058 ], [ -120.143294732999919, 50.684334424000035 ], [ -120.14202233899999, 50.68430320900007 ], [ -120.142031903999978, 50.684145868000044 ], [ -120.142071480999945, 50.683494847000084 ], [ -120.142495604999951, 50.68350525400011 ], [ -120.142511983, 50.683235800000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "1", "sL_AssetLoss": "417", "sL_BldgLoss": "417", "sL_StrLoss": "417", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068F1BD1A7B035EC09C9C881B435E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.051625513999952, 50.735014537000112 ], [ -120.057276058999975, 50.735315934000027 ], [ -120.056908444999962, 50.738083858000074 ], [ -120.05628651699999, 50.738068455000125 ], [ -120.054106809999936, 50.737964653000134 ], [ -120.05400933599999, 50.737960021000042 ], [ -120.053965322999929, 50.737896597000052 ], [ -120.053793309999904, 50.737648836000034 ], [ -120.05363335199992, 50.737514125000033 ], [ -120.053372278999973, 50.737391130000098 ], [ -120.053073114999975, 50.73730847300007 ], [ -120.05238558699989, 50.737193347000066 ], [ -120.052098035000014, 50.737110655000031 ], [ -120.052004634999975, 50.737083793000082 ], [ -120.051682753999955, 50.736904376000069 ], [ -120.051340642999961, 50.736567019000098 ], [ -120.05132785699999, 50.73653032700004 ], [ -120.051077989999953, 50.735813872000051 ], [ -120.050723991, 50.735355426000112 ], [ -120.051574166999941, 50.735400799000026 ], [ -120.051625513999952, 50.735014537000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "51.6", "sL_BldgLoss": "51.6", "sL_StrLoss": "51.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008863C00642095EC07201056AF35C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.144182585999928, 50.72564399300007 ], [ -120.144215369999984, 50.725105090000078 ], [ -120.145488874999955, 50.725136298000116 ], [ -120.145472489, 50.725405750000093 ], [ -120.146321496999946, 50.725426548000044 ], [ -120.146309188999922, 50.725629009000073 ], [ -120.146288836999972, 50.725963772000064 ], [ -120.146238956999937, 50.726784241000153 ], [ -120.146223207999938, 50.727043265000098 ], [ -120.144488114999916, 50.727000753000013 ], [ -120.142827063999931, 50.726960031000026 ], [ -120.14290907, 50.725612770000076 ], [ -120.144182585999928, 50.72564399300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6AFB09EE20B5EC0C6589EEE59564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.184838593000023, 50.674202807000043 ], [ -120.185594305999984, 50.673940304000062 ], [ -120.186151605999967, 50.674012161000114 ], [ -120.186228592999939, 50.674022090000044 ], [ -120.187172076999943, 50.67456605600006 ], [ -120.187415916999953, 50.674706637000135 ], [ -120.187389910999926, 50.674907143000034 ], [ -120.18671118, 50.674871701000079 ], [ -120.1866742939999, 50.675156059000123 ], [ -120.1837947, 50.675005646000031 ], [ -120.184105401999929, 50.674839594000112 ], [ -120.184838593000023, 50.674202807000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "116", "sL_BldgLoss": "116", "sL_StrLoss": "116", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF22AAE8F6025EC096F8ED35CE594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.043735093999942, 50.699664474000016 ], [ -120.049381135999937, 50.699966282000062 ], [ -120.048905378999962, 50.703546588000151 ], [ -120.043258888999986, 50.703244756000089 ], [ -120.043735093999942, 50.699664474000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "54.1", "sL_BldgLoss": "54.1", "sL_StrLoss": "54.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000470BA73729F85DC0760C5DC36B594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.876263179999938, 50.698389896000016 ], [ -119.876949010999951, 50.698129410000043 ], [ -119.877623319999941, 50.697950107000104 ], [ -119.877923010999908, 50.697837580000069 ], [ -119.878148787999962, 50.697714805000011 ], [ -119.878338482999965, 50.697574685000042 ], [ -119.87849459499995, 50.697400219000066 ], [ -119.878810302, 50.696945469000077 ], [ -119.878910608999959, 50.696800988000042 ], [ -119.87905815, 50.69662329300008 ], [ -119.879202850999945, 50.696619716000079 ], [ -119.87926889299996, 50.69769750800004 ], [ -119.8788446499999, 50.697707994000076 ], [ -119.87887213499998, 50.698156572000073 ], [ -119.88006479, 50.698222125000022 ], [ -119.880047776999973, 50.698346610000073 ], [ -119.880564582999938, 50.698375012000049 ], [ -119.880550866999926, 50.698475382000019 ], [ -119.881015433999934, 50.698463892000092 ], [ -119.881044485999936, 50.698937687000068 ], [ -119.877214318999961, 50.699329614000092 ], [ -119.876738719999977, 50.699345011000062 ], [ -119.875313209999931, 50.699299006000103 ], [ -119.874476289999905, 50.6993160950001 ], [ -119.874290893999969, 50.699329663000093 ], [ -119.874254788999949, 50.699332295000097 ], [ -119.873139193999961, 50.699413910000025 ], [ -119.873274701999918, 50.699254508000102 ], [ -119.873945792999933, 50.698849584000072 ], [ -119.874493303999913, 50.698609285000039 ], [ -119.874837901999953, 50.698512047000122 ], [ -119.874953308, 50.69847951000002 ], [ -119.87527650599999, 50.698444987000066 ], [ -119.875944713999957, 50.69844480600004 ], [ -119.876008061, 50.698434934000026 ], [ -119.876239698999925, 50.698398809000089 ], [ -119.876263179999938, 50.698389896000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14446417", "BldgCostT": "9171667", "sL_LossRatio": "1", "sL_AssetLoss": "2270", "sL_BldgLoss": "2270", "sL_StrLoss": "2270", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D382B4520AFC5DC089A637CC65574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.939543903999947, 50.688609039000056 ], [ -119.93971872699997, 50.687316876000125 ], [ -119.93679650199999, 50.687157766000091 ], [ -119.937267248999973, 50.683679652000173 ], [ -119.936764539999942, 50.68365227200006 ], [ -119.936765284, 50.683646772000053 ], [ -119.936473231999983, 50.683630864000108 ], [ -119.936590663999965, 50.68276323400007 ], [ -119.936377504999939, 50.682751624000041 ], [ -119.936224672999927, 50.683880739000116 ], [ -119.930581420999957, 50.683573203 ], [ -119.930863406999933, 50.681491781000041 ], [ -119.928304689999976, 50.68135224499999 ], [ -119.928789824999953, 50.677772364000091 ], [ -119.929227184999959, 50.677796220000111 ], [ -119.92922880499999, 50.677784274000018 ], [ -119.934871319999928, 50.678091880000068 ], [ -119.93482326199991, 50.678446884000017 ], [ -119.940255169999944, 50.678742735000093 ], [ -119.940226957000021, 50.678951328000096 ], [ -119.940796265999978, 50.678982320000067 ], [ -119.940742077999957, 50.679382996000115 ], [ -119.941467870999986, 50.679422502000108 ], [ -119.94135054099992, 50.680290141000086 ], [ -119.942600593999927, 50.680358173000073 ], [ -119.94259985099994, 50.68036367400002 ], [ -119.942891885, 50.680379565000109 ], [ -119.942716210999905, 50.681678907000084 ], [ -119.946202865999922, 50.681868577000081 ], [ -119.945875256999926, 50.6842928720001 ], [ -119.945719073999939, 50.685448516000093 ], [ -119.945656998999979, 50.685445140000063 ], [ -119.945187850999943, 50.688916120000094 ], [ -119.943110215999965, 50.688803112000066 ], [ -119.939543903999947, 50.688609039000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "109", "sL_BldgLoss": "109", "sL_StrLoss": "109", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E808E8D7B9F95DC00951BEA005584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.898879170999976, 50.689357221000108 ], [ -119.898892785999962, 50.689257258000048 ], [ -119.89879537399996, 50.689251919000121 ], [ -119.8988892899999, 50.688562448000013 ], [ -119.89928294799995, 50.685672201000109 ], [ -119.904926249999903, 50.685981319000078 ], [ -119.904922676999959, 50.686007577000062 ], [ -119.905151643999943, 50.686020113000026 ], [ -119.905039308999918, 50.686845711000025 ], [ -119.904664534999981, 50.68959985500004 ], [ -119.904532963999927, 50.689592652000073 ], [ -119.90452293199999, 50.689666357000085 ], [ -119.898879170999976, 50.689357221000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5021917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "185.2", "sL_BldgLoss": "185.2", "sL_StrLoss": "185.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009FBA87BE9AFC5DC02B37EE20B85D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.944647284, 50.734080691 ], [ -119.944660750999944, 50.733981179000146 ], [ -119.944315097999976, 50.733962400000031 ], [ -119.943604055999927, 50.733923764000082 ], [ -119.943651755999966, 50.733571340000033 ], [ -119.942932358999926, 50.733532246000031 ], [ -119.943416890999941, 50.729952523000087 ], [ -119.949066064999968, 50.730259393000033 ], [ -119.949027541999939, 50.730544293000108 ], [ -119.95100312199996, 50.730651540000082 ], [ -119.950803080999933, 50.732131351000113 ], [ -119.950519186999941, 50.734231294000068 ], [ -119.95031957199997, 50.734220458000046 ], [ -119.95029698799999, 50.734387498000054 ], [ -119.944647284, 50.734080691 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6193750", "BldgCostT": "3775000", "sL_LossRatio": "0.999916965927095", "sL_AssetLoss": "355.27584", "sL_BldgLoss": "355.24634", "sL_StrLoss": "355.00334", "sL_NStrLoss": "0.243", "sL_ContLoss": "0.0295", "geom_point": "0101000020E610000098842C87AD085EC0978B7C87F0574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.132794636999947, 50.689729262000064 ], [ -120.132867823999931, 50.689170438000119 ], [ -120.131897589999966, 50.689119313000049 ], [ -120.132366577999932, 50.685538595 ], [ -120.132838801999981, 50.685563480000049 ], [ -120.132896377999955, 50.685123807000068 ], [ -120.135423788999972, 50.685256957000078 ], [ -120.135633645, 50.683653668 ], [ -120.139278652999963, 50.683845594000054 ], [ -120.139353786999962, 50.684180159000057 ], [ -120.139384011999965, 50.684314655000101 ], [ -120.139677909999975, 50.685623397000022 ], [ -120.13956140699996, 50.685775900000102 ], [ -120.139380487999929, 50.685920498000037 ], [ -120.139313556999966, 50.685955033000063 ], [ -120.138312280999941, 50.686471792000098 ], [ -120.138007711999975, 50.686605391000064 ], [ -120.137715993999961, 50.686684607000103 ], [ -120.137250492, 50.686745808000076 ], [ -120.137095713999912, 50.686814933000107 ], [ -120.136759717999951, 50.686997137000048 ], [ -120.136725861999963, 50.687015509000027 ], [ -120.13657101799997, 50.687193402000084 ], [ -120.13647352699995, 50.687363531000067 ], [ -120.136466911, 50.687454185000036 ], [ -120.13647796699999, 50.687757873000066 ], [ -120.136736909999982, 50.688188034000078 ], [ -120.137346981999926, 50.688675361000037 ], [ -120.137723841999957, 50.689026684000055 ], [ -120.13848965899993, 50.68951939600008 ], [ -120.138505338999948, 50.689527371000082 ], [ -120.138408781999971, 50.690265344000089 ], [ -120.13276336499996, 50.689968035000085 ], [ -120.132794636999947, 50.689729262000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13387084", "BldgCostT": "7758334", "sL_LossRatio": "1", "sL_AssetLoss": "385.1", "sL_BldgLoss": "385.1", "sL_StrLoss": "385.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043036F50D4FD5DC0D3EF671DFA5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.962882548, 50.713597432000071 ], [ -119.962924692999948, 50.713284903000073 ], [ -119.962701863999925, 50.713272827 ], [ -119.962785111999906, 50.712655521000023 ], [ -119.962908369999951, 50.711741489000069 ], [ -119.962925212999949, 50.711616583000122 ], [ -119.962868984999915, 50.711613535000069 ], [ -119.962889896999926, 50.711458454000088 ], [ -119.962188070999929, 50.711420416000124 ], [ -119.962518475, 50.708970368000067 ], [ -119.96267082899999, 50.707840517000108 ], [ -119.964187147999951, 50.707922693000121 ], [ -119.964192762, 50.707881052000069 ], [ -119.969839300999951, 50.708186879000046 ], [ -119.969832577999952, 50.708236786000029 ], [ -119.970113094999988, 50.708251972000042 ], [ -119.969876887999988, 50.710005791000064 ], [ -119.96976795099998, 50.710814600000091 ], [ -119.969630925999979, 50.71183190300011 ], [ -119.969332864999927, 50.711815768000079 ], [ -119.969292326999948, 50.712116709000021 ], [ -119.969115107999968, 50.712107115000052 ], [ -119.96888300799999, 50.713830015000035 ], [ -119.968542159999942, 50.713811562000096 ], [ -119.96852979599997, 50.713903323000103 ], [ -119.967903296999964, 50.713869402000036 ], [ -119.96472259399998, 50.713697132000078 ], [ -119.962882548, 50.713597432000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "196.1", "sL_BldgLoss": "196.1", "sL_StrLoss": "196.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000768535CF2FF5DC05E96C0F7C85C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.996583191999932, 50.722940936000043 ], [ -120.002231845999972, 50.723245120000144 ], [ -120.001752079999932, 50.726825125000083 ], [ -119.996102978999915, 50.726520918000105 ], [ -119.996583191999932, 50.722940936000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "124", "sL_BldgLoss": "124", "sL_StrLoss": "124", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000526E2E40D3035EC08F34B8ADAD594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.057183167999966, 50.698671983000068 ], [ -120.062829176999983, 50.698973111000036 ], [ -120.062354502999966, 50.702553478000056 ], [ -120.056708047999962, 50.702252327000053 ], [ -120.057183167999966, 50.698671983000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.4", "sL_BldgLoss": "168.4", "sL_StrLoss": "168.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019D16EDB14FE5DC0E60A8C4856594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.972012777999964, 50.696250347000031 ], [ -119.973086571999943, 50.696308468000034 ], [ -119.972604767999954, 50.699888461000079 ], [ -119.966959254999907, 50.699582770000085 ], [ -119.967441503999964, 50.696002800000045 ], [ -119.969755873999958, 50.696128153000089 ], [ -119.972012777999964, 50.696250347000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999887967169334", "sL_AssetLoss": "99.0781", "sL_BldgLoss": "99.067", "sL_StrLoss": "99", "sL_NStrLoss": "0.067", "sL_ContLoss": "0.0111", "geom_point": "0101000020E6100000CC553DAA2B045EC05A53EE7872544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.063839440999942, 50.661954051000066 ], [ -120.063859453999967, 50.660526048000108 ], [ -120.063884919999978, 50.658709115000079 ], [ -120.063887743999942, 50.658698077000054 ], [ -120.06392338199997, 50.658310427000103 ], [ -120.065649801999953, 50.658331394000093 ], [ -120.06687632499991, 50.658433865000056 ], [ -120.066851223999961, 50.658623522000099 ], [ -120.066575476999958, 50.660706877000081 ], [ -120.064227061999986, 50.660581626000116 ], [ -120.064257575999932, 50.661050092000096 ], [ -120.064891071999966, 50.661066062000053 ], [ -120.064840641999936, 50.661874371000096 ], [ -120.064735673999948, 50.661871726000065 ], [ -120.064739494999984, 50.661930364000078 ], [ -120.063839440999942, 50.661954051000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "123", "sL_BldgLoss": "123", "sL_StrLoss": "123", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED58D72ECEFC5DC0087250C24C5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.947195963999917, 50.73862985300012 ], [ -119.94726475, 50.738121410000055 ], [ -119.946865789999933, 50.738099745000099 ], [ -119.94735005699999, 50.734520024000069 ], [ -119.952999833999925, 50.734826693000088 ], [ -119.952931119999974, 50.735335142000103 ], [ -119.953330057999963, 50.7353567850001 ], [ -119.952900509999949, 50.738535137000092 ], [ -119.952875486999957, 50.738535180000056 ], [ -119.952721163999954, 50.738585129000064 ], [ -119.952640302999924, 50.738649926000107 ], [ -119.952532897999902, 50.738742297000101 ], [ -119.952383072999936, 50.73883572800009 ], [ -119.952290475000012, 50.738906376000017 ], [ -119.947195963999917, 50.73862985300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4413500", "BldgCostT": "2780000", "sL_LossRatio": "1", "sL_AssetLoss": "651.3", "sL_BldgLoss": "651.3", "sL_StrLoss": "651.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0CB8A979DF95DC08182207AB1584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.897657206999952, 50.695490275000104 ], [ -119.89777296699998, 50.69464070900009 ], [ -119.897208349999943, 50.69460976500006 ], [ -119.89724820699999, 50.694317282000043 ], [ -119.896594451999988, 50.694281448 ], [ -119.897082254999987, 50.690701762000039 ], [ -119.897206431999905, 50.69070856900003 ], [ -119.897223054999969, 50.690586565000046 ], [ -119.897464299999939, 50.69059978800005 ], [ -119.897541473000032, 50.690033371000027 ], [ -119.903185310999902, 50.690342575000045 ], [ -119.903051785999963, 50.691323486000023 ], [ -119.903340072999967, 50.691339272000029 ], [ -119.903224425999952, 50.692188847000196 ], [ -119.903789015999962, 50.692219762000057 ], [ -119.9033017309999, 50.695799472000047 ], [ -119.897657206999952, 50.695490275000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "160.5", "sL_BldgLoss": "160.5", "sL_StrLoss": "160.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4DE561743FD5DC02BA0F5952C564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.954640378999926, 50.671292447000091 ], [ -119.960282251999942, 50.671598771000056 ], [ -119.959799693999969, 50.675178814000091 ], [ -119.954157372999973, 50.674872467000121 ], [ -119.954640378999926, 50.671292447000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "125", "sL_BldgLoss": "125", "sL_StrLoss": "125", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9857499160B5EC0482402BC22564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.170396730999926, 50.67124888100011 ], [ -120.170452501999989, 50.671251786000056 ], [ -120.173444585999931, 50.671891294000012 ], [ -120.176835487999966, 50.672710206000012 ], [ -120.178237197999962, 50.67293380400006 ], [ -120.179059048999932, 50.673015220000103 ], [ -120.175870573999987, 50.672848441000077 ], [ -120.175628901999929, 50.67470808000008 ], [ -120.175599598999952, 50.674705804000091 ], [ -120.172958220999973, 50.674105789000087 ], [ -120.172588912999942, 50.674021901000096 ], [ -120.172351352999954, 50.673948877000065 ], [ -120.172108097999953, 50.673874086000097 ], [ -120.170905073999947, 50.673207191000131 ], [ -120.170167432999961, 50.673011712000068 ], [ -120.170396730999926, 50.67124888100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "51.3", "sL_BldgLoss": "51.3", "sL_StrLoss": "51.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A647112147F85DC0945653C4AF5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.878613681, 50.714188604000093 ], [ -119.880532771999967, 50.714294044000077 ], [ -119.880043391999891, 50.717873559000061 ], [ -119.879957126999969, 50.717868820000078 ], [ -119.879901909999944, 50.71827266100005 ], [ -119.878057939999962, 50.718171347000109 ], [ -119.87805567699999, 50.718165398000053 ], [ -119.877987307999987, 50.717771286000065 ], [ -119.878032014999988, 50.717341003000051 ], [ -119.878181596999937, 50.716975006000034 ], [ -119.8786203, 50.716367097000045 ], [ -119.87869429399997, 50.716169206000103 ], [ -119.878779703999982, 50.715055910000054 ], [ -119.878651111999929, 50.714249088000081 ], [ -119.878613681, 50.714188604000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "145.4", "sL_BldgLoss": "145.4", "sL_StrLoss": "145.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DAE9833C6D055EC015097D1BA8544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.085494716999932, 50.660313898000069 ], [ -120.087783136000013, 50.660120727000098 ], [ -120.087681990999926, 50.660887638000062 ], [ -120.087465385, 50.662529888000087 ], [ -120.087008939999976, 50.662505635000116 ], [ -120.087007862999911, 50.662513799000131 ], [ -120.081366274999965, 50.662213880000074 ], [ -120.081520312999956, 50.661047214000028 ], [ -120.081555270999928, 50.66078243800014 ], [ -120.081614491999986, 50.660783913000095 ], [ -120.084087605999954, 50.66038648500011 ], [ -120.085494716999932, 50.660313898000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.2", "sL_BldgLoss": "53.2", "sL_StrLoss": "53.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000011800BF441045EC0CFCB9331DF554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.067526356999963, 50.672111902000083 ], [ -120.067514265999975, 50.671926543000041 ], [ -120.067186431999943, 50.671918288000022 ], [ -120.067190634999974, 50.67185087900004 ], [ -120.067084844999954, 50.671853665000121 ], [ -120.067071268999953, 50.671645528000056 ], [ -120.066779243999918, 50.671638173000083 ], [ -120.066796048999919, 50.671368737000087 ], [ -120.06587999599999, 50.671345661000053 ], [ -120.064930026999917, 50.671370669000062 ], [ -120.064926832999944, 50.671321642000052 ], [ -120.064676118999941, 50.671315323000087 ], [ -120.064689111999897, 50.671107142000082 ], [ -120.064064602, 50.671123577000067 ], [ -120.0639943899999, 50.670045960000103 ], [ -120.064331253999981, 50.670037096000051 ], [ -120.064336224999948, 50.669957456000077 ], [ -120.065879376999973, 50.669996346000147 ], [ -120.067809695999969, 50.669945507000108 ], [ -120.067833827999948, 50.670315432 ], [ -120.068135196999961, 50.670323020000083 ], [ -120.068091901999964, 50.671017537000161 ], [ -120.068303927, 50.671011951000068 ], [ -120.068312087999971, 50.671137052000077 ], [ -120.068932777999976, 50.671152675000044 ], [ -120.068882400999954, 50.671960987000062 ], [ -120.068790366, 50.671958670000016 ], [ -120.068798178999955, 50.672078391000092 ], [ -120.067526356999963, 50.672111902000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4009917", "BldgCostT": "2501667", "sL_LossRatio": "1", "sL_AssetLoss": "655.7", "sL_BldgLoss": "655.7", "sL_StrLoss": "655.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081CF3031EDFC5DC0DB5AD37AC7584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.950000404, 50.695650612000101 ], [ -119.950043578999967, 50.695331005000057 ], [ -119.948360871999952, 50.695239569000115 ], [ -119.948403052999964, 50.694927393000057 ], [ -119.94814858700002, 50.694913564000025 ], [ -119.948170104999946, 50.694754320000115 ], [ -119.947944490999973, 50.694742057000042 ], [ -119.948219127999977, 50.692709579000088 ], [ -119.948428204999942, 50.691162149000029 ], [ -119.954072533999977, 50.691468780000079 ], [ -119.954051037999974, 50.691628026000032 ], [ -119.954276637999968, 50.69164027500004 ], [ -119.954234499999984, 50.691952454000067 ], [ -119.954488952999938, 50.69196627000008 ], [ -119.954445812999921, 50.692285881000089 ], [ -119.954508047, 50.692289260000088 ], [ -119.956128420999946, 50.69237722500003 ], [ -119.95582990099993, 50.694589368000102 ], [ -119.955645306999912, 50.695957163000124 ], [ -119.950000404, 50.695650612000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.7", "sL_BldgLoss": "50.7", "sL_StrLoss": "50.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6EE2D5993F85DC0ED24A634B0564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.880031679999917, 50.67632941400008 ], [ -119.880058626999968, 50.676132135000046 ], [ -119.885700597999914, 50.676442228000091 ], [ -119.885685024999958, 50.676556353000109 ], [ -119.886448781999931, 50.676598308000088 ], [ -119.886076630999966, 50.679325468000066 ], [ -119.885928795999945, 50.679261560000072 ], [ -119.885922222999966, 50.679258699000115 ], [ -119.88446890199999, 50.678189110000041 ], [ -119.88357950299999, 50.678012503000076 ], [ -119.882436609999914, 50.677375892000086 ], [ -119.881128596999986, 50.677039800000081 ], [ -119.880332088999978, 50.676518494000099 ], [ -119.880031679999917, 50.67632941400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "133.1", "sL_BldgLoss": "133.1", "sL_StrLoss": "133.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000057CAB6FCD50B5EC0F898DDCD32564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.181030456999935, 50.674861187000033 ], [ -120.181251188999923, 50.673161119000056 ], [ -120.181930713999975, 50.673184490000097 ], [ -120.183089487999908, 50.67297080500002 ], [ -120.185441816999969, 50.672235898000054 ], [ -120.188406773999958, 50.671857092000053 ], [ -120.189826994999976, 50.671793013000055 ], [ -120.190829977999897, 50.671825794 ], [ -120.191116911999956, 50.671784333000083 ], [ -120.191082005999988, 50.672053663000028 ], [ -120.190222335999948, 50.672008798000043 ], [ -120.19020407299999, 50.672149683000058 ], [ -120.18944001499996, 50.672109802000094 ], [ -120.189419244999925, 50.672270002000047 ], [ -120.188744353999937, 50.672234770000067 ], [ -120.188722122999977, 50.672406217000109 ], [ -120.187965526999974, 50.672366715000095 ], [ -120.187938498999969, 50.672575135000059 ], [ -120.187694009999944, 50.672562369000033 ], [ -120.187415916999953, 50.674706637000135 ], [ -120.187172076999943, 50.67456605600006 ], [ -120.186228592999939, 50.674022090000044 ], [ -120.186151605999967, 50.674012161000114 ], [ -120.185594305999984, 50.673940304000062 ], [ -120.184838593000023, 50.674202807000043 ], [ -120.184105401999929, 50.674839594000112 ], [ -120.1837947, 50.675005646000031 ], [ -120.181030456999935, 50.674861187000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3797250", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "686", "sL_BldgLoss": "686", "sL_StrLoss": "686", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002010A630C8FC5DC06AA1E8AA8E5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.946424771999901, 50.72494995800011 ], [ -119.946445457, 50.724797026000026 ], [ -119.946416581999983, 50.724795458000116 ], [ -119.946456343999941, 50.724501494000066 ], [ -119.946424403999956, 50.724499759000075 ], [ -119.9469085599999, 50.720919982000105 ], [ -119.951468509999927, 50.721167616000059 ], [ -119.952556621000014, 50.721226679000054 ], [ -119.95252896399991, 50.721431374000076 ], [ -119.953079717999969, 50.721461265000116 ], [ -119.952812491999978, 50.723439165000094 ], [ -119.952596047999975, 50.725041066000102 ], [ -119.952542183999967, 50.725038143000077 ], [ -119.952521952999973, 50.725187868000035 ], [ -119.952085834999977, 50.725164198000115 ], [ -119.952073337999963, 50.725256678000093 ], [ -119.946424771999901, 50.72494995800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "188.6", "sL_BldgLoss": "188.6", "sL_StrLoss": "188.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042158AB61BFD5DC0774E0EFA2D5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.951974924999917, 50.730081400000124 ], [ -119.951976864999935, 50.730067042000059 ], [ -119.951773318999969, 50.730055996000026 ], [ -119.951827712999943, 50.729653533000054 ], [ -119.951755146, 50.729649595000062 ], [ -119.952238931999943, 50.726069817000095 ], [ -119.955363324999951, 50.726239341000145 ], [ -119.957887677999949, 50.726376243000111 ], [ -119.95785616299996, 50.726609678000052 ], [ -119.958814164000017, 50.726661618000037 ], [ -119.958538781999891, 50.728701583000074 ], [ -119.958363700999911, 50.728600063000087 ], [ -119.957663431999976, 50.728571123000087 ], [ -119.957108340999952, 50.728430714000105 ], [ -119.957023757999977, 50.728409319000015 ], [ -119.956689646999934, 50.72838669300004 ], [ -119.956002954999974, 50.728615389000019 ], [ -119.955790236999988, 50.728715641000086 ], [ -119.955731273999959, 50.728824621000086 ], [ -119.95572389499992, 50.728838243000013 ], [ -119.955686218999972, 50.729306796000117 ], [ -119.955636620999911, 50.729484415000087 ], [ -119.955442383999952, 50.729848013000073 ], [ -119.955150937999946, 50.730253716000057 ], [ -119.951974924999917, 50.730081400000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15527834", "BldgCostT": "9973334", "sL_LossRatio": "1", "sL_AssetLoss": "1430", "sL_BldgLoss": "1430", "sL_StrLoss": "1430", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037084A3C66015EC0F2C520A8815C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.02107603099995, 50.730918163000091 ], [ -120.021287534999928, 50.729335034000073 ], [ -120.020072964999954, 50.729269871000049 ], [ -120.020116579999936, 50.728943458000103 ], [ -120.01558004, 50.72869994900001 ], [ -120.015635482999954, 50.728285321000065 ], [ -120.015568968000011, 50.728281750000079 ], [ -120.016047647999983, 50.724701691000043 ], [ -120.01676263, 50.724740082000061 ], [ -120.016779121999917, 50.724616707000081 ], [ -120.017345209, 50.7246471 ], [ -120.01737820799994, 50.724400220000042 ], [ -120.017779581999918, 50.724421768000056 ], [ -120.017847416999984, 50.723914231000073 ], [ -120.017974249999966, 50.723921039000075 ], [ -120.017988191999962, 50.723947588000058 ], [ -120.018065606999954, 50.724713809000065 ], [ -120.018387787999956, 50.725243613000039 ], [ -120.018491220999977, 50.725623899000055 ], [ -120.018720792999957, 50.725800512000028 ], [ -120.019130794999938, 50.725803307000056 ], [ -120.019420795999977, 50.725702187000088 ], [ -120.020198299999933, 50.725082689000061 ], [ -120.020956482999949, 50.724725198000087 ], [ -120.021201397999988, 50.724676795000043 ], [ -120.02149548600002, 50.72473799400003 ], [ -120.02186380299996, 50.725179491000034 ], [ -120.022041082999934, 50.725733504000125 ], [ -120.022895491999961, 50.726573805000058 ], [ -120.023137093999978, 50.726993912000097 ], [ -120.023527977999976, 50.727318699000058 ], [ -120.024112896999938, 50.728143299000088 ], [ -120.024441518999978, 50.728331299000068 ], [ -120.024969298999949, 50.728039305000067 ], [ -120.02539591, 50.728040687000025 ], [ -120.025582006, 50.728207410000081 ], [ -120.02549400099997, 50.728708711000117 ], [ -120.025909395999946, 50.729078990000161 ], [ -120.026308420999896, 50.729269803000072 ], [ -120.026608911999972, 50.729241398000056 ], [ -120.027296102999983, 50.728889604000067 ], [ -120.02778369899994, 50.728137601000121 ], [ -120.028345990999938, 50.727557890000085 ], [ -120.030108901999952, 50.726991107000067 ], [ -120.031138403999989, 50.726190705000121 ], [ -120.031923504999952, 50.725885907000126 ], [ -120.032084191999914, 50.725575391000135 ], [ -120.032271794999986, 50.725310494000063 ], [ -120.032288608, 50.725041396000051 ], [ -120.031808201999965, 50.724561413000053 ], [ -120.031813093000011, 50.72404869000011 ], [ -120.031546402999965, 50.723105896000057 ], [ -120.03112952099994, 50.722979108000075 ], [ -120.028762588999911, 50.722972 ], [ -120.027600701999958, 50.722744103000132 ], [ -120.026063208, 50.722651490000104 ], [ -120.022424813999976, 50.72170439100011 ], [ -120.020306792999918, 50.721352704000047 ], [ -120.019419305999946, 50.721042204000078 ], [ -120.018924306999949, 50.721012283000022 ], [ -120.017861214999925, 50.720589288000028 ], [ -120.016669605999965, 50.720369988000137 ], [ -120.01529408499999, 50.719965490000099 ], [ -120.011859494999939, 50.719833002000087 ], [ -120.011431707999975, 50.719848703000117 ], [ -120.011286722999941, 50.719925604000089 ], [ -120.01102479799999, 50.720243210000078 ], [ -120.010461299999946, 50.720425512000048 ], [ -120.01028895499995, 50.72053472400011 ], [ -120.010694694999984, 50.717502350000103 ], [ -120.011066263999936, 50.717522323000011 ], [ -120.011160013999955, 50.716821560000028 ], [ -120.012316025999951, 50.716883692000081 ], [ -120.012540645999977, 50.715204288000081 ], [ -120.018188434999956, 50.715507667000097 ], [ -120.01806226199993, 50.716451918000104 ], [ -120.02158268699992, 50.716640876000056 ], [ -120.02153683200001, 50.716984245000077 ], [ -120.023271856999926, 50.717077331000048 ], [ -120.023072998999936, 50.718566735000117 ], [ -120.025583382999955, 50.718701371000066 ], [ -120.025313273999984, 50.720725123000108 ], [ -120.030306467999978, 50.72099274600005 ], [ -120.030234501999971, 50.721532359000079 ], [ -120.031309554999922, 50.72158995000013 ], [ -120.031320170999919, 50.721510337000048 ], [ -120.036968880999893, 50.721812765000038 ], [ -120.036957138, 50.721900910000059 ], [ -120.03677278899994, 50.721901076000037 ], [ -120.034450591999956, 50.721903166000047 ], [ -120.03270589499999, 50.72190473700006 ], [ -120.032959226999964, 50.722192688000064 ], [ -120.033119491000022, 50.722519587000065 ], [ -120.033052203999929, 50.722972771000087 ], [ -120.032986821999927, 50.723412882000076 ], [ -120.032896861999944, 50.723609456000112 ], [ -120.032836307999986, 50.723741882000112 ], [ -120.03288906, 50.724085871000085 ], [ -120.033559218999955, 50.724939373000097 ], [ -120.033798542999989, 50.725182061000083 ], [ -120.03481055499995, 50.725721200000102 ], [ -120.034822955999957, 50.725948124000048 ], [ -120.034753695999939, 50.726068354000077 ], [ -120.034489874999935, 50.726526130000082 ], [ -120.034240767999975, 50.727093303000061 ], [ -120.033709373999955, 50.727579582000033 ], [ -120.033615800999954, 50.727662875000085 ], [ -120.033046372999976, 50.727857821 ], [ -120.032666346999932, 50.728041153000085 ], [ -120.032123879999972, 50.728535813000043 ], [ -120.031792907999915, 50.729097714000041 ], [ -120.031649041999927, 50.72920340600011 ], [ -120.031472747999928, 50.729332959000033 ], [ -120.031039139000015, 50.729330216000065 ], [ -120.030131961, 50.729324445000074 ], [ -120.028927567999958, 50.729316774000011 ], [ -120.028665685999968, 50.729315116000059 ], [ -120.028414392999977, 50.72936473700004 ], [ -120.028276819, 50.729468242000017 ], [ -120.02820330699997, 50.729613942000071 ], [ -120.028156402999969, 50.729819031000048 ], [ -120.02811797, 50.729987072000114 ], [ -120.027945881999926, 50.730104051000055 ], [ -120.027656680999968, 50.730160670000068 ], [ -120.026511968999984, 50.730114636000039 ], [ -120.025694607999938, 50.729971691000046 ], [ -120.02540348, 50.729861427000039 ], [ -120.025063981999963, 50.72964308600006 ], [ -120.024516590999937, 50.729291039000074 ], [ -120.024045966999921, 50.729076511000095 ], [ -120.023769180999977, 50.728965220000099 ], [ -120.023267744999927, 50.729588244000141 ], [ -120.023220726999924, 50.729802082000063 ], [ -120.023299477, 50.730032544000039 ], [ -120.023680829999947, 50.730638938000034 ], [ -120.023647730000022, 50.730812032000102 ], [ -120.023474902999965, 50.73093437000005 ], [ -120.023191192999931, 50.73100299500009 ], [ -120.022738585999946, 50.730994053000089 ], [ -120.022324875999971, 50.731024153000078 ], [ -120.021792931999983, 50.73099044800005 ], [ -120.021396677999945, 50.730965349000051 ], [ -120.02107603099995, 50.730918163000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5046083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "149.7", "sL_BldgLoss": "149.7", "sL_StrLoss": "149.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C28912BD2FD5DC050F1EAE257564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.963215490999943, 50.676503812000128 ], [ -119.96321799399999, 50.676485238000048 ], [ -119.962595871999952, 50.676451496000091 ], [ -119.962662856999955, 50.675954365000145 ], [ -119.962353598999982, 50.675937590000068 ], [ -119.962835960999897, 50.672357539000117 ], [ -119.96357646, 50.672397705000066 ], [ -119.963586029999988, 50.672326656000052 ], [ -119.96922809599999, 50.672632527000076 ], [ -119.969163469999941, 50.673112714000055 ], [ -119.969554819999985, 50.673133919000108 ], [ -119.969072983, 50.676713996000032 ], [ -119.968872422999965, 50.676703129000018 ], [ -119.968858079, 50.67680970100011 ], [ -119.963215490999943, 50.676503812000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5577500", "BldgCostT": "3350000", "sL_LossRatio": "1", "sL_AssetLoss": "244.3", "sL_BldgLoss": "244.3", "sL_StrLoss": "244.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A73428BB15FC5DC0C7B71C54075F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.941880295999979, 50.740543154000129 ], [ -119.942444111999961, 50.740573794000078 ], [ -119.941959387999972, 50.744153468000057 ], [ -119.941580486999925, 50.74413287700002 ], [ -119.941566375999983, 50.744237078000111 ], [ -119.940920026999947, 50.744201950000011 ], [ -119.94087066499999, 50.744566392000081 ], [ -119.940381584999955, 50.744539809000045 ], [ -119.93521974399998, 50.744259113000069 ], [ -119.935705007999971, 50.740679469000042 ], [ -119.936351300999959, 50.740714627000074 ], [ -119.936400694999961, 50.7403501840001 ], [ -119.936779560999923, 50.740370793000075 ], [ -119.936793683999895, 50.740266593000094 ], [ -119.941880295999979, 50.740543154000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4768750", "BldgCostT": "3025000", "sL_LossRatio": "0.999984381104568", "sL_AssetLoss": "909.1552", "sL_BldgLoss": "909.141", "sL_StrLoss": "909", "sL_NStrLoss": "0.141", "sL_ContLoss": "0.0142", "geom_point": "0101000020E6100000B727697A20FF5DC045711AE4A65C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.983146942999923, 50.725982564000056 ], [ -119.983176916999952, 50.725759593000156 ], [ -119.982866948999941, 50.725742856000103 ], [ -119.982919357999933, 50.725353027000018 ], [ -119.982777271999979, 50.725345355000051 ], [ -119.982783341999962, 50.72530020600005 ], [ -119.98242666299997, 50.72528094500008 ], [ -119.982907953999955, 50.721701017000022 ], [ -119.984219238999941, 50.721771820000129 ], [ -119.984654262999982, 50.721795306000068 ], [ -119.984693189999973, 50.721505658000069 ], [ -119.990341581999971, 50.721810443000017 ], [ -119.989942356000014, 50.724783674000037 ], [ -119.989860881999974, 50.725390404000109 ], [ -119.989436661999918, 50.725367523000067 ], [ -119.989390679999985, 50.72570991400007 ], [ -119.988877174999971, 50.725682215000113 ], [ -119.988795887999942, 50.72628742600012 ], [ -119.983146942999923, 50.725982564000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3748917", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "609.5", "sL_BldgLoss": "609.5", "sL_StrLoss": "609.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000162023036DFB5DC0D72360B6955C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.926433206999945, 50.725487908000034 ], [ -119.92656257199998, 50.724534648000031 ], [ -119.924489907999899, 50.724421657000114 ], [ -119.924975813999964, 50.720841976000067 ], [ -119.930623714999953, 50.721149781000094 ], [ -119.930494446999958, 50.722103050000094 ], [ -119.932567016999911, 50.72221593000009 ], [ -119.932081702999938, 50.725795638000051 ], [ -119.926433206999945, 50.725487908000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "182", "sL_BldgLoss": "182", "sL_StrLoss": "182", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000076DA7D3B87FD5DC05E3BA45A3C584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.958798272999928, 50.68739878100007 ], [ -119.964442198999947, 50.687704888000049 ], [ -119.964366994999978, 50.688263023000111 ], [ -119.963959797999919, 50.691284880000126 ], [ -119.962250665999989, 50.691192213000072 ], [ -119.958315425999956, 50.690978750000049 ], [ -119.958464565000014, 50.689873053 ], [ -119.958658337999964, 50.688436358000104 ], [ -119.958798272999928, 50.68739878100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "191.6", "sL_BldgLoss": "191.6", "sL_StrLoss": "191.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A41E3FA762FD5DC07D491927F4584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96186110399999, 50.693295138000082 ], [ -119.962210061999912, 50.693314061000088 ], [ -119.961727423999903, 50.696894020000116 ], [ -119.956082361999947, 50.696587778000072 ], [ -119.956332672999963, 50.69473290400002 ], [ -119.956565445999971, 50.693007842000057 ], [ -119.96186110399999, 50.693295138000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3748917", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "612.1", "sL_BldgLoss": "612.1", "sL_StrLoss": "612.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004C759E04B8F85DC03F96F4E6265A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.884683629999984, 50.702210102000016 ], [ -119.890328910999941, 50.702519952000081 ], [ -119.889840439999915, 50.70609956 ], [ -119.887837638999912, 50.70598966600005 ], [ -119.887779668999926, 50.706414306000106 ], [ -119.882133916999948, 50.706104328000023 ], [ -119.882623001999946, 50.702524755000113 ], [ -119.884625634999978, 50.702634742000079 ], [ -119.884683629999984, 50.702210102000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "98.9", "sL_BldgLoss": "98.9", "sL_StrLoss": "98.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AA74A01C3FFA5DC0253B360271544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.908461342999942, 50.661350959000089 ], [ -119.908411371999989, 50.660542630000045 ], [ -119.907139674999939, 50.660574385000068 ], [ -119.90717297399999, 50.661113271000033 ], [ -119.906749068999915, 50.661123854000095 ], [ -119.90678236399998, 50.661662740000025 ], [ -119.906358453999985, 50.661673321000109 ], [ -119.906375098999888, 50.661942764000052 ], [ -119.905951187999904, 50.661953343000107 ], [ -119.905967829999895, 50.662222787000054 ], [ -119.904919455000012, 50.662248944000041 ], [ -119.905553280999939, 50.661580239000045 ], [ -119.90723079199995, 50.659810336000056 ], [ -119.907716991999933, 50.659891052000049 ], [ -119.90852713299995, 50.659454061000112 ], [ -119.909256217999953, 50.659060801000088 ], [ -119.909843056999932, 50.65874425700008 ], [ -119.91037728799995, 50.658346136000027 ], [ -119.910677057999962, 50.65806822900003 ], [ -119.910751051999966, 50.657999629000109 ], [ -119.911445715999918, 50.65769593100007 ], [ -119.912376575999929, 50.65687680700011 ], [ -119.912622336999959, 50.656740589000115 ], [ -119.913315591999975, 50.65660359700005 ], [ -119.913584052999965, 50.656488453000108 ], [ -119.913977549999956, 50.656173361000072 ], [ -119.913532389999958, 50.659451919000112 ], [ -119.910030270999968, 50.659260274000118 ], [ -119.910040302999917, 50.659422499000073 ], [ -119.910464191999978, 50.65941190500007 ], [ -119.910547530999963, 50.660759118000065 ], [ -119.910123629999973, 50.660769712000075 ], [ -119.910173630999964, 50.661578040000087 ], [ -119.909749722999919, 50.661588632000083 ], [ -119.909766386999962, 50.661858075000069 ], [ -119.909342477999957, 50.661868666000011 ], [ -119.909359139999964, 50.662138108000072 ], [ -119.908935226999958, 50.662148699000063 ], [ -119.908951888999965, 50.662418142000014 ], [ -119.908527970999941, 50.662428731000062 ], [ -119.908544630999984, 50.662698173000059 ], [ -119.907272874999975, 50.662729930000097 ], [ -119.907238486999987, 50.662173451000044 ], [ -119.907222922999921, 50.661921601000095 ], [ -119.907646835999969, 50.661911018000119 ], [ -119.907630182, 50.661641574000079 ], [ -119.908054089999936, 50.661630989000116 ], [ -119.908037435999915, 50.661361546000137 ], [ -119.908461342999942, 50.661350959000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6833250", "BldgCostT": "4185000", "sL_LossRatio": "1", "sL_AssetLoss": "992", "sL_BldgLoss": "992", "sL_StrLoss": "992", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB044DAED6F85DC0D5AE8DA1315C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.884385849999916, 50.722903458000069 ], [ -119.884432991999958, 50.722558469 ], [ -119.883783953999938, 50.722522842000053 ], [ -119.883802583999937, 50.722386523000111 ], [ -119.883259846999962, 50.722356728000051 ], [ -119.883313679999915, 50.721962831000056 ], [ -119.883184272, 50.721955727000093 ], [ -119.883673444999928, 50.718376216000102 ], [ -119.884709021999967, 50.71843306400006 ], [ -119.884744409999882, 50.718174040000108 ], [ -119.887094472999962, 50.718303013000074 ], [ -119.88720684299993, 50.717480195000078 ], [ -119.887264964999929, 50.717483384000019 ], [ -119.88729805299999, 50.717241097000056 ], [ -119.892945241999968, 50.71755080900008 ], [ -119.892456816999982, 50.721130364000068 ], [ -119.892398689999979, 50.721127178000103 ], [ -119.892365625999958, 50.721369466000056 ], [ -119.891321928999929, 50.721312247000085 ], [ -119.89106317599996, 50.72320799200002 ], [ -119.890042103000013, 50.72315200500001 ], [ -119.890033732999939, 50.723213315000095 ], [ -119.884385849999916, 50.722903458000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4744583", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "904", "sL_BldgLoss": "904", "sL_StrLoss": "904", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D0EC5FFEEFFD5DC06BC03986F45C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96974118899999, 50.729067565000094 ], [ -119.969005620999923, 50.728698716000089 ], [ -119.968714655999989, 50.728588288000019 ], [ -119.968597142999926, 50.728560749000039 ], [ -119.9684898899999, 50.728535560000104 ], [ -119.968081725999966, 50.728513470000031 ], [ -119.965168836999936, 50.728491336000097 ], [ -119.965208847999975, 50.728194622000025 ], [ -119.96532189, 50.728200743000116 ], [ -119.965422283999928, 50.727456223000033 ], [ -119.963332125999955, 50.727343017000102 ], [ -119.963814963999951, 50.723763180000098 ], [ -119.964074173999975, 50.72377722100007 ], [ -119.96408155499995, 50.723722486000035 ], [ -119.965096809, 50.72377747700007 ], [ -119.965140423999941, 50.723454010000104 ], [ -119.96552145899993, 50.723474645000131 ], [ -119.965521907999957, 50.723471319000048 ], [ -119.971170415999921, 50.723777074000083 ], [ -119.970944782999979, 50.725452079000071 ], [ -119.97083178499993, 50.726290879000054 ], [ -119.971491478999937, 50.726326570000019 ], [ -119.971457980999929, 50.726575247000028 ], [ -119.971596991999931, 50.726582767000096 ], [ -119.97133053899999, 50.72856079400006 ], [ -119.971952916999939, 50.728594462000075 ], [ -119.97191439, 50.728880486000115 ], [ -119.971939835999976, 50.728881862000016 ], [ -119.971937724999947, 50.728897544000127 ], [ -119.972446220999942, 50.728925048000114 ], [ -119.972350473999924, 50.729635919000081 ], [ -119.972222039999949, 50.729638981000086 ], [ -119.97093853899996, 50.729415121000081 ], [ -119.970723681999957, 50.729377634000123 ], [ -119.970249128999981, 50.729257305000033 ], [ -119.969986607999914, 50.72915924200003 ], [ -119.96974118899999, 50.729067565000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "418", "sL_BldgLoss": "418", "sL_StrLoss": "418", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7AA94E0C5F75DC00C9DF07546554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.873207781999909, 50.664200606000101 ], [ -119.873384852999976, 50.664177338000023 ], [ -119.872951684999947, 50.667345738000037 ], [ -119.872947967999934, 50.667345534000106 ], [ -119.87289230499999, 50.667752639000057 ], [ -119.872787905999985, 50.667746891000078 ], [ -119.872727723999958, 50.668187041000074 ], [ -119.87045079499994, 50.668061641000115 ], [ -119.870376544999914, 50.66799128600011 ], [ -119.870286095999958, 50.667893645000071 ], [ -119.870211844, 50.667831862000092 ], [ -119.870091632999944, 50.667707652000068 ], [ -119.870045096999945, 50.667636199000057 ], [ -119.870041984999986, 50.667581855000044 ], [ -119.870050188, 50.667482501000059 ], [ -119.870025854999938, 50.667077601000095 ], [ -119.869907608999981, 50.666945004000127 ], [ -119.869414499999934, 50.66628278700005 ], [ -119.869452680999984, 50.664824392000078 ], [ -119.869661687999937, 50.664764498000089 ], [ -119.870964489999935, 50.664750314000038 ], [ -119.871747008999961, 50.664596500000115 ], [ -119.873207781999909, 50.664200606000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6662750", "BldgCostT": "4595000", "sL_LossRatio": "1", "sL_AssetLoss": "487.6", "sL_BldgLoss": "487.6", "sL_StrLoss": "487.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0204A4989F95DC0D82E0A0EF1534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.895371024, 50.657497462000073 ], [ -119.895973664999971, 50.657275030000093 ], [ -119.896440997, 50.653842961000102 ], [ -119.902080280999954, 50.654152234000065 ], [ -119.901593273999964, 50.657732099000057 ], [ -119.89595354199993, 50.65742280300001 ], [ -119.895953595999941, 50.657422416000053 ], [ -119.895473323999965, 50.657607662000068 ], [ -119.895371024, 50.657497462000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "155.5", "sL_BldgLoss": "155.5", "sL_StrLoss": "155.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084068B58FEF75DC0747F928E34564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.873826711999982, 50.673550324000125 ], [ -119.873642182999902, 50.673496873000012 ], [ -119.873411131999916, 50.67352382800005 ], [ -119.873324168999929, 50.673557578000086 ], [ -119.873015074999913, 50.673677546000064 ], [ -119.872978938999935, 50.673691565000041 ], [ -119.872937189999988, 50.673456754000092 ], [ -119.872941487999981, 50.673284289000058 ], [ -119.872947349999919, 50.673139038000031 ], [ -119.872950588999956, 50.672948466000058 ], [ -119.872960556999956, 50.672875633000046 ], [ -119.87295436299999, 50.672766931000105 ], [ -119.872970540000011, 50.672589274000082 ], [ -119.876233691999943, 50.672768882000057 ], [ -119.876213283999959, 50.672918204000048 ], [ -119.876654288999958, 50.672942471000034 ], [ -119.876538871999983, 50.673787012000105 ], [ -119.876248714000027, 50.673816151000082 ], [ -119.876060989999957, 50.673921243000038 ], [ -119.875990834999968, 50.674070664000055 ], [ -119.875990814999952, 50.67451788000011 ], [ -119.875923887999932, 50.67469541800007 ], [ -119.875814926999979, 50.674806636 ], [ -119.875652053999929, 50.674854488000072 ], [ -119.875583118999955, 50.674841133000015 ], [ -119.875437483999931, 50.674812919000047 ], [ -119.875284320999953, 50.674717023000035 ], [ -119.875109628999923, 50.674560437000139 ], [ -119.87477738199999, 50.674381693000022 ], [ -119.874666876999967, 50.674322219 ], [ -119.87434983299994, 50.674151662000043 ], [ -119.874085711999953, 50.673921637000078 ], [ -119.873958823999942, 50.673685634000023 ], [ -119.873826711999982, 50.673550324000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7469917", "BldgCostT": "5151667", "sL_LossRatio": "1", "sL_AssetLoss": "666", "sL_BldgLoss": "666", "sL_StrLoss": "666", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B7D9501831F95DC0CDB3ED0F6F544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.89104550899998, 50.657694647000028 ], [ -119.8966852399999, 50.658004191000096 ], [ -119.896197761999986, 50.661584016000077 ], [ -119.89055758399995, 50.661274447000046 ], [ -119.89104550899998, 50.657694647000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999996940404528", "sL_AssetLoss": "80.402786", "sL_BldgLoss": "80.40254", "sL_StrLoss": "80.4", "sL_NStrLoss": "0.00254", "sL_ContLoss": "0.000246", "geom_point": "0101000020E61000004CB5E42BA0035EC0A5ACB6CD9A544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.056803433999931, 50.661401650000087 ], [ -120.056807962999926, 50.661329257000048 ], [ -120.056633764999972, 50.661333831000015 ], [ -120.056620337999945, 50.661127162000049 ], [ -120.055972508999929, 50.661110785000055 ], [ -120.056018066999954, 50.660382717000076 ], [ -120.057428628999943, 50.661055530000077 ], [ -120.057384269999929, 50.661416330000101 ], [ -120.056803433999931, 50.661401650000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80356584", "BldgCostT": "55418334", "sL_LossRatio": "1", "sL_AssetLoss": "6768", "sL_BldgLoss": "6768", "sL_StrLoss": "6768", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021808A99B3FB5DC0E9CA4EDC7D534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.944939482999985, 50.65659415000006 ], [ -119.944951894999946, 50.656502267000107 ], [ -119.944398271999944, 50.656472135000044 ], [ -119.94453705799998, 50.655444739000103 ], [ -119.94041201099995, 50.655220128000046 ], [ -119.940417451999934, 50.655179877000123 ], [ -119.939953699999975, 50.65515461500005 ], [ -119.939972598999987, 50.6550148050001 ], [ -119.935740770999956, 50.654784200000094 ], [ -119.935756000999973, 50.654671623000063 ], [ -119.935728078999915, 50.654670101000129 ], [ -119.935786009999944, 50.654241856000105 ], [ -119.93564975799994, 50.654234428000073 ], [ -119.93563125299994, 50.65437122100009 ], [ -119.929991710999929, 50.654063644000097 ], [ -119.93004069599999, 50.653701868000105 ], [ -119.927655258999962, 50.653571680000063 ], [ -119.927675401, 50.653422986000052 ], [ -119.925351692999953, 50.653296118000071 ], [ -119.925382337999963, 50.6530699690001 ], [ -119.922245606999979, 50.652898633000035 ], [ -119.922473881999935, 50.651214807000031 ], [ -119.922379326999987, 50.651209641000023 ], [ -119.92240724, 50.651003743000075 ], [ -119.920627585999952, 50.650906493000072 ], [ -119.920655711999956, 50.650699077000112 ], [ -119.919497361999959, 50.650635763000082 ], [ -119.919498842999985, 50.650624839000038 ], [ -119.919337828999943, 50.650616038000067 ], [ -119.919140806999977, 50.652068607000061 ], [ -119.918732255999885, 50.652046273000089 ], [ -119.918672712, 50.652485217000041 ], [ -119.917009232999987, 50.652394263000055 ], [ -119.914391791999947, 50.652251099000097 ], [ -119.914131711999929, 50.654166919000097 ], [ -119.908492341999988, 50.653858255000138 ], [ -119.908978757999989, 50.650278343000089 ], [ -119.913259463999935, 50.650512670000047 ], [ -119.913421311999954, 50.649320531000065 ], [ -119.91273036699998, 50.649282719000034 ], [ -119.909180391999897, 50.649088383000091 ], [ -119.909312399000029, 50.648116680000015 ], [ -119.912474998999969, 50.647159888000083 ], [ -119.914287716999979, 50.646961903 ], [ -119.915583249999926, 50.646949783000061 ], [ -119.915405735999968, 50.648257838000049 ], [ -119.91648218, 50.648316718000089 ], [ -119.916669031999973, 50.646939615000115 ], [ -119.917172077999936, 50.646934899000051 ], [ -119.919327617999969, 50.647249602000038 ], [ -119.920911689999954, 50.64770390900005 ], [ -119.924037798999976, 50.648813413000013 ], [ -119.925988689999969, 50.64924069100001 ], [ -119.928120287999931, 50.649636610000059 ], [ -119.932449123999945, 50.650293102000035 ], [ -119.935413005999948, 50.650407088000073 ], [ -119.935928309999966, 50.650286001 ], [ -119.93599087199999, 50.650217195000053 ], [ -119.936087519999944, 50.650110897000083 ], [ -119.936390402, 50.649977010000057 ], [ -119.936855405999921, 50.64994709900003 ], [ -119.937556303999912, 50.650073799 ], [ -119.939000603999943, 50.650073785000131 ], [ -119.93988468699996, 50.650194895000084 ], [ -119.941516285999938, 50.650253307000064 ], [ -119.941884017999925, 50.650261795000119 ], [ -119.944536491999969, 50.651039392000058 ], [ -119.945558483999932, 50.651338505000098 ], [ -119.948153606999981, 50.651875503000056 ], [ -119.949199882999977, 50.652100503000057 ], [ -119.950805403999979, 50.652636003000026 ], [ -119.951604182999958, 50.65296639700005 ], [ -119.95309720399996, 50.653764007000085 ], [ -119.954818109999934, 50.654350701000055 ], [ -119.955516709999984, 50.654440391000094 ], [ -119.95574250899989, 50.654434701000106 ], [ -119.956557816, 50.654117096000071 ], [ -119.956884311999914, 50.654127100000039 ], [ -119.957203507000017, 50.654253891000074 ], [ -119.958008498999945, 50.654233898000051 ], [ -119.959062000999921, 50.65432368600009 ], [ -119.959863868999946, 50.654673882000068 ], [ -119.95971257199993, 50.655796766000087 ], [ -119.959549339999938, 50.65700816200011 ], [ -119.957501414999982, 50.656896952000096 ], [ -119.957462558999978, 50.657185210000094 ], [ -119.951910093999913, 50.656883499000052 ], [ -119.951899105999971, 50.656964939000012 ], [ -119.950580487999957, 50.656893246000017 ], [ -119.950579445999921, 50.656900970000073 ], [ -119.944939482999985, 50.65659415000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7445750", "BldgCostT": "5135000", "sL_LossRatio": "1", "sL_AssetLoss": "716.8", "sL_BldgLoss": "716.8", "sL_StrLoss": "716.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000044FE7833D3F95DC08C7C033862534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.906107578999979, 50.64920789500011 ], [ -119.907008847999947, 50.64889100500006 ], [ -119.906802601999971, 50.650408557000084 ], [ -119.906658810999957, 50.65146650200009 ], [ -119.906549760999965, 50.652268801000076 ], [ -119.906524384999926, 50.652455498000094 ], [ -119.906425553999938, 50.652450084000158 ], [ -119.904722897999989, 50.652356799000131 ], [ -119.904613341999948, 50.653162540000082 ], [ -119.898974164999984, 50.652853394000068 ], [ -119.899105368999955, 50.651889306000029 ], [ -119.901288911999956, 50.650902707000071 ], [ -119.902159295999979, 50.650583711000053 ], [ -119.903565600999983, 50.649964196000035 ], [ -119.904827916999963, 50.649572501000065 ], [ -119.906107578999979, 50.64920789500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85668417", "BldgCostT": "59081667", "sL_LossRatio": "1", "sL_AssetLoss": "6144", "sL_BldgLoss": "6144", "sL_StrLoss": "6144", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AC09CB06FFF5DC0A5A87513E3534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.9959480589999, 50.660759342000063 ], [ -119.995959074999959, 50.660677090000028 ], [ -119.99343338199999, 50.660540773000051 ], [ -119.993501219999956, 50.660034518000074 ], [ -119.992562731999925, 50.659983851000099 ], [ -119.99241818299997, 50.659976046000033 ], [ -119.99243530499993, 50.659848290000077 ], [ -119.992449365999946, 50.659743375000033 ], [ -119.992394656999949, 50.659740421000031 ], [ -119.990966650999951, 50.659663307000116 ], [ -119.991103007999968, 50.658646110000049 ], [ -119.99133142299992, 50.656942060000091 ], [ -119.99137054299996, 50.656650212000088 ], [ -119.991420046999934, 50.656280867000127 ], [ -119.990833850999977, 50.656295926000055 ], [ -119.990472591999904, 50.656305204000027 ], [ -119.99046819499992, 50.656373950000088 ], [ -119.99046220699995, 50.656467579000015 ], [ -119.989190738000019, 50.656434709000081 ], [ -119.98921575599995, 50.656043718000085 ], [ -119.989206332999913, 50.655895384000083 ], [ -119.988801398999925, 50.655884913000087 ], [ -119.988806302999976, 50.655808260000143 ], [ -119.988776329999965, 50.655809030000036 ], [ -119.988751876999928, 50.655424036000063 ], [ -119.988729609999936, 50.655073465000072 ], [ -119.988005501999936, 50.655054736000039 ], [ -119.988007778999972, 50.655019166000088 ], [ -119.987877355999913, 50.65502251200008 ], [ -119.987868287999945, 50.654879717 ], [ -119.98765565199993, 50.654868226000119 ], [ -119.987632839999904, 50.655038317000091 ], [ -119.98288912799994, 50.65478185000007 ], [ -119.982861051, 50.654991031000108 ], [ -119.9828580329999, 50.655013527000079 ], [ -119.98168696499998, 50.654950183000025 ], [ -119.981174656999926, 50.654922468000059 ], [ -119.980957485999966, 50.654910718000096 ], [ -119.980947664, 50.654983861000026 ], [ -119.980833993000019, 50.655830472000062 ], [ -119.977469029999938, 50.655648364000058 ], [ -119.977301600999965, 50.655639301000065 ], [ -119.977286977999952, 50.655748157000126 ], [ -119.977268140999954, 50.655888354000105 ], [ -119.976788205999938, 50.655862372000023 ], [ -119.976018853999946, 50.655820717000019 ], [ -119.975988629999947, 50.65604562700004 ], [ -119.975829956, 50.657226385000094 ], [ -119.975457389999946, 50.657206211000101 ], [ -119.975447741999957, 50.657277993000029 ], [ -119.969807562999947, 50.656972431000092 ], [ -119.969838610999943, 50.656741631000045 ], [ -119.967240194999988, 50.656600762000068 ], [ -119.967304525, 50.656122738000121 ], [ -119.96440893499999, 50.65596568600003 ], [ -119.964433571999948, 50.655782693000027 ], [ -119.964416654999965, 50.655781775000051 ], [ -119.964156838999926, 50.65576767900005 ], [ -119.96422836, 50.655236485000053 ], [ -119.964435702999936, 50.654970294000059 ], [ -119.965846207999931, 50.654222500000039 ], [ -119.966168192999959, 50.654142815000114 ], [ -119.966633504999962, 50.653887883000046 ], [ -119.967791398999964, 50.653624402000069 ], [ -119.969388892999959, 50.653620088000061 ], [ -119.97071069399999, 50.653487688000055 ], [ -119.971986995999941, 50.65329250900006 ], [ -119.973163115, 50.653335295000076 ], [ -119.974066, 50.653077495000055 ], [ -119.975804796999952, 50.65258329200001 ], [ -119.978085502999988, 50.652193099000051 ], [ -119.979112197999925, 50.652301285000085 ], [ -119.980798599999929, 50.652339697000052 ], [ -119.981683190999945, 50.652235801000053 ], [ -119.984635484999927, 50.651935297000108 ], [ -119.986120818999922, 50.651717402 ], [ -119.988114991999907, 50.651261606000077 ], [ -119.990352702999942, 50.650852910000069 ], [ -119.992813215999917, 50.650619307000056 ], [ -119.99547907299997, 50.650649803000121 ], [ -119.995445649999979, 50.650899371000058 ], [ -119.995560357, 50.65090556200002 ], [ -119.995360008999938, 50.652401495000099 ], [ -119.995391655999967, 50.652400681000088 ], [ -119.99539953599999, 50.65227726800007 ], [ -119.995768869999949, 50.652286798000013 ], [ -119.99568974, 50.651043695000112 ], [ -119.995903117999902, 50.651038205000091 ], [ -119.995909314999949, 50.650941103000051 ], [ -119.997790570999925, 50.650989626000069 ], [ -119.99950374899997, 50.650945504000049 ], [ -119.99950938399995, 50.65103393200009 ], [ -120.000147085999942, 50.65105036200007 ], [ -120.000068684999988, 50.652280267000037 ], [ -120.00043718799995, 50.652270772000065 ], [ -120.000445895999988, 50.652407379000095 ], [ -120.001721452999917, 50.652440231000043 ], [ -120.001674183999967, 50.651699161000074 ], [ -120.001803861999974, 50.651695819000032 ], [ -120.001807871999972, 50.651632866000092 ], [ -120.00302752, 50.651664266000104 ], [ -120.003135864999933, 50.651661471000061 ], [ -120.00391374199999, 50.651892475000075 ], [ -120.003895333999949, 50.652181608000092 ], [ -120.004740864999974, 50.652159790000034 ], [ -120.005160639999957, 50.652309624000011 ], [ -120.005136476, 50.652689309000145 ], [ -120.00615102799999, 50.652663120000035 ], [ -120.006410977999948, 50.652755901000027 ], [ -120.006507909999968, 50.654273088000089 ], [ -120.00608410399991, 50.654284030000106 ], [ -120.00613574, 50.655092288000098 ], [ -120.006559551999942, 50.655081346000053 ], [ -120.006576766999956, 50.655350765000037 ], [ -120.007000579999982, 50.655339821000013 ], [ -120.007013685999937, 50.655544882000058 ], [ -120.007501021999985, 50.655557408000035 ], [ -120.007470087999977, 50.656043804000049 ], [ -120.007493274999973, 50.656406551000032 ], [ -120.007917097999936, 50.656395603000078 ], [ -120.008003216999967, 50.65774269700006 ], [ -120.00757937899999, 50.65775364500012 ], [ -120.0075966039999, 50.65802306500008 ], [ -120.007343788999918, 50.65802959400007 ], [ -120.007258341999915, 50.659372911000105 ], [ -120.007274253999981, 50.659621829000038 ], [ -120.007310531999977, 50.660189363000072 ], [ -120.006886673999958, 50.660200308000093 ], [ -120.006891553999964, 50.660276660000093 ], [ -120.006903892999944, 50.660469727000113 ], [ -120.00554752099994, 50.660504746000129 ], [ -120.005062752999919, 50.660517257000052 ], [ -120.005058343999977, 50.66058652600001 ], [ -120.005056087999932, 50.66062194700006 ], [ -120.004855904999943, 50.660616796000077 ], [ -120.003939860999964, 50.660593231000057 ], [ -120.003950014999987, 50.660752249000112 ], [ -120.003954067999985, 50.660815727000035 ], [ -120.00376976299999, 50.660820482000048 ], [ -120.003767332999956, 50.66085865600008 ], [ -120.003316017999978, 50.6608470420001 ], [ -120.003027713999941, 50.660839622000012 ], [ -120.001613981999981, 50.660876073000018 ], [ -120.001608689999983, 50.660915615000114 ], [ -120.001588889999965, 50.661063580000082 ], [ -119.9959480589999, 50.660759342000063 ] ], [ [ -119.99372572399993, 50.655274958000035 ], [ -119.993735389999927, 50.65520281400012 ], [ -119.992553427999979, 50.655172293000113 ], [ -119.992242588999957, 50.655180281000092 ], [ -119.99223496399999, 50.655299573000079 ], [ -119.992836188999917, 50.65533203800004 ], [ -119.992846645999947, 50.655253994000056 ], [ -119.993543491, 50.655291618000035 ], [ -119.993547015999965, 50.6552653090001 ], [ -119.99372572399993, 50.655274958000035 ] ], [ [ -119.995497760999939, 50.654696310000048 ], [ -119.995481335999941, 50.654438289000112 ], [ -119.995261916999979, 50.654432626000087 ], [ -119.99529632199993, 50.653893786000062 ], [ -119.995160603, 50.653890284000049 ], [ -119.995080830999939, 50.6544858460001 ], [ -119.994232142999962, 50.65444003300005 ], [ -119.994215728999976, 50.654562553000069 ], [ -119.994219851999972, 50.654627330000075 ], [ -119.995497760999939, 50.654696310000048 ] ], [ [ -119.995368849999977, 50.652671131000019 ], [ -119.995354366999919, 50.652443613000088 ], [ -119.995323738999915, 50.652672291000037 ], [ -119.995368849999977, 50.652671131000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "100.8", "sL_BldgLoss": "100.8", "sL_StrLoss": "100.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E459B4C6C1025EC023CACD26F6544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.042396998999934, 50.664405337000062 ], [ -120.042388553999942, 50.664274756000026 ], [ -120.041764025999953, 50.664258892000142 ], [ -120.041831798999937, 50.663181170000037 ], [ -120.044375223999964, 50.663245753000062 ], [ -120.044373435999958, 50.663274220000055 ], [ -120.044446657999956, 50.663272305000035 ], [ -120.044498966999953, 50.664080533000046 ], [ -120.04389719699995, 50.664096266000101 ], [ -120.043883594999954, 50.664312718000119 ], [ -120.043664439999972, 50.664307154000106 ], [ -120.043668641999886, 50.664372105000105 ], [ -120.042396998999934, 50.664405337000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6520167", "BldgCostT": "4496667", "sL_LossRatio": "1", "sL_AssetLoss": "469", "sL_BldgLoss": "469", "sL_StrLoss": "469", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059FDCF692FFA5DC0AF71C31035544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.906258588999933, 50.660056661000091 ], [ -119.90620865799994, 50.659248330000089 ], [ -119.9057847699999, 50.659258909000094 ], [ -119.905734849999973, 50.658450577000146 ], [ -119.906086855999945, 50.658441794000034 ], [ -119.907006492000022, 50.658418839000042 ], [ -119.907023137999929, 50.658688283000039 ], [ -119.907447020999939, 50.658677700000077 ], [ -119.90746367, 50.658947143000098 ], [ -119.90792056199993, 50.658935734000096 ], [ -119.908378881999923, 50.655563342000029 ], [ -119.914018465, 50.655872010000074 ], [ -119.913977549999956, 50.656173361000072 ], [ -119.913584052999965, 50.656488453000108 ], [ -119.913315591999975, 50.65660359700005 ], [ -119.912622336999959, 50.656740589000115 ], [ -119.912376575999929, 50.65687680700011 ], [ -119.911445715999918, 50.65769593100007 ], [ -119.910751051999966, 50.657999629000109 ], [ -119.910677057999962, 50.65806822900003 ], [ -119.91037728799995, 50.658346136000027 ], [ -119.909843056999932, 50.65874425700008 ], [ -119.909256217999953, 50.659060801000088 ], [ -119.90852713299995, 50.659454061000112 ], [ -119.907716991999933, 50.659891052000049 ], [ -119.90723079199995, 50.659810336000056 ], [ -119.905553280999939, 50.661580239000045 ], [ -119.904919455000012, 50.662248944000041 ], [ -119.904696084999912, 50.662254516000104 ], [ -119.90462954399996, 50.661176740000087 ], [ -119.905053448999979, 50.661166167000047 ], [ -119.905036812999967, 50.660896722000125 ], [ -119.905460714999919, 50.660886147000063 ], [ -119.905427436999929, 50.660347260000101 ], [ -119.905851334999966, 50.660336682000043 ], [ -119.905834691999985, 50.66006723900005 ], [ -119.906258588999933, 50.660056661000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "1", "sL_AssetLoss": "249", "sL_BldgLoss": "249", "sL_StrLoss": "249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000157583F496FE5DC0DB0D91894A4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.973557516999932, 50.622421539000065 ], [ -119.973814982999897, 50.620504752000144 ], [ -119.973127767999955, 50.62046749400006 ], [ -119.97314804199999, 50.620316564000035 ], [ -119.972897671999931, 50.620302989000088 ], [ -119.972942995999986, 50.619965582000141 ], [ -119.971009632999937, 50.619860738000042 ], [ -119.971255024999948, 50.61803450100011 ], [ -119.971490705999969, 50.616280409000048 ], [ -119.973360503999928, 50.616381808000064 ], [ -119.973391429999964, 50.61615155300008 ], [ -119.977043412999961, 50.616349507000066 ], [ -119.97860395, 50.616434058000074 ], [ -119.97875687199999, 50.615294483000049 ], [ -119.978827520999985, 50.615374499000062 ], [ -119.979215496999984, 50.615634410000055 ], [ -119.979571047999968, 50.61581115300006 ], [ -119.97960739899996, 50.615829222000023 ], [ -119.979618599999938, 50.615834798000087 ], [ -119.980237872999936, 50.616092044000069 ], [ -119.980279876999987, 50.616109497000075 ], [ -119.980889232999957, 50.616576228000078 ], [ -119.980925882999955, 50.61660429800002 ], [ -119.9813287, 50.616999552000038 ], [ -119.981346402999989, 50.617016889000062 ], [ -119.981537389999957, 50.617204305000058 ], [ -119.981675814999988, 50.617340085000102 ], [ -119.983956875999937, 50.619389981000076 ], [ -119.984545378999911, 50.619918774000013 ], [ -119.984660785999893, 50.620022496000018 ], [ -119.984676892999943, 50.620040943000049 ], [ -119.984987627999928, 50.620396642000031 ], [ -119.985002266, 50.620413416000112 ], [ -119.985189797999951, 50.620628091000079 ], [ -119.985653881999951, 50.621242006000088 ], [ -119.986123107999944, 50.621584689000073 ], [ -119.985725000999949, 50.621823713 ], [ -119.985268694999959, 50.622051500000062 ], [ -119.984349083, 50.622294803000038 ], [ -119.983669556999956, 50.622381964000084 ], [ -119.983390194999942, 50.622417792000043 ], [ -119.980746095999919, 50.622480223000068 ], [ -119.980744203999976, 50.622480278000104 ], [ -119.979772591999932, 50.622503208000033 ], [ -119.97836339299991, 50.622480992000121 ], [ -119.976812944999907, 50.62264425500009 ], [ -119.976808696999981, 50.622644705000035 ], [ -119.975778197999972, 50.62271959100007 ], [ -119.974681781999934, 50.622682702000084 ], [ -119.973613848999889, 50.622434624000036 ], [ -119.973557516999932, 50.622421539000065 ] ], [ [ -119.979666533999989, 50.619081978000125 ], [ -119.979686673999964, 50.618931890000063 ], [ -119.979015335999918, 50.618895528000046 ], [ -119.978990407, 50.61908129400009 ], [ -119.979313119999986, 50.619098773000132 ], [ -119.97931790699991, 50.619063096000026 ], [ -119.979666533999989, 50.619081978000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.9", "sL_BldgLoss": "168.9", "sL_StrLoss": "168.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD17E3ECEBF35DC06A5CAC66254E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.809388801999944, 50.613314910000042 ], [ -119.809429830999989, 50.613017549000098 ], [ -119.808885005999969, 50.612987197000066 ], [ -119.808917291999975, 50.612753209000061 ], [ -119.808487908999936, 50.612729286000025 ], [ -119.808600301999917, 50.6119147960001 ], [ -119.808208755999928, 50.611892980000036 ], [ -119.808305462999954, 50.611192183000092 ], [ -119.806890759999945, 50.611113345000071 ], [ -119.807384799999923, 50.607533697000036 ], [ -119.807438461999965, 50.607536688000067 ], [ -119.807459104999936, 50.607387099000114 ], [ -119.813091950999976, 50.607700889000057 ], [ -119.812974700999987, 50.60855128400005 ], [ -119.81433567, 50.608627057000064 ], [ -119.814223387999917, 50.609441556000043 ], [ -119.814614916999972, 50.609463351000088 ], [ -119.814598412999928, 50.609583069000067 ], [ -119.815652189999966, 50.609641723000067 ], [ -119.815158785999941, 50.613221399000082 ], [ -119.815079146999935, 50.613216966000067 ], [ -119.815022402999958, 50.613628600000041 ], [ -119.809388801999944, 50.613314910000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "110", "sL_BldgLoss": "110", "sL_StrLoss": "110", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C8433F04AF45DC0286211C30E534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.815265214999926, 50.646766371000098 ], [ -119.820903050999945, 50.647079752000089 ], [ -119.820409653999974, 50.650659289000089 ], [ -119.818942254999939, 50.650577752000039 ], [ -119.818882707999975, 50.651009624000061 ], [ -119.813244393999966, 50.650696143000047 ], [ -119.813738361999967, 50.647116636000135 ], [ -119.815205637999924, 50.647198242000051 ], [ -119.815265214999926, 50.646766371000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "107", "sL_BldgLoss": "107", "sL_StrLoss": "107", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000896124072EF55DC0666F84A0FE4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.82823093699993, 50.611082732000057 ], [ -119.828257199999896, 50.610891797000093 ], [ -119.827512127999981, 50.610850413000101 ], [ -119.828004521999915, 50.607270673000066 ], [ -119.833637497000026, 50.607583424000055 ], [ -119.833611258999952, 50.6077743620001 ], [ -119.83435628700002, 50.607815705000064 ], [ -119.833864390000016, 50.611395471000101 ], [ -119.82823093699993, 50.611082732000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "128", "sL_BldgLoss": "128", "sL_StrLoss": "128", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002520AA19A7EB5DC0287D840EF84C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.679629034999905, 50.603954857000055 ], [ -119.679900097999933, 50.602030316000025 ], [ -119.678383626999945, 50.601944027000087 ], [ -119.678887785999933, 50.598364915000097 ], [ -119.679890044999965, 50.598421947000126 ], [ -119.684518597999968, 50.598685210000077 ], [ -119.684247750999987, 50.600609771000045 ], [ -119.685764189999958, 50.600695980000125 ], [ -119.685260549999953, 50.60427511300005 ], [ -119.681962649999974, 50.604087602000092 ], [ -119.679629034999905, 50.603954857000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "212.7", "sL_BldgLoss": "212.7", "sL_StrLoss": "212.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DD7D41E9BFA5DC03FB723DE324F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.913528406999916, 50.61790259900004 ], [ -119.913846838000012, 50.615555175000061 ], [ -119.919481440999974, 50.615863582000067 ], [ -119.919408847999989, 50.616399247000054 ], [ -119.919446078999911, 50.616401284000091 ], [ -119.919399186999911, 50.616747294000113 ], [ -119.919457501999929, 50.616750484000072 ], [ -119.918972282999931, 50.62033058500004 ], [ -119.917725320999978, 50.620262359000023 ], [ -119.917526599999917, 50.621728115000082 ], [ -119.917364491999933, 50.62171924400009 ], [ -119.917348996999948, 50.621833519000106 ], [ -119.91171366099999, 50.621525006000105 ], [ -119.912199470999937, 50.617944942000086 ], [ -119.912361564999912, 50.617953820000132 ], [ -119.912377069999948, 50.617839545000081 ], [ -119.913528406999916, 50.61790259900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4719750", "BldgCostT": "3255000", "sL_LossRatio": "1", "sL_AssetLoss": "414.3", "sL_BldgLoss": "414.3", "sL_StrLoss": "414.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066AC4F9CD0F55DC06420AE20764F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.836329149999941, 50.622869826000112 ], [ -119.836654781999954, 50.620499787000092 ], [ -119.836515098999911, 50.620492042000095 ], [ -119.836543267999971, 50.620287 ], [ -119.83648811099999, 50.620283941000103 ], [ -119.836599131999904, 50.619475864000066 ], [ -119.836604794999985, 50.619434645000155 ], [ -119.836503769999965, 50.619429042000078 ], [ -119.836995543999961, 50.615849300000107 ], [ -119.842629653999936, 50.616161594000083 ], [ -119.842513093999941, 50.617010899000014 ], [ -119.842614112999954, 50.617016496000083 ], [ -119.84258597199999, 50.617221541000021 ], [ -119.842641125999947, 50.617224596000042 ], [ -119.842632753000018, 50.617285605000042 ], [ -119.843033116999919, 50.617307785000058 ], [ -119.84301646699997, 50.617429120000061 ], [ -119.843418213999911, 50.617451376000048 ], [ -119.843329575, 50.61809729900007 ], [ -119.843423380999965, 50.618102496000084 ], [ -119.843850095999983, 50.614992757000103 ], [ -119.849484146999941, 50.615304704000089 ], [ -119.848993373, 50.618884504000043 ], [ -119.844508028999925, 50.618636183000049 ], [ -119.844350862999974, 50.619781618000061 ], [ -119.844158167999979, 50.621185927000056 ], [ -119.844877117999957, 50.621225742000078 ], [ -119.844385912999911, 50.624805497000075 ], [ -119.842992812999981, 50.624728343000122 ], [ -119.842792022999959, 50.62619113100002 ], [ -119.838846941999961, 50.625972546000071 ], [ -119.838759172999943, 50.626611522000104 ], [ -119.833123779999951, 50.626299036000077 ], [ -119.83361589899998, 50.62271933900012 ], [ -119.836329149999941, 50.622869826000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000395C92A04BEC5DC054386146214F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.692373104999888, 50.616413727000044 ], [ -119.695184129999987, 50.616573251000013 ], [ -119.694681062999933, 50.620152358000048 ], [ -119.692124426999939, 50.620007274000045 ], [ -119.689047491999958, 50.619832585000076 ], [ -119.689551003999981, 50.616253503000145 ], [ -119.692373104999888, 50.616413727000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912583", "BldgCostT": "2698333", "sL_LossRatio": "1", "sL_AssetLoss": "269", "sL_BldgLoss": "269", "sL_StrLoss": "269", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000975A8C0D1FF55DC066AD574744534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.82497108699999, 50.657028053000062 ], [ -119.825052554999928, 50.656436705000012 ], [ -119.824938126999911, 50.656430353000061 ], [ -119.82507997799999, 50.655400680000106 ], [ -119.8252634299999, 50.65406896399999 ], [ -119.824793085999929, 50.654042853000121 ], [ -119.824882223999978, 50.653395800000027 ], [ -119.824690425999961, 50.653385152000091 ], [ -119.824780299999944, 50.652732765000074 ], [ -119.824727873999933, 50.65272985400005 ], [ -119.824733985999956, 50.652685483000035 ], [ -119.824686282999963, 50.652682835000086 ], [ -119.82428296099998, 50.652660443000045 ], [ -119.824500359999888, 50.651082390000099 ], [ -119.824564204999945, 50.650618932000057 ], [ -119.824386203999907, 50.650609050000043 ], [ -119.824419538999948, 50.650367066000086 ], [ -119.82398320799993, 50.650342838000086 ], [ -119.824476317999967, 50.646763283000134 ], [ -119.824777844999986, 50.646780026000073 ], [ -119.824794310999934, 50.646660491000077 ], [ -119.828593719, 50.646871387000097 ], [ -119.829794495, 50.646938013000089 ], [ -119.830432198, 50.646973390000049 ], [ -119.830408535999965, 50.647145334000029 ], [ -119.830564505, 50.647153987000131 ], [ -119.830554289999924, 50.647228224000074 ], [ -119.830822101999928, 50.647243080000067 ], [ -119.830799970999962, 50.647403907000076 ], [ -119.832164080999959, 50.647479564000044 ], [ -119.832350136999978, 50.646127128000067 ], [ -119.832591002999919, 50.644376166000065 ], [ -119.83267415399996, 50.644380777000087 ], [ -119.832708612000019, 50.644130268000055 ], [ -119.835821218999939, 50.644302839000062 ], [ -119.838346237999971, 50.644442768000062 ], [ -119.838329902999988, 50.644561627000023 ], [ -119.838554338999984, 50.644574061000142 ], [ -119.838315456999936, 50.646312288000018 ], [ -119.83806237499999, 50.648153688000036 ], [ -119.837754763999925, 50.648136645000058 ], [ -119.837736667999948, 50.648268296000076 ], [ -119.833104975999959, 50.648011575000076 ], [ -119.83270287499991, 50.650934561000035 ], [ -119.832895278999928, 50.650945229000122 ], [ -119.832860774999972, 50.651196038000059 ], [ -119.833208585999941, 50.651215322000034 ], [ -119.83271612299994, 50.654794897000087 ], [ -119.83266109299997, 50.654791845000013 ], [ -119.832648825999968, 50.654880998000102 ], [ -119.831484872999965, 50.654816458000077 ], [ -119.831390305999918, 50.655503625000073 ], [ -119.831060309999884, 50.655485325000029 ], [ -119.83094343499998, 50.656334534000116 ], [ -119.830750272999978, 50.656323821000043 ], [ -119.83069364799999, 50.656735230000066 ], [ -119.83061027699992, 50.657340939000058 ], [ -119.829496772999917, 50.657279180000081 ], [ -119.82497108699999, 50.657028053000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "225.2", "sL_BldgLoss": "225.2", "sL_StrLoss": "225.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000219195E33EFC5DC0E47F3494C14C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.938894590999951, 50.601814190000084 ], [ -119.938935122999965, 50.601514040000076 ], [ -119.93824469, 50.601476373000011 ], [ -119.93826166799991, 50.601350670000073 ], [ -119.937442071999925, 50.601305952000132 ], [ -119.937607965999973, 50.600077706000079 ], [ -119.936162414999984, 50.599998820000096 ], [ -119.936174077000018, 50.599912489000062 ], [ -119.935912512999892, 50.599898213000095 ], [ -119.936007561999944, 50.599194656000073 ], [ -119.936935903999967, 50.599006953000121 ], [ -119.937406690999978, 50.598861321000108 ], [ -119.937786119999956, 50.598656601000123 ], [ -119.937932207999935, 50.598552441000038 ], [ -119.938476769999951, 50.598164108000063 ], [ -119.9405570699999, 50.597307397000108 ], [ -119.941067569999944, 50.597140479000082 ], [ -119.94155656, 50.597069781000073 ], [ -119.941975593999956, 50.597072066000067 ], [ -119.94205262199992, 50.597072474000122 ], [ -119.942620884999954, 50.59715035200005 ], [ -119.943822560999962, 50.597463816000115 ], [ -119.944857315999982, 50.597858337000062 ], [ -119.945587505, 50.598201375000023 ], [ -119.945390340999893, 50.599663123000084 ], [ -119.945191635999961, 50.599652294000073 ], [ -119.945052784999973, 50.600681629000078 ], [ -119.944724289999925, 50.600663726000128 ], [ -119.94452764499998, 50.602121337000071 ], [ -119.938894590999951, 50.601814190000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13207083", "BldgCostT": "9108333", "sL_LossRatio": "1", "sL_AssetLoss": "1307", "sL_BldgLoss": "1307", "sL_StrLoss": "1307", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024BF34FBF2F85DC0954A5734464C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.888241862999919, 50.607506489000087 ], [ -119.888330932999949, 50.606852469000025 ], [ -119.886188939999926, 50.606734634000141 ], [ -119.886246513999964, 50.606312014000153 ], [ -119.885743253999948, 50.606284323000068 ], [ -119.885757875, 50.606177009000085 ], [ -119.885590855999979, 50.606167818000117 ], [ -119.885620202999959, 50.605952422000101 ], [ -119.884456633999918, 50.605888387000057 ], [ -119.88449246199994, 50.605625466000042 ], [ -119.884151140999947, 50.605606680000044 ], [ -119.884170359999956, 50.60546565700006 ], [ -119.884167151999961, 50.605465481000174 ], [ -119.884195603999956, 50.605256695000037 ], [ -119.884218179999891, 50.605091031000079 ], [ -119.884184578999964, 50.605089182000022 ], [ -119.884353798999953, 50.60384738000004 ], [ -119.883809948999939, 50.603817444000114 ], [ -119.883072626999947, 50.603776854000031 ], [ -119.883107523999911, 50.603520811000088 ], [ -119.88289934099997, 50.60350935000011 ], [ -119.882988972999925, 50.602851716000025 ], [ -119.88338724899991, 50.59992933400008 ], [ -119.88495773899993, 50.600015787000117 ], [ -119.885003238999943, 50.5996818220001 ], [ -119.884966774999953, 50.599679815000101 ], [ -119.885082134999962, 50.598833049000078 ], [ -119.885094158999934, 50.598744793000087 ], [ -119.88504889299999, 50.598004982000056 ], [ -119.885047172999919, 50.59797684400008 ], [ -119.88513175699994, 50.597974748000063 ], [ -119.885199290999964, 50.597973074000031 ], [ -119.885201420999977, 50.597957440000052 ], [ -119.885454476999953, 50.596099773000056 ], [ -119.89108645, 50.596409624000039 ], [ -119.891073562999978, 50.596504319000118 ], [ -119.89130995, 50.596517317000107 ], [ -119.89130962099992, 50.596519742000098 ], [ -119.891466442999942, 50.596528365000033 ], [ -119.891949029000017, 50.596554900000051 ], [ -119.891866764999989, 50.597159455000082 ], [ -119.892067653999959, 50.59717050000009 ], [ -119.892258359999929, 50.595768944000092 ], [ -119.89158288499999, 50.595731804000096 ], [ -119.891804921999963, 50.59410005700007 ], [ -119.890258184999965, 50.594014996000112 ], [ -119.888135282999912, 50.593898213 ], [ -119.888160056999936, 50.593716254000086 ], [ -119.886864754999976, 50.593644978000043 ], [ -119.886887326999954, 50.593479219000052 ], [ -119.886497553999973, 50.593457768000079 ], [ -119.886702566999986, 50.591952310000046 ], [ -119.881510493999954, 50.591666435000093 ], [ -119.881998384999946, 50.588086374000042 ], [ -119.882616303999924, 50.588120410000023 ], [ -119.882942578, 50.585725690000054 ], [ -119.886136526999934, 50.585901561000064 ], [ -119.886157, 50.585751205000086 ], [ -119.882893157999888, 50.585571485000074 ], [ -119.883380872999979, 50.581991391000024 ], [ -119.883395623999931, 50.581992204000045 ], [ -119.88349991299999, 50.581226593000054 ], [ -119.888179201999932, 50.581484223000082 ], [ -119.88913001, 50.581536547000084 ], [ -119.888642757999918, 50.585116668000062 ], [ -119.888628005999962, 50.585115856000115 ], [ -119.888555434999915, 50.585649029000088 ], [ -119.89181930499997, 50.585828583000122 ], [ -119.891797643999936, 50.585987805000073 ], [ -119.892022608999937, 50.586000177000102 ], [ -119.892018230999938, 50.586032362000083 ], [ -119.892474695999951, 50.586057465000046 ], [ -119.89246384399992, 50.586137248000064 ], [ -119.892560498999941, 50.586142563000109 ], [ -119.892073468999968, 50.589722678000101 ], [ -119.891888535999925, 50.58971250700008 ], [ -119.891858170999939, 50.589935683000078 ], [ -119.89135562899996, 50.589908045000037 ], [ -119.891327253999989, 50.590116585000096 ], [ -119.892616271999898, 50.590187469000057 ], [ -119.892598119999931, 50.59032090400008 ], [ -119.893455553999928, 50.590368047000027 ], [ -119.893426406999936, 50.590582333000029 ], [ -119.894253942999924, 50.590627826000059 ], [ -119.894055095999974, 50.592089858000065 ], [ -119.897777826999928, 50.592294432000124 ], [ -119.897378165999953, 50.595234450000113 ], [ -119.898000420999921, 50.595268631000067 ], [ -119.897513725999957, 50.598848731000032 ], [ -119.897064641999947, 50.598824062000112 ], [ -119.896750723999958, 50.601132743000036 ], [ -119.89674962299992, 50.601132683000081 ], [ -119.896717836, 50.601366444000107 ], [ -119.894633985, 50.601251951000052 ], [ -119.894559847, 50.601796970000052 ], [ -119.898134373999966, 50.601993341000103 ], [ -119.897647615999915, 50.605573412000126 ], [ -119.897375930999956, 50.60555849100011 ], [ -119.897333418999921, 50.605871119000078 ], [ -119.897304391999981, 50.605869524000177 ], [ -119.897287924999887, 50.605990619000096 ], [ -119.897254724999982, 50.605988796000133 ], [ -119.89722563499997, 50.606202720000063 ], [ -119.897202655999934, 50.606201459000062 ], [ -119.897187838999969, 50.606310421000096 ], [ -119.89423799399998, 50.606148367000124 ], [ -119.89403817699997, 50.6076169910001 ], [ -119.893903393999949, 50.607609585000048 ], [ -119.893875282999957, 50.607816194000051 ], [ -119.892381366999984, 50.607734092000044 ], [ -119.888241862999919, 50.607506489000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "110.8", "sL_BldgLoss": "110.8", "sL_StrLoss": "110.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADCF49AD3FF75DC05A80B6D52C514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.860688282999945, 50.632235286000082 ], [ -119.866324609999978, 50.632546375000089 ], [ -119.866187825999987, 50.633546509000034 ], [ -119.865834989999954, 50.636126176000047 ], [ -119.860198214999969, 50.635815063000031 ], [ -119.860450926999988, 50.633969165000103 ], [ -119.860688282999945, 50.632235286000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912583", "BldgCostT": "2698333", "sL_LossRatio": "1", "sL_AssetLoss": "293.9", "sL_BldgLoss": "293.9", "sL_StrLoss": "293.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000263DA1118BF65DC0004088433A554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.846643588999882, 50.668540116000052 ], [ -119.846901766999963, 50.666659908000064 ], [ -119.845100568999982, 50.666560288 ], [ -119.845592173999975, 50.662980709000173 ], [ -119.846960802999945, 50.66305640800006 ], [ -119.847090054, 50.662114973000065 ], [ -119.84716328699993, 50.661581542000128 ], [ -119.851736956999943, 50.661834386000052 ], [ -119.852763839999952, 50.661891130000093 ], [ -119.852840196999978, 50.661334424000138 ], [ -119.85314587, 50.659105674000031 ], [ -119.858785515999912, 50.659417134000115 ], [ -119.858768561999923, 50.659540869000082 ], [ -119.858337464999977, 50.662686919000059 ], [ -119.858295000999988, 50.662996787000047 ], [ -119.857834940999936, 50.662971390000067 ], [ -119.852694272999926, 50.662687477000119 ], [ -119.852312183999956, 50.665472920000092 ], [ -119.850943472999973, 50.665397287000111 ], [ -119.850906473999913, 50.665666934000036 ], [ -119.854516210999975, 50.665866364000046 ], [ -119.854510392999913, 50.665908797000021 ], [ -119.855287784999916, 50.665951731000085 ], [ -119.855646375999939, 50.665971533000089 ], [ -119.855516176999956, 50.666921121000037 ], [ -119.85750219099999, 50.667030773000064 ], [ -119.860192251999976, 50.667179240000124 ], [ -119.858521501999974, 50.668232489000026 ], [ -119.857524095999935, 50.669030004000021 ], [ -119.856547883999966, 50.66998999900003 ], [ -119.855459996999954, 50.67117630400007 ], [ -119.855254383999977, 50.671532400000032 ], [ -119.854984485999935, 50.671813266000065 ], [ -119.854670013999907, 50.672140494000104 ], [ -119.854097707999969, 50.672542110000101 ], [ -119.853473777999923, 50.672745795000097 ], [ -119.852885907999976, 50.672841200000079 ], [ -119.851466988999917, 50.672794204000112 ], [ -119.85098068399995, 50.672698804000042 ], [ -119.851197389999967, 50.671865607000065 ], [ -119.851553000999928, 50.67139850500007 ], [ -119.85146918599996, 50.67097839700007 ], [ -119.851225759999963, 50.670881925000096 ], [ -119.85089049699999, 50.670749090000058 ], [ -119.850400967000027, 50.670411078000029 ], [ -119.849782906999934, 50.669984298000024 ], [ -119.848893107000023, 50.66957411200007 ], [ -119.847634199999959, 50.668859096000062 ], [ -119.847105649999932, 50.668688904000142 ], [ -119.846643588999882, 50.668540116000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "114.2", "sL_BldgLoss": "114.2", "sL_StrLoss": "114.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000117110001EF65DC078D2048267514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.843050883000018, 50.637693803000076 ], [ -119.843099228999932, 50.637341681000095 ], [ -119.84201535399994, 50.637281660000056 ], [ -119.842506882999928, 50.633701969000072 ], [ -119.847762314999926, 50.633992898000066 ], [ -119.848143269999966, 50.634013977000109 ], [ -119.848062759999948, 50.634600889000112 ], [ -119.849146578, 50.634660852000067 ], [ -119.848655566, 50.638240567000125 ], [ -119.843018646999937, 50.637928586000072 ], [ -119.843050883000018, 50.637693803000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16455083", "BldgCostT": "11348333", "sL_LossRatio": "1", "sL_AssetLoss": "1375.1", "sL_BldgLoss": "1375.1", "sL_StrLoss": "1375.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBD8CDEFE8F45DC02495104980504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.826056482999959, 50.644490108000085 ], [ -119.826332044999944, 50.642488884 ], [ -119.821097858999977, 50.642198175000033 ], [ -119.821264181999979, 50.640991215000035 ], [ -119.8210475399999, 50.640979177000069 ], [ -119.821050621999973, 50.640956817000053 ], [ -119.820841034999944, 50.640945170000087 ], [ -119.820952439999942, 50.640136752000089 ], [ -119.81801339899998, 50.639973395000048 ], [ -119.81826111599996, 50.638176558000104 ], [ -119.818506869, 50.636393822000102 ], [ -119.821639188999924, 50.63656792000004 ], [ -119.821808358999945, 50.635340017000097 ], [ -119.82101602599991, 50.635295986000109 ], [ -119.821042989999953, 50.635100289 ], [ -119.82083593399993, 50.635088782000054 ], [ -119.820920609999988, 50.63447424200011 ], [ -119.821134371999946, 50.63292277700004 ], [ -119.820009656999943, 50.632860264000115 ], [ -119.82036762599995, 50.630262381000072 ], [ -119.817472251999902, 50.630101399000132 ], [ -119.81751427099999, 50.62979657800004 ], [ -119.816899453999937, 50.629762384000081 ], [ -119.816909878999965, 50.62968676100008 ], [ -119.81680055599999, 50.629680681000067 ], [ -119.817081287999926, 50.627644270000076 ], [ -119.816795694999897, 50.627628385000015 ], [ -119.817289126999981, 50.62404876500009 ], [ -119.817341123999896, 50.624051657000095 ], [ -119.817372838, 50.623821566000096 ], [ -119.817776691999939, 50.623844029000061 ], [ -119.817786621999929, 50.623771976000043 ], [ -119.82200454, 50.624006488000049 ], [ -119.822335530999936, 50.621603125 ], [ -119.81989912799996, 50.621467683000041 ], [ -119.820392245999983, 50.617888022000088 ], [ -119.824537598999953, 50.618118435000049 ], [ -119.824556459999911, 50.617981418000049 ], [ -119.82604530099999, 50.61806413500004 ], [ -119.826044118999931, 50.618044419000107 ], [ -119.82773830499994, 50.618003281000092 ], [ -119.827747629999976, 50.618158688000108 ], [ -119.828022417999989, 50.618173947000066 ], [ -119.828210068999965, 50.616809900000071 ], [ -119.829325666999921, 50.616871847000034 ], [ -119.829438959999948, 50.616048126000052 ], [ -119.830490663999953, 50.616106515000077 ], [ -119.830843741999942, 50.613538753000086 ], [ -119.835420243999948, 50.613792715000052 ], [ -119.836477519999988, 50.613851359000137 ], [ -119.835985727999969, 50.61743110800009 ], [ -119.835390661999952, 50.617398103000028 ], [ -119.835105558999956, 50.619472890000054 ], [ -119.83491487699996, 50.620860424000107 ], [ -119.834796173999933, 50.620853840000095 ], [ -119.834746189999962, 50.621217528000074 ], [ -119.833559058999981, 50.621151674000032 ], [ -119.833417488999956, 50.622181556000044 ], [ -119.832150101999929, 50.622111236000123 ], [ -119.831757975999949, 50.624962988000149 ], [ -119.83096299499995, 50.624918872000052 ], [ -119.830842688999951, 50.625793616000117 ], [ -119.83095653599996, 50.625799934000071 ], [ -119.830836721999901, 50.626671076000065 ], [ -119.831210686999938, 50.62669182900008 ], [ -119.830939479999969, 50.628663724000077 ], [ -119.835366786999941, 50.628909319000044 ], [ -119.834922860999896, 50.632138952000062 ], [ -119.835158715999967, 50.632152031000061 ], [ -119.834666616999925, 50.635731696000107 ], [ -119.830067969999931, 50.635476604000083 ], [ -119.829742523999968, 50.637841904000091 ], [ -119.827864905999931, 50.637737696000094 ], [ -119.827825322999928, 50.638025278000107 ], [ -119.828001176999962, 50.638035040000062 ], [ -119.82759736499996, 50.640968695000019 ], [ -119.832186542, 50.641223331000091 ], [ -119.831694107999908, 50.644802943000116 ], [ -119.828503165999933, 50.64462591100007 ], [ -119.826056482999959, 50.644490108000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "105.3", "sL_BldgLoss": "105.3", "sL_StrLoss": "105.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FCEAA6CABEB5DC0DE049D18AB4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68015392199996, 50.62324255900014 ], [ -119.677506082999955, 50.619136276000063 ], [ -119.680413751999978, 50.619301664 ], [ -119.680397305999975, 50.619418402000086 ], [ -119.680412459999971, 50.619419264000037 ], [ -119.680290376999935, 50.620285789000036 ], [ -119.684931972999962, 50.620549642000086 ], [ -119.68477367299991, 50.62167400800007 ], [ -119.686134211999942, 50.621751311000054 ], [ -119.685630365999941, 50.625330354000013 ], [ -119.68122535, 50.625080012000112 ], [ -119.681191627999951, 50.625319365000017 ], [ -119.68015392199996, 50.62324255900014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "243.8", "sL_BldgLoss": "243.8", "sL_StrLoss": "243.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068B0EB0FBBFD5DC06A63F4F55F4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.963169000999969, 50.621987205000011 ], [ -119.963263010999952, 50.621288539000041 ], [ -119.962037440999893, 50.621221975000012 ], [ -119.961973608, 50.621696276000108 ], [ -119.960809383999958, 50.621465597000075 ], [ -119.960297093999912, 50.62142331200004 ], [ -119.959741884999957, 50.621446412000104 ], [ -119.958421285, 50.621600003000012 ], [ -119.958270897999938, 50.62155760800006 ], [ -119.958160885, 50.62145691000007 ], [ -119.957920684999948, 50.620963 ], [ -119.957917174999977, 50.620955796000061 ], [ -119.957714110999945, 50.620538202000013 ], [ -119.957566414, 50.620376760000134 ], [ -119.957524889999902, 50.620331403000066 ], [ -119.956247184999924, 50.619211569000136 ], [ -119.955959835999963, 50.618959690000061 ], [ -119.955738495999952, 50.618840533000053 ], [ -119.955765449999902, 50.618640451000061 ], [ -119.956428578999976, 50.618676509000089 ], [ -119.95644022299993, 50.618590067000063 ], [ -119.962075497999962, 50.6188963190001 ], [ -119.962072569, 50.618918086000072 ], [ -119.962325462999942, 50.618931823000025 ], [ -119.962499215999941, 50.617640604000037 ], [ -119.968134411999969, 50.617946550000113 ], [ -119.967995227999921, 50.618981863000045 ], [ -119.970305212999975, 50.619107193000062 ], [ -119.970058108, 50.62094582900005 ], [ -119.973133646999969, 50.62111261900003 ], [ -119.972967571999959, 50.622348873000114 ], [ -119.970504114, 50.622180062000055 ], [ -119.969926143999899, 50.62214046499999 ], [ -119.969915812999943, 50.622139743000105 ], [ -119.96667098599994, 50.621917293000102 ], [ -119.96600721, 50.621930560000045 ], [ -119.96597759399998, 50.621931154000087 ], [ -119.965483193999944, 50.621941018000051 ], [ -119.965348253999977, 50.621943716000033 ], [ -119.963169000999969, 50.621987205000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "51.4", "sL_BldgLoss": "51.4", "sL_StrLoss": "51.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005685611B8CF45DC0729A2E594F4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.818012886999966, 50.61374754600012 ], [ -119.818016278999906, 50.613722917000096 ], [ -119.817597773999978, 50.613699635000032 ], [ -119.818090989999945, 50.610119951000051 ], [ -119.81873548599999, 50.610155804000087 ], [ -119.818803157999952, 50.609664554000084 ], [ -119.818823392999946, 50.609517666000066 ], [ -119.820566155999956, 50.609614598000093 ], [ -119.822373124999942, 50.609715071000018 ], [ -119.822621740000031, 50.60972889300006 ], [ -119.824456582999943, 50.609830881000072 ], [ -119.824386569999916, 50.610339588000031 ], [ -119.823963877999958, 50.613410595000154 ], [ -119.823737835999935, 50.613398032000134 ], [ -119.82364660199994, 50.614060800000061 ], [ -119.818012886999966, 50.61374754600012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5831417", "BldgCostT": "4021667", "sL_LossRatio": "1", "sL_AssetLoss": "475.7", "sL_BldgLoss": "475.7", "sL_StrLoss": "475.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2C034B1A5F35DC0220AFBB03D4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.80062921299999, 50.623163550000037 ], [ -119.800679135999943, 50.622802323000052 ], [ -119.800512833999932, 50.62279304700008 ], [ -119.800849299, 50.62035838400007 ], [ -119.795425135999935, 50.620055712000067 ], [ -119.795920186000018, 50.616476154000033 ], [ -119.800931541999944, 50.616755802000071 ], [ -119.801158036999979, 50.615116572000105 ], [ -119.806791805999964, 50.615430678000102 ], [ -119.806557982999891, 50.617124480000044 ], [ -119.811054741999897, 50.617374984000058 ], [ -119.811103297, 50.617023005000057 ], [ -119.81111272899993, 50.617023531000086 ], [ -119.811173317999987, 50.616584306000057 ], [ -119.811302465999972, 50.616591498000098 ], [ -119.811326522999934, 50.616417110000029 ], [ -119.811953072, 50.616451998000066 ], [ -119.811995509, 50.616144325000036 ], [ -119.817629482999948, 50.616457882000049 ], [ -119.81761933199999, 50.616531537000121 ], [ -119.818412561999978, 50.616575660000137 ], [ -119.81791930199995, 50.620155318000037 ], [ -119.817852966999922, 50.620151629000112 ], [ -119.817712949999972, 50.621167621000041 ], [ -119.816567039999924, 50.621103877000046 ], [ -119.81656399799999, 50.621125947000124 ], [ -119.816037940999962, 50.621096681000054 ], [ -119.816000088999928, 50.62137126000006 ], [ -119.815814327999988, 50.621360924000015 ], [ -119.815708017999981, 50.622132065000052 ], [ -119.810073346999957, 50.621818412000081 ], [ -119.810179136999977, 50.62105173700013 ], [ -119.806823944999948, 50.620864833000056 ], [ -119.806771780999938, 50.621242673000012 ], [ -119.806574098999974, 50.621231658000056 ], [ -119.806263986999937, 50.623477680000114 ], [ -119.80062921299999, 50.623163550000037 ] ], [ [ -119.801371469999935, 50.619233778000115 ], [ -119.801439769999945, 50.618739461000096 ], [ -119.80128599199999, 50.618730884000072 ], [ -119.801217689999973, 50.619225201000084 ], [ -119.801371469999935, 50.619233778000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "236", "sL_BldgLoss": "236", "sL_StrLoss": "236", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001095E3A1F1F75DC06382B7934A4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.86870210599993, 50.622855521000091 ], [ -119.868728770999951, 50.622660429000113 ], [ -119.868458411999896, 50.622645516000055 ], [ -119.868508344999981, 50.622280198000027 ], [ -119.86835453399999, 50.622271713000053 ], [ -119.868744026999977, 50.61942194100007 ], [ -119.86884380399998, 50.618691842000075 ], [ -119.868915963999896, 50.618695823000074 ], [ -119.868978823999925, 50.618235845000058 ], [ -119.869476560999942, 50.61826329900002 ], [ -119.869532221999975, 50.617855956000085 ], [ -119.874768693999926, 50.61814466400007 ], [ -119.875091299999895, 50.615781580000068 ], [ -119.880725666999965, 50.616091947000015 ], [ -119.880254398999952, 50.619547049000083 ], [ -119.880237370999936, 50.619671881000066 ], [ -119.875478848999947, 50.619409780000062 ], [ -119.875019820999981, 50.622771994000104 ], [ -119.874669804999925, 50.622752707000068 ], [ -119.874640216999964, 50.622969403000091 ], [ -119.87436625, 50.622954306000096 ], [ -119.87433731499999, 50.623166209000111 ], [ -119.86870210599993, 50.622855521000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "1", "sL_AssetLoss": "529.7", "sL_BldgLoss": "529.7", "sL_StrLoss": "529.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C564BB8CECF35DC06571B5044F544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.803983915999979, 50.663189569000089 ], [ -119.803962835999968, 50.663073120000071 ], [ -119.80397052, 50.662965010000057 ], [ -119.80392173200002, 50.662858232000126 ], [ -119.803953939999971, 50.662686553000121 ], [ -119.803949116999959, 50.662605706000072 ], [ -119.803945895999945, 50.662551819000079 ], [ -119.803954708999953, 50.662461647000043 ], [ -119.803949903999964, 50.662380822000038 ], [ -119.803945571999947, 50.662308966000133 ], [ -119.803955984999973, 50.662245755000058 ], [ -119.80396316299999, 50.662128633000059 ], [ -119.803958336999926, 50.662047786000102 ], [ -119.803954062999964, 50.661975941000016 ], [ -119.803961763999965, 50.661867800000088 ], [ -119.80396731899998, 50.661723751000068 ], [ -119.803978260999941, 50.661669518000117 ], [ -119.803925143999919, 50.661490884000067 ], [ -119.803920867999921, 50.661419041000016 ], [ -119.80390299, 50.661356512000047 ], [ -119.803884569999951, 50.661284978000062 ], [ -119.803852568999986, 50.661222785000113 ], [ -119.803820038999959, 50.661151611000022 ], [ -119.803785343999948, 50.66104451000006 ], [ -119.803767978999957, 50.660990936000083 ], [ -119.803734691999935, 50.66086794800006 ], [ -119.803814437999932, 50.660291139000137 ], [ -119.804955976999935, 50.660354712000135 ], [ -119.805033113999968, 50.659796665000101 ], [ -119.807158439999952, 50.65991499600004 ], [ -119.807176931999933, 50.65978117300007 ], [ -119.80711915099999, 50.659777956000049 ], [ -119.807281995999944, 50.658599401000039 ], [ -119.803546925999953, 50.658391415000047 ], [ -119.802412678999971, 50.658328230000031 ], [ -119.802447711999903, 50.65807488600008 ], [ -119.801922379999951, 50.658045617000049 ], [ -119.801972370999962, 50.65768412400007 ], [ -119.801837603999942, 50.657676615000085 ], [ -119.802332557999989, 50.654097190000066 ], [ -119.804607741999945, 50.654223936000058 ], [ -119.80797122200002, 50.6544112220001 ], [ -119.807921283999974, 50.654772719000043 ], [ -119.808056042999922, 50.654780221000131 ], [ -119.808024595999925, 50.655007865000087 ], [ -119.808720538000017, 50.655046603000045 ], [ -119.808591519999936, 50.655980639000113 ], [ -119.80980919299999, 50.656048407000064 ], [ -119.80999318899994, 50.654716068000035 ], [ -119.810270584999955, 50.654731505000036 ], [ -119.81028038, 50.65466057500003 ], [ -119.815919169999958, 50.654974205000087 ], [ -119.81591897299991, 50.654975641000085 ], [ -119.816686045999958, 50.655018283000047 ], [ -119.816649462999976, 50.655283480000044 ], [ -119.816737662000023, 50.655288382000045 ], [ -119.81669134699996, 50.65562412900006 ], [ -119.819773286999919, 50.655795400000088 ], [ -119.819760892999938, 50.655885284000078 ], [ -119.82099905299998, 50.655954066000113 ], [ -119.820929013999972, 50.656462126000072 ], [ -119.820505565999952, 50.659533567000025 ], [ -119.819843087999985, 50.659496766000117 ], [ -119.819826374999963, 50.659617968000106 ], [ -119.819879243999978, 50.659620905000054 ], [ -119.819555305000023, 50.661970029000081 ], [ -119.819226865999923, 50.661981066000088 ], [ -119.818871698999928, 50.66199299100002 ], [ -119.818478078999959, 50.662057097000122 ], [ -119.818120984999894, 50.662227990000133 ], [ -119.817144704999919, 50.66223369100004 ], [ -119.816582488999956, 50.662067098000072 ], [ -119.816243193, 50.662048601000059 ], [ -119.814103908, 50.662495802000066 ], [ -119.812983901999957, 50.662702302000092 ], [ -119.812148898999965, 50.662735847000064 ], [ -119.812164223, 50.662827410000077 ], [ -119.812317188999913, 50.663077591000146 ], [ -119.812351912999958, 50.66312029900007 ], [ -119.812355577999966, 50.663124830000115 ], [ -119.812744691999981, 50.663603713000043 ], [ -119.812008579999898, 50.663305695000091 ], [ -119.811564908999912, 50.663175504000058 ], [ -119.811273603999979, 50.663137571000092 ], [ -119.81096052499997, 50.663096802000034 ], [ -119.810629295999917, 50.663100258000043 ], [ -119.810586354999927, 50.663100693000047 ], [ -119.808612818999919, 50.6631213040001 ], [ -119.808598843999931, 50.663122938000072 ], [ -119.807158581999886, 50.663291099000027 ], [ -119.806833522999952, 50.663262548000056 ], [ -119.806759491999969, 50.66325604900009 ], [ -119.806396149999941, 50.663224140000032 ], [ -119.806317659999948, 50.663217259000092 ], [ -119.806175977999899, 50.663204808000074 ], [ -119.805768651999927, 50.663214329000034 ], [ -119.805423417999947, 50.663222407000056 ], [ -119.805231317999969, 50.663249311000079 ], [ -119.805229085999926, 50.663249634000152 ], [ -119.805142298999925, 50.663261791000174 ], [ -119.804857214999942, 50.663292533000082 ], [ -119.804742579, 50.663333192000024 ], [ -119.80465828799997, 50.663344231000046 ], [ -119.804546308999932, 50.663364909000123 ], [ -119.804462052999938, 50.663375936000079 ], [ -119.804265819999969, 50.663407640000088 ], [ -119.804138091999945, 50.66340172700005 ], [ -119.803989665999936, 50.663346602000047 ], [ -119.803978887999932, 50.663342597000081 ], [ -119.803988738999962, 50.663270416000017 ], [ -119.803983915999979, 50.663189569000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "105", "sL_BldgLoss": "105", "sL_StrLoss": "105", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B83EAC37EAF15DC0355439AB0D524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.776599194999932, 50.639208508000081 ], [ -119.77613332599999, 50.638491824000077 ], [ -119.77646365399994, 50.638510314000023 ], [ -119.776464868999952, 50.638501557000041 ], [ -119.782101396999934, 50.638816903000127 ], [ -119.782045037999964, 50.639223320000049 ], [ -119.783029694999954, 50.63927837900011 ], [ -119.782533365999953, 50.642857782000121 ], [ -119.781891182, 50.64282187400007 ], [ -119.781704306000023, 50.644169297000126 ], [ -119.77949388399999, 50.644045673000086 ], [ -119.779467604999979, 50.644235067000075 ], [ -119.778938994999976, 50.643838600000038 ], [ -119.778565061999984, 50.643344473000099 ], [ -119.77811018099996, 50.642743398000086 ], [ -119.777721387, 50.64193449600009 ], [ -119.777535308999973, 50.641165407000052 ], [ -119.777170081999898, 50.640789578000046 ], [ -119.77684329299997, 50.640453288000039 ], [ -119.776658405999967, 50.639971890000041 ], [ -119.776599194999932, 50.639208508000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "287", "sL_BldgLoss": "287", "sL_StrLoss": "287", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4970A7D32F95DC0A38E750EF1524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.886680934999944, 50.651127661000068 ], [ -119.887169059, 50.647547833000083 ], [ -119.889115720999925, 50.647654805000066 ], [ -119.889227909999946, 50.646831679000101 ], [ -119.890167858999959, 50.646883318000093 ], [ -119.890312321999957, 50.645823201000063 ], [ -119.891022102999969, 50.645862190000088 ], [ -119.89117834699999, 50.644715419000093 ], [ -119.892018591999886, 50.644761569000124 ], [ -119.892035514999975, 50.64463733900002 ], [ -119.892635237, 50.644670274000056 ], [ -119.892649691999964, 50.644564152000044 ], [ -119.898287786999958, 50.64487362000007 ], [ -119.898259970999973, 50.645078016000099 ], [ -119.899304068999967, 50.645135294000056 ], [ -119.899276601999929, 50.645337158000046 ], [ -119.900605738999943, 50.645410058000039 ], [ -119.900287765999963, 50.647747369000065 ], [ -119.90011870799998, 50.648989954000079 ], [ -119.898558612999949, 50.648904384000076 ], [ -119.898420824999945, 50.649916821000033 ], [ -119.898122011999973, 50.65003679200008 ], [ -119.89748994699994, 50.650239970000044 ], [ -119.897457200999924, 50.650250496000062 ], [ -119.896145750999949, 50.650178532000083 ], [ -119.896133210999949, 50.650270642000102 ], [ -119.895683926999965, 50.650245987000069 ], [ -119.895678990999926, 50.650282253000086 ], [ -119.895615825999954, 50.650278786000037 ], [ -119.895575702999963, 50.650573454000082 ], [ -119.894407609999973, 50.65050934300011 ], [ -119.894378758999963, 50.650721183000044 ], [ -119.892431952999942, 50.650614303000062 ], [ -119.892319811999968, 50.651437429000048 ], [ -119.888556976999951, 50.651230752000068 ], [ -119.886680934999944, 50.651127661000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "124", "sL_BldgLoss": "124", "sL_StrLoss": "124", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D06507E800FE5DC03BEB2A0F984E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.967613914999959, 50.615352353000048 ], [ -119.967633649999954, 50.615205557000067 ], [ -119.966549048, 50.615146687000106 ], [ -119.966015272999968, 50.615117709000053 ], [ -119.966072823999951, 50.614689735000105 ], [ -119.966206799999981, 50.613693397000091 ], [ -119.96394014399999, 50.613570319000104 ], [ -119.96322977899996, 50.613531736000063 ], [ -119.963265823999961, 50.613263807000102 ], [ -119.96332491699998, 50.61282455 ], [ -119.962637708999978, 50.612787221000112 ], [ -119.962762469000012, 50.611859901000031 ], [ -119.963311792999917, 50.612044409000084 ], [ -119.96443441699995, 50.612348796000092 ], [ -119.964991771999934, 50.61247655600009 ], [ -119.965368637999958, 50.612562906000058 ], [ -119.967574200999977, 50.613068405000057 ], [ -119.968034064999983, 50.613100990000099 ], [ -119.968985286999953, 50.613168391000045 ], [ -119.969483560999961, 50.613220363000011 ], [ -119.969850120999965, 50.613258613000035 ], [ -119.972791989999976, 50.613117898000063 ], [ -119.973581836999969, 50.613178790000127 ], [ -119.973248859999956, 50.615658041000124 ], [ -119.967613914999959, 50.615352353000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "129", "sL_BldgLoss": "129", "sL_StrLoss": "129", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000FF40EBF74FA5DC090D6DEC8384B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.915959847999943, 50.59016688400002 ], [ -119.91609811499994, 50.589146551000042 ], [ -119.915746311999968, 50.589127280000085 ], [ -119.915847322999952, 50.588381890000051 ], [ -119.91038118699997, 50.588082335000152 ], [ -119.910393501999977, 50.587991538000026 ], [ -119.910176285999938, 50.587979629000124 ], [ -119.910212757999915, 50.587710734000076 ], [ -119.907364912999981, 50.587554553000068 ], [ -119.907379512999952, 50.587446971000119 ], [ -119.907244215999981, 50.587439550000063 ], [ -119.907475281999922, 50.585736726000064 ], [ -119.905931288999952, 50.585652018000111 ], [ -119.906001807999957, 50.585132447000078 ], [ -119.905977626999913, 50.585131120000021 ], [ -119.906211850999981, 50.583405298000095 ], [ -119.906530026999945, 50.583525454000053 ], [ -119.906550033999949, 50.583533014000174 ], [ -119.906630965999923, 50.583563580000025 ], [ -119.906637432999986, 50.583566008000091 ], [ -119.906854744999976, 50.583648074000095 ], [ -119.907328326999917, 50.5839202270001 ], [ -119.907822098999972, 50.584460096000022 ], [ -119.907823513999944, 50.584461643000026 ], [ -119.9084805299999, 50.58517998300001 ], [ -119.909434698, 50.586060081 ], [ -119.909794458999968, 50.58626196000003 ], [ -119.910172229999944, 50.586404407 ], [ -119.911616020999958, 50.586654881000072 ], [ -119.91289305399998, 50.586963843000106 ], [ -119.914286203999936, 50.587179939000052 ], [ -119.91579996199998, 50.587542393000085 ], [ -119.917295571999929, 50.587714472000123 ], [ -119.917714031999935, 50.58781856600006 ], [ -119.918901446999939, 50.588255826000058 ], [ -119.918910153999946, 50.5882590370001 ], [ -119.918999107999937, 50.588291788000078 ], [ -119.919409980999959, 50.588443126000094 ], [ -119.922127569999986, 50.590361241 ], [ -119.92161054599994, 50.590332948000082 ], [ -119.921591287999917, 50.590475194000071 ], [ -119.915959847999943, 50.59016688400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "159.5", "sL_BldgLoss": "159.5", "sL_StrLoss": "159.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F37FDCB864EC5DC04E761A067F4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.692570054999976, 50.614762379000084 ], [ -119.692589728, 50.614622460000156 ], [ -119.691041553999938, 50.614534570000075 ], [ -119.691029587999935, 50.614533890000068 ], [ -119.688673348999927, 50.614400086000117 ], [ -119.688904772999976, 50.612755033000084 ], [ -119.689176830999941, 50.610820981000082 ], [ -119.694122234999966, 50.611101761000086 ], [ -119.69480927499994, 50.611140751000022 ], [ -119.694705312999957, 50.611880485000079 ], [ -119.698621501999952, 50.612102648000118 ], [ -119.698118756999946, 50.615681789000085 ], [ -119.692485721000011, 50.615362188000027 ], [ -119.692570054999976, 50.614762379000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "55.4", "sL_BldgLoss": "55.4", "sL_StrLoss": "55.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B4772B7B3F75DC0FE5C1BC79B544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.867836007999955, 50.663453819000068 ], [ -119.867905781999966, 50.662943868000077 ], [ -119.867235122999944, 50.662906903000071 ], [ -119.867504893999936, 50.660935367000015 ], [ -119.867632809999947, 50.660000474000057 ], [ -119.867724924999905, 50.659327211000097 ], [ -119.868769911999919, 50.659384806000055 ], [ -119.868776678999922, 50.659335335000044 ], [ -119.870038885999961, 50.659404889000093 ], [ -119.874416462999989, 50.659646005000091 ], [ -119.874219265999926, 50.661088855000109 ], [ -119.87394311299991, 50.661178390000117 ], [ -119.87296178299999, 50.661337905000046 ], [ -119.872253199999975, 50.661544392000081 ], [ -119.872256283999903, 50.661652305000096 ], [ -119.872264993999977, 50.661957386000033 ], [ -119.87171790799998, 50.662276390000066 ], [ -119.870945512999924, 50.662611092000169 ], [ -119.869369, 50.662747903000138 ], [ -119.868708531000024, 50.663120737000078 ], [ -119.868385101999962, 50.663303303000127 ], [ -119.867903599, 50.663457544000131 ], [ -119.867836007999955, 50.663453819000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "130", "sL_BldgLoss": "130", "sL_StrLoss": "130", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CACA7987BFA5DC070308AD4EA4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.911220645999933, 50.591159557000054 ], [ -119.916852177999914, 50.59146810600005 ], [ -119.916367023999968, 50.595048305000105 ], [ -119.91073504799999, 50.594739732000058 ], [ -119.911220645999933, 50.591159557000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "249", "sL_BldgLoss": "249", "sL_StrLoss": "249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1664BF31AF75DC09814A3D7344F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.855611160999956, 50.620946765000049 ], [ -119.855628731999943, 50.620818470000053 ], [ -119.855556269, 50.620814464000027 ], [ -119.855576979999952, 50.620663250000064 ], [ -119.855358271999961, 50.620651158000079 ], [ -119.855380830999962, 50.620486464000109 ], [ -119.855326481999924, 50.620483459000091 ], [ -119.855330757999951, 50.620452244000049 ], [ -119.855209780999971, 50.620445556000057 ], [ -119.855341569999922, 50.619483374 ], [ -119.855700077, 50.616865735000019 ], [ -119.85988407499994, 50.617096965000037 ], [ -119.860017032999977, 50.616125433000015 ], [ -119.865651337999964, 50.616436562000104 ], [ -119.865651123999939, 50.616438125000052 ], [ -119.865923427999945, 50.616453154000041 ], [ -119.865901584999932, 50.616612917000062 ], [ -119.866063434999944, 50.616621850000065 ], [ -119.866040526999967, 50.616789402000087 ], [ -119.866240639999958, 50.61680044600007 ], [ -119.866209681999976, 50.617026889000066 ], [ -119.866569345999949, 50.61704673800002 ], [ -119.86622283299999, 50.619581302000078 ], [ -119.86607991299999, 50.620626606000087 ], [ -119.865780864, 50.620610102000065 ], [ -119.865710526000015, 50.621124513000083 ], [ -119.861297657999941, 50.620880886000101 ], [ -119.86124603899998, 50.621258116000092 ], [ -119.855611160999956, 50.620946765000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "1", "sL_AssetLoss": "151.3", "sL_BldgLoss": "151.3", "sL_StrLoss": "151.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F9A05B98FF35DC0D39432E34C524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.800463657999927, 50.645891000000113 ], [ -119.800528222999972, 50.645424081000066 ], [ -119.800004575999978, 50.645394889000116 ], [ -119.800499539999961, 50.641815419000068 ], [ -119.800971144999963, 50.641841710000051 ], [ -119.801153884999934, 50.640519932000068 ], [ -119.804634718999964, 50.640713921000092 ], [ -119.804742462999982, 50.639934113000088 ], [ -119.804874747999989, 50.639941483000015 ], [ -119.80487935799998, 50.639908115000061 ], [ -119.810516259999972, 50.640222025000099 ], [ -119.810509754999927, 50.640269156000102 ], [ -119.810643859999928, 50.640276621000069 ], [ -119.810600821999941, 50.640588416000092 ], [ -119.810886472999954, 50.64060431500009 ], [ -119.810842325999928, 50.64092414200006 ], [ -119.81113458699997, 50.640940408000048 ], [ -119.811124717999988, 50.641011918000068 ], [ -119.811246687999954, 50.641018706000111 ], [ -119.811238456999945, 50.641078342000078 ], [ -119.811334789999975, 50.641083703000056 ], [ -119.811317232999954, 50.641210909000037 ], [ -119.811516491999896, 50.641221998000084 ], [ -119.811022411999915, 50.644801520000023 ], [ -119.810378422999975, 50.644765679000038 ], [ -119.810363189, 50.644876035000109 ], [ -119.810239992999968, 50.644869178000093 ], [ -119.810217590999954, 50.645031439 ], [ -119.806293609999983, 50.644812963000064 ], [ -119.806101279999965, 50.64620513000002 ], [ -119.800463657999927, 50.645891000000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "117.7", "sL_BldgLoss": "117.7", "sL_StrLoss": "117.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDA434381DFD5DC06DA23B2DE44D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.954170378999947, 50.611640491000045 ], [ -119.954496554999963, 50.609219354000054 ], [ -119.953498920999948, 50.609165078000039 ], [ -119.953540406999977, 50.608857176000072 ], [ -119.953273835999951, 50.608842672000037 ], [ -119.953284101999955, 50.608766478000128 ], [ -119.953238038999956, 50.608763971000023 ], [ -119.953257212999986, 50.608621672000055 ], [ -119.952950140999974, 50.608604964000037 ], [ -119.953104742, 50.607457576000087 ], [ -119.952521804999904, 50.607425854000013 ], [ -119.952523486999965, 50.607413375000128 ], [ -119.951668278999989, 50.607366831000022 ], [ -119.95174126399999, 50.60682527200003 ], [ -119.95055137899999, 50.606760502000085 ], [ -119.950579339999962, 50.606553062000039 ], [ -119.95034668699995, 50.606540396000049 ], [ -119.950378451999939, 50.606304733000059 ], [ -119.950138895999942, 50.606291691000081 ], [ -119.950496982999979, 50.603635115000031 ], [ -119.950985319999958, 50.603994246000127 ], [ -119.951846811999928, 50.604563576000054 ], [ -119.952278880999955, 50.604849101000127 ], [ -119.95245012299992, 50.604927535000115 ], [ -119.95372869199997, 50.605513150000021 ], [ -119.954231260999933, 50.605879519000084 ], [ -119.954420874999968, 50.606054792000052 ], [ -119.954659430999982, 50.606275331000091 ], [ -119.95535506399996, 50.606918366000052 ], [ -119.955393957, 50.606954336000094 ], [ -119.956058585999955, 50.607568719000042 ], [ -119.95626254099993, 50.607757229000043 ], [ -119.957184431999906, 50.609340113 ], [ -119.957290088999983, 50.609448165000117 ], [ -119.957661481999963, 50.609827974000069 ], [ -119.957693744999958, 50.609860938000025 ], [ -119.957753879999956, 50.609922470000114 ], [ -119.957886557999956, 50.610058119000016 ], [ -119.958112660999959, 50.610178723000047 ], [ -119.958375398999948, 50.610318885000048 ], [ -119.958716596000031, 50.61050086400008 ], [ -119.962075815999981, 50.611629262000079 ], [ -119.961670358999953, 50.611607233000058 ], [ -119.96163964099999, 50.611835518000092 ], [ -119.959832968999962, 50.611737341000065 ], [ -119.959804766999952, 50.611946861000078 ], [ -119.957989808999969, 50.611848204000133 ], [ -119.954170378999947, 50.611640491000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14036000", "BldgCostT": "9680000", "sL_LossRatio": "0.999997699990589", "sL_AssetLoss": "1560.3414418", "sL_BldgLoss": "1560.337853", "sL_StrLoss": "1560.300113", "sL_NStrLoss": "0.03774", "sL_ContLoss": "0.0035888", "geom_point": "0101000020E6100000C2BC3235AAFD5DC0B3047C2BD0524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.955482403999952, 50.653001985000095 ], [ -119.954470081999901, 50.652623200000114 ], [ -119.953795499999956, 50.65225429900007 ], [ -119.95307969, 50.651695995000082 ], [ -119.952929154999978, 50.65163387600002 ], [ -119.952034, 50.65126449200006 ], [ -119.950549194999965, 50.650797304000015 ], [ -119.949110426999979, 50.650519512000095 ], [ -119.948041506999942, 50.650313109000095 ], [ -119.946686689999979, 50.649927128000172 ], [ -119.946096915999973, 50.649759096000103 ], [ -119.945786218999942, 50.6497490940001 ], [ -119.94568460699999, 50.649652438000075 ], [ -119.945408874999941, 50.649390194000063 ], [ -119.945291876999988, 50.649353264000062 ], [ -119.944298780999958, 50.649039797000057 ], [ -119.943539887999918, 50.648897412000075 ], [ -119.94343822799999, 50.648897412000075 ], [ -119.943455934999946, 50.648766330000122 ], [ -119.942568188999957, 50.64874302000009 ], [ -119.94261173699995, 50.648072628000044 ], [ -119.94262069199999, 50.647934799000041 ], [ -119.943540796999955, 50.647958957000107 ], [ -119.943564911999928, 50.647959591000102 ], [ -119.943663134, 50.647232438000067 ], [ -119.947745233999981, 50.647454633000116 ], [ -119.947809938999924, 50.646456846000063 ], [ -119.947827739, 50.64618235500005 ], [ -119.947957312, 50.646185752000065 ], [ -119.947990085999947, 50.645942943000072 ], [ -119.947750067999962, 50.645929884000076 ], [ -119.945655542999958, 50.645815890000108 ], [ -119.94613891299997, 50.642235782000178 ], [ -119.94786597800001, 50.6423297810001 ], [ -119.95018104799999, 50.642455739000077 ], [ -119.95177708199999, 50.642542547000104 ], [ -119.951735578999887, 50.64285024800008 ], [ -119.951719484999927, 50.642969566000048 ], [ -119.952163406999929, 50.642993706000048 ], [ -119.952211895999966, 50.642634189000063 ], [ -119.952046549000016, 50.642625197 ], [ -119.951838185999947, 50.64261386600009 ], [ -119.951937428999898, 50.641878058000046 ], [ -119.951737131999963, 50.641867165000114 ], [ -119.951881542999971, 50.640796460000082 ], [ -119.952186061999939, 50.638538504000081 ], [ -119.95221997499999, 50.638287015000095 ], [ -119.957857690999944, 50.63859347300005 ], [ -119.957821616999979, 50.638861222000124 ], [ -119.958087502999945, 50.63887566700005 ], [ -119.957808527999944, 50.640946255000038 ], [ -119.960180775999945, 50.641075115000064 ], [ -119.95999222799999, 50.642474982000103 ], [ -119.959927058999966, 50.64295880800006 ], [ -119.960216303999943, 50.642974516000081 ], [ -119.960034438999955, 50.644324709000024 ], [ -119.96138945899996, 50.644398287000051 ], [ -119.961290707999979, 50.645131558000131 ], [ -119.961313410999978, 50.645132790000055 ], [ -119.96125915099999, 50.645535697000078 ], [ -119.963087381, 50.64563494300009 ], [ -119.963050636999981, 50.64590785200005 ], [ -119.966815676999914, 50.646112142000078 ], [ -119.966333912999971, 50.649692322000064 ], [ -119.965295648999984, 50.649635999000061 ], [ -119.965263275999931, 50.649876508000027 ], [ -119.965415522999962, 50.649880476000071 ], [ -119.965401479999954, 50.650098272000015 ], [ -119.965398151999949, 50.650149889000069 ], [ -119.9663692, 50.650175192000098 ], [ -119.967158734999984, 50.650155076000047 ], [ -119.967520753999963, 50.650145849000069 ], [ -119.967522893999941, 50.65011268100006 ], [ -119.96753429899999, 50.649935678000077 ], [ -119.967870231999925, 50.649944428000026 ], [ -119.967888482999967, 50.649808771000018 ], [ -119.967976371999924, 50.649155505000046 ], [ -119.971744577999957, 50.649359783000079 ], [ -119.972664985999955, 50.64940966000011 ], [ -119.972655138, 50.649253739000088 ], [ -119.972652083999918, 50.649205371000065 ], [ -119.972902484999949, 50.649198978000044 ], [ -119.973049711999977, 50.648103719000069 ], [ -119.973899464999988, 50.648149759000027 ], [ -119.973935688000012, 50.647880239000123 ], [ -119.978262877999953, 50.648114584000091 ], [ -119.978266653999952, 50.648055789000054 ], [ -119.978522132999927, 50.648062420000052 ], [ -119.978516668999987, 50.647976048000096 ], [ -119.978696515999985, 50.647971447000046 ], [ -119.978707689999979, 50.647797370000063 ], [ -119.978930169999927, 50.647803143000026 ], [ -119.978923374999951, 50.647695779000131 ], [ -119.979139011999948, 50.647690263000079 ], [ -119.979166014999961, 50.647269533000021 ], [ -119.979589751999939, 50.647280525000106 ], [ -119.97960704, 50.647011109000097 ], [ -119.980030772999939, 50.647022101000033 ], [ -119.980048059999916, 50.646752684000035 ], [ -119.980137135999939, 50.64675499600002 ], [ -119.980126406999887, 50.64658554400004 ], [ -119.980483805999981, 50.646576395000068 ], [ -119.980489075999984, 50.646494258000111 ], [ -119.980912804999946, 50.646505246000046 ], [ -119.980930084999954, 50.646235829000013 ], [ -119.981353812999927, 50.64624681700009 ], [ -119.981366106999971, 50.646055103000087 ], [ -119.981363513999938, 50.646014147000052 ], [ -119.981368743999965, 50.646014013000091 ], [ -119.981371090999943, 50.645977399000074 ], [ -119.98178629599991, 50.645988164000102 ], [ -119.981765254999956, 50.645655998000031 ], [ -119.978855248999977, 50.645498505000084 ], [ -119.97884603599999, 50.645642041000031 ], [ -119.978368193999941, 50.645629641000042 ], [ -119.978380278999964, 50.64582063400011 ], [ -119.977985065999988, 50.645830744000087 ], [ -119.977981296999985, 50.645889465000053 ], [ -119.976843690999914, 50.645859931000103 ], [ -119.975837837999947, 50.645885644000039 ], [ -119.975802917999943, 50.645333286000081 ], [ -119.975786738999915, 50.645077361000077 ], [ -119.976077267999983, 50.645069935000095 ], [ -119.976161912999927, 50.645144704000046 ], [ -119.97647541799995, 50.645295093000094 ], [ -119.97664439499998, 50.645337593000122 ], [ -119.977069704999948, 50.645342597000138 ], [ -119.977284413999939, 50.645306560000115 ], [ -119.977533455999975, 50.645264767000072 ], [ -119.978682109, 50.645072004000063 ], [ -119.979363820999978, 50.645075724000044 ], [ -119.980620354999985, 50.645082580000071 ], [ -119.982165494999933, 50.645090997000068 ], [ -119.982321167999913, 50.645110649000081 ], [ -119.982541097999956, 50.645138409000076 ], [ -119.982876203999979, 50.645233198000049 ], [ -119.983144619999933, 50.645360405000091 ], [ -119.983537101999971, 50.645652113000054 ], [ -119.983639721999964, 50.645493268000088 ], [ -119.983641303999917, 50.645406599000111 ], [ -119.983627234999972, 50.645309658000031 ], [ -119.983619412999985, 50.645158406000036 ], [ -119.983591175999962, 50.645061697000131 ], [ -119.983548665999962, 50.644965082000112 ], [ -119.98349325599996, 50.64487898100009 ], [ -119.983446095999966, 50.644750145000017 ], [ -119.983421120999964, 50.644577782000056 ], [ -119.983383174999958, 50.64451327100015 ], [ -119.983339089, 50.644405897000077 ], [ -119.983296561999936, 50.644309258000092 ], [ -119.983268342999907, 50.6442125720001 ], [ -119.983235405999949, 50.644083574000028 ], [ -119.983186706999916, 50.643943968000038 ], [ -119.983156892999915, 50.643836499000038 ], [ -119.983074930999962, 50.643664707000092 ], [ -119.983048238999984, 50.643578769000023 ], [ -119.983018461, 50.643471290000065 ], [ -119.982996574999973, 50.643320471000095 ], [ -119.982991894999913, 50.643190773000057 ], [ -119.98299347699999, 50.643104104000017 ], [ -119.983022797999951, 50.643015863000116 ], [ -119.983041364999934, 50.642949897000094 ], [ -119.983058383999918, 50.642873278000096 ], [ -119.98306306899994, 50.642808113000036 ], [ -119.983092391999932, 50.642719873000054 ], [ -119.98310788400002, 50.642632504000119 ], [ -119.983191659999974, 50.642539080000041 ], [ -119.983293521999926, 50.642484213000053 ], [ -119.983531663999884, 50.642480583000108 ], [ -119.983568992999935, 50.6425578590001 ], [ -119.983566011, 50.64260815600003 ], [ -119.983549270999958, 50.642651504000042 ], [ -119.983514521999908, 50.642759818000037 ], [ -119.983496947, 50.64281756600009 ], [ -119.983478535999922, 50.642889718000049 ], [ -119.983516273999953, 50.642959751000056 ], [ -119.983541255999967, 50.643008839000061 ], [ -119.983606746999939, 50.643069404000052 ], [ -119.983673021999934, 50.643107465000057 ], [ -119.983766163999988, 50.643142300000115 ], [ -119.983952511999931, 50.643188193000114 ], [ -119.984084745999922, 50.643184276000099 ], [ -119.984216050999933, 50.643162741000054 ], [ -119.984346031999962, 50.643122880000092 ], [ -119.984541723999953, 50.643072361000087 ], [ -119.984637731999982, 50.643053085000133 ], [ -119.984359406999943, 50.645127807000108 ], [ -119.98453082499995, 50.645123412000025 ], [ -119.984812782999924, 50.64302155399999 ], [ -119.985002143, 50.64301435500002 ], [ -119.985135122999949, 50.643035600000076 ], [ -119.985254875999928, 50.643074773000045 ], [ -119.98556097599996, 50.64315192100004 ], [ -119.985746520999967, 50.643156685000072 ], [ -119.985852109999897, 50.643148319000041 ], [ -119.986196244999974, 50.643144948000071 ], [ -119.986315336999951, 50.643143124000112 ], [ -119.986604761999956, 50.64310467100011 ], [ -119.986828492999933, 50.643076957000112 ], [ -119.986934043999952, 50.643068601000031 ], [ -119.98702533499997, 50.643044411000126 ], [ -119.98714131399997, 50.642997152000127 ], [ -119.987297554999941, 50.642953069000058 ], [ -119.987534479999937, 50.642923211000024 ], [ -119.987758207999931, 50.642895494000101 ], [ -119.987929454999943, 50.642876397000123 ], [ -119.988126932999975, 50.642852978000157 ], [ -119.988311733, 50.642840551000099 ], [ -119.988417303999924, 50.642832160000111 ], [ -119.988496916999964, 50.642836612000139 ], [ -119.98860282899993, 50.642836896000098 ], [ -119.988747293999921, 50.642813166000025 ], [ -119.988826906999961, 50.642817619000091 ], [ -119.988881135999947, 50.64280872100003 ], [ -119.988951044999936, 50.64281250000009 ], [ -119.989091769999959, 50.642901623000135 ], [ -119.989145220999916, 50.642929333000055 ], [ -119.989211801999886, 50.642972988000118 ], [ -119.989249665999949, 50.643042871000048 ], [ -119.989247053999989, 50.643087256000115 ], [ -119.989229347999952, 50.643148507000028 ], [ -119.989183631999978, 50.6431978600001 ], [ -119.989101383999966, 50.643392670000054 ], [ -119.988950329999966, 50.643528395000011 ], [ -119.989029916000021, 50.643587949000107 ], [ -119.989012822999982, 50.643638066000108 ], [ -119.98903859699999, 50.643675221000109 ], [ -119.98909206899998, 50.643702897000068 ], [ -119.989226409999972, 50.643733931000043 ], [ -119.989333369999912, 50.643789307000041 ], [ -119.98919473799999, 50.643833494 ], [ -119.989117848, 50.643888630000042 ], [ -119.989085855999917, 50.643944461000061 ], [ -119.989058170999911, 50.643986387000027 ], [ -119.989021742999952, 50.644056132000074 ], [ -119.988999613999979, 50.644125633000073 ], [ -119.988960968999947, 50.644202363000041 ], [ -119.988938765999976, 50.644271886000077 ], [ -119.988937190999948, 50.644320019000119 ], [ -119.988905159999959, 50.644375862000103 ], [ -119.988877341999938, 50.644463028000075 ], [ -119.988787730999888, 50.644464355000061 ], [ -119.988246174999944, 50.644472293 ], [ -119.987440097999936, 50.644532399000077 ], [ -119.987257241999941, 50.644558619000087 ], [ -119.98733415199996, 50.644609629000065 ], [ -119.987606170999968, 50.644784831000145 ], [ -119.988016315999943, 50.645058176000084 ], [ -119.988704919999947, 50.645528455000075 ], [ -119.989294101000013, 50.645898205000087 ], [ -119.989913572999924, 50.646287487000059 ], [ -119.990820438999961, 50.646871529000066 ], [ -119.991138308999965, 50.647066353000135 ], [ -119.991200110999941, 50.647103215000058 ], [ -119.991564117999971, 50.647320316000105 ], [ -119.992772902999917, 50.64732240100011 ], [ -119.993387436999939, 50.647323444000037 ], [ -119.99465432099997, 50.6473256290001 ], [ -119.995175744, 50.647326502000062 ], [ -119.996282144999952, 50.64732837600009 ], [ -119.99766918899995, 50.64733071400007 ], [ -119.998798775999916, 50.647437288000091 ], [ -119.998826250999912, 50.647439880000093 ], [ -119.99896211399999, 50.647452695000077 ], [ -119.999180739999971, 50.647492941000039 ], [ -119.999214055999957, 50.647979973000076 ], [ -119.999069939999927, 50.647972197000058 ], [ -119.999064725999958, 50.648053971000088 ], [ -119.997790616999936, 50.648021126000081 ], [ -119.994817462999947, 50.648097642000096 ], [ -119.994810026999929, 50.648214096000032 ], [ -119.992553861999951, 50.648155842000094 ], [ -119.991154923999915, 50.648191789000059 ], [ -119.991108275999977, 50.648539867000082 ], [ -119.99024848799999, 50.648552792000046 ], [ -119.988757102999983, 50.648653904000071 ], [ -119.987144399999963, 50.648893196000124 ], [ -119.986865988000019, 50.648957152000044 ], [ -119.985382981999948, 50.648876975000135 ], [ -119.985395947999976, 50.648780326000065 ], [ -119.984508439999928, 50.648757343000092 ], [ -119.984517603999919, 50.648901833000096 ], [ -119.983728972, 50.648922045000155 ], [ -119.98372353499991, 50.649006876000023 ], [ -119.982452275999904, 50.648973937000044 ], [ -119.98243500199996, 50.649243352000042 ], [ -119.982080007000022, 50.649234152000119 ], [ -119.980310387999964, 50.649279462000102 ], [ -119.980298942999966, 50.649457838000046 ], [ -119.979457977999985, 50.649436025000078 ], [ -119.97946651699999, 50.649570920000066 ], [ -119.979388466999964, 50.649572918000032 ], [ -119.979327884999947, 50.650024073000054 ], [ -119.978871003999942, 50.650058212000033 ], [ -119.976727991999951, 50.650409897000046 ], [ -119.974360910999977, 50.650794503000071 ], [ -119.972917390999939, 50.650804391000122 ], [ -119.971139416999947, 50.651300101000082 ], [ -119.969158203999939, 50.651520801000075 ], [ -119.968225717999985, 50.65200359500006 ], [ -119.967324783999928, 50.652330975000091 ], [ -119.967339622999987, 50.652220697000082 ], [ -119.967562337999979, 50.652232774 ], [ -119.967761684999928, 50.650751196000115 ], [ -119.967655915999956, 50.650748442000044 ], [ -119.967668729999957, 50.650951664000104 ], [ -119.967468502999978, 50.650956768000086 ], [ -119.967464857999985, 50.651013330000083 ], [ -119.96636900499999, 50.650984783000062 ], [ -119.965342629999938, 50.651010927000065 ], [ -119.965328661999962, 50.651227537000047 ], [ -119.965082286, 50.651221117000055 ], [ -119.964949922999963, 50.652204411000071 ], [ -119.96731939699994, 50.652332933000075 ], [ -119.966869505999938, 50.652496409000072 ], [ -119.965619681999925, 50.653077498000087 ], [ -119.964466356999978, 50.653468760000081 ], [ -119.964577382999948, 50.652644067000089 ], [ -119.963953900999925, 50.652610239000118 ], [ -119.963948579000018, 50.652649770000032 ], [ -119.96179184499999, 50.652532724000096 ], [ -119.961760490999922, 50.652765520000038 ], [ -119.956384205999939, 50.652473566000076 ], [ -119.956330478999973, 50.652872105000043 ], [ -119.959824004999973, 50.653061847000103 ], [ -119.959793589999975, 50.653287585000029 ], [ -119.957039813999984, 50.653232688000088 ], [ -119.955482403999952, 50.653001985000095 ] ], [ [ -119.952836815999945, 50.647820544000098 ], [ -119.95288828699999, 50.647438919000088 ], [ -119.949720356999961, 50.647266644000162 ], [ -119.94960966, 50.647260623000143 ], [ -119.94961603899999, 50.647362458000039 ], [ -119.949845119999949, 50.647356654000099 ], [ -119.950039804, 50.647351722000046 ], [ -119.950049346999904, 50.647503992000075 ], [ -119.950054741000017, 50.647590046000062 ], [ -119.950204588999966, 50.647593971000063 ], [ -119.950659373999926, 50.647605883000033 ], [ -119.952175519999969, 50.647567452000018 ], [ -119.95218043, 50.647645710000035 ], [ -119.952825118999968, 50.64766258500002 ], [ -119.952814855999961, 50.647821101000034 ], [ -119.952836815999945, 50.647820544000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "170", "sL_BldgLoss": "170", "sL_StrLoss": "170", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B49555E0FDFA5DC045F7E6163E524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.91682586499995, 50.644771401000114 ], [ -119.916839370999966, 50.644671846000037 ], [ -119.915785037999939, 50.644614172000061 ], [ -119.915798620999965, 50.644514067000038 ], [ -119.916270772999951, 50.641034190000077 ], [ -119.918158266999967, 50.641137430000065 ], [ -119.918242517999929, 50.640516234000138 ], [ -119.919843511999929, 50.640603779000038 ], [ -119.919858549999958, 50.640492872000095 ], [ -119.920448388999972, 50.640525119000081 ], [ -119.920522849999927, 50.639975886000109 ], [ -119.920825719999954, 50.639992443000068 ], [ -119.920833738999974, 50.63993329300007 ], [ -119.926471446, 50.64024133800006 ], [ -119.926449894999976, 50.640400467000106 ], [ -119.927600621, 50.640463307000076 ], [ -119.927115792999956, 50.644043342000053 ], [ -119.926733281999972, 50.644022455000048 ], [ -119.926669499999917, 50.644493351000058 ], [ -119.923407250999944, 50.644315160000097 ], [ -119.923395153999977, 50.644404427000076 ], [ -119.922561842999983, 50.64435889400005 ], [ -119.922464152, 50.645079647000038 ], [ -119.920633461999955, 50.644979595000052 ], [ -119.91682586499995, 50.644771401000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "247", "sL_BldgLoss": "247", "sL_StrLoss": "247", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8DEDE7784EB5DC0D873C219364E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.677602897999961, 50.612415760000047 ], [ -119.677698379, 50.611738220000163 ], [ -119.67673260299992, 50.611683262000078 ], [ -119.676970088999951, 50.609998210000093 ], [ -119.677237002999931, 50.608104200000113 ], [ -119.677472576999961, 50.608117607000054 ], [ -119.677876438999988, 50.605251409000061 ], [ -119.678085320999941, 50.605263296000047 ], [ -119.67812644499999, 50.604971413000044 ], [ -119.683400397999932, 50.605271407 ], [ -119.683758075999947, 50.605291744000091 ], [ -119.683743152999952, 50.605397751000105 ], [ -119.684068271999962, 50.605416236000039 ], [ -119.683954292999914, 50.606225971000093 ], [ -119.683608280999948, 50.608683961000089 ], [ -119.683564444, 50.608995340000064 ], [ -119.683030399999922, 50.608964978000124 ], [ -119.683004229999938, 50.609150853000138 ], [ -119.682768649999943, 50.60913745900011 ], [ -119.682659743999949, 50.609910936000048 ], [ -119.68255588599996, 50.610648527000102 ], [ -119.683933539999913, 50.610726851000067 ], [ -119.683892204999964, 50.61102046900006 ], [ -119.684417645999957, 50.611050337000044 ], [ -119.683913782999952, 50.614629420000036 ], [ -119.68213474, 50.614528282000038 ], [ -119.680821621999911, 50.614453614000105 ], [ -119.680465466999976, 50.616981894000048 ], [ -119.675951541999964, 50.616725097 ], [ -119.674961691999954, 50.615189634000089 ], [ -119.675270109999957, 50.613002067000075 ], [ -119.677502365999914, 50.613129107000113 ], [ -119.677602897999961, 50.612415760000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "52.7", "sL_BldgLoss": "52.7", "sL_StrLoss": "52.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000049B085549FA5DC05AF1EC7666524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.909579316, 50.646151768000081 ], [ -119.909616717999938, 50.645876438000109 ], [ -119.908245880999957, 50.645801363000103 ], [ -119.908279390999922, 50.645554729000033 ], [ -119.907456273999969, 50.645509642000022 ], [ -119.907484967999935, 50.645298461000067 ], [ -119.907507045, 50.645135988000071 ], [ -119.907378396999931, 50.645128941000081 ], [ -119.907864806999896, 50.641548997000051 ], [ -119.913502628999979, 50.641857697000013 ], [ -119.913451909999978, 50.642231355 ], [ -119.913580550999939, 50.642238395000035 ], [ -119.913547074999926, 50.642485032000153 ], [ -119.91437014199991, 50.642530074000035 ], [ -119.914081346, 50.644657902000041 ], [ -119.91399771, 50.645274074000035 ], [ -119.912947413999945, 50.645412390000054 ], [ -119.912508200999952, 50.645519639000092 ], [ -119.910941100999935, 50.645902297000113 ], [ -119.909579316, 50.646151768000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.6", "sL_BldgLoss": "60.6", "sL_StrLoss": "60.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD3A06BF28F85DC0FD007BB73F544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.875383499999955, 50.660282532000096 ], [ -119.875390123, 50.660234063000082 ], [ -119.874951588999963, 50.660209920000099 ], [ -119.875440744999977, 50.656630183000047 ], [ -119.881080235999946, 50.656940518000091 ], [ -119.88107361899992, 50.656988987000048 ], [ -119.881512125999961, 50.657013105000026 ], [ -119.881490567999961, 50.657171042000094 ], [ -119.880557898999925, 50.657794510000059 ], [ -119.878194372999971, 50.659409493000041 ], [ -119.876109176999989, 50.660322479000129 ], [ -119.875383499999955, 50.660282532000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "74.3", "sL_BldgLoss": "74.3", "sL_StrLoss": "74.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DBEB7AF24F75DC0160A85C61B554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.863107538999941, 50.663613161000079 ], [ -119.865308972999941, 50.663734564000073 ], [ -119.865199003999962, 50.664537920000093 ], [ -119.865099734999944, 50.664566771000118 ], [ -119.864438893999989, 50.664758802000058 ], [ -119.863483500999962, 50.665106292000047 ], [ -119.86230399499999, 50.665710208000043 ], [ -119.861521707999955, 50.666341090000067 ], [ -119.860367585999953, 50.667068704 ], [ -119.859178252, 50.667003073000053 ], [ -119.859325401999982, 50.665929216000031 ], [ -119.859668739999947, 50.66342343400008 ], [ -119.863107538999941, 50.663613161000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.1", "sL_BldgLoss": "47.1", "sL_StrLoss": "47.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DE00B71726EC5DC0D0AF94025E494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.691363652999939, 50.571608027000082 ], [ -119.692013813999921, 50.571540824000074 ], [ -119.691663604999945, 50.57403383700008 ], [ -119.691493424999976, 50.5740241660001 ], [ -119.691448512999941, 50.57434384000009 ], [ -119.686744028999925, 50.574076399000042 ], [ -119.686955707999971, 50.573780113000055 ], [ -119.687375524999979, 50.573113984000059 ], [ -119.687640964999972, 50.57287021500008 ], [ -119.687909119999972, 50.572697848000097 ], [ -119.6881624299999, 50.572631087000019 ], [ -119.68844120499999, 50.572618826000081 ], [ -119.688654706999984, 50.572609461000077 ], [ -119.689368230999946, 50.572476859000083 ], [ -119.689426019999971, 50.572456027000051 ], [ -119.689634132999942, 50.57238101600008 ], [ -119.689673111999966, 50.572357317000083 ], [ -119.689781317000012, 50.572291524000057 ], [ -119.690305567999985, 50.571972720000112 ], [ -119.690814696999951, 50.571730170000095 ], [ -119.691363652999939, 50.571608027000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000033B5952CE1F05DC08B679625365E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.76377788399999, 50.738265977000012 ], [ -119.763814516999943, 50.738003205000091 ], [ -119.762673700999969, 50.73803025900002 ], [ -119.762649251999918, 50.737614983000071 ], [ -119.762626105999985, 50.737221838000032 ], [ -119.763018148999961, 50.737212544000066 ], [ -119.763050748999916, 50.737211771000048 ], [ -119.763047679999943, 50.737159652000059 ], [ -119.762892085999979, 50.734517037000074 ], [ -119.763240556999946, 50.734508774000055 ], [ -119.763316704999937, 50.734506968000083 ], [ -119.763301814999963, 50.734254103000154 ], [ -119.763269103999974, 50.733698549000025 ], [ -119.76359617899999, 50.733690792000061 ], [ -119.764542937999948, 50.73366833300004 ], [ -119.76459056099999, 50.734476752000099 ], [ -119.764165943999942, 50.734486826000079 ], [ -119.76422943399993, 50.735564718000077 ], [ -119.764654063999942, 50.735554643000015 ], [ -119.764657630999963, 50.735615227000068 ], [ -119.764768099999984, 50.735621407000068 ], [ -119.764703406999956, 50.736943488000037 ], [ -119.76425632099992, 50.738005901000051 ], [ -119.76396687, 50.738212069000085 ], [ -119.76377788399999, 50.738265977000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "145.3", "sL_BldgLoss": "145.3", "sL_StrLoss": "145.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A3144241C8F35DC02C857AD9FA554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.806456431999948, 50.669725240000041 ], [ -119.806629346999927, 50.668474222000086 ], [ -119.811985846999946, 50.66877223800001 ], [ -119.812269846000035, 50.668788031000098 ], [ -119.812262256999958, 50.668842984000023 ], [ -119.812897628999906, 50.668878315000079 ], [ -119.812403353999954, 50.67245772399999 ], [ -119.812396644999964, 50.672457351000055 ], [ -119.812319283999955, 50.673017524000102 ], [ -119.812018455999961, 50.673000797000064 ], [ -119.811836636999928, 50.674317232000071 ], [ -119.811406999, 50.674293341000052 ], [ -119.811162715999941, 50.674279757000058 ], [ -119.81113351599997, 50.674491149000055 ], [ -119.811036417999944, 50.674485749000041 ], [ -119.810968937, 50.674974251000044 ], [ -119.805327669999954, 50.67466037800007 ], [ -119.80582253299994, 50.671081009000027 ], [ -119.80591962299998, 50.67108641400003 ], [ -119.805987153999979, 50.67059791300013 ], [ -119.806138699999934, 50.670606348000021 ], [ -119.80626199299999, 50.669714417000066 ], [ -119.806456431999948, 50.669725240000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84842527", "BldgCostT": "55409622", "sL_LossRatio": "0.998185760353172", "sL_AssetLoss": "5622.19", "sL_BldgLoss": "5611.99", "sL_StrLoss": "5608.3", "sL_NStrLoss": "3.69", "sL_ContLoss": "10.2", "geom_point": "0101000020E61000005DEE8AE8F0F25DC015655F4756564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.796053710999942, 50.694019386000043 ], [ -119.796310926999979, 50.692162636000077 ], [ -119.796087498999967, 50.692167999000048 ], [ -119.79607804399997, 50.692009083000116 ], [ -119.796013546999944, 50.692005489000032 ], [ -119.796058516999935, 50.691680860000041 ], [ -119.796057991999959, 50.691672027 ], [ -119.795582494999962, 50.691645529000034 ], [ -119.795523346999957, 50.692072468000099 ], [ -119.789880039999943, 50.691757820000127 ], [ -119.789945016999923, 50.69128923800006 ], [ -119.78961116499994, 50.691270614000047 ], [ -119.78980334, 50.68988474400004 ], [ -119.790107461999966, 50.687691386000026 ], [ -119.791344176999928, 50.687760369000031 ], [ -119.791353236999939, 50.687695007000066 ], [ -119.791203666999948, 50.687686664000047 ], [ -119.791212349999981, 50.687624029000105 ], [ -119.790538547999972, 50.687586446000076 ], [ -119.790584072999962, 50.687258085000082 ], [ -119.79034846499998, 50.687244942000056 ], [ -119.790748969999981, 50.684355999000118 ], [ -119.787900785999938, 50.684197081000043 ], [ -119.788268837999951, 50.681543089000122 ], [ -119.784829766999962, 50.681351102000065 ], [ -119.784897885999925, 50.680860147000061 ], [ -119.784354287, 50.680829790000104 ], [ -119.784602795999945, 50.67903873800006 ], [ -119.78202643499999, 50.678894829000058 ], [ -119.782043464999916, 50.67877213500006 ], [ -119.782102926999983, 50.678343731000062 ], [ -119.78152635699999, 50.678311517000104 ], [ -119.781538270999931, 50.678225686000118 ], [ -119.781212950999986, 50.67820750800005 ], [ -119.781393922999939, 50.67690381200007 ], [ -119.780699323999926, 50.676864997000102 ], [ -119.780731273999919, 50.676634853000046 ], [ -119.780320328999963, 50.676611887000057 ], [ -119.780357956, 50.676340852000116 ], [ -119.780009536999927, 50.676321380000033 ], [ -119.780171788999908, 50.675152710000084 ], [ -119.778326062999923, 50.675049535000078 ], [ -119.778823080999985, 50.67147028800008 ], [ -119.779393132999985, 50.671502157000091 ], [ -119.779489603999977, 50.670807297000081 ], [ -119.778897866999969, 50.670774216000012 ], [ -119.778622108999983, 50.672760202000092 ], [ -119.778551844000035, 50.672756274000072 ], [ -119.778514819999927, 50.673022904000042 ], [ -119.77287402499995, 50.672707390000056 ], [ -119.772973905999905, 50.671988743000043 ], [ -119.77266016699997, 50.671971186000064 ], [ -119.77315760299993, 50.668391951000075 ], [ -119.773431290999895, 50.66840726700007 ], [ -119.773506768999979, 50.667864105000092 ], [ -119.773244168999895, 50.667849409000141 ], [ -119.773274624999914, 50.667630240000044 ], [ -119.772984475999976, 50.667614002000015 ], [ -119.773258583000015, 50.665641469000072 ], [ -119.769322393999957, 50.665421106000082 ], [ -119.769343002999975, 50.665272884000053 ], [ -119.769170190999915, 50.66526320500008 ], [ -119.768858483999963, 50.667504840000028 ], [ -119.763218449999968, 50.667188835000118 ], [ -119.763218675999966, 50.667187216000059 ], [ -119.762945940999941, 50.667171928000094 ], [ -119.763444098999969, 50.663592716000032 ], [ -119.765142430999973, 50.663687906000099 ], [ -119.765591283, 50.660461557000104 ], [ -119.765982319999949, 50.660483472000088 ], [ -119.766035485000018, 50.660101267000073 ], [ -119.766841888999949, 50.660146453000053 ], [ -119.766917726999949, 50.659601172000045 ], [ -119.766838800999892, 50.659596749000052 ], [ -119.767106022999982, 50.657675297000047 ], [ -119.767336562999944, 50.656017488000032 ], [ -119.76890092, 50.656105131000075 ], [ -119.77297522399999, 50.65633328800012 ], [ -119.772836470999948, 50.657331974000094 ], [ -119.772915394999941, 50.657336392000104 ], [ -119.772728218999973, 50.658683554000078 ], [ -119.773505767999964, 50.658727078000027 ], [ -119.773385416999957, 50.659593354000016 ], [ -119.777392854999917, 50.659817588000088 ], [ -119.777446429999927, 50.659431728000094 ], [ -119.783085588999938, 50.659747017000022 ], [ -119.783054086999968, 50.659974115000111 ], [ -119.784739149999936, 50.660068272000053 ], [ -119.784558290999954, 50.66137238600006 ], [ -119.784726340999924, 50.661381775000052 ], [ -119.784700918999974, 50.661565085000042 ], [ -119.784945846, 50.661578769000059 ], [ -119.78491979399999, 50.661766627000127 ], [ -119.785088754999919, 50.661776066000066 ], [ -119.784764360999972, 50.664115140000071 ], [ -119.787414940999966, 50.66426318000002 ], [ -119.787716231999923, 50.66208977200013 ], [ -119.787899008999915, 50.6620999780001 ], [ -119.787905925999908, 50.662050076000078 ], [ -119.790414328999972, 50.662190111000029 ], [ -119.790788648999978, 50.659488437000093 ], [ -119.796427908999959, 50.659803050000114 ], [ -119.796424006999956, 50.659831241000084 ], [ -119.796893795999921, 50.659857436000095 ], [ -119.796831964999981, 50.660304161000113 ], [ -119.796892526999926, 50.660307538000076 ], [ -119.796411413999962, 50.663783299000066 ], [ -119.797102658999933, 50.663821839000029 ], [ -119.797073473999959, 50.664032686000056 ], [ -119.798024147999968, 50.664085684000028 ], [ -119.798395309999961, 50.661403616000094 ], [ -119.798453384999931, 50.661406854000099 ], [ -119.798486918999956, 50.66116451700001 ], [ -119.799244944999884, 50.661206770000078 ], [ -119.799262589999984, 50.661079236 ], [ -119.803671516999941, 50.661324887000099 ], [ -119.803734691999935, 50.66086794800006 ], [ -119.803767978999957, 50.660990936000083 ], [ -119.803785343999948, 50.66104451000006 ], [ -119.803820038999959, 50.661151611000022 ], [ -119.803852568999986, 50.661222785000113 ], [ -119.803884569999951, 50.661284978000062 ], [ -119.80390299, 50.661356512000047 ], [ -119.803920867999921, 50.661419041000016 ], [ -119.803925143999919, 50.661490884000067 ], [ -119.803978260999941, 50.661669518000117 ], [ -119.80396731899998, 50.661723751000068 ], [ -119.803961763999965, 50.661867800000088 ], [ -119.803954062999964, 50.661975941000016 ], [ -119.803958336999926, 50.662047786000102 ], [ -119.80396316299999, 50.662128633000059 ], [ -119.803955984999973, 50.662245755000058 ], [ -119.803945571999947, 50.662308966000133 ], [ -119.803949903999964, 50.662380822000038 ], [ -119.803954708999953, 50.662461647000043 ], [ -119.803945895999945, 50.662551819000079 ], [ -119.803949116999959, 50.662605706000072 ], [ -119.803953939999971, 50.662686553000121 ], [ -119.80392173200002, 50.662858232000126 ], [ -119.80397052, 50.662965010000057 ], [ -119.803962835999968, 50.663073120000071 ], [ -119.803983915999979, 50.663189569000089 ], [ -119.803988738999962, 50.663270416000017 ], [ -119.803978887999932, 50.663342597000081 ], [ -119.803989665999936, 50.663346602000047 ], [ -119.804138091999945, 50.66340172700005 ], [ -119.804265819999969, 50.663407640000088 ], [ -119.804462052999938, 50.663375936000079 ], [ -119.804546308999932, 50.663364909000123 ], [ -119.80465828799997, 50.663344231000046 ], [ -119.804742579, 50.663333192000024 ], [ -119.804857214999942, 50.663292533000082 ], [ -119.805142298999925, 50.663261791000174 ], [ -119.805229085999926, 50.663249634000152 ], [ -119.805231317999969, 50.663249311000079 ], [ -119.805423417999947, 50.663222407000056 ], [ -119.805768651999927, 50.663214329000034 ], [ -119.806175977999899, 50.663204808000074 ], [ -119.806317659999948, 50.663217259000092 ], [ -119.806396149999941, 50.663224140000032 ], [ -119.806759491999969, 50.66325604900009 ], [ -119.806833522999952, 50.663262548000056 ], [ -119.807158581999886, 50.663291099000027 ], [ -119.808598843999931, 50.663122938000072 ], [ -119.808612818999919, 50.6631213040001 ], [ -119.810586354999927, 50.663100693000047 ], [ -119.810629295999917, 50.663100258000043 ], [ -119.81096052499997, 50.663096802000034 ], [ -119.811273603999979, 50.663137571000092 ], [ -119.811564908999912, 50.663175504000058 ], [ -119.812008579999898, 50.663305695000091 ], [ -119.812744691999981, 50.663603713000043 ], [ -119.812355577999966, 50.663124830000115 ], [ -119.812351912999958, 50.66312029900007 ], [ -119.812317188999913, 50.663077591000146 ], [ -119.812164223, 50.662827410000077 ], [ -119.812148898999965, 50.662735847000064 ], [ -119.812983901999957, 50.662702302000092 ], [ -119.814103908, 50.662495802000066 ], [ -119.816243193, 50.662048601000059 ], [ -119.816582488999956, 50.662067098000072 ], [ -119.817144704999919, 50.66223369100004 ], [ -119.818120984999894, 50.662227990000133 ], [ -119.818478078999959, 50.662057097000122 ], [ -119.818871698999928, 50.66199299100002 ], [ -119.819226865999923, 50.661981066000088 ], [ -119.819555305000023, 50.661970029000081 ], [ -119.819542455999965, 50.662063198000105 ], [ -119.820908579999923, 50.662139081000056 ], [ -119.820892183999959, 50.662257988000064 ], [ -119.821579563999961, 50.662296163000086 ], [ -119.821574690999924, 50.662331514000087 ], [ -119.822146147999945, 50.662363248000069 ], [ -119.821652681999979, 50.665942726000011 ], [ -119.821361764999921, 50.665926571000071 ], [ -119.821356971999975, 50.665961332000101 ], [ -119.81571676399993, 50.665647982000024 ], [ -119.81572644000002, 50.665577870000035 ], [ -119.815445857999975, 50.665562274000081 ], [ -119.815462268999909, 50.665443369000094 ], [ -119.81477484599999, 50.665405156000126 ], [ -119.814853028999948, 50.664838705000051 ], [ -119.812577372999968, 50.664712175000041 ], [ -119.81252998199993, 50.664709540000068 ], [ -119.812527315999915, 50.664728839000098 ], [ -119.810804954, 50.664633041000066 ], [ -119.80918931199993, 50.664543154000086 ], [ -119.809127383999979, 50.664991417000103 ], [ -119.807196800999961, 50.664883977000073 ], [ -119.807011366999916, 50.666225794000113 ], [ -119.80697727699993, 50.666472463000083 ], [ -119.80669336499993, 50.666456660000037 ], [ -119.806524827999937, 50.667676071000059 ], [ -119.804259267999953, 50.667549940000114 ], [ -119.802052411999938, 50.667427033000145 ], [ -119.801985142999939, 50.667913375000104 ], [ -119.799964870999972, 50.667800821000064 ], [ -119.799909469999974, 50.668201221000039 ], [ -119.799902586999963, 50.668200838000075 ], [ -119.799865783999934, 50.668466822000035 ], [ -119.797043811999984, 50.668309541000106 ], [ -119.797005265999985, 50.668587988000098 ], [ -119.792471508999967, 50.668335149000072 ], [ -119.792430870999951, 50.668628493000092 ], [ -119.792028792999972, 50.668606061000112 ], [ -119.792004858999945, 50.668778803000059 ], [ -119.791983239000018, 50.668777597000073 ], [ -119.791959768999945, 50.668947004000117 ], [ -119.786319390999921, 50.668632167000077 ], [ -119.78636737199993, 50.66828616100004 ], [ -119.785846199999966, 50.668257055000076 ], [ -119.785855268999967, 50.668191661000058 ], [ -119.785498692999951, 50.66817174600007 ], [ -119.78550742699997, 50.668108774000125 ], [ -119.785008739999952, 50.668080919000097 ], [ -119.784966332999929, 50.668386666000032 ], [ -119.784371920999916, 50.668353463000081 ], [ -119.78436170899991, 50.66842708000005 ], [ -119.782128524999933, 50.668302306000101 ], [ -119.78206454799998, 50.668763350000063 ], [ -119.786326703999961, 50.669001446000024 ], [ -119.786190537, 50.669983354000095 ], [ -119.78635156899999, 50.669992347000125 ], [ -119.786233357999976, 50.670844766000073 ], [ -119.786911509999968, 50.670882633000076 ], [ -119.786779663999965, 50.671833432000021 ], [ -119.789134203999978, 50.671964874000075 ], [ -119.789028855999959, 50.672724842000072 ], [ -119.790605607999979, 50.672812835000059 ], [ -119.790484901999918, 50.673683788000091 ], [ -119.794039012000027, 50.673882049000028 ], [ -119.794363302999955, 50.671540747000044 ], [ -119.795123674999914, 50.671583149000043 ], [ -119.79512737, 50.671556465000037 ], [ -119.797897610999911, 50.671710900000051 ], [ -119.798064402999955, 50.670505929000065 ], [ -119.802352298999921, 50.670744833000114 ], [ -119.803705095999945, 50.670820171000059 ], [ -119.803210067999956, 50.674399531000105 ], [ -119.800439641999958, 50.674245228000032 ], [ -119.800272901999975, 50.675450197000025 ], [ -119.799734047999962, 50.675420177000049 ], [ -119.799692690999933, 50.675719010000108 ], [ -119.794385368999926, 50.675423190000096 ], [ -119.794222065999975, 50.67660212800007 ], [ -119.797801118999985, 50.676801646000065 ], [ -119.797783275999947, 50.676930535000082 ], [ -119.797792428999912, 50.676931046000036 ], [ -119.797296861999911, 50.68051035400007 ], [ -119.792212806999927, 50.680226906000023 ], [ -119.79165499600002, 50.680195792000049 ], [ -119.791672857999941, 50.680066903000096 ], [ -119.791663704999962, 50.68006639300004 ], [ -119.792036359999926, 50.677377312000061 ], [ -119.791476108999944, 50.677346060000119 ], [ -119.79137383199999, 50.678084064000046 ], [ -119.791541534999951, 50.678093420000067 ], [ -119.791213018999883, 50.68046377800006 ], [ -119.792194594999927, 50.680518530000029 ], [ -119.794836190999959, 50.680665834000123 ], [ -119.794754760000032, 50.681253697000052 ], [ -119.794393204999949, 50.683863586000037 ], [ -119.794565727999924, 50.68387320500009 ], [ -119.794934449, 50.681211503000107 ], [ -119.795021857999956, 50.680580483000035 ], [ -119.800663795999967, 50.680894874000096 ], [ -119.800562193999909, 50.681629024000081 ], [ -119.800836643999958, 50.681644310000124 ], [ -119.800868956, 50.681410819000071 ], [ -119.802037247999948, 50.681475882000079 ], [ -119.80211002899992, 50.680949848000118 ], [ -119.807752062999967, 50.681263880000074 ], [ -119.80770830599999, 50.681580427000029 ], [ -119.808381265, 50.68161786400001 ], [ -119.808345176999921, 50.681878950000041 ], [ -119.808446079999925, 50.681884562000093 ], [ -119.80831685, 50.682819503000054 ], [ -119.810326534999959, 50.682931276000055 ], [ -119.810627372999974, 50.68294800500005 ], [ -119.810593855999969, 50.683190587000098 ], [ -119.810767616999954, 50.683200249000066 ], [ -119.810846553999951, 50.682628953000055 ], [ -119.81105803, 50.68264071100009 ], [ -119.811084453999968, 50.682449458000114 ], [ -119.812584605000012, 50.682532860000073 ], [ -119.813123529999956, 50.682562816000065 ], [ -119.813138614999957, 50.682453595000077 ], [ -119.813060919999955, 50.682449276000099 ], [ -119.813235512999924, 50.681185149 ], [ -119.813406161999978, 50.679949503000088 ], [ -119.813498281999927, 50.679282449000091 ], [ -119.813490112999929, 50.679281995000032 ], [ -119.812946533999934, 50.67925177900004 ], [ -119.812988186999959, 50.678950177000019 ], [ -119.812918052999962, 50.678946279000023 ], [ -119.81339752599996, 50.675474315 ], [ -119.813412357999965, 50.675366894000014 ], [ -119.813533266999954, 50.675373615000105 ], [ -119.813769729999962, 50.675386760000045 ], [ -119.813795751999933, 50.675198304000112 ], [ -119.814379670999955, 50.675230761000073 ], [ -119.81442149599999, 50.674927826000051 ], [ -119.81485440099999, 50.67179202000009 ], [ -119.820495373999918, 50.672105412000107 ], [ -119.820099858999924, 50.674973 ], [ -119.824463142999946, 50.675215208000033 ], [ -119.824395737999936, 50.675704214000071 ], [ -119.825161252999976, 50.675746690000032 ], [ -119.825144413999965, 50.675868863000076 ], [ -119.827766574999927, 50.676014320000114 ], [ -119.82743837000001, 50.678396529000089 ], [ -119.829330466999949, 50.678501448000198 ], [ -119.831087231999931, 50.678598833000109 ], [ -119.83107196099995, 50.678709736000023 ], [ -119.831290133999985, 50.678721828000064 ], [ -119.831286632999976, 50.678747251000061 ], [ -119.83089879, 50.679124899000094 ], [ -119.829452092999958, 50.680275605000062 ], [ -119.829152909999934, 50.680697205000101 ], [ -119.828661785999898, 50.681258295000085 ], [ -119.827889016999919, 50.682408165000076 ], [ -119.825111370999963, 50.682254108000073 ], [ -119.825124384999967, 50.682159697000053 ], [ -119.824855867999943, 50.682144801000078 ], [ -119.824875873999957, 50.681999683000065 ], [ -119.825223187999939, 50.679480040000072 ], [ -119.823569529999986, 50.67938828600014 ], [ -119.823566735999975, 50.679408550000076 ], [ -119.820508409999931, 50.679238790000092 ], [ -119.820474706999974, 50.679483122000107 ], [ -119.819165775000016, 50.679410441000087 ], [ -119.818958991999978, 50.68090913500005 ], [ -119.81932681899994, 50.680929560000081 ], [ -119.819013365999979, 50.683201297000018 ], [ -119.823059470999951, 50.683425902000131 ], [ -119.82330734599995, 50.6834396570001 ], [ -119.823202576999961, 50.684199446000058 ], [ -119.826328458999953, 50.684372858000145 ], [ -119.825997522999899, 50.684749006000104 ], [ -119.824916597999959, 50.685818595000086 ], [ -119.824708752999982, 50.685953700000063 ], [ -119.82307589399997, 50.68701501200006 ], [ -119.822034284999944, 50.687571795000018 ], [ -119.82159532899999, 50.687739718000032 ], [ -119.820731210999924, 50.688070286000048 ], [ -119.818905402, 50.68925669300004 ], [ -119.817335335999985, 50.69014013000001 ], [ -119.81452147399996, 50.689983825000091 ], [ -119.814200546999984, 50.689965993000108 ], [ -119.814607337999945, 50.687020508000096 ], [ -119.811674793999885, 50.686857524000125 ], [ -119.80992401099995, 50.686760182000107 ], [ -119.809957535999942, 50.68651760100007 ], [ -119.80526004799998, 50.686256286000081 ], [ -119.805222500999946, 50.686527770000069 ], [ -119.805694697999954, 50.686554047000158 ], [ -119.805663627999962, 50.686778713000116 ], [ -119.805782811999933, 50.686785345000033 ], [ -119.805586089999935, 50.688207780000042 ], [ -119.806074199999941, 50.688234940000086 ], [ -119.80595858399991, 50.689070951000097 ], [ -119.806224352999905, 50.689085737000049 ], [ -119.805839691999935, 50.691867069000153 ], [ -119.80572932499993, 50.69266503100004 ], [ -119.805329737999955, 50.692642799000055 ], [ -119.805289119999912, 50.692936440000075 ], [ -119.805191746999952, 50.692931022000025 ], [ -119.805045568999958, 50.693987744000069 ], [ -119.804061553999986, 50.693932987000053 ], [ -119.804025236999934, 50.694195467000029 ], [ -119.801734130999989, 50.694067941000128 ], [ -119.801697344999951, 50.694333720000046 ], [ -119.79839004199998, 50.694149548000105 ], [ -119.796053710999942, 50.694019386000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.8", "sL_BldgLoss": "41.8", "sL_StrLoss": "41.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A53D17158F15DC003D27ACFB35A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.770361673999957, 50.70978329900003 ], [ -119.770345779999957, 50.70951382600002 ], [ -119.769921388999975, 50.709523917000041 ], [ -119.769905497999943, 50.709254445000077 ], [ -119.76948110899994, 50.709264535000038 ], [ -119.769465220999948, 50.708995061000046 ], [ -119.768616446999914, 50.709015236000035 ], [ -119.768552914999987, 50.707937343000062 ], [ -119.768977291999988, 50.70792725700003 ], [ -119.768961406999921, 50.70765778400007 ], [ -119.772780767999947, 50.707566940000028 ], [ -119.772828489999981, 50.708375357000072 ], [ -119.773252869999936, 50.708365256000029 ], [ -119.773316510999962, 50.709443144000055 ], [ -119.772467730999949, 50.709463348000071 ], [ -119.772483636999965, 50.709732819000102 ], [ -119.770361673999957, 50.70978329900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "54.3", "sL_BldgLoss": "54.3", "sL_StrLoss": "54.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000055C28F4159F65DC04A6A57D7D7554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.849013226999944, 50.670744701000096 ], [ -119.849027029999931, 50.670644140000036 ], [ -119.847683189999927, 50.670569851000025 ], [ -119.847774574999946, 50.669904263000056 ], [ -119.84646619599999, 50.669831919000103 ], [ -119.846643588999882, 50.668540116000052 ], [ -119.847105649999932, 50.668688904000142 ], [ -119.847634199999959, 50.668859096000062 ], [ -119.848893107000023, 50.66957411200007 ], [ -119.849782906999934, 50.669984298000024 ], [ -119.850400967000027, 50.670411078000029 ], [ -119.85089049699999, 50.670749090000058 ], [ -119.851225759999963, 50.670881925000096 ], [ -119.85146918599996, 50.67097839700007 ], [ -119.851553000999928, 50.67139850500007 ], [ -119.851197389999967, 50.671865607000065 ], [ -119.85098068399995, 50.672698804000042 ], [ -119.850127576999938, 50.672432494000091 ], [ -119.848856733, 50.671884689000059 ], [ -119.849013226999944, 50.670744701000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17743667", "BldgCostT": "11476667", "sL_LossRatio": "1", "sL_AssetLoss": "1233", "sL_BldgLoss": "1233", "sL_StrLoss": "1233", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000049038937BCF15DC009178FDEB25B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.763228410999929, 50.723327427000115 ], [ -119.76323648099995, 50.72326952300007 ], [ -119.762485991999981, 50.723227507000026 ], [ -119.762984806999924, 50.719648534000044 ], [ -119.764771248999963, 50.719748538000033 ], [ -119.764796432999958, 50.719567776000069 ], [ -119.767634604999941, 50.719726595000033 ], [ -119.76779406, 50.71858154300007 ], [ -119.772518249999933, 50.718845739000066 ], [ -119.772674795999961, 50.717720653000079 ], [ -119.773320745999925, 50.717756762000057 ], [ -119.773532344999978, 50.716235770000026 ], [ -119.773974478999932, 50.716260483000063 ], [ -119.773989028999921, 50.71615588000008 ], [ -119.775130385999944, 50.716219668000065 ], [ -119.775175075999925, 50.715898339 ], [ -119.774386128999964, 50.715854247000081 ], [ -119.774450780999985, 50.71538944400006 ], [ -119.774135852999947, 50.715371842000145 ], [ -119.774200523, 50.714906918000082 ], [ -119.77017835599996, 50.714682034000056 ], [ -119.770676461999969, 50.711102992000093 ], [ -119.77467225299992, 50.711326402000047 ], [ -119.77477291400001, 50.710602585000082 ], [ -119.78041848399999, 50.710917990000105 ], [ -119.780372697999979, 50.711247525000019 ], [ -119.780944891, 50.711279476000108 ], [ -119.780942727999928, 50.711295048000082 ], [ -119.782061669999933, 50.711357520000092 ], [ -119.782076458999938, 50.711251055000048 ], [ -119.78218769099999, 50.711257264000096 ], [ -119.782206859999945, 50.711119258000032 ], [ -119.782581608999976, 50.71114017700009 ], [ -119.782724072999926, 50.711148130000034 ], [ -119.782744845999957, 50.710998570000122 ], [ -119.783198622999976, 50.711023899000068 ], [ -119.783219332, 50.710874781000022 ], [ -119.784805419999955, 50.710963299000085 ], [ -119.786921795999987, 50.711081377000014 ], [ -119.786990584999941, 50.710585767000047 ], [ -119.787305714999945, 50.710603345000081 ], [ -119.78732007499994, 50.71049987500006 ], [ -119.787357836999945, 50.710501980000096 ], [ -119.787400388999984, 50.710195376000108 ], [ -119.790183338999924, 50.710350573000063 ], [ -119.792007113999887, 50.710452241000048 ], [ -119.791844700999945, 50.712108107000041 ], [ -119.791686086999974, 50.712535398000036 ], [ -119.791341909999986, 50.712956910000088 ], [ -119.788399899999916, 50.714710096000026 ], [ -119.787329195999959, 50.715443271000019 ], [ -119.786983592999945, 50.715423996000027 ], [ -119.786973817999964, 50.715494411000059 ], [ -119.786236099999954, 50.715453261000093 ], [ -119.786122807999931, 50.716269313000069 ], [ -119.785743767999975, 50.716528842000116 ], [ -119.785482435999882, 50.716514263000093 ], [ -119.78547331499999, 50.716579943000085 ], [ -119.784519603999968, 50.716526733000073 ], [ -119.784488783999947, 50.716748666000051 ], [ -119.781478832999966, 50.716580677000081 ], [ -119.781096593, 50.716559338000096 ], [ -119.781055152999926, 50.716857588000082 ], [ -119.780847046, 50.71835526200006 ], [ -119.781621052999981, 50.718398471000022 ], [ -119.781381441999955, 50.720122963000108 ], [ -119.781109389999955, 50.720298707000012 ], [ -119.77980720499994, 50.721059300000086 ], [ -119.778489393999948, 50.721513613000063 ], [ -119.776808197999969, 50.721872875000066 ], [ -119.775200552999976, 50.721783059000117 ], [ -119.775243943999925, 50.72147109700007 ], [ -119.774095559999978, 50.721406925000068 ], [ -119.773671956, 50.721383252000088 ], [ -119.773644775999955, 50.721578613000077 ], [ -119.773840209, 50.721573960000121 ], [ -119.774032742999935, 50.721569377000066 ], [ -119.774080509, 50.722377790000081 ], [ -119.773531766999923, 50.722390855000107 ], [ -119.773466754999987, 50.722858105000078 ], [ -119.77216465399999, 50.722785325000032 ], [ -119.770055553999953, 50.722667404000106 ], [ -119.769944836999969, 50.723462686000083 ], [ -119.768908733999979, 50.723404742000056 ], [ -119.768875501999958, 50.723643410000108 ], [ -119.763228410999929, 50.723327427000115 ] ], [ [ -119.78133408799998, 50.719556706000041 ], [ -119.781104702999926, 50.71929179400005 ], [ -119.780695282999929, 50.719310289000113 ], [ -119.780517197, 50.719404300000114 ], [ -119.780716587999976, 50.719894296000078 ], [ -119.779781610999976, 50.720609201000102 ], [ -119.77977258699994, 50.720717504000056 ], [ -119.780002090999986, 50.720765902000075 ], [ -119.780890711999973, 50.720187697000043 ], [ -119.781244620999956, 50.71996260300007 ], [ -119.781347706999966, 50.719780299000021 ], [ -119.78133408799998, 50.719556706000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "50.9", "sL_BldgLoss": "50.9", "sL_StrLoss": "50.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E4491452E5F15DC05B4E3A78C3574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.780422503999901, 50.683894026000054 ], [ -119.782691261999901, 50.684020774000047 ], [ -119.782345192999969, 50.686513855000086 ], [ -119.782194412999914, 50.687599985000134 ], [ -119.776551760999951, 50.687284662000096 ], [ -119.777049056999957, 50.683705475000082 ], [ -119.780422503999901, 50.683894026000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "187.5", "sL_BldgLoss": "187.5", "sL_StrLoss": "187.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB1F892C4CF35DC04C23FB5A76594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.803304659, 50.697380677000048 ], [ -119.805768444999941, 50.69751776600004 ], [ -119.805569291999973, 50.698957426000078 ], [ -119.804719796999947, 50.699493909000068 ], [ -119.803954483999959, 50.6997189040001 ], [ -119.802957501999941, 50.70011198800006 ], [ -119.801745202999925, 50.700213103000053 ], [ -119.80075661599993, 50.700506509000071 ], [ -119.800006201999935, 50.700498006000061 ], [ -119.799672591999951, 50.700596191000045 ], [ -119.79836991599997, 50.70132829 ], [ -119.79817408299995, 50.701471664000088 ], [ -119.797877068999952, 50.701455122000077 ], [ -119.798076329999986, 50.70001656800013 ], [ -119.798372820999987, 50.697875900000113 ], [ -119.799715026999948, 50.697950649000099 ], [ -119.799774680999988, 50.697519831000108 ], [ -119.800078262999975, 50.697536736000124 ], [ -119.800101457999972, 50.697369215000066 ], [ -119.800124381999964, 50.697203639000065 ], [ -119.803304659, 50.697380677000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "84.7", "sL_BldgLoss": "84.7", "sL_StrLoss": "84.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006462EB0025F15DC01DA596D6F4564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.769077526, 50.677610189000127 ], [ -119.770953157999912, 50.677715186000057 ], [ -119.770903240999928, 50.678074175000113 ], [ -119.770595292999985, 50.680288734000065 ], [ -119.770455442999918, 50.681294371000057 ], [ -119.766117708999985, 50.681051500000088 ], [ -119.76481366599991, 50.68097845300008 ], [ -119.765311826999948, 50.677399290000089 ], [ -119.767957175000021, 50.677547457000088 ], [ -119.769077526, 50.677610189000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "1", "sL_AssetLoss": "314.1", "sL_BldgLoss": "314.1", "sL_StrLoss": "314.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004761ACA90BF05DC0B14ED70B6C544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.748530948999957, 50.663783237000061 ], [ -119.748887557999979, 50.661226841 ], [ -119.748147112999931, 50.661185231000061 ], [ -119.748210485999948, 50.660730956000094 ], [ -119.746228982, 50.660619579000098 ], [ -119.746728397999931, 50.657040415000104 ], [ -119.747566528999982, 50.657087528000062 ], [ -119.747800243999933, 50.65541213600001 ], [ -119.74780582899993, 50.65541245 ], [ -119.74785136, 50.655086036000093 ], [ -119.752079522999935, 50.655323617000093 ], [ -119.753489766999976, 50.655402822000077 ], [ -119.753147451999951, 50.657858923000077 ], [ -119.75428511099993, 50.657922806000016 ], [ -119.754247692999968, 50.658191306000084 ], [ -119.753928835999929, 50.660479229000018 ], [ -119.754669273999923, 50.660520800000015 ], [ -119.754170451999954, 50.66409998600011 ], [ -119.748530948999957, 50.663783237000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15783699", "BldgCostT": "9992212", "sL_LossRatio": "1", "sL_AssetLoss": "1004", "sL_BldgLoss": "1004", "sL_StrLoss": "1004", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0A7421313F15DC06E75D6FAE4524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.765571886999965, 50.653250126000103 ], [ -119.765590516, 50.653116187000123 ], [ -119.764300856999967, 50.653043892000035 ], [ -119.764692767999946, 50.650226544000084 ], [ -119.763632394999917, 50.650167090000068 ], [ -119.76359727899991, 50.650419500000105 ], [ -119.763307736999963, 50.650403264000012 ], [ -119.762972689999941, 50.652811310000082 ], [ -119.757334541, 50.652495001000077 ], [ -119.757459115999922, 50.651600497000061 ], [ -119.752343740999891, 50.651313267000042 ], [ -119.75235867, 50.651206157000033 ], [ -119.752065032999965, 50.65118966200005 ], [ -119.750309180999949, 50.651091011000062 ], [ -119.75035122599995, 50.650789439000093 ], [ -119.750281300999958, 50.650785510000091 ], [ -119.750532773, 50.648981767000087 ], [ -119.750780285999937, 50.647206285000017 ], [ -119.752684973999976, 50.647313299000118 ], [ -119.752703001999961, 50.647183929000057 ], [ -119.75431679699993, 50.647274574000058 ], [ -119.757744784999943, 50.647467040000059 ], [ -119.758321976999966, 50.647499437000157 ], [ -119.758457790999941, 50.646523960000096 ], [ -119.75855844299997, 50.646529609000076 ], [ -119.75860400399992, 50.646202364000082 ], [ -119.758964049999975, 50.646222570000113 ], [ -119.759011604999941, 50.645880972000043 ], [ -119.760048356999931, 50.645939151000043 ], [ -119.760064759999963, 50.645821296000044 ], [ -119.761953348999924, 50.645927251000117 ], [ -119.761993187999963, 50.645640940000114 ], [ -119.763396158999967, 50.645719629000119 ], [ -119.763420831999937, 50.645542273000075 ], [ -119.764700667999975, 50.645614040000012 ], [ -119.764702771999936, 50.645598903000071 ], [ -119.766106430999969, 50.645677596000048 ], [ -119.770340107999957, 50.645914841000085 ], [ -119.770314885999966, 50.646096344000028 ], [ -119.770372258999927, 50.646099558000103 ], [ -119.770372998999932, 50.646094235000106 ], [ -119.771851122000015, 50.646177026000011 ], [ -119.771857645999916, 50.646130061000036 ], [ -119.771751398999953, 50.646124111000091 ], [ -119.771840531999942, 50.64548251100009 ], [ -119.771015317999968, 50.645436292000092 ], [ -119.771512591000018, 50.641856951000072 ], [ -119.771516208999941, 50.641857153000096 ], [ -119.771815101, 50.639705453 ], [ -119.772695139999954, 50.639754743000026 ], [ -119.772860721999947, 50.638562474000032 ], [ -119.773102337999916, 50.638576006000058 ], [ -119.773137322999958, 50.638324080000068 ], [ -119.775026392999948, 50.638429856000101 ], [ -119.775638987999955, 50.638464152000111 ], [ -119.77613332599999, 50.638491824000077 ], [ -119.776599194999932, 50.639208508000081 ], [ -119.776658405999967, 50.639971890000041 ], [ -119.77684329299997, 50.640453288000039 ], [ -119.777170081999898, 50.640789578000046 ], [ -119.777535308999973, 50.641165407000052 ], [ -119.777721387, 50.64193449600009 ], [ -119.77811018099996, 50.642743398000086 ], [ -119.778565061999984, 50.643344473000099 ], [ -119.778938994999976, 50.643838600000038 ], [ -119.779467604999979, 50.644235067000075 ], [ -119.779385047999952, 50.644830083000059 ], [ -119.779322055999927, 50.645284076000046 ], [ -119.779084752999935, 50.646994252000027 ], [ -119.777431784999976, 50.646901776000099 ], [ -119.777384493999975, 50.647242490000089 ], [ -119.775906325999927, 50.647159772000045 ], [ -119.775513469999979, 50.649989227000013 ], [ -119.774910728999927, 50.649955492000032 ], [ -119.774874754999956, 50.650214541000082 ], [ -119.774536257999955, 50.65019559400006 ], [ -119.774512348999963, 50.650367749000047 ], [ -119.772675261999922, 50.650264903000078 ], [ -119.772427854999975, 50.652045793000049 ], [ -119.771429204999933, 50.651989873000069 ], [ -119.771210187999941, 50.653566017000088 ], [ -119.768470409, 50.653412555000024 ], [ -119.765571886999965, 50.653250126000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7515833", "BldgCostT": "5183333", "sL_LossRatio": "1", "sL_AssetLoss": "463", "sL_BldgLoss": "463", "sL_StrLoss": "463", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000960EAD80C8E95DC0AD84EE92385F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.647830794999933, 50.751026938000045 ], [ -119.64783596699999, 50.750990526000074 ], [ -119.647200105999929, 50.750954290000031 ], [ -119.646768084999948, 50.750929668000019 ], [ -119.64699501299998, 50.749332398000064 ], [ -119.647276443999942, 50.747351334000022 ], [ -119.647487860999917, 50.747363383000035 ], [ -119.647601475999949, 50.746563540000075 ], [ -119.648748034999969, 50.746628880000095 ], [ -119.648896461999968, 50.745583735000082 ], [ -119.648902250999981, 50.74554297700012 ], [ -119.647934200999927, 50.745487811000018 ], [ -119.648133275999925, 50.744086157000027 ], [ -119.648213168999916, 50.743523621000044 ], [ -119.648303977999902, 50.742884196000077 ], [ -119.648442404999912, 50.741909448000051 ], [ -119.649736687999948, 50.741983204000107 ], [ -119.649995738999934, 50.740158580000035 ], [ -119.650147553999886, 50.74016723000009 ], [ -119.650151733999934, 50.740137783000179 ], [ -119.650670109999936, 50.740167318000069 ], [ -119.650685613999926, 50.740058096000048 ], [ -119.650725530999964, 50.740060370000016 ], [ -119.651321730999953, 50.740094336000034 ], [ -119.651479821999942, 50.738980514000026 ], [ -119.649097200999961, 50.738844754000048 ], [ -119.649142727999958, 50.73852410300006 ], [ -119.648945317999988, 50.738512852000078 ], [ -119.64936807399999, 50.735535216000123 ], [ -119.649453362999949, 50.734934455000079 ], [ -119.652024330999893, 50.735080950000075 ], [ -119.652072058, 50.73474461500011 ], [ -119.653506285999967, 50.734826312000031 ], [ -119.65351259399992, 50.73478184800004 ], [ -119.653797402999899, 50.734798069000114 ], [ -119.653832079, 50.734553632000058 ], [ -119.653845198999932, 50.734461155000091 ], [ -119.659492913999927, 50.734782663000068 ], [ -119.659469157999979, 50.734950264000048 ], [ -119.660133203999919, 50.734988047000108 ], [ -119.65962601199999, 50.73856649100005 ], [ -119.658677077999968, 50.73851249800002 ], [ -119.658653074999975, 50.738681813 ], [ -119.65813355399996, 50.738652249000026 ], [ -119.657947545999903, 50.739964154000049 ], [ -119.658712700999928, 50.74000769500006 ], [ -119.658205337999945, 50.743586112000067 ], [ -119.657798639999925, 50.743562970000049 ], [ -119.657758132999959, 50.743848622000037 ], [ -119.65750817199995, 50.743834398000047 ], [ -119.65723182, 50.745783030000062 ], [ -119.656916946999928, 50.745765110000065 ], [ -119.656899411999987, 50.745888737000044 ], [ -119.656072950999928, 50.745841700000057 ], [ -119.655910732999942, 50.746985257000127 ], [ -119.655418801999971, 50.746957257000048 ], [ -119.655395917999911, 50.747118569000044 ], [ -119.654409462999979, 50.747062413000037 ], [ -119.654288066999953, 50.747917942000115 ], [ -119.654716288999936, 50.747942321000103 ], [ -119.654673947999981, 50.748240729000031 ], [ -119.655125096999924, 50.748266410000056 ], [ -119.65505824899999, 50.748737562000088 ], [ -119.655106530999916, 50.748740311000105 ], [ -119.65459878099999, 50.752318675000069 ], [ -119.653614867, 50.752262664000099 ], [ -119.653276755999926, 50.754644800000115 ], [ -119.652927342999988, 50.754624907000071 ], [ -119.652885154999979, 50.754922109000098 ], [ -119.652337544999938, 50.754890930000045 ], [ -119.647234950999945, 50.754600273000051 ], [ -119.647402874999926, 50.753418331000034 ], [ -119.647743312999978, 50.751021953000063 ], [ -119.647830794999933, 50.751026938000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "95.6", "sL_BldgLoss": "95.6", "sL_StrLoss": "95.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3CEFB9C4EE95DC0C7B71C5487564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.64139511, 50.677734361000041 ], [ -119.641903066999987, 50.67415574200006 ], [ -119.642067180999987, 50.674165119000143 ], [ -119.642071959999939, 50.674131445000036 ], [ -119.64224254, 50.674141192000071 ], [ -119.643657303999959, 50.674222020000073 ], [ -119.643698101999988, 50.673934482000035 ], [ -119.647871208999945, 50.674172793000125 ], [ -119.647758305000011, 50.674500403000053 ], [ -119.648006884999916, 50.674909199000126 ], [ -119.648010895999946, 50.674980395000048 ], [ -119.647466914999924, 50.675343601000066 ], [ -119.64744851199994, 50.675532989000054 ], [ -119.647569687999948, 50.675692493000035 ], [ -119.6483318, 50.675125712000096 ], [ -119.648422896999961, 50.674971799000112 ], [ -119.648173708999977, 50.674356610000132 ], [ -119.648203065999951, 50.674191738000054 ], [ -119.649338133999933, 50.674256526000086 ], [ -119.649332766999962, 50.674294387000018 ], [ -119.649618926999935, 50.674310719000047 ], [ -119.649111581999961, 50.677889373000049 ], [ -119.647544698, 50.677799937000074 ], [ -119.647582793000012, 50.677670700000114 ], [ -119.647352299, 50.677361684000104 ], [ -119.64779080699995, 50.677072610000074 ], [ -119.64769271199998, 50.676867496000078 ], [ -119.647562688999969, 50.67682620800008 ], [ -119.647391375999959, 50.677045495000066 ], [ -119.646920493, 50.677236307000079 ], [ -119.646858588999962, 50.677390199000079 ], [ -119.647019195, 50.677710587000071 ], [ -119.647237215999922, 50.677801591000083 ], [ -119.647204505999966, 50.678032216000126 ], [ -119.647040376999939, 50.678022846 ], [ -119.647035600999942, 50.678056520000077 ], [ -119.642243003999937, 50.677782807000099 ], [ -119.64139511, 50.677734361000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DEDA153CFDEE5DC00C48B192C55C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.731633383999977, 50.722831220000074 ], [ -119.737280188999975, 50.723148800000054 ], [ -119.736779284999926, 50.726727643000089 ], [ -119.731132031999977, 50.726410038000047 ], [ -119.731633383999977, 50.722831220000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10266000", "BldgCostT": "7080000", "sL_LossRatio": "1", "sL_AssetLoss": "690", "sL_BldgLoss": "690", "sL_StrLoss": "690", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D2A1B94F8EC5DC005847399DC674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.679320871999948, 50.815253386000066 ], [ -119.679512221, 50.813901626000096 ], [ -119.680818186999943, 50.813975557000106 ], [ -119.683681508999982, 50.814137595000034 ], [ -119.683662956999939, 50.813814088000051 ], [ -119.684088322999969, 50.813804296000022 ], [ -119.684072867999973, 50.813534809000039 ], [ -119.684498230999935, 50.813525016000014 ], [ -119.68448277200001, 50.813255529000038 ], [ -119.685146171999918, 50.813240252000092 ], [ -119.685758853999985, 50.813226140000069 ], [ -119.685774319999922, 50.813495627000123 ], [ -119.686199680999948, 50.813485828000076 ], [ -119.68618421199993, 50.813216341000036 ], [ -119.688165934999986, 50.813170668000083 ], [ -119.688198196999949, 50.812942424000063 ], [ -119.688725722999905, 50.812972249000076 ], [ -119.688720883999977, 50.812888027000035 ], [ -119.688907679999915, 50.812883720000066 ], [ -119.689141084, 50.811232238000059 ], [ -119.689296602999931, 50.810131781000031 ], [ -119.689374938999947, 50.809577443000059 ], [ -119.689600176999932, 50.8095901760001 ], [ -119.68962493799998, 50.809414948000089 ], [ -119.689856696999954, 50.809428049000068 ], [ -119.689880334999955, 50.809260755000132 ], [ -119.690106460999942, 50.809273536000042 ], [ -119.690125532999971, 50.809138560000058 ], [ -119.690687856999929, 50.809170344000108 ], [ -119.690754028999962, 50.808701973000097 ], [ -119.690941866999964, 50.808712589000081 ], [ -119.690962028999934, 50.808569877000117 ], [ -119.691143680999957, 50.808580144000054 ], [ -119.691162126999927, 50.808449582000016 ], [ -119.691568130999954, 50.808472527000056 ], [ -119.69161702599996, 50.808126392000091 ], [ -119.691772026999971, 50.808135151000052 ], [ -119.69179782799992, 50.807952495000052 ], [ -119.69372415, 50.808061341000062 ], [ -119.693980930999956, 50.806242843000085 ], [ -119.695029535999979, 50.806302079000048 ], [ -119.695036483999914, 50.806252867000097 ], [ -119.695728485999965, 50.806291953000056 ], [ -119.695902314999941, 50.805060483000027 ], [ -119.695930625999921, 50.805062082000063 ], [ -119.695953421999945, 50.80490058500002 ], [ -119.699907375999928, 50.805123831000124 ], [ -119.700648949999959, 50.805165685000084 ], [ -119.701610321999951, 50.80521993800005 ], [ -119.701566919999905, 50.805527697000059 ], [ -119.703291388999929, 50.80562499300008 ], [ -119.70328445899996, 50.805674149 ], [ -119.703660880999962, 50.805695383000135 ], [ -119.703578214999965, 50.806281735 ], [ -119.7038088259999, 50.806294744000105 ], [ -119.703873022999943, 50.805839368000065 ], [ -119.704019331999959, 50.805847621000026 ], [ -119.704060432999881, 50.805556073000034 ], [ -119.707212672999901, 50.805733832000023 ], [ -119.709717472999969, 50.805875016000115 ], [ -119.70961897799998, 50.806574319000099 ], [ -119.711771381999981, 50.806695595000051 ], [ -119.711931488999966, 50.805558454000106 ], [ -119.712458467999951, 50.805588139000101 ], [ -119.71279278699997, 50.80321326800005 ], [ -119.718449592999946, 50.803531771000038 ], [ -119.718372670999898, 50.804078712000035 ], [ -119.718995411999941, 50.804113757000046 ], [ -119.718816979999971, 50.805382533000056 ], [ -119.718940101999948, 50.805389461000054 ], [ -119.71879757, 50.806402943000059 ], [ -119.718631087999938, 50.806568798000072 ], [ -119.717899400999954, 50.806900595000037 ], [ -119.716581709999929, 50.807191197000037 ], [ -119.71592021, 50.807548685000022 ], [ -119.714277596999963, 50.808576906000077 ], [ -119.713360298999959, 50.809650797000067 ], [ -119.712818712999962, 50.81011218900003 ], [ -119.712036084999966, 50.81058080300005 ], [ -119.711649395999984, 50.811480912000064 ], [ -119.711789002999964, 50.811945188000024 ], [ -119.712132603999947, 50.812242805000032 ], [ -119.71277971399995, 50.812380991000119 ], [ -119.713758715999944, 50.812843899000022 ], [ -119.713859987999953, 50.813147211000093 ], [ -119.71378360599995, 50.813535983000101 ], [ -119.713303595, 50.814329301000086 ], [ -119.712392079999958, 50.815015797000093 ], [ -119.709634106999957, 50.815665192000083 ], [ -119.709038005000011, 50.815940104000049 ], [ -119.708806907999943, 50.816106709000067 ], [ -119.708738714, 50.81639580700007 ], [ -119.70852712099996, 50.816653599000077 ], [ -119.707655198999973, 50.8173116090001 ], [ -119.707484876999928, 50.817549397000079 ], [ -119.707562385999935, 50.818644698000057 ], [ -119.708015199, 50.819363888000076 ], [ -119.708134002999913, 50.820169997000065 ], [ -119.708081186999934, 50.820504694000078 ], [ -119.70803274799999, 50.820575579000035 ], [ -119.700261969999971, 50.817884280000065 ], [ -119.694483436, 50.815898838000088 ], [ -119.694483165999912, 50.815898717000053 ], [ -119.69452859099998, 50.815810673000065 ], [ -119.694595454999941, 50.815754039000076 ], [ -119.694651106999913, 50.815676123000038 ], [ -119.694692652999947, 50.815608209000089 ], [ -119.694733988999971, 50.815530795000051 ], [ -119.694761218999972, 50.815463384000076 ], [ -119.69478825499999, 50.815386497000055 ], [ -119.694829624999926, 50.815309131000056 ], [ -119.694870766999955, 50.815222241000114 ], [ -119.694926207, 50.815134824000069 ], [ -119.694967577999989, 50.815057458000091 ], [ -119.695049841999946, 50.814883713000015 ], [ -119.695160333999979, 50.814689985000072 ], [ -119.695229914999985, 50.81459255500009 ], [ -119.695299282999898, 50.814485683000022 ], [ -119.695354546999923, 50.814388814 ], [ -119.695409579999946, 50.814282479000077 ], [ -119.695479125999952, 50.814185060000064 ], [ -119.695534386999924, 50.814088190000042 ], [ -119.695589842999965, 50.814000797000105 ], [ -119.695630945999966, 50.813913918000011 ], [ -119.695672293999934, 50.813836528000095 ], [ -119.695713065999925, 50.813730651000142 ], [ -119.695851760999929, 50.813516918000062 ], [ -119.695935677999927, 50.813418893000041 ], [ -119.695963076999988, 50.813360992000057 ], [ -119.696101808, 50.813147248000092 ], [ -119.696114983999976, 50.81308979500006 ], [ -119.696197276999968, 50.812916040000054 ], [ -119.696252304999931, 50.812809705000063 ], [ -119.696473281999943, 50.812422215000019 ], [ -119.696528911999906, 50.812344275000072 ], [ -119.696570255999987, 50.812266885000035 ], [ -119.696611813999937, 50.812198995000074 ], [ -119.696667653999967, 50.812130497000062 ], [ -119.696709191999958, 50.812062583000071 ], [ -119.696750346999949, 50.81197571700006 ], [ -119.696791653999952, 50.811898338000098 ], [ -119.696832789000027, 50.811811447000096 ], [ -119.696887850999943, 50.811705102000118 ], [ -119.69691523199999, 50.811647179000062 ], [ -119.696956999999884, 50.811588730000047 ], [ -119.696984431999979, 50.811530819000026 ], [ -119.69702614899991, 50.811472358000081 ], [ -119.697053580999921, 50.811414447000082 ], [ -119.697095313999952, 50.811356009000107 ], [ -119.69712273, 50.811298075000067 ], [ -119.69717798399995, 50.811201207000089 ], [ -119.697233607999976, 50.81112326600006 ], [ -119.697274563999912, 50.811026924000025 ], [ -119.697385404000016, 50.810852125000054 ], [ -119.697440502999953, 50.810745768000061 ], [ -119.69757917699998, 50.810532036000062 ], [ -119.69764874699996, 50.810434604000129 ], [ -119.697814465999926, 50.810144008000066 ], [ -119.697869310999963, 50.810028163000048 ], [ -119.697979353, 50.80981549300008 ], [ -119.698034602999883, 50.809718625000116 ], [ -119.698089640999967, 50.809612256000023 ], [ -119.69813689099999, 50.809552695 ], [ -119.703185585999933, 50.811047146000064 ], [ -119.703550352, 50.810401480000088 ], [ -119.704253410999939, 50.809146274000071 ], [ -119.704259627999974, 50.809135353000073 ], [ -119.70353264699996, 50.808902757000105 ], [ -119.700446922999987, 50.807773757000042 ], [ -119.699976356999983, 50.80853185400008 ], [ -119.698951509999944, 50.808183615000125 ], [ -119.698965043999934, 50.808152401 ], [ -119.699024499999936, 50.808057938000061 ], [ -119.699115502999987, 50.807869290000021 ], [ -119.699162876999964, 50.807792024000072 ], [ -119.699224255999937, 50.807714628000063 ], [ -119.699256659999946, 50.807628984000104 ], [ -119.699304069, 50.807551706000076 ], [ -119.699349532999932, 50.807457392000053 ], [ -119.699371802999977, 50.807405978000105 ], [ -119.699374872999954, 50.807399644000043 ], [ -119.69941726499999, 50.807311666 ], [ -119.699476808999933, 50.807217203000029 ], [ -119.699523200999948, 50.807131408000068 ], [ -119.699568735999904, 50.80703707300011 ], [ -119.699629134999981, 50.806951149000071 ], [ -119.69967556099999, 50.806865342000059 ], [ -119.69972391499995, 50.806796604000091 ], [ -119.69975827799999, 50.806728017000097 ], [ -119.699805669999947, 50.806650716000085 ], [ -119.69985113099996, 50.806556403000059 ], [ -119.699887387000018, 50.806504837000034 ], [ -119.69993384899999, 50.806419019000074 ], [ -119.699981237999978, 50.806341775000071 ], [ -119.70000152199998, 50.806273338000018 ], [ -119.700033977, 50.80618770500007 ], [ -119.700056242999921, 50.806136289000044 ], [ -119.700092480999913, 50.806084701000138 ], [ -119.700113747999922, 50.806024792000123 ], [ -119.700150055000023, 50.805973239000089 ], [ -119.700220654999953, 50.805853063 ], [ -119.70025687199994, 50.805801509000084 ], [ -119.70027821099994, 50.805741579000077 ], [ -119.700289249999955, 50.805715955000089 ], [ -119.69968286299995, 50.805623068000052 ], [ -119.69957096499995, 50.805452410000086 ], [ -119.699380274999896, 50.805638669000068 ], [ -119.699026808999932, 50.805983900000093 ], [ -119.698201897999965, 50.806627093000031 ], [ -119.696543225, 50.807723708000061 ], [ -119.68903704799996, 50.812804050000089 ], [ -119.68600687299994, 50.814854499000013 ], [ -119.683625110999927, 50.816465939000068 ], [ -119.682663902999934, 50.816096518000087 ], [ -119.681768802999969, 50.815737711000075 ], [ -119.679871345999956, 50.814986924000138 ], [ -119.680089848999927, 50.817504904000053 ], [ -119.680102338999959, 50.817650474000082 ], [ -119.680203419999955, 50.818828812000056 ], [ -119.678401443, 50.8188784640001 ], [ -119.675953977999967, 50.819101526000097 ], [ -119.676006695999916, 50.818729356000091 ], [ -119.676981071999947, 50.818784542000067 ], [ -119.677100991999936, 50.817937780000094 ], [ -119.67807790099999, 50.817993100000116 ], [ -119.678180683999983, 50.817267203 ], [ -119.678237508999985, 50.817270421000025 ], [ -119.67844620699999, 50.815796416000111 ], [ -119.678447057999989, 50.815790405000044 ], [ -119.678918304999939, 50.81581708800006 ], [ -119.679238507999969, 50.815835217 ], [ -119.679320871999948, 50.815253386000066 ] ], [ [ -119.706719306999943, 50.81035388500009 ], [ -119.706377407000019, 50.812779846000076 ], [ -119.706251588999976, 50.8127727540001 ], [ -119.706117270999968, 50.813725713000068 ], [ -119.706692024999924, 50.813758115000041 ], [ -119.706328617999986, 50.816336442000122 ], [ -119.70840082299999, 50.81645323500009 ], [ -119.708434923999931, 50.816211226000064 ], [ -119.708275434999962, 50.816202238000123 ], [ -119.708653758999958, 50.813517223000069 ], [ -119.708206919999938, 50.81349204100011 ], [ -119.70832509799996, 50.812653299000026 ], [ -119.707880367999948, 50.812628234000115 ], [ -119.708189150999914, 50.810436738000085 ], [ -119.706719306999943, 50.81035388500009 ] ], [ [ -119.697651303999947, 50.813703521000086 ], [ -119.697796704999973, 50.812673317000076 ], [ -119.697761503999971, 50.812671330000086 ], [ -119.697616100999937, 50.813701534000117 ], [ -119.697651303999947, 50.813703521000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "51.8", "sL_BldgLoss": "51.8", "sL_StrLoss": "51.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000018F6AC5297EC5DC055C9F8DE7C604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.695740716999978, 50.751950948000122 ], [ -119.69981334299996, 50.752181186000037 ], [ -119.69974809199999, 50.752644320000051 ], [ -119.69930912299999, 50.75575973900002 ], [ -119.693658480999943, 50.755440251000074 ], [ -119.693900921999941, 50.753721198000058 ], [ -119.694163147999944, 50.751861723000033 ], [ -119.694396842999979, 50.751874941000054 ], [ -119.695740716999978, 50.751950948000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "143", "sL_BldgLoss": "143", "sL_StrLoss": "143", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000899C3A66CBE95DC0FB8EC814FF614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.649001624999968, 50.765469312000015 ], [ -119.64949130699992, 50.762022418000079 ], [ -119.651362986000024, 50.762129004000023 ], [ -119.655142462999947, 50.762344136000088 ], [ -119.655137457999942, 50.762379403000054 ], [ -119.658093169999944, 50.762547555000054 ], [ -119.657585501999947, 50.766125875000036 ], [ -119.657153123999962, 50.766101282000079 ], [ -119.656863786999935, 50.768140288000048 ], [ -119.656679637999972, 50.768129813000051 ], [ -119.656678279999966, 50.768139392000066 ], [ -119.655550317999953, 50.768075225000111 ], [ -119.65510459399998, 50.768049866000098 ], [ -119.65496365599995, 50.769042729 ], [ -119.654081890999976, 50.76899255600005 ], [ -119.654029333999958, 50.769362750000035 ], [ -119.648377301, 50.769040977000053 ], [ -119.648395814999944, 50.768910685000094 ], [ -119.648885735999926, 50.765462712000044 ], [ -119.649001624999968, 50.765469312000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "122", "sL_BldgLoss": "122", "sL_StrLoss": "122", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021D2EB2623E75DC09C114A04CF664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.610256713999931, 50.805473894000052 ], [ -119.610271879999956, 50.805367895000067 ], [ -119.60988680399997, 50.805345849000062 ], [ -119.609963480999937, 50.804809978000037 ], [ -119.606612335999927, 50.804618060000053 ], [ -119.607124511999956, 50.801040132000033 ], [ -119.607573212999924, 50.801065835000045 ], [ -119.607634912999956, 50.800634743000067 ], [ -119.608063889999954, 50.800659315000082 ], [ -119.608129014999918, 50.800204253000118 ], [ -119.613784691999939, 50.800528048000103 ], [ -119.613581354999923, 50.801950082000033 ], [ -119.616054617999922, 50.802091588000039 ], [ -119.615989984999956, 50.802543755000094 ], [ -119.616375037999944, 50.802565781000069 ], [ -119.61608458099991, 50.804597800000082 ], [ -119.615863583999925, 50.806143744000089 ], [ -119.610207182999929, 50.805820057000119 ], [ -119.610256713999931, 50.805473894000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "143.8", "sL_BldgLoss": "143.8", "sL_StrLoss": "143.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F5779E192E85DC0F5BF1A6F44634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.632327943999925, 50.778851216000078 ], [ -119.632331590999982, 50.778825614000034 ], [ -119.631078703999933, 50.778754083000045 ], [ -119.631495570999945, 50.775828983000046 ], [ -119.629493454999988, 50.775714645000036 ], [ -119.630003473999949, 50.772136493000126 ], [ -119.630431747999936, 50.772160954000078 ], [ -119.63049947799999, 50.771685704000021 ], [ -119.636151717999979, 50.772008378000066 ], [ -119.635752289999957, 50.774813430000087 ], [ -119.638616231999947, 50.77497681600007 ], [ -119.638106867999937, 50.778554995000064 ], [ -119.6380695, 50.778552863000129 ], [ -119.637981097999955, 50.779173796000116 ], [ -119.632327943999925, 50.778851216000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "109.5", "sL_BldgLoss": "109.5", "sL_StrLoss": "109.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000031CE42AFFDE65DC0BCE0DB0D85644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.60495778899994, 50.788444844000082 ], [ -119.605341741999936, 50.785762387000055 ], [ -119.603850574999953, 50.785676901000102 ], [ -119.603740263999953, 50.785670576000051 ], [ -119.602220439999911, 50.785583425000034 ], [ -119.600579502999906, 50.785489305000098 ], [ -119.59990501099999, 50.785450612000034 ], [ -119.600417504999911, 50.78187263500007 ], [ -119.606070809999977, 50.782196826000067 ], [ -119.605686932000012, 50.784879298000071 ], [ -119.609928795999949, 50.785122358000081 ], [ -119.610210303999921, 50.783153963000125 ], [ -119.610507238999944, 50.783170971000025 ], [ -119.610519693999933, 50.78308386900008 ], [ -119.615605696999978, 50.783375070000012 ], [ -119.616173227, 50.783407549000039 ], [ -119.616105815999987, 50.783879364000022 ], [ -119.618442986999966, 50.784013089000076 ], [ -119.61799571200001, 50.787144479000098 ], [ -119.617931908999964, 50.78759113800006 ], [ -119.612277835999976, 50.787267549000106 ], [ -119.61232627599999, 50.786928738000029 ], [ -119.610886893999961, 50.786846314000066 ], [ -119.61061195699989, 50.788768804 ], [ -119.60495778899994, 50.788444844000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "46.8", "sL_BldgLoss": "46.8", "sL_StrLoss": "46.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F30A3CDEC1E35DC008A63FA0D8554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.556402794999912, 50.668654564000079 ], [ -119.562041535000034, 50.668981023000093 ], [ -119.56189149599993, 50.670025067000097 ], [ -119.561527271999964, 50.672559298000138 ], [ -119.561036148999946, 50.67253087600006 ], [ -119.561012957999964, 50.672692209000097 ], [ -119.555373760999913, 50.672365699000089 ], [ -119.555395031999964, 50.672217846000123 ], [ -119.555888510000031, 50.668787451000121 ], [ -119.556379590999953, 50.668815897000094 ], [ -119.556402794999912, 50.668654564000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.7", "sL_BldgLoss": "40.7", "sL_StrLoss": "40.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7D3B6A370E95DC048EAF30739594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.646303613999976, 50.695931907000094 ], [ -119.64623048899989, 50.69565558900009 ], [ -119.64639389199999, 50.695301013000119 ], [ -119.646634104999947, 50.695016188000118 ], [ -119.647089119999961, 50.694799700000054 ], [ -119.647163536999955, 50.694651107 ], [ -119.64763329500002, 50.694677914000081 ], [ -119.647584238000022, 50.695023685000109 ], [ -119.647674116999966, 50.695028813000071 ], [ -119.647565721999939, 50.695792835000056 ], [ -119.648692717999921, 50.695857137000104 ], [ -119.64869883599999, 50.695857486000136 ], [ -119.648698634999931, 50.695858904000062 ], [ -119.6481995499999, 50.699377001000073 ], [ -119.647684014999939, 50.699310209 ], [ -119.647147, 50.699079407000042 ], [ -119.646703598999977, 50.698757587000088 ], [ -119.646670191999931, 50.697173889000055 ], [ -119.646857084999951, 50.696468910000142 ], [ -119.646671486999978, 50.696185409000023 ], [ -119.646303613999976, 50.695931907000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "107.7", "sL_BldgLoss": "107.7", "sL_StrLoss": "107.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ABCC180FC4EA5DC0FDB94F2BD8694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.666778900999972, 50.829628170000085 ], [ -119.666828187999954, 50.829280807000018 ], [ -119.666432412999939, 50.829258362000111 ], [ -119.666449829999976, 50.829135616000066 ], [ -119.663353620999928, 50.828959978000086 ], [ -119.66342176299996, 50.828479981000079 ], [ -119.663464413999947, 50.82817954000005 ], [ -119.663861540999946, 50.825381892000067 ], [ -119.665532972, 50.825476719000051 ], [ -119.665590482999932, 50.825071431000048 ], [ -119.666313538999987, 50.825112444000084 ], [ -119.666329854999944, 50.824997448000083 ], [ -119.671693615999928, 50.82530154700008 ], [ -119.671898569999939, 50.825313162 ], [ -119.67193791699998, 50.825035607000146 ], [ -119.672233314999929, 50.822951679000028 ], [ -119.67248327099999, 50.822965844000088 ], [ -119.672637259999973, 50.821879385000109 ], [ -119.673222189999976, 50.821912531000073 ], [ -119.67322633399999, 50.821883300000074 ], [ -119.6733063, 50.821887830000065 ], [ -119.673393624999932, 50.823658582000071 ], [ -119.673378540999948, 50.824926965000046 ], [ -119.673370314999971, 50.82492711700008 ], [ -119.673372337999979, 50.825347825000101 ], [ -119.671464866999912, 50.825550554000046 ], [ -119.671670878999919, 50.8275561150001 ], [ -119.671697220999988, 50.827821160000049 ], [ -119.670780410999967, 50.828955906000033 ], [ -119.66986889199994, 50.829803358000099 ], [ -119.666778900999972, 50.829628170000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "1", "sL_AssetLoss": "171.1", "sL_BldgLoss": "171.1", "sL_StrLoss": "171.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034C70B4C1BE15DC048EB7FEBD0644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.515251470999914, 50.792231163000103 ], [ -119.515286135999972, 50.791992382000046 ], [ -119.514931277999921, 50.791971755000098 ], [ -119.515055386999933, 50.791116884000083 ], [ -119.509829972999952, 50.790813017000083 ], [ -119.510349719999979, 50.787235479000039 ], [ -119.512853795999916, 50.787381127000103 ], [ -119.513852688999961, 50.787439211000063 ], [ -119.513852855999943, 50.78743805900006 ], [ -119.51502093, 50.787505969000094 ], [ -119.515268128999978, 50.78580301100007 ], [ -119.51473749799996, 50.785772162000072 ], [ -119.514758218999972, 50.785629426000128 ], [ -119.514481799999956, 50.785613355000116 ], [ -119.515001115999922, 50.782035774000043 ], [ -119.520653820999939, 50.782364281000092 ], [ -119.520633121999978, 50.782507019000072 ], [ -119.520909524, 50.782523075000071 ], [ -119.520814121999976, 50.783180940000094 ], [ -119.521654543999958, 50.78322975500005 ], [ -119.521494367999949, 50.784334386000054 ], [ -119.521931111999919, 50.784359750000093 ], [ -119.521737206999902, 50.78569700400007 ], [ -119.523259761999967, 50.785785416000053 ], [ -119.522741061999966, 50.789363021000113 ], [ -119.521380557999962, 50.789284020000125 ], [ -119.520905464999956, 50.792559654000094 ], [ -119.51984840199998, 50.792498263000041 ], [ -119.515251470999914, 50.792231163000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "154", "sL_BldgLoss": "154", "sL_StrLoss": "154", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A499591156E95DC03BBBE786C74D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.643173894999933, 50.61156323900007 ], [ -119.643650597999965, 50.60819867500004 ], [ -119.641887884999974, 50.608097810000096 ], [ -119.64238670599994, 50.604577551000041 ], [ -119.642395017999917, 50.604518890000037 ], [ -119.642692314999948, 50.604535904000045 ], [ -119.642699696999955, 50.604483801000143 ], [ -119.642734918999935, 50.604235197000072 ], [ -119.643174097000013, 50.604260330000109 ], [ -119.643200307999976, 50.604075307000095 ], [ -119.643667087999958, 50.604102017000145 ], [ -119.643719004999966, 50.603735519000068 ], [ -119.649350236999936, 50.604057590000089 ], [ -119.649061748999927, 50.606095834000016 ], [ -119.648843662999951, 50.60763654200008 ], [ -119.64837684299999, 50.607609855000085 ], [ -119.648324958999964, 50.607976353 ], [ -119.64788574399995, 50.607951241000087 ], [ -119.647859548000028, 50.608136263000056 ], [ -119.647562225999977, 50.608119264000059 ], [ -119.647549998999978, 50.608205622000071 ], [ -119.649312728999973, 50.60830639900005 ], [ -119.648991459999976, 50.610575987000075 ], [ -119.648806102999941, 50.611885334000121 ], [ -119.643173894999933, 50.61156323900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "134", "sL_BldgLoss": "134", "sL_StrLoss": "134", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041EDF99274E65DC05D0E268B1C674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.599626341, 50.802711763000119 ], [ -119.605282272999943, 50.803035986000076 ], [ -119.604970370999951, 50.805214188000079 ], [ -119.604769926999936, 50.806613897000098 ], [ -119.602956854999945, 50.806509996000067 ], [ -119.602704632999945, 50.808270642000053 ], [ -119.602012367999976, 50.808230963 ], [ -119.602004601999951, 50.808285158000018 ], [ -119.596348031, 50.807960771000076 ], [ -119.596554542999954, 50.806520644000088 ], [ -119.596861065999917, 50.804382905000082 ], [ -119.597553267999928, 50.804422616000025 ], [ -119.597561036999963, 50.804368421000063 ], [ -119.599374010999938, 50.804472410000123 ], [ -119.599626341, 50.802711763000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "155.6", "sL_BldgLoss": "155.6", "sL_StrLoss": "155.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005343D963BBE85DC080359C6C62664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.636497551999952, 50.797203700000111 ], [ -119.642153053999948, 50.797526061000099 ], [ -119.641765202999963, 50.800250765000108 ], [ -119.641643716999965, 50.801104163000076 ], [ -119.63906448699997, 50.800957184000112 ], [ -119.636624654999963, 50.800818093000011 ], [ -119.636520035999979, 50.801552388000061 ], [ -119.636377371999956, 50.802553680000123 ], [ -119.632216626999963, 50.802316359000088 ], [ -119.630721275999946, 50.802231029000076 ], [ -119.63123149899999, 50.798652981000039 ], [ -119.636250283999914, 50.798939293000053 ], [ -119.636497551999952, 50.797203700000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189084", "BldgCostT": "4268334", "sL_LossRatio": "1", "sL_AssetLoss": "422.8", "sL_BldgLoss": "422.8", "sL_StrLoss": "422.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E74836702AED5DC0976625734D664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.705422271, 50.805453480000047 ], [ -119.705447108999977, 50.80527724800006 ], [ -119.704374448999928, 50.805216752 ], [ -119.704388034999951, 50.805120367000072 ], [ -119.70387693899994, 50.805091538000056 ], [ -119.703901350999942, 50.804918371000042 ], [ -119.703407735999946, 50.804890526000051 ], [ -119.703413108999968, 50.804852420000081 ], [ -119.703157829999938, 50.80483801900003 ], [ -119.703662295999933, 50.801259653000066 ], [ -119.70499044899999, 50.801334574000137 ], [ -119.705040351999941, 50.800980484000043 ], [ -119.706032396999987, 50.801036434000089 ], [ -119.706353909999962, 50.798754643000024 ], [ -119.706260953999944, 50.798749400000062 ], [ -119.706250797999985, 50.798821481000061 ], [ -119.705796517999914, 50.798795861000038 ], [ -119.70577268599996, 50.79896499200003 ], [ -119.704299006999975, 50.798881869000112 ], [ -119.70212460399992, 50.798759184000126 ], [ -119.701960046999943, 50.798749897000043 ], [ -119.701991858999975, 50.799301176000021 ], [ -119.702010735999963, 50.799628267000074 ], [ -119.70191118299999, 50.799630574000091 ], [ -119.701585504999969, 50.799638121000079 ], [ -119.70161660399999, 50.800177090000112 ], [ -119.701778240999914, 50.800173344 ], [ -119.702041840999939, 50.800167234000085 ], [ -119.702057390999983, 50.800436719000032 ], [ -119.702907868999958, 50.800417004000096 ], [ -119.702949925999988, 50.801145502000068 ], [ -119.702970099999973, 50.80149493900015 ], [ -119.702744298, 50.801500175000058 ], [ -119.70254485199996, 50.801504798000124 ], [ -119.702565476999894, 50.801862064000041 ], [ -119.702575964999966, 50.802043765000064 ], [ -119.702431378999933, 50.802047118000061 ], [ -119.702150712, 50.802053623000099 ], [ -119.702175564999919, 50.802484213000113 ], [ -119.702197373999923, 50.802862075000064 ], [ -119.70197671499993, 50.802867189000068 ], [ -119.701772114999969, 50.80287193100007 ], [ -119.701791178999926, 50.803202259000059 ], [ -119.701818772999971, 50.803680382000024 ], [ -119.7014941, 50.803687907000075 ], [ -119.700725200999969, 50.803705722000053 ], [ -119.7001177, 50.803719792000031 ], [ -119.700008903999958, 50.801833402000121 ], [ -119.699583652999976, 50.801843250000054 ], [ -119.699537035999967, 50.801034796000089 ], [ -119.699111789999947, 50.801044642000093 ], [ -119.699096255999947, 50.800775158000071 ], [ -119.698671013999913, 50.800785002000069 ], [ -119.698577817999976, 50.799168093000141 ], [ -119.699003046999962, 50.799158250000083 ], [ -119.698971977999946, 50.798619280000025 ], [ -119.699397200999954, 50.798609435000088 ], [ -119.699366127999937, 50.798070465000066 ], [ -119.70020041899997, 50.798051145000038 ], [ -119.700211892999988, 50.797969789000042 ], [ -119.700192749999985, 50.797637838000085 ], [ -119.700118165999967, 50.797633628000028 ], [ -119.700109366999968, 50.797696025000036 ], [ -119.69918602199999, 50.797643897000093 ], [ -119.69915193599995, 50.797885547000078 ], [ -119.699031777999934, 50.797878763000064 ], [ -119.698986146999971, 50.798202249000035 ], [ -119.698189526999968, 50.798157269000065 ], [ -119.697604865999935, 50.798124253 ], [ -119.693330150999913, 50.797882761000061 ], [ -119.693358474999968, 50.79768215100011 ], [ -119.693835322999945, 50.794304411000098 ], [ -119.693955470999967, 50.794311201000014 ], [ -119.694001134999922, 50.793987715000071 ], [ -119.694924397999927, 50.7940398860001 ], [ -119.694958503999956, 50.7937982360001 ], [ -119.695179789999969, 50.793810740000069 ], [ -119.695188597, 50.7937483420001 ], [ -119.699710491999937, 50.794003741000076 ], [ -119.70018946199994, 50.794030783000096 ], [ -119.700844083000021, 50.794067738000081 ], [ -119.700702465999953, 50.795072058000123 ], [ -119.701075422999935, 50.795093111000078 ], [ -119.701099270999975, 50.7949239800001 ], [ -119.701504792999941, 50.794946870000082 ], [ -119.701514955999926, 50.794874789000083 ], [ -119.701875879999989, 50.794895160000046 ], [ -119.701968372999943, 50.794239098000141 ], [ -119.702116337999939, 50.794247449000061 ], [ -119.702146075999934, 50.794036502000104 ], [ -119.702673541999943, 50.794066270000059 ], [ -119.702676452999967, 50.794045615000101 ], [ -119.702876519999933, 50.794056904000037 ], [ -119.708332030999955, 50.794364633000065 ], [ -119.708008257999978, 50.796663425000126 ], [ -119.70788376599991, 50.797547257000119 ], [ -119.708358688999951, 50.797574033000018 ], [ -119.708489887, 50.796642524000021 ], [ -119.708729738999963, 50.79493945600008 ], [ -119.709822779999953, 50.795001074000048 ], [ -119.710317411999966, 50.795028954000024 ], [ -119.710905693999933, 50.795693497000087 ], [ -119.712122503999964, 50.796609304000086 ], [ -119.713237090999925, 50.797986512000058 ], [ -119.713793998999932, 50.798532006000059 ], [ -119.714282091999962, 50.798862413000037 ], [ -119.716216814999939, 50.799914890000032 ], [ -119.716519219999938, 50.799989 ], [ -119.717020189, 50.800309393000084 ], [ -119.719318601999973, 50.802243493000041 ], [ -119.719416781999939, 50.802367794000091 ], [ -119.717877618999964, 50.8022811720001 ], [ -119.71780383, 50.802805806000102 ], [ -119.713036626999894, 50.802537379000078 ], [ -119.713011017, 50.802719316000115 ], [ -119.71205001, 50.802665180000098 ], [ -119.712011384999954, 50.802939540000082 ], [ -119.71148237599995, 50.802909735000107 ], [ -119.711079308999942, 50.805772354000091 ], [ -119.707312037999912, 50.805560034000088 ], [ -119.705422271, 50.805453480000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875417", "BldgCostT": "4741667", "sL_LossRatio": "1", "sL_AssetLoss": "516", "sL_BldgLoss": "516", "sL_StrLoss": "516", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BB9B0668BE25DC0D9CB5B1A64674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.535253213999965, 50.813737475000025 ], [ -119.535275050999957, 50.813586672000099 ], [ -119.534991816999977, 50.813570268000028 ], [ -119.53550981799998, 50.809992708000081 ], [ -119.535554424999987, 50.809995291000078 ], [ -119.535620980999965, 50.809535581000013 ], [ -119.531609687999946, 50.809303183000061 ], [ -119.53187345799995, 50.807482309000093 ], [ -119.529379142999957, 50.807337726000107 ], [ -119.529684564999954, 50.805229942000054 ], [ -119.529677599999928, 50.805229538000106 ], [ -119.529947092, 50.803369538000055 ], [ -119.528749798999982, 50.803300115000063 ], [ -119.52914003799998, 50.800606965000121 ], [ -119.529268179999988, 50.799722541000051 ], [ -119.531302500999956, 50.799840489000076 ], [ -119.531364011, 50.800179805000013 ], [ -119.531935611999955, 50.800797898000027 ], [ -119.532436682999958, 50.801119805000035 ], [ -119.533052622999932, 50.801995706000092 ], [ -119.533801697999962, 50.802726303000036 ], [ -119.534298891999981, 50.803812909000079 ], [ -119.534467598999967, 50.804817010000122 ], [ -119.534372185999985, 50.805160300000097 ], [ -119.534617605999941, 50.80548779300009 ], [ -119.534924686999943, 50.805643095000079 ], [ -119.535242321999974, 50.805502100000098 ], [ -119.535451930999926, 50.805520772000101 ], [ -119.535417255999903, 50.805760293000034 ], [ -119.535311859999922, 50.805754187000034 ], [ -119.535296652999961, 50.805859223000041 ], [ -119.536364209999959, 50.805921056000045 ], [ -119.536410169999954, 50.805603540000114 ], [ -119.536849205999943, 50.805539085000113 ], [ -119.536956217999915, 50.805410897000023 ], [ -119.537761615999955, 50.805104704000051 ], [ -119.537860209999977, 50.804815603000108 ], [ -119.538123992999942, 50.804718792000138 ], [ -119.538073384999976, 50.80326319400006 ], [ -119.537921576999935, 50.802933830000043 ], [ -119.538953684999953, 50.802993589000089 ], [ -119.543273338999938, 50.803243597000069 ], [ -119.543212779999919, 50.803662447000072 ], [ -119.544016369999952, 50.803708938000042 ], [ -119.544690920999955, 50.803747959000084 ], [ -119.544635416999981, 50.804131928000096 ], [ -119.548822515999959, 50.804374046000085 ], [ -119.548366340999934, 50.807531581000084 ], [ -119.54863754199998, 50.807547257000095 ], [ -119.54849754699994, 50.808516211000054 ], [ -119.548438025999971, 50.808928178000052 ], [ -119.549580906999964, 50.808994234000046 ], [ -119.549554489999949, 50.809177108000092 ], [ -119.550328094999955, 50.809221814000068 ], [ -119.549811286999955, 50.812799446000064 ], [ -119.549282349999942, 50.812768880000093 ], [ -119.549203089999949, 50.813317459000082 ], [ -119.549129434999941, 50.813313202000074 ], [ -119.5491112939999, 50.813438761000086 ], [ -119.548580573999971, 50.813408089000063 ], [ -119.548555475999962, 50.813581773000124 ], [ -119.542898625999925, 50.813254686000093 ], [ -119.543000874999905, 50.812547681000055 ], [ -119.543247380999901, 50.810843094000084 ], [ -119.542464078999956, 50.810797779000069 ], [ -119.54292070299999, 50.807640281000076 ], [ -119.542649503999939, 50.807624591000021 ], [ -119.54270503, 50.807240624000016 ], [ -119.538915975999927, 50.807021336000105 ], [ -119.538517697999964, 50.806998278000101 ], [ -119.538520743999953, 50.806977231000104 ], [ -119.538273165999897, 50.806962897000069 ], [ -119.538211343999961, 50.80739010700011 ], [ -119.537901167999962, 50.809533433000084 ], [ -119.538934496, 50.809593255000081 ], [ -119.541296557999928, 50.809729964000049 ], [ -119.541188996999935, 50.810473554000112 ], [ -119.541427605999928, 50.810487361000064 ], [ -119.541126015999964, 50.81257224000008 ], [ -119.540974653999953, 50.813618536000106 ], [ -119.5409100699999, 50.814064947000098 ], [ -119.538970087999985, 50.813952676000042 ], [ -119.535253213999965, 50.813737475000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "112", "sL_BldgLoss": "112", "sL_StrLoss": "112", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068DB1FDE69E95DC0BE869E9CBA5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.64422163099999, 50.718832676000034 ], [ -119.644413777999887, 50.717479740000087 ], [ -119.644251190999967, 50.717470463000048 ], [ -119.644285379999957, 50.717229735000018 ], [ -119.643689788999893, 50.717195747000105 ], [ -119.644198010999901, 50.713617285000097 ], [ -119.649843032999982, 50.713939289000102 ], [ -119.649808876999899, 50.714180020000136 ], [ -119.650404431999945, 50.714213974000074 ], [ -119.650128485, 50.716158912000047 ], [ -119.65029107, 50.716168182000075 ], [ -119.649783304999971, 50.719746660000133 ], [ -119.645236553999965, 50.719487360000102 ], [ -119.644514208999922, 50.719446147000077 ], [ -119.644137550999972, 50.71942465500009 ], [ -119.64422163099999, 50.718832676000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "125.5", "sL_BldgLoss": "125.5", "sL_StrLoss": "125.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000984F35FEEDE75DC0CEBA6F4A33654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.620983512999942, 50.790257135000068 ], [ -119.621419523999947, 50.787203393000027 ], [ -119.621440989999911, 50.787053030000045 ], [ -119.621822364999943, 50.787074834000073 ], [ -119.627095102999974, 50.787376157000068 ], [ -119.627036735000033, 50.787785348000078 ], [ -119.62773861099997, 50.787825439000095 ], [ -119.627707000999948, 50.788047065000043 ], [ -119.627711826999942, 50.788047340000098 ], [ -119.627201442999962, 50.791625416000059 ], [ -119.627006777999938, 50.791614298000141 ], [ -119.626990439999972, 50.791728821000049 ], [ -119.626727841, 50.791713820000062 ], [ -119.62640434399998, 50.793981229000032 ], [ -119.625696227999967, 50.793940779000117 ], [ -119.625668920999942, 50.794132146000038 ], [ -119.620013966000016, 50.793808950000013 ], [ -119.620524948999943, 50.790230916000041 ], [ -119.620983512999942, 50.790257135000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "33.1", "sL_BldgLoss": "33.1", "sL_StrLoss": "33.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7342CC2E4E65DC08B4F223E076D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.611378980999945, 50.85084078000007 ], [ -119.611842733999978, 50.850867297 ], [ -119.611814474999974, 50.851064634000075 ], [ -119.611425496999971, 50.851266203000151 ], [ -119.61075230199999, 50.851686293000114 ], [ -119.610623110999938, 50.851922691000027 ], [ -119.61018298499999, 50.85218479000013 ], [ -119.609095782999987, 50.852550793000013 ], [ -119.606946014999977, 50.852976697000045 ], [ -119.606150401999983, 50.853255803000138 ], [ -119.605323093999942, 50.853714391000075 ], [ -119.605156715999954, 50.853935585000087 ], [ -119.604933444999986, 50.853928870000125 ], [ -119.604964884999944, 50.853709569000024 ], [ -119.605411336999978, 50.850595205000104 ], [ -119.605747142999945, 50.850614423000131 ], [ -119.605758524999942, 50.850535012000087 ], [ -119.606178467999911, 50.850559045000118 ], [ -119.606180705999961, 50.850543423000069 ], [ -119.611378980999945, 50.85084078000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "1", "sL_AssetLoss": "151.2", "sL_BldgLoss": "151.2", "sL_StrLoss": "151.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D805F4417E65DC04727855801684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589975924999976, 50.816306979000046 ], [ -119.590175583999908, 50.81491630700004 ], [ -119.588402738999932, 50.814814498000068 ], [ -119.588454301999917, 50.813875007000121 ], [ -119.588321992000019, 50.81354600800011 ], [ -119.587590301999953, 50.813417807000057 ], [ -119.587515638999903, 50.813439541000015 ], [ -119.587646738, 50.812526711000046 ], [ -119.587840869, 50.811174913000038 ], [ -119.589190894999916, 50.811252457000045 ], [ -119.593497783999965, 50.811499727000104 ], [ -119.59342785199999, 50.811987125000066 ], [ -119.59556997599995, 50.812110048000108 ], [ -119.595940711999901, 50.809525195000013 ], [ -119.595943412999986, 50.80952534900009 ], [ -119.596094866, 50.808469296000084 ], [ -119.596870710999923, 50.808513806000065 ], [ -119.596872228999956, 50.808503214000012 ], [ -119.602528872999983, 50.808827574000084 ], [ -119.602016239999926, 50.812405448000057 ], [ -119.601240321999981, 50.812360973000082 ], [ -119.60123880499999, 50.812371566000159 ], [ -119.601236103999952, 50.812371411000036 ], [ -119.601084757999942, 50.813427467000054 ], [ -119.596661507, 50.813173826000074 ], [ -119.59629078399999, 50.815758671000104 ], [ -119.595990553, 50.815741449000029 ], [ -119.595956079999937, 50.815981779000069 ], [ -119.595728602999927, 50.815968729000062 ], [ -119.595633504999952, 50.816631685000111 ], [ -119.589975924999976, 50.816306979000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "37.6", "sL_BldgLoss": "37.6", "sL_StrLoss": "37.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DA71050C79ED5DC07982F566F1634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.708334404999917, 50.778440809000116 ], [ -119.708403032999939, 50.778444680000099 ], [ -119.708993486999958, 50.778702333000076 ], [ -119.713926434999948, 50.780886300000084 ], [ -119.713954309999934, 50.781467122000052 ], [ -119.713609914999935, 50.781447716000109 ], [ -119.713484663999935, 50.782338051000082 ], [ -119.713080325999982, 50.782315266000118 ], [ -119.711343605999943, 50.782217379000016 ], [ -119.707830568999967, 50.7820192900001 ], [ -119.708334404999917, 50.778440809000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "75.7", "sL_BldgLoss": "75.7", "sL_StrLoss": "75.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000947B68BC80EC5DC073320E81655F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.69345998299994, 50.743051386000097 ], [ -119.699109064000012, 50.743370889000047 ], [ -119.698604885999956, 50.746949475000044 ], [ -119.69850622099996, 50.746943897000101 ], [ -119.698445902999978, 50.747371978000103 ], [ -119.697756386999984, 50.747332995000093 ], [ -119.697737377999957, 50.747467893000099 ], [ -119.697146592999943, 50.74743449000006 ], [ -119.697146451, 50.747435508000116 ], [ -119.691496871999931, 50.747115907000044 ], [ -119.692001619999928, 50.743537355000051 ], [ -119.692592346999945, 50.74357078600007 ], [ -119.692592490999942, 50.743569768000064 ], [ -119.693281944999953, 50.743608783000077 ], [ -119.693300965999981, 50.743473884000075 ], [ -119.693399622999948, 50.743479467000064 ], [ -119.69345998299994, 50.743051386000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22924500", "BldgCostT": "15810000", "sL_LossRatio": "1", "sL_AssetLoss": "2136", "sL_BldgLoss": "2136", "sL_StrLoss": "2136", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A89C823E49EA5DC04B3537CF264F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.655772643999967, 50.633639142000092 ], [ -119.655864722, 50.632988342000012 ], [ -119.653474611999954, 50.63285191200012 ], [ -119.652124258999962, 50.632774809000111 ], [ -119.651429347999951, 50.632735124000071 ], [ -119.651596828999956, 50.631552144000054 ], [ -119.651431929999916, 50.63154272700006 ], [ -119.651855483999967, 50.628550810000121 ], [ -119.651938568999952, 50.627963864000087 ], [ -119.652276004, 50.627983135000079 ], [ -119.652306062999969, 50.627770773000094 ], [ -119.652374402999925, 50.627774676000122 ], [ -119.654547772999976, 50.627898773 ], [ -119.65712873399994, 50.628046087000087 ], [ -119.657295610999896, 50.629083787000098 ], [ -119.657434512999927, 50.629287497000064 ], [ -119.65773188599999, 50.629038203000071 ], [ -119.657697815999938, 50.628706393000058 ], [ -119.657857387999968, 50.628495609000048 ], [ -119.65771847799999, 50.628079739000029 ], [ -119.657940365999977, 50.628092400000106 ], [ -119.65778067799999, 50.629221563000051 ], [ -119.658109038999953, 50.629240298000077 ], [ -119.657995659999983, 50.63004201900003 ], [ -119.65876889599997, 50.63008613300012 ], [ -119.658874424999979, 50.629339839000096 ], [ -119.658863849999975, 50.629339235000018 ], [ -119.659125118999953, 50.627491448000107 ], [ -119.65736773299993, 50.627391178000032 ], [ -119.657324804, 50.627329187000065 ], [ -119.656317905999913, 50.626551606000056 ], [ -119.656203307999988, 50.626743892000029 ], [ -119.656230602, 50.626975988000027 ], [ -119.65655121099995, 50.627344581000031 ], [ -119.655215458999962, 50.627268339000111 ], [ -119.655233577000018, 50.627140279000045 ], [ -119.655129464999959, 50.627134337000058 ], [ -119.655208895999976, 50.626572893000031 ], [ -119.654911796999926, 50.626555932 ], [ -119.655017709999953, 50.625807315000053 ], [ -119.655048703999952, 50.625843705000058 ], [ -119.655305918999943, 50.625900704000152 ], [ -119.655258909999986, 50.625073207000121 ], [ -119.655141920999966, 50.624929339000097 ], [ -119.655157984999946, 50.624815786000049 ], [ -119.65504430499999, 50.624809296000144 ], [ -119.655000709999911, 50.624755684000036 ], [ -119.655070777999967, 50.624241495000128 ], [ -119.654682306999945, 50.623854107000092 ], [ -119.654670647999978, 50.624787964000085 ], [ -119.653807865999923, 50.62473870300007 ], [ -119.653264762999967, 50.624707690000065 ], [ -119.653327621999921, 50.624263499000094 ], [ -119.65298238599992, 50.624243784000051 ], [ -119.653358668999971, 50.621584694000035 ], [ -119.653488817999971, 50.62066488300011 ], [ -119.653679689999976, 50.620675783000117 ], [ -119.653726549999973, 50.62034459300007 ], [ -119.652548487999923, 50.620277312000098 ], [ -119.652463978999933, 50.620272485000093 ], [ -119.650069860999949, 50.620135711000053 ], [ -119.650143660999959, 50.619614398000046 ], [ -119.646580083999979, 50.619410717000015 ], [ -119.646583352999983, 50.61938763800007 ], [ -119.643435742999927, 50.619207636000056 ], [ -119.641751529999965, 50.619111284000063 ], [ -119.642258797999901, 50.615532412000029 ], [ -119.643790055999915, 50.61562001500004 ], [ -119.647891494999968, 50.61585455200003 ], [ -119.647888226999967, 50.615877631000103 ], [ -119.648223426999962, 50.615896793000068 ], [ -119.648536230999952, 50.613687553000084 ], [ -119.648570464000016, 50.613689510000036 ], [ -119.648595035999961, 50.613515954000029 ], [ -119.64863396399997, 50.613518179000053 ], [ -119.648793691999927, 50.612389955 ], [ -119.650246826999989, 50.612473009000034 ], [ -119.651501644999897, 50.612544714000137 ], [ -119.651545127999938, 50.612237435000146 ], [ -119.65152645299996, 50.612236367000051 ], [ -119.651551287999951, 50.612060857000053 ], [ -119.651344857999945, 50.612049062000068 ], [ -119.651479136999939, 50.61110015900006 ], [ -119.649863375999971, 50.611007824000048 ], [ -119.650197828999978, 50.608644784000063 ], [ -119.65062469499999, 50.609042397000024 ], [ -119.651168891999944, 50.609929608000101 ], [ -119.651495010999938, 50.610183083000038 ], [ -119.652267800999965, 50.610587603000056 ], [ -119.652479874999969, 50.610618894000055 ], [ -119.65254210699996, 50.610465098000063 ], [ -119.652036893999977, 50.610026505000086 ], [ -119.651455194999954, 50.60974309100002 ], [ -119.651161391999921, 50.60901240000004 ], [ -119.650480909999956, 50.60825328300006 ], [ -119.65030382199997, 50.60789584200004 ], [ -119.65036990699997, 50.607428880000057 ], [ -119.650976704999948, 50.607463560000085 ], [ -119.65103523599997, 50.607049926000109 ], [ -119.651106825999989, 50.606543995000052 ], [ -119.651157177999949, 50.606546873000084 ], [ -119.65116771799994, 50.606472386000078 ], [ -119.651095628999926, 50.606468266000014 ], [ -119.651602011999941, 50.602889297000068 ], [ -119.657233194999947, 50.603210971000081 ], [ -119.657186398999954, 50.603542024000056 ], [ -119.661326883999948, 50.603778358000064 ], [ -119.661308182999917, 50.603910745000121 ], [ -119.661367992999956, 50.603914159000091 ], [ -119.661110153, 50.605739340000135 ], [ -119.663884235999959, 50.605897592000098 ], [ -119.663824497999968, 50.606320636000092 ], [ -119.667100062, 50.606507405000094 ], [ -119.667064317999959, 50.606760650000062 ], [ -119.66712667799996, 50.606764206000037 ], [ -119.667105296999978, 50.606915692000065 ], [ -119.669998129999954, 50.607080555000039 ], [ -119.670968904999938, 50.6086588800001 ], [ -119.672395148999939, 50.611258584000083 ], [ -119.66713187799995, 50.610958715000038 ], [ -119.66677627199995, 50.613477816000099 ], [ -119.664067356999979, 50.613323381000015 ], [ -119.663781454999949, 50.615347624000059 ], [ -119.667212345999957, 50.615543207000066 ], [ -119.667459866999963, 50.61555731300006 ], [ -119.666987669999955, 50.618902092000106 ], [ -119.670137411000027, 50.619081546000125 ], [ -119.66988176699999, 50.620893067000104 ], [ -119.670509822, 50.620928839000037 ], [ -119.670233503999896, 50.622886888000082 ], [ -119.670863760999964, 50.622922782000046 ], [ -119.671217561999953, 50.620415390000076 ], [ -119.674551376999915, 50.620605195000074 ], [ -119.674780389, 50.61898116900003 ], [ -119.677506082999955, 50.619136276000063 ], [ -119.68015392199996, 50.62324255900014 ], [ -119.681191627999951, 50.625319365000017 ], [ -119.681074903999956, 50.626147841000019 ], [ -119.68104122699998, 50.626386858000068 ], [ -119.676401757999926, 50.62612299900006 ], [ -119.676341032999929, 50.626553665000131 ], [ -119.676181486999923, 50.626544588000108 ], [ -119.676148337999962, 50.626779670000104 ], [ -119.675669945999971, 50.626752450000019 ], [ -119.675650622999967, 50.626889481000077 ], [ -119.675567813999962, 50.626884769000036 ], [ -119.670016343, 50.626568748000096 ], [ -119.670028453999933, 50.626482945000092 ], [ -119.66970353899994, 50.626464439000046 ], [ -119.669979902999955, 50.624506401000126 ], [ -119.669771958999974, 50.624494557000048 ], [ -119.669513524999928, 50.626325523000013 ], [ -119.665157957999966, 50.626077362000046 ], [ -119.665089792999964, 50.626559944000043 ], [ -119.665606386999954, 50.626589386000042 ], [ -119.665477330999963, 50.627503093000016 ], [ -119.665566750999986, 50.62750818800005 ], [ -119.665061202999951, 50.63108711400011 ], [ -119.664424500999928, 50.631050827000152 ], [ -119.664363394999938, 50.631483330000044 ], [ -119.664252420999958, 50.631477004000061 ], [ -119.664149826999946, 50.632203133000104 ], [ -119.661964966999989, 50.632078581000073 ], [ -119.66171291699996, 50.63386178500015 ], [ -119.661424003999954, 50.633845312000112 ], [ -119.661407707999942, 50.633960591000118 ], [ -119.660375785999989, 50.633901747000095 ], [ -119.658070972999937, 50.633770284000036 ], [ -119.658078395999937, 50.633681197000094 ], [ -119.657744422999926, 50.633273906000042 ], [ -119.657407876999926, 50.633561494000034 ], [ -119.657338120999952, 50.633728473000083 ], [ -119.656309852999925, 50.633669799000117 ], [ -119.655772643999967, 50.633639142000092 ] ], [ [ -119.663917555999944, 50.625734114000075 ], [ -119.664015756999959, 50.625039003000069 ], [ -119.662144700999974, 50.624932323000067 ], [ -119.66213056299992, 50.625032361000088 ], [ -119.662046470999911, 50.625627433000048 ], [ -119.662764551999942, 50.625668379000068 ], [ -119.663917555999944, 50.625734114000075 ] ], [ [ -119.655893515999935, 50.62225329200006 ], [ -119.655892497999957, 50.621730591000087 ], [ -119.655495104999943, 50.620471592000072 ], [ -119.655185493999966, 50.6204972990001 ], [ -119.65513099099999, 50.620767890000067 ], [ -119.655311285999971, 50.621482801000056 ], [ -119.655573810999911, 50.621856006000051 ], [ -119.655586875999958, 50.622115195000063 ], [ -119.65451070599994, 50.622832987000081 ], [ -119.654408792999945, 50.62301531300011 ], [ -119.654574593999911, 50.623218892000054 ], [ -119.65487818299999, 50.623085105000044 ], [ -119.655168787999941, 50.62271049800006 ], [ -119.655893515999935, 50.62225329200006 ] ], [ [ -119.656125076999984, 50.620075161000123 ], [ -119.656357019999973, 50.618435144000131 ], [ -119.66045424399999, 50.618668958000036 ], [ -119.66057321599996, 50.617827141000092 ], [ -119.660852949999978, 50.615847685000119 ], [ -119.660735249, 50.615840971000083 ], [ -119.660666770999939, 50.616325550000091 ], [ -119.66001087399999, 50.6162881300001 ], [ -119.655033921999973, 50.616004056000037 ], [ -119.655411309999977, 50.613335767000116 ], [ -119.65446435699999, 50.613281692000037 ], [ -119.654425203999963, 50.613558495000113 ], [ -119.653354791, 50.6118408950001 ], [ -119.653182392999952, 50.612024599000044 ], [ -119.653129988999979, 50.612376397000091 ], [ -119.65328231700002, 50.612805098000116 ], [ -119.653476497999947, 50.612980293000099 ], [ -119.65394590399994, 50.613806289000067 ], [ -119.653919891999962, 50.614354594000076 ], [ -119.654117086999989, 50.614845996000085 ], [ -119.653882581999952, 50.615427102000083 ], [ -119.653877584999975, 50.615867192000032 ], [ -119.654055806999935, 50.616169862000042 ], [ -119.654011691, 50.616481702000044 ], [ -119.653854778, 50.616472741000074 ], [ -119.653816697999957, 50.616741905000097 ], [ -119.654606626999978, 50.616787015000071 ], [ -119.65502960699996, 50.617460789000035 ], [ -119.65500898899991, 50.618351013000023 ], [ -119.655036887999955, 50.618611607000062 ], [ -119.655510998999958, 50.619256787000083 ], [ -119.655506606999978, 50.619662688000062 ], [ -119.655612503999976, 50.619776607000091 ], [ -119.655829901999979, 50.619561592000068 ], [ -119.655760209999954, 50.62005433100007 ], [ -119.656125076999984, 50.620075161000123 ] ], [ [ -119.662259541, 50.619140217000073 ], [ -119.662135419000023, 50.62001867500004 ], [ -119.662430301999947, 50.620011933000114 ], [ -119.662415075999959, 50.61974243100007 ], [ -119.662838697999931, 50.619732744000046 ], [ -119.662823468999989, 50.619463242000066 ], [ -119.663247085999984, 50.619453553000035 ], [ -119.663232512999926, 50.619195702000077 ], [ -119.662259541, 50.619140217000073 ] ], [ [ -119.664140028999981, 50.62024267200006 ], [ -119.664144626999956, 50.620324012000083 ], [ -119.664282206999985, 50.620331856000142 ], [ -119.664295305999971, 50.6202391200001 ], [ -119.664140028999981, 50.62024267200006 ] ], [ [ -119.657845492999982, 50.608456978000056 ], [ -119.65794848299997, 50.607728368000046 ], [ -119.657390564999986, 50.607696518000061 ], [ -119.657287564999933, 50.608425127000054 ], [ -119.657845492999982, 50.608456978000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6781167", "BldgCostT": "4676667", "sL_LossRatio": "1", "sL_AssetLoss": "387", "sL_BldgLoss": "387", "sL_StrLoss": "387", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000871B8DCFE6E95DC0472BCE8301664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.649662033999931, 50.805562944000016 ], [ -119.64971721299996, 50.805174898000104 ], [ -119.648888134999979, 50.805127724000023 ], [ -119.648910208999951, 50.804972516000056 ], [ -119.648207123999924, 50.80493250500006 ], [ -119.648248669999958, 50.804640398000039 ], [ -119.642790768999959, 50.804329657000061 ], [ -119.643300051999944, 50.800751563000055 ], [ -119.644525761999986, 50.80082137200003 ], [ -119.64458001399997, 50.800440092000052 ], [ -119.650069303999942, 50.800752560000035 ], [ -119.650231789999978, 50.79960962400007 ], [ -119.64911792799991, 50.799546241000016 ], [ -119.649158723999932, 50.799259327000115 ], [ -119.649193523999969, 50.799014568000075 ], [ -119.64914386699995, 50.799011742000054 ], [ -119.649430089999953, 50.796998608000067 ], [ -119.649652581999987, 50.795433598000066 ], [ -119.65010924799995, 50.795459585000103 ], [ -119.650408868999975, 50.793351710000067 ], [ -119.650807771999922, 50.793374410000091 ], [ -119.650860967999961, 50.793000120000038 ], [ -119.652769778999968, 50.793108717000038 ], [ -119.65284710799996, 50.792564465000069 ], [ -119.655351327999966, 50.792706887000051 ], [ -119.655776243999966, 50.78971482500004 ], [ -119.656670537999958, 50.789765673000069 ], [ -119.656977211, 50.787605648000067 ], [ -119.661740804999965, 50.787876372 ], [ -119.662290269999971, 50.787907586000117 ], [ -119.662631648999977, 50.787926978000051 ], [ -119.662556142999918, 50.788459290000112 ], [ -119.663006473999985, 50.788484869000115 ], [ -119.662926023, 50.789052069000086 ], [ -119.664941350999968, 50.789166517000076 ], [ -119.664618015999949, 50.791446676000092 ], [ -119.665393431999973, 50.791490701000129 ], [ -119.665710483999987, 50.791508700000037 ], [ -119.665203096999946, 50.795086935000036 ], [ -119.659547736999968, 50.794765737000056 ], [ -119.659594579999975, 50.794435701000083 ], [ -119.659615717999955, 50.79428677900011 ], [ -119.659291234999941, 50.794268341000084 ], [ -119.65831379299999, 50.794212794000089 ], [ -119.658238059999988, 50.794746266000068 ], [ -119.658160521999946, 50.795292430000117 ], [ -119.657994162999913, 50.796464197 ], [ -119.656667066999944, 50.796388767000039 ], [ -119.656085196999953, 50.796355689000045 ], [ -119.656007899999906, 50.796899942000096 ], [ -119.655608962999978, 50.796877262000052 ], [ -119.65555580099999, 50.797251551000038 ], [ -119.655496335999914, 50.797248171000049 ], [ -119.655458093999982, 50.797517411000086 ], [ -119.65622434499997, 50.797560973000031 ], [ -119.656156227999944, 50.798040603000075 ], [ -119.65577053, 50.800756173000067 ], [ -119.655716132999927, 50.801139139000071 ], [ -119.65022675699997, 50.800826947000132 ], [ -119.650194251999892, 50.801055584000032 ], [ -119.650753986999945, 50.801087430000059 ], [ -119.650699988, 50.801467281000079 ], [ -119.654372095999975, 50.801676132000054 ], [ -119.65436879799995, 50.801699343000045 ], [ -119.656372932999901, 50.801813277000043 ], [ -119.655864681999915, 50.805391426000085 ], [ -119.655392567999982, 50.805364590000039 ], [ -119.65531868699999, 50.805884637000098 ], [ -119.649662033999931, 50.805562944000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "99.3", "sL_BldgLoss": "99.3", "sL_StrLoss": "99.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000078DEC8CE7E95DC0D2CDF6CF705D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.652032599, 50.731654750000068 ], [ -119.652032891999923, 50.731652694000019 ], [ -119.651327977, 50.731612531000088 ], [ -119.651835752999958, 50.72803409400003 ], [ -119.651915807999941, 50.728038656000081 ], [ -119.657482644999902, 50.728355707000077 ], [ -119.65748235299999, 50.728357763000069 ], [ -119.658187221999981, 50.728397888000075 ], [ -119.657679948999927, 50.731976351000078 ], [ -119.653500518999948, 50.731738371000112 ], [ -119.652032599, 50.731654750000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "138.9", "sL_BldgLoss": "138.9", "sL_StrLoss": "138.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BFF58A9DCE15DC0954E3D350B654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52707004299999, 50.791632391000057 ], [ -119.527168951999926, 50.7909498120001 ], [ -119.524948020999943, 50.79082093400006 ], [ -119.524992438999973, 50.790514501000168 ], [ -119.524534529000022, 50.790487923000079 ], [ -119.525053098999962, 50.786910315000092 ], [ -119.530706492999983, 50.787238313000152 ], [ -119.530662117999938, 50.78754475000008 ], [ -119.531120001999952, 50.787571302000053 ], [ -119.531101465999939, 50.787699306 ], [ -119.533621927999945, 50.787845435000122 ], [ -119.53310403199994, 50.791423078000044 ], [ -119.532804338999966, 50.791405706000042 ], [ -119.532724047, 50.791960286000041 ], [ -119.52707004299999, 50.791632391000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "149.6", "sL_BldgLoss": "149.6", "sL_StrLoss": "149.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD4571D8C7E55DC05EFD33DEB1544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.587807058999928, 50.664100927000057 ], [ -119.588058515999975, 50.662343785000097 ], [ -119.586146768999981, 50.66223356800009 ], [ -119.586658951999951, 50.658655135000053 ], [ -119.587318649999929, 50.658693173000096 ], [ -119.587356932999967, 50.65842565100008 ], [ -119.592994612999959, 50.658750550000036 ], [ -119.59264602899999, 50.661188454000069 ], [ -119.594485734, 50.661294413000064 ], [ -119.594289144999919, 50.662669581000067 ], [ -119.593974143999972, 50.6648728710001 ], [ -119.593386368999987, 50.664839021000084 ], [ -119.593374720999989, 50.664920484000056 ], [ -119.587736263999957, 50.664595607000116 ], [ -119.587807058999928, 50.664100927000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "32.5", "sL_BldgLoss": "32.5", "sL_StrLoss": "32.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB58FF8486E25DC05F605628526D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.536888637999965, 50.852117334000098 ], [ -119.542550359999964, 50.852444709000054 ], [ -119.54203243099991, 50.856022127000095 ], [ -119.536370258999938, 50.85569472800006 ], [ -119.536888637999965, 50.852117334000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.6", "sL_BldgLoss": "34.6", "sL_StrLoss": "34.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E03BBD9472E55DC03E69B833596D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582845205999888, 50.852590790000079 ], [ -119.588507322999973, 50.852915842000108 ], [ -119.588267545999955, 50.854584015000036 ], [ -119.585882336999987, 50.855621734000081 ], [ -119.584358101999953, 50.856284828000057 ], [ -119.582330497999976, 50.856168394000072 ], [ -119.582555715999916, 50.854603035000089 ], [ -119.58271056199996, 50.853526731000052 ], [ -119.582845205999888, 50.852590790000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "1", "sL_AssetLoss": "413.9", "sL_BldgLoss": "413.9", "sL_StrLoss": "413.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BAD25BD1E0E35DC00BFA5E850C694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55721249399997, 50.828500554000115 ], [ -119.55744207199993, 50.826910108000057 ], [ -119.557248805999905, 50.826898958000037 ], [ -119.557765181999926, 50.823321349000132 ], [ -119.55809367399992, 50.823340302000076 ], [ -119.558286012999986, 50.822007504000055 ], [ -119.557616559999957, 50.821968877000103 ], [ -119.557932270999956, 50.819781232000096 ], [ -119.557811072999954, 50.819774239000026 ], [ -119.557761153999962, 50.820120147000068 ], [ -119.552103408999955, 50.819793529000108 ], [ -119.552620114999954, 50.816215915000051 ], [ -119.55345673, 50.816264231000055 ], [ -119.553474249999937, 50.816142904000067 ], [ -119.552997294999926, 50.816115360000069 ], [ -119.553253159999898, 50.814343452000102 ], [ -119.553513886999951, 50.812537726000123 ], [ -119.555215204000021, 50.812635969000056 ], [ -119.556782607999963, 50.812726454000057 ], [ -119.559170724999902, 50.812864277000074 ], [ -119.559086423999972, 50.813448649000051 ], [ -119.559563352999987, 50.813476167000083 ], [ -119.55937829, 50.814759065000047 ], [ -119.564508382999989, 50.815054934000017 ], [ -119.564317447999926, 50.816379514000054 ], [ -119.56420852699999, 50.81713508399999 ], [ -119.564641323, 50.817160034000061 ], [ -119.564640992999927, 50.817162321000126 ], [ -119.564851015999935, 50.817174428000087 ], [ -119.564801764999956, 50.817516103000102 ], [ -119.564904538999926, 50.817522027000038 ], [ -119.564704674999959, 50.818908550000081 ], [ -119.564594571999947, 50.819672326000052 ], [ -119.565805259999962, 50.819742107000089 ], [ -119.565789527, 50.81985126100011 ], [ -119.56623085399994, 50.819876695000112 ], [ -119.566211700999972, 50.820009582000118 ], [ -119.566704546999929, 50.820037983000091 ], [ -119.566694810999962, 50.820105542000135 ], [ -119.567731778999956, 50.82016529000007 ], [ -119.567758915999988, 50.820166854000014 ], [ -119.567758130999906, 50.820172310000068 ], [ -119.567339022999988, 50.823080805000089 ], [ -119.56928527, 50.823192917 ], [ -119.568769815999943, 50.826770580000058 ], [ -119.568523090999975, 50.826756369000037 ], [ -119.568470523999949, 50.827121186000078 ], [ -119.564118869999959, 50.826870454000094 ], [ -119.564109520999949, 50.826935286000023 ], [ -119.56315214699994, 50.826880102000082 ], [ -119.563012745999941, 50.827846697000076 ], [ -119.562871376, 50.828826910000082 ], [ -119.55721249399997, 50.828500554000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "282.8", "sL_BldgLoss": "282.8", "sL_StrLoss": "282.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E2C1604858E95DC0517964419B5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.641842027999971, 50.712740404000044 ], [ -119.642250751999896, 50.709863104000114 ], [ -119.641807724999964, 50.709837810000082 ], [ -119.641860396999931, 50.709467008000061 ], [ -119.64091952099993, 50.709413286000043 ], [ -119.640937713999946, 50.709285239000039 ], [ -119.640833426999947, 50.70927928400004 ], [ -119.641224652999952, 50.706525391000113 ], [ -119.640962021999925, 50.706510393000059 ], [ -119.641470339999941, 50.702931898000031 ], [ -119.64258879799992, 50.70299576400005 ], [ -119.642661114999925, 50.702486524000051 ], [ -119.642899259999936, 50.702500121000092 ], [ -119.642919010999918, 50.70236103000007 ], [ -119.643157983999927, 50.702374674000083 ], [ -119.643172004999968, 50.702275936000035 ], [ -119.643335037999961, 50.702285243000041 ], [ -119.648815594, 50.702597996000108 ], [ -119.648307864999978, 50.706176526000064 ], [ -119.648068868999957, 50.706162893000084 ], [ -119.648054858999956, 50.706261631000103 ], [ -119.647816692999939, 50.706248045000081 ], [ -119.647796955000018, 50.706387137000021 ], [ -119.64749640399999, 50.70636999200012 ], [ -119.647470363999957, 50.706553490000076 ], [ -119.647960097999928, 50.706581427000053 ], [ -119.647831308000022, 50.707488997000048 ], [ -119.653378384999925, 50.707805281000091 ], [ -119.652870960999905, 50.711383809000026 ], [ -119.647766487999917, 50.711092774000086 ], [ -119.647486923999935, 50.713062528000158 ], [ -119.642916761999956, 50.712801756000026 ], [ -119.641842027999971, 50.712740404000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "86.5", "sL_BldgLoss": "86.5", "sL_StrLoss": "86.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037DB81DF2BE95DC07A7014AC33594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.641630054999922, 50.699097826000049 ], [ -119.641678783999922, 50.698754706000102 ], [ -119.640808550999964, 50.698705004000054 ], [ -119.640874248999964, 50.698242458000031 ], [ -119.640305866999924, 50.69820999100007 ], [ -119.640418142, 50.697419571000069 ], [ -119.640047192999944, 50.697427978000107 ], [ -119.640032052999956, 50.697158475000016 ], [ -119.639607728999962, 50.69716809100008 ], [ -119.639562316999914, 50.696359583000067 ], [ -119.640571950999984, 50.696336702000075 ], [ -119.640814143999947, 50.69463146400004 ], [ -119.641448480999898, 50.694667698000082 ], [ -119.641491029999884, 50.694368079000093 ], [ -119.641984957999981, 50.694396290000086 ], [ -119.641990709999973, 50.694355791000078 ], [ -119.64219019799998, 50.694367184000029 ], [ -119.646531874999965, 50.694615059000107 ], [ -119.646503102999972, 50.694687210000097 ], [ -119.645555004999949, 50.695724007000116 ], [ -119.645315522999908, 50.696233904000067 ], [ -119.645388603999947, 50.696547199000051 ], [ -119.645917589999939, 50.69687621000007 ], [ -119.646161814999957, 50.697203796000039 ], [ -119.646281694999985, 50.698326001000119 ], [ -119.646533303999959, 50.69899398600004 ], [ -119.647319215999985, 50.699381401000061 ], [ -119.647346002999953, 50.699387823000102 ], [ -119.64727834199999, 50.699383963000081 ], [ -119.64727323399994, 50.699419965000097 ], [ -119.643973833999951, 50.699231655000105 ], [ -119.641630054999922, 50.699097826000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079168C6347EA5DC00D377DC9886A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.658009715999953, 50.833648612000083 ], [ -119.658348342999886, 50.83126547800007 ], [ -119.664008305999957, 50.831586723 ], [ -119.663891601999978, 50.832408810000032 ], [ -119.662411315999947, 50.832646106 ], [ -119.661726822999938, 50.833093304000052 ], [ -119.661142791999964, 50.833332501000065 ], [ -119.659972307999951, 50.833224311000052 ], [ -119.658066081999934, 50.833644404000083 ], [ -119.658009715999953, 50.833648612000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "85.6", "sL_BldgLoss": "85.6", "sL_StrLoss": "85.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008884EFFD8DE45DC01EBDA793686C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.567670233999962, 50.849352402000072 ], [ -119.567828732999928, 50.848253131000043 ], [ -119.567684111999966, 50.848244805000085 ], [ -119.568199900999971, 50.84466723600012 ], [ -119.569203696999935, 50.844725027000024 ], [ -119.56926127499996, 50.84432556000008 ], [ -119.573518105999952, 50.844570532000027 ], [ -119.574922245999943, 50.844651302000045 ], [ -119.574545882999942, 50.847264606000032 ], [ -119.574406994999947, 50.848228902000052 ], [ -119.573547735999966, 50.84817947800012 ], [ -119.573331831999965, 50.849678223000126 ], [ -119.567670233999962, 50.849352402000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "139", "sL_BldgLoss": "139", "sL_StrLoss": "139", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F13CBD233E95DC052E630A96B584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.640196890999931, 50.690536350000059 ], [ -119.64052022099996, 50.688259642000048 ], [ -119.641504567999945, 50.688315879000058 ], [ -119.641580702999988, 50.687779665000065 ], [ -119.641740484999929, 50.687788793000074 ], [ -119.641815621999925, 50.687259570000037 ], [ -119.642244165999927, 50.687284050000102 ], [ -119.647457314999926, 50.687581705000063 ], [ -119.64729959099995, 50.688693575000066 ], [ -119.647795206, 50.688721860000065 ], [ -119.647771808999963, 50.689081510000058 ], [ -119.64789939099991, 50.68933068900008 ], [ -119.648211005999912, 50.689080096000119 ], [ -119.64821823699999, 50.688746 ], [ -119.648268765999944, 50.688748884000049 ], [ -119.647761148999962, 50.692327470000109 ], [ -119.646742804999917, 50.692269354000132 ], [ -119.646722707999942, 50.69241099400012 ], [ -119.646574662999953, 50.692402545000029 ], [ -119.646547610999946, 50.692593197000114 ], [ -119.64611399599994, 50.692568448000074 ], [ -119.646086599999947, 50.692761508000082 ], [ -119.645558920999946, 50.69273138700008 ], [ -119.645316962999971, 50.69443632100004 ], [ -119.642207806, 50.694258796000064 ], [ -119.639674424999939, 50.694114082000034 ], [ -119.640182705999962, 50.690535539000095 ], [ -119.640196890999931, 50.690536350000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287667", "BldgCostT": "3646667", "sL_LossRatio": "1", "sL_AssetLoss": "334", "sL_BldgLoss": "334", "sL_StrLoss": "334", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C0AA3B412E35DC06B472F72E8694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545079996999959, 50.833654809000031 ], [ -119.545109101999969, 50.833453595000073 ], [ -119.545073011999975, 50.833451509000099 ], [ -119.545590438999966, 50.829873984000081 ], [ -119.546527983999908, 50.829928170000088 ], [ -119.546600218999984, 50.829428606000143 ], [ -119.547987012999968, 50.829508743000105 ], [ -119.54828826899994, 50.829526148000092 ], [ -119.548463907999988, 50.828311112000044 ], [ -119.548496371999988, 50.828086522000021 ], [ -119.545716874000021, 50.827925898000096 ], [ -119.545233748, 50.831266510000027 ], [ -119.539574685999966, 50.830939263000118 ], [ -119.540092521999938, 50.827361752000087 ], [ -119.545277564999964, 50.827661601000095 ], [ -119.545529281999904, 50.825920987000089 ], [ -119.54487592599996, 50.825883218000079 ], [ -119.544989269999988, 50.825099487000081 ], [ -119.543292429999909, 50.82500137600006 ], [ -119.5438099, 50.821423824000128 ], [ -119.544346540999982, 50.821454855000084 ], [ -119.544546547000024, 50.820071838000032 ], [ -119.545461727999964, 50.820124753000073 ], [ -119.550204270999956, 50.820398839000127 ], [ -119.550120312, 50.820979929000067 ], [ -119.551475370999967, 50.821058204000117 ], [ -119.551435477999931, 50.821334356000122 ], [ -119.551676881999924, 50.82134829900005 ], [ -119.551202011999919, 50.824635385000128 ], [ -119.55141891999989, 50.824647912000081 ], [ -119.551142113999958, 50.826563809000085 ], [ -119.555300727999949, 50.82680390900007 ], [ -119.555284980999929, 50.826912954000122 ], [ -119.556222903999966, 50.826967085000042 ], [ -119.555706362999942, 50.830544671000041 ], [ -119.554662315999977, 50.830484416000075 ], [ -119.553862677999959, 50.830438260000079 ], [ -119.553806295999948, 50.830828613000016 ], [ -119.552118185999959, 50.830731155000137 ], [ -119.551742250999922, 50.833333055 ], [ -119.550840716999929, 50.833280997000024 ], [ -119.550739443999959, 50.833981777000069 ], [ -119.545079996999959, 50.833654809000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "70.3", "sL_BldgLoss": "70.3", "sL_StrLoss": "70.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088FAFAAD5FE95DC0204E16AD926A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.644677828999988, 50.83124342900004 ], [ -119.644861603999956, 50.829952765000037 ], [ -119.648849330999937, 50.830179619000056 ], [ -119.650521305000012, 50.830274692000074 ], [ -119.650474298999924, 50.830605124000101 ], [ -119.650487830999964, 50.83060589400003 ], [ -119.65047879499997, 50.830669402000105 ], [ -119.650011160999938, 50.833956327000053 ], [ -119.649220138999965, 50.834140762000061 ], [ -119.648184038999915, 50.834081843000057 ], [ -119.64812291, 50.83451134900006 ], [ -119.647865098999944, 50.834622905000103 ], [ -119.646825538999906, 50.835210658000051 ], [ -119.642353444999912, 50.834956188 ], [ -119.642502787999888, 50.833907827000075 ], [ -119.642682924, 50.832643241000049 ], [ -119.64286311099994, 50.831378223000058 ], [ -119.64400931699997, 50.831443462000031 ], [ -119.64464420099992, 50.831479592000129 ], [ -119.644677828999988, 50.83124342900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "308.9", "sL_BldgLoss": "308.9", "sL_StrLoss": "308.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5F685048AE45DC05A72AAEFDB6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.568567552, 50.842341040000107 ], [ -119.568924142999933, 50.839867065000107 ], [ -119.56832971599998, 50.839832839000152 ], [ -119.568766985999943, 50.836799025000026 ], [ -119.568116020000019, 50.836761538000047 ], [ -119.568152678999937, 50.83650720400005 ], [ -119.567720724999973, 50.836482329000084 ], [ -119.567777874999962, 50.836085845000063 ], [ -119.56747014499993, 50.836068122 ], [ -119.567825461, 50.833603049000061 ], [ -119.562833065999968, 50.833315400000089 ], [ -119.562862819999964, 50.833109128000032 ], [ -119.562470068, 50.83308648900001 ], [ -119.562794359999913, 50.830838265000075 ], [ -119.562986099999989, 50.829508882000084 ], [ -119.563183994999932, 50.829520289000087 ], [ -119.563222603999961, 50.829252587000042 ], [ -119.564459927999948, 50.829323902000048 ], [ -119.568881624999932, 50.829578640000101 ], [ -119.568813326999958, 50.830052618000096 ], [ -119.569008155999938, 50.8300638380001 ], [ -119.568899909999942, 50.8308150330001 ], [ -119.568681482, 50.832330808000108 ], [ -119.568978925999886, 50.83234793700008 ], [ -119.569200074999927, 50.830813222000081 ], [ -119.569438838999986, 50.829156130000086 ], [ -119.575097892999977, 50.829481868000087 ], [ -119.575060261, 50.829743284000102 ], [ -119.575129509999982, 50.829747269000045 ], [ -119.574811696999973, 50.831954888000034 ], [ -119.577831676999963, 50.832128598000125 ], [ -119.577802516999981, 50.832331237000062 ], [ -119.578144279999961, 50.832350889000104 ], [ -119.577629427999966, 50.835928555000066 ], [ -119.57481822499993, 50.835766865000046 ], [ -119.574015031999977, 50.835720655000031 ], [ -119.573896185999942, 50.83654595400003 ], [ -119.574505304999946, 50.83658099900007 ], [ -119.57437437099999, 50.837490297000095 ], [ -119.575307464999952, 50.837543974000042 ], [ -119.575533433999937, 50.837556972000094 ], [ -119.575487691999911, 50.837874682000113 ], [ -119.575318864999957, 50.839047275000034 ], [ -119.575273967999962, 50.839359098000095 ], [ -119.575018313999948, 50.84113460400004 ], [ -119.574453604999931, 50.841102120000087 ], [ -119.574228265999977, 50.842666818000097 ], [ -119.573351636999945, 50.842616386000053 ], [ -119.568567552, 50.842341040000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "85.4", "sL_BldgLoss": "85.4", "sL_StrLoss": "85.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C97532BC82E05DC0BD97F37360644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.507536755999936, 50.786940261000026 ], [ -119.507553133999963, 50.7868275780001 ], [ -119.507061247999943, 50.78679894800009 ], [ -119.50723921, 50.78557448400008 ], [ -119.50283309799994, 50.785317933000016 ], [ -119.502839209999962, 50.785275906000059 ], [ -119.502564890999963, 50.785259927000048 ], [ -119.50263210599995, 50.784797774 ], [ -119.501999306999949, 50.784760912000088 ], [ -119.502519609, 50.781183385000098 ], [ -119.502602614999944, 50.781188221000029 ], [ -119.503467806999964, 50.781238618000074 ], [ -119.503503500999955, 50.781336093000064 ], [ -119.503638589999952, 50.781477097999989 ], [ -119.503980991999981, 50.781532594000062 ], [ -119.504454399999972, 50.781368795000105 ], [ -119.50453248799991, 50.781300626000125 ], [ -119.508172114999951, 50.781512525000032 ], [ -119.508104963999969, 50.781974682000026 ], [ -119.508737727999929, 50.782011510000103 ], [ -119.508731621999928, 50.782053539000025 ], [ -119.509005922999933, 50.782069502000077 ], [ -119.508929355999925, 50.782596519000094 ], [ -119.513358519999926, 50.782854183000083 ], [ -119.513301858999924, 50.783244437000086 ], [ -119.51338004499999, 50.783248984000117 ], [ -119.513319082999928, 50.783668874000078 ], [ -119.513709464999977, 50.783691575000056 ], [ -119.513190026999894, 50.787269144000085 ], [ -119.512725187999976, 50.787242113000076 ], [ -119.507536755999936, 50.786940261000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "132", "sL_BldgLoss": "132", "sL_StrLoss": "132", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB500DE2A0E45DC081B121AC84554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.571595757999958, 50.66584288000012 ], [ -119.571674523999945, 50.665293906000038 ], [ -119.577312951999915, 50.665619595000074 ], [ -119.577251349999983, 50.666049314000112 ], [ -119.577888162999983, 50.666086080000049 ], [ -119.577683204999971, 50.66751589200004 ], [ -119.577375195999977, 50.669664441000116 ], [ -119.57661066499999, 50.669620301000045 ], [ -119.576593566999961, 50.669739559000043 ], [ -119.576114689999912, 50.669711909000071 ], [ -119.576095050999982, 50.66984887000006 ], [ -119.572518963, 50.66964232099999 ], [ -119.572353341999985, 50.670796653000139 ], [ -119.572087133999929, 50.670781273000088 ], [ -119.572086230999972, 50.670787559000132 ], [ -119.566447191999941, 50.67046160800006 ], [ -119.566678976999981, 50.668847583000051 ], [ -119.566961037999974, 50.666883301 ], [ -119.567227222999975, 50.666898695000079 ], [ -119.567228125, 50.666892408000074 ], [ -119.570803969999986, 50.667099127 ], [ -119.570969616999932, 50.665944791000072 ], [ -119.571448449999963, 50.665972464000106 ], [ -119.571468100999979, 50.665835503000075 ], [ -119.571595757999958, 50.66584288000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "345.9", "sL_BldgLoss": "345.9", "sL_StrLoss": "345.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF0AF69912EA5DC00B5E1D95D5634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.655951845999965, 50.786909852000115 ], [ -119.655969680999959, 50.786784256000082 ], [ -119.655579043999978, 50.786762043000067 ], [ -119.655673818999901, 50.786094590000069 ], [ -119.655481285999954, 50.78608364200003 ], [ -119.655494149999953, 50.785993050000108 ], [ -119.655244185999962, 50.785978835000058 ], [ -119.655470809999969, 50.78438287299999 ], [ -119.654984786999961, 50.784355231000042 ], [ -119.65515856199994, 50.783131469000104 ], [ -119.653491312999932, 50.783036631000108 ], [ -119.652607895999921, 50.78298636800011 ], [ -119.65307293799999, 50.779712405000062 ], [ -119.653116151999967, 50.779408141000062 ], [ -119.653416397999962, 50.779425225000068 ], [ -119.653614808, 50.778028150000075 ], [ -119.6538921, 50.778043925000063 ], [ -119.653907900999911, 50.777932656000104 ], [ -119.654477785000012, 50.777965077 ], [ -119.654492780999945, 50.777859469000084 ], [ -119.655679858999989, 50.777926994000026 ], [ -119.655780313, 50.77721940100006 ], [ -119.653336927999931, 50.777080398000102 ], [ -119.653420620999896, 50.77649107600007 ], [ -119.653051859999891, 50.7764700930001 ], [ -119.653114224999982, 50.776030960000064 ], [ -119.65309199099994, 50.776029695000098 ], [ -119.653600128999969, 50.772451437000029 ], [ -119.65802033599999, 50.772702876000032 ], [ -119.659252630999944, 50.77277294300012 ], [ -119.659190328999927, 50.773212081000068 ], [ -119.659212561999965, 50.773213345000073 ], [ -119.659188508999975, 50.773382891000068 ], [ -119.659630759999956, 50.773408033000052 ], [ -119.659597828999921, 50.773640161000131 ], [ -119.659787270999985, 50.773650930000031 ], [ -119.659376572000028, 50.776545826000117 ], [ -119.659371913999962, 50.77657865900003 ], [ -119.659466202999937, 50.776584019000062 ], [ -119.661552315999984, 50.776702587000088 ], [ -119.661520094999929, 50.776929766000045 ], [ -119.661044765, 50.78028086300008 ], [ -119.660855129999959, 50.780270087000048 ], [ -119.660740892, 50.781075361000084 ], [ -119.661146433999988, 50.781098406000083 ], [ -119.660920028999925, 50.782694387000099 ], [ -119.661406036999921, 50.782722003000089 ], [ -119.661393185999927, 50.782812594000056 ], [ -119.66164313499999, 50.782826796000066 ], [ -119.66160563499993, 50.783091157000037 ], [ -119.661548453999956, 50.783494256000019 ], [ -119.66174098, 50.78350519500006 ], [ -119.661723162999948, 50.783630792000061 ], [ -119.662113774999952, 50.78365298500011 ], [ -119.661722104999953, 50.786414131000065 ], [ -119.66160618899994, 50.78723123500005 ], [ -119.655951845999965, 50.786909852000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "57.5", "sL_BldgLoss": "57.5", "sL_StrLoss": "57.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085DC77D263E95DC0C0B6FAC1AB4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.644777008999981, 50.597156014000113 ], [ -119.648944397999912, 50.597394387000087 ], [ -119.648437866999984, 50.600973367000044 ], [ -119.645751359999949, 50.600819719000064 ], [ -119.644492715999917, 50.599763595000063 ], [ -119.644563582, 50.598530302000057 ], [ -119.644843307999906, 50.598199793000084 ], [ -119.644618901999962, 50.597484909000052 ], [ -119.644777008999981, 50.597156014000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.5", "sL_BldgLoss": "42.5", "sL_StrLoss": "42.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A1267EB5B8E85DC09563B2B8FF4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.634958605999913, 50.595325443000021 ], [ -119.635006009999984, 50.594991200000131 ], [ -119.633587684999924, 50.594909906000062 ], [ -119.633671275, 50.594320631000095 ], [ -119.633335815999928, 50.59430140000007 ], [ -119.633513226, 50.593050741000113 ], [ -119.633843473999946, 50.590722461000119 ], [ -119.634147781999957, 50.590739905000071 ], [ -119.634685707999935, 50.590770740000025 ], [ -119.634795804999939, 50.590899295000042 ], [ -119.635096489999924, 50.591459098000044 ], [ -119.63558311099996, 50.591835010000061 ], [ -119.635668305999928, 50.59206720600011 ], [ -119.636542400999986, 50.5923079 ], [ -119.63709950799992, 50.59266390199999 ], [ -119.637533195999978, 50.592824889000063 ], [ -119.638272215999962, 50.593401695000118 ], [ -119.639609814999986, 50.59408249800007 ], [ -119.639878006999979, 50.594327399000093 ], [ -119.640423506999966, 50.595233182000101 ], [ -119.640492621999954, 50.595642458000114 ], [ -119.640066192999939, 50.595618039000037 ], [ -119.635305897999942, 50.595345346000052 ], [ -119.634958605999913, 50.595325443000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "191.3", "sL_BldgLoss": "191.3", "sL_StrLoss": "191.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E34FBFD16FE65DC09947FE6060544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596756960999983, 50.6595649160001 ], [ -119.596794734999918, 50.659300567000116 ], [ -119.596183034999981, 50.659265350000062 ], [ -119.596211187999955, 50.659068345000087 ], [ -119.596162646999943, 50.65906555 ], [ -119.59667399699994, 50.655487058000048 ], [ -119.596868895999961, 50.655498279000049 ], [ -119.596921505999916, 50.655130063000072 ], [ -119.602558840999905, 50.655454480000081 ], [ -119.602531477999932, 50.655646173000022 ], [ -119.605085157999923, 50.655793036000077 ], [ -119.604998202000019, 50.656170885000051 ], [ -119.604472324999932, 50.656101103000076 ], [ -119.603654485999982, 50.656156609000092 ], [ -119.603369510999983, 50.656108200000034 ], [ -119.602313386999967, 50.656455709000021 ], [ -119.602042790999974, 50.656686390000097 ], [ -119.602038297999911, 50.656867300000101 ], [ -119.602360511999947, 50.65732730300013 ], [ -119.602543801999957, 50.657583707000114 ], [ -119.602747116, 50.657652005000074 ], [ -119.602978102999927, 50.657475390000073 ], [ -119.604207688999963, 50.657448404000021 ], [ -119.60481600599995, 50.657209101000049 ], [ -119.605690706999894, 50.657144987000102 ], [ -119.606043995999954, 50.656911488000077 ], [ -119.606383714999978, 50.656895807000069 ], [ -119.607005392999952, 50.656612412000086 ], [ -119.607336399999951, 50.656565053000108 ], [ -119.60726748399999, 50.657048168000074 ], [ -119.607152545999895, 50.65785387799999 ], [ -119.606838028999945, 50.660058486000018 ], [ -119.60342803899999, 50.659862436000054 ], [ -119.603049503999941, 50.662514067000117 ], [ -119.602028481999952, 50.662455345000076 ], [ -119.60194728499999, 50.663023991000067 ], [ -119.601399063999935, 50.662992458000062 ], [ -119.601335681999927, 50.663436304000058 ], [ -119.595697352999963, 50.663111828000112 ], [ -119.595839541999979, 50.662117009000099 ], [ -119.596208785999949, 50.659533357000093 ], [ -119.596756960999983, 50.6595649160001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "212", "sL_BldgLoss": "212", "sL_StrLoss": "212", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D6C9C4556E85DC016983E0926644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.625063691000022, 50.781610977000057 ], [ -119.625270519999916, 50.780161202000144 ], [ -119.625404138999968, 50.780168838000122 ], [ -119.625445127999967, 50.779881506000073 ], [ -119.62567762499998, 50.779894792000071 ], [ -119.625695723999954, 50.779767911000114 ], [ -119.629594664999928, 50.779990651000091 ], [ -119.629635818999972, 50.779701973000073 ], [ -119.629665467999985, 50.779494002000064 ], [ -119.635318684999959, 50.77981671600002 ], [ -119.63516677399997, 50.780883244000023 ], [ -119.63677291099999, 50.780974877000105 ], [ -119.636263331999956, 50.784553023000107 ], [ -119.632998248999968, 50.78436672 ], [ -119.632978786999914, 50.784503299000043 ], [ -119.630034636999966, 50.784335225000099 ], [ -119.629869607999979, 50.785492769000072 ], [ -119.62448208899994, 50.785185005000052 ], [ -119.624215711999952, 50.785169782000047 ], [ -119.624726261999953, 50.781591693000038 ], [ -119.625063691000022, 50.781610977000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "88.5", "sL_BldgLoss": "88.5", "sL_StrLoss": "88.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B585CE0842ED5DC02D3B065C3E654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.704204221999959, 50.79389026800002 ], [ -119.704243239, 50.79361340300003 ], [ -119.70409723799996, 50.793605165000031 ], [ -119.704198027999922, 50.792889973000065 ], [ -119.703546100999944, 50.792853189000056 ], [ -119.701581205999943, 50.792742298000036 ], [ -119.701595141999917, 50.792643452000121 ], [ -119.701721311999947, 50.791748495000064 ], [ -119.702085660999956, 50.789163889000129 ], [ -119.705255564999973, 50.789342769000015 ], [ -119.705319034999945, 50.788892263000079 ], [ -119.706124291999956, 50.788937690000104 ], [ -119.707211075999965, 50.788998990000081 ], [ -119.707271267999928, 50.788571609000023 ], [ -119.707897511999988, 50.788606926000043 ], [ -119.708239753999948, 50.788626226000062 ], [ -119.708268732999969, 50.788420431000119 ], [ -119.70842799799999, 50.788429412000028 ], [ -119.708482784999944, 50.788040337000034 ], [ -119.708541742999927, 50.787621648000055 ], [ -119.708549671999933, 50.787565335000131 ], [ -119.708953391999941, 50.787588100000086 ], [ -119.71299259499996, 50.787815777000091 ], [ -119.712823389999969, 50.788165191000104 ], [ -119.711592890999896, 50.789929802000096 ], [ -119.71115238599999, 50.790911008000116 ], [ -119.7109973029999, 50.791661586000053 ], [ -119.710413785999933, 50.792367996000081 ], [ -119.710136303999917, 50.792959005000064 ], [ -119.710109386999974, 50.793969301000089 ], [ -119.709895267999954, 50.793957232000167 ], [ -119.709859788999935, 50.794209208000083 ], [ -119.709683345999977, 50.794199263000102 ], [ -119.704204221999959, 50.79389026800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "571577704", "BldgCostT": "341461170", "sL_LossRatio": "0.980482512226566", "sL_AssetLoss": "15327.28", "sL_BldgLoss": "15028.13", "sL_StrLoss": "14919.8", "sL_NStrLoss": "108.33", "sL_ContLoss": "299.15", "geom_point": "0101000020E61000004F2B8EFB7DEC5DC0D797CF6613684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68903704799996, 50.812804050000089 ], [ -119.696543225, 50.807723708000061 ], [ -119.698201897999965, 50.806627093000031 ], [ -119.699026808999932, 50.805983900000093 ], [ -119.699380274999896, 50.805638669000068 ], [ -119.69957096499995, 50.805452410000086 ], [ -119.69968286299995, 50.805623068000052 ], [ -119.700289249999955, 50.805715955000089 ], [ -119.70027821099994, 50.805741579000077 ], [ -119.70025687199994, 50.805801509000084 ], [ -119.700220654999953, 50.805853063 ], [ -119.700150055000023, 50.805973239000089 ], [ -119.700113747999922, 50.806024792000123 ], [ -119.700092480999913, 50.806084701000138 ], [ -119.700056242999921, 50.806136289000044 ], [ -119.700033977, 50.80618770500007 ], [ -119.70000152199998, 50.806273338000018 ], [ -119.699981237999978, 50.806341775000071 ], [ -119.69993384899999, 50.806419019000074 ], [ -119.699887387000018, 50.806504837000034 ], [ -119.69985113099996, 50.806556403000059 ], [ -119.699805669999947, 50.806650716000085 ], [ -119.69975827799999, 50.806728017000097 ], [ -119.69972391499995, 50.806796604000091 ], [ -119.69967556099999, 50.806865342000059 ], [ -119.699629134999981, 50.806951149000071 ], [ -119.699568735999904, 50.80703707300011 ], [ -119.699523200999948, 50.807131408000068 ], [ -119.699476808999933, 50.807217203000029 ], [ -119.69941726499999, 50.807311666 ], [ -119.699374872999954, 50.807399644000043 ], [ -119.699371802999977, 50.807405978000105 ], [ -119.699349532999932, 50.807457392000053 ], [ -119.699304069, 50.807551706000076 ], [ -119.699256659999946, 50.807628984000104 ], [ -119.699224255999937, 50.807714628000063 ], [ -119.699162876999964, 50.807792024000072 ], [ -119.699115502999987, 50.807869290000021 ], [ -119.699024499999936, 50.808057938000061 ], [ -119.698965043999934, 50.808152401 ], [ -119.698951509999944, 50.808183615000125 ], [ -119.699976356999983, 50.80853185400008 ], [ -119.700446922999987, 50.807773757000042 ], [ -119.70353264699996, 50.808902757000105 ], [ -119.704259627999974, 50.809135353000073 ], [ -119.704253410999939, 50.809146274000071 ], [ -119.703550352, 50.810401480000088 ], [ -119.703185585999933, 50.811047146000064 ], [ -119.69813689099999, 50.809552695 ], [ -119.698089640999967, 50.809612256000023 ], [ -119.698034602999883, 50.809718625000116 ], [ -119.697979353, 50.80981549300008 ], [ -119.697869310999963, 50.810028163000048 ], [ -119.697814465999926, 50.810144008000066 ], [ -119.69764874699996, 50.810434604000129 ], [ -119.69757917699998, 50.810532036000062 ], [ -119.697440502999953, 50.810745768000061 ], [ -119.697385404000016, 50.810852125000054 ], [ -119.697274563999912, 50.811026924000025 ], [ -119.697233607999976, 50.81112326600006 ], [ -119.69717798399995, 50.811201207000089 ], [ -119.69712273, 50.811298075000067 ], [ -119.697095313999952, 50.811356009000107 ], [ -119.697053580999921, 50.811414447000082 ], [ -119.69702614899991, 50.811472358000081 ], [ -119.696984431999979, 50.811530819000026 ], [ -119.696956999999884, 50.811588730000047 ], [ -119.69691523199999, 50.811647179000062 ], [ -119.696887850999943, 50.811705102000118 ], [ -119.696832789000027, 50.811811447000096 ], [ -119.696791653999952, 50.811898338000098 ], [ -119.696750346999949, 50.81197571700006 ], [ -119.696709191999958, 50.812062583000071 ], [ -119.696667653999967, 50.812130497000062 ], [ -119.696611813999937, 50.812198995000074 ], [ -119.696570255999987, 50.812266885000035 ], [ -119.696528911999906, 50.812344275000072 ], [ -119.696473281999943, 50.812422215000019 ], [ -119.696252304999931, 50.812809705000063 ], [ -119.696197276999968, 50.812916040000054 ], [ -119.696114983999976, 50.81308979500006 ], [ -119.696101808, 50.813147248000092 ], [ -119.695963076999988, 50.813360992000057 ], [ -119.695935677999927, 50.813418893000041 ], [ -119.695851760999929, 50.813516918000062 ], [ -119.695713065999925, 50.813730651000142 ], [ -119.695672293999934, 50.813836528000095 ], [ -119.695630945999966, 50.813913918000011 ], [ -119.695589842999965, 50.814000797000105 ], [ -119.695534386999924, 50.814088190000042 ], [ -119.695479125999952, 50.814185060000064 ], [ -119.695409579999946, 50.814282479000077 ], [ -119.695354546999923, 50.814388814 ], [ -119.695299282999898, 50.814485683000022 ], [ -119.695229914999985, 50.81459255500009 ], [ -119.695160333999979, 50.814689985000072 ], [ -119.695049841999946, 50.814883713000015 ], [ -119.694967577999989, 50.815057458000091 ], [ -119.694926207, 50.815134824000069 ], [ -119.694870766999955, 50.815222241000114 ], [ -119.694829624999926, 50.815309131000056 ], [ -119.69478825499999, 50.815386497000055 ], [ -119.694761218999972, 50.815463384000076 ], [ -119.694733988999971, 50.815530795000051 ], [ -119.694692652999947, 50.815608209000089 ], [ -119.694651106999913, 50.815676123000038 ], [ -119.694595454999941, 50.815754039000076 ], [ -119.69452859099998, 50.815810673000065 ], [ -119.694483165999912, 50.815898717000053 ], [ -119.694483436, 50.815898838000088 ], [ -119.700261969999971, 50.817884280000065 ], [ -119.69941831099996, 50.819345784000035 ], [ -119.699080981999927, 50.819931727000046 ], [ -119.69884215299993, 50.820346581000059 ], [ -119.693341732999954, 50.818348203000014 ], [ -119.692627300000012, 50.818088596000052 ], [ -119.69216940299998, 50.817877889000059 ], [ -119.692516024999961, 50.817543990000033 ], [ -119.692780085999971, 50.817209036000044 ], [ -119.693194277999936, 50.816497552000044 ], [ -119.691682011999916, 50.816321949000084 ], [ -119.69191992599994, 50.815929609000143 ], [ -119.691770202999976, 50.815914714000066 ], [ -119.689906391999926, 50.81572930500004 ], [ -119.687343025999951, 50.815475270000078 ], [ -119.686976819999984, 50.815312090000099 ], [ -119.686225966999984, 50.814985566000075 ], [ -119.68600687299994, 50.814854499000013 ], [ -119.68903704799996, 50.812804050000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83811750", "BldgCostT": "56175000", "sL_LossRatio": "0.999386319283985", "sL_AssetLoss": "4399.682", "sL_BldgLoss": "4396.982", "sL_StrLoss": "4396", "sL_NStrLoss": "0.982", "sL_ContLoss": "2.7", "geom_point": "0101000020E6100000E38784CEEFEB5DC09B1C800597684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68655087800002, 50.818808301000054 ], [ -119.686113596999974, 50.818482320000072 ], [ -119.685760203999976, 50.818218889000036 ], [ -119.685577279999933, 50.818316624000062 ], [ -119.684611, 50.818832924000091 ], [ -119.684064328999966, 50.818498923000064 ], [ -119.683925326999912, 50.818413995000085 ], [ -119.683817235999939, 50.818347940000095 ], [ -119.683584124999982, 50.818205516000049 ], [ -119.683482230999985, 50.818143277000047 ], [ -119.683217471999924, 50.817908276000018 ], [ -119.683111430999986, 50.817821120000062 ], [ -119.683053464999944, 50.817764795000087 ], [ -119.682986962999962, 50.817700266000031 ], [ -119.682499592999989, 50.817227402000114 ], [ -119.680667140999944, 50.818505434000052 ], [ -119.680203419999955, 50.818828812000056 ], [ -119.680102338999959, 50.817650474000082 ], [ -119.680089848999927, 50.817504904000053 ], [ -119.679871345999956, 50.814986924000138 ], [ -119.681768802999969, 50.815737711000075 ], [ -119.682663902999934, 50.816096518000087 ], [ -119.683625110999927, 50.816465939000068 ], [ -119.68600687299994, 50.814854499000013 ], [ -119.686225966999984, 50.814985566000075 ], [ -119.686976819999984, 50.815312090000099 ], [ -119.687343025999951, 50.815475270000078 ], [ -119.689906391999926, 50.81572930500004 ], [ -119.691770202999976, 50.815914714000066 ], [ -119.69191992599994, 50.815929609000143 ], [ -119.691682011999916, 50.816321949000084 ], [ -119.693194277999936, 50.816497552000044 ], [ -119.692780085999971, 50.817209036000044 ], [ -119.692516024999961, 50.817543990000033 ], [ -119.69216940299998, 50.817877889000059 ], [ -119.69189381399994, 50.818026413000048 ], [ -119.69180856199992, 50.81807236500002 ], [ -119.69158966899991, 50.818190334000057 ], [ -119.690571922999979, 50.818738917000076 ], [ -119.690443113999919, 50.818812785 ], [ -119.68942309599997, 50.819390794000107 ], [ -119.688851707999945, 50.818974386000015 ], [ -119.688585404999912, 50.818810603000081 ], [ -119.687426011999918, 50.819426700000037 ], [ -119.68655087800002, 50.818808301000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "160916700", "BldgCostT": "102691115", "sL_LossRatio": "0.996880255598468", "sL_AssetLoss": "6619.132", "sL_BldgLoss": "6598.482", "sL_StrLoss": "6591", "sL_NStrLoss": "7.482", "sL_ContLoss": "20.65", "geom_point": "0101000020E61000009F5F204AECEB5DC02F208B9F0C694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.679088797999967, 50.821490532000126 ], [ -119.679155478999988, 50.821385935000102 ], [ -119.679042176999971, 50.821380583000035 ], [ -119.678549721999957, 50.821357403000029 ], [ -119.67806182899993, 50.82138430200007 ], [ -119.677364018999967, 50.82142280200005 ], [ -119.67666578199993, 50.821599703000139 ], [ -119.675751212999941, 50.821935596000117 ], [ -119.676127947999987, 50.821672800000073 ], [ -119.677113263999928, 50.820985457000056 ], [ -119.679248224999981, 50.819496105000056 ], [ -119.679653408999982, 50.819212386000125 ], [ -119.67997224199999, 50.818990056000118 ], [ -119.679985216999967, 50.818981019000049 ], [ -119.680113979999959, 50.818891202000017 ], [ -119.680203419999955, 50.818828812000056 ], [ -119.680667140999944, 50.818505434000052 ], [ -119.682499592999989, 50.817227402000114 ], [ -119.682986962999962, 50.817700266000031 ], [ -119.683053464999944, 50.817764795000087 ], [ -119.683111430999986, 50.817821120000062 ], [ -119.683217471999924, 50.817908276000018 ], [ -119.683482230999985, 50.818143277000047 ], [ -119.683584124999982, 50.818205516000049 ], [ -119.683817235999939, 50.818347940000095 ], [ -119.683925326999912, 50.818413995000085 ], [ -119.684064328999966, 50.818498923000064 ], [ -119.684611, 50.818832924000091 ], [ -119.685577279999933, 50.818316624000062 ], [ -119.685760203999976, 50.818218889000036 ], [ -119.686113596999974, 50.818482320000072 ], [ -119.68655087800002, 50.818808301000054 ], [ -119.687426011999918, 50.819426700000037 ], [ -119.688585404999912, 50.818810603000081 ], [ -119.688851707999945, 50.818974386000015 ], [ -119.68942309599997, 50.819390794000107 ], [ -119.690443113999919, 50.818812785 ], [ -119.690571922999979, 50.818738917000076 ], [ -119.69158966899991, 50.818190334000057 ], [ -119.69180856199992, 50.81807236500002 ], [ -119.69189381399994, 50.818026413000048 ], [ -119.69216940299998, 50.817877889000059 ], [ -119.692627300000012, 50.818088596000052 ], [ -119.693341732999954, 50.818348203000014 ], [ -119.69884215299993, 50.820346581000059 ], [ -119.698722247999953, 50.820549902000074 ], [ -119.698529214999894, 50.820644497000075 ], [ -119.698300438999965, 50.820679407000071 ], [ -119.698068393999975, 50.820663762000038 ], [ -119.697884219999978, 50.820651372000057 ], [ -119.697882799999888, 50.820651279000145 ], [ -119.697653322999955, 50.820635814000042 ], [ -119.697222594999943, 50.820606795000096 ], [ -119.697030110999961, 50.820617504000097 ], [ -119.696900607, 50.820624708000139 ], [ -119.696635709999967, 50.820672885000079 ], [ -119.696916190999971, 50.821342494000049 ], [ -119.696900809999988, 50.821603097000036 ], [ -119.696639085999962, 50.82199229600014 ], [ -119.696598597, 50.82224880600004 ], [ -119.696689587999984, 50.822492905000061 ], [ -119.697287901000024, 50.823305697000123 ], [ -119.697326692999965, 50.823505406000024 ], [ -119.697157220999884, 50.823696003000059 ], [ -119.696790785999937, 50.823846595000191 ], [ -119.694199886999925, 50.821563300000086 ], [ -119.693736998999981, 50.821609299000038 ], [ -119.69309317199999, 50.821775809000037 ], [ -119.692016731999914, 50.820159574000051 ], [ -119.691802846999963, 50.819840457000105 ], [ -119.691460836999966, 50.819330154000092 ], [ -119.690237272999966, 50.819986884000066 ], [ -119.689076472999929, 50.820632729000117 ], [ -119.68872125199999, 50.820825463000098 ], [ -119.68794781699998, 50.821253304000088 ], [ -119.686670473, 50.821895291000025 ], [ -119.684991683999911, 50.822416987000054 ], [ -119.682528980999962, 50.82311960800007 ], [ -119.682460400999929, 50.823157584000072 ], [ -119.681986513999931, 50.823352596000085 ], [ -119.681747786999964, 50.823447290000011 ], [ -119.680648099999956, 50.823760869000118 ], [ -119.676984711999964, 50.824805279 ], [ -119.675609113999883, 50.824831092000053 ], [ -119.675013298999886, 50.825039889000031 ], [ -119.674560946999932, 50.825094794000087 ], [ -119.67454692499993, 50.825096491000117 ], [ -119.674784923999979, 50.824543881000075 ], [ -119.675591601999926, 50.824219604000106 ], [ -119.676928501999924, 50.82420518400005 ], [ -119.678914509999956, 50.823504293000063 ], [ -119.679150189, 50.823421099000051 ], [ -119.679772095999979, 50.822726389000103 ], [ -119.679975319, 50.822499393000079 ], [ -119.679740271999918, 50.822245307000102 ], [ -119.67894899799991, 50.82170999100002 ], [ -119.678837735999963, 50.821600001000022 ], [ -119.679088797999967, 50.821490532000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "213037584", "BldgCostT": "144503334", "sL_LossRatio": "0.999721002127046", "sL_AssetLoss": "12007.26", "sL_BldgLoss": "12003.91", "sL_StrLoss": "12002.7", "sL_NStrLoss": "1.21", "sL_ContLoss": "3.35", "geom_point": "0101000020E610000035ACE3D7D3EB5DC00F123F5286694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.671670878999919, 50.8275561150001 ], [ -119.671464866999912, 50.825550554000046 ], [ -119.673372337999979, 50.825347825000101 ], [ -119.673370314999971, 50.82492711700008 ], [ -119.673378540999948, 50.824926965000046 ], [ -119.673393624999932, 50.823658582000071 ], [ -119.6733063, 50.821887830000065 ], [ -119.675494610000015, 50.82201180100008 ], [ -119.675642981999928, 50.820964453000038 ], [ -119.675689712999969, 50.820967100000068 ], [ -119.675953977999967, 50.819101526000097 ], [ -119.678401443, 50.8188784640001 ], [ -119.680203419999955, 50.818828812000056 ], [ -119.680113979999959, 50.818891202000017 ], [ -119.679985216999967, 50.818981019000049 ], [ -119.67997224199999, 50.818990056000118 ], [ -119.679653408999982, 50.819212386000125 ], [ -119.679248224999981, 50.819496105000056 ], [ -119.677113263999928, 50.820985457000056 ], [ -119.676127947999987, 50.821672800000073 ], [ -119.675751212999941, 50.821935596000117 ], [ -119.67666578199993, 50.821599703000139 ], [ -119.677364018999967, 50.82142280200005 ], [ -119.67806182899993, 50.82138430200007 ], [ -119.678549721999957, 50.821357403000029 ], [ -119.679042176999971, 50.821380583000035 ], [ -119.679155478999988, 50.821385935000102 ], [ -119.679088797999967, 50.821490532000126 ], [ -119.678837735999963, 50.821600001000022 ], [ -119.67894899799991, 50.82170999100002 ], [ -119.679740271999918, 50.822245307000102 ], [ -119.679975319, 50.822499393000079 ], [ -119.679772095999979, 50.822726389000103 ], [ -119.679150189, 50.823421099000051 ], [ -119.678914509999956, 50.823504293000063 ], [ -119.676928501999924, 50.82420518400005 ], [ -119.675591601999926, 50.824219604000106 ], [ -119.674784923999979, 50.824543881000075 ], [ -119.67454692499993, 50.825096491000117 ], [ -119.674560946999932, 50.825094794000087 ], [ -119.675013298999886, 50.825039889000031 ], [ -119.675609113999883, 50.824831092000053 ], [ -119.676984711999964, 50.824805279 ], [ -119.680648099999956, 50.823760869000118 ], [ -119.681747786999964, 50.823447290000011 ], [ -119.681986513999931, 50.823352596000085 ], [ -119.682460400999929, 50.823157584000072 ], [ -119.682528980999962, 50.82311960800007 ], [ -119.684991683999911, 50.822416987000054 ], [ -119.686670473, 50.821895291000025 ], [ -119.68794781699998, 50.821253304000088 ], [ -119.68872125199999, 50.820825463000098 ], [ -119.689076472999929, 50.820632729000117 ], [ -119.690237272999966, 50.819986884000066 ], [ -119.691460836999966, 50.819330154000092 ], [ -119.691802846999963, 50.819840457000105 ], [ -119.692016731999914, 50.820159574000051 ], [ -119.691581981999917, 50.820439936000085 ], [ -119.691048655999921, 50.82078386200007 ], [ -119.69053073799995, 50.821099415000077 ], [ -119.690443238999961, 50.82115270800012 ], [ -119.689787000999928, 50.821457365000107 ], [ -119.690981097999909, 50.822553697000089 ], [ -119.692508806999982, 50.823893391000084 ], [ -119.693079997999959, 50.823645369000168 ], [ -119.693455320999959, 50.823482400000024 ], [ -119.69402037899999, 50.823240239000043 ], [ -119.694514916999964, 50.82302830200009 ], [ -119.695888802999946, 50.824245630000085 ], [ -119.696554684, 50.82483235100004 ], [ -119.697585135999958, 50.825715568000057 ], [ -119.69812100599998, 50.826142541000102 ], [ -119.698955536999961, 50.82666516100003 ], [ -119.698713776999952, 50.826711396000107 ], [ -119.697496218999902, 50.826794001000067 ], [ -119.695551108999922, 50.827036102000143 ], [ -119.694163964, 50.827333921000054 ], [ -119.693386675999989, 50.827351877000076 ], [ -119.693395145999901, 50.827498977000047 ], [ -119.692755485999939, 50.827636299000055 ], [ -119.691939602999952, 50.827655137000086 ], [ -119.690476694, 50.827225494000125 ], [ -119.689189606999918, 50.827048886000114 ], [ -119.687946785999955, 50.827427791000069 ], [ -119.686880796999944, 50.827632914000098 ], [ -119.686001534999932, 50.827652634000081 ], [ -119.685802014999936, 50.827657109 ], [ -119.685059492999983, 50.827575895000059 ], [ -119.684863346, 50.827592613000107 ], [ -119.68486961499994, 50.827548299000036 ], [ -119.684451423999974, 50.827557927000079 ], [ -119.684455411000016, 50.82762738200006 ], [ -119.683773597999945, 50.8276854880001 ], [ -119.684025639, 50.827837572000057 ], [ -119.683462657999925, 50.827850529000074 ], [ -119.683207590999956, 50.827726902000094 ], [ -119.681882403999978, 50.827336337000034 ], [ -119.681867573999952, 50.827077698000018 ], [ -119.681263165999965, 50.82709159700007 ], [ -119.680625893999888, 50.826813907000073 ], [ -119.679268615999973, 50.826432206000099 ], [ -119.677536897999985, 50.826193 ], [ -119.674317390999946, 50.826162987000039 ], [ -119.674169286999984, 50.826161604000113 ], [ -119.673384418999916, 50.826315495000095 ], [ -119.672925993999954, 50.826514798000098 ], [ -119.672423502999919, 50.826922185000051 ], [ -119.671697220999988, 50.827821160000049 ], [ -119.671670878999919, 50.8275561150001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86594000", "BldgCostT": "59720000", "sL_LossRatio": "1", "sL_AssetLoss": "7173", "sL_BldgLoss": "7173", "sL_StrLoss": "7173", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D94FB5CCD8EC5DC0802599CD4A694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.695888802999946, 50.824245630000085 ], [ -119.694514916999964, 50.82302830200009 ], [ -119.69402037899999, 50.823240239000043 ], [ -119.693455320999959, 50.823482400000024 ], [ -119.693079997999959, 50.823645369000168 ], [ -119.692508806999982, 50.823893391000084 ], [ -119.690981097999909, 50.822553697000089 ], [ -119.689787000999928, 50.821457365000107 ], [ -119.690443238999961, 50.82115270800012 ], [ -119.69053073799995, 50.821099415000077 ], [ -119.691048655999921, 50.82078386200007 ], [ -119.691581981999917, 50.820439936000085 ], [ -119.692016731999914, 50.820159574000051 ], [ -119.69309317199999, 50.821775809000037 ], [ -119.693736998999981, 50.821609299000038 ], [ -119.694199886999925, 50.821563300000086 ], [ -119.696790785999937, 50.823846595000191 ], [ -119.697157220999884, 50.823696003000059 ], [ -119.697326692999965, 50.823505406000024 ], [ -119.697287901000024, 50.823305697000123 ], [ -119.696689587999984, 50.822492905000061 ], [ -119.696598597, 50.82224880600004 ], [ -119.696639085999962, 50.82199229600014 ], [ -119.696900809999988, 50.821603097000036 ], [ -119.696916190999971, 50.821342494000049 ], [ -119.696635709999967, 50.820672885000079 ], [ -119.696900607, 50.820624708000139 ], [ -119.697030110999961, 50.820617504000097 ], [ -119.697222594999943, 50.820606795000096 ], [ -119.697653322999955, 50.820635814000042 ], [ -119.697882799999888, 50.820651279000145 ], [ -119.697884219999978, 50.820651372000057 ], [ -119.698068393999975, 50.820663762000038 ], [ -119.698300438999965, 50.820679407000071 ], [ -119.698529214999894, 50.820644497000075 ], [ -119.698722247999953, 50.820549902000074 ], [ -119.69884215299993, 50.820346581000059 ], [ -119.699080981999927, 50.819931727000046 ], [ -119.69941831099996, 50.819345784000035 ], [ -119.700261969999971, 50.817884280000065 ], [ -119.70803274799999, 50.820575579000035 ], [ -119.707955254999916, 50.82068903600004 ], [ -119.707577800999942, 50.82066776500006 ], [ -119.707557684, 50.820810496000064 ], [ -119.707860613999969, 50.820827567000038 ], [ -119.707662818999978, 50.821117096000087 ], [ -119.707602684999941, 50.821550107000064 ], [ -119.707450611999917, 50.821615598000086 ], [ -119.70736260299995, 50.82155570400009 ], [ -119.707256481999977, 50.821215397000032 ], [ -119.707078308999925, 50.821327906000128 ], [ -119.707270291, 50.822169591000055 ], [ -119.707339903, 50.82435289100011 ], [ -119.707264694999949, 50.824777297000033 ], [ -119.707062297999983, 50.824952506000052 ], [ -119.706404301999967, 50.825139090000093 ], [ -119.704809225999952, 50.825770003000059 ], [ -119.703883504999965, 50.825989293000099 ], [ -119.70301929299994, 50.826027802000077 ], [ -119.701701285999945, 50.826318304000132 ], [ -119.701051005999943, 50.826360994000026 ], [ -119.700704311999942, 50.826494900000114 ], [ -119.699570088999948, 50.826547615000059 ], [ -119.698955536999961, 50.82666516100003 ], [ -119.69812100599998, 50.826142541000102 ], [ -119.697585135999958, 50.825715568000057 ], [ -119.696554684, 50.82483235100004 ], [ -119.695888802999946, 50.824245630000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000232EBE7080EB5DC01A554455657A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.678396908999957, 50.955610533000069 ], [ -119.68131195399998, 50.955775012000061 ], [ -119.681315767999934, 50.956817711000085 ], [ -119.679305830999951, 50.956797399000095 ], [ -119.678262459999971, 50.95670967900007 ], [ -119.678380007999948, 50.956344387000108 ], [ -119.678266201999932, 50.956130686000051 ], [ -119.677715682999974, 50.95557208500005 ], [ -119.678396908999957, 50.955610533000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1044000", "BldgCostT": "720000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A234A7B83F55DC06854E8D5636E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.836008180999968, 50.864290562000086 ], [ -119.836021298999967, 50.864195633000065 ], [ -119.832559075999939, 50.864004667000152 ], [ -119.832566255999922, 50.863952748000052 ], [ -119.832042562999945, 50.863923853000053 ], [ -119.832078801999913, 50.863661776000043 ], [ -119.832072980999953, 50.863661454000052 ], [ -119.832567795999964, 50.860082757 ], [ -119.833796581999977, 50.860150551000068 ], [ -119.833986884999959, 50.860714397000066 ], [ -119.83398047799993, 50.861316797000022 ], [ -119.834143486999935, 50.861447903000098 ], [ -119.834533306999901, 50.861520510000076 ], [ -119.835352409999985, 50.86190500100011 ], [ -119.836224187999974, 50.86268409600013 ], [ -119.836562709999924, 50.86359270600007 ], [ -119.837092618999989, 50.863661097000033 ], [ -119.837369887999955, 50.863537190000031 ], [ -119.837564709999967, 50.863226694000097 ], [ -119.837822403999922, 50.86232088600012 ], [ -119.837762484999971, 50.861108901000122 ], [ -119.837948189999949, 50.860896711000116 ], [ -119.838635520999972, 50.86050219700013 ], [ -119.838875475999885, 50.860159505000063 ], [ -119.84107889900001, 50.860280938000116 ], [ -119.841054281999902, 50.860341779000045 ], [ -119.840988927999916, 50.860423628000021 ], [ -119.840924801999932, 50.860523289000106 ], [ -119.840823583999963, 50.860704183000038 ], [ -119.840758844, 50.860794939000087 ], [ -119.840707647999977, 50.860876459000089 ], [ -119.840684768999935, 50.860957319000079 ], [ -119.840647749999945, 50.861038533000034 ], [ -119.840582376999961, 50.861120359000076 ], [ -119.840546510999971, 50.861219405 ], [ -119.840394761999946, 50.861490738000072 ], [ -119.840265221999942, 50.861672236000096 ], [ -119.840199863999914, 50.861754085 ], [ -119.840149224999948, 50.861844497000035 ], [ -119.840098043999959, 50.861926041000125 ], [ -119.840062250999949, 50.862025065000076 ], [ -119.840025806999975, 50.862115194000076 ], [ -119.839988151999961, 50.862187480000017 ], [ -119.839964657999985, 50.862259435000084 ], [ -119.839926979999959, 50.862331813000075 ], [ -119.839875088999946, 50.862404507000086 ], [ -119.839851609999982, 50.862476544000053 ], [ -119.83981266799999, 50.862531065000077 ], [ -119.839760235999975, 50.862594833000102 ], [ -119.839721944999965, 50.862658247000056 ], [ -119.83968423099999, 50.862730637 ], [ -119.839658908999951, 50.862775900000045 ], [ -119.839648955999962, 50.862838679000042 ], [ -119.839610665999942, 50.862902094000113 ], [ -119.839545841999907, 50.862992987000062 ], [ -119.839521058999935, 50.863047178000024 ], [ -119.839482784999944, 50.863110615000082 ], [ -119.83941915299999, 50.863219329000053 ], [ -119.839379669999957, 50.863264924000077 ], [ -119.839355557999937, 50.863328032 ], [ -119.839316651999965, 50.863382541000036 ], [ -119.839293131999938, 50.863454590000096 ], [ -119.839268980999961, 50.863517709000092 ], [ -119.839230112999971, 50.863572208000051 ], [ -119.839141116999897, 50.863726197000062 ], [ -119.839027299999941, 50.863925155000047 ], [ -119.838990367999926, 50.864006312000093 ], [ -119.838939330999978, 50.864087812000058 ], [ -119.83892887499999, 50.864141596000053 ], [ -119.83890425899996, 50.864195707000071 ], [ -119.838865480999957, 50.864250151000114 ], [ -119.8388273569999, 50.864313487000089 ], [ -119.838789808999962, 50.864385739000078 ], [ -119.838749955999972, 50.86444171300014 ], [ -119.836008180999968, 50.864290562000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3107833", "BldgCostT": "2143333", "sL_LossRatio": "1", "sL_AssetLoss": "94.3", "sL_BldgLoss": "94.3", "sL_StrLoss": "94.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095243220B9F25DC0C34659BF99614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.79066870299998, 50.765036005000113 ], [ -119.790684399999975, 50.764343804000063 ], [ -119.791403203999963, 50.763553409000025 ], [ -119.791636704999931, 50.762720197000064 ], [ -119.792483184999966, 50.762159099000087 ], [ -119.792464497999958, 50.761827297000117 ], [ -119.792134112, 50.761538100000031 ], [ -119.79189180099992, 50.761256199000115 ], [ -119.791915608999986, 50.760958493000089 ], [ -119.790947092999943, 50.760180894000051 ], [ -119.790668797999928, 50.759558501000086 ], [ -119.790093687999942, 50.759410396000071 ], [ -119.789499101999965, 50.75943321200004 ], [ -119.788553605999951, 50.75976221000009 ], [ -119.788317800999934, 50.761287499000055 ], [ -119.788128461999946, 50.761669186000077 ], [ -119.788217759999924, 50.761026451000099 ], [ -119.787802722999942, 50.76100333100009 ], [ -119.787822288999976, 50.76086251100002 ], [ -119.787323416999953, 50.760834718000119 ], [ -119.787820667999981, 50.757255793000084 ], [ -119.793472206000018, 50.757570520000101 ], [ -119.79345266, 50.757711342000086 ], [ -119.793951499999949, 50.75773910700012 ], [ -119.79386862099993, 50.75833624800002 ], [ -119.795667583999915, 50.75843636100003 ], [ -119.795170946999974, 50.762015316000017 ], [ -119.794232221999934, 50.761963080000058 ], [ -119.794201838999939, 50.762181982000087 ], [ -119.795071666999959, 50.762230385000109 ], [ -119.794866611999922, 50.763707882000041 ], [ -119.795246026999919, 50.763698783000045 ], [ -119.795278161999988, 50.764237712000053 ], [ -119.79570304100001, 50.764227521000109 ], [ -119.795745253999954, 50.764935357000091 ], [ -119.795792226999978, 50.764937970000105 ], [ -119.795759482999983, 50.765173921000084 ], [ -119.79578339499993, 50.765574843000081 ], [ -119.795703579999937, 50.765576758000073 ], [ -119.795295527999912, 50.768516899000097 ], [ -119.795177179999953, 50.768510314000082 ], [ -119.795161926999938, 50.768620201000097 ], [ -119.791790123999988, 50.76843256500009 ], [ -119.791437803999969, 50.768166412000085 ], [ -119.79114609799997, 50.767337498000067 ], [ -119.790477010999922, 50.765392105000089 ], [ -119.79066870299998, 50.765036005000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "1", "sL_AssetLoss": "44.8", "sL_BldgLoss": "44.8", "sL_StrLoss": "44.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EA7869162AF55DC0A1A2872D7F594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.83085851499996, 50.697399440000083 ], [ -119.833762530999962, 50.697560296000098 ], [ -119.83353861499999, 50.699186337000107 ], [ -119.833269603999923, 50.701139677000093 ], [ -119.827624892999935, 50.700826941000109 ], [ -119.82765099599996, 50.700637587000074 ], [ -119.828052554999985, 50.697724353000076 ], [ -119.828118268, 50.697247585000049 ], [ -119.83085851499996, 50.697399440000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2206417", "BldgCostT": "1521667", "sL_LossRatio": "1", "sL_AssetLoss": "51.2", "sL_BldgLoss": "51.2", "sL_StrLoss": "51.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F58E9E649F25DC03F6F6C6EB3634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.788036423, 50.774295072000072 ], [ -119.79041727299996, 50.774427636000084 ], [ -119.78992003800002, 50.778006501000043 ], [ -119.789664131999942, 50.777992255000079 ], [ -119.789634137999926, 50.778208107000118 ], [ -119.789437856999896, 50.778197180000078 ], [ -119.789392244999974, 50.778525412000135 ], [ -119.789058505999961, 50.77850683200009 ], [ -119.788998151999948, 50.778941120000063 ], [ -119.788589056999939, 50.778918343000058 ], [ -119.788522458999978, 50.779397530000018 ], [ -119.788061473999974, 50.779371862000097 ], [ -119.788000957999927, 50.779807241000064 ], [ -119.787769925999939, 50.77979437700003 ], [ -119.787702972, 50.780276047000022 ], [ -119.787375251999961, 50.780257797000033 ], [ -119.78731658, 50.780679855000081 ], [ -119.787116015999942, 50.780668685000073 ], [ -119.787057491999974, 50.781089660000106 ], [ -119.786670160999947, 50.781068089000037 ], [ -119.78662709000001, 50.781377869000032 ], [ -119.78611978899994, 50.781349615000046 ], [ -119.78611077, 50.781414481000084 ], [ -119.786010300999934, 50.781408884000058 ], [ -119.785961983000036, 50.781756383000051 ], [ -119.785658993999988, 50.781739506000079 ], [ -119.785645172999978, 50.781838890000081 ], [ -119.785304211000025, 50.78181989700002 ], [ -119.785288662999932, 50.781931699000076 ], [ -119.784822868, 50.78190575100006 ], [ -119.784793153999914, 50.782119410000057 ], [ -119.784402095999965, 50.782097624000087 ], [ -119.784381442999972, 50.78224611800011 ], [ -119.784085876999882, 50.782229651000129 ], [ -119.784065334999966, 50.782377326000116 ], [ -119.778883835999963, 50.782088514000058 ], [ -119.779336323999956, 50.781767603000027 ], [ -119.779372407999944, 50.781434300000093 ], [ -119.77961211599991, 50.781159495000061 ], [ -119.780936613000023, 50.780290709000084 ], [ -119.781891195999947, 50.779872000000111 ], [ -119.78344907599994, 50.779367794000073 ], [ -119.783776603999954, 50.779134199000104 ], [ -119.784312491999927, 50.778591608000092 ], [ -119.78484620799999, 50.777805508000071 ], [ -119.786145509999983, 50.77673869800001 ], [ -119.787323604999955, 50.775334500000085 ], [ -119.788036423, 50.774295072000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "1", "sL_AssetLoss": "33.2", "sL_BldgLoss": "33.2", "sL_StrLoss": "33.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE224B2875EB5DC0139E6DC194724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.676198506999953, 50.896814005000095 ], [ -119.676200157999958, 50.896802364000074 ], [ -119.675677089999965, 50.896772791000096 ], [ -119.676184793999965, 50.893194927000096 ], [ -119.681852727999967, 50.89351524700006 ], [ -119.681851077999951, 50.893526888000146 ], [ -119.682317934, 50.893553259000058 ], [ -119.68237411199999, 50.8935564330001 ], [ -119.682286268999988, 50.894176122000076 ], [ -119.682229886999934, 50.894573865000069 ], [ -119.682034076999969, 50.895955125000079 ], [ -119.681866899999989, 50.897134323000067 ], [ -119.681484849999933, 50.897112743000129 ], [ -119.67937827499999, 50.896993728000098 ], [ -119.676198506999953, 50.896814005000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2467417", "BldgCostT": "1701667", "sL_LossRatio": "1", "sL_AssetLoss": "54.2", "sL_BldgLoss": "54.2", "sL_StrLoss": "54.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000630973D4F4F75DC0A96FB27086594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.870290778999944, 50.701818111000122 ], [ -119.870304493999967, 50.701717928000072 ], [ -119.870238784, 50.701714311000032 ], [ -119.870290585999982, 50.701335899000114 ], [ -119.869311179999954, 50.701281986000069 ], [ -119.869567461999935, 50.699410087000018 ], [ -119.869801233999951, 50.697702448000022 ], [ -119.870890736999939, 50.697762422000032 ], [ -119.871099461999933, 50.69623737400007 ], [ -119.876743896999969, 50.696547913000053 ], [ -119.876734615999936, 50.696615792000053 ], [ -119.876805899999937, 50.696619712000022 ], [ -119.876786089999911, 50.696764590000022 ], [ -119.876808309999916, 50.696765812000145 ], [ -119.87680144299999, 50.696816031000033 ], [ -119.877050103999977, 50.696829705 ], [ -119.876960549999978, 50.697484688000074 ], [ -119.877555412999968, 50.697469994000059 ], [ -119.877538911, 50.697200546000047 ], [ -119.877963151999936, 50.697190064000033 ], [ -119.87793014599994, 50.696651167000041 ], [ -119.87905815, 50.69662329300008 ], [ -119.878910608999959, 50.696800988000042 ], [ -119.878810302, 50.696945469000077 ], [ -119.87849459499995, 50.697400219000066 ], [ -119.878338482999965, 50.697574685000042 ], [ -119.878148787999962, 50.697714805000011 ], [ -119.877923010999908, 50.697837580000069 ], [ -119.877623319999941, 50.697950107000104 ], [ -119.876949010999951, 50.698129410000043 ], [ -119.876263179999938, 50.698389896000016 ], [ -119.876239698999925, 50.698398809000089 ], [ -119.876008061, 50.698434934000026 ], [ -119.875944713999957, 50.69844480600004 ], [ -119.87527650599999, 50.698444987000066 ], [ -119.874953308, 50.69847951000002 ], [ -119.874837901999953, 50.698512047000122 ], [ -119.874493303999913, 50.698609285000039 ], [ -119.873945792999933, 50.698849584000072 ], [ -119.873274701999918, 50.699254508000102 ], [ -119.873139193999961, 50.699413910000025 ], [ -119.874254788999949, 50.699332295000097 ], [ -119.874290893999969, 50.699329663000093 ], [ -119.874476289999905, 50.6993160950001 ], [ -119.875313209999931, 50.699299006000103 ], [ -119.876738719999977, 50.699345011000062 ], [ -119.877214318999961, 50.699329614000092 ], [ -119.881044485999936, 50.698937687000068 ], [ -119.881077375999894, 50.699474056000071 ], [ -119.881058430999957, 50.699520215000121 ], [ -119.880969601999979, 50.699608206000036 ], [ -119.880349496999912, 50.700001848000113 ], [ -119.880236314999934, 50.700073698000118 ], [ -119.879296109999956, 50.700825400000049 ], [ -119.878682196999975, 50.70115588500007 ], [ -119.878188795999947, 50.701665211000012 ], [ -119.877778109999952, 50.701913092000105 ], [ -119.877631016999928, 50.702032198000055 ], [ -119.877558994999902, 50.7021634110001 ], [ -119.87754608299997, 50.702212033000066 ], [ -119.875936614999929, 50.70212353800013 ], [ -119.875935910999942, 50.702128690000109 ], [ -119.870290778999944, 50.701818111000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1259AF643EC5DC00CA51FA20B7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.689782902999966, 50.961623815000081 ], [ -119.689724928999965, 50.960377873000063 ], [ -119.691289817000012, 50.960466011000072 ], [ -119.691265994999966, 50.960634039000098 ], [ -119.693798746999974, 50.960776641000045 ], [ -119.693617076999942, 50.962058526000085 ], [ -119.69084574, 50.961998473000023 ], [ -119.689799292999979, 50.961975755000047 ], [ -119.689782902999966, 50.961623815000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "102.5", "sL_BldgLoss": "102.5", "sL_StrLoss": "102.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B75434B85F55DC0DC9DF7F700594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.833261453999924, 50.697094303000064 ], [ -119.833292875999959, 50.696866116000159 ], [ -119.833251225999973, 50.696863809000064 ], [ -119.833122864999922, 50.696856700000083 ], [ -119.833615755999986, 50.693277303000038 ], [ -119.839259559999931, 50.693589738000128 ], [ -119.839228168999966, 50.693817927000097 ], [ -119.839398169999953, 50.69382733400009 ], [ -119.838905733999937, 50.697406755000017 ], [ -119.837196588999959, 50.697312172000153 ], [ -119.833261453999924, 50.697094303000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "45.2", "sL_BldgLoss": "45.2", "sL_StrLoss": "45.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006098C8DCA7F05DC08C13FCC26D6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.756758774, 50.834035139000036 ], [ -119.757032185999932, 50.832080396000045 ], [ -119.756492599999959, 50.832050235000047 ], [ -119.756742331999959, 50.830264795000097 ], [ -119.75723011499997, 50.830173600000066 ], [ -119.757547095999925, 50.83002120200009 ], [ -119.7580168, 50.829569790000114 ], [ -119.7586878799999, 50.82913969700008 ], [ -119.758854399, 50.828847695000029 ], [ -119.759108092, 50.828607591000079 ], [ -119.759272706999951, 50.828451802000046 ], [ -119.759273995999948, 50.828416459000024 ], [ -119.763139492, 50.828632389000084 ], [ -119.763110217999937, 50.828841915000083 ], [ -119.763585891999952, 50.828868477000107 ], [ -119.763368718999942, 50.830422915000049 ], [ -119.76358120099998, 50.830434780000061 ], [ -119.763081197999966, 50.834013294000073 ], [ -119.762471795999915, 50.833979264000064 ], [ -119.762419789999939, 50.834351407 ], [ -119.756758774, 50.834035139000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1044000", "BldgCostT": "720000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F19C6F3C06EB5DC0940502533C744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.675277415999943, 50.906458560000097 ], [ -119.675344461999941, 50.906462350000055 ], [ -119.674836540999962, 50.910040156000079 ], [ -119.669166558999962, 50.909719488000093 ], [ -119.66962519400002, 50.906491766000066 ], [ -119.669674930999975, 50.906141706000021 ], [ -119.675277415999943, 50.906458560000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "1", "sL_AssetLoss": "45.1", "sL_BldgLoss": "45.1", "sL_StrLoss": "45.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD2F33E85BF05DC06FC44950326B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.75228595599999, 50.839197306000052 ], [ -119.752339107999944, 50.838817634000058 ], [ -119.75194867099999, 50.838795798000092 ], [ -119.752137398999963, 50.837447711000081 ], [ -119.753093537999931, 50.837464617000059 ], [ -119.7536093, 50.836950005000027 ], [ -119.753702200999953, 50.836615311000038 ], [ -119.754225005999928, 50.836064188000108 ], [ -119.754251483999965, 50.835783598000049 ], [ -119.754077602999956, 50.835510207000048 ], [ -119.754330313999986, 50.835175027000105 ], [ -119.758268134999938, 50.835395135000113 ], [ -119.75826284299994, 50.835432975000103 ], [ -119.758550128999957, 50.835449027000024 ], [ -119.758049666999952, 50.839027498000057 ], [ -119.758015872999962, 50.839025609000011 ], [ -119.757947592, 50.839513799000024 ], [ -119.75228595599999, 50.839197306000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.7", "sL_BldgLoss": "50.7", "sL_StrLoss": "50.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015AF2E7E05F25DC01376596589604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.781154442999963, 50.755670577000046 ], [ -119.78109051699991, 50.754592704000068 ], [ -119.779816132999926, 50.754623109000121 ], [ -119.779800158999976, 50.75435364100008 ], [ -119.77895057299996, 50.754373903000044 ], [ -119.778907147, 50.753641075000054 ], [ -119.778902667999958, 50.753565497000096 ], [ -119.780177024999915, 50.753535102000058 ], [ -119.780161049999933, 50.753265632000122 ], [ -119.782284959999927, 50.753214944000078 ], [ -119.782300947999886, 50.75348441100008 ], [ -119.784000082999981, 50.753443832000073 ], [ -119.784038765, 50.754095404000047 ], [ -119.784048073999884, 50.754252234000013 ], [ -119.78362328399993, 50.754262383000111 ], [ -119.783639281, 50.754531850000063 ], [ -119.78321448599992, 50.7545419960001 ], [ -119.783230479999929, 50.754811464000049 ], [ -119.782380888999938, 50.754831752000079 ], [ -119.782428854999921, 50.755640155000044 ], [ -119.781154442999963, 50.755670577000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "35.5", "sL_BldgLoss": "35.5", "sL_StrLoss": "35.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE3F7032BDEC5DC0CCD37786426B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.703778149999962, 50.83719205200002 ], [ -119.704314103999934, 50.83719677200002 ], [ -119.704293328999952, 50.837344040000083 ], [ -119.704084976000019, 50.837332296000035 ], [ -119.70407392499996, 50.83741064500002 ], [ -119.702298259999949, 50.837310548000104 ], [ -119.702170388999946, 50.838216686000123 ], [ -119.701010286999932, 50.838151275000065 ], [ -119.700895074999934, 50.838967514000061 ], [ -119.695233913999985, 50.838648136000074 ], [ -119.695329447999924, 50.837971917000104 ], [ -119.69785097899998, 50.837120900000073 ], [ -119.697871347, 50.837104961000122 ], [ -119.700100482999929, 50.837138295000045 ], [ -119.70359331199991, 50.83719040700003 ], [ -119.703778149999962, 50.83719205200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1044000", "BldgCostT": "720000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C591A4F7CFEB5DC0536C167923724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.681988038999975, 50.889758553000057 ], [ -119.687655579999941, 50.890078581000061 ], [ -119.687570443999931, 50.890679734000095 ], [ -119.687148829999927, 50.89365650900001 ], [ -119.682385539999942, 50.893387562000022 ], [ -119.681480839999921, 50.893336456000036 ], [ -119.681988038999975, 50.889758553000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434584", "BldgCostT": "3058334", "sL_LossRatio": "1", "sL_AssetLoss": "272.6", "sL_BldgLoss": "272.6", "sL_StrLoss": "272.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F81B0EC74AF75DC02745D03D90594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.862210935999926, 50.703991586000043 ], [ -119.862574245999923, 50.701341156000083 ], [ -119.861004977999954, 50.701254657000078 ], [ -119.861198581999986, 50.699842504000046 ], [ -119.859073012999943, 50.699725307000051 ], [ -119.859406923999927, 50.697290364000033 ], [ -119.859563865999959, 50.69614580800004 ], [ -119.86012870199994, 50.69617695500007 ], [ -119.860245984999949, 50.695321521000032 ], [ -119.865890228999916, 50.695632610000075 ], [ -119.865824037999971, 50.696115841000122 ], [ -119.866329747999941, 50.696143699000039 ], [ -119.866085337999934, 50.697928075000071 ], [ -119.867140244999973, 50.697986180000079 ], [ -119.866937423999929, 50.699467074000076 ], [ -119.866800138999977, 50.700469400000031 ], [ -119.868600567999977, 50.700568545000039 ], [ -119.868110385999984, 50.70414806600013 ], [ -119.867879188999893, 50.704135336000043 ], [ -119.867856284999959, 50.704302572000117 ], [ -119.862210935999926, 50.703991586000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "112.8", "sL_BldgLoss": "112.8", "sL_StrLoss": "112.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F2BC01431F15DC0085C36BE9F5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.76390245, 50.742102709000029 ], [ -119.764045353999933, 50.741077659000098 ], [ -119.763737013999929, 50.741060407000091 ], [ -119.763817192999937, 50.740485300000067 ], [ -119.763859798999931, 50.740444203000052 ], [ -119.764629606999989, 50.739903210000143 ], [ -119.76486711799997, 50.739736295000043 ], [ -119.765755500999916, 50.738915991000077 ], [ -119.76601231799998, 50.73846029700006 ], [ -119.766037708999974, 50.737712490000028 ], [ -119.766173513999917, 50.737349406000085 ], [ -119.767183209999956, 50.736462093000057 ], [ -119.767167722999929, 50.735755642000107 ], [ -119.769799980999949, 50.735902830000079 ], [ -119.769767841999965, 50.736133614000011 ], [ -119.769681501999983, 50.736753568000083 ], [ -119.773365023999986, 50.736959433000024 ], [ -119.772945506000013, 50.739973314000117 ], [ -119.772866843999964, 50.740538379000036 ], [ -119.772682312999962, 50.740528069000071 ], [ -119.771699642999977, 50.740473160000064 ], [ -119.769837379999899, 50.740369077000082 ], [ -119.769576237999928, 50.742243991000059 ], [ -119.769551908999972, 50.742418652000026 ], [ -119.76390245, 50.742102709000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F5582284CF15DC0697617079B5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.768134010999944, 50.730951808000093 ], [ -119.769704527999949, 50.729328654000078 ], [ -119.771078769999946, 50.729405486000125 ], [ -119.772171253999929, 50.729466552000041 ], [ -119.77216943799999, 50.729479599000086 ], [ -119.772531642999979, 50.729499843000042 ], [ -119.772033478999958, 50.733078816000045 ], [ -119.771176641999972, 50.733030925000058 ], [ -119.767580134999946, 50.732829835000096 ], [ -119.768134010999944, 50.730951808000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3960917", "BldgCostT": "2731667", "sL_LossRatio": "1", "sL_AssetLoss": "144.6", "sL_BldgLoss": "144.6", "sL_StrLoss": "144.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012C08BC673ED5DC097AA93B7CC714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.704368336999948, 50.892433089000079 ], [ -119.704424889999956, 50.892032719000049 ], [ -119.704097355, 50.892014282000027 ], [ -119.704198425999948, 50.89129875800004 ], [ -119.703934099999969, 50.891283879000113 ], [ -119.704342610999973, 50.888391727000098 ], [ -119.70443947899993, 50.887705865000029 ], [ -119.705299517999933, 50.887754276000074 ], [ -119.70634976599996, 50.887813385000136 ], [ -119.706400604999942, 50.887453314000062 ], [ -119.706405009999955, 50.887422110000053 ], [ -119.706627970999961, 50.887434657000078 ], [ -119.7070021, 50.887455710000033 ], [ -119.707009491999912, 50.887403349000053 ], [ -119.707056900999973, 50.88706752300007 ], [ -119.708239276999947, 50.887134051000011 ], [ -119.709839071999951, 50.887224043000089 ], [ -119.709992614999919, 50.886135923000097 ], [ -119.710067755999987, 50.885603389000053 ], [ -119.710336781999942, 50.885618521 ], [ -119.715734969999957, 50.885922 ], [ -119.715698116999931, 50.886183424000116 ], [ -119.717195540999967, 50.886267561000061 ], [ -119.716691199999929, 50.889845638000118 ], [ -119.712411307999957, 50.889605108000055 ], [ -119.71221956899997, 50.890964337000099 ], [ -119.711622427999956, 50.890930766000075 ], [ -119.711567660999947, 50.891318953000081 ], [ -119.710732690999933, 50.891272004000072 ], [ -119.710566682999954, 50.892448472000062 ], [ -119.710083046999927, 50.892421275000096 ], [ -119.710036375999934, 50.892751985000096 ], [ -119.704368336999948, 50.892433089000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2015500", "BldgCostT": "1390000", "sL_LossRatio": "1", "sL_AssetLoss": "73", "sL_BldgLoss": "73", "sL_StrLoss": "73", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0ABEE684EF05DC0195A5B804F6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.752437530999913, 50.848352393000042 ], [ -119.752452751999954, 50.848243681000106 ], [ -119.752444036999947, 50.848243193000023 ], [ -119.752566841999965, 50.847366138000098 ], [ -119.750936248999921, 50.847274953000081 ], [ -119.751437370999966, 50.843696549000114 ], [ -119.757099570999955, 50.844013083000036 ], [ -119.75697686499997, 50.844890147000093 ], [ -119.758607382999969, 50.844981244000053 ], [ -119.758592177999958, 50.845089958000123 ], [ -119.758600890999972, 50.845090445000039 ], [ -119.758100327, 50.848668876000126 ], [ -119.752437530999913, 50.848352393000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4246083", "BldgCostT": "2928333", "sL_LossRatio": "1", "sL_AssetLoss": "147.7", "sL_BldgLoss": "147.7", "sL_StrLoss": "147.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005ED5DD65D4F65DC0F3F22A210E584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.854794132999956, 50.68938227000011 ], [ -119.854818351999938, 50.689205743000052 ], [ -119.853864523999988, 50.689153089000072 ], [ -119.853400529999988, 50.689127472000067 ], [ -119.853492218, 50.688459347000098 ], [ -119.853603419999928, 50.687648992000092 ], [ -119.853642576999974, 50.687363642000037 ], [ -119.851630394, 50.687252528000101 ], [ -119.852121704999959, 50.683673008000021 ], [ -119.8542079959999, 50.683788214000081 ], [ -119.854292339999972, 50.683173456000105 ], [ -119.859935015999937, 50.683484850000042 ], [ -119.859837232999922, 50.684198227000046 ], [ -119.86009235299997, 50.684212299000087 ], [ -119.860290752999958, 50.684223242 ], [ -119.86027051399995, 50.684370906 ], [ -119.860901844999944, 50.68440572600008 ], [ -119.860411224999964, 50.687985281000117 ], [ -119.859252011999942, 50.687921344000053 ], [ -119.859084239999959, 50.689145046000135 ], [ -119.860819277999894, 50.689240737000027 ], [ -119.86078394399999, 50.689498526000058 ], [ -119.860802295999946, 50.689499538000064 ], [ -119.860311612999965, 50.693079071000085 ], [ -119.859510435999979, 50.693034888000092 ], [ -119.859481285999919, 50.69324749000004 ], [ -119.856047158, 50.69305804 ], [ -119.853837385999938, 50.692936077000113 ], [ -119.854295328999953, 50.689598925000091 ], [ -119.854328583999973, 50.689356571000097 ], [ -119.854794132999956, 50.68938227000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CCC6BBA18F85DC0B65BBB82A75B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.874886077999932, 50.71398370300011 ], [ -119.878613681, 50.714188604000093 ], [ -119.878651111999929, 50.714249088000081 ], [ -119.878779703999982, 50.715055910000054 ], [ -119.87869429399997, 50.716169206000103 ], [ -119.8786203, 50.716367097000045 ], [ -119.878181596999937, 50.716975006000034 ], [ -119.878032014999988, 50.717341003000051 ], [ -119.877987307999987, 50.717771286000065 ], [ -119.87805567699999, 50.718165398000053 ], [ -119.878057939999962, 50.718171347000109 ], [ -119.874254719999982, 50.717962289000099 ], [ -119.87474456299999, 50.714382800000095 ], [ -119.874830819999914, 50.714387543000036 ], [ -119.874886077999932, 50.71398370300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "46.1", "sL_BldgLoss": "46.1", "sL_StrLoss": "46.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000196F6DD948F15DC0A26BF4A4AB664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.766646160999926, 50.80311976900002 ], [ -119.766885868999907, 50.801402019000115 ], [ -119.768049704999967, 50.801574101000085 ], [ -119.769160324, 50.801619700000032 ], [ -119.769609582999962, 50.801303499000028 ], [ -119.77002580199999, 50.801139709000061 ], [ -119.771275019999948, 50.800894699000047 ], [ -119.771687006999954, 50.800453199000096 ], [ -119.772552422999951, 50.7998429290001 ], [ -119.772802260999967, 50.799856869000067 ], [ -119.772303336, 50.80343555000006 ], [ -119.766646160999926, 50.80311976900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3724083", "BldgCostT": "2568333", "sL_LossRatio": "1", "sL_AssetLoss": "136.1", "sL_BldgLoss": "136.1", "sL_StrLoss": "136.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000884446ACEAEB5DC06CB0D3BC21734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.687358350999958, 50.895889990000107 ], [ -119.69302670799999, 50.896209744000046 ], [ -119.692520319999986, 50.899787672000031 ], [ -119.692107325999984, 50.899764384000093 ], [ -119.692014932999925, 50.900417082000097 ], [ -119.691550854999946, 50.900390913000066 ], [ -119.691500629999965, 50.900745693 ], [ -119.689296716999976, 50.900621387000044 ], [ -119.689280932999949, 50.900732844000125 ], [ -119.68495689099997, 50.900488829000039 ], [ -119.684546478999934, 50.903384648000028 ], [ -119.680339405999973, 50.903147073000156 ], [ -119.678877272999927, 50.903064468000117 ], [ -119.679047688999958, 50.901863155000065 ], [ -119.679384791999937, 50.899486615000107 ], [ -119.680435818999953, 50.899545995000054 ], [ -119.683708705999948, 50.899730844000068 ], [ -119.684119137999929, 50.896835017000043 ], [ -119.686322849999954, 50.896959426000087 ], [ -119.686338639999974, 50.896847968000117 ], [ -119.686627946999963, 50.896864298000025 ], [ -119.686736266999915, 50.896099676000077 ], [ -119.687323950999925, 50.896132844000078 ], [ -119.687358350999958, 50.895889990000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "105", "sL_BldgLoss": "105", "sL_StrLoss": "105", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3881B0126EA5DC0CA5EA571DE774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.655354598999963, 50.935015342000071 ], [ -119.655386374999978, 50.934792347000105 ], [ -119.655462725999953, 50.934256541000074 ], [ -119.661135724999923, 50.934577893000032 ], [ -119.661093957999967, 50.934871262000073 ], [ -119.661221641999987, 50.934878491000049 ], [ -119.661162669999925, 50.935292713000138 ], [ -119.66129297, 50.935300089000108 ], [ -119.660783593999966, 50.938877715000032 ], [ -119.65728632499993, 50.938679653000072 ], [ -119.656481854999981, 50.938634078000049 ], [ -119.656181492999977, 50.935677611000067 ], [ -119.655930724999962, 50.935297405000014 ], [ -119.655354598999963, 50.935015342000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "1", "sL_AssetLoss": "112.6", "sL_BldgLoss": "112.6", "sL_StrLoss": "112.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000033B25C1DDDF05DC0B09103FAED684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.759487307999962, 50.821259492000117 ], [ -119.759440994999977, 50.820477605000093 ], [ -119.759601040999954, 50.819735994000048 ], [ -119.75966319399997, 50.819447890000099 ], [ -119.759760615999951, 50.819165899000041 ], [ -119.759938831999989, 50.818915220000072 ], [ -119.759974008999933, 50.818865732000042 ], [ -119.760105790999944, 50.818680393000086 ], [ -119.760416787999972, 50.818242993000105 ], [ -119.76036828299999, 50.8179112 ], [ -119.760314539999939, 50.817279892000073 ], [ -119.765694237999966, 50.817580397000086 ], [ -119.765644161999987, 50.817939048000056 ], [ -119.767523202999953, 50.818043948000117 ], [ -119.767496144999939, 50.818237800000077 ], [ -119.767926803999927, 50.818261838000076 ], [ -119.767427283999936, 50.821840421000026 ], [ -119.767211585999945, 50.821828381000067 ], [ -119.767207376999949, 50.821858526000014 ], [ -119.761547908999944, 50.821542494000035 ], [ -119.761579206999926, 50.821318500000082 ], [ -119.761364217999983, 50.821306489000072 ], [ -119.761414331999987, 50.820947841000113 ], [ -119.76074908899993, 50.820910673000085 ], [ -119.760829099999924, 50.822266506000091 ], [ -119.759978267999941, 50.822286650000109 ], [ -119.759994166999917, 50.82255612000008 ], [ -119.759143328999983, 50.822576257000037 ], [ -119.759159222999926, 50.822845727000114 ], [ -119.758666745999918, 50.822857380000123 ], [ -119.75885157099998, 50.822368303000069 ], [ -119.759052584999978, 50.82183630400003 ], [ -119.759259673999964, 50.821561516000067 ], [ -119.759487307999962, 50.821259492000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "109.4", "sL_BldgLoss": "109.4", "sL_StrLoss": "109.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098F4DEB5D7F05DC000BF901FBB694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.760586006000011, 50.824075716000081 ], [ -119.766245786999932, 50.824391796000072 ], [ -119.765746064999988, 50.827970346000086 ], [ -119.760085834999984, 50.827654242000015 ], [ -119.760586006000011, 50.824075716000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "48.2", "sL_BldgLoss": "48.2", "sL_StrLoss": "48.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2265DA7CFF05DC0DA3BA3AD4A604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.764490049999949, 50.754422096000013 ], [ -119.763507708999896, 50.753945710000032 ], [ -119.762693510999938, 50.753380290000102 ], [ -119.762049467999958, 50.753034744000082 ], [ -119.761552105999954, 50.752767898000101 ], [ -119.761118416999949, 50.752400393000109 ], [ -119.760113013999955, 50.751192700000068 ], [ -119.760099514999979, 50.750970240000051 ], [ -119.763192614, 50.751143326000076 ], [ -119.763979040999956, 50.751187319000053 ], [ -119.763890044999954, 50.751825527000086 ], [ -119.764202676999943, 50.751843014000016 ], [ -119.764166532999965, 50.752102220000047 ], [ -119.76448988599999, 50.752120306000066 ], [ -119.764201987999954, 50.754184968000068 ], [ -119.764475687999948, 50.754178475000032 ], [ -119.764490049999949, 50.754422096000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6048917", "BldgCostT": "4171667", "sL_LossRatio": "1", "sL_AssetLoss": "143.2", "sL_BldgLoss": "143.2", "sL_StrLoss": "143.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A36C71CB8EA5DC0EC92691B1C794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.666811798999987, 50.947830386000064 ], [ -119.665103600999885, 50.947320607000023 ], [ -119.664010495999904, 50.946904708000069 ], [ -119.6634654099999, 50.946844909000042 ], [ -119.66309981399999, 50.946888990000062 ], [ -119.662734219999948, 50.946997303000089 ], [ -119.662717015999959, 50.947176700000099 ], [ -119.662550395999986, 50.94726221100003 ], [ -119.66162581899998, 50.947040001000083 ], [ -119.659628280999982, 50.946933195000042 ], [ -119.659282320999949, 50.946797607000079 ], [ -119.659328111999955, 50.946476149000027 ], [ -119.659330076999964, 50.946462348000132 ], [ -119.659270557999903, 50.946458978000095 ], [ -119.658541495999941, 50.946417695000036 ], [ -119.658526490999947, 50.946391358000028 ], [ -119.658480597999983, 50.946310798000063 ], [ -119.658411996999945, 50.946078702000101 ], [ -119.658556777999962, 50.945886392000084 ], [ -119.658558606, 50.945427799000051 ], [ -119.658349597999973, 50.94525260300005 ], [ -119.657746017999941, 50.945158599000138 ], [ -119.657567690999912, 50.945037613000089 ], [ -119.657005295999951, 50.943881098000091 ], [ -119.657048478999982, 50.943168998000061 ], [ -119.65726168799992, 50.942652013000043 ], [ -119.657250059999953, 50.94261460200017 ], [ -119.658578435999914, 50.942689839000096 ], [ -119.658644633999955, 50.942225123000057 ], [ -119.658787577999959, 50.941221633000033 ], [ -119.664461485999965, 50.941542814000101 ], [ -119.664393481999937, 50.942020650000167 ], [ -119.667965805999984, 50.942222719000036 ], [ -119.667944394999935, 50.94237324100007 ], [ -119.668260405999916, 50.942391112000081 ], [ -119.668196859999981, 50.942837884000149 ], [ -119.66971949000002, 50.942923972000088 ], [ -119.669688965999953, 50.943138630000107 ], [ -119.670057494999966, 50.943159463000043 ], [ -119.669837451999982, 50.944706876000041 ], [ -119.673305695999971, 50.944902877000082 ], [ -119.673116485999941, 50.946234106000077 ], [ -119.673547779999964, 50.946258473000093 ], [ -119.67353534399993, 50.946345984000089 ], [ -119.673671383999988, 50.946353670000107 ], [ -119.673567927999969, 50.947081588000096 ], [ -119.676188552, 50.947229602000036 ], [ -119.676138955999988, 50.94757869300004 ], [ -119.676344471, 50.94759029800008 ], [ -119.676252931999954, 50.948234616000079 ], [ -119.677792869999905, 50.948321560000068 ], [ -119.677284668999945, 50.951899208000043 ], [ -119.674936762999948, 50.951766639000049 ], [ -119.674889523999923, 50.952099038000064 ], [ -119.674884076999945, 50.952137363000084 ], [ -119.67360813199997, 50.952065298000079 ], [ -119.672888408999896, 50.951477790000091 ], [ -119.672179888999949, 50.951053404000064 ], [ -119.670593202999967, 50.950442401000053 ], [ -119.67005831299997, 50.950067891000081 ], [ -119.669585621999914, 50.949529500000047 ], [ -119.669349687999969, 50.94939140200006 ], [ -119.668380182999897, 50.948855899000158 ], [ -119.668218797999941, 50.948518301000064 ], [ -119.667963602, 50.948280510000096 ], [ -119.666811798999987, 50.947830386000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9439500", "BldgCostT": "6510000", "sL_LossRatio": "1", "sL_AssetLoss": "512", "sL_BldgLoss": "512", "sL_StrLoss": "512", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000624F96B528F55DC0CDEADB5135584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.816056670999942, 50.694997334000099 ], [ -119.816083199000019, 50.694805224000056 ], [ -119.815926678999958, 50.694796531000044 ], [ -119.815955874999943, 50.69458511300013 ], [ -119.817076400999923, 50.693942309000072 ], [ -119.817831986999977, 50.693304292000029 ], [ -119.818330702999901, 50.692644899000051 ], [ -119.819177989999986, 50.691895690000159 ], [ -119.820259898999893, 50.691518308000056 ], [ -119.823213808999967, 50.690034299000132 ], [ -119.824161494999927, 50.689635766000073 ], [ -119.826640889999908, 50.688593002000111 ], [ -119.828646512999953, 50.687365308000082 ], [ -119.829848691999985, 50.686374095000076 ], [ -119.830621990999987, 50.685572210000053 ], [ -119.831354281999893, 50.685051 ], [ -119.831859579999943, 50.684499795000058 ], [ -119.831898793, 50.683733606000025 ], [ -119.832201099999978, 50.682430410000137 ], [ -119.832482205999966, 50.682226059000051 ], [ -119.836985280999954, 50.682475479000075 ], [ -119.836725512000015, 50.68436353500006 ], [ -119.836970212999972, 50.684377083000108 ], [ -119.836959059999984, 50.6844581470001 ], [ -119.837360506999929, 50.684480372000053 ], [ -119.83733438199998, 50.684670259000015 ], [ -119.838670776999919, 50.684744237000096 ], [ -119.838653848999982, 50.68486729600005 ], [ -119.83886587799995, 50.684879031000051 ], [ -119.838849965999955, 50.684994715000066 ], [ -119.839455265999931, 50.685028216000056 ], [ -119.839421183999946, 50.685276028000068 ], [ -119.840118161999953, 50.685314599000073 ], [ -119.839625876999904, 50.688894058000081 ], [ -119.839436431999943, 50.688883575000013 ], [ -119.839430668999967, 50.688925462000043 ], [ -119.839328879999982, 50.688919830000039 ], [ -119.839251694999916, 50.68948096500003 ], [ -119.839093065999975, 50.689472187000042 ], [ -119.838974230999909, 50.690336070000029 ], [ -119.838705446999953, 50.690321195000109 ], [ -119.838680727999986, 50.690500877000048 ], [ -119.838543872999963, 50.690493303000032 ], [ -119.838526528999978, 50.690619379000076 ], [ -119.838359337999961, 50.690610126000081 ], [ -119.838333629999951, 50.690796984000073 ], [ -119.838019142999954, 50.690779578000097 ], [ -119.838002120999988, 50.690903291000055 ], [ -119.83785923899994, 50.690895383000083 ], [ -119.837840221999926, 50.691033594000089 ], [ -119.837577009999961, 50.691019025000045 ], [ -119.837556718, 50.691166501000055 ], [ -119.836973722999943, 50.691134229000021 ], [ -119.836929206999955, 50.691457715000105 ], [ -119.836368560999972, 50.691426678000028 ], [ -119.836304104999968, 50.691895028000111 ], [ -119.835685393999924, 50.691860772000076 ], [ -119.835665783999971, 50.692003242000112 ], [ -119.835337811999949, 50.691985082000024 ], [ -119.835325772999937, 50.692072551000109 ], [ -119.83506113599995, 50.692057897000041 ], [ -119.83504916599999, 50.69214485600002 ], [ -119.834443080999918, 50.692111294000057 ], [ -119.834424044999977, 50.692249570000058 ], [ -119.834223783999974, 50.692238481000111 ], [ -119.834206341999973, 50.69236517500012 ], [ -119.833877529999938, 50.692346965000077 ], [ -119.833871028000019, 50.692394183000012 ], [ -119.829803394999942, 50.692168828000085 ], [ -119.829726867999952, 50.692724278000071 ], [ -119.82507888799995, 50.692466586000108 ], [ -119.825059957999926, 50.692603886000022 ], [ -119.823481542999943, 50.692516331000149 ], [ -119.823313447999951, 50.693735123000131 ], [ -119.822937669999959, 50.693714275000026 ], [ -119.822906640999946, 50.693939233000044 ], [ -119.822863679999941, 50.693936849000039 ], [ -119.822854744, 50.694001633000042 ], [ -119.822473326999912, 50.693980472000099 ], [ -119.822437836999924, 50.694237742000034 ], [ -119.821853065, 50.694205295000145 ], [ -119.821832249999943, 50.694356173000038 ], [ -119.821700566999979, 50.695310657000086 ], [ -119.816056670999942, 50.694997334000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009EC9C2C96F75DC052C2C03153554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.867469326, 50.665081640000061 ], [ -119.869452680999984, 50.664824392000078 ], [ -119.869414499999934, 50.66628278700005 ], [ -119.869907608999981, 50.666945004000127 ], [ -119.870025854999938, 50.667077601000095 ], [ -119.870050188, 50.667482501000059 ], [ -119.870041984999986, 50.667581855000044 ], [ -119.870045096999945, 50.667636199000057 ], [ -119.870091632999944, 50.667707652000068 ], [ -119.870211844, 50.667831862000092 ], [ -119.870286095999958, 50.667893645000071 ], [ -119.870376544999914, 50.66799128600011 ], [ -119.87045079499994, 50.668061641000115 ], [ -119.867086879999945, 50.667876289000084 ], [ -119.867230348999939, 50.666827949000094 ], [ -119.867469326, 50.665081640000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "97.2", "sL_BldgLoss": "97.2", "sL_StrLoss": "97.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000090824CD778F85DC051A02ED6E0564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.880317841999954, 50.679867930000107 ], [ -119.88033343099994, 50.679753806000058 ], [ -119.879569625999949, 50.679711809000061 ], [ -119.880031679999917, 50.67632941400008 ], [ -119.880332088999978, 50.676518494000099 ], [ -119.881128596999986, 50.677039800000081 ], [ -119.882436609999914, 50.677375892000086 ], [ -119.88357950299999, 50.678012503000076 ], [ -119.88446890199999, 50.678189110000041 ], [ -119.885922222999966, 50.679258699000115 ], [ -119.885928795999945, 50.679261560000072 ], [ -119.886076630999966, 50.679325468000066 ], [ -119.88596028299996, 50.680178008000013 ], [ -119.880317841999954, 50.679867930000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "1", "sL_AssetLoss": "43.3", "sL_BldgLoss": "43.3", "sL_StrLoss": "43.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000048A2D96D7EF65DC0B7DA79D18D5B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.848889244, 50.713319901000027 ], [ -119.85453567399999, 50.713631556000045 ], [ -119.854044227999935, 50.717210960000052 ], [ -119.848397349999971, 50.716899281000082 ], [ -119.848889244, 50.713319901000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5217583", "BldgCostT": "3598333", "sL_LossRatio": "1", "sL_AssetLoss": "272", "sL_BldgLoss": "272", "sL_StrLoss": "272", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007BD63DCB96F75DC0CD906435E1564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.86349467, 50.68367756 ], [ -119.863602024999963, 50.682893876000037 ], [ -119.862899505999906, 50.682855145000055 ], [ -119.862901830999959, 50.682838170000082 ], [ -119.86298729399999, 50.682214346000073 ], [ -119.861602906999948, 50.682138010000095 ], [ -119.861766148999934, 50.680946664 ], [ -119.862093365999939, 50.678558426000073 ], [ -119.862130053, 50.678560448000063 ], [ -119.862177581999944, 50.678213526000022 ], [ -119.86264065899995, 50.678239050000101 ], [ -119.864328777999972, 50.678332111000046 ], [ -119.864402009999964, 50.677797376000058 ], [ -119.86663598699991, 50.677920506000078 ], [ -119.867914259999907, 50.677990940000086 ], [ -119.868174656999912, 50.676088366000087 ], [ -119.868238968999975, 50.675618461000099 ], [ -119.868804801999914, 50.675649634000145 ], [ -119.870145555999954, 50.67572348800006 ], [ -119.870274891999927, 50.674778130000036 ], [ -119.870592247999937, 50.672458308000053 ], [ -119.872970540000011, 50.672589274000082 ], [ -119.87295436299999, 50.672766931000105 ], [ -119.872960556999956, 50.672875633000046 ], [ -119.872950588999956, 50.672948466000058 ], [ -119.872947349999919, 50.673139038000031 ], [ -119.872941487999981, 50.673284289000058 ], [ -119.872937189999988, 50.673456754000092 ], [ -119.872978938999935, 50.673691565000041 ], [ -119.873015074999913, 50.673677546000064 ], [ -119.873324168999929, 50.673557578000086 ], [ -119.873411131999916, 50.67352382800005 ], [ -119.873642182999902, 50.673496873000012 ], [ -119.873826711999982, 50.673550324000125 ], [ -119.873958823999942, 50.673685634000023 ], [ -119.874085711999953, 50.673921637000078 ], [ -119.87434983299994, 50.674151662000043 ], [ -119.874666876999967, 50.674322219 ], [ -119.87477738199999, 50.674381693000022 ], [ -119.875109628999923, 50.674560437000139 ], [ -119.875284320999953, 50.674717023000035 ], [ -119.875437483999931, 50.674812919000047 ], [ -119.875583118999955, 50.674841133000015 ], [ -119.8756618, 50.67515979700007 ], [ -119.875901399999933, 50.67537771000007 ], [ -119.876304445999907, 50.675502270000095 ], [ -119.876165049999898, 50.676522144000032 ], [ -119.875800201999965, 50.67650206800004 ], [ -119.875781040999982, 50.676642252000072 ], [ -119.873798209999947, 50.676533127000063 ], [ -119.8733913, 50.679508801000019 ], [ -119.869878907999961, 50.679315410000093 ], [ -119.869554259999987, 50.681687884000077 ], [ -119.86945309099994, 50.681682312000127 ], [ -119.86913747399997, 50.683988488000089 ], [ -119.86349467, 50.68367756 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "35.1", "sL_BldgLoss": "35.1", "sL_StrLoss": "35.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D1C186E9F3E95DC016F761B5E06D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.658649902, 50.855677009000026 ], [ -119.659236547999953, 50.855450016000084 ], [ -119.659148043999977, 50.856072632000085 ], [ -119.659079778999953, 50.856552866000065 ], [ -119.658730592999973, 50.859009140000111 ], [ -119.65789971199996, 50.858961991000037 ], [ -119.65783507699993, 50.859416559000081 ], [ -119.65578315399992, 50.85930009300003 ], [ -119.655621239999974, 50.86043840800005 ], [ -119.654671574999952, 50.860384492000044 ], [ -119.653482914999927, 50.860316997000027 ], [ -119.651012806999972, 50.859538590000092 ], [ -119.649587276999966, 50.858986795000114 ], [ -119.650047098999949, 50.858841500000068 ], [ -119.651309505999933, 50.858794611000057 ], [ -119.654212390999987, 50.858099513000063 ], [ -119.654416710999968, 50.857951394000061 ], [ -119.654570816, 50.857425906000074 ], [ -119.655125085999927, 50.857142500000087 ], [ -119.656964601999931, 50.856759411000056 ], [ -119.657357686999902, 50.85641749500008 ], [ -119.658649902, 50.855677009000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CEAA8DB984EA5DC083444562236D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.663078160999959, 50.849862110000117 ], [ -119.665359453999912, 50.849991471000116 ], [ -119.6657492099999, 50.850101204000055 ], [ -119.666634358999929, 50.850169008000137 ], [ -119.666141205999935, 50.853642581000017 ], [ -119.665901914999978, 50.853629017000031 ], [ -119.665676077999962, 50.855219488000039 ], [ -119.660579260999938, 50.854930456000069 ], [ -119.660847392, 50.854826701000079 ], [ -119.662068416999944, 50.854061895000058 ], [ -119.662337212999958, 50.853552 ], [ -119.662948011999944, 50.853043607000075 ], [ -119.663326117999958, 50.852449696000072 ], [ -119.6633008109999, 50.852001104000095 ], [ -119.662885896999924, 50.850948595000027 ], [ -119.662839173999913, 50.850131093000087 ], [ -119.662899592999935, 50.849967301000085 ], [ -119.663078160999959, 50.849862110000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "1", "sL_AssetLoss": "54.7", "sL_BldgLoss": "54.7", "sL_StrLoss": "54.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7009D30BEF05DC0BC4D0BA090674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.759746052999972, 50.807176524000084 ], [ -119.764661678999985, 50.807451207000035 ], [ -119.764162019999986, 50.81102982000003 ], [ -119.758503940999972, 50.81071363100012 ], [ -119.758783603999959, 50.808712543000112 ], [ -119.758800200999957, 50.808665202000078 ], [ -119.75880001900002, 50.808595079000099 ], [ -119.758920726999975, 50.807731310000044 ], [ -119.758943709999926, 50.807699590000048 ], [ -119.759746052999972, 50.807176524000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912583", "BldgCostT": "2698333", "sL_LossRatio": "1", "sL_AssetLoss": "219.7", "sL_BldgLoss": "219.7", "sL_StrLoss": "219.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000001ED169ACEE95DC043F195061F774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.651604444999947, 50.933896859000058 ], [ -119.651887475999956, 50.93191171200003 ], [ -119.649523496999919, 50.931777633000102 ], [ -119.649510797999952, 50.931286811000071 ], [ -119.649319293999952, 50.930661603000026 ], [ -119.648681714999896, 50.92971449000008 ], [ -119.648633644999904, 50.929678905000053 ], [ -119.648839372999959, 50.928236503000107 ], [ -119.648943686999942, 50.927505095000093 ], [ -119.649000921999956, 50.927103776000102 ], [ -119.65467296599999, 50.927425457000069 ], [ -119.654615253999907, 50.927830482000097 ], [ -119.655364270999925, 50.927872939000032 ], [ -119.655275319999987, 50.928497255000067 ], [ -119.655352714999964, 50.928501641000125 ], [ -119.655127414999981, 50.930082882000093 ], [ -119.65793134099999, 50.930241774000081 ], [ -119.65742175299998, 50.933819404000083 ], [ -119.65733491099995, 50.933814484000031 ], [ -119.657277370999935, 50.934218407000046 ], [ -119.654835040999913, 50.934080008000123 ], [ -119.651604444999947, 50.933896859000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "282.8", "sL_BldgLoss": "282.8", "sL_StrLoss": "282.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000710E2AB339EE5DC0504412FFA8684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.722384298999899, 50.81586035200008 ], [ -119.725352501999978, 50.816027204000122 ], [ -119.724849603999928, 50.819605606000025 ], [ -119.719754405999964, 50.819319139000072 ], [ -119.719190720999933, 50.819287433000028 ], [ -119.719694067999967, 50.815709055000113 ], [ -119.722384298999899, 50.81586035200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.2", "sL_BldgLoss": "52.2", "sL_StrLoss": "52.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A21D54584F05DC045F1AEA33F694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.757882958, 50.822875922000044 ], [ -119.757867071999968, 50.822606451000127 ], [ -119.757441651999912, 50.822616513000078 ], [ -119.757394002999959, 50.82180810100008 ], [ -119.757819413999968, 50.821798041000129 ], [ -119.757786775999975, 50.821244377000077 ], [ -119.758394616999936, 50.821914842000048 ], [ -119.75885157099998, 50.822368303000069 ], [ -119.758666745999918, 50.822857380000123 ], [ -119.758014986999953, 50.822872799000038 ], [ -119.757882958, 50.822875922000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947917", "BldgCostT": "4791667", "sL_LossRatio": "1", "sL_AssetLoss": "400", "sL_BldgLoss": "400", "sL_StrLoss": "400", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C819501AFED5DC0B34C1AFE2E694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.71113400899992, 50.823899502000081 ], [ -119.711320488999945, 50.822575713000106 ], [ -119.710027729999979, 50.822502901000085 ], [ -119.710945294999988, 50.820914909000074 ], [ -119.7109776019999, 50.820490393000121 ], [ -119.711552013999949, 50.818982039000026 ], [ -119.715296884999958, 50.81919288800006 ], [ -119.715110538999937, 50.820516688000076 ], [ -119.717297011999989, 50.820639735000064 ], [ -119.717145201, 50.821718504000074 ], [ -119.716793418999941, 50.824218081000055 ], [ -119.712262545, 50.823963052000124 ], [ -119.71113400899992, 50.823899502000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.3", "sL_BldgLoss": "52.3", "sL_StrLoss": "52.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084940AF07EF05DC078B17260206A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.757479196999924, 50.828316154000063 ], [ -119.759273995999948, 50.828416459000024 ], [ -119.759272706999951, 50.828451802000046 ], [ -119.759108092, 50.828607591000079 ], [ -119.758854399, 50.828847695000029 ], [ -119.7586878799999, 50.82913969700008 ], [ -119.7580168, 50.829569790000114 ], [ -119.757547095999925, 50.83002120200009 ], [ -119.75723011499997, 50.830173600000066 ], [ -119.756742331999959, 50.830264795000097 ], [ -119.75699310899995, 50.82847174300008 ], [ -119.757453835999982, 50.828497496000125 ], [ -119.757479196999924, 50.828316154000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "269.8", "sL_BldgLoss": "269.8", "sL_StrLoss": "269.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002DD53F67D6EE5DC0B4E7CF0A4E664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.729382110999893, 50.801689107000087 ], [ -119.729366400999979, 50.80141962900008 ], [ -119.728941161999941, 50.801429585000044 ], [ -119.728768391999907, 50.798465326000084 ], [ -119.728343181999904, 50.798475279000073 ], [ -119.728296074999932, 50.797666843000073 ], [ -119.728516403999947, 50.797661688000034 ], [ -119.730422091999984, 50.797617068000065 ], [ -119.730406376999937, 50.797347590000108 ], [ -119.732107174999939, 50.797307743 ], [ -119.732154347999952, 50.798116175000089 ], [ -119.732579553999955, 50.798106208000092 ], [ -119.73259528, 50.798375686000107 ], [ -119.733445697999969, 50.798355749000073 ], [ -119.733398501999929, 50.797547317000117 ], [ -119.734674103999978, 50.797517401000107 ], [ -119.734693387999982, 50.797847569000155 ], [ -119.734737060999947, 50.798595308000117 ], [ -119.735071231999967, 50.798587468000093 ], [ -119.73516227099999, 50.798585332000094 ], [ -119.73516984299998, 50.798714985000053 ], [ -119.735193753999965, 50.799124285000083 ], [ -119.735482624000028, 50.799117507000098 ], [ -119.735618969999948, 50.799114308000135 ], [ -119.735626485999944, 50.799242961000076 ], [ -119.735666203999955, 50.799922737000024 ], [ -119.735240983000011, 50.799932715000054 ], [ -119.735288213999965, 50.800741145000039 ], [ -119.734862982999957, 50.800751121000118 ], [ -119.734878724999987, 50.801020598000029 ], [ -119.733177795999936, 50.801060488000104 ], [ -119.733130600999914, 50.800252058000083 ], [ -119.732705375999927, 50.800262026000084 ], [ -119.732689646999944, 50.799992549000116 ], [ -119.732264423999979, 50.800002516000077 ], [ -119.732232970999959, 50.799463561000046 ], [ -119.731807752999941, 50.799473526000071 ], [ -119.731792029999923, 50.79920404900006 ], [ -119.731366812999966, 50.799214012000043 ], [ -119.73135109299993, 50.798944535000089 ], [ -119.730925878999955, 50.798954496000128 ], [ -119.730973033999959, 50.799762930000078 ], [ -119.730547810999923, 50.799772890000035 ], [ -119.730657828999966, 50.801659233000123 ], [ -119.729630648999915, 50.801683288000106 ], [ -119.729382110999893, 50.801689107000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19297083", "BldgCostT": "13308333", "sL_LossRatio": "1", "sL_AssetLoss": "1100", "sL_BldgLoss": "1100", "sL_StrLoss": "1100", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A92CA560FED5DC0B21F73AF5D6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.699869091999943, 50.832720113000086 ], [ -119.699222487999975, 50.832348409000083 ], [ -119.697866495999961, 50.832469500000073 ], [ -119.697507012999949, 50.83255415900009 ], [ -119.697511204999969, 50.832524470000052 ], [ -119.696859496999949, 50.832487693000125 ], [ -119.696895844, 50.832230321000111 ], [ -119.696813814999985, 50.832225693000034 ], [ -119.696819045999959, 50.832188642000077 ], [ -119.69740000099992, 50.832274398000017 ], [ -119.697696312999966, 50.83223160300011 ], [ -119.698380526999983, 50.831530923000095 ], [ -119.698649000999978, 50.831255984000109 ], [ -119.69877010899998, 50.830901390000115 ], [ -119.698767172999979, 50.830774402000074 ], [ -119.698741384999934, 50.829660908000072 ], [ -119.698851321999939, 50.829092704000054 ], [ -119.698977991999953, 50.82886897 ], [ -119.699135205999966, 50.828591284000105 ], [ -119.6996359, 50.828158415000061 ], [ -119.699756208999986, 50.828054401000095 ], [ -119.700632978999934, 50.827755300000064 ], [ -119.700688948, 50.827750594000115 ], [ -119.701666122999924, 50.827668505000062 ], [ -119.70321981099994, 50.827776705000062 ], [ -119.703809196999899, 50.827773323000017 ], [ -119.704213094999915, 50.827771007000059 ], [ -119.70523988599993, 50.827567302000048 ], [ -119.705499606999979, 50.82740919600009 ], [ -119.706365711999979, 50.827172795000067 ], [ -119.707406883999937, 50.826735593000102 ], [ -119.708297984999916, 50.825959408000102 ], [ -119.70887, 50.825271485000016 ], [ -119.709228614999972, 50.823885798000084 ], [ -119.709798851999935, 50.822898991000038 ], [ -119.709433670999928, 50.825490648000077 ], [ -119.70935521, 50.825486229000049 ], [ -119.709327277999961, 50.825684450000082 ], [ -119.709298240999928, 50.825682815000107 ], [ -119.709272356999989, 50.825866492000081 ], [ -119.70995476899999, 50.825904931000146 ], [ -119.711108603999918, 50.825969916000084 ], [ -119.71060445599997, 50.829548213000081 ], [ -119.709700947, 50.829497328000066 ], [ -119.709711074, 50.829672100000046 ], [ -119.708700344999968, 50.829695583000067 ], [ -119.708552435999934, 50.830744957000014 ], [ -119.707887306999964, 50.830707486000044 ], [ -119.707825126999964, 50.831148572000068 ], [ -119.707352109999988, 50.831121923000055 ], [ -119.707323115999955, 50.831327584000064 ], [ -119.706675716999939, 50.831291106000023 ], [ -119.706458364999918, 50.832832600000124 ], [ -119.706138091999918, 50.83281455300007 ], [ -119.705837209999956, 50.832797598000106 ], [ -119.705778456999965, 50.833214215000069 ], [ -119.705153449999969, 50.833178992000043 ], [ -119.705037270999981, 50.834002729000055 ], [ -119.704965695999988, 50.83399869600008 ], [ -119.70485920500002, 50.834753708000079 ], [ -119.704729051999934, 50.835676433000046 ], [ -119.704684023999931, 50.835673896000102 ], [ -119.704481524999963, 50.837109436000077 ], [ -119.704327647999918, 50.837100763000066 ], [ -119.704314103999934, 50.83719677200002 ], [ -119.703778149999962, 50.83719205200002 ], [ -119.70359331199991, 50.83719040700003 ], [ -119.700100482999929, 50.837138295000045 ], [ -119.697871347, 50.837104961000122 ], [ -119.698857393999958, 50.836333288000112 ], [ -119.700174881999914, 50.836032793000101 ], [ -119.700651582999939, 50.83594880400004 ], [ -119.701032890999926, 50.83565259300012 ], [ -119.700641553999901, 50.83381106500007 ], [ -119.700624002, 50.833728485000066 ], [ -119.699869091999943, 50.832720113000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19606417", "BldgCostT": "13521667", "sL_LossRatio": "1", "sL_AssetLoss": "1421.9", "sL_BldgLoss": "1421.9", "sL_StrLoss": "1421.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9A6BD563CEE5DC05D9F204EB3654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.721258785999908, 50.797730128000133 ], [ -119.721485404999953, 50.796117783000064 ], [ -119.717406215999944, 50.795888207000111 ], [ -119.717189810999955, 50.795663606000076 ], [ -119.716971720999979, 50.795287047000038 ], [ -119.717151110999978, 50.794011533000102 ], [ -119.71723998, 50.79381930100007 ], [ -119.717373595999973, 50.791477891000056 ], [ -119.717769186999988, 50.790713103000122 ], [ -119.717872910999958, 50.79004920800007 ], [ -119.719716900999956, 50.790153012000125 ], [ -119.72181969399999, 50.790271348000054 ], [ -119.72200073599997, 50.788982940000032 ], [ -119.722106241999924, 50.788232049000051 ], [ -119.727761222999945, 50.788550086000022 ], [ -119.727258826999943, 50.792128612000077 ], [ -119.726112390999987, 50.792064160000066 ], [ -119.722616164999948, 50.79186753000009 ], [ -119.722517590999971, 50.792569075000074 ], [ -119.723049972999945, 50.792599024000069 ], [ -119.722706194999958, 50.795045709000128 ], [ -119.722669790999959, 50.795304783000049 ], [ -119.723205653999912, 50.795334924000038 ], [ -119.725839285999953, 50.795483026000056 ], [ -119.727263924999974, 50.795563113000071 ], [ -119.727112935999983, 50.796638387000016 ], [ -119.72676141, 50.799141609000081 ], [ -119.724151466, 50.798994874000059 ], [ -119.723796017999959, 50.801524672 ], [ -119.723253546999956, 50.801494165000058 ], [ -119.723101646999964, 50.802575085000122 ], [ -119.721855698999931, 50.80250500800004 ], [ -119.721461409999975, 50.802247696000116 ], [ -119.721291636999936, 50.801960066000078 ], [ -119.721226091999981, 50.80184899400011 ], [ -119.720753984999959, 50.801562692000076 ], [ -119.720140103999967, 50.800524494000122 ], [ -119.720095489999949, 50.800246690000073 ], [ -119.720249765999952, 50.799333843000021 ], [ -119.72028611199994, 50.799118800000045 ], [ -119.720094506999985, 50.798258488000023 ], [ -119.719875821999949, 50.797940906000072 ], [ -119.719543012999978, 50.797633583000049 ], [ -119.721258785999908, 50.797730128000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.8", "sL_BldgLoss": "40.8", "sL_StrLoss": "40.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001540083333F05DC0A85E4C6D086B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.75260701799999, 50.835078657000096 ], [ -119.754330313999986, 50.835175027000105 ], [ -119.754077602999956, 50.835510207000048 ], [ -119.754251483999965, 50.835783598000049 ], [ -119.754225005999928, 50.836064188000108 ], [ -119.753702200999953, 50.836615311000038 ], [ -119.7536093, 50.836950005000027 ], [ -119.753093537999931, 50.837464617000059 ], [ -119.752137398999963, 50.837447711000081 ], [ -119.752449617999915, 50.835217354000072 ], [ -119.752586531999938, 50.83522501100002 ], [ -119.75260701799999, 50.835078657000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "278.8", "sL_BldgLoss": "278.8", "sL_StrLoss": "278.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084B0E09F4EEE5DC08501CFE686674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.722013805999936, 50.806831390000127 ], [ -119.726132655999962, 50.807062967000064 ], [ -119.725629920999936, 50.810641409000041 ], [ -119.725307519999959, 50.810623288000052 ], [ -119.725294110999954, 50.810718715000085 ], [ -119.724919853999936, 50.810697679000086 ], [ -119.724912596999928, 50.810749325000053 ], [ -119.721229392999959, 50.810542227000099 ], [ -119.721322414, 50.810355795000092 ], [ -119.7208646, 50.809061193000041 ], [ -119.720857600999963, 50.808702303000068 ], [ -119.721385502000018, 50.807780785000084 ], [ -119.721785716999989, 50.807340701000015 ], [ -119.722013805999936, 50.806831390000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "52.8", "sL_BldgLoss": "52.8", "sL_StrLoss": "52.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B04C09D216EE5DC051FD9CE5A6674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.719658190999894, 50.809099588000073 ], [ -119.71992648599999, 50.808796290000075 ], [ -119.720503298, 50.808979992000033 ], [ -119.720746607999928, 50.809253387000098 ], [ -119.721062877999969, 50.810288792000058 ], [ -119.72095547399999, 50.810526820000042 ], [ -119.719254831999962, 50.810431151000081 ], [ -119.719394697999959, 50.809436661000049 ], [ -119.719658190999894, 50.809099588000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "146.8", "sL_BldgLoss": "146.8", "sL_StrLoss": "146.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5573B8A33EE5DC0D35704BD3F644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.720953810999958, 50.781068306000058 ], [ -119.721101067999939, 50.780806617000039 ], [ -119.72243090299996, 50.782294500000084 ], [ -119.72346394799996, 50.78333101300008 ], [ -119.723720663999927, 50.783614600000085 ], [ -119.724038668, 50.78396661300004 ], [ -119.724038318999987, 50.783969106000065 ], [ -119.723886969999953, 50.783960591000067 ], [ -119.723797342999958, 50.784598710000104 ], [ -119.722625024999928, 50.784532754000054 ], [ -119.720245316999964, 50.78439883100004 ], [ -119.720529682999938, 50.783767191000059 ], [ -119.720549945999906, 50.783473230000027 ], [ -119.720676196999975, 50.781640906000092 ], [ -119.720953810999958, 50.781068306000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68974083", "BldgCostT": "47568333", "sL_LossRatio": "1", "sL_AssetLoss": "4310", "sL_BldgLoss": "4310", "sL_StrLoss": "4310", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000463578A131085EC00802A6042B974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.123804944999961, 51.182522580000118 ], [ -120.124112320999984, 51.181689940000055 ], [ -120.124450961999955, 51.180772546000128 ], [ -120.124852466999982, 51.17964830300005 ], [ -120.125297592999956, 51.178401920000098 ], [ -120.12554825499997, 51.177699910000037 ], [ -120.125605327999949, 51.177540090000079 ], [ -120.125686150999968, 51.17731009500006 ], [ -120.125797084999974, 51.176755076000092 ], [ -120.125801440999936, 51.176733247000115 ], [ -120.125905924999984, 51.176210487000063 ], [ -120.125912459999967, 51.176177801000037 ], [ -120.125962316999946, 51.175926853000092 ], [ -120.126104387999959, 51.17521217900002 ], [ -120.126115374999983, 51.17515688700005 ], [ -120.12766871599996, 51.174859168000054 ], [ -120.12857267599999, 51.174685894000092 ], [ -120.12950741, 51.174549098000057 ], [ -120.129803311000018, 51.174484308000032 ], [ -120.131833673999893, 51.176438039000061 ], [ -120.132075700999948, 51.176670907000116 ], [ -120.13276383099992, 51.177332994000082 ], [ -120.133669224999934, 51.178204116000067 ], [ -120.133686512999986, 51.17822073100006 ], [ -120.133691038999984, 51.178225087000079 ], [ -120.133327708999971, 51.178412786000109 ], [ -120.13279728400002, 51.178884282000091 ], [ -120.132586408999941, 51.17887329800007 ], [ -120.132534630999885, 51.179264113000059 ], [ -120.129541806999953, 51.179108182000036 ], [ -120.129538171999911, 51.179166660000156 ], [ -120.129966824999954, 51.179177184000096 ], [ -120.129916593999923, 51.179985468000019 ], [ -120.13158323699993, 51.180026374000064 ], [ -120.131565692, 51.180043503000022 ], [ -120.131490103999937, 51.180355405000029 ], [ -120.131705404999963, 51.180811108000064 ], [ -120.132775104999922, 51.181997498000044 ], [ -120.133224301, 51.182628402 ], [ -120.133279214999945, 51.182864901000094 ], [ -120.132972790999958, 51.182973090000118 ], [ -120.132477122999916, 51.182880505000071 ], [ -120.131959477999928, 51.182930394000081 ], [ -120.131027481999936, 51.183168205000086 ], [ -120.130371288999982, 51.183836215000071 ], [ -120.130348719999958, 51.184897203000084 ], [ -120.129058808999986, 51.185603606000065 ], [ -120.128426993999966, 51.186109188000046 ], [ -120.128061611999939, 51.186936690000046 ], [ -120.127798595999977, 51.187227191000083 ], [ -120.127083485999933, 51.187704291000031 ], [ -120.126449697999988, 51.188003413000033 ], [ -120.12635901499999, 51.188021381000091 ], [ -120.126276145999924, 51.187953955000062 ], [ -120.126198261999903, 51.187890586 ], [ -120.125178627999958, 51.187060694000103 ], [ -120.124621741999931, 51.186594636000038 ], [ -120.124158086999941, 51.186206594000069 ], [ -120.12377710199999, 51.185850962000131 ], [ -120.123653106999939, 51.185735190000081 ], [ -120.123539801999968, 51.185337073 ], [ -120.123506093999978, 51.185218604000099 ], [ -120.123474832999975, 51.184958869000106 ], [ -120.12346437099994, 51.184872294000058 ], [ -120.123478115999944, 51.184586397000018 ], [ -120.123500967999959, 51.18410936300009 ], [ -120.123562334, 51.183571157000081 ], [ -120.123618590999925, 51.183060594000061 ], [ -120.123804944999961, 51.182522580000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54846250", "BldgCostT": "37825000", "sL_LossRatio": "1", "sL_AssetLoss": "4043", "sL_BldgLoss": "4043", "sL_StrLoss": "4043", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C22DFE3AA0085EC06EF7BC2CB7974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.134011584999925, 51.182144210000089 ], [ -120.132752878999952, 51.181195697000078 ], [ -120.132557391999967, 51.180912307000028 ], [ -120.132549883999943, 51.180578996000129 ], [ -120.132882790999986, 51.179698255000034 ], [ -120.13307142399999, 51.179630863000085 ], [ -120.133215830000012, 51.179796582000108 ], [ -120.133362599999955, 51.179800182000101 ], [ -120.133396046999948, 51.179261324000038 ], [ -120.13468201099991, 51.179292850000138 ], [ -120.134665294999962, 51.179562280000042 ], [ -120.135093951999977, 51.179572786000044 ], [ -120.135073663999933, 51.179899839000029 ], [ -120.13548859899997, 51.179921441 ], [ -120.136761504999953, 51.181119389000074 ], [ -120.137235281999921, 51.181516756000136 ], [ -120.137200021999931, 51.181783088000032 ], [ -120.13756344399998, 51.181791988000057 ], [ -120.138141381999944, 51.182276696000073 ], [ -120.13886758699999, 51.182771295000116 ], [ -120.139167631999925, 51.182963096000051 ], [ -120.1410902329999, 51.184192204000084 ], [ -120.14221762699999, 51.184912872000027 ], [ -120.143162702999973, 51.185517002000012 ], [ -120.14295720599992, 51.185636901000059 ], [ -120.141789709999941, 51.185988840000086 ], [ -120.140624556999938, 51.186340032000082 ], [ -120.140274364, 51.186445584000118 ], [ -120.140249417999897, 51.186444974000054 ], [ -120.140248902999957, 51.186453259000089 ], [ -120.139446312999922, 51.18669516500006 ], [ -120.139375278, 51.186693427000044 ], [ -120.139373816999964, 51.186717015000099 ], [ -120.137371146999939, 51.187320616000072 ], [ -120.137145614999952, 51.187388573000106 ], [ -120.134777143999941, 51.188122963000076 ], [ -120.1323562379999, 51.188873535000084 ], [ -120.131590317999937, 51.189110996000117 ], [ -120.130675680999971, 51.189371009000041 ], [ -120.129906374999962, 51.189589681000058 ], [ -120.129659409999974, 51.189659900000066 ], [ -120.128698998999937, 51.189934186000059 ], [ -120.128444592999983, 51.189997536000085 ], [ -120.127529373999963, 51.190225431000037 ], [ -120.12744490399993, 51.189827443000048 ], [ -120.12727019499999, 51.189004812000121 ], [ -120.127228367999933, 51.188894072000039 ], [ -120.127138273999947, 51.188655597000043 ], [ -120.126750032999922, 51.188339600000099 ], [ -120.126676172999936, 51.188279499000025 ], [ -120.12667609099999, 51.188279432000094 ], [ -120.126922192999956, 51.188221296000116 ], [ -120.127555997999977, 51.18792219500007 ], [ -120.128539776999929, 51.187074798000054 ], [ -120.129112688999925, 51.186378408000053 ], [ -120.129645903999958, 51.186076407000044 ], [ -120.130122396999923, 51.185988110000068 ], [ -120.13118388, 51.185952498000077 ], [ -120.13204957799995, 51.185622094000074 ], [ -120.132576483999983, 51.185221895 ], [ -120.13285980699996, 51.184328909000065 ], [ -120.134098919999971, 51.183522804000035 ], [ -120.13431810499999, 51.183213789000035 ], [ -120.134347707999936, 51.18295319800005 ], [ -120.13432989599994, 51.182773687000115 ], [ -120.134011584999925, 51.182144210000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12138916", "BldgCostT": "8371666", "sL_LossRatio": "1", "sL_AssetLoss": "705", "sL_BldgLoss": "705", "sL_StrLoss": "705", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007C30CCF83095EC0BF633E41DEA84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.15079647099995, 51.325792171000096 ], [ -120.150657594999956, 51.323181304000109 ], [ -120.147851531999919, 51.323171429000084 ], [ -120.146014247999986, 51.323196531000058 ], [ -120.14605652399996, 51.322877796000036 ], [ -120.145323509999969, 51.322839830000177 ], [ -120.145351456999961, 51.322629153000051 ], [ -120.144056982, 51.322562094 ], [ -120.144218482999946, 51.321344815 ], [ -120.142984331999941, 51.321280868 ], [ -120.143459120999978, 51.317702613000044 ], [ -120.143955084999959, 51.317728313000025 ], [ -120.14410465899999, 51.316600827000052 ], [ -120.145426041999926, 51.316669288000121 ], [ -120.145427597999969, 51.316657557000049 ], [ -120.14593294299999, 51.316683735000019 ], [ -120.146003075999914, 51.316154888 ], [ -120.146324045999933, 51.316158957000063 ], [ -120.149834600999938, 51.314072277000051 ], [ -120.150027078999955, 51.314082241000079 ], [ -120.152734588000015, 51.314222368000067 ], [ -120.152521676000035, 51.315829745 ], [ -120.153493976999968, 51.315880051000107 ], [ -120.15302001799995, 51.319458353000137 ], [ -120.152473458999964, 51.319430076000074 ], [ -120.152464795999947, 51.31949546600007 ], [ -120.152371362999986, 51.319490632000068 ], [ -120.152316113999959, 51.319907669000038 ], [ -120.151483286999962, 51.319864576000086 ], [ -120.151242643, 51.321680675000067 ], [ -120.151975641999954, 51.321718603000093 ], [ -120.151918236999975, 51.322151858000076 ], [ -120.152715045999955, 51.322193083000059 ], [ -120.152240957999979, 51.325771359000072 ], [ -120.151572507999916, 51.325736776000092 ], [ -120.151559931999884, 51.325831675000103 ], [ -120.15079647099995, 51.325792171000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9057667", "BldgCostT": "6246667", "sL_LossRatio": "1", "sL_AssetLoss": "476.2", "sL_BldgLoss": "476.2", "sL_StrLoss": "476.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000CA1D676CB095EC04F7FAC96AAA14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.150392970999945, 51.267508162000063 ], [ -120.150787825999942, 51.264524797000014 ], [ -120.150138770999902, 51.264491160000098 ], [ -120.150396463, 51.262544145000092 ], [ -120.149501287999954, 51.262497746000065 ], [ -120.149569530999926, 51.261982176000032 ], [ -120.149403019999951, 51.26197354500011 ], [ -120.149619350999956, 51.260339154000135 ], [ -120.149425247999929, 51.260334425000103 ], [ -120.149475278999958, 51.259526139000059 ], [ -120.149726147999957, 51.259532252000042 ], [ -120.149876655999932, 51.258395044000061 ], [ -120.150403685999947, 51.258422362000012 ], [ -120.150417449999921, 51.258199918000109 ], [ -120.15170563199996, 51.258231292000104 ], [ -120.151689692999966, 51.258489010000133 ], [ -120.152779674999934, 51.258545489000092 ], [ -120.155594596999919, 51.258691296000102 ], [ -120.155526428999963, 51.259206872000057 ], [ -120.155692928999912, 51.259215494000053 ], [ -120.155435490999977, 51.261162529000124 ], [ -120.156330644999954, 51.261208880000019 ], [ -120.155936191999928, 51.264192274000024 ], [ -120.156585246999938, 51.264225878000047 ], [ -120.15611209099994, 51.267804386000101 ], [ -120.151905105999958, 51.267586512000129 ], [ -120.150392970999945, 51.267508162000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053334", "BldgCostT": "6933334", "sL_LossRatio": "1", "sL_AssetLoss": "709.1", "sL_BldgLoss": "709.1", "sL_StrLoss": "709.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008DFC4D6AE0095EC08FBC186FD0AB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.150707284999939, 51.347441535000051 ], [ -120.151116625, 51.344354391000081 ], [ -120.148989904999922, 51.344244377000045 ], [ -120.151191882999925, 51.341526636000076 ], [ -120.152465397999933, 51.340005428000083 ], [ -120.151982113999964, 51.338286102000076 ], [ -120.152641314999968, 51.338320195000044 ], [ -120.152832171999947, 51.336880070000092 ], [ -120.156421308999924, 51.337065622000111 ], [ -120.156425477999932, 51.337172199000037 ], [ -120.157287890999925, 51.338102297000013 ], [ -120.157201893999968, 51.33833299000009 ], [ -120.156507603999941, 51.338865607000045 ], [ -120.156670708999982, 51.33926439300005 ], [ -120.15711040299999, 51.339563512000062 ], [ -120.157600687999931, 51.339755804000035 ], [ -120.158434688999975, 51.339748591000088 ], [ -120.158776409000026, 51.339819803000111 ], [ -120.15976861199999, 51.339547788000033 ], [ -120.160367290999943, 51.339607545000078 ], [ -120.160062859, 51.341907446000086 ], [ -120.154982231999924, 51.341644946000088 ], [ -120.154664441999955, 51.344043418000041 ], [ -120.156910730999968, 51.344159505000057 ], [ -120.156519249999945, 51.34711492700005 ], [ -120.154872799999936, 51.34719008900003 ], [ -120.154212509999979, 51.347416590000108 ], [ -120.153547313999965, 51.347419356000081 ], [ -120.153535921999946, 51.34741940400005 ], [ -120.152950512999951, 51.347557533000021 ], [ -120.150707284999939, 51.347441535000051 ] ], [ [ -120.154425380999967, 51.34092274800004 ], [ -120.154472435999963, 51.340567621000048 ], [ -120.154243027999939, 51.340555763000097 ], [ -120.154195972999943, 51.340910889000057 ], [ -120.154425380999967, 51.34092274800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "195.7", "sL_BldgLoss": "195.7", "sL_StrLoss": "195.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB360DDDAE095EC01D24D95DFFA34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.152341737999961, 51.279483247000059 ], [ -120.154395001999916, 51.279589565000059 ], [ -120.153921504999943, 51.283168006000011 ], [ -120.151779838, 51.283057110000094 ], [ -120.148200415999952, 51.282871676000106 ], [ -120.148674370999956, 51.279293257000035 ], [ -120.152341737999961, 51.279483247000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "1", "sL_AssetLoss": "290.9", "sL_BldgLoss": "290.9", "sL_StrLoss": "290.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F0410A96F095EC0354DAFFF809F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.149690942999911, 51.249092555000125 ], [ -120.14969617899996, 51.249007941000144 ], [ -120.149611780999962, 51.249005885000095 ], [ -120.149266870999924, 51.248997479000096 ], [ -120.149280231, 51.248781588000092 ], [ -120.144388573999947, 51.248527830000036 ], [ -120.144506775999943, 51.247635311000067 ], [ -120.144630118999942, 51.246703925000141 ], [ -120.143982688999955, 51.246670322000028 ], [ -120.144456597999948, 51.243091787 ], [ -120.147601201999947, 51.243254959000041 ], [ -120.15017252899996, 51.243388318000015 ], [ -120.149931229999964, 51.245212242000036 ], [ -120.150578642999918, 51.245245810000085 ], [ -120.150223291999936, 51.247931839000039 ], [ -120.150222024999948, 51.247941412000081 ], [ -120.15057276099995, 51.247949957000074 ], [ -120.150621451999939, 51.247951142000041 ], [ -120.150621367999946, 51.247952477000105 ], [ -120.150571459999966, 51.248759432000043 ], [ -120.151000765, 51.24876988900008 ], [ -120.150934116999949, 51.24984760800006 ], [ -120.150063902999989, 51.249826409000093 ], [ -120.1496461699999, 51.249816230000121 ], [ -120.149690942999911, 51.249092555000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5239334", "BldgCostT": "3613334", "sL_LossRatio": "1", "sL_AssetLoss": "269.2", "sL_BldgLoss": "269.2", "sL_StrLoss": "269.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000849B8C2AC3095EC0E1FA66510EA34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.151778923999956, 51.271067521000155 ], [ -120.156353974999945, 51.271304435000097 ], [ -120.156335607999964, 51.271339586000053 ], [ -120.156307126999963, 51.27199123000004 ], [ -120.156274804999924, 51.27223564300008 ], [ -120.156035506999956, 51.27249318900013 ], [ -120.155445302999979, 51.272783710000105 ], [ -120.155365488999919, 51.274274890000079 ], [ -120.155241979, 51.274849849000063 ], [ -120.155062350999984, 51.274840550000071 ], [ -120.155009526999919, 51.275239888000037 ], [ -120.154926795999984, 51.275361605000072 ], [ -120.154348100000021, 51.275914108000109 ], [ -120.154184024999964, 51.276243106000081 ], [ -120.154185345999963, 51.276257656000055 ], [ -120.154226113999954, 51.276703205000089 ], [ -120.154291098999977, 51.276793121000061 ], [ -120.15249236799994, 51.276699978000117 ], [ -120.149080292999912, 51.27652321000005 ], [ -120.149554108999894, 51.272944764000052 ], [ -120.150416116999963, 51.272989432000074 ], [ -120.150678074999988, 51.271010487000062 ], [ -120.151778923999956, 51.271067521000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "144.1", "sL_BldgLoss": "144.1", "sL_StrLoss": "144.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A43C0C10390A5EC033ED516E91A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.157872965999985, 51.260768733000127 ], [ -120.163591265999969, 51.261064581000028 ], [ -120.16352210299999, 51.261588377000031 ], [ -120.162102010999959, 51.26200819200006 ], [ -120.159710279999956, 51.263587594000064 ], [ -120.158778079999962, 51.26441858600009 ], [ -120.157399950999917, 51.264347259000019 ], [ -120.157872965999985, 51.260768733000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59017984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "1", "sL_AssetLoss": "396.2", "sL_BldgLoss": "396.2", "sL_StrLoss": "396.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063EF495091095EC03340F5513EA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.149010867999976, 51.253925747000039 ], [ -120.149070869999946, 51.253472391000045 ], [ -120.14389334399999, 51.253203816000088 ], [ -120.143894402999976, 51.252007618000107 ], [ -120.144211023999929, 51.249617193000063 ], [ -120.14992779399995, 51.249913736000074 ], [ -120.149867805999946, 51.250367094000055 ], [ -120.150041496999933, 51.250376099000057 ], [ -120.150058816999973, 51.250096120000094 ], [ -120.150149743999961, 51.250098335000118 ], [ -120.151346772999915, 51.250127493000136 ], [ -120.151327278999972, 51.250442753000044 ], [ -120.155201348999967, 51.250643492000073 ], [ -120.154728226999978, 51.254222045000091 ], [ -120.15139715399999, 51.254049450000103 ], [ -120.149010867999976, 51.253925747000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "185", "sL_BldgLoss": "185", "sL_StrLoss": "185", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F900D5266BEC5DC01BC4BDE8613B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.691602267999912, 50.461982430000042 ], [ -119.697097675999927, 50.46229539100009 ], [ -119.696596479000021, 50.465875181000087 ], [ -119.690982150999986, 50.465555445000057 ], [ -119.6914819499999, 50.46198880400005 ], [ -119.691483788999946, 50.461975679000055 ], [ -119.691602267999912, 50.461982430000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26115750", "BldgCostT": "16065000", "sL_LossRatio": "1", "sL_AssetLoss": "1178", "sL_BldgLoss": "1178", "sL_StrLoss": "1178", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051E5A4C5D3EE5DC0D7D70462233B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.734653609999938, 50.464477114000033 ], [ -119.73475623299997, 50.463739677000085 ], [ -119.733615515999986, 50.463675128000098 ], [ -119.733605855999969, 50.463744533000046 ], [ -119.729781318, 50.463528031000052 ], [ -119.729750888999902, 50.463746522000037 ], [ -119.724136592999969, 50.463428462000067 ], [ -119.724450127999944, 50.461179103000106 ], [ -119.72453199499995, 50.460591735000065 ], [ -119.721678344999987, 50.46042996100006 ], [ -119.721572920999932, 50.461185993000122 ], [ -119.721256206999982, 50.463457118000065 ], [ -119.718852590999987, 50.463320798000098 ], [ -119.718812609999972, 50.463607375000066 ], [ -119.713198407000021, 50.463288762000062 ], [ -119.713320261999954, 50.462416101000038 ], [ -119.71273995199999, 50.462383151000054 ], [ -119.712876545999933, 50.461404988 ], [ -119.713239829999964, 50.458803274000083 ], [ -119.718853474999918, 50.459121886000048 ], [ -119.718771713999928, 50.459707979000022 ], [ -119.72159557899991, 50.459868143000094 ], [ -119.721984893999974, 50.45707599200005 ], [ -119.722017661999985, 50.456840971000105 ], [ -119.727079421999946, 50.457127883000027 ], [ -119.727631124999945, 50.457159140000023 ], [ -119.727598384999965, 50.457394164000107 ], [ -119.727235947999986, 50.45999589000008 ], [ -119.728305952999932, 50.460056505000082 ], [ -119.72839284, 50.459432724000081 ], [ -119.734006668999896, 50.45975057000004 ], [ -119.73395992599994, 50.460086456000049 ], [ -119.735076846999959, 50.460149661000095 ], [ -119.735251708999925, 50.458892899000048 ], [ -119.734876488999973, 50.458871666000093 ], [ -119.735023569999953, 50.457814578000068 ], [ -119.735374572999945, 50.455291674000151 ], [ -119.738451528999974, 50.455465744000087 ], [ -119.740987936999943, 50.455609169000084 ], [ -119.740637244999917, 50.458132090000092 ], [ -119.740523243999959, 50.458952167000106 ], [ -119.740898467999912, 50.458973379000092 ], [ -119.74086388799999, 50.459222145000105 ], [ -119.742351637999917, 50.459306239000078 ], [ -119.742336765999966, 50.459413249000129 ], [ -119.743916093999971, 50.459502496000027 ], [ -119.74341864199998, 50.463082509000039 ], [ -119.74080978399999, 50.462935070000071 ], [ -119.740750643999931, 50.463360470000048 ], [ -119.738166590999967, 50.463214371000042 ], [ -119.735214580000019, 50.463047395000061 ], [ -119.735207536999951, 50.463098003000056 ], [ -119.738167316999963, 50.463265420000049 ], [ -119.740462683999908, 50.463395199000082 ], [ -119.740385644999932, 50.463949302000103 ], [ -119.743804411999974, 50.464142509000041 ], [ -119.743369397999984, 50.467272809000029 ], [ -119.743306899999979, 50.467722500000043 ], [ -119.740885965999951, 50.467585696000079 ], [ -119.740631079999915, 50.469418859000015 ], [ -119.738647001999979, 50.469306700000068 ], [ -119.73862499699996, 50.469464904000048 ], [ -119.73300992599999, 50.469147295000056 ], [ -119.733508271999952, 50.465567356000086 ], [ -119.733786308999967, 50.465583090000152 ], [ -119.733945816999949, 50.46443706400008 ], [ -119.734653609999938, 50.464477114000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "136", "sL_BldgLoss": "136", "sL_StrLoss": "136", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE2E44DA88F65DC068ECA6EF10304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.849544779999917, 50.373570508000086 ], [ -119.855148795999966, 50.37388226100007 ], [ -119.855119528000031, 50.374097174000056 ], [ -119.854661090999954, 50.377463151000015 ], [ -119.849475161999962, 50.377174667000077 ], [ -119.849056632999961, 50.377151375000111 ], [ -119.849544779999917, 50.373570508000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "186.9", "sL_BldgLoss": "186.9", "sL_StrLoss": "186.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009C6E76F7C2ED5DC0C7634846B5474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.712462216999938, 50.558270493000109 ], [ -119.718088252999948, 50.558589106000042 ], [ -119.718022202999975, 50.559061424000078 ], [ -119.717587652999939, 50.562168567000086 ], [ -119.714811434, 50.562011381000033 ], [ -119.711961173999924, 50.561849930000044 ], [ -119.712046118999979, 50.561243126000058 ], [ -119.712462216999938, 50.558270493000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "159.8", "sL_BldgLoss": "159.8", "sL_StrLoss": "159.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007ABA04F14BF55DC02C4576CEE4404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.830546808999955, 50.509693597000144 ], [ -119.830641656999902, 50.509002122000055 ], [ -119.830493855999947, 50.508993897000032 ], [ -119.830508754000022, 50.508885281000076 ], [ -119.83050006299996, 50.508884797000043 ], [ -119.830991107999978, 50.505304600000116 ], [ -119.831117975999959, 50.505311661000064 ], [ -119.831351787999949, 50.503606704000042 ], [ -119.834100844, 50.503759660000064 ], [ -119.834099068999976, 50.504105889000108 ], [ -119.834186175999946, 50.504472399000086 ], [ -119.83434562399998, 50.504860220000054 ], [ -119.83465336099998, 50.505608591000026 ], [ -119.834657223999926, 50.505659638000076 ], [ -119.834663954999911, 50.505749586 ], [ -119.834765421999933, 50.50709612100011 ], [ -119.834822998999968, 50.507860063000081 ], [ -119.834862890999915, 50.508389117000085 ], [ -119.834940603999954, 50.509420816000052 ], [ -119.834948163999911, 50.509521108000101 ], [ -119.834839094999907, 50.509932384000059 ], [ -119.830546808999955, 50.509693597000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "220", "sL_BldgLoss": "220", "sL_StrLoss": "220", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0E25872F0F75DC0B54F010F902F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.873102686999914, 50.369648844000018 ], [ -119.878706379, 50.369959406000085 ], [ -119.878533497999982, 50.371233850000067 ], [ -119.878220582000012, 50.373540416000033 ], [ -119.875925746999954, 50.373413269000082 ], [ -119.87590658299996, 50.373554469000034 ], [ -119.874987348999923, 50.373503525000082 ], [ -119.874987340999965, 50.373503592000127 ], [ -119.869383233999926, 50.37319284200008 ], [ -119.869612944999915, 50.371502064000012 ], [ -119.869869727999955, 50.369611869000046 ], [ -119.870788876999924, 50.36966285600009 ], [ -119.870788885999957, 50.369662790000092 ], [ -119.873083515999937, 50.369790044000091 ], [ -119.873102686999914, 50.369648844000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "236.8", "sL_BldgLoss": "236.8", "sL_StrLoss": "236.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007ADC5CA174F45DC0F998388725334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.822806760999924, 50.397352272000028 ], [ -119.823675017, 50.397400776000026 ], [ -119.823184564999934, 50.400981420000079 ], [ -119.821333483999979, 50.400878003000052 ], [ -119.82116904199998, 50.402078064000065 ], [ -119.818271633, 50.401916128000074 ], [ -119.81556176499997, 50.401764603000068 ], [ -119.816052828999915, 50.398183996000093 ], [ -119.817903786999921, 50.398287502000038 ], [ -119.818068302999961, 50.397087440000092 ], [ -119.822806760999924, 50.397352272000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "173.1", "sL_BldgLoss": "173.1", "sL_StrLoss": "173.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000092F5CC7963F35DC03F12DD5084394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.80346135899994, 50.447575327 ], [ -119.805999253999943, 50.447717365000067 ], [ -119.805506854, 50.451297706000041 ], [ -119.800185475999953, 50.450999820000028 ], [ -119.799893573999938, 50.450983472000132 ], [ -119.800386414999977, 50.447403154000014 ], [ -119.80346135899994, 50.447575327 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "56.9", "sL_BldgLoss": "56.9", "sL_StrLoss": "56.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7F2D2663FF55DC042D92990B83E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.83268796599999, 50.492298691000023 ], [ -119.832722822999969, 50.49204438000001 ], [ -119.832325769999912, 50.492022281000075 ], [ -119.832356621, 50.491797209000033 ], [ -119.831840269999958, 50.491768469000057 ], [ -119.831953450999919, 50.490942814000064 ], [ -119.831045100999944, 50.490892249000055 ], [ -119.831066500999952, 50.490736157000057 ], [ -119.83049489299998, 50.490704334000107 ], [ -119.830936733999948, 50.487481536000075 ], [ -119.831550002999947, 50.48800931200001 ], [ -119.832805325999956, 50.489089592000056 ], [ -119.833214961999943, 50.489529079000128 ], [ -119.833356970999944, 50.489814751000033 ], [ -119.833374946999967, 50.490065576000063 ], [ -119.833233457999938, 50.491820918000037 ], [ -119.833285299999929, 50.492331933000031 ], [ -119.83268796599999, 50.492298691000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "117", "sL_BldgLoss": "117", "sL_StrLoss": "117", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A3AB52BDBEB5DC00A021A5B3E3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68269633099996, 50.460890475000063 ], [ -119.688310018999971, 50.461210632000096 ], [ -119.688176385999981, 50.462163844000045 ], [ -119.68780813799999, 50.464790386000104 ], [ -119.682194007999897, 50.46447020500009 ], [ -119.682462216999937, 50.462558922000049 ], [ -119.68269633099996, 50.460890475000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999997198082864", "sL_AssetLoss": "217.70808", "sL_BldgLoss": "217.70747", "sL_StrLoss": "217.7", "sL_NStrLoss": "0.00747", "sL_ContLoss": "0.00061", "geom_point": "0101000020E6100000F56F8F8C72F15DC04B2FC5B09E3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.7700572359999, 50.456019876000013 ], [ -119.77567093299993, 50.456335616000025 ], [ -119.77517603299998, 50.459915785000106 ], [ -119.769561894, 50.459600020000067 ], [ -119.7700572359999, 50.456019876000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "102", "sL_BldgLoss": "102", "sL_StrLoss": "102", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0CDA6651CF45DC02D526A2731344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.815648285999956, 50.406025181000125 ], [ -119.817282735999967, 50.406116569000076 ], [ -119.816791682999963, 50.409697146000056 ], [ -119.816322424999953, 50.409670911000084 ], [ -119.811183491999955, 50.409383468000016 ], [ -119.811674985999943, 50.405802914000063 ], [ -119.815648285999956, 50.406025181000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "138.2", "sL_BldgLoss": "138.2", "sL_StrLoss": "138.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000168D5295F8E95DC0320D79BA293C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.653242397000028, 50.468072814000045 ], [ -119.658856769999915, 50.468394457000095 ], [ -119.658802946999913, 50.468776522000041 ], [ -119.65835247099993, 50.471974046000064 ], [ -119.652737656999975, 50.471652379000076 ], [ -119.652896627999979, 50.470525039000051 ], [ -119.653242397000028, 50.468072814000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "124.1", "sL_BldgLoss": "124.1", "sL_StrLoss": "124.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029EDAA9375F35DC03863DA2F86374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.800978639, 50.435787534000021 ], [ -119.801080513999977, 50.435047109000045 ], [ -119.801020290999958, 50.435043735000043 ], [ -119.801512869999897, 50.431463342000043 ], [ -119.807123734999948, 50.431777501000056 ], [ -119.807041042999941, 50.432379144000066 ], [ -119.807021966999969, 50.432517934000074 ], [ -119.807082186999935, 50.432521304000062 ], [ -119.806590037999953, 50.436101718000025 ], [ -119.805654224999941, 50.436049341000043 ], [ -119.800978639, 50.435787534000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008560F29241F55DC02D386A223F404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.831067025, 50.49967348800007 ], [ -119.832005776999935, 50.499725735000027 ], [ -119.832062889999975, 50.499926919000139 ], [ -119.832098861999967, 50.500007492000059 ], [ -119.832309793999983, 50.500479981000083 ], [ -119.832688918, 50.500988100000086 ], [ -119.8327255199999, 50.501027354000094 ], [ -119.833849184999949, 50.502231414000086 ], [ -119.834034359, 50.50253301900009 ], [ -119.834105119999961, 50.502925665000092 ], [ -119.83410243299997, 50.503449930000102 ], [ -119.830576046999965, 50.503253711000085 ], [ -119.831067025, 50.49967348800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22577167", "BldgCostT": "15306667", "sL_LossRatio": "0.999987402706615", "sL_AssetLoss": "2595.7957", "sL_BldgLoss": "2595.763", "sL_StrLoss": "2595.6", "sL_NStrLoss": "0.163", "sL_ContLoss": "0.0327", "geom_point": "0101000020E61000004E5E43F454F15DC051A115736B3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.787858095000018, 50.481187580000082 ], [ -119.787872292999936, 50.4810847090001 ], [ -119.787200979999966, 50.481047062000059 ], [ -119.787258354999935, 50.480631442000032 ], [ -119.786889496999962, 50.480610755000058 ], [ -119.786894897999957, 50.480571639000082 ], [ -119.785846366999976, 50.480512826000108 ], [ -119.786199445999955, 50.477955497000075 ], [ -119.785285323, 50.477904216000063 ], [ -119.78530973099997, 50.477727444000088 ], [ -119.784801019999918, 50.477698903000039 ], [ -119.784840552999952, 50.477412618000081 ], [ -119.78441772799999, 50.477388894000079 ], [ -119.784536118999966, 50.476531556000104 ], [ -119.784492287999925, 50.476529096000036 ], [ -119.78451769499992, 50.4763451070001 ], [ -119.783907780999968, 50.476310882000035 ], [ -119.783914400999961, 50.476262951000095 ], [ -119.78297897799996, 50.4762104530001 ], [ -119.782978893999982, 50.476211065 ], [ -119.777362672999956, 50.475895702000088 ], [ -119.777407237999967, 50.475573341000022 ], [ -119.776049652999973, 50.475497067000106 ], [ -119.776106660999943, 50.475084780000024 ], [ -119.77397731399999, 50.47496511 ], [ -119.773991885999976, 50.474859752000036 ], [ -119.773143992999977, 50.474812088000078 ], [ -119.773149110999952, 50.474775100000095 ], [ -119.772308969999969, 50.474727865000062 ], [ -119.77235971399989, 50.474361103000014 ], [ -119.768710576999965, 50.474155868000061 ], [ -119.768726004999934, 50.47404443100006 ], [ -119.767650850999971, 50.473983939000064 ], [ -119.767659512999941, 50.473921378000092 ], [ -119.765607288999888, 50.473805883000082 ], [ -119.76568036299993, 50.473278284000074 ], [ -119.762456921999899, 50.473096798000071 ], [ -119.762527615999957, 50.472586628000037 ], [ -119.757684821999987, 50.472313790000086 ], [ -119.757316991999943, 50.472293058000048 ], [ -119.757377123999945, 50.471859463000044 ], [ -119.754452527999916, 50.471694580000076 ], [ -119.754496185999955, 50.471379924000111 ], [ -119.75271619399993, 50.471279533000093 ], [ -119.75276435399995, 50.470932519 ], [ -119.749608317, 50.470754449000012 ], [ -119.749632129999938, 50.470582953000083 ], [ -119.748524192999923, 50.470520419000067 ], [ -119.748536529999967, 50.470431586000053 ], [ -119.747638571999943, 50.47038089600013 ], [ -119.747646654999954, 50.470322698000096 ], [ -119.7469324529999, 50.470282376000036 ], [ -119.746954403999936, 50.470124350000084 ], [ -119.74568272199997, 50.470052542000055 ], [ -119.745715521999941, 50.469816459000064 ], [ -119.744158188999918, 50.469728501000063 ], [ -119.74428786599999, 50.468795344000092 ], [ -119.744166754999981, 50.468788503000049 ], [ -119.744354087999966, 50.467440405000055 ], [ -119.744664210999957, 50.465208513000114 ], [ -119.749363895999963, 50.465473890000077 ], [ -119.749366794, 50.46545302100008 ], [ -119.75062084399994, 50.465523799000053 ], [ -119.75075148300003, 50.464582651000129 ], [ -119.75636611, 50.464899364000125 ], [ -119.75610539, 50.466779286000104 ], [ -119.757105114999916, 50.466835648000064 ], [ -119.757055292999937, 50.467194919000057 ], [ -119.758791884999965, 50.467292803000078 ], [ -119.75877562299992, 50.467410104000109 ], [ -119.760109449999973, 50.46748526800009 ], [ -119.760092365999952, 50.467608532000057 ], [ -119.760801479999941, 50.467648485000034 ], [ -119.760845190999959, 50.467333090000089 ], [ -119.766460231999972, 50.467649292000047 ], [ -119.766334101999945, 50.468560183000079 ], [ -119.766707284999953, 50.468581188000023 ], [ -119.76668727699996, 50.468725702000029 ], [ -119.767662064999982, 50.468780562000092 ], [ -119.76765362499998, 50.468841520000055 ], [ -119.768433646999981, 50.468885413000073 ], [ -119.7685, 50.468406070000086 ], [ -119.774115227000024, 50.468721884000054 ], [ -119.77391529899991, 50.470167477000068 ], [ -119.775770273999953, 50.470271742000129 ], [ -119.775757600999953, 50.470363394000081 ], [ -119.776698165999917, 50.470416249000039 ], [ -119.776871295999953, 50.469163864000087 ], [ -119.780371392999911, 50.469360483000095 ], [ -119.782486675999962, 50.469479256000092 ], [ -119.782435365999959, 50.469850765000061 ], [ -119.782784191999923, 50.469870348 ], [ -119.782749874000018, 50.470118831000029 ], [ -119.783348490999927, 50.470152433000045 ], [ -119.783241949999976, 50.470923909000142 ], [ -119.783430161999959, 50.470919405000124 ], [ -119.783467312999989, 50.471551668000124 ], [ -119.78400806399999, 50.471582018000127 ], [ -119.783995915999981, 50.471669987000013 ], [ -119.784988537999965, 50.471725691000088 ], [ -119.78496964499999, 50.471862540000082 ], [ -119.786367202999884, 50.471940954000047 ], [ -119.786360589999902, 50.47198886400006 ], [ -119.787320774999955, 50.472042728000133 ], [ -119.787298128999979, 50.47220680900007 ], [ -119.788797237999972, 50.472290887000106 ], [ -119.788703251999891, 50.472972032000065 ], [ -119.790018044999968, 50.473045756000033 ], [ -119.78999266199996, 50.473229747000097 ], [ -119.790602537999945, 50.473263940000017 ], [ -119.790561992999969, 50.473557864000057 ], [ -119.791483429999971, 50.473609517000121 ], [ -119.791426793999946, 50.474020134000057 ], [ -119.791902643999947, 50.474046806000089 ], [ -119.791843415999949, 50.474476250000102 ], [ -119.792477553999987, 50.474511790000065 ], [ -119.792434960999969, 50.474820653000073 ], [ -119.793034958999925, 50.474854277000134 ], [ -119.792984415999953, 50.475220811000092 ], [ -119.793440469999922, 50.475246366000079 ], [ -119.793389436999945, 50.475616467000073 ], [ -119.793896079999968, 50.475644854000024 ], [ -119.793699642999911, 50.477069530000051 ], [ -119.7947278499999, 50.477127134000021 ], [ -119.79423423499999, 50.480707294000062 ], [ -119.793589676999943, 50.480671186000066 ], [ -119.79347504799992, 50.481502411000065 ], [ -119.792002647999965, 50.48141991100006 ], [ -119.787858095000018, 50.481187580000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "147.8", "sL_BldgLoss": "147.8", "sL_StrLoss": "147.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1051487FFE95DC0F542A6214F484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.653741595999989, 50.5628751530001 ], [ -119.65936779, 50.563196733000076 ], [ -119.658862472999942, 50.566775909000121 ], [ -119.658727298999963, 50.566768186000054 ], [ -119.658700974999988, 50.56695461200006 ], [ -119.653074315999945, 50.566632999000092 ], [ -119.653580092999974, 50.563053850000109 ], [ -119.653715255999913, 50.563061578000045 ], [ -119.653741595999989, 50.5628751530001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4908250", "BldgCostT": "3385000", "sL_LossRatio": "1", "sL_AssetLoss": "368", "sL_BldgLoss": "368", "sL_StrLoss": "368", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000746D5E8B4CF25DC064E94317D4384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.783741316999922, 50.44761813500007 ], [ -119.783991640999915, 50.445804300000134 ], [ -119.778680276999978, 50.445505900000086 ], [ -119.778968295, 50.4434205270001 ], [ -119.77917474099992, 50.441925652000073 ], [ -119.781746432999938, 50.442070166000065 ], [ -119.781792338999978, 50.441737613000058 ], [ -119.783204101, 50.441816920000086 ], [ -119.783328617999956, 50.440914646000039 ], [ -119.787018260999901, 50.441121829000117 ], [ -119.787052160999963, 50.440876032000091 ], [ -119.79266409499999, 50.441190919000093 ], [ -119.792359765999919, 50.443399379000027 ], [ -119.792170707999958, 50.444771230000114 ], [ -119.789808306999973, 50.444638710000049 ], [ -119.789354065999959, 50.447933186000071 ], [ -119.783741316999922, 50.44761813500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "262", "sL_BldgLoss": "262", "sL_StrLoss": "262", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D42730031EB5DC0545371674F3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.67143022499998, 50.462120870000021 ], [ -119.671595507999882, 50.460945020000104 ], [ -119.672122447999982, 50.460975137000091 ], [ -119.672182504999981, 50.460547831000099 ], [ -119.677796075999964, 50.460868520000055 ], [ -119.677712718999928, 50.461462132000079 ], [ -119.679844949999961, 50.461583865000094 ], [ -119.67983998899993, 50.461619209000048 ], [ -119.68086892, 50.461677937000033 ], [ -119.680726499999963, 50.462692616000027 ], [ -119.680366442999926, 50.465257656000063 ], [ -119.67671998699997, 50.465049483 ], [ -119.67659791599999, 50.465918542000047 ], [ -119.674682407999953, 50.465809138000047 ], [ -119.67466763299997, 50.465914286000043 ], [ -119.67069197899994, 50.465687111000101 ], [ -119.669053456999947, 50.465593441000088 ], [ -119.669556833999977, 50.462013776000049 ], [ -119.67143022499998, 50.462120870000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "93.2", "sL_BldgLoss": "93.2", "sL_StrLoss": "93.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C27494620BEC5DC0191220D82B494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.685820696999954, 50.574023887000095 ], [ -119.685845134999965, 50.573850098000023 ], [ -119.685449197, 50.573827576000049 ], [ -119.685952481999919, 50.570248311000064 ], [ -119.686518553999989, 50.57028050900005 ], [ -119.686539064, 50.570134625000101 ], [ -119.692166397999983, 50.570454544000057 ], [ -119.692013813999921, 50.571540824000074 ], [ -119.691363652999939, 50.571608027000082 ], [ -119.690814696999951, 50.571730170000095 ], [ -119.690305567999985, 50.571972720000112 ], [ -119.689781317000012, 50.572291524000057 ], [ -119.689673111999966, 50.572357317000083 ], [ -119.689634132999942, 50.57238101600008 ], [ -119.689426019999971, 50.572456027000051 ], [ -119.689368230999946, 50.572476859000083 ], [ -119.688654706999984, 50.572609461000077 ], [ -119.68844120499999, 50.572618826000081 ], [ -119.6881624299999, 50.572631087000019 ], [ -119.687909119999972, 50.572697848000097 ], [ -119.687640964999972, 50.57287021500008 ], [ -119.687375524999979, 50.573113984000059 ], [ -119.686955707999971, 50.573780113000055 ], [ -119.686744028999925, 50.574076399000042 ], [ -119.685820696999954, 50.574023887000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "128", "sL_BldgLoss": "128", "sL_StrLoss": "128", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC898A1F80F15DC081D657B23E3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.770885422999953, 50.460902907000062 ], [ -119.77649973299998, 50.461218604000095 ], [ -119.776004846999911, 50.464798754000043 ], [ -119.77039009399999, 50.464483034000075 ], [ -119.770885422999953, 50.460902907000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "159.6", "sL_BldgLoss": "159.6", "sL_StrLoss": "159.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088E7F8AA4DF55DC08B35012BAC314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.832055901999979, 50.384692533000113 ], [ -119.837661175999983, 50.385005165000031 ], [ -119.837602457999964, 50.38543498600005 ], [ -119.837171965999985, 50.388585928000055 ], [ -119.83421036799993, 50.38842078200009 ], [ -119.834089155999905, 50.388414021000102 ], [ -119.834075488999957, 50.388513994000043 ], [ -119.833675376999949, 50.391440701000086 ], [ -119.829878817999941, 50.391228875000074 ], [ -119.828069332999974, 50.391127869000108 ], [ -119.828559291999966, 50.387547159000057 ], [ -119.831642021, 50.387719220000086 ], [ -119.832055901999979, 50.384692533000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362084", "BldgCostT": "3008334", "sL_LossRatio": "1", "sL_AssetLoss": "362.6", "sL_BldgLoss": "362.6", "sL_StrLoss": "362.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000964E35C442F55DC08F6335A75C424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.82920360599995, 50.525758771000021 ], [ -119.829629978999904, 50.522652010000087 ], [ -119.833124059999975, 50.522846375000064 ], [ -119.833304864999917, 50.52152805700009 ], [ -119.830764924999968, 50.521386780000135 ], [ -119.830859302999954, 50.520698891000045 ], [ -119.830762071999956, 50.520693481000059 ], [ -119.83099415099997, 50.519001860000081 ], [ -119.828682519999958, 50.5188732270001 ], [ -119.829173816999955, 50.515293082000063 ], [ -119.829892372999936, 50.515333072000026 ], [ -119.830179490999981, 50.513240300000099 ], [ -119.831570619999979, 50.513317708000095 ], [ -119.831878339999889, 50.511074035000014 ], [ -119.834466333, 50.511217993000052 ], [ -119.834195215999969, 50.512086955000065 ], [ -119.833862914999884, 50.513152049000013 ], [ -119.833761657, 50.513476567000112 ], [ -119.833713062999948, 50.513965376000087 ], [ -119.833722903999984, 50.514245525000042 ], [ -119.833735373999929, 50.51459793100004 ], [ -119.833778208999945, 50.514972258000086 ], [ -119.834033712999954, 50.517203785000063 ], [ -119.83422356600002, 50.517704919000089 ], [ -119.834244109999958, 50.517759158000032 ], [ -119.834401044999936, 50.518173314000137 ], [ -119.83453285399996, 50.518521192000073 ], [ -119.83452827699989, 50.518572632000094 ], [ -119.834335115999963, 50.520737803000024 ], [ -119.834537919999974, 50.521479583000023 ], [ -119.834768955999962, 50.521965440000052 ], [ -119.834773974999976, 50.52197606600005 ], [ -119.835183195999917, 50.522836696000041 ], [ -119.835354602999985, 50.523445974000083 ], [ -119.835297996999913, 50.524865677000079 ], [ -119.835297210999968, 50.524885180000119 ], [ -119.83529593399993, 50.52491724900004 ], [ -119.83517961799997, 50.525269700000088 ], [ -119.834845692, 50.525225884000101 ], [ -119.834634567999927, 50.525236701000068 ], [ -119.834250875999913, 50.525359668000085 ], [ -119.834002172999959, 50.525386433000023 ], [ -119.833171594999925, 50.525349272000021 ], [ -119.833011848999917, 50.52529529600011 ], [ -119.832913069999961, 50.525199602000065 ], [ -119.832919392999912, 50.525091718000027 ], [ -119.833209524999987, 50.524638913000054 ], [ -119.833241774999919, 50.524444984000063 ], [ -119.833170558999939, 50.524293127000064 ], [ -119.83296728199997, 50.524174507000041 ], [ -119.832931220999939, 50.524165567000111 ], [ -119.832404613999969, 50.524035002000097 ], [ -119.832170060999914, 50.523976854000033 ], [ -119.83181252599995, 50.523929893000073 ], [ -119.831467387999965, 50.52393687400005 ], [ -119.831097774999975, 50.523998374000058 ], [ -119.83079979799993, 50.524126083000034 ], [ -119.830549731999909, 50.524297059000048 ], [ -119.83039040299991, 50.524477592 ], [ -119.830359119999954, 50.524576172000074 ], [ -119.830352974999968, 50.524595456000085 ], [ -119.830498805, 50.524957092000093 ], [ -119.830492095999972, 50.525078478000097 ], [ -119.830410133999948, 50.525159597000041 ], [ -119.829732016999955, 50.525414978000065 ], [ -119.829233224999911, 50.525747065000047 ], [ -119.82920360599995, 50.525758771000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5169250", "BldgCostT": "3565000", "sL_LossRatio": "1", "sL_AssetLoss": "447", "sL_BldgLoss": "447", "sL_StrLoss": "447", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D10302518F25DC07BA702EEF93A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.781729461999959, 50.463559227000083 ], [ -119.781688724, 50.462865269000147 ], [ -119.781951834999987, 50.462858976000035 ], [ -119.782110899999907, 50.462855171000044 ], [ -119.782088391999977, 50.462471808000053 ], [ -119.782063435999945, 50.462046726000068 ], [ -119.782261034999934, 50.4620419990001 ], [ -119.782485601999909, 50.462036625000025 ], [ -119.782477776999926, 50.461903358000022 ], [ -119.782320278999933, 50.461894515000047 ], [ -119.779157597999955, 50.46171688000009 ], [ -119.779351427999956, 50.460313925000044 ], [ -119.77938961299999, 50.460037518000014 ], [ -119.776186215999985, 50.45985750200002 ], [ -119.77668103399999, 50.456277329000017 ], [ -119.777302650999957, 50.45631226900008 ], [ -119.777321213, 50.456177944000046 ], [ -119.782934980999954, 50.456493317000053 ], [ -119.782860443999979, 50.457033195000115 ], [ -119.786184900999956, 50.457219823000095 ], [ -119.786505603999927, 50.45723782000011 ], [ -119.786414970999928, 50.457894641000102 ], [ -119.788580227999901, 50.457842740000032 ], [ -119.78854851600002, 50.457303779000036 ], [ -119.789814886999963, 50.457273407000123 ], [ -119.789799023999961, 50.457003926000048 ], [ -119.791065383999936, 50.456973540000092 ], [ -119.791049513999951, 50.456704060000057 ], [ -119.792315864999964, 50.456673660000057 ], [ -119.792363494999989, 50.45748209900006 ], [ -119.791519248999961, 50.457502367000146 ], [ -119.791535120999967, 50.457771847000096 ], [ -119.791112993999946, 50.457781979000117 ], [ -119.791128864999976, 50.458051459000011 ], [ -119.790706734999901, 50.458061590000078 ], [ -119.790722602999921, 50.458331069000124 ], [ -119.789034073, 50.458371577000051 ], [ -119.789065790999956, 50.458910538000083 ], [ -119.788643652999923, 50.458920662000054 ], [ -119.78869122499999, 50.459729102000082 ], [ -119.788269080999896, 50.459739225000078 ], [ -119.788300790999955, 50.460278184000082 ], [ -119.787878639999946, 50.460288305000041 ], [ -119.787908408999925, 50.460794324000062 ], [ -119.78791034799994, 50.460827266000059 ], [ -119.787066036999988, 50.460847504000078 ], [ -119.787081886999928, 50.461116984000057 ], [ -119.784971092999925, 50.461167551000059 ], [ -119.784955254999957, 50.460898070000084 ], [ -119.78492852199993, 50.460898711000034 ], [ -119.784772067999924, 50.462032159000053 ], [ -119.783750254999958, 50.461974800000078 ], [ -119.783752104999962, 50.462006317000053 ], [ -119.783329936999976, 50.462016421000037 ], [ -119.783345765999982, 50.46228590300008 ], [ -119.784190106999972, 50.462265693000042 ], [ -119.78420594, 50.462535173000084 ], [ -119.785050281999986, 50.462514957000096 ], [ -119.785113638999917, 50.463592880000149 ], [ -119.784269274999957, 50.463613098000081 ], [ -119.784274507999953, 50.463702113000039 ], [ -119.785266087, 50.463757767000061 ], [ -119.784771868999911, 50.467337945000104 ], [ -119.782143600999959, 50.467190410000121 ], [ -119.779156737999926, 50.467022669000102 ], [ -119.779651400999981, 50.463442515000096 ], [ -119.781729461999959, 50.463559227000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "219", "sL_BldgLoss": "219", "sL_StrLoss": "219", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001201A0ED45F45DC0100C9C4304364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.81365034699995, 50.420473853000097 ], [ -119.813761011999986, 50.419667596000124 ], [ -119.817518744, 50.419877667000016 ], [ -119.817617767999963, 50.419883202000079 ], [ -119.819370496999966, 50.4199811410001 ], [ -119.819368132999898, 50.419998374000031 ], [ -119.820603857999942, 50.420067407000069 ], [ -119.820112916999904, 50.423647936000044 ], [ -119.819504483999964, 50.423613948000074 ], [ -119.819446308999915, 50.424038150000094 ], [ -119.818710531999898, 50.423997044000011 ], [ -119.818660492999967, 50.424361868000119 ], [ -119.814875406999974, 50.424150328000039 ], [ -119.813050468999961, 50.424048289000105 ], [ -119.81315824, 50.423263258000105 ], [ -119.813541974999964, 50.420467793000086 ], [ -119.81365034699995, 50.420473853000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "189.8", "sL_BldgLoss": "189.8", "sL_StrLoss": "189.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004396FDA136F25DC0D5EB1681313A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.782024906999965, 50.452688044000105 ], [ -119.787638274999978, 50.453003181000049 ], [ -119.787154397999984, 50.456510665000025 ], [ -119.787144360999918, 50.456583417000083 ], [ -119.787056103999987, 50.456578464000081 ], [ -119.78153055199999, 50.456268257 ], [ -119.782024906999965, 50.452688044000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "150.9", "sL_BldgLoss": "150.9", "sL_StrLoss": "150.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB64B9F89DF35DC03DFD77AFA0384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.807214636999973, 50.440279367000123 ], [ -119.809654328, 50.440415849000054 ], [ -119.809162297999933, 50.4439962390001 ], [ -119.809089573999955, 50.44399217200003 ], [ -119.808991529999929, 50.444705542000086 ], [ -119.806180821999973, 50.444548298000079 ], [ -119.803379044999943, 50.444391482000121 ], [ -119.803455069999941, 50.443838833000029 ], [ -119.803871538999914, 50.440811120000092 ], [ -119.803944255999951, 50.440815190000102 ], [ -119.804042372, 50.440101821000042 ], [ -119.807214636999973, 50.440279367000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "183.9", "sL_BldgLoss": "183.9", "sL_StrLoss": "183.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FAD5DA0306F35DC0A00491A0D3384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.794682566999938, 50.442010910000072 ], [ -119.80029469499999, 50.442325411000084 ], [ -119.800096759999974, 50.443763561000047 ], [ -119.799801901999942, 50.445905751000033 ], [ -119.794189331999959, 50.445591226000047 ], [ -119.794462494999919, 50.443608450000085 ], [ -119.794682566999938, 50.442010910000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "164", "sL_BldgLoss": "164", "sL_StrLoss": "164", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B761D2E77CF85DC016EEA6A5832F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.880064510999944, 50.369259404000047 ], [ -119.885668201999977, 50.369569614000028 ], [ -119.8854788299999, 50.370967234000076 ], [ -119.885182959999909, 50.373150657000039 ], [ -119.879578826999975, 50.372840423000113 ], [ -119.879797809999914, 50.371225906000042 ], [ -119.880064510999944, 50.369259404000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75017500", "BldgCostT": "52495000", "sL_LossRatio": "0.957428482378079", "sL_AssetLoss": "695.300559", "sL_BldgLoss": "665.700559", "sL_StrLoss": "655.000559", "sL_NStrLoss": "10.7", "sL_ContLoss": "29.6", "geom_point": "0101000020E610000050F51200EFF35DC0C5EAC9DB15444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.798237261999958, 50.535885356000058 ], [ -119.798281031, 50.535568134000059 ], [ -119.797705267, 50.535535942000116 ], [ -119.797753985999961, 50.535182864000035 ], [ -119.798199207999957, 50.531956007000133 ], [ -119.803822559999958, 50.532270294000057 ], [ -119.803778833999914, 50.532587520000021 ], [ -119.804326977999906, 50.532618140000054 ], [ -119.804667929999979, 50.530144252000134 ], [ -119.805625993999953, 50.530197765000089 ], [ -119.805641590999983, 50.530084575000039 ], [ -119.805796013999938, 50.530093199000085 ], [ -119.805818393999971, 50.529930778000072 ], [ -119.811441546999959, 50.530244681000028 ], [ -119.811403826999964, 50.530518686000065 ], [ -119.811507771999942, 50.530524486000026 ], [ -119.811575138999956, 50.530035111000089 ], [ -119.812692015999957, 50.530097423000015 ], [ -119.812742705999966, 50.529729137000061 ], [ -119.8146235, 50.529834044000076 ], [ -119.814757668, 50.528858882000058 ], [ -119.815406091999961, 50.528895042000052 ], [ -119.815431224999941, 50.528712337000066 ], [ -119.815501072999965, 50.528204598000094 ], [ -119.816529628999902, 50.528261948000065 ], [ -119.816538627999989, 50.528196521000105 ], [ -119.817267682999898, 50.528237167000057 ], [ -119.817332818999944, 50.527763538000031 ], [ -119.818035903999942, 50.527802731000094 ], [ -119.818064996999937, 50.527591155000039 ], [ -119.81889759299996, 50.527637562000116 ], [ -119.81890746299996, 50.527565774000145 ], [ -119.820122514, 50.52763348700006 ], [ -119.82015111699998, 50.527425402000077 ], [ -119.820812721999971, 50.527462267000075 ], [ -119.820824589999916, 50.527375918000125 ], [ -119.82093730299999, 50.527382199000087 ], [ -119.821044683999972, 50.527388181000028 ], [ -119.821057587999945, 50.527294280000085 ], [ -119.821090896999962, 50.527051923000109 ], [ -119.821519227999943, 50.527075786000047 ], [ -119.82494761699995, 50.52726673100004 ], [ -119.826386842999952, 50.527346856000058 ], [ -119.826299198999905, 50.527401905000033 ], [ -119.825526388999918, 50.527696214000031 ], [ -119.824444474999979, 50.528764673000119 ], [ -119.824420504, 50.52878832800009 ], [ -119.823552160999938, 50.529645807000037 ], [ -119.823371034999965, 50.529824657000077 ], [ -119.82323540499999, 50.52995858600012 ], [ -119.823105516999988, 50.530027087000121 ], [ -119.822929194999944, 50.530073196000025 ], [ -119.822705514999925, 50.530097903000062 ], [ -119.822665681999979, 50.530102305000106 ], [ -119.821876292999917, 50.530189486000047 ], [ -119.821787104999899, 50.530193267000051 ], [ -119.821739293999954, 50.530195293000041 ], [ -119.821702010999928, 50.530286017000066 ], [ -119.82162188300002, 50.530368800000105 ], [ -119.821567975999955, 50.530415012000034 ], [ -119.821459540999982, 50.530498458000061 ], [ -119.821337078999989, 50.530582253000048 ], [ -119.821171718999963, 50.530658041000038 ], [ -119.820992240999928, 50.53073417500012 ], [ -119.82085507799998, 50.530809332000018 ], [ -119.820594459999896, 50.530950312000094 ], [ -119.820428583999956, 50.531017145000064 ], [ -119.820247497999915, 50.531066331000069 ], [ -119.820066992999941, 50.531124503000058 ], [ -119.819859733999934, 50.531210330000079 ], [ -119.819722089999956, 50.531276466000101 ], [ -119.819654537999909, 50.531331987000094 ], [ -119.819590019999978, 50.531441345000104 ], [ -119.819536602999932, 50.531496541000088 ], [ -119.819472557999944, 50.53161486000004 ], [ -119.819394432999928, 50.531733519000085 ], [ -119.819290576999933, 50.531897735000065 ], [ -119.819185219999966, 50.532035028000095 ], [ -119.819027959999943, 50.532254406000106 ], [ -119.81896289, 50.532354822000109 ], [ -119.81888275099999, 50.532437605000013 ], [ -119.818817206999938, 50.532529001000107 ], [ -119.818711882999963, 50.532666283000033 ], [ -119.818634226999947, 50.532793962000049 ], [ -119.818557577999954, 50.532939518000042 ], [ -119.81848047199999, 50.533076138000105 ], [ -119.818469254999982, 50.533093862000086 ], [ -119.817950273999912, 50.533064939000063 ], [ -119.817873563999967, 50.53362272300015 ], [ -119.816756590999958, 50.533560463000107 ], [ -119.816705931999977, 50.53392875 ], [ -119.81638628899999, 50.53391093100003 ], [ -119.816170895999932, 50.535476658000043 ], [ -119.814784468999903, 50.535399358000106 ], [ -119.810547056999951, 50.53516299500005 ], [ -119.810588043999985, 50.534865329000084 ], [ -119.810537277999984, 50.534862496000095 ], [ -119.810589854999989, 50.534480659000053 ], [ -119.808206856999959, 50.534347662000052 ], [ -119.805443236999949, 50.534193358000024 ], [ -119.80547311399998, 50.533976556000027 ], [ -119.805392549999937, 50.533972056000081 ], [ -119.805417140999964, 50.533793629000087 ], [ -119.804202110999967, 50.533725765000064 ], [ -119.803996243999947, 50.53521930000008 ], [ -119.803861105999928, 50.536199641000032 ], [ -119.798237261999958, 50.535885356000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "138", "sL_BldgLoss": "138", "sL_StrLoss": "138", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E336B795A0EA5DC048D62B76C5394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.663497010999933, 50.449388105000047 ], [ -119.669109133999925, 50.449709237000064 ], [ -119.66860585699996, 50.453288956000037 ], [ -119.662993293999975, 50.452967799000099 ], [ -119.663497010999933, 50.449388105000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "112", "sL_BldgLoss": "112", "sL_StrLoss": "112", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066E31CD0EDEA5DC0F4D114C7224B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.670235818999984, 50.585022995000074 ], [ -119.674331051999943, 50.585256364000024 ], [ -119.674314292999938, 50.585375291000076 ], [ -119.674026927999961, 50.585450847000089 ], [ -119.673598405999911, 50.585512127000129 ], [ -119.673037933000032, 50.58549280600004 ], [ -119.672847682999986, 50.58551444700003 ], [ -119.672218560999923, 50.585720328000029 ], [ -119.672016103999965, 50.585727718000065 ], [ -119.671753439, 50.585970719000059 ], [ -119.671655490999981, 50.586122081000092 ], [ -119.671617497999975, 50.586562795000127 ], [ -119.672232757999922, 50.587048825000075 ], [ -119.672545287999966, 50.587168499000022 ], [ -119.673118425999959, 50.587387931000087 ], [ -119.673757491999964, 50.587866310000031 ], [ -119.673935637999961, 50.588062339000025 ], [ -119.67382667499993, 50.588835511000141 ], [ -119.668197172999939, 50.588514672000066 ], [ -119.668701993999917, 50.584935549000093 ], [ -119.668882359999927, 50.584945833000042 ], [ -119.669530693999945, 50.584982797000087 ], [ -119.670235818999984, 50.585022995000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "167", "sL_BldgLoss": "167", "sL_StrLoss": "167", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005430321ADCEC5DC086B4004C1D3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.698644816999916, 50.464238558000055 ], [ -119.69870044299995, 50.463841133000074 ], [ -119.697171596999922, 50.463754119000036 ], [ -119.69746135799997, 50.461684285000068 ], [ -119.697672723, 50.460174318000071 ], [ -119.69788598599996, 50.460186457000134 ], [ -119.698057576999929, 50.458960524000098 ], [ -119.70367113399999, 50.459279905000059 ], [ -119.70344411499994, 50.460903275000064 ], [ -119.704759609999954, 50.460978077000107 ], [ -119.704667967999924, 50.461633483000121 ], [ -119.704259034999893, 50.464557907000064 ], [ -119.698644816999916, 50.464238558000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10152251", "BldgCostT": "6505001", "sL_LossRatio": "0.960776989166978", "sL_AssetLoss": "696.02", "sL_BldgLoss": "668.72", "sL_StrLoss": "658.8", "sL_NStrLoss": "9.92", "sL_ContLoss": "27.3", "geom_point": "0101000020E6100000E9B4C93C4DF45DC0E0FF3B60263D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.806592884999986, 50.479259362000036 ], [ -119.806965976999948, 50.476547877 ], [ -119.807545499999932, 50.476580276000078 ], [ -119.80771131299997, 50.475374991000074 ], [ -119.81332768099999, 50.475688820000116 ], [ -119.813174495999959, 50.476803322000173 ], [ -119.813299856999976, 50.476810323000109 ], [ -119.813206542999978, 50.47748921400013 ], [ -119.813647652999961, 50.477478544000029 ], [ -119.814051186, 50.474542335000109 ], [ -119.819667493999972, 50.474855844000047 ], [ -119.819624382999947, 50.47516983500001 ], [ -119.82284991399996, 50.475349757000117 ], [ -119.822822977999948, 50.475546028000103 ], [ -119.823855994, 50.47560363000008 ], [ -119.823832199999984, 50.475777042000082 ], [ -119.82564104699999, 50.475877882000063 ], [ -119.825637429999972, 50.475904257000124 ], [ -119.82675511399998, 50.475966551000035 ], [ -119.826683439999954, 50.476489152000134 ], [ -119.827250233999933, 50.476520738000055 ], [ -119.827195195999977, 50.476922066000014 ], [ -119.827822542000021, 50.476957023000075 ], [ -119.827331554999958, 50.480537332000097 ], [ -119.824534511999957, 50.480381449000021 ], [ -119.821714485999934, 50.480224213000106 ], [ -119.821769574999934, 50.47982288900004 ], [ -119.82114219499999, 50.479787898000019 ], [ -119.821201759999965, 50.479354008000094 ], [ -119.820948769, 50.479339898000106 ], [ -119.820850046999979, 50.480058983000085 ], [ -119.815233082999967, 50.479745536000053 ], [ -119.81525558599999, 50.47958178300005 ], [ -119.813724544999943, 50.479496295000082 ], [ -119.813891411, 50.478282228000083 ], [ -119.813094889999988, 50.478301497000075 ], [ -119.812807718, 50.480390568000125 ], [ -119.812102772999935, 50.480351194000093 ], [ -119.812090289999972, 50.480441984000073 ], [ -119.806473338999979, 50.480128095000076 ], [ -119.806592884999986, 50.479259362000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "149.7", "sL_BldgLoss": "149.7", "sL_StrLoss": "149.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082EB82A898F45DC023FA52CB18424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.819252793999979, 50.514434951000062 ], [ -119.824874107999975, 50.514748181000073 ], [ -119.824382474999965, 50.518328310000101 ], [ -119.820962194999979, 50.518137761000041 ], [ -119.81876071799995, 50.518015057000063 ], [ -119.81892140799999, 50.516846012000094 ], [ -119.819252793999979, 50.514434951000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "125.6", "sL_BldgLoss": "125.6", "sL_StrLoss": "125.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BE0BD401CF05DC037FA3D56153D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.749164945999965, 50.475265241000074 ], [ -119.754780891999971, 50.475582030000055 ], [ -119.754284124, 50.479162020000047 ], [ -119.748667735999916, 50.478845206000067 ], [ -119.749164945999965, 50.475265241000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61.8", "sL_BldgLoss": "61.8", "sL_StrLoss": "61.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006388101532045EC09DB02F9FCD524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.062953664999924, 50.647543128000109 ], [ -120.062927130999952, 50.64713539300007 ], [ -120.063774565999964, 50.647113096000069 ], [ -120.063757029, 50.646843690000047 ], [ -120.064080804999932, 50.646835170000067 ], [ -120.064103347999961, 50.646473742000055 ], [ -120.064527109999972, 50.646484426000015 ], [ -120.064543913999955, 50.646214990000054 ], [ -120.064120152999962, 50.64620430500009 ], [ -120.064167685999948, 50.64544219000009 ], [ -120.064170565999945, 50.645395994000033 ], [ -120.065865575999979, 50.645438720000129 ], [ -120.065865568000021, 50.645438851000115 ], [ -120.066211564999932, 50.645429738000075 ], [ -120.06623032899995, 50.645717772000111 ], [ -120.066272537999964, 50.645718835000146 ], [ -120.066256990999989, 50.645968277000094 ], [ -120.066670372999951, 50.645957388000106 ], [ -120.066673067999943, 50.645998787000011 ], [ -120.066679504000021, 50.645998949000045 ], [ -120.066676362999942, 50.646049343000108 ], [ -120.066705477999932, 50.646496198000094 ], [ -120.067129188999971, 50.646485036000108 ], [ -120.067133428999952, 50.646550105000117 ], [ -120.067493450999976, 50.646559173000078 ], [ -120.067481834, 50.646745613000121 ], [ -120.067994168999959, 50.646732113000027 ], [ -120.068018940999963, 50.647112128000067 ], [ -120.068307415000035, 50.647119391000061 ], [ -120.068257069999959, 50.647927705000036 ], [ -120.066561967, 50.647885012000046 ], [ -120.066581042999957, 50.647578943000042 ], [ -120.066351972999911, 50.647584977000029 ], [ -120.066335984999952, 50.647339598000094 ], [ -120.065868961999939, 50.647327830000044 ], [ -120.065486982999914, 50.647337887000049 ], [ -120.065522075999979, 50.647876697000143 ], [ -120.065288779999946, 50.647882840000094 ], [ -120.065278177999986, 50.648052863000018 ], [ -120.062980782999958, 50.647959827000172 ], [ -120.062953664999924, 50.647543128000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "105.9", "sL_BldgLoss": "105.9", "sL_StrLoss": "105.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5E9803DC9F85DC032280D147C494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.884273564999944, 50.575916842000126 ], [ -119.88428941799998, 50.575800421000075 ], [ -119.88424257199992, 50.575797841000075 ], [ -119.884275374999973, 50.575556963000082 ], [ -119.884175086999917, 50.575551439000051 ], [ -119.884662590999966, 50.571971298000044 ], [ -119.886262671999958, 50.572059419000013 ], [ -119.890291539999978, 50.572281197000024 ], [ -119.890258771999981, 50.572522077000052 ], [ -119.890359053999987, 50.572527596000036 ], [ -119.890343217999927, 50.572644018000062 ], [ -119.8903900599999, 50.572646595000087 ], [ -119.889903004999951, 50.576226760000054 ], [ -119.887494149999938, 50.57609418100008 ], [ -119.884273564999944, 50.575916842000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "109.5", "sL_BldgLoss": "109.5", "sL_StrLoss": "109.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5C0221AB8F45DC04A0E1281EE434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.824444474999979, 50.528764673000119 ], [ -119.825526388999918, 50.527696214000031 ], [ -119.826299198999905, 50.527401905000033 ], [ -119.826386842999952, 50.527346856000058 ], [ -119.826713796999968, 50.527365055000068 ], [ -119.82656414799996, 50.528454885000031 ], [ -119.827226355, 50.528491743000103 ], [ -119.826734758999947, 50.532071822000034 ], [ -119.824491564999917, 50.531946950000084 ], [ -119.824488855999974, 50.531966675000035 ], [ -119.823623771999962, 50.531918506000068 ], [ -119.823619416999989, 50.5319501950001 ], [ -119.823223242999973, 50.531928133000072 ], [ -119.823131431999968, 50.53259630500002 ], [ -119.822907326999925, 50.532583824 ], [ -119.8228860299999, 50.532738810000161 ], [ -119.820093042999943, 50.532583231000046 ], [ -119.820011030999964, 50.533179775000164 ], [ -119.818469254999982, 50.533093862000086 ], [ -119.81848047199999, 50.533076138000105 ], [ -119.818557577999954, 50.532939518000042 ], [ -119.818634226999947, 50.532793962000049 ], [ -119.818711882999963, 50.532666283000033 ], [ -119.818817206999938, 50.532529001000107 ], [ -119.81888275099999, 50.532437605000013 ], [ -119.81896289, 50.532354822000109 ], [ -119.819027959999943, 50.532254406000106 ], [ -119.819185219999966, 50.532035028000095 ], [ -119.819290576999933, 50.531897735000065 ], [ -119.819394432999928, 50.531733519000085 ], [ -119.819472557999944, 50.53161486000004 ], [ -119.819536602999932, 50.531496541000088 ], [ -119.819590019999978, 50.531441345000104 ], [ -119.819654537999909, 50.531331987000094 ], [ -119.819722089999956, 50.531276466000101 ], [ -119.819859733999934, 50.531210330000079 ], [ -119.820066992999941, 50.531124503000058 ], [ -119.820247497999915, 50.531066331000069 ], [ -119.820428583999956, 50.531017145000064 ], [ -119.820594459999896, 50.530950312000094 ], [ -119.82085507799998, 50.530809332000018 ], [ -119.820992240999928, 50.53073417500012 ], [ -119.821171718999963, 50.530658041000038 ], [ -119.821337078999989, 50.530582253000048 ], [ -119.821459540999982, 50.530498458000061 ], [ -119.821567975999955, 50.530415012000034 ], [ -119.82162188300002, 50.530368800000105 ], [ -119.821702010999928, 50.530286017000066 ], [ -119.821739293999954, 50.530195293000041 ], [ -119.821787104999899, 50.530193267000051 ], [ -119.821876292999917, 50.530189486000047 ], [ -119.822665681999979, 50.530102305000106 ], [ -119.822705514999925, 50.530097903000062 ], [ -119.822929194999944, 50.530073196000025 ], [ -119.823105516999988, 50.530027087000121 ], [ -119.82323540499999, 50.52995858600012 ], [ -119.823371034999965, 50.529824657000077 ], [ -119.823552160999938, 50.529645807000037 ], [ -119.824420504, 50.52878832800009 ], [ -119.824444474999979, 50.528764673000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999997116223118", "sL_AssetLoss": "155.005057", "sL_BldgLoss": "155.00461", "sL_StrLoss": "155", "sL_NStrLoss": "0.00461", "sL_ContLoss": "0.000447", "geom_point": "0101000020E6100000D25E96D994095EC0E5CDC8BDCC4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.147411946999952, 50.613967379000094 ], [ -120.153047921999971, 50.61426397300005 ], [ -120.152816031999933, 50.61604380000005 ], [ -120.151862017999974, 50.616474820000029 ], [ -120.151815412999937, 50.616495905000058 ], [ -120.15136758099996, 50.616606490000038 ], [ -120.150786245999967, 50.616750019000065 ], [ -120.150595358999936, 50.616797156000082 ], [ -120.150112016999984, 50.616916495000048 ], [ -120.149503409999966, 50.617177386000037 ], [ -120.148859368, 50.617649247000045 ], [ -120.146944903999952, 50.617548465000041 ], [ -120.147411946999952, 50.613967379000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8535667", "BldgCostT": "5886667", "sL_LossRatio": "1", "sL_AssetLoss": "669", "sL_BldgLoss": "669", "sL_StrLoss": "669", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A3EDED455015EC0E7D26CDC6A534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.021145401999917, 50.655384708000014 ], [ -120.017617091999966, 50.654124313000075 ], [ -120.015385807999948, 50.653158704000091 ], [ -120.013782196999927, 50.652577590000114 ], [ -120.01289471199999, 50.652285588000076 ], [ -120.011208503999939, 50.651891101000075 ], [ -120.00905579399992, 50.651476691000077 ], [ -120.008463411999983, 50.65123600800009 ], [ -120.007432197999918, 50.650985298000045 ], [ -120.007161211, 50.650866318000112 ], [ -120.007213277999981, 50.650476778000012 ], [ -120.006326186999914, 50.650499686000032 ], [ -120.006265132999914, 50.650472880000102 ], [ -120.006249733999951, 50.650231796000064 ], [ -120.005825964999929, 50.65024273699999 ], [ -120.005817926999953, 50.650116876000027 ], [ -120.005724791999981, 50.65011448000007 ], [ -120.005733649999968, 50.649975256000104 ], [ -120.005384991999975, 50.649984257000042 ], [ -120.005354792999952, 50.649511343 ], [ -120.005339232999944, 50.649267665000067 ], [ -120.005333378999964, 50.649175997000093 ], [ -120.006803278999911, 50.649138046000175 ], [ -120.007028413999976, 50.649132233000067 ], [ -120.007039908999943, 50.64931214500006 ], [ -120.007041608999927, 50.649338746000112 ], [ -120.007047508999904, 50.649338898000067 ], [ -120.00704457099998, 50.649385114000033 ], [ -120.007045628999919, 50.649401652000051 ], [ -120.00715763299992, 50.649398759000064 ], [ -120.007358054999941, 50.649393583000055 ], [ -120.007548129999975, 50.647971417000115 ], [ -120.010852886999928, 50.648149401000083 ], [ -120.010954814999963, 50.647386294000057 ], [ -120.011811547999926, 50.647432419000083 ], [ -120.011843787999979, 50.647191014000107 ], [ -120.012923712999978, 50.647249146 ], [ -120.012948148999925, 50.647066140000035 ], [ -120.018587376999932, 50.647369523000044 ], [ -120.018582427999917, 50.647406623000094 ], [ -120.019394752999915, 50.647450302000017 ], [ -120.019361803999956, 50.647697336000078 ], [ -120.020584530999926, 50.647763069000071 ], [ -120.020497876999954, 50.648412864000143 ], [ -120.02265530699999, 50.648528814000016 ], [ -120.022629463999976, 50.648722666000026 ], [ -120.023489792999911, 50.648768892000085 ], [ -120.023485054999966, 50.64880443900006 ], [ -120.026275304999913, 50.64895431500009 ], [ -120.026217119999899, 50.649391041000051 ], [ -120.028312766999974, 50.649503561000124 ], [ -120.028119038999989, 50.650958082000024 ], [ -120.028591851999963, 50.650970149000045 ], [ -120.028590779999959, 50.650987152000056 ], [ -120.033616693999988, 50.651256819000139 ], [ -120.033370289999979, 50.653108400000171 ], [ -120.033345228999949, 50.653296710000042 ], [ -120.033320817999979, 50.65348012300008 ], [ -120.03314019699998, 50.654837264000015 ], [ -120.028033051999898, 50.654563237000104 ], [ -120.028016970999914, 50.654683952000042 ], [ -120.031222825, 50.654855992000101 ], [ -120.030884063999963, 50.657400295000066 ], [ -120.02938289799998, 50.657375705000092 ], [ -120.028390393999942, 50.657206313000074 ], [ -120.027277481999988, 50.656881505000037 ], [ -120.025222475999939, 50.656486994000133 ], [ -120.02436411399998, 50.656195098000097 ], [ -120.022104010999925, 50.65567809500002 ], [ -120.021145401999917, 50.655384708000014 ] ], [ [ -120.027543382999966, 50.654208459000074 ], [ -120.027571530999964, 50.653997162000095 ], [ -120.025172379999901, 50.65405952100005 ], [ -120.025158972999975, 50.65385097900004 ], [ -120.024733773999941, 50.653840114000054 ], [ -120.024747800999961, 50.654058345000102 ], [ -120.027543382999966, 50.654208459000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "131", "sL_BldgLoss": "131", "sL_StrLoss": "131", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B078CDC70065EC00ED36300CD4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.098057435, 50.590253579000063 ], [ -120.103690113999903, 50.590552679000012 ], [ -120.103219834999919, 50.594133682000091 ], [ -120.097586710999906, 50.59383456000009 ], [ -120.098057435, 50.590253579000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999994357321623", "sL_AssetLoss": "226.310967", "sL_BldgLoss": "226.30969", "sL_StrLoss": "226.3", "sL_NStrLoss": "0.00969", "sL_ContLoss": "0.001277", "geom_point": "0101000020E610000034157F677D065EC085DA677CFC494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.099279799999948, 50.576010573000111 ], [ -120.10491070499998, 50.576309617000071 ], [ -120.104440670999978, 50.579890687000045 ], [ -120.103552352999955, 50.579843530000069 ], [ -120.103528539999928, 50.580024908000041 ], [ -120.100780875999988, 50.579879001000066 ], [ -120.097897178999972, 50.579725797000052 ], [ -120.098080947999975, 50.5783273320001 ], [ -120.098367730999954, 50.576144753000122 ], [ -120.099255971999966, 50.576191951000069 ], [ -120.099279799999948, 50.576010573000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999982162755482", "sL_AssetLoss": "153.61117", "sL_BldgLoss": "153.60843", "sL_StrLoss": "153.6", "sL_NStrLoss": "0.00843", "sL_ContLoss": "0.00274", "geom_point": "0101000020E61000008F0412FB21065EC0EFBAC84E094B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.093243486999924, 50.584281353000044 ], [ -120.098875385999946, 50.584580698000096 ], [ -120.098404785999932, 50.58816170700009 ], [ -120.092772441999927, 50.587862340000129 ], [ -120.093243486999924, 50.584281353000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "224", "sL_BldgLoss": "224", "sL_StrLoss": "224", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B9EE2FEC4F85DC0B2889B323B484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.884125489, 50.566654155000045 ], [ -119.88419292499999, 50.566158852000022 ], [ -119.884156721999901, 50.566156858000063 ], [ -119.88417898099999, 50.56599337200003 ], [ -119.883074699999952, 50.565932529000079 ], [ -119.88356218699991, 50.562352350000019 ], [ -119.883687312999911, 50.562359244000014 ], [ -119.883695684999935, 50.56229775300001 ], [ -119.884185712999965, 50.562324753000091 ], [ -119.884244983999949, 50.561889364000137 ], [ -119.885246809999927, 50.561944557000068 ], [ -119.885271046999918, 50.561766487000057 ], [ -119.885991621999906, 50.561806181000122 ], [ -119.890898724999943, 50.562076361000074 ], [ -119.890411823999955, 50.565656573000126 ], [ -119.890134408999984, 50.565641305000057 ], [ -119.889972971, 50.566828181000041 ], [ -119.889773747999968, 50.566817216000068 ], [ -119.889753769999942, 50.566964085000073 ], [ -119.886218683999971, 50.566769454000038 ], [ -119.884125489, 50.566654155000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "100.3", "sL_BldgLoss": "100.3", "sL_StrLoss": "100.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015B93355E8F55DC07E2FCF9467444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.839324528999924, 50.536210686000047 ], [ -119.839368453999953, 50.535890201000029 ], [ -119.839171845999914, 50.535879281000078 ], [ -119.839559672999883, 50.533049487 ], [ -119.839662496999949, 50.532299164000079 ], [ -119.845286179999974, 50.532611355000064 ], [ -119.845242300999928, 50.532931843000021 ], [ -119.845438895999962, 50.532942752000103 ], [ -119.844948697999953, 50.536522892000086 ], [ -119.844909861999938, 50.536520737000025 ], [ -119.839324528999924, 50.536210686000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BCA9D8003FE5DC06DC3EE5C94474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96555722, 50.561177003000033 ], [ -119.965571925999939, 50.561067513000104 ], [ -119.965196314999957, 50.561047094000052 ], [ -119.96567722199994, 50.557466536000078 ], [ -119.967017758999972, 50.557539407000029 ], [ -119.967042432999946, 50.557355648000048 ], [ -119.967096189999964, 50.556955268000095 ], [ -119.972723825999964, 50.55726100400004 ], [ -119.972586602999954, 50.558283946000103 ], [ -119.972243480999921, 50.560841593000049 ], [ -119.971278448999954, 50.5607891860001 ], [ -119.971185371999937, 50.561482815000041 ], [ -119.966667022999957, 50.561237329000086 ], [ -119.966600144999973, 50.561233694000045 ], [ -119.96555722, 50.561177003000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "136.8", "sL_BldgLoss": "136.8", "sL_StrLoss": "136.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002805C4C131FE5DC0714683CA2E484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96921301, 50.561984828000057 ], [ -119.974841288999954, 50.562290456000014 ], [ -119.9743610599999, 50.565871032000075 ], [ -119.973979098999962, 50.565850300000136 ], [ -119.968732336999963, 50.565565382000038 ], [ -119.969150006999939, 50.562454171000113 ], [ -119.96921301, 50.561984828000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "132", "sL_BldgLoss": "132", "sL_StrLoss": "132", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008086D44075035EC0376AC705CE4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.050871888999922, 50.625054217000077 ], [ -120.05116365899994, 50.622853808000059 ], [ -120.051229078999924, 50.622875697000012 ], [ -120.051543682999977, 50.622811604000056 ], [ -120.052262984999956, 50.621522597000101 ], [ -120.054715206999944, 50.621653768000044 ], [ -120.056982935999926, 50.621775020000022 ], [ -120.056508611999988, 50.625355691000031 ], [ -120.052562305000023, 50.625144657000099 ], [ -120.050871888999922, 50.625054217000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "123.2", "sL_BldgLoss": "123.2", "sL_StrLoss": "123.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3CB5F634FFE5DC029BAE46EC6464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.969847992999959, 50.555015433000072 ], [ -119.969851310999942, 50.554990714000077 ], [ -119.969464981999977, 50.554969723000056 ], [ -119.96994548399999, 50.551389121000071 ], [ -119.970250599999972, 50.551405699000078 ], [ -119.970279081999948, 50.55119342800009 ], [ -119.97202719099991, 50.55128839200006 ], [ -119.97212493799999, 50.550559669000066 ], [ -119.975512602999942, 50.550743620000112 ], [ -119.976831116999961, 50.550815188000037 ], [ -119.97775180899994, 50.55086515300011 ], [ -119.977271932999926, 50.554445791000013 ], [ -119.975604880000034, 50.554355317000059 ], [ -119.975475405999958, 50.555321031000162 ], [ -119.969847992999959, 50.555015433000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B7EA7C7025F65DC0683C74EE34414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.844262325999921, 50.50750042100001 ], [ -119.848193088, 50.507718626000013 ], [ -119.847703381999935, 50.511298888000113 ], [ -119.843527289999926, 50.511067062000038 ], [ -119.844334806999967, 50.509273602000121 ], [ -119.844413699999905, 50.508453295000045 ], [ -119.844247224999918, 50.507557503000079 ], [ -119.844262325999921, 50.50750042100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13419750", "BldgCostT": "9255000", "sL_LossRatio": "0.999996467041988", "sL_AssetLoss": "1602.056968", "sL_BldgLoss": "1602.051308", "sL_StrLoss": "1602.000128", "sL_NStrLoss": "0.05118", "sL_ContLoss": "0.00566", "geom_point": "0101000020E6100000EE36770DDDF55DC06B555C6622434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.832285196999948, 50.531438602000101 ], [ -119.832309830999975, 50.531259059000043 ], [ -119.832116304999971, 50.531248297000047 ], [ -119.832206684999903, 50.530589548000151 ], [ -119.831989944999918, 50.530577495000067 ], [ -119.83230279899999, 50.528297158000072 ], [ -119.831898897999949, 50.528274697000029 ], [ -119.831904862999977, 50.528231212000094 ], [ -119.830899068999912, 50.528175270000084 ], [ -119.830943393999959, 50.527852244000016 ], [ -119.830569780999951, 50.527831461000083 ], [ -119.830593398999909, 50.527659349 ], [ -119.82954695899997, 50.527601134000122 ], [ -119.829548876999979, 50.527587154000088 ], [ -119.829314751999974, 50.527574127000086 ], [ -119.829496209999959, 50.526252020000122 ], [ -119.829138637999961, 50.526232125000021 ], [ -119.82920360599995, 50.525758771000021 ], [ -119.829233224999911, 50.525747065000047 ], [ -119.829732016999955, 50.525414978000065 ], [ -119.830410133999948, 50.525159597000041 ], [ -119.830492095999972, 50.525078478000097 ], [ -119.830498805, 50.524957092000093 ], [ -119.830352974999968, 50.524595456000085 ], [ -119.830359119999954, 50.524576172000074 ], [ -119.83039040299991, 50.524477592 ], [ -119.830549731999909, 50.524297059000048 ], [ -119.83079979799993, 50.524126083000034 ], [ -119.831097774999975, 50.523998374000058 ], [ -119.831467387999965, 50.52393687400005 ], [ -119.83181252599995, 50.523929893000073 ], [ -119.832170060999914, 50.523976854000033 ], [ -119.832404613999969, 50.524035002000097 ], [ -119.832931220999939, 50.524165567000111 ], [ -119.83296728199997, 50.524174507000041 ], [ -119.833170558999939, 50.524293127000064 ], [ -119.833241774999919, 50.524444984000063 ], [ -119.833209524999987, 50.524638913000054 ], [ -119.832919392999912, 50.525091718000027 ], [ -119.832913069999961, 50.525199602000065 ], [ -119.833011848999917, 50.52529529600011 ], [ -119.833171594999925, 50.525349272000021 ], [ -119.834002172999959, 50.525386433000023 ], [ -119.834250875999913, 50.525359668000085 ], [ -119.834634567999927, 50.525236701000068 ], [ -119.834845692, 50.525225884000101 ], [ -119.83517961799997, 50.525269700000088 ], [ -119.83529593399993, 50.52491724900004 ], [ -119.835297210999968, 50.524885180000119 ], [ -119.835297996999913, 50.524865677000079 ], [ -119.835354602999985, 50.523445974000083 ], [ -119.835183195999917, 50.522836696000041 ], [ -119.834773974999976, 50.52197606600005 ], [ -119.834768955999962, 50.521965440000052 ], [ -119.834537919999974, 50.521479583000023 ], [ -119.834335115999963, 50.520737803000024 ], [ -119.83452827699989, 50.518572632000094 ], [ -119.83453285399996, 50.518521192000073 ], [ -119.834401044999936, 50.518173314000137 ], [ -119.834244109999958, 50.517759158000032 ], [ -119.83422356600002, 50.517704919000089 ], [ -119.834033712999954, 50.517203785000063 ], [ -119.833778208999945, 50.514972258000086 ], [ -119.833735373999929, 50.51459793100004 ], [ -119.833722903999984, 50.514245525000042 ], [ -119.833713062999948, 50.513965376000087 ], [ -119.833761657, 50.513476567000112 ], [ -119.833862914999884, 50.513152049000013 ], [ -119.834195215999969, 50.512086955000065 ], [ -119.834466333, 50.511217993000052 ], [ -119.834686047999952, 50.511230213000047 ], [ -119.834664386, 50.511263303000106 ], [ -119.834382809999951, 50.512196097000142 ], [ -119.834305889999911, 50.512584906000072 ], [ -119.834474289999974, 50.512805706000087 ], [ -119.83458660699992, 50.513019295000078 ], [ -119.83455079499997, 50.513362492000063 ], [ -119.833985488999986, 50.513806908000056 ], [ -119.833976622999955, 50.514131604000035 ], [ -119.834035898999971, 50.514436403000062 ], [ -119.834671310999951, 50.514887893000065 ], [ -119.834751515, 50.515290891000063 ], [ -119.834323009999963, 50.515679686000041 ], [ -119.834213213999973, 50.515960297000056 ], [ -119.834230801999979, 50.516725096000037 ], [ -119.834536617999973, 50.517616708000098 ], [ -119.835705098999966, 50.518740389000051 ], [ -119.836183314999914, 50.518926907000036 ], [ -119.837087188999973, 50.51893970600004 ], [ -119.837656303999935, 50.518791606 ], [ -119.838368389999957, 50.518441303000053 ], [ -119.838644908, 50.518129391000045 ], [ -119.839257506999942, 50.517961297000106 ], [ -119.839867791999936, 50.517568208000078 ], [ -119.840243996000012, 50.517487006000074 ], [ -119.840503614999975, 50.517336100000144 ], [ -119.840840179999944, 50.517301898000028 ], [ -119.841554596999927, 50.517239203000059 ], [ -119.842401702999936, 50.516525686000115 ], [ -119.8423791539999, 50.516381901000088 ], [ -119.844654510999987, 50.516508241000039 ], [ -119.844397355999902, 50.518386909000085 ], [ -119.845127322999971, 50.518427431000106 ], [ -119.845087120999892, 50.518721161000045 ], [ -119.84558002899999, 50.518748520000116 ], [ -119.84556523399999, 50.518856627000027 ], [ -119.845637134999947, 50.518860618000062 ], [ -119.845390042999938, 50.520665965000013 ], [ -119.846680723999924, 50.52073759400011 ], [ -119.846591867999962, 50.521386910000096 ], [ -119.846464013999977, 50.522321166000076 ], [ -119.846893050999967, 50.522344973000067 ], [ -119.846923561, 50.522122008000089 ], [ -119.847398730999927, 50.522148372000082 ], [ -119.84744472599999, 50.521812228000051 ], [ -119.847508980999976, 50.521342620000041 ], [ -119.853131352999952, 50.52165441800004 ], [ -119.853062429999952, 50.52215858400006 ], [ -119.853439976999979, 50.522179510000079 ], [ -119.853401089, 50.522463999000102 ], [ -119.852950531999923, 50.525759732000054 ], [ -119.852943277999955, 50.525759331000096 ], [ -119.852556075999971, 50.528591235000121 ], [ -119.85200947700001, 50.528560937000066 ], [ -119.851793432, 50.5301407480001 ], [ -119.846170010999984, 50.529828886000132 ], [ -119.846350529999924, 50.52851007500005 ], [ -119.846074997999892, 50.52849478600011 ], [ -119.846083746999966, 50.528430868000058 ], [ -119.8460318, 50.52842798500005 ], [ -119.846033746999922, 50.528413764000071 ], [ -119.843063303999941, 50.52824890400003 ], [ -119.843145232999973, 50.527650659000123 ], [ -119.84292984, 50.527638702000054 ], [ -119.842986500999984, 50.527224969 ], [ -119.842396051999941, 50.527192188000065 ], [ -119.842441198999964, 50.526862547000036 ], [ -119.842364472999947, 50.526858287000088 ], [ -119.842451274999974, 50.526224508000041 ], [ -119.84178247899996, 50.526187374000116 ], [ -119.84172119599999, 50.526634790000081 ], [ -119.840842857, 50.526586014000124 ], [ -119.8408031699999, 50.526875710000063 ], [ -119.840792613999923, 50.526875124000064 ], [ -119.840582348999988, 50.528409912000079 ], [ -119.840032026999936, 50.528379348000087 ], [ -119.839996035999945, 50.528642025000082 ], [ -119.838347428999938, 50.528550447000079 ], [ -119.837908723999959, 50.531751166000092 ], [ -119.837428197999913, 50.531724468000093 ], [ -119.832285196999948, 50.531438602000101 ] ], [ [ -119.839156896999953, 50.520659053000053 ], [ -119.839231769999913, 50.520112578000052 ], [ -119.836624555999947, 50.519967692000122 ], [ -119.836549651999931, 50.520514166000162 ], [ -119.839156896999953, 50.520659053000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DEA55C71E0B5EC0E7AE809D764E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169830803999972, 50.612043510000049 ], [ -120.169954041, 50.611094795000092 ], [ -120.175589804999987, 50.611390250000049 ], [ -120.175534426999931, 50.611816982000043 ], [ -120.179136216999936, 50.612005655000104 ], [ -120.178880669999955, 50.613975978000049 ], [ -120.178081507999948, 50.614056289000089 ], [ -120.177581325999967, 50.61421465700009 ], [ -120.176670801999961, 50.614502884000082 ], [ -120.176615489999975, 50.614520387000034 ], [ -120.17243702, 50.614689006000013 ], [ -120.171903086999976, 50.614661606 ], [ -120.171720175999951, 50.614652213000056 ], [ -120.17082339699999, 50.614606206000097 ], [ -120.170242185999925, 50.614526103000081 ], [ -120.169682699999925, 50.614388595000072 ], [ -120.169645932999913, 50.614373214000103 ], [ -120.168962034999964, 50.614087077000114 ], [ -120.169231617999955, 50.612012080000085 ], [ -120.169830803999972, 50.612043510000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "223", "sL_BldgLoss": "223", "sL_StrLoss": "223", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000032878B79E9FE5DC0FFC5D8AE75484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.980562149999969, 50.564304016000087 ], [ -119.980602802999911, 50.564000597000081 ], [ -119.982967844, 50.564128809000103 ], [ -119.986231411999938, 50.564305647000019 ], [ -119.986219545999973, 50.564394294000067 ], [ -119.98622791799994, 50.564394747000065 ], [ -119.986221760999953, 50.564440738000073 ], [ -119.986482112999965, 50.564454841000028 ], [ -119.986002786, 50.568035458000033 ], [ -119.985152454999977, 50.567989394000044 ], [ -119.98512985499994, 50.568158177000115 ], [ -119.979500772999955, 50.567853073000073 ], [ -119.979554955, 50.567448802000044 ], [ -119.979980615999949, 50.564272482000078 ], [ -119.980562149999969, 50.564304016000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999986862343319", "sL_AssetLoss": "223.02303", "sL_BldgLoss": "223.0201", "sL_StrLoss": "223", "sL_NStrLoss": "0.0201", "sL_ContLoss": "0.00293", "geom_point": "0101000020E6100000128A085A5C045EC0C41FA8C774484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.065045407999918, 50.568817868000032 ], [ -120.065042767999969, 50.568777179000058 ], [ -120.064701908999936, 50.568768583000086 ], [ -120.064715085000017, 50.568556698000044 ], [ -120.064604900999939, 50.568559600000079 ], [ -120.064590672999927, 50.568340461000027 ], [ -120.064552424999988, 50.56775137400011 ], [ -120.065398434999949, 50.567729089000103 ], [ -120.065380938999951, 50.567459681000088 ], [ -120.065631142999919, 50.567453090000093 ], [ -120.065639882999903, 50.567312467000122 ], [ -120.06546524, 50.567303132000085 ], [ -120.065938240999941, 50.563722172000091 ], [ -120.071567387999963, 50.564022906000048 ], [ -120.07146686499999, 50.564784698000096 ], [ -120.071094830999968, 50.567603889000068 ], [ -120.067921653, 50.56743440000011 ], [ -120.067953969999948, 50.567931609000091 ], [ -120.067719613999927, 50.567937788000066 ], [ -120.067680105999955, 50.56857380200006 ], [ -120.06683397799999, 50.568552478000065 ], [ -120.066817235000016, 50.568821920000104 ], [ -120.065833233999967, 50.56879711400007 ], [ -120.065045407999918, 50.568817868000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "127.6", "sL_BldgLoss": "127.6", "sL_StrLoss": "127.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E46CD7D77CF65DC0D01B38B151444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.848802828999951, 50.531797075000078 ], [ -119.854426513999968, 50.532108803000078 ], [ -119.853937037999941, 50.535688987000128 ], [ -119.848312910999965, 50.535377235000048 ], [ -119.848802828999951, 50.531797075000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "54", "sL_BldgLoss": "54", "sL_StrLoss": "54", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012237465CAFE5DC0926304B762524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.97718689, 50.645041568000053 ], [ -119.977203056999912, 50.644789802000069 ], [ -119.97746665599999, 50.644796645000021 ], [ -119.977464629999957, 50.644764602000038 ], [ -119.978732846999918, 50.644732164000061 ], [ -119.97911230599999, 50.641906145000092 ], [ -119.984750657999939, 50.642211242000052 ], [ -119.984637731999982, 50.643053085000133 ], [ -119.984541723999953, 50.643072361000087 ], [ -119.984346031999962, 50.643122880000092 ], [ -119.984216050999933, 50.643162741000054 ], [ -119.984084745999922, 50.643184276000099 ], [ -119.983952511999931, 50.643188193000114 ], [ -119.983766163999988, 50.643142300000115 ], [ -119.983673021999934, 50.643107465000057 ], [ -119.983606746999939, 50.643069404000052 ], [ -119.983541255999967, 50.643008839000061 ], [ -119.983516273999953, 50.642959751000056 ], [ -119.983478535999922, 50.642889718000049 ], [ -119.983496947, 50.64281756600009 ], [ -119.983514521999908, 50.642759818000037 ], [ -119.983549270999958, 50.642651504000042 ], [ -119.983566011, 50.64260815600003 ], [ -119.983568992999935, 50.6425578590001 ], [ -119.983531663999884, 50.642480583000108 ], [ -119.983293521999926, 50.642484213000053 ], [ -119.983191659999974, 50.642539080000041 ], [ -119.98310788400002, 50.642632504000119 ], [ -119.983092391999932, 50.642719873000054 ], [ -119.98306306899994, 50.642808113000036 ], [ -119.983058383999918, 50.642873278000096 ], [ -119.983041364999934, 50.642949897000094 ], [ -119.983022797999951, 50.643015863000116 ], [ -119.98299347699999, 50.643104104000017 ], [ -119.982991894999913, 50.643190773000057 ], [ -119.982996574999973, 50.643320471000095 ], [ -119.983018461, 50.643471290000065 ], [ -119.983048238999984, 50.643578769000023 ], [ -119.983074930999962, 50.643664707000092 ], [ -119.983156892999915, 50.643836499000038 ], [ -119.983186706999916, 50.643943968000038 ], [ -119.983235405999949, 50.644083574000028 ], [ -119.983268342999907, 50.6442125720001 ], [ -119.983296561999936, 50.644309258000092 ], [ -119.983339089, 50.644405897000077 ], [ -119.983383174999958, 50.64451327100015 ], [ -119.983421120999964, 50.644577782000056 ], [ -119.983446095999966, 50.644750145000017 ], [ -119.98349325599996, 50.64487898100009 ], [ -119.983548665999962, 50.644965082000112 ], [ -119.983591175999962, 50.645061697000131 ], [ -119.983619412999985, 50.645158406000036 ], [ -119.983627234999972, 50.645309658000031 ], [ -119.983641303999917, 50.645406599000111 ], [ -119.983639721999964, 50.645493268000088 ], [ -119.983537101999971, 50.645652113000054 ], [ -119.983144619999933, 50.645360405000091 ], [ -119.982876203999979, 50.645233198000049 ], [ -119.982541097999956, 50.645138409000076 ], [ -119.982321167999913, 50.645110649000081 ], [ -119.982165494999933, 50.645090997000068 ], [ -119.980620354999985, 50.645082580000071 ], [ -119.979363820999978, 50.645075724000044 ], [ -119.978682109, 50.645072004000063 ], [ -119.977533455999975, 50.645264767000072 ], [ -119.977284413999939, 50.645306560000115 ], [ -119.977069704999948, 50.645342597000138 ], [ -119.97664439499998, 50.645337593000122 ], [ -119.97647541799995, 50.645295093000094 ], [ -119.976161912999927, 50.645144704000046 ], [ -119.976077267999983, 50.645069935000095 ], [ -119.976761768999921, 50.64505243800005 ], [ -119.976762039999969, 50.645048216000113 ], [ -119.976843817999963, 50.645050340000111 ], [ -119.97718689, 50.645041568000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "149.6", "sL_BldgLoss": "149.6", "sL_StrLoss": "149.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099C6274B8A045EC055FF7B4B94494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.068601701999938, 50.572887655000066 ], [ -120.074232011999953, 50.573188251000097 ], [ -120.073759570999954, 50.576769205000041 ], [ -120.073285934999973, 50.576743930000127 ], [ -120.073280050999969, 50.576788517000097 ], [ -120.067649295999956, 50.576487874000094 ], [ -120.0681222199999, 50.572906944000088 ], [ -120.068595814, 50.572932242000029 ], [ -120.068601701999938, 50.572887655000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "56.6", "sL_BldgLoss": "56.6", "sL_StrLoss": "56.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9EEFC6899065EC0405454DC3C4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.104459200999941, 50.601126568 ], [ -120.107530901999922, 50.60128949400012 ], [ -120.107370877, 50.602508589000053 ], [ -120.107089829999936, 50.604649472000041 ], [ -120.107060816999962, 50.604870468000065 ], [ -120.106568614999915, 50.604844367000084 ], [ -120.104476686999931, 50.604733409000069 ], [ -120.104330155999975, 50.605849028000058 ], [ -120.09869555799996, 50.605549966000069 ], [ -120.099166316999984, 50.601969032000042 ], [ -120.101750271999919, 50.602106213000091 ], [ -120.101896853999946, 50.600990593000077 ], [ -120.104459200999941, 50.601126568 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.999991848841164", "sL_AssetLoss": "158.014342", "sL_BldgLoss": "158.013054", "sL_StrLoss": "158.000164", "sL_NStrLoss": "0.01289", "sL_ContLoss": "0.001288", "geom_point": "0101000020E610000041AD714F3AFC5DC0D9117FFB574C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.936007561999944, 50.599194656000073 ], [ -119.936396164999948, 50.596317950000156 ], [ -119.938320209999958, 50.596422950000076 ], [ -119.938553763999963, 50.594693296000102 ], [ -119.93980130199999, 50.594761359000124 ], [ -119.93983762, 50.594492325000047 ], [ -119.945469764, 50.59479942600008 ], [ -119.945442444999969, 50.59500198700006 ], [ -119.94578246699993, 50.595020518000084 ], [ -119.945640906999955, 50.596070157000085 ], [ -119.945873235999969, 50.596082818000141 ], [ -119.945587505, 50.598201375000023 ], [ -119.944857315999982, 50.597858337000062 ], [ -119.943822560999962, 50.597463816000115 ], [ -119.942620884999954, 50.59715035200005 ], [ -119.94205262199992, 50.597072474000122 ], [ -119.941975593999956, 50.597072066000067 ], [ -119.94155656, 50.597069781000073 ], [ -119.941067569999944, 50.597140479000082 ], [ -119.9405570699999, 50.597307397000108 ], [ -119.938476769999951, 50.598164108000063 ], [ -119.937932207999935, 50.598552441000038 ], [ -119.937786119999956, 50.598656601000123 ], [ -119.937406690999978, 50.598861321000108 ], [ -119.936935903999967, 50.599006953000121 ], [ -119.936007561999944, 50.599194656000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999991017450044", "sL_AssetLoss": "295.01645", "sL_BldgLoss": "295.0138", "sL_StrLoss": "295", "sL_NStrLoss": "0.0138", "sL_ContLoss": "0.00265", "geom_point": "0101000020E6100000031203132E045EC02F1F20CADD454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.064440151, 50.548871940000048 ], [ -120.06472127499994, 50.546743148000097 ], [ -120.060840876999947, 50.546535546000122 ], [ -120.060887413999964, 50.546183363000097 ], [ -120.060171178999965, 50.546145029000101 ], [ -120.060644378999896, 50.542563999000016 ], [ -120.066270846999956, 50.54286500900011 ], [ -120.066224355999935, 50.543217197000089 ], [ -120.066940547999977, 50.543255491000103 ], [ -120.066659550999958, 50.545384298000045 ], [ -120.070539876999973, 50.545591697000084 ], [ -120.070067431999959, 50.549172756000083 ], [ -120.064440151, 50.548871940000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999997241010013", "sL_AssetLoss": "151.504718", "sL_BldgLoss": "151.5043", "sL_StrLoss": "151.5", "sL_NStrLoss": "0.0043", "sL_ContLoss": "0.000418", "geom_point": "0101000020E6100000F15A958692005EC098601F3A90494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.011802137999936, 50.573064951000042 ], [ -120.01199696899999, 50.573075457000073 ], [ -120.011519579999913, 50.576656147000094 ], [ -120.010375011999955, 50.576594419000045 ], [ -120.005889257999968, 50.576352380000081 ], [ -120.005941296999964, 50.575962441000108 ], [ -120.006367090999944, 50.572771713000137 ], [ -120.011802137999936, 50.573064951000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "153.4", "sL_BldgLoss": "153.4", "sL_StrLoss": "153.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C6E57094D9005EC0AB7F0858484A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.01119107599996, 50.57841692900012 ], [ -120.016333993999964, 50.578694150000054 ], [ -120.015856888999963, 50.582274834 ], [ -120.012315955999966, 50.582083991000076 ], [ -120.010225834999943, 50.581971288000105 ], [ -120.010703382999949, 50.578390628000058 ], [ -120.01119107599996, 50.57841692900012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "119.5", "sL_BldgLoss": "119.5", "sL_StrLoss": "119.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001186E8AD8DFD5DC0D3382FA9B5464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.959199599999948, 50.550475469000055 ], [ -119.964826371999962, 50.550781607 ], [ -119.964345469999927, 50.554362190000049 ], [ -119.95871825299993, 50.554056030000012 ], [ -119.959199599999948, 50.550475469000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "205.7", "sL_BldgLoss": "205.7", "sL_StrLoss": "205.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070BAC040EBFF5DC080A09A9A1D484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.996115461999963, 50.565141535000073 ], [ -119.996120508999965, 50.565103770000093 ], [ -119.995834955999968, 50.565088327000133 ], [ -119.995850387999937, 50.564972854000061 ], [ -119.995246843999951, 50.564940211000064 ], [ -119.995725404, 50.561359541000108 ], [ -120.001353781999953, 50.561663827000139 ], [ -120.001338365999956, 50.561779301000151 ], [ -120.001941871999989, 50.561811911000071 ], [ -120.001936829999977, 50.56184967600008 ], [ -120.002222364999952, 50.561865104000063 ], [ -120.001744317999936, 50.56544580000007 ], [ -119.996115461999963, 50.565141535000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "118", "sL_BldgLoss": "118", "sL_StrLoss": "118", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085A127C8FC055EC0DA925511EE4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.09140332599992, 50.614595482 ], [ -120.097039008999957, 50.614894909000057 ], [ -120.096728628999955, 50.61725438500013 ], [ -120.096567945999965, 50.618475780000026 ], [ -120.095737353999937, 50.618431668 ], [ -120.095704020999946, 50.618684999 ], [ -120.090067871999949, 50.618385505000084 ], [ -120.090355904999953, 50.616198457000095 ], [ -120.090539451999931, 50.614804662000047 ], [ -120.09136997199991, 50.614848812000133 ], [ -120.09140332599992, 50.614595482 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "195.5", "sL_BldgLoss": "195.5", "sL_StrLoss": "195.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A40778B174F65DC0693DF86004454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.849489510999945, 50.541922553000148 ], [ -119.849499206999965, 50.541851699000098 ], [ -119.849314308999936, 50.541841449000067 ], [ -119.849560636999982, 50.540041417000026 ], [ -119.845361604999951, 50.539808544000053 ], [ -119.845755206999954, 50.53693395300013 ], [ -119.845851804999924, 50.536228417000068 ], [ -119.851476021999957, 50.536540294000098 ], [ -119.851319310999983, 50.537685921000083 ], [ -119.855718762999942, 50.53792968000009 ], [ -119.855700208999963, 50.538065408000101 ], [ -119.855842267999975, 50.538073276000041 ], [ -119.855803467999962, 50.538357124000107 ], [ -119.856049879999972, 50.538370771000103 ], [ -119.855560465999943, 50.541950934000091 ], [ -119.855156259999944, 50.541928547000076 ], [ -119.855114462999921, 50.542234244000035 ], [ -119.854626203999928, 50.542207199000096 ], [ -119.849489510999945, 50.541922553000148 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "202.3", "sL_BldgLoss": "202.3", "sL_StrLoss": "202.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000201DE4166F025EC0AF835A3ED8534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.033623899999924, 50.657106639000084 ], [ -120.034075653999977, 50.653712044000066 ], [ -120.037939527, 50.653919178000116 ], [ -120.037962884999928, 50.653743534000057 ], [ -120.038602483999981, 50.653777809000147 ], [ -120.038609980999937, 50.653658669000038 ], [ -120.038620895999941, 50.653485231000019 ], [ -120.038640403999935, 50.653175229000063 ], [ -120.038661131999959, 50.652845844000112 ], [ -120.039508750999971, 50.652867399000066 ], [ -120.039518499999957, 50.652712416000057 ], [ -120.039511666999942, 50.652606617000082 ], [ -120.039525178999909, 50.652606265000045 ], [ -120.03952569899991, 50.652597968000073 ], [ -120.039686454999966, 50.652602055000031 ], [ -120.04078299599999, 50.652573422000046 ], [ -120.040765586999925, 50.652304011000105 ], [ -120.041613132999913, 50.652281874000046 ], [ -120.041560895999936, 50.651473642000028 ], [ -120.041719060999981, 50.65146951000002 ], [ -120.041763293999935, 50.650765806000052 ], [ -120.041877789999916, 50.650768715000048 ], [ -120.04189247699999, 50.65115407300005 ], [ -120.041892748999928, 50.651174155000064 ], [ -120.04191197499992, 50.652678690000073 ], [ -120.04151249200001, 50.653588318000047 ], [ -120.041439673999946, 50.653754145000043 ], [ -120.041467731999916, 50.654086986000046 ], [ -120.04147062, 50.654132879000066 ], [ -120.041535972999895, 50.655164483000114 ], [ -120.041618386999971, 50.656465353000094 ], [ -120.041618458999949, 50.656465932000145 ], [ -120.041651447000021, 50.656618327000075 ], [ -120.037128223999929, 50.657069504000091 ], [ -120.036153813999988, 50.657072396000068 ], [ -120.034350208999967, 50.65694419000004 ], [ -120.033906894999959, 50.657005507000136 ], [ -120.033623899999924, 50.657106639000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000358E60FC170C5EC04D821696684A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.188111532999969, 50.583260761000119 ], [ -120.188233476999969, 50.582318378000117 ], [ -120.187705480999981, 50.582290751000102 ], [ -120.188168915999967, 50.578709342000089 ], [ -120.18853803699993, 50.578728656000095 ], [ -120.188676593999915, 50.578848044 ], [ -120.188741362999977, 50.578947475000049 ], [ -120.189196511999967, 50.579376048000057 ], [ -120.189665150999986, 50.580054552000028 ], [ -120.189906052999945, 50.580282496000066 ], [ -120.190109331999963, 50.580429352000117 ], [ -120.190306293999953, 50.580539712000075 ], [ -120.190051184999945, 50.581119171000083 ], [ -120.189944273999942, 50.581474080000071 ], [ -120.190082383999965, 50.581973468000093 ], [ -120.19013477, 50.582905577000083 ], [ -120.190399380999949, 50.5833367870001 ], [ -120.190455652999987, 50.583383382000086 ], [ -120.188111532999969, 50.583260761000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "214.1", "sL_BldgLoss": "214.1", "sL_StrLoss": "214.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F399053D48F85DC0AEE11A86AC464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.876960663999938, 50.554354883000059 ], [ -119.87698719699999, 50.554160171000049 ], [ -119.876224051999941, 50.554118064000043 ], [ -119.8762989799999, 50.553568293000076 ], [ -119.876059183999985, 50.553555060000043 ], [ -119.876085535999962, 50.553361709000058 ], [ -119.875625983999939, 50.553336349000055 ], [ -119.875651354999931, 50.553150207000066 ], [ -119.87529318599999, 50.553130440000075 ], [ -119.875526324999939, 50.551419976000012 ], [ -119.875781153, 50.549550239000034 ], [ -119.881407238999941, 50.549860597000048 ], [ -119.881381893999944, 50.550046741000088 ], [ -119.88174004199999, 50.550066488000077 ], [ -119.881713715999965, 50.550259842000116 ], [ -119.882173241, 50.550285177000092 ], [ -119.882150252999978, 50.550454019000071 ], [ -119.882653536999925, 50.550481764000025 ], [ -119.88258895199999, 50.550956188000043 ], [ -119.883611238999933, 50.551012538000109 ], [ -119.883123877999964, 50.554592767000038 ], [ -119.882601139999935, 50.554563955000042 ], [ -119.882587357999981, 50.554665179999986 ], [ -119.88095730299996, 50.554575317000079 ], [ -119.876960663999938, 50.554354883000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3912583", "BldgCostT": "2698333", "sL_LossRatio": "1", "sL_AssetLoss": "276", "sL_BldgLoss": "276", "sL_StrLoss": "276", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004304980971FA5DC06CADF566D04A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.909434698, 50.586060081 ], [ -119.9084805299999, 50.58517998300001 ], [ -119.907823513999944, 50.584461643000026 ], [ -119.907822098999972, 50.584460096000022 ], [ -119.907328326999917, 50.5839202270001 ], [ -119.906854744999976, 50.583648074000095 ], [ -119.906637432999986, 50.583566008000091 ], [ -119.906630965999923, 50.583563580000025 ], [ -119.906550033999949, 50.583533014000174 ], [ -119.906530026999945, 50.583525454000053 ], [ -119.906211850999981, 50.583405298000095 ], [ -119.906218906999982, 50.583353300000077 ], [ -119.906320423999929, 50.58260525500009 ], [ -119.906147549999943, 50.582609572000074 ], [ -119.906135461999952, 50.582413351000049 ], [ -119.906130951999955, 50.582340125000052 ], [ -119.90570775399999, 50.582350691000038 ], [ -119.905702939999912, 50.582272507 ], [ -119.904263411999949, 50.582193501000049 ], [ -119.903674388999946, 50.581753957000089 ], [ -119.902694499999924, 50.58129440600004 ], [ -119.901564589, 50.580864429000066 ], [ -119.901298028999989, 50.580815167000075 ], [ -119.901363409999959, 50.580333760000038 ], [ -119.901620387999955, 50.578441504000075 ], [ -119.903659022999975, 50.5785534440001 ], [ -119.90725026299998, 50.578750544000073 ], [ -119.907184783, 50.579233162000037 ], [ -119.906949072999936, 50.580970386000089 ], [ -119.907317522999946, 50.580961183000092 ], [ -119.907356884999928, 50.581599941000015 ], [ -119.91209379799993, 50.581859718000068 ], [ -119.912023354999931, 50.582379295000038 ], [ -119.9120475349999, 50.582380620000116 ], [ -119.911816657999978, 50.584083460000059 ], [ -119.91336060899999, 50.584168087000066 ], [ -119.913346024999925, 50.58427567000011 ], [ -119.91348131299999, 50.584283084000099 ], [ -119.913444861999963, 50.584551982000043 ], [ -119.916136193999975, 50.584699444000101 ], [ -119.916137303999946, 50.584691255000067 ], [ -119.917622444999935, 50.5847726000001 ], [ -119.917635139999987, 50.584678890000056 ], [ -119.92326590499999, 50.584987117000026 ], [ -119.923119816999957, 50.5860665330001 ], [ -119.923631165999922, 50.586094509000105 ], [ -119.923615606999974, 50.586209486000058 ], [ -119.923820667999905, 50.586220705000095 ], [ -119.92378389199996, 50.586492464000024 ], [ -119.92403677899992, 50.586506299000064 ], [ -119.923552249999915, 50.590086550000173 ], [ -119.922705513, 50.590040226000028 ], [ -119.922658128999913, 50.590390270000078 ], [ -119.922252801999932, 50.590368093000123 ], [ -119.922127569999986, 50.590361241 ], [ -119.919409980999959, 50.588443126000094 ], [ -119.918999107999937, 50.588291788000078 ], [ -119.918910153999946, 50.5882590370001 ], [ -119.918901446999939, 50.588255826000058 ], [ -119.917714031999935, 50.58781856600006 ], [ -119.917295571999929, 50.587714472000123 ], [ -119.91579996199998, 50.587542393000085 ], [ -119.914286203999936, 50.587179939000052 ], [ -119.91289305399998, 50.586963843000106 ], [ -119.911616020999958, 50.586654881000072 ], [ -119.910172229999944, 50.586404407 ], [ -119.909794458999968, 50.58626196000003 ], [ -119.909434698, 50.586060081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "128.9", "sL_BldgLoss": "128.9", "sL_StrLoss": "128.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007082672976015EC0D7B15B1572484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.020260790999956, 50.564039615000127 ], [ -120.025889670999959, 50.564342659000097 ], [ -120.025413478999951, 50.567923445000112 ], [ -120.019784154999954, 50.567620378000129 ], [ -120.020260790999956, 50.564039615000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "199.1", "sL_BldgLoss": "199.1", "sL_StrLoss": "199.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A974C99BF0FD5DC039C72DA4CB4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.96600721, 50.621930560000045 ], [ -119.96667098599994, 50.621917293000102 ], [ -119.969915812999943, 50.622139743000105 ], [ -119.969926143999899, 50.62214046499999 ], [ -119.970504114, 50.622180062000055 ], [ -119.972967571999959, 50.622348873000114 ], [ -119.972652653999944, 50.624692933000112 ], [ -119.972193797000017, 50.624668055000036 ], [ -119.972172139999927, 50.624829245000093 ], [ -119.969077543999973, 50.624661409000119 ], [ -119.969056504999969, 50.624817917000016 ], [ -119.968521835999937, 50.624788910000035 ], [ -119.968469590999959, 50.624786076000142 ], [ -119.968455882999976, 50.624888031000104 ], [ -119.96309477599999, 50.624597035000129 ], [ -119.962819813999943, 50.624582103000073 ], [ -119.963169000999969, 50.621987205000011 ], [ -119.965348253999977, 50.621943716000033 ], [ -119.965483193999944, 50.621941018000051 ], [ -119.96597759399998, 50.621931154000087 ], [ -119.96600721, 50.621930560000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "0.999987531128578", "sL_AssetLoss": "74.826339", "sL_BldgLoss": "74.825406", "sL_StrLoss": "74.800506", "sL_NStrLoss": "0.0249", "sL_ContLoss": "0.000933", "geom_point": "0101000020E6100000210A032286045EC0DAF3881310474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.068552750999942, 50.552845506000033 ], [ -120.074180556000016, 50.553146112000015 ], [ -120.073708320999941, 50.556727154000015 ], [ -120.072929956999971, 50.556685595000012 ], [ -120.072821128, 50.557510673000117 ], [ -120.06719278599999, 50.55721 ], [ -120.067665543999979, 50.553628988000085 ], [ -120.06844385, 50.553670584000031 ], [ -120.068552750999942, 50.552845506000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "118.4", "sL_BldgLoss": "118.4", "sL_StrLoss": "118.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E3B29BC59F75DC047D68EA080454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.860787355999946, 50.545821056000094 ], [ -119.860789342999936, 50.545806512000091 ], [ -119.860618350999985, 50.5457970510001 ], [ -119.860626981999985, 50.545733872 ], [ -119.860480151999965, 50.545725748000066 ], [ -119.860969215999987, 50.542145580000053 ], [ -119.86175199399996, 50.542188891000144 ], [ -119.861954854999937, 50.540703499000088 ], [ -119.861989263999988, 50.540705402000064 ], [ -119.862050375999942, 50.540257901000096 ], [ -119.862199645999908, 50.540266159000019 ], [ -119.862214674999962, 50.540156104000069 ], [ -119.863099339999962, 50.540205044000103 ], [ -119.863140548999922, 50.539903225000096 ], [ -119.868765344999957, 50.540214226000082 ], [ -119.868707213999983, 50.54064036500003 ], [ -119.868798771999934, 50.540645426000069 ], [ -119.868794661999985, 50.540675552000039 ], [ -119.869041967000015, 50.540689219000093 ], [ -119.868966974999964, 50.541238973000091 ], [ -119.869206598999938, 50.541252215000064 ], [ -119.868718197999954, 50.544832423000074 ], [ -119.868434268999962, 50.544816733000047 ], [ -119.868431185999967, 50.544839330000109 ], [ -119.866603109999971, 50.544738290000026 ], [ -119.866412874, 50.546132173000117 ], [ -119.860787355999946, 50.545821056000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "198.5", "sL_BldgLoss": "198.5", "sL_StrLoss": "198.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1E489D680FB5DC04494C4CC9D4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.926923620999929, 50.592603254000046 ], [ -119.927071913999953, 50.591507019000034 ], [ -119.926619347999974, 50.591482275000082 ], [ -119.926623566999979, 50.591451083000074 ], [ -119.926502642999978, 50.591444471000031 ], [ -119.926986953999958, 50.587864213000053 ], [ -119.932618180999938, 50.588171966000047 ], [ -119.932613964999987, 50.588203159000088 ], [ -119.93273488100003, 50.588209763000101 ], [ -119.932484941999945, 50.590059242000095 ], [ -119.932937498999976, 50.590083961000097 ], [ -119.932453638999917, 50.593664236000102 ], [ -119.928521834999955, 50.593449410000069 ], [ -119.926821725999943, 50.593356476000075 ], [ -119.926923620999929, 50.592603254000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "0.999976227996255", "sL_AssetLoss": "297.366603", "sL_BldgLoss": "297.359534", "sL_StrLoss": "297.300494", "sL_NStrLoss": "0.05904", "sL_ContLoss": "0.007069", "geom_point": "0101000020E6100000F380689CBCFE5DC0949B6EFAAF494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.978470396999967, 50.578743723000095 ], [ -119.978735291999953, 50.576767987000061 ], [ -119.974818312999929, 50.576555527000018 ], [ -119.974940688999979, 50.575643311000135 ], [ -119.97529862, 50.57297499500006 ], [ -119.978825181999966, 50.573166285000141 ], [ -119.978850464999965, 50.572977677000033 ], [ -119.984480184999967, 50.573282813000112 ], [ -119.984476238999932, 50.573312272000081 ], [ -119.984786976999942, 50.573329106000124 ], [ -119.98451028, 50.575395114000074 ], [ -119.984645022999956, 50.575402413000035 ], [ -119.984597415999986, 50.575757866000103 ], [ -119.984165432999944, 50.578982975000024 ], [ -119.98411006299996, 50.578979976000028 ], [ -119.984100832999957, 50.579048876000058 ], [ -119.978470396999967, 50.578743723000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999996327155446", "sL_AssetLoss": "71.3071289", "sL_BldgLoss": "71.306867", "sL_StrLoss": "71.300117", "sL_NStrLoss": "0.00675", "sL_ContLoss": "0.0002619", "geom_point": "0101000020E6100000D028C02493015EC0E1DF563060494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.022029199999963, 50.571306072000077 ], [ -120.027659000999961, 50.571609025000029 ], [ -120.027271373999938, 50.574524248000081 ], [ -120.027182871999941, 50.575189788000102 ], [ -120.021552627999981, 50.574886813000091 ], [ -120.021726981, 50.573576872000068 ], [ -120.022029199999963, 50.571306072000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "199.1", "sL_BldgLoss": "199.1", "sL_StrLoss": "199.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000053F6334843FD5DC0A9C3C89AAA4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.953882497999984, 50.624419558000021 ], [ -119.95436498399998, 50.62083932400008 ], [ -119.954744287999944, 50.620859952000082 ], [ -119.955016769999986, 50.618837634000066 ], [ -119.955733634999945, 50.618876617000119 ], [ -119.955738495999952, 50.618840533000053 ], [ -119.955959835999963, 50.618959690000061 ], [ -119.956247184999924, 50.619211569000136 ], [ -119.957524889999902, 50.620331403000066 ], [ -119.957566414, 50.620376760000134 ], [ -119.957714110999945, 50.620538202000013 ], [ -119.957917174999977, 50.620955796000061 ], [ -119.957920684999948, 50.620963 ], [ -119.958160885, 50.62145691000007 ], [ -119.958270897999938, 50.62155760800006 ], [ -119.958421285, 50.621600003000012 ], [ -119.959741884999957, 50.621446412000104 ], [ -119.960297093999912, 50.62142331200004 ], [ -119.960809383999958, 50.621465597000075 ], [ -119.961973608, 50.621696276000108 ], [ -119.961863660999924, 50.622513188000035 ], [ -119.960927527999928, 50.622462336000119 ], [ -119.960918822999957, 50.622527010000063 ], [ -119.96066890900002, 50.622513433000044 ], [ -119.96038052099999, 50.62465561700008 ], [ -119.959534146999985, 50.624609633000048 ], [ -119.959518487999958, 50.624725938000054 ], [ -119.953882497999984, 50.624419558000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5879750", "BldgCostT": "4055000", "sL_LossRatio": "1", "sL_AssetLoss": "530", "sL_BldgLoss": "530", "sL_StrLoss": "530", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000888FBA6392FD5DC0A5C7A5E0DF4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.967574200999977, 50.613068405000057 ], [ -119.965368637999958, 50.612562906000058 ], [ -119.964991771999934, 50.61247655600009 ], [ -119.96443441699995, 50.612348796000092 ], [ -119.963311792999917, 50.612044409000084 ], [ -119.962762469000012, 50.611859901000031 ], [ -119.962788290999967, 50.611667967000123 ], [ -119.962075815999981, 50.611629262000079 ], [ -119.958716596000031, 50.61050086400008 ], [ -119.958375398999948, 50.610318885000048 ], [ -119.958112660999959, 50.610178723000047 ], [ -119.957886557999956, 50.610058119000016 ], [ -119.957753879999956, 50.609922470000114 ], [ -119.957693744999958, 50.609860938000025 ], [ -119.957661481999963, 50.609827974000069 ], [ -119.957290088999983, 50.609448165000117 ], [ -119.957184431999906, 50.609340113 ], [ -119.95626254099993, 50.607757229000043 ], [ -119.956058585999955, 50.607568719000042 ], [ -119.955393957, 50.606954336000094 ], [ -119.95535506399996, 50.606918366000052 ], [ -119.954659430999982, 50.606275331000091 ], [ -119.954420874999968, 50.606054792000052 ], [ -119.954231260999933, 50.605879519000084 ], [ -119.95372869199997, 50.605513150000021 ], [ -119.95245012299992, 50.604927535000115 ], [ -119.952278880999955, 50.604849101000127 ], [ -119.951846811999928, 50.604563576000054 ], [ -119.950985319999958, 50.603994246000127 ], [ -119.950496982999979, 50.603635115000031 ], [ -119.950621483999953, 50.602711395000028 ], [ -119.951475444999986, 50.602757884000063 ], [ -119.956254729999955, 50.60301794700009 ], [ -119.956222996999941, 50.603253612000053 ], [ -119.956462539999961, 50.60326664100009 ], [ -119.956434606999892, 50.603474084000077 ], [ -119.956667246999984, 50.603486737000054 ], [ -119.956594326999934, 50.604028301000042 ], [ -119.957784147999973, 50.604093006000049 ], [ -119.957782468999966, 50.604105486 ], [ -119.95863762099999, 50.604151984000069 ], [ -119.958483171999916, 50.60529938300003 ], [ -119.959066085999979, 50.605331075000052 ], [ -119.959046932, 50.605473375000095 ], [ -119.95935398599994, 50.605490067000069 ], [ -119.959343729999929, 50.605566261000028 ], [ -119.959389788999943, 50.605568766000026 ], [ -119.95934834799999, 50.60587667100004 ], [ -119.95961490399992, 50.605891160000112 ], [ -119.95961459499992, 50.605893446000081 ], [ -119.959397977999927, 50.60750287700003 ], [ -119.960386117999974, 50.607556586000101 ], [ -119.960600318, 50.605964870000058 ], [ -119.960615271999956, 50.60585373300006 ], [ -119.960979486, 50.605873527 ], [ -119.960998361999913, 50.605733242000106 ], [ -119.961894227999977, 50.605781925000102 ], [ -119.966632058999963, 50.606039269000078 ], [ -119.966278281999948, 50.608670769000049 ], [ -119.970364815, 50.608892571000084 ], [ -119.970316132999983, 50.609254912000047 ], [ -119.970355940999923, 50.609257072000069 ], [ -119.970161379000032, 50.610705112000069 ], [ -119.970047584999989, 50.611551981000034 ], [ -119.970023824999913, 50.61172881100002 ], [ -119.97208503199991, 50.611840627000092 ], [ -119.972131152999964, 50.6118431290001 ], [ -119.972129691999939, 50.611854002000065 ], [ -119.97211143499996, 50.611989925000024 ], [ -119.973729708999969, 50.612077685000052 ], [ -119.973581836999969, 50.613178790000127 ], [ -119.972791989999976, 50.613117898000063 ], [ -119.969850120999965, 50.613258613000035 ], [ -119.969483560999961, 50.613220363000011 ], [ -119.968985286999953, 50.613168391000045 ], [ -119.968034064999983, 50.613100990000099 ], [ -119.967574200999977, 50.613068405000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "330", "sL_BldgLoss": "330", "sL_StrLoss": "330", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070502DE8DE045EC08319D7E86A514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.080540690999939, 50.641489843000038 ], [ -120.080654769999953, 50.639650052000064 ], [ -120.075926027999927, 50.639398277000154 ], [ -120.07611505599999, 50.637967149000055 ], [ -120.073002229999986, 50.637801299000088 ], [ -120.07304943299998, 50.637444099000028 ], [ -120.070189061999955, 50.637291623000067 ], [ -120.070192404, 50.637266354000047 ], [ -120.070662423999963, 50.633710945000047 ], [ -120.071273799999972, 50.633743541000058 ], [ -120.071293701999977, 50.633592960000051 ], [ -120.076931631999969, 50.633893397000165 ], [ -120.076864579999921, 50.634401183000094 ], [ -120.077073560999963, 50.634412314000038 ], [ -120.077305095999947, 50.632658797000033 ], [ -120.081355123999955, 50.632874431000062 ], [ -120.081340020999946, 50.633357631000109 ], [ -120.081328615999951, 50.634594609000033 ], [ -120.079092303999943, 50.634472966 ], [ -120.079014577999899, 50.634467130000111 ], [ -120.07842907699991, 50.634425801000056 ], [ -120.078446582000012, 50.634950384000057 ], [ -120.078481577999952, 50.636404099000082 ], [ -120.079005822999974, 50.636433907000026 ], [ -120.079027502999978, 50.636814023000106 ], [ -120.078949435999974, 50.637019501000054 ], [ -120.081059300999954, 50.637127846000091 ], [ -120.080670829999931, 50.641493105000052 ], [ -120.080540690999939, 50.641489843000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.99997943364671", "sL_AssetLoss": "82.124428", "sL_BldgLoss": "82.122739", "sL_StrLoss": "82.100369", "sL_NStrLoss": "0.02237", "sL_ContLoss": "0.001689", "geom_point": "0101000020E6100000EB5FAB6775055EC0BB9F6C2D40484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.082026833, 50.565782870000085 ], [ -120.082313464999913, 50.563606741000036 ], [ -120.082343114999944, 50.563615803000097 ], [ -120.082711519999947, 50.563607207000075 ], [ -120.083675690999925, 50.563308107000125 ], [ -120.085316795999958, 50.563043196000073 ], [ -120.085894605999925, 50.562625909000069 ], [ -120.085960842999924, 50.562459658000108 ], [ -120.088117985999986, 50.562574549000033 ], [ -120.08764676, 50.566155608000081 ], [ -120.082277720999954, 50.565869572000075 ], [ -120.082017240999932, 50.565855689000053 ], [ -120.082026833, 50.565782870000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "138", "sL_BldgLoss": "138", "sL_StrLoss": "138", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E30E2772B9FF5DC0C71E2D1035504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.994758605999934, 50.624765713000087 ], [ -119.998751476999956, 50.624981324000082 ], [ -119.998497156999946, 50.626882402000028 ], [ -119.998288628999887, 50.628441045000017 ], [ -119.99827248199999, 50.62856173200008 ], [ -119.992635750000019, 50.628257314000052 ], [ -119.99311519099993, 50.624676928000042 ], [ -119.994297161999967, 50.624740786000096 ], [ -119.994758605999934, 50.624765713000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "249", "sL_BldgLoss": "249", "sL_StrLoss": "249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000250579EACFFF5DC08F1B3C1B8B454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.991840340999985, 50.545442956000059 ], [ -119.991861695999916, 50.545283205000061 ], [ -119.991700046999966, 50.545274452000072 ], [ -119.992178679999967, 50.541693712000033 ], [ -119.995846395999976, 50.541892241000035 ], [ -119.995994466999932, 50.540783698000062 ], [ -120.001620278999965, 50.541087979000054 ], [ -120.001593830999965, 50.541286169000067 ], [ -120.002407566999949, 50.541330158000051 ], [ -120.001929751999981, 50.544910943000069 ], [ -120.001361676, 50.54488023600004 ], [ -120.001355626999953, 50.544925557000099 ], [ -119.998443145999943, 50.544768074000096 ], [ -119.998314842999903, 50.545728926000073 ], [ -119.997791284999977, 50.545700608000033 ], [ -119.997783120999927, 50.545761738000053 ], [ -119.997467080999954, 50.545744643000042 ], [ -119.997466705999955, 50.545747445000089 ], [ -119.991840340999985, 50.545442956000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "56.5", "sL_BldgLoss": "56.5", "sL_StrLoss": "56.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058E949F44DFC5DC09CD79E7AA04B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.94106416699999, 50.591987246000024 ], [ -119.941033208999926, 50.591490792000101 ], [ -119.94077061499992, 50.591483889000088 ], [ -119.940790029999974, 50.591184585000086 ], [ -119.940590497999921, 50.591189626000137 ], [ -119.940523303999939, 50.590111872000087 ], [ -119.940860163999972, 50.590103361000054 ], [ -119.940875466999927, 50.58986743400002 ], [ -119.94129867299999, 50.589878557000119 ], [ -119.941328201999909, 50.589423237000105 ], [ -119.94128580099999, 50.5887432910001 ], [ -119.94297876499995, 50.588700495000062 ], [ -119.942987683999959, 50.588843462000085 ], [ -119.943061346999954, 50.588845397000043 ], [ -119.943026423999953, 50.58938421700001 ], [ -119.944719234, 50.589428669000057 ], [ -119.944716807999953, 50.589466123000108 ], [ -119.945145431999947, 50.589455278000038 ], [ -119.945189090999946, 50.590154462000072 ], [ -119.94519590499999, 50.590263590000077 ], [ -119.944772650999965, 50.59027430000009 ], [ -119.94478947399989, 50.590543737000068 ], [ -119.942948245999943, 50.590590308000031 ], [ -119.942939110999973, 50.590731264000048 ], [ -119.942515895999946, 50.590720147000155 ], [ -119.94248856899999, 50.591141656000069 ], [ -119.942706812, 50.591136138000088 ], [ -119.942714858, 50.591265111000084 ], [ -119.942904182999911, 50.591270084000122 ], [ -119.942878158999946, 50.591671531000038 ], [ -119.943163700999932, 50.591664312000034 ], [ -119.943214142999963, 50.59247262400001 ], [ -119.942825590999973, 50.592482450000034 ], [ -119.942816859999965, 50.592617132000051 ], [ -119.942393628999923, 50.592606013000072 ], [ -119.942383922, 50.592755724000078 ], [ -119.942401216999883, 50.593032904000069 ], [ -119.942365891999955, 50.593033798000107 ], [ -119.942358693999964, 50.593144832000043 ], [ -119.942270480999952, 50.593142516000043 ], [ -119.940242518999952, 50.593089217000077 ], [ -119.940264179999957, 50.592755375000074 ], [ -119.940217624999974, 50.592008634000116 ], [ -119.94106416699999, 50.591987246000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999988403154183", "sL_AssetLoss": "153.317551", "sL_BldgLoss": "153.315773", "sL_StrLoss": "153.300203", "sL_NStrLoss": "0.01557", "sL_ContLoss": "0.001778", "geom_point": "0101000020E6100000737DC4545FFF5DC0C3B280A631494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.986977340999914, 50.573817766000019 ], [ -119.987010622999946, 50.573569157000044 ], [ -119.986872255000023, 50.573561664000103 ], [ -119.987351571999966, 50.569981067000128 ], [ -119.987701198999943, 50.570000000000121 ], [ -119.98776687899999, 50.569509276000112 ], [ -119.993396224999955, 50.569813962000083 ], [ -119.993318258999949, 50.570397008000072 ], [ -119.993457862999918, 50.570404561000032 ], [ -119.992979027999965, 50.573985182000136 ], [ -119.99262812399995, 50.573966199000097 ], [ -119.99260721899999, 50.574122490000086 ], [ -119.986977340999914, 50.573817766000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "198.9", "sL_BldgLoss": "198.9", "sL_StrLoss": "198.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094050253BCFE5DC03555204898474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.977798127, 50.557582198000027 ], [ -119.977881823999951, 50.556957717000017 ], [ -119.983509532999918, 50.55726290800002 ], [ -119.983446837999907, 50.557731132000107 ], [ -119.983811555, 50.557750900000073 ], [ -119.983569474999953, 50.559558812000049 ], [ -119.983332086999965, 50.561331536000047 ], [ -119.98307888299999, 50.561317811000073 ], [ -119.983041888999978, 50.561594042000131 ], [ -119.982227602999956, 50.561549902000095 ], [ -119.98221745699999, 50.561625661000065 ], [ -119.976589211, 50.561320407000068 ], [ -119.976972071999981, 50.55846449200007 ], [ -119.977069213999982, 50.557739800000022 ], [ -119.977324177999975, 50.55775363500004 ], [ -119.977350412999954, 50.557557906000071 ], [ -119.977798127, 50.557582198000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999987324098271", "sL_AssetLoss": "82.124335", "sL_BldgLoss": "82.123294", "sL_StrLoss": "82.100374", "sL_NStrLoss": "0.02292", "sL_ContLoss": "0.001041", "geom_point": "0101000020E6100000C8B81C8EB2FE5DC0180AF91CAF4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.982697396999981, 50.589536573000082 ], [ -119.983079739999965, 50.589557284000144 ], [ -119.98307253099992, 50.58961107000011 ], [ -119.98259987499992, 50.593137778000056 ], [ -119.982026860999952, 50.593106738000067 ], [ -119.982008354999948, 50.593244791000082 ], [ -119.98186448199999, 50.593236997000119 ], [ -119.981854052999921, 50.593314794000072 ], [ -119.976221846999962, 50.593009533000078 ], [ -119.976702218999975, 50.589429066000044 ], [ -119.976846077999966, 50.589436867000138 ], [ -119.976856514999952, 50.589359070000121 ], [ -119.977429476999959, 50.58939013700008 ], [ -119.977447994999963, 50.589252084000051 ], [ -119.982697396999981, 50.589536573000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "69.1", "sL_BldgLoss": "69.1", "sL_StrLoss": "69.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D36552BFA2035EC0430FE7A7D9454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.055436201999939, 50.547485100000095 ], [ -120.055453306999965, 50.547210709000097 ], [ -120.055172712999962, 50.547218078000071 ], [ -120.055154612999942, 50.546938244000067 ], [ -120.055046927999953, 50.546935518000048 ], [ -120.05509969299996, 50.546089103000057 ], [ -120.055068164999923, 50.54560160500008 ], [ -120.055130183999921, 50.545599976000062 ], [ -120.05513091099999, 50.545588321000082 ], [ -120.05535654199997, 50.545594032000054 ], [ -120.055490974999941, 50.545590502000074 ], [ -120.055473548999942, 50.545321089 ], [ -120.055896355999934, 50.54530998500011 ], [ -120.055878927999984, 50.545040573000094 ], [ -120.056012304, 50.545037069000081 ], [ -120.056026990999925, 50.544801404000019 ], [ -120.056287404, 50.544807993000063 ], [ -120.056249442, 50.544221230000041 ], [ -120.056487040999954, 50.544214989000082 ], [ -120.056500200999949, 50.5440037830001 ], [ -120.056659148999984, 50.544007804000074 ], [ -120.056654807999976, 50.543940712000101 ], [ -120.056928084, 50.543933532000025 ], [ -120.056939824999972, 50.54374504000004 ], [ -120.05820834, 50.543777119000033 ], [ -120.058124448999976, 50.545124320000099 ], [ -120.058001767999883, 50.545121218000062 ], [ -120.058010392999975, 50.545254438000086 ], [ -120.057692307999901, 50.545262798000067 ], [ -120.057684816999981, 50.545383068000071 ], [ -120.058530522999959, 50.545404451000067 ], [ -120.058487926999973, 50.546088571 ], [ -120.058520417999915, 50.546590381000073 ], [ -120.05760812799997, 50.546614360000078 ], [ -120.05760090699999, 50.546730268000054 ], [ -120.056834062999926, 50.546710874000048 ], [ -120.056881446999938, 50.547443064000092 ], [ -120.056709151999883, 50.5474475910001 ], [ -120.056704814999989, 50.547517197000055 ], [ -120.055436201999939, 50.547485100000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "117", "sL_BldgLoss": "117", "sL_StrLoss": "117", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000909F8D5C77F55DC001C96C77AC3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.832805325999956, 50.489089592000056 ], [ -119.831550002999947, 50.48800931200001 ], [ -119.830936733999948, 50.487481536000075 ], [ -119.830985740999935, 50.487124056000042 ], [ -119.835866750999969, 50.487395706000072 ], [ -119.83584989799999, 50.487834583000037 ], [ -119.836591178999939, 50.489236839000057 ], [ -119.8387692579999, 50.489232553000072 ], [ -119.838306613999976, 50.492611250000024 ], [ -119.83716968099999, 50.492548027000069 ], [ -119.83695139199996, 50.492470813000089 ], [ -119.836219500999945, 50.492020795000059 ], [ -119.835101988999938, 50.491022408000127 ], [ -119.834635507999963, 50.490754588000108 ], [ -119.834400076999955, 50.490382896000078 ], [ -119.833879097999954, 50.489910089 ], [ -119.834050493999953, 50.489697906000082 ], [ -119.834088094999942, 50.489400203000081 ], [ -119.833813200999927, 50.488813393000115 ], [ -119.83363822099993, 50.48869239900008 ], [ -119.833398192999979, 50.488940192000015 ], [ -119.833689492999952, 50.489311896000082 ], [ -119.833696793999962, 50.489904402000043 ], [ -119.833504702999974, 50.491429701000094 ], [ -119.833596418999932, 50.492349247000078 ], [ -119.833285299999929, 50.492331933000031 ], [ -119.833233457999938, 50.491820918000037 ], [ -119.833374946999967, 50.490065576000063 ], [ -119.833356970999944, 50.489814751000033 ], [ -119.833214961999943, 50.489529079000128 ], [ -119.832805325999956, 50.489089592000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "222.3", "sL_BldgLoss": "222.3", "sL_StrLoss": "222.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000390B7BDAA1FF5DC0EA5055BA9E524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.998798775999916, 50.647437288000091 ], [ -119.99766918899995, 50.64733071400007 ], [ -119.996282144999952, 50.64732837600009 ], [ -119.995175744, 50.647326502000062 ], [ -119.99465432099997, 50.6473256290001 ], [ -119.993387436999939, 50.647323444000037 ], [ -119.992772902999917, 50.64732240100011 ], [ -119.991564117999971, 50.647320316000105 ], [ -119.991200110999941, 50.647103215000058 ], [ -119.991138308999965, 50.647066353000135 ], [ -119.990820438999961, 50.646871529000066 ], [ -119.989913572999924, 50.646287487000059 ], [ -119.989294101000013, 50.645898205000087 ], [ -119.988704919999947, 50.645528455000075 ], [ -119.988016315999943, 50.645058176000084 ], [ -119.987606170999968, 50.644784831000145 ], [ -119.98733415199996, 50.644609629000065 ], [ -119.987257241999941, 50.644558619000087 ], [ -119.987440097999936, 50.644532399000077 ], [ -119.988246174999944, 50.644472293 ], [ -119.988787730999888, 50.644464355000061 ], [ -119.988877341999938, 50.644463028000075 ], [ -119.988905159999959, 50.644375862000103 ], [ -119.988937190999948, 50.644320019000119 ], [ -119.988938765999976, 50.644271886000077 ], [ -119.988960968999947, 50.644202363000041 ], [ -119.988999613999979, 50.644125633000073 ], [ -119.989021742999952, 50.644056132000074 ], [ -119.989058170999911, 50.643986387000027 ], [ -119.989085855999917, 50.643944461000061 ], [ -119.989117848, 50.643888630000042 ], [ -119.98919473799999, 50.643833494 ], [ -119.989333369999912, 50.643789307000041 ], [ -119.989226409999972, 50.643733931000043 ], [ -119.98909206899998, 50.643702897000068 ], [ -119.98903859699999, 50.643675221000109 ], [ -119.989012822999982, 50.643638066000108 ], [ -119.989029916000021, 50.643587949000107 ], [ -119.988950329999966, 50.643528395000011 ], [ -119.989101383999966, 50.643392670000054 ], [ -119.989183631999978, 50.6431978600001 ], [ -119.989229347999952, 50.643148507000028 ], [ -119.989247053999989, 50.643087256000115 ], [ -119.989249665999949, 50.643042871000048 ], [ -119.989211801999886, 50.642972988000118 ], [ -119.989145220999916, 50.642929333000055 ], [ -119.989091769999959, 50.642901623000135 ], [ -119.988951044999936, 50.64281250000009 ], [ -119.98897328799994, 50.642813702000133 ], [ -119.990508894999934, 50.642896685000046 ], [ -119.990473340000023, 50.643161996000082 ], [ -119.991455481999978, 50.643215060000053 ], [ -119.991425729999975, 50.643437100000064 ], [ -119.992292770999967, 50.64348393800001 ], [ -119.992283273999988, 50.643554822000056 ], [ -119.993825123999954, 50.643638095000078 ], [ -119.993777095999974, 50.643996676000086 ], [ -119.99379785, 50.643997797000068 ], [ -119.993705434999967, 50.644687748000145 ], [ -119.993683893999957, 50.644848571000104 ], [ -119.993382601999926, 50.647097790000053 ], [ -119.994198908999962, 50.647118868000113 ], [ -119.994246376999968, 50.64712009400013 ], [ -119.994246507999932, 50.647119116000049 ], [ -119.994517352999964, 50.645096911000046 ], [ -119.994647206999986, 50.644127309000069 ], [ -120.00028594399997, 50.64443162 ], [ -120.00002337399998, 50.646393967000115 ], [ -119.999887712999907, 50.647407781000027 ], [ -119.999859596999954, 50.647617889000045 ], [ -119.999806863999979, 50.648011952000026 ], [ -119.999214055999957, 50.647979973000076 ], [ -119.999180739999971, 50.647492941000039 ], [ -119.99896211399999, 50.647452695000077 ], [ -119.998826250999912, 50.647439880000093 ], [ -119.998798775999916, 50.647437288000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999995925257305", "sL_AssetLoss": "216.209971", "sL_BldgLoss": "216.20909", "sL_StrLoss": "216.2", "sL_NStrLoss": "0.00909", "sL_ContLoss": "0.000881", "geom_point": "0101000020E6100000311C3A0304045EC0B7EBC637EB4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.060595508999938, 50.613670665 ], [ -120.066230869999941, 50.613971651000043 ], [ -120.065757363999964, 50.617552395000089 ], [ -120.065148049999962, 50.617519866000087 ], [ -120.065058503, 50.618196900000022 ], [ -120.064894634000012, 50.619435811000123 ], [ -120.059258596999911, 50.61913475900009 ], [ -120.059605739999967, 50.616512635000092 ], [ -120.059732636999939, 50.615554050000114 ], [ -120.060341919999956, 50.615586609000097 ], [ -120.060595508999938, 50.613670665 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3296333", "BldgCostT": "2273333", "sL_LossRatio": "1", "sL_AssetLoss": "248", "sL_BldgLoss": "248", "sL_StrLoss": "248", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7DF51BEFBFE5DC06B0025F4694F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.976248000999959, 50.624598271000082 ], [ -119.976491749, 50.622782893000064 ], [ -119.973530534999909, 50.622622400000111 ], [ -119.973557516999932, 50.622421539000065 ], [ -119.973613848999889, 50.622434624000036 ], [ -119.974681781999934, 50.622682702000084 ], [ -119.975778197999972, 50.62271959100007 ], [ -119.976808696999981, 50.622644705000035 ], [ -119.976812944999907, 50.62264425500009 ], [ -119.97836339299991, 50.622480992000121 ], [ -119.979772591999932, 50.622503208000033 ], [ -119.980744203999976, 50.622480278000104 ], [ -119.980746095999919, 50.622480223000068 ], [ -119.983390194999942, 50.622417792000043 ], [ -119.983669556999956, 50.622381964000084 ], [ -119.984349083, 50.622294803000038 ], [ -119.985268694999959, 50.622051500000062 ], [ -119.985725000999949, 50.621823713 ], [ -119.986123107999944, 50.621584689000073 ], [ -119.985653881999951, 50.621242006000088 ], [ -119.985189797999951, 50.620628091000079 ], [ -119.985002266, 50.620413416000112 ], [ -119.984987627999928, 50.620396642000031 ], [ -119.984676892999943, 50.620040943000049 ], [ -119.984660785999893, 50.620022496000018 ], [ -119.984545378999911, 50.619918774000013 ], [ -119.983956875999937, 50.619389981000076 ], [ -119.981675814999988, 50.617340085000102 ], [ -119.981537389999957, 50.617204305000058 ], [ -119.981346402999989, 50.617016889000062 ], [ -119.9813287, 50.616999552000038 ], [ -119.980925882999955, 50.61660429800002 ], [ -119.980889232999957, 50.616576228000078 ], [ -119.980279876999987, 50.616109497000075 ], [ -119.980237872999936, 50.616092044000069 ], [ -119.979618599999938, 50.615834798000087 ], [ -119.97960739899996, 50.615829222000023 ], [ -119.979571047999968, 50.61581115300006 ], [ -119.979215496999984, 50.615634410000055 ], [ -119.978827520999985, 50.615374499000062 ], [ -119.97875687199999, 50.615294483000049 ], [ -119.97875944899999, 50.615275274000041 ], [ -119.9788727699999, 50.615281413000112 ], [ -119.978990788999937, 50.614401878000074 ], [ -119.979211104999933, 50.614413813000141 ], [ -119.979219481999962, 50.614351383000077 ], [ -119.979581287999949, 50.614370982000047 ], [ -119.979653092999953, 50.613835792000067 ], [ -119.981363655999957, 50.613928435000126 ], [ -119.985287928999981, 50.614140872000114 ], [ -119.985247096999927, 50.614445503000077 ], [ -119.985431245999962, 50.614455468000067 ], [ -119.985000241999927, 50.617670801000045 ], [ -119.985528262999964, 50.617699372000139 ], [ -119.985473174999953, 50.6181103300001 ], [ -119.985399651999955, 50.618658822000022 ], [ -119.985584939999939, 50.618668847000059 ], [ -119.986276303999915, 50.618706253 ], [ -119.98625060699996, 50.618897978000049 ], [ -119.986438612, 50.618908150000081 ], [ -119.986359982999915, 50.619494802000119 ], [ -119.989724344999928, 50.619676761000079 ], [ -119.989722918, 50.619687409000036 ], [ -119.990337626, 50.619720644000047 ], [ -119.990319045999939, 50.619859358000078 ], [ -119.991038011999976, 50.619898225000057 ], [ -119.990651553999925, 50.622783590000033 ], [ -119.990558455999931, 50.623478622000093 ], [ -119.989800514999914, 50.623437648000014 ], [ -119.989798251999929, 50.623454527000028 ], [ -119.989673270999944, 50.624387441000124 ], [ -119.987540862999964, 50.624272135000083 ], [ -119.987524276999949, 50.624395890000059 ], [ -119.984152575999971, 50.624213488000045 ], [ -119.984045862999906, 50.625009270000071 ], [ -119.981885661999982, 50.624892352000188 ], [ -119.981884162999904, 50.624903520000053 ], [ -119.976248000999959, 50.624598271000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "128.4", "sL_BldgLoss": "128.4", "sL_StrLoss": "128.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9799A404FFD5DC04F7FAC962A474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.955426864999964, 50.553935991000053 ], [ -119.961054044999983, 50.554242318000099 ], [ -119.960844257999952, 50.555803261000094 ], [ -119.960572804999956, 50.557822870000095 ], [ -119.960527016999947, 50.557820378000038 ], [ -119.96049771499996, 50.558038371000102 ], [ -119.954870064999966, 50.557732016000038 ], [ -119.955079440999967, 50.556175747000047 ], [ -119.95535175699996, 50.554151489000084 ], [ -119.955397540999968, 50.554153983000049 ], [ -119.955426864999964, 50.553935991000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "130", "sL_BldgLoss": "130", "sL_StrLoss": "130", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E6202A85A7035EC069DA6A7BE0504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.054518137999978, 50.629909663000056 ], [ -120.060155492999954, 50.63021095100008 ], [ -120.059681332999958, 50.633791599000091 ], [ -120.058893905, 50.633749532000117 ], [ -120.054043530999962, 50.633490289000129 ], [ -120.054293528999921, 50.631604270000047 ], [ -120.054518137999978, 50.629909663000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "65.3", "sL_BldgLoss": "65.3", "sL_StrLoss": "65.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007E916D6C38075EC03F7E04381C4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113728861999959, 50.585043914000103 ], [ -120.115869604999901, 50.585157335000062 ], [ -120.11543849, 50.58844739000002 ], [ -120.115400351999966, 50.588738413000065 ], [ -120.111552796999945, 50.588534535000051 ], [ -120.109767821999966, 50.588439904000047 ], [ -120.110165328999955, 50.58540929 ], [ -120.11023752100003, 50.584858849000035 ], [ -120.113728861999959, 50.585043914000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99997728358161", "sL_AssetLoss": "183.12746", "sL_BldgLoss": "183.1233", "sL_StrLoss": "183.1", "sL_NStrLoss": "0.0233", "sL_ContLoss": "0.00416", "geom_point": "0101000020E6100000F6DC3AE659145EC0D42391A68F424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.317486268999943, 50.518180516 ], [ -120.321025801999923, 50.51836178500011 ], [ -120.320573544999945, 50.52194400500013 ], [ -120.317480632999903, 50.521785614000059 ], [ -120.314948025999968, 50.521655854000088 ], [ -120.315400725999922, 50.518073655000087 ], [ -120.317486268999943, 50.518180516 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.999969743042208", "sL_AssetLoss": "648.11539", "sL_BldgLoss": "648.09578", "sL_StrLoss": "648", "sL_NStrLoss": "0.09578", "sL_ContLoss": "0.01961", "geom_point": "0101000020E6100000B7F3167219105EC070B9556BBC4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.249137373999972, 50.60373959000006 ], [ -120.249190941, 50.603321416000057 ], [ -120.247319042999919, 50.60322454100006 ], [ -120.247777947999964, 50.599642976000062 ], [ -120.248487061999953, 50.59967967799999 ], [ -120.248523529999915, 50.599394993000082 ], [ -120.249112303999965, 50.599425463000095 ], [ -120.249274451999952, 50.598159522000103 ], [ -120.248485331999973, 50.598118683000024 ], [ -120.248944091999959, 50.59453709100007 ], [ -120.254578294999973, 50.594828555000099 ], [ -120.254311515, 50.596913447000084 ], [ -120.255100620999954, 50.596954245000099 ], [ -120.254657178999963, 50.600419782000124 ], [ -120.255231051999928, 50.600449449000067 ], [ -120.254920468999956, 50.602876605000098 ], [ -120.25477273199999, 50.60403104200013 ], [ -120.250050750999947, 50.603786848000077 ], [ -120.249137373999972, 50.60373959000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999903011469764", "sL_AssetLoss": "186.72311", "sL_BldgLoss": "186.705", "sL_StrLoss": "186.6", "sL_NStrLoss": "0.105", "sL_ContLoss": "0.01811", "geom_point": "0101000020E61000001CA3C89CDF0F5EC0AEB6627F59484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.245437337999959, 50.563294536000065 ], [ -120.251067610999925, 50.563586190000045 ], [ -120.250609334999979, 50.567167925000021 ], [ -120.244978616999944, 50.566876250000092 ], [ -120.245437337999959, 50.563294536000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999999488359121", "sL_AssetLoss": "146.0008437", "sL_BldgLoss": "146.000769", "sL_StrLoss": "146", "sL_NStrLoss": "0.000769", "sL_ContLoss": "0.0000747", "geom_point": "0101000020E61000009435A80588135EC08FAF3542DC4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.302175626999912, 50.61742162400008 ], [ -120.302536732999968, 50.61457708299999 ], [ -120.303415891999961, 50.61462213500004 ], [ -120.308173792999966, 50.614865830000063 ], [ -120.307823363999887, 50.617628996000072 ], [ -120.303411494999921, 50.61736019500006 ], [ -120.302175626999912, 50.61742162400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899584", "BldgCostT": "4758334", "sL_LossRatio": "1", "sL_AssetLoss": "891.8", "sL_BldgLoss": "891.8", "sL_StrLoss": "891.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063D649850A155EC0E1B102F00D4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.324441478999958, 50.616318124000017 ], [ -120.32454945899994, 50.615464196000104 ], [ -120.324459936999958, 50.61545962600011 ], [ -120.324528208999979, 50.614919717000106 ], [ -120.324502975999934, 50.614918428000131 ], [ -120.324675969999973, 50.613550288000091 ], [ -120.324390764, 50.613535728000066 ], [ -120.324818380999901, 50.610153670000031 ], [ -120.324327993999958, 50.610128634000105 ], [ -120.324780838, 50.606546782000059 ], [ -120.325268748999974, 50.606571693000085 ], [ -120.325433531999963, 50.605268063000103 ], [ -120.325475200999904, 50.604938395000062 ], [ -120.325506799999971, 50.604940007000017 ], [ -120.325576127999952, 50.604391495000094 ], [ -120.328952547999904, 50.604563819000063 ], [ -120.328988086999942, 50.604282475000055 ], [ -120.334624025999958, 50.604569886000014 ], [ -120.334398338999932, 50.606358271000026 ], [ -120.334579250999923, 50.606367492000103 ], [ -120.334338358999972, 50.608276243000049 ], [ -120.334127187999968, 50.609949383000057 ], [ -120.330684561999973, 50.609773863000051 ], [ -120.330534166999925, 50.610964665000104 ], [ -120.331021093999951, 50.610989497000048 ], [ -120.330968799999965, 50.611403566000035 ], [ -120.331098818, 50.61141019600008 ], [ -120.330646427999966, 50.614992052000034 ], [ -120.330285073999931, 50.614973624000122 ], [ -120.330078895999989, 50.616605761000095 ], [ -120.32825094699993, 50.616512526000029 ], [ -120.324441478999958, 50.616318124000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999977420379634", "sL_AssetLoss": "330.8293", "sL_BldgLoss": "330.82183", "sL_StrLoss": "330.8", "sL_NStrLoss": "0.02183", "sL_ContLoss": "0.00747", "geom_point": "0101000020E6100000FD54AA7E04095EC0A15AF1CB683D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.138277635999955, 50.482316798000063 ], [ -120.138384633999962, 50.481495058000078 ], [ -120.137923979999954, 50.481470690000087 ], [ -120.137978882999946, 50.48104904900007 ], [ -120.137382090999949, 50.481017476000076 ], [ -120.137534106, 50.479850134000046 ], [ -120.137848478999956, 50.477435835000051 ], [ -120.13846131299999, 50.477468255000083 ], [ -120.138531277999974, 50.476930848000038 ], [ -120.143190544999953, 50.477177227000077 ], [ -120.143309890999916, 50.477216114000051 ], [ -120.143769616999947, 50.477542196000051 ], [ -120.144029285999963, 50.4779181930001 ], [ -120.14442799699998, 50.479034810000023 ], [ -120.144448504999943, 50.479618708000025 ], [ -120.144312426999932, 50.479778305000117 ], [ -120.144002709999938, 50.479518984000052 ], [ -120.14321751199999, 50.479678588000077 ], [ -120.143539794999924, 50.480441891000041 ], [ -120.143954792999963, 50.481028690000073 ], [ -120.14427020799998, 50.48186329 ], [ -120.14428076800003, 50.482124788000071 ], [ -120.143972789999978, 50.482108514000075 ], [ -120.143958884999932, 50.482215402000108 ], [ -120.143949011999922, 50.4822148800001 ], [ -120.143897104999979, 50.482613903000086 ], [ -120.138277635999955, 50.482316798000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99996835008569", "sL_AssetLoss": "187.04632", "sL_BldgLoss": "187.0404", "sL_StrLoss": "187", "sL_NStrLoss": "0.0404", "sL_ContLoss": "0.00592", "geom_point": "0101000020E610000093B114A809145EC0DB852857DF3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.310527937999922, 50.481430254000031 ], [ -120.315292499999941, 50.481674745000106 ], [ -120.31539711299996, 50.481747885000082 ], [ -120.315948190999976, 50.481994297000035 ], [ -120.316093188999957, 50.4821560990001 ], [ -120.315696135999985, 50.485301005000053 ], [ -120.310075216999977, 50.485012594000089 ], [ -120.310527937999922, 50.481430254000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999987956903536", "sL_AssetLoss": "413.431879", "sL_BldgLoss": "413.4269", "sL_StrLoss": "413.4", "sL_NStrLoss": "0.0269", "sL_ContLoss": "0.004979", "geom_point": "0101000020E61000008C3E30915C115EC0295316CFEA474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.27097075799999, 50.559503120000088 ], [ -120.276600721999927, 50.559793483000114 ], [ -120.276144513999938, 50.5633753400001 ], [ -120.271713769999934, 50.563146851000035 ], [ -120.271579066999948, 50.564203545000069 ], [ -120.265948582999926, 50.56391293000005 ], [ -120.26640560599995, 50.560331117000054 ], [ -120.270836045999957, 50.560559817000083 ], [ -120.27097075799999, 50.559503120000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999994152413402", "sL_AssetLoss": "234.113677", "sL_BldgLoss": "234.112308", "sL_StrLoss": "234.100148", "sL_NStrLoss": "0.01216", "sL_ContLoss": "0.001369", "geom_point": "0101000020E610000047EE44A481145EC085EFDCFFF04E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31494231899994, 50.618169278000089 ], [ -120.315158880999974, 50.616459582000104 ], [ -120.316062182999985, 50.61650576600006 ], [ -120.316078045999944, 50.61638050300013 ], [ -120.31704918599992, 50.616430147000102 ], [ -120.317119042999977, 50.615878427000084 ], [ -120.317102614999925, 50.615878048000113 ], [ -120.317126435999981, 50.615459570000041 ], [ -120.317148636999931, 50.615069558000158 ], [ -120.31757220899999, 50.615079318000049 ], [ -120.317587545999913, 50.614809821000065 ], [ -120.317953373999941, 50.614818248000056 ], [ -120.31801111499999, 50.614819578000095 ], [ -120.31802645099998, 50.61455008100004 ], [ -120.31845001799995, 50.614559838000048 ], [ -120.318465351000015, 50.614290341000043 ], [ -120.32185387699991, 50.614368336000084 ], [ -120.321829257999951, 50.614801576000026 ], [ -120.323929018999976, 50.614908799000077 ], [ -120.32378698699999, 50.616031888000052 ], [ -120.323879901999959, 50.616034023000026 ], [ -120.323864597999929, 50.61630352100012 ], [ -120.324288184999943, 50.616313257000044 ], [ -120.324257581999973, 50.616852254000101 ], [ -120.324681171999984, 50.616861987000085 ], [ -120.324665872999915, 50.617131485000115 ], [ -120.325089466999913, 50.617141218000036 ], [ -120.325074168999947, 50.617410717000041 ], [ -120.325921359999967, 50.617430178000042 ], [ -120.325906068000023, 50.617699676000072 ], [ -120.32675326399999, 50.617719131000079 ], [ -120.326737976999979, 50.617988631000102 ], [ -120.326751966999922, 50.617988951000093 ], [ -120.326261935999938, 50.618377667000075 ], [ -120.321478193999951, 50.618481888000119 ], [ -120.319783928999982, 50.618518735000123 ], [ -120.319282326999883, 50.618529637000108 ], [ -120.316927404999959, 50.618334148000066 ], [ -120.31494231899994, 50.618169278000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999994452686877", "sL_AssetLoss": "139.707275", "sL_BldgLoss": "139.7065", "sL_StrLoss": "139.7", "sL_NStrLoss": "0.0065", "sL_ContLoss": "0.000775", "geom_point": "0101000020E6100000AD0E8829B4155EC0DABAE534D54B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.33652985599997, 50.590509519000143 ], [ -120.342164120999911, 50.590796554000093 ], [ -120.341979500999983, 50.592261943000082 ], [ -120.341712816999973, 50.594378543000047 ], [ -120.336078108, 50.594091487000114 ], [ -120.3360926599999, 50.593976114000057 ], [ -120.33652985599997, 50.590509519000143 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "148.4", "sL_BldgLoss": "148.4", "sL_StrLoss": "148.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000563D478191155EC00A25DDE0D54A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.334415095999958, 50.582717451000114 ], [ -120.34004837, 50.58300459500002 ], [ -120.33959697799996, 50.586586610000047 ], [ -120.333963258, 50.586299443 ], [ -120.334415095999958, 50.582717451000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999990925787565", "sL_AssetLoss": "173.01777", "sL_BldgLoss": "173.0162", "sL_StrLoss": "173", "sL_NStrLoss": "0.0162", "sL_ContLoss": "0.00157", "geom_point": "0101000020E610000008654C872F125EC09F1FA932CA4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.28124352499999, 50.593754788000055 ], [ -120.281699633999906, 50.590173042000067 ], [ -120.287333503999918, 50.590462851000098 ], [ -120.287139774999972, 50.591985739000037 ], [ -120.286858993999886, 50.59175250600007 ], [ -120.286251106999927, 50.591496096000064 ], [ -120.285857294999957, 50.59169409900003 ], [ -120.285724393999928, 50.591808001000054 ], [ -120.285723493999967, 50.592077195000044 ], [ -120.285867616999923, 50.592260907000124 ], [ -120.286251709999988, 50.592467402000047 ], [ -120.287023578999964, 50.592899102000111 ], [ -120.286877840999963, 50.594044619000087 ], [ -120.28124352499999, 50.593754788000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "148", "sL_BldgLoss": "148", "sL_StrLoss": "148", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000283DBAAE6B0E5EC00EA32078FC4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.222734983999928, 50.607330112000049 ], [ -120.228370619999964, 50.607622898000102 ], [ -120.227910088999963, 50.61120434900009 ], [ -120.222274006999953, 50.610911541000057 ], [ -120.222734983999928, 50.607330112000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999984278310996", "sL_AssetLoss": "152.01929", "sL_BldgLoss": "152.0169", "sL_StrLoss": "152", "sL_NStrLoss": "0.0169", "sL_ContLoss": "0.00239", "geom_point": "0101000020E61000000D810AE4E5115EC01F31D52794424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.277071765999921, 50.51821026500005 ], [ -120.282696611999938, 50.518500333000091 ], [ -120.28225461599996, 50.521977707000133 ], [ -120.282241307999954, 50.52208239600003 ], [ -120.28197557099999, 50.52206869900003 ], [ -120.27661601699999, 50.521792305000169 ], [ -120.277071765999921, 50.51821026500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999932379122935", "sL_AssetLoss": "189.58642", "sL_BldgLoss": "189.5736", "sL_StrLoss": "189.5", "sL_NStrLoss": "0.0736", "sL_ContLoss": "0.01282", "geom_point": "0101000020E6100000E2F316518B155EC0370097D7FC434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.334345976999884, 50.529205924000138 ], [ -120.339126322999959, 50.529449919000029 ], [ -120.33915265, 50.533056512000087 ], [ -120.333894667999985, 50.53278815000008 ], [ -120.334345976999884, 50.529205924000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999952918884074", "sL_AssetLoss": "186.06186", "sL_BldgLoss": "186.0531", "sL_StrLoss": "186", "sL_NStrLoss": "0.0531", "sL_ContLoss": "0.00876", "geom_point": "0101000020E610000083EA728CDC135EC073710AE107404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.307751388999989, 50.498305031000029 ], [ -120.313373949999956, 50.498593555000078 ], [ -120.312921281999962, 50.502175830000041 ], [ -120.307298277999948, 50.501887284000077 ], [ -120.307751388999989, 50.498305031000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.99999915919569", "sL_AssetLoss": "160.2037458", "sL_BldgLoss": "160.2036111", "sL_StrLoss": "160.2000981", "sL_NStrLoss": "0.003513", "sL_ContLoss": "0.0001347", "geom_point": "0101000020E6100000DF25C49EAE145EC0B5B80884843D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.320193750999948, 50.482572776000062 ], [ -120.320272795000022, 50.481946196000095 ], [ -120.320049886999968, 50.481934773000042 ], [ -120.320501784, 50.478352379000079 ], [ -120.326121940999926, 50.478640265000095 ], [ -120.326042983999983, 50.479266851000091 ], [ -120.32626587899999, 50.479278263 ], [ -120.32581443, 50.482860676000065 ], [ -120.320193750999948, 50.482572776000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018198", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.999974271360978", "sL_AssetLoss": "174.047294", "sL_BldgLoss": "174.042816", "sL_StrLoss": "174.000616", "sL_NStrLoss": "0.0422", "sL_ContLoss": "0.004478", "geom_point": "0101000020E6100000FA8F33EAAD0E5EC0A1FCD5CAA13E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.226662170999958, 50.490979701000107 ], [ -120.226663441, 50.490969799 ], [ -120.225987348999965, 50.490934583000083 ], [ -120.226426571999951, 50.487510381000071 ], [ -120.226446805999956, 50.487352615000113 ], [ -120.230238872999976, 50.487550081000059 ], [ -120.232067478999937, 50.487645257000082 ], [ -120.232066208999981, 50.487655159000013 ], [ -120.232742255999952, 50.487690338000085 ], [ -120.232283296999967, 50.491272330000051 ], [ -120.226662170999958, 50.490979701000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "427.3", "sL_BldgLoss": "427.3", "sL_StrLoss": "427.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081521F0E33105EC051B4DDCAB33E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.249992797999965, 50.488996821000072 ], [ -120.250106848000016, 50.488103966000082 ], [ -120.25081823499994, 50.48814086700002 ], [ -120.250866435, 50.487763483000052 ], [ -120.251308232, 50.487786397000015 ], [ -120.25148628599996, 50.486392094000017 ], [ -120.253958525999934, 50.486520289000083 ], [ -120.257107, 50.48668346900007 ], [ -120.257047272999969, 50.487151650000079 ], [ -120.256835019, 50.488815336000044 ], [ -120.257692425999934, 50.488859758000082 ], [ -120.257235434999942, 50.492441848000063 ], [ -120.255511155999955, 50.492352507000071 ], [ -120.255474669999941, 50.49263838800006 ], [ -120.255283011999907, 50.492628455000066 ], [ -120.253623107999914, 50.492542421000067 ], [ -120.253591598999947, 50.492789231000089 ], [ -120.247970145999943, 50.492497680000056 ], [ -120.248427872999969, 50.488915628000022 ], [ -120.249992797999965, 50.488996821000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999972606102805", "sL_AssetLoss": "173.03124", "sL_BldgLoss": "173.0265", "sL_StrLoss": "173", "sL_NStrLoss": "0.0265", "sL_ContLoss": "0.00474", "geom_point": "0101000020E6100000344AD91A78115EC0DA177552844A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.270367691999979, 50.580227055000101 ], [ -120.276000244, 50.580517441000033 ], [ -120.275543779999978, 50.584099206000083 ], [ -120.269910782999943, 50.583808798000099 ], [ -120.270367691999979, 50.580227055000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018202", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999970301146376", "sL_AssetLoss": "243.44374", "sL_BldgLoss": "243.43651", "sL_StrLoss": "243.4", "sL_NStrLoss": "0.03651", "sL_ContLoss": "0.00723", "geom_point": "0101000020E610000029D93DBBB4165EC0F5543D4FF24C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.353467835999936, 50.60308934300005 ], [ -120.35347810199994, 50.603007719000082 ], [ -120.351848088999958, 50.602924900000055 ], [ -120.352298669999954, 50.599342905000135 ], [ -120.353933109999986, 50.59942595100005 ], [ -120.35400092299993, 50.598886644000068 ], [ -120.357297521999911, 50.599054070000101 ], [ -120.357304632999941, 50.600648658000054 ], [ -120.357310669999976, 50.601995992000113 ], [ -120.357316425999926, 50.60328479200011 ], [ -120.353467835999936, 50.60308934300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999983074548787", "sL_AssetLoss": "172.52125", "sL_BldgLoss": "172.51833", "sL_StrLoss": "172.5", "sL_NStrLoss": "0.01833", "sL_ContLoss": "0.00292", "geom_point": "0101000020E61000002EE9C5DCF7115EC02DAAEA8A3E4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.278164729999958, 50.58591025000004 ], [ -120.283798043999951, 50.586200239000028 ], [ -120.283342142999956, 50.589782011000132 ], [ -120.277708382999975, 50.589492 ], [ -120.278164729999958, 50.58591025000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999986203156678", "sL_AssetLoss": "152.20873", "sL_BldgLoss": "152.20663", "sL_StrLoss": "152.2", "sL_NStrLoss": "0.00663", "sL_ContLoss": "0.0021", "geom_point": "0101000020E610000006D54843F40D5EC0937BB2491B4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.220314696999949, 50.592898704000099 ], [ -120.221081092999924, 50.592938568000037 ], [ -120.22062013099999, 50.596520053000077 ], [ -120.219853674999968, 50.596480186000136 ], [ -120.214985933999984, 50.596226870000059 ], [ -120.215447341999948, 50.592645408000052 ], [ -120.220314696999949, 50.592898704000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999964955210149", "sL_AssetLoss": "448.28347", "sL_BldgLoss": "448.26776", "sL_StrLoss": "448.2", "sL_NStrLoss": "0.06776", "sL_ContLoss": "0.01571", "geom_point": "0101000020E610000013060A615A145EC0D876A06F873C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.312381689999967, 50.474774979000088 ], [ -120.312834123999963, 50.471192584000107 ], [ -120.315568715999959, 50.471332910000072 ], [ -120.317887672999959, 50.471451853000097 ], [ -120.317936283000037, 50.471066580000077 ], [ -120.317979529999974, 50.470723803000091 ], [ -120.323598719999922, 50.471011819000054 ], [ -120.323147141999954, 50.474594258000138 ], [ -120.31809321199999, 50.474335228000079 ], [ -120.318001347999939, 50.475063276000107 ], [ -120.314776032999958, 50.474897847000086 ], [ -120.314548103999954, 50.474837708000102 ], [ -120.314309789999953, 50.474832002000085 ], [ -120.314289337999966, 50.474872876000134 ], [ -120.313970236, 50.474856503000062 ], [ -120.313930016999976, 50.474823394000111 ], [ -120.313242291, 50.474528612 ], [ -120.313028788999986, 50.474541402000042 ], [ -120.312798827, 50.47479638800008 ], [ -120.312381689999967, 50.474774979000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999998808634513", "sL_AssetLoss": "69.5000828", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0.0000828", "geom_point": "0101000020E6100000766E9870C10F5EC0030562024C3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.245716877999968, 50.480092760000048 ], [ -120.245763895999957, 50.47928429800006 ], [ -120.24534156499999, 50.479274298000064 ], [ -120.245372913999944, 50.478735324000084 ], [ -120.24495058799999, 50.478725320000123 ], [ -120.245013294999964, 50.477647373000117 ], [ -120.24561718399994, 50.47766167500005 ], [ -120.246702561999911, 50.477687372000048 ], [ -120.246655562999962, 50.478495834000043 ], [ -120.24707788799995, 50.478505831000057 ], [ -120.247030891999884, 50.479314294000069 ], [ -120.247453223999955, 50.479324289000054 ], [ -120.247406234, 50.480132752000024 ], [ -120.246818422999951, 50.480118840000038 ], [ -120.245716877999968, 50.480092760000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018207", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999991214417928", "sL_AssetLoss": "169.709871", "sL_BldgLoss": "169.70838", "sL_StrLoss": "169.7", "sL_NStrLoss": "0.00838", "sL_ContLoss": "0.001491", "geom_point": "0101000020E6100000F158BFDBB40F5EC01A2B7B5CE54A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.242826806999929, 50.583187822000063 ], [ -120.248459551999986, 50.583479600000025 ], [ -120.248000864999966, 50.587061239 ], [ -120.242367675999972, 50.586769438000061 ], [ -120.242826806999929, 50.583187822000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999974023532478", "sL_AssetLoss": "272.55438", "sL_BldgLoss": "272.5473", "sL_StrLoss": "272.5", "sL_NStrLoss": "0.0473", "sL_ContLoss": "0.00708", "geom_point": "0101000020E61000003EB48F15FC125EC028AB75248F4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.293671494999941, 50.592041230000071 ], [ -120.294036495999976, 50.589168609000069 ], [ -120.294036030999948, 50.589168598000143 ], [ -120.294113320999926, 50.587821134000087 ], [ -120.29538327899999, 50.587850648000078 ], [ -120.295344788999927, 50.588521981000042 ], [ -120.297861012999988, 50.5886511470001 ], [ -120.299760331999948, 50.58874860800011 ], [ -120.299305675999946, 50.592330434000054 ], [ -120.299216415, 50.592325854000073 ], [ -120.293671494999941, 50.592041230000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999956239191426", "sL_AssetLoss": "93.919654", "sL_BldgLoss": "93.915544", "sL_StrLoss": "93.900324", "sL_NStrLoss": "0.01522", "sL_ContLoss": "0.00411", "geom_point": "0101000020E6100000C1CA3E1B7B125EC0658396BF0C324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.286186155999957, 50.389077866000079 ], [ -120.29179499699994, 50.389367521000054 ], [ -120.291341714999973, 50.392950194 ], [ -120.285732431999975, 50.392660518000142 ], [ -120.286186155999957, 50.389077866000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999974272229202", "sL_AssetLoss": "177.62907", "sL_BldgLoss": "177.6245", "sL_StrLoss": "177.6", "sL_NStrLoss": "0.0245", "sL_ContLoss": "0.00457", "geom_point": "0101000020E610000022EA368F60135EC0494FECFCB63C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.300185496999958, 50.472398693000045 ], [ -120.305804781999953, 50.472687609000026 ], [ -120.305351773999945, 50.476269968000054 ], [ -120.299732046000017, 50.475981030000078 ], [ -120.300185496999958, 50.472398693000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999972964949312", "sL_AssetLoss": "313.66688", "sL_BldgLoss": "313.6584", "sL_StrLoss": "313.6", "sL_NStrLoss": "0.0584", "sL_ContLoss": "0.00848", "geom_point": "0101000020E6100000E965F3BCC4145EC0AFE27DEA92494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.327395132999953, 50.572433345000078 ], [ -120.32933815399997, 50.572532567000032 ], [ -120.328886013999977, 50.576114583000084 ], [ -120.325487449999983, 50.575941013000033 ], [ -120.325309831999974, 50.577347164000038 ], [ -120.323627214999988, 50.577261190000122 ], [ -120.319677359999929, 50.577059272000049 ], [ -120.320130240999973, 50.573477297000061 ], [ -120.3235286, 50.573651032000015 ], [ -120.32370625899992, 50.572244877000117 ], [ -120.327395132999953, 50.572433345000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "282.6", "sL_BldgLoss": "282.6", "sL_StrLoss": "282.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FDD6A2962105EC07D1B070374454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.258178516999919, 50.539463195000096 ], [ -120.260936731999919, 50.539605871000063 ], [ -120.260479483999973, 50.543187751000112 ], [ -120.259798592999928, 50.543152537000061 ], [ -120.2570416399999, 50.543009911000119 ], [ -120.256673573999947, 50.545891034000128 ], [ -120.25104547499997, 50.54559965800005 ], [ -120.251152420000011, 50.544763381000088 ], [ -120.251503496999959, 50.542017827000102 ], [ -120.254941243999966, 50.54219584 ], [ -120.25530939, 50.53931470800007 ], [ -120.258178516999919, 50.539463195000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999925861367347", "sL_AssetLoss": "182.0913", "sL_BldgLoss": "182.0778", "sL_StrLoss": "182", "sL_NStrLoss": "0.0778", "sL_ContLoss": "0.0135", "geom_point": "0101000020E61000005C8E782EE3135EC030FBD0602E4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.307774157999958, 50.604649891000101 ], [ -120.30822826499994, 50.601068085000065 ], [ -120.30852226399999, 50.601083141000046 ], [ -120.313863667999925, 50.601356547000101 ], [ -120.31360782899999, 50.603376569000055 ], [ -120.313485697999937, 50.603299886000052 ], [ -120.313250385999979, 50.603231593000046 ], [ -120.312980508999942, 50.603251503000145 ], [ -120.312917481999989, 50.603610392000036 ], [ -120.31337861499999, 50.604718400000095 ], [ -120.313432294999984, 50.604762427000033 ], [ -120.313410006999931, 50.604938376000092 ], [ -120.310269808999948, 50.604777673000072 ], [ -120.307774157999958, 50.604649891000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999994460976523", "sL_AssetLoss": "245.711181", "sL_BldgLoss": "245.70982", "sL_StrLoss": "245.7", "sL_NStrLoss": "0.00982", "sL_ContLoss": "0.001361", "geom_point": "0101000020E6100000C3ED12CDAA155EC0A44D175A844D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.335818390999961, 50.607523353000104 ], [ -120.335883199999969, 50.607009692000062 ], [ -120.335193305, 50.606974536000095 ], [ -120.335645251999978, 50.603392627000133 ], [ -120.341281124, 50.6036797020001 ], [ -120.341216379999977, 50.604193367000057 ], [ -120.341906238000021, 50.604228487000107 ], [ -120.341575194999947, 50.606855086000074 ], [ -120.341454779999964, 50.60781041700006 ], [ -120.337823405999956, 50.607625502000126 ], [ -120.335818390999961, 50.607523353000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "0.999979833564628", "sL_AssetLoss": "769.09973", "sL_BldgLoss": "769.08422", "sL_StrLoss": "769", "sL_NStrLoss": "0.08422", "sL_ContLoss": "0.01551", "geom_point": "0101000020E6100000FC4AAD182A135EC0C1DAFF9D404E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.292123364999938, 50.611320774000049 ], [ -120.292165591999961, 50.610988697000053 ], [ -120.291864648999933, 50.610973244000078 ], [ -120.292320084999957, 50.607391529 ], [ -120.297956179, 50.607680794000032 ], [ -120.29761715299999, 50.610349694000035 ], [ -120.298526216999932, 50.610396322000035 ], [ -120.298548753999981, 50.610218881000016 ], [ -120.300985138000016, 50.610343815000057 ], [ -120.301174820999947, 50.60884973900005 ], [ -120.302642395999939, 50.608924968000103 ], [ -120.302654858999972, 50.608826773000068 ], [ -120.30829119899991, 50.609115515000013 ], [ -120.307917600999957, 50.612061815000104 ], [ -120.307837014999976, 50.612697288000049 ], [ -120.307496612999955, 50.61267985800005 ], [ -120.307313673999957, 50.614122297000058 ], [ -120.304754941999988, 50.613991245000086 ], [ -120.30471357499999, 50.614317257000046 ], [ -120.303416488999972, 50.614250801000054 ], [ -120.300645648999975, 50.614108785000084 ], [ -120.300645486999969, 50.6141100520001 ], [ -120.298523784999958, 50.614001260000052 ], [ -120.298483906999977, 50.614315202000036 ], [ -120.29742318699999, 50.614260797000078 ], [ -120.297401964999963, 50.614427827000029 ], [ -120.291765029999965, 50.614138535000073 ], [ -120.292123364999938, 50.611320774000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999896073683758", "sL_AssetLoss": "200.1418", "sL_BldgLoss": "200.121", "sL_StrLoss": "200", "sL_NStrLoss": "0.121", "sL_ContLoss": "0.0208", "geom_point": "0101000020E61000000C41AB1FDD125EC06A2222EBDF4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.296885757999945, 50.583265716000035 ], [ -120.297790336999981, 50.583312151000065 ], [ -120.297558461999955, 50.585138563000065 ], [ -120.297335577999931, 50.586893993000054 ], [ -120.29170209199999, 50.586604688000087 ], [ -120.292157294999967, 50.583022868000057 ], [ -120.296885757999945, 50.583265716000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999963264904904", "sL_AssetLoss": "83.734641", "sL_BldgLoss": "83.731565", "sL_StrLoss": "83.700775", "sL_NStrLoss": "0.03079", "sL_ContLoss": "0.003076", "geom_point": "0101000020E61000001055DF961B0F5EC022BCE24E0E4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.233472785999979, 50.576624690000081 ], [ -120.23910464899997, 50.5769169430001 ], [ -120.238645284999976, 50.580498571000113 ], [ -120.233012977000016, 50.580206295000082 ], [ -120.233472785999979, 50.576624690000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999974863813143", "sL_AssetLoss": "179.4226", "sL_BldgLoss": "179.41809", "sL_StrLoss": "179.4", "sL_NStrLoss": "0.01809", "sL_ContLoss": "0.00451", "geom_point": "0101000020E610000083A326F28B155EC085954C467C3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.334082246999969, 50.470607678000064 ], [ -120.339701525999942, 50.470894878000088 ], [ -120.339380050999978, 50.473452535000014 ], [ -120.339251226999934, 50.474477383000064 ], [ -120.334797982999973, 50.474249803000099 ], [ -120.333631504999971, 50.474190161000088 ], [ -120.334082246999969, 50.470607678000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999843760094312", "sL_AssetLoss": "218.2541", "sL_BldgLoss": "218.22", "sL_StrLoss": "218", "sL_NStrLoss": "0.22", "sL_ContLoss": "0.0341", "geom_point": "0101000020E6100000CE7A29234B105EC0658808A4E94A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.251998704999906, 50.583318636000065 ], [ -120.257631524999965, 50.583609950000024 ], [ -120.257173566999938, 50.587191625000067 ], [ -120.251540301999938, 50.586900289000013 ], [ -120.251998704999906, 50.583318636000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999980154064749", "sL_AssetLoss": "79.61328", "sL_BldgLoss": "79.6117", "sL_StrLoss": "79.6", "sL_NStrLoss": "0.0117", "sL_ContLoss": "0.00158", "geom_point": "0101000020E6100000F7BD76FEA7155EC037086B4A4F404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.338239825999949, 50.50052305700008 ], [ -120.339048980999948, 50.500564371000046 ], [ -120.338987083999911, 50.501870359000129 ], [ -120.338950241999925, 50.502647998000079 ], [ -120.338860058999941, 50.50295659500005 ], [ -120.338948, 50.502965995000139 ], [ -120.338955397999911, 50.504164971000129 ], [ -120.337569435999981, 50.504094208000048 ], [ -120.337626556999979, 50.503640245000057 ], [ -120.338020162999925, 50.500511840000051 ], [ -120.338239825999949, 50.50052305700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999884446623229", "sL_AssetLoss": "371.257", "sL_BldgLoss": "371.2141", "sL_StrLoss": "371", "sL_NStrLoss": "0.2141", "sL_ContLoss": "0.0429", "geom_point": "0101000020E6100000A4C5D7A64A105EC0B4C6E22F944B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.252571561999986, 50.592488406000029 ], [ -120.252655114999968, 50.591835585000105 ], [ -120.250449036999953, 50.591721450000087 ], [ -120.250907573999925, 50.58813982200008 ], [ -120.256540991999898, 50.588431190000122 ], [ -120.256457500999971, 50.589084016000093 ], [ -120.258663465999945, 50.589198032000084 ], [ -120.25820553299998, 50.592779688000093 ], [ -120.252571561999986, 50.592488406000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999998177037833", "sL_AssetLoss": "472.308211", "sL_BldgLoss": "472.30735", "sL_StrLoss": "472.3", "sL_NStrLoss": "0.00735", "sL_ContLoss": "0.000861", "geom_point": "0101000020E6100000C9A087985A155EC046C92FAC30414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.334555178999949, 50.505897763000057 ], [ -120.338418839999989, 50.506095086000137 ], [ -120.337968086999979, 50.509677429000114 ], [ -120.33668366199997, 50.509611847000059 ], [ -120.336416839000023, 50.511731661000098 ], [ -120.335128882999939, 50.511665883000028 ], [ -120.334948754999942, 50.513096492000038 ], [ -120.329324247999978, 50.51280906500007 ], [ -120.329712000999962, 50.509732381000092 ], [ -120.329775718999954, 50.509226770000055 ], [ -120.330111395999921, 50.509243931000107 ], [ -120.330486055999927, 50.506270479000072 ], [ -120.332722519999919, 50.506384797000109 ], [ -120.332795183999949, 50.505807832000087 ], [ -120.334555178999949, 50.505897763000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "0.999951362799833", "sL_AssetLoss": "544.23363", "sL_BldgLoss": "544.20716", "sL_StrLoss": "544.00156", "sL_NStrLoss": "0.2056", "sL_ContLoss": "0.02647", "geom_point": "0101000020E610000088EB62E436145EC063F051FB84414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.313272447999964, 50.515966019000068 ], [ -120.313555506999961, 50.513726631000068 ], [ -120.309490075999975, 50.513518121000047 ], [ -120.309943128, 50.509935909000063 ], [ -120.31506130799994, 50.510198389000024 ], [ -120.31510769, 50.509831287000061 ], [ -120.315344309999944, 50.507958430000066 ], [ -120.315870642000021, 50.507985409000092 ], [ -120.315895194999911, 50.50779104300004 ], [ -120.32151899099992, 50.508079151000118 ], [ -120.321320579999949, 50.509651303000048 ], [ -120.321066876999978, 50.511661418000081 ], [ -120.320540497999943, 50.511634464000068 ], [ -120.320515961999931, 50.511828830000105 ], [ -120.31744639299994, 50.511671597000017 ], [ -120.315397565999902, 50.511566602000102 ], [ -120.315284216999913, 50.512463722000099 ], [ -120.317437646999977, 50.512574076000064 ], [ -120.319349578999947, 50.512672020000117 ], [ -120.318897246999953, 50.516254257000135 ], [ -120.317507526999989, 50.516183069000071 ], [ -120.313272447999964, 50.515966019000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "134", "sL_BldgLoss": "134", "sL_StrLoss": "134", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009024B50E160B5EC04604A935C94E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169158368999945, 50.616753275000079 ], [ -120.169305410999939, 50.615621543000067 ], [ -120.168766332999937, 50.615593267000108 ], [ -120.168962034999964, 50.614087077000114 ], [ -120.169645932999913, 50.614373214000103 ], [ -120.169682699999925, 50.614388595000072 ], [ -120.170242185999925, 50.614526103000081 ], [ -120.17082339699999, 50.614606206000097 ], [ -120.171720175999951, 50.614652213000056 ], [ -120.171903086999976, 50.614661606 ], [ -120.17243702, 50.614689006000013 ], [ -120.176615489999975, 50.614520387000034 ], [ -120.176670801999961, 50.614502884000082 ], [ -120.177581325999967, 50.61421465700009 ], [ -120.178081507999948, 50.614056289000089 ], [ -120.178880669999955, 50.613975978000049 ], [ -120.178671720999958, 50.615586882000045 ], [ -120.175228140999963, 50.615406500000063 ], [ -120.175138797, 50.616094863000114 ], [ -120.174920142999952, 50.616083405 ], [ -120.174794836, 50.617048768000089 ], [ -120.169158368999945, 50.616753275000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999944609490007", "sL_AssetLoss": "188.47994", "sL_BldgLoss": "188.4695", "sL_StrLoss": "188.4", "sL_NStrLoss": "0.0695", "sL_ContLoss": "0.01044", "geom_point": "0101000020E6100000707C8A6FEA135EC0D3A3A99E4C4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.308593446999922, 50.594153076000126 ], [ -120.314227987999971, 50.594441524000025 ], [ -120.313774426999913, 50.598023384000037 ], [ -120.308139438999916, 50.597734915000025 ], [ -120.308593446999922, 50.594153076000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999985542338554", "sL_AssetLoss": "80.510946", "sL_BldgLoss": "80.509782", "sL_StrLoss": "80.500222", "sL_NStrLoss": "0.00956", "sL_ContLoss": "0.001164", "geom_point": "0101000020E61000002B9E6107A1165EC0E5E76D094C4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.35147648199991, 50.578536111000062 ], [ -120.356619979999948, 50.57879753400011 ], [ -120.35616994699997, 50.582379634000077 ], [ -120.352543625999957, 50.582195348 ], [ -120.350536647999931, 50.582093305000122 ], [ -120.350987124999932, 50.578511227000043 ], [ -120.35147648199991, 50.578536111000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999983248696893", "sL_AssetLoss": "173.12086", "sL_BldgLoss": "173.11796", "sL_StrLoss": "173.1", "sL_NStrLoss": "0.01796", "sL_ContLoss": "0.0029", "geom_point": "0101000020E61000007B5F430D32155EC0F859C05FA7474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.328590776999988, 50.557860557000069 ], [ -120.334220904999924, 50.558148005000092 ], [ -120.333769297999979, 50.561730105000052 ], [ -120.328138723999928, 50.56144263500002 ], [ -120.328590776999988, 50.557860557000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999957472550048", "sL_AssetLoss": "158.25073", "sL_BldgLoss": "158.244", "sL_StrLoss": "158.2", "sL_NStrLoss": "0.044", "sL_ContLoss": "0.00673", "geom_point": "0101000020E61000005DE3D0AE04135EC04D73E1F63A494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.294572429999903, 50.570176395000054 ], [ -120.30020388, 50.570465560000073 ], [ -120.299749442999939, 50.574047466000067 ], [ -120.294117548, 50.573758280000035 ], [ -120.294572429999903, 50.570176395000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "133.4", "sL_BldgLoss": "133.4", "sL_StrLoss": "133.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000451CA1555C115EC0711EB18A753F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.270078794999975, 50.4976680790001 ], [ -120.270109881999943, 50.497129096000045 ], [ -120.269687382999962, 50.497119180000027 ], [ -120.269749567999966, 50.496041212000144 ], [ -120.268482100999947, 50.496011458000119 ], [ -120.268544308999964, 50.494933492000087 ], [ -120.268966789000032, 50.494943411000051 ], [ -120.268982339, 50.494673919000093 ], [ -120.270249770999953, 50.494703667000039 ], [ -120.270343018999981, 50.493086716000114 ], [ -120.271610408999919, 50.493116449000063 ], [ -120.271594875999966, 50.493385941000021 ], [ -120.272017341999941, 50.49339584900013 ], [ -120.271970746999983, 50.494204327000084 ], [ -120.271548273999912, 50.494194419000095 ], [ -120.271470597999965, 50.495541880000097 ], [ -120.271893085, 50.495551789000103 ], [ -120.271877551999964, 50.495821282000058 ], [ -120.27272252899995, 50.495841095000081 ], [ -120.272706998999951, 50.496110588000143 ], [ -120.274819458999985, 50.496160095000079 ], [ -120.274757388999902, 50.497238067000076 ], [ -120.272644882999941, 50.497188558000062 ], [ -120.272660413999958, 50.496919065000078 ], [ -120.271815417999974, 50.496899250000119 ], [ -120.271768811999905, 50.497707728000108 ], [ -120.270078794999975, 50.4976680790001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999994024667514", "sL_AssetLoss": "164.00761", "sL_BldgLoss": "164.00663", "sL_StrLoss": "164", "sL_NStrLoss": "0.00663", "sL_ContLoss": "0.00098", "geom_point": "0101000020E610000048E117EAF2135EC000EBCC985D4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.309111795999954, 50.579046153000029 ], [ -120.314744448999974, 50.579334579000047 ], [ -120.314291078999958, 50.582916507000029 ], [ -120.3086579799999, 50.582628059000122 ], [ -120.309111795999954, 50.579046153000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7467500", "BldgCostT": "5150000", "sL_LossRatio": "0.999992386061941", "sL_AssetLoss": "958.242626", "sL_BldgLoss": "958.23533", "sL_StrLoss": "958.2", "sL_NStrLoss": "0.03533", "sL_ContLoss": "0.007296", "geom_point": "0101000020E61000007921BAF386145EC07B4A31B4F84B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.315081715999924, 50.598888803000122 ], [ -120.315535181999934, 50.595306940000057 ], [ -120.319533182999933, 50.595511382000019 ], [ -120.319547599999979, 50.59525767500012 ], [ -120.317834367999978, 50.595170085000085 ], [ -120.31785139099999, 50.595035561000024 ], [ -120.314966482999964, 50.594888007000058 ], [ -120.315419917999932, 50.591306129 ], [ -120.317848447999936, 50.591430345000042 ], [ -120.318246569999957, 50.588283587000063 ], [ -120.319603451999953, 50.588352968000081 ], [ -120.31963609899999, 50.588094841000071 ], [ -120.319836004999942, 50.586514220000048 ], [ -120.325469660999914, 50.58680210100006 ], [ -120.325017068999983, 50.590384040000025 ], [ -120.323660119999928, 50.59031472700012 ], [ -120.323465702999968, 50.591852851000084 ], [ -120.323921860999974, 50.591876154000133 ], [ -120.323539119999964, 50.594904120000116 ], [ -120.326978863999955, 50.595079776000013 ], [ -120.326971149999949, 50.595140835000095 ], [ -120.326526310999924, 50.598661686000177 ], [ -120.322712012999929, 50.598466897000037 ], [ -120.322191793999934, 50.598454932000038 ], [ -120.321063260999978, 50.598428966000014 ], [ -120.321065883999921, 50.598382791000063 ], [ -120.320891161999953, 50.59837386300017 ], [ -120.32105486599994, 50.597079520000051 ], [ -120.320982380999951, 50.597077852000069 ], [ -120.320716889999957, 50.599176920000062 ], [ -120.315081715999924, 50.598888803000122 ] ], [ [ -120.321225007999942, 50.595734181000125 ], [ -120.32127411, 50.59534591800012 ], [ -120.32081576299997, 50.595322494000087 ], [ -120.320808251999964, 50.595454739000083 ], [ -120.321231647999923, 50.595464482000061 ], [ -120.321216340999939, 50.595733981000066 ], [ -120.321225007999942, 50.595734181000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999938280068716", "sL_AssetLoss": "200.097436", "sL_BldgLoss": "200.085086", "sL_StrLoss": "200.000686", "sL_NStrLoss": "0.0844", "sL_ContLoss": "0.01235", "geom_point": "0101000020E610000005ADB81F0D135EC097BCE8C89D404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.295594971999961, 50.50246515700011 ], [ -120.30121797399994, 50.502754295000059 ], [ -120.300764299999955, 50.50633650200006 ], [ -120.299868121999936, 50.506290440000107 ], [ -120.299757304999957, 50.507165224000019 ], [ -120.294133761999944, 50.506876015000032 ], [ -120.294587968999977, 50.503293837000093 ], [ -120.295484081999973, 50.503339942000103 ], [ -120.295594971999961, 50.50246515700011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "154.5", "sL_BldgLoss": "154.5", "sL_StrLoss": "154.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E6BC760470C5EC0B782E0D05F4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.189665150999986, 50.580054552000028 ], [ -120.189196511999967, 50.579376048000057 ], [ -120.188741362999977, 50.578947475000049 ], [ -120.188676593999915, 50.578848044 ], [ -120.18853803699993, 50.578728656000095 ], [ -120.193800744, 50.579003888000059 ], [ -120.193731648999943, 50.579538408000055 ], [ -120.193678924999944, 50.579946280000051 ], [ -120.194206895999926, 50.579973878000047 ], [ -120.193743929999954, 50.583555307 ], [ -120.190455652999987, 50.583383382000086 ], [ -120.190399380999949, 50.5833367870001 ], [ -120.19013477, 50.582905577000083 ], [ -120.190082383999965, 50.581973468000093 ], [ -120.189944273999942, 50.581474080000071 ], [ -120.190051184999945, 50.581119171000083 ], [ -120.190306293999953, 50.580539712000075 ], [ -120.190109331999963, 50.580429352000117 ], [ -120.189906052999945, 50.580282496000066 ], [ -120.189665150999986, 50.580054552000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "282.9", "sL_BldgLoss": "282.9", "sL_StrLoss": "282.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FCE8F1AAE0D5EC073096E41C23B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.212213740999985, 50.464207028000061 ], [ -120.217831437999962, 50.46450039899999 ], [ -120.217371530999955, 50.468082432000088 ], [ -120.217268731000033, 50.468077066000077 ], [ -120.217136678999935, 50.469105435000067 ], [ -120.216633023000014, 50.469079145000123 ], [ -120.216589473999974, 50.469418247000064 ], [ -120.215215749999942, 50.469346527 ], [ -120.215201716999957, 50.469455779000064 ], [ -120.209583418999927, 50.469162277000059 ], [ -120.210043955999978, 50.465580281000044 ], [ -120.21034193, 50.465595855000068 ], [ -120.210405467999976, 50.465101588000088 ], [ -120.210567558999969, 50.465110060000079 ], [ -120.210650092999984, 50.464467992000017 ], [ -120.212169998999912, 50.464547415 ], [ -120.212213740999985, 50.464207028000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "276.1", "sL_BldgLoss": "276.1", "sL_StrLoss": "276.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000551F406DF1125EC0B2B6EF728D484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.293512629999967, 50.56401665500006 ], [ -120.29914330299999, 50.564305876000027 ], [ -120.298688842999965, 50.567887806000051 ], [ -120.29867817199991, 50.567887258000034 ], [ -120.298458732999947, 50.569616606000068 ], [ -120.292827399999979, 50.569327353000055 ], [ -120.293282340999966, 50.56574545400013 ], [ -120.293293010999932, 50.565746002000019 ], [ -120.293512629999967, 50.56401665500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999951958315584", "sL_AssetLoss": "175.05631", "sL_BldgLoss": "175.0479", "sL_StrLoss": "175", "sL_NStrLoss": "0.0479", "sL_ContLoss": "0.00841", "geom_point": "0101000020E6100000D2BF0BF888135EC0702DEE9A6B3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.302652370999922, 50.462285726000061 ], [ -120.308270412999931, 50.462574521000072 ], [ -120.307817700999948, 50.466156934000054 ], [ -120.302199216999981, 50.46586811800006 ], [ -120.302652370999922, 50.462285726000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999960258723118", "sL_AssetLoss": "162.04814", "sL_BldgLoss": "162.0417", "sL_StrLoss": "162", "sL_NStrLoss": "0.0417", "sL_ContLoss": "0.00644", "geom_point": "0101000020E6100000AC78C0C80D125EC07AD8B04B79494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.279503466999969, 50.572078248000103 ], [ -120.285135059999988, 50.572368175000094 ], [ -120.284679404000016, 50.57595001300011 ], [ -120.279047367999965, 50.575660063000072 ], [ -120.279503466999969, 50.572078248000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999964234013012", "sL_AssetLoss": "85.136753", "sL_BldgLoss": "85.133708", "sL_StrLoss": "85.100608", "sL_NStrLoss": "0.0331", "sL_ContLoss": "0.003045", "geom_point": "0101000020E610000023117DEBC1105EC05829901B764D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.259247146999925, 50.603230550000028 ], [ -120.264882507999971, 50.603521491000073 ], [ -120.264595279999952, 50.605769758000108 ], [ -120.264424924999972, 50.6071031110001 ], [ -120.262637427999934, 50.607010858000123 ], [ -120.258789118999914, 50.606812148000131 ], [ -120.258907629999896, 50.605885499000067 ], [ -120.259247146999925, 50.603230550000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999985400508823", "sL_AssetLoss": "163.01938", "sL_BldgLoss": "163.017", "sL_StrLoss": "163", "sL_NStrLoss": "0.017", "sL_ContLoss": "0.00238", "geom_point": "0101000020E61000003A3413A9BC0F5EC016C9B2BB1B4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.24330244099994, 50.592659656000109 ], [ -120.248936373999967, 50.592951407000051 ], [ -120.248477630000011, 50.596533005000026 ], [ -120.242843251999901, 50.5962412330001 ], [ -120.24330244099994, 50.592659656000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999901385471103", "sL_AssetLoss": "103.12882", "sL_BldgLoss": "103.11865", "sL_StrLoss": "103.00225", "sL_NStrLoss": "0.1164", "sL_ContLoss": "0.01017", "geom_point": "0101000020E6100000A722B29BDB145EC0BDD930548F434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.323316739999939, 50.525876559000061 ], [ -120.328942838999978, 50.526164285000043 ], [ -120.328491132999886, 50.529746502000123 ], [ -120.322864589999938, 50.529458755000078 ], [ -120.323316739999939, 50.525876559000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "132", "sL_BldgLoss": "132", "sL_StrLoss": "132", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DCC20CF0910D5EC0D544FA4825494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.209447627999936, 50.569512815000039 ], [ -120.215078444999932, 50.569806287000098 ], [ -120.214820195999934, 50.571811842000024 ], [ -120.214617242999935, 50.573387846000109 ], [ -120.208985980999941, 50.573094353000101 ], [ -120.20915075899994, 50.571816048000123 ], [ -120.209447627999936, 50.569512815000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999983723758857", "sL_AssetLoss": "154.21251", "sL_BldgLoss": "154.21", "sL_StrLoss": "154.2", "sL_NStrLoss": "0.01", "sL_ContLoss": "0.00251", "geom_point": "0101000020E61000003A70B5EB31165EC0CB719F03684B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.344205417999959, 50.587177388000093 ], [ -120.349839311999943, 50.587464036000036 ], [ -120.349533004999941, 50.589898771000101 ], [ -120.34938865399999, 50.591046072000118 ], [ -120.345537163999936, 50.59085014300009 ], [ -120.343754313999966, 50.590759402000032 ], [ -120.344205417999959, 50.587177388000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "137.8", "sL_BldgLoss": "137.8", "sL_StrLoss": "137.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D31A20244D0F5EC081D75F5DB23D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.238556836999948, 50.480175450000097 ], [ -120.242122421999937, 50.480360766000075 ], [ -120.241664281999959, 50.483942830000139 ], [ -120.236044007999965, 50.483650672000067 ], [ -120.236169759999925, 50.482668471000082 ], [ -120.236502592999955, 50.480068631000044 ], [ -120.238556836999948, 50.480175450000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "195.7", "sL_BldgLoss": "195.7", "sL_StrLoss": "195.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056A49959D1105EC0F805EC51D5414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.258377416999977, 50.515468544000079 ], [ -120.258390101999922, 50.515369145000079 ], [ -120.257968545999944, 50.515347321000021 ], [ -120.25848278199993, 50.515159890000064 ], [ -120.258970906999949, 50.514766796000082 ], [ -120.259142410999942, 50.514221310000053 ], [ -120.259559088999978, 50.51385390600008 ], [ -120.259963609999957, 50.513683009 ], [ -120.260175903999979, 50.513436589000079 ], [ -120.260402178999982, 50.513181691000028 ], [ -120.261251300999973, 50.512903905000037 ], [ -120.261709686999922, 50.512537901000044 ], [ -120.262647393999899, 50.512415411000063 ], [ -120.26376151399991, 50.512432497000049 ], [ -120.263962112999963, 50.512374102000095 ], [ -120.264209489999971, 50.511993908000115 ], [ -120.264189058999975, 50.511767824000074 ], [ -120.264478358999938, 50.511782787000065 ], [ -120.266456357999957, 50.511885065000044 ], [ -120.265999830999988, 50.515467089000083 ], [ -120.265419485999956, 50.515437085000023 ], [ -120.265378219999903, 50.515760803000013 ], [ -120.264741167999944, 50.515727863000016 ], [ -120.264698808999967, 50.516060117000023 ], [ -120.26396829399998, 50.516022341000088 ], [ -120.263918095999927, 50.516416035000141 ], [ -120.258293630999958, 50.51612501500005 ], [ -120.258377416999977, 50.515468544000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999705907503115", "sL_AssetLoss": "125.1307", "sL_BldgLoss": "125.0939", "sL_StrLoss": "125", "sL_NStrLoss": "0.0939", "sL_ContLoss": "0.0368", "geom_point": "0101000020E6100000C12364FF00215EC0DB1434D2770A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.513762270999976, 50.08361290500001 ], [ -120.5141949699999, 50.080027908000076 ], [ -120.517753073999984, 50.080205601000088 ], [ -120.517445583999972, 50.08261300800006 ], [ -120.517410856999945, 50.082884748000062 ], [ -120.516996959999958, 50.082901496000055 ], [ -120.51689907199993, 50.082949805000069 ], [ -120.516879203999949, 50.08295962400004 ], [ -120.516811318999913, 50.0832204230001 ], [ -120.516673238999942, 50.083354176000029 ], [ -120.516553005999938, 50.083421210000033 ], [ -120.516396612000023, 50.083462999000105 ], [ -120.516229209999977, 50.083468161000063 ], [ -120.515481066999911, 50.08336137600002 ], [ -120.515329800999936, 50.083395294000098 ], [ -120.515250887999954, 50.083503157000102 ], [ -120.515253000999962, 50.083681866000077 ], [ -120.515253066999961, 50.08368737000017 ], [ -120.513762270999976, 50.08361290500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999859191511912", "sL_AssetLoss": "210.2146", "sL_BldgLoss": "210.185", "sL_StrLoss": "210", "sL_NStrLoss": "0.185", "sL_ContLoss": "0.0296", "geom_point": "0101000020E610000067A0CFD382045EC0B4750D86FC1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.067914029999969, 50.208855629000084 ], [ -120.073401171999947, 50.209151123000055 ], [ -120.072932454999929, 50.212733710000109 ], [ -120.067346859999972, 50.212432913 ], [ -120.067561375999944, 50.210794899000142 ], [ -120.067841480999959, 50.210693802000051 ], [ -120.068407306999987, 50.210393302000071 ], [ -120.06821200399996, 50.210118507000054 ], [ -120.068227192999956, 50.209651303000015 ], [ -120.068076898999905, 50.209134305000063 ], [ -120.067914029999969, 50.208855629000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999933547154061", "sL_AssetLoss": "182.084", "sL_BldgLoss": "182.0719", "sL_StrLoss": "182", "sL_NStrLoss": "0.0719", "sL_ContLoss": "0.0121", "geom_point": "0101000020E610000024A33D3DFA005EC05F97657881214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.011900631999978, 50.263711184000115 ], [ -120.012374696, 50.260129093000074 ], [ -120.013416595999956, 50.260185683000067 ], [ -120.01341944899994, 50.260164117000073 ], [ -120.019010562999952, 50.260467624000036 ], [ -120.018657253999933, 50.26314027800008 ], [ -120.018353710000028, 50.26308478600005 ], [ -120.017343600999965, 50.263086200000039 ], [ -120.016905816999966, 50.262912506000127 ], [ -120.015319899999966, 50.262908196000069 ], [ -120.014388600999965, 50.263010696000059 ], [ -120.013982988999956, 50.263215811000123 ], [ -120.013432219999927, 50.263714299000171 ], [ -120.01313668799996, 50.26377831900006 ], [ -120.011900631999978, 50.263711184000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999674098700322", "sL_AssetLoss": "399.8143", "sL_BldgLoss": "399.684", "sL_StrLoss": "399", "sL_NStrLoss": "0.684", "sL_ContLoss": "0.1303", "geom_point": "0101000020E610000067ADB200B71C5EC03C676E32E8084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.446042791999957, 50.071817082000052 ], [ -120.446084033999952, 50.071479495000077 ], [ -120.44560719899999, 50.071455371000077 ], [ -120.445643309999951, 50.071159818000105 ], [ -120.445405111999918, 50.071147766000081 ], [ -120.445468920999971, 50.070625523000054 ], [ -120.445363045999954, 50.07062016600004 ], [ -120.445801002999957, 50.06703537800005 ], [ -120.451371189, 50.067317072000066 ], [ -120.451307453999945, 50.067839320000097 ], [ -120.451413321999951, 50.067844672000049 ], [ -120.451377252999933, 50.068140228000033 ], [ -120.451615435999912, 50.06815226700008 ], [ -120.451574237000031, 50.068489858000099 ], [ -120.452051042999983, 50.068513956000125 ], [ -120.451613562999938, 50.072098763000085 ], [ -120.446042791999957, 50.071817082000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999680763346878", "sL_AssetLoss": "257.48923", "sL_BldgLoss": "257.40703", "sL_StrLoss": "257.00533", "sL_NStrLoss": "0.4017", "sL_ContLoss": "0.0822", "geom_point": "0101000020E6100000CBAF590D8D335EC069E68719B32B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.803138987999958, 50.344110427000032 ], [ -120.803371284999926, 50.342090584000083 ], [ -120.801810876999966, 50.342017195000082 ], [ -120.802223238999915, 50.338432296000036 ], [ -120.807062357999911, 50.3386598210001 ], [ -120.807828956999927, 50.338695845000068 ], [ -120.807596875999977, 50.340715705000058 ], [ -120.809157246999987, 50.340789014000052 ], [ -120.808745412999983, 50.344373927000028 ], [ -120.80458123499993, 50.344178240000105 ], [ -120.803138987999958, 50.344110427000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999920420265433", "sL_AssetLoss": "284.24322", "sL_BldgLoss": "284.2206", "sL_StrLoss": "284.1", "sL_NStrLoss": "0.1206", "sL_ContLoss": "0.02262", "geom_point": "0101000020E6100000B2DFEA6BA3145EC0438A643C08264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31974644, 50.295949608000079 ], [ -120.319936699999985, 50.294434919000032 ], [ -120.325534040999941, 50.294722900000053 ], [ -120.32549131399999, 50.295063396000074 ], [ -120.325687758999976, 50.295073497000097 ], [ -120.325238099, 50.298656737000023 ], [ -120.325104930999899, 50.298649888000085 ], [ -120.32500773299995, 50.299424340000037 ], [ -120.324903820999964, 50.299418996000036 ], [ -120.324853647999959, 50.299818743000088 ], [ -120.319255681999934, 50.299530729000026 ], [ -120.31970582400001, 50.295947517000094 ], [ -120.31974644, 50.295949608000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999957207608872", "sL_AssetLoss": "400.30481", "sL_BldgLoss": "400.28768", "sL_StrLoss": "400.2", "sL_NStrLoss": "0.08768", "sL_ContLoss": "0.01713", "geom_point": "0101000020E610000001B75982ED015EC0C958AF1A321B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.029417412, 50.215074468000047 ], [ -120.029449099999965, 50.214834072000038 ], [ -120.02889181099998, 50.214803854000081 ], [ -120.028925846999968, 50.21454566600007 ], [ -120.028543717999966, 50.214524945000093 ], [ -120.028574494999958, 50.214291483000082 ], [ -120.0250381199999, 50.214099650000065 ], [ -120.025053804999942, 50.21398073400011 ], [ -120.024405106999893, 50.213945533000128 ], [ -120.024877665999938, 50.210363158000028 ], [ -120.026033200999919, 50.210425860000051 ], [ -120.026135953, 50.209646685000109 ], [ -120.026618612999982, 50.209672871000087 ], [ -120.026619731, 50.209664397000083 ], [ -120.032204714999963, 50.20996725500008 ], [ -120.032134751999976, 50.210498326000042 ], [ -120.03526365, 50.21066787300007 ], [ -120.035117812999914, 50.211775430000159 ], [ -120.035474817999912, 50.21179477 ], [ -120.035003079999953, 50.215377183000051 ], [ -120.029417412, 50.215074468000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999910584371774", "sL_AssetLoss": "209.1357", "sL_BldgLoss": "209.117", "sL_StrLoss": "209", "sL_NStrLoss": "0.117", "sL_ContLoss": "0.0187", "geom_point": "0101000020E610000005D4C4D064105EC000ED813552204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.253290081999978, 50.25462031900004 ], [ -120.253744986999976, 50.251037171000071 ], [ -120.254358541999963, 50.251069154000106 ], [ -120.254438490999974, 50.250439286000052 ], [ -120.254592291, 50.250447303000044 ], [ -120.254645104999909, 50.250031190000058 ], [ -120.260024786000017, 50.25031146500006 ], [ -120.259597398999958, 50.250460599000078 ], [ -120.258618274999947, 50.251354994000096 ], [ -120.25749689899996, 50.252094187000118 ], [ -120.25751690899996, 50.252481593000056 ], [ -120.257603594999964, 50.252681007000042 ], [ -120.257936307999955, 50.252967203000026 ], [ -120.258013316, 50.253356006000047 ], [ -120.258208809999985, 50.2536038000001 ], [ -120.258914194999946, 50.254043888000091 ], [ -120.25920400199999, 50.254113687 ], [ -120.259611567999983, 50.254030020000108 ], [ -120.2595755789999, 50.254313774000103 ], [ -120.258961977999945, 50.254281820000088 ], [ -120.258882083999936, 50.25491168900006 ], [ -120.253290081999978, 50.25462031900004 ] ], [ [ -120.254710308999975, 50.254177805000047 ], [ -120.254602905999931, 50.254093803000082 ], [ -120.25443019, 50.254162097000055 ], [ -120.25428939699998, 50.254428496000038 ], [ -120.254467208999984, 50.254495390000081 ], [ -120.254699896999981, 50.254375797000108 ], [ -120.254710308999975, 50.254177805000047 ] ], [ [ -120.255424084999945, 50.253250606000044 ], [ -120.255287716999959, 50.253166596000071 ], [ -120.255104690999943, 50.253170909000069 ], [ -120.255117178999924, 50.253441494000072 ], [ -120.255336596999939, 50.253535500000034 ], [ -120.255423212999958, 50.253502688000069 ], [ -120.255424084999945, 50.253250606000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999973564482823", "sL_AssetLoss": "79.816861", "sL_BldgLoss": "79.814751", "sL_StrLoss": "79.800421", "sL_NStrLoss": "0.01433", "sL_ContLoss": "0.00211", "geom_point": "0101000020E6100000C0726B6FC3FF5DC0BFF9C385F2264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.994100856999921, 50.306011406000088 ], [ -119.994114363999955, 50.305909754000083 ], [ -119.992433608999988, 50.305818262000102 ], [ -119.992909652999955, 50.302236448 ], [ -119.99850582, 50.302540976000024 ], [ -119.998492323999983, 50.30264262900004 ], [ -120.000172972999934, 50.302734030000046 ], [ -119.999697498999936, 50.306315873000074 ], [ -119.994100856999921, 50.306011406000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999830717925279", "sL_AssetLoss": "118.146", "sL_BldgLoss": "118.126", "sL_StrLoss": "118", "sL_NStrLoss": "0.126", "sL_ContLoss": "0.02", "geom_point": "0101000020E61000000D3EE666AC285EC003DC7FA656294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.635140651999961, 50.321087106000078 ], [ -120.636793883999957, 50.321120737000115 ], [ -120.636768580999941, 50.321630785000096 ], [ -120.636713637999932, 50.32273819800011 ], [ -120.636371757999953, 50.322731245000071 ], [ -120.636292566999941, 50.322729634000019 ], [ -120.636279827999928, 50.322986328000148 ], [ -120.636225677999974, 50.324077518000088 ], [ -120.635889024999955, 50.324070669000037 ], [ -120.635804594999954, 50.324068952000125 ], [ -120.635791012999974, 50.324342613000091 ], [ -120.635751069999955, 50.325147258000122 ], [ -120.63550281499991, 50.325142206000116 ], [ -120.634487794999927, 50.325121551000088 ], [ -120.634661828999981, 50.32161705900009 ], [ -120.635082890999954, 50.321625628000049 ], [ -120.635109656999958, 50.321086475000051 ], [ -120.635140651999961, 50.321087106000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999552489668517", "sL_AssetLoss": "258.0946", "sL_BldgLoss": "257.9791", "sL_StrLoss": "257.0231", "sL_NStrLoss": "0.956", "sL_ContLoss": "0.1155", "geom_point": "0101000020E6100000A31CD49708295EC0334C1A6159284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.639212342999912, 50.314844106000066 ], [ -120.639233153999939, 50.314424093000099 ], [ -120.638812155999958, 50.314415539000052 ], [ -120.638798795999946, 50.314685117000124 ], [ -120.637535793999987, 50.314659447000061 ], [ -120.637564649999902, 50.314077489000027 ], [ -120.637589258999952, 50.313581138000117 ], [ -120.638010250999955, 50.313589696000037 ], [ -120.638023611999955, 50.313320118000071 ], [ -120.639707568999953, 50.31335433400006 ], [ -120.639720922, 50.313084756000094 ], [ -120.639844779999933, 50.313087271000093 ], [ -120.640141907999919, 50.313093306000034 ], [ -120.640155258999982, 50.312823727000172 ], [ -120.640997230000011, 50.312840823000023 ], [ -120.641010574999939, 50.312571245000086 ], [ -120.641431557999937, 50.31257979100014 ], [ -120.641458243999978, 50.31204063400002 ], [ -120.641879222999989, 50.312049178000038 ], [ -120.641892562999956, 50.311779599000047 ], [ -120.643155493, 50.311805221000043 ], [ -120.643142160999943, 50.312074800000048 ], [ -120.643984118999953, 50.312091873000099 ], [ -120.643970788999965, 50.312361451000108 ], [ -120.644391771999921, 50.312369986000071 ], [ -120.644365116999921, 50.312909143000148 ], [ -120.64478610399999, 50.312917677000051 ], [ -120.644652847999978, 50.31561346400013 ], [ -120.644231837999911, 50.315604930000092 ], [ -120.64421850799999, 50.315874508 ], [ -120.64379749699999, 50.315865973000037 ], [ -120.643784164999957, 50.316135551000045 ], [ -120.643363148999967, 50.316127014000045 ], [ -120.643336479999959, 50.316666171000065 ], [ -120.642915460000012, 50.316657632000101 ], [ -120.642902122999914, 50.316927210000131 ], [ -120.642060080999897, 50.31691012800016 ], [ -120.642046738999966, 50.31717970600004 ], [ -120.640783666999965, 50.317154071000076 ], [ -120.640730269999949, 50.318232382000097 ], [ -120.640309235999965, 50.318223833000069 ], [ -120.64026917799994, 50.319032566000011 ], [ -120.639848138, 50.319024015000103 ], [ -120.639834782999955, 50.319293594000094 ], [ -120.637626795999964, 50.319248730000027 ], [ -120.637308534999974, 50.319242259000063 ], [ -120.637348644999946, 50.318433528000057 ], [ -120.637916115999943, 50.318445064000073 ], [ -120.638190712000011, 50.318450645000048 ], [ -120.638234885999964, 50.317559562000071 ], [ -120.638257531999912, 50.317102758000111 ], [ -120.638398296, 50.31710561900011 ], [ -120.638678552999949, 50.317111315000083 ], [ -120.638723629999987, 50.316201824000096 ], [ -120.638745356999905, 50.315763427000043 ], [ -120.638880444999955, 50.315766172000068 ], [ -120.639166366999973, 50.315771980000115 ], [ -120.639212342999912, 50.314844106000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "0.999758276577327", "sL_AssetLoss": "704.1105", "sL_BldgLoss": "703.9403", "sL_StrLoss": "703", "sL_NStrLoss": "0.9403", "sL_ContLoss": "0.1702", "geom_point": "0101000020E61000008C9C2A84BA335EC0917262D5412A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.8033033299999, 50.331369007000063 ], [ -120.803467773999955, 50.329938705000131 ], [ -120.806981708999928, 50.330103937000075 ], [ -120.807085753999971, 50.329198312000102 ], [ -120.806969818999974, 50.329192862000099 ], [ -120.807381655999933, 50.325607886000093 ], [ -120.808119983999973, 50.32564259100009 ], [ -120.808230972999979, 50.324676204000106 ], [ -120.810080377999938, 50.324763111000067 ], [ -120.813835022000021, 50.324939453000134 ], [ -120.813549528999928, 50.327427841000066 ], [ -120.81376079199994, 50.327437760000088 ], [ -120.813349442999979, 50.331022751000077 ], [ -120.812515683999976, 50.330983605000029 ], [ -120.812499010999957, 50.331128871000068 ], [ -120.808984977999955, 50.330963815000089 ], [ -120.808984087999931, 50.330971562000045 ], [ -120.809846371999981, 50.331012074000064 ], [ -120.809434679999981, 50.334597035000101 ], [ -120.807385460999981, 50.334500746000067 ], [ -120.807319600999961, 50.335073973000121 ], [ -120.807309521999969, 50.335161683000116 ], [ -120.801704246999975, 50.334898107000043 ], [ -120.802116552999948, 50.331313177000055 ], [ -120.8033033299999, 50.331369007000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999837481416493", "sL_AssetLoss": "233.2041", "sL_BldgLoss": "233.1662", "sL_StrLoss": "233", "sL_NStrLoss": "0.1662", "sL_ContLoss": "0.0379", "geom_point": "0101000020E610000098B02E5586275EC037DCECB45A1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.61499154, 50.227401736000054 ], [ -120.620582435999921, 50.227674804000046 ], [ -120.620156731999913, 50.231259522000094 ], [ -120.614565396999978, 50.230986434000059 ], [ -120.61499154, 50.227401736000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999784895351589", "sL_AssetLoss": "223.1472", "sL_BldgLoss": "223.0992", "sL_StrLoss": "223", "sL_NStrLoss": "0.0992", "sL_ContLoss": "0.048", "geom_point": "0101000020E610000035BB8B830D335EC0B5D0A5EAE42F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.798089006999959, 50.372388819000044 ], [ -120.800567232999924, 50.372505367000016 ], [ -120.800573619999938, 50.372509699000048 ], [ -120.800696343999959, 50.372654851000064 ], [ -120.800299974999987, 50.376096948000097 ], [ -120.800278428999931, 50.376095935000137 ], [ -120.794689665999911, 50.375833030000067 ], [ -120.795102900999964, 50.372248312000053 ], [ -120.798089006999959, 50.372388819000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311833", "BldgCostT": "3663333", "sL_LossRatio": "0.999957833649602", "sL_AssetLoss": "721.19118", "sL_BldgLoss": "721.16077", "sL_StrLoss": "721.00107", "sL_NStrLoss": "0.1597", "sL_ContLoss": "0.03041", "geom_point": "0101000020E61000003B69A70781205EC0862D0B6029194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.497833386999957, 50.206221394000089 ], [ -120.497903892999943, 50.204873621000104 ], [ -120.497483904, 50.204864570000112 ], [ -120.497610824999953, 50.202438580000013 ], [ -120.498030793999959, 50.202447630000052 ], [ -120.498058991999983, 50.201908521000092 ], [ -120.498478955999957, 50.201917569000031 ], [ -120.49850714899999, 50.201378460000058 ], [ -120.498927107999975, 50.20138750600006 ], [ -120.498983479999964, 50.200309287000067 ], [ -120.49940343199998, 50.200318332000052 ], [ -120.49947387899999, 50.198970557000038 ], [ -120.499893818999979, 50.19897959900004 ], [ -120.499907905999976, 50.198710045000048 ], [ -120.500327841999976, 50.198719086000025 ], [ -120.500356009999933, 50.198179974000048 ], [ -120.500775941999962, 50.198189015000018 ], [ -120.50079002399994, 50.197919458000058 ], [ -120.501209953999933, 50.197928497000099 ], [ -120.501224032999971, 50.197658943000114 ], [ -120.501643961999932, 50.197667978000034 ], [ -120.501672113999945, 50.197128867000067 ], [ -120.502092036999969, 50.197137902000122 ], [ -120.502106109999914, 50.196868346000066 ], [ -120.502526030999945, 50.196877380000025 ], [ -120.50255417399994, 50.196338268000069 ], [ -120.502974090999928, 50.196347299000152 ], [ -120.502988158, 50.19607774200005 ], [ -120.503408073999978, 50.196086773000047 ], [ -120.503422137999948, 50.195817217000084 ], [ -120.503842052, 50.195826245000092 ], [ -120.503856113999973, 50.195556689000092 ], [ -120.504276024999967, 50.195565715000029 ], [ -120.504290084, 50.195296160000076 ], [ -120.504709993999953, 50.195305185000038 ], [ -120.504724051000011, 50.195035629000095 ], [ -120.504304145999981, 50.195026603000038 ], [ -120.50434341, 50.194273789000064 ], [ -120.504452116999971, 50.194220208000068 ], [ -120.506025920999974, 50.194254024000031 ], [ -120.50599782099998, 50.194793138000051 ], [ -120.506837628999946, 50.194811174000037 ], [ -120.506851674999908, 50.194541617000041 ], [ -120.507691480999952, 50.194559647000091 ], [ -120.507705519999945, 50.194290090000088 ], [ -120.508125422999953, 50.194299103000112 ], [ -120.508139459999938, 50.194029546000095 ], [ -120.508559356999925, 50.194038556000088 ], [ -120.508573394999942, 50.193769 ], [ -120.50899328899996, 50.193778009000035 ], [ -120.50900732299999, 50.193508451000085 ], [ -120.509427217999985, 50.193517459000049 ], [ -120.509441247000012, 50.193247902000117 ], [ -120.509861139999927, 50.193256908000052 ], [ -120.509889194999943, 50.192717793 ], [ -120.510309082999939, 50.192726798000081 ], [ -120.510323105999959, 50.192457240000081 ], [ -120.510742991999933, 50.192466243000069 ], [ -120.51075701399999, 50.192196686000031 ], [ -120.511176897999945, 50.192205686000044 ], [ -120.511190917, 50.191936129000098 ], [ -120.512030678999949, 50.191954127000052 ], [ -120.512044695999961, 50.191684569000117 ], [ -120.512464574999939, 50.191693565000037 ], [ -120.512478586000015, 50.19142400700013 ], [ -120.512898462999928, 50.191433001000043 ], [ -120.512912473999975, 50.191163444000075 ], [ -120.51333234899991, 50.191172437000063 ], [ -120.513360361999986, 50.190633321000043 ], [ -120.513780231999959, 50.190642312000087 ], [ -120.513794235999981, 50.190372754000066 ], [ -120.514214104999937, 50.190381744 ], [ -120.514228106999951, 50.190112186000071 ], [ -120.514647973999971, 50.190121174000133 ], [ -120.514661972999988, 50.189851615000116 ], [ -120.515081836999954, 50.189860602000046 ], [ -120.515095833, 50.189591043000078 ], [ -120.515515694000015, 50.189600029000125 ], [ -120.515529688999933, 50.189330470000044 ], [ -120.51594954799998, 50.189339453000024 ], [ -120.515963539999944, 50.18906989400007 ], [ -120.516383397999945, 50.189078876000046 ], [ -120.51639738599999, 50.188809318000068 ], [ -120.516817241999931, 50.188818298000072 ], [ -120.516845213999915, 50.188279180000087 ], [ -120.517265063999915, 50.188288158000027 ], [ -120.517279047999949, 50.188018600000085 ], [ -120.517698896999946, 50.188027577000092 ], [ -120.517712878999973, 50.187758017000093 ], [ -120.518132723999912, 50.187766993000125 ], [ -120.518160681999959, 50.187227875000062 ], [ -120.519840050999932, 50.187263761000118 ], [ -120.51986798899999, 50.186724641000062 ], [ -120.520287825999901, 50.186733609000072 ], [ -120.520301791999898, 50.186464049000087 ], [ -120.519881954999917, 50.186455081000105 ], [ -120.519923859999906, 50.185646401000028 ], [ -120.52118334499994, 50.185673299000065 ], [ -120.52116938499999, 50.185942860000054 ], [ -120.521589216999971, 50.185951822000042 ], [ -120.52160317499991, 50.185682262000093 ], [ -120.522442834999978, 50.18570018300003 ], [ -120.522456786999967, 50.18543062300008 ], [ -120.522876614999973, 50.185439581000026 ], [ -120.522890564999983, 50.185170020000037 ], [ -120.52331039099991, 50.185178977000128 ], [ -120.523324340000016, 50.184909417000064 ], [ -120.524583809999939, 50.184936276000052 ], [ -120.52454198599996, 50.185744958000029 ], [ -120.524122154999986, 50.185736007000052 ], [ -120.524108210999955, 50.186005568000063 ], [ -120.523688377999974, 50.185996614000075 ], [ -120.523674432999911, 50.18626617400011 ], [ -120.522834761999931, 50.186248262000078 ], [ -120.52282081, 50.186517822000056 ], [ -120.522400972999932, 50.18650886400011 ], [ -120.522387018999936, 50.186778424000089 ], [ -120.521967179999976, 50.186769464000037 ], [ -120.521953223999944, 50.187039024000043 ], [ -120.521533382999962, 50.187030063000115 ], [ -120.521519422999944, 50.187299623000087 ], [ -120.521099578999937, 50.187290659000055 ], [ -120.52105769299996, 50.188099340000129 ], [ -120.520637843999936, 50.188090375000066 ], [ -120.520609913, 50.188629494000047 ], [ -120.520190058999944, 50.188620528000129 ], [ -120.520176091999957, 50.188890088000122 ], [ -120.519756233999914, 50.188881119000015 ], [ -120.519728293999918, 50.189420239000071 ], [ -120.519308432999949, 50.189411269000082 ], [ -120.519294459999983, 50.189680829000068 ], [ -120.518874595999947, 50.189671856000125 ], [ -120.518846644999954, 50.19021097600011 ], [ -120.518426776999931, 50.19020200300006 ], [ -120.518412798999961, 50.190471561000059 ], [ -120.51799292799997, 50.190462587000077 ], [ -120.51797894699996, 50.19073214500002 ], [ -120.517559074999951, 50.190723169000144 ], [ -120.517545091999978, 50.190992728000069 ], [ -120.517125216999943, 50.190983751000019 ], [ -120.517111230999959, 50.191253310000079 ], [ -120.516691354999949, 50.19124433000006 ], [ -120.516677365999939, 50.191513889000056 ], [ -120.516257487999923, 50.19150490800012 ], [ -120.51624349599993, 50.191774467000108 ], [ -120.515823615000031, 50.191765483000069 ], [ -120.515809619999985, 50.192035042000064 ], [ -120.515389736999964, 50.192026058000089 ], [ -120.515375741999918, 50.192295616000109 ], [ -120.514955855999972, 50.192286630000105 ], [ -120.514927858999954, 50.192825747000036 ], [ -120.514507968999965, 50.19281675900011 ], [ -120.514493966999936, 50.19308631800002 ], [ -120.51407407499994, 50.19307732900009 ], [ -120.514060069999914, 50.193346887000118 ], [ -120.513640176999957, 50.193337896000102 ], [ -120.513612162999905, 50.193877012000044 ], [ -120.51319226399994, 50.193868020000075 ], [ -120.513178254999957, 50.194137578000039 ], [ -120.512758353, 50.194128583000108 ], [ -120.512744341999976, 50.194398142000104 ], [ -120.512324438999968, 50.194389146000013 ], [ -120.512296409, 50.194928262000097 ], [ -120.511876501999922, 50.194919264000127 ], [ -120.511862485, 50.195188822000105 ], [ -120.511442575, 50.195179822000057 ], [ -120.511428555999927, 50.195449381000032 ], [ -120.510588731999974, 50.195431377000084 ], [ -120.510574705999957, 50.195700935000069 ], [ -120.51015479299997, 50.195691930000045 ], [ -120.51014076499996, 50.195961488000094 ], [ -120.509300933999924, 50.195943476000132 ], [ -120.509286901999928, 50.196213032000117 ], [ -120.508866983999937, 50.196204024000082 ], [ -120.508852948999959, 50.196473580000053 ], [ -120.508013110999954, 50.196455559000086 ], [ -120.507999068999979, 50.196725115000014 ], [ -120.50757914799999, 50.196716103000028 ], [ -120.507551061999948, 50.197255216000052 ], [ -120.507131136999988, 50.197246201000048 ], [ -120.507088998999961, 50.198054872000021 ], [ -120.506669066999962, 50.198045854000092 ], [ -120.506626919999945, 50.198854524000076 ], [ -120.506206980999977, 50.198845505000087 ], [ -120.506178878999904, 50.199384618000074 ], [ -120.505758932999939, 50.19937559800006 ], [ -120.505674604999982, 50.200992936000027 ], [ -120.506094563999966, 50.201001957000038 ], [ -120.506108615999977, 50.200732400000078 ], [ -120.506528572999954, 50.200741420000043 ], [ -120.506556672999935, 50.200202307000026 ], [ -120.506976626000011, 50.200211324000058 ], [ -120.506990671999944, 50.199941768000052 ], [ -120.508250522999987, 50.199968811000083 ], [ -120.50820840199998, 50.200777481000024 ], [ -120.507788444999974, 50.200768468000085 ], [ -120.507746313999988, 50.201577138000054 ], [ -120.506906385999969, 50.201559107000037 ], [ -120.506892336999982, 50.201828663000121 ], [ -120.506472369999955, 50.201819645000064 ], [ -120.506430215999956, 50.202628315000041 ], [ -120.506010243999953, 50.202619295000027 ], [ -120.505996188999987, 50.202888851000111 ], [ -120.505576213999959, 50.2028798300001 ], [ -120.505534040999962, 50.203688498000091 ], [ -120.505114059, 50.203679475000072 ], [ -120.505099998999953, 50.203949031000029 ], [ -120.504680014999948, 50.203940006000032 ], [ -120.504665952999986, 50.204209562000123 ], [ -120.504245966999946, 50.204200536 ], [ -120.50423190199993, 50.204470091000061 ], [ -120.503811911999918, 50.204461064000022 ], [ -120.503797844999951, 50.20473061900001 ], [ -120.50337785399995, 50.204721589000116 ], [ -120.50336378399993, 50.204991145000072 ], [ -120.502943792999986, 50.204982114000117 ], [ -120.502901571999971, 50.205790781000132 ], [ -120.502481571999908, 50.205781748000071 ], [ -120.502453421999931, 50.206320858000041 ], [ -120.501193407999892, 50.206293750000079 ], [ -120.501235656999938, 50.205485084000053 ], [ -120.501655654999979, 50.205494122000097 ], [ -120.50169789399996, 50.204685456000107 ], [ -120.502117883999972, 50.20469449100014 ], [ -120.502160113999963, 50.203885825000079 ], [ -120.502580097999953, 50.203894859000059 ], [ -120.502594171999931, 50.20362530400007 ], [ -120.503014153, 50.203634336000071 ], [ -120.503028223999976, 50.203364781000111 ], [ -120.503448201999987, 50.203373811000098 ], [ -120.503476340999924, 50.202834700000025 ], [ -120.503896314999963, 50.20284372900008 ], [ -120.504079158, 50.199339502000029 ], [ -120.504499100999951, 50.199348528000073 ], [ -120.50452722199999, 50.198809416000103 ], [ -120.50410728199995, 50.198800389000091 ], [ -120.50409322199998, 50.199069945000105 ], [ -120.503673278999912, 50.199060918000086 ], [ -120.503645146999986, 50.199600029000074 ], [ -120.503225200999978, 50.199591 ], [ -120.503211132999937, 50.199860556000047 ], [ -120.50279118499995, 50.199851525000092 ], [ -120.502763043999934, 50.200390636000058 ], [ -120.502343092, 50.200381604000135 ], [ -120.502300869999971, 50.20119027100003 ], [ -120.501880908999979, 50.201181236000082 ], [ -120.501852754999973, 50.201720347000062 ], [ -120.501432793, 50.201711311000111 ], [ -120.501390551999933, 50.202519977000065 ], [ -120.50097058099999, 50.202510938000124 ], [ -120.50092833299999, 50.203319604000079 ], [ -120.500508355999926, 50.203310564000077 ], [ -120.500437925999904, 50.204658340000059 ], [ -120.500017936999882, 50.204649299000074 ], [ -120.499989757999941, 50.205188408000055 ], [ -120.499569763999929, 50.205179364000095 ], [ -120.499527487999956, 50.205988029000117 ], [ -120.499107488999968, 50.205978984000105 ], [ -120.4990933939999, 50.206248539000143 ], [ -120.497833386999957, 50.206221394000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999993882892054", "sL_AssetLoss": "88.603962", "sL_BldgLoss": "88.60342", "sL_StrLoss": "88.6", "sL_NStrLoss": "0.00342", "sL_ContLoss": "0.000542", "geom_point": "0101000020E6100000AED53F04EC1E5EC04AE3A307B61D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.482887012999953, 50.229789281000123 ], [ -120.485372512999987, 50.229913697000029 ], [ -120.484936107999943, 50.233497876000101 ], [ -120.484184891999988, 50.233460280000081 ], [ -120.484107506999976, 50.234095694000054 ], [ -120.480245575999973, 50.233902329000074 ], [ -120.480337305999967, 50.233323089000052 ], [ -120.48041670299996, 50.233135103000066 ], [ -120.481073516999984, 50.232663703000036 ], [ -120.481084798999959, 50.231917398000036 ], [ -120.481538321999935, 50.231558504000098 ], [ -120.481957995999977, 50.231289296000085 ], [ -120.482677791999933, 50.230404891 ], [ -120.482887012999953, 50.229789281000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999923517139017", "sL_AssetLoss": "328.1781", "sL_BldgLoss": "328.153", "sL_StrLoss": "328", "sL_NStrLoss": "0.153", "sL_ContLoss": "0.0251", "geom_point": "0101000020E6100000C2FEA9C0A2165EC0805B3D484B194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.349990338999959, 50.199772781000071 ], [ -120.35002148199996, 50.199522963000099 ], [ -120.349614344999921, 50.19950207100004 ], [ -120.350061097999969, 50.195918274000064 ], [ -120.352105410999982, 50.196023167000106 ], [ -120.352209147999957, 50.195190623000059 ], [ -120.357794462999934, 50.195477007000079 ], [ -120.357696757999989, 50.196261914000068 ], [ -120.357348322999968, 50.19906083700009 ], [ -120.35571099799995, 50.198976914000113 ], [ -120.355576203999945, 50.20005927600009 ], [ -120.353436977999948, 50.199949591000056 ], [ -120.349990338999959, 50.199772781000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999524917897518", "sL_AssetLoss": "251.95645", "sL_BldgLoss": "251.83675", "sL_StrLoss": "251.00875", "sL_NStrLoss": "0.828", "sL_ContLoss": "0.1197", "geom_point": "0101000020E61000008FCF3B800B1D5EC0925B304490204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.452286968999971, 50.256802953000069 ], [ -120.452399760999953, 50.255882621000048 ], [ -120.450927184999955, 50.255808518000023 ], [ -120.450969586999946, 50.255462626000025 ], [ -120.448806937999919, 50.255353761000073 ], [ -120.448974330999974, 50.253988706000023 ], [ -120.449973109999974, 50.254374305000084 ], [ -120.450230685999927, 50.254290303000062 ], [ -120.450267100999937, 50.254110890000106 ], [ -120.450079698999986, 50.253962694000158 ], [ -120.449673406999949, 50.2539455880001 ], [ -120.449002051999912, 50.253762649000073 ], [ -120.449022575999948, 50.253595273000073 ], [ -120.449362795999946, 50.253713494000095 ], [ -120.450213314999971, 50.25380319200012 ], [ -120.450746391999971, 50.253293391000113 ], [ -120.450766596999927, 50.253159502000045 ], [ -120.450526421999953, 50.252965799000037 ], [ -120.449852700999912, 50.252960111000029 ], [ -120.449116202999946, 50.252831716000038 ], [ -120.449246405999958, 50.251769825000125 ], [ -120.454839294999914, 50.252051277000064 ], [ -120.454796925999943, 50.252397172 ], [ -120.456959447999949, 50.252505920000097 ], [ -120.456846755999976, 50.253426262000048 ], [ -120.458319264, 50.253500286000161 ], [ -120.457880495999945, 50.257084249000037 ], [ -120.452286968999971, 50.256802953000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999716615600903", "sL_AssetLoss": "253.3661", "sL_BldgLoss": "253.2943", "sL_StrLoss": "253", "sL_NStrLoss": "0.2943", "sL_ContLoss": "0.0718", "geom_point": "0101000020E6100000E7D951416A175EC0711B0DE02D174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.362889138999904, 50.182723469000102 ], [ -120.363334681000012, 50.179139541000033 ], [ -120.368918093999966, 50.179425368000103 ], [ -120.368726082999899, 50.180971502 ], [ -120.368461799999977, 50.180952109000089 ], [ -120.36792832299993, 50.180715703000047 ], [ -120.367506002999974, 50.180265585000036 ], [ -120.367512122999969, 50.180130301000133 ], [ -120.367820807999919, 50.179858308000078 ], [ -120.367746089999912, 50.179712995000067 ], [ -120.367538289999928, 50.179644601000078 ], [ -120.367513677999966, 50.1798696970001 ], [ -120.367276088999972, 50.180097499000112 ], [ -120.367275204999942, 50.180349593000173 ], [ -120.368189382, 50.181071695000099 ], [ -120.368603003999937, 50.181171396000089 ], [ -120.368700522000012, 50.181177308000024 ], [ -120.368579097999941, 50.182154977000089 ], [ -120.368472987999937, 50.183009318000082 ], [ -120.363277738999926, 50.182743372000047 ], [ -120.362889138999904, 50.182723469000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999979876930344", "sL_AssetLoss": "395.06895", "sL_BldgLoss": "395.061", "sL_StrLoss": "395", "sL_NStrLoss": "0.061", "sL_ContLoss": "0.00795", "geom_point": "0101000020E6100000A072A7CFA9255EC0DB6B830BE0144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.59085570699996, 50.164904831000051 ], [ -120.590895186999958, 50.164573708000027 ], [ -120.590580220999982, 50.164558223000029 ], [ -120.590610355999971, 50.164305474000095 ], [ -120.590090420999957, 50.164279911000065 ], [ -120.590173864999912, 50.163580126000106 ], [ -120.589733215999928, 50.16355846000004 ], [ -120.589583259999969, 50.164815905000054 ], [ -120.584000280999945, 50.164541244000063 ], [ -120.58402389099993, 50.164343475000081 ], [ -120.580326973999959, 50.164161444000115 ], [ -120.580539116999887, 50.162385521000019 ], [ -120.580799204999934, 50.162427399000094 ], [ -120.581585803999943, 50.162676607000087 ], [ -120.58195031, 50.16265809500004 ], [ -120.582551696999971, 50.16241880500008 ], [ -120.583551121999974, 50.161486006000047 ], [ -120.58443820699999, 50.161081497000069 ], [ -120.586212202999931, 50.160614400000043 ], [ -120.58772290099995, 50.160645691000049 ], [ -120.590552196999937, 50.161199695000079 ], [ -120.591301994999981, 50.161313613000068 ], [ -120.591906385999962, 50.161532990000062 ], [ -120.594129502000015, 50.162991412000054 ], [ -120.595167380999925, 50.162977094000084 ], [ -120.595693119999979, 50.163105303000059 ], [ -120.596682345999966, 50.163134046000081 ], [ -120.59643877299996, 50.16517914300006 ], [ -120.59085570699996, 50.164904831000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999848252250002", "sL_AssetLoss": "424.3885", "sL_BldgLoss": "424.3241", "sL_StrLoss": "424", "sL_NStrLoss": "0.3241", "sL_ContLoss": "0.0644", "geom_point": "0101000020E61000003324C4E83B225EC08D65B098C7164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.5381114139999, 50.175239173000129 ], [ -120.53769166899994, 50.175230272000078 ], [ -120.537677807999955, 50.175499836 ], [ -120.537258062999953, 50.175490933000113 ], [ -120.537230332999954, 50.176030060000116 ], [ -120.537650081999942, 50.176038963000046 ], [ -120.537677807999955, 50.175499836 ], [ -120.538097552999957, 50.175508738000083 ], [ -120.5381114139999, 50.175239173000129 ], [ -120.538531156999966, 50.17524807300002 ], [ -120.538545013999936, 50.174978509000049 ], [ -120.538964755, 50.174987408000064 ], [ -120.538978609999972, 50.174717844000028 ], [ -120.539398348999939, 50.174726741000029 ], [ -120.539412200999962, 50.174457176000068 ], [ -120.539831938, 50.174466072000044 ], [ -120.53984578799998, 50.174196507000019 ], [ -120.540265521999956, 50.174205402000041 ], [ -120.540279369999922, 50.173935836000084 ], [ -120.542378033999952, 50.173980284000031 ], [ -120.542336526999961, 50.174788979000084 ], [ -120.54191678799998, 50.174780091000024 ], [ -120.541902947999972, 50.175049656000056 ], [ -120.541063462999972, 50.175031878000077 ], [ -120.541049619999939, 50.175301444000134 ], [ -120.540629874999951, 50.17529255199999 ], [ -120.540616029999939, 50.175562117000041 ], [ -120.540196281999954, 50.175553224000048 ], [ -120.540182433999959, 50.175822789000058 ], [ -120.539762685999932, 50.175813894000058 ], [ -120.539748834999926, 50.176083459000075 ], [ -120.539329082999956, 50.176074562000103 ], [ -120.539315230999989, 50.176344127000021 ], [ -120.538895476999983, 50.176335229000109 ], [ -120.538853907999936, 50.177143922000042 ], [ -120.538434147999908, 50.177135022000066 ], [ -120.538406429999938, 50.17767415000008 ], [ -120.538176161999971, 50.177669267000056 ], [ -120.537893625999956, 50.180015174000133 ], [ -120.535350857999958, 50.179888961000088 ], [ -120.535343190999981, 50.180037881000032 ], [ -120.534923405999905, 50.180028969000048 ], [ -120.534909525999964, 50.180298533000098 ], [ -120.534489738999966, 50.180289619000128 ], [ -120.534475855999958, 50.180559181000085 ], [ -120.534056067999941, 50.180550266000054 ], [ -120.534042181999951, 50.180819829000022 ], [ -120.533622389999906, 50.180810911999984 ], [ -120.533608503, 50.181080474000041 ], [ -120.53318871099999, 50.181071556000063 ], [ -120.533174819999957, 50.18134111900013 ], [ -120.532335229999902, 50.181323276000036 ], [ -120.532321334999963, 50.181592839000096 ], [ -120.53148174199994, 50.181574990000058 ], [ -120.53146784099998, 50.181844552000079 ], [ -120.530628242999924, 50.18182669800008 ], [ -120.530614337999964, 50.182096261000062 ], [ -120.5301945369999, 50.182087330000087 ], [ -120.530180628999943, 50.182356893000076 ], [ -120.528501418999923, 50.182321158000065 ], [ -120.528543170999924, 50.181512473000069 ], [ -120.529382760999979, 50.181530342000023 ], [ -120.529424495999947, 50.18072165700012 ], [ -120.52900470799996, 50.180712723000035 ], [ -120.529018621, 50.180443161 ], [ -120.52859883499994, 50.180434226000123 ], [ -120.528618465999955, 50.180053999000066 ], [ -120.529143185999956, 50.179788498000164 ], [ -120.529651890999958, 50.179647062000107 ], [ -120.52989992, 50.179652340000068 ], [ -120.529903806999982, 50.179577022000082 ], [ -120.53040848699996, 50.179436701000043 ], [ -120.530658721999941, 50.179128765000087 ], [ -120.530767286999989, 50.179131074000018 ], [ -120.530774770999983, 50.178985955000122 ], [ -120.531335502999966, 50.178295906000059 ], [ -120.531436630999949, 50.178065877000108 ], [ -120.531662427999962, 50.178070677000072 ], [ -120.531688931999966, 50.177556601000035 ], [ -120.531736117, 50.177532528000022 ], [ -120.532109984999948, 50.177540476000054 ], [ -120.532120503000016, 50.177336424000011 ], [ -120.532431211999949, 50.177177905000093 ], [ -120.532577230999919, 50.177010691000085 ], [ -120.532637729999948, 50.177011977000099 ], [ -120.532741244999968, 50.17615328500009 ], [ -120.534278598999947, 50.176229644000031 ], [ -120.534292088999948, 50.175967693000075 ], [ -120.534711837999936, 50.175976607000052 ], [ -120.53476735299995, 50.174898354000064 ], [ -120.535187092999962, 50.174907265000073 ], [ -120.535211424999915, 50.174434570000109 ], [ -120.535308498999953, 50.174370127000067 ], [ -120.535634579999922, 50.174377049000064 ], [ -120.535640719999947, 50.174257727000068 ], [ -120.536149899999955, 50.174118129000064 ], [ -120.538166850999957, 50.174160917000123 ], [ -120.5381114139999, 50.175239173000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999741116877932", "sL_AssetLoss": "128.2432", "sL_BldgLoss": "128.21", "sL_StrLoss": "128", "sL_NStrLoss": "0.21", "sL_ContLoss": "0.0332", "geom_point": "0101000020E6100000C07E809C0D335EC0DB9BC693302F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.795226126999978, 50.370700156000076 ], [ -120.79563927299999, 50.36711541300005 ], [ -120.799297794999987, 50.367287550000043 ], [ -120.801248504999933, 50.367379284000066 ], [ -120.801118042999946, 50.368512553000109 ], [ -120.800942305999968, 50.368514687000079 ], [ -120.800726995999952, 50.368573105000088 ], [ -120.800578698, 50.36878678700004 ], [ -120.800320277999958, 50.368899298000031 ], [ -120.799855122999986, 50.368889301000067 ], [ -120.799331288999952, 50.368664299000066 ], [ -120.799121193999952, 50.368668604000078 ], [ -120.799023405999932, 50.369269598000052 ], [ -120.798545990999941, 50.369817912000023 ], [ -120.798348316000016, 50.369869198000067 ], [ -120.797722199999939, 50.369703997000073 ], [ -120.797490895999985, 50.369834999000041 ], [ -120.797398712999964, 50.370021607000133 ], [ -120.797479686999964, 50.37041040000009 ], [ -120.797811108999966, 50.37082179500004 ], [ -120.797312816999977, 50.370798352000051 ], [ -120.795226126999978, 50.370700156000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999741243620073", "sL_AssetLoss": "265.5007", "sL_BldgLoss": "265.432", "sL_StrLoss": "265", "sL_NStrLoss": "0.432", "sL_ContLoss": "0.0687", "geom_point": "0101000020E6100000448676CAFA325EC02CB36BEF11224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.795364752999944, 50.26439239300003 ], [ -120.795392464999935, 50.263792379000073 ], [ -120.796082375999902, 50.263805470000079 ], [ -120.796654258999965, 50.263816316000025 ], [ -120.796624923999971, 50.264451845000025 ], [ -120.799582341999979, 50.264591312000142 ], [ -120.799170441999948, 50.268176538000056 ], [ -120.794600620999958, 50.267961 ], [ -120.793573494000015, 50.267912528000117 ], [ -120.793985831999919, 50.264327321000081 ], [ -120.795364752999944, 50.26439239300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999943617825258", "sL_AssetLoss": "90.45412", "sL_BldgLoss": "90.44902", "sL_StrLoss": "90.40112", "sL_NStrLoss": "0.0479", "sL_ContLoss": "0.0051", "geom_point": "0101000020E6100000F586568260035EC0FFCDCD2FB1204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.050337356999989, 50.257197052000024 ], [ -120.050415684999976, 50.256601299000124 ], [ -120.049523370999935, 50.256553132000079 ], [ -120.049553600999957, 50.256323234000035 ], [ -120.048719658999943, 50.256278211000051 ], [ -120.049074143, 50.253582628000117 ], [ -120.050237904999946, 50.25355400400008 ], [ -120.051296504999939, 50.25392288500008 ], [ -120.051679712999942, 50.254058200000088 ], [ -120.052313189999921, 50.254056712000114 ], [ -120.053514494999945, 50.253663704000118 ], [ -120.054081101999969, 50.253373100000076 ], [ -120.054273000999899, 50.253215007000101 ], [ -120.054370836999979, 50.252975493000093 ], [ -120.054781171999963, 50.252997628000081 ], [ -120.05475096899994, 50.253227528000068 ], [ -120.055584859999939, 50.253272506000023 ], [ -120.055506604999906, 50.253868264000069 ], [ -120.05639887300002, 50.253916384000057 ], [ -120.055928352, 50.257498692000105 ], [ -120.050337356999989, 50.257197052000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "0.999881516215533", "sL_AssetLoss": "528.51114", "sL_BldgLoss": "528.44852", "sL_StrLoss": "528.00552", "sL_NStrLoss": "0.443", "sL_ContLoss": "0.06262", "geom_point": "0101000020E6100000466791D49F025EC01EA575C80BFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.042221883999929, 49.997990489000074 ], [ -120.042230251999953, 49.997926539000012 ], [ -120.041754672999957, 49.997900676000036 ], [ -120.041762470999984, 49.997841099000077 ], [ -120.041243260999948, 49.997812863000078 ], [ -120.041273408999984, 49.997582520000044 ], [ -120.040507151999932, 49.997540843000131 ], [ -120.040583342999952, 49.996958795000083 ], [ -120.040021473999971, 49.996928231000027 ], [ -120.040157210999936, 49.995891368000052 ], [ -120.039198517999935, 49.99583921100006 ], [ -120.039252806999983, 49.995424547000077 ], [ -120.038856832999912, 49.995403002000074 ], [ -120.038896980999979, 49.995096376000085 ], [ -120.038572044999981, 49.995078695000082 ], [ -120.038848521999981, 49.992967105000098 ], [ -120.03622540899994, 49.992824336000083 ], [ -120.036268979999974, 49.992491685000061 ], [ -120.036143129999957, 49.992484834000024 ], [ -120.036172264999962, 49.992262396000051 ], [ -120.03586793399991, 49.992245827000062 ], [ -120.035914747999939, 49.991888437000043 ], [ -120.035863159999977, 49.991885628000041 ], [ -120.035929240999934, 49.991381135000076 ], [ -120.035681085999897, 49.991367624000091 ], [ -120.035868425999922, 49.989937412000103 ], [ -120.034389738999934, 49.98985689200002 ], [ -120.034859192999988, 49.986273413000035 ], [ -120.040416894999922, 49.98657594500007 ], [ -120.04022971099999, 49.988006172000063 ], [ -120.041708348999947, 49.988086613000071 ], [ -120.04164233399996, 49.988591111000105 ], [ -120.041890476999981, 49.988604608000045 ], [ -120.041843712999949, 49.988962003000061 ], [ -120.041895299999965, 49.988964809000016 ], [ -120.04186619299999, 49.989187250000043 ], [ -120.042170505999962, 49.989203802000091 ], [ -120.042126979999935, 49.989536457000106 ], [ -120.042252823999974, 49.989543300000122 ], [ -120.041976524999953, 49.991654909000033 ], [ -120.044599588999986, 49.991797541000061 ], [ -120.044559482999944, 49.992104171000086 ], [ -120.0448844, 49.992121835000077 ], [ -120.044830164999922, 49.992536502000078 ], [ -120.045226116999984, 49.992558026000047 ], [ -120.045090505999951, 49.993594900000105 ], [ -120.046049157999974, 49.993647005000078 ], [ -120.045973041999957, 49.994229060000102 ], [ -120.046534882999936, 49.994259593000045 ], [ -120.046504762999987, 49.994489938000065 ], [ -120.047270973999943, 49.994531574000035 ], [ -120.047263184999977, 49.994591151000094 ], [ -120.047782360999975, 49.994619360000101 ], [ -120.047774000999979, 49.994683312000063 ], [ -120.048249550999913, 49.994709147000023 ], [ -120.047781059999963, 49.998292643000141 ], [ -120.042221883999929, 49.997990489000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999572148964502", "sL_AssetLoss": "387.0506", "sL_BldgLoss": "386.885", "sL_StrLoss": "386", "sL_NStrLoss": "0.885", "sL_ContLoss": "0.1656", "geom_point": "0101000020E610000058825A4609335EC02208461449234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.796048084999924, 50.272351290000103 ], [ -120.801645596999947, 50.272615173000098 ], [ -120.801233786999887, 50.276200370000019 ], [ -120.799165560999953, 50.276102901000108 ], [ -120.79883444599993, 50.278984020000031 ], [ -120.795393296999961, 50.278821764000085 ], [ -120.79323616399995, 50.278719996000085 ], [ -120.793648628999918, 50.275134840000099 ], [ -120.79510555399996, 50.275203579000063 ], [ -120.79571679899999, 50.275232412000086 ], [ -120.796048084999924, 50.272351290000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999546890475613", "sL_AssetLoss": "120.27997", "sL_BldgLoss": "120.22547", "sL_StrLoss": "120.00717", "sL_NStrLoss": "0.2183", "sL_ContLoss": "0.0545", "geom_point": "0101000020E6100000870C372210345EC0D8A0CC9242294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.814271778999938, 50.320423546000022 ], [ -120.81665402699997, 50.32053536700009 ], [ -120.81624297, 50.324120401000073 ], [ -120.815954623999971, 50.32410686900004 ], [ -120.815919172999926, 50.324416007000067 ], [ -120.810393513999941, 50.324156544000083 ], [ -120.810315175999946, 50.324152864000041 ], [ -120.810726702999943, 50.32056785200006 ], [ -120.811015024999989, 50.320581398000094 ], [ -120.811050505999916, 50.320272259000028 ], [ -120.814271778999938, 50.320423546000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99927363480593", "sL_AssetLoss": "161.076", "sL_BldgLoss": "160.959", "sL_StrLoss": "160", "sL_NStrLoss": "0.959", "sL_ContLoss": "0.117", "geom_point": "0101000020E61000006E5423CB741D5EC090E0C29172F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.459640876999956, 49.88749024700013 ], [ -120.459655032999962, 49.887220685000067 ], [ -120.459237818999952, 49.88721153900012 ], [ -120.459251976999937, 49.886941976000102 ], [ -120.45883476399996, 49.886932828000063 ], [ -120.45884892399999, 49.886663267000081 ], [ -120.458431714999961, 49.886654118000109 ], [ -120.458474201999934, 49.885845434000032 ], [ -120.45889140499996, 49.885854584000093 ], [ -120.458905564999924, 49.885585022000029 ], [ -120.459322765999914, 49.885594170000125 ], [ -120.459336923999899, 49.885324609000079 ], [ -120.459754122999968, 49.885333755000133 ], [ -120.45976827699999, 49.885064194000044 ], [ -120.461019867999966, 49.885091624000097 ], [ -120.461005719999946, 49.885361186000104 ], [ -120.461422920999951, 49.885370327000068 ], [ -120.461408773999921, 49.885639888000107 ], [ -120.461825976999961, 49.885649027000035 ], [ -120.461755257000021, 49.886996837000055 ], [ -120.46133804199999, 49.886987697000087 ], [ -120.461309748999966, 49.887526821000058 ], [ -120.459640876999956, 49.88749024700013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "0.999852059777673", "sL_AssetLoss": "659.65833", "sL_BldgLoss": "659.56074", "sL_StrLoss": "659.00224", "sL_NStrLoss": "0.5585", "sL_ContLoss": "0.09759", "geom_point": "0101000020E61000006F9999BAA70C5EC06D0CCF85F0144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.198668684, 50.167720008000096 ], [ -120.198681988999951, 50.167615992000066 ], [ -120.198171973999962, 50.167589095000054 ], [ -120.198189431999978, 50.167452633000025 ], [ -120.197716369999966, 50.167427684000117 ], [ -120.197739010999953, 50.167250720000027 ], [ -120.197296367999968, 50.167227372000056 ], [ -120.197303963, 50.16716801300003 ], [ -120.196751253999963, 50.167138858000087 ], [ -120.196770472999987, 50.166988667000105 ], [ -120.195607825999957, 50.166927327000032 ], [ -120.195611515999957, 50.166898499000034 ], [ -120.193079244999979, 50.166764857000103 ], [ -120.19322811899994, 50.165602115000148 ], [ -120.193334657999984, 50.164769993000043 ], [ -120.193176881999946, 50.1647616650001 ], [ -120.193241374999985, 50.164257941000066 ], [ -120.192866604999935, 50.16423815700005 ], [ -120.192897499000011, 50.163996870000119 ], [ -120.192008492999918, 50.163949935000055 ], [ -120.192183015999902, 50.162587025000072 ], [ -120.191588370999924, 50.162555626000021 ], [ -120.192047218999946, 50.158972306000059 ], [ -120.197627060999963, 50.159266812000112 ], [ -120.197602175999947, 50.159461349000097 ], [ -120.198327150999972, 50.159499593000049 ], [ -120.19831554299995, 50.159590351000055 ], [ -120.201544152999972, 50.159760606000113 ], [ -120.201440143999974, 50.160574227000048 ], [ -120.201307693999937, 50.16058019300003 ], [ -120.20094971599994, 50.160733996000118 ], [ -120.200926485999901, 50.161119999000086 ], [ -120.201356872999895, 50.161225592000072 ], [ -120.201323499999958, 50.161486638000056 ], [ -120.200620388999965, 50.161554313000032 ], [ -120.200306380999962, 50.161654000000105 ], [ -120.20058549399999, 50.161930315000056 ], [ -120.200970910999914, 50.162057099000016 ], [ -120.201208604, 50.162385356000044 ], [ -120.20108604499994, 50.163343962000035 ], [ -120.200770594999966, 50.163327332000108 ], [ -120.200747074, 50.163511280000094 ], [ -120.20107232, 50.163528427000095 ], [ -120.20106541399997, 50.163582438000013 ], [ -120.20218198799995, 50.16364129600008 ], [ -120.202159586000022, 50.163816544000078 ], [ -120.202790180999969, 50.163849780000106 ], [ -120.202782591999963, 50.163909140000072 ], [ -120.203335264999936, 50.163938266000031 ], [ -120.20331264899994, 50.164115231000054 ], [ -120.20375526399999, 50.164138554000075 ], [ -120.203737823999987, 50.164275018000041 ], [ -120.204210857999954, 50.164299942000085 ], [ -120.204197565999948, 50.164403959000012 ], [ -120.204707547999988, 50.164430828000064 ], [ -120.204417331999949, 50.166701987000103 ], [ -120.204249642999955, 50.168014176000085 ], [ -120.198668684, 50.167720008000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.99994715721435", "sL_AssetLoss": "99.540551", "sL_BldgLoss": "99.535291", "sL_StrLoss": "99.500491", "sL_NStrLoss": "0.0348", "sL_ContLoss": "0.00526", "geom_point": "0101000020E6100000138DA4939B225EC06107A59A1F134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.538325226999959, 50.147585844000098 ], [ -120.543905845999944, 50.147862823 ], [ -120.543650133999918, 50.149989746000124 ], [ -120.54362516099998, 50.150197446000085 ], [ -120.543023496, 50.150344388000043 ], [ -120.54230400199999, 50.150743188000028 ], [ -120.541478466999976, 50.151348564000081 ], [ -120.54059192499993, 50.151304567000167 ], [ -120.537893786999987, 50.151170617000091 ], [ -120.538325226999959, 50.147585844000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "151.6", "sL_BldgLoss": "151.6", "sL_StrLoss": "151.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D5ECDE864185EC000AB2347BA304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.378577993999968, 50.378750692000018 ], [ -120.384186140999972, 50.379035674000107 ], [ -120.383740279999969, 50.382618769000054 ], [ -120.378131691999926, 50.382333766000052 ], [ -120.378577993999968, 50.378750692000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999901957957265", "sL_AssetLoss": "104.037", "sL_BldgLoss": "104.0268", "sL_StrLoss": "104", "sL_NStrLoss": "0.0268", "sL_ContLoss": "0.0102", "geom_point": "0101000020E6100000C1B8E9092A095EC0DDE73A8543154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.140237195999958, 50.166971997000097 ], [ -120.139935097999967, 50.166883709000061 ], [ -120.139691011999957, 50.166920172000076 ], [ -120.139901387999913, 50.165292110000053 ], [ -120.140964293999915, 50.165348731000108 ], [ -120.141049272999936, 50.164690936000042 ], [ -120.142967925999983, 50.164793116000098 ], [ -120.146629487, 50.164988021000077 ], [ -120.146292342999956, 50.167600078000106 ], [ -120.145884, 50.167407792000112 ], [ -120.145577979999985, 50.167373697000116 ], [ -120.145130582999954, 50.167345199000103 ], [ -120.144301181999978, 50.167144393000129 ], [ -120.143364197000025, 50.167138700000081 ], [ -120.143023251999978, 50.167186818000062 ], [ -120.142870316999918, 50.167208401000039 ], [ -120.14256538199993, 50.167380801 ], [ -120.14194261499992, 50.167508991000041 ], [ -120.141522889999962, 50.167705504000025 ], [ -120.140991786999948, 50.167701196000095 ], [ -120.140677475999922, 50.167567294000037 ], [ -120.140593781999883, 50.16733240300006 ], [ -120.140237195999958, 50.166971997000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999827819349031", "sL_AssetLoss": "206.1788", "sL_BldgLoss": "206.1433", "sL_StrLoss": "206", "sL_NStrLoss": "0.1433", "sL_ContLoss": "0.0355", "geom_point": "0101000020E610000045B24F1922275EC049A99DC494134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.609911903999958, 50.15344920800009 ], [ -120.609688403999954, 50.153417799000103 ], [ -120.609111813999945, 50.153504705000088 ], [ -120.60828879599994, 50.153164311000062 ], [ -120.608062277999949, 50.152907992000038 ], [ -120.607169893999981, 50.152583205000091 ], [ -120.606194447999926, 50.152438581000077 ], [ -120.606214681999944, 50.152268333000023 ], [ -120.606304817999956, 50.1515099430001 ], [ -120.611886330999951, 50.15178347800007 ], [ -120.611836075999946, 50.152206761000045 ], [ -120.615524840999939, 50.152387380000015 ], [ -120.615257822, 50.154637749000052 ], [ -120.615240733999954, 50.154781761000024 ], [ -120.612961403999961, 50.154637003000111 ], [ -120.612023806999915, 50.154339296000053 ], [ -120.609911903999958, 50.15344920800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999823695651796", "sL_AssetLoss": "230.2836", "sL_BldgLoss": "230.243", "sL_StrLoss": "230", "sL_NStrLoss": "0.243", "sL_ContLoss": "0.0406", "geom_point": "0101000020E6100000EE2F2F7EA2095EC05F0FA28C23004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.147236723999967, 50.003120958000103 ], [ -120.14726085699999, 50.002933254000055 ], [ -120.146442638999986, 50.002889551000116 ], [ -120.146807610999971, 50.002193898000023 ], [ -120.14701000899997, 50.002091303000029 ], [ -120.147608086999966, 50.002124104000089 ], [ -120.147967781999981, 50.001934701000089 ], [ -120.147925302999965, 50.001718201000109 ], [ -120.147285504999928, 50.000964804000127 ], [ -120.147355722999976, 50.000499006000119 ], [ -120.147061304999966, 49.999583286000053 ], [ -120.146611993999969, 49.999365405000098 ], [ -120.146512281999946, 49.999191590000073 ], [ -120.146685605999949, 49.999060592000049 ], [ -120.14714121499992, 49.998928101000025 ], [ -120.147629415, 49.999408103000121 ], [ -120.148760508999899, 49.99987671100007 ], [ -120.14885620299998, 49.999879509000067 ], [ -120.149008993999956, 49.99968440900011 ], [ -120.149245485, 49.99968160700007 ], [ -120.149401901999937, 50.000117393000103 ], [ -120.149604100999952, 50.000221290000063 ], [ -120.150467618999954, 50.000251198000122 ], [ -120.150905001999959, 50.000162899000038 ], [ -120.150987886999971, 49.9999407970001 ], [ -120.15048159299999, 49.999298413000126 ], [ -120.150271604999929, 49.998852691000089 ], [ -120.150238386999945, 49.99823029200013 ], [ -120.150305615999969, 49.998033707000069 ], [ -120.15031346899994, 49.998027574000034 ], [ -120.150517189999988, 49.998038450000124 ], [ -120.150473386, 49.998379396000111 ], [ -120.151878768999936, 49.998454414000101 ], [ -120.151859987999899, 49.998600625000087 ], [ -120.153878912999971, 49.998708360000101 ], [ -120.153418678999969, 50.002292283000081 ], [ -120.152945022999958, 50.002267011000114 ], [ -120.152797215999968, 50.003417794000029 ], [ -120.147236723999967, 50.003120958000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999420650405119", "sL_AssetLoss": "422.5428", "sL_BldgLoss": "422.298", "sL_StrLoss": "421", "sL_NStrLoss": "1.298", "sL_ContLoss": "0.2448", "geom_point": "0101000020E6100000D413D023CA355EC04F96F7C47C204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.83752297099997, 50.256307047000064 ], [ -120.837614030999973, 50.255508375000055 ], [ -120.837299316999975, 50.255493643000058 ], [ -120.837708087999957, 50.2519082170001 ], [ -120.837818685999963, 50.251913394000049 ], [ -120.837918929999944, 50.251034020000112 ], [ -120.838322802, 50.251052925000089 ], [ -120.843514052999936, 50.251295789000054 ], [ -120.843322966999935, 50.252973849000085 ], [ -120.8435270639999, 50.252983393000044 ], [ -120.843118743999966, 50.256568835000103 ], [ -120.838913888999912, 50.256372146000075 ], [ -120.83752297099997, 50.256307047000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999157856287668", "sL_AssetLoss": "147.837", "sL_BldgLoss": "147.7125", "sL_StrLoss": "146.0515", "sL_NStrLoss": "1.661", "sL_ContLoss": "0.1245", "geom_point": "0101000020E6100000901A2CFF4E205EC0A8AF422509F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.501755362999944, 49.877491037000041 ], [ -120.501881909999895, 49.876439896000058 ], [ -120.501602425999948, 49.876425835000042 ], [ -120.502034118999958, 49.872839883000076 ], [ -120.507581009999953, 49.873118803000096 ], [ -120.507578292999952, 49.873141397000083 ], [ -120.508145193999923, 49.873169887000074 ], [ -120.507713976999966, 49.876755863000035 ], [ -120.507580984999976, 49.87674918000009 ], [ -120.507528092999962, 49.877188966000084 ], [ -120.507373627000021, 49.877181204000095 ], [ -120.507302816999953, 49.877769970000095 ], [ -120.501755362999944, 49.877491037000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999958119644671", "sL_AssetLoss": "165.2326", "sL_BldgLoss": "165.22568", "sL_StrLoss": "165.2", "sL_NStrLoss": "0.02568", "sL_ContLoss": "0.00692", "geom_point": "0101000020E61000005D9EB578840B5EC08C2D0439A8134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.177400856999952, 50.15163194700007 ], [ -120.182979703999962, 50.151927197000155 ], [ -120.182520212, 50.155510513000138 ], [ -120.17694092899994, 50.155215240000061 ], [ -120.177400856999952, 50.15163194700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999958162989566", "sL_AssetLoss": "282.76399", "sL_BldgLoss": "282.75216", "sL_StrLoss": "282.7", "sL_NStrLoss": "0.05216", "sL_ContLoss": "0.01183", "geom_point": "0101000020E6100000E5BF59AD000C5EC0DD614D4443154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.184941005999931, 50.165621815000108 ], [ -120.185318397999978, 50.162678259000096 ], [ -120.190898652999977, 50.162973104000073 ], [ -120.190852876999926, 50.16333050500004 ], [ -120.190936173999887, 50.163334904000052 ], [ -120.190892924999901, 50.163672586000132 ], [ -120.190944395999949, 50.163675304000073 ], [ -120.190679070999977, 50.165746772000098 ], [ -120.190485412999948, 50.167258598000046 ], [ -120.189936417999903, 50.167229604000106 ], [ -120.189637706999974, 50.169561112000089 ], [ -120.184056653, 50.169266205000085 ], [ -120.184399033999966, 50.166596381000026 ], [ -120.184499391999907, 50.16581374 ], [ -120.18451616399993, 50.165682947000064 ], [ -120.184748970999962, 50.165695255000038 ], [ -120.184930360999957, 50.165704843000114 ], [ -120.184941005999931, 50.165621815000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999936653139742", "sL_AssetLoss": "193.37975", "sL_BldgLoss": "193.3675", "sL_StrLoss": "193.3", "sL_NStrLoss": "0.0675", "sL_ContLoss": "0.01225", "geom_point": "0101000020E61000003A4A351EF2FF5DC08C7C0338E2224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.999482804999971, 50.27429473400008 ], [ -119.999488295999953, 50.27420745700006 ], [ -119.999329953999961, 50.274211547000071 ], [ -119.999317948999973, 50.274020598000078 ], [ -119.999079331999951, 50.274014433000069 ], [ -119.999106104999953, 50.273588872000118 ], [ -119.995888703, 50.273413724000065 ], [ -119.995911464999949, 50.273242251000084 ], [ -119.994839880999976, 50.273183896000091 ], [ -119.994885549999964, 50.272839903000062 ], [ -119.994639297999925, 50.27282649100006 ], [ -119.994835910999939, 50.271345542000041 ], [ -119.995774317000013, 50.271321003000054 ], [ -119.996177297999949, 50.271248389000036 ], [ -119.996517600999965, 50.271077492000089 ], [ -119.997092304, 50.271063207000061 ], [ -119.997557696999934, 50.270888006000099 ], [ -119.998191811999945, 50.270907997000045 ], [ -119.99865709, 50.270725713000047 ], [ -119.999092609999977, 50.270731388000058 ], [ -119.999579809999929, 50.270655896000072 ], [ -119.999970978999926, 50.27041240100003 ], [ -120.00043850099992, 50.27060319200006 ], [ -120.001656189999949, 50.272010301000108 ], [ -120.002773193999985, 50.27275948700008 ], [ -120.003197514999954, 50.272984711000085 ], [ -120.003191211999933, 50.273032255000089 ], [ -120.003363073999964, 50.273027809000048 ], [ -120.003893677999955, 50.273124507000034 ], [ -120.00395460599999, 50.274092017000044 ], [ -120.001175463, 50.274163871000063 ], [ -120.001164505999952, 50.274338170000043 ], [ -119.999482804999971, 50.27429473400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999879724941554", "sL_AssetLoss": "226.1483", "sL_BldgLoss": "226.1211", "sL_StrLoss": "226", "sL_NStrLoss": "0.1211", "sL_ContLoss": "0.0272", "geom_point": "0101000020E61000006CADB34AFE185EC01AFD261C13174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.389367603999943, 50.18278401500006 ], [ -120.38938230499997, 50.182514483000027 ], [ -120.388962545999959, 50.182505042000059 ], [ -120.38897724899999, 50.182235510000048 ], [ -120.388557491999961, 50.182226068000048 ], [ -120.388586902999975, 50.181687003000015 ], [ -120.388167152, 50.18167756 ], [ -120.388181858999957, 50.181408028000142 ], [ -120.387762110999958, 50.181398583000032 ], [ -120.38779152799998, 50.180859518000027 ], [ -120.387371784999985, 50.18085007300003 ], [ -120.387386494999987, 50.180580540000072 ], [ -120.386966754999946, 50.180571093000012 ], [ -120.387025604999963, 50.179492963000072 ], [ -120.386605873999912, 50.179483516000111 ], [ -120.386650016999937, 50.178674919000095 ], [ -120.387489464999987, 50.178693813000137 ], [ -120.387504173999929, 50.178424281000062 ], [ -120.388763341999947, 50.178452610000114 ], [ -120.388792743999957, 50.177913546000163 ], [ -120.390051899999946, 50.177941860000082 ], [ -120.390066593999933, 50.177672328000057 ], [ -120.391745461999946, 50.177710061000013 ], [ -120.39171609099995, 50.178249129000072 ], [ -120.392946375999969, 50.178276764000024 ], [ -120.392975258999968, 50.178277412000071 ], [ -120.392972438999948, 50.178329183000095 ], [ -120.392945900999962, 50.178816479000076 ], [ -120.393217763999942, 50.178822585000091 ], [ -120.393365628999945, 50.17882590500006 ], [ -120.39335119699993, 50.179090935000026 ], [ -120.393306922999955, 50.179904039000064 ], [ -120.393674217999973, 50.179912287000057 ], [ -120.393726658999981, 50.179913464000045 ], [ -120.393720159999987, 50.180032848000032 ], [ -120.39366795799998, 50.180991599000038 ], [ -120.394087704999919, 50.181001022000011 ], [ -120.394029010999958, 50.182079157 ], [ -120.393609254999916, 50.182069734000081 ], [ -120.393594578999938, 50.18233926700001 ], [ -120.392755063, 50.182320416000032 ], [ -120.392740380999982, 50.182589949000025 ], [ -120.391481099999964, 50.182561661000136 ], [ -120.391466410999968, 50.182831195000098 ], [ -120.389367603999943, 50.18278401500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.999854380352277", "sL_AssetLoss": "336.35571", "sL_BldgLoss": "336.30673", "sL_StrLoss": "336.00193", "sL_NStrLoss": "0.3048", "sL_ContLoss": "0.04898", "geom_point": "0101000020E610000063AEB1F0DA335EC02F56EDFDBA394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.807833830999982, 50.454085026 ], [ -120.80786851199997, 50.453783982000111 ], [ -120.807734947999961, 50.453777723000087 ], [ -120.807773655999952, 50.453441731000062 ], [ -120.807500260999987, 50.45342891800005 ], [ -120.807539485999925, 50.45308846000011 ], [ -120.807310178999927, 50.453077713000042 ], [ -120.807440473999947, 50.451946781000117 ], [ -120.806011110999975, 50.451879781000031 ], [ -120.806076698999945, 50.451310620000065 ], [ -120.805740839999956, 50.451294874000048 ], [ -120.806153887999969, 50.447710453000113 ], [ -120.806696615999968, 50.447735896000083 ], [ -120.811773192999979, 50.447973765000086 ], [ -120.811707679999969, 50.448542932000109 ], [ -120.812043520999978, 50.448558660000046 ], [ -120.811976, 50.449145308000077 ], [ -120.813821401999959, 50.449231713000053 ], [ -120.81379615900002, 50.449451101000065 ], [ -120.814451894999976, 50.449481796000065 ], [ -120.814413421999973, 50.449816204000065 ], [ -120.814844604999962, 50.44983638700009 ], [ -120.814432225999951, 50.453420831000066 ], [ -120.813565333999932, 50.453380254000109 ], [ -120.813453938999928, 50.454348251000056 ], [ -120.811765828999953, 50.454269215000068 ], [ -120.811364383999958, 50.454250418000129 ], [ -120.807833830999982, 50.454085026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999798420211733", "sL_AssetLoss": "107.1536", "sL_BldgLoss": "107.132", "sL_StrLoss": "107", "sL_NStrLoss": "0.132", "sL_ContLoss": "0.0216", "geom_point": "0101000020E6100000E96A027726095EC0D72DA7A98A154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.13943836599999, 50.168875183000054 ], [ -120.13962221599995, 50.167452539000067 ], [ -120.139705878999933, 50.167651393000021 ], [ -120.140015290999926, 50.167866409000055 ], [ -120.14042719499993, 50.16801169200005 ], [ -120.141465810999989, 50.167974693000097 ], [ -120.142623490999981, 50.16757019900006 ], [ -120.143031813999954, 50.167319501000073 ], [ -120.143080724999962, 50.16731631800014 ], [ -120.143228486999973, 50.167306703000058 ], [ -120.144163191999937, 50.167356590000054 ], [ -120.145187008999955, 50.167588695000106 ], [ -120.145758477999948, 50.167621493000077 ], [ -120.146123489999965, 50.167836489000123 ], [ -120.14625707099999, 50.167873336000042 ], [ -120.146166996999909, 50.168571123000063 ], [ -120.145104010999901, 50.168514553000065 ], [ -120.145019080999987, 50.169172348000117 ], [ -120.143565429999953, 50.169094971000071 ], [ -120.13943836599999, 50.168875183000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999747379302047", "sL_AssetLoss": "258.4903", "sL_BldgLoss": "258.425", "sL_StrLoss": "258", "sL_NStrLoss": "0.425", "sL_ContLoss": "0.0653", "geom_point": "0101000020E61000005D90CAA09C335EC05867080949374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.805159813999936, 50.430054622000057 ], [ -120.809449795999939, 50.430255793000114 ], [ -120.809037167999932, 50.433840304000071 ], [ -120.804918083999951, 50.433647152000042 ], [ -120.803419637999951, 50.433576847000026 ], [ -120.803832707999945, 50.429992356000113 ], [ -120.805159813999936, 50.430054622000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999894576559877", "sL_AssetLoss": "327.2517", "sL_BldgLoss": "327.2172", "sL_StrLoss": "327", "sL_NStrLoss": "0.2172", "sL_ContLoss": "0.0345", "geom_point": "0101000020E61000009C189293091D5EC013B67E7E88194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.449193178999963, 50.201387460000106 ], [ -120.449539213999984, 50.198561799000096 ], [ -120.450522465999953, 50.198611360000065 ], [ -120.450583880999957, 50.198109716000019 ], [ -120.45066312799996, 50.197462423000047 ], [ -120.455954427999984, 50.197728974000043 ], [ -120.456069435999922, 50.196788648000087 ], [ -120.456132012999987, 50.196791799000081 ], [ -120.457369814999979, 50.198359631000088 ], [ -120.458864989999981, 50.200528963000053 ], [ -120.458869762999953, 50.200535890000083 ], [ -120.456001864999962, 50.200391536000041 ], [ -120.455947050999953, 50.200839678000051 ], [ -120.45718511299999, 50.200902005000025 ], [ -120.457155275999966, 50.201145990000029 ], [ -120.456690781999953, 50.201197192000109 ], [ -120.45581870299992, 50.201537608000045 ], [ -120.45515541099999, 50.201604504000031 ], [ -120.452212222999918, 50.201081805000072 ], [ -120.451737917999949, 50.200782796000112 ], [ -120.45138548599999, 50.200802699000072 ], [ -120.45103521, 50.201100401000048 ], [ -120.450775490999959, 50.201202891000065 ], [ -120.449193178999963, 50.201387460000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999799434111523", "sL_AssetLoss": "116.1713", "sL_BldgLoss": "116.148", "sL_StrLoss": "116", "sL_NStrLoss": "0.148", "sL_ContLoss": "0.0233", "geom_point": "0101000020E6100000469779A33D2A5EC0FC123B6494184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.657802443999969, 50.193689092000092 ], [ -120.658224824999962, 50.190104055000077 ], [ -120.661967587999982, 50.190285573000025 ], [ -120.662040608999988, 50.192309680000108 ], [ -120.661604838999949, 50.193790338000014 ], [ -120.661689412999976, 50.193789235000089 ], [ -120.663411703999927, 50.193770916000105 ], [ -120.663389447999975, 50.193960004000125 ], [ -120.66159867, 50.193873201000052 ], [ -120.657802443999969, 50.193689092000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999605260165101", "sL_AssetLoss": "272.5846", "sL_BldgLoss": "272.477", "sL_StrLoss": "272", "sL_NStrLoss": "0.477", "sL_ContLoss": "0.1076", "geom_point": "0101000020E6100000D28E1B7E37345EC0140B5B374E0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.81518322, 50.121962531000094 ], [ -120.815213836999959, 50.121694316000067 ], [ -120.8146498199999, 50.121667716000083 ], [ -120.814946038999963, 50.119072879000051 ], [ -120.814986939999969, 50.118714557000089 ], [ -120.814331701999933, 50.118702220000038 ], [ -120.813817493999963, 50.118692536000033 ], [ -120.813828616999984, 50.118448421000068 ], [ -120.813829778999917, 50.118422916000064 ], [ -120.813776051, 50.11842190600003 ], [ -120.812991122999946, 50.118407117000054 ], [ -120.813003409999951, 50.118137498000124 ], [ -120.812164760999948, 50.11812169300002 ], [ -120.812177053999946, 50.117852074000062 ], [ -120.811338408999958, 50.1178362630001 ], [ -120.811326111999975, 50.118105881000112 ], [ -120.810068137999977, 50.11808215200012 ], [ -120.810092746999956, 50.117542916000026 ], [ -120.809673427999911, 50.117535003000107 ], [ -120.809698041999937, 50.116995764000094 ], [ -120.808455335999938, 50.116972307000118 ], [ -120.808418638999967, 50.117293399000097 ], [ -120.807313764999918, 50.117241214000082 ], [ -120.807265092999913, 50.116232329000091 ], [ -120.80723968299999, 50.11602084900008 ], [ -120.807214496999933, 50.115811252000064 ], [ -120.807220189999967, 50.115810867000135 ], [ -120.80709298599993, 50.115352663000166 ], [ -120.807637490999952, 50.115389993000058 ], [ -120.808432805999985, 50.115747502000062 ], [ -120.808773817999935, 50.116248796 ], [ -120.809017516999972, 50.116432497000119 ], [ -120.812238491999963, 50.11728560100002 ], [ -120.813289680999986, 50.117530600000087 ], [ -120.814825791999965, 50.11820709000007 ], [ -120.816316715999903, 50.118981906000101 ], [ -120.816687189, 50.119105812000051 ], [ -120.817246388999976, 50.119151400000085 ], [ -120.818350183999925, 50.119162706000054 ], [ -120.818871611999924, 50.119093008000057 ], [ -120.8201868099999, 50.118775386000017 ], [ -120.820642054999936, 50.118614579000088 ], [ -120.821171215999954, 50.11863950900009 ], [ -120.820762337999938, 50.122225496000105 ], [ -120.818990392999964, 50.122142008000019 ], [ -120.81518322, 50.121962531000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999670822207124", "sL_AssetLoss": "121.51488", "sL_BldgLoss": "121.47488", "sL_StrLoss": "121.00988", "sL_NStrLoss": "0.465", "sL_ContLoss": "0.04", "geom_point": "0101000020E610000035481C0D7B275EC0D91A7C2707324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.614347121999955, 50.392821988 ], [ -120.61446321899993, 50.391849159000053 ], [ -120.614213181999958, 50.391836986000044 ], [ -120.614221108999956, 50.39177056100003 ], [ -120.61191221, 50.391658124000053 ], [ -120.611921587999973, 50.391579569000058 ], [ -120.611691935999943, 50.391568383000028 ], [ -120.611407610999919, 50.390994495000051 ], [ -120.611594202, 50.390333585000072 ], [ -120.612723594999963, 50.389691297000041 ], [ -120.612847498999912, 50.389486212000079 ], [ -120.612922409999939, 50.388814006000096 ], [ -120.613127290999941, 50.388664491000029 ], [ -120.613507392999978, 50.388690106000112 ], [ -120.614123497999969, 50.389278290000071 ], [ -120.614778198999915, 50.389688493000037 ], [ -120.615880593999989, 50.391302091000021 ], [ -120.615790898999961, 50.392217898000034 ], [ -120.615940311999978, 50.392338907000067 ], [ -120.616282819999952, 50.392254900000083 ], [ -120.616640878999974, 50.392118193000073 ], [ -120.616569288999955, 50.391568407000086 ], [ -120.616722394999954, 50.391329193000075 ], [ -120.6168399, 50.390377799000106 ], [ -120.61783408899997, 50.389624391000076 ], [ -120.618530888999885, 50.389477691000081 ], [ -120.61880579399994, 50.389338107000079 ], [ -120.618827819999964, 50.388061999000115 ], [ -120.618874383999952, 50.387972289000082 ], [ -120.618946552999901, 50.387950502000116 ], [ -120.620867495999974, 50.388043936000088 ], [ -120.620824375999959, 50.388405719000112 ], [ -120.620927516999984, 50.388410735000029 ], [ -120.620500325999927, 50.391994719000145 ], [ -120.620193410999931, 50.391979794000079 ], [ -120.620152231999938, 50.392325227000136 ], [ -120.620050828999979, 50.392320296000079 ], [ -120.619958466999947, 50.393095030000069 ], [ -120.614347121999955, 50.392821988 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999283607520185", "sL_AssetLoss": "154.943", "sL_BldgLoss": "154.832", "sL_StrLoss": "154", "sL_NStrLoss": "0.832", "sL_ContLoss": "0.111", "geom_point": "0101000020E61000000228CACEF0385EC0E57E6694572F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.889705617999979, 50.367391378000036 ], [ -120.891050349999958, 50.367453514 ], [ -120.891200335999926, 50.368176400000046 ], [ -120.891376351999909, 50.369087299000093 ], [ -120.891821897999989, 50.371423877000055 ], [ -120.89181410099998, 50.371492811000017 ], [ -120.887623208, 50.371299152000077 ], [ -120.886203834, 50.371233526 ], [ -120.88622181, 50.371074787000111 ], [ -120.887158783999951, 50.370508593000125 ], [ -120.88847149299994, 50.369453315000044 ], [ -120.888882124999967, 50.36904740500011 ], [ -120.889059605999975, 50.368528992000044 ], [ -120.889646006999897, 50.367675887000068 ], [ -120.889683393999988, 50.36747928900008 ], [ -120.889705617999979, 50.367391378000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999898453102258", "sL_AssetLoss": "88.629", "sL_BldgLoss": "88.62", "sL_StrLoss": "88.6", "sL_NStrLoss": "0.02", "sL_ContLoss": "0.009", "geom_point": "0101000020E61000001E41BF298B1F5EC0DF6E6A1CC11B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.491250117, 50.215648704000081 ], [ -120.49183299699996, 50.215211402000122 ], [ -120.492318686999951, 50.214520698000058 ], [ -120.492415517, 50.214395474000099 ], [ -120.494486757999979, 50.214499015000101 ], [ -120.494405582999903, 50.215167097000098 ], [ -120.494440004999916, 50.215168817000063 ], [ -120.494390210999953, 50.215578624000145 ], [ -120.49450012899996, 50.215584117000041 ], [ -120.494064583999943, 50.21916839900009 ], [ -120.49091394099996, 50.21901089000005 ], [ -120.490982593999917, 50.218873105000071 ], [ -120.491220705999964, 50.218320508000026 ], [ -120.491552477999932, 50.21790459700005 ], [ -120.491399506999954, 50.21734349500008 ], [ -120.491266908999961, 50.216900505000048 ], [ -120.491250117, 50.215648704000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999821885450705", "sL_AssetLoss": "120.1474", "sL_BldgLoss": "120.126", "sL_StrLoss": "120", "sL_NStrLoss": "0.126", "sL_ContLoss": "0.0214", "geom_point": "0101000020E6100000D2F9D78FA0195EC008B0C8AF1FF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.398798711, 49.89261740700006 ], [ -120.398827706999967, 49.892078311000063 ], [ -120.398410467999966, 49.892068944000023 ], [ -120.398424967999986, 49.891799395000071 ], [ -120.398007733999961, 49.891790028000067 ], [ -120.398065741999972, 49.890711835000083 ], [ -120.402655229999979, 49.890814797000111 ], [ -120.402640753999947, 49.891084346000092 ], [ -120.403057983999972, 49.89109369800007 ], [ -120.403014562999886, 49.891902345000076 ], [ -120.402597326999938, 49.89189299400006 ], [ -120.402582849999959, 49.892162542000108 ], [ -120.401748372, 49.892143834000066 ], [ -120.401733891, 49.892413384000079 ], [ -120.400899408999976, 49.892394670000058 ], [ -120.400884922999921, 49.892664219000039 ], [ -120.398798711, 49.89261740700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99994945887951", "sL_AssetLoss": "98.33577", "sL_BldgLoss": "98.3308", "sL_StrLoss": "98.3", "sL_NStrLoss": "0.0308", "sL_ContLoss": "0.00497", "geom_point": "0101000020E6100000B0EE50FBCA215EC018737C597F134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.52495480099995, 50.153370716000019 ], [ -120.524996570999988, 50.15256202900013 ], [ -120.527094275999957, 50.152606737000035 ], [ -120.527122095999985, 50.15206761200006 ], [ -120.527541631999938, 50.1520765490001 ], [ -120.527569448999941, 50.151537422000068 ], [ -120.52798898099995, 50.151546357000051 ], [ -120.528002885999967, 50.151276795000079 ], [ -120.528422416999987, 50.151285729000065 ], [ -120.528436318999979, 50.15101616400009 ], [ -120.530114431999934, 50.151051884000054 ], [ -120.530031070999911, 50.152669265000029 ], [ -120.52919198499994, 50.152651408000047 ], [ -120.529164186999964, 50.153190535000078 ], [ -120.527905545999971, 50.153163737000085 ], [ -120.52791945099996, 50.15289417300005 ], [ -120.527080364999989, 50.152876300000088 ], [ -120.527052541999964, 50.153415426000059 ], [ -120.52495480099995, 50.153370716000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999762866638189", "sL_AssetLoss": "371.5209", "sL_BldgLoss": "371.4328", "sL_StrLoss": "371", "sL_NStrLoss": "0.4328", "sL_ContLoss": "0.0881", "geom_point": "0101000020E61000008BA8683076215EC0CC02379CC3084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.521507200999977, 50.065118040000108 ], [ -120.525925255999951, 50.065338443000051 ], [ -120.525191755999955, 50.07045311700012 ], [ -120.525011703999951, 50.07170827800006 ], [ -120.519634384999918, 50.071439992000094 ], [ -120.520066506999953, 50.067854913000097 ], [ -120.520445688999956, 50.067873840000111 ], [ -120.520716304999965, 50.065628222000079 ], [ -120.521441370999952, 50.065664411000043 ], [ -120.521507200999977, 50.065118040000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.870870870870871", "sL_AssetLoss": "0.00999", "sL_BldgLoss": "0.0087", "sL_StrLoss": "0.0004", "sL_NStrLoss": "0.0083", "sL_ContLoss": "0.00129", "geom_point": "0101000020E6100000BCF482910F0A5EC086508CC9EE144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.156348750999939, 50.164625588000014 ], [ -120.156412754999934, 50.163547663000038 ], [ -120.155993243999902, 50.163537384000037 ], [ -120.155977241999935, 50.163806865000033 ], [ -120.154718701999954, 50.163776019000068 ], [ -120.154777112999952, 50.162792877000072 ], [ -120.154782742999956, 50.162698095000067 ], [ -120.159397290999934, 50.162811129000069 ], [ -120.159339541999941, 50.163784756000069 ], [ -120.159333354999944, 50.163889057000141 ], [ -120.15891383899995, 50.163878788000041 ], [ -120.15888186599993, 50.164417752000112 ], [ -120.158042827999935, 50.164397209000064 ], [ -120.158026835999976, 50.164666691000029 ], [ -120.156348750999939, 50.164625588000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999789873665197", "sL_AssetLoss": "478.7596", "sL_BldgLoss": "478.659", "sL_StrLoss": "478", "sL_NStrLoss": "0.659", "sL_ContLoss": "0.1006", "geom_point": "0101000020E6100000F1B40432DE345EC089CF008B3A254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.824926079999912, 50.287381757000041 ], [ -120.829901455999973, 50.287614937000043 ], [ -120.829491745999974, 50.291200169000085 ], [ -120.828625166999984, 50.291159572000055 ], [ -120.828588724, 50.29147839100014 ], [ -120.828500256999945, 50.291474246000163 ], [ -120.828146381999929, 50.294569794000068 ], [ -120.823583295999967, 50.294355907000089 ], [ -120.822546003999946, 50.294307259000071 ], [ -120.822956291999958, 50.290722067000033 ], [ -120.823044758999927, 50.290726216000088 ], [ -120.823398951999934, 50.28763066900008 ], [ -120.824265457999957, 50.287671308000057 ], [ -120.824301928999944, 50.287352490000089 ], [ -120.824926079999912, 50.287381757000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99984439789188", "sL_AssetLoss": "208.2234", "sL_BldgLoss": "208.191", "sL_StrLoss": "208", "sL_NStrLoss": "0.191", "sL_ContLoss": "0.0324", "geom_point": "0101000020E6100000483FF1CEE7245EC0EFBCBF07D0124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.572759587999926, 50.14697131500008 ], [ -120.572950881999944, 50.145371547000131 ], [ -120.578531439999921, 50.145646773000095 ], [ -120.578525944999939, 50.145692785000037 ], [ -120.579178622999962, 50.145724956000052 ], [ -120.579171178999943, 50.145787277000082 ], [ -120.579805505999957, 50.145818539000118 ], [ -120.579377352999984, 50.149403481000043 ], [ -120.579021789, 50.149385958000025 ], [ -120.57857430899999, 50.149363903000072 ], [ -120.577136796999966, 50.148461592000075 ], [ -120.575970007999985, 50.148005810000022 ], [ -120.573996305999955, 50.147468889000017 ], [ -120.572727800999957, 50.147237138000037 ], [ -120.572759587999926, 50.14697131500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99958526530888", "sL_AssetLoss": "267.8821", "sL_BldgLoss": "267.771", "sL_StrLoss": "267", "sL_NStrLoss": "0.771", "sL_ContLoss": "0.1111", "geom_point": "0101000020E6100000C0EAE99F37125EC0BF6A7E5FD0F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.279659424, 49.922145765000074 ], [ -120.279832640999985, 49.920764495000057 ], [ -120.279903909999945, 49.920760396000048 ], [ -120.280246805999965, 49.920894290000057 ], [ -120.280731490999926, 49.92141840000005 ], [ -120.281068100999931, 49.921642012000042 ], [ -120.281670897999959, 49.921575109000123 ], [ -120.281998385999941, 49.921448300000073 ], [ -120.282160606999966, 49.921298805000085 ], [ -120.282167, 49.92068780700005 ], [ -120.282407888999941, 49.920351693000107 ], [ -120.283070308, 49.919727910000056 ], [ -120.283948579999958, 49.919199495000093 ], [ -120.284652391999956, 49.918110005000088 ], [ -120.284609508999921, 49.917883495000076 ], [ -120.284421388999931, 49.917778722000087 ], [ -120.285983841999908, 49.91786035600007 ], [ -120.287021001999932, 49.917914533000037 ], [ -120.286980077999914, 49.918241315000081 ], [ -120.287728698999942, 49.918280413000083 ], [ -120.287505497, 49.920062842000078 ], [ -120.287279769999927, 49.921865282000113 ], [ -120.286035122999962, 49.921800275000081 ], [ -120.286028615999925, 49.9218522110001 ], [ -120.285717567999924, 49.921835963000035 ], [ -120.285680417999956, 49.922132519000044 ], [ -120.285295869999942, 49.92211243100008 ], [ -120.285251732999967, 49.92211012500006 ], [ -120.285242352999987, 49.922184994000055 ], [ -120.285210913999933, 49.922435929000159 ], [ -120.285062983999921, 49.922428201000052 ], [ -120.283424623999977, 49.922342595000067 ], [ -120.279659424, 49.922145765000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999901915570054", "sL_AssetLoss": "106.0311", "sL_BldgLoss": "106.0207", "sL_StrLoss": "106", "sL_NStrLoss": "0.0207", "sL_ContLoss": "0.0104", "geom_point": "0101000020E6100000DF8EAA05FA225EC00669A59400134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.544230005999964, 50.147073280000065 ], [ -120.54981059899994, 50.147349960000057 ], [ -120.549660710999902, 50.14859806500008 ], [ -120.549648448999932, 50.148700161000129 ], [ -120.548606908999929, 50.149022703000078 ], [ -120.546520689999923, 50.149843102000055 ], [ -120.544940000999972, 50.150106492000056 ], [ -120.543974218999935, 50.150112196000116 ], [ -120.543861353999944, 50.150139762000016 ], [ -120.543883058999938, 50.149959229000018 ], [ -120.544230005999964, 50.147073280000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6875416", "BldgCostT": "4741666", "sL_LossRatio": "0.999751036928408", "sL_AssetLoss": "1436.3576", "sL_BldgLoss": "1436", "sL_StrLoss": "1434", "sL_NStrLoss": "2", "sL_ContLoss": "0.3576", "geom_point": "0101000020E6100000650D6A0192205EC016BEBED6A5144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.496448474999923, 50.166368353000117 ], [ -120.496883327999939, 50.162783814000143 ], [ -120.498917409999962, 50.162885537000101 ], [ -120.498998368999978, 50.16221786200002 ], [ -120.502643654999972, 50.162400065000057 ], [ -120.502674995999939, 50.161798894000086 ], [ -120.503094609999962, 50.161807921000033 ], [ -120.503108660999899, 50.161538364000066 ], [ -120.503947885999963, 50.16155641200001 ], [ -120.503961930999978, 50.161286854000124 ], [ -120.505220760999961, 50.161313915000115 ], [ -120.5052348, 50.161044357000058 ], [ -120.505654407999927, 50.16105337400009 ], [ -120.505668443000033, 50.160783816000048 ], [ -120.507346870999967, 50.160819870000054 ], [ -120.507332843999947, 50.161089428000118 ], [ -120.507828792999987, 50.161100077000107 ], [ -120.507958699999961, 50.160026935000033 ], [ -120.506316359999985, 50.159944935000027 ], [ -120.506750370999953, 50.15636032800009 ], [ -120.512331874999916, 50.156638903000143 ], [ -120.512270367999974, 50.157147455000036 ], [ -120.512997692999988, 50.157163041000125 ], [ -120.513011686999917, 50.156893480000086 ], [ -120.51427041, 50.156920442000107 ], [ -120.514284394999933, 50.156650882000108 ], [ -120.515123541999913, 50.156668848000038 ], [ -120.515137521999932, 50.156399288000053 ], [ -120.516396234999903, 50.15642622600005 ], [ -120.51638226099999, 50.156695786000057 ], [ -120.517221409999948, 50.156713737000089 ], [ -120.517207441999957, 50.156983299000025 ], [ -120.51804659599999, 50.157001244000142 ], [ -120.518038067999939, 50.15716584200009 ], [ -120.519403323999896, 50.157233867000066 ], [ -120.521163898999987, 50.157321564000085 ], [ -120.520997027999925, 50.15870347400007 ], [ -120.520856110999944, 50.158876783000068 ], [ -120.520726512999943, 50.159207204000062 ], [ -120.520637816999951, 50.160383598000074 ], [ -120.520204229999962, 50.160879986000047 ], [ -120.515148934999957, 50.160628076000116 ], [ -120.515365948999943, 50.158832913000012 ], [ -120.51519448499999, 50.158829242000053 ], [ -120.515017124999972, 50.158825445000033 ], [ -120.51500760099999, 50.158904222000047 ], [ -120.515006893999939, 50.158917850000059 ], [ -120.514997712999929, 50.159094890000112 ], [ -120.514984584999951, 50.159094609000078 ], [ -120.514608926999955, 50.16220176300007 ], [ -120.513645174999965, 50.162153708000112 ], [ -120.513605100999882, 50.162485085000071 ], [ -120.513279036999933, 50.16246882500009 ], [ -120.5132475, 50.16272959300008 ], [ -120.511453071999981, 50.162640092000053 ], [ -120.511430924999942, 50.163066373000042 ], [ -120.511850553999977, 50.16307536700009 ], [ -120.511822550999938, 50.163614485 ], [ -120.512242184999963, 50.163623479000123 ], [ -120.512200182999891, 50.164432157000064 ], [ -120.510101983999959, 50.164387172000019 ], [ -120.510045934999965, 50.165465407000077 ], [ -120.508786989999933, 50.165438397000088 ], [ -120.5087729699999, 50.165707955000073 ], [ -120.50751401899997, 50.165680932000036 ], [ -120.50752804699998, 50.165411373000047 ], [ -120.506688753, 50.165393349000155 ], [ -120.506702784999945, 50.165123791000042 ], [ -120.50628314, 50.165114778000031 ], [ -120.506297175, 50.164845219 ], [ -120.505877531999943, 50.164836204000039 ], [ -120.505891566999978, 50.164566645000015 ], [ -120.505471928999967, 50.164557629000029 ], [ -120.505485966999942, 50.164288071000058 ], [ -120.505066329999963, 50.164279052000047 ], [ -120.505080369999959, 50.164009495000116 ], [ -120.504660735999963, 50.164000475000101 ], [ -120.504674777999924, 50.163730918000063 ], [ -120.504431685999918, 50.163725692000064 ], [ -120.504146303999903, 50.166081397 ], [ -120.502112066999985, 50.165979771000103 ], [ -120.50203114599995, 50.166647445000081 ], [ -120.499059060999969, 50.166498899000082 ], [ -120.496448474999923, 50.166368353000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999635175146081", "sL_AssetLoss": "265.3328", "sL_BldgLoss": "265.236", "sL_StrLoss": "265", "sL_NStrLoss": "0.236", "sL_ContLoss": "0.0968", "geom_point": "0101000020E6100000C75387C3EF285EC05F6FACD5E81A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.637051688999946, 50.208302105000016 ], [ -120.642640365999952, 50.208574063000064 ], [ -120.642216583999982, 50.21215895400011 ], [ -120.636627465999965, 50.211886976000095 ], [ -120.637051688999946, 50.208302105000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999905046080845", "sL_AssetLoss": "198.62266", "sL_BldgLoss": "198.6038", "sL_StrLoss": "198.5", "sL_NStrLoss": "0.1038", "sL_ContLoss": "0.01886", "geom_point": "0101000020E6100000C9E53FA41F1F5EC04010C589D41C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.487716872999954, 50.221830774000132 ], [ -120.488848451999928, 50.221887385000059 ], [ -120.4884124, 50.225471615000039 ], [ -120.487931721999956, 50.225447569000089 ], [ -120.487885098999982, 50.225830727000108 ], [ -120.48742789, 50.225807853000028 ], [ -120.487127905999955, 50.228272838000066 ], [ -120.483571727999944, 50.228094861000073 ], [ -120.483800898999931, 50.227200409000083 ], [ -120.484580701999974, 50.226505390000078 ], [ -120.484441706999974, 50.226187794000069 ], [ -120.48399781199997, 50.226115192000073 ], [ -120.48387521399998, 50.226022592000056 ], [ -120.483858696999903, 50.225545492999984 ], [ -120.483995815999933, 50.225368901000095 ], [ -120.483824609999942, 50.225149603000091 ], [ -120.484247895999943, 50.224807809000019 ], [ -120.48457319399995, 50.224220992 ], [ -120.485128590999963, 50.223558690000097 ], [ -120.485788078999917, 50.223249692000088 ], [ -120.486143921999954, 50.22287940500005 ], [ -120.486954114999932, 50.222437898000088 ], [ -120.487467917999979, 50.221963603000113 ], [ -120.487716872999954, 50.221830774000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999661445244876", "sL_AssetLoss": "286.512", "sL_BldgLoss": "286.415", "sL_StrLoss": "286", "sL_NStrLoss": "0.415", "sL_ContLoss": "0.097", "geom_point": "0101000020E6100000278AEB73D01F5EC0B04C09D2D6F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.497050565, 49.899099119000077 ], [ -120.497064517999917, 49.898829550000094 ], [ -120.495812535999946, 49.898802503000041 ], [ -120.495826496999939, 49.898532936000088 ], [ -120.494991848999945, 49.898514897000069 ], [ -120.495005814999942, 49.898245329000041 ], [ -120.494588492999952, 49.898236308000016 ], [ -120.494602459999925, 49.897966739000061 ], [ -120.49376782299997, 49.897948692000057 ], [ -120.493781793999958, 49.897679124000028 ], [ -120.49336447799999, 49.897670099000045 ], [ -120.493406398, 49.896861395000094 ], [ -120.493823707999965, 49.896870420000049 ], [ -120.493837677999977, 49.89660085200007 ], [ -120.494254983999966, 49.896609876000099 ], [ -120.494268953999935, 49.89634030800007 ], [ -120.494686256999955, 49.89634933100006 ], [ -120.49470022499996, 49.896079762000085 ], [ -120.495117526999962, 49.896088782000099 ], [ -120.495131489999906, 49.895819215000138 ], [ -120.495966090999929, 49.895837251000096 ], [ -120.495980050999989, 49.895567682000085 ], [ -120.497231948999968, 49.89559472600007 ], [ -120.49724589799996, 49.89532515700008 ], [ -120.497663195999962, 49.895334168000034 ], [ -120.497677144999969, 49.895064600000126 ], [ -120.498929029999928, 49.895091624 ], [ -120.498915088999951, 49.895361194000095 ], [ -120.49974968599993, 49.895379204000072 ], [ -120.499554545999928, 49.899153172000055 ], [ -120.497050565, 49.899099119000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999690054589359", "sL_AssetLoss": "502.9918", "sL_BldgLoss": "502.8359", "sL_StrLoss": "502", "sL_NStrLoss": "0.8359", "sL_ContLoss": "0.1559", "geom_point": "0101000020E6100000D626678BD8345EC0903ACF12C30F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.821999035999966, 50.127036504000053 ], [ -120.822296859999966, 50.124424214000044 ], [ -120.822407857999963, 50.12345053500011 ], [ -120.823147135999974, 50.12348534700007 ], [ -120.823222807999954, 50.122821437000091 ], [ -120.822600435999973, 50.122792131000033 ], [ -120.823009172999917, 50.119206139000084 ], [ -120.828588000999915, 50.119468710000042 ], [ -120.82822233, 50.122680335000055 ], [ -120.82884470299993, 50.122709609000026 ], [ -120.828799993999922, 50.123102304000035 ], [ -120.829811696999968, 50.123149884000078 ], [ -120.829744441999978, 50.123740705000024 ], [ -120.829858833999978, 50.123746084000089 ], [ -120.829651118999934, 50.125570746000093 ], [ -120.830621799999932, 50.125616387000079 ], [ -120.829261573999943, 50.126268851000127 ], [ -120.82345479599995, 50.124937179 ], [ -120.826207628999953, 50.127234613000063 ], [ -120.821999035999966, 50.127036504000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999541539556181", "sL_AssetLoss": "121.7117", "sL_BldgLoss": "121.6559", "sL_StrLoss": "121.0159", "sL_NStrLoss": "0.64", "sL_ContLoss": "0.0558", "geom_point": "0101000020E6100000615085C3BB135EC0A7B805A6AEF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.307791283999904, 49.914017986000012 ], [ -120.3078063, 49.913748460000079 ], [ -120.307388905999957, 49.913738762000087 ], [ -120.307403923999971, 49.913469235000058 ], [ -120.30656914399999, 49.913449836000041 ], [ -120.30658416599999, 49.913180309000069 ], [ -120.306461471999967, 49.913177457000053 ], [ -120.306166779, 49.91317060700009 ], [ -120.306196826999937, 49.912631554000043 ], [ -120.30577944399991, 49.91262185100004 ], [ -120.305884624999962, 49.910735160000101 ], [ -120.305467258999954, 49.910725457000169 ], [ -120.305542392999982, 49.909377821000099 ], [ -120.306931563999953, 49.909410114000153 ], [ -120.310133310999944, 49.909484474000067 ], [ -120.31011831099994, 49.909754002000099 ], [ -120.310535670999968, 49.909763689000044 ], [ -120.310520670999963, 49.910033217000048 ], [ -120.310938033999946, 49.910042902000107 ], [ -120.310743058999932, 49.913546769000071 ], [ -120.310325666999958, 49.913537082000047 ], [ -120.31029566199993, 49.914076139000095 ], [ -120.307791283999904, 49.914017986000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999880098918392", "sL_AssetLoss": "200.165", "sL_BldgLoss": "200.141", "sL_StrLoss": "200", "sL_NStrLoss": "0.141", "sL_ContLoss": "0.024", "geom_point": "0101000020E610000086E1447073295EC08FFDEA79D01A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.648706359999963, 50.207771186000087 ], [ -120.648720396, 50.207485697000017 ], [ -120.649237234999973, 50.207496160000119 ], [ -120.649980576999965, 50.207511206000056 ], [ -120.649964798999932, 50.207832316000065 ], [ -120.650544259999904, 50.207860460000113 ], [ -120.650644827999955, 50.207865343 ], [ -120.650221682999984, 50.211450269000125 ], [ -120.648013320999951, 50.211342999000102 ], [ -120.644632605999988, 50.211178696000033 ], [ -120.645056189999949, 50.207593790000018 ], [ -120.648706359999963, 50.207771186000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999831045703897", "sL_AssetLoss": "227.2804", "sL_BldgLoss": "227.242", "sL_StrLoss": "227", "sL_NStrLoss": "0.242", "sL_ContLoss": "0.0384", "geom_point": "0101000020E610000003E3C735D1055EC0710FB696D1FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.08812407, 49.980124932000074 ], [ -120.093681374999932, 49.98042477000007 ], [ -120.093216597999955, 49.984008528000018 ], [ -120.092679618999981, 49.983979568000109 ], [ -120.092390984999966, 49.986204641000022 ], [ -120.092377903999974, 49.986203936000088 ], [ -120.092344498, 49.986461441000067 ], [ -120.089165570999967, 49.986289945000109 ], [ -120.088746094999948, 49.985808306000052 ], [ -120.089315981999974, 49.985616098000058 ], [ -120.089379908999959, 49.985465105000117 ], [ -120.089135587999962, 49.985116205000047 ], [ -120.089477604999928, 49.984999395000088 ], [ -120.08962610899998, 49.984858393000081 ], [ -120.088998908999983, 49.984159101000067 ], [ -120.089125399999929, 49.982759090000116 ], [ -120.088344982999914, 49.982280590000038 ], [ -120.088035496999964, 49.981850391000073 ], [ -120.0879111, 49.981765618000104 ], [ -120.08812407, 49.980124932000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999577599817751", "sL_AssetLoss": "126.4204", "sL_BldgLoss": "126.367", "sL_StrLoss": "126", "sL_NStrLoss": "0.367", "sL_ContLoss": "0.0534", "geom_point": "0101000020E61000002FAF33F0A9285EC05CDE0311B5284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.634701987999918, 50.320808329000101 ], [ -120.634715370999942, 50.320538753000072 ], [ -120.634294321000013, 50.320530182000027 ], [ -120.634481725999962, 50.316756111000117 ], [ -120.63490274499992, 50.316764681000045 ], [ -120.63496965399996, 50.315416796000093 ], [ -120.63539066, 50.315425364000092 ], [ -120.635404039999969, 50.31515578799999 ], [ -120.635915740999934, 50.315166199000046 ], [ -120.63666705199999, 50.315181481000145 ], [ -120.636613563999973, 50.316259789000092 ], [ -120.636192548999986, 50.316251225 ], [ -120.635965148999958, 50.320834032000107 ], [ -120.635067185, 50.32081576200008 ], [ -120.634701987999918, 50.320808329000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7491666", "BldgCostT": "5166666", "sL_LossRatio": "0.999535874326085", "sL_AssetLoss": "1661.188", "sL_BldgLoss": "1660.417", "sL_StrLoss": "1656", "sL_NStrLoss": "4.417", "sL_ContLoss": "0.771", "geom_point": "0101000020E61000003CA0CFF4102B5EC0682122B134154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.673969112999885, 50.171816830000076 ], [ -120.67401090299991, 50.17158479200009 ], [ -120.672588571999967, 50.171500427000055 ], [ -120.672314592999939, 50.171482737000076 ], [ -120.672314213999954, 50.17147751800011 ], [ -120.670648241999956, 50.171543954000057 ], [ -120.670433969999948, 50.171662675000043 ], [ -120.670228634999916, 50.171776449000092 ], [ -120.669205708999954, 50.172343243000086 ], [ -120.669471186999914, 50.170084068000101 ], [ -120.669830379999937, 50.170101465000087 ], [ -120.669883791999922, 50.169646876000044 ], [ -120.6699051799999, 50.16964791200008 ], [ -120.669907817999928, 50.169593661000086 ], [ -120.670327552999964, 50.169602083 ], [ -120.67041934199996, 50.167714951000072 ], [ -120.669999623999942, 50.16770652800006 ], [ -120.670003121999983, 50.167634623 ], [ -120.667447426999956, 50.167510811000035 ], [ -120.667615183999956, 50.166083545000106 ], [ -120.664076707999982, 50.165912024000072 ], [ -120.664383073999929, 50.163306995000028 ], [ -120.664584872999953, 50.163098088000062 ], [ -120.664617799999945, 50.163064 ], [ -120.665468290999911, 50.163143816000066 ], [ -120.66550980699995, 50.162847508 ], [ -120.665402816, 50.162754998000032 ], [ -120.664671416999951, 50.162840398000114 ], [ -120.664416960999944, 50.163018839000131 ], [ -120.664471690999946, 50.162553417000034 ], [ -120.664498336999927, 50.162326832000105 ], [ -120.666705579999942, 50.162433838000091 ], [ -120.668360024999956, 50.162514016000067 ], [ -120.668375364999932, 50.162383469000055 ], [ -120.667685274999954, 50.162350029000081 ], [ -120.667728621999956, 50.161981192000034 ], [ -120.668106585999965, 50.158764807000075 ], [ -120.671289151999943, 50.158918990000096 ], [ -120.67368935899998, 50.159035209000088 ], [ -120.673412500999959, 50.161393722000099 ], [ -120.676440024, 50.161540241000061 ], [ -120.676424771999933, 50.161670237000124 ], [ -120.679095579999952, 50.161799423000076 ], [ -120.680841186999942, 50.161883821000039 ], [ -120.680420851999969, 50.16546907700009 ], [ -120.680233049999956, 50.165459998000067 ], [ -120.680015138999948, 50.167318382000069 ], [ -120.678777744999948, 50.167258557000096 ], [ -120.678696020999908, 50.167955312000061 ], [ -120.67820342199991, 50.167931492000065 ], [ -120.678190102999963, 50.168045023000111 ], [ -120.677634556, 50.168018156000137 ], [ -120.677591396999929, 50.168386036000101 ], [ -120.675014218999976, 50.168261364000017 ], [ -120.674935089999977, 50.169891405000037 ], [ -120.67546791299999, 50.169917184000077 ], [ -120.675397947999969, 50.170513278000037 ], [ -120.676164610999976, 50.170528626000106 ], [ -120.676112284999988, 50.171606992000108 ], [ -120.675802084999958, 50.171600783000059 ], [ -120.675774131999972, 50.171838937000174 ], [ -120.677378475999916, 50.171916537000058 ], [ -120.676957774999906, 50.175501732000086 ], [ -120.674444213999948, 50.175380145000126 ], [ -120.674162990999918, 50.175366538000084 ], [ -120.674101496999967, 50.174741229000112 ], [ -120.673906284999958, 50.172291605000048 ], [ -120.673886828999969, 50.172047895000148 ], [ -120.673969112999885, 50.171816830000076 ] ], [ [ -120.67242012699991, 50.16976968700007 ], [ -120.672452429999979, 50.169104996000023 ], [ -120.673291890999963, 50.169121822000065 ], [ -120.673337630999981, 50.168180226000104 ], [ -120.672007451999946, 50.168115834000091 ], [ -120.672049973999947, 50.167753772000069 ], [ -120.672009975999927, 50.167751835000047 ], [ -120.672012315999936, 50.167731916000065 ], [ -120.671679682, 50.167715811000079 ], [ -120.671639179999971, 50.168548982000061 ], [ -120.672058905999947, 50.168557399000129 ], [ -120.67200096699996, 50.169749395000089 ], [ -120.67242012699991, 50.16976968700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999700722869377", "sL_AssetLoss": "130.314", "sL_BldgLoss": "130.275", "sL_StrLoss": "130", "sL_NStrLoss": "0.275", "sL_ContLoss": "0.039", "geom_point": "0101000020E6100000E5AE0C47A3285EC0C1A9514041144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.63134140799994, 50.157198794000081 ], [ -120.63137374799993, 50.156925443000013 ], [ -120.636956078, 50.15719770600009 ], [ -120.636941511999908, 50.157320944000098 ], [ -120.637514866999965, 50.157348891000019 ], [ -120.637202914999989, 50.159988447000053 ], [ -120.636385382999933, 50.160009102000025 ], [ -120.635255476999973, 50.159627393000065 ], [ -120.634628887999952, 50.159262789000138 ], [ -120.634198595999962, 50.159182989000065 ], [ -120.633470899999963, 50.158879712000115 ], [ -120.632999279000018, 50.158798496000074 ], [ -120.63213209299991, 50.158204588000089 ], [ -120.632078188999984, 50.15734009500008 ], [ -120.631630418999947, 50.157304495000034 ], [ -120.63134140799994, 50.157198794000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999911574010757", "sL_AssetLoss": "103.02401", "sL_BldgLoss": "103.0149", "sL_StrLoss": "103", "sL_NStrLoss": "0.0149", "sL_ContLoss": "0.00911", "geom_point": "0101000020E6100000D612B89645335EC0E26F62E5A3304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.801636760999941, 50.378346541000042 ], [ -120.803852116999948, 50.378450643000129 ], [ -120.803999302999927, 50.378736301000124 ], [ -120.803820187999918, 50.379290288000057 ], [ -120.802329625999946, 50.380485203000056 ], [ -120.802089312999925, 50.380805695000092 ], [ -120.802181985999979, 50.381247193000064 ], [ -120.802633882999956, 50.381480805000088 ], [ -120.802733184999951, 50.382002180000036 ], [ -120.801286145999939, 50.381934177000076 ], [ -120.798943222999952, 50.381824033000093 ], [ -120.799356175999947, 50.378239326000042 ], [ -120.801636760999941, 50.378346541000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999772775002496", "sL_AssetLoss": "116.1844", "sL_BldgLoss": "116.158", "sL_StrLoss": "116", "sL_NStrLoss": "0.158", "sL_ContLoss": "0.0264", "geom_point": "0101000020E6100000DC240EF2DD235EC052AA8E66F6F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.559170659999964, 49.904054300000048 ], [ -120.561954413999899, 49.904192753000061 ], [ -120.56190381299993, 49.904786973000064 ], [ -120.561863284999959, 49.907795501000059 ], [ -120.558743153999956, 49.907640324000091 ], [ -120.559170659999964, 49.904054300000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999899149151928", "sL_AssetLoss": "108.0804", "sL_BldgLoss": "108.0695", "sL_StrLoss": "108", "sL_NStrLoss": "0.0695", "sL_ContLoss": "0.0109", "geom_point": "0101000020E61000004BAA5BE22D345EC0B033AE4D1D324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.814438088999964, 50.392461400000023 ], [ -120.814173711999942, 50.392428699000064 ], [ -120.813605314999947, 50.392543995000018 ], [ -120.81310529199996, 50.392391591000049 ], [ -120.81286311099997, 50.39213530000012 ], [ -120.812816898999969, 50.391944409000082 ], [ -120.81291881599995, 50.39155130000006 ], [ -120.813681184999979, 50.391205301000092 ], [ -120.813860087999927, 50.390966003000123 ], [ -120.813876291999989, 50.390597091000075 ], [ -120.813678789000022, 50.390306593000069 ], [ -120.813044608999959, 50.390033103000114 ], [ -120.812924090999971, 50.389896388000061 ], [ -120.812716995999935, 50.389385748000073 ], [ -120.81742699099999, 50.389606491000052 ], [ -120.817015367999943, 50.393191215000044 ], [ -120.816552407999978, 50.393169526000165 ], [ -120.816534755999967, 50.393323225000131 ], [ -120.816323666999935, 50.393313336000077 ], [ -120.816218793999923, 50.394226431000099 ], [ -120.813963587999922, 50.394120748 ], [ -120.814183106999963, 50.394020902000072 ], [ -120.814479021999915, 50.393397103000062 ], [ -120.814718212999963, 50.393123708000061 ], [ -120.814757493999934, 50.392890088000101 ], [ -120.814602979999933, 50.392545403000092 ], [ -120.814438088999964, 50.392461400000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999873979598753", "sL_AssetLoss": "199.1741", "sL_BldgLoss": "199.149", "sL_StrLoss": "199", "sL_NStrLoss": "0.149", "sL_ContLoss": "0.0251", "geom_point": "0101000020E61000007EE7B4FA2C195EC03088A306AE294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.390791910999937, 50.32368944100007 ], [ -120.396393313999937, 50.323973825000081 ], [ -120.395948962999952, 50.327557219000013 ], [ -120.390347117999937, 50.327272813000043 ], [ -120.390791910999937, 50.32368944100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999512654976658", "sL_AssetLoss": "265.7255", "sL_BldgLoss": "265.596", "sL_StrLoss": "265", "sL_NStrLoss": "0.596", "sL_ContLoss": "0.1295", "geom_point": "0101000020E6100000845A5F66D0285EC0181C6F3C691A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.635137690999969, 50.204408050000097 ], [ -120.640725878999973, 50.20468010600004 ], [ -120.640301981, 50.20826500900008 ], [ -120.634713353999942, 50.207992933000106 ], [ -120.635137690999969, 50.204408050000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999803001637719", "sL_AssetLoss": "220.3064", "sL_BldgLoss": "220.263", "sL_StrLoss": "220", "sL_NStrLoss": "0.263", "sL_ContLoss": "0.0434", "geom_point": "0101000020E6100000EBFEF32C6F1C5EC04BD702313F224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.441708341999956, 50.265620585000114 ], [ -120.447302891, 50.265902412000095 ], [ -120.446863131999947, 50.269486276000052 ], [ -120.441268142999945, 50.269204427000062 ], [ -120.441708341999956, 50.265620585000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999339390036801", "sL_AssetLoss": "299.723", "sL_BldgLoss": "299.525", "sL_StrLoss": "298", "sL_NStrLoss": "1.525", "sL_ContLoss": "0.198", "geom_point": "0101000020E610000093917194D51E5EC0032670EBEEF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.479677473999985, 49.895928921000142 ], [ -120.485227027999912, 49.896208965000049 ], [ -120.484793797999956, 49.899794737000036 ], [ -120.483912984999932, 49.899750308000137 ], [ -120.483894465999953, 49.899903558000119 ], [ -120.478344470999929, 49.899623448000078 ], [ -120.478778204999969, 49.896037701000061 ], [ -120.479658940999954, 49.896082171000039 ], [ -120.479677473999985, 49.895928921000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999993397438733", "sL_AssetLoss": "262.01953", "sL_BldgLoss": "262.0178", "sL_StrLoss": "262", "sL_NStrLoss": "0.0178", "sL_ContLoss": "0.00173", "geom_point": "0101000020E6100000FD18AD82DC135EC059B594C18B254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.308062157, 50.289999431000076 ], [ -120.313658876, 50.290288016000027 ], [ -120.313208312999919, 50.29387122800015 ], [ -120.313145010999946, 50.293867965000025 ], [ -120.312975279999989, 50.295217630000067 ], [ -120.312917039999959, 50.295214629000093 ], [ -120.312857199999968, 50.295690431000047 ], [ -120.312728677999957, 50.295683808000085 ], [ -120.312605945999906, 50.296659635000019 ], [ -120.307008447999976, 50.296371001000061 ], [ -120.307459525999903, 50.292787825000062 ], [ -120.307561237999963, 50.292793073000091 ], [ -120.307831030999921, 50.290649628000033 ], [ -120.307979361999969, 50.290657280000069 ], [ -120.308062157, 50.289999431000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.99960160462453", "sL_AssetLoss": "496.2407", "sL_BldgLoss": "496.043", "sL_StrLoss": "495", "sL_NStrLoss": "1.043", "sL_ContLoss": "0.1977", "geom_point": "0101000020E6100000BB8D9B5453335EC0E0A50ED16C2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.79909474199999, 50.361360805000096 ], [ -120.799231917999961, 50.360169480000096 ], [ -120.80217349199999, 50.360307821000106 ], [ -120.804840312, 50.360433172000057 ], [ -120.804808239999915, 50.360712004000135 ], [ -120.805558404999914, 50.360747253000092 ], [ -120.80554683699998, 50.360847845000087 ], [ -120.807200056999974, 50.360925509000047 ], [ -120.80678788499999, 50.364510324000022 ], [ -120.805903368999964, 50.364468775000027 ], [ -120.805884753000015, 50.364630644000059 ], [ -120.802491641999893, 50.364471191000035 ], [ -120.802416833999985, 50.365121225000102 ], [ -120.800357715999965, 50.365024409000043 ], [ -120.796807875, 50.364857412000106 ], [ -120.797220840999941, 50.36127263500002 ], [ -120.79909474199999, 50.361360805000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.99944171748994", "sL_AssetLoss": "293.0416", "sL_BldgLoss": "292.878", "sL_StrLoss": "292", "sL_NStrLoss": "0.878", "sL_ContLoss": "0.1636", "geom_point": "0101000020E61000008BBEC450351A5EC0E22F7777AE004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.406828933999918, 50.007101653000142 ], [ -120.406855819999976, 50.006882799999985 ], [ -120.406176526999985, 50.006848137000077 ], [ -120.406616951999936, 50.003263198000113 ], [ -120.412179109999954, 50.003546902000046 ], [ -120.412152249999949, 50.003765758000014 ], [ -120.412831502999921, 50.003800384000094 ], [ -120.412391560999978, 50.007385344000092 ], [ -120.406828933999918, 50.007101653000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.99992070910683", "sL_AssetLoss": "203.0498", "sL_BldgLoss": "203.0337", "sL_StrLoss": "203", "sL_NStrLoss": "0.0337", "sL_ContLoss": "0.0161", "geom_point": "0101000020E6100000B62D88507E155EC040AE26B2831A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.333180112999912, 50.205249572000078 ], [ -120.338557227999956, 50.205526155000086 ], [ -120.338307643999926, 50.207523814000098 ], [ -120.338192281999937, 50.208447119000034 ], [ -120.338109470999925, 50.20910986000014 ], [ -120.333488172999964, 50.208872171000102 ], [ -120.333180112999912, 50.205249572000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999835180683176", "sL_AssetLoss": "114.0643", "sL_BldgLoss": "114.0455", "sL_StrLoss": "114", "sL_NStrLoss": "0.0455", "sL_ContLoss": "0.0188", "geom_point": "0101000020E61000005118313FF9265EC0D8F1A13CDA314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.610686711999961, 50.38695292800012 ], [ -120.611298988, 50.386982760000087 ], [ -120.611206303999921, 50.387131989000082 ], [ -120.610782816, 50.387446804000028 ], [ -120.610802915999898, 50.387879691000116 ], [ -120.611180599999969, 50.388489288000102 ], [ -120.611139891999969, 50.388749911000041 ], [ -120.610544710999989, 50.38882679400011 ], [ -120.610390196999944, 50.389930586000077 ], [ -120.61020209899999, 50.390349303000058 ], [ -120.609984091999976, 50.39045328900005 ], [ -120.609905799999936, 50.390622801000056 ], [ -120.609882584999951, 50.391079893000118 ], [ -120.610031903, 50.391200991000112 ], [ -120.610048087999928, 50.391425993000034 ], [ -120.609975452999947, 50.391484759000043 ], [ -120.607109854999962, 50.391345094000052 ], [ -120.607538098999925, 50.387761157000035 ], [ -120.610149130999929, 50.387888420000074 ], [ -120.610173791999941, 50.387681919000023 ], [ -120.610597199999944, 50.387702550000043 ], [ -120.610686711999961, 50.38695292800012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.99996857933997", "sL_AssetLoss": "171.22492", "sL_BldgLoss": "171.21954", "sL_StrLoss": "171.2", "sL_NStrLoss": "0.01954", "sL_ContLoss": "0.00538", "geom_point": "0101000020E6100000232A3B9AF6175EC043C3A4F087284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.371849329999932, 50.314714178000074 ], [ -120.377449503999912, 50.314999524000044 ], [ -120.377185044999948, 50.317125506000096 ], [ -120.377003742999989, 50.318582882000015 ], [ -120.374125247999956, 50.318436250000026 ], [ -120.371403126999923, 50.31829751500009 ], [ -120.371849329999932, 50.314714178000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999176023555168", "sL_AssetLoss": "149.6402", "sL_BldgLoss": "149.5169", "sL_StrLoss": "148.0389", "sL_NStrLoss": "1.478", "sL_ContLoss": "0.1233", "geom_point": "0101000020E61000005961E1C122205EC0DD7F0110B9134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.499807026999946, 50.151759254000048 ], [ -120.505387924, 50.152038182000084 ], [ -120.50495384599999, 50.155622805000107 ], [ -120.504534071999927, 50.155601835000084 ], [ -120.504436067999947, 50.156411015000039 ], [ -120.498854639999976, 50.156132041000056 ], [ -120.49928920399999, 50.15254744500001 ], [ -120.499708945999942, 50.152568435000049 ], [ -120.499807026999946, 50.151759254000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999949456846713", "sL_AssetLoss": "175.0979", "sL_BldgLoss": "175.08905", "sL_StrLoss": "175.00125", "sL_NStrLoss": "0.0878", "sL_ContLoss": "0.00885", "geom_point": "0101000020E61000002E573F3649FF5DC0884A658248244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.99155099099994, 50.281164949000036 ], [ -119.99383676699992, 50.281289459000071 ], [ -119.99336101599999, 50.28487137300008 ], [ -119.99063703299997, 50.284722988000048 ], [ -119.989613213999974, 50.284667200000044 ], [ -119.98944390799997, 50.285940961000044 ], [ -119.983849850999974, 50.285635968000129 ], [ -119.984326360999958, 50.282054099000028 ], [ -119.988073922999973, 50.282258452000072 ], [ -119.988243252999965, 50.280984687000078 ], [ -119.99155099099994, 50.281164949000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999850022058902", "sL_AssetLoss": "106.21562", "sL_BldgLoss": "106.19969", "sL_StrLoss": "106.00449", "sL_NStrLoss": "0.1952", "sL_ContLoss": "0.01593", "geom_point": "0101000020E610000063EE9C5E10275EC046C0D7C60E174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.607794740999935, 50.178209244000087 ], [ -120.613379541999961, 50.178482695000064 ], [ -120.61295373099999, 50.182067614000104 ], [ -120.607368490999946, 50.181794144000058 ], [ -120.607794740999935, 50.178209244000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999864483560288", "sL_AssetLoss": "446.4403", "sL_BldgLoss": "446.3798", "sL_StrLoss": "446", "sL_NStrLoss": "0.3798", "sL_ContLoss": "0.0605", "geom_point": "0101000020E61000008DB38E4FED145EC06C010420AC314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.324770357999952, 50.391121688000069 ], [ -120.32477278099995, 50.391102421000035 ], [ -120.323820728, 50.391053563000106 ], [ -120.323926611, 50.390211892000067 ], [ -120.323466072999949, 50.390188255000098 ], [ -120.323473692999954, 50.39012768000007 ], [ -120.322186834999911, 50.390061620000033 ], [ -120.322471767999929, 50.387797191000082 ], [ -120.322637644999972, 50.386478808000035 ], [ -120.324016581999956, 50.386549595000076 ], [ -120.324056198999955, 50.386234641000101 ], [ -120.324187635, 50.386241386000044 ], [ -120.324398578999933, 50.384564244000039 ], [ -120.330007102999943, 50.384851967000088 ], [ -120.329886969, 50.385808082000075 ], [ -120.331471719999939, 50.385889329000051 ], [ -120.331144244999976, 50.38849610700003 ], [ -120.331021616, 50.389472179000094 ], [ -120.33081225199993, 50.389461447000137 ], [ -120.330716844999969, 50.390220785000089 ], [ -120.330530252999949, 50.390211219000051 ], [ -120.330379697999945, 50.391409389000081 ], [ -120.328216686999951, 50.391298483000107 ], [ -120.326889058999967, 50.391230390000082 ], [ -120.324770357999952, 50.391121688000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999793693626783", "sL_AssetLoss": "121.179", "sL_BldgLoss": "121.154", "sL_StrLoss": "121", "sL_NStrLoss": "0.154", "sL_ContLoss": "0.025", "geom_point": "0101000020E61000002E7404F4EB1F5EC0B85321BBDEE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.49645758699999, 49.772918132000036 ], [ -120.496552337999901, 49.77212996 ], [ -120.495733313999906, 49.77208861400004 ], [ -120.495756586999917, 49.771895052000104 ], [ -120.498880071999906, 49.771790303000053 ], [ -120.499323697999984, 49.771775387000105 ], [ -120.500354521999952, 49.771760099000083 ], [ -120.500713312999949, 49.77177467500006 ], [ -120.500761913999966, 49.771833689000061 ], [ -120.501262189999963, 49.773160551000053 ], [ -120.49645758699999, 49.772918132000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999998315886441", "sL_AssetLoss": "162.103083", "sL_BldgLoss": "162.10281", "sL_StrLoss": "162.1", "sL_NStrLoss": "0.00281", "sL_ContLoss": "0.000273", "geom_point": "0101000020E610000056F01D2D35005EC0D51D30B45F1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.000690653999953, 50.204102382000031 ], [ -120.006274780999945, 50.204406555000084 ], [ -120.005800814999958, 50.207988877000098 ], [ -120.000216251999959, 50.207684682000092 ], [ -120.000690653999953, 50.204102382000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999008863591312", "sL_AssetLoss": "176.565", "sL_BldgLoss": "176.39", "sL_StrLoss": "175", "sL_NStrLoss": "1.39", "sL_ContLoss": "0.175", "geom_point": "0101000020E61000003821DF6BE9385EC05A143435222E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.887876612999918, 50.358748894000044 ], [ -120.887344805999959, 50.358711894000081 ], [ -120.887093189999945, 50.359606307000014 ], [ -120.88693161, 50.35980139800008 ], [ -120.886626594999925, 50.359697499000021 ], [ -120.886463893000013, 50.35925309600001 ], [ -120.886372781999938, 50.359201434000049 ], [ -120.886455409999925, 50.358471523000084 ], [ -120.89111435199996, 50.358686914000067 ], [ -120.890441149000011, 50.361490413000119 ], [ -120.890104804999964, 50.362895750000092 ], [ -120.890107918999931, 50.362910758000098 ], [ -120.8884362699999, 50.362833489000089 ], [ -120.888363392999949, 50.362373599000115 ], [ -120.888384594999962, 50.361563190000062 ], [ -120.888235912999932, 50.360472190000074 ], [ -120.888591625999965, 50.360064904000104 ], [ -120.888689104999969, 50.359770099000102 ], [ -120.888413903999947, 50.359019491 ], [ -120.887876612999918, 50.358748894000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999763340786638", "sL_AssetLoss": "114.0881", "sL_BldgLoss": "114.0611", "sL_StrLoss": "114", "sL_NStrLoss": "0.0611", "sL_ContLoss": "0.027", "geom_point": "0101000020E61000008DCBC01A0A1D5EC0B17E7DBEF7194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.451159721999929, 50.204204835000091 ], [ -120.451397607999965, 50.202261763000095 ], [ -120.449100282999922, 50.202145983000015 ], [ -120.449160438999982, 50.201654796000071 ], [ -120.449831696, 50.201596006000059 ], [ -120.450757100999937, 50.201588888000089 ], [ -120.451081996999918, 50.201514808000063 ], [ -120.451605490999967, 50.201184390000016 ], [ -120.452032093999975, 50.201311110000084 ], [ -120.452900499999899, 50.201339606000111 ], [ -120.45386370199999, 50.201665804000129 ], [ -120.45527691299999, 50.201957687000089 ], [ -120.455835889999889, 50.201997602000048 ], [ -120.456307096999964, 50.201828095000053 ], [ -120.456703889999986, 50.201486310000099 ], [ -120.457126045999956, 50.201385012000074 ], [ -120.456746763999917, 50.20448620700013 ], [ -120.451159721999929, 50.204204835000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999912388779134", "sL_AssetLoss": "228.05298", "sL_BldgLoss": "228.033", "sL_StrLoss": "228", "sL_NStrLoss": "0.033", "sL_ContLoss": "0.01998", "geom_point": "0101000020E610000059FA122247355EC07DDB9FCDA2224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.831329580999949, 50.268737843000125 ], [ -120.835469914999919, 50.268931745000081 ], [ -120.835060813999974, 50.272517085000096 ], [ -120.83021455, 50.27229010700006 ], [ -120.829463120999932, 50.272254894000142 ], [ -120.829872661999957, 50.268669574000029 ], [ -120.831329580999949, 50.268737843000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999828592667891", "sL_AssetLoss": "218.1937", "sL_BldgLoss": "218.1563", "sL_StrLoss": "218", "sL_NStrLoss": "0.1563", "sL_ContLoss": "0.0374", "geom_point": "0101000020E6100000A122DAD0C5275EC0E23E726BD2164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.618909182999971, 50.176209300000011 ], [ -120.624493804999972, 50.176482188000101 ], [ -120.624068889999961, 50.18006715900006 ], [ -120.624026267999938, 50.180065078000048 ], [ -120.623988504999943, 50.180383661000114 ], [ -120.61840340599997, 50.180110748000047 ], [ -120.618828768999933, 50.176525799000061 ], [ -120.618871385999938, 50.176527883000048 ], [ -120.618909182999971, 50.176209300000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999898018461549", "sL_AssetLoss": "242.2007", "sL_BldgLoss": "242.176", "sL_StrLoss": "242", "sL_NStrLoss": "0.176", "sL_ContLoss": "0.0247", "geom_point": "0101000020E6100000DE233881AB315EC09082A790AB1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.773503022999975, 50.237685575000086 ], [ -120.779096126999931, 50.237950612000134 ], [ -120.778682849999882, 50.241535885000047 ], [ -120.773089307999953, 50.241270828000054 ], [ -120.773503022999975, 50.237685575000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999688485571588", "sL_AssetLoss": "245.5745", "sL_BldgLoss": "245.498", "sL_StrLoss": "245", "sL_NStrLoss": "0.498", "sL_ContLoss": "0.0765", "geom_point": "0101000020E61000009C95E5D295335EC0BDA520681A384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.806709266999945, 50.436536288000099 ], [ -120.80903493799994, 50.43664531700005 ], [ -120.808622218999957, 50.440229798000111 ], [ -120.806596342999939, 50.440134826000097 ], [ -120.803003895999922, 50.439966323000064 ], [ -120.803417058, 50.436381862000111 ], [ -120.806709266999945, 50.436536288000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999667346598519", "sL_AssetLoss": "250.7114", "sL_BldgLoss": "250.628", "sL_StrLoss": "250", "sL_NStrLoss": "0.628", "sL_ContLoss": "0.0834", "geom_point": "0101000020E610000083BBF5922D345EC07BE1C61449354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.812336276999972, 50.418421621000121 ], [ -120.812442633999964, 50.417496821000078 ], [ -120.812199333999985, 50.417485420000069 ], [ -120.812611561000011, 50.413900824000088 ], [ -120.818226698999965, 50.414163820000063 ], [ -120.818120467999961, 50.41508863100006 ], [ -120.818363756999986, 50.415100019000121 ], [ -120.817951975000014, 50.418684631000097 ], [ -120.812336276999972, 50.418421621000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.999226968379859", "sL_AssetLoss": "142.9437", "sL_BldgLoss": "142.8332", "sL_StrLoss": "142.0422", "sL_NStrLoss": "0.791", "sL_ContLoss": "0.1105", "geom_point": "0101000020E610000022F6321FCA1F5EC0C8832505B3154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.494095851999987, 50.171480678000066 ], [ -120.494133566999949, 50.171169973000097 ], [ -120.493787760999922, 50.171152670000133 ], [ -120.493816968999965, 50.170912072000064 ], [ -120.493291060999979, 50.170885756000139 ], [ -120.493400455999932, 50.169984676000063 ], [ -120.493726205999906, 50.167301251000112 ], [ -120.4977127399999, 50.16750067300007 ], [ -120.499308973000012, 50.167580481000087 ], [ -120.499279796999971, 50.167821082000032 ], [ -120.499805672999955, 50.167847370000104 ], [ -120.499767997999925, 50.168158078000076 ], [ -120.500113782999975, 50.168175361000088 ], [ -120.499679134999951, 50.171759888000125 ], [ -120.494095851999987, 50.171480678000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.890655292749128", "sL_AssetLoss": "0.2579", "sL_BldgLoss": "0.2297", "sL_StrLoss": "0.0117", "sL_NStrLoss": "0.218", "sL_ContLoss": "0.0282", "geom_point": "0101000020E6100000DDC92B00DB335EC0ACE741CDD2304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.808486597999959, 50.381789793000117 ], [ -120.808628396999922, 50.38113610199999 ], [ -120.809037175999919, 50.380809896000116 ], [ -120.810280104999933, 50.380402608000082 ], [ -120.810593791999963, 50.380029515000082 ], [ -120.81091308399999, 50.379828701000108 ], [ -120.811004896, 50.37962361200006 ], [ -120.810957090999949, 50.379469794000066 ], [ -120.810887369999975, 50.379439248000047 ], [ -120.81209321399993, 50.37949581500002 ], [ -120.811792155999953, 50.382115617000117 ], [ -120.811672980999973, 50.381957895 ], [ -120.810976604999951, 50.381782687000111 ], [ -120.810807102999931, 50.381823992000179 ], [ -120.810676185999981, 50.382504790000077 ], [ -120.811128647999979, 50.383054643000015 ], [ -120.80867522299998, 50.38293952500004 ], [ -120.808658807999947, 50.382926302000058 ], [ -120.80816551099997, 50.382664292000065 ], [ -120.808072504999927, 50.382519009000099 ], [ -120.808082188999947, 50.38233950300004 ], [ -120.808486597999959, 50.381789793000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999923306540504", "sL_AssetLoss": "368.87109", "sL_BldgLoss": "368.8428", "sL_StrLoss": "368.7", "sL_NStrLoss": "0.1428", "sL_ContLoss": "0.02829", "geom_point": "0101000020E610000055BBE487A3185EC00B23C519262D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.378688851999982, 50.356011534000082 ], [ -120.379027524999927, 50.353290639000086 ], [ -120.379074081999931, 50.353293008000065 ], [ -120.379195972999966, 50.352313642000112 ], [ -120.379926196999918, 50.352350783000105 ], [ -120.380062396999946, 50.351256258000092 ], [ -120.385667147, 50.351541176000083 ], [ -120.385631915999952, 50.35182457500013 ], [ -120.385814619999962, 50.351833859000081 ], [ -120.385876643999936, 50.351334895000051 ], [ -120.386375975999925, 50.351360264000029 ], [ -120.386433145999931, 50.350900307000138 ], [ -120.38726057699995, 50.350942339000056 ], [ -120.387347644999963, 50.350241726000078 ], [ -120.387884843999956, 50.350269013000087 ], [ -120.387941042999969, 50.349816739000097 ], [ -120.388322850999927, 50.349836131000124 ], [ -120.388368844999917, 50.349465948000024 ], [ -120.39397342499997, 50.349750445000055 ], [ -120.393954437, 50.349903418000075 ], [ -120.393041083999989, 50.349846208000045 ], [ -120.389925712999954, 50.352573587000101 ], [ -120.388555882, 50.353459393000044 ], [ -120.386522901999967, 50.354368106000067 ], [ -120.384794105999973, 50.354869403000102 ], [ -120.383585882999967, 50.355615693000082 ], [ -120.382814906999926, 50.355822206000042 ], [ -120.382338704999938, 50.35581219000003 ], [ -120.381144310999971, 50.355533088000087 ], [ -120.380808494999911, 50.355515992000079 ], [ -120.380440283999945, 50.35555300500004 ], [ -120.378869298999973, 50.356003113000021 ], [ -120.378688851999982, 50.356011534000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999185811484044", "sL_AssetLoss": "140.508", "sL_BldgLoss": "140.3936", "sL_StrLoss": "139.0346", "sL_NStrLoss": "1.359", "sL_ContLoss": "0.1144", "geom_point": "0101000020E610000004FDE8482C185EC00BB7F8EB80174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.374084368999917, 50.18538747000008 ], [ -120.374183278999936, 50.184590352000036 ], [ -120.374369400999953, 50.184612288000089 ], [ -120.375218991999958, 50.184442800000028 ], [ -120.375281898999944, 50.184039791 ], [ -120.375428402999944, 50.183944288000134 ], [ -120.376701996999984, 50.183964303000025 ], [ -120.377424278999968, 50.184061093 ], [ -120.377421406999986, 50.183863184000103 ], [ -120.376983995999936, 50.183673713000118 ], [ -120.376474918999946, 50.183769206000044 ], [ -120.375324087999942, 50.183789096000119 ], [ -120.374952712999956, 50.18393290100007 ], [ -120.37475857699998, 50.184405795000067 ], [ -120.3742931099999, 50.184458493000122 ], [ -120.374210002999973, 50.184374972000057 ], [ -120.374252149999904, 50.184035304000091 ], [ -120.374279985999962, 50.183927207000082 ], [ -120.374269058999957, 50.18389902900001 ], [ -120.374375549999954, 50.183040757000114 ], [ -120.375733479, 50.183213696000045 ], [ -120.376008889999937, 50.183048502000048 ], [ -120.375887602999953, 50.182972985000013 ], [ -120.375635897999985, 50.182977299000051 ], [ -120.375223103999971, 50.182831985000092 ], [ -120.374853777999988, 50.18250010100008 ], [ -120.37474139599999, 50.182399113000081 ], [ -120.374475588999985, 50.182234451000099 ], [ -120.374529054999968, 50.181803509000119 ], [ -120.375042479999962, 50.181829750000091 ], [ -120.375080047999944, 50.181526921000085 ], [ -120.380663826999978, 50.181812152000063 ], [ -120.380630366999966, 50.18208214000007 ], [ -120.381037831999947, 50.182102943000075 ], [ -120.380950199999958, 50.182810083000113 ], [ -120.38059365699992, 50.185686929000063 ], [ -120.379672686999982, 50.185639907000059 ], [ -120.379668617, 50.185672751000055 ], [ -120.37869844, 50.185623209000056 ], [ -120.378896816999927, 50.185344304000125 ], [ -120.378923401999927, 50.185093696000138 ], [ -120.378489792, 50.185325812000045 ], [ -120.37832699599997, 50.18551100600007 ], [ -120.378332794999935, 50.18560453400012 ], [ -120.374084368999917, 50.18538747000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999855651493757", "sL_AssetLoss": "200.2099", "sL_BldgLoss": "200.181", "sL_StrLoss": "200", "sL_NStrLoss": "0.181", "sL_ContLoss": "0.0289", "geom_point": "0101000020E6100000F0664FFA29125EC0AFE0C84D9E0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.281249909999971, 50.120081580000019 ], [ -120.286825555999954, 50.120371586000026 ], [ -120.286374560999917, 50.123955479000074 ], [ -120.280798478999913, 50.123665453000051 ], [ -120.281249909999971, 50.120081580000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999937287670107", "sL_AssetLoss": "208.09305", "sL_BldgLoss": "208.08", "sL_StrLoss": "208", "sL_NStrLoss": "0.08", "sL_ContLoss": "0.01305", "geom_point": "0101000020E6100000D4665A6A16135EC0EE7C9AEE500E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.295680867999948, 50.109908190000048 ], [ -120.301255359999928, 50.110197469000056 ], [ -120.300919141999984, 50.112876755000045 ], [ -120.300805601999969, 50.113781470000077 ], [ -120.300049847999915, 50.113742268000081 ], [ -120.295230673999981, 50.113492169000068 ], [ -120.295680867999948, 50.109908190000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "0.99994705918245", "sL_AssetLoss": "557.226", "sL_BldgLoss": "557.1965", "sL_StrLoss": "557", "sL_NStrLoss": "0.1965", "sL_ContLoss": "0.0295", "geom_point": "0101000020E610000018E4574186105EC0CA9782FB22134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.258926587999966, 50.147698199000068 ], [ -120.26007549800002, 50.147166997000042 ], [ -120.261214408999962, 50.147319407000154 ], [ -120.262094987999916, 50.147124213000083 ], [ -120.263277401999957, 50.146523192000053 ], [ -120.264990905, 50.145673001000063 ], [ -120.265477285999935, 50.145504901000038 ], [ -120.267289410999922, 50.145151706000078 ], [ -120.268419312000034, 50.145203640000091 ], [ -120.26834111699999, 50.145822704000096 ], [ -120.268059937999908, 50.148048644000013 ], [ -120.263100258999941, 50.147790006000037 ], [ -120.262883699, 50.149502760000139 ], [ -120.257345865999966, 50.149213707000079 ], [ -120.257103444, 50.151128990000068 ], [ -120.256250525999988, 50.151084446000063 ], [ -120.256186331999942, 50.151591512000053 ], [ -120.255553635999945, 50.151558464000054 ], [ -120.255274115999953, 50.153766027000103 ], [ -120.249694576999929, 50.153474437000085 ], [ -120.249793983999922, 50.152690136000032 ], [ -120.249861131999978, 50.152160340000066 ], [ -120.25001811099996, 50.151912405000076 ], [ -120.250742086999935, 50.15099381000006 ], [ -120.251810710999933, 50.150210498000092 ], [ -120.252475791999956, 50.149586694000057 ], [ -120.252661605999933, 50.149511208000078 ], [ -120.253280293999964, 50.149227789000079 ], [ -120.254933507999937, 50.148700803000075 ], [ -120.25636777699998, 50.148366194000019 ], [ -120.258159, 50.147904685000114 ], [ -120.258926587999966, 50.147698199000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999968729332825", "sL_AssetLoss": "180.04093", "sL_BldgLoss": "180.0353", "sL_StrLoss": "180", "sL_NStrLoss": "0.0353", "sL_ContLoss": "0.00563", "geom_point": "0101000020E6100000046034123E115EC075A50AEB6B114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.270391891999907, 50.137361293000062 ], [ -120.269903016999962, 50.136855702000062 ], [ -120.269553380999952, 50.136838601000079 ], [ -120.268926500999953, 50.137022304000062 ], [ -120.267889995999965, 50.137042303000065 ], [ -120.267678509999939, 50.137090706000045 ], [ -120.267440112999921, 50.137337094000017 ], [ -120.266973100999934, 50.137443902000065 ], [ -120.26630732299999, 50.137414175000075 ], [ -120.266670315999974, 50.134540678000029 ], [ -120.272247640999964, 50.134831416000083 ], [ -120.271795354999981, 50.138415181000063 ], [ -120.270714329999947, 50.138358851000085 ], [ -120.270677500999966, 50.137989391000147 ], [ -120.270391891999907, 50.137361293000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16264167", "BldgCostT": "11216667", "sL_LossRatio": "0.999799947164677", "sL_AssetLoss": "2994.209", "sL_BldgLoss": "2993.61", "sL_StrLoss": "2990", "sL_NStrLoss": "3.61", "sL_ContLoss": "0.599", "geom_point": "0101000020E610000067D47C953C125EC0A108D25A8B114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.291117985999932, 50.145781687000081 ], [ -120.291136827999949, 50.145631919000031 ], [ -120.290369272, 50.145592066000034 ], [ -120.290379632999944, 50.145509726000107 ], [ -120.289713755999912, 50.145475149000035 ], [ -120.289818021999935, 50.144646562000048 ], [ -120.288471270999963, 50.144576617000119 ], [ -120.28848491399998, 50.14446822300004 ], [ -120.287593049999941, 50.144421894000125 ], [ -120.28767755799997, 50.143750557000061 ], [ -120.287315490999958, 50.143742094000061 ], [ -120.287275431999944, 50.144060307000075 ], [ -120.285657519999987, 50.143976237000068 ], [ -120.285642427999932, 50.144242714000036 ], [ -120.283126102999944, 50.144183832000053 ], [ -120.28314138099995, 50.143914322000107 ], [ -120.282721997999943, 50.143904504000091 ], [ -120.282726567999958, 50.143823878 ], [ -120.28169687799999, 50.143770334000095 ], [ -120.281720829000037, 50.143580261000061 ], [ -120.28010063899994, 50.143495989000066 ], [ -120.28014476199999, 50.143145935000099 ], [ -120.280130462999963, 50.143145192000134 ], [ -120.280156705999971, 50.142936994000102 ], [ -120.280206395, 50.142542762000083 ], [ -120.280405521999967, 50.142410103000039 ], [ -120.281104603999921, 50.141715103000131 ], [ -120.281542188999978, 50.14113260200002 ], [ -120.281543596999924, 50.140367801000146 ], [ -120.28168429399993, 50.140109988000113 ], [ -120.283168500999935, 50.139622911000103 ], [ -120.283120192999917, 50.139486215000034 ], [ -120.282887693999925, 50.139382201000039 ], [ -120.282314811999953, 50.139378010000016 ], [ -120.28182852299993, 50.139546004000103 ], [ -120.281234894999969, 50.139902100000015 ], [ -120.280875303999935, 50.139802398000036 ], [ -120.279973716999947, 50.139907794000109 ], [ -120.279277089999965, 50.140125707000088 ], [ -120.278527378999982, 50.140728099000036 ], [ -120.278357025999952, 50.140782784000038 ], [ -120.278411293, 50.140352356000051 ], [ -120.277968459999968, 50.140329309000087 ], [ -120.276725331999941, 50.140264605 ], [ -120.277064802999945, 50.137572589000115 ], [ -120.273553006999947, 50.137389724000052 ], [ -120.274005143999929, 50.133805947000099 ], [ -120.27573517699993, 50.133896047000071 ], [ -120.275829603999981, 50.133147287 ], [ -120.276992037999932, 50.133207811000055 ], [ -120.27717762599994, 50.131735815000106 ], [ -120.277954113999911, 50.131776237000032 ], [ -120.277968337999965, 50.131663389000039 ], [ -120.277821639999928, 50.131655753000075 ], [ -120.278273384999977, 50.128071931000093 ], [ -120.278593278999949, 50.128088583000093 ], [ -120.278659098, 50.127566338000044 ], [ -120.278783949999948, 50.127572838000106 ], [ -120.27885562099999, 50.12700414100005 ], [ -120.278959482999952, 50.127009547000064 ], [ -120.279251233999958, 50.124694346000084 ], [ -120.279934589999982, 50.124729912000049 ], [ -120.284827431999958, 50.12498445000012 ], [ -120.284740644999886, 50.125673858 ], [ -120.285044272, 50.125689646000055 ], [ -120.284970968999986, 50.126271947000099 ], [ -120.285109408999944, 50.126279146000066 ], [ -120.284658219999983, 50.1298630040001 ], [ -120.28411224599995, 50.129834614000089 ], [ -120.284001907999965, 50.130710879000041 ], [ -120.286824587999945, 50.130776906000108 ], [ -120.286808998999959, 50.131052414000052 ], [ -120.286778836999986, 50.131585445000063 ], [ -120.284263174999936, 50.131526600000036 ], [ -120.284247909999976, 50.131796113000107 ], [ -120.283567217999959, 50.131780181000089 ], [ -120.283444619999955, 50.132753666000021 ], [ -120.284073877999958, 50.132786387000117 ], [ -120.284063189999983, 50.132871266000073 ], [ -120.28418684899998, 50.13287416 ], [ -120.284170703999919, 50.133159198000094 ], [ -120.284543386999971, 50.133178576000091 ], [ -120.284538644999955, 50.13321622600008 ], [ -120.285247065999926, 50.133253057000069 ], [ -120.284997001999898, 50.135239150000068 ], [ -120.284795818999939, 50.136836883000065 ], [ -120.282746258, 50.136730315000072 ], [ -120.28271618799999, 50.13696902 ], [ -120.282754902999955, 50.136971034000076 ], [ -120.282735730999988, 50.137123231000011 ], [ -120.283955363999922, 50.137186650000018 ], [ -120.284828200000021, 50.137207075 ], [ -120.285200549, 50.137215785000087 ], [ -120.285189310999939, 50.137414218000067 ], [ -120.287369172999945, 50.137527508000019 ], [ -120.287362894999887, 50.137577382000138 ], [ -120.288379139999904, 50.137630183000105 ], [ -120.28838762, 50.137562791000022 ], [ -120.293965454999977, 50.13785242800008 ], [ -120.293737284999978, 50.139667228000079 ], [ -120.293822675999976, 50.139671660000047 ], [ -120.29668603099995, 50.139820230000083 ], [ -120.298513426999989, 50.139915008000052 ], [ -120.298440528999947, 50.140495277000063 ], [ -120.298063159999941, 50.143498857000104 ], [ -120.297270094999959, 50.143457729000033 ], [ -120.29701522799995, 50.145485777000026 ], [ -120.296772006999944, 50.145473162000037 ], [ -120.296696845999946, 50.146071182000078 ], [ -120.291117985999932, 50.145781687000081 ] ], [ [ -120.288227491000029, 50.142458499000121 ], [ -120.288681796999953, 50.142343203000102 ], [ -120.289800323999941, 50.142404405000072 ], [ -120.290697990999931, 50.14235320000008 ], [ -120.291028308999913, 50.142207905000141 ], [ -120.291537202999962, 50.142112509000079 ], [ -120.291940192999959, 50.141905897000129 ], [ -120.292250114999916, 50.141643902000098 ], [ -120.292112897999928, 50.141577004000027 ], [ -120.29143828799999, 50.141875996000081 ], [ -120.290914377999968, 50.14198139500008 ], [ -120.289878510999969, 50.142011289000031 ], [ -120.288931088999902, 50.141898802000057 ], [ -120.288366694999922, 50.141975688000059 ], [ -120.288011598999972, 50.141850389000062 ], [ -120.287814320999985, 50.14161110200012 ], [ -120.28793340499999, 50.140993009000063 ], [ -120.287778907999936, 50.140756596000109 ], [ -120.287018093999961, 50.140585693000098 ], [ -120.286730782999911, 50.140722393000054 ], [ -120.286339688999973, 50.140722395000104 ], [ -120.285953008999982, 50.141118409000072 ], [ -120.285448816999988, 50.141107006000027 ], [ -120.285698387999915, 50.141391806000087 ], [ -120.286242213999955, 50.141700905000079 ], [ -120.286844399999922, 50.142192210000104 ], [ -120.287623319999952, 50.142498400000143 ], [ -120.288227491000029, 50.142458499000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999955958193182", "sL_AssetLoss": "94.22865", "sL_BldgLoss": "94.2245", "sL_StrLoss": "94.2", "sL_NStrLoss": "0.0245", "sL_ContLoss": "0.00415", "geom_point": "0101000020E610000016363D07DA105EC00DE66D7467114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.262710482999978, 50.13781130400006 ], [ -120.261376292999913, 50.136421289000047 ], [ -120.260826913999921, 50.135975489000018 ], [ -120.260270808999962, 50.135683585000024 ], [ -120.260265842999971, 50.135682111000051 ], [ -120.260387872999956, 50.13471713200007 ], [ -120.265965179999952, 50.135008189000089 ], [ -120.265880440999979, 50.135678937000058 ], [ -120.266027122999958, 50.135686588000048 ], [ -120.265819452999949, 50.137330343000023 ], [ -120.264591090999929, 50.136982499000084 ], [ -120.263567114999915, 50.137003802000038 ], [ -120.263043401999965, 50.137629005000058 ], [ -120.262710482999978, 50.13781130400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.999934789951507", "sL_AssetLoss": "609.26193", "sL_BldgLoss": "609.2222", "sL_StrLoss": "609", "sL_NStrLoss": "0.2222", "sL_ContLoss": "0.03973", "geom_point": "0101000020E6100000505C65D8EE135EC01DEE3C54C7124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31350022799991, 50.149208795000078 ], [ -120.313560663999951, 50.148130723000058 ], [ -120.313141232999925, 50.148121014000047 ], [ -120.313156344999967, 50.147851496 ], [ -120.311478627999946, 50.147812644000069 ], [ -120.311493748999965, 50.147543127000105 ], [ -120.310361764999968, 50.147516899000095 ], [ -120.310171587999946, 50.149033562000035 ], [ -120.304592277999959, 50.148744749000102 ], [ -120.30504208399999, 50.145160898000057 ], [ -120.305746030999941, 50.145197354000089 ], [ -120.305788476999936, 50.144442278000049 ], [ -120.307046667999913, 50.14447147900011 ], [ -120.307031525999889, 50.144740996000053 ], [ -120.30745092599993, 50.144750726000083 ], [ -120.307420960999963, 50.145284076000152 ], [ -120.310352106999957, 50.145435779000131 ], [ -120.310356481999989, 50.145357836000066 ], [ -120.312872923999947, 50.145416127000011 ], [ -120.312903147, 50.14487709000008 ], [ -120.311225536, 50.144838237000073 ], [ -120.311240655999924, 50.144568720000088 ], [ -120.310401857999949, 50.14454928300006 ], [ -120.310416980999946, 50.14427976600011 ], [ -120.309578186999957, 50.14426032500004 ], [ -120.309619530999953, 50.143523782000067 ], [ -120.309623573999957, 50.143451774000035 ], [ -120.31088174199999, 50.14348093300007 ], [ -120.310866620999974, 50.143750450000034 ], [ -120.31170540799999, 50.1437698820001 ], [ -120.311690291, 50.144039399000064 ], [ -120.314626065, 50.144107366000078 ], [ -120.314610963999897, 50.14437688400006 ], [ -120.315449762999918, 50.144396290000088 ], [ -120.315420305999979, 50.144922188000052 ], [ -120.315419569999946, 50.144935327000034 ], [ -120.315440007999968, 50.144935799000088 ], [ -120.316677782999975, 50.144964424000108 ], [ -120.316662695, 50.145233943000086 ], [ -120.317082101999944, 50.145243639000064 ], [ -120.31705192699998, 50.145782676000053 ], [ -120.317890752, 50.145802064000065 ], [ -120.317875669999964, 50.146071583000079 ], [ -120.318295085999978, 50.146081275000014 ], [ -120.31828000299997, 50.14635079400005 ], [ -120.319118837999952, 50.146370173000079 ], [ -120.319103762999987, 50.146639693000139 ], [ -120.319942604999937, 50.146659067000023 ], [ -120.319927532999913, 50.146928586000143 ], [ -120.320766378999934, 50.146947953000023 ], [ -120.320746428999954, 50.147304799000047 ], [ -120.320706107999968, 50.148026030000032 ], [ -120.319447808999939, 50.147996976000087 ], [ -120.319462884999908, 50.147727457000059 ], [ -120.318624023999931, 50.147708079000054 ], [ -120.318639103999971, 50.147438561000151 ], [ -120.317800248999902, 50.14741917700006 ], [ -120.317815332999913, 50.147149658000068 ], [ -120.317395908999927, 50.147139964000083 ], [ -120.317410995, 50.146870445000097 ], [ -120.316572151999978, 50.146851054000066 ], [ -120.316587242999944, 50.146581535000053 ], [ -120.316167822999958, 50.146571838000078 ], [ -120.316182915999946, 50.146302319000043 ], [ -120.31576350099999, 50.146292619000093 ], [ -120.315778595999959, 50.146023101000054 ], [ -120.31535918199998, 50.146013400000101 ], [ -120.31537427899994, 50.14574388100008 ], [ -120.314954866999969, 50.145734180000012 ], [ -120.314985065999963, 50.145195143000073 ], [ -120.314565659999914, 50.145185439000102 ], [ -120.314505250999929, 50.146263511000029 ], [ -120.313666420999937, 50.146244098000125 ], [ -120.313651312999951, 50.146513616000071 ], [ -120.311554226999988, 50.146465058000047 ], [ -120.311539108999952, 50.146734575000032 ], [ -120.314055625999927, 50.146792841000028 ], [ -120.31404052100001, 50.147062360000085 ], [ -120.315718212999982, 50.147101174000028 ], [ -120.31570311699997, 50.147370692000074 ], [ -120.316122542999921, 50.147380392000144 ], [ -120.316107448999944, 50.147649911000073 ], [ -120.316526877999962, 50.147659610000083 ], [ -120.316511784999989, 50.147929128000087 ], [ -120.31693121699999, 50.147938825 ], [ -120.316855765999961, 50.149286418000052 ], [ -120.316638395999931, 50.149281393000145 ], [ -120.31350022799991, 50.149208795000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999923323994725", "sL_AssetLoss": "189.1074", "sL_BldgLoss": "189.0929", "sL_StrLoss": "189", "sL_NStrLoss": "0.0929", "sL_ContLoss": "0.0145", "geom_point": "0101000020E610000019675FBB2C125EC0EC909370BE0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.282358131999928, 50.10548613800011 ], [ -120.286992679999983, 50.105727249000054 ], [ -120.286541843999942, 50.10931121300014 ], [ -120.28190693399999, 50.109070084000038 ], [ -120.280967554999933, 50.109021189000053 ], [ -120.281418826999953, 50.105437246000108 ], [ -120.282358131999928, 50.10548613800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999882483371397", "sL_AssetLoss": "199.9717", "sL_BldgLoss": "199.9482", "sL_StrLoss": "199.8", "sL_NStrLoss": "0.1482", "sL_ContLoss": "0.0235", "geom_point": "0101000020E61000003B3BB6F169115EC0736726184E0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.269530623999941, 50.102008461000061 ], [ -120.275103981999976, 50.102299068000079 ], [ -120.274652244999956, 50.105882999000052 ], [ -120.269078450999956, 50.10559237100005 ], [ -120.269530623999941, 50.102008461000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999970780387541", "sL_AssetLoss": "95.449589", "sL_BldgLoss": "95.4468", "sL_StrLoss": "95.401", "sL_NStrLoss": "0.0458", "sL_ContLoss": "0.002789", "geom_point": "0101000020E6100000AECA8D3BC8145EC0C156091607134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.32215576599998, 50.14671780000009 ], [ -120.327734937999963, 50.14700572400006 ], [ -120.32763605699995, 50.147796738000068 ], [ -120.327286903999919, 50.15058965900004 ], [ -120.321707294999968, 50.150301713000061 ], [ -120.321872902999957, 50.148978341000046 ], [ -120.32208902799999, 50.147251177000015 ], [ -120.32215576599998, 50.14671780000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999871616636286", "sL_AssetLoss": "200.1817", "sL_BldgLoss": "200.156", "sL_StrLoss": "200", "sL_NStrLoss": "0.156", "sL_ContLoss": "0.0257", "geom_point": "0101000020E61000004F0007E5E4115EC00A3E1757260D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.277034674999967, 50.100795432000034 ], [ -120.282607931999976, 50.101085658000024 ], [ -120.282156796999956, 50.104669626000039 ], [ -120.276583103999968, 50.104379378000054 ], [ -120.277034674999967, 50.100795432000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "0.999909140027102", "sL_AssetLoss": "925.6001", "sL_BldgLoss": "925.516", "sL_StrLoss": "925", "sL_NStrLoss": "0.516", "sL_ContLoss": "0.0841", "geom_point": "0101000020E6100000532DD8FCAE1D5EC0CC3FC07BC31A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.460739558999975, 50.211899880000075 ], [ -120.461062897999938, 50.209254671000124 ], [ -120.460599830999953, 50.209231381000031 ], [ -120.460881172999919, 50.206929672000037 ], [ -120.463232197999957, 50.20686380000005 ], [ -120.462442045000017, 50.205717797000041 ], [ -120.46662520199996, 50.20592805600009 ], [ -120.466302209999967, 50.208573294000104 ], [ -120.466765274999943, 50.20859655900005 ], [ -120.466327606999954, 50.212180764000081 ], [ -120.460739558999975, 50.211899880000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9412917", "BldgCostT": "6491667", "sL_LossRatio": "0.999637868240407", "sL_AssetLoss": "1880.531", "sL_BldgLoss": "1879.85", "sL_StrLoss": "1875", "sL_NStrLoss": "4.85", "sL_ContLoss": "0.681", "geom_point": "0101000020E6100000DEB9A4285F1E5EC0ED8B7C4554194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.479406205999979, 50.203626910000047 ], [ -120.477750188999948, 50.203149812000056 ], [ -120.477403500999984, 50.203349193000101 ], [ -120.477593995999925, 50.20371380800001 ], [ -120.477220497999909, 50.20389470600005 ], [ -120.476923121999931, 50.20392310600004 ], [ -120.475814105999945, 50.203450302000093 ], [ -120.475866997999915, 50.203262289000072 ], [ -120.476187605999939, 50.203269411000065 ], [ -120.476460524999979, 50.203166904000113 ], [ -120.4765034, 50.20288059500011 ], [ -120.476387478999982, 50.202688391000059 ], [ -120.476243287999935, 50.202487501000128 ], [ -120.475389698999891, 50.202208403000036 ], [ -120.47495237599999, 50.20197339700011 ], [ -120.473673192999954, 50.202036095000039 ], [ -120.47216710099994, 50.201642994000117 ], [ -120.471448158999934, 50.201579403000061 ], [ -120.471467417999989, 50.20142151800006 ], [ -120.473460394999961, 50.201521558000081 ], [ -120.473500278999921, 50.201194458000096 ], [ -120.472074886999977, 50.20112291300012 ], [ -120.472182329999939, 50.200241923000085 ], [ -120.472086544999939, 50.200237114000096 ], [ -120.472523642999988, 50.196652831000058 ], [ -120.472652951999976, 50.196659322000095 ], [ -120.472706936999927, 50.196216579000087 ], [ -120.47093457599999, 50.196127592000074 ], [ -120.471081792999897, 50.194920590000088 ], [ -120.469711315999959, 50.194851761000066 ], [ -120.469810803999948, 50.194036243000092 ], [ -120.470148549999948, 50.191267462000098 ], [ -120.473782450999963, 50.191449929000051 ], [ -120.474071158999948, 50.191464420000031 ], [ -120.473767180999943, 50.191774603000056 ], [ -120.473612191999948, 50.192347191000074 ], [ -120.47369338599999, 50.192896892000093 ], [ -120.473834497000027, 50.193143299000099 ], [ -120.475311698, 50.194650106000047 ], [ -120.475938306999936, 50.195510284000072 ], [ -120.476271990999919, 50.196362004000058 ], [ -120.476219602999905, 50.197638086000033 ], [ -120.47640417799991, 50.198119497000029 ], [ -120.477426885999975, 50.199176294000111 ], [ -120.479110797999979, 50.200480789000054 ], [ -120.479582522999962, 50.200933431000109 ], [ -120.479557589999956, 50.201138140000111 ], [ -120.47936727799997, 50.202700642000067 ], [ -120.48014338199998, 50.202739547000107 ], [ -120.480386776999978, 50.202751747000079 ], [ -120.480414014999951, 50.203108501000102 ], [ -120.480582008999974, 50.203373389 ], [ -120.481285997999947, 50.203883295000018 ], [ -120.481166393999956, 50.203997211000079 ], [ -120.480455274999954, 50.204081051000074 ], [ -120.480067284999961, 50.204126797000114 ], [ -120.479406205999979, 50.203626910000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10717917", "BldgCostT": "7391667", "sL_LossRatio": "0.999804824224115", "sL_AssetLoss": "1788.6441", "sL_BldgLoss": "1788.295", "sL_StrLoss": "1786", "sL_NStrLoss": "2.295", "sL_ContLoss": "0.3491", "geom_point": "0101000020E61000004BCF91E8671E5EC0E7033C48531A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.469301200999936, 50.208407621000063 ], [ -120.4695776699999, 50.20614218 ], [ -120.468979042999976, 50.20611211700006 ], [ -120.469416442999915, 50.202527873000058 ], [ -120.471320801000019, 50.202623498000065 ], [ -120.471414778999957, 50.201853059000072 ], [ -120.471469506999981, 50.201870907000064 ], [ -120.472015117999945, 50.201873706000121 ], [ -120.472509503999945, 50.202073104000071 ], [ -120.473312393999919, 50.202244012000051 ], [ -120.474233597999941, 50.202336597000041 ], [ -120.474546583999967, 50.202252594000079 ], [ -120.474951609999934, 50.202252498000078 ], [ -120.475668110999891, 50.202474686000102 ], [ -120.476024012999986, 50.202671287000072 ], [ -120.476170877999962, 50.202800896000021 ], [ -120.476188979999961, 50.202981694000073 ], [ -120.475646816, 50.203158292000062 ], [ -120.475570092999959, 50.203552903000066 ], [ -120.475840897999944, 50.203746510000023 ], [ -120.47665299099998, 50.204017100000037 ], [ -120.477126285999972, 50.204081199000036 ], [ -120.477468095999953, 50.203990091000051 ], [ -120.477957507999946, 50.203730895000099 ], [ -120.477868278999921, 50.203557094000125 ], [ -120.477943592999935, 50.20346880000006 ], [ -120.478660785999949, 50.203663889000012 ], [ -120.479282386999941, 50.203840493000051 ], [ -120.479944100999987, 50.204313396000053 ], [ -120.480138186999952, 50.204353300000093 ], [ -120.480480697999923, 50.204234999000036 ], [ -120.480510426, 50.20423564300004 ], [ -120.481139585999983, 50.204249299000054 ], [ -120.481877290999989, 50.204606813000076 ], [ -120.482266980999952, 50.205451301000046 ], [ -120.482545400000021, 50.205773202000046 ], [ -120.482548908999917, 50.205952602000167 ], [ -120.48226140899996, 50.206387009000068 ], [ -120.482279612999918, 50.206549391000067 ], [ -120.482521010999989, 50.206770105000039 ], [ -120.482415391999922, 50.206894014000078 ], [ -120.48211998499994, 50.20691539700006 ], [ -120.4820293099999, 50.207299890000115 ], [ -120.482253800999942, 50.208104589000094 ], [ -120.482485947999962, 50.208394742000053 ], [ -120.482285686999958, 50.208384709000079 ], [ -120.479256175999978, 50.208232893000108 ], [ -120.479310518999966, 50.207786806000101 ], [ -120.479218504999977, 50.207782193000106 ], [ -120.479247235999964, 50.207546354000065 ], [ -120.478631819999947, 50.207515504000078 ], [ -120.478589982999921, 50.207858889000114 ], [ -120.478067433999925, 50.207832691000107 ], [ -120.478043769, 50.20802690000005 ], [ -120.477479284999959, 50.207998597000106 ], [ -120.47744525799996, 50.208277815000024 ], [ -120.474954122999947, 50.208152874000113 ], [ -120.474888871999909, 50.208688072000101 ], [ -120.469301200999936, 50.208407621000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10897917", "BldgCostT": "6041667", "sL_LossRatio": "0.998628980456021", "sL_AssetLoss": "341.7165", "sL_BldgLoss": "341.248", "sL_StrLoss": "337.308", "sL_NStrLoss": "3.94", "sL_ContLoss": "0.4685", "geom_point": "0101000020E61000003C8C410E671D5EC0E38A51F868194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.456132012999987, 50.196791799000081 ], [ -120.461655595999986, 50.197069773000081 ], [ -120.461639660999978, 50.197200192000011 ], [ -120.461217635999986, 50.200654012000058 ], [ -120.458869762999953, 50.200535890000083 ], [ -120.458864989999981, 50.200528963000053 ], [ -120.457369814999979, 50.198359631000088 ], [ -120.456132012999987, 50.196791799000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999807134098292", "sL_AssetLoss": "350.5026", "sL_BldgLoss": "350.435", "sL_StrLoss": "350", "sL_NStrLoss": "0.435", "sL_ContLoss": "0.0676", "geom_point": "0101000020E610000080A10570CC1E5EC0FCFFF644701B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.481625093999966, 50.214990704000058 ], [ -120.481046092999975, 50.214816899000041 ], [ -120.480344882999987, 50.214828295000089 ], [ -120.479917102999963, 50.21493660200013 ], [ -120.478870816, 50.215851797000063 ], [ -120.47890626499999, 50.215560875000051 ], [ -120.479248443999907, 50.212752528000159 ], [ -120.482326684999947, 50.212906770000068 ], [ -120.483266843999957, 50.212953860000034 ], [ -120.483103100999955, 50.213277389000027 ], [ -120.482912215999988, 50.214767105000057 ], [ -120.482973092999941, 50.215748392000044 ], [ -120.482792286999924, 50.215979097000037 ], [ -120.4825297, 50.216728198000055 ], [ -120.48212670099997, 50.21716970300011 ], [ -120.482111059999951, 50.217358580000074 ], [ -120.481848016999948, 50.217345404000113 ], [ -120.481872511999896, 50.216669793000058 ], [ -120.481358918999945, 50.21606449700009 ], [ -120.481439686999963, 50.215859409000068 ], [ -120.481793519999883, 50.215803897000093 ], [ -120.481867321, 50.215707100000046 ], [ -120.481832686999965, 50.21530120300006 ], [ -120.481625093999966, 50.214990704000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4871783", "BldgCostT": "2730546", "sL_LossRatio": "0.998006804767123", "sL_AssetLoss": "570.5412", "sL_BldgLoss": "569.404", "sL_StrLoss": "554.238", "sL_NStrLoss": "15.166", "sL_ContLoss": "1.1372", "geom_point": "0101000020E6100000311B4BF5F02F5EC01F411AE37D0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.745871453999939, 50.090947174000064 ], [ -120.745934447999986, 50.089604847000075 ], [ -120.745947368999964, 50.089329524000043 ], [ -120.746007971999987, 50.089330701 ], [ -120.748042646999949, 50.089370204000076 ], [ -120.748030561999883, 50.08962794100006 ], [ -120.748030004000015, 50.089639814000044 ], [ -120.748148878999956, 50.089642120000079 ], [ -120.748804298999943, 50.089654837000047 ], [ -120.748868121999962, 50.089656075000065 ], [ -120.748887160999985, 50.089249837000111 ], [ -120.748918662999941, 50.088577640000089 ], [ -120.749136188999927, 50.088581859000072 ], [ -120.751852013999923, 50.088634506000076 ], [ -120.751839394999976, 50.088904116000059 ], [ -120.752258447999949, 50.08891223300003 ], [ -120.752207981, 50.089990672000056 ], [ -120.751788917999974, 50.08998255300007 ], [ -120.751763678999978, 50.090521772000102 ], [ -120.75168956600001, 50.090520337000058 ], [ -120.751545852999982, 50.09051755200003 ], [ -120.750506478999938, 50.090497409000101 ], [ -120.750519105999913, 50.090227799000061 ], [ -120.750100042, 50.090219675000043 ], [ -120.75010664699991, 50.09007865800006 ], [ -120.750109021999918, 50.090027986000081 ], [ -120.750112669999979, 50.08995006600005 ], [ -120.749780317999935, 50.089943621000117 ], [ -120.749510376999964, 50.089938387000117 ], [ -120.748855485999954, 50.089925684000072 ], [ -120.748817577999944, 50.090734512000061 ], [ -120.74876941199993, 50.090733576000019 ], [ -120.748398509999959, 50.090726380000014 ], [ -120.748385870999954, 50.09099598900012 ], [ -120.745871453999939, 50.090947174000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4436250", "BldgCostT": "2850000", "sL_LossRatio": "0.715915393476272", "sL_AssetLoss": "1265.718", "sL_BldgLoss": "906.147", "sL_StrLoss": "770.315", "sL_NStrLoss": "135.832", "sL_ContLoss": "359.571", "geom_point": "0101000020E61000009B560A815C305EC07DCE9B92C50C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.757190855999966, 50.098723058000104 ], [ -120.758487926999962, 50.098701271000067 ], [ -120.758230186, 50.100935717 ], [ -120.752654040999957, 50.100669577000076 ], [ -120.752868814999943, 50.09880960800011 ], [ -120.754047594999946, 50.098786033000088 ], [ -120.757190855999966, 50.098723058000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255255075", "BldgCostT": "159564978", "sL_LossRatio": "0.905619552825665", "sL_AssetLoss": "49210.606", "sL_BldgLoss": "44566.087", "sL_StrLoss": "42215.747", "sL_NStrLoss": "2350.34", "sL_ContLoss": "4644.519", "geom_point": "0101000020E61000005B90A121EB305EC01FB0E574DD0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.74763056399992, 50.124982857000084 ], [ -120.747655879999954, 50.124443642000053 ], [ -120.74723651799998, 50.124435503000065 ], [ -120.747249177999947, 50.124165897000054 ], [ -120.74599110099993, 50.12414147300013 ], [ -120.746029100999962, 50.123332652000052 ], [ -120.744771047999947, 50.123308214000097 ], [ -120.744758373999929, 50.123577821000026 ], [ -120.74433902, 50.123569672000038 ], [ -120.744313666999929, 50.124108884000073 ], [ -120.743474950999911, 50.124092582000095 ], [ -120.743462270999942, 50.124362188000042 ], [ -120.743042908999897, 50.124354034000078 ], [ -120.743030224999956, 50.124623641000028 ], [ -120.742191501999955, 50.124607329000078 ], [ -120.742166123999965, 50.125146541000056 ], [ -120.740908023999907, 50.125122061000098 ], [ -120.740946113999925, 50.124313244000128 ], [ -120.741784830999961, 50.124329564000092 ], [ -120.741797521999942, 50.124059959000121 ], [ -120.741378165999947, 50.124051799000028 ], [ -120.741403551999923, 50.123512587000036 ], [ -120.740984199999957, 50.123504426000089 ], [ -120.74104767299994, 50.12215639500004 ], [ -120.741467012999962, 50.122164556000051 ], [ -120.741479703999971, 50.121894950000097 ], [ -120.741899041999929, 50.12190310900008 ], [ -120.741911732999966, 50.121633504000023 ], [ -120.741073059999934, 50.121617183000062 ], [ -120.741111141999966, 50.120808365000116 ], [ -120.74153047099999, 50.12081652600007 ], [ -120.741543161999971, 50.120546920000066 ], [ -120.741962486999938, 50.120555078000045 ], [ -120.741975175999983, 50.12028547200002 ], [ -120.745749098999937, 50.120358832000086 ], [ -120.745761764999912, 50.120089225000108 ], [ -120.746181089999936, 50.120097369000092 ], [ -120.746206417999957, 50.119558155000092 ], [ -120.747045056999951, 50.119574436000114 ], [ -120.747070374999922, 50.119035221000019 ], [ -120.747489689999924, 50.119043360000035 ], [ -120.747540313999963, 50.117964931000145 ], [ -120.748798229999949, 50.11798933700004 ], [ -120.748785582999943, 50.118258945000022 ], [ -120.749204889999959, 50.118267077000056 ], [ -120.749192244, 50.118536684000055 ], [ -120.74961155499993, 50.118544815000114 ], [ -120.749598908999985, 50.11881442300011 ], [ -120.750437536999982, 50.118830681000119 ], [ -120.750450176999948, 50.118561072000048 ], [ -120.751288799999926, 50.118577325000025 ], [ -120.75130143399997, 50.118307716000075 ], [ -120.752978673999934, 50.118340200000027 ], [ -120.752966048999923, 50.118609808000066 ], [ -120.754223985999914, 50.118634156000056 ], [ -120.754211367999972, 50.118903764000102 ], [ -120.754630683999977, 50.11891187700008 ], [ -120.754618066999953, 50.119181486000045 ], [ -120.755037385999913, 50.119189596000083 ], [ -120.755012156999925, 50.119728814000098 ], [ -120.75543148, 50.119736925000012 ], [ -120.75535580199994, 50.121354577000076 ], [ -120.757033150999987, 50.121387003000031 ], [ -120.757045754999979, 50.121117394000116 ], [ -120.757884427999969, 50.121133598000057 ], [ -120.757922223999969, 50.120324771000071 ], [ -120.759180211999961, 50.120349065000063 ], [ -120.759192803999937, 50.120079456000092 ], [ -120.75961213, 50.120087551000047 ], [ -120.759624718999987, 50.119817941000058 ], [ -120.760338057999888, 50.119831708000071 ], [ -120.760463368999979, 50.119834127000075 ], [ -120.760475887999974, 50.119565950000073 ], [ -120.760501120999947, 50.119025298000018 ], [ -120.760748509999956, 50.119030070000093 ], [ -120.76092044, 50.119033388000034 ], [ -120.760947605, 50.11845124200007 ], [ -120.760958181999982, 50.118224557000069 ], [ -120.760538870999966, 50.118216469000117 ], [ -120.76055145299992, 50.117946859000057 ], [ -120.759712836999967, 50.117930674000064 ], [ -120.759725424999942, 50.117661065000043 ], [ -120.758886810999968, 50.117644875000011 ], [ -120.758937178999957, 50.116566437000088 ], [ -120.75935647599999, 50.116574532000044 ], [ -120.75936906299999, 50.116304922 ], [ -120.759788356999977, 50.116313016000049 ], [ -120.759826115999942, 50.115504187000049 ], [ -120.756052537, 50.115431289000099 ], [ -120.756102963999922, 50.114352854000053 ], [ -120.756941515999941, 50.114369063000105 ], [ -120.756954116999978, 50.114099454000083 ], [ -120.757792667999979, 50.114115657000134 ], [ -120.757805263999956, 50.113846048000035 ], [ -120.75964657199998, 50.113881605000081 ], [ -120.760740174999967, 50.113902710000076 ], [ -120.76072759399996, 50.11417232000008 ], [ -120.761566146999925, 50.114188496000068 ], [ -120.76152842, 50.114997326000051 ], [ -120.761947702999947, 50.11500541200008 ], [ -120.76187225799994, 50.11662307200006 ], [ -120.761033662, 50.116606898000057 ], [ -120.761026272999942, 50.116765275000034 ], [ -120.761021082999946, 50.116876509000058 ], [ -120.761042544999924, 50.116876923000156 ], [ -120.761440382999965, 50.116884596000062 ], [ -120.761427804999954, 50.117154207000056 ], [ -120.762266410999956, 50.117170378000047 ], [ -120.762253836999932, 50.117439989000054 ], [ -120.763511752999989, 50.117464234000067 ], [ -120.763536883999947, 50.116925014000053 ], [ -120.763956184999984, 50.116933093000114 ], [ -120.764018998999944, 50.115585041000031 ], [ -120.765276867999958, 50.115609267000075 ], [ -120.765239201999975, 50.1164180990001 ], [ -120.766077794999944, 50.116434243000036 ], [ -120.766065244999965, 50.116703854000093 ], [ -120.766484543999951, 50.116711923000054 ], [ -120.766459445999956, 50.117251145000054 ], [ -120.766878750999965, 50.117259214000057 ], [ -120.766866203999925, 50.117528824 ], [ -120.768543431999944, 50.117561083000083 ], [ -120.768530895999973, 50.117830695000087 ], [ -120.768950205999914, 50.117838756000083 ], [ -120.768925133999971, 50.118377978000112 ], [ -120.769763766000011, 50.118394096000074 ], [ -120.769776296999964, 50.118124485000045 ], [ -120.772252262999984, 50.118172035000114 ], [ -120.772473479999945, 50.11624984500002 ], [ -120.77262276299993, 50.116256945000018 ], [ -120.772657688999942, 50.115953449000045 ], [ -120.77319701499999, 50.115979095000057 ], [ -120.773223574999975, 50.115748261000142 ], [ -120.774081505999959, 50.115789053000093 ], [ -120.774094501999969, 50.11550885800014 ], [ -120.775771669999941, 50.11554101100009 ], [ -120.775756481999935, 50.115868671000101 ], [ -120.777840005999948, 50.115967673000057 ], [ -120.77773750099999, 50.116161888000065 ], [ -120.777570478999962, 50.116419697000048 ], [ -120.778107893, 50.116304405000065 ], [ -120.778449211999941, 50.115869986000071 ], [ -120.77921339599996, 50.115713288000059 ], [ -120.779755493999986, 50.115787401000055 ], [ -120.779901211999984, 50.115654908000074 ], [ -120.779370777999986, 50.115590796000049 ], [ -120.779030617999965, 50.115412803000076 ], [ -120.778778396999911, 50.115399987000075 ], [ -120.778394218999921, 50.115563800000068 ], [ -120.77818971100001, 50.115738907000029 ], [ -120.77789008299996, 50.11589554200004 ], [ -120.778038235999958, 50.114606772000094 ], [ -120.779196047999932, 50.11466177000009 ], [ -120.779428089999953, 50.112642652000027 ], [ -120.779263252999954, 50.112639498000071 ], [ -120.779288202999979, 50.112100272000113 ], [ -120.779074058, 50.112096174000051 ], [ -120.779001133999913, 50.112730700000043 ], [ -120.778052013999968, 50.112685613000075 ], [ -120.778038896999945, 50.112799723000123 ], [ -120.777101678999927, 50.11275519200013 ], [ -120.77709135899994, 50.112844945000042 ], [ -120.772349075999955, 50.112619501000033 ], [ -120.771997504999931, 50.115674457000118 ], [ -120.767813849, 50.115475399000104 ], [ -120.767700493999968, 50.115402789 ], [ -120.767650507, 50.115467624000047 ], [ -120.766419471999939, 50.115409019000019 ], [ -120.766832569999963, 50.111823202000068 ], [ -120.771574743999935, 50.112048884000053 ], [ -120.771651590999966, 50.111381149000053 ], [ -120.770289181999956, 50.111316333000097 ], [ -120.770311942999939, 50.111118616000077 ], [ -120.767167279999939, 50.111058157000073 ], [ -120.767142194999948, 50.111597380000035 ], [ -120.765465174999946, 50.111565104000128 ], [ -120.765527933999948, 50.110217049000042 ], [ -120.765108690999966, 50.110208977000084 ], [ -120.765121243999957, 50.109939365000123 ], [ -120.763444284999935, 50.109907061000087 ], [ -120.763456848999965, 50.109637450000037 ], [ -120.762618373999942, 50.109621289000117 ], [ -120.762630940999912, 50.109351678000095 ], [ -120.761792471999939, 50.109335511000076 ], [ -120.761767327999948, 50.109874731000076 ], [ -120.761348089999984, 50.109866645000061 ], [ -120.76133551599996, 50.110136256000054 ], [ -120.760916274999914, 50.110128169000028 ], [ -120.760903697999979, 50.110397779000053 ], [ -120.760484454999968, 50.110389690000027 ], [ -120.760471872999972, 50.110659300000052 ], [ -120.75921413899998, 50.110635023000043 ], [ -120.7592519, 50.109826193000053 ], [ -120.758832662999936, 50.109818099000108 ], [ -120.758870426999948, 50.109009268000108 ], [ -120.761385813999965, 50.109057814000089 ], [ -120.761436109, 50.107979374000088 ], [ -120.763951444999947, 50.10802786300011 ], [ -120.763976562999929, 50.107488642000128 ], [ -120.763138125999944, 50.107472485000045 ], [ -120.763163251999956, 50.106933263000016 ], [ -120.761486399999953, 50.106900932000016 ], [ -120.761511545999966, 50.106361710000044 ], [ -120.760253920999958, 50.106337447000087 ], [ -120.760266500999961, 50.106067836000086 ], [ -120.759847295999947, 50.10605974599999 ], [ -120.75988503899994, 50.10525091500012 ], [ -120.760304237999918, 50.105259006000054 ], [ -120.760316816999975, 50.104989396000065 ], [ -120.762412796999968, 50.105029826000127 ], [ -120.762425363999967, 50.104760214000052 ], [ -120.762844559000015, 50.104768297000135 ], [ -120.762907375999973, 50.103420243000116 ], [ -120.762488192999939, 50.103412161000051 ], [ -120.762567372999982, 50.101713108000098 ], [ -120.76118488599991, 50.101647207000063 ], [ -120.761292232999949, 50.100716097 ], [ -120.760981940999955, 50.100701304000083 ], [ -120.76103484699999, 50.100242424000051 ], [ -120.76101137299996, 50.100241305000047 ], [ -120.761166655999915, 50.098894384000076 ], [ -120.760157933999935, 50.098846285000022 ], [ -120.760177929999941, 50.098672863000033 ], [ -120.763220349999969, 50.098621655000095 ], [ -120.763366096, 50.09902890800003 ], [ -120.763350646999967, 50.099349452000048 ], [ -120.76332469299993, 50.09988797400009 ], [ -120.763298433999978, 50.100432795000103 ], [ -120.763260288999945, 50.101224160000051 ], [ -120.763171859999915, 50.103049762000083 ], [ -120.763180875, 50.103494578000088 ], [ -120.763232695999989, 50.103701653000051 ], [ -120.763352706999925, 50.104034563000077 ], [ -120.763459725999937, 50.10421982 ], [ -120.763615669, 50.10448966300001 ], [ -120.763879670999955, 50.104814173000058 ], [ -120.764294896999928, 50.105189068000094 ], [ -120.764749177999988, 50.105504591000049 ], [ -120.765275080999984, 50.105782 ], [ -120.765506431999938, 50.105879005000091 ], [ -120.765743187999973, 50.105978302000082 ], [ -120.766461240999917, 50.106203271000012 ], [ -120.766598282999979, 50.106246195000026 ], [ -120.767583291999955, 50.106518399000024 ], [ -120.770577810999924, 50.107235991000145 ], [ -120.771889364999979, 50.107547673000106 ], [ -120.772005183999951, 50.107575213000075 ], [ -120.772046781999947, 50.107585196000066 ], [ -120.772867393999888, 50.107782108000059 ], [ -120.774670113999917, 50.10823380300014 ], [ -120.775109808999929, 50.108335809000025 ], [ -120.77628419899996, 50.108607991000035 ], [ -120.77896914199998, 50.109261370000119 ], [ -120.779022696999959, 50.109274396000053 ], [ -120.779332465999957, 50.109380733000101 ], [ -120.780268917999976, 50.109702200000115 ], [ -120.780402190999922, 50.109701398 ], [ -120.780659632999971, 50.109772702000029 ], [ -120.781866876999956, 50.110107097000103 ], [ -120.781842884999918, 50.110147252000068 ], [ -120.781806087999954, 50.110208801000091 ], [ -120.781540198999977, 50.110645322000046 ], [ -120.78143468899999, 50.110818471000066 ], [ -120.781278332999989, 50.110995858000074 ], [ -120.780986626999947, 50.111265018000104 ], [ -120.780569485999933, 50.111515636000043 ], [ -120.780223156999924, 50.111662345000077 ], [ -120.780829354999966, 50.111816401000048 ], [ -120.781490184999925, 50.111983 ], [ -120.782990803999965, 50.112369699000048 ], [ -120.785238701999987, 50.11293969200009 ], [ -120.784796671, 50.113665531000066 ], [ -120.78475789299999, 50.113729169000081 ], [ -120.784727007999891, 50.113779876000116 ], [ -120.784549393999924, 50.114071502000051 ], [ -120.78448852599999, 50.114171223000049 ], [ -120.78436205299991, 50.114378414000058 ], [ -120.784329772999953, 50.114431338000024 ], [ -120.784041954999935, 50.114902873000105 ], [ -120.78393936799992, 50.115070946000024 ], [ -120.783685877999915, 50.115486212000043 ], [ -120.783584098999953, 50.115567007000081 ], [ -120.783534382999946, 50.115785902000091 ], [ -120.782745418, 50.116960369000012 ], [ -120.78223196499999, 50.116840455000059 ], [ -120.781628196999989, 50.11660359200004 ], [ -120.780597649999947, 50.116334727000051 ], [ -120.780158788999984, 50.117066527000077 ], [ -120.77972663499996, 50.117734974000065 ], [ -120.782287512999957, 50.117943646000107 ], [ -120.781059143999983, 50.118322481000114 ], [ -120.779523467999979, 50.118797656000076 ], [ -120.775593694999941, 50.120013424000078 ], [ -120.774688635999922, 50.120292613000053 ], [ -120.769456700999953, 50.121906495000076 ], [ -120.769019124999929, 50.121382698000055 ], [ -120.767084194999953, 50.121991691000105 ], [ -120.766568781000018, 50.122153893000096 ], [ -120.766142399999922, 50.121559374000086 ], [ -120.766090302999928, 50.121486684000054 ], [ -120.765728249999967, 50.12159831300005 ], [ -120.765520420999962, 50.121662400000048 ], [ -120.765075904999946, 50.121770982000044 ], [ -120.764676487, 50.121829489000078 ], [ -120.764452587000036, 50.121862075000074 ], [ -120.763770274999928, 50.121880975000046 ], [ -120.763794641999979, 50.122727605000073 ], [ -120.763792427999974, 50.12300242200017 ], [ -120.763786780999965, 50.12335548000005 ], [ -120.763210299999926, 50.123417267000107 ], [ -120.762339083999962, 50.123492935000066 ], [ -120.761547294999986, 50.123487707000066 ], [ -120.761197399999929, 50.123457472000048 ], [ -120.761030738999949, 50.123434157000048 ], [ -120.760801417999971, 50.123402122000073 ], [ -120.76007257400002, 50.123300217000086 ], [ -120.759632054999955, 50.123241190000016 ], [ -120.759237042999985, 50.123188286000136 ], [ -120.758262157999951, 50.123052578000035 ], [ -120.757674301999955, 50.122970731000123 ], [ -120.757355788999917, 50.122926415000087 ], [ -120.757208283999944, 50.122906208000074 ], [ -120.75705533199999, 50.122885299000096 ], [ -120.756911265999932, 50.122865562000079 ], [ -120.755975139999961, 50.123321165000114 ], [ -120.75438311, 50.123991551000053 ], [ -120.75261214699999, 50.124693052000062 ], [ -120.752333660999938, 50.124804175000136 ], [ -120.752256240999927, 50.124802676000094 ], [ -120.752254694999948, 50.124835684000082 ], [ -120.750398688999937, 50.12557624599999 ], [ -120.749702105, 50.125562743000074 ], [ -120.74968945800002, 50.125832351000049 ], [ -120.749270081999953, 50.125824219000059 ], [ -120.749260407999927, 50.126030410000098 ], [ -120.748463687999902, 50.126348284000088 ], [ -120.748406025999969, 50.126347165000041 ], [ -120.748404871, 50.126371751000093 ], [ -120.746528627999922, 50.127120290000043 ], [ -120.74627113299999, 50.127115290000063 ], [ -120.746265974999957, 50.127225072000044 ], [ -120.745883591999956, 50.127377618000025 ], [ -120.745000304999976, 50.127360460000048 ], [ -120.745015342999949, 50.127040594000029 ], [ -120.745063674999969, 50.126012428000109 ], [ -120.745902424999969, 50.126028719000026 ], [ -120.745915092999923, 50.125759113000058 ], [ -120.746334465999936, 50.125767257000085 ], [ -120.746359798999947, 50.12522804300005 ], [ -120.747198535999985, 50.1252443240001 ], [ -120.747211196999956, 50.12497471800004 ], [ -120.74763056399992, 50.124982857000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999857773130293", "sL_AssetLoss": "347.3324", "sL_BldgLoss": "347.283", "sL_StrLoss": "347", "sL_NStrLoss": "0.283", "sL_ContLoss": "0.0494", "geom_point": "0101000020E6100000F227A6E2B1305EC01777EE03310B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.762457011999942, 50.085795280000085 ], [ -120.763587282999978, 50.085775052000088 ], [ -120.763598001999981, 50.088080274000042 ], [ -120.763470441999957, 50.089187524000053 ], [ -120.757895702999946, 50.088921645000021 ], [ -120.758260197999974, 50.085760958000016 ], [ -120.762457011999942, 50.085795280000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6883206", "BldgCostT": "4747039", "sL_LossRatio": "0.999068661337255", "sL_AssetLoss": "854.7911", "sL_BldgLoss": "853.995", "sL_StrLoss": "848.187", "sL_NStrLoss": "5.808", "sL_ContLoss": "0.7961", "geom_point": "0101000020E6100000715FFF5C51305EC0A8F5A722CF0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.752948428, 50.089387219000074 ], [ -120.758523195, 50.089653349000095 ], [ -120.758109644999976, 50.093239240000116 ], [ -120.757967829999984, 50.093232474000075 ], [ -120.757927256999949, 50.093584244000041 ], [ -120.757252261, 50.093552034 ], [ -120.757063444999943, 50.093543024000034 ], [ -120.756882697999984, 50.095109764000071 ], [ -120.751307273999956, 50.094843553000068 ], [ -120.751665507999931, 50.091741504000083 ], [ -120.751944791999946, 50.091746009000104 ], [ -120.752725435999977, 50.091746785000062 ], [ -120.752649487999975, 50.090905898000088 ], [ -120.752643415999927, 50.090794176000017 ], [ -120.752766016999928, 50.089732216000051 ], [ -120.752907818999944, 50.089738988000057 ], [ -120.752948428, 50.089387219000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999281360449999", "sL_AssetLoss": "153.067", "sL_BldgLoss": "152.957", "sL_StrLoss": "152", "sL_NStrLoss": "0.957", "sL_ContLoss": "0.11", "geom_point": "0101000020E610000068B1B19E5C305EC0EFF119BB8A0C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.753068087999907, 50.097083741000077 ], [ -120.758643796999976, 50.097349863000026 ], [ -120.758487926999962, 50.098701271000067 ], [ -120.757190855999966, 50.098723058000104 ], [ -120.754047594999946, 50.098786033000088 ], [ -120.752868814999943, 50.09880960800011 ], [ -120.753068087999907, 50.097083741000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177916", "BldgCostT": "2191666", "sL_LossRatio": "0.999371407304413", "sL_AssetLoss": "714.4531", "sL_BldgLoss": "714.004", "sL_StrLoss": "712", "sL_NStrLoss": "2.004", "sL_ContLoss": "0.4491", "geom_point": "0101000020E61000004D2BC75CC0305EC06B46ABFF180C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.760177929999941, 50.098672863000033 ], [ -120.76020340399999, 50.098451933000085 ], [ -120.760168859999951, 50.098450285000034 ], [ -120.760274409999951, 50.097534869000086 ], [ -120.760008414000012, 50.097522184000077 ], [ -120.760112438999926, 50.09662 ], [ -120.759449284, 50.096607198000086 ], [ -120.759501230999902, 50.095493816000101 ], [ -120.759433227, 50.095490573000106 ], [ -120.75944718599996, 50.095369518000055 ], [ -120.759846693999961, 50.091904687000131 ], [ -120.761552882, 50.091986056000117 ], [ -120.761836045999956, 50.089529128000066 ], [ -120.763559871999945, 50.089611311000048 ], [ -120.763525594999919, 50.090780106000068 ], [ -120.763544258999914, 50.091817645000027 ], [ -120.763511551999954, 50.093227195000111 ], [ -120.763416022999962, 50.095190527000064 ], [ -120.763419052999922, 50.095637441000058 ], [ -120.763433531999937, 50.09780200300002 ], [ -120.76339991, 50.097945207000073 ], [ -120.763168304999979, 50.098191110000087 ], [ -120.76299561699993, 50.098255003000062 ], [ -120.763200722999926, 50.09856670900006 ], [ -120.763220349999969, 50.098621655000095 ], [ -120.760177929999941, 50.098672863000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24988333", "BldgCostT": "17233333", "sL_LossRatio": "0.999277719817022", "sL_AssetLoss": "6479.48", "sL_BldgLoss": "6474.8", "sL_StrLoss": "6440", "sL_NStrLoss": "34.8", "sL_ContLoss": "4.68", "geom_point": "0101000020E610000029D171B9EA365EC079FBBD5E2B044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.856086989999966, 50.038565726000066 ], [ -120.856119149999955, 50.038281189000045 ], [ -120.855180876999952, 50.038237202000104 ], [ -120.855484306999955, 50.035552976000105 ], [ -120.855586292999988, 50.03465068700006 ], [ -120.855723465999958, 50.034657119000045 ], [ -120.855742899999953, 50.034485181000086 ], [ -120.855408833, 50.034469517000069 ], [ -120.855536816999972, 50.033337227000082 ], [ -120.854828288999897, 50.033304004000101 ], [ -120.854911578999975, 50.032567184000115 ], [ -120.854598619999976, 50.032561397000052 ], [ -120.854610639, 50.032291766000114 ], [ -120.853773460999918, 50.032276280000119 ], [ -120.853785483999957, 50.032006649000095 ], [ -120.853366896999944, 50.031998904000019 ], [ -120.85337892199999, 50.031729274000064 ], [ -120.852960338999964, 50.031721528000141 ], [ -120.852972364999957, 50.031451897000082 ], [ -120.852553783999937, 50.031444149000023 ], [ -120.852565811999938, 50.031174518000036 ], [ -120.852147234999975, 50.03116676900008 ], [ -120.85217129599998, 50.030627508000101 ], [ -120.851752722999919, 50.0306197580001 ], [ -120.85176475699997, 50.030350127000141 ], [ -120.851346184999983, 50.030342375000082 ], [ -120.851358221999988, 50.030072745000062 ], [ -120.850939652999955, 50.030064992000057 ], [ -120.85095169, 50.029795361000033 ], [ -120.850533122999948, 50.029787607000024 ], [ -120.850541139999919, 50.029608087000099 ], [ -120.850545163000021, 50.029517976000093 ], [ -120.85012659899995, 50.029510220000141 ], [ -120.850162724999976, 50.028701330000089 ], [ -120.850581281999936, 50.028709086000092 ], [ -120.850593319999945, 50.028439455000047 ], [ -120.851848984999918, 50.028462715000074 ], [ -120.851836951999957, 50.028732345000073 ], [ -120.852255509999935, 50.028740095000067 ], [ -120.852243479999956, 50.029009726000062 ], [ -120.852662040999945, 50.029017475000067 ], [ -120.852637984999959, 50.029556735000028 ], [ -120.853056548, 50.029564483000065 ], [ -120.853032496999987, 50.030103745000105 ], [ -120.853451067999956, 50.030111491000177 ], [ -120.85343904199999, 50.030381120000072 ], [ -120.853857616999946, 50.030388866000123 ], [ -120.853833571999985, 50.030928127000102 ], [ -120.854670726999956, 50.030943612000051 ], [ -120.854658709999939, 50.031213243000067 ], [ -120.855063776999955, 50.03122073300009 ], [ -120.855233688999988, 50.029717466000108 ], [ -120.855562508999938, 50.02973288500008 ], [ -120.855567940999919, 50.029610935000107 ], [ -120.855149375999972, 50.029603198000075 ], [ -120.855173400999888, 50.029063936000121 ], [ -120.854754841999934, 50.029056196000099 ], [ -120.854766856999987, 50.028786565000097 ], [ -120.85392974, 50.028771081000087 ], [ -120.853941759999927, 50.028501450000121 ], [ -120.853523205999949, 50.028493706000084 ], [ -120.853535228999988, 50.028224075000075 ], [ -120.853116674999981, 50.028216330000106 ], [ -120.853128698999953, 50.027946700000051 ], [ -120.852710148999975, 50.027938952000056 ], [ -120.852722174999883, 50.027669322000094 ], [ -120.852303625999966, 50.027661574000085 ], [ -120.852339712999978, 50.026852682 ], [ -120.852758253999966, 50.026860429000152 ], [ -120.852770279999973, 50.026590799000118 ], [ -120.854025896999985, 50.026614034000076 ], [ -120.85401387899995, 50.026883665000121 ], [ -120.854432420999899, 50.026891408000104 ], [ -120.854408387999925, 50.02743066900009 ], [ -120.854826933999945, 50.027438410000073 ], [ -120.854850963, 50.026899148000034 ], [ -120.855269505999928, 50.026906887000045 ], [ -120.85528151799997, 50.026637256000129 ], [ -120.85653713799995, 50.026660464000059 ], [ -120.856525131999931, 50.026930095000075 ], [ -120.857362218999981, 50.02694556000003 ], [ -120.857350217999951, 50.02721519200005 ], [ -120.857768764999904, 50.027222921000089 ], [ -120.857780761999948, 50.02695329000008 ], [ -120.858199305999932, 50.026961018000058 ], [ -120.858211300999969, 50.026691387000064 ], [ -120.86024626899993, 50.026728941000087 ], [ -120.86072255099999, 50.026737726000114 ], [ -120.860674624999945, 50.027816255000047 ], [ -120.861511727999968, 50.027831689000053 ], [ -120.861451838999969, 50.02917984900008 ], [ -120.861033275999887, 50.029172133000031 ], [ -120.861021293999968, 50.029441765000044 ], [ -120.86060272799989, 50.029434046000063 ], [ -120.860578996999962, 50.029968001000086 ], [ -120.860801750999954, 50.029978435000054 ], [ -120.860673907999967, 50.031110737000056 ], [ -120.861382405000015, 50.031143923000108 ], [ -120.861356799999967, 50.031370743000096 ], [ -120.862831071999906, 50.031439783000053 ], [ -120.86257578299994, 50.033701635000035 ], [ -120.862688065999976, 50.033706892000083 ], [ -120.862721409999949, 50.034086182000053 ], [ -120.863069081999981, 50.0347668960001 ], [ -120.863533483999959, 50.034992007 ], [ -120.863620808999968, 50.035551696000013 ], [ -120.863983126999969, 50.036361258000127 ], [ -120.863869547999968, 50.037367701000029 ], [ -120.863324568999957, 50.037342191000086 ], [ -120.863282608999953, 50.037713950000111 ], [ -120.863161989999981, 50.037710799000116 ], [ -120.86203731099998, 50.037860302000041 ], [ -120.861775079999973, 50.038003627000073 ], [ -120.861749197, 50.03800241500003 ], [ -120.861747349999973, 50.038018784000052 ], [ -120.861336409, 50.038243383000058 ], [ -120.860528006999957, 50.038516889000078 ], [ -120.860073311999969, 50.038752521000021 ], [ -120.856086989999966, 50.038565726000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11823500", "BldgCostT": "6680000", "sL_LossRatio": "0.997539020394374", "sL_AssetLoss": "596.7136", "sL_BldgLoss": "595.2451", "sL_StrLoss": "583.9451", "sL_NStrLoss": "11.3", "sL_ContLoss": "1.4685", "geom_point": "0101000020E61000003157CC29BD365EC0BA720F6C89054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.852986576999982, 50.044633129000054 ], [ -120.853257903, 50.042234290000103 ], [ -120.852013117, 50.042175903000086 ], [ -120.852027299999989, 50.042164294000081 ], [ -120.85317810399998, 50.042023307000093 ], [ -120.853700220999912, 50.041601698000115 ], [ -120.854823087999989, 50.041173010000115 ], [ -120.855832414999966, 50.041064808000051 ], [ -120.856286304999969, 50.041244293000062 ], [ -120.85635630099992, 50.041543303000068 ], [ -120.856264811999935, 50.042350904000045 ], [ -120.856613296999967, 50.043004596000088 ], [ -120.857000380999949, 50.043389094000098 ], [ -120.857814593999933, 50.043908892000118 ], [ -120.858452291999924, 50.044055598000085 ], [ -120.858638583999962, 50.044167280000089 ], [ -120.858556448999977, 50.044894207 ], [ -120.852986576999982, 50.044633129000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7494083", "BldgCostT": "5168333", "sL_LossRatio": "0.999348770219552", "sL_AssetLoss": "1668.8426", "sL_BldgLoss": "1667.7558", "sL_StrLoss": "1659.0898", "sL_NStrLoss": "8.666", "sL_ContLoss": "1.0868", "geom_point": "0101000020E6100000EA45E50DCD365EC012539E503A054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.856277108999976, 50.040839788000021 ], [ -120.855273806999946, 50.040785699000068 ], [ -120.854283690999935, 50.041036309000056 ], [ -120.853100107000031, 50.041581798000038 ], [ -120.852925903999932, 50.041739912000075 ], [ -120.851984709999925, 50.042029656000125 ], [ -120.851990327999943, 50.041979999000077 ], [ -120.851235490999954, 50.041944587000074 ], [ -120.851641249999929, 50.038358104000068 ], [ -120.857210347999953, 50.038619252000103 ], [ -120.857188446999928, 50.038813061000091 ], [ -120.857943235999954, 50.038848433000112 ], [ -120.857812935999959, 50.040001609000065 ], [ -120.859687493999914, 50.040089434000038 ], [ -120.859889, 50.040331301000066 ], [ -120.860200596999945, 50.040849704000102 ], [ -120.86020189499996, 50.041118888000028 ], [ -120.860887577999975, 50.042363692000052 ], [ -120.861414789999941, 50.043048700000092 ], [ -120.861446993999934, 50.043597001000109 ], [ -120.861084477999938, 50.043760340000077 ], [ -120.85869719599998, 50.043648527000059 ], [ -120.858666566999929, 50.043919619000043 ], [ -120.857253197999981, 50.04334070400008 ], [ -120.856868905999931, 50.042910606000142 ], [ -120.856798076999937, 50.042594395000023 ], [ -120.85696649499998, 50.041661497000085 ], [ -120.856914477, 50.041265597000091 ], [ -120.856727513999928, 50.041036309000056 ], [ -120.856277108999976, 50.040839788000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.999560339321875", "sL_AssetLoss": "1680.3868", "sL_BldgLoss": "1679.648", "sL_StrLoss": "1674", "sL_NStrLoss": "5.648", "sL_ContLoss": "0.7388", "geom_point": "0101000020E61000000DE87DCACE355EC08D326EACBC054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.837987504999916, 50.0480816130001 ], [ -120.838263064, 50.0456526480001 ], [ -120.837973264999945, 50.045639018000017 ], [ -120.838162625999971, 50.043969801000166 ], [ -120.8383801, 50.04205260300003 ], [ -120.843413713999894, 50.042289243000063 ], [ -120.843949571999943, 50.042314421000086 ], [ -120.843674336999953, 50.044743411000113 ], [ -120.843964131999911, 50.044757026000063 ], [ -120.84375059599995, 50.046641433000026 ], [ -120.842796010999962, 50.046481085000075 ], [ -120.841739182999959, 50.04638989299999 ], [ -120.841084815999977, 50.046639200000101 ], [ -120.840682188999949, 50.046882714000112 ], [ -120.840572799999919, 50.047177506000068 ], [ -120.840644, 50.047422508000125 ], [ -120.84095709099995, 50.047930891000114 ], [ -120.841146597999924, 50.048070487000054 ], [ -120.841194823999942, 50.048232413000058 ], [ -120.837987504999916, 50.0480816130001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11261667", "BldgCostT": "7766667", "sL_LossRatio": "0.999490255042679", "sL_AssetLoss": "2573.4438", "sL_BldgLoss": "2572.132", "sL_StrLoss": "2563", "sL_NStrLoss": "9.132", "sL_ContLoss": "1.3118", "geom_point": "0101000020E61000003F1117C2A2345EC003D85789BF064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.8227124269999, 50.049731654000084 ], [ -120.828282748999982, 50.049994264000077 ], [ -120.82822596499993, 50.050493789000015 ], [ -120.827875046999978, 50.053580605000022 ], [ -120.823400165999971, 50.053369662000087 ], [ -120.823174893999948, 50.05534929800011 ], [ -120.822979462999953, 50.055349231000044 ], [ -120.818589135999943, 50.055347615000102 ], [ -120.818567300999931, 50.055347462000057 ], [ -120.816307464999909, 50.055270296000117 ], [ -120.816628028999929, 50.052456919000051 ], [ -120.817577881999981, 50.052501769000116 ], [ -120.817610601999945, 50.052214540000115 ], [ -120.817929382999978, 50.052229591000071 ], [ -120.81798891499993, 50.051706948000053 ], [ -120.822463607999936, 50.051918111000063 ], [ -120.8227124269999, 50.049731654000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999363232938581", "sL_AssetLoss": "304.664", "sL_BldgLoss": "304.47", "sL_StrLoss": "303", "sL_NStrLoss": "1.47", "sL_ContLoss": "0.194", "geom_point": "0101000020E6100000AA3E1DB027375EC0BE46587552054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.860308186999987, 50.040118508000063 ], [ -120.862885745999961, 50.040239202000137 ], [ -120.862480854999916, 50.043825717000118 ], [ -120.861674881999988, 50.043787984000105 ], [ -120.86187139899998, 50.04346170400003 ], [ -120.861870876999944, 50.043191094000058 ], [ -120.86169929199994, 50.042954706000096 ], [ -120.861078401999976, 50.042151512000032 ], [ -120.86069531899993, 50.041362500000091 ], [ -120.860308186999987, 50.040118508000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16385000", "BldgCostT": "11300000", "sL_LossRatio": "0.999481636394743", "sL_AssetLoss": "3916.17", "sL_BldgLoss": "3914.14", "sL_StrLoss": "3900", "sL_NStrLoss": "14.14", "sL_ContLoss": "2.03", "geom_point": "0101000020E61000004C4BB4FD4E375EC0EB1348A2FA024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.859977307999927, 50.02669775800004 ], [ -120.859986814999914, 50.026613562000072 ], [ -120.857934945999929, 50.026517404000089 ], [ -120.858340041999895, 50.022930822000049 ], [ -120.859610197000023, 50.022990351000075 ], [ -120.859778461999923, 50.021500052000128 ], [ -120.86032827299999, 50.021525816000093 ], [ -120.860328435999946, 50.021524365000076 ], [ -120.862383710999964, 50.02162064900007 ], [ -120.862415558999942, 50.02133841300013 ], [ -120.864566046999968, 50.021439118000053 ], [ -120.864824581999983, 50.019146964000051 ], [ -120.870290885999935, 50.01940275000004 ], [ -120.870391407999989, 50.019407451000106 ], [ -120.869987290999958, 50.022994094000076 ], [ -120.867836718999911, 50.022893497000112 ], [ -120.867578313999985, 50.025185646000111 ], [ -120.866578629999935, 50.025138869000095 ], [ -120.866460823999944, 50.026183570000114 ], [ -120.866021718999917, 50.026163020000119 ], [ -120.865970826999899, 50.026614279000036 ], [ -120.865585883999969, 50.026596263000073 ], [ -120.865545029999907, 50.026958488000147 ], [ -120.860248512999959, 50.026710465000093 ], [ -120.859977307999927, 50.02669775800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999018075787785", "sL_AssetLoss": "334.038", "sL_BldgLoss": "333.71", "sL_StrLoss": "331", "sL_NStrLoss": "2.71", "sL_ContLoss": "0.328", "geom_point": "0101000020E61000003891708CEA355EC038DD913513064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.841530901999974, 50.046683292000075 ], [ -120.842650403, 50.046632010000096 ], [ -120.843722131999968, 50.046892595000067 ], [ -120.843557710999903, 50.048343450000132 ], [ -120.841586273999923, 50.048250812000049 ], [ -120.841574517999916, 50.048167295000056 ], [ -120.84104609399995, 50.047213104000058 ], [ -120.841134905999922, 50.046774503000073 ], [ -120.841530901999974, 50.046683292000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999602375271162", "sL_AssetLoss": "274.8823", "sL_BldgLoss": "274.773", "sL_StrLoss": "274", "sL_NStrLoss": "0.773", "sL_ContLoss": "0.1093", "geom_point": "0101000020E6100000295E024358345EC0D3B83F302A0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.816005584999985, 50.118126382000078 ], [ -120.82045345899995, 50.118336036000144 ], [ -120.820188899999906, 50.118424990000086 ], [ -120.819682300999943, 50.118496207000135 ], [ -120.819452492, 50.118617296000096 ], [ -120.818774788999917, 50.118766796000102 ], [ -120.816799898999989, 50.118819491000053 ], [ -120.816427889999943, 50.118687112000096 ], [ -120.816005584999985, 50.118126382000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7402083", "BldgCostT": "4608333", "sL_LossRatio": "0.65885023881664", "sL_AssetLoss": "2481.611", "sL_BldgLoss": "1635.01", "sL_StrLoss": "1307.82", "sL_NStrLoss": "327.19", "sL_ContLoss": "846.601", "geom_point": "0101000020E61000005B12A0A656335EC04D03D40E5E0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.799138595999963, 50.11243639300006 ], [ -120.799962504999968, 50.111755202000097 ], [ -120.8000252099999, 50.11178616100009 ], [ -120.801554916999947, 50.112541702000037 ], [ -120.803044812999971, 50.111319599000062 ], [ -120.803291885999968, 50.111083406000013 ], [ -120.803422305999959, 50.110776801000029 ], [ -120.80344429299997, 50.110683196000124 ], [ -120.803500522999968, 50.110443834000101 ], [ -120.803504654999969, 50.110426198000035 ], [ -120.804673200999957, 50.110801208000112 ], [ -120.804829198999983, 50.111046200000047 ], [ -120.804832779999984, 50.111271202000125 ], [ -120.804699996999929, 50.111430702000085 ], [ -120.803961991, 50.111983314000057 ], [ -120.802826602, 50.112349307000024 ], [ -120.802465890999926, 50.11258569300005 ], [ -120.802295801999918, 50.11292329200009 ], [ -120.802276803999987, 50.113327793000096 ], [ -120.803077922999947, 50.114121558000143 ], [ -120.801068483000023, 50.113459698000042 ], [ -120.800687496999956, 50.113236193000063 ], [ -120.80004771099999, 50.112905837000049 ], [ -120.799138595999963, 50.11243639300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999748898898274", "sL_AssetLoss": "128.2352", "sL_BldgLoss": "128.203", "sL_StrLoss": "128", "sL_NStrLoss": "0.203", "sL_ContLoss": "0.0322", "geom_point": "0101000020E6100000008241EB44345EC05859DB148F0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.816096048999924, 50.105512732000072 ], [ -120.817353697999977, 50.105536392000069 ], [ -120.817341631999938, 50.105801778000043 ], [ -120.817316920999957, 50.106345253000043 ], [ -120.816670749999957, 50.10633309900004 ], [ -120.816059250999942, 50.106321593000082 ], [ -120.816068539999961, 50.106117428000061 ], [ -120.816096048999924, 50.105512732000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133254948", "BldgCostT": "85810270", "sL_LossRatio": "0.969628419874394", "sL_AssetLoss": "29186.87129", "sL_BldgLoss": "28300.41989", "sL_StrLoss": "27699.5832", "sL_NStrLoss": "600.83669", "sL_ContLoss": "886.4514", "geom_point": "0101000020E610000043395631AE335EC02F2A5E3CEE0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.81550441499999, 50.117761308000048 ], [ -120.813113300999973, 50.117103305000107 ], [ -120.809703996999971, 50.116409699000066 ], [ -120.809264613999957, 50.116230303000108 ], [ -120.808555692999974, 50.115533904000117 ], [ -120.8077871, 50.115213389000097 ], [ -120.805595693999962, 50.114794696000089 ], [ -120.804689808999939, 50.114723502000054 ], [ -120.804150587999928, 50.114551209000069 ], [ -120.80329560399997, 50.113977196000057 ], [ -120.802757294999964, 50.113229493000127 ], [ -120.802649318999954, 50.112840695000031 ], [ -120.802769914999914, 50.112627 ], [ -120.803129516999945, 50.112426195000118 ], [ -120.804375791999988, 50.11209009800011 ], [ -120.804755289999889, 50.111773994000075 ], [ -120.805070808999972, 50.111285394000063 ], [ -120.805076411999906, 50.110862501000099 ], [ -120.804805892, 50.110623215000018 ], [ -120.803554603999928, 50.110213732000055 ], [ -120.803571506999944, 50.110141625000104 ], [ -120.803613688999974, 50.109962101000072 ], [ -120.803693705999947, 50.109200583000117 ], [ -120.803733414999968, 50.109061891000117 ], [ -120.804291314999929, 50.10829059100012 ], [ -120.802389531999935, 50.107673402000025 ], [ -120.802627990999952, 50.106752596000049 ], [ -120.802778078999921, 50.106237001000075 ], [ -120.802828697999985, 50.106063583000093 ], [ -120.803011691999941, 50.105382697000039 ], [ -120.80318911399999, 50.104751201000113 ], [ -120.801710290999978, 50.104726266000071 ], [ -120.801916204999884, 50.103992382000115 ], [ -120.80105696399994, 50.103856484000097 ], [ -120.800018783999974, 50.103692256000045 ], [ -120.798340567999958, 50.103426774000084 ], [ -120.79706294099995, 50.103224627000088 ], [ -120.7971267, 50.103132992000106 ], [ -120.797118197999936, 50.102661572000024 ], [ -120.79709186, 50.101203764000054 ], [ -120.797085227999943, 50.100835807000045 ], [ -120.797429430999927, 50.100842340000042 ], [ -120.797417062999983, 50.101111958000061 ], [ -120.797836234999949, 50.101119912000037 ], [ -120.797799134999963, 50.101928764000029 ], [ -120.797379955999986, 50.101920809000084 ], [ -120.79736865699999, 50.102167085000104 ], [ -120.797694489999955, 50.102182511000109 ], [ -120.797600393, 50.103004401000064 ], [ -120.797695621999978, 50.103006208000082 ], [ -120.797882047999948, 50.101377803000048 ], [ -120.803458544999927, 50.101641653000051 ], [ -120.803454139999985, 50.101680160000086 ], [ -120.804037328999968, 50.101707737000034 ], [ -120.804029374999985, 50.101777289000083 ], [ -120.804732208999951, 50.101810519 ], [ -120.804715202999901, 50.101959261000069 ], [ -120.805545192999929, 50.10199849700011 ], [ -120.805543019999945, 50.102017497000112 ], [ -120.806063176999899, 50.102042083000136 ], [ -120.805904358999925, 50.103431512000057 ], [ -120.807515418999955, 50.10350764700005 ], [ -120.807514777999941, 50.103513256000099 ], [ -120.807769422999925, 50.1035252880001 ], [ -120.807809967999958, 50.10501195900008 ], [ -120.807829479999924, 50.105727592000079 ], [ -120.811040878999961, 50.105508566000019 ], [ -120.812324053999959, 50.105421013000097 ], [ -120.812317639999961, 50.105561729000058 ], [ -120.812286250999961, 50.106250534000054 ], [ -120.812705471999919, 50.106258435 ], [ -120.81269318799994, 50.106528055000076 ], [ -120.814370084999936, 50.10655964700009 ], [ -120.814308704999974, 50.107907747000048 ], [ -120.814727940999958, 50.107915642000094 ], [ -120.814715667999977, 50.108185262000077 ], [ -120.81513490699993, 50.108193154000126 ], [ -120.815061271000033, 50.10981087600009 ], [ -120.814433219999941, 50.109799051000081 ], [ -120.814075829, 50.112930078000034 ], [ -120.81087926299989, 50.112779218000107 ], [ -120.810857485999946, 50.112969874000058 ], [ -120.811979013999945, 50.112991023000099 ], [ -120.81194213699996, 50.11379988100007 ], [ -120.811522850999921, 50.113791975000019 ], [ -120.811510555999945, 50.114061594000113 ], [ -120.810734453999927, 50.114046958000081 ], [ -120.810684272999978, 50.114486252000098 ], [ -120.810233200999988, 50.114464957000109 ], [ -120.810228084999949, 50.114577107000045 ], [ -120.809808791999941, 50.114569196000019 ], [ -120.809771875999928, 50.115378053000057 ], [ -120.811029777999977, 50.115401783000046 ], [ -120.811017479, 50.115671402000039 ], [ -120.811856085, 50.115687215000065 ], [ -120.81184379299999, 50.115956835000134 ], [ -120.813940325999937, 50.115996341000077 ], [ -120.813928042999962, 50.11626596100006 ], [ -120.814347351999984, 50.116273857000031 ], [ -120.814335072999953, 50.116543478000139 ], [ -120.814754384999944, 50.116551373000043 ], [ -120.814717550999973, 50.117360232000109 ], [ -120.815136869999947, 50.117368126000017 ], [ -120.815124593999883, 50.117637746000078 ], [ -120.81554391499999, 50.117645638000049 ], [ -120.815537752999916, 50.117781 ], [ -120.81550441499999, 50.117761308000048 ] ], [ [ -120.808766367, 50.110317248000065 ], [ -120.808890640999962, 50.109229608000078 ], [ -120.808793824999938, 50.109225035000115 ], [ -120.808744009999899, 50.110316192000028 ], [ -120.808766367, 50.110317248000065 ] ], [ [ -120.811731574999925, 50.109214123000051 ], [ -120.811731832999953, 50.109208446000082 ], [ -120.811531167999988, 50.109204662000074 ], [ -120.811731574999925, 50.109214123000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.999461914656773", "sL_AssetLoss": "705.4643", "sL_BldgLoss": "705.0847", "sL_StrLoss": "702.0317", "sL_NStrLoss": "3.053", "sL_ContLoss": "0.3796", "geom_point": "0101000020E6100000C9E4F5DC19335EC0FDCF48219C0C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.797035371999968, 50.098072196000011 ], [ -120.797026779999982, 50.097596472000049 ], [ -120.797158692999915, 50.097598976000064 ], [ -120.797146324999972, 50.097868593000044 ], [ -120.797984611999979, 50.097884503000081 ], [ -120.79799697699994, 50.097614885000056 ], [ -120.800092688999953, 50.097654632000037 ], [ -120.800030928999931, 50.099002721000012 ], [ -120.799192617999893, 50.098986825000047 ], [ -120.799180261999979, 50.099256444000076 ], [ -120.797503635999959, 50.099224636 ], [ -120.797466533999966, 50.100033488000044 ], [ -120.797070628999961, 50.100025974000033 ], [ -120.797070114999912, 50.099997469000108 ], [ -120.797063953999952, 50.099656532000061 ], [ -120.797041066999952, 50.098386979000075 ], [ -120.797035371999968, 50.098072196000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60904252", "BldgCostT": "38060958", "sL_LossRatio": "0.99293044666021", "sL_AssetLoss": "14689.1034", "sL_BldgLoss": "14585.258", "sL_StrLoss": "14054.274", "sL_NStrLoss": "530.984", "sL_ContLoss": "103.8454", "geom_point": "0101000020E6100000141E66F52F335EC0FC5B9FC5940D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.798629291999944, 50.106225192000096 ], [ -120.798229013999901, 50.106136896000031 ], [ -120.79784940899998, 50.106174003 ], [ -120.797103211999939, 50.106609803 ], [ -120.796637899999951, 50.106663897000026 ], [ -120.796444796999936, 50.106615494000103 ], [ -120.796120296999931, 50.106087089 ], [ -120.79592667699994, 50.104806698000061 ], [ -120.795119085999886, 50.104422198000115 ], [ -120.794045968999981, 50.10430530499999 ], [ -120.794117226999944, 50.104113839000085 ], [ -120.794359883999931, 50.103461655000096 ], [ -120.794592149999957, 50.10329420199999 ], [ -120.794888927999963, 50.103236150000107 ], [ -120.796040369999986, 50.103194221000116 ], [ -120.79706294099995, 50.103224627000088 ], [ -120.798340567999958, 50.103426774000084 ], [ -120.800018783999974, 50.103692256000045 ], [ -120.80105696399994, 50.103856484000097 ], [ -120.801916204999884, 50.103992382000115 ], [ -120.801710290999978, 50.104726266000071 ], [ -120.80318911399999, 50.104751201000113 ], [ -120.803011691999941, 50.105382697000039 ], [ -120.802828697999985, 50.106063583000093 ], [ -120.802778078999921, 50.106237001000075 ], [ -120.802627990999952, 50.106752596000049 ], [ -120.802389531999935, 50.107673402000025 ], [ -120.804291314999929, 50.10829059100012 ], [ -120.803733414999968, 50.109061891000117 ], [ -120.803693705999947, 50.109200583000117 ], [ -120.803613688999974, 50.109962101000072 ], [ -120.803571506999944, 50.110141625000104 ], [ -120.803554603999928, 50.110213732000055 ], [ -120.803291418999919, 50.110127598000133 ], [ -120.800904590999963, 50.10969460600009 ], [ -120.800236281999972, 50.109314294000093 ], [ -120.799940701999958, 50.108435606000057 ], [ -120.799589710999967, 50.107556896000098 ], [ -120.799069003999975, 50.10670949400005 ], [ -120.798629291999944, 50.106225192000096 ] ], [ [ -120.797616439999956, 50.105911459000033 ], [ -120.797638353999957, 50.105433789000045 ], [ -120.797322922000021, 50.105427802000087 ], [ -120.797283911999969, 50.105768489000113 ], [ -120.796784926, 50.105744865000084 ], [ -120.796779101999931, 50.105871818000054 ], [ -120.797616439999956, 50.105911459000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93945779", "BldgCostT": "59513601", "sL_LossRatio": "0.910932384480497", "sL_AssetLoss": "21835.209", "sL_BldgLoss": "19890.399", "sL_StrLoss": "18909.129", "sL_NStrLoss": "981.27", "sL_ContLoss": "1944.81", "geom_point": "0101000020E6100000D36AD485D0325EC0CC5B0938DF0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.795580592999968, 50.108456184000033 ], [ -120.794255383999896, 50.107762494000056 ], [ -120.793451603999983, 50.108452682000078 ], [ -120.792609407000015, 50.109122205000112 ], [ -120.793948694999983, 50.109803 ], [ -120.793506310999973, 50.110201207000046 ], [ -120.79336401099998, 50.110244001000098 ], [ -120.793223713999907, 50.110245507000052 ], [ -120.793002298000019, 50.110195401000034 ], [ -120.792210806999961, 50.109946012000137 ], [ -120.791075534999948, 50.109658599000063 ], [ -120.79081430899997, 50.109592467000056 ], [ -120.789990097, 50.10938378900007 ], [ -120.78795749899993, 50.108868284000096 ], [ -120.785953787000011, 50.108358603000063 ], [ -120.78578500399999, 50.108338881000066 ], [ -120.785652998000018, 50.108353393000058 ], [ -120.785484525999934, 50.108302537000014 ], [ -120.784156489999987, 50.107894802 ], [ -120.783339124999955, 50.107700102000138 ], [ -120.783566341999972, 50.107328578000185 ], [ -120.783837908999914, 50.106884602000058 ], [ -120.784325417, 50.106069451000046 ], [ -120.786288253999956, 50.106555566000011 ], [ -120.786349331999972, 50.106570730000044 ], [ -120.787456413999919, 50.10684534300001 ], [ -120.789136688, 50.107253107000119 ], [ -120.789681116999986, 50.106491090000063 ], [ -120.791009896999967, 50.106847097000042 ], [ -120.791881560999968, 50.10707513800002 ], [ -120.792477019999936, 50.106424462000113 ], [ -120.79334199799996, 50.105503718000087 ], [ -120.793623360999945, 50.105204234000077 ], [ -120.793817084999915, 50.104920480000018 ], [ -120.793896242999907, 50.104707696000069 ], [ -120.793935429999976, 50.104602347000068 ], [ -120.793967074999955, 50.104517427000069 ], [ -120.795113981999933, 50.104836594000133 ], [ -120.795261305999972, 50.105270982000043 ], [ -120.795571020999915, 50.10553730000003 ], [ -120.795458802999931, 50.106470189000078 ], [ -120.795603993999961, 50.106662492000027 ], [ -120.796430292999943, 50.106930207000055 ], [ -120.79691758899996, 50.106965789000107 ], [ -120.797428120999925, 50.106813401000068 ], [ -120.797974094999987, 50.10652720300002 ], [ -120.798392390999936, 50.106525703000067 ], [ -120.798651185999958, 50.106683797000095 ], [ -120.799041380999967, 50.10732190000008 ], [ -120.799521116999969, 50.108454108000025 ], [ -120.799676199999979, 50.1093300100001 ], [ -120.799933322999934, 50.109550800000086 ], [ -120.801378288999956, 50.110073393000086 ], [ -120.803390599999929, 50.110389599000044 ], [ -120.803504654999969, 50.110426198000035 ], [ -120.803500522999968, 50.110443834000101 ], [ -120.80344429299997, 50.110683196000124 ], [ -120.803422305999959, 50.110776801000029 ], [ -120.803291885999968, 50.111083406000013 ], [ -120.803044812999971, 50.111319599000062 ], [ -120.801554916999947, 50.112541702000037 ], [ -120.8000252099999, 50.11178616100009 ], [ -120.799962504999968, 50.111755202000097 ], [ -120.799205708, 50.111363711000116 ], [ -120.798428387999977, 50.110961590000038 ], [ -120.797555681999924, 50.110527247000022 ], [ -120.796843721999963, 50.110164579000035 ], [ -120.796201884999959, 50.109837627000019 ], [ -120.797005828999957, 50.109170844000104 ], [ -120.795580592999968, 50.108456184000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166082061", "BldgCostT": "106643190", "sL_LossRatio": "0.983082947141819", "sL_AssetLoss": "39982.969", "sL_BldgLoss": "39306.575", "sL_StrLoss": "38307.205", "sL_NStrLoss": "999.37", "sL_ContLoss": "676.394", "geom_point": "0101000020E61000003438320B04335EC0F1499B685F0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.804876595999957, 50.115529788000067 ], [ -120.804544499999963, 50.115491593000051 ], [ -120.804138711999926, 50.11550850800004 ], [ -120.803513876999929, 50.115610057000033 ], [ -120.80293580699994, 50.115703985000046 ], [ -120.802063288999932, 50.115769113000034 ], [ -120.801208581999973, 50.115788201000065 ], [ -120.800802317999953, 50.11576080100005 ], [ -120.800322595999916, 50.115652499000085 ], [ -120.800020087999911, 50.115518097000056 ], [ -120.799966324999929, 50.115494145000106 ], [ -120.799423310999956, 50.115154788000048 ], [ -120.798534239, 50.114592675000019 ], [ -120.798263974999927, 50.114504756000024 ], [ -120.797713750999961, 50.114325791000098 ], [ -120.796761491999959, 50.114041793000062 ], [ -120.796574946999968, 50.113986147000055 ], [ -120.796290136999957, 50.113901220000102 ], [ -120.796086905999914, 50.113840599000063 ], [ -120.794750100999963, 50.113441867000041 ], [ -120.793347415999989, 50.113080695000079 ], [ -120.793247593999965, 50.113046188000048 ], [ -120.793169688999981, 50.112979493000111 ], [ -120.790727894999961, 50.112363510000129 ], [ -120.791219393999938, 50.111562106000079 ], [ -120.79171080399999, 50.110760610000135 ], [ -120.792210806999961, 50.109946012000137 ], [ -120.793002298000019, 50.110195401000034 ], [ -120.793223713999907, 50.110245507000052 ], [ -120.79336401099998, 50.110244001000098 ], [ -120.793506310999973, 50.110201207000046 ], [ -120.793948694999983, 50.109803 ], [ -120.792609407000015, 50.109122205000112 ], [ -120.793451603999983, 50.108452682000078 ], [ -120.794255383999896, 50.107762494000056 ], [ -120.795580592999968, 50.108456184000033 ], [ -120.797005828999957, 50.109170844000104 ], [ -120.796201884999959, 50.109837627000019 ], [ -120.796843721999963, 50.110164579000035 ], [ -120.797555681999924, 50.110527247000022 ], [ -120.798428387999977, 50.110961590000038 ], [ -120.799205708, 50.111363711000116 ], [ -120.799962504999968, 50.111755202000097 ], [ -120.799138595999963, 50.11243639300006 ], [ -120.80004771099999, 50.112905837000049 ], [ -120.800687496999956, 50.113236193000063 ], [ -120.801068483000023, 50.113459698000042 ], [ -120.803077922999947, 50.114121558000143 ], [ -120.803990192999947, 50.115025407000083 ], [ -120.804072591999969, 50.115081009000029 ], [ -120.804390113999958, 50.115140787000051 ], [ -120.805272496999962, 50.115102308000118 ], [ -120.806370001999966, 50.115303087000086 ], [ -120.80709298599993, 50.115352663000166 ], [ -120.807220189999967, 50.115810867000135 ], [ -120.807214496999933, 50.115811252000064 ], [ -120.80723968299999, 50.11602084900008 ], [ -120.807265092999913, 50.116232329000091 ], [ -120.806943116999932, 50.116157503000082 ], [ -120.806333307999921, 50.115971782000095 ], [ -120.804876595999957, 50.115529788000067 ] ], [ [ -120.800892923000035, 50.115478300000099 ], [ -120.799736115999934, 50.114754804 ], [ -120.798538805999954, 50.114300485000065 ], [ -120.798458778999972, 50.113913097000122 ], [ -120.797921803999941, 50.113722303000046 ], [ -120.798135088, 50.114284799000075 ], [ -120.798337099999955, 50.114441502000069 ], [ -120.799599289999989, 50.114977010000111 ], [ -120.8006890139999, 50.115619297000073 ], [ -120.80120469799995, 50.11568200200005 ], [ -120.801461204999953, 50.115579390000107 ], [ -120.800892923000035, 50.115478300000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "332847914", "BldgCostT": "215012711", "sL_LossRatio": "0.877590335502093", "sL_AssetLoss": "48156.1944", "sL_BldgLoss": "42261.4108", "sL_StrLoss": "39406.9408", "sL_NStrLoss": "2854.47", "sL_ContLoss": "5894.7836", "geom_point": "0101000020E610000007DF4E645E325EC00A83D81D7B0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.780158788999984, 50.117066527000077 ], [ -120.780597649999947, 50.116334727000051 ], [ -120.781628196999989, 50.11660359200004 ], [ -120.78223196499999, 50.116840455000059 ], [ -120.782745418, 50.116960369000012 ], [ -120.783534382999946, 50.115785902000091 ], [ -120.783584098999953, 50.115567007000081 ], [ -120.783685877999915, 50.115486212000043 ], [ -120.78393936799992, 50.115070946000024 ], [ -120.784041954999935, 50.114902873000105 ], [ -120.784329772999953, 50.114431338000024 ], [ -120.78436205299991, 50.114378414000058 ], [ -120.78448852599999, 50.114171223000049 ], [ -120.784549393999924, 50.114071502000051 ], [ -120.784727007999891, 50.113779876000116 ], [ -120.78475789299999, 50.113729169000081 ], [ -120.784796671, 50.113665531000066 ], [ -120.785238701999987, 50.11293969200009 ], [ -120.782990803999965, 50.112369699000048 ], [ -120.781490184999925, 50.111983 ], [ -120.780829354999966, 50.111816401000048 ], [ -120.780223156999924, 50.111662345000077 ], [ -120.780569485999933, 50.111515636000043 ], [ -120.780986626999947, 50.111265018000104 ], [ -120.781278332999989, 50.110995858000074 ], [ -120.78143468899999, 50.110818471000066 ], [ -120.781540198999977, 50.110645322000046 ], [ -120.781806087999954, 50.110208801000091 ], [ -120.781842884999918, 50.110147252000068 ], [ -120.781866876999956, 50.110107097000103 ], [ -120.784075321999964, 50.110677899000045 ], [ -120.786289196999974, 50.111238209000106 ], [ -120.786626973999915, 50.11075393800008 ], [ -120.786842983000014, 50.110444203000064 ], [ -120.787341684999916, 50.109737389000081 ], [ -120.787388786999955, 50.109670615000041 ], [ -120.78795749899993, 50.108868284000096 ], [ -120.789990097, 50.10938378900007 ], [ -120.79081430899997, 50.109592467000056 ], [ -120.791075534999948, 50.109658599000063 ], [ -120.792210806999961, 50.109946012000137 ], [ -120.79171080399999, 50.110760610000135 ], [ -120.791219393999938, 50.111562106000079 ], [ -120.790727894999961, 50.112363510000129 ], [ -120.793169688999981, 50.112979493000111 ], [ -120.793247593999965, 50.113046188000048 ], [ -120.793347415999989, 50.113080695000079 ], [ -120.792823888999934, 50.113916711000066 ], [ -120.791705581999949, 50.115636706000068 ], [ -120.790383385, 50.115306300000036 ], [ -120.789571010999936, 50.115115507000048 ], [ -120.789152587999951, 50.114937907000119 ], [ -120.788670096999951, 50.114743811000025 ], [ -120.788285397, 50.11467510500006 ], [ -120.788056291999979, 50.114606498000072 ], [ -120.787591987, 50.114400595000106 ], [ -120.787151296000019, 50.114122785000028 ], [ -120.787078824999966, 50.114337153000051 ], [ -120.787073865999943, 50.114351834000033 ], [ -120.787023343, 50.114501278000041 ], [ -120.78681601299995, 50.115114601000059 ], [ -120.786461248999942, 50.116311936000066 ], [ -120.786311563999917, 50.116516666000045 ], [ -120.786114383999916, 50.116683066000093 ], [ -120.785792280999942, 50.11685077200012 ], [ -120.78430159499996, 50.1173162750001 ], [ -120.783920580999961, 50.117435277000034 ], [ -120.782456095999962, 50.117892161000029 ], [ -120.782287512999957, 50.117943646000107 ], [ -120.77972663499996, 50.117734974000065 ], [ -120.780158788999984, 50.117066527000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152380063", "BldgCostT": "93509148", "sL_LossRatio": "0.868130615308067", "sL_AssetLoss": "36586.3609", "sL_BldgLoss": "31761.74", "sL_StrLoss": "29369.37", "sL_NStrLoss": "2392.37", "sL_ContLoss": "4824.6209", "geom_point": "0101000020E6100000B51797CB02325EC06DA78C03D80D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.780659632999971, 50.109772702000029 ], [ -120.780402190999922, 50.109701398 ], [ -120.780268917999976, 50.109702200000115 ], [ -120.779332465999957, 50.109380733000101 ], [ -120.779022696999959, 50.109274396000053 ], [ -120.77896914199998, 50.109261370000119 ], [ -120.77628419899996, 50.108607991000035 ], [ -120.775109808999929, 50.108335809000025 ], [ -120.775626904999939, 50.107581591000034 ], [ -120.776136500999939, 50.106807191000023 ], [ -120.776381131999969, 50.106442719000064 ], [ -120.77666940499995, 50.106013200000071 ], [ -120.776907173999987, 50.105657684000043 ], [ -120.777212809999966, 50.105200686000046 ], [ -120.779798687999971, 50.105863513000017 ], [ -120.781814293999957, 50.106378414000119 ], [ -120.782319601999973, 50.105555107000015 ], [ -120.784325417, 50.106069451000046 ], [ -120.783837908999914, 50.106884602000058 ], [ -120.783566341999972, 50.107328578000185 ], [ -120.783339124999955, 50.107700102000138 ], [ -120.784156489999987, 50.107894802 ], [ -120.785484525999934, 50.108302537000014 ], [ -120.785652998000018, 50.108353393000058 ], [ -120.78578500399999, 50.108338881000066 ], [ -120.785953787000011, 50.108358603000063 ], [ -120.78795749899993, 50.108868284000096 ], [ -120.787388786999955, 50.109670615000041 ], [ -120.787341684999916, 50.109737389000081 ], [ -120.786842983000014, 50.110444203000064 ], [ -120.786626973999915, 50.11075393800008 ], [ -120.786289196999974, 50.111238209000106 ], [ -120.784075321999964, 50.110677899000045 ], [ -120.781866876999956, 50.110107097000103 ], [ -120.780659632999971, 50.109772702000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121495949", "BldgCostT": "77092212", "sL_LossRatio": "0.950461501624432", "sL_AssetLoss": "32909.96", "sL_BldgLoss": "31279.65", "sL_StrLoss": "30016.25", "sL_NStrLoss": "1263.4", "sL_ContLoss": "1630.31", "geom_point": "0101000020E61000002D012998CE315EC0E29EAEEE580D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.779798687999971, 50.105863513000017 ], [ -120.777212809999966, 50.105200686000046 ], [ -120.776907173999987, 50.105657684000043 ], [ -120.77666940499995, 50.106013200000071 ], [ -120.773454774999948, 50.105197908000036 ], [ -120.773953485999954, 50.104376510000058 ], [ -120.774442478999987, 50.103571136000042 ], [ -120.774947283999964, 50.10273959800007 ], [ -120.77543817899999, 50.101920093000082 ], [ -120.77882769699994, 50.102785199000095 ], [ -120.781297093999925, 50.103411806000082 ], [ -120.783328996999899, 50.103930101000067 ], [ -120.782826694000036, 50.104739988000084 ], [ -120.782319601999973, 50.105555107000015 ], [ -120.781814293999957, 50.106378414000119 ], [ -120.779798687999971, 50.105863513000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "300626245", "BldgCostT": "191214077", "sL_LossRatio": "0.906839684516715", "sL_AssetLoss": "54240.338", "sL_BldgLoss": "49187.291", "sL_StrLoss": "44942.891", "sL_NStrLoss": "4244.4", "sL_ContLoss": "5053.047", "geom_point": "0101000020E61000003653FFC558315EC041F5CD05C70C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.766005584999931, 50.101935167000079 ], [ -120.766274541999948, 50.101514822000105 ], [ -120.766489494999931, 50.101178810000057 ], [ -120.766722704999921, 50.100814070000055 ], [ -120.766815418999954, 50.100669059000033 ], [ -120.766839086999966, 50.100632055000119 ], [ -120.76691961799996, 50.100506086000138 ], [ -120.767000679999953, 50.100379288000056 ], [ -120.767098297999908, 50.100068140000133 ], [ -120.767454684999962, 50.099422049000033 ], [ -120.76679420399995, 50.09940951100014 ], [ -120.766930353999925, 50.099208111000088 ], [ -120.76696040799996, 50.099163705000073 ], [ -120.767178849999965, 50.098840659000054 ], [ -120.767508697, 50.098352804000072 ], [ -120.768033497999951, 50.097521690000093 ], [ -120.768218217999944, 50.097229184000149 ], [ -120.768344508999945, 50.097029154000083 ], [ -120.768443080999944, 50.097030502000017 ], [ -120.768648211999945, 50.096828289000044 ], [ -120.76901320799999, 50.096086244000098 ], [ -120.766509878999926, 50.095374218000146 ], [ -120.766723590000012, 50.095190298000055 ], [ -120.766827918, 50.095062073000058 ], [ -120.767224784999939, 50.094574197000078 ], [ -120.767477898, 50.094165277000023 ], [ -120.767545053999953, 50.094056797000057 ], [ -120.767779216999926, 50.093678458000063 ], [ -120.768852513999903, 50.093972864000079 ], [ -120.770383724999959, 50.094428897000064 ], [ -120.77056155799994, 50.094509360000039 ], [ -120.770574671999981, 50.094515286000117 ], [ -120.770666653999953, 50.094556909000097 ], [ -120.771129698999928, 50.094766389 ], [ -120.771502484999957, 50.095034693000073 ], [ -120.772659908999984, 50.096096704000026 ], [ -120.77349302, 50.096865594000086 ], [ -120.773851020999984, 50.09719598900007 ], [ -120.77387500399999, 50.097218106000106 ], [ -120.774198098999989, 50.097467812000076 ], [ -120.774514594999985, 50.097604595000099 ], [ -120.774840113999957, 50.097687099000041 ], [ -120.77759462399996, 50.098385223000079 ], [ -120.777885311999981, 50.098458863000054 ], [ -120.777602407999908, 50.098688798000076 ], [ -120.777368736999932, 50.098930614000054 ], [ -120.77735259399999, 50.098947314000085 ], [ -120.776867014999979, 50.099636308000136 ], [ -120.776742832999929, 50.09983555500002 ], [ -120.776632631999959, 50.100012380000095 ], [ -120.776588219999951, 50.100083695000102 ], [ -120.776514004999953, 50.100202789000029 ], [ -120.776381209999954, 50.100415909000034 ], [ -120.776286, 50.100568700000082 ], [ -120.776210410999951, 50.100799494000064 ], [ -120.776078017999964, 50.100947465000075 ], [ -120.775944366999937, 50.101096893000026 ], [ -120.775904894999925, 50.10114099200004 ], [ -120.77574452499999, 50.101408707000047 ], [ -120.77543817899999, 50.101920093000082 ], [ -120.774947283999964, 50.10273959800007 ], [ -120.774334709, 50.102585900000072 ], [ -120.773502471999933, 50.102377100000112 ], [ -120.77336229499997, 50.102341919000061 ], [ -120.773152066999955, 50.102289194000036 ], [ -120.772260600999928, 50.102065498000066 ], [ -120.771879408999965, 50.102696689000012 ], [ -120.771865796999975, 50.102719194000045 ], [ -120.771713718999933, 50.103334797000109 ], [ -120.770945318999949, 50.10331179700006 ], [ -120.770469704000021, 50.103364011000082 ], [ -120.770060184999949, 50.103463402000067 ], [ -120.769590815999962, 50.10369349100008 ], [ -120.76928540499992, 50.103886303000102 ], [ -120.769115080999924, 50.104111593 ], [ -120.769092109, 50.104287200000023 ], [ -120.769120217999927, 50.104432808000134 ], [ -120.769233974999949, 50.104600393000098 ], [ -120.7694622019999, 50.104749209000026 ], [ -120.769923684999981, 50.104892801000069 ], [ -120.771717311999964, 50.105349591000042 ], [ -120.771265583999977, 50.106107802000054 ], [ -120.77068629199999, 50.107060901000075 ], [ -120.768283014999923, 50.106529203000029 ], [ -120.768510998999943, 50.105742310000082 ], [ -120.768472802999938, 50.10558729800006 ], [ -120.76837419099999, 50.10543289600006 ], [ -120.768001090999945, 50.105081685000087 ], [ -120.767881518999928, 50.104914607000062 ], [ -120.76781338, 50.104739206000012 ], [ -120.767694399999982, 50.103849302000079 ], [ -120.767793191999985, 50.103697185000037 ], [ -120.768773889999963, 50.103032687000038 ], [ -120.768803812999948, 50.102979999000048 ], [ -120.768776980999945, 50.102920109000081 ], [ -120.768337122999952, 50.102650397000062 ], [ -120.767501720999945, 50.102403194000075 ], [ -120.767018384999972, 50.102260154000106 ], [ -120.765991986999921, 50.101956405000116 ], [ -120.766005584999931, 50.101935167000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76620969", "BldgCostT": "48660412", "sL_LossRatio": "0.946463264815026", "sL_AssetLoss": "22107.96", "sL_BldgLoss": "20924.372", "sL_StrLoss": "20075.062", "sL_NStrLoss": "849.31", "sL_ContLoss": "1183.588", "geom_point": "0101000020E6100000402364626B315EC01E64AB2E540D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.771879408999965, 50.102696689000012 ], [ -120.772260600999928, 50.102065498000066 ], [ -120.773152066999955, 50.102289194000036 ], [ -120.77336229499997, 50.102341919000061 ], [ -120.773502471999933, 50.102377100000112 ], [ -120.774334709, 50.102585900000072 ], [ -120.774947283999964, 50.10273959800007 ], [ -120.774442478999987, 50.103571136000042 ], [ -120.773953485999954, 50.104376510000058 ], [ -120.773454774999948, 50.105197908000036 ], [ -120.772971108999968, 50.105990602000112 ], [ -120.772668400000029, 50.10649 ], [ -120.771265583999977, 50.106107802000054 ], [ -120.771717311999964, 50.105349591000042 ], [ -120.769923684999981, 50.104892801000069 ], [ -120.7694622019999, 50.104749209000026 ], [ -120.769233974999949, 50.104600393000098 ], [ -120.769120217999927, 50.104432808000134 ], [ -120.769092109, 50.104287200000023 ], [ -120.769115080999924, 50.104111593 ], [ -120.76928540499992, 50.103886303000102 ], [ -120.769590815999962, 50.10369349100008 ], [ -120.770060184999949, 50.103463402000067 ], [ -120.770469704000021, 50.103364011000082 ], [ -120.770945318999949, 50.10331179700006 ], [ -120.771713718999933, 50.103334797000109 ], [ -120.771865796999975, 50.102719194000045 ], [ -120.771879408999965, 50.102696689000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117735417", "BldgCostT": "76631667", "sL_LossRatio": "0.937627128681812", "sL_AssetLoss": "30940.8443", "sL_BldgLoss": "29010.975", "sL_StrLoss": "27844.915", "sL_NStrLoss": "1166.06", "sL_ContLoss": "1929.8693", "geom_point": "0101000020E6100000434BCC5028315EC065695D59580D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.770577810999924, 50.107235991000145 ], [ -120.767583291999955, 50.106518399000024 ], [ -120.766598282999979, 50.106246195000026 ], [ -120.766461240999917, 50.106203271000012 ], [ -120.765743187999973, 50.105978302000082 ], [ -120.765506431999938, 50.105879005000091 ], [ -120.765275080999984, 50.105782 ], [ -120.764749177999988, 50.105504591000049 ], [ -120.764294896999928, 50.105189068000094 ], [ -120.763879670999955, 50.104814173000058 ], [ -120.763615669, 50.10448966300001 ], [ -120.763459725999937, 50.10421982 ], [ -120.763352706999925, 50.104034563000077 ], [ -120.763232695999989, 50.103701653000051 ], [ -120.763180875, 50.103494578000088 ], [ -120.763171859999915, 50.103049762000083 ], [ -120.763260288999945, 50.101224160000051 ], [ -120.763298433999978, 50.100432795000103 ], [ -120.76332469299993, 50.09988797400009 ], [ -120.763560204999962, 50.099903463000096 ], [ -120.765496464999941, 50.099942182000085 ], [ -120.766456159999947, 50.099976865000045 ], [ -120.767107865999961, 50.100000403000124 ], [ -120.767111308, 50.100026678000049 ], [ -120.767098297999908, 50.100068140000133 ], [ -120.767000679999953, 50.100379288000056 ], [ -120.76691961799996, 50.100506086000138 ], [ -120.766839086999966, 50.100632055000119 ], [ -120.766815418999954, 50.100669059000033 ], [ -120.766722704999921, 50.100814070000055 ], [ -120.766489494999931, 50.101178810000057 ], [ -120.766274541999948, 50.101514822000105 ], [ -120.766005584999931, 50.101935167000079 ], [ -120.765991986999921, 50.101956405000116 ], [ -120.767018384999972, 50.102260154000106 ], [ -120.767501720999945, 50.102403194000075 ], [ -120.768337122999952, 50.102650397000062 ], [ -120.768776980999945, 50.102920109000081 ], [ -120.768803812999948, 50.102979999000048 ], [ -120.768773889999963, 50.103032687000038 ], [ -120.767793191999985, 50.103697185000037 ], [ -120.767694399999982, 50.103849302000079 ], [ -120.76781338, 50.104739206000012 ], [ -120.767881518999928, 50.104914607000062 ], [ -120.768001090999945, 50.105081685000087 ], [ -120.76837419099999, 50.10543289600006 ], [ -120.768472802999938, 50.10558729800006 ], [ -120.768510998999943, 50.105742310000082 ], [ -120.768283014999923, 50.106529203000029 ], [ -120.77068629199999, 50.107060901000075 ], [ -120.771265583999977, 50.106107802000054 ], [ -120.772668400000029, 50.10649 ], [ -120.772971108999968, 50.105990602000112 ], [ -120.773454774999948, 50.105197908000036 ], [ -120.77666940499995, 50.106013200000071 ], [ -120.776381131999969, 50.106442719000064 ], [ -120.776136500999939, 50.106807191000023 ], [ -120.775626904999939, 50.107581591000034 ], [ -120.775109808999929, 50.108335809000025 ], [ -120.774670113999917, 50.10823380300014 ], [ -120.772867393999888, 50.107782108000059 ], [ -120.772046781999947, 50.107585196000066 ], [ -120.772005183999951, 50.107575213000075 ], [ -120.771889364999979, 50.107547673000106 ], [ -120.770577810999924, 50.107235991000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130679116", "BldgCostT": "84503879", "sL_LossRatio": "0.932664767680274", "sL_AssetLoss": "33835.6997", "sL_BldgLoss": "31557.365", "sL_StrLoss": "30491.105", "sL_NStrLoss": "1066.26", "sL_ContLoss": "2278.3347", "geom_point": "0101000020E6100000426A666F61325EC01513FEB9260F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.775593694999941, 50.120013424000078 ], [ -120.779523467999979, 50.118797656000076 ], [ -120.781059143999983, 50.118322481000114 ], [ -120.782287512999957, 50.117943646000107 ], [ -120.782456095999962, 50.117892161000029 ], [ -120.783920580999961, 50.117435277000034 ], [ -120.78430159499996, 50.1173162750001 ], [ -120.785792280999942, 50.11685077200012 ], [ -120.786114383999916, 50.116683066000093 ], [ -120.786311563999917, 50.116516666000045 ], [ -120.786461248999942, 50.116311936000066 ], [ -120.78681601299995, 50.115114601000059 ], [ -120.787023343, 50.114501278000041 ], [ -120.787073865999943, 50.114351834000033 ], [ -120.787078824999966, 50.114337153000051 ], [ -120.787151296000019, 50.114122785000028 ], [ -120.787591987, 50.114400595000106 ], [ -120.788056291999979, 50.114606498000072 ], [ -120.788285397, 50.11467510500006 ], [ -120.788670096999951, 50.114743811000025 ], [ -120.789152587999951, 50.114937907000119 ], [ -120.789571010999936, 50.115115507000048 ], [ -120.790383385, 50.115306300000036 ], [ -120.791705581999949, 50.115636706000068 ], [ -120.792823888999934, 50.113916711000066 ], [ -120.793347415999989, 50.113080695000079 ], [ -120.794750100999963, 50.113441867000041 ], [ -120.796086905999914, 50.113840599000063 ], [ -120.796290136999957, 50.113901220000102 ], [ -120.796574946999968, 50.113986147000055 ], [ -120.796761491999959, 50.114041793000062 ], [ -120.797713750999961, 50.114325791000098 ], [ -120.798263974999927, 50.114504756000024 ], [ -120.798534239, 50.114592675000019 ], [ -120.799423310999956, 50.115154788000048 ], [ -120.799966324999929, 50.115494145000106 ], [ -120.799409284999939, 50.11585266800008 ], [ -120.798718293999954, 50.116205758000078 ], [ -120.797888578999988, 50.116680249000069 ], [ -120.79763936199997, 50.1168730710001 ], [ -120.797172419999967, 50.117387263000083 ], [ -120.797086238999952, 50.117480978000074 ], [ -120.796991333999969, 50.117584183000119 ], [ -120.796940174999918, 50.117639808000021 ], [ -120.796756389, 50.117839701000065 ], [ -120.796685521999976, 50.117916741000045 ], [ -120.796568669, 50.118007063000142 ], [ -120.796354745999921, 50.118172385000044 ], [ -120.796204148999919, 50.118257209000014 ], [ -120.796060981, 50.118337829000012 ], [ -120.795958672, 50.118377464000041 ], [ -120.795801457999957, 50.118438322000053 ], [ -120.795664823999985, 50.11849124700008 ], [ -120.795613222999961, 50.118503021000024 ], [ -120.79422925199998, 50.118818968 ], [ -120.794131677999971, 50.118857254000076 ], [ -120.793825479999953, 50.118977411000088 ], [ -120.793539408999962, 50.119144357000096 ], [ -120.793506889999918, 50.11916331000004 ], [ -120.793223744999935, 50.119395060000087 ], [ -120.792996828999961, 50.119656535000033 ], [ -120.792976553999935, 50.119679906000052 ], [ -120.792815239999925, 50.119961585000034 ], [ -120.792796069999966, 50.120021938000079 ], [ -120.792555429999965, 50.120779030000072 ], [ -120.792420407999941, 50.121203874000081 ], [ -120.792309, 50.121332499000047 ], [ -120.792108480999971, 50.121564051000078 ], [ -120.791839692999929, 50.121743298000069 ], [ -120.791406029999962, 50.121954387000123 ], [ -120.791009754999962, 50.122034764000084 ], [ -120.790475465999975, 50.122039537000028 ], [ -120.789729547999968, 50.122046195000046 ], [ -120.788937572999941, 50.121945584000066 ], [ -120.788871692999948, 50.121945044000014 ], [ -120.788661833999981, 50.121943387000087 ], [ -120.788312450999939, 50.121940593000083 ], [ -120.788131335999935, 50.121939147000077 ], [ -120.787337563999969, 50.121932833000088 ], [ -120.787039845999956, 50.121930795000054 ], [ -120.786272651999951, 50.121925595000071 ], [ -120.786272383999957, 50.121916491000093 ], [ -120.786261794999945, 50.121433789000029 ], [ -120.786222106999958, 50.121388697000029 ], [ -120.786174302999953, 50.121377392000078 ], [ -120.786040134999951, 50.121397335000033 ], [ -120.78550799, 50.121476491000024 ], [ -120.784183003999885, 50.121683210000086 ], [ -120.783409985999981, 50.121723890000069 ], [ -120.783282816999971, 50.121730605000067 ], [ -120.782619482999962, 50.121682004000043 ], [ -120.782180870999923, 50.121593589000106 ], [ -120.781311407999937, 50.121313402000055 ], [ -120.779377987999979, 50.120383392000079 ], [ -120.778801799999911, 50.120126205000105 ], [ -120.778107912999985, 50.120002203000077 ], [ -120.777689115999934, 50.120010190000066 ], [ -120.777233791999919, 50.120104008000084 ], [ -120.775864710999926, 50.120521986000028 ], [ -120.775594497999961, 50.120518195000088 ], [ -120.775595029999963, 50.120861676000082 ], [ -120.77559541799998, 50.12109533200011 ], [ -120.775596082999968, 50.121540402000022 ], [ -120.775531901999898, 50.12183028700008 ], [ -120.775405492999965, 50.121942403000077 ], [ -120.775178719999985, 50.122036208000104 ], [ -120.775100397999964, 50.122095493000067 ], [ -120.77507135799999, 50.122155171000088 ], [ -120.775036088999968, 50.122227689000042 ], [ -120.775085400999956, 50.122359792000104 ], [ -120.773820812999986, 50.122954094000114 ], [ -120.773255981999966, 50.123206703000044 ], [ -120.772699191999962, 50.123292911000107 ], [ -120.770026303999956, 50.123291900000041 ], [ -120.770079996999982, 50.122923104000094 ], [ -120.770022683999969, 50.122697057000074 ], [ -120.770004820999972, 50.122626591000021 ], [ -120.769456700999953, 50.121906495000076 ], [ -120.774688635999922, 50.120292613000053 ], [ -120.775593694999941, 50.120013424000078 ] ], [ [ -120.781284729999982, 50.119424460000069 ], [ -120.78119191899999, 50.120232241000089 ], [ -120.781849209999947, 50.120244804000045 ], [ -120.781836745999968, 50.120514417000059 ], [ -120.78433622099999, 50.120562160000091 ], [ -120.784358442999917, 50.120368635000069 ], [ -120.785618085999957, 50.120428388000086 ], [ -120.785623232999967, 50.120316868000067 ], [ -120.786881245999922, 50.120340862000035 ], [ -120.786874459999979, 50.120487972000049 ], [ -120.78980600899996, 50.120626944999984 ], [ -120.789816611000035, 50.120396795000048 ], [ -120.790235949999939, 50.120404780000044 ], [ -120.790260782999923, 50.119865550000064 ], [ -120.791099451999955, 50.119881514000028 ], [ -120.791111863999902, 50.11961189800013 ], [ -120.791950527999987, 50.119627856000101 ], [ -120.791975341999901, 50.119088625000103 ], [ -120.792394668999975, 50.119096601000088 ], [ -120.792444285999949, 50.118018139000057 ], [ -120.793282924999943, 50.118034087000076 ], [ -120.793307721999923, 50.117494856000107 ], [ -120.794146350999952, 50.117510798000055 ], [ -120.794161776999957, 50.117175205000123 ], [ -120.79486499199993, 50.1169652130001 ], [ -120.795548302999919, 50.117015011000042 ], [ -120.79598408699999, 50.116969497000078 ], [ -120.796328201999984, 50.116787185000071 ], [ -120.796556014999936, 50.116673198000029 ], [ -120.796632010999971, 50.116530802000035 ], [ -120.795712433999981, 50.116776069000124 ], [ -120.795717665, 50.116730410000052 ], [ -120.795402843999952, 50.116715504000133 ], [ -120.795564498999951, 50.115304556000069 ], [ -120.795489564999954, 50.115301008000124 ], [ -120.795318966999915, 50.116789979000046 ], [ -120.79499910599999, 50.116788610000064 ], [ -120.793832367999954, 50.116988966000079 ], [ -120.792228670999947, 50.116913003000072 ], [ -120.79217731599999, 50.117360942000097 ], [ -120.791860189999966, 50.117475100000057 ], [ -120.790982187999973, 50.117614815000131 ], [ -120.790173440999979, 50.117576489000037 ], [ -120.790165385999941, 50.117646726000082 ], [ -120.789637553999967, 50.117621709000055 ], [ -120.789616170999977, 50.117808139000061 ], [ -120.789475985999943, 50.117801494000076 ], [ -120.789397299999948, 50.118487442000081 ], [ -120.78822835299998, 50.118432029000054 ], [ -120.788213826999964, 50.118747154000076 ], [ -120.786451533999966, 50.118713558000138 ], [ -120.78642390099999, 50.118954311000024 ], [ -120.785712157999939, 50.118920554000034 ], [ -120.785701174999986, 50.119016227000053 ], [ -120.783170635999937, 50.118896169000031 ], [ -120.7831695, 50.118920770000074 ], [ -120.782750176999954, 50.118912760000072 ], [ -120.782725258999946, 50.11945198700009 ], [ -120.781284729999982, 50.119424460000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128423250", "BldgCostT": "85410000", "sL_LossRatio": "0.978575297566318", "sL_AssetLoss": "25383.4844", "sL_BldgLoss": "24839.6508", "sL_StrLoss": "24617.2618", "sL_NStrLoss": "222.389", "sL_ContLoss": "543.8336", "geom_point": "0101000020E6100000A29A271100325EC079232D74A90F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.77562168099999, 50.123183891000075 ], [ -120.77562562699994, 50.122895300000046 ], [ -120.775626593999959, 50.12282359500005 ], [ -120.775516883999956, 50.122656090000078 ], [ -120.775151910999952, 50.122452185000029 ], [ -120.775085400999956, 50.122359792000104 ], [ -120.775036088999968, 50.122227689000042 ], [ -120.77507135799999, 50.122155171000088 ], [ -120.775100397999964, 50.122095493000067 ], [ -120.775178719999985, 50.122036208000104 ], [ -120.775405492999965, 50.121942403000077 ], [ -120.775531901999898, 50.12183028700008 ], [ -120.775596082999968, 50.121540402000022 ], [ -120.77559541799998, 50.12109533200011 ], [ -120.775595029999963, 50.120861676000082 ], [ -120.775594497999961, 50.120518195000088 ], [ -120.775864710999926, 50.120521986000028 ], [ -120.777233791999919, 50.120104008000084 ], [ -120.777689115999934, 50.120010190000066 ], [ -120.778107912999985, 50.120002203000077 ], [ -120.778801799999911, 50.120126205000105 ], [ -120.779377987999979, 50.120383392000079 ], [ -120.781311407999937, 50.121313402000055 ], [ -120.782180870999923, 50.121593589000106 ], [ -120.782619482999962, 50.121682004000043 ], [ -120.783282816999971, 50.121730605000067 ], [ -120.783409985999981, 50.121723890000069 ], [ -120.784183003999885, 50.121683210000086 ], [ -120.78550799, 50.121476491000024 ], [ -120.786040134999951, 50.121397335000033 ], [ -120.786174302999953, 50.121377392000078 ], [ -120.786222106999958, 50.121388697000029 ], [ -120.786261794999945, 50.121433789000029 ], [ -120.786272383999957, 50.121916491000093 ], [ -120.786272651999951, 50.121925595000071 ], [ -120.787039845999956, 50.121930795000054 ], [ -120.787337563999969, 50.121932833000088 ], [ -120.788131335999935, 50.121939147000077 ], [ -120.788312450999939, 50.121940593000083 ], [ -120.788661833999981, 50.121943387000087 ], [ -120.788871692999948, 50.121945044000014 ], [ -120.788937572999941, 50.121945584000066 ], [ -120.78891285399996, 50.122160684000065 ], [ -120.788672601999949, 50.122665790000063 ], [ -120.788670984999968, 50.122838802000075 ], [ -120.788652410999958, 50.123428302000029 ], [ -120.788537508, 50.123659889000109 ], [ -120.788250503999947, 50.123936493000038 ], [ -120.787807704999949, 50.124276099000085 ], [ -120.787280298000013, 50.123983407000019 ], [ -120.786721116999971, 50.123760394 ], [ -120.786291790999911, 50.123676907000046 ], [ -120.782496438999885, 50.123712798000049 ], [ -120.780238004999902, 50.123734105000011 ], [ -120.779775761999957, 50.123738456000055 ], [ -120.777261873999961, 50.123762091000089 ], [ -120.776950468999956, 50.123757426000068 ], [ -120.776545488999929, 50.123751381000076 ], [ -120.77637789299996, 50.12374885000002 ], [ -120.775600099999977, 50.123737183000081 ], [ -120.77562168099999, 50.123183891000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999690073118838", "sL_AssetLoss": "117.1244", "sL_BldgLoss": "117.0881", "sL_StrLoss": "117", "sL_NStrLoss": "0.0881", "sL_ContLoss": "0.0363", "geom_point": "0101000020E6100000BAAB913CDB2F5EC0675E50D741104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.747097241999924, 50.127401180000035 ], [ -120.747109903999984, 50.127131573000064 ], [ -120.746528627999922, 50.127120290000043 ], [ -120.748404871, 50.126371751000093 ], [ -120.748355405999973, 50.127425595000084 ], [ -120.747097241999924, 50.127401180000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122791361", "BldgCostT": "78732388", "sL_LossRatio": "0.974718264013146", "sL_AssetLoss": "22527.63419", "sL_BldgLoss": "21958.09649", "sL_StrLoss": "21663.79149", "sL_NStrLoss": "294.305", "sL_ContLoss": "569.5377", "geom_point": "0101000020E61000001164EBB6D7315EC02E648DFEC00F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.775159125999977, 50.128752016000064 ], [ -120.775196640999965, 50.127943179000077 ], [ -120.774777240999967, 50.127935140000069 ], [ -120.774793540999951, 50.127583792000081 ], [ -120.774864787999917, 50.126047857000103 ], [ -120.774445404999966, 50.126039816000102 ], [ -120.774470421999951, 50.125500592000094 ], [ -120.771954149999985, 50.125452318000072 ], [ -120.771941627999922, 50.125721928000083 ], [ -120.770683488999978, 50.125697771000041 ], [ -120.770708546999984, 50.12515854800008 ], [ -120.769869797999931, 50.125142436000075 ], [ -120.769857263999896, 50.125412048000022 ], [ -120.767760382999938, 50.125371740000134 ], [ -120.767772928999989, 50.125102129000126 ], [ -120.766934181999915, 50.12508599500007 ], [ -120.766921631999963, 50.125355605000074 ], [ -120.766082881999978, 50.125339466000106 ], [ -120.76607032599999, 50.125609076000053 ], [ -120.766909081999984, 50.125625216000032 ], [ -120.766871428999977, 50.126434048000057 ], [ -120.76561327499995, 50.126409834000093 ], [ -120.765625832999945, 50.126140224000046 ], [ -120.764787069999926, 50.126124075000043 ], [ -120.764761945000018, 50.126663296000082 ], [ -120.765181329999976, 50.126671371000079 ], [ -120.765143647999977, 50.127480201000026 ], [ -120.76178850699992, 50.127415553000056 ], [ -120.761801086, 50.127145942000013 ], [ -120.758445975999976, 50.127081197000059 ], [ -120.758483770999987, 50.126272370000059 ], [ -120.757225627999929, 50.126248067000034 ], [ -120.757238232999939, 50.125978458000063 ], [ -120.756818854999949, 50.125970354000074 ], [ -120.756869282999929, 50.124891919000063 ], [ -120.755611177999938, 50.124867597000055 ], [ -120.755585950999915, 50.125406815000105 ], [ -120.753908460999924, 50.125374366000123 ], [ -120.753921084999945, 50.125104757000024 ], [ -120.753082345999971, 50.12508852300008 ], [ -120.753094972999961, 50.124818916000052 ], [ -120.752333660999938, 50.124804175000136 ], [ -120.75261214699999, 50.124693052000062 ], [ -120.75438311, 50.123991551000053 ], [ -120.755975139999961, 50.123321165000114 ], [ -120.756911265999932, 50.122865562000079 ], [ -120.75705533199999, 50.122885299000096 ], [ -120.757208283999944, 50.122906208000074 ], [ -120.757355788999917, 50.122926415000087 ], [ -120.757674301999955, 50.122970731000123 ], [ -120.758262157999951, 50.123052578000035 ], [ -120.759237042999985, 50.123188286000136 ], [ -120.759632054999955, 50.123241190000016 ], [ -120.76007257400002, 50.123300217000086 ], [ -120.760801417999971, 50.123402122000073 ], [ -120.761030738999949, 50.123434157000048 ], [ -120.761197399999929, 50.123457472000048 ], [ -120.761547294999986, 50.123487707000066 ], [ -120.762339083999962, 50.123492935000066 ], [ -120.763210299999926, 50.123417267000107 ], [ -120.763786780999965, 50.12335548000005 ], [ -120.763792427999974, 50.12300242200017 ], [ -120.763794641999979, 50.122727605000073 ], [ -120.763770274999928, 50.121880975000046 ], [ -120.764452587000036, 50.121862075000074 ], [ -120.764676487, 50.121829489000078 ], [ -120.765075904999946, 50.121770982000044 ], [ -120.765520420999962, 50.121662400000048 ], [ -120.765728249999967, 50.12159831300005 ], [ -120.766090302999928, 50.121486684000054 ], [ -120.766142399999922, 50.121559374000086 ], [ -120.766568781000018, 50.122153893000096 ], [ -120.767084194999953, 50.121991691000105 ], [ -120.769019124999929, 50.121382698000055 ], [ -120.769456700999953, 50.121906495000076 ], [ -120.770004820999972, 50.122626591000021 ], [ -120.770022683999969, 50.122697057000074 ], [ -120.770079996999982, 50.122923104000094 ], [ -120.770026303999956, 50.123291900000041 ], [ -120.772699191999962, 50.123292911000107 ], [ -120.773255981999966, 50.123206703000044 ], [ -120.773820812999986, 50.122954094000114 ], [ -120.775085400999956, 50.122359792000104 ], [ -120.775151910999952, 50.122452185000029 ], [ -120.775516883999956, 50.122656090000078 ], [ -120.775626593999959, 50.12282359500005 ], [ -120.77562562699994, 50.122895300000046 ], [ -120.77562168099999, 50.123183891000075 ], [ -120.775600099999977, 50.123737183000081 ], [ -120.77637789299996, 50.12374885000002 ], [ -120.776545488999929, 50.123751381000076 ], [ -120.776950468999956, 50.123757426000068 ], [ -120.777261873999961, 50.123762091000089 ], [ -120.779775761999957, 50.123738456000055 ], [ -120.780238004999902, 50.123734105000011 ], [ -120.782496438999885, 50.123712798000049 ], [ -120.786291790999911, 50.123676907000046 ], [ -120.786721116999971, 50.123760394 ], [ -120.787280298000013, 50.123983407000019 ], [ -120.787807704999949, 50.124276099000085 ], [ -120.788250503999947, 50.123936493000038 ], [ -120.788537508, 50.123659889000109 ], [ -120.788652410999958, 50.123428302000029 ], [ -120.788670984999968, 50.122838802000075 ], [ -120.788672601999949, 50.122665790000063 ], [ -120.78891285399996, 50.122160684000065 ], [ -120.788937572999941, 50.121945584000066 ], [ -120.789729547999968, 50.122046195000046 ], [ -120.790475465999975, 50.122039537000028 ], [ -120.791009754999962, 50.122034764000084 ], [ -120.791406029999962, 50.121954387000123 ], [ -120.791839692999929, 50.121743298000069 ], [ -120.792108480999971, 50.121564051000078 ], [ -120.792309, 50.121332499000047 ], [ -120.792420407999941, 50.121203874000081 ], [ -120.792555429999965, 50.120779030000072 ], [ -120.792796069999966, 50.120021938000079 ], [ -120.792815239999925, 50.119961585000034 ], [ -120.792976553999935, 50.119679906000052 ], [ -120.792996828999961, 50.119656535000033 ], [ -120.793223744999935, 50.119395060000087 ], [ -120.793506889999918, 50.11916331000004 ], [ -120.793539408999962, 50.119144357000096 ], [ -120.793825479999953, 50.118977411000088 ], [ -120.794131677999971, 50.118857254000076 ], [ -120.79422925199998, 50.118818968 ], [ -120.795613222999961, 50.118503021000024 ], [ -120.795664823999985, 50.11849124700008 ], [ -120.795801457999957, 50.118438322000053 ], [ -120.795958672, 50.118377464000041 ], [ -120.796060981, 50.118337829000012 ], [ -120.796204148999919, 50.118257209000014 ], [ -120.796354745999921, 50.118172385000044 ], [ -120.796568669, 50.118007063000142 ], [ -120.796685521999976, 50.117916741000045 ], [ -120.796756389, 50.117839701000065 ], [ -120.796940174999918, 50.117639808000021 ], [ -120.796991333999969, 50.117584183000119 ], [ -120.797086238999952, 50.117480978000074 ], [ -120.797172419999967, 50.117387263000083 ], [ -120.79763936199997, 50.1168730710001 ], [ -120.797888578999988, 50.116680249000069 ], [ -120.798718293999954, 50.116205758000078 ], [ -120.799409284999939, 50.11585266800008 ], [ -120.799966324999929, 50.115494145000106 ], [ -120.800020087999911, 50.115518097000056 ], [ -120.800322595999916, 50.115652499000085 ], [ -120.800802317999953, 50.11576080100005 ], [ -120.801208581999973, 50.115788201000065 ], [ -120.802063288999932, 50.115769113000034 ], [ -120.80293580699994, 50.115703985000046 ], [ -120.803513876999929, 50.115610057000033 ], [ -120.804138711999926, 50.11550850800004 ], [ -120.804544499999963, 50.115491593000051 ], [ -120.804876595999957, 50.115529788000067 ], [ -120.806333307999921, 50.115971782000095 ], [ -120.806943116999932, 50.116157503000082 ], [ -120.807265092999913, 50.116232329000091 ], [ -120.807313764999918, 50.117241214000082 ], [ -120.806586435999932, 50.117206855000042 ], [ -120.805073260999933, 50.117178249000084 ], [ -120.805060926999943, 50.117447867000102 ], [ -120.803802976999975, 50.117424070000027 ], [ -120.803815315999955, 50.117154452000065 ], [ -120.802557374999964, 50.117130643000081 ], [ -120.802545028999944, 50.11740026100005 ], [ -120.802125710999974, 50.117392321000047 ], [ -120.802051613999964, 50.119010026000076 ], [ -120.80121295499994, 50.118994141000044 ], [ -120.801188244999963, 50.119533375000046 ], [ -120.79993024299992, 50.119509536000109 ], [ -120.799917879999938, 50.119779153000053 ], [ -120.79949854399996, 50.119771204000074 ], [ -120.799473814999956, 50.120310437000057 ], [ -120.797377113999943, 50.120270667000113 ], [ -120.797389491, 50.12000105100001 ], [ -120.796550815999964, 50.119985131000099 ], [ -120.796538433999942, 50.12025474700004 ], [ -120.796119093999963, 50.120246787000035 ], [ -120.796094326999949, 50.120786019000029 ], [ -120.79525564, 50.12077009100004 ], [ -120.795243250999974, 50.121039707000051 ], [ -120.796501287999931, 50.121063597000095 ], [ -120.796464140999944, 50.121872445000051 ], [ -120.79520608099989, 50.121848555000035 ], [ -120.795230860999979, 50.121309323000105 ], [ -120.79397281699994, 50.121285419000124 ], [ -120.7939976099999, 50.120746187000023 ], [ -120.793578267999948, 50.120738216000071 ], [ -120.793479073999933, 50.122895142000075 ], [ -120.793059711999888, 50.12288716900013 ], [ -120.793047310999981, 50.123156784000095 ], [ -120.79220858299999, 50.123140834000012 ], [ -120.792196174999972, 50.123410448000058 ], [ -120.792615540999989, 50.123418425000082 ], [ -120.792578324999951, 50.124227270000134 ], [ -120.792158951999966, 50.124219295000081 ], [ -120.792121727, 50.125028140000083 ], [ -120.791702346999898, 50.125020162000048 ], [ -120.791689935999941, 50.125289777000063 ], [ -120.791061755999948, 50.125277824000129 ], [ -120.790960402999971, 50.126161486000022 ], [ -120.785380973999949, 50.125897011000056 ], [ -120.78546431499997, 50.125171164000086 ], [ -120.785399227999932, 50.125169922000097 ], [ -120.785411674999949, 50.124900308000093 ], [ -120.784992297999977, 50.124892306000064 ], [ -120.785004745999956, 50.124622692000123 ], [ -120.784585372999942, 50.124614689000047 ], [ -120.784597823999974, 50.124345074000054 ], [ -120.78417845099996, 50.12433707000006 ], [ -120.784165998999939, 50.124606683000138 ], [ -120.782907877999946, 50.12458265800008 ], [ -120.782920338999986, 50.124313044000118 ], [ -120.780823484999956, 50.124272973000139 ], [ -120.780786069999962, 50.125081813000058 ], [ -120.781205447000019, 50.125089831000096 ], [ -120.78116803599994, 50.125898670000076 ], [ -120.778651735000011, 50.125850540000101 ], [ -120.778664218999893, 50.125580928000041 ], [ -120.777406076999966, 50.125556843000084 ], [ -120.777431060999945, 50.125017618000157 ], [ -120.776592309999941, 50.125001553000025 ], [ -120.776567316999945, 50.125540779000076 ], [ -120.776986697, 50.12554881000009 ], [ -120.776949213999941, 50.126357649000035 ], [ -120.778207375999955, 50.12638173900018 ], [ -120.778169912999928, 50.127190576000061 ], [ -120.777750519999984, 50.127182548000071 ], [ -120.777738028999977, 50.127452160000118 ], [ -120.778157425999936, 50.127460189000104 ], [ -120.778107470999913, 50.12853863900007 ], [ -120.777688065999953, 50.12853061000002 ], [ -120.777675574999975, 50.128800222000059 ], [ -120.775159125999977, 50.128752016000064 ] ], [ [ -120.779540418999915, 50.124788138000021 ], [ -120.779552898999967, 50.124518525000127 ], [ -120.77871415499996, 50.124502477000078 ], [ -120.778726638999913, 50.124232864000128 ], [ -120.777887900999957, 50.124216809000067 ], [ -120.777862923999976, 50.124756034000043 ], [ -120.779540418999915, 50.124788138000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999827891095192", "sL_AssetLoss": "112.1383", "sL_BldgLoss": "112.119", "sL_StrLoss": "112", "sL_NStrLoss": "0.119", "sL_ContLoss": "0.0193", "geom_point": "0101000020E610000000E4840963305EC04568C2FE84104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.755434568999945, 50.128642115000069 ], [ -120.756692771999951, 50.128666440000075 ], [ -120.756654942999958, 50.129475266000092 ], [ -120.755396718999961, 50.129450941000059 ], [ -120.755434568999945, 50.128642115000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999828555639521", "sL_AssetLoss": "120.1556", "sL_BldgLoss": "120.135", "sL_StrLoss": "120", "sL_NStrLoss": "0.135", "sL_ContLoss": "0.0206", "geom_point": "0101000020E61000007B0E6E631A305EC0691CA85B0F104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.750947582999927, 50.125856736000046 ], [ -120.750960223999925, 50.125587128000063 ], [ -120.750398688999937, 50.12557624599999 ], [ -120.752254694999948, 50.124835684000082 ], [ -120.752205708999924, 50.12588110700009 ], [ -120.750947582999927, 50.125856736000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16886167", "BldgCostT": "11226667", "sL_LossRatio": "0.860531492447788", "sL_AssetLoss": "3536.5733", "sL_BldgLoss": "3043.3327", "sL_StrLoss": "2856.3127", "sL_NStrLoss": "187.02", "sL_ContLoss": "493.2406", "geom_point": "0101000020E610000070D86C9B58315EC07286A07265104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.768321774999933, 50.130081039000061 ], [ -120.768392962999897, 50.129463136000034 ], [ -120.76775169699999, 50.12943262400011 ], [ -120.768164815999938, 50.125846869000107 ], [ -120.770716419999957, 50.125968255000011 ], [ -120.771509723999969, 50.125983489000113 ], [ -120.771508680999915, 50.12600593300003 ], [ -120.773744138999973, 50.12611221500007 ], [ -120.773673029999927, 50.126730123000122 ], [ -120.774314261999947, 50.126760601000043 ], [ -120.774208283999911, 50.127681587000055 ], [ -120.77390161799994, 50.130346375000059 ], [ -120.771009439999915, 50.13020888000009 ], [ -120.768321774999933, 50.130081039000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999834122169682", "sL_AssetLoss": "227.2757", "sL_BldgLoss": "227.238", "sL_StrLoss": "227", "sL_NStrLoss": "0.238", "sL_ContLoss": "0.0377", "geom_point": "0101000020E6100000D09A408DD2325EC01FD5341838104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.793280648999954, 50.12720898900006 ], [ -120.793330259999919, 50.126130527000043 ], [ -120.794588430999966, 50.126154440000064 ], [ -120.794576032999956, 50.126424056000111 ], [ -120.794995425999957, 50.126432023000099 ], [ -120.79495824599995, 50.127240870000044 ], [ -120.793280648999954, 50.12720898900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "0.999337711855889", "sL_AssetLoss": "268.6142", "sL_BldgLoss": "268.4363", "sL_StrLoss": "267.0373", "sL_NStrLoss": "1.399", "sL_ContLoss": "0.1779", "geom_point": "0101000020E61000004F6ADC59833A5EC048C32973F3124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.911233113999913, 50.14959068000018 ], [ -120.911529134999938, 50.146949889000041 ], [ -120.912152894, 50.147100011000113 ], [ -120.912190271999961, 50.147099235000042 ], [ -120.912630001999958, 50.147090112000107 ], [ -120.912803088999937, 50.146940504000078 ], [ -120.9126400009999, 50.146829396000051 ], [ -120.912582694999941, 50.146558805000083 ], [ -120.912660839999958, 50.146051928000041 ], [ -120.915969411999967, 50.146204879000038 ], [ -120.915970287000022, 50.146224090000068 ], [ -120.916519384999944, 50.14678239000007 ], [ -120.91712420599994, 50.147097807000144 ], [ -120.916931966999982, 50.148814682000086 ], [ -120.916816172999958, 50.14984877100003 ], [ -120.912538538999968, 50.149651052000138 ], [ -120.911827269999947, 50.149618160000095 ], [ -120.911233113999913, 50.14959068000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12189666", "BldgCostT": "8406666", "sL_LossRatio": "0.998973498254906", "sL_AssetLoss": "2411.1016", "sL_BldgLoss": "2408.6266", "sL_StrLoss": "2384.5266", "sL_NStrLoss": "24.1", "sL_ContLoss": "2.475", "geom_point": "0101000020E6100000409140E6B7385EC02D2E654B9C184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.885060384000013, 50.197188773000107 ], [ -120.885072301999941, 50.196919144000105 ], [ -120.884652266, 50.19691149500003 ], [ -120.884676103999936, 50.196372238 ], [ -120.884256072999932, 50.196364585000076 ], [ -120.884267995999892, 50.196094958000074 ], [ -120.883847968999959, 50.196087305000049 ], [ -120.8838598899999, 50.19581767600009 ], [ -120.883019841999939, 50.195802365000098 ], [ -120.88303176899997, 50.195532737000057 ], [ -120.881351681999917, 50.195502099000109 ], [ -120.881363617999924, 50.195232470000114 ], [ -120.880943599999938, 50.195224806000041 ], [ -120.880967477999931, 50.194685551000063 ], [ -120.880127450999936, 50.194670219000031 ], [ -120.880139392999979, 50.194400592000051 ], [ -120.879719381999905, 50.194392924000105 ], [ -120.879731327999963, 50.194123297 ], [ -120.879311318999953, 50.194115627000045 ], [ -120.879323266, 50.193845999000061 ], [ -120.878903259999959, 50.193838329000123 ], [ -120.87892716099995, 50.193299074000024 ], [ -120.878507158999966, 50.193291401000039 ], [ -120.878531062999954, 50.192752146000046 ], [ -120.878111067999953, 50.192744473000062 ], [ -120.878146928999954, 50.191935591000096 ], [ -120.878566917999976, 50.191943265000091 ], [ -120.878602770999919, 50.191134382000058 ], [ -120.876922841999971, 50.191103680000019 ], [ -120.876946762999978, 50.19056442600008 ], [ -120.876526785999914, 50.190556747000088 ], [ -120.876562671999963, 50.189747865000086 ], [ -120.87740261, 50.189763221000085 ], [ -120.877414567999935, 50.189493594000062 ], [ -120.878254504999958, 50.189508944000124 ], [ -120.878266454999945, 50.189239316000162 ], [ -120.879106386999979, 50.189254660000053 ], [ -120.879118333999912, 50.188985033000051 ], [ -120.88037822599992, 50.189008036000139 ], [ -120.88039016599997, 50.188738407000095 ], [ -120.881230090999907, 50.188753736000116 ], [ -120.881242025999953, 50.188484108000054 ], [ -120.882081944999968, 50.18849943000005 ], [ -120.882093875999942, 50.188229801000084 ], [ -120.882933791999903, 50.18824511800009 ], [ -120.882945715999966, 50.187975489000117 ], [ -120.8888251179999, 50.188082529000077 ], [ -120.888813224999964, 50.188352158000086 ], [ -120.889233185999942, 50.188359792 ], [ -120.889209406999953, 50.188899051000128 ], [ -120.891309237999934, 50.18893720100008 ], [ -120.891297358, 50.189206831000028 ], [ -120.891717327999956, 50.189214456000101 ], [ -120.891693575999938, 50.189753717000059 ], [ -120.892113548999944, 50.189761340000061 ], [ -120.892089802, 50.190300601000068 ], [ -120.892509778999909, 50.190308223000038 ], [ -120.892486034999962, 50.190847483 ], [ -120.892906018999923, 50.190855104000093 ], [ -120.892882277999931, 50.191394365000072 ], [ -120.893302267999943, 50.191401984000024 ], [ -120.89324292500001, 50.192750134000072 ], [ -120.893662923999926, 50.192757754000091 ], [ -120.893556118999953, 50.195184423000057 ], [ -120.893136095999978, 50.195176804000013 ], [ -120.893112354999957, 50.195716063000155 ], [ -120.892272301999938, 50.195700820000106 ], [ -120.892260424999932, 50.195970449000079 ], [ -120.891420368999974, 50.195955200000121 ], [ -120.891408487999968, 50.196224829000137 ], [ -120.89056842799998, 50.196209573000054 ], [ -120.89055654199997, 50.196479202000027 ], [ -120.889296445999918, 50.196456306000087 ], [ -120.889308336999989, 50.196186677000071 ], [ -120.8880482499999, 50.196163768000112 ], [ -120.88803635, 50.19643339600001 ], [ -120.887616318999946, 50.196425757000078 ], [ -120.887604417, 50.196695386000087 ], [ -120.887184383999937, 50.196687744000052 ], [ -120.887172476999979, 50.196957373000011 ], [ -120.886752442999963, 50.196949731000053 ], [ -120.88674053499993, 50.197219360000105 ], [ -120.885060384000013, 50.197188773000107 ] ], [ [ -120.885682942999921, 50.192612736000093 ], [ -120.885718675999925, 50.191803850000099 ], [ -120.885298685999913, 50.191796202000042 ], [ -120.885310601, 50.191526574000065 ], [ -120.884890611999978, 50.191518925 ], [ -120.884902528999987, 50.191249296000095 ], [ -120.882382619999987, 50.191203372000075 ], [ -120.882394549999972, 50.190933743000123 ], [ -120.881134605999975, 50.190910761000062 ], [ -120.88112266899995, 50.19118038800012 ], [ -120.880282702999949, 50.191165059000092 ], [ -120.880270761999952, 50.191434687 ], [ -120.879850775999927, 50.191427020000042 ], [ -120.879802998999978, 50.192505531000066 ], [ -120.880222992999933, 50.192513198000071 ], [ -120.880199107999942, 50.193052453000107 ], [ -120.880619108, 50.193060119000094 ], [ -120.880607167999969, 50.193329747000092 ], [ -120.883547188999927, 50.193383368000077 ], [ -120.883559112999976, 50.19311373900014 ], [ -120.884819115999932, 50.193136696000053 ], [ -120.88483103199999, 50.192867068000083 ], [ -120.885251031999985, 50.192874717000059 ], [ -120.885262945999912, 50.192605089000025 ], [ -120.885682942999921, 50.192612736000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "0.998980196943053", "sL_AssetLoss": "487.349", "sL_BldgLoss": "486.852", "sL_StrLoss": "482.161", "sL_NStrLoss": "4.691", "sL_ContLoss": "0.497", "geom_point": "0101000020E610000033BFE490DE375EC0052A04EED0164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.870564485999978, 50.176326817000081 ], [ -120.875909729999989, 50.176575747000122 ], [ -120.875504651999947, 50.180161665000092 ], [ -120.871711389999959, 50.179985038000062 ], [ -120.870135564999927, 50.179911624000113 ], [ -120.870061962999927, 50.179238785000088 ], [ -120.870000960999931, 50.179168848000103 ], [ -120.870241328999938, 50.177043335000057 ], [ -120.870697055999969, 50.177033890000104 ], [ -120.870564485999978, 50.176326817000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99922924536114", "sL_AssetLoss": "156.989", "sL_BldgLoss": "156.868", "sL_StrLoss": "156", "sL_NStrLoss": "0.868", "sL_ContLoss": "0.121", "geom_point": "0101000020E6100000E87A2E95AF3C5EC091DE89BCD9114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.948101778999927, 50.138684080000061 ], [ -120.94977994599999, 50.138713730000106 ], [ -120.949733828999967, 50.139792298000017 ], [ -120.948894725999963, 50.139777476000063 ], [ -120.948883192999915, 50.140047118000034 ], [ -120.945526768000022, 50.139987767000079 ], [ -120.945540535999911, 50.139666432000112 ], [ -120.945909721999953, 50.13972410000013 ], [ -120.946651991999914, 50.139701296000084 ], [ -120.94702020899993, 50.139608708000075 ], [ -120.947593413999982, 50.139312503000077 ], [ -120.947842200999915, 50.138949338000039 ], [ -120.948090239999942, 50.138953722000032 ], [ -120.948101778999927, 50.138684080000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "0.99898830940089", "sL_AssetLoss": "697.1499", "sL_BldgLoss": "696.4446", "sL_StrLoss": "691.0766", "sL_NStrLoss": "5.368", "sL_ContLoss": "0.7053", "geom_point": "0101000020E6100000A20405F7263C5EC0A6BFF27B76124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.937286927999949, 50.142319283000091 ], [ -120.942869241999944, 50.142576056000067 ], [ -120.942663381999964, 50.144424162000071 ], [ -120.942469747999951, 50.146162377000039 ], [ -120.936886995999927, 50.145905585000037 ], [ -120.936952600999945, 50.145317324000082 ], [ -120.937286927999949, 50.142319283000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "0.996192575522268", "sL_AssetLoss": "239.532", "sL_BldgLoss": "238.62", "sL_StrLoss": "220.06", "sL_NStrLoss": "18.56", "sL_ContLoss": "0.912", "geom_point": "0101000020E610000095CFB8916E375EC09A2D93C0EA114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.866505714000013, 50.137023805000069 ], [ -120.866737294999893, 50.136865711000041 ], [ -120.867079459999928, 50.136454810000053 ], [ -120.867196737000015, 50.136313971000035 ], [ -120.867880476000011, 50.136345878000029 ], [ -120.867811483999944, 50.13695628300006 ], [ -120.867989211999955, 50.13696457700005 ], [ -120.867895082999937, 50.137797370000051 ], [ -120.867538320000037, 50.138363905000091 ], [ -120.867526909999924, 50.138607493000031 ], [ -120.867775924999975, 50.138851567000096 ], [ -120.867717498999966, 50.13936844300008 ], [ -120.866911918999961, 50.139863605000116 ], [ -120.866403113999979, 50.139971904000063 ], [ -120.866071608999931, 50.140208286000124 ], [ -120.866169676999974, 50.14079509800009 ], [ -120.866596994999981, 50.141287800000057 ], [ -120.866892011999965, 50.141887392000065 ], [ -120.867117415999957, 50.14205464499999 ], [ -120.867001463999941, 50.143080211000132 ], [ -120.866939409999986, 50.143629059000027 ], [ -120.86517268799993, 50.143546603000054 ], [ -120.865116043999961, 50.144818645000058 ], [ -120.864675284, 50.141276853000093 ], [ -120.865134094999917, 50.13831489300005 ], [ -120.86444339099999, 50.137600469000084 ], [ -120.864361452999944, 50.137515725000128 ], [ -120.864385006999939, 50.137515095000069 ], [ -120.865951098, 50.137220301000063 ], [ -120.866505714000013, 50.137023805000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36262083", "BldgCostT": "25008333", "sL_LossRatio": "0.999810684366778", "sL_AssetLoss": "5207.70516", "sL_BldgLoss": "5206.71926", "sL_StrLoss": "5197.19076", "sL_NStrLoss": "9.5285", "sL_ContLoss": "0.9859", "geom_point": "0101000020E6100000E9013D1E043B5EC0418754AC751A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.914936306999948, 50.215808576000072 ], [ -120.914948062999954, 50.215538943000084 ], [ -120.914107649999977, 50.215523853000086 ], [ -120.914119410999888, 50.215254221000123 ], [ -120.912858800999985, 50.215231574000072 ], [ -120.912870569999939, 50.214961942000073 ], [ -120.910769566999974, 50.214924167000092 ], [ -120.910804903999988, 50.214115272000072 ], [ -120.910384711999967, 50.214107713 ], [ -120.91040827499999, 50.21356844900005 ], [ -120.909988087999977, 50.213560888000082 ], [ -120.909976302999965, 50.213830519000084 ], [ -120.908295544999945, 50.213800262000085 ], [ -120.908319129999967, 50.213260999000056 ], [ -120.907898945999975, 50.213253431000076 ], [ -120.907910740999966, 50.212983799000071 ], [ -120.907490558999982, 50.212976230000052 ], [ -120.907537745999932, 50.211897703000062 ], [ -120.907957917999966, 50.211905272000095 ], [ -120.907969711999911, 50.211635641000065 ], [ -120.908389883, 50.211643209000037 ], [ -120.908413464999967, 50.211103945000026 ], [ -120.908833632000011, 50.211111511000055 ], [ -120.908868996999942, 50.210302615000074 ], [ -120.909289157000018, 50.210310180000093 ], [ -120.909300941999959, 50.210040547000126 ], [ -120.910141255999974, 50.210055672000095 ], [ -120.910153036999958, 50.209786039000079 ], [ -120.912978150999919, 50.20983684000003 ], [ -120.913296251999924, 50.207002080000059 ], [ -120.915259888999984, 50.207092729000067 ], [ -120.915323093000026, 50.206529227000054 ], [ -120.91659959799992, 50.206588136000065 ], [ -120.916608051999958, 50.206394040000077 ], [ -120.916187924999974, 50.206386504000051 ], [ -120.916211414999964, 50.205847236000096 ], [ -120.915791292999984, 50.205839697000151 ], [ -120.915803040999918, 50.205570064000035 ], [ -120.915382921999978, 50.205562524000101 ], [ -120.915512157999956, 50.202596558000039 ], [ -120.91509206399995, 50.202589017000044 ], [ -120.915115564999979, 50.202049750000135 ], [ -120.914275388999968, 50.202034664000088 ], [ -120.914287141999949, 50.201765030000075 ], [ -120.913867057999965, 50.201757486000091 ], [ -120.913878812999954, 50.201487852000092 ], [ -120.913458731999967, 50.20148030600005 ], [ -120.913541039, 50.199592874000146 ], [ -120.913961104999927, 50.19960042000006 ], [ -120.913984614999976, 50.199061154000027 ], [ -120.914824736999932, 50.199076241000057 ], [ -120.914836487999963, 50.198806607000108 ], [ -120.916096665999973, 50.198829227000061 ], [ -120.916084923999932, 50.199098861000067 ], [ -120.91650498599995, 50.19910639700003 ], [ -120.91651672799999, 50.198836764000063 ], [ -120.916936788999976, 50.198844299000015 ], [ -120.916948524999967, 50.198574665000109 ], [ -120.917368583999945, 50.198582199000057 ], [ -120.917380318999946, 50.19831256600007 ], [ -120.918220431999927, 50.198327627 ], [ -120.918232161999939, 50.19805799400006 ], [ -120.91907226899994, 50.198073051000101 ], [ -120.919083994999966, 50.197803417000081 ], [ -120.920764204999912, 50.197833511000091 ], [ -120.920775919999969, 50.197563877000022 ], [ -120.921616019999931, 50.197578915000108 ], [ -120.921627731999934, 50.197309280000042 ], [ -120.922047781999964, 50.197316797000056 ], [ -120.922059487999917, 50.197047162000018 ], [ -120.922479533999962, 50.197054677000082 ], [ -120.92249124199995, 50.196785042000073 ], [ -120.926271642999907, 50.196852609000082 ], [ -120.926224900999983, 50.197931152000095 ], [ -120.928745234999951, 50.197976130000086 ], [ -120.928733562, 50.198245765000081 ], [ -120.92915362199993, 50.198253256000058 ], [ -120.929141951999938, 50.198522892000085 ], [ -120.929562012999895, 50.198530382000094 ], [ -120.929515344, 50.199608926000067 ], [ -120.928255134999915, 50.199586451000066 ], [ -120.928266807999989, 50.199316815000024 ], [ -120.927426673999932, 50.199301826000124 ], [ -120.927414995, 50.199571461000055 ], [ -120.926994925999978, 50.199563964000028 ], [ -120.926971561999935, 50.200103234000082 ], [ -120.926551486999983, 50.200095736000044 ], [ -120.92652811899994, 50.200635007000088 ], [ -120.927368276, 50.200650003000085 ], [ -120.927356594999964, 50.200919639000055 ], [ -120.929457004999961, 50.200957105000057 ], [ -120.929433666999927, 50.201496377000119 ], [ -120.929853754999925, 50.20150386600006 ], [ -120.929830419999973, 50.202043137000011 ], [ -120.930670604999989, 50.202058112000032 ], [ -120.930705590999963, 50.20124920400005 ], [ -120.932385931999974, 50.201279131000049 ], [ -120.93237428, 50.201548767000041 ], [ -120.93279436899995, 50.201556246000052 ], [ -120.932759418999936, 50.202365155000052 ], [ -120.933179514999949, 50.202372633000053 ], [ -120.933167865999962, 50.202642269000137 ], [ -120.933587963999955, 50.202649744000034 ], [ -120.933553024999981, 50.203458654000066 ], [ -120.933973131999963, 50.203466128000088 ], [ -120.933949841999947, 50.204005401000096 ], [ -120.934369952999958, 50.204012874000107 ], [ -120.93435831, 50.20428251000002 ], [ -120.935198535999973, 50.204297452000091 ], [ -120.935186898999945, 50.204567089000108 ], [ -120.935607014999945, 50.204574557000086 ], [ -120.93551392699996, 50.206731649000119 ], [ -120.933413256999955, 50.206694289000083 ], [ -120.933424905999971, 50.206424654000031 ], [ -120.932164510999939, 50.206402219000033 ], [ -120.932152855999959, 50.206671855000145 ], [ -120.93173272300001, 50.206664374000127 ], [ -120.931686088999967, 50.207742918000108 ], [ -120.932106231999981, 50.207750400000037 ], [ -120.932094574999951, 50.208020036000036 ], [ -120.932934865999954, 50.208034994000073 ], [ -120.93292321499996, 50.208304630000036 ], [ -120.933763509999906, 50.208319582000115 ], [ -120.933751861999923, 50.208589218000078 ], [ -120.93459216299999, 50.208604165000054 ], [ -120.934545591999964, 50.209682711 ], [ -120.93328511199995, 50.20966028800008 ], [ -120.93327346099997, 50.209929924000086 ], [ -120.932012974999978, 50.209907487000052 ], [ -120.932001317999934, 50.210177122000054 ], [ -120.931581153999943, 50.210169640000053 ], [ -120.931522849999979, 50.211517819000072 ], [ -120.930682498999957, 50.211502850000045 ], [ -120.930659167999977, 50.212042121000067 ], [ -120.93023898699991, 50.212034634000126 ], [ -120.930203980999948, 50.212843540000058 ], [ -120.929783793999917, 50.212836051000089 ], [ -120.929760450999979, 50.213375322000068 ], [ -120.929340259999961, 50.213367832000081 ], [ -120.929316910999916, 50.213907102000043 ], [ -120.928056324999929, 50.213884620000059 ], [ -120.928068005999961, 50.213614985000021 ], [ -120.92764781299999, 50.213607489000111 ], [ -120.927659495999961, 50.213337853999988 ], [ -120.926398925999962, 50.213315354000038 ], [ -120.926387233999918, 50.213584989000026 ], [ -120.925967042999943, 50.213577487000073 ], [ -120.92595535000001, 50.213847122000097 ], [ -120.924694765999945, 50.213824604000088 ], [ -120.924706466999965, 50.213554969000022 ], [ -120.920924750000012, 50.213487335000139 ], [ -120.920901305999934, 50.214026602000054 ], [ -120.919220528999958, 50.213996503000047 ], [ -120.919208795999978, 50.214266136000035 ], [ -120.918368404999939, 50.214251077000021 ], [ -120.918344931999982, 50.214790343000082 ], [ -120.917924729999939, 50.21478281200006 ], [ -120.91791299199997, 50.215052444000058 ], [ -120.917492787999919, 50.215044911000042 ], [ -120.917481046999953, 50.215314545000091 ], [ -120.917060841999955, 50.215307009000114 ], [ -120.917037352999969, 50.21584627600005 ], [ -120.914936306999948, 50.215808576000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999519643032686", "sL_AssetLoss": "734.4538", "sL_BldgLoss": "734.101", "sL_StrLoss": "732", "sL_NStrLoss": "2.101", "sL_ContLoss": "0.3528", "geom_point": "0101000020E6100000401815C482385EC0FFAD090E54164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.880390712999883, 50.172517321000022 ], [ -120.885976412999966, 50.172776967000097 ], [ -120.885572161999988, 50.176362939000029 ], [ -120.879986023999919, 50.176103273000066 ], [ -120.880390712999883, 50.172517321000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.999307908617154", "sL_AssetLoss": "746.7222", "sL_BldgLoss": "746.2054", "sL_StrLoss": "742.0534", "sL_NStrLoss": "4.152", "sL_ContLoss": "0.5168", "geom_point": "0101000020E6100000757333D44F3B5EC0FDA36FD234124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.929644949999911, 50.138766224000037 ], [ -120.93025, 50.138630860000042 ], [ -120.929906961999976, 50.141702983000101 ], [ -120.928234506999928, 50.141625885000089 ], [ -120.92788525099995, 50.144752223000125 ], [ -120.927598625999934, 50.144739007000084 ], [ -120.927561854, 50.145068130000034 ], [ -120.92540589199993, 50.14496869900016 ], [ -120.923033747999938, 50.144859249000092 ], [ -120.923186576999939, 50.144742993000087 ], [ -120.923230315999945, 50.144365593000011 ], [ -120.922883196999976, 50.143361514000055 ], [ -120.923091514999939, 50.142736299000042 ], [ -120.923756480999899, 50.142270497000062 ], [ -120.924406101999963, 50.142138108 ], [ -120.925486902999978, 50.142076899000116 ], [ -120.926418971999922, 50.141868893000037 ], [ -120.92684100799994, 50.140842100000071 ], [ -120.926803688999911, 50.140417603000124 ], [ -120.92638281399995, 50.139808097000106 ], [ -120.926382094999909, 50.139501910000071 ], [ -120.926626490000018, 50.139318201000073 ], [ -120.927807799999954, 50.13917721400005 ], [ -120.929644949999911, 50.138766224000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.999738507859629", "sL_AssetLoss": "591.9872", "sL_BldgLoss": "591.8324", "sL_StrLoss": "591", "sL_NStrLoss": "0.8324", "sL_ContLoss": "0.1548", "geom_point": "0101000020E6100000057EE06C6B395EC0C58954BD21194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.894589260999922, 50.19441970900003 ], [ -120.900177735999989, 50.194678628000126 ], [ -120.899774411999957, 50.198264550000026 ], [ -120.894185498999917, 50.198005611 ], [ -120.894589260999922, 50.19441970900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30022250", "BldgCostT": "20705000", "sL_LossRatio": "0.998632092459662", "sL_AssetLoss": "7031.6156", "sL_BldgLoss": "7021.997", "sL_StrLoss": "6900.727", "sL_NStrLoss": "121.27", "sL_ContLoss": "9.6186", "geom_point": "0101000020E6100000550C1D5C36385EC0CFB9803CE0134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.873258929999935, 50.172678520000076 ], [ -120.87333043699999, 50.172045733000104 ], [ -120.872144008999939, 50.17199047000004 ], [ -120.872162536999923, 50.171826538000104 ], [ -120.870492159999941, 50.171748710000053 ], [ -120.870493649, 50.171645154000053 ], [ -120.870499279999976, 50.170669491000069 ], [ -120.870500160999967, 50.170669529000094 ], [ -120.870500590999882, 50.17066956700009 ], [ -120.869675973999961, 50.160011193000059 ], [ -120.872948845999929, 50.159937410000097 ], [ -120.872695355999952, 50.156411249000094 ], [ -120.871589493999949, 50.156394946000063 ], [ -120.871739715999979, 50.155065471000057 ], [ -120.871974400999989, 50.155068509000067 ], [ -120.87207487799995, 50.154719198000059 ], [ -120.872234759999969, 50.154726650000029 ], [ -120.872240886999947, 50.154588670000081 ], [ -120.872660547999971, 50.15459636 ], [ -120.872684484999979, 50.15405710300017 ], [ -120.873104139999953, 50.154064792000071 ], [ -120.873118933999962, 50.153731485000023 ], [ -120.873380805999929, 50.153672809000078 ], [ -120.873553580999953, 50.153568792000037 ], [ -120.873573893999918, 50.153433490000069 ], [ -120.873552692999922, 50.153421222000105 ], [ -120.8735687699999, 50.153058900000062 ], [ -120.87292923699999, 50.153029101000051 ], [ -120.872937601999936, 50.152936394000044 ], [ -120.873330300999953, 50.152593188000019 ], [ -120.873674885999932, 50.152409503000051 ], [ -120.874390803999972, 50.152386695000068 ], [ -120.874563, 50.152291303000077 ], [ -120.874729910999974, 50.152006407000023 ], [ -120.875114304999954, 50.151815597000045 ], [ -120.875758921999932, 50.15187383800005 ], [ -120.875825378999949, 50.150805929000072 ], [ -120.875936973999956, 50.149792408000074 ], [ -120.875975737000019, 50.149440551000083 ], [ -120.876019405999969, 50.149044104000104 ], [ -120.875882195999964, 50.14826694100001 ], [ -120.874172605999902, 50.148271588000156 ], [ -120.871517365, 50.148447080000032 ], [ -120.869822278999933, 50.148559075000051 ], [ -120.869958386999897, 50.147354712000045 ], [ -120.871198812999964, 50.147412549000052 ], [ -120.871202032999918, 50.147384042000098 ], [ -120.871280791999979, 50.147387714000082 ], [ -120.871321409999936, 50.147028200000136 ], [ -120.871322747999955, 50.147016344000079 ], [ -120.875158347999928, 50.147195092000118 ], [ -120.875189490999929, 50.146919234000102 ], [ -120.87529209799996, 50.146924013000053 ], [ -120.875339508999971, 50.14650403600006 ], [ -120.877701678999983, 50.146614050000046 ], [ -120.87772623499994, 50.146396424000052 ], [ -120.876726064999943, 50.146349849000039 ], [ -120.876853351999941, 50.145221951000067 ], [ -120.876462428999929, 50.14520374500006 ], [ -120.876478100999975, 50.145064895000104 ], [ -120.875860519999932, 50.145036129000083 ], [ -120.876265257999961, 50.141450045000063 ], [ -120.881847117999939, 50.14170991000001 ], [ -120.881831464999891, 50.141848762000066 ], [ -120.882449006999977, 50.141877494000049 ], [ -120.882321866999931, 50.143005404000078 ], [ -120.882712772999966, 50.14302359000007 ], [ -120.882593452, 50.144082153000106 ], [ -120.886181990999944, 50.144249034000097 ], [ -120.886804397999981, 50.14453648800005 ], [ -120.887783310999978, 50.144553610000038 ], [ -120.888293608999973, 50.144387602000101 ], [ -120.888271488999976, 50.144584063000089 ], [ -120.889994114, 50.144664096000056 ], [ -120.889947306999915, 50.145079939000084 ], [ -120.890251932999931, 50.145094090000057 ], [ -120.890185374999973, 50.145685422000064 ], [ -120.890268670999944, 50.145689291000117 ], [ -120.889865000999976, 50.1492754060001 ], [ -120.889781789999972, 50.149271540000051 ], [ -120.88977526599993, 50.149329483000074 ], [ -120.893200313999955, 50.149488519000045 ], [ -120.893024396999976, 50.15105214900003 ], [ -120.892976499999989, 50.151057542000039 ], [ -120.891944666, 50.151173674000091 ], [ -120.891333055999937, 50.151210160000055 ], [ -120.88981328299991, 50.151222616000084 ], [ -120.888215482999954, 50.15123566100003 ], [ -120.88738779099999, 50.151242417000077 ], [ -120.88678603599999, 50.151247343000115 ], [ -120.886754735999915, 50.151247588000082 ], [ -120.884335165999971, 50.151267283000067 ], [ -120.884024698999966, 50.151269802000115 ], [ -120.88225645599999, 50.151145713000105 ], [ -120.88215934000003, 50.151138891000073 ], [ -120.881708766999949, 50.151078278000071 ], [ -120.881169474999936, 50.151008134000051 ], [ -120.880735246999933, 50.150951876000121 ], [ -120.88052864, 50.15146496900006 ], [ -120.880378087999972, 50.151904067000025 ], [ -120.880164643999962, 50.152452904000022 ], [ -120.879769474999975, 50.15298334100008 ], [ -120.879378249999917, 50.152956126000085 ], [ -120.878592463999951, 50.152969128000066 ], [ -120.876765167999977, 50.153047181000041 ], [ -120.876636746999978, 50.153103378000033 ], [ -120.876553047999963, 50.153185995000065 ], [ -120.876502586999962, 50.153483759 ], [ -120.876391626999961, 50.153534479000058 ], [ -120.875741006999988, 50.153542921000081 ], [ -120.875393867999932, 50.153585328000069 ], [ -120.875409884999925, 50.154835202000065 ], [ -120.875398288999946, 50.155123903000067 ], [ -120.875344786999932, 50.155287313000095 ], [ -120.874840820000017, 50.155985697000126 ], [ -120.874791607999953, 50.156123098000137 ], [ -120.874817996999923, 50.157156211000029 ], [ -120.876558497999952, 50.157115577000106 ], [ -120.876545114999914, 50.157520478000016 ], [ -120.87667127099995, 50.160441799000104 ], [ -120.876833122, 50.163011501000064 ], [ -120.876841206999984, 50.165190088000031 ], [ -120.876796588, 50.16728779600006 ], [ -120.876885793, 50.169481888000043 ], [ -120.876957402999963, 50.169904306 ], [ -120.877005734999955, 50.170399924000087 ], [ -120.877118117999942, 50.171551906000033 ], [ -120.877127863999974, 50.171839851000094 ], [ -120.877098733999944, 50.172777109000073 ], [ -120.877326604999951, 50.172751203000111 ], [ -120.878653903999975, 50.172419219000084 ], [ -120.87865280699998, 50.172410225000064 ], [ -120.878520712999972, 50.171315905000071 ], [ -120.878629551999936, 50.170303636000057 ], [ -120.880135306999946, 50.170279991000015 ], [ -120.879834423999938, 50.172946182000032 ], [ -120.878848919999911, 50.172900337000073 ], [ -120.878794606000014, 50.173381505000052 ], [ -120.873208872999925, 50.173121496000128 ], [ -120.873258929999935, 50.172678520000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5123334", "BldgCostT": "3533334", "sL_LossRatio": "0.9991928590782", "sL_AssetLoss": "859.2056", "sL_BldgLoss": "858.5121", "sL_StrLoss": "851.2001", "sL_NStrLoss": "7.312", "sL_ContLoss": "0.6935", "geom_point": "0101000020E61000004DDA54DD23395EC00FF361CDB3194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.888759838999931, 50.203499652000062 ], [ -120.888888662999975, 50.202356967000085 ], [ -120.888074402999948, 50.202319183000036 ], [ -120.887536572999949, 50.20229422200002 ], [ -120.887855073999958, 50.199469578000098 ], [ -120.887940898999915, 50.198708364 ], [ -120.888680815999933, 50.198742703000114 ], [ -120.88868346699995, 50.198719181000094 ], [ -120.890299057999982, 50.198794142000075 ], [ -120.890316302999963, 50.198641119000072 ], [ -120.891237532999938, 50.198683852000109 ], [ -120.891243563, 50.198630341000118 ], [ -120.892597834999947, 50.19869314700005 ], [ -120.892662431999966, 50.198119673000129 ], [ -120.898251350999928, 50.198378688000098 ], [ -120.897847841, 50.201964586000052 ], [ -120.896493464999978, 50.201901845000116 ], [ -120.896428910999973, 50.202475317000115 ], [ -120.896004439999928, 50.202455651000079 ], [ -120.895964509999914, 50.202810328000076 ], [ -120.894464046999957, 50.202740793000089 ], [ -120.894349397, 50.203758863000054 ], [ -120.888759838999931, 50.203499652000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3699917", "BldgCostT": "2551667", "sL_LossRatio": "0.999552491818215", "sL_AssetLoss": "684.2333", "sL_BldgLoss": "683.9271", "sL_StrLoss": "681.0491", "sL_NStrLoss": "2.878", "sL_ContLoss": "0.3062", "geom_point": "0101000020E6100000F7A0357929405EC0B3EB20A716124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.002357767999982, 50.144763063000021 ], [ -121.002593931999982, 50.142617492000078 ], [ -120.998868092999913, 50.14244817400008 ], [ -120.999014141999965, 50.141122186000153 ], [ -120.99926310799998, 50.138861632000072 ], [ -121.004006292999989, 50.139077161000095 ], [ -121.004045335999976, 50.13872231100008 ], [ -121.005657807999953, 50.138827557000091 ], [ -121.004975876999978, 50.142973976000036 ], [ -121.004975812999987, 50.144881963000088 ], [ -121.002357767999982, 50.144763063000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999571094494697", "sL_AssetLoss": "124.7361", "sL_BldgLoss": "124.6826", "sL_StrLoss": "124.0176", "sL_NStrLoss": "0.665", "sL_ContLoss": "0.0535", "geom_point": "0101000020E6100000EDD50960F1385EC032FDB73764144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.88872736799999, 50.158079625000013 ], [ -120.888731572999959, 50.157349853000063 ], [ -120.888795413999929, 50.157173101000097 ], [ -120.888794616999974, 50.157158298000105 ], [ -120.890803712999968, 50.157251602000017 ], [ -120.890776975999941, 50.157489105000103 ], [ -120.891190214999938, 50.157508291000028 ], [ -120.890786512999981, 50.161094354000042 ], [ -120.889177687, 50.161019649000139 ], [ -120.889162081, 50.161373882000142 ], [ -120.888742356999941, 50.161366250000064 ], [ -120.888706711999973, 50.162175142000066 ], [ -120.88816984199994, 50.162165378000118 ], [ -120.888682483999901, 50.159413681000082 ], [ -120.888793724999985, 50.159113123000054 ], [ -120.888750377999898, 50.158827514000052 ], [ -120.888795590999962, 50.15843679200001 ], [ -120.88872736799999, 50.158079625000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999454631357435", "sL_AssetLoss": "142.6558", "sL_BldgLoss": "142.578", "sL_StrLoss": "142", "sL_NStrLoss": "0.578", "sL_ContLoss": "0.0778", "geom_point": "0101000020E610000016B98E0E1B3A5EC0F220C17D32124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.907168089999956, 50.143126384000027 ], [ -120.90742515, 50.140834673 ], [ -120.907677110999941, 50.140938904000102 ], [ -120.908516690999974, 50.141584105000035 ], [ -120.90870969499997, 50.141974289000075 ], [ -120.908699416000019, 50.142531195000103 ], [ -120.908252104999974, 50.143176565000047 ], [ -120.907168089999956, 50.143126384000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3958500", "BldgCostT": "2730000", "sL_LossRatio": "0.999275961980842", "sL_AssetLoss": "928.5424", "sL_BldgLoss": "927.8701", "sL_StrLoss": "922.0691", "sL_NStrLoss": "5.801", "sL_ContLoss": "0.6723", "geom_point": "0101000020E6100000C80BC8E2A73B5EC0B17071D8A6124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.929421222999977, 50.147762572000047 ], [ -120.929444962999952, 50.147550036000013 ], [ -120.928709988999955, 50.147516158000016 ], [ -120.929110582999925, 50.143929894000074 ], [ -120.929626991999896, 50.14395369700005 ], [ -120.929701794999971, 50.143283905000018 ], [ -120.935284183999954, 50.143541063000072 ], [ -120.935173435999985, 50.14453380300003 ], [ -120.93539194499999, 50.144543863000067 ], [ -120.935271025999953, 50.145627769000058 ], [ -120.934991842999963, 50.148130148000085 ], [ -120.929408891999955, 50.147872977000134 ], [ -120.929421222999977, 50.147762572000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "0.999277269414528", "sL_AssetLoss": "444.564", "sL_BldgLoss": "444.2427", "sL_StrLoss": "441.0727", "sL_NStrLoss": "3.17", "sL_ContLoss": "0.3213", "geom_point": "0101000020E610000056236019003E5EC094C1CDB946124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.96519224, 50.1442497560001 ], [ -120.965198639999969, 50.144192051000047 ], [ -120.964125408999948, 50.144142927000118 ], [ -120.964335306999914, 50.142250495000042 ], [ -120.964388623999923, 50.141769766000024 ], [ -120.964476018999974, 50.141821903000086 ], [ -120.965071408999947, 50.14196859000009 ], [ -120.96576889, 50.142025611000093 ], [ -120.967201921999958, 50.141905902000126 ], [ -120.967618824999988, 50.141670903000076 ], [ -120.968444719999979, 50.141649603000118 ], [ -120.968742693999928, 50.141574090000084 ], [ -120.969258894999896, 50.141276403000063 ], [ -120.96939169599996, 50.141108407000061 ], [ -120.969368337999967, 50.140567526000055 ], [ -120.972549132999987, 50.140712946000065 ], [ -120.972313785000026, 50.142838367000081 ], [ -120.972151993999944, 50.144299383000096 ], [ -120.970804559999962, 50.144237793000052 ], [ -120.970774947999956, 50.144505115000065 ], [ -120.96519224, 50.1442497560001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "0.999370808089981", "sL_AssetLoss": "431.6648", "sL_BldgLoss": "431.3932", "sL_StrLoss": "428.0892", "sL_NStrLoss": "3.304", "sL_ContLoss": "0.2716", "geom_point": "0101000020E61000003DB8F94EE53E5EC020F1C8AB35124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.980115502999936, 50.143996161000054 ], [ -120.980126718999927, 50.143894734000121 ], [ -120.979397185999943, 50.143861443000084 ], [ -120.97943979899992, 50.143476082000106 ], [ -120.979793748999896, 50.140274977000068 ], [ -120.983654048999952, 50.14045108400007 ], [ -120.985376051999978, 50.140529598000093 ], [ -120.985364848999964, 50.140631026000051 ], [ -120.986094333999972, 50.140664278000081 ], [ -120.985891576999933, 50.142500350000077 ], [ -120.98569826399995, 50.144250764000041 ], [ -120.980115502999936, 50.143996161000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999281834598838", "sL_AssetLoss": "286.842", "sL_BldgLoss": "286.636", "sL_StrLoss": "285", "sL_NStrLoss": "1.636", "sL_ContLoss": "0.206", "geom_point": "0101000020E6100000B0C86D0390365EC000A370E2D01E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.85430935699999, 50.239431526000068 ], [ -120.854415061999973, 50.239427863000081 ], [ -120.854106884999922, 50.242140614000036 ], [ -120.85083971799996, 50.241988075000101 ], [ -120.850665761999934, 50.239557634000036 ], [ -120.85430935699999, 50.239431526000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5928083", "BldgCostT": "4088333", "sL_LossRatio": "0.99975340425427", "sL_AssetLoss": "851.5962", "sL_BldgLoss": "851.3862", "sL_StrLoss": "849.0472", "sL_NStrLoss": "2.339", "sL_ContLoss": "0.21", "geom_point": "0101000020E61000007DAD4B8DD0385EC021E8052B10174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.88845288499995, 50.184428685000121 ], [ -120.888837119999906, 50.181018979000044 ], [ -120.884576180999943, 50.18082108800008 ], [ -120.884653960999955, 50.180131374000034 ], [ -120.880697695999913, 50.179947484000074 ], [ -120.881102362999982, 50.176361547000077 ], [ -120.886688537999973, 50.176621155000085 ], [ -120.886610795, 50.177310874000092 ], [ -120.890566855999921, 50.177494552000049 ], [ -120.890182779, 50.180904281000068 ], [ -120.894443750999926, 50.181101955000067 ], [ -120.894040094999966, 50.184687919000048 ], [ -120.88845288499995, 50.184428685000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135773167", "BldgCostT": "93636667", "sL_LossRatio": "0.999273442943333", "sL_AssetLoss": "31609.768", "sL_BldgLoss": "31586.8017", "sL_StrLoss": "31406.5447", "sL_NStrLoss": "180.257", "sL_ContLoss": "22.9663", "geom_point": "0101000020E61000009AFB711C74385EC069FD4E0F61144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.876885793, 50.169481888000043 ], [ -120.876796588, 50.16728779600006 ], [ -120.876841206999984, 50.165190088000031 ], [ -120.876833122, 50.163011501000064 ], [ -120.87667127099995, 50.160441799000104 ], [ -120.876545114999914, 50.157520478000016 ], [ -120.876558497999952, 50.157115577000106 ], [ -120.874817996999923, 50.157156211000029 ], [ -120.874791607999953, 50.156123098000137 ], [ -120.874840820000017, 50.155985697000126 ], [ -120.875344786999932, 50.155287313000095 ], [ -120.875398288999946, 50.155123903000067 ], [ -120.875409884999925, 50.154835202000065 ], [ -120.875393867999932, 50.153585328000069 ], [ -120.875741006999988, 50.153542921000081 ], [ -120.876391626999961, 50.153534479000058 ], [ -120.876502586999962, 50.153483759 ], [ -120.876553047999963, 50.153185995000065 ], [ -120.876636746999978, 50.153103378000033 ], [ -120.876765167999977, 50.153047181000041 ], [ -120.878592463999951, 50.152969128000066 ], [ -120.879378249999917, 50.152956126000085 ], [ -120.879769474999975, 50.15298334100008 ], [ -120.880164643999962, 50.152452904000022 ], [ -120.880378087999972, 50.151904067000025 ], [ -120.88052864, 50.15146496900006 ], [ -120.880735246999933, 50.150951876000121 ], [ -120.881169474999936, 50.151008134000051 ], [ -120.881708766999949, 50.151078278000071 ], [ -120.88215934000003, 50.151138891000073 ], [ -120.88225645599999, 50.151145713000105 ], [ -120.884024698999966, 50.151269802000115 ], [ -120.884335165999971, 50.151267283000067 ], [ -120.886754735999915, 50.151247588000082 ], [ -120.88678603599999, 50.151247343000115 ], [ -120.88738779099999, 50.151242417000077 ], [ -120.888215482999954, 50.15123566100003 ], [ -120.88981328299991, 50.151222616000084 ], [ -120.891333055999937, 50.151210160000055 ], [ -120.891944666, 50.151173674000091 ], [ -120.892976499999989, 50.151057542000039 ], [ -120.893024396999976, 50.15105214900003 ], [ -120.892796839999932, 50.153074628000105 ], [ -120.89208251699992, 50.15304146800004 ], [ -120.892080809, 50.153056644000117 ], [ -120.891841762999917, 50.153045547000062 ], [ -120.891758536999987, 50.15378504900012 ], [ -120.886675646999933, 50.153548952000072 ], [ -120.886378146999931, 50.156189570000016 ], [ -120.885643271999925, 50.15615541600004 ], [ -120.885192723999978, 50.156134474000091 ], [ -120.885190956, 50.156174524000022 ], [ -120.885678467999938, 50.156183403000071 ], [ -120.886030312999978, 50.156189810000036 ], [ -120.886012040999958, 50.156604035000058 ], [ -120.88599333099999, 50.157028143000026 ], [ -120.886168929999911, 50.157036305000069 ], [ -120.888794616999974, 50.157158298000105 ], [ -120.888795413999929, 50.157173101000097 ], [ -120.888731572999959, 50.157349853000063 ], [ -120.88872736799999, 50.158079625000013 ], [ -120.888795590999962, 50.15843679200001 ], [ -120.888750377999898, 50.158827514000052 ], [ -120.888793724999985, 50.159113123000054 ], [ -120.888682483999901, 50.159413681000082 ], [ -120.88816984199994, 50.162165378000118 ], [ -120.887447519999952, 50.162152238000097 ], [ -120.887450943999937, 50.162074555000089 ], [ -120.886181099999973, 50.162015555000053 ], [ -120.886127512999948, 50.162013065000089 ], [ -120.886060699999945, 50.162605949000039 ], [ -120.885897873999909, 50.164050762000102 ], [ -120.88526122199994, 50.164021176000119 ], [ -120.884095167999973, 50.163966977000037 ], [ -120.884022601999931, 50.164610628000084 ], [ -120.883817920999959, 50.166426004000087 ], [ -120.883105074999918, 50.166392866000088 ], [ -120.883008433999962, 50.167249821000091 ], [ -120.881783232999965, 50.167192853000124 ], [ -120.881764587999967, 50.167358150000069 ], [ -120.880987908999927, 50.167322030000058 ], [ -120.880983854999926, 50.167357969000072 ], [ -120.880300459999944, 50.167326182000068 ], [ -120.880124705999904, 50.168883785000055 ], [ -120.880109155999932, 50.16888306200007 ], [ -120.880056272, 50.169351711000083 ], [ -120.880239096999986, 50.169360215000097 ], [ -120.880135306999946, 50.170279991000015 ], [ -120.878629551999936, 50.170303636000057 ], [ -120.878520712999972, 50.171315905000071 ], [ -120.87865280699998, 50.172410225000064 ], [ -120.878653903999975, 50.172419219000084 ], [ -120.877326604999951, 50.172751203000111 ], [ -120.877098733999944, 50.172777109000073 ], [ -120.877127863999974, 50.171839851000094 ], [ -120.877118117999942, 50.171551906000033 ], [ -120.877005734999955, 50.170399924000087 ], [ -120.876957402999963, 50.169904306 ], [ -120.876885793, 50.169481888000043 ] ], [ [ -120.887914793999983, 50.161081351000128 ], [ -120.887920087999973, 50.160961237000102 ], [ -120.887829346, 50.160957021000087 ], [ -120.88781554399999, 50.161079547000057 ], [ -120.887914793999983, 50.161081351000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9594250", "BldgCostT": "6145000", "sL_LossRatio": "0.997899973740266", "sL_AssetLoss": "2259.3527", "sL_BldgLoss": "2254.608", "sL_StrLoss": "2223.646", "sL_NStrLoss": "30.962", "sL_ContLoss": "4.7447", "geom_point": "0101000020E610000061D49C59DE375EC0F371F1E03C134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.871789846999917, 50.152976001000049 ], [ -120.871906173999918, 50.151946387000059 ], [ -120.870552173999982, 50.151883270000098 ], [ -120.87065288899997, 50.150992024000054 ], [ -120.869553098999987, 50.150940744000181 ], [ -120.869822278999933, 50.148559075000051 ], [ -120.871517365, 50.148447080000032 ], [ -120.874172605999902, 50.148271588000156 ], [ -120.875882195999964, 50.14826694100001 ], [ -120.876019405999969, 50.149044104000104 ], [ -120.875975737000019, 50.149440551000083 ], [ -120.875936973999956, 50.149792408000074 ], [ -120.875825378999949, 50.150805929000072 ], [ -120.875758921999932, 50.15187383800005 ], [ -120.875114304999954, 50.151815597000045 ], [ -120.874729910999974, 50.152006407000023 ], [ -120.874563, 50.152291303000077 ], [ -120.874390803999972, 50.152386695000068 ], [ -120.873674885999932, 50.152409503000051 ], [ -120.873330300999953, 50.152593188000019 ], [ -120.872937601999936, 50.152936394000044 ], [ -120.87292923699999, 50.153029101000051 ], [ -120.871789846999917, 50.152976001000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "0.999096712669863", "sL_AssetLoss": "1510.04", "sL_BldgLoss": "1508.676", "sL_StrLoss": "1498", "sL_NStrLoss": "10.676", "sL_ContLoss": "1.364", "geom_point": "0101000020E610000023B6604EB5375EC081A7778ED4144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.869612232999941, 50.171707702000113 ], [ -120.869699658999977, 50.170934568000064 ], [ -120.869674686999986, 50.17093340400006 ], [ -120.869731932999954, 50.170427140000086 ], [ -120.869606717999972, 50.170421304000087 ], [ -120.869743577999955, 50.169210955000089 ], [ -120.86953869599999, 50.16920140400007 ], [ -120.869723161999943, 50.167570005000101 ], [ -120.869319796999974, 50.167551203000109 ], [ -120.86949428599992, 50.166008046000094 ], [ -120.869130793999886, 50.165991101000031 ], [ -120.869206478999914, 50.165321769000087 ], [ -120.868475414999963, 50.165287684000091 ], [ -120.868880915999938, 50.161701724000096 ], [ -120.869264042999987, 50.1617195870001 ], [ -120.869641071999965, 50.158384633 ], [ -120.870698790999924, 50.158433942000073 ], [ -120.870707728999932, 50.158354858000088 ], [ -120.871833545999948, 50.15840733000006 ], [ -120.871844167999981, 50.158313335000067 ], [ -120.871375182999941, 50.158291478000095 ], [ -120.871589493999949, 50.156394946000063 ], [ -120.872695355999952, 50.156411249000094 ], [ -120.872948845999929, 50.159937410000097 ], [ -120.869675973999961, 50.160011193000059 ], [ -120.870500590999882, 50.17066956700009 ], [ -120.870500160999967, 50.170669529000094 ], [ -120.870499279999976, 50.170669491000069 ], [ -120.870493649, 50.171645154000053 ], [ -120.870492159999941, 50.171748710000053 ], [ -120.869612232999941, 50.171707702000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44042501", "BldgCostT": "28900001", "sL_LossRatio": "0.998610417076726", "sL_AssetLoss": "9759.763", "sL_BldgLoss": "9746.201", "sL_StrLoss": "9638.98", "sL_NStrLoss": "107.221", "sL_ContLoss": "13.562", "geom_point": "0101000020E61000002A27A965CE365EC0AB438723BC114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.863405056999937, 50.145521411000075 ], [ -120.863477155999973, 50.143903650000041 ], [ -120.863420412999957, 50.143902605000036 ], [ -120.863340912999945, 50.144605240000033 ], [ -120.861535529999927, 50.14452092300008 ], [ -120.861303310999958, 50.141988974000057 ], [ -120.861078544999927, 50.141991273 ], [ -120.857574647999911, 50.142027041000048 ], [ -120.857686043999948, 50.141043547000045 ], [ -120.855462742999975, 50.140939584000115 ], [ -120.855475221999953, 50.140829454000091 ], [ -120.854802027999966, 50.140797966 ], [ -120.854818667999922, 50.140651143000042 ], [ -120.854194617999923, 50.140621950000082 ], [ -120.85420299899998, 50.140548002000024 ], [ -120.853543200999965, 50.140517133000117 ], [ -120.853658368999945, 50.139501107000058 ], [ -120.85294067299999, 50.139467523000121 ], [ -120.852889605000016, 50.139917998000058 ], [ -120.847308129999988, 50.139656665000089 ], [ -120.84742927, 50.138589225 ], [ -120.8458243499999, 50.13851402700007 ], [ -120.845894968999971, 50.137891929000077 ], [ -120.846231397999972, 50.134928024000082 ], [ -120.850576066999935, 50.135131537000042 ], [ -120.85065313799997, 50.134451926000096 ], [ -120.85154244200001, 50.134493562000124 ], [ -120.851603725999894, 50.133953047000084 ], [ -120.857184525999926, 50.134214164000142 ], [ -120.85716963899992, 50.134345613000065 ], [ -120.857717918, 50.134371251000033 ], [ -120.857638539000021, 50.135072172000022 ], [ -120.858031453, 50.135090543000032 ], [ -120.857977776, 50.135564547000051 ], [ -120.859977461999975, 50.135658022000065 ], [ -120.859617108999956, 50.136149309000125 ], [ -120.859531379999936, 50.136525295000112 ], [ -120.859620808999978, 50.136707587000082 ], [ -120.861851201999912, 50.137224587000048 ], [ -120.862938803999953, 50.137290100000037 ], [ -120.863585713999967, 50.137536489000112 ], [ -120.864361452999944, 50.137515725000128 ], [ -120.86444339099999, 50.137600469000084 ], [ -120.865134094999917, 50.13831489300005 ], [ -120.864675284, 50.141276853000093 ], [ -120.865116043999961, 50.144818645000058 ], [ -120.865083372999948, 50.145552288000076 ], [ -120.864079131000011, 50.145533815000128 ], [ -120.863405056999937, 50.145521411000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13182917", "BldgCostT": "9091667", "sL_LossRatio": "0.999299871461721", "sL_AssetLoss": "3307.964", "sL_BldgLoss": "3305.648", "sL_StrLoss": "3292", "sL_NStrLoss": "13.648", "sL_ContLoss": "2.316", "geom_point": "0101000020E6100000D672A942AA355EC0ACF4661699114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.835811385999975, 50.14000475200001 ], [ -120.835855196999958, 50.139619585000041 ], [ -120.835306895999935, 50.139593839000092 ], [ -120.835364231999947, 50.1390897960001 ], [ -120.835020018999941, 50.139073633000073 ], [ -120.83503957100001, 50.138901750000102 ], [ -120.834095398999921, 50.138857408000092 ], [ -120.834503373999908, 50.135271449000093 ], [ -120.83551794199991, 50.135319097000078 ], [ -120.835579556999946, 50.134777373000048 ], [ -120.836194438999954, 50.134806246000061 ], [ -120.841160365999912, 50.135039302000123 ], [ -120.84115000299991, 50.135130513000036 ], [ -120.841697353, 50.135156187000085 ], [ -120.841674336999944, 50.135358796000027 ], [ -120.842769530999988, 50.135410158000063 ], [ -120.842501536999947, 50.137769580000061 ], [ -120.842362206999908, 50.13899614700005 ], [ -120.842301358999947, 50.138993293000048 ], [ -120.842174561999983, 50.140109449000079 ], [ -120.841414749999942, 50.14007381600004 ], [ -120.841392838, 50.140266667000041 ], [ -120.838426144999914, 50.140127488000132 ], [ -120.835811385999975, 50.14000475200001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331667", "BldgCostT": "4366667", "sL_LossRatio": "0.999639988857444", "sL_AssetLoss": "1399.6789", "sL_BldgLoss": "1399.175", "sL_StrLoss": "1396", "sL_NStrLoss": "3.175", "sL_ContLoss": "0.5039", "geom_point": "0101000020E61000002DD7D3F521365EC03C6923CFDC134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.842988743, 50.156803710000098 ], [ -120.84316512099997, 50.155251446000115 ], [ -120.843396177999935, 50.153217803000125 ], [ -120.848289708999957, 50.153447043000057 ], [ -120.848570985999956, 50.156565192000052 ], [ -120.848629072999927, 50.156565057000172 ], [ -120.848572297999979, 50.157065255000091 ], [ -120.843632701999965, 50.156833889000062 ], [ -120.842988743, 50.156803710000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24161833", "BldgCostT": "16663333", "sL_LossRatio": "0.999631217187316", "sL_AssetLoss": "5057.9906", "sL_BldgLoss": "5056.1253", "sL_StrLoss": "5043.0103", "sL_NStrLoss": "13.115", "sL_ContLoss": "1.8653", "geom_point": "0101000020E61000006354DF1A54355EC0B0ECDD7AA8104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.830503058999952, 50.134425320000084 ], [ -120.830547393999908, 50.134035891000117 ], [ -120.830011668999973, 50.134010707000051 ], [ -120.830039247999977, 50.133768488000065 ], [ -120.829701275, 50.133752600000101 ], [ -120.830109549999946, 50.13016663400014 ], [ -120.830157053999969, 50.130168866000083 ], [ -120.830205220999915, 50.129745765000067 ], [ -120.829127521999965, 50.129695092000134 ], [ -120.82915741, 50.12943259700009 ], [ -120.828819027999927, 50.129416685000109 ], [ -120.828850728999953, 50.129138293000096 ], [ -120.828499535999981, 50.129121777000087 ], [ -120.828707313999971, 50.127297126 ], [ -120.82758505599999, 50.127244340000061 ], [ -120.827578815999956, 50.127299123000086 ], [ -120.826207628999953, 50.127234613000063 ], [ -120.82345479599995, 50.124937179 ], [ -120.829261573999943, 50.126268851000127 ], [ -120.830621799999932, 50.125616387000079 ], [ -120.834487501999917, 50.125798062000129 ], [ -120.834455837999926, 50.126076457000096 ], [ -120.834807009999935, 50.126092954000093 ], [ -120.834777155000012, 50.126355453 ], [ -120.835115516999934, 50.126371346000049 ], [ -120.834997199999975, 50.127411708000103 ], [ -120.836074851999953, 50.12746232300006 ], [ -120.83579479899997, 50.129925159000095 ], [ -120.840452768999981, 50.130143811000032 ], [ -120.840045309999979, 50.133729815000059 ], [ -120.836213161000018, 50.133549944000031 ], [ -120.836089246999961, 50.134639566000033 ], [ -120.83608379599994, 50.13468750500008 ], [ -120.830503058999952, 50.134425320000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999521790513273", "sL_AssetLoss": "594.0911", "sL_BldgLoss": "593.807", "sL_StrLoss": "592", "sL_NStrLoss": "1.807", "sL_ContLoss": "0.2841", "geom_point": "0101000020E6100000F3A7744D94375EC069E0684355164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.868789461999924, 50.175529981000096 ], [ -120.868799527999968, 50.175303783000111 ], [ -120.867190392999973, 50.175274237000075 ], [ -120.866700323999936, 50.175265234000094 ], [ -120.866712334999974, 50.174995608000124 ], [ -120.866292498999954, 50.174987893000072 ], [ -120.86635256299995, 50.173639763000082 ], [ -120.867452277999988, 50.173659966000017 ], [ -120.867830189999964, 50.173666907000019 ], [ -120.868031866999928, 50.173670610000052 ], [ -120.868043868999933, 50.173400983000107 ], [ -120.869303341999981, 50.173424102000055 ], [ -120.869291346999944, 50.173693729000021 ], [ -120.870131000999919, 50.173709133000102 ], [ -120.870126963999923, 50.173799903000038 ], [ -120.870119009999939, 50.17397876100005 ], [ -120.870459997999959, 50.173985015000021 ], [ -120.870456879999921, 50.174201761000049 ], [ -120.870444479999932, 50.175064117000012 ], [ -120.870071042999939, 50.175057268000039 ], [ -120.870047058999944, 50.175596521000095 ], [ -120.868787528999931, 50.17557340900003 ], [ -120.868789461999924, 50.175529981000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999641345324944", "sL_AssetLoss": "124.3536", "sL_BldgLoss": "124.309", "sL_StrLoss": "124", "sL_NStrLoss": "0.309", "sL_ContLoss": "0.0446", "geom_point": "0101000020E61000007EBE56D7DB365EC04C61CE013C104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.85789669799999, 50.127828339000068 ], [ -120.857906443999937, 50.127610066000088 ], [ -120.857067603999923, 50.127594583000082 ], [ -120.857079648999985, 50.127324957000113 ], [ -120.856240813999975, 50.127309468000121 ], [ -120.85625286199999, 50.127039840000108 ], [ -120.855833445999977, 50.127032094000107 ], [ -120.855853925999924, 50.126573912000062 ], [ -120.855869600999938, 50.126223215000024 ], [ -120.858386050999954, 50.126269670000106 ], [ -120.858368294999963, 50.126667391000119 ], [ -120.85816620899999, 50.127296496000056 ], [ -120.85789669799999, 50.127828339000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724167", "BldgCostT": "6016667", "sL_LossRatio": "0.999384228655689", "sL_AssetLoss": "1990.0244", "sL_BldgLoss": "1988.799", "sL_StrLoss": "1981", "sL_NStrLoss": "7.799", "sL_ContLoss": "1.2254", "geom_point": "0101000020E6100000760536425A365EC09612F6AB881E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.84874369799995, 50.239849370000016 ], [ -120.848753057999929, 50.239767066000049 ], [ -120.845617271999984, 50.23962050299999 ], [ -120.846025241999925, 50.236034972000063 ], [ -120.846907312999988, 50.236076208000057 ], [ -120.851618563999949, 50.236296336000045 ], [ -120.851378485999973, 50.238408663000037 ], [ -120.854514206999937, 50.238555064000067 ], [ -120.854415061999973, 50.239427863000081 ], [ -120.85430935699999, 50.239431526000068 ], [ -120.850665761999934, 50.239557634000036 ], [ -120.85083971799996, 50.241988075000101 ], [ -120.848512827999969, 50.241879377000039 ], [ -120.84874369799995, 50.239849370000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "0.999768204172419", "sL_AssetLoss": "637.1987", "sL_BldgLoss": "637.051", "sL_StrLoss": "636", "sL_NStrLoss": "1.051", "sL_ContLoss": "0.1477", "geom_point": "0101000020E61000000307F69057445EC063DB3FA24B194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.065445075999918, 50.195520533000021 ], [ -121.066985430999949, 50.19558952800007 ], [ -121.068045591000015, 50.196031616000013 ], [ -121.068988682999972, 50.196307894000064 ], [ -121.070084099999974, 50.196560004000133 ], [ -121.070915832999972, 50.196863902000075 ], [ -121.070644799999911, 50.199357326000083 ], [ -121.070584037999936, 50.199354608000071 ], [ -121.06505479399999, 50.199107044000122 ], [ -121.06542097399992, 50.195742037000116 ], [ -121.065445075999918, 50.195520533000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5188584", "BldgCostT": "3578334", "sL_LossRatio": "0.999298197746062", "sL_AssetLoss": "1615.5548", "sL_BldgLoss": "1614.421", "sL_StrLoss": "1607", "sL_NStrLoss": "7.421", "sL_ContLoss": "1.1338", "geom_point": "0101000020E6100000C038E1F37D435EC0F66C2DFEFC144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.051612303999946, 50.163476522000074 ], [ -121.051843904999927, 50.161352327000067 ], [ -121.054088517999929, 50.161453219000066 ], [ -121.057429194999926, 50.16160329100007 ], [ -121.057351634, 50.162315502000148 ], [ -121.057438241999961, 50.16231939200005 ], [ -121.057205469999971, 50.164456708000053 ], [ -121.057047611999977, 50.165906031000084 ], [ -121.055737696999969, 50.165847199000076 ], [ -121.055491671, 50.168105234000024 ], [ -121.054069703999943, 50.16690650000011 ], [ -121.053262385999957, 50.166416603000137 ], [ -121.052470421999914, 50.165576304000069 ], [ -121.05167979, 50.163998292000016 ], [ -121.051612303999946, 50.163476522000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053333", "BldgCostT": "6933333", "sL_LossRatio": "0.998817032828017", "sL_AssetLoss": "2948.518", "sL_BldgLoss": "2945.03", "sL_StrLoss": "2918", "sL_NStrLoss": "27.03", "sL_ContLoss": "3.488", "geom_point": "0101000020E6100000F02F481B43425EC0B4198E8489134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.03671660899991, 50.157188654000088 ], [ -121.036860335999933, 50.155874211000025 ], [ -121.034661187999973, 50.155775005000081 ], [ -121.034518897999945, 50.155666700000062 ], [ -121.034049808999896, 50.155497197000059 ], [ -121.034038903999914, 50.15549709700008 ], [ -121.034053373999953, 50.155364830000046 ], [ -121.032740491999903, 50.155305576000103 ], [ -121.03272468699997, 50.155450002000102 ], [ -121.032457920999988, 50.155407404000123 ], [ -121.031833782999939, 50.154901903000052 ], [ -121.03115912, 50.153954797 ], [ -121.030728491999966, 50.153643012000018 ], [ -121.030665112999955, 50.153483177000098 ], [ -121.030326749000011, 50.152629951000023 ], [ -121.030595203999923, 50.150807048000061 ], [ -121.03366962799997, 50.150945856000064 ], [ -121.033680163999961, 50.150689002 ], [ -121.034099832999942, 50.150696108000048 ], [ -121.034110890999926, 50.150426453000122 ], [ -121.034530558999961, 50.150433558000017 ], [ -121.034541615999956, 50.150163902000074 ], [ -121.034961278999944, 50.150171006000051 ], [ -121.034972333, 50.149901350000029 ], [ -121.033293685999965, 50.149872927000068 ], [ -121.033326876999965, 50.149063961000103 ], [ -121.032907221999935, 50.149056851000104 ], [ -121.032918287999948, 50.14878719600005 ], [ -121.032498635999929, 50.148780084000066 ], [ -121.032531836999951, 50.147971118000093 ], [ -121.033371127999928, 50.147985338000069 ], [ -121.03338218899998, 50.147715683000087 ], [ -121.034221474999967, 50.147729897000055 ], [ -121.034232530999958, 50.147460241000125 ], [ -121.035491453999924, 50.147481549000105 ], [ -121.035480404999973, 50.147751206000123 ], [ -121.03590004699997, 50.1477583060001 ], [ -121.035855853999948, 50.148836929000048 ], [ -121.036275506999914, 50.148844028000042 ], [ -121.036253414999948, 50.149383340000036 ], [ -121.036673072999989, 50.149390437000122 ], [ -121.03666202899997, 50.149660093000065 ], [ -121.037921009999977, 50.149681377 ], [ -121.037909971999952, 50.149951032000054 ], [ -121.038749298999946, 50.14996521400014 ], [ -121.038716200999929, 50.150774184000085 ], [ -121.038296529999954, 50.150767093000098 ], [ -121.038285493999979, 50.15103674900007 ], [ -121.035767459999988, 50.15099417600009 ], [ -121.035765563999973, 50.151040436000066 ], [ -121.03594318899998, 50.151048450000076 ], [ -121.035938217, 50.151093923000062 ], [ -121.037017755999955, 50.151142621000041 ], [ -121.036935982999935, 50.151890573000109 ], [ -121.037462289999965, 50.151914311000091 ], [ -121.03742065299997, 50.152295182000039 ], [ -121.039988129999969, 50.152410943000035 ], [ -121.03986082199999, 50.153576049000016 ], [ -121.039840564999921, 50.153761440000061 ], [ -121.039853913999977, 50.153761666000065 ], [ -121.039842886999978, 50.154031322000051 ], [ -121.040262586, 50.154038407000016 ], [ -121.040256411999962, 50.154189393000131 ], [ -121.040229506999978, 50.15484737500001 ], [ -121.039722834999978, 50.154838823000034 ], [ -121.039618420999972, 50.155794315000044 ], [ -121.040239660999973, 50.155822316000069 ], [ -121.039243487999926, 50.1562150090001 ], [ -121.038311095999944, 50.156729096000049 ], [ -121.037796399999976, 50.156991189000067 ], [ -121.036836217999962, 50.157190597000081 ], [ -121.03671660899991, 50.157188654000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999302513558615", "sL_AssetLoss": "153.408", "sL_BldgLoss": "153.301", "sL_StrLoss": "153", "sL_NStrLoss": "0.301", "sL_ContLoss": "0.107", "geom_point": "0101000020E6100000771783E222425EC0D885383970124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.031682302999982, 50.143423735000113 ], [ -121.035590639999938, 50.143427085000049 ], [ -121.035518856999971, 50.144083592000065 ], [ -121.034647868999954, 50.144044285000113 ], [ -121.034562760999975, 50.144822513000115 ], [ -121.031496756999942, 50.144684091000059 ], [ -121.031682302999982, 50.143423735000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999366297180544", "sL_AssetLoss": "153.3842", "sL_BldgLoss": "153.287", "sL_StrLoss": "153", "sL_NStrLoss": "0.287", "sL_ContLoss": "0.0972", "geom_point": "0101000020E610000068DEFD33BB425EC0280052DDD4134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.041466588999953, 50.155407936000103 ], [ -121.041477608999983, 50.155138279000113 ], [ -121.041057899999942, 50.155131198000049 ], [ -121.041090963999935, 50.154322228000076 ], [ -121.041470837999938, 50.154328636000109 ], [ -121.042769774999968, 50.154350541000078 ], [ -121.042760642999937, 50.154574159000049 ], [ -121.042758761999934, 50.154620198000053 ], [ -121.04298910199995, 50.15462408000014 ], [ -121.044437584999969, 50.154648486000042 ], [ -121.044434719999927, 50.154718723000059 ], [ -121.044404577999927, 50.155457458000093 ], [ -121.041466588999953, 50.155407936000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999638283070876", "sL_AssetLoss": "518.6376", "sL_BldgLoss": "518.45", "sL_StrLoss": "517", "sL_NStrLoss": "1.45", "sL_ContLoss": "0.1876", "geom_point": "0101000020E61000004F67BCE75F435EC077F93141E8154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.051945289999949, 50.169334345000081 ], [ -121.055215889999928, 50.169481308000087 ], [ -121.0552073899999, 50.169571212000065 ], [ -121.054221680999916, 50.170741903000042 ], [ -121.054088219000022, 50.171270307000015 ], [ -121.054237810999936, 50.172423893000072 ], [ -121.054488784999961, 50.172805597000078 ], [ -121.054841993999929, 50.173036304000043 ], [ -121.05491680499992, 50.173072028000036 ], [ -121.052847988999986, 50.172979080000047 ], [ -121.050801894999935, 50.17288711500003 ], [ -121.051193076999937, 50.169300532000058 ], [ -121.051945289999949, 50.169334345000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "0.999230065619408", "sL_AssetLoss": "1257.25", "sL_BldgLoss": "1256.282", "sL_StrLoss": "1251", "sL_NStrLoss": "5.282", "sL_ContLoss": "0.968", "geom_point": "0101000020E61000000D013C79C3435EC028F30B86A5174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.05630227499995, 50.186917434000051 ], [ -121.05636113, 50.186377427000075 ], [ -121.05597129799996, 50.186359926000115 ], [ -121.056032797999933, 50.185795689000017 ], [ -121.055654826999955, 50.185778720000044 ], [ -121.05590387499997, 50.183493802000058 ], [ -121.056320257000024, 50.183515422000013 ], [ -121.05624034399996, 50.182200915000053 ], [ -121.058365078999884, 50.182296288000039 ], [ -121.061633610999962, 50.182442922000092 ], [ -121.061572186000021, 50.183007165000042 ], [ -121.061950136999954, 50.183024115000087 ], [ -121.061929642999957, 50.183212387 ], [ -121.061356808999903, 50.183371794000053 ], [ -121.060965290999889, 50.183707899000076 ], [ -121.060985316, 50.184229204000061 ], [ -121.061163697999945, 50.184700606000071 ], [ -121.061716492999963, 50.185204813000027 ], [ -121.062041208999972, 50.18578593899999 ], [ -121.06189073199999, 50.187168163000074 ], [ -121.06169378, 50.187159331000025 ], [ -121.05630227499995, 50.186917434000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "0.99970278313025", "sL_AssetLoss": "657.4324", "sL_BldgLoss": "657.237", "sL_StrLoss": "656", "sL_NStrLoss": "1.237", "sL_ContLoss": "0.1954", "geom_point": "0101000020E6100000486999B9FE435EC05572C242B5184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.060978411999898, 50.194695426000109 ], [ -121.060980691999958, 50.194491725000049 ], [ -121.05976822400001, 50.19444714600008 ], [ -121.060137855999969, 50.191053697000022 ], [ -121.062795226999967, 50.191172852000115 ], [ -121.06421155299995, 50.191236334000038 ], [ -121.064453002999954, 50.191699191000104 ], [ -121.064807196999965, 50.193297111000028 ], [ -121.065284005, 50.194312587000077 ], [ -121.06539034799998, 50.194396988000044 ], [ -121.065336620999929, 50.19489076200005 ], [ -121.06448008299999, 50.194852386000029 ], [ -121.060978411999898, 50.194695426000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999637761925992", "sL_AssetLoss": "401.9456", "sL_BldgLoss": "401.8", "sL_StrLoss": "401", "sL_NStrLoss": "0.8", "sL_ContLoss": "0.1456", "geom_point": "0101000020E6100000B46ABEE753435EC05B636DDF65154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.050852245999963, 50.164144790000073 ], [ -121.051239252999906, 50.164162191000052 ], [ -121.051297382999962, 50.164458290000063 ], [ -121.051568504, 50.165039400000097 ], [ -121.05240170699993, 50.166258496000069 ], [ -121.052913012999966, 50.16675269200006 ], [ -121.053382192999962, 50.167246909000042 ], [ -121.054880779999948, 50.168288001000086 ], [ -121.05528131100003, 50.168789304000057 ], [ -121.055268152999986, 50.168928481000087 ], [ -121.051851829, 50.168774968000044 ], [ -121.05032793599996, 50.168706458000088 ], [ -121.050430734000017, 50.164125836000039 ], [ -121.050852245999963, 50.164144790000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998856067652373", "sL_AssetLoss": "187.074", "sL_BldgLoss": "186.86", "sL_StrLoss": "185", "sL_NStrLoss": "1.86", "sL_ContLoss": "0.214", "geom_point": "0101000020E6100000222C114594435EC07425860DE4154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.05599717299998, 50.169516399000052 ], [ -121.056779341, 50.169551525000024 ], [ -121.05643316299998, 50.172729094 ], [ -121.056127603999954, 50.172428185000065 ], [ -121.055143710999985, 50.171818606000024 ], [ -121.054766794, 50.171469704000103 ], [ -121.054756521999963, 50.171038100000089 ], [ -121.055189003999928, 50.170730507000023 ], [ -121.055809203999928, 50.169904504000058 ], [ -121.05599717299998, 50.169516399000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9364583", "BldgCostT": "6458333", "sL_LossRatio": "0.999435605528128", "sL_AssetLoss": "2383.085", "sL_BldgLoss": "2381.74", "sL_StrLoss": "2372", "sL_NStrLoss": "9.74", "sL_ContLoss": "1.345", "geom_point": "0101000020E61000008E15A9EE59545EC0951D4DBB39364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.31595579699993, 50.42134718100008 ], [ -121.31732242599999, 50.420954007000091 ], [ -121.320314806999988, 50.422966237000061 ], [ -121.320778130999926, 50.423107578000042 ], [ -121.321168854999883, 50.423143762000031 ], [ -121.321444440999954, 50.42326318100011 ], [ -121.32143774299999, 50.423452601000058 ], [ -121.321330191999962, 50.423493494000049 ], [ -121.321256654999928, 50.423547202000087 ], [ -121.321074244999963, 50.423680434000055 ], [ -121.320759037999977, 50.423675887000094 ], [ -121.320732686999918, 50.423929914000027 ], [ -121.319783894999944, 50.424622904000039 ], [ -121.31904450799999, 50.425655505000094 ], [ -121.318656795999928, 50.425914505000016 ], [ -121.317306275999954, 50.425857416000134 ], [ -121.31728859499998, 50.42602775100012 ], [ -121.315944218999945, 50.425970906000082 ], [ -121.315941703, 50.425790809000034 ], [ -121.316085334999968, 50.424750642000085 ], [ -121.31622549799999, 50.423735592000078 ], [ -121.315991680999929, 50.422207987 ], [ -121.315985282999961, 50.422166102000055 ], [ -121.31595579699993, 50.42134718100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6827083", "BldgCostT": "4708333", "sL_LossRatio": "0.998989496697328", "sL_AssetLoss": "1888.168", "sL_BldgLoss": "1886.26", "sL_StrLoss": "1871", "sL_NStrLoss": "15.26", "sL_ContLoss": "1.908", "geom_point": "0101000020E6100000DEB175FC99595EC03CC60DA6FE214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.402191102999964, 50.267413887000039 ], [ -121.399333978999906, 50.266953161000075 ], [ -121.395902847999963, 50.266968315000035 ], [ -121.396218596999944, 50.263862518000103 ], [ -121.399766617999916, 50.264010485000071 ], [ -121.401818348999939, 50.264095999000062 ], [ -121.401800168999969, 50.264275054000102 ], [ -121.404339373999932, 50.264380831000068 ], [ -121.404257267, 50.265189939000059 ], [ -121.404222428999987, 50.265533221000105 ], [ -121.403927514999936, 50.265891900000064 ], [ -121.403748919999913, 50.266230898000082 ], [ -121.403564890999959, 50.267082595000048 ], [ -121.403048086999917, 50.267484568000071 ], [ -121.402683059999944, 50.267449304000102 ], [ -121.402191102999964, 50.267413887000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "0.999282727733944", "sL_AssetLoss": "1429.025", "sL_BldgLoss": "1428", "sL_StrLoss": "1420", "sL_NStrLoss": "8", "sL_ContLoss": "1.025", "geom_point": "0101000020E6100000B42E7FCF195A5EC06356F7E183214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.405047669999959, 50.26377709900013 ], [ -121.405098375999913, 50.263277329000054 ], [ -121.404311977999939, 50.263244580000077 ], [ -121.404581504999896, 50.260588374000093 ], [ -121.410475152999979, 50.260002736000068 ], [ -121.411189227999969, 50.259931755000039 ], [ -121.411308404999943, 50.260184667 ], [ -121.41106169499993, 50.262619626000038 ], [ -121.410928337999977, 50.26261408000002 ], [ -121.410887618999965, 50.263015924000065 ], [ -121.410869538999933, 50.26319435700001 ], [ -121.409741103999963, 50.263272806000025 ], [ -121.407927505999936, 50.263338282000056 ], [ -121.406685897999949, 50.263554787000075 ], [ -121.406196634999958, 50.263824936000049 ], [ -121.405864131999948, 50.263811094000069 ], [ -121.405047669999959, 50.26377709900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999617948904056", "sL_AssetLoss": "125.3759", "sL_BldgLoss": "125.328", "sL_StrLoss": "125", "sL_NStrLoss": "0.328", "sL_ContLoss": "0.0479", "geom_point": "0101000020E6100000E30BE6F1EC4B5EC0DA5E241710264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.184938972999973, 50.297026594000123 ], [ -121.184519605999967, 50.296958189000058 ], [ -121.182877013999985, 50.296949704000049 ], [ -121.182446988999956, 50.296800104000056 ], [ -121.182452167999941, 50.296679611000087 ], [ -121.188014306999946, 50.296922147000096 ], [ -121.187833186999981, 50.298625122000047 ], [ -121.186324212999978, 50.297858290000065 ], [ -121.186192701999943, 50.297640392000062 ], [ -121.185457211, 50.29739538300008 ], [ -121.184938972999973, 50.297026594000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999307177131713", "sL_AssetLoss": "155.884", "sL_BldgLoss": "155.776", "sL_StrLoss": "155", "sL_NStrLoss": "0.776", "sL_ContLoss": "0.108", "geom_point": "0101000020E6100000E08618AFF94B5EC03B1CD96C97254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.186467050999937, 50.291845847000104 ], [ -121.188079473999906, 50.291916134000118 ], [ -121.187698065999925, 50.295502629000076 ], [ -121.185820069999949, 50.295420762000106 ], [ -121.18584309499991, 50.295404394000073 ], [ -121.186578085999926, 50.294175310000071 ], [ -121.18637151499999, 50.293658308000055 ], [ -121.186369515999942, 50.29299319800004 ], [ -121.186519319999903, 50.291987698000078 ], [ -121.186467050999937, 50.291845847000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999489581121208", "sL_AssetLoss": "295.2477", "sL_BldgLoss": "295.097", "sL_StrLoss": "294", "sL_NStrLoss": "1.097", "sL_ContLoss": "0.1507", "geom_point": "0101000020E61000007BEC15B3B14C5EC0798E6DBEB6264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.199076329999983, 50.304344368000031 ], [ -121.199054777999919, 50.303899519000055 ], [ -121.196411506999979, 50.303831456000104 ], [ -121.196448194999931, 50.302246450000069 ], [ -121.196370025999983, 50.30224327700013 ], [ -121.196406356999915, 50.301901115000071 ], [ -121.196541199999956, 50.30063108500007 ], [ -121.199572919, 50.30076291700005 ], [ -121.199738091999933, 50.301152501000097 ], [ -121.200159918999958, 50.301824701000051 ], [ -121.20005518, 50.302784595000098 ], [ -121.200152495999973, 50.303550889000029 ], [ -121.200936332, 50.304425209000051 ], [ -121.200221028, 50.304394123000087 ], [ -121.199076329999983, 50.304344368000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9340417", "BldgCostT": "6441667", "sL_LossRatio": "0.998994496578082", "sL_AssetLoss": "2588.753", "sL_BldgLoss": "2586.15", "sL_StrLoss": "2563", "sL_NStrLoss": "23.15", "sL_ContLoss": "2.603", "geom_point": "0101000020E610000082397AFC5E4B5EC086F01E566E254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.179853297999955, 50.296506344000086 ], [ -121.179875948999921, 50.2962937080001 ], [ -121.177919613999933, 50.296208288000045 ], [ -121.175056547999986, 50.296083215000088 ], [ -121.175109127, 50.295590145000098 ], [ -121.174470111999966, 50.295562220000072 ], [ -121.174410456999965, 50.294794245000062 ], [ -121.173825204, 50.294780548000041 ], [ -121.172713908, 50.294788031000088 ], [ -121.172723329999926, 50.294699717000071 ], [ -121.1714290099999, 50.294643121000085 ], [ -121.171799030000017, 50.291175410000065 ], [ -121.170380270999942, 50.291113354000068 ], [ -121.168534536999985, 50.291032596000029 ], [ -121.168481997999933, 50.291524683000041 ], [ -121.168435647, 50.291958792000102 ], [ -121.162833685999928, 50.291713493000053 ], [ -121.162998872999964, 50.290168134000098 ], [ -121.163039775999948, 50.289785460000125 ], [ -121.163443911999948, 50.29004220900007 ], [ -121.164161682999975, 50.29035129800009 ], [ -121.16455950199996, 50.290484027000076 ], [ -121.164784814, 50.290559200000075 ], [ -121.165128105999912, 50.290761501000105 ], [ -121.165991392, 50.29095520200007 ], [ -121.167165991999951, 50.291100403000044 ], [ -121.167760303999927, 50.290983599000093 ], [ -121.168730404999963, 50.29091808700008 ], [ -121.170714401999987, 50.290463788000146 ], [ -121.171027898999967, 50.290297196000076 ], [ -121.17225491, 50.28874189000009 ], [ -121.17258859699993, 50.28844139299999 ], [ -121.173666861999948, 50.288245012000047 ], [ -121.173594435, 50.288924135000066 ], [ -121.173465955, 50.290128777000078 ], [ -121.172896254999927, 50.290103869000085 ], [ -121.172790053999947, 50.291099460000034 ], [ -121.173881971999947, 50.291147196000111 ], [ -121.174095311999949, 50.289146727000109 ], [ -121.174723243999964, 50.289174175000014 ], [ -121.174755298999941, 50.288873542000026 ], [ -121.175134833999977, 50.288890130000048 ], [ -121.175559904999957, 50.288908707000083 ], [ -121.175589577999943, 50.288630360000113 ], [ -121.175842174999929, 50.288641399000049 ], [ -121.176181392999979, 50.288831712000032 ], [ -121.176776409999974, 50.289038206000015 ], [ -121.179839810999937, 50.289338701000084 ], [ -121.18082829399998, 50.28919199400007 ], [ -121.181565390999964, 50.288986903000129 ], [ -121.182429158999952, 50.288461405000078 ], [ -121.183003434999989, 50.288486464000059 ], [ -121.182864294999959, 50.28979362600014 ], [ -121.183475589999915, 50.289820297000098 ], [ -121.183625506999959, 50.290215992000078 ], [ -121.184278190999962, 50.290415409000097 ], [ -121.184990690999911, 50.290489401000045 ], [ -121.185374691, 50.29075579800012 ], [ -121.185955008999926, 50.292798083000051 ], [ -121.185969812999957, 50.294255002000135 ], [ -121.185591503999945, 50.295014186000067 ], [ -121.185098120999925, 50.295447103000079 ], [ -121.18210161099995, 50.295966897000085 ], [ -121.181714989999989, 50.296113590000083 ], [ -121.181608691999912, 50.296318689000081 ], [ -121.18180602799994, 50.296591571000057 ], [ -121.179853297999955, 50.296506344000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999391706745802", "sL_AssetLoss": "140.7216", "sL_BldgLoss": "140.636", "sL_StrLoss": "140", "sL_NStrLoss": "0.636", "sL_ContLoss": "0.0856", "geom_point": "0101000020E6100000E8235B23E34C5EC052F79E1DB2264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.20040299899992, 50.300798998000118 ], [ -121.202144447999956, 50.300874673000067 ], [ -121.201764075999961, 50.304461175000064 ], [ -121.201637262, 50.304455665000035 ], [ -121.201187111999957, 50.304025104000097 ], [ -121.200821510999901, 50.303283088000072 ], [ -121.200662294999916, 50.301571193000058 ], [ -121.20040299899992, 50.300798998000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999503481051672", "sL_AssetLoss": "295.2556", "sL_BldgLoss": "295.109", "sL_StrLoss": "294", "sL_NStrLoss": "1.109", "sL_ContLoss": "0.1466", "geom_point": "0101000020E610000001F6F2B7144A5EC0198B4BFAA0244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.155405798999979, 50.283973073 ], [ -121.157129963999964, 50.284048732000024 ], [ -121.157893896999937, 50.284665793000023 ], [ -121.15861141799995, 50.285002003000109 ], [ -121.159636297999967, 50.285719811000099 ], [ -121.160716843999978, 50.286930200000043 ], [ -121.160623277999903, 50.287805187000046 ], [ -121.157453081999947, 50.287666168000129 ], [ -121.155021871999978, 50.287559491000124 ], [ -121.15507971599996, 50.287019185000098 ], [ -121.155405798999979, 50.283973073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999667465513881", "sL_AssetLoss": "261.627", "sL_BldgLoss": "261.54", "sL_StrLoss": "261", "sL_NStrLoss": "0.54", "sL_ContLoss": "0.087", "geom_point": "0101000020E6100000E9A8F62BD54B5EC0C9FF05FE47264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.18202972899995, 50.300264295000048 ], [ -121.182153399999919, 50.299102938000047 ], [ -121.18236444599998, 50.297120947000117 ], [ -121.182557094999964, 50.297268689000063 ], [ -121.183212296999969, 50.297368395000035 ], [ -121.184868105999925, 50.297403999000068 ], [ -121.185255914999942, 50.297526505000043 ], [ -121.185446809999974, 50.297673210000028 ], [ -121.185891794999932, 50.297797095000099 ], [ -121.186690677999977, 50.298556197000025 ], [ -121.187035707999939, 50.298759804000063 ], [ -121.187641304, 50.299074610000055 ], [ -121.187780849999953, 50.299117189000093 ], [ -121.187717144999979, 50.299716133000061 ], [ -121.189307332999931, 50.299740919000044 ], [ -121.189277162999957, 50.300535401000097 ], [ -121.189276610999983, 50.300549937000071 ], [ -121.188605831999951, 50.300539485000058 ], [ -121.188600038999937, 50.300385293000033 ], [ -121.188594943999959, 50.300249391000108 ], [ -121.188259546999944, 50.300255284000066 ], [ -121.185949027999953, 50.300295689000031 ], [ -121.183929920999944, 50.300347185000113 ], [ -121.18202972899995, 50.300264295000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999366822889164", "sL_AssetLoss": "584.0388", "sL_BldgLoss": "583.669", "sL_StrLoss": "581", "sL_NStrLoss": "2.669", "sL_ContLoss": "0.3698", "geom_point": "0101000020E610000071218FE0C64A5EC0BD6B75DEEB244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.166856838999976, 50.28828648000011 ], [ -121.166881414999921, 50.288056376000114 ], [ -121.166587119999946, 50.288051733000039 ], [ -121.166615696999955, 50.287308152000094 ], [ -121.166628574999933, 50.286973053000047 ], [ -121.16699648799991, 50.286978857000072 ], [ -121.167030852999943, 50.286657054 ], [ -121.168203231999897, 50.286708375000053 ], [ -121.168247121999983, 50.28629728100006 ], [ -121.17215037299998, 50.286468056000096 ], [ -121.173848443999987, 50.286542307000097 ], [ -121.173764123999916, 50.287332996000075 ], [ -121.173501711999933, 50.287331987000059 ], [ -121.172612498999939, 50.287461606000093 ], [ -121.172296393999957, 50.287609706000055 ], [ -121.172227693999957, 50.287960004000141 ], [ -121.171770708999986, 50.288509789000031 ], [ -121.17059770799996, 50.289831492000069 ], [ -121.170166908999974, 50.290103497000104 ], [ -121.16931179499997, 50.290422507000073 ], [ -121.168448804000022, 50.290571993000107 ], [ -121.167101410999933, 50.290550696000061 ], [ -121.165130993999952, 50.290321392000109 ], [ -121.164846266999959, 50.290199515000033 ], [ -121.16403958399998, 50.289854203000068 ], [ -121.163436503999947, 50.289493907000043 ], [ -121.163102197999962, 50.289201443000067 ], [ -121.163217028999938, 50.288127067000126 ], [ -121.164635579, 50.288189211000031 ], [ -121.166856838999976, 50.28828648000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.998556934711506", "sL_AssetLoss": "587.638", "sL_BldgLoss": "586.79", "sL_StrLoss": "578.16", "sL_NStrLoss": "8.63", "sL_ContLoss": "0.848", "geom_point": "0101000020E610000073F68C4CD9645EC0415EF688A41E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.577567978999966, 50.238195624000106 ], [ -121.578224323999947, 50.238157073000067 ], [ -121.578028494999941, 50.238346312000019 ], [ -121.576999111999939, 50.239440091000077 ], [ -121.576767096999902, 50.239714898000059 ], [ -121.576521478999965, 50.240422793000043 ], [ -121.576274392999892, 50.240796110000076 ], [ -121.574162944999912, 50.240711408000038 ], [ -121.574193341999944, 50.240400184000116 ], [ -121.574332843999954, 50.238971733000071 ], [ -121.574390982999915, 50.238376387000095 ], [ -121.574671627000015, 50.238360424000106 ], [ -121.576529415999929, 50.238254737000084 ], [ -121.577553984999909, 50.2381964510001 ], [ -121.577567978999966, 50.238195624000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998727974366268", "sL_AssetLoss": "186.317", "sL_BldgLoss": "186.08", "sL_StrLoss": "184", "sL_NStrLoss": "2.08", "sL_ContLoss": "0.237", "geom_point": "0101000020E610000038C4F49487645EC06C6D6D23161F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.570156470999919, 50.242450757000015 ], [ -121.571418243999972, 50.242466277000119 ], [ -121.571394052999906, 50.243275457000038 ], [ -121.570132259999951, 50.24325993500004 ], [ -121.570156470999919, 50.242450757000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6401750", "BldgCostT": "4415000", "sL_LossRatio": "0.998654562248694", "sL_AssetLoss": "1621.777", "sL_BldgLoss": "1619.595", "sL_StrLoss": "1596.445", "sL_NStrLoss": "23.15", "sL_ContLoss": "2.182", "geom_point": "0101000020E6100000D87E95F042645EC0C8CA92AD6C1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.564939284999951, 50.248052772000094 ], [ -121.564962726999937, 50.247272298000041 ], [ -121.563199514999923, 50.247201398000151 ], [ -121.563550827999975, 50.243613437000107 ], [ -121.569148924999965, 50.243838444000041 ], [ -121.569127550999951, 50.244057043000019 ], [ -121.569266835999969, 50.244058758000094 ], [ -121.569282987999983, 50.243519307000042 ], [ -121.570544788999925, 50.243534837000084 ], [ -121.570488450999974, 50.245418045000065 ], [ -121.570488304999941, 50.245422919000099 ], [ -121.570483225999936, 50.245422856000033 ], [ -121.568995781999973, 50.245404548000074 ], [ -121.568969426999942, 50.245674049000066 ], [ -121.569218376999928, 50.245677115000035 ], [ -121.569190333000023, 50.246613626000027 ], [ -121.569186068999983, 50.246756017000052 ], [ -121.569009787999946, 50.246753847000029 ], [ -121.568864005999913, 50.246752051000058 ], [ -121.568852918999966, 50.246865412 ], [ -121.568798053999942, 50.247426422000061 ], [ -121.568074219999971, 50.247397345000103 ], [ -121.566223571999956, 50.247322981000103 ], [ -121.566201202999977, 50.248068351000029 ], [ -121.564939284999951, 50.248052772000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28776417", "BldgCostT": "18371667", "sL_LossRatio": "0.997865953972895", "sL_AssetLoss": "5798.844", "sL_BldgLoss": "5786.469", "sL_StrLoss": "5669.669", "sL_NStrLoss": "116.8", "sL_ContLoss": "12.375", "geom_point": "0101000020E6100000751AEDE1E0645EC0AF447FEC1E1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.5724612879999, 50.208558632000077 ], [ -121.572488684999911, 50.208278009000033 ], [ -121.570835549999984, 50.208211589000072 ], [ -121.571185957999944, 50.204623422000061 ], [ -121.571195040999953, 50.20462378700006 ], [ -121.571195565999943, 50.204618425000021 ], [ -121.571811668999914, 50.204604226000093 ], [ -121.571809831999943, 50.204590200000077 ], [ -121.573865969999986, 50.204526837000095 ], [ -121.57503101499999, 50.204486392000057 ], [ -121.574494257999987, 50.203918126000097 ], [ -121.5757082639999, 50.20327009300005 ], [ -121.575985244, 50.202508496000064 ], [ -121.576059774999948, 50.202353120000112 ], [ -121.57392035, 50.202385959000033 ], [ -121.573775948999952, 50.199490714000078 ], [ -121.573426599999948, 50.199526345000073 ], [ -121.573309407999972, 50.198593856000087 ], [ -121.573249940999972, 50.198120397000096 ], [ -121.573235288999967, 50.19797407100009 ], [ -121.573206047, 50.197682294000067 ], [ -121.574598892999916, 50.197674453000126 ], [ -121.57457732599994, 50.197895515000035 ], [ -121.576524719999938, 50.19797370800007 ], [ -121.577469215999983, 50.198011620000123 ], [ -121.577119355999926, 50.201599837000046 ], [ -121.576174785999953, 50.201561923000064 ], [ -121.575813399999973, 50.201547416000018 ], [ -121.575784540999948, 50.201843291000067 ], [ -121.576145927999974, 50.201857799000081 ], [ -121.577673678999957, 50.201919118000042 ], [ -121.577693271999976, 50.201259847000102 ], [ -121.579374193999982, 50.201280417000127 ], [ -121.579406220999942, 50.200201500000041 ], [ -121.58066688299995, 50.200216910000073 ], [ -121.58063488599997, 50.201295827000088 ], [ -121.581055116999948, 50.201300961000101 ], [ -121.58100713099995, 50.202919338000129 ], [ -121.580586884999974, 50.202914202000102 ], [ -121.58056288399996, 50.20372339000005 ], [ -121.58014263099993, 50.203718255000084 ], [ -121.580133002999929, 50.204042732000076 ], [ -121.580734291999974, 50.204066846000075 ], [ -121.580537753999977, 50.206083837000037 ], [ -121.580316903999972, 50.206633390000036 ], [ -121.579933176999987, 50.207240095000039 ], [ -121.579828882999948, 50.20763275900007 ], [ -121.578173754999966, 50.207566367000048 ], [ -121.57805510899999, 50.208783197000074 ], [ -121.57548045, 50.208679873000051 ], [ -121.575168956999974, 50.208667368000114 ], [ -121.5724612879999, 50.208558632000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998948297873537", "sL_AssetLoss": "177.807", "sL_BldgLoss": "177.62", "sL_StrLoss": "176", "sL_NStrLoss": "1.62", "sL_ContLoss": "0.187", "geom_point": "0101000020E610000087430456ED645EC0DD7B76C8E61B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.576371328999983, 50.217433261000053 ], [ -121.577632443999931, 50.217448708000084 ], [ -121.577600359999906, 50.218527621000128 ], [ -121.576339213999987, 50.218512174000082 ], [ -121.576371328999983, 50.217433261000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41065667", "BldgCostT": "28111667", "sL_LossRatio": "0.957243092638512", "sL_AssetLoss": "11810.045", "sL_BldgLoss": "11305.084", "sL_StrLoss": "11011.124", "sL_NStrLoss": "293.96", "sL_ContLoss": "504.961", "geom_point": "0101000020E610000025706FA702655EC059988DE7161D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.580420095999926, 50.234398192000128 ], [ -121.580376904, 50.23438967900006 ], [ -121.580232720999931, 50.234519301 ], [ -121.580087582000019, 50.234466576000059 ], [ -121.579964407999924, 50.234634833000037 ], [ -121.579958441999935, 50.234643005000102 ], [ -121.579856503999963, 50.234782282000047 ], [ -121.578686650999913, 50.23466224900001 ], [ -121.578695474999932, 50.23464046400008 ], [ -121.576726070999911, 50.234649119000053 ], [ -121.575986133999947, 50.234652287000067 ], [ -121.576019241, 50.234313110000116 ], [ -121.57634759099993, 50.234326281000101 ], [ -121.576412862999959, 50.233657518000093 ], [ -121.576858892999951, 50.233675408000053 ], [ -121.576883355999954, 50.233424728000017 ], [ -121.577156802999951, 50.233435695 ], [ -121.57716700499995, 50.23309292200004 ], [ -121.577194984999949, 50.23309326400004 ], [ -121.577202364999977, 50.233017635000081 ], [ -121.577390019999925, 50.233025161000072 ], [ -121.577416972999956, 50.232748940000107 ], [ -121.577458894999936, 50.232750621000022 ], [ -121.577537614999969, 50.231943840000078 ], [ -121.577812631999947, 50.23195486900007 ], [ -121.577865230999947, 50.23141574700005 ], [ -121.578057989999976, 50.231423477000149 ], [ -121.578099617999953, 50.230023875000036 ], [ -121.574666272999977, 50.229886145000066 ], [ -121.57467183299994, 50.229829189000021 ], [ -121.573960154999938, 50.22980062600007 ], [ -121.57409968099995, 50.228371649000024 ], [ -121.573560515999958, 50.228350007000103 ], [ -121.56973850299994, 50.228196515000029 ], [ -121.569916653999925, 50.226373631000051 ], [ -121.570089150999948, 50.224608445000086 ], [ -121.570488270999988, 50.224624480000109 ], [ -121.570735668999959, 50.222092354000054 ], [ -121.5722392, 50.222152747000059 ], [ -121.572256511999981, 50.221975490000027 ], [ -121.573710979999973, 50.222033892000077 ], [ -121.573720403999985, 50.221717968000121 ], [ -121.574140810999893, 50.221723128000065 ], [ -121.574156895999948, 50.221183674000081 ], [ -121.574260072999934, 50.221184939000054 ], [ -121.57438438399997, 50.221186465000059 ], [ -121.5745033809999, 50.221187925000052 ], [ -121.57455999299999, 50.2206079420001 ], [ -121.575054409999964, 50.220627786000101 ], [ -121.579309154999947, 50.22079847300008 ], [ -121.579397587999964, 50.221076294000042 ], [ -121.579499608999981, 50.221401003000103 ], [ -121.57975711399996, 50.22166450200011 ], [ -121.580063788999936, 50.221771173 ], [ -121.580008854999988, 50.222334652000029 ], [ -121.580010532999935, 50.222334672000059 ], [ -121.579994460999941, 50.222875915000046 ], [ -121.580901718999982, 50.222912282000067 ], [ -121.580878083999934, 50.223154751000102 ], [ -121.581668196999942, 50.223164399000083 ], [ -121.581676196999979, 50.222894671000063 ], [ -121.58245627399999, 50.222904192000087 ], [ -121.582880905999971, 50.223187005000113 ], [ -121.583337590999975, 50.223600121000096 ], [ -121.583333909999965, 50.223724376000078 ], [ -121.583476876999967, 50.223726119000062 ], [ -121.583747194999916, 50.223970642000097 ], [ -121.583738360999973, 50.224268959000014 ], [ -121.583961261999903, 50.224271675000047 ], [ -121.584383616999901, 50.224950192000044 ], [ -121.584575294999979, 50.226049705000044 ], [ -121.584570706999926, 50.226437709000045 ], [ -121.584515351999954, 50.226437035000075 ], [ -121.584498855999954, 50.226994212000044 ], [ -121.584402575999945, 50.227163396000087 ], [ -121.584115886999939, 50.22736709800013 ], [ -121.58406749399991, 50.227609203000036 ], [ -121.584649387999917, 50.229271207000096 ], [ -121.584922713999958, 50.230947507000081 ], [ -121.5848022, 50.231206711000091 ], [ -121.584561510999919, 50.232264896000046 ], [ -121.583881484999935, 50.23339000600005 ], [ -121.583392720999882, 50.233824399000071 ], [ -121.58276509, 50.234194700000046 ], [ -121.582586093999936, 50.234570708000078 ], [ -121.581345890999941, 50.235732912000046 ], [ -121.580905636999944, 50.235963422000061 ], [ -121.580813135999961, 50.235832494000086 ], [ -121.580734068999973, 50.235548365000042 ], [ -121.580734165999914, 50.235230475000051 ], [ -121.580782969999944, 50.235097318000079 ], [ -121.580667524999953, 50.234951373000115 ], [ -121.580400351, 50.234897376000049 ], [ -121.580760167999955, 50.234465076000049 ], [ -121.580420095999926, 50.234398192000128 ] ], [ [ -121.579098886999944, 50.226262556000023 ], [ -121.57900671499999, 50.225954508000079 ], [ -121.577261831999976, 50.22595690200005 ], [ -121.577315991999953, 50.22613679300008 ], [ -121.577338682999979, 50.226191268000072 ], [ -121.577211496999951, 50.226176411000061 ], [ -121.57634101399999, 50.226168550000097 ], [ -121.574689011999908, 50.226153592000109 ], [ -121.574118105, 50.226012588000067 ], [ -121.573685045999937, 50.225969923000058 ], [ -121.573279809999988, 50.225929989000043 ], [ -121.572079886999958, 50.225879083000081 ], [ -121.572065997999914, 50.226179266000038 ], [ -121.572051571999978, 50.226490981000111 ], [ -121.572051864999978, 50.226526085000046 ], [ -121.575190537999973, 50.226593895000057 ], [ -121.57529361, 50.228379889000038 ], [ -121.575286362999975, 50.22872081900001 ], [ -121.57873419400002, 50.229766864000048 ], [ -121.57926287399999, 50.229927279000066 ], [ -121.579528160999942, 50.230007743000115 ], [ -121.579527721999966, 50.229989881000137 ], [ -121.57977166699996, 50.230151784000071 ], [ -121.57945096499999, 50.229494993000117 ], [ -121.579174126999973, 50.226953148000085 ], [ -121.579128515999912, 50.226534314000091 ], [ -121.579124123, 50.226493946000055 ], [ -121.579113747999969, 50.226398695000086 ], [ -121.579098886999944, 50.226262556000023 ] ], [ [ -121.582003615999966, 50.226036114000067 ], [ -121.582010568999962, 50.225801646000043 ], [ -121.581987779999906, 50.226035480000078 ], [ -121.582003615999966, 50.226036114000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19016750", "BldgCostT": "13115000", "sL_LossRatio": "0.998764849042441", "sL_AssetLoss": "4893.329", "sL_BldgLoss": "4887.285", "sL_StrLoss": "4821.235", "sL_NStrLoss": "66.05", "sL_ContLoss": "6.044", "geom_point": "0101000020E6100000C125199CF5645EC091AE3EC3401E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.575986133999947, 50.234652287000067 ], [ -121.576726070999911, 50.234649119000053 ], [ -121.578695474999932, 50.23464046400008 ], [ -121.578686650999913, 50.23466224900001 ], [ -121.579856503999963, 50.234782282000047 ], [ -121.579958441999935, 50.234643005000102 ], [ -121.579964407999924, 50.234634833000037 ], [ -121.580087582000019, 50.234466576000059 ], [ -121.580232720999931, 50.234519301 ], [ -121.580376904, 50.23438967900006 ], [ -121.580420095999926, 50.234398192000128 ], [ -121.580760167999955, 50.234465076000049 ], [ -121.580400351, 50.234897376000049 ], [ -121.580667524999953, 50.234951373000115 ], [ -121.580782969999944, 50.235097318000079 ], [ -121.580734165999914, 50.235230475000051 ], [ -121.580734068999973, 50.235548365000042 ], [ -121.580813135999961, 50.235832494000086 ], [ -121.580905636999944, 50.235963422000061 ], [ -121.580589776999929, 50.236128799000049 ], [ -121.580370407999936, 50.236405084000054 ], [ -121.579039511999923, 50.237369286000032 ], [ -121.578224323999947, 50.238157073000067 ], [ -121.577567978999966, 50.238195624000106 ], [ -121.577553984999909, 50.2381964510001 ], [ -121.576529415999929, 50.238254737000084 ], [ -121.574671627000015, 50.238360424000106 ], [ -121.574390982999915, 50.238376387000095 ], [ -121.574513340999971, 50.237123381000025 ], [ -121.575011918, 50.237143386000049 ], [ -121.575216732999976, 50.235045593000095 ], [ -121.57551445499999, 50.235057538000021 ], [ -121.575552940999913, 50.234663300000115 ], [ -121.575983372999971, 50.234680567000119 ], [ -121.575986133999947, 50.234652287000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23780000", "BldgCostT": "16400000", "sL_LossRatio": "0.998805075834464", "sL_AssetLoss": "6883.282", "sL_BldgLoss": "6875.057", "sL_StrLoss": "6802", "sL_NStrLoss": "73.057", "sL_ContLoss": "8.225", "geom_point": "0101000020E610000032C6C9F5DD655EC03B502B75DE204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.594021470999934, 50.260910390000085 ], [ -121.593215729999926, 50.259629885000038 ], [ -121.591536214999962, 50.259742094000096 ], [ -121.589207354999985, 50.260554943000074 ], [ -121.589458536, 50.257975333000054 ], [ -121.588861459999976, 50.257951467000098 ], [ -121.588972437999956, 50.256811790000036 ], [ -121.587332681999911, 50.256746227000072 ], [ -121.587682159999957, 50.253158233000079 ], [ -121.588942391999964, 50.253208624000102 ], [ -121.59328155599998, 50.253382014000067 ], [ -121.59317069599993, 50.254521701000094 ], [ -121.594810377999977, 50.254587177000133 ], [ -121.594727931999927, 50.255435019000053 ], [ -121.595385314999987, 50.255461263000022 ], [ -121.595232493999958, 50.25703297700008 ], [ -121.59530492099999, 50.257035868000102 ], [ -121.59516404299994, 50.258484671000083 ], [ -121.595422012999947, 50.258494968000051 ], [ -121.595152381999966, 50.261267771000085 ], [ -121.595073105999973, 50.262082962000086 ], [ -121.594947830999942, 50.262077962000042 ], [ -121.594922178999951, 50.262341711000019 ], [ -121.594021470999934, 50.260910390000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "0.998865627484406", "sL_AssetLoss": "1264.135", "sL_BldgLoss": "1262.701", "sL_StrLoss": "1252", "sL_NStrLoss": "10.701", "sL_ContLoss": "1.434", "geom_point": "0101000020E6100000BD6E95500F695EC0D4E5FF1B1C254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.64525249499998, 50.29461691400008 ], [ -121.645260156999939, 50.294347181000099 ], [ -121.644839094999895, 50.294342273000034 ], [ -121.644862083999925, 50.293533076000038 ], [ -121.645283136999964, 50.293537984000118 ], [ -121.645290798999952, 50.293268252000132 ], [ -121.644869745999941, 50.293263344000067 ], [ -121.644900395999954, 50.29218441400014 ], [ -121.642795187000019, 50.292159852000054 ], [ -121.642802858999929, 50.291890119000101 ], [ -121.641960781999956, 50.291880284000065 ], [ -121.641974159999918, 50.291410399000029 ], [ -121.637260773999984, 50.291224297000099 ], [ -121.637355918999972, 50.290237121000075 ], [ -121.636902026, 50.290219189000062 ], [ -121.637247838999912, 50.286631194000094 ], [ -121.640734616999922, 50.286768899000045 ], [ -121.642851612999948, 50.286852453000023 ], [ -121.642756594999952, 50.287839637000047 ], [ -121.64321046500001, 50.287857546000041 ], [ -121.643055784999888, 50.28946467600008 ], [ -121.644134976999936, 50.289477271000102 ], [ -121.644127311, 50.28974700300008 ], [ -121.644969351999976, 50.289756822000058 ], [ -121.644961689999931, 50.290026554000093 ], [ -121.645803737999969, 50.290036369000092 ], [ -121.645786969999918, 50.290627055000058 ], [ -121.645773110999983, 50.291115299000083 ], [ -121.64619414400002, 50.291120203000105 ], [ -121.646178833999983, 50.291659668000094 ], [ -121.646599871999939, 50.291664571000091 ], [ -121.646561606999938, 50.293013235000082 ], [ -121.646982658999931, 50.293018136000128 ], [ -121.646959704999944, 50.293827334000085 ], [ -121.646538647999961, 50.293822432000127 ], [ -121.646515686999933, 50.294631630000069 ], [ -121.64565554, 50.294621610000036 ], [ -121.64525249499998, 50.29461691400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "0.997868934204656", "sL_AssetLoss": "1333.605", "sL_BldgLoss": "1330.763", "sL_StrLoss": "1304.343", "sL_NStrLoss": "26.42", "sL_ContLoss": "2.842", "geom_point": "0101000020E61000007FF9A6E142685EC019B67FC8CF234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.63165920199999, 50.283934622000103 ], [ -121.631666936999977, 50.283664891000114 ], [ -121.631245970999942, 50.283659934000077 ], [ -121.631261445999939, 50.283120472000043 ], [ -121.630840485999983, 50.283115514000066 ], [ -121.630855988999954, 50.282575168000044 ], [ -121.62642465, 50.282399725000076 ], [ -121.626635018999963, 50.280221951000065 ], [ -121.625149450999956, 50.280163095000098 ], [ -121.625341006999989, 50.278180544000058 ], [ -121.625496116999926, 50.27657508900004 ], [ -121.631098589999951, 50.276796948 ], [ -121.630973759999918, 50.278090667000114 ], [ -121.63254942399999, 50.278153012000082 ], [ -121.632203304000015, 50.28174103200007 ], [ -121.632113139999959, 50.281737465000049 ], [ -121.632056904, 50.282320370000043 ], [ -121.632547513999967, 50.282326143000077 ], [ -121.632524325999952, 50.283135338000108 ], [ -121.632945285999966, 50.28314028900013 ], [ -121.632922102999913, 50.28394948400009 ], [ -121.632487569999952, 50.283944372000065 ], [ -121.63165920199999, 50.283934622000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.995840606083114", "sL_AssetLoss": "269.27", "sL_BldgLoss": "268.15", "sL_StrLoss": "259", "sL_NStrLoss": "9.15", "sL_ContLoss": "1.12", "geom_point": "0101000020E6100000595C90EBAE675EC09D40BF8C35234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.619340899999926, 50.274704998000061 ], [ -121.623989789999925, 50.274511628000063 ], [ -121.62394646499996, 50.274959945000099 ], [ -121.622147741999925, 50.274888626000099 ], [ -121.622074925, 50.275641787000033 ], [ -121.619665427999976, 50.275546206000101 ], [ -121.616472637999919, 50.27541947100012 ], [ -121.616526704999941, 50.274860974000021 ], [ -121.619340899999926, 50.274704998000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998348508542449", "sL_AssetLoss": "205.269", "sL_BldgLoss": "204.93", "sL_StrLoss": "202", "sL_NStrLoss": "2.93", "sL_ContLoss": "0.339", "geom_point": "0101000020E61000002EF4F36CB7635EC0B4DB36A59F0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.555297904999946, 50.106707594000113 ], [ -121.555331672999927, 50.106362230000101 ], [ -121.554521019999953, 50.106329458000054 ], [ -121.554508214999885, 50.106064016000047 ], [ -121.558757248999939, 50.106059832000014 ], [ -121.56096038799997, 50.106100865 ], [ -121.560879122999893, 50.106933060000081 ], [ -121.559812260999976, 50.106889984000084 ], [ -121.555297904999946, 50.106707594000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724167", "BldgCostT": "6016667", "sL_LossRatio": "0.998584654444112", "sL_AssetLoss": "2741.38", "sL_BldgLoss": "2737.5", "sL_StrLoss": "2703", "sL_NStrLoss": "34.5", "sL_ContLoss": "3.88", "geom_point": "0101000020E61000009F294BDFF1635EC0F4BCE15F800E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.558264461, 50.118265849000096 ], [ -121.558392110999989, 50.116959755000046 ], [ -121.55861364499998, 50.114692884000078 ], [ -121.556571936999958, 50.114610410000104 ], [ -121.556874533999974, 50.111515091000079 ], [ -121.556531138999929, 50.111501216000136 ], [ -121.556881929999946, 50.107912640000059 ], [ -121.560810287999956, 50.108071304000084 ], [ -121.562463303999948, 50.108138026000098 ], [ -121.562318647999973, 50.10961977300007 ], [ -121.564579179999967, 50.109710976000038 ], [ -121.565591286999961, 50.111086097000104 ], [ -121.565778810999959, 50.111781103000027 ], [ -121.565893548999966, 50.11181459800008 ], [ -121.566388412999956, 50.111959089000131 ], [ -121.566529629999977, 50.112231571000081 ], [ -121.566411463999927, 50.113442977000076 ], [ -121.567320304999939, 50.113479613000095 ], [ -121.567584703999955, 50.114123894000052 ], [ -121.567586330999987, 50.114209623000129 ], [ -121.567590183999982, 50.114411523000079 ], [ -121.567413792999901, 50.116220252000126 ], [ -121.567274590999943, 50.116485198000071 ], [ -121.567041129999978, 50.11668890800005 ], [ -121.566622533, 50.117054179000021 ], [ -121.566336102000022, 50.117042632000071 ], [ -121.566300906999913, 50.117403397000054 ], [ -121.565717416000027, 50.118040491000102 ], [ -121.565377599999977, 50.118224207 ], [ -121.565038607, 50.118283993000034 ], [ -121.564662007999942, 50.118305386000031 ], [ -121.564258407999887, 50.118219897000074 ], [ -121.563963013, 50.118269793000167 ], [ -121.563880643999951, 50.118344462000053 ], [ -121.563861506999984, 50.118343691000057 ], [ -121.563859565999948, 50.118363570000028 ], [ -121.563724281999924, 50.118486207000075 ], [ -121.559984466999964, 50.118335297000073 ], [ -121.559726573999953, 50.118324886000096 ], [ -121.558518545999988, 50.118276109000114 ], [ -121.558264461, 50.118265849000096 ] ], [ [ -121.564132764999982, 50.114540204000043 ], [ -121.564301533000034, 50.114003773000036 ], [ -121.564449156999942, 50.11401513800012 ], [ -121.56449379799993, 50.113899712000027 ], [ -121.563414519999981, 50.113754070000084 ], [ -121.56246236, 50.113625534000064 ], [ -121.561613506999947, 50.116155172000056 ], [ -121.561350782999909, 50.116938013000073 ], [ -121.562387408999939, 50.116941374000092 ], [ -121.564132764999982, 50.114540204000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12283917", "BldgCostT": "8471667", "sL_LossRatio": "0.998175661297979", "sL_AssetLoss": "4032.146", "sL_BldgLoss": "4024.79", "sL_StrLoss": "3960.29", "sL_NStrLoss": "64.5", "sL_ContLoss": "7.356", "geom_point": "0101000020E6100000F53D6EE87B645EC00C4E8E4C51114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.568033287999967, 50.138740066000025 ], [ -121.568089697999966, 50.138161891000067 ], [ -121.567996415999971, 50.138158134000072 ], [ -121.567898719999931, 50.135796877000118 ], [ -121.567895822999944, 50.135757429000108 ], [ -121.566568754999977, 50.135602744000053 ], [ -121.56673124299995, 50.133937730000092 ], [ -121.566676733999913, 50.133937057000082 ], [ -121.566719783999929, 50.132496103000044 ], [ -121.566725084999916, 50.13231867100005 ], [ -121.566450146999927, 50.13231527700006 ], [ -121.566305461999931, 50.132313491000055 ], [ -121.566307771999959, 50.132236208000059 ], [ -121.566313522999977, 50.132043760000094 ], [ -121.565912333999961, 50.132038806000068 ], [ -121.564635037999949, 50.132023023000059 ], [ -121.564643106999952, 50.131753292 ], [ -121.56448410299997, 50.131751326000035 ], [ -121.564465887999972, 50.131503035000023 ], [ -121.564346298999936, 50.130670301000116 ], [ -121.564675387999941, 50.13067436900014 ], [ -121.564667317999948, 50.130944099000025 ], [ -121.565506540999948, 50.130954472000049 ], [ -121.565498474999941, 50.131224201000087 ], [ -121.567176932999985, 50.131244927000068 ], [ -121.567168876999986, 50.131514658000071 ], [ -121.56842772899999, 50.131530186000141 ], [ -121.568419680999966, 50.131799917000073 ], [ -121.569258919999982, 50.131810261000041 ], [ -121.569250875999984, 50.132079992000115 ], [ -121.569670497999965, 50.132085163000028 ], [ -121.56966245699999, 50.132354894000102 ], [ -121.570501705999931, 50.132365230000133 ], [ -121.570493668999944, 50.132634961000129 ], [ -121.570913295999944, 50.13264012700008 ], [ -121.570905261999911, 50.132909858000097 ], [ -121.571744520999971, 50.13292018500011 ], [ -121.571740387999967, 50.133059019000115 ], [ -121.57246235099997, 50.133088072000078 ], [ -121.573029874999975, 50.133649068000054 ], [ -121.573099792999969, 50.133718188000039 ], [ -121.573340906999945, 50.134521407000122 ], [ -121.573627410999961, 50.1347862900001 ], [ -121.574014791999915, 50.136212248000106 ], [ -121.574257317999937, 50.137104901000086 ], [ -121.574089715999932, 50.137570704999987 ], [ -121.574265582999914, 50.138742736000069 ], [ -121.573642586999966, 50.138717678000141 ], [ -121.573618498999977, 50.138964878000088 ], [ -121.571919206999965, 50.138896509000055 ], [ -121.568033287999967, 50.138740066000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.7", "sL_BldgLoss": "36.7", "sL_StrLoss": "36.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B91A766B5B0C5EC0AE179EF2C3A34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.190454651, 51.277480922000088 ], [ -120.196175325999931, 51.277775118000051 ], [ -120.195718453999945, 51.281253055000072 ], [ -120.195705225999987, 51.281353740000036 ], [ -120.195627266, 51.28134973300007 ], [ -120.189984091999975, 51.281059522000056 ], [ -120.190454651, 51.277480922000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "82.2", "sL_BldgLoss": "82.2", "sL_StrLoss": "82.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007E72B1F50E0A5EC09CE2CC0A209B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.154650164999978, 51.2139957710001 ], [ -120.154773957999907, 51.213058625 ], [ -120.153468983, 51.212990956000056 ], [ -120.154038300999929, 51.211542701000049 ], [ -120.15388432099995, 51.209409274000038 ], [ -120.156986968999945, 51.209570138000061 ], [ -120.158711758999956, 51.209659525000035 ], [ -120.158588058999896, 51.21059667900002 ], [ -120.160834654999988, 51.210713069000072 ], [ -120.160362412999973, 51.214291796000069 ], [ -120.159925358999928, 51.214269157000061 ], [ -120.154650164999978, 51.2139957710001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "91.5", "sL_BldgLoss": "91.5", "sL_StrLoss": "91.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000540B78DB7D145EC0ABD148D78ECA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.317150789999985, 51.584378598000107 ], [ -120.317213915999943, 51.583891281 ], [ -120.316988018999922, 51.58387999400005 ], [ -120.317451486, 51.580301961000025 ], [ -120.323212394999985, 51.580589647000053 ], [ -120.32314933899994, 51.581076970000098 ], [ -120.323375223999903, 51.581088244000064 ], [ -120.322912230999975, 51.584666299000048 ], [ -120.317150789999985, 51.584378598000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "105.5", "sL_BldgLoss": "105.5", "sL_StrLoss": "105.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9F85FD7840B5EC00424D4EB1AA44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.17898370599994, 51.285023815000059 ], [ -120.179035065999926, 51.284634024000091 ], [ -120.178262575999938, 51.284594203000019 ], [ -120.176539250999923, 51.284505349000021 ], [ -120.17672867200001, 51.283068339000096 ], [ -120.176141138999952, 51.283038040000108 ], [ -120.176253958999936, 51.282182192000036 ], [ -120.175286970999949, 51.282132317000048 ], [ -120.175758730999988, 51.278553784000053 ], [ -120.178155720999925, 51.278677399000088 ], [ -120.181479446999944, 51.278848722000056 ], [ -120.181366737, 51.279704578000057 ], [ -120.182333676999988, 51.279754401000076 ], [ -120.182144452999978, 51.281191424000077 ], [ -120.182731964999974, 51.28122169200001 ], [ -120.182680641, 51.281611486 ], [ -120.185176311999967, 51.28174002600008 ], [ -120.184705278999971, 51.285318588000088 ], [ -120.17898370599994, 51.285023815000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "74.8", "sL_BldgLoss": "74.8", "sL_StrLoss": "74.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7CE82D4560E5EC0F2638A4179C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.221559525999936, 51.529131974000023 ], [ -120.221623234999953, 51.528647693000075 ], [ -120.220159813999913, 51.528573238000043 ], [ -120.220630567999962, 51.524995409000049 ], [ -120.22189230099994, 51.525059605000088 ], [ -120.221904411999972, 51.524967538000055 ], [ -120.227657450999956, 51.525260070000073 ], [ -120.227581713999925, 51.52583642200004 ], [ -120.227783287999955, 51.525846666000064 ], [ -120.22731310599994, 51.529424522000028 ], [ -120.221559525999936, 51.529131974000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "124.9", "sL_BldgLoss": "124.9", "sL_StrLoss": "124.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EFE714E4670B5EC026416E756FAB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.177332599999929, 51.341635699000093 ], [ -120.175955285999947, 51.339516506000052 ], [ -120.175614, 51.339220309000041 ], [ -120.17514948499999, 51.339289991000115 ], [ -120.174808101999986, 51.339245898000073 ], [ -120.174300291999913, 51.338163511000097 ], [ -120.173960603999916, 51.338065199000013 ], [ -120.173714600999944, 51.337420088000037 ], [ -120.173677504999944, 51.336367588000023 ], [ -120.173686196999967, 51.336076896000073 ], [ -120.17374343099999, 51.335643451000081 ], [ -120.175618126999936, 51.335740039000015 ], [ -120.179471518999904, 51.335938474000045 ], [ -120.179313325999914, 51.337137648000081 ], [ -120.180760558999978, 51.337212141000087 ], [ -120.180407874999972, 51.339886078000113 ], [ -120.182328393999938, 51.339984902000047 ], [ -120.181856511999982, 51.343563236000087 ], [ -120.178596526999954, 51.343395468000018 ], [ -120.178148381999975, 51.343372398000042 ], [ -120.1781241899999, 51.342995812000048 ], [ -120.177784785999947, 51.342428995000056 ], [ -120.177418492999948, 51.342097188000125 ], [ -120.177332599999929, 51.341635699000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "81.9", "sL_BldgLoss": "81.9", "sL_StrLoss": "81.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000078149D1B09085EC0390F27301D914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.124317864999966, 51.136534320000116 ], [ -120.12411071899993, 51.135560102000085 ], [ -120.124084249999939, 51.135435686000136 ], [ -120.124050321999931, 51.13527618100003 ], [ -120.124025829999965, 51.135160947 ], [ -120.124003373999983, 51.135038166000115 ], [ -120.12391370499995, 51.134653284000059 ], [ -120.123744850999955, 51.133763206 ], [ -120.123664427999984, 51.133339355000025 ], [ -120.123431891999985, 51.132170450000032 ], [ -120.123202050999964, 51.131030326000051 ], [ -120.123094482999974, 51.130496747000109 ], [ -120.123063879999975, 51.130344879000077 ], [ -120.12304867899995, 51.130271008000108 ], [ -120.122597416999952, 51.128080202000049 ], [ -120.122981402999955, 51.128100260000025 ], [ -120.12290129499999, 51.128704629000012 ], [ -120.123043543999941, 51.128712060000097 ], [ -120.123008406999958, 51.12897714500015 ], [ -120.124066928999952, 51.129032432000052 ], [ -120.124039816999968, 51.129237003000064 ], [ -120.12509690899999, 51.129292204000144 ], [ -120.124940076999934, 51.130475775000022 ], [ -120.125333182999952, 51.130496301000115 ], [ -120.125258018999929, 51.131063555000082 ], [ -120.125482918000017, 51.131075297000045 ], [ -120.125413102999943, 51.131602202000096 ], [ -120.125637049999952, 51.131613894000076 ], [ -120.125560232999987, 51.132193647000086 ], [ -120.125746885999945, 51.132203392000079 ], [ -120.125729505999956, 51.132334572000104 ], [ -120.127782522999922, 51.132441735000079 ], [ -120.127794396999931, 51.132511914000126 ], [ -120.128101106999949, 51.132879401000118 ], [ -120.128388807999912, 51.13354310500003 ], [ -120.128446846999921, 51.134366787000026 ], [ -120.128503114999916, 51.135165201000106 ], [ -120.128522608999987, 51.135654587000076 ], [ -120.12856174599996, 51.136637414000113 ], [ -120.126329499999912, 51.136339467000035 ], [ -120.12632439599993, 51.13713510200008 ], [ -120.126909234999985, 51.137561288 ], [ -120.126324308999955, 51.137567886000092 ], [ -120.12529858799995, 51.137730190000156 ], [ -120.124542297999966, 51.138043725000095 ], [ -120.124523631999963, 51.137610401000089 ], [ -120.124411342, 51.136973904000101 ], [ -120.124317864999966, 51.136534320000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "1", "sL_AssetLoss": "169", "sL_BldgLoss": "169", "sL_StrLoss": "169", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000415984A4470F5EC0D74FFF5973BD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.236108593999916, 51.478147778000036 ], [ -120.241855616, 51.478439605000091 ], [ -120.241387083999882, 51.482017686000049 ], [ -120.235639598, 51.481725836000102 ], [ -120.236108593999916, 51.478147778000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "37.1", "sL_BldgLoss": "37.1", "sL_StrLoss": "37.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013E04777880C5EC0F6076FB4089E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.193206582999935, 51.232704196000029 ], [ -120.198921498999965, 51.232998266000081 ], [ -120.198452093999961, 51.236577067000013 ], [ -120.192736721999935, 51.236282974000076 ], [ -120.193206582999935, 51.232704196000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "90.2", "sL_BldgLoss": "90.2", "sL_StrLoss": "90.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F3AF08396205EC099CFA03ED5BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.503184483999945, 51.461977069000042 ], [ -120.503253760999939, 51.461422482000017 ], [ -120.503382881, 51.461438793000035 ], [ -120.503819686999989, 51.461366105000096 ], [ -120.504902386999973, 51.460508792000041 ], [ -120.505506700999931, 51.460242407000059 ], [ -120.506369292999977, 51.460000299000065 ], [ -120.507858110999976, 51.459096004000052 ], [ -120.509746105999952, 51.457490903000043 ], [ -120.511855907000012, 51.455993360000036 ], [ -120.513230404999931, 51.456059863000114 ], [ -120.512784135999979, 51.459639115000108 ], [ -120.5121206, 51.459607013000067 ], [ -120.51207092599999, 51.46000533100014 ], [ -120.511634465999975, 51.459984213000034 ], [ -120.511582527999977, 51.460400642000138 ], [ -120.511269773, 51.460385509000112 ], [ -120.511213937999955, 51.460833150000049 ], [ -120.51071780699999, 51.46080914100002 ], [ -120.510672333999963, 51.461173662000114 ], [ -120.509598465999929, 51.461121688000055 ], [ -120.50949533, 51.461948288000094 ], [ -120.508972605999986, 51.461922985000044 ], [ -120.508931124999975, 51.462255400000089 ], [ -120.503184483999945, 51.461977069000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E189E8F190D5EC0A27984C320A34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.206086527999958, 51.272707906000058 ], [ -120.207779847999973, 51.272794792000091 ], [ -120.207310737999961, 51.2763734810001 ], [ -120.204875323999943, 51.276248508000045 ], [ -120.201590169999946, 51.276079848000037 ], [ -120.20205973799996, 51.272501182000042 ], [ -120.206086527999958, 51.272707906000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.9", "sL_BldgLoss": "42.9", "sL_StrLoss": "42.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D91C8C7DEE075EC0A406AAB1CA8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.123485838999969, 51.121839162000093 ], [ -120.125871670999985, 51.121963770000036 ], [ -120.12571011199999, 51.123183436000055 ], [ -120.125191930999989, 51.123495945000066 ], [ -120.12449871599992, 51.123913995000088 ], [ -120.12393558399998, 51.12445659100004 ], [ -120.123392311999979, 51.125163005000054 ], [ -120.123267955999964, 51.125431467000055 ], [ -120.122295646999987, 51.125380672000048 ], [ -120.122306804999965, 51.12491604700007 ], [ -120.12245715099999, 51.124337425000128 ], [ -120.122672907, 51.123507212000085 ], [ -120.122729374999949, 51.123369655000126 ], [ -120.122854163999961, 51.123065768000103 ], [ -120.123069107999967, 51.122542289000123 ], [ -120.123273644999955, 51.122157474000041 ], [ -120.12332348, 51.122082754000125 ], [ -120.123485838999969, 51.121839162000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "174.8", "sL_BldgLoss": "174.8", "sL_StrLoss": "174.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B8505F7C31E5EC078D64DADE7984940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.478321765999922, 51.192616677000039 ], [ -120.478364949999929, 51.192270344000093 ], [ -120.478478187999883, 51.192275892000112 ], [ -120.478524663999977, 51.191903147000104 ], [ -120.484236167999924, 51.192182803000016 ], [ -120.484166287999983, 51.192743836000069 ], [ -120.484661993, 51.192768094000087 ], [ -120.484216065999959, 51.196348204000088 ], [ -120.483942618999933, 51.196334823000043 ], [ -120.483893474999931, 51.196729311000112 ], [ -120.483521142999962, 51.196711090000086 ], [ -120.483484473999965, 51.197005420000039 ], [ -120.482343455999981, 51.196949573000069 ], [ -120.48232503, 51.197097446000051 ], [ -120.476612905, 51.196817695000114 ], [ -120.47705944899991, 51.193237615000044 ], [ -120.47747101499999, 51.193257782000082 ], [ -120.477504243999931, 51.192991326000069 ], [ -120.477957246999949, 51.193013521000111 ], [ -120.478008645, 51.192601337000106 ], [ -120.478321765999922, 51.192616677000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.4", "sL_BldgLoss": "39.4", "sL_StrLoss": "39.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B0788D5E10B5EC09C4BB371ABAC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.18302984599994, 51.347045590000022 ], [ -120.188759472999919, 51.34734013900006 ], [ -120.188288029999939, 51.350918473000021 ], [ -120.184282927999973, 51.350712610000109 ], [ -120.182557942999921, 51.350623901000098 ], [ -120.182854123999945, 51.348378114000106 ], [ -120.18302984599994, 51.347045590000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "142", "sL_BldgLoss": "142", "sL_StrLoss": "142", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B23574162A0E5EC0EB747BA41CBA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.218055398, 51.456840897000042 ], [ -120.218212996999938, 51.455641567000065 ], [ -120.2126398, 51.455357250000098 ], [ -120.213110381999925, 51.451779193000036 ], [ -120.215010502999959, 51.451876160000033 ], [ -120.216087845999965, 51.45193112400009 ], [ -120.21885381499996, 51.452072191000099 ], [ -120.21869624499999, 51.453271525000083 ], [ -120.224072167999921, 51.453545507000037 ], [ -120.22438532399994, 51.451159654000072 ], [ -120.230128750999924, 51.451452081000113 ], [ -120.229659554999955, 51.455030210000075 ], [ -120.22474990399995, 51.454780253000052 ], [ -120.224112720000022, 51.454747798000014 ], [ -120.22379952299994, 51.457133642000024 ], [ -120.218055398, 51.456840897000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73.4", "sL_BldgLoss": "73.4", "sL_StrLoss": "73.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F40EE0C234085EC01C1B68DB3C8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.128927872999967, 51.116191318000112 ], [ -120.12967587299994, 51.115744878000079 ], [ -120.131514135999979, 51.115840805000111 ], [ -120.131452854999935, 51.116303950000066 ], [ -120.131591866999884, 51.116311203000059 ], [ -120.131328829, 51.118299069000038 ], [ -120.13119748299998, 51.118437894000095 ], [ -120.130682614999955, 51.119370702000019 ], [ -120.129947588999926, 51.120179715000084 ], [ -120.12993379699995, 51.120190500000042 ], [ -120.12939049199997, 51.120615512000022 ], [ -120.128053485999914, 51.121437293 ], [ -120.127634582, 51.121901311000066 ], [ -120.123585349999956, 51.121689857000035 ], [ -120.123730338999906, 51.121472318000031 ], [ -120.123847869999977, 51.121343183000093 ], [ -120.124450334999977, 51.120681395000084 ], [ -120.124580366999979, 51.120538568000057 ], [ -120.124732805999926, 51.120371111000075 ], [ -120.124889052999933, 51.12019947600001 ], [ -120.125022316999974, 51.120057912000036 ], [ -120.127395987999989, 51.117536779000069 ], [ -120.127882766999946, 51.117019677000044 ], [ -120.128322570999927, 51.116623703000087 ], [ -120.128927872999967, 51.116191318000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "76.5", "sL_BldgLoss": "76.5", "sL_StrLoss": "76.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004CC0F1ADF60C5EC037079D4AE59F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.200073240999984, 51.246931684000096 ], [ -120.205790036999971, 51.247225402000076 ], [ -120.205324854999901, 51.250775048000051 ], [ -120.205321035999958, 51.250804179000085 ], [ -120.205123672999932, 51.250794044000081 ], [ -120.205039260999968, 51.251438085000082 ], [ -120.20087863199997, 51.251224342000043 ], [ -120.199321926999986, 51.251144330000038 ], [ -120.199410243999978, 51.250471162000039 ], [ -120.19956823699998, 51.249266863000081 ], [ -120.19979141499999, 51.247565579000117 ], [ -120.19998876199999, 51.247575724000093 ], [ -120.200073240999984, 51.246931684000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "122.3", "sL_BldgLoss": "122.3", "sL_StrLoss": "122.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008EF5A2B0AA0A5EC037CB3C24C29A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.166414809999978, 51.210998498000109 ], [ -120.166445375999956, 51.210766611000103 ], [ -120.161655965999941, 51.210518669000109 ], [ -120.161670929999957, 51.210405242000057 ], [ -120.16080024599999, 51.21036014600007 ], [ -120.161272409999953, 51.206781402000026 ], [ -120.162535837999926, 51.206846839000036 ], [ -120.166983772999956, 51.207077095000081 ], [ -120.166968824000023, 51.207190523000101 ], [ -120.167839451999953, 51.207235571000126 ], [ -120.167808894999936, 51.207467459000028 ], [ -120.172598010999963, 51.207715141000051 ], [ -120.172126749999919, 51.211293929000092 ], [ -120.169968722999954, 51.211182347000012 ], [ -120.166414809999978, 51.210998498000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "80.1", "sL_BldgLoss": "80.1", "sL_StrLoss": "80.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000060B808C6600D5EC0DFF735B312B74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.204961203999972, 51.428859761000062 ], [ -120.205042242999937, 51.428244060000033 ], [ -120.205573684999962, 51.42827123700004 ], [ -120.205603027999942, 51.428048273000059 ], [ -120.21091392299999, 51.428319720000054 ], [ -120.211343321999962, 51.428341657000068 ], [ -120.21130674599999, 51.42861986 ], [ -120.211390841999929, 51.428624156000112 ], [ -120.211331277999975, 51.429077194000058 ], [ -120.212195446999942, 51.429121335000104 ], [ -120.211725032999965, 51.432699470000074 ], [ -120.210406897999974, 51.432632137000084 ], [ -120.210303378999967, 51.433419291000043 ], [ -120.210085585999963, 51.433101308000076 ], [ -120.209876384999987, 51.432988808000047 ], [ -120.208961207999977, 51.432642707000042 ], [ -120.208031148999936, 51.432419171000049 ], [ -120.207799486999974, 51.432363489000075 ], [ -120.207633710999986, 51.432251001000033 ], [ -120.207215912, 51.431557395000013 ], [ -120.207105203999944, 51.430989187000137 ], [ -120.205869001999986, 51.430292812000026 ], [ -120.205945023999931, 51.429503703000094 ], [ -120.205775076999927, 51.429220296000089 ], [ -120.204961203999972, 51.428859761000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.1", "sL_BldgLoss": "35.1", "sL_StrLoss": "35.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5669415600F5EC09AD024B124BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.237600940999982, 51.467934793000069 ], [ -120.24334664099996, 51.468226548000068 ], [ -120.242878338999944, 51.471804671000015 ], [ -120.237132173999967, 51.471512894000107 ], [ -120.237600940999982, 51.467934793000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "121.9", "sL_BldgLoss": "121.9", "sL_StrLoss": "121.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B8860A0D41D5EC0E3548C6F7F914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.462861026, 51.138627122000045 ], [ -120.463308094999903, 51.135046874000082 ], [ -120.463871906999955, 51.135074607000092 ], [ -120.463911384999975, 51.134758389000083 ], [ -120.464446055999986, 51.134784686000089 ], [ -120.464470370999976, 51.134589901000034 ], [ -120.470174419, 51.134870286000108 ], [ -120.470061741, 51.135773841000031 ], [ -120.469873422999953, 51.13579470300003 ], [ -120.4690632, 51.136002690000069 ], [ -120.467961506, 51.136518191000029 ], [ -120.46725290699996, 51.136656387000073 ], [ -120.466701094999905, 51.136805914000078 ], [ -120.466521191999931, 51.136963995000094 ], [ -120.466661803999969, 51.137560796000059 ], [ -120.466785718999958, 51.137644795000043 ], [ -120.46912499, 51.137713106000056 ], [ -120.469802423999965, 51.137853096000036 ], [ -120.469727906999978, 51.138450561000063 ], [ -120.46919318899991, 51.138424289000042 ], [ -120.469168891999956, 51.138619074000111 ], [ -120.468605031999985, 51.138591367000103 ], [ -120.468565582999929, 51.138907587000112 ], [ -120.462861026, 51.138627122000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "68.9", "sL_BldgLoss": "68.9", "sL_StrLoss": "68.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004AF3226E29205EC0CDD524B26EBC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.500589586999965, 51.470086814000062 ], [ -120.506337266999964, 51.470365274000123 ], [ -120.50618683299993, 51.471569963 ], [ -120.50616579499993, 51.471738428000045 ], [ -120.50589029299999, 51.473944449000065 ], [ -120.50516930699996, 51.47390953400005 ], [ -120.505147767999944, 51.474081966000021 ], [ -120.504477059999942, 51.474049482000048 ], [ -120.504462643999929, 51.474164882000096 ], [ -120.499813211999978, 51.473939595000054 ], [ -120.498714479999933, 51.473886328000042 ], [ -120.498858932999937, 51.472731194000033 ], [ -120.499162035999959, 51.470307182000091 ], [ -120.499832683, 51.47033969700005 ], [ -120.499847110999923, 51.470224297000108 ], [ -120.500568032999922, 51.470259245000051 ], [ -120.500589586999965, 51.470086814000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "1", "sL_AssetLoss": "322", "sL_BldgLoss": "322", "sL_StrLoss": "322", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0B65B370A0A5EC04920B11FDA984940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.15589851099999, 51.201080827000077 ], [ -120.156216229999956, 51.198674251000092 ], [ -120.155678976999951, 51.1986463920001 ], [ -120.155576224999919, 51.199424637000078 ], [ -120.149865924999958, 51.199128365000014 ], [ -120.150338850999972, 51.195549625000091 ], [ -120.151301581999988, 51.195599595000047 ], [ -120.151419552999982, 51.194706648000057 ], [ -120.15349382, 51.194814285000056 ], [ -120.153832792999964, 51.192247399000038 ], [ -120.153975471999942, 51.192254801000082 ], [ -120.154061983999966, 51.192259290000059 ], [ -120.155432622999967, 51.192330391000041 ], [ -120.15552605699996, 51.191622614000046 ], [ -120.155690327999977, 51.190378166000052 ], [ -120.154486820999949, 51.190315736000088 ], [ -120.153729616999925, 51.190276451000045 ], [ -120.150742181999973, 51.19012140500007 ], [ -120.150806759, 51.189632602000074 ], [ -120.150371304999922, 51.189609996000073 ], [ -120.150465384999976, 51.188897905000026 ], [ -120.15048331599999, 51.18888779499999 ], [ -120.151625702999979, 51.188449189000018 ], [ -120.152002224999976, 51.188170006000043 ], [ -120.152143821999942, 51.187705703000077 ], [ -120.152070405, 51.18683130200008 ], [ -120.152334789999941, 51.186234510000169 ], [ -120.152384419999976, 51.186111175000057 ], [ -120.156552713999929, 51.186327444000064 ], [ -120.15648820599999, 51.186816252000071 ], [ -120.156923634999927, 51.186838835000088 ], [ -120.156597963999957, 51.189306608000088 ], [ -120.15764603, 51.18936095700009 ], [ -120.157700917999961, 51.188944982000116 ], [ -120.16340996199996, 51.189240861000116 ], [ -120.163171338999959, 51.191050978000135 ], [ -120.163581292999964, 51.191060924000027 ], [ -120.163548183999964, 51.191599795000059 ], [ -120.164405742999989, 51.191620596000057 ], [ -120.1643655, 51.192275771000055 ], [ -120.16435609399997, 51.192428903000071 ], [ -120.163069732999972, 51.192397697000047 ], [ -120.163093208999939, 51.192015665000035 ], [ -120.163102848, 51.191858827000075 ], [ -120.16306495699996, 51.191857907000035 ], [ -120.16304735599999, 51.191991417000111 ], [ -120.162938155999939, 51.192819680000078 ], [ -120.16158641199999, 51.192749651000064 ], [ -120.161128956999931, 51.192725948000053 ], [ -120.161103478999976, 51.192919122000056 ], [ -120.161074094999947, 51.193141923000063 ], [ -120.160449386999971, 51.19310955100007 ], [ -120.160399060999964, 51.193927705000114 ], [ -120.161402966999944, 51.193979725000062 ], [ -120.161334468999954, 51.194499105000062 ], [ -120.161520099999962, 51.194508722000073 ], [ -120.161410437999947, 51.19534022500001 ], [ -120.161449060999942, 51.195342226000065 ], [ -120.161131649, 51.197748824000072 ], [ -120.162081106999977, 51.197798012000135 ], [ -120.16160910399995, 51.20137679300008 ], [ -120.157697478999964, 51.201174095000091 ], [ -120.15589851099999, 51.201080827000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "79.2", "sL_BldgLoss": "79.2", "sL_StrLoss": "79.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8F3D2A0EA0C5EC09D3B8FC42AA14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.198730610999974, 51.261083196000122 ], [ -120.198814796999926, 51.260441737000079 ], [ -120.198722556999925, 51.260436996000124 ], [ -120.199192191999899, 51.256858283000064 ], [ -120.200871246999952, 51.25694457400003 ], [ -120.204910262999988, 51.257152044000044 ], [ -120.204826170999951, 51.257793509000109 ], [ -120.204918406999951, 51.257798245000117 ], [ -120.204449224999934, 51.261376978000015 ], [ -120.203285655999977, 51.261317226000131 ], [ -120.198730610999974, 51.261083196000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "32", "sL_BldgLoss": "32", "sL_StrLoss": "32", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000688F59EEB30C5EC0D15137E5C4B04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.198072209999921, 51.379186551000075 ], [ -120.201584543999942, 51.379366543000053 ], [ -120.201113799999959, 51.382944813000087 ], [ -120.198417845999941, 51.382806667000089 ], [ -120.19537947299996, 51.382650899000119 ], [ -120.195850676999953, 51.379072650000126 ], [ -120.197590163999976, 51.37916184000008 ], [ -120.198072209999921, 51.379186551000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "107.8", "sL_BldgLoss": "107.8", "sL_StrLoss": "107.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000116902E2C10F5EC055AC542F43BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.243746216999938, 51.497087933000117 ], [ -120.244021086999979, 51.494988765000052 ], [ -120.241413087999902, 51.494856472000023 ], [ -120.241881754999895, 51.491278437000091 ], [ -120.242645873999948, 51.491317204000097 ], [ -120.242682233999915, 51.491039555000029 ], [ -120.248430980999956, 51.49133104600007 ], [ -120.248157775999971, 51.493419275000072 ], [ -120.251082839999967, 51.493567478000045 ], [ -120.25061489699999, 51.497145543000101 ], [ -120.249533514999911, 51.497090762000013 ], [ -120.249495759999945, 51.497379369000086 ], [ -120.243746216999938, 51.497087933000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "36.5", "sL_BldgLoss": "36.5", "sL_StrLoss": "36.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B69A707C10D5EC0B6A847013FB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.213538269999901, 51.444972990000103 ], [ -120.219280819999952, 51.445265967000047 ], [ -120.218810807999901, 51.448844073000032 ], [ -120.216377329999929, 51.448719957000094 ], [ -120.216275135999965, 51.44949753200008 ], [ -120.213352427999922, 51.449348392000026 ], [ -120.210532054999959, 51.449204402000092 ], [ -120.211002742999966, 51.445626332000067 ], [ -120.212303222999964, 51.445692735000051 ], [ -120.213436034999944, 51.445750565000026 ], [ -120.213538269999901, 51.444972990000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "29.8", "sL_BldgLoss": "29.8", "sL_StrLoss": "29.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000985A4280040E5EC002C2E2CB1FBD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.216386612999941, 51.475597415000102 ], [ -120.222133170999911, 51.475890240000105 ], [ -120.221663065999962, 51.479468248000067 ], [ -120.215916043999954, 51.479175401000056 ], [ -120.216386612999941, 51.475597415000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.8", "sL_BldgLoss": "36.8", "sL_StrLoss": "36.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F9ABF952E0D5EC07D2291AE80A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.203343171999933, 51.267615902000053 ], [ -120.209062658999969, 51.267909449000122 ], [ -120.208593704999899, 51.271488161000079 ], [ -120.206231219999921, 51.271366945000061 ], [ -120.202873758999957, 51.271194592000093 ], [ -120.203334916999921, 51.26767884700012 ], [ -120.203343171999933, 51.267615902000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.6", "sL_BldgLoss": "40.6", "sL_StrLoss": "40.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000742C6B72A3225EC09467A02A8DB24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.538861846999964, 51.395960051000024 ], [ -120.538885260999933, 51.395771091000015 ], [ -120.537019298999923, 51.395681101000093 ], [ -120.537238809999906, 51.393910085000066 ], [ -120.539984006999987, 51.393924090000127 ], [ -120.541081504999951, 51.394080806000069 ], [ -120.542762, 51.393855794000068 ], [ -120.54344191899996, 51.393780305000135 ], [ -120.544372898999924, 51.393556711000059 ], [ -120.544777703, 51.393258987000095 ], [ -120.544980173999932, 51.393166 ], [ -120.544600120999988, 51.396236596000065 ], [ -120.538861846999964, 51.395960051000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "61.4", "sL_BldgLoss": "61.4", "sL_StrLoss": "61.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B5FE44CF00D5EC0ACD07AD724BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.215038058999951, 51.464314701000106 ], [ -120.215192795999911, 51.463137985000046 ], [ -120.214330217999944, 51.463093984000061 ], [ -120.214800745, 51.459515947000099 ], [ -120.220545198000011, 51.459808857000077 ], [ -120.220390614999985, 51.460985584000127 ], [ -120.221253155999975, 51.461029540000048 ], [ -120.22078313699997, 51.464607598000022 ], [ -120.215038058999951, 51.464314701000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "31.1", "sL_BldgLoss": "31.1", "sL_StrLoss": "31.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095C89110DD0D5EC059599187F4BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.21398026599995, 51.46646444200011 ], [ -120.21972561799997, 51.466757391000066 ], [ -120.219255412999942, 51.470335422000112 ], [ -120.213509596999941, 51.47004244900009 ], [ -120.21398026599995, 51.46646444200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000850B16DAFB0B5EC043249E47A09F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.184623821999949, 51.245142222 ], [ -120.190340283999916, 51.245436722000122 ], [ -120.189870054, 51.249015441000061 ], [ -120.184153133999942, 51.248720918000046 ], [ -120.184623821999949, 51.245142222 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000902A2F9EA6225EC0390B39BE8FBC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.539393869999941, 51.474348935000066 ], [ -120.539438691999948, 51.473987844000057 ], [ -120.53825775699994, 51.473931006000022 ], [ -120.538517575999919, 51.47183818000012 ], [ -120.538564692, 51.471458645000034 ], [ -120.538587404999944, 51.47127568500008 ], [ -120.540028693999943, 51.471270106000105 ], [ -120.540567195999941, 51.471416787000123 ], [ -120.541212715999976, 51.47148370500004 ], [ -120.541618889999882, 51.47169019100005 ], [ -120.542476021000013, 51.472338306000033 ], [ -120.543562904999959, 51.472747009000066 ], [ -120.543775989999986, 51.47307600700001 ], [ -120.544493411999937, 51.473117289000051 ], [ -120.545376366999946, 51.472738107000069 ], [ -120.545345577999967, 51.472986423000101 ], [ -120.54526223, 51.473658625000027 ], [ -120.545142350999967, 51.474625432000032 ], [ -120.539393869999941, 51.474348935000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "45.6", "sL_BldgLoss": "45.6", "sL_StrLoss": "45.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042C83F54D6215EC043D57D3A7DB24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.52572709899999, 51.395350594000021 ], [ -120.525991994999956, 51.39321781000006 ], [ -120.526159002999961, 51.393271898000066 ], [ -120.526918676999983, 51.393324494000098 ], [ -120.527721193999952, 51.393098091000077 ], [ -120.528222400999979, 51.393415689000037 ], [ -120.528786796999981, 51.393606515000037 ], [ -120.529283192999955, 51.39347269400011 ], [ -120.531725087999931, 51.393533234000067 ], [ -120.531465208999947, 51.39562780400005 ], [ -120.52572709899999, 51.395350594000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "1", "sL_AssetLoss": "257.2", "sL_BldgLoss": "257.2", "sL_StrLoss": "257.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A711F98A70D5EC02C19F83870B64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.217614509, 51.42946162900008 ], [ -120.21778179899998, 51.428187834000035 ], [ -120.21436510499997, 51.428013438000015 ], [ -120.214314988999959, 51.428394817000104 ], [ -120.210958814999941, 51.42822340900004 ], [ -120.208574667999983, 51.428101584000125 ], [ -120.208612223, 51.427816078000056 ], [ -120.206633524, 51.427714930000036 ], [ -120.206687665999965, 51.427303451000071 ], [ -120.205695220999957, 51.427252706000097 ], [ -120.20572031699993, 51.427062006000021 ], [ -120.20489470699999, 51.427019785000013 ], [ -120.204909174999941, 51.426909871000049 ], [ -120.203645772999934, 51.42684525100006 ], [ -120.203656303999949, 51.426765254000067 ], [ -120.203498183999969, 51.426757165000083 ], [ -120.203985078999921, 51.426423650000089 ], [ -120.204443235999975, 51.425983285000036 ], [ -120.20451472799995, 51.425876448000047 ], [ -120.204734550999945, 51.425547911000081 ], [ -120.204943023999959, 51.425039863000109 ], [ -120.205309630999935, 51.423955420000077 ], [ -120.205587201999961, 51.42329510800009 ], [ -120.20577001599996, 51.422872227000084 ], [ -120.206048198999909, 51.422404621000062 ], [ -120.206325373999931, 51.421940931000044 ], [ -120.206353807999903, 51.421893397000105 ], [ -120.20681879499989, 51.421277710000069 ], [ -120.207088475999967, 51.420920607000092 ], [ -120.208577451999972, 51.419540052000045 ], [ -120.209491875999916, 51.419586793000093 ], [ -120.209389920999939, 51.420362170000054 ], [ -120.21126997099995, 51.420458246000095 ], [ -120.211102643999965, 51.421731126000111 ], [ -120.212044134999957, 51.421779227000087 ], [ -120.212042971999907, 51.421788079000095 ], [ -120.217389456999939, 51.422061080000041 ], [ -120.217167495999917, 51.423751271000029 ], [ -120.219806295999931, 51.42388591800006 ], [ -120.219534357999976, 51.425957436000019 ], [ -120.223824506999961, 51.426176212000023 ], [ -120.223355066999943, 51.429754405000025 ], [ -120.217614509, 51.42946162900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.7", "sL_BldgLoss": "40.7", "sL_StrLoss": "40.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000921D9FB99C095EC0002C7E95749D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.148030480999964, 51.228373022000063 ], [ -120.152075425999953, 51.228582840000122 ], [ -120.151602285999985, 51.232161463000104 ], [ -120.149417915999948, 51.232048174000042 ], [ -120.149208194999943, 51.23177928700003 ], [ -120.148513313999914, 51.230259705000044 ], [ -120.148116707999961, 51.228794190000094 ], [ -120.148030480999964, 51.228373022000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "86.5", "sL_BldgLoss": "86.5", "sL_StrLoss": "86.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009EAB943B3F0B5EC0E8D012F968A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.172721468999939, 51.270782468000029 ], [ -120.172802142999942, 51.270170664000055 ], [ -120.172556106999949, 51.270157965000088 ], [ -120.17302796, 51.2665793970001 ], [ -120.177820562999941, 51.266826691000077 ], [ -120.17874711199994, 51.266874476000034 ], [ -120.178666525999958, 51.267486286000036 ], [ -120.178912548000014, 51.267498973000045 ], [ -120.178441160999924, 51.271077561000013 ], [ -120.177210908999925, 51.271014114000089 ], [ -120.172721468999939, 51.270782468000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "74.9", "sL_BldgLoss": "74.9", "sL_StrLoss": "74.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000447B061EA90B5EC029DF1A7500A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.181350070999954, 51.322488615000047 ], [ -120.181455968999956, 51.321685300000055 ], [ -120.180044794999944, 51.321612646000055 ], [ -120.176846078, 51.321447894000123 ], [ -120.177318129999946, 51.317869499000039 ], [ -120.18091573699995, 51.318054791000094 ], [ -120.183043939999934, 51.318164347000021 ], [ -120.182938078999939, 51.318967666000063 ], [ -120.187547745999908, 51.319204825000114 ], [ -120.187076505999983, 51.32278325700004 ], [ -120.181350070999954, 51.322488615000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "158.9", "sL_BldgLoss": "158.9", "sL_StrLoss": "158.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EC346F287E0A5EC05CB2646D579E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.16427669799999, 51.239979904000059 ], [ -120.163026401999957, 51.239779105000132 ], [ -120.161851287999966, 51.239804700000079 ], [ -120.16116041099994, 51.239585038000058 ], [ -120.161226102999947, 51.239087475000112 ], [ -120.159823635999942, 51.239014875000109 ], [ -120.158445805999946, 51.238336384000036 ], [ -120.157638467999945, 51.237898480000091 ], [ -120.157979567999945, 51.235316284000092 ], [ -120.160893816999973, 51.235467183000083 ], [ -120.162745838999967, 51.235563041 ], [ -120.163009451, 51.233565597000037 ], [ -120.168724275999963, 51.233861194000063 ], [ -120.1684965399999, 51.235588500000055 ], [ -120.168659, 51.235596899 ], [ -120.16855153499999, 51.236411962000055 ], [ -120.16864125799998, 51.236416600000048 ], [ -120.168169371999952, 51.239995262000051 ], [ -120.166914815, 51.239930400000063 ], [ -120.166869754999965, 51.239928069000015 ], [ -120.166726522999966, 51.241013951000099 ], [ -120.16527189699994, 51.240337409000048 ], [ -120.16427669799999, 51.239979904000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "33.3", "sL_BldgLoss": "33.3", "sL_StrLoss": "33.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FF962737E0D5EC06E5465E706B44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.208622032999983, 51.406766528000112 ], [ -120.208477804999973, 51.406401077000069 ], [ -120.208266376999973, 51.405865343000116 ], [ -120.208125864999928, 51.405509320000085 ], [ -120.208073960999926, 51.405377758000036 ], [ -120.207383229999934, 51.40399788500013 ], [ -120.20658491099999, 51.402838253000027 ], [ -120.20860034, 51.40294133800009 ], [ -120.211594337999912, 51.403094409000062 ], [ -120.211364424999886, 51.404844183000101 ], [ -120.212749723999949, 51.404914980000065 ], [ -120.21268710599999, 51.405391624000082 ], [ -120.213163543999926, 51.405415969000096 ], [ -120.213091262999924, 51.405966198000101 ], [ -120.213031670999939, 51.406419826000061 ], [ -120.213113534999977, 51.406424008000045 ], [ -120.213766192999913, 51.4064573550001 ], [ -120.213713572999936, 51.406857956000067 ], [ -120.214110709999972, 51.406878245000073 ], [ -120.213640689000016, 51.410456467000039 ], [ -120.213308926999943, 51.410439519000057 ], [ -120.21141771899994, 51.410342885000055 ], [ -120.211218285999934, 51.409964797000029 ], [ -120.210722217999958, 51.409432399000103 ], [ -120.210054610999961, 51.408820110000143 ], [ -120.209847645999901, 51.408606224000053 ], [ -120.209469794999933, 51.408215703000039 ], [ -120.209234892999945, 51.407905784000015 ], [ -120.209111, 51.407742356000043 ], [ -120.20903659399994, 51.407644211000054 ], [ -120.208622032999983, 51.406766528000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.5", "sL_BldgLoss": "47.5", "sL_StrLoss": "47.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000818DB1346C175EC09C85034267B44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.36278721799999, 51.409287102000114 ], [ -120.362445619999974, 51.409225806000116 ], [ -120.361553215999891, 51.409283604000102 ], [ -120.361645539999984, 51.408562259000114 ], [ -120.362054412999967, 51.408515190000088 ], [ -120.362082183999959, 51.408812790000042 ], [ -120.362485420999946, 51.409029298000092 ], [ -120.362985793999925, 51.409076297000098 ], [ -120.363477606999979, 51.409285695000044 ], [ -120.363796103999931, 51.409255810000047 ], [ -120.36424109699999, 51.408762990000064 ], [ -120.365443982000016, 51.408600590000034 ], [ -120.366597395999975, 51.40832149500006 ], [ -120.367027781, 51.408060792000107 ], [ -120.36701928899997, 51.40798821300006 ], [ -120.366940197999938, 51.407600811000101 ], [ -120.36751910699995, 51.40755099600004 ], [ -120.36751539899997, 51.407334507000023 ], [ -120.36731587899996, 51.407069592 ], [ -120.367246361999946, 51.407033177000045 ], [ -120.368405877999948, 51.407090831000112 ], [ -120.367948360999904, 51.41066968300008 ], [ -120.367219418999952, 51.410633439000065 ], [ -120.367211329999989, 51.410696701000063 ], [ -120.367148313999948, 51.410693567000038 ], [ -120.367105345999917, 51.411029602000077 ], [ -120.364218474999944, 51.410886019 ], [ -120.364186089999933, 51.410712695000065 ], [ -120.363979596999968, 51.41031251400004 ], [ -120.363477204999953, 51.409815487000074 ], [ -120.363086906999953, 51.409600406000081 ], [ -120.363052210999911, 51.409437987000103 ], [ -120.36278721799999, 51.409287102000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "1", "sL_AssetLoss": "395", "sL_BldgLoss": "395", "sL_StrLoss": "395", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000130EA428A30B5EC0038021B34CA74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.183904371999944, 51.316681695000035 ], [ -120.184349022999967, 51.31330654200007 ], [ -120.18422225399992, 51.313300018000056 ], [ -120.184202925999926, 51.313446743000014 ], [ -120.18379478099996, 51.313425737000095 ], [ -120.183552105999922, 51.315267654000095 ], [ -120.18028719699997, 51.315099569000076 ], [ -120.177826667999923, 51.314972832000123 ], [ -120.178086643999947, 51.313001522000064 ], [ -120.174881607999964, 51.312836355000108 ], [ -120.175353726999973, 51.309257937000091 ], [ -120.177249976999974, 51.30935566800008 ], [ -120.177350434999966, 51.308593918000064 ], [ -120.176944883, 51.308573019000093 ], [ -120.177416789999882, 51.304994576000077 ], [ -120.178840744999917, 51.305067951000048 ], [ -120.17893381499999, 51.304361973000056 ], [ -120.177732010999961, 51.304300047 ], [ -120.178203808999939, 51.300721586000073 ], [ -120.179592147999927, 51.300793122000101 ], [ -120.179724422999968, 51.299789506000124 ], [ -120.177971140999944, 51.299699161000042 ], [ -120.178027066999945, 51.299274947000079 ], [ -120.177578958999931, 51.299251852000054 ], [ -120.178050714999969, 51.295673372000081 ], [ -120.181095224000018, 51.295830246000016 ], [ -120.183773658999954, 51.295968189000085 ], [ -120.183717792999985, 51.296392408000024 ], [ -120.184165874999962, 51.296415479000075 ], [ -120.183873730999935, 51.298633889000023 ], [ -120.185626982999977, 51.298724142000026 ], [ -120.185155806999958, 51.302302642000079 ], [ -120.183767410999948, 51.302231174000028 ], [ -120.183751818999951, 51.302349561000035 ], [ -120.186477014999966, 51.302489826000034 ], [ -120.186005866999949, 51.30606831500004 ], [ -120.184482305999964, 51.305989907000082 ], [ -120.184277779999888, 51.307542753000064 ], [ -120.183259280999962, 51.307490326000043 ], [ -120.183105835999982, 51.308655060000035 ], [ -120.184557621999886, 51.308729789000026 ], [ -120.184428785999927, 51.309707932000016 ], [ -120.185740951999946, 51.30977545800009 ], [ -120.18529644299997, 51.313150628000074 ], [ -120.190101044999906, 51.313397745000017 ], [ -120.189630072999933, 51.316976209000096 ], [ -120.183904371999944, 51.316681695000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.7", "sL_BldgLoss": "36.7", "sL_StrLoss": "36.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F0D30353A0B5EC07A9E26D0B39B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.172807051999939, 51.214487985000069 ], [ -120.178519482999903, 51.214783093000044 ], [ -120.178048625999978, 51.218361878000088 ], [ -120.1754021199999, 51.218225194000091 ], [ -120.172335735999951, 51.218066748000098 ], [ -120.172801335999964, 51.214531381000022 ], [ -120.172807051999939, 51.214487985000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006EC25A08340E5EC0D0EBF42881BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.219286939999918, 51.486381303000066 ], [ -120.225034922999924, 51.486673978000063 ], [ -120.224564937999929, 51.490251960000059 ], [ -120.21881649, 51.48995926200007 ], [ -120.219286939999918, 51.486381303000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.9", "sL_BldgLoss": "38.9", "sL_StrLoss": "38.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A6E82D2040B5EC0762D6BAC0EA44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.169341432999943, 51.279852337000108 ], [ -120.175062274999959, 51.280147600000141 ], [ -120.174590441999968, 51.283726125000022 ], [ -120.170676452999942, 51.283524150000133 ], [ -120.169101378999969, 51.281671277000022 ], [ -120.169341432999943, 51.279852337000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "124.6", "sL_BldgLoss": "124.6", "sL_StrLoss": "124.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E23F9B246F0E5EC00E298A8058C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.224150042999952, 51.537334732000055 ], [ -120.224582028999947, 51.534049963000072 ], [ -120.220692259999936, 51.533852143000026 ], [ -120.221163026999974, 51.530274330000054 ], [ -120.226916753999944, 51.530566897000071 ], [ -120.22648497499992, 51.533851687000045 ], [ -120.230374771999934, 51.534049309000103 ], [ -120.229904712999911, 51.537627147000059 ], [ -120.224150042999952, 51.537334732000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.1", "sL_BldgLoss": "44.1", "sL_StrLoss": "44.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000036AA159E7E0E5EC0778D4C76A2BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.223838511999986, 51.495210226000069 ], [ -120.229587677, 51.495502668 ], [ -120.229117965999976, 51.499080638000038 ], [ -120.22336833699994, 51.498788173000037 ], [ -120.223838511999986, 51.495210226000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "31.4", "sL_BldgLoss": "31.4", "sL_StrLoss": "31.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071C420D1C00B5EC057AF85CD3EBA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.182819203999912, 51.453121932000016 ], [ -120.185347244999917, 51.453251609000034 ], [ -120.184874394999923, 51.456829545000055 ], [ -120.181611088999929, 51.456662143000116 ], [ -120.182029812999971, 51.455418435000055 ], [ -120.182077990999943, 51.455275270000037 ], [ -120.182081016999931, 51.455266417000075 ], [ -120.182592168999989, 51.453781574000082 ], [ -120.182687113999947, 51.453505681000131 ], [ -120.182819203999912, 51.453121932000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.8", "sL_BldgLoss": "37.8", "sL_StrLoss": "37.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AADB762DE30B5EC04E0AF31EE7A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.183113125999967, 51.32542924800007 ], [ -120.188839954999935, 51.325723800000084 ], [ -120.188368749999924, 51.329302214000094 ], [ -120.182641461999964, 51.329007639000103 ], [ -120.183113125999967, 51.32542924800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "1", "sL_AssetLoss": "350.1", "sL_BldgLoss": "350.1", "sL_StrLoss": "350.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AFC067563C0A5EC09283C8D8BF9C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.153864391999946, 51.230383521000093 ], [ -120.154261490999914, 51.22737877300009 ], [ -120.148800932999933, 51.227095588000033 ], [ -120.149274244999944, 51.223516958000083 ], [ -120.15498768399999, 51.223813252000078 ], [ -120.15459066499993, 51.22681801300007 ], [ -120.156823471999971, 51.22693372500008 ], [ -120.156951763999956, 51.225962442000061 ], [ -120.160389896999945, 51.22614052900007 ], [ -120.160600980999973, 51.224541407000075 ], [ -120.158508977999958, 51.224433058000102 ], [ -120.158981477999987, 51.220854377000144 ], [ -120.160400897999978, 51.220927897000131 ], [ -120.160849795, 51.217526614000079 ], [ -120.162005226999923, 51.217586447000038 ], [ -120.166562538999969, 51.217822325000043 ], [ -120.16646869899995, 51.218534092000063 ], [ -120.166813278999939, 51.218551919000092 ], [ -120.166493688999978, 51.22097593200008 ], [ -120.16732833199994, 51.22101911000005 ], [ -120.166856506, 51.224597824000035 ], [ -120.166349641999915, 51.224571604000033 ], [ -120.16590536199999, 51.227940540000091 ], [ -120.16246706799997, 51.227762619000046 ], [ -120.162193309999964, 51.229837022000076 ], [ -120.159706988999957, 51.229708298000048 ], [ -120.15968599699994, 51.229867297000126 ], [ -120.159578745999937, 51.230679580000071 ], [ -120.153864391999946, 51.230383521000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "167", "sL_BldgLoss": "167", "sL_StrLoss": "167", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037FAFB39C30A5EC0904C242494A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.166337496, 51.272740289000104 ], [ -120.166570467999946, 51.27097548100005 ], [ -120.163798734999972, 51.270832223000063 ], [ -120.164250133999971, 51.26741400500002 ], [ -120.164280589999976, 51.267394510000038 ], [ -120.164443558999935, 51.267262599000077 ], [ -120.169990481999918, 51.267549217000095 ], [ -120.16975766399996, 51.269314039000101 ], [ -120.172529320999928, 51.269457151000076 ], [ -120.172057398999939, 51.273035706000066 ], [ -120.166337496, 51.272740289000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "88", "sL_BldgLoss": "88", "sL_StrLoss": "88", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000180B9E9D67145EC0454E786CF8CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31327337, 51.626363226000095 ], [ -120.313737585999945, 51.622785354000051 ], [ -120.314467524999884, 51.622821809000094 ], [ -120.314468370999975, 51.622815287000059 ], [ -120.314487587999935, 51.622992610000011 ], [ -120.314653005999929, 51.62314918600007 ], [ -120.315725208999964, 51.624307092000031 ], [ -120.316402797999942, 51.624583413000089 ], [ -120.31694351099992, 51.624488005000096 ], [ -120.317472109999969, 51.624599103000065 ], [ -120.317632110000019, 51.624547792000044 ], [ -120.318232700999957, 51.623932509000092 ], [ -120.319812787, 51.623365706000058 ], [ -120.320380812999957, 51.623045189000067 ], [ -120.3224278, 51.622858712000053 ], [ -120.323276607999972, 51.62246420100017 ], [ -120.324301291, 51.622461305000044 ], [ -120.324711213999976, 51.622623708000035 ], [ -120.324119492999969, 51.623086500000035 ], [ -120.323827207999926, 51.623627705000061 ], [ -120.324579007999915, 51.624373997000092 ], [ -120.325003910999897, 51.625013504000044 ], [ -120.32500920199999, 51.625062258000099 ], [ -120.321847910999907, 51.624904644000011 ], [ -120.321758449999891, 51.62559515000008 ], [ -120.321552335999954, 51.625584870000047 ], [ -120.321449984999973, 51.626374810000073 ], [ -120.321122513999953, 51.626382206000109 ], [ -120.320994071999948, 51.626454575000075 ], [ -120.319808160999955, 51.626395419000055 ], [ -120.319794218999959, 51.626502993000024 ], [ -120.319064213999937, 51.626466572000083 ], [ -120.319040294, 51.626651111000051 ], [ -120.31327337, 51.626363226000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071777344800C5EC0145B20C5A9A44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.195147513999927, 51.284620261000079 ], [ -120.198424732999982, 51.284788669000058 ], [ -120.197954739999915, 51.288367274000052 ], [ -120.194684079999959, 51.288199205000105 ], [ -120.192232682999972, 51.288073172000082 ], [ -120.192703136999981, 51.284494590000151 ], [ -120.195147513999927, 51.284620261000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.2", "sL_BldgLoss": "43.2", "sL_StrLoss": "43.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001940F0DF59235EC083F8C08E7FB24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.549712793, 51.39258991 ], [ -120.555450694999962, 51.392865908000068 ], [ -120.55500848599992, 51.396445552000031 ], [ -120.549270121999911, 51.396169534000087 ], [ -120.549712793, 51.39258991 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "95.1", "sL_BldgLoss": "95.1", "sL_StrLoss": "95.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CE3EA8EE7E0D5EC0B80AFF7530B84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.208733862999964, 51.442479365000047 ], [ -120.208793648, 51.442024995000082 ], [ -120.20853068699995, 51.442011559000072 ], [ -120.208906252999952, 51.439157136000119 ], [ -120.207189844999974, 51.43906942800006 ], [ -120.207277950999924, 51.438399938000082 ], [ -120.207113388999971, 51.438391527000071 ], [ -120.207584237999981, 51.434813432000091 ], [ -120.207660473999979, 51.434817329000055 ], [ -120.212161834999947, 51.435047298000015 ], [ -120.21216690699994, 51.435058206000036 ], [ -120.212238007999957, 51.436012396000137 ], [ -120.212034982999967, 51.436277289 ], [ -120.211737490999965, 51.436198897000061 ], [ -120.21164248799991, 51.43633989300011 ], [ -120.211697409999957, 51.4366290930001 ], [ -120.21214341599989, 51.437107590000025 ], [ -120.21269428, 51.437499199000108 ], [ -120.213159802999911, 51.43762679900005 ], [ -120.213026725999939, 51.438639060000106 ], [ -120.214743127999981, 51.438726680000066 ], [ -120.21468340899996, 51.439181056000102 ], [ -120.214946353999949, 51.439194476000054 ], [ -120.214476054999949, 51.442772587000029 ], [ -120.212166531999955, 51.442654687000065 ], [ -120.208733862999964, 51.442479365000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41", "sL_BldgLoss": "41", "sL_StrLoss": "41", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FBD514AFCF0A5EC0E276AA745E9B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.170970964999952, 51.212124242000115 ], [ -120.172017840999942, 51.212178366000053 ], [ -120.17187924199996, 51.213230752000094 ], [ -120.171546486999958, 51.215757134000093 ], [ -120.165833975999959, 51.215461674000032 ], [ -120.166305788999949, 51.211882929000076 ], [ -120.170970964999952, 51.212124242000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "32.6", "sL_BldgLoss": "32.6", "sL_StrLoss": "32.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004ECED414560C5EC00CFAFB5A51AE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.191746403999971, 51.361410893000027 ], [ -120.189956995, 51.359919715000046 ], [ -120.189863867999989, 51.35971612700007 ], [ -120.191459367, 51.359798056000109 ], [ -120.194727336999989, 51.359965797000044 ], [ -120.19465455199996, 51.360518686000013 ], [ -120.19473857599999, 51.360522998000079 ], [ -120.19438929799999, 51.363176056000093 ], [ -120.194267477999944, 51.364101309000077 ], [ -120.189942046999974, 51.363879273000052 ], [ -120.190430980999935, 51.363438893000094 ], [ -120.191384010999911, 51.362876385000071 ], [ -120.191925604999952, 51.362701212000069 ], [ -120.192128313999959, 51.362453403000117 ], [ -120.192146000999955, 51.361942112000087 ], [ -120.191746403999971, 51.361410893000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.3", "sL_BldgLoss": "34.3", "sL_StrLoss": "34.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000046B83B0A60B5EC00F4EFA311CA24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.179425, 51.264548741000084 ], [ -120.185143931999932, 51.264843497000086 ], [ -120.184673076999943, 51.268422123000072 ], [ -120.178953685999929, 51.268127342000064 ], [ -120.179425, 51.264548741000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.2", "sL_BldgLoss": "35.2", "sL_StrLoss": "35.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2C225AE800B5EC0B31B0976F4A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.177258082999941, 51.271156506000118 ], [ -120.182824578999927, 51.271443472000058 ], [ -120.182353466999956, 51.275022062000055 ], [ -120.178360470999962, 51.274816242000078 ], [ -120.176633238999912, 51.274727167000044 ], [ -120.17710481, 51.271148600000068 ], [ -120.177258082999941, 51.271156506000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.8", "sL_BldgLoss": "40.8", "sL_StrLoss": "40.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000215EF0CC380D5EC03F7EA10D61B74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.204443697, 51.434027761000081 ], [ -120.204732959999959, 51.431830438000134 ], [ -120.204571257999987, 51.43182216800011 ], [ -120.204933084999965, 51.42907339500006 ], [ -120.20521940499998, 51.429126310000115 ], [ -120.205384800999965, 51.429247406000052 ], [ -120.20528929399994, 51.42988399799999 ], [ -120.205368489999955, 51.430479289000047 ], [ -120.206701692999957, 51.431023407000076 ], [ -120.206820715999953, 51.431197106000134 ], [ -120.20678920899995, 51.431691296000118 ], [ -120.207396292999988, 51.432353602000035 ], [ -120.207921028999948, 51.432529096000117 ], [ -120.209568019999935, 51.43307989700002 ], [ -120.209943419999931, 51.433296405000078 ], [ -120.209977717999976, 51.433458799000093 ], [ -120.209757505999917, 51.433515703000069 ], [ -120.209703206, 51.433685196000091 ], [ -120.209859500999954, 51.433968585000038 ], [ -120.21003910099995, 51.434081112000072 ], [ -120.21020920899997, 51.434135316000017 ], [ -120.210184761999983, 51.434321202000056 ], [ -120.207648241999919, 51.434191590000133 ], [ -120.204443697, 51.434027761000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "30.9", "sL_BldgLoss": "30.9", "sL_StrLoss": "30.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025BC3597B80E5EC06A4DF38ED3C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.227376197999916, 51.504521125000039 ], [ -120.233126602999931, 51.504813386000116 ], [ -120.232657080999928, 51.508391337000099 ], [ -120.226906211999903, 51.508099054000112 ], [ -120.227376197999916, 51.504521125000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "63.2", "sL_BldgLoss": "63.2", "sL_StrLoss": "63.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079463216D30C5EC0038782DFA7B14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.200096982, 51.38591752500006 ], [ -120.203456546999945, 51.386089602000062 ], [ -120.202985882999911, 51.389667856000088 ], [ -120.202378541999963, 51.389636755000019 ], [ -120.202343268999954, 51.389904870000123 ], [ -120.200965107999963, 51.389834285000063 ], [ -120.19660803, 51.389611020000061 ], [ -120.196691451000035, 51.388977550000057 ], [ -120.196884992999955, 51.388785607000059 ], [ -120.198057109999979, 51.387942486000085 ], [ -120.198180894999979, 51.386855799000017 ], [ -120.19801041499997, 51.386582291000124 ], [ -120.1980233, 51.386358689000076 ], [ -120.19838406699999, 51.38582975 ], [ -120.200096982, 51.38591752500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.8", "sL_BldgLoss": "34.8", "sL_StrLoss": "34.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084C46E86780C5EC0CF89565130AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.195395142999985, 51.366647477000114 ], [ -120.197034125999949, 51.366731546000047 ], [ -120.19656314799991, 51.370309843000037 ], [ -120.194080242999988, 51.370182479000093 ], [ -120.191725453999936, 51.370061636000074 ], [ -120.191724099999973, 51.369990285000078 ], [ -120.191898103999989, 51.369500391000017 ], [ -120.19245341099996, 51.368883687000057 ], [ -120.192936396999954, 51.368490608000101 ], [ -120.194216193999978, 51.367792714000124 ], [ -120.194347081999965, 51.367534991000085 ], [ -120.194282037999983, 51.366590370000083 ], [ -120.195395142999985, 51.366647477000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "74.2", "sL_BldgLoss": "74.2", "sL_StrLoss": "74.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3C4939B70235EC09919CB2E77BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.55531048, 51.474029096000017 ], [ -120.555342728999932, 51.473768525000025 ], [ -120.554990446999909, 51.473751621000062 ], [ -120.553598649999927, 51.473684823000063 ], [ -120.553622410999978, 51.473492896000025 ], [ -120.552076511999985, 51.473418682000087 ], [ -120.55209146699994, 51.473297922000079 ], [ -120.548093083999944, 51.473105874000069 ], [ -120.548120804999968, 51.472882178000077 ], [ -120.5482052399999, 51.47220084300011 ], [ -120.54825979099999, 51.471760632000077 ], [ -120.548456701999925, 51.471715910000079 ], [ -120.549639291999981, 51.471678807000117 ], [ -120.551717601999925, 51.471083492000069 ], [ -120.552164809, 51.471064999000056 ], [ -120.552606087999919, 51.470904101000066 ], [ -120.553287292999983, 51.470791597000066 ], [ -120.553962389999938, 51.470545200000053 ], [ -120.554470704999943, 51.470475393000058 ], [ -120.555186090999925, 51.47055229700009 ], [ -120.555708793999941, 51.470509599000074 ], [ -120.556146585999954, 51.470636295000084 ], [ -120.556312206999948, 51.470791602000119 ], [ -120.556141610999987, 51.470995183000078 ], [ -120.556246709999982, 51.471204584000112 ], [ -120.556898308999919, 51.47138970600011 ], [ -120.557065821999956, 51.471509406000045 ], [ -120.557306902, 51.472099002000064 ], [ -120.557778173999921, 51.472207192000049 ], [ -120.558069363999962, 51.472198711000019 ], [ -120.558297221999908, 51.474264188000113 ], [ -120.555551418999968, 51.47413247300009 ], [ -120.555412156, 51.474125790000066 ], [ -120.555299182999974, 51.474120369000055 ], [ -120.55531048, 51.474029096000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.9", "sL_BldgLoss": "34.9", "sL_StrLoss": "34.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A10474FF80C5EC08B0AE6F99DA44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.200029638999965, 51.284134859000112 ], [ -120.205751236999944, 51.284428568000052 ], [ -120.205281839999913, 51.288007205000028 ], [ -120.199559780999948, 51.287713473000082 ], [ -120.200029638999965, 51.284134859000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "119.7", "sL_BldgLoss": "119.7", "sL_StrLoss": "119.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FB531B85EFB5DC01F8C33E1729E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.925045124999912, 51.235938195000081 ], [ -119.930758638, 51.236245819000047 ], [ -119.93074616799997, 51.236336665000067 ], [ -119.930267550999986, 51.23982346800004 ], [ -119.92455358, 51.23951582100004 ], [ -119.925032643999927, 51.236029041000066 ], [ -119.925045124999912, 51.235938195000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "71.6", "sL_BldgLoss": "71.6", "sL_StrLoss": "71.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BFD218920095EC03B023421989C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.142648274999956, 51.221541342000144 ], [ -120.143965542999936, 51.221609761000046 ], [ -120.144070566999972, 51.223062410000132 ], [ -120.144087679999956, 51.223731315000052 ], [ -120.143972345999941, 51.225213331000056 ], [ -120.143369802999956, 51.225182039000089 ], [ -120.140956484999933, 51.225056676000051 ], [ -120.141430408999938, 51.221478072000103 ], [ -120.142648274999956, 51.221541342000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45", "sL_BldgLoss": "45", "sL_StrLoss": "45", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7DC131C85075EC0C77731E691994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.116434611, 51.199040806000077 ], [ -120.116346323999892, 51.197687039000101 ], [ -120.121544349999979, 51.198135009000104 ], [ -120.121516073999956, 51.198347929000107 ], [ -120.116849447, 51.198104406000027 ], [ -120.116794203999945, 51.198520056000064 ], [ -120.118249383999981, 51.198596014000032 ], [ -120.117773834999966, 51.202174608000085 ], [ -120.116338511999956, 51.20209968700005 ], [ -120.116434611, 51.199040806000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "304.5", "sL_BldgLoss": "304.5", "sL_StrLoss": "304.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF8E4D97AAFA5DC09D21A85C59A04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.913480841999956, 51.252152414000122 ], [ -119.913876827999914, 51.249276464000012 ], [ -119.919591982999975, 51.249584648000031 ], [ -119.919406388, 51.250933884000062 ], [ -119.922609277999982, 51.25110646800011 ], [ -119.92252212799994, 51.251740338000104 ], [ -119.922117367999988, 51.254684027000089 ], [ -119.921418565999915, 51.25464638100005 ], [ -119.921402742999959, 51.25476144200006 ], [ -119.916930096, 51.254520386000102 ], [ -119.916735804999973, 51.255932049000059 ], [ -119.911019851, 51.255623722000095 ], [ -119.911379524999973, 51.253012799000018 ], [ -119.91151266699994, 51.252046215000121 ], [ -119.913480841999956, 51.252152414000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "33.2", "sL_BldgLoss": "33.2", "sL_StrLoss": "33.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006B68CCC0AE65DC02E756FC91A974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59644141299998, 51.179483075000114 ], [ -119.597748227999958, 51.178643534000116 ], [ -119.597662198999913, 51.179238353000109 ], [ -119.59738824899992, 51.179222776000096 ], [ -119.597331305999916, 51.179616460000069 ], [ -119.596560512999986, 51.179572627000084 ], [ -119.596519883999946, 51.17985347800002 ], [ -119.595728127999948, 51.179808448000117 ], [ -119.595614487999939, 51.180593897000044 ], [ -119.595182710999964, 51.180569338000048 ], [ -119.59506541099995, 51.181380009000051 ], [ -119.591076744999924, 51.181153054000042 ], [ -119.591572061999898, 51.180904965000067 ], [ -119.594635605999883, 51.180062897000077 ], [ -119.59644141299998, 51.179483075000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "108.9", "sL_BldgLoss": "108.9", "sL_StrLoss": "108.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000825C5E901F095EC00D2F0C81719B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.140399969999976, 51.212548522000077 ], [ -120.145837559999961, 51.212831021000071 ], [ -120.145314248999952, 51.214249122000112 ], [ -120.144334048999951, 51.216356184000091 ], [ -120.142220661999971, 51.216246400000117 ], [ -120.13970676400001, 51.216115758000115 ], [ -120.140180690999912, 51.212537125000033 ], [ -120.140399969999976, 51.212548522000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "73.2", "sL_BldgLoss": "73.2", "sL_StrLoss": "73.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FC5116B64D085EC0D8D88063AAA94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.127117988999899, 51.323574547000121 ], [ -120.132844201999916, 51.323871930000081 ], [ -120.132368487999912, 51.327450117000105 ], [ -120.126641813999953, 51.32715271100006 ], [ -120.127117988999899, 51.323574547000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "60.8", "sL_BldgLoss": "60.8", "sL_StrLoss": "60.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF054170EAF25DC0ACDFF19224A24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.795970233999967, 51.265135836000084 ], [ -119.800229988999931, 51.265369954000064 ], [ -119.800069074999925, 51.266516710000104 ], [ -119.800066878999985, 51.266518594000068 ], [ -119.798042209999963, 51.266926005000101 ], [ -119.797409907999906, 51.267156694000093 ], [ -119.797069110999956, 51.267452900000109 ], [ -119.795544893999974, 51.267848888000088 ], [ -119.793318503999927, 51.268945484000128 ], [ -119.792657825999981, 51.269421204000103 ], [ -119.792560924999975, 51.269654539000094 ], [ -119.792086285999943, 51.269628432000069 ], [ -119.792523204999966, 51.266518828000109 ], [ -119.792588861999889, 51.26605150000006 ], [ -119.793116778999931, 51.2660805390001 ], [ -119.793156553999893, 51.265797412000033 ], [ -119.79373937099993, 51.265829468000064 ], [ -119.79379734799997, 51.26541672700008 ], [ -119.794457834999918, 51.265453051000122 ], [ -119.794513636999952, 51.265055743000097 ], [ -119.795970233999967, 51.265135836000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026666", "BldgCostT": "3466666", "sL_LossRatio": "1", "sL_AssetLoss": "288", "sL_BldgLoss": "288", "sL_StrLoss": "288", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008972B3899D0C5EC0C6A1446CACB54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.194445246000029, 51.423564470000095 ], [ -120.194607341999983, 51.422334995000021 ], [ -120.194525650999964, 51.422330809000094 ], [ -120.194968564999954, 51.418971068000069 ], [ -120.192833931999928, 51.418861668000055 ], [ -120.193305728999974, 51.415283562000099 ], [ -120.199044282999964, 51.415577571000043 ], [ -120.19866266299999, 51.418474667000076 ], [ -120.203064157999933, 51.418699974000013 ], [ -120.201389319999961, 51.420220702000023 ], [ -120.200094613999937, 51.421889891000077 ], [ -120.199998692999941, 51.42226590700006 ], [ -120.19948087799996, 51.422980893000037 ], [ -120.199079445999942, 51.423354719000095 ], [ -120.196784625999982, 51.423355535000091 ], [ -120.196551799999966, 51.423355613000119 ], [ -120.194638652999956, 51.423356230000053 ], [ -120.194445246000029, 51.423564470000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "192.6", "sL_BldgLoss": "192.6", "sL_StrLoss": "192.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000C9FDFBD04FA5DC034BFF5BC769E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.904571128999976, 51.239696672000058 ], [ -119.904571764999915, 51.239692064000096 ], [ -119.902300854999979, 51.239569310000071 ], [ -119.902794198, 51.235991781000081 ], [ -119.908507562999958, 51.236300529000125 ], [ -119.908506927999952, 51.23630513700008 ], [ -119.91077768699995, 51.236427767000109 ], [ -119.910284984999947, 51.240005329000034 ], [ -119.904571128999976, 51.239696672000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "59.6", "sL_BldgLoss": "59.6", "sL_StrLoss": "59.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B352948D7FF35DC0C197DB2087A14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.806663385999968, 51.260422564000038 ], [ -119.807498469999956, 51.260468399000111 ], [ -119.807174120999946, 51.260807598000035 ], [ -119.806644603999942, 51.261539595000087 ], [ -119.80615321099999, 51.262388401000095 ], [ -119.806171505999913, 51.262693208000059 ], [ -119.805979911999913, 51.262859803000083 ], [ -119.805769017999964, 51.262901204000116 ], [ -119.805538080999938, 51.263130404000023 ], [ -119.804883440999916, 51.263929390000115 ], [ -119.802689784999927, 51.263808933000071 ], [ -119.802951517999958, 51.26194274400013 ], [ -119.803191438999974, 51.260231933000107 ], [ -119.806663385999968, 51.260422564000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.9", "sL_BldgLoss": "42.9", "sL_StrLoss": "42.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000874266DAA065EC09525212E8C994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.102357486999963, 51.198768998000084 ], [ -120.104180312, 51.198454288000086 ], [ -120.106056602999928, 51.199120806000046 ], [ -120.106234404999952, 51.19913741600007 ], [ -120.106044195999971, 51.200565898000036 ], [ -120.101865915999952, 51.200465098000052 ], [ -120.102232115999954, 51.200312808000056 ], [ -120.10247180399999, 51.200120597000151 ], [ -120.102644318999978, 51.199666298000132 ], [ -120.102512202999947, 51.199483987000107 ], [ -120.102117304999965, 51.199401288000075 ], [ -120.101876998999984, 51.199116488000072 ], [ -120.102017517999911, 51.19892280500008 ], [ -120.102357486999963, 51.198768998000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "37.6", "sL_BldgLoss": "37.6", "sL_StrLoss": "37.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B39B53A872095EC051B4BCBC4AA84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.147009489999903, 51.313925988000051 ], [ -120.149834600999938, 51.314072277000051 ], [ -120.146324045999933, 51.316158957000063 ], [ -120.146003075999914, 51.316154888 ], [ -120.146028912999924, 51.315960070000138 ], [ -120.146291048999927, 51.315973648000131 ], [ -120.146376534999916, 51.315328977000057 ], [ -120.146443500999965, 51.315332445000131 ], [ -120.146539470999954, 51.314608679000095 ], [ -120.146916387999937, 51.314628201000048 ], [ -120.147009489999903, 51.313925988000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.5", "sL_BldgLoss": "37.5", "sL_StrLoss": "37.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000022DD747095075EC04A62C580579B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.118283311999932, 51.215048184000054 ], [ -120.118300144999964, 51.21477876100009 ], [ -120.117871166999976, 51.214768187000132 ], [ -120.117904835999965, 51.214229341000035 ], [ -120.117475863999971, 51.214218767000048 ], [ -120.117610548999892, 51.212063379000043 ], [ -120.118897407999924, 51.21209509300008 ], [ -120.118863752999957, 51.21263394100005 ], [ -120.119292711999947, 51.212644510000075 ], [ -120.119208582999974, 51.213991629000077 ], [ -120.119637552999933, 51.214002197000049 ], [ -120.119570254999942, 51.215079892000112 ], [ -120.118283311999932, 51.215048184000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "253.2", "sL_BldgLoss": "253.2", "sL_StrLoss": "253.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008316544C4C0A5EC02C34C63D4CAD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.15793953799998, 51.356218818000038 ], [ -120.15794714499999, 51.356161387000093 ], [ -120.156680898999966, 51.356095985000081 ], [ -120.157154953999921, 51.352517801000076 ], [ -120.157729613999962, 51.352547485000095 ], [ -120.158953023, 51.352610669000065 ], [ -120.159148848999962, 51.351131944000073 ], [ -120.16487884599999, 51.351427700000045 ], [ -120.164405427999966, 51.355005919000064 ], [ -120.163873470999974, 51.354978474000085 ], [ -120.16367018699999, 51.356514633000046 ], [ -120.159088839999981, 51.356278168000131 ], [ -120.15793953799998, 51.356218818000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "77.8", "sL_BldgLoss": "77.8", "sL_StrLoss": "77.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005363DFA1EA075EC08C7AD2D311AF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.121068446999971, 51.365793691000086 ], [ -120.126800088999957, 51.366091366000056 ], [ -120.126323430999946, 51.369669373000065 ], [ -120.120591326999929, 51.369371674000014 ], [ -120.121068446999971, 51.365793691000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6401750", "BldgCostT": "4415000", "sL_LossRatio": "1", "sL_AssetLoss": "282.9", "sL_BldgLoss": "282.9", "sL_StrLoss": "282.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE878ACCF7015EC01696685EC89D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.025240932, 51.237530815000078 ], [ -120.025313048999962, 51.236997051000046 ], [ -120.024435546999911, 51.236950565000065 ], [ -120.024919001999962, 51.233372498000072 ], [ -120.026008893, 51.233430236000025 ], [ -120.026371291999951, 51.230747225000059 ], [ -120.029789678999975, 51.230928248000041 ], [ -120.03007554499996, 51.228810409000097 ], [ -120.03084454599994, 51.228851117000019 ], [ -120.031012774999922, 51.22760452700004 ], [ -120.03672594399994, 51.227906798000085 ], [ -120.036486878999966, 51.229679938000125 ], [ -120.036821204999939, 51.229697618000046 ], [ -120.036913460999969, 51.229702496000108 ], [ -120.036835269999983, 51.230282456000047 ], [ -120.036960850999904, 51.230285638000083 ], [ -120.03695128899993, 51.230434375000073 ], [ -120.037056208999942, 51.230431650000085 ], [ -120.037091706999917, 51.230970421000066 ], [ -120.037520774999962, 51.230959276000092 ], [ -120.037548492999989, 51.231379894000042 ], [ -120.037749782999981, 51.231384993000106 ], [ -120.037745026999929, 51.23145903000006 ], [ -120.03769784499994, 51.232193203000087 ], [ -120.037601929999965, 51.232190773000113 ], [ -120.037609538999902, 51.232306200000046 ], [ -120.037260190999959, 51.232315275000055 ], [ -120.037251418999944, 51.232451735000033 ], [ -120.036758673999955, 51.232439251000095 ], [ -120.036769124999964, 51.232597873000039 ], [ -120.036522212999969, 51.232604285 ], [ -120.03643101499992, 51.23328062800006 ], [ -120.032751970999939, 51.233086027000112 ], [ -120.031816731000035, 51.233036538000107 ], [ -120.03173428499997, 51.233647483 ], [ -120.031601981999955, 51.234627837000048 ], [ -120.031389514999958, 51.234616593000069 ], [ -120.03093685099995, 51.237970345000065 ], [ -120.025222425999928, 51.237667785000042 ], [ -120.025240932, 51.237530815000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A423B18BBFFD5DC0E000C843BE9E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.963398708999989, 51.239379730000095 ], [ -119.967294702999965, 51.239588179000052 ], [ -119.966983498, 51.239808987000096 ], [ -119.96650661799994, 51.240424306000115 ], [ -119.966016, 51.240814488000076 ], [ -119.964513704999888, 51.241095090000066 ], [ -119.963910713999937, 51.241056594000092 ], [ -119.963150109999916, 51.240832983000104 ], [ -119.962935112999915, 51.239920104000063 ], [ -119.963398708999989, 51.239379730000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "173.7", "sL_BldgLoss": "173.7", "sL_StrLoss": "173.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5A69820F6F85DC0EA2AD5EC1EA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.887927801999965, 51.248655964000065 ], [ -119.893642695999986, 51.24896545900004 ], [ -119.89336474199996, 51.250977501000065 ], [ -119.893148471999936, 51.252542900000037 ], [ -119.892219373999936, 51.252492603000043 ], [ -119.892117266999932, 51.253231522000071 ], [ -119.886401832999965, 51.252921951000097 ], [ -119.886509269999976, 51.252145187000032 ], [ -119.886896605999979, 51.249344541000042 ], [ -119.887825631999974, 51.249394881000114 ], [ -119.887927801999965, 51.248655964000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "84.2", "sL_BldgLoss": "84.2", "sL_StrLoss": "84.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000622CD32F51075EC0CB5E9D00969A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113388474999937, 51.210879872000056 ], [ -120.113506478999938, 51.208993914000104 ], [ -120.112648635999989, 51.208972734000035 ], [ -120.112665495999934, 51.208703312000111 ], [ -120.112236577999965, 51.208692720000087 ], [ -120.112253441999883, 51.208423297000174 ], [ -120.111824524999989, 51.208412703000064 ], [ -120.111925717999924, 51.206796169000022 ], [ -120.114499130999889, 51.206859704000102 ], [ -120.114515981999944, 51.206590281000032 ], [ -120.114944881999918, 51.20660086400008 ], [ -120.114978573999963, 51.206062018000061 ], [ -120.11454967899999, 51.206051435000106 ], [ -120.114566528999958, 51.205782012000036 ], [ -120.112850958999957, 51.20573966300001 ], [ -120.112834099999986, 51.206009086000101 ], [ -120.111118524999938, 51.205966711000038 ], [ -120.111149183999927, 51.205477017000092 ], [ -120.111185996999922, 51.204889022000017 ], [ -120.112202982999975, 51.204914144000085 ], [ -120.112901533999946, 51.204931395000081 ], [ -120.112918389999919, 51.20466197200011 ], [ -120.11459195599997, 51.204703284000125 ], [ -120.114633919999903, 51.204704320000054 ], [ -120.11461707299999, 51.20497374200005 ], [ -120.115045957999953, 51.204984326000023 ], [ -120.115029111999917, 51.2052537490001 ], [ -120.115886889999956, 51.205274910000071 ], [ -120.115870048999966, 51.205544333000034 ], [ -120.116298940999954, 51.205554912000132 ], [ -120.116265261999942, 51.206093759000034 ], [ -120.11669416, 51.206104336000131 ], [ -120.116626810999946, 51.207182030000112 ], [ -120.11619790499995, 51.207171453000043 ], [ -120.11611370199995, 51.208518570000138 ], [ -120.116542619999947, 51.208529148000117 ], [ -120.11649210199991, 51.209337417000071 ], [ -120.11692102899994, 51.209347994000083 ], [ -120.116853678999988, 51.210425689000033 ], [ -120.115566868999935, 51.210393952000082 ], [ -120.115583715999932, 51.210124529000048 ], [ -120.115154783, 51.210113947000096 ], [ -120.115104237999901, 51.210922216 ], [ -120.113388474999937, 51.210879872000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "194.7", "sL_BldgLoss": "194.7", "sL_StrLoss": "194.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009911DE1E04085EC03847E371CDB44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.119543034999978, 51.415632368000068 ], [ -120.120020739999973, 51.412054557000062 ], [ -120.121968765999938, 51.412155669000079 ], [ -120.122100499999988, 51.411168604000096 ], [ -120.123543846999951, 51.41124349800009 ], [ -120.123604856, 51.410786238000114 ], [ -120.124337482999962, 51.410824246000111 ], [ -120.124397646999981, 51.410373256000071 ], [ -120.125370178999958, 51.410423703000049 ], [ -120.125389108999968, 51.410281778000098 ], [ -120.125939478999939, 51.410310324000051 ], [ -120.131126556999945, 51.410579222000045 ], [ -120.130649767999913, 51.414157085000092 ], [ -120.129700106999906, 51.414107872000059 ], [ -120.12967714899996, 51.414106683000078 ], [ -120.129658231999912, 51.414248608000044 ], [ -120.129215705999968, 51.414225673000033 ], [ -120.129047194999941, 51.41354119700005 ], [ -120.128754208999965, 51.412958692000132 ], [ -120.128466206999931, 51.412726597000066 ], [ -120.128124111999966, 51.412682406000052 ], [ -120.127243914999909, 51.412723695000111 ], [ -120.126504321999946, 51.413263504000099 ], [ -120.126250015999986, 51.413418707000041 ], [ -120.124107314999932, 51.413897309000099 ], [ -120.123371780999918, 51.414157893000059 ], [ -120.12292750899999, 51.414577997000038 ], [ -120.12239391, 51.414817283000041 ], [ -120.121442814999952, 51.415063709000123 ], [ -120.120384279999925, 51.41567603700009 ], [ -120.119543034999978, 51.415632368000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "64.8", "sL_BldgLoss": "64.8", "sL_StrLoss": "64.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007ED28193CAFD5DC022B028DBF69E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.962222755999917, 51.241891495000075 ], [ -119.962337130999941, 51.241053923000059 ], [ -119.962719682999975, 51.241050905000165 ], [ -119.963488287999965, 51.241183390000046 ], [ -119.963872108999936, 51.241362786000067 ], [ -119.964462008999988, 51.241392683000122 ], [ -119.965018985999933, 51.24134290800005 ], [ -119.966132698, 51.241080797000031 ], [ -119.966702487999967, 51.240795991000034 ], [ -119.967488897999928, 51.239885886000081 ], [ -119.967859558, 51.239618389000057 ], [ -119.968285989999941, 51.239641195000075 ], [ -119.968053893999951, 51.241342556000106 ], [ -119.967797894999933, 51.243218994000053 ], [ -119.962083225999919, 51.242913245000096 ], [ -119.962222755999917, 51.241891495000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "65", "sL_BldgLoss": "65", "sL_StrLoss": "65", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BEF1AD317F75DC0D2670FCD9FA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.85742514899999, 51.255987750000052 ], [ -119.857469235999943, 51.255670546000054 ], [ -119.857256166999974, 51.255658946000075 ], [ -119.857392434999923, 51.254678495000171 ], [ -119.857395191999984, 51.254658658000075 ], [ -119.857416875999988, 51.254502639000073 ], [ -119.857445862999924, 51.254509745000043 ], [ -119.857939707999932, 51.254630804000115 ], [ -119.858508793999988, 51.254545301000043 ], [ -119.859124803999919, 51.254314598000065 ], [ -119.859289285, 51.254193504000114 ], [ -119.859268891999974, 51.254085311000019 ], [ -119.860397994, 51.253806091000108 ], [ -119.861346308999927, 51.253180901000064 ], [ -119.861698585999974, 51.253081201000064 ], [ -119.862101802999945, 51.25309969500006 ], [ -119.862627194999959, 51.253239288000053 ], [ -119.86309990699999, 51.253236495000124 ], [ -119.863582693999902, 51.253115994000048 ], [ -119.863372942999959, 51.254626722000111 ], [ -119.86314077599999, 51.256298785000105 ], [ -119.85742514899999, 51.255987750000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "33.5", "sL_BldgLoss": "33.5", "sL_StrLoss": "33.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008438837D430D5EC0049ADF9BECB34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.205857323999936, 51.402801030000035 ], [ -120.20658491099999, 51.402838253000027 ], [ -120.207383229999934, 51.40399788500013 ], [ -120.208073960999926, 51.405377758000036 ], [ -120.208125864999928, 51.405509320000085 ], [ -120.208266376999973, 51.405865343000116 ], [ -120.208477804999973, 51.406401077000069 ], [ -120.208622032999983, 51.406766528000112 ], [ -120.20903659399994, 51.407644211000054 ], [ -120.209111, 51.407742356000043 ], [ -120.209234892999945, 51.407905784000015 ], [ -120.209469794999933, 51.408215703000039 ], [ -120.209847645999901, 51.408606224000053 ], [ -120.210054610999961, 51.408820110000143 ], [ -120.210722217999958, 51.409432399000103 ], [ -120.211218285999934, 51.409964797000029 ], [ -120.21141771899994, 51.410342885000055 ], [ -120.21066808199997, 51.410304572000051 ], [ -120.210552495999963, 51.410087490000102 ], [ -120.209918393999928, 51.409398212000035 ], [ -120.207944409999925, 51.407569499000083 ], [ -120.207652703999941, 51.407149289000124 ], [ -120.207358883999973, 51.407025395000055 ], [ -120.207024707999935, 51.406603893000138 ], [ -120.206647790999952, 51.406414506000047 ], [ -120.206388003999933, 51.406192288000064 ], [ -120.206256985999971, 51.405541396000025 ], [ -120.205895187999943, 51.405317814000078 ], [ -120.204082492999987, 51.403222792000079 ], [ -120.203795919999948, 51.402964409000028 ], [ -120.204373430999937, 51.402993966000068 ], [ -120.204380281999988, 51.402941895000055 ], [ -120.205829046999924, 51.403016028000074 ], [ -120.205857323999936, 51.402801030000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "97.1", "sL_BldgLoss": "97.1", "sL_StrLoss": "97.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE633E411E0A5EC01AF594C512BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.15500990399994, 51.463162861000121 ], [ -120.155485245999969, 51.459585072000053 ], [ -120.161229310999957, 51.459880980000023 ], [ -120.160862657999971, 51.462643452000073 ], [ -120.160595714999928, 51.462628000000116 ], [ -120.159606481999958, 51.462306097000067 ], [ -120.159768708999962, 51.46250838800011 ], [ -120.160146196999989, 51.462662198000039 ], [ -120.160652509999949, 51.462854395000079 ], [ -120.160834075, 51.462858796000077 ], [ -120.160754432999966, 51.463458791000086 ], [ -120.15500990399994, 51.463162861000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "135.1", "sL_BldgLoss": "135.1", "sL_StrLoss": "135.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5E6FE2C8EF85DC0F950FDDE819F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.881068063999962, 51.244207196000012 ], [ -119.886782337999989, 51.244517039000151 ], [ -119.886287608999965, 51.248094466000062 ], [ -119.880572877999953, 51.247784600000088 ], [ -119.881068063999962, 51.244207196000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "93.8", "sL_BldgLoss": "93.8", "sL_StrLoss": "93.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8082DD2A1F45DC08CD7DDB81CAC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.824009684999979, 51.342682492000073 ], [ -119.825846628, 51.342551048000075 ], [ -119.825507354999928, 51.344974474000082 ], [ -119.824846120999936, 51.344938359000118 ], [ -119.824787643999954, 51.345355989000041 ], [ -119.824176630999887, 51.345322615000072 ], [ -119.824126134999972, 51.345683204000075 ], [ -119.823553268999916, 51.345651909000082 ], [ -119.823466041999936, 51.346274718000075 ], [ -119.81773906399998, 51.345961707000079 ], [ -119.817814798999976, 51.345421459000143 ], [ -119.817830490999938, 51.345404212000048 ], [ -119.818312088999932, 51.345069508000087 ], [ -119.819023585999958, 51.344727696000092 ], [ -119.820379524999964, 51.344344603000053 ], [ -119.822162318999943, 51.343230808000058 ], [ -119.824009684999979, 51.342682492000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "143", "sL_BldgLoss": "143", "sL_StrLoss": "143", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005F6DA647B065EC04DE241ED96974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.099685550999936, 51.182773586000053 ], [ -120.099689045999952, 51.182747359000054 ], [ -120.098405100999955, 51.182715498000043 ], [ -120.098455887999989, 51.181907237000068 ], [ -120.09979655599993, 51.181940506000046 ], [ -120.099819981999985, 51.181764679000089 ], [ -120.09984634599999, 51.181779868000042 ], [ -120.101825346999988, 51.182222682000045 ], [ -120.10417148599997, 51.182747606000149 ], [ -120.104052396999961, 51.182962760000031 ], [ -120.103989981000012, 51.183075492000057 ], [ -120.103941498999944, 51.183222730000075 ], [ -120.103657019999929, 51.184086864000079 ], [ -120.103639623, 51.184757111000117 ], [ -120.103648030999963, 51.184811554000071 ], [ -120.10371373699995, 51.18523655900006 ], [ -120.10382257699996, 51.185940538000139 ], [ -120.104016808999972, 51.186370531000108 ], [ -120.104204197999977, 51.186613700000066 ], [ -120.098724224999941, 51.18632678700002 ], [ -120.099201137999898, 51.182748213000082 ], [ -120.099685550999936, 51.182773586000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41.1", "sL_BldgLoss": "41.1", "sL_StrLoss": "41.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A958FAC55085EC03526824080994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.127737182999979, 51.199430759000059 ], [ -120.127837178, 51.198676997000064 ], [ -120.132687847999989, 51.199094527000085 ], [ -120.133085158999947, 51.199709294000108 ], [ -120.127737182999979, 51.199430759000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "117.9", "sL_BldgLoss": "117.9", "sL_StrLoss": "117.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B0C1A9F6EFB5DC06E8B321B649F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.926020347999966, 51.243303732000065 ], [ -119.931734816999978, 51.243611304000083 ], [ -119.931357954999925, 51.246356824000031 ], [ -119.93127098399998, 51.246990386000029 ], [ -119.930922007999982, 51.247122285000039 ], [ -119.930855905999948, 51.247168066000071 ], [ -119.929758679999978, 51.247109029000065 ], [ -119.925528798999963, 51.246881335000047 ], [ -119.926020347999966, 51.243303732000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "30.2", "sL_BldgLoss": "30.2", "sL_StrLoss": "30.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F69F4EDC9E0B5EC0FEC0B05733BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.181112741999968, 51.453034366000097 ], [ -120.182819203999912, 51.453121932000016 ], [ -120.182687113999947, 51.453505681000131 ], [ -120.182592168999989, 51.453781574000082 ], [ -120.182081016999931, 51.455266417000075 ], [ -120.182077990999943, 51.455275270000037 ], [ -120.182029812999971, 51.455418435000055 ], [ -120.181611088999929, 51.456662143000116 ], [ -120.181330726999988, 51.456647756000088 ], [ -120.180502970999939, 51.456605276000118 ], [ -120.180927212999975, 51.455149486000046 ], [ -120.180941019999949, 51.453513107000049 ], [ -120.181083887999989, 51.453067293000075 ], [ -120.181112741999968, 51.453034366000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.2", "sL_BldgLoss": "34.2", "sL_StrLoss": "34.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB6CEEE08EE75DC006F45F73D0954940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.617963456999988, 51.169869241000121 ], [ -119.619735725999959, 51.169829541000091 ], [ -119.619796842999932, 51.170907480000082 ], [ -119.616367514999965, 51.170984277000052 ], [ -119.61631548299999, 51.170065377000086 ], [ -119.617963456999988, 51.169869241000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "106.9", "sL_BldgLoss": "106.9", "sL_StrLoss": "106.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DA21DFD90095EC087E401B89BAB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.148870340999906, 51.344238190000034 ], [ -120.149027316999963, 51.343054654000113 ], [ -120.146715853, 51.342935033000096 ], [ -120.147190572999975, 51.339356844000058 ], [ -120.14862438399993, 51.339431051000069 ], [ -120.148798076, 51.338121378000011 ], [ -120.15136285199999, 51.338254072000126 ], [ -120.151982113999964, 51.338286102000076 ], [ -120.152465397999933, 51.340005428000083 ], [ -120.151191882999925, 51.341526636000076 ], [ -120.148989904999922, 51.344244377000045 ], [ -120.148870340999906, 51.344238190000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "120", "sL_BldgLoss": "120", "sL_StrLoss": "120", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008510E3778BF65DC0892D56370BA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.855242885999985, 51.252501610000095 ], [ -119.85392810699993, 51.252102789000055 ], [ -119.853345814999926, 51.252206798000067 ], [ -119.85245740799995, 51.251508895000043 ], [ -119.851915691999963, 51.251323696000078 ], [ -119.851462507999955, 51.251397796000063 ], [ -119.850690813999933, 51.251228306000044 ], [ -119.850090295000015, 51.251251087000114 ], [ -119.84982502099993, 51.251114396000084 ], [ -119.849337487999904, 51.250640096000012 ], [ -119.84959399899995, 51.250382293000044 ], [ -119.849568210999905, 51.250194403000066 ], [ -119.849276095999969, 51.24988670500008 ], [ -119.848598920999962, 51.249831197000105 ], [ -119.847200994999966, 51.249496503000096 ], [ -119.847079649999912, 51.249495202000062 ], [ -119.847126847999931, 51.24915612900007 ], [ -119.847196488999913, 51.248655823000036 ], [ -119.852911097999979, 51.248967377000035 ], [ -119.852850927999981, 51.249400046000126 ], [ -119.853710001999943, 51.249446857000116 ], [ -119.853691586999929, 51.2495792940001 ], [ -119.856133031999917, 51.249712291000058 ], [ -119.855828533999954, 51.251902901000044 ], [ -119.85574501799999, 51.252503687000079 ], [ -119.855242885999985, 51.252501610000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "152.7", "sL_BldgLoss": "152.7", "sL_StrLoss": "152.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FCE8F1AAEF35DC06BEE8DC6C6A04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.810507603999923, 51.252367290000116 ], [ -119.811541991999931, 51.252424039000097 ], [ -119.811468395999924, 51.252699503 ], [ -119.81121430899999, 51.253497092000032 ], [ -119.810749900999966, 51.254110902000065 ], [ -119.80923938799998, 51.255190513000066 ], [ -119.809191093999985, 51.256036514000087 ], [ -119.808986179999962, 51.256661698000109 ], [ -119.807942002999937, 51.257865087000013 ], [ -119.807773601999969, 51.258409206000053 ], [ -119.807887684999955, 51.258856391000066 ], [ -119.808301098999962, 51.259548609000056 ], [ -119.808266386, 51.259665297000019 ], [ -119.807630062999934, 51.260330778000082 ], [ -119.806797984999932, 51.260285108000069 ], [ -119.804402304999911, 51.260153586000065 ], [ -119.804903779, 51.256576565000074 ], [ -119.805708708999987, 51.256620761000093 ], [ -119.806147105999983, 51.253492786000066 ], [ -119.806521845999924, 51.253513361000103 ], [ -119.806593014999976, 51.253005496000128 ], [ -119.807384712999948, 51.2530489580001 ], [ -119.807503322999935, 51.252202416000046 ], [ -119.810507603999923, 51.252367290000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "236.8", "sL_BldgLoss": "236.8", "sL_StrLoss": "236.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000901F7DD542FC5DC0A458EA30919F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.939514741999986, 51.249352015000099 ], [ -119.93977012299996, 51.247489165000069 ], [ -119.939721544999969, 51.247490386000017 ], [ -119.939703641999969, 51.247209808000093 ], [ -119.939563462999928, 51.247206140000081 ], [ -119.939569313999954, 51.247118046000054 ], [ -119.93753978299992, 51.247008994000034 ], [ -119.937590183999959, 51.246964204000051 ], [ -119.937942994999943, 51.246405994000028 ], [ -119.937898085999933, 51.245715208000085 ], [ -119.937668457999962, 51.24539641500008 ], [ -119.937598497999971, 51.245299290000041 ], [ -119.937583712999981, 51.245057187000079 ], [ -119.937360181999949, 51.244694001000028 ], [ -119.937303689999951, 51.244637816000072 ], [ -119.937397596999972, 51.243953019000138 ], [ -119.93804270399994, 51.243930707000054 ], [ -119.938480091999978, 51.244046014000034 ], [ -119.938763598999984, 51.244020393000028 ], [ -119.939227180999964, 51.243495653000075 ], [ -119.943187799999961, 51.243708391000027 ], [ -119.943120918999966, 51.24419659300009 ], [ -119.942883576999961, 51.245928954000114 ], [ -119.945720073999922, 51.246081225000054 ], [ -119.945230085999953, 51.249658902000121 ], [ -119.939514741999986, 51.249352015000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "211.4", "sL_BldgLoss": "211.4", "sL_StrLoss": "211.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BA7F82A3FF25DC07BC6DF724CA34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.78737769599995, 51.271068290000102 ], [ -119.790791298999977, 51.271256151000074 ], [ -119.790519013999955, 51.271719804000057 ], [ -119.790560577999941, 51.272401999000067 ], [ -119.790412196999981, 51.273503011000045 ], [ -119.790249508, 51.273921693000027 ], [ -119.78926360799997, 51.274898697000033 ], [ -119.788823804999979, 51.275466898000055 ], [ -119.787960797999972, 51.276134895000098 ], [ -119.786119682, 51.277203095000068 ], [ -119.784683091999938, 51.277643098000063 ], [ -119.783422385, 51.278607306 ], [ -119.78276278499996, 51.27931659300004 ], [ -119.782622603, 51.279859196000046 ], [ -119.782408206999946, 51.280106989000032 ], [ -119.78235435199997, 51.280434893000077 ], [ -119.779373469999953, 51.280270663000145 ], [ -119.779877193999965, 51.276693828000134 ], [ -119.780966114999956, 51.276753831000057 ], [ -119.781081686000022, 51.27593295500008 ], [ -119.783260727999959, 51.276052995000086 ], [ -119.783403137, 51.27504110700005 ], [ -119.783798833999938, 51.275062900000123 ], [ -119.783861241999887, 51.274619416000029 ], [ -119.785110514999928, 51.274688214000051 ], [ -119.7852290269999, 51.273845846000043 ], [ -119.785688091999958, 51.273871123000042 ], [ -119.785756230999965, 51.273386757000061 ], [ -119.78632239699995, 51.273417929000054 ], [ -119.786405434999978, 51.272827571000093 ], [ -119.786504805999954, 51.272833042000045 ], [ -119.786567953999963, 51.272384074000087 ], [ -119.787187853999981, 51.272418201000093 ], [ -119.78737769599995, 51.271068290000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "125.4", "sL_BldgLoss": "125.4", "sL_StrLoss": "125.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F9A1EB95A095EC06A7AFD07609E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.144494365999975, 51.235148071000047 ], [ -120.146865065999947, 51.235271116000014 ], [ -120.147035012999964, 51.235413908000055 ], [ -120.149644977999927, 51.237231193000071 ], [ -120.149950638999911, 51.237399927000119 ], [ -120.149735908999986, 51.239023192000097 ], [ -120.148607193999908, 51.238964649000124 ], [ -120.148585565999937, 51.2391281190001 ], [ -120.14526071799996, 51.238955603000072 ], [ -120.14287019599999, 51.238831505000114 ], [ -120.143344109999987, 51.235252945000063 ], [ -120.143667818999987, 51.235269752000093 ], [ -120.144472723999968, 51.235311540000033 ], [ -120.144494365999975, 51.235148071000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5570417", "BldgCostT": "3841667", "sL_LossRatio": "1", "sL_AssetLoss": "320.7", "sL_BldgLoss": "320.7", "sL_StrLoss": "320.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB20EC90F2085EC0790416444DBA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.139358522999913, 51.458900940000106 ], [ -120.139657248999953, 51.456658361000088 ], [ -120.139132473999936, 51.456631237000096 ], [ -120.139287500999913, 51.455467440000071 ], [ -120.13605785299994, 51.455300455000057 ], [ -120.136076028999923, 51.455164079000028 ], [ -120.134578414999908, 51.455086615000027 ], [ -120.134604536999959, 51.454890656000039 ], [ -120.130711798999982, 51.454689210000048 ], [ -120.131189018999976, 51.451111492000109 ], [ -120.131939685999939, 51.451150349000059 ], [ -120.132394990999927, 51.451966396000046 ], [ -120.132958819999928, 51.452141504000039 ], [ -120.134129603999952, 51.452286799000056 ], [ -120.134438419999952, 51.452420696000061 ], [ -120.136018514999961, 51.452719790000067 ], [ -120.136637498999917, 51.452941894000041 ], [ -120.137224204999953, 51.453010292000108 ], [ -120.138990216999971, 51.453521599000069 ], [ -120.140449512999965, 51.453673994000027 ], [ -120.141885012999978, 51.454203793000012 ], [ -120.142888884999948, 51.454740707000077 ], [ -120.14324551, 51.454776308000127 ], [ -120.143612692999923, 51.454650988000019 ], [ -120.144704097999949, 51.453786494000049 ], [ -120.145105008999948, 51.453373501000065 ], [ -120.145116633999947, 51.453338041000023 ], [ -120.145352140999989, 51.453350203000056 ], [ -120.145351756999929, 51.453353086000028 ], [ -120.145895023999969, 51.453381138000076 ], [ -120.145940521999975, 51.453383487000046 ], [ -120.145650494999984, 51.455563274000035 ], [ -120.146872544999937, 51.455626365000072 ], [ -120.146396546999966, 51.459204132000117 ], [ -120.145110365999955, 51.459137730000045 ], [ -120.145102389999977, 51.459197663000118 ], [ -120.139846326999987, 51.458926151000057 ], [ -120.139358522999913, 51.458900940000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "107.5", "sL_BldgLoss": "107.5", "sL_StrLoss": "107.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D9B587D81095EC0CB3946ECF2AA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.14927996599998, 51.333704765000057 ], [ -120.150715411999983, 51.333779039000135 ], [ -120.151480997999926, 51.336503189000027 ], [ -120.151360110999946, 51.337415157000081 ], [ -120.150680532999928, 51.337380001000028 ], [ -120.145632020999969, 51.337118713000052 ], [ -120.146106764999971, 51.333540507000059 ], [ -120.14927996599998, 51.333704765000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "150.9", "sL_BldgLoss": "150.9", "sL_StrLoss": "150.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068D9E608110D5EC0B826595E24B64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.20460820699995, 51.420037011000069 ], [ -120.20548747, 51.419274078000051 ], [ -120.206568666999942, 51.419329373000025 ], [ -120.206554891999986, 51.419434084000045 ], [ -120.207960127999954, 51.419505935000132 ], [ -120.207959793999962, 51.419508477000143 ], [ -120.208577451999972, 51.419540052000045 ], [ -120.207088475999967, 51.420920607000092 ], [ -120.20681879499989, 51.421277710000069 ], [ -120.206353807999903, 51.421893397000105 ], [ -120.206325373999931, 51.421940931000044 ], [ -120.206048198999909, 51.422404621000062 ], [ -120.20577001599996, 51.422872227000084 ], [ -120.205587201999961, 51.42329510800009 ], [ -120.205309630999935, 51.423955420000077 ], [ -120.204943023999959, 51.425039863000109 ], [ -120.204734550999945, 51.425547911000081 ], [ -120.20451472799995, 51.425876448000047 ], [ -120.204443235999975, 51.425983285000036 ], [ -120.203985078999921, 51.426423650000089 ], [ -120.203498183999969, 51.426757165000083 ], [ -120.203156884999913, 51.426739705000024 ], [ -120.201445070999952, 51.426652119000018 ], [ -120.201425608999926, 51.426014403000075 ], [ -120.202026998999884, 51.425336490000042 ], [ -120.201907313999939, 51.425179790000108 ], [ -120.201389388999957, 51.424933409000076 ], [ -120.201050681999959, 51.424376600000109 ], [ -120.201042913999942, 51.423559094000105 ], [ -120.20115321599998, 51.423399598000117 ], [ -120.201448418999945, 51.423279896000075 ], [ -120.201655282999937, 51.422960897000088 ], [ -120.202258987999954, 51.422480996000054 ], [ -120.202589195999963, 51.422039506000083 ], [ -120.203386402999982, 51.421465506000118 ], [ -120.203903807999964, 51.420739203000068 ], [ -120.20460820699995, 51.420037011000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73.9", "sL_BldgLoss": "73.9", "sL_StrLoss": "73.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000159526084B0B5EC03227C34C36BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.174726099999958, 51.45288400500003 ], [ -120.178516296999959, 51.453078676000089 ], [ -120.178463023999939, 51.455629401000067 ], [ -120.178305586999954, 51.456112211000097 ], [ -120.177959210999987, 51.456652287000068 ], [ -120.174252392999946, 51.456461899000068 ], [ -120.174726099999958, 51.45288400500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38.7", "sL_BldgLoss": "38.7", "sL_StrLoss": "38.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000021D18060D005EC0EFC750C28A9E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.999245350999942, 51.239423313000039 ], [ -119.99944164399993, 51.237976819000025 ], [ -120.004058619999938, 51.238222353000083 ], [ -120.003972699999963, 51.238465994000144 ], [ -120.003554589999965, 51.238500190000082 ], [ -120.002790287999971, 51.238372006000056 ], [ -120.002053019999963, 51.238461697000027 ], [ -120.001391683999913, 51.238732290000065 ], [ -119.999999198999944, 51.239586788000018 ], [ -119.999595816999943, 51.239588307000069 ], [ -119.999363001999953, 51.239531298000045 ], [ -119.999245350999942, 51.239423313000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.8", "sL_BldgLoss": "42.8", "sL_StrLoss": "42.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E4E27F5D93065EC079DA2B3D64994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.100366246999926, 51.200025773000085 ], [ -120.100723311999971, 51.197346679000077 ], [ -120.106433055999958, 51.197645436000066 ], [ -120.106278542999945, 51.198805915000094 ], [ -120.106022790999987, 51.198770401000083 ], [ -120.104751215999954, 51.198243502000096 ], [ -120.103565094999979, 51.198223500000033 ], [ -120.102508796999984, 51.198385906000034 ], [ -120.101907392999934, 51.198640790000105 ], [ -120.101512882999955, 51.198981193000115 ], [ -120.101530579999945, 51.199378598000045 ], [ -120.101851809999928, 51.200213106000014 ], [ -120.101700093999938, 51.200344202000039 ], [ -120.101325712999966, 51.200362693000045 ], [ -120.100672995999957, 51.200067895000068 ], [ -120.100366246999926, 51.200025773000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "88.9", "sL_BldgLoss": "88.9", "sL_StrLoss": "88.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A3452E7B80A5EC04B28339449BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.164901098999977, 51.453433778000054 ], [ -120.17064442599991, 51.453729212000027 ], [ -120.170170377999952, 51.457307085000132 ], [ -120.164426587999927, 51.457011629000078 ], [ -120.164901098999977, 51.453433778000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38.7", "sL_BldgLoss": "38.7", "sL_StrLoss": "38.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005625F4A70BF75DC04E6483D85BA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.859113898999937, 51.253900100000074 ], [ -119.858030418999931, 51.253081207000015 ], [ -119.85775964599999, 51.253079974000059 ], [ -119.857614683999941, 51.253079314000054 ], [ -119.857631050999913, 51.252961545000069 ], [ -119.857753323999944, 51.252081674000124 ], [ -119.863468449999957, 51.25239269300004 ], [ -119.86342441, 51.252709901000124 ], [ -119.863637465999886, 51.252721489000095 ], [ -119.863606658999942, 51.252943377000115 ], [ -119.863429484999955, 51.253012905000048 ], [ -119.862683089999976, 51.252985798000054 ], [ -119.861749601999918, 51.25273940600011 ], [ -119.860816723999932, 51.253183806000024 ], [ -119.860408099999958, 51.253518488000068 ], [ -119.859113898999937, 51.253900100000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "36.6", "sL_BldgLoss": "36.6", "sL_StrLoss": "36.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F53C2C927E095EC06853BF1C87A94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.145833339999967, 51.325535239000054 ], [ -120.145903396999984, 51.32500708900011 ], [ -120.145774976999974, 51.325000438000124 ], [ -120.146014247999986, 51.323196531000058 ], [ -120.147851531999919, 51.323171429000084 ], [ -120.150657594999956, 51.323181304000109 ], [ -120.15079647099995, 51.325792171000096 ], [ -120.147879126999925, 51.325641172000104 ], [ -120.145833339999967, 51.325535239000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "100.1", "sL_BldgLoss": "100.1", "sL_StrLoss": "100.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000633C31889BFA5DC04B7E1F694B9E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.913132417999989, 51.234733417000015 ], [ -119.91884569399997, 51.235041643000073 ], [ -119.918756421999973, 51.235690783000109 ], [ -119.918353657999916, 51.238619246000077 ], [ -119.912639924999979, 51.238310995000049 ], [ -119.913043063999922, 51.235382552000011 ], [ -119.913132417999989, 51.234733417000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "61.4", "sL_BldgLoss": "61.4", "sL_StrLoss": "61.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EAF6E50E13F45DC01FE6A28C7EAC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.816599404999963, 51.346432386000053 ], [ -119.816924664999988, 51.346295812000072 ], [ -119.816579985, 51.348754071000016 ], [ -119.81571132099999, 51.348706563000079 ], [ -119.81569894899998, 51.348794792 ], [ -119.809971698999988, 51.348481390000103 ], [ -119.810176556, 51.347021945000037 ], [ -119.810388796999973, 51.347013499000099 ], [ -119.810967902999934, 51.346846897000056 ], [ -119.811454191999928, 51.346834097000055 ], [ -119.812914801999966, 51.346529309000061 ], [ -119.814206911999932, 51.346499401000088 ], [ -119.814717694999899, 51.34641389500009 ], [ -119.816599404999963, 51.346432386000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "92.7", "sL_BldgLoss": "92.7", "sL_StrLoss": "92.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ACDF8E6829F35DC0E9A27C9CC4AC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.79607480599999, 51.351058304000027 ], [ -119.796577984999928, 51.347481656000063 ], [ -119.797547314999946, 51.347534837000119 ], [ -119.797575748999947, 51.34733267900009 ], [ -119.798200120999937, 51.347366930000049 ], [ -119.798164490000019, 51.347917897000109 ], [ -119.799164606999966, 51.349017410000016 ], [ -119.799343891999968, 51.349131295000056 ], [ -119.799630388999972, 51.349132805000089 ], [ -119.800392013999939, 51.348907700000034 ], [ -119.801127215999955, 51.34891770800008 ], [ -119.80179240199999, 51.348775299000039 ], [ -119.802341807999966, 51.348608601000095 ], [ -119.80322667199999, 51.348188187000055 ], [ -119.802800123999987, 51.351223384000093 ], [ -119.801830705999976, 51.35117024900007 ], [ -119.801802289999927, 51.351372406000067 ], [ -119.79607480599999, 51.351058304000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "112", "sL_BldgLoss": "112", "sL_StrLoss": "112", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000093D89C203D0A5EC0E25BF50C23AE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.158975754999972, 51.358591449000137 ], [ -120.163083328999974, 51.3588034610001 ], [ -120.162609687999947, 51.362381647000078 ], [ -120.156878286, 51.362085780000029 ], [ -120.156947464999945, 51.36156370500003 ], [ -120.157352388999968, 51.358507618000012 ], [ -120.158975754999972, 51.358591449000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438916", "BldgCostT": "2371666", "sL_LossRatio": "1", "sL_AssetLoss": "206.9", "sL_BldgLoss": "206.9", "sL_StrLoss": "206.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000419CA82141035EC02618CE35CC9B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.043967310999932, 51.221558174000094 ], [ -120.043980868999981, 51.221346664000158 ], [ -120.043763278999947, 51.221352327000062 ], [ -120.04375870599992, 51.221283058000054 ], [ -120.043559047999935, 51.221278011000045 ], [ -120.043555570999914, 51.221277924000027 ], [ -120.043567773999939, 51.221087571000062 ], [ -120.043316521999884, 51.221094110000088 ], [ -120.043310435999956, 51.221001883000042 ], [ -120.043143834999981, 51.220997670000052 ], [ -120.043195657999945, 51.220189455000131 ], [ -120.043256918999987, 51.220191004000071 ], [ -120.043245407, 51.220016574000113 ], [ -120.043637088999958, 51.220006380000065 ], [ -120.04365549, 51.219719368000035 ], [ -120.043638809999948, 51.219466642000036 ], [ -120.043671746999962, 51.219465783000032 ], [ -120.04367647199993, 51.219392085000074 ], [ -120.04406423099999, 51.219401888000036 ], [ -120.044049983999955, 51.219186091000076 ], [ -120.044119478000013, 51.219184282000093 ], [ -120.044122730999916, 51.219133525000089 ], [ -120.04447679899999, 51.219142474000101 ], [ -120.044461154999979, 51.218905538000058 ], [ -120.044567204999908, 51.218902778 ], [ -120.04456898699999, 51.218874963000083 ], [ -120.044889362, 51.218883059000063 ], [ -120.044872321999961, 51.218624985000126 ], [ -120.045014924999919, 51.218621272000107 ], [ -120.045015237999934, 51.218616399000034 ], [ -120.0451100499999, 51.218618795000047 ], [ -120.045875722999966, 51.218598852000106 ], [ -120.045890465999932, 51.218368671000107 ], [ -120.046144879999972, 51.218375098000074 ], [ -120.046141377999945, 51.218322084000057 ], [ -120.047184222999988, 51.218294911000051 ], [ -120.047194666999985, 51.21813177100006 ], [ -120.047418229999934, 51.21813741600009 ], [ -120.047410414999973, 51.21801916900008 ], [ -120.048062313999935, 51.218002177000102 ], [ -120.048069875999929, 51.217884027000061 ], [ -120.048691565999917, 51.217899720000041 ], [ -120.048679436999976, 51.217716241000112 ], [ -120.04782155599996, 51.217738606000083 ], [ -120.047812903999954, 51.217607698000045 ], [ -120.04551326099994, 51.217549616000071 ], [ -120.045565036, 51.216741397000078 ], [ -120.045607369999985, 51.216742467000046 ], [ -120.045605683999952, 51.216716958000056 ], [ -120.046427297999969, 51.216695554000076 ], [ -120.046440226, 51.216493666000055 ], [ -120.046880677999923, 51.216504790000137 ], [ -120.046874681999924, 51.216414050000019 ], [ -120.048161466999915, 51.216380509000032 ], [ -120.04817183699997, 51.216537392000063 ], [ -120.050300934999925, 51.216591120000054 ], [ -120.050312143999946, 51.216415864000098 ], [ -120.050306106, 51.216324580000055 ], [ -120.050318000999965, 51.216324269000047 ], [ -120.05031816499995, 51.216321713000056 ], [ -120.050367912999945, 51.216322967000039 ], [ -120.05202181099996, 51.21627980700007 ], [ -120.051986156999988, 51.215741044000062 ], [ -120.052415076999949, 51.21572984700007 ], [ -120.052325934999942, 51.214382937000082 ], [ -120.052590795999961, 51.21437602300005 ], [ -120.052600732999963, 51.214220537000116 ], [ -120.052745075999923, 51.214224174000044 ], [ -120.052737012999941, 51.214102358000083 ], [ -120.053038423999936, 51.214094488000065 ], [ -120.053046890999894, 51.21396194000009 ], [ -120.05433372899995, 51.213994365000097 ], [ -120.054264906999933, 51.21507199800007 ], [ -120.055380988999957, 51.215100110000087 ], [ -120.055363974999977, 51.214843283000079 ], [ -120.055568788999921, 51.214837931000069 ], [ -120.055568975999961, 51.214835002000065 ], [ -120.055625936999903, 51.21483643600002 ], [ -120.056429512999955, 51.214815433000112 ], [ -120.056444076999981, 51.214587194000117 ], [ -120.05663628399999, 51.214592032000063 ], [ -120.056615, 51.214270889000055 ], [ -120.056894368999963, 51.214263585000019 ], [ -120.056907410999955, 51.214059173000116 ], [ -120.05703082199993, 51.214062280000107 ], [ -120.057026049999976, 51.213990295000031 ], [ -120.057341970999971, 51.213982034000011 ], [ -120.057353546999963, 51.213800560000045 ], [ -120.05744326699994, 51.213802818000019 ], [ -120.057437095999958, 51.213709699000034 ], [ -120.057789565999911, 51.213700482000071 ], [ -120.05779967799999, 51.213541945000053 ], [ -120.059086507999965, 51.213574318000042 ], [ -120.059080617999925, 51.213666709000108 ], [ -120.059152692999987, 51.213664823000045 ], [ -120.059164716999987, 51.213846126000064 ], [ -120.06035617299996, 51.213876086000077 ], [ -120.06035444299998, 51.213903221000052 ], [ -120.060457260999939, 51.213900531000036 ], [ -120.060484758999948, 51.21431491500006 ], [ -120.060510887999925, 51.214708670000043 ], [ -120.060302763, 51.214714118000124 ], [ -120.060287490999912, 51.214953725000015 ], [ -120.060097176999989, 51.214948940000028 ], [ -120.060099851999965, 51.214989277000079 ], [ -120.05924203, 51.215011724000099 ], [ -120.059259899999915, 51.215281105000038 ], [ -120.058546843999963, 51.215299759000075 ], [ -120.058537301999976, 51.215449394000082 ], [ -120.05841153399993, 51.215446230000019 ], [ -120.058419935999964, 51.215572927000011 ], [ -120.05809923799994, 51.215581315000094 ], [ -120.058091155999975, 51.215708011000082 ], [ -120.057999079999973, 51.215705695000061 ], [ -120.058008881999967, 51.215853526000039 ], [ -120.057651623999902, 51.215862870000038 ], [ -120.057645005999959, 51.215966627000029 ], [ -120.055626397999958, 51.21591581400007 ], [ -120.055499765000022, 51.215919124000038 ], [ -120.055482979999979, 51.216182044000064 ], [ -120.05545261799999, 51.216181280000086 ], [ -120.05545320799996, 51.216190188000049 ], [ -120.05505213399999, 51.216200669000138 ], [ -120.055036809999962, 51.21644065000001 ], [ -120.054609751, 51.216429894000051 ], [ -120.054613201999985, 51.216481983000058 ], [ -120.054174119999971, 51.216493453000098 ], [ -120.054161665000024, 51.216688447000102 ], [ -120.052874751999965, 51.216656019000013 ], [ -120.052882984999925, 51.216527173000067 ], [ -120.052572776999952, 51.216535271000097 ], [ -120.052039636999922, 51.216549190000123 ], [ -120.052053592999982, 51.216760054000062 ], [ -120.05207529399992, 51.217087953000032 ], [ -120.051987673999946, 51.217090240000118 ], [ -120.051982370999966, 51.217173206000027 ], [ -120.051650706999979, 51.217164845000056 ], [ -120.051682012999919, 51.21763791300004 ], [ -120.051522728999956, 51.217642070000103 ], [ -120.051518949999945, 51.217701206000086 ], [ -120.051256081999938, 51.217694578000057 ], [ -120.051270896999981, 51.217918490000017 ], [ -120.051075056999963, 51.217923600000084 ], [ -120.051055515999977, 51.218229203000163 ], [ -120.050861447999935, 51.218224308000032 ], [ -120.050877599999978, 51.218468447000085 ], [ -120.05061009399995, 51.218475427000058 ], [ -120.050609302999945, 51.218487791000072 ], [ -120.050368748, 51.218481723000096 ], [ -120.050179696999948, 51.218486654000095 ], [ -120.05016308399999, 51.218746377000059 ], [ -120.050036395999982, 51.218743181 ], [ -120.050037523999933, 51.218760210000028 ], [ -120.049301608999968, 51.218779405000184 ], [ -120.04928786899994, 51.218994136000042 ], [ -120.049193454, 51.218991753000104 ], [ -120.049197434999954, 51.219051969000148 ], [ -120.048423509999921, 51.21907214900007 ], [ -120.048412645999989, 51.219241889000074 ], [ -120.048350503000023, 51.219240320000068 ], [ -120.048357338999907, 51.219343720000097 ], [ -120.047975804999936, 51.219353667000071 ], [ -120.047966407999937, 51.21950046500006 ], [ -120.04753741199994, 51.219489635000052 ], [ -120.047520163999963, 51.219759042000121 ], [ -120.047094987999941, 51.219748305000032 ], [ -120.047106070999973, 51.219916029000061 ], [ -120.046677109999919, 51.219927208000023 ], [ -120.04669490799999, 51.220196590000057 ], [ -120.046632655999986, 51.220198212000113 ], [ -120.046627663999956, 51.22027618700011 ], [ -120.046269866999964, 51.220267149000101 ], [ -120.046301534999927, 51.220746534000099 ], [ -120.046167616999952, 51.220750022000097 ], [ -120.04616414899999, 51.220804163000118 ], [ -120.045875154, 51.220796862000029 ], [ -120.045908155999939, 51.221296475000074 ], [ -120.045702562999978, 51.221301830000058 ], [ -120.045683360999973, 51.22160154200008 ], [ -120.044666361999987, 51.221575844000029 ], [ -120.043967310999932, 51.221558174000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5524500", "BldgCostT": "3810000", "sL_LossRatio": "1", "sL_AssetLoss": "276.5", "sL_BldgLoss": "276.5", "sL_StrLoss": "276.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004915628171005EC0AF656CC7D89E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.006438023000015, 51.243511660000102 ], [ -120.006524266999975, 51.242875429000044 ], [ -120.004769888999988, 51.242782201000068 ], [ -120.00475579499999, 51.242886141000035 ], [ -119.999040913999977, 51.242582259000095 ], [ -119.999178758999932, 51.24156660500006 ], [ -119.998956081999978, 51.241554758000049 ], [ -119.99900391599999, 51.241202319000095 ], [ -119.999167388999979, 51.239997793000072 ], [ -119.999202248999921, 51.239740913000077 ], [ -119.999398718999885, 51.239854595000082 ], [ -120.000000017000033, 51.239911607000089 ], [ -120.000777294, 51.239571211000111 ], [ -120.002408080999899, 51.238740898000067 ], [ -120.002850818999974, 51.238742302000055 ], [ -120.003515010999976, 51.238913202000091 ], [ -120.004003290999933, 51.238871897000131 ], [ -120.004453106999932, 51.238585594000014 ], [ -120.004659195999949, 51.238276592 ], [ -120.00466473699997, 51.238254573000091 ], [ -120.005155933999902, 51.23828068200006 ], [ -120.005141049999906, 51.238390461000073 ], [ -120.010123075999957, 51.238655146000056 ], [ -120.010104887999944, 51.238789411000042 ], [ -120.011381742999944, 51.23885721200007 ], [ -120.011361547999982, 51.23900634000011 ], [ -120.014157163, 51.239154736000096 ], [ -120.013984959999917, 51.240426808000066 ], [ -120.013936797999961, 51.240782570000079 ], [ -120.013672774999989, 51.242732735000082 ], [ -120.012309458999951, 51.242660376000067 ], [ -120.012153072999936, 51.243815168000033 ], [ -120.006438023000015, 51.243511660000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007FB4E66435FB5DC04013C4ED0EA04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.92651136399995, 51.249170868000085 ], [ -119.92692920799999, 51.249160412000066 ], [ -119.926980561999954, 51.249968645000088 ], [ -119.926551271999969, 51.249979389000096 ], [ -119.926585503999931, 51.250518211000042 ], [ -119.926156210999963, 51.250528951000028 ], [ -119.926173324999965, 51.250798362000047 ], [ -119.925744028999929, 51.250809102000126 ], [ -119.925761139999935, 51.251078513000031 ], [ -119.925331841999977, 51.251089251000103 ], [ -119.925348949999929, 51.251358663000119 ], [ -119.924919648999918, 51.251369399000048 ], [ -119.924936755999937, 51.251638811000106 ], [ -119.923219535999976, 51.251681741000077 ], [ -119.923218100999989, 51.251659122000063 ], [ -119.92316824599996, 51.250873505000087 ], [ -119.923597543999904, 51.250862775000066 ], [ -119.923580444, 51.250593363000107 ], [ -119.92400974, 51.250582632000054 ], [ -119.923992638999948, 51.250313220000073 ], [ -119.924421932, 51.250302487000091 ], [ -119.924404828999954, 51.250033075000061 ], [ -119.924834116999989, 51.250022341000033 ], [ -119.924817012999981, 51.249752930000056 ], [ -119.925246299999969, 51.249742194000127 ], [ -119.925212081999931, 51.249203370000025 ], [ -119.92651136399995, 51.249170868000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "114.6", "sL_BldgLoss": "114.6", "sL_StrLoss": "114.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013A48C9732095EC03A3FA463779A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.141597387999951, 51.20476324100013 ], [ -120.145405561999979, 51.204961110000092 ], [ -120.145851695999951, 51.205850341000065 ], [ -120.146415650000023, 51.208090444000092 ], [ -120.146383337999964, 51.208615163000033 ], [ -120.141123656999952, 51.20834191000003 ], [ -120.141597387999951, 51.20476324100013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "104.4", "sL_BldgLoss": "104.4", "sL_StrLoss": "104.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD4596EDBF085EC05EC7B0711A974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.13548859899997, 51.179921441 ], [ -120.137433080999983, 51.180022657000045 ], [ -120.137235281999921, 51.181516756000136 ], [ -120.136761504999953, 51.181119389000074 ], [ -120.13548859899997, 51.179921441 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23876667", "BldgCostT": "16466667", "sL_LossRatio": "1", "sL_AssetLoss": "1281", "sL_BldgLoss": "1281", "sL_StrLoss": "1281", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD0DFD6E55095EC0EFAB9B20A4974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.146201166999958, 51.187407044000096 ], [ -120.146201605999934, 51.187399935 ], [ -120.146189276999934, 51.187399634000066 ], [ -120.145772871999981, 51.187389469000031 ], [ -120.145787714999955, 51.187149360000035 ], [ -120.145789528999984, 51.18712003700012 ], [ -120.145738523999967, 51.187118792 ], [ -120.145360796999938, 51.187109569000036 ], [ -120.145374210999961, 51.186892602000057 ], [ -120.145377453999984, 51.186840138000015 ], [ -120.14528612, 51.186837908000065 ], [ -120.144091267999954, 51.186808726000038 ], [ -120.144124599999941, 51.186269864000103 ], [ -120.143267153999943, 51.186248916000082 ], [ -120.143283822999962, 51.185979484000065 ], [ -120.142928538999939, 51.185970802000085 ], [ -120.141997663999945, 51.185948049000118 ], [ -120.141980989000018, 51.186217480000032 ], [ -120.141123543999981, 51.186196515000063 ], [ -120.141106862999933, 51.186465945000108 ], [ -120.140274364, 51.186445584000118 ], [ -120.140624556999938, 51.186340032000082 ], [ -120.141789709999941, 51.185988840000086 ], [ -120.14295720599992, 51.185636901000059 ], [ -120.143162702999973, 51.185517002000012 ], [ -120.14221762699999, 51.184912872000027 ], [ -120.1410902329999, 51.184192204000084 ], [ -120.139167631999925, 51.182963096000051 ], [ -120.13886758699999, 51.182771295000116 ], [ -120.138141381999944, 51.182276696000073 ], [ -120.13756344399998, 51.181791988000057 ], [ -120.138389662999955, 51.181812215000022 ], [ -120.138372967999942, 51.182081644000114 ], [ -120.138801649999962, 51.182092137000026 ], [ -120.138797778999958, 51.18215462900006 ], [ -120.139496955999959, 51.182191003000064 ], [ -120.13947215799999, 51.182378384000039 ], [ -120.140499699000017, 51.182403522000058 ], [ -120.140516382, 51.182134092000112 ], [ -120.141802430999945, 51.18216554100006 ], [ -120.141785756, 51.18243497100012 ], [ -120.14221444199994, 51.18244545200006 ], [ -120.1421977699999, 51.182714882000013 ], [ -120.14262645799991, 51.182725361000095 ], [ -120.142609786999955, 51.182994792000066 ], [ -120.143038479, 51.183005270000052 ], [ -120.143021809999965, 51.183274699000066 ], [ -120.143284299999962, 51.183281114000067 ], [ -120.143879199999972, 51.183295649000051 ], [ -120.143862535, 51.183565081000026 ], [ -120.144719929999923, 51.183586025000103 ], [ -120.14473659, 51.183316593 ], [ -120.145593982999969, 51.183337531000049 ], [ -120.145643942999939, 51.182529236000036 ], [ -120.146072632999918, 51.182539702000064 ], [ -120.146089284999945, 51.182270271000085 ], [ -120.149947472999912, 51.1823643930001 ], [ -120.149880957999983, 51.18344212300012 ], [ -120.150738355999962, 51.183463023000108 ], [ -120.150688481999907, 51.184271321000075 ], [ -120.150259773999935, 51.184260871000085 ], [ -120.15024314599998, 51.184530304000113 ], [ -120.149814437999964, 51.18451985300004 ], [ -120.149747913999974, 51.18559758300011 ], [ -120.150602822999943, 51.185618422000104 ], [ -120.150591625999951, 51.185840909000071 ], [ -120.150549060999978, 51.186530644000079 ], [ -120.150379713999897, 51.186835500000051 ], [ -120.149975419, 51.187133582000122 ], [ -120.149859142999929, 51.187219318000054 ], [ -120.148790653999981, 51.187193267000048 ], [ -120.148757376999981, 51.18773213200005 ], [ -120.147899900999946, 51.187711216000103 ], [ -120.147883258999954, 51.18798064700006 ], [ -120.14709049899993, 51.187961305000094 ], [ -120.146168297999935, 51.18793879800004 ], [ -120.146201166999958, 51.187407044000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11549250", "BldgCostT": "7965000", "sL_LossRatio": "1", "sL_AssetLoss": "833", "sL_BldgLoss": "833", "sL_StrLoss": "833", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008835F0FE93085EC07FB2B50065964940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.131833673999893, 51.176438039000061 ], [ -120.129803311000018, 51.174484308000032 ], [ -120.130605665999937, 51.174912714000108 ], [ -120.130396197, 51.174719676000073 ], [ -120.13021162699998, 51.174549574000146 ], [ -120.131682982999934, 51.174784772000045 ], [ -120.131987762999984, 51.174676061000127 ], [ -120.132607122999929, 51.173897472000135 ], [ -120.133110242, 51.173264994000114 ], [ -120.135178644999925, 51.171778784000033 ], [ -120.136368577, 51.172515092000076 ], [ -120.137016061999944, 51.172843940000043 ], [ -120.136936177999971, 51.173447423000063 ], [ -120.134838380999895, 51.173338200000089 ], [ -120.134835472999924, 51.173360157000104 ], [ -120.13547829, 51.173375911000058 ], [ -120.135461581999948, 51.173645341000039 ], [ -120.136318786999936, 51.173666343000043 ], [ -120.136302083999965, 51.173935773000061 ], [ -120.136730690999954, 51.173946272000052 ], [ -120.136647185999934, 51.175293421000063 ], [ -120.135472392999986, 51.17526463800008 ], [ -120.135212917000032, 51.177224160000073 ], [ -120.134391897999961, 51.177863010000088 ], [ -120.133691038999984, 51.178225087000079 ], [ -120.133686512999986, 51.17822073100006 ], [ -120.133669224999934, 51.178204116000067 ], [ -120.13276383099992, 51.177332994000082 ], [ -120.132075700999948, 51.176670907000116 ], [ -120.131833673999893, 51.176438039000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "1", "sL_AssetLoss": "132.4", "sL_BldgLoss": "132.4", "sL_StrLoss": "132.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BD146859C065EC086FC96ADB3994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.100246362999954, 51.200925204000036 ], [ -120.100319400999979, 51.200377247000056 ], [ -120.101598506999977, 51.200576302000066 ], [ -120.101865915999952, 51.200465098000052 ], [ -120.106044195999971, 51.200565898000036 ], [ -120.105956564999943, 51.201223984000109 ], [ -120.100246362999954, 51.200925204000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80151167", "BldgCostT": "55276667", "sL_LossRatio": "1", "sL_AssetLoss": "4459.3", "sL_BldgLoss": "4459.3", "sL_StrLoss": "4459.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000091A8E42AD075EC0F1B33632B4974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.111263674999975, 51.19532269700008 ], [ -120.11133249699999, 51.194805320000022 ], [ -120.116203592999952, 51.195059768000107 ], [ -120.116281801999932, 51.19447133300006 ], [ -120.116577938999953, 51.194486796000056 ], [ -120.116796173999916, 51.192844642000097 ], [ -120.117509817999974, 51.192881900000046 ], [ -120.117529264999988, 51.192735540000079 ], [ -120.117586127999985, 51.191824863000065 ], [ -120.118014893999927, 51.191835434000026 ], [ -120.118098991999915, 51.190488311000124 ], [ -120.117670237999945, 51.19047774200007 ], [ -120.117787981999982, 51.188591769000055 ], [ -120.118216715999964, 51.188602339000049 ], [ -120.118270307999964, 51.187743743000063 ], [ -120.118183645999963, 51.187739218000061 ], [ -120.118347644, 51.186504665000029 ], [ -120.11835124699999, 51.186446940000039 ], [ -120.118355298999944, 51.186447040000083 ], [ -120.118391426999963, 51.186175055000056 ], [ -120.117940310999941, 51.186151504000136 ], [ -120.11788889499999, 51.186975221000083 ], [ -120.117460175999923, 51.186964651000011 ], [ -120.117426534999936, 51.187503500000034 ], [ -120.116997808999955, 51.187492928000054 ], [ -120.116980985999973, 51.187762353000117 ], [ -120.116552258999903, 51.187751779000045 ], [ -120.116535433999971, 51.188021205000027 ], [ -120.115249247999913, 51.187989474000069 ], [ -120.115257006999983, 51.187865296 ], [ -120.11531658199999, 51.186911778000059 ], [ -120.115745299999944, 51.1869223550001 ], [ -120.115762131999958, 51.186652932000044 ], [ -120.11619084599999, 51.186663507000077 ], [ -120.116262027999937, 51.185523800000098 ], [ -120.116261428999962, 51.185523769000064 ], [ -120.116262563999967, 51.185515233000039 ], [ -120.116291510999943, 51.185051720000033 ], [ -120.11517572599999, 51.184993441000081 ], [ -120.115364912999922, 51.183569898000087 ], [ -120.115145623999965, 51.183558442000091 ], [ -120.115621184999938, 51.179979789000079 ], [ -120.117282376999952, 51.180066554000064 ], [ -120.11729881399998, 51.17994282700004 ], [ -120.117896521999953, 51.17997404000004 ], [ -120.117897420999938, 51.179959605000064 ], [ -120.118754730999981, 51.179980738000083 ], [ -120.118788347999953, 51.179441888000071 ], [ -120.119086297999942, 51.17944923000006 ], [ -120.11914025399993, 51.179042916000078 ], [ -120.11887277699995, 51.179028952000088 ], [ -120.119282146, 51.175946142000015 ], [ -120.119006834999979, 51.1759393560001 ], [ -120.119020221999975, 51.175724722000083 ], [ -120.120139309999956, 51.175717109000118 ], [ -120.120787373999917, 51.175716279000014 ], [ -120.121655267000023, 51.175715155000049 ], [ -120.121804076999979, 51.175714067000087 ], [ -120.122864661999955, 51.175706196000057 ], [ -120.123137422999946, 51.175707810000084 ], [ -120.123564234999918, 51.175544504000108 ], [ -120.123666545999967, 51.175506639000062 ], [ -120.123786796999951, 51.175462175000106 ], [ -120.12382435799999, 51.175448298000092 ], [ -120.12391334699997, 51.175469031000027 ], [ -120.124042753999987, 51.175499174000031 ], [ -120.124172142999925, 51.175529292000085 ], [ -120.124301549999984, 51.17555943400005 ], [ -120.124385527999962, 51.175579029000062 ], [ -120.124430978999939, 51.175567923000131 ], [ -120.124560540999965, 51.175536296000075 ], [ -120.124690120999958, 51.175504691000093 ], [ -120.124819681999966, 51.17547306200008 ], [ -120.124949261, 51.175441457000062 ], [ -120.125078821999949, 51.175409828000106 ], [ -120.125208399999977, 51.175378223000088 ], [ -120.125337961999946, 51.175346593000043 ], [ -120.125467540000017, 51.175314988000103 ], [ -120.125597101999986, 51.175283359000041 ], [ -120.12572667900001, 51.175251752000079 ], [ -120.125856274999975, 51.175220111000023 ], [ -120.125985815999968, 51.175188517000073 ], [ -120.126115374999983, 51.17515688700005 ], [ -120.126104387999959, 51.17521217900002 ], [ -120.125962316999946, 51.175926853000092 ], [ -120.125912459999967, 51.176177801000037 ], [ -120.125905924999984, 51.176210487000063 ], [ -120.125801440999936, 51.176733247000115 ], [ -120.125797084999974, 51.176755076000092 ], [ -120.125686150999968, 51.17731009500006 ], [ -120.125605327999949, 51.177540090000079 ], [ -120.12554825499997, 51.177699910000037 ], [ -120.125297592999956, 51.178401920000098 ], [ -120.124852466999982, 51.17964830300005 ], [ -120.124450961999955, 51.180772546000128 ], [ -120.124112320999984, 51.181689940000055 ], [ -120.123804944999961, 51.182522580000118 ], [ -120.123618590999925, 51.183060594000061 ], [ -120.123562334, 51.183571157000081 ], [ -120.123500967999959, 51.18410936300009 ], [ -120.123478115999944, 51.184586397000018 ], [ -120.12346437099994, 51.184872294000058 ], [ -120.123474832999975, 51.184958869000106 ], [ -120.123506093999978, 51.185218604000099 ], [ -120.123539801999968, 51.185337073 ], [ -120.123653106999939, 51.185735190000081 ], [ -120.12377710199999, 51.185850962000131 ], [ -120.124158086999941, 51.186206594000069 ], [ -120.124621741999931, 51.186594636000038 ], [ -120.125178627999958, 51.187060694000103 ], [ -120.126198261999903, 51.187890586 ], [ -120.126276145999924, 51.187953955000062 ], [ -120.12635901499999, 51.188021381000091 ], [ -120.124753499999912, 51.188339488000103 ], [ -120.124355015999953, 51.188527492000063 ], [ -120.123808501999974, 51.189485994000087 ], [ -120.123864510999965, 51.190638207000127 ], [ -120.123636318999971, 51.191118097000071 ], [ -120.123333998999911, 51.191363104000082 ], [ -120.12290769099998, 51.191532611000063 ], [ -120.121336892999963, 51.191700600000082 ], [ -120.120896112999901, 51.191887208000068 ], [ -120.120385875999929, 51.192270295000064 ], [ -120.119529385999954, 51.193374102000071 ], [ -120.118485819999975, 51.194032102000051 ], [ -120.11844109299993, 51.194291310000033 ], [ -120.118924103999973, 51.19503188500002 ], [ -120.118942917999959, 51.195194200000103 ], [ -120.118761408999944, 51.19536088500012 ], [ -120.118330004999976, 51.195394985000092 ], [ -120.117378490999954, 51.195281111000092 ], [ -120.115622486999939, 51.195886399000095 ], [ -120.114172017999977, 51.196182597000131 ], [ -120.113571598999926, 51.196393396000111 ], [ -120.11336092199997, 51.196567206000076 ], [ -120.113010398999947, 51.197368989000061 ], [ -120.112647195999912, 51.197908807000097 ], [ -120.112323198999889, 51.198062591000088 ], [ -120.111774393999937, 51.198110991000071 ], [ -120.111109280999983, 51.198086460000098 ], [ -120.110346001, 51.198058305000089 ], [ -120.109516330999952, 51.197789596000092 ], [ -120.109526604999985, 51.197712383000081 ], [ -120.110935970999975, 51.197786043000072 ], [ -120.111263674999975, 51.19532269700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8963417", "BldgCostT": "6181667", "sL_LossRatio": "1", "sL_AssetLoss": "533", "sL_BldgLoss": "533", "sL_StrLoss": "533", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD1233F3CB085EC093E60B3149994940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.138744029999941, 51.195741395 ], [ -120.1396193, 51.195786917000056 ], [ -120.139484910999926, 51.196121390000023 ], [ -120.13931629799994, 51.197250797000052 ], [ -120.139344408999975, 51.19793438900011 ], [ -120.140021708999924, 51.199246105000093 ], [ -120.140189432999946, 51.199419895000105 ], [ -120.139927668999988, 51.199406284000084 ], [ -120.13511747499993, 51.1991560620001 ], [ -120.135591591999955, 51.195577384000082 ], [ -120.138744029999941, 51.195741395 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84421417", "BldgCostT": "58221667", "sL_LossRatio": "1", "sL_AssetLoss": "4913", "sL_BldgLoss": "4913", "sL_StrLoss": "4913", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021080C69FF075EC049E5F579EF984940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.11206343399999, 51.201876426000076 ], [ -120.112119978999957, 51.201451352000078 ], [ -120.11147218799999, 51.201417508000091 ], [ -120.10905036299998, 51.2012909440001 ], [ -120.109176666999929, 51.200341935000054 ], [ -120.109476872999949, 51.19808610500008 ], [ -120.11036012199996, 51.198310398000061 ], [ -120.111094322999918, 51.198354217000016 ], [ -120.111385688000027, 51.198371605000084 ], [ -120.112551009, 51.198283293000081 ], [ -120.112979903999985, 51.198078285000122 ], [ -120.11341961299992, 51.19768378800012 ], [ -120.113564780999965, 51.196968791000124 ], [ -120.113894502999955, 51.196490289000046 ], [ -120.114879301999935, 51.196317890000117 ], [ -120.115333497999927, 51.196166995000077 ], [ -120.115734380999982, 51.196149890000072 ], [ -120.1165886799999, 51.195765295000079 ], [ -120.117230199999966, 51.195566006000035 ], [ -120.1182364899999, 51.195734002000052 ], [ -120.118959293999936, 51.195617215 ], [ -120.119363008999983, 51.195357998000119 ], [ -120.11950858699997, 51.195081705000085 ], [ -120.119102410999972, 51.19447789500002 ], [ -120.119135095999951, 51.194173092 ], [ -120.120090814999941, 51.193342792000081 ], [ -120.121077707, 51.192179192000062 ], [ -120.12150270599993, 51.19201969500007 ], [ -120.123205301999931, 51.191808903000016 ], [ -120.123857600999969, 51.191447092000047 ], [ -120.124387199999916, 51.191011308000093 ], [ -120.124474796999976, 51.190527110000076 ], [ -120.124373383999938, 51.189156997000048 ], [ -120.124622698999985, 51.188839390000048 ], [ -120.125366824999958, 51.188588702000047 ], [ -120.12667609099999, 51.188279432000094 ], [ -120.126676172999936, 51.188279499000025 ], [ -120.126750032999922, 51.188339600000099 ], [ -120.127138273999947, 51.188655597000043 ], [ -120.127228367999933, 51.188894072000039 ], [ -120.12727019499999, 51.189004812000121 ], [ -120.12744490399993, 51.189827443000048 ], [ -120.127529373999963, 51.190225431000037 ], [ -120.128444592999983, 51.189997536000085 ], [ -120.128698998999937, 51.189934186000059 ], [ -120.129659409999974, 51.189659900000066 ], [ -120.129906374999962, 51.189589681000058 ], [ -120.130675680999971, 51.189371009000041 ], [ -120.131590317999937, 51.189110996000117 ], [ -120.1323562379999, 51.188873535000084 ], [ -120.134777143999941, 51.188122963000076 ], [ -120.137145614999952, 51.187388573000106 ], [ -120.137371146999939, 51.187320616000072 ], [ -120.139373816999964, 51.186717015000099 ], [ -120.139341891999948, 51.187232286000039 ], [ -120.138484433999963, 51.187211302000094 ], [ -120.138467735999953, 51.187480731000079 ], [ -120.13803900299996, 51.187470237000049 ], [ -120.138022302999971, 51.18773966700013 ], [ -120.138451036999967, 51.187750161000089 ], [ -120.138334139999955, 51.189636168000071 ], [ -120.137905386999989, 51.189625673000101 ], [ -120.137888684999936, 51.189895101000083 ], [ -120.137459930999967, 51.18988460500006 ], [ -120.137426518999945, 51.190423463000087 ], [ -120.136569001999931, 51.19040246400003 ], [ -120.136552289999912, 51.190671893000079 ], [ -120.136123529999963, 51.190661391000049 ], [ -120.136106814999948, 51.190930820000091 ], [ -120.134820525999885, 51.190899304000041 ], [ -120.134787083999981, 51.191438161000093 ], [ -120.13221448199999, 51.191375086000086 ], [ -120.132197745999989, 51.191644513000035 ], [ -120.132090021999929, 51.191641870000076 ], [ -120.13207457099999, 51.191758448000115 ], [ -120.132312088999953, 51.191770817000084 ], [ -120.132255276999913, 51.192199468000034 ], [ -120.132216662999923, 51.192490813000049 ], [ -120.132535430999923, 51.192507412000069 ], [ -120.132461951, 51.19306184200012 ], [ -120.132789661999979, 51.193078906000096 ], [ -120.132502353999939, 51.195246699000059 ], [ -120.132478173999914, 51.195429129000097 ], [ -120.133678611999969, 51.19545856500006 ], [ -120.133661880999938, 51.195727992000101 ], [ -120.13408390799999, 51.195738338000091 ], [ -120.134090687999958, 51.195738505000108 ], [ -120.134089874999972, 51.195751595000083 ], [ -120.134023768999938, 51.196816217000041 ], [ -120.133833898999939, 51.19681156300004 ], [ -120.133447375999964, 51.199728150000027 ], [ -120.133085158999947, 51.199709294000108 ], [ -120.132687847999989, 51.199094527000085 ], [ -120.127837178, 51.198676997000064 ], [ -120.128133947999956, 51.196439783000052 ], [ -120.126770155999935, 51.196368713000027 ], [ -120.126613050999964, 51.197552813000058 ], [ -120.12348289, 51.197389629000064 ], [ -120.12340843299998, 51.19795048600006 ], [ -120.122633428, 51.197910069000031 ], [ -120.122617503999962, 51.198030004000039 ], [ -120.121565580999984, 51.197975137000128 ], [ -120.121544349999979, 51.198135009000104 ], [ -120.116346323999892, 51.197687039000101 ], [ -120.116434611, 51.199040806000077 ], [ -120.116338511999956, 51.20209968700005 ], [ -120.1157641, 51.202069698000109 ], [ -120.11206343399999, 51.201876426000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59795583", "BldgCostT": "40293333", "sL_LossRatio": "0.999012776747255", "sL_AssetLoss": "3849.18", "sL_BldgLoss": "3845.38", "sL_StrLoss": "3844", "sL_NStrLoss": "1.38", "sL_ContLoss": "3.8", "geom_point": "0101000020E61000001161D3B5FC075EC027851ED640954940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.119020221999975, 51.175724722000083 ], [ -120.119141264999939, 51.173783952000043 ], [ -120.118712667999915, 51.173773388000065 ], [ -120.118796690999957, 51.172426261000055 ], [ -120.119048364999955, 51.172432464000039 ], [ -120.119653860999932, 51.172447385000083 ], [ -120.119670659999926, 51.172177959000095 ], [ -120.120527826999975, 51.172199077000123 ], [ -120.120544620999965, 51.171929651000021 ], [ -120.120973201999973, 51.171940207000027 ], [ -120.12098270200002, 51.171787774000066 ], [ -120.120745951999965, 51.171775416000109 ], [ -120.12099651799997, 51.169887622000026 ], [ -120.120963464999988, 51.169885897000015 ], [ -120.118049593999942, 51.169733746000063 ], [ -120.118187634999927, 51.168694175000091 ], [ -120.116840955999962, 51.168623831000069 ], [ -120.11712656499999, 51.163307102000026 ], [ -120.118793998999934, 51.163394205000046 ], [ -120.118797923999978, 51.163364627000078 ], [ -120.118813787999926, 51.163365456000115 ], [ -120.11920188, 51.160441831000099 ], [ -120.121175064999974, 51.160544874000024 ], [ -120.123061274999969, 51.160643341000089 ], [ -120.123067370999976, 51.160597377000094 ], [ -120.121154403999952, 51.160497511000123 ], [ -120.120877241999921, 51.160483039000049 ], [ -120.120899313999928, 51.160316713000043 ], [ -120.118256166999913, 51.160178668000079 ], [ -120.118731226999927, 51.156599912000097 ], [ -120.120108300999931, 51.156671841000019 ], [ -120.124435851999976, 51.156897772000072 ], [ -120.124413794999981, 51.157064100000092 ], [ -120.124821450999917, 51.157085374000104 ], [ -120.124957785999939, 51.156057155000049 ], [ -120.130515867999975, 51.156347060000073 ], [ -120.130636447999962, 51.15655054900008 ], [ -120.13054903699999, 51.157210370000072 ], [ -120.131042684999954, 51.157236102000084 ], [ -120.13129578899999, 51.157663222000068 ], [ -120.131438583999909, 51.157904195000057 ], [ -120.131658700999949, 51.158727405000022 ], [ -120.13170230299994, 51.159879485000083 ], [ -120.131578225999945, 51.160188696000034 ], [ -120.131176498999977, 51.161189803000127 ], [ -120.12992309599997, 51.162742214000041 ], [ -120.129181314999954, 51.163847391000033 ], [ -120.12866710099999, 51.165211797000033 ], [ -120.128738406, 51.166841085000044 ], [ -120.129025190999968, 51.167496207000056 ], [ -120.12947748499991, 51.168166492000132 ], [ -120.12945039099999, 51.168370935000063 ], [ -120.129664622999925, 51.168376197000086 ], [ -120.129773007999987, 51.168479203000068 ], [ -120.129766567, 51.168582861000083 ], [ -120.129888783999931, 51.168589233000077 ], [ -120.131063092999938, 51.169705213000107 ], [ -120.131863988999967, 51.170165208000071 ], [ -120.134205193999918, 51.171176410000079 ], [ -120.135178644999925, 51.171778784000033 ], [ -120.133110242, 51.173264994000114 ], [ -120.132607122999929, 51.173897472000135 ], [ -120.131987762999984, 51.174676061000127 ], [ -120.131682982999934, 51.174784772000045 ], [ -120.13021162699998, 51.174549574000146 ], [ -120.130396197, 51.174719676000073 ], [ -120.130605665999937, 51.174912714000108 ], [ -120.129803311000018, 51.174484308000032 ], [ -120.12950741, 51.174549098000057 ], [ -120.12857267599999, 51.174685894000092 ], [ -120.12766871599996, 51.174859168000054 ], [ -120.126115374999983, 51.17515688700005 ], [ -120.125985815999968, 51.175188517000073 ], [ -120.125856274999975, 51.175220111000023 ], [ -120.12572667900001, 51.175251752000079 ], [ -120.125597101999986, 51.175283359000041 ], [ -120.125467540000017, 51.175314988000103 ], [ -120.125337961999946, 51.175346593000043 ], [ -120.125208399999977, 51.175378223000088 ], [ -120.125078821999949, 51.175409828000106 ], [ -120.124949261, 51.175441457000062 ], [ -120.124819681999966, 51.17547306200008 ], [ -120.124690120999958, 51.175504691000093 ], [ -120.124560540999965, 51.175536296000075 ], [ -120.124430978999939, 51.175567923000131 ], [ -120.124385527999962, 51.175579029000062 ], [ -120.124301549999984, 51.17555943400005 ], [ -120.124172142999925, 51.175529292000085 ], [ -120.124042753999987, 51.175499174000031 ], [ -120.12391334699997, 51.175469031000027 ], [ -120.12382435799999, 51.175448298000092 ], [ -120.123786796999951, 51.175462175000106 ], [ -120.123666545999967, 51.175506639000062 ], [ -120.123564234999918, 51.175544504000108 ], [ -120.123137422999946, 51.175707810000084 ], [ -120.122864661999955, 51.175706196000057 ], [ -120.121804076999979, 51.175714067000087 ], [ -120.121655267000023, 51.175715155000049 ], [ -120.120787373999917, 51.175716279000014 ], [ -120.120139309999956, 51.175717109000118 ], [ -120.119020221999975, 51.175724722000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15814667", "BldgCostT": "10906667", "sL_LossRatio": "1", "sL_AssetLoss": "997.2", "sL_BldgLoss": "997.2", "sL_StrLoss": "997.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A79ECC2AA075EC0258D768137924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.116109838999989, 51.140209515000066 ], [ -120.114501068999971, 51.138588596000069 ], [ -120.11506472399995, 51.1388368040001 ], [ -120.115960711999932, 51.138903808000101 ], [ -120.117992401, 51.138872393000092 ], [ -120.118098439999969, 51.138844404000075 ], [ -120.11870410799996, 51.138684493000035 ], [ -120.119596622, 51.138589669000062 ], [ -120.119669792, 51.138581892000047 ], [ -120.11971641299999, 51.138584015000085 ], [ -120.12141485299999, 51.138661444000029 ], [ -120.122263194999931, 51.138700095000061 ], [ -120.123535986, 51.13846089700008 ], [ -120.124542297999966, 51.138043725000095 ], [ -120.12529858799995, 51.137730190000156 ], [ -120.126324308999955, 51.137567886000092 ], [ -120.126909234999985, 51.137561288 ], [ -120.128064491999936, 51.137548226000057 ], [ -120.127828172999955, 51.139332205000059 ], [ -120.125156821999965, 51.139192783000084 ], [ -120.125043938999966, 51.141008790000107 ], [ -120.12461564199999, 51.140998253000085 ], [ -120.124582139, 51.141537110000058 ], [ -120.124153837, 51.141526571000099 ], [ -120.124120328999979, 51.142065428000073 ], [ -120.123692021999943, 51.142054888000061 ], [ -120.12367526499996, 51.142324316000078 ], [ -120.123246957999982, 51.142313773000062 ], [ -120.123213436999933, 51.142852630000085 ], [ -120.122785123999932, 51.142842086000087 ], [ -120.122768362, 51.14311151400009 ], [ -120.122628506999902, 51.143108070000025 ], [ -120.122588366999963, 51.143410780000117 ], [ -120.122570702999951, 51.143411407000102 ], [ -120.122049116999932, 51.143542398000122 ], [ -120.120890779999954, 51.144206098000069 ], [ -120.120028722999919, 51.144976602000057 ], [ -120.118931298999925, 51.145606089000076 ], [ -120.117890210999974, 51.14648059600006 ], [ -120.117418508999947, 51.146917798000125 ], [ -120.117480590999946, 51.148215300000132 ], [ -120.117956996, 51.149072606000068 ], [ -120.118046684999953, 51.150016584000113 ], [ -120.116830252999989, 51.149953015000015 ], [ -120.11528757699989, 51.149872377000094 ], [ -120.115365378999968, 51.148754574000101 ], [ -120.115501755999944, 51.146794695000068 ], [ -120.11554097899996, 51.14623155400006 ], [ -120.11560920699999, 51.145250991000104 ], [ -120.115921251, 51.140766712000115 ], [ -120.116109838999989, 51.140209515000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "67.3", "sL_BldgLoss": "67.3", "sL_StrLoss": "67.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3C092482EF55DC0A4744419858D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.828350818999965, 51.103679188000051 ], [ -119.834046662999953, 51.103991742000112 ], [ -119.833566213, 51.107447499000052 ], [ -119.833549253999976, 51.107569475000062 ], [ -119.827852954999969, 51.107256896000116 ], [ -119.828128783999915, 51.105274832000084 ], [ -119.828350818999965, 51.103679188000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "169", "sL_BldgLoss": "169", "sL_StrLoss": "169", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029202F9C92045EC0461871C73C8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.068342023999932, 51.121362869000087 ], [ -120.06852329099999, 51.120007707000106 ], [ -120.06837661899999, 51.119999972000087 ], [ -120.068648443999976, 51.117967681000096 ], [ -120.068855264999982, 51.116421273000078 ], [ -120.074554397999989, 51.116721666000046 ], [ -120.07437332899994, 51.11807684300009 ], [ -120.074519996000035, 51.11808457000005 ], [ -120.07404178799996, 51.121663287000018 ], [ -120.072284718, 51.121570709000125 ], [ -120.068342023999932, 51.121362869000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "103.2", "sL_BldgLoss": "103.2", "sL_StrLoss": "103.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F72EC2CBCF55DC0D4BA0D6A3F8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.837010965000019, 51.101552783000081 ], [ -119.842706596999946, 51.101864901000098 ], [ -119.842209908, 51.105442679000113 ], [ -119.836513821999958, 51.10513053800009 ], [ -119.837010965000019, 51.101552783000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "197.9", "sL_BldgLoss": "197.9", "sL_StrLoss": "197.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC27CA10CD015EC0FB306BF7657B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.025674719000023, 50.96738647700009 ], [ -120.025920481999975, 50.96555567700009 ], [ -120.023533775999937, 50.965428422000045 ], [ -120.024014360999942, 50.961849304000125 ], [ -120.025394157999983, 50.961922878000102 ], [ -120.025584271999946, 50.960506537000079 ], [ -120.031263193999933, 50.960809171000065 ], [ -120.031147052, 50.961675262 ], [ -120.031760937999977, 50.961707959000066 ], [ -120.031574488999951, 50.96309841500004 ], [ -120.032200421999931, 50.963131750000059 ], [ -120.031720478999929, 50.966710898000052 ], [ -120.031487375999944, 50.966698484000105 ], [ -120.031354519999979, 50.967689104000101 ], [ -120.025674719000023, 50.96738647700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "149.3", "sL_BldgLoss": "149.3", "sL_StrLoss": "149.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F0A34AF15F35DC0D9C7AFC4A88A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.797723847999976, 51.079899031000082 ], [ -119.80341643099996, 51.080213142000048 ], [ -119.80291682499994, 51.083790831 ], [ -119.799102728999941, 51.083580406000053 ], [ -119.798771338999984, 51.085951714000046 ], [ -119.798673507, 51.086651723000067 ], [ -119.792980132999958, 51.086337374000088 ], [ -119.793480565999957, 51.082759739000032 ], [ -119.793798723999899, 51.08277731400004 ], [ -119.797294564, 51.082970354000089 ], [ -119.797723847999976, 51.079899031000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "1", "sL_AssetLoss": "45.5", "sL_BldgLoss": "45.5", "sL_StrLoss": "45.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5ECD9317D025EC0174407D198874940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.036011549999955, 51.062058189000084 ], [ -120.036293681999922, 51.059957480000072 ], [ -120.035598783999944, 51.059920582000103 ], [ -120.035928984999885, 51.057461967000059 ], [ -120.036079416999911, 51.056341787000086 ], [ -120.041770637999917, 51.056643858000065 ], [ -120.041488786999977, 51.058744588000131 ], [ -120.042183670999961, 51.05878145100008 ], [ -120.041703500999958, 51.062360262 ], [ -120.038674011999944, 51.062199523000103 ], [ -120.036011549999955, 51.062058189000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "39.1", "sL_BldgLoss": "39.1", "sL_StrLoss": "39.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DA6A0D3DAFC5DC01C6B77F6328E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.952166801999979, 51.109198526000121 ], [ -119.953948823999951, 51.109294360000064 ], [ -119.953461007000016, 51.112872595000084 ], [ -119.947763192999957, 51.112566079000047 ], [ -119.947885443999937, 51.111670251000071 ], [ -119.948251466999949, 51.108987867000117 ], [ -119.952166801999979, 51.109198526000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "93.2", "sL_BldgLoss": "93.2", "sL_StrLoss": "93.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000022E79A55A1065EC05B2C3D814D974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.105710417999944, 51.180298228000069 ], [ -120.106325452999954, 51.180330408000046 ], [ -120.105849139, 51.183909022000066 ], [ -120.105285963999961, 51.183879555000054 ], [ -120.10523583199992, 51.18425613600008 ], [ -120.104751398999937, 51.184230786000057 ], [ -120.104432536999965, 51.186625649000064 ], [ -120.104204197999977, 51.186613700000066 ], [ -120.104016808999972, 51.186370531000108 ], [ -120.10382257699996, 51.185940538000139 ], [ -120.10371373699995, 51.18523655900006 ], [ -120.103648030999963, 51.184811554000071 ], [ -120.103639623, 51.184757111000117 ], [ -120.103657019999929, 51.184086864000079 ], [ -120.103941498999944, 51.183222730000075 ], [ -120.103989981000012, 51.183075492000057 ], [ -120.104052396999961, 51.182962760000031 ], [ -120.10417148599997, 51.182747606000149 ], [ -120.101825346999988, 51.182222682000045 ], [ -120.09984634599999, 51.181779868000042 ], [ -120.099819981999985, 51.181764679000089 ], [ -120.100004641999973, 51.180378728000036 ], [ -120.100567769999913, 51.180408221000071 ], [ -120.100617936999939, 51.180031641000042 ], [ -120.105710417999944, 51.180298228000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "163.8", "sL_BldgLoss": "163.8", "sL_StrLoss": "163.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E5D8D53FE3F05DC09E8E32A8D7894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.77039602399995, 51.078852967000039 ], [ -119.770397670999984, 51.078841239000035 ], [ -119.768936878999952, 51.0787602280001 ], [ -119.769030902999987, 51.078090567000096 ], [ -119.763821057999962, 51.077801488000027 ], [ -119.763827325999955, 51.077756879000077 ], [ -119.761501084999935, 51.077627725000056 ], [ -119.761507909999935, 51.077579171000068 ], [ -119.759630027999975, 51.077474873000028 ], [ -119.759674560999883, 51.077158168000047 ], [ -119.755657717999895, 51.076934965000078 ], [ -119.755661002999901, 51.076911617000064 ], [ -119.753207239999938, 51.076775197000089 ], [ -119.753318761999978, 51.075982887000073 ], [ -119.753466836999905, 51.07493085800013 ], [ -119.753628321999912, 51.074951434000063 ], [ -119.753896578999928, 51.074985632000036 ], [ -119.754003475999966, 51.074999242000018 ], [ -119.754076111999893, 51.075008510000046 ], [ -119.75424396299999, 51.0750298950001 ], [ -119.754271678999984, 51.075033426000047 ], [ -119.754273489999932, 51.075033663000113 ], [ -119.754283508, 51.07503493400008 ], [ -119.754421834999988, 51.075052550000095 ], [ -119.754853939999975, 51.075107627000094 ], [ -119.755111906, 51.075140489000063 ], [ -119.756596881999926, 51.075159003000081 ], [ -119.757403810999961, 51.07526579600011 ], [ -119.758044393, 51.075233092000055 ], [ -119.758849282999961, 51.075358397000059 ], [ -119.758946529, 51.075349646000035 ], [ -119.759275702999929, 51.075319990000033 ], [ -119.759378697999963, 51.07533706400006 ], [ -119.760742904999972, 51.075563204000055 ], [ -119.760847910999985, 51.075580596000115 ], [ -119.761025380999953, 51.07559172600007 ], [ -119.761678811999928, 51.075632746000068 ], [ -119.762095599999952, 51.075658910000108 ], [ -119.762359679, 51.075720791 ], [ -119.762861494, 51.075838415000092 ], [ -119.76330793599999, 51.075898972000076 ], [ -119.764035484, 51.075997708000109 ], [ -119.764820773999944, 51.07610427300007 ], [ -119.765684699999895, 51.076221495 ], [ -119.76753535899995, 51.076161838000083 ], [ -119.767850191999969, 51.076151710000033 ], [ -119.768755313999975, 51.076013491000069 ], [ -119.769611778999945, 51.076254194000057 ], [ -119.770636908999933, 51.076680089000057 ], [ -119.771463098999945, 51.076696546000079 ], [ -119.771853509999985, 51.076704288000023 ], [ -119.772126757999956, 51.076731886000076 ], [ -119.774405162999955, 51.078625515000077 ], [ -119.77450295099996, 51.078706774000075 ], [ -119.774571927999943, 51.079084443000063 ], [ -119.77039602399995, 51.078852967000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.1", "sL_BldgLoss": "31.1", "sL_StrLoss": "31.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A9E4735992F25DC077278681BA894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.790293522999917, 51.073880295000016 ], [ -119.791591828999941, 51.073952056000067 ], [ -119.791517531999958, 51.074483197000077 ], [ -119.79109134299992, 51.077529718000086 ], [ -119.790780505999976, 51.077512538000107 ], [ -119.790720848999968, 51.077938925000076 ], [ -119.790582423, 51.077931274000086 ], [ -119.790526363999959, 51.078331929000093 ], [ -119.790364723, 51.078322995000129 ], [ -119.790293383999966, 51.078832833000064 ], [ -119.789215834999979, 51.078773269000074 ], [ -119.789023105999931, 51.08015036000009 ], [ -119.788579984999984, 51.080125862000067 ], [ -119.788441698999961, 51.080118216000102 ], [ -119.788460228999938, 51.08008299100009 ], [ -119.790891731000031, 51.07545957500006 ], [ -119.790203433999963, 51.075293771000112 ], [ -119.78954942199999, 51.075178088000051 ], [ -119.788569259999989, 51.074875967000011 ], [ -119.788625189999934, 51.074807371000098 ], [ -119.788630708999946, 51.074800592000031 ], [ -119.788634200999965, 51.074796329000101 ], [ -119.788664642999962, 51.074758994000035 ], [ -119.78874837599993, 51.074656296000093 ], [ -119.788743581999981, 51.074080906000034 ], [ -119.788428109000023, 51.073938121000083 ], [ -119.788022988999955, 51.073754759000138 ], [ -119.790293522999917, 51.073880295000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "94.4", "sL_BldgLoss": "94.4", "sL_StrLoss": "94.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004C6307D714015EC063C1B3F3EC8B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.014248470999959, 51.094872634000076 ], [ -120.014259934000023, 51.094787665000062 ], [ -120.013366946999895, 51.094740111000064 ], [ -120.013657834999918, 51.092584093000035 ], [ -120.013849747000023, 51.091161547000112 ], [ -120.01954527099997, 51.091464730000055 ], [ -120.019533820000021, 51.091549700000073 ], [ -120.02042674799992, 51.091597205000049 ], [ -120.020120117999966, 51.093872542000035 ], [ -120.019944472999924, 51.095175796000021 ], [ -120.014248470999959, 51.094872634000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "67.7", "sL_BldgLoss": "67.7", "sL_StrLoss": "67.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BB22EC99CE35DC01607866261944940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.554855554999932, 51.157681208000071 ], [ -119.560556358999946, 51.158007563000091 ], [ -119.560487651999978, 51.158480091000094 ], [ -119.559911402999916, 51.158901094000072 ], [ -119.557072183999935, 51.160068994000021 ], [ -119.556204210999979, 51.160662883000022 ], [ -119.555245951999964, 51.161493019000027 ], [ -119.553779924999986, 51.161409058000068 ], [ -119.554300470999948, 51.157832797000069 ], [ -119.554829088999909, 51.157863074000041 ], [ -119.554855554999932, 51.157681208000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E4FCB0F1CE45DC04A0A4D8E12944940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.562724027999977, 51.155659885000048 ], [ -119.566953751999975, 51.155901767000032 ], [ -119.566912695, 51.155931603000056 ], [ -119.566402693999976, 51.157066690000079 ], [ -119.565990809999988, 51.157391409000091 ], [ -119.56572489, 51.157486912000117 ], [ -119.565413988999964, 51.157817309000038 ], [ -119.564923300999979, 51.157981111000012 ], [ -119.561948908999966, 51.157958846000078 ], [ -119.562249835, 51.155888675000035 ], [ -119.562687137999973, 51.155913692000077 ], [ -119.562724027999977, 51.155659885000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "227.2", "sL_BldgLoss": "227.2", "sL_StrLoss": "227.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D1F4EDC81035EC0C900D4FD318C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.054009932999932, 51.097774719000022 ], [ -120.05420657399992, 51.096307370000098 ], [ -120.049416084999905, 51.096053896000043 ], [ -120.049895998999943, 51.092475184000087 ], [ -120.055591934999939, 51.092776544000138 ], [ -120.055395356999938, 51.09424390100002 ], [ -120.060185684999965, 51.094497121000131 ], [ -120.059706577999961, 51.098075870000045 ], [ -120.054009932999932, 51.097774719000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8298834", "BldgCostT": "5723334", "sL_LossRatio": "1", "sL_AssetLoss": "475.2", "sL_BldgLoss": "475.2", "sL_StrLoss": "475.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA1ABB6583075EC0DCFCB77980914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.113114402999926, 51.149758745000021 ], [ -120.113195309999981, 51.149149670000071 ], [ -120.113129845999978, 51.149146247000054 ], [ -120.113206462999926, 51.14856946600009 ], [ -120.113135385999911, 51.148565748000102 ], [ -120.113610731999984, 51.144986969000051 ], [ -120.11409602099998, 51.145012348000122 ], [ -120.114497983999939, 51.145033368000057 ], [ -120.114512742999977, 51.144796860000078 ], [ -120.114084413999976, 51.144786285000052 ], [ -120.114105223999957, 51.144452854000086 ], [ -120.114118043999923, 51.144247433000011 ], [ -120.113689722999965, 51.144236856000049 ], [ -120.113740171999964, 51.143428578000041 ], [ -120.113311856999971, 51.143417999000086 ], [ -120.113345493999987, 51.142879148000084 ], [ -120.11291718499993, 51.14286856800009 ], [ -120.112934003999953, 51.142599143000041 ], [ -120.112555404999966, 51.142589789000056 ], [ -120.112505698999911, 51.142588561000053 ], [ -120.112589807999939, 51.141241433000118 ], [ -120.112161514999926, 51.141230850000113 ], [ -120.112228808999973, 51.140153149000085 ], [ -120.111800523999975, 51.140142564000072 ], [ -120.111817349999967, 51.139873139000052 ], [ -120.111389068999983, 51.139862554000096 ], [ -120.111399825, 51.139690356000138 ], [ -120.108707450999972, 51.13954944300005 ], [ -120.109183057999942, 51.135970647000072 ], [ -120.111613360999954, 51.136097847 ], [ -120.111625347999961, 51.136007604000099 ], [ -120.112818087999969, 51.136070012000097 ], [ -120.112823794999954, 51.136027032000037 ], [ -120.116035833999916, 51.136195031000035 ], [ -120.116091066999957, 51.135778907000031 ], [ -120.116733308999983, 51.135812488000091 ], [ -120.116804264999971, 51.13527782300006 ], [ -120.118078430999958, 51.135344432000132 ], [ -120.118172794999936, 51.134633212000026 ], [ -120.11814906299999, 51.134632627000045 ], [ -120.118233096999916, 51.133283694000056 ], [ -120.116734984999965, 51.13320537400007 ], [ -120.116895678999953, 51.131994444000064 ], [ -120.116867674999952, 51.13199298000012 ], [ -120.116947871999983, 51.131388617000084 ], [ -120.116805614999961, 51.131381179000066 ], [ -120.117280483999963, 51.12780231700004 ], [ -120.122597416999952, 51.128080202000049 ], [ -120.12304867899995, 51.130271008000108 ], [ -120.123063879999975, 51.130344879000077 ], [ -120.123094482999974, 51.130496747000109 ], [ -120.123202050999964, 51.131030326000051 ], [ -120.123431891999985, 51.132170450000032 ], [ -120.123664427999984, 51.133339355000025 ], [ -120.123744850999955, 51.133763206 ], [ -120.12391370499995, 51.134653284000059 ], [ -120.124003373999983, 51.135038166000115 ], [ -120.124025829999965, 51.135160947 ], [ -120.124050321999931, 51.13527618100003 ], [ -120.124084249999939, 51.135435686000136 ], [ -120.12411071899993, 51.135560102000085 ], [ -120.124317864999966, 51.136534320000116 ], [ -120.124411342, 51.136973904000101 ], [ -120.124523631999963, 51.137610401000089 ], [ -120.124542297999966, 51.138043725000095 ], [ -120.123535986, 51.13846089700008 ], [ -120.122263194999931, 51.138700095000061 ], [ -120.12141485299999, 51.138661444000029 ], [ -120.11971641299999, 51.138584015000085 ], [ -120.119669792, 51.138581892000047 ], [ -120.119596622, 51.138589669000062 ], [ -120.11870410799996, 51.138684493000035 ], [ -120.118098439999969, 51.138844404000075 ], [ -120.117992401, 51.138872393000092 ], [ -120.115960711999932, 51.138903808000101 ], [ -120.11506472399995, 51.1388368040001 ], [ -120.114501068999971, 51.138588596000069 ], [ -120.116109838999989, 51.140209515000066 ], [ -120.115921251, 51.140766712000115 ], [ -120.11560920699999, 51.145250991000104 ], [ -120.11554097899996, 51.14623155400006 ], [ -120.115501755999944, 51.146794695000068 ], [ -120.115365378999968, 51.148754574000101 ], [ -120.11528757699989, 51.149872377000094 ], [ -120.113114402999926, 51.149758745000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "112", "sL_BldgLoss": "112", "sL_StrLoss": "112", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D863E088C7FA5DC01E882CD2C48E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.916375938999977, 51.112754139000096 ], [ -119.922073558999941, 51.113062241000165 ], [ -119.921883031999982, 51.114452374000052 ], [ -119.921583132999928, 51.116640324000073 ], [ -119.921257649999944, 51.116622732000117 ], [ -119.921131666999912, 51.117541733000067 ], [ -119.920468426999932, 51.117505881000064 ], [ -119.920406761, 51.117955648000134 ], [ -119.914708523999977, 51.117647463000061 ], [ -119.914713118999927, 51.117613979000048 ], [ -119.915199513999966, 51.114069414000063 ], [ -119.9158627, 51.114105297000052 ], [ -119.915924406, 51.113655531000063 ], [ -119.916249867999966, 51.113673139000142 ], [ -119.916375938999977, 51.112754139000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "271", "sL_BldgLoss": "271", "sL_StrLoss": "271", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B6B033DF5045EC03CE91248E8914940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.0762162, 51.143132847000111 ], [ -120.076490137999912, 51.1410831560001 ], [ -120.072701126999959, 51.140883655000025 ], [ -120.073179649999972, 51.137305017000052 ], [ -120.073708890999939, 51.137332890000081 ], [ -120.073761437999934, 51.136939841000107 ], [ -120.073840676999978, 51.136347130000047 ], [ -120.0795424, 51.136647265000114 ], [ -120.079136956999946, 51.139682738000026 ], [ -120.082396617999933, 51.139854193000112 ], [ -120.082187654999984, 51.141419352000085 ], [ -120.081918811, 51.14343286000004 ], [ -120.0762162, 51.143132847000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "144.1", "sL_BldgLoss": "144.1", "sL_StrLoss": "144.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000344803701A025EC06BFAA2F3507D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.030263099999956, 50.977092182000042 ], [ -120.035944167, 50.977394574000115 ], [ -120.035464371999979, 50.980973681000101 ], [ -120.029782852999972, 50.980671266000101 ], [ -120.030263099999956, 50.977092182000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "40.6", "sL_BldgLoss": "40.6", "sL_StrLoss": "40.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000090D5EFBA25005EC09575E6BBE78B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.000181661999932, 51.090858330000081 ], [ -120.005877054999928, 51.091162203000081 ], [ -120.005424298999969, 51.0945136140001 ], [ -120.005393612999953, 51.094740733000044 ], [ -120.005195642999965, 51.094730175000088 ], [ -120.004487553999951, 51.094692410000036 ], [ -120.004424294999964, 51.095160555000064 ], [ -119.998728399999919, 51.094856609000047 ], [ -119.999212379999975, 51.091278108000026 ], [ -120.00011836399996, 51.09132647300008 ], [ -120.000181661999932, 51.090858330000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "120.6", "sL_BldgLoss": "120.6", "sL_StrLoss": "120.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A42BBFA9DBFD5DC00729D3C32B834940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.963954357999938, 51.026580576000129 ], [ -119.96399311299993, 51.026295245000071 ], [ -119.962937244, 51.026238449000068 ], [ -119.963196091999976, 51.024332949000048 ], [ -119.963423351999921, 51.022659834000109 ], [ -119.969109773999946, 51.022965589000101 ], [ -119.969071054999944, 51.023250924000109 ], [ -119.970126860999983, 51.023307662000107 ], [ -119.969749857999929, 51.026086183000132 ], [ -119.969641283999948, 51.026886303000076 ], [ -119.963954357999938, 51.026580576000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "137", "sL_BldgLoss": "137", "sL_StrLoss": "137", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002378CFC381055EC01EC4CE14BA924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.083432585999944, 51.144364569000039 ], [ -120.089135403999961, 51.144664217000127 ], [ -120.088658086999899, 51.148242894000113 ], [ -120.082954815000022, 51.147943223 ], [ -120.083432585999944, 51.144364569000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "1", "sL_AssetLoss": "326", "sL_BldgLoss": "326", "sL_StrLoss": "326", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD3CFBC2D2015EC00EE3248312854940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.027358971999902, 51.04137839300008 ], [ -120.027746048999987, 51.038499023000028 ], [ -120.023019521999956, 51.038247475999988 ], [ -120.023500932999951, 51.034668649000125 ], [ -120.024642118999964, 51.034729402000082 ], [ -120.024668990999928, 51.034529576000047 ], [ -120.030357345999931, 51.034832231000053 ], [ -120.029939711999987, 51.037940543000097 ], [ -120.033524958000015, 51.038131149000051 ], [ -120.033044313999952, 51.041710005000027 ], [ -120.03188335099999, 51.041648297000073 ], [ -120.031406446999938, 51.045198036000066 ], [ -120.02571676099997, 51.044895437000058 ], [ -120.02619802699995, 51.041316626000139 ], [ -120.027358971999902, 51.04137839300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "211.7", "sL_BldgLoss": "211.7", "sL_StrLoss": "211.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007772D42ADFF5DC0465DEF27788C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.99549943699995, 51.094767330000131 ], [ -120.001195296999953, 51.095071439000051 ], [ -120.001060915999986, 51.096065339000056 ], [ -120.000711435999932, 51.098649933000033 ], [ -119.998921672999955, 51.09855440700008 ], [ -119.99885238, 51.099066675000095 ], [ -119.994438395999936, 51.098830962000115 ], [ -119.994267039999926, 51.100096780000037 ], [ -119.99084622, 51.099913982000025 ], [ -119.988570583999973, 51.099792322000027 ], [ -119.988871461, 51.097571758000107 ], [ -119.989055432999947, 51.096213884000072 ], [ -119.990724469999989, 51.096303119000083 ], [ -119.993469128999962, 51.096449808000074 ], [ -119.99364049399999, 51.09518398700007 ], [ -119.995430110999976, 51.095279598000033 ], [ -119.99549943699995, 51.094767330000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018794", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "121", "sL_BldgLoss": "121", "sL_StrLoss": "121", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000085615DA8025EC0BAAB2E12207D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.039096460999957, 50.974609680000114 ], [ -120.04477727199999, 50.974911626000022 ], [ -120.044298213999937, 50.978490781000048 ], [ -120.044222063999953, 50.978486736000065 ], [ -120.043956211999955, 50.980472684000048 ], [ -120.038274699999974, 50.980170699000027 ], [ -120.038754259999934, 50.976591577000072 ], [ -120.038830404999914, 50.976595626000076 ], [ -120.039096460999957, 50.974609680000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "110.5", "sL_BldgLoss": "110.5", "sL_StrLoss": "110.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002641B09181045EC01FDFD6C49F904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.072020475, 51.128024621000137 ], [ -120.073971413999971, 51.128127402000047 ], [ -120.073493053, 51.131706079000075 ], [ -120.072581548999935, 51.131658063000046 ], [ -120.072545925999975, 51.131924500000125 ], [ -120.071719710999929, 51.131880971000051 ], [ -120.066844855999932, 51.131624010000088 ], [ -120.067323750999918, 51.128045361000027 ], [ -120.06823517499997, 51.128093420000077 ], [ -120.068270820999928, 51.127826982000066 ], [ -120.072020475, 51.128024621000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "67.9", "sL_BldgLoss": "67.9", "sL_StrLoss": "67.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000823E2EFD0DFF5DC0C2BD748BA78C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.986905421999964, 51.09715056800006 ], [ -119.988319420999957, 51.097226196000079 ], [ -119.988289489999943, 51.097447086000045 ], [ -119.987834500999938, 51.100804626000112 ], [ -119.982137996999924, 51.100499843000073 ], [ -119.982623371999949, 51.096921435000056 ], [ -119.986905421999964, 51.09715056800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4553000", "BldgCostT": "3140000", "sL_LossRatio": "1", "sL_AssetLoss": "230", "sL_BldgLoss": "230", "sL_StrLoss": "230", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085D76818C2065EC03F8124AABF924940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.10291014799995, 51.149429567000041 ], [ -120.102928869999957, 51.149288877000089 ], [ -120.0996772499999, 51.149118480000034 ], [ -120.099854000999983, 51.147790897000043 ], [ -120.099309830999985, 51.147762372000088 ], [ -120.099362781999929, 51.147364675000098 ], [ -120.098679538999974, 51.147328855000126 ], [ -120.098957738999957, 51.145239518000047 ], [ -120.099156038, 51.143750132000029 ], [ -120.100502396999929, 51.143820713000061 ], [ -120.100548592999957, 51.143473663000094 ], [ -120.106251410999974, 51.143772446000057 ], [ -120.106162824999956, 51.144438614000137 ], [ -120.106561456999927, 51.144459489000113 ], [ -120.106630399999986, 51.143941005000073 ], [ -120.111605100999952, 51.144201384000056 ], [ -120.112333318999944, 51.144239480000103 ], [ -120.112268962999948, 51.144723930000055 ], [ -120.113185223999963, 51.144771858000091 ], [ -120.112709845000012, 51.148350636000039 ], [ -120.108823906999987, 51.148147321000131 ], [ -120.108613747, 51.149728229000083 ], [ -120.10291014799995, 51.149429567000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "129.2", "sL_BldgLoss": "129.2", "sL_StrLoss": "129.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C49726F8E8F55DC0ABC8320EBF8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.839744616999909, 51.10544815500004 ], [ -119.845440766999928, 51.105760133000011 ], [ -119.844944255999906, 51.109337909000054 ], [ -119.839247649999962, 51.109025906000056 ], [ -119.839744616999909, 51.10544815500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "147.1", "sL_BldgLoss": "147.1", "sL_StrLoss": "147.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000097E6D2CF46F35DC0B1F168FC258B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.800790886999906, 51.083766209000011 ], [ -119.806483987999968, 51.084080164000106 ], [ -119.805984585, 51.087657852000056 ], [ -119.802020865999935, 51.087439298000056 ], [ -119.801708928999915, 51.089672276000066 ], [ -119.801603454999935, 51.090427248 ], [ -119.795909575999985, 51.090113048000013 ], [ -119.796409816999969, 51.086535416000089 ], [ -119.799147982999926, 51.086686549000028 ], [ -119.800373426999954, 51.086754166000055 ], [ -119.800790886999906, 51.083766209000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "139.8", "sL_BldgLoss": "139.8", "sL_StrLoss": "139.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000045FAE57A78FB5DC0DCEB49053A824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.926630277999948, 51.015452568000079 ], [ -119.932315525999968, 51.015760186000044 ], [ -119.93182699499998, 51.019338694000098 ], [ -119.926141292999972, 51.019031053000084 ], [ -119.926630277999948, 51.015452568000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "1", "sL_AssetLoss": "51.4", "sL_BldgLoss": "51.4", "sL_StrLoss": "51.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000978D10163CF95DC07B8D553132904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.892221128999893, 51.124116804000096 ], [ -119.897920038999956, 51.124426124000074 ], [ -119.897771735999953, 51.125503595000076 ], [ -119.89742754400001, 51.128004057000084 ], [ -119.896500560999954, 51.127953763000043 ], [ -119.896363853, 51.128946680000112 ], [ -119.890664374999943, 51.128637283000096 ], [ -119.89068092399998, 51.128517196000104 ], [ -119.891157419999942, 51.125059382000082 ], [ -119.892084337999933, 51.125109720000076 ], [ -119.892221128999893, 51.124116804000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "99.2", "sL_BldgLoss": "99.2", "sL_StrLoss": "99.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E50B52D7F7025EC06B4879392E8B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.045449847999961, 51.085496963000054 ], [ -120.049464569999927, 51.085709598000051 ], [ -120.048984694999916, 51.089288335000091 ], [ -120.044691101999973, 51.089060925000069 ], [ -120.043289248999898, 51.088986640000023 ], [ -120.043769579999946, 51.085407926000094 ], [ -120.045449847999961, 51.085496963000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075820DBACAE45DC0D1CD9B16FE974940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.573508505999911, 51.186798496000058 ], [ -119.574514380999972, 51.186129099000084 ], [ -119.574729701999928, 51.186114884000069 ], [ -119.575643597999942, 51.186365595000041 ], [ -119.576291285999957, 51.186422490000027 ], [ -119.57691858500003, 51.18627753600007 ], [ -119.576630494999932, 51.188262527000056 ], [ -119.57613512699993, 51.18851547200012 ], [ -119.571128101999975, 51.188229752000083 ], [ -119.57117930500003, 51.188181391000072 ], [ -119.571779198999963, 51.188158589000047 ], [ -119.572793476999919, 51.187875196000078 ], [ -119.573095021, 51.187617400000136 ], [ -119.573508505999911, 51.186798496000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "97.1", "sL_BldgLoss": "97.1", "sL_StrLoss": "97.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DD1FA4265F85DC0331E42E8E2904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.878577682999918, 51.129980702000132 ], [ -119.88427724899999, 51.130290710000068 ], [ -119.883932155999943, 51.132791869000108 ], [ -119.883931272999973, 51.132798272000073 ], [ -119.883783589999908, 51.133868560000082 ], [ -119.8798604, 51.133655205000096 ], [ -119.878083567999965, 51.133558529000013 ], [ -119.878577682999918, 51.129980702000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C574BE2BC4075EC0D8642A50CD8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.120171519999957, 51.12166597300012 ], [ -120.123485838999969, 51.121839162000093 ], [ -120.12332348, 51.122082754000125 ], [ -120.123273644999955, 51.122157474000041 ], [ -120.123069107999967, 51.122542289000123 ], [ -120.122854163999961, 51.123065768000103 ], [ -120.122729374999949, 51.123369655000126 ], [ -120.122672907, 51.123507212000085 ], [ -120.12245715099999, 51.124337425000128 ], [ -120.122306804999965, 51.12491604700007 ], [ -120.122295646999987, 51.125380672000048 ], [ -120.119696949999962, 51.125244870000088 ], [ -120.120171519999957, 51.12166597300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "77.5", "sL_BldgLoss": "77.5", "sL_StrLoss": "77.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D827DC732025EC04B3A6F087A814940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.031746840000011, 51.009595986000093 ], [ -120.03743206099989, 51.009898292000067 ], [ -120.036952034999985, 51.013477276000103 ], [ -120.031266360999965, 51.01317494700011 ], [ -120.031746840000011, 51.009595986000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2631750", "BldgCostT": "1815000", "sL_LossRatio": "1", "sL_AssetLoss": "102", "sL_BldgLoss": "102", "sL_StrLoss": "102", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007784D382D7FB5DC0E17A98E66B8E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.935856488999946, 51.114969548000083 ], [ -119.935909822999974, 51.114579527000068 ], [ -119.930648843, 51.114295706000114 ], [ -119.93074255799992, 51.113610954000109 ], [ -119.928258211999903, 51.113476842000132 ], [ -119.928383082000011, 51.112564795000047 ], [ -119.928748063999961, 51.109898718000061 ], [ -119.934445404999934, 51.110206197000075 ], [ -119.934351754999938, 51.110890954000098 ], [ -119.936835973999962, 51.111024933000046 ], [ -119.936782653999899, 51.111414956000068 ], [ -119.942043331999912, 51.111698491000041 ], [ -119.941981075999962, 51.112154247000063 ], [ -119.941554528999944, 51.115276665000103 ], [ -119.935856488999946, 51.114969548000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "187", "sL_BldgLoss": "187", "sL_StrLoss": "187", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000595FF27964015EC0CB0D4C8F22794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.018854264999931, 50.948599524000102 ], [ -120.01889376099993, 50.948305517000101 ], [ -120.01792895600002, 50.948254001000052 ], [ -120.018409804999976, 50.944674837000051 ], [ -120.01964037399992, 50.944740543000059 ], [ -120.019765395999954, 50.943809666000028 ], [ -120.025442157, 50.944112600000089 ], [ -120.024961876999924, 50.947691796000107 ], [ -120.024696016999926, 50.947677615000025 ], [ -120.024531627999949, 50.948902503000078 ], [ -120.018854264999931, 50.948599524000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "132.9", "sL_BldgLoss": "132.9", "sL_StrLoss": "132.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A32F104664F65DC000DAA040E98E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.848385174999947, 51.119235538000041 ], [ -119.848404733999985, 51.119094562000107 ], [ -119.847901369999974, 51.119067026000053 ], [ -119.847948306999967, 51.118728745000112 ], [ -119.847395675999962, 51.118698513000048 ], [ -119.847623474999949, 51.117056810000093 ], [ -119.845175517999976, 51.11692285500002 ], [ -119.845672096999962, 51.113345108000047 ], [ -119.846797825999985, 51.1134067160001 ], [ -119.851369299999988, 51.113656784000057 ], [ -119.851141656, 51.115298500000044 ], [ -119.853589541999924, 51.115432326000075 ], [ -119.853542651999987, 51.115770609000094 ], [ -119.854095249999958, 51.11580081300005 ], [ -119.854075709999904, 51.115941792000122 ], [ -119.854579042999944, 51.115969300000067 ], [ -119.854237188999917, 51.118435789000017 ], [ -119.85408315299999, 51.119547076000053 ], [ -119.848385174999947, 51.119235538000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "106.2", "sL_BldgLoss": "106.2", "sL_StrLoss": "106.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD94362CF8075EC0AC8B5FA1248F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.122658908999966, 51.121641457000045 ], [ -120.122676618999918, 51.121507830000049 ], [ -120.12137127499993, 51.121439622000103 ], [ -120.121845669999971, 51.117860703000048 ], [ -120.122238529999947, 51.117881233000084 ], [ -120.12230267699999, 51.117397213000046 ], [ -120.122570626999931, 51.117411215000111 ], [ -120.12261588199999, 51.117069719000028 ], [ -120.122754805999989, 51.117076978000107 ], [ -120.122878025999952, 51.116147123000069 ], [ -120.125715127000021, 51.116295332000036 ], [ -120.12581473299997, 51.115543290000076 ], [ -120.12967587299994, 51.115744878000079 ], [ -120.128927872999967, 51.116191318000112 ], [ -120.128322570999927, 51.116623703000087 ], [ -120.127882766999946, 51.117019677000044 ], [ -120.127395987999989, 51.117536779000069 ], [ -120.125022316999974, 51.120057912000036 ], [ -120.124889052999933, 51.12019947600001 ], [ -120.124732805999926, 51.120371111000075 ], [ -120.124580366999979, 51.120538568000057 ], [ -120.124450334999977, 51.120681395000084 ], [ -120.123847869999977, 51.121343183000093 ], [ -120.123730338999906, 51.121472318000031 ], [ -120.123585349999956, 51.121689857000035 ], [ -120.122658908999966, 51.121641457000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8796667", "BldgCostT": "6066667", "sL_LossRatio": "1", "sL_AssetLoss": "537.2", "sL_BldgLoss": "537.2", "sL_StrLoss": "537.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B33E27B5BE055EC0B8AD9066EA934940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.081270485999966, 51.160394155000098 ], [ -120.081537803999936, 51.1583930950001 ], [ -120.080907313999887, 51.158359949000044 ], [ -120.081385364999917, 51.154781343000124 ], [ -120.081951867999976, 51.154811125000066 ], [ -120.082166621999932, 51.153203158000103 ], [ -120.0827023799999, 51.153231321000106 ], [ -120.082908978999953, 51.151684172000024 ], [ -120.08473001899999, 51.151779880000035 ], [ -120.084817329000018, 51.151125814000039 ], [ -120.086074674999963, 51.151191880000063 ], [ -120.086080472999939, 51.151148443000068 ], [ -120.09141419799991, 51.151428536000104 ], [ -120.091422126999987, 51.151369068000051 ], [ -120.093414858999935, 51.151473647000074 ], [ -120.09347425699994, 51.15102801600009 ], [ -120.093575947, 51.151033351000116 ], [ -120.099177996999941, 51.151327153000103 ], [ -120.098701417999962, 51.154905848000048 ], [ -120.098138825999982, 51.154876355000077 ], [ -120.09808377, 51.155289696000089 ], [ -120.098783388999934, 51.155326371000072 ], [ -120.098306736999945, 51.158905048000051 ], [ -120.095414897999916, 51.158753424000089 ], [ -120.092602028999963, 51.15860586900007 ], [ -120.092749236999936, 51.157501768000046 ], [ -120.092049588999942, 51.157465055000046 ], [ -120.092149685999985, 51.156714357000048 ], [ -120.08983366599989, 51.156592797000044 ], [ -120.089943082999966, 51.155772495000079 ], [ -120.08955821499994, 51.155752290000088 ], [ -120.089660705999947, 51.154983939000012 ], [ -120.089091940999978, 51.154954076000053 ], [ -120.08880371699999, 51.157114572000133 ], [ -120.088026714999984, 51.157073772000054 ], [ -120.08802320199996, 51.157100099000075 ], [ -120.091156305999974, 51.15726458300005 ], [ -120.09067901799996, 51.160843221000029 ], [ -120.086981328999912, 51.160649088000042 ], [ -120.086975346999978, 51.160693907000024 ], [ -120.084700939999934, 51.160574437 ], [ -120.081270485999966, 51.160394155000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "82.2", "sL_BldgLoss": "82.2", "sL_StrLoss": "82.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B88EB3E197F35DC03BA4BD66DE8B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.803833735999916, 51.090794651000103 ], [ -119.809241873999895, 51.091092702000097 ], [ -119.808885622, 51.093645647000088 ], [ -119.808742613999968, 51.09467037400001 ], [ -119.803048143999916, 51.094356537000095 ], [ -119.803547856999955, 51.090778889000021 ], [ -119.803833735999916, 51.090794651000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "43.5", "sL_BldgLoss": "43.5", "sL_StrLoss": "43.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002035790C07025EC0AC9C49DDC68B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.029073145999945, 51.090065797000115 ], [ -120.034768634, 51.090368210000086 ], [ -120.034502716999953, 51.092346271000046 ], [ -120.034287525999929, 51.093946867000071 ], [ -120.030063484999943, 51.093722611000061 ], [ -120.028591583999983, 51.093644430000062 ], [ -120.029073145999945, 51.090065797000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "166.4", "sL_BldgLoss": "166.4", "sL_StrLoss": "166.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDEFCCDB03FD5DC0F201893F6D8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.95402390799994, 51.102272727000106 ], [ -119.956716044999951, 51.102417473000095 ], [ -119.956228523999982, 51.105995746000069 ], [ -119.95593370899995, 51.105979899000033 ], [ -119.955701800999961, 51.107681754000083 ], [ -119.95316700699999, 51.107545464000097 ], [ -119.950004636999978, 51.107375349000073 ], [ -119.950492673000014, 51.10379710800003 ], [ -119.950787472999963, 51.103812969000074 ], [ -119.951019548999923, 51.102111117000099 ], [ -119.95402390799994, 51.102272727000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "123.2", "sL_BldgLoss": "123.2", "sL_StrLoss": "123.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039A72766DCFD5DC0D161B64BB88C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.966116439999951, 51.101471803000102 ], [ -119.966202858999949, 51.100836435000048 ], [ -119.963166308999988, 51.100673418000071 ], [ -119.960854610999931, 51.100549259000033 ], [ -119.961341698999888, 51.096970945000052 ], [ -119.967037607999956, 51.097276780000129 ], [ -119.966951206999909, 51.097912150000113 ], [ -119.972299177999972, 51.098199037000072 ], [ -119.972130129999954, 51.099443215000058 ], [ -119.97181295899999, 51.101777395000127 ], [ -119.966116439999951, 51.101471803000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "89.6", "sL_BldgLoss": "89.6", "sL_StrLoss": "89.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000052B7F5CB8EFE5DC0E643ABEE6C8C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.974860617000019, 51.095132553000084 ], [ -119.980556382999936, 51.095437705000037 ], [ -119.980383758999963, 51.096710040000104 ], [ -119.980070858, 51.099016109000068 ], [ -119.974374635999965, 51.098710934000081 ], [ -119.97439998899992, 51.098524276000013 ], [ -119.974860617000019, 51.095132553000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000092857D7534E75DC0FA20B2E568894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.612952149999956, 51.072573182000035 ], [ -119.614235422999968, 51.072544472000118 ], [ -119.614326589999934, 51.074161415000084 ], [ -119.610476628999947, 51.074247508000035 ], [ -119.610431111999944, 51.073439033000064 ], [ -119.610858879999938, 51.073429474000108 ], [ -119.610843703999961, 51.073159983000103 ], [ -119.611699231999978, 51.07314086000013 ], [ -119.611684052999962, 51.07287136900014 ], [ -119.61296733599994, 51.072842673000146 ], [ -119.612952149999956, 51.072573182000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "37.3", "sL_BldgLoss": "37.3", "sL_StrLoss": "37.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063B0C9B78AEE5DC0D19FCB0E50954940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.7261263769999, 51.168047192000095 ], [ -119.726142794999944, 51.167931309000053 ], [ -119.725530367, 51.167897176000089 ], [ -119.725594943999937, 51.167441408000045 ], [ -119.72365243699997, 51.167333125000049 ], [ -119.724127299999935, 51.163982415000149 ], [ -119.724193314000033, 51.163911488000096 ], [ -119.724601595999971, 51.163786096000116 ], [ -119.725139115, 51.163944196000102 ], [ -119.725526383999977, 51.16396129600011 ], [ -119.725616425999988, 51.163837338000107 ], [ -119.726729113999966, 51.163899353000019 ], [ -119.726734987999976, 51.164320190000147 ], [ -119.726531915999885, 51.16473890200011 ], [ -119.726532398999936, 51.165243100000048 ], [ -119.726752977, 51.165579192000038 ], [ -119.727096590999963, 51.165849813000129 ], [ -119.72734480299999, 51.165925295000079 ], [ -119.72917710099992, 51.165945199000106 ], [ -119.729440200999946, 51.166037788000018 ], [ -119.729684610999982, 51.166284201000053 ], [ -119.731370795999965, 51.166756992 ], [ -119.731743583999943, 51.167009101000069 ], [ -119.731985788999935, 51.167262526000073 ], [ -119.731829752999928, 51.168364892000071 ], [ -119.7261263769999, 51.168047192000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "37.5", "sL_BldgLoss": "37.5", "sL_StrLoss": "37.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004408D9C328045EC0ADEDF5072D8F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.064098163999944, 51.119897521000084 ], [ -120.064073465999968, 51.119524500000118 ], [ -120.06378099199999, 51.119517150000036 ], [ -120.063832268999988, 51.118708905000048 ], [ -120.064019777999931, 51.118713616000043 ], [ -120.064008986, 51.118550604000077 ], [ -120.064271494999986, 51.118543719000044 ], [ -120.064345775999968, 51.117372586000023 ], [ -120.064359766999971, 51.117372937000049 ], [ -120.064347818999977, 51.117192461000023 ], [ -120.065631823999951, 51.117158777000022 ], [ -120.06566605799999, 51.117675595000073 ], [ -120.06604092, 51.117685009000112 ], [ -120.066040745999942, 51.117687749000012 ], [ -120.066095519999948, 51.117686311000071 ], [ -120.066166907999957, 51.118763844000085 ], [ -120.065972206999973, 51.118768952000082 ], [ -120.065955525999982, 51.11903208600009 ], [ -120.065755582999969, 51.119027065000083 ], [ -120.065774581999946, 51.119313841000128 ], [ -120.065508466999987, 51.119320823000059 ], [ -120.065476208999911, 51.119829582000072 ], [ -120.065379816999936, 51.119827160000028 ], [ -120.065382245999942, 51.119863837000068 ], [ -120.064098163999944, 51.119897521000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "89.2", "sL_BldgLoss": "89.2", "sL_StrLoss": "89.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000011A3CE7919E85DC02B9A18DCA0884940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.623966993999943, 51.06545910100008 ], [ -119.629656488999927, 51.065781998000062 ], [ -119.629143075999977, 51.069358961000034 ], [ -119.623453128999969, 51.069036040000086 ], [ -119.623966993999943, 51.06545910100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "68.8", "sL_BldgLoss": "68.8", "sL_StrLoss": "68.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BDF5672FC025EC0280351410F894940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.044051637999956, 51.068837798000104 ], [ -120.049744510999943, 51.069139462000095 ], [ -120.049264835999949, 51.072718265000049 ], [ -120.043571509999964, 51.072416578000052 ], [ -120.044051637999956, 51.068837798000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "99.9", "sL_BldgLoss": "99.9", "sL_StrLoss": "99.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0DEEE38C7F75DC0A8B7925FB7904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.868989205, 51.13253728100004 ], [ -119.869065391999953, 51.131986462000086 ], [ -119.867885506999968, 51.131922153000119 ], [ -119.86838042399998, 51.128344364000064 ], [ -119.869422025999938, 51.128401137 ], [ -119.874079710000032, 51.128654887000032 ], [ -119.874003589999944, 51.129205712000029 ], [ -119.875183412999917, 51.129269957000076 ], [ -119.874744763999971, 51.13244447200006 ], [ -119.874689032999981, 51.132847772000062 ], [ -119.868989205, 51.13253728100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4789833", "BldgCostT": "3303333", "sL_LossRatio": "1", "sL_AssetLoss": "194.6", "sL_BldgLoss": "194.6", "sL_StrLoss": "194.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1551F9B66F45DC05FA5926CBB8C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.816791924999919, 51.103304699000027 ], [ -119.817081258999963, 51.101229128000071 ], [ -119.812535230999941, 51.10097898599999 ], [ -119.812752389999972, 51.099422176000097 ], [ -119.810762781999983, 51.099312640000051 ], [ -119.81126193099999, 51.095734977000099 ], [ -119.81156921299997, 51.095751897000085 ], [ -119.816956637999937, 51.096048398000093 ], [ -119.81673964099997, 51.097605223000095 ], [ -119.817773887999977, 51.097662113000069 ], [ -119.817913986999955, 51.096656833000061 ], [ -119.823608856999968, 51.096969918000084 ], [ -119.823527430999945, 51.097554739000017 ], [ -119.826379807999928, 51.097711443000058 ], [ -119.825881851999966, 51.101289165000068 ], [ -119.824945111999938, 51.10123771100006 ], [ -119.824751279999958, 51.102629988000075 ], [ -119.824209298999932, 51.102600214000105 ], [ -119.822641366999918, 51.102514064000104 ], [ -119.822487639999935, 51.103617838000091 ], [ -119.816791924999919, 51.103304699000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "181.3", "sL_BldgLoss": "181.3", "sL_StrLoss": "181.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005860C0798EFC5DC0D5A1AA74BD824940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.942906516999983, 51.023252905000106 ], [ -119.94291054299994, 51.023223359000063 ], [ -119.940292932, 51.023082034000069 ], [ -119.940322616999978, 51.022864319000057 ], [ -119.940780824999976, 51.019503504000106 ], [ -119.946271452999952, 51.019799872000128 ], [ -119.946341193999928, 51.019287832000053 ], [ -119.952027067999921, 51.01959445200005 ], [ -119.951817797999922, 51.021132313000059 ], [ -119.951540078999969, 51.023173030000109 ], [ -119.948666616999958, 51.023018111000056 ], [ -119.948592873999957, 51.023559698000042 ], [ -119.942906516999983, 51.023252905000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "136.6", "sL_BldgLoss": "136.6", "sL_StrLoss": "136.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024BAE3243FE65DC0ECA9CDE68E964940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.603383760999975, 51.1703956590001 ], [ -119.604325727999978, 51.170449180000062 ], [ -119.603962391999957, 51.172964322000034 ], [ -119.603580398999924, 51.173172251000032 ], [ -119.60274736799991, 51.173965300000077 ], [ -119.601370568, 51.173887057000115 ], [ -119.601137801999926, 51.175497505000131 ], [ -119.600940325999957, 51.175685481000087 ], [ -119.598541360999903, 51.175549105000108 ], [ -119.598135591999949, 51.178355073000048 ], [ -119.598007564999946, 51.178476922000058 ], [ -119.597988683999915, 51.178489052000032 ], [ -119.597772348999982, 51.178476751000069 ], [ -119.597748227999958, 51.178643534000116 ], [ -119.59644141299998, 51.179483075000114 ], [ -119.594635605999883, 51.180062897000077 ], [ -119.591572061999898, 51.180904965000067 ], [ -119.591076744999924, 51.181153054000042 ], [ -119.589361352999958, 51.181055405000023 ], [ -119.589451247999975, 51.180434684 ], [ -119.589818502999947, 51.180358192000078 ], [ -119.590782996999977, 51.179940986000126 ], [ -119.591886712999894, 51.179701689000083 ], [ -119.592334790999956, 51.179529390000035 ], [ -119.5928882219999, 51.178932600000067 ], [ -119.593396310999964, 51.177806089000057 ], [ -119.594564892999955, 51.177195110000135 ], [ -119.594739912999984, 51.17649010000008 ], [ -119.594940191999967, 51.176260806000116 ], [ -119.595288501999931, 51.176072805000068 ], [ -119.596173709999945, 51.175792204000032 ], [ -119.597631680999896, 51.174977596000105 ], [ -119.597848806999963, 51.174289708000032 ], [ -119.598038908999953, 51.174077486000058 ], [ -119.598551076999939, 51.173778395000042 ], [ -119.599226794999979, 51.173574697000035 ], [ -119.599738915999978, 51.17330270900009 ], [ -119.600971609999974, 51.172294411000131 ], [ -119.601444215999919, 51.171798701000057 ], [ -119.602733891999932, 51.171068092000034 ], [ -119.603331382999954, 51.170515505000033 ], [ -119.603383760999975, 51.1703956590001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "36.9", "sL_BldgLoss": "36.9", "sL_StrLoss": "36.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD5382510BF75DC08F338FF4508F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.857464624999935, 51.117713589000083 ], [ -119.863162470999981, 51.118024668000025 ], [ -119.862667247999951, 51.121602473000095 ], [ -119.861496047999978, 51.121538555000058 ], [ -119.85696894799996, 51.121291371000076 ], [ -119.857224516999963, 51.119446759000084 ], [ -119.857464624999935, 51.117713589000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "129.3", "sL_BldgLoss": "129.3", "sL_StrLoss": "129.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000002DD8FC212045EC0FFBF3D11BC8D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.062156317999964, 51.105421253000017 ], [ -120.066733319999955, 51.105662861000134 ], [ -120.066254618999892, 51.109241594000075 ], [ -120.062341930999935, 51.109035066000096 ], [ -120.060556499999961, 51.108940778000076 ], [ -120.061035655999945, 51.105362068000048 ], [ -120.062156317999964, 51.105421253000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000065B15768BE45DC0BC50A7D98F984940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.569547487, 51.190482901000024 ], [ -119.569761368999977, 51.189822258000127 ], [ -119.572591059999979, 51.189983788000063 ], [ -119.572517401999946, 51.190490930000088 ], [ -119.572676091999952, 51.190499986000049 ], [ -119.572156644999893, 51.194076208000112 ], [ -119.569574518999971, 51.193928818000089 ], [ -119.569592997999948, 51.193603401000061 ], [ -119.56978828499993, 51.193275793000076 ], [ -119.56976260299993, 51.192781609000058 ], [ -119.569286021999972, 51.192197706000044 ], [ -119.569337312999934, 51.191837398000068 ], [ -119.569605116999966, 51.191525505000101 ], [ -119.569532389999949, 51.191220706000067 ], [ -119.569675313999966, 51.19096579800005 ], [ -119.569547487, 51.190482901000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "224.3", "sL_BldgLoss": "224.3", "sL_StrLoss": "224.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098C3EE3B86005EC0636C5B734B774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.006653891000013, 50.934508216000104 ], [ -120.006867127999939, 50.932923564000163 ], [ -120.003575199999943, 50.932747335000045 ], [ -120.00405703199999, 50.92916817 ], [ -120.009731824999946, 50.929471904000131 ], [ -120.009518704999905, 50.931056568000045 ], [ -120.012810530999943, 50.931232623000042 ], [ -120.012329377999933, 50.934811816000021 ], [ -120.006653891000013, 50.934508216000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "1", "sL_AssetLoss": "174", "sL_BldgLoss": "174", "sL_StrLoss": "174", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029DF7D9F7B015EC03292FB25FB794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.021363174999976, 50.955606881000044 ], [ -120.02152096399999, 50.954431988000046 ], [ -120.019335089000023, 50.954315327000138 ], [ -120.019432134999946, 50.953592959000098 ], [ -120.019000528999968, 50.95356991900006 ], [ -120.019481349, 50.949990773000067 ], [ -120.025158892999968, 50.950293719000094 ], [ -120.025061946999955, 50.95101609400006 ], [ -120.02549353299996, 50.951039111000064 ], [ -120.025335860999931, 50.952214014000056 ], [ -120.027521646999944, 50.952330558000071 ], [ -120.027041445999913, 50.955909730000037 ], [ -120.021363174999976, 50.955606881000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "56", "sL_BldgLoss": "56", "sL_StrLoss": "56", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099E51D6DFD0A5EC01D6BB1A1BCC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.167219240999941, 51.561028237000151 ], [ -120.167261987999964, 51.560706595000056 ], [ -120.167715409, 51.560755989000015 ], [ -120.168380898999928, 51.560726106000118 ], [ -120.168795884999923, 51.560538102000095 ], [ -120.169126290999955, 51.560106598000118 ], [ -120.17008101, 51.55962518900003 ], [ -120.17060275199999, 51.558906957000048 ], [ -120.170898930999897, 51.559463345000061 ], [ -120.175090382999926, 51.559882330000065 ], [ -120.174909811999967, 51.561242878000037 ], [ -120.173000331999972, 51.561145010000118 ], [ -120.172976630999983, 51.56132352200008 ], [ -120.169042622999939, 51.561121787000019 ], [ -120.167219240999941, 51.561028237000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28", "sL_BldgLoss": "28", "sL_StrLoss": "28", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005EAACAA50E065EC0D3C223F9E3D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.092419507999978, 51.631603535000082 ], [ -120.09818564499993, 51.631902580000016 ], [ -120.098166217999932, 51.632046798000047 ], [ -120.092327170999951, 51.632288331000026 ], [ -120.092419507999978, 51.631603535000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5773EEA0C075EC0C03CC7F4C2D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.108793168999938, 51.630511755000022 ], [ -120.113462292999913, 51.630753261000102 ], [ -120.113422088999968, 51.631052506000081 ], [ -120.111559837999948, 51.631351303000045 ], [ -120.108344093999975, 51.631284091000097 ], [ -120.107549697999957, 51.631544365000117 ], [ -120.107571498999974, 51.631382264000067 ], [ -120.107696202999961, 51.630454988000061 ], [ -120.108793168999938, 51.630511755000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94407389", "BldgCostT": "63720600", "sL_LossRatio": "1", "sL_AssetLoss": "3209.9", "sL_BldgLoss": "3209.9", "sL_StrLoss": "3209.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E269E795A075EC0601B548F72CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.112855912999933, 51.625826747000069 ], [ -120.113336447, 51.622249703000158 ], [ -120.115460433999942, 51.622359524000018 ], [ -120.115510029999925, 51.621990166000039 ], [ -120.115203475999976, 51.621974318000049 ], [ -120.115283756999986, 51.621376464000072 ], [ -120.115211316999989, 51.621372719000128 ], [ -120.115340187999919, 51.620412994000091 ], [ -120.114115850999937, 51.620349690000111 ], [ -120.114201612999963, 51.619711113000079 ], [ -120.114160597999927, 51.619708993000096 ], [ -120.114261469999974, 51.618957880000075 ], [ -120.113685235999952, 51.618928081 ], [ -120.113892004999911, 51.617388520000084 ], [ -120.113771447999937, 51.617382285000055 ], [ -120.113901432999967, 51.61641440800009 ], [ -120.113144695999935, 51.616375270000106 ], [ -120.113625103999951, 51.61279819300011 ], [ -120.113815897, 51.612808060000141 ], [ -120.11385410699998, 51.612523514000081 ], [ -120.113196073999987, 51.612489478000093 ], [ -120.113262060999944, 51.611998137000107 ], [ -120.112975273999922, 51.611983302000048 ], [ -120.112967333999961, 51.612042418000037 ], [ -120.111215462999965, 51.611951779 ], [ -120.111205255999934, 51.612027759000057 ], [ -120.110316645999902, 51.611981773000068 ], [ -120.110309616999956, 51.612034079000054 ], [ -120.109347229999955, 51.611984267000089 ], [ -120.109130357999931, 51.613598004000053 ], [ -120.106613034999938, 51.613467673000095 ], [ -120.109281505999903, 51.610329989000029 ], [ -120.108810728999984, 51.610324524000085 ], [ -120.105962012999939, 51.610307574000096 ], [ -120.103972134999964, 51.610297886000076 ], [ -120.100590017999963, 51.610281300000146 ], [ -120.098192096999938, 51.610278595000096 ], [ -120.097205098999908, 51.610281390000075 ], [ -120.096819896999961, 51.610294503000119 ], [ -120.096990488999964, 51.610184595000078 ], [ -120.098976892999971, 51.608696309000081 ], [ -120.100658692999957, 51.606776506000124 ], [ -120.100687690999933, 51.606319305000071 ], [ -120.100924201999959, 51.605812311000079 ], [ -120.10110554699996, 51.604897558000125 ], [ -120.102589533999961, 51.604974484000088 ], [ -120.102651905999934, 51.604510816000115 ], [ -120.101487708999969, 51.604450470000117 ], [ -120.101968933999942, 51.600873400000062 ], [ -120.10268854899999, 51.600910704000057 ], [ -120.102812196999977, 51.59999140200005 ], [ -120.103305888999941, 51.599499023000128 ], [ -120.108643370999957, 51.599775543000064 ], [ -120.108521982999932, 51.600678961000085 ], [ -120.111562436999975, 51.600836366000053 ], [ -120.111081992999971, 51.60441347600009 ], [ -120.108485815999984, 51.604279077000022 ], [ -120.10832953299996, 51.605442037000074 ], [ -120.104233779999944, 51.60522988600006 ], [ -120.104178370999989, 51.60564189700014 ], [ -120.105250517999949, 51.605697446000065 ], [ -120.104906956999969, 51.60825241600007 ], [ -120.105013700999933, 51.608257946000073 ], [ -120.105027062999937, 51.60815858400013 ], [ -120.10591559099997, 51.608204611000062 ], [ -120.105922622999969, 51.608152306000086 ], [ -120.106559611999955, 51.608185298000052 ], [ -120.106631020999927, 51.60765412100006 ], [ -120.111363558999969, 51.607899128000085 ], [ -120.112394110999972, 51.607952454000099 ], [ -120.112363993, 51.608176710000116 ], [ -120.112436443999968, 51.608180458000092 ], [ -120.112445737999934, 51.608111257000097 ], [ -120.11338626499996, 51.608159916 ], [ -120.113392795999957, 51.608111278000059 ], [ -120.114183859999983, 51.608152199000109 ], [ -120.114190760000014, 51.608100797000112 ], [ -120.114409966999986, 51.608112135000042 ], [ -120.114629319999921, 51.606478247000048 ], [ -120.114274943999959, 51.60645991700008 ], [ -120.114321479999944, 51.606113282000109 ], [ -120.114196464999949, 51.606106815 ], [ -120.114269059999941, 51.605566081000113 ], [ -120.114146002999945, 51.605559715000126 ], [ -120.114290833, 51.604480916000099 ], [ -120.114378283999912, 51.603829497000078 ], [ -120.113870116999976, 51.603803209000041 ], [ -120.114182516999961, 51.601476186000077 ], [ -120.113030655, 51.601416591000017 ], [ -120.113466940999928, 51.598166979000077 ], [ -120.113463385999964, 51.598166795000061 ], [ -120.11339814800003, 51.598652733000129 ], [ -120.111867945999947, 51.598573545000107 ], [ -120.111856380999939, 51.598659668000039 ], [ -120.10609451399999, 51.598361305000033 ], [ -120.10612335699993, 51.598146724000124 ], [ -120.104409515999947, 51.598057920000073 ], [ -120.105556700999969, 51.596321390000099 ], [ -120.10757668799999, 51.594076800000067 ], [ -120.108982214999955, 51.592982713000076 ], [ -120.113489403999949, 51.593216045000133 ], [ -120.113788303999968, 51.590989181000083 ], [ -120.113377408999924, 51.59096791700005 ], [ -120.11349767, 51.590071939000026 ], [ -120.113307871999936, 51.590062116000084 ], [ -120.113361613, 51.589661730000088 ], [ -120.11389859, 51.588908392000043 ], [ -120.116521015000018, 51.58647300600007 ], [ -120.118670900999945, 51.584914891000068 ], [ -120.120151612999933, 51.584105900000019 ], [ -120.120716955999924, 51.58391449900008 ], [ -120.121031883999976, 51.583930779000049 ], [ -120.120924546999987, 51.58473161500013 ], [ -120.120552395999979, 51.587507988000063 ], [ -120.120241680999953, 51.587491925000073 ], [ -120.120162711999981, 51.588080996000031 ], [ -120.119569519999914, 51.588050329000033 ], [ -120.119323459, 51.589885496000051 ], [ -120.121951980999938, 51.590021364000123 ], [ -120.121628348999963, 51.592435903000137 ], [ -120.122476935999913, 51.592479754000081 ], [ -120.122180309999962, 51.594692893000065 ], [ -120.12248539399998, 51.594708657000119 ], [ -120.122454343999962, 51.594940314000048 ], [ -120.122005904999938, 51.59828583400008 ], [ -120.121072360999946, 51.598237597000029 ], [ -120.121064764999957, 51.598294256000088 ], [ -120.119650075999914, 51.598221142000106 ], [ -120.119264208999979, 51.59820119700003 ], [ -120.119188274999942, 51.598767383000101 ], [ -120.11917806799994, 51.59884348 ], [ -120.123966949999925, 51.599090923000055 ], [ -120.123927206999923, 51.599387493000116 ], [ -120.125154831999964, 51.599450892000107 ], [ -120.125033214, 51.600358571000108 ], [ -120.127112829999987, 51.600465939000038 ], [ -120.126633654999978, 51.604043116000064 ], [ -120.125868399999945, 51.604003611000032 ], [ -120.125862621999971, 51.604046734000057 ], [ -120.124979947999947, 51.604001161000085 ], [ -120.124977281999975, 51.604021055000075 ], [ -120.120889458999955, 51.603809909000049 ], [ -120.120871095999973, 51.603946849000081 ], [ -120.120418068999953, 51.603923440000138 ], [ -120.120273528999945, 51.605001213000058 ], [ -120.120627895999988, 51.605019525000039 ], [ -120.120609296999973, 51.605158216000092 ], [ -120.123242616999931, 51.605294253000068 ], [ -120.12318690699999, 51.605709854000118 ], [ -120.123287545999943, 51.605715052000093 ], [ -120.123227419999949, 51.606163601000048 ], [ -120.123257478999975, 51.606165154000102 ], [ -120.123194073999969, 51.606638150000137 ], [ -120.123211614999917, 51.606639056000063 ], [ -120.123154190999927, 51.607067431000083 ], [ -120.12318374599991, 51.607068957000074 ], [ -120.123091651999957, 51.607755947000044 ], [ -120.123140297999967, 51.607758460000049 ], [ -120.122660718999924, 51.611335594000131 ], [ -120.121694205999958, 51.611285674000101 ], [ -120.121649689999984, 51.611617617000022 ], [ -120.121556126999963, 51.611612784000087 ], [ -120.121162844999972, 51.614545223000107 ], [ -120.119964763999917, 51.614483330000112 ], [ -120.119890624, 51.615035985000127 ], [ -120.120029428999928, 51.615043157000031 ], [ -120.119847264999962, 51.61640102300013 ], [ -120.12040521599999, 51.616429847000084 ], [ -120.120389128999989, 51.616549772000049 ], [ -120.121470286999966, 51.616605619000026 ], [ -120.121418816999935, 51.61698937700006 ], [ -120.121460315999968, 51.616991520000063 ], [ -120.12131349500001, 51.618086157000029 ], [ -120.12145609399991, 51.618093522000066 ], [ -120.12143462, 51.618253615000114 ], [ -120.122702900999954, 51.618284728000042 ], [ -120.122481218999965, 51.621787005000023 ], [ -120.122048411999941, 51.621776388000072 ], [ -120.12203135599999, 51.622045794000073 ], [ -120.122464164999926, 51.622056410000013 ], [ -120.12241836500003, 51.622779903000065 ], [ -120.122413000999956, 51.622864628000052 ], [ -120.12198018399999, 51.622854010000061 ], [ -120.121916410000011, 51.623861202000086 ], [ -120.121911949999983, 51.623931633000062 ], [ -120.121479123999904, 51.623921014000096 ], [ -120.121427938999943, 51.624729230000092 ], [ -120.12099510299997, 51.624718609000077 ], [ -120.120960973999956, 51.625257419000043 ], [ -120.119732533999979, 51.625227268000081 ], [ -120.119289143999964, 51.625216382000069 ], [ -120.119229621999949, 51.625214920000069 ], [ -120.119257599999941, 51.624773490000067 ], [ -120.11928084699997, 51.624406705000091 ], [ -120.11971367699999, 51.624417332000071 ], [ -120.11976489199999, 51.623609118000083 ], [ -120.120197715999936, 51.623619742000066 ], [ -120.12022944099999, 51.623118992000087 ], [ -120.119315409999928, 51.623071776000081 ], [ -120.119033123999927, 51.623057193000129 ], [ -120.118621429000015, 51.626124761000071 ], [ -120.114313233999937, 51.625902102000062 ], [ -120.112855912999933, 51.625826747000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "142.2", "sL_BldgLoss": "142.2", "sL_StrLoss": "142.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB3287288F065EC04312CD6E73CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.100738137999969, 51.622870634000073 ], [ -120.100793285999941, 51.622006026000079 ], [ -120.099379243, 51.62193273400004 ], [ -120.101132009999901, 51.619891036000062 ], [ -120.101147193999935, 51.619873309000056 ], [ -120.10233961099999, 51.618484202000026 ], [ -120.104732754999958, 51.618608181000035 ], [ -120.104251559999938, 51.622185201000072 ], [ -120.102953562999986, 51.62211796400009 ], [ -120.102919352999947, 51.622654693000058 ], [ -120.102053739999974, 51.622633314000069 ], [ -120.102036562999956, 51.622902715000045 ], [ -120.100738137999969, 51.622870634000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20795417", "BldgCostT": "14341667", "sL_LossRatio": "1", "sL_AssetLoss": "826", "sL_BldgLoss": "826", "sL_StrLoss": "826", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E713FDCAD8095EC08B843AD5EFC84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.150335172999945, 51.574932593000028 ], [ -120.150418512999963, 51.574771705000082 ], [ -120.150003201999951, 51.574924098000068 ], [ -120.149081608999921, 51.574892706000057 ], [ -120.148500089, 51.574959702000058 ], [ -120.147308848999913, 51.575307450000082 ], [ -120.147351730999958, 51.57498598900002 ], [ -120.146688588999936, 51.574951853000101 ], [ -120.146732788999927, 51.574620555000081 ], [ -120.145816617999969, 51.574598261000069 ], [ -120.145840446999912, 51.574218080000065 ], [ -120.145884165999931, 51.573520608000138 ], [ -120.146316522999896, 51.573531128000077 ], [ -120.146365659999944, 51.572747028000109 ], [ -120.146298029999954, 51.572743547000073 ], [ -120.146551711999976, 51.570842011000096 ], [ -120.14622806399997, 51.570825347000046 ], [ -120.14670528399995, 51.567247973000136 ], [ -120.148688909999962, 51.56735008800009 ], [ -120.148734909, 51.567005120000047 ], [ -120.15381882799997, 51.567266672000123 ], [ -120.153870589999912, 51.566878139000046 ], [ -120.157647349999976, 51.567072293000102 ], [ -120.15804687399995, 51.564071231000071 ], [ -120.163804600999967, 51.564366978000074 ], [ -120.163748231999975, 51.564790838000071 ], [ -120.163823031, 51.564794679000038 ], [ -120.163720181999977, 51.56556803200003 ], [ -120.163347231, 51.568372133000061 ], [ -120.16092568, 51.568247787000118 ], [ -120.159495529999944, 51.568174325000022 ], [ -120.15936376199997, 51.569164316000126 ], [ -120.159152488999965, 51.570751524000109 ], [ -120.158313350999961, 51.570708412000094 ], [ -120.158141718999971, 51.57199754600002 ], [ -120.157595554999929, 51.571969483000061 ], [ -120.157565305, 51.572196659000028 ], [ -120.157025330999943, 51.572168911000112 ], [ -120.156996690999947, 51.57238397200009 ], [ -120.156476714999926, 51.572357249000049 ], [ -120.156444879999981, 51.572596284000063 ], [ -120.155900105999976, 51.57256828400007 ], [ -120.155861770999948, 51.57285609700007 ], [ -120.155459606999926, 51.572835425000115 ], [ -120.155421965999921, 51.573118006000087 ], [ -120.155061304999947, 51.57309946700007 ], [ -120.155009170999989, 51.57349081600011 ], [ -120.153360839999948, 51.57340606900005 ], [ -120.15306741099999, 51.575607957000059 ], [ -120.150757589999941, 51.57548916000011 ], [ -120.14866983099995, 51.575381743000065 ], [ -120.149889023999961, 51.575154803000018 ], [ -120.150335172999945, 51.574932593000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28", "sL_BldgLoss": "28", "sL_StrLoss": "28", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068D453168B075EC0DBB1A6ECD3CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.117307877999906, 51.58373821000005 ], [ -120.120211583999946, 51.583888372000111 ], [ -120.118959889999957, 51.584436400000065 ], [ -120.11691881199999, 51.585888996000072 ], [ -120.116694120999966, 51.586008704000029 ], [ -120.116565376999958, 51.585997296000109 ], [ -120.116618395999964, 51.585179799000045 ], [ -120.117307877999906, 51.58373821000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "113", "sL_BldgLoss": "113", "sL_StrLoss": "113", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B4B6029C1065EC013214301BAD24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.10368240199989, 51.6460771940001 ], [ -120.10527111499999, 51.644292288000017 ], [ -120.107394361999937, 51.643475404000064 ], [ -120.107331562999946, 51.643942199000051 ], [ -120.10761265099994, 51.643956741000132 ], [ -120.107514302999917, 51.644687781000101 ], [ -120.10761600099994, 51.644693043000125 ], [ -120.107134755999937, 51.648269986000052 ], [ -120.102741308999953, 51.648042595000092 ], [ -120.102697467, 51.64836818800007 ], [ -120.102242432999972, 51.648344627000036 ], [ -120.10368240199989, 51.6460771940001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "29.1", "sL_BldgLoss": "29.1", "sL_StrLoss": "29.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C845736CD6075EC0B06B621E85CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.121949156999975, 51.580857226000084 ], [ -120.122664494999967, 51.580894198000074 ], [ -120.123406091999954, 51.582153297000104 ], [ -120.1234683119999, 51.582559192000126 ], [ -120.12338429, 51.582737304000077 ], [ -120.122810278999964, 51.583137500000078 ], [ -120.121600154999911, 51.583461596000078 ], [ -120.121949156999975, 51.580857226000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6189084", "BldgCostT": "4268334", "sL_LossRatio": "1", "sL_AssetLoss": "257.1", "sL_BldgLoss": "257.1", "sL_StrLoss": "257.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003502D81D1E085EC0A25380BD7CCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.125302006999931, 51.579219701000028 ], [ -120.131061496999948, 51.579517099000043 ], [ -120.130875829999923, 51.580904844000031 ], [ -120.130582871999977, 51.583094364000097 ], [ -120.127470690999957, 51.582933700000069 ], [ -120.127229922999945, 51.584732038000013 ], [ -120.121565165999954, 51.584439379000045 ], [ -120.121469775999969, 51.584434448000074 ], [ -120.121566101999974, 51.583715689000051 ], [ -120.122906187999959, 51.583445107000067 ], [ -120.123486006999926, 51.583190188000103 ], [ -120.12382039, 51.582919606000068 ], [ -120.123963702999944, 51.582490912 ], [ -120.123926391999987, 51.581914098000063 ], [ -120.123501410999936, 51.581130784000067 ], [ -120.123333732999953, 51.580928784000051 ], [ -120.125061169999981, 51.581018040000032 ], [ -120.125302006999931, 51.579219701000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4079333", "BldgCostT": "2813333", "sL_LossRatio": "1", "sL_AssetLoss": "173.4", "sL_BldgLoss": "173.4", "sL_StrLoss": "173.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CC56799E2065EC0ED05B012BDD14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.104937651999933, 51.63664483600008 ], [ -120.110704534999954, 51.636943246000044 ], [ -120.110223625999978, 51.640520229000096 ], [ -120.104456274999961, 51.64022179500013 ], [ -120.104937651999933, 51.63664483600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1945417", "BldgCostT": "1341667", "sL_LossRatio": "1", "sL_AssetLoss": "29.1", "sL_BldgLoss": "29.1", "sL_StrLoss": "29.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E37DB6011075EC0A8286E47FED04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.111559837999948, 51.631351303000045 ], [ -120.113422088999968, 51.631052506000081 ], [ -120.112981676999937, 51.634330276000071 ], [ -120.107215120999939, 51.634031980000067 ], [ -120.107459791999929, 51.63221285000008 ], [ -120.108061947999914, 51.631784742 ], [ -120.108108331999944, 51.631720085000019 ], [ -120.108237002999957, 51.631540763000032 ], [ -120.108343365999986, 51.631311260000075 ], [ -120.108344093999975, 51.631284091000097 ], [ -120.111559837999948, 51.631351303000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38313833", "BldgCostT": "26423333", "sL_LossRatio": "1", "sL_AssetLoss": "1590.2", "sL_BldgLoss": "1590.2", "sL_StrLoss": "1590.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F93367605065EC0E70E935784D24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.088053706999943, 51.651697620000085 ], [ -120.08815736299999, 51.650081243000123 ], [ -120.087724298999888, 51.650070495000072 ], [ -120.087732959999926, 51.64993548200006 ], [ -120.087776129999895, 51.649262307000043 ], [ -120.090807519999956, 51.649337501000083 ], [ -120.090824778999931, 51.64906810400003 ], [ -120.090391724999961, 51.649057367000097 ], [ -120.09042360899997, 51.648559737000049 ], [ -120.088354088999921, 51.648452342000063 ], [ -120.088495313999914, 51.647406077 ], [ -120.084407045999981, 51.647193810000026 ], [ -120.083744908999961, 51.647159418000037 ], [ -120.083947518999963, 51.645659497000054 ], [ -120.083237487999924, 51.645641850000075 ], [ -120.08325478899998, 51.645372455000086 ], [ -120.082821771999932, 51.645361690000058 ], [ -120.082839075999985, 51.645092295000047 ], [ -120.079374982000033, 51.645006123000101 ], [ -120.079392303999938, 51.644736728000034 ], [ -120.078959294999947, 51.644725950000051 ], [ -120.079097896999926, 51.642570795000054 ], [ -120.078801623999979, 51.642563419000084 ], [ -120.079621655999958, 51.642389567000095 ], [ -120.080416674999981, 51.642147251000061 ], [ -120.080886626, 51.642000570000071 ], [ -120.081000696999951, 51.642069480000046 ], [ -120.081262431999974, 51.642077688000036 ], [ -120.081866770999952, 51.641981880000046 ], [ -120.082648221999989, 51.641858013000011 ], [ -120.083513606999986, 51.641847118000086 ], [ -120.08435277, 51.641901545000046 ], [ -120.086451161999946, 51.641772104000026 ], [ -120.087840401999969, 51.641686400000026 ], [ -120.088887057999941, 51.641523259000088 ], [ -120.089508509000012, 51.641426413000104 ], [ -120.090072512999924, 51.641338486000045 ], [ -120.092259014999939, 51.640952191000054 ], [ -120.093187509999922, 51.640771705000112 ], [ -120.093870654999989, 51.64063889600007 ], [ -120.094795271999928, 51.640459135000121 ], [ -120.095330392999969, 51.640355088000021 ], [ -120.09632750499999, 51.640080209000089 ], [ -120.096869971999951, 51.639930663000051 ], [ -120.096913081999929, 51.639920608000111 ], [ -120.099978151999935, 51.639205144000123 ], [ -120.100058377999972, 51.639186431000077 ], [ -120.100563060999932, 51.63899645500009 ], [ -120.100576081, 51.638986688000031 ], [ -120.10118148199993, 51.638533246000073 ], [ -120.101589243, 51.638135642000059 ], [ -120.101747543999977, 51.637811593000016 ], [ -120.10181606099998, 51.637671311000069 ], [ -120.101858117999925, 51.6376734890001 ], [ -120.10178577899994, 51.638210758000127 ], [ -120.104164178999895, 51.638333927000069 ], [ -120.103682721999917, 51.641910877000051 ], [ -120.102808228999962, 51.641865596000052 ], [ -120.102795133999948, 51.641962860000085 ], [ -120.107564627999977, 51.642209740000055 ], [ -120.107394361999937, 51.643475404000064 ], [ -120.10527111499999, 51.644292288000017 ], [ -120.10368240199989, 51.6460771940001 ], [ -120.102242432999972, 51.648344627000036 ], [ -120.101469524999985, 51.648304603000042 ], [ -120.10135315499997, 51.649168618000033 ], [ -120.099546250999964, 51.649075029000059 ], [ -120.099544669999915, 51.649086760000046 ], [ -120.098796610999926, 51.649048006000086 ], [ -120.093776266999939, 51.648787789000046 ], [ -120.093783519999988, 51.648734014000063 ], [ -120.09215281299997, 51.648649442000114 ], [ -120.092141192999961, 51.648830908000015 ], [ -120.092574245999941, 51.648841639000089 ], [ -120.09253974899994, 51.649380435000097 ], [ -120.094271981999924, 51.649423342000077 ], [ -120.094248148999924, 51.649795799000067 ], [ -120.094220265, 51.65023153500006 ], [ -120.093354132999977, 51.650210084000044 ], [ -120.09333689, 51.650479482000044 ], [ -120.089872350999926, 51.650393612000137 ], [ -120.089837819999929, 51.650932405000056 ], [ -120.090270891999978, 51.650943145000035 ], [ -120.090253627999928, 51.651212541000056 ], [ -120.090686700999953, 51.651223279000121 ], [ -120.090669439999957, 51.651492677000064 ], [ -120.091102517999943, 51.651503412000039 ], [ -120.091085259999943, 51.651772810000061 ], [ -120.091518339999951, 51.651783545000093 ], [ -120.091414797999946, 51.653399926000084 ], [ -120.090799562999976, 51.65338467600003 ], [ -120.090115511999926, 51.653367714000126 ], [ -120.090167307999963, 51.652559525000051 ], [ -120.089734221999947, 51.652548784000054 ], [ -120.089751488999966, 51.652279388000082 ], [ -120.08931840299995, 51.652268647000092 ], [ -120.089335672999979, 51.651999250000053 ], [ -120.088902592999887, 51.651988507000041 ], [ -120.088919864999966, 51.65171911 ], [ -120.088053706999943, 51.651697620000085 ] ], [ [ -120.09336257199999, 51.642950388000031 ], [ -120.093422014999959, 51.642509585000013 ], [ -120.09004553799997, 51.642334413000079 ], [ -120.089977168999965, 51.642841113000053 ], [ -120.09122165399998, 51.642871971000083 ], [ -120.091214982999986, 51.642976131000125 ], [ -120.091224219999972, 51.64297660900008 ], [ -120.091230678999963, 51.642928729000054 ], [ -120.092548108999964, 51.64299707600005 ], [ -120.092560019999894, 51.642908761000108 ], [ -120.09336257199999, 51.642950388000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "58.2", "sL_BldgLoss": "58.2", "sL_StrLoss": "58.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E73D85CB9065EC0E848B23746D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.105781592999932, 51.633405919000069 ], [ -120.106563354999963, 51.632850158000039 ], [ -120.106120981999979, 51.636138532000075 ], [ -120.102671061999942, 51.635959907000057 ], [ -120.103030134999969, 51.635520559 ], [ -120.103301537000021, 51.635305955000099 ], [ -120.105017011999934, 51.63394944900007 ], [ -120.105781592999932, 51.633405919000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60494584", "BldgCostT": "38508334", "sL_LossRatio": "1", "sL_AssetLoss": "1931.6", "sL_BldgLoss": "1931.6", "sL_StrLoss": "1931.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A734EE0F8C055EC0DFBA0FFECDD14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.068819497, 51.643805901000142 ], [ -120.070570603999911, 51.643562396000043 ], [ -120.071394009999949, 51.643555295000077 ], [ -120.07195020599994, 51.643677809000081 ], [ -120.073454581999968, 51.643220597000038 ], [ -120.074037295999972, 51.643145100000019 ], [ -120.075440288999957, 51.642676510000058 ], [ -120.075934509999954, 51.642635188000064 ], [ -120.076435903999965, 51.64248569600008 ], [ -120.076649806999939, 51.642328994000131 ], [ -120.076912624999949, 51.642210145000078 ], [ -120.078479418999947, 51.641501595000115 ], [ -120.078511866999918, 51.641476902000107 ], [ -120.080919887999983, 51.641536835000046 ], [ -120.08106807599998, 51.640440190000071 ], [ -120.0820929489999, 51.640493455000097 ], [ -120.082104532999935, 51.640407714000091 ], [ -120.084063504999918, 51.640509501000111 ], [ -120.084132301999944, 51.640000102000087 ], [ -120.081011927999924, 51.639837954000058 ], [ -120.081106366, 51.639139048000068 ], [ -120.081031479, 51.639135155000126 ], [ -120.081280294999914, 51.637293655000072 ], [ -120.083791514999959, 51.636575704000087 ], [ -120.085433881, 51.635937909000056 ], [ -120.085643564999927, 51.635826245000061 ], [ -120.087204979999967, 51.634994587000101 ], [ -120.087361021999982, 51.634911496000029 ], [ -120.088733588999958, 51.633970585000121 ], [ -120.089160328999981, 51.633575554000103 ], [ -120.089909017999943, 51.633614419000075 ], [ -120.089941210999939, 51.63337578200008 ], [ -120.092164971999921, 51.633491191000111 ], [ -120.092327170999951, 51.632288331000026 ], [ -120.098166217999932, 51.632046798000047 ], [ -120.097703769999953, 51.635479527000065 ], [ -120.095843669999965, 51.635383091000115 ], [ -120.095758335999932, 51.636016278000078 ], [ -120.09674588899999, 51.636067481000083 ], [ -120.097099581999913, 51.636085818000033 ], [ -120.096920125999986, 51.637417607000103 ], [ -120.10181606099998, 51.637671311000069 ], [ -120.101747543999977, 51.637811593000016 ], [ -120.101589243, 51.638135642000059 ], [ -120.10118148199993, 51.638533246000073 ], [ -120.100576081, 51.638986688000031 ], [ -120.100563060999932, 51.63899645500009 ], [ -120.100058377999972, 51.639186431000077 ], [ -120.099978151999935, 51.639205144000123 ], [ -120.096913081999929, 51.639920608000111 ], [ -120.096869971999951, 51.639930663000051 ], [ -120.09632750499999, 51.640080209000089 ], [ -120.095330392999969, 51.640355088000021 ], [ -120.094795271999928, 51.640459135000121 ], [ -120.093870654999989, 51.64063889600007 ], [ -120.093187509999922, 51.640771705000112 ], [ -120.092259014999939, 51.640952191000054 ], [ -120.090072512999924, 51.641338486000045 ], [ -120.089508509000012, 51.641426413000104 ], [ -120.088887057999941, 51.641523259000088 ], [ -120.087840401999969, 51.641686400000026 ], [ -120.086451161999946, 51.641772104000026 ], [ -120.08435277, 51.641901545000046 ], [ -120.083513606999986, 51.641847118000086 ], [ -120.082648221999989, 51.641858013000011 ], [ -120.081866770999952, 51.641981880000046 ], [ -120.081262431999974, 51.642077688000036 ], [ -120.081000696999951, 51.642069480000046 ], [ -120.080886626, 51.642000570000071 ], [ -120.080416674999981, 51.642147251000061 ], [ -120.079621655999958, 51.642389567000095 ], [ -120.078801623999979, 51.642563419000084 ], [ -120.078231922999962, 51.642549234000043 ], [ -120.078223119999947, 51.64268606100007 ], [ -120.078123541999972, 51.642707171000026 ], [ -120.07717037299993, 51.642909247000041 ], [ -120.076995208999961, 51.64294638500013 ], [ -120.07477018299997, 51.643487108000045 ], [ -120.074334271999973, 51.64369314200006 ], [ -120.073932475, 51.643949535000068 ], [ -120.073627065999972, 51.644144404000052 ], [ -120.073207991999936, 51.644558409000084 ], [ -120.072644962999988, 51.645494058000075 ], [ -120.072458679999926, 51.645803586000078 ], [ -120.072208991999901, 51.646146257000055 ], [ -120.071800599999946, 51.646588803000093 ], [ -120.071295726999907, 51.647003717000061 ], [ -120.071139110999965, 51.647130611000129 ], [ -120.070415812999954, 51.647592811000052 ], [ -120.069339678999953, 51.64822560000006 ], [ -120.069077603999986, 51.648392085000069 ], [ -120.068005044999921, 51.648966569000045 ], [ -120.067864257999972, 51.649008765000083 ], [ -120.067620547999965, 51.649086073000085 ], [ -120.067474179000016, 51.649132499000089 ], [ -120.067446950999937, 51.6491380470001 ], [ -120.067437712999961, 51.649139924000082 ], [ -120.066643707999944, 51.648401886000094 ], [ -120.066591003, 51.648094195000084 ], [ -120.06691440499992, 51.647348 ], [ -120.066593473999916, 51.646053293000122 ], [ -120.066567385999946, 51.64532420000009 ], [ -120.066787685999927, 51.644817104000012 ], [ -120.067501295999975, 51.644294513000062 ], [ -120.068819497, 51.643805901000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3248000", "BldgCostT": "2240000", "sL_LossRatio": "1", "sL_AssetLoss": "112", "sL_BldgLoss": "112", "sL_StrLoss": "112", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009570AE8294065EC0C4EA6E2223D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.105791567999944, 51.632519590000129 ], [ -120.10660217799996, 51.63256155200007 ], [ -120.106563354999963, 51.632850158000039 ], [ -120.105781592999932, 51.633405919000069 ], [ -120.105017011999934, 51.63394944900007 ], [ -120.103301537000021, 51.635305955000099 ], [ -120.103030134999969, 51.635520559 ], [ -120.102671061999942, 51.635959907000057 ], [ -120.100354234999926, 51.635839889000096 ], [ -120.10051366699993, 51.63465596200006 ], [ -120.10083589599999, 51.632262932000046 ], [ -120.105791567999944, 51.632519590000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "58.2", "sL_BldgLoss": "58.2", "sL_StrLoss": "58.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000014BF07EC3095EC09AEEF119BBC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.151046995999963, 51.527175899000049 ], [ -120.154372871999954, 51.527347125000048 ], [ -120.154361013999932, 51.527361193000097 ], [ -120.154079214999953, 51.527937999000059 ], [ -120.154031985999936, 51.52871991100006 ], [ -120.154496898999938, 51.530035796000043 ], [ -120.154702537999952, 51.530966141000128 ], [ -120.150570563999949, 51.530753430000075 ], [ -120.151046995999963, 51.527175899000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "57.1", "sL_BldgLoss": "57.1", "sL_StrLoss": "57.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3EFD00361085EC0A83B2E2EFEC14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.130572369999939, 51.513750325000053 ], [ -120.134035739999916, 51.513929312000052 ], [ -120.133558068999932, 51.517506818000065 ], [ -120.130016764999979, 51.517323803000103 ], [ -120.127806672999967, 51.517209529000034 ], [ -120.128284807999989, 51.513632046000041 ], [ -120.130572369999939, 51.513750325000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "85.1", "sL_BldgLoss": "85.1", "sL_StrLoss": "85.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003611898467075EC0D2AC6C1F72C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.11305716699999, 51.517170000000135 ], [ -120.118808457999975, 51.517468034000082 ], [ -120.11832951199996, 51.521045465000071 ], [ -120.112577756999954, 51.520747406000076 ], [ -120.11305716699999, 51.517170000000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671417", "BldgCostT": "3221667", "sL_LossRatio": "1", "sL_AssetLoss": "199.9", "sL_BldgLoss": "199.9", "sL_StrLoss": "199.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F29049397075EC04C13BE10D5C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.112167073999956, 51.548524251000103 ], [ -120.1126468199999, 51.544946942000117 ], [ -120.115697475999951, 51.545104973000036 ], [ -120.116013704999943, 51.542745416000074 ], [ -120.121768357999926, 51.543043294000043 ], [ -120.121767280999947, 51.543051336000097 ], [ -120.122038753999973, 51.543065381000062 ], [ -120.125463232999962, 51.543242494000026 ], [ -120.124984548, 51.546819862000085 ], [ -120.119229377999929, 51.546522148000037 ], [ -120.119230455999912, 51.546514106000082 ], [ -120.119212406999935, 51.546513172000061 ], [ -120.118824001999954, 51.546493068000096 ], [ -120.118238592999958, 51.546462767000072 ], [ -120.117922456999949, 51.548822322000078 ], [ -120.11771837799999, 51.548811757000053 ], [ -120.112167073999956, 51.548524251000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "87.2", "sL_BldgLoss": "87.2", "sL_StrLoss": "87.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB19C4E627055EC0AEDD6E3071CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.08360289699999, 51.619124682000113 ], [ -120.084098561999923, 51.619150446000013 ], [ -120.084066338999932, 51.619389157000043 ], [ -120.082581721999972, 51.621313399000059 ], [ -120.082076810999965, 51.621740701000107 ], [ -120.082029816999963, 51.622253397000073 ], [ -120.081940093999918, 51.622640274000084 ], [ -120.080361547999971, 51.622558192000035 ], [ -120.077850848999915, 51.622427594000087 ], [ -120.078334195999943, 51.618850687000077 ], [ -120.08360289699999, 51.619124682000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "83.9", "sL_BldgLoss": "83.9", "sL_StrLoss": "83.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000006E795991065EC095C8B21E46CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.103366549999976, 51.613299508000111 ], [ -120.10344943199999, 51.61268340800008 ], [ -120.09945366299992, 51.612476302000061 ], [ -120.099499804999979, 51.61213352500009 ], [ -120.094718918999945, 51.611885538000124 ], [ -120.095376678999955, 51.611224297000092 ], [ -120.096819896999961, 51.610294503000119 ], [ -120.097205098999908, 51.610281390000075 ], [ -120.098192096999938, 51.610278595000096 ], [ -120.100590017999963, 51.610281300000146 ], [ -120.103972134999964, 51.610297886000076 ], [ -120.105962012999939, 51.610307574000096 ], [ -120.108810728999984, 51.610324524000085 ], [ -120.109281505999903, 51.610329989000029 ], [ -120.106613034999938, 51.613467673000095 ], [ -120.103366549999976, 51.613299508000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "71.8", "sL_BldgLoss": "71.8", "sL_StrLoss": "71.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3B5455F620B5EC08925270BC6BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.177288586999936, 51.496380050000077 ], [ -120.180941563999937, 51.496567400000032 ], [ -120.180563613999936, 51.499422205000066 ], [ -120.180467891999939, 51.500145164000095 ], [ -120.176467826999897, 51.49994000800006 ], [ -120.174718447999965, 51.499850240000036 ], [ -120.174815437999953, 51.499118420000066 ], [ -120.174842006999882, 51.499101992000085 ], [ -120.174969701999956, 51.498888396000055 ], [ -120.17498856899995, 51.497812042000113 ], [ -120.17507128599999, 51.497187855000021 ], [ -120.175553316999981, 51.496699399000136 ], [ -120.175755705000014, 51.496301398000064 ], [ -120.177288586999936, 51.496380050000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "58.2", "sL_BldgLoss": "58.2", "sL_StrLoss": "58.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A4A35EE8F8075EC08AF9E220DBC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.124823771999985, 51.52833695200006 ], [ -120.12768280599991, 51.528484808000037 ], [ -120.127204460999948, 51.532062237000034 ], [ -120.123197864999966, 51.53185501400003 ], [ -120.121451205999989, 51.531764631000073 ], [ -120.121930015999979, 51.528187226000121 ], [ -120.124823771999985, 51.52833695200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "1", "sL_AssetLoss": "114.2", "sL_BldgLoss": "114.2", "sL_StrLoss": "114.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088CAD0C2EF075EC0A37819EEF1C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.121826938, 51.519547107000051 ], [ -120.1275785979999, 51.519844699000018 ], [ -120.127241624999982, 51.522365374000088 ], [ -120.127100338999966, 51.523422157000063 ], [ -120.126602043999952, 51.523396387000091 ], [ -120.126191181999957, 51.526468972000046 ], [ -120.123938262999971, 51.526352432000046 ], [ -120.12043866499998, 51.526171313000063 ], [ -120.120917494999944, 51.522593892000017 ], [ -120.121415777999943, 51.52261968700013 ], [ -120.121826938, 51.519547107000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "56", "sL_BldgLoss": "56", "sL_StrLoss": "56", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2B68C4852075EC027A1F48590C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.116263750999934, 51.573016273000043 ], [ -120.11751194499999, 51.573080858000068 ], [ -120.117423533999968, 51.573740257000082 ], [ -120.117351035999931, 51.574280971000043 ], [ -120.117172647999922, 51.575611351000134 ], [ -120.117110409999967, 51.57659435500004 ], [ -120.117041062999931, 51.576592651000063 ], [ -120.117032287999947, 51.576658089000027 ], [ -120.11568844, 51.576588553000107 ], [ -120.11127326699993, 51.576359982000071 ], [ -120.111753389999947, 51.572782774000089 ], [ -120.116263750999934, 51.573016273000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "57.1", "sL_BldgLoss": "57.1", "sL_StrLoss": "57.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B96445A2CA0A5EC050E9588C57C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.16962904399999, 51.532485866000044 ], [ -120.170509295999963, 51.532531044000066 ], [ -120.170034389999927, 51.536108638000037 ], [ -120.168864634999977, 51.536048601000047 ], [ -120.168273540999962, 51.536018259000087 ], [ -120.168281379999954, 51.535873702000039 ], [ -120.168022321999942, 51.535165801000097 ], [ -120.1677867099999, 51.534791291000033 ], [ -120.166888524999976, 51.533896902000038 ], [ -120.166113511000034, 51.532709084000011 ], [ -120.165750922999962, 51.532286747000079 ], [ -120.16962904399999, 51.532485866000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "90.3", "sL_BldgLoss": "90.3", "sL_StrLoss": "90.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B630BDEE30B5EC09B50564682C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.182757575999943, 51.513618439000012 ], [ -120.182806033999952, 51.513252431000033 ], [ -120.182583595000011, 51.513241033000057 ], [ -120.183057235999968, 51.509663307000032 ], [ -120.18535000199995, 51.509780756000076 ], [ -120.18880801799996, 51.509957806000081 ], [ -120.188759613999977, 51.510323818000124 ], [ -120.18898203899991, 51.510335202000078 ], [ -120.188508871999886, 51.513912952000126 ], [ -120.185956630999925, 51.513782292000016 ], [ -120.182757575999943, 51.513618439000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28", "sL_BldgLoss": "28", "sL_StrLoss": "28", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000047480DC150B5EC03A8D388D82C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.172858695999949, 51.557535882000074 ], [ -120.175384594999969, 51.55766535099999 ], [ -120.175090382999926, 51.559882330000065 ], [ -120.170898930999897, 51.559463345000061 ], [ -120.17060275199999, 51.558906957000048 ], [ -120.170870393999976, 51.558538513000038 ], [ -120.172189438999965, 51.557501568000085 ], [ -120.172858695999949, 51.557535882000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "111", "sL_BldgLoss": "111", "sL_StrLoss": "111", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA34DC785E0B5EC09E9A26C778C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.175002797999966, 51.509562021000093 ], [ -120.180753511999953, 51.509856927000072 ], [ -120.180279679999927, 51.513434644000057 ], [ -120.174528502, 51.513139714000083 ], [ -120.175002797999966, 51.509562021000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2059000", "BldgCostT": "1420000", "sL_LossRatio": "1", "sL_AssetLoss": "178", "sL_BldgLoss": "178", "sL_StrLoss": "178", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000078ECCADBCF055EC077261BAC0BCE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.091520400999954, 51.608108552000061 ], [ -120.09417101199989, 51.608246153000017 ], [ -120.093911258999981, 51.610174139000051 ], [ -120.093122889999975, 51.610349796000051 ], [ -120.091967404999977, 51.611238488000019 ], [ -120.091559885, 51.611712637000068 ], [ -120.08915948399999, 51.611587984000082 ], [ -120.087925601, 51.611523887000111 ], [ -120.088408007999988, 51.607946899000112 ], [ -120.091520400999954, 51.608108552000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "86.2", "sL_BldgLoss": "86.2", "sL_StrLoss": "86.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED04E21253075EC001E374EDE6C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.111806866, 51.559797151000097 ], [ -120.117563721999971, 51.560095236000066 ], [ -120.11708421, 51.563672512000075 ], [ -120.11132689099999, 51.563374404000093 ], [ -120.111806866, 51.559797151000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "143.2", "sL_BldgLoss": "143.2", "sL_StrLoss": "143.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028A60340320B5EC063B1348DF9C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.178986438999942, 51.521620057000035 ], [ -120.180410759999944, 51.521693055000085 ], [ -120.179936774999945, 51.525270728000066 ], [ -120.17523268599993, 51.52502957100009 ], [ -120.175225556999962, 51.525083339000105 ], [ -120.171856069999933, 51.524910478000088 ], [ -120.171252593999924, 51.524879509000129 ], [ -120.169472890999913, 51.524788157000096 ], [ -120.169947721999961, 51.521210525000107 ], [ -120.171998190999915, 51.521315773000047 ], [ -120.174651372999932, 51.521451902000081 ], [ -120.174658502999961, 51.521398134000073 ], [ -120.178986438999942, 51.521620057000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28", "sL_BldgLoss": "28", "sL_StrLoss": "28", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009ED17733FA095EC0FCFCF7E0B5C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.155186140999945, 51.527388980000069 ], [ -120.156799850999917, 51.527472011000036 ], [ -120.156388260999904, 51.530565707000044 ], [ -120.156009384999905, 51.530764990000122 ], [ -120.155704225999926, 51.531017685000052 ], [ -120.155423662999908, 51.531003249000072 ], [ -120.155399707999948, 51.530380495000024 ], [ -120.155213909999958, 51.529872006000069 ], [ -120.155150490999944, 51.527425309000073 ], [ -120.155186140999945, 51.527388980000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2631750", "BldgCostT": "1815000", "sL_LossRatio": "1", "sL_AssetLoss": "84", "sL_BldgLoss": "84", "sL_StrLoss": "84", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE1CB1B374095EC0D8C4FAED88C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.144406860999965, 51.554373424000069 ], [ -120.144476848999957, 51.553848773 ], [ -120.144367197999884, 51.553843124000068 ], [ -120.144844383999924, 51.550265699000093 ], [ -120.145017255999946, 51.550274605000048 ], [ -120.145398131999968, 51.547418706000052 ], [ -120.151153592999961, 51.54771509700003 ], [ -120.150676947999955, 51.551292558000057 ], [ -120.150613715999938, 51.551289303000011 ], [ -120.150163226999922, 51.554669863000122 ], [ -120.144406860999965, 51.554373424000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "86.2", "sL_BldgLoss": "86.2", "sL_StrLoss": "86.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BE3597A9B075EC095304FBE0BC94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.117681948999987, 51.56891299600008 ], [ -120.122181591999905, 51.569145725000062 ], [ -120.12201597899994, 51.57038200800006 ], [ -120.121942287999971, 51.570622914000118 ], [ -120.12163689, 51.571110003000157 ], [ -120.120353501999958, 51.572229509000053 ], [ -120.119952194999911, 51.572632489000092 ], [ -120.115998622999911, 51.572427952000076 ], [ -120.115943821000016, 51.572425115000051 ], [ -120.116423519999913, 51.568847875000124 ], [ -120.117681948999987, 51.56891299600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28", "sL_BldgLoss": "28", "sL_StrLoss": "28", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B1538761C065EC05ED008573CCF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.094988753999971, 51.617871548000096 ], [ -120.096719790999941, 51.617914402000117 ], [ -120.096633764999964, 51.61926140000007 ], [ -120.09620099199999, 51.619250688000079 ], [ -120.096149367999928, 51.620058888000102 ], [ -120.095716586999984, 51.6200481750001 ], [ -120.095699374999967, 51.620317574000119 ], [ -120.094401029999972, 51.620285424000059 ], [ -120.094538777999901, 51.618130231000038 ], [ -120.094971538999971, 51.618140948000082 ], [ -120.094988753999971, 51.617871548000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043F38CBF65065EC0AA9E480756CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.09896831899999, 51.618309464000113 ], [ -120.10233961099999, 51.618484202000026 ], [ -120.101147193999935, 51.619873309000056 ], [ -120.101132009999901, 51.619891036000062 ], [ -120.099379243, 51.62193273400004 ], [ -120.098486657999928, 51.621886461 ], [ -120.09896831899999, 51.618309464000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4932417", "BldgCostT": "3401667", "sL_LossRatio": "1", "sL_AssetLoss": "200.3", "sL_BldgLoss": "200.3", "sL_StrLoss": "200.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDD7FD3AA2075EC0CEE04AD125C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.12064719199995, 51.559793666000104 ], [ -120.121038493999933, 51.556872455000089 ], [ -120.117156282999986, 51.556671574000042 ], [ -120.117156380000011, 51.556670855000071 ], [ -120.115392225, 51.556579526000064 ], [ -120.115428797999968, 51.556306736000124 ], [ -120.11103799599999, 51.556079308000051 ], [ -120.111517916999915, 51.552502031000053 ], [ -120.116680610999964, 51.55276942400009 ], [ -120.11727381599999, 51.552800132000158 ], [ -120.117237257999975, 51.553072924000098 ], [ -120.121627788999945, 51.553300114000081 ], [ -120.12162769299999, 51.553300833000122 ], [ -120.12339172899999, 51.553392066000121 ], [ -120.123000614999981, 51.556313294000113 ], [ -120.126882820999953, 51.556513976000076 ], [ -120.126404105999939, 51.560091304000125 ], [ -120.122985862999926, 51.559914613000032 ], [ -120.12064719199995, 51.559793666000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "56", "sL_BldgLoss": "56", "sL_StrLoss": "56", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000415EF68824075EC0DF23511E4CC44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.108968179999977, 51.531635132000076 ], [ -120.114721332999949, 51.531933370000083 ], [ -120.114241897999989, 51.535510732000077 ], [ -120.108488278999971, 51.535212471000072 ], [ -120.108968179999977, 51.531635132000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "85.1", "sL_BldgLoss": "85.1", "sL_StrLoss": "85.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF175B4A8E055EC04D37E4FA52D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.084168431999942, 51.62559413400006 ], [ -120.08993372499998, 51.625893597000058 ], [ -120.089451243999974, 51.629470530000042 ], [ -120.083685485999951, 51.629171044000088 ], [ -120.084168431999942, 51.62559413400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10481083", "BldgCostT": "7228333", "sL_LossRatio": "1", "sL_AssetLoss": "429", "sL_BldgLoss": "429", "sL_StrLoss": "429", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D022AFBB2085EC0BBF2B457FAC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.130464344999922, 51.563970248000082 ], [ -120.130032084999982, 51.56395967 ], [ -120.130015108999913, 51.564229080000061 ], [ -120.130447370999917, 51.564239659000123 ], [ -120.130464344999922, 51.563970248000082 ], [ -120.131328864999958, 51.563991401000116 ], [ -120.131345830999962, 51.563721990000019 ], [ -120.132598631999912, 51.563752631000042 ], [ -120.132858918999915, 51.56180574200004 ], [ -120.13708058499995, 51.562023570000086 ], [ -120.137286896999967, 51.558740497000038 ], [ -120.138693505999967, 51.558774830000068 ], [ -120.138794084999944, 51.558021673000049 ], [ -120.139614277999897, 51.558063967000116 ], [ -120.139708085999956, 51.55736139300005 ], [ -120.140152589, 51.557384311000128 ], [ -120.140243800999926, 51.556701104000105 ], [ -120.146000441999917, 51.556997753000083 ], [ -120.145740512999964, 51.558946578000111 ], [ -120.1489567499999, 51.559024821000051 ], [ -120.14897360899991, 51.55875540600006 ], [ -120.154592462, 51.558891888000097 ], [ -120.154544269999917, 51.559663526000122 ], [ -120.15446735799999, 51.55969832600011 ], [ -120.153677526999985, 51.559679155000026 ], [ -120.15366069399991, 51.559948571000071 ], [ -120.152796232999918, 51.559927584000036 ], [ -120.152779393999964, 51.560197 ], [ -120.15191493, 51.560176007000074 ], [ -120.15189808599996, 51.560445422000079 ], [ -120.151033616999925, 51.560424422000068 ], [ -120.151016768999938, 51.560693837000052 ], [ -120.150152296, 51.560672832000115 ], [ -120.150135442999954, 51.560942246000081 ], [ -120.149270965, 51.560921232000041 ], [ -120.149254104999969, 51.561190648000078 ], [ -120.148389624999965, 51.561169628000094 ], [ -120.148372759999958, 51.561439043000071 ], [ -120.145779306999913, 51.561375945000059 ], [ -120.14576676599999, 51.561576101000064 ], [ -120.145673318999968, 51.561579195000071 ], [ -120.145427437999956, 51.561637204000064 ], [ -120.145330182999942, 51.561634837 ], [ -120.145328572999929, 51.561660530000083 ], [ -120.145087485999952, 51.561717408000057 ], [ -120.144682956999972, 51.561888903000074 ], [ -120.144448808999954, 51.56188320200004 ], [ -120.14444204899992, 51.561991033000048 ], [ -120.144345208999979, 51.562032086000052 ], [ -120.144161541999949, 51.562146032000079 ], [ -120.143999672999925, 51.562142089000112 ], [ -120.143987865999947, 51.562330404000086 ], [ -120.143924939999962, 51.562410094000036 ], [ -120.143550530999946, 51.562400973000067 ], [ -120.143517613, 51.562925929000109 ], [ -120.143297800999989, 51.563204293000055 ], [ -120.143067590999934, 51.563198683000046 ], [ -120.143050693999967, 51.563468096000072 ], [ -120.14218617399996, 51.563447031000059 ], [ -120.142169272, 51.563716444000093 ], [ -120.140872486999967, 51.563684833000103 ], [ -120.140855575999979, 51.563954246000044 ], [ -120.139126521999955, 51.563912074000051 ], [ -120.139109601999948, 51.56418148700002 ], [ -120.138341041999951, 51.564162734000035 ], [ -120.13831316199996, 51.564371474000069 ], [ -120.137544813999938, 51.564618501000112 ], [ -120.136523811999936, 51.564792201000074 ], [ -120.135054789, 51.565430296000024 ], [ -120.134701093, 51.565502826000142 ], [ -120.132380632999983, 51.565383077000021 ], [ -120.132490756, 51.56455947000012 ], [ -120.132159461999933, 51.564551368000124 ], [ -120.132125537999954, 51.56509018900006 ], [ -120.130396453999978, 51.565047889000027 ], [ -120.130386509999965, 51.56520573700012 ], [ -120.130291590999946, 51.565215196000061 ], [ -120.129973118999928, 51.565307354000069 ], [ -120.12908266299992, 51.565285558000085 ], [ -120.129065683999968, 51.565554967000018 ], [ -120.128201133999966, 51.565533797000057 ], [ -120.128184146999942, 51.565803207000016 ], [ -120.127319594999975, 51.565782031000026 ], [ -120.127302603999951, 51.566051440000095 ], [ -120.126438045999976, 51.566030258000083 ], [ -120.126421048999958, 51.566299667000081 ], [ -120.125310278999947, 51.566272442000162 ], [ -120.125184466999954, 51.567212201000082 ], [ -120.124660487999975, 51.567559495000083 ], [ -120.122763405999962, 51.568339895000108 ], [ -120.122535104999912, 51.568566082000046 ], [ -120.118637208999957, 51.568364496000051 ], [ -120.11865373399999, 51.568241210000053 ], [ -120.119116645, 51.56478723 ], [ -120.119707595999941, 51.564817801000061 ], [ -120.119741331999961, 51.564566044000102 ], [ -120.12549886399999, 51.564863727000045 ], [ -120.125454293999965, 51.56519667000007 ], [ -120.126489033999917, 51.565222030000101 ], [ -120.126506031999952, 51.564952621000046 ], [ -120.12693829899996, 51.564963211000084 ], [ -120.126955293, 51.564693803000104 ], [ -120.127387556999935, 51.564704393000021 ], [ -120.127421539, 51.564165574000072 ], [ -120.127853800999944, 51.564176163000141 ], [ -120.127870785999932, 51.563906753000062 ], [ -120.128735304999978, 51.563927924000041 ], [ -120.128786248999972, 51.563119695000083 ], [ -120.127057246, 51.563077345000117 ], [ -120.127091228999973, 51.562538527000072 ], [ -120.12665898299997, 51.562527936000023 ], [ -120.126641989999939, 51.56279734500005 ], [ -120.126209741999958, 51.562786753000083 ], [ -120.126192744999969, 51.563056163000056 ], [ -120.12532824499999, 51.563034972000089 ], [ -120.125311243999988, 51.563304381000108 ], [ -120.124878990999932, 51.563293784000066 ], [ -120.124861988999911, 51.563563192000132 ], [ -120.122700719999926, 51.563510181000083 ], [ -120.122711693999975, 51.563336433000103 ], [ -120.12275177, 51.562701955000087 ], [ -120.123184014999978, 51.562712561000048 ], [ -120.123201030999965, 51.562443152000114 ], [ -120.124497759999926, 51.562474958000031 ], [ -120.124514765999919, 51.562205549000069 ], [ -120.12494700799999, 51.562216147000122 ], [ -120.124964009999957, 51.561946738000081 ], [ -120.125396249999966, 51.561957335000031 ], [ -120.125413249999937, 51.561687926000054 ], [ -120.125845486999964, 51.56169852200005 ], [ -120.125862484999942, 51.561429112000049 ], [ -120.128023659999954, 51.561482065000057 ], [ -120.128008413999922, 51.561723886000024 ], [ -120.12800667499999, 51.56175147400009 ], [ -120.128553934999957, 51.561764877000044 ], [ -120.131464589999936, 51.56183611600008 ], [ -120.131396728999903, 51.562913759000068 ], [ -120.130532229999957, 51.562892607000023 ], [ -120.130464344999922, 51.563970248000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8037833", "BldgCostT": "5543333", "sL_LossRatio": "1", "sL_AssetLoss": "341", "sL_BldgLoss": "341", "sL_StrLoss": "341", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CAEB982507075EC0A8AE196CACCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.11007998, 51.579318256000072 ], [ -120.110473429999928, 51.576387651000069 ], [ -120.115640126999921, 51.576655148000057 ], [ -120.11623244899999, 51.576685800000092 ], [ -120.116211439, 51.576842460000123 ], [ -120.117732638999968, 51.576921163000058 ], [ -120.11748400299993, 51.577897784000051 ], [ -120.116152785999986, 51.580441464000081 ], [ -120.114274441999939, 51.580344261000107 ], [ -120.114260028999979, 51.580571641000091 ], [ -120.113938591999954, 51.580563731000026 ], [ -120.113755205999951, 51.581930393000086 ], [ -120.113414915999954, 51.582186099000083 ], [ -120.11307929799996, 51.582681706000074 ], [ -120.112929870999906, 51.583067876000023 ], [ -120.112888401999925, 51.583065730000101 ], [ -120.112867705, 51.583219942 ], [ -120.112150216, 51.583667306000109 ], [ -120.110882718999946, 51.584786708000124 ], [ -120.110228721999974, 51.58596740100009 ], [ -120.110125403999973, 51.587844503000085 ], [ -120.109917773999896, 51.588863841000062 ], [ -120.109526298999967, 51.588843569000083 ], [ -120.109337258999929, 51.590251033000087 ], [ -120.109206281999931, 51.590399331000143 ], [ -120.109094034999913, 51.590393518000063 ], [ -120.109072980999912, 51.5905502580001 ], [ -120.108962095999985, 51.590675805000018 ], [ -120.108697679999949, 51.590855352000069 ], [ -120.106261601999933, 51.590729151000069 ], [ -120.103268860999904, 51.590574040000021 ], [ -120.10374979, 51.586996915000093 ], [ -120.103972308999943, 51.587008451000052 ], [ -120.104036703999938, 51.586529422000112 ], [ -120.104584286999938, 51.586557808000059 ], [ -120.10479416299998, 51.584996336000053 ], [ -120.105231949, 51.585019028000062 ], [ -120.105364496999968, 51.584032748000034 ], [ -120.106947554, 51.584114790000079 ], [ -120.107285657999952, 51.581598087000025 ], [ -120.10799515199993, 51.581634850000043 ], [ -120.108318553999979, 51.579227007000057 ], [ -120.11007998, 51.579318256000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "150", "sL_BldgLoss": "150", "sL_StrLoss": "150", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6BF50137F0B5EC069BB534B04BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.179946125999962, 51.488890927000057 ], [ -120.183138754, 51.48905462800009 ], [ -120.182665339999957, 51.492632427000046 ], [ -120.181574472999927, 51.492576504000098 ], [ -120.181368477999911, 51.494132820000068 ], [ -120.181153160999969, 51.495759457000069 ], [ -120.177508942999907, 51.495572560000056 ], [ -120.176100569999932, 51.495500298000088 ], [ -120.17611960699999, 51.494977500000068 ], [ -120.176480612999967, 51.494275403000103 ], [ -120.17669218899999, 51.49201369300004 ], [ -120.176686212999968, 51.491928266000109 ], [ -120.17696916099996, 51.491942785000028 ], [ -120.177137529999982, 51.490671640000102 ], [ -120.178085117999942, 51.490239103000079 ], [ -120.179288475999925, 51.488857195000072 ], [ -120.179946125999962, 51.488890927000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "57.1", "sL_BldgLoss": "57.1", "sL_StrLoss": "57.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007990436994065EC01CD266A4F7CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.105751763999976, 51.591487690000044 ], [ -120.106845852999982, 51.591544380000066 ], [ -120.106756667999946, 51.592208057000086 ], [ -120.105264907999981, 51.59340888900001 ], [ -120.10427149399996, 51.594733401000092 ], [ -120.103949302, 51.595022494000098 ], [ -120.103375350999954, 51.596140305000056 ], [ -120.102649489999976, 51.59610267900009 ], [ -120.099863950999975, 51.595958238000037 ], [ -120.10034521599999, 51.592381147000047 ], [ -120.100538134, 51.592391153000037 ], [ -120.10058622699999, 51.59203365200004 ], [ -120.100976250999935, 51.592053879000083 ], [ -120.101084952999898, 51.591245762000057 ], [ -120.105751763999976, 51.591487690000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "86.2", "sL_BldgLoss": "86.2", "sL_StrLoss": "86.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041B498D08B095EC07A7E62AED6C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.146519505999947, 51.543677125000073 ], [ -120.152274485999939, 51.543973462000075 ], [ -120.15179797199994, 51.547550939000104 ], [ -120.146042526999921, 51.5472545800001 ], [ -120.146519505999947, 51.543677125000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "1", "sL_AssetLoss": "149.5", "sL_BldgLoss": "149.5", "sL_StrLoss": "149.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000704CC3AE35085EC072DAD7AAF2C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.123729359, 51.509623129000069 ], [ -120.12382490499995, 51.508908656000123 ], [ -120.123704608999944, 51.508902430000013 ], [ -120.124182985999965, 51.505324934000093 ], [ -120.12493344899994, 51.505363777000056 ], [ -120.12493865299993, 51.505324851000047 ], [ -120.126861539999979, 51.505424355000081 ], [ -120.126903779999964, 51.505108297000028 ], [ -120.127492831999959, 51.505138772000109 ], [ -120.127495152000037, 51.505121410000086 ], [ -120.130852844999964, 51.505295064000109 ], [ -120.133244966999953, 51.505418719000048 ], [ -120.132767323999957, 51.508996252000067 ], [ -120.132178217, 51.508965805000116 ], [ -120.132175898999918, 51.50898316700011 ], [ -120.13076756199996, 51.508910365000098 ], [ -120.130252844, 51.508883753000049 ], [ -120.13021062599995, 51.509199811 ], [ -120.129580389999902, 51.509167224000059 ], [ -120.129479735999936, 51.509920627000064 ], [ -120.123729359, 51.509623129000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "57.1", "sL_BldgLoss": "57.1", "sL_StrLoss": "57.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000917968486A055EC04A8160E957D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.087588206999982, 51.633493928000057 ], [ -120.089160328999981, 51.633575554000103 ], [ -120.088733588999958, 51.633970585000121 ], [ -120.087361021999982, 51.634911496000029 ], [ -120.087204979999967, 51.634994587000101 ], [ -120.085643564999927, 51.635826245000061 ], [ -120.085433881, 51.635937909000056 ], [ -120.083791514999959, 51.636575704000087 ], [ -120.081280294999914, 51.637293655000072 ], [ -120.081452566999957, 51.636018570000076 ], [ -120.081514751, 51.635558291000081 ], [ -120.082213209999978, 51.635594594000096 ], [ -120.08312289, 51.635641869000068 ], [ -120.08318049899999, 51.635215330000072 ], [ -120.084022910999977, 51.635259102000106 ], [ -120.08407467899994, 51.63487575000007 ], [ -120.085232338999916, 51.634935892000058 ], [ -120.085301952999913, 51.6344202760001 ], [ -120.087448146999947, 51.634531744000078 ], [ -120.087588206999982, 51.633493928000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59018956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "115.2", "sL_BldgLoss": "115.2", "sL_StrLoss": "115.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DC60BF161045EC019CD67CCE6D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.071291720999966, 51.630356388000038 ], [ -120.071580127999979, 51.630371407000069 ], [ -120.07109610399999, 51.633948246000038 ], [ -120.06532988399999, 51.633647834000087 ], [ -120.065665898999953, 51.631167222000087 ], [ -120.065790493999941, 51.630247337000085 ], [ -120.070108375, 51.630294758000055 ], [ -120.071291720999966, 51.630356388000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818333", "BldgCostT": "2633333", "sL_LossRatio": "0.998929003973695", "sL_AssetLoss": "1098.977", "sL_BldgLoss": "1097.8", "sL_StrLoss": "1088", "sL_NStrLoss": "9.8", "sL_ContLoss": "1.177", "geom_point": "0101000020E6100000CE2ABF4EE2655EC09A67BA1175214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.589347301999965, 50.261854782000107 ], [ -121.589420752999928, 50.261100479 ], [ -121.589155264999931, 50.261089868000042 ], [ -121.589207354999985, 50.260554943000074 ], [ -121.591536214999962, 50.259742094000096 ], [ -121.593215729999926, 50.259629885000038 ], [ -121.594021470999934, 50.260910390000085 ], [ -121.594922178999951, 50.262341711000019 ], [ -121.594875538999958, 50.262821265000092 ], [ -121.592471471999957, 50.262725278000104 ], [ -121.589274970999938, 50.26259756700005 ], [ -121.589347301999965, 50.261854782000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19442084", "BldgCostT": "13408334", "sL_LossRatio": "0.998168555203595", "sL_AssetLoss": "6968.269", "sL_BldgLoss": "6955.507", "sL_StrLoss": "6864.267", "sL_NStrLoss": "91.24", "sL_ContLoss": "12.762", "geom_point": "0101000020E6100000828617A70E665EC07035FCB8C7224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.59510045899999, 50.266986638000041 ], [ -121.595104091999957, 50.266863137000051 ], [ -121.595114784999964, 50.26649975400003 ], [ -121.594925921999987, 50.266497471000037 ], [ -121.594693978999928, 50.266494667000124 ], [ -121.594705725999944, 50.266095569000122 ], [ -121.594717794999923, 50.265685483000041 ], [ -121.59513859599997, 50.265690571000107 ], [ -121.595146529999965, 50.265420843000086 ], [ -121.59556733, 50.265425929000052 ], [ -121.595591128999956, 50.264616744000115 ], [ -121.596853499999938, 50.264631993000066 ], [ -121.596805941999946, 50.266250363000061 ], [ -121.597226746999951, 50.266255443000048 ], [ -121.597202799999963, 50.267070524000054 ], [ -121.599518528999951, 50.267162877000047 ], [ -121.599169878999987, 50.270750844000084 ], [ -121.598353619999926, 50.270718297000094 ], [ -121.598184335999917, 50.272459855000129 ], [ -121.598113676, 50.273186763000034 ], [ -121.597805197999946, 50.273174461000039 ], [ -121.59754810599992, 50.275818870000087 ], [ -121.59680621699999, 50.275789280000076 ], [ -121.596803871999953, 50.27581338800011 ], [ -121.592384322, 50.275637017000072 ], [ -121.592271211999972, 50.276798996000053 ], [ -121.588558146999944, 50.276759224000024 ], [ -121.588513266999925, 50.273239456000063 ], [ -121.591419219999935, 50.273355553000023 ], [ -121.591551006999964, 50.272001872000011 ], [ -121.59229283, 50.272031496000068 ], [ -121.592295176000022, 50.272007389000066 ], [ -121.592603644999926, 50.272019706000073 ], [ -121.592861002999911, 50.269375296000113 ], [ -121.593677236999895, 50.269407884000074 ], [ -121.593917400999942, 50.266939416000064 ], [ -121.59510045899999, 50.266986638000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "174.9", "sL_BldgLoss": "174.9", "sL_StrLoss": "174.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EBF8BBB970005EC04B276D0528744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.004284995999939, 50.905529825000052 ], [ -120.009956785999989, 50.905833555000108 ], [ -120.00947567799993, 50.90941283800003 ], [ -120.003803435999885, 50.909109085000132 ], [ -120.004284995999939, 50.905529825000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.1", "sL_BldgLoss": "47.1", "sL_StrLoss": "47.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004381CA3AD4055EC0EA554BD79F6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.090184121, 50.849207364000115 ], [ -120.090215292999972, 50.848971964000057 ], [ -120.088578785, 50.848885421000077 ], [ -120.088760491999977, 50.847513518000049 ], [ -120.088359672999943, 50.847492317000032 ], [ -120.088374685999966, 50.847378969000019 ], [ -120.088627815999956, 50.847413193000072 ], [ -120.08931480899993, 50.847555899000049 ], [ -120.090468571999963, 50.847857497000085 ], [ -120.094742974, 50.849242039000096 ], [ -120.094924111999916, 50.849300702000072 ], [ -120.095684909999974, 50.849478688000055 ], [ -120.095850833, 50.849495558000058 ], [ -120.09584934899999, 50.849506771000051 ], [ -120.090184121, 50.849207364000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13496999", "BldgCostT": "8834999", "sL_LossRatio": "0.989115495170261", "sL_AssetLoss": "1433.230105", "sL_BldgLoss": "1417.630105", "sL_StrLoss": "1412.000105", "sL_NStrLoss": "5.63", "sL_ContLoss": "15.6", "geom_point": "0101000020E6100000004C42B711085EC0C9138C73697A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.121692186999937, 50.956945401000063 ], [ -120.121751594, 50.955994013000073 ], [ -120.121923894999952, 50.955529698000142 ], [ -120.121896293999939, 50.955277591000026 ], [ -120.12179668, 50.955266198000032 ], [ -120.121132691999904, 50.95566360600003 ], [ -120.121039492999969, 50.956227610000063 ], [ -120.120429221, 50.956905503000037 ], [ -120.119511782999922, 50.956924065000088 ], [ -120.11964972, 50.955879784000047 ], [ -120.119367356999959, 50.955864966000071 ], [ -120.119462838999937, 50.955142114000054 ], [ -120.119840152999984, 50.952285403000118 ], [ -120.119871874999944, 50.952287068000047 ], [ -120.119983294999955, 50.951443404 ], [ -120.121420877999981, 50.951518840000112 ], [ -120.121456143999964, 50.951251738000067 ], [ -120.127134534999982, 50.951549527000068 ], [ -120.127132830999955, 50.951562434 ], [ -120.127421424999952, 50.951577561000079 ], [ -120.130199632999947, 50.951723143000031 ], [ -120.129888090999941, 50.954086131000061 ], [ -120.133226294999972, 50.954260966000064 ], [ -120.133020539999961, 50.955822322000088 ], [ -120.13435669899998, 50.955855139000029 ], [ -120.134290357999973, 50.95693289600009 ], [ -120.133010542999941, 50.956901463000037 ], [ -120.133027134999935, 50.956632023000083 ], [ -120.132914198999984, 50.956629250000034 ], [ -120.132754553999959, 50.957840578000088 ], [ -120.131923262999919, 50.957797049000121 ], [ -120.13174408699993, 50.959156298000039 ], [ -120.129118933999933, 50.959018797000056 ], [ -120.128783198999926, 50.961564361000107 ], [ -120.128331669999952, 50.961540704000072 ], [ -120.128282696999975, 50.961911973000085 ], [ -120.127539536999961, 50.961873033000089 ], [ -120.127514172999938, 50.962065289000101 ], [ -120.127330283999981, 50.962055654000075 ], [ -120.127248596999976, 50.962674794000044 ], [ -120.122296773999949, 50.962415197000091 ], [ -120.122211263999986, 50.962410712000043 ], [ -120.122216994, 50.962310403000046 ], [ -120.122535707999972, 50.961517085000047 ], [ -120.123482194999923, 50.960713794000071 ], [ -120.123585988999949, 50.96041900200003 ], [ -120.123055419999957, 50.959785199000095 ], [ -120.121772681999943, 50.959349392000028 ], [ -120.121587007999935, 50.959120103000032 ], [ -120.121405222999954, 50.957684506000128 ], [ -120.121426591999978, 50.957334199000087 ], [ -120.121692186999937, 50.956945401000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "212", "sL_BldgLoss": "212", "sL_StrLoss": "212", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000030F6DA43AD095EC00A4945E7256E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.151335331999974, 50.86279231400006 ], [ -120.151563278999987, 50.861053307000127 ], [ -120.150701032999962, 50.861008199000075 ], [ -120.150775532999944, 50.860439889000098 ], [ -120.145350893999947, 50.86015595500006 ], [ -120.145686418999986, 50.857598656000036 ], [ -120.145712799999927, 50.85759558900002 ], [ -120.146318202999979, 50.857591194000079 ], [ -120.146936311999951, 50.857663196000075 ], [ -120.147534993999926, 50.857774794000143 ], [ -120.148119811999962, 50.857949605000073 ], [ -120.148676413999965, 50.858186001000064 ], [ -120.14945196799998, 50.858574603000108 ], [ -120.149686034999931, 50.858691889000092 ], [ -120.150746147999939, 50.85922302400008 ], [ -120.150887590999957, 50.859293914000091 ], [ -120.151166624999973, 50.859411646000098 ], [ -120.151448801999919, 50.859530721000091 ], [ -120.151691892999963, 50.859633283000051 ], [ -120.154601768999967, 50.86068372 ], [ -120.156009608999909, 50.861191910000102 ], [ -120.157062887, 50.861459598000081 ], [ -120.157636116999981, 50.86157070400003 ], [ -120.158151965999977, 50.861618176000057 ], [ -120.158132059999971, 50.861770199000034 ], [ -120.157181842999961, 50.861720547000104 ], [ -120.157002688999953, 50.863088623000067 ], [ -120.151335331999974, 50.86279231400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "289.2", "sL_BldgLoss": "289.2", "sL_StrLoss": "289.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADEE81EB04105EC0908D173DFD724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.248114535999946, 50.901465434000094 ], [ -120.248255972999942, 50.900369181000087 ], [ -120.247754, 50.900343383000035 ], [ -120.248215921999972, 50.89676306000009 ], [ -120.250753561999886, 50.89689345900009 ], [ -120.25097045099993, 50.895211418000031 ], [ -120.250722361999948, 50.895198673000046 ], [ -120.251183992999955, 50.891618318000106 ], [ -120.253065690999989, 50.891714978000032 ], [ -120.253172386999921, 50.889902318000075 ], [ -120.253591122999936, 50.889912178000074 ], [ -120.253543671999978, 50.890344351000046 ], [ -120.252861404999948, 50.896560301000079 ], [ -120.252781280999955, 50.89693818900011 ], [ -120.252462013999946, 50.897909285 ], [ -120.252119075999971, 50.898600926000022 ], [ -120.251903612999953, 50.899035502000096 ], [ -120.251898712999932, 50.899045385000115 ], [ -120.251668997999957, 50.899409300000059 ], [ -120.251394292999947, 50.899772778000091 ], [ -120.251223707999927, 50.899998530000104 ], [ -120.250813577999949, 50.900541193000031 ], [ -120.250778891999971, 50.90059781800003 ], [ -120.250090475999926, 50.901720395000076 ], [ -120.249985269999982, 50.901974816000084 ], [ -120.24993024, 50.902107806000039 ], [ -120.24972741, 50.902598209000139 ], [ -120.24921749, 50.904464081000036 ], [ -120.249193115, 50.904553279000091 ], [ -120.24902440299995, 50.905170486000017 ], [ -120.248908985999947, 50.905478192000054 ], [ -120.248792727999941, 50.905656315000037 ], [ -120.247137518999963, 50.905571255000041 ], [ -120.247599543999939, 50.901990957000095 ], [ -120.248001601999974, 50.902011620000053 ], [ -120.248072353999973, 50.901463266000079 ], [ -120.248114535999946, 50.901465434000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "62.8", "sL_BldgLoss": "62.8", "sL_StrLoss": "62.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6E2D17C840B5EC052A81BE6536E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.179379073999954, 50.86148909300001 ], [ -120.180055688999985, 50.861474700000045 ], [ -120.180790716, 50.861526499000021 ], [ -120.181432617, 50.861603204000055 ], [ -120.182621862, 50.861861248000068 ], [ -120.182549556999945, 50.862415831000121 ], [ -120.176882117, 50.86212081400005 ], [ -120.1769202669999, 50.861828495000026 ], [ -120.177309011999981, 50.86175350200002 ], [ -120.177857047, 50.86166491800001 ], [ -120.178460187, 50.861567400000062 ], [ -120.179379073999954, 50.86148909300001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4596500", "BldgCostT": "3170000", "sL_LossRatio": "1", "sL_AssetLoss": "542.8", "sL_BldgLoss": "542.8", "sL_StrLoss": "542.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8CA1431740A5EC0AD80C675A16E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.159062260999946, 50.866517719000022 ], [ -120.159220071999954, 50.865312301000095 ], [ -120.158682331999927, 50.86528421100013 ], [ -120.158726203999976, 50.864949121000052 ], [ -120.159151021999961, 50.861704115000094 ], [ -120.16358778199999, 50.861935803000044 ], [ -120.16374800799997, 50.862043987000085 ], [ -120.164083491, 50.862377688000073 ], [ -120.16433122799998, 50.862624106000077 ], [ -120.16470459099996, 50.862855393000139 ], [ -120.165133698999909, 50.863065191000089 ], [ -120.165532895, 50.863176096000096 ], [ -120.166074497999929, 50.863255804000111 ], [ -120.166760821999929, 50.863298800000095 ], [ -120.167657404999957, 50.863282296000072 ], [ -120.167706026999952, 50.863281404000084 ], [ -120.168580381999973, 50.863237794000113 ], [ -120.168641701999945, 50.863229659000048 ], [ -120.169766146999947, 50.863080402000023 ], [ -120.169737272999924, 50.863301369000055 ], [ -120.169443669999964, 50.865548129000032 ], [ -120.168238467999956, 50.865485279000048 ], [ -120.164926474999959, 50.865312496000101 ], [ -120.164730139999961, 50.866813635000021 ], [ -120.159062260999946, 50.866517719000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6169583", "BldgCostT": "3758333", "sL_LossRatio": "0.958377508147799", "sL_AssetLoss": "254.67", "sL_BldgLoss": "244.07", "sL_StrLoss": "240.2", "sL_NStrLoss": "3.87", "sL_ContLoss": "10.6", "geom_point": "0101000020E61000003FF430F6D6FE5DC012AE36B5A26F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.979037883999965, 50.870705606000065 ], [ -119.979121946999925, 50.870082864000054 ], [ -119.980419324999914, 50.870152716000042 ], [ -119.980475307999939, 50.869737895000036 ], [ -119.982070125999925, 50.869823741000076 ], [ -119.986142396, 50.87004284100005 ], [ -119.986081013999978, 50.870498099000031 ], [ -119.986148726999915, 50.870501741000048 ], [ -119.985730444999959, 50.873603854000081 ], [ -119.98566609199996, 50.874081066000052 ], [ -119.984660259999913, 50.874026964000024 ], [ -119.984651448999912, 50.874092289000082 ], [ -119.983196952999933, 50.874014039000073 ], [ -119.983127208000028, 50.874531024000092 ], [ -119.97745957199993, 50.874225927000083 ], [ -119.97794286499996, 50.870646638000018 ], [ -119.979037883999965, 50.870705606000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "111", "sL_BldgLoss": "111", "sL_StrLoss": "111", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006C5874673D035EC0E9E755B6F26A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.051398335999949, 50.837014724000035 ], [ -120.051435307999967, 50.836737269000103 ], [ -120.049989508999957, 50.836660286000075 ], [ -120.050064623999958, 50.836096705000088 ], [ -120.049491331999974, 50.836066174000045 ], [ -120.04953566599994, 50.835733561000055 ], [ -120.048846532999974, 50.835696857000087 ], [ -120.048893057999948, 50.83534784600004 ], [ -120.0482227359999, 50.835312141000038 ], [ -120.048251576, 50.835095818000092 ], [ -120.04764163199998, 50.835063325000135 ], [ -120.047828094999886, 50.833664797000061 ], [ -120.048048529999974, 50.833668884000183 ], [ -120.048508711999958, 50.833714137000058 ], [ -120.049134548999973, 50.833843006000059 ], [ -120.04968590699994, 50.833995629000043 ], [ -120.049783599999955, 50.834022681000107 ], [ -120.050221069999978, 50.834184770000057 ], [ -120.050612540999921, 50.834382264000098 ], [ -120.050681918999885, 50.834428644000063 ], [ -120.050806089000034, 50.834511649000099 ], [ -120.051093022, 50.83470346600005 ], [ -120.052091859999962, 50.835623303000055 ], [ -120.052216946999948, 50.835738518 ], [ -120.052767733999943, 50.836077861000021 ], [ -120.054080311999911, 50.836693014000112 ], [ -120.055233881999939, 50.837218859000082 ], [ -120.051398335999949, 50.837014724000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "227.5", "sL_BldgLoss": "227.5", "sL_StrLoss": "227.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB5391A7B80C5EC065F61ED3FF764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.19616557099998, 50.9277451190001 ], [ -120.201841467999984, 50.928039139000127 ], [ -120.201375503999927, 50.931619142000066 ], [ -120.195699155999989, 50.931325100000059 ], [ -120.19616557099998, 50.9277451190001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46.5", "sL_BldgLoss": "46.5", "sL_StrLoss": "46.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B12BA6CF00E5EC0FBB12870DB794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.232617830999956, 50.954341068000083 ], [ -120.232788887999902, 50.953020460000069 ], [ -120.232445116999941, 50.95300276600004 ], [ -120.232908810999945, 50.949422720000015 ], [ -120.234118514, 50.949484978000037 ], [ -120.234126658999969, 50.949852341000103 ], [ -120.234159046999963, 50.951309623000022 ], [ -120.234164441999951, 50.951552901000042 ], [ -120.234213821999944, 50.953774308000106 ], [ -120.23422039499998, 50.954099920000054 ], [ -120.234226951, 50.954423874000057 ], [ -120.232617830999956, 50.954341068000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "136.9", "sL_BldgLoss": "136.9", "sL_StrLoss": "136.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D9EF0AFF10A5EC0ED4E2D11DE754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.168398289999956, 50.918901756000061 ], [ -120.174072878999979, 50.919197182000083 ], [ -120.173604781999956, 50.922777107000108 ], [ -120.167929740999938, 50.922481657000112 ], [ -120.168398289999956, 50.918901756000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "222.4", "sL_BldgLoss": "222.4", "sL_StrLoss": "222.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079E38B934E095EC0EB37FA35E5714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.14719042199998, 50.888097783000077 ], [ -120.14849118799998, 50.88816582500003 ], [ -120.148363742999933, 50.889136987000057 ], [ -120.148021365999938, 50.891745768000078 ], [ -120.142350435999944, 50.891449014000038 ], [ -120.142820707999959, 50.887869095000042 ], [ -120.14719042199998, 50.888097783000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2344167", "BldgCostT": "1616667", "sL_LossRatio": "1", "sL_AssetLoss": "353.4", "sL_BldgLoss": "353.4", "sL_StrLoss": "353.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD6A6D33380D5EC0D41DD5FAEC754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.203950522999932, 50.919357682000083 ], [ -120.209625403999937, 50.919651310000113 ], [ -120.20941515899996, 50.921269190000046 ], [ -120.209160151, 50.923231380000054 ], [ -120.203484818999968, 50.922937729000111 ], [ -120.203770825999968, 50.920739144000024 ], [ -120.203950522999932, 50.919357682000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBE214E39DFF5DC0EC3BB7B7F86B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.991492281999953, 50.843841706000028 ], [ -119.996105958, 50.842022575000051 ], [ -119.995819397999981, 50.844152798000096 ], [ -119.994209564999963, 50.844066290000065 ], [ -119.994160441999981, 50.844431336000049 ], [ -119.990266842999958, 50.844222006000031 ], [ -119.99042389100002, 50.844173276000085 ], [ -119.990424574999949, 50.844173042000087 ], [ -119.990440711999938, 50.844168034000099 ], [ -119.991492281999953, 50.843841706000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12561083", "BldgCostT": "8453333", "sL_LossRatio": "0.984141395756746", "sL_AssetLoss": "1528.167273", "sL_BldgLoss": "1503.932673", "sL_StrLoss": "1495.000373", "sL_NStrLoss": "8.9323", "sL_ContLoss": "24.2346", "geom_point": "0101000020E6100000A14E2FE748FE5DC0BF277BF07F6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.972862508999953, 50.86833811200006 ], [ -119.972987347999975, 50.867414184000062 ], [ -119.969824271999983, 50.86724363000009 ], [ -119.969993577999929, 50.865991198000067 ], [ -119.968907804999958, 50.86593263300005 ], [ -119.967492382999978, 50.865856269000084 ], [ -119.967498696999911, 50.86580958100005 ], [ -119.967300078, 50.865798864000034 ], [ -119.96730784399999, 50.865741442000065 ], [ -119.966955971999965, 50.865722454000029 ], [ -119.966967091999948, 50.865640237000022 ], [ -119.966691168999986, 50.865625347000105 ], [ -119.966705438999924, 50.865519843000115 ], [ -119.966314362999967, 50.865498738000063 ], [ -119.966333887999951, 50.865354383000124 ], [ -119.966247771999974, 50.865349736000042 ], [ -119.96626761499995, 50.865203033000114 ], [ -119.965971071999917, 50.865187028000022 ], [ -119.965986199999975, 50.865075198000042 ], [ -119.965862577999985, 50.865068526000037 ], [ -119.965930227999948, 50.864568400000046 ], [ -119.965472897999973, 50.864543716000085 ], [ -119.965491800999956, 50.864403984000077 ], [ -119.965329303999951, 50.864395212000055 ], [ -119.965539416999945, 50.862841951000107 ], [ -119.965134804999977, 50.862820109999987 ], [ -119.965160428999951, 50.862630689000085 ], [ -119.965149717999935, 50.862630111000051 ], [ -119.965267301999958, 50.861760879 ], [ -119.965305894999972, 50.861762861000081 ], [ -119.965405890999989, 50.86176911600004 ], [ -119.965520100999981, 50.861774978000042 ], [ -119.965605919999959, 50.861781616000037 ], [ -119.965734345, 50.861787083000166 ], [ -119.965820180999984, 50.861793743000149 ], [ -119.965891181999964, 50.861791801000059 ], [ -119.965929299999942, 50.861621804000031 ], [ -119.966145693999977, 50.861340606000113 ], [ -119.966446967999943, 50.861096300000057 ], [ -119.966817988999964, 50.860916303000081 ], [ -119.967250092999961, 50.860801716000033 ], [ -119.967696905999929, 50.860758644000043 ], [ -119.968461611999928, 50.860684998000096 ], [ -119.968475763, 50.860683736000105 ], [ -119.970442784999989, 50.860509708000066 ], [ -119.971361728999952, 50.860344889000075 ], [ -119.971736881999959, 50.860277596000067 ], [ -119.972025020999965, 50.860120011000021 ], [ -119.972446909999945, 50.859827290000055 ], [ -119.972651220999964, 50.859529198000097 ], [ -119.972752863999958, 50.859390232000116 ], [ -119.972907551999981, 50.859178741000029 ], [ -119.972995710999953, 50.859058259000058 ], [ -119.973609203999956, 50.858219501000058 ], [ -119.973797382999948, 50.857962190000059 ], [ -119.974096289999977, 50.857106963000092 ], [ -119.974134215, 50.857109007000084 ], [ -119.975067044999946, 50.85715929100008 ], [ -119.978398907, 50.857338829000099 ], [ -119.97791579299998, 50.860918175000066 ], [ -119.976195591999968, 50.860825495 ], [ -119.976129350999884, 50.86131608200003 ], [ -119.978725175999955, 50.861455928000048 ], [ -119.978328518999902, 50.864394655000133 ], [ -119.978243736999929, 50.865022722000063 ], [ -119.97880179699996, 50.86505277800007 ], [ -119.979012513999962, 50.865064127000025 ], [ -119.978980502999974, 50.86530129100008 ], [ -119.978529367999954, 50.868643443000067 ], [ -119.972862508999953, 50.86833811200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10855667", "BldgCostT": "7486667", "sL_LossRatio": "1", "sL_AssetLoss": "1098.1", "sL_BldgLoss": "1098.1", "sL_StrLoss": "1098.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000033EBB53ACFF5DC044CB70F211724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.99298248199996, 50.898325309000043 ], [ -119.993013167999891, 50.898097600000042 ], [ -119.992312675, 50.898059990000057 ], [ -119.992795035999961, 50.894480734000076 ], [ -119.993146468999896, 50.894499603000042 ], [ -119.99318113299995, 50.894242342000076 ], [ -119.993603282999942, 50.894265007000051 ], [ -119.99363422499998, 50.894035353000099 ], [ -119.994077412999914, 50.894059145000071 ], [ -119.994081301999941, 50.894030281000063 ], [ -119.993862608999933, 50.894018541000086 ], [ -119.994027281999976, 50.892796261000044 ], [ -119.993572285999946, 50.892771834000094 ], [ -119.9936278979999, 50.892359071000037 ], [ -119.992406774999893, 50.892293504000101 ], [ -119.99263473399999, 50.890601806000085 ], [ -119.990077315999926, 50.890464442000031 ], [ -119.990537895999964, 50.887047490000064 ], [ -119.989217124999939, 50.886976525000115 ], [ -119.989699613999946, 50.883397238000043 ], [ -119.993355288999936, 50.883593617000024 ], [ -119.995368497999948, 50.883701712000104 ], [ -119.995060255999974, 50.885990580000097 ], [ -119.99494581299993, 50.886840319000058 ], [ -119.99490832099994, 50.887118698000023 ], [ -119.996229104999898, 50.887189595000073 ], [ -119.996001299999975, 50.888881308000066 ], [ -119.998558646999953, 50.889018536000037 ], [ -119.99850308299996, 50.889431302000034 ], [ -119.999724137, 50.889496804000089 ], [ -119.999559633, 50.890719096000062 ], [ -120.000014611000026, 50.890743499000038 ], [ -119.999898340999962, 50.891607432000015 ], [ -120.000268662999986, 50.89162729300012 ], [ -119.999786931999964, 50.895206593000104 ], [ -119.999635277999943, 50.895198460000067 ], [ -119.999588943, 50.895542697000067 ], [ -119.999145737999953, 50.895518927000062 ], [ -119.998822645999951, 50.89791890900009 ], [ -119.998749493999938, 50.897914985000064 ], [ -119.998653281999964, 50.898629612000036 ], [ -119.99567978, 50.898470086000081 ], [ -119.99298248199996, 50.898325309000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1466917", "BldgCostT": "1011667", "sL_LossRatio": "1", "sL_AssetLoss": "247", "sL_BldgLoss": "247", "sL_StrLoss": "247", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006597A06D52045EC0B7F75F9D196C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.064584339999968, 50.8454520700001 ], [ -120.064882037999922, 50.84321333400009 ], [ -120.065144595999968, 50.843260314000077 ], [ -120.065805302999962, 50.843332288000092 ], [ -120.069944703999965, 50.84362499200008 ], [ -120.070459718999956, 50.843688393000093 ], [ -120.070521523999986, 50.843700817000055 ], [ -120.070248920999958, 50.845752772000075 ], [ -120.064584339999968, 50.8454520700001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "84.7", "sL_BldgLoss": "84.7", "sL_StrLoss": "84.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B68054B31CFF5DC076F9F7955E6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.989814321999958, 50.844362418000067 ], [ -119.990212299999911, 50.844238931000064 ], [ -119.98992457099996, 50.846375629000107 ], [ -119.989672970999976, 50.84636209800005 ], [ -119.98965366699997, 50.846505435000076 ], [ -119.989088107999962, 50.846475016000085 ], [ -119.989041259000018, 50.846822849 ], [ -119.987315470999931, 50.846730009000069 ], [ -119.98731178099996, 50.846757389000075 ], [ -119.986454844999969, 50.846711280000086 ], [ -119.98521597699991, 50.846644608000076 ], [ -119.985024857999946, 50.848062639 ], [ -119.984518762, 50.84803539900004 ], [ -119.984428266999956, 50.848706746000055 ], [ -119.984382785000022, 50.849044152000012 ], [ -119.984106120999968, 50.849029259000105 ], [ -119.981378155999892, 50.848882381000095 ], [ -119.983130557999957, 50.847214400000041 ], [ -119.983705013999923, 50.846667603000043 ], [ -119.984300807999944, 50.846226491000081 ], [ -119.985214489999962, 50.845764608000131 ], [ -119.986317404999966, 50.845433586000041 ], [ -119.986529635999929, 50.845369870000127 ], [ -119.987301099999954, 50.845138333000058 ], [ -119.987392503999942, 50.845110882 ], [ -119.987692313, 50.845020890000036 ], [ -119.989814321999958, 50.844362418000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "168.8", "sL_BldgLoss": "168.8", "sL_StrLoss": "168.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD5D041943005EC03032F94DFE754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.002605135999971, 50.919940936000039 ], [ -120.007172976999939, 50.920185557000067 ], [ -120.006691491999945, 50.92376477100008 ], [ -120.00311831799992, 50.923573433000051 ], [ -120.001017444999903, 50.923460882000079 ], [ -120.001499382999938, 50.91988169100005 ], [ -120.002605135999971, 50.919940936000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "1", "sL_AssetLoss": "493.5", "sL_BldgLoss": "493.5", "sL_StrLoss": "493.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FDF3A18D4065EC0B5B721E7F96C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.106065413999929, 50.853432391000084 ], [ -120.106108311999932, 50.853107589000039 ], [ -120.104093571999925, 50.853001339000059 ], [ -120.104181727999958, 50.85233407000009 ], [ -120.102127251999931, 50.852225686000047 ], [ -120.102213693999886, 50.851571599000088 ], [ -120.099127298999917, 50.851408705000019 ], [ -120.099443105999939, 50.849020153000012 ], [ -120.09951892399999, 50.849000656000101 ], [ -120.100242485999956, 50.848814591000036 ], [ -120.100851509999956, 50.848684503000051 ], [ -120.10131631199999, 50.84863150300005 ], [ -120.10174488499996, 50.848615404000071 ], [ -120.102296314999975, 50.84865170900008 ], [ -120.103212003999928, 50.848769383000025 ], [ -120.104639575999968, 50.84902859500005 ], [ -120.105252179999951, 50.849217696000075 ], [ -120.106033601999968, 50.849532863000093 ], [ -120.10641399499994, 50.849686308000081 ], [ -120.107014918999965, 50.849887398000078 ], [ -120.109550380999934, 50.85052749700008 ], [ -120.110300701999947, 50.850764393000119 ], [ -120.11059341499994, 50.850870273000069 ], [ -120.111975091999938, 50.851370004000046 ], [ -120.112248868999941, 50.851466923000089 ], [ -120.112605912999982, 50.851593315000052 ], [ -120.112892116999959, 50.851694909000052 ], [ -120.113088703999935, 50.851747981000045 ], [ -120.113555885999958, 50.8518741030001 ], [ -120.114294390999973, 50.852005812000087 ], [ -120.114347458999944, 50.852013281000019 ], [ -120.114887593999953, 50.852089419000038 ], [ -120.117697888999928, 50.85248556199999 ], [ -120.117800537, 50.852500029000097 ], [ -120.117725204999971, 50.853071555000035 ], [ -120.114056944999916, 50.852878459000102 ], [ -120.114006853999967, 50.853258241000042 ], [ -120.111808934999928, 50.853142485000077 ], [ -120.111731282999983, 50.853730993000035 ], [ -120.106065413999929, 50.853432391000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "183.2", "sL_BldgLoss": "183.2", "sL_StrLoss": "183.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDF9F2C0CF025EC022FE614B0F6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.046102794999968, 50.833632796000117 ], [ -120.046765101999981, 50.833645083000114 ], [ -120.046518497999941, 50.835494344000054 ], [ -120.046038282999945, 50.83546875400004 ], [ -120.045977998999916, 50.835920756000121 ], [ -120.045630334999942, 50.835902228000101 ], [ -120.045577203999969, 50.836300564000041 ], [ -120.045402781999925, 50.836291268000139 ], [ -120.045342317999939, 50.83674456800005 ], [ -120.045214261999917, 50.836737743000107 ], [ -120.045143640999981, 50.837267172000082 ], [ -120.045011577999972, 50.83726013400009 ], [ -120.044889282, 50.838176875000023 ], [ -120.044385559999938, 50.838150028000079 ], [ -120.044313386999988, 50.838690988000039 ], [ -120.039167138999915, 50.838416569000039 ], [ -120.0393727299999, 50.838332615000063 ], [ -120.04174980099998, 50.837361897000051 ], [ -120.042344985999961, 50.836983595000078 ], [ -120.042574099999968, 50.836784005000027 ], [ -120.042884399999963, 50.836307488000088 ], [ -120.04337298499999, 50.834942899000097 ], [ -120.043624197999961, 50.834630887000067 ], [ -120.043922998999932, 50.834368282000106 ], [ -120.044430500999951, 50.83404837800007 ], [ -120.044682699999967, 50.833944956000032 ], [ -120.0448603899999, 50.833872078000063 ], [ -120.045495993999964, 50.833703194000051 ], [ -120.046102794999968, 50.833632796000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44", "sL_BldgLoss": "44", "sL_StrLoss": "44", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D79B621F2E015EC049778491E66B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.018416755999965, 50.842423389000047 ], [ -120.021193894999939, 50.842370629000101 ], [ -120.021020063999913, 50.843668316000155 ], [ -120.015356079999933, 50.843365124000115 ], [ -120.01547486699998, 50.842479190000091 ], [ -120.017165223999925, 50.842447133000043 ], [ -120.018416755999965, 50.842423389000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.2", "sL_BldgLoss": "91.2", "sL_StrLoss": "91.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000770AC1C3D7035EC07BB9D3C6A66B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.058306827999914, 50.8387300260001 ], [ -120.05856520199994, 50.838743765000089 ], [ -120.059401768, 50.839135207000034 ], [ -120.059699330999962, 50.839274398000079 ], [ -120.060690638, 50.839738232000059 ], [ -120.060836778999885, 50.839806589000069 ], [ -120.061298020999942, 50.840070004000026 ], [ -120.061704707000018, 50.840389004000059 ], [ -120.061996506999947, 50.840736189000026 ], [ -120.062769703999948, 50.842063399000054 ], [ -120.063195324999938, 50.84250869900012 ], [ -120.063332408999955, 50.842602226000011 ], [ -120.057830308999954, 50.842309791000062 ], [ -120.058306827999914, 50.8387300260001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8180417", "BldgCostT": "5641667", "sL_LossRatio": "1", "sL_AssetLoss": "663.9", "sL_BldgLoss": "663.9", "sL_StrLoss": "663.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000071F3117040F5EC0338E4FD03F764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.233467145999924, 50.934230428000085 ], [ -120.233687532999951, 50.932527903000036 ], [ -120.233641567999911, 50.932525537000053 ], [ -120.233661898999941, 50.932368478000029 ], [ -120.230509874999939, 50.93220615100013 ], [ -120.230660833999977, 50.931040540000026 ], [ -120.228820200999905, 50.930945707000063 ], [ -120.229283955999918, 50.927365587000082 ], [ -120.23224181899991, 50.927517968000082 ], [ -120.232660589999981, 50.924282959000017 ], [ -120.235231911999961, 50.924415363000058 ], [ -120.235250945999965, 50.924268244000039 ], [ -120.233850849999968, 50.924196157000054 ], [ -120.23423474899991, 50.921229490000016 ], [ -120.232991026999983, 50.921165440000109 ], [ -120.233454345999945, 50.917585264000124 ], [ -120.234389801999924, 50.91763344000001 ], [ -120.234785047999978, 50.914578325000058 ], [ -120.234833083999959, 50.914206988000082 ], [ -120.23548421299995, 50.914240517000032 ], [ -120.237658081999939, 50.914352429000061 ], [ -120.23786952899998, 50.912717024000052 ], [ -120.238099632999962, 50.910937156000031 ], [ -120.2389958699999, 50.910983283000093 ], [ -120.239052213999955, 50.910547378000103 ], [ -120.243253225999979, 50.910763496000115 ], [ -120.24424458199999, 50.910814472 ], [ -120.243877529999935, 50.911069868000027 ], [ -120.24386079599999, 50.9110814920001 ], [ -120.242655767999935, 50.911720636000048 ], [ -120.24162921199995, 50.91226508200004 ], [ -120.241299193, 50.912440092000104 ], [ -120.241180915999905, 50.912501941000102 ], [ -120.241038796999987, 50.912576217000037 ], [ -120.239205183999957, 50.913516198000153 ], [ -120.237858704999923, 50.914398398000152 ], [ -120.23707168599999, 50.915095799000042 ], [ -120.236444812999963, 50.915834799000059 ], [ -120.236119096999943, 50.916296506000108 ], [ -120.235916708999952, 50.916583413000119 ], [ -120.235550327999931, 50.917285404000026 ], [ -120.23550571, 50.917419840000051 ], [ -120.235258190999943, 50.918166030000066 ], [ -120.235215608, 50.918294404000093 ], [ -120.235182793999911, 50.91850350700004 ], [ -120.235087602999954, 50.919239206000057 ], [ -120.23512489699999, 50.919491711 ], [ -120.235317991999949, 50.920759378000135 ], [ -120.235926966999969, 50.922853078000124 ], [ -120.235977855999934, 50.923221573000035 ], [ -120.236037153999973, 50.924198603000022 ], [ -120.236037737999965, 50.92463562700005 ], [ -120.236031881999963, 50.924837019000144 ], [ -120.236025302000016, 50.92506299800003 ], [ -120.235866318999953, 50.926532106000153 ], [ -120.235790578999982, 50.92723178500011 ], [ -120.235729450999912, 50.927796748000027 ], [ -120.235704638999906, 50.928025972000043 ], [ -120.235592550999982, 50.929061658000137 ], [ -120.235564699999927, 50.929319010000043 ], [ -120.235556822999953, 50.929430018000048 ], [ -120.23554219699993, 50.929635895000082 ], [ -120.235462021999965, 50.930489468000175 ], [ -120.235400487999968, 50.931144692000053 ], [ -120.235251222, 50.932733642000102 ], [ -120.235102725999951, 50.934314623000027 ], [ -120.233467145999924, 50.934230428000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752666", "BldgCostT": "5346666", "sL_LossRatio": "1", "sL_AssetLoss": "697", "sL_BldgLoss": "697", "sL_StrLoss": "697", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000073445B216E075EC041CD567F007D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.111271122999966, 50.979584 ], [ -120.111470275999949, 50.978079206000061 ], [ -120.109343205999934, 50.977967461000077 ], [ -120.106002153999938, 50.977791860000103 ], [ -120.106476253999986, 50.974212441000077 ], [ -120.107823827999979, 50.974283280000066 ], [ -120.112157467999964, 50.974510980000055 ], [ -120.111958354999913, 50.976015782000097 ], [ -120.115065960999956, 50.976178958000034 ], [ -120.1151921149999, 50.975225044000055 ], [ -120.116689778999941, 50.975303654000065 ], [ -120.116715556999907, 50.975108680000062 ], [ -120.117393544999985, 50.975144260000043 ], [ -120.117802882999939, 50.97559540600011 ], [ -120.11814598899997, 50.97581900200008 ], [ -120.11850158499999, 50.975837505000086 ], [ -120.119024081999939, 50.975660900000058 ], [ -120.120159905000023, 50.975518487000066 ], [ -120.120609003999917, 50.975385985000102 ], [ -120.120907605999946, 50.975159607000137 ], [ -120.120930202999944, 50.974584195000027 ], [ -120.120889184999982, 50.973863598000037 ], [ -120.12067061099998, 50.973263996000078 ], [ -120.121505008999989, 50.972654385000119 ], [ -120.121553131000013, 50.972378864000092 ], [ -120.12196403199998, 50.972400411000066 ], [ -120.124701668999961, 50.972543933000047 ], [ -120.12463194899999, 50.973072018000039 ], [ -120.124695206999917, 50.973075334000072 ], [ -120.124609220999943, 50.97372661 ], [ -120.12488624599996, 50.973741129000125 ], [ -120.12441362899996, 50.977320628000037 ], [ -120.123813306999935, 50.977289164000069 ], [ -120.12370014699998, 50.978146043000052 ], [ -120.122046554999983, 50.978059358000046 ], [ -120.121924117999967, 50.978986182000035 ], [ -120.120470206999954, 50.978909945000098 ], [ -120.120426322999947, 50.978907642000074 ], [ -120.120400558999947, 50.979102617000088 ], [ -120.117079177999983, 50.978928383000103 ], [ -120.116953053999936, 50.979882296000056 ], [ -120.111271122999966, 50.979584 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "216.6", "sL_BldgLoss": "216.6", "sL_StrLoss": "216.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D79E40757F0A5EC04FD08140426F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.166564143999949, 50.867539351000111 ], [ -120.16709759099993, 50.867567177000097 ], [ -120.166629474999979, 50.87114728100002 ], [ -120.160961033999939, 50.870851463000058 ], [ -120.161195607999943, 50.869059272000094 ], [ -120.1614296, 50.867271380000091 ], [ -120.166564143999949, 50.867539351000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.3", "sL_BldgLoss": "58.3", "sL_StrLoss": "58.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006A4E1C48700F5EC0F29CCAF5F86E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.243341037999954, 50.864956243000051 ], [ -120.243517159999911, 50.864818700000029 ], [ -120.243127595999923, 50.867838013000075 ], [ -120.242431026999924, 50.86780215200011 ], [ -120.242404173999915, 50.868010230000053 ], [ -120.236926548999975, 50.867728080000127 ], [ -120.23705001799999, 50.86769759900006 ], [ -120.237678077999973, 50.867495684000048 ], [ -120.238378725999922, 50.867184889000093 ], [ -120.239103578000012, 50.86692939300012 ], [ -120.24091212499999, 50.866423344000076 ], [ -120.241711778999942, 50.866063545000031 ], [ -120.242169654999955, 50.865776250000067 ], [ -120.243341037999954, 50.864956243000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EAC516A3EA0E5EC083740C2318794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.232598302999932, 50.949051390000051 ], [ -120.23261431499995, 50.948781928000102 ], [ -120.232187747999944, 50.948771811000071 ], [ -120.232235790999937, 50.947963424000065 ], [ -120.231809232999964, 50.947953307000041 ], [ -120.232065468999963, 50.94364190900005 ], [ -120.232918508999902, 50.943662138000043 ], [ -120.232966531999978, 50.942853750000012 ], [ -120.233393043999982, 50.942863863000035 ], [ -120.233409049000031, 50.942594400000061 ], [ -120.23383556, 50.942604510000066 ], [ -120.233851562999945, 50.942335047000022 ], [ -120.234118494999947, 50.942341374000129 ], [ -120.234117503999983, 50.942344037000048 ], [ -120.234053186999944, 50.942840708000041 ], [ -120.23398299099992, 50.943383108000035 ], [ -120.233989186999949, 50.943661860000084 ], [ -120.234001978999913, 50.944237222000091 ], [ -120.234006953999966, 50.944462072000135 ], [ -120.234025764999984, 50.945308099000087 ], [ -120.234039548999945, 50.945929268000086 ], [ -120.234077285999902, 50.947629816000116 ], [ -120.234109682999986, 50.949087220000074 ], [ -120.232598302999932, 50.949051390000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "1", "sL_AssetLoss": "382.9", "sL_BldgLoss": "382.9", "sL_StrLoss": "382.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB4C463A28075EC067B4B8739F7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.109777472999951, 50.968325247000074 ], [ -120.110089602999921, 50.965966719000029 ], [ -120.109841611999954, 50.965953686000056 ], [ -120.110315277999973, 50.962374204000049 ], [ -120.111125283999982, 50.962416770000083 ], [ -120.111575719999976, 50.959011826000015 ], [ -120.113723673, 50.95912467400013 ], [ -120.117255030999971, 50.959310113000065 ], [ -120.117229604999935, 50.959502516000057 ], [ -120.116674687999989, 50.959808009000028 ], [ -120.115899000999946, 50.960823507000022 ], [ -120.115051887999954, 50.961143892000059 ], [ -120.114578609999981, 50.961428794000014 ], [ -120.113892700999955, 50.9619243940001 ], [ -120.113511400999954, 50.962355903000052 ], [ -120.113184196999924, 50.963247513000056 ], [ -120.113148012999915, 50.964289989000051 ], [ -120.113246387999979, 50.964778501000083 ], [ -120.113382381999884, 50.965096094000067 ], [ -120.113794303999953, 50.965574708000091 ], [ -120.113681693999965, 50.966497499000056 ], [ -120.113647499999942, 50.96681228500011 ], [ -120.11315350699999, 50.967411909000134 ], [ -120.113441676999926, 50.968525597000095 ], [ -120.11296110899994, 50.970509487000086 ], [ -120.1129955899999, 50.972030588000059 ], [ -120.113024469999942, 50.972100174000062 ], [ -120.108653140999976, 50.971870514000074 ], [ -120.107926535999923, 50.971832323000108 ], [ -120.10840041799996, 50.968252872000093 ], [ -120.109777472999951, 50.968325247000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.3", "sL_BldgLoss": "60.3", "sL_StrLoss": "60.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000979FC851080E5EC0D8DBA0D5CD6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.217923870000035, 50.87287627900006 ], [ -120.221330824999953, 50.872957493000101 ], [ -120.221266685999936, 50.874035347000103 ], [ -120.217007895999984, 50.873933810000096 ], [ -120.217056074999959, 50.87312542200003 ], [ -120.217907815999951, 50.87314574100003 ], [ -120.217923870000035, 50.87287627900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8417250", "BldgCostT": "5805000", "sL_LossRatio": "1", "sL_AssetLoss": "708.4", "sL_BldgLoss": "708.4", "sL_StrLoss": "708.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000031CF4A5A71105EC0F007F2A2656F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.25406368699997, 50.874771402000064 ], [ -120.254097208, 50.874511165000065 ], [ -120.251667824999984, 50.874386337000082 ], [ -120.252129165, 50.870805893000075 ], [ -120.25269682, 50.870835066000076 ], [ -120.252987165999969, 50.868581172000077 ], [ -120.251990638999956, 50.86852995700005 ], [ -120.252288801999953, 50.866215544000099 ], [ -120.259555027999966, 50.866044036000126 ], [ -120.260752186, 50.866015736000108 ], [ -120.260702562999938, 50.866401513000071 ], [ -120.261442645999949, 50.86643949299999 ], [ -120.261359412, 50.867086633000085 ], [ -120.262515753999949, 50.867145965000113 ], [ -120.262489708999937, 50.867348504000056 ], [ -120.262576854999978, 50.867352975000074 ], [ -120.262354411999965, 50.868570705000138 ], [ -120.26234701199995, 50.86885267300007 ], [ -120.262338714999942, 50.869169088000042 ], [ -120.262429607999962, 50.869705397000061 ], [ -120.262593899999928, 50.870230746000047 ], [ -120.262754111999953, 50.870742912000068 ], [ -120.262833498999925, 50.871167690000071 ], [ -120.262801773999925, 50.871753346000084 ], [ -120.261383967999933, 50.871680608000126 ], [ -120.261484244, 50.870901043000082 ], [ -120.261134612999967, 50.870883103000075 ], [ -120.261160666999956, 50.870680565000093 ], [ -120.260330738999926, 50.870637976000111 ], [ -120.260135083999899, 50.872158708000015 ], [ -120.260107059999939, 50.872157270000081 ], [ -120.259733235999988, 50.875062512000049 ], [ -120.25406368699997, 50.874771402000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "172.3", "sL_BldgLoss": "172.3", "sL_StrLoss": "172.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D3E6304641005EC01001C96C77754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.001726126999955, 50.915500587000047 ], [ -120.007399165999956, 50.915804443000042 ], [ -120.00691774499991, 50.91938367500012 ], [ -120.006317745, 50.919351552000087 ], [ -120.006242147999956, 50.919913489000152 ], [ -120.002544252999925, 50.919715439000115 ], [ -120.000568593999958, 50.919609576000028 ], [ -120.001050525999972, 50.916030372000058 ], [ -120.001627083999963, 50.916061270000036 ], [ -120.001650478999977, 50.916062523000058 ], [ -120.001726126999955, 50.915500587000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094CF5DD8BB0E5EC071084DF9AD7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.229976703999967, 50.972254702000086 ], [ -120.230871085, 50.97230073100009 ], [ -120.230834291999926, 50.9731828910001 ], [ -120.230572506999962, 50.974926307000082 ], [ -120.230405196999968, 50.975880585000027 ], [ -120.229512536999948, 50.975834644000095 ], [ -120.229976703999967, 50.972254702000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47", "sL_BldgLoss": "47", "sL_StrLoss": "47", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071091BF957005EC0D6B3D606DD6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.002547022999977, 50.843182273000096 ], [ -120.002820761999914, 50.841145016000056 ], [ -120.003007123999978, 50.841201003000023 ], [ -120.003328686999978, 50.841331250000096 ], [ -120.003617904999913, 50.841448395000079 ], [ -120.003802395999983, 50.841523102000075 ], [ -120.005296119999983, 50.842262198000114 ], [ -120.005840504999981, 50.842460173000113 ], [ -120.005993692999965, 50.842515914000039 ], [ -120.006401196999946, 50.842594774000119 ], [ -120.006895806999935, 50.842690509000072 ], [ -120.007491691999974, 50.842744995000054 ], [ -120.008016404000017, 50.842735217000026 ], [ -120.009148513999932, 50.842667986000031 ], [ -120.009706767999958, 50.842634842000088 ], [ -120.009607553, 50.843374081000071 ], [ -120.008235809999988, 50.843300537000054 ], [ -120.00821089799993, 50.843486112000036 ], [ -120.002547022999977, 50.843182273000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "173", "sL_BldgLoss": "173", "sL_StrLoss": "173", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BFB76AFE6FF5DC03FF5F68478734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.995860371999953, 50.900173717000079 ], [ -120.001531425999943, 50.900477875000085 ], [ -120.001049699999925, 50.904057144 ], [ -119.99890616199994, 50.903942214000068 ], [ -119.995378194999972, 50.903752964000084 ], [ -119.995640908000027, 50.901802897000074 ], [ -119.995860371999953, 50.900173717000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "272.3", "sL_BldgLoss": "272.3", "sL_StrLoss": "272.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D77C437E49095EC03D7AAAE0C3734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.14300477899998, 50.901993130000072 ], [ -120.148677050999979, 50.902289846000016 ], [ -120.14820709699994, 50.905869732000077 ], [ -120.147349740999957, 50.905824902000084 ], [ -120.147216808999971, 50.906837253000063 ], [ -120.141543966999947, 50.906540464000088 ], [ -120.142014465, 50.902960608000058 ], [ -120.14287176, 50.903005479000093 ], [ -120.14300477899998, 50.901993130000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126725168", "BldgCostT": "83976668", "sL_LossRatio": "1", "sL_AssetLoss": "2809.4", "sL_BldgLoss": "2809.4", "sL_StrLoss": "2809.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024702D8B70F85DC092DB385A3C714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.876539372999986, 50.888820706000025 ], [ -119.876522764999947, 50.888551266000022 ], [ -119.875244833999901, 50.888582773000039 ], [ -119.875228232999945, 50.888313334000074 ], [ -119.874802259, 50.88832383200004 ], [ -119.874735867999931, 50.887246071000064 ], [ -119.874309902999968, 50.887256568000048 ], [ -119.874293309999985, 50.886987128000051 ], [ -119.873867344999951, 50.886997624000117 ], [ -119.873834161999966, 50.886458742000066 ], [ -119.872982244999946, 50.88647972900003 ], [ -119.872965659999977, 50.886210288000072 ], [ -119.872113745999954, 50.88623126800011 ], [ -119.872097164999971, 50.885961828000042 ], [ -119.87167121, 50.885972315000046 ], [ -119.871665434999983, 50.885878441000081 ], [ -119.871638052999913, 50.88543343300006 ], [ -119.87121210399998, 50.885443918000128 ], [ -119.871145804999969, 50.884366153 ], [ -119.871571743999965, 50.884355668000097 ], [ -119.871522014999968, 50.883547344000114 ], [ -119.868966412999924, 50.88361023100002 ], [ -119.86901609899995, 50.88441855700006 ], [ -119.868590156999986, 50.884429033000067 ], [ -119.868606716999963, 50.884698475000086 ], [ -119.866902935999974, 50.884740364000059 ], [ -119.866803639999972, 50.883123710000099 ], [ -119.867229570999953, 50.883113241000061 ], [ -119.867213018999962, 50.882843798000046 ], [ -119.868490802999986, 50.882812380000104 ], [ -119.868474244999973, 50.882542938000057 ], [ -119.871455712999989, 50.882469578000084 ], [ -119.871439137999957, 50.88220013800008 ], [ -119.872716897999979, 50.882168674000049 ], [ -119.872733479999937, 50.88243811500007 ], [ -119.873159401999928, 50.88242762400008 ], [ -119.873175987999957, 50.882697065000094 ], [ -119.874453758999934, 50.882665582000143 ], [ -119.874470352999964, 50.882935023000087 ], [ -119.87574813, 50.882903527000039 ], [ -119.875764729999958, 50.883172967000085 ], [ -119.876190658, 50.883162465000055 ], [ -119.876207259999973, 50.883431905000066 ], [ -119.876633190999911, 50.883421401000106 ], [ -119.87659998099997, 50.882882521000028 ], [ -119.877025905000011, 50.882872017000103 ], [ -119.877009298999909, 50.882602576000131 ], [ -119.878287061999941, 50.882571051000156 ], [ -119.878353522999973, 50.883648811000064 ], [ -119.877927592999939, 50.88365932100001 ], [ -119.877960817999906, 50.884198199000117 ], [ -119.879664561999959, 50.884156150000109 ], [ -119.879614691999947, 50.88334783199999 ], [ -119.881744329999933, 50.883295235000091 ], [ -119.881794236999909, 50.884103552000091 ], [ -119.882775051999943, 50.884079315000051 ], [ -119.88307203699999, 50.88407197400003 ], [ -119.883070785999948, 50.884051744000047 ], [ -119.883055392999935, 50.88380253600009 ], [ -119.885274835999979, 50.883747656000011 ], [ -119.88543939499999, 50.882547726000048 ], [ -119.889817822999959, 50.882787023000063 ], [ -119.889786847999957, 50.882286704000073 ], [ -119.89018646699995, 50.882276803000117 ], [ -119.89106459099996, 50.882255040000054 ], [ -119.891081277999916, 50.882524477000068 ], [ -119.891507194999988, 50.882513919000068 ], [ -119.891490503999947, 50.882244483000079 ], [ -119.892342330999938, 50.882223362000097 ], [ -119.892325635999924, 50.881953925000062 ], [ -119.892751544999967, 50.881943364000023 ], [ -119.892734847000028, 50.881673928000104 ], [ -119.895290289999977, 50.881610521000013 ], [ -119.895273578999962, 50.88134108500001 ], [ -119.895699482999987, 50.881330512000027 ], [ -119.895682767999958, 50.881061077000062 ], [ -119.896108668999958, 50.881050502000079 ], [ -119.896091952999939, 50.880781067000058 ], [ -119.897795543999919, 50.880738753000067 ], [ -119.897834875999962, 50.881372327000122 ], [ -119.897845722999975, 50.881547059000063 ], [ -119.89741981799996, 50.881557640000011 ], [ -119.897453266999932, 50.882096510000032 ], [ -119.896601447999927, 50.882117668000028 ], [ -119.896651607999985, 50.882925974000045 ], [ -119.896225690999984, 50.882936551000107 ], [ -119.896242408, 50.883205986000078 ], [ -119.895816487999952, 50.883216561000083 ], [ -119.895866637, 50.884024868000147 ], [ -119.895440708999971, 50.884035442000048 ], [ -119.895474137999926, 50.884574314000091 ], [ -119.895048204999938, 50.884584886000134 ], [ -119.89506491799996, 50.884854322000066 ], [ -119.89293523399999, 50.884907162000069 ], [ -119.892951935999974, 50.885176598000037 ], [ -119.89167411499993, 50.885208284000122 ], [ -119.891590650999959, 50.883861102000047 ], [ -119.892868433999965, 50.883829417000065 ], [ -119.89285173599994, 50.88355998100009 ], [ -119.894129509999971, 50.883528283000075 ], [ -119.894112801999938, 50.883258846000096 ], [ -119.894538723999972, 50.883248278000053 ], [ -119.894522015999939, 50.882978842000036 ], [ -119.893670177999951, 50.882999978000072 ], [ -119.893686881999898, 50.883269414000104 ], [ -119.891131343999959, 50.883332786000018 ], [ -119.891198102999951, 50.884410534000054 ], [ -119.890893628999947, 50.884418081000071 ], [ -119.890617075999955, 50.886436335000084 ], [ -119.884948565999949, 50.886126566000037 ], [ -119.885163431999942, 50.884559962000019 ], [ -119.884383135999911, 50.884579259000127 ], [ -119.88443309099992, 50.885387575000038 ], [ -119.884007145999988, 50.885398106000061 ], [ -119.884040444999968, 50.885936984000118 ], [ -119.880632836999965, 50.886021189000068 ], [ -119.880599576999941, 50.885482311000011 ], [ -119.879747682999934, 50.885503346000107 ], [ -119.879780932999964, 50.886042225000033 ], [ -119.879354979999945, 50.8860527410001 ], [ -119.879388224999971, 50.886591618000068 ], [ -119.878962266999949, 50.886602134000043 ], [ -119.878978888999924, 50.886871572000132 ], [ -119.881108686999937, 50.886818985000033 ], [ -119.88112532199996, 50.887088424000119 ], [ -119.881551282000018, 50.887077902000087 ], [ -119.88160119099993, 50.887886218000055 ], [ -119.881175223999918, 50.887896741000063 ], [ -119.881191857999937, 50.888166180000063 ], [ -119.880765885999907, 50.888176700000066 ], [ -119.880782516999943, 50.888446139000109 ], [ -119.879504593999982, 50.888477693000013 ], [ -119.879521219999972, 50.888747133000038 ], [ -119.876539372999986, 50.888820706000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79023333", "BldgCostT": "55203333", "sL_LossRatio": "1", "sL_AssetLoss": "1136.2", "sL_BldgLoss": "1136.2", "sL_StrLoss": "1136.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003217F2E7DFFA5DC0EF71A6095B734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.91837710899992, 50.898996825000097 ], [ -119.924047482999967, 50.899304899000079 ], [ -119.92355956199999, 50.902883839000076 ], [ -119.923009263999973, 50.90285395300004 ], [ -119.922980549000016, 50.903064551000071 ], [ -119.921497836999919, 50.902984015000136 ], [ -119.921437201999936, 50.903428585000043 ], [ -119.9157663229999, 50.903120380000111 ], [ -119.916254869999989, 50.899541476000131 ], [ -119.917737457999976, 50.899622082000107 ], [ -119.91779812499999, 50.899177510000079 ], [ -119.918348372999958, 50.89920742200011 ], [ -119.91837710899992, 50.898996825000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "132.3", "sL_BldgLoss": "132.3", "sL_StrLoss": "132.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001528F775FFF85DC05970DCB5C6704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.891570783999981, 50.880353539000083 ], [ -119.891799572999943, 50.880347867000062 ], [ -119.891849646999944, 50.881156177000037 ], [ -119.891423743999979, 50.881166736000168 ], [ -119.891440433999932, 50.881436172000051 ], [ -119.891014526999953, 50.881446730000079 ], [ -119.891031214999956, 50.881716167000071 ], [ -119.890280063999924, 50.881734782000095 ], [ -119.889327577999921, 50.881758382000065 ], [ -119.88927754499997, 50.880950069000065 ], [ -119.890129348999892, 50.880928967000045 ], [ -119.890095985999935, 50.88039009200007 ], [ -119.891570783999981, 50.880353539000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48724417", "BldgCostT": "30921667", "sL_LossRatio": "1", "sL_AssetLoss": "3019.4", "sL_BldgLoss": "3019.4", "sL_StrLoss": "3019.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D000E67311FA5DC00E5D050851704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.895924803999918, 50.878086709000051 ], [ -119.895908090999967, 50.877817274000044 ], [ -119.896333961999957, 50.877806699000132 ], [ -119.896317245999967, 50.877537264000111 ], [ -119.897168982999958, 50.877516110000073 ], [ -119.897135542999962, 50.87697723800008 ], [ -119.897561405999937, 50.876966659000097 ], [ -119.89754468299995, 50.876697224000083 ], [ -119.897970543999975, 50.876686643000021 ], [ -119.897953818999923, 50.876417208000063 ], [ -119.898379677999984, 50.876406626000055 ], [ -119.898362950999982, 50.876137190000108 ], [ -119.900492224999979, 50.876084257000159 ], [ -119.90047548599992, 50.875814823000077 ], [ -119.901327187999968, 50.875793638000104 ], [ -119.90131044499999, 50.875524205000012 ], [ -119.905994761999921, 50.875407583000083 ], [ -119.906028302999985, 50.875946450000079 ], [ -119.906454153999931, 50.875935839000086 ], [ -119.906437381999964, 50.875666405000061 ], [ -119.906863228999896, 50.87565579200006 ], [ -119.906846453999947, 50.875386359000096 ], [ -119.907428848, 50.875371843000067 ], [ -119.907430954999953, 50.875356418000081 ], [ -119.907624518, 50.875366965000133 ], [ -119.907789779999945, 50.875362845000083 ], [ -119.907942697999957, 50.874243428000113 ], [ -119.909121544999962, 50.874307647000066 ], [ -119.909163157999956, 50.874002955000016 ], [ -119.91483029799997, 50.87431150500003 ], [ -119.914636773999945, 50.875729771000096 ], [ -119.915639687999914, 50.875784346000025 ], [ -119.917097322999894, 50.875863646 ], [ -119.917045614999964, 50.876242741000027 ], [ -119.916609101999924, 50.879442651000062 ], [ -119.913576255999914, 50.879277630000054 ], [ -119.913410223999946, 50.880494022000057 ], [ -119.91262743499999, 50.880451416 ], [ -119.912618789999925, 50.880514740000059 ], [ -119.91118959899994, 50.88043693700012 ], [ -119.906950878999965, 50.880206080000093 ], [ -119.907037117999963, 50.879574950000091 ], [ -119.906793517999958, 50.879561677000055 ], [ -119.906810825, 50.879435016000109 ], [ -119.905820458999969, 50.879459694000062 ], [ -119.90580368799999, 50.879190261000069 ], [ -119.904951926999971, 50.879211479000055 ], [ -119.904930420999946, 50.87886587000007 ], [ -119.904868100999977, 50.877864311000103 ], [ -119.904016362999968, 50.877885521000124 ], [ -119.904033121999987, 50.878154955000063 ], [ -119.903607248999919, 50.878165558000049 ], [ -119.903624008999927, 50.87843499100007 ], [ -119.90319813399995, 50.878445593000031 ], [ -119.903231647999945, 50.878984462000076 ], [ -119.902805765999929, 50.878995061000055 ], [ -119.902822519999944, 50.879264496000083 ], [ -119.90069310799997, 50.879317474000096 ], [ -119.90070984899999, 50.879586908000114 ], [ -119.900283963999968, 50.879597499000063 ], [ -119.900300702999942, 50.879866934000056 ], [ -119.897319477999972, 50.879941028000111 ], [ -119.897269310999945, 50.879132722000101 ], [ -119.898121075999939, 50.879111561000052 ], [ -119.898104349000036, 50.878842125000148 ], [ -119.898530229, 50.878831542000114 ], [ -119.898513498999961, 50.878562107000086 ], [ -119.899365252999971, 50.878540937000075 ], [ -119.899348520999965, 50.878271502000075 ], [ -119.897645020999931, 50.878313836000075 ], [ -119.897661744999979, 50.87858327100011 ], [ -119.89723586599996, 50.87859385200008 ], [ -119.897252587999958, 50.878863288000048 ], [ -119.896826707999963, 50.878873865000074 ], [ -119.896843426999908, 50.87914330100007 ], [ -119.896417543999959, 50.879153877000057 ], [ -119.896434260999953, 50.87942331300011 ], [ -119.89558248899999, 50.879444462 ], [ -119.895599200999982, 50.87971389800002 ], [ -119.895173311999912, 50.879724470000092 ], [ -119.895190021999952, 50.879993906000045 ], [ -119.893486454999959, 50.88003618000004 ], [ -119.893461023999976, 50.879625906000086 ], [ -119.893436352999984, 50.879227871000111 ], [ -119.893862238999986, 50.879217306000044 ], [ -119.893845536999933, 50.878947869000108 ], [ -119.89469730199994, 50.878926733000043 ], [ -119.894680594999954, 50.878657297000117 ], [ -119.895106474, 50.878646727000053 ], [ -119.89508976499998, 50.878377291000085 ], [ -119.89551564099996, 50.878366718000059 ], [ -119.895498929999974, 50.878097283000031 ], [ -119.895924803999918, 50.878086709000051 ] ], [ [ -119.907069811999946, 50.877539603000109 ], [ -119.907180799999949, 50.876727282000033 ], [ -119.906930333, 50.876733526000073 ], [ -119.906947106999951, 50.877002958000112 ], [ -119.906521247999962, 50.87701357200006 ], [ -119.906538022999939, 50.877283005000095 ], [ -119.906112159999964, 50.877293616000109 ], [ -119.90612893199993, 50.877563051000024 ], [ -119.907069811999946, 50.877539603000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564167", "BldgCostT": "5216667", "sL_LossRatio": "1", "sL_AssetLoss": "488.8", "sL_BldgLoss": "488.8", "sL_StrLoss": "488.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A216205DAEFA5DC099E83DDFE0714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.914302038999921, 50.887731405000103 ], [ -119.91997095499994, 50.888039690000085 ], [ -119.919482831999957, 50.891618658000056 ], [ -119.91381346599999, 50.891310349000037 ], [ -119.914302038999921, 50.887731405000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "349.3", "sL_BldgLoss": "349.3", "sL_StrLoss": "349.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000047A64B1870FD5DC0733148F243654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.95468799299999, 50.789920097000035 ], [ -119.954779478999967, 50.789243819000085 ], [ -119.955213384999951, 50.789267323000054 ], [ -119.955282084999951, 50.788759431000109 ], [ -119.956080862999968, 50.788802694000054 ], [ -119.956173983999989, 50.788114150000091 ], [ -119.961830579999955, 50.788420354000031 ], [ -119.96155592599996, 50.790452994000063 ], [ -119.961761248999935, 50.790464103000083 ], [ -119.961786816999947, 50.790274885000017 ], [ -119.967443723999949, 50.790580804000101 ], [ -119.966970899999922, 50.794083026000109 ], [ -119.966790318999983, 50.793842104000092 ], [ -119.965452711999887, 50.792886402000136 ], [ -119.965050396999928, 50.792798086000083 ], [ -119.963847825999935, 50.792865106000107 ], [ -119.96252959499995, 50.793114313000089 ], [ -119.962090882999959, 50.793350701000044 ], [ -119.962129603999969, 50.793753794000068 ], [ -119.96198489199999, 50.793920394000033 ], [ -119.961711998999931, 50.793872005 ], [ -119.961087417, 50.793438994000113 ], [ -119.960950797999914, 50.793316235000169 ], [ -119.961130278999974, 50.791988192000119 ], [ -119.960744366999961, 50.791967311000121 ], [ -119.960589700999932, 50.791391011000108 ], [ -119.96081241, 50.790207505000105 ], [ -119.960671695999963, 50.789986698000128 ], [ -119.960571604999984, 50.789754603000041 ], [ -119.960356591999954, 50.789714695000015 ], [ -119.959816287999971, 50.789710397000064 ], [ -119.959494307999975, 50.789781588000096 ], [ -119.959085110999951, 50.790251595000036 ], [ -119.957909496999903, 50.790982192000058 ], [ -119.957656298999936, 50.79146649200004 ], [ -119.95779279199999, 50.792731207000081 ], [ -119.957994205999924, 50.792986104000079 ], [ -119.958978878999943, 50.793743802000066 ], [ -119.958993440999947, 50.79375896800012 ], [ -119.953875352999944, 50.793481832000047 ], [ -119.954359658999948, 50.789902312 ], [ -119.95468799299999, 50.789920097000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "108", "sL_BldgLoss": "108", "sL_StrLoss": "108", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD4BB49AE40C5EC0EA661405D96E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.198840363999949, 50.864066641000093 ], [ -120.204508194999946, 50.864360546000093 ], [ -120.204043108999912, 50.867940820000037 ], [ -120.198751278999964, 50.867666422000056 ], [ -120.198428717999931, 50.867232468000076 ], [ -120.198840363999949, 50.864066641000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "116", "sL_BldgLoss": "116", "sL_StrLoss": "116", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DEC60B8E770A5EC0A905C45E07614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.16319026299999, 50.75655710500012 ], [ -120.166548538999919, 50.756628924000033 ], [ -120.166154288, 50.759651742000038 ], [ -120.160499949000013, 50.759355860000042 ], [ -120.160871846999967, 50.756507188000036 ], [ -120.162076192999947, 50.756536926000095 ], [ -120.16319026299999, 50.75655710500012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311834", "BldgCostT": "3663334", "sL_LossRatio": "1", "sL_AssetLoss": "481", "sL_BldgLoss": "481", "sL_StrLoss": "481", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004409A7C312075EC0709D98588D6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.107014918999965, 50.849887398000078 ], [ -120.10641399499994, 50.849686308000081 ], [ -120.106033601999968, 50.849532863000093 ], [ -120.105252179999951, 50.849217696000075 ], [ -120.104639575999968, 50.84902859500005 ], [ -120.103212003999928, 50.848769383000025 ], [ -120.102296314999975, 50.84865170900008 ], [ -120.10174488499996, 50.848615404000071 ], [ -120.10131631199999, 50.84863150300005 ], [ -120.100851509999956, 50.848684503000051 ], [ -120.100242485999956, 50.848814591000036 ], [ -120.09951892399999, 50.849000656000101 ], [ -120.099443105999939, 50.849020153000012 ], [ -120.099600608999964, 50.847828803000048 ], [ -120.103290930999918, 50.848023563 ], [ -120.103321948999977, 50.847788789000056 ], [ -120.103446290999941, 50.847795349000108 ], [ -120.103869010999958, 50.844595495000078 ], [ -120.105932332999885, 50.844704333000053 ], [ -120.105974732999968, 50.844383243000081 ], [ -120.110704043999988, 50.844632564000051 ], [ -120.111639455000031, 50.844681852000086 ], [ -120.111574245999975, 50.845176152000057 ], [ -120.113133838999929, 50.845258313000038 ], [ -120.113054877999957, 50.845856995000055 ], [ -120.115566200000032, 50.845989247000027 ], [ -120.115493751999963, 50.846538773000077 ], [ -120.115831228999951, 50.846556541000062 ], [ -120.115463241, 50.849347686000108 ], [ -120.118197043999956, 50.84949158200007 ], [ -120.117800537, 50.852500029000097 ], [ -120.117697888999928, 50.85248556199999 ], [ -120.114887593999953, 50.852089419000038 ], [ -120.114347458999944, 50.852013281000019 ], [ -120.114294390999973, 50.852005812000087 ], [ -120.113555885999958, 50.8518741030001 ], [ -120.113088703999935, 50.851747981000045 ], [ -120.112892116999959, 50.851694909000052 ], [ -120.112605912999982, 50.851593315000052 ], [ -120.112248868999941, 50.851466923000089 ], [ -120.111975091999938, 50.851370004000046 ], [ -120.11059341499994, 50.850870273000069 ], [ -120.110300701999947, 50.850764393000119 ], [ -120.109550380999934, 50.85052749700008 ], [ -120.107014918999965, 50.849887398000078 ] ], [ [ -120.110286800999944, 50.84945320700006 ], [ -120.11066622199999, 50.849075699000075 ], [ -120.111042603999962, 50.848490411000036 ], [ -120.11095999199992, 50.84824540900005 ], [ -120.110705094999929, 50.847979102000075 ], [ -120.110361497999946, 50.847816798000061 ], [ -120.109613887999984, 50.84772700200007 ], [ -120.109279391, 50.847610203000094 ], [ -120.10834140599998, 50.847164511000074 ], [ -120.107051989999931, 50.847106092000104 ], [ -120.106587182999959, 50.847247090000025 ], [ -120.106495283999934, 50.847352504000114 ], [ -120.106493805999946, 50.847838093000064 ], [ -120.106363312999974, 50.84812300900002 ], [ -120.105984108999962, 50.848518894000037 ], [ -120.105963291999956, 50.848850700000071 ], [ -120.106009684999933, 50.84900449600007 ], [ -120.106453299999927, 50.849420405000053 ], [ -120.1069507079999, 50.849658189000095 ], [ -120.107647885999882, 50.849863306000024 ], [ -120.108609280999957, 50.849950200000123 ], [ -120.10965721499997, 50.849769291000072 ], [ -120.110286800999944, 50.84945320700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "139.7", "sL_BldgLoss": "139.7", "sL_StrLoss": "139.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DBD2B4D5F6FD5DC001F8C862F26D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.965820180999984, 50.861793743000149 ], [ -119.965734345, 50.861787083000166 ], [ -119.965605919999959, 50.861781616000037 ], [ -119.965520100999981, 50.861774978000042 ], [ -119.965405890999989, 50.86176911600004 ], [ -119.965305894999972, 50.861762861000081 ], [ -119.965267301999958, 50.861760879 ], [ -119.965337502999915, 50.861241906000075 ], [ -119.964057178, 50.861172783000093 ], [ -119.964541402999927, 50.857593499000131 ], [ -119.964935971999964, 50.85761480300004 ], [ -119.96505373, 50.856744209000041 ], [ -119.966965474999938, 50.8568474100001 ], [ -119.970719066999948, 50.857049939000071 ], [ -119.970521094999981, 50.858514902000067 ], [ -119.972518796999935, 50.85862263900006 ], [ -119.972733479999988, 50.857033487000095 ], [ -119.974096289999977, 50.857106963000092 ], [ -119.973797382999948, 50.857962190000059 ], [ -119.973609203999956, 50.858219501000058 ], [ -119.972995710999953, 50.859058259000058 ], [ -119.972907551999981, 50.859178741000029 ], [ -119.972752863999958, 50.859390232000116 ], [ -119.972651220999964, 50.859529198000097 ], [ -119.972446909999945, 50.859827290000055 ], [ -119.972025020999965, 50.860120011000021 ], [ -119.971736881999959, 50.860277596000067 ], [ -119.971361728999952, 50.860344889000075 ], [ -119.970442784999989, 50.860509708000066 ], [ -119.968475763, 50.860683736000105 ], [ -119.968461611999928, 50.860684998000096 ], [ -119.967696905999929, 50.860758644000043 ], [ -119.967250092999961, 50.860801716000033 ], [ -119.966817988999964, 50.860916303000081 ], [ -119.966446967999943, 50.861096300000057 ], [ -119.966145693999977, 50.861340606000113 ], [ -119.965929299999942, 50.861621804000031 ], [ -119.965891181999964, 50.861791801000059 ], [ -119.965820180999984, 50.861793743000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "118.4", "sL_BldgLoss": "118.4", "sL_StrLoss": "118.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDCCAE9C39FD5DC044BA86B66F5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.953157628000028, 50.739443915000066 ], [ -119.953279604999977, 50.738541396000088 ], [ -119.953362520999974, 50.738546769000081 ], [ -119.953637217999955, 50.738592 ], [ -119.953795981999988, 50.738613937000146 ], [ -119.954096883999938, 50.738622430000071 ], [ -119.954280259999962, 50.738580574000103 ], [ -119.95443619299995, 50.738557643000071 ], [ -119.95461904299999, 50.738506795000049 ], [ -119.95474537599999, 50.738466753000061 ], [ -119.95496747699994, 50.738351380000047 ], [ -119.954803797999958, 50.737754205000066 ], [ -119.954734849999966, 50.737502644000095 ], [ -119.954656197999938, 50.737215682000091 ], [ -119.954077344999959, 50.736287292000064 ], [ -119.953889802999981, 50.73575875600006 ], [ -119.953883090999952, 50.735750456000105 ], [ -119.959413582999929, 50.73605031900005 ], [ -119.958930261999953, 50.739630086000084 ], [ -119.958825063999967, 50.739624385000049 ], [ -119.958808063999925, 50.739750289000071 ], [ -119.953157628000028, 50.739443915000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "246.4", "sL_BldgLoss": "246.4", "sL_StrLoss": "246.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000357458861D085EC0EEB85D3FAF664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.123231844999964, 50.805273853000074 ], [ -120.123323494999951, 50.804577086000066 ], [ -120.12321839199997, 50.804571554000049 ], [ -120.12368928099994, 50.800991358000104 ], [ -120.124575699000033, 50.801038009000109 ], [ -120.124858350999915, 50.79888837900004 ], [ -120.130517445999914, 50.799186049000049 ], [ -120.13004712099999, 50.80276628200005 ], [ -120.12926576199996, 50.802725200000097 ], [ -120.12889173399999, 50.805571603000011 ], [ -120.123231844999964, 50.805273853000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006834", "BldgCostT": "2763334", "sL_LossRatio": "1", "sL_AssetLoss": "322.2", "sL_BldgLoss": "322.2", "sL_StrLoss": "322.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4B663C9A0055EC094CB35BB246C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.088374685999966, 50.847378969000019 ], [ -120.088407006999915, 50.847134947000114 ], [ -120.088226791999915, 50.847125415000065 ], [ -120.08823894899993, 50.847033636000091 ], [ -120.087682480999902, 50.847004200000072 ], [ -120.087691602999982, 50.846935339000019 ], [ -120.08733456399996, 50.846916450000066 ], [ -120.087314671999962, 50.847235647000076 ], [ -120.087313599999959, 50.847235502000039 ], [ -120.086673891999951, 50.847111599000037 ], [ -120.086350558, 50.847025942000073 ], [ -120.086053898999964, 50.846947342000171 ], [ -120.08606813199998, 50.846719063000151 ], [ -120.086837135999957, 50.846738278000068 ], [ -120.086841272999948, 50.846707054000021 ], [ -120.085104111999911, 50.846615130000053 ], [ -120.085212359999971, 50.845798306000042 ], [ -120.084078734999977, 50.845738304000065 ], [ -120.084138793999969, 50.845285183000101 ], [ -120.083848158999928, 50.845269797000107 ], [ -120.083912776999952, 50.844782286000083 ], [ -120.083850691999885, 50.844779000000116 ], [ -120.083882641999963, 50.844537957000107 ], [ -120.083316491999966, 50.844507985000085 ], [ -120.083340619999916, 50.84432597100006 ], [ -120.08250187799996, 50.844281563000038 ], [ -120.082529938999954, 50.844069903000047 ], [ -120.0818433699999, 50.844033546000048 ], [ -120.08192487099997, 50.843418856000028 ], [ -120.081197392000021, 50.843380329000105 ], [ -120.081226411999964, 50.843161480000063 ], [ -120.080437780999915, 50.843119709000071 ], [ -120.080504640999948, 50.842615558000048 ], [ -120.080059903999938, 50.842591999000099 ], [ -120.080147935999946, 50.841928220000099 ], [ -120.079941744999985, 50.841917298000105 ], [ -120.080037913999917, 50.841192177000075 ], [ -120.079492580999954, 50.841163286000047 ], [ -120.079562218999982, 50.840638243000072 ], [ -120.080348298, 50.840584608000079 ], [ -120.080743195999929, 50.840432191000026 ], [ -120.08097439899997, 50.840141711000101 ], [ -120.080991806999961, 50.839637493000026 ], [ -120.081357984999926, 50.839214507000086 ], [ -120.081649688999917, 50.839087806000059 ], [ -120.082412309999924, 50.839151898000097 ], [ -120.082649391999979, 50.839238703000049 ], [ -120.08331528799998, 50.839731511000082 ], [ -120.083337392999979, 50.840514797000118 ], [ -120.084365515999977, 50.841548801000037 ], [ -120.08457220499993, 50.841652798000077 ], [ -120.08539150899999, 50.841735384000074 ], [ -120.085446792999932, 50.841980301000071 ], [ -120.08520158499999, 50.842279393000084 ], [ -120.085223607999922, 50.842379095000126 ], [ -120.085789487999961, 50.842645411000035 ], [ -120.086759193999939, 50.84283200600008 ], [ -120.087099483999936, 50.843064197000039 ], [ -120.087412521999966, 50.84395430400005 ], [ -120.087674007999937, 50.844311789000074 ], [ -120.087980507999987, 50.844418589000043 ], [ -120.088265301999968, 50.844398595000051 ], [ -120.089202786, 50.843962791000116 ], [ -120.089431989999952, 50.843941512000121 ], [ -120.089526200999956, 50.844007008000119 ], [ -120.089536214999953, 50.84431319800003 ], [ -120.08944011199999, 50.844931293000023 ], [ -120.089574309999975, 50.845050892000074 ], [ -120.09055017899999, 50.845120701000042 ], [ -120.09126278699992, 50.845318688000098 ], [ -120.091421891999971, 50.845529510000119 ], [ -120.091515289, 50.846295697000052 ], [ -120.092519672999941, 50.846815493000072 ], [ -120.092984409999943, 50.846872490000067 ], [ -120.093514186999982, 50.846831204000118 ], [ -120.094618607999976, 50.846418197000084 ], [ -120.095183401999947, 50.84603649900005 ], [ -120.095582992999979, 50.845777302000023 ], [ -120.096087079999947, 50.845646297000059 ], [ -120.096702005999973, 50.845579299000043 ], [ -120.097152333999972, 50.845436580000033 ], [ -120.097515125999948, 50.845455741000102 ], [ -120.097041672999964, 50.849035643000015 ], [ -120.095919516999984, 50.84897637200006 ], [ -120.095850833, 50.849495558000058 ], [ -120.095684909999974, 50.849478688000055 ], [ -120.094924111999916, 50.849300702000072 ], [ -120.094742974, 50.849242039000096 ], [ -120.090468571999963, 50.847857497000085 ], [ -120.08931480899993, 50.847555899000049 ], [ -120.088627815999956, 50.847413193000072 ], [ -120.088374685999966, 50.847378969000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "428", "sL_BldgLoss": "428", "sL_StrLoss": "428", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D9DEB8D6E8035EC0F263E5FAEB6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.065594390999962, 50.837962611000115 ], [ -120.065686274999976, 50.837271412000071 ], [ -120.065409432999957, 50.837256707000073 ], [ -120.065482132999946, 50.836709838000075 ], [ -120.065291366999944, 50.83669970600004 ], [ -120.065365006999954, 50.836145759000011 ], [ -120.065072097999987, 50.836130201000067 ], [ -120.065125328999954, 50.835729797000063 ], [ -120.064797716, 50.835712394000048 ], [ -120.064840477999951, 50.835390742000136 ], [ -120.064272721999941, 50.835360580000042 ], [ -120.064299327999962, 50.835160472000027 ], [ -120.063670514999941, 50.835127064000055 ], [ -120.063676666999967, 50.835080797000096 ], [ -120.063589252999918, 50.835076153000095 ], [ -120.06354033300002, 50.835444050000092 ], [ -120.061778306999884, 50.835350416000075 ], [ -120.061764954999958, 50.835450791000014 ], [ -120.061739840999977, 50.835449456000092 ], [ -120.061663083999974, 50.836026492000023 ], [ -120.060858779999933, 50.835983742000074 ], [ -120.060757487999936, 50.836745112000074 ], [ -120.060059700999915, 50.836708019000049 ], [ -120.06004276099999, 50.836835329000081 ], [ -120.058552349999957, 50.836756085000019 ], [ -120.05855219299994, 50.83675726300001 ], [ -120.057941895999974, 50.836724808000021 ], [ -120.057897679999911, 50.837056977000088 ], [ -120.057101889999984, 50.83701465400005 ], [ -120.057061759999925, 50.837316096000109 ], [ -120.055233881999939, 50.837218859000082 ], [ -120.054080311999911, 50.836693014000112 ], [ -120.052767733999943, 50.836077861000021 ], [ -120.052216946999948, 50.835738518 ], [ -120.052091859999962, 50.835623303000055 ], [ -120.051093022, 50.83470346600005 ], [ -120.050806089000034, 50.834511649000099 ], [ -120.050681918999885, 50.834428644000063 ], [ -120.050612540999921, 50.834382264000098 ], [ -120.050221069999978, 50.834184770000057 ], [ -120.049783599999955, 50.834022681000107 ], [ -120.04968590699994, 50.833995629000043 ], [ -120.049134548999973, 50.833843006000059 ], [ -120.048508711999958, 50.833714137000058 ], [ -120.048048529999974, 50.833668884000183 ], [ -120.047828094999886, 50.833664797000061 ], [ -120.047844065999982, 50.833544998000036 ], [ -120.04790774199995, 50.833067390000117 ], [ -120.048425417999965, 50.833177298000066 ], [ -120.049065311999982, 50.833185799000056 ], [ -120.049507912999943, 50.833366695000059 ], [ -120.050215386999938, 50.833420793000059 ], [ -120.05102818099995, 50.833585995000078 ], [ -120.051849696999952, 50.8338581020001 ], [ -120.05239540299999, 50.834195586000064 ], [ -120.052998181999925, 50.834805191000029 ], [ -120.05317069499992, 50.835205414000065 ], [ -120.053306, 50.835307911000051 ], [ -120.053768501999969, 50.83541759200012 ], [ -120.054790186999924, 50.835201093000137 ], [ -120.055430002999984, 50.834758194000045 ], [ -120.056299290999902, 50.834483296000059 ], [ -120.056697323, 50.834466201000112 ], [ -120.057248488999974, 50.834722605000081 ], [ -120.057914906999926, 50.834739685000095 ], [ -120.058283417, 50.834533192 ], [ -120.058531593999959, 50.83422551200006 ], [ -120.05872609699999, 50.833393806000068 ], [ -120.05904801799997, 50.832996404000014 ], [ -120.059788994999963, 50.832952293000098 ], [ -120.060325102, 50.833029193000058 ], [ -120.061006, 50.833279804000085 ], [ -120.061287698999976, 50.833530509000113 ], [ -120.061551222999981, 50.833625905000048 ], [ -120.061921913, 50.833590299 ], [ -120.062027605999944, 50.833503393000086 ], [ -120.06205491599999, 50.83308189400006 ], [ -120.062304206999954, 50.832962199000136 ], [ -120.062991896999961, 50.833087592 ], [ -120.066521584999975, 50.833427990000054 ], [ -120.06770187799999, 50.833843796000053 ], [ -120.0682860899999, 50.834272501000036 ], [ -120.068640205999927, 50.834758184000044 ], [ -120.06869891499997, 50.83538060200005 ], [ -120.068926010999974, 50.835844809000086 ], [ -120.068978204999951, 50.836611084000019 ], [ -120.070125203999964, 50.837781795000083 ], [ -120.070707165000016, 50.838234035 ], [ -120.06913664299995, 50.838150685000109 ], [ -120.065594390999962, 50.837962611000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "126.1", "sL_BldgLoss": "126.1", "sL_StrLoss": "126.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ACB4DED21EFD5DC09D998146C06B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.95219754799993, 50.843671591000046 ], [ -119.952212095, 50.843564239000102 ], [ -119.951579034999924, 50.843529974000049 ], [ -119.952064066999981, 50.839950671000139 ], [ -119.952584950999949, 50.839978865000027 ], [ -119.952631459999949, 50.839635583000089 ], [ -119.958294545999962, 50.839941948000018 ], [ -119.958275455999953, 50.840082975000044 ], [ -119.958278654999972, 50.840083148000076 ], [ -119.958236746999916, 50.840392758000071 ], [ -119.958345674999975, 50.84039864800004 ], [ -119.95786114, 50.84397797600009 ], [ -119.95219754799993, 50.843671591000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "111.3", "sL_BldgLoss": "111.3", "sL_StrLoss": "111.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000000AE019D4B035EC0FB73D190715E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.05040168799998, 50.739291583000067 ], [ -120.050447607999928, 50.738946244000033 ], [ -120.048933864999924, 50.738865443000059 ], [ -120.049409994999962, 50.735285287000103 ], [ -120.050723991, 50.735355426000112 ], [ -120.051077989999953, 50.735813872000051 ], [ -120.05132785699999, 50.73653032700004 ], [ -120.051340642999961, 50.736567019000098 ], [ -120.051682753999955, 50.736904376000069 ], [ -120.052004634999975, 50.737083793000082 ], [ -120.052098035000014, 50.737110655000031 ], [ -120.05238558699989, 50.737193347000066 ], [ -120.053073114999975, 50.73730847300007 ], [ -120.053372278999973, 50.737391130000098 ], [ -120.05363335199992, 50.737514125000033 ], [ -120.053793309999904, 50.737648836000034 ], [ -120.053965322999929, 50.737896597000052 ], [ -120.05400933599999, 50.737960021000042 ], [ -120.05412407099999, 50.738125291000124 ], [ -120.054696321, 50.738637168000068 ], [ -120.055405488999938, 50.739558526000067 ], [ -120.054973095999969, 50.739535467000074 ], [ -120.053066918999932, 50.739433796000128 ], [ -120.05040168799998, 50.739291583000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "171.6", "sL_BldgLoss": "171.6", "sL_StrLoss": "171.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D8D203A69025EC08BA970DBA96A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.034713011999983, 50.837199867000109 ], [ -120.034731791999945, 50.837059343000114 ], [ -120.034679, 50.837058 ], [ -120.03467960399999, 50.837048489000018 ], [ -120.034441529999967, 50.837054686000087 ], [ -120.034423439999969, 50.836775980000041 ], [ -120.034389071999968, 50.836246474000077 ], [ -120.034731037999933, 50.836237573000084 ], [ -120.034737335, 50.836138260000034 ], [ -120.034696284999924, 50.836136069000055 ], [ -120.034896881999913, 50.83463484100011 ], [ -120.034832788999935, 50.834633211000103 ], [ -120.034815701999932, 50.834902633000105 ], [ -120.034493947, 50.834894448000057 ], [ -120.03438990799998, 50.834897157000057 ], [ -120.034356068999955, 50.835430654000071 ], [ -120.034336087999932, 50.835430145000018 ], [ -120.034336613999983, 50.835438262000082 ], [ -120.033124646999966, 50.835469799000094 ], [ -120.033060316999979, 50.835471472000073 ], [ -120.032990406999971, 50.834393854000034 ], [ -120.033143675999952, 50.834389867000041 ], [ -120.033165172999972, 50.834051077000041 ], [ -120.033590620999931, 50.834061903000112 ], [ -120.033624805999921, 50.833523061000058 ], [ -120.033786451999944, 50.833527173000043 ], [ -120.033771329, 50.833294100000053 ], [ -120.034065943999963, 50.833286434000094 ], [ -120.034067337999929, 50.833264463000035 ], [ -120.034493545999965, 50.83327530400009 ], [ -120.035020510999942, 50.833261587000088 ], [ -120.035080574999967, 50.833260024 ], [ -120.035092283999973, 50.833172388000072 ], [ -120.035174588, 50.832556378000021 ], [ -120.03535983399999, 50.832566268000079 ], [ -120.035431706999944, 50.832028281000113 ], [ -120.036050125999935, 50.832061296000028 ], [ -120.036158620999984, 50.831249096000093 ], [ -120.037008632999957, 50.831294471000028 ], [ -120.037066203999956, 50.830863417000032 ], [ -120.037700944, 50.830897295000085 ], [ -120.037788408999958, 50.830242332000111 ], [ -120.043450883999952, 50.830544395000061 ], [ -120.043314532999958, 50.831566402000092 ], [ -120.043157089999951, 50.831604995000099 ], [ -120.042350714999912, 50.831557994000093 ], [ -120.041757403999924, 50.832604795000115 ], [ -120.041197003999983, 50.832959404000071 ], [ -120.040795179999989, 50.833020594000089 ], [ -120.040265806999969, 50.83284550700008 ], [ -120.039949506999946, 50.832899605000101 ], [ -120.039843414999893, 50.833248508000089 ], [ -120.038983898999945, 50.833567491000103 ], [ -120.03811251599997, 50.83453599300006 ], [ -120.038035980999936, 50.834857896000074 ], [ -120.038362587999956, 50.835325 ], [ -120.038174807999937, 50.835579899000031 ], [ -120.038175899999956, 50.836237904000022 ], [ -120.038056900999933, 50.836566897000068 ], [ -120.037764219999957, 50.836695101000039 ], [ -120.036339701999964, 50.836739187000013 ], [ -120.035986888999943, 50.836945798000059 ], [ -120.035726096999952, 50.837236294000071 ], [ -120.03571395499992, 50.837253302000079 ], [ -120.034713011999983, 50.837199867000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "259", "sL_BldgLoss": "259", "sL_StrLoss": "259", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D62D8E0C2A0C5EC0999469D10E6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.188226003999958, 50.857526881000105 ], [ -120.193892936999987, 50.857821326000114 ], [ -120.193427068999966, 50.861401582000077 ], [ -120.192011208999986, 50.861328043000164 ], [ -120.191907144999931, 50.862127514000029 ], [ -120.186239680999961, 50.861832971000119 ], [ -120.186706128999944, 50.858252746000105 ], [ -120.188121880999944, 50.858326352000063 ], [ -120.188226003999958, 50.857526881000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "59", "sL_BldgLoss": "59", "sL_StrLoss": "59", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063DC474D3FFD5DC0538A671A5E5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.956002954999974, 50.728615389000019 ], [ -119.956689646999934, 50.72838669300004 ], [ -119.957023757999977, 50.728409319000015 ], [ -119.957108340999952, 50.728430714000105 ], [ -119.957663431999976, 50.728571123000087 ], [ -119.958363700999911, 50.728600063000087 ], [ -119.958538781999891, 50.728701583000074 ], [ -119.958330895999921, 50.730241422000056 ], [ -119.957648936999988, 50.730204449000034 ], [ -119.95762417399996, 50.730387838000048 ], [ -119.955150937999946, 50.730253716000057 ], [ -119.955442383999952, 50.729848013000073 ], [ -119.955636620999911, 50.729484415000087 ], [ -119.955686218999972, 50.729306796000117 ], [ -119.95572389499992, 50.728838243000013 ], [ -119.955731273999959, 50.728824621000086 ], [ -119.955790236999988, 50.728715641000086 ], [ -119.956002954999974, 50.728615389000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "94.2", "sL_BldgLoss": "94.2", "sL_StrLoss": "94.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021D3D2C36D005EC02E32E821A66B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.004424520999947, 50.839490781000059 ], [ -120.010087940999952, 50.839794527000087 ], [ -120.009706767999958, 50.842634842000088 ], [ -120.009148513999932, 50.842667986000031 ], [ -120.008016404000017, 50.842735217000026 ], [ -120.007491691999974, 50.842744995000054 ], [ -120.006895806999935, 50.842690509000072 ], [ -120.006401196999946, 50.842594774000119 ], [ -120.005993692999965, 50.842515914000039 ], [ -120.005840504999981, 50.842460173000113 ], [ -120.005296119999983, 50.842262198000114 ], [ -120.003802395999983, 50.841523102000075 ], [ -120.003617904999913, 50.841448395000079 ], [ -120.003328686999978, 50.841331250000096 ], [ -120.003007123999978, 50.841201003000023 ], [ -120.002820761999914, 50.841145016000056 ], [ -120.003027973999934, 50.839602749000093 ], [ -120.004399594999938, 50.839676357000052 ], [ -120.004424520999947, 50.839490781000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "93.9", "sL_BldgLoss": "93.9", "sL_StrLoss": "93.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9A6E6D52D015EC090C7C2C6AB6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.015836007999894, 50.839785545000026 ], [ -120.021499542999933, 50.840088714000082 ], [ -120.021193894999939, 50.842370629000101 ], [ -120.018416755999965, 50.842423389000047 ], [ -120.017165223999925, 50.842447133000043 ], [ -120.01547486699998, 50.842479190000091 ], [ -120.015836007999894, 50.839785545000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.8", "sL_BldgLoss": "58.8", "sL_StrLoss": "58.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BEA7EEA1AF0A5EC0B4292EF9656E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.164244201999949, 50.861672333000115 ], [ -120.169911501999977, 50.86196798900005 ], [ -120.169766146999947, 50.863080402000023 ], [ -120.168641701999945, 50.863229659000048 ], [ -120.168580381999973, 50.863237794000113 ], [ -120.167706026999952, 50.863281404000084 ], [ -120.167657404999957, 50.863282296000072 ], [ -120.166760821999929, 50.863298800000095 ], [ -120.166074497999929, 50.863255804000111 ], [ -120.165532895, 50.863176096000096 ], [ -120.165133698999909, 50.863065191000089 ], [ -120.16470459099996, 50.862855393000139 ], [ -120.16433122799998, 50.862624106000077 ], [ -120.164083491, 50.862377688000073 ], [ -120.16374800799997, 50.862043987000085 ], [ -120.16358778199999, 50.861935803000044 ], [ -120.164205524999957, 50.861968048000044 ], [ -120.164244201999949, 50.861672333000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "204.8", "sL_BldgLoss": "204.8", "sL_StrLoss": "204.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000030CE0804B4FD5DC09E5C742E1C6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.961747835999944, 50.854754632000059 ], [ -119.961924387999929, 50.853449972000043 ], [ -119.960327577999948, 50.853363696000066 ], [ -119.960812016999967, 50.849784395000022 ], [ -119.963755010999989, 50.849943389000018 ], [ -119.966476442999976, 50.850090343000055 ], [ -119.966300036999925, 50.851395015000023 ], [ -119.967896786999987, 50.851481206000074 ], [ -119.96783535499999, 50.85193565200003 ], [ -119.967412896999988, 50.855060531000042 ], [ -119.966259169999915, 50.854998256000066 ], [ -119.964742257999944, 50.854916359000143 ], [ -119.961747835999944, 50.854754632000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "281", "sL_BldgLoss": "281", "sL_StrLoss": "281", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB967494C3015EC03FF3C520A85D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.024070326999947, 50.733447472000123 ], [ -120.02416519399999, 50.732737083000103 ], [ -120.021538192999941, 50.732596205000071 ], [ -120.02170729800001, 50.731330382000067 ], [ -120.021647018999928, 50.731331945000065 ], [ -120.021632663999981, 50.731108999000128 ], [ -120.021054676999924, 50.731077994000032 ], [ -120.02107603099995, 50.730918163000091 ], [ -120.021396677999945, 50.730965349000051 ], [ -120.021792931999983, 50.73099044800005 ], [ -120.022324875999971, 50.731024153000078 ], [ -120.022738585999946, 50.730994053000089 ], [ -120.023191192999931, 50.73100299500009 ], [ -120.023474902999965, 50.73093437000005 ], [ -120.023647730000022, 50.730812032000102 ], [ -120.023680829999947, 50.730638938000034 ], [ -120.023299477, 50.730032544000039 ], [ -120.023220726999924, 50.729802082000063 ], [ -120.023267744999927, 50.729588244000141 ], [ -120.023769180999977, 50.728965220000099 ], [ -120.024045966999921, 50.729076511000095 ], [ -120.024516590999937, 50.729291039000074 ], [ -120.025063981999963, 50.72964308600006 ], [ -120.02540348, 50.729861427000039 ], [ -120.025694607999938, 50.729971691000046 ], [ -120.026511968999984, 50.730114636000039 ], [ -120.027656680999968, 50.730160670000068 ], [ -120.027945881999926, 50.730104051000055 ], [ -120.02811797, 50.729987072000114 ], [ -120.028156402999969, 50.729819031000048 ], [ -120.02820330699997, 50.729613942000071 ], [ -120.028276819, 50.729468242000017 ], [ -120.028414392999977, 50.72936473700004 ], [ -120.028665685999968, 50.729315116000059 ], [ -120.028927567999958, 50.729316774000011 ], [ -120.030131961, 50.729324445000074 ], [ -120.031039139000015, 50.729330216000065 ], [ -120.031472747999928, 50.729332959000033 ], [ -120.03061275099999, 50.730021549000114 ], [ -120.030588551999941, 50.730380866000068 ], [ -120.030489607000021, 50.731851158000069 ], [ -120.031884737999931, 50.731651528000079 ], [ -120.031915231999946, 50.731647157000069 ], [ -120.033158211999933, 50.73174235200004 ], [ -120.033910642999942, 50.731799953000078 ], [ -120.034086596999927, 50.731858018000032 ], [ -120.034350756999942, 50.731945203000109 ], [ -120.034820129000011, 50.732191186000115 ], [ -120.034865280999909, 50.732232064000108 ], [ -120.035234295999928, 50.732566144000067 ], [ -120.035186177999933, 50.732927138000065 ], [ -120.032677123999974, 50.732792836000094 ], [ -120.032637577999978, 50.73308939700005 ], [ -120.030965135999949, 50.732999844000098 ], [ -120.030862040999963, 50.733772736000049 ], [ -120.029725612999982, 50.733711870000029 ], [ -120.02972049, 50.733750262000065 ], [ -120.024070326999947, 50.733447472000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "1", "sL_AssetLoss": "462.3", "sL_BldgLoss": "462.3", "sL_StrLoss": "462.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000987D6830170A5EC04CA66D70E06D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.151166624999973, 50.859411646000098 ], [ -120.150887590999957, 50.859293914000091 ], [ -120.150746147999939, 50.85922302400008 ], [ -120.149686034999931, 50.858691889000092 ], [ -120.14945196799998, 50.858574603000108 ], [ -120.148676413999965, 50.858186001000064 ], [ -120.148119811999962, 50.857949605000073 ], [ -120.147534993999926, 50.857774794000143 ], [ -120.146936311999951, 50.857663196000075 ], [ -120.146318202999979, 50.857591194000079 ], [ -120.145712799999927, 50.85759558900002 ], [ -120.145686418999986, 50.857598656000036 ], [ -120.145820596999926, 50.856575895000091 ], [ -120.151487128999975, 50.856872484000107 ], [ -120.151412643999947, 50.857440797000031 ], [ -120.155090667999943, 50.857633152000098 ], [ -120.155341533999902, 50.855717813000069 ], [ -120.161008020999958, 50.856013921000105 ], [ -120.160973866999925, 50.856274940000048 ], [ -120.16290467599994, 50.856375770000106 ], [ -120.162832828999953, 50.85692503600005 ], [ -120.16633190099995, 50.857107678000077 ], [ -120.165863833999964, 50.860687821000056 ], [ -120.160196722999942, 50.86039196100009 ], [ -120.160268607999939, 50.859842699000112 ], [ -120.158397211999898, 50.859744935000073 ], [ -120.158151965999977, 50.861618176000057 ], [ -120.157636116999981, 50.86157070400003 ], [ -120.157062887, 50.861459598000081 ], [ -120.156009608999909, 50.861191910000102 ], [ -120.154601768999967, 50.86068372 ], [ -120.151691892999963, 50.859633283000051 ], [ -120.151448801999919, 50.859530721000091 ], [ -120.151166624999973, 50.859411646000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.8", "sL_BldgLoss": "49.8", "sL_StrLoss": "49.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F4DB193CFF55DC008E3A7716F6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.840684768999935, 50.860957319000079 ], [ -119.840707647999977, 50.860876459000089 ], [ -119.840758844, 50.860794939000087 ], [ -119.840823583999963, 50.860704183000038 ], [ -119.840924801999932, 50.860523289000106 ], [ -119.840988927999916, 50.860423628000021 ], [ -119.841054281999902, 50.860341779000045 ], [ -119.84107889900001, 50.860280938000116 ], [ -119.841851102999911, 50.860323484 ], [ -119.841757506999954, 50.861001482000056 ], [ -119.842167637999978, 50.86102407700011 ], [ -119.841673582999974, 50.864602814000115 ], [ -119.838749955999972, 50.86444171300014 ], [ -119.838789808999962, 50.864385739000078 ], [ -119.8388273569999, 50.864313487000089 ], [ -119.838865480999957, 50.864250151000114 ], [ -119.83890425899996, 50.864195707000071 ], [ -119.83892887499999, 50.864141596000053 ], [ -119.838939330999978, 50.864087812000058 ], [ -119.838990367999926, 50.864006312000093 ], [ -119.839027299999941, 50.863925155000047 ], [ -119.839141116999897, 50.863726197000062 ], [ -119.839230112999971, 50.863572208000051 ], [ -119.839268980999961, 50.863517709000092 ], [ -119.839293131999938, 50.863454590000096 ], [ -119.839316651999965, 50.863382541000036 ], [ -119.839355557999937, 50.863328032 ], [ -119.839379669999957, 50.863264924000077 ], [ -119.83941915299999, 50.863219329000053 ], [ -119.839482784999944, 50.863110615000082 ], [ -119.839521058999935, 50.863047178000024 ], [ -119.839545841999907, 50.862992987000062 ], [ -119.839610665999942, 50.862902094000113 ], [ -119.839648955999962, 50.862838679000042 ], [ -119.839658908999951, 50.862775900000045 ], [ -119.83968423099999, 50.862730637 ], [ -119.839721944999965, 50.862658247000056 ], [ -119.839760235999975, 50.862594833000102 ], [ -119.83981266799999, 50.862531065000077 ], [ -119.839851609999982, 50.862476544000053 ], [ -119.839875088999946, 50.862404507000086 ], [ -119.839926979999959, 50.862331813000075 ], [ -119.839964657999985, 50.862259435000084 ], [ -119.839988151999961, 50.862187480000017 ], [ -119.840025806999975, 50.862115194000076 ], [ -119.840062250999949, 50.862025065000076 ], [ -119.840098043999959, 50.861926041000125 ], [ -119.840149224999948, 50.861844497000035 ], [ -119.840199863999914, 50.861754085 ], [ -119.840265221999942, 50.861672236000096 ], [ -119.840394761999946, 50.861490738000072 ], [ -119.840546510999971, 50.861219405 ], [ -119.840582376999961, 50.861120359000076 ], [ -119.840647749999945, 50.861038533000034 ], [ -119.840684768999935, 50.860957319000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "120", "sL_BldgLoss": "120", "sL_StrLoss": "120", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B081BE3E840B5EC0A005DB67196E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.1769202669999, 50.861828495000026 ], [ -120.177349317999983, 50.858540630000029 ], [ -120.183016305999971, 50.858835625000054 ], [ -120.182621862, 50.861861248000068 ], [ -120.181432617, 50.861603204000055 ], [ -120.180790716, 50.861526499000021 ], [ -120.180055688999985, 50.861474700000045 ], [ -120.179379073999954, 50.86148909300001 ], [ -120.178460187, 50.861567400000062 ], [ -120.177857047, 50.86166491800001 ], [ -120.177309011999981, 50.86175350200002 ], [ -120.1769202669999, 50.861828495000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "45.8", "sL_BldgLoss": "45.8", "sL_StrLoss": "45.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070B9556BFC035EC03123BC3D886B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.05856520199994, 50.838743765000089 ], [ -120.063970513999934, 50.839031048000024 ], [ -120.063494445999979, 50.84261083399999 ], [ -120.063332408999955, 50.842602226000011 ], [ -120.063195324999938, 50.84250869900012 ], [ -120.062769703999948, 50.842063399000054 ], [ -120.061996506999947, 50.840736189000026 ], [ -120.061704707000018, 50.840389004000059 ], [ -120.061298020999942, 50.840070004000026 ], [ -120.060836778999885, 50.839806589000069 ], [ -120.060690638, 50.839738232000059 ], [ -120.059699330999962, 50.839274398000079 ], [ -120.059401768, 50.839135207000034 ], [ -120.05856520199994, 50.838743765000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58.9", "sL_BldgLoss": "58.9", "sL_StrLoss": "58.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B12F3CA36B105EC06D7B71989E6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.256042311999948, 50.855085350000131 ], [ -120.260521628, 50.855315396000044 ], [ -120.260526255999963, 50.855667037000089 ], [ -120.254919696999963, 50.855760480000143 ], [ -120.254997855999946, 50.858356367000091 ], [ -120.254463792999928, 50.859491839000086 ], [ -120.254186146, 50.859490561000037 ], [ -120.254546781999963, 50.856689519000064 ], [ -120.25463154899991, 50.85669387500009 ], [ -120.254762031999945, 50.855680321000143 ], [ -120.255506623999935, 50.855718582000101 ], [ -120.255548513999926, 50.855393139000064 ], [ -120.255999713999984, 50.855416321000085 ], [ -120.256042311999948, 50.855085350000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "180.9", "sL_BldgLoss": "180.9", "sL_StrLoss": "180.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043C008B708FD5DC0B9F30E01515F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.951073423999929, 50.742716429000033 ], [ -119.956724257999895, 50.743022907000054 ], [ -119.95624064799999, 50.746602632000084 ], [ -119.950589364999956, 50.746296131000108 ], [ -119.951073423999929, 50.742716429000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "113", "sL_BldgLoss": "113", "sL_StrLoss": "113", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FDC931BC06FF5DC038E60A291E644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.981762352999951, 50.783548116000041 ], [ -119.98176412, 50.78353498900006 ], [ -119.980968826999941, 50.783492094000046 ], [ -119.981346842999983, 50.780684930000064 ], [ -119.982467286999949, 50.781496993000133 ], [ -119.982787310999981, 50.781613794000094 ], [ -119.983357498999951, 50.781662197000067 ], [ -119.984020895999947, 50.781592392000015 ], [ -119.984559586, 50.781361706000098 ], [ -119.985174781999916, 50.78033910400007 ], [ -119.98572817199999, 50.779967299000113 ], [ -119.987259677999958, 50.780049840000075 ], [ -119.987234440999927, 50.780237456000116 ], [ -119.987900068999949, 50.780273323000046 ], [ -119.987418546999919, 50.783853027000156 ], [ -119.981762352999951, 50.783548116000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "182", "sL_BldgLoss": "182", "sL_StrLoss": "182", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028B559ED080C5EC0CF5037AB99644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.185177809999971, 50.787795682000102 ], [ -120.185230273999949, 50.787392397000119 ], [ -120.184788323999982, 50.787369372000093 ], [ -120.185254113999946, 50.783788846000057 ], [ -120.190911697999965, 50.784083467000123 ], [ -120.19085929000002, 50.784486756000085 ], [ -120.191301213999935, 50.784509757000087 ], [ -120.190835900999971, 50.788090305000033 ], [ -120.185177809999971, 50.787795682000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "121.9", "sL_BldgLoss": "121.9", "sL_StrLoss": "121.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002604C48706FF5DC0B867A73080634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.983923297, 50.77852749900012 ], [ -119.98331380499998, 50.778066095000057 ], [ -119.982382711999961, 50.77814299200007 ], [ -119.981979781999925, 50.778063203000038 ], [ -119.981651515999943, 50.777821095000036 ], [ -119.981604594999951, 50.77773554100002 ], [ -119.981873685999943, 50.775736816000041 ], [ -119.98752889399999, 50.776041725000027 ], [ -119.987047386999919, 50.779621445000046 ], [ -119.986302657999943, 50.779581309000072 ], [ -119.986344811, 50.779552986000027 ], [ -119.986359213999933, 50.779336495000067 ], [ -119.98612330399996, 50.779199787000103 ], [ -119.985482192999896, 50.779134310000046 ], [ -119.984717494, 50.778947692000052 ], [ -119.983923297, 50.77852749900012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "181", "sL_BldgLoss": "181", "sL_StrLoss": "181", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FFEA2FC3980B5EC06D2DBC602A644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.178260183999924, 50.784460399000103 ], [ -120.178353762999961, 50.783741870000078 ], [ -120.17797462399993, 50.783722093000073 ], [ -120.17840900199991, 50.78038668300011 ], [ -120.180255319999958, 50.780507125000099 ], [ -120.180570632999945, 50.780506533000114 ], [ -120.18408976399999, 50.780499847000073 ], [ -120.184004519999945, 50.78115508300008 ], [ -120.184383639999979, 50.781174840000084 ], [ -120.184335122999954, 50.781547783000114 ], [ -120.18391780799999, 50.784755373000088 ], [ -120.181336442999921, 50.784620823000111 ], [ -120.179693781999958, 50.784535171000059 ], [ -120.178633022999961, 50.784479847000057 ], [ -120.178260183999924, 50.784460399000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "59.1", "sL_BldgLoss": "59.1", "sL_StrLoss": "59.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FB0DB4EB8025EC0687CFC31EF6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.038649874999976, 50.83838897200016 ], [ -120.038779685999941, 50.837416908000101 ], [ -120.037336621999927, 50.837339908000089 ], [ -120.037896601999989, 50.837075397000056 ], [ -120.038096504999942, 50.837053988000022 ], [ -120.038979513999948, 50.837237698000131 ], [ -120.039228789999953, 50.837118093000065 ], [ -120.039447598999928, 50.836791911000113 ], [ -120.039656394999952, 50.836850307000113 ], [ -120.039960096999906, 50.836794797000067 ], [ -120.040384894999946, 50.837039808000043 ], [ -120.040786415999932, 50.83696000500008 ], [ -120.041138401999902, 50.83678910500003 ], [ -120.041545808999956, 50.836430183000083 ], [ -120.041547401999949, 50.836169588000075 ], [ -120.041948210999962, 50.835874806000035 ], [ -120.041976916999928, 50.8356596960001 ], [ -120.042108602999946, 50.835589885000047 ], [ -120.042255414999943, 50.835081494000065 ], [ -120.042200312999952, 50.834836500000073 ], [ -120.04248919199992, 50.834305289000085 ], [ -120.043674893999935, 50.833524808000064 ], [ -120.044257006999914, 50.833296906000044 ], [ -120.044499308999931, 50.833079005000073 ], [ -120.045140018999973, 50.833040607000072 ], [ -120.045173295999959, 50.83296939100007 ], [ -120.044617004999964, 50.832308499000092 ], [ -120.044567420999954, 50.831982400000143 ], [ -120.044685293999976, 50.831905513000052 ], [ -120.045039912999968, 50.831931094 ], [ -120.045547185999965, 50.832223098000028 ], [ -120.045760108999971, 50.832445283000069 ], [ -120.045725494999914, 50.832750008000048 ], [ -120.04632020299999, 50.833016398000105 ], [ -120.046768592999982, 50.833100402000085 ], [ -120.046838350999963, 50.833095769000124 ], [ -120.046787083999959, 50.833480233000131 ], [ -120.046765101999981, 50.833645083000114 ], [ -120.046102794999968, 50.833632796000117 ], [ -120.045495993999964, 50.833703194000051 ], [ -120.0448603899999, 50.833872078000063 ], [ -120.044682699999967, 50.833944956000032 ], [ -120.044430500999951, 50.83404837800007 ], [ -120.043922998999932, 50.834368282000106 ], [ -120.043624197999961, 50.834630887000067 ], [ -120.04337298499999, 50.834942899000097 ], [ -120.042884399999963, 50.836307488000088 ], [ -120.042574099999968, 50.836784005000027 ], [ -120.042344985999961, 50.836983595000078 ], [ -120.04174980099998, 50.837361897000051 ], [ -120.0393727299999, 50.838332615000063 ], [ -120.039167138999915, 50.838416569000039 ], [ -120.038649874999976, 50.83838897200016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "165.9", "sL_BldgLoss": "165.9", "sL_StrLoss": "165.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BBD39F900085EC0203A4E1B9F6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.122463391999958, 50.831041596 ], [ -120.128126535999954, 50.83133937600013 ], [ -120.127655681999954, 50.834919465000084 ], [ -120.121992088999932, 50.834621663000121 ], [ -120.122463391999958, 50.831041596 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4243667", "BldgCostT": "2926667", "sL_LossRatio": "1", "sL_AssetLoss": "265.7", "sL_BldgLoss": "265.7", "sL_StrLoss": "265.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B2F59EC21FF5DC0DB0940ED016C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.978718369999939, 50.848739109000064 ], [ -119.978769456999913, 50.848360468000109 ], [ -119.97871639499999, 50.8483576100001 ], [ -119.979199307999963, 50.844778209000062 ], [ -119.979758421999918, 50.844808332000106 ], [ -119.979843415999966, 50.844178223000064 ], [ -119.981939090999944, 50.844291105000082 ], [ -119.982130291999951, 50.842873073000071 ], [ -119.982602360999977, 50.84289849500005 ], [ -119.982712213, 50.842083685000055 ], [ -119.983719716999943, 50.842137935000075 ], [ -119.983865521999945, 50.841056209000079 ], [ -119.98887379699994, 50.841325748000088 ], [ -119.988978628999931, 50.84054732600007 ], [ -119.990588325999965, 50.84063390900004 ], [ -119.99063747299999, 50.840268864000052 ], [ -119.996300897999944, 50.840573307000071 ], [ -119.996105958, 50.842022575000051 ], [ -119.991492281999953, 50.843841706000028 ], [ -119.990440711999938, 50.844168034000099 ], [ -119.990424574999949, 50.844173042000087 ], [ -119.99042389100002, 50.844173276000085 ], [ -119.990266842999958, 50.844222006000031 ], [ -119.990214953999939, 50.844219216000099 ], [ -119.990212299999911, 50.844238931000064 ], [ -119.989814321999958, 50.844362418000067 ], [ -119.987692313, 50.845020890000036 ], [ -119.987392503999942, 50.845110882 ], [ -119.987301099999954, 50.845138333000058 ], [ -119.986529635999929, 50.845369870000127 ], [ -119.986317404999966, 50.845433586000041 ], [ -119.985214489999962, 50.845764608000131 ], [ -119.984300807999944, 50.846226491000081 ], [ -119.983705013999923, 50.846667603000043 ], [ -119.983130557999957, 50.847214400000041 ], [ -119.981378155999892, 50.848882381000095 ], [ -119.980824462999976, 50.848852561000072 ], [ -119.978718369999939, 50.848739109000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "159.2", "sL_BldgLoss": "159.2", "sL_StrLoss": "159.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF166C3CFB025EC0F80BEA19CA694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.042480921999953, 50.829531894000048 ], [ -120.042547944999953, 50.829029584000082 ], [ -120.042345552999933, 50.829018790000127 ], [ -120.042823166999966, 50.825439038000077 ], [ -120.043624836999953, 50.825481789000023 ], [ -120.043703262999941, 50.824893858000088 ], [ -120.04458492399999, 50.824940867000038 ], [ -120.044642443, 50.824509579000022 ], [ -120.046362919999979, 50.82460129400004 ], [ -120.046393475999977, 50.824372119000046 ], [ -120.052055266999929, 50.824673748000059 ], [ -120.051753630999912, 50.826938164000119 ], [ -120.050144193999969, 50.826889403000067 ], [ -120.049199619, 50.826775496000018 ], [ -120.048904604999947, 50.826937803000142 ], [ -120.048730914999936, 50.827904890000056 ], [ -120.048579920999956, 50.828037304000134 ], [ -120.04833870500002, 50.828048696000089 ], [ -120.048090787999939, 50.827934803000069 ], [ -120.048293180999949, 50.827651401000026 ], [ -120.04831409699996, 50.827517502000056 ], [ -120.048192194999928, 50.827442006000069 ], [ -120.047108693, 50.827046092000053 ], [ -120.046445297999966, 50.826974897000085 ], [ -120.046212400999977, 50.827085985000039 ], [ -120.045916781999921, 50.82749189500003 ], [ -120.046065399999918, 50.828269487000043 ], [ -120.045926505999958, 50.828446108000023 ], [ -120.044729517999926, 50.829181 ], [ -120.044570578999966, 50.829455794000062 ], [ -120.044618097999944, 50.829599691000041 ], [ -120.04479402799997, 50.829655225000067 ], [ -120.042480921999953, 50.829531894000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "174.6", "sL_BldgLoss": "174.6", "sL_StrLoss": "174.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A63110BAFAFD5DC0D51475A4825D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.966314401999966, 50.732199189000042 ], [ -119.96631651699991, 50.732183508000098 ], [ -119.965807986999934, 50.732155977000048 ], [ -119.965846555999946, 50.731869955000057 ], [ -119.965821106999925, 50.731868578000082 ], [ -119.96582577099997, 50.73183399300008 ], [ -119.964726073999955, 50.731774447000092 ], [ -119.965168836999936, 50.728491336000097 ], [ -119.968081725999966, 50.728513470000031 ], [ -119.9684898899999, 50.728535560000104 ], [ -119.968597142999926, 50.728560749000039 ], [ -119.968714655999989, 50.728588288000019 ], [ -119.969005620999923, 50.728698716000089 ], [ -119.96974118899999, 50.729067565000094 ], [ -119.969986607999914, 50.72915924200003 ], [ -119.970249128999981, 50.729257305000033 ], [ -119.970723681999957, 50.729377634000123 ], [ -119.97093853899996, 50.729415121000081 ], [ -119.972222039999949, 50.729638981000086 ], [ -119.972350473999924, 50.729635919000081 ], [ -119.97196401699999, 50.732504901000048 ], [ -119.966314401999966, 50.732199189000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999995918841951", "sL_AssetLoss": "71.303291", "sL_BldgLoss": "71.303", "sL_StrLoss": "71.3", "sL_NStrLoss": "0.003", "sL_ContLoss": "0.000291", "geom_point": "0101000020E61000002470560A62055EC0DCD679C8526B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.084878716999967, 50.839267193000119 ], [ -120.084470812999925, 50.839194607000088 ], [ -120.084213383999924, 50.839232993000103 ], [ -120.083362621999953, 50.838968098000045 ], [ -120.083021697999953, 50.838744495000121 ], [ -120.08264760499992, 50.838113592000127 ], [ -120.082140716999916, 50.837831597000061 ], [ -120.079938779999907, 50.837798902000031 ], [ -120.07996735399999, 50.837583426000052 ], [ -120.085631041999974, 50.837883352000084 ], [ -120.085534970999973, 50.838608479000072 ], [ -120.086080277999926, 50.838637341000016 ], [ -120.085992338999972, 50.839301127000063 ], [ -120.086198518999979, 50.839312039000149 ], [ -120.086150978999925, 50.839670894000044 ], [ -120.084878716999967, 50.839267193000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019134", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6520167", "BldgCostT": "4496667", "sL_LossRatio": "1", "sL_AssetLoss": "508", "sL_BldgLoss": "508", "sL_StrLoss": "508", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D3248825EBFD5DC023EFA002756C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.967035232999933, 50.850322786000049 ], [ -119.967253769999914, 50.848706271000069 ], [ -119.963381747999946, 50.848497187000071 ], [ -119.963322168999966, 50.848937617000061 ], [ -119.963196412999977, 50.849867239000105 ], [ -119.957865555999959, 50.849579158000132 ], [ -119.957532036999964, 50.849561127000044 ], [ -119.957584157999946, 50.849176208000088 ], [ -119.957941665999925, 50.846535735000018 ], [ -119.958016657999963, 50.845981823000095 ], [ -119.962910172999941, 50.846246295000093 ], [ -119.963095502999977, 50.844876237000086 ], [ -119.964221956999921, 50.844937087000048 ], [ -119.964343296, 50.844039864000102 ], [ -119.970007018999937, 50.844345635000074 ], [ -119.969965212999952, 50.844655052000064 ], [ -119.971004108, 50.844711108000062 ], [ -119.970984495, 50.844856286000052 ], [ -119.976459838999986, 50.845151559000037 ], [ -119.975976701999983, 50.848730946000089 ], [ -119.973574585999955, 50.848601439000049 ], [ -119.973309192999977, 50.850566605000061 ], [ -119.972712464999972, 50.850534425000014 ], [ -119.972699768999931, 50.850628418000063 ], [ -119.967035232999933, 50.850322786000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "290", "sL_BldgLoss": "290", "sL_StrLoss": "290", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A569ED09940E5EC09204E10A286D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.226118295999939, 50.855284375000089 ], [ -120.226173069999945, 50.854861 ], [ -120.225698010999949, 50.854836465000112 ], [ -120.225791183999945, 50.854116329000092 ], [ -120.222906367999968, 50.853967289000124 ], [ -120.223369797999965, 50.850386881000084 ], [ -120.224109890999912, 50.85042512400004 ], [ -120.224809756999917, 50.85046128300003 ], [ -120.225606937999913, 50.850502466000087 ], [ -120.225641407999916, 50.850236033000101 ], [ -120.231307661999921, 50.850528588000067 ], [ -120.231180147999922, 50.851515165000116 ], [ -120.231827614999986, 50.851548576000098 ], [ -120.231772895999953, 50.851971954000064 ], [ -120.232247929999971, 50.851996465000077 ], [ -120.231785191999947, 50.855576904000038 ], [ -120.226118295999939, 50.855284375000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BA79BBC2F075EC090417ACC38674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.114624756999945, 50.804741518000071 ], [ -120.115354383999929, 50.804779976000091 ], [ -120.11488278799996, 50.808360121000092 ], [ -120.109222639999956, 50.808061663000053 ], [ -120.109556262999973, 50.805531434000031 ], [ -120.109694684999923, 50.804481541000094 ], [ -120.111358241999966, 50.804569290000082 ], [ -120.112856605999966, 50.804648304000089 ], [ -120.114624756999945, 50.804741518000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "282.4", "sL_BldgLoss": "282.4", "sL_StrLoss": "282.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C4E0694B000D5EC0EC1D66163E6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.199818134999987, 50.856649853000086 ], [ -120.199871905999956, 50.856236140000107 ], [ -120.198778828999963, 50.856179425000036 ], [ -120.199244212999957, 50.852599125000076 ], [ -120.200075644999941, 50.852642266000025 ], [ -120.200346083999975, 50.850561146000082 ], [ -120.20188843699998, 50.850641159000133 ], [ -120.201959440999971, 50.850094582000089 ], [ -120.207625522999976, 50.850388335000069 ], [ -120.207160830999925, 50.853968678000086 ], [ -120.205879923999987, 50.853902296000079 ], [ -120.205485031999928, 50.856943711000035 ], [ -120.199818134999987, 50.856649853000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "144.2", "sL_BldgLoss": "144.2", "sL_StrLoss": "144.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C34063682D105EC02B7FA590376B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.25042480799999, 50.835251674000062 ], [ -120.256089324999948, 50.835542981000025 ], [ -120.255628667999957, 50.839123586000014 ], [ -120.255235659, 50.839103384000076 ], [ -120.255118395999929, 50.84001469599999 ], [ -120.249453317999951, 50.839723343000067 ], [ -120.249914476999919, 50.836142766000066 ], [ -120.25030745499997, 50.836162985000108 ], [ -120.25042480799999, 50.835251674000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46", "sL_BldgLoss": "46", "sL_StrLoss": "46", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000384FAF7357045EC05EC3041CDF6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.065060350999985, 50.841872291000094 ], [ -120.070724481999932, 50.842172969000025 ], [ -120.070521523999986, 50.843700817000055 ], [ -120.070459718999956, 50.843688393000093 ], [ -120.069944703999965, 50.84362499200008 ], [ -120.065805302999962, 50.843332288000092 ], [ -120.065144595999968, 50.843260314000077 ], [ -120.064882037999922, 50.84321333400009 ], [ -120.065060350999985, 50.841872291000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "60.1", "sL_BldgLoss": "60.1", "sL_StrLoss": "60.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000363F598C550F5EC094FF038BC76E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.23792147799999, 50.863965648 ], [ -120.243589551999946, 50.864257577000103 ], [ -120.243517159999911, 50.864818700000029 ], [ -120.243341037999954, 50.864956243000051 ], [ -120.242169654999955, 50.865776250000067 ], [ -120.241711778999942, 50.866063545000031 ], [ -120.24091212499999, 50.866423344000076 ], [ -120.239103578000012, 50.86692939300012 ], [ -120.238378725999922, 50.867184889000093 ], [ -120.237678077999973, 50.867495684000048 ], [ -120.23705001799999, 50.86769759900006 ], [ -120.236926548999975, 50.867728080000127 ], [ -120.236735632999938, 50.867718241000041 ], [ -120.237198097999979, 50.864137832000026 ], [ -120.237894606999973, 50.864173725000093 ], [ -120.23792147799999, 50.863965648 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999531649576282", "sL_AssetLoss": "442.6173", "sL_BldgLoss": "442.41", "sL_StrLoss": "441", "sL_NStrLoss": "1.41", "sL_ContLoss": "0.2073", "geom_point": "0101000020E610000067FE458E3C3A5EC0B73DE6A8C8F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.907366925999952, 49.949513384000042 ], [ -120.91292550899999, 49.94977173900007 ], [ -120.912525347999946, 49.953358875000106 ], [ -120.907381968999957, 49.953119828000091 ], [ -120.90696633099999, 49.953100500000104 ], [ -120.907025568999984, 49.952570092000066 ], [ -120.907366925999952, 49.949513384000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999817965281171", "sL_AssetLoss": "349.3839", "sL_BldgLoss": "349.3203", "sL_StrLoss": "349", "sL_NStrLoss": "0.3203", "sL_ContLoss": "0.0636", "geom_point": "0101000020E6100000B718B0A2CE295EC04F2D115EF1064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.650662952999951, 50.052312428000093 ], [ -120.656232581999944, 50.052583752000039 ], [ -120.655832660999977, 50.055987793000064 ], [ -120.655811318999966, 50.056169432000083 ], [ -120.650241255, 50.055898087000088 ], [ -120.650608968999947, 50.052771474000082 ], [ -120.650662952999951, 50.052312428000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999211669920267", "sL_AssetLoss": "455.393", "sL_BldgLoss": "455.034", "sL_StrLoss": "453", "sL_NStrLoss": "2.034", "sL_ContLoss": "0.359", "geom_point": "0101000020E61000005D7B1301962B5EC00DA18CE9F0124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.68186159, 50.146214420000049 ], [ -120.684031242999978, 50.146319300000101 ], [ -120.68361130299995, 50.14990464100007 ], [ -120.678029591999945, 50.149634738000088 ], [ -120.678275526, 50.147537290000102 ], [ -120.678417383999914, 50.146327355000047 ], [ -120.678449969999974, 50.146049417000029 ], [ -120.678813965999936, 50.1460670270001 ], [ -120.68186159, 50.146214420000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99843782179113", "sL_AssetLoss": "199.081", "sL_BldgLoss": "198.77", "sL_StrLoss": "196", "sL_NStrLoss": "2.77", "sL_ContLoss": "0.311", "geom_point": "0101000020E61000006AE3E36EEB405EC0194DF41A37DA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.01341752799999, 49.705873859000114 ], [ -121.013777986999941, 49.702558050000071 ], [ -121.015856175999943, 49.705895942000048 ], [ -121.015913573999924, 49.705988127000118 ], [ -121.01341752799999, 49.705873859000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "0.999098327893927", "sL_AssetLoss": "635.486", "sL_BldgLoss": "634.913", "sL_StrLoss": "631", "sL_NStrLoss": "3.913", "sL_ContLoss": "0.573", "geom_point": "0101000020E61000002CDAB9BCBB2C5EC083DC87B474FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.693260600999963, 49.973836341 ], [ -120.693266498999961, 49.973785695000132 ], [ -120.692691185999962, 49.973757826000046 ], [ -120.693108791, 49.970171608000072 ], [ -120.694123983999972, 49.97022078400007 ], [ -120.693625203999943, 49.970362788000052 ], [ -120.69335149299999, 49.970582108000045 ], [ -120.693315881999979, 49.970744504000081 ], [ -120.693527021999955, 49.971549106000062 ], [ -120.693952280999923, 49.972016297000053 ], [ -120.69436638699996, 49.9721045920001 ], [ -120.695676193999972, 49.971834009000077 ], [ -120.696337904999936, 49.971963610000095 ], [ -120.69682871399999, 49.971946503000041 ], [ -120.697255196999947, 49.972054699000068 ], [ -120.698049614999903, 49.972070393000088 ], [ -120.699345504999954, 49.971789786000059 ], [ -120.700467519, 49.97138960100007 ], [ -120.701727007, 49.970713106000055 ], [ -120.702021914999989, 49.97066469100006 ], [ -120.702302298999939, 49.970320092000087 ], [ -120.702969091999989, 49.96981159500006 ], [ -120.703109226999985, 49.969025462000076 ], [ -120.704484452999964, 49.969091952000078 ], [ -120.704203085999936, 49.971513534000074 ], [ -120.704166759999964, 49.971826157000095 ], [ -120.703594889999948, 49.972180109000078 ], [ -120.703152901999928, 49.972657199000082 ], [ -120.701667784999984, 49.973392094000076 ], [ -120.701133890999955, 49.973768102000079 ], [ -120.702204189999961, 49.973564396000036 ], [ -120.702318650999985, 49.973554826000104 ], [ -120.702291736999911, 49.973786357000051 ], [ -120.70133779199989, 49.973740222000096 ], [ -120.701303009999975, 49.97403937900004 ], [ -120.700219373999929, 49.973986962000026 ], [ -120.698842450999976, 49.973920344000064 ], [ -120.698820908999977, 49.974105536000046 ], [ -120.693260600999963, 49.973836341 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5737167", "BldgCostT": "3956667", "sL_LossRatio": "0.999373998876157", "sL_AssetLoss": "1040.8927", "sL_BldgLoss": "1040.2411", "sL_StrLoss": "1035.0711", "sL_NStrLoss": "5.17", "sL_ContLoss": "0.6516", "geom_point": "0101000020E6100000DA4335044B285EC0D3B5BC93CBF74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.626170078999962, 49.94200668900006 ], [ -120.626233072999952, 49.94147209300008 ], [ -120.626212586999955, 49.941471087000075 ], [ -120.626635114999928, 49.937884967000095 ], [ -120.627198087999886, 49.937912603 ], [ -120.62731343899999, 49.936933381000131 ], [ -120.627358553999912, 49.936935595000122 ], [ -120.6274140599999, 49.936464382000075 ], [ -120.627455362999982, 49.93646640900009 ], [ -120.62758495199995, 49.935366236000107 ], [ -120.625345260999978, 49.935256277000107 ], [ -120.6257678, 49.931670130000057 ], [ -120.627042611, 49.931732724000028 ], [ -120.627371085, 49.928943861000064 ], [ -120.629358519999968, 49.929041415000064 ], [ -120.632925540999977, 49.929216411000056 ], [ -120.632877968999978, 49.929620754000062 ], [ -120.633093161999938, 49.929631307000108 ], [ -120.632671216999967, 49.933217492000061 ], [ -120.63258962, 49.933213490000057 ], [ -120.632498153999947, 49.933990794000103 ], [ -120.631089654999954, 49.933921710000128 ], [ -120.630972965999973, 49.934913060000028 ], [ -120.633361704999984, 49.935030212000107 ], [ -120.632939730999937, 49.93861637200007 ], [ -120.632913904999953, 49.93861510600005 ], [ -120.632543090999903, 49.941765972000077 ], [ -120.631790881999962, 49.941729088000017 ], [ -120.631655015999954, 49.942883291000072 ], [ -120.626098906999943, 49.942610682000122 ], [ -120.626170078999962, 49.94200668900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998569841087917", "sL_AssetLoss": "200.677", "sL_BldgLoss": "200.39", "sL_StrLoss": "198", "sL_NStrLoss": "2.39", "sL_ContLoss": "0.287", "geom_point": "0101000020E610000058437783473C5EC0995F935678E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.93974045299997, 49.817521711000026 ], [ -120.940008171999935, 49.815101300000102 ], [ -120.940044487999941, 49.815112611000082 ], [ -120.940806790999915, 49.815180909000048 ], [ -120.94218130199998, 49.815240691000099 ], [ -120.942476090999918, 49.8151653030001 ], [ -120.942877800999966, 49.814874689000106 ], [ -120.942894383999942, 49.814349017000076 ], [ -120.943684174999973, 49.814385600000058 ], [ -120.944894414999922, 49.814441648000027 ], [ -120.942195508999959, 49.817708293000088 ], [ -120.942024700999923, 49.817915013000054 ], [ -120.939708818999961, 49.817807698000088 ], [ -120.93974045299997, 49.817521711000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999592180438968", "sL_AssetLoss": "257.2216", "sL_BldgLoss": "257.1167", "sL_StrLoss": "256.0217", "sL_NStrLoss": "1.095", "sL_ContLoss": "0.1049", "geom_point": "0101000020E6100000A0A1C19E5D275EC0C935896A5FFC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.61210487399994, 49.973536730000056 ], [ -120.612156178999911, 49.973102790000084 ], [ -120.612089902999969, 49.973099531000038 ], [ -120.612513832999966, 49.969513619000026 ], [ -120.614204068999982, 49.969596739000053 ], [ -120.618073135, 49.969786907000099 ], [ -120.61802189, 49.970220852000075 ], [ -120.618088161999978, 49.970224108000124 ], [ -120.617664662999957, 49.973810037000057 ], [ -120.613712069999963, 49.973615766000101 ], [ -120.61210487399994, 49.973536730000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998704844455766", "sL_AssetLoss": "557.462", "sL_BldgLoss": "556.74", "sL_StrLoss": "553", "sL_NStrLoss": "3.74", "sL_ContLoss": "0.722", "geom_point": "0101000020E6100000A57EE6C52C2E5EC040DBACF2EB024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.721304582999963, 50.021013940000074 ], [ -120.724473737999958, 50.021166424000093 ], [ -120.724058130999936, 50.024752513000045 ], [ -120.718491499999971, 50.024484615000084 ], [ -120.718693780999928, 50.022741125000067 ], [ -120.718907542999915, 50.020898544000069 ], [ -120.721304582999963, 50.021013940000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999352950769896", "sL_AssetLoss": "301.6772", "sL_BldgLoss": "301.482", "sL_StrLoss": "300", "sL_NStrLoss": "1.482", "sL_ContLoss": "0.1952", "geom_point": "0101000020E6100000566201C02F245EC03DD8209B7DF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.561246367999942, 49.91207209500007 ], [ -120.56181929899995, 49.911060345000095 ], [ -120.561827318999974, 49.910465114000033 ], [ -120.562905835999956, 49.910487797000037 ], [ -120.562919428999962, 49.910218215000043 ], [ -120.563336874999948, 49.910226992000062 ], [ -120.563364055999926, 49.909687829000084 ], [ -120.563781495999962, 49.90969660400004 ], [ -120.563822257999959, 49.90888785900006 ], [ -120.564239692999934, 49.908896634000037 ], [ -120.564253277999981, 49.908627051000089 ], [ -120.564670708999955, 49.908635824000029 ], [ -120.564684291999939, 49.908366241000067 ], [ -120.565101724000016, 49.908375012000057 ], [ -120.565115302, 49.908105430000056 ], [ -120.565532731999923, 49.90811419900006 ], [ -120.565559883999981, 49.90757503400004 ], [ -120.566807235999988, 49.907601228000075 ], [ -120.567229582999971, 49.907610094000034 ], [ -120.567175311999947, 49.908688424000026 ], [ -120.566757877999962, 49.908679661000086 ], [ -120.566730736999943, 49.909218824000064 ], [ -120.566313299999976, 49.90921006100006 ], [ -120.566299725999983, 49.909479642000065 ], [ -120.567552049999975, 49.909505932000094 ], [ -120.567538483999954, 49.909775514000103 ], [ -120.568373372999972, 49.909793033000035 ], [ -120.568359808999944, 49.910062616000033 ], [ -120.56877725799994, 49.91007137400004 ], [ -120.568763696999966, 49.910340956000049 ], [ -120.569181146999966, 49.910349713000059 ], [ -120.569167589999964, 49.91061929500006 ], [ -120.569585040999968, 49.910628049000096 ], [ -120.569544373999989, 49.911436798000054 ], [ -120.567874540999981, 49.911401770000026 ], [ -120.567901669999983, 49.910862605000077 ], [ -120.567066763999932, 49.910845082000073 ], [ -120.567080332000032, 49.910575500000043 ], [ -120.565827981999973, 49.910549205000081 ], [ -120.565814406999948, 49.910818786000078 ], [ -120.565396952999905, 49.910810019000081 ], [ -120.565369795, 49.91134918200008 ], [ -120.564952338999944, 49.911340413000119 ], [ -120.564938755999933, 49.911609994000067 ], [ -120.564521297999931, 49.911601223000062 ], [ -120.564507713999916, 49.911870805000078 ], [ -120.562837870999914, 49.911835704000062 ], [ -120.56285146499998, 49.911566122000075 ], [ -120.562016547999988, 49.911548563000082 ], [ -120.56198935299993, 49.912087725000056 ], [ -120.561246367999942, 49.91207209500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999345910119348", "sL_AssetLoss": "140.1948", "sL_BldgLoss": "140.1031", "sL_StrLoss": "139.0271", "sL_NStrLoss": "1.076", "sL_ContLoss": "0.0917", "geom_point": "0101000020E6100000667648F7543A5EC0E090783F8FF74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.910804672999987, 49.931949119000109 ], [ -120.913535959999962, 49.932076067000068 ], [ -120.913549600999957, 49.932257797000034 ], [ -120.913354675999969, 49.932896932000077 ], [ -120.913296401999972, 49.93308799600004 ], [ -120.913245594, 49.933556203000109 ], [ -120.913276802, 49.933828002000077 ], [ -120.913525849999957, 49.934441 ], [ -120.913841381999973, 49.935217508000065 ], [ -120.913933107999966, 49.93544329300002 ], [ -120.914134710999946, 49.935939399000112 ], [ -120.914154439999919, 49.936003467000013 ], [ -120.909019535999917, 49.9357647940001 ], [ -120.909419816999929, 49.932177586000073 ], [ -120.910772173999959, 49.932240469000085 ], [ -120.910804672999987, 49.931949119000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019170", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998706416610266", "sL_AssetLoss": "366.424", "sL_BldgLoss": "365.95", "sL_StrLoss": "362", "sL_NStrLoss": "3.95", "sL_ContLoss": "0.474", "geom_point": "0101000020E61000006991483632305EC0984C57A81CEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.750239913999948, 49.830550117000087 ], [ -120.750651708999982, 49.826962979 ], [ -120.7534569099999, 49.827097809000129 ], [ -120.753367193, 49.827205495000086 ], [ -120.75368578799997, 49.82754449500009 ], [ -120.7536839099999, 49.828165387000077 ], [ -120.75375339799993, 49.8284816070001 ], [ -120.753977599999985, 49.82874650300009 ], [ -120.754254601999961, 49.828752191000142 ], [ -120.754749109999935, 49.82861689500001 ], [ -120.755034111999947, 49.829037108000115 ], [ -120.755297002999953, 49.829076898000082 ], [ -120.755027715999958, 49.828587002000056 ], [ -120.755178406999974, 49.828022994000044 ], [ -120.755347518999926, 49.828017300000099 ], [ -120.755444387999901, 49.828306410000053 ], [ -120.755583983999884, 49.82830929200005 ], [ -120.75571388599991, 49.827907699000022 ], [ -120.755633006999943, 49.827815101000105 ], [ -120.754862186999901, 49.827665493000019 ], [ -120.754509118999962, 49.827479007000093 ], [ -120.754137542999956, 49.82713051300005 ], [ -120.756194524999941, 49.827229321000054 ], [ -120.75578316099994, 49.830816479000084 ], [ -120.750239913999948, 49.830550117000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999453139963131", "sL_AssetLoss": "432.8347", "sL_BldgLoss": "432.598", "sL_StrLoss": "431", "sL_NStrLoss": "1.598", "sL_ContLoss": "0.2367", "geom_point": "0101000020E6100000B8EF8B2A07295EC0361F19A35CEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.637932049999947, 49.864291082000058 ], [ -120.637976889999948, 49.863909021 ], [ -120.637967975999928, 49.863908583000047 ], [ -120.638388867999979, 49.860322038000106 ], [ -120.638614049999944, 49.860333088000054 ], [ -120.638670481999966, 49.859852142000143 ], [ -120.64043071499999, 49.859938502 ], [ -120.644216622000016, 49.860124146000061 ], [ -120.643796188999929, 49.863710715000067 ], [ -120.643579902999988, 49.8637001130001 ], [ -120.643478723999962, 49.864563120000085 ], [ -120.639799699999983, 49.864382714000108 ], [ -120.637932049999947, 49.864291082000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999008593156113", "sL_AssetLoss": "345.973", "sL_BldgLoss": "345.63", "sL_StrLoss": "343", "sL_NStrLoss": "2.63", "sL_ContLoss": "0.343", "geom_point": "0101000020E610000055B37BB0543A5EC00B0F584125F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.911042091999946, 49.909939009000027 ], [ -120.911131150999893, 49.909140142000098 ], [ -120.909734600999926, 49.90907517500014 ], [ -120.909785261999929, 49.908620843000094 ], [ -120.909749430999952, 49.908619176000094 ], [ -120.909819590999945, 49.907989969000027 ], [ -120.90954886499999, 49.907977372000083 ], [ -120.909948861999965, 49.904390026000108 ], [ -120.91117225, 49.904446942000035 ], [ -120.911251277999938, 49.904539739000043 ], [ -120.911815157999968, 49.904989658 ], [ -120.911949848999953, 49.905112250000045 ], [ -120.91212303399999, 49.905269898000064 ], [ -120.912275929999907, 49.905487971000085 ], [ -120.912472589999979, 49.906019719000064 ], [ -120.912502397999958, 49.906100291000087 ], [ -120.912541899999965, 49.906207110000018 ], [ -120.912597566999949, 49.906334244000035 ], [ -120.912764397999979, 49.906715067000036 ], [ -120.912850517999971, 49.906815940000101 ], [ -120.912887848999986, 49.906859637000117 ], [ -120.913023475999935, 49.907020099000135 ], [ -120.913073819999966, 49.907169400000022 ], [ -120.913031898999947, 49.907408082000089 ], [ -120.913054109999919, 49.907534489000057 ], [ -120.913257659999914, 49.907831754000028 ], [ -120.913328897000014, 49.907935799000079 ], [ -120.913458797999965, 49.908210485000076 ], [ -120.913539310999965, 49.908490101000034 ], [ -120.913504683, 49.908800680000155 ], [ -120.913495195999971, 49.908885595000044 ], [ -120.913331405999941, 49.909166393000106 ], [ -120.913248712999959, 49.909482600000096 ], [ -120.91334202099992, 49.910045962000062 ], [ -120.911042091999946, 49.909939009000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "0.997610926012126", "sL_AssetLoss": "1362.034", "sL_BldgLoss": "1358.78", "sL_StrLoss": "1334", "sL_NStrLoss": "24.78", "sL_ContLoss": "3.254", "geom_point": "0101000020E6100000207AD65ED9285EC0F3BCAF253F054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.636098981999965, 50.044602026000064 ], [ -120.63637384899999, 50.04227050300009 ], [ -120.635643921999957, 50.042234820000076 ], [ -120.635797120999982, 50.040935402000045 ], [ -120.634072655999915, 50.040851080000067 ], [ -120.634339375, 50.03858932000005 ], [ -120.634495485999963, 50.037265410000046 ], [ -120.640063180999974, 50.03753756 ], [ -120.639910115999925, 50.038836988000043 ], [ -120.64163451499995, 50.038921219000038 ], [ -120.641607497999971, 50.039150639000042 ], [ -120.641359938, 50.04125276600012 ], [ -120.64208985399992, 50.04128841200005 ], [ -120.641707646999961, 50.044533913000109 ], [ -120.64166758199994, 50.044874091000068 ], [ -120.636098981999965, 50.044602026000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999058995704941", "sL_AssetLoss": "303.9306", "sL_BldgLoss": "303.6446", "sL_StrLoss": "301.0626", "sL_NStrLoss": "2.582", "sL_ContLoss": "0.286", "geom_point": "0101000020E61000007ED924DC37275EC0785CF9D195E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.610225379999932, 49.815142058000042 ], [ -120.61576594, 49.815415519000048 ], [ -120.615343689999975, 49.819002201000075 ], [ -120.609802698999928, 49.818728719000063 ], [ -120.610225379999932, 49.815142058000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019189", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999076188866307", "sL_AssetLoss": "508.762", "sL_BldgLoss": "508.292", "sL_StrLoss": "505", "sL_NStrLoss": "3.292", "sL_ContLoss": "0.47", "geom_point": "0101000020E6100000B2B52173A3295EC0268EFAF386014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.650405323999976, 50.01027206400002 ], [ -120.650458775999979, 50.009176267000043 ], [ -120.65171376499994, 50.009201685000058 ], [ -120.651700012999981, 50.009483767000091 ], [ -120.65165859899993, 50.010333205000052 ], [ -120.653561910999926, 50.010426031000108 ], [ -120.653140826999973, 50.014011903000018 ], [ -120.647575926999963, 50.013740408000068 ], [ -120.647720511999935, 50.012510493000065 ], [ -120.647997445999948, 50.010154556000067 ], [ -120.650405323999976, 50.01027206400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.997377010318556", "sL_AssetLoss": "455.587", "sL_BldgLoss": "454.392", "sL_StrLoss": "441.362", "sL_NStrLoss": "13.03", "sL_ContLoss": "1.195", "geom_point": "0101000020E6100000AC6CE5464D295EC067516DAACD044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.642738973999926, 50.038792347000062 ], [ -120.642749322, 50.038704447000057 ], [ -120.64273226, 50.038704101000057 ], [ -120.642771880999973, 50.037895327000115 ], [ -120.642844409999981, 50.037896800000048 ], [ -120.642907798999957, 50.037358370000078 ], [ -120.641124007000016, 50.037322109000122 ], [ -120.64116365299995, 50.036513336000084 ], [ -120.641582217999954, 50.036521847000124 ], [ -120.641595429999924, 50.036252255000086 ], [ -120.642013991999988, 50.036260765000101 ], [ -120.642027202999927, 50.035991173000092 ], [ -120.642445762999927, 50.035999682000096 ], [ -120.642458969999922, 50.035730090000087 ], [ -120.643714645999921, 50.035755603000055 ], [ -120.643709131999955, 50.035868194000024 ], [ -120.644963062999921, 50.035929406000093 ], [ -120.644996706999933, 50.035241920000047 ], [ -120.64667092699996, 50.035275898000044 ], [ -120.646657741999917, 50.035545491000086 ], [ -120.647076299999981, 50.035553982000074 ], [ -120.647063119, 50.035823575000038 ], [ -120.647481677999949, 50.035832064000033 ], [ -120.647470935999962, 50.036051791000034 ], [ -120.648654374999964, 50.036109522000054 ], [ -120.648347009999924, 50.038723072 ], [ -120.648232667999949, 50.039695251000083 ], [ -120.642664660999955, 50.03942351700011 ], [ -120.642738973999926, 50.038792347000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999379242323624", "sL_AssetLoss": "147.7227", "sL_BldgLoss": "147.631", "sL_StrLoss": "147", "sL_NStrLoss": "0.631", "sL_ContLoss": "0.0917", "geom_point": "0101000020E61000009B6880A0163B5EC04AB6BA9C12FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.922196916999965, 49.975801501000078 ], [ -120.925772087999974, 49.975967117000053 ], [ -120.925728523999936, 49.976018833000055 ], [ -120.924529224999944, 49.977149509000121 ], [ -120.922893439999925, 49.978533983000048 ], [ -120.92251670499995, 49.978967233000091 ], [ -120.92223539299999, 49.979408846000034 ], [ -120.921797255999962, 49.979388544000123 ], [ -120.922196916999965, 49.975801501000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999735082970428", "sL_AssetLoss": "365.7749", "sL_BldgLoss": "365.678", "sL_StrLoss": "365", "sL_NStrLoss": "0.678", "sL_ContLoss": "0.0969", "geom_point": "0101000020E61000000F636FB590335EC02C2F967541064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.806175788999951, 50.047092007000053 ], [ -120.808696977999958, 50.047211291000089 ], [ -120.808287760999988, 50.050797572000128 ], [ -120.806911226999944, 50.050732452000048 ], [ -120.802717456999957, 50.050533949000105 ], [ -120.803108749999978, 50.047108445000042 ], [ -120.803127110999952, 50.046947688000017 ], [ -120.803315531999985, 50.046956609000041 ], [ -120.806175788999951, 50.047092007000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998828759618654", "sL_AssetLoss": "555.821", "sL_BldgLoss": "555.17", "sL_StrLoss": "552", "sL_NStrLoss": "3.17", "sL_ContLoss": "0.651", "geom_point": "0101000020E6100000CB424318E2365EC0F97F7AD830E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.855623978999958, 49.812096614000076 ], [ -120.860522174999957, 49.812327349000014 ], [ -120.860369740999957, 49.813684221000081 ], [ -120.86011911199995, 49.815914969000033 ], [ -120.854577066999951, 49.815653890000092 ], [ -120.854823166999964, 49.813465795000099 ], [ -120.85498056099999, 49.812066289000107 ], [ -120.855623978999958, 49.812096614000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.999529982722156", "sL_AssetLoss": "440.6221", "sL_BldgLoss": "440.415", "sL_StrLoss": "439", "sL_NStrLoss": "1.415", "sL_ContLoss": "0.2071", "geom_point": "0101000020E610000034A020A9EC295EC005B4194CE8054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.652495932999955, 50.04422314900004 ], [ -120.658064584999934, 50.04449438400011 ], [ -120.657643539999981, 50.048080109000118 ], [ -120.652074452999955, 50.047808854000024 ], [ -120.652495932999955, 50.04422314900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998331678658792", "sL_AssetLoss": "195.406", "sL_BldgLoss": "195.08", "sL_StrLoss": "194", "sL_NStrLoss": "1.08", "sL_ContLoss": "0.326", "geom_point": "0101000020E6100000D429F298FF3A5EC07A0F9F8DBFF94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.920113079999979, 49.952034159000064 ], [ -120.920395368999962, 49.949499848000109 ], [ -120.920818275999977, 49.949665546000084 ], [ -120.921651384999933, 49.949992015000063 ], [ -120.922391514, 49.950332800000048 ], [ -120.923276789999946, 49.95084979800005 ], [ -120.923670787999967, 49.951225897000022 ], [ -120.924092487999971, 49.951741205000069 ], [ -120.924293489999982, 49.95219488700009 ], [ -120.924305429, 49.9522285400001 ], [ -120.920113079999979, 49.952034159000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "0.998733605689165", "sL_AssetLoss": "2056.2316", "sL_BldgLoss": "2053.6276", "sL_StrLoss": "2036.0726", "sL_NStrLoss": "17.555", "sL_ContLoss": "2.604", "geom_point": "0101000020E610000036D67225CA375EC0BB6802249EE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.872948798999957, 49.822347574000041 ], [ -120.872992742999926, 49.821955539000051 ], [ -120.872771918999959, 49.821945170000028 ], [ -120.872789681000015, 49.821786710000019 ], [ -120.87214540899997, 49.821756453000049 ], [ -120.872205894999979, 49.821216918000147 ], [ -120.87185093399998, 49.821200246000039 ], [ -120.871868477999911, 49.821043759000077 ], [ -120.871429429999964, 49.821023135000083 ], [ -120.871448700999935, 49.82085126700008 ], [ -120.870934724999927, 49.820827122000061 ], [ -120.871081852, 49.819514993000055 ], [ -120.870341491999937, 49.819480209000098 ], [ -120.870379566999986, 49.819140671000035 ], [ -120.869339179999926, 49.819091783000097 ], [ -120.869353054999934, 49.818968078000104 ], [ -120.868454758, 49.818925859000025 ], [ -120.868475861, 49.818737748000054 ], [ -120.867980152999934, 49.81871444700004 ], [ -120.867998606999947, 49.818549976000043 ], [ -120.867553151, 49.818529035000012 ], [ -120.867609588, 49.818026028000091 ], [ -120.86642234599999, 49.817970207000016 ], [ -120.86642769099997, 49.817922584000058 ], [ -120.865966433999986, 49.817900894000054 ], [ -120.865998091999984, 49.81761882100006 ], [ -120.863249362999923, 49.817489520000031 ], [ -120.863259887999945, 49.817395795000046 ], [ -120.862573646999948, 49.817363503000102 ], [ -120.862894455999978, 49.814506776000094 ], [ -120.862976529999955, 49.813775881000055 ], [ -120.863739020999944, 49.813811761000068 ], [ -120.863807627, 49.813200699000049 ], [ -120.869349425999971, 49.813461311000019 ], [ -120.869285036999941, 49.81403545600007 ], [ -120.871744435999943, 49.814151022000047 ], [ -120.871752443999952, 49.814079589000102 ], [ -120.872005727, 49.814091487000049 ], [ -120.872042548999971, 49.813762994000065 ], [ -120.877584464000037, 49.814023189000061 ], [ -120.877325804999913, 49.816333164000092 ], [ -120.877661012999923, 49.816348892000072 ], [ -120.877610993999951, 49.816795589 ], [ -120.878000931999935, 49.816813885000066 ], [ -120.877859343999916, 49.818078391000014 ], [ -120.878138408999916, 49.818091483000032 ], [ -120.878082821999939, 49.818587941000047 ], [ -120.878716521999962, 49.818617670000059 ], [ -120.878672630999972, 49.819009708000088 ], [ -120.87889344199999, 49.819020066000093 ], [ -120.878630415999922, 49.821369363000052 ], [ -120.878491758999957, 49.822607720000093 ], [ -120.872948798999957, 49.822347574000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999387464762758", "sL_AssetLoss": "303.656", "sL_BldgLoss": "303.47", "sL_StrLoss": "302", "sL_NStrLoss": "1.47", "sL_ContLoss": "0.186", "geom_point": "0101000020E6100000B0D726DBE1385EC0B341050BD0004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.888604450999964, 50.003739283000087 ], [ -120.893696312999936, 50.00397653400011 ], [ -120.892850027999913, 50.004468391000067 ], [ -120.892738803999976, 50.004548275000062 ], [ -120.892425673999952, 50.004773127000085 ], [ -120.892053801999978, 50.005120855000065 ], [ -120.891953670999968, 50.005249305000113 ], [ -120.89151470099992, 50.005812340000034 ], [ -120.890922782999937, 50.006388687000047 ], [ -120.890835473999957, 50.006458963000114 ], [ -120.890521537999945, 50.006711630000119 ], [ -120.889591280999966, 50.007336197000079 ], [ -120.88909930200002, 50.007619729000076 ], [ -120.888613506999931, 50.007835956000051 ], [ -120.888239431999978, 50.007977088000139 ], [ -120.887550216999983, 50.008237085000147 ], [ -120.887286257999975, 50.008372880000067 ], [ -120.887159829999973, 50.008437914000076 ], [ -120.887020238999966, 50.00853505900011 ], [ -120.887012828999929, 50.008542946000055 ], [ -120.886777170999963, 50.0087941560001 ], [ -120.885906603999942, 50.0100073770001 ], [ -120.885735172999929, 50.010188203000048 ], [ -120.885727073999988, 50.010196750000034 ], [ -120.885116607, 50.010168279000048 ], [ -120.885519419999966, 50.006581518000104 ], [ -120.88827107, 50.006709828000069 ], [ -120.888604450999964, 50.003739283000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999136181924105", "sL_AssetLoss": "497.79", "sL_BldgLoss": "497.36", "sL_StrLoss": "494", "sL_NStrLoss": "3.36", "sL_ContLoss": "0.43", "geom_point": "0101000020E6100000BFB42C88D6355EC05A924D03D0F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.83926719099999, 49.910500681000066 ], [ -120.844820644999942, 49.910762502000068 ], [ -120.84471386499996, 49.911707924000048 ], [ -120.844415480999885, 49.914349578000042 ], [ -120.843859062999954, 49.914323358000033 ], [ -120.843837966999985, 49.914510090000114 ], [ -120.843194921999952, 49.914479785000019 ], [ -120.843170547999989, 49.914695506000136 ], [ -120.83761662799999, 49.914433602000059 ], [ -120.837885679999914, 49.912054779000137 ], [ -120.838022322999933, 49.910846552000109 ], [ -120.838665313999954, 49.910876887000029 ], [ -120.838689706999929, 49.910661167000086 ], [ -120.839246078000016, 49.910687413000112 ], [ -120.83926719099999, 49.910500681000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99931795437306", "sL_AssetLoss": "156.881", "sL_BldgLoss": "156.774", "sL_StrLoss": "156", "sL_NStrLoss": "0.774", "sL_ContLoss": "0.107", "geom_point": "0101000020E610000052A1F464822B5EC01DC9486ADF024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.679537195999899, 50.022714947000118 ], [ -120.679550187999922, 50.022445349000101 ], [ -120.678294829999942, 50.022420227000048 ], [ -120.678314610999948, 50.022010006000137 ], [ -120.678346832, 50.021341832000104 ], [ -120.679602162, 50.021366952000086 ], [ -120.679615155999926, 50.021097353000123 ], [ -120.680870479999953, 50.021122460000072 ], [ -120.680846850999956, 50.021613034000062 ], [ -120.680831524, 50.021931258000095 ], [ -120.681249973999968, 50.021939624000069 ], [ -120.681248364999973, 50.021973008 ], [ -120.681211019999921, 50.022748422000113 ], [ -120.68079256499999, 50.022740055000028 ], [ -120.680753601999967, 50.023548853000086 ], [ -120.680335137999975, 50.023540485000119 ], [ -120.680309159, 50.024079684000093 ], [ -120.679053756999977, 50.024054570000011 ], [ -120.679118740999954, 50.022706575 ], [ -120.679537195999899, 50.022714947000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999162386089554", "sL_AssetLoss": "495.455", "sL_BldgLoss": "495.04", "sL_StrLoss": "492", "sL_NStrLoss": "3.04", "sL_ContLoss": "0.415", "geom_point": "0101000020E610000048EA35240B2A5EC09DD5027BCCE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.658732108999928, 49.793587274000089 ], [ -120.65990852799996, 49.793644866000108 ], [ -120.659787189999946, 49.794684689000114 ], [ -120.659489932999975, 49.797231825000019 ], [ -120.653951310999901, 49.796960573000035 ], [ -120.654370337999964, 49.793373633000066 ], [ -120.658732108999928, 49.793587274000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.997485331098072", "sL_AssetLoss": "501.06", "sL_BldgLoss": "499.8", "sL_StrLoss": "489", "sL_NStrLoss": "10.8", "sL_ContLoss": "1.26", "geom_point": "0101000020E6100000A745D84BAE405EC0FBE93F6BFEDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.00969382699995, 49.753426347000072 ], [ -121.009720287999983, 49.75318340200004 ], [ -121.00869620899999, 49.753136520000069 ], [ -121.009087104999935, 49.749548046000037 ], [ -121.009551168999977, 49.749569292000061 ], [ -121.00955204399996, 49.749547934000141 ], [ -121.009956639999956, 49.749554887000066 ], [ -121.009967171999975, 49.749458166000082 ], [ -121.009972191999935, 49.749458397000069 ], [ -121.010089634999957, 49.746588711000072 ], [ -121.010921967999948, 49.746603010000086 ], [ -121.01095505899994, 49.745793998000103 ], [ -121.01138122299993, 49.745801316000033 ], [ -121.012320477999978, 49.745817441000078 ], [ -121.012289868999929, 49.746103449 ], [ -121.012176351999983, 49.747164267000102 ], [ -121.012148419999903, 49.747163788000123 ], [ -121.012131121999985, 49.747586923000021 ], [ -121.012054260999946, 49.748305138000084 ], [ -121.011712744999954, 49.751608285000017 ], [ -121.011468761999964, 49.752623131000036 ], [ -121.011157010999966, 49.753493314000131 ], [ -121.00969382699995, 49.753426347000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.960302091402014", "sL_AssetLoss": "0.5164", "sL_BldgLoss": "0.4959", "sL_StrLoss": "0.0199", "sL_NStrLoss": "0.476", "sL_ContLoss": "0.0205", "geom_point": "0101000020E61000007EA3E38BB2395EC0A6A4C14C5FFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.90254904399994, 49.99347518400004 ], [ -120.905017079999979, 49.993589922000055 ], [ -120.90471126199999, 49.994053132000047 ], [ -120.904535868999957, 49.994271219000019 ], [ -120.904280656999987, 49.994502741000076 ], [ -120.901803960999985, 49.996130844000078 ], [ -120.900966076999964, 49.996620995000072 ], [ -120.900269185999889, 49.996980961000133 ], [ -120.899197489999935, 49.997534543000093 ], [ -120.8995952399999, 49.993982016000139 ], [ -120.902477334999972, 49.994116075000157 ], [ -120.90254904399994, 49.99347518400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998752855121001", "sL_AssetLoss": "570.904", "sL_BldgLoss": "570.192", "sL_StrLoss": "565", "sL_NStrLoss": "5.192", "sL_ContLoss": "0.712", "geom_point": "0101000020E61000002FB7621CAF305EC08B8C2F56ABF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.762383099, 49.925395936000086 ], [ -120.762399803999969, 49.925035236000085 ], [ -120.763652705, 49.925059413000064 ], [ -120.763648377000024, 49.925152924 ], [ -120.76363435699993, 49.92545581500012 ], [ -120.764318029, 49.925488525000063 ], [ -120.763906418999937, 49.929075229000027 ], [ -120.762529829999934, 49.929009361000062 ], [ -120.762524559999989, 49.929055261000045 ], [ -120.756969358999967, 49.928789277000064 ], [ -120.757256088999938, 49.926294131000084 ], [ -120.75738151099992, 49.925202597000116 ], [ -120.758757980999974, 49.925268530000082 ], [ -120.758763252999984, 49.925222630000079 ], [ -120.762383099, 49.925395936000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13395584", "BldgCostT": "9238334", "sL_LossRatio": "0.999570953182114", "sL_AssetLoss": "2583.8672", "sL_BldgLoss": "2582.7586", "sL_StrLoss": "2576.0236", "sL_NStrLoss": "6.735", "sL_ContLoss": "1.1086", "geom_point": "0101000020E61000006A4A3EB833315EC010B97427330B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.76332469299993, 50.09988797400009 ], [ -120.763350646999967, 50.099349452000048 ], [ -120.763366096, 50.09902890800003 ], [ -120.763220349999969, 50.098621655000095 ], [ -120.763200722999926, 50.09856670900006 ], [ -120.76299561699993, 50.098255003000062 ], [ -120.763168304999979, 50.098191110000087 ], [ -120.76339991, 50.097945207000073 ], [ -120.763433531999937, 50.09780200300002 ], [ -120.763419052999922, 50.095637441000058 ], [ -120.763416022999962, 50.095190527000064 ], [ -120.763511551999954, 50.093227195000111 ], [ -120.763544258999914, 50.091817645000027 ], [ -120.763525594999919, 50.090780106000068 ], [ -120.763559871999945, 50.089611311000048 ], [ -120.764266771999957, 50.089645004000076 ], [ -120.764405896999918, 50.088437186000114 ], [ -120.764813352999965, 50.088456605000069 ], [ -120.765069757999953, 50.086230287000035 ], [ -120.764873634999958, 50.086220940000075 ], [ -120.764940855999939, 50.085637264000056 ], [ -120.762073380999965, 50.085500566000057 ], [ -120.762382535999947, 50.082817422000133 ], [ -120.762486548999973, 50.081914624000049 ], [ -120.764504277999961, 50.082010820000086 ], [ -120.764731459999965, 50.080038072000043 ], [ -120.770305150999917, 50.080303608000087 ], [ -120.770263876999962, 50.080662416000024 ], [ -120.77038963199999, 50.080668404000022 ], [ -120.770584672000027, 50.078972806000131 ], [ -120.773531047999953, 50.079113056000068 ], [ -120.773744537000013, 50.077255875000048 ], [ -120.779317939999956, 50.077520956000122 ], [ -120.779018045999962, 50.080132525000117 ], [ -120.776632643999946, 50.080532483000056 ], [ -120.776255679999963, 50.080595667000061 ], [ -120.77479230099999, 50.080841008000085 ], [ -120.774521072999974, 50.080889112000108 ], [ -120.77338210899994, 50.081091187000027 ], [ -120.773340010999959, 50.081100604000028 ], [ -120.77263429599995, 50.081258516000055 ], [ -120.772362748999967, 50.081344802000061 ], [ -120.771637054999985, 50.081575405000059 ], [ -120.772020310999977, 50.081979498000038 ], [ -120.77215430699998, 50.08271010100006 ], [ -120.772331790999985, 50.083118891 ], [ -120.772755104999931, 50.083621598000015 ], [ -120.772894476999909, 50.084277122000096 ], [ -120.772916517999974, 50.084380707000037 ], [ -120.773148219999953, 50.084825104000082 ], [ -120.773463200999956, 50.085226702000057 ], [ -120.77388398699999, 50.085514409000091 ], [ -120.773836294999981, 50.086556907000087 ], [ -120.77419758, 50.086895903000048 ], [ -120.774624490999912, 50.087039711000024 ], [ -120.774784840999985, 50.087142425000117 ], [ -120.774619978999979, 50.0885765640001 ], [ -120.770478629999928, 50.088379495000012 ], [ -120.770423235999914, 50.088860964000041 ], [ -120.770831796999957, 50.088880413000069 ], [ -120.770746737999914, 50.08961975900008 ], [ -120.77293617499997, 50.089723957000047 ], [ -120.772581003999932, 50.092812194000068 ], [ -120.773048612999915, 50.092821168000093 ], [ -120.773143816999948, 50.093047007000081 ], [ -120.772425505999976, 50.093149598000117 ], [ -120.772184638999931, 50.093365927000058 ], [ -120.772187977999977, 50.093293924000101 ], [ -120.77162701499995, 50.093267230000095 ], [ -120.77158842299994, 50.093602698000012 ], [ -120.771914044999974, 50.093608950000082 ], [ -120.771434413999941, 50.094039705000057 ], [ -120.77056155799994, 50.094509360000039 ], [ -120.770383724999959, 50.094428897000064 ], [ -120.768852513999903, 50.093972864000079 ], [ -120.767779216999926, 50.093678458000063 ], [ -120.767545053999953, 50.094056797000057 ], [ -120.767477898, 50.094165277000023 ], [ -120.767224784999939, 50.094574197000078 ], [ -120.766827918, 50.095062073000058 ], [ -120.766723590000012, 50.095190298000055 ], [ -120.766509878999926, 50.095374218000146 ], [ -120.76901320799999, 50.096086244000098 ], [ -120.768648211999945, 50.096828289000044 ], [ -120.768443080999944, 50.097030502000017 ], [ -120.768344508999945, 50.097029154000083 ], [ -120.768218217999944, 50.097229184000149 ], [ -120.768033497999951, 50.097521690000093 ], [ -120.767508697, 50.098352804000072 ], [ -120.767178849999965, 50.098840659000054 ], [ -120.76696040799996, 50.099163705000073 ], [ -120.766930353999925, 50.099208111000088 ], [ -120.76679420399995, 50.09940951100014 ], [ -120.767454684999962, 50.099422049000033 ], [ -120.767098297999908, 50.100068140000133 ], [ -120.767111308, 50.100026678000049 ], [ -120.767107865999961, 50.100000403000124 ], [ -120.766456159999947, 50.099976865000045 ], [ -120.765496464999941, 50.099942182000085 ], [ -120.763560204999962, 50.099903463000096 ], [ -120.76332469299993, 50.09988797400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.99935920845018", "sL_AssetLoss": "435.399", "sL_BldgLoss": "435.12", "sL_StrLoss": "433", "sL_NStrLoss": "2.12", "sL_ContLoss": "0.279", "geom_point": "0101000020E6100000EA49B271F1295EC02DB9E57EE2E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.653041550999887, 49.758888535000033 ], [ -120.653108033999956, 49.75831905200009 ], [ -120.651729043, 49.758251401000081 ], [ -120.652147889999952, 49.75466427500006 ], [ -120.657681395999987, 49.754935637000045 ], [ -120.65761497299998, 49.755505125000063 ], [ -120.65899389099999, 49.75557270200003 ], [ -120.658575570999986, 49.759159849000092 ], [ -120.653041550999887, 49.758888535000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "0.999880516324222", "sL_AssetLoss": "904.7261", "sL_BldgLoss": "904.618", "sL_StrLoss": "904", "sL_NStrLoss": "0.618", "sL_ContLoss": "0.1081", "geom_point": "0101000020E6100000A6D29154CD275EC048940FA47F024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.623008699999943, 50.024914314000078 ], [ -120.623429040999952, 50.02135582000011 ], [ -120.618941200999956, 50.021135711000106 ], [ -120.619160022999949, 50.019284528000092 ], [ -120.617479874999958, 50.019202076000042 ], [ -120.617481662999921, 50.019186946000055 ], [ -120.61655684599998, 50.019141550000015 ], [ -120.616586674999922, 50.018889310000098 ], [ -120.616037244999944, 50.01886233700008 ], [ -120.616047462999958, 50.018775931000079 ], [ -120.615002217, 50.018724609000074 ], [ -120.61542634199999, 50.015138907000114 ], [ -120.615894051999959, 50.015161873000046 ], [ -120.615929335999937, 50.01486351700003 ], [ -120.617184209999948, 50.01492512500004 ], [ -120.617187079999951, 50.014900847000064 ], [ -120.619840237999966, 50.01503105600009 ], [ -120.622751940999962, 50.015173881000081 ], [ -120.622728698999964, 50.015370664000059 ], [ -120.623595326999947, 50.015413159000033 ], [ -120.623320056999972, 50.017743992000135 ], [ -120.624930235999969, 50.017822927000033 ], [ -120.624613789999955, 50.020502906000075 ], [ -120.624510045999926, 50.021381444000092 ], [ -120.62500448399993, 50.021405678000058 ], [ -120.628997935999948, 50.021601325000098 ], [ -120.628574817999947, 50.025187049000088 ], [ -120.625517180999935, 50.025037263000037 ], [ -120.623008699999943, 50.024914314000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "0.99917886387272", "sL_AssetLoss": "479.823", "sL_BldgLoss": "479.429", "sL_StrLoss": "477", "sL_NStrLoss": "2.429", "sL_ContLoss": "0.394", "geom_point": "0101000020E61000003CBBBE07962F5EC00562C02F81014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.742957612999987, 50.009924386000073 ], [ -120.746521609999959, 50.010095199000084 ], [ -120.746107836999954, 50.01368142600009 ], [ -120.740750202999934, 50.013424605000125 ], [ -120.74054242699998, 50.0134146400001 ], [ -120.740956634999961, 50.00982843300006 ], [ -120.742957612999987, 50.009924386000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.99948019209892", "sL_AssetLoss": "434.776", "sL_BldgLoss": "434.55", "sL_StrLoss": "433", "sL_NStrLoss": "1.55", "sL_ContLoss": "0.226", "geom_point": "0101000020E6100000338A27B3E82C5EC07380A2AA70E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.703734634999989, 49.806179152 ], [ -120.705212409999987, 49.806250862000056 ], [ -120.704797242999959, 49.809837930000064 ], [ -120.703789166999954, 49.809789016000089 ], [ -120.703733521999965, 49.810269654000081 ], [ -120.702449193999954, 49.810207322000075 ], [ -120.698193064999927, 49.810000647000074 ], [ -120.698608748999959, 49.806413604000106 ], [ -120.699616745999947, 49.806462567000054 ], [ -120.699672427999943, 49.805981928000072 ], [ -120.703734634999989, 49.806179152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99973880201502", "sL_AssetLoss": "355.6689", "sL_BldgLoss": "355.576", "sL_StrLoss": "355", "sL_NStrLoss": "0.576", "sL_ContLoss": "0.0929", "geom_point": "0101000020E6100000816DCC0466335EC0B3271EA37E074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.802366664999951, 50.056714552000088 ], [ -120.80609211, 50.05689088200009 ], [ -120.805682599999926, 50.060477107000082 ], [ -120.804301353999904, 50.060411747000074 ], [ -120.800111127999941, 50.060213356000091 ], [ -120.800521072999985, 50.05662715100005 ], [ -120.802366664999951, 50.056714552000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999516440680889", "sL_AssetLoss": "446.4809", "sL_BldgLoss": "446.265", "sL_StrLoss": "445", "sL_NStrLoss": "1.265", "sL_ContLoss": "0.2159", "geom_point": "0101000020E6100000B925E6176D2D5EC0D72F7D54E8F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.707214123999961, 49.927037626000079 ], [ -120.712768820999884, 49.927306131000108 ], [ -120.712353147999977, 49.930892632000109 ], [ -120.706798018999962, 49.930624106000025 ], [ -120.707214123999961, 49.927037626000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.998993829809272", "sL_AssetLoss": "540.664", "sL_BldgLoss": "540.12", "sL_StrLoss": "535", "sL_NStrLoss": "5.12", "sL_ContLoss": "0.544", "geom_point": "0101000020E6100000795E85EF58375EC01A96D44313F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.861751468999984, 49.916526854000097 ], [ -120.861795834999967, 49.916132773000093 ], [ -120.861761395999906, 49.916131155000073 ], [ -120.862009610999962, 49.913926311000068 ], [ -120.862165211999979, 49.912544024000091 ], [ -120.867719043999926, 49.912804685000012 ], [ -120.867674731999955, 49.913198770000093 ], [ -120.867709169999927, 49.91320038500006 ], [ -120.86767249599994, 49.913526545000117 ], [ -120.868244192, 49.913537060000074 ], [ -120.868216443, 49.914166246000022 ], [ -120.868208516999928, 49.914345975000089 ], [ -120.867581647999884, 49.914334445000115 ], [ -120.867305782999964, 49.916787534000051 ], [ -120.861751468999984, 49.916526854000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999661560230893", "sL_AssetLoss": "509.3964", "sL_BldgLoss": "509.224", "sL_StrLoss": "508", "sL_NStrLoss": "1.224", "sL_ContLoss": "0.1724", "geom_point": "0101000020E6100000137B0D66382C5EC0072D3DFD14124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.688151569999974, 50.139795803000027 ], [ -120.688154508999972, 50.139734844000031 ], [ -120.687735031999964, 50.1397264880001 ], [ -120.687774035999965, 50.138917702000136 ], [ -120.68819350699999, 50.13892605800006 ], [ -120.688206505999972, 50.138656463000061 ], [ -120.689045443999959, 50.138673169000057 ], [ -120.689058436999957, 50.138403573000083 ], [ -120.690736304999959, 50.138436966000015 ], [ -120.690723320999936, 50.13870656100007 ], [ -120.691142792, 50.138714905000022 ], [ -120.691113913999985, 50.139314587000101 ], [ -120.694011328, 50.139454414000042 ], [ -120.693968846999951, 50.139817864000094 ], [ -120.695099014999968, 50.139872385000103 ], [ -120.694680005999928, 50.143457799000075 ], [ -120.693679521, 50.143409535000053 ], [ -120.693668966999894, 50.143499823000127 ], [ -120.692651555999959, 50.143450734000034 ], [ -120.692632029000023, 50.143617746000082 ], [ -120.688923741999986, 50.143438744000079 ], [ -120.687051034999939, 50.143348298000078 ], [ -120.687203563999958, 50.142045078000088 ], [ -120.687286412999967, 50.141337165000053 ], [ -120.687470643999973, 50.139762912000066 ], [ -120.688151569999974, 50.139795803000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "0.998863589983933", "sL_AssetLoss": "360.1693", "sL_BldgLoss": "359.76", "sL_StrLoss": "355.11", "sL_NStrLoss": "4.65", "sL_ContLoss": "0.4093", "geom_point": "0101000020E6100000EB662DA2F92B5EC0757C0FF255EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.689141294999942, 49.8290430280001 ], [ -120.690091141, 49.829089225000075 ], [ -120.689674584, 49.83267612300007 ], [ -120.684131499999964, 49.832406413000037 ], [ -120.684256261999963, 49.831333283000042 ], [ -120.684548486999986, 49.828819534000054 ], [ -120.689141294999942, 49.8290430280001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999507765642388", "sL_AssetLoss": "577.1641", "sL_BldgLoss": "576.88", "sL_StrLoss": "575", "sL_NStrLoss": "1.88", "sL_ContLoss": "0.2841", "geom_point": "0101000020E6100000245E22073A285EC06938024403044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.625930806, 50.034050272000059 ], [ -120.626038138999945, 50.033141377000035 ], [ -120.625541852999916, 50.033117065000084 ], [ -120.625676745999925, 50.031974835000035 ], [ -120.625181216999934, 50.03195055700008 ], [ -120.625604664999969, 50.028364879 ], [ -120.626246108999965, 50.028396306000054 ], [ -120.62678729699999, 50.028422818000053 ], [ -120.629525854999926, 50.02855693500004 ], [ -120.631171219999914, 50.028637481000089 ], [ -120.631036474999974, 50.029779723000082 ], [ -120.631531982999945, 50.029803974000053 ], [ -120.631424768999963, 50.030712879000092 ], [ -120.631921029999901, 50.030737166000037 ], [ -120.631498056999959, 50.034322856000117 ], [ -120.629386060999977, 50.034219482000069 ], [ -120.625930806, 50.034050272000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.999392792034113", "sL_AssetLoss": "422.2606", "sL_BldgLoss": "422.0042", "sL_StrLoss": "420.0342", "sL_NStrLoss": "1.97", "sL_ContLoss": "0.2564", "geom_point": "0101000020E6100000D725F444A13A5EC03D00F3DAB6FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.913480416999903, 49.960977083000067 ], [ -120.913627157999883, 49.959661713000038 ], [ -120.912617811999908, 49.959614839000054 ], [ -120.913018020999942, 49.956027733000056 ], [ -120.91846443899999, 49.956280559000056 ], [ -120.918577427999978, 49.956285801000078 ], [ -120.918567283, 49.956376840000082 ], [ -120.918461128, 49.957329408000106 ], [ -120.919553361999974, 49.957380077000025 ], [ -120.919153656999953, 49.960967199000031 ], [ -120.919070715999979, 49.960963352000142 ], [ -120.919021276, 49.961407001000097 ], [ -120.913621318999944, 49.961156391000081 ], [ -120.913461241999968, 49.961148958000088 ], [ -120.913480416999903, 49.960977083000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.998823940167956", "sL_AssetLoss": "544.19", "sL_BldgLoss": "543.55", "sL_StrLoss": "538", "sL_NStrLoss": "5.55", "sL_ContLoss": "0.64", "geom_point": "0101000020E61000009590BC31CC335EC05603DE13B5F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.806765396999964, 49.909850816000102 ], [ -120.812318583999911, 49.910114284000052 ], [ -120.811938822999963, 49.913455404000032 ], [ -120.811910876999931, 49.913701243000062 ], [ -120.81163902099992, 49.91368835100014 ], [ -120.806357256999902, 49.913437755000082 ], [ -120.806765396999964, 49.909850816000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.99600462554519", "sL_AssetLoss": "1087.007", "sL_BldgLoss": "1082.664", "sL_StrLoss": "1038.894", "sL_NStrLoss": "43.77", "sL_ContLoss": "4.343", "geom_point": "0101000020E61000009B249694FB2E5EC05F60562852024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.734789503999934, 50.01474874400003 ], [ -120.73911859699993, 50.014956511000072 ], [ -120.738704198999983, 50.018542686000117 ], [ -120.735440193999978, 50.018386052000032 ], [ -120.735120393999949, 50.021151464000134 ], [ -120.734836457999933, 50.021137834000093 ], [ -120.734789102999969, 50.021547270000028 ], [ -120.7292228, 50.021279914000083 ], [ -120.729637969999956, 50.017693788000059 ], [ -120.729921883999978, 50.017707431000069 ], [ -120.72996927799997, 50.01729799500005 ], [ -120.733233185999936, 50.017454791 ], [ -120.733471067, 50.015398348000119 ], [ -120.733553072999939, 50.014689372000099 ], [ -120.734789503999934, 50.01474874400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999475785579817", "sL_AssetLoss": "151.6555", "sL_BldgLoss": "151.576", "sL_StrLoss": "151", "sL_NStrLoss": "0.576", "sL_ContLoss": "0.0795", "geom_point": "0101000020E6100000F4343F820B245EC08188605EF8F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.561954413999899, 49.904192753000061 ], [ -120.564721685, 49.904330315000045 ], [ -120.564294610999937, 49.907916359000069 ], [ -120.561863284999959, 49.907795501000059 ], [ -120.56190381299993, 49.904786973000064 ], [ -120.561954413999899, 49.904192753000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999475873078413", "sL_AssetLoss": "137.5621", "sL_BldgLoss": "137.49", "sL_StrLoss": "137", "sL_NStrLoss": "0.49", "sL_ContLoss": "0.0721", "geom_point": "0101000020E6100000B69A1A0D052C5EC0CB50911AC5FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.68904876, 49.981616346000173 ], [ -120.691557375999977, 49.98166631200008 ], [ -120.691550443, 49.981811119000099 ], [ -120.691518649999963, 49.982475122000068 ], [ -120.69026432099993, 49.982450145000072 ], [ -120.690251405999945, 49.982719748000108 ], [ -120.689415181999934, 49.982703088000108 ], [ -120.689402261999945, 49.982972692000082 ], [ -120.688566033999933, 49.982956025000071 ], [ -120.688553108999955, 49.983225628000042 ], [ -120.686462531999965, 49.983183938000089 ], [ -120.686449596000017, 49.983453541000067 ], [ -120.683945039999983, 49.983403545000058 ], [ -120.683940896999928, 49.983403462000162 ], [ -120.68397975, 49.982594657000135 ], [ -120.685234075999972, 49.982619702000044 ], [ -120.6852470199999, 49.982350100000112 ], [ -120.687755666999948, 49.982400149000057 ], [ -120.687768595999941, 49.982130547000104 ], [ -120.688186701999896, 49.98213888300009 ], [ -120.688199627999936, 49.981869281000094 ], [ -120.689035837999896, 49.981885948000034 ], [ -120.68904876, 49.981616346000173 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999246079368465", "sL_AssetLoss": "614.123", "sL_BldgLoss": "613.66", "sL_StrLoss": "610", "sL_NStrLoss": "3.66", "sL_ContLoss": "0.463", "geom_point": "0101000020E6100000836DE5A1462A5EC0AC9A1879F6E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.65783823799994, 49.779533492000098 ], [ -120.65796251899999, 49.778468477000089 ], [ -120.663498930999978, 49.778739533000092 ], [ -120.663419482999956, 49.779421060000054 ], [ -120.664044057999888, 49.779451621000042 ], [ -120.66362591599993, 49.783038667000049 ], [ -120.662666006999956, 49.782991697000099 ], [ -120.662621292, 49.783375189000019 ], [ -120.661087802999987, 49.783300136000079 ], [ -120.657084323999953, 49.783104090000066 ], [ -120.657476000999964, 49.779748246000111 ], [ -120.657502979999933, 49.77951706900005 ], [ -120.65783823799994, 49.779533492000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999383879872187", "sL_AssetLoss": "275.4333", "sL_BldgLoss": "275.2636", "sL_StrLoss": "274.0146", "sL_NStrLoss": "1.249", "sL_ContLoss": "0.1697", "geom_point": "0101000020E61000009C17C4931F275EC099B99FD7C8FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.610455734999931, 49.980655345000109 ], [ -120.614431290999903, 49.980850831000048 ], [ -120.614007405999985, 49.984436695000113 ], [ -120.613779202000018, 49.98442547800007 ], [ -120.613734214999965, 49.984806001000052 ], [ -120.609210432999959, 49.98458353700002 ], [ -120.608173110999971, 49.984532499000061 ], [ -120.608597453999963, 49.980946659 ], [ -120.608825638999988, 49.980957887000059 ], [ -120.608870663999937, 49.980577364000077 ], [ -120.610455734999931, 49.980655345000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "294292810", "BldgCostT": "191053189", "sL_LossRatio": "0.996219303219454", "sL_AssetLoss": "26688.202164", "sL_BldgLoss": "26587.302164", "sL_StrLoss": "26550.802164", "sL_NStrLoss": "36.5", "sL_ContLoss": "100.9", "geom_point": "0101000020E6100000F50C3397C8175EC041FF0417AB514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.3722834, 50.637914767000048 ], [ -120.371435809999966, 50.637895637000042 ], [ -120.371420766999961, 50.638165145000045 ], [ -120.372268361999929, 50.638184274000132 ], [ -120.3722834, 50.637914767000048 ], [ -120.373130992999961, 50.637933889000053 ], [ -120.373146025000011, 50.6376643810001 ], [ -120.374417405999949, 50.637693055000049 ], [ -120.37443243099996, 50.637423545000033 ], [ -120.375280016999938, 50.637442653000107 ], [ -120.375295035999955, 50.637173145000126 ], [ -120.376142616999957, 50.63719224600009 ], [ -120.376157631999916, 50.636922737000077 ], [ -120.37742899599999, 50.636951377000052 ], [ -120.377413987999944, 50.637220886000136 ], [ -120.378079641999932, 50.637235876000048 ], [ -120.378913136, 50.639654791000055 ], [ -120.37911049199991, 50.640227397000096 ], [ -120.378520339999909, 50.640214113000056 ], [ -120.378512096999927, 50.640362177000057 ], [ -120.378464166999962, 50.640372802000037 ], [ -120.378014183999952, 50.640472564000056 ], [ -120.377657694999968, 50.640464537000099 ], [ -120.377652785999913, 50.640552685000046 ], [ -120.376923555999952, 50.640714349000092 ], [ -120.376036872, 50.641006584000088 ], [ -120.375929688999975, 50.641013634000089 ], [ -120.37593237899992, 50.640965365000092 ], [ -120.375508555999957, 50.640955816000037 ], [ -120.375503771999931, 50.641041643000051 ], [ -120.374163192999987, 50.641129793000069 ], [ -120.374022094999958, 50.641236215000049 ], [ -120.373850091999941, 50.641250010000107 ], [ -120.373499114999959, 50.641230504000134 ], [ -120.373082500999942, 50.641146310000089 ], [ -120.37203130199994, 50.640770605000057 ], [ -120.371361509999986, 50.640758305000105 ], [ -120.370871712999957, 50.640760503000067 ], [ -120.370845254999949, 50.640760334000042 ], [ -120.370243462999895, 50.640756684000053 ], [ -120.369984121999906, 50.640742670000122 ], [ -120.369704452999883, 50.640675349000077 ], [ -120.369503052999931, 50.640584043000082 ], [ -120.369702879999949, 50.640314833000062 ], [ -120.369766868999989, 50.640087322000078 ], [ -120.369612076999914, 50.639206311000081 ], [ -120.369627096999963, 50.639030381000069 ], [ -120.369893523999949, 50.638569875000073 ], [ -120.368035133999939, 50.638146884000051 ], [ -120.367114234999946, 50.637943466000053 ], [ -120.36647929599999, 50.637879783000123 ], [ -120.3658461899999, 50.637892773000097 ], [ -120.365473301999913, 50.637946862000021 ], [ -120.365332469999885, 50.637655850000044 ], [ -120.365149344000017, 50.637430317000103 ], [ -120.364919833999963, 50.637246544000043 ], [ -120.364839493999952, 50.637206393000092 ], [ -120.364596713999916, 50.637085106000015 ], [ -120.364370279999918, 50.637012346000091 ], [ -120.364437070999955, 50.636514669000086 ], [ -120.364547723999976, 50.636390510000055 ], [ -120.364818990999936, 50.636219520000054 ], [ -120.365628495999957, 50.636598506000063 ], [ -120.366062821999918, 50.636879992000026 ], [ -120.366565597999951, 50.636627906000051 ], [ -120.366864701999958, 50.636336586000077 ], [ -120.367230923999941, 50.636245305000088 ], [ -120.367470603999948, 50.636223096000052 ], [ -120.368379483999917, 50.636307892000069 ], [ -120.368680601999984, 50.636306005000087 ], [ -120.368642912999974, 50.636097797000062 ], [ -120.368452515999934, 50.635749290000049 ], [ -120.368292386999926, 50.63561140000013 ], [ -120.368066499999941, 50.635500782000086 ], [ -120.367531978, 50.635406189000037 ], [ -120.366357754999953, 50.635310675000071 ], [ -120.364764792999935, 50.63537417000002 ], [ -120.364242960999917, 50.635518054000109 ], [ -120.363826140999947, 50.63569609000006 ], [ -120.36356013599999, 50.635475395000114 ], [ -120.363385109999911, 50.635253814000052 ], [ -120.363235690999943, 50.635120992000054 ], [ -120.362987195999921, 50.634953403000083 ], [ -120.362756976999918, 50.634866664000128 ], [ -120.362716194999962, 50.634851292000072 ], [ -120.362011710999923, 50.634665109000061 ], [ -120.361939469999925, 50.634620335000101 ], [ -120.361809002999948, 50.63453948700004 ], [ -120.361658896999941, 50.634378665000121 ], [ -120.361494824999951, 50.634126159000111 ], [ -120.361917111999972, 50.634040321000036 ], [ -120.362045905999977, 50.634036160000086 ], [ -120.362363022999943, 50.634025956000102 ], [ -120.362747395, 50.634072484000043 ], [ -120.364226692999921, 50.634405185000062 ], [ -120.364595655999963, 50.634427491000096 ], [ -120.364990608999975, 50.63438981700007 ], [ -120.365337912999948, 50.634279436000085 ], [ -120.36567651499999, 50.634086681000056 ], [ -120.36590334, 50.633957536000047 ], [ -120.366857368999916, 50.634496104000085 ], [ -120.366955876999953, 50.634538596000056 ], [ -120.366939824, 50.634825742000082 ], [ -120.367757709999935, 50.634844233000059 ], [ -120.367802905999937, 50.634859855000109 ], [ -120.367840363999903, 50.634846102000139 ], [ -120.368211123, 50.63485448100004 ], [ -120.368204033, 50.634981366000062 ], [ -120.368196062999928, 50.635123988000089 ], [ -120.368681646999931, 50.635134962000087 ], [ -120.369467370999971, 50.635152715000046 ], [ -120.369452318999933, 50.635422222000031 ], [ -120.369876092999959, 50.635431794000084 ], [ -120.369858095999945, 50.635754031000069 ], [ -120.369845990999949, 50.635970808000131 ], [ -120.37011297699999, 50.635976839000122 ], [ -120.371117323999911, 50.635999517000101 ], [ -120.37110228099999, 50.636269025000104 ], [ -120.372373622999987, 50.636297719000069 ], [ -120.372358585999905, 50.636567227000086 ], [ -120.372782368999964, 50.636576789000088 ], [ -120.372737266999934, 50.637385313000024 ], [ -120.372313473999924, 50.637375750000047 ], [ -120.3722834, 50.637914767000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93102500", "BldgCostT": "62525000", "sL_LossRatio": "0.995713753621665", "sL_AssetLoss": "9122.200767", "sL_BldgLoss": "9083.100767", "sL_StrLoss": "9069.000767", "sL_NStrLoss": "14.1", "sL_ContLoss": "39.1", "geom_point": "0101000020E6100000C0FFDAEA47175EC0E0B39EEF61514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.360583268999946, 50.636072434000042 ], [ -120.360339924999934, 50.635716749 ], [ -120.360261849999944, 50.635468576000086 ], [ -120.36026233599992, 50.635410517000061 ], [ -120.360263532999909, 50.635263197000079 ], [ -120.360325975999956, 50.635052264000159 ], [ -120.360342391999922, 50.634996791000056 ], [ -120.360471109999935, 50.634763682000042 ], [ -120.360656701999929, 50.634551377000072 ], [ -120.360869707999967, 50.634391757000095 ], [ -120.361077398999953, 50.634286077000063 ], [ -120.361494824999951, 50.634126159000111 ], [ -120.361658896999941, 50.634378665000121 ], [ -120.361809002999948, 50.63453948700004 ], [ -120.361939469999925, 50.634620335000101 ], [ -120.362011710999923, 50.634665109000061 ], [ -120.362716194999962, 50.634851292000072 ], [ -120.362756976999918, 50.634866664000128 ], [ -120.362987195999921, 50.634953403000083 ], [ -120.363235690999943, 50.635120992000054 ], [ -120.363385109999911, 50.635253814000052 ], [ -120.36356013599999, 50.635475395000114 ], [ -120.363826140999947, 50.63569609000006 ], [ -120.364242960999917, 50.635518054000109 ], [ -120.364764792999935, 50.63537417000002 ], [ -120.366357754999953, 50.635310675000071 ], [ -120.367531978, 50.635406189000037 ], [ -120.368066499999941, 50.635500782000086 ], [ -120.368292386999926, 50.63561140000013 ], [ -120.368452515999934, 50.635749290000049 ], [ -120.368642912999974, 50.636097797000062 ], [ -120.368680601999984, 50.636306005000087 ], [ -120.368379483999917, 50.636307892000069 ], [ -120.367470603999948, 50.636223096000052 ], [ -120.367230923999941, 50.636245305000088 ], [ -120.366864701999958, 50.636336586000077 ], [ -120.366565597999951, 50.636627906000051 ], [ -120.366062821999918, 50.636879992000026 ], [ -120.365628495999957, 50.636598506000063 ], [ -120.364818990999936, 50.636219520000054 ], [ -120.364547723999976, 50.636390510000055 ], [ -120.364437070999955, 50.636514669000086 ], [ -120.364370279999918, 50.637012346000091 ], [ -120.364227166, 50.636976761000042 ], [ -120.364119870999957, 50.636950095 ], [ -120.363195969999978, 50.636849207000097 ], [ -120.362430870999944, 50.636760870000074 ], [ -120.361901792999916, 50.636702510000156 ], [ -120.361506106999954, 50.636610375000082 ], [ -120.36115048399995, 50.636470679000119 ], [ -120.36084812799993, 50.636302141000094 ], [ -120.360583268999946, 50.636072434000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277627750", "BldgCostT": "186505000", "sL_LossRatio": "0.997753337612214", "sL_AssetLoss": "32314.601604", "sL_BldgLoss": "32242.001604", "sL_StrLoss": "32215.801604", "sL_NStrLoss": "26.2", "sL_ContLoss": "72.6", "geom_point": "0101000020E610000069F7729FDC165EC049F5DF7B66514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.361840720999965, 50.638622501000057 ], [ -120.360075103000014, 50.638342902000019 ], [ -120.36006138499999, 50.638345747000074 ], [ -120.359910407999948, 50.638376892000032 ], [ -120.359357315999915, 50.638305669000033 ], [ -120.35904459299995, 50.63826540200008 ], [ -120.356003519999888, 50.63777297900004 ], [ -120.355837061, 50.637746035000156 ], [ -120.354761808999953, 50.637571885000092 ], [ -120.354574191999973, 50.637541515000088 ], [ -120.354409312999962, 50.637514805000102 ], [ -120.353753386000022, 50.637438198000048 ], [ -120.353232987999974, 50.637423497000078 ], [ -120.352997456999944, 50.63742654 ], [ -120.352600802000012, 50.637431651000092 ], [ -120.352496706999915, 50.637433009000105 ], [ -120.351860995, 50.637444012000046 ], [ -120.351596846999925, 50.637427071000076 ], [ -120.351316185999963, 50.637409096000091 ], [ -120.350706210999974, 50.63734030500013 ], [ -120.350415508999944, 50.637277580000081 ], [ -120.35010519199993, 50.637210612000061 ], [ -120.349847726999897, 50.637133404000025 ], [ -120.349719110999942, 50.637094835000092 ], [ -120.349623903999927, 50.637066300000143 ], [ -120.348833149999976, 50.636764344000056 ], [ -120.348821015999931, 50.636759679000072 ], [ -120.348435635, 50.636579761000057 ], [ -120.348321779999964, 50.636526650000135 ], [ -120.347936222000016, 50.636346673000084 ], [ -120.347843975999965, 50.636303615000053 ], [ -120.347665909999975, 50.636255125000083 ], [ -120.347603889999988, 50.636238237000065 ], [ -120.346952582999947, 50.63622674600002 ], [ -120.346731228, 50.636283094000142 ], [ -120.346915991999978, 50.636183429000091 ], [ -120.347086664999907, 50.636133562000076 ], [ -120.347163122, 50.636101407000098 ], [ -120.348649255999973, 50.635476230000044 ], [ -120.348647512999918, 50.635490074000082 ], [ -120.348657416999956, 50.63549029899999 ], [ -120.348642244999979, 50.635759801000077 ], [ -120.349489780999974, 50.635779096000114 ], [ -120.349504947, 50.635509593000116 ], [ -120.349928714999947, 50.635519239000061 ], [ -120.349943878999966, 50.63524973600002 ], [ -120.351215172999957, 50.635278660000054 ], [ -120.351169699999971, 50.636087171000099 ], [ -120.351593473, 50.636096809 ], [ -120.351578316999962, 50.636366313000096 ], [ -120.354544743999952, 50.636433742000115 ], [ -120.354559882999951, 50.636164238000021 ], [ -120.353712335999944, 50.63614498000009 ], [ -120.353727478999957, 50.63587547600013 ], [ -120.352879936999969, 50.635856213000061 ], [ -120.352895084999886, 50.63558670900003 ], [ -120.352471315999978, 50.635577075000107 ], [ -120.352486466999977, 50.635307572000052 ], [ -120.352062700999937, 50.635297936000043 ], [ -120.352077853999958, 50.635028432000148 ], [ -120.351654089999926, 50.6350187950001 ], [ -120.35170055199994, 50.634192510000048 ], [ -120.351722285999983, 50.63418336600003 ], [ -120.352658497999983, 50.633796908000043 ], [ -120.352898478999961, 50.633697849000058 ], [ -120.353848612999954, 50.633719444000072 ], [ -120.353856795999917, 50.633573794000036 ], [ -120.356844896999959, 50.633251920000099 ], [ -120.356830003999946, 50.633517309000112 ], [ -120.360220016999918, 50.633594210000084 ], [ -120.360204912999919, 50.633863715000089 ], [ -120.361052423999922, 50.633882925000137 ], [ -120.361067522999974, 50.633613419000035 ], [ -120.362338783999959, 50.633642222000049 ], [ -120.362323691999947, 50.633911728000037 ], [ -120.363594959999986, 50.633940517000049 ], [ -120.363610044999987, 50.633671011000075 ], [ -120.364881309999973, 50.633699787000033 ], [ -120.364904748999905, 50.63328083100005 ], [ -120.366577192999927, 50.633722736000074 ], [ -120.366576332999969, 50.633738132000069 ], [ -120.366640998999955, 50.633739594000083 ], [ -120.366995308999918, 50.633833209000024 ], [ -120.366955876999953, 50.634538596000056 ], [ -120.366857368999916, 50.634496104000085 ], [ -120.36590334, 50.633957536000047 ], [ -120.36567651499999, 50.634086681000056 ], [ -120.365337912999948, 50.634279436000085 ], [ -120.364990608999975, 50.63438981700007 ], [ -120.364595655999963, 50.634427491000096 ], [ -120.364226692999921, 50.634405185000062 ], [ -120.362747395, 50.634072484000043 ], [ -120.362363022999943, 50.634025956000102 ], [ -120.362045905999977, 50.634036160000086 ], [ -120.361917111999972, 50.634040321000036 ], [ -120.361494824999951, 50.634126159000111 ], [ -120.361077398999953, 50.634286077000063 ], [ -120.360869707999967, 50.634391757000095 ], [ -120.360656701999929, 50.634551377000072 ], [ -120.360471109999935, 50.634763682000042 ], [ -120.360342391999922, 50.634996791000056 ], [ -120.360325975999956, 50.635052264000159 ], [ -120.360263532999909, 50.635263197000079 ], [ -120.36026233599992, 50.635410517000061 ], [ -120.360261849999944, 50.635468576000086 ], [ -120.360339924999934, 50.635716749 ], [ -120.360583268999946, 50.636072434000042 ], [ -120.36084812799993, 50.636302141000094 ], [ -120.36115048399995, 50.636470679000119 ], [ -120.361506106999954, 50.636610375000082 ], [ -120.361901792999916, 50.636702510000156 ], [ -120.362430870999944, 50.636760870000074 ], [ -120.363195969999978, 50.636849207000097 ], [ -120.364119870999957, 50.636950095 ], [ -120.364227166, 50.636976761000042 ], [ -120.364370279999918, 50.637012346000091 ], [ -120.364596713999916, 50.637085106000015 ], [ -120.364839493999952, 50.637206393000092 ], [ -120.364919833999963, 50.637246544000043 ], [ -120.365149344000017, 50.637430317000103 ], [ -120.365332469999885, 50.637655850000044 ], [ -120.365473301999913, 50.637946862000021 ], [ -120.365126283999984, 50.638009469000082 ], [ -120.364344841, 50.638237773000085 ], [ -120.363283392999975, 50.638547804000034 ], [ -120.362819801999962, 50.638623494000093 ], [ -120.36260155899997, 50.638631309000104 ], [ -120.362246708999962, 50.638644005000046 ], [ -120.361840720999965, 50.638622501000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "541601416", "BldgCostT": "367621666", "sL_LossRatio": "0.997979824605461", "sL_AssetLoss": "30393.400576", "sL_BldgLoss": "30332.000576", "sL_StrLoss": "30309.600576", "sL_NStrLoss": "22.4", "sL_ContLoss": "61.4", "geom_point": "0101000020E610000089631499F3125EC0632539A2F3574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.28779823, 50.69021745200007 ], [ -120.287813777999986, 50.689947964000062 ], [ -120.283995673999968, 50.689859004 ], [ -120.284026814999947, 50.689320032000062 ], [ -120.283602587999951, 50.68931014 ], [ -120.283680451999942, 50.68796271000015 ], [ -120.284953098999949, 50.687992381000086 ], [ -120.284984227999985, 50.68745340800006 ], [ -120.286681076999983, 50.687492945000045 ], [ -120.28678995199999, 50.685606538000059 ], [ -120.287214148999979, 50.685616417000077 ], [ -120.287245247999934, 50.68507744300009 ], [ -120.287669439999931, 50.685087322000136 ], [ -120.287716081999946, 50.684278860000077 ], [ -120.289412819999939, 50.684318356000077 ], [ -120.289397282000024, 50.684587844000092 ], [ -120.289821469999964, 50.684597715000052 ], [ -120.289805933999972, 50.684867202000078 ], [ -120.290654314999955, 50.684886938000076 ], [ -120.290685375999914, 50.684347962000039 ], [ -120.289837004999981, 50.68432822700003 ], [ -120.289852538999924, 50.684058740000062 ], [ -120.288155809999964, 50.684019250000063 ], [ -120.28817181699999, 50.683741756000089 ], [ -120.288190421999929, 50.683734794000046 ], [ -120.288836267999955, 50.683583179000074 ], [ -120.289351523999969, 50.683541007000038 ], [ -120.289546866999927, 50.683525012000061 ], [ -120.290947772999971, 50.683646397000075 ], [ -120.29118591699995, 50.683654795000088 ], [ -120.291383926999941, 50.683661770000072 ], [ -120.291902411999928, 50.683680017000086 ], [ -120.291998522999961, 50.68367286700002 ], [ -120.291988976999903, 50.683838578000113 ], [ -120.291564796000017, 50.683828716000079 ], [ -120.291549271999912, 50.684098204000051 ], [ -120.291125086999941, 50.684088340000109 ], [ -120.291109560999928, 50.684357828000017 ], [ -120.291957931999917, 50.684377555000054 ], [ -120.291880315999947, 50.685724995000101 ], [ -120.292304514999969, 50.685734856000074 ], [ -120.292257948000014, 50.686543320000048 ], [ -120.29353056799998, 50.686572896000065 ], [ -120.29351505299995, 50.686842384000045 ], [ -120.29478768099996, 50.686871947000093 ], [ -120.294772172999927, 50.687141435000036 ], [ -120.295196383999951, 50.687151285000041 ], [ -120.295211889999933, 50.686881798000073 ], [ -120.295636100999928, 50.686891647000031 ], [ -120.295651603, 50.686622158000077 ], [ -120.295227393999966, 50.686612308000051 ], [ -120.295273909999963, 50.685803842000098 ], [ -120.29569811, 50.68581369200011 ], [ -120.29571361099994, 50.685544203000049 ], [ -120.294441019999965, 50.685514651000133 ], [ -120.29447203700002, 50.684975675000054 ], [ -120.294047844999938, 50.684965820000102 ], [ -120.294125396999959, 50.683618378000133 ], [ -120.29370121699999, 50.683608524000071 ], [ -120.293716729999929, 50.683339035000067 ], [ -120.293626181999969, 50.683336931000099 ], [ -120.293963537999986, 50.683224201000044 ], [ -120.294601750999973, 50.683031617000026 ], [ -120.297113088999964, 50.682497891 ], [ -120.297251932999984, 50.682469308000137 ], [ -120.298550042000031, 50.682201996000089 ], [ -120.298966879, 50.682118810000127 ], [ -120.29915676199991, 50.682078059000077 ], [ -120.299274299999951, 50.682293148000078 ], [ -120.299570037999942, 50.682681092000067 ], [ -120.29957802499996, 50.682691557000076 ], [ -120.299745429999959, 50.682911148000052 ], [ -120.300245527999934, 50.683446818000093 ], [ -120.300855835999968, 50.683931353000055 ], [ -120.301677418999972, 50.684452828000104 ], [ -120.301744351999901, 50.684485089000098 ], [ -120.30294911099999, 50.685065802000089 ], [ -120.30536347599994, 50.686061799000051 ], [ -120.306235929999957, 50.686421694000082 ], [ -120.305916846999963, 50.686405379000107 ], [ -120.301662504999925, 50.686187764000032 ], [ -120.301795043999917, 50.685145533000117 ], [ -120.301259146999939, 50.685133118000046 ], [ -120.301290087999973, 50.684594138000101 ], [ -120.300441703999965, 50.684574480000045 ], [ -120.300364328999976, 50.685921930000085 ], [ -120.30078853299996, 50.685931760000059 ], [ -120.300773060999987, 50.686201249000085 ], [ -120.301197264999971, 50.686211078000028 ], [ -120.301181795999952, 50.686480568 ], [ -120.301606002999961, 50.68649039600006 ], [ -120.301590534999931, 50.686759886000061 ], [ -120.302014744999894, 50.68676971300011 ], [ -120.301983813, 50.687308693000062 ], [ -120.304104895999927, 50.687357802000122 ], [ -120.304120349999948, 50.687088311000053 ], [ -120.30539299699997, 50.68711775700006 ], [ -120.305377548999928, 50.68738724800005 ], [ -120.30580176799999, 50.687397061000127 ], [ -120.305786323999953, 50.687666551000056 ], [ -120.306210542999935, 50.687676364000019 ], [ -120.306164212999988, 50.68848483600005 ], [ -120.308285357, 50.688533870000064 ], [ -120.308269924999976, 50.688803361000083 ], [ -120.30911839, 50.688822964000103 ], [ -120.309102962999987, 50.689092456 ], [ -120.309527197999927, 50.689102255000144 ], [ -120.309480922999924, 50.689910730000115 ], [ -120.309252680000014, 50.689905458000055 ], [ -120.309056679999955, 50.689900930000078 ], [ -120.309055526999927, 50.689921079000058 ], [ -120.309041252, 50.690170421000047 ], [ -120.308192763999969, 50.690150818000113 ], [ -120.308177330999953, 50.690420309000061 ], [ -120.307328838999936, 50.690400700000033 ], [ -120.307313401999934, 50.690670190000105 ], [ -120.303919420999975, 50.690591688000033 ], [ -120.303934878999911, 50.690322197000043 ], [ -120.303510635999928, 50.69031237800003 ], [ -120.30352609499991, 50.690042888000029 ], [ -120.301404891999965, 50.689993767000033 ], [ -120.30142036299992, 50.68972427700001 ], [ -120.297177997999924, 50.689625920000026 ], [ -120.297193492999938, 50.689356430000053 ], [ -120.295496561999968, 50.689317044000056 ], [ -120.295481057999922, 50.689586533000082 ], [ -120.29420835699996, 50.689556978 ], [ -120.29422386799996, 50.689287489000066 ], [ -120.292951174999985, 50.689257920000095 ], [ -120.29296669499999, 50.688988432000016 ], [ -120.291694012000036, 50.68895884900013 ], [ -120.291678484999977, 50.689228337000017 ], [ -120.290830026, 50.689208607000054 ], [ -120.290814492999985, 50.68947809500002 ], [ -120.289966030999963, 50.689458358000074 ], [ -120.289950494, 50.689727846000082 ], [ -120.289102026999913, 50.689708103000029 ], [ -120.289070940999963, 50.690247078000084 ], [ -120.28779823, 50.69021745200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "351.3", "sL_BldgLoss": "351.3", "sL_StrLoss": "351.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD5B723F14145EC0D8D159E258584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.313252900999956, 50.690807334000063 ], [ -120.313299112999985, 50.689998856000066 ], [ -120.312874868999941, 50.689989070000109 ], [ -120.312912743999945, 50.689326487000116 ], [ -120.31456639799994, 50.690123562000082 ], [ -120.314525657, 50.690836682000032 ], [ -120.313252900999956, 50.690807334000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "339.7", "sL_BldgLoss": "339.7", "sL_StrLoss": "339.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B1449CB73145EC00F0F61FCB4584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.319418309999918, 50.692568456000075 ], [ -120.319431039999969, 50.692468051000063 ], [ -120.319803102999984, 50.692647345000069 ], [ -120.320184449999928, 50.69283108300008 ], [ -120.32100907, 50.693348638000039 ], [ -120.320390551999964, 50.693400366000063 ], [ -120.318629826999938, 50.693359851000054 ], [ -120.318675951999964, 50.69255137100005 ], [ -120.319418309999918, 50.692568456000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019266", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6761667", "BldgCostT": "4166667", "sL_LossRatio": "0.951171088992032", "sL_AssetLoss": "372.73", "sL_BldgLoss": "354.53", "sL_StrLoss": "347.9", "sL_NStrLoss": "6.63", "sL_ContLoss": "18.2", "geom_point": "0101000020E6100000B36F72E842145EC0E2B4F9E27F584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31658538, 50.691963537000085 ], [ -120.316616150999934, 50.691424551000118 ], [ -120.315343376999948, 50.691395225000079 ], [ -120.315393246999946, 50.690522091000069 ], [ -120.31847439099991, 50.692007036000071 ], [ -120.31658538, 50.691963537000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39218417", "BldgCostT": "26311667", "sL_LossRatio": "1", "sL_AssetLoss": "2955", "sL_BldgLoss": "2955", "sL_StrLoss": "2955", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BCE090CDF055EC0619AB724665F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.088844136999938, 50.747337054000162 ], [ -120.088851876999968, 50.747212359000073 ], [ -120.088199741, 50.747196064000022 ], [ -120.087301100999966, 50.74699944500005 ], [ -120.087237804999944, 50.746985589000055 ], [ -120.08641438399998, 50.746777792000088 ], [ -120.085986307999946, 50.746657790000022 ], [ -120.085508706999988, 50.746524303000072 ], [ -120.08500611, 50.746395374000016 ], [ -120.084654872, 50.746305285000055 ], [ -120.084672079999976, 50.746028431000092 ], [ -120.084247412999943, 50.746017805000086 ], [ -120.084264160999936, 50.745748369000069 ], [ -120.083839496999957, 50.745737741000106 ], [ -120.083879257999939, 50.745098166000069 ], [ -120.08303879, 50.745053567000134 ], [ -120.083067457999931, 50.744836796000079 ], [ -120.08205837299991, 50.7447832390001 ], [ -120.082068609999979, 50.744705840000137 ], [ -120.080814759999953, 50.744639280000037 ], [ -120.080813470999914, 50.744638296000105 ], [ -120.080462477000012, 50.744258199000051 ], [ -120.080413121000021, 50.744193278000097 ], [ -120.080831003999961, 50.741034728000045 ], [ -120.081820518999962, 50.741087261000082 ], [ -120.081933385999918, 50.741164791000074 ], [ -120.082422891999968, 50.741959494000071 ], [ -120.08324791199999, 50.742591909000041 ], [ -120.083818301999926, 50.742794087000071 ], [ -120.084647812999961, 50.742905193000134 ], [ -120.085584405999896, 50.743323889000074 ], [ -120.087212679999951, 50.743590295000061 ], [ -120.087819390999925, 50.743875096000032 ], [ -120.08982949199995, 50.743916389000056 ], [ -120.090800692999935, 50.744246806000042 ], [ -120.091304602999912, 50.744141388000081 ], [ -120.091786779, 50.743883592000032 ], [ -120.092749982999962, 50.743917800000062 ], [ -120.094006912999973, 50.744218304000078 ], [ -120.094234107999938, 50.744449094000032 ], [ -120.095866894999972, 50.744651291000075 ], [ -120.096535504, 50.74460569700004 ], [ -120.097000008999927, 50.744419086000043 ], [ -120.097570703999949, 50.744379295000073 ], [ -120.098298097999987, 50.744514591000062 ], [ -120.098926813999981, 50.744449102000026 ], [ -120.101327104999953, 50.744598604000025 ], [ -120.102255713999966, 50.744721108000086 ], [ -120.103133305999975, 50.74498600200009 ], [ -120.103719282, 50.744874901000074 ], [ -120.103819553999955, 50.74482065500009 ], [ -120.104283094, 50.745534851000045 ], [ -120.104330636999947, 50.745682229000096 ], [ -120.104286954999949, 50.746146292000077 ], [ -120.103914790999966, 50.747064852000051 ], [ -120.102746868999986, 50.747003087000103 ], [ -120.102744514999969, 50.74702094000002 ], [ -120.101582057999934, 50.746959453000052 ], [ -120.101578561999958, 50.746985968000025 ], [ -120.099082156999913, 50.746853880000081 ], [ -120.099060928999961, 50.747197115000077 ], [ -120.098169116999927, 50.74717490900008 ], [ -120.098137437999981, 50.747415046000043 ], [ -120.097070529999925, 50.747358570000095 ], [ -120.097028305999984, 50.747678572000069 ], [ -120.091817448999961, 50.747402586000078 ], [ -120.091807934999949, 50.747556030000091 ], [ -120.090958567999976, 50.747534829000053 ], [ -120.090950608999947, 50.747663151000012 ], [ -120.090068617999947, 50.747563792000051 ], [ -120.089059200999941, 50.747384109000066 ], [ -120.088844136999938, 50.747337054000162 ] ], [ [ -120.086659186999924, 50.745808276000098 ], [ -120.086724025999899, 50.745317725000078 ], [ -120.085570697, 50.745256551000068 ], [ -120.085554897999913, 50.745510804000048 ], [ -120.085979560999945, 50.745521424000088 ], [ -120.085946083999943, 50.746060300000075 ], [ -120.086370752, 50.746070920000065 ], [ -120.086387487999957, 50.745801482000068 ], [ -120.086659186999924, 50.745808276000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A53F02D8F035EC0C5CA47D68A5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.05628651699999, 50.738068455000125 ], [ -120.056908444999962, 50.738083858000074 ], [ -120.056800557999935, 50.738896124000107 ], [ -120.056149952999988, 50.738861435000089 ], [ -120.056052764999919, 50.739593040000102 ], [ -120.055405488999938, 50.739558526000067 ], [ -120.054696321, 50.738637168000068 ], [ -120.05412407099999, 50.738125291000124 ], [ -120.05400933599999, 50.737960021000042 ], [ -120.054106809999936, 50.737964653000134 ], [ -120.05628651699999, 50.738068455000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019270", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9531334", "BldgCostT": "5628334", "sL_LossRatio": "0.979545270244976", "sL_AssetLoss": "972.880123", "sL_BldgLoss": "952.980123", "sL_StrLoss": "945.800123", "sL_NStrLoss": "7.18", "sL_ContLoss": "19.9", "geom_point": "0101000020E61000001FF1F12AA7145EC0C099F3E736594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.325250680999929, 50.700750081000145 ], [ -120.325312808999968, 50.700259662000121 ], [ -120.324610464999949, 50.700243534000037 ], [ -120.32468596399994, 50.69891748900006 ], [ -120.324687184999945, 50.698896061000077 ], [ -120.324662720999953, 50.698895500000035 ], [ -120.324262855999962, 50.698886316000063 ], [ -120.324278200999984, 50.698616821000066 ], [ -120.323853877, 50.698607075000098 ], [ -120.32386305699994, 50.69844585600007 ], [ -120.32042577199995, 50.698270653000058 ], [ -120.320879817, 50.694689195000109 ], [ -120.321521806999954, 50.694721926000057 ], [ -120.321617332999935, 50.693968273000046 ], [ -120.321569052999962, 50.693967163000117 ], [ -120.321583193999942, 50.693719021000156 ], [ -120.321735213999972, 50.693828813000017 ], [ -120.322550886999963, 50.694417923000096 ], [ -120.32335790499998, 50.69533766900004 ], [ -120.323855498999976, 50.696019974000087 ], [ -120.324306972999963, 50.696886444000036 ], [ -120.324987498, 50.698525170000075 ], [ -120.325600911999956, 50.700005774000026 ], [ -120.32592349699999, 50.70078435300006 ], [ -120.325440739999948, 50.700759762000104 ], [ -120.325250680999929, 50.700750081000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29912720", "BldgCostT": "17245413", "sL_LossRatio": "0.959372419841934", "sL_AssetLoss": "2077.4984474", "sL_BldgLoss": "1993.0947127", "sL_StrLoss": "1962.6050667", "sL_NStrLoss": "30.489646", "sL_ContLoss": "84.4037347", "geom_point": "0101000020E6100000FC884614E6125EC0EF68569501574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.28817181699999, 50.683741756000089 ], [ -120.288217984999989, 50.682941301000056 ], [ -120.287793814999986, 50.682931424000039 ], [ -120.28784045099999, 50.682122963000097 ], [ -120.288264613999957, 50.682132839000111 ], [ -120.288280157999949, 50.681863351000075 ], [ -120.291022073999955, 50.681927153000053 ], [ -120.291049742, 50.681709964000071 ], [ -120.291469098999983, 50.681694085000025 ], [ -120.292021214999977, 50.681706899000069 ], [ -120.292323894, 50.681605798000064 ], [ -120.293191905999933, 50.681040387000039 ], [ -120.293535584999958, 50.680707102000042 ], [ -120.293710781999906, 50.679892503000069 ], [ -120.293487894999913, 50.678600688000117 ], [ -120.293551675999964, 50.67773909200006 ], [ -120.29391079499996, 50.677187244000052 ], [ -120.294493742999961, 50.677217119000055 ], [ -120.294544076999927, 50.67634218000007 ], [ -120.294968192999974, 50.676352030000032 ], [ -120.294987941999935, 50.676008693000071 ], [ -120.295176355999928, 50.675817167000105 ], [ -120.295423303999897, 50.675822902000014 ], [ -120.295438803999929, 50.675553412000092 ], [ -120.295862910999944, 50.6755632590001 ], [ -120.295878405999929, 50.675293770000074 ], [ -120.297245115999885, 50.67532549200007 ], [ -120.297247173999935, 50.6753093250001 ], [ -120.295968916999954, 50.675243841000054 ], [ -120.296060896, 50.675198286000068 ], [ -120.29755968399995, 50.674990400000077 ], [ -120.298278794999987, 50.67502450600017 ], [ -120.299395419999954, 50.67532080600008 ], [ -120.30016334, 50.675713449000035 ], [ -120.300101211999959, 50.67571026800001 ], [ -120.300048021999928, 50.676636734000112 ], [ -120.299642899999938, 50.677270049000072 ], [ -120.299587047999964, 50.677268754000131 ], [ -120.299581456999974, 50.677366096000128 ], [ -120.299132815999926, 50.678067414000068 ], [ -120.298711895999972, 50.678897483000078 ], [ -120.298676173999979, 50.679045814000091 ], [ -120.29855223499996, 50.679560710000096 ], [ -120.298469594999958, 50.680277427000114 ], [ -120.298470816999952, 50.680289092000102 ], [ -120.298471932999945, 50.680300016000039 ], [ -120.298536492999958, 50.680912608000028 ], [ -120.298585702999958, 50.681085569000111 ], [ -120.298762249999925, 50.681706385000098 ], [ -120.29882813899998, 50.681835921000079 ], [ -120.298962647999971, 50.682110152000057 ], [ -120.298966879, 50.682118810000127 ], [ -120.298550042000031, 50.682201996000089 ], [ -120.297251932999984, 50.682469308000137 ], [ -120.297113088999964, 50.682497891 ], [ -120.294601750999973, 50.683031617000026 ], [ -120.293963537999986, 50.683224201000044 ], [ -120.293626181999969, 50.683336931000099 ], [ -120.29329255299993, 50.68332917900004 ], [ -120.293285552999976, 50.683450754000077 ], [ -120.293180125999939, 50.683485981000047 ], [ -120.292761138999964, 50.683586678000061 ], [ -120.292004498999987, 50.683569090000063 ], [ -120.291998522999961, 50.68367286700002 ], [ -120.291902411999928, 50.683680017000086 ], [ -120.291383926999941, 50.683661770000072 ], [ -120.29118591699995, 50.683654795000088 ], [ -120.290947772999971, 50.683646397000075 ], [ -120.289546866999927, 50.683525012000061 ], [ -120.289351523999969, 50.683541007000038 ], [ -120.288836267999955, 50.683583179000074 ], [ -120.288190421999929, 50.683734794000046 ], [ -120.28817181699999, 50.683741756000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004CC5A5AE65155EC0230E3C6B755C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.333621251999944, 50.723343766000021 ], [ -120.334016034999962, 50.720224343000083 ], [ -120.334769259999959, 50.722026955000018 ], [ -120.334833495999987, 50.722180697000063 ], [ -120.33535625799999, 50.72343195600007 ], [ -120.333621251999944, 50.723343766000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4050417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "67.2", "sL_BldgLoss": "67.2", "sL_StrLoss": "67.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A419498AE10C5EC055B26B9458604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.200734903999958, 50.754001547000037 ], [ -120.200750988, 50.753732084 ], [ -120.20032620799995, 50.753721879000032 ], [ -120.200374468999939, 50.752913486000075 ], [ -120.199949696999937, 50.752903281000073 ], [ -120.199981872999928, 50.752364354000072 ], [ -120.199714971999938, 50.752357940000145 ], [ -120.199557104999911, 50.752354146000108 ], [ -120.19962146599994, 50.751276290000078 ], [ -120.199854487999914, 50.751281890000023 ], [ -120.200625199999976, 50.751300406000091 ], [ -120.201320498999948, 50.75131710700002 ], [ -120.201272257999904, 50.752125500000069 ], [ -120.201697023999955, 50.752135701000022 ], [ -120.201664866000016, 50.752674631000033 ], [ -120.202089637999947, 50.75268482900001 ], [ -120.202105714999945, 50.752415365000118 ], [ -120.203380022, 50.752445953000141 ], [ -120.203378088999983, 50.752478358000118 ], [ -120.203331813, 50.753254347000137 ], [ -120.20290703799999, 50.753244153000054 ], [ -120.20289096499999, 50.753513617000088 ], [ -120.202466186, 50.753503420000108 ], [ -120.202450110999905, 50.753772886000093 ], [ -120.202062201999937, 50.753763572000082 ], [ -120.202045020999904, 50.753763160000048 ], [ -120.202025330999945, 50.753762687000098 ], [ -120.202024928999919, 50.753769425000073 ], [ -120.202009253, 50.7540321520001 ], [ -120.200734903999958, 50.754001547000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94276863", "BldgCostT": "54345908", "sL_LossRatio": "0.946859753917484", "sL_AssetLoss": "6020.443893", "sL_BldgLoss": "5700.516023", "sL_StrLoss": "5583.932023", "sL_NStrLoss": "116.584", "sL_ContLoss": "319.92787", "geom_point": "0101000020E6100000FF4CDE7CBA145EC041361467DA5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.322385191999928, 50.716922906000015 ], [ -120.322400558999931, 50.716653413000152 ], [ -120.321551581999984, 50.716633899000051 ], [ -120.321566953999977, 50.716364406000068 ], [ -120.320293498999931, 50.716335124000082 ], [ -120.320339631999943, 50.7155266460001 ], [ -120.318217247999897, 50.715477813000042 ], [ -120.31826341599999, 50.71466933500006 ], [ -120.318687884, 50.714679105000116 ], [ -120.318703269999972, 50.714409612000075 ], [ -120.319127736999974, 50.714419380000031 ], [ -120.319143121, 50.714149887000076 ], [ -120.319567584999916, 50.714159653000046 ], [ -120.31958296399992, 50.713890160000062 ], [ -120.320007427999883, 50.713899925000128 ], [ -120.320068937999935, 50.712821953000081 ], [ -120.3204933909999, 50.712831716000082 ], [ -120.320524138999986, 50.71229273000003 ], [ -120.320948588999954, 50.712302490000049 ], [ -120.320994701999922, 50.711494010000067 ], [ -120.320145821999972, 50.711474489000125 ], [ -120.320176572999955, 50.710935502000069 ], [ -120.319752137999927, 50.710925739000132 ], [ -120.319755642999965, 50.710864313000094 ], [ -120.318648108, 50.710807847000105 ], [ -120.31833284399994, 50.710791772000029 ], [ -120.318593104999962, 50.708740294000087 ], [ -120.317753077999939, 50.708720958000079 ], [ -120.317737689999916, 50.708990450000044 ], [ -120.316888853999956, 50.708970905000115 ], [ -120.316873460999943, 50.709240397000016 ], [ -120.314326950999927, 50.709181723000029 ], [ -120.31437317399994, 50.708373247000061 ], [ -120.314797584999965, 50.708383030000114 ], [ -120.314920816999958, 50.706227093000031 ], [ -120.315345209999975, 50.706236874000048 ], [ -120.315360608999967, 50.7059673810001 ], [ -120.315784998999959, 50.705977160000081 ], [ -120.315800396999919, 50.705707667000077 ], [ -120.318346721999959, 50.705766307000033 ], [ -120.318362105999981, 50.705496814000099 ], [ -120.319635264999945, 50.705526113000104 ], [ -120.319619888999966, 50.705795606000081 ], [ -120.32004427899993, 50.705805369000132 ], [ -120.320028904999972, 50.706074863000055 ], [ -120.320877687999939, 50.706094384000039 ], [ -120.320862318999957, 50.706363877000101 ], [ -120.320974555999939, 50.706366459000058 ], [ -120.32121863899998, 50.704441426000109 ], [ -120.321467926999958, 50.704454132000059 ], [ -120.321528551999961, 50.703975932000034 ], [ -120.32195403299994, 50.703997617000077 ], [ -120.322195833999928, 50.702090143000099 ], [ -120.322656972999965, 50.702113644000036 ], [ -120.322774059999944, 50.70118985400007 ], [ -120.325274280999963, 50.701317242000073 ], [ -120.326163051, 50.701362512000081 ], [ -120.327240752999927, 50.703963328000043 ], [ -120.327361509999974, 50.704254772000105 ], [ -120.328257314999917, 50.706416311000048 ], [ -120.32905070000001, 50.708330528000047 ], [ -120.329051125999968, 50.708331630000032 ], [ -120.329183967999938, 50.708652055000051 ], [ -120.329184533999964, 50.708653459000097 ], [ -120.329570224999941, 50.709583874000018 ], [ -120.329625289999939, 50.709710121000057 ], [ -120.330740359999965, 50.712381479000037 ], [ -120.32863572299999, 50.712274381000114 ], [ -120.328631061999928, 50.712311174000035 ], [ -120.328174497999953, 50.712287936000052 ], [ -120.328161576999904, 50.712515047000103 ], [ -120.328133581999978, 50.713007177000051 ], [ -120.328433688999951, 50.713014059000038 ], [ -120.328558038999986, 50.713016911000068 ], [ -120.32854643899995, 50.713220826000033 ], [ -120.328542709999965, 50.71328640500009 ], [ -120.328582701999935, 50.713287322000014 ], [ -120.329391630999936, 50.71330586800012 ], [ -120.329376305999972, 50.713575362000043 ], [ -120.33100726, 50.713612735000048 ], [ -120.331064756000018, 50.713158565000114 ], [ -120.331904308999938, 50.71516957700009 ], [ -120.332013959000022, 50.715432149000073 ], [ -120.332508254999965, 50.716615417000078 ], [ -120.33090568399993, 50.716578716000036 ], [ -120.330921002999943, 50.716309220000021 ], [ -120.329647538999922, 50.716280041000054 ], [ -120.329662862999953, 50.716010546000106 ], [ -120.329238378999975, 50.716000816000076 ], [ -120.329253704999957, 50.715731321000071 ], [ -120.327555776999986, 50.715692389000033 ], [ -120.327540441999943, 50.71596188300002 ], [ -120.326266993, 50.715932665000139 ], [ -120.326251648999971, 50.716202160000186 ], [ -120.325827162999957, 50.716192418000048 ], [ -120.325811816999988, 50.716461912000092 ], [ -120.325387328999938, 50.716452169000036 ], [ -120.325371979999929, 50.71672166200004 ], [ -120.324947489999957, 50.716711917000097 ], [ -120.324932138999941, 50.71698141100017 ], [ -120.322385191999928, 50.716922906000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3765250", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "56.4", "sL_BldgLoss": "56.4", "sL_StrLoss": "56.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000632462E7F9125EC03153C51A4F5C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.295710285, 50.722513309000107 ], [ -120.295772370999899, 50.721435360000086 ], [ -120.295347847999949, 50.721425507000092 ], [ -120.295425464999965, 50.720078071000081 ], [ -120.295849975999943, 50.72008792500003 ], [ -120.295865494999987, 50.719818437000086 ], [ -120.297139018999985, 50.719847988000055 ], [ -120.297123506999952, 50.720117475000052 ], [ -120.297548015999936, 50.720127322000074 ], [ -120.297408412999914, 50.72255271000008 ], [ -120.295710285, 50.722513309000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23708558", "BldgCostT": "13443642", "sL_LossRatio": "0.959105433299651", "sL_AssetLoss": "1563.285912", "sL_BldgLoss": "1499.356012", "sL_StrLoss": "1474.388012", "sL_NStrLoss": "24.968", "sL_ContLoss": "63.9299", "geom_point": "0101000020E6100000E1B4549CF20D5EC0A5E042816B5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.21689250799993, 50.734349669000046 ], [ -120.222544065999955, 50.734642706000052 ], [ -120.222453902999959, 50.735341141000063 ], [ -120.222081763999981, 50.738223592000139 ], [ -120.21934544899996, 50.738081749000102 ], [ -120.21897338899997, 50.740961859000031 ], [ -120.213321059999899, 50.740668643000042 ], [ -120.213688701999928, 50.737825505000025 ], [ -120.213784085000029, 50.73708780300008 ], [ -120.214960093999949, 50.737148833000077 ], [ -120.216520321999894, 50.737229783000018 ], [ -120.216614809999953, 50.736498640000072 ], [ -120.21689250799993, 50.734349669000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12991084", "BldgCostT": "7488334", "sL_LossRatio": "0.999989729212952", "sL_AssetLoss": "1331.93298", "sL_BldgLoss": "1331.9193", "sL_StrLoss": "1331.9", "sL_NStrLoss": "0.0193", "sL_ContLoss": "0.01368", "geom_point": "0101000020E6100000F76627C53F0D5EC09A51DAB851624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.205798678999955, 50.766253292000108 ], [ -120.210076892999936, 50.766475408000069 ], [ -120.20981430099999, 50.76850355500008 ], [ -120.20961326699998, 50.770056109000045 ], [ -120.20395733, 50.769762430000071 ], [ -120.204421404999948, 50.766181752000051 ], [ -120.205798678999955, 50.766253292000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16676500", "BldgCostT": "9850000", "sL_LossRatio": "0.931384963725433", "sL_AssetLoss": "1212.58786", "sL_BldgLoss": "1129.3861", "sL_StrLoss": "1099.1", "sL_NStrLoss": "30.2861", "sL_ContLoss": "83.20176", "geom_point": "0101000020E6100000163BAFEBB60C5EC04FC409E97C5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.196733469999913, 50.74040449000011 ], [ -120.196792753999915, 50.739947352000051 ], [ -120.19561916399999, 50.739886260000091 ], [ -120.195694640999932, 50.739304374000021 ], [ -120.194499165999957, 50.739242130000022 ], [ -120.194557944999929, 50.738789067000013 ], [ -120.194963679999958, 50.73566136200003 ], [ -120.200615257999942, 50.73595550800006 ], [ -120.200539851999963, 50.736537399000021 ], [ -120.201735261999943, 50.736599579000078 ], [ -120.20167603099999, 50.737056722000013 ], [ -120.201698053999962, 50.73705786700004 ], [ -120.20284955599999, 50.737117750000017 ], [ -120.202385656999979, 50.740698544000068 ], [ -120.201234062999973, 50.740638657000076 ], [ -120.198451670999972, 50.740493909000122 ], [ -120.196733469999913, 50.74040449000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.1", "sL_BldgLoss": "53.1", "sL_StrLoss": "53.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DADDEAD67E055EC0BE9CE11F995F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.085029768999959, 50.747116804000086 ], [ -120.085046512999952, 50.746847368000061 ], [ -120.084621838999965, 50.746836744000049 ], [ -120.084654872, 50.746305285000055 ], [ -120.08500611, 50.746395374000016 ], [ -120.085508706999988, 50.746524303000072 ], [ -120.085986307999946, 50.746657790000022 ], [ -120.08641438399998, 50.746777792000088 ], [ -120.087237804999944, 50.746985589000055 ], [ -120.087301100999966, 50.74699944500005 ], [ -120.088199741, 50.747196064000022 ], [ -120.085029768999959, 50.747116804000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12516411", "BldgCostT": "6920743", "sL_LossRatio": "0.999843546591765", "sL_AssetLoss": "747.82647", "sL_BldgLoss": "747.70947", "sL_StrLoss": "747.7", "sL_NStrLoss": "0.00947", "sL_ContLoss": "0.117", "geom_point": "0101000020E6100000432AB5ACF50D5EC0AFDF23CD65564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.215589794999943, 50.673949314000069 ], [ -120.21656618899999, 50.673694298000072 ], [ -120.216877213999922, 50.673692897000109 ], [ -120.217113201999922, 50.673779805000031 ], [ -120.217582711999967, 50.673727104000058 ], [ -120.21864890799999, 50.673887997000051 ], [ -120.220302186999945, 50.673953506000018 ], [ -120.221062116, 50.674082605000095 ], [ -120.220783128999983, 50.676246164000133 ], [ -120.215138931999917, 50.675953017000019 ], [ -120.215376721999945, 50.674110743000071 ], [ -120.215589794999943, 50.673949314000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3789417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "60", "sL_BldgLoss": "60", "sL_StrLoss": "60", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD2404CC780A5EC0918A5284CC604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.160967386000024, 50.755775320000033 ], [ -120.166621275999915, 50.75607117800007 ], [ -120.166548538999919, 50.756628924000033 ], [ -120.16319026299999, 50.75655710500012 ], [ -120.162076192999947, 50.756536926000095 ], [ -120.160871846999967, 50.756507188000036 ], [ -120.160967386000024, 50.755775320000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998948931993294", "sL_AssetLoss": "345.363", "sL_BldgLoss": "345", "sL_StrLoss": "342", "sL_NStrLoss": "3", "sL_ContLoss": "0.363", "geom_point": "0101000020E610000048C4B556CB3A5EC0C30EC6FC9AF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.915945581999964, 49.940343861000066 ], [ -120.921503097999931, 49.940601786000045 ], [ -120.921487767999949, 49.940739483000122 ], [ -120.921397675999941, 49.941018397000057 ], [ -120.921441860999906, 49.94115181500014 ], [ -120.921103691999974, 49.94418899700004 ], [ -120.916433294999962, 49.943972264000095 ], [ -120.916418182999919, 49.943919595000125 ], [ -120.915853100999968, 49.942673708000072 ], [ -120.91584408199995, 49.942529109000148 ], [ -120.915893210999968, 49.942364604000041 ], [ -120.91610830800002, 49.942076182000037 ], [ -120.916150810999952, 49.941844701000058 ], [ -120.916104790999952, 49.941630693000022 ], [ -120.915837485999958, 49.941313709000028 ], [ -120.915945581999964, 49.940343861000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999290662987183", "sL_AssetLoss": "308.739", "sL_BldgLoss": "308.52", "sL_StrLoss": "307", "sL_NStrLoss": "1.52", "sL_ContLoss": "0.219", "geom_point": "0101000020E6100000AE8C3ECDE6345EC012583143800E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.827062356999932, 50.111509001000066 ], [ -120.829580147999977, 50.111627465000019 ], [ -120.829171996999946, 50.115213518000061 ], [ -120.828056432999986, 50.115161036000124 ], [ -120.823593688999949, 50.11495097400006 ], [ -120.82400227699999, 50.111364942000073 ], [ -120.827062356999932, 50.111509001000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99938441381666", "sL_AssetLoss": "156.9236", "sL_BldgLoss": "156.827", "sL_StrLoss": "156", "sL_NStrLoss": "0.827", "sL_ContLoss": "0.0966", "geom_point": "0101000020E6100000E21CF9AC80425EC0B3CE9D05460F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.036818414, 50.117965063000021 ], [ -121.042398297, 50.11821680200017 ], [ -121.042276948999955, 50.119328793000136 ], [ -121.041106689999935, 50.120222392000123 ], [ -121.040527708999889, 50.12033768400002 ], [ -121.038736199999931, 50.120343394000024 ], [ -121.038115685999983, 50.120468691000085 ], [ -121.03737471, 50.120779195000075 ], [ -121.037129087999915, 50.121360303000039 ], [ -121.037115370999913, 50.121582930000052 ], [ -121.036426540999983, 50.121551837000013 ], [ -121.036818414, 50.117965063000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999456261760304", "sL_AssetLoss": "279.9141", "sL_BldgLoss": "279.7619", "sL_StrLoss": "279.0119", "sL_NStrLoss": "0.75", "sL_ContLoss": "0.1522", "geom_point": "0101000020E610000090A8697A7D435EC0F8B00F998F0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.052434891999951, 50.123610167000024 ], [ -121.052506991999948, 50.122948185000062 ], [ -121.050661177000023, 50.12286512100011 ], [ -121.051051939999951, 50.119278302000083 ], [ -121.05663206199992, 50.119529320000076 ], [ -121.05656002799999, 50.120191308000116 ], [ -121.058405744999959, 50.120274273000064 ], [ -121.058015552999933, 50.123861114000093 ], [ -121.052434891999951, 50.123610167000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999457297618677", "sL_AssetLoss": "144.6465", "sL_BldgLoss": "144.568", "sL_StrLoss": "144", "sL_NStrLoss": "0.568", "sL_ContLoss": "0.0785", "geom_point": "0101000020E6100000E11B96489A3E5EC0384BC97292FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.976223823999973, 49.998049380000033 ], [ -120.976542689999988, 49.995157669000086 ], [ -120.976619369999923, 49.99446223000011 ], [ -120.976964320999983, 49.99447803500005 ], [ -120.977013975999924, 49.994027638000041 ], [ -120.978115285999962, 49.994078093000091 ], [ -120.978303929999981, 49.996588658000071 ], [ -120.980559629999917, 49.996438579000078 ], [ -120.980952653999964, 49.998265960000118 ], [ -120.980561560999902, 49.998248056000094 ], [ -120.976223823999973, 49.998049380000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998896669252029", "sL_AssetLoss": "183.082", "sL_BldgLoss": "182.88", "sL_StrLoss": "181", "sL_NStrLoss": "1.88", "sL_ContLoss": "0.202", "geom_point": "0101000020E6100000A5901AC9143F5EC01286436700FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.984033519, 49.993468681000067 ], [ -120.983756287999967, 49.990762069000056 ], [ -120.987073587999944, 49.990913819000056 ], [ -120.98691313099998, 49.992372227000104 ], [ -120.98801035399994, 49.992422397000084 ], [ -120.987903024999952, 49.993398069000065 ], [ -120.984033519, 49.993468681000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998242688910942", "sL_AssetLoss": "400.043", "sL_BldgLoss": "399.34", "sL_StrLoss": "393", "sL_NStrLoss": "6.34", "sL_ContLoss": "0.703", "geom_point": "0101000020E6100000F22234FE14415EC00EE9013D1EDA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.013807653999976, 49.702285130000099 ], [ -121.019336913999922, 49.702538179000094 ], [ -121.018947218999983, 49.706126928000067 ], [ -121.015913573999924, 49.705988127000118 ], [ -121.015856175999943, 49.705895942000048 ], [ -121.013777986999941, 49.702558050000071 ], [ -121.013807653999976, 49.702285130000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999453888716217", "sL_AssetLoss": "569.481", "sL_BldgLoss": "569.17", "sL_StrLoss": "567", "sL_NStrLoss": "2.17", "sL_ContLoss": "0.311", "geom_point": "0101000020E6100000D13029FCE13D5EC0ACEDBB5CA3114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.964370649999964, 50.141171935000081 ], [ -120.964383905999938, 50.140859645000091 ], [ -120.964171528999898, 50.140855920000028 ], [ -120.964149412999944, 50.14030509400002 ], [ -120.963660309999938, 50.139937690000089 ], [ -120.962924760999982, 50.139754669000119 ], [ -120.963590583999974, 50.13976635000013 ], [ -120.963602034999951, 50.139496705000056 ], [ -120.965280247999985, 50.139526132000071 ], [ -120.965290782999958, 50.139277860000078 ], [ -120.963426607999935, 50.139192519000041 ], [ -120.963632253999933, 50.13733847200006 ], [ -120.963274105999957, 50.137332189000062 ], [ -120.963294767999969, 50.136845695000034 ], [ -120.963308459999936, 50.136523256000011 ], [ -120.963435892999883, 50.136525492000089 ], [ -120.963721865999943, 50.136530509000046 ], [ -120.96373841599997, 50.136381283000063 ], [ -120.963824389999985, 50.135606090000124 ], [ -120.965870754999955, 50.135699770000016 ], [ -120.965936823999954, 50.13510379100012 ], [ -120.965969042999944, 50.134813138 ], [ -120.971550597999908, 50.135068461000103 ], [ -120.971408814999961, 50.136348836000082 ], [ -120.97104739299999, 50.136369998000106 ], [ -120.970690997999952, 50.136525294000123 ], [ -120.970278894000018, 50.137003788000079 ], [ -120.970192991999966, 50.137704506000063 ], [ -120.969212000999988, 50.138566145000055 ], [ -120.9691069199999, 50.138561339000042 ], [ -120.969095551999956, 50.138663948000065 ], [ -120.969095355999983, 50.138668597000049 ], [ -120.96876767699996, 50.138956397000072 ], [ -120.96835920599996, 50.139714100000077 ], [ -120.968352694999922, 50.139849788000106 ], [ -120.967366586999958, 50.139832525000024 ], [ -120.967378018999938, 50.139562880000049 ], [ -120.966119354999961, 50.139540836 ], [ -120.966096481999926, 50.140080126000022 ], [ -120.966516038999913, 50.140087476000133 ], [ -120.966504604999969, 50.140357120000054 ], [ -120.968602411999939, 50.140393848000031 ], [ -120.968596548999969, 50.140532228000041 ], [ -120.968878778999951, 50.1405451360001 ], [ -120.969083594999944, 50.140787908000057 ], [ -120.969040698999947, 50.141138306000066 ], [ -120.968814417999965, 50.141205196000136 ], [ -120.967498481999897, 50.141209502000066 ], [ -120.966389889999945, 50.141577015000088 ], [ -120.965354401999932, 50.141577001 ], [ -120.96480168, 50.141433092000064 ], [ -120.964370649999964, 50.141171935000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999077212368837", "sL_AssetLoss": "344.608", "sL_BldgLoss": "344.29", "sL_StrLoss": "342", "sL_NStrLoss": "2.29", "sL_ContLoss": "0.318", "geom_point": "0101000020E6100000511B51B1DC405EC04018D3A730E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.011712744999954, 49.751608285000017 ], [ -121.012054260999946, 49.748305138000084 ], [ -121.012131121999985, 49.747586923000021 ], [ -121.012104320999981, 49.748242471000054 ], [ -121.012520501999944, 49.748249614000052 ], [ -121.012509478999931, 49.74851928600004 ], [ -121.012606356999939, 49.748520947000017 ], [ -121.012925663999937, 49.748526426000062 ], [ -121.012892601999908, 49.749335439000063 ], [ -121.012517023999962, 49.749328994000045 ], [ -121.012060220999928, 49.749321154000071 ], [ -121.012050720000019, 49.749553525000039 ], [ -121.012489978999952, 49.749573622000035 ], [ -121.015502093999956, 49.749711394000059 ], [ -121.015461575999979, 49.750083866000054 ], [ -121.015619616, 49.75009109200009 ], [ -121.01522922599996, 49.753679587000128 ], [ -121.012883953999932, 49.753572328000146 ], [ -121.011157010999966, 49.753493314000131 ], [ -121.011468761999964, 49.752623131000036 ], [ -121.011712744999954, 49.751608285000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998865746976507", "sL_AssetLoss": "352.655", "sL_BldgLoss": "352.255", "sL_StrLoss": "350", "sL_NStrLoss": "2.255", "sL_ContLoss": "0.4", "geom_point": "0101000020E610000017437BED80375EC08A1EF8182C0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.864659578999962, 50.077547310000064 ], [ -120.87023354199999, 50.077807786000072 ], [ -120.869828894999969, 50.081394148000108 ], [ -120.864254495999887, 50.081133654000055 ], [ -120.864659578999962, 50.077547310000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.9994017386726", "sL_AssetLoss": "589.5417", "sL_BldgLoss": "589.189", "sL_StrLoss": "587", "sL_NStrLoss": "2.189", "sL_ContLoss": "0.3527", "geom_point": "0101000020E610000024A35E4BA3415EC0B5240F5D33134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.022414103999949, 50.150469711000028 ], [ -121.021740793, 50.1501606940001 ], [ -121.020460217, 50.149303295000024 ], [ -121.020352890999916, 50.149114869000108 ], [ -121.019533812999896, 50.147676805000124 ], [ -121.019542483999885, 50.147101500000105 ], [ -121.019669431999958, 50.146984690000046 ], [ -121.024431557999947, 50.147200153000078 ], [ -121.02440685, 50.147425610000063 ], [ -121.025221146999982, 50.147462432000111 ], [ -121.02516917, 50.147936768000072 ], [ -121.025663563999927, 50.147959121000042 ], [ -121.025605829999947, 50.148486033000054 ], [ -121.027675130999967, 50.148579569000027 ], [ -121.027667249999965, 50.148651523000098 ], [ -121.028515305999974, 50.14868984500005 ], [ -121.028375800999967, 50.149963731000064 ], [ -121.029089095999936, 50.149995958000069 ], [ -121.029097079999957, 50.149801762000038 ], [ -121.029516740999952, 50.149808886000095 ], [ -121.029561077999972, 50.148730266000065 ], [ -121.029842031000015, 50.14873503399999 ], [ -121.030820029999973, 50.14875162600007 ], [ -121.030789912, 50.149484830000112 ], [ -121.030699500999944, 50.150098796000137 ], [ -121.030344981, 50.150092783000034 ], [ -121.03031836199996, 50.150740567000099 ], [ -121.030518269999902, 50.150749596000033 ], [ -121.030512388999952, 50.150803307000068 ], [ -121.030595203999923, 50.150807048000061 ], [ -121.030326749000011, 50.152629951000023 ], [ -121.030665112999955, 50.153483177000098 ], [ -121.030728491999966, 50.153643012000018 ], [ -121.030561086999953, 50.15352180700004 ], [ -121.029899410999931, 50.153268294000071 ], [ -121.02798621399991, 50.153154407000045 ], [ -121.027363021999989, 50.153027602000051 ], [ -121.026367102999941, 50.152722786000126 ], [ -121.025985693999957, 50.152446501000036 ], [ -121.023901495999922, 50.151718708000097 ], [ -121.023109, 50.150922594000065 ], [ -121.022725206999979, 50.150744583000069 ], [ -121.022414103999949, 50.150469711000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998879457577633", "sL_AssetLoss": "350.723", "sL_BldgLoss": "350.33", "sL_StrLoss": "347", "sL_NStrLoss": "3.33", "sL_ContLoss": "0.393", "geom_point": "0101000020E61000000ADF14B9143D5EC059FED714A3FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.951808037999953, 49.963992666000109 ], [ -120.957368632999973, 49.964248766000075 ], [ -120.95697183599998, 49.967835992000026 ], [ -120.951410806999959, 49.967579873000069 ], [ -120.951808037999953, 49.963992666000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999629438300692", "sL_AssetLoss": "127.3742", "sL_BldgLoss": "127.327", "sL_StrLoss": "127", "sL_NStrLoss": "0.327", "sL_ContLoss": "0.0472", "geom_point": "0101000020E61000008F6D3A7E3F375EC06457FF8C77114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.862152413999922, 50.136448395000087 ], [ -120.861872022999947, 50.136434105000085 ], [ -120.861008582999929, 50.136660602000063 ], [ -120.86047481899999, 50.136687595000126 ], [ -120.860100104999958, 50.136607897000076 ], [ -120.859980213999975, 50.13650679900006 ], [ -120.860224690999985, 50.136035394000061 ], [ -120.860507854999952, 50.135682809000102 ], [ -120.862149945999946, 50.13575953300009 ], [ -120.862139021999951, 50.13585607100007 ], [ -120.863764397999915, 50.135931990000117 ], [ -120.863739446999929, 50.136152567000103 ], [ -120.866624318000021, 50.136287255000099 ], [ -120.866544212999955, 50.136502502000099 ], [ -120.866193188999958, 50.136801614000078 ], [ -120.86573640599994, 50.13700950800007 ], [ -120.865030105999978, 50.137166207000107 ], [ -120.863500199999976, 50.137291508000047 ], [ -120.862513220999958, 50.136787302000123 ], [ -120.862152413999922, 50.136448395000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999032442325402", "sL_AssetLoss": "171.566", "sL_BldgLoss": "171.4", "sL_StrLoss": "170", "sL_NStrLoss": "1.4", "sL_ContLoss": "0.166", "geom_point": "0101000020E61000007764517D8C3A5EC06710FEC988F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.913535959999962, 49.932076067000068 ], [ -120.916361138999932, 49.932207307000098 ], [ -120.915961400999919, 49.935794541000092 ], [ -120.914608932999954, 49.935731723000103 ], [ -120.914576454999988, 49.93602307200009 ], [ -120.914154439999919, 49.936003467000013 ], [ -120.914134710999946, 49.935939399000112 ], [ -120.913933107999966, 49.93544329300002 ], [ -120.913841381999973, 49.935217508000065 ], [ -120.913525849999957, 49.934441 ], [ -120.913276802, 49.933828002000077 ], [ -120.913245594, 49.933556203000109 ], [ -120.913296401999972, 49.93308799600004 ], [ -120.913354675999969, 49.932896932000077 ], [ -120.913549600999957, 49.932257797000034 ], [ -120.913535959999962, 49.932076067000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "0.99928027197901", "sL_AssetLoss": "434.8865", "sL_BldgLoss": "434.5735", "sL_StrLoss": "431.0835", "sL_NStrLoss": "3.49", "sL_ContLoss": "0.313", "geom_point": "0101000020E6100000FBB5719B1B385EC063FD3428F90D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.875792910999962, 50.105699144 ], [ -120.88137038499994, 50.105959046000081 ], [ -120.880966364999935, 50.109545315000027 ], [ -120.879136070999962, 50.109460058000067 ], [ -120.878823525999977, 50.112232958000078 ], [ -120.877273111999941, 50.11216071500008 ], [ -120.877260462999985, 50.112272895000046 ], [ -120.871682239, 50.112012787000069 ], [ -120.872087011999923, 50.108426563000123 ], [ -120.873637291999898, 50.10849888100006 ], [ -120.873649947999979, 50.108386701000086 ], [ -120.875480188999958, 50.108472049000106 ], [ -120.875792910999962, 50.105699144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999549790504342", "sL_AssetLoss": "401.3687", "sL_BldgLoss": "401.188", "sL_StrLoss": "400", "sL_NStrLoss": "1.188", "sL_ContLoss": "0.1807", "geom_point": "0101000020E61000001907B02BDA415EC015A6B58AFA134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.030284824999967, 50.15504332700008 ], [ -121.030304285999989, 50.154865575000088 ], [ -121.028949083999947, 50.154804363000054 ], [ -121.02896751499999, 50.154636056000122 ], [ -121.026097898000017, 50.154506386000037 ], [ -121.026109432999959, 50.154401113000063 ], [ -121.025585082999982, 50.154377411000027 ], [ -121.025360679999892, 50.154367266000101 ], [ -121.025377846999916, 50.154210619000047 ], [ -121.02538754899993, 50.154122100000031 ], [ -121.025260743, 50.154116368000096 ], [ -121.024541368999962, 50.154083844000112 ], [ -121.024596410999933, 50.153581676000087 ], [ -121.024616525999988, 50.153398162000038 ], [ -121.024353640999891, 50.153386275000067 ], [ -121.023903693999927, 50.153365928000042 ], [ -121.023938124999944, 50.15305183100002 ], [ -121.02401155299998, 50.152381984000094 ], [ -121.024081896999988, 50.152440787000074 ], [ -121.024902811999979, 50.152895088000072 ], [ -121.025845583999981, 50.153154399000087 ], [ -121.027176690999966, 50.153456301000091 ], [ -121.029114104999962, 50.153668511000021 ], [ -121.029777686999978, 50.153832300000076 ], [ -121.030368411999973, 50.154156994000026 ], [ -121.030676187999944, 50.154460401000058 ], [ -121.031106401, 50.155618207000053 ], [ -121.032193507999978, 50.15605120100011 ], [ -121.032618468999942, 50.156420612000083 ], [ -121.032553655999934, 50.157012845000025 ], [ -121.0323644599999, 50.158741530000036 ], [ -121.02677966099999, 50.158489296000063 ], [ -121.027110141999984, 50.155472964000083 ], [ -121.027172612999891, 50.154902729000099 ], [ -121.030284824999967, 50.15504332700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998723536567404", "sL_AssetLoss": "366.638", "sL_BldgLoss": "366.17", "sL_StrLoss": "362", "sL_NStrLoss": "4.17", "sL_ContLoss": "0.468", "geom_point": "0101000020E6100000E86AE9D9053D5EC0BA2D910B4EFC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.950900080999929, 49.969210058 ], [ -120.956461304999934, 49.969466202000064 ], [ -120.956064392999963, 49.973053400000069 ], [ -120.950502732999979, 49.972797238000084 ], [ -120.950900080999929, 49.969210058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999395826762209", "sL_AssetLoss": "450.202", "sL_BldgLoss": "449.93", "sL_StrLoss": "448", "sL_NStrLoss": "1.93", "sL_ContLoss": "0.272", "geom_point": "0101000020E6100000FD6ED30268435EC0DF9B8D326E0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.050216495999962, 50.114702227000052 ], [ -121.050280973999946, 50.114110367000087 ], [ -121.050260135999949, 50.114109429000081 ], [ -121.050650854999944, 50.110522570000093 ], [ -121.056229901999984, 50.110773611000077 ], [ -121.056165505999914, 50.11136547600006 ], [ -121.056186342999979, 50.111366413000091 ], [ -121.055796051999948, 50.114953288000102 ], [ -121.050216495999962, 50.114702227000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999544835433872", "sL_AssetLoss": "290.005", "sL_BldgLoss": "289.873", "sL_StrLoss": "289", "sL_NStrLoss": "0.873", "sL_ContLoss": "0.132", "geom_point": "0101000020E6100000336BAD58113B5EC00F8401D7D7F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.922494181999966, 49.918200309000056 ], [ -120.924956719999969, 49.918314542000061 ], [ -120.924557778999883, 49.921901874000092 ], [ -120.924376907999957, 49.921893486000073 ], [ -120.924291210999982, 49.922663979000042 ], [ -120.920803545999973, 49.922502171000055 ], [ -120.920690683999979, 49.922116304000127 ], [ -120.920375199999938, 49.921345801000037 ], [ -120.920495987999985, 49.920825907000037 ], [ -120.920874485999931, 49.920455589000049 ], [ -120.921947118, 49.919790506000083 ], [ -120.922437594999934, 49.919421693000096 ], [ -120.922639304999933, 49.918940303000021 ], [ -120.922494181999966, 49.918200309000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998150774183658", "sL_AssetLoss": "208.736", "sL_BldgLoss": "208.35", "sL_StrLoss": "207", "sL_NStrLoss": "1.35", "sL_ContLoss": "0.386", "geom_point": "0101000020E6100000CA4F2EB61E3B5EC04D7C9C0698F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.920512632999944, 49.948446990000072 ], [ -120.92602040299991, 49.948702329000049 ], [ -120.926068044999951, 49.948732676000162 ], [ -120.92567204099997, 49.952291869000128 ], [ -120.924305429, 49.9522285400001 ], [ -120.924293489999982, 49.95219488700009 ], [ -120.924092487999971, 49.951741205000069 ], [ -120.923670787999967, 49.951225897000022 ], [ -120.923276789999946, 49.95084979800005 ], [ -120.922391514, 49.950332800000048 ], [ -120.921651384999933, 49.949992015000063 ], [ -120.920818275999977, 49.949665546000084 ], [ -120.920395368999962, 49.949499848000109 ], [ -120.920512632999944, 49.948446990000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.99954048563413", "sL_AssetLoss": "413.48", "sL_BldgLoss": "413.29", "sL_StrLoss": "412", "sL_NStrLoss": "1.29", "sL_ContLoss": "0.19", "geom_point": "0101000020E6100000532DB7EE05435EC09515DC7222104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.044190657999977, 50.129818782000036 ], [ -121.044278606999981, 50.127661516000082 ], [ -121.042600728999957, 50.127633236000136 ], [ -121.042633734999981, 50.126824262000099 ], [ -121.043053196999978, 50.126831334000023 ], [ -121.04306419699995, 50.12656167500009 ], [ -121.04390311899999, 50.126575815000074 ], [ -121.043914111999953, 50.126306157000073 ], [ -121.044333569999964, 50.126313225000068 ], [ -121.044344562999981, 50.126043567000089 ], [ -121.045602930999948, 50.126064759000023 ], [ -121.045624900999897, 50.125525441000072 ], [ -121.04604435199991, 50.125532503000045 ], [ -121.046066316999955, 50.124993185000029 ], [ -121.046485762999978, 50.125000245000038 ], [ -121.046496741999931, 50.124730586000069 ], [ -121.046916187999983, 50.124737644000071 ], [ -121.046927163999953, 50.124467985000109 ], [ -121.047346607999913, 50.124475041000053 ], [ -121.047368556999956, 50.123935724000013 ], [ -121.04778799499995, 50.123942778000036 ], [ -121.04785382399993, 50.12232482400006 ], [ -121.049112096999977, 50.12234597800007 ], [ -121.049101132999965, 50.122615636000049 ], [ -121.049520559999976, 50.122622685000096 ], [ -121.049443823999951, 50.124510300000075 ], [ -121.04902438, 50.124503251000107 ], [ -121.049013415999951, 50.124772910000061 ], [ -121.048593968999938, 50.124765860000089 ], [ -121.048583002, 50.125035518000125 ], [ -121.04816355199999, 50.125028467000085 ], [ -121.048141611999966, 50.125567785000051 ], [ -121.048561064999944, 50.125574837000066 ], [ -121.048572032999914, 50.12530517800014 ], [ -121.049830386999986, 50.125326325000017 ], [ -121.049852307999956, 50.124787006000091 ], [ -121.050271752999933, 50.12479405200007 ], [ -121.050282711999955, 50.124524393000058 ], [ -121.050702155999929, 50.124531437000044 ], [ -121.050713111999968, 50.124261778000069 ], [ -121.051971437999924, 50.124282900000047 ], [ -121.05196267399999, 50.124498765000077 ], [ -121.05196010399996, 50.12456204600003 ], [ -121.051905743999953, 50.12590085800008 ], [ -121.051066830999972, 50.125886777000069 ], [ -121.05105587599999, 50.126156436000031 ], [ -121.05021696099999, 50.126142349000069 ], [ -121.050206001999967, 50.126412009000077 ], [ -121.048947618999989, 50.126390866000115 ], [ -121.048936654, 50.126660524000094 ], [ -121.04767826699999, 50.126639368000056 ], [ -121.047667293999936, 50.126909026000078 ], [ -121.047247828999957, 50.126901971000088 ], [ -121.047236853999934, 50.12717162900001 ], [ -121.046817385999958, 50.127164572000019 ], [ -121.046806408999942, 50.127434232000105 ], [ -121.045967471999944, 50.127420113000071 ], [ -121.045868613999971, 50.129847039000019 ], [ -121.044190657999977, 50.129818782000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999441218556472", "sL_AssetLoss": "600.5926", "sL_BldgLoss": "600.257", "sL_StrLoss": "598", "sL_NStrLoss": "2.257", "sL_ContLoss": "0.3356", "geom_point": "0101000020E61000006626203FBE3F5EC0D42268ED32114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.990846818999927, 50.136042170000096 ], [ -120.991242411999949, 50.132455627000056 ], [ -120.99552352699996, 50.132650512000055 ], [ -120.995546930999964, 50.132438128000082 ], [ -121.00112835799996, 50.132691953000041 ], [ -121.000733543999957, 50.136278531000123 ], [ -121.000453949999951, 50.136265823000059 ], [ -121.00041360799996, 50.136248989000137 ], [ -121.00016179099994, 50.136227603000066 ], [ -120.999868550999977, 50.136239213000103 ], [ -120.996452064999971, 50.136083850000048 ], [ -120.996428662999961, 50.136296233000095 ], [ -120.990846818999927, 50.136042170000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.998274884786948", "sL_AssetLoss": "405.77", "sL_BldgLoss": "405.07", "sL_StrLoss": "399", "sL_NStrLoss": "6.07", "sL_ContLoss": "0.7", "geom_point": "0101000020E610000082DA775ECD445EC010864BD848F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.07245243899996, 49.883116495000131 ], [ -121.078003869999961, 49.883366509000034 ], [ -121.077617236999941, 49.886954562000042 ], [ -121.072065370999951, 49.88670453000011 ], [ -121.07245243899996, 49.883116495000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.998480453101257", "sL_AssetLoss": "398.145", "sL_BldgLoss": "397.54", "sL_StrLoss": "392", "sL_NStrLoss": "5.54", "sL_ContLoss": "0.605", "geom_point": "0101000020E6100000D6568905803A5EC044E6C22F12F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.914682671999913, 49.910742206000123 ], [ -120.914752929999963, 49.910111549000071 ], [ -120.91334202099992, 49.910045962000062 ], [ -120.913248712999959, 49.909482600000096 ], [ -120.913331405999941, 49.909166393000106 ], [ -120.913495195999971, 49.908885595000044 ], [ -120.913504683, 49.908800680000155 ], [ -120.913539310999965, 49.908490101000034 ], [ -120.913458797999965, 49.908210485000076 ], [ -120.913328897000014, 49.907935799000079 ], [ -120.913257659999914, 49.907831754000028 ], [ -120.913054109999919, 49.907534489000057 ], [ -120.913031898999947, 49.907408082000089 ], [ -120.913073819999966, 49.907169400000022 ], [ -120.913023475999935, 49.907020099000135 ], [ -120.912887848999986, 49.906859637000117 ], [ -120.912850517999971, 49.906815940000101 ], [ -120.912764397999979, 49.906715067000036 ], [ -120.912597566999949, 49.906334244000035 ], [ -120.912541899999965, 49.906207110000018 ], [ -120.912502397999958, 49.906100291000087 ], [ -120.912472589999979, 49.906019719000064 ], [ -120.912275929999907, 49.905487971000085 ], [ -120.91212303399999, 49.905269898000064 ], [ -120.911949848999953, 49.905112250000045 ], [ -120.911815157999968, 49.904989658 ], [ -120.911251277999938, 49.904539739000043 ], [ -120.91117225, 49.904446942000035 ], [ -120.911388468, 49.904457 ], [ -120.911617504999967, 49.902402060000092 ], [ -120.911956642999925, 49.902417835000143 ], [ -120.912040392999984, 49.902746991000093 ], [ -120.912485193999927, 49.903060309000075 ], [ -120.912923201999945, 49.903248302000108 ], [ -120.913795192999928, 49.904055906000082 ], [ -120.915753194999965, 49.905450201000036 ], [ -120.916013483999933, 49.905894503000049 ], [ -120.916004992999945, 49.906212005000043 ], [ -120.915637846999942, 49.906194943000067 ], [ -120.915598865999982, 49.906544938000081 ], [ -120.915995598, 49.906563376000094 ], [ -120.91599280299999, 49.906667887000012 ], [ -120.915869292999929, 49.906981201000058 ], [ -120.915343792999977, 49.907844300000122 ], [ -120.915483186999964, 49.908161897000063 ], [ -120.91626549399993, 49.908768592000115 ], [ -120.916407109999938, 49.909004986000078 ], [ -120.916263267999966, 49.910815659000015 ], [ -120.914682671999913, 49.910742206000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.99931494556772", "sL_AssetLoss": "456.898", "sL_BldgLoss": "456.585", "sL_StrLoss": "454", "sL_NStrLoss": "2.585", "sL_ContLoss": "0.313", "geom_point": "0101000020E6100000EEA309CAE33E5EC0124F7633A3004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.98342939399997, 50.007347707000065 ], [ -120.983439324999964, 50.007110472000072 ], [ -120.980194086999958, 50.006961966000091 ], [ -120.980252300999965, 50.006433763000075 ], [ -120.978740071999951, 50.006364528000091 ], [ -120.979135491999955, 50.00277741000005 ], [ -120.97951141399993, 50.002794622000074 ], [ -120.979619224999965, 50.001816419000079 ], [ -120.981231889999918, 50.00189024600008 ], [ -120.98119847, 50.002594441000063 ], [ -120.981141744999888, 50.003788270000072 ], [ -120.98508013, 50.003303817000067 ], [ -120.98645037199995, 50.003388246000021 ], [ -120.986821502999973, 50.003393836000086 ], [ -120.986754990999941, 50.004103531000112 ], [ -120.986521236999963, 50.006597123000098 ], [ -120.985831746999963, 50.00656559900002 ], [ -120.985760077999927, 50.007216613000082 ], [ -120.984693051999926, 50.007167818000049 ], [ -120.984684613999974, 50.007369523000122 ], [ -120.984280585999926, 50.007362503000103 ], [ -120.98342939399997, 50.007347707000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999709868806668", "sL_AssetLoss": "255.4017", "sL_BldgLoss": "255.3276", "sL_StrLoss": "255", "sL_NStrLoss": "0.3276", "sL_ContLoss": "0.0741", "geom_point": "0101000020E6100000D7D867C609385EC0C49E2C6BD10E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.873009665, 50.113842799000103 ], [ -120.878588120999936, 50.114102839000054 ], [ -120.878183809999925, 50.11768906 ], [ -120.872604917, 50.11742900100009 ], [ -120.873009665, 50.113842799000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999423247413677", "sL_AssetLoss": "151.7115", "sL_BldgLoss": "151.624", "sL_StrLoss": "151", "sL_NStrLoss": "0.624", "sL_ContLoss": "0.0875", "geom_point": "0101000020E61000005CD49B0F973A5EC04D6A6803B0F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.912554887999988, 49.902445659000136 ], [ -120.917170384999977, 49.902660218000051 ], [ -120.916770969999931, 49.906247599000032 ], [ -120.916210823999918, 49.906221570000049 ], [ -120.91621309099996, 49.906078198000102 ], [ -120.91615691, 49.905762086000024 ], [ -120.915869395999934, 49.905326306000099 ], [ -120.913618901999911, 49.90358590500005 ], [ -120.913489994999935, 49.903339516000059 ], [ -120.913178617999975, 49.903135807000048 ], [ -120.912554887999988, 49.902445659000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999003439383298", "sL_AssetLoss": "360.239", "sL_BldgLoss": "359.88", "sL_StrLoss": "357", "sL_NStrLoss": "2.88", "sL_ContLoss": "0.359", "geom_point": "0101000020E6100000758B86AD95415EC04AEF1B5FFB114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.025967924000028, 50.138755388000064 ], [ -121.027797047999911, 50.138838082000078 ], [ -121.02675660299991, 50.139489103000109 ], [ -121.026446306999986, 50.139897799000018 ], [ -121.026270891999928, 50.140766613000054 ], [ -121.026804196999976, 50.141387488000149 ], [ -121.026668996999916, 50.141970009000069 ], [ -121.026309323999968, 50.142375227000109 ], [ -121.02262337799999, 50.142208519000064 ], [ -121.022936380999951, 50.139353036000038 ], [ -121.023016517999963, 50.138621891000078 ], [ -121.025967924000028, 50.138755388000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999203801768497", "sL_AssetLoss": "320.272", "sL_BldgLoss": "320.017", "sL_StrLoss": "318", "sL_NStrLoss": "2.017", "sL_ContLoss": "0.255", "geom_point": "0101000020E6100000FA8F750640425EC0502C435E07114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.034796233999913, 50.133707780000101 ], [ -121.034928805999982, 50.130471901000071 ], [ -121.034764805999941, 50.130469124000065 ], [ -121.034791788999968, 50.1302345060001 ], [ -121.03414281000002, 50.128982694000044 ], [ -121.034104887999916, 50.128576797000029 ], [ -121.034099794999918, 50.128568958000074 ], [ -121.035006127999978, 50.128584304000121 ], [ -121.03499508199998, 50.128853961000111 ], [ -121.035414560999968, 50.128861060000112 ], [ -121.035403517999939, 50.129130717000088 ], [ -121.035822997999944, 50.129137815000043 ], [ -121.035800914999939, 50.129677129000115 ], [ -121.03622040099999, 50.129684227000041 ], [ -121.036198322999908, 50.130223540000031 ], [ -121.036617813999925, 50.130230635000089 ], [ -121.036573663999931, 50.131309263000105 ], [ -121.03699316299999, 50.131316357000046 ], [ -121.037015232999963, 50.130777043000109 ], [ -121.038273718999932, 50.130798317000021 ], [ -121.038218577999942, 50.132146603000109 ], [ -121.037799070999981, 50.132139513000041 ], [ -121.037754943999957, 50.133218140000054 ], [ -121.037335427999935, 50.133211049000053 ], [ -121.037302323999953, 50.134020020000079 ], [ -121.036882801000019, 50.134012926 ], [ -121.036871763999969, 50.1342825830001 ], [ -121.036452237999981, 50.134275487000068 ], [ -121.036441197999963, 50.134545145000068 ], [ -121.035602141999973, 50.134530950000098 ], [ -121.035591097999941, 50.134800606000105 ], [ -121.035171566999963, 50.13479350700004 ], [ -121.035160520999966, 50.13506316300009 ], [ -121.034740987999939, 50.135056061000085 ], [ -121.034729936999952, 50.135325717000121 ], [ -121.034310403999925, 50.135318615000131 ], [ -121.034299350999945, 50.135588271000124 ], [ -121.03387981499999, 50.135581167000062 ], [ -121.033870611999973, 50.135805661000035 ], [ -121.033868759999933, 50.135850822000066 ], [ -121.033561213, 50.135845613000079 ], [ -121.033449221999945, 50.135843717000071 ], [ -121.033448507999978, 50.13586111100004 ], [ -121.033416048999953, 50.136652685000051 ], [ -121.032996503999968, 50.136645577000074 ], [ -121.0329743839999, 50.137184889000153 ], [ -121.031659232999985, 50.137162599000092 ], [ -121.031296182999967, 50.137156443000038 ], [ -121.031329391999975, 50.136347475000044 ], [ -121.031748934999925, 50.136354589000121 ], [ -121.031760873999986, 50.136063678000021 ], [ -121.031793199999967, 50.135275965000062 ], [ -121.032212733999984, 50.135283077000082 ], [ -121.032223797999933, 50.135013422000036 ], [ -121.032643327999892, 50.135020532000048 ], [ -121.032654389999934, 50.134750876000119 ], [ -121.033073918999946, 50.134757984000068 ], [ -121.03308497799999, 50.13448832800006 ], [ -121.033504504999968, 50.134495436000059 ], [ -121.03351556099993, 50.134225780000079 ], [ -121.033935084999939, 50.134232885000117 ], [ -121.033946138999923, 50.133963229000123 ], [ -121.034365661999971, 50.133970333000072 ], [ -121.034376712999958, 50.133700676000089 ], [ -121.034796233999913, 50.133707780000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999078568200626", "sL_AssetLoss": "170.387", "sL_BldgLoss": "170.23", "sL_StrLoss": "169", "sL_NStrLoss": "1.23", "sL_ContLoss": "0.157", "geom_point": "0101000020E61000009FE60554CF335EC04CE826186B0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.807809967999958, 50.10501195900008 ], [ -120.807769422999925, 50.1035252880001 ], [ -120.808166098999948, 50.103544029000098 ], [ -120.808158878999933, 50.103607210000106 ], [ -120.808698785999979, 50.103632716000035 ], [ -120.808654172999923, 50.104023199000032 ], [ -120.810288530999969, 50.10405404700002 ], [ -120.810263936999945, 50.10459328600006 ], [ -120.81194076299991, 50.104624912000148 ], [ -120.811916187999955, 50.105164151000118 ], [ -120.812335398999963, 50.10517205400005 ], [ -120.812324053999959, 50.105421013000097 ], [ -120.811040878999961, 50.105508566000019 ], [ -120.807829479999924, 50.105727592000079 ], [ -120.807809967999958, 50.10501195900008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999381126350043", "sL_AssetLoss": "611.1102", "sL_BldgLoss": "610.732", "sL_StrLoss": "608", "sL_NStrLoss": "2.732", "sL_ContLoss": "0.3782", "geom_point": "0101000020E61000005F96555C853E5EC013006FC3A0104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.973507053000034, 50.131953208000034 ], [ -120.973556518999928, 50.13150627300007 ], [ -120.972342443999949, 50.131450778000058 ], [ -120.972461127999964, 50.13037868100006 ], [ -120.972739454999925, 50.127864279000079 ], [ -120.975662851999971, 50.127997884000166 ], [ -120.975703542999952, 50.127630049000039 ], [ -120.981284269999946, 50.127884881000078 ], [ -120.981107042999938, 50.129488713000065 ], [ -120.980887932999948, 50.131471410000103 ], [ -120.980691425999979, 50.131462442000029 ], [ -120.980616859999955, 50.132137115000106 ], [ -120.979103786999957, 50.132068050000029 ], [ -120.97908829799999, 50.132208151000036 ], [ -120.973507053000034, 50.131953208000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999670976449878", "sL_AssetLoss": "258.6441", "sL_BldgLoss": "258.559", "sL_StrLoss": "258", "sL_NStrLoss": "0.559", "sL_ContLoss": "0.0851", "geom_point": "0101000020E610000082CC8C86653F5EC01ADCD6161E104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.987979232000015, 50.123997828 ], [ -120.993559582999978, 50.124252040000052 ], [ -120.993164244999932, 50.127838631000088 ], [ -120.98758345499999, 50.127584400000046 ], [ -120.987979232000015, 50.123997828 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999176064045649", "sL_AssetLoss": "325.268", "sL_BldgLoss": "325", "sL_StrLoss": "323", "sL_NStrLoss": "2", "sL_ContLoss": "0.268", "geom_point": "0101000020E6100000401A6736BC415EC080D31EA37A114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.025259446999925, 50.134729634000045 ], [ -121.029472929999912, 50.134920124000054 ], [ -121.029503596999959, 50.134992787000044 ], [ -121.029562687999928, 50.135938511000077 ], [ -121.029542216999957, 50.135974698000069 ], [ -121.029109106999925, 50.136740303000103 ], [ -121.028689088999926, 50.138136096000032 ], [ -121.028341495999953, 50.13840100700002 ], [ -121.028109666999981, 50.138462923000112 ], [ -121.026189752999926, 50.138376128000083 ], [ -121.02486651699999, 50.138316288000041 ], [ -121.025259446999925, 50.134729634000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999024319442653", "sL_AssetLoss": "496.064", "sL_BldgLoss": "495.58", "sL_StrLoss": "492", "sL_NStrLoss": "3.58", "sL_ContLoss": "0.484", "geom_point": "0101000020E61000005F2FA8CA12395EC0BBC99850FB004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.891953670999968, 50.005249305000113 ], [ -120.892053801999978, 50.005120855000065 ], [ -120.892425673999952, 50.004773127000085 ], [ -120.892738803999976, 50.004548275000062 ], [ -120.892850027999913, 50.004468391000067 ], [ -120.893696312999936, 50.00397653400011 ], [ -120.894169532999925, 50.003998571000096 ], [ -120.8940247799999, 50.00528982700007 ], [ -120.89613605199996, 50.005388121000095 ], [ -120.895734083999969, 50.008974925000125 ], [ -120.890870850999988, 50.008748449000095 ], [ -120.890682453999943, 50.010427740000033 ], [ -120.885727073999988, 50.010196750000034 ], [ -120.885735172999929, 50.010188203000048 ], [ -120.885906603999942, 50.0100073770001 ], [ -120.886777170999963, 50.0087941560001 ], [ -120.887012828999929, 50.008542946000055 ], [ -120.887020238999966, 50.00853505900011 ], [ -120.887159829999973, 50.008437914000076 ], [ -120.887286257999975, 50.008372880000067 ], [ -120.887550216999983, 50.008237085000147 ], [ -120.888239431999978, 50.007977088000139 ], [ -120.888613506999931, 50.007835956000051 ], [ -120.88909930200002, 50.007619729000076 ], [ -120.889591280999966, 50.007336197000079 ], [ -120.890521537999945, 50.006711630000119 ], [ -120.890835473999957, 50.006458963000114 ], [ -120.890922782999937, 50.006388687000047 ], [ -120.89151470099992, 50.005812340000034 ], [ -120.891953670999968, 50.005249305000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.998360576691258", "sL_AssetLoss": "622.17", "sL_BldgLoss": "621.15", "sL_StrLoss": "612", "sL_NStrLoss": "9.15", "sL_ContLoss": "1.02", "geom_point": "0101000020E61000000D43584B49415EC0ECBFCE4D1BD84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.017724990999938, 49.686160878000095 ], [ -121.023252332999945, 49.686413736000077 ], [ -121.022863080999983, 49.690002579000058 ], [ -121.02252851899999, 49.689987282000061 ], [ -121.022472292999936, 49.690505588000079 ], [ -121.016944463999963, 49.690252691000097 ], [ -121.017334179999978, 49.686663870000082 ], [ -121.017668715999903, 49.686679183000145 ], [ -121.017724990999938, 49.686160878000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998925434104982", "sL_AssetLoss": "356.423", "sL_BldgLoss": "356.04", "sL_StrLoss": "353", "sL_NStrLoss": "3.04", "sL_ContLoss": "0.383", "geom_point": "0101000020E61000003F385D1E44395EC0974DCAEE93074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.892198066999967, 50.05727920600004 ], [ -120.897769707999942, 50.0575382930001 ], [ -120.89736740799998, 50.061124853000095 ], [ -120.891795330999983, 50.060865747 ], [ -120.892198066999967, 50.05727920600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999555937845285", "sL_AssetLoss": "285.996", "sL_BldgLoss": "285.869", "sL_StrLoss": "285", "sL_NStrLoss": "0.869", "sL_ContLoss": "0.127", "geom_point": "0101000020E6100000A3DA549B473A5EC0368DB30A17124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.907570342999989, 50.139540177000129 ], [ -120.913152146999948, 50.13979845700009 ], [ -120.912750332999977, 50.143384683000114 ], [ -120.908680169999968, 50.143196378000049 ], [ -120.909136807999971, 50.142089702000071 ], [ -120.909048419, 50.141575497000083 ], [ -120.9086977199999, 50.141245097000102 ], [ -120.907809393999969, 50.140760914000111 ], [ -120.907447048999941, 50.140639432000064 ], [ -120.907570342999989, 50.139540177000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999585507917698", "sL_AssetLoss": "133.4163", "sL_BldgLoss": "133.361", "sL_StrLoss": "133", "sL_NStrLoss": "0.361", "sL_ContLoss": "0.0553", "geom_point": "0101000020E61000003C280FA84A415EC022AB3A2F3E134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.022545436999962, 50.151961003000039 ], [ -121.022546419999969, 50.151952041000122 ], [ -121.02253323199993, 50.151951444000076 ], [ -121.021698307999955, 50.151913672000028 ], [ -121.021747550999976, 50.151464641000096 ], [ -121.018745836999969, 50.151328793000047 ], [ -121.018831168999924, 50.150551132000082 ], [ -121.018454678999944, 50.150534087000068 ], [ -121.018679949000017, 50.14848113700009 ], [ -121.01871945, 50.148121143000026 ], [ -121.0188482199999, 50.146947514000018 ], [ -121.019017626999926, 50.146955183000038 ], [ -121.018994076999945, 50.147514493000081 ], [ -121.019195181999947, 50.148381801000056 ], [ -121.019845167999904, 50.149239421000082 ], [ -121.01988600199995, 50.149293297000042 ], [ -121.02088398099994, 50.150219092000071 ], [ -121.023093800999973, 50.151614801000058 ], [ -121.023643060999973, 50.152073952000059 ], [ -121.022631224999941, 50.152028187000091 ], [ -121.022538530999924, 50.152023994000075 ], [ -121.022545436999962, 50.151961003000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.998822804566027", "sL_AssetLoss": "563.203", "sL_BldgLoss": "562.54", "sL_StrLoss": "557", "sL_NStrLoss": "5.54", "sL_ContLoss": "0.663", "geom_point": "0101000020E61000003B308861EA475EC09D6CFB05D8F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.120712044999948, 49.883656656000113 ], [ -121.12079578799991, 49.882872598000041 ], [ -121.120714193999945, 49.882868957000056 ], [ -121.121097413999934, 49.879280732 ], [ -121.12664864599999, 49.879528282000102 ], [ -121.126565007999943, 49.880312347000086 ], [ -121.126646597999951, 49.880315984000099 ], [ -121.126263804999951, 49.883904223000087 ], [ -121.120712044999948, 49.883656656000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999698514498712", "sL_AssetLoss": "233.5104", "sL_BldgLoss": "233.44", "sL_StrLoss": "233", "sL_NStrLoss": "0.44", "sL_ContLoss": "0.0704", "geom_point": "0101000020E61000006F07F205D0375EC0E193358777114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.869202744999939, 50.134587262000075 ], [ -120.874783723999968, 50.134847488000034 ], [ -120.874378927999928, 50.138433597000073 ], [ -120.868797512999919, 50.13817335200013 ], [ -120.868834217999904, 50.137848564000059 ], [ -120.870064503999942, 50.13755639500009 ], [ -120.870495812999934, 50.137312890000047 ], [ -120.870596202999977, 50.136945400000073 ], [ -120.870468310999968, 50.136681907000117 ], [ -120.869604507999952, 50.135974088000069 ], [ -120.869060742999977, 50.135843977000043 ], [ -120.869202744999939, 50.134587262000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998012598106916", "sL_AssetLoss": "445.305", "sL_BldgLoss": "444.42", "sL_StrLoss": "439", "sL_NStrLoss": "5.42", "sL_ContLoss": "0.885", "geom_point": "0101000020E610000064BAE72B0E415EC06FADC47656D74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.013939669999957, 49.680426773000093 ], [ -121.019466301999927, 49.680679824000094 ], [ -121.01907680199993, 49.684268684000045 ], [ -121.013671409999972, 49.684021189000113 ], [ -121.013671974999951, 49.683996163000096 ], [ -121.013691000999984, 49.683142289000045 ], [ -121.013972342999963, 49.68195131500007 ], [ -121.013406099999926, 49.681902887000021 ], [ -121.013593257999972, 49.681072537000041 ], [ -121.01359754500001, 49.681072609000068 ], [ -121.013598495999958, 49.681049300000012 ], [ -121.013653847999947, 49.680803713000081 ], [ -121.013898261999898, 49.680807907000016 ], [ -121.013939669999957, 49.680426773000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999491936719005", "sL_AssetLoss": "460.9662", "sL_BldgLoss": "460.732", "sL_StrLoss": "459", "sL_NStrLoss": "1.732", "sL_ContLoss": "0.2342", "geom_point": "0101000020E61000004093D474033B5EC0C05EBC7AF0114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.922149258999951, 50.143291228000081 ], [ -120.922268601999946, 50.142224173000052 ], [ -120.917097628999954, 50.141985356000077 ], [ -120.917499088999961, 50.138399107000048 ], [ -120.923080808999913, 50.138656884000078 ], [ -120.922828401999965, 50.140914186000039 ], [ -120.924376244999948, 50.14098561900002 ], [ -120.924725712999972, 50.137859275000075 ], [ -120.930007913999987, 50.138102882000105 ], [ -120.930307408999951, 50.13811668700005 ], [ -120.930292821999956, 50.138247336000113 ], [ -120.929870894999951, 50.13844079900008 ], [ -120.929526943999946, 50.138487787000088 ], [ -120.928306509999942, 50.138654504000037 ], [ -120.927016186999964, 50.139073208000063 ], [ -120.926407819999923, 50.139188603000051 ], [ -120.92592047899997, 50.139493298000104 ], [ -120.9259227899999, 50.139736894000102 ], [ -120.926406289999974, 50.140870490000061 ], [ -120.926221717999965, 50.141586905000068 ], [ -120.925935999000032, 50.14171648700011 ], [ -120.924758695999984, 50.141730808000027 ], [ -120.923872218999946, 50.141850407000106 ], [ -120.923098812999967, 50.142259203000044 ], [ -120.922416601999913, 50.142840189000019 ], [ -120.922149258999951, 50.143291228000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.998813887691263", "sL_AssetLoss": "540.421", "sL_BldgLoss": "539.78", "sL_StrLoss": "535", "sL_NStrLoss": "4.78", "sL_ContLoss": "0.641", "geom_point": "0101000020E6100000BC87B629BF3A5EC07E72352E73F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.9193161199999, 49.918827277000048 ], [ -120.919356258999926, 49.918466719000037 ], [ -120.913956158999923, 49.918215869000029 ], [ -120.914355900999979, 49.914628556000039 ], [ -120.91959632, 49.914871994000059 ], [ -120.919906692999959, 49.914918808000039 ], [ -120.919556606999947, 49.918063967000059 ], [ -120.922103759000024, 49.918182193000057 ], [ -120.922183010999959, 49.918545799000078 ], [ -120.922102901999935, 49.919082690000096 ], [ -120.92125750199996, 49.919985608000076 ], [ -120.92037789099993, 49.920635103000038 ], [ -120.920061394999948, 49.921223295000082 ], [ -120.920287294999952, 49.922136187 ], [ -120.92028331399996, 49.922478025000089 ], [ -120.918735861999934, 49.922406189000036 ], [ -120.919135262999987, 49.918818880000096 ], [ -120.9193161199999, 49.918827277000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999269296466066", "sL_AssetLoss": "636.373", "sL_BldgLoss": "635.908", "sL_StrLoss": "633", "sL_NStrLoss": "2.908", "sL_ContLoss": "0.465", "geom_point": "0101000020E610000083BB3F2008425EC04D563D4701124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.02897965699999, 50.144570385000115 ], [ -121.029050618999975, 50.143922257000028 ], [ -121.029015899999962, 50.143920688000044 ], [ -121.029318308999919, 50.141158407000077 ], [ -121.028410362, 50.1411173770001 ], [ -121.028673800999925, 50.138711218000047 ], [ -121.028945516999912, 50.138375303000089 ], [ -121.029407390999936, 50.137329988000019 ], [ -121.029730790999935, 50.136966794 ], [ -121.029805374999981, 50.136025045000103 ], [ -121.029847416999985, 50.135494204000047 ], [ -121.030005881999926, 50.134944206000057 ], [ -121.030841320999969, 50.134981953000143 ], [ -121.030713248000012, 50.136152369000044 ], [ -121.030553755999932, 50.137609831000134 ], [ -121.031328482999982, 50.137644829000067 ], [ -121.034385274999963, 50.137782862000122 ], [ -121.034332681999942, 50.138263809000058 ], [ -121.034097423999967, 50.140415073000071 ], [ -121.035910996999959, 50.140496927000108 ], [ -121.035590639999938, 50.143427085000049 ], [ -121.031682302999982, 50.143423735000113 ], [ -121.031496756999942, 50.144684091000059 ], [ -121.030773640999911, 50.144651431000135 ], [ -121.02897965699999, 50.144570385000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "0.998647505650462", "sL_AssetLoss": "1128.1378", "sL_BldgLoss": "1126.612", "sL_StrLoss": "1111.182", "sL_NStrLoss": "15.43", "sL_ContLoss": "1.5258", "geom_point": "0101000020E6100000BC063BCDDB405EC0BBE7C8E3CC114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.008912520999942, 50.139192801000071 ], [ -121.008571095999955, 50.138638787000048 ], [ -121.008191388999961, 50.138352494000081 ], [ -121.007805304999977, 50.138220086000075 ], [ -121.007128490999932, 50.137966612000085 ], [ -121.006276212999978, 50.137942409000104 ], [ -121.005926909999957, 50.138251399000076 ], [ -121.005472692999959, 50.138440795000129 ], [ -121.004501696999981, 50.138523399000086 ], [ -121.004076302999962, 50.138440851000041 ], [ -121.00429343199994, 50.136467244000066 ], [ -121.009875404999974, 50.136720625000102 ], [ -121.009621997999972, 50.139026514000079 ], [ -121.010558632999945, 50.13906900200007 ], [ -121.011131472999978, 50.139094984000089 ], [ -121.011195447999981, 50.138512693000024 ], [ -121.011511275999936, 50.135637812000049 ], [ -121.017093183999933, 50.135890827000061 ], [ -121.016849152999939, 50.138114689000062 ], [ -121.020401119999946, 50.138275543000148 ], [ -121.020361178999977, 50.138639771000101 ], [ -121.020322395999983, 50.138993421000045 ], [ -121.020007777, 50.141862163000091 ], [ -121.014425118999938, 50.141609297000073 ], [ -121.014669286999961, 50.139385451000081 ], [ -121.014615884999927, 50.139383031000101 ], [ -121.014236287999921, 50.142840197000069 ], [ -121.012196618999965, 50.142747737000086 ], [ -121.011524787999974, 50.142341799000114 ], [ -121.010399306999915, 50.141790591000102 ], [ -121.009530694999924, 50.141128311000038 ], [ -121.009175814999963, 50.140555802000051 ], [ -121.00909924799997, 50.140159443000087 ], [ -121.008912520999942, 50.139192801000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999747628216266", "sL_AssetLoss": "254.3866", "sL_BldgLoss": "254.3224", "sL_StrLoss": "254", "sL_NStrLoss": "0.3224", "sL_ContLoss": "0.0642", "geom_point": "0101000020E6100000ECD1446D95315EC05FEA296A970A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.773463200999956, 50.085226702000057 ], [ -120.773148219999953, 50.084825104000082 ], [ -120.772916517999974, 50.084380707000037 ], [ -120.772894476999909, 50.084277122000096 ], [ -120.772755104999931, 50.083621598000015 ], [ -120.772331790999985, 50.083118891 ], [ -120.77215430699998, 50.08271010100006 ], [ -120.772020310999977, 50.081979498000038 ], [ -120.771637054999985, 50.081575405000059 ], [ -120.772362748999967, 50.081344802000061 ], [ -120.77263429599995, 50.081258516000055 ], [ -120.773340010999959, 50.081100604000028 ], [ -120.77338210899994, 50.081091187000027 ], [ -120.774521072999974, 50.080889112000108 ], [ -120.77479230099999, 50.080841008000085 ], [ -120.776255679999963, 50.080595667000061 ], [ -120.776632643999946, 50.080532483000056 ], [ -120.779018045999962, 50.080132525000117 ], [ -120.778906136999964, 50.081106983000026 ], [ -120.776833223999972, 50.081008426000047 ], [ -120.776511187999986, 50.083811232000066 ], [ -120.774298129999977, 50.083705969000071 ], [ -120.77415525, 50.084948872000055 ], [ -120.775032186999937, 50.084990589000064 ], [ -120.774784840999985, 50.087142425000117 ], [ -120.774624490999912, 50.087039711000024 ], [ -120.77419758, 50.086895903000048 ], [ -120.773836294999981, 50.086556907000087 ], [ -120.77388398699999, 50.085514409000091 ], [ -120.773463200999956, 50.085226702000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998374760994264", "sL_AssetLoss": "209.2", "sL_BldgLoss": "208.86", "sL_StrLoss": "206", "sL_NStrLoss": "2.86", "sL_ContLoss": "0.34", "geom_point": "0101000020E6100000064FBE2C6F3C5EC0987ED30586E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.944894414999922, 49.814441648000027 ], [ -120.945648022999947, 49.814476542000115 ], [ -120.945251605999928, 49.818064462000052 ], [ -120.942024700999923, 49.817915013000054 ], [ -120.942195508999959, 49.817708293000088 ], [ -120.944894414999922, 49.814441648000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.998399317041938", "sL_AssetLoss": "609.115", "sL_BldgLoss": "608.14", "sL_StrLoss": "600", "sL_NStrLoss": "8.14", "sL_ContLoss": "0.975", "geom_point": "0101000020E61000000AD7E58C0F455EC0E0854AAF0FF34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.081249688999947, 49.897098804000095 ], [ -121.082766792999962, 49.897167012000097 ], [ -121.082380414999989, 49.900755013000037 ], [ -121.080958888999987, 49.900691104 ], [ -121.080934762999902, 49.900915047000062 ], [ -121.076050559999914, 49.900695319000071 ], [ -121.075381184999969, 49.900665188000062 ], [ -121.075768110999917, 49.89707721000007 ], [ -121.077189517999969, 49.897141188000028 ], [ -121.07721365899998, 49.896917244000051 ], [ -121.081249688999947, 49.897098804000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999031110862199", "sL_AssetLoss": "714.22", "sL_BldgLoss": "713.528", "sL_StrLoss": "709", "sL_NStrLoss": "4.528", "sL_ContLoss": "0.692", "geom_point": "0101000020E610000050A5C939EF3B5EC0DFC76EF29DFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.931245617999963, 49.956765805000053 ], [ -120.931120103999945, 49.956431186000025 ], [ -120.931245897999986, 49.9561093 ], [ -120.93113578699996, 49.955756095000083 ], [ -120.930999752999952, 49.955575823000032 ], [ -120.931707922, 49.955608596000047 ], [ -120.931715861000015, 49.955537171000067 ], [ -120.932189670999975, 49.955559096000044 ], [ -120.932191540999924, 49.955542283000071 ], [ -120.937750995999949, 49.95579938000003 ], [ -120.937744621999954, 49.955856793000066 ], [ -120.939630237999964, 49.955943929000107 ], [ -120.939577165999964, 49.956422166000038 ], [ -120.94005665499995, 49.956444318000109 ], [ -120.939980980999934, 49.957126264000117 ], [ -120.940215894999966, 49.957137115000087 ], [ -120.939817813999966, 49.960724315000036 ], [ -120.939077469000011, 49.960690112000101 ], [ -120.939010511999925, 49.96129333100005 ], [ -120.935998032999947, 49.961154108000088 ], [ -120.936003980999942, 49.960924494000039 ], [ -120.935782793999948, 49.96020100300008 ], [ -120.935714598999979, 49.959840691000153 ], [ -120.935241280999946, 49.958860893000093 ], [ -120.934496900999946, 49.958335302000073 ], [ -120.932924010999955, 49.957929403000023 ], [ -120.93222810499995, 49.957574790000081 ], [ -120.931245617999963, 49.956765805000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99935616894987", "sL_AssetLoss": "148.7968", "sL_BldgLoss": "148.701", "sL_StrLoss": "148", "sL_NStrLoss": "0.701", "sL_ContLoss": "0.0958", "geom_point": "0101000020E61000002595A5AD3C3B5EC011759B4730FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.925772087999974, 49.975967117000053 ], [ -120.927758782999945, 49.976059097000061 ], [ -120.927359557999949, 49.979646158000044 ], [ -120.92223539299999, 49.979408846000034 ], [ -120.92251670499995, 49.978967233000091 ], [ -120.922893439999925, 49.978533983000048 ], [ -120.924529224999944, 49.977149509000121 ], [ -120.925728523999936, 49.976018833000055 ], [ -120.925772087999974, 49.975967117000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998847066424569", "sL_AssetLoss": "359.084", "sL_BldgLoss": "358.67", "sL_StrLoss": "355", "sL_NStrLoss": "3.67", "sL_ContLoss": "0.414", "geom_point": "0101000020E6100000C85F5AD4E7395EC00867E0157BFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.905017079999979, 49.993589922000055 ], [ -120.908112952999929, 49.993733770000098 ], [ -120.907712028999967, 49.997320673000033 ], [ -120.904829715999952, 49.997186753000108 ], [ -120.904758033999926, 49.997827643000093 ], [ -120.89919364299999, 49.997568889 ], [ -120.899197489999935, 49.997534543000093 ], [ -120.900269185999889, 49.996980961000133 ], [ -120.900966076999964, 49.996620995000072 ], [ -120.901803960999985, 49.996130844000078 ], [ -120.904280656999987, 49.994502741000076 ], [ -120.904535868999957, 49.994271219000019 ], [ -120.90471126199999, 49.994053132000047 ], [ -120.905017079999979, 49.993589922000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99864812560652", "sL_AssetLoss": "178.271", "sL_BldgLoss": "178.03", "sL_StrLoss": "176", "sL_NStrLoss": "2.03", "sL_ContLoss": "0.241", "geom_point": "0101000020E61000007EA67FC5B13B5EC09DE2E5A7C0FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.933450379999968, 49.961036301000043 ], [ -120.933504718999956, 49.960547294000065 ], [ -120.933299404999957, 49.960537797000022 ], [ -120.933333919999981, 49.960227201000095 ], [ -120.932596303999929, 49.960193080000117 ], [ -120.932699989999946, 49.959260122000089 ], [ -120.930218984999954, 49.959145317000051 ], [ -120.930605937999985, 49.955664901000098 ], [ -120.930791610999933, 49.955965408000026 ], [ -120.931017490999949, 49.956869794000113 ], [ -120.931826303999912, 49.95751358800014 ], [ -120.93242588899993, 49.958181492000094 ], [ -120.933790787999968, 49.958520512000085 ], [ -120.934528792999942, 49.958875099000103 ], [ -120.935232800999984, 49.959679786000081 ], [ -120.93543641399998, 49.960176809000117 ], [ -120.935089716999954, 49.960765001000091 ], [ -120.935136716999935, 49.960945906000049 ], [ -120.935324047000023, 49.961122948000053 ], [ -120.933450379999968, 49.961036301000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.99833293718885", "sL_AssetLoss": "614.254", "sL_BldgLoss": "613.23", "sL_StrLoss": "606", "sL_NStrLoss": "7.23", "sL_ContLoss": "1.024", "geom_point": "0101000020E6100000152C61AFA83A5EC037197694DAFE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.91433238899999, 49.993103010000056 ], [ -120.91434758399997, 49.992966883000044 ], [ -120.91387588299996, 49.992944998000013 ], [ -120.913885559999954, 49.99285831600011 ], [ -120.913296467999913, 49.992830982000015 ], [ -120.913696913999956, 49.989244035000127 ], [ -120.915034751999912, 49.989306107000061 ], [ -120.91505646399996, 49.989111567000094 ], [ -120.920619911999921, 49.989369519000022 ], [ -120.920558766999974, 49.989918006000089 ], [ -120.920361899999989, 49.989961291000071 ], [ -120.91970147799999, 49.990362895000082 ], [ -120.919418596999961, 49.99078880900008 ], [ -120.919383, 49.991301506000084 ], [ -120.919096687999954, 49.991781507000084 ], [ -120.919151202999913, 49.992124688000061 ], [ -120.919565784999975, 49.992554808000122 ], [ -120.919386399999965, 49.992848187000085 ], [ -120.918728921999943, 49.992899506000114 ], [ -120.917715912999981, 49.99275559900007 ], [ -120.9171437099999, 49.992764209000086 ], [ -120.916238489999941, 49.993026194000102 ], [ -120.91600616599996, 49.993180650000113 ], [ -120.91433238899999, 49.993103010000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.998625858217393", "sL_AssetLoss": "402.433", "sL_BldgLoss": "401.88", "sL_StrLoss": "397", "sL_NStrLoss": "4.88", "sL_ContLoss": "0.553", "geom_point": "0101000020E6100000D6078A06C63A5EC0C23DE83C57F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.915613883999953, 49.907740302000036 ], [ -120.916197007999969, 49.907095098000127 ], [ -120.91620526399997, 49.906573119 ], [ -120.916995347999915, 49.906609831000033 ], [ -120.916925126999942, 49.907240491000081 ], [ -120.920635767999968, 49.907412834000077 ], [ -120.920236581999987, 49.911000204000104 ], [ -120.917075185999948, 49.910853381000081 ], [ -120.91672121699996, 49.910441996000039 ], [ -120.916662096999957, 49.91021560800008 ], [ -120.916837293999933, 49.909372415000107 ], [ -120.916635905999939, 49.90887399700005 ], [ -120.915577290999963, 49.907919690000021 ], [ -120.915613883999953, 49.907740302000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.999572367680008", "sL_AssetLoss": "253.0211", "sL_BldgLoss": "252.9129", "sL_StrLoss": "252.0179", "sL_NStrLoss": "0.895", "sL_ContLoss": "0.1082", "geom_point": "0101000020E61000002B685A6265375EC0136C127214114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.863619381999953, 50.131070322000035 ], [ -120.869199895999941, 50.131330832000053 ], [ -120.868794692, 50.134916937000057 ], [ -120.867614474000021, 50.134861866000044 ], [ -120.867516743999943, 50.135726504000019 ], [ -120.867502191999961, 50.135727697000092 ], [ -120.867295581999883, 50.135794053000062 ], [ -120.861926933999925, 50.135543371000097 ], [ -120.862332685999945, 50.131957295000056 ], [ -120.863512821999933, 50.13201242200013 ], [ -120.863619381999953, 50.131070322000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999060913851809", "sL_AssetLoss": "173.573", "sL_BldgLoss": "173.41", "sL_StrLoss": "172", "sL_NStrLoss": "1.41", "sL_ContLoss": "0.163", "geom_point": "0101000020E610000034B8CE3B253B5EC0D1C2D0B039FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.926015640999964, 49.98459159599999 ], [ -120.926497686999966, 49.984613912000022 ], [ -120.92596029799995, 49.985006486000096 ], [ -120.925614680999985, 49.985593297000037 ], [ -120.925630996999928, 49.986178592000051 ], [ -120.925263287999968, 49.986954803000096 ], [ -120.924506104999978, 49.987696799000062 ], [ -120.924258927, 49.988115766000135 ], [ -120.922604620999948, 49.988039146000041 ], [ -120.922777040999975, 49.986491763000103 ], [ -120.923004293999952, 49.984452142000087 ], [ -120.926015640999964, 49.98459159599999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998407046476762", "sL_AssetLoss": "213.44", "sL_BldgLoss": "213.1", "sL_StrLoss": "212", "sL_NStrLoss": "1.1", "sL_ContLoss": "0.34", "geom_point": "0101000020E6100000AF07F60CDF405EC0EFD59EC42DDF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.013573190999949, 49.742870473000096 ], [ -121.013606233999965, 49.742061459000084 ], [ -121.014433731999986, 49.742075650000125 ], [ -121.01485462, 49.742082866000032 ], [ -121.014843610999918, 49.742352537000023 ], [ -121.015259742999902, 49.742359669000152 ], [ -121.015226727, 49.743168684000096 ], [ -121.014810588999964, 49.743161552000075 ], [ -121.01479958099999, 49.743431223000087 ], [ -121.014383439999946, 49.743424088000033 ], [ -121.014361418999954, 49.743963431000104 ], [ -121.013970732999951, 49.743956732000086 ], [ -121.013945274999969, 49.743956295000046 ], [ -121.013941183000028, 49.74405650700006 ], [ -121.013923248000012, 49.74449563800011 ], [ -121.013745861999965, 49.744492595000068 ], [ -121.013507099999956, 49.74448850000006 ], [ -121.0134903, 49.744899760000067 ], [ -121.013485067999966, 49.745027843000059 ], [ -121.013412187999919, 49.745026592000023 ], [ -121.013068913999945, 49.745020704000147 ], [ -121.01304687799994, 49.745560046000023 ], [ -121.012349304999958, 49.745548075000073 ], [ -121.012363858999976, 49.745412081000033 ], [ -121.012460762, 49.74450640700006 ], [ -121.012420453999937, 49.743390415000121 ], [ -121.012718880999941, 49.743395537000097 ], [ -121.012740920999988, 49.74285619500008 ], [ -121.013573190999949, 49.742870473000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.965177855041455", "sL_AssetLoss": "1.8695", "sL_BldgLoss": "1.8044", "sL_StrLoss": "0.0944", "sL_NStrLoss": "1.71", "sL_ContLoss": "0.0651", "geom_point": "0101000020E6100000ACBA797018425EC02F58818CC6104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.032897694999988, 50.12881843900005 ], [ -121.033252345999955, 50.128824448000067 ], [ -121.033514817999944, 50.129286003000075 ], [ -121.033922315000012, 50.129607905000036 ], [ -121.034301301999918, 50.129902693000133 ], [ -121.034306607999952, 50.129921679000091 ], [ -121.034111925, 50.129918383000053 ], [ -121.034078769999937, 50.130727352000129 ], [ -121.033659276, 50.130720247000042 ], [ -121.033637167999956, 50.131259560000053 ], [ -121.033217668999953, 50.13125245300008 ], [ -121.033166797999982, 50.132493066000109 ], [ -121.033085364000016, 50.132599431000116 ], [ -121.032742873999922, 50.132593627000055 ], [ -121.032726872999916, 50.132983734000078 ], [ -121.032505006999926, 50.133101484000122 ], [ -121.032360925999939, 50.133126841000063 ], [ -121.031462208999926, 50.133111605000082 ], [ -121.031528609999953, 50.131493669000072 ], [ -121.031948110999934, 50.131500781000106 ], [ -121.031992363999976, 50.130422157000133 ], [ -121.032411854999907, 50.130429267000068 ], [ -121.032467157999946, 50.129080986000183 ], [ -121.032886637, 50.129088095000142 ], [ -121.032897694999988, 50.12881843900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999305494725514", "sL_AssetLoss": "159.826", "sL_BldgLoss": "159.715", "sL_StrLoss": "159", "sL_NStrLoss": "0.715", "sL_ContLoss": "0.111", "geom_point": "0101000020E610000032482CEF8B425EC01C103A4B3D144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.041875289999936, 50.156196506000121 ], [ -121.042454905999946, 50.15603405600006 ], [ -121.042309104999958, 50.157368962000042 ], [ -121.04207531499999, 50.159509298000039 ], [ -121.036490366999942, 50.15925755700011 ], [ -121.036637158999966, 50.157915210000091 ], [ -121.036665859999943, 50.157652753000079 ], [ -121.037521480999914, 50.157543791000094 ], [ -121.040906886999934, 50.156620894000099 ], [ -121.041875289999936, 50.156196506000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "0.999727053892646", "sL_AssetLoss": "372.9674", "sL_BldgLoss": "372.8656", "sL_StrLoss": "372.0146", "sL_NStrLoss": "0.851", "sL_ContLoss": "0.1018", "geom_point": "0101000020E6100000306A9481C53C5EC0C8E248B16D114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.945295114999951, 50.139362302000052 ], [ -120.94384371699999, 50.138957792000063 ], [ -120.94220418899998, 50.139139904000018 ], [ -120.94221664199992, 50.138849756000084 ], [ -120.943055723, 50.13886462600005 ], [ -120.943148248999961, 50.13670749700006 ], [ -120.943585781999914, 50.136715248 ], [ -120.944826341999914, 50.136737217000089 ], [ -120.94483789899999, 50.136467575999987 ], [ -120.946096463999964, 50.136489851000086 ], [ -120.946108010999978, 50.136220209000086 ], [ -120.9469470499999, 50.136235051000057 ], [ -120.94695859399998, 50.135965409000057 ], [ -120.947797628999979, 50.135980245000077 ], [ -120.94780916799999, 50.135710603000057 ], [ -120.94977353799996, 50.135745313000143 ], [ -120.949893342999971, 50.134668045000097 ], [ -120.948274827999967, 50.134639450000059 ], [ -120.948263291, 50.134909092000086 ], [ -120.94658525700001, 50.134879422000047 ], [ -120.946573713999967, 50.135149063000078 ], [ -120.945315182999934, 50.135126795000126 ], [ -120.945327443999986, 50.134840629000045 ], [ -120.945349839999906, 50.134317870000096 ], [ -120.945769340999959, 50.134325294000099 ], [ -120.945780889999952, 50.134055652000022 ], [ -120.947878395999965, 50.134092750000136 ], [ -120.947889932999928, 50.133823108000087 ], [ -120.94872893199999, 50.133837936000091 ], [ -120.948740462999979, 50.133568294000092 ], [ -120.950418453999959, 50.133597933000054 ], [ -120.950429974999935, 50.133328290000115 ], [ -120.95182558499998, 50.133352922000043 ], [ -120.952107959000031, 50.13335790400005 ], [ -120.95209644599997, 50.133627548000035 ], [ -120.952515942999966, 50.133634947000068 ], [ -120.952512024, 50.133726779000028 ], [ -120.955592103999919, 50.133868091000068 ], [ -120.955243286999973, 50.137008064000042 ], [ -120.95519368799999, 50.13745450000004 ], [ -120.949611932999943, 50.13719834900008 ], [ -120.949653726999955, 50.1368225800001 ], [ -120.948602064999974, 50.136804001000016 ], [ -120.948590528999915, 50.137073643000079 ], [ -120.94733194699991, 50.13705139500005 ], [ -120.94732040599996, 50.137321037000085 ], [ -120.948578994999977, 50.137343285000071 ], [ -120.948562119999963, 50.137737781000062 ], [ -120.947934108999959, 50.138185882000101 ], [ -120.947800216999923, 50.138408101000039 ], [ -120.947354404999956, 50.138643102000103 ], [ -120.94679519499999, 50.139298210000064 ], [ -120.94634331599994, 50.139370907000078 ], [ -120.945295114999951, 50.139362302000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.998923309352929", "sL_AssetLoss": "350.147", "sL_BldgLoss": "349.77", "sL_StrLoss": "347", "sL_NStrLoss": "2.77", "sL_ContLoss": "0.377", "geom_point": "0101000020E61000007F8CD208EA405EC0C203FB96D6024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.01169683, 50.020253621000023 ], [ -121.017264618999931, 50.020506667000106 ], [ -121.016872043999953, 50.02409383700013 ], [ -121.014690671, 50.023994732000112 ], [ -121.011303819999966, 50.023840773000096 ], [ -121.011561001999922, 50.021493448000108 ], [ -121.01169683, 50.020253621000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999661734348709", "sL_AssetLoss": "276.7056", "sL_BldgLoss": "276.612", "sL_StrLoss": "276", "sL_NStrLoss": "0.612", "sL_ContLoss": "0.0936", "geom_point": "0101000020E61000005005D48274405EC05B911CD92A124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.004975876999978, 50.142973976000036 ], [ -121.005657807999953, 50.138827557000091 ], [ -121.006126, 50.138858111000033 ], [ -121.008356708999955, 50.138715684000083 ], [ -121.008510312999974, 50.139087393000082 ], [ -121.008492317999966, 50.140167007000059 ], [ -121.00864048499993, 50.140314074000116 ], [ -121.008667308999975, 50.140340698000088 ], [ -121.008767185999915, 50.140980192000043 ], [ -121.008885899999925, 50.141143993000085 ], [ -121.010598605999959, 50.142397290000048 ], [ -121.011327116999894, 50.142708312000096 ], [ -121.0095104, 50.142625913000074 ], [ -121.009452903999943, 50.143149008000066 ], [ -121.008152564999961, 50.143090011 ], [ -121.008129882999981, 50.143296321 ], [ -121.007940745999946, 50.145016540000015 ], [ -121.004975812999987, 50.144881963000088 ], [ -121.004975876999978, 50.142973976000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197258410", "BldgCostT": "111428895", "sL_LossRatio": "0.821845090573436", "sL_AssetLoss": "34821.2857", "sL_BldgLoss": "28617.7027", "sL_StrLoss": "25828.4847", "sL_NStrLoss": "2789.218", "sL_ContLoss": "6203.583", "geom_point": "0101000020E610000005451DCA0E325EC008277A2AF10C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.786288253999956, 50.106555566000011 ], [ -120.784325417, 50.106069451000046 ], [ -120.782319601999973, 50.105555107000015 ], [ -120.782826694000036, 50.104739988000084 ], [ -120.783328996999899, 50.103930101000067 ], [ -120.781297093999925, 50.103411806000082 ], [ -120.77882769699994, 50.102785199000095 ], [ -120.77543817899999, 50.101920093000082 ], [ -120.77574452499999, 50.101408707000047 ], [ -120.775904894999925, 50.10114099200004 ], [ -120.775944366999937, 50.101096893000026 ], [ -120.776078017999964, 50.100947465000075 ], [ -120.776210410999951, 50.100799494000064 ], [ -120.776286, 50.100568700000082 ], [ -120.776381209999954, 50.100415909000034 ], [ -120.776514004999953, 50.100202789000029 ], [ -120.776588219999951, 50.100083695000102 ], [ -120.776632631999959, 50.100012380000095 ], [ -120.776742832999929, 50.09983555500002 ], [ -120.776867014999979, 50.099636308000136 ], [ -120.77735259399999, 50.098947314000085 ], [ -120.777368736999932, 50.098930614000054 ], [ -120.777602407999908, 50.098688798000076 ], [ -120.777885311999981, 50.098458863000054 ], [ -120.77759462399996, 50.098385223000079 ], [ -120.774840113999957, 50.097687099000041 ], [ -120.774514594999985, 50.097604595000099 ], [ -120.774198098999989, 50.097467812000076 ], [ -120.77387500399999, 50.097218106000106 ], [ -120.773851020999984, 50.09719598900007 ], [ -120.77349302, 50.096865594000086 ], [ -120.772659908999984, 50.096096704000026 ], [ -120.771502484999957, 50.095034693000073 ], [ -120.771129698999928, 50.094766389 ], [ -120.770666653999953, 50.094556909000097 ], [ -120.770574671999981, 50.094515286000117 ], [ -120.77056155799994, 50.094509360000039 ], [ -120.771434413999941, 50.094039705000057 ], [ -120.771914044999974, 50.093608950000082 ], [ -120.772173134999932, 50.093613924000046 ], [ -120.772184638999931, 50.093365927000058 ], [ -120.772425505999976, 50.093149598000117 ], [ -120.773143816999948, 50.093047007000081 ], [ -120.773048612999915, 50.092821168000093 ], [ -120.773467932999978, 50.092829214000048 ], [ -120.773455432999967, 50.093098827000077 ], [ -120.77531944499999, 50.093134577000072 ], [ -120.774004401999903, 50.093791906000014 ], [ -120.773762297999923, 50.09415649700005 ], [ -120.773785012, 50.094260608000049 ], [ -120.773843084999967, 50.09452679000006 ], [ -120.774409912999928, 50.094986801000097 ], [ -120.774434236, 50.095000321000036 ], [ -120.77499660899997, 50.095312908000032 ], [ -120.776115998999913, 50.09561339000004 ], [ -120.777517299999886, 50.095828492000031 ], [ -120.778277691999946, 50.096023602000074 ], [ -120.779939682999952, 50.096657391000043 ], [ -120.779956811999909, 50.096672666000082 ], [ -120.780517893999956, 50.097172989000093 ], [ -120.781361207999907, 50.097657207000054 ], [ -120.782560201999942, 50.097761210000066 ], [ -120.783488609999949, 50.097957707000056 ], [ -120.783783214999943, 50.098215501000077 ], [ -120.784531094999963, 50.09838348800011 ], [ -120.784776299000029, 50.098504599000073 ], [ -120.785015095999981, 50.09879659000012 ], [ -120.784872898999978, 50.099172487000061 ], [ -120.783924004, 50.099999987000089 ], [ -120.782881015999962, 50.100501292000082 ], [ -120.782708591999935, 50.10087591600012 ], [ -120.782889881999921, 50.10121200300005 ], [ -120.783549215999955, 50.101781702000075 ], [ -120.783970899999971, 50.10202378500005 ], [ -120.785224117999988, 50.102435398000097 ], [ -120.787186603999942, 50.10265190300008 ], [ -120.787690184999988, 50.102794178000075 ], [ -120.787689185999966, 50.102815890000059 ], [ -120.787772663999959, 50.102817481000102 ], [ -120.78804350599998, 50.102893999000095 ], [ -120.788916618999934, 50.103351201000073 ], [ -120.789753817999923, 50.103535543000113 ], [ -120.789747871999936, 50.103664672000072 ], [ -120.790167065999981, 50.10367265500004 ], [ -120.790171275999938, 50.103581192000071 ], [ -120.790471288999981, 50.103596098000054 ], [ -120.791392088999956, 50.103325490000088 ], [ -120.792060513999971, 50.103392496000097 ], [ -120.793691384999988, 50.104440704000126 ], [ -120.793967074999955, 50.104517427000069 ], [ -120.793935429999976, 50.104602347000068 ], [ -120.793896242999907, 50.104707696000069 ], [ -120.793817084999915, 50.104920480000018 ], [ -120.793623360999945, 50.105204234000077 ], [ -120.79334199799996, 50.105503718000087 ], [ -120.792477019999936, 50.106424462000113 ], [ -120.791881560999968, 50.10707513800002 ], [ -120.791009896999967, 50.106847097000042 ], [ -120.789681116999986, 50.106491090000063 ], [ -120.789136688, 50.107253107000119 ], [ -120.787456413999919, 50.10684534300001 ], [ -120.786349331999972, 50.106570730000044 ], [ -120.786288253999956, 50.106555566000011 ] ], [ [ -120.787120873999967, 50.106043281000012 ], [ -120.787158158999972, 50.105234435000028 ], [ -120.786510900999957, 50.105222092000069 ], [ -120.78645575099992, 50.105702744000027 ], [ -120.786453991999906, 50.105702660000119 ], [ -120.786416447999926, 50.10602984700008 ], [ -120.787120873999967, 50.106043281000012 ] ], [ [ -120.786788671999929, 50.104147981000089 ], [ -120.786801101999927, 50.103878366000117 ], [ -120.786665374999956, 50.103875777000027 ], [ -120.786634480999936, 50.104145041000045 ], [ -120.786788671999929, 50.104147981000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182713543", "BldgCostT": "100136914", "sL_LossRatio": "0.816616247808994", "sL_AssetLoss": "25054.5806", "sL_BldgLoss": "20459.9776", "sL_StrLoss": "18324.8966", "sL_NStrLoss": "2135.081", "sL_ContLoss": "4594.603", "geom_point": "0101000020E6100000C7DC64D0A0325EC019CF6E67BE0C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.791838489999947, 50.103064899000117 ], [ -120.791476291, 50.103039294000034 ], [ -120.789497302999962, 50.103181704000107 ], [ -120.789000712999936, 50.10306490200005 ], [ -120.78811682099996, 50.102640446000088 ], [ -120.788120790999969, 50.102554264000098 ], [ -120.789378338999882, 50.102578225000059 ], [ -120.78942799399999, 50.101499761000078 ], [ -120.789528932999971, 50.10150168400002 ], [ -120.789551800999973, 50.101302253000078 ], [ -120.78716206499999, 50.101188914000019 ], [ -120.787440298999968, 50.098763360000106 ], [ -120.787037220999935, 50.09875567400006 ], [ -120.787062071999955, 50.098216443000055 ], [ -120.78580464099997, 50.098192458000057 ], [ -120.78577977499998, 50.098731688 ], [ -120.78565530499999, 50.098729314000153 ], [ -120.785468544999944, 50.100356888000064 ], [ -120.786362686999951, 50.100399316000058 ], [ -120.786169425999987, 50.102083703000105 ], [ -120.786867180999963, 50.102116806000055 ], [ -120.786850730999973, 50.10226019800006 ], [ -120.786875671999965, 50.102260674000021 ], [ -120.786872849999924, 50.102321912000022 ], [ -120.784052286999952, 50.101783109000024 ], [ -120.783742701999969, 50.101498292000052 ], [ -120.783805191999988, 50.100753399000041 ], [ -120.784064584999939, 50.100326192000082 ], [ -120.785032715999975, 50.099634005000105 ], [ -120.785391404000023, 50.099118412000031 ], [ -120.785403316999961, 50.098867796000064 ], [ -120.785355795999934, 50.098686911000101 ], [ -120.785101188999974, 50.098466096000038 ], [ -120.783114907999931, 50.097266999000077 ], [ -120.782797298999981, 50.097162997000048 ], [ -120.781862507999975, 50.097125999000085 ], [ -120.780890712999934, 50.09666739400005 ], [ -120.780399984999974, 50.096500830000096 ], [ -120.778784284999929, 50.095952399000069 ], [ -120.777352897999904, 50.09545679800005 ], [ -120.776446122999943, 50.095421205000015 ], [ -120.776040957999953, 50.095331964000096 ], [ -120.776045529999948, 50.095311643000102 ], [ -120.776046490999988, 50.095307337000037 ], [ -120.776289238999979, 50.095311988000056 ], [ -120.776301724999911, 50.095042375000027 ], [ -120.777559065999952, 50.095066461000059 ], [ -120.777546587999936, 50.095336075000048 ], [ -120.777965703999911, 50.095344101000052 ], [ -120.777956631, 50.095540205000084 ], [ -120.781413258999933, 50.095704439000045 ], [ -120.7813851499999, 50.095949230000031 ], [ -120.78255109899996, 50.095971515000095 ], [ -120.782540150999949, 50.096208626000099 ], [ -120.782538648999918, 50.096241130000124 ], [ -120.78267665599995, 50.096243767000033 ], [ -120.782957775999975, 50.096249137000058 ], [ -120.782952220999931, 50.096369450000054 ], [ -120.782945328999944, 50.096518752000115 ], [ -120.783235979999944, 50.096524304000098 ], [ -120.783364456999948, 50.096526759000028 ], [ -120.783361410999959, 50.096592754000049 ], [ -120.783352011999966, 50.096796374000078 ], [ -120.783748413999959, 50.096803945000062 ], [ -120.783771141999949, 50.096804379000055 ], [ -120.78377060399994, 50.096816054000058 ], [ -120.783739412999978, 50.097491874000106 ], [ -120.784158002999973, 50.097511745000126 ], [ -120.784165390999959, 50.097351612000082 ], [ -120.785390268999947, 50.097374993000059 ], [ -120.78701778099996, 50.097406041000106 ], [ -120.787099347999984, 50.097407595000057 ], [ -120.787099838999936, 50.097396911000089 ], [ -120.787111770999957, 50.097137980000106 ], [ -120.787950041999963, 50.097153962000057 ], [ -120.787962461999939, 50.096884346000074 ], [ -120.788720795999964, 50.096898798000062 ], [ -120.789219859999932, 50.096908307000106 ], [ -120.789184361999972, 50.097679362000079 ], [ -120.79051753, 50.097742577000069 ], [ -120.79085918599999, 50.097749082000071 ], [ -120.790883992999937, 50.097209850000127 ], [ -120.79130313, 50.097217828000105 ], [ -120.791327930999927, 50.096678594000053 ], [ -120.791747061999985, 50.096686571000056 ], [ -120.791757037999986, 50.09646966100005 ], [ -120.791759461999945, 50.096416954000034 ], [ -120.79217859100001, 50.096424928000012 ], [ -120.792190987000012, 50.096155312000072 ], [ -120.793029241999989, 50.09617125700003 ], [ -120.793041632999959, 50.095901640000072 ], [ -120.79555639099999, 50.095949437000087 ], [ -120.795544014999933, 50.096219054000073 ], [ -120.796801401999957, 50.09624293200006 ], [ -120.796789031999936, 50.096512549000089 ], [ -120.797006986999946, 50.096516687000104 ], [ -120.797208164999915, 50.09652050600009 ], [ -120.797171061999933, 50.097329359000071 ], [ -120.797021906999987, 50.097326527000071 ], [ -120.796751921999928, 50.097321402000063 ], [ -120.796739550999959, 50.097591019000092 ], [ -120.797026779999982, 50.097596472000049 ], [ -120.797035371999968, 50.098072196000011 ], [ -120.797041066999952, 50.098386979000075 ], [ -120.797063953999952, 50.099656532000061 ], [ -120.797070114999912, 50.099997469000108 ], [ -120.797070628999961, 50.100025974000033 ], [ -120.797047371999966, 50.100025532000124 ], [ -120.79701026, 50.100834383000041 ], [ -120.797085227999943, 50.100835807000045 ], [ -120.79709186, 50.101203764000054 ], [ -120.797118197999936, 50.102661572000024 ], [ -120.7971267, 50.103132992000106 ], [ -120.79706294099995, 50.103224627000088 ], [ -120.796040369999986, 50.103194221000116 ], [ -120.794888927999963, 50.103236150000107 ], [ -120.794592149999957, 50.10329420199999 ], [ -120.794359883999931, 50.103461655000096 ], [ -120.794117226999944, 50.104113839000085 ], [ -120.794045968999981, 50.10430530499999 ], [ -120.794020181999926, 50.104302503000049 ], [ -120.792400593999972, 50.103291404000117 ], [ -120.791838489999947, 50.103064899000117 ] ], [ [ -120.789772697999965, 50.103125440000071 ], [ -120.789785109999968, 50.102855824000045 ], [ -120.789365923999966, 50.102847841000042 ], [ -120.78935351, 50.103117456000057 ], [ -120.789772697999965, 50.103125440000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999516336950575", "sL_AssetLoss": "148.2437", "sL_BldgLoss": "148.172", "sL_StrLoss": "148", "sL_NStrLoss": "0.172", "sL_ContLoss": "0.0717", "geom_point": "0101000020E61000000491248C4F595EC057A5A104852B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.393264854999956, 50.342242748000082 ], [ -121.393303381999942, 50.341864697000084 ], [ -121.392620315999977, 50.341855256000024 ], [ -121.392656733, 50.340776458000107 ], [ -121.393413211999984, 50.340786915000102 ], [ -121.393610270999957, 50.338853039000078 ], [ -121.393988095999958, 50.338868782000077 ], [ -121.394064094999962, 50.338122848000104 ], [ -121.395274183999987, 50.338173263000044 ], [ -121.395285253999972, 50.337844690000068 ], [ -121.396549449999966, 50.33786213300008 ], [ -121.396540368999922, 50.338131833000048 ], [ -121.39668977699999, 50.338133894000087 ], [ -121.396961769999947, 50.338137645000081 ], [ -121.396958209999951, 50.338243401000042 ], [ -121.398645794999965, 50.338313661000065 ], [ -121.398635185999964, 50.338753007000115 ], [ -121.398441997999939, 50.339469413000046 ], [ -121.397392894999939, 50.340597412000101 ], [ -121.395236404999977, 50.342015908000064 ], [ -121.39435091099989, 50.342463092000081 ], [ -121.394337358999977, 50.34248553700008 ], [ -121.393244751999973, 50.342440012000054 ], [ -121.393264854999956, 50.342242748000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.999034710134776", "sL_AssetLoss": "156.3261", "sL_BldgLoss": "156.1752", "sL_StrLoss": "154.0692", "sL_NStrLoss": "2.106", "sL_ContLoss": "0.1509", "geom_point": "0101000020E6100000BAD8177D03475EC0B91AFAA3FF1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.112351504999978, 50.253723805000028 ], [ -121.112362162999943, 50.253454142000095 ], [ -121.111941572999967, 50.253447308000041 ], [ -121.111962891999966, 50.252907982000103 ], [ -121.110701137999939, 50.252887470000111 ], [ -121.110711979999948, 50.25261334 ], [ -121.110754470999922, 50.251539155000067 ], [ -121.111175043999978, 50.251545995000079 ], [ -121.111187157999936, 50.251239657000113 ], [ -121.105905876999984, 50.251005440000014 ], [ -121.106293375999883, 50.247419025000077 ], [ -121.11065191699997, 50.247612339000099 ], [ -121.111443800999979, 50.247647443000119 ], [ -121.111820347999952, 50.248308557000087 ], [ -121.111607942999925, 50.250276686000028 ], [ -121.11155764599999, 50.250742704000061 ], [ -121.11178022799993, 50.250746322000118 ], [ -121.112468732999901, 50.250757510000028 ], [ -121.112447421999917, 50.251296836000073 ], [ -121.112867990999987, 50.251303668000055 ], [ -121.112836027999919, 50.252112658000094 ], [ -121.113256607999972, 50.252119489000087 ], [ -121.113235301999936, 50.252658816000036 ], [ -121.113655884999901, 50.252665645000071 ], [ -121.113613282999964, 50.253744299000047 ], [ -121.113299660999985, 50.253739206000027 ], [ -121.112351504999978, 50.253723805000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999170938050313", "sL_AssetLoss": "165.247", "sL_BldgLoss": "165.11", "sL_StrLoss": "164", "sL_NStrLoss": "1.11", "sL_ContLoss": "0.137", "geom_point": "0101000020E61000007985B2AE19635EC0035FD1AD57254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.54581709699994, 50.289831428000113 ], [ -121.551420814999972, 50.290057321000127 ], [ -121.551068180999948, 50.293645031000054 ], [ -121.545464021999948, 50.293419121000078 ], [ -121.54581709699994, 50.289831428000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.96692227415037", "sL_AssetLoss": "2.2039", "sL_BldgLoss": "2.131", "sL_StrLoss": "0.121", "sL_NStrLoss": "2.01", "sL_ContLoss": "0.0729", "geom_point": "0101000020E61000000FA2316AA96B5EC0475DA59ADD2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.681385131999988, 50.364370101000063 ], [ -121.68499554899999, 50.364510985000045 ], [ -121.684819943999941, 50.366349921000072 ], [ -121.68473848099994, 50.367202947000145 ], [ -121.684652926999973, 50.368098775000149 ], [ -121.683423939999969, 50.368050832000073 ], [ -121.679689861999961, 50.367905079000046 ], [ -121.679765510999957, 50.36778269900001 ], [ -121.679975984999942, 50.367281400000067 ], [ -121.679947623999979, 50.366795700000111 ], [ -121.679472411999882, 50.365720387000081 ], [ -121.679266552999977, 50.365498792000032 ], [ -121.679381951999972, 50.364291884000075 ], [ -121.681385131999988, 50.364370101000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.998669358617223", "sL_AssetLoss": "586.935", "sL_BldgLoss": "586.154", "sL_StrLoss": "581", "sL_NStrLoss": "5.154", "sL_ContLoss": "0.781", "geom_point": "0101000020E610000018961ED1AD635EC0D4591413270D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.554113279999953, 50.106056394000028 ], [ -121.554142935999934, 50.105753154000091 ], [ -121.554021919999968, 50.105748261000073 ], [ -121.554328043999959, 50.102618004000107 ], [ -121.554240732999986, 50.102614474000049 ], [ -121.55450898699992, 50.099871144000112 ], [ -121.554591634999909, 50.099025863000051 ], [ -121.555346017999966, 50.09905636500006 ], [ -121.556396991999961, 50.099098851000093 ], [ -121.560171908999948, 50.0992513670001 ], [ -121.560132456999924, 50.09965536000005 ], [ -121.560412326999952, 50.099666662000082 ], [ -121.560169643999956, 50.10215180600008 ], [ -121.560666280999982, 50.102171861000045 ], [ -121.560610713, 50.102740921000127 ], [ -121.560913709, 50.102753156000055 ], [ -121.560857438999903, 50.103329424999984 ], [ -121.561229536000027, 50.103344448000051 ], [ -121.56096038799997, 50.106100865 ], [ -121.558757248999939, 50.106059832000014 ], [ -121.554508214999885, 50.106064016000047 ], [ -121.554113279999953, 50.106056394000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999058123268814", "sL_AssetLoss": "179.429", "sL_BldgLoss": "179.26", "sL_StrLoss": "178", "sL_NStrLoss": "1.26", "sL_ContLoss": "0.169", "geom_point": "0101000020E6100000471231E335655EC0E38112B067224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.581350795, 50.266963288000049 ], [ -121.584351584999979, 50.267083385000063 ], [ -121.58400173699998, 50.270671304000075 ], [ -121.578400252000037, 50.270447058000101 ], [ -121.578681941999889, 50.267561840000027 ], [ -121.5791393799999, 50.267572602000065 ], [ -121.57917566899999, 50.266876184000083 ], [ -121.579641834999933, 50.266894856000086 ], [ -121.581350795, 50.266963288000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.998064067430659", "sL_AssetLoss": "192.672", "sL_BldgLoss": "192.299", "sL_StrLoss": "187.179", "sL_NStrLoss": "5.12", "sL_ContLoss": "0.373", "geom_point": "0101000020E6100000664A4E9A04655EC03497E160EB134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.575731343999948, 50.159096928000075 ], [ -121.575779284999953, 50.158604945000036 ], [ -121.574668538999958, 50.158560301000136 ], [ -121.574825765999918, 50.156947100000139 ], [ -121.575276162999984, 50.156951184000093 ], [ -121.578502608999912, 50.156988822000095 ], [ -121.579258897999978, 50.156980832000045 ], [ -121.579249662999928, 50.15692690600013 ], [ -121.579245264999912, 50.156397877000117 ], [ -121.578702532999955, 50.153926843000129 ], [ -121.578680596999959, 50.153904510000125 ], [ -121.578728718999983, 50.152391861000098 ], [ -121.578763074999955, 50.15131166500008 ], [ -121.578454338999975, 50.151349597000092 ], [ -121.576860781, 50.151587584000026 ], [ -121.573591022999935, 50.15150584800007 ], [ -121.573115295999969, 50.154161689000063 ], [ -121.57305756599996, 50.154159367000055 ], [ -121.573407381, 50.150570940000151 ], [ -121.575525122999949, 50.150656088000133 ], [ -121.578210939999977, 50.150764017000029 ], [ -121.578994073, 50.150795475000109 ], [ -121.578944752999973, 50.151302084000086 ], [ -121.58019376499999, 50.151352244000115 ], [ -121.58001467299998, 50.153192243000063 ], [ -121.580883771999979, 50.153227138000027 ], [ -121.580953258999912, 50.153229928000044 ], [ -121.580713395999965, 50.155694583000091 ], [ -121.581668297999954, 50.15573291400014 ], [ -121.581428012999964, 50.158202155000041 ], [ -121.58131909399999, 50.159321343000066 ], [ -121.580294620999936, 50.159280219 ], [ -121.578658744999956, 50.159214534000036 ], [ -121.575731343999948, 50.159096928000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.916565015857526", "sL_AssetLoss": "4.099", "sL_BldgLoss": "3.757", "sL_StrLoss": "0.337", "sL_NStrLoss": "3.42", "sL_ContLoss": "0.342", "geom_point": "0101000020E6100000D1711C150B635EC09AAD612B8D084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.546867559999953, 50.070363647000065 ], [ -121.54717224499997, 50.067250578000063 ], [ -121.545145273999935, 50.067168396000085 ], [ -121.54476309099999, 50.06715289800011 ], [ -121.544845636999966, 50.066309873000101 ], [ -121.545114467999937, 50.063564148000104 ], [ -121.549121383999974, 50.063726581000026 ], [ -121.549131078999906, 50.063768091000043 ], [ -121.549070710999956, 50.065306294000038 ], [ -121.548935120999943, 50.066580901000052 ], [ -121.549020690999924, 50.067391294000082 ], [ -121.549889095999973, 50.069210012000063 ], [ -121.550301479, 50.069405097000079 ], [ -121.550730501999936, 50.070520160000072 ], [ -121.546867559999953, 50.070363647000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999329289146105", "sL_AssetLoss": "301.173", "sL_BldgLoss": "300.971", "sL_StrLoss": "300", "sL_NStrLoss": "0.971", "sL_ContLoss": "0.202", "geom_point": "0101000020E61000007E95747B66595EC0604DF1FA44304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.395098475999944, 50.379466284000053 ], [ -121.395119802999972, 50.379257108000047 ], [ -121.394679274999973, 50.379238773000111 ], [ -121.39471378799999, 50.378900292000033 ], [ -121.394295083999964, 50.378882863000051 ], [ -121.394346797999944, 50.378375718 ], [ -121.394251815999979, 50.378371764000057 ], [ -121.394279989, 50.378095477000038 ], [ -121.393705213999937, 50.37807154900004 ], [ -121.394070984999971, 50.374484735000081 ], [ -121.396024928999978, 50.374566065000067 ], [ -121.3977357799999, 50.374637248000099 ], [ -121.39826229099999, 50.374859596000114 ], [ -121.398909300999946, 50.375309601000041 ], [ -121.399483400999927, 50.375812409000076 ], [ -121.400184583999987, 50.376675493000022 ], [ -121.400187309999922, 50.377448796000081 ], [ -121.40000421, 50.378327582000054 ], [ -121.399412519999956, 50.379645742000044 ], [ -121.39884467, 50.379622130000037 ], [ -121.395098475999944, 50.379466284000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998214622675744", "sL_AssetLoss": "206.679", "sL_BldgLoss": "206.31", "sL_StrLoss": "205", "sL_NStrLoss": "1.31", "sL_ContLoss": "0.369", "geom_point": "0101000020E610000096225C759B635EC02EBB508EBC084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.55344941499996, 50.070163625000156 ], [ -121.553493375999949, 50.069713817000036 ], [ -121.553350240999947, 50.069708024000079 ], [ -121.553700960999961, 50.066119258000079 ], [ -121.554649298999934, 50.066157639000032 ], [ -121.559277198999965, 50.066344818000054 ], [ -121.559233298999942, 50.0667946310001 ], [ -121.559376425000011, 50.066800417000131 ], [ -121.559026146999926, 50.070389195000089 ], [ -121.555548099999953, 50.070248547000112 ], [ -121.55344941499996, 50.070163625000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.997560823483812", "sL_AssetLoss": "448.922", "sL_BldgLoss": "447.827", "sL_StrLoss": "434.397", "sL_NStrLoss": "13.43", "sL_ContLoss": "1.095", "geom_point": "0101000020E61000003B60CBE93A655EC005B4BE92F51E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.579433694999963, 50.246009538000123 ], [ -121.579777241, 50.242487881000066 ], [ -121.578817804999943, 50.2424494300001 ], [ -121.578968566999961, 50.24090413000004 ], [ -121.577416571999919, 50.240841912000064 ], [ -121.577449100999971, 50.240802985000094 ], [ -121.577416286999949, 50.240551001000064 ], [ -121.577917798, 50.23968498500011 ], [ -121.578690506999934, 50.239136698 ], [ -121.578941693000019, 50.23874360000007 ], [ -121.579773722999931, 50.238088503000078 ], [ -121.580183217999959, 50.23751739600003 ], [ -121.580554082999981, 50.237333694000114 ], [ -121.580972381, 50.236924903000101 ], [ -121.581533617, 50.236658614000127 ], [ -121.58183988799999, 50.236513297000094 ], [ -121.582904782999918, 50.236543194000042 ], [ -121.583099586999978, 50.237085899000135 ], [ -121.583026777999962, 50.23861399300003 ], [ -121.583653883999943, 50.240600793000056 ], [ -121.58439157799999, 50.241742996000035 ], [ -121.584494885999945, 50.241862381000075 ], [ -121.584422301999922, 50.242607302000032 ], [ -121.58516523900002, 50.242637039000037 ], [ -121.585360597999951, 50.242862789000036 ], [ -121.585072811999908, 50.245816591000036 ], [ -121.585032166999952, 50.246233740000051 ], [ -121.579433694999963, 50.246009538000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999778480469621", "sL_AssetLoss": "128.2054", "sL_BldgLoss": "128.177", "sL_StrLoss": "128", "sL_NStrLoss": "0.177", "sL_ContLoss": "0.0284", "geom_point": "0101000020E61000003A97C19CC9525EC0F635DC91FB334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.290900302999958, 50.404528023000125 ], [ -121.29092385499996, 50.404302275000063 ], [ -121.291058882999934, 50.404390595000081 ], [ -121.291435413999963, 50.404504490000114 ], [ -121.291846021999959, 50.404474601000103 ], [ -121.29228570199993, 50.40436348700009 ], [ -121.293215491999931, 50.404305098000037 ], [ -121.293368905999927, 50.404241921000057 ], [ -121.29593835, 50.404351132000102 ], [ -121.296313511999955, 50.405025799000022 ], [ -121.296413675999929, 50.405757622000131 ], [ -121.296233038999958, 50.407490912000114 ], [ -121.296083304999968, 50.407959526000049 ], [ -121.294709316999956, 50.407901140000071 ], [ -121.290566730999927, 50.407725003000053 ], [ -121.290900302999958, 50.404528023000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.998545340759476", "sL_AssetLoss": "184.7168", "sL_BldgLoss": "184.4481", "sL_StrLoss": "181.0981", "sL_NStrLoss": "3.35", "sL_ContLoss": "0.2687", "geom_point": "0101000020E610000091625F366A675EC03D7F777E13254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.613679670999929, 50.291647361000116 ], [ -121.613708089999975, 50.291354100000035 ], [ -121.612850660999968, 50.291320040000095 ], [ -121.612875248999941, 50.291066346000022 ], [ -121.612081749999959, 50.291034820000093 ], [ -121.612224792999896, 50.289559188000041 ], [ -121.612429532999954, 50.287446905000117 ], [ -121.618033286999903, 50.287669422000121 ], [ -121.618008728999911, 50.287923120000102 ], [ -121.618802176999964, 50.287954603000088 ], [ -121.618773794, 50.288247866000113 ], [ -121.619631168999931, 50.288281880000099 ], [ -121.619286222999961, 50.291846325000115 ], [ -121.61928394899995, 50.291869814000059 ], [ -121.613679670999929, 50.291647361000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964366212300097", "sL_AssetLoss": "0.9317", "sL_BldgLoss": "0.8985", "sL_StrLoss": "0.0415", "sL_NStrLoss": "0.857", "sL_ContLoss": "0.0332", "geom_point": "0101000020E6100000FBF44CED546F5EC0D3C89D88B4424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.736911668999966, 50.519232720000055 ], [ -121.742544833999901, 50.519448864000019 ], [ -121.742205613999957, 50.523036140000052 ], [ -121.736572001999903, 50.52281997800003 ], [ -121.736911668999966, 50.519232720000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999169393719867", "sL_AssetLoss": "160.124", "sL_BldgLoss": "159.991", "sL_StrLoss": "159", "sL_NStrLoss": "0.991", "sL_ContLoss": "0.133", "geom_point": "0101000020E61000000E6D9D0BE56A5EC0C2CC4E71E22F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.66881769699998, 50.372241130000084 ], [ -121.67319474899989, 50.372412380000043 ], [ -121.673119819999982, 50.373157695000032 ], [ -121.673130719999918, 50.37325242300011 ], [ -121.672867492999927, 50.376000737000027 ], [ -121.668939446, 50.375847063000016 ], [ -121.667252528999938, 50.375781024000055 ], [ -121.667596589, 50.372193323000047 ], [ -121.66881769699998, 50.372241130000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999184600726883", "sL_AssetLoss": "458.671", "sL_BldgLoss": "458.297", "sL_StrLoss": "456", "sL_NStrLoss": "2.297", "sL_ContLoss": "0.374", "geom_point": "0101000020E610000005ED38F2BE6B5EC0B1C26F3B1B384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.68167916499999, 50.44063928300011 ], [ -121.681737110999975, 50.440033975000091 ], [ -121.681473496999942, 50.440023703000094 ], [ -121.680360883, 50.439980341000094 ], [ -121.68060442, 50.437436992000052 ], [ -121.680605334999981, 50.437427449000054 ], [ -121.680601670999962, 50.437427306000075 ], [ -121.679748029999971, 50.437394029000103 ], [ -121.679935523999987, 50.435436156000051 ], [ -121.680091566999948, 50.433806567000083 ], [ -121.685713804999978, 50.434025613000081 ], [ -121.685469661999946, 50.436578527000037 ], [ -121.686326953999981, 50.436611903000049 ], [ -121.68607987499999, 50.439195714000071 ], [ -121.687456085999912, 50.43924927700008 ], [ -121.687113092999979, 50.442836739000072 ], [ -121.681838643999981, 50.4426313600001 ], [ -121.681489749999983, 50.442617765000065 ], [ -121.68167916499999, 50.44063928300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963185922667284", "sL_AssetLoss": "0.4319", "sL_BldgLoss": "0.416", "sL_StrLoss": "0.018", "sL_NStrLoss": "0.398", "sL_ContLoss": "0.0159", "geom_point": "0101000020E6100000E5CCD9AFF96D5EC06396035EE2404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.718287574999948, 50.507520129000071 ], [ -121.718710542999972, 50.507524785000044 ], [ -121.718717843999983, 50.507255055000051 ], [ -121.718294879999945, 50.507250399000085 ], [ -121.718287574999948, 50.507520129000071 ], [ -121.718130934999976, 50.507518405000013 ], [ -121.717018676999942, 50.507506150000026 ], [ -121.717025986999928, 50.507236420000041 ], [ -121.716603022999976, 50.507231758000096 ], [ -121.716617645999989, 50.506692297000072 ], [ -121.716194688, 50.506687634000116 ], [ -121.71620200299995, 50.506417904000095 ], [ -121.715779046999955, 50.506413238000079 ], [ -121.715817564999952, 50.504993200000115 ], [ -121.715822945999946, 50.504794857000064 ], [ -121.715633962999945, 50.504792771000048 ], [ -121.715400003999989, 50.504790191000076 ], [ -121.715406666999982, 50.504544642000027 ], [ -121.715421959999972, 50.503981 ], [ -121.716267830000021, 50.503990332000143 ], [ -121.716282455999959, 50.503450871000098 ], [ -121.717974176999945, 50.503469516000081 ], [ -121.717952265999926, 50.504278706000036 ], [ -121.717106390999959, 50.504269388000047 ], [ -121.717099081999962, 50.50453911800011 ], [ -121.717522021999955, 50.504543778000027 ], [ -121.717500100999956, 50.505352970000061 ], [ -121.717077153999938, 50.505348308000052 ], [ -121.717069844999969, 50.505618038000094 ], [ -121.718338693999939, 50.505632017000067 ], [ -121.718331391999982, 50.505901747000095 ], [ -121.718754345, 50.505906403000061 ], [ -121.718747044999986, 50.506176133000103 ], [ -121.719169998999973, 50.506180788000016 ], [ -121.719162701999949, 50.506450518000058 ], [ -121.719585657999943, 50.506455172000109 ], [ -121.719578362999982, 50.506724903000091 ], [ -121.720001323999966, 50.506729554000081 ], [ -121.719986736999942, 50.50726901500007 ], [ -121.720409701999969, 50.50727366600006 ], [ -121.720402409999963, 50.50754339500012 ], [ -121.720825378999976, 50.507548044000032 ], [ -121.720803511999947, 50.508357236000087 ], [ -121.720380537999944, 50.508352587000125 ], [ -121.72037324599998, 50.508622318000086 ], [ -121.721219199999936, 50.508631615000063 ], [ -121.721211912999962, 50.508901345000034 ], [ -121.721634891999955, 50.508905991000084 ], [ -121.72160575599996, 50.509984913000089 ], [ -121.720370445999947, 50.509971340000106 ], [ -121.719913799999958, 50.509966320000032 ], [ -121.719921092999982, 50.509696590000019 ], [ -121.719075120999946, 50.509687283000126 ], [ -121.7190824199999, 50.50941755300007 ], [ -121.718659435999925, 50.509412898000051 ], [ -121.718674037999932, 50.508873437000048 ], [ -121.71825105899994, 50.508868781000089 ], [ -121.718283124999957, 50.507684521000051 ], [ -121.718287574999948, 50.507520129000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "0.997957238618674", "sL_AssetLoss": "629.54", "sL_BldgLoss": "628.254", "sL_StrLoss": "615.274", "sL_NStrLoss": "12.98", "sL_ContLoss": "1.286", "geom_point": "0101000020E610000084A86F57F7665EC04F4D9363FC204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.605956067999941, 50.259388144000127 ], [ -121.606051953999923, 50.258399631000039 ], [ -121.604627218999909, 50.258342890000051 ], [ -121.604909005999943, 50.255438614000056 ], [ -121.604975340999886, 50.254754848000104 ], [ -121.606010615999978, 50.254796081000016 ], [ -121.606229516999946, 50.25253907300003 ], [ -121.611828926999962, 50.252761914000104 ], [ -121.611754122999969, 50.253534205000015 ], [ -121.611937873999963, 50.253541512000083 ], [ -121.611936444999969, 50.253556276000062 ], [ -121.612439958999957, 50.253576299000073 ], [ -121.612092436999944, 50.257164369000094 ], [ -121.611794485999937, 50.257152521000073 ], [ -121.611653765999975, 50.258605161000034 ], [ -121.612655782999951, 50.258645005000062 ], [ -121.612308238999915, 50.262233052000049 ], [ -121.61169062799992, 50.262208495 ], [ -121.611478128999948, 50.262200045000085 ], [ -121.61145421499999, 50.262446872000098 ], [ -121.610612271999969, 50.262413388 ], [ -121.610538716999955, 50.263172392000101 ], [ -121.607125443999962, 50.263036580000048 ], [ -121.607113503999983, 50.26283839000012 ], [ -121.606604779999913, 50.261546698000181 ], [ -121.605831391999956, 50.261113701000077 ], [ -121.60589541, 50.260808883000088 ], [ -121.605188087, 50.260372324000066 ], [ -121.605286161999956, 50.259361466000065 ], [ -121.605956067999941, 50.259388144000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999117245806918", "sL_AssetLoss": "174.454", "sL_BldgLoss": "174.3", "sL_StrLoss": "173", "sL_NStrLoss": "1.3", "sL_ContLoss": "0.154", "geom_point": "0101000020E610000006C566B2454E5EC09A3525176B2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.220403903999923, 50.330031944000069 ], [ -121.220477333999966, 50.329337321000125 ], [ -121.220961018999972, 50.329358240000062 ], [ -121.220997078999986, 50.329380298000032 ], [ -121.221760819999972, 50.329616702000045 ], [ -121.222865193999908, 50.329777696000065 ], [ -121.224619393999944, 50.329830412000028 ], [ -121.225372301999968, 50.330012703000094 ], [ -121.226008472999965, 50.330297439000063 ], [ -121.225705544999983, 50.333166140000095 ], [ -121.22496900099999, 50.333134318000099 ], [ -121.220098176999926, 50.332923756000099 ], [ -121.220403903999923, 50.330031944000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "0.999653959282542", "sL_AssetLoss": "398.797", "sL_BldgLoss": "398.659", "sL_StrLoss": "398", "sL_NStrLoss": "0.659", "sL_ContLoss": "0.138", "geom_point": "0101000020E61000000A4C444B60565EC044D1B0D658354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.34257785299998, 50.419514544000066 ], [ -121.342524674999979, 50.419373600000014 ], [ -121.341572451999966, 50.419575683000119 ], [ -121.341196435999962, 50.419655478000095 ], [ -121.341538374999956, 50.416343493000113 ], [ -121.342272599999916, 50.416374377000132 ], [ -121.342290452999947, 50.416201409000081 ], [ -121.346296826999904, 50.416369848000095 ], [ -121.346305277999974, 50.416287905000132 ], [ -121.347326759999973, 50.416330828000099 ], [ -121.347356546999919, 50.41604192900013 ], [ -121.348462853999962, 50.416088405000075 ], [ -121.348481908999986, 50.415903556000046 ], [ -121.349172969999984, 50.415932581000071 ], [ -121.349186183999976, 50.415804372000082 ], [ -121.351970683999951, 50.415921282000106 ], [ -121.352145650999915, 50.414222538000047 ], [ -121.352955155999936, 50.414256513000105 ], [ -121.352999636999954, 50.413824557000098 ], [ -121.353579124999953, 50.413848875000021 ], [ -121.353584315, 50.413798471000064 ], [ -121.35363857699997, 50.413800747000032 ], [ -121.353673930999932, 50.413457373000064 ], [ -121.354208569999955, 50.413479805000087 ], [ -121.354241524, 50.413159685000096 ], [ -121.35906355099999, 50.413361890000061 ], [ -121.359859555999975, 50.41339524900004 ], [ -121.359843820999941, 50.413548287000062 ], [ -121.358863009999965, 50.413608834000051 ], [ -121.357890451999978, 50.413492261000101 ], [ -121.357569886999926, 50.413453832000073 ], [ -121.357669749, 50.41367331 ], [ -121.357884982999948, 50.414145998000059 ], [ -121.357136715999985, 50.415979998000097 ], [ -121.35659256, 50.416014982000142 ], [ -121.35614366, 50.416043810000104 ], [ -121.35421734099998, 50.416167576000099 ], [ -121.354862653999973, 50.41777002700011 ], [ -121.354175293999972, 50.417847914000042 ], [ -121.352766098999979, 50.41829511100012 ], [ -121.349248905999943, 50.419010096000079 ], [ -121.348656204999912, 50.419072794000058 ], [ -121.347855006999922, 50.419035711000085 ], [ -121.347387216999934, 50.419145400000076 ], [ -121.345398288999931, 50.419233712000107 ], [ -121.344453286999951, 50.419458493000015 ], [ -121.344434395999926, 50.419462992000028 ], [ -121.343658699999978, 50.419478695000087 ], [ -121.343052997999962, 50.419505699000069 ], [ -121.342661690999947, 50.419736866000086 ], [ -121.34257785299998, 50.419514544000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.964219744133543", "sL_AssetLoss": "1.4617", "sL_BldgLoss": "1.4094", "sL_StrLoss": "0.0694", "sL_NStrLoss": "1.34", "sL_ContLoss": "0.0523", "geom_point": "0101000020E61000006F4C0D3CD06A5EC0C0355E571F314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.66632377799999, 50.38186521500009 ], [ -121.67193949299994, 50.382084974000065 ], [ -121.671595702999952, 50.385672644000067 ], [ -121.668682737999973, 50.385558688000124 ], [ -121.666017807999978, 50.38545436700015 ], [ -121.665979543999953, 50.385452868000044 ], [ -121.666191883999971, 50.383239908000135 ], [ -121.666221758999939, 50.382928537000041 ], [ -121.66632377799999, 50.38186521500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998677248677249", "sL_AssetLoss": "190.512", "sL_BldgLoss": "190.26", "sL_StrLoss": "188", "sL_NStrLoss": "2.26", "sL_ContLoss": "0.252", "geom_point": "0101000020E61000006BA8A4909C645EC0A3EC0CD713184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.571671304999938, 50.192570245000077 ], [ -121.57174140799998, 50.191852052000058 ], [ -121.571427644999943, 50.191839441000063 ], [ -121.571666716999985, 50.189390142000057 ], [ -121.571515106999968, 50.189384048000065 ], [ -121.571785204999955, 50.18661666900006 ], [ -121.571404355999974, 50.186611985000106 ], [ -121.571412403999943, 50.186342257000057 ], [ -121.569732014, 50.186321576000104 ], [ -121.569764238999966, 50.185242660000085 ], [ -121.570184328999972, 50.185247832000115 ], [ -121.570192381999945, 50.184978104000017 ], [ -121.570612467999936, 50.184983275000072 ], [ -121.570620519999935, 50.184713546000033 ], [ -121.57188077099994, 50.184729048000094 ], [ -121.571864679999976, 50.185268506000085 ], [ -121.572284770999929, 50.185273670000086 ], [ -121.572276728999967, 50.185543399000039 ], [ -121.572322523999958, 50.185543963000043 ], [ -121.572446179999972, 50.184276701000051 ], [ -121.572675371999978, 50.184285913000075 ], [ -121.572980033999954, 50.185675554000078 ], [ -121.573043118999962, 50.185963379 ], [ -121.573074791999929, 50.186107769000024 ], [ -121.573204760999943, 50.186758505000057 ], [ -121.573292553999934, 50.187198123000073 ], [ -121.573319737999896, 50.187401152000049 ], [ -121.5733835, 50.187877215000064 ], [ -121.573375727999974, 50.18827313700011 ], [ -121.573034256999989, 50.189442810000045 ], [ -121.572947977999945, 50.190111203000093 ], [ -121.572956133999952, 50.190649077000053 ], [ -121.572968683999989, 50.191480900000066 ], [ -121.573000014999948, 50.192623642000022 ], [ -121.571671304999938, 50.192570245000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "0.998357197367973", "sL_AssetLoss": "372.5341", "sL_BldgLoss": "371.9221", "sL_StrLoss": "366.0921", "sL_NStrLoss": "5.83", "sL_ContLoss": "0.612", "geom_point": "0101000020E610000002799F78486C5EC03B1A66ECF4354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.692711062999962, 50.418123824000105 ], [ -121.696571861999971, 50.418273888000023 ], [ -121.696229751999979, 50.42186147200006 ], [ -121.695963524999968, 50.4218511280001 ], [ -121.695739667999973, 50.424198179000015 ], [ -121.691789983999939, 50.424044648000098 ], [ -121.691752812999979, 50.424433972000031 ], [ -121.690647043999917, 50.424390964000025 ], [ -121.686975888999882, 50.424248097000046 ], [ -121.686556601999925, 50.423352513000097 ], [ -121.686369331999941, 50.421729727000084 ], [ -121.686460886999896, 50.420771875000057 ], [ -121.686578167999969, 50.420631717000056 ], [ -121.690424036999943, 50.420781407000085 ], [ -121.690461214999956, 50.420392082000092 ], [ -121.690727430999956, 50.420402439000071 ], [ -121.690951529999936, 50.418055388000099 ], [ -121.69188624, 50.418091746000087 ], [ -121.692175205999987, 50.418102985000111 ], [ -121.692711062999962, 50.418123824000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999397714243173", "sL_AssetLoss": "163.8757", "sL_BldgLoss": "163.777", "sL_StrLoss": "163", "sL_NStrLoss": "0.777", "sL_ContLoss": "0.0987", "geom_point": "0101000020E61000003EA55205866B5EC032C00D4A7B304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.68177962499999, 50.377743520000102 ], [ -121.68288841399999, 50.377710564000111 ], [ -121.682775529999944, 50.378891757000126 ], [ -121.682683931, 50.379850194000021 ], [ -121.67706844199995, 50.379630979000083 ], [ -121.677238861999939, 50.377850084000052 ], [ -121.68177962499999, 50.377743520000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998101858819075", "sL_AssetLoss": "205.991", "sL_BldgLoss": "205.6", "sL_StrLoss": "202", "sL_NStrLoss": "3.6", "sL_ContLoss": "0.391", "geom_point": "0101000020E61000002C0937B6AA655EC06F3226D4BE1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.586964625999897, 50.249784632000093 ], [ -121.587022771999983, 50.249187645000099 ], [ -121.585919428999901, 50.249143506000074 ], [ -121.586131807999934, 50.246963447000056 ], [ -121.58601130299999, 50.246961981000034 ], [ -121.586018579999944, 50.246716144000118 ], [ -121.586019284999935, 50.246692253000106 ], [ -121.585990696999929, 50.246691905000041 ], [ -121.585598654999984, 50.246687134000084 ], [ -121.585608352999927, 50.246359515000108 ], [ -121.585614623000012, 50.246147678000035 ], [ -121.585361139999918, 50.246144593000054 ], [ -121.585193996999976, 50.246142558000081 ], [ -121.585199242999948, 50.245965416000047 ], [ -121.585217956999912, 50.24533337400009 ], [ -121.586479813999929, 50.245348732000124 ], [ -121.586473456999954, 50.245563662000102 ], [ -121.58779116, 50.24561637500009 ], [ -121.587825113999955, 50.245642491000062 ], [ -121.58858129499994, 50.246119604000093 ], [ -121.589617310999984, 50.247139304 ], [ -121.59018461299992, 50.247461209000036 ], [ -121.591201490999964, 50.248112098000036 ], [ -121.591813886999944, 50.24829009000004 ], [ -121.592277898999924, 50.248737308000074 ], [ -121.592428007999942, 50.248909604000062 ], [ -121.592371778999961, 50.249393899 ], [ -121.592598708999944, 50.249647551000031 ], [ -121.592563601, 50.250008451000021 ], [ -121.588448219999975, 50.249843967000082 ], [ -121.586964625999897, 50.249784632000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.99961307750556", "sL_AssetLoss": "126.3819", "sL_BldgLoss": "126.333", "sL_StrLoss": "126", "sL_NStrLoss": "0.333", "sL_ContLoss": "0.0489", "geom_point": "0101000020E61000009D3DE13664475EC0AEC30B0144214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.113602107999895, 50.261298806000077 ], [ -121.113039212999965, 50.260677893000071 ], [ -121.112876398999973, 50.260126694000078 ], [ -121.112989304999942, 50.259759302000084 ], [ -121.113600978999926, 50.259220894000073 ], [ -121.116094669999924, 50.257939882000052 ], [ -121.11704031, 50.257981744000062 ], [ -121.117619231999981, 50.258007368000079 ], [ -121.117556838000013, 50.258586079000054 ], [ -121.117250127999938, 50.261430633000067 ], [ -121.116951719999946, 50.261407104000057 ], [ -121.116119644999941, 50.261544513000047 ], [ -121.113941709999963, 50.261448077000104 ], [ -121.113602107999895, 50.261298806000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963985032740879", "sL_AssetLoss": "1.069", "sL_BldgLoss": "1.0305", "sL_StrLoss": "0.0475", "sL_NStrLoss": "0.983", "sL_ContLoss": "0.0385", "geom_point": "0101000020E610000074D6C0B9736D5EC0A11851C17E3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.707544177999964, 50.494153262000111 ], [ -121.713174071, 50.494370901000075 ], [ -121.71283270399999, 50.497958197000081 ], [ -121.70932613799998, 50.497822675000087 ], [ -121.707202364999944, 50.497740542000017 ], [ -121.707346129999962, 50.496231822000034 ], [ -121.707544177999964, 50.494153262000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999208430802675", "sL_AssetLoss": "169.284", "sL_BldgLoss": "169.15", "sL_StrLoss": "168", "sL_NStrLoss": "1.15", "sL_ContLoss": "0.134", "geom_point": "0101000020E6100000B8B04DAE124E5EC0F08D5BABC1284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.21611803499998, 50.316910886000102 ], [ -121.221723398999956, 50.317153477000062 ], [ -121.221344443999925, 50.320739972000069 ], [ -121.219460932999979, 50.32065848900001 ], [ -121.219713214999928, 50.320095899000108 ], [ -121.21986881499997, 50.319721293000079 ], [ -121.219939705999963, 50.318975089000077 ], [ -121.219609791999943, 50.318403894000063 ], [ -121.218754985999936, 50.317968091000125 ], [ -121.21724848099997, 50.317674801000081 ], [ -121.216293890999935, 50.317291600000033 ], [ -121.216090873999946, 50.317167660000067 ], [ -121.21611803499998, 50.316910886000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "0.997549961874657", "sL_AssetLoss": "203.6703", "sL_BldgLoss": "203.1713", "sL_StrLoss": "196.3213", "sL_NStrLoss": "6.85", "sL_ContLoss": "0.499", "geom_point": "0101000020E6100000EB58E710DF5F5EC0A3E826D6CE1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.49644882699999, 50.250420894000072 ], [ -121.496488904999964, 50.250017725000085 ], [ -121.495257814999903, 50.249967462000079 ], [ -121.49527019099996, 50.249842995000037 ], [ -121.494455895999977, 50.249809741000028 ], [ -121.494482775999984, 50.249539456000043 ], [ -121.493740088999971, 50.249509122000063 ], [ -121.493763596999955, 50.249272779000101 ], [ -121.492858374999912, 50.249235799000111 ], [ -121.493143195999963, 50.246372625000063 ], [ -121.493215266, 50.245648071000112 ], [ -121.496009107999924, 50.245762182000071 ], [ -121.496221328999923, 50.245659262000125 ], [ -121.496643428999946, 50.245578963000064 ], [ -121.497247220999924, 50.245812729000093 ], [ -121.498813264999939, 50.245876643000052 ], [ -121.498789785, 50.246112988000085 ], [ -121.499694948999945, 50.246149920000079 ], [ -121.499668101999973, 50.246420207000064 ], [ -121.500410742999932, 50.246450502000052 ], [ -121.500398381999958, 50.246574970000061 ], [ -121.501212623999933, 50.246608180000074 ], [ -121.501097025999954, 50.247772354000041 ], [ -121.502328061999947, 50.247822553000113 ], [ -121.502309506999921, 50.248009464000077 ], [ -121.502936752999943, 50.248035037000129 ], [ -121.502738960999977, 50.250027655000039 ], [ -121.502580612000017, 50.251622784000041 ], [ -121.499018337999971, 50.2514775080001 ], [ -121.496672891999935, 50.25048908900002 ], [ -121.49644882699999, 50.250420894000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.960342146189736", "sL_AssetLoss": "0.5144", "sL_BldgLoss": "0.494", "sL_StrLoss": "0.018", "sL_NStrLoss": "0.476", "sL_ContLoss": "0.0204", "geom_point": "0101000020E610000013B69F8C713A5EC0BD55F8AF832F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.912756321999936, 50.371430104000098 ], [ -120.912548293999947, 50.371354610000097 ], [ -120.91214511199999, 50.371581100000078 ], [ -120.911110182999906, 50.371769092000093 ], [ -120.909934190999977, 50.371630914 ], [ -120.909522499999966, 50.371723494000115 ], [ -120.908981395999945, 50.371982278000097 ], [ -120.909264347999937, 50.369472273000113 ], [ -120.909278515999944, 50.369346586000098 ], [ -120.910687168999971, 50.369411423000031 ], [ -120.910750236999917, 50.369414325000093 ], [ -120.910754002999965, 50.369380908000046 ], [ -120.910764155999928, 50.369290821000064 ], [ -120.910934175999898, 50.369298645000129 ], [ -120.915279107999979, 50.369498510000049 ], [ -120.916374322, 50.369548862000073 ], [ -120.91632354799998, 50.369999915000072 ], [ -120.916372450999944, 50.370002163000052 ], [ -120.916218173999965, 50.371372660000098 ], [ -120.915968846999974, 50.373587338000043 ], [ -120.915950286999973, 50.373586485000011 ], [ -120.915919860999949, 50.373856739000104 ], [ -120.913874207000021, 50.373762682000049 ], [ -120.91223446399999, 50.373687262 ], [ -120.912244213999912, 50.373453889000075 ], [ -120.912733578999934, 50.37318329400005 ], [ -120.913126781999935, 50.3725709 ], [ -120.912738192999953, 50.372122314000102 ], [ -120.91277799, 50.371898709000106 ], [ -120.91295210499996, 50.371739184000035 ], [ -120.912756321999936, 50.371430104000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998332074073018", "sL_AssetLoss": "210.441", "sL_BldgLoss": "210.09", "sL_StrLoss": "207", "sL_NStrLoss": "3.09", "sL_ContLoss": "0.351", "geom_point": "0101000020E610000092F1413291655EC01B7C4895341C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.586316780999965, 50.222411579000038 ], [ -121.586325917999957, 50.222102488000125 ], [ -121.584518155999916, 50.222030104000076 ], [ -121.584039467999929, 50.221619973000038 ], [ -121.584351009999935, 50.21842126800005 ], [ -121.588105868999932, 50.218571600000082 ], [ -121.589946103999949, 50.218645229000082 ], [ -121.5895970699999, 50.222233390000056 ], [ -121.588249231999924, 50.222179466000057 ], [ -121.587586125999977, 50.222152930000114 ], [ -121.587578034999979, 50.222426920000103 ], [ -121.586316780999965, 50.222411579000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.998121959619441", "sL_AssetLoss": "185.832", "sL_BldgLoss": "185.483", "sL_StrLoss": "180.203", "sL_NStrLoss": "5.28", "sL_ContLoss": "0.349", "geom_point": "0101000020E61000002BA6903366635EC0DCEA204CDD274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.550789466999959, 50.30918129400002 ], [ -121.556395604, 50.309406929000033 ], [ -121.556043213999956, 50.312994565000039 ], [ -121.555508005999968, 50.312973037000098 ], [ -121.555436529999909, 50.313700578000073 ], [ -121.549829867, 50.313474896000095 ], [ -121.550182750999923, 50.309887282000027 ], [ -121.550717919999954, 50.309908836000048 ], [ -121.550789466999959, 50.30918129400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.961215415019763", "sL_AssetLoss": "0.4048", "sL_BldgLoss": "0.3891", "sL_StrLoss": "0.0151", "sL_NStrLoss": "0.374", "sL_ContLoss": "0.0157", "geom_point": "0101000020E61000008FE686AE5D4E5EC09AD59695812B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.226739413999951, 50.336745173000082 ], [ -121.227529892999925, 50.336757229000121 ], [ -121.227507448999958, 50.337360198000077 ], [ -121.227079991999929, 50.337360194000091 ], [ -121.226188712999942, 50.337526806 ], [ -121.225789293999966, 50.337665005000069 ], [ -121.225440606999911, 50.337938384000097 ], [ -121.225321010999949, 50.338512392000041 ], [ -121.22574850899997, 50.33989529400003 ], [ -121.225797385999968, 50.340839494000058 ], [ -121.225450710999937, 50.341869190000047 ], [ -121.225238890999918, 50.342179342000136 ], [ -121.2247432, 50.342157930000063 ], [ -121.222537061999944, 50.342062602000098 ], [ -121.222916101999928, 50.33847620100002 ], [ -121.224379613999972, 50.338539444000084 ], [ -121.224512090999966, 50.338545168000095 ], [ -121.224524109999933, 50.338222789000085 ], [ -121.22454021199998, 50.337790926000089 ], [ -121.224755472999973, 50.337794213000024 ], [ -121.225382934999956, 50.337803793000042 ], [ -121.225401980999933, 50.337292703000124 ], [ -121.225413083999968, 50.33699476500005 ], [ -121.226075907999956, 50.33700488100007 ], [ -121.226255791999932, 50.337007625000105 ], [ -121.226258556999966, 50.33693338900013 ], [ -121.226265836999985, 50.33673794900011 ], [ -121.226739413999951, 50.336745173000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998924913710179", "sL_AssetLoss": "176.73", "sL_BldgLoss": "176.54", "sL_StrLoss": "175", "sL_NStrLoss": "1.54", "sL_ContLoss": "0.19", "geom_point": "0101000020E6100000F46C9899806C5EC0F63C2421B6364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.695916703999941, 50.428756094000043 ], [ -121.695957261999951, 50.428756548000131 ], [ -121.694006037999941, 50.428680732000025 ], [ -121.694348375999965, 50.425093185000023 ], [ -121.69626863699996, 50.425167800000025 ], [ -121.696444291999953, 50.429386218000047 ], [ -121.696443087999967, 50.430111067000098 ], [ -121.695035107999928, 50.430095282000096 ], [ -121.695045791999959, 50.429706600000031 ], [ -121.695064767999952, 50.429016356000041 ], [ -121.695909292999943, 50.429025825000117 ], [ -121.695916703999941, 50.428756094000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999038527573656", "sL_AssetLoss": "174.732", "sL_BldgLoss": "174.564", "sL_StrLoss": "174", "sL_NStrLoss": "0.564", "sL_ContLoss": "0.168", "geom_point": "0101000020E610000004FB129ECE685EC0B9D772FC0A274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.637841224999946, 50.303231066000095 ], [ -121.640586779999964, 50.303339450000074 ], [ -121.640241103999969, 50.306927380000076 ], [ -121.638663617999967, 50.306865115000029 ], [ -121.6346348599999, 50.306705994000062 ], [ -121.63498097899999, 50.303118080000111 ], [ -121.637841224999946, 50.303231066000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999852462266456", "sL_AssetLoss": "130.1362", "sL_BldgLoss": "130.117", "sL_StrLoss": "130", "sL_NStrLoss": "0.117", "sL_ContLoss": "0.0192", "geom_point": "0101000020E6100000239C79E663525EC0A61C9B3646334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.285599142, 50.399100904000122 ], [ -121.285632233999962, 50.398784049 ], [ -121.287175395999967, 50.398954404000115 ], [ -121.287703906999965, 50.399106811000053 ], [ -121.288590183999958, 50.399532600000043 ], [ -121.289238906999969, 50.400226197000038 ], [ -121.289565203999985, 50.400959696000079 ], [ -121.289757105999968, 50.401898210000049 ], [ -121.289756927999946, 50.402015090000077 ], [ -121.288479834999933, 50.401960742000099 ], [ -121.285314527999944, 50.401825974000054 ], [ -121.285599142, 50.399100904000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998985588148788", "sL_AssetLoss": "166.599", "sL_BldgLoss": "166.43", "sL_StrLoss": "165", "sL_NStrLoss": "1.43", "sL_ContLoss": "0.169", "geom_point": "0101000020E6100000323B6AD0806E5EC01220F93974404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.724706734, 50.505070597000049 ], [ -121.724756340999946, 50.504547972000111 ], [ -121.72418555099992, 50.504525985000051 ], [ -121.72452606399996, 50.500938683000122 ], [ -121.725882728, 50.500990939000097 ], [ -121.725969117, 50.501145698000144 ], [ -121.726322683999953, 50.501671202000047 ], [ -121.727178606999956, 50.502337695000087 ], [ -121.727397975999949, 50.502547096000079 ], [ -121.727746994, 50.502693815000043 ], [ -121.728326492999898, 50.503141014000043 ], [ -121.729665708999974, 50.50427041100005 ], [ -121.729705899999971, 50.504325901000115 ], [ -121.730272488999915, 50.504744702000025 ], [ -121.730379383999932, 50.504851562000077 ], [ -121.730338071999938, 50.505287363000065 ], [ -121.724706734, 50.505070597000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998987605001779", "sL_AssetLoss": "182.735", "sL_BldgLoss": "182.55", "sL_StrLoss": "181", "sL_NStrLoss": "1.55", "sL_ContLoss": "0.185", "geom_point": "0101000020E610000079D72CD9A9655EC0DEED72F8C11C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.587861897999957, 50.222962952000039 ], [ -121.59087816, 50.223083613000043 ], [ -121.590529165999911, 50.226671757000062 ], [ -121.588816649999956, 50.226603261000065 ], [ -121.586750236999947, 50.226520573000073 ], [ -121.58667760799996, 50.225662306000068 ], [ -121.58650161499996, 50.22445449700011 ], [ -121.586003899999966, 50.223773800000089 ], [ -121.585620292999977, 50.22342770400008 ], [ -121.585440114999955, 50.222922095000037 ], [ -121.58538572799992, 50.222863834000059 ], [ -121.587861897999957, 50.222962952000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999655256088185", "sL_AssetLoss": "127.3409", "sL_BldgLoss": "127.297", "sL_StrLoss": "127", "sL_NStrLoss": "0.297", "sL_ContLoss": "0.0439", "geom_point": "0101000020E61000003FE5771E05585EC0290BFC34B0334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.379231974, 50.4024609310001 ], [ -121.379434806999939, 50.402469397000033 ], [ -121.379422352999924, 50.402591068000021 ], [ -121.378512800999928, 50.403024806000111 ], [ -121.378166087999944, 50.40328109100011 ], [ -121.37782800399998, 50.403708394000091 ], [ -121.376791200999946, 50.404386287000072 ], [ -121.375083508999978, 50.405378989000056 ], [ -121.374144305999948, 50.406147211000075 ], [ -121.373813572999978, 50.406133392000072 ], [ -121.372929090999961, 50.40609643000009 ], [ -121.373296736999947, 50.40250981 ], [ -121.373787745999962, 50.402530330000062 ], [ -121.373818029999953, 50.402234822000047 ], [ -121.379231974, 50.4024609310001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998078853877047", "sL_AssetLoss": "207.168", "sL_BldgLoss": "206.77", "sL_StrLoss": "203", "sL_NStrLoss": "3.77", "sL_ContLoss": "0.398", "geom_point": "0101000020E61000007BFC9C8AAD645EC0381B23C0061A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.572216965999985, 50.20355986600002 ], [ -121.572260057999955, 50.203118445000044 ], [ -121.570053760999926, 50.203029779000104 ], [ -121.570083828999913, 50.202721923000091 ], [ -121.56908964699997, 50.202681954000077 ], [ -121.569109081999926, 50.202483011000069 ], [ -121.57234995, 50.202386446000055 ], [ -121.57281151699999, 50.202397122000043 ], [ -121.572811868999949, 50.202405763000073 ], [ -121.573150213999938, 50.20239941900013 ], [ -121.57336369699999, 50.202395401000054 ], [ -121.573535350999961, 50.202392176000039 ], [ -121.57392035, 50.202385959000033 ], [ -121.576059774999948, 50.202353120000112 ], [ -121.575985244, 50.202508496000064 ], [ -121.5757082639999, 50.20327009300005 ], [ -121.574494257999987, 50.203918126000097 ], [ -121.57503101499999, 50.204486392000057 ], [ -121.573865969999986, 50.204526837000095 ], [ -121.571809831999943, 50.204590200000077 ], [ -121.571811668999914, 50.204604226000093 ], [ -121.571195565999943, 50.204618425000021 ], [ -121.571302517, 50.203523122000078 ], [ -121.572216965999985, 50.20355986600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998761276274274", "sL_AssetLoss": "180.024", "sL_BldgLoss": "179.801", "sL_StrLoss": "179", "sL_NStrLoss": "0.801", "sL_ContLoss": "0.223", "geom_point": "0101000020E61000005310555B1E645EC0EDA7B51F5F244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.561727167999962, 50.282246488000069 ], [ -121.567330027999944, 50.282471576000042 ], [ -121.566978712999941, 50.286059371000078 ], [ -121.561375410999972, 50.28583426600003 ], [ -121.561727167999962, 50.282246488000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998955362023891", "sL_AssetLoss": "184.753", "sL_BldgLoss": "184.56", "sL_StrLoss": "183", "sL_NStrLoss": "1.56", "sL_ContLoss": "0.193", "geom_point": "0101000020E6100000B5266940F5635EC0D584E5B69A204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.558408828, 50.256469250000066 ], [ -121.558757672999889, 50.252911121000047 ], [ -121.559931513999956, 50.252962894000106 ], [ -121.56062208299997, 50.252827596000067 ], [ -121.5610009899999, 50.252850398000135 ], [ -121.561225581999963, 50.252772937000024 ], [ -121.565242466999933, 50.252934469000138 ], [ -121.564891215, 50.25652239300004 ], [ -121.564028738999966, 50.256487723000134 ], [ -121.564008488999974, 50.25669451400006 ], [ -121.558408828, 50.256469250000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "0.998668538391218", "sL_AssetLoss": "179.7273", "sL_BldgLoss": "179.488", "sL_StrLoss": "176.118", "sL_NStrLoss": "3.37", "sL_ContLoss": "0.2393", "geom_point": "0101000020E6100000521401B119835EC0A46FF342112C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.046077693999933, 50.34284697800004 ], [ -122.046162469999956, 50.341877382000121 ], [ -122.051774986999945, 50.342077899000046 ], [ -122.051720123999957, 50.342706261000089 ], [ -122.051819226999967, 50.342709799000083 ], [ -122.05150585, 50.346298774000061 ], [ -122.050575634000012, 50.346265561000109 ], [ -122.050545828999986, 50.346606796000074 ], [ -122.044932756999955, 50.346406219000052 ], [ -122.045246653999982, 50.342817262000082 ], [ -122.046077693999933, 50.34284697800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998029853063918", "sL_AssetLoss": "206.076", "sL_BldgLoss": "205.67", "sL_StrLoss": "202", "sL_NStrLoss": "3.67", "sL_ContLoss": "0.406", "geom_point": "0101000020E6100000B8F8E30FA9635EC0DFAD2460110C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.555936431999939, 50.092428023000089 ], [ -121.56015877599998, 50.092598653000081 ], [ -121.559808360999952, 50.096187312000062 ], [ -121.555663050999982, 50.09601979800005 ], [ -121.554228465999984, 50.095961789000064 ], [ -121.554579318999927, 50.09237314500011 ], [ -121.555936431999939, 50.092428023000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998551334631912", "sL_AssetLoss": "204.326", "sL_BldgLoss": "204.03", "sL_StrLoss": "203", "sL_NStrLoss": "1.03", "sL_ContLoss": "0.296", "geom_point": "0101000020E610000039B9BE93BF625EC064E3A8791A074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.546123989999913, 50.056913394000063 ], [ -121.544541251999973, 50.054732980000075 ], [ -121.544082235999966, 50.054895173000013 ], [ -121.545286531999963, 50.057051048000105 ], [ -121.546123989999913, 50.056913394000063 ], [ -121.546518926999937, 50.058052765000085 ], [ -121.546506023999896, 50.058184625000131 ], [ -121.543226674999943, 50.058051602000063 ], [ -121.540930846999942, 50.05795841499999 ], [ -121.541110344999936, 50.056126408000083 ], [ -121.540243243999953, 50.056091201000044 ], [ -121.54059489, 50.052502412000081 ], [ -121.541759250999917, 50.052549689000038 ], [ -121.542168897999943, 50.0525663190001 ], [ -121.542721205999968, 50.054156432000099 ], [ -121.54313547699995, 50.054121078000065 ], [ -121.542730037999917, 50.052589096000062 ], [ -121.543834557999944, 50.052633922000041 ], [ -121.543966208999905, 50.05298260600005 ], [ -121.544447076999987, 50.053707496000065 ], [ -121.544602500999986, 50.054141908000112 ], [ -121.544950604999926, 50.054607392000086 ], [ -121.545097706999954, 50.054804087000029 ], [ -121.545723094999914, 50.056313798000097 ], [ -121.545999932999948, 50.056727845000069 ], [ -121.546123989999913, 50.056913394000063 ] ], [ [ -121.541717746999979, 50.054721216000075 ], [ -121.541750287999932, 50.057912848000043 ], [ -121.541874227000037, 50.057890393000058 ], [ -121.542635002999958, 50.057772645000043 ], [ -121.541717746999979, 50.054721216000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.966254131754939", "sL_AssetLoss": "1.3009", "sL_BldgLoss": "1.257", "sL_StrLoss": "0.067", "sL_NStrLoss": "1.19", "sL_ContLoss": "0.0439", "geom_point": "0101000020E6100000FB79328361595EC069AE0DF4542A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.39490957299995, 50.332443478000073 ], [ -121.394964306999924, 50.331906070000095 ], [ -121.394686000999982, 50.331894474000102 ], [ -121.39505132, 50.328307447000014 ], [ -121.396182739000025, 50.328354585000092 ], [ -121.396604798999959, 50.32837216700004 ], [ -121.397882103999962, 50.329811907000092 ], [ -121.398574177999961, 50.330918496000059 ], [ -121.398831507999915, 50.331677604000042 ], [ -121.398879620999963, 50.3326088210001 ], [ -121.398521045999942, 50.332593893000073 ], [ -121.39490957299995, 50.332443478000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999009082433787", "sL_AssetLoss": "170.549", "sL_BldgLoss": "170.38", "sL_StrLoss": "169", "sL_NStrLoss": "1.38", "sL_ContLoss": "0.169", "geom_point": "0101000020E6100000B9CFE0A58A595EC0D91AF8EE62224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.396124818999951, 50.270196345000045 ], [ -121.396401726999969, 50.267472697000088 ], [ -121.395853888999966, 50.267449844000055 ], [ -121.395902847999963, 50.266968315000035 ], [ -121.399333978999906, 50.266953161000075 ], [ -121.402191102999964, 50.267413887000039 ], [ -121.402683059999944, 50.267449304000102 ], [ -121.403048086999917, 50.267484568000071 ], [ -121.402587087999976, 50.267843111000069 ], [ -121.402570546999982, 50.267909670000037 ], [ -121.401983743999935, 50.267885223000071 ], [ -121.401725352999946, 50.270429829000058 ], [ -121.401306344999981, 50.270412371000106 ], [ -121.396124818999951, 50.270196345000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.999500366780217", "sL_AssetLoss": "453.1324", "sL_BldgLoss": "452.906", "sL_StrLoss": "452", "sL_NStrLoss": "0.906", "sL_ContLoss": "0.2264", "geom_point": "0101000020E6100000B35AA2AB1B715EC018C2DE8274444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.767270167999953, 50.537648874000062 ], [ -121.767328549999945, 50.537028066000097 ], [ -121.766598005999967, 50.537000226000039 ], [ -121.766593282000017, 50.537181369000038 ], [ -121.765801094, 50.53717297400005 ], [ -121.764900323999939, 50.537163422000091 ], [ -121.76490627, 50.536935738000047 ], [ -121.763131664999932, 50.536868063000036 ], [ -121.763180111999958, 50.536353399000063 ], [ -121.762247967999954, 50.53631784100002 ], [ -121.762348725999985, 50.535247666 ], [ -121.76198708099993, 50.535243822000083 ], [ -121.761993234999963, 50.535008725000097 ], [ -121.761994140999917, 50.534974088000112 ], [ -121.761908022999989, 50.534973172 ], [ -121.760301264999953, 50.534956075000103 ], [ -121.760315406, 50.534416608000107 ], [ -121.759892191999953, 50.534412102000019 ], [ -121.759899265999962, 50.534142368000047 ], [ -121.759476053999933, 50.534137860000037 ], [ -121.759482768999959, 50.533881836000027 ], [ -121.75949459899999, 50.533430757000076 ], [ -121.759497277999955, 50.533328659000091 ], [ -121.759920482999945, 50.533333168000048 ], [ -121.759927553999958, 50.533063434000056 ], [ -121.762043563999967, 50.533085953000054 ], [ -121.762036504999969, 50.533355687000025 ], [ -121.762526353999988, 50.533360894000054 ], [ -121.762585691999945, 50.532730563000015 ], [ -121.763604251999965, 50.532769418000086 ], [ -121.763630362999947, 50.532491988000118 ], [ -121.763752249, 50.532496637000172 ], [ -121.76377162599999, 50.531755271000101 ], [ -121.765041198999967, 50.531768745000115 ], [ -121.76503415599997, 50.532038478000082 ], [ -121.765880541999977, 50.532047452 ], [ -121.765873503999956, 50.532317187000089 ], [ -121.766296701, 50.532321672000151 ], [ -121.766289612999941, 50.532593386000045 ], [ -121.769265314, 50.532706774000047 ], [ -121.769132511999928, 50.534119686000075 ], [ -121.769136053999944, 50.534119821000075 ], [ -121.769195268999979, 50.533489822000071 ], [ -121.774830371999911, 50.533704327000059 ], [ -121.774564853999891, 50.536532806000089 ], [ -121.769339450999951, 50.536605176000101 ], [ -121.769297527999967, 50.537726107000019 ], [ -121.767270167999953, 50.537648874000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.998755444928438", "sL_AssetLoss": "186.412", "sL_BldgLoss": "186.18", "sL_StrLoss": "184", "sL_NStrLoss": "2.18", "sL_ContLoss": "0.232", "geom_point": "0101000020E61000009B5CE73AE8645EC060F7464215164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.573628968999969, 50.174347338000054 ], [ -121.573698452999949, 50.173634857000089 ], [ -121.573610914999932, 50.173631339000096 ], [ -121.573960836999944, 50.170043002000092 ], [ -121.57572581899997, 50.170113928000063 ], [ -121.57922607099999, 50.170254503000102 ], [ -121.579549924999966, 50.170267504000037 ], [ -121.579480537999956, 50.170979991000131 ], [ -121.579568071999958, 50.170983504000063 ], [ -121.57952887899998, 50.171385951000076 ], [ -121.575531288999969, 50.170787432000047 ], [ -121.57480319699998, 50.170386895000043 ], [ -121.574108426999899, 50.171778960000026 ], [ -121.573680222999982, 50.173169835000103 ], [ -121.575041391999989, 50.173540057000061 ], [ -121.575355095999953, 50.172986901000087 ], [ -121.575664983999928, 50.172440468000055 ], [ -121.576066192, 50.171732927000058 ], [ -121.578375765999937, 50.172520266000092 ], [ -121.579311864000019, 50.173614161000081 ], [ -121.57921858499999, 50.174571855000032 ], [ -121.578807158999936, 50.174555339000122 ], [ -121.575161478000012, 50.17440892200009 ], [ -121.573628968999969, 50.174347338000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.998303635135071", "sL_AssetLoss": "211.629", "sL_BldgLoss": "211.27", "sL_StrLoss": "208", "sL_NStrLoss": "3.27", "sL_ContLoss": "0.359", "geom_point": "0101000020E6100000B1ADD9A9BD645EC06CAA72CAF1124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.572119271999938, 50.146009996000018 ], [ -121.575873850999955, 50.146160988000041 ], [ -121.575758184999927, 50.146423489 ], [ -121.575973895999965, 50.1467496900001 ], [ -121.575922498999944, 50.147018887000087 ], [ -121.576211706999985, 50.147202585000045 ], [ -121.576662276999954, 50.148044296000144 ], [ -121.57709967699995, 50.148353014000122 ], [ -121.576958061999932, 50.149807071000083 ], [ -121.574136137999957, 50.149693635000055 ], [ -121.571371501999963, 50.149582432000074 ], [ -121.571721415999946, 50.145993988000072 ], [ -121.572119271999938, 50.146009996000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999037697635646", "sL_AssetLoss": "178.738", "sL_BldgLoss": "178.566", "sL_StrLoss": "178", "sL_NStrLoss": "0.566", "sL_ContLoss": "0.172", "geom_point": "0101000020E6100000E7781E3F085E5EC0FCE69BC0B6204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.466633320999918, 50.253668361000031 ], [ -121.472232174999988, 50.253898278000094 ], [ -121.471955683999937, 50.256664372000046 ], [ -121.471873558999988, 50.25748589800002 ], [ -121.467276599999948, 50.257297147000045 ], [ -121.466274263999978, 50.257255965000063 ], [ -121.466633320999918, 50.253668361000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.966286564204264", "sL_AssetLoss": "4.034", "sL_BldgLoss": "3.898", "sL_StrLoss": "0.248", "sL_NStrLoss": "3.65", "sL_ContLoss": "0.136", "geom_point": "0101000020E6100000A6A4C14C9F645EC00B66C888F60D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.574475764999974, 50.111637128000069 ], [ -121.574491782999957, 50.111097661000038 ], [ -121.574072342999969, 50.111092510000063 ], [ -121.574079062999914, 50.110866223000095 ], [ -121.573778804999932, 50.110854138000072 ], [ -121.570781955999962, 50.110733472000042 ], [ -121.570765807, 50.110618899000109 ], [ -121.570596012999957, 50.110230107000085 ], [ -121.570159303999944, 50.109811391000058 ], [ -121.569562990999913, 50.109633402000028 ], [ -121.568770349999937, 50.109506184000054 ], [ -121.569008868999944, 50.107059327000094 ], [ -121.573055187999955, 50.107222308000075 ], [ -121.574590198999928, 50.107284097000061 ], [ -121.57429795799996, 50.110285789000066 ], [ -121.575774106999972, 50.110303907000066 ], [ -121.575766105999946, 50.110573639000066 ], [ -121.5761855399999, 50.110578785000087 ], [ -121.576153544999897, 50.111657717000121 ], [ -121.574475764999974, 50.111637128000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999062169112086", "sL_AssetLoss": "165.275", "sL_BldgLoss": "165.12", "sL_StrLoss": "164", "sL_NStrLoss": "1.12", "sL_ContLoss": "0.155", "geom_point": "0101000020E61000007FB407735E6A5EC0AC31CFE72F2D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.660516292999944, 50.351165031000058 ], [ -121.66499282700002, 50.351340596000092 ], [ -121.66464872099999, 50.354928383000072 ], [ -121.660606184999963, 50.354769848000068 ], [ -121.659036411999963, 50.35470824700014 ], [ -121.659380960999897, 50.351120476000048 ], [ -121.660516292999944, 50.351165031000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999716466793772", "sL_AssetLoss": "120.2681", "sL_BldgLoss": "120.234", "sL_StrLoss": "120", "sL_NStrLoss": "0.234", "sL_ContLoss": "0.0341", "geom_point": "0101000020E610000005ED827F59535EC0783E8722F2344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.300103207999911, 50.411547001 ], [ -121.302295503999986, 50.411640037000019 ], [ -121.302493507999941, 50.411689706000132 ], [ -121.303698991, 50.412256511000102 ], [ -121.30463679699993, 50.413150906000062 ], [ -121.305263515999968, 50.414150698000121 ], [ -121.305424863999932, 50.414629678000026 ], [ -121.305347671999968, 50.415371660000091 ], [ -121.305249193999927, 50.41536748500004 ], [ -121.299729678999967, 50.4151333350001 ], [ -121.30010126599997, 50.411565651000053 ], [ -121.300103207999911, 50.411547001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.998874007813722", "sL_AssetLoss": "165.6317", "sL_BldgLoss": "165.4452", "sL_StrLoss": "163.0712", "sL_NStrLoss": "2.374", "sL_ContLoss": "0.1865", "geom_point": "0101000020E6100000227E72D2C36B5EC05CDAFC0107334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.682526273999926, 50.400435682000044 ], [ -121.682532849999987, 50.400366903000091 ], [ -121.679166760999948, 50.400235591000119 ], [ -121.679510061, 50.396647964000053 ], [ -121.685127676999954, 50.396867051000115 ], [ -121.685121103999919, 50.396935830000089 ], [ -121.685371779999969, 50.396945600000038 ], [ -121.688486963999978, 50.39706696100005 ], [ -121.688216708999946, 50.399897156000108 ], [ -121.688144372999929, 50.400654615000114 ], [ -121.68739168899998, 50.400625300000108 ], [ -121.68658203499993, 50.400593761000096 ], [ -121.682526273999926, 50.400435682000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999389326993833", "sL_AssetLoss": "287.5516", "sL_BldgLoss": "287.376", "sL_StrLoss": "286", "sL_NStrLoss": "1.376", "sL_ContLoss": "0.1756", "geom_point": "0101000020E610000063B344E320715EC0CD00DDB8C1424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.766219113999952, 50.524289973000059 ], [ -121.766407785999888, 50.522283531000014 ], [ -121.763074438999951, 50.522156392000035 ], [ -121.763411989, 50.518569050000032 ], [ -121.763619093, 50.518576952000075 ], [ -121.7690452, 50.51878385100008 ], [ -121.768875259999973, 50.520592362000045 ], [ -121.7688566599999, 50.520790305000062 ], [ -121.768877420999914, 50.520791096000025 ], [ -121.772189921999967, 50.520917271000023 ], [ -121.771907836999901, 50.523921262000144 ], [ -121.77185305099999, 50.524504630000081 ], [ -121.766219113999952, 50.524289973000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963110192399428", "sL_AssetLoss": "0.6289", "sL_BldgLoss": "0.6057", "sL_StrLoss": "0.0267", "sL_NStrLoss": "0.579", "sL_ContLoss": "0.0232", "geom_point": "0101000020E61000004B97BC09976F5EC0E8806608AE434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.740946150999946, 50.526846934000098 ], [ -121.746580286999944, 50.52706287200008 ], [ -121.746520598999979, 50.527694612000083 ], [ -121.746241331999911, 50.530650126000097 ], [ -121.743030359999963, 50.530527095000082 ], [ -121.740606747999934, 50.530434172000092 ], [ -121.740882774999974, 50.527516806000079 ], [ -121.740926136000013, 50.527058481000054 ], [ -121.740946150999946, 50.526846934000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.969800848841006", "sL_AssetLoss": "6.126", "sL_BldgLoss": "5.941", "sL_StrLoss": "0.401", "sL_NStrLoss": "5.54", "sL_ContLoss": "0.185", "geom_point": "0101000020E6100000C5EF1AB2C9655EC0EC6C8623E11E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.587353427999929, 50.240475133000132 ], [ -121.587456566, 50.239415894000125 ], [ -121.587857039999946, 50.239431915000054 ], [ -121.587934389999987, 50.238637404000031 ], [ -121.588323108999958, 50.238652953000077 ], [ -121.589525209, 50.240022854000067 ], [ -121.593086627, 50.239830652000066 ], [ -121.594606013999979, 50.23983591800004 ], [ -121.594606795999979, 50.239846533000105 ], [ -121.595636575999947, 50.239707463000101 ], [ -121.595607249999944, 50.240009203000099 ], [ -121.593428826999954, 50.239922195000148 ], [ -121.593386955999932, 50.240352802000054 ], [ -121.5931830899999, 50.242449256000036 ], [ -121.592782588, 50.242433254000069 ], [ -121.592705315999964, 50.243227765000071 ], [ -121.588652911999944, 50.243065778000101 ], [ -121.587933494999945, 50.241992289000066 ], [ -121.587353427999929, 50.240475133000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998765402342254", "sL_AssetLoss": "373.401", "sL_BldgLoss": "372.94", "sL_StrLoss": "369", "sL_NStrLoss": "3.94", "sL_ContLoss": "0.461", "geom_point": "0101000020E61000002208A93E84645EC0258D55734E194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.568216503999977, 50.201330133000056 ], [ -121.56829612199999, 50.200515247000112 ], [ -121.566843009999928, 50.200456798000062 ], [ -121.567193673999981, 50.196868607000077 ], [ -121.569055903, 50.196943509000064 ], [ -121.569231886999944, 50.195141751000044 ], [ -121.573073294999944, 50.195296158000083 ], [ -121.573092755999966, 50.196005839000058 ], [ -121.574747763999952, 50.196148415000053 ], [ -121.574598892999916, 50.197674453000126 ], [ -121.573206047, 50.197682294000067 ], [ -121.573235288999967, 50.19797407100009 ], [ -121.573249940999972, 50.198120397000096 ], [ -121.573309407999972, 50.198593856000087 ], [ -121.573426599999948, 50.199526345000073 ], [ -121.571414571, 50.199523406000068 ], [ -121.568488240999969, 50.199556277000092 ], [ -121.568552861999962, 50.201343660000063 ], [ -121.568216503999977, 50.201330133000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998915089992232", "sL_AssetLoss": "379.755", "sL_BldgLoss": "379.343", "sL_StrLoss": "377", "sL_NStrLoss": "2.343", "sL_ContLoss": "0.412", "geom_point": "0101000020E610000025B0D6DC13635EC01B4A2F62062A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.545842299999933, 50.325973417000043 ], [ -121.551450490999969, 50.326199298000049 ], [ -121.551097578999958, 50.329786841000029 ], [ -121.550421795999966, 50.329759638000048 ], [ -121.550332597999969, 50.330666158000049 ], [ -121.544723859999976, 50.330440222000085 ], [ -121.545077281999937, 50.326852702000039 ], [ -121.545753017999971, 50.326879937000065 ], [ -121.545842299999933, 50.325973417000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999558620670822", "sL_AssetLoss": "292.9453", "sL_BldgLoss": "292.816", "sL_StrLoss": "292", "sL_NStrLoss": "0.816", "sL_ContLoss": "0.1293", "geom_point": "0101000020E610000077AFE6421D6D5EC03582C796E93E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.702149754999951, 50.493536615000096 ], [ -121.702173649999921, 50.493286139000126 ], [ -121.700692921999973, 50.493228777000063 ], [ -121.701035217999987, 50.489641497000065 ], [ -121.703357911999959, 50.489731468000038 ], [ -121.70339953699991, 50.489294953000133 ], [ -121.704117541999935, 50.489322755000103 ], [ -121.709028803999956, 50.489512803000082 ], [ -121.708687144999928, 50.49310010700006 ], [ -121.707844993999942, 50.493067536000062 ], [ -121.707779543999948, 50.493754528000068 ], [ -121.704797282999934, 50.49363912900003 ], [ -121.702149754999951, 50.493536615000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.961158798283262", "sL_AssetLoss": "0.466", "sL_BldgLoss": "0.4479", "sL_StrLoss": "0.0159", "sL_NStrLoss": "0.432", "sL_ContLoss": "0.0181", "geom_point": "0101000020E610000075532D9620535EC03EE55E8164344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.301431814999958, 50.411161714000031 ], [ -121.30012449899999, 50.410665603000098 ], [ -121.299321992999964, 50.410654294000103 ], [ -121.29793679399998, 50.410823703000062 ], [ -121.296729551999974, 50.410723460000057 ], [ -121.296616781999973, 50.410714095000081 ], [ -121.295859235999956, 50.410492746000074 ], [ -121.295896922999987, 50.410131195000041 ], [ -121.296042888999978, 50.408730788000064 ], [ -121.296465288999912, 50.40825590500004 ], [ -121.296718308, 50.407725333000037 ], [ -121.301767247, 50.407939706000036 ], [ -121.301431814999958, 50.411161714000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999477057632952", "sL_AssetLoss": "144.5666", "sL_BldgLoss": "144.491", "sL_StrLoss": "144", "sL_NStrLoss": "0.491", "sL_ContLoss": "0.0756", "geom_point": "0101000020E6100000CB24F27667595EC026CE612958314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.395879144999981, 50.382778841000082 ], [ -121.395883701999978, 50.382643791000056 ], [ -121.396991084999954, 50.382659059000055 ], [ -121.397149087999978, 50.382661238000054 ], [ -121.397143348999933, 50.382831435000078 ], [ -121.399417932999953, 50.382926026000042 ], [ -121.399428108, 50.384525690000089 ], [ -121.399418598999915, 50.38481341100006 ], [ -121.399262422, 50.386106599000072 ], [ -121.398677197000012, 50.387636206000089 ], [ -121.398380887999963, 50.388064902000103 ], [ -121.397999812999913, 50.388373498000092 ], [ -121.396096162000021, 50.388294321000039 ], [ -121.394431270999917, 50.388225048000024 ], [ -121.394797065999967, 50.384638277000093 ], [ -121.394814555999943, 50.384639005000054 ], [ -121.394870093999941, 50.384094377000082 ], [ -121.394929923999911, 50.384096867000089 ], [ -121.395067764999951, 50.382745079000109 ], [ -121.395879144999981, 50.382778841000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.998353231782627", "sL_AssetLoss": "393.498", "sL_BldgLoss": "392.85", "sL_StrLoss": "387", "sL_NStrLoss": "5.85", "sL_ContLoss": "0.648", "geom_point": "0101000020E61000009A1DD23DE5635EC0CE79BE4D1C254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.556640978999965, 50.292763424000086 ], [ -121.556696103999954, 50.292201903000027 ], [ -121.556030462999928, 50.292193635000046 ], [ -121.556054955999926, 50.291384469000093 ], [ -121.55677547099999, 50.291393417000073 ], [ -121.556993163999891, 50.28917569300004 ], [ -121.559383680999957, 50.289271851000088 ], [ -121.559625491999967, 50.286806849000087 ], [ -121.565228904999969, 50.287032043000075 ], [ -121.564877387999928, 50.290619809000148 ], [ -121.562486789, 50.290523770000043 ], [ -121.562245113999978, 50.292988767000068 ], [ -121.556640978999965, 50.292763424000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999680190998801", "sL_AssetLoss": "126.3254", "sL_BldgLoss": "126.285", "sL_StrLoss": "126", "sL_NStrLoss": "0.285", "sL_ContLoss": "0.0404", "geom_point": "0101000020E61000005C93EA1240505EC0E196D1C0F62F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.251814007999968, 50.37258826500004 ], [ -121.252970209999916, 50.372637888000085 ], [ -121.253303297999977, 50.372934098000037 ], [ -121.25535288899998, 50.373819908000037 ], [ -121.256668202999919, 50.374000808000041 ], [ -121.256985606999962, 50.374204484000067 ], [ -121.25706100099994, 50.374393897000097 ], [ -121.256988282999941, 50.374896607000089 ], [ -121.256018087999962, 50.376041712000081 ], [ -121.255781691999971, 50.376361017000079 ], [ -121.255443607999965, 50.376346518000055 ], [ -121.25143697299994, 50.376174611000124 ], [ -121.2517699199999, 50.373007661000017 ], [ -121.251814007999968, 50.37258826500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999713499322301", "sL_AssetLoss": "132.2859", "sL_BldgLoss": "132.248", "sL_StrLoss": "132", "sL_NStrLoss": "0.248", "sL_ContLoss": "0.0379", "geom_point": "0101000020E6100000859F300F36485EC069277B329C224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.129476155999953, 50.268641987000159 ], [ -121.131291935999954, 50.26872212100011 ], [ -121.130972658999937, 50.271690891000056 ], [ -121.130906230999969, 50.272308525000014 ], [ -121.125306899999941, 50.272061320000141 ], [ -121.12569304599999, 50.268474935000022 ], [ -121.129476155999953, 50.268641987000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999346032564829", "sL_AssetLoss": "152.7599", "sL_BldgLoss": "152.66", "sL_StrLoss": "152", "sL_NStrLoss": "0.66", "sL_ContLoss": "0.0999", "geom_point": "0101000020E610000095E7C94EE26B5EC0B7CB02168E3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.682780983999976, 50.459489365000117 ], [ -121.682846047999988, 50.458809838000086 ], [ -121.682625823999928, 50.45880126300009 ], [ -121.682969294999936, 50.455213886000138 ], [ -121.68466128099999, 50.455279760000074 ], [ -121.688594212999973, 50.45543278100012 ], [ -121.688529240999969, 50.456112315000013 ], [ -121.688749451999982, 50.45612087900011 ], [ -121.688406433999916, 50.459708269000011 ], [ -121.685329807999935, 50.459588583 ], [ -121.682780983999976, 50.459489365000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.962478352895902", "sL_AssetLoss": "0.5197", "sL_BldgLoss": "0.5002", "sL_StrLoss": "0.0202", "sL_NStrLoss": "0.48", "sL_ContLoss": "0.0195", "geom_point": "0101000020E61000004D77C7F73F4F5EC08E87E73A472D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.235818305999885, 50.354862303000068 ], [ -121.236046508999948, 50.352491003000068 ], [ -121.236320636999963, 50.35160261300009 ], [ -121.240540395, 50.351784342000023 ], [ -121.240411476999938, 50.353008343000063 ], [ -121.240581073999948, 50.353015644000074 ], [ -121.240203311999949, 50.356602040000105 ], [ -121.240085513999972, 50.356596969000073 ], [ -121.240024638999927, 50.357174842000035 ], [ -121.23986193399999, 50.35716783900007 ], [ -121.239974591999967, 50.356507213000107 ], [ -121.23973749299999, 50.35608139500011 ], [ -121.239591315999917, 50.355871991000093 ], [ -121.2393681, 50.355806496000106 ], [ -121.238308287999956, 50.355582910000038 ], [ -121.236133296999981, 50.355468997000074 ], [ -121.235833489999919, 50.355239705 ], [ -121.235818305999885, 50.354862303000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.963748747076512", "sL_AssetLoss": "0.5986", "sL_BldgLoss": "0.5769", "sL_StrLoss": "0.0249", "sL_NStrLoss": "0.552", "sL_ContLoss": "0.0217", "geom_point": "0101000020E61000004EEB99D278555EC0EDD43B60C7354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.33280309, 50.421464915000108 ], [ -121.332807653999964, 50.421420785000116 ], [ -121.332490548999928, 50.421416240000021 ], [ -121.332518963, 50.420607177000115 ], [ -121.33289126199999, 50.420612514 ], [ -121.333017959999935, 50.419387597000075 ], [ -121.33388327599998, 50.419424060000097 ], [ -121.333906733, 50.419197218000086 ], [ -121.339525409999979, 50.419433810000079 ], [ -121.339464553999903, 50.420022990000092 ], [ -121.338136892999955, 50.420304702000053 ], [ -121.336483201999926, 50.420705631000097 ], [ -121.334278887999957, 50.421239999000136 ], [ -121.333620622999945, 50.421371601000025 ], [ -121.332892831999942, 50.421454671000113 ], [ -121.33280309, 50.421464915000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "0.997508401344215", "sL_AssetLoss": "208.3", "sL_BldgLoss": "207.781", "sL_StrLoss": "200.301", "sL_NStrLoss": "7.48", "sL_ContLoss": "0.519", "geom_point": "0101000020E61000007C49BE6DC1645EC003C3663EEF164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.570940980000017, 50.181831650000049 ], [ -121.571041204999972, 50.18080474900006 ], [ -121.570951747999985, 50.180801152000065 ], [ -121.57130193499998, 50.177212857000036 ], [ -121.572189262999984, 50.177248533000082 ], [ -121.572274743999913, 50.176372377000106 ], [ -121.574769682999971, 50.176472653000076 ], [ -121.577864600999973, 50.176596963000051 ], [ -121.577514936999989, 50.180185282000068 ], [ -121.576717002999914, 50.180153240000031 ], [ -121.576531502999927, 50.182056300000127 ], [ -121.572171891999943, 50.181881137000111 ], [ -121.570940980000017, 50.181831650000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0.968390310943137", "sL_AssetLoss": "5.821", "sL_BldgLoss": "5.637", "sL_StrLoss": "0.357", "sL_NStrLoss": "5.28", "sL_ContLoss": "0.184", "geom_point": "0101000020E610000021755C09B4515EC07561BDB455324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.276822845999959, 50.396805455000056 ], [ -121.277126406999926, 50.393903876000067 ], [ -121.273015107999981, 50.393728357000043 ], [ -121.273077615999924, 50.393131358000048 ], [ -121.272702837999987, 50.393115351000048 ], [ -121.273078327999912, 50.389529009000114 ], [ -121.274097919999917, 50.389572556000161 ], [ -121.274098468999966, 50.38955746500006 ], [ -121.274107538999942, 50.389307672000086 ], [ -121.274284002999963, 50.38931110500004 ], [ -121.274841796, 50.389427795000067 ], [ -121.27536244599996, 50.38961796800011 ], [ -121.275362135999956, 50.389626536000023 ], [ -121.27538905199998, 50.389627685000029 ], [ -121.275688085999974, 50.389736908000017 ], [ -121.276594695, 50.390389209000027 ], [ -121.276833788999951, 50.390770893000138 ], [ -121.27703258399994, 50.391484390000073 ], [ -121.277419812999966, 50.39206549700004 ], [ -121.278750281999947, 50.392820719000021 ], [ -121.278717215999976, 50.393136920000131 ], [ -121.278701908999921, 50.393283280000077 ], [ -121.278875636999928, 50.393290691000061 ], [ -121.279426738999959, 50.393314199000038 ], [ -121.279552107999976, 50.39340990300007 ], [ -121.280148587999975, 50.394030911000087 ], [ -121.280222093999939, 50.394301514000048 ], [ -121.280430712999959, 50.39479 ], [ -121.280535386999986, 50.395762693000094 ], [ -121.28096390099995, 50.396407899000046 ], [ -121.281539256000016, 50.397006616000091 ], [ -121.281066929999938, 50.396986480000045 ], [ -121.276822845999959, 50.396805455000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "97", "sL_BldgLoss": "97", "sL_StrLoss": "97", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DACAE8D3ECEE5DC0687E2D96BF634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.734303362999981, 50.777542576 ], [ -119.7362825659999, 50.777653731000065 ], [ -119.735780970999954, 50.781232341000056 ], [ -119.730126857999963, 50.780914706000068 ], [ -119.730315152999978, 50.779572587000118 ], [ -119.730628898999967, 50.777336121000076 ], [ -119.734303362999981, 50.777542576 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "93", "sL_BldgLoss": "93", "sL_StrLoss": "93", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007CC41AF406F15DC0C073731AB7634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.763635558999937, 50.781163027000048 ], [ -119.76374862099999, 50.780352817000015 ], [ -119.763743519999949, 50.780352532000023 ], [ -119.764242870999979, 50.776773793000082 ], [ -119.76989670299993, 50.777089705000044 ], [ -119.769869659999983, 50.777283708000056 ], [ -119.76980869, 50.777316992000138 ], [ -119.767902521999986, 50.778190008000117 ], [ -119.767357493999924, 50.778590189000106 ], [ -119.766993798, 50.779156991000065 ], [ -119.766986205999942, 50.779480296000067 ], [ -119.767141088999935, 50.779728208000073 ], [ -119.768058013999976, 50.780569893000106 ], [ -119.768337892000019, 50.780995710000099 ], [ -119.768314813999893, 50.781424504000022 ], [ -119.763635558999937, 50.781163027000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "91.7", "sL_BldgLoss": "91.7", "sL_StrLoss": "91.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FDF597120F05DC06046674FB8674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.750844476999987, 50.808454279000074 ], [ -119.755043714999957, 50.808689274000088 ], [ -119.754910094999971, 50.809644820000074 ], [ -119.754543272999939, 50.812267839000121 ], [ -119.75415976799998, 50.81224638400009 ], [ -119.749375973, 50.811978648000093 ], [ -119.748947113999947, 50.811508190000026 ], [ -119.74938599699999, 50.808372623000125 ], [ -119.750844476999987, 50.808454279000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "139.4", "sL_BldgLoss": "139.4", "sL_StrLoss": "139.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061A3EEFB1EEF5DC0C7C19DF285644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.731491279999929, 50.787131332000065 ], [ -119.73150445399996, 50.787037421000079 ], [ -119.731171675999988, 50.787018724000085 ], [ -119.731673703999931, 50.783440159000058 ], [ -119.731703231, 50.783441818000036 ], [ -119.731717405999945, 50.783340759000048 ], [ -119.735781349999939, 50.783569019000083 ], [ -119.73581733, 50.78331235300012 ], [ -119.741471786999952, 50.783629700000041 ], [ -119.740970540999982, 50.787208307000057 ], [ -119.73720949100003, 50.786997258000078 ], [ -119.737146187999912, 50.787448896000051 ], [ -119.731491279999929, 50.787131332000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "80.8", "sL_BldgLoss": "80.8", "sL_StrLoss": "80.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000375AE574DFEF5DC05139DCFDE0614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.745002089999943, 50.766469443000091 ], [ -119.745025895999973, 50.76629930800005 ], [ -119.744062749999969, 50.766245282000064 ], [ -119.74371915899998, 50.766226008000025 ], [ -119.743873099999945, 50.765126002000066 ], [ -119.743897177999912, 50.765112896000076 ], [ -119.745577701999963, 50.764002002000055 ], [ -119.746236304999968, 50.763383885000032 ], [ -119.746835396999927, 50.762965197000042 ], [ -119.747883294999966, 50.762436797000099 ], [ -119.74843916699993, 50.76221444700009 ], [ -119.751278470999964, 50.762373590000074 ], [ -119.751081950999904, 50.763779607000068 ], [ -119.750778243999918, 50.765952330000104 ], [ -119.750771128999972, 50.765951932000121 ], [ -119.750654487999981, 50.766786332000052 ], [ -119.746998433, 50.766581397000067 ], [ -119.745002089999943, 50.766469443000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "1", "sL_AssetLoss": "384", "sL_BldgLoss": "384", "sL_StrLoss": "384", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E78AB56CEBEE5DC06FD8D7361C634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733092927999976, 50.771399356000089 ], [ -119.733218656999966, 50.770502582000063 ], [ -119.733496416999969, 50.770349700000104 ], [ -119.734077097999915, 50.769868305000053 ], [ -119.734172671999943, 50.769747139000145 ], [ -119.735398635999957, 50.769816009000067 ], [ -119.738041694999964, 50.769964439000027 ], [ -119.738530596999951, 50.769991888000099 ], [ -119.738822832999972, 50.767905542 ], [ -119.738848794999981, 50.767720188000084 ], [ -119.739088325999944, 50.76773363500007 ], [ -119.744501305999961, 50.768037386000067 ], [ -119.744448515999949, 50.768414626000052 ], [ -119.744322867999983, 50.769312484000068 ], [ -119.745107173999983, 50.769356473000137 ], [ -119.744606377999972, 50.772935157000056 ], [ -119.738953247999945, 50.772617965000059 ], [ -119.739131851999971, 50.771342882000056 ], [ -119.739053772999924, 50.771338499000073 ], [ -119.738735560999942, 50.773610190000035 ], [ -119.738482622999982, 50.773595991000057 ], [ -119.738473852999903, 50.773658596000089 ], [ -119.736993728999948, 50.773575495000095 ], [ -119.736742275999958, 50.775369932000089 ], [ -119.734075069000014, 50.775220134000101 ], [ -119.73394240499999, 50.776166406000151 ], [ -119.733771763999982, 50.777383496000041 ], [ -119.729715880999962, 50.777155581000038 ], [ -119.7296730899999, 50.777460590000089 ], [ -119.72937321299996, 50.777443733000091 ], [ -119.729339486999962, 50.77768409800008 ], [ -119.729260137999944, 50.77767963700007 ], [ -119.729275602999934, 50.777945146000086 ], [ -119.728850579999914, 50.777955099000032 ], [ -119.728866273999955, 50.778224577000053 ], [ -119.728441246999964, 50.778234527000045 ], [ -119.728456937999937, 50.778504006000077 ], [ -119.728340909999957, 50.778506722000053 ], [ -119.728267990999953, 50.779026322000064 ], [ -119.728088283999924, 50.780306820000135 ], [ -119.726456612999968, 50.780215072000018 ], [ -119.726360142999965, 50.780902258000047 ], [ -119.725156398, 50.780834556000144 ], [ -119.724483844999952, 50.780796725000123 ], [ -119.724133505999987, 50.783291362000078 ], [ -119.724038668, 50.78396661300004 ], [ -119.723720663999927, 50.783614600000085 ], [ -119.72346394799996, 50.78333101300008 ], [ -119.72243090299996, 50.782294500000084 ], [ -119.721101067999939, 50.780806617000039 ], [ -119.721585299999987, 50.77994610500005 ], [ -119.723196510999969, 50.777893789000132 ], [ -119.72386578099993, 50.777194491000074 ], [ -119.724434798999951, 50.776758687000076 ], [ -119.725261092999943, 50.775821513000061 ], [ -119.726265305999917, 50.775052495000125 ], [ -119.727725409999977, 50.77428908600006 ], [ -119.72985400099995, 50.772629891000058 ], [ -119.731797969999931, 50.771326586000036 ], [ -119.733092927999976, 50.771399356000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "52.9", "sL_BldgLoss": "52.9", "sL_StrLoss": "52.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB76304191F05DC069AE912CF9684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.758133618000016, 50.819901684000037 ], [ -119.758070076999942, 50.818823802000111 ], [ -119.758110667999958, 50.81882284200006 ], [ -119.758604155999976, 50.81881116700005 ], [ -119.759346231999956, 50.818793606000085 ], [ -119.75936212299996, 50.81906307700006 ], [ -119.759785332999925, 50.81905306100002 ], [ -119.759812045999936, 50.81886191600006 ], [ -119.760035321999936, 50.817264288000104 ], [ -119.760314539999939, 50.817279892000073 ], [ -119.76036828299999, 50.8179112 ], [ -119.760416787999972, 50.818242993000105 ], [ -119.760105790999944, 50.818680393000086 ], [ -119.759974008999933, 50.818865732000042 ], [ -119.759938831999989, 50.818915220000072 ], [ -119.759760615999951, 50.819165899000041 ], [ -119.75966319399997, 50.819447890000099 ], [ -119.759601040999954, 50.819735994000048 ], [ -119.759440994999977, 50.820477605000093 ], [ -119.759487307999962, 50.821259492000117 ], [ -119.759259673999964, 50.821561516000067 ], [ -119.759052584999978, 50.82183630400003 ], [ -119.75885157099998, 50.822368303000069 ], [ -119.758394616999936, 50.821914842000048 ], [ -119.757786775999975, 50.821244377000077 ], [ -119.757708223999927, 50.81991174700007 ], [ -119.758133618000016, 50.819901684000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "117", "sL_BldgLoss": "117", "sL_StrLoss": "117", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000DC4F4B515F05DC0D0189C77D2664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.74874703099999, 50.801350292000059 ], [ -119.754403855999925, 50.801666978000071 ], [ -119.753903440999977, 50.805245569000064 ], [ -119.74824616599993, 50.8049288590001 ], [ -119.74874703099999, 50.801350292000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "222", "sL_BldgLoss": "222", "sL_StrLoss": "222", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C655D509DF05DC03DBF83FA71604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.75994564599999, 50.756714486000078 ], [ -119.759872324999932, 50.755468719000127 ], [ -119.758339735999954, 50.755382930000067 ], [ -119.758367286999913, 50.755185559000076 ], [ -119.757511330999961, 50.755137636000079 ], [ -119.757377795999901, 50.754845800000083 ], [ -119.757041149999907, 50.754516163000055 ], [ -119.757233338999981, 50.753139510000054 ], [ -119.755691567, 50.75305316700009 ], [ -119.755669178999966, 50.753034192000051 ], [ -119.75547611399999, 50.752148288000157 ], [ -119.755093809999892, 50.751688291000086 ], [ -119.755085585999907, 50.751302398000064 ], [ -119.755416194999981, 50.750664310000047 ], [ -119.755477597, 50.750241290000133 ], [ -119.756643382999968, 50.750293992000088 ], [ -119.757356588999983, 50.750160103000091 ], [ -119.75794049699999, 50.749930802000058 ], [ -119.758826783999979, 50.749819808000098 ], [ -119.759163969999975, 50.749929254000087 ], [ -119.759027077999946, 50.750910207000047 ], [ -119.760099514999979, 50.750970240000051 ], [ -119.760113013999955, 50.751192700000068 ], [ -119.761118416999949, 50.752400393000109 ], [ -119.761552105999954, 50.752767898000101 ], [ -119.762049467999958, 50.753034744000082 ], [ -119.762693510999938, 50.753380290000102 ], [ -119.763507708999896, 50.753945710000032 ], [ -119.764490049999949, 50.754422096000013 ], [ -119.764507456999979, 50.75471741900008 ], [ -119.764932259999952, 50.75470734200011 ], [ -119.764979926999914, 50.755515758000072 ], [ -119.764518204999916, 50.755526711000108 ], [ -119.764013208000023, 50.755538690000037 ], [ -119.763990829999926, 50.755699149000122 ], [ -119.762859990999956, 50.755635894000108 ], [ -119.76287175799996, 50.755835606000076 ], [ -119.76244694399999, 50.755845677000089 ], [ -119.762462818999921, 50.756115149000024 ], [ -119.76203800399999, 50.756125218000065 ], [ -119.762053876999943, 50.756394690000015 ], [ -119.761629058999986, 50.756404758000031 ], [ -119.761644928999914, 50.756674231000119 ], [ -119.761220108999964, 50.756684296000053 ], [ -119.761251846, 50.757223242000073 ], [ -119.760827019999908, 50.75723330700005 ], [ -119.760842885999949, 50.757502781000014 ], [ -119.759729254999982, 50.757529156000011 ], [ -119.7595684, 50.757532965000031 ], [ -119.759520824999925, 50.756724546000072 ], [ -119.75994564599999, 50.756714486000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818333", "BldgCostT": "2633333", "sL_LossRatio": "1", "sL_AssetLoss": "342.3", "sL_BldgLoss": "342.3", "sL_StrLoss": "342.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068D8DE5D9DEF5DC0594FADBE3A614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.747798832999948, 50.756441665000061 ], [ -119.748745103999923, 50.756494725000024 ], [ -119.748685790999957, 50.756544901000055 ], [ -119.746859279999939, 50.758521701000042 ], [ -119.746348214999912, 50.759253707000042 ], [ -119.74520648499994, 50.761304596000095 ], [ -119.744482802999983, 50.762247413000047 ], [ -119.743561380999978, 50.763006500000131 ], [ -119.742845812, 50.763356889000086 ], [ -119.74222208599997, 50.763614596000082 ], [ -119.741786258999966, 50.763888722000061 ], [ -119.740592610999926, 50.763821727000064 ], [ -119.740611595999951, 50.763686132000082 ], [ -119.741093626999941, 50.760243023000093 ], [ -119.741977376999969, 50.760292626000108 ], [ -119.742462463999928, 50.756826646000093 ], [ -119.743140251999989, 50.756864684000071 ], [ -119.743235265999942, 50.756185663000032 ], [ -119.747798832999948, 50.756441665000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18777500", "BldgCostT": "12950000", "sL_LossRatio": "1", "sL_AssetLoss": "1319", "sL_BldgLoss": "1319", "sL_StrLoss": "1319", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001AE8B1981EEE5DC026C0F218CC624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.708763249999947, 50.778464997000079 ], [ -119.708934124999942, 50.777251145000122 ], [ -119.708990167999943, 50.776853021000065 ], [ -119.710577869999966, 50.776942554000058 ], [ -119.710629711999943, 50.776574157000027 ], [ -119.711750169, 50.776637329000089 ], [ -119.711703025999938, 50.77582267100005 ], [ -119.711054215999951, 50.775786091000043 ], [ -119.711077183999947, 50.775622860000048 ], [ -119.710368004999978, 50.775582873000133 ], [ -119.710623751999947, 50.773765492000102 ], [ -119.710565036999981, 50.773762181000066 ], [ -119.711009434999937, 50.770603893000043 ], [ -119.711042472999964, 50.770369076000065 ], [ -119.711068560999976, 50.770183654000022 ], [ -119.716721186999976, 50.770502255000039 ], [ -119.71665767399999, 50.770954072000073 ], [ -119.716952946000035, 50.770947189000033 ], [ -119.716937323999957, 50.770677708000086 ], [ -119.717362289000022, 50.770667800000062 ], [ -119.717346662999958, 50.770398318000083 ], [ -119.717771623999965, 50.770388410000102 ], [ -119.717755996999969, 50.770118928000052 ], [ -119.719157065999951, 50.770086251000109 ], [ -119.720305739999901, 50.770059446000062 ], [ -119.720306020999928, 50.770064284000078 ], [ -119.72033702199991, 50.770598409000044 ], [ -119.720441593999951, 50.770595967000062 ], [ -119.720525730999938, 50.769997062000087 ], [ -119.720547167999939, 50.769844472000116 ], [ -119.720692904999936, 50.76985267700011 ], [ -119.72073667699999, 50.769541075000106 ], [ -119.720929388999977, 50.76955192500008 ], [ -119.721201967999903, 50.767611382000048 ], [ -119.722271513999928, 50.767671592000049 ], [ -119.722464687999917, 50.766296007000079 ], [ -119.724606439999903, 50.766416549000091 ], [ -119.727891240999952, 50.766601344000037 ], [ -119.728054936999982, 50.76543459500008 ], [ -119.728226356999983, 50.764212735000115 ], [ -119.72956554299999, 50.764288046000026 ], [ -119.729618613999946, 50.763909666000117 ], [ -119.731060386999914, 50.763990728000088 ], [ -119.731459851999915, 50.764013184000092 ], [ -119.731553062999964, 50.763348410000098 ], [ -119.737204971999972, 50.763665979000095 ], [ -119.737025918999933, 50.764944098000072 ], [ -119.736922944999947, 50.765679123000027 ], [ -119.736394301999923, 50.765837790000042 ], [ -119.733283104999941, 50.766945895000092 ], [ -119.731215121999924, 50.767955604000036 ], [ -119.730576451999923, 50.768320935000119 ], [ -119.728673172999933, 50.768213924000058 ], [ -119.7281957599999, 50.768187077000029 ], [ -119.728236930999955, 50.7678936390001 ], [ -119.728141578999967, 50.767888276000122 ], [ -119.728151801999971, 50.767815409000079 ], [ -119.727949938999984, 50.767804057000077 ], [ -119.727820953999938, 50.768723340000058 ], [ -119.727614781999989, 50.770192654000041 ], [ -119.726545168999934, 50.770132494000087 ], [ -119.72642432399999, 50.770993514000111 ], [ -119.725797992999958, 50.771393695000015 ], [ -119.724563487999944, 50.772357912000068 ], [ -119.72398821299997, 50.772964606000109 ], [ -119.723573913999928, 50.773666707000089 ], [ -119.722353998999964, 50.77486449000007 ], [ -119.721068484999961, 50.775461199000105 ], [ -119.719938397999925, 50.776028095000086 ], [ -119.719091755999969, 50.776828929000096 ], [ -119.717995806999966, 50.776767212000024 ], [ -119.715766092999942, 50.776641617000109 ], [ -119.715580987999942, 50.776645929000075 ], [ -119.715593040999934, 50.776853902000056 ], [ -119.716283140999934, 50.776892780000061 ], [ -119.716129876999915, 50.777982827000066 ], [ -119.716395311999918, 50.777997779 ], [ -119.716369082, 50.778184336000088 ], [ -119.715894577999975, 50.781558862000097 ], [ -119.71588637899994, 50.781575975000095 ], [ -119.713954309999934, 50.781467122000052 ], [ -119.713926434999948, 50.780886300000084 ], [ -119.708993486999958, 50.778702333000076 ], [ -119.708403032999939, 50.778444680000099 ], [ -119.708763249999947, 50.778464997000079 ] ], [ [ -119.718699806999936, 50.772632512000072 ], [ -119.718905116999935, 50.77117151300012 ], [ -119.718668436999948, 50.771177034000118 ], [ -119.71868407099997, 50.771446516000076 ], [ -119.71825910099993, 50.771456427000096 ], [ -119.718274729999976, 50.771725908000114 ], [ -119.717849757999943, 50.771735819000085 ], [ -119.717865384999953, 50.772005301 ], [ -119.718290360999944, 50.771995391000047 ], [ -119.718326093999977, 50.772611465000104 ], [ -119.718699806999936, 50.772632512000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "302.1", "sL_BldgLoss": "302.1", "sL_StrLoss": "302.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006CCC0C97ECEF5DC085C7C8A365604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.751920684999945, 50.750541715000104 ], [ -119.752946053999921, 50.750599179000098 ], [ -119.752670606999985, 50.75148470600007 ], [ -119.751864097999942, 50.752934486000065 ], [ -119.751341444, 50.754116069000098 ], [ -119.751038813999955, 50.754099107000066 ], [ -119.750966685999984, 50.754615245000082 ], [ -119.749398079999978, 50.755942322000088 ], [ -119.74831139699991, 50.755881394000021 ], [ -119.745119433999932, 50.755702367000033 ], [ -119.745587147, 50.752358484000091 ], [ -119.745619995999974, 50.752123609000122 ], [ -119.746233659999959, 50.752158035000029 ], [ -119.747204550999953, 50.752212494000034 ], [ -119.747266444, 50.751769841000083 ], [ -119.747275289999948, 50.751706563000077 ], [ -119.747473020999976, 50.750292346000066 ], [ -119.749931192999966, 50.750430191000078 ], [ -119.751920684999945, 50.750541715000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116677814", "BldgCostT": "64167023", "sL_LossRatio": "0.828595259012147", "sL_AssetLoss": "4065.992784", "sL_BldgLoss": "3369.062344", "sL_StrLoss": "3113.238014", "sL_NStrLoss": "255.82433", "sL_ContLoss": "696.93044", "geom_point": "0101000020E6100000C21228C57B145EC02E284EE686574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.319897143999967, 50.681944561000122 ], [ -120.32030833, 50.681957699000108 ], [ -120.324333889999963, 50.682654095000025 ], [ -120.32353389299999, 50.68422640900004 ], [ -120.322546083999967, 50.686158600000063 ], [ -120.321643595999916, 50.686049498000024 ], [ -120.319872915999952, 50.685728492000045 ], [ -120.317933740999948, 50.685313348000122 ], [ -120.317852836, 50.685296011000034 ], [ -120.317103991999886, 50.685135696000096 ], [ -120.316860184999911, 50.685025833000083 ], [ -120.316837900999985, 50.685015800000059 ], [ -120.316323417999939, 50.684457894000055 ], [ -120.31631544899993, 50.684057514000067 ], [ -120.316305099999965, 50.683537701000077 ], [ -120.316292501999939, 50.682595391000028 ], [ -120.316592225999941, 50.682024906000088 ], [ -120.316727504999932, 50.681910096000053 ], [ -120.316771994999925, 50.681896480000034 ], [ -120.31691668, 50.681852209000041 ], [ -120.318180377999937, 50.681889693000073 ], [ -120.319770001999984, 50.681940491000034 ], [ -120.319897143999967, 50.681944561000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17210978", "BldgCostT": "10929857", "sL_LossRatio": "1", "sL_AssetLoss": "1558.9", "sL_BldgLoss": "1558.9", "sL_StrLoss": "1558.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000938DFE367135EC0B9BA290644574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.299570037999942, 50.682681092000067 ], [ -120.299274299999951, 50.682293148000078 ], [ -120.29915676199991, 50.682078059000077 ], [ -120.298966879, 50.682118810000127 ], [ -120.298962647999971, 50.682110152000057 ], [ -120.29882813899998, 50.681835921000079 ], [ -120.298762249999925, 50.681706385000098 ], [ -120.298585702999958, 50.681085569000111 ], [ -120.298536492999958, 50.680912608000028 ], [ -120.298471932999945, 50.680300016000039 ], [ -120.298470816999952, 50.680289092000102 ], [ -120.298469594999958, 50.680277427000114 ], [ -120.29855223499996, 50.679560710000096 ], [ -120.298676173999979, 50.679045814000091 ], [ -120.298711895999972, 50.678897483000078 ], [ -120.299132815999926, 50.678067414000068 ], [ -120.299581456999974, 50.677366096000128 ], [ -120.299521265999957, 50.678414251000078 ], [ -120.30001400299993, 50.678439478000023 ], [ -120.299902139999915, 50.679318984000091 ], [ -120.30158789599993, 50.67940527200011 ], [ -120.301661284999938, 50.678126370000072 ], [ -120.30208541699993, 50.678136195000057 ], [ -120.302131799999955, 50.677327724000065 ], [ -120.302555925999926, 50.677337546000054 ], [ -120.302586842, 50.676798565000055 ], [ -120.302624402999982, 50.676799435000085 ], [ -120.302670780999961, 50.676434596000078 ], [ -120.303172295999971, 50.676576888000056 ], [ -120.303792017999953, 50.676653795000028 ], [ -120.305243807999886, 50.677002801000121 ], [ -120.306471406999947, 50.677085399000084 ], [ -120.307359560999913, 50.677262836000075 ], [ -120.306603576999919, 50.677224181000014 ], [ -120.306349126999976, 50.677843942000088 ], [ -120.306295890999962, 50.678773341000095 ], [ -120.305970628999944, 50.67876581900002 ], [ -120.305855562, 50.679046064000026 ], [ -120.305809986999975, 50.679841497000041 ], [ -120.305531603, 50.679835058000023 ], [ -120.305361968999975, 50.680248182000078 ], [ -120.305354950999913, 50.68037066800013 ], [ -120.305779104999928, 50.680380480000032 ], [ -120.305711792999929, 50.681555189000036 ], [ -120.305686451999961, 50.681997427000049 ], [ -120.305262282999948, 50.681987615000104 ], [ -120.305246836999984, 50.682257106000108 ], [ -120.304822665999964, 50.682247292000085 ], [ -120.304807216999961, 50.682516784000036 ], [ -120.304383044999966, 50.682506968000091 ], [ -120.304370738999978, 50.682721586000071 ], [ -120.307763520999956, 50.682895076000108 ], [ -120.307503348999916, 50.684943177000029 ], [ -120.307308548999927, 50.686476531000025 ], [ -120.306235929999957, 50.686421694000082 ], [ -120.30536347599994, 50.686061799000051 ], [ -120.30294911099999, 50.685065802000089 ], [ -120.301744351999901, 50.684485089000098 ], [ -120.301677418999972, 50.684452828000104 ], [ -120.300855835999968, 50.683931353000055 ], [ -120.300245527999934, 50.683446818000093 ], [ -120.299745429999959, 50.682911148000052 ], [ -120.29957802499996, 50.682691557000076 ], [ -120.299570037999942, 50.682681092000067 ] ], [ [ -120.305279949999914, 50.677679985000083 ], [ -120.304561006, 50.677413398000041 ], [ -120.304458772999965, 50.67743136100006 ], [ -120.304382325999924, 50.677444819000065 ], [ -120.30419046899999, 50.677646773000106 ], [ -120.30396340399993, 50.677756817000102 ], [ -120.303687869999962, 50.677767961000093 ], [ -120.303484264999938, 50.677726898000053 ], [ -120.303064001999957, 50.677546775000074 ], [ -120.302772042999919, 50.678268129000081 ], [ -120.30252439199991, 50.678886276000064 ], [ -120.302339992999947, 50.679275851000071 ], [ -120.302207847999966, 50.679554986000063 ], [ -120.303061569999912, 50.679711327000106 ], [ -120.303489961999929, 50.679749464000032 ], [ -120.303960592999957, 50.67973478000004 ], [ -120.304656859999966, 50.679448065000066 ], [ -120.304859938000021, 50.679364443000104 ], [ -120.305146295999961, 50.678843769000082 ], [ -120.305441237999929, 50.678389349000064 ], [ -120.305730882999953, 50.678043703000078 ], [ -120.305674066999956, 50.677842532000049 ], [ -120.305279949999914, 50.677679985000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C1A19EDB17145EC0554F83F541584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.312921084999914, 50.689180592000035 ], [ -120.314618034999981, 50.689219725000051 ], [ -120.31456639799994, 50.690123562000082 ], [ -120.312912743999945, 50.689326487000116 ], [ -120.312921084999914, 50.689180592000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25188667", "BldgCostT": "15636667", "sL_LossRatio": "0.999912651438674", "sL_AssetLoss": "2206.893818", "sL_BldgLoss": "2206.701049", "sL_StrLoss": "2205.619739", "sL_NStrLoss": "1.08131", "sL_ContLoss": "0.192769", "geom_point": "0101000020E6100000DE473D5D40145EC0FAA31C8A8A574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.31691668, 50.681852209000041 ], [ -120.318014379999951, 50.681115204000072 ], [ -120.318015684, 50.679804194000042 ], [ -120.318015705, 50.679794185000041 ], [ -120.317348094999986, 50.679648297000071 ], [ -120.316680287999986, 50.679515108000018 ], [ -120.316171719999943, 50.679415300000095 ], [ -120.315413396999972, 50.679279194000074 ], [ -120.315359399999977, 50.680880598000051 ], [ -120.315397087999912, 50.681031202000064 ], [ -120.315508495999921, 50.681116199000023 ], [ -120.315664363999929, 50.681162509000067 ], [ -120.31591097899998, 50.681235795000127 ], [ -120.31691668, 50.681852209000041 ], [ -120.316771994999925, 50.681896480000034 ], [ -120.316727504999932, 50.681910096000053 ], [ -120.316592225999941, 50.682024906000088 ], [ -120.316292501999939, 50.682595391000028 ], [ -120.316305099999965, 50.683537701000077 ], [ -120.31631544899993, 50.684057514000067 ], [ -120.316323417999939, 50.684457894000055 ], [ -120.316837900999985, 50.685015800000059 ], [ -120.316860184999911, 50.685025833000083 ], [ -120.317103991999886, 50.685135696000096 ], [ -120.317852836, 50.685296011000034 ], [ -120.317933740999948, 50.685313348000122 ], [ -120.319872915999952, 50.685728492000045 ], [ -120.321643595999916, 50.686049498000024 ], [ -120.322546083999967, 50.686158600000063 ], [ -120.322376523999978, 50.68648790600016 ], [ -120.322179798999983, 50.686986103000059 ], [ -120.32215370699997, 50.687530037000045 ], [ -120.322009030999979, 50.690542362 ], [ -120.321969996999925, 50.692004990000051 ], [ -120.321953315999949, 50.692630224000013 ], [ -120.321928098999962, 50.693232690000059 ], [ -120.32164777599999, 50.693527497000105 ], [ -120.321591970999989, 50.693564979000023 ], [ -120.32159976899996, 50.693428175000115 ], [ -120.321118152999986, 50.69341710000004 ], [ -120.32100907, 50.693348638000039 ], [ -120.320184449999928, 50.69283108300008 ], [ -120.319803102999984, 50.692647345000069 ], [ -120.319431039999969, 50.692468051000063 ], [ -120.319844678999971, 50.689205458000117 ], [ -120.321703829999933, 50.689300265000035 ], [ -120.321761590999969, 50.688844489000083 ], [ -120.321436581999933, 50.688837017000026 ], [ -120.321447424000013, 50.688646755000065 ], [ -120.318144854999929, 50.688478311000097 ], [ -120.318188132000017, 50.688137038000022 ], [ -120.317158143999976, 50.688084484000044 ], [ -120.317176739, 50.687937871000017 ], [ -120.316449631999959, 50.687900765000109 ], [ -120.316471448999962, 50.687728762000113 ], [ -120.315883423999978, 50.687698750000031 ], [ -120.315909307999988, 50.687494706000045 ], [ -120.314863504999906, 50.687441323000023 ], [ -120.315013321, 50.686260510000125 ], [ -120.314363160999932, 50.686245523000053 ], [ -120.314393952, 50.685706536000048 ], [ -120.313969744999966, 50.685696756000084 ], [ -120.313985140999975, 50.685427263000093 ], [ -120.311975096999973, 50.685380896000076 ], [ -120.31143992599999, 50.685368545000109 ], [ -120.311469863999918, 50.684845049000018 ], [ -120.311486159999959, 50.684560068000025 ], [ -120.312758744999883, 50.684589433000106 ], [ -120.312774148999921, 50.684319940000073 ], [ -120.31362253599994, 50.68433950900004 ], [ -120.31365333199993, 50.683800523000073 ], [ -120.314077518999952, 50.68381030500008 ], [ -120.31409291599999, 50.683540812000054 ], [ -120.314548477999935, 50.683551316000027 ], [ -120.314810841999929, 50.681483324000055 ], [ -120.315059177999927, 50.681496003000085 ], [ -120.315064407999941, 50.681404425000046 ], [ -120.314640239999974, 50.681394647000097 ], [ -120.314648756999929, 50.681245499000084 ], [ -120.311810524999913, 50.681076363000024 ], [ -120.311703354999935, 50.681057055000046 ], [ -120.31126232099993, 50.681046876000032 ], [ -120.311278516999934, 50.680763601000073 ], [ -120.311322037999929, 50.680002492000057 ], [ -120.310215534999912, 50.679945955000086 ], [ -120.30760725599994, 50.679812640000129 ], [ -120.307769211999954, 50.678537556 ], [ -120.307583743999913, 50.678533269000134 ], [ -120.307599172, 50.678263777000026 ], [ -120.307175036, 50.678253972000086 ], [ -120.307221331999983, 50.677445497000051 ], [ -120.307905903999981, 50.677461321000102 ], [ -120.307923203999962, 50.677325105000065 ], [ -120.309001994999932, 50.677377311000015 ], [ -120.309794514999936, 50.677528616000089 ], [ -120.310934203999963, 50.677746188000036 ], [ -120.312537679999977, 50.677945596000015 ], [ -120.314387609999969, 50.678381531000049 ], [ -120.31438538799992, 50.678420443000086 ], [ -120.314570890999931, 50.678424719000112 ], [ -120.314689216999966, 50.678452601000117 ], [ -120.315533401999943, 50.678545194000037 ], [ -120.315649704999956, 50.678591741000055 ], [ -120.315642426999943, 50.678719266000044 ], [ -120.315988259, 50.678727236000071 ], [ -120.31622378899999, 50.678821498000048 ], [ -120.316797112999922, 50.678942496000047 ], [ -120.317595987999979, 50.679365503000064 ], [ -120.318413092999933, 50.679663196000021 ], [ -120.318931583999984, 50.680259895000063 ], [ -120.3200593899999, 50.681068891000059 ], [ -120.321371893999952, 50.681422092000048 ], [ -120.322738108999914, 50.681517496000062 ], [ -120.323575118999983, 50.681481896000022 ], [ -120.323925911999979, 50.681310999000075 ], [ -120.324858531999951, 50.681102949000035 ], [ -120.324923181999935, 50.681332388000079 ], [ -120.324847851999962, 50.68163676100005 ], [ -120.324841704999969, 50.681661596000083 ], [ -120.324807886999935, 50.681727688000066 ], [ -120.324333889999963, 50.682654095000025 ], [ -120.32030833, 50.681957699000108 ], [ -120.319897143999967, 50.681944561000122 ], [ -120.319770001999984, 50.681940491000034 ], [ -120.318180377999937, 50.681889693000073 ], [ -120.31691668, 50.681852209000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000457E3F2DED135EC09B69A95973574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.310745675999968, 50.682654038000045 ], [ -120.31244238799999, 50.682693198000088 ], [ -120.31239617199995, 50.68350167600007 ], [ -120.311971987999982, 50.683491887000024 ], [ -120.311956578999954, 50.683761380000149 ], [ -120.310414886999965, 50.6837257930001 ], [ -120.310259830999911, 50.683722212000077 ], [ -120.310268559999926, 50.683569619000096 ], [ -120.310306081999897, 50.682913737000035 ], [ -120.310730262999968, 50.682923531 ], [ -120.310745675999968, 50.682654038000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021B4BB9351145EC009087B4D6E584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.315393246999946, 50.690522091000069 ], [ -120.315404944999941, 50.69031725300006 ], [ -120.316677690999938, 50.690346578000096 ], [ -120.316693075999964, 50.690077084000038 ], [ -120.318390061999963, 50.690116162000038 ], [ -120.318359312, 50.690655149000115 ], [ -120.318783562999926, 50.690664915000085 ], [ -120.318706699999908, 50.692012384000115 ], [ -120.31847439099991, 50.692007036000071 ], [ -120.315393246999946, 50.690522091000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71885167", "BldgCostT": "48576667", "sL_LossRatio": "0.999999478947341", "sL_AssetLoss": "8693.93893", "sL_BldgLoss": "8693.9344", "sL_StrLoss": "8693.8", "sL_NStrLoss": "0.1344", "sL_ContLoss": "0.00453", "geom_point": "0101000020E6100000121867E373DB5DC011FF872696FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.421049488, 49.986876992000091 ], [ -119.421836399999947, 49.98567638600008 ], [ -119.422566183999947, 49.983829759000088 ], [ -119.42333363099999, 49.981887548000024 ], [ -119.423397192999943, 49.981726697000092 ], [ -119.423420794999956, 49.980944156000099 ], [ -119.423447084999935, 49.980072812000103 ], [ -119.423402692999957, 49.97992470300008 ], [ -119.42347547899999, 49.979207603000063 ], [ -119.423642297999962, 49.978576591000028 ], [ -119.423646173999913, 49.978565351000029 ], [ -119.423931005999975, 49.977740601000072 ], [ -119.42396122199996, 49.977531493000136 ], [ -119.423974124, 49.97744225400006 ], [ -119.424006697999985, 49.977216905000063 ], [ -119.423910119999931, 49.976867995000063 ], [ -119.42355295499999, 49.976016736000112 ], [ -119.423324810999929, 49.975472896000028 ], [ -119.423293414999961, 49.975127897000093 ], [ -119.423382520999965, 49.974223543000022 ], [ -119.423398575999954, 49.974060589000082 ], [ -119.423248186999942, 49.97273688700011 ], [ -119.423360970999966, 49.972180178000052 ], [ -119.423711703999913, 49.970448609000066 ], [ -119.423733274999975, 49.970361332000039 ], [ -119.424112050999938, 49.968830119000081 ], [ -119.424501474999929, 49.96726627300005 ], [ -119.425575931, 49.967330832000037 ], [ -119.425622583999939, 49.967007715000101 ], [ -119.426276179999945, 49.967046982000085 ], [ -119.426367483999954, 49.966414531000076 ], [ -119.426471336999967, 49.966420770000049 ], [ -119.42677489, 49.964317943000026 ], [ -119.424695022999927, 49.964192979000131 ], [ -119.424619807999989, 49.963966484000125 ], [ -119.424324206999984, 49.963415969000067 ], [ -119.42399951, 49.962950692000042 ], [ -119.423771008999935, 49.96262330600009 ], [ -119.423573512999937, 49.962052501000116 ], [ -119.423580538999914, 49.960435400000051 ], [ -119.423585687999932, 49.959244934000019 ], [ -119.423505364999968, 49.958783187000023 ], [ -119.423317639999979, 49.957737969000043 ], [ -119.423304426999934, 49.957579098000075 ], [ -119.423301943999959, 49.957549169000089 ], [ -119.426972812999935, 49.957769779000081 ], [ -119.426883486999941, 49.95838871600008 ], [ -119.427332143999962, 49.958415671000118 ], [ -119.427279859999956, 49.958777944000104 ], [ -119.42767965799996, 49.958801962000031 ], [ -119.427162859999981, 49.962382847000129 ], [ -119.427071897999966, 49.962377383000046 ], [ -119.426853661999985, 49.963889341000012 ], [ -119.432387648999949, 49.964221644000126 ], [ -119.432304093999946, 49.964800981000046 ], [ -119.435511687999934, 49.964993459 ], [ -119.435448512999955, 49.965431695000071 ], [ -119.439656287999924, 49.965684046000042 ], [ -119.43956719, 49.966302478000024 ], [ -119.442900327999936, 49.966502258000048 ], [ -119.442433726000033, 49.969742326000066 ], [ -119.442384636999975, 49.970083177000099 ], [ -119.438289024999946, 49.969837683000037 ], [ -119.43799904499997, 49.971849773000038 ], [ -119.432447329999931, 49.971516751000088 ], [ -119.43258206499999, 49.970582678 ], [ -119.432319989999939, 49.970566950000119 ], [ -119.432627892, 49.968432291000035 ], [ -119.432364176999968, 49.968416465000089 ], [ -119.432160385, 49.969829312000066 ], [ -119.431479919, 49.969788471000108 ], [ -119.431401977999897, 49.970328729000123 ], [ -119.430748331999936, 49.970289493000145 ], [ -119.430657079999932, 49.970921944000096 ], [ -119.429050053999973, 49.970825465000111 ], [ -119.42900342199999, 49.971148581000108 ], [ -119.428888461999975, 49.971141679000098 ], [ -119.428513643999963, 49.973738585000078 ], [ -119.427406520999938, 49.973672104000087 ], [ -119.427335343, 49.974165144000047 ], [ -119.427597680999924, 49.974180898000036 ], [ -119.427550123999964, 49.974510320000086 ], [ -119.42756310399993, 49.974511100000058 ], [ -119.427523853999929, 49.974782979000068 ], [ -119.427679018999953, 49.974792297000107 ], [ -119.427162040999946, 49.978373104000063 ], [ -119.427027889999934, 49.978365048000072 ], [ -119.426877347999977, 49.979407637000051 ], [ -119.427704527999964, 49.979457307000104 ], [ -119.427390577999972, 49.981631703000083 ], [ -119.42781537, 49.981657209000048 ], [ -119.42775195199998, 49.982096440000063 ], [ -119.429499746999966, 49.982201363000044 ], [ -119.429482320999966, 49.982322083000049 ], [ -119.431335696999923, 49.982433313000051 ], [ -119.430818919, 49.986014100000041 ], [ -119.426527263999986, 49.98575649100006 ], [ -119.426466110000021, 49.986179922000112 ], [ -119.428209764999934, 49.986284607000094 ], [ -119.427692698000016, 49.989865362000046 ], [ -119.424887925999911, 49.989696957000099 ], [ -119.424799698999905, 49.990307627000057 ], [ -119.423946981999904, 49.990256413000075 ], [ -119.423607497999967, 49.989865986000105 ], [ -119.422470264999973, 49.989012608000046 ], [ -119.42211683, 49.988747375000123 ], [ -119.421963537999943, 49.988632332000101 ], [ -119.421271390999976, 49.988112904000104 ], [ -119.421032183999955, 49.987781595000037 ], [ -119.42092340399995, 49.987420202000109 ], [ -119.4209716, 49.987057393000086 ], [ -119.421049488, 49.986876992000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14822084", "BldgCostT": "9958334", "sL_LossRatio": "1", "sL_AssetLoss": "1736", "sL_BldgLoss": "1736", "sL_StrLoss": "1736", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003DF052665ADC5DC071B5880798FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439021714999939, 50.00237096500004 ], [ -119.439073268999891, 50.002013455000039 ], [ -119.43905343899992, 50.002012267000033 ], [ -119.439153922999978, 50.001315431000108 ], [ -119.43839146399992, 50.001269751000073 ], [ -119.438907820999987, 49.997689001000076 ], [ -119.43908201, 49.997699438000083 ], [ -119.439172043999932, 49.997075006000038 ], [ -119.440251463999957, 49.997139672000053 ], [ -119.440288706999951, 49.996881331000083 ], [ -119.440459032999939, 49.996891534000035 ], [ -119.440532823999931, 49.996379634000036 ], [ -119.440929217999965, 49.996403379000121 ], [ -119.440990525999894, 49.995978044000054 ], [ -119.441203315999942, 49.995990790000114 ], [ -119.441241228999928, 49.995727749000096 ], [ -119.441441225999981, 49.995739728000054 ], [ -119.441481434999957, 49.995460754000078 ], [ -119.441812514999953, 49.995480583000123 ], [ -119.441851732999964, 49.995208462000093 ], [ -119.442132405999928, 49.995225271000045 ], [ -119.442175033999945, 49.994929469000084 ], [ -119.442605563999948, 49.994955252000096 ], [ -119.442646627999963, 49.994670279000061 ], [ -119.44377430699997, 49.994737804000103 ], [ -119.443910020999965, 49.99379580600008 ], [ -119.444566465999927, 49.993835108000063 ], [ -119.445077265999913, 49.990288923000087 ], [ -119.44736207499993, 49.99042568800013 ], [ -119.44739268299999, 49.991283004000145 ], [ -119.447685382999978, 49.991844095000076 ], [ -119.448035816999962, 49.992133206000069 ], [ -119.448005505999944, 49.992358305000032 ], [ -119.447736903999925, 49.992553412000063 ], [ -119.447543512999914, 49.992872392000052 ], [ -119.446790208999957, 49.995055704000087 ], [ -119.446804807, 49.995343403000049 ], [ -119.447154689999934, 49.995650990000044 ], [ -119.447160314999962, 49.995776402000118 ], [ -119.445757182999941, 49.996462796000102 ], [ -119.444694496999972, 49.997231901000127 ], [ -119.443884598999915, 49.998032295000016 ], [ -119.442935585999948, 49.999401011000032 ], [ -119.442423296999962, 50.000338112000058 ], [ -119.442502107999985, 50.001866290000059 ], [ -119.442342645999986, 50.00256986400008 ], [ -119.439021714999939, 50.00237096500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "412.2", "sL_BldgLoss": "412.2", "sL_StrLoss": "412.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F35F9CCFABDC5DC0A8A83CB220FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.446733276999936, 49.983374143000034 ], [ -119.451116651999911, 49.983636458000021 ], [ -119.451041883999949, 49.984009500000077 ], [ -119.450328601999942, 49.984546491000124 ], [ -119.449528297999947, 49.985787003000091 ], [ -119.44911679799999, 49.986210009000025 ], [ -119.448490541999917, 49.987714076 ], [ -119.445792440999966, 49.987552585000124 ], [ -119.446308060999939, 49.983971735000075 ], [ -119.446644339999978, 49.983991866000103 ], [ -119.446733276999936, 49.983374143000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5311833", "BldgCostT": "3663333", "sL_LossRatio": "1", "sL_AssetLoss": "567.3", "sL_BldgLoss": "567.3", "sL_StrLoss": "567.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000321655D82FDB5DC07C2A652153004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.421710576999942, 50.004193983000043 ], [ -119.421786802999947, 50.003666800000111 ], [ -119.421393386999981, 50.003643168000067 ], [ -119.42179685899994, 50.003078940000059 ], [ -119.422026658999982, 50.00275756900006 ], [ -119.422032522, 50.002749402000049 ], [ -119.422346473999937, 50.002204794000072 ], [ -119.422533994999981, 50.001634610000075 ], [ -119.42265310099999, 50.001072892000103 ], [ -119.422946592999935, 50.0005442080001 ], [ -119.423277538999912, 50.000144581000015 ], [ -119.424644017999952, 50.000226637000054 ], [ -119.4245678299999, 50.000753824000064 ], [ -119.42778345499994, 50.000946851 ], [ -119.427266188999937, 50.004527533000044 ], [ -119.421710576999942, 50.004193983000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13396250", "BldgCostT": "8975000", "sL_LossRatio": "1", "sL_AssetLoss": "1707.8", "sL_BldgLoss": "1707.8", "sL_StrLoss": "1707.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000371D3B8776DB5DC032D83F1558F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.430456751999969, 49.942299724000101 ], [ -119.43117983799999, 49.941244009000037 ], [ -119.433208201999918, 49.946210560000054 ], [ -119.433164742999907, 49.946512051000113 ], [ -119.431055014999927, 49.94638536300004 ], [ -119.430565709999982, 49.949778502000058 ], [ -119.429990065999988, 49.949743928000075 ], [ -119.429834036999935, 49.950825716000097 ], [ -119.429549503999908, 49.950808626000111 ], [ -119.429360786999922, 49.952116923000084 ], [ -119.429239529999961, 49.95210964000011 ], [ -119.429041148999929, 49.953484826000157 ], [ -119.425357279999972, 49.953263482000082 ], [ -119.425917416999965, 49.951569074000105 ], [ -119.426199651999951, 49.95071524700009 ], [ -119.426284308999939, 49.949100540000074 ], [ -119.42630581799996, 49.948689873000035 ], [ -119.426436309999943, 49.948221849000042 ], [ -119.426454840999924, 49.948190840000109 ], [ -119.426595662999958, 49.947955201000077 ], [ -119.426685321999969, 49.94780519200004 ], [ -119.427319817999944, 49.94687909400006 ], [ -119.427916868999901, 49.946007568000041 ], [ -119.428158808999953, 49.945654394000059 ], [ -119.429232145999919, 49.944087511000063 ], [ -119.429816944999928, 49.943233818000088 ], [ -119.430172194999955, 49.942715203000027 ], [ -119.430391322999952, 49.942395214000079 ], [ -119.430456751999969, 49.942299724000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3697500", "BldgCostT": "2550000", "sL_LossRatio": "1", "sL_AssetLoss": "302.5", "sL_BldgLoss": "302.5", "sL_StrLoss": "302.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000053842736D7DB5DC02DD4D491A7004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.427944472999968, 50.005814520000087 ], [ -119.428140709999923, 50.004456072 ], [ -119.433696399999945, 50.004789296000105 ], [ -119.433579555, 50.005598850000091 ], [ -119.435808530999935, 50.005732462000019 ], [ -119.435863028999947, 50.005354751 ], [ -119.436050829999942, 50.005366007000113 ], [ -119.436220377999987, 50.004190856000044 ], [ -119.437822159999911, 50.004286841000052 ], [ -119.43782760499991, 50.004249094000038 ], [ -119.441656732999931, 50.004478453000047 ], [ -119.441679498999989, 50.00492409400006 ], [ -119.441328900999935, 50.005426811000127 ], [ -119.440938287000023, 50.005780333000068 ], [ -119.4408265499999, 50.005777044000077 ], [ -119.43804018499992, 50.00571870800006 ], [ -119.437940120999926, 50.005716139000064 ], [ -119.427944472999968, 50.005814520000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40299751", "BldgCostT": "26640001", "sL_LossRatio": "0.993959852122356", "sL_AssetLoss": "3178.730122", "sL_BldgLoss": "3159.530122", "sL_StrLoss": "3152.600122", "sL_NStrLoss": "6.93", "sL_ContLoss": "19.2", "geom_point": "0101000020E61000007715EF5357DD5DC031B0121C2CFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.452700633999982, 49.974790104000121 ], [ -119.452760467999937, 49.974374038000036 ], [ -119.452552556999976, 49.974361601000062 ], [ -119.452915221999973, 49.971839668000058 ], [ -119.45199054899993, 49.971859227000053 ], [ -119.451952609999935, 49.971112984000094 ], [ -119.451949433999985, 49.971050501000029 ], [ -119.452167859, 49.971045880000119 ], [ -119.452367400999933, 49.971041660000076 ], [ -119.452364498999927, 49.970984578000099 ], [ -119.452353693999953, 49.970772084000075 ], [ -119.452771660999986, 49.970763243000114 ], [ -119.45275795099991, 49.970493667000042 ], [ -119.453122882999963, 49.97048594700005 ], [ -119.453207542999948, 49.969897156000087 ], [ -119.453985203999963, 49.969943675000131 ], [ -119.453984406999936, 49.96992798500002 ], [ -119.454201026999954, 49.969923400000035 ], [ -119.454307932999953, 49.969921137000078 ], [ -119.454356205999943, 49.969585350000081 ], [ -119.454377750999981, 49.969435473000061 ], [ -119.454374926999961, 49.969379987000046 ], [ -119.454385760999983, 49.969379758000059 ], [ -119.454491054999949, 49.968647281000074 ], [ -119.454569232000011, 49.968651958000045 ], [ -119.454676190000015, 49.967907885000081 ], [ -119.455138208999955, 49.967935518000061 ], [ -119.455114781999896, 49.967475264000022 ], [ -119.455386921999931, 49.967469500000028 ], [ -119.455445101999956, 49.967064699000062 ], [ -119.455545674999925, 49.967070714000087 ], [ -119.45564428499992, 49.966384587000171 ], [ -119.455477828999904, 49.966388113000093 ], [ -119.455436662999929, 49.965579387000098 ], [ -119.455760991999938, 49.965572517000105 ], [ -119.455800484999912, 49.965297703000076 ], [ -119.455840814999974, 49.965300115000012 ], [ -119.455813411999927, 49.964761810000013 ], [ -119.456567685999957, 49.964745831000066 ], [ -119.456723264999965, 49.963663071000056 ], [ -119.45617642399999, 49.963674656000087 ], [ -119.456094078999968, 49.962057207000107 ], [ -119.457009611999965, 49.962037807000058 ], [ -119.457061230999926, 49.961678522000071 ], [ -119.457190871999984, 49.961686275000091 ], [ -119.457372885999959, 49.960419326000071 ], [ -119.457531267999983, 49.960428797000112 ], [ -119.457534686999935, 49.960404996000065 ], [ -119.457420457999902, 49.960398165000086 ], [ -119.457421659999966, 49.960389792000058 ], [ -119.456051114999966, 49.96030782800009 ], [ -119.456370069999963, 49.958087937000116 ], [ -119.456112564999941, 49.958072534000081 ], [ -119.456117138999929, 49.958040709000073 ], [ -119.455605751999897, 49.958010120000054 ], [ -119.45571811899994, 49.95722809800008 ], [ -119.455546301999973, 49.957217821000015 ], [ -119.45606081599999, 49.953636778000124 ], [ -119.458404754999918, 49.953776964000063 ], [ -119.458563463999923, 49.952671833000046 ], [ -119.459606722000032, 49.952734212000038 ], [ -119.459627620999967, 49.95258865800016 ], [ -119.461932503, 49.952726437000138 ], [ -119.461834004999929, 49.953034400000071 ], [ -119.46191050499999, 49.953420409000067 ], [ -119.462172712999944, 49.953908905000098 ], [ -119.462805695999933, 49.954596805000051 ], [ -119.462751295999965, 49.954877413000091 ], [ -119.462334194999954, 49.955471202000062 ], [ -119.462338121999906, 49.955786000000103 ], [ -119.46293989499999, 49.956671899000106 ], [ -119.463624698999951, 49.956980902000041 ], [ -119.463802390999959, 49.957184609000059 ], [ -119.46391308699998, 49.957406694000063 ], [ -119.463855902999924, 49.957956498 ], [ -119.464541514999979, 49.958536093000113 ], [ -119.464643482, 49.958885097000042 ], [ -119.464420100999931, 49.959456198000098 ], [ -119.463903597999945, 49.959961793000083 ], [ -119.463715696999913, 49.96037050400011 ], [ -119.462545699999922, 49.961250691 ], [ -119.462299795999925, 49.962136505000061 ], [ -119.461961891, 49.962378702000116 ], [ -119.461735988999976, 49.962851495000031 ], [ -119.46166360899997, 49.963365603000042 ], [ -119.461794100999953, 49.963704609000089 ], [ -119.461767021999933, 49.964019305000114 ], [ -119.461412291999935, 49.964422398000032 ], [ -119.46047578699995, 49.964955099000029 ], [ -119.460323302999953, 49.965776786000099 ], [ -119.459833517, 49.966578707000046 ], [ -119.45972778799991, 49.96749870900004 ], [ -119.458993487999948, 49.968153792000066 ], [ -119.458427393999983, 49.96937010700011 ], [ -119.457701400999952, 49.96988139200009 ], [ -119.457482980999941, 49.971334091000102 ], [ -119.456913802999964, 49.971930802000081 ], [ -119.456465601999966, 49.972808681000132 ], [ -119.456343013, 49.973048788000014 ], [ -119.456289286999976, 49.973392094000076 ], [ -119.454293989999911, 49.973893401000105 ], [ -119.453571105999941, 49.974240895000023 ], [ -119.453355489999979, 49.974390388000089 ], [ -119.45326040899991, 49.974823589000124 ], [ -119.452700633999982, 49.974790104000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667084", "BldgCostT": "3908334", "sL_LossRatio": "1", "sL_AssetLoss": "539.7", "sL_BldgLoss": "539.7", "sL_StrLoss": "539.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E120A502BCDC5DC01C8E196EE1FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.447330519000019, 49.978974176000115 ], [ -119.447180020999923, 49.976008838000084 ], [ -119.446762008999954, 49.976017659000085 ], [ -119.44669362199997, 49.974669777000031 ], [ -119.446275621, 49.974678596000096 ], [ -119.446193574999924, 49.973061136000119 ], [ -119.449119478999961, 49.972999370000096 ], [ -119.449133169, 49.973268945000044 ], [ -119.449551156999974, 49.973260116000041 ], [ -119.449564848999941, 49.973529691000074 ], [ -119.449982839999947, 49.973520860000136 ], [ -119.450010228999957, 49.974060012000045 ], [ -119.450428221999985, 49.974051178000089 ], [ -119.450469317999989, 49.974859906000098 ], [ -119.450887316999953, 49.974851071000067 ], [ -119.450873616999971, 49.974581495000088 ], [ -119.452127611999984, 49.97455498100009 ], [ -119.452196150999924, 49.975902858000055 ], [ -119.451778140999977, 49.9759116990001 ], [ -119.451860380999975, 49.97752915100007 ], [ -119.450188285999928, 49.97756449700006 ], [ -119.450174587999953, 49.977294921000116 ], [ -119.449756564999916, 49.977303754000076 ], [ -119.449715479999966, 49.976495026000094 ], [ -119.449297463, 49.976503858000065 ], [ -119.449229002999957, 49.975155978000089 ], [ -119.448810998999932, 49.975164807000027 ], [ -119.448769931999934, 49.974356078000021 ], [ -119.448351935999966, 49.974364906000069 ], [ -119.448420368999948, 49.975712786000031 ], [ -119.448838377999934, 49.975703959000086 ], [ -119.448988975999939, 49.978669295000081 ], [ -119.448570940999971, 49.978678124000098 ], [ -119.448584629999942, 49.978947698000077 ], [ -119.447330519000019, 49.978974176000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "299236917", "BldgCostT": "196406667", "sL_LossRatio": "0.999092808212623", "sL_AssetLoss": "22464.93", "sL_BldgLoss": "22444.55", "sL_StrLoss": "22437.2", "sL_NStrLoss": "7.35", "sL_ContLoss": "20.38", "geom_point": "0101000020E6100000C96BAAF602DC5DC00131E80809F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433208201999918, 49.946210560000054 ], [ -119.43117983799999, 49.941244009000037 ], [ -119.4321576899999, 49.939749591000052 ], [ -119.432205432000032, 49.939636629000113 ], [ -119.432565384999975, 49.938784401000134 ], [ -119.432648373999939, 49.938544794000094 ], [ -119.432940088999914, 49.937702318000056 ], [ -119.433133896999948, 49.937142674000057 ], [ -119.43329968099998, 49.936663887000122 ], [ -119.433626044999954, 49.935721300000083 ], [ -119.433663018999979, 49.935614506000043 ], [ -119.433748110999971, 49.935368646 ], [ -119.433757325999963, 49.935342091000052 ], [ -119.433890397999946, 49.934957716000099 ], [ -119.43393607499999, 49.934825741000033 ], [ -119.43414237799999, 49.934235689000033 ], [ -119.434268803999927, 49.93387409000011 ], [ -119.434330335999945, 49.933698067000073 ], [ -119.434694763, 49.93265562400012 ], [ -119.435113820999931, 49.931456911000062 ], [ -119.435197426999963, 49.93126185200007 ], [ -119.43551410099991, 49.930522849000035 ], [ -119.435686247999982, 49.930279441000081 ], [ -119.435888714, 49.92999092800008 ], [ -119.436099174, 49.929761749000107 ], [ -119.436356409999973, 49.929481697000057 ], [ -119.436800542999933, 49.929118455000037 ], [ -119.437533200999951, 49.928519204000054 ], [ -119.437832379999975, 49.928274475000066 ], [ -119.439579022999922, 49.929228116000068 ], [ -119.439766768999917, 49.929325916000046 ], [ -119.440106483999983, 49.929502923000022 ], [ -119.441136412999981, 49.930039438000108 ], [ -119.441691277999965, 49.930483929000033 ], [ -119.441867538999958, 49.930625098000121 ], [ -119.442240222999914, 49.930999614000079 ], [ -119.442340653999949, 49.931150519 ], [ -119.44247369, 49.931350453000057 ], [ -119.442598797999935, 49.931666777000054 ], [ -119.442664144999981, 49.932068024000039 ], [ -119.442729217999954, 49.933141975000105 ], [ -119.442731581999936, 49.934680815000043 ], [ -119.442746307999954, 49.934925507000074 ], [ -119.442746831999912, 49.934934583 ], [ -119.443019044, 49.935988442000038 ], [ -119.443002419999942, 49.936158989000027 ], [ -119.443453291999916, 49.936013961000135 ], [ -119.443880651999947, 49.935664909000074 ], [ -119.443945511999971, 49.936946530000043 ], [ -119.443527836999962, 49.93695533400011 ], [ -119.443561960999943, 49.937629691000041 ], [ -119.44363697199995, 49.939111965000102 ], [ -119.443219277999944, 49.939120768000073 ], [ -119.443246559999963, 49.939659927000086 ], [ -119.442828861999928, 49.939668730000037 ], [ -119.442908479999943, 49.941242405000075 ], [ -119.442910696999945, 49.941286204000036 ], [ -119.441657555999953, 49.941312605000135 ], [ -119.441534869999956, 49.938886392000015 ], [ -119.441952561999969, 49.938877593000058 ], [ -119.44185713399996, 49.936990540000124 ], [ -119.442274809999958, 49.936981740000071 ], [ -119.442261174999956, 49.936712161000059 ], [ -119.44184350299993, 49.936720961000105 ], [ -119.441829871, 49.936451381000097 ], [ -119.440994528999937, 49.936468974000029 ], [ -119.441008154999977, 49.93673855400008 ], [ -119.440720135999982, 49.936744618000098 ], [ -119.440655950999911, 49.937190504000064 ], [ -119.440612746999989, 49.937187913000095 ], [ -119.440631355000036, 49.937556086000107 ], [ -119.440213673999978, 49.937564879000035 ], [ -119.44022729699995, 49.937834460000069 ], [ -119.440644980999977, 49.937825666 ], [ -119.440685858, 49.938634404000027 ], [ -119.440268166999928, 49.938643198000179 ], [ -119.44032266399995, 49.939721516000084 ], [ -119.439904963999965, 49.939730308000051 ], [ -119.439959453999947, 49.940808627000138 ], [ -119.439541743999925, 49.940817417000055 ], [ -119.439555363999972, 49.941086997000049 ], [ -119.439137651999943, 49.941095787000087 ], [ -119.43915127299999, 49.941365366000134 ], [ -119.438853985999913, 49.941371621000087 ], [ -119.438815116999933, 49.941641534000084 ], [ -119.438746855999938, 49.94163743900004 ], [ -119.438747172999967, 49.941643735000078 ], [ -119.437939381999982, 49.941660726000123 ], [ -119.437911737999968, 49.941661308000072 ], [ -119.437912688, 49.941680111000089 ], [ -119.437938962999937, 49.942200466000095 ], [ -119.437521240999942, 49.942209251000122 ], [ -119.437534850999938, 49.942478831000102 ], [ -119.437952576, 49.942470046 ], [ -119.437966187999933, 49.942739626000069 ], [ -119.43838391599999, 49.942730840000081 ], [ -119.438397530999907, 49.9430004190001 ], [ -119.438815258999938, 49.942991632000016 ], [ -119.438828877, 49.943261212000017 ], [ -119.440917530999954, 49.943217252000117 ], [ -119.440931159999963, 49.943486831000115 ], [ -119.441766627, 49.943469237000031 ], [ -119.44175299099993, 49.943199657000036 ], [ -119.443006180999944, 49.943173255000012 ], [ -119.443074387999957, 49.944521148000028 ], [ -119.44265664699995, 49.94452995100005 ], [ -119.44267993899993, 49.944990272000041 ], [ -119.442697568999918, 49.945338688000085 ], [ -119.440608825999931, 49.945382680000101 ], [ -119.440595196999951, 49.945113101000025 ], [ -119.439341955999978, 49.945139480000144 ], [ -119.43936920099999, 49.945678638000103 ], [ -119.438951447999926, 49.945687428000028 ], [ -119.43896506699997, 49.945957007000125 ], [ -119.438129558999947, 49.945974582000126 ], [ -119.438140007999934, 49.94618147500011 ], [ -119.437268068999927, 49.946101926000047 ], [ -119.436466992999954, 49.946177240000011 ], [ -119.436458535999947, 49.946009715000116 ], [ -119.436040780999932, 49.946018494 ], [ -119.436013573999929, 49.945479334000041 ], [ -119.435595821999968, 49.945488111000067 ], [ -119.435582222999969, 49.94521853100013 ], [ -119.435164471999954, 49.945227307000067 ], [ -119.435151846999943, 49.944977001000012 ], [ -119.434913736999945, 49.944962709000045 ], [ -119.434733126999973, 49.944966502000071 ], [ -119.434732386999983, 49.944951823000068 ], [ -119.433401155999917, 49.944871905000049 ], [ -119.433208201999918, 49.946210560000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "208.9", "sL_BldgLoss": "208.9", "sL_StrLoss": "208.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037FFD0489BDC5DC0757719D5D4F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44738888599997, 49.925944941000068 ], [ -119.447594069999965, 49.925957239000084 ], [ -119.447079203999934, 49.929538377000029 ], [ -119.446564549999934, 49.929507530000073 ], [ -119.446420627999956, 49.930508390000064 ], [ -119.446183589999961, 49.930494182000096 ], [ -119.446416610999947, 49.929420636000096 ], [ -119.446728021999917, 49.928660698000044 ], [ -119.44733718499999, 49.926395854000077 ], [ -119.44738888599997, 49.925944941000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.5", "sL_BldgLoss": "52.5", "sL_StrLoss": "52.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000151EE46B8DC5DC0E41A764A4DF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.447598394999972, 49.92411761200006 ], [ -119.449888946999963, 49.924249570000086 ], [ -119.449874336999954, 49.924351227000081 ], [ -119.447587325999962, 49.924214173000074 ], [ -119.447598394999972, 49.92411761200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72445500", "BldgCostT": "48015000", "sL_LossRatio": "0.996715296891703", "sL_AssetLoss": "6819.49", "sL_BldgLoss": "6797.09", "sL_StrLoss": "6789", "sL_NStrLoss": "8.09", "sL_ContLoss": "22.4", "geom_point": "0101000020E6100000E076B2E526DC5DC088D3EEFCC7F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.440204710999964, 49.928913511000161 ], [ -119.440099497999967, 49.928896321000124 ], [ -119.439991358999961, 49.928918747000083 ], [ -119.439579022999922, 49.929228116000068 ], [ -119.437832379999975, 49.928274475000066 ], [ -119.43715953899999, 49.927914912000091 ], [ -119.436841859999959, 49.927745153000068 ], [ -119.43683110799995, 49.927739362000089 ], [ -119.437768907999939, 49.926956788000048 ], [ -119.437810496999958, 49.926891503000071 ], [ -119.43776971599999, 49.926757292000076 ], [ -119.437399992999985, 49.926537275000101 ], [ -119.437352691999962, 49.926447790000061 ], [ -119.437445796999924, 49.926287182000038 ], [ -119.438026907, 49.925825395000103 ], [ -119.438622692999957, 49.926136612000064 ], [ -119.438925102999917, 49.926289309000019 ], [ -119.439281818999987, 49.926609613000075 ], [ -119.439643339999989, 49.926789328000034 ], [ -119.440223795999884, 49.927099614000078 ], [ -119.441833957999933, 49.927936317000039 ], [ -119.442443779999962, 49.928253194000085 ], [ -119.443185673999935, 49.928621075000137 ], [ -119.443375908999926, 49.928715400000073 ], [ -119.442019806999923, 49.929823277000089 ], [ -119.441962113999978, 49.929870399000031 ], [ -119.441684569999921, 49.929719302000116 ], [ -119.440575912999961, 49.92911564900011 ], [ -119.440268773999989, 49.928948424000083 ], [ -119.440204710999964, 49.928913511000161 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141102427", "BldgCostT": "96137069", "sL_LossRatio": "0.988681673693454", "sL_AssetLoss": "6811.961231", "sL_BldgLoss": "6734.861231", "sL_StrLoss": "6707.001231", "sL_NStrLoss": "27.86", "sL_ContLoss": "77.1", "geom_point": "0101000020E61000000FC1BBA651DC5DC0CFC6425B6BF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439281818999987, 49.926609613000075 ], [ -119.438925102999917, 49.926289309000019 ], [ -119.438622692999957, 49.926136612000064 ], [ -119.438913502999966, 49.925855205000083 ], [ -119.439034867999965, 49.925789317000081 ], [ -119.440482763999938, 49.92414421600008 ], [ -119.440896588999934, 49.923785276000025 ], [ -119.44126920799998, 49.923965637000045 ], [ -119.441517316999949, 49.924039223000101 ], [ -119.441971798999973, 49.924088175000101 ], [ -119.442981786999965, 49.924193007 ], [ -119.443294411999943, 49.924284889000049 ], [ -119.444029186999956, 49.923765499000119 ], [ -119.44422391199997, 49.923627310000036 ], [ -119.44427858899995, 49.923607475000075 ], [ -119.444803680999939, 49.923417299000072 ], [ -119.445485112999904, 49.923171013000072 ], [ -119.445666002999985, 49.923050903000053 ], [ -119.445875975999968, 49.923184680000119 ], [ -119.445983697999964, 49.923253292000027 ], [ -119.446464581999948, 49.923459112000089 ], [ -119.446561220999968, 49.923565095000114 ], [ -119.446512785999971, 49.924144705000053 ], [ -119.446044709999939, 49.925085484000121 ], [ -119.44588959299989, 49.925094296000047 ], [ -119.44450859199999, 49.924778511000049 ], [ -119.444237990999937, 49.924744202000078 ], [ -119.443878014999967, 49.924767795000079 ], [ -119.443915287999943, 49.924819714000066 ], [ -119.443949908999926, 49.925259705000038 ], [ -119.443919619999974, 49.925402404000067 ], [ -119.443822690999923, 49.925832713000034 ], [ -119.443591403999989, 49.926303799 ], [ -119.443134807999968, 49.926745895000053 ], [ -119.442704729999903, 49.926522027000047 ], [ -119.442693688999938, 49.926516323000037 ], [ -119.442408763999978, 49.926727929000016 ], [ -119.442042297999961, 49.927000090000064 ], [ -119.441945590999964, 49.927040295000097 ], [ -119.441791600999963, 49.927002204000111 ], [ -119.441101106999923, 49.926650101000078 ], [ -119.440965689999985, 49.926609500000076 ], [ -119.440803403999908, 49.926668390000046 ], [ -119.440223795999884, 49.927099614000078 ], [ -119.439643339999989, 49.926789328000034 ], [ -119.439281818999987, 49.926609613000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177312750", "BldgCostT": "118545000", "sL_LossRatio": "1", "sL_AssetLoss": "16682", "sL_BldgLoss": "16682", "sL_StrLoss": "16682", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B06495D7ADC5DC00A43B2BAB4F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442729217999954, 49.933141975000105 ], [ -119.442664144999981, 49.932068024000039 ], [ -119.442598797999935, 49.931666777000054 ], [ -119.44247369, 49.931350453000057 ], [ -119.442340653999949, 49.931150519 ], [ -119.442240222999914, 49.930999614000079 ], [ -119.441867538999958, 49.930625098000121 ], [ -119.441691277999965, 49.930483929000033 ], [ -119.441136412999981, 49.930039438000108 ], [ -119.440106483999983, 49.929502923000022 ], [ -119.439766768999917, 49.929325916000046 ], [ -119.439579022999922, 49.929228116000068 ], [ -119.439991358999961, 49.928918747000083 ], [ -119.440099497999967, 49.928896321000124 ], [ -119.440204710999964, 49.928913511000161 ], [ -119.440268773999989, 49.928948424000083 ], [ -119.440575912999961, 49.92911564900011 ], [ -119.441684569999921, 49.929719302000116 ], [ -119.441962113999978, 49.929870399000031 ], [ -119.442019806999923, 49.929823277000089 ], [ -119.443375908999926, 49.928715400000073 ], [ -119.443185673999935, 49.928621075000137 ], [ -119.442443779999962, 49.928253194000085 ], [ -119.441833957999933, 49.927936317000039 ], [ -119.440223795999884, 49.927099614000078 ], [ -119.440803403999908, 49.926668390000046 ], [ -119.440965689999985, 49.926609500000076 ], [ -119.441101106999923, 49.926650101000078 ], [ -119.441791600999963, 49.927002204000111 ], [ -119.441945590999964, 49.927040295000097 ], [ -119.442042297999961, 49.927000090000064 ], [ -119.442408763999978, 49.926727929000016 ], [ -119.442693688999938, 49.926516323000037 ], [ -119.442704729999903, 49.926522027000047 ], [ -119.443134807999968, 49.926745895000053 ], [ -119.443591403999989, 49.926303799 ], [ -119.443822690999923, 49.925832713000034 ], [ -119.443919619999974, 49.925402404000067 ], [ -119.443949908999926, 49.925259705000038 ], [ -119.443915287999943, 49.924819714000066 ], [ -119.443878014999967, 49.924767795000079 ], [ -119.444237990999937, 49.924744202000078 ], [ -119.44450859199999, 49.924778511000049 ], [ -119.44588959299989, 49.925094296000047 ], [ -119.446044709999939, 49.925085484000121 ], [ -119.446512785999971, 49.924144705000053 ], [ -119.446561220999968, 49.923565095000114 ], [ -119.446464581999948, 49.923459112000089 ], [ -119.445983697999964, 49.923253292000027 ], [ -119.445875975999968, 49.923184680000119 ], [ -119.445666002999985, 49.923050903000053 ], [ -119.445848882999911, 49.922926390000065 ], [ -119.44610439099992, 49.922657314000041 ], [ -119.446132002999903, 49.922582194000015 ], [ -119.44636169799999, 49.921986499000099 ], [ -119.446512886999955, 49.921498891000049 ], [ -119.446681884999975, 49.920979682000066 ], [ -119.446693092999936, 49.920945313000161 ], [ -119.446875681999984, 49.92059960300007 ], [ -119.447134179999978, 49.920280002000041 ], [ -119.448070806999951, 49.919289606000092 ], [ -119.448353893999979, 49.9189932110001 ], [ -119.449510885999985, 49.917441708000091 ], [ -119.449499803999956, 49.917343500000079 ], [ -119.450333310999923, 49.917585341000041 ], [ -119.450183094999943, 49.917863809000096 ], [ -119.449828407, 49.918489568000076 ], [ -119.448303208999931, 49.920955491000058 ], [ -119.448111855999969, 49.921716505000106 ], [ -119.448046123, 49.921977974000079 ], [ -119.447793869999927, 49.922981202000166 ], [ -119.447598394999972, 49.92411761200006 ], [ -119.447587325999962, 49.924214173000074 ], [ -119.44748113699994, 49.924207808000098 ], [ -119.447513903999905, 49.924854568000072 ], [ -119.447497520999974, 49.924997447000052 ], [ -119.44668597399999, 49.925014580000081 ], [ -119.446731097999987, 49.925905513000082 ], [ -119.44738888599997, 49.925944941000068 ], [ -119.44733718499999, 49.926395854000077 ], [ -119.446728021999917, 49.928660698000044 ], [ -119.446416610999947, 49.929420636000096 ], [ -119.446183589999961, 49.930494182000096 ], [ -119.445948298999966, 49.930480077 ], [ -119.445855838999961, 49.931123001000081 ], [ -119.444902146999965, 49.931065829000019 ], [ -119.44491192299995, 49.931258951000061 ], [ -119.4440766699999, 49.931276566000058 ], [ -119.444144879999911, 49.932624460000078 ], [ -119.444562518999959, 49.932615653000049 ], [ -119.444617099999931, 49.933693969000139 ], [ -119.444199451999964, 49.933702776000075 ], [ -119.444254026999957, 49.934781092000058 ], [ -119.443836371, 49.934789898000169 ], [ -119.443880651999947, 49.935664909000074 ], [ -119.443453291999916, 49.936013961000135 ], [ -119.443002419999942, 49.936158989000027 ], [ -119.443019044, 49.935988442000038 ], [ -119.442746831999912, 49.934934583 ], [ -119.442746307999954, 49.934925507000074 ], [ -119.442731581999936, 49.934680815000043 ], [ -119.442729217999954, 49.933141975000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78702500", "BldgCostT": "53750000", "sL_LossRatio": "1", "sL_AssetLoss": "8144", "sL_BldgLoss": "8144", "sL_StrLoss": "8144", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D89262F76DC5DC049392DB2FCF54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442230361999961, 49.922971317000062 ], [ -119.442543126999936, 49.921603946000111 ], [ -119.443269499999943, 49.921677289000073 ], [ -119.44347510599998, 49.920909409000053 ], [ -119.44375261, 49.920389685000018 ], [ -119.443942110999942, 49.92016091000005 ], [ -119.445181812000015, 49.920388706000082 ], [ -119.445417784999947, 49.920381201000055 ], [ -119.445517419999945, 49.920340198000112 ], [ -119.445804902999953, 49.919925786000107 ], [ -119.446795406999954, 49.918901609000059 ], [ -119.448070806999951, 49.919289606000092 ], [ -119.447134179999978, 49.920280002000041 ], [ -119.446875681999984, 49.92059960300007 ], [ -119.446693092999936, 49.920945313000161 ], [ -119.446681884999975, 49.920979682000066 ], [ -119.446512886999955, 49.921498891000049 ], [ -119.44636169799999, 49.921986499000099 ], [ -119.446132002999903, 49.922582194000015 ], [ -119.44610439099992, 49.922657314000041 ], [ -119.445848882999911, 49.922926390000065 ], [ -119.445666002999985, 49.923050903000053 ], [ -119.445485112999904, 49.923171013000072 ], [ -119.444803680999939, 49.923417299000072 ], [ -119.44427858899995, 49.923607475000075 ], [ -119.44422391199997, 49.923627310000036 ], [ -119.444029186999956, 49.923765499000119 ], [ -119.443294411999943, 49.924284889000049 ], [ -119.442981786999965, 49.924193007 ], [ -119.441971798999973, 49.924088175000101 ], [ -119.442078809999956, 49.923625948000044 ], [ -119.442230361999961, 49.922971317000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138952713", "BldgCostT": "93564488", "sL_LossRatio": "0.992367759906349", "sL_AssetLoss": "5778.120114", "sL_BldgLoss": "5734.020114", "sL_StrLoss": "5718.000114", "sL_NStrLoss": "16.02", "sL_ContLoss": "44.1", "geom_point": "0101000020E6100000BBE796A98BDC5DC0C1FE67A490F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442911044999946, 49.920261563000039 ], [ -119.443171984999964, 49.919777641000081 ], [ -119.443218830999911, 49.919733700000045 ], [ -119.443358143999944, 49.919602983000061 ], [ -119.443740997999953, 49.919170757000167 ], [ -119.443897372999928, 49.918994206000093 ], [ -119.444210520999974, 49.918544351000087 ], [ -119.444431357999974, 49.918227072000043 ], [ -119.446028703999971, 49.915937998000096 ], [ -119.446423353999961, 49.916061884000058 ], [ -119.447211766999942, 49.91657871700005 ], [ -119.447374788999966, 49.916660728000039 ], [ -119.448308942999915, 49.916951511000079 ], [ -119.449368710999963, 49.917263391000105 ], [ -119.449499803999956, 49.917343500000079 ], [ -119.449510885999985, 49.917441708000091 ], [ -119.448353893999979, 49.9189932110001 ], [ -119.448070806999951, 49.919289606000092 ], [ -119.446795406999954, 49.918901609000059 ], [ -119.445804902999953, 49.919925786000107 ], [ -119.445517419999945, 49.920340198000112 ], [ -119.445417784999947, 49.920381201000055 ], [ -119.445181812000015, 49.920388706000082 ], [ -119.443942110999942, 49.92016091000005 ], [ -119.44375261, 49.920389685000018 ], [ -119.44347510599998, 49.920909409000053 ], [ -119.443269499999943, 49.921677289000073 ], [ -119.442543126999936, 49.921603946000111 ], [ -119.442673847000023, 49.921040612000134 ], [ -119.442675411999957, 49.921033896000104 ], [ -119.442716084999915, 49.920858498000079 ], [ -119.442911044999946, 49.920261563000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218562666", "BldgCostT": "135876666", "sL_LossRatio": "0.99416515091915", "sL_AssetLoss": "18909.272283", "sL_BldgLoss": "18798.939533", "sL_StrLoss": "18758.034333", "sL_NStrLoss": "40.9052", "sL_ContLoss": "110.33275", "geom_point": "0101000020E61000006565564A2ADC5DC0E3E8F17B9BF54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44021054299999, 49.914443008000042 ], [ -119.440464366999961, 49.91433092800002 ], [ -119.442807351999932, 49.915023265000102 ], [ -119.443485707999955, 49.915215762000066 ], [ -119.44384847299996, 49.915318707000068 ], [ -119.44440932899991, 49.915477246000073 ], [ -119.444951431, 49.915630482000047 ], [ -119.445121349999937, 49.91567850600002 ], [ -119.445240412999951, 49.915712164000119 ], [ -119.445590053000018, 49.915811019000103 ], [ -119.445883989999942, 49.915894086000037 ], [ -119.446028703999971, 49.915937998000096 ], [ -119.444431357999974, 49.918227072000043 ], [ -119.444210520999974, 49.918544351000087 ], [ -119.443897372999928, 49.918994206000093 ], [ -119.443740997999953, 49.919170757000167 ], [ -119.443358143999944, 49.919602983000061 ], [ -119.443218830999911, 49.919733700000045 ], [ -119.443171984999964, 49.919777641000081 ], [ -119.442911044999946, 49.920261563000039 ], [ -119.442716084999915, 49.920858498000079 ], [ -119.442675411999957, 49.921033896000104 ], [ -119.442673847000023, 49.921040612000134 ], [ -119.442543126999936, 49.921603946000111 ], [ -119.442230361999961, 49.922971317000062 ], [ -119.442078809999956, 49.923625948000044 ], [ -119.441971798999973, 49.924088175000101 ], [ -119.441517316999949, 49.924039223000101 ], [ -119.44126920799998, 49.923965637000045 ], [ -119.440896588999934, 49.923785276000025 ], [ -119.439186117999938, 49.922892534000049 ], [ -119.439064195999947, 49.922826484000062 ], [ -119.438937524999957, 49.922764183000062 ], [ -119.438399001999969, 49.922483140000054 ], [ -119.437849862999926, 49.922196971000091 ], [ -119.437489014000036, 49.922008915000042 ], [ -119.437027321999921, 49.921768308 ], [ -119.43531305199997, 49.920875554000048 ], [ -119.434060795000022, 49.92022336600008 ], [ -119.434400300999954, 49.919710968000047 ], [ -119.435310837999907, 49.918581877000101 ], [ -119.435721318999967, 49.918072801000115 ], [ -119.436033552999959, 49.917553089000108 ], [ -119.436483878999965, 49.916803569000074 ], [ -119.436644489999964, 49.916536188000109 ], [ -119.437091412999962, 49.916170183000119 ], [ -119.437334724999971, 49.916046544000068 ], [ -119.437476112999931, 49.915974695000102 ], [ -119.438580044000034, 49.91552551500007 ], [ -119.438916811999974, 49.915388484000061 ], [ -119.439197964999892, 49.915215411000091 ], [ -119.439269590999913, 49.91517131000014 ], [ -119.439588983999911, 49.914900631000044 ], [ -119.439871626999974, 49.914661100000082 ], [ -119.44021054299999, 49.914443008000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140774084", "BldgCostT": "88678334", "sL_LossRatio": "0.991896461623902", "sL_AssetLoss": "12776.871435", "sL_BldgLoss": "12673.333567", "sL_StrLoss": "12632.125347", "sL_NStrLoss": "41.20822", "sL_ContLoss": "103.537868", "geom_point": "0101000020E6100000A029A698E4DB5DC0618F3F074CF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433213216999945, 49.925941857000034 ], [ -119.432084034999917, 49.925370361000034 ], [ -119.431247690999896, 49.924947130000056 ], [ -119.431031221999945, 49.924837598000046 ], [ -119.430765284999936, 49.924702994000079 ], [ -119.430676119999987, 49.924380676000041 ], [ -119.430800006999931, 49.924122670000045 ], [ -119.431180337999976, 49.923861054000064 ], [ -119.431628833999937, 49.923626844000125 ], [ -119.431668813000016, 49.923605955 ], [ -119.433028528999927, 49.923195498000069 ], [ -119.433383318999986, 49.922945900000038 ], [ -119.433411011999951, 49.922914932000054 ], [ -119.433953557999985, 49.922307429000078 ], [ -119.434020776999958, 49.922194980000029 ], [ -119.434032793999975, 49.92217491600006 ], [ -119.434102528999972, 49.921855821000101 ], [ -119.434063402999953, 49.921291670000073 ], [ -119.4340107579999, 49.920531887000038 ], [ -119.434060795000022, 49.92022336600008 ], [ -119.43531305199997, 49.920875554000048 ], [ -119.437027321999921, 49.921768308 ], [ -119.437489014000036, 49.922008915000042 ], [ -119.437849862999926, 49.922196971000091 ], [ -119.438399001999969, 49.922483140000054 ], [ -119.438937524999957, 49.922764183000062 ], [ -119.439064195999947, 49.922826484000062 ], [ -119.439186117999938, 49.922892534000049 ], [ -119.440896588999934, 49.923785276000025 ], [ -119.440482763999938, 49.92414421600008 ], [ -119.439034867999965, 49.925789317000081 ], [ -119.438913502999966, 49.925855205000083 ], [ -119.438622692999957, 49.926136612000064 ], [ -119.438026907, 49.925825395000103 ], [ -119.437445796999924, 49.926287182000038 ], [ -119.437352691999962, 49.926447790000061 ], [ -119.437399992999985, 49.926537275000101 ], [ -119.43776971599999, 49.926757292000076 ], [ -119.437810496999958, 49.926891503000071 ], [ -119.437768907999939, 49.926956788000048 ], [ -119.43683110799995, 49.927739362000089 ], [ -119.43549231199998, 49.92707260100007 ], [ -119.435400938999976, 49.927025479000108 ], [ -119.435399822999955, 49.927024904000078 ], [ -119.435387803999959, 49.927018695000058 ], [ -119.435285201999989, 49.926965727000024 ], [ -119.435282775999951, 49.92696449200011 ], [ -119.434029349999918, 49.926343942000074 ], [ -119.433477044999947, 49.926071466000018 ], [ -119.433213216999945, 49.925941857000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154366947", "BldgCostT": "95240269", "sL_LossRatio": "0.999980710521309", "sL_AssetLoss": "10243.9264", "sL_BldgLoss": "10243.7288", "sL_StrLoss": "10242.3858", "sL_NStrLoss": "1.343", "sL_ContLoss": "0.1976", "geom_point": "0101000020E6100000E3A6EE4636DB5DC0A393F81E26F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.423491732999963, 49.953151344000091 ], [ -119.423998062999956, 49.94964421300002 ], [ -119.423932382999922, 49.949640264000031 ], [ -119.423940501999979, 49.94958401200013 ], [ -119.422532040999954, 49.949499326000122 ], [ -119.422575731999984, 49.949196740000012 ], [ -119.422239452999946, 49.949176519000105 ], [ -119.422376090999975, 49.948230234000057 ], [ -119.417450064999969, 49.947933888000101 ], [ -119.417967458999925, 49.944352979000016 ], [ -119.423515768, 49.944686745000062 ], [ -119.423379163999968, 49.945633037000043 ], [ -119.425070661999911, 49.945734734000098 ], [ -119.425085684999942, 49.945630646000048 ], [ -119.427672786999963, 49.945786138000116 ], [ -119.42783644799999, 49.944651671000017 ], [ -119.425046864, 49.944484006000096 ], [ -119.425563624999953, 49.940903044000059 ], [ -119.42592689599999, 49.940924883000086 ], [ -119.42631626, 49.93822620600011 ], [ -119.425438395999947, 49.938173431000017 ], [ -119.425577933999975, 49.937206346000103 ], [ -119.424960445999943, 49.937169220000015 ], [ -119.425232888999915, 49.935281063000112 ], [ -119.42473986499999, 49.935251417000124 ], [ -119.424810802999943, 49.93475979500009 ], [ -119.422161415999966, 49.934600448000026 ], [ -119.422178308999932, 49.93448342300006 ], [ -119.421319196999946, 49.9344317380001 ], [ -119.421265388000023, 49.934804455000084 ], [ -119.420208218999932, 49.934740845000135 ], [ -119.419893044999981, 49.936923481000058 ], [ -119.419096662999948, 49.936875556000125 ], [ -119.419005738999928, 49.937505100000138 ], [ -119.413458336999952, 49.937171102000072 ], [ -119.41349467400002, 49.936919718000127 ], [ -119.412734592999968, 49.93687393200004 ], [ -119.412760301999953, 49.936828579000043 ], [ -119.412062285, 49.935586107000091 ], [ -119.412281636999978, 49.934068850000102 ], [ -119.412585949999979, 49.933934407000024 ], [ -119.412976397999941, 49.933276376000059 ], [ -119.414808569999977, 49.933386737000063 ], [ -119.414863216999933, 49.933008578000084 ], [ -119.415920336999974, 49.933072240000051 ], [ -119.416134127999925, 49.931592494000036 ], [ -119.416081782999967, 49.931593583000051 ], [ -119.416076238999921, 49.931482753000097 ], [ -119.415938902999983, 49.931474483000088 ], [ -119.41595055199997, 49.931393859000075 ], [ -119.415520256999955, 49.931367946000101 ], [ -119.415476267999949, 49.931672396000096 ], [ -119.415215255999939, 49.931656677000113 ], [ -119.41516907099999, 49.931976302000031 ], [ -119.414884867999916, 49.931959186000057 ], [ -119.414825877999959, 49.932367409000094 ], [ -119.413428452999966, 49.932283236000039 ], [ -119.413472322999951, 49.932183240000064 ], [ -119.413813010999931, 49.931406697000057 ], [ -119.41385721499999, 49.931359879000127 ], [ -119.41395659599999, 49.931254590000115 ], [ -119.414184007999935, 49.931132785000024 ], [ -119.414641692999979, 49.931034009000015 ], [ -119.414630497999894, 49.930753409000026 ], [ -119.414818498, 49.930589917000134 ], [ -119.41490730699995, 49.930512686000021 ], [ -119.415297316999968, 49.930279951000088 ], [ -119.416000600999908, 49.929860238000053 ], [ -119.416295581000028, 49.929684204000068 ], [ -119.416338141999958, 49.929637675000066 ], [ -119.416495018999953, 49.929466 ], [ -119.416637526999963, 49.929254678000092 ], [ -119.417073036999952, 49.928608901000132 ], [ -119.417539693999942, 49.927916900000113 ], [ -119.417602618000032, 49.927687102000114 ], [ -119.4176077799999, 49.927668208000071 ], [ -119.417563199999961, 49.927415408000066 ], [ -119.416985440999895, 49.926292193000087 ], [ -119.416914611999957, 49.926154497000027 ], [ -119.416801186999948, 49.925767500000077 ], [ -119.416924684999984, 49.925377596000054 ], [ -119.417252090999966, 49.925028002000047 ], [ -119.418076222999957, 49.924444599000026 ], [ -119.419859886, 49.923742793000109 ], [ -119.419717903999953, 49.923438107000074 ], [ -119.419623036999937, 49.923059487000138 ], [ -119.419492514999916, 49.922538610000053 ], [ -119.419472013999965, 49.921441108000046 ], [ -119.419495615999921, 49.920918801000056 ], [ -119.419545311999954, 49.920644415000055 ], [ -119.419579636999956, 49.920454992000046 ], [ -119.419677580999931, 49.919914523000081 ], [ -119.41984806399995, 49.918973566000041 ], [ -119.419853307, 49.918944594000017 ], [ -119.419895793999899, 49.918609798 ], [ -119.41995508799999, 49.918142496000051 ], [ -119.419971206999946, 49.917349025000121 ], [ -119.419974114999974, 49.917207181000059 ], [ -119.419960668999948, 49.916836549000031 ], [ -119.419933282, 49.916081634000108 ], [ -119.41992719299995, 49.915913907000039 ], [ -119.41997216399993, 49.915672117000057 ], [ -119.420021221999932, 49.915408404000111 ], [ -119.420158190999985, 49.915136698 ], [ -119.420334699999913, 49.914902456000014 ], [ -119.420365795999928, 49.914861193000029 ], [ -119.421338457999951, 49.913770891000041 ], [ -119.422495796999897, 49.912473501000072 ], [ -119.422685907999949, 49.912328707000036 ], [ -119.423080503999969, 49.912180884000101 ], [ -119.424886398999988, 49.913493315000046 ], [ -119.425093389999958, 49.913706199000075 ], [ -119.425202192999933, 49.913969206000068 ], [ -119.42524360499999, 49.914225503000075 ], [ -119.425225987999951, 49.915578990000043 ], [ -119.425296569999958, 49.915961593000056 ], [ -119.426026405999934, 49.917126196 ], [ -119.426347897999932, 49.917572596000049 ], [ -119.426533174999946, 49.917761700000021 ], [ -119.426776009999969, 49.917919894000093 ], [ -119.427091177999927, 49.91806159700009 ], [ -119.428193976, 49.918443092000061 ], [ -119.428600875999933, 49.918549692000056 ], [ -119.428987253999949, 49.91857561100003 ], [ -119.428944281, 49.918873733000048 ], [ -119.43188857799997, 49.919050695000088 ], [ -119.432745466999918, 49.919513304000098 ], [ -119.433827776999962, 49.920097604000013 ], [ -119.434060795000022, 49.92022336600008 ], [ -119.4340107579999, 49.920531887000038 ], [ -119.434063402999953, 49.921291670000073 ], [ -119.434102528999972, 49.921855821000101 ], [ -119.434032793999975, 49.92217491600006 ], [ -119.434020776999958, 49.922194980000029 ], [ -119.433953557999985, 49.922307429000078 ], [ -119.433411011999951, 49.922914932000054 ], [ -119.433383318999986, 49.922945900000038 ], [ -119.433028528999927, 49.923195498000069 ], [ -119.431668813000016, 49.923605955 ], [ -119.431628833999937, 49.923626844000125 ], [ -119.431180337999976, 49.923861054000064 ], [ -119.430800006999931, 49.924122670000045 ], [ -119.430676119999987, 49.924380676000041 ], [ -119.430765284999936, 49.924702994000079 ], [ -119.431031221999945, 49.924837598000046 ], [ -119.431247690999896, 49.924947130000056 ], [ -119.432084034999917, 49.925370361000034 ], [ -119.433213216999945, 49.925941857000034 ], [ -119.433477044999947, 49.926071466000018 ], [ -119.434029349999918, 49.926343942000074 ], [ -119.435282775999951, 49.92696449200011 ], [ -119.435285201999989, 49.926965727000024 ], [ -119.435387803999959, 49.927018695000058 ], [ -119.435399822999955, 49.927024904000078 ], [ -119.435400938999976, 49.927025479000108 ], [ -119.43549231199998, 49.92707260100007 ], [ -119.43683110799995, 49.927739362000089 ], [ -119.436841859999959, 49.927745153000068 ], [ -119.43715953899999, 49.927914912000091 ], [ -119.437832379999975, 49.928274475000066 ], [ -119.437533200999951, 49.928519204000054 ], [ -119.436800542999933, 49.929118455000037 ], [ -119.436356409999973, 49.929481697000057 ], [ -119.436099174, 49.929761749000107 ], [ -119.435888714, 49.92999092800008 ], [ -119.435686247999982, 49.930279441000081 ], [ -119.43551410099991, 49.930522849000035 ], [ -119.435197426999963, 49.93126185200007 ], [ -119.435113820999931, 49.931456911000062 ], [ -119.434694763, 49.93265562400012 ], [ -119.434330335999945, 49.933698067000073 ], [ -119.434268803999927, 49.93387409000011 ], [ -119.43414237799999, 49.934235689000033 ], [ -119.43393607499999, 49.934825741000033 ], [ -119.433890397999946, 49.934957716000099 ], [ -119.433757325999963, 49.935342091000052 ], [ -119.433748110999971, 49.935368646 ], [ -119.433663018999979, 49.935614506000043 ], [ -119.433626044999954, 49.935721300000083 ], [ -119.43329968099998, 49.936663887000122 ], [ -119.433133896999948, 49.937142674000057 ], [ -119.432940088999914, 49.937702318000056 ], [ -119.432648373999939, 49.938544794000094 ], [ -119.432565384999975, 49.938784401000134 ], [ -119.432205432000032, 49.939636629000113 ], [ -119.4321576899999, 49.939749591000052 ], [ -119.43117983799999, 49.941244009000037 ], [ -119.430456751999969, 49.942299724000101 ], [ -119.430391322999952, 49.942395214000079 ], [ -119.430172194999955, 49.942715203000027 ], [ -119.429816944999928, 49.943233818000088 ], [ -119.429232145999919, 49.944087511000063 ], [ -119.428158808999953, 49.945654394000059 ], [ -119.427916868999901, 49.946007568000041 ], [ -119.427319817999944, 49.94687909400006 ], [ -119.426685321999969, 49.94780519200004 ], [ -119.426595662999958, 49.947955201000077 ], [ -119.426454840999924, 49.948190840000109 ], [ -119.426436309999943, 49.948221849000042 ], [ -119.42630581799996, 49.948689873000035 ], [ -119.426284308999939, 49.949100540000074 ], [ -119.426199651999951, 49.95071524700009 ], [ -119.425917416999965, 49.951569074000105 ], [ -119.425357279999972, 49.953263482000082 ], [ -119.423491732999963, 49.953151344000091 ] ], [ [ -119.427904918999943, 49.921034023000111 ], [ -119.428064720999942, 49.919925636000052 ], [ -119.42650744, 49.919831995000031 ], [ -119.42634760199995, 49.92094038100003 ], [ -119.427904918999943, 49.921034023000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38429500", "BldgCostT": "23350000", "sL_LossRatio": "0.99996666036714", "sL_AssetLoss": "3266.3827", "sL_BldgLoss": "3266.2738", "sL_StrLoss": "3265.8129", "sL_NStrLoss": "0.4609", "sL_ContLoss": "0.1089", "geom_point": "0101000020E610000071E5E42CC9DA5DC04E35D4A46BFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.421317519999945, 49.963455218000107 ], [ -119.421410284, 49.962813098000062 ], [ -119.421286612999936, 49.962805662000086 ], [ -119.421310014999975, 49.962643672000091 ], [ -119.419581269999952, 49.962539716000052 ], [ -119.4196963799999, 49.96174309900006 ], [ -119.417593431999961, 49.961786969000087 ], [ -119.417579924999956, 49.961517385000043 ], [ -119.416326235999989, 49.961543521000053 ], [ -119.416312734999977, 49.961273937000037 ], [ -119.415894840999925, 49.961282647000068 ], [ -119.415773362999971, 49.958856396000087 ], [ -119.414576307999965, 49.958881333000072 ], [ -119.414292881999955, 49.957962720000083 ], [ -119.414137284999981, 49.95701192700006 ], [ -119.414124353999938, 49.956085865000041 ], [ -119.41373659599999, 49.954323676000058 ], [ -119.413115763999926, 49.953514448000078 ], [ -119.413414331999931, 49.953508233000051 ], [ -119.413279532, 49.950812391000127 ], [ -119.413697336000027, 49.950803693000047 ], [ -119.413683854999974, 49.950534108000113 ], [ -119.414937259999974, 49.950508006000064 ], [ -119.41492377199998, 49.950238422000105 ], [ -119.416177167999976, 49.950212306000068 ], [ -119.416163672999943, 49.949942723000099 ], [ -119.41825265199995, 49.94989916600008 ], [ -119.418266156999934, 49.950168750000017 ], [ -119.419937345999955, 49.950133877000084 ], [ -119.419950860999947, 49.9504034610001 ], [ -119.420368658999976, 49.950394739000053 ], [ -119.420409216999971, 49.951203488000047 ], [ -119.41999141, 49.951212209000033 ], [ -119.420004926999951, 49.951481792 ], [ -119.42084054299994, 49.951464346000087 ], [ -119.420921674999988, 49.953081842000081 ], [ -119.420503853999932, 49.953090568000022 ], [ -119.420584978999969, 49.954708063000098 ], [ -119.42183848699996, 49.954681885000106 ], [ -119.421865542999939, 49.955221049000031 ], [ -119.423119062999888, 49.955194857000052 ], [ -119.423237086999933, 49.957545270000054 ], [ -119.423301943999959, 49.957549169000089 ], [ -119.423304426999934, 49.957579098000075 ], [ -119.423317639999979, 49.957737969000043 ], [ -119.423505364999968, 49.958783187000023 ], [ -119.423585687999932, 49.959244934000019 ], [ -119.423580538999914, 49.960435400000051 ], [ -119.423573512999937, 49.962052501000116 ], [ -119.423771008999935, 49.96262330600009 ], [ -119.42399951, 49.962950692000042 ], [ -119.422963144000036, 49.963085858000063 ], [ -119.421317519999945, 49.963455218000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "375279083", "BldgCostT": "249698333", "sL_LossRatio": "0.99780346042923", "sL_AssetLoss": "33143.040521", "sL_BldgLoss": "33070.240521", "sL_StrLoss": "33044.000521", "sL_NStrLoss": "26.24", "sL_ContLoss": "72.8", "geom_point": "0101000020E6100000732FA337E0DB5DC0815BF3BA30F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.432794851999944, 49.917644876000026 ], [ -119.433001987999958, 49.91620697000009 ], [ -119.431767566, 49.916132795000124 ], [ -119.431679738999975, 49.916742364000051 ], [ -119.43122880599995, 49.9167152650001 ], [ -119.43111825699998, 49.917482476000046 ], [ -119.429161771999972, 49.917364875000025 ], [ -119.428987253999949, 49.91857561100003 ], [ -119.428600875999933, 49.918549692000056 ], [ -119.428193976, 49.918443092000061 ], [ -119.427091177999927, 49.91806159700009 ], [ -119.426776009999969, 49.917919894000093 ], [ -119.426533174999946, 49.917761700000021 ], [ -119.426347897999932, 49.917572596000049 ], [ -119.426026405999934, 49.917126196 ], [ -119.425296569999958, 49.915961593000056 ], [ -119.425225987999951, 49.915578990000043 ], [ -119.42524360499999, 49.914225503000075 ], [ -119.425202192999933, 49.913969206000068 ], [ -119.425093389999958, 49.913706199000075 ], [ -119.424886398999988, 49.913493315000046 ], [ -119.423080503999969, 49.912180884000101 ], [ -119.428939203999974, 49.90936359500008 ], [ -119.42840619899998, 49.909375815000047 ], [ -119.427917594999911, 49.909341908000044 ], [ -119.427782490999974, 49.909307949000031 ], [ -119.427681516999968, 49.90928259400004 ], [ -119.427556285999955, 49.909222822000068 ], [ -119.427466998999961, 49.909180202000108 ], [ -119.427293793, 49.90907242500009 ], [ -119.427071798999933, 49.908934296000098 ], [ -119.42690672899991, 49.908789808000094 ], [ -119.426776220999898, 49.908628493000073 ], [ -119.426721034999957, 49.908527574000097 ], [ -119.426491884999976, 49.9081084050001 ], [ -119.4262533199999, 49.907872788000063 ], [ -119.426014379999913, 49.907713566000091 ], [ -119.425898720999953, 49.907636508000053 ], [ -119.426013811999951, 49.907511529000033 ], [ -119.426140699999934, 49.907373794000073 ], [ -119.42619559900001, 49.907262764000073 ], [ -119.426276788999957, 49.907098496000032 ], [ -119.426254482999951, 49.906817186000069 ], [ -119.426133820999922, 49.906684398000067 ], [ -119.425541678999934, 49.906340796000052 ], [ -119.42507979, 49.905879614000064 ], [ -119.425001714999922, 49.905713203000083 ], [ -119.42497850599996, 49.905534803000158 ], [ -119.425017593999954, 49.905360196000061 ], [ -119.425257891999976, 49.904857188000044 ], [ -119.425768101999921, 49.904111289000156 ], [ -119.42583481699999, 49.903648409000056 ], [ -119.425876504999934, 49.903359201000072 ], [ -119.425895495999953, 49.903246603000092 ], [ -119.42566558499999, 49.902737001000105 ], [ -119.425641531999972, 49.902645216000153 ], [ -119.425485306999974, 49.902048791000055 ], [ -119.425314377999911, 49.901799200000077 ], [ -119.425133103999926, 49.90167998500003 ], [ -119.424914596999926, 49.901576494000075 ], [ -119.425532012999938, 49.901026694000024 ], [ -119.426035758, 49.899999950000073 ], [ -119.426100110999982, 49.89986880000005 ], [ -119.426292053999987, 49.899080538000128 ], [ -119.426398066999965, 49.898645054000028 ], [ -119.426760083999966, 49.898702954000086 ], [ -119.427031075999963, 49.898791461000044 ], [ -119.427300490000036, 49.898929571000089 ], [ -119.427533902999954, 49.899114279000074 ], [ -119.428037091999983, 49.89968639300006 ], [ -119.428260978999944, 49.899858897000051 ], [ -119.428533590999962, 49.90000440000005 ], [ -119.428546432999923, 49.900008457000077 ], [ -119.428827169999977, 49.900097290000083 ], [ -119.428854387999962, 49.900105883000016 ], [ -119.429134610999967, 49.900149798 ], [ -119.429460875999922, 49.900145902000069 ], [ -119.429756492999928, 49.90010228800007 ], [ -119.430034950999982, 49.900013049000066 ], [ -119.430067196999957, 49.900002702000037 ], [ -119.430375376999933, 49.89980359000004 ], [ -119.430914, 49.899276113000084 ], [ -119.431157300999985, 49.899130011000082 ], [ -119.43148260199996, 49.899035713000067 ], [ -119.431876984999988, 49.899014285000078 ], [ -119.432763118999929, 49.899238203000039 ], [ -119.433172200999934, 49.899318795000056 ], [ -119.433889425999936, 49.899356499000085 ], [ -119.434342382999944, 49.899316903000077 ], [ -119.434700690999946, 49.899225591000047 ], [ -119.436028211999968, 49.898703911000027 ], [ -119.436439307999947, 49.898508197000098 ], [ -119.436740901999954, 49.89828710900008 ], [ -119.436918882999947, 49.898089198000058 ], [ -119.437689323999948, 49.896989506000168 ], [ -119.437937400999886, 49.89675149300011 ], [ -119.438076488999982, 49.896660946000075 ], [ -119.439023002999974, 49.896044609000114 ], [ -119.439554399999935, 49.895751386000079 ], [ -119.440172699999948, 49.895547057000023 ], [ -119.440421607999951, 49.89546479400007 ], [ -119.441271221999955, 49.895281097000129 ], [ -119.441593819999966, 49.895253508000053 ], [ -119.441867375999934, 49.895265405000018 ], [ -119.442257602999987, 49.895370108000115 ], [ -119.442501004999926, 49.895475887 ], [ -119.44268320599997, 49.895617802000089 ], [ -119.44282409000003, 49.895785196000055 ], [ -119.442914208, 49.895984698000085 ], [ -119.442914436999942, 49.896034162000085 ], [ -119.442915301999946, 49.896200596000057 ], [ -119.44288609499992, 49.89628064900009 ], [ -119.442839201999931, 49.896409217000091 ], [ -119.442378324999979, 49.897038903000102 ], [ -119.442250882999957, 49.89732209300012 ], [ -119.442222611999924, 49.897635501000082 ], [ -119.442262813999932, 49.897833089000123 ], [ -119.442392145999918, 49.898467778000089 ], [ -119.442457533, 49.898788857000092 ], [ -119.442480705, 49.898902610000064 ], [ -119.44266659699997, 49.899378891000048 ], [ -119.442926841999963, 49.899733985000061 ], [ -119.442973910999939, 49.899798188000034 ], [ -119.443189216999926, 49.900012835000041 ], [ -119.443316204999988, 49.900139402000029 ], [ -119.44372460799994, 49.900429406000036 ], [ -119.444204987999925, 49.900684907000048 ], [ -119.444425103999961, 49.900768572000089 ], [ -119.444678150999962, 49.900864743000071 ], [ -119.444867706999915, 49.90093681100015 ], [ -119.446034702999981, 49.901287692000032 ], [ -119.446711879999938, 49.90140960900009 ], [ -119.447419285999956, 49.901447496000074 ], [ -119.448125894000015, 49.901413104000071 ], [ -119.4497391, 49.901139596000057 ], [ -119.45003608899998, 49.901114906000046 ], [ -119.450723492999899, 49.901125121000078 ], [ -119.450896717999925, 49.901127703000093 ], [ -119.450848325999985, 49.901386710000025 ], [ -119.450654128999986, 49.901668509000032 ], [ -119.450320218999963, 49.901959199000039 ], [ -119.449480875999953, 49.90249973100002 ], [ -119.449391496999965, 49.902557308000077 ], [ -119.44873626299993, 49.902885520000076 ], [ -119.448353812999983, 49.903090619000103 ], [ -119.44803204199999, 49.903263197000058 ], [ -119.447682828999945, 49.90362153300002 ], [ -119.447240105999953, 49.904231623000051 ], [ -119.447110341999974, 49.904687085000063 ], [ -119.447139191999938, 49.905069894000121 ], [ -119.447244193999907, 49.905360653000074 ], [ -119.447592171999958, 49.905954939000011 ], [ -119.447689009999962, 49.906234366 ], [ -119.447706070999914, 49.906553243000126 ], [ -119.447571963999934, 49.906951551000134 ], [ -119.447358260999962, 49.907265468000098 ], [ -119.447093517999946, 49.907654322000063 ], [ -119.44660017699999, 49.908402785000085 ], [ -119.4465357939999, 49.908500401000047 ], [ -119.446189815999901, 49.909030510000044 ], [ -119.445891885999984, 49.909332307000057 ], [ -119.44556094799999, 49.909613835000087 ], [ -119.445434768999974, 49.90972115100007 ], [ -119.444982493999973, 49.910105902000097 ], [ -119.444714768, 49.910409910000062 ], [ -119.444564808999985, 49.910580203000023 ], [ -119.444117385999945, 49.911241400000058 ], [ -119.444073456999959, 49.911350935000044 ], [ -119.443816716999919, 49.911990997000053 ], [ -119.44363446899996, 49.912307875000081 ], [ -119.443352417, 49.912798398000056 ], [ -119.443170983999948, 49.912990704000059 ], [ -119.442870799000019, 49.913221010000029 ], [ -119.44230480199991, 49.913521200000041 ], [ -119.440679333999952, 49.914236312000121 ], [ -119.440464366999961, 49.91433092800002 ], [ -119.44021054299999, 49.914443008000042 ], [ -119.439871626999974, 49.914661100000082 ], [ -119.439588983999911, 49.914900631000044 ], [ -119.439269590999913, 49.91517131000014 ], [ -119.439197964999892, 49.915215411000091 ], [ -119.438916811999974, 49.915388484000061 ], [ -119.438580044000034, 49.91552551500007 ], [ -119.437476112999931, 49.915974695000102 ], [ -119.437334724999971, 49.916046544000068 ], [ -119.437091412999962, 49.916170183000119 ], [ -119.436644489999964, 49.916536188000109 ], [ -119.436483878999965, 49.916803569000074 ], [ -119.436033552999959, 49.917553089000108 ], [ -119.435721318999967, 49.918072801000115 ], [ -119.435310837999907, 49.918581877000101 ], [ -119.434400300999954, 49.919710968000047 ], [ -119.434060795000022, 49.92022336600008 ], [ -119.433827776999962, 49.920097604000013 ], [ -119.432745466999918, 49.919513304000098 ], [ -119.43188857799997, 49.919050695000088 ], [ -119.432021746999936, 49.919058696000022 ], [ -119.432172301999941, 49.918013736 ], [ -119.432288487, 49.918020716000093 ], [ -119.432346514999935, 49.917617938000078 ], [ -119.432794851999944, 49.917644876000026 ] ], [ [ -119.434778092999963, 49.911421707000038 ], [ -119.43485633399996, 49.910878339000128 ], [ -119.431779642999956, 49.910693467000094 ], [ -119.432160605999954, 49.908048797000021 ], [ -119.430785267999923, 49.908077649000099 ], [ -119.43077171, 49.907808066 ], [ -119.430354281999968, 49.907816820000029 ], [ -119.430340729999941, 49.907547238000127 ], [ -119.429923302999939, 49.90755599000012 ], [ -119.429896200999934, 49.907016824000024 ], [ -119.429478780999958, 49.907025575000063 ], [ -119.429411040999938, 49.905677659000091 ], [ -119.428993632999934, 49.905686407000054 ], [ -119.428966541999955, 49.905147241000044 ], [ -119.427296920999979, 49.905182220000057 ], [ -119.427283383999921, 49.904912637000116 ], [ -119.426448577999963, 49.904930117000042 ], [ -119.426462107999967, 49.905199701000129 ], [ -119.426044701999928, 49.905208439000049 ], [ -119.426071757999978, 49.90574760700008 ], [ -119.426906580999969, 49.905730129000105 ], [ -119.426941045999953, 49.906416653000079 ], [ -119.427670784999947, 49.906460546000119 ], [ -119.427661650999966, 49.906523917000129 ], [ -119.427782017999959, 49.906521396000095 ], [ -119.42779555599995, 49.906790979000071 ], [ -119.428212975999926, 49.90678223400009 ], [ -119.428240057000011, 49.907321402000051 ], [ -119.428657483, 49.90731265400008 ], [ -119.428710788999979, 49.90837364300009 ], [ -119.429907336999989, 49.90844558900006 ], [ -119.42980183799996, 49.909177739000022 ], [ -119.430004613999969, 49.909173488000043 ], [ -119.43004527299999, 49.90998223600014 ], [ -119.429684821999956, 49.909989793000079 ], [ -119.429575746999959, 49.910746716000084 ], [ -119.430164081999934, 49.91078208600014 ], [ -119.430131648999946, 49.911007167000108 ], [ -119.432456824999946, 49.911146924000072 ], [ -119.432404595999927, 49.911509511000048 ], [ -119.43324612, 49.911560079000054 ], [ -119.433279020999919, 49.911331643000075 ], [ -119.434778092999963, 49.911421707000038 ] ], [ [ -119.437281474999949, 49.904314902000124 ], [ -119.437355375999985, 49.905780728000146 ], [ -119.436937968999985, 49.905789505000037 ], [ -119.436951557999947, 49.906059087000045 ], [ -119.43653414799995, 49.906067863000061 ], [ -119.436561322, 49.906607027000078 ], [ -119.436143906999945, 49.906615801000029 ], [ -119.436157492999911, 49.906885383 ], [ -119.435740074999941, 49.906894156000128 ], [ -119.435753657999925, 49.907163738000065 ], [ -119.435336236999959, 49.907172510000045 ], [ -119.435342428999931, 49.907295394000073 ], [ -119.437839387999986, 49.907445367000015 ], [ -119.43762416599999, 49.908940818000048 ], [ -119.437867294999947, 49.908955418000055 ], [ -119.438027208999927, 49.907844242000074 ], [ -119.443337012999962, 49.90816295700008 ], [ -119.443344482999962, 49.908111014000092 ], [ -119.440983451999969, 49.907969328000064 ], [ -119.441107878999944, 49.907104308000079 ], [ -119.44079160199999, 49.907085324000036 ], [ -119.440990261999971, 49.905704228000047 ], [ -119.44069463299995, 49.905710454000015 ], [ -119.440708242999904, 49.905980035000056 ], [ -119.439950379999956, 49.905995993000026 ], [ -119.43932244799997, 49.906009211000018 ], [ -119.438621197999908, 49.906023968000078 ], [ -119.438539607999971, 49.904406479000059 ], [ -119.43895700399996, 49.904397697000043 ], [ -119.438932300999937, 49.903908022000074 ], [ -119.438902604999953, 49.903319371000165 ], [ -119.438485220999937, 49.903328153000118 ], [ -119.438458026999939, 49.902788991000094 ], [ -119.437205879999951, 49.902815329000092 ], [ -119.437165111999917, 49.902006584000084 ], [ -119.436747735999958, 49.902015360000085 ], [ -119.436734150999925, 49.901745778000077 ], [ -119.436717241999986, 49.901746134000106 ], [ -119.436691041999936, 49.90192818900006 ], [ -119.432552662999967, 49.901679520000108 ], [ -119.432560407999944, 49.901833457000109 ], [ -119.432143031999914, 49.901842217000137 ], [ -119.432156592999974, 49.902111800000078 ], [ -119.431739215999926, 49.902120558000036 ], [ -119.43176633299997, 49.902659723000106 ], [ -119.431348949999943, 49.90266848000006 ], [ -119.431403178999972, 49.903746813000062 ], [ -119.43307274499999, 49.903711775000069 ], [ -119.433086313, 49.903981357000099 ], [ -119.434338492, 49.903955062000087 ], [ -119.434324918999948, 49.903685480000064 ], [ -119.43682925899995, 49.903632851000033 ], [ -119.436842848999973, 49.903902433000084 ], [ -119.437260239999958, 49.903893657000012 ], [ -119.437281474999949, 49.904314902000124 ] ], [ [ -119.443021969999975, 49.902153139000092 ], [ -119.443049214, 49.90269230100013 ], [ -119.442631832999965, 49.902701098000186 ], [ -119.442659072999945, 49.903240260000111 ], [ -119.442241688999928, 49.903249055000096 ], [ -119.442257456, 49.903561170000138 ], [ -119.442996157999914, 49.903605501000108 ], [ -119.443212211999978, 49.903618466000047 ], [ -119.443218082, 49.903577652000067 ], [ -119.44332836, 49.902810650000049 ], [ -119.446683729999961, 49.903011943000095 ], [ -119.446818648999937, 49.902073044000069 ], [ -119.446778334999976, 49.902073895000107 ], [ -119.446764692999963, 49.901804315000042 ], [ -119.445512579999956, 49.901830743000076 ], [ -119.445498943999965, 49.901561164000064 ], [ -119.44466420599997, 49.90157877400005 ], [ -119.444650575999944, 49.901309194000127 ], [ -119.443815842000021, 49.901326798000106 ], [ -119.443802216999984, 49.901057218000055 ], [ -119.443384850999976, 49.901066019000076 ], [ -119.443439343999955, 49.902144340000035 ], [ -119.443021969999975, 49.902153139000092 ] ], [ [ -119.441715386999959, 49.90110120300006 ], [ -119.441674547000019, 49.900292460000045 ], [ -119.441257186999906, 49.900301252000062 ], [ -119.441175525999938, 49.898683766000097 ], [ -119.441592872999962, 49.898674974000087 ], [ -119.44151120399998, 49.89705748700009 ], [ -119.441093872999943, 49.897066278000089 ], [ -119.441107481999978, 49.897335860000069 ], [ -119.440690146999927, 49.897344650000079 ], [ -119.440717359999923, 49.89788381200011 ], [ -119.44030002199996, 49.897892600000048 ], [ -119.440313625999948, 49.89816218200005 ], [ -119.439896284, 49.898170969000041 ], [ -119.43996429799995, 49.899518877000077 ], [ -119.43954694599995, 49.899527662000089 ], [ -119.439574146999988, 49.900066825000124 ], [ -119.438322072999966, 49.900093175000052 ], [ -119.438335666999976, 49.900362756000035 ], [ -119.438753028999926, 49.900353975000058 ], [ -119.438766623999982, 49.900623556000035 ], [ -119.439601348999943, 49.900605988000045 ], [ -119.439614951999914, 49.900875569000085 ], [ -119.441284408999934, 49.900840415000069 ], [ -119.441298021999941, 49.901109995000056 ], [ -119.441715386999959, 49.90110120300006 ] ], [ [ -119.441071202999979, 49.904892921000062 ], [ -119.441080492, 49.905076915000095 ], [ -119.441107065999972, 49.904892166000117 ], [ -119.441071202999979, 49.904892921000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109763834", "BldgCostT": "73753334", "sL_LossRatio": "0.999999033702643", "sL_AssetLoss": "10679.94228", "sL_BldgLoss": "10679.93196", "sL_StrLoss": "10679.80386", "sL_NStrLoss": "0.1281", "sL_ContLoss": "0.01032", "geom_point": "0101000020E610000001ACA7B909DD5DC08DEB4A911DF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.450542684999959, 49.909432363000036 ], [ -119.45063752499999, 49.909292028 ], [ -119.450928767, 49.908860831000034 ], [ -119.451362827999972, 49.908218336000097 ], [ -119.451533786999974, 49.907965246000082 ], [ -119.451717630999937, 49.907693078000072 ], [ -119.452046483999965, 49.907206227000081 ], [ -119.452248394999913, 49.90681199400008 ], [ -119.452675412999952, 49.905978180000083 ], [ -119.452712780999974, 49.90590516400011 ], [ -119.453231172999935, 49.904309883000046 ], [ -119.454179939999975, 49.904448902000063 ], [ -119.454592781999935, 49.904572055000109 ], [ -119.454306494999955, 49.904930582000105 ], [ -119.454449743999959, 49.90498431100005 ], [ -119.454790829999922, 49.904643507000095 ], [ -119.45511497699998, 49.904799241000028 ], [ -119.45581734299995, 49.905136657000121 ], [ -119.456037705999961, 49.905286196000048 ], [ -119.456221090999989, 49.905469663000098 ], [ -119.456437065999978, 49.905834780000099 ], [ -119.456473707999947, 49.90626138699999 ], [ -119.456451859999916, 49.906325984000091 ], [ -119.456394658999955, 49.90650049200007 ], [ -119.456138861999975, 49.906975377000023 ], [ -119.456059020999973, 49.90712353600005 ], [ -119.455874391999927, 49.907466205000048 ], [ -119.455097906, 49.908328169000072 ], [ -119.454615798999924, 49.908570201000096 ], [ -119.453572383999969, 49.909090128000059 ], [ -119.45329067199999, 49.9092312780001 ], [ -119.453097049999926, 49.909430988000118 ], [ -119.452976207999939, 49.909554193000119 ], [ -119.452782577999969, 49.909751688000057 ], [ -119.452528, 49.909889039000113 ], [ -119.452023208999961, 49.910074630000103 ], [ -119.452016341999936, 49.910066771000103 ], [ -119.451879122999969, 49.909909766000027 ], [ -119.451571875999932, 49.909732424000048 ], [ -119.451116135999939, 49.909599547000035 ], [ -119.450542684999959, 49.909432363000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "262594560", "BldgCostT": "173388189", "sL_LossRatio": "0.998940776392322", "sL_AssetLoss": "21525.2", "sL_BldgLoss": "21502.4", "sL_StrLoss": "21494.1", "sL_NStrLoss": "8.3", "sL_ContLoss": "22.8", "geom_point": "0101000020E6100000B60D92F41FDD5DC056A69883A0F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.449762982999943, 49.910583235000104 ], [ -119.450256177999947, 49.909855266000122 ], [ -119.450408938999928, 49.909629836000086 ], [ -119.450542684999959, 49.909432363000036 ], [ -119.451116135999939, 49.909599547000035 ], [ -119.451571875999932, 49.909732424000048 ], [ -119.451879122999969, 49.909909766000027 ], [ -119.452016341999936, 49.910066771000103 ], [ -119.452023208999961, 49.910074630000103 ], [ -119.452528, 49.909889039000113 ], [ -119.452782577999969, 49.909751688000057 ], [ -119.452976207999939, 49.909554193000119 ], [ -119.453097049999926, 49.909430988000118 ], [ -119.45329067199999, 49.9092312780001 ], [ -119.453572383999969, 49.909090128000059 ], [ -119.454615798999924, 49.908570201000096 ], [ -119.455097906, 49.908328169000072 ], [ -119.455874391999927, 49.907466205000048 ], [ -119.456059020999973, 49.90712353600005 ], [ -119.456138861999975, 49.906975377000023 ], [ -119.456394658999955, 49.90650049200007 ], [ -119.456451859999916, 49.906325984000091 ], [ -119.457251104999926, 49.906357603000124 ], [ -119.457673203999946, 49.906377398000089 ], [ -119.458324008999966, 49.906528410000099 ], [ -119.4587288099999, 49.906697991000094 ], [ -119.458936490999974, 49.906828713000024 ], [ -119.459056224999955, 49.906954867000138 ], [ -119.45947080499991, 49.907391699000094 ], [ -119.459856496999976, 49.907655912000017 ], [ -119.461035206999938, 49.908180589000082 ], [ -119.461376877999953, 49.908293210000032 ], [ -119.46181419399997, 49.908353606000077 ], [ -119.462479403999936, 49.908394307000037 ], [ -119.462538317999986, 49.90808658300012 ], [ -119.462607403000021, 49.907725592000077 ], [ -119.462826914999965, 49.907335100000083 ], [ -119.46314118399999, 49.907025198000049 ], [ -119.46348069599999, 49.906801684000143 ], [ -119.463789187999964, 49.906648611000065 ], [ -119.464142277999883, 49.906526195000048 ], [ -119.465608221999958, 49.906197544000037 ], [ -119.465866617999978, 49.906638324000092 ], [ -119.465989798999928, 49.907094058000055 ], [ -119.466019217999985, 49.907202806000065 ], [ -119.466112869999932, 49.907699593000068 ], [ -119.466100258999973, 49.909523796000045 ], [ -119.466196938999957, 49.909795995000088 ], [ -119.464663243999937, 49.909767491000132 ], [ -119.463475768999899, 49.909661682000035 ], [ -119.463276010999962, 49.909643897000116 ], [ -119.45965702499997, 49.910473577000111 ], [ -119.459123131999931, 49.910441624000015 ], [ -119.459199258999931, 49.909910943000078 ], [ -119.458091606999943, 49.909844643000021 ], [ -119.457939242999885, 49.910906577000027 ], [ -119.455877061999928, 49.910783113000065 ], [ -119.45576668699999, 49.911552125000128 ], [ -119.45543258399999, 49.911532119000071 ], [ -119.455345272999978, 49.912140384000068 ], [ -119.45445614199997, 49.912486291000086 ], [ -119.454443138999949, 49.912491344000031 ], [ -119.450333310999923, 49.917585341000041 ], [ -119.449499803999956, 49.917343500000079 ], [ -119.449368710999963, 49.917263391000105 ], [ -119.448308942999915, 49.916951511000079 ], [ -119.447374788999966, 49.916660728000039 ], [ -119.447211766999942, 49.91657871700005 ], [ -119.446423353999961, 49.916061884000058 ], [ -119.446028703999971, 49.915937998000096 ], [ -119.447258354999974, 49.914184985000091 ], [ -119.447829555999959, 49.913370664000055 ], [ -119.448023967000012, 49.913093535000066 ], [ -119.449149915999897, 49.911488130000087 ], [ -119.449762982999943, 49.910583235000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "519093262", "BldgCostT": "352321360", "sL_LossRatio": "0.986918711032563", "sL_AssetLoss": "22659.678319", "sL_BldgLoss": "22363.260519", "sL_StrLoss": "22254.630519", "sL_NStrLoss": "108.63", "sL_ContLoss": "296.4178", "geom_point": "0101000020E6100000D50F66EA60DD5DC03F248460B8F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.458324008999966, 49.906528410000099 ], [ -119.457673203999946, 49.906377398000089 ], [ -119.457251104999926, 49.906357603000124 ], [ -119.456451859999916, 49.906325984000091 ], [ -119.456473707999947, 49.90626138699999 ], [ -119.456437065999978, 49.905834780000099 ], [ -119.456221090999989, 49.905469663000098 ], [ -119.456037705999961, 49.905286196000048 ], [ -119.45581734299995, 49.905136657000121 ], [ -119.45511497699998, 49.904799241000028 ], [ -119.454790829999922, 49.904643507000095 ], [ -119.454449743999959, 49.90498431100005 ], [ -119.454306494999955, 49.904930582000105 ], [ -119.454592781999935, 49.904572055000109 ], [ -119.454179939999975, 49.904448902000063 ], [ -119.453231172999935, 49.904309883000046 ], [ -119.45326278, 49.904183882000034 ], [ -119.45355158699999, 49.903032330000052 ], [ -119.453569843999972, 49.902965543000064 ], [ -119.453848127999919, 49.901947459000027 ], [ -119.453850367999976, 49.901939176000049 ], [ -119.454057904999956, 49.901179893000126 ], [ -119.454409906999928, 49.901142311000065 ], [ -119.454627656999975, 49.901064019000032 ], [ -119.45477112899999, 49.901012465000129 ], [ -119.455213121999918, 49.90085359600009 ], [ -119.45546439799999, 49.900758399000033 ], [ -119.45591029499991, 49.900641590000056 ], [ -119.456396105999943, 49.900567689000084 ], [ -119.457422783999945, 49.900468142000122 ], [ -119.458065809999979, 49.900405823000042 ], [ -119.459252981999967, 49.900285448000062 ], [ -119.459793067999925, 49.900174211000021 ], [ -119.460447033999912, 49.900925821000044 ], [ -119.461010804999916, 49.901575430000022 ], [ -119.461278136999965, 49.90187935200003 ], [ -119.461543180999968, 49.902180693000069 ], [ -119.461810147, 49.902492680000115 ], [ -119.462135341999954, 49.902872776000045 ], [ -119.462347713999932, 49.903121022000086 ], [ -119.462824311999967, 49.90368685100006 ], [ -119.46303333899999, 49.903935020000105 ], [ -119.463140052999918, 49.904061712000079 ], [ -119.463380979999911, 49.904347721000086 ], [ -119.46363286199994, 49.904456540000062 ], [ -119.463868438999953, 49.904730855000032 ], [ -119.465198468000011, 49.905740503000068 ], [ -119.465608221999958, 49.906197544000037 ], [ -119.464142277999883, 49.906526195000048 ], [ -119.463789187999964, 49.906648611000065 ], [ -119.46348069599999, 49.906801684000143 ], [ -119.46314118399999, 49.907025198000049 ], [ -119.462826914999965, 49.907335100000083 ], [ -119.462607403000021, 49.907725592000077 ], [ -119.462538317999986, 49.90808658300012 ], [ -119.462479403999936, 49.908394307000037 ], [ -119.46181419399997, 49.908353606000077 ], [ -119.461376877999953, 49.908293210000032 ], [ -119.461035206999938, 49.908180589000082 ], [ -119.459856496999976, 49.907655912000017 ], [ -119.45947080499991, 49.907391699000094 ], [ -119.459056224999955, 49.906954867000138 ], [ -119.458936490999974, 49.906828713000024 ], [ -119.4587288099999, 49.906697991000094 ], [ -119.458324008999966, 49.906528410000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82546833", "BldgCostT": "56193333", "sL_LossRatio": "1", "sL_AssetLoss": "8860", "sL_BldgLoss": "8860", "sL_StrLoss": "8860", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006558B04AADD5DC0BF06E9CE38F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.460447033999912, 49.900925821000044 ], [ -119.459793067999925, 49.900174211000021 ], [ -119.460323280999944, 49.899985618000109 ], [ -119.460710967999916, 49.899796607000013 ], [ -119.461040777, 49.899543641000065 ], [ -119.461840716999973, 49.898643331000116 ], [ -119.46248217499999, 49.898263631000091 ], [ -119.462880302999977, 49.898118577000083 ], [ -119.463757040999909, 49.897852272000065 ], [ -119.464597048999934, 49.897666826000055 ], [ -119.465215184999948, 49.897361574000108 ], [ -119.465305888999978, 49.897279883000081 ], [ -119.465723882999896, 49.89690345700005 ], [ -119.465725257999921, 49.897644924000069 ], [ -119.467749297999944, 49.89772080700007 ], [ -119.467776800999985, 49.898426797000091 ], [ -119.46571249499999, 49.898397274000146 ], [ -119.465707937999952, 49.899160943000012 ], [ -119.465687740999954, 49.900059148 ], [ -119.465670260999929, 49.900838281000112 ], [ -119.465664485000019, 49.900852055000044 ], [ -119.465659423999981, 49.900864131000098 ], [ -119.46552270399998, 49.900867039000062 ], [ -119.465495324999935, 49.901058130000074 ], [ -119.465473875999962, 49.901056848000039 ], [ -119.465462219999921, 49.90113819500003 ], [ -119.465532418999956, 49.901136701000091 ], [ -119.465532644999897, 49.901141141000096 ], [ -119.465323106999975, 49.901427064000131 ], [ -119.464783515999969, 49.901801066000054 ], [ -119.464039726999886, 49.902316535000125 ], [ -119.463649824999962, 49.902676976000095 ], [ -119.463415121, 49.903085542000049 ], [ -119.463326351999967, 49.903500800000138 ], [ -119.463309141999943, 49.903581285 ], [ -119.463340573999943, 49.903794820000101 ], [ -119.463357316999947, 49.903908352000059 ], [ -119.46340384899996, 49.904027176000078 ], [ -119.463406453999966, 49.904033811000048 ], [ -119.463521039999975, 49.904326290000029 ], [ -119.46363286199994, 49.904456540000062 ], [ -119.463380979999911, 49.904347721000086 ], [ -119.463140052999918, 49.904061712000079 ], [ -119.46303333899999, 49.903935020000105 ], [ -119.462824311999967, 49.90368685100006 ], [ -119.462347713999932, 49.903121022000086 ], [ -119.462135341999954, 49.902872776000045 ], [ -119.461810147, 49.902492680000115 ], [ -119.461543180999968, 49.902180693000069 ], [ -119.461278136999965, 49.90187935200003 ], [ -119.461010804999916, 49.901575430000022 ], [ -119.460447033999912, 49.900925821000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140420667", "BldgCostT": "92456667", "sL_LossRatio": "1", "sL_AssetLoss": "13463", "sL_BldgLoss": "13463", "sL_StrLoss": "13463", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000031E7BE4160DD5DC0BFDD2FF2F4F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.455225016999933, 49.900002 ], [ -119.455246589999916, 49.898458007000031 ], [ -119.454425402999931, 49.898454001000097 ], [ -119.454438868999972, 49.896789317000071 ], [ -119.454442115999953, 49.896389800000094 ], [ -119.456602801999964, 49.896399099000064 ], [ -119.457430588999941, 49.896406213000091 ], [ -119.458117884999965, 49.896408602000037 ], [ -119.458894120999929, 49.896414397000029 ], [ -119.460498406999989, 49.896424696000054 ], [ -119.46384649, 49.896448005000138 ], [ -119.465720335999947, 49.896459863000082 ], [ -119.465723882999896, 49.89690345700005 ], [ -119.465305888999978, 49.897279883000081 ], [ -119.465215184999948, 49.897361574000108 ], [ -119.464597048999934, 49.897666826000055 ], [ -119.463757040999909, 49.897852272000065 ], [ -119.462880302999977, 49.898118577000083 ], [ -119.46248217499999, 49.898263631000091 ], [ -119.461840716999973, 49.898643331000116 ], [ -119.461040777, 49.899543641000065 ], [ -119.460710967999916, 49.899796607000013 ], [ -119.460323280999944, 49.899985618000109 ], [ -119.459793067999925, 49.900174211000021 ], [ -119.459252981999967, 49.900285448000062 ], [ -119.458065809999979, 49.900405823000042 ], [ -119.457422783999945, 49.900468142000122 ], [ -119.456396105999943, 49.900567689000084 ], [ -119.45591029499991, 49.900641590000056 ], [ -119.45546439799999, 49.900758399000033 ], [ -119.455213121999918, 49.90085359600009 ], [ -119.455225016999933, 49.900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94691500", "BldgCostT": "65095000", "sL_LossRatio": "0.995385964064908", "sL_AssetLoss": "11865.019859", "sL_BldgLoss": "11810.274231", "sL_StrLoss": "11789.203831", "sL_NStrLoss": "21.0704", "sL_ContLoss": "54.745628", "geom_point": "0101000020E61000001F0137E690DD5DC0B1593F4775F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.457669489999915, 49.893649106000105 ], [ -119.458681918999957, 49.892670387000067 ], [ -119.459299916999939, 49.892843750000083 ], [ -119.459761154999953, 49.892872261000036 ], [ -119.460962797999954, 49.892727474 ], [ -119.461280261999889, 49.892735631000065 ], [ -119.462053543999957, 49.892819843000069 ], [ -119.46264618, 49.892760494000107 ], [ -119.463132661999936, 49.892603583000081 ], [ -119.463298529999932, 49.892469940000133 ], [ -119.463415996999942, 49.892303574000103 ], [ -119.463488252999952, 49.891799497000065 ], [ -119.464150348999951, 49.892006162000072 ], [ -119.464529821999975, 49.892195926000049 ], [ -119.464803356999965, 49.892432628000073 ], [ -119.465000453999977, 49.892607870000141 ], [ -119.465209965999961, 49.892706193000066 ], [ -119.465458599, 49.892775250000085 ], [ -119.465809905999947, 49.892790847000072 ], [ -119.465810233999889, 49.892922498000082 ], [ -119.465811078999963, 49.893270426000051 ], [ -119.465796925999911, 49.893730107000081 ], [ -119.465766070999933, 49.894726109000047 ], [ -119.465762335999941, 49.894947124000112 ], [ -119.46574327099998, 49.895616926000116 ], [ -119.463496519999978, 49.89557459800006 ], [ -119.462089014999947, 49.895643889000041 ], [ -119.460918887999966, 49.895646097000061 ], [ -119.460498406999989, 49.896424696000054 ], [ -119.458894120999929, 49.896414397000029 ], [ -119.458649988999937, 49.895826396000068 ], [ -119.458666305999941, 49.895586203000036 ], [ -119.458692294999977, 49.895209384000104 ], [ -119.458635499999986, 49.894972093000042 ], [ -119.458234093000016, 49.894341287000074 ], [ -119.457669489999915, 49.893649106000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "205303394", "BldgCostT": "139441523", "sL_LossRatio": "0.995582452704526", "sL_AssetLoss": "17523.172209", "sL_BldgLoss": "17445.762767", "sL_StrLoss": "17415.106637", "sL_NStrLoss": "30.65613", "sL_ContLoss": "77.409442", "geom_point": "0101000020E61000005494F9E434DD5DC09E4064D342F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.454465659999983, 49.89545736300007 ], [ -119.454493779999922, 49.894344809000074 ], [ -119.454255721999942, 49.894348602000079 ], [ -119.45428891499995, 49.890036800000047 ], [ -119.454527341999921, 49.89003030600005 ], [ -119.454532536999949, 49.889429172000121 ], [ -119.454533903999959, 49.889266718000044 ], [ -119.45453425, 49.889222247000106 ], [ -119.454539000999944, 49.888653856000069 ], [ -119.455045683999913, 49.8886480950001 ], [ -119.455406163999939, 49.888570363000071 ], [ -119.455673527999949, 49.888489561000078 ], [ -119.455691702999971, 49.888484067000043 ], [ -119.455793415999963, 49.888453317000071 ], [ -119.456615593, 49.888204839000096 ], [ -119.456851192999963, 49.888717503000088 ], [ -119.456860514, 49.888737864000099 ], [ -119.45688972899994, 49.889430426000061 ], [ -119.457321975999932, 49.889466332000012 ], [ -119.457700844999934, 49.889552211000129 ], [ -119.457959755999951, 49.889667 ], [ -119.45820527299999, 49.889835222000073 ], [ -119.458388371999945, 49.890039393000087 ], [ -119.458456775999977, 49.890225 ], [ -119.458425992999935, 49.890557288000117 ], [ -119.458268424, 49.891198105000065 ], [ -119.458062018999911, 49.8916823960001 ], [ -119.458268004999951, 49.891639587000064 ], [ -119.459157591999954, 49.891750673000139 ], [ -119.458681918999957, 49.892670387000067 ], [ -119.457669489999915, 49.893649106000105 ], [ -119.458234093000016, 49.894341287000074 ], [ -119.458635499999986, 49.894972093000042 ], [ -119.458692294999977, 49.895209384000104 ], [ -119.458666305999941, 49.895586203000036 ], [ -119.458649988999937, 49.895826396000068 ], [ -119.458894120999929, 49.896414397000029 ], [ -119.458117884999965, 49.896408602000037 ], [ -119.457430588999941, 49.896406213000091 ], [ -119.456602801999964, 49.896399099000064 ], [ -119.454442115999953, 49.896389800000094 ], [ -119.454465659999983, 49.89545736300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189301887", "BldgCostT": "124337080", "sL_LossRatio": "0.996043827575139", "sL_AssetLoss": "10840.85712", "sL_BldgLoss": "10797.96882", "sL_StrLoss": "10781.16182", "sL_NStrLoss": "16.807", "sL_ContLoss": "42.8883", "geom_point": "0101000020E61000009451D1FDC1DD5DC0140AA6D404F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.458681918999957, 49.892670387000067 ], [ -119.459157591999954, 49.891750673000139 ], [ -119.458268004999951, 49.891639587000064 ], [ -119.458062018999911, 49.8916823960001 ], [ -119.458268424, 49.891198105000065 ], [ -119.458425992999935, 49.890557288000117 ], [ -119.458456775999977, 49.890225 ], [ -119.458388371999945, 49.890039393000087 ], [ -119.45820527299999, 49.889835222000073 ], [ -119.457959755999951, 49.889667 ], [ -119.457700844999934, 49.889552211000129 ], [ -119.457321975999932, 49.889466332000012 ], [ -119.45688972899994, 49.889430426000061 ], [ -119.456860514, 49.888737864000099 ], [ -119.456851192999963, 49.888717503000088 ], [ -119.456615593, 49.888204839000096 ], [ -119.45689842799996, 49.888103497000024 ], [ -119.457072188000012, 49.888041642000069 ], [ -119.457220797999966, 49.887988306000103 ], [ -119.457472219999943, 49.887898094000064 ], [ -119.457674167999969, 49.887825643000049 ], [ -119.457848511999927, 49.887763070000133 ], [ -119.458356175999953, 49.88766252300011 ], [ -119.458836942999966, 49.887642567000093 ], [ -119.459190426999982, 49.88764173000007 ], [ -119.459635071999955, 49.887640676000068 ], [ -119.459923417999974, 49.887598344000033 ], [ -119.460202771999946, 49.887521153000144 ], [ -119.46036823499999, 49.888813371000026 ], [ -119.460371315999936, 49.889269572000117 ], [ -119.460728554999918, 49.889444829000091 ], [ -119.461237695999898, 49.88969457700005 ], [ -119.461409197999984, 49.889778683000081 ], [ -119.461836911999939, 49.889944294000053 ], [ -119.461929386999884, 49.889981407000128 ], [ -119.462223872, 49.889993595000064 ], [ -119.462718073999966, 49.889938301000022 ], [ -119.464646805999962, 49.890247892000041 ], [ -119.464877388999923, 49.890248094000093 ], [ -119.465352981999942, 49.890176403000041 ], [ -119.465560023999956, 49.890116498000062 ], [ -119.465810589999961, 49.890006010000093 ], [ -119.46620521599999, 49.889709 ], [ -119.466602404999946, 49.889131303000035 ], [ -119.466777813999968, 49.888735498000116 ], [ -119.467082006999988, 49.887909299000093 ], [ -119.467140509999965, 49.887529999000037 ], [ -119.468361083000019, 49.888266655000066 ], [ -119.469461001999917, 49.888928394000125 ], [ -119.469334391999936, 49.888993090000127 ], [ -119.468639404, 49.889211595000106 ], [ -119.468543225999923, 49.889298 ], [ -119.46823789299998, 49.889937098000082 ], [ -119.468815317999969, 49.890266913000062 ], [ -119.469821811999964, 49.890791338000049 ], [ -119.470019404999974, 49.890894299000117 ], [ -119.470332070999973, 49.890994196000101 ], [ -119.470819805999909, 49.891082099000059 ], [ -119.470890614999917, 49.891095300000117 ], [ -119.473310893999979, 49.891001195000101 ], [ -119.47450620799998, 49.890954696000072 ], [ -119.475361199999952, 49.890956092000131 ], [ -119.475354708999959, 49.891467912000074 ], [ -119.475337734999982, 49.892810384000079 ], [ -119.474783924999912, 49.892808614000018 ], [ -119.474034985999964, 49.892806210000096 ], [ -119.473915799999972, 49.892805820000071 ], [ -119.471089870999919, 49.892435112000079 ], [ -119.471037015, 49.892480651000064 ], [ -119.470879701999962, 49.89261627000009 ], [ -119.468931899999944, 49.892165737000063 ], [ -119.467147121999986, 49.891815314000084 ], [ -119.466846393999958, 49.89198425400005 ], [ -119.466843804999954, 49.891984262000101 ], [ -119.466174299999949, 49.892251179000034 ], [ -119.465960963999947, 49.892435911000035 ], [ -119.465809905999947, 49.892790847000072 ], [ -119.465458599, 49.892775250000085 ], [ -119.465209965999961, 49.892706193000066 ], [ -119.465000453999977, 49.892607870000141 ], [ -119.464803356999965, 49.892432628000073 ], [ -119.464529821999975, 49.892195926000049 ], [ -119.464150348999951, 49.892006162000072 ], [ -119.463488252999952, 49.891799497000065 ], [ -119.463415996999942, 49.892303574000103 ], [ -119.463298529999932, 49.892469940000133 ], [ -119.463132661999936, 49.892603583000081 ], [ -119.46264618, 49.892760494000107 ], [ -119.462053543999957, 49.892819843000069 ], [ -119.461280261999889, 49.892735631000065 ], [ -119.460962797999954, 49.892727474 ], [ -119.459761154999953, 49.892872261000036 ], [ -119.459299916999939, 49.892843750000083 ], [ -119.458681918999957, 49.892670387000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142683000", "BldgCostT": "90825000", "sL_LossRatio": "0.996862722317591", "sL_AssetLoss": "12853.5199884", "sL_BldgLoss": "12813.194927", "sL_StrLoss": "12794.518697", "sL_NStrLoss": "18.67623", "sL_ContLoss": "40.3250614", "geom_point": "0101000020E61000007196CC90AEDD5DC08187ABFBAEF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.464646805999962, 49.890247892000041 ], [ -119.462718073999966, 49.889938301000022 ], [ -119.462223872, 49.889993595000064 ], [ -119.461929386999884, 49.889981407000128 ], [ -119.461836911999939, 49.889944294000053 ], [ -119.461409197999984, 49.889778683000081 ], [ -119.461237695999898, 49.88969457700005 ], [ -119.460728554999918, 49.889444829000091 ], [ -119.460371315999936, 49.889269572000117 ], [ -119.46036823499999, 49.888813371000026 ], [ -119.460202771999946, 49.887521153000144 ], [ -119.460521135999912, 49.887395728000058 ], [ -119.460838546000019, 49.887179945000042 ], [ -119.461707012999923, 49.886531187000067 ], [ -119.462049830999916, 49.886362074000075 ], [ -119.462502132999958, 49.886277160000141 ], [ -119.462830487999923, 49.886277210000046 ], [ -119.463107138999959, 49.886277253000117 ], [ -119.463182068999956, 49.886277151000087 ], [ -119.463376799999978, 49.886276747000046 ], [ -119.465077896999929, 49.886273298000106 ], [ -119.466810688999928, 49.886271292000075 ], [ -119.467140509999965, 49.887529999000037 ], [ -119.467082006999988, 49.887909299000093 ], [ -119.466777813999968, 49.888735498000116 ], [ -119.466602404999946, 49.889131303000035 ], [ -119.46620521599999, 49.889709 ], [ -119.465810589999961, 49.890006010000093 ], [ -119.465560023999956, 49.890116498000062 ], [ -119.465352981999942, 49.890176403000041 ], [ -119.464877388999923, 49.890248094000093 ], [ -119.464646805999962, 49.890247892000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120617083", "BldgCostT": "76873333", "sL_LossRatio": "0.997104651337018", "sL_AssetLoss": "11637.769375", "sL_BldgLoss": "11604.073975", "sL_StrLoss": "11587.110975", "sL_NStrLoss": "16.963", "sL_ContLoss": "33.6954", "geom_point": "0101000020E610000061D6F63C20DE5DC031B15472A9F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.468361083000019, 49.888266655000066 ], [ -119.467140509999965, 49.887529999000037 ], [ -119.466810688999928, 49.886271292000075 ], [ -119.46773871299996, 49.886269894000087 ], [ -119.470430706999977, 49.886263788000093 ], [ -119.470801109999954, 49.886263405000065 ], [ -119.473952060000016, 49.886262035000058 ], [ -119.473943189999943, 49.887290890000067 ], [ -119.474537987999952, 49.887294003000093 ], [ -119.474512004999937, 49.889302502000128 ], [ -119.473294202999966, 49.889297485000021 ], [ -119.473265606, 49.888198600000052 ], [ -119.473150223999966, 49.888096909000055 ], [ -119.472320183999983, 49.887920889000085 ], [ -119.47215230099999, 49.887922585000091 ], [ -119.472092322999956, 49.887951509000089 ], [ -119.472073184999942, 49.889305803000113 ], [ -119.47080319, 49.889323798000078 ], [ -119.470808968999989, 49.889693493000046 ], [ -119.470819805999909, 49.891082099000059 ], [ -119.470332070999973, 49.890994196000101 ], [ -119.470019404999974, 49.890894299000117 ], [ -119.469821811999964, 49.890791338000049 ], [ -119.468815317999969, 49.890266913000062 ], [ -119.46823789299998, 49.889937098000082 ], [ -119.468543225999923, 49.889298 ], [ -119.468639404, 49.889211595000106 ], [ -119.469334391999936, 49.888993090000127 ], [ -119.469461001999917, 49.888928394000125 ], [ -119.468361083000019, 49.888266655000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124581000", "BldgCostT": "75900000", "sL_LossRatio": "0.989541218276227", "sL_AssetLoss": "10380.4512674", "sL_BldgLoss": "10271.8843934", "sL_StrLoss": "10222.8850534", "sL_NStrLoss": "48.99934", "sL_ContLoss": "108.566874", "geom_point": "0101000020E6100000DD9F1FA101DE5DC08CADC9E83AF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46773871299996, 49.886269894000087 ], [ -119.467745296999936, 49.88525799400005 ], [ -119.466930593999933, 49.885258904000139 ], [ -119.465668601999937, 49.885261093000047 ], [ -119.465298216999912, 49.885193792000059 ], [ -119.46517342199999, 49.885151389000029 ], [ -119.464508096999936, 49.884925309000067 ], [ -119.464324182999974, 49.884891686000067 ], [ -119.463860283999963, 49.88480388700011 ], [ -119.463521579999977, 49.884739793000087 ], [ -119.462529170999971, 49.884313794000064 ], [ -119.462653690999943, 49.884195677000072 ], [ -119.464639007999935, 49.883113502000057 ], [ -119.464838586, 49.883239664000115 ], [ -119.465102813999962, 49.883406690000115 ], [ -119.465447306999977, 49.883518584000058 ], [ -119.465842441999925, 49.883549922000093 ], [ -119.466745880999909, 49.883621494000081 ], [ -119.467030036999958, 49.883679523000076 ], [ -119.467590199999961, 49.883793903000054 ], [ -119.4688426109999, 49.883956404000052 ], [ -119.469420274999919, 49.884031105000076 ], [ -119.470324218999949, 49.884148006000032 ], [ -119.470436111999973, 49.883658884000084 ], [ -119.470661603999943, 49.883351806000078 ], [ -119.47077919699997, 49.883282106000067 ], [ -119.472697312999912, 49.88375249300001 ], [ -119.474212705999918, 49.884020110000094 ], [ -119.474493609999982, 49.884107277000041 ], [ -119.474640030999979, 49.884207195000073 ], [ -119.474712600999908, 49.88433440000005 ], [ -119.474739303999939, 49.885241699000048 ], [ -119.473594796999961, 49.885242893000054 ], [ -119.470364487999916, 49.88525210500007 ], [ -119.470419590999938, 49.885414313000091 ], [ -119.470430706999977, 49.886263788000093 ], [ -119.46773871299996, 49.886269894000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190273189", "BldgCostT": "124440825", "sL_LossRatio": "0.894973453090934", "sL_AssetLoss": "6398.57731", "sL_BldgLoss": "5726.55683", "sL_StrLoss": "5406.23613", "sL_NStrLoss": "320.3207", "sL_ContLoss": "672.02048", "geom_point": "0101000020E6100000FEE9B3C151DE5DC04EE73F7B60F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.470364487999916, 49.88525210500007 ], [ -119.473594796999961, 49.885242893000054 ], [ -119.474739303999939, 49.885241699000048 ], [ -119.475018532, 49.885241079000082 ], [ -119.476022378999957, 49.885238873000098 ], [ -119.476721321999904, 49.885285144000093 ], [ -119.476933134999953, 49.885318572000116 ], [ -119.477071006999964, 49.88533130800009 ], [ -119.47707628099991, 49.886271662000141 ], [ -119.47693661699995, 49.886271449000084 ], [ -119.473952060000016, 49.886262035000058 ], [ -119.470801109999954, 49.886263405000065 ], [ -119.470430706999977, 49.886263788000093 ], [ -119.470419590999938, 49.885414313000091 ], [ -119.470364487999916, 49.88525210500007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "561253272", "BldgCostT": "379974158", "sL_LossRatio": "0.952926287798804", "sL_AssetLoss": "8840.431454", "sL_BldgLoss": "8424.279528", "sL_StrLoss": "8206.732788", "sL_NStrLoss": "217.54674", "sL_ContLoss": "416.151926", "geom_point": "0101000020E6100000E072CCE421DE5DC0FFA79F6014F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.470324218999949, 49.884148006000032 ], [ -119.469420274999919, 49.884031105000076 ], [ -119.4688426109999, 49.883956404000052 ], [ -119.467590199999961, 49.883793903000054 ], [ -119.467030036999958, 49.883679523000076 ], [ -119.466745880999909, 49.883621494000081 ], [ -119.465842441999925, 49.883549922000093 ], [ -119.465447306999977, 49.883518584000058 ], [ -119.465102813999962, 49.883406690000115 ], [ -119.464838586, 49.883239664000115 ], [ -119.464639007999935, 49.883113502000057 ], [ -119.465476310999975, 49.882662391000117 ], [ -119.46570742199998, 49.882385495000058 ], [ -119.46576621299999, 49.881974475000085 ], [ -119.46690000599996, 49.881989022000049 ], [ -119.468842012999971, 49.882188604000142 ], [ -119.468855156999936, 49.882189951000079 ], [ -119.469958101999964, 49.882410303000022 ], [ -119.470573237999986, 49.882577171000037 ], [ -119.472516166999952, 49.883104150000115 ], [ -119.47316025399999, 49.88322540900009 ], [ -119.473321121999945, 49.883255692000063 ], [ -119.473584167999917, 49.883305226000097 ], [ -119.474805588999914, 49.883459493000011 ], [ -119.476908800999965, 49.88358330900013 ], [ -119.477033322999958, 49.883591661000061 ], [ -119.477027857999971, 49.884441053000081 ], [ -119.477067199999951, 49.885251912000086 ], [ -119.477071006999964, 49.88533130800009 ], [ -119.476933134999953, 49.885318572000116 ], [ -119.476721321999904, 49.885285144000093 ], [ -119.476022378999957, 49.885238873000098 ], [ -119.475018532, 49.885241079000082 ], [ -119.474739303999939, 49.885241699000048 ], [ -119.474712600999908, 49.88433440000005 ], [ -119.474640030999979, 49.884207195000073 ], [ -119.474493609999982, 49.884107277000041 ], [ -119.474212705999918, 49.884020110000094 ], [ -119.472697312999912, 49.88375249300001 ], [ -119.47077919699997, 49.883282106000067 ], [ -119.470661603999943, 49.883351806000078 ], [ -119.470436111999973, 49.883658884000084 ], [ -119.470324218999949, 49.884148006000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79828908", "BldgCostT": "45955474", "sL_LossRatio": "0.937740861009017", "sL_AssetLoss": "9029.68639", "sL_BldgLoss": "8467.50589", "sL_StrLoss": "8239.88489", "sL_NStrLoss": "227.621", "sL_ContLoss": "562.1805", "geom_point": "0101000020E61000005424059A38DE5DC09A665F1ED7F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.474805588999914, 49.883459493000011 ], [ -119.473584167999917, 49.883305226000097 ], [ -119.473321121999945, 49.883255692000063 ], [ -119.47316025399999, 49.88322540900009 ], [ -119.472516166999952, 49.883104150000115 ], [ -119.470573237999986, 49.882577171000037 ], [ -119.469958101999964, 49.882410303000022 ], [ -119.468855156999936, 49.882189951000079 ], [ -119.468842012999971, 49.882188604000142 ], [ -119.46690000599996, 49.881989022000049 ], [ -119.46576621299999, 49.881974475000085 ], [ -119.465776966999954, 49.881899417000085 ], [ -119.465781617999951, 49.881867035000035 ], [ -119.465776424999959, 49.881247246000065 ], [ -119.465772966999964, 49.880833591000027 ], [ -119.465768666999963, 49.880318469000038 ], [ -119.467604507999937, 49.880266488000125 ], [ -119.468558504999976, 49.880239452000104 ], [ -119.468903824000023, 49.880229672000034 ], [ -119.469370420999951, 49.880220500000085 ], [ -119.47161919199999, 49.880194286000119 ], [ -119.473616099999944, 49.880200732000105 ], [ -119.476280226999947, 49.880210904000101 ], [ -119.476950732999967, 49.880016160000061 ], [ -119.477076790999917, 49.879965019000053 ], [ -119.477078717999987, 49.881202251000076 ], [ -119.477051014999972, 49.882148776000079 ], [ -119.477032716999986, 49.883468807000092 ], [ -119.477033020999926, 49.883530020000137 ], [ -119.477033322999958, 49.883591661000061 ], [ -119.476908800999965, 49.88358330900013 ], [ -119.474805588999914, 49.883459493000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "580001228", "BldgCostT": "391719857", "sL_LossRatio": "0.928581647343029", "sL_AssetLoss": "11206.46892885", "sL_BldgLoss": "10406.12137885", "sL_StrLoss": "9722.88487885", "sL_NStrLoss": "683.2365", "sL_ContLoss": "800.34755", "geom_point": "0101000020E6100000C2BF0964FADD5DC0BCAB15757FF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.465771679999989, 49.87928284500002 ], [ -119.465774374999967, 49.876814994000021 ], [ -119.466636103999917, 49.876943292000142 ], [ -119.468663097999965, 49.87696339399999 ], [ -119.468662174999977, 49.877574705000022 ], [ -119.468628087999932, 49.87761789100005 ], [ -119.468111291999918, 49.877695305000046 ], [ -119.467390477999942, 49.877704594000171 ], [ -119.467238215999913, 49.8777631990001 ], [ -119.46718488, 49.877843110000093 ], [ -119.467169993999931, 49.878727200000064 ], [ -119.470081184999927, 49.87873868900008 ], [ -119.470105798999896, 49.877990714000092 ], [ -119.47014291, 49.87789719400007 ], [ -119.470327380999962, 49.877808911000145 ], [ -119.471559196999976, 49.877782310000086 ], [ -119.47156882899999, 49.878029258000076 ], [ -119.471598993000015, 49.878802395000015 ], [ -119.47163339799998, 49.878903812 ], [ -119.471627111999965, 49.879436186000063 ], [ -119.47161919199999, 49.880194286000119 ], [ -119.469370420999951, 49.880220500000085 ], [ -119.468903824000023, 49.880229672000034 ], [ -119.468558504999976, 49.880239452000104 ], [ -119.467604507999937, 49.880266488000125 ], [ -119.465768666999963, 49.880318469000038 ], [ -119.465769191999968, 49.880138050000021 ], [ -119.465769902999966, 49.879885001000069 ], [ -119.465771679999989, 49.87928284500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "441829567", "BldgCostT": "293831381", "sL_LossRatio": "0.938965579987971", "sL_AssetLoss": "14586.20234", "sL_BldgLoss": "13695.94194", "sL_StrLoss": "12723.64154", "sL_NStrLoss": "972.3004", "sL_ContLoss": "890.2604", "geom_point": "0101000020E6100000A9D30EA05BDE5DC0D4D446D073F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.47156882899999, 49.878029258000076 ], [ -119.471559196999976, 49.877782310000086 ], [ -119.47154529, 49.876951614000092 ], [ -119.474275548999984, 49.876888989000058 ], [ -119.477015035999969, 49.876800740000114 ], [ -119.477029406999989, 49.878214816000096 ], [ -119.477133946999984, 49.87821653700005 ], [ -119.477100836999966, 49.879474288000083 ], [ -119.477076790999917, 49.879965019000053 ], [ -119.476950732999967, 49.880016160000061 ], [ -119.476280226999947, 49.880210904000101 ], [ -119.473616099999944, 49.880200732000105 ], [ -119.47161919199999, 49.880194286000119 ], [ -119.471627111999965, 49.879436186000063 ], [ -119.47163339799998, 49.878903812 ], [ -119.471598993000015, 49.878802395000015 ], [ -119.47156882899999, 49.878029258000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "407966000", "BldgCostT": "274820000", "sL_LossRatio": "0.987224358144737", "sL_AssetLoss": "17436.95953", "sL_BldgLoss": "17214.19118", "sL_StrLoss": "16910.51039", "sL_NStrLoss": "303.68079", "sL_ContLoss": "222.76835", "geom_point": "0101000020E6100000A1E5C44759DE5DC0F874BF54FDEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.477029406999989, 49.878214816000096 ], [ -119.477015035999969, 49.876800740000114 ], [ -119.474275548999984, 49.876888989000058 ], [ -119.47154529, 49.876951614000092 ], [ -119.471523388999941, 49.875962309000073 ], [ -119.471529201999942, 49.874847390000106 ], [ -119.47154557099995, 49.872780472000045 ], [ -119.473393287999912, 49.872782561000115 ], [ -119.474187894999929, 49.87278260000005 ], [ -119.474678374999911, 49.87278261299999 ], [ -119.475365536999959, 49.872783041000069 ], [ -119.476066563999936, 49.872784284000026 ], [ -119.476826072, 49.874242891000101 ], [ -119.47686999499993, 49.874326800000112 ], [ -119.477041634999978, 49.874865309000015 ], [ -119.477060723999969, 49.875104743000051 ], [ -119.477081658999978, 49.875367091000022 ], [ -119.477091002999941, 49.876464818000088 ], [ -119.477142708999935, 49.87659162000012 ], [ -119.477148528999948, 49.876795149000031 ], [ -119.477147828999961, 49.876865382000098 ], [ -119.477133946999984, 49.87821653700005 ], [ -119.477029406999989, 49.878214816000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "356308719", "BldgCostT": "235515412", "sL_LossRatio": "0.967887693501046", "sL_AssetLoss": "20766.6771", "sL_BldgLoss": "20099.8112", "sL_StrLoss": "19488.6221", "sL_NStrLoss": "611.1891", "sL_ContLoss": "666.8659", "geom_point": "0101000020E610000019197849B7DE5DC0239D27226CF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.479875541999945, 49.875378820000023 ], [ -119.482773393999935, 49.875390904000042 ], [ -119.482777865999935, 49.876308606000073 ], [ -119.482770512999963, 49.877221104000014 ], [ -119.482765714999957, 49.878042755000095 ], [ -119.482764762999935, 49.878204460000077 ], [ -119.482763544999941, 49.878411441000047 ], [ -119.48276303399993, 49.878501280000087 ], [ -119.482762132999966, 49.878654361000066 ], [ -119.482755195999985, 49.879841682000077 ], [ -119.48275208699999, 49.880773404000131 ], [ -119.482755483999966, 49.881238690000018 ], [ -119.479894157999965, 49.881219573000124 ], [ -119.477078717999987, 49.881202251000076 ], [ -119.477076790999917, 49.879965019000053 ], [ -119.477100836999966, 49.879474288000083 ], [ -119.477133946999984, 49.87821653700005 ], [ -119.477147828999961, 49.876865382000098 ], [ -119.477148528999948, 49.876795149000031 ], [ -119.477142708999935, 49.87659162000012 ], [ -119.477091002999941, 49.876464818000088 ], [ -119.477081658999978, 49.875367091000022 ], [ -119.479875541999945, 49.875378820000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "102853478", "BldgCostT": "64104857", "sL_LossRatio": "0.979181666391612", "sL_AssetLoss": "13450.517475", "sL_BldgLoss": "13170.500115", "sL_StrLoss": "13040.168815", "sL_NStrLoss": "130.3313", "sL_ContLoss": "280.01736", "geom_point": "0101000020E610000061A449EFBCDE5DC042571ADFB4EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.481501503999979, 49.869088592000047 ], [ -119.482760805999973, 49.869092396000063 ], [ -119.482761192999973, 49.869532516000056 ], [ -119.482761619999948, 49.869996402 ], [ -119.482761014999951, 49.87094910100015 ], [ -119.482761905999951, 49.871823204000066 ], [ -119.482762631999961, 49.872257858000118 ], [ -119.482763505999927, 49.872790503000076 ], [ -119.482767696999986, 49.873895037000075 ], [ -119.482768280999949, 49.874048096000088 ], [ -119.48277119799998, 49.874812485000042 ], [ -119.482773393999935, 49.875390904000042 ], [ -119.479875541999945, 49.875378820000023 ], [ -119.477081658999978, 49.875367091000022 ], [ -119.477060723999969, 49.875104743000051 ], [ -119.477041634999978, 49.874865309000015 ], [ -119.47686999499993, 49.874326800000112 ], [ -119.476826072, 49.874242891000101 ], [ -119.476066563999936, 49.872784284000026 ], [ -119.477151725999974, 49.872783778000063 ], [ -119.478916305999931, 49.872782916000119 ], [ -119.478912776999906, 49.872276591000052 ], [ -119.478909822999952, 49.87185059900002 ], [ -119.478903690999971, 49.87092551000007 ], [ -119.47889959099993, 49.870094495000096 ], [ -119.480242377999929, 49.870080794000025 ], [ -119.480242484, 49.869082899000098 ], [ -119.481501503999979, 49.869088592000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "282270835", "BldgCostT": "186808311", "sL_LossRatio": "0.983915574064017", "sL_AssetLoss": "17352.99731", "sL_BldgLoss": "17073.88431", "sL_StrLoss": "16729.84941", "sL_NStrLoss": "344.0349", "sL_ContLoss": "279.113", "geom_point": "0101000020E61000003DB6647612DF5DC08DF4CBF5F0EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.487814821999933, 49.87275768700006 ], [ -119.488210244999905, 49.872708170000081 ], [ -119.488227840999969, 49.874562202000078 ], [ -119.488231745999911, 49.875415788000048 ], [ -119.48822889199991, 49.876316802000062 ], [ -119.482777865999935, 49.876308606000073 ], [ -119.482773393999935, 49.875390904000042 ], [ -119.48277119799998, 49.874812485000042 ], [ -119.482768280999949, 49.874048096000088 ], [ -119.482767696999986, 49.873895037000075 ], [ -119.482763505999927, 49.872790503000076 ], [ -119.48293128899999, 49.872769796000057 ], [ -119.484145883999929, 49.872773604000074 ], [ -119.485493185999943, 49.872778194000063 ], [ -119.486817584999969, 49.872766900000045 ], [ -119.487814821999933, 49.87275768700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "335584374", "BldgCostT": "219719885", "sL_LossRatio": "0.985844024812629", "sL_AssetLoss": "29280.08523", "sL_BldgLoss": "28865.59707", "sL_StrLoss": "28502.27957", "sL_NStrLoss": "363.3175", "sL_ContLoss": "414.48816", "geom_point": "0101000020E61000009FC961A415DF5DC0B71D09EA4AEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.485960247999955, 49.865402580000122 ], [ -119.48824218799993, 49.865406395000136 ], [ -119.488241312999946, 49.866019487000074 ], [ -119.488242094999961, 49.866366293000105 ], [ -119.488241847999959, 49.866941244000017 ], [ -119.488241703999961, 49.86728920900002 ], [ -119.488239542999978, 49.867750932000085 ], [ -119.488237222999913, 49.86825065600005 ], [ -119.488236838999967, 49.868624689000079 ], [ -119.488236242999946, 49.86909943700006 ], [ -119.488235828999933, 49.869523168000114 ], [ -119.488235305999964, 49.870006902000071 ], [ -119.488233298999987, 49.87095048599999 ], [ -119.488233692, 49.87179929000007 ], [ -119.488223245999947, 49.872204269000086 ], [ -119.488221138999947, 49.872285498000039 ], [ -119.488210244999905, 49.872708170000081 ], [ -119.487814821999933, 49.87275768700006 ], [ -119.486817584999969, 49.872766900000045 ], [ -119.485493185999943, 49.872778194000063 ], [ -119.484145883999929, 49.872773604000074 ], [ -119.48293128899999, 49.872769796000057 ], [ -119.482763505999927, 49.872790503000076 ], [ -119.482762631999961, 49.872257858000118 ], [ -119.482761905999951, 49.871823204000066 ], [ -119.482761014999951, 49.87094910100015 ], [ -119.482761619999948, 49.869996402 ], [ -119.482761192999973, 49.869532516000056 ], [ -119.482760805999973, 49.869092396000063 ], [ -119.482760564, 49.868623742000075 ], [ -119.482760399999933, 49.868244405000112 ], [ -119.482760601999971, 49.867751558000101 ], [ -119.482760811999952, 49.867282682000052 ], [ -119.485420771999941, 49.86728709900008 ], [ -119.485425342999918, 49.866829919000097 ], [ -119.485429882999981, 49.86637189900005 ], [ -119.48543461699991, 49.865840641000062 ], [ -119.485438518999956, 49.865401704000043 ], [ -119.485960247999955, 49.865402580000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "401834581", "BldgCostT": "263290035", "sL_LossRatio": "0.972561965471896", "sL_AssetLoss": "22822.53014", "sL_BldgLoss": "22196.32477", "sL_StrLoss": "21741.02837", "sL_NStrLoss": "455.2964", "sL_ContLoss": "626.20537", "geom_point": "0101000020E6100000723DAF1D71DF5DC07F70A19F67EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488210244999905, 49.872708170000081 ], [ -119.488221138999947, 49.872285498000039 ], [ -119.488223245999947, 49.872204269000086 ], [ -119.488233692, 49.87179929000007 ], [ -119.488233298999987, 49.87095048599999 ], [ -119.488235305999964, 49.870006902000071 ], [ -119.488235828999933, 49.869523168000114 ], [ -119.488236242999946, 49.86909943700006 ], [ -119.488236838999967, 49.868624689000079 ], [ -119.488237222999913, 49.86825065600005 ], [ -119.491227405999936, 49.868270885000079 ], [ -119.49362320299997, 49.868267392000085 ], [ -119.49363179, 49.868922593000029 ], [ -119.493696696999933, 49.868996004000074 ], [ -119.493832409000035, 49.869151287000093 ], [ -119.494234430999938, 49.869508150000051 ], [ -119.494756099999947, 49.869971192000072 ], [ -119.495229693999988, 49.870401290000075 ], [ -119.495383795999928, 49.870613591000016 ], [ -119.495414001999961, 49.87091159500001 ], [ -119.495391812999969, 49.871390688000076 ], [ -119.495367323999929, 49.871827202000091 ], [ -119.494990816999959, 49.871754201000016 ], [ -119.494516413999975, 49.871731290000064 ], [ -119.491426705999942, 49.871721488000077 ], [ -119.491250398999981, 49.871753405000071 ], [ -119.491236158999925, 49.872257545000068 ], [ -119.491220706999968, 49.87280366900012 ], [ -119.490217882999929, 49.872656295000134 ], [ -119.489854313999942, 49.872658999000109 ], [ -119.488373732999918, 49.872678171000032 ], [ -119.488210244999905, 49.872708170000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "593855247", "BldgCostT": "373488718", "sL_LossRatio": "0.848590050767325", "sL_AssetLoss": "36328.97328", "sL_BldgLoss": "30828.40528", "sL_StrLoss": "28266.93848", "sL_NStrLoss": "2561.4668", "sL_ContLoss": "5500.568", "geom_point": "0101000020E6100000B25592A772DF5DC030109071BDEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488243668999957, 49.863702494000044 ], [ -119.488243771999976, 49.861988534000076 ], [ -119.488584214999918, 49.862049472000074 ], [ -119.488770077999988, 49.862028975000037 ], [ -119.48870646099999, 49.861995861000061 ], [ -119.489706774999959, 49.862011678000037 ], [ -119.491229286, 49.861989600000044 ], [ -119.492306386999957, 49.861977111 ], [ -119.493495711999941, 49.861990189000082 ], [ -119.493494989999974, 49.862044297000054 ], [ -119.494197993999975, 49.86307861300007 ], [ -119.494589896999955, 49.86368979900007 ], [ -119.49481011099999, 49.864104796000085 ], [ -119.494811388999892, 49.864829999000037 ], [ -119.49480958, 49.865215494000068 ], [ -119.494809963999941, 49.865381805000041 ], [ -119.494811496999944, 49.866054519000045 ], [ -119.494813079999972, 49.867195788000039 ], [ -119.494813576999917, 49.867559088000078 ], [ -119.494487091999986, 49.867557806000043 ], [ -119.493613099999934, 49.867554292000086 ], [ -119.49362320299997, 49.868267392000085 ], [ -119.491227405999936, 49.868270885000079 ], [ -119.488237222999913, 49.86825065600005 ], [ -119.488239542999978, 49.867750932000085 ], [ -119.488241703999961, 49.86728920900002 ], [ -119.488241847999959, 49.866941244000017 ], [ -119.488242094999961, 49.866366293000105 ], [ -119.488241312999946, 49.866019487000074 ], [ -119.48824218799993, 49.865406395000136 ], [ -119.488244903999927, 49.864526110000064 ], [ -119.48824466399995, 49.864368600000049 ], [ -119.488243668999957, 49.863702494000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "138569324", "BldgCostT": "82976487", "sL_LossRatio": "0.946276025397546", "sL_AssetLoss": "13973.63813", "sL_BldgLoss": "13222.91875", "sL_StrLoss": "12908.71635", "sL_NStrLoss": "314.2024", "sL_ContLoss": "750.71938", "geom_point": "0101000020E6100000BF10FE87ACDF5DC07563BCDEE4EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.491228193999987, 49.873603296000105 ], [ -119.491221480999926, 49.872889519000097 ], [ -119.491220706999968, 49.87280366900012 ], [ -119.491236158999925, 49.872257545000068 ], [ -119.491250398999981, 49.871753405000071 ], [ -119.491426705999942, 49.871721488000077 ], [ -119.494516413999975, 49.871731290000064 ], [ -119.494990816999959, 49.871754201000016 ], [ -119.495367323999929, 49.871827202000091 ], [ -119.495391812999969, 49.871390688000076 ], [ -119.495414001999961, 49.87091159500001 ], [ -119.495383795999928, 49.870613591000016 ], [ -119.495229693999988, 49.870401290000075 ], [ -119.494756099999947, 49.869971192000072 ], [ -119.494234430999938, 49.869508150000051 ], [ -119.493832409000035, 49.869151287000093 ], [ -119.493696696999933, 49.868996004000074 ], [ -119.49363179, 49.868922593000029 ], [ -119.49362320299997, 49.868267392000085 ], [ -119.493613099999934, 49.867554292000086 ], [ -119.494487091999986, 49.867557806000043 ], [ -119.494813576999917, 49.867559088000078 ], [ -119.494813079999972, 49.867195788000039 ], [ -119.494811496999944, 49.866054519000045 ], [ -119.494809963999941, 49.865381805000041 ], [ -119.49480958, 49.865215494000068 ], [ -119.494811388999892, 49.864829999000037 ], [ -119.49481011099999, 49.864104796000085 ], [ -119.494589896999955, 49.86368979900007 ], [ -119.494197993999975, 49.86307861300007 ], [ -119.493494989999974, 49.862044297000054 ], [ -119.493495711999941, 49.861990189000082 ], [ -119.494318316999923, 49.861989504000093 ], [ -119.494400183999971, 49.861022697000045 ], [ -119.49443267499997, 49.860854003000092 ], [ -119.49439501099998, 49.860647682000021 ], [ -119.494301390999922, 49.86052604200006 ], [ -119.493670399999971, 49.859706005000099 ], [ -119.49359078599997, 49.85948090300009 ], [ -119.493642497999957, 49.859294287000111 ], [ -119.493817985999939, 49.858984188000086 ], [ -119.493997388999986, 49.858832403000051 ], [ -119.49400933599992, 49.858827314000131 ], [ -119.494331912999925, 49.858689805000083 ], [ -119.492922364999913, 49.857203705000131 ], [ -119.491998813999956, 49.856229900000052 ], [ -119.49193165199992, 49.856205128000099 ], [ -119.491894954999964, 49.856191587000062 ], [ -119.491881993999982, 49.856186809000114 ], [ -119.49168410499999, 49.856175020000094 ], [ -119.491209935999933, 49.856327329000081 ], [ -119.491149510999961, 49.856134092000033 ], [ -119.491002408999961, 49.855922133000099 ], [ -119.49056111799996, 49.855462358000068 ], [ -119.490314452999939, 49.855184863000098 ], [ -119.489982106999946, 49.85482278200012 ], [ -119.489582281999958, 49.854395291000046 ], [ -119.490555082999933, 49.853978458000057 ], [ -119.490593236999956, 49.853964517000108 ], [ -119.490673256999955, 49.853928334000038 ], [ -119.49073497699996, 49.853900193000058 ], [ -119.493964709999929, 49.85681340400005 ], [ -119.495941798999937, 49.858876211000045 ], [ -119.495958547999976, 49.858925360000065 ], [ -119.495988291999964, 49.858924719000115 ], [ -119.496382019999928, 49.859335487000173 ], [ -119.496388225, 49.859455845000063 ], [ -119.496495175999939, 49.859453540000082 ], [ -119.496685312, 49.85965190200006 ], [ -119.496976601999989, 49.859898207000107 ], [ -119.497534907999977, 49.860173096000032 ], [ -119.497449875999905, 49.860338227000071 ], [ -119.497268628999933, 49.860338028000093 ], [ -119.497269457999906, 49.86035411600006 ], [ -119.496542912999971, 49.860383888000079 ], [ -119.496036578999977, 49.860542906000099 ], [ -119.49593981299995, 49.860544990000093 ], [ -119.495906523999935, 49.860565661000109 ], [ -119.495811423999925, 49.860678161000052 ], [ -119.495808183999912, 49.860699200000077 ], [ -119.4955172799999, 49.860999193000033 ], [ -119.495356196999978, 49.861128811000093 ], [ -119.495018189999968, 49.861838002000077 ], [ -119.494699184999916, 49.862141400000084 ], [ -119.49468419199998, 49.862393513000022 ], [ -119.495088994999904, 49.863203814000052 ], [ -119.495795149999978, 49.864147494000129 ], [ -119.495796344999974, 49.864170695000048 ], [ -119.495994357999933, 49.864413703000125 ], [ -119.496267717999913, 49.864778996000027 ], [ -119.496869370999903, 49.865974607000069 ], [ -119.496775823999911, 49.866177661000059 ], [ -119.496737596999978, 49.866231174000106 ], [ -119.496740155999959, 49.866280806000063 ], [ -119.496537677999953, 49.866739145000089 ], [ -119.496512615999904, 49.866739685000027 ], [ -119.496357743, 49.866961440000118 ], [ -119.496359315999939, 49.866991946000091 ], [ -119.496139367999973, 49.867287468 ], [ -119.495957236999942, 49.86729139200007 ], [ -119.495968848999951, 49.867516574000064 ], [ -119.495938308999939, 49.867557604000119 ], [ -119.49598316699992, 49.867794300000114 ], [ -119.495985035999979, 49.867830534000063 ], [ -119.495567973000021, 49.867839518 ], [ -119.49563746299998, 49.869187376000127 ], [ -119.495915219, 49.869181392000087 ], [ -119.495947988999944, 49.869347913000119 ], [ -119.49607212599993, 49.86951947300004 ], [ -119.49608540299991, 49.869776958000024 ], [ -119.496249657999968, 49.869983800000064 ], [ -119.496603908999958, 49.869976168000058 ], [ -119.496778486000011, 49.870075694000057 ], [ -119.496936288999976, 49.870083258000093 ], [ -119.496944309999932, 49.870238704000073 ], [ -119.497361391000013, 49.870229715000043 ], [ -119.49735487, 49.87010332100003 ], [ -119.497698703999902, 49.870119799000094 ], [ -119.49824771199999, 49.869945986000047 ], [ -119.498598972999972, 49.869938019000124 ], [ -119.498612637999955, 49.870202740000089 ], [ -119.499004924999952, 49.870194280000106 ], [ -119.499010607999978, 49.870198091000155 ], [ -119.499031611999897, 49.870230391000042 ], [ -119.499099214999916, 49.871539693000024 ], [ -119.499098908999954, 49.871541608000129 ], [ -119.4986822179999, 49.871550594000013 ], [ -119.498696135, 49.871820165000038 ], [ -119.49850900899996, 49.871824200000034 ], [ -119.498506693999929, 49.871860222000095 ], [ -119.498351911999947, 49.871994096000066 ], [ -119.498323701999979, 49.872516688000111 ], [ -119.498396109999959, 49.872792808000028 ], [ -119.498328824999987, 49.872793623000071 ], [ -119.498369265999926, 49.873577024 ], [ -119.497375197999986, 49.873665206000133 ], [ -119.497261392999974, 49.873659525000086 ], [ -119.497094416, 49.873651179000099 ], [ -119.496810712999959, 49.873637005000077 ], [ -119.494384801999914, 49.873625390000043 ], [ -119.494380645999982, 49.873625359000087 ], [ -119.494379313999943, 49.873591778000026 ], [ -119.492012184999922, 49.873605099000017 ], [ -119.492002158999981, 49.873605093000073 ], [ -119.491228193999987, 49.873603296000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "209713155", "BldgCostT": "136957310", "sL_LossRatio": "0.949359555522084", "sL_AssetLoss": "9724.4527586", "sL_BldgLoss": "9232.0021486", "sL_StrLoss": "8881.0858086", "sL_NStrLoss": "350.91634", "sL_ContLoss": "492.45061", "geom_point": "0101000020E610000003F378D685DF5DC016CC6F0304EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.49168410499999, 49.856175020000094 ], [ -119.491881993999982, 49.856186809000114 ], [ -119.491894954999964, 49.856191587000062 ], [ -119.49193165199992, 49.856205128000099 ], [ -119.491998813999956, 49.856229900000052 ], [ -119.492922364999913, 49.857203705000131 ], [ -119.494331912999925, 49.858689805000083 ], [ -119.49400933599992, 49.858827314000131 ], [ -119.493997388999986, 49.858832403000051 ], [ -119.493817985999939, 49.858984188000086 ], [ -119.493642497999957, 49.859294287000111 ], [ -119.49359078599997, 49.85948090300009 ], [ -119.493670399999971, 49.859706005000099 ], [ -119.494301390999922, 49.86052604200006 ], [ -119.49439501099998, 49.860647682000021 ], [ -119.49443267499997, 49.860854003000092 ], [ -119.494400183999971, 49.861022697000045 ], [ -119.494318316999923, 49.861989504000093 ], [ -119.493495711999941, 49.861990189000082 ], [ -119.492306386999957, 49.861977111 ], [ -119.491229286, 49.861989600000044 ], [ -119.491199473999984, 49.858951823000098 ], [ -119.491198342999979, 49.858836084000075 ], [ -119.491196561999956, 49.858655684000055 ], [ -119.491191520999948, 49.858141298000099 ], [ -119.491200320999937, 49.857270215000028 ], [ -119.49120826599993, 49.856488650000102 ], [ -119.491209935999933, 49.856327329000081 ], [ -119.49168410499999, 49.856175020000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247551204", "BldgCostT": "141753741", "sL_LossRatio": "0.912910963374759", "sL_AssetLoss": "17509.40611", "sL_BldgLoss": "15984.5288", "sL_StrLoss": "15242.2127", "sL_NStrLoss": "742.3161", "sL_ContLoss": "1524.87731", "geom_point": "0101000020E6100000D8CEAC7C41DF5DC0BC955E9B0DEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48539556299994, 49.858490906000043 ], [ -119.485395426, 49.85766012100008 ], [ -119.486033713999959, 49.857660622000054 ], [ -119.48686840799995, 49.857661293000035 ], [ -119.487511519999899, 49.857705079000077 ], [ -119.489095310999929, 49.857907957000045 ], [ -119.490977991999955, 49.858140302000052 ], [ -119.491191520999948, 49.858141298000099 ], [ -119.491196561999956, 49.858655684000055 ], [ -119.491198342999979, 49.858836084000075 ], [ -119.491199473999984, 49.858951823000098 ], [ -119.491229286, 49.861989600000044 ], [ -119.489706774999959, 49.862011678000037 ], [ -119.48870646099999, 49.861995861000061 ], [ -119.488770077999988, 49.862028975000037 ], [ -119.488584214999918, 49.862049472000074 ], [ -119.488243771999976, 49.861988534000076 ], [ -119.488246811999971, 49.861869530000014 ], [ -119.486708478999944, 49.861375903000067 ], [ -119.486021878999964, 49.861136191000071 ], [ -119.485388924999938, 49.86091519400005 ], [ -119.48539042099999, 49.860410428000137 ], [ -119.485390950999928, 49.860230024 ], [ -119.485391524999955, 49.860040006000126 ], [ -119.485392373999971, 49.859742863000051 ], [ -119.485393500999976, 49.859355873000034 ], [ -119.48539430299995, 49.859086842000139 ], [ -119.485394789999987, 49.858860745000122 ], [ -119.48539556299994, 49.858490906000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101715000", "BldgCostT": "70620000", "sL_LossRatio": "0.967742787535733", "sL_AssetLoss": "6034.7682", "sL_BldgLoss": "5840.1034", "sL_StrLoss": "5637.325", "sL_NStrLoss": "202.7784", "sL_ContLoss": "194.6648", "geom_point": "0101000020E61000005654AB4C44DF5DC0B1133503A2ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.487511519999899, 49.857705079000077 ], [ -119.48686840799995, 49.857661293000035 ], [ -119.486033713999959, 49.857660622000054 ], [ -119.485395426, 49.85766012100008 ], [ -119.485394814999964, 49.857539630000055 ], [ -119.485393287999941, 49.857206589000015 ], [ -119.485388803999982, 49.856258197000116 ], [ -119.485345274999958, 49.856171597000092 ], [ -119.485849104999929, 49.85594878500013 ], [ -119.486757013999963, 49.855555104000118 ], [ -119.487710897999975, 49.855161402000086 ], [ -119.488005889999954, 49.855041701000125 ], [ -119.489582281999958, 49.854395291000046 ], [ -119.489982106999946, 49.85482278200012 ], [ -119.490314452999939, 49.855184863000098 ], [ -119.49056111799996, 49.855462358000068 ], [ -119.491002408999961, 49.855922133000099 ], [ -119.491149510999961, 49.856134092000033 ], [ -119.491209935999933, 49.856327329000081 ], [ -119.49120826599993, 49.856488650000102 ], [ -119.491200320999937, 49.857270215000028 ], [ -119.491191520999948, 49.858141298000099 ], [ -119.490977991999955, 49.858140302000052 ], [ -119.489095310999929, 49.857907957000045 ], [ -119.487511519999899, 49.857705079000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "397974188", "BldgCostT": "267755824", "sL_LossRatio": "0.986758311219983", "sL_AssetLoss": "31115.04936", "sL_BldgLoss": "30703.03356", "sL_StrLoss": "30319.89996", "sL_NStrLoss": "383.1336", "sL_ContLoss": "412.0158", "geom_point": "0101000020E6100000BE38E0A9B6DE5DC0BF27CDEE62ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.474976723999944, 49.853250479000074 ], [ -119.476557297999932, 49.850882223000013 ], [ -119.476815366999986, 49.85095075600006 ], [ -119.478921992999943, 49.851510294000072 ], [ -119.48038967599993, 49.851917295000113 ], [ -119.480524193999926, 49.851954603000081 ], [ -119.481437786999948, 49.852010060000097 ], [ -119.481843001999934, 49.851998142000099 ], [ -119.482297296999917, 49.851925947000062 ], [ -119.482621278999886, 49.851838246000057 ], [ -119.48283028699997, 49.851781665000047 ], [ -119.483813294999948, 49.851379798000082 ], [ -119.485172454999969, 49.850827011000064 ], [ -119.485577086, 49.850662422000084 ], [ -119.485918378999955, 49.850521139000072 ], [ -119.486595708, 49.850245516000058 ], [ -119.486835630999963, 49.851333507000099 ], [ -119.486936213999954, 49.851606903000103 ], [ -119.486783900999953, 49.851670555000062 ], [ -119.48527630299999, 49.852300710000073 ], [ -119.484069315999974, 49.852794797000122 ], [ -119.482648475999937, 49.853378198000016 ], [ -119.483730123999962, 49.854476799000025 ], [ -119.484982551999977, 49.855732914000036 ], [ -119.485266705999891, 49.856017893000043 ], [ -119.485345274999958, 49.856171597000092 ], [ -119.485388803999982, 49.856258197000116 ], [ -119.485393287999941, 49.857206589000015 ], [ -119.485394814999964, 49.857539630000055 ], [ -119.485395426, 49.85766012100008 ], [ -119.483566318999962, 49.857659303000112 ], [ -119.48250459599997, 49.85766271800005 ], [ -119.481590056999949, 49.857662310000094 ], [ -119.479174162999982, 49.857663396000113 ], [ -119.477772471999984, 49.857651907000069 ], [ -119.477229946999955, 49.85763753600007 ], [ -119.476241782, 49.85761460500003 ], [ -119.475809174999981, 49.857593278000053 ], [ -119.474380384999918, 49.857429288000034 ], [ -119.474402324999943, 49.856660300000108 ], [ -119.474408628999981, 49.855841319000099 ], [ -119.47441144199999, 49.855472294000037 ], [ -119.474414258999971, 49.85510284300009 ], [ -119.474417767999924, 49.854647401000079 ], [ -119.474551015999978, 49.85408644400006 ], [ -119.474584605999951, 49.853939409000105 ], [ -119.474594120999953, 49.853922044000043 ], [ -119.474896212999965, 49.853371098000089 ], [ -119.474976723999944, 49.853250479000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170488418", "BldgCostT": "105696668", "sL_LossRatio": "0.983525970788001", "sL_AssetLoss": "23489.38411", "sL_BldgLoss": "23102.41931", "sL_StrLoss": "22906.67451", "sL_NStrLoss": "195.7448", "sL_ContLoss": "386.9648", "geom_point": "0101000020E610000061976E33D1DE5DC070408D7382EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482765492999931, 49.866154210000055 ], [ -119.482764897999985, 49.865395654000061 ], [ -119.480443058, 49.865400602000143 ], [ -119.480064969999916, 49.865329265000085 ], [ -119.47927269099992, 49.864970384000095 ], [ -119.478984788999966, 49.864903521 ], [ -119.47833440499997, 49.864890858000095 ], [ -119.47677540299999, 49.864893384000084 ], [ -119.475630316999954, 49.864892702000056 ], [ -119.474208268999959, 49.864875484000045 ], [ -119.474305580999967, 49.860971119000062 ], [ -119.474308189999959, 49.860884553000105 ], [ -119.47567956599994, 49.86088435900006 ], [ -119.476112409999956, 49.860884153000086 ], [ -119.476765911999962, 49.86088386300009 ], [ -119.478123535999927, 49.860883210000097 ], [ -119.479927753999945, 49.860882741000076 ], [ -119.480832779999929, 49.860882487000062 ], [ -119.483571317999946, 49.860901512000048 ], [ -119.484212857999978, 49.860907285000039 ], [ -119.485388924999938, 49.86091519400005 ], [ -119.486021878999964, 49.861136191000071 ], [ -119.486708478999944, 49.861375903000067 ], [ -119.488246811999971, 49.861869530000014 ], [ -119.488243771999976, 49.861988534000076 ], [ -119.488243668999957, 49.863702494000044 ], [ -119.48824466399995, 49.864368600000049 ], [ -119.488244903999927, 49.864526110000064 ], [ -119.48824218799993, 49.865406395000136 ], [ -119.485960247999955, 49.865402580000122 ], [ -119.485438518999956, 49.865401704000043 ], [ -119.48543461699991, 49.865840641000062 ], [ -119.485429882999981, 49.86637189900005 ], [ -119.485425342999918, 49.866829919000097 ], [ -119.485420771999941, 49.86728709900008 ], [ -119.482760811999952, 49.867282682000052 ], [ -119.482762730999966, 49.866824887000142 ], [ -119.482765492999931, 49.866154210000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277813334", "BldgCostT": "182083334", "sL_LossRatio": "0.999677015498424", "sL_AssetLoss": "35207.10729", "sL_BldgLoss": "35195.73594", "sL_StrLoss": "35132.43264", "sL_NStrLoss": "63.3033", "sL_ContLoss": "11.37135", "geom_point": "0101000020E61000005F21499C97DE5DC0256717C220EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.474203075, 49.866947077000098 ], [ -119.474208268999959, 49.864875484000045 ], [ -119.475630316999954, 49.864892702000056 ], [ -119.47677540299999, 49.864893384000084 ], [ -119.47833440499997, 49.864890858000095 ], [ -119.478984788999966, 49.864903521 ], [ -119.47927269099992, 49.864970384000095 ], [ -119.480064969999916, 49.865329265000085 ], [ -119.480443058, 49.865400602000143 ], [ -119.482764897999985, 49.865395654000061 ], [ -119.482765492999931, 49.866154210000055 ], [ -119.482762730999966, 49.866824887000142 ], [ -119.482760811999952, 49.867282682000052 ], [ -119.482760601999971, 49.867751558000101 ], [ -119.482760399999933, 49.868244405000112 ], [ -119.482760564, 49.868623742000075 ], [ -119.482760805999973, 49.869092396000063 ], [ -119.481501503999979, 49.869088592000047 ], [ -119.480242484, 49.869082899000098 ], [ -119.480242377999929, 49.870080794000025 ], [ -119.47889959099993, 49.870094495000096 ], [ -119.478903690999971, 49.87092551000007 ], [ -119.478909822999952, 49.87185059900002 ], [ -119.478912776999906, 49.872276591000052 ], [ -119.478916305999931, 49.872782916000119 ], [ -119.477151725999974, 49.872783778000063 ], [ -119.476066563999936, 49.872784284000026 ], [ -119.475865509999949, 49.872392993000084 ], [ -119.475743763999901, 49.872159945000078 ], [ -119.475289471999957, 49.871283068000118 ], [ -119.474711815999953, 49.870174832000068 ], [ -119.474360847999989, 49.86938626500006 ], [ -119.474228612999951, 49.868845574000041 ], [ -119.474199900999977, 49.868216236000073 ], [ -119.474201340999926, 49.867635870000072 ], [ -119.474203075, 49.866947077000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "275652250", "BldgCostT": "190105000", "sL_LossRatio": "0.999946054535826", "sL_AssetLoss": "41430.35998", "sL_BldgLoss": "41428.125", "sL_StrLoss": "41415.3091", "sL_NStrLoss": "12.8159", "sL_ContLoss": "2.23498", "geom_point": "0101000020E610000069D12B331FDE5DC01E5B8DF4BBEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.465895392999954, 49.867609381000136 ], [ -119.465894464, 49.86737183100005 ], [ -119.465699905999941, 49.866616155000088 ], [ -119.465426854999919, 49.866281931000081 ], [ -119.46540723599999, 49.865896727000106 ], [ -119.465105633999897, 49.865878675000033 ], [ -119.464348488999917, 49.864850342000075 ], [ -119.465704575, 49.864821788000079 ], [ -119.46923847299999, 49.86485821800008 ], [ -119.469235812999955, 49.864537504000047 ], [ -119.46923490799999, 49.864329683000015 ], [ -119.469341903, 49.86416731300006 ], [ -119.469712892999894, 49.863936593000098 ], [ -119.469719713999922, 49.863771792000058 ], [ -119.469748018, 49.862920095000042 ], [ -119.470004182999972, 49.862918485000066 ], [ -119.470025891999967, 49.862493129 ], [ -119.472225615999932, 49.862479459000113 ], [ -119.472226182999947, 49.860971388000031 ], [ -119.472227650999955, 49.860882980000056 ], [ -119.474308189999959, 49.860884553000105 ], [ -119.474305580999967, 49.860971119000062 ], [ -119.474208268999959, 49.864875484000045 ], [ -119.474203075, 49.866947077000098 ], [ -119.474201340999926, 49.867635870000072 ], [ -119.467402844999981, 49.867614233000083 ], [ -119.466522200999975, 49.867667093000122 ], [ -119.466521279999981, 49.867608003000015 ], [ -119.465895392999954, 49.867609381000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109412000", "BldgCostT": "72035000", "sL_LossRatio": "0.993478527665462", "sL_AssetLoss": "13512.77219", "sL_BldgLoss": "13424.64902", "sL_StrLoss": "13383.84272", "sL_NStrLoss": "40.8063", "sL_ContLoss": "88.12317", "geom_point": "0101000020E6100000FB6D570121DD5DC088BD0EA424EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.447031400999975, 49.869807629000029 ], [ -119.448699708999953, 49.868227890000107 ], [ -119.449659429999954, 49.867317544000045 ], [ -119.449698597999955, 49.867280401000087 ], [ -119.451917223999956, 49.86517568700009 ], [ -119.452253349000031, 49.864856780000139 ], [ -119.453156419, 49.864861965000031 ], [ -119.453295949999983, 49.86486273900001 ], [ -119.457779498999969, 49.864888279000134 ], [ -119.458712342999917, 49.864864872000055 ], [ -119.458962439999965, 49.864858608000048 ], [ -119.459723621999956, 49.864839498000038 ], [ -119.45995542499999, 49.864838179000031 ], [ -119.459894818999913, 49.865261155000063 ], [ -119.45952044799999, 49.865238727000126 ], [ -119.45949230399998, 49.865435142000067 ], [ -119.461510275999927, 49.865556020000014 ], [ -119.461020972999933, 49.868971441000085 ], [ -119.462327878999957, 49.869049705000037 ], [ -119.462046481999977, 49.871014049000038 ], [ -119.460705657999966, 49.871015967000112 ], [ -119.458979975999924, 49.871018428000163 ], [ -119.458632286999929, 49.871018936000077 ], [ -119.457157231999972, 49.871020999000045 ], [ -119.455822768999923, 49.871022878000119 ], [ -119.455709972999927, 49.871023014000123 ], [ -119.455321586999958, 49.871023567000087 ], [ -119.452383345999976, 49.871007407000022 ], [ -119.451353669999932, 49.871001728000074 ], [ -119.449472914, 49.870991330000074 ], [ -119.447928909999973, 49.870982763000015 ], [ -119.44580281599994, 49.87097093600012 ], [ -119.447031400999975, 49.869807629000029 ] ], [ [ -119.4555112, 49.868432913000035 ], [ -119.455719924, 49.866977255000123 ], [ -119.454603447999915, 49.866910325000013 ], [ -119.454612817999987, 49.867095147000036 ], [ -119.454195749999911, 49.867103982000032 ], [ -119.454209414999923, 49.867373562000068 ], [ -119.452695402999964, 49.867405620000049 ], [ -119.452573302999937, 49.868256768 ], [ -119.4555112, 49.868432913000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71503750", "BldgCostT": "47575000", "sL_LossRatio": "0.99984144804426", "sL_AssetLoss": "10131.75771", "sL_BldgLoss": "10130.1513", "sL_StrLoss": "10122.4", "sL_NStrLoss": "7.7513", "sL_ContLoss": "1.60641", "geom_point": "0101000020E6100000CF1BA34C15DE5DC0757CB43863EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.465815541999945, 49.87277184900006 ], [ -119.465809366999977, 49.87113697000008 ], [ -119.465930138, 49.8711089540001 ], [ -119.465939370999976, 49.871106814000065 ], [ -119.465983067999943, 49.87101641100007 ], [ -119.465938571999985, 49.87093699600004 ], [ -119.465918183999989, 49.870929526000104 ], [ -119.465805821999979, 49.870888414000071 ], [ -119.465688618999977, 49.870926552000071 ], [ -119.465629367999938, 49.871008804000084 ], [ -119.464832571999978, 49.871009981000057 ], [ -119.464787129999976, 49.87011760100004 ], [ -119.465204219999947, 49.870108729000108 ], [ -119.465053208999933, 49.867143374000115 ], [ -119.465470274999973, 49.867134500000077 ], [ -119.465426854999919, 49.866281931000081 ], [ -119.465699905999941, 49.866616155000088 ], [ -119.465894464, 49.86737183100005 ], [ -119.465895392999954, 49.867609381000136 ], [ -119.466521279999981, 49.867608003000015 ], [ -119.466522200999975, 49.867667093000122 ], [ -119.467402844999981, 49.867614233000083 ], [ -119.474201340999926, 49.867635870000072 ], [ -119.474199900999977, 49.868216236000073 ], [ -119.474228612999951, 49.868845574000041 ], [ -119.474360847999989, 49.86938626500006 ], [ -119.474711815999953, 49.870174832000068 ], [ -119.475289471999957, 49.871283068000118 ], [ -119.475743763999901, 49.872159945000078 ], [ -119.475865509999949, 49.872392993000084 ], [ -119.476066563999936, 49.872784284000026 ], [ -119.475365536999959, 49.872783041000069 ], [ -119.474678374999911, 49.87278261299999 ], [ -119.474187894999929, 49.87278260000005 ], [ -119.473393287999912, 49.872782561000115 ], [ -119.47154557099995, 49.872780472000045 ], [ -119.470547102999916, 49.8727785560001 ], [ -119.470308062, 49.872749824000067 ], [ -119.470059100999961, 49.872719889000109 ], [ -119.469705036999926, 49.872776966000131 ], [ -119.469367025999958, 49.872776626000082 ], [ -119.468920120999911, 49.872776062000113 ], [ -119.465815541999945, 49.87277184900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999956080204481", "sL_AssetLoss": "380.69394", "sL_BldgLoss": "380.67722", "sL_StrLoss": "380.6", "sL_NStrLoss": "0.07722", "sL_ContLoss": "0.01672", "geom_point": "0101000020E6100000EC35DAFDACDD5DC095FF98EFC3EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.462642852999977, 49.86483592900003 ], [ -119.464348488999917, 49.864850342000075 ], [ -119.465105633999897, 49.865878675000033 ], [ -119.462515712999945, 49.865723617000121 ], [ -119.462642852999977, 49.86483592900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "206430150", "BldgCostT": "128798328", "sL_LossRatio": "0.95902273259913", "sL_AssetLoss": "23628.30519", "sL_BldgLoss": "22660.08181", "sL_StrLoss": "22287.3574", "sL_NStrLoss": "372.72441", "sL_ContLoss": "968.22338", "geom_point": "0101000020E6100000BD943E9D00DE5DC0BC4CFA390DF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.468662174999977, 49.877574705000022 ], [ -119.468663097999965, 49.87696339399999 ], [ -119.466636103999917, 49.876943292000142 ], [ -119.465774374999967, 49.876814994000021 ], [ -119.465793488999935, 49.875498636000096 ], [ -119.465806182000023, 49.874622493000054 ], [ -119.465808226999968, 49.874221118000087 ], [ -119.465809280999963, 49.874005153000056 ], [ -119.465810106999982, 49.873843424000022 ], [ -119.465811523999946, 49.873564577000074 ], [ -119.465815541999945, 49.87277184900006 ], [ -119.468920120999911, 49.872776062000113 ], [ -119.469367025999958, 49.872776626000082 ], [ -119.469705036999926, 49.872776966000131 ], [ -119.470059100999961, 49.872719889000109 ], [ -119.470308062, 49.872749824000067 ], [ -119.470547102999916, 49.8727785560001 ], [ -119.47154557099995, 49.872780472000045 ], [ -119.471529201999942, 49.874847390000106 ], [ -119.471523388999941, 49.875962309000073 ], [ -119.47154529, 49.876951614000092 ], [ -119.471559196999976, 49.877782310000086 ], [ -119.470327380999962, 49.877808911000145 ], [ -119.47014291, 49.87789719400007 ], [ -119.470105798999896, 49.877990714000092 ], [ -119.470081184999927, 49.87873868900008 ], [ -119.467169993999931, 49.878727200000064 ], [ -119.46718488, 49.877843110000093 ], [ -119.467238215999913, 49.8777631990001 ], [ -119.467390477999942, 49.877704594000171 ], [ -119.468111291999918, 49.877695305000046 ], [ -119.468628087999932, 49.87761789100005 ], [ -119.468662174999977, 49.877574705000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1109555800", "BldgCostT": "666686736", "sL_LossRatio": "0.789761246513553", "sL_AssetLoss": "27096.569379", "sL_BldgLoss": "21399.820409", "sL_StrLoss": "19222.45289", "sL_NStrLoss": "2177.367519", "sL_ContLoss": "5696.74897", "geom_point": "0101000020E6100000F122EF03EDDC5DC0301552C06EF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.437725776999955, 49.885924691000049 ], [ -119.437713428999942, 49.883241856000055 ], [ -119.443172537999928, 49.883221150000075 ], [ -119.447561924999931, 49.883235335000087 ], [ -119.44758666199999, 49.882741949000014 ], [ -119.447618936999902, 49.881962746000056 ], [ -119.448647554, 49.881970285000094 ], [ -119.449810643999967, 49.88197961200003 ], [ -119.449799105999944, 49.88186144600008 ], [ -119.449777306999977, 49.878850248000099 ], [ -119.449789018999979, 49.877279643000065 ], [ -119.449787629999918, 49.877153130000103 ], [ -119.448355718999892, 49.877153021000026 ], [ -119.44333280799999, 49.877176652000102 ], [ -119.443172224999941, 49.877176040000123 ], [ -119.443183773999976, 49.876901306000036 ], [ -119.443256347999977, 49.876765681000045 ], [ -119.443236625999972, 49.876416803000041 ], [ -119.443104017999971, 49.876046715000058 ], [ -119.44258674699995, 49.875389558000073 ], [ -119.442451934999966, 49.875218280000141 ], [ -119.442207412999963, 49.874752059000066 ], [ -119.442106606999943, 49.874646663000057 ], [ -119.44183367, 49.874368375000074 ], [ -119.441743488999947, 49.874286213000055 ], [ -119.442529098999955, 49.873903536000057 ], [ -119.44296258599995, 49.873560194000071 ], [ -119.443154997999898, 49.873475138000153 ], [ -119.44580281599994, 49.87097093600012 ], [ -119.447928909999973, 49.870982763000015 ], [ -119.449472914, 49.870991330000074 ], [ -119.451353669999932, 49.871001728000074 ], [ -119.452383345999976, 49.871007407000022 ], [ -119.455321586999958, 49.871023567000087 ], [ -119.455709972999927, 49.871023014000123 ], [ -119.455822768999923, 49.871022878000119 ], [ -119.457157231999972, 49.871020999000045 ], [ -119.458632286999929, 49.871018936000077 ], [ -119.458979975999924, 49.871018428000163 ], [ -119.460705657999966, 49.871015967000112 ], [ -119.462046481999977, 49.871014049000038 ], [ -119.461814805999936, 49.872631191000075 ], [ -119.457457448999918, 49.872370190000083 ], [ -119.457285062999972, 49.873572593000027 ], [ -119.452429227, 49.873281526000021 ], [ -119.452419995999932, 49.873345864000058 ], [ -119.453171264999966, 49.873390910000133 ], [ -119.453175656999932, 49.873360298000108 ], [ -119.458715613999985, 49.873692315000049 ], [ -119.458512603999978, 49.875108557000047 ], [ -119.460190712999946, 49.875072940000109 ], [ -119.460326208999945, 49.874127463000058 ], [ -119.462109456999954, 49.87423424800005 ], [ -119.462417831999971, 49.872081705000078 ], [ -119.465440711999946, 49.872262655000029 ], [ -119.465731175000016, 49.872256474000039 ], [ -119.465689974999961, 49.871447742000058 ], [ -119.465272871999986, 49.871456616000053 ], [ -119.465259141, 49.871187040000081 ], [ -119.464842038999947, 49.871195913000065 ], [ -119.464832571999978, 49.871009981000057 ], [ -119.465629367999938, 49.871008804000084 ], [ -119.465688618999977, 49.870926552000071 ], [ -119.465805821999979, 49.870888414000071 ], [ -119.465918183999989, 49.870929526000104 ], [ -119.465938571999985, 49.87093699600004 ], [ -119.465983067999943, 49.87101641100007 ], [ -119.465939370999976, 49.871106814000065 ], [ -119.465930138, 49.8711089540001 ], [ -119.465809366999977, 49.87113697000008 ], [ -119.465815541999945, 49.87277184900006 ], [ -119.465811523999946, 49.873564577000074 ], [ -119.465810106999982, 49.873843424000022 ], [ -119.465809280999963, 49.874005153000056 ], [ -119.465808226999968, 49.874221118000087 ], [ -119.465806182000023, 49.874622493000054 ], [ -119.465793488999935, 49.875498636000096 ], [ -119.465774374999967, 49.876814994000021 ], [ -119.465034320999933, 49.876793302000081 ], [ -119.463828425999921, 49.876791503000035 ], [ -119.461042592999945, 49.876787306000068 ], [ -119.461025264999975, 49.87925794900012 ], [ -119.460990051999957, 49.879669416000041 ], [ -119.460848584999951, 49.880100734000031 ], [ -119.460806890999962, 49.880635543000061 ], [ -119.458210712999957, 49.880638097000094 ], [ -119.458205085999936, 49.881865893000054 ], [ -119.454658878999922, 49.881877389000053 ], [ -119.454660157999939, 49.882014707000081 ], [ -119.454658902999924, 49.883143460000099 ], [ -119.454649649999922, 49.884152505000024 ], [ -119.454645941999942, 49.884987457000101 ], [ -119.454644779999938, 49.885256843000022 ], [ -119.454643659999945, 49.885508379000036 ], [ -119.454639453999903, 49.886452724000016 ], [ -119.454639315999941, 49.886486508000118 ], [ -119.45444752499999, 49.886348966000064 ], [ -119.45336396499998, 49.885571832000025 ], [ -119.453302093999923, 49.885559046000068 ], [ -119.451361069999948, 49.885525759000103 ], [ -119.450227116999912, 49.885701692000097 ], [ -119.44915846899994, 49.886017580000029 ], [ -119.449077951999953, 49.88607305500004 ], [ -119.448798352999972, 49.886116086000115 ], [ -119.448414651999911, 49.886175181000098 ], [ -119.444212072999974, 49.886778633000027 ], [ -119.443770646999951, 49.886857841000072 ], [ -119.443154474, 49.886981814000073 ], [ -119.442042777999973, 49.887229872000106 ], [ -119.437544223999964, 49.888191500000104 ], [ -119.437610594, 49.888085090000096 ], [ -119.437727815999921, 49.887707501000072 ], [ -119.437727306999989, 49.887264666000057 ], [ -119.437725776999955, 49.885924691000049 ] ], [ [ -119.452024719999969, 49.87605563100005 ], [ -119.452345360999914, 49.873821021000026 ], [ -119.448334604999928, 49.873580443000087 ], [ -119.448216021999912, 49.874406398000126 ], [ -119.447497246999916, 49.874363268000053 ], [ -119.447438108999975, 49.874775116000123 ], [ -119.447274053999976, 49.87476527000014 ], [ -119.447247309999938, 49.874951519000057 ], [ -119.446992334999948, 49.874936218000059 ], [ -119.446818958, 49.876143526000078 ], [ -119.446350732, 49.876115426000105 ], [ -119.44634773199999, 49.876136323000047 ], [ -119.450681676999935, 49.876396343000103 ], [ -119.45061008199994, 49.876895163000079 ], [ -119.450933506999959, 49.876888323000088 ], [ -119.450919852999945, 49.87661874300003 ], [ -119.451337004999957, 49.87660991900006 ], [ -119.451323349999882, 49.876340339000102 ], [ -119.451740498999982, 49.876331514000086 ], [ -119.451726841999971, 49.876061934000091 ], [ -119.452024719999969, 49.87605563100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "511922193", "BldgCostT": "331736288", "sL_LossRatio": "0.891886040207428", "sL_AssetLoss": "13970.752", "sL_BldgLoss": "12460.31868", "sL_StrLoss": "11712.08527", "sL_NStrLoss": "748.23341", "sL_ContLoss": "1510.43332", "geom_point": "0101000020E6100000585262959ADD5DC046CDC3AE92F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.465034320999933, 49.876793302000081 ], [ -119.465774374999967, 49.876814994000021 ], [ -119.465771679999989, 49.87928284500002 ], [ -119.465769902999966, 49.879885001000069 ], [ -119.465769191999968, 49.880138050000021 ], [ -119.465768666999963, 49.880318469000038 ], [ -119.462780954999943, 49.881620643000112 ], [ -119.462230638999984, 49.881863133000067 ], [ -119.461947571999971, 49.881986162000061 ], [ -119.459944589999949, 49.88199405400006 ], [ -119.458142458999973, 49.882001122000098 ], [ -119.456729058999912, 49.882006651000026 ], [ -119.454660157999939, 49.882014707000081 ], [ -119.454658878999922, 49.881877389000053 ], [ -119.458205085999936, 49.881865893000054 ], [ -119.458210712999957, 49.880638097000094 ], [ -119.460806890999962, 49.880635543000061 ], [ -119.460848584999951, 49.880100734000031 ], [ -119.460990051999957, 49.879669416000041 ], [ -119.461025264999975, 49.87925794900012 ], [ -119.461042592999945, 49.876787306000068 ], [ -119.463828425999921, 49.876791503000035 ], [ -119.465034320999933, 49.876793302000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227775750", "BldgCostT": "146490000", "sL_LossRatio": "0.930614830041173", "sL_AssetLoss": "8611.24676", "sL_BldgLoss": "8013.75394", "sL_StrLoss": "7737.50194", "sL_NStrLoss": "276.252", "sL_ContLoss": "597.49282", "geom_point": "0101000020E6100000B16512586DDD5DC0B97681163BF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.454645941999942, 49.884987457000101 ], [ -119.454649649999922, 49.884152505000024 ], [ -119.454658902999924, 49.883143460000099 ], [ -119.454660157999939, 49.882014707000081 ], [ -119.456729058999912, 49.882006651000026 ], [ -119.458142458999973, 49.882001122000098 ], [ -119.459944589999949, 49.88199405400006 ], [ -119.461947571999971, 49.881986162000061 ], [ -119.462230638999984, 49.881863133000067 ], [ -119.462780954999943, 49.881620643000112 ], [ -119.465768666999963, 49.880318469000038 ], [ -119.465772966999964, 49.880833591000027 ], [ -119.465776424999959, 49.881247246000065 ], [ -119.465781617999951, 49.881867035000035 ], [ -119.465776966999954, 49.881899417000085 ], [ -119.46576621299999, 49.881974475000085 ], [ -119.46570742199998, 49.882385495000058 ], [ -119.465476310999975, 49.882662391000117 ], [ -119.464639007999935, 49.883113502000057 ], [ -119.462653690999943, 49.884195677000072 ], [ -119.462529170999971, 49.884313794000064 ], [ -119.463521579999977, 49.884739793000087 ], [ -119.463860283999963, 49.88480388700011 ], [ -119.464324182999974, 49.884891686000067 ], [ -119.464508096999936, 49.884925309000067 ], [ -119.46517342199999, 49.885151389000029 ], [ -119.465298216999912, 49.885193792000059 ], [ -119.465668601999937, 49.885261093000047 ], [ -119.466930593999933, 49.885258904000139 ], [ -119.467745296999936, 49.88525799400005 ], [ -119.46773871299996, 49.886269894000087 ], [ -119.466810688999928, 49.886271292000075 ], [ -119.465077896999929, 49.886273298000106 ], [ -119.463376799999978, 49.886276747000046 ], [ -119.463182068999956, 49.886277151000087 ], [ -119.463107138999959, 49.886277253000117 ], [ -119.462830487999923, 49.886277210000046 ], [ -119.462502132999958, 49.886277160000141 ], [ -119.462049830999916, 49.886362074000075 ], [ -119.461707012999923, 49.886531187000067 ], [ -119.460838546000019, 49.887179945000042 ], [ -119.460521135999912, 49.887395728000058 ], [ -119.460202771999946, 49.887521153000144 ], [ -119.459923417999974, 49.887598344000033 ], [ -119.459635071999955, 49.887640676000068 ], [ -119.459190426999982, 49.88764173000007 ], [ -119.458836942999966, 49.887642567000093 ], [ -119.458356175999953, 49.88766252300011 ], [ -119.457848511999927, 49.887763070000133 ], [ -119.457674167999969, 49.887825643000049 ], [ -119.457472219999943, 49.887898094000064 ], [ -119.457220797999966, 49.887988306000103 ], [ -119.457072188000012, 49.888041642000069 ], [ -119.45689842799996, 49.888103497000024 ], [ -119.456615593, 49.888204839000096 ], [ -119.455793415999963, 49.888453317000071 ], [ -119.455691702999971, 49.888484067000043 ], [ -119.455673527999949, 49.888489561000078 ], [ -119.455406163999939, 49.888570363000071 ], [ -119.455045683999913, 49.8886480950001 ], [ -119.454539000999944, 49.888653856000069 ], [ -119.454551607999974, 49.888419812000052 ], [ -119.454595998999963, 49.887594378000109 ], [ -119.454627377999941, 49.886946983000044 ], [ -119.454637410999936, 49.886759640000072 ], [ -119.454638159999959, 49.886745358000013 ], [ -119.454639114, 49.88653019700007 ], [ -119.454639315999941, 49.886486508000118 ], [ -119.454639453999903, 49.886452724000016 ], [ -119.454643659999945, 49.885508379000036 ], [ -119.454644779999938, 49.885256843000022 ], [ -119.454645941999942, 49.884987457000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "364408583", "BldgCostT": "242378333", "sL_LossRatio": "0.997904102549365", "sL_AssetLoss": "24524.100635", "sL_BldgLoss": "24472.700635", "sL_StrLoss": "24454.100635", "sL_NStrLoss": "18.6", "sL_ContLoss": "51.4", "geom_point": "0101000020E6100000E2DBC37705DC5DC0B4DC36DF4AF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439610683999916, 49.892509755000027 ], [ -119.439601276999895, 49.892323281000088 ], [ -119.439551480999953, 49.892320290000029 ], [ -119.439523967999989, 49.892511581000079 ], [ -119.439610683999916, 49.892509755000027 ], [ -119.43963787899996, 49.893048919000087 ], [ -119.44047247499995, 49.893031346000093 ], [ -119.440486076999946, 49.893300928000031 ], [ -119.440903375999937, 49.89329214 ], [ -119.44088977199999, 49.893022558000027 ], [ -119.441724363999981, 49.893004976000064 ], [ -119.441697144999949, 49.892465813000079 ], [ -119.442949019000011, 49.892439430000124 ], [ -119.442962635999933, 49.892709012000047 ], [ -119.444261925999953, 49.892681615000093 ], [ -119.443849043999975, 49.894275170000064 ], [ -119.443562463999939, 49.895395047000108 ], [ -119.44351613000002, 49.895396024000071 ], [ -119.443523726999928, 49.895546413000062 ], [ -119.442676142999943, 49.8988581730001 ], [ -119.442654654999899, 49.89892353300008 ], [ -119.442926841999963, 49.899733985000061 ], [ -119.44266659699997, 49.899378891000048 ], [ -119.442480705, 49.898902610000064 ], [ -119.442457533, 49.898788857000092 ], [ -119.442392145999918, 49.898467778000089 ], [ -119.442262813999932, 49.897833089000123 ], [ -119.442222611999924, 49.897635501000082 ], [ -119.442250882999957, 49.89732209300012 ], [ -119.442378324999979, 49.897038903000102 ], [ -119.442839201999931, 49.896409217000091 ], [ -119.44288609499992, 49.89628064900009 ], [ -119.442915301999946, 49.896200596000057 ], [ -119.442914436999942, 49.896034162000085 ], [ -119.442914208, 49.895984698000085 ], [ -119.44282409000003, 49.895785196000055 ], [ -119.44268320599997, 49.895617802000089 ], [ -119.442501004999926, 49.895475887 ], [ -119.442257602999987, 49.895370108000115 ], [ -119.441867375999934, 49.895265405000018 ], [ -119.441593819999966, 49.895253508000053 ], [ -119.441271221999955, 49.895281097000129 ], [ -119.440421607999951, 49.89546479400007 ], [ -119.440172699999948, 49.895547057000023 ], [ -119.439554399999935, 49.895751386000079 ], [ -119.439023002999974, 49.896044609000114 ], [ -119.438076488999982, 49.896660946000075 ], [ -119.437937400999886, 49.89675149300011 ], [ -119.437689323999948, 49.896989506000168 ], [ -119.436918882999947, 49.898089198000058 ], [ -119.436740901999954, 49.89828710900008 ], [ -119.436439307999947, 49.898508197000098 ], [ -119.436028211999968, 49.898703911000027 ], [ -119.434700690999946, 49.899225591000047 ], [ -119.434342382999944, 49.899316903000077 ], [ -119.433889425999936, 49.899356499000085 ], [ -119.433172200999934, 49.899318795000056 ], [ -119.432763118999929, 49.899238203000039 ], [ -119.431876984999988, 49.899014285000078 ], [ -119.43148260199996, 49.899035713000067 ], [ -119.431157300999985, 49.899130011000082 ], [ -119.430914, 49.899276113000084 ], [ -119.430375376999933, 49.89980359000004 ], [ -119.430067196999957, 49.900002702000037 ], [ -119.430034950999982, 49.900013049000066 ], [ -119.429756492999928, 49.90010228800007 ], [ -119.429460875999922, 49.900145902000069 ], [ -119.429134610999967, 49.900149798 ], [ -119.428854387999962, 49.900105883000016 ], [ -119.428827169999977, 49.900097290000083 ], [ -119.428546432999923, 49.900008457000077 ], [ -119.428533590999962, 49.90000440000005 ], [ -119.428260978999944, 49.899858897000051 ], [ -119.428037091999983, 49.89968639300006 ], [ -119.427533902999954, 49.899114279000074 ], [ -119.427300490000036, 49.898929571000089 ], [ -119.427031075999963, 49.898791461000044 ], [ -119.426760083999966, 49.898702954000086 ], [ -119.426398066999965, 49.898645054000028 ], [ -119.426514947999934, 49.897843836000078 ], [ -119.426394551999962, 49.897389589000049 ], [ -119.425991044999961, 49.896407156000059 ], [ -119.42596614899999, 49.896211488000105 ], [ -119.426034975999983, 49.895976340000075 ], [ -119.426148109999957, 49.89572485500009 ], [ -119.427034674999959, 49.893723728000083 ], [ -119.427260696999966, 49.893386931000087 ], [ -119.427692167999908, 49.893059814000019 ], [ -119.427895875000033, 49.892957725000073 ], [ -119.428446803999961, 49.892681657000018 ], [ -119.428823513999959, 49.892559778000098 ], [ -119.429237589999957, 49.89249897800012 ], [ -119.430921934999958, 49.892366674000101 ], [ -119.431028518999952, 49.89235830100008 ], [ -119.431551391999932, 49.892249802000023 ], [ -119.4317584019999, 49.892170997000079 ], [ -119.432117491999932, 49.89195780900009 ], [ -119.43285038399992, 49.89136160400011 ], [ -119.434108504999983, 49.890475511000083 ], [ -119.43450708899995, 49.890259191000098 ], [ -119.436033501999987, 49.889605898000049 ], [ -119.436387382999911, 49.889409606000129 ], [ -119.436669287999948, 49.88918899500004 ], [ -119.43732550699994, 49.888542097000034 ], [ -119.437491492999968, 49.888276025000131 ], [ -119.437544223999964, 49.888191500000104 ], [ -119.442042777999973, 49.887229872000106 ], [ -119.443154474, 49.886981814000073 ], [ -119.443770646999951, 49.886857841000072 ], [ -119.444212072999974, 49.886778633000027 ], [ -119.448414651999911, 49.886175181000098 ], [ -119.448798352999972, 49.886116086000115 ], [ -119.449077951999953, 49.88607305500004 ], [ -119.44915846899994, 49.886017580000029 ], [ -119.450227116999912, 49.885701692000097 ], [ -119.451361069999948, 49.885525759000103 ], [ -119.453302093999923, 49.885559046000068 ], [ -119.45336396499998, 49.885571832000025 ], [ -119.45444752499999, 49.886348966000064 ], [ -119.454639315999941, 49.886486508000118 ], [ -119.454639114, 49.88653019700007 ], [ -119.454638159999959, 49.886745358000013 ], [ -119.454637410999936, 49.886759640000072 ], [ -119.454627377999941, 49.886946983000044 ], [ -119.454595998999963, 49.887594378000109 ], [ -119.454551607999974, 49.888419812000052 ], [ -119.454539000999944, 49.888653856000069 ], [ -119.45430429699999, 49.888653329000086 ], [ -119.454159280999974, 49.888622077000086 ], [ -119.453796037999936, 49.88842690300006 ], [ -119.453546239999952, 49.88833699 ], [ -119.452776751999977, 49.888380590000054 ], [ -119.452556189999882, 49.888393099000055 ], [ -119.452362775999944, 49.888404047000073 ], [ -119.452190959999911, 49.888413786000079 ], [ -119.451775487999925, 49.888465637000095 ], [ -119.451480109999963, 49.888547281000058 ], [ -119.45093316, 49.888747588000051 ], [ -119.449912275, 49.889121519000078 ], [ -119.44946927899997, 49.889180483000054 ], [ -119.449449251999965, 49.889183151000132 ], [ -119.448918791, 49.889183014000103 ], [ -119.448138072999924, 49.889182838000124 ], [ -119.447998512999959, 49.889182807000111 ], [ -119.446495924999965, 49.889182414000061 ], [ -119.44568879, 49.889182226000109 ], [ -119.445201378999968, 49.889182086000069 ], [ -119.444925239999961, 49.890214757000102 ], [ -119.444912827999943, 49.889969202000039 ], [ -119.44366102, 49.889995605000102 ], [ -119.443647399999961, 49.889726024000026 ], [ -119.443230132999986, 49.889734822000037 ], [ -119.443216515999978, 49.889465241000018 ], [ -119.442381984999926, 49.889482832000063 ], [ -119.442354760999962, 49.888943669000106 ], [ -119.441152547999977, 49.888969001000063 ], [ -119.440763332999936, 49.89167588100009 ], [ -119.440821745999955, 49.891674650000056 ], [ -119.440862561999921, 49.892483394000052 ], [ -119.439610683999916, 49.892509755000027 ] ], [ [ -119.442300317999965, 49.887865343000037 ], [ -119.442286706999965, 49.887595762000103 ], [ -119.440200455999943, 49.887639712000123 ], [ -119.440214053999924, 49.887909293000078 ], [ -119.438962295999914, 49.887935645 ], [ -119.438979296999932, 49.888272842000092 ], [ -119.44072762399999, 49.888377845000072 ], [ -119.440670478999962, 49.888775275000057 ], [ -119.441094431999957, 49.888800733000025 ], [ -119.441062163999959, 49.888161300000064 ], [ -119.441479418999933, 49.888152510000019 ], [ -119.441465812999965, 49.887882928000103 ], [ -119.442300317999965, 49.887865343000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "122.5", "sL_BldgLoss": "122.5", "sL_StrLoss": "122.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FDC931BC46DC5DC02E46D1C102F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.441171000999987, 49.890317953000142 ], [ -119.442422821999969, 49.890291577000092 ], [ -119.442463658999927, 49.891100321000117 ], [ -119.4412118199999, 49.891126698000086 ], [ -119.441171000999987, 49.890317953000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "109234000", "BldgCostT": "75070000", "sL_LossRatio": "1", "sL_AssetLoss": "12622", "sL_BldgLoss": "12622", "sL_StrLoss": "12622", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000585B2D87C8DC5DC0854587B8A0F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.444204987999925, 49.900684907000048 ], [ -119.44372460799994, 49.900429406000036 ], [ -119.443316204999988, 49.900139402000029 ], [ -119.443189216999926, 49.900012835000041 ], [ -119.442973910999939, 49.899798188000034 ], [ -119.442926841999963, 49.899733985000061 ], [ -119.442654654999899, 49.89892353300008 ], [ -119.442676142999943, 49.8988581730001 ], [ -119.443523726999928, 49.895546413000062 ], [ -119.443570613999938, 49.896474347000058 ], [ -119.445239914999959, 49.896439137000073 ], [ -119.445212652999942, 49.895899977000056 ], [ -119.446464613999964, 49.89587355500008 ], [ -119.44645097499999, 49.8956039730001 ], [ -119.446868292999952, 49.895595164000042 ], [ -119.446854653999935, 49.89532558400002 ], [ -119.44727196799991, 49.895316772000122 ], [ -119.447244685, 49.894777611000059 ], [ -119.447661993999986, 49.894768798 ], [ -119.447640560999901, 49.894345319000081 ], [ -119.446621856999954, 49.894284214000081 ], [ -119.446644350999946, 49.894127654000101 ], [ -119.446628667999946, 49.894126714000102 ], [ -119.446999664999936, 49.891544366000083 ], [ -119.446663719999933, 49.891551460000109 ], [ -119.446650081999948, 49.891281878000051 ], [ -119.445815522999922, 49.891299495000091 ], [ -119.445774628999956, 49.890490754 ], [ -119.445357352999935, 49.890499559000041 ], [ -119.445343725999962, 49.890229978000029 ], [ -119.444926453999969, 49.89023878299999 ], [ -119.444925239999961, 49.890214757000102 ], [ -119.445201378999968, 49.889182086000069 ], [ -119.44568879, 49.889182226000109 ], [ -119.446495924999965, 49.889182414000061 ], [ -119.447998512999959, 49.889182807000111 ], [ -119.448138072999924, 49.889182838000124 ], [ -119.448918791, 49.889183014000103 ], [ -119.449449251999965, 49.889183151000132 ], [ -119.44946927899997, 49.889180483000054 ], [ -119.449912275, 49.889121519000078 ], [ -119.45093316, 49.888747588000051 ], [ -119.451480109999963, 49.888547281000058 ], [ -119.451775487999925, 49.888465637000095 ], [ -119.452190959999911, 49.888413786000079 ], [ -119.452362775999944, 49.888404047000073 ], [ -119.452556189999882, 49.888393099000055 ], [ -119.452776751999977, 49.888380590000054 ], [ -119.453546239999952, 49.88833699 ], [ -119.453796037999936, 49.88842690300006 ], [ -119.454159280999974, 49.888622077000086 ], [ -119.45430429699999, 49.888653329000086 ], [ -119.454539000999944, 49.888653856000069 ], [ -119.45453425, 49.889222247000106 ], [ -119.454533903999959, 49.889266718000044 ], [ -119.454532536999949, 49.889429172000121 ], [ -119.454527341999921, 49.89003030600005 ], [ -119.45428891499995, 49.890036800000047 ], [ -119.454255721999942, 49.894348602000079 ], [ -119.454493779999922, 49.894344809000074 ], [ -119.454465659999983, 49.89545736300007 ], [ -119.454442115999953, 49.896389800000094 ], [ -119.454438868999972, 49.896789317000071 ], [ -119.454425402999931, 49.898454001000097 ], [ -119.455246589999916, 49.898458007000031 ], [ -119.455225016999933, 49.900002 ], [ -119.455213121999918, 49.90085359600009 ], [ -119.45477112899999, 49.901012465000129 ], [ -119.454627656999975, 49.901064019000032 ], [ -119.454409906999928, 49.901142311000065 ], [ -119.454057904999956, 49.901179893000126 ], [ -119.453815616999947, 49.901140058000074 ], [ -119.453285236999989, 49.901155240000094 ], [ -119.450896717999925, 49.901127703000093 ], [ -119.450723492999899, 49.901125121000078 ], [ -119.45003608899998, 49.901114906000046 ], [ -119.4497391, 49.901139596000057 ], [ -119.448125894000015, 49.901413104000071 ], [ -119.447419285999956, 49.901447496000074 ], [ -119.446711879999938, 49.90140960900009 ], [ -119.446034702999981, 49.901287692000032 ], [ -119.444867706999915, 49.90093681100015 ], [ -119.444678150999962, 49.900864743000071 ], [ -119.444425103999961, 49.900768572000089 ], [ -119.444204987999925, 49.900684907000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "252.4", "sL_BldgLoss": "252.4", "sL_StrLoss": "252.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B0B2E6F71DC5DC0497186C971F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.443849043999975, 49.894275170000064 ], [ -119.444261925999953, 49.892681615000093 ], [ -119.444631806999936, 49.892673812000076 ], [ -119.44464543299992, 49.892943394000042 ], [ -119.445062727999954, 49.892934590000081 ], [ -119.445144504, 49.894552074000089 ], [ -119.44472719399991, 49.894560878000092 ], [ -119.444754448999973, 49.895100039000106 ], [ -119.444337135999987, 49.895108842000113 ], [ -119.444350760999939, 49.895378423000082 ], [ -119.443562463999939, 49.895395047000108 ], [ -119.443849043999975, 49.894275170000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "378575289", "BldgCostT": "222893509", "sL_LossRatio": "0.960505266927644", "sL_AssetLoss": "25745.205016", "sL_BldgLoss": "24728.405016", "sL_StrLoss": "24360.405016", "sL_NStrLoss": "368", "sL_ContLoss": "1016.8", "geom_point": "0101000020E6100000BC3A070970DA5DC0D58B3FBCF4F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.388849083999929, 49.916983306000176 ], [ -119.389608147999965, 49.916541583000026 ], [ -119.39244997299997, 49.914889210000098 ], [ -119.393447811999934, 49.914371557000088 ], [ -119.395801106999926, 49.913157919000042 ], [ -119.395932155999972, 49.913090341000022 ], [ -119.398077436999955, 49.911967383000061 ], [ -119.398643447999959, 49.91165027200006 ], [ -119.399756253999939, 49.910946264000124 ], [ -119.401299133999899, 49.909511431000055 ], [ -119.405220761999942, 49.905306835000054 ], [ -119.405874796999981, 49.904604280000044 ], [ -119.405961181999928, 49.904511507000095 ], [ -119.406056560999957, 49.904409063000152 ], [ -119.408616973999983, 49.90163758300011 ], [ -119.408951347999903, 49.901277556000046 ], [ -119.409226527999934, 49.90097898700008 ], [ -119.412387822999975, 49.897577093000059 ], [ -119.414087351999925, 49.895747973000027 ], [ -119.414421532999924, 49.895388842000109 ], [ -119.414988427999916, 49.895423372000025 ], [ -119.417441249999982, 49.895572802000096 ], [ -119.429026961999952, 49.8907653320001 ], [ -119.43116312399998, 49.889763862000059 ], [ -119.432835508999958, 49.889235458000066 ], [ -119.437544223999964, 49.888191500000104 ], [ -119.437491492999968, 49.888276025000131 ], [ -119.43732550699994, 49.888542097000034 ], [ -119.436669287999948, 49.88918899500004 ], [ -119.436387382999911, 49.889409606000129 ], [ -119.436033501999987, 49.889605898000049 ], [ -119.43450708899995, 49.890259191000098 ], [ -119.434108504999983, 49.890475511000083 ], [ -119.43285038399992, 49.89136160400011 ], [ -119.432117491999932, 49.89195780900009 ], [ -119.4317584019999, 49.892170997000079 ], [ -119.431551391999932, 49.892249802000023 ], [ -119.431028518999952, 49.89235830100008 ], [ -119.430921934999958, 49.892366674000101 ], [ -119.429237589999957, 49.89249897800012 ], [ -119.428823513999959, 49.892559778000098 ], [ -119.428446803999961, 49.892681657000018 ], [ -119.427895875000033, 49.892957725000073 ], [ -119.427692167999908, 49.893059814000019 ], [ -119.427260696999966, 49.893386931000087 ], [ -119.427034674999959, 49.893723728000083 ], [ -119.426148109999957, 49.89572485500009 ], [ -119.426034975999983, 49.895976340000075 ], [ -119.42596614899999, 49.896211488000105 ], [ -119.425991044999961, 49.896407156000059 ], [ -119.426394551999962, 49.897389589000049 ], [ -119.426514947999934, 49.897843836000078 ], [ -119.426398066999965, 49.898645054000028 ], [ -119.426292053999987, 49.899080538000128 ], [ -119.426100110999982, 49.89986880000005 ], [ -119.426035758, 49.899999950000073 ], [ -119.425532012999938, 49.901026694000024 ], [ -119.424914596999926, 49.901576494000075 ], [ -119.425133103999926, 49.90167998500003 ], [ -119.425314377999911, 49.901799200000077 ], [ -119.425485306999974, 49.902048791000055 ], [ -119.425641531999972, 49.902645216000153 ], [ -119.42566558499999, 49.902737001000105 ], [ -119.425895495999953, 49.903246603000092 ], [ -119.425876504999934, 49.903359201000072 ], [ -119.42583481699999, 49.903648409000056 ], [ -119.425768101999921, 49.904111289000156 ], [ -119.425257891999976, 49.904857188000044 ], [ -119.425017593999954, 49.905360196000061 ], [ -119.42497850599996, 49.905534803000158 ], [ -119.425001714999922, 49.905713203000083 ], [ -119.42507979, 49.905879614000064 ], [ -119.425541678999934, 49.906340796000052 ], [ -119.426133820999922, 49.906684398000067 ], [ -119.426254482999951, 49.906817186000069 ], [ -119.426276788999957, 49.907098496000032 ], [ -119.42619559900001, 49.907262764000073 ], [ -119.426140699999934, 49.907373794000073 ], [ -119.426013811999951, 49.907511529000033 ], [ -119.425898720999953, 49.907636508000053 ], [ -119.426014379999913, 49.907713566000091 ], [ -119.4262533199999, 49.907872788000063 ], [ -119.426491884999976, 49.9081084050001 ], [ -119.426721034999957, 49.908527574000097 ], [ -119.426776220999898, 49.908628493000073 ], [ -119.42690672899991, 49.908789808000094 ], [ -119.427071798999933, 49.908934296000098 ], [ -119.427293793, 49.90907242500009 ], [ -119.427466998999961, 49.909180202000108 ], [ -119.427556285999955, 49.909222822000068 ], [ -119.427681516999968, 49.90928259400004 ], [ -119.427782490999974, 49.909307949000031 ], [ -119.427917594999911, 49.909341908000044 ], [ -119.42840619899998, 49.909375815000047 ], [ -119.428939203999974, 49.90936359500008 ], [ -119.423080503999969, 49.912180884000101 ], [ -119.422634604999985, 49.911860498000067 ], [ -119.422358800999959, 49.911514299000068 ], [ -119.422240684999963, 49.911150510000049 ], [ -119.421786012999959, 49.91117189200002 ], [ -119.419455163999913, 49.911894477000075 ], [ -119.418807583999936, 49.912095199000071 ], [ -119.416684924999956, 49.912599665000073 ], [ -119.416291293999961, 49.912693210000079 ], [ -119.416075500999952, 49.912764206000112 ], [ -119.415028931999956, 49.913269530000029 ], [ -119.414637087999964, 49.913458687000023 ], [ -119.413910302999966, 49.913887734000042 ], [ -119.413745991999988, 49.913984699000125 ], [ -119.412244709, 49.914968894000111 ], [ -119.411912307999927, 49.915227894000061 ], [ -119.411871327999933, 49.915280424000073 ], [ -119.411337289999921, 49.91596529300007 ], [ -119.411039108999944, 49.916286911000078 ], [ -119.41080101299994, 49.916482993000038 ], [ -119.41066304499999, 49.91657322100005 ], [ -119.410041193999973, 49.916979895000047 ], [ -119.409962991999947, 49.917048559000072 ], [ -119.409708105, 49.91727230900009 ], [ -119.409575619999984, 49.917492690000081 ], [ -119.40940278099994, 49.918078296000012 ], [ -119.40919048799999, 49.918125107000023 ], [ -119.40917646299998, 49.918126282000074 ], [ -119.408445897999954, 49.918188012000023 ], [ -119.40840481099994, 49.918191502000049 ], [ -119.406212382999939, 49.918190307000025 ], [ -119.405374522000017, 49.918190667000019 ], [ -119.402601577999974, 49.918191804000024 ], [ -119.399995524999952, 49.918190402000072 ], [ -119.399173508999951, 49.918189928000118 ], [ -119.39804329299993, 49.918189313 ], [ -119.39603658, 49.918189984000101 ], [ -119.394658677999985, 49.918182863000077 ], [ -119.394073238999937, 49.918179808000012 ], [ -119.39379441199999, 49.918178365000088 ], [ -119.393446011999913, 49.918176550000076 ], [ -119.39231683, 49.918170678000067 ], [ -119.389416115999921, 49.918155491000036 ], [ -119.387784186999923, 49.9181552370001 ], [ -119.38805609299996, 49.917775226000117 ], [ -119.388524376999925, 49.917265325000123 ], [ -119.388849083999929, 49.916983306000176 ] ], [ [ -119.416530070999954, 49.911350331000101 ], [ -119.416615866999948, 49.910756158000048 ], [ -119.416993924999971, 49.91077893300006 ], [ -119.417180010999985, 49.909490068000103 ], [ -119.417750106999932, 49.909524408000024 ], [ -119.417765889999956, 49.90941508100012 ], [ -119.419291868999949, 49.909506985000078 ], [ -119.419541904999932, 49.907774518000068 ], [ -119.421869192999964, 49.907914640000044 ], [ -119.422127084999957, 49.906126972000095 ], [ -119.422330736999967, 49.906139232000058 ], [ -119.422274527999932, 49.905017430000065 ], [ -119.422691933999943, 49.905008706000075 ], [ -119.422610879999937, 49.903391198000065 ], [ -119.422934868999903, 49.903384426000081 ], [ -119.423028270999936, 49.903382472000018 ], [ -119.423023149999892, 49.903280286000104 ], [ -119.423014760999976, 49.903112888000059 ], [ -119.423167770999939, 49.903109689000118 ], [ -119.423432149999925, 49.903104161000051 ], [ -119.423420280999963, 49.902867367000034 ], [ -119.4233781, 49.902025822000077 ], [ -119.423795479999967, 49.902017095000119 ], [ -119.423768451999962, 49.901477925000037 ], [ -119.420429444999925, 49.901547707000134 ], [ -119.420415949999949, 49.901278122000079 ], [ -119.419581200999929, 49.901295552000057 ], [ -119.419527241999972, 49.90021721100009 ], [ -119.420361970999963, 49.900199781000133 ], [ -119.420357578, 49.900112005000054 ], [ -119.41896009599999, 49.900027836000028 ], [ -119.418983340999915, 49.899866751000062 ], [ -119.418673173999977, 49.899848068000018 ], [ -119.418679023999957, 49.899965048000112 ], [ -119.418109465, 49.899976934000101 ], [ -119.417982200999973, 49.900858721000056 ], [ -119.418272247999951, 49.900876194000091 ], [ -119.417755368999963, 49.90445731700008 ], [ -119.412211984999914, 49.904123241000072 ], [ -119.412220196999897, 49.904066397000115 ], [ -119.410920090999966, 49.903988003000059 ], [ -119.410878464999954, 49.904276074000052 ], [ -119.409739857999952, 49.904207406000047 ], [ -119.409730855999968, 49.904269691000096 ], [ -119.411858208999945, 49.904397979000059 ], [ -119.411340786999972, 49.907979055000055 ], [ -119.405797022999934, 49.907644656000087 ], [ -119.405801244, 49.907615466000046 ], [ -119.404888571999905, 49.907560387000032 ], [ -119.404861086999915, 49.907750401000065 ], [ -119.404904228999939, 49.908617562000067 ], [ -119.404150370999972, 49.908633201000058 ], [ -119.403990268999976, 49.909739919000039 ], [ -119.403713950999943, 49.909723240000076 ], [ -119.403707727999944, 49.909766254000061 ], [ -119.403732334, 49.910261068000082 ], [ -119.40414979099998, 49.91025241000002 ], [ -119.404176608999961, 49.910791586000052 ], [ -119.405011531999946, 49.910774264000104 ], [ -119.40506518899997, 49.911852616000047 ], [ -119.40464771799995, 49.911861277000028 ], [ -119.404687956999979, 49.912670041000069 ], [ -119.404270479, 49.91267870100009 ], [ -119.40430048199994, 49.913281843000078 ], [ -119.405010443999984, 49.913324689000063 ], [ -119.404832304999928, 49.914556108000063 ], [ -119.405199345999975, 49.914548492000023 ], [ -119.40530705599997, 49.916712654000015 ], [ -119.40566544799999, 49.916734278000064 ], [ -119.405654055999946, 49.916813025000074 ], [ -119.408660857999934, 49.916994395000138 ], [ -119.408517210999946, 49.917987854000103 ], [ -119.408693143999969, 49.917984198000013 ], [ -119.40918217399998, 49.914601799000053 ], [ -119.410962953999942, 49.914709174000102 ], [ -119.411260690999896, 49.912649041000115 ], [ -119.411363592999962, 49.912655245000032 ], [ -119.411559953999927, 49.911296444000079 ], [ -119.413259605999954, 49.911398899000119 ], [ -119.413294786000023, 49.911155384000068 ], [ -119.416530070999954, 49.911350331000101 ] ], [ [ -119.402964430999958, 49.911626322000146 ], [ -119.402951028999937, 49.911356734000051 ], [ -119.402533562999977, 49.911365388000114 ], [ -119.402546961999946, 49.911634976000109 ], [ -119.402964430999958, 49.911626322000146 ] ], [ [ -119.424962470999944, 49.893896663000092 ], [ -119.425002475, 49.89361913700008 ], [ -119.424626688999965, 49.893596519000063 ], [ -119.424628554999956, 49.89363378300002 ], [ -119.4242418799999, 49.893641872000039 ], [ -119.424183420999952, 49.894047359000126 ], [ -119.424650698999955, 49.894075486000084 ], [ -119.42464207099999, 49.893903367000078 ], [ -119.424962470999944, 49.893896663000092 ] ], [ [ -119.431909094999952, 49.891149803000111 ], [ -119.432001110000016, 49.890510754000033 ], [ -119.429904546999964, 49.890554734000077 ], [ -119.429928455999942, 49.891030692000051 ], [ -119.431909094999952, 49.891149803000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201616417", "BldgCostT": "131361667", "sL_LossRatio": "0.997846060409178", "sL_AssetLoss": "22656.16", "sL_BldgLoss": "22607.36", "sL_StrLoss": "22589.7", "sL_NStrLoss": "17.66", "sL_ContLoss": "48.8", "geom_point": "0101000020E61000005FF9D11551D95DC0B4DD24A356FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.388045424999945, 49.973778675000069 ], [ -119.388089345999958, 49.973476254000076 ], [ -119.38754884799999, 49.973443598000053 ], [ -119.387490839999884, 49.973359790000146 ], [ -119.38728113499991, 49.973116889000067 ], [ -119.386605104999944, 49.972035679000044 ], [ -119.385763958000013, 49.97033779100007 ], [ -119.385066641999941, 49.968507661000125 ], [ -119.38476224499999, 49.967230431000139 ], [ -119.384606307999931, 49.966376690000111 ], [ -119.384521299999989, 49.964678367000076 ], [ -119.384521906999964, 49.964494005000041 ], [ -119.384529382000011, 49.962265692000088 ], [ -119.38453051099998, 49.961927718000048 ], [ -119.384536576999977, 49.960121676000071 ], [ -119.384644150999989, 49.959515933000034 ], [ -119.384888241999974, 49.958712541000097 ], [ -119.385267189999936, 49.957752462000059 ], [ -119.388940978999983, 49.95797453100004 ], [ -119.388764732999945, 49.959188626000056 ], [ -119.389156952999983, 49.959212328000042 ], [ -119.388715199999936, 49.962255294000094 ], [ -119.391872970999941, 49.96244606000009 ], [ -119.39145088399999, 49.965354552000072 ], [ -119.392949232999968, 49.965445037000073 ], [ -119.392705283999987, 49.967126241000095 ], [ -119.396265451999966, 49.967341153000085 ], [ -119.396307236999959, 49.96705304300005 ], [ -119.397779525000018, 49.967141885000046 ], [ -119.397721660999977, 49.965977728000091 ], [ -119.397303720999972, 49.965986370000039 ], [ -119.397263530999979, 49.965177609000101 ], [ -119.398517329999891, 49.965151680000119 ], [ -119.398477120999985, 49.964342919000124 ], [ -119.398895046999911, 49.964334273000063 ], [ -119.398881642999967, 49.964064686000057 ], [ -119.398463717999945, 49.964073332000055 ], [ -119.398436912999927, 49.963534159000105 ], [ -119.398018994999944, 49.963542804000056 ], [ -119.398005594999987, 49.963273217000086 ], [ -119.397587678999955, 49.96328186100007 ], [ -119.397560882999969, 49.962742687000087 ], [ -119.396725058999962, 49.96275996700011 ], [ -119.396711665999959, 49.962490381000066 ], [ -119.395040021999975, 49.962524924000057 ], [ -119.394986492999962, 49.961446575000075 ], [ -119.396658099999939, 49.961412033000059 ], [ -119.396644707999954, 49.961142446000032 ], [ -119.396226809999916, 49.961151082000065 ], [ -119.396213420999942, 49.960881496000113 ], [ -119.39579552399999, 49.960890132000024 ], [ -119.395782137999959, 49.960620545000012 ], [ -119.395364241999928, 49.960629179000115 ], [ -119.395324092999971, 49.959820417000039 ], [ -119.394488316999968, 49.95983768100006 ], [ -119.394474938999949, 49.959568093000051 ], [ -119.393639166999947, 49.959585352000062 ], [ -119.393599046999938, 49.958776588000063 ], [ -119.394434804999918, 49.958759331000081 ], [ -119.394421426999955, 49.958489743000044 ], [ -119.394839303999959, 49.958481112000079 ], [ -119.394812545999969, 49.957941937000101 ], [ -119.395230417000022, 49.957933305000061 ], [ -119.395217034999945, 49.957663717000123 ], [ -119.396888512, 49.957629173000079 ], [ -119.396901901999982, 49.957898761000052 ], [ -119.397319771999975, 49.957890120000044 ], [ -119.397292985999954, 49.957350947000123 ], [ -119.397710852, 49.95734230500009 ], [ -119.397684061999911, 49.9568031310001 ], [ -119.396430478999946, 49.956829049000063 ], [ -119.396403703999951, 49.956289875000095 ], [ -119.395150129999962, 49.956315779000114 ], [ -119.395176893, 49.956854954000114 ], [ -119.393505443, 49.956889473000096 ], [ -119.393518811999982, 49.957159061000063 ], [ -119.391847349999949, 49.957193556000071 ], [ -119.391753816999966, 49.955306439 ], [ -119.392171666999943, 49.955297817000016 ], [ -119.392144942999892, 49.954758641000062 ], [ -119.392562786999974, 49.95475001800002 ], [ -119.392522691999943, 49.953941254000071 ], [ -119.392940530999937, 49.953932630000061 ], [ -119.392913796999949, 49.953393454000022 ], [ -119.392495963999963, 49.953402077000113 ], [ -119.392442509, 49.952323724000031 ], [ -119.392860331999927, 49.95231510000005 ], [ -119.392833600999936, 49.951775925000106 ], [ -119.393251418999952, 49.951767300000036 ], [ -119.393224685999925, 49.951228124000096 ], [ -119.393642498999981, 49.951219497000075 ], [ -119.393615760999964, 49.950680321000036 ], [ -119.394869187999959, 49.950654435000047 ], [ -119.394815684999941, 49.949576084000064 ], [ -119.396486880999959, 49.949541549000045 ], [ -119.396527035999924, 49.950350313000058 ], [ -119.397362646999966, 49.950333036000075 ], [ -119.397322478999982, 49.949524273000087 ], [ -119.396904678999974, 49.949532912000066 ], [ -119.396891291999978, 49.949263325000082 ], [ -119.39647349699996, 49.949271962000061 ], [ -119.39644672799993, 49.948732786000015 ], [ -119.395193350999989, 49.948758689000059 ], [ -119.39513984499996, 49.947680336000104 ], [ -119.398064319999932, 49.947619880000083 ], [ -119.398131285999966, 49.948967816000113 ], [ -119.399802455999975, 49.948933234000101 ], [ -119.399856068999966, 49.950011583000098 ], [ -119.399020465999953, 49.950028877000051 ], [ -119.399033865999968, 49.950298464000056 ], [ -119.400287277999965, 49.950272520000034 ], [ -119.400327495999989, 49.951081281000064 ], [ -119.400745307999955, 49.95107263000012 ], [ -119.400758716999945, 49.951342216000064 ], [ -119.40201215499998, 49.951316253000101 ], [ -119.402065820999937, 49.952394599000087 ], [ -119.40248364299994, 49.952385942000021 ], [ -119.402631269999986, 49.955351391000086 ], [ -119.403466961999953, 49.955334069000102 ], [ -119.40348038799999, 49.955603655000139 ], [ -119.403898237999968, 49.955594991000098 ], [ -119.403938524999958, 49.956403749000067 ], [ -119.404356380999971, 49.956395084000121 ], [ -119.4044101099999, 49.957473428000057 ], [ -119.403992245000026, 49.957482093000145 ], [ -119.404019105999936, 49.958021264000109 ], [ -119.404436975999928, 49.958012599000035 ], [ -119.404450409999981, 49.958282185000023 ], [ -119.404868280999935, 49.958273518000048 ], [ -119.40488171599992, 49.958543103000075 ], [ -119.405299589999956, 49.9585344340001 ], [ -119.40538022299999, 49.960151947000028 ], [ -119.405798110999982, 49.96014327700005 ], [ -119.405838434999922, 49.960952033000083 ], [ -119.405420540999941, 49.960960704000065 ], [ -119.405447420999963, 49.961499875000058 ], [ -119.405865321999954, 49.961491204000083 ], [ -119.40590565, 49.962299960000053 ], [ -119.406323555999961, 49.962291286000074 ], [ -119.406363894, 49.963100041000068 ], [ -119.405945981999949, 49.963108715000075 ], [ -119.40599975799995, 49.96418705500011 ], [ -119.405581834999964, 49.964195727000039 ], [ -119.40563560599999, 49.965274068000078 ], [ -119.405217673999942, 49.965282738000056 ], [ -119.405257997999939, 49.9660914950001 ], [ -119.405675936999927, 49.966082823000072 ], [ -119.405689379999956, 49.966352408000112 ], [ -119.406107321999968, 49.966343736000042 ], [ -119.406147661999967, 49.967152491000029 ], [ -119.405729713999932, 49.967161163000071 ], [ -119.40574315799995, 49.967430749000108 ], [ -119.405325206999947, 49.967439420000105 ], [ -119.405352093999937, 49.967978590000051 ], [ -119.40660596, 49.967952570000122 ], [ -119.406659758999979, 49.969030910000065 ], [ -119.406241796999979, 49.969039586000044 ], [ -119.406255242999976, 49.969309170000017 ], [ -119.40458337599992, 49.969343855000083 ], [ -119.404569936999934, 49.969074269000046 ], [ -119.403734005000018, 49.969091602000098 ], [ -119.403747439999933, 49.969361188000036 ], [ -119.401657597999943, 49.969404496000067 ], [ -119.40167102099997, 49.96967408100015 ], [ -119.401526404999956, 49.969677076000067 ], [ -119.401339224999944, 49.970968616000064 ], [ -119.400321218999963, 49.970907227000041 ], [ -119.400074161999967, 49.972611540000102 ], [ -119.397088828000022, 49.972431462000095 ], [ -119.396698154999925, 49.975125011000081 ], [ -119.39599488099995, 49.975082577000144 ], [ -119.395900754999943, 49.975731429000113 ], [ -119.395311948999947, 49.975695898000019 ], [ -119.395245349999968, 49.976154941000054 ], [ -119.394236011999936, 49.976094027000045 ], [ -119.394191617999951, 49.976399966000024 ], [ -119.393273381999904, 49.97634454100011 ], [ -119.393201100999974, 49.9768425870001 ], [ -119.392995039999946, 49.97683014800009 ], [ -119.392707782999935, 49.978809284000057 ], [ -119.392320418999958, 49.978474635000097 ], [ -119.391367287, 49.977651148000085 ], [ -119.390458178999978, 49.97686570000014 ], [ -119.39008676899995, 49.976518512000091 ], [ -119.38933881199992, 49.975819279000085 ], [ -119.389264442999945, 49.975735305000086 ], [ -119.388918996999948, 49.975345086000061 ], [ -119.388443223, 49.974735686000066 ], [ -119.387876177999942, 49.973916491000097 ], [ -119.387769231999968, 49.973761988000057 ], [ -119.388045424999945, 49.973778675000069 ] ], [ [ -119.393541121999988, 49.971322456000102 ], [ -119.39361789199998, 49.970793392000083 ], [ -119.391549720999961, 49.970668519000093 ], [ -119.39153109599998, 49.970796841000023 ], [ -119.390437024999969, 49.970730767000084 ], [ -119.390320813999921, 49.971531245000037 ], [ -119.391608085999962, 49.971608986000064 ], [ -119.39166610699999, 49.971209247000104 ], [ -119.393541121999988, 49.971322456000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14132583", "BldgCostT": "8778333", "sL_LossRatio": "1", "sL_AssetLoss": "851.4", "sL_BldgLoss": "851.4", "sL_StrLoss": "851.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006A374DE1B9DA5DC0488F3A95E7FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.415078587999915, 49.96604747100011 ], [ -119.420629510999945, 49.966381373000061 ], [ -119.420112074999963, 49.969962189000071 ], [ -119.414560720999987, 49.969628261000068 ], [ -119.415078587999915, 49.96604747100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "131.9", "sL_BldgLoss": "131.9", "sL_StrLoss": "131.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000038DD913513DB5DC03E554B5B58FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.422963144000036, 49.963085858000063 ], [ -119.42399951, 49.962950692000042 ], [ -119.424324206999984, 49.963415969000067 ], [ -119.424619807999989, 49.963966484000125 ], [ -119.424695022999927, 49.964192979000131 ], [ -119.421240932999964, 49.963985358000052 ], [ -119.421317519999945, 49.963455218000107 ], [ -119.422963144000036, 49.963085858000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40588061", "BldgCostT": "24898190", "sL_LossRatio": "0.999934030336021", "sL_AssetLoss": "2952.8724", "sL_BldgLoss": "2952.6776", "sL_StrLoss": "2952.0396", "sL_NStrLoss": "0.638", "sL_ContLoss": "0.1948", "geom_point": "0101000020E61000004B91A5A401DB5DC0E1FA032753FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.42055536299992, 49.986440822000112 ], [ -119.42060856699996, 49.986072768000049 ], [ -119.419648512999913, 49.986015065000061 ], [ -119.420166165999959, 49.982434330000103 ], [ -119.420632447999964, 49.98246235700006 ], [ -119.420947251999934, 49.980284344000083 ], [ -119.421148137999978, 49.980296417000069 ], [ -119.421199400999967, 49.979941715000045 ], [ -119.421154569999942, 49.979939022000103 ], [ -119.421610118999979, 49.976786751000134 ], [ -119.421358587999961, 49.976771633000091 ], [ -119.421726929999977, 49.974222567000062 ], [ -119.421425359999901, 49.974204441000019 ], [ -119.421534647, 49.973448115000075 ], [ -119.421164001999955, 49.973425835000036 ], [ -119.421207790999944, 49.973122805000052 ], [ -119.420933716, 49.973106329000075 ], [ -119.421451122999983, 49.969525526000012 ], [ -119.421718664999943, 49.969541609000075 ], [ -119.421984299999977, 49.967702933000062 ], [ -119.423884860999962, 49.96781716400006 ], [ -119.423969041999953, 49.96723427799999 ], [ -119.424501474999929, 49.96726627300005 ], [ -119.424112050999938, 49.968830119000081 ], [ -119.423733274999975, 49.970361332000039 ], [ -119.423711703999913, 49.970448609000066 ], [ -119.423360970999966, 49.972180178000052 ], [ -119.423248186999942, 49.97273688700011 ], [ -119.423398575999954, 49.974060589000082 ], [ -119.423382520999965, 49.974223543000022 ], [ -119.423293414999961, 49.975127897000093 ], [ -119.423324810999929, 49.975472896000028 ], [ -119.42355295499999, 49.976016736000112 ], [ -119.423910119999931, 49.976867995000063 ], [ -119.424006697999985, 49.977216905000063 ], [ -119.423974124, 49.97744225400006 ], [ -119.42396122199996, 49.977531493000136 ], [ -119.423931005999975, 49.977740601000072 ], [ -119.423646173999913, 49.978565351000029 ], [ -119.423642297999962, 49.978576591000028 ], [ -119.42347547899999, 49.979207603000063 ], [ -119.423402692999957, 49.97992470300008 ], [ -119.423447084999935, 49.980072812000103 ], [ -119.423420794999956, 49.980944156000099 ], [ -119.423397192999943, 49.981726697000092 ], [ -119.42333363099999, 49.981887548000024 ], [ -119.422566183999947, 49.983829759000088 ], [ -119.421836399999947, 49.98567638600008 ], [ -119.421049488, 49.986876992000091 ], [ -119.4209716, 49.987057393000086 ], [ -119.42092340399995, 49.987420202000109 ], [ -119.421032183999955, 49.987781595000037 ], [ -119.421271390999976, 49.988112904000104 ], [ -119.421963537999943, 49.988632332000101 ], [ -119.42211683, 49.988747375000123 ], [ -119.422470264999973, 49.989012608000046 ], [ -119.423607497999967, 49.989865986000105 ], [ -119.423946981999904, 49.990256413000075 ], [ -119.419245834999941, 49.989973946000106 ], [ -119.419763565999972, 49.986393232000061 ], [ -119.42055536299992, 49.986440822000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "432202000", "BldgCostT": "275125000", "sL_LossRatio": "0.999087821039709", "sL_AssetLoss": "32559.400395", "sL_BldgLoss": "32529.700395", "sL_StrLoss": "32519.000395", "sL_NStrLoss": "10.7", "sL_ContLoss": "29.7", "geom_point": "0101000020E610000079B379FBB7D95DC0A1CE818ACFF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.389179981999959, 49.954010188000062 ], [ -119.389166635999956, 49.953740599000099 ], [ -119.388748799999945, 49.953749209000058 ], [ -119.388708770999969, 49.952940442000106 ], [ -119.38829094, 49.952949050000072 ], [ -119.388277598999977, 49.952679461000102 ], [ -119.386606285999946, 49.952713878000047 ], [ -119.386592953999966, 49.952444289000077 ], [ -119.386491419999956, 49.952446379000037 ], [ -119.386492514999944, 49.952407012000037 ], [ -119.386501344999914, 49.952028245000037 ], [ -119.386501504999913, 49.951689631000065 ], [ -119.386480591999955, 49.948826622000084 ], [ -119.386543657999965, 49.947361178000101 ], [ -119.386613593999982, 49.946550483000081 ], [ -119.386724119999911, 49.945269785000136 ], [ -119.386851909, 49.944582180000062 ], [ -119.387164893999937, 49.943679086000017 ], [ -119.387375113999937, 49.943252805000064 ], [ -119.387393065999973, 49.943252435000062 ], [ -119.387391446, 49.943219685000045 ], [ -119.387672716999987, 49.942649310000014 ], [ -119.387981788999952, 49.942022613000034 ], [ -119.388488474999974, 49.94101835500004 ], [ -119.388510275999977, 49.940974799000038 ], [ -119.388825644999912, 49.940344089000092 ], [ -119.389858249999918, 49.938279123000058 ], [ -119.39085585399999, 49.936177998000097 ], [ -119.390895684000014, 49.936094110000084 ], [ -119.391009693999976, 49.93527921600004 ], [ -119.390973410999933, 49.935042199000094 ], [ -119.39091271099997, 49.934645724000113 ], [ -119.390616885999961, 49.934013767000117 ], [ -119.390220027999959, 49.933538264000099 ], [ -119.38952054399995, 49.933008320000042 ], [ -119.388905356999885, 49.932633779000085 ], [ -119.388776398999951, 49.932555241000031 ], [ -119.388346573999968, 49.932293531000013 ], [ -119.387898525999944, 49.932020729000051 ], [ -119.38736590399999, 49.931613735000028 ], [ -119.387105899999966, 49.931313549000059 ], [ -119.386900784999938, 49.931011255000044 ], [ -119.386691596999952, 49.930428763000101 ], [ -119.38664641699998, 49.929727952000093 ], [ -119.386648242999982, 49.929098624000119 ], [ -119.386555528000017, 49.929102444000101 ], [ -119.386470920999926, 49.929105976000052 ], [ -119.386477545999966, 49.925114068 ], [ -119.386478720999918, 49.92442580200008 ], [ -119.386667318999969, 49.924427291000093 ], [ -119.386686695999941, 49.922817290000111 ], [ -119.386686841999918, 49.922808331000084 ], [ -119.386691194999955, 49.921913528000111 ], [ -119.386698005999946, 49.920514299000089 ], [ -119.386736289999945, 49.920283120000128 ], [ -119.38677708599991, 49.920036826000057 ], [ -119.386930171999893, 49.919608098000019 ], [ -119.38711576099999, 49.91924454900002 ], [ -119.387779051999985, 49.918163611000061 ], [ -119.387784186999923, 49.9181552370001 ], [ -119.389416115999921, 49.918155491000036 ], [ -119.39231683, 49.918170678000067 ], [ -119.393446011999913, 49.918176550000076 ], [ -119.39379441199999, 49.918178365000088 ], [ -119.394073238999937, 49.918179808000012 ], [ -119.394658677999985, 49.918182863000077 ], [ -119.39603658, 49.918189984000101 ], [ -119.39804329299993, 49.918189313 ], [ -119.399173508999951, 49.918189928000118 ], [ -119.399995524999952, 49.918190402000072 ], [ -119.402601577999974, 49.918191804000024 ], [ -119.405374522000017, 49.918190667000019 ], [ -119.406212382999939, 49.918190307000025 ], [ -119.40840481099994, 49.918191502000049 ], [ -119.408445897999954, 49.918188012000023 ], [ -119.40917646299998, 49.918126282000074 ], [ -119.40919048799999, 49.918125107000023 ], [ -119.40940278099994, 49.918078296000012 ], [ -119.409575619999984, 49.917492690000081 ], [ -119.409708105, 49.91727230900009 ], [ -119.409962991999947, 49.917048559000072 ], [ -119.410041193999973, 49.916979895000047 ], [ -119.41066304499999, 49.91657322100005 ], [ -119.41080101299994, 49.916482993000038 ], [ -119.411039108999944, 49.916286911000078 ], [ -119.411337289999921, 49.91596529300007 ], [ -119.411871327999933, 49.915280424000073 ], [ -119.411912307999927, 49.915227894000061 ], [ -119.412244709, 49.914968894000111 ], [ -119.413745991999988, 49.913984699000125 ], [ -119.413910302999966, 49.913887734000042 ], [ -119.414637087999964, 49.913458687000023 ], [ -119.415028931999956, 49.913269530000029 ], [ -119.416075500999952, 49.912764206000112 ], [ -119.416291293999961, 49.912693210000079 ], [ -119.416684924999956, 49.912599665000073 ], [ -119.418807583999936, 49.912095199000071 ], [ -119.419455163999913, 49.911894477000075 ], [ -119.421786012999959, 49.91117189200002 ], [ -119.422240684999963, 49.911150510000049 ], [ -119.422358800999959, 49.911514299000068 ], [ -119.422634604999985, 49.911860498000067 ], [ -119.423080503999969, 49.912180884000101 ], [ -119.422685907999949, 49.912328707000036 ], [ -119.422495796999897, 49.912473501000072 ], [ -119.421338457999951, 49.913770891000041 ], [ -119.420365795999928, 49.914861193000029 ], [ -119.420334699999913, 49.914902456000014 ], [ -119.420158190999985, 49.915136698 ], [ -119.420021221999932, 49.915408404000111 ], [ -119.41997216399993, 49.915672117000057 ], [ -119.41992719299995, 49.915913907000039 ], [ -119.419933282, 49.916081634000108 ], [ -119.419960668999948, 49.916836549000031 ], [ -119.419974114999974, 49.917207181000059 ], [ -119.419971206999946, 49.917349025000121 ], [ -119.41995508799999, 49.918142496000051 ], [ -119.419895793999899, 49.918609798 ], [ -119.419853307, 49.918944594000017 ], [ -119.41984806399995, 49.918973566000041 ], [ -119.419677580999931, 49.919914523000081 ], [ -119.419579636999956, 49.920454992000046 ], [ -119.419545311999954, 49.920644415000055 ], [ -119.419495615999921, 49.920918801000056 ], [ -119.419472013999965, 49.921441108000046 ], [ -119.419492514999916, 49.922538610000053 ], [ -119.419623036999937, 49.923059487000138 ], [ -119.419717903999953, 49.923438107000074 ], [ -119.419859886, 49.923742793000109 ], [ -119.418076222999957, 49.924444599000026 ], [ -119.417252090999966, 49.925028002000047 ], [ -119.416924684999984, 49.925377596000054 ], [ -119.416801186999948, 49.925767500000077 ], [ -119.416914611999957, 49.926154497000027 ], [ -119.416985440999895, 49.926292193000087 ], [ -119.417563199999961, 49.927415408000066 ], [ -119.4176077799999, 49.927668208000071 ], [ -119.417602618000032, 49.927687102000114 ], [ -119.417539693999942, 49.927916900000113 ], [ -119.417073036999952, 49.928608901000132 ], [ -119.416637526999963, 49.929254678000092 ], [ -119.416495018999953, 49.929466 ], [ -119.416338141999958, 49.929637675000066 ], [ -119.416295581000028, 49.929684204000068 ], [ -119.416000600999908, 49.929860238000053 ], [ -119.415297316999968, 49.930279951000088 ], [ -119.41490730699995, 49.930512686000021 ], [ -119.414818498, 49.930589917000134 ], [ -119.414630497999894, 49.930753409000026 ], [ -119.414641692999979, 49.931034009000015 ], [ -119.414184007999935, 49.931132785000024 ], [ -119.41395659599999, 49.931254590000115 ], [ -119.41385721499999, 49.931359879000127 ], [ -119.413813010999931, 49.931406697000057 ], [ -119.413472322999951, 49.932183240000064 ], [ -119.413428452999966, 49.932283236000039 ], [ -119.412980413999904, 49.932256245000083 ], [ -119.412869529999966, 49.933023352000099 ], [ -119.410382359999971, 49.932873484000076 ], [ -119.410143995999988, 49.934521810000042 ], [ -119.410112082999945, 49.934519887000079 ], [ -119.409899195999941, 49.934308889000121 ], [ -119.408313306999929, 49.934350197000043 ], [ -119.408168391999965, 49.934402727000119 ], [ -119.404597019999954, 49.934187363000014 ], [ -119.405115266999928, 49.93060644800007 ], [ -119.407602296999926, 49.930756435000028 ], [ -119.407840732999929, 49.92910810700004 ], [ -119.409686056999973, 49.929219358000104 ], [ -119.409796984, 49.928452250000113 ], [ -119.410081165999955, 49.928469380000095 ], [ -119.410140191999957, 49.928061156000076 ], [ -119.410401182999919, 49.928076888000099 ], [ -119.41044739599991, 49.927757263000053 ], [ -119.410744383999941, 49.927775163000064 ], [ -119.410756229999976, 49.927693229000042 ], [ -119.408436395999928, 49.927553384000092 ], [ -119.408938278000022, 49.924082984000115 ], [ -119.408369527000019, 49.924048689000131 ], [ -119.408438025999928, 49.923575034000066 ], [ -119.407918043999985, 49.923543679000083 ], [ -119.407992776999947, 49.923026941000089 ], [ -119.407441857999956, 49.922993717000061 ], [ -119.407353776000022, 49.923602704000118 ], [ -119.40438714899993, 49.923423749000101 ], [ -119.404389494999961, 49.92347086700007 ], [ -119.40271920899994, 49.923505502000076 ], [ -119.402759431999925, 49.924314264000017 ], [ -119.401089114999962, 49.924348876000082 ], [ -119.40110251399993, 49.924618464000098 ], [ -119.399849767999982, 49.924644408000077 ], [ -119.399836375999953, 49.924374820000075 ], [ -119.399001215999959, 49.924392108000106 ], [ -119.398987829999982, 49.924122519000022 ], [ -119.398570251999928, 49.924131161000069 ], [ -119.398583634999923, 49.924400749000021 ], [ -119.398166054999962, 49.924409389000054 ], [ -119.398179436999925, 49.924678978000081 ], [ -119.398597018999951, 49.924670337000101 ], [ -119.398637173999987, 49.925479103000093 ], [ -119.396131629999971, 49.925530923000046 ], [ -119.396118258999962, 49.925261334000012 ], [ -119.395700671999961, 49.925269966000087 ], [ -119.395673934999962, 49.924730788000041 ], [ -119.3952563499999, 49.924739417000055 ], [ -119.395269715000012, 49.925009007000064 ], [ -119.394016954, 49.92503488800007 ], [ -119.394043673999974, 49.925574065000049 ], [ -119.392624455999936, 49.925603369000108 ], [ -119.392387234999944, 49.927239637000035 ], [ -119.392195819999984, 49.927228068000062 ], [ -119.391830348999989, 49.929748643000089 ], [ -119.389645424999969, 49.929616558000077 ], [ -119.389676857000026, 49.930251878000078 ], [ -119.38925922199995, 49.930260487000069 ], [ -119.389312564999955, 49.931338847000106 ], [ -119.388894920999974, 49.931347455000029 ], [ -119.38893462299994, 49.932150142000076 ], [ -119.391921268999937, 49.932330692000072 ], [ -119.391484564999956, 49.935342030000072 ], [ -119.392854046999915, 49.935313769000089 ], [ -119.392867403999944, 49.935583358000017 ], [ -119.397461860999925, 49.935488427000038 ], [ -119.397475244999924, 49.935758015000069 ], [ -119.397892923999919, 49.935749377000036 ], [ -119.39793308400003, 49.93655814099999 ], [ -119.395844652, 49.936601322000165 ], [ -119.395911527999957, 49.937949264000075 ], [ -119.396329226999967, 49.937940631000082 ], [ -119.396315847999986, 49.937671043000101 ], [ -119.398404324999916, 49.93762785200007 ], [ -119.398390936999959, 49.937358263000121 ], [ -119.400061705999974, 49.937323684000049 ], [ -119.400075104999928, 49.9375932720001 ], [ -119.400910491999966, 49.93757597200004 ], [ -119.400950703999939, 49.938384735000085 ], [ -119.401368403999925, 49.938376083000087 ], [ -119.401354998, 49.93810649600011 ], [ -119.403443486999919, 49.93806321400006 ], [ -119.403483740999917, 49.93887197400003 ], [ -119.402648331999956, 49.938889292000091 ], [ -119.402661745999978, 49.939158879000068 ], [ -119.401826332999974, 49.93917619100008 ], [ -119.401839742999968, 49.939445778000078 ], [ -119.40142203299996, 49.939454432000062 ], [ -119.401475663999989, 49.940532781000016 ], [ -119.401893382999958, 49.940524126000113 ], [ -119.40194702699992, 49.941602475000067 ], [ -119.401529298999918, 49.941611129000087 ], [ -119.401542707999965, 49.941880716000107 ], [ -119.401124975999934, 49.941889369000059 ], [ -119.40113838399995, 49.942158956000057 ], [ -119.40072064899999, 49.942167607000037 ], [ -119.400747458999902, 49.942706782000066 ], [ -119.399911982000035, 49.942724081000115 ], [ -119.399925383999985, 49.942993669000103 ], [ -119.399089902999918, 49.943010961 ], [ -119.399103297999972, 49.943280549000072 ], [ -119.39785006599999, 49.943306477000107 ], [ -119.397863456, 49.943576066000091 ], [ -119.397027961999981, 49.943593344000099 ], [ -119.397041346999927, 49.94386293200003 ], [ -119.395788098999972, 49.94388883900011 ], [ -119.395774719999935, 49.94361925000004 ], [ -119.395356971999959, 49.943627883000069 ], [ -119.395370347999972, 49.943897472000081 ], [ -119.39369934699999, 49.943931987000035 ], [ -119.393672613999939, 49.943392809000017 ], [ -119.393254867999957, 49.943401434000094 ], [ -119.393294958999931, 49.944210200000093 ], [ -119.393712712999957, 49.944201574000033 ], [ -119.393766180999961, 49.945279929000023 ], [ -119.39334841699997, 49.945288554000108 ], [ -119.393361781999886, 49.945558143000028 ], [ -119.392526252, 49.945575390000045 ], [ -119.392539612999954, 49.945844978000096 ], [ -119.39212184499992, 49.945853599000053 ], [ -119.392135204999931, 49.94612318800008 ], [ -119.391299661999938, 49.946140426000042 ], [ -119.39131301799999, 49.946410015000062 ], [ -119.390477469999936, 49.946427247000045 ], [ -119.390490820000011, 49.946696835000083 ], [ -119.38965526899996, 49.94671406100008 ], [ -119.389668613999959, 49.946983651000046 ], [ -119.38925083599996, 49.94699226200003 ], [ -119.389264178999909, 49.947261851000107 ], [ -119.389113218999924, 49.947264962000069 ], [ -119.38895271799997, 49.947268270000095 ], [ -119.388873351999948, 49.947815141000078 ], [ -119.388886420999967, 49.948079228000061 ], [ -119.389091461999968, 49.948075003000028 ], [ -119.389304207999928, 49.948070619000063 ], [ -119.389336954999962, 49.94873220100002 ], [ -119.38935758599996, 49.949148975000071 ], [ -119.389553474999929, 49.949144938000103 ], [ -119.389775382999986, 49.94914036400008 ], [ -119.38978873, 49.949409953000043 ], [ -119.390206528999911, 49.949401339000111 ], [ -119.390219878999972, 49.94967092800011 ], [ -119.390637679999926, 49.949662314000051 ], [ -119.390651033999958, 49.949931903000035 ], [ -119.391486640000025, 49.949914668000098 ], [ -119.391499996999983, 49.950184258000107 ], [ -119.391917801999966, 49.950175637000058 ], [ -119.39199796199992, 49.951793168000066 ], [ -119.391580141999896, 49.951801789000086 ], [ -119.391620218999918, 49.952610554000081 ], [ -119.391202391999983, 49.952619173000102 ], [ -119.391229105999926, 49.953158350000088 ], [ -119.390811274999976, 49.953166967000115 ], [ -119.390837983999958, 49.953706145000027 ], [ -119.390420147999947, 49.953714761000086 ], [ -119.390433500999947, 49.953984349000045 ], [ -119.389179981999959, 49.954010188000062 ] ], [ [ -119.41144716299999, 49.918393895000101 ], [ -119.41145336699995, 49.918350961000037 ], [ -119.411398346999974, 49.918347644000022 ], [ -119.409143279999952, 49.918211688000063 ], [ -119.409159581999972, 49.918538667000121 ], [ -119.411406656999972, 49.918674141000096 ], [ -119.41144716299999, 49.918393895000101 ] ], [ [ -119.415085894999976, 49.917887053000051 ], [ -119.415136788999945, 49.917534728000064 ], [ -119.414535079999922, 49.917498475000123 ], [ -119.41454284299999, 49.917444738000029 ], [ -119.414365946999965, 49.917434080000135 ], [ -119.414276986999965, 49.918049859000099 ], [ -119.41490765099999, 49.918087857000032 ], [ -119.414937945999924, 49.917878139000081 ], [ -119.415085894999976, 49.917887053000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "149.7", "sL_BldgLoss": "149.7", "sL_StrLoss": "149.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000020A11CBB7ADA5DC03BBD5A076AFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.413683994999985, 49.958899914000071 ], [ -119.413508703999952, 49.955395322000122 ], [ -119.413090859999954, 49.955404019000042 ], [ -119.412996504999938, 49.953516930000049 ], [ -119.413115763999926, 49.953514448000078 ], [ -119.41373659599999, 49.954323676000058 ], [ -119.414124353999938, 49.956085865000041 ], [ -119.414137284999981, 49.95701192700006 ], [ -119.414292881999955, 49.957962720000083 ], [ -119.414576307999965, 49.958881333000072 ], [ -119.413683994999985, 49.958899914000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "68.2", "sL_BldgLoss": "68.2", "sL_StrLoss": "68.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CC31305D8ED95DC0FC5ED8D4D8F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398364156999918, 49.93681908800005 ], [ -119.39831060299997, 49.935740736000099 ], [ -119.399563636999972, 49.935714805000067 ], [ -119.399577033999961, 49.935984393000105 ], [ -119.400412393999915, 49.93596709800007 ], [ -119.400452595999951, 49.93677586000009 ], [ -119.398364156999918, 49.93681908800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11750167", "BldgCostT": "6846667", "sL_LossRatio": "0.970964381496997", "sL_AssetLoss": "902.34", "sL_BldgLoss": "876.14", "sL_StrLoss": "866.6", "sL_NStrLoss": "9.54", "sL_ContLoss": "26.2", "geom_point": "0101000020E6100000198C3297EBDA5DC0899EE79137004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.419088948999914, 49.999892952000017 ], [ -119.423277538999912, 50.000144581000015 ], [ -119.422946592999935, 50.0005442080001 ], [ -119.42265310099999, 50.001072892000103 ], [ -119.422533994999981, 50.001634610000075 ], [ -119.422346473999937, 50.002204794000072 ], [ -119.422032522, 50.002749402000049 ], [ -119.422026658999982, 50.00275756900006 ], [ -119.42179685899994, 50.003078940000059 ], [ -119.421393386999981, 50.003643168000067 ], [ -119.418571012, 50.003473597000102 ], [ -119.419088948999914, 49.999892952000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42441166", "BldgCostT": "28006666", "sL_LossRatio": "1", "sL_AssetLoss": "4556", "sL_BldgLoss": "4556", "sL_StrLoss": "4556", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D4BE0C0825DA5DC0179138963D004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.405184438999939, 50.004709621000053 ], [ -119.405376544999967, 50.003384347000058 ], [ -119.405785655999964, 50.00340898200011 ], [ -119.40581825299995, 50.003184079000029 ], [ -119.405387363999964, 50.003158134000046 ], [ -119.405392134999943, 50.003125220000072 ], [ -119.404063325999942, 50.003045197000105 ], [ -119.404331854999938, 50.001192936000052 ], [ -119.404248754, 50.001194659000127 ], [ -119.404209029999919, 50.001468670000065 ], [ -119.403936651999942, 50.001452264000115 ], [ -119.403702095999932, 50.003070078000107 ], [ -119.403050459999989, 50.003030826000078 ], [ -119.402882403999953, 50.003020703000104 ], [ -119.402912131999983, 50.000876170000062 ], [ -119.402913304999942, 50.000792992000044 ], [ -119.402952790999976, 50.000520848000072 ], [ -119.402993805999969, 50.000237993000042 ], [ -119.403005440999891, 50.000183172000042 ], [ -119.403044044999916, 50.000001560000044 ], [ -119.403108936999914, 49.999696140000033 ], [ -119.403169993999938, 49.99940879300005 ], [ -119.403227516999948, 49.999255599000051 ], [ -119.403272046999959, 49.99913695500004 ], [ -119.403565043999905, 49.998356377000057 ], [ -119.403786934999928, 49.997765246000114 ], [ -119.403790559999933, 49.997755675000086 ], [ -119.403928241999949, 49.997388747000073 ], [ -119.404115362999946, 49.997394068000062 ], [ -119.404152194999966, 49.997300891000073 ], [ -119.404299479999949, 49.996739088000055 ], [ -119.404393737999968, 49.996137070000088 ], [ -119.404399754999957, 49.995672189000082 ], [ -119.408240713999959, 49.99590348100007 ], [ -119.408166376999972, 49.996416630000105 ], [ -119.408781630999954, 49.996453667000083 ], [ -119.408312913999964, 49.999689236000044 ], [ -119.410137306999943, 49.999799037000059 ], [ -119.41013253899996, 49.999831950000022 ], [ -119.41146126599989, 49.999911901000139 ], [ -119.411148125999944, 50.002074280000059 ], [ -119.411579008999936, 50.002100202000079 ], [ -119.411428904000019, 50.003136729000097 ], [ -119.411475079999917, 50.00313950700005 ], [ -119.411337262999936, 50.00409115300004 ], [ -119.412366816999935, 50.004153085000084 ], [ -119.412351651999984, 50.004257809000087 ], [ -119.414795168999973, 50.004404759000117 ], [ -119.41481669199996, 50.004256066000025 ], [ -119.420372261999887, 50.00458996400009 ], [ -119.420291749999961, 50.005146648000093 ], [ -119.419718879999948, 50.005843789000046 ], [ -119.408831903999939, 50.005754413000027 ], [ -119.403032154999934, 50.00541193500009 ], [ -119.402882236999972, 50.005404580000111 ], [ -119.402876664999908, 50.004981884000081 ], [ -119.402935784999954, 50.004574195000039 ], [ -119.403038544999959, 50.004580384000093 ], [ -119.405184438999939, 50.004709621000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255676463", "BldgCostT": "146568901", "sL_LossRatio": "0.850877240171902", "sL_AssetLoss": "16118.67987", "sL_BldgLoss": "13715.017843", "sL_StrLoss": "12754.869513", "sL_NStrLoss": "960.14833", "sL_ContLoss": "2403.662027", "geom_point": "0101000020E6100000146A4E3D56D95DC0060DE60A4AF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398088683999958, 49.902591340000114 ], [ -119.395513064999975, 49.902271407000057 ], [ -119.394383104000028, 49.90229059400005 ], [ -119.39438869199995, 49.901171103000074 ], [ -119.396141412999924, 49.901172306000106 ], [ -119.39791514699999, 49.901172375000058 ], [ -119.398295499999975, 49.901172403000054 ], [ -119.400003367999943, 49.901174377000054 ], [ -119.400309928999931, 49.901174728000086 ], [ -119.400977488999928, 49.901175507000104 ], [ -119.40226946199999, 49.901179116 ], [ -119.402341096999919, 49.901180193000108 ], [ -119.403206839999967, 49.901179865000131 ], [ -119.404094097999945, 49.90117949600004 ], [ -119.40601886899999, 49.901184191000063 ], [ -119.406604123999969, 49.90118559600009 ], [ -119.406760206999948, 49.901185991000034 ], [ -119.408247553999928, 49.901195363000099 ], [ -119.408760541999968, 49.901253401000126 ], [ -119.408951347999903, 49.901277556000046 ], [ -119.408616973999983, 49.90163758300011 ], [ -119.406056560999957, 49.904409063000152 ], [ -119.405961181999928, 49.904511507000095 ], [ -119.405874796999981, 49.904604280000044 ], [ -119.405220761999942, 49.905306835000054 ], [ -119.401299133999899, 49.909511431000055 ], [ -119.399756253999939, 49.910946264000124 ], [ -119.398643447999959, 49.91165027200006 ], [ -119.398077436999955, 49.911967383000061 ], [ -119.395932155999972, 49.913090341000022 ], [ -119.395801106999926, 49.913157919000042 ], [ -119.393447811999934, 49.914371557000088 ], [ -119.39244997299997, 49.914889210000098 ], [ -119.389608147999965, 49.916541583000026 ], [ -119.388849083999929, 49.916983306000176 ], [ -119.388524376999925, 49.917265325000123 ], [ -119.38805609299996, 49.917775226000117 ], [ -119.387784186999923, 49.9181552370001 ], [ -119.387664021999953, 49.91815353800007 ], [ -119.387588840999967, 49.918152449000111 ], [ -119.387480069999981, 49.918150388000129 ], [ -119.386674898999942, 49.918138683000045 ], [ -119.386696316999945, 49.917846494000123 ], [ -119.386717389999916, 49.916428126000021 ], [ -119.386728668999979, 49.915666594000093 ], [ -119.386729960999944, 49.91524114500011 ], [ -119.386734684, 49.91364950300008 ], [ -119.386741256999954, 49.91256037400008 ], [ -119.386746597999945, 49.911669877000072 ], [ -119.386750344999939, 49.911048931000032 ], [ -119.386753973999973, 49.910445651 ], [ -119.386756287999944, 49.910059199000024 ], [ -119.386764790999933, 49.909180997000092 ], [ -119.386771578999941, 49.908736257000086 ], [ -119.386787297999959, 49.907705799000084 ], [ -119.38679338799993, 49.907249204000102 ], [ -119.387806504999958, 49.907250633000039 ], [ -119.388405252999974, 49.907251468000034 ], [ -119.388704106999938, 49.907251899000102 ], [ -119.391469936999968, 49.90725680300006 ], [ -119.392083082999974, 49.907257893000114 ], [ -119.392380023999976, 49.907258400000025 ], [ -119.394464000999989, 49.90726159200004 ], [ -119.394758321999959, 49.907261993000049 ], [ -119.395231844999941, 49.907262644000127 ], [ -119.398040896999973, 49.907266450000087 ], [ -119.39804463899992, 49.906704920000038 ], [ -119.398047567999953, 49.906264422000064 ], [ -119.398051137999929, 49.905843808000057 ], [ -119.398056030999896, 49.904438896000066 ], [ -119.398078987999938, 49.903623902000035 ], [ -119.398081055999953, 49.903528905000066 ], [ -119.398085166999948, 49.903339796000097 ], [ -119.398093818999953, 49.90297096400014 ], [ -119.398088683999958, 49.902591340000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146830750", "BldgCostT": "95875000", "sL_LossRatio": "0.999782312477888", "sL_AssetLoss": "14754.451559", "sL_BldgLoss": "14751.239699", "sL_StrLoss": "14735.772589", "sL_NStrLoss": "15.46711", "sL_ContLoss": "3.21186", "geom_point": "0101000020E6100000DD2BA00E33D95DC0BF80451BD3F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.393096577, 49.902226388000088 ], [ -119.393067387999906, 49.902128911000041 ], [ -119.392966107999953, 49.902055897000089 ], [ -119.392705002, 49.902024806000036 ], [ -119.392295208999897, 49.90203609400006 ], [ -119.3922558899999, 49.901168601000023 ], [ -119.393471884999911, 49.901169896000049 ], [ -119.39438869199995, 49.901171103000074 ], [ -119.394383104000028, 49.90229059400005 ], [ -119.395513064999975, 49.902271407000057 ], [ -119.398088683999958, 49.902591340000114 ], [ -119.398093818999953, 49.90297096400014 ], [ -119.398085166999948, 49.903339796000097 ], [ -119.398081055999953, 49.903528905000066 ], [ -119.398078987999938, 49.903623902000035 ], [ -119.398056030999896, 49.904438896000066 ], [ -119.398051137999929, 49.905843808000057 ], [ -119.398047567999953, 49.906264422000064 ], [ -119.39804463899992, 49.906704920000038 ], [ -119.398040896999973, 49.907266450000087 ], [ -119.395231844999941, 49.907262644000127 ], [ -119.394758321999959, 49.907261993000049 ], [ -119.394464000999989, 49.90726159200004 ], [ -119.392380023999976, 49.907258400000025 ], [ -119.392083082999974, 49.907257893000114 ], [ -119.391469936999968, 49.90725680300006 ], [ -119.388704106999938, 49.907251899000102 ], [ -119.388693003999919, 49.906393312 ], [ -119.388817994999954, 49.906129004000078 ], [ -119.388896193999926, 49.905908011000079 ], [ -119.38889749, 49.903916014000103 ], [ -119.388897697999965, 49.903602506000063 ], [ -119.38957913499999, 49.903592904000071 ], [ -119.391077285, 49.903571796000094 ], [ -119.391577882999968, 49.903561392000078 ], [ -119.393094707999964, 49.903589905000047 ], [ -119.39309478699991, 49.903496840000052 ], [ -119.393095307999985, 49.902804302000057 ], [ -119.393096577, 49.902226388000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316712666", "BldgCostT": "206846666", "sL_LossRatio": "0.984703173332935", "sL_AssetLoss": "15290.60864", "sL_BldgLoss": "15056.71085", "sL_StrLoss": "14903.46023", "sL_NStrLoss": "153.25062", "sL_ContLoss": "233.89779", "geom_point": "0101000020E6100000E1B9089DE1D85DC0E125EE6767F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.386823992999922, 49.902247003000063 ], [ -119.386823614999955, 49.901160500000074 ], [ -119.386823752999973, 49.900000398 ], [ -119.386823758999952, 49.899954857000125 ], [ -119.386837703999973, 49.898695618000033 ], [ -119.386840962999926, 49.898401113000062 ], [ -119.386860707999972, 49.896616849000061 ], [ -119.38686831399994, 49.89592960000008 ], [ -119.386870290999966, 49.89574918300012 ], [ -119.387245584999931, 49.895743907000089 ], [ -119.387615602999929, 49.89569861100005 ], [ -119.388078293999982, 49.895563116000119 ], [ -119.388308779999974, 49.89549988400006 ], [ -119.388682428999971, 49.895397399000053 ], [ -119.388669678, 49.89681538800005 ], [ -119.38879747899999, 49.897428209000111 ], [ -119.388816298999927, 49.898262890000098 ], [ -119.390007000999944, 49.898264507000128 ], [ -119.38996320699998, 49.89931849500006 ], [ -119.389954363999948, 49.899999153000074 ], [ -119.389952196999943, 49.900165892000075 ], [ -119.389940392999947, 49.901164004000101 ], [ -119.3922558899999, 49.901168601000023 ], [ -119.392295208999897, 49.90203609400006 ], [ -119.392705002, 49.902024806000036 ], [ -119.392966107999953, 49.902055897000089 ], [ -119.393067387999906, 49.902128911000041 ], [ -119.393096577, 49.902226388000088 ], [ -119.393095307999985, 49.902804302000057 ], [ -119.39309478699991, 49.903496840000052 ], [ -119.393094707999964, 49.903589905000047 ], [ -119.391577882999968, 49.903561392000078 ], [ -119.391077285, 49.903571796000094 ], [ -119.38957913499999, 49.903592904000071 ], [ -119.388897697999965, 49.903602506000063 ], [ -119.38889749, 49.903916014000103 ], [ -119.388896193999926, 49.905908011000079 ], [ -119.388817994999954, 49.906129004000078 ], [ -119.388693003999919, 49.906393312 ], [ -119.388704106999938, 49.907251899000102 ], [ -119.388405252999974, 49.907251468000034 ], [ -119.387806504999958, 49.907250633000039 ], [ -119.38679338799993, 49.907249204000102 ], [ -119.38679729699993, 49.906884596000069 ], [ -119.386810405999896, 49.90544489100008 ], [ -119.386810896, 49.905390007000065 ], [ -119.386818464, 49.904571068000038 ], [ -119.386827292999953, 49.903612692000088 ], [ -119.38682527499999, 49.902771378000118 ], [ -119.386823992999922, 49.902247003000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170257917", "BldgCostT": "106631667", "sL_LossRatio": "0.999820708036621", "sL_AssetLoss": "15636.0048", "sL_BldgLoss": "15633.20139", "sL_StrLoss": "15617.84054", "sL_NStrLoss": "15.36085", "sL_ContLoss": "2.80341", "geom_point": "0101000020E61000000F5673EB3BD95DC0DD2558B923F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.397084120999978, 49.896977528000022 ], [ -119.397957896999912, 49.896987002000046 ], [ -119.397947750999947, 49.898250884000156 ], [ -119.397933790999929, 49.89999655000004 ], [ -119.397933001999959, 49.900093890000065 ], [ -119.398255603999985, 49.90083950000011 ], [ -119.398295499999975, 49.901172403000054 ], [ -119.39791514699999, 49.901172375000058 ], [ -119.396141412999924, 49.901172306000106 ], [ -119.39438869199995, 49.901171103000074 ], [ -119.393471884999911, 49.901169896000049 ], [ -119.3922558899999, 49.901168601000023 ], [ -119.389940392999947, 49.901164004000101 ], [ -119.389952196999943, 49.900165892000075 ], [ -119.389954363999948, 49.899999153000074 ], [ -119.38996320699998, 49.89931849500006 ], [ -119.390007000999944, 49.898264507000128 ], [ -119.39350730699999, 49.898272189000082 ], [ -119.394448090999902, 49.898271305000044 ], [ -119.395275412999979, 49.898273152000101 ], [ -119.396015885999944, 49.898274821000015 ], [ -119.396019801999927, 49.897842509000043 ], [ -119.39601110599996, 49.896965896000083 ], [ -119.397084120999978, 49.896977528000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121801667", "BldgCostT": "78166667", "sL_LossRatio": "0.999960393632211", "sL_AssetLoss": "12976.297214", "sL_BldgLoss": "12975.78327", "sL_StrLoss": "12973.06912", "sL_NStrLoss": "2.71415", "sL_ContLoss": "0.513944", "geom_point": "0101000020E6100000F14FDB4C26D95DC04DA87DC6C7F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.395199008999953, 49.89535449800011 ], [ -119.397940204999927, 49.895371189000031 ], [ -119.397964422999976, 49.896189001000039 ], [ -119.397957896999912, 49.896987002000046 ], [ -119.397084120999978, 49.896977528000022 ], [ -119.39601110599996, 49.896965896000083 ], [ -119.396019801999927, 49.897842509000043 ], [ -119.396015885999944, 49.898274821000015 ], [ -119.395275412999979, 49.898273152000101 ], [ -119.394448090999902, 49.898271305000044 ], [ -119.39350730699999, 49.898272189000082 ], [ -119.390007000999944, 49.898264507000128 ], [ -119.388816298999927, 49.898262890000098 ], [ -119.38879747899999, 49.897428209000111 ], [ -119.388669678, 49.89681538800005 ], [ -119.388682428999971, 49.895397399000053 ], [ -119.389053109, 49.895346702000047 ], [ -119.389248798999915, 49.895346798000098 ], [ -119.389899002999968, 49.895344598000058 ], [ -119.390469710999952, 49.895342096000057 ], [ -119.391185918999938, 49.895337597000058 ], [ -119.39276179699999, 49.895342610000142 ], [ -119.39351160699999, 49.895347288000011 ], [ -119.39435390499996, 49.895351301000105 ], [ -119.395199008999953, 49.89535449800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60315917", "BldgCostT": "37441667", "sL_LossRatio": "0.999983519307458", "sL_AssetLoss": "5275.627816", "sL_BldgLoss": "5275.54087", "sL_StrLoss": "5274.42596", "sL_NStrLoss": "1.11491", "sL_ContLoss": "0.086946", "geom_point": "0101000020E6100000F158E0E95DD95DC0DFD1F70165F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.397840604999885, 49.892168211000033 ], [ -119.398532226999947, 49.892169306000085 ], [ -119.398513892999958, 49.893744103000117 ], [ -119.398411779999947, 49.894401809000058 ], [ -119.398296291999884, 49.894456214000051 ], [ -119.397786817999986, 49.894490402000031 ], [ -119.397913287999984, 49.894967697000048 ], [ -119.397940204999927, 49.895371189000031 ], [ -119.395199008999953, 49.89535449800011 ], [ -119.39435390499996, 49.895351301000105 ], [ -119.394379613999917, 49.892153108000088 ], [ -119.395963615999946, 49.892149504000017 ], [ -119.397840604999885, 49.892168211000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "412543772", "BldgCostT": "277889158", "sL_LossRatio": "0.970880334511231", "sL_AssetLoss": "7632.71474", "sL_BldgLoss": "7410.45264", "sL_StrLoss": "7327.45364", "sL_NStrLoss": "82.999", "sL_ContLoss": "222.2621", "geom_point": "0101000020E61000002F7A34F6A1D95DC0B0F0A26D04F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398138214999918, 49.891173794000103 ], [ -119.398222885999985, 49.891071403000154 ], [ -119.398491111999959, 49.890860103000101 ], [ -119.399087008999956, 49.890508704000098 ], [ -119.399367099999921, 49.89021489700005 ], [ -119.399540701999939, 49.889855095000065 ], [ -119.399578796999947, 49.889022097000066 ], [ -119.399998408999963, 49.889019165000072 ], [ -119.400694599999909, 49.889014294000077 ], [ -119.40128121199993, 49.889010192000093 ], [ -119.402378203999973, 49.889010598000063 ], [ -119.402373392999948, 49.890879685000101 ], [ -119.402352986999944, 49.89216089500011 ], [ -119.40108678699994, 49.892163678000038 ], [ -119.400725096999935, 49.892164503000075 ], [ -119.400001306999968, 49.892166071000055 ], [ -119.398532226999947, 49.892169306000085 ], [ -119.397840604999885, 49.892168211000033 ], [ -119.397897621999917, 49.891561990000064 ], [ -119.397993377999953, 49.891353796000061 ], [ -119.398138214999918, 49.891173794000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239000705", "BldgCostT": "163584713", "sL_LossRatio": "0.93310267733304", "sL_AssetLoss": "2724.05371", "sL_BldgLoss": "2541.82181", "sL_StrLoss": "2474.31781", "sL_NStrLoss": "67.504", "sL_ContLoss": "182.2319", "geom_point": "0101000020E610000080A4E3C5DDD95DC0AD6E8A01F1F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.40454919299998, 49.88803900300011 ], [ -119.405733692999917, 49.888032910000085 ], [ -119.405771102999921, 49.888789194000054 ], [ -119.405884913999955, 49.889036307000012 ], [ -119.405887772999975, 49.892138608000053 ], [ -119.405360881999982, 49.89214192900004 ], [ -119.402352986999944, 49.89216089500011 ], [ -119.402373392999948, 49.890879685000101 ], [ -119.402378203999973, 49.889010598000063 ], [ -119.402758305999981, 49.889010906000109 ], [ -119.402767186999952, 49.888494905000108 ], [ -119.402637188999933, 49.88818630300009 ], [ -119.404093038999946, 49.888074164000066 ], [ -119.40454919299998, 49.88803900300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176911720", "BldgCostT": "115410413", "sL_LossRatio": "0.984617188052774", "sL_AssetLoss": "11971.744869", "sL_BldgLoss": "11787.585769", "sL_StrLoss": "11717.961569", "sL_NStrLoss": "69.6242", "sL_ContLoss": "184.1591", "geom_point": "0101000020E61000001951B05203DA5DC0177E802086F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.405771102999921, 49.888789194000054 ], [ -119.405733692999917, 49.888032910000085 ], [ -119.40454919299998, 49.88803900300011 ], [ -119.404093038999946, 49.888074164000066 ], [ -119.402637188999933, 49.88818630300009 ], [ -119.402632195999928, 49.886645312000056 ], [ -119.402653801999932, 49.885829295000079 ], [ -119.404209422999912, 49.885836599000079 ], [ -119.40442071199999, 49.885806013000042 ], [ -119.404583775999953, 49.885712003000073 ], [ -119.404665714999965, 49.88553179600008 ], [ -119.404690601999917, 49.884905704000062 ], [ -119.406264995999976, 49.884937486000041 ], [ -119.409428185999957, 49.884929695000082 ], [ -119.409417687999948, 49.886057101000077 ], [ -119.409424735999963, 49.886228371000115 ], [ -119.40943426599992, 49.886460659000115 ], [ -119.409441669999978, 49.886641023000081 ], [ -119.409445377999958, 49.886731828000045 ], [ -119.409462818999913, 49.88715710600006 ], [ -119.409442105, 49.887902202000184 ], [ -119.409432635999963, 49.888243804000084 ], [ -119.409410626999957, 49.88903690800008 ], [ -119.408243954999989, 49.889037656000021 ], [ -119.407910092999956, 49.889037870000095 ], [ -119.407708284999941, 49.889038001000088 ], [ -119.407002006999946, 49.88903736000006 ], [ -119.406128456999937, 49.889036523000115 ], [ -119.405960894999978, 49.889036360000048 ], [ -119.405884913999955, 49.889036307000012 ], [ -119.405771102999921, 49.888789194000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156853833", "BldgCostT": "104868333", "sL_LossRatio": "0.978100886445123", "sL_AssetLoss": "10954.316", "sL_BldgLoss": "10714.42619", "sL_StrLoss": "10615.69679", "sL_NStrLoss": "98.7294", "sL_ContLoss": "239.88981", "geom_point": "0101000020E6100000D4200E0A31DA5DC01F8B2B36FFF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.410624193999965, 49.889034548000069 ], [ -119.412608704999954, 49.8890320040001 ], [ -119.412583361999936, 49.890417885 ], [ -119.412551215999954, 49.892178493000095 ], [ -119.411282003999972, 49.892189604000087 ], [ -119.411082204999957, 49.892189192000089 ], [ -119.410265221999978, 49.892185108000049 ], [ -119.410155647999957, 49.892184127000093 ], [ -119.409960410999972, 49.892182409000029 ], [ -119.408775898999963, 49.892171995000055 ], [ -119.407718392999953, 49.892159701000018 ], [ -119.407062810999932, 49.892150806000132 ], [ -119.405887772999975, 49.892138608000053 ], [ -119.405884913999955, 49.889036307000012 ], [ -119.405960894999978, 49.889036360000048 ], [ -119.406128456999937, 49.889036523000115 ], [ -119.407002006999946, 49.88903736000006 ], [ -119.407708284999941, 49.889038001000088 ], [ -119.407910092999956, 49.889037870000095 ], [ -119.408243954999989, 49.889037656000021 ], [ -119.409410626999957, 49.88903690800008 ], [ -119.410263298999951, 49.889035008000093 ], [ -119.410624193999965, 49.889034548000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167037584", "BldgCostT": "106648334", "sL_LossRatio": "0.967118090349165", "sL_AssetLoss": "12587.6205", "sL_BldgLoss": "12173.7155", "sL_StrLoss": "12021.848", "sL_NStrLoss": "151.8675", "sL_ContLoss": "413.905", "geom_point": "0101000020E6100000A12F39C555DA5DC058DC5D0C8AF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.409417687999948, 49.886057101000077 ], [ -119.409428185999957, 49.884929695000082 ], [ -119.410071310999953, 49.884927894000029 ], [ -119.410662899999977, 49.88504040800003 ], [ -119.411021502999958, 49.885043916000043 ], [ -119.413562906999971, 49.885055391000023 ], [ -119.413564113999911, 49.886112095000065 ], [ -119.413558507999952, 49.887825010000057 ], [ -119.413552188, 49.889030210000037 ], [ -119.412608704999954, 49.8890320040001 ], [ -119.410624193999965, 49.889034548000069 ], [ -119.410263298999951, 49.889035008000093 ], [ -119.409410626999957, 49.88903690800008 ], [ -119.409432635999963, 49.888243804000084 ], [ -119.409442105, 49.887902202000184 ], [ -119.409462818999913, 49.88715710600006 ], [ -119.409445377999958, 49.886731828000045 ], [ -119.409441669999978, 49.886641023000081 ], [ -119.40943426599992, 49.886460659000115 ], [ -119.409424735999963, 49.886228371000115 ], [ -119.409417687999948, 49.886057101000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "225941251", "BldgCostT": "149610001", "sL_LossRatio": "0.995559978329546", "sL_AssetLoss": "12832.585791", "sL_BldgLoss": "12775.608832", "sL_StrLoss": "12737.990768", "sL_NStrLoss": "37.618064", "sL_ContLoss": "56.976959", "geom_point": "0101000020E610000062320CED96DA5DC0FCF719170EF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.413552188, 49.889030210000037 ], [ -119.413558507999952, 49.887825010000057 ], [ -119.414791973999982, 49.887818092000039 ], [ -119.415599648999901, 49.88780956100009 ], [ -119.416045316999913, 49.887804850000116 ], [ -119.416258714999984, 49.887802602000093 ], [ -119.417605126999959, 49.887788028000088 ], [ -119.417587651999924, 49.888587122000068 ], [ -119.417575067999934, 49.888964747000102 ], [ -119.418438145999943, 49.88895895600006 ], [ -119.419141419999946, 49.888956181000019 ], [ -119.419508645999954, 49.889026180000059 ], [ -119.419840019, 49.889150905000122 ], [ -119.420493207999968, 49.889398838000034 ], [ -119.420661665999972, 49.889461381000068 ], [ -119.420526264999921, 49.889557070000087 ], [ -119.419876535999947, 49.890011919000088 ], [ -119.419770952999983, 49.890085040000088 ], [ -119.419762282999912, 49.890092087000099 ], [ -119.419102716999959, 49.890629065000091 ], [ -119.418840082999907, 49.890870615000068 ], [ -119.41751329, 49.892104653000104 ], [ -119.41731018499999, 49.892320885000089 ], [ -119.416930135999962, 49.892726963000079 ], [ -119.416572365999954, 49.893104545000043 ], [ -119.41612620099994, 49.893578612000049 ], [ -119.414776325, 49.895012877000092 ], [ -119.414421532999924, 49.895388842000109 ], [ -119.414223235999941, 49.895387729000078 ], [ -119.413524638999945, 49.895386228000127 ], [ -119.412786575999959, 49.895386883000128 ], [ -119.412790494999939, 49.895171380000072 ], [ -119.412798109999983, 49.89474884700013 ], [ -119.412817601999947, 49.893671992000094 ], [ -119.41282159, 49.893315512000072 ], [ -119.412771789999923, 49.893069601000057 ], [ -119.412609292999917, 49.892675986000079 ], [ -119.412568092999933, 49.892574199000137 ], [ -119.412551215999954, 49.892178493000095 ], [ -119.412583361999936, 49.890417885 ], [ -119.412608704999954, 49.8890320040001 ], [ -119.413552188, 49.889030210000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235156833", "BldgCostT": "158538333", "sL_LossRatio": "0.993860705753636", "sL_AssetLoss": "9103.97804", "sL_BldgLoss": "9048.08604", "sL_StrLoss": "9025.11304", "sL_NStrLoss": "22.973", "sL_ContLoss": "55.892", "geom_point": "0101000020E6100000F1E49A0299DA5DC007FB0A2D46F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.415414313000028, 49.882073994000031 ], [ -119.417618990999941, 49.882046098000068 ], [ -119.417613277999948, 49.882743897000047 ], [ -119.417608467999983, 49.883288771000089 ], [ -119.417604888999918, 49.883693400000013 ], [ -119.417591520999963, 49.884609298000036 ], [ -119.41758330899998, 49.885834026000076 ], [ -119.417580104999956, 49.886315386000035 ], [ -119.417582334999963, 49.886714933000079 ], [ -119.417583396999945, 49.886902599000116 ], [ -119.417605126999959, 49.887788028000088 ], [ -119.416258714999984, 49.887802602000093 ], [ -119.416045316999913, 49.887804850000116 ], [ -119.415599648999901, 49.88780956100009 ], [ -119.414791973999982, 49.887818092000039 ], [ -119.413558507999952, 49.887825010000057 ], [ -119.413564113999911, 49.886112095000065 ], [ -119.413562906999971, 49.885055391000023 ], [ -119.413565702999989, 49.882248797000081 ], [ -119.41467072099999, 49.882143796000094 ], [ -119.415414313000028, 49.882073994000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "356593327", "BldgCostT": "210499420", "sL_LossRatio": "0.895285749690186", "sL_AssetLoss": "18531.83969", "sL_BldgLoss": "16591.29199", "sL_StrLoss": "15859.53499", "sL_NStrLoss": "731.757", "sL_ContLoss": "1940.5477", "geom_point": "0101000020E6100000EA32870701DB5DC07FE5FF5D38F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.419508645999954, 49.889026180000059 ], [ -119.419141419999946, 49.888956181000019 ], [ -119.418438145999943, 49.88895895600006 ], [ -119.417575067999934, 49.888964747000102 ], [ -119.417587651999924, 49.888587122000068 ], [ -119.417605126999959, 49.887788028000088 ], [ -119.417583396999945, 49.886902599000116 ], [ -119.417582334999963, 49.886714933000079 ], [ -119.417580104999956, 49.886315386000035 ], [ -119.41758330899998, 49.885834026000076 ], [ -119.417591520999963, 49.884609298000036 ], [ -119.417604888999918, 49.883693400000013 ], [ -119.417608467999983, 49.883288771000089 ], [ -119.417613277999948, 49.882743897000047 ], [ -119.417618990999941, 49.882046098000068 ], [ -119.417580409999957, 49.880454388000118 ], [ -119.418169518999917, 49.880454769000046 ], [ -119.422456016999959, 49.8804573970001 ], [ -119.422452789999937, 49.88149750200008 ], [ -119.422476299999943, 49.881557605000047 ], [ -119.42251076499997, 49.88157947800007 ], [ -119.422600418999963, 49.881636396000076 ], [ -119.423691944999987, 49.881645353000089 ], [ -119.424623776999951, 49.881653017000112 ], [ -119.425857033999989, 49.88166311800007 ], [ -119.426136195999945, 49.881665402000095 ], [ -119.427285988, 49.881674793000101 ], [ -119.427530896999912, 49.881676806000051 ], [ -119.427697705999947, 49.882915004000068 ], [ -119.427728030999901, 49.883060480000061 ], [ -119.427767877999926, 49.883251612000052 ], [ -119.427895486999915, 49.883481400000015 ], [ -119.428956751999962, 49.884291213000033 ], [ -119.428999982999954, 49.884318445000112 ], [ -119.429083568999928, 49.884371097000049 ], [ -119.428723330999929, 49.884541405000036 ], [ -119.427026396999963, 49.885343651000028 ], [ -119.426090803999955, 49.885843639 ], [ -119.425877818999965, 49.88599337200003 ], [ -119.425463542, 49.886279087000048 ], [ -119.424956136999953, 49.886619698000068 ], [ -119.422695207999979, 49.888139871000092 ], [ -119.421985169999971, 49.888617254000096 ], [ -119.421975268999944, 49.888623564000099 ], [ -119.421146357999987, 49.889152813000045 ], [ -119.420661665999972, 49.889461381000068 ], [ -119.420493207999968, 49.889398838000034 ], [ -119.419840019, 49.889150905000122 ], [ -119.419508645999954, 49.889026180000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101179250", "BldgCostT": "66095000", "sL_LossRatio": "0.999967036893695", "sL_AssetLoss": "11319.624933", "sL_BldgLoss": "11319.251803", "sL_StrLoss": "11316.447203", "sL_NStrLoss": "2.8046", "sL_ContLoss": "0.37313", "geom_point": "0101000020E6100000F634F5F470DA5DC0BA29C4A7A9F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.411865489999968, 49.882411796000085 ], [ -119.411702317999982, 49.881558397000049 ], [ -119.410799899999986, 49.881643987000068 ], [ -119.410811616999979, 49.880063309000086 ], [ -119.410896798999943, 49.879879707 ], [ -119.411142703999971, 49.87962810000009 ], [ -119.410458699999936, 49.879381887000108 ], [ -119.410208716999989, 49.879323400000068 ], [ -119.40946321399997, 49.87929019300001 ], [ -119.409476155999968, 49.87806906600013 ], [ -119.40952274199999, 49.877137158000053 ], [ -119.409793463999918, 49.877148987000112 ], [ -119.412691133999928, 49.878154687000098 ], [ -119.415173231999944, 49.879659020000084 ], [ -119.415533369999977, 49.879680751000095 ], [ -119.41552678799998, 49.880452476000066 ], [ -119.417580409999957, 49.880454388000118 ], [ -119.417618990999941, 49.882046098000068 ], [ -119.415414313000028, 49.882073994000031 ], [ -119.41467072099999, 49.882143796000094 ], [ -119.413565702999989, 49.882248797000081 ], [ -119.411865489999968, 49.882411796000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96205886", "BldgCostT": "61562079", "sL_LossRatio": "0.993786123364478", "sL_AssetLoss": "9866.208101", "sL_BldgLoss": "9804.900701", "sL_StrLoss": "9781.058701", "sL_NStrLoss": "23.842", "sL_ContLoss": "61.3074", "geom_point": "0101000020E6100000516B0ECE2FDA5DC0FD25560407F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.410662899999977, 49.88504040800003 ], [ -119.410071310999953, 49.884927894000029 ], [ -119.409428185999957, 49.884929695000082 ], [ -119.409436194999898, 49.883878110000111 ], [ -119.409441598999948, 49.88282540600003 ], [ -119.40370289699996, 49.882845609000057 ], [ -119.403689913999983, 49.882849145000115 ], [ -119.403404702000017, 49.882926994000066 ], [ -119.402787604999901, 49.883300598000076 ], [ -119.402342491999974, 49.883025317000026 ], [ -119.402156485999953, 49.882833505000079 ], [ -119.402117294999982, 49.882650492000025 ], [ -119.402103906999969, 49.881796300000062 ], [ -119.403196581, 49.881776494000157 ], [ -119.404579605, 49.881777798000059 ], [ -119.404929816999967, 49.881777378000081 ], [ -119.406543083999949, 49.881775392000108 ], [ -119.407923303999922, 49.881777400000047 ], [ -119.409019882999957, 49.88177859299999 ], [ -119.409452698999985, 49.881752291000033 ], [ -119.410799899999986, 49.881643987000068 ], [ -119.411702317999982, 49.881558397000049 ], [ -119.411865489999968, 49.882411796000085 ], [ -119.413565702999989, 49.882248797000081 ], [ -119.413562906999971, 49.885055391000023 ], [ -119.411021502999958, 49.885043916000043 ], [ -119.410662899999977, 49.88504040800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128289667", "BldgCostT": "86031667", "sL_LossRatio": "0.992865368140174", "sL_AssetLoss": "13941.153791", "sL_BldgLoss": "13841.688791", "sL_StrLoss": "13804.070791", "sL_NStrLoss": "37.618", "sL_ContLoss": "99.465", "geom_point": "0101000020E61000008B5EFC2302DA5DC099B0A2AB99F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.403545698999963, 49.878975285000138 ], [ -119.402006313999919, 49.877717299 ], [ -119.401885412999917, 49.877568205000088 ], [ -119.402901713999938, 49.877051601000119 ], [ -119.403969053999944, 49.876462270000061 ], [ -119.405578932, 49.877793147000098 ], [ -119.40597608799996, 49.878042008000079 ], [ -119.406317100999956, 49.878176378000056 ], [ -119.406695356999975, 49.878266062000122 ], [ -119.407912026999924, 49.878451499000079 ], [ -119.40811793799999, 49.878447657000073 ], [ -119.40811955099997, 49.87778850800003 ], [ -119.408195894999935, 49.87761950600003 ], [ -119.408494540999982, 49.877724362000016 ], [ -119.409476155999968, 49.87806906600013 ], [ -119.40946321399997, 49.87929019300001 ], [ -119.410208716999989, 49.879323400000068 ], [ -119.410458699999936, 49.879381887000108 ], [ -119.411142703999971, 49.87962810000009 ], [ -119.410896798999943, 49.879879707 ], [ -119.410811616999979, 49.880063309000086 ], [ -119.410799899999986, 49.881643987000068 ], [ -119.409452698999985, 49.881752291000033 ], [ -119.409019882999957, 49.88177859299999 ], [ -119.407923303999922, 49.881777400000047 ], [ -119.406543083999949, 49.881775392000108 ], [ -119.404929816999967, 49.881777378000081 ], [ -119.404579605, 49.881777798000059 ], [ -119.403196581, 49.881776494000157 ], [ -119.403193189000021, 49.88093010200005 ], [ -119.403190473999942, 49.880416896000057 ], [ -119.403084803999931, 49.880085400000077 ], [ -119.402482501999941, 49.879516199000129 ], [ -119.403545698999963, 49.878975285000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83237667", "BldgCostT": "54101667", "sL_LossRatio": "0.994179947371853", "sL_AssetLoss": "8479.32195", "sL_BldgLoss": "8429.97185", "sL_StrLoss": "8411.80135", "sL_NStrLoss": "18.1705", "sL_ContLoss": "49.3501", "geom_point": "0101000020E6100000958C4A879AD95DC071AACECDABF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398211603000021, 49.881801734000099 ], [ -119.398216116999933, 49.881385189000042 ], [ -119.396660081999968, 49.88138139700002 ], [ -119.396688886, 49.88050709400008 ], [ -119.396647295, 49.88033119300011 ], [ -119.396535289999946, 49.880235994 ], [ -119.396358879999966, 49.880171096000026 ], [ -119.395440391999941, 49.880145394000081 ], [ -119.395431808999916, 49.879490994000101 ], [ -119.395386289999976, 49.879360898000037 ], [ -119.396737816999973, 49.879367658000042 ], [ -119.398233963999985, 49.879388569000128 ], [ -119.398237549000029, 49.879111308000084 ], [ -119.398252234999973, 49.877978116000051 ], [ -119.398378932999918, 49.87803905600002 ], [ -119.399559893999964, 49.878065296000045 ], [ -119.400001066999948, 49.878065204000052 ], [ -119.40061756199999, 49.878065083000088 ], [ -119.400839567999924, 49.878008070000106 ], [ -119.40106005699991, 49.877951764000024 ], [ -119.401430069999918, 49.877807990000058 ], [ -119.401885412999917, 49.877568205000088 ], [ -119.402006313999919, 49.877717299 ], [ -119.403545698999963, 49.878975285000138 ], [ -119.402482501999941, 49.879516199000129 ], [ -119.403084803999931, 49.880085400000077 ], [ -119.403190473999942, 49.880416896000057 ], [ -119.403193189000021, 49.88093010200005 ], [ -119.403196581, 49.881776494000157 ], [ -119.402103906999969, 49.881796300000062 ], [ -119.402117294999982, 49.882650492000025 ], [ -119.400908322999939, 49.882672302000053 ], [ -119.400574781999936, 49.882755996000043 ], [ -119.400069488999975, 49.882964793000063 ], [ -119.400053991999954, 49.88295516700007 ], [ -119.399107991999969, 49.882367502000108 ], [ -119.398667887999977, 49.882202697000125 ], [ -119.398207581999912, 49.882168591000045 ], [ -119.398211603000021, 49.881801734000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019717", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101481333", "BldgCostT": "66303333", "sL_LossRatio": "0.999981792631811", "sL_AssetLoss": "9948.6371735", "sL_BldgLoss": "9948.456035", "sL_StrLoss": "9947.338265", "sL_NStrLoss": "1.11777", "sL_ContLoss": "0.1811385", "geom_point": "0101000020E61000004EC20104DED95DC0E27293831FF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.400865117999942, 49.884786602000077 ], [ -119.400174115999945, 49.884366391000079 ], [ -119.399938542999905, 49.884223475000077 ], [ -119.398998783999943, 49.883653297000123 ], [ -119.398777211999956, 49.883572098000094 ], [ -119.39821630899992, 49.883556297000013 ], [ -119.398214695999982, 49.882969211000045 ], [ -119.398207581999912, 49.882168591000045 ], [ -119.398667887999977, 49.882202697000125 ], [ -119.399107991999969, 49.882367502000108 ], [ -119.400053991999954, 49.88295516700007 ], [ -119.400069488999975, 49.882964793000063 ], [ -119.400574781999936, 49.882755996000043 ], [ -119.400908322999939, 49.882672302000053 ], [ -119.402117294999982, 49.882650492000025 ], [ -119.402156485999953, 49.882833505000079 ], [ -119.402342491999974, 49.883025317000026 ], [ -119.402787604999901, 49.883300598000076 ], [ -119.403404702000017, 49.882926994000066 ], [ -119.403689913999983, 49.882849145000115 ], [ -119.40370289699996, 49.882845609000057 ], [ -119.409441598999948, 49.88282540600003 ], [ -119.409436194999898, 49.883878110000111 ], [ -119.409428185999957, 49.884929695000082 ], [ -119.406264995999976, 49.884937486000041 ], [ -119.404690601999917, 49.884905704000062 ], [ -119.403519283, 49.884869204000033 ], [ -119.403129108999906, 49.884784297000103 ], [ -119.40284069799999, 49.884652989000095 ], [ -119.402420780999989, 49.884870601000067 ], [ -119.40206508199999, 49.884962902000026 ], [ -119.401424616999961, 49.884956700000025 ], [ -119.401107789999969, 49.884895996000047 ], [ -119.400865117999942, 49.884786602000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "337613055", "BldgCostT": "217331134", "sL_LossRatio": "0.974005570128911", "sL_AssetLoss": "20616.074392", "sL_BldgLoss": "20080.171292", "sL_StrLoss": "19882.072292", "sL_NStrLoss": "198.099", "sL_ContLoss": "535.9031", "geom_point": "0101000020E6100000BE3AB79E9BD95DC07F7A01307DF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398115529999927, 49.889011047000068 ], [ -119.398079312999982, 49.888076198000093 ], [ -119.397879576999927, 49.88811379400007 ], [ -119.397554610999975, 49.888109502000127 ], [ -119.397245491999954, 49.88807279800006 ], [ -119.397069008999949, 49.888007910000098 ], [ -119.39640001, 49.887416594000037 ], [ -119.395811989999913, 49.886825609000077 ], [ -119.39571508899999, 49.886674305 ], [ -119.397566900999919, 49.885996992000045 ], [ -119.398193285999966, 49.885917395000035 ], [ -119.398390089999978, 49.885735191000101 ], [ -119.398236299999922, 49.885301395000106 ], [ -119.398233651999988, 49.884949671000101 ], [ -119.39822891099999, 49.884319311000112 ], [ -119.398224453999958, 49.884050522000138 ], [ -119.39821630899992, 49.883556297000013 ], [ -119.398777211999956, 49.883572098000094 ], [ -119.398998783999943, 49.883653297000123 ], [ -119.399938542999905, 49.884223475000077 ], [ -119.400174115999945, 49.884366391000079 ], [ -119.400865117999942, 49.884786602000077 ], [ -119.401107789999969, 49.884895996000047 ], [ -119.401424616999961, 49.884956700000025 ], [ -119.40206508199999, 49.884962902000026 ], [ -119.402420780999989, 49.884870601000067 ], [ -119.40284069799999, 49.884652989000095 ], [ -119.403129108999906, 49.884784297000103 ], [ -119.403519283, 49.884869204000033 ], [ -119.404690601999917, 49.884905704000062 ], [ -119.404665714999965, 49.88553179600008 ], [ -119.404583775999953, 49.885712003000073 ], [ -119.40442071199999, 49.885806013000042 ], [ -119.404209422999912, 49.885836599000079 ], [ -119.402653801999932, 49.885829295000079 ], [ -119.402632195999928, 49.886645312000056 ], [ -119.402637188999933, 49.88818630300009 ], [ -119.402767186999952, 49.888494905000108 ], [ -119.402758305999981, 49.889010906000109 ], [ -119.402378203999973, 49.889010598000063 ], [ -119.40128121199993, 49.889010192000093 ], [ -119.400694599999909, 49.889014294000077 ], [ -119.399998408999963, 49.889019165000072 ], [ -119.399578796999947, 49.889022097000066 ], [ -119.39815851099999, 49.889011361000065 ], [ -119.398115529999927, 49.889011047000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136994834", "BldgCostT": "87583334", "sL_LossRatio": "0.999991846366047", "sL_AssetLoss": "13012.6028", "sL_BldgLoss": "13012.4967", "sL_StrLoss": "13011.433", "sL_NStrLoss": "1.0637", "sL_ContLoss": "0.1061", "geom_point": "0101000020E6100000E1C924D959D95DC0E1346D942FF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.396117190999959, 49.88899593200005 ], [ -119.394582151999927, 49.885040068000087 ], [ -119.394198313999965, 49.884406826000074 ], [ -119.393421269999976, 49.883125035000049 ], [ -119.393101127999941, 49.882185308000025 ], [ -119.393061753999973, 49.882090597000094 ], [ -119.393620003999956, 49.881865410000067 ], [ -119.393556362999931, 49.881433481000023 ], [ -119.393556027000031, 49.881429323000113 ], [ -119.393742834999969, 49.881429003000044 ], [ -119.393824716999958, 49.881394196000102 ], [ -119.39415869399997, 49.881374614000016 ], [ -119.396660081999968, 49.88138139700002 ], [ -119.398216116999933, 49.881385189000042 ], [ -119.398211603000021, 49.881801734000099 ], [ -119.398207581999912, 49.882168591000045 ], [ -119.398214695999982, 49.882969211000045 ], [ -119.39821630899992, 49.883556297000013 ], [ -119.398224453999958, 49.884050522000138 ], [ -119.39822891099999, 49.884319311000112 ], [ -119.398233651999988, 49.884949671000101 ], [ -119.398236299999922, 49.885301395000106 ], [ -119.398390089999978, 49.885735191000101 ], [ -119.398193285999966, 49.885917395000035 ], [ -119.397566900999919, 49.885996992000045 ], [ -119.39571508899999, 49.886674305 ], [ -119.395811989999913, 49.886825609000077 ], [ -119.39640001, 49.887416594000037 ], [ -119.397069008999949, 49.888007910000098 ], [ -119.397245491999954, 49.88807279800006 ], [ -119.397554610999975, 49.888109502000127 ], [ -119.397879576999927, 49.88811379400007 ], [ -119.398079312999982, 49.888076198000093 ], [ -119.398115529999927, 49.889011047000068 ], [ -119.397433755999941, 49.889005890000064 ], [ -119.397159458999937, 49.889003817000116 ], [ -119.397100114999915, 49.889003361000064 ], [ -119.396880218999968, 49.889001714000059 ], [ -119.396751947999945, 49.889000739000025 ], [ -119.396117190999959, 49.88899593200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "397079181", "BldgCostT": "264747043", "sL_LossRatio": "0.955935583188658", "sL_AssetLoss": "10552.108337", "sL_BldgLoss": "10087.135837", "sL_StrLoss": "9916.249837", "sL_NStrLoss": "170.886", "sL_ContLoss": "464.9725", "geom_point": "0101000020E61000005FE66477FBD85DC058D8A94586F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.386903805999935, 49.887093092000107 ], [ -119.386928099, 49.886096603000034 ], [ -119.386953083999941, 49.885133609000057 ], [ -119.386957273999926, 49.884834893000132 ], [ -119.38824760499989, 49.884850689000075 ], [ -119.3928772, 49.884869003000126 ], [ -119.393360489999921, 49.88488921200009 ], [ -119.393510515999978, 49.884934401000073 ], [ -119.393654608999938, 49.885096600000068 ], [ -119.39378200799996, 49.885452014000052 ], [ -119.393754316999917, 49.886994705000085 ], [ -119.394017709999957, 49.88700878100007 ], [ -119.394172385999966, 49.887069619000066 ], [ -119.394162195999925, 49.888346892000065 ], [ -119.394042696999946, 49.888448087000015 ], [ -119.39295349299999, 49.888422811000069 ], [ -119.392842613999946, 49.888967002000093 ], [ -119.392031126999953, 49.888969009000064 ], [ -119.391222282999976, 49.888971015000024 ], [ -119.38975450599996, 49.888974303000083 ], [ -119.388595727999984, 49.888966501000013 ], [ -119.386858008999951, 49.888970608000086 ], [ -119.386883486, 49.888023898000057 ], [ -119.386903805999935, 49.887093092000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83044916", "BldgCostT": "53906666", "sL_LossRatio": "0.990251551764695", "sL_AssetLoss": "9593.249894", "sL_BldgLoss": "9499.730594", "sL_StrLoss": "9465.016594", "sL_NStrLoss": "34.714", "sL_ContLoss": "93.5193", "geom_point": "0101000020E61000005BBA0E17F1D85DC05152923B0DF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.387085686999939, 49.881809097000094 ], [ -119.387501898, 49.881328510000046 ], [ -119.387724092, 49.881376294000106 ], [ -119.388276111, 49.881375408000032 ], [ -119.391543475999953, 49.881390704000033 ], [ -119.392342412999966, 49.882994189000065 ], [ -119.392837877000019, 49.884040204000058 ], [ -119.393000096999984, 49.884463694000097 ], [ -119.392988394999946, 49.884679692000077 ], [ -119.3928772, 49.884869003000126 ], [ -119.38824760499989, 49.884850689000075 ], [ -119.386957273999926, 49.884834893000132 ], [ -119.386972306999951, 49.883670809000073 ], [ -119.386977789999889, 49.883150895000078 ], [ -119.386991704999929, 49.882100510000043 ], [ -119.387085686999939, 49.881809097000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "235229998", "BldgCostT": "145536701", "sL_LossRatio": "0.976865236264955", "sL_AssetLoss": "12699.502937", "sL_BldgLoss": "12405.702937", "sL_StrLoss": "12299.602937", "sL_NStrLoss": "106.1", "sL_ContLoss": "293.8", "geom_point": "0101000020E6100000F969051B91D85DC0D66A92697EF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.385637893999956, 49.883670291000072 ], [ -119.386972306999951, 49.883670809000073 ], [ -119.386957273999926, 49.884834893000132 ], [ -119.386953083999941, 49.885133609000057 ], [ -119.386928099, 49.886096603000034 ], [ -119.386903805999935, 49.887093092000107 ], [ -119.386883486, 49.888023898000057 ], [ -119.386858008999951, 49.888970608000086 ], [ -119.385350510999984, 49.888977707000066 ], [ -119.383918117999983, 49.888986702000139 ], [ -119.381927589999961, 49.888999802000093 ], [ -119.381133498999958, 49.889002206000058 ], [ -119.380795089999964, 49.889003401000068 ], [ -119.379749516999979, 49.889005102000063 ], [ -119.379774815999951, 49.88712630600007 ], [ -119.381176497999959, 49.887126315000032 ], [ -119.381188152000021, 49.886561624000088 ], [ -119.381212020999911, 49.885408007000073 ], [ -119.381216609999939, 49.884605403000066 ], [ -119.381389684999974, 49.884539204000049 ], [ -119.382979100999961, 49.884545207000073 ], [ -119.383557400999933, 49.884507902000109 ], [ -119.384175894999942, 49.884386491000051 ], [ -119.384383202999956, 49.884190410000024 ], [ -119.384415495999932, 49.883668496000062 ], [ -119.385637893999956, 49.883670291000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136571833", "BldgCostT": "87403333", "sL_LossRatio": "0.994980352940001", "sL_AssetLoss": "11833.501298", "sL_BldgLoss": "11774.101298", "sL_StrLoss": "11752.701298", "sL_NStrLoss": "21.4", "sL_ContLoss": "59.4", "geom_point": "0101000020E6100000A33F3DAE74D85DC04F6B051320F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.385307992999955, 49.881782698000038 ], [ -119.38655518299997, 49.881776896000062 ], [ -119.387085686999939, 49.881809097000094 ], [ -119.386991704999929, 49.882100510000043 ], [ -119.386977789999889, 49.883150895000078 ], [ -119.386972306999951, 49.883670809000073 ], [ -119.385637893999956, 49.883670291000072 ], [ -119.384415495999932, 49.883668496000062 ], [ -119.384383202999956, 49.884190410000024 ], [ -119.384175894999942, 49.884386491000051 ], [ -119.383557400999933, 49.884507902000109 ], [ -119.382979100999961, 49.884545207000073 ], [ -119.381389684999974, 49.884539204000049 ], [ -119.381216609999939, 49.884605403000066 ], [ -119.381212020999911, 49.885408007000073 ], [ -119.381188152000021, 49.886561624000088 ], [ -119.381176497999959, 49.887126315000032 ], [ -119.379774815999951, 49.88712630600007 ], [ -119.378274977999979, 49.887177188000059 ], [ -119.378297902999975, 49.886297108000129 ], [ -119.378307893999974, 49.885390997000087 ], [ -119.378408303999962, 49.885392497000119 ], [ -119.37979268199993, 49.885395200000069 ], [ -119.379729489999974, 49.884135993000029 ], [ -119.379587794999978, 49.883764312000025 ], [ -119.37922138299993, 49.882803800000048 ], [ -119.379008684999974, 49.882266089000069 ], [ -119.378924907999959, 49.881890789000053 ], [ -119.382043810999932, 49.881841409000089 ], [ -119.383441589999961, 49.881818593000062 ], [ -119.385307992999955, 49.881782698000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198795144", "BldgCostT": "132476523", "sL_LossRatio": "1", "sL_AssetLoss": "17839", "sL_BldgLoss": "17839", "sL_StrLoss": "17839", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E15851621BD85DC061A3625232F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.376760607000023, 49.889089399000042 ], [ -119.376302305999957, 49.889030897000104 ], [ -119.375787895999949, 49.889029582000056 ], [ -119.375602392999937, 49.889029098000051 ], [ -119.375310004999946, 49.889070087000093 ], [ -119.374990986999947, 49.889159101000089 ], [ -119.37483243299998, 49.888780320000116 ], [ -119.37472642099999, 49.888527099000036 ], [ -119.374621185999985, 49.887971604000057 ], [ -119.374741390999958, 49.887866007000135 ], [ -119.374527793000013, 49.887383425000039 ], [ -119.374186197999947, 49.885429229000039 ], [ -119.374087405999973, 49.884864043000043 ], [ -119.373927818, 49.884307967000012 ], [ -119.373647243000022, 49.883661431000107 ], [ -119.373181313999936, 49.88294408800008 ], [ -119.372744632999968, 49.882419938000048 ], [ -119.372468020999946, 49.882092484000033 ], [ -119.372928797999947, 49.881921756000061 ], [ -119.373551646999928, 49.881693117000047 ], [ -119.375162548999953, 49.880472259000037 ], [ -119.375976833999985, 49.880051115000114 ], [ -119.376097830999953, 49.879996227000042 ], [ -119.377511440999967, 49.879354857000116 ], [ -119.378031193999973, 49.879133481000032 ], [ -119.37829186699993, 49.879050658000011 ], [ -119.378675716000018, 49.878928728000076 ], [ -119.37872631, 49.879157622000044 ], [ -119.378753087999925, 49.879560198000085 ], [ -119.378802616999948, 49.880231886000104 ], [ -119.378834408, 49.880663059000035 ], [ -119.378924907999959, 49.881890789000053 ], [ -119.379008684999974, 49.882266089000069 ], [ -119.37922138299993, 49.882803800000048 ], [ -119.379587794999978, 49.883764312000025 ], [ -119.379729489999974, 49.884135993000029 ], [ -119.37979268199993, 49.885395200000069 ], [ -119.378408303999962, 49.885392497000119 ], [ -119.378307893999974, 49.885390997000087 ], [ -119.378297902999975, 49.886297108000129 ], [ -119.378274977999979, 49.887177188000059 ], [ -119.379774815999951, 49.88712630600007 ], [ -119.379749516999979, 49.889005102000063 ], [ -119.37856719299999, 49.889014710000033 ], [ -119.377398094999961, 49.88901059200002 ], [ -119.377392266999948, 49.889358892000132 ], [ -119.377256093999918, 49.889363314000029 ], [ -119.37710810899992, 49.889323595000086 ], [ -119.376760607000023, 49.889089399000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70221084", "BldgCostT": "48428334", "sL_LossRatio": "0.999999040935394", "sL_AssetLoss": "7767.98555", "sL_BldgLoss": "7767.9781", "sL_StrLoss": "7767.9", "sL_NStrLoss": "0.0781", "sL_ContLoss": "0.00745", "geom_point": "0101000020E61000007E74D12D87D85DC0FB1AACACABF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.378924907999959, 49.881890789000053 ], [ -119.378834408, 49.880663059000035 ], [ -119.378802616999948, 49.880231886000104 ], [ -119.378753087999925, 49.879560198000085 ], [ -119.37872631, 49.879157622000044 ], [ -119.378675716000018, 49.878928728000076 ], [ -119.379031778999916, 49.878862720000015 ], [ -119.379871851999923, 49.878773656000114 ], [ -119.381524784999925, 49.878681008000086 ], [ -119.38217681, 49.87864445500005 ], [ -119.382604596999926, 49.878620477000062 ], [ -119.382679183999954, 49.878625019 ], [ -119.383340034999975, 49.878665057 ], [ -119.384693017999936, 49.878873468000094 ], [ -119.384881244999974, 49.878866806000069 ], [ -119.38538707699999, 49.878856798000037 ], [ -119.386058297999966, 49.878746644000017 ], [ -119.386866514999923, 49.878472272000067 ], [ -119.387131408999977, 49.878310232000118 ], [ -119.387507358000022, 49.878080269000044 ], [ -119.387646049999901, 49.878280096 ], [ -119.387689027999897, 49.878639505000102 ], [ -119.387674502999985, 49.879771117000111 ], [ -119.387666897999935, 49.88054651 ], [ -119.387664725999954, 49.880966298000025 ], [ -119.387501898, 49.881328510000046 ], [ -119.387085686999939, 49.881809097000094 ], [ -119.38655518299997, 49.881776896000062 ], [ -119.385307992999955, 49.881782698000038 ], [ -119.383441589999961, 49.881818593000062 ], [ -119.382043810999932, 49.881841409000089 ], [ -119.378924907999959, 49.881890789000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233580250", "BldgCostT": "157465000", "sL_LossRatio": "0.997490157616964", "sL_AssetLoss": "15102.8703062", "sL_BldgLoss": "15064.9644822", "sL_StrLoss": "15051.0036822", "sL_NStrLoss": "13.9608", "sL_ContLoss": "37.905824", "geom_point": "0101000020E61000007F6D4782FAD85DC03F65B1242BF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.394172385999966, 49.887069619000066 ], [ -119.394017709999957, 49.88700878100007 ], [ -119.393754316999917, 49.886994705000085 ], [ -119.39378200799996, 49.885452014000052 ], [ -119.393654608999938, 49.885096600000068 ], [ -119.393510515999978, 49.884934401000073 ], [ -119.393360489999921, 49.88488921200009 ], [ -119.3928772, 49.884869003000126 ], [ -119.392988394999946, 49.884679692000077 ], [ -119.393000096999984, 49.884463694000097 ], [ -119.392837877000019, 49.884040204000058 ], [ -119.392342412999966, 49.882994189000065 ], [ -119.391543475999953, 49.881390704000033 ], [ -119.388276111, 49.881375408000032 ], [ -119.387724092, 49.881376294000106 ], [ -119.387501898, 49.881328510000046 ], [ -119.387664725999954, 49.880966298000025 ], [ -119.387666897999935, 49.88054651 ], [ -119.387674502999985, 49.879771117000111 ], [ -119.387689027999897, 49.878639505000102 ], [ -119.387646049999901, 49.878280096 ], [ -119.387507358000022, 49.878080269000044 ], [ -119.387131408999977, 49.878310232000118 ], [ -119.387087790999885, 49.877311584000047 ], [ -119.387089979999985, 49.876678713000075 ], [ -119.387095396999939, 49.875090310000076 ], [ -119.387145066999949, 49.875010020000069 ], [ -119.387208507999901, 49.874907508000092 ], [ -119.387312209999948, 49.874818982000114 ], [ -119.387725118999967, 49.87457218800008 ], [ -119.38779809499998, 49.874261379000096 ], [ -119.388033404999987, 49.874174704000033 ], [ -119.388503546999971, 49.87400154900012 ], [ -119.389366462999973, 49.873541718000077 ], [ -119.389548, 49.873378399000067 ], [ -119.38960632499996, 49.873172001000071 ], [ -119.389631069999936, 49.873084502 ], [ -119.389584601999957, 49.872874867000036 ], [ -119.389477635, 49.872677815000074 ], [ -119.388912759999954, 49.871963637000086 ], [ -119.388884934999936, 49.871928452000105 ], [ -119.388781023999925, 49.871719871000074 ], [ -119.388750245999944, 49.871257383000106 ], [ -119.388597500999936, 49.870634006000088 ], [ -119.388589087999918, 49.869554264000023 ], [ -119.388543607999964, 49.869289579000046 ], [ -119.388316844999963, 49.868781845000093 ], [ -119.388112151999948, 49.867755203000058 ], [ -119.388085745999959, 49.867721016000075 ], [ -119.387953378999967, 49.867549608000047 ], [ -119.387428429999886, 49.867229718000011 ], [ -119.387213399999936, 49.867045999000062 ], [ -119.386948651999887, 49.866581750000087 ], [ -119.386909340999964, 49.866512779000054 ], [ -119.386338328999969, 49.865980563000043 ], [ -119.386656619999911, 49.865923981000023 ], [ -119.387177611999931, 49.865634911000051 ], [ -119.387229590999979, 49.864929090000018 ], [ -119.387438199999977, 49.86430862400006 ], [ -119.387536492999956, 49.863755529000102 ], [ -119.387361417999927, 49.862794818000054 ], [ -119.387418724999961, 49.862669127000075 ], [ -119.387536332999929, 49.862580504000043 ], [ -119.387771701999966, 49.862536972000107 ], [ -119.388014237999954, 49.862578762000048 ], [ -119.388168818999986, 49.862668500000126 ], [ -119.388518055999953, 49.863362490000078 ], [ -119.388538561999965, 49.86413683200005 ], [ -119.388689655999954, 49.864588538000064 ], [ -119.388896571999979, 49.864992123000057 ], [ -119.389340114999968, 49.865864323000032 ], [ -119.389329397999973, 49.866487833000122 ], [ -119.389277201999946, 49.867022012000049 ], [ -119.389295488999892, 49.867252515000125 ], [ -119.389592019999938, 49.867888597000054 ], [ -119.389863481999953, 49.868470905000024 ], [ -119.390103004, 49.869113113000033 ], [ -119.390118812, 49.86924499900006 ], [ -119.39014228799995, 49.86945859800008 ], [ -119.39009509100002, 49.870151208000081 ], [ -119.390143290000012, 49.870415993000044 ], [ -119.391321419999912, 49.87261240800013 ], [ -119.391720009999958, 49.873467391000091 ], [ -119.391997131999972, 49.874158811000036 ], [ -119.392265398999953, 49.874534486000108 ], [ -119.392085859999909, 49.874647990000057 ], [ -119.391961817999928, 49.875655519000098 ], [ -119.392372071999944, 49.876862255000042 ], [ -119.392828827999949, 49.878241186000075 ], [ -119.392591034999938, 49.878921397000035 ], [ -119.392287335, 49.879703385000084 ], [ -119.392122754999917, 49.88010617000004 ], [ -119.392881518999928, 49.881325588000074 ], [ -119.39292440299991, 49.881395034000029 ], [ -119.392931788999988, 49.881427182000031 ], [ -119.393006074999903, 49.881426556000058 ], [ -119.393556027000031, 49.881429323000113 ], [ -119.393556362999931, 49.881433481000023 ], [ -119.393620003999956, 49.881865410000067 ], [ -119.393061753999973, 49.882090597000094 ], [ -119.393101127999941, 49.882185308000025 ], [ -119.393421269999976, 49.883125035000049 ], [ -119.394198313999965, 49.884406826000074 ], [ -119.394582151999927, 49.885040068000087 ], [ -119.396117190999959, 49.88899593200005 ], [ -119.395890034000018, 49.888994208000078 ], [ -119.395652011999942, 49.888992404000099 ], [ -119.395583572999968, 49.888991766000061 ], [ -119.395500161999976, 49.888991026000063 ], [ -119.393909144999952, 49.888976650000046 ], [ -119.393715670999953, 49.888974889000039 ], [ -119.393686749999986, 49.888974636000071 ], [ -119.392842613999946, 49.888967002000093 ], [ -119.39295349299999, 49.888422811000069 ], [ -119.394042696999946, 49.888448087000015 ], [ -119.394162195999925, 49.888346892000065 ], [ -119.394172385999966, 49.887069619000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171551833", "BldgCostT": "106903333", "sL_LossRatio": "0.991415147236212", "sL_AssetLoss": "13279.2027", "sL_BldgLoss": "13165.2027", "sL_StrLoss": "13124.0027", "sL_NStrLoss": "41.2", "sL_ContLoss": "114", "geom_point": "0101000020E6100000BEEBA67349D95DC02FC0259D54F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.392122754999917, 49.88010617000004 ], [ -119.392287335, 49.879703385000084 ], [ -119.392591034999938, 49.878921397000035 ], [ -119.392828827999949, 49.878241186000075 ], [ -119.392372071999944, 49.876862255000042 ], [ -119.391961817999928, 49.875655519000098 ], [ -119.392085859999909, 49.874647990000057 ], [ -119.392265398999953, 49.874534486000108 ], [ -119.392329076999928, 49.874499492000069 ], [ -119.393073184999977, 49.874426299000078 ], [ -119.396985129999976, 49.874424506000054 ], [ -119.397003416999937, 49.874424583000071 ], [ -119.39827239, 49.874430061000091 ], [ -119.398267946999951, 49.875152374000116 ], [ -119.398266943999914, 49.87531748300006 ], [ -119.398262565999929, 49.876105758000087 ], [ -119.398254292999937, 49.877599244000059 ], [ -119.398252234999973, 49.877978116000051 ], [ -119.398237549000029, 49.879111308000084 ], [ -119.398233963999985, 49.879388569000128 ], [ -119.396737816999973, 49.879367658000042 ], [ -119.395386289999976, 49.879360898000037 ], [ -119.395431808999916, 49.879490994000101 ], [ -119.395440391999941, 49.880145394000081 ], [ -119.396358879999966, 49.880171096000026 ], [ -119.396535289999946, 49.880235994 ], [ -119.396647295, 49.88033119300011 ], [ -119.396688886, 49.88050709400008 ], [ -119.396660081999968, 49.88138139700002 ], [ -119.39415869399997, 49.881374614000016 ], [ -119.393824716999958, 49.881394196000102 ], [ -119.393742834999969, 49.881429003000044 ], [ -119.393556027000031, 49.881429323000113 ], [ -119.393006074999903, 49.881426556000058 ], [ -119.392931788999988, 49.881427182000031 ], [ -119.39292440299991, 49.881395034000029 ], [ -119.392881518999928, 49.881325588000074 ], [ -119.392122754999917, 49.88010617000004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261977500", "BldgCostT": "176770000", "sL_LossRatio": "0.991117250199122", "sL_AssetLoss": "15401.413196", "sL_BldgLoss": "15264.606296", "sL_StrLoss": "15214.018296", "sL_NStrLoss": "50.588", "sL_ContLoss": "136.8069", "geom_point": "0101000020E6100000F09AE31EC3D95DC04F68D47424F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398254292999937, 49.877599244000059 ], [ -119.398262565999929, 49.876105758000087 ], [ -119.398266943999914, 49.87531748300006 ], [ -119.398267946999951, 49.875152374000116 ], [ -119.39827239, 49.874430061000091 ], [ -119.399996018999929, 49.874443773000067 ], [ -119.401349207999928, 49.874454554000067 ], [ -119.401388813999972, 49.874239129000046 ], [ -119.401468688999927, 49.873561192000132 ], [ -119.402391435999974, 49.87367205900005 ], [ -119.403182937999972, 49.873859854000045 ], [ -119.403706706999955, 49.874044112000057 ], [ -119.404521939999924, 49.874444681000114 ], [ -119.40497514499999, 49.874740273000036 ], [ -119.406537782999962, 49.875750392000079 ], [ -119.407331894999984, 49.876200198000049 ], [ -119.407433211999958, 49.876369791000066 ], [ -119.407441626999983, 49.876794817000111 ], [ -119.407404682999982, 49.876973201000091 ], [ -119.407218392999965, 49.877276209000087 ], [ -119.408132973999926, 49.877597388000048 ], [ -119.408195894999935, 49.87761950600003 ], [ -119.40811955099997, 49.87778850800003 ], [ -119.40811793799999, 49.878447657000073 ], [ -119.407912026999924, 49.878451499000079 ], [ -119.406695356999975, 49.878266062000122 ], [ -119.406317100999956, 49.878176378000056 ], [ -119.40597608799996, 49.878042008000079 ], [ -119.405578932, 49.877793147000098 ], [ -119.403969053999944, 49.876462270000061 ], [ -119.402901713999938, 49.877051601000119 ], [ -119.401885412999917, 49.877568205000088 ], [ -119.401430069999918, 49.877807990000058 ], [ -119.40106005699991, 49.877951764000024 ], [ -119.400839567999924, 49.878008070000106 ], [ -119.40061756199999, 49.878065083000088 ], [ -119.400001066999948, 49.878065204000052 ], [ -119.399559893999964, 49.878065296000045 ], [ -119.398378932999918, 49.87803905600002 ], [ -119.398252234999973, 49.877978116000051 ], [ -119.398254292999937, 49.877599244000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "158337084", "BldgCostT": "104153334", "sL_LossRatio": "0.997692449396244", "sL_AssetLoss": "14825.243678", "sL_BldgLoss": "14791.033678", "sL_StrLoss": "14777.048678", "sL_NStrLoss": "13.985", "sL_ContLoss": "34.21", "geom_point": "0101000020E61000006F567DAE76D95DC066AB890DAFEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.412691133999928, 49.878154687000098 ], [ -119.409793463999918, 49.877148987000112 ], [ -119.40952274199999, 49.877137158000053 ], [ -119.409476155999968, 49.87806906600013 ], [ -119.408494540999982, 49.877724362000016 ], [ -119.408195894999935, 49.87761950600003 ], [ -119.408132973999926, 49.877597388000048 ], [ -119.407218392999965, 49.877276209000087 ], [ -119.407404682999982, 49.876973201000091 ], [ -119.407441626999983, 49.876794817000111 ], [ -119.407433211999958, 49.876369791000066 ], [ -119.407331894999984, 49.876200198000049 ], [ -119.406537782999962, 49.875750392000079 ], [ -119.40497514499999, 49.874740273000036 ], [ -119.404521939999924, 49.874444681000114 ], [ -119.403706706999955, 49.874044112000057 ], [ -119.403182937999972, 49.873859854000045 ], [ -119.402391435999974, 49.87367205900005 ], [ -119.401468688999927, 49.873561192000132 ], [ -119.401388813999972, 49.874239129000046 ], [ -119.401349207999928, 49.874454554000067 ], [ -119.399996018999929, 49.874443773000067 ], [ -119.39827239, 49.874430061000091 ], [ -119.397003416999937, 49.874424583000071 ], [ -119.396985129999976, 49.874424506000054 ], [ -119.393073184999977, 49.874426299000078 ], [ -119.392329076999928, 49.874499492000069 ], [ -119.392265398999953, 49.874534486000108 ], [ -119.391997131999972, 49.874158811000036 ], [ -119.391720009999958, 49.873467391000091 ], [ -119.391321419999912, 49.87261240800013 ], [ -119.390143290000012, 49.870415993000044 ], [ -119.39009509100002, 49.870151208000081 ], [ -119.39014228799995, 49.86945859800008 ], [ -119.390118812, 49.86924499900006 ], [ -119.390103004, 49.869113113000033 ], [ -119.389863481999953, 49.868470905000024 ], [ -119.389592019999938, 49.867888597000054 ], [ -119.389295488999892, 49.867252515000125 ], [ -119.389277201999946, 49.867022012000049 ], [ -119.389329397999973, 49.866487833000122 ], [ -119.389340114999968, 49.865864323000032 ], [ -119.38958265499997, 49.865848316000069 ], [ -119.389813114999953, 49.865780984000011 ], [ -119.389949423999923, 49.865707952000065 ], [ -119.390062532999963, 49.865601903000034 ], [ -119.390075064999948, 49.865467207000044 ], [ -119.389947744999915, 49.865111790000064 ], [ -119.390012221999939, 49.864955820000077 ], [ -119.390275961999976, 49.864774476000022 ], [ -119.39036592199993, 49.864712614000055 ], [ -119.390397132999979, 49.864698695000058 ], [ -119.390662516999953, 49.864878699000101 ], [ -119.391351173999936, 49.865345793000095 ], [ -119.392640895999975, 49.866074998000087 ], [ -119.392681257999925, 49.866128893000052 ], [ -119.392892681999967, 49.86641119700009 ], [ -119.39301571599999, 49.866895398000061 ], [ -119.392925461999965, 49.867128483000037 ], [ -119.392829898999977, 49.867375297000109 ], [ -119.392424600999973, 49.867635992000018 ], [ -119.39140069199999, 49.868043290000095 ], [ -119.391201486999961, 49.868201389000028 ], [ -119.391119100999944, 49.868517597000121 ], [ -119.391205208999907, 49.868668947000103 ], [ -119.391240614, 49.868731194000148 ], [ -119.391572713999963, 49.868957603000105 ], [ -119.392932602999963, 49.869362473000102 ], [ -119.39293765799998, 49.869464721000085 ], [ -119.393147890999956, 49.869460380000049 ], [ -119.39336275899997, 49.869617743000049 ], [ -119.393408086999912, 49.870534475000049 ], [ -119.393633739999984, 49.870529813000125 ], [ -119.393582821999956, 49.870854289000093 ], [ -119.39350628399994, 49.871342049000106 ], [ -119.393448077999949, 49.871343251000049 ], [ -119.393474739999959, 49.871882435000039 ], [ -119.393740075999972, 49.871876954000051 ], [ -119.394035696999936, 49.872036800000039 ], [ -119.394284128999956, 49.872072975000044 ], [ -119.394319531999912, 49.872078130000112 ], [ -119.394322331999959, 49.872134791000128 ], [ -119.39466063799992, 49.872127799000054 ], [ -119.396207305999965, 49.87235300100015 ], [ -119.397672498999952, 49.87242990500004 ], [ -119.398367984999979, 49.87251661800007 ], [ -119.39934009699999, 49.872637807000032 ], [ -119.401564795999946, 49.872610704000039 ], [ -119.402421392999955, 49.872773093000042 ], [ -119.40251706699992, 49.872811977000048 ], [ -119.404653509999889, 49.873680303000071 ], [ -119.406433880999927, 49.874802594000066 ], [ -119.407221801999953, 49.875533202000071 ], [ -119.407579687999899, 49.875715501000059 ], [ -119.409076815999939, 49.87642189700005 ], [ -119.410836593999989, 49.876851998000035 ], [ -119.41246949100001, 49.877465909000051 ], [ -119.412851017999955, 49.877651648000068 ], [ -119.413639681999911, 49.878035595000021 ], [ -119.414044953999934, 49.878314442000047 ], [ -119.414112672999948, 49.878361046000052 ], [ -119.41502229199989, 49.878986897000068 ], [ -119.415679687999969, 49.879343 ], [ -119.415940037999974, 49.879419871000081 ], [ -119.416359816999929, 49.879543805 ], [ -119.41736750699998, 49.879649196000095 ], [ -119.417568627999941, 49.879687517000036 ], [ -119.417613690999929, 49.880090409000083 ], [ -119.417580409999957, 49.880454388000118 ], [ -119.41552678799998, 49.880452476000066 ], [ -119.415533369999977, 49.879680751000095 ], [ -119.415173231999944, 49.879659020000084 ], [ -119.412691133999928, 49.878154687000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "138.2", "sL_BldgLoss": "138.2", "sL_StrLoss": "138.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042E5C2F5A6D95DC083060F91A2EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.403116712999989, 49.87272178900011 ], [ -119.401694691999978, 49.872401388000078 ], [ -119.399246914999978, 49.872459800000037 ], [ -119.397917488999937, 49.872290310000054 ], [ -119.396381285999979, 49.872196290000012 ], [ -119.395775513999965, 49.872104757000074 ], [ -119.39932789099997, 49.872031255000053 ], [ -119.399314528000033, 49.871761664000054 ], [ -119.403068655999959, 49.871683871000108 ], [ -119.403095425999979, 49.872223051000063 ], [ -119.403512554999949, 49.872214399000093 ], [ -119.403545046999952, 49.87286867600006 ], [ -119.403116712999989, 49.87272178900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162642334", "BldgCostT": "109428334", "sL_LossRatio": "0.998279835481701", "sL_AssetLoss": "18137.8", "sL_BldgLoss": "18106.6", "sL_StrLoss": "18095.3", "sL_NStrLoss": "11.3", "sL_ContLoss": "31.2", "geom_point": "0101000020E610000021CA17B4D0DA5DC0CEFC59E237EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.415796208999893, 49.879133584000094 ], [ -119.414153919999976, 49.878015598000104 ], [ -119.41255302299993, 49.877203803000043 ], [ -119.4098942899999, 49.876359311000058 ], [ -119.408883405999987, 49.875912095000082 ], [ -119.406762806999922, 49.87467009500007 ], [ -119.406367204, 49.874272916000109 ], [ -119.406687316, 49.872057428000069 ], [ -119.409259623999972, 49.872212731000118 ], [ -119.40954418299999, 49.870242360000113 ], [ -119.407946382999953, 49.870145898000068 ], [ -119.408003541999946, 49.86975018100005 ], [ -119.40638762599994, 49.869652602000016 ], [ -119.406343086999968, 49.869960871000075 ], [ -119.401993562999948, 49.869698101000047 ], [ -119.401988187999947, 49.869735272000071 ], [ -119.396449124999933, 49.869400382000023 ], [ -119.39655657299997, 49.868657805000062 ], [ -119.393724351999978, 49.868486460000064 ], [ -119.393745211999899, 49.868908307000048 ], [ -119.392911005999935, 49.868925537000052 ], [ -119.392914703999949, 49.869000362000122 ], [ -119.392178193999911, 49.868828007000069 ], [ -119.391747103999975, 49.868558906000068 ], [ -119.391837201999962, 49.868395086000056 ], [ -119.392743819999936, 49.867872400000081 ], [ -119.393311991999937, 49.867294199000121 ], [ -119.393332802999936, 49.866834100000062 ], [ -119.393197177999951, 49.866369897000055 ], [ -119.392580491999979, 49.86572610900005 ], [ -119.39068810399999, 49.864586693000057 ], [ -119.390675310999882, 49.864574756000081 ], [ -119.390820987, 49.864509855000051 ], [ -119.391563372999912, 49.864179113000048 ], [ -119.391707115999949, 49.864150783000113 ], [ -119.391899409999894, 49.86417324800005 ], [ -119.39203213299993, 49.864230960000086 ], [ -119.392109723999965, 49.864312431000066 ], [ -119.392361937999979, 49.864914726000045 ], [ -119.392483492999972, 49.865107243000082 ], [ -119.393115838999947, 49.865737066000122 ], [ -119.393550596999987, 49.866014454000016 ], [ -119.393935110999948, 49.866445951000117 ], [ -119.394036818999936, 49.866515311000093 ], [ -119.394154807999939, 49.866539610000117 ], [ -119.395389660999967, 49.866529435000068 ], [ -119.395526636999989, 49.866499799000046 ], [ -119.395629532999948, 49.866435571000075 ], [ -119.395683519999963, 49.86635213700005 ], [ -119.395673215999963, 49.865293932000078 ], [ -119.395611259999967, 49.865142978000087 ], [ -119.395384728999943, 49.864874585000038 ], [ -119.395399406999957, 49.864753551000085 ], [ -119.395522434, 49.86469506300007 ], [ -119.395687942999984, 49.864709595000114 ], [ -119.395755089999966, 49.864757023000053 ], [ -119.395949762999976, 49.865091197000019 ], [ -119.396020003999936, 49.865310394000097 ], [ -119.396136201999965, 49.866032727000082 ], [ -119.396389986999935, 49.866788639000106 ], [ -119.396596387999963, 49.867022393000063 ], [ -119.396791147999949, 49.86709558800009 ], [ -119.39711919799997, 49.867098654000138 ], [ -119.401175345999945, 49.86713669000013 ], [ -119.401217115999955, 49.865640008000071 ], [ -119.401288005999959, 49.865162907000112 ], [ -119.401320204999962, 49.86494629300006 ], [ -119.40124497499994, 49.864269110000087 ], [ -119.401238296999935, 49.864208902000044 ], [ -119.401244703999936, 49.863980602000034 ], [ -119.401358713999954, 49.859927196000051 ], [ -119.404198715999939, 49.859940798000068 ], [ -119.40921755, 49.859962012000018 ], [ -119.40990440299997, 49.859964913000127 ], [ -119.411248799999953, 49.859957231000081 ], [ -119.412653998999943, 49.859949189000091 ], [ -119.413732809999928, 49.85994300200008 ], [ -119.414058802999975, 49.85995819400005 ], [ -119.414933702999974, 49.86013739100008 ], [ -119.41559000899997, 49.86011829500012 ], [ -119.416058698999962, 49.860015585000049 ], [ -119.41619196, 49.859954255000055 ], [ -119.41644021599997, 49.85984000900001 ], [ -119.41654261199993, 49.859681800000054 ], [ -119.416945683, 49.858397499000077 ], [ -119.416995111999896, 49.857957903000077 ], [ -119.41715989, 49.857919091000056 ], [ -119.417322325999933, 49.858238279000091 ], [ -119.417783497999949, 49.859144371000056 ], [ -119.41800110099993, 49.859571915000089 ], [ -119.418226876999924, 49.85981680200004 ], [ -119.418292378999951, 49.859846908000073 ], [ -119.41863332, 49.859913497000022 ], [ -119.419411638, 49.859915933000075 ], [ -119.420080832999957, 49.859918023000013 ], [ -119.420136439, 49.859918209000085 ], [ -119.420275932999914, 49.859918638000117 ], [ -119.422267465999951, 49.85992485200012 ], [ -119.42380101, 49.859929611000055 ], [ -119.423798280999932, 49.860454395000033 ], [ -119.423794240999953, 49.861236403000099 ], [ -119.42378189599998, 49.863619503000074 ], [ -119.425192382999953, 49.863630409000052 ], [ -119.425792797999947, 49.863948330000049 ], [ -119.425869815999931, 49.863989105000066 ], [ -119.426023311000037, 49.864038102000073 ], [ -119.42645367599999, 49.864093529000058 ], [ -119.426592702000036, 49.864111443000063 ], [ -119.426615679999927, 49.864114396000083 ], [ -119.427248392999928, 49.864162410000091 ], [ -119.427588299999968, 49.864149500000082 ], [ -119.429812292999912, 49.863747791000037 ], [ -119.429817008999947, 49.864317005000082 ], [ -119.42994678099997, 49.864550600000051 ], [ -119.42988330299994, 49.864564900000119 ], [ -119.429241593999933, 49.864967003000082 ], [ -119.42906910499994, 49.865166078000073 ], [ -119.429053569999894, 49.865199432000082 ], [ -119.428909388999969, 49.865508709000046 ], [ -119.428647198999954, 49.865777401000109 ], [ -119.428559116999935, 49.86600149300007 ], [ -119.428641103999936, 49.866295383000072 ], [ -119.429758099999901, 49.865938965000048 ], [ -119.432522022999962, 49.865056895000087 ], [ -119.432901411, 49.864885488000091 ], [ -119.433228885999981, 49.864851999000066 ], [ -119.434399489999961, 49.865102991000114 ], [ -119.434962382999984, 49.865267802000048 ], [ -119.435618178999945, 49.865641401000104 ], [ -119.435928808999961, 49.865637507000088 ], [ -119.435882390999907, 49.865571509000063 ], [ -119.435888397999932, 49.865267504000052 ], [ -119.436024817999964, 49.864901797000108 ], [ -119.436069698999972, 49.864638101000033 ], [ -119.43599521499999, 49.864476508000131 ], [ -119.435916417000016, 49.864422101000059 ], [ -119.43580391099999, 49.864252685000118 ], [ -119.437071194999959, 49.864103194000087 ], [ -119.437251991999943, 49.864059898000072 ], [ -119.43750118, 49.863939401000053 ], [ -119.437979027999972, 49.863323247000075 ], [ -119.438188000999929, 49.86305381800009 ], [ -119.438245303999963, 49.862979907000131 ], [ -119.438298281999948, 49.862786200000052 ], [ -119.438751477999986, 49.86227609500007 ], [ -119.438881606999985, 49.8620309900001 ], [ -119.438939090999952, 49.861699397000109 ], [ -119.438923691999946, 49.861252391000043 ], [ -119.440012300999925, 49.861403614000089 ], [ -119.442791354999898, 49.860978632000133 ], [ -119.44236428399995, 49.863031498000083 ], [ -119.442024805999949, 49.863461597000033 ], [ -119.439059892999978, 49.866213190000039 ], [ -119.438644603999961, 49.866798508000088 ], [ -119.438257218999965, 49.867697202000109 ], [ -119.437891495999978, 49.870907387000081 ], [ -119.437239382999977, 49.872324502000026 ], [ -119.436772696, 49.873026612000068 ], [ -119.436098682999983, 49.873724503000098 ], [ -119.434930584999933, 49.874603208000032 ], [ -119.433715609, 49.875349484 ], [ -119.431917905999953, 49.87611570100006 ], [ -119.428068592999963, 49.877356203000055 ], [ -119.427072493999987, 49.87775500900009 ], [ -119.426877595999883, 49.877759290000093 ], [ -119.425340906999978, 49.87847560700002 ], [ -119.421807307, 49.879646308000126 ], [ -119.420643391999974, 49.879743205000061 ], [ -119.416615795999959, 49.879404193000049 ], [ -119.415796208999893, 49.879133584000094 ] ], [ [ -119.423010685999913, 49.878015291000054 ], [ -119.423007540999919, 49.877952492000112 ], [ -119.420325515999949, 49.877790924000053 ], [ -119.420438509999912, 49.877007313000014 ], [ -119.417644410999984, 49.87683892200004 ], [ -119.417457976999955, 49.878131265000086 ], [ -119.419256120999989, 49.878093738000047 ], [ -119.419269597999985, 49.878363325000066 ], [ -119.422607007999886, 49.878293599000088 ], [ -119.422593511999963, 49.878024014000047 ], [ -119.423010685999913, 49.878015291000054 ] ], [ [ -119.433653754999966, 49.873744231000096 ], [ -119.433626643999972, 49.873205062000054 ], [ -119.434878027999929, 49.87317877400006 ], [ -119.434891588999903, 49.873448357000036 ], [ -119.435027209999973, 49.873445508000067 ], [ -119.435074869999966, 49.873114213000122 ], [ -119.433176304, 49.873000046000058 ], [ -119.433028488000019, 49.874027229000035 ], [ -119.433250174999941, 49.874022575000048 ], [ -119.43323662099999, 49.873752990000092 ], [ -119.433653754999966, 49.873744231000096 ] ], [ [ -119.416916558999958, 49.871926108000068 ], [ -119.41720122699995, 49.86995266400006 ], [ -119.415190961999954, 49.869831440000048 ], [ -119.414906207999948, 49.871804879000102 ], [ -119.416916558999958, 49.871926108000068 ] ], [ [ -119.415243580999956, 49.86496287000007 ], [ -119.415468496999978, 49.863403808000029 ], [ -119.415082282999947, 49.863380511000102 ], [ -119.415117492999983, 49.863136454 ], [ -119.415000697999972, 49.863129409000081 ], [ -119.415015318999949, 49.863028062000048 ], [ -119.409961344999928, 49.862723070000094 ], [ -119.409965968999941, 49.862691040000037 ], [ -119.408190667, 49.862583850000057 ], [ -119.408142776999952, 49.862915449000091 ], [ -119.405397258999969, 49.862749621000056 ], [ -119.405324841999985, 49.863250842000106 ], [ -119.409315592, 49.863491858000081 ], [ -119.409113790000021, 49.864889380000072 ], [ -119.410559045999932, 49.864976627000026 ], [ -119.410544063999978, 49.865080398000067 ], [ -119.412739909999971, 49.86521292000004 ], [ -119.41277024199999, 49.865002748000101 ], [ -119.41308958399999, 49.865022016000061 ], [ -119.413116637999963, 49.864834555000122 ], [ -119.415243580999956, 49.86496287000007 ] ], [ [ -119.421136791999956, 49.862837074 ], [ -119.421045865999943, 49.863467923000059 ], [ -119.423199417999925, 49.86359769000007 ], [ -119.42341433699994, 49.862106068000081 ], [ -119.422977225999929, 49.862079732000041 ], [ -119.422970267999943, 49.862128011000088 ], [ -119.422837678999926, 49.862120022000113 ], [ -119.422720602999959, 49.862932514000079 ], [ -119.421136791999956, 49.862837074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69764500", "BldgCostT": "47170000", "sL_LossRatio": "0.999999396182001", "sL_AssetLoss": "6856.37064", "sL_BldgLoss": "6856.3665", "sL_StrLoss": "6856.3", "sL_NStrLoss": "0.0665", "sL_ContLoss": "0.00414", "geom_point": "0101000020E6100000097C0B0CD5DB5DC0E622213E6EEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.429241593999933, 49.864967003000082 ], [ -119.42988330299994, 49.864564900000119 ], [ -119.42994678099997, 49.864550600000051 ], [ -119.431543190999932, 49.864181615000099 ], [ -119.432519803999966, 49.863955900000114 ], [ -119.432668610999968, 49.863882710000055 ], [ -119.433001493999953, 49.863519814000071 ], [ -119.433450405999977, 49.863283109000101 ], [ -119.433608113999924, 49.863109197000064 ], [ -119.433582101999946, 49.862979396000128 ], [ -119.433189989999974, 49.862248697000062 ], [ -119.433162302999975, 49.861985108000084 ], [ -119.431620876999929, 49.861923993000076 ], [ -119.431662519999961, 49.861614993000089 ], [ -119.431790393999975, 49.86145469500012 ], [ -119.433048540999948, 49.860783795 ], [ -119.43326509799999, 49.860668298000093 ], [ -119.433441508999962, 49.860597608000049 ], [ -119.433710174999987, 49.860555092000034 ], [ -119.434572712, 49.860606988000065 ], [ -119.434846790999984, 49.860031910000032 ], [ -119.43490269599998, 49.859994030000081 ], [ -119.434981404999959, 49.859940694000045 ], [ -119.435146901999957, 49.859887407000087 ], [ -119.435858645999929, 49.859887650000083 ], [ -119.438878129999921, 49.859888701000074 ], [ -119.438923691999946, 49.861252391000043 ], [ -119.438939090999952, 49.861699397000109 ], [ -119.438881606999985, 49.8620309900001 ], [ -119.438751477999986, 49.86227609500007 ], [ -119.438298281999948, 49.862786200000052 ], [ -119.438245303999963, 49.862979907000131 ], [ -119.438188000999929, 49.86305381800009 ], [ -119.437979027999972, 49.863323247000075 ], [ -119.43750118, 49.863939401000053 ], [ -119.437251991999943, 49.864059898000072 ], [ -119.437071194999959, 49.864103194000087 ], [ -119.43580391099999, 49.864252685000118 ], [ -119.435916417000016, 49.864422101000059 ], [ -119.43599521499999, 49.864476508000131 ], [ -119.436069698999972, 49.864638101000033 ], [ -119.436024817999964, 49.864901797000108 ], [ -119.435888397999932, 49.865267504000052 ], [ -119.435882390999907, 49.865571509000063 ], [ -119.435928808999961, 49.865637507000088 ], [ -119.435618178999945, 49.865641401000104 ], [ -119.434962382999984, 49.865267802000048 ], [ -119.434399489999961, 49.865102991000114 ], [ -119.433228885999981, 49.864851999000066 ], [ -119.432901411, 49.864885488000091 ], [ -119.432522022999962, 49.865056895000087 ], [ -119.429758099999901, 49.865938965000048 ], [ -119.428641103999936, 49.866295383000072 ], [ -119.428559116999935, 49.86600149300007 ], [ -119.428647198999954, 49.865777401000109 ], [ -119.428909388999969, 49.865508709000046 ], [ -119.429053569999894, 49.865199432000082 ], [ -119.42906910499994, 49.865166078000073 ], [ -119.429241593999933, 49.864967003000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107823751", "BldgCostT": "70710001", "sL_LossRatio": "0.997055787969477", "sL_AssetLoss": "10343.918741", "sL_BldgLoss": "10313.464051", "sL_StrLoss": "10302.007151", "sL_NStrLoss": "11.4569", "sL_ContLoss": "30.45469", "geom_point": "0101000020E6100000400004078FDB5DC08F4E86785EED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.429817008999947, 49.864317005000082 ], [ -119.429812292999912, 49.863747791000037 ], [ -119.427588299999968, 49.864149500000082 ], [ -119.427248392999928, 49.864162410000091 ], [ -119.426615679999927, 49.864114396000083 ], [ -119.426592702000036, 49.864111443000063 ], [ -119.42645367599999, 49.864093529000058 ], [ -119.426023311000037, 49.864038102000073 ], [ -119.425869815999931, 49.863989105000066 ], [ -119.425792797999947, 49.863948330000049 ], [ -119.425192382999953, 49.863630409000052 ], [ -119.42378189599998, 49.863619503000074 ], [ -119.423794240999953, 49.861236403000099 ], [ -119.423798280999932, 49.860454395000033 ], [ -119.42380101, 49.859929611000055 ], [ -119.422267465999951, 49.85992485200012 ], [ -119.420275932999914, 49.859918638000117 ], [ -119.420136439, 49.859918209000085 ], [ -119.420080832999957, 49.859918023000013 ], [ -119.419411638, 49.859915933000075 ], [ -119.41863332, 49.859913497000022 ], [ -119.418292378999951, 49.859846908000073 ], [ -119.418226876999924, 49.85981680200004 ], [ -119.41800110099993, 49.859571915000089 ], [ -119.417783497999949, 49.859144371000056 ], [ -119.417322325999933, 49.858238279000091 ], [ -119.41715989, 49.857919091000056 ], [ -119.417042188999943, 49.857282498000124 ], [ -119.41715900899996, 49.856762991000053 ], [ -119.41733898399994, 49.856402029000051 ], [ -119.417819110000025, 49.855439090000118 ], [ -119.418023702999903, 49.85515338800009 ], [ -119.418312383999989, 49.854913414000073 ], [ -119.418424952, 49.854773142000106 ], [ -119.418499700999945, 49.854680008000123 ], [ -119.418555218999956, 49.85430488900009 ], [ -119.418483823999978, 49.854092902000076 ], [ -119.41900301699999, 49.853929998000041 ], [ -119.419136394999924, 49.853760190000052 ], [ -119.419103793999966, 49.85296891300009 ], [ -119.419128594999918, 49.852859737000131 ], [ -119.419340580999958, 49.851926503000058 ], [ -119.419345231999898, 49.851695043000035 ], [ -119.41935749699999, 49.851083086000067 ], [ -119.419371769999927, 49.850959199000044 ], [ -119.419396700000021, 49.850743198000018 ], [ -119.419547493999985, 49.850539986000094 ], [ -119.420228302999988, 49.850034610000144 ], [ -119.420461112999988, 49.849861782000104 ], [ -119.421209396999942, 49.849306317000035 ], [ -119.423617973999967, 49.84821060500007 ], [ -119.423665342999968, 49.848092118000096 ], [ -119.423698692999906, 49.848008605000096 ], [ -119.423597508999961, 49.847722595000086 ], [ -119.423457399999975, 49.847551097000057 ], [ -119.423395706999941, 49.847475595000063 ], [ -119.422719965999946, 49.847078097000058 ], [ -119.421638506999926, 49.846638088000141 ], [ -119.421202808999936, 49.845902898000084 ], [ -119.421186670999973, 49.845890461000081 ], [ -119.420955297999939, 49.845711906000069 ], [ -119.420722995999967, 49.845308589000048 ], [ -119.421217875999901, 49.845306147000073 ], [ -119.422162018, 49.845301502000034 ], [ -119.422370907999948, 49.845330080000082 ], [ -119.423092992999955, 49.845428895000055 ], [ -119.423345502999936, 49.845429688000081 ], [ -119.424022244999961, 49.845326498000063 ], [ -119.424411557, 49.845267117000112 ], [ -119.424524637999966, 49.845244250000093 ], [ -119.424867078999952, 49.845138127000077 ], [ -119.425114970999957, 49.845087965000062 ], [ -119.425336411999979, 49.845065337000086 ], [ -119.425711600999946, 49.845057478000086 ], [ -119.425989991999955, 49.845060630000077 ], [ -119.426254477999962, 49.845064106000059 ], [ -119.426546302999924, 49.845057984000078 ], [ -119.426782964999987, 49.845062032000058 ], [ -119.426921490999931, 49.845050121 ], [ -119.427416349999959, 49.84493180700008 ], [ -119.427539635999935, 49.844893249000073 ], [ -119.427593636999958, 49.844882318 ], [ -119.427988465999974, 49.844828254000021 ], [ -119.428021699999974, 49.844823706000064 ], [ -119.4286156899999, 49.844673400000055 ], [ -119.428790511, 49.844525890000057 ], [ -119.428810130999921, 49.84448089300011 ], [ -119.428838497999948, 49.844415902000144 ], [ -119.428842013999883, 49.844236393000074 ], [ -119.42867991599995, 49.843693810000104 ], [ -119.428763810999968, 49.843624812 ], [ -119.428952409999937, 49.843692099000059 ], [ -119.429914022999981, 49.844353296000094 ], [ -119.430786401999953, 49.844597302000075 ], [ -119.431055305999948, 49.844716856000055 ], [ -119.43129160499997, 49.844821888000077 ], [ -119.431310001999975, 49.844826122000079 ], [ -119.431375877999969, 49.844830803000121 ], [ -119.431709373, 49.84482381000003 ], [ -119.431725957999973, 49.844877426000075 ], [ -119.43174708799998, 49.845020914000081 ], [ -119.431791947999955, 49.845082937 ], [ -119.431864127999944, 49.845135392000039 ], [ -119.431934966999933, 49.845160878000087 ], [ -119.432056021999983, 49.845189283000082 ], [ -119.432085383999919, 49.845203808000043 ], [ -119.432335806999902, 49.845239589000087 ], [ -119.432980653999934, 49.845237050000108 ], [ -119.433314601999967, 49.845235710000075 ], [ -119.435303540999911, 49.845227801000071 ], [ -119.438177486999933, 49.845216304000111 ], [ -119.438181388999965, 49.847841 ], [ -119.438237007999959, 49.848115590000134 ], [ -119.438250782999916, 49.848183793000082 ], [ -119.438387212999956, 49.848274210000042 ], [ -119.438523904999983, 49.848314005000084 ], [ -119.439487397999983, 49.84841981800006 ], [ -119.440451103999948, 49.848708610000102 ], [ -119.440507447999948, 49.848725480000041 ], [ -119.440531505999985, 49.848732706000078 ], [ -119.440894314, 49.84877260400004 ], [ -119.441675905999972, 49.848774389000042 ], [ -119.441708034999976, 49.848783260000083 ], [ -119.441968713, 49.848855201000092 ], [ -119.442090495999963, 49.848930293000073 ], [ -119.44225510199999, 49.84911629500008 ], [ -119.442261917999943, 49.849171704000092 ], [ -119.442280908999962, 49.849325584000034 ], [ -119.442179983999921, 49.849522685000089 ], [ -119.44179516299999, 49.849880807000069 ], [ -119.441756090999974, 49.849917207000033 ], [ -119.441493891999968, 49.850265404000041 ], [ -119.441309387999951, 49.85074280900006 ], [ -119.441409712999985, 49.851074906000107 ], [ -119.443581595999902, 49.851205404000105 ], [ -119.443624311999955, 49.851472593000054 ], [ -119.443582814999985, 49.852690025000065 ], [ -119.443561287999927, 49.853320998000086 ], [ -119.443548990999929, 49.854233307000143 ], [ -119.443535115999978, 49.854535924000054 ], [ -119.443311421999951, 49.859407293000061 ], [ -119.443266101999939, 49.859829002000048 ], [ -119.443160378, 49.860108760000088 ], [ -119.443151283999939, 49.860132808000095 ], [ -119.442915408999937, 49.860462705000018 ], [ -119.442689493999978, 49.860684006000078 ], [ -119.442478993999927, 49.860600405000064 ], [ -119.442324812999985, 49.86053919700008 ], [ -119.441274202999978, 49.859686811000117 ], [ -119.440672116999977, 49.859853802000011 ], [ -119.440292094999975, 49.859893313000065 ], [ -119.43968758699998, 49.859892194000032 ], [ -119.438878129999921, 49.859888701000074 ], [ -119.435858645999929, 49.859887650000083 ], [ -119.435146901999957, 49.859887407000087 ], [ -119.434981404999959, 49.859940694000045 ], [ -119.43490269599998, 49.859994030000081 ], [ -119.434846790999984, 49.860031910000032 ], [ -119.434572712, 49.860606988000065 ], [ -119.433710174999987, 49.860555092000034 ], [ -119.433441508999962, 49.860597608000049 ], [ -119.43326509799999, 49.860668298000093 ], [ -119.433048540999948, 49.860783795 ], [ -119.431790393999975, 49.86145469500012 ], [ -119.431662519999961, 49.861614993000089 ], [ -119.431620876999929, 49.861923993000076 ], [ -119.433162302999975, 49.861985108000084 ], [ -119.433189989999974, 49.862248697000062 ], [ -119.433582101999946, 49.862979396000128 ], [ -119.433608113999924, 49.863109197000064 ], [ -119.433450405999977, 49.863283109000101 ], [ -119.433001493999953, 49.863519814000071 ], [ -119.432668610999968, 49.863882710000055 ], [ -119.432519803999966, 49.863955900000114 ], [ -119.431543190999932, 49.864181615000099 ], [ -119.42994678099997, 49.864550600000051 ], [ -119.429817008999947, 49.864317005000082 ] ], [ [ -119.421461334999918, 49.857452146000114 ], [ -119.421487978999949, 49.857267257000103 ], [ -119.41905293799999, 49.857318122000024 ], [ -119.419040500999955, 49.857069150000072 ], [ -119.418982338999982, 49.857472612000052 ], [ -119.420889033999956, 49.85758755800002 ], [ -119.420913311000035, 49.85741911300002 ], [ -119.421461334999918, 49.857452146000114 ] ], [ [ -119.42153771999989, 49.856922087000036 ], [ -119.42168300900002, 49.855913837000074 ], [ -119.419819576999913, 49.855952769000055 ], [ -119.419806105999925, 49.855683182000078 ], [ -119.41897214299999, 49.855700596000034 ], [ -119.418985607999957, 49.855970184000121 ], [ -119.418568622999913, 49.855978888000024 ], [ -119.418569322999971, 49.855992928000092 ], [ -119.419190248999882, 49.856030369000045 ], [ -119.419121526999987, 49.856507084 ], [ -119.421514469, 49.856457097000018 ], [ -119.42153771999989, 49.856922087000036 ] ], [ [ -119.429716778999975, 49.856092077000028 ], [ -119.429579478999941, 49.857046055000083 ], [ -119.430497143999958, 49.85710129200006 ], [ -119.430502520999951, 49.857063932000045 ], [ -119.431985020999917, 49.857153153000091 ], [ -119.431966175999904, 49.856777926000042 ], [ -119.432383163999987, 49.856769173000067 ], [ -119.432369622999957, 49.856499588000069 ], [ -119.434454543999934, 49.856455799000088 ], [ -119.434497199999939, 49.857304294000123 ], [ -119.434554657999968, 49.857307749000057 ], [ -119.434590844999903, 49.857056127000043 ], [ -119.435935102999963, 49.857136978000057 ], [ -119.436137752999983, 49.855727559000137 ], [ -119.437762198999962, 49.85582523900014 ], [ -119.437708988999987, 49.854768157000102 ], [ -119.438125957999929, 49.85475938300003 ], [ -119.438098815999965, 49.854220216000016 ], [ -119.43934970499997, 49.854193885000043 ], [ -119.439436944999954, 49.855925918000089 ], [ -119.441588189999976, 49.856055204000036 ], [ -119.441617902999965, 49.855848377000072 ], [ -119.440880097999951, 49.855804042000038 ], [ -119.440913535, 49.855571321000063 ], [ -119.440883914999986, 49.855569541000079 ], [ -119.440931137999911, 49.855240849000069 ], [ -119.440856134999962, 49.855236342000055 ], [ -119.440951861999949, 49.854570052000071 ], [ -119.440888480999945, 49.854566244000033 ], [ -119.440919458999986, 49.854350620000091 ], [ -119.440778391999956, 49.8543421420001 ], [ -119.440788087999977, 49.854274653000061 ], [ -119.437419389999945, 49.854072149000061 ], [ -119.437487933999975, 49.853595303000134 ], [ -119.435949877999946, 49.853502810000052 ], [ -119.436324603999978, 49.850896307000049 ], [ -119.434413902999921, 49.850781373000103 ], [ -119.434488431999952, 49.8502630670001 ], [ -119.434042924, 49.850236264000046 ], [ -119.434071052999968, 49.850040663000044 ], [ -119.43205437599994, 49.849919310000061 ], [ -119.432193492999943, 49.848952175000058 ], [ -119.42882553699998, 49.848749423000136 ], [ -119.428942648999936, 49.847935666000062 ], [ -119.426516581999948, 49.847986503000122 ], [ -119.426530085999957, 49.848256089000131 ], [ -119.425709171999969, 49.848273281000061 ], [ -119.425609259999931, 49.848967186000039 ], [ -119.425247408999923, 49.848945386000082 ], [ -119.425039312999985, 49.850390495000028 ], [ -119.422200234999963, 49.850219407000026 ], [ -119.42206942699994, 49.85112736100011 ], [ -119.421672272999928, 49.851103422000072 ], [ -119.421230755999943, 49.854167572000101 ], [ -119.420563176999948, 49.854127329000036 ], [ -119.420599645999971, 49.85485699900007 ], [ -119.42143359399995, 49.854839574000017 ], [ -119.421447072999939, 49.85510916100008 ], [ -119.421864048999922, 49.855100446000044 ], [ -119.421894172999941, 49.855702828000119 ], [ -119.422516192999922, 49.855740315000055 ], [ -119.422518335999911, 49.855725446000093 ], [ -119.423149458999958, 49.855763479000089 ], [ -119.423141952999927, 49.855613465000076 ], [ -119.42230799299989, 49.855630904000087 ], [ -119.422254058999954, 49.854552555000041 ], [ -119.421837085999954, 49.854561272000069 ], [ -119.421729246999988, 49.85240457400004 ], [ -119.422980103999919, 49.852378423000069 ], [ -119.422939647999925, 49.851569661000028 ], [ -119.424607427999888, 49.851534772000043 ], [ -119.424701894999941, 49.853421878000105 ], [ -119.425535814999961, 49.853404423000057 ], [ -119.425481813999937, 49.852326078000104 ], [ -119.427149617999973, 49.852291151000038 ], [ -119.427176635999928, 49.852830323000013 ], [ -119.428010544999921, 49.852812851000088 ], [ -119.42795649, 49.851734506000057 ], [ -119.428373434999941, 49.851725768000058 ], [ -119.428359918999959, 49.851456183000018 ], [ -119.43044462899995, 49.851412469000103 ], [ -119.430485211999937, 49.852221226000061 ], [ -119.43006826299991, 49.852229972000032 ], [ -119.43013589499995, 49.853577900000133 ], [ -119.430552854, 49.853569153000137 ], [ -119.430566382999956, 49.853838739 ], [ -119.431400307, 49.853821241000091 ], [ -119.431386772999929, 49.853551655000047 ], [ -119.43347157, 49.853507887000127 ], [ -119.433539296999967, 49.854855810000089 ], [ -119.433956265999939, 49.854847052000096 ], [ -119.434024011999938, 49.856194975000086 ], [ -119.431105134999939, 49.856256258000137 ], [ -119.431118667999939, 49.856525843000107 ], [ -119.429867710999986, 49.856552085000061 ], [ -119.429840659000021, 49.856012913000058 ], [ -119.429006694999913, 49.856030400000108 ], [ -119.428993172999952, 49.855760814000107 ], [ -119.428576193999987, 49.855769555000059 ], [ -119.428535639999978, 49.854960798 ], [ -119.427284718999957, 49.854987012000016 ], [ -119.427311740999954, 49.855526183000102 ], [ -119.426477784999946, 49.85554365200008 ], [ -119.426495545999927, 49.855898119000088 ], [ -119.429716778999975, 49.856092077000028 ] ], [ [ -119.419308321999949, 49.854074364000013 ], [ -119.419587845999985, 49.854068527000017 ], [ -119.419307184999923, 49.854051604000055 ], [ -119.419308321999949, 49.854074364000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "173698583", "BldgCostT": "111968333", "sL_LossRatio": "0.987345446537467", "sL_AssetLoss": "17925.7098618", "sL_BldgLoss": "17698.868008", "sL_StrLoss": "17615.619418", "sL_NStrLoss": "83.24859", "sL_ContLoss": "226.8418538", "geom_point": "0101000020E61000004B724DA29ADA5DC06D910FD5EFEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398613296999912, 49.859837988000024 ], [ -119.398598105999923, 49.857190905000039 ], [ -119.398592189999988, 49.854366485000135 ], [ -119.398591603999989, 49.854078626000046 ], [ -119.398588752999927, 49.852688113000049 ], [ -119.400003897999966, 49.85270366500005 ], [ -119.401927104, 49.852724781000106 ], [ -119.404155495999987, 49.852749199000073 ], [ -119.40528202900002, 49.85275152800007 ], [ -119.406978962, 49.852755024000068 ], [ -119.407017173999947, 49.852755102000074 ], [ -119.407440332999954, 49.852724509000105 ], [ -119.40780041, 49.85269848700009 ], [ -119.408997807999953, 49.852432195000077 ], [ -119.409856193999957, 49.852337712000065 ], [ -119.409837529999947, 49.850381987000084 ], [ -119.409829460999944, 49.849536650000111 ], [ -119.409825617999942, 49.849132209000082 ], [ -119.409812566999975, 49.847765381000045 ], [ -119.409810847999907, 49.847585615000099 ], [ -119.409798905999978, 49.846335375000081 ], [ -119.409797300999955, 49.846167499000067 ], [ -119.409805474999956, 49.845202225000037 ], [ -119.409809138999947, 49.844770278000105 ], [ -119.409818986999952, 49.843600950000109 ], [ -119.409821812999937, 49.843269900000053 ], [ -119.409803188999945, 49.841096704000087 ], [ -119.408424475999965, 49.840965706000098 ], [ -119.40753100799995, 49.840880806000058 ], [ -119.407517499, 49.840055448000037 ], [ -119.407510711, 49.838746205000078 ], [ -119.407507089999939, 49.838044685000085 ], [ -119.407503938, 49.837433302000065 ], [ -119.407500856999889, 49.836834674000052 ], [ -119.406759353999973, 49.836624846000078 ], [ -119.405141927999978, 49.836167097000079 ], [ -119.404834791999974, 49.836080151000061 ], [ -119.404577310999912, 49.836007657000088 ], [ -119.403757187999986, 49.835664586000092 ], [ -119.403327782999924, 49.835381207000076 ], [ -119.403308289999956, 49.835371250000058 ], [ -119.402996181999981, 49.835212092000056 ], [ -119.402600122999942, 49.835075305000039 ], [ -119.402161107999959, 49.834925013000081 ], [ -119.401927791999981, 49.834781703000012 ], [ -119.401246767999965, 49.834145252000027 ], [ -119.4011714869999, 49.83407490000009 ], [ -119.39997289599998, 49.832952 ], [ -119.399916743999881, 49.83288285800009 ], [ -119.399399771999981, 49.832246262000076 ], [ -119.398645382999916, 49.831317341 ], [ -119.398524126000012, 49.831167993000093 ], [ -119.398223629999947, 49.830797947000079 ], [ -119.39730683099999, 49.829668916000116 ], [ -119.397280923000011, 49.829637005000073 ], [ -119.397237649999951, 49.829511300000021 ], [ -119.397218986999945, 49.829457096000041 ], [ -119.399612202999919, 49.82894710199999 ], [ -119.399790658999947, 49.828913913000072 ], [ -119.400014251999934, 49.828872340000075 ], [ -119.401964501999899, 49.828509587000056 ], [ -119.402968213999969, 49.828322898000131 ], [ -119.403161121999986, 49.828339913000057 ], [ -119.40328570299999, 49.828424305000112 ], [ -119.403475963999966, 49.82881222500005 ], [ -119.403598405999944, 49.829061792000097 ], [ -119.403712998999964, 49.829186189000055 ], [ -119.403917784999976, 49.829478588000057 ], [ -119.40444059, 49.82997531300007 ], [ -119.405152723999933, 49.830388125000134 ], [ -119.405308580999986, 49.83047849800009 ], [ -119.405619207999962, 49.830560496000039 ], [ -119.406052913999986, 49.830592097000121 ], [ -119.407509310999899, 49.830412811 ], [ -119.408276541999925, 49.83042688600009 ], [ -119.408668786999939, 49.830434110000049 ], [ -119.408946911999948, 49.830489708000044 ], [ -119.409182507999972, 49.830580307000062 ], [ -119.409746908999978, 49.830797281000038 ], [ -119.410076237999959, 49.830799978000087 ], [ -119.413287791999949, 49.830826009000077 ], [ -119.413885736999958, 49.830826512000073 ], [ -119.414149678999976, 49.83082675 ], [ -119.415639211999959, 49.830828008 ], [ -119.417225932999912, 49.830828901000075 ], [ -119.418774822999964, 49.830782375000112 ], [ -119.418770358999936, 49.831637933000174 ], [ -119.418762068999939, 49.833209919000055 ], [ -119.418761749999945, 49.833270743000099 ], [ -119.418761554999989, 49.833305892000112 ], [ -119.41885083499993, 49.833432298000105 ], [ -119.418916629999956, 49.833466247000011 ], [ -119.41896775699999, 49.833492631000141 ], [ -119.419128212999951, 49.833522198000047 ], [ -119.419471609999931, 49.833526029000112 ], [ -119.421093042999956, 49.83354407700007 ], [ -119.421601587999973, 49.833541478000029 ], [ -119.423061307999902, 49.833533884000097 ], [ -119.423436828999982, 49.833531923000081 ], [ -119.424112916999917, 49.83352838900008 ], [ -119.424771681999971, 49.833526653000064 ], [ -119.426760192999936, 49.833521373000011 ], [ -119.427608138999972, 49.833519115000065 ], [ -119.428206005999982, 49.833517522000086 ], [ -119.428539853999922, 49.833516625000101 ], [ -119.429680024999982, 49.833513558000092 ], [ -119.430583537999951, 49.833511141000017 ], [ -119.430749899999967, 49.833510701000101 ], [ -119.43163451599996, 49.833508307000031 ], [ -119.43244396099999, 49.833533063000083 ], [ -119.432611416999947, 49.833538198000028 ], [ -119.432753824999949, 49.833538080000011 ], [ -119.434896892999959, 49.833536435000021 ], [ -119.43533748499999, 49.833536103000029 ], [ -119.435837585999977, 49.833503902000089 ], [ -119.436140822999945, 49.833447375000048 ], [ -119.436650809999961, 49.833352296000051 ], [ -119.437072001999965, 49.833340244000077 ], [ -119.437088009999982, 49.833339796000104 ], [ -119.437486208999985, 49.833395306000043 ], [ -119.438194301999957, 49.833567086000052 ], [ -119.439038603, 49.833897789000012 ], [ -119.439146102999985, 49.834588011000115 ], [ -119.439109047999949, 49.834821809000111 ], [ -119.439050299999906, 49.835192406000054 ], [ -119.43902699099999, 49.835339403000091 ], [ -119.438599508999928, 49.836225900000059 ], [ -119.438169769, 49.836744838000101 ], [ -119.437890539999941, 49.837082021000114 ], [ -119.437684550999933, 49.837330750000071 ], [ -119.437619998999963, 49.837408710000062 ], [ -119.437639715999978, 49.837475897000076 ], [ -119.437561590999934, 49.83769870400009 ], [ -119.437546114, 49.837720941000057 ], [ -119.437248400999962, 49.838149494000085 ], [ -119.437186848999957, 49.838201708 ], [ -119.437160880999954, 49.838223706000072 ], [ -119.436940286999956, 49.838311600000061 ], [ -119.43622088499994, 49.838286395000125 ], [ -119.43605790499997, 49.838303687000099 ], [ -119.435937825999972, 49.838362400000086 ], [ -119.435932743999928, 49.838370821000048 ], [ -119.43544385499996, 49.839184091000071 ], [ -119.435290180999928, 49.839439697000053 ], [ -119.435054308999952, 49.839575401000062 ], [ -119.434389510999949, 49.839810911 ], [ -119.433978710999952, 49.839998396000055 ], [ -119.43344881799996, 49.840305199000063 ], [ -119.433416239999971, 49.840320172000084 ], [ -119.433162575999958, 49.840427093000116 ], [ -119.433103349999925, 49.840449615000068 ], [ -119.43311770299999, 49.840458324000075 ], [ -119.433348157999916, 49.840615407000037 ], [ -119.433525903, 49.840788408000094 ], [ -119.433629489999987, 49.840970794000064 ], [ -119.433638293999977, 49.841151903000068 ], [ -119.433548395999978, 49.841340685000112 ], [ -119.433376804999952, 49.841446895000047 ], [ -119.432158212, 49.842822920000067 ], [ -119.431975107999932, 49.843029707000063 ], [ -119.431695310999913, 49.843421996000139 ], [ -119.431524286999917, 49.843786391000044 ], [ -119.431461592999966, 49.844037390000032 ], [ -119.431498587999982, 49.844265404000062 ], [ -119.43168093, 49.844719253000086 ], [ -119.431709373, 49.84482381000003 ], [ -119.431375877999969, 49.844830803000121 ], [ -119.431310001999975, 49.844826122000079 ], [ -119.43129160499997, 49.844821888000077 ], [ -119.431055305999948, 49.844716856000055 ], [ -119.430786401999953, 49.844597302000075 ], [ -119.429914022999981, 49.844353296000094 ], [ -119.428952409999937, 49.843692099000059 ], [ -119.428763810999968, 49.843624812 ], [ -119.42867991599995, 49.843693810000104 ], [ -119.428842013999883, 49.844236393000074 ], [ -119.428838497999948, 49.844415902000144 ], [ -119.428810130999921, 49.84448089300011 ], [ -119.428790511, 49.844525890000057 ], [ -119.4286156899999, 49.844673400000055 ], [ -119.428021699999974, 49.844823706000064 ], [ -119.427988465999974, 49.844828254000021 ], [ -119.427593636999958, 49.844882318 ], [ -119.427539635999935, 49.844893249000073 ], [ -119.427416349999959, 49.84493180700008 ], [ -119.426921490999931, 49.845050121 ], [ -119.426782964999987, 49.845062032000058 ], [ -119.426546302999924, 49.845057984000078 ], [ -119.426254477999962, 49.845064106000059 ], [ -119.425989991999955, 49.845060630000077 ], [ -119.425711600999946, 49.845057478000086 ], [ -119.425336411999979, 49.845065337000086 ], [ -119.425114970999957, 49.845087965000062 ], [ -119.424867078999952, 49.845138127000077 ], [ -119.424524637999966, 49.845244250000093 ], [ -119.424411557, 49.845267117000112 ], [ -119.424022244999961, 49.845326498000063 ], [ -119.423345502999936, 49.845429688000081 ], [ -119.423092992999955, 49.845428895000055 ], [ -119.422370907999948, 49.845330080000082 ], [ -119.422162018, 49.845301502000034 ], [ -119.421217875999901, 49.845306147000073 ], [ -119.420722995999967, 49.845308589000048 ], [ -119.420955297999939, 49.845711906000069 ], [ -119.421186670999973, 49.845890461000081 ], [ -119.421202808999936, 49.845902898000084 ], [ -119.421638506999926, 49.846638088000141 ], [ -119.422719965999946, 49.847078097000058 ], [ -119.423395706999941, 49.847475595000063 ], [ -119.423457399999975, 49.847551097000057 ], [ -119.423597508999961, 49.847722595000086 ], [ -119.423698692999906, 49.848008605000096 ], [ -119.423665342999968, 49.848092118000096 ], [ -119.423617973999967, 49.84821060500007 ], [ -119.421209396999942, 49.849306317000035 ], [ -119.420461112999988, 49.849861782000104 ], [ -119.420228302999988, 49.850034610000144 ], [ -119.419547493999985, 49.850539986000094 ], [ -119.419396700000021, 49.850743198000018 ], [ -119.419371769999927, 49.850959199000044 ], [ -119.41935749699999, 49.851083086000067 ], [ -119.419345231999898, 49.851695043000035 ], [ -119.419340580999958, 49.851926503000058 ], [ -119.419128594999918, 49.852859737000131 ], [ -119.419103793999966, 49.85296891300009 ], [ -119.419136394999924, 49.853760190000052 ], [ -119.41900301699999, 49.853929998000041 ], [ -119.418483823999978, 49.854092902000076 ], [ -119.418555218999956, 49.85430488900009 ], [ -119.418499700999945, 49.854680008000123 ], [ -119.418424952, 49.854773142000106 ], [ -119.418312383999989, 49.854913414000073 ], [ -119.418023702999903, 49.85515338800009 ], [ -119.417819110000025, 49.855439090000118 ], [ -119.41733898399994, 49.856402029000051 ], [ -119.41715900899996, 49.856762991000053 ], [ -119.417042188999943, 49.857282498000124 ], [ -119.41715989, 49.857919091000056 ], [ -119.416995111999896, 49.857957903000077 ], [ -119.416945683, 49.858397499000077 ], [ -119.41654261199993, 49.859681800000054 ], [ -119.41644021599997, 49.85984000900001 ], [ -119.41619196, 49.859954255000055 ], [ -119.416058698999962, 49.860015585000049 ], [ -119.41559000899997, 49.86011829500012 ], [ -119.414933702999974, 49.86013739100008 ], [ -119.414058802999975, 49.85995819400005 ], [ -119.413732809999928, 49.85994300200008 ], [ -119.412653998999943, 49.859949189000091 ], [ -119.411248799999953, 49.859957231000081 ], [ -119.40990440299997, 49.859964913000127 ], [ -119.40921755, 49.859962012000018 ], [ -119.404198715999939, 49.859940798000068 ], [ -119.401358713999954, 49.859927196000051 ], [ -119.400003599999977, 49.859921164000092 ], [ -119.398713898, 49.859915392000083 ], [ -119.398672601999962, 49.859882190000057 ], [ -119.398613296999912, 49.859837988000024 ] ], [ [ -119.406339313999979, 49.859194007000028 ], [ -119.406421629999969, 49.858624132000102 ], [ -119.404920655999959, 49.858533450000039 ], [ -119.404949291999941, 49.859110028000018 ], [ -119.406339313999979, 49.859194007000028 ] ], [ [ -119.403263008999929, 49.858777553000024 ], [ -119.403245869999935, 49.858432242000049 ], [ -119.403122051999944, 49.858424758000105 ], [ -119.403072729999977, 49.858766053000068 ], [ -119.403263008999929, 49.858777553000024 ] ], [ [ -119.416456794999959, 49.855483215000085 ], [ -119.416450415999975, 49.855355373000101 ], [ -119.416270943999933, 49.855344547000129 ], [ -119.416250324999979, 49.855487521000029 ], [ -119.416456794999959, 49.855483215000085 ] ], [ [ -119.41182158099997, 49.850989168000119 ], [ -119.411866715999963, 49.850676377000106 ], [ -119.41178447899992, 49.850671412000075 ], [ -119.411739343999926, 49.850984204000056 ], [ -119.41182158099997, 49.850989168000119 ] ], [ [ -119.4193751699999, 49.847056376000126 ], [ -119.419334779999986, 49.84624761200012 ], [ -119.418917879999938, 49.846256317000041 ], [ -119.418904417999968, 49.845986728000042 ], [ -119.418487518999939, 49.845995432000088 ], [ -119.418474061999945, 49.84572584400005 ], [ -119.418350928999985, 49.845728415000067 ], [ -119.418342374999952, 49.845787761000089 ], [ -119.417704146999981, 49.845749263000144 ], [ -119.417517508999978, 49.847043977000041 ], [ -119.417483660999977, 49.847041934000096 ], [ -119.417455592999985, 49.847236635000037 ], [ -119.418971393, 49.847328062 ], [ -119.418958262999936, 49.847065081000075 ], [ -119.4193751699999, 49.847056376000126 ] ], [ [ -119.426178735999954, 49.843675669000064 ], [ -119.426213150999928, 49.843436598000082 ], [ -119.428249331999908, 49.843559254000134 ], [ -119.428431618999937, 49.842292545000085 ], [ -119.429063376999963, 49.842330594000046 ], [ -119.429188310000015, 49.841462314000047 ], [ -119.428956323999941, 49.841448343000103 ], [ -119.429039368999938, 49.840871186000129 ], [ -119.428890861999918, 49.840862243000068 ], [ -119.42896040199993, 49.840378948000087 ], [ -119.42822279899994, 49.840394409000119 ], [ -119.428200067999967, 49.839940801000125 ], [ -119.428182271999987, 49.839585649000078 ], [ -119.42859911199993, 49.83957691200002 ], [ -119.428588882999961, 49.839372832000066 ], [ -119.425903663999961, 49.839211064000033 ], [ -119.425986966999972, 49.83863236100013 ], [ -119.42595260399996, 49.83863029000009 ], [ -119.425864736999969, 49.839240705000101 ], [ -119.425047163999949, 49.839191438000022 ], [ -119.424984224999932, 49.839187645000024 ], [ -119.424761189999941, 49.840736782000079 ], [ -119.425735205999956, 49.840716391000051 ], [ -119.42574870199995, 49.840985979000081 ], [ -119.426165553999937, 49.840977250000073 ], [ -119.426192551999961, 49.841516424000133 ], [ -119.426609409999941, 49.841507692000057 ], [ -119.426649913999896, 49.842316453000144 ], [ -119.425816185999935, 49.842333913000111 ], [ -119.425829681999971, 49.842603499000113 ], [ -119.423324405999907, 49.842655931000074 ], [ -119.423012526999926, 49.844821408000051 ], [ -119.42301946, 49.844821263 ], [ -119.423032943999928, 49.845090850000041 ], [ -119.424283611999954, 49.845064687000097 ], [ -119.424270121999939, 49.844795100000027 ], [ -119.424737498999974, 49.84478531900001 ], [ -119.424878687999964, 49.843804768000084 ], [ -119.425892887999964, 49.843865879000134 ], [ -119.425883672999987, 49.843681847000028 ], [ -119.426178735999954, 49.843675669000064 ] ], [ [ -119.415593411, 49.836290163000101 ], [ -119.415744697999912, 49.83524074200006 ], [ -119.414133707999923, 49.835143498 ], [ -119.413982384999926, 49.83619291600008 ], [ -119.415593411, 49.836290163000101 ] ], [ [ -119.43447574799994, 49.83623862700005 ], [ -119.434487957999949, 49.836153682000038 ], [ -119.433323947999924, 49.836083624000018 ], [ -119.433311734999947, 49.836168569000073 ], [ -119.43447574799994, 49.83623862700005 ] ], [ [ -119.404638008999953, 49.831281600000089 ], [ -119.404749910999925, 49.830506578000019 ], [ -119.404579402999929, 49.830496268000047 ], [ -119.40454635899998, 49.830725118000032 ], [ -119.403975778999921, 49.830690616000069 ], [ -119.403896909999958, 49.83123678700008 ], [ -119.404638008999953, 49.831281600000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96532083", "BldgCostT": "65838333", "sL_LossRatio": "0.999999408451025", "sL_AssetLoss": "8334.05213", "sL_BldgLoss": "8334.0472", "sL_StrLoss": "8334", "sL_NStrLoss": "0.0472", "sL_ContLoss": "0.00493", "geom_point": "0101000020E6100000016B9392B7D95DC06F13494F6CEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.403398645999943, 49.842497088000123 ], [ -119.402936809000025, 49.842436601 ], [ -119.402484309, 49.842447102000072 ], [ -119.401714883999915, 49.842680606000123 ], [ -119.401286876999933, 49.842763097000109 ], [ -119.400391165999935, 49.842768217000078 ], [ -119.400001672999934, 49.842770437000098 ], [ -119.399695589999936, 49.842772172000082 ], [ -119.39823120699999, 49.84278048700002 ], [ -119.397468801999963, 49.842694705000085 ], [ -119.397117594999955, 49.84263278600006 ], [ -119.397056577999976, 49.842407794000067 ], [ -119.396937294999958, 49.842286796000089 ], [ -119.395200289999948, 49.841410294000134 ], [ -119.394905409, 49.84120999 ], [ -119.394612500999955, 49.840899693000054 ], [ -119.395902004999968, 49.840477410000048 ], [ -119.396794608999983, 49.840454594000072 ], [ -119.398057997999942, 49.840569899000116 ], [ -119.398939014999939, 49.840665695000055 ], [ -119.399110916999945, 49.839997801000081 ], [ -119.39713198699999, 49.839771728000088 ], [ -119.396773602999957, 49.839730812000028 ], [ -119.396329143999964, 49.839590113 ], [ -119.394915347999984, 49.838873232000019 ], [ -119.393267566999924, 49.838105135000063 ], [ -119.392535413999951, 49.837907238000035 ], [ -119.39261635299998, 49.837669080000062 ], [ -119.393573082999922, 49.837464691000022 ], [ -119.394901879999978, 49.837194645000061 ], [ -119.395159025999959, 49.836951150000047 ], [ -119.395409190999914, 49.836818430000072 ], [ -119.396483987999957, 49.836184430000117 ], [ -119.398021596999982, 49.835758246000104 ], [ -119.398769278999978, 49.835304601000054 ], [ -119.400153093999947, 49.834457590000042 ], [ -119.400168700999984, 49.834451732000019 ], [ -119.400193130999952, 49.834442557000031 ], [ -119.4011714869999, 49.83407490000009 ], [ -119.401246767999965, 49.834145252000027 ], [ -119.401927791999981, 49.834781703000012 ], [ -119.402161107999959, 49.834925013000081 ], [ -119.402600122999942, 49.835075305000039 ], [ -119.402996181999981, 49.835212092000056 ], [ -119.403308289999956, 49.835371250000058 ], [ -119.403327782999924, 49.835381207000076 ], [ -119.403757187999986, 49.835664586000092 ], [ -119.404577310999912, 49.836007657000088 ], [ -119.404834791999974, 49.836080151000061 ], [ -119.405141927999978, 49.836167097000079 ], [ -119.406759353999973, 49.836624846000078 ], [ -119.407500856999889, 49.836834674000052 ], [ -119.407503938, 49.837433302000065 ], [ -119.407507089999939, 49.838044685000085 ], [ -119.407510711, 49.838746205000078 ], [ -119.407517499, 49.840055448000037 ], [ -119.40753100799995, 49.840880806000058 ], [ -119.408424475999965, 49.840965706000098 ], [ -119.409803188999945, 49.841096704000087 ], [ -119.409821812999937, 49.843269900000053 ], [ -119.407914116999905, 49.843292441000187 ], [ -119.406509897999939, 49.843309036000029 ], [ -119.405758005999971, 49.843317913000135 ], [ -119.405533388999984, 49.843295086000083 ], [ -119.405317693999962, 49.843273198000063 ], [ -119.405057087, 49.843192398000028 ], [ -119.404679121999919, 49.843016001000073 ], [ -119.404036122, 49.842656959000045 ], [ -119.403857490999926, 49.842557192000058 ], [ -119.403398645999943, 49.842497088000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77413750", "BldgCostT": "53125000", "sL_LossRatio": "1", "sL_AssetLoss": "5861.4", "sL_BldgLoss": "5861.4", "sL_StrLoss": "5861.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9D3A6C11FD95DC0E94338E220EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.390229854999959, 49.842195851000078 ], [ -119.39017656799993, 49.840799031000152 ], [ -119.389220806999901, 49.840795317000087 ], [ -119.389109677999926, 49.840357767000064 ], [ -119.388940027999979, 49.840063873000098 ], [ -119.388434826999955, 49.839455248000057 ], [ -119.3883877049999, 49.839288908000064 ], [ -119.388452332999961, 49.839064318000062 ], [ -119.388778814999966, 49.838718307000086 ], [ -119.389371369999964, 49.838212305000035 ], [ -119.389531208, 49.83814973900008 ], [ -119.389801783999985, 49.838102912000089 ], [ -119.390763077999964, 49.838115990000063 ], [ -119.390719957999963, 49.837594058000093 ], [ -119.389432367999973, 49.837744202000088 ], [ -119.38899196899996, 49.837795549000106 ], [ -119.38907749699996, 49.837270220000114 ], [ -119.389118052999976, 49.837021031000084 ], [ -119.38922970199998, 49.836153491000125 ], [ -119.389334890999962, 49.835282009000089 ], [ -119.38938251499999, 49.83487569600004 ], [ -119.389553188999969, 49.833021008000067 ], [ -119.390515586, 49.833007098000067 ], [ -119.391102764999971, 49.832927542000064 ], [ -119.391879400999954, 49.832822312000118 ], [ -119.392591206999938, 49.832841985000066 ], [ -119.393324740999972, 49.832996407000039 ], [ -119.394139498999934, 49.833167883000087 ], [ -119.39470558799999, 49.833386329000085 ], [ -119.394889017999958, 49.833457094000032 ], [ -119.39604471799997, 49.83376639500009 ], [ -119.39649500199999, 49.833856905000026 ], [ -119.396880477999943, 49.833893797000052 ], [ -119.397409795999948, 49.833901413000071 ], [ -119.398160393999945, 49.833759008000058 ], [ -119.398285522999913, 49.833762089000054 ], [ -119.39876899699999, 49.833913297000031 ], [ -119.399088572999943, 49.834038973000048 ], [ -119.400153093999947, 49.834457590000042 ], [ -119.398769278999978, 49.835304601000054 ], [ -119.398021596999982, 49.835758246000104 ], [ -119.396483987999957, 49.836184430000117 ], [ -119.395409190999914, 49.836818430000072 ], [ -119.395159025999959, 49.836951150000047 ], [ -119.394901879999978, 49.837194645000061 ], [ -119.393573082999922, 49.837464691000022 ], [ -119.39261635299998, 49.837669080000062 ], [ -119.392535413999951, 49.837907238000035 ], [ -119.393267566999924, 49.838105135000063 ], [ -119.394915347999984, 49.838873232000019 ], [ -119.391819866, 49.840681813000074 ], [ -119.391561850999963, 49.84166418500007 ], [ -119.391525635999983, 49.84220389700004 ], [ -119.391358129, 49.842599256000078 ], [ -119.390647157999979, 49.843595187000105 ], [ -119.390591146999895, 49.843673659000075 ], [ -119.387802114999886, 49.844114303000019 ], [ -119.388091995999901, 49.843597196000069 ], [ -119.388322543999919, 49.843364604000051 ], [ -119.389184490999966, 49.842878552000101 ], [ -119.390024175999883, 49.84247873000006 ], [ -119.390165411999988, 49.84235180800006 ], [ -119.390229854999959, 49.842195851000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233981000", "BldgCostT": "156950000", "sL_LossRatio": "0.999990649898972", "sL_AssetLoss": "25347.3197", "sL_BldgLoss": "25347.0827", "sL_StrLoss": "25345.9207", "sL_NStrLoss": "1.162", "sL_ContLoss": "0.237", "geom_point": "0101000020E61000001C0CB774F3DB5DC0DF95D1864BE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.418770358999936, 49.831637933000174 ], [ -119.418774822999964, 49.830782375000112 ], [ -119.417225932999912, 49.830828901000075 ], [ -119.415639211999959, 49.830828008 ], [ -119.414149678999976, 49.83082675 ], [ -119.413885736999958, 49.830826512000073 ], [ -119.413287791999949, 49.830826009000077 ], [ -119.410076237999959, 49.830799978000087 ], [ -119.409746908999978, 49.830797281000038 ], [ -119.409182507999972, 49.830580307000062 ], [ -119.408946911999948, 49.830489708000044 ], [ -119.408668786999939, 49.830434110000049 ], [ -119.408276541999925, 49.83042688600009 ], [ -119.407509310999899, 49.830412811 ], [ -119.406052913999986, 49.830592097000121 ], [ -119.405619207999962, 49.830560496000039 ], [ -119.405308580999986, 49.83047849800009 ], [ -119.405152723999933, 49.830388125000134 ], [ -119.40444059, 49.82997531300007 ], [ -119.403917784999976, 49.829478588000057 ], [ -119.403712998999964, 49.829186189000055 ], [ -119.403598405999944, 49.829061792000097 ], [ -119.403475963999966, 49.82881222500005 ], [ -119.40328570299999, 49.828424305000112 ], [ -119.403161121999986, 49.828339913000057 ], [ -119.402968213999969, 49.828322898000131 ], [ -119.401964501999899, 49.828509587000056 ], [ -119.400014251999934, 49.828872340000075 ], [ -119.399790658999947, 49.828913913000072 ], [ -119.399612202999919, 49.82894710199999 ], [ -119.397218986999945, 49.829457096000041 ], [ -119.397270684999981, 49.829098996000091 ], [ -119.397401202999959, 49.828795284000044 ], [ -119.397589393999951, 49.828516715000028 ], [ -119.397643069999958, 49.828474585000038 ], [ -119.398093731999893, 49.828120795000054 ], [ -119.398250484999934, 49.827997695000093 ], [ -119.398281278999931, 49.827823397000074 ], [ -119.398193196999898, 49.827718694000019 ], [ -119.398047396, 49.827655685000053 ], [ -119.397141649999952, 49.82752032500008 ], [ -119.396808301999954, 49.827470510000083 ], [ -119.396447911999985, 49.827386396000087 ], [ -119.396181100999982, 49.827252797000021 ], [ -119.396045294999922, 49.827100989000016 ], [ -119.395896006999976, 49.826174310000084 ], [ -119.395893764999983, 49.82607631200009 ], [ -119.395879903999912, 49.825465199000071 ], [ -119.39592710299992, 49.825138398000014 ], [ -119.396069687999969, 49.824876104000069 ], [ -119.396336093999963, 49.824625792000063 ], [ -119.396664605999902, 49.824428901000026 ], [ -119.397446164999963, 49.82415414899999 ], [ -119.397544507999982, 49.824119584000087 ], [ -119.397826091999917, 49.824020594000068 ], [ -119.39803609099999, 49.823870703000125 ], [ -119.398082802999966, 49.823793156000086 ], [ -119.398139013999938, 49.823699909000062 ], [ -119.398117610999961, 49.823509850000043 ], [ -119.400406936, 49.823501724 ], [ -119.403827867999937, 49.823320038000091 ], [ -119.40756062299999, 49.823121612000122 ], [ -119.407485712999943, 49.823640739000034 ], [ -119.40830559599999, 49.823690296000109 ], [ -119.408227574999955, 49.82423104100004 ], [ -119.411206040999957, 49.824411018000035 ], [ -119.41104045099992, 49.825559153000071 ], [ -119.411333952999939, 49.8255768840001 ], [ -119.411338765999957, 49.825543507000134 ], [ -119.411890610999961, 49.825576843000121 ], [ -119.411895342999912, 49.825544020000045 ], [ -119.4126058, 49.825586933000054 ], [ -119.412762462999964, 49.824500438000086 ], [ -119.417455148, 49.824783764000088 ], [ -119.417767051999988, 49.822618947000116 ], [ -119.418056213999989, 49.822636399000061 ], [ -119.41808087599999, 49.8224652070001 ], [ -119.418111192999987, 49.822254768000107 ], [ -119.417407284999939, 49.822269459000083 ], [ -119.416887300999974, 49.822280309000107 ], [ -119.416846986999985, 49.821471540000097 ], [ -119.417680363999949, 49.821454150000065 ], [ -119.417666921999938, 49.821184560000077 ], [ -119.418083606999986, 49.8211758630001 ], [ -119.418029833999952, 49.820097504000074 ], [ -119.418822503999962, 49.820080956000027 ], [ -119.419057525999975, 49.818449266000059 ], [ -119.42318955199994, 49.818698547000132 ], [ -119.42324725499995, 49.818297662000141 ], [ -119.428285352000017, 49.818601390000033 ], [ -119.428300828999951, 49.818493778000047 ], [ -119.428489195999987, 49.818505130000034 ], [ -119.428911062999958, 49.815571683000016 ], [ -119.432100329999969, 49.815763826000072 ], [ -119.432108317999962, 49.81570825700004 ], [ -119.433187982999968, 49.815773282000102 ], [ -119.433190469999971, 49.815755983000088 ], [ -119.433318046999943, 49.815763665000091 ], [ -119.433424398999946, 49.815023586000066 ], [ -119.43474330199993, 49.815103003000075 ], [ -119.434809561999927, 49.814641817000108 ], [ -119.436758443999963, 49.814759138000078 ], [ -119.436933330999977, 49.813541462000032 ], [ -119.442465937999927, 49.813874330000026 ], [ -119.442338140999979, 49.814764888000092 ], [ -119.443069065999964, 49.814808843000101 ], [ -119.443123037999953, 49.814432697000029 ], [ -119.442798599999961, 49.814413187000078 ], [ -119.443312505999984, 49.810831502000028 ], [ -119.444046861999979, 49.810875660000093 ], [ -119.44411979899999, 49.810367219000092 ], [ -119.444134842999972, 49.810368123000039 ], [ -119.444160205999964, 49.810191319000118 ], [ -119.449692460999984, 49.810523822000057 ], [ -119.449623826999982, 49.811002677000047 ], [ -119.45345286899996, 49.81123264600005 ], [ -119.453426803999932, 49.810717321 ], [ -119.453010218999964, 49.810726143000103 ], [ -119.452996585999983, 49.810456561000109 ], [ -119.452580001999962, 49.810465383000107 ], [ -119.452566373, 49.810195799000113 ], [ -119.452149791999915, 49.810204619000096 ], [ -119.452136163999953, 49.80993503600007 ], [ -119.451719585999982, 49.809943854000046 ], [ -119.451705958999952, 49.80967427100007 ], [ -119.450872806999911, 49.809691903000122 ], [ -119.450859185999917, 49.809422321000056 ], [ -119.450442611999961, 49.809431134000093 ], [ -119.450456229999944, 49.809700717000112 ], [ -119.449206496999921, 49.80972715000005 ], [ -119.449097613, 49.807570479000084 ], [ -119.448681052999945, 49.807579286000056 ], [ -119.448626625999964, 49.806500950000029 ], [ -119.449876274999909, 49.806474526000081 ], [ -119.449849047999976, 49.805935358000099 ], [ -119.450265593999958, 49.805926547000119 ], [ -119.450238362000022, 49.805387379000088 ], [ -119.450654903, 49.805378566000108 ], [ -119.450641284999946, 49.80510898400005 ], [ -119.451474359999963, 49.805091354000055 ], [ -119.45146073699999, 49.8048217710001 ], [ -119.452710341999961, 49.804795316000124 ], [ -119.452723969999923, 49.80506490000009 ], [ -119.453973579999925, 49.805038431000099 ], [ -119.453987215000012, 49.805308015 ], [ -119.454820289999944, 49.805290361000075 ], [ -119.454833932, 49.805559944000066 ], [ -119.455250470999943, 49.805551115000071 ], [ -119.455236828999972, 49.805281532000038 ], [ -119.456486440999981, 49.805255037000087 ], [ -119.456500088999988, 49.805524619000018 ], [ -119.456916629999938, 49.805515784000058 ], [ -119.45694393399998, 49.806054949000071 ], [ -119.457362670999942, 49.806046066000064 ], [ -119.457362944999915, 49.80706823 ], [ -119.457049035999944, 49.807027078 ], [ -119.456044880999912, 49.80689541200011 ], [ -119.455791598999937, 49.806862208000098 ], [ -119.455166886999947, 49.806860801000035 ], [ -119.455018681999917, 49.806893923000132 ], [ -119.454638, 49.806979007000102 ], [ -119.454414087999936, 49.807052198000122 ], [ -119.453791987999978, 49.807256889000051 ], [ -119.453337491999946, 49.807488804000059 ], [ -119.453007500999917, 49.807699302000124 ], [ -119.451950422, 49.808525411000083 ], [ -119.451663445999912, 49.808750297000074 ], [ -119.451302894999984, 49.80903289600014 ], [ -119.452219993999975, 49.809447408000054 ], [ -119.453553896999964, 49.810233816000036 ], [ -119.453563909999943, 49.810241490000074 ], [ -119.453589079999972, 49.810260780000078 ], [ -119.45417980500001, 49.810713902000032 ], [ -119.454504200999935, 49.811108185000101 ], [ -119.454846387999936, 49.811679613000059 ], [ -119.454966906999942, 49.812377793000046 ], [ -119.454942913999972, 49.81322654000008 ], [ -119.454909313999948, 49.814415519000107 ], [ -119.454863288999974, 49.816042810000042 ], [ -119.455766777999912, 49.816059677000069 ], [ -119.455977782999966, 49.816063598000021 ], [ -119.456975492999973, 49.816081919000055 ], [ -119.457015418999944, 49.816086621000053 ], [ -119.457548886, 49.816149795000101 ], [ -119.45779310399999, 49.816217705000035 ], [ -119.458189590999922, 49.816391392000128 ], [ -119.45852120499994, 49.816609086000057 ], [ -119.46004332199999, 49.817408381000057 ], [ -119.460652331999896, 49.817568684000072 ], [ -119.463415499999897, 49.817856252000041 ], [ -119.46496587199999, 49.818380861000072 ], [ -119.465971592999963, 49.818880035000056 ], [ -119.466304428999976, 49.819121326000108 ], [ -119.466319222999985, 49.81913205500004 ], [ -119.466501545999975, 49.819349801000094 ], [ -119.466710206999906, 49.819812947000052 ], [ -119.4668798, 49.820383031000084 ], [ -119.466943678999897, 49.820892596000093 ], [ -119.466921723999974, 49.821499463000038 ], [ -119.466905728999933, 49.821940223000119 ], [ -119.466848962000014, 49.823508102000105 ], [ -119.466845693999943, 49.823597860000049 ], [ -119.466764219999959, 49.82392764000015 ], [ -119.466609745999989, 49.823930929 ], [ -119.466635984999968, 49.824446673000068 ], [ -119.46663016399999, 49.824470238000067 ], [ -119.466220477999983, 49.824478961000068 ], [ -119.466281644999981, 49.825681360000033 ], [ -119.466187877999943, 49.825807195000074 ], [ -119.464684115999944, 49.826944060000116 ], [ -119.46444018699998, 49.827128472000034 ], [ -119.464243932, 49.82732986400007 ], [ -119.464100853999952, 49.827637376000027 ], [ -119.464049524999936, 49.827927784000117 ], [ -119.464093790999982, 49.82823299300005 ], [ -119.464481248999931, 49.829172859000039 ], [ -119.461770148999932, 49.830252163000068 ], [ -119.460993790999908, 49.830485952000089 ], [ -119.460111888999947, 49.830751502000112 ], [ -119.459662521999974, 49.830839270000119 ], [ -119.45963369699993, 49.830840950000109 ], [ -119.45836495399999, 49.830914976000017 ], [ -119.458013161999929, 49.830974264000062 ], [ -119.457735872999976, 49.831107556000099 ], [ -119.45706809899994, 49.831807962000063 ], [ -119.456276803999984, 49.83263786 ], [ -119.455638579999928, 49.833307243000029 ], [ -119.455164370999938, 49.83343141600006 ], [ -119.455170572000029, 49.833134726000061 ], [ -119.455045237999968, 49.832928784000096 ], [ -119.455002301999954, 49.832858213000073 ], [ -119.454483877999948, 49.832473016000073 ], [ -119.454311289999964, 49.83226490200007 ], [ -119.453996396999969, 49.831784514000041 ], [ -119.453700393999966, 49.831035191000097 ], [ -119.453532613999968, 49.830832797000063 ], [ -119.45309739299995, 49.830588098000071 ], [ -119.45209089399998, 49.830113190000112 ], [ -119.451956266999957, 49.830043307000089 ], [ -119.450568576999927, 49.829322788000084 ], [ -119.449245295999944, 49.828635566000123 ], [ -119.448460587999975, 49.82822804900011 ], [ -119.44799183, 49.827925354000037 ], [ -119.447606475000015, 49.827596031000027 ], [ -119.4473892399999, 49.827330111000038 ], [ -119.44713090099999, 49.826823747000049 ], [ -119.446563586999957, 49.82571178400007 ], [ -119.445144856999931, 49.823063428000069 ], [ -119.445033460999952, 49.822614213000122 ], [ -119.443606993999936, 49.822612121000084 ], [ -119.442188899999962, 49.822610056000052 ], [ -119.438241193999929, 49.822604190000085 ], [ -119.43679559, 49.822601996000046 ], [ -119.436792003999983, 49.822976502000117 ], [ -119.436793650999945, 49.823415997000069 ], [ -119.436804241999937, 49.82624954500006 ], [ -119.436810559999941, 49.827940168000083 ], [ -119.436810646999916, 49.827961268000067 ], [ -119.436811195999937, 49.828107503000076 ], [ -119.436774198999942, 49.828171194000028 ], [ -119.43669100299999, 49.828215893000056 ], [ -119.436486579999951, 49.828327293000051 ], [ -119.435424083999976, 49.828772834000048 ], [ -119.435328298999977, 49.828813009000065 ], [ -119.435243906999972, 49.828857269000075 ], [ -119.434478492999943, 49.829258608000018 ], [ -119.433774386999957, 49.829554900000076 ], [ -119.432720692999936, 49.829739805000081 ], [ -119.43246529399994, 49.829914097000014 ], [ -119.432354510999971, 49.830325599000112 ], [ -119.432355279999982, 49.830679690000075 ], [ -119.432397237999979, 49.830739082000022 ], [ -119.432718194999921, 49.831193709000047 ], [ -119.432766742999931, 49.831418905000085 ], [ -119.432770098999967, 49.831434397000095 ], [ -119.432674995999903, 49.831591201000023 ], [ -119.432251400999959, 49.831935994000027 ], [ -119.432060412999959, 49.832177403000053 ], [ -119.43163451599996, 49.833508307000031 ], [ -119.430749899999967, 49.833510701000101 ], [ -119.430583537999951, 49.833511141000017 ], [ -119.429680024999982, 49.833513558000092 ], [ -119.428539853999922, 49.833516625000101 ], [ -119.428206005999982, 49.833517522000086 ], [ -119.427608138999972, 49.833519115000065 ], [ -119.426760192999936, 49.833521373000011 ], [ -119.424771681999971, 49.833526653000064 ], [ -119.424112916999917, 49.83352838900008 ], [ -119.423436828999982, 49.833531923000081 ], [ -119.423061307999902, 49.833533884000097 ], [ -119.421601587999973, 49.833541478000029 ], [ -119.421093042999956, 49.83354407700007 ], [ -119.419471609999931, 49.833526029000112 ], [ -119.419128212999951, 49.833522198000047 ], [ -119.41896775699999, 49.833492631000141 ], [ -119.418916629999956, 49.833466247000011 ], [ -119.41885083499993, 49.833432298000105 ], [ -119.418761554999989, 49.833305892000112 ], [ -119.418761749999945, 49.833270743000099 ], [ -119.418762068999939, 49.833209919000055 ], [ -119.418770358999936, 49.831637933000174 ] ], [ [ -119.421393552999973, 49.831468246000036 ], [ -119.421408932999967, 49.831361459000057 ], [ -119.421106180999942, 49.831367788000087 ], [ -119.421094311999951, 49.831450199000081 ], [ -119.421393552999973, 49.831468246000036 ] ], [ [ -119.430639295999953, 49.831355157000111 ], [ -119.43070830799995, 49.830875284000101 ], [ -119.430564364999967, 49.830866615000097 ], [ -119.430495349999944, 49.831346488000122 ], [ -119.430639295999953, 49.831355157000111 ] ], [ [ -119.423004925999948, 49.830888716000103 ], [ -119.423126538999924, 49.830044071000039 ], [ -119.423325221999932, 49.828664081000092 ], [ -119.421713340999943, 49.82856688100005 ], [ -119.421591315999976, 49.829414230000047 ], [ -119.420993825999929, 49.829378195000139 ], [ -119.420962757999988, 49.829593897000102 ], [ -119.42135822599991, 49.829617750000097 ], [ -119.421262121999973, 49.83028505000005 ], [ -119.422291690999913, 49.830263525000063 ], [ -119.422296382999917, 49.830357425000081 ], [ -119.422320871999943, 49.830847469000048 ], [ -119.423004925999948, 49.830888716000103 ] ], [ [ -119.428990153999962, 49.828089734000066 ], [ -119.428809423999951, 49.82934613100015 ], [ -119.430148095999982, 49.829426768000104 ], [ -119.430440417999989, 49.827394149000028 ], [ -119.429241520999966, 49.827419297000148 ], [ -119.429228012999943, 49.82714971000005 ], [ -119.427144341999963, 49.827193385000079 ], [ -119.427130844999979, 49.826923798000067 ], [ -119.426877008999924, 49.826929116000031 ], [ -119.426297379999966, 49.826941258 ], [ -119.426256904999946, 49.82613249500011 ], [ -119.426673627999918, 49.82612376600008 ], [ -119.426650253999952, 49.825656782000053 ], [ -119.424704553999987, 49.825539500000019 ], [ -119.424560985999904, 49.826536971000095 ], [ -119.424350872, 49.826524304000031 ], [ -119.424167374999982, 49.827799086000027 ], [ -119.426886529999976, 49.827962985000042 ], [ -119.428990153999962, 49.828089734000066 ] ], [ [ -119.430894944, 49.827114742000056 ], [ -119.430902950999922, 49.827274442000068 ], [ -119.431267448999918, 49.827296394000072 ], [ -119.431294774999941, 49.827106351000097 ], [ -119.430894944, 49.827114742000056 ] ], [ [ -119.43038360599995, 49.825236379000025 ], [ -119.430367162999971, 49.82490835600003 ], [ -119.429773648999969, 49.824872603000088 ], [ -119.429918852999933, 49.823862925000078 ], [ -119.429750746999943, 49.823852798000139 ], [ -119.429549249, 49.825253882 ], [ -119.43038360599995, 49.825236379000025 ] ], [ [ -119.454471993999945, 49.823130109000068 ], [ -119.454436207999933, 49.82337989300008 ], [ -119.454484586999939, 49.823378868000056 ], [ -119.454471993999945, 49.823130109000068 ] ], [ [ -119.449560522999946, 49.824994306000079 ], [ -119.449593215999954, 49.825641374000057 ], [ -119.450009930999968, 49.825632562000067 ], [ -119.450026262000023, 49.825955709000013 ], [ -119.45008016599995, 49.82595894600005 ], [ -119.45004043199999, 49.826236089000069 ], [ -119.450040945999945, 49.826246285000103 ], [ -119.450268379999969, 49.826259942000036 ], [ -119.450242958999951, 49.826437246000118 ], [ -119.450467523999961, 49.826432496000081 ], [ -119.45049477699996, 49.826971660000055 ], [ -119.450911501999911, 49.826962844000022 ], [ -119.450926403999958, 49.827257590000066 ], [ -119.455128762999919, 49.8275098270001 ], [ -119.45548497799993, 49.827531201000092 ], [ -119.455457056999947, 49.827726099000131 ], [ -119.458338777, 49.827898963000024 ], [ -119.458345430999913, 49.827852493000179 ], [ -119.459485357999981, 49.827920852000069 ], [ -119.459610272999925, 49.827048344000069 ], [ -119.458842915999981, 49.827064635000077 ], [ -119.458856587999932, 49.827334216000061 ], [ -119.4576064099999, 49.82736074600011 ], [ -119.457592743999896, 49.827091164000109 ], [ -119.456759294999969, 49.827108844000094 ], [ -119.456745633999986, 49.826839262000064 ], [ -119.456328909999982, 49.826848100000063 ], [ -119.456315251999911, 49.826578518000076 ], [ -119.45589853099996, 49.82658735300005 ], [ -119.455884874999967, 49.82631777200006 ], [ -119.45572514199992, 49.82632115900001 ], [ -119.455468156999984, 49.826326606000102 ], [ -119.45544084799991, 49.825787442000021 ], [ -119.455024134999931, 49.825796274000012 ], [ -119.45499711099994, 49.825262615000035 ], [ -119.454996830999974, 49.825257111000049 ], [ -119.454988989999904, 49.825257277000077 ], [ -119.454580122999985, 49.825265942000115 ], [ -119.454562364999944, 49.824915193000031 ], [ -119.454552825999926, 49.824726778000077 ], [ -119.45438117199997, 49.824730415000083 ], [ -119.454242294999943, 49.824733357000135 ], [ -119.45423165899993, 49.824807594000021 ], [ -119.45082032, 49.824602808000023 ], [ -119.450753923999912, 49.825065973000065 ], [ -119.449560522999946, 49.824994306000079 ] ], [ [ -119.454873979999917, 49.822830874000047 ], [ -119.454861155999964, 49.822577585000047 ], [ -119.454553792999945, 49.82255913900012 ], [ -119.454513769999977, 49.822838507000043 ], [ -119.454873979999917, 49.822830874000047 ] ], [ [ -119.459726859999989, 49.81981988800009 ], [ -119.459682768, 49.818950664000099 ], [ -119.459266115, 49.818959511000052 ], [ -119.45922510099993, 49.818150767000091 ], [ -119.458391805999952, 49.818168455000041 ], [ -119.458405472999985, 49.818438037000057 ], [ -119.457988823, 49.81844687900012 ], [ -119.45801615299996, 49.818986042000063 ], [ -119.457599498999912, 49.818994883000073 ], [ -119.45761316, 49.819264464000049 ], [ -119.457196503999981, 49.819273303000038 ], [ -119.457210163999889, 49.819542884000064 ], [ -119.456622852999885, 49.8195553420001 ], [ -119.456611728, 49.819633023000037 ], [ -119.459726859999989, 49.81981988800009 ] ], [ [ -119.449034916999935, 49.814588463000071 ], [ -119.449140889999967, 49.814586222000074 ], [ -119.44903448299999, 49.814579830000099 ], [ -119.449034916999935, 49.814588463000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999989009349296", "sL_AssetLoss": "82.706659", "sL_BldgLoss": "82.70575", "sL_StrLoss": "82.7", "sL_NStrLoss": "0.00575", "sL_ContLoss": "0.000909", "geom_point": "0101000020E61000005D0E81444FDD5DC09EA66473B4EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.45730965499996, 49.848293424000126 ], [ -119.459951606999965, 49.848451788000027 ], [ -119.459097280999941, 49.848896201000031 ], [ -119.45841659099996, 49.84943319700011 ], [ -119.457794904999972, 49.850346090000087 ], [ -119.456925856999931, 49.850971797000057 ], [ -119.45730965499996, 49.848293424000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133438168", "BldgCostT": "86666668", "sL_LossRatio": "0.999997189594626", "sL_AssetLoss": "12467.95225", "sL_BldgLoss": "12467.91721", "sL_StrLoss": "12467.60361", "sL_NStrLoss": "0.3136", "sL_ContLoss": "0.03504", "geom_point": "0101000020E6100000B47BE2CEBFDC5DC00F49D2DA59EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.438923691999946, 49.861252391000043 ], [ -119.438878129999921, 49.859888701000074 ], [ -119.43968758699998, 49.859892194000032 ], [ -119.440292094999975, 49.859893313000065 ], [ -119.440672116999977, 49.859853802000011 ], [ -119.441274202999978, 49.859686811000117 ], [ -119.442324812999985, 49.86053919700008 ], [ -119.442478993999927, 49.860600405000064 ], [ -119.442689493999978, 49.860684006000078 ], [ -119.442915408999937, 49.860462705000018 ], [ -119.443151283999939, 49.860132808000095 ], [ -119.443160378, 49.860108760000088 ], [ -119.443266101999939, 49.859829002000048 ], [ -119.443311421999951, 49.859407293000061 ], [ -119.443535115999978, 49.854535924000054 ], [ -119.443548990999929, 49.854233307000143 ], [ -119.443561287999927, 49.853320998000086 ], [ -119.443582814999985, 49.852690025000065 ], [ -119.443624311999955, 49.851472593000054 ], [ -119.443581595999902, 49.851205404000105 ], [ -119.441409712999985, 49.851074906000107 ], [ -119.441309387999951, 49.85074280900006 ], [ -119.441493891999968, 49.850265404000041 ], [ -119.441756090999974, 49.849917207000033 ], [ -119.44179516299999, 49.849880807000069 ], [ -119.442179983999921, 49.849522685000089 ], [ -119.442280908999962, 49.849325584000034 ], [ -119.442261917999943, 49.849171704000092 ], [ -119.44225510199999, 49.84911629500008 ], [ -119.442090495999963, 49.848930293000073 ], [ -119.441968713, 49.848855201000092 ], [ -119.441708034999976, 49.848783260000083 ], [ -119.441675905999972, 49.848774389000042 ], [ -119.440894314, 49.84877260400004 ], [ -119.440531505999985, 49.848732706000078 ], [ -119.440507447999948, 49.848725480000041 ], [ -119.440451103999948, 49.848708610000102 ], [ -119.439487397999983, 49.84841981800006 ], [ -119.438523904999983, 49.848314005000084 ], [ -119.438387212999956, 49.848274210000042 ], [ -119.438250782999916, 49.848183793000082 ], [ -119.438237007999959, 49.848115590000134 ], [ -119.438181388999965, 49.847841 ], [ -119.438177486999933, 49.845216304000111 ], [ -119.435303540999911, 49.845227801000071 ], [ -119.433314601999967, 49.845235710000075 ], [ -119.432980653999934, 49.845237050000108 ], [ -119.432335806999902, 49.845239589000087 ], [ -119.432085383999919, 49.845203808000043 ], [ -119.432056021999983, 49.845189283000082 ], [ -119.431934966999933, 49.845160878000087 ], [ -119.431864127999944, 49.845135392000039 ], [ -119.431791947999955, 49.845082937 ], [ -119.43174708799998, 49.845020914000081 ], [ -119.431725957999973, 49.844877426000075 ], [ -119.431709373, 49.84482381000003 ], [ -119.43168093, 49.844719253000086 ], [ -119.431498587999982, 49.844265404000062 ], [ -119.431461592999966, 49.844037390000032 ], [ -119.431524286999917, 49.843786391000044 ], [ -119.431695310999913, 49.843421996000139 ], [ -119.431975107999932, 49.843029707000063 ], [ -119.432158212, 49.842822920000067 ], [ -119.433376804999952, 49.841446895000047 ], [ -119.433548395999978, 49.841340685000112 ], [ -119.433638293999977, 49.841151903000068 ], [ -119.433629489999987, 49.840970794000064 ], [ -119.433525903, 49.840788408000094 ], [ -119.433348157999916, 49.840615407000037 ], [ -119.43311770299999, 49.840458324000075 ], [ -119.433103349999925, 49.840449615000068 ], [ -119.433162575999958, 49.840427093000116 ], [ -119.433416239999971, 49.840320172000084 ], [ -119.43344881799996, 49.840305199000063 ], [ -119.433978710999952, 49.839998396000055 ], [ -119.434389510999949, 49.839810911 ], [ -119.435054308999952, 49.839575401000062 ], [ -119.435290180999928, 49.839439697000053 ], [ -119.43544385499996, 49.839184091000071 ], [ -119.435932743999928, 49.838370821000048 ], [ -119.435937825999972, 49.838362400000086 ], [ -119.43605790499997, 49.838303687000099 ], [ -119.43622088499994, 49.838286395000125 ], [ -119.436940286999956, 49.838311600000061 ], [ -119.437160880999954, 49.838223706000072 ], [ -119.437186848999957, 49.838201708 ], [ -119.437248400999962, 49.838149494000085 ], [ -119.437546114, 49.837720941000057 ], [ -119.437561590999934, 49.83769870400009 ], [ -119.437639715999978, 49.837475897000076 ], [ -119.437619998999963, 49.837408710000062 ], [ -119.437684550999933, 49.837330750000071 ], [ -119.437890539999941, 49.837082021000114 ], [ -119.438169769, 49.836744838000101 ], [ -119.438599508999928, 49.836225900000059 ], [ -119.43902699099999, 49.835339403000091 ], [ -119.439050299999906, 49.835192406000054 ], [ -119.439109047999949, 49.834821809000111 ], [ -119.439146102999985, 49.834588011000115 ], [ -119.439038603, 49.833897789000012 ], [ -119.438194301999957, 49.833567086000052 ], [ -119.437486208999985, 49.833395306000043 ], [ -119.437088009999982, 49.833339796000104 ], [ -119.437072001999965, 49.833340244000077 ], [ -119.436650809999961, 49.833352296000051 ], [ -119.436140822999945, 49.833447375000048 ], [ -119.435837585999977, 49.833503902000089 ], [ -119.43533748499999, 49.833536103000029 ], [ -119.434896892999959, 49.833536435000021 ], [ -119.432753824999949, 49.833538080000011 ], [ -119.432611416999947, 49.833538198000028 ], [ -119.43244396099999, 49.833533063000083 ], [ -119.43163451599996, 49.833508307000031 ], [ -119.432060412999959, 49.832177403000053 ], [ -119.432251400999959, 49.831935994000027 ], [ -119.432674995999903, 49.831591201000023 ], [ -119.432770098999967, 49.831434397000095 ], [ -119.432766742999931, 49.831418905000085 ], [ -119.432718194999921, 49.831193709000047 ], [ -119.432397237999979, 49.830739082000022 ], [ -119.432355279999982, 49.830679690000075 ], [ -119.432354510999971, 49.830325599000112 ], [ -119.43246529399994, 49.829914097000014 ], [ -119.432720692999936, 49.829739805000081 ], [ -119.433774386999957, 49.829554900000076 ], [ -119.434478492999943, 49.829258608000018 ], [ -119.435243906999972, 49.828857269000075 ], [ -119.435328298999977, 49.828813009000065 ], [ -119.435424083999976, 49.828772834000048 ], [ -119.436486579999951, 49.828327293000051 ], [ -119.43669100299999, 49.828215893000056 ], [ -119.436774198999942, 49.828171194000028 ], [ -119.436811195999937, 49.828107503000076 ], [ -119.436810646999916, 49.827961268000067 ], [ -119.436810559999941, 49.827940168000083 ], [ -119.436804241999937, 49.82624954500006 ], [ -119.436793650999945, 49.823415997000069 ], [ -119.436792003999983, 49.822976502000117 ], [ -119.43679559, 49.822601996000046 ], [ -119.438241193999929, 49.822604190000085 ], [ -119.442188899999962, 49.822610056000052 ], [ -119.443606993999936, 49.822612121000084 ], [ -119.445033460999952, 49.822614213000122 ], [ -119.445144856999931, 49.823063428000069 ], [ -119.446563586999957, 49.82571178400007 ], [ -119.44713090099999, 49.826823747000049 ], [ -119.4473892399999, 49.827330111000038 ], [ -119.447606475000015, 49.827596031000027 ], [ -119.44799183, 49.827925354000037 ], [ -119.448460587999975, 49.82822804900011 ], [ -119.449245295999944, 49.828635566000123 ], [ -119.450568576999927, 49.829322788000084 ], [ -119.451956266999957, 49.830043307000089 ], [ -119.45209089399998, 49.830113190000112 ], [ -119.45309739299995, 49.830588098000071 ], [ -119.453532613999968, 49.830832797000063 ], [ -119.453700393999966, 49.831035191000097 ], [ -119.453996396999969, 49.831784514000041 ], [ -119.454311289999964, 49.83226490200007 ], [ -119.454483877999948, 49.832473016000073 ], [ -119.455002301999954, 49.832858213000073 ], [ -119.455045237999968, 49.832928784000096 ], [ -119.455170572000029, 49.833134726000061 ], [ -119.455164370999938, 49.83343141600006 ], [ -119.455638579999928, 49.833307243000029 ], [ -119.456276803999984, 49.83263786 ], [ -119.45706809899994, 49.831807962000063 ], [ -119.457735872999976, 49.831107556000099 ], [ -119.458013161999929, 49.830974264000062 ], [ -119.45836495399999, 49.830914976000017 ], [ -119.45963369699993, 49.830840950000109 ], [ -119.459662521999974, 49.830839270000119 ], [ -119.460111888999947, 49.830751502000112 ], [ -119.460993790999908, 49.830485952000089 ], [ -119.461770148999932, 49.830252163000068 ], [ -119.464481248999931, 49.829172859000039 ], [ -119.46752883799999, 49.828803611000033 ], [ -119.467851417999924, 49.828733525000118 ], [ -119.468684327999981, 49.8283544210001 ], [ -119.469020732999965, 49.828246332000042 ], [ -119.469858677999937, 49.828066214000152 ], [ -119.470764645999907, 49.827927181000028 ], [ -119.471781594999968, 49.827851687000042 ], [ -119.472050330999977, 49.827797328000059 ], [ -119.473024402999911, 49.827376983000121 ], [ -119.473349032999963, 49.827351248000099 ], [ -119.473743314999936, 49.827345950000051 ], [ -119.474203860999964, 49.827247958000036 ], [ -119.473719907999936, 49.827558569000082 ], [ -119.47250989399997, 49.828321523000092 ], [ -119.47200340599997, 49.828562900000129 ], [ -119.471250497999932, 49.828921663000088 ], [ -119.470664172999989, 49.829253054000063 ], [ -119.469665559999925, 49.829817494000068 ], [ -119.469487207000014, 49.829991042000088 ], [ -119.469434882, 49.830075259000111 ], [ -119.469367604999931, 49.830183470000087 ], [ -119.469287813999955, 49.83049747900003 ], [ -119.469203124, 49.830846384000026 ], [ -119.469135713999904, 49.831424902000087 ], [ -119.469017498999904, 49.831851309000037 ], [ -119.468908660999972, 49.832130911000085 ], [ -119.468627960999981, 49.832851835000085 ], [ -119.467529310999979, 49.835673405000072 ], [ -119.46738638600003, 49.836040457000124 ], [ -119.467132191999966, 49.836025236000076 ], [ -119.467063042999939, 49.83650869500007 ], [ -119.467200843999976, 49.836516947000057 ], [ -119.466536903999909, 49.838221921000084 ], [ -119.466476307999969, 49.838377486000127 ], [ -119.466361098, 49.840158700000096 ], [ -119.466346947, 49.841582905000074 ], [ -119.466335304999959, 49.842749019000053 ], [ -119.466194152999932, 49.843228221000032 ], [ -119.46594216199999, 49.843691754000076 ], [ -119.465840328999946, 49.844159769000051 ], [ -119.465888568999929, 49.844430259000035 ], [ -119.464968008999975, 49.84437513200006 ], [ -119.465020111999976, 49.844011037000058 ], [ -119.464385313999969, 49.843973017000103 ], [ -119.464448460999904, 49.843531783000067 ], [ -119.464377244999966, 49.843527518000109 ], [ -119.464774469999924, 49.840751770000061 ], [ -119.462749569999986, 49.840630467000032 ], [ -119.46273021599994, 49.840765674000053 ], [ -119.463633766000015, 49.840819806000056 ], [ -119.463121111999953, 49.844401437000037 ], [ -119.462819021999948, 49.844383340000043 ], [ -119.460925122999953, 49.84426986200004 ], [ -119.460775163000022, 49.845317089000105 ], [ -119.455238622999929, 49.844985163000011 ], [ -119.455282107999949, 49.844681760000114 ], [ -119.45514649299993, 49.844684633000114 ], [ -119.455160154999973, 49.844954215000087 ], [ -119.454326397999964, 49.844971880000081 ], [ -119.454340054999975, 49.845241462000082 ], [ -119.453089410999951, 49.845267949000039 ], [ -119.45310306099999, 49.845537530000037 ], [ -119.452269292999944, 49.845555182000105 ], [ -119.452282938999957, 49.845824764000035 ], [ -119.450198500999974, 49.845868866000046 ], [ -119.45018486699999, 49.845599283000084 ], [ -119.450132488999913, 49.845600391000104 ], [ -119.44984092199995, 49.847633033000086 ], [ -119.446456525999963, 49.847429835000092 ], [ -119.446449467999969, 49.847479011000075 ], [ -119.446085823999951, 49.847457172000112 ], [ -119.445941100999946, 49.848465446000041 ], [ -119.446939167999986, 49.848525384 ], [ -119.446935461999942, 49.848551209000092 ], [ -119.448128631999936, 49.848622852000062 ], [ -119.447980993999977, 49.849651733000051 ], [ -119.448380991999954, 49.849675747000056 ], [ -119.448134083999946, 49.851396437000105 ], [ -119.449368275999987, 49.851470524000099 ], [ -119.449367157999973, 49.851478317000037 ], [ -119.450796231999959, 49.851564085000049 ], [ -119.450747394999951, 49.851904550000135 ], [ -119.450998380999948, 49.851919611000021 ], [ -119.45110276199992, 49.851191889000098 ], [ -119.456478605999934, 49.851514344000137 ], [ -119.456463179999915, 49.851533902000021 ], [ -119.455557816999928, 49.852318601000071 ], [ -119.451982302999937, 49.854795304000049 ], [ -119.451527115, 49.855174097000038 ], [ -119.450952699999903, 49.855896205000114 ], [ -119.448958905999959, 49.857468503000071 ], [ -119.447758190999934, 49.858213395000043 ], [ -119.446387487999971, 49.858898497000077 ], [ -119.443879484999954, 49.859950892000079 ], [ -119.442980584999987, 49.860598996000128 ], [ -119.44286957599995, 49.86075518400002 ], [ -119.44282471799994, 49.860818305000038 ], [ -119.442791354999898, 49.860978632000133 ], [ -119.440012300999925, 49.861403614000089 ], [ -119.438923691999946, 49.861252391000043 ] ], [ [ -119.440380461999951, 49.848235048000028 ], [ -119.440444204999906, 49.847791336000107 ], [ -119.440453260999945, 49.847791880000081 ], [ -119.440532246999936, 49.84724205200007 ], [ -119.440062038999955, 49.847213787000051 ], [ -119.440020045999987, 49.847506082000123 ], [ -119.440465531999934, 49.847532860000094 ], [ -119.440364608999957, 49.848235382000041 ], [ -119.440380461999951, 49.848235048000028 ] ], [ [ -119.438996764999985, 49.843066039000064 ], [ -119.439155780999954, 49.841959217000117 ], [ -119.43668502299991, 49.841810622000033 ], [ -119.436596269999939, 49.842428151000092 ], [ -119.434947879999967, 49.842328982000012 ], [ -119.43484631599992, 49.84303546200006 ], [ -119.436805609999951, 49.843153331000096 ], [ -119.436836824999915, 49.842936140000027 ], [ -119.438996764999985, 49.843066039000064 ] ], [ [ -119.444717822999948, 49.842110932000061 ], [ -119.444682090999962, 49.842359856000073 ], [ -119.444693339999986, 49.842360532000036 ], [ -119.444655631, 49.842623232000101 ], [ -119.446283551999983, 49.842721024000035 ], [ -119.446160663999962, 49.840286918000018 ], [ -119.445743824, 49.8402957180001 ], [ -119.445703002999977, 49.839486969000077 ], [ -119.446536669999972, 49.839469367000049 ], [ -119.446509450999912, 49.838930201000096 ], [ -119.447343107999956, 49.838912593000018 ], [ -119.44732949299997, 49.838643010000091 ], [ -119.448163145999914, 49.838625397000079 ], [ -119.448122287999965, 49.837816649000032 ], [ -119.447705468, 49.837825456000054 ], [ -119.447664619999927, 49.837016707000089 ], [ -119.447247806999883, 49.83702551400004 ], [ -119.44722058, 49.836486348000079 ], [ -119.446803771999939, 49.836495152000062 ], [ -119.446776549999967, 49.835955986000094 ], [ -119.44635974699996, 49.83596478900008 ], [ -119.446346136999935, 49.835695205000064 ], [ -119.445095732999945, 49.835721603000103 ], [ -119.44510933399999, 49.835991186000079 ], [ -119.444692527999962, 49.835999983000058 ], [ -119.44470612799995, 49.836269566000048 ], [ -119.444289320999957, 49.836278361000097 ], [ -119.444343710999988, 49.837356695000054 ], [ -119.443926893999958, 49.837365489000021 ], [ -119.443981277999939, 49.838443823000063 ], [ -119.44314762499999, 49.838461406000086 ], [ -119.443161217999929, 49.838730989000034 ], [ -119.442327559999953, 49.838748568000092 ], [ -119.442341146999937, 49.839018152000072 ], [ -119.44192431599997, 49.839026939000078 ], [ -119.441951484999919, 49.839566106000049 ], [ -119.441117812999948, 49.839583676000089 ], [ -119.441131393999939, 49.839853259000108 ], [ -119.440714554999971, 49.839862042000071 ], [ -119.440728133999954, 49.840131626000094 ], [ -119.440100162999954, 49.840144855000062 ], [ -119.439859688999945, 49.841818952000089 ], [ -119.444717822999948, 49.842110932000061 ] ], [ [ -119.446728846, 49.84327523400006 ], [ -119.446712248000011, 49.843390889000077 ], [ -119.446734753999962, 49.843392240000036 ], [ -119.446728846, 49.84327523400006 ] ], [ [ -119.441249767999935, 49.825636085000077 ], [ -119.441245317999957, 49.825547728000089 ], [ -119.440974648999926, 49.825553432000028 ], [ -119.44096523799999, 49.825618975000104 ], [ -119.441249767999935, 49.825636085000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86414666", "BldgCostT": "56441666", "sL_LossRatio": "0.995155699994796", "sL_AssetLoss": "9008.390057", "sL_BldgLoss": "8964.750713", "sL_StrLoss": "8948.507403", "sL_NStrLoss": "16.24331", "sL_ContLoss": "43.639344", "geom_point": "0101000020E61000002C1895D489DE5DC00056689C5DEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48209108499999, 49.841141907000036 ], [ -119.482049659, 49.840333180000066 ], [ -119.479131842999905, 49.840395657000066 ], [ -119.479113958999932, 49.840046139000037 ], [ -119.479076673999955, 49.839317351000012 ], [ -119.481577604, 49.839263806000098 ], [ -119.481549991999913, 49.83872465400006 ], [ -119.481966810999907, 49.838715726000132 ], [ -119.481897775, 49.83736784700006 ], [ -119.481480969999936, 49.837376775000045 ], [ -119.481467165999945, 49.837107199000059 ], [ -119.480633558999898, 49.837125053000072 ], [ -119.48050937499994, 49.834698868000096 ], [ -119.48052999899997, 49.834698426000031 ], [ -119.482176501999945, 49.834663159000122 ], [ -119.482190308999975, 49.834932734000084 ], [ -119.48248139, 49.834926498000115 ], [ -119.48256453399992, 49.83434379400007 ], [ -119.477250427999962, 49.834026195000092 ], [ -119.477685236999932, 49.830981102000109 ], [ -119.477398975999989, 49.830987224000104 ], [ -119.477302276, 49.829095167000062 ], [ -119.476199448000017, 49.82902921600008 ], [ -119.475895032999958, 49.831160780000069 ], [ -119.475009266, 49.831107802000112 ], [ -119.47499439799995, 49.83121190100016 ], [ -119.474183574999984, 49.831163398000108 ], [ -119.47403511, 49.832202620000132 ], [ -119.47320251599993, 49.832152809000036 ], [ -119.472730832999943, 49.835453741000102 ], [ -119.468166116999953, 49.835180538000067 ], [ -119.468037566999968, 49.836079447000088 ], [ -119.46738638600003, 49.836040457000124 ], [ -119.467529310999979, 49.835673405000072 ], [ -119.468627960999981, 49.832851835000085 ], [ -119.468908660999972, 49.832130911000085 ], [ -119.469017498999904, 49.831851309000037 ], [ -119.469135713999904, 49.831424902000087 ], [ -119.469203124, 49.830846384000026 ], [ -119.469287813999955, 49.83049747900003 ], [ -119.469367604999931, 49.830183470000087 ], [ -119.469434882, 49.830075259000111 ], [ -119.469487207000014, 49.829991042000088 ], [ -119.469665559999925, 49.829817494000068 ], [ -119.470664172999989, 49.829253054000063 ], [ -119.471250497999932, 49.828921663000088 ], [ -119.47200340599997, 49.828562900000129 ], [ -119.47250989399997, 49.828321523000092 ], [ -119.473719907999936, 49.827558569000082 ], [ -119.474203860999964, 49.827247958000036 ], [ -119.474543104999924, 49.827100281000064 ], [ -119.475277419999898, 49.826849697000064 ], [ -119.47654251699997, 49.82641792200014 ], [ -119.480173662999931, 49.825262351000056 ], [ -119.48043326, 49.825105385000022 ], [ -119.480642592, 49.824870448000127 ], [ -119.481448014999955, 49.823518784000058 ], [ -119.481806576999958, 49.823206073000115 ], [ -119.48205957099999, 49.82307581700011 ], [ -119.482526478999915, 49.822981797000111 ], [ -119.48318664199995, 49.822970650000073 ], [ -119.483164210999945, 49.823969053000049 ], [ -119.483171521999935, 49.824491102000124 ], [ -119.483182523999957, 49.825278696000055 ], [ -119.483188376999962, 49.825686859000029 ], [ -119.483190214999965, 49.825811994000098 ], [ -119.481890213999947, 49.825798390000088 ], [ -119.481549213, 49.82584128400012 ], [ -119.481599895999977, 49.827686613000061 ], [ -119.481730391999946, 49.828200090000017 ], [ -119.481740373999983, 49.828521293000094 ], [ -119.483229201999947, 49.828492912000058 ], [ -119.483247945999921, 49.829779952000088 ], [ -119.483247344999924, 49.830345371000085 ], [ -119.483246401999963, 49.831238337000073 ], [ -119.483230828, 49.831774904000049 ], [ -119.483221416999967, 49.832098381000073 ], [ -119.483202411000022, 49.832890199000097 ], [ -119.483176204999921, 49.833980404000101 ], [ -119.483141048999983, 49.834124449000029 ], [ -119.482789622999988, 49.835563433000097 ], [ -119.482773427999959, 49.835629730000036 ], [ -119.482750598999971, 49.835760221000129 ], [ -119.482802525999887, 49.835836449000091 ], [ -119.482480139999964, 49.837117630000058 ], [ -119.482337636999944, 49.838055222000015 ], [ -119.482320594999962, 49.838167389000049 ], [ -119.482320372999965, 49.838184783000024 ], [ -119.482303504999891, 49.839656432000055 ], [ -119.48230496599993, 49.840428632000069 ], [ -119.482253266999962, 49.84052670799999 ], [ -119.482246786999966, 49.840794322000114 ], [ -119.482244172999984, 49.840903641000068 ], [ -119.482246124999975, 49.841177501000075 ], [ -119.481927991999925, 49.8412853130001 ], [ -119.48128469699995, 49.841692606000066 ], [ -119.481271215999982, 49.841429341000016 ], [ -119.481688054999935, 49.841420412000019 ], [ -119.481674248999951, 49.841150836000111 ], [ -119.48209108499999, 49.841141907000036 ] ], [ [ -119.482993825999955, 49.83432836500004 ], [ -119.482939945999945, 49.833276635000068 ], [ -119.482791612000014, 49.834316285000121 ], [ -119.482993825999955, 49.83432836500004 ] ], [ [ -119.48197335, 49.83069617000006 ], [ -119.4819694239999, 49.830619519000059 ], [ -119.481028078999927, 49.830639684000126 ], [ -119.48197335, 49.83069617000006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999933032500891", "sL_AssetLoss": "99.74988", "sL_BldgLoss": "99.7432", "sL_StrLoss": "99.7", "sL_NStrLoss": "0.0432", "sL_ContLoss": "0.00668", "geom_point": "0101000020E6100000AFCE522EA4DE5DC0B7ACCAD7C8EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.477856132999975, 49.841814778000114 ], [ -119.480373759, 49.841965237000082 ], [ -119.479772288, 49.842141199000054 ], [ -119.478930421999934, 49.842275106000081 ], [ -119.477781968999977, 49.842334083000019 ], [ -119.477856132999975, 49.841814778000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32693417", "BldgCostT": "21811667", "sL_LossRatio": "0.999967080739621", "sL_AssetLoss": "4066.403633", "sL_BldgLoss": "4066.26977", "sL_StrLoss": "4065.70157", "sL_NStrLoss": "0.5682", "sL_ContLoss": "0.133863", "geom_point": "0101000020E6100000D20A362216DE5DC006E831A9A5EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.466361098, 49.840158700000096 ], [ -119.466476307999969, 49.838377486000127 ], [ -119.466536903999909, 49.838221921000084 ], [ -119.467200843999976, 49.836516947000057 ], [ -119.467480446999943, 49.836533689000134 ], [ -119.46697452799998, 49.840070723000075 ], [ -119.467787616999956, 49.84011940500011 ], [ -119.467979621999987, 49.838776943000077 ], [ -119.469359378999968, 49.83885953900009 ], [ -119.469481700999964, 49.838004076000082 ], [ -119.475017498999989, 49.838335286000046 ], [ -119.474505762999954, 49.841916983000075 ], [ -119.473125901999978, 49.841834452000121 ], [ -119.473003639999931, 49.842689915000093 ], [ -119.470811629999943, 49.842558773000093 ], [ -119.470606232999955, 49.843995367000105 ], [ -119.470467889999924, 49.844048195000127 ], [ -119.469264138999947, 49.844632337000114 ], [ -119.465888568999929, 49.844430259000035 ], [ -119.465840328999946, 49.844159769000051 ], [ -119.46594216199999, 49.843691754000076 ], [ -119.466194152999932, 49.843228221000032 ], [ -119.466335304999959, 49.842749019000053 ], [ -119.466346947, 49.841582905000074 ], [ -119.466361098, 49.840158700000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "311854500", "BldgCostT": "216720000", "sL_LossRatio": "0.999951948896807", "sL_AssetLoss": "14286.123614", "sL_BldgLoss": "14285.43715", "sL_StrLoss": "14281.4424", "sL_NStrLoss": "3.99475", "sL_ContLoss": "0.686464", "geom_point": "0101000020E61000006463A91E7EDF5DC09FBF3BBFC9E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488722272999922, 49.825258247000114 ], [ -119.488679862999973, 49.822853520000059 ], [ -119.488914853000011, 49.8229669 ], [ -119.491838524999949, 49.823629058000037 ], [ -119.492060935999945, 49.82370374200007 ], [ -119.492154261999985, 49.82376348000011 ], [ -119.492645484999983, 49.823518294000095 ], [ -119.492802384999948, 49.823346991000051 ], [ -119.49429408899999, 49.82369881000006 ], [ -119.494659673999934, 49.823727795000075 ], [ -119.494713007999948, 49.82375539100012 ], [ -119.494731100999971, 49.823765498000036 ], [ -119.49463869, 49.823826809000145 ], [ -119.494436615999945, 49.823824706999986 ], [ -119.493407624999918, 49.824485809000151 ], [ -119.493161796, 49.824791685000065 ], [ -119.493779208999953, 49.824963114000091 ], [ -119.49417338399995, 49.825036301000083 ], [ -119.494792593999975, 49.825077713000063 ], [ -119.494865123999901, 49.824735299000089 ], [ -119.495095907999911, 49.824496198000126 ], [ -119.495809305999956, 49.824130509000035 ], [ -119.495973095, 49.824087910000117 ], [ -119.496222394999918, 49.824101002000084 ], [ -119.49727389399996, 49.824359598000072 ], [ -119.497722005999918, 49.824544411000026 ], [ -119.497967095999954, 49.824685398000042 ], [ -119.498032607999946, 49.824881681000079 ], [ -119.497962476999959, 49.825619798000041 ], [ -119.497851793999956, 49.825710799000035 ], [ -119.4972345899999, 49.826204093000058 ], [ -119.496726895999984, 49.826559946 ], [ -119.495793077999949, 49.827214407000106 ], [ -119.495308098999928, 49.827404924000049 ], [ -119.495212207999955, 49.827442593000043 ], [ -119.49485639299999, 49.827546989000048 ], [ -119.494522578999977, 49.827644895000027 ], [ -119.494434598999973, 49.827670702 ], [ -119.493986293999967, 49.827868894000069 ], [ -119.493500392999962, 49.828047603000137 ], [ -119.493430200999939, 49.828087868000061 ], [ -119.491582600999891, 49.829147786000128 ], [ -119.490624307999923, 49.830486807000099 ], [ -119.490424425999947, 49.83066539900009 ], [ -119.489022495999947, 49.831473996000035 ], [ -119.488763576999986, 49.831566898000098 ], [ -119.48823160699996, 49.831676893000129 ], [ -119.488464381999947, 49.831414503000126 ], [ -119.488625891999931, 49.831113414000107 ], [ -119.48868540399999, 49.830823494000064 ], [ -119.488691769999932, 49.829788574000126 ], [ -119.488695423999957, 49.829191142000063 ], [ -119.488698608999954, 49.828675005000029 ], [ -119.488701278999912, 49.828259208000084 ], [ -119.488708097999947, 49.827208084000127 ], [ -119.488709435999965, 49.827011888000051 ], [ -119.488713718999961, 49.826385697000013 ], [ -119.48871988799999, 49.825754794000026 ], [ -119.488722272999922, 49.825258247000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93850084", "BldgCostT": "63228334", "sL_LossRatio": "0.999908532861027", "sL_AssetLoss": "12088.49443", "sL_BldgLoss": "12087.38873", "sL_StrLoss": "12083.82973", "sL_NStrLoss": "3.559", "sL_ContLoss": "1.1057", "geom_point": "0101000020E610000072C08D18A6DF5DC0C25BAD3425E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.490426628999927, 49.821180058000088 ], [ -119.491102450999961, 49.820570834000065 ], [ -119.49135348599998, 49.820344498000075 ], [ -119.491864881, 49.819936998000095 ], [ -119.49424119299999, 49.820375906000024 ], [ -119.49508549799998, 49.820394699000083 ], [ -119.495235612999949, 49.820418100000062 ], [ -119.495631405999973, 49.820283704000097 ], [ -119.495843805000021, 49.819898995000074 ], [ -119.496114912999957, 49.819754813 ], [ -119.496868608999975, 49.819494002000084 ], [ -119.49678027899995, 49.819465411000088 ], [ -119.49672787599998, 49.819372801000036 ], [ -119.496763011999974, 49.819009199000085 ], [ -119.496830643999886, 49.818881695000094 ], [ -119.496839209999962, 49.818865603000113 ], [ -119.497118910999944, 49.818557206000023 ], [ -119.497803019999978, 49.818877008000051 ], [ -119.498305802999965, 49.819069502000076 ], [ -119.498869483999925, 49.819157300000064 ], [ -119.499341789999974, 49.819162 ], [ -119.499313333999979, 49.819496931000138 ], [ -119.499258802999947, 49.820137785 ], [ -119.499248300999909, 49.820289787000071 ], [ -119.499215589999892, 49.82034929000006 ], [ -119.499133583999964, 49.820498556000054 ], [ -119.499016703999928, 49.820711297000095 ], [ -119.498706285999901, 49.821275204000081 ], [ -119.498278791999923, 49.822053497000049 ], [ -119.498013895999961, 49.82242511500003 ], [ -119.497607298999952, 49.823164005000066 ], [ -119.497352766999924, 49.823606053000091 ], [ -119.497347893999944, 49.823614503000073 ], [ -119.49619119, 49.823290911000079 ], [ -119.495598190999942, 49.823124503000017 ], [ -119.494638393999978, 49.822897521000094 ], [ -119.494526276999977, 49.822832091000038 ], [ -119.494581609999926, 49.822640392000018 ], [ -119.494929702999954, 49.822155395000088 ], [ -119.495090207999979, 49.822125315000065 ], [ -119.495804411999984, 49.822303291000054 ], [ -119.49620749099995, 49.821558796000012 ], [ -119.494086515999925, 49.821021400000134 ], [ -119.493480027999922, 49.822018402000026 ], [ -119.493252804999926, 49.822388600000053 ], [ -119.493089428999951, 49.822756795000046 ], [ -119.493002182999973, 49.822953410000089 ], [ -119.492802384999948, 49.823346991000051 ], [ -119.492645484999983, 49.823518294000095 ], [ -119.492154261999985, 49.82376348000011 ], [ -119.492060935999945, 49.82370374200007 ], [ -119.491838524999949, 49.823629058000037 ], [ -119.488914853000011, 49.8229669 ], [ -119.488679862999973, 49.822853520000059 ], [ -119.488749274999975, 49.822562368000057 ], [ -119.488906415999935, 49.822301728000127 ], [ -119.48918804, 49.821979875000125 ], [ -119.489960606999944, 49.821503114000095 ], [ -119.49028888399998, 49.821304222000037 ], [ -119.490426628999927, 49.821180058000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201255500", "BldgCostT": "133850000", "sL_LossRatio": "0.999920434165146", "sL_AssetLoss": "25257.612186", "sL_BldgLoss": "25255.602543", "sL_StrLoss": "25246.091403", "sL_NStrLoss": "9.51114", "sL_ContLoss": "2.009643", "geom_point": "0101000020E61000005D4E21DBA2DF5DC0DF80E03BFBE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.487971092999942, 49.842442113000082 ], [ -119.488008268999977, 49.842312594000092 ], [ -119.488095168999919, 49.842433277000083 ], [ -119.489092249999942, 49.842361838 ], [ -119.489660778999934, 49.842192560000058 ], [ -119.490021961999943, 49.842126519000075 ], [ -119.490167473999946, 49.842035859000113 ], [ -119.489854044999944, 49.841522287000025 ], [ -119.489741839999951, 49.841428001000054 ], [ -119.489457951999952, 49.841363196000017 ], [ -119.488783238999972, 49.841333439000095 ], [ -119.488295559999983, 49.841311889000053 ], [ -119.488377217000021, 49.841039156000051 ], [ -119.48864212099997, 49.840154073000058 ], [ -119.48867614299995, 49.839876169000078 ], [ -119.488673245999948, 49.839622178000056 ], [ -119.487636148, 49.837316627000071 ], [ -119.487331985999944, 49.836640344000081 ], [ -119.48718701199999, 49.836318052000131 ], [ -119.486809287999961, 49.835478212000154 ], [ -119.486776218999964, 49.835404590000046 ], [ -119.486413992999971, 49.834548490000046 ], [ -119.486362897999982, 49.834241106000079 ], [ -119.486480275999952, 49.833545594000093 ], [ -119.486539513999901, 49.833326007000032 ], [ -119.486718309999929, 49.833021501000061 ], [ -119.486972007999924, 49.832739575000026 ], [ -119.487635466, 49.832187674000082 ], [ -119.48823160699996, 49.831676893000129 ], [ -119.488763576999986, 49.831566898000098 ], [ -119.489022495999947, 49.831473996000035 ], [ -119.490424425999947, 49.83066539900009 ], [ -119.490624307999923, 49.830486807000099 ], [ -119.491582600999891, 49.829147786000128 ], [ -119.493430200999939, 49.828087868000061 ], [ -119.493500392999962, 49.828047603000137 ], [ -119.493986293999967, 49.827868894000069 ], [ -119.494434598999973, 49.827670702 ], [ -119.494522578999977, 49.827644895000027 ], [ -119.49485639299999, 49.827546989000048 ], [ -119.495212207999955, 49.827442593000043 ], [ -119.495308098999928, 49.827404924000049 ], [ -119.495793077999949, 49.827214407000106 ], [ -119.496726895999984, 49.826559946 ], [ -119.4972345899999, 49.826204093000058 ], [ -119.497851793999956, 49.825710799000035 ], [ -119.497962476999959, 49.825619798000041 ], [ -119.498032607999946, 49.824881681000079 ], [ -119.497967095999954, 49.824685398000042 ], [ -119.497722005999918, 49.824544411000026 ], [ -119.49727389399996, 49.824359598000072 ], [ -119.496222394999918, 49.824101002000084 ], [ -119.495973095, 49.824087910000117 ], [ -119.495809305999956, 49.824130509000035 ], [ -119.495095907999911, 49.824496198000126 ], [ -119.494865123999901, 49.824735299000089 ], [ -119.494792593999975, 49.825077713000063 ], [ -119.49417338399995, 49.825036301000083 ], [ -119.493779208999953, 49.824963114000091 ], [ -119.493161796, 49.824791685000065 ], [ -119.493407624999918, 49.824485809000151 ], [ -119.494436615999945, 49.823824706999986 ], [ -119.49463869, 49.823826809000145 ], [ -119.494731100999971, 49.823765498000036 ], [ -119.494713007999948, 49.82375539100012 ], [ -119.494659673999934, 49.823727795000075 ], [ -119.49429408899999, 49.82369881000006 ], [ -119.492802384999948, 49.823346991000051 ], [ -119.493002182999973, 49.822953410000089 ], [ -119.493089428999951, 49.822756795000046 ], [ -119.493252804999926, 49.822388600000053 ], [ -119.493480027999922, 49.822018402000026 ], [ -119.494086515999925, 49.821021400000134 ], [ -119.49620749099995, 49.821558796000012 ], [ -119.495804411999984, 49.822303291000054 ], [ -119.495090207999979, 49.822125315000065 ], [ -119.494929702999954, 49.822155395000088 ], [ -119.494581609999926, 49.822640392000018 ], [ -119.494526276999977, 49.822832091000038 ], [ -119.494638393999978, 49.822897521000094 ], [ -119.495598190999942, 49.823124503000017 ], [ -119.49619119, 49.823290911000079 ], [ -119.497347893999944, 49.823614503000073 ], [ -119.497352766999924, 49.823606053000091 ], [ -119.497607298999952, 49.823164005000066 ], [ -119.498013895999961, 49.82242511500003 ], [ -119.498278791999923, 49.822053497000049 ], [ -119.498706285999901, 49.821275204000081 ], [ -119.499016703999928, 49.820711297000095 ], [ -119.499133583999964, 49.820498556000054 ], [ -119.499215589999892, 49.82034929000006 ], [ -119.499248300999909, 49.820289787000071 ], [ -119.499258802999947, 49.820137785 ], [ -119.499313333999979, 49.819496931000138 ], [ -119.499341789999974, 49.819162 ], [ -119.498869483999925, 49.819157300000064 ], [ -119.498305802999965, 49.819069502000076 ], [ -119.497803019999978, 49.818877008000051 ], [ -119.497118910999944, 49.818557206000023 ], [ -119.496839209999962, 49.818865603000113 ], [ -119.496830643999886, 49.818881695000094 ], [ -119.496763011999974, 49.819009199000085 ], [ -119.49672787599998, 49.819372801000036 ], [ -119.49678027899995, 49.819465411000088 ], [ -119.496868608999975, 49.819494002000084 ], [ -119.496114912999957, 49.819754813 ], [ -119.495843805000021, 49.819898995000074 ], [ -119.495631405999973, 49.820283704000097 ], [ -119.495235612999949, 49.820418100000062 ], [ -119.49508549799998, 49.820394699000083 ], [ -119.49424119299999, 49.820375906000024 ], [ -119.491864881, 49.819936998000095 ], [ -119.49221028599996, 49.819647085000078 ], [ -119.492342802999957, 49.819535848000065 ], [ -119.492546963999985, 49.819364478000118 ], [ -119.493628592000022, 49.818456487000034 ], [ -119.493932286999922, 49.818180191000089 ], [ -119.494289012999957, 49.817855591000118 ], [ -119.494505899999979, 49.81754529800007 ], [ -119.495642909999972, 49.817537989000122 ], [ -119.496344789999952, 49.817667595000017 ], [ -119.498341797999927, 49.818522164000072 ], [ -119.498364995000017, 49.818532102000091 ], [ -119.498856792999945, 49.818665992000078 ], [ -119.49936751499996, 49.818668559000088 ], [ -119.500553204999918, 49.818674484000042 ], [ -119.501789103999911, 49.81891660499999 ], [ -119.503899927999896, 49.819031845000126 ], [ -119.503930393999923, 49.819621871000095 ], [ -119.502680457999958, 49.819648884000088 ], [ -119.502688865999943, 49.819811805000022 ], [ -119.502613682999964, 49.819808199000072 ], [ -119.502437105999917, 49.819924014000037 ], [ -119.502277721999945, 49.819927458000116 ], [ -119.502286654999978, 49.820100535000044 ], [ -119.502245902999945, 49.820198019000152 ], [ -119.501874982999965, 49.820206029000083 ], [ -119.501945021999973, 49.821563396000023 ], [ -119.501901685999925, 49.821824691000053 ], [ -119.501541777999947, 49.821832464000067 ], [ -119.501555683999953, 49.822102036000068 ], [ -119.501206344999957, 49.822109580000088 ], [ -119.501151724999957, 49.822168660000024 ], [ -119.501142614999949, 49.822180773000127 ], [ -119.501157105999965, 49.822461680000089 ], [ -119.500810487999956, 49.822824696000083 ], [ -119.500638075999944, 49.823201340000097 ], [ -119.500361288999954, 49.823207315000062 ], [ -119.500372947999935, 49.823433419000082 ], [ -119.500342411999938, 49.823455602000088 ], [ -119.500118944999954, 49.823752291000076 ], [ -119.499999924999941, 49.823754860000079 ], [ -119.499999923999937, 49.823910309000077 ], [ -119.499977711999975, 49.823939798000062 ], [ -119.499559609999935, 49.824200411000113 ], [ -119.499295219999937, 49.824728800000059 ], [ -119.499121081999974, 49.824875497000065 ], [ -119.499250398999962, 49.826232647000026 ], [ -119.499275112999925, 49.826492 ], [ -119.498979111999986, 49.826695697000041 ], [ -119.498858172999945, 49.826748095000021 ], [ -119.498837263999988, 49.826748546000076 ], [ -119.498759324000034, 49.826776460000097 ], [ -119.498663138999987, 49.826832593000056 ], [ -119.497864713999945, 49.827178500000102 ], [ -119.497322092, 49.827478993000135 ], [ -119.496760411999986, 49.828156902000067 ], [ -119.496408913999929, 49.828343494000059 ], [ -119.495849807999917, 49.82884188500006 ], [ -119.495494499999936, 49.828957293000023 ], [ -119.494895723999932, 49.828961605000039 ], [ -119.493304092999935, 49.829381708000064 ], [ -119.49311867899999, 49.829570488000073 ], [ -119.493002597999961, 49.829572985000027 ], [ -119.492781074999954, 49.829926137000093 ], [ -119.492783525999968, 49.829973804000055 ], [ -119.492364595999945, 49.830841500000112 ], [ -119.491998382999938, 49.831300094000042 ], [ -119.491532216999957, 49.831426897 ], [ -119.49075118899999, 49.831902595000045 ], [ -119.489883380999956, 49.832092 ], [ -119.489772, 49.83214897600002 ], [ -119.489145041999919, 49.83223864100011 ], [ -119.489150993999942, 49.832354532000075 ], [ -119.48881321, 49.832361789000032 ], [ -119.488652724999938, 49.832423661000121 ], [ -119.48864019699991, 49.832431695 ], [ -119.48843070599996, 49.832519201000068 ], [ -119.48829024399997, 49.832656145000023 ], [ -119.488062423999935, 49.832802261000026 ], [ -119.488008924, 49.832933061000098 ], [ -119.488021183999933, 49.833198816000085 ], [ -119.487998099999913, 49.833265488000045 ], [ -119.48803083199999, 49.833407955000069 ], [ -119.488036423999915, 49.833529160000047 ], [ -119.488170023999899, 49.834126660000038 ], [ -119.488180023999931, 49.834454961000084 ], [ -119.488241226999946, 49.83480292400003 ], [ -119.488350808999897, 49.834800570000041 ], [ -119.48846310499998, 49.835289297000024 ], [ -119.489130413999973, 49.836659389000069 ], [ -119.489348089999936, 49.837382896000044 ], [ -119.489471060999946, 49.837595658000083 ], [ -119.489497423999964, 49.837710360000045 ], [ -119.489518546999989, 49.837744073000096 ], [ -119.489556371999967, 49.83774325900005 ], [ -119.489944105999896, 49.838414090000065 ], [ -119.49111951499999, 49.839882401000096 ], [ -119.491808403999926, 49.840587400000118 ], [ -119.493973097999941, 49.842357695000025 ], [ -119.494159710999952, 49.842437693000164 ], [ -119.494210524999943, 49.842469761000046 ], [ -119.494242179999958, 49.84250016000005 ], [ -119.494262537999958, 49.842499722000113 ], [ -119.494263509999911, 49.842518594000104 ], [ -119.494248004999989, 49.842576997000052 ], [ -119.491373809, 49.842396104000052 ], [ -119.489226179999918, 49.842829091000041 ], [ -119.487934423999945, 49.842752229000048 ], [ -119.487945014999966, 49.842662754000138 ], [ -119.487971092999942, 49.842442113000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151114083", "BldgCostT": "102303333", "sL_LossRatio": "0.998038556156093", "sL_AssetLoss": "15961.80798", "sL_BldgLoss": "15930.49979", "sL_StrLoss": "15918.60479", "sL_NStrLoss": "11.895", "sL_ContLoss": "31.30819", "geom_point": "0101000020E61000009647716D2CDF5DC064C20676C2E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.483084692999938, 49.817502702000084 ], [ -119.483077716999944, 49.816154447000052 ], [ -119.483076007999912, 49.815822394000079 ], [ -119.483062388999926, 49.813942206000057 ], [ -119.483060444, 49.813192572000069 ], [ -119.48304157699998, 49.812808157000092 ], [ -119.483035868999963, 49.812692141000113 ], [ -119.48472610099995, 49.813392103000098 ], [ -119.486627778999946, 49.814077085000086 ], [ -119.48859329699999, 49.814784987000124 ], [ -119.489416384999913, 49.815387410000035 ], [ -119.489541218999989, 49.815655201000048 ], [ -119.489453296999912, 49.816123693000037 ], [ -119.489603687999988, 49.816354505000064 ], [ -119.490173609999971, 49.816899899000113 ], [ -119.490375964999942, 49.816989284000051 ], [ -119.49075718499995, 49.817157695000041 ], [ -119.491219390999944, 49.817201900000079 ], [ -119.491819609999965, 49.817009599000095 ], [ -119.492542709999952, 49.81701100100009 ], [ -119.493863288999989, 49.817549404000033 ], [ -119.494505899999979, 49.81754529800007 ], [ -119.494289012999957, 49.817855591000118 ], [ -119.493932286999922, 49.818180191000089 ], [ -119.493628592000022, 49.818456487000034 ], [ -119.492546963999985, 49.819364478000118 ], [ -119.492342802999957, 49.819535848000065 ], [ -119.49221028599996, 49.819647085000078 ], [ -119.491864881, 49.819936998000095 ], [ -119.49135348599998, 49.820344498000075 ], [ -119.491102450999961, 49.820570834000065 ], [ -119.490426628999927, 49.821180058000088 ], [ -119.49028888399998, 49.821304222000037 ], [ -119.489960606999944, 49.821503114000095 ], [ -119.48918804, 49.821979875000125 ], [ -119.488906415999935, 49.822301728000127 ], [ -119.488749274999975, 49.822562368000057 ], [ -119.488679862999973, 49.822853520000059 ], [ -119.484940467999962, 49.823000473000128 ], [ -119.48318664199995, 49.822970650000073 ], [ -119.483160765999983, 49.822359365000061 ], [ -119.483153155999972, 49.82217907200004 ], [ -119.483134910999937, 49.821748415000044 ], [ -119.483130148999962, 49.821244750000091 ], [ -119.48312896799996, 49.821118939000016 ], [ -119.483127549999935, 49.820968601000096 ], [ -119.483119466999966, 49.820255469000152 ], [ -119.483109590999931, 49.819382598000068 ], [ -119.483098160999944, 49.818519626000075 ], [ -119.483091729999956, 49.818033851000052 ], [ -119.483084692999938, 49.817502702000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137927667", "BldgCostT": "93176667", "sL_LossRatio": "1", "sL_AssetLoss": "13803.8", "sL_BldgLoss": "13803.8", "sL_StrLoss": "13803.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF309775BBDE5DC0F5E3C49166E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.477439637999908, 49.811447073000103 ], [ -119.477954207999929, 49.811467996000047 ], [ -119.479223327999975, 49.811662721000118 ], [ -119.479239903999911, 49.811665274000092 ], [ -119.480785601, 49.811902397000068 ], [ -119.481521796999942, 49.812101150000068 ], [ -119.481771908, 49.812168684000021 ], [ -119.483035868999963, 49.812692141000113 ], [ -119.48304157699998, 49.812808157000092 ], [ -119.483060444, 49.813192572000069 ], [ -119.483062388999926, 49.813942206000057 ], [ -119.483076007999912, 49.815822394000079 ], [ -119.483077716999944, 49.816154447000052 ], [ -119.483084692999938, 49.817502702000084 ], [ -119.483091729999956, 49.818033851000052 ], [ -119.483098160999944, 49.818519626000075 ], [ -119.483109590999931, 49.819382598000068 ], [ -119.481601510999923, 49.819391800000062 ], [ -119.481308004999917, 49.819394981000102 ], [ -119.478859692999904, 49.81941299100005 ], [ -119.477512596999972, 49.819418290000058 ], [ -119.47753339499999, 49.818832515000096 ], [ -119.477490207999921, 49.817013793000108 ], [ -119.477467400999984, 49.816128290000087 ], [ -119.477460282, 49.815806393000059 ], [ -119.477447287999951, 49.815047005000118 ], [ -119.477425003999912, 49.813678303000088 ], [ -119.477411692000018, 49.812804220000032 ], [ -119.477409707999925, 49.812720095000095 ], [ -119.477395780000023, 49.812270452000085 ], [ -119.477403318999976, 49.811738967000117 ], [ -119.47740350199993, 49.811738855000065 ], [ -119.477439637999908, 49.811447073000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192552583", "BldgCostT": "124963333", "sL_LossRatio": "0.99636367804167", "sL_AssetLoss": "16320.958562", "sL_BldgLoss": "16261.610302", "sL_StrLoss": "16239.025902", "sL_NStrLoss": "22.5844", "sL_ContLoss": "59.34826", "geom_point": "0101000020E6100000D412135038DE5DC00F8994C91DE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.464684115999944, 49.826944060000116 ], [ -119.466187877999943, 49.825807195000074 ], [ -119.466281644999981, 49.825681360000033 ], [ -119.466335185000034, 49.826733791000095 ], [ -119.468657336999954, 49.826872865000063 ], [ -119.468849310999985, 49.82553002700012 ], [ -119.469393174999965, 49.825562592000011 ], [ -119.469410491999966, 49.825441441000095 ], [ -119.469746758000014, 49.825461574000087 ], [ -119.469826403999932, 49.824904349000107 ], [ -119.470157336999975, 49.824924161000055 ], [ -119.470360957999958, 49.823499456000057 ], [ -119.470534717999968, 49.823509859000083 ], [ -119.470707709999942, 49.822299362000081 ], [ -119.474565175999942, 49.822530227000094 ], [ -119.47468007, 49.821725751000031 ], [ -119.474840587999964, 49.821735355000101 ], [ -119.474833503999903, 49.821596550000038 ], [ -119.47441683299995, 49.821605450000071 ], [ -119.474403075999987, 49.821335871000059 ], [ -119.473986406, 49.821344772000103 ], [ -119.473972650999926, 49.821075194000073 ], [ -119.47230598099999, 49.821110778000069 ], [ -119.472292234999941, 49.820841200000096 ], [ -119.470625569999982, 49.820876759000036 ], [ -119.470611834999971, 49.820607179000064 ], [ -119.470438921999985, 49.820610868000067 ], [ -119.46994319, 49.824079535000116 ], [ -119.467238143999936, 49.823917546000096 ], [ -119.466764219999959, 49.82392764000015 ], [ -119.466845693999943, 49.823597860000049 ], [ -119.466848962000014, 49.823508102000105 ], [ -119.466905728999933, 49.821940223000119 ], [ -119.466921723999974, 49.821499463000038 ], [ -119.466943678999897, 49.820892596000093 ], [ -119.4668798, 49.820383031000084 ], [ -119.466710206999906, 49.819812947000052 ], [ -119.466501545999975, 49.819349801000094 ], [ -119.466319222999985, 49.81913205500004 ], [ -119.466304428999976, 49.819121326000108 ], [ -119.465971592999963, 49.818880035000056 ], [ -119.46496587199999, 49.818380861000072 ], [ -119.463415499999897, 49.817856252000041 ], [ -119.464279516999952, 49.816488290000109 ], [ -119.464475907999955, 49.816285204000124 ], [ -119.465004877999917, 49.815737098000106 ], [ -119.46520557799991, 49.815406797000016 ], [ -119.465245790999958, 49.815155396000094 ], [ -119.465190909999961, 49.8138805890001 ], [ -119.465167173999973, 49.813314707000124 ], [ -119.465119189999911, 49.813104091000035 ], [ -119.465020589999938, 49.812944691000062 ], [ -119.464255764999947, 49.812147432000081 ], [ -119.463082827999955, 49.810936468000079 ], [ -119.464834453999941, 49.810352326000114 ], [ -119.465042086999958, 49.811091326000096 ], [ -119.46917978899998, 49.814160717000092 ], [ -119.470307004999924, 49.815066399000031 ], [ -119.472141493999985, 49.81654022100011 ], [ -119.475826015999985, 49.81938559600011 ], [ -119.47583393599993, 49.81945044800004 ], [ -119.477512596999972, 49.819418290000058 ], [ -119.478859692999904, 49.81941299100005 ], [ -119.481308004999917, 49.819394981000102 ], [ -119.481601510999923, 49.819391800000062 ], [ -119.483109590999931, 49.819382598000068 ], [ -119.483119466999966, 49.820255469000152 ], [ -119.483127549999935, 49.820968601000096 ], [ -119.48312896799996, 49.821118939000016 ], [ -119.483130148999962, 49.821244750000091 ], [ -119.483134910999937, 49.821748415000044 ], [ -119.483153155999972, 49.82217907200004 ], [ -119.483160765999983, 49.822359365000061 ], [ -119.48318664199995, 49.822970650000073 ], [ -119.482526478999915, 49.822981797000111 ], [ -119.48205957099999, 49.82307581700011 ], [ -119.481806576999958, 49.823206073000115 ], [ -119.481448014999955, 49.823518784000058 ], [ -119.480642592, 49.824870448000127 ], [ -119.48043326, 49.825105385000022 ], [ -119.480173662999931, 49.825262351000056 ], [ -119.47654251699997, 49.82641792200014 ], [ -119.475277419999898, 49.826849697000064 ], [ -119.474543104999924, 49.827100281000064 ], [ -119.474203860999964, 49.827247958000036 ], [ -119.473743314999936, 49.827345950000051 ], [ -119.473349032999963, 49.827351248000099 ], [ -119.473024402999911, 49.827376983000121 ], [ -119.472050330999977, 49.827797328000059 ], [ -119.471781594999968, 49.827851687000042 ], [ -119.470764645999907, 49.827927181000028 ], [ -119.469858677999937, 49.828066214000152 ], [ -119.469020732999965, 49.828246332000042 ], [ -119.468684327999981, 49.8283544210001 ], [ -119.467851417999924, 49.828733525000118 ], [ -119.46752883799999, 49.828803611000033 ], [ -119.464481248999931, 49.829172859000039 ], [ -119.464093790999982, 49.82823299300005 ], [ -119.464049524999936, 49.827927784000117 ], [ -119.464100853999952, 49.827637376000027 ], [ -119.464243932, 49.82732986400007 ], [ -119.46444018699998, 49.827128472000034 ], [ -119.464684115999944, 49.826944060000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179280084", "BldgCostT": "119048334", "sL_LossRatio": "0.997874709037547", "sL_AssetLoss": "16797.7", "sL_BldgLoss": "16762", "sL_StrLoss": "16749", "sL_NStrLoss": "13", "sL_ContLoss": "35.7", "geom_point": "0101000020E6100000C1CD2D9D24DE5DC035397CD209E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46917978899998, 49.814160717000092 ], [ -119.465042086999958, 49.811091326000096 ], [ -119.464834453999941, 49.810352326000114 ], [ -119.463082827999955, 49.810936468000079 ], [ -119.46089657499999, 49.808686628000011 ], [ -119.460772426999966, 49.808558377000089 ], [ -119.460641394, 49.808423019000024 ], [ -119.460454850999966, 49.808299304000052 ], [ -119.460154714999959, 49.808100202000034 ], [ -119.459152021999898, 49.807503604000068 ], [ -119.458830300999963, 49.807344396000076 ], [ -119.458646620999929, 49.807282410000077 ], [ -119.458553497999958, 49.807251006000044 ], [ -119.45821768699993, 49.807180303000081 ], [ -119.457362944999915, 49.80706823 ], [ -119.457362670999942, 49.806046066000064 ], [ -119.45861010699997, 49.80601959300008 ], [ -119.458637430999943, 49.806558757000069 ], [ -119.459470524999958, 49.806541070000094 ], [ -119.459484193999913, 49.806810652000138 ], [ -119.45990074099997, 49.806801807000056 ], [ -119.459914412999979, 49.807071388000026 ], [ -119.46158061499996, 49.807035990000053 ], [ -119.461594294999955, 49.807305570000011 ], [ -119.462010848999967, 49.807296717000092 ], [ -119.462079256999985, 49.808644623000113 ], [ -119.462495821999951, 49.808635768000023 ], [ -119.462509506999979, 49.808905349000121 ], [ -119.46459233599991, 49.808861049000065 ], [ -119.464660819999949, 49.81020895300005 ], [ -119.465493974999973, 49.81019122000005 ], [ -119.46553508099997, 49.810999962000096 ], [ -119.46576443699999, 49.810995080000097 ], [ -119.466182180999965, 49.80807311899999 ], [ -119.46636457299995, 49.808084049000051 ], [ -119.466572406999944, 49.808229408000038 ], [ -119.466682897999974, 49.808279595000045 ], [ -119.467027, 49.808435912000071 ], [ -119.46762000399994, 49.808891594000087 ], [ -119.467735308, 49.808932443000046 ], [ -119.468403191999954, 49.809169039000018 ], [ -119.468866396999928, 49.809333114000076 ], [ -119.469811105999938, 49.809357298000066 ], [ -119.469839660999952, 49.809381422000079 ], [ -119.469983118999949, 49.809502572000085 ], [ -119.470175401999924, 49.809664999000155 ], [ -119.470255785999939, 49.809705243000074 ], [ -119.47058800399995, 49.809871509000125 ], [ -119.471251092999964, 49.810055206000108 ], [ -119.472225647999949, 49.810208328 ], [ -119.472610518999971, 49.81026879900007 ], [ -119.472880279999941, 49.810349427000055 ], [ -119.473598265, 49.810564017000068 ], [ -119.475984583999903, 49.81127720500011 ], [ -119.476018157999931, 49.811282472000073 ], [ -119.476938579999953, 49.811426694000012 ], [ -119.477439637999908, 49.811447073000103 ], [ -119.47740350199993, 49.811738855000065 ], [ -119.477403318999976, 49.811738967000117 ], [ -119.477395780000023, 49.812270452000085 ], [ -119.477409707999925, 49.812720095000095 ], [ -119.477411692000018, 49.812804220000032 ], [ -119.477425003999912, 49.813678303000088 ], [ -119.477447287999951, 49.815047005000118 ], [ -119.477460282, 49.815806393000059 ], [ -119.477467400999984, 49.816128290000087 ], [ -119.477490207999921, 49.817013793000108 ], [ -119.47753339499999, 49.818832515000096 ], [ -119.477512596999972, 49.819418290000058 ], [ -119.47583393599993, 49.81945044800004 ], [ -119.475826015999985, 49.81938559600011 ], [ -119.472141493999985, 49.81654022100011 ], [ -119.470307004999924, 49.815066399000031 ], [ -119.46917978899998, 49.814160717000092 ] ], [ [ -119.46933922, 49.811998413000033 ], [ -119.469333184999968, 49.811879865 ], [ -119.468078233999961, 49.811804694000045 ], [ -119.468089445999951, 49.812025050000052 ], [ -119.46933922, 49.811998413000033 ] ], [ [ -119.467242550999941, 49.811773221000102 ], [ -119.467534998999952, 49.811766991000091 ], [ -119.467241337999923, 49.811749398000103 ], [ -119.467242550999941, 49.811773221000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126661334", "BldgCostT": "84823334", "sL_LossRatio": "0.999997092460329", "sL_AssetLoss": "14142.54134", "sL_BldgLoss": "14142.50022", "sL_StrLoss": "14142.00722", "sL_NStrLoss": "0.493", "sL_ContLoss": "0.04112", "geom_point": "0101000020E610000048DA11774ADD5DC007D71EEED1E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.457015418999944, 49.816086621000053 ], [ -119.456975492999973, 49.816081919000055 ], [ -119.455977782999966, 49.816063598000021 ], [ -119.455766777999912, 49.816059677000069 ], [ -119.454863288999974, 49.816042810000042 ], [ -119.454909313999948, 49.814415519000107 ], [ -119.454942913999972, 49.81322654000008 ], [ -119.454966906999942, 49.812377793000046 ], [ -119.454846387999936, 49.811679613000059 ], [ -119.454504200999935, 49.811108185000101 ], [ -119.45417980500001, 49.810713902000032 ], [ -119.453589079999972, 49.810260780000078 ], [ -119.453563909999943, 49.810241490000074 ], [ -119.453553896999964, 49.810233816000036 ], [ -119.452219993999975, 49.809447408000054 ], [ -119.451302894999984, 49.80903289600014 ], [ -119.451663445999912, 49.808750297000074 ], [ -119.451950422, 49.808525411000083 ], [ -119.453007500999917, 49.807699302000124 ], [ -119.453337491999946, 49.807488804000059 ], [ -119.453791987999978, 49.807256889000051 ], [ -119.454414087999936, 49.807052198000122 ], [ -119.454638, 49.806979007000102 ], [ -119.455018681999917, 49.806893923000132 ], [ -119.455166886999947, 49.806860801000035 ], [ -119.455791598999937, 49.806862208000098 ], [ -119.456044880999912, 49.80689541200011 ], [ -119.457049035999944, 49.807027078 ], [ -119.457362944999915, 49.80706823 ], [ -119.45821768699993, 49.807180303000081 ], [ -119.458553497999958, 49.807251006000044 ], [ -119.458646620999929, 49.807282410000077 ], [ -119.458830300999963, 49.807344396000076 ], [ -119.459152021999898, 49.807503604000068 ], [ -119.460154714999959, 49.808100202000034 ], [ -119.460454850999966, 49.808299304000052 ], [ -119.460641394, 49.808423019000024 ], [ -119.460772426999966, 49.808558377000089 ], [ -119.46089657499999, 49.808686628000011 ], [ -119.463082827999955, 49.810936468000079 ], [ -119.464255764999947, 49.812147432000081 ], [ -119.46333609199999, 49.812513755000062 ], [ -119.460280811999922, 49.813730704000079 ], [ -119.459804589000015, 49.813977592000121 ], [ -119.459425809999971, 49.81421679000016 ], [ -119.459267799999964, 49.814414092000021 ], [ -119.459122086999969, 49.815237194000126 ], [ -119.458388918999944, 49.815301503000065 ], [ -119.458425071999926, 49.815330794000026 ], [ -119.458502308999954, 49.815619900000115 ], [ -119.458439003999956, 49.816062309000131 ], [ -119.458189590999922, 49.816391392000128 ], [ -119.45779310399999, 49.816217705000035 ], [ -119.457548886, 49.816149795000101 ], [ -119.457015418999944, 49.816086621000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65386166", "BldgCostT": "43886666", "sL_LossRatio": "0.999988742396296", "sL_AssetLoss": "7026.3621", "sL_BldgLoss": "7026.283", "sL_StrLoss": "7026", "sL_NStrLoss": "0.283", "sL_ContLoss": "0.0791", "geom_point": "0101000020E61000006EB3CAAF93DD5DC0C0AE264F59E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46333609199999, 49.812513755000062 ], [ -119.464255764999947, 49.812147432000081 ], [ -119.465020589999938, 49.812944691000062 ], [ -119.465119189999911, 49.813104091000035 ], [ -119.465167173999973, 49.813314707000124 ], [ -119.465190909999961, 49.8138805890001 ], [ -119.465245790999958, 49.815155396000094 ], [ -119.46520557799991, 49.815406797000016 ], [ -119.465004877999917, 49.815737098000106 ], [ -119.464475907999955, 49.816285204000124 ], [ -119.464279516999952, 49.816488290000109 ], [ -119.463415499999897, 49.817856252000041 ], [ -119.460652331999896, 49.817568684000072 ], [ -119.46004332199999, 49.817408381000057 ], [ -119.45852120499994, 49.816609086000057 ], [ -119.458189590999922, 49.816391392000128 ], [ -119.458439003999956, 49.816062309000131 ], [ -119.458502308999954, 49.815619900000115 ], [ -119.458425071999926, 49.815330794000026 ], [ -119.458388918999944, 49.815301503000065 ], [ -119.459122086999969, 49.815237194000126 ], [ -119.459267799999964, 49.814414092000021 ], [ -119.459425809999971, 49.81421679000016 ], [ -119.459804589000015, 49.813977592000121 ], [ -119.460280811999922, 49.813730704000079 ], [ -119.46333609199999, 49.812513755000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133427500", "BldgCostT": "90340000", "sL_LossRatio": "1", "sL_AssetLoss": "13189.7", "sL_BldgLoss": "13189.7", "sL_StrLoss": "13189.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9FBFC393DEB5DC04800F56E45EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.668841082, 49.851563402000082 ], [ -119.668460816, 49.850986702000093 ], [ -119.66846794099996, 49.850928316000129 ], [ -119.668491904999883, 49.850732090000065 ], [ -119.668436608999968, 49.850557307000031 ], [ -119.668129883999924, 49.849577983000081 ], [ -119.667731222999976, 49.848275556000026 ], [ -119.66763053199999, 49.84813607900012 ], [ -119.667460781999949, 49.848031432000056 ], [ -119.667104158999905, 49.847986369000083 ], [ -119.666458625999951, 49.847991354000023 ], [ -119.666420447999883, 49.847784239000134 ], [ -119.66634183299999, 49.847663865000065 ], [ -119.665916186999965, 49.847011899000094 ], [ -119.665550887999956, 49.846505910000111 ], [ -119.663452696999954, 49.843591503000034 ], [ -119.663254911999957, 49.843358007000042 ], [ -119.663446402999966, 49.843265202000026 ], [ -119.663538703999933, 49.842549203000132 ], [ -119.663460300999986, 49.841807013000022 ], [ -119.663505579999949, 49.84163089800002 ], [ -119.663603514999977, 49.841478609000063 ], [ -119.663996693999962, 49.841179102000076 ], [ -119.66462052299994, 49.840753903000099 ], [ -119.665129507999964, 49.840406998000056 ], [ -119.665479219999938, 49.840350601000083 ], [ -119.666450390999955, 49.840301296000064 ], [ -119.666412967999989, 49.840421966000058 ], [ -119.666379698999961, 49.840529210000128 ], [ -119.666144594999963, 49.840865903000108 ], [ -119.665196519999981, 49.841835607000121 ], [ -119.665089585999979, 49.842033394000083 ], [ -119.66497258699999, 49.842343588000119 ], [ -119.664967315999903, 49.842562598000107 ], [ -119.665023096999917, 49.842784412000114 ], [ -119.665172026999969, 49.843018701000041 ], [ -119.665740203999974, 49.843681910000079 ], [ -119.665510919, 49.843896099000119 ], [ -119.665513500999936, 49.844088591000059 ], [ -119.666223275, 49.844998298000036 ], [ -119.667959110999959, 49.845947704000125 ], [ -119.669180264999952, 49.846632491000044 ], [ -119.669334813999967, 49.846776002000055 ], [ -119.669420418999948, 49.847034610000023 ], [ -119.669408598999908, 49.847553109000039 ], [ -119.669777910999983, 49.847677389000047 ], [ -119.669972453999961, 49.847815672000074 ], [ -119.67002818499999, 49.847855296000034 ], [ -119.670224000999923, 49.848154704000095 ], [ -119.670417000999976, 49.848635389000052 ], [ -119.670573085999976, 49.848807794000024 ], [ -119.670888917999946, 49.849047306000038 ], [ -119.671043402999928, 49.849241414000055 ], [ -119.671322591999967, 49.849956391 ], [ -119.671535496999965, 49.849719514000107 ], [ -119.671610614999963, 49.848976302000068 ], [ -119.67159570299999, 49.848207190000061 ], [ -119.67166200099993, 49.847900403000089 ], [ -119.671853297999945, 49.847708395000048 ], [ -119.67211022, 49.847596911000032 ], [ -119.672380798999924, 49.847547605000059 ], [ -119.672724209999913, 49.847567484000095 ], [ -119.673052306999978, 49.847586501000109 ], [ -119.67307438200001, 49.847538102000044 ], [ -119.67327992599999, 49.847364597000066 ], [ -119.673532687999966, 49.847151193000101 ], [ -119.673671708999933, 49.846974210000106 ], [ -119.673750789999943, 49.846634797000071 ], [ -119.673792296999963, 49.846123493000064 ], [ -119.673678800999951, 49.845814401000062 ], [ -119.673487061999964, 49.845771620000072 ], [ -119.673268593999964, 49.845722895000044 ], [ -119.672869994999957, 49.845714949000048 ], [ -119.671608276999933, 49.845689718000052 ], [ -119.671093408999951, 49.845679437000037 ], [ -119.670060502999931, 49.845658802000074 ], [ -119.670063210999942, 49.845511153000068 ], [ -119.670069415999961, 49.845171785000083 ], [ -119.670086982999962, 49.84439000400014 ], [ -119.670087911999957, 49.844282688000078 ], [ -119.67010243499999, 49.843739707000069 ], [ -119.670111884, 49.843384799000091 ], [ -119.670111598999981, 49.843326090000083 ], [ -119.670120870999966, 49.842929423000072 ], [ -119.670135412999926, 49.84230909800003 ], [ -119.670126089999954, 49.841640408000096 ], [ -119.670137067999946, 49.841130448000122 ], [ -119.670141113999975, 49.840941010000073 ], [ -119.670149614999957, 49.84054480600004 ], [ -119.670329326999962, 49.84022480400008 ], [ -119.670985120999944, 49.840597807000066 ], [ -119.671327994999928, 49.840852414000068 ], [ -119.671839529999957, 49.841436124000026 ], [ -119.672282377999949, 49.841941495000079 ], [ -119.6724438, 49.842086304000055 ], [ -119.672662502999913, 49.842189314000066 ], [ -119.67308918699996, 49.842313293000089 ], [ -119.673765184999979, 49.842590903 ], [ -119.674783305999938, 49.842898207000054 ], [ -119.675334692999968, 49.843179311000085 ], [ -119.675527803999927, 49.843215782000044 ], [ -119.675735611999954, 49.843207104000058 ], [ -119.676368625999928, 49.843111808000103 ], [ -119.676498100999964, 49.843092302000031 ], [ -119.676792087999942, 49.843105790000017 ], [ -119.677085385999987, 49.843154414000068 ], [ -119.677373787999954, 49.84323879800008 ], [ -119.678381396999939, 49.843671799000028 ], [ -119.678729909999944, 49.84377598400004 ], [ -119.67905061499998, 49.843808102000096 ], [ -119.679304895999948, 49.843765912000087 ], [ -119.67990389499991, 49.843561401000059 ], [ -119.680227288000012, 49.843524089000056 ], [ -119.680468101999963, 49.843548890000093 ], [ -119.68237480699996, 49.844090792000046 ], [ -119.683853364999948, 49.844689549000122 ], [ -119.6839409, 49.844725014000062 ], [ -119.684257808, 49.844774908000012 ], [ -119.686277117999921, 49.844805995000058 ], [ -119.687171812999949, 49.844643794000035 ], [ -119.688352732999931, 49.844384220000101 ], [ -119.688726325999966, 49.844302112000037 ], [ -119.689386015999972, 49.844204039000033 ], [ -119.689916926999928, 49.844199439000079 ], [ -119.692255598999935, 49.844262404000126 ], [ -119.692155112999956, 49.845727277000016 ], [ -119.692172285999959, 49.846108394000112 ], [ -119.692150989999973, 49.846153526000151 ], [ -119.689648016999953, 49.846878108000105 ], [ -119.68872715899991, 49.84682613600004 ], [ -119.682646994999956, 49.847002728000092 ], [ -119.682732614999964, 49.846383718000041 ], [ -119.679304509999938, 49.846185245000107 ], [ -119.679358693999944, 49.845793710000144 ], [ -119.67865451499992, 49.845752928000117 ], [ -119.678847209999972, 49.844360633000065 ], [ -119.675450406999943, 49.844163843000047 ], [ -119.675558799, 49.843381044000083 ], [ -119.673071181999987, 49.843236858000132 ], [ -119.673052744999922, 49.843369957000057 ], [ -119.673336998999957, 49.843363396 ], [ -119.673351873999962, 49.843632931000052 ], [ -119.673768668999955, 49.843623313000073 ], [ -119.673796382999939, 49.844125450000107 ], [ -119.6774162, 49.844335211000043 ], [ -119.677024361999941, 49.847165670000038 ], [ -119.676790947999962, 49.847172427000039 ], [ -119.676759198999974, 49.84790848200003 ], [ -119.675554135999946, 49.847838663000147 ], [ -119.675384426999983, 49.849064144000074 ], [ -119.673227362999938, 49.848939134000055 ], [ -119.67327718699994, 49.849841851000086 ], [ -119.673694035999915, 49.849832230000061 ], [ -119.673738675, 49.850640833000071 ], [ -119.674155531999958, 49.85063121200011 ], [ -119.674200179999929, 49.85143981500007 ], [ -119.672115863, 49.851487910000138 ], [ -119.67210099099999, 49.851218377000087 ], [ -119.670433544000034, 49.851256826000053 ], [ -119.670448403999941, 49.851526361000055 ], [ -119.668841082, 49.851563402000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11244584", "BldgCostT": "7258334", "sL_LossRatio": "1", "sL_AssetLoss": "903.6", "sL_BldgLoss": "903.6", "sL_StrLoss": "903.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000072DEBDAB37EB5DC0CC6B1D03CFED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.67299226699997, 49.856258534000105 ], [ -119.676390511999955, 49.856455430000047 ], [ -119.676235087999956, 49.860057703000052 ], [ -119.675068751999973, 49.859990141000011 ], [ -119.675080191999925, 49.859889690000017 ], [ -119.674902110999966, 49.859461006000089 ], [ -119.674909310999908, 49.859075083000043 ], [ -119.674699508999979, 49.858530993000031 ], [ -119.674431187999986, 49.858465505000012 ], [ -119.674571879999988, 49.858211041000139 ], [ -119.674632796999987, 49.858100896000103 ], [ -119.674579611999945, 49.857885808000027 ], [ -119.673995321999925, 49.857135301000092 ], [ -119.673304553999955, 49.856531523000058 ], [ -119.67299226699997, 49.856258534000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91933583", "BldgCostT": "60983333", "sL_LossRatio": "0.995344970701201", "sL_AssetLoss": "9731.76109583", "sL_BldgLoss": "9686.4594628", "sL_StrLoss": "9670.0030328", "sL_NStrLoss": "16.45643", "sL_ContLoss": "45.30163303", "geom_point": "0101000020E6100000F236672B8CEA5DC090EC9D1373EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.664534582999948, 49.849324203000045 ], [ -119.664444182999929, 49.848014408000061 ], [ -119.663991189999962, 49.848019694000037 ], [ -119.663591409999967, 49.847873713000062 ], [ -119.663078807999938, 49.84717218300004 ], [ -119.662119994999969, 49.845864307000113 ], [ -119.66107189899999, 49.844365204000034 ], [ -119.661848384999985, 49.844069903000047 ], [ -119.66225169399992, 49.84394981100013 ], [ -119.663452696999954, 49.843591503000034 ], [ -119.665550887999956, 49.846505910000111 ], [ -119.665916186999965, 49.847011899000094 ], [ -119.66634183299999, 49.847663865000065 ], [ -119.666420447999883, 49.847784239000134 ], [ -119.666458625999951, 49.847991354000023 ], [ -119.667104158999905, 49.847986369000083 ], [ -119.667460781999949, 49.848031432000056 ], [ -119.66763053199999, 49.84813607900012 ], [ -119.667731222999976, 49.848275556000026 ], [ -119.668129883999924, 49.849577983000081 ], [ -119.668436608999968, 49.850557307000031 ], [ -119.667796991999964, 49.8506194940001 ], [ -119.667655198999981, 49.850608768000015 ], [ -119.667291487999975, 49.850581201000089 ], [ -119.665395004999979, 49.850045006000073 ], [ -119.664951716999894, 49.849849503000065 ], [ -119.66470310699998, 49.849649094000029 ], [ -119.664534582999948, 49.849324203000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "110850175", "BldgCostT": "73562451", "sL_LossRatio": "0.98019310591722", "sL_AssetLoss": "13014.368882", "sL_BldgLoss": "12756.594656", "sL_StrLoss": "12662.614406", "sL_NStrLoss": "93.98025", "sL_ContLoss": "257.774226", "geom_point": "0101000020E610000040F3BDAF1FEA5DC039B35DA18FEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.66026569, 49.842521691000066 ], [ -119.660169491999952, 49.842189193000088 ], [ -119.658955116999934, 49.842190889000044 ], [ -119.65875928299999, 49.842244492000113 ], [ -119.658302609999978, 49.842518603000016 ], [ -119.656453098999961, 49.841415316000045 ], [ -119.655546090999948, 49.840942696000091 ], [ -119.654458713999986, 49.84038200200014 ], [ -119.654010312999901, 49.839882910000021 ], [ -119.654368179999935, 49.83972759300007 ], [ -119.654483197999966, 49.839643087000127 ], [ -119.654405808999968, 49.836784593000097 ], [ -119.655783281999973, 49.836762711000127 ], [ -119.655911422999935, 49.838055597000114 ], [ -119.655912847999957, 49.83806987 ], [ -119.655912915999977, 49.83807039100008 ], [ -119.656009786999974, 49.838146391000045 ], [ -119.656155980999955, 49.83817931100009 ], [ -119.656598204, 49.838159903000076 ], [ -119.657335381999971, 49.838408596000136 ], [ -119.657375886999944, 49.838539108000155 ], [ -119.657602992999898, 49.838731997000089 ], [ -119.657817605, 49.838795103000066 ], [ -119.658100106999925, 49.838769896000024 ], [ -119.659242302999985, 49.838363192000067 ], [ -119.65958839599999, 49.838654211000112 ], [ -119.660504987999971, 49.839118205 ], [ -119.660822701999948, 49.839222486000033 ], [ -119.660897808999934, 49.840089091000046 ], [ -119.660985778999958, 49.840410191000096 ], [ -119.661347597, 49.84088552 ], [ -119.661539408999914, 49.841137511000071 ], [ -119.661761511999927, 49.84149798900004 ], [ -119.661852188999916, 49.841728996000029 ], [ -119.661949302999972, 49.842186108000142 ], [ -119.66209098899995, 49.842442607000137 ], [ -119.662649303999913, 49.842944481000131 ], [ -119.663254911999957, 49.843358007000042 ], [ -119.663452696999954, 49.843591503000034 ], [ -119.66225169399992, 49.84394981100013 ], [ -119.66151088699999, 49.843383994000057 ], [ -119.660758421999915, 49.842893404000066 ], [ -119.66026569, 49.842521691000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98735834", "BldgCostT": "67333334", "sL_LossRatio": "1", "sL_AssetLoss": "10810.8", "sL_BldgLoss": "10810.8", "sL_StrLoss": "10810.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E5B003006AEA5DC0A7B62FFB50EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.660399415999976, 49.833736461000044 ], [ -119.660491802999928, 49.833653288000058 ], [ -119.66075250599998, 49.833765081000109 ], [ -119.660985109999928, 49.833868896000062 ], [ -119.661305780999911, 49.834122299000079 ], [ -119.661595284999919, 49.834442997000053 ], [ -119.661692799999969, 49.834550992000139 ], [ -119.661950494999985, 49.834936194000107 ], [ -119.662297909999964, 49.835600096000057 ], [ -119.662500993999956, 49.835866502000044 ], [ -119.66286067099999, 49.836120296000075 ], [ -119.662977181999963, 49.836205690000121 ], [ -119.663801498999973, 49.836731084000121 ], [ -119.66463809599999, 49.837239289000081 ], [ -119.665918797999979, 49.837965509000121 ], [ -119.666157911999917, 49.838073217000115 ], [ -119.666385267999885, 49.83812349500009 ], [ -119.666471814999909, 49.839311204000083 ], [ -119.666508576999973, 49.840022096000069 ], [ -119.666450390999955, 49.840301296000064 ], [ -119.665479219999938, 49.840350601000083 ], [ -119.665129507999964, 49.840406998000056 ], [ -119.66462052299994, 49.840753903000099 ], [ -119.663996693999962, 49.841179102000076 ], [ -119.663603514999977, 49.841478609000063 ], [ -119.663505579999949, 49.84163089800002 ], [ -119.663460300999986, 49.841807013000022 ], [ -119.663538703999933, 49.842549203000132 ], [ -119.663446402999966, 49.843265202000026 ], [ -119.663254911999957, 49.843358007000042 ], [ -119.662649303999913, 49.842944481000131 ], [ -119.66209098899995, 49.842442607000137 ], [ -119.661949302999972, 49.842186108000142 ], [ -119.661852188999916, 49.841728996000029 ], [ -119.661761511999927, 49.84149798900004 ], [ -119.661539408999914, 49.841137511000071 ], [ -119.661347597, 49.84088552 ], [ -119.660985778999958, 49.840410191000096 ], [ -119.660897808999934, 49.840089091000046 ], [ -119.660822701999948, 49.839222486000033 ], [ -119.660784593999963, 49.838781291000039 ], [ -119.660708686999982, 49.837902191000119 ], [ -119.660603505999973, 49.837624293000061 ], [ -119.660101339999983, 49.837084580000131 ], [ -119.659972105999927, 49.836945691000032 ], [ -119.659791205999952, 49.836670589000065 ], [ -119.659760190999947, 49.836360988000074 ], [ -119.659831585999925, 49.835846902000114 ], [ -119.659813000999947, 49.835678798000075 ], [ -119.659723011999944, 49.835573303000096 ], [ -119.659370587999902, 49.835156508000047 ], [ -119.659323707999931, 49.835011997000024 ], [ -119.659335885999923, 49.834873706000074 ], [ -119.659519188999951, 49.834528602000098 ], [ -119.65997837299993, 49.834115367000102 ], [ -119.660160446999953, 49.833951489000093 ], [ -119.660322042999937, 49.83380608300007 ], [ -119.660399415999976, 49.833736461000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124798500", "BldgCostT": "81360000", "sL_LossRatio": "1", "sL_AssetLoss": "12266.9", "sL_BldgLoss": "12266.9", "sL_StrLoss": "12266.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000EE8431F05EA5DC0D9D946F2CBEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.65958839599999, 49.838654211000112 ], [ -119.659242302999985, 49.838363192000067 ], [ -119.658100106999925, 49.838769896000024 ], [ -119.657817605, 49.838795103000066 ], [ -119.657602992999898, 49.838731997000089 ], [ -119.657375886999944, 49.838539108000155 ], [ -119.657335381999971, 49.838408596000136 ], [ -119.656598204, 49.838159903000076 ], [ -119.656155980999955, 49.83817931100009 ], [ -119.656009786999974, 49.838146391000045 ], [ -119.655912915999977, 49.83807039100008 ], [ -119.655912847999957, 49.83806987 ], [ -119.655911422999935, 49.838055597000114 ], [ -119.655783281999973, 49.836762711000127 ], [ -119.654405808999968, 49.836784593000097 ], [ -119.653370294999917, 49.836805709 ], [ -119.653362694999927, 49.835484294000025 ], [ -119.653356893999955, 49.834973901000097 ], [ -119.653343951999915, 49.833392576000101 ], [ -119.653341981, 49.833152800000043 ], [ -119.653333076999942, 49.832034598000064 ], [ -119.653326830999916, 49.83125226500006 ], [ -119.65331261399993, 49.829467409000081 ], [ -119.65332248299994, 49.828993901000089 ], [ -119.653467076999931, 49.828605997000061 ], [ -119.653648221999958, 49.828751520000054 ], [ -119.654640100999984, 49.829548447000064 ], [ -119.65503352599994, 49.829864503000081 ], [ -119.655715209999954, 49.830320405000123 ], [ -119.656076717999937, 49.830261057000023 ], [ -119.65609761199994, 49.83027940100002 ], [ -119.656895913999961, 49.830858799000048 ], [ -119.658803812999935, 49.832243398000031 ], [ -119.659100698999964, 49.832526991000073 ], [ -119.65947848, 49.832981736000079 ], [ -119.659739095999925, 49.833295402000047 ], [ -119.659978916999989, 49.833458298000053 ], [ -119.660491802999928, 49.833653288000058 ], [ -119.660399415999976, 49.833736461000044 ], [ -119.660322042999937, 49.83380608300007 ], [ -119.660160446999953, 49.833951489000093 ], [ -119.65997837299993, 49.834115367000102 ], [ -119.659519188999951, 49.834528602000098 ], [ -119.659335885999923, 49.834873706000074 ], [ -119.659323707999931, 49.835011997000024 ], [ -119.659370587999902, 49.835156508000047 ], [ -119.659723011999944, 49.835573303000096 ], [ -119.659813000999947, 49.835678798000075 ], [ -119.659831585999925, 49.835846902000114 ], [ -119.659760190999947, 49.836360988000074 ], [ -119.659791205999952, 49.836670589000065 ], [ -119.659972105999927, 49.836945691000032 ], [ -119.660101339999983, 49.837084580000131 ], [ -119.660603505999973, 49.837624293000061 ], [ -119.660708686999982, 49.837902191000119 ], [ -119.660784593999963, 49.838781291000039 ], [ -119.660822701999948, 49.839222486000033 ], [ -119.660504987999971, 49.839118205 ], [ -119.65958839599999, 49.838654211000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72749584", "BldgCostT": "49908334", "sL_LossRatio": "0.999994835348104", "sL_AssetLoss": "8771.1623", "sL_BldgLoss": "8771.117", "sL_StrLoss": "8771", "sL_NStrLoss": "0.117", "sL_ContLoss": "0.0453", "geom_point": "0101000020E610000041D0B80DB6E95DC0077381ECF1EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.651998893000012, 49.836813494000062 ], [ -119.651965914999934, 49.83654878300009 ], [ -119.65185319599999, 49.836335511000136 ], [ -119.651518695999954, 49.835921486000117 ], [ -119.651287493999973, 49.835637206000072 ], [ -119.65116897899992, 49.835159096000105 ], [ -119.651130101999939, 49.835002304000071 ], [ -119.650882626999959, 49.835005998000071 ], [ -119.648865511999944, 49.835032201000097 ], [ -119.647639580999922, 49.835047491000132 ], [ -119.647484518999946, 49.835028505000039 ], [ -119.647362906999916, 49.834950106000079 ], [ -119.647277995, 49.834737487000041 ], [ -119.647193309999977, 49.834263108000101 ], [ -119.647235889999976, 49.834107489000147 ], [ -119.647275857999972, 49.834064423000036 ], [ -119.647688881999926, 49.83361929200003 ], [ -119.647862576999955, 49.833543608000163 ], [ -119.648108397999962, 49.833501884000079 ], [ -119.648859705999911, 49.833497803000071 ], [ -119.648861092999965, 49.834310506000051 ], [ -119.650192697999927, 49.834297695000068 ], [ -119.650443901999893, 49.83426719300013 ], [ -119.650838585999935, 49.834117687000052 ], [ -119.650426208999988, 49.833701906000051 ], [ -119.650242427999942, 49.833438405000052 ], [ -119.650198303999971, 49.833223593000049 ], [ -119.650222392999979, 49.832547888000065 ], [ -119.650296307999966, 49.832498008000094 ], [ -119.651584292999971, 49.832446516000125 ], [ -119.651679110999922, 49.832487300000089 ], [ -119.651708305999989, 49.83340179300005 ], [ -119.651906712000013, 49.83371130000004 ], [ -119.653341981, 49.833152800000043 ], [ -119.653343951999915, 49.833392576000101 ], [ -119.653356893999955, 49.834973901000097 ], [ -119.653362694999927, 49.835484294000025 ], [ -119.653370294999917, 49.836805709 ], [ -119.654405808999968, 49.836784593000097 ], [ -119.654483197999966, 49.839643087000127 ], [ -119.654368179999935, 49.83972759300007 ], [ -119.654010312999901, 49.839882910000021 ], [ -119.653461919999984, 49.839239705000061 ], [ -119.653384600999956, 49.839042899000098 ], [ -119.65339621399994, 49.83865809400006 ], [ -119.653173119999948, 49.838606303000056 ], [ -119.653023905999959, 49.838525402000101 ], [ -119.652676310999965, 49.838135005000026 ], [ -119.652464685999988, 49.837960102000039 ], [ -119.652162706999945, 49.837773695000095 ], [ -119.651892796999945, 49.837646995000107 ], [ -119.651986794999971, 49.83755311300007 ], [ -119.651998893000012, 49.836813494000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123409583", "BldgCostT": "84638333", "sL_LossRatio": "0.999995855833089", "sL_AssetLoss": "14138.667977", "sL_BldgLoss": "14138.609384", "sL_StrLoss": "14138.001384", "sL_NStrLoss": "0.608", "sL_ContLoss": "0.058593", "geom_point": "0101000020E6100000AD6196A8E4E95DC054FCDF1195EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.666279747999923, 49.851622381000062 ], [ -119.666264908999935, 49.851352845000065 ], [ -119.665848043999972, 49.851362438000102 ], [ -119.665833207999981, 49.85109290200009 ], [ -119.665416344999954, 49.851102495000134 ], [ -119.66538667699993, 49.850563422000057 ], [ -119.664969817999975, 49.850573012000019 ], [ -119.664954987999963, 49.850303475000061 ], [ -119.664121274999914, 49.85032265200006 ], [ -119.664106448999959, 49.850053115000023 ], [ -119.663689594999965, 49.850062701000077 ], [ -119.663659947999946, 49.849523627000046 ], [ -119.663243097999896, 49.849533211000043 ], [ -119.663213456999983, 49.848994138000165 ], [ -119.662796609999987, 49.849003721000088 ], [ -119.662737339999936, 49.847925572000058 ], [ -119.662320502999961, 49.847935152000062 ], [ -119.662294601999946, 49.847463898000058 ], [ -119.662228718999955, 49.847397507000046 ], [ -119.661874040999962, 49.847405658000085 ], [ -119.661849638999925, 49.846961595000053 ], [ -119.661776229999973, 49.846868149000116 ], [ -119.661427589999946, 49.846876160000136 ], [ -119.661412781999928, 49.846606623000056 ], [ -119.660995954, 49.846616198000035 ], [ -119.660981147999962, 49.84634666100002 ], [ -119.660564324999939, 49.846356235000044 ], [ -119.660549519999975, 49.846086697000047 ], [ -119.660132698999945, 49.846096270000068 ], [ -119.660117897999967, 49.845826732000099 ], [ -119.659701078999916, 49.845836303000027 ], [ -119.659686276999949, 49.845566764000111 ], [ -119.659269461999912, 49.8455763340001 ], [ -119.659256425999985, 49.845338899000097 ], [ -119.659192745, 49.845308217000088 ], [ -119.658837848999937, 49.845316364000062 ], [ -119.658827750999933, 49.845132361000047 ], [ -119.658658079999924, 49.845050612000051 ], [ -119.658406241999984, 49.845056392000082 ], [ -119.65839867599999, 49.844918523000054 ], [ -119.658317586999914, 49.844805101000034 ], [ -119.658159393999981, 49.845944388000071 ], [ -119.657798887, 49.845713094000061 ], [ -119.657282528999986, 49.845281373000063 ], [ -119.656543614999947, 49.84466350900005 ], [ -119.65623971, 49.843410209000069 ], [ -119.655690050999965, 49.842735769000036 ], [ -119.655434213999982, 49.842421796000075 ], [ -119.655102006999954, 49.842222409000023 ], [ -119.654196012999961, 49.841937492000049 ], [ -119.65405947, 49.841856449000076 ], [ -119.655732119000021, 49.841953701000058 ], [ -119.65571326499996, 49.841609752000124 ], [ -119.654879695999952, 49.841628860000135 ], [ -119.654864924999941, 49.841359320000073 ], [ -119.654448144999975, 49.841368871000057 ], [ -119.654433377, 49.841099333000102 ], [ -119.654016595999934, 49.841108883000032 ], [ -119.654001829999942, 49.840839343000098 ], [ -119.65358505199994, 49.840848891000107 ], [ -119.653570288999958, 49.840579352000084 ], [ -119.65315351299995, 49.840588899000039 ], [ -119.653138752999965, 49.840319359000013 ], [ -119.652721977999988, 49.840328904000103 ], [ -119.652662948999946, 49.839250745000072 ], [ -119.652300262999916, 49.839259050000102 ], [ -119.652158137999933, 49.840281769000036 ], [ -119.651976908, 49.840026307000059 ], [ -119.650456499, 49.838928192 ], [ -119.64806160199997, 49.83811921000008 ], [ -119.64796952099999, 49.838065109000112 ], [ -119.647472519999951, 49.837773199000083 ], [ -119.647265613999934, 49.837525288000066 ], [ -119.647044190999921, 49.836793296000025 ], [ -119.647000491, 49.836759728000033 ], [ -119.648274543999946, 49.836833898000123 ], [ -119.648125137999941, 49.837908386 ], [ -119.648389909999977, 49.837923798000062 ], [ -119.648387635999967, 49.83794016300007 ], [ -119.649674360999953, 49.838015052000031 ], [ -119.649671887999915, 49.83796981400009 ], [ -119.649255131999965, 49.837979346000111 ], [ -119.649240395999954, 49.837709806000078 ], [ -119.64882364099999, 49.837719337000117 ], [ -119.648794172999914, 49.837180256000096 ], [ -119.648377422999943, 49.837189783000056 ], [ -119.648347960999928, 49.836650703000089 ], [ -119.647514472, 49.836669756000127 ], [ -119.647455566999952, 49.835591592000064 ], [ -119.64703883, 49.835601116000134 ], [ -119.647024107999954, 49.835331575000055 ], [ -119.646775838999972, 49.835337248000037 ], [ -119.646618784999973, 49.836466512000094 ], [ -119.6459352, 49.835941389000027 ], [ -119.645793049999909, 49.835832218000064 ], [ -119.645781582999973, 49.835823396000059 ], [ -119.645699085999965, 49.835609789000067 ], [ -119.64576481, 49.83529359100001 ], [ -119.6455547, 49.835001608000034 ], [ -119.645038191999973, 49.834698304000021 ], [ -119.644702993999985, 49.834165594000055 ], [ -119.644681275999929, 49.8340156000001 ], [ -119.644622344999931, 49.83360872900014 ], [ -119.644614697999913, 49.833556096000038 ], [ -119.644691018999936, 49.833437898000113 ], [ -119.644867977999951, 49.833387998000035 ], [ -119.645465600999941, 49.833375200000035 ], [ -119.645970611999971, 49.833192888000042 ], [ -119.645972638999964, 49.833166028000157 ], [ -119.645981461999966, 49.833048246000075 ], [ -119.646050984999945, 49.832120505000077 ], [ -119.64558039399995, 49.831422656000029 ], [ -119.645469873999929, 49.831258725000026 ], [ -119.648179014999968, 49.831191518000033 ], [ -119.648277713, 49.831210399000021 ], [ -119.648849086999945, 49.831215593000124 ], [ -119.648859705999911, 49.833497803000071 ], [ -119.648108397999962, 49.833501884000079 ], [ -119.647862576999955, 49.833543608000163 ], [ -119.647688881999926, 49.83361929200003 ], [ -119.647275857999972, 49.834064423000036 ], [ -119.647235889999976, 49.834107489000147 ], [ -119.647193309999977, 49.834263108000101 ], [ -119.647277995, 49.834737487000041 ], [ -119.647362906999916, 49.834950106000079 ], [ -119.647484518999946, 49.835028505000039 ], [ -119.647639580999922, 49.835047491000132 ], [ -119.648865511999944, 49.835032201000097 ], [ -119.650882626999959, 49.835005998000071 ], [ -119.651130101999939, 49.835002304000071 ], [ -119.65116897899992, 49.835159096000105 ], [ -119.651287493999973, 49.835637206000072 ], [ -119.651518695999954, 49.835921486000117 ], [ -119.65185319599999, 49.836335511000136 ], [ -119.651965914999934, 49.83654878300009 ], [ -119.651998893000012, 49.836813494000062 ], [ -119.651986794999971, 49.83755311300007 ], [ -119.651892796999945, 49.837646995000107 ], [ -119.652162706999945, 49.837773695000095 ], [ -119.652464685999988, 49.837960102000039 ], [ -119.652676310999965, 49.838135005000026 ], [ -119.653023905999959, 49.838525402000101 ], [ -119.653173119999948, 49.838606303000056 ], [ -119.65339621399994, 49.83865809400006 ], [ -119.653384600999956, 49.839042899000098 ], [ -119.653461919999984, 49.839239705000061 ], [ -119.654010312999901, 49.839882910000021 ], [ -119.654458713999986, 49.84038200200014 ], [ -119.655546090999948, 49.840942696000091 ], [ -119.656453098999961, 49.841415316000045 ], [ -119.658302609999978, 49.842518603000016 ], [ -119.65875928299999, 49.842244492000113 ], [ -119.658955116999934, 49.842190889000044 ], [ -119.660169491999952, 49.842189193000088 ], [ -119.66026569, 49.842521691000066 ], [ -119.660758421999915, 49.842893404000066 ], [ -119.66151088699999, 49.843383994000057 ], [ -119.66225169399992, 49.84394981100013 ], [ -119.661848384999985, 49.844069903000047 ], [ -119.66107189899999, 49.844365204000034 ], [ -119.662119994999969, 49.845864307000113 ], [ -119.663078807999938, 49.84717218300004 ], [ -119.663591409999967, 49.847873713000062 ], [ -119.663991189999962, 49.848019694000037 ], [ -119.664444182999929, 49.848014408000061 ], [ -119.664534582999948, 49.849324203000045 ], [ -119.66470310699998, 49.849649094000029 ], [ -119.664951716999894, 49.849849503000065 ], [ -119.665395004999979, 49.850045006000073 ], [ -119.667291487999975, 49.850581201000089 ], [ -119.667655198999981, 49.850608768000015 ], [ -119.667796991999964, 49.8506194940001 ], [ -119.668436608999968, 49.850557307000031 ], [ -119.668491904999883, 49.850732090000065 ], [ -119.66846794099996, 49.850928316000129 ], [ -119.668460816, 49.850986702000093 ], [ -119.668841082, 49.851563402000082 ], [ -119.666279747999923, 49.851622381000062 ] ], [ [ -119.646921047999939, 49.833444787000055 ], [ -119.646914027999955, 49.833316238000123 ], [ -119.646896071999947, 49.83344535800007 ], [ -119.646921047999939, 49.833444787000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "134", "sL_BldgLoss": "134", "sL_StrLoss": "134", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000AC86ED14FEA5DC01FE0C5D272EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.661089699999977, 49.847392286000073 ], [ -119.660874888999899, 49.847019092000053 ], [ -119.66052588899997, 49.846801795000054 ], [ -119.660442696999937, 49.846750013000133 ], [ -119.660054703999904, 49.846615950000036 ], [ -119.661132733999978, 49.84667856600003 ], [ -119.661078686999986, 49.84706797200009 ], [ -119.661577745999978, 49.847096955000048 ], [ -119.661422661999978, 49.848214361000103 ], [ -119.661138981999898, 49.847796704000075 ], [ -119.661089699999977, 49.847392286000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181116750", "BldgCostT": "119280000", "sL_LossRatio": "0.998284742965514", "sL_AssetLoss": "19530.600561", "sL_BldgLoss": "19497.100561", "sL_StrLoss": "19485.000561", "sL_NStrLoss": "12.1", "sL_ContLoss": "33.5", "geom_point": "0101000020E6100000D10D358690E95DC020E2EEC5FAE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.648859705999911, 49.833497803000071 ], [ -119.648849086999945, 49.831215593000124 ], [ -119.648277713, 49.831210399000021 ], [ -119.648179014999968, 49.831191518000033 ], [ -119.645469873999929, 49.831258725000026 ], [ -119.645044371999973, 49.830627658000132 ], [ -119.645023404999932, 49.830596593000088 ], [ -119.644971602999959, 49.830164996000072 ], [ -119.643897394999954, 49.829092612000053 ], [ -119.643819055999955, 49.828982581000091 ], [ -119.643745060999976, 49.828878690000074 ], [ -119.64340238199999, 49.828397433000099 ], [ -119.643303673999938, 49.828258803000075 ], [ -119.6435277, 49.828225912000029 ], [ -119.644092890999985, 49.828094498999988 ], [ -119.644606596999949, 49.827932189000116 ], [ -119.645230590999972, 49.827638891000035 ], [ -119.645667475, 49.827335403000106 ], [ -119.645766496999926, 49.827266599000041 ], [ -119.646103491999924, 49.826949392000081 ], [ -119.64646489099998, 49.826487400000119 ], [ -119.646486812999939, 49.826438096000018 ], [ -119.646706997999956, 49.825942280000078 ], [ -119.646821677999952, 49.825684100000032 ], [ -119.64701458199994, 49.825249784000107 ], [ -119.647116601999983, 49.82501999600003 ], [ -119.647460091999932, 49.824246612000088 ], [ -119.647488856999985, 49.824202349000117 ], [ -119.647917996999979, 49.823541896000087 ], [ -119.648013016999982, 49.823429308000101 ], [ -119.648347211, 49.823033301000052 ], [ -119.648976409999989, 49.822417435000091 ], [ -119.649093106999956, 49.82230321600008 ], [ -119.649993088999921, 49.821422264000063 ], [ -119.650478507999949, 49.820947092000054 ], [ -119.65121983399996, 49.820265587000051 ], [ -119.651364402999931, 49.820411283000084 ], [ -119.651569241999965, 49.820617716000143 ], [ -119.651298602999987, 49.821269285000106 ], [ -119.651550892999964, 49.821411307000112 ], [ -119.651783805999969, 49.821591885000061 ], [ -119.652059349999959, 49.82193385700004 ], [ -119.652238165999975, 49.822155804000019 ], [ -119.652316919999976, 49.82227235700006 ], [ -119.65210821299992, 49.822290927000026 ], [ -119.651624139999967, 49.822334010000105 ], [ -119.651893301, 49.822591489000054 ], [ -119.65271448499999, 49.824110990000108 ], [ -119.652294107999964, 49.824416002000113 ], [ -119.652150171999935, 49.82457829700008 ], [ -119.651812388999929, 49.825453404000044 ], [ -119.651714977999973, 49.825551591000135 ], [ -119.65140598399995, 49.825667193000072 ], [ -119.651478083999962, 49.826323305000081 ], [ -119.651566696999978, 49.826689589000104 ], [ -119.651826893999939, 49.827156195000029 ], [ -119.652105882999962, 49.827538095000122 ], [ -119.652567685999927, 49.827929703000031 ], [ -119.653467076999931, 49.828605997000061 ], [ -119.65332248299994, 49.828993901000089 ], [ -119.65331261399993, 49.829467409000081 ], [ -119.653326830999916, 49.83125226500006 ], [ -119.653333076999942, 49.832034598000064 ], [ -119.653341981, 49.833152800000043 ], [ -119.651906712000013, 49.83371130000004 ], [ -119.651708305999989, 49.83340179300005 ], [ -119.651679110999922, 49.832487300000089 ], [ -119.651584292999971, 49.832446516000125 ], [ -119.650296307999966, 49.832498008000094 ], [ -119.650222392999979, 49.832547888000065 ], [ -119.650198303999971, 49.833223593000049 ], [ -119.650242427999942, 49.833438405000052 ], [ -119.650426208999988, 49.833701906000051 ], [ -119.650838585999935, 49.834117687000052 ], [ -119.650443901999893, 49.83426719300013 ], [ -119.650192697999927, 49.834297695000068 ], [ -119.648861092999965, 49.834310506000051 ], [ -119.648859705999911, 49.833497803000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134392562", "BldgCostT": "90798191", "sL_LossRatio": "0.999999894512156", "sL_AssetLoss": "13271.67141", "sL_BldgLoss": "13271.67001", "sL_StrLoss": "13271.60361", "sL_NStrLoss": "0.0664", "sL_ContLoss": "0.0014", "geom_point": "0101000020E6100000C082C9C7CDEA5DC0E7FCDA1BF8EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.667959110999959, 49.845947704000125 ], [ -119.666223275, 49.844998298000036 ], [ -119.665513500999936, 49.844088591000059 ], [ -119.665510919, 49.843896099000119 ], [ -119.665740203999974, 49.843681910000079 ], [ -119.665172026999969, 49.843018701000041 ], [ -119.665023096999917, 49.842784412000114 ], [ -119.664967315999903, 49.842562598000107 ], [ -119.66497258699999, 49.842343588000119 ], [ -119.665089585999979, 49.842033394000083 ], [ -119.665196519999981, 49.841835607000121 ], [ -119.666144594999963, 49.840865903000108 ], [ -119.666379698999961, 49.840529210000128 ], [ -119.666412967999989, 49.840421966000058 ], [ -119.666450390999955, 49.840301296000064 ], [ -119.666508576999973, 49.840022096000069 ], [ -119.666471814999909, 49.839311204000083 ], [ -119.666385267999885, 49.83812349500009 ], [ -119.666905370999956, 49.838193655000097 ], [ -119.66797019799999, 49.838337307000067 ], [ -119.668288892999968, 49.83840369900004 ], [ -119.668670689999914, 49.838548611000128 ], [ -119.668994891999915, 49.83874710700011 ], [ -119.669805205999978, 49.839656308000066 ], [ -119.670091819999982, 49.839995299000066 ], [ -119.670329326999962, 49.84022480400008 ], [ -119.670149614999957, 49.84054480600004 ], [ -119.670141113999975, 49.840941010000073 ], [ -119.670137067999946, 49.841130448000122 ], [ -119.670126089999954, 49.841640408000096 ], [ -119.670135412999926, 49.84230909800003 ], [ -119.670120870999966, 49.842929423000072 ], [ -119.670111598999981, 49.843326090000083 ], [ -119.670111884, 49.843384799000091 ], [ -119.67010243499999, 49.843739707000069 ], [ -119.670087911999957, 49.844282688000078 ], [ -119.670086982999962, 49.84439000400014 ], [ -119.670069415999961, 49.845171785000083 ], [ -119.670063210999942, 49.845511153000068 ], [ -119.670060502999931, 49.845658802000074 ], [ -119.671093408999951, 49.845679437000037 ], [ -119.671608276999933, 49.845689718000052 ], [ -119.672869994999957, 49.845714949000048 ], [ -119.673268593999964, 49.845722895000044 ], [ -119.673487061999964, 49.845771620000072 ], [ -119.673678800999951, 49.845814401000062 ], [ -119.673792296999963, 49.846123493000064 ], [ -119.673750789999943, 49.846634797000071 ], [ -119.673671708999933, 49.846974210000106 ], [ -119.673532687999966, 49.847151193000101 ], [ -119.67327992599999, 49.847364597000066 ], [ -119.67307438200001, 49.847538102000044 ], [ -119.673052306999978, 49.847586501000109 ], [ -119.672724209999913, 49.847567484000095 ], [ -119.672380798999924, 49.847547605000059 ], [ -119.67211022, 49.847596911000032 ], [ -119.671853297999945, 49.847708395000048 ], [ -119.67166200099993, 49.847900403000089 ], [ -119.67159570299999, 49.848207190000061 ], [ -119.671610614999963, 49.848976302000068 ], [ -119.671535496999965, 49.849719514000107 ], [ -119.671322591999967, 49.849956391 ], [ -119.671043402999928, 49.849241414000055 ], [ -119.670888917999946, 49.849047306000038 ], [ -119.670573085999976, 49.848807794000024 ], [ -119.670417000999976, 49.848635389000052 ], [ -119.670224000999923, 49.848154704000095 ], [ -119.67002818499999, 49.847855296000034 ], [ -119.669972453999961, 49.847815672000074 ], [ -119.669777910999983, 49.847677389000047 ], [ -119.669408598999908, 49.847553109000039 ], [ -119.669420418999948, 49.847034610000023 ], [ -119.669334813999967, 49.846776002000055 ], [ -119.669180264999952, 49.846632491000044 ], [ -119.667959110999959, 49.845947704000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "562835513", "BldgCostT": "327127159", "sL_LossRatio": "0.932332390137424", "sL_AssetLoss": "17967.237242", "sL_BldgLoss": "16751.437242", "sL_StrLoss": "16311.017242", "sL_NStrLoss": "440.42", "sL_ContLoss": "1215.8", "geom_point": "0101000020E61000007CD86574D7DF5DC01001144459F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.493326716999917, 49.901696795000092 ], [ -119.493439375999941, 49.901293952000103 ], [ -119.49353489399995, 49.900952504000017 ], [ -119.493541018999949, 49.900812012000102 ], [ -119.493539533999936, 49.900543384000038 ], [ -119.493538831999942, 49.900408575 ], [ -119.493536646999971, 49.900003917000099 ], [ -119.49353598499998, 49.899887111000041 ], [ -119.493534426999972, 49.899491471000061 ], [ -119.493532613999975, 49.899029024000029 ], [ -119.493531832999963, 49.897630035000098 ], [ -119.493531802999925, 49.897594102000042 ], [ -119.493531790999938, 49.897565237000045 ], [ -119.493500268999981, 49.896140294000126 ], [ -119.493504922999975, 49.895451597000104 ], [ -119.493520102999952, 49.894131204000075 ], [ -119.493526385999942, 49.893586388000074 ], [ -119.491814286, 49.893558390000081 ], [ -119.490583299999983, 49.893571848000043 ], [ -119.48914907399994, 49.893587544000063 ], [ -119.4884846, 49.893594798000031 ], [ -119.488472179999945, 49.892644096000076 ], [ -119.488470193999945, 49.891738316000087 ], [ -119.48927480299993, 49.891738726000092 ], [ -119.490152480999896, 49.89173922500008 ], [ -119.491809898999989, 49.89173861000004 ], [ -119.493542692999952, 49.891738022000055 ], [ -119.494324253999935, 49.891734899000056 ], [ -119.495526122999976, 49.89171436500002 ], [ -119.49627974199997, 49.89159398800011 ], [ -119.496608686999977, 49.891590096000058 ], [ -119.496616474999911, 49.889898363000107 ], [ -119.496614752999974, 49.889008824000022 ], [ -119.496613718999967, 49.888691992000055 ], [ -119.496609507999949, 49.887369571000129 ], [ -119.496610845999967, 49.887242338000149 ], [ -119.496605802999937, 49.886317377000111 ], [ -119.496606711999945, 49.885360291000033 ], [ -119.496601248000033, 49.884496664000025 ], [ -119.496563252999962, 49.884341786000078 ], [ -119.496600609999945, 49.884226626000078 ], [ -119.49636813199993, 49.883603260000044 ], [ -119.499422959999919, 49.883666821000141 ], [ -119.499424301999937, 49.883549528000067 ], [ -119.499855590999942, 49.883542680000112 ], [ -119.500229237999932, 49.883440314000062 ], [ -119.500622863999979, 49.883227140000052 ], [ -119.500894568999982, 49.882996790000085 ], [ -119.501111226999967, 49.882643068000057 ], [ -119.501397362999967, 49.881869992000112 ], [ -119.501702699999967, 49.881491721000039 ], [ -119.502008392000036, 49.881277855000029 ], [ -119.502719717999952, 49.880864156000058 ], [ -119.502947469999981, 49.88076574200003 ], [ -119.504232626999936, 49.880529443000064 ], [ -119.504243097999947, 49.880536682000063 ], [ -119.504429422999962, 49.880547764000056 ], [ -119.50434776599991, 49.880726358000075 ], [ -119.504331699999952, 49.880761494000062 ], [ -119.503672594999983, 49.880938095000069 ], [ -119.503676850999952, 49.880967453000054 ], [ -119.503803879999936, 49.88184389600012 ], [ -119.504165398999945, 49.882654291000037 ], [ -119.504195994999961, 49.883221088000035 ], [ -119.504341683999925, 49.883639804000069 ], [ -119.504251906999954, 49.884334789000064 ], [ -119.50379581, 49.885190793000085 ], [ -119.503496287999923, 49.885340301000049 ], [ -119.501873401999916, 49.885457107000086 ], [ -119.500775100999945, 49.88575901200003 ], [ -119.500231819999968, 49.885986903000038 ], [ -119.499175849999943, 49.886589188000116 ], [ -119.499183300999931, 49.88653689900012 ], [ -119.49908162499996, 49.886588261000078 ], [ -119.499044912999977, 49.886660520000071 ], [ -119.499045081999896, 49.886663772000126 ], [ -119.498608812999947, 49.886912592000101 ], [ -119.49855889499996, 49.887030895000038 ], [ -119.498247081999949, 49.887217392000117 ], [ -119.498375003999953, 49.88753789900003 ], [ -119.498257888999944, 49.887703109000022 ], [ -119.497771310999923, 49.887685994000023 ], [ -119.497564516999915, 49.888015007000078 ], [ -119.497462, 49.888997707000023 ], [ -119.497776211999934, 49.889943404000071 ], [ -119.498035896999966, 49.890145601000071 ], [ -119.498229614999957, 49.890618404000101 ], [ -119.498795287999954, 49.890812103000044 ], [ -119.499256884999937, 49.891108401000089 ], [ -119.500089491999972, 49.891341899000089 ], [ -119.49998071199991, 49.89139888700003 ], [ -119.499559613999935, 49.891309204 ], [ -119.499293486999989, 49.891296409000105 ], [ -119.499227700999967, 49.891351901000128 ], [ -119.499263007, 49.892062593000098 ], [ -119.499831004999976, 49.892256307000132 ], [ -119.500840983999964, 49.892126700000063 ], [ -119.500626717000031, 49.891753502000078 ], [ -119.500351794999958, 49.891561298000092 ], [ -119.500528677999938, 49.891494294000026 ], [ -119.500950998999926, 49.891846093000083 ], [ -119.501119386999932, 49.892148003000031 ], [ -119.500970596999977, 49.892771909000047 ], [ -119.50066370199994, 49.893021094000105 ], [ -119.500217203999981, 49.893246090000048 ], [ -119.499668415999963, 49.893388832000035 ], [ -119.498975591999908, 49.893403774000021 ], [ -119.498997548999967, 49.89382870200005 ], [ -119.498984906999979, 49.894190394000127 ], [ -119.498845689999897, 49.894482305000061 ], [ -119.499054733999927, 49.894935363000094 ], [ -119.499073100999965, 49.895290762000101 ], [ -119.499316328999925, 49.895285516000108 ], [ -119.499501131999949, 49.895489460000071 ], [ -119.499504329999979, 49.895551331000028 ], [ -119.499556182999982, 49.895550213000071 ], [ -119.499672605999962, 49.895678692000047 ], [ -119.499927127999939, 49.895648680000072 ], [ -119.49992970299995, 49.895698491000097 ], [ -119.500246290999939, 49.895717326000074 ], [ -119.500247388999981, 49.895738489000038 ], [ -119.499502384999943, 49.896150097000032 ], [ -119.499405605999968, 49.89669129400005 ], [ -119.498717391999918, 49.896590189000101 ], [ -119.49904320199991, 49.896969008000063 ], [ -119.49924710599997, 49.897144184000091 ], [ -119.499527702, 49.897165498000064 ], [ -119.499609099999944, 49.897109988000068 ], [ -119.499539794999976, 49.896850797000056 ], [ -119.499808515999931, 49.896134403000083 ], [ -119.50049218299992, 49.895731955000016 ], [ -119.500917304, 49.895757245000055 ], [ -119.500920807999989, 49.895813983000075 ], [ -119.500400318999937, 49.895994806000033 ], [ -119.500308021999913, 49.896096006000079 ], [ -119.500261121999955, 49.896286801000052 ], [ -119.500353218999962, 49.896446302000122 ], [ -119.500875569999948, 49.896813537000092 ], [ -119.502202820999941, 49.897746605000123 ], [ -119.502928305999944, 49.89801011 ], [ -119.503201101999963, 49.89820239600003 ], [ -119.503697097999947, 49.898901587000083 ], [ -119.503694003999939, 49.899082496000041 ], [ -119.503589206999976, 49.899210692000082 ], [ -119.501139379999927, 49.900315893000091 ], [ -119.500699189, 49.900703304000047 ], [ -119.500297596999957, 49.901268698000109 ], [ -119.499689676999964, 49.901381196000052 ], [ -119.498133386999939, 49.901451000000122 ], [ -119.498000406999964, 49.901520895000054 ], [ -119.49752543699995, 49.901531132000052 ], [ -119.497518599999964, 49.90165640400005 ], [ -119.497317203999955, 49.901655401000063 ], [ -119.497317623999948, 49.901641661000063 ], [ -119.49647593899999, 49.901628346000095 ], [ -119.496477120999941, 49.90165121800004 ], [ -119.496012419999914, 49.901648902000041 ], [ -119.495903607999978, 49.901705888 ], [ -119.495887967999977, 49.901836278000054 ], [ -119.495233943999907, 49.901850361000086 ], [ -119.495245339999926, 49.902071189 ], [ -119.494767102999958, 49.902071896000159 ], [ -119.494674732999925, 49.902132270000052 ], [ -119.494413138999903, 49.902137900000078 ], [ -119.494421391999978, 49.902297853000086 ], [ -119.494247773, 49.902411329000145 ], [ -119.494009685999941, 49.902416453000122 ], [ -119.494017195999959, 49.902562031000066 ], [ -119.494013101999911, 49.902564707000053 ], [ -119.493915855999916, 49.902688343000044 ], [ -119.493606228999937, 49.902695005000069 ], [ -119.49362496099999, 49.903058170000072 ], [ -119.493601037999937, 49.903088576000151 ], [ -119.493038293999959, 49.902611488000083 ], [ -119.493161555999961, 49.902220583 ], [ -119.493326716999917, 49.901696795000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1573774498", "BldgCostT": "983489439", "sL_LossRatio": "0.822493393368722", "sL_AssetLoss": "71871.7649", "sL_BldgLoss": "59114.0518", "sL_StrLoss": "53456.6899", "sL_NStrLoss": "5657.3619", "sL_ContLoss": "12757.7131", "geom_point": "0101000020E6100000ACBC83E985DF5DC08CAC2FB7A0F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.496210317999925, 49.883602894000084 ], [ -119.49636813199993, 49.883603260000044 ], [ -119.496600609999945, 49.884226626000078 ], [ -119.496563252999962, 49.884341786000078 ], [ -119.496601248000033, 49.884496664000025 ], [ -119.496606711999945, 49.885360291000033 ], [ -119.496605802999937, 49.886317377000111 ], [ -119.496610845999967, 49.887242338000149 ], [ -119.496609507999949, 49.887369571000129 ], [ -119.496613718999967, 49.888691992000055 ], [ -119.496614752999974, 49.889008824000022 ], [ -119.496616474999911, 49.889898363000107 ], [ -119.496608686999977, 49.891590096000058 ], [ -119.49627974199997, 49.89159398800011 ], [ -119.495526122999976, 49.89171436500002 ], [ -119.494324253999935, 49.891734899000056 ], [ -119.493542692999952, 49.891738022000055 ], [ -119.491809898999989, 49.89173861000004 ], [ -119.490152480999896, 49.89173922500008 ], [ -119.48927480299993, 49.891738726000092 ], [ -119.488470193999945, 49.891738316000087 ], [ -119.488473312999957, 49.891657204000133 ], [ -119.488473989999974, 49.891163299000084 ], [ -119.488474793999927, 49.890207991000025 ], [ -119.48847477399994, 49.890031906000054 ], [ -119.488470378000017, 49.889766784000102 ], [ -119.488467178999926, 49.889575429000075 ], [ -119.488463547999956, 49.889356702000029 ], [ -119.488460692999951, 49.888965513000109 ], [ -119.488462804999983, 49.888383196000085 ], [ -119.488467708999934, 49.887340498000079 ], [ -119.488472084999927, 49.886311400000139 ], [ -119.488474275999977, 49.885837194000096 ], [ -119.488476365999972, 49.885370692000038 ], [ -119.48851238899999, 49.884756115000101 ], [ -119.488595724999968, 49.884661734000083 ], [ -119.488596423, 49.884490209000056 ], [ -119.488589426999937, 49.883726757000034 ], [ -119.489894976999921, 49.883732343000119 ], [ -119.493498686999956, 49.883689713000074 ], [ -119.495039617999922, 49.883631610000108 ], [ -119.496210317999925, 49.883602894000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019771", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288981456", "BldgCostT": "195412039", "sL_LossRatio": "0.979173487564854", "sL_AssetLoss": "20380.74696", "sL_BldgLoss": "19956.28708", "sL_StrLoss": "19777.65568", "sL_NStrLoss": "178.6314", "sL_ContLoss": "424.45988", "geom_point": "0101000020E61000008947352E14DF5DC0610EFE55B2F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482752091999927, 49.886299791000049 ], [ -119.488472084999927, 49.886311400000139 ], [ -119.488467708999934, 49.887340498000079 ], [ -119.488462804999983, 49.888383196000085 ], [ -119.488460692999951, 49.888965513000109 ], [ -119.488463547999956, 49.889356702000029 ], [ -119.488467178999926, 49.889575429000075 ], [ -119.488470378000017, 49.889766784000102 ], [ -119.48847477399994, 49.890031906000054 ], [ -119.488474793999927, 49.890207991000025 ], [ -119.48773678799995, 49.89020694800007 ], [ -119.483598882999942, 49.890200867000047 ], [ -119.482746882999962, 49.890199586000072 ], [ -119.482746654999957, 49.889765353000037 ], [ -119.482746361999915, 49.889322760000034 ], [ -119.482745882999922, 49.888802095000102 ], [ -119.48274550499994, 49.888369983000132 ], [ -119.482746874999975, 49.887856550000052 ], [ -119.482748295999954, 49.887323585000054 ], [ -119.482750430999928, 49.886750750000054 ], [ -119.482752091999927, 49.886299791000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "219191395", "BldgCostT": "145301524", "sL_LossRatio": "0.975471753392971", "sL_AssetLoss": "14128.47708", "sL_BldgLoss": "13781.93031", "sL_StrLoss": "13545.41111", "sL_NStrLoss": "236.5192", "sL_ContLoss": "346.54677", "geom_point": "0101000020E61000001DA35CB714DF5DC0A0287DDF47F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488470413999977, 49.883728672000132 ], [ -119.488589426999937, 49.883726757000034 ], [ -119.488596423, 49.884490209000056 ], [ -119.488595724999968, 49.884661734000083 ], [ -119.48851238899999, 49.884756115000101 ], [ -119.488476365999972, 49.885370692000038 ], [ -119.488474275999977, 49.885837194000096 ], [ -119.488472084999927, 49.886311400000139 ], [ -119.482752091999927, 49.886299791000049 ], [ -119.482753216999953, 49.885769787000093 ], [ -119.482754111999952, 49.885356304 ], [ -119.482757262999925, 49.884942287000079 ], [ -119.48276098299999, 49.884447391000023 ], [ -119.48276196399999, 49.88370697800007 ], [ -119.488470413999977, 49.883728672000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "288739856", "BldgCostT": "193402492", "sL_LossRatio": "0.910449326188527", "sL_AssetLoss": "10951.25685", "sL_BldgLoss": "9970.56442", "sL_StrLoss": "9489.43632", "sL_NStrLoss": "481.1281", "sL_ContLoss": "980.69243", "geom_point": "0101000020E61000001D54D97FB6DE5DC053A42D7446F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.479249795999976, 49.883636306000064 ], [ -119.48276196399999, 49.88370697800007 ], [ -119.48276098299999, 49.884447391000023 ], [ -119.482757262999925, 49.884942287000079 ], [ -119.482754111999952, 49.885356304 ], [ -119.482753216999953, 49.885769787000093 ], [ -119.482752091999927, 49.886299791000049 ], [ -119.48074241899999, 49.886284735000046 ], [ -119.48046320399996, 49.886282638000054 ], [ -119.479809824999933, 49.886277739000036 ], [ -119.47707628099991, 49.886271662000141 ], [ -119.477071006999964, 49.88533130800009 ], [ -119.477067199999951, 49.885251912000086 ], [ -119.477027857999971, 49.884441053000081 ], [ -119.477033322999958, 49.883591661000061 ], [ -119.478267070999976, 49.883616520000061 ], [ -119.479249795999976, 49.883636306000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "537461653", "BldgCostT": "364837308", "sL_LossRatio": "0.967255273772614", "sL_AssetLoss": "23216.933155", "sL_BldgLoss": "22456.701035", "sL_StrLoss": "21916.800835", "sL_NStrLoss": "539.9002", "sL_ContLoss": "760.23212", "geom_point": "0101000020E61000003E01F314E2DE5DC0489B1ED2F7F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.477051014999972, 49.882148776000079 ], [ -119.477078717999987, 49.881202251000076 ], [ -119.479894157999965, 49.881219573000124 ], [ -119.482755483999966, 49.881238690000018 ], [ -119.482756876999971, 49.881688442000062 ], [ -119.488470221999975, 49.881723103000049 ], [ -119.488575271999977, 49.881721223000042 ], [ -119.488567602999964, 49.882636430000083 ], [ -119.488588141, 49.883559634 ], [ -119.488589426999937, 49.883726757000034 ], [ -119.488470413999977, 49.883728672000132 ], [ -119.48276196399999, 49.88370697800007 ], [ -119.479249795999976, 49.883636306000064 ], [ -119.478267070999976, 49.883616520000061 ], [ -119.477033322999958, 49.883591661000061 ], [ -119.477033020999926, 49.883530020000137 ], [ -119.477032716999986, 49.883468807000092 ], [ -119.477051014999972, 49.882148776000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "215664084", "BldgCostT": "133823334", "sL_LossRatio": "0.995480403810028", "sL_AssetLoss": "25154.46297", "sL_BldgLoss": "25040.774955", "sL_StrLoss": "24965.999135", "sL_NStrLoss": "74.77582", "sL_ContLoss": "113.688015", "geom_point": "0101000020E6100000C325F9D713DF5DC02F1E62AC84F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482777865999935, 49.876308606000073 ], [ -119.48822889199991, 49.876316802000062 ], [ -119.488220191999943, 49.87723920100008 ], [ -119.48821570599992, 49.878141931000059 ], [ -119.488379744999946, 49.878488715000074 ], [ -119.488463645999971, 49.878666018000075 ], [ -119.488476122999913, 49.878842853000023 ], [ -119.48848737499999, 49.879860309000058 ], [ -119.488527120999933, 49.880570637000048 ], [ -119.488572066999936, 49.880637426000128 ], [ -119.488572661999939, 49.880822083000105 ], [ -119.488572833999939, 49.880876779000083 ], [ -119.488575271999977, 49.881721223000042 ], [ -119.488470221999975, 49.881723103000049 ], [ -119.482756876999971, 49.881688442000062 ], [ -119.482755483999966, 49.881238690000018 ], [ -119.48275208699999, 49.880773404000131 ], [ -119.482755195999985, 49.879841682000077 ], [ -119.482762132999966, 49.878654361000066 ], [ -119.48276303399993, 49.878501280000087 ], [ -119.482763544999941, 49.878411441000047 ], [ -119.482764762999935, 49.878204460000077 ], [ -119.482765714999957, 49.878042755000095 ], [ -119.482770512999963, 49.877221104000014 ], [ -119.482777865999935, 49.876308606000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "634668478", "BldgCostT": "433964857", "sL_LossRatio": "0.962631512112756", "sL_AssetLoss": "16418.155368", "sL_BldgLoss": "15804.633728", "sL_StrLoss": "14865.742108", "sL_NStrLoss": "938.89162", "sL_ContLoss": "613.52164", "geom_point": "0101000020E61000002B6E695672DF5DC020340E37D8F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488567602999964, 49.882636430000083 ], [ -119.488575271999977, 49.881721223000042 ], [ -119.488572833999939, 49.880876779000083 ], [ -119.488572661999939, 49.880822083000105 ], [ -119.488572066999936, 49.880637426000128 ], [ -119.488527120999933, 49.880570637000048 ], [ -119.48848737499999, 49.879860309000058 ], [ -119.492115004999945, 49.879873390000043 ], [ -119.49242419899997, 49.879840288 ], [ -119.492536660999974, 49.879800838000065 ], [ -119.492672803999952, 49.879753097000027 ], [ -119.492738254999963, 49.879716205000086 ], [ -119.493303197999964, 49.879397813000061 ], [ -119.49472028699995, 49.880461990000072 ], [ -119.494875198999964, 49.880620198000067 ], [ -119.494939792999944, 49.880686411000049 ], [ -119.495041793999988, 49.880980491000024 ], [ -119.495045020999896, 49.881908098000046 ], [ -119.49355418199994, 49.88189802100009 ], [ -119.493529971999934, 49.881897863000049 ], [ -119.493505495999941, 49.881897699000035 ], [ -119.493477985999974, 49.8818975350001 ], [ -119.492913698999985, 49.881893995000041 ], [ -119.491638395999985, 49.881887015000046 ], [ -119.491498808999921, 49.881886237000089 ], [ -119.491415420999914, 49.881885774000104 ], [ -119.491244112999979, 49.881884843000137 ], [ -119.491212584999943, 49.882722753000088 ], [ -119.493494206999955, 49.88274132 ], [ -119.49348609399999, 49.883562541000074 ], [ -119.493498686999956, 49.883689713000074 ], [ -119.489894976999921, 49.883732343000119 ], [ -119.488589426999937, 49.883726757000034 ], [ -119.488588141, 49.883559634 ], [ -119.488567602999964, 49.882636430000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182586416", "BldgCostT": "115796666", "sL_LossRatio": "0.918156078600506", "sL_AssetLoss": "12947.54408", "sL_BldgLoss": "11887.8663", "sL_StrLoss": "11366.8326", "sL_NStrLoss": "521.0337", "sL_ContLoss": "1059.67778", "geom_point": "0101000020E610000095DA0FA15FDF5DC0F38B54106AF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48822889199991, 49.876316802000062 ], [ -119.491241877999954, 49.876317701000133 ], [ -119.491393700999964, 49.877241495000078 ], [ -119.491533791999956, 49.877924395000065 ], [ -119.491670989999989, 49.878167291000054 ], [ -119.491864513999971, 49.878318808000088 ], [ -119.49323213400001, 49.879344508000045 ], [ -119.493303197999964, 49.879397813000061 ], [ -119.492738254999963, 49.879716205000086 ], [ -119.492672803999952, 49.879753097000027 ], [ -119.492536660999974, 49.879800838000065 ], [ -119.49242419899997, 49.879840288 ], [ -119.492115004999945, 49.879873390000043 ], [ -119.48848737499999, 49.879860309000058 ], [ -119.488476122999913, 49.878842853000023 ], [ -119.488463645999971, 49.878666018000075 ], [ -119.488379744999946, 49.878488715000074 ], [ -119.48821570599992, 49.878141931000059 ], [ -119.488220191999943, 49.87723920100008 ], [ -119.48822889199991, 49.876316802000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "402327083", "BldgCostT": "273758333", "sL_LossRatio": "0.950178242370337", "sL_AssetLoss": "7172.43323", "sL_BldgLoss": "6815.09", "sL_StrLoss": "6427.7786", "sL_NStrLoss": "387.3114", "sL_ContLoss": "357.34323", "geom_point": "0101000020E610000070992E1FA4DF5DC0B53E30708EF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.493303197999964, 49.879397813000061 ], [ -119.49323213400001, 49.879344508000045 ], [ -119.491864513999971, 49.878318808000088 ], [ -119.491670989999989, 49.878167291000054 ], [ -119.491885793, 49.878071793000061 ], [ -119.492204607999938, 49.87805009400013 ], [ -119.49299589899999, 49.878055693000064 ], [ -119.493763981999962, 49.878057190000028 ], [ -119.4946083, 49.878719799000045 ], [ -119.495885603999938, 49.87963749400005 ], [ -119.496086694999946, 49.879697304000103 ], [ -119.496698491999922, 49.879697598000085 ], [ -119.496701687999959, 49.880302805000056 ], [ -119.496618776999952, 49.880619308000128 ], [ -119.494875198999964, 49.880620198000067 ], [ -119.49472028699995, 49.880461990000072 ], [ -119.493303197999964, 49.879397813000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019779", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "504224061", "BldgCostT": "349088190", "sL_LossRatio": "0.883529771433339", "sL_AssetLoss": "4798.82891", "sL_BldgLoss": "4239.90821", "sL_StrLoss": "3770.29921", "sL_NStrLoss": "469.609", "sL_ContLoss": "558.9207", "geom_point": "0101000020E61000002CE185849ADF5DC021139D23FAF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.49348609399999, 49.883562541000074 ], [ -119.493494206999955, 49.88274132 ], [ -119.491212584999943, 49.882722753000088 ], [ -119.491244112999979, 49.881884843000137 ], [ -119.491415420999914, 49.881885774000104 ], [ -119.491498808999921, 49.881886237000089 ], [ -119.491638395999985, 49.881887015000046 ], [ -119.492913698999985, 49.881893995000041 ], [ -119.493477985999974, 49.8818975350001 ], [ -119.493505495999941, 49.881897699000035 ], [ -119.493529971999934, 49.881897863000049 ], [ -119.49355418199994, 49.88189802100009 ], [ -119.495045020999896, 49.881908098000046 ], [ -119.495043056999975, 49.882019948000078 ], [ -119.495126548999906, 49.882100781000076 ], [ -119.495216268999982, 49.882274984000084 ], [ -119.495378262999949, 49.882442125000068 ], [ -119.495519491999943, 49.882587818000083 ], [ -119.495599927999976, 49.882670761000021 ], [ -119.496308997, 49.883508532000114 ], [ -119.496146258999943, 49.883513308000026 ], [ -119.495347672999969, 49.883528953000024 ], [ -119.495038860999969, 49.883534526000155 ], [ -119.493616670999955, 49.8835601930001 ], [ -119.49348609399999, 49.883562541000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "194080668", "BldgCostT": "134056668", "sL_LossRatio": "0.995830611649271", "sL_AssetLoss": "5756.24", "sL_BldgLoss": "5732.24", "sL_StrLoss": "5723.5", "sL_NStrLoss": "8.74", "sL_ContLoss": "24", "geom_point": "0101000020E610000073C4C661D5DF5DC09F3B4DA8D8F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.496700802999939, 49.8788190980001 ], [ -119.497630212999979, 49.878815787000065 ], [ -119.497822196999934, 49.87900779500012 ], [ -119.498647007999949, 49.879847002000105 ], [ -119.499139918999958, 49.880348603000115 ], [ -119.499347902999943, 49.880614804000061 ], [ -119.499412308999979, 49.880691698000042 ], [ -119.49941979799999, 49.882649914000098 ], [ -119.499421854999966, 49.882880263000104 ], [ -119.499422051, 49.882981326000056 ], [ -119.499422492999898, 49.883297481000085 ], [ -119.499424301999937, 49.883549528000067 ], [ -119.499422959999919, 49.883666821000141 ], [ -119.49636813199993, 49.883603260000044 ], [ -119.496210317999925, 49.883602894000084 ], [ -119.495039617999922, 49.883631610000108 ], [ -119.493498686999956, 49.883689713000074 ], [ -119.49348609399999, 49.883562541000074 ], [ -119.493616670999955, 49.8835601930001 ], [ -119.495038860999969, 49.883534526000155 ], [ -119.495347672999969, 49.883528953000024 ], [ -119.496146258999943, 49.883513308000026 ], [ -119.496308997, 49.883508532000114 ], [ -119.495599927999976, 49.882670761000021 ], [ -119.495519491999943, 49.882587818000083 ], [ -119.495378262999949, 49.882442125000068 ], [ -119.495216268999982, 49.882274984000084 ], [ -119.495126548999906, 49.882100781000076 ], [ -119.495043056999975, 49.882019948000078 ], [ -119.495045020999896, 49.881908098000046 ], [ -119.495041793999988, 49.880980491000024 ], [ -119.494939792999944, 49.880686411000049 ], [ -119.494875198999964, 49.880620198000067 ], [ -119.496618776999952, 49.880619308000128 ], [ -119.496701687999959, 49.880302805000056 ], [ -119.496698491999922, 49.879697598000085 ], [ -119.496700802999939, 49.8788190980001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150219748", "BldgCostT": "95298937", "sL_LossRatio": "0.987383826252091", "sL_AssetLoss": "12341.301183", "sL_BldgLoss": "12185.601183", "sL_StrLoss": "12129.101183", "sL_NStrLoss": "56.5", "sL_ContLoss": "155.7", "geom_point": "0101000020E610000089D2188CD5DF5DC0CBDCDF4D75F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.499139918999958, 49.880348603000115 ], [ -119.498647007999949, 49.879847002000105 ], [ -119.497822196999934, 49.87900779500012 ], [ -119.497630212999979, 49.878815787000065 ], [ -119.496700802999939, 49.8788190980001 ], [ -119.496698491999922, 49.879697598000085 ], [ -119.496086694999946, 49.879697304000103 ], [ -119.495885603999938, 49.87963749400005 ], [ -119.4946083, 49.878719799000045 ], [ -119.493763981999962, 49.878057190000028 ], [ -119.49299589899999, 49.878055693000064 ], [ -119.492204607999938, 49.87805009400013 ], [ -119.491885793, 49.878071793000061 ], [ -119.491670989999989, 49.878167291000054 ], [ -119.491533791999956, 49.877924395000065 ], [ -119.491393700999964, 49.877241495000078 ], [ -119.491241877999954, 49.876317701000133 ], [ -119.4943997929999, 49.876311681000047 ], [ -119.496824116, 49.876307086000011 ], [ -119.496824706000027, 49.875547699000052 ], [ -119.49685608799993, 49.875454789000095 ], [ -119.497068584999965, 49.874836203000015 ], [ -119.497273169999957, 49.874527794000059 ], [ -119.497366582999987, 49.874391594 ], [ -119.497398384999954, 49.874237304000061 ], [ -119.497375197999986, 49.873665206000133 ], [ -119.498369265999926, 49.873577024 ], [ -119.498373728999923, 49.873663501000067 ], [ -119.498501022999932, 49.873658260000056 ], [ -119.498483812999936, 49.874255283000117 ], [ -119.498281488999964, 49.874927898000095 ], [ -119.497769893999958, 49.875551709000042 ], [ -119.497541896999977, 49.876518813000089 ], [ -119.498110718999968, 49.877568402000094 ], [ -119.498554900999949, 49.877800597000082 ], [ -119.499628598999948, 49.878623807000046 ], [ -119.500125395999959, 49.878845907000056 ], [ -119.500319352999924, 49.878992443000087 ], [ -119.500323441999981, 49.879071572000065 ], [ -119.500421293999977, 49.879069460000082 ], [ -119.500994477999896, 49.879502494000072 ], [ -119.502631384000011, 49.880456693000042 ], [ -119.503367702999938, 49.880414009000098 ], [ -119.50373348199993, 49.880406153000081 ], [ -119.503733596999908, 49.880408367000044 ], [ -119.503794272999968, 49.88040484600004 ], [ -119.503872673999979, 49.880403162000093 ], [ -119.504118223999967, 49.880450361000079 ], [ -119.504232626999936, 49.880529443000064 ], [ -119.502947469999981, 49.88076574200003 ], [ -119.502719717999952, 49.880864156000058 ], [ -119.502008392000036, 49.881277855000029 ], [ -119.501702699999967, 49.881491721000039 ], [ -119.501397362999967, 49.881869992000112 ], [ -119.501111226999967, 49.882643068000057 ], [ -119.500894568999982, 49.882996790000085 ], [ -119.500622863999979, 49.883227140000052 ], [ -119.500229237999932, 49.883440314000062 ], [ -119.499855590999942, 49.883542680000112 ], [ -119.499424301999937, 49.883549528000067 ], [ -119.499422492999898, 49.883297481000085 ], [ -119.499422051, 49.882981326000056 ], [ -119.499421854999966, 49.882880263000104 ], [ -119.49941979799999, 49.882649914000098 ], [ -119.499412308999979, 49.880691698000042 ], [ -119.499347902999943, 49.880614804000061 ], [ -119.499139918999958, 49.880348603000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98113167", "BldgCostT": "65246667", "sL_LossRatio": "0.999734502345155", "sL_AssetLoss": "13991.1217", "sL_BldgLoss": "13987.40709", "sL_StrLoss": "13965.64599", "sL_NStrLoss": "21.7611", "sL_ContLoss": "3.71461", "geom_point": "0101000020E6100000AF9F7A7B82DF5DC0F1DCEF0EF8EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488227840999969, 49.874562202000078 ], [ -119.488210244999905, 49.872708170000081 ], [ -119.488373732999918, 49.872678171000032 ], [ -119.489854313999942, 49.872658999000109 ], [ -119.490217882999929, 49.872656295000134 ], [ -119.491220706999968, 49.87280366900012 ], [ -119.491221480999926, 49.872889519000097 ], [ -119.491228193999987, 49.873603296000105 ], [ -119.492002158999981, 49.873605093000073 ], [ -119.492012184999922, 49.873605099000017 ], [ -119.494379313999943, 49.873591778000026 ], [ -119.494380645999982, 49.873625359000087 ], [ -119.494384801999914, 49.873625390000043 ], [ -119.496810712999959, 49.873637005000077 ], [ -119.497094416, 49.873651179000099 ], [ -119.497261392999974, 49.873659525000086 ], [ -119.497375197999986, 49.873665206000133 ], [ -119.497398384999954, 49.874237304000061 ], [ -119.497366582999987, 49.874391594 ], [ -119.497273169999957, 49.874527794000059 ], [ -119.497068584999965, 49.874836203000015 ], [ -119.49685608799993, 49.875454789000095 ], [ -119.496824706000027, 49.875547699000052 ], [ -119.496824116, 49.876307086000011 ], [ -119.4943997929999, 49.876311681000047 ], [ -119.491241877999954, 49.876317701000133 ], [ -119.48822889199991, 49.876316802000062 ], [ -119.488231745999911, 49.875415788000048 ], [ -119.488227840999969, 49.874562202000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214794948", "BldgCostT": "145255270", "sL_LossRatio": "0.961417565598543", "sL_AssetLoss": "10062.5412684", "sL_BldgLoss": "9674.30393", "sL_StrLoss": "9521.2087", "sL_NStrLoss": "153.09523", "sL_ContLoss": "388.2373384", "geom_point": "0101000020E610000003187531B6DE5DC0A5BE036EA3F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48074241899999, 49.886284735000046 ], [ -119.482752091999927, 49.886299791000049 ], [ -119.482750430999928, 49.886750750000054 ], [ -119.482748295999954, 49.887323585000054 ], [ -119.482746874999975, 49.887856550000052 ], [ -119.48274550499994, 49.888369983000132 ], [ -119.482745882999922, 49.888802095000102 ], [ -119.482746361999915, 49.889322760000034 ], [ -119.482048527999922, 49.88931702900009 ], [ -119.479829409999965, 49.889298600000103 ], [ -119.476960609999949, 49.889308797000055 ], [ -119.476969098999959, 49.888408998000052 ], [ -119.476972319999973, 49.887917533000035 ], [ -119.47697628, 49.887313178000042 ], [ -119.47697801799994, 49.887174224000049 ], [ -119.477065757, 49.887029567000063 ], [ -119.477065802999931, 49.887026628000029 ], [ -119.47707628099991, 49.886271662000141 ], [ -119.479809824999933, 49.886277739000036 ], [ -119.48046320399996, 49.886282638000054 ], [ -119.48074241899999, 49.886284735000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "171890244", "BldgCostT": "112554076", "sL_LossRatio": "0.98757167685704", "sL_AssetLoss": "21514.648189", "sL_BldgLoss": "21247.257189", "sL_StrLoss": "21141.108189", "sL_NStrLoss": "106.149", "sL_ContLoss": "267.391", "geom_point": "0101000020E6100000628700F9B5DE5DC0B17179831AF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482048527999922, 49.88931702900009 ], [ -119.482746361999915, 49.889322760000034 ], [ -119.482746654999957, 49.889765353000037 ], [ -119.482746882999962, 49.890199586000072 ], [ -119.48275724299998, 49.890654678000026 ], [ -119.482767999, 49.89112729400005 ], [ -119.482767795999905, 49.891637513000042 ], [ -119.482765883999946, 49.892638831000063 ], [ -119.482769836999935, 49.893083772000061 ], [ -119.48277378399996, 49.893532379000099 ], [ -119.482032149999938, 49.893536252000061 ], [ -119.479906847999956, 49.893547327000135 ], [ -119.47829063399999, 49.89359171600011 ], [ -119.477558167999959, 49.893583208000095 ], [ -119.477324089999982, 49.893646888000021 ], [ -119.476993762999939, 49.89364072800003 ], [ -119.476993675999921, 49.893514305000096 ], [ -119.476995452999986, 49.893071929 ], [ -119.476995856999949, 49.892999933000112 ], [ -119.476996861999964, 49.892837218000089 ], [ -119.476994686, 49.892637529000083 ], [ -119.476986336999957, 49.892100459000119 ], [ -119.47697879, 49.891615307000073 ], [ -119.476976409999935, 49.891479433000072 ], [ -119.476970396999889, 49.89113620800002 ], [ -119.476969801999942, 49.890974513000074 ], [ -119.476963808999983, 49.890579836000065 ], [ -119.476957681999949, 49.890179090000025 ], [ -119.476959191, 49.889734384000036 ], [ -119.476960609999949, 49.889308797000055 ], [ -119.479829409999965, 49.889298600000103 ], [ -119.482048527999922, 49.88931702900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "118045978", "BldgCostT": "75989857", "sL_LossRatio": "0.980631595586101", "sL_AssetLoss": "11306.9033938", "sL_BldgLoss": "11087.9067162", "sL_StrLoss": "11008.0167162", "sL_NStrLoss": "79.89", "sL_ContLoss": "218.9966776", "geom_point": "0101000020E6100000A327458E61DE5DC0DC75359AD8F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.475354708999959, 49.891467912000074 ], [ -119.475361199999952, 49.890956092000131 ], [ -119.47450620799998, 49.890954696000072 ], [ -119.473310893999979, 49.891001195000101 ], [ -119.470890614999917, 49.891095300000117 ], [ -119.470819805999909, 49.891082099000059 ], [ -119.470808968999989, 49.889693493000046 ], [ -119.47080319, 49.889323798000078 ], [ -119.472073184999942, 49.889305803000113 ], [ -119.472092322999956, 49.887951509000089 ], [ -119.47215230099999, 49.887922585000091 ], [ -119.472320183999983, 49.887920889000085 ], [ -119.473150223999966, 49.888096909000055 ], [ -119.473265606, 49.888198600000052 ], [ -119.473294202999966, 49.889297485000021 ], [ -119.474512004999937, 49.889302502000128 ], [ -119.474537987999952, 49.887294003000093 ], [ -119.473943189999943, 49.887290890000067 ], [ -119.473952060000016, 49.886262035000058 ], [ -119.47693661699995, 49.886271449000084 ], [ -119.47707628099991, 49.886271662000141 ], [ -119.477065802999931, 49.887026628000029 ], [ -119.477065757, 49.887029567000063 ], [ -119.47697801799994, 49.887174224000049 ], [ -119.47697628, 49.887313178000042 ], [ -119.476972319999973, 49.887917533000035 ], [ -119.476969098999959, 49.888408998000052 ], [ -119.476960609999949, 49.889308797000055 ], [ -119.476959191, 49.889734384000036 ], [ -119.476957681999949, 49.890179090000025 ], [ -119.476963808999983, 49.890579836000065 ], [ -119.476969801999942, 49.890974513000074 ], [ -119.476970396999889, 49.89113620800002 ], [ -119.476976409999935, 49.891479433000072 ], [ -119.47697879, 49.891615307000073 ], [ -119.476986336999957, 49.892100459000119 ], [ -119.476994686, 49.892637529000083 ], [ -119.476996861999964, 49.892837218000089 ], [ -119.475337734999982, 49.892810384000079 ], [ -119.475354708999959, 49.891467912000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161612052", "BldgCostT": "104748745", "sL_LossRatio": "0.999960897404593", "sL_AssetLoss": "17747.4153", "sL_BldgLoss": "17746.72133", "sL_StrLoss": "17743.08228", "sL_NStrLoss": "3.63905", "sL_ContLoss": "0.69397", "geom_point": "0101000020E6100000E128488514DF5DC0EBF9603A29F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48773678799995, 49.89020694800007 ], [ -119.488474793999927, 49.890207991000025 ], [ -119.488473989999974, 49.891163299000084 ], [ -119.488473312999957, 49.891657204000133 ], [ -119.488470193999945, 49.891738316000087 ], [ -119.488472179999945, 49.892644096000076 ], [ -119.4884846, 49.893594798000031 ], [ -119.48774181899995, 49.893586700000043 ], [ -119.483479305999978, 49.893540141000123 ], [ -119.48277378399996, 49.893532379000099 ], [ -119.482769836999935, 49.893083772000061 ], [ -119.482765883999946, 49.892638831000063 ], [ -119.482767795999905, 49.891637513000042 ], [ -119.482767999, 49.89112729400005 ], [ -119.48275724299998, 49.890654678000026 ], [ -119.482746882999962, 49.890199586000072 ], [ -119.483598882999942, 49.890200867000047 ], [ -119.48773678799995, 49.89020694800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "853128496", "BldgCostT": "555100468", "sL_LossRatio": "0.981748255950528", "sL_AssetLoss": "36610.2", "sL_BldgLoss": "35942", "sL_StrLoss": "35700.2", "sL_NStrLoss": "241.8", "sL_ContLoss": "668.2", "geom_point": "0101000020E6100000BA28BA6827DF5DC07A4E475BF0F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.491814286, 49.893558390000081 ], [ -119.493526385999942, 49.893586388000074 ], [ -119.493520102999952, 49.894131204000075 ], [ -119.493504922999975, 49.895451597000104 ], [ -119.493500268999981, 49.896140294000126 ], [ -119.493531790999938, 49.897565237000045 ], [ -119.493531802999925, 49.897594102000042 ], [ -119.493531832999963, 49.897630035000098 ], [ -119.493532613999975, 49.899029024000029 ], [ -119.493534426999972, 49.899491471000061 ], [ -119.49353598499998, 49.899887111000041 ], [ -119.493536646999971, 49.900003917000099 ], [ -119.493538831999942, 49.900408575 ], [ -119.493539533999936, 49.900543384000038 ], [ -119.493541018999949, 49.900812012000102 ], [ -119.49353489399995, 49.900952504000017 ], [ -119.493439375999941, 49.901293952000103 ], [ -119.493326716999917, 49.901696795000092 ], [ -119.493161555999961, 49.902220583 ], [ -119.493038293999959, 49.902611488000083 ], [ -119.493601037999937, 49.903088576000151 ], [ -119.493595289999988, 49.903095892000074 ], [ -119.493625573, 49.903540410000083 ], [ -119.493559403999939, 49.903779588000134 ], [ -119.493768969999948, 49.904501099000086 ], [ -119.493494593999984, 49.904484880000084 ], [ -119.492711888999949, 49.904438656000082 ], [ -119.490939737999923, 49.904436937000057 ], [ -119.489954962999946, 49.904432446000037 ], [ -119.489630896999984, 49.904352655000082 ], [ -119.488997776999923, 49.903988777000102 ], [ -119.488614264999967, 49.903768364000058 ], [ -119.488463464999938, 49.903630219000028 ], [ -119.488451074999958, 49.903521133000062 ], [ -119.488043442999967, 49.903458928000106 ], [ -119.487005202999953, 49.902879631000069 ], [ -119.486506456999962, 49.902623244000033 ], [ -119.48624124699991, 49.902552356000108 ], [ -119.485792724999982, 49.902512081000083 ], [ -119.485597287999951, 49.90246160300007 ], [ -119.485430457999925, 49.902396562000042 ], [ -119.48437719499999, 49.90166106300002 ], [ -119.48424849499996, 49.901571191000158 ], [ -119.484161706999885, 49.901512122000085 ], [ -119.48370323899999, 49.901200142000057 ], [ -119.483560622999931, 49.901103074000076 ], [ -119.482765106999977, 49.899872686000066 ], [ -119.481508548999926, 49.899556 ], [ -119.479915181999957, 49.898378032000096 ], [ -119.479867405999954, 49.898144916000057 ], [ -119.479330582000031, 49.898037889000186 ], [ -119.479015090999937, 49.897879095000071 ], [ -119.47718819100001, 49.896532003000097 ], [ -119.477058213999896, 49.89636620700005 ], [ -119.477003715999956, 49.896043292000051 ], [ -119.477004195999939, 49.895668601000146 ], [ -119.477002566999928, 49.894800706000062 ], [ -119.476993685999943, 49.894276433000101 ], [ -119.476993717999974, 49.893817956000106 ], [ -119.476993741999962, 49.89380885900006 ], [ -119.476993727999925, 49.893790823000089 ], [ -119.476993739999955, 49.893779258000116 ], [ -119.47699374699999, 49.893667182000115 ], [ -119.476993762999939, 49.89364072800003 ], [ -119.477324089999982, 49.893646888000021 ], [ -119.477558167999959, 49.893583208000095 ], [ -119.47829063399999, 49.89359171600011 ], [ -119.479906847999956, 49.893547327000135 ], [ -119.482032149999938, 49.893536252000061 ], [ -119.48277378399996, 49.893532379000099 ], [ -119.483479305999978, 49.893540141000123 ], [ -119.48774181899995, 49.893586700000043 ], [ -119.4884846, 49.893594798000031 ], [ -119.48914907399994, 49.893587544000063 ], [ -119.490583299999983, 49.893571848000043 ], [ -119.491814286, 49.893558390000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "247122917", "BldgCostT": "161941667", "sL_LossRatio": "0.997661568243169", "sL_AssetLoss": "18944.320214", "sL_BldgLoss": "18900.020214", "sL_StrLoss": "18884.000214", "sL_NStrLoss": "16.02", "sL_ContLoss": "44.3", "geom_point": "0101000020E6100000FD6C15ABE3DE5DC0FFF28FDFD7F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.491211009999944, 49.910269917000065 ], [ -119.49126678199994, 49.909879200000084 ], [ -119.488118011999916, 49.909691626000082 ], [ -119.488368856999955, 49.907935092000081 ], [ -119.488026708999939, 49.907942436000049 ], [ -119.488012832999942, 49.907672866000027 ], [ -119.485925787999946, 49.907717651000063 ], [ -119.485911925, 49.907448078000037 ], [ -119.48424229499993, 49.907483879000033 ], [ -119.484186881999932, 49.906405591000073 ], [ -119.486691271, 49.906351883000099 ], [ -119.486705136999916, 49.906621455000078 ], [ -119.487122536999934, 49.906612498000115 ], [ -119.487067059999944, 49.905534212000063 ], [ -119.486649668999931, 49.905543168000108 ], [ -119.486621937999971, 49.905004025000025 ], [ -119.486204550999958, 49.905012979000084 ], [ -119.486190686999961, 49.904743408000115 ], [ -119.484521151999971, 49.90477921100014 ], [ -119.484510664999959, 49.904575156000128 ], [ -119.484507298999958, 49.904509639000054 ], [ -119.483691950999955, 49.904527115000064 ], [ -119.483672532999918, 49.904527532000017 ], [ -119.483672452999897, 49.904525971000083 ], [ -119.483658682999959, 49.904257959000049 ], [ -119.482406541999922, 49.904284786000105 ], [ -119.48239270099999, 49.904015214000019 ], [ -119.481975321999968, 49.904024153000101 ], [ -119.481961481999946, 49.90375458000004 ], [ -119.481544105999916, 49.903763518000041 ], [ -119.481530268999961, 49.9034939450001 ], [ -119.480695519999955, 49.903511815000044 ], [ -119.480681687999919, 49.903242243000058 ], [ -119.480264314999943, 49.903251176 ], [ -119.480250484999956, 49.902981603000036 ], [ -119.479833115999895, 49.902990534000033 ], [ -119.479819287999987, 49.902720961000099 ], [ -119.479401920999976, 49.902729891000028 ], [ -119.479374271, 49.902190744000059 ], [ -119.478956907999986, 49.902199672000108 ], [ -119.478943086999919, 49.901930099000047 ], [ -119.478525722999962, 49.901939026000086 ], [ -119.478498085999945, 49.901399879000067 ], [ -119.478080727999924, 49.901408804 ], [ -119.478066912999964, 49.90113923100013 ], [ -119.477649555999932, 49.901148153000037 ], [ -119.477663370999949, 49.901417727000087 ], [ -119.477246013999931, 49.901426650000076 ], [ -119.477273636999911, 49.901965797000109 ], [ -119.476856273999914, 49.901974718000062 ], [ -119.476933737999943, 49.903486759000081 ], [ -119.476952947999919, 49.90386173300007 ], [ -119.476276818999935, 49.903876183000079 ], [ -119.47631078299996, 49.903350555000074 ], [ -119.47615426099999, 49.903194003000038 ], [ -119.475914003999918, 49.902362450000105 ], [ -119.475828198999963, 49.902248961000069 ], [ -119.47570012199999, 49.902167278000036 ], [ -119.475628342999983, 49.902142091000023 ], [ -119.475147771999957, 49.901973556000073 ], [ -119.475019800999974, 49.901900901000054 ], [ -119.474946307999971, 49.90179898400006 ], [ -119.474958295999912, 49.901637153000074 ], [ -119.474721623999955, 49.901600511000034 ], [ -119.474323060999922, 49.90153875700004 ], [ -119.474199390999942, 49.901519590000071 ], [ -119.473904115, 49.901531769000051 ], [ -119.473738530999938, 49.901571996000037 ], [ -119.472453857999952, 49.901884093000042 ], [ -119.472272163999932, 49.901928230000053 ], [ -119.472018257999963, 49.901511375000069 ], [ -119.472008461, 49.901495274000119 ], [ -119.471448208999945, 49.901142145000065 ], [ -119.471148365999966, 49.901010460000059 ], [ -119.470886147999977, 49.90096767900009 ], [ -119.470646229999943, 49.900964188000017 ], [ -119.470457847999953, 49.90096197300003 ], [ -119.470184826999954, 49.901004354000101 ], [ -119.46997131399992, 49.901080085000046 ], [ -119.469808937999929, 49.901169712000055 ], [ -119.469159705999942, 49.901701595000091 ], [ -119.468557946999951, 49.901931115000096 ], [ -119.468359597999921, 49.902037556000053 ], [ -119.468160503999954, 49.902188196000097 ], [ -119.46800697899999, 49.90236232300002 ], [ -119.467924067999931, 49.902521708000101 ], [ -119.467890339999926, 49.902675407000061 ], [ -119.467855615999923, 49.902833663000074 ], [ -119.46775707099999, 49.903033663000059 ], [ -119.46768654899995, 49.903116216000129 ], [ -119.467587475999935, 49.903232115000087 ], [ -119.467358597, 49.903395444000111 ], [ -119.467092158999947, 49.903518565000077 ], [ -119.466790399999937, 49.903605269000053 ], [ -119.466021713999936, 49.903653228000032 ], [ -119.465586920999968, 49.903684347000137 ], [ -119.465431536, 49.903695453000054 ], [ -119.464880567999955, 49.903734889000113 ], [ -119.464376643999955, 49.903792260000017 ], [ -119.464086169999987, 49.903825353000052 ], [ -119.463696596999938, 49.903869720000081 ], [ -119.463415294999947, 49.90390174100002 ], [ -119.463357316999947, 49.903908352000059 ], [ -119.463340573999943, 49.903794820000101 ], [ -119.463309141999943, 49.903581285 ], [ -119.463326351999967, 49.903500800000138 ], [ -119.463415121, 49.903085542000049 ], [ -119.463649824999962, 49.902676976000095 ], [ -119.464039726999886, 49.902316535000125 ], [ -119.464783515999969, 49.901801066000054 ], [ -119.465323106999975, 49.901427064000131 ], [ -119.465532644999897, 49.901141141000096 ], [ -119.465546163999932, 49.901406278000081 ], [ -119.46596352499995, 49.901397398000029 ], [ -119.465949777, 49.90112782200007 ], [ -119.467201851999945, 49.901101174000082 ], [ -119.467215606999957, 49.901370749000073 ], [ -119.467632967999961, 49.901361864000087 ], [ -119.467646726999973, 49.901631440000088 ], [ -119.468064089999984, 49.901622552000049 ], [ -119.468050327999947, 49.901352976000041 ], [ -119.468467688999965, 49.901344088000045 ], [ -119.468385114999975, 49.899726634000118 ], [ -119.467967768999983, 49.89973552200005 ], [ -119.467954009999971, 49.899465946000092 ], [ -119.467536664999969, 49.899474833000099 ], [ -119.4675641799999, 49.900013986000069 ], [ -119.46672948199992, 49.900031754000075 ], [ -119.466743233999964, 49.90030133000009 ], [ -119.466557058999967, 49.900305293 ], [ -119.466562723999985, 49.90044236100006 ], [ -119.466332705999932, 49.900443984000077 ], [ -119.466353384999962, 49.900849365000063 ], [ -119.465659423999981, 49.900864131000098 ], [ -119.465664485000019, 49.900852055000044 ], [ -119.465670260999929, 49.900838281000112 ], [ -119.465687740999954, 49.900059148 ], [ -119.465707937999952, 49.899160943000012 ], [ -119.46571249499999, 49.898397274000146 ], [ -119.467776800999985, 49.898426797000091 ], [ -119.467749297999944, 49.89772080700007 ], [ -119.465725257999921, 49.897644924000069 ], [ -119.465723882999896, 49.89690345700005 ], [ -119.465720335999947, 49.896459863000082 ], [ -119.467117017999925, 49.896475694000081 ], [ -119.468327194, 49.896486600000102 ], [ -119.46949483199991, 49.89650133300011 ], [ -119.470854819999914, 49.896529345000076 ], [ -119.471534478999942, 49.896565432000024 ], [ -119.472188954999936, 49.89658198200005 ], [ -119.47406930799994, 49.896616652 ], [ -119.474402835999967, 49.896610394000028 ], [ -119.474958421999972, 49.896634547000097 ], [ -119.475833782999985, 49.89694172400003 ], [ -119.47674163, 49.897260249000041 ], [ -119.476782965999973, 49.897299832000058 ], [ -119.47696291699999, 49.897472142000069 ], [ -119.477058213999896, 49.89636620700005 ], [ -119.47718819100001, 49.896532003000097 ], [ -119.479015090999937, 49.897879095000071 ], [ -119.479330582000031, 49.898037889000186 ], [ -119.479867405999954, 49.898144916000057 ], [ -119.479915181999957, 49.898378032000096 ], [ -119.481508548999926, 49.899556 ], [ -119.482765106999977, 49.899872686000066 ], [ -119.483560622999931, 49.901103074000076 ], [ -119.48370323899999, 49.901200142000057 ], [ -119.484161706999885, 49.901512122000085 ], [ -119.48424849499996, 49.901571191000158 ], [ -119.48437719499999, 49.90166106300002 ], [ -119.485430457999925, 49.902396562000042 ], [ -119.485597287999951, 49.90246160300007 ], [ -119.485792724999982, 49.902512081000083 ], [ -119.48624124699991, 49.902552356000108 ], [ -119.486506456999962, 49.902623244000033 ], [ -119.487005202999953, 49.902879631000069 ], [ -119.488043442999967, 49.903458928000106 ], [ -119.488451074999958, 49.903521133000062 ], [ -119.488463464999938, 49.903630219000028 ], [ -119.488614264999967, 49.903768364000058 ], [ -119.488997776999923, 49.903988777000102 ], [ -119.489630896999984, 49.904352655000082 ], [ -119.489954962999946, 49.904432446000037 ], [ -119.490939737999923, 49.904436937000057 ], [ -119.492711888999949, 49.904438656000082 ], [ -119.493494593999984, 49.904484880000084 ], [ -119.493768969999948, 49.904501099000086 ], [ -119.49379851099998, 49.904602804000021 ], [ -119.49444599899995, 49.905838987000038 ], [ -119.495543313, 49.907102198000068 ], [ -119.49614138799997, 49.907646289000091 ], [ -119.496372492999953, 49.907802996000093 ], [ -119.496924105999966, 49.907980995000038 ], [ -119.497705778999929, 49.908539295000075 ], [ -119.497829395999986, 49.909022105000112 ], [ -119.49748621399999, 49.909399506000106 ], [ -119.497390997999958, 49.90999479700011 ], [ -119.497582096999921, 49.910440597000139 ], [ -119.497469693999918, 49.91070409600011 ], [ -119.49683610299995, 49.911121390000091 ], [ -119.496600307999969, 49.911387700000049 ], [ -119.49590729, 49.911762292000098 ], [ -119.495620816999946, 49.912119704000141 ], [ -119.494940916999937, 49.912448697000031 ], [ -119.494195317, 49.913139505000125 ], [ -119.493082511999916, 49.913703490000074 ], [ -119.492925118999935, 49.913887196000125 ], [ -119.492303006999961, 49.913972586000106 ], [ -119.491097611999948, 49.914367104000029 ], [ -119.490569874999935, 49.914693293 ], [ -119.48978238699999, 49.915609007000029 ], [ -119.48925228899995, 49.915882499000126 ], [ -119.488384204999974, 49.916053396000059 ], [ -119.488112599999951, 49.916175904000085 ], [ -119.488052492999955, 49.916366687000021 ], [ -119.488238395999943, 49.916739890000052 ], [ -119.488192080999951, 49.916912195000116 ], [ -119.487662303999969, 49.917202711000115 ], [ -119.487268682999954, 49.917642791000091 ], [ -119.486122181999946, 49.918404800000111 ], [ -119.485960749999961, 49.918486971000121 ], [ -119.484852417999917, 49.918420917000049 ], [ -119.485364199999978, 49.914839548000039 ], [ -119.486379601999928, 49.914900064000086 ], [ -119.486586922999905, 49.913448871000099 ], [ -119.487016606999958, 49.913474477000058 ], [ -119.487057318999973, 49.913189481000131 ], [ -119.487325060999964, 49.913205436000034 ], [ -119.487366719999969, 49.912913788000012 ], [ -119.487578698000021, 49.91292642000009 ], [ -119.487619123999949, 49.912643393000124 ], [ -119.487857853999969, 49.912657618000097 ], [ -119.48788512199998, 49.912466699000085 ], [ -119.488150375999922, 49.912482503000028 ], [ -119.488209229999924, 49.912070405000044 ], [ -119.488824655999935, 49.912107071000065 ], [ -119.488871317999937, 49.911780320000027 ], [ -119.48925254599996, 49.911803031000041 ], [ -119.489327025999955, 49.911281428000024 ], [ -119.48942868599994, 49.911287485000038 ], [ -119.489499944999977, 49.910788431000057 ], [ -119.489836727999915, 49.910808494000065 ], [ -119.489874442999948, 49.910544339000083 ], [ -119.490284115999941, 49.910568742000024 ], [ -119.490333939999957, 49.910219749000078 ], [ -119.49103691599997, 49.910261619000103 ], [ -119.49103720899997, 49.910259565000032 ], [ -119.491211009999944, 49.910269917000065 ] ], [ [ -119.491682792999967, 49.906292091000033 ], [ -119.49176684900003, 49.905703130000049 ], [ -119.489585279999957, 49.905750013000088 ], [ -119.489571397999967, 49.905480443000087 ], [ -119.488736619999912, 49.905498372000075 ], [ -119.488768544999914, 49.906118488000054 ], [ -119.491682792999967, 49.906292091000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44521667", "BldgCostT": "28966667", "sL_LossRatio": "1", "sL_AssetLoss": "3813.3", "sL_BldgLoss": "3813.3", "sL_StrLoss": "3813.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003EEF29ADBDDE5DC0A75F9EA516F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.475579507999925, 49.917499096000036 ], [ -119.475897798999981, 49.917229213000084 ], [ -119.475964797999936, 49.916940335000042 ], [ -119.475989106999933, 49.916835494000111 ], [ -119.476008188, 49.915517930000092 ], [ -119.476023327999968, 49.915021121000109 ], [ -119.476029990999947, 49.914008892000027 ], [ -119.475820471999896, 49.912521730000023 ], [ -119.47697757, 49.912497006000116 ], [ -119.476963754999943, 49.912227433000027 ], [ -119.477381203999968, 49.912218511000063 ], [ -119.477353568999945, 49.91167936500009 ], [ -119.477771015999934, 49.911670441000112 ], [ -119.477757195999942, 49.911400867000097 ], [ -119.479009527, 49.911374088000102 ], [ -119.479078661999935, 49.91272195200002 ], [ -119.479496115999979, 49.912713022000048 ], [ -119.479509945999951, 49.91298259500013 ], [ -119.479815196999951, 49.912976065000073 ], [ -119.479844749, 49.912769416000046 ], [ -119.485389673999975, 49.913100066000062 ], [ -119.484877913999966, 49.916681444000126 ], [ -119.479332557999925, 49.916350769000061 ], [ -119.479621635999976, 49.914329549000087 ], [ -119.479161630999954, 49.914339389000091 ], [ -119.479147801999972, 49.914069816000023 ], [ -119.478730336999888, 49.914078745000047 ], [ -119.47871650899998, 49.913809172000036 ], [ -119.478299045999947, 49.913818100000078 ], [ -119.478285220999965, 49.913548527000096 ], [ -119.47786776, 49.913557452000035 ], [ -119.477881580999934, 49.913827025000082 ], [ -119.477046650999952, 49.913844872000048 ], [ -119.47714337499994, 49.915731884000074 ], [ -119.476725891999976, 49.915740807000091 ], [ -119.476808791999972, 49.917358245000102 ], [ -119.477226286999937, 49.91734932300011 ], [ -119.47732302899999, 49.919236334000054 ], [ -119.476905516999921, 49.919245257000085 ], [ -119.476919334999934, 49.919514829 ], [ -119.476501822000017, 49.919523751000064 ], [ -119.476570907999957, 49.92087161700006 ], [ -119.476349984999956, 49.92087633600007 ], [ -119.476340061999977, 49.91932116100002 ], [ -119.476339459999934, 49.919304692000019 ], [ -119.476322856999957, 49.918849965000042 ], [ -119.476289539999954, 49.918669580000071 ], [ -119.47624220099999, 49.918613204000053 ], [ -119.476077582999949, 49.918561899000046 ], [ -119.475646012999931, 49.918500004000059 ], [ -119.475721717999988, 49.917755900000024 ], [ -119.475648905999918, 49.917571001000027 ], [ -119.475579507999925, 49.917499096000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274714621", "BldgCostT": "177434698", "sL_LossRatio": "0.972303898114606", "sL_AssetLoss": "19830.978102", "sL_BldgLoss": "19281.737312", "sL_StrLoss": "19081.921712", "sL_NStrLoss": "199.8156", "sL_ContLoss": "549.24079", "geom_point": "0101000020E61000007EF87CDE1EDE5DC08863247B84F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.475833782999985, 49.89694172400003 ], [ -119.474958421999972, 49.896634547000097 ], [ -119.474402835999967, 49.896610394000028 ], [ -119.47406930799994, 49.896616652 ], [ -119.472188954999936, 49.89658198200005 ], [ -119.471534478999942, 49.896565432000024 ], [ -119.470854819999914, 49.896529345000076 ], [ -119.46949483199991, 49.89650133300011 ], [ -119.468327194, 49.896486600000102 ], [ -119.467117017999925, 49.896475694000081 ], [ -119.465720335999947, 49.896459863000082 ], [ -119.46384649, 49.896448005000138 ], [ -119.460498406999989, 49.896424696000054 ], [ -119.460918887999966, 49.895646097000061 ], [ -119.462089014999947, 49.895643889000041 ], [ -119.463496519999978, 49.89557459800006 ], [ -119.46574327099998, 49.895616926000116 ], [ -119.465762335999941, 49.894947124000112 ], [ -119.465766070999933, 49.894726109000047 ], [ -119.465796925999911, 49.893730107000081 ], [ -119.465811078999963, 49.893270426000051 ], [ -119.465810233999889, 49.892922498000082 ], [ -119.465809905999947, 49.892790847000072 ], [ -119.465960963999947, 49.892435911000035 ], [ -119.466174299999949, 49.892251179000034 ], [ -119.466843804999954, 49.891984262000101 ], [ -119.466846393999958, 49.89198425400005 ], [ -119.467147121999986, 49.891815314000084 ], [ -119.468931899999944, 49.892165737000063 ], [ -119.470879701999962, 49.89261627000009 ], [ -119.471037015, 49.892480651000064 ], [ -119.471089870999919, 49.892435112000079 ], [ -119.473915799999972, 49.892805820000071 ], [ -119.474034985999964, 49.892806210000096 ], [ -119.474783924999912, 49.892808614000018 ], [ -119.475337734999982, 49.892810384000079 ], [ -119.476996861999964, 49.892837218000089 ], [ -119.476995856999949, 49.892999933000112 ], [ -119.476995452999986, 49.893071929 ], [ -119.476993675999921, 49.893514305000096 ], [ -119.476993762999939, 49.89364072800003 ], [ -119.47699374699999, 49.893667182000115 ], [ -119.476993739999955, 49.893779258000116 ], [ -119.476993727999925, 49.893790823000089 ], [ -119.476993741999962, 49.89380885900006 ], [ -119.476993717999974, 49.893817956000106 ], [ -119.476993685999943, 49.894276433000101 ], [ -119.477002566999928, 49.894800706000062 ], [ -119.477004195999939, 49.895668601000146 ], [ -119.477003715999956, 49.896043292000051 ], [ -119.477058213999896, 49.89636620700005 ], [ -119.47696291699999, 49.897472142000069 ], [ -119.476782965999973, 49.897299832000058 ], [ -119.47674163, 49.897260249000041 ], [ -119.475833782999985, 49.89694172400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150029584", "BldgCostT": "100728334", "sL_LossRatio": "0.986805322631896", "sL_AssetLoss": "13129.3017", "sL_BldgLoss": "12956.0648", "sL_StrLoss": "12768.7157", "sL_NStrLoss": "187.3491", "sL_ContLoss": "173.2369", "geom_point": "0101000020E6100000242278533CDF5DC0028761D1BEEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.487904884999978, 49.843002342000077 ], [ -119.487910058999901, 49.842958353000078 ], [ -119.488748503999972, 49.843036988000051 ], [ -119.489472985999967, 49.843029897000079 ], [ -119.490548712999924, 49.842871793000079 ], [ -119.491393374999944, 49.842641527000055 ], [ -119.491441913999964, 49.842628298000129 ], [ -119.492026863999968, 49.842623498000165 ], [ -119.492136689999938, 49.842622594000012 ], [ -119.4936824, 49.842881101000032 ], [ -119.493699356999954, 49.84288202900008 ], [ -119.494146715999989, 49.84329910700005 ], [ -119.49429990499999, 49.843592507000089 ], [ -119.494240497999925, 49.844034 ], [ -119.493434107999946, 49.844069585000071 ], [ -119.49296099499999, 49.844146968000111 ], [ -119.4926926199999, 49.844152743000087 ], [ -119.492678904999963, 49.844163395000081 ], [ -119.492680419999914, 49.844192858000113 ], [ -119.492606788999964, 49.844204901000111 ], [ -119.49193709799998, 49.844686309000124 ], [ -119.491377202999971, 49.844905584000088 ], [ -119.490975811999974, 49.844932694000114 ], [ -119.490414915999935, 49.845114993000024 ], [ -119.489519194999957, 49.845818502000022 ], [ -119.488449502000023, 49.847496199000055 ], [ -119.488071201999929, 49.847711290000127 ], [ -119.487807923999966, 49.847708406000095 ], [ -119.487504899999962, 49.847803910000103 ], [ -119.487093694999956, 49.848460388000021 ], [ -119.487103108999946, 49.848631299000076 ], [ -119.487334893999972, 49.849364794000074 ], [ -119.487934793999955, 49.850457213000055 ], [ -119.488300575999943, 49.851367196000055 ], [ -119.490244811, 49.853458010000082 ], [ -119.49073497699996, 49.853900193000058 ], [ -119.490673256999955, 49.853928334000038 ], [ -119.490593236999956, 49.853964517000108 ], [ -119.490555082999933, 49.853978458000057 ], [ -119.489582281999958, 49.854395291000046 ], [ -119.488005889999954, 49.855041701000125 ], [ -119.487710897999975, 49.855161402000086 ], [ -119.486757013999963, 49.855555104000118 ], [ -119.485849104999929, 49.85594878500013 ], [ -119.485345274999958, 49.856171597000092 ], [ -119.485266705999891, 49.856017893000043 ], [ -119.484982551999977, 49.855732914000036 ], [ -119.483730123999962, 49.854476799000025 ], [ -119.482648475999937, 49.853378198000016 ], [ -119.484069315999974, 49.852794797000122 ], [ -119.48527630299999, 49.852300710000073 ], [ -119.486783900999953, 49.851670555000062 ], [ -119.486936213999954, 49.851606903000103 ], [ -119.486835630999963, 49.851333507000099 ], [ -119.486595708, 49.850245516000058 ], [ -119.486301250999986, 49.849383583000062 ], [ -119.4861971699999, 49.848713635000067 ], [ -119.48633696899999, 49.847997715000083 ], [ -119.4865588279999, 49.847470034 ], [ -119.486630825999924, 49.847367003000052 ], [ -119.486746191999913, 49.847201936000083 ], [ -119.48738324499999, 49.846290190000026 ], [ -119.487631717999989, 49.845722536000018 ], [ -119.48771481599999, 49.845345518000045 ], [ -119.487835975999985, 49.843585454000085 ], [ -119.487904884999978, 49.843002342000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "204346084", "BldgCostT": "138003334", "sL_LossRatio": "0.992720605929433", "sL_AssetLoss": "25468.92615", "sL_BldgLoss": "25283.5278", "sL_StrLoss": "24996.8618", "sL_NStrLoss": "286.666", "sL_ContLoss": "185.39835", "geom_point": "0101000020E6100000E4431F4500DF5DC04F228814FFEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482243948999894, 49.841493392000132 ], [ -119.482596597999958, 49.841342198000035 ], [ -119.483368100999925, 49.84117271200008 ], [ -119.484198752999944, 49.841209029 ], [ -119.484608190999964, 49.841226905000035 ], [ -119.484865753999955, 49.84129850600003 ], [ -119.48599141699998, 49.841611407000102 ], [ -119.486289132999985, 49.8418358320001 ], [ -119.486526014999981, 49.842014391000056 ], [ -119.487184591999963, 49.84289031000003 ], [ -119.487362740999984, 49.842907016000026 ], [ -119.487910058999901, 49.842958353000078 ], [ -119.487904884999978, 49.843002342000077 ], [ -119.487835975999985, 49.843585454000085 ], [ -119.48771481599999, 49.845345518000045 ], [ -119.487631717999989, 49.845722536000018 ], [ -119.485263996999947, 49.845656617000039 ], [ -119.485080190999952, 49.845651513000085 ], [ -119.484830408999954, 49.845644267000068 ], [ -119.48310332799997, 49.845593975000064 ], [ -119.482795820999968, 49.845585368000044 ], [ -119.482533259999954, 49.845577999000106 ], [ -119.48123180499995, 49.845543927000072 ], [ -119.480136928999926, 49.845515224000053 ], [ -119.480670493999966, 49.844720005000035 ], [ -119.481511184999988, 49.84346700600004 ], [ -119.481724193999966, 49.843148288000101 ], [ -119.482061872999978, 49.842542646000034 ], [ -119.482216108000017, 49.84204885000004 ], [ -119.482243948999894, 49.841493392000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "256742918", "BldgCostT": "165756668", "sL_LossRatio": "0.98407819997273", "sL_AssetLoss": "29752.62214", "sL_BldgLoss": "29278.90684", "sL_StrLoss": "28826.56054", "sL_NStrLoss": "452.3463", "sL_ContLoss": "473.7153", "geom_point": "0101000020E6100000581BDEA410DF5DC0F9FAA42435EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.487251796999942, 49.842601205000037 ], [ -119.486913418999947, 49.841960298000089 ], [ -119.48658949299994, 49.841608608000087 ], [ -119.48610131299999, 49.841303793000087 ], [ -119.484458578999977, 49.84103319700008 ], [ -119.482638281999982, 49.841044598000039 ], [ -119.482246124999975, 49.841177501000075 ], [ -119.482244172999984, 49.840903641000068 ], [ -119.482246786999966, 49.840794322000114 ], [ -119.482253266999962, 49.84052670799999 ], [ -119.48230496599993, 49.840428632000069 ], [ -119.482303504999891, 49.839656432000055 ], [ -119.482320372999965, 49.838184783000024 ], [ -119.482320594999962, 49.838167389000049 ], [ -119.482337636999944, 49.838055222000015 ], [ -119.482480139999964, 49.837117630000058 ], [ -119.482802525999887, 49.835836449000091 ], [ -119.482750598999971, 49.835760221000129 ], [ -119.482773427999959, 49.835629730000036 ], [ -119.482789622999988, 49.835563433000097 ], [ -119.483141048999983, 49.834124449000029 ], [ -119.483176204999921, 49.833980404000101 ], [ -119.483202411000022, 49.832890199000097 ], [ -119.483221416999967, 49.832098381000073 ], [ -119.487013076999929, 49.832099050000117 ], [ -119.487328609999949, 49.832117873000122 ], [ -119.487635466, 49.832187674000082 ], [ -119.486972007999924, 49.832739575000026 ], [ -119.486718309999929, 49.833021501000061 ], [ -119.486539513999901, 49.833326007000032 ], [ -119.486480275999952, 49.833545594000093 ], [ -119.486362897999982, 49.834241106000079 ], [ -119.486413992999971, 49.834548490000046 ], [ -119.486776218999964, 49.835404590000046 ], [ -119.486809287999961, 49.835478212000154 ], [ -119.48718701199999, 49.836318052000131 ], [ -119.487331985999944, 49.836640344000081 ], [ -119.487636148, 49.837316627000071 ], [ -119.488673245999948, 49.839622178000056 ], [ -119.48867614299995, 49.839876169000078 ], [ -119.48864212099997, 49.840154073000058 ], [ -119.488377217000021, 49.841039156000051 ], [ -119.488295559999983, 49.841311889000053 ], [ -119.488783238999972, 49.841333439000095 ], [ -119.489457951999952, 49.841363196000017 ], [ -119.489741839999951, 49.841428001000054 ], [ -119.489854044999944, 49.841522287000025 ], [ -119.490167473999946, 49.842035859000113 ], [ -119.490021961999943, 49.842126519000075 ], [ -119.489660778999934, 49.842192560000058 ], [ -119.489092249999942, 49.842361838 ], [ -119.488095168999919, 49.842433277000083 ], [ -119.488008268999977, 49.842312594000092 ], [ -119.487971092999942, 49.842442113000082 ], [ -119.487945014999966, 49.842662754000138 ], [ -119.487934423999945, 49.842752229000048 ], [ -119.487550884999948, 49.8427294050001 ], [ -119.487251796999942, 49.842601205000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "143195478", "BldgCostT": "98839857", "sL_LossRatio": "0.99960008310833", "sL_AssetLoss": "12540.35552", "sL_BldgLoss": "12535.34042", "sL_StrLoss": "12461.19072", "sL_NStrLoss": "74.1497", "sL_ContLoss": "5.0151", "geom_point": "0101000020E6100000DCAD4C95FBDD5DC05F14F36297ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.464802729999946, 49.854473525000088 ], [ -119.466132569999942, 49.852751965000081 ], [ -119.468588407999945, 49.849575073000089 ], [ -119.468938885999989, 49.849121634000014 ], [ -119.469170560999927, 49.848888071000026 ], [ -119.469317707999892, 49.848932993000084 ], [ -119.469475818999967, 49.848910835000012 ], [ -119.469587277999935, 49.848834434000061 ], [ -119.471208758999921, 49.849406462000026 ], [ -119.471250983999965, 49.849418122000053 ], [ -119.473941046999954, 49.850160393000131 ], [ -119.476557297999932, 49.850882223000013 ], [ -119.474976723999944, 49.853250479000074 ], [ -119.474896212999965, 49.853371098000089 ], [ -119.474594120999953, 49.853922044000043 ], [ -119.474584605999951, 49.853939409000105 ], [ -119.474551015999978, 49.85408644400006 ], [ -119.474417767999924, 49.854647401000079 ], [ -119.474414258999971, 49.85510284300009 ], [ -119.47441144199999, 49.855472294000037 ], [ -119.474408628999981, 49.855841319000099 ], [ -119.474402324999943, 49.856660300000108 ], [ -119.474380384999918, 49.857429288000034 ], [ -119.474371994999942, 49.857830863000103 ], [ -119.474366163999917, 49.858109644000045 ], [ -119.474341994999975, 49.859266808000044 ], [ -119.47434112799999, 49.859307885000085 ], [ -119.474332870999945, 49.859703826000036 ], [ -119.474308189999959, 49.860884553000105 ], [ -119.472227650999955, 49.860882980000056 ], [ -119.472226182999947, 49.860971388000031 ], [ -119.469395182999961, 49.860977647000041 ], [ -119.468935991999899, 49.860978643000131 ], [ -119.468727480999945, 49.860979101000083 ], [ -119.467586298999947, 49.860981592000108 ], [ -119.466974230999966, 49.860982929000052 ], [ -119.465888666999945, 49.860985269 ], [ -119.465471214999951, 49.86098618700003 ], [ -119.464394694999939, 49.860988501000072 ], [ -119.464330032999925, 49.860988640000038 ], [ -119.464115633999953, 49.860989092000089 ], [ -119.463373276999931, 49.860985292000102 ], [ -119.456461956999973, 49.860975776000068 ], [ -119.456573627999944, 49.860878634000095 ], [ -119.457172892999921, 49.860419668000063 ], [ -119.457936452999945, 49.859794653000051 ], [ -119.458411611999935, 49.859405697000078 ], [ -119.459846195999958, 49.858340251000051 ], [ -119.46134034399995, 49.857531207000079 ], [ -119.462309186999917, 49.857006792000021 ], [ -119.46263811399993, 49.856750610000084 ], [ -119.462665344999934, 49.856729389000101 ], [ -119.462883740999956, 49.856559282000077 ], [ -119.463656100999913, 49.855957706000105 ], [ -119.46382083, 49.855744480000098 ], [ -119.464318291999959, 49.855100607000026 ], [ -119.464404217999984, 49.854989405000062 ], [ -119.464802729999946, 49.854473525000088 ] ], [ [ -119.470603258, 49.854431872000077 ], [ -119.470914045999905, 49.852258639000112 ], [ -119.470837341999982, 49.852254050000077 ], [ -119.470806382999982, 49.852470539000123 ], [ -119.470626205000016, 49.852459760000073 ], [ -119.470582888999985, 49.852762643000105 ], [ -119.470438880999936, 49.852754028000049 ], [ -119.470403095, 49.85300424600009 ], [ -119.470313277999978, 49.85299887300004 ], [ -119.470203427999948, 49.853766949000061 ], [ -119.468682245999958, 49.85367592900014 ], [ -119.468567293999968, 49.854479468000093 ], [ -119.469112016999986, 49.854512064000041 ], [ -119.469127215999976, 49.854405812000024 ], [ -119.470219440999955, 49.854471162000074 ], [ -119.470228268999932, 49.854409438000054 ], [ -119.470603258, 49.854431872000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "295701842", "BldgCostT": "191201793", "sL_LossRatio": "0.997570735107951", "sL_AssetLoss": "35455.5282472", "sL_BldgLoss": "35369.3973772", "sL_StrLoss": "35328.94433", "sL_NStrLoss": "40.4530472", "sL_ContLoss": "86.13087", "geom_point": "0101000020E6100000827C5DA70DDD5DC03DCFE00835EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.438448291999975, 49.874634612000108 ], [ -119.43847097199999, 49.87415620400008 ], [ -119.437138774999966, 49.874226669000052 ], [ -119.436772167999962, 49.873292496000055 ], [ -119.43735412099997, 49.872672002000051 ], [ -119.437927993999949, 49.871347497000045 ], [ -119.438091136, 49.870747220000048 ], [ -119.438232984999928, 49.870225192000085 ], [ -119.438472777999976, 49.868070394000036 ], [ -119.438680529999942, 49.867378793000093 ], [ -119.438804778999923, 49.866965196000145 ], [ -119.43967139399993, 49.865912699000013 ], [ -119.440434598999929, 49.865311708000036 ], [ -119.440710719999984, 49.865037574000077 ], [ -119.440857607999931, 49.864891742000047 ], [ -119.440769734999918, 49.865503238000038 ], [ -119.444970975999951, 49.865755577000087 ], [ -119.444921740999973, 49.866098397000059 ], [ -119.446216040999943, 49.866176103000022 ], [ -119.446164632999967, 49.865158684000079 ], [ -119.44167132599992, 49.864888843000067 ], [ -119.44167858499992, 49.86483832800009 ], [ -119.441012708999921, 49.86479832400007 ], [ -119.441014893999949, 49.864783122000105 ], [ -119.440969746999926, 49.864780408000108 ], [ -119.442236849999915, 49.86352236500003 ], [ -119.442281294999972, 49.863478229000052 ], [ -119.442488815, 49.863272201000044 ], [ -119.44275662099993, 49.862716867000103 ], [ -119.44279099, 49.862645607000083 ], [ -119.443064203999967, 49.86118150700004 ], [ -119.443212606999964, 49.860890794000092 ], [ -119.44335651099999, 49.860608896 ], [ -119.444709905999929, 49.859842712000095 ], [ -119.4455580959999, 49.859590589000042 ], [ -119.446360408999951, 49.859212653000064 ], [ -119.44641733099995, 49.859185830000087 ], [ -119.448357601999959, 49.858271787000014 ], [ -119.449393996999973, 49.857566790000071 ], [ -119.449738592999978, 49.857209312000073 ], [ -119.450948015999984, 49.856373306000087 ], [ -119.452600196999938, 49.854638587000068 ], [ -119.453668191999981, 49.854030515000026 ], [ -119.454373398999962, 49.853395304000045 ], [ -119.455957008999974, 49.852246002000058 ], [ -119.456623795999974, 49.851637243000063 ], [ -119.456126700999931, 49.855105569000088 ], [ -119.455673361999928, 49.855078388000059 ], [ -119.455731798000016, 49.856230794000112 ], [ -119.455798909999928, 49.855762610000085 ], [ -119.457460720999975, 49.855862235000068 ], [ -119.457527255999935, 49.855397949000057 ], [ -119.459229157, 49.855499951000048 ], [ -119.459319308999952, 49.85487068900003 ], [ -119.459423155999986, 49.854876912000044 ], [ -119.459642242999934, 49.853347586000019 ], [ -119.458768798999984, 49.853295241000112 ], [ -119.458953747999985, 49.852004308000083 ], [ -119.456796422999957, 49.851874990000034 ], [ -119.456861609, 49.851420119000132 ], [ -119.458084700999933, 49.850303399 ], [ -119.458930696999971, 49.849178188000053 ], [ -119.459252792999976, 49.848947489000047 ], [ -119.460490149999956, 49.848484062000054 ], [ -119.462846609999986, 49.848625244000111 ], [ -119.46271327399991, 49.849556559000135 ], [ -119.463166437999988, 49.849583704000089 ], [ -119.463201346999981, 49.849339862000051 ], [ -119.46459962299997, 49.849423608000052 ], [ -119.464682408999977, 49.848845195000102 ], [ -119.464913378999924, 49.848859027000103 ], [ -119.464992425999981, 49.848306701000119 ], [ -119.465470107999977, 49.848335305000077 ], [ -119.465560935000028, 49.847700612000082 ], [ -119.465581557999926, 49.84770184700006 ], [ -119.465698275999941, 49.846886213000083 ], [ -119.465720859999976, 49.846887565000017 ], [ -119.465779907999945, 49.846474928000063 ], [ -119.466363869999938, 49.846204690000029 ], [ -119.467358524999895, 49.846264235 ], [ -119.469217922999974, 49.848615469000073 ], [ -119.469107587999986, 49.848693750000081 ], [ -119.469089969999956, 49.848797445000052 ], [ -119.469170560999927, 49.848888071000026 ], [ -119.468938885999989, 49.849121634000014 ], [ -119.468588407999945, 49.849575073000089 ], [ -119.466132569999942, 49.852751965000081 ], [ -119.464802729999946, 49.854473525000088 ], [ -119.464404217999984, 49.854989405000062 ], [ -119.464318291999959, 49.855100607000026 ], [ -119.46382083, 49.855744480000098 ], [ -119.463656100999913, 49.855957706000105 ], [ -119.462883740999956, 49.856559282000077 ], [ -119.462665344999934, 49.856729389000101 ], [ -119.46263811399993, 49.856750610000084 ], [ -119.462309186999917, 49.857006792000021 ], [ -119.46134034399995, 49.857531207000079 ], [ -119.459846195999958, 49.858340251000051 ], [ -119.458411611999935, 49.859405697000078 ], [ -119.457936452999945, 49.859794653000051 ], [ -119.457172892999921, 49.860419668000063 ], [ -119.456573627999944, 49.860878634000095 ], [ -119.456461956999973, 49.860975776000068 ], [ -119.463373276999931, 49.860985292000102 ], [ -119.464115633999953, 49.860989092000089 ], [ -119.464330032999925, 49.860988640000038 ], [ -119.464394694999939, 49.860988501000072 ], [ -119.465471214999951, 49.86098618700003 ], [ -119.465888666999945, 49.860985269 ], [ -119.466974230999966, 49.860982929000052 ], [ -119.467586298999947, 49.860981592000108 ], [ -119.468727480999945, 49.860979101000083 ], [ -119.468935991999899, 49.860978643000131 ], [ -119.469395182999961, 49.860977647000041 ], [ -119.472226182999947, 49.860971388000031 ], [ -119.472225615999932, 49.862479459000113 ], [ -119.470025891999967, 49.862493129 ], [ -119.470004182999972, 49.862918485000066 ], [ -119.469748018, 49.862920095000042 ], [ -119.469719713999922, 49.863771792000058 ], [ -119.469712892999894, 49.863936593000098 ], [ -119.469341903, 49.86416731300006 ], [ -119.46923490799999, 49.864329683000015 ], [ -119.469235812999955, 49.864537504000047 ], [ -119.46923847299999, 49.86485821800008 ], [ -119.465704575, 49.864821788000079 ], [ -119.464348488999917, 49.864850342000075 ], [ -119.462642852999977, 49.86483592900003 ], [ -119.462763806999959, 49.863991402000117 ], [ -119.461472894999943, 49.863914091000083 ], [ -119.461547536999944, 49.863393011000056 ], [ -119.460174272999964, 49.863310752000075 ], [ -119.45995542499999, 49.864838179000031 ], [ -119.459723621999956, 49.864839498000038 ], [ -119.458962439999965, 49.864858608000048 ], [ -119.458712342999917, 49.864864872000055 ], [ -119.457779498999969, 49.864888279000134 ], [ -119.453295949999983, 49.86486273900001 ], [ -119.453156419, 49.864861965000031 ], [ -119.452253349000031, 49.864856780000139 ], [ -119.451917223999956, 49.86517568700009 ], [ -119.449698597999955, 49.867280401000087 ], [ -119.449659429999954, 49.867317544000045 ], [ -119.448699708999953, 49.868227890000107 ], [ -119.447031400999975, 49.869807629000029 ], [ -119.44580281599994, 49.87097093600012 ], [ -119.443154997999898, 49.873475138000153 ], [ -119.44296258599995, 49.873560194000071 ], [ -119.442529098999955, 49.873903536000057 ], [ -119.441743488999947, 49.874286213000055 ], [ -119.441112378999932, 49.87451741200011 ], [ -119.440407850999961, 49.874666540000085 ], [ -119.439244286999909, 49.874811571000059 ], [ -119.438624975999929, 49.874960410000128 ], [ -119.438448291999975, 49.874634612000108 ] ], [ [ -119.441882014, 49.871178953000083 ], [ -119.44216645799996, 49.869199467000023 ], [ -119.44031189399999, 49.869088058000116 ], [ -119.440219023999987, 49.869734195000035 ], [ -119.439593305, 49.869696598000075 ], [ -119.439404858999922, 49.871007510000034 ], [ -119.439015878999925, 49.87098413700005 ], [ -119.439010596999935, 49.871020877000028 ], [ -119.440354171999971, 49.871101606000103 ], [ -119.440356228999946, 49.871087297000045 ], [ -119.441882014, 49.871178953000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "816184064", "BldgCostT": "489287068", "sL_LossRatio": "0.896871862250824", "sL_AssetLoss": "16337.16866", "sL_BldgLoss": "14652.34688", "sL_StrLoss": "14036.47635", "sL_NStrLoss": "615.87053", "sL_ContLoss": "1684.82178", "geom_point": "0101000020E6100000F01B1A817EDB5DC012CF2D9533F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.427697705999947, 49.882915004000068 ], [ -119.427530896999912, 49.881676806000051 ], [ -119.427285988, 49.881674793000101 ], [ -119.426136195999945, 49.881665402000095 ], [ -119.425857033999989, 49.88166311800007 ], [ -119.424623776999951, 49.881653017000112 ], [ -119.423691944999987, 49.881645353000089 ], [ -119.422600418999963, 49.881636396000076 ], [ -119.42251076499997, 49.88157947800007 ], [ -119.422476299999943, 49.881557605000047 ], [ -119.422452789999937, 49.88149750200008 ], [ -119.422456016999959, 49.8804573970001 ], [ -119.418169518999917, 49.880454769000046 ], [ -119.417580409999957, 49.880454388000118 ], [ -119.417613690999929, 49.880090409000083 ], [ -119.417568627999941, 49.879687517000036 ], [ -119.417676406999988, 49.879708063000031 ], [ -119.418461558999965, 49.879857682000107 ], [ -119.418772390999948, 49.879916912000098 ], [ -119.419996761999954, 49.879973621000026 ], [ -119.42117108399998, 49.880027991000077 ], [ -119.421732793999965, 49.879903021000132 ], [ -119.42183787699993, 49.879879645000031 ], [ -119.422150497999937, 49.87981009300011 ], [ -119.42260977399998, 49.87964589400007 ], [ -119.426257174999961, 49.878341730000024 ], [ -119.426293109999989, 49.878328882000076 ], [ -119.42793821099994, 49.87782619700009 ], [ -119.433100982000013, 49.875847996000083 ], [ -119.434127758999949, 49.875341584000047 ], [ -119.434322602999927, 49.875245487000051 ], [ -119.436242795999945, 49.873856903000032 ], [ -119.436772167999962, 49.873292496000055 ], [ -119.437138774999966, 49.874226669000052 ], [ -119.43847097199999, 49.87415620400008 ], [ -119.438448291999975, 49.874634612000108 ], [ -119.438624975999929, 49.874960410000128 ], [ -119.439244286999909, 49.874811571000059 ], [ -119.440407850999961, 49.874666540000085 ], [ -119.441112378999932, 49.87451741200011 ], [ -119.441743488999947, 49.874286213000055 ], [ -119.441622847999952, 49.874448654000027 ], [ -119.440690366999888, 49.875703986000062 ], [ -119.439881564999951, 49.876457882000039 ], [ -119.439722493999952, 49.876606140000092 ], [ -119.439117524, 49.877170007000174 ], [ -119.438990069999946, 49.877288784000022 ], [ -119.43906243899994, 49.877288891000049 ], [ -119.437229203999948, 49.879375676000102 ], [ -119.437127768999943, 49.879494164000043 ], [ -119.437155271999941, 49.879566989000068 ], [ -119.437156303999956, 49.879569720000092 ], [ -119.437317978999943, 49.879997768000052 ], [ -119.437371642999977, 49.880353186000079 ], [ -119.437370985999976, 49.880600600000058 ], [ -119.43737401099996, 49.881793728000119 ], [ -119.43737480399993, 49.881843616000012 ], [ -119.437375808999917, 49.881907611000095 ], [ -119.437393738999944, 49.882016160000092 ], [ -119.437460123999983, 49.882088778000096 ], [ -119.437713428999942, 49.883241856000055 ], [ -119.437725776999955, 49.885924691000049 ], [ -119.437727306999989, 49.887264666000057 ], [ -119.437727815999921, 49.887707501000072 ], [ -119.437610594, 49.888085090000096 ], [ -119.437544223999964, 49.888191500000104 ], [ -119.432835508999958, 49.889235458000066 ], [ -119.43116312399998, 49.889763862000059 ], [ -119.429026961999952, 49.8907653320001 ], [ -119.417441249999982, 49.895572802000096 ], [ -119.414988427999916, 49.895423372000025 ], [ -119.414421532999924, 49.895388842000109 ], [ -119.414776325, 49.895012877000092 ], [ -119.41612620099994, 49.893578612000049 ], [ -119.416572365999954, 49.893104545000043 ], [ -119.416930135999962, 49.892726963000079 ], [ -119.41731018499999, 49.892320885000089 ], [ -119.41751329, 49.892104653000104 ], [ -119.418840082999907, 49.890870615000068 ], [ -119.419102716999959, 49.890629065000091 ], [ -119.419762282999912, 49.890092087000099 ], [ -119.419770952999983, 49.890085040000088 ], [ -119.419876535999947, 49.890011919000088 ], [ -119.420526264999921, 49.889557070000087 ], [ -119.420661665999972, 49.889461381000068 ], [ -119.421146357999987, 49.889152813000045 ], [ -119.421975268999944, 49.888623564000099 ], [ -119.421985169999971, 49.888617254000096 ], [ -119.422695207999979, 49.888139871000092 ], [ -119.424956136999953, 49.886619698000068 ], [ -119.425463542, 49.886279087000048 ], [ -119.425877818999965, 49.88599337200003 ], [ -119.426090803999955, 49.885843639 ], [ -119.427026396999963, 49.885343651000028 ], [ -119.428723330999929, 49.884541405000036 ], [ -119.429083568999928, 49.884371097000049 ], [ -119.428999982999954, 49.884318445000112 ], [ -119.428956751999962, 49.884291213000033 ], [ -119.427895486999915, 49.883481400000015 ], [ -119.427767877999926, 49.883251612000052 ], [ -119.427728030999901, 49.883060480000061 ], [ -119.427697705999947, 49.882915004000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "551998016", "BldgCostT": "351524881", "sL_LossRatio": "0.936507378744265", "sL_AssetLoss": "14819.327528", "sL_BldgLoss": "13878.409578", "sL_StrLoss": "13533.942078", "sL_NStrLoss": "344.4675", "sL_ContLoss": "940.91795", "geom_point": "0101000020E610000004196E4460DC5DC0D4DDD1399EF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.437229203999948, 49.879375676000102 ], [ -119.43906243899994, 49.877288891000049 ], [ -119.438990069999946, 49.877288784000022 ], [ -119.439117524, 49.877170007000174 ], [ -119.439722493999952, 49.876606140000092 ], [ -119.439881564999951, 49.876457882000039 ], [ -119.440690366999888, 49.875703986000062 ], [ -119.441622847999952, 49.874448654000027 ], [ -119.441743488999947, 49.874286213000055 ], [ -119.44183367, 49.874368375000074 ], [ -119.442106606999943, 49.874646663000057 ], [ -119.442207412999963, 49.874752059000066 ], [ -119.442451934999966, 49.875218280000141 ], [ -119.44258674699995, 49.875389558000073 ], [ -119.443104017999971, 49.876046715000058 ], [ -119.443236625999972, 49.876416803000041 ], [ -119.443256347999977, 49.876765681000045 ], [ -119.443183773999976, 49.876901306000036 ], [ -119.443172224999941, 49.877176040000123 ], [ -119.44333280799999, 49.877176652000102 ], [ -119.448355718999892, 49.877153021000026 ], [ -119.449787629999918, 49.877153130000103 ], [ -119.449789018999979, 49.877279643000065 ], [ -119.449777306999977, 49.878850248000099 ], [ -119.449799105999944, 49.88186144600008 ], [ -119.449810643999967, 49.88197961200003 ], [ -119.448647554, 49.881970285000094 ], [ -119.447618936999902, 49.881962746000056 ], [ -119.44758666199999, 49.882741949000014 ], [ -119.447561924999931, 49.883235335000087 ], [ -119.443172537999928, 49.883221150000075 ], [ -119.437713428999942, 49.883241856000055 ], [ -119.437460123999983, 49.882088778000096 ], [ -119.437393738999944, 49.882016160000092 ], [ -119.437375808999917, 49.881907611000095 ], [ -119.43737480399993, 49.881843616000012 ], [ -119.43737401099996, 49.881793728000119 ], [ -119.437370985999976, 49.880600600000058 ], [ -119.437371642999977, 49.880353186000079 ], [ -119.437317978999943, 49.879997768000052 ], [ -119.437156303999956, 49.879569720000092 ], [ -119.437155271999941, 49.879566989000068 ], [ -119.437127768999943, 49.879494164000043 ], [ -119.437229203999948, 49.879375676000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "384716166", "BldgCostT": "251346666", "sL_LossRatio": "0.99628017786727", "sL_AssetLoss": "31130.520726", "sL_BldgLoss": "31014.720726", "sL_StrLoss": "30973.000726", "sL_NStrLoss": "41.72", "sL_ContLoss": "115.8", "geom_point": "0101000020E61000005858EBBC34D75DC0616A1A2DEAED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352468704999936, 49.868873691 ], [ -119.351508597999938, 49.868521714000074 ], [ -119.350962434999957, 49.868357740000071 ], [ -119.35088332, 49.868354305000075 ], [ -119.350526889999941, 49.868338767000097 ], [ -119.349938082, 49.868313110000067 ], [ -119.347408091999966, 49.868179725000068 ], [ -119.347426332999987, 49.867973076000098 ], [ -119.347491536999925, 49.86723376300003 ], [ -119.347496104999934, 49.867173513000033 ], [ -119.347301796999957, 49.866513194000035 ], [ -119.34712338599995, 49.866038934000102 ], [ -119.3469746009999, 49.865643313000085 ], [ -119.34695263899999, 49.865607232000123 ], [ -119.346775095999931, 49.86531599200007 ], [ -119.346339894999929, 49.864900193000061 ], [ -119.34575051099992, 49.863672904000062 ], [ -119.345539701999911, 49.863442409000108 ], [ -119.345480056, 49.863391282000116 ], [ -119.345198297, 49.8631496940001 ], [ -119.344948885999926, 49.862991804000096 ], [ -119.344699288999948, 49.862931394000121 ], [ -119.34436679199996, 49.862931901000138 ], [ -119.343367083999965, 49.863015492000024 ], [ -119.342758116999931, 49.863025311000094 ], [ -119.342373002999921, 49.86298379700002 ], [ -119.341969714999919, 49.862895 ], [ -119.34183676399999, 49.862844492000136 ], [ -119.341768607999924, 49.862818602000118 ], [ -119.341643995999931, 49.862686404000051 ], [ -119.341532801999975, 49.861801682000063 ], [ -119.341055317999974, 49.861819477000104 ], [ -119.34048451299995, 49.861807302000031 ], [ -119.34011459599999, 49.861728707000012 ], [ -119.339572015, 49.861503202000044 ], [ -119.33801491, 49.860802993000036 ], [ -119.337606409000031, 49.860568609000097 ], [ -119.337222691999941, 49.860154107000056 ], [ -119.337174753999932, 49.860095549000057 ], [ -119.336808506999915, 49.859648391000064 ], [ -119.336951534999969, 49.858668592000107 ], [ -119.336965014, 49.858669416000055 ], [ -119.337002545999951, 49.858412293000043 ], [ -119.337111452999949, 49.858418942000107 ], [ -119.337130216, 49.858290402000115 ], [ -119.33635613200002, 49.858243143000038 ], [ -119.336878856999974, 49.854662180000084 ], [ -119.337397187999954, 49.854693825000048 ], [ -119.33742244099993, 49.854520793000063 ], [ -119.341209796000015, 49.854751945000054 ], [ -119.341403131, 49.853426481000021 ], [ -119.341431726999986, 49.853428225000094 ], [ -119.341511503999953, 49.85288127500008 ], [ -119.341765104, 49.852880743000085 ], [ -119.342297005999981, 49.852879641000108 ], [ -119.342293935999933, 49.852759612000092 ], [ -119.342278917, 49.852176485000065 ], [ -119.342268184999938, 49.8517605850001 ], [ -119.343649844999973, 49.851844871000068 ], [ -119.343772861999966, 49.851001128000092 ], [ -119.345667599999928, 49.851116684000075 ], [ -119.345755403999974, 49.850514272000105 ], [ -119.346617508999927, 49.850566839000074 ], [ -119.346850941999918, 49.84896499300006 ], [ -119.352387169999972, 49.849302402000077 ], [ -119.352217681999946, 49.850466431000072 ], [ -119.353241221, 49.85052878000004 ], [ -119.352719821999969, 49.854109842000064 ], [ -119.352367360999935, 49.854088374000071 ], [ -119.352132386999955, 49.855701952000032 ], [ -119.351271298, 49.85564949700008 ], [ -119.35082369, 49.858722511000096 ], [ -119.351079920999908, 49.858717313000071 ], [ -119.351119189000016, 49.859526115000037 ], [ -119.351536225999908, 49.859517652000093 ], [ -119.351562409999957, 49.86005685300011 ], [ -119.351979449999959, 49.860048389000042 ], [ -119.352005639999959, 49.860587590000087 ], [ -119.352422683999947, 49.860579124000061 ], [ -119.352448879999884, 49.861118324000067 ], [ -119.352865927999972, 49.861109857000066 ], [ -119.352879027999961, 49.861379457000098 ], [ -119.353296079999922, 49.861370988000068 ], [ -119.353309182999965, 49.861640587000068 ], [ -119.354143287999989, 49.861623644000112 ], [ -119.35415639499999, 49.861893245000033 ], [ -119.354573451999897, 49.861884771000121 ], [ -119.354560340999939, 49.861615171000054 ], [ -119.355811496999962, 49.861589740000092 ], [ -119.3557983809999, 49.861320140000018 ], [ -119.356632479999945, 49.861303179000132 ], [ -119.356619358999964, 49.861033579 ], [ -119.357036403999928, 49.861025096000013 ], [ -119.35702328299999, 49.860755498000096 ], [ -119.358691457999967, 49.860721551000033 ], [ -119.358678325999932, 49.860451952000098 ], [ -119.359095366999924, 49.860443462000092 ], [ -119.359082231999977, 49.86017386300005 ], [ -119.360370909999915, 49.860147618000106 ], [ -119.36056801700002, 49.858792534000024 ], [ -119.361941096999942, 49.858876051000074 ], [ -119.361935748999969, 49.858766396000121 ], [ -119.362352774999977, 49.858757895000075 ], [ -119.362313319999942, 49.857949100000084 ], [ -119.361896299999984, 49.85795760000007 ], [ -119.361856856, 49.857148804000119 ], [ -119.362273866999928, 49.857140304000033 ], [ -119.362247565999951, 49.856601106000063 ], [ -119.362664572999961, 49.856592604000049 ], [ -119.362660193999957, 49.856502847000094 ], [ -119.362651420999953, 49.856323005000043 ], [ -119.362721737999934, 49.856321571000109 ], [ -119.363441639999934, 49.856306888000084 ], [ -119.363902432999964, 49.856297488000045 ], [ -119.363955071999911, 49.857375882000092 ], [ -119.363538059999911, 49.85738438900006 ], [ -119.363551216999937, 49.85765398800001 ], [ -119.363968233, 49.857645480000059 ], [ -119.363981392999989, 49.857915079000065 ], [ -119.365232444999961, 49.857889548000074 ], [ -119.365285117, 49.858967940000063 ], [ -119.364868088999984, 49.8589764520001 ], [ -119.364871889999932, 49.859054256000043 ], [ -119.365386291999968, 49.859085526000086 ], [ -119.365451214999936, 49.858638846000083 ], [ -119.365656843999986, 49.858651345000098 ], [ -119.365741734999943, 49.858067251000072 ], [ -119.365886186999944, 49.858076031000095 ], [ -119.365919638999969, 49.857845855000093 ], [ -119.366076805999938, 49.857855407000045 ], [ -119.366107942999946, 49.857641158000092 ], [ -119.366197882, 49.857646625000065 ], [ -119.366221345999946, 49.857485160000067 ], [ -119.366365801000015, 49.857493940000097 ], [ -119.366399251999965, 49.857263763000027 ], [ -119.36654924, 49.857272879000107 ], [ -119.366587357999919, 49.857010567000053 ], [ -119.36680457699994, 49.857023769000044 ], [ -119.36685036199999, 49.856708673000099 ], [ -119.367025462999905, 49.85671931400006 ], [ -119.367061865999972, 49.856468777000025 ], [ -119.367213520999954, 49.85647799300007 ], [ -119.367239967999936, 49.856295980000013 ], [ -119.369207655999958, 49.856415544000058 ], [ -119.369353027, 49.855414726000056 ], [ -119.370926599999962, 49.855510317000039 ], [ -119.37126856799992, 49.853155264000058 ], [ -119.371455420999922, 49.853166613000027 ], [ -119.371540786999944, 49.852578669000067 ], [ -119.371662721999925, 49.852586075000033 ], [ -119.371768416999927, 49.85185807200007 ], [ -119.372785155999949, 49.851919821000131 ], [ -119.373066265999924, 49.849983196000046 ], [ -119.375761649999973, 49.850146848000122 ], [ -119.375955792999946, 49.850234998000097 ], [ -119.376720515999978, 49.850237801000048 ], [ -119.376963914999934, 49.850079709000028 ], [ -119.377090107999962, 49.849257987000087 ], [ -119.376807580999937, 49.848859203000053 ], [ -119.376776301999925, 49.84793349100007 ], [ -119.377114798000022, 49.847509601000105 ], [ -119.379727964999958, 49.847668174000084 ], [ -119.379741091999932, 49.847684187000077 ], [ -119.37998890399993, 49.848218311000046 ], [ -119.380420487, 49.84852450500005 ], [ -119.381105293999966, 49.848555809000054 ], [ -119.381214995999983, 49.848805086000041 ], [ -119.38112360099997, 49.848960304000094 ], [ -119.38141348399999, 49.84934270100009 ], [ -119.381645812, 49.849920198000099 ], [ -119.382421289999954, 49.850444302000021 ], [ -119.383210100999989, 49.850653692000037 ], [ -119.38475121399992, 49.850864505000075 ], [ -119.386574207999956, 49.851429889000016 ], [ -119.386917307999951, 49.85187278700004 ], [ -119.38772179299994, 49.853519199000083 ], [ -119.38873172299995, 49.854281204000152 ], [ -119.38962590899996, 49.854631502000053 ], [ -119.389788111999977, 49.854790998000098 ], [ -119.389842987999913, 49.855095811000069 ], [ -119.389565, 49.855343588000096 ], [ -119.388909400999921, 49.855341043000045 ], [ -119.388942826999966, 49.855110224000072 ], [ -119.386076647999985, 49.854936568 ], [ -119.38604710599995, 49.855140476000031 ], [ -119.383983016999935, 49.855015370000103 ], [ -119.383639925999944, 49.85738262600011 ], [ -119.382407986999965, 49.857307938000069 ], [ -119.382376179999966, 49.857527354000119 ], [ -119.382174978999942, 49.857515155000065 ], [ -119.382161753, 49.857606392000058 ], [ -119.383624218999927, 49.857695057000065 ], [ -119.383412683999921, 49.859154453000023 ], [ -119.384187899000011, 49.859201443000103 ], [ -119.383787010999981, 49.861967265000047 ], [ -119.383952270999927, 49.861977281000129 ], [ -119.384047572999975, 49.861319780000059 ], [ -119.384988036, 49.861376778000114 ], [ -119.385149283999951, 49.860264102000052 ], [ -119.390419784999935, 49.860583377000104 ], [ -119.390335021999931, 49.861076103000059 ], [ -119.39024589899995, 49.861235371000141 ], [ -119.38938739299999, 49.862769511000117 ], [ -119.389332088999964, 49.863633914000111 ], [ -119.390387401999988, 49.864692092000077 ], [ -119.390397132999979, 49.864698695000058 ], [ -119.39036592199993, 49.864712614000055 ], [ -119.390275961999976, 49.864774476000022 ], [ -119.390012221999939, 49.864955820000077 ], [ -119.389947744999915, 49.865111790000064 ], [ -119.390075064999948, 49.865467207000044 ], [ -119.390062532999963, 49.865601903000034 ], [ -119.389949423999923, 49.865707952000065 ], [ -119.389813114999953, 49.865780984000011 ], [ -119.38958265499997, 49.865848316000069 ], [ -119.389340114999968, 49.865864323000032 ], [ -119.388896571999979, 49.864992123000057 ], [ -119.388689655999954, 49.864588538000064 ], [ -119.388538561999965, 49.86413683200005 ], [ -119.388518055999953, 49.863362490000078 ], [ -119.388168818999986, 49.862668500000126 ], [ -119.388014237999954, 49.862578762000048 ], [ -119.387771701999966, 49.862536972000107 ], [ -119.387536332999929, 49.862580504000043 ], [ -119.387418724999961, 49.862669127000075 ], [ -119.387361417999927, 49.862794818000054 ], [ -119.387536492999956, 49.863755529000102 ], [ -119.387438199999977, 49.86430862400006 ], [ -119.387229590999979, 49.864929090000018 ], [ -119.387177611999931, 49.865634911000051 ], [ -119.386656619999911, 49.865923981000023 ], [ -119.386338328999969, 49.865980563000043 ], [ -119.386304663999965, 49.865973949000058 ], [ -119.385393466, 49.865795140000095 ], [ -119.384173958999924, 49.86555580400011 ], [ -119.383349038999981, 49.865393892000029 ], [ -119.382978992999952, 49.865258575000034 ], [ -119.382634669999959, 49.865272926000117 ], [ -119.382234528999945, 49.865450980000027 ], [ -119.381709791, 49.865293618000038 ], [ -119.381447254999983, 49.865129585000069 ], [ -119.380978804000037, 49.864637635000065 ], [ -119.380904206999958, 49.864559271000083 ], [ -119.380495733999965, 49.864210713000041 ], [ -119.38038464399996, 49.864115933000072 ], [ -119.380282746999953, 49.863972538000077 ], [ -119.380243150999931, 49.863916797000087 ], [ -119.380205790999952, 49.863712213000028 ], [ -119.38027404899999, 49.862904412 ], [ -119.380185485999974, 49.862648859000018 ], [ -119.379976688999932, 49.862046438000093 ], [ -119.379971501999989, 49.861937736000129 ], [ -119.38013416099993, 49.861654094000052 ], [ -119.380228668999976, 49.861321392000036 ], [ -119.38023682699999, 49.861292727000063 ], [ -119.380088963999967, 49.860489064000049 ], [ -119.379935366000012, 49.859654189000103 ], [ -119.379683781999972, 49.859183712000117 ], [ -119.379649256, 49.85914987900005 ], [ -119.379313252000017, 49.858820757000032 ], [ -119.37667318199999, 49.859149742000106 ], [ -119.376118671999933, 49.859218839000114 ], [ -119.375013607999932, 49.859356492000053 ], [ -119.374602891999984, 49.859376705000024 ], [ -119.374282303999976, 49.859343709000044 ], [ -119.37371989899999, 49.858984414000098 ], [ -119.373164283, 49.858723091000137 ], [ -119.372744389000019, 49.858613598000105 ], [ -119.37241049499994, 49.858633899000012 ], [ -119.372124202999927, 49.858797185000064 ], [ -119.371315285999941, 49.85951120400005 ], [ -119.370980094999979, 49.859828695000019 ], [ -119.370598885000035, 49.86027969300013 ], [ -119.370355687999961, 49.860396788000173 ], [ -119.369508094999929, 49.860550871000065 ], [ -119.36927971399993, 49.860592414000024 ], [ -119.369072619999955, 49.860653009000018 ], [ -119.368212223999933, 49.860903312000069 ], [ -119.367723682999923, 49.860968450000051 ], [ -119.367450471999931, 49.860945535000049 ], [ -119.367194905999938, 49.860887921000078 ], [ -119.36654576399998, 49.860741544000078 ], [ -119.365811316999967, 49.8606535340001 ], [ -119.365105990999965, 49.860749750000124 ], [ -119.36499749299999, 49.860778652000107 ], [ -119.36466140099995, 49.860868149000055 ], [ -119.364260886999915, 49.861250241000036 ], [ -119.364033777999964, 49.861832530000086 ], [ -119.364085343999989, 49.862025337000091 ], [ -119.364161028999916, 49.862100368000029 ], [ -119.365193602999966, 49.86314489500004 ], [ -119.365348954999916, 49.863469550000083 ], [ -119.365391192999979, 49.864538771000063 ], [ -119.365399755999988, 49.864754483000041 ], [ -119.365407897999958, 49.864961181000105 ], [ -119.365430258999979, 49.865527455000091 ], [ -119.365465978999964, 49.866430939000097 ], [ -119.36517023, 49.866900933000061 ], [ -119.365066376999934, 49.867065963000137 ], [ -119.36483352499999, 49.867236059000078 ], [ -119.364469645, 49.867336781000105 ], [ -119.364054549999949, 49.867366435000079 ], [ -119.36379050799998, 49.867385324000054 ], [ -119.363752572999928, 49.867388036000065 ], [ -119.363361571999974, 49.867454579000089 ], [ -119.362570954999981, 49.86771358100011 ], [ -119.36238116, 49.867808613000086 ], [ -119.362223536999963, 49.86793179800005 ], [ -119.362129809999928, 49.86809590000005 ], [ -119.361863579, 49.868869991000111 ], [ -119.360362907999985, 49.868801207000061 ], [ -119.359177283999927, 49.868746827000102 ], [ -119.359027186999981, 49.868739926000096 ], [ -119.357580102999975, 49.868665569 ], [ -119.356119212999914, 49.868590484000087 ], [ -119.355681426999979, 49.868567970000079 ], [ -119.35520721099999, 49.868543628000054 ], [ -119.355253446999981, 49.868821009000051 ], [ -119.355267976999954, 49.868913117000069 ], [ -119.355047586999959, 49.868920497000076 ], [ -119.354597244999979, 49.86883891300009 ], [ -119.354454176, 49.868812996000081 ], [ -119.3528322, 49.868900286000034 ], [ -119.352468704999936, 49.868873691 ] ], [ [ -119.360159849999931, 49.863981468000141 ], [ -119.360206729999931, 49.863659228000053 ], [ -119.359670063999914, 49.863670158000048 ], [ -119.359683202999975, 49.863939757000011 ], [ -119.359526587999952, 49.863942946000108 ], [ -119.360159849999931, 49.863981468000141 ] ], [ [ -119.34997918499991, 49.861840877000098 ], [ -119.349858949999884, 49.861710610000095 ], [ -119.349555695999967, 49.861716759000096 ], [ -119.349542613999972, 49.86144715800004 ], [ -119.34912556099998, 49.861455614000143 ], [ -119.349099402999968, 49.860916412000108 ], [ -119.348682353999948, 49.860924866000055 ], [ -119.34866927799996, 49.860655265000062 ], [ -119.348252232, 49.860663717000108 ], [ -119.348216626999971, 49.85992948100008 ], [ -119.348149454999913, 49.859856202000095 ], [ -119.347795969999964, 49.859863364000027 ], [ -119.347775862999939, 49.859448621000112 ], [ -119.347663752999935, 49.859326311000068 ], [ -119.347352793999974, 49.859332612000088 ], [ -119.347318502999926, 49.858625200000077 ], [ -119.345269531000014, 49.858500290000052 ], [ -119.345446562999925, 49.857285956000105 ], [ -119.344009555999918, 49.857198328000045 ], [ -119.34389388699999, 49.857991581000078 ], [ -119.345309700999934, 49.858077917000088 ], [ -119.345059389999903, 49.859794820000111 ], [ -119.345305414999984, 49.859809821000042 ], [ -119.345062367999915, 49.861476827000082 ], [ -119.347879545999916, 49.861648554000112 ], [ -119.34776083499996, 49.862463066000046 ], [ -119.34974064299999, 49.862583704 ], [ -119.34968811, 49.862944242000061 ], [ -119.350033759, 49.862965300000091 ], [ -119.34997918499991, 49.861840877000098 ] ], [ [ -119.376707395999986, 49.85669778400004 ], [ -119.377085767999944, 49.85408980000004 ], [ -119.377216225999973, 49.85409771700008 ], [ -119.377252158999951, 49.853850022000096 ], [ -119.37706660799995, 49.853838762000102 ], [ -119.37678564399999, 49.855775387000051 ], [ -119.37666370099997, 49.855767986000089 ], [ -119.376558073999931, 49.856495990000091 ], [ -119.376452588999925, 49.856489588000095 ], [ -119.376424867999944, 49.856680638000114 ], [ -119.376707395999986, 49.85669778400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39244751", "BldgCostT": "24910001", "sL_LossRatio": "0.993419128907781", "sL_AssetLoss": "2735.200211", "sL_BldgLoss": "2717.200211", "sL_StrLoss": "2710.700211", "sL_NStrLoss": "6.5", "sL_ContLoss": "18", "geom_point": "0101000020E61000000149758D18D55DC0148A954D90EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.32706656199997, 49.861452254000035 ], [ -119.327113618999974, 49.861130374000027 ], [ -119.332651173000016, 49.861468774000024 ], [ -119.332616611999967, 49.861705370000038 ], [ -119.332992949999934, 49.861728357000096 ], [ -119.333115592999945, 49.862913703000068 ], [ -119.333193551999983, 49.863256251000095 ], [ -119.333261917999906, 49.863556709000079 ], [ -119.333361817999958, 49.863711310000092 ], [ -119.333416883999988, 49.863796496000106 ], [ -119.333647091999964, 49.864027291000042 ], [ -119.33390190899992, 49.864170677000097 ], [ -119.333980089999926, 49.864214698000048 ], [ -119.335062422999926, 49.864599592000069 ], [ -119.335342219999944, 49.864786188000032 ], [ -119.335427681999974, 49.86484319200008 ], [ -119.3355637, 49.864992400000048 ], [ -119.33576509199996, 49.865306384000078 ], [ -119.335979870999921, 49.865777366000032 ], [ -119.336029646999933, 49.866077581000134 ], [ -119.335964179999962, 49.866669765000054 ], [ -119.333106369999925, 49.866254515000094 ], [ -119.331279007999967, 49.865988917000045 ], [ -119.326931628999887, 49.865356897000048 ], [ -119.326434407999983, 49.865284605000056 ], [ -119.325071414999982, 49.864957388000072 ], [ -119.324591910999956, 49.864812678000078 ], [ -119.324395788999951, 49.864753494000063 ], [ -119.323709589999964, 49.864507402000129 ], [ -119.323681891999982, 49.864495683000058 ], [ -119.323972178999924, 49.862511206000057 ], [ -119.324922671999914, 49.862569336000035 ], [ -119.325103594999959, 49.861332229000027 ], [ -119.32706656199997, 49.861452254000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2563333", "BldgCostT": "1558333", "sL_LossRatio": "0.903123304657832", "sL_AssetLoss": "129.03", "sL_BldgLoss": "116.53", "sL_StrLoss": "112", "sL_NStrLoss": "4.53", "sL_ContLoss": "12.5", "geom_point": "0101000020E61000006E35464622D75DC014DD06F7FBEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.361416294999984, 49.876044158000049 ], [ -119.361421033999974, 49.876011584000032 ], [ -119.361385044, 49.876009397000068 ], [ -119.36143710199994, 49.875651583000014 ], [ -119.360994754999965, 49.875624688000087 ], [ -119.361041593, 49.87530278 ], [ -119.360643563999957, 49.875278578000042 ], [ -119.360793461999961, 49.874248380000061 ], [ -119.362538405999928, 49.8742651210001 ], [ -119.361425795999978, 49.876034659000119 ], [ -119.361416294999984, 49.876044158000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "255364167", "BldgCostT": "166796667", "sL_LossRatio": "0.997174604537053", "sL_AssetLoss": "24209.000438", "sL_BldgLoss": "24140.600438", "sL_StrLoss": "24116.000438", "sL_NStrLoss": "24.6", "sL_ContLoss": "68.4", "geom_point": "0101000020E610000091F149A3D9D55DC0D172C19543EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.346730031, 49.88093448900004 ], [ -119.346651584999933, 49.87931688500008 ], [ -119.34498275199995, 49.879350668000029 ], [ -119.34496968799999, 49.879081067000122 ], [ -119.344552481999969, 49.879089508000099 ], [ -119.344513295999917, 49.878280704000055 ], [ -119.344096097999952, 49.878289145000096 ], [ -119.344083036999976, 49.878019543000036 ], [ -119.343665840999975, 49.878027981000059 ], [ -119.343652783999957, 49.877758380000067 ], [ -119.343235589999935, 49.877766817000065 ], [ -119.343222536, 49.877497215000126 ], [ -119.342805342999895, 49.877505651000043 ], [ -119.342766188999988, 49.876696846000065 ], [ -119.344017744999931, 49.876671537000057 ], [ -119.344030803999942, 49.876941138000092 ], [ -119.344865177999949, 49.876924257000098 ], [ -119.344878242000021, 49.877193859000045 ], [ -119.345295430999926, 49.877185416000039 ], [ -119.34528236599999, 49.876915816000057 ], [ -119.346951110999925, 49.8768820310001 ], [ -119.346898815999936, 49.875803627000046 ], [ -119.347315992999881, 49.875795177000043 ], [ -119.34728984099992, 49.875255976000091 ], [ -119.348124183999943, 49.875239073000074 ], [ -119.348111105, 49.874969473000114 ], [ -119.348528273999989, 49.874961019000061 ], [ -119.348475945999894, 49.87388261500012 ], [ -119.346390144999972, 49.873924869000106 ], [ -119.346403213999935, 49.874194470000113 ], [ -119.345983653999951, 49.874202965000038 ], [ -119.345880569999977, 49.87490984300009 ], [ -119.340341291999962, 49.87457211700012 ], [ -119.340365912999957, 49.874403429000061 ], [ -119.33941777499993, 49.874345593000037 ], [ -119.339735279999928, 49.87217036900006 ], [ -119.339624317999963, 49.872172610000071 ], [ -119.33961128699994, 49.871903008000075 ], [ -119.338776994999989, 49.871919849000086 ], [ -119.338763968999956, 49.871650246000087 ], [ -119.33834682399997, 49.871658665000027 ], [ -119.338333799999987, 49.871389061000137 ], [ -119.337916658999944, 49.871397479000066 ], [ -119.337892809999971, 49.870903716000058 ], [ -119.336311598999899, 49.870807215000085 ], [ -119.33649816199997, 49.869529598000028 ], [ -119.336731363999917, 49.8679324880001 ], [ -119.33613878599999, 49.867896316000049 ], [ -119.336310614999931, 49.86671955000002 ], [ -119.336417946999944, 49.86598446400005 ], [ -119.336150957, 49.865968166000137 ], [ -119.336046777999954, 49.866681635000084 ], [ -119.335883952999936, 49.867796691000123 ], [ -119.333046155999938, 49.867623419000083 ], [ -119.331475510999937, 49.867527485000053 ], [ -119.331360886999974, 49.868311894000065 ], [ -119.330961411999937, 49.868287490000043 ], [ -119.330794222999955, 49.869431503000065 ], [ -119.32525572099999, 49.869093013000061 ], [ -119.325674717, 49.866228216000096 ], [ -119.323448355000011, 49.866092069000018 ], [ -119.323681891999982, 49.864495683000058 ], [ -119.323709589999964, 49.864507402000129 ], [ -119.324395788999951, 49.864753494000063 ], [ -119.324591910999956, 49.864812678000078 ], [ -119.325071414999982, 49.864957388000072 ], [ -119.326434407999983, 49.865284605000056 ], [ -119.326931628999887, 49.865356897000048 ], [ -119.331279007999967, 49.865988917000045 ], [ -119.333106369999925, 49.866254515000094 ], [ -119.335964179999962, 49.866669765000054 ], [ -119.336029646999933, 49.866077581000134 ], [ -119.335979870999921, 49.865777366000032 ], [ -119.33576509199996, 49.865306384000078 ], [ -119.3355637, 49.864992400000048 ], [ -119.335427681999974, 49.86484319200008 ], [ -119.335342219999944, 49.864786188000032 ], [ -119.335062422999926, 49.864599592000069 ], [ -119.333980089999926, 49.864214698000048 ], [ -119.33390190899992, 49.864170677000097 ], [ -119.333647091999964, 49.864027291000042 ], [ -119.333416883999988, 49.863796496000106 ], [ -119.333361817999958, 49.863711310000092 ], [ -119.333261917999906, 49.863556709000079 ], [ -119.333193551999983, 49.863256251000095 ], [ -119.333115592999945, 49.862913703000068 ], [ -119.332992949999934, 49.861728357000096 ], [ -119.335510398999986, 49.861882097000027 ], [ -119.335478328999926, 49.862101732000021 ], [ -119.336091696999972, 49.862139181000011 ], [ -119.336060940999928, 49.862349827000045 ], [ -119.336387518999985, 49.862369765000054 ], [ -119.336641718999914, 49.860628569 ], [ -119.336561849999896, 49.860630180000065 ], [ -119.336522824999975, 49.859821369000031 ], [ -119.336760255999934, 49.859816581000075 ], [ -119.336783786999945, 49.859655391000111 ], [ -119.336807275999931, 49.85965682500008 ], [ -119.336808506999915, 49.859648391000064 ], [ -119.337174753999932, 49.860095549000057 ], [ -119.337222691999941, 49.860154107000056 ], [ -119.337606409000031, 49.860568609000097 ], [ -119.33801491, 49.860802993000036 ], [ -119.339572015, 49.861503202000044 ], [ -119.34011459599999, 49.861728707000012 ], [ -119.34048451299995, 49.861807302000031 ], [ -119.341055317999974, 49.861819477000104 ], [ -119.341532801999975, 49.861801682000063 ], [ -119.341643995999931, 49.862686404000051 ], [ -119.341768607999924, 49.862818602000118 ], [ -119.34183676399999, 49.862844492000136 ], [ -119.341969714999919, 49.862895 ], [ -119.342373002999921, 49.86298379700002 ], [ -119.342758116999931, 49.863025311000094 ], [ -119.343367083999965, 49.863015492000024 ], [ -119.34436679199996, 49.862931901000138 ], [ -119.344699288999948, 49.862931394000121 ], [ -119.344948885999926, 49.862991804000096 ], [ -119.345198297, 49.8631496940001 ], [ -119.345480056, 49.863391282000116 ], [ -119.345539701999911, 49.863442409000108 ], [ -119.34575051099992, 49.863672904000062 ], [ -119.346339894999929, 49.864900193000061 ], [ -119.346775095999931, 49.86531599200007 ], [ -119.34695263899999, 49.865607232000123 ], [ -119.3469746009999, 49.865643313000085 ], [ -119.34712338599995, 49.866038934000102 ], [ -119.347301796999957, 49.866513194000035 ], [ -119.347496104999934, 49.867173513000033 ], [ -119.347491536999925, 49.86723376300003 ], [ -119.347426332999987, 49.867973076000098 ], [ -119.347408091999966, 49.868179725000068 ], [ -119.349938082, 49.868313110000067 ], [ -119.349929827999944, 49.868398412000012 ], [ -119.349916767999943, 49.868487929000032 ], [ -119.349873604, 49.868832134000158 ], [ -119.349821197999972, 49.869258843000082 ], [ -119.349603959999939, 49.869263681000056 ], [ -119.34861095899997, 49.869492210000054 ], [ -119.348968256999953, 49.870443339000083 ], [ -119.34932122099994, 49.871328306000024 ], [ -119.349670506999928, 49.872210315000075 ], [ -119.351753592999927, 49.871873800000117 ], [ -119.35198090099999, 49.872759312000042 ], [ -119.352087107999978, 49.872959900000055 ], [ -119.352309002999945, 49.873086299000093 ], [ -119.352561488999925, 49.87313691300011 ], [ -119.352990506999959, 49.873203705000094 ], [ -119.353920207999963, 49.873534800000037 ], [ -119.354371683999943, 49.873581298000055 ], [ -119.355164, 49.873490459000095 ], [ -119.35524119199998, 49.873481582000068 ], [ -119.357435383999956, 49.874089319000099 ], [ -119.357581622999959, 49.874121247000097 ], [ -119.358465156999927, 49.874091969000133 ], [ -119.359129156999984, 49.874232386000067 ], [ -119.359349932000029, 49.87423450900009 ], [ -119.359361466999957, 49.874471092000064 ], [ -119.358527141999971, 49.874488077000144 ], [ -119.358540279999886, 49.874757674000044 ], [ -119.356454453999959, 49.87480010900002 ], [ -119.356467582, 49.875069709000087 ], [ -119.35563324499995, 49.875086672000073 ], [ -119.35564636799991, 49.875356270000061 ], [ -119.354394853999977, 49.875381705000031 ], [ -119.354381738999948, 49.875112106000088 ], [ -119.352295892999962, 49.875154465000058 ], [ -119.352282789999933, 49.874884866000102 ], [ -119.350614118999886, 49.874918727000086 ], [ -119.350601023999943, 49.874649126000051 ], [ -119.350183857999966, 49.874657587000051 ], [ -119.350196949999926, 49.874927188000122 ], [ -119.349779781999942, 49.874935648000076 ], [ -119.349819049999979, 49.875744448000034 ], [ -119.349401874999941, 49.875752907000077 ], [ -119.349428049999958, 49.876292108000037 ], [ -119.349010869999958, 49.876300565000122 ], [ -119.349050126999941, 49.87710936600007 ], [ -119.348632940999948, 49.877117822000038 ], [ -119.348672191999981, 49.87792662400004 ], [ -119.348254997999945, 49.877935078000064 ], [ -119.348388749999955, 49.880691245000101 ], [ -119.348166468999963, 49.880750137000092 ], [ -119.347522608999938, 49.880839356000109 ], [ -119.34746074499999, 49.88084794100007 ], [ -119.347158550999922, 49.880925811000104 ], [ -119.346730031, 49.88093448900004 ] ], [ [ -119.341081526000011, 49.864585116000072 ], [ -119.341103740999969, 49.864432855000118 ], [ -119.338329502999954, 49.864263585000067 ], [ -119.338358733999939, 49.864063319000103 ], [ -119.338292615999961, 49.864059284000056 ], [ -119.338325945999912, 49.863830940000049 ], [ -119.338252928999935, 49.863826482999983 ], [ -119.338273477999934, 49.86368569800004 ], [ -119.337363511999982, 49.863630159000067 ], [ -119.337373128999943, 49.863564277000101 ], [ -119.33711264199999, 49.863548378000075 ], [ -119.336997669999988, 49.864335913000019 ], [ -119.341081526000011, 49.864585116000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93203667", "BldgCostT": "60386667", "sL_LossRatio": "0.99408994937205", "sL_AssetLoss": "9306.180854", "sL_BldgLoss": "9251.180854", "sL_StrLoss": "9231.300854", "sL_NStrLoss": "19.88", "sL_ContLoss": "55", "geom_point": "0101000020E610000061EAF00815D85DC0EF5A9DF75AEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.371971512999949, 49.881543035000057 ], [ -119.370360502, 49.879768086000084 ], [ -119.368818876999981, 49.877991858000044 ], [ -119.368553312999893, 49.877685873000054 ], [ -119.36831422899999, 49.876918087000035 ], [ -119.368311111999972, 49.87650698100002 ], [ -119.368424102999924, 49.876046886000019 ], [ -119.368521334, 49.875828645000055 ], [ -119.368905127999952, 49.874967089000087 ], [ -119.369053820999966, 49.874136197000105 ], [ -119.36904768199993, 49.873873709000101 ], [ -119.369039318999967, 49.873514809000092 ], [ -119.368950788999925, 49.873095802000122 ], [ -119.36885603399999, 49.872820972000085 ], [ -119.368776799999964, 49.872591187000104 ], [ -119.368501166999962, 49.87196679500007 ], [ -119.368311403999954, 49.871536887000033 ], [ -119.367990705999986, 49.870810305000063 ], [ -119.367941238999933, 49.870733463000114 ], [ -119.367776396999957, 49.87047750100006 ], [ -119.36746111399998, 49.87012868900004 ], [ -119.36697871599992, 49.869747185000065 ], [ -119.366391456999949, 49.869434196000014 ], [ -119.365858646999953, 49.869236582000035 ], [ -119.365223430999933, 49.869089576000114 ], [ -119.364586031999963, 49.869005691000083 ], [ -119.364106031999953, 49.868981610000048 ], [ -119.363056333999978, 49.868928969000109 ], [ -119.361863579, 49.868869991000111 ], [ -119.362129809999928, 49.86809590000005 ], [ -119.362223536999963, 49.86793179800005 ], [ -119.36238116, 49.867808613000086 ], [ -119.362570954999981, 49.86771358100011 ], [ -119.363361571999974, 49.867454579000089 ], [ -119.363752572999928, 49.867388036000065 ], [ -119.36379050799998, 49.867385324000054 ], [ -119.364054549999949, 49.867366435000079 ], [ -119.364469645, 49.867336781000105 ], [ -119.36483352499999, 49.867236059000078 ], [ -119.365066376999934, 49.867065963000137 ], [ -119.36517023, 49.866900933000061 ], [ -119.365465978999964, 49.866430939000097 ], [ -119.365430258999979, 49.865527455000091 ], [ -119.365407897999958, 49.864961181000105 ], [ -119.365399755999988, 49.864754483000041 ], [ -119.365391192999979, 49.864538771000063 ], [ -119.365348954999916, 49.863469550000083 ], [ -119.365193602999966, 49.86314489500004 ], [ -119.364161028999916, 49.862100368000029 ], [ -119.364085343999989, 49.862025337000091 ], [ -119.364033777999964, 49.861832530000086 ], [ -119.364260886999915, 49.861250241000036 ], [ -119.36466140099995, 49.860868149000055 ], [ -119.36499749299999, 49.860778652000107 ], [ -119.365105990999965, 49.860749750000124 ], [ -119.365811316999967, 49.8606535340001 ], [ -119.36654576399998, 49.860741544000078 ], [ -119.367194905999938, 49.860887921000078 ], [ -119.367450471999931, 49.860945535000049 ], [ -119.367723682999923, 49.860968450000051 ], [ -119.368212223999933, 49.860903312000069 ], [ -119.369072619999955, 49.860653009000018 ], [ -119.36927971399993, 49.860592414000024 ], [ -119.369508094999929, 49.860550871000065 ], [ -119.370355687999961, 49.860396788000173 ], [ -119.370598885000035, 49.86027969300013 ], [ -119.370980094999979, 49.859828695000019 ], [ -119.371315285999941, 49.85951120400005 ], [ -119.372124202999927, 49.858797185000064 ], [ -119.37241049499994, 49.858633899000012 ], [ -119.372744389000019, 49.858613598000105 ], [ -119.373164283, 49.858723091000137 ], [ -119.37371989899999, 49.858984414000098 ], [ -119.374282303999976, 49.859343709000044 ], [ -119.374602891999984, 49.859376705000024 ], [ -119.375013607999932, 49.859356492000053 ], [ -119.376118671999933, 49.859218839000114 ], [ -119.37667318199999, 49.859149742000106 ], [ -119.379313252000017, 49.858820757000032 ], [ -119.379649256, 49.85914987900005 ], [ -119.379683781999972, 49.859183712000117 ], [ -119.379935366000012, 49.859654189000103 ], [ -119.380088963999967, 49.860489064000049 ], [ -119.38023682699999, 49.861292727000063 ], [ -119.380228668999976, 49.861321392000036 ], [ -119.38013416099993, 49.861654094000052 ], [ -119.379971501999989, 49.861937736000129 ], [ -119.379976688999932, 49.862046438000093 ], [ -119.380185485999974, 49.862648859000018 ], [ -119.38027404899999, 49.862904412 ], [ -119.380205790999952, 49.863712213000028 ], [ -119.380243150999931, 49.863916797000087 ], [ -119.380282746999953, 49.863972538000077 ], [ -119.38038464399996, 49.864115933000072 ], [ -119.380495733999965, 49.864210713000041 ], [ -119.380904206999958, 49.864559271000083 ], [ -119.380978804000037, 49.864637635000065 ], [ -119.381447254999983, 49.865129585000069 ], [ -119.381709791, 49.865293618000038 ], [ -119.382234528999945, 49.865450980000027 ], [ -119.382634669999959, 49.865272926000117 ], [ -119.382978992999952, 49.865258575000034 ], [ -119.383349038999981, 49.865393892000029 ], [ -119.384173958999924, 49.86555580400011 ], [ -119.385393466, 49.865795140000095 ], [ -119.386304663999965, 49.865973949000058 ], [ -119.386338328999969, 49.865980563000043 ], [ -119.386909340999964, 49.866512779000054 ], [ -119.386948651999887, 49.866581750000087 ], [ -119.387213399999936, 49.867045999000062 ], [ -119.387428429999886, 49.867229718000011 ], [ -119.387953378999967, 49.867549608000047 ], [ -119.388085745999959, 49.867721016000075 ], [ -119.388112151999948, 49.867755203000058 ], [ -119.388316844999963, 49.868781845000093 ], [ -119.388543607999964, 49.869289579000046 ], [ -119.388589087999918, 49.869554264000023 ], [ -119.388597500999936, 49.870634006000088 ], [ -119.388750245999944, 49.871257383000106 ], [ -119.388781023999925, 49.871719871000074 ], [ -119.388884934999936, 49.871928452000105 ], [ -119.388912759999954, 49.871963637000086 ], [ -119.389477635, 49.872677815000074 ], [ -119.389584601999957, 49.872874867000036 ], [ -119.389631069999936, 49.873084502 ], [ -119.38960632499996, 49.873172001000071 ], [ -119.389548, 49.873378399000067 ], [ -119.389366462999973, 49.873541718000077 ], [ -119.388503546999971, 49.87400154900012 ], [ -119.388033404999987, 49.874174704000033 ], [ -119.38779809499998, 49.874261379000096 ], [ -119.387725118999967, 49.87457218800008 ], [ -119.387312209999948, 49.874818982000114 ], [ -119.387208507999901, 49.874907508000092 ], [ -119.387145066999949, 49.875010020000069 ], [ -119.387095396999939, 49.875090310000076 ], [ -119.387089979999985, 49.876678713000075 ], [ -119.387087790999885, 49.877311584000047 ], [ -119.387131408999977, 49.878310232000118 ], [ -119.386866514999923, 49.878472272000067 ], [ -119.386058297999966, 49.878746644000017 ], [ -119.38538707699999, 49.878856798000037 ], [ -119.384881244999974, 49.878866806000069 ], [ -119.384693017999936, 49.878873468000094 ], [ -119.383340034999975, 49.878665057 ], [ -119.382679183999954, 49.878625019 ], [ -119.382604596999926, 49.878620477000062 ], [ -119.38217681, 49.87864445500005 ], [ -119.381524784999925, 49.878681008000086 ], [ -119.379871851999923, 49.878773656000114 ], [ -119.379031778999916, 49.878862720000015 ], [ -119.378675716000018, 49.878928728000076 ], [ -119.37829186699993, 49.879050658000011 ], [ -119.378031193999973, 49.879133481000032 ], [ -119.377511440999967, 49.879354857000116 ], [ -119.376097830999953, 49.879996227000042 ], [ -119.375976833999985, 49.880051115000114 ], [ -119.375162548999953, 49.880472259000037 ], [ -119.373551646999928, 49.881693117000047 ], [ -119.372928797999947, 49.881921756000061 ], [ -119.372468020999946, 49.882092484000033 ], [ -119.372205747999942, 49.881801090000081 ], [ -119.371971512999949, 49.881543035000057 ] ], [ [ -119.374693946999969, 49.880579756000031 ], [ -119.374693773999979, 49.880576218000023 ], [ -119.374270597999953, 49.880550544000123 ], [ -119.37430311199995, 49.880326659000147 ], [ -119.37300736099999, 49.880248033000107 ], [ -119.372992192999973, 49.880352454000047 ], [ -119.374272854999973, 49.880430165000071 ], [ -119.374254998999945, 49.880553124000066 ], [ -119.374693946999969, 49.880579756000031 ] ], [ [ -119.382059574999943, 49.878594459000098 ], [ -119.382117424999947, 49.878195619000039 ], [ -119.381519366999967, 49.878159372000042 ], [ -119.381493711999966, 49.878336222000058 ], [ -119.38168303399999, 49.878332332000035 ], [ -119.381696300999977, 49.878601925000076 ], [ -119.382059574999943, 49.878594459000098 ] ], [ [ -119.377542794999897, 49.872211846000042 ], [ -119.37756672899999, 49.872046934000096 ], [ -119.377462326999947, 49.872040601000116 ], [ -119.377438393999938, 49.87220551300009 ], [ -119.377542794999897, 49.872211846000042 ] ], [ [ -119.385325145999971, 49.872171289000072 ], [ -119.385253242999966, 49.872667324000133 ], [ -119.386327649999913, 49.872732411000108 ], [ -119.386399540999946, 49.87223637400006 ], [ -119.385325145999971, 49.872171289000072 ] ], [ [ -119.372009890999962, 49.865606311000072 ], [ -119.372089020999951, 49.865061427000114 ], [ -119.368796179999961, 49.864861449000053 ], [ -119.36871313599994, 49.865433008000061 ], [ -119.37197148199999, 49.865630891000102 ], [ -119.37197535599995, 49.86560421500009 ], [ -119.372009890999962, 49.865606311000072 ] ], [ [ -119.375281139999942, 49.862887095000126 ], [ -119.375330837999968, 49.862544681000017 ], [ -119.374513934999982, 49.862495101000071 ], [ -119.37446422899994, 49.862837514000056 ], [ -119.375281139999942, 49.862887095000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234466752", "BldgCostT": "156205958", "sL_LossRatio": "0.991449173603616", "sL_AssetLoss": "14571.690995", "sL_BldgLoss": "14447.090995", "sL_StrLoss": "14402.000995", "sL_NStrLoss": "45.09", "sL_ContLoss": "124.6", "geom_point": "0101000020E6100000F550AA9617D85DC09003650921F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.376159823999942, 49.893881098000065 ], [ -119.376148081999986, 49.892614201000086 ], [ -119.375533910999962, 49.89260659800005 ], [ -119.374895334999934, 49.892598720000073 ], [ -119.374264575999973, 49.892598952000057 ], [ -119.373986363999975, 49.892599054000087 ], [ -119.373592654000021, 49.892599191000059 ], [ -119.369318746999966, 49.892588176000082 ], [ -119.369387464999974, 49.892541856000044 ], [ -119.369568407999949, 49.892420005000105 ], [ -119.369578558999976, 49.892411642000063 ], [ -119.369896073999925, 49.892151165000094 ], [ -119.370326883999951, 49.891797719000039 ], [ -119.371718415999965, 49.890685497000099 ], [ -119.372462478999921, 49.89020049800007 ], [ -119.372818491000018, 49.890020696000072 ], [ -119.373761696, 49.889656214000084 ], [ -119.373784670999925, 49.889645813000101 ], [ -119.374409385999968, 49.889363102000125 ], [ -119.374733813999967, 49.889249312000032 ], [ -119.374990986999947, 49.889159101000089 ], [ -119.375310004999946, 49.889070087000093 ], [ -119.375602392999937, 49.889029098000051 ], [ -119.375787895999949, 49.889029582000056 ], [ -119.376302305999957, 49.889030897000104 ], [ -119.376760607000023, 49.889089399000042 ], [ -119.37710810899992, 49.889323595000086 ], [ -119.377256093999918, 49.889363314000029 ], [ -119.377392266999948, 49.889358892000132 ], [ -119.377398094999961, 49.88901059200002 ], [ -119.37856719299999, 49.889014710000033 ], [ -119.37857627699999, 49.890117100000076 ], [ -119.378557606999948, 49.891179797000099 ], [ -119.378548010999978, 49.891650587000115 ], [ -119.378585698999956, 49.891756816000047 ], [ -119.378738678999952, 49.891809410000072 ], [ -119.379103805999932, 49.891827003000117 ], [ -119.380737312999926, 49.891828491000048 ], [ -119.383985704999958, 49.891835579000052 ], [ -119.383987191999978, 49.892643986000067 ], [ -119.380884794999957, 49.892623110000052 ], [ -119.380884597999938, 49.893348397000054 ], [ -119.380884383999955, 49.894041014000024 ], [ -119.378976394999953, 49.8940427900001 ], [ -119.378177989999983, 49.893939289000102 ], [ -119.376159823999942, 49.893881098000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137941717", "BldgCostT": "83330144", "sL_LossRatio": "0.962735557252083", "sL_AssetLoss": "12884.161592", "sL_BldgLoss": "12404.04049", "sL_StrLoss": "12228.48438", "sL_NStrLoss": "175.55611", "sL_ContLoss": "480.121102", "geom_point": "0101000020E6100000D57114A482D85DC0A17B5A6EFEF14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.383987191999978, 49.892643986000067 ], [ -119.383985704999958, 49.891835579000052 ], [ -119.380737312999926, 49.891828491000048 ], [ -119.379103805999932, 49.891827003000117 ], [ -119.378738678999952, 49.891809410000072 ], [ -119.378585698999956, 49.891756816000047 ], [ -119.378548010999978, 49.891650587000115 ], [ -119.378557606999948, 49.891179797000099 ], [ -119.37857627699999, 49.890117100000076 ], [ -119.37856719299999, 49.889014710000033 ], [ -119.379749516999979, 49.889005102000063 ], [ -119.380795089999964, 49.889003401000068 ], [ -119.381133498999958, 49.889002206000058 ], [ -119.381927589999961, 49.888999802000093 ], [ -119.383918117999983, 49.888986702000139 ], [ -119.385350510999984, 49.888977707000066 ], [ -119.386858008999951, 49.888970608000086 ], [ -119.38686328799993, 49.890104491000095 ], [ -119.386865423999922, 49.890563093000033 ], [ -119.386870900999938, 49.891741211000117 ], [ -119.386872800999953, 49.892145886000037 ], [ -119.3868749, 49.892642800000054 ], [ -119.385274900999917, 49.892640690000093 ], [ -119.384622782999955, 49.892646396000032 ], [ -119.383987191999978, 49.892643986000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "64450688", "BldgCostT": "41345824", "sL_LossRatio": "0.999985719275355", "sL_AssetLoss": "6229.025642", "sL_BldgLoss": "6228.936687", "sL_StrLoss": "6228.013997", "sL_NStrLoss": "0.92269", "sL_ContLoss": "0.088955", "geom_point": "0101000020E61000005FD1943A94D85DC0DFDD77CA72F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.382342675999979, 49.895791103000064 ], [ -119.382336593999966, 49.89485060800007 ], [ -119.380868794999969, 49.894870998000052 ], [ -119.380884383999955, 49.894041014000024 ], [ -119.380884597999938, 49.893348397000054 ], [ -119.380884794999957, 49.892623110000052 ], [ -119.383987191999978, 49.892643986000067 ], [ -119.384622782999955, 49.892646396000032 ], [ -119.385274900999917, 49.892640690000093 ], [ -119.3868749, 49.892642800000054 ], [ -119.38687491899999, 49.893336400000031 ], [ -119.386875736999954, 49.893747986000101 ], [ -119.386876387999934, 49.894077887000044 ], [ -119.386875510999957, 49.8950677 ], [ -119.386870290999966, 49.89574918300012 ], [ -119.38535310499995, 49.895801911000021 ], [ -119.382342675999979, 49.895791103000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "370602092", "BldgCostT": "233377317", "sL_LossRatio": "0.946837922035185", "sL_AssetLoss": "11731.475967", "sL_BldgLoss": "11107.806327", "sL_StrLoss": "10871.92644", "sL_NStrLoss": "235.879887", "sL_ContLoss": "623.66964", "geom_point": "0101000020E61000002C550661F0D85DC04860632C0DF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.392031126999953, 49.888969009000064 ], [ -119.392842613999946, 49.888967002000093 ], [ -119.392829993999939, 49.890018405000063 ], [ -119.392804794999918, 49.892150907000079 ], [ -119.392040487999964, 49.892145231000022 ], [ -119.39118817399995, 49.892138898000049 ], [ -119.391204616999957, 49.893356402000066 ], [ -119.38687491899999, 49.893336400000031 ], [ -119.3868749, 49.892642800000054 ], [ -119.386872800999953, 49.892145886000037 ], [ -119.386870900999938, 49.891741211000117 ], [ -119.386865423999922, 49.890563093000033 ], [ -119.38686328799993, 49.890104491000095 ], [ -119.386858008999951, 49.888970608000086 ], [ -119.388595727999984, 49.888966501000013 ], [ -119.38975450599996, 49.888974303000083 ], [ -119.391222282999976, 49.888971015000024 ], [ -119.392031126999953, 49.888969009000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019808", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "293272157", "BldgCostT": "181776236", "sL_LossRatio": "0.967855171381355", "sL_AssetLoss": "22610.204852", "sL_BldgLoss": "21883.403692", "sL_StrLoss": "21608.192992", "sL_NStrLoss": "275.2107", "sL_ContLoss": "726.80116", "geom_point": "0101000020E610000007B9A5172DD95DC0235EB76B36F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.39815851099999, 49.889011361000065 ], [ -119.399578796999947, 49.889022097000066 ], [ -119.399540701999939, 49.889855095000065 ], [ -119.399367099999921, 49.89021489700005 ], [ -119.399087008999956, 49.890508704000098 ], [ -119.398491111999959, 49.890860103000101 ], [ -119.398222885999985, 49.891071403000154 ], [ -119.398138214999918, 49.891173794000103 ], [ -119.397993377999953, 49.891353796000061 ], [ -119.397897621999917, 49.891561990000064 ], [ -119.397840604999885, 49.892168211000033 ], [ -119.395963615999946, 49.892149504000017 ], [ -119.394379613999917, 49.892153108000088 ], [ -119.39435390499996, 49.895351301000105 ], [ -119.39351160699999, 49.895347288000011 ], [ -119.39276179699999, 49.895342610000142 ], [ -119.391185918999938, 49.895337597000058 ], [ -119.390469710999952, 49.895342096000057 ], [ -119.389899002999968, 49.895344598000058 ], [ -119.389248798999915, 49.895346798000098 ], [ -119.389053109, 49.895346702000047 ], [ -119.388682428999971, 49.895397399000053 ], [ -119.388308779999974, 49.89549988400006 ], [ -119.388078293999982, 49.895563116000119 ], [ -119.387615602999929, 49.89569861100005 ], [ -119.387245584999931, 49.895743907000089 ], [ -119.386870290999966, 49.89574918300012 ], [ -119.386875510999957, 49.8950677 ], [ -119.386876387999934, 49.894077887000044 ], [ -119.386875736999954, 49.893747986000101 ], [ -119.38687491899999, 49.893336400000031 ], [ -119.391204616999957, 49.893356402000066 ], [ -119.39118817399995, 49.892138898000049 ], [ -119.392040487999964, 49.892145231000022 ], [ -119.392804794999918, 49.892150907000079 ], [ -119.392829993999939, 49.890018405000063 ], [ -119.392842613999946, 49.888967002000093 ], [ -119.393686749999986, 49.888974636000071 ], [ -119.393715670999953, 49.888974889000039 ], [ -119.393909144999952, 49.888976650000046 ], [ -119.395500161999976, 49.888991026000063 ], [ -119.395583572999968, 49.888991766000061 ], [ -119.395652011999942, 49.888992404000099 ], [ -119.395890034000018, 49.888994208000078 ], [ -119.396117190999959, 49.88899593200005 ], [ -119.396751947999945, 49.889000739000025 ], [ -119.396880218999968, 49.889001714000059 ], [ -119.397100114999915, 49.889003361000064 ], [ -119.397159458999937, 49.889003817000116 ], [ -119.397433755999941, 49.889005890000064 ], [ -119.398115529999927, 49.889011047000068 ], [ -119.39815851099999, 49.889011361000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248752312", "BldgCostT": "163148191", "sL_LossRatio": "0.992449136467247", "sL_AssetLoss": "18295.536451", "sL_BldgLoss": "18157.389352", "sL_StrLoss": "18099.555442", "sL_NStrLoss": "57.83391", "sL_ContLoss": "138.147099", "geom_point": "0101000020E6100000B95BF52D71D85DC069000DA110F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.383910967999952, 49.901275125000055 ], [ -119.383910404999966, 49.901151198000044 ], [ -119.383451510999961, 49.901164093000013 ], [ -119.380585881999977, 49.901490804000076 ], [ -119.37996451, 49.901592196000131 ], [ -119.378665498, 49.901768224000136 ], [ -119.377027148999929, 49.901768226000108 ], [ -119.37702210799992, 49.900004012000053 ], [ -119.37702174899999, 49.899880400000015 ], [ -119.376996795999943, 49.898050085000115 ], [ -119.37589819399993, 49.898040407000096 ], [ -119.375096710999955, 49.898033588000054 ], [ -119.374651472000011, 49.898029776000094 ], [ -119.374723682999942, 49.896840179000023 ], [ -119.374792311999968, 49.896704373000034 ], [ -119.37505218299999, 49.896666881000094 ], [ -119.3770047, 49.896676892000116 ], [ -119.377019111999971, 49.896288381000097 ], [ -119.377038305999946, 49.895772203000021 ], [ -119.382342675999979, 49.895791103000064 ], [ -119.38535310499995, 49.895801911000021 ], [ -119.386870290999966, 49.89574918300012 ], [ -119.38686831399994, 49.89592960000008 ], [ -119.386860707999972, 49.896616849000061 ], [ -119.386840962999926, 49.898401113000062 ], [ -119.386837703999973, 49.898695618000033 ], [ -119.386823758999952, 49.899954857000125 ], [ -119.386823752999973, 49.900000398 ], [ -119.386823614999955, 49.901160500000074 ], [ -119.386823992999922, 49.902247003000063 ], [ -119.38682527499999, 49.902771378000118 ], [ -119.386827292999953, 49.903612692000088 ], [ -119.385514287999939, 49.903605395000092 ], [ -119.384040001999963, 49.903602009000053 ], [ -119.384027918999948, 49.903357392000046 ], [ -119.383941681999914, 49.903074904000036 ], [ -119.383927, 49.902800400000046 ], [ -119.3839150099999, 49.902131400000094 ], [ -119.383910967999952, 49.901275125000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269564950", "BldgCostT": "182852213", "sL_LossRatio": "0.997082666057356", "sL_AssetLoss": "15945.89475", "sL_BldgLoss": "15899.37525", "sL_StrLoss": "15878.55725", "sL_NStrLoss": "20.818", "sL_ContLoss": "46.5195", "geom_point": "0101000020E61000002FBE688F57D85DC0EB8E8B8B9FF34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377759107999935, 49.904544482000091 ], [ -119.377767505999913, 49.903649096 ], [ -119.37702332399999, 49.903690696000076 ], [ -119.376213625, 49.903683181000105 ], [ -119.376213823999962, 49.902796329000054 ], [ -119.376150544999973, 49.902577550000125 ], [ -119.375927005999955, 49.902202130000084 ], [ -119.375915659, 49.90218311500012 ], [ -119.375935009999978, 49.90175168000011 ], [ -119.377027148999929, 49.901768226000108 ], [ -119.378665498, 49.901768224000136 ], [ -119.37996451, 49.901592196000131 ], [ -119.380585881999977, 49.901490804000076 ], [ -119.383451510999961, 49.901164093000013 ], [ -119.383910404999966, 49.901151198000044 ], [ -119.383910967999952, 49.901275125000055 ], [ -119.3839150099999, 49.902131400000094 ], [ -119.383927, 49.902800400000046 ], [ -119.383941681999914, 49.903074904000036 ], [ -119.384027918999948, 49.903357392000046 ], [ -119.384040001999963, 49.903602009000053 ], [ -119.383293497999972, 49.903601907000052 ], [ -119.38329041, 49.904509286000099 ], [ -119.383304102999944, 49.905426796 ], [ -119.381413244999948, 49.905422329000068 ], [ -119.381199813999984, 49.905421817000153 ], [ -119.379673294999947, 49.905418194000042 ], [ -119.378358415999941, 49.905417731000085 ], [ -119.377738592999961, 49.905417506000042 ], [ -119.377759107999935, 49.904544482000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229492803", "BldgCostT": "146513746", "sL_LossRatio": "0.996436525899375", "sL_AssetLoss": "17960.001446", "sL_BldgLoss": "17896.001446", "sL_StrLoss": "17872.801446", "sL_NStrLoss": "23.2", "sL_ContLoss": "64", "geom_point": "0101000020E610000094E5880841D85DC0450A23C519F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.385514287999939, 49.903605395000092 ], [ -119.386827292999953, 49.903612692000088 ], [ -119.386818464, 49.904571068000038 ], [ -119.386810896, 49.905390007000065 ], [ -119.386810405999896, 49.90544489100008 ], [ -119.38679729699993, 49.906884596000069 ], [ -119.38679338799993, 49.907249204000102 ], [ -119.386787297999959, 49.907705799000084 ], [ -119.386771578999941, 49.908736257000086 ], [ -119.386764790999933, 49.909180997000092 ], [ -119.384622014999962, 49.909177689000046 ], [ -119.384003607999958, 49.909176552000119 ], [ -119.381091285999943, 49.909171048000104 ], [ -119.379650320999971, 49.909168303000101 ], [ -119.378611273999965, 49.909166616000086 ], [ -119.378304725999911, 49.909166117000026 ], [ -119.372816383999989, 49.909157036000089 ], [ -119.36989372, 49.909152100000078 ], [ -119.369906744999966, 49.907121261000057 ], [ -119.369908730999953, 49.906806468000049 ], [ -119.369917709999967, 49.905410104000104 ], [ -119.372438259999967, 49.905412566000052 ], [ -119.372772626999975, 49.905412872000085 ], [ -119.373204395999977, 49.905413294000063 ], [ -119.373524423999967, 49.905413586000073 ], [ -119.375418954999986, 49.905415349000052 ], [ -119.377738592999961, 49.905417506000042 ], [ -119.378358415999941, 49.905417731000085 ], [ -119.379673294999947, 49.905418194000042 ], [ -119.381199813999984, 49.905421817000153 ], [ -119.381413244999948, 49.905422329000068 ], [ -119.383304102999944, 49.905426796 ], [ -119.38329041, 49.904509286000099 ], [ -119.383293497999972, 49.903601907000052 ], [ -119.384040001999963, 49.903602009000053 ], [ -119.385514287999939, 49.903605395000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "156865167", "BldgCostT": "104081667", "sL_LossRatio": "0.998522113086853", "sL_AssetLoss": "12314.88000746", "sL_BldgLoss": "12296.68000746", "sL_StrLoss": "12290.10000746", "sL_NStrLoss": "6.58", "sL_ContLoss": "18.2", "geom_point": "0101000020E6100000E13D7BECB6D75DC08B60DA3F68F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.367209620999986, 49.896530565000027 ], [ -119.367056371999979, 49.896507724000045 ], [ -119.366853320999923, 49.896529702000088 ], [ -119.366392334999929, 49.896652529000029 ], [ -119.364821111, 49.897076425000073 ], [ -119.364290683999911, 49.897148062000085 ], [ -119.364328505999978, 49.891690880000056 ], [ -119.364293502999928, 49.889990804000092 ], [ -119.364322886999958, 49.889692799000052 ], [ -119.365250122999939, 49.889336272000016 ], [ -119.366043022999975, 49.889031393000089 ], [ -119.367302850999948, 49.888719058000106 ], [ -119.367344982999953, 49.888708595000082 ], [ -119.368012694999933, 49.888604606000051 ], [ -119.369462404, 49.888543584000097 ], [ -119.369781098999979, 49.888648792000048 ], [ -119.369947240999963, 49.888793783000025 ], [ -119.370330579999987, 49.889128296000131 ], [ -119.370402317999947, 49.889240095000055 ], [ -119.370397284999939, 49.890803998000131 ], [ -119.370197106999967, 49.891508121000122 ], [ -119.37020589499997, 49.891668527 ], [ -119.370326883999951, 49.891797719000039 ], [ -119.369896073999925, 49.892151165000094 ], [ -119.369578558999976, 49.892411642000063 ], [ -119.369568407999949, 49.892420005000105 ], [ -119.369387464999974, 49.892541856000044 ], [ -119.369318746999966, 49.892588176000082 ], [ -119.373592654000021, 49.892599191000059 ], [ -119.373986363999975, 49.892599054000087 ], [ -119.374264575999973, 49.892598952000057 ], [ -119.374895334999934, 49.892598720000073 ], [ -119.375533910999962, 49.89260659800005 ], [ -119.376148081999986, 49.892614201000086 ], [ -119.376159823999942, 49.893881098000065 ], [ -119.378177989999983, 49.893939289000102 ], [ -119.378976394999953, 49.8940427900001 ], [ -119.380884383999955, 49.894041014000024 ], [ -119.380868794999969, 49.894870998000052 ], [ -119.382336593999966, 49.89485060800007 ], [ -119.382342675999979, 49.895791103000064 ], [ -119.377038305999946, 49.895772203000021 ], [ -119.377019111999971, 49.896288381000097 ], [ -119.3770047, 49.896676892000116 ], [ -119.37505218299999, 49.896666881000094 ], [ -119.374792311999968, 49.896704373000034 ], [ -119.374723682999942, 49.896840179000023 ], [ -119.374651472000011, 49.898029776000094 ], [ -119.374174363999956, 49.898023428 ], [ -119.374012914999952, 49.897980214000036 ], [ -119.373891318999981, 49.897874389000087 ], [ -119.37381123599999, 49.897671673000055 ], [ -119.373575545999984, 49.897074943000099 ], [ -119.37315978299992, 49.896300123000039 ], [ -119.372912138999951, 49.896013270000061 ], [ -119.372681113999931, 49.895890879000063 ], [ -119.372465332999937, 49.895856116000139 ], [ -119.37165264, 49.895874908000117 ], [ -119.371441548999954, 49.895879796000088 ], [ -119.371174729999936, 49.895965736000043 ], [ -119.371116008999962, 49.895984663000043 ], [ -119.370989832999967, 49.896131460000106 ], [ -119.370987732999978, 49.896261249000126 ], [ -119.370986857999924, 49.896315502000043 ], [ -119.371183893999927, 49.896835009000043 ], [ -119.371162190999911, 49.897032386000078 ], [ -119.371076329999937, 49.897238501000075 ], [ -119.370875260999938, 49.897429513000112 ], [ -119.370711161999964, 49.897519798000125 ], [ -119.370609617999932, 49.8975495890001 ], [ -119.37045858099999, 49.89759388100007 ], [ -119.369685356999966, 49.897672502000042 ], [ -119.369044709, 49.89790635500006 ], [ -119.368787243999961, 49.897917818000046 ], [ -119.368652463999922, 49.897892849000087 ], [ -119.368497318999957, 49.897864102000064 ], [ -119.367604871999902, 49.897189259000086 ], [ -119.367581811999941, 49.89717180600006 ], [ -119.367328689999965, 49.896605522000094 ], [ -119.367209620999986, 49.896530565000027 ] ], [ [ -119.371062212999945, 49.893798570000079 ], [ -119.371200044999952, 49.892850208000013 ], [ -119.369867117999888, 49.892877473000077 ], [ -119.369908822999946, 49.893728570000057 ], [ -119.371062212999945, 49.893798570000079 ] ], [ [ -119.368992871, 49.892085750000078 ], [ -119.368960600999969, 49.891426895000087 ], [ -119.368879990999943, 49.891981370000082 ], [ -119.36770798, 49.891910214000042 ], [ -119.36768929699997, 49.892038709000069 ], [ -119.367711755999949, 49.892040073000089 ], [ -119.367701276999981, 49.892112145000056 ], [ -119.368992871, 49.892085750000078 ] ], [ [ -119.369304533999937, 49.889920452000069 ], [ -119.369273046999922, 49.889277602000043 ], [ -119.369179225999929, 49.889923014000054 ], [ -119.369304533999937, 49.889920452000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84357583", "BldgCostT": "55288333", "sL_LossRatio": "0.999976867769665", "sL_AssetLoss": "8468.7035", "sL_BldgLoss": "8468.5076", "sL_StrLoss": "8467.0676", "sL_NStrLoss": "1.44", "sL_ContLoss": "0.1959", "geom_point": "0101000020E6100000756669443CDA5DC04136B9AD67F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.411282003999972, 49.892189604000087 ], [ -119.412551215999954, 49.892178493000095 ], [ -119.412568092999933, 49.892574199000137 ], [ -119.412609292999917, 49.892675986000079 ], [ -119.412771789999923, 49.893069601000057 ], [ -119.41282159, 49.893315512000072 ], [ -119.412817601999947, 49.893671992000094 ], [ -119.412798109999983, 49.89474884700013 ], [ -119.412790494999939, 49.895171380000072 ], [ -119.412786575999959, 49.895386883000128 ], [ -119.41109580599999, 49.895384301000043 ], [ -119.409938022999924, 49.895383185000071 ], [ -119.409423125999922, 49.895382706000127 ], [ -119.40872820899996, 49.895384103000019 ], [ -119.407121606999951, 49.895379290000051 ], [ -119.407107917999923, 49.892718911000067 ], [ -119.407062810999932, 49.892150806000132 ], [ -119.407718392999953, 49.892159701000018 ], [ -119.408775898999963, 49.892171995000055 ], [ -119.409960410999972, 49.892182409000029 ], [ -119.410155647999957, 49.892184127000093 ], [ -119.410265221999978, 49.892185108000049 ], [ -119.411082204999957, 49.892189192000089 ], [ -119.411282003999972, 49.892189604000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "217042505", "BldgCostT": "128678380", "sL_LossRatio": "0.952104276755946", "sL_AssetLoss": "16572.836701", "sL_BldgLoss": "15779.068701", "sL_StrLoss": "15484.077701", "sL_NStrLoss": "294.991", "sL_ContLoss": "793.768", "geom_point": "0101000020E610000068F47BACEAD95DC081976C7EF4F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398255603999985, 49.90083950000011 ], [ -119.397933001999959, 49.900093890000065 ], [ -119.397933790999929, 49.89999655000004 ], [ -119.397947750999947, 49.898250884000156 ], [ -119.397957896999912, 49.896987002000046 ], [ -119.397964422999976, 49.896189001000039 ], [ -119.397940204999927, 49.895371189000031 ], [ -119.399305501999905, 49.895372399000081 ], [ -119.40000364399998, 49.8953749040001 ], [ -119.400974855999948, 49.895378426000072 ], [ -119.401896902999951, 49.895378898000025 ], [ -119.402676354999926, 49.895379285000075 ], [ -119.403688944999928, 49.895379796000064 ], [ -119.405419936999962, 49.895381342000078 ], [ -119.405586702999983, 49.895381467000107 ], [ -119.407121606999951, 49.895379290000051 ], [ -119.40872820899996, 49.895384103000019 ], [ -119.409423125999922, 49.895382706000127 ], [ -119.409938022999924, 49.895383185000071 ], [ -119.41109580599999, 49.895384301000043 ], [ -119.412786575999959, 49.895386883000128 ], [ -119.413524638999945, 49.895386228000127 ], [ -119.414223235999941, 49.895387729000078 ], [ -119.414421532999924, 49.895388842000109 ], [ -119.414087351999925, 49.895747973000027 ], [ -119.412387822999975, 49.897577093000059 ], [ -119.409226527999934, 49.90097898700008 ], [ -119.408951347999903, 49.901277556000046 ], [ -119.408760541999968, 49.901253401000126 ], [ -119.408247553999928, 49.901195363000099 ], [ -119.406760206999948, 49.901185991000034 ], [ -119.406604123999969, 49.90118559600009 ], [ -119.40601886899999, 49.901184191000063 ], [ -119.404094097999945, 49.90117949600004 ], [ -119.403206839999967, 49.901179865000131 ], [ -119.402341096999919, 49.901180193000108 ], [ -119.40226946199999, 49.901179116 ], [ -119.400977488999928, 49.901175507000104 ], [ -119.400309928999931, 49.901174728000086 ], [ -119.400003367999943, 49.901174377000054 ], [ -119.398295499999975, 49.901172403000054 ], [ -119.398255603999985, 49.90083950000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1193184145", "BldgCostT": "824125539", "sL_LossRatio": "0.957307449405218", "sL_AssetLoss": "19660.812444", "sL_BldgLoss": "18821.442214", "sL_StrLoss": "16834.297914", "sL_NStrLoss": "1987.1443", "sL_ContLoss": "839.37023", "geom_point": "0101000020E6100000F8A4F1B0B5DE5DC058528259FCED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.474371994999942, 49.857830863000103 ], [ -119.474380384999918, 49.857429288000034 ], [ -119.475809174999981, 49.857593278000053 ], [ -119.476241782, 49.85761460500003 ], [ -119.477229946999955, 49.85763753600007 ], [ -119.477772471999984, 49.857651907000069 ], [ -119.479174162999982, 49.857663396000113 ], [ -119.481590056999949, 49.857662310000094 ], [ -119.48250459599997, 49.85766271800005 ], [ -119.483566318999962, 49.857659303000112 ], [ -119.485395426, 49.85766012100008 ], [ -119.48539556299994, 49.858490906000043 ], [ -119.485394789999987, 49.858860745000122 ], [ -119.48539430299995, 49.859086842000139 ], [ -119.485393500999976, 49.859355873000034 ], [ -119.485392373999971, 49.859742863000051 ], [ -119.485391524999955, 49.860040006000126 ], [ -119.485390950999928, 49.860230024 ], [ -119.48539042099999, 49.860410428000137 ], [ -119.485388924999938, 49.86091519400005 ], [ -119.484212857999978, 49.860907285000039 ], [ -119.483571317999946, 49.860901512000048 ], [ -119.480832779999929, 49.860882487000062 ], [ -119.479927753999945, 49.860882741000076 ], [ -119.478123535999927, 49.860883210000097 ], [ -119.476765911999962, 49.86088386300009 ], [ -119.476112409999956, 49.860884153000086 ], [ -119.47567956599994, 49.86088435900006 ], [ -119.474308189999959, 49.860884553000105 ], [ -119.474332870999945, 49.859703826000036 ], [ -119.47434112799999, 49.859307885000085 ], [ -119.474341994999975, 49.859266808000044 ], [ -119.474366163999917, 49.858109644000045 ], [ -119.474371994999942, 49.857830863000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189967750", "BldgCostT": "126205000", "sL_LossRatio": "0.995320859730914", "sL_AssetLoss": "19001.8340308", "sL_BldgLoss": "18912.921784", "sL_StrLoss": "18877.768774", "sL_NStrLoss": "35.15301", "sL_ContLoss": "88.9122468", "geom_point": "0101000020E6100000F3DC9D1015DF5DC0D0DF3AB5E9E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.483221416999967, 49.832098381000073 ], [ -119.483230828, 49.831774904000049 ], [ -119.483246401999963, 49.831238337000073 ], [ -119.483247344999924, 49.830345371000085 ], [ -119.483247945999921, 49.829779952000088 ], [ -119.483229201999947, 49.828492912000058 ], [ -119.481740373999983, 49.828521293000094 ], [ -119.481730391999946, 49.828200090000017 ], [ -119.481599895999977, 49.827686613000061 ], [ -119.481549213, 49.82584128400012 ], [ -119.481890213999947, 49.825798390000088 ], [ -119.483190214999965, 49.825811994000098 ], [ -119.483188376999962, 49.825686859000029 ], [ -119.483182523999957, 49.825278696000055 ], [ -119.483171521999935, 49.824491102000124 ], [ -119.483164210999945, 49.823969053000049 ], [ -119.48318664199995, 49.822970650000073 ], [ -119.484940467999962, 49.823000473000128 ], [ -119.488679862999973, 49.822853520000059 ], [ -119.488722272999922, 49.825258247000114 ], [ -119.48871988799999, 49.825754794000026 ], [ -119.488713718999961, 49.826385697000013 ], [ -119.488709435999965, 49.827011888000051 ], [ -119.488708097999947, 49.827208084000127 ], [ -119.488701278999912, 49.828259208000084 ], [ -119.488698608999954, 49.828675005000029 ], [ -119.488695423999957, 49.829191142000063 ], [ -119.488691769999932, 49.829788574000126 ], [ -119.48868540399999, 49.830823494000064 ], [ -119.488625891999931, 49.831113414000107 ], [ -119.488464381999947, 49.831414503000126 ], [ -119.48823160699996, 49.831676893000129 ], [ -119.487635466, 49.832187674000082 ], [ -119.487328609999949, 49.832117873000122 ], [ -119.487013076999929, 49.832099050000117 ], [ -119.483221416999967, 49.832098381000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "76.1", "sL_BldgLoss": "76.1", "sL_StrLoss": "76.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079EB579518DE5DC0C931A3691AEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.470379443999931, 49.844378844000111 ], [ -119.470561467999971, 49.844308406000032 ], [ -119.470504544999955, 49.844706566000056 ], [ -119.469704338999975, 49.844658682000073 ], [ -119.469949315999941, 49.844545294000113 ], [ -119.470379443999931, 49.844378844000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228309085", "BldgCostT": "149618335", "sL_LossRatio": "0.999573354414468", "sL_AssetLoss": "23274.44684", "sL_BldgLoss": "23264.5169", "sL_StrLoss": "23216.1362", "sL_NStrLoss": "48.3807", "sL_ContLoss": "9.92994", "geom_point": "0101000020E610000080160104A2DE5DC064AC0D807EEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.471208758999921, 49.849406462000026 ], [ -119.469587277999935, 49.848834434000061 ], [ -119.469475818999967, 49.848910835000012 ], [ -119.469317707999892, 49.848932993000084 ], [ -119.469170560999927, 49.848888071000026 ], [ -119.469089969999956, 49.848797445000052 ], [ -119.469107587999986, 49.848693750000081 ], [ -119.469217922999974, 49.848615469000073 ], [ -119.467358524999895, 49.846264235 ], [ -119.471359966999927, 49.846503705000025 ], [ -119.471336455999932, 49.846668150000035 ], [ -119.472296448999913, 49.846725579000164 ], [ -119.472173596999951, 49.84758496400007 ], [ -119.472537066999948, 49.847606705000068 ], [ -119.4729691899999, 49.844583574000048 ], [ -119.477199811999981, 49.844836544000096 ], [ -119.477526758999943, 49.842547476000057 ], [ -119.478497510999929, 49.842510108000049 ], [ -119.48048440699999, 49.842171110000081 ], [ -119.481005300999968, 49.842024412000086 ], [ -119.481049199999944, 49.842005593000032 ], [ -119.481301498999954, 49.842020666000082 ], [ -119.481295323999973, 49.841900079000084 ], [ -119.482243948999894, 49.841493392000132 ], [ -119.482216108000017, 49.84204885000004 ], [ -119.482061872999978, 49.842542646000034 ], [ -119.481724193999966, 49.843148288000101 ], [ -119.481511184999988, 49.84346700600004 ], [ -119.480670493999966, 49.844720005000035 ], [ -119.480136928999926, 49.845515224000053 ], [ -119.48123180499995, 49.845543927000072 ], [ -119.482533259999954, 49.845577999000106 ], [ -119.482795820999968, 49.845585368000044 ], [ -119.48310332799997, 49.845593975000064 ], [ -119.484830408999954, 49.845644267000068 ], [ -119.485080190999952, 49.845651513000085 ], [ -119.485263996999947, 49.845656617000039 ], [ -119.487631717999989, 49.845722536000018 ], [ -119.48738324499999, 49.846290190000026 ], [ -119.486746191999913, 49.847201936000083 ], [ -119.486630825999924, 49.847367003000052 ], [ -119.4865588279999, 49.847470034 ], [ -119.48633696899999, 49.847997715000083 ], [ -119.4861971699999, 49.848713635000067 ], [ -119.486301250999986, 49.849383583000062 ], [ -119.486595708, 49.850245516000058 ], [ -119.485918378999955, 49.850521139000072 ], [ -119.485577086, 49.850662422000084 ], [ -119.485172454999969, 49.850827011000064 ], [ -119.483813294999948, 49.851379798000082 ], [ -119.48283028699997, 49.851781665000047 ], [ -119.482621278999886, 49.851838246000057 ], [ -119.482297296999917, 49.851925947000062 ], [ -119.481843001999934, 49.851998142000099 ], [ -119.481437786999948, 49.852010060000097 ], [ -119.480524193999926, 49.851954603000081 ], [ -119.48038967599993, 49.851917295000113 ], [ -119.478921992999943, 49.851510294000072 ], [ -119.476815366999986, 49.85095075600006 ], [ -119.476557297999932, 49.850882223000013 ], [ -119.473941046999954, 49.850160393000131 ], [ -119.471250983999965, 49.849418122000053 ], [ -119.471208758999921, 49.849406462000026 ] ], [ [ -119.478577541, 49.846689671000028 ], [ -119.478658739999943, 49.846121095000044 ], [ -119.478336258999931, 49.84610182300009 ], [ -119.478255056999942, 49.846670398000072 ], [ -119.478577541, 49.846689671000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "898503803", "BldgCostT": "623068746", "sL_LossRatio": "0.987048729519042", "sL_AssetLoss": "14360.51276", "sL_BldgLoss": "14174.525875", "sL_StrLoss": "14102.952285", "sL_NStrLoss": "71.57359", "sL_ContLoss": "185.986885", "geom_point": "0101000020E610000079C2C737C6D95DC0C27B27C967F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.405887772999975, 49.892138608000053 ], [ -119.407062810999932, 49.892150806000132 ], [ -119.407107917999923, 49.892718911000067 ], [ -119.407121606999951, 49.895379290000051 ], [ -119.405586702999983, 49.895381467000107 ], [ -119.405419936999962, 49.895381342000078 ], [ -119.403688944999928, 49.895379796000064 ], [ -119.402676354999926, 49.895379285000075 ], [ -119.401896902999951, 49.895378898000025 ], [ -119.400974855999948, 49.895378426000072 ], [ -119.40000364399998, 49.8953749040001 ], [ -119.399305501999905, 49.895372399000081 ], [ -119.397940204999927, 49.895371189000031 ], [ -119.397913287999984, 49.894967697000048 ], [ -119.397786817999986, 49.894490402000031 ], [ -119.398296291999884, 49.894456214000051 ], [ -119.398411779999947, 49.894401809000058 ], [ -119.398513892999958, 49.893744103000117 ], [ -119.398532226999947, 49.892169306000085 ], [ -119.400001306999968, 49.892166071000055 ], [ -119.400725096999935, 49.892164503000075 ], [ -119.40108678699994, 49.892163678000038 ], [ -119.402352986999944, 49.89216089500011 ], [ -119.405360881999982, 49.89214192900004 ], [ -119.405887772999975, 49.892138608000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250595917", "BldgCostT": "172326667", "sL_LossRatio": "0.990020198997531", "sL_AssetLoss": "13367", "sL_BldgLoss": "13233.6", "sL_StrLoss": "13185", "sL_NStrLoss": "48.6", "sL_ContLoss": "133.4", "geom_point": "0101000020E61000002111B7968BDC5DC09E8EBE51C4F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442807351999932, 49.915023265000102 ], [ -119.440464366999961, 49.91433092800002 ], [ -119.440679333999952, 49.914236312000121 ], [ -119.44230480199991, 49.913521200000041 ], [ -119.442870799000019, 49.913221010000029 ], [ -119.443170983999948, 49.912990704000059 ], [ -119.443352417, 49.912798398000056 ], [ -119.44363446899996, 49.912307875000081 ], [ -119.443816716999919, 49.911990997000053 ], [ -119.444073456999959, 49.911350935000044 ], [ -119.444117385999945, 49.911241400000058 ], [ -119.444564808999985, 49.910580203000023 ], [ -119.444714768, 49.910409910000062 ], [ -119.444982493999973, 49.910105902000097 ], [ -119.445434768999974, 49.90972115100007 ], [ -119.44556094799999, 49.909613835000087 ], [ -119.445891885999984, 49.909332307000057 ], [ -119.446189815999901, 49.909030510000044 ], [ -119.4465357939999, 49.908500401000047 ], [ -119.446832571999948, 49.908589702000086 ], [ -119.447720389999915, 49.908856788000094 ], [ -119.448509259999952, 49.908962407000082 ], [ -119.448808030999913, 49.909002394000019 ], [ -119.449183244, 49.909037529000081 ], [ -119.44933732199992, 49.909082434000041 ], [ -119.450361357999952, 49.909380864000042 ], [ -119.450542684999959, 49.909432363000036 ], [ -119.450408938999928, 49.909629836000086 ], [ -119.450256177999947, 49.909855266000122 ], [ -119.449762982999943, 49.910583235000104 ], [ -119.449149915999897, 49.911488130000087 ], [ -119.448023967000012, 49.913093535000066 ], [ -119.447829555999959, 49.913370664000055 ], [ -119.447258354999974, 49.914184985000091 ], [ -119.446028703999971, 49.915937998000096 ], [ -119.445883989999942, 49.915894086000037 ], [ -119.445590053000018, 49.915811019000103 ], [ -119.445240412999951, 49.915712164000119 ], [ -119.445121349999937, 49.91567850600002 ], [ -119.444951431, 49.915630482000047 ], [ -119.44440932899991, 49.915477246000073 ], [ -119.44384847299996, 49.915318707000068 ], [ -119.443485707999955, 49.915215762000066 ], [ -119.442807351999932, 49.915023265000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "785458144", "BldgCostT": "543846523", "sL_LossRatio": "0.994660190493423", "sL_AssetLoss": "18856.609", "sL_BldgLoss": "18755.9183", "sL_StrLoss": "18718.0606", "sL_NStrLoss": "37.8577", "sL_ContLoss": "100.6907", "geom_point": "0101000020E61000004B237722D2DC5DC06C85C0FCDBF34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.453285236999989, 49.901155240000094 ], [ -119.453815616999947, 49.901140058000074 ], [ -119.454057904999956, 49.901179893000126 ], [ -119.453850367999976, 49.901939176000049 ], [ -119.453848127999919, 49.901947459000027 ], [ -119.453569843999972, 49.902965543000064 ], [ -119.45355158699999, 49.903032330000052 ], [ -119.45326278, 49.904183882000034 ], [ -119.453231172999935, 49.904309883000046 ], [ -119.452712780999974, 49.90590516400011 ], [ -119.452675412999952, 49.905978180000083 ], [ -119.452248394999913, 49.90681199400008 ], [ -119.452046483999965, 49.907206227000081 ], [ -119.451717630999937, 49.907693078000072 ], [ -119.451533786999974, 49.907965246000082 ], [ -119.451362827999972, 49.908218336000097 ], [ -119.450928767, 49.908860831000034 ], [ -119.45063752499999, 49.909292028 ], [ -119.450542684999959, 49.909432363000036 ], [ -119.450361357999952, 49.909380864000042 ], [ -119.44933732199992, 49.909082434000041 ], [ -119.449183244, 49.909037529000081 ], [ -119.448808030999913, 49.909002394000019 ], [ -119.448509259999952, 49.908962407000082 ], [ -119.447720389999915, 49.908856788000094 ], [ -119.446832571999948, 49.908589702000086 ], [ -119.4465357939999, 49.908500401000047 ], [ -119.44660017699999, 49.908402785000085 ], [ -119.447093517999946, 49.907654322000063 ], [ -119.447358260999962, 49.907265468000098 ], [ -119.447571963999934, 49.906951551000134 ], [ -119.447706070999914, 49.906553243000126 ], [ -119.447689009999962, 49.906234366 ], [ -119.447592171999958, 49.905954939000011 ], [ -119.447244193999907, 49.905360653000074 ], [ -119.447139191999938, 49.905069894000121 ], [ -119.447110341999974, 49.904687085000063 ], [ -119.447240105999953, 49.904231623000051 ], [ -119.447682828999945, 49.90362153300002 ], [ -119.44803204199999, 49.903263197000058 ], [ -119.448353812999983, 49.903090619000103 ], [ -119.44873626299993, 49.902885520000076 ], [ -119.449391496999965, 49.902557308000077 ], [ -119.449480875999953, 49.90249973100002 ], [ -119.450320218999963, 49.901959199000039 ], [ -119.450654128999986, 49.901668509000032 ], [ -119.450848325999985, 49.901386710000025 ], [ -119.450896717999925, 49.901127703000093 ], [ -119.453285236999989, 49.901155240000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8724167", "BldgCostT": "6016667", "sL_LossRatio": "1", "sL_AssetLoss": "691.8", "sL_BldgLoss": "691.8", "sL_StrLoss": "691.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FCD005900E25DC08E6F946101134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.528739713, 50.146525351000115 ], [ -119.534313488999956, 50.146853424000085 ], [ -119.533802951999974, 50.150433909000135 ], [ -119.528228739999975, 50.150105812000106 ], [ -119.528739713, 50.146525351000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12827667", "BldgCostT": "8846667", "sL_LossRatio": "1", "sL_AssetLoss": "1190", "sL_BldgLoss": "1190", "sL_StrLoss": "1190", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D6E8F94E3E05DC0EE9C5E102E0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.51465093299997, 50.122181151000042 ], [ -119.514636802999988, 50.121911595000064 ], [ -119.513563045999916, 50.121934857000049 ], [ -119.513587105999932, 50.121665075000038 ], [ -119.513492547999988, 50.12138325600008 ], [ -119.513201980999938, 50.120986497000061 ], [ -119.512912092999969, 50.120590732000046 ], [ -119.512239836999953, 50.119242111000055 ], [ -119.512027437999933, 50.118959640000078 ], [ -119.511389102999885, 50.118542817000076 ], [ -119.511110495999901, 50.118350326000048 ], [ -119.510763877, 50.118171879000087 ], [ -119.510011564999957, 50.118008020000083 ], [ -119.509313467999945, 50.117855959000117 ], [ -119.508961352999933, 50.117716005000077 ], [ -119.508794385, 50.117609517000034 ], [ -119.508703967999963, 50.117551845000101 ], [ -119.508538113999975, 50.117385872000099 ], [ -119.508361903999955, 50.117076653000012 ], [ -119.508331833999975, 50.116908546000026 ], [ -119.50828595199999, 50.116651798000078 ], [ -119.508485243999985, 50.116647490000076 ], [ -119.508499337999979, 50.116917047000086 ], [ -119.508918555000022, 50.116907984000051 ], [ -119.50890445899995, 50.116638427000048 ], [ -119.511419749999973, 50.116584020000097 ], [ -119.511405640999968, 50.116314464000077 ], [ -119.513082486999906, 50.116278162000128 ], [ -119.513096605999962, 50.116547719000039 ], [ -119.513935030999932, 50.116529559000092 ], [ -119.513878540999926, 50.115451335000053 ], [ -119.515136150999965, 50.115424084000026 ], [ -119.515150279999929, 50.115693641000071 ], [ -119.515988691999951, 50.11567546600007 ], [ -119.516031095999935, 50.116484133000036 ], [ -119.516450305999967, 50.116475043000094 ], [ -119.516634112999938, 50.11997926600008 ], [ -119.517053354999945, 50.119970173000084 ], [ -119.517124071999916, 50.121317950000105 ], [ -119.516704816999933, 50.121327043000065 ], [ -119.516718957999984, 50.121596598000039 ], [ -119.51629970299993, 50.12160568900012 ], [ -119.516313841999974, 50.121875245000105 ], [ -119.515894582, 50.121884334000072 ], [ -119.51590872, 50.122153891000139 ], [ -119.51465093299997, 50.122181151000042 ] ], [ [ -119.512776211999935, 50.118443691000074 ], [ -119.512719741999959, 50.117365466000066 ], [ -119.512300521999975, 50.117374542000078 ], [ -119.512328751999959, 50.117913655000073 ], [ -119.51190952599994, 50.117922730000068 ], [ -119.511937751999938, 50.118461844000095 ], [ -119.512776211999935, 50.118443691000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15055833", "BldgCostT": "10383333", "sL_LossRatio": "1", "sL_AssetLoss": "1374", "sL_BldgLoss": "1374", "sL_StrLoss": "1374", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004530ED1FB4E05DC05CB45B269E104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.508218452999984, 50.133637927000052 ], [ -119.507779796999927, 50.133218449000012 ], [ -119.50758121299999, 50.132835668000027 ], [ -119.507536753999943, 50.132750023000092 ], [ -119.50731405099998, 50.132320720000052 ], [ -119.507152216999913, 50.132008797000076 ], [ -119.507139095999932, 50.131992406000052 ], [ -119.50690441799999, 50.131698891000013 ], [ -119.506784326999977, 50.131458069000111 ], [ -119.506817016999918, 50.131131423000078 ], [ -119.507141368999925, 50.13043947400017 ], [ -119.507946251999925, 50.130422084000045 ], [ -119.507918058999934, 50.129882970000047 ], [ -119.508337389999937, 50.129873908000079 ], [ -119.50819641399994, 50.127178340000043 ], [ -119.508615721999945, 50.127169277000156 ], [ -119.508587523999921, 50.126630164000105 ], [ -119.509426129999923, 50.126612034000082 ], [ -119.509412027999957, 50.126342476000033 ], [ -119.509811946999889, 50.126333829000089 ], [ -119.510517422999939, 50.126318570000073 ], [ -119.510669927999956, 50.126315271000074 ], [ -119.510684035999944, 50.126584827000087 ], [ -119.512361243, 50.12654853100009 ], [ -119.512389483000035, 50.12708764300006 ], [ -119.512808787999987, 50.127078565 ], [ -119.51289352699996, 50.128695900000054 ], [ -119.513312845999948, 50.128686821000045 ], [ -119.513326971999973, 50.128956377000037 ], [ -119.514584938000013, 50.128929127000148 ], [ -119.514599069999946, 50.129198682000109 ], [ -119.515018393999952, 50.129189595000049 ], [ -119.515032527999963, 50.129459151000049 ], [ -119.515451853999977, 50.12945006400011 ], [ -119.5155084099999, 50.130528284000079 ], [ -119.51508907499999, 50.130537372000049 ], [ -119.515103210999897, 50.130806929000066 ], [ -119.513006521999912, 50.130852346000083 ], [ -119.513020647999952, 50.131121902000118 ], [ -119.51343998899992, 50.131112822000027 ], [ -119.513454116999952, 50.131382377000079 ], [ -119.513873459999971, 50.131373294000113 ], [ -119.513887589999968, 50.131642850000098 ], [ -119.514726278999916, 50.131624680000115 ], [ -119.51476868899999, 50.132433347000102 ], [ -119.514349335999924, 50.13244243200009 ], [ -119.514363468999989, 50.132711988000089 ], [ -119.513524759999939, 50.13273015500009 ], [ -119.51353888899996, 50.132999711000089 ], [ -119.512280817999923, 50.133026950000051 ], [ -119.512224328999977, 50.131948727000058 ], [ -119.511804981999958, 50.131957803000063 ], [ -119.511790862999973, 50.131688248000103 ], [ -119.511371515999912, 50.13169732199999 ], [ -119.511357398, 50.131427767000091 ], [ -119.510518709999985, 50.131445911000078 ], [ -119.510532822999934, 50.131715468000088 ], [ -119.509274779999942, 50.131742674000051 ], [ -119.50928888699994, 50.1320122300001 ], [ -119.508030834999914, 50.132039424000055 ], [ -119.508101328999956, 50.133387207000091 ], [ -119.50852068899999, 50.133378143000115 ], [ -119.50853479099996, 50.133647700000019 ], [ -119.509792883999978, 50.133620501000053 ], [ -119.509811158999966, 50.133969643000036 ], [ -119.509384523999955, 50.134000204000074 ], [ -119.508698926999926, 50.133882970000066 ], [ -119.508218452999984, 50.133637927000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "117.4", "sL_BldgLoss": "117.4", "sL_StrLoss": "117.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9EB9EE172E05DC0D1F1C971C40D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.506471018999932, 50.107356461000066 ], [ -119.506389797999987, 50.106855175000121 ], [ -119.506243636999969, 50.105952848000051 ], [ -119.506270366, 50.105809134000019 ], [ -119.506677236999934, 50.10583319900006 ], [ -119.506635775999925, 50.10612302200007 ], [ -119.507073142999957, 50.106148889000053 ], [ -119.507019378999971, 50.106524739000058 ], [ -119.507258561999961, 50.106538885000056 ], [ -119.507185591999985, 50.107048995000049 ], [ -119.507721282999967, 50.107080673000048 ], [ -119.507274387999971, 50.110204833000061 ], [ -119.507240713, 50.110063174000054 ], [ -119.507096448999931, 50.109093295000079 ], [ -119.507081826999979, 50.108994919000089 ], [ -119.506471018999932, 50.107356461000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8180416", "BldgCostT": "5641666", "sL_LossRatio": "1", "sL_AssetLoss": "721", "sL_BldgLoss": "721", "sL_StrLoss": "721", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD3CDBDDA2DF5DC0C79D90A5A8194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.49296546599993, 50.198490523000032 ], [ -119.497221692999943, 50.198742159000105 ], [ -119.496707646999937, 50.202322229000039 ], [ -119.491127335999977, 50.201992277000052 ], [ -119.491427523999988, 50.199903471000049 ], [ -119.491483868, 50.199864316000102 ], [ -119.492192129, 50.199468450000161 ], [ -119.49246969099994, 50.199250166000077 ], [ -119.492650424999937, 50.199039719000034 ], [ -119.49296546599993, 50.198490523000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "57.5", "sL_BldgLoss": "57.5", "sL_StrLoss": "57.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D63FC20FD2DE5DC0D695C781F4194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482509121999968, 50.202300893000064 ], [ -119.48262662799999, 50.202286177000076 ], [ -119.482525274999929, 50.202990452000016 ], [ -119.481533064999951, 50.202931678000027 ], [ -119.481504638000018, 50.203129175000072 ], [ -119.479827754999974, 50.203029823000051 ], [ -119.481864349999952, 50.202430610000057 ], [ -119.482509121999968, 50.202300893000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8772500", "BldgCostT": "6050000", "sL_LossRatio": "0.999984661875044", "sL_AssetLoss": "1047.71607", "sL_BldgLoss": "1047.7", "sL_StrLoss": "1047.6", "sL_NStrLoss": "0.1", "sL_ContLoss": "0.01607", "geom_point": "0101000020E6100000BD6E2AB50BF05DC004C3FBA26B0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.747071570999978, 50.082733690000076 ], [ -119.747564579999946, 50.07915191300004 ], [ -119.747951099999966, 50.079173934000096 ], [ -119.747957666999937, 50.079126222000042 ], [ -119.748444645999953, 50.079153964000085 ], [ -119.748447442999918, 50.07913363400008 ], [ -119.749002500999936, 50.07916525200006 ], [ -119.749009821999934, 50.079112046000041 ], [ -119.749265235999957, 50.079126595000091 ], [ -119.749339083999985, 50.080421395000016 ], [ -119.749924905999976, 50.080884293000047 ], [ -119.750670116999942, 50.080956894000096 ], [ -119.751049502999976, 50.080749013000045 ], [ -119.751694584999939, 50.080778891000122 ], [ -119.752068789999925, 50.080482612000019 ], [ -119.752599876999938, 50.080244792000087 ], [ -119.753744997999945, 50.079947097000087 ], [ -119.753750890999953, 50.079596804000097 ], [ -119.753925095999961, 50.079430188000046 ], [ -119.753994803999916, 50.079395878000064 ], [ -119.754576906999901, 50.079429006000041 ], [ -119.754084445999965, 50.083010813000051 ], [ -119.753529336999961, 50.08297922100013 ], [ -119.753522021999984, 50.083032426000031 ], [ -119.753034998000018, 50.083004706000047 ], [ -119.753032200999968, 50.08302503700002 ], [ -119.752645647999884, 50.083003034000036 ], [ -119.752639084999956, 50.083050746000019 ], [ -119.747071570999978, 50.082733690000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76204750", "BldgCostT": "52555000", "sL_LossRatio": "1", "sL_AssetLoss": "6509", "sL_BldgLoss": "6509", "sL_StrLoss": "6509", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDA2E2C5E3DD5DC0A108D25A0B1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46049381, 50.226350697000051 ], [ -119.460382169999889, 50.225169873000084 ], [ -119.46036703599998, 50.225058001000093 ], [ -119.460061594999985, 50.222803179000046 ], [ -119.460107473999969, 50.22208911900006 ], [ -119.460206398999944, 50.22243521100004 ], [ -119.460497261999947, 50.222804026000041 ], [ -119.460506011999911, 50.222815162000067 ], [ -119.460507389, 50.222816885000086 ], [ -119.461135691999957, 50.22331089700004 ], [ -119.461421905999956, 50.223531881000063 ], [ -119.461573304999931, 50.223594095000053 ], [ -119.462008414999943, 50.223129965000034 ], [ -119.462205680999929, 50.222919498000032 ], [ -119.46229131099993, 50.222726006000066 ], [ -119.462051305999964, 50.222098017000071 ], [ -119.46212028299999, 50.221853904000106 ], [ -119.462032299, 50.22169338700008 ], [ -119.461977792999946, 50.221456404000044 ], [ -119.461956470999894, 50.221000194000034 ], [ -119.462012796999971, 50.219947396000066 ], [ -119.461983601999975, 50.21873619800008 ], [ -119.461769190999959, 50.216927190000057 ], [ -119.46155622400002, 50.215604791000054 ], [ -119.461573879999932, 50.215433495000077 ], [ -119.461619882999983, 50.215371193000053 ], [ -119.461682380999946, 50.215286495000051 ], [ -119.461863417999965, 50.215163603000107 ], [ -119.462827477999966, 50.214841799000055 ], [ -119.462846051999989, 50.214824560000118 ], [ -119.462968912999898, 50.214710287000095 ], [ -119.46297378699991, 50.214588689000045 ], [ -119.46292199899996, 50.214480011 ], [ -119.462233281999943, 50.213664703000056 ], [ -119.462080569999955, 50.21353279700002 ], [ -119.462316876999964, 50.213280602000097 ], [ -119.46240926099992, 50.21311012400016 ], [ -119.462437677999958, 50.213057598000063 ], [ -119.462531379000012, 50.212574799000045 ], [ -119.462639211999928, 50.212393500000111 ], [ -119.462822783999968, 50.212223011000056 ], [ -119.463233613999961, 50.21200000200006 ], [ -119.463792082999944, 50.211766903000047 ], [ -119.46520669599991, 50.21127778900005 ], [ -119.465483400999958, 50.211145290000111 ], [ -119.466381488999971, 50.210617307000099 ], [ -119.466478712999916, 50.210623079000058 ], [ -119.466485883999894, 50.210573380000064 ], [ -119.467758575999966, 50.210074388000066 ], [ -119.467995240999954, 50.209959305000055 ], [ -119.472167658999979, 50.210206875000033 ], [ -119.472131095999899, 50.210460489000077 ], [ -119.47399151800002, 50.210570826000037 ], [ -119.473475506999961, 50.214150732000043 ], [ -119.472535549999961, 50.214094990000078 ], [ -119.472316938999882, 50.215611255000077 ], [ -119.471657325999942, 50.215572134000077 ], [ -119.471580534999944, 50.216104671000089 ], [ -119.471221804999956, 50.216083392000023 ], [ -119.471228613999969, 50.216215109000053 ], [ -119.471648711999961, 50.216206169000024 ], [ -119.471690517999932, 50.217014849000044 ], [ -119.47043019799996, 50.217041667000025 ], [ -119.470511029999912, 50.218605920000073 ], [ -119.47246961899998, 50.218722085000081 ], [ -119.472235266999945, 50.220347316000129 ], [ -119.472676523999908, 50.220373481000109 ], [ -119.472270832999953, 50.223186865000066 ], [ -119.472517518999908, 50.22320149300009 ], [ -119.472001247999955, 50.22678133400013 ], [ -119.466418109999921, 50.226450143000122 ], [ -119.466439549999933, 50.226301613000011 ], [ -119.466367923999954, 50.226303134000084 ], [ -119.46620683399999, 50.227419064000081 ], [ -119.465986292999958, 50.227405976000107 ], [ -119.465907051999977, 50.227954870000104 ], [ -119.463276687999937, 50.227798732000061 ], [ -119.463256034999972, 50.227941731000101 ], [ -119.45992470299997, 50.227743891000138 ], [ -119.459962256999958, 50.227458960000043 ], [ -119.46048630899999, 50.226401698000089 ], [ -119.46049381, 50.226350697000051 ] ], [ [ -119.466537154999983, 50.220818227000109 ], [ -119.466752322999938, 50.219327362000058 ], [ -119.466427180999972, 50.219308064000117 ], [ -119.466148687000029, 50.221237582000093 ], [ -119.465841995999952, 50.221219378000079 ], [ -119.465823121, 50.221350131000037 ], [ -119.466217073999957, 50.221373514000078 ], [ -119.466299259999985, 50.220804107000028 ], [ -119.466537154999983, 50.220818227000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "56.9", "sL_BldgLoss": "56.9", "sL_StrLoss": "56.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4C5DE8BEFDE5DC0FF6B69036A1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.482949483999946, 50.207059793000099 ], [ -119.482921496999936, 50.206520677000057 ], [ -119.48250148599999, 50.206529657000047 ], [ -119.482459512999938, 50.205720982000102 ], [ -119.48371952199993, 50.205694037000086 ], [ -119.483733520999976, 50.205963595000135 ], [ -119.484153526999975, 50.205954610000106 ], [ -119.484209529999944, 50.207032843000093 ], [ -119.482949483999946, 50.207059793000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "108", "sL_BldgLoss": "108", "sL_StrLoss": "108", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD525998EEDE5DC01353D8FBC31A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48300546399993, 50.208138027000068 ], [ -119.484265536999928, 50.208111075000083 ], [ -119.48432154799994, 50.209189306000063 ], [ -119.483901513999982, 50.209198293000021 ], [ -119.483943515999925, 50.210006967 ], [ -119.482263351999947, 50.210042895000079 ], [ -119.482221375999956, 50.209234220000042 ], [ -119.48264141099996, 50.209225240000087 ], [ -119.482599429999951, 50.208416566000047 ], [ -119.483019459999966, 50.208407584000042 ], [ -119.48300546399993, 50.208138027000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463084", "BldgCostT": "2388334", "sL_LossRatio": "1", "sL_AssetLoss": "287.4", "sL_BldgLoss": "287.4", "sL_StrLoss": "287.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C21ADEF8BE05DC0399A654791154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.507676458999981, 50.167709373000108 ], [ -119.507655516999989, 50.167309971000094 ], [ -119.507699925999972, 50.166833291000088 ], [ -119.507696563999943, 50.166790890000065 ], [ -119.507655086999961, 50.166262881000094 ], [ -119.507622126999962, 50.166174069000135 ], [ -119.507545569999962, 50.16596756500013 ], [ -119.507098193999937, 50.165429144000079 ], [ -119.506966587999969, 50.165349039 ], [ -119.506857649999944, 50.165283761000033 ], [ -119.506794451999966, 50.165218728000099 ], [ -119.50677669299999, 50.165147144000116 ], [ -119.506759876, 50.16509353900004 ], [ -119.506769626999983, 50.165012360000098 ], [ -119.506764929, 50.164922519000086 ], [ -119.506784449999913, 50.164760182000052 ], [ -119.506802764999961, 50.164719096000098 ], [ -119.507220445999948, 50.164710075000052 ], [ -119.507234556999961, 50.164979631000072 ], [ -119.508073833, 50.164961500000054 ], [ -119.508214528999957, 50.167648212000103 ], [ -119.510022357999929, 50.167754940000073 ], [ -119.509509670999961, 50.171335214000123 ], [ -119.509247165999966, 50.171319718000092 ], [ -119.509257702999946, 50.171520792000102 ], [ -119.508472289999986, 50.170767305000041 ], [ -119.508063667999963, 50.170375306000096 ], [ -119.508044362999939, 50.170356743000092 ], [ -119.507709463999973, 50.169614453000136 ], [ -119.507581231999907, 50.169330200000068 ], [ -119.507481505999948, 50.168701487000071 ], [ -119.50749276499999, 50.168668778000068 ], [ -119.507688360999964, 50.168100433000077 ], [ -119.507695850999966, 50.168078689000033 ], [ -119.507676458999981, 50.167709373000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57374083", "BldgCostT": "39568333", "sL_LossRatio": "1", "sL_AssetLoss": "4433", "sL_BldgLoss": "4433", "sL_StrLoss": "4433", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E024B48272E05DC0DACB95C56D184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.499385203999964, 50.192627591000175 ], [ -119.499641512999929, 50.192488382000128 ], [ -119.500190508999978, 50.192259994 ], [ -119.500596629999933, 50.19211566200017 ], [ -119.50079370499995, 50.192045606000143 ], [ -119.50118392499995, 50.191916729000098 ], [ -119.501502580999897, 50.191811503000046 ], [ -119.501570397999956, 50.191789109000048 ], [ -119.502319191999945, 50.191618511000037 ], [ -119.502711004999966, 50.191505395000078 ], [ -119.503009091999928, 50.191383790000067 ], [ -119.503230911999978, 50.191293299000087 ], [ -119.503807986999973, 50.191015896000081 ], [ -119.50421341099991, 50.190759198000045 ], [ -119.504589810999974, 50.190321081000029 ], [ -119.505043982999922, 50.189674504 ], [ -119.505580386999938, 50.188415394000117 ], [ -119.50553851699999, 50.18819175800013 ], [ -119.505434597999979, 50.187636892000043 ], [ -119.50550149299994, 50.187130910000043 ], [ -119.506219090999977, 50.185646908000066 ], [ -119.506326790999978, 50.185444804000021 ], [ -119.507398705999918, 50.18423631100012 ], [ -119.50740436800001, 50.184177650000031 ], [ -119.507422847999933, 50.183986645000068 ], [ -119.509549970999927, 50.184112187000011 ], [ -119.50952290099994, 50.184301150000067 ], [ -119.510350480999975, 50.184349982000121 ], [ -119.510293522999959, 50.183263989000075 ], [ -119.51071332199993, 50.18325491100012 ], [ -119.510699183999932, 50.182985358000117 ], [ -119.511724854999983, 50.182963173000083 ], [ -119.513381992999911, 50.182927309000085 ], [ -119.513637746999905, 50.182921772000064 ], [ -119.513651901999964, 50.183191324000049 ], [ -119.514071696999977, 50.183182235000118 ], [ -119.514114170999903, 50.183990894000075 ], [ -119.513694367999975, 50.183999984000089 ], [ -119.513736836999939, 50.184808643000082 ], [ -119.514156647, 50.184799552000108 ], [ -119.51414248899999, 50.184529999000098 ], [ -119.515401910999941, 50.184502720000076 ], [ -119.515458574999911, 50.185580931000096 ], [ -119.515038759, 50.185590025000053 ], [ -119.515067087999952, 50.186129132000076 ], [ -119.51464726599994, 50.186138225000064 ], [ -119.51468975399996, 50.186946883000083 ], [ -119.514269923999976, 50.186955975000018 ], [ -119.514397378999931, 50.189381951 ], [ -119.513977528999931, 50.189391043000086 ], [ -119.514005848999886, 50.189930148000045 ], [ -119.513653524999953, 50.1899377760001 ], [ -119.513604061999928, 50.190283237000067 ], [ -119.51368510599994, 50.191826108000058 ], [ -119.513265232999956, 50.191835198000071 ], [ -119.513321865999956, 50.192913409000035 ], [ -119.512901984999985, 50.192922497000055 ], [ -119.512930295999979, 50.19346160300006 ], [ -119.511999584, 50.19348174300012 ], [ -119.511799880999916, 50.194876001000125 ], [ -119.509996025999925, 50.194769605000054 ], [ -119.509820357999928, 50.195995644000071 ], [ -119.504240729999964, 50.195666353000064 ], [ -119.504640947999974, 50.192875391000051 ], [ -119.504444922999951, 50.192863817000074 ], [ -119.504253318999929, 50.194199976000021 ], [ -119.500869339999952, 50.194000119000094 ], [ -119.500789589999954, 50.194555955000098 ], [ -119.500709045999912, 50.194551197000074 ], [ -119.500616618999942, 50.195195356000127 ], [ -119.499966351999916, 50.195156939000093 ], [ -119.499525738999921, 50.198227174000088 ], [ -119.49394591099994, 50.197897363000031 ], [ -119.494072796999944, 50.197014 ], [ -119.495228862999966, 50.195544705000081 ], [ -119.49575659599995, 50.19499463300005 ], [ -119.495936193999952, 50.194844583000076 ], [ -119.496145030999969, 50.194670067000075 ], [ -119.496579121999972, 50.194409604000015 ], [ -119.497437569999974, 50.193995500000078 ], [ -119.497982571999941, 50.193677504000092 ], [ -119.499385203999964, 50.192627591000175 ] ], [ [ -119.510396023999988, 50.185218368000065 ], [ -119.510385204999977, 50.185012082000057 ], [ -119.51035599599993, 50.185216006000104 ], [ -119.510396023999988, 50.185218368000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "401.1", "sL_BldgLoss": "401.1", "sL_StrLoss": "401.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095C3F6AC8EE05DC0C854A80B84164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.508836196999937, 50.174104298000032 ], [ -119.509052213999922, 50.17345780900007 ], [ -119.509188133999885, 50.173050940000017 ], [ -119.509322171999912, 50.172751079000086 ], [ -119.50933678899996, 50.173030007000087 ], [ -119.50927405, 50.173031362000067 ], [ -119.509235279999984, 50.173302060000047 ], [ -119.509350914999985, 50.173299561000107 ], [ -119.509365041999942, 50.17356911500012 ], [ -119.509784754999899, 50.173560042000169 ], [ -119.509756496999955, 50.173020933000011 ], [ -119.511015620999956, 50.172993705000067 ], [ -119.511086301, 50.174341476000123 ], [ -119.510666581999914, 50.174350553000124 ], [ -119.510680714999978, 50.174620108000063 ], [ -119.51026099299996, 50.174629184000025 ], [ -119.510289257999943, 50.175168293000091 ], [ -119.50986953, 50.17517736800005 ], [ -119.509883659999943, 50.175446922000056 ], [ -119.50946393, 50.175455996000103 ], [ -119.509478058999946, 50.175725551000028 ], [ -119.509058325999888, 50.175734623000096 ], [ -119.509086576999934, 50.176273731000016 ], [ -119.508666838999901, 50.176282802000067 ], [ -119.508695088999957, 50.176821911000111 ], [ -119.508275345999891, 50.176830981000144 ], [ -119.508303589999969, 50.177370090000061 ], [ -119.508112908999948, 50.177374209000057 ], [ -119.508021812, 50.178010089000104 ], [ -119.507959798999977, 50.178442931000085 ], [ -119.507741780999979, 50.178430060000032 ], [ -119.507690806999946, 50.178785836000017 ], [ -119.507567803, 50.178778575000052 ], [ -119.507466237999921, 50.179487440000052 ], [ -119.507014417, 50.179460765000023 ], [ -119.506822593999956, 50.180799409000016 ], [ -119.506414817999925, 50.180072110000012 ], [ -119.506523895999948, 50.179185816000071 ], [ -119.506526181999917, 50.179167101000147 ], [ -119.506951205999925, 50.178212807000101 ], [ -119.507553994999938, 50.177538934000069 ], [ -119.507647385999988, 50.177328717000059 ], [ -119.507625058999977, 50.177272028000061 ], [ -119.507554582999916, 50.177093079000024 ], [ -119.507405862, 50.176727741000029 ], [ -119.507540891999938, 50.175765390000116 ], [ -119.508428532999957, 50.174820402000073 ], [ -119.508836196999937, 50.174104298000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "59.2", "sL_BldgLoss": "59.2", "sL_StrLoss": "59.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009990A4DEF2DF5DC0E27A6F673A074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.499205905999972, 50.055318995000043 ], [ -119.499416055999973, 50.055314467000052 ], [ -119.49951414, 50.057201401000029 ], [ -119.498750387999948, 50.057217855000047 ], [ -119.498872778999967, 50.056519739000109 ], [ -119.499184306999965, 50.055685087 ], [ -119.499205905999972, 50.055318995000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "167.4", "sL_BldgLoss": "167.4", "sL_StrLoss": "167.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC0C99E175E05DC08DA3499483144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.506736702999945, 50.158550215000105 ], [ -119.507941520999935, 50.158621377000124 ], [ -119.507428771999955, 50.162201684000088 ], [ -119.507211511999955, 50.162188853000046 ], [ -119.507032658999961, 50.163437529000063 ], [ -119.506991712999962, 50.162605891000041 ], [ -119.506991199999931, 50.162595009000036 ], [ -119.506930879, 50.162307899000034 ], [ -119.506792895999965, 50.161650967000064 ], [ -119.506778103999949, 50.161580492000013 ], [ -119.5067439809999, 50.160896094000059 ], [ -119.506582024999943, 50.159858403000079 ], [ -119.506606408999986, 50.159344392000044 ], [ -119.506736702999945, 50.158550215000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "0.999974997656866", "sL_AssetLoss": "373.96495", "sL_BldgLoss": "373.9556", "sL_StrLoss": "373.9", "sL_NStrLoss": "0.0556", "sL_ContLoss": "0.00935", "geom_point": "0101000020E6100000F4F5633012F05DC0FDDAD9DBD6094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.749709372999988, 50.078586010000031 ], [ -119.75013137400002, 50.075518563000081 ], [ -119.752526984999975, 50.075654978000124 ], [ -119.752437109999946, 50.075687295000094 ], [ -119.752065483999971, 50.076262695000061 ], [ -119.752156921999983, 50.076638703000057 ], [ -119.752097914999965, 50.076838095000014 ], [ -119.752357900000021, 50.077228310000066 ], [ -119.752573091999963, 50.07730381200011 ], [ -119.752959808999918, 50.07723119700011 ], [ -119.75321531899999, 50.07728809600011 ], [ -119.753241900999939, 50.07776528600003 ], [ -119.752891600999988, 50.077746700000091 ], [ -119.752378579999913, 50.077578699000092 ], [ -119.751655500999945, 50.07764990600009 ], [ -119.750442105999952, 50.078172590000072 ], [ -119.749709372999988, 50.078586010000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019841", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60155666", "BldgCostT": "41486666", "sL_LossRatio": "1", "sL_AssetLoss": "5494", "sL_BldgLoss": "5494", "sL_StrLoss": "5494", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000176006001AE15DC0B7FB0BF354134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.515600201999987, 50.157364647000058 ], [ -119.515786309999967, 50.156063401000019 ], [ -119.510438726999936, 50.155747807000033 ], [ -119.510951164999966, 50.152167456000036 ], [ -119.511162612999939, 50.152179941000078 ], [ -119.51121467199999, 50.151816162000038 ], [ -119.512934059999964, 50.151917660000045 ], [ -119.513068055999966, 50.150981053000066 ], [ -119.50958972899997, 50.150775695000043 ], [ -119.510102177999968, 50.147195325000041 ], [ -119.511700584999986, 50.147289708000059 ], [ -119.512069030999911, 50.14471446400011 ], [ -119.513327657000033, 50.144788766000083 ], [ -119.513364284999952, 50.144532692000091 ], [ -119.518937705999974, 50.144861544000037 ], [ -119.518594525999958, 50.147262756000082 ], [ -119.524164302999935, 50.147591106000057 ], [ -119.52411923899993, 50.147906664000075 ], [ -119.52530238699994, 50.147976376000088 ], [ -119.525238837999922, 50.148421449000125 ], [ -119.525392014999966, 50.148430473000126 ], [ -119.525262972999926, 50.149334231000083 ], [ -119.525375776999937, 50.149340876000061 ], [ -119.524864505999957, 50.152921308000053 ], [ -119.524133608999961, 50.152878246000057 ], [ -119.523952933999908, 50.154143226000066 ], [ -119.518378338999952, 50.153814631000088 ], [ -119.518386891, 50.153754809000112 ], [ -119.516574090999924, 50.153647892000016 ], [ -119.516550888999987, 50.153810154000048 ], [ -119.521686827999957, 50.154112988000151 ], [ -119.521175213, 50.157693381000058 ], [ -119.515600201999987, 50.157364647000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019842", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "171", "sL_BldgLoss": "171", "sL_StrLoss": "171", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A47B8CA8FFDF5DC078874EAEAD0A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.500042911999969, 50.08147698300008 ], [ -119.500833422, 50.081523808000078 ], [ -119.500320983000037, 50.085104446000052 ], [ -119.499115332, 50.085033028000041 ], [ -119.499087375999963, 50.084918989000073 ], [ -119.499058193999986, 50.084534508000068 ], [ -119.499119079, 50.084109292000072 ], [ -119.499965062999976, 50.081649758000054 ], [ -119.500042911999969, 50.08147698300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "54.5", "sL_BldgLoss": "54.5", "sL_StrLoss": "54.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E7C35D58DDE5DC0A20AA094201A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.478102374999963, 50.203552607000113 ], [ -119.4781418379999, 50.203540443000058 ], [ -119.478175662999945, 50.204193343000043 ], [ -119.477755670999969, 50.204202306000056 ], [ -119.477769635999906, 50.204471865000116 ], [ -119.476509650999915, 50.20449874500008 ], [ -119.476492705999988, 50.204171458000097 ], [ -119.476766483999924, 50.204074594000069 ], [ -119.478102374999963, 50.203552607000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "56.9", "sL_BldgLoss": "56.9", "sL_StrLoss": "56.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042045E5EE7DF5DC098848FB128074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.498258038999936, 50.057228459000022 ], [ -119.498188011999929, 50.055880647000052 ], [ -119.497769321999925, 50.055889665000045 ], [ -119.497727314999935, 50.055080977000088 ], [ -119.498983361999962, 50.055053926000056 ], [ -119.498997370999973, 50.055323488000106 ], [ -119.499205905999972, 50.055318995000043 ], [ -119.499184306999965, 50.055685087 ], [ -119.498872778999967, 50.056519739000109 ], [ -119.498750387999948, 50.057217855000047 ], [ -119.498258038999936, 50.057228459000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32903666", "BldgCostT": "21956666", "sL_LossRatio": "1", "sL_AssetLoss": "3171", "sL_BldgLoss": "3171", "sL_StrLoss": "3171", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D87FBEA91FE05DC01711C5E40D114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.501195264, 50.138290490000124 ], [ -119.50120416299994, 50.138228382000079 ], [ -119.500477044999968, 50.138185371000127 ], [ -119.500506509999951, 50.137979746000056 ], [ -119.499632632, 50.137928047000045 ], [ -119.500145718999946, 50.13434766200006 ], [ -119.500174611999938, 50.134349372000088 ], [ -119.500133048999913, 50.133552242000079 ], [ -119.499221640999949, 50.133498313000082 ], [ -119.499217924999982, 50.133524247000075 ], [ -119.498810426999967, 50.133500132000016 ], [ -119.498773617999944, 50.133756956000148 ], [ -119.498293585999988, 50.133728548000121 ], [ -119.498238813999976, 50.134110667000172 ], [ -119.497930570999955, 50.13409242500007 ], [ -119.497856426999974, 50.134609675000078 ], [ -119.497607607999953, 50.134594948000057 ], [ -119.497382490999883, 50.136165282000029 ], [ -119.493307531000013, 50.135924020000054 ], [ -119.493696699999987, 50.135555391000132 ], [ -119.493836186999928, 50.134464499000089 ], [ -119.493667890999944, 50.134171114000019 ], [ -119.493645584999939, 50.133775107000105 ], [ -119.494035277999942, 50.133695395000039 ], [ -119.494124819999939, 50.133558702000123 ], [ -119.493841214, 50.133464689000078 ], [ -119.493833511999924, 50.133330805000107 ], [ -119.494469821999971, 50.132912098000098 ], [ -119.495188992999942, 50.131960688000092 ], [ -119.495497582000013, 50.131711496000044 ], [ -119.495950601999979, 50.131540512000086 ], [ -119.498359716999914, 50.130201794000115 ], [ -119.499132086, 50.130013797000117 ], [ -119.499843992999942, 50.129701898000114 ], [ -119.502288010999948, 50.129073785000124 ], [ -119.502558405999977, 50.128878690000107 ], [ -119.502724308999944, 50.128308990000022 ], [ -119.503222580999946, 50.127676705000042 ], [ -119.503435405999966, 50.126917601000038 ], [ -119.503910393999973, 50.126115713000075 ], [ -119.50392365899998, 50.126101559000034 ], [ -119.50627601399999, 50.126240655000061 ], [ -119.505801815000027, 50.129553458000025 ], [ -119.505821397999924, 50.129928258000113 ], [ -119.505402064999942, 50.129937312000067 ], [ -119.505430229999916, 50.130476426000044 ], [ -119.505246146999951, 50.13048040000006 ], [ -119.505216924999942, 50.130684516000038 ], [ -119.505020681999923, 50.130672914000066 ], [ -119.505095378999954, 50.132102822000057 ], [ -119.505514727999952, 50.132093769000107 ], [ -119.505528813999916, 50.132363327000085 ], [ -119.505948165999925, 50.132354272000036 ], [ -119.505962253999925, 50.132623829000082 ], [ -119.5063816099999, 50.132614774000068 ], [ -119.506339342999965, 50.131806104000098 ], [ -119.505919996, 50.131815158000094 ], [ -119.505877737999938, 50.131006488 ], [ -119.506716421999954, 50.130988375000108 ], [ -119.506688241999939, 50.130449262000134 ], [ -119.507141368999925, 50.13043947400017 ], [ -119.506817016999918, 50.131131423000078 ], [ -119.506784326999977, 50.131458069000111 ], [ -119.50690441799999, 50.131698891000013 ], [ -119.507139095999932, 50.131992406000052 ], [ -119.507152216999913, 50.132008797000076 ], [ -119.50731405099998, 50.132320720000052 ], [ -119.507536753999943, 50.132750023000092 ], [ -119.50758121299999, 50.132835668000027 ], [ -119.507779796999927, 50.133218449000012 ], [ -119.508218452999984, 50.133637927000052 ], [ -119.508698926999926, 50.133882970000066 ], [ -119.509384523999955, 50.134000204000074 ], [ -119.509811158999966, 50.133969643000036 ], [ -119.509835210999938, 50.134429170000011 ], [ -119.508577098999979, 50.13445636900007 ], [ -119.508562995999938, 50.134186814000046 ], [ -119.507724256999921, 50.134204939000043 ], [ -119.507738354999958, 50.134474495000092 ], [ -119.506517700999922, 50.134500865000113 ], [ -119.506456521999937, 50.13492822000007 ], [ -119.506562184999936, 50.134934465000093 ], [ -119.506553293999971, 50.13499657400007 ], [ -119.507280366999964, 50.135039545000026 ], [ -119.506767831999966, 50.138619960000014 ], [ -119.501195264, 50.138290490000124 ] ], [ [ -119.50391401399996, 50.133598756 ], [ -119.503907693999935, 50.133477757000037 ], [ -119.503488330999971, 50.133486804 ], [ -119.503492875999939, 50.133573853000023 ], [ -119.50391401399996, 50.133598756 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4458750", "BldgCostT": "3075000", "sL_LossRatio": "1", "sL_AssetLoss": "422.3", "sL_BldgLoss": "422.3", "sL_StrLoss": "422.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000750E336EC9DF5DC0AD469F2497084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.494426881999942, 50.066670703000092 ], [ -119.49517287799992, 50.06625049700007 ], [ -119.495328884999978, 50.066039698000083 ], [ -119.495487784999966, 50.064779421 ], [ -119.496767641999938, 50.06485531200012 ], [ -119.49841610199995, 50.064953039000073 ], [ -119.498176041999898, 50.066630536000083 ], [ -119.498516911999971, 50.06665074000005 ], [ -119.498206943999961, 50.068816670000075 ], [ -119.498004459999976, 50.070231438000022 ], [ -119.497793689999966, 50.070218946000111 ], [ -119.497122284999961, 50.069329694000096 ], [ -119.496331884999989, 50.068932290000056 ], [ -119.495109809999974, 50.068554898000123 ], [ -119.495023289999935, 50.068483703000048 ], [ -119.494963696999932, 50.067882689 ], [ -119.494733097, 50.067761607000065 ], [ -119.494354088999941, 50.0677074970001 ], [ -119.494077123999944, 50.067479603000045 ], [ -119.494114811999921, 50.067127788000107 ], [ -119.494426881999942, 50.066670703000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "398.9", "sL_BldgLoss": "398.9", "sL_StrLoss": "398.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000410ABF5057E05DC0D84B32F6CE0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.504120213999911, 50.106258009000101 ], [ -119.503912071999963, 50.105089793000069 ], [ -119.506297409999917, 50.105230908000102 ], [ -119.50621515399996, 50.105805869000058 ], [ -119.506270366, 50.105809134000019 ], [ -119.506243636999969, 50.105952848000051 ], [ -119.506389797999987, 50.106855175000121 ], [ -119.506471018999932, 50.107356461000066 ], [ -119.507081826999979, 50.108994919000089 ], [ -119.507096448999931, 50.109093295000079 ], [ -119.507240713, 50.110063174000054 ], [ -119.507274387999971, 50.110204833000061 ], [ -119.507209097999919, 50.110661221000079 ], [ -119.505091420999946, 50.110535978000016 ], [ -119.505142709999973, 50.110311288000112 ], [ -119.504755496999962, 50.109617705000133 ], [ -119.504477195, 50.109102105000048 ], [ -119.504013796999971, 50.108787398000032 ], [ -119.503463713999949, 50.108187789000105 ], [ -119.503407103, 50.107882991000118 ], [ -119.503164498999965, 50.107538390000052 ], [ -119.503118588999939, 50.107188004000108 ], [ -119.504120213999911, 50.106258009000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74871583", "BldgCostT": "50428333", "sL_LossRatio": "1", "sL_AssetLoss": "6520", "sL_BldgLoss": "6520", "sL_StrLoss": "6520", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F9D48EEF8DF5DC0F8B1596055174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.478496207999939, 50.201249885000067 ], [ -119.478662108999956, 50.200957899000059 ], [ -119.479099699999963, 50.201030602000024 ], [ -119.479864697999943, 50.200888186000014 ], [ -119.481333907999939, 50.20030710600011 ], [ -119.482891517999974, 50.199834203000073 ], [ -119.483383221999958, 50.199562206000039 ], [ -119.48410270699999, 50.19914209000013 ], [ -119.484791088999941, 50.198875815000065 ], [ -119.485037212999885, 50.198501195000084 ], [ -119.485426305999979, 50.198150796000078 ], [ -119.486037400999933, 50.198083903000096 ], [ -119.48661890599999, 50.197649483000106 ], [ -119.487123012999945, 50.197629589000059 ], [ -119.487337801, 50.197462890000089 ], [ -119.487794901999919, 50.197371803000102 ], [ -119.488274289999964, 50.197155308000021 ], [ -119.489188303999924, 50.196658304000039 ], [ -119.490005616999937, 50.195966099000053 ], [ -119.490282008999912, 50.195600101000068 ], [ -119.491153406999942, 50.195114386000114 ], [ -119.49122539399994, 50.195052971000038 ], [ -119.491877910999932, 50.19449628700005 ], [ -119.492593400999979, 50.193724405000125 ], [ -119.492649997999962, 50.193472308000032 ], [ -119.493157420999964, 50.192992300000157 ], [ -119.493255117999951, 50.192684703000069 ], [ -119.493468381999961, 50.192473891000105 ], [ -119.493532076999898, 50.192085093000053 ], [ -119.493722588999901, 50.191982594000123 ], [ -119.493816207999956, 50.191620805000113 ], [ -119.494129285999946, 50.191442808000033 ], [ -119.494255202999923, 50.191179309000034 ], [ -119.494444807999926, 50.19104968700006 ], [ -119.494524108999926, 50.190696482000106 ], [ -119.494878508999989, 50.190491385000101 ], [ -119.49556980299991, 50.18978360100003 ], [ -119.495716610999949, 50.189636885000048 ], [ -119.495775615999889, 50.18917689400012 ], [ -119.49595799899997, 50.188911986000065 ], [ -119.496481603999953, 50.18847760400007 ], [ -119.497321077999942, 50.187380992000051 ], [ -119.499462462999986, 50.185926407000082 ], [ -119.499505386999971, 50.185925483000112 ], [ -119.499503962999967, 50.185898216000119 ], [ -119.49971551, 50.185754510000116 ], [ -119.500547277999885, 50.185035292000123 ], [ -119.50119381899999, 50.184256200000142 ], [ -119.502148700999911, 50.183507100000071 ], [ -119.502268507999986, 50.183135405000037 ], [ -119.502887501999936, 50.182357812000063 ], [ -119.502885300999935, 50.182078591000035 ], [ -119.503340990000012, 50.1811343970001 ], [ -119.503790018999936, 50.180630203000121 ], [ -119.504098808, 50.180083294000084 ], [ -119.504167506999949, 50.179271483000072 ], [ -119.504375498999963, 50.178943897000082 ], [ -119.504352119999965, 50.178251799000066 ], [ -119.504876285999941, 50.177025506000042 ], [ -119.505000507, 50.176698722000062 ], [ -119.505110714999915, 50.176408795000036 ], [ -119.505008409999931, 50.175521585000055 ], [ -119.50549490899999, 50.173819602000059 ], [ -119.505237982999958, 50.172952292000069 ], [ -119.504962282999955, 50.172490795000037 ], [ -119.50470728699996, 50.171642003000059 ], [ -119.5047836899999, 50.170946997000051 ], [ -119.504544206999967, 50.170377299000052 ], [ -119.504552111999956, 50.170006989000058 ], [ -119.504268991999965, 50.169428798000112 ], [ -119.504311987, 50.168376290000026 ], [ -119.504126012999976, 50.168010306000063 ], [ -119.503799094999948, 50.167667109000099 ], [ -119.503322812999912, 50.16711019100007 ], [ -119.503487101999923, 50.166513406000114 ], [ -119.503549184999926, 50.166098996000109 ], [ -119.504207685999958, 50.165314827000053 ], [ -119.504311171999959, 50.165312595000053 ], [ -119.50430843599996, 50.165260265000043 ], [ -119.504235164999955, 50.165255936000065 ], [ -119.504247902999978, 50.164743096000144 ], [ -119.504052112999901, 50.164189091000026 ], [ -119.50388180499999, 50.163086799000027 ], [ -119.503934791999953, 50.162762102000066 ], [ -119.504243913999971, 50.162250808000131 ], [ -119.504127003999926, 50.161345002000061 ], [ -119.504181721999942, 50.160238403000108 ], [ -119.504046418999934, 50.159791208000058 ], [ -119.504120091999965, 50.158818408000059 ], [ -119.503489399, 50.156905709000085 ], [ -119.502779904999954, 50.155941491000135 ], [ -119.503075203999956, 50.155152509000082 ], [ -119.503070691999966, 50.154513011000091 ], [ -119.502814815999955, 50.154159800000031 ], [ -119.50294399699996, 50.153698408000068 ], [ -119.502820312, 50.153197088000049 ], [ -119.502920924999927, 50.153039511000024 ], [ -119.50646081399999, 50.153248707000145 ], [ -119.50633167399991, 50.154150398000084 ], [ -119.507639837999946, 50.154227677000037 ], [ -119.507463330999911, 50.155460295000076 ], [ -119.507306081999914, 50.156028802000073 ], [ -119.507140818999972, 50.156938006000082 ], [ -119.507065970999975, 50.15723080099999 ], [ -119.506921612999946, 50.157795864000022 ], [ -119.506207623999927, 50.157753687000131 ], [ -119.506098925999979, 50.158512538000082 ], [ -119.506736702999945, 50.158550215000105 ], [ -119.506606408999986, 50.159344392000044 ], [ -119.506582024999943, 50.159858403000079 ], [ -119.5067439809999, 50.160896094000059 ], [ -119.506778103999949, 50.161580492000013 ], [ -119.506792895999965, 50.161650967000064 ], [ -119.506930879, 50.162307899000034 ], [ -119.506991199999931, 50.162595009000036 ], [ -119.506991712999962, 50.162605891000041 ], [ -119.507032658999961, 50.163437529000063 ], [ -119.506881048999958, 50.164495953000092 ], [ -119.506847173999972, 50.164581410000082 ], [ -119.50682653899996, 50.164634350000028 ], [ -119.506816848999947, 50.164677757000071 ], [ -119.506775911999952, 50.164675339000063 ], [ -119.506769540999926, 50.164719814000165 ], [ -119.506802764999961, 50.164719096000098 ], [ -119.506784449999913, 50.164760182000052 ], [ -119.506764929, 50.164922519000086 ], [ -119.506769626999983, 50.165012360000098 ], [ -119.506759876, 50.16509353900004 ], [ -119.50677669299999, 50.165147144000116 ], [ -119.506794451999966, 50.165218728000099 ], [ -119.506857649999944, 50.165283761000033 ], [ -119.506966587999969, 50.165349039 ], [ -119.507098193999937, 50.165429144000079 ], [ -119.507545569999962, 50.16596756500013 ], [ -119.507622126999962, 50.166174069000135 ], [ -119.507655086999961, 50.166262881000094 ], [ -119.507696563999943, 50.166790890000065 ], [ -119.507699925999972, 50.166833291000088 ], [ -119.507655516999989, 50.167309971000094 ], [ -119.507676458999981, 50.167709373000108 ], [ -119.507695850999966, 50.168078689000033 ], [ -119.507688360999964, 50.168100433000077 ], [ -119.50749276499999, 50.168668778000068 ], [ -119.507481505999948, 50.168701487000071 ], [ -119.507581231999907, 50.169330200000068 ], [ -119.507709463999973, 50.169614453000136 ], [ -119.508044362999939, 50.170356743000092 ], [ -119.508063667999963, 50.170375306000096 ], [ -119.508472289999986, 50.170767305000041 ], [ -119.509257702999946, 50.171520792000102 ], [ -119.509266510999964, 50.171688868000047 ], [ -119.509343499999929, 50.171693412000089 ], [ -119.509435517999947, 50.171903926000027 ], [ -119.509320034000012, 50.172710287000072 ], [ -119.509322171999912, 50.172751079000086 ], [ -119.509188133999885, 50.173050940000017 ], [ -119.509052213999922, 50.17345780900007 ], [ -119.508836196999937, 50.174104298000032 ], [ -119.508428532999957, 50.174820402000073 ], [ -119.507540891999938, 50.175765390000116 ], [ -119.507405862, 50.176727741000029 ], [ -119.507554582999916, 50.177093079000024 ], [ -119.507625058999977, 50.177272028000061 ], [ -119.507647385999988, 50.177328717000059 ], [ -119.507553994999938, 50.177538934000069 ], [ -119.506951205999925, 50.178212807000101 ], [ -119.506526181999917, 50.179167101000147 ], [ -119.506523895999948, 50.179185816000071 ], [ -119.506414817999925, 50.180072110000012 ], [ -119.506822593999956, 50.180799409000016 ], [ -119.506676732999949, 50.181817252000016 ], [ -119.506609183999913, 50.181813264 ], [ -119.506556646999982, 50.182179853000029 ], [ -119.506350075999976, 50.182167657000029 ], [ -119.506263368999939, 50.182772658000076 ], [ -119.505683269999963, 50.182738407000066 ], [ -119.505623761999928, 50.18315357200008 ], [ -119.505586236999946, 50.183151357000064 ], [ -119.505500289999986, 50.183750974000077 ], [ -119.505256203000016, 50.183736562000092 ], [ -119.505238837999954, 50.183857702000083 ], [ -119.507422847999933, 50.183986645000068 ], [ -119.50740436800001, 50.184177650000031 ], [ -119.507398705999918, 50.18423631100012 ], [ -119.506326790999978, 50.185444804000021 ], [ -119.506219090999977, 50.185646908000066 ], [ -119.50550149299994, 50.187130910000043 ], [ -119.505434597999979, 50.187636892000043 ], [ -119.50553851699999, 50.18819175800013 ], [ -119.505580386999938, 50.188415394000117 ], [ -119.505043982999922, 50.189674504 ], [ -119.504589810999974, 50.190321081000029 ], [ -119.50421341099991, 50.190759198000045 ], [ -119.503807986999973, 50.191015896000081 ], [ -119.503230911999978, 50.191293299000087 ], [ -119.503009091999928, 50.191383790000067 ], [ -119.502711004999966, 50.191505395000078 ], [ -119.502319191999945, 50.191618511000037 ], [ -119.501570397999956, 50.191789109000048 ], [ -119.501502580999897, 50.191811503000046 ], [ -119.50118392499995, 50.191916729000098 ], [ -119.50079370499995, 50.192045606000143 ], [ -119.500596629999933, 50.19211566200017 ], [ -119.500190508999978, 50.192259994 ], [ -119.499641512999929, 50.192488382000128 ], [ -119.499385203999964, 50.192627591000175 ], [ -119.497982571999941, 50.193677504000092 ], [ -119.497437569999974, 50.193995500000078 ], [ -119.496579121999972, 50.194409604000015 ], [ -119.496145030999969, 50.194670067000075 ], [ -119.495936193999952, 50.194844583000076 ], [ -119.49575659599995, 50.19499463300005 ], [ -119.495228862999966, 50.195544705000081 ], [ -119.494072796999944, 50.197014 ], [ -119.494098224999959, 50.196836977000018 ], [ -119.493825499999943, 50.196820850000066 ], [ -119.493763637999976, 50.197251509000083 ], [ -119.493356298999956, 50.197227419000022 ], [ -119.493313633999961, 50.197524419000096 ], [ -119.492981348999976, 50.197504767000098 ], [ -119.492939333, 50.197797227000095 ], [ -119.492349494999971, 50.197762341000107 ], [ -119.4922690329999, 50.198322341000086 ], [ -119.491987078999955, 50.198305663000049 ], [ -119.491968985999932, 50.198431584000097 ], [ -119.49296546599993, 50.198490523000032 ], [ -119.492650424999937, 50.199039719000034 ], [ -119.49246969099994, 50.199250166000077 ], [ -119.492192129, 50.199468450000161 ], [ -119.491483868, 50.199864316000102 ], [ -119.491427523999988, 50.199903471000049 ], [ -119.491617365999943, 50.198582394000042 ], [ -119.491384703999955, 50.19856863100005 ], [ -119.49131293399995, 50.199068061000027 ], [ -119.490050473999943, 50.198993371000093 ], [ -119.489898627999963, 50.20004979000003 ], [ -119.489676758999977, 50.200036663000091 ], [ -119.489651626999887, 50.200211495000048 ], [ -119.489391551999972, 50.200196107000039 ], [ -119.489370421, 50.200343102000055 ], [ -119.487748545, 50.200247120000078 ], [ -119.487655178999944, 50.200896440000044 ], [ -119.486769276999922, 50.200844002000032 ], [ -119.486699359999989, 50.201330161000023 ], [ -119.486426404999989, 50.201314003000057 ], [ -119.486407554, 50.201445068000041 ], [ -119.486003120999925, 50.20142112500006 ], [ -119.485940156999987, 50.201858877000063 ], [ -119.48271559799997, 50.201667931000095 ], [ -119.48262662799999, 50.202286177000076 ], [ -119.482509121999968, 50.202300893000064 ], [ -119.481864349999952, 50.202430610000057 ], [ -119.479827754999974, 50.203029823000051 ], [ -119.475924337999956, 50.202798455000028 ], [ -119.47597581299999, 50.202441139000015 ], [ -119.477694094999904, 50.201473489000051 ], [ -119.478496207999939, 50.201249885000067 ] ], [ [ -119.50203842399999, 50.186140781000098 ], [ -119.502012549999947, 50.185645851000118 ], [ -119.500747763000035, 50.18557112400007 ], [ -119.500764860999936, 50.185898360000088 ], [ -119.501604508999918, 50.185880273000038 ], [ -119.501618597999979, 50.186149827000108 ], [ -119.50203842399999, 50.186140781000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "231", "sL_BldgLoss": "231", "sL_StrLoss": "231", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000077DAF902E3DF5DC0F50BB8DF880A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.496438951999977, 50.081764535000062 ], [ -119.496572209999911, 50.081097889 ], [ -119.496935533999959, 50.080454412000137 ], [ -119.499922993999917, 50.080631432000104 ], [ -119.499804002999966, 50.081462829000031 ], [ -119.500042911999969, 50.08147698300008 ], [ -119.499965062999976, 50.081649758000054 ], [ -119.499119079, 50.084109292000072 ], [ -119.499058193999986, 50.084534508000068 ], [ -119.499087375999963, 50.084918989000073 ], [ -119.499115332, 50.085033028000041 ], [ -119.497848570999949, 50.08495797500008 ], [ -119.498106996999937, 50.084258197000054 ], [ -119.498128601999937, 50.083853808000065 ], [ -119.497806378999883, 50.083573194000046 ], [ -119.497102588999937, 50.083228508000104 ], [ -119.496493811999954, 50.082809794000056 ], [ -119.496373493999911, 50.082091989000112 ], [ -119.496438951999977, 50.081764535000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9106000", "BldgCostT": "6280000", "sL_LossRatio": "1", "sL_AssetLoss": "835.2", "sL_BldgLoss": "835.2", "sL_StrLoss": "835.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A369BBCF92E05DC0B46E6A3D4F0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.507942710999927, 50.122326314000134 ], [ -119.507928618999983, 50.122056756000049 ], [ -119.507509354999939, 50.122065817000063 ], [ -119.507481175999942, 50.1215267010001 ], [ -119.507061915999927, 50.12153576000005 ], [ -119.507047828999973, 50.121266202000115 ], [ -119.506430096999949, 50.121279546000096 ], [ -119.506195930999922, 50.121028093000042 ], [ -119.50618115199994, 50.120745199000083 ], [ -119.50605725299999, 50.120747875000092 ], [ -119.506058498999906, 50.120095609000025 ], [ -119.505720679999968, 50.119675695000112 ], [ -119.506124825999933, 50.119666968000082 ], [ -119.506110743999912, 50.119397411000065 ], [ -119.507368465999932, 50.119370243000077 ], [ -119.507354377999903, 50.119100686000074 ], [ -119.506096662999965, 50.119127853000094 ], [ -119.506082581999976, 50.118858295000038 ], [ -119.505663346999938, 50.118867348000045 ], [ -119.50564926899996, 50.118597790000059 ], [ -119.505230033999965, 50.11860684100008 ], [ -119.505117435999921, 50.116450378000067 ], [ -119.506375082999952, 50.11642322200008 ], [ -119.506361000999931, 50.116153664000066 ], [ -119.508037847999944, 50.116117436000103 ], [ -119.508066027999931, 50.116656551000041 ], [ -119.50828595199999, 50.116651798000078 ], [ -119.508331833999975, 50.116908546000026 ], [ -119.508361903999955, 50.117076653000012 ], [ -119.508538113999975, 50.117385872000099 ], [ -119.508703967999963, 50.117551845000101 ], [ -119.508794385, 50.117609517000034 ], [ -119.508961352999933, 50.117716005000077 ], [ -119.509313467999945, 50.117855959000117 ], [ -119.510011564999957, 50.118008020000083 ], [ -119.510763877, 50.118171879000087 ], [ -119.511110495999901, 50.118350326000048 ], [ -119.511389102999885, 50.118542817000076 ], [ -119.512027437999933, 50.118959640000078 ], [ -119.512239836999953, 50.119242111000055 ], [ -119.512912092999969, 50.120590732000046 ], [ -119.513201980999938, 50.120986497000061 ], [ -119.513492547999988, 50.12138325600008 ], [ -119.513587105999932, 50.121665075000038 ], [ -119.513563045999916, 50.121934857000049 ], [ -119.513379022999942, 50.121938843000052 ], [ -119.513393145999984, 50.122208399000058 ], [ -119.512135357999966, 50.122235632000077 ], [ -119.512121239999928, 50.121966076000028 ], [ -119.510863456999957, 50.121993296000042 ], [ -119.510877564999973, 50.122262852000105 ], [ -119.507942710999927, 50.122326314000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "1", "sL_AssetLoss": "588", "sL_BldgLoss": "588", "sL_StrLoss": "588", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5DF7CF289DD5DC0005D8F1DAF1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46015121, 50.217488191000072 ], [ -119.459999005999975, 50.217372647000062 ], [ -119.460203802999942, 50.217421625000071 ], [ -119.46019800599997, 50.21725337900007 ], [ -119.460193885999971, 50.217134228000056 ], [ -119.460189046999957, 50.216992171000051 ], [ -119.460185338999977, 50.216884643000043 ], [ -119.460175739999968, 50.216604744000101 ], [ -119.460161984999942, 50.216205647000017 ], [ -119.460151480999983, 50.215899940000064 ], [ -119.460141071999942, 50.215597562000028 ], [ -119.460757218999959, 50.211190385000123 ], [ -119.46108291799996, 50.210930301000118 ], [ -119.461749189999964, 50.210538593000138 ], [ -119.461881714999947, 50.210364799000111 ], [ -119.462037869999932, 50.210311357000094 ], [ -119.463087794999964, 50.210373726000078 ], [ -119.462905872999926, 50.211633794000122 ], [ -119.463424053999915, 50.211664572000124 ], [ -119.463402909999914, 50.211254108000112 ], [ -119.464085647999951, 50.211239622000086 ], [ -119.464194225999933, 50.210487432000036 ], [ -119.466381488999971, 50.210617307000099 ], [ -119.465483400999958, 50.211145290000111 ], [ -119.46520669599991, 50.21127778900005 ], [ -119.463792082999944, 50.211766903000047 ], [ -119.463233613999961, 50.21200000200006 ], [ -119.462822783999968, 50.212223011000056 ], [ -119.462639211999928, 50.212393500000111 ], [ -119.462531379000012, 50.212574799000045 ], [ -119.462437677999958, 50.213057598000063 ], [ -119.46240926099992, 50.21311012400016 ], [ -119.462316876999964, 50.213280602000097 ], [ -119.462080569999955, 50.21353279700002 ], [ -119.462233281999943, 50.213664703000056 ], [ -119.46292199899996, 50.214480011 ], [ -119.46297378699991, 50.214588689000045 ], [ -119.462968912999898, 50.214710287000095 ], [ -119.462846051999989, 50.214824560000118 ], [ -119.462827477999966, 50.214841799000055 ], [ -119.461863417999965, 50.215163603000107 ], [ -119.461682380999946, 50.215286495000051 ], [ -119.461619882999983, 50.215371193000053 ], [ -119.461573879999932, 50.215433495000077 ], [ -119.46155622400002, 50.215604791000054 ], [ -119.461769190999959, 50.216927190000057 ], [ -119.461983601999975, 50.21873619800008 ], [ -119.462012796999971, 50.219947396000066 ], [ -119.461956470999894, 50.221000194000034 ], [ -119.461977792999946, 50.221456404000044 ], [ -119.462032299, 50.22169338700008 ], [ -119.46212028299999, 50.221853904000106 ], [ -119.462051305999964, 50.222098017000071 ], [ -119.46229131099993, 50.222726006000066 ], [ -119.462205680999929, 50.222919498000032 ], [ -119.462008414999943, 50.223129965000034 ], [ -119.461573304999931, 50.223594095000053 ], [ -119.461421905999956, 50.223531881000063 ], [ -119.461135691999957, 50.22331089700004 ], [ -119.460507389, 50.222816885000086 ], [ -119.460506011999911, 50.222815162000067 ], [ -119.460497261999947, 50.222804026000041 ], [ -119.460206398999944, 50.22243521100004 ], [ -119.460107473999969, 50.22208911900006 ], [ -119.460083000999958, 50.222003600000079 ], [ -119.460091702999989, 50.217919699000063 ], [ -119.460145281999957, 50.217530930000066 ], [ -119.46015121, 50.217488191000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "283.3", "sL_BldgLoss": "283.3", "sL_StrLoss": "283.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000062F4DC4297DF5DC06EF06C2CB4114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.492007970999936, 50.136705394000053 ], [ -119.495344416999941, 50.136902979000077 ], [ -119.494830923, 50.140483329000084 ], [ -119.493433481999972, 50.140400585000052 ], [ -119.493235724999948, 50.140152703000055 ], [ -119.493196392999934, 50.139380799000108 ], [ -119.493027473999959, 50.139077494000105 ], [ -119.492404386999937, 50.138704308000044 ], [ -119.491377304999929, 50.138312708000115 ], [ -119.491429392999976, 50.137690296000095 ], [ -119.491850411000016, 50.137160504000057 ], [ -119.492007970999936, 50.136705394000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7677750", "BldgCostT": "5295000", "sL_LossRatio": "1", "sL_AssetLoss": "769", "sL_BldgLoss": "769", "sL_StrLoss": "769", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DFDAB9EBEDB5DC04548177AC8124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.428938465999934, 50.148993071000071 ], [ -119.429002731999958, 50.14854961 ], [ -119.427833733999947, 50.148479702000046 ], [ -119.428004013999953, 50.148386090000038 ], [ -119.428792618999964, 50.148032752000091 ], [ -119.42887871799995, 50.147994196000113 ], [ -119.42951562399999, 50.14774970200007 ], [ -119.429891906999984, 50.14764579100008 ], [ -119.429946554999958, 50.147640715000065 ], [ -119.430699596999958, 50.147570488000078 ], [ -119.430826703999912, 50.147526530000029 ], [ -119.430951105999924, 50.147483487000066 ], [ -119.431287145999931, 50.147140375000106 ], [ -119.431406291, 50.147018709000079 ], [ -119.432904280999978, 50.145689997000034 ], [ -119.433219427000012, 50.145484007000057 ], [ -119.434172865999969, 50.14496237000008 ], [ -119.434506011999957, 50.144780099000094 ], [ -119.434831493000019, 50.144560283000061 ], [ -119.434857825, 50.144532356000092 ], [ -119.435068995999956, 50.14430810300005 ], [ -119.435151628999989, 50.144167269000086 ], [ -119.435227584999936, 50.144037802000113 ], [ -119.435252398999978, 50.143976500000115 ], [ -119.435691313999911, 50.142891906000038 ], [ -119.435736664, 50.142748532000098 ], [ -119.437137293, 50.142832200000022 ], [ -119.436619148999966, 50.146412249000029 ], [ -119.434948181, 50.146312431000091 ], [ -119.434511819999926, 50.149326191000071 ], [ -119.428938465999934, 50.148993071000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "108.3", "sL_BldgLoss": "108.3", "sL_StrLoss": "108.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042A27D6A44DB5DC04BA9F00C3F134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.42628905, 50.149328871000144 ], [ -119.42724159, 50.148805231000075 ], [ -119.426885114999919, 50.151264246000046 ], [ -119.425963441999897, 50.1512689690001 ], [ -119.425198528999957, 50.151269181000025 ], [ -119.424331195999983, 50.151217287000065 ], [ -119.42450656499993, 50.151056630000092 ], [ -119.424742081, 50.150518239000057 ], [ -119.425105545999926, 50.150192426000068 ], [ -119.42628905, 50.149328871000144 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91883084", "BldgCostT": "60478334", "sL_LossRatio": "1", "sL_AssetLoss": "6313.8", "sL_BldgLoss": "6313.8", "sL_StrLoss": "6313.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FB0DE2C8EDC5DC09100FB09630A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.455148718999951, 50.100907798000037 ], [ -119.45519131699993, 50.100612347000094 ], [ -119.454953932999928, 50.10059819300006 ], [ -119.454988037999925, 50.100361655000086 ], [ -119.454908146999969, 50.100356892000093 ], [ -119.455084747999976, 50.099132009000108 ], [ -119.453990699999906, 50.099066770000022 ], [ -119.454145645999915, 50.09799222 ], [ -119.45332965299994, 50.097943554000068 ], [ -119.453579989999938, 50.096207544000031 ], [ -119.449731854, 50.095977958000091 ], [ -119.449904924999899, 50.094778400000095 ], [ -119.448674001999933, 50.094704932000077 ], [ -119.44910272700001, 50.091733693000037 ], [ -119.447722771999906, 50.091651313000099 ], [ -119.447732770999949, 50.091582021000079 ], [ -119.44690655199993, 50.091532690000093 ], [ -119.447087743999958, 50.090277247000088 ], [ -119.445986978999954, 50.090211513000071 ], [ -119.445978034999939, 50.090273480000057 ], [ -119.444589603999987, 50.090190552000088 ], [ -119.444451699999945, 50.089997791000016 ], [ -119.444362276999968, 50.08968308000005 ], [ -119.444242628999987, 50.089261897000043 ], [ -119.444243972999985, 50.089246945000042 ], [ -119.444265966, 50.089129551000013 ], [ -119.444287022999973, 50.08899415900003 ], [ -119.444292292999975, 50.088823140000052 ], [ -119.444298022999988, 50.088661108000068 ], [ -119.444305129999961, 50.088526035000044 ], [ -119.44431317199998, 50.088408902 ], [ -119.444308143999976, 50.088310071000109 ], [ -119.44431249799996, 50.088121078000036 ], [ -119.44426235899995, 50.087960227000039 ], [ -119.443936129999955, 50.087868137000029 ], [ -119.443830584999915, 50.087811638000126 ], [ -119.443806752999976, 50.087798898000102 ], [ -119.443640783999953, 50.087559515000088 ], [ -119.443626643999977, 50.087280964000051 ], [ -119.44365947599999, 50.08709704700005 ], [ -119.443670152, 50.087037167000069 ], [ -119.443761485, 50.086909323000043 ], [ -119.443800214999968, 50.086845521000036 ], [ -119.443824498999902, 50.086773060000148 ], [ -119.443806862999963, 50.086701462000129 ], [ -119.443745510000014, 50.086594826000066 ], [ -119.443663709999967, 50.08652503200004 ], [ -119.44355476599999, 50.086468409000034 ], [ -119.443357390999978, 50.08637261700008 ], [ -119.443273618999925, 50.086171706000101 ], [ -119.44325541799999, 50.086131368000117 ], [ -119.443215093999967, 50.086041801000079 ], [ -119.443221014999949, 50.085266333000078 ], [ -119.443227727999925, 50.08438422300005 ], [ -119.443235243999965, 50.083395609000029 ], [ -119.443250194999933, 50.081435102000086 ], [ -119.44305609499996, 50.081418913000064 ], [ -119.442875607999923, 50.081356692000078 ], [ -119.44222948499997, 50.080913592000108 ], [ -119.441687890999958, 50.080631192000041 ], [ -119.441327305999948, 50.080388406000026 ], [ -119.441095497999953, 50.080069405000089 ], [ -119.440818515000018, 50.079567994000108 ], [ -119.440619316999943, 50.078731789000123 ], [ -119.440128419999951, 50.077826796000046 ], [ -119.439885298999982, 50.077178409000076 ], [ -119.439769215999917, 50.077010812000047 ], [ -119.439308126999919, 50.07658960000002 ], [ -119.439188807999983, 50.076424500000066 ], [ -119.439165206999974, 50.076315609000069 ], [ -119.43923728599999, 50.075768297000096 ], [ -119.4390381689999, 50.075146797000144 ], [ -119.438995860999967, 50.075014718000077 ], [ -119.438992280999955, 50.07500348000017 ], [ -119.438908488999985, 50.07474200300009 ], [ -119.438887713999975, 50.074380506000089 ], [ -119.438948899999943, 50.073850596000071 ], [ -119.438946804999915, 50.0736508950001 ], [ -119.438887681999958, 50.073368886000068 ], [ -119.438882007999922, 50.073341900000067 ], [ -119.438698735999964, 50.072840962000086 ], [ -119.438593292999883, 50.072552689000126 ], [ -119.438280681, 50.072151464000065 ], [ -119.438376001999956, 50.072157165000057 ], [ -119.438397895999941, 50.072005600000097 ], [ -119.438488121999967, 50.071976880000072 ], [ -119.438793856999965, 50.071781140000077 ], [ -119.438784146999922, 50.071334139000108 ], [ -119.440021837999964, 50.071408162000075 ], [ -119.440052770999941, 50.071193968000088 ], [ -119.439930260999986, 50.071186642000036 ], [ -119.439935074999951, 50.071153302000042 ], [ -119.439862073999947, 50.071154836000041 ], [ -119.439852608999971, 50.070968391000051 ], [ -119.439806569999973, 50.070965638000118 ], [ -119.439821003999924, 50.070865696000062 ], [ -119.439756475999928, 50.070861837000045 ], [ -119.439770947999975, 50.070761626000028 ], [ -119.439737681999986, 50.070759637000052 ], [ -119.439744794999982, 50.070710383000147 ], [ -119.438919358999897, 50.070661014000045 ], [ -119.4390013299999, 50.070093490000055 ], [ -119.438969670999938, 50.070094157 ], [ -119.438940726999974, 50.069523803000102 ], [ -119.438931747999916, 50.069346839000055 ], [ -119.438732744, 50.069334936000104 ], [ -119.438555319, 50.069173805000048 ], [ -119.438373233, 50.068960803000017 ], [ -119.43823730499993, 50.068801797000056 ], [ -119.438096203, 50.068563997000076 ], [ -119.438071979999975, 50.068500225000022 ], [ -119.4379647199999, 50.068217758000095 ], [ -119.437930603, 50.068128004000073 ], [ -119.43790087299999, 50.067889252000093 ], [ -119.437868883999897, 50.067632191000023 ], [ -119.438012809999961, 50.067324259000053 ], [ -119.438102381999968, 50.067132493000045 ], [ -119.438267396999905, 50.06666533100011 ], [ -119.438316013999952, 50.066527683000075 ], [ -119.438319126999929, 50.066291199000069 ], [ -119.438329800999938, 50.065480889000071 ], [ -119.438337841999967, 50.064868984000022 ], [ -119.438338094999949, 50.064849812000084 ], [ -119.438329677999917, 50.064427214000048 ], [ -119.438317215999959, 50.063800307000051 ], [ -119.438314523999949, 50.063690648000076 ], [ -119.438302908999987, 50.063213506000046 ], [ -119.438293075999979, 50.062811171000106 ], [ -119.439641982999888, 50.062688671000103 ], [ -119.439853949999986, 50.062595874000081 ], [ -119.443377527999957, 50.061883884000082 ], [ -119.443502327999951, 50.061865994000058 ], [ -119.44352179699996, 50.062662903000138 ], [ -119.443454513999924, 50.06385219100008 ], [ -119.443058486999973, 50.064300802000091 ], [ -119.442189011, 50.064786387000083 ], [ -119.442033510999948, 50.065581101000156 ], [ -119.44237838, 50.066860098000028 ], [ -119.442922400999961, 50.067650493 ], [ -119.443112110999948, 50.068365491000037 ], [ -119.443357, 50.068782785000046 ], [ -119.445737414999911, 50.071054407000055 ], [ -119.448073180999955, 50.072759191000081 ], [ -119.448080694999959, 50.073190710000119 ], [ -119.447778996999887, 50.073825895000063 ], [ -119.4479971169999, 50.075099095000041 ], [ -119.447842484999953, 50.075651691000104 ], [ -119.447874208999934, 50.076513399000149 ], [ -119.44746549099996, 50.078384816000032 ], [ -119.44750197899999, 50.078816293000052 ], [ -119.447778587999949, 50.079574009000048 ], [ -119.448689682999955, 50.080445600000068 ], [ -119.448692397999977, 50.080452475000072 ], [ -119.449073791, 50.081418397000064 ], [ -119.449131788999964, 50.082010794000048 ], [ -119.448823806999954, 50.082251488000068 ], [ -119.44860616699999, 50.082647903000129 ], [ -119.448419912999938, 50.082636782000087 ], [ -119.44841551799999, 50.082667244000014 ], [ -119.447257644, 50.082598102000048 ], [ -119.447200807999963, 50.082594706000059 ], [ -119.447099732999931, 50.083295175000067 ], [ -119.447214433999989, 50.08330202500013 ], [ -119.447428146, 50.083314788000081 ], [ -119.447346993999986, 50.083877207000079 ], [ -119.447107769999931, 50.085535028000074 ], [ -119.448064384999967, 50.085592151000093 ], [ -119.44933090799999, 50.085667766000043 ], [ -119.450074587999922, 50.087595111000049 ], [ -119.450367393999969, 50.088434001000032 ], [ -119.45141391199999, 50.090013505000066 ], [ -119.452175503999953, 50.091256796000032 ], [ -119.453758719999925, 50.093210804000115 ], [ -119.454197303999933, 50.093606687000062 ], [ -119.455088403999952, 50.09406390000003 ], [ -119.455976288999977, 50.095016713000035 ], [ -119.456391206, 50.095745913000073 ], [ -119.45785809100002, 50.096802708000034 ], [ -119.457660311999959, 50.097581706000049 ], [ -119.457702400999949, 50.098147105000045 ], [ -119.457866522999964, 50.098367903000046 ], [ -119.458698104999925, 50.099034400000036 ], [ -119.459587203, 50.099455985000105 ], [ -119.460841706999972, 50.100369590000078 ], [ -119.460716375999965, 50.101239613000089 ], [ -119.45905146599992, 50.101140420000043 ], [ -119.455148718999951, 50.100907798000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103820166", "BldgCostT": "69126666", "sL_LossRatio": "1", "sL_AssetLoss": "7471.8", "sL_BldgLoss": "7471.8", "sL_StrLoss": "7471.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FC4F5DE0EDD5DC03A7569ECE00F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.448476187999972, 50.147140614000072 ], [ -119.448705642999983, 50.145552430000052 ], [ -119.44775917299998, 50.145495998000023 ], [ -119.44783855899999, 50.144946575000056 ], [ -119.447664506999985, 50.144936197000106 ], [ -119.448181764999916, 50.14135608800008 ], [ -119.448282826999943, 50.141362114000067 ], [ -119.448363686999954, 50.140802391000122 ], [ -119.448394461999953, 50.140804226000078 ], [ -119.448485115999929, 50.140176692000097 ], [ -119.449444601999929, 50.14023390100008 ], [ -119.449690855999975, 50.138528915000116 ], [ -119.450007724999963, 50.138547806000055 ], [ -119.450066760999945, 50.138139023000072 ], [ -119.45033825199999, 50.138155208000079 ], [ -119.450408273999983, 50.13767033000002 ], [ -119.450478177999983, 50.137674497000063 ], [ -119.450513681999922, 50.137428631000013 ], [ -119.450641655999959, 50.137436261000069 ], [ -119.450724439999959, 50.136862959 ], [ -119.45012263699999, 50.136827082000075 ], [ -119.450257790999956, 50.135891163000053 ], [ -119.450150800999936, 50.13588478499999 ], [ -119.450178003999937, 50.135696418000066 ], [ -119.450105313000023, 50.135692084000041 ], [ -119.450190131999932, 50.1351047160001 ], [ -119.449765140999986, 50.135079377000075 ], [ -119.4497928279999, 50.134887660000103 ], [ -119.449638749999949, 50.134878473000121 ], [ -119.449666216999958, 50.134688281000059 ], [ -119.44697867899994, 50.134528 ], [ -119.447424162999965, 50.131444267000091 ], [ -119.447126497999989, 50.131450544000138 ], [ -119.447112741999902, 50.131180975000063 ], [ -119.445435290999953, 50.131216331000118 ], [ -119.445306854999927, 50.128697416000101 ], [ -119.443615247999929, 50.128596458000111 ], [ -119.444344699999988, 50.126530681000084 ], [ -119.444505293999939, 50.126207103000127 ], [ -119.44513000799999, 50.125305509000036 ], [ -119.445417791999944, 50.125082617000068 ], [ -119.445335796999956, 50.124581211000098 ], [ -119.445327111999944, 50.12418430700005 ], [ -119.445418395, 50.123815096000051 ], [ -119.445798814999961, 50.122819063000037 ], [ -119.445870117999903, 50.122632403000082 ], [ -119.446053150999958, 50.122239890000088 ], [ -119.447050505999954, 50.120101353000059 ], [ -119.450054189, 50.120280542000053 ], [ -119.451816665, 50.120385646000102 ], [ -119.451733208999954, 50.120963921000076 ], [ -119.45178708199991, 50.120967133000093 ], [ -119.452109107999945, 50.118735699000126 ], [ -119.45224819799995, 50.117771821000062 ], [ -119.453209637999947, 50.117829143000101 ], [ -119.453302410999981, 50.117827182000056 ], [ -119.455494059999936, 50.117780830000079 ], [ -119.455516866999929, 50.117622696000055 ], [ -119.45961693699999, 50.117866966000115 ], [ -119.460021815999966, 50.115057792000137 ], [ -119.460897215, 50.115109926000137 ], [ -119.460940590999911, 50.114808912000115 ], [ -119.461387206999945, 50.114835507000066 ], [ -119.461365795999939, 50.114418120000082 ], [ -119.461483696999949, 50.114415619000077 ], [ -119.461513251999975, 50.114210486000104 ], [ -119.460324819999926, 50.114139713000021 ], [ -119.460380585999943, 50.113752736000038 ], [ -119.460022436999949, 50.113731405000124 ], [ -119.460097478999913, 50.113210678000037 ], [ -119.459867865999939, 50.113197002000057 ], [ -119.459981346999939, 50.112409555000099 ], [ -119.459915020999944, 50.112405604000088 ], [ -119.460430943999896, 50.108825285000101 ], [ -119.460436254999976, 50.108825601000042 ], [ -119.460517860999957, 50.108259223000033 ], [ -119.46058707499995, 50.107778852000081 ], [ -119.460529652, 50.107775431000078 ], [ -119.460548006999943, 50.1076480340001 ], [ -119.46037042599994, 50.107637456000113 ], [ -119.460017532999942, 50.107616436000121 ], [ -119.459926540999973, 50.107611015000082 ], [ -119.459940656999976, 50.107513056000137 ], [ -119.459977769999909, 50.107255495000047 ], [ -119.459818299999966, 50.107245996000131 ], [ -119.459707758999969, 50.107239410000055 ], [ -119.459733484999944, 50.107060874000155 ], [ -119.459791137999957, 50.106660780000041 ], [ -119.459714687999963, 50.106656225000059 ], [ -119.458822769000037, 50.106603087000032 ], [ -119.458903735999954, 50.106041260000069 ], [ -119.458240029999942, 50.106001713000083 ], [ -119.456422929999917, 50.105893422000108 ], [ -119.456939055999953, 50.102313087000034 ], [ -119.459765308999962, 50.102481508000018 ], [ -119.461894378999943, 50.102608333000028 ], [ -119.462163892999968, 50.10305349000005 ], [ -119.46234180099999, 50.104920705000097 ], [ -119.462838383999895, 50.105594303000061 ], [ -119.463972914999971, 50.106164003000075 ], [ -119.464491811999977, 50.106737887000101 ], [ -119.464544991999972, 50.106951593000105 ], [ -119.464677384999959, 50.107902900000113 ], [ -119.463806507999934, 50.108928407000057 ], [ -119.463757571999935, 50.109327217 ], [ -119.463717906999989, 50.109650487000074 ], [ -119.463544288999969, 50.110163387000107 ], [ -119.463233397999943, 50.111081795000096 ], [ -119.46335131799999, 50.111754001000108 ], [ -119.463861110999957, 50.112417705000027 ], [ -119.464564998999919, 50.112780894000039 ], [ -119.46588678799999, 50.113210994000049 ], [ -119.466325989999987, 50.113234720000023 ], [ -119.46672899399999, 50.113256495000059 ], [ -119.467148714999936, 50.113804905000109 ], [ -119.467008303999989, 50.114051287000052 ], [ -119.467033993, 50.114301908000087 ], [ -119.467342274999936, 50.114548294000031 ], [ -119.467106416999954, 50.114858797000089 ], [ -119.466658179999939, 50.115146496000158 ], [ -119.466637351999964, 50.115503588000095 ], [ -119.466606183999943, 50.116037994000116 ], [ -119.466031302, 50.117094809000037 ], [ -119.465523095999941, 50.117546288000071 ], [ -119.465315690999958, 50.117604697000083 ], [ -119.465202389999931, 50.117561894000154 ], [ -119.464947401999893, 50.117215895000164 ], [ -119.464534815999968, 50.117090491000127 ], [ -119.464001722999939, 50.11708340200007 ], [ -119.463198493999954, 50.117252900000032 ], [ -119.46300480099994, 50.117527793000079 ], [ -119.46147488599992, 50.118000598000087 ], [ -119.460358101999972, 50.118573101000031 ], [ -119.459702304999951, 50.119189790000114 ], [ -119.459012802999922, 50.119618511000091 ], [ -119.458371812999971, 50.120243706000032 ], [ -119.457964813999979, 50.120746504000053 ], [ -119.457673401999983, 50.121633696000075 ], [ -119.45741390799999, 50.121729197 ], [ -119.456638706999939, 50.12162949800009 ], [ -119.456062494999983, 50.121865905000035 ], [ -119.455770096999942, 50.122177809000071 ], [ -119.455489289999917, 50.122670607000032 ], [ -119.455334710999921, 50.123231710000034 ], [ -119.455467581999969, 50.123641892000073 ], [ -119.45583990199998, 50.123778598000115 ], [ -119.455959786999983, 50.123928190000136 ], [ -119.455517286999935, 50.124324100000095 ], [ -119.455267185999972, 50.124365397000084 ], [ -119.454187198999975, 50.125665689000058 ], [ -119.453653388999939, 50.128636590000085 ], [ -119.453468080999968, 50.130493804000139 ], [ -119.453458405999982, 50.131114699000122 ], [ -119.453431479999921, 50.131952091000123 ], [ -119.453573008999982, 50.132551687000024 ], [ -119.453821581999975, 50.133004598000063 ], [ -119.454051257999936, 50.133452713000025 ], [ -119.454318704999949, 50.133974510000016 ], [ -119.45462039799996, 50.134958712000106 ], [ -119.454634678999952, 50.135227800000102 ], [ -119.454386879999902, 50.135575301000102 ], [ -119.454000396999959, 50.135988390000065 ], [ -119.453957880999923, 50.136213404000053 ], [ -119.453955405999963, 50.136744611000012 ], [ -119.454253585999965, 50.137656103000083 ], [ -119.45367669399999, 50.138413787000125 ], [ -119.453437000999941, 50.138905105000077 ], [ -119.453418201999909, 50.139615810000059 ], [ -119.452960794999925, 50.140263805000117 ], [ -119.452357996999979, 50.140799309000023 ], [ -119.452006304999941, 50.141292085000025 ], [ -119.451648991999946, 50.141982910000124 ], [ -119.451585408999932, 50.142640788000037 ], [ -119.451417498999945, 50.142924298000047 ], [ -119.451422594999954, 50.143850001000068 ], [ -119.45166351499995, 50.144465307000068 ], [ -119.452022885999952, 50.144908197000092 ], [ -119.452170019000022, 50.146137306000114 ], [ -119.45196410199999, 50.14651039300005 ], [ -119.45198230599999, 50.147129898000088 ], [ -119.45191238699999, 50.147345425000069 ], [ -119.450173811999932, 50.147241813000029 ], [ -119.448476187999972, 50.147140614000072 ] ], [ [ -119.446136520999957, 50.128502962000034 ], [ -119.446112255999964, 50.128027183000086 ], [ -119.445994054999943, 50.128020130000081 ], [ -119.445923648999909, 50.128507449000047 ], [ -119.446136520999957, 50.128502962000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019863", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "1", "sL_AssetLoss": "238.1", "sL_BldgLoss": "238.1", "sL_StrLoss": "238.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085D9786EE9DC5DC0B0528361270E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.450874127, 50.108665966000096 ], [ -119.453602330999956, 50.108828672000108 ], [ -119.453085868999963, 50.112408959000092 ], [ -119.449611080999944, 50.112201717000104 ], [ -119.44966850699997, 50.112015013000061 ], [ -119.449934689999935, 50.111435898000096 ], [ -119.450078199999979, 50.110879297000025 ], [ -119.450258498999943, 50.109727297000134 ], [ -119.450874127, 50.108665966000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "369.8", "sL_BldgLoss": "369.8", "sL_StrLoss": "369.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000347A7FCDC3DC5DC07B402CDDD50E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44917768399992, 50.113567316000051 ], [ -119.449411380999962, 50.113066695000022 ], [ -119.449462091999976, 50.112686107000059 ], [ -119.449531509999957, 50.112460418000104 ], [ -119.450926874999979, 50.112543654000056 ], [ -119.450774384999988, 50.113600296000072 ], [ -119.451340231999893, 50.113634045000069 ], [ -119.45082353799998, 50.11721429900004 ], [ -119.449768082999952, 50.117151348000114 ], [ -119.449584550999987, 50.118422724 ], [ -119.449552462999989, 50.118420810000039 ], [ -119.449470576999914, 50.118988025000128 ], [ -119.447483560999942, 50.118869482000051 ], [ -119.447494013999972, 50.118838406000094 ], [ -119.44740878099999, 50.118429473000049 ], [ -119.44737950199999, 50.118288987000057 ], [ -119.447310702999985, 50.118087298000027 ], [ -119.447288680999975, 50.118022706000026 ], [ -119.447573004999953, 50.117678511000122 ], [ -119.447673307999935, 50.117129296000094 ], [ -119.447863323999968, 50.116609824000101 ], [ -119.447875298999975, 50.116577095000082 ], [ -119.447852282, 50.116453903000021 ], [ -119.447562983999916, 50.116210900000091 ], [ -119.447525805999973, 50.11603089700003 ], [ -119.447603274999977, 50.115980033000042 ], [ -119.447680910999935, 50.115929091000027 ], [ -119.448259321999927, 50.115794801000057 ], [ -119.44841369999989, 50.115697388000029 ], [ -119.448516173999934, 50.115571797000023 ], [ -119.448849622999987, 50.114651033000044 ], [ -119.449111712999979, 50.113927207000124 ], [ -119.44917768399992, 50.113567316000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.6", "sL_BldgLoss": "43.6", "sL_StrLoss": "43.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000367AD2156EDA5DC0963687310A124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.41231953799999, 50.140544797000139 ], [ -119.4135779, 50.140518638000067 ], [ -119.413618616999912, 50.14132736300008 ], [ -119.412360231999955, 50.141353525000078 ], [ -119.41231953799999, 50.140544797000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026666", "BldgCostT": "3466666", "sL_LossRatio": "1", "sL_AssetLoss": "367.5", "sL_BldgLoss": "367.5", "sL_StrLoss": "367.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009DA7F0568CDA5DC01853B83722124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.41650048799994, 50.140187971000032 ], [ -119.417758837999912, 50.140161766000062 ], [ -119.41782681499997, 50.141509638000066 ], [ -119.41614896599999, 50.141544577000026 ], [ -119.416162553, 50.141814152000123 ], [ -119.415323623999925, 50.141831612000054 ], [ -119.415337204999972, 50.142101187000051 ], [ -119.41491773599995, 50.14210991500002 ], [ -119.414931316999912, 50.142379490000039 ], [ -119.414511846999986, 50.142388216000029 ], [ -119.414525424999965, 50.142657792000108 ], [ -119.414105951999943, 50.142666517000102 ], [ -119.414119527999944, 50.142936092000134 ], [ -119.413280576999909, 50.142953537000103 ], [ -119.41329414799999, 50.143223113000069 ], [ -119.412035712999938, 50.143249271000052 ], [ -119.411967894999989, 50.141901393000062 ], [ -119.412387361999947, 50.141892675000129 ], [ -119.412373795999912, 50.141623100000039 ], [ -119.414051651999955, 50.141588216000073 ], [ -119.414038076999972, 50.141318641000019 ], [ -119.414457537999951, 50.141309916000047 ], [ -119.41444396199995, 50.141040341000064 ], [ -119.414863419999946, 50.141031615000024 ], [ -119.414849841999967, 50.140762039000123 ], [ -119.415269296999938, 50.140753313000062 ], [ -119.415255716999965, 50.140483738000114 ], [ -119.416514074999952, 50.14045754500011 ], [ -119.41650048799994, 50.140187971000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50905583", "BldgCostT": "32168333", "sL_LossRatio": "0.993327169974502", "sL_AssetLoss": "2682.52", "sL_BldgLoss": "2664.62", "sL_StrLoss": "2658.1", "sL_NStrLoss": "6.52", "sL_ContLoss": "17.9", "geom_point": "0101000020E61000009BD62AEA61DB5DC039EA3246B5124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.426867644999959, 50.147758003000078 ], [ -119.427003449999944, 50.146821161000105 ], [ -119.425437492999947, 50.146727479000099 ], [ -119.425469017999959, 50.146510051000121 ], [ -119.424081764, 50.146427042000091 ], [ -119.42460089599993, 50.142847050000057 ], [ -119.430173465999985, 50.143180392000048 ], [ -119.430141963999944, 50.143397822000033 ], [ -119.431423458999973, 50.143474439000016 ], [ -119.431564715999926, 50.142499209000029 ], [ -119.435736664, 50.142748532000098 ], [ -119.435691313999911, 50.142891906000038 ], [ -119.435252398999978, 50.143976500000115 ], [ -119.435227584999936, 50.144037802000113 ], [ -119.435151628999989, 50.144167269000086 ], [ -119.435068995999956, 50.14430810300005 ], [ -119.434857825, 50.144532356000092 ], [ -119.434831493000019, 50.144560283000061 ], [ -119.434506011999957, 50.144780099000094 ], [ -119.434172865999969, 50.14496237000008 ], [ -119.433219427000012, 50.145484007000057 ], [ -119.432904280999978, 50.145689997000034 ], [ -119.431406291, 50.147018709000079 ], [ -119.431287145999931, 50.147140375000106 ], [ -119.430951105999924, 50.147483487000066 ], [ -119.430826703999912, 50.147526530000029 ], [ -119.430699596999958, 50.147570488000078 ], [ -119.429946554999958, 50.147640715000065 ], [ -119.429891906999984, 50.14764579100008 ], [ -119.42951562399999, 50.14774970200007 ], [ -119.42887871799995, 50.147994196000113 ], [ -119.428792618999964, 50.148032752000091 ], [ -119.428004013999953, 50.148386090000038 ], [ -119.427833733999947, 50.148479702000046 ], [ -119.42729346099999, 50.148447390000101 ], [ -119.42724159, 50.148805231000075 ], [ -119.42628905, 50.149328871000144 ], [ -119.425105545999926, 50.150192426000068 ], [ -119.424742081, 50.150518239000057 ], [ -119.42450656499993, 50.151056630000092 ], [ -119.424331195999983, 50.151217287000065 ], [ -119.421296355999985, 50.151035655000086 ], [ -119.421728686999984, 50.148055872000043 ], [ -119.421815758999912, 50.147455699000098 ], [ -119.426867644999959, 50.147758003000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12303250", "BldgCostT": "8485000", "sL_LossRatio": "1", "sL_AssetLoss": "1026", "sL_BldgLoss": "1026", "sL_StrLoss": "1026", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FDE2CB1F4DB5DC04BF6741A8E104940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.43428343799998, 50.127380133000017 ], [ -119.439854182999966, 50.127712992000042 ], [ -119.439336424999937, 50.131293126000095 ], [ -119.43376524599995, 50.130960243000054 ], [ -119.43428343799998, 50.127380133000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22350500", "BldgCostT": "13940000", "sL_LossRatio": "1", "sL_AssetLoss": "929", "sL_BldgLoss": "929", "sL_StrLoss": "929", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000096AE899A62DC5DC0FC5DAF1BFC0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44392539899998, 50.125003920000083 ], [ -119.444059021999948, 50.124079227000074 ], [ -119.443536356999971, 50.12404802700005 ], [ -119.444053702999938, 50.120467839000121 ], [ -119.446168632999957, 50.120594073000042 ], [ -119.446246730999931, 50.120053389000091 ], [ -119.447050505999954, 50.120101353000059 ], [ -119.446053150999958, 50.122239890000088 ], [ -119.445870117999903, 50.122632403000082 ], [ -119.445798814999961, 50.122819063000037 ], [ -119.445418395, 50.123815096000051 ], [ -119.445327111999944, 50.12418430700005 ], [ -119.445335796999956, 50.124581211000098 ], [ -119.445417791999944, 50.125082617000068 ], [ -119.44513000799999, 50.125305509000036 ], [ -119.444505293999939, 50.126207103000127 ], [ -119.444344699999988, 50.126530681000084 ], [ -119.443615247999929, 50.128596458000111 ], [ -119.44032025199999, 50.128399729000058 ], [ -119.440837898999959, 50.124819577000018 ], [ -119.44392539899998, 50.125003920000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12682667", "BldgCostT": "8746667", "sL_LossRatio": "1", "sL_AssetLoss": "1003.2", "sL_BldgLoss": "1003.2", "sL_StrLoss": "1003.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F755FB6CCBDA5DC0766CA92883114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.416140102999933, 50.134858237000081 ], [ -119.421711632, 50.13519201000009 ], [ -119.421192360999981, 50.138772024000097 ], [ -119.415620397999987, 50.138438225000101 ], [ -119.416140102999933, 50.134858237000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23962416", "BldgCostT": "15051666", "sL_LossRatio": "1", "sL_AssetLoss": "1093.5", "sL_BldgLoss": "1093.5", "sL_StrLoss": "1093.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBBE49B292DC5DC09A8390C1C40E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.445357904999952, 50.112211348000073 ], [ -119.449531509999957, 50.112460418000104 ], [ -119.449462091999976, 50.112686107000059 ], [ -119.449411380999962, 50.113066695000022 ], [ -119.44917768399992, 50.113567316000051 ], [ -119.449111712999979, 50.113927207000124 ], [ -119.448849622999987, 50.114651033000044 ], [ -119.448516173999934, 50.115571797000023 ], [ -119.44841369999989, 50.115697388000029 ], [ -119.448259321999927, 50.115794801000057 ], [ -119.447680910999935, 50.115929091000027 ], [ -119.447603274999977, 50.115980033000042 ], [ -119.447525805999973, 50.11603089700003 ], [ -119.447562983999916, 50.116210900000091 ], [ -119.447852282, 50.116453903000021 ], [ -119.447875298999975, 50.116577095000082 ], [ -119.447863323999968, 50.116609824000101 ], [ -119.447673307999935, 50.117129296000094 ], [ -119.447573004999953, 50.117678511000122 ], [ -119.447288680999975, 50.118022706000026 ], [ -119.447310702999985, 50.118087298000027 ], [ -119.44737950199999, 50.118288987000057 ], [ -119.44740878099999, 50.118429473000049 ], [ -119.447494013999972, 50.118838406000094 ], [ -119.447483560999942, 50.118869482000051 ], [ -119.443900829999947, 50.118655649000125 ], [ -119.44441808599997, 50.115075433000108 ], [ -119.444450170999943, 50.115077350000043 ], [ -119.444532112, 50.114510135000039 ], [ -119.444637977999918, 50.11451645500005 ], [ -119.444859381999962, 50.112983739000121 ], [ -119.445243034999962, 50.113006642000045 ], [ -119.445357904999952, 50.112211348000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11241583", "BldgCostT": "7543333", "sL_LossRatio": "0.987983199813331", "sL_AssetLoss": "771.42", "sL_BldgLoss": "762.15", "sL_StrLoss": "758.8", "sL_NStrLoss": "3.35", "sL_ContLoss": "9.27", "geom_point": "0101000020E61000000A8F68C899DA5DC00ED4F7542D134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.417530974999963, 50.148346740000065 ], [ -119.418706024999949, 50.148417121000101 ], [ -119.418276634999955, 50.151375238000092 ], [ -119.417386885, 50.151382405000128 ], [ -119.41264920199994, 50.151412604000058 ], [ -119.413132897999986, 50.148083201000084 ], [ -119.417530974999963, 50.148346740000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162848917", "BldgCostT": "108771667", "sL_LossRatio": "0.996093520260211", "sL_AssetLoss": "12748.050244", "sL_BldgLoss": "12698.250244", "sL_StrLoss": "12680.200244", "sL_NStrLoss": "18.05", "sL_ContLoss": "49.8", "geom_point": "0101000020E6100000DD9CE6917DDA5DC0C228B5D5B4084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.404064183999964, 50.077163237000086 ], [ -119.404066821999962, 50.077145072000079 ], [ -119.403751694999954, 50.077126125000127 ], [ -119.403138161999891, 50.077089233000059 ], [ -119.40261283399991, 50.077057643000046 ], [ -119.402417433, 50.077045891000132 ], [ -119.402764634999969, 50.074655655000086 ], [ -119.404865697999924, 50.07266540800007 ], [ -119.40559790499999, 50.071865209000102 ], [ -119.405666564999976, 50.071767617000035 ], [ -119.406283710999929, 50.070890715000061 ], [ -119.406718912999949, 50.069999547000094 ], [ -119.40694317699996, 50.069440590000042 ], [ -119.407476131999957, 50.067382462000069 ], [ -119.407982456999946, 50.065971916000088 ], [ -119.40803228499999, 50.065762071000044 ], [ -119.408130281999945, 50.06534966600001 ], [ -119.408024263999962, 50.064069330000095 ], [ -119.407945928999965, 50.063142848000055 ], [ -119.41021734899999, 50.063279355000091 ], [ -119.412467063999941, 50.063414511000062 ], [ -119.412261061999914, 50.064835184000074 ], [ -119.412521256999966, 50.064850813000149 ], [ -119.412480539999962, 50.065131614000066 ], [ -119.412548774999962, 50.065135712000036 ], [ -119.412494834999947, 50.06550771000007 ], [ -119.412362880999936, 50.066417689000097 ], [ -119.41240166599999, 50.066420019000105 ], [ -119.411882446999982, 50.070000315000122 ], [ -119.41117030399991, 50.069957539000022 ], [ -119.411083142999985, 50.070558431000102 ], [ -119.41076080199997, 50.070539068000073 ], [ -119.410699749999978, 50.07095993800008 ], [ -119.410633647999958, 50.070955968000128 ], [ -119.41057176799994, 50.071382540000037 ], [ -119.410388975999979, 50.071371560000109 ], [ -119.410356669999942, 50.071594245000043 ], [ -119.410055776000021, 50.071576169000068 ], [ -119.410025237999918, 50.071786660000065 ], [ -119.411247169999939, 50.071860063000017 ], [ -119.41110568299996, 50.072835457000032 ], [ -119.411434527999958, 50.072828622000024 ], [ -119.411448053999919, 50.073098201000086 ], [ -119.411866921999959, 50.073089495000033 ], [ -119.411839862999926, 50.072550337000031 ], [ -119.41225872499993, 50.072541629000071 ], [ -119.412231662999972, 50.072002471000054 ], [ -119.412650518999953, 50.071993761000108 ], [ -119.412623451999963, 50.071454603000156 ], [ -119.412204601000013, 50.071463313000052 ], [ -119.412123419999986, 50.069845840000035 ], [ -119.41254225699997, 50.069837131000078 ], [ -119.412501664000018, 50.069028395000061 ], [ -119.413758154999925, 50.069002259000079 ], [ -119.413771693999962, 50.069271839000095 ], [ -119.414190525999942, 50.069263124000045 ], [ -119.414068667999928, 50.066836916000078 ], [ -119.415743911, 50.066802044000021 ], [ -119.41573036299998, 50.066532466000083 ], [ -119.416149170999915, 50.066523745000069 ], [ -119.416067872999974, 50.064906274000073 ], [ -119.416486665999983, 50.064897552000119 ], [ -119.416473113999956, 50.064627974000146 ], [ -119.416891905999975, 50.064619251000124 ], [ -119.41687835099998, 50.064349672000091 ], [ -119.417715928999968, 50.064332220000047 ], [ -119.417688813999987, 50.063793064000073 ], [ -119.418052654999897, 50.06378548100006 ], [ -119.418104682999925, 50.063426351000061 ], [ -119.417271497999948, 50.063376345000087 ], [ -119.415588019999944, 50.063275285000053 ], [ -119.41571129699993, 50.062424667000158 ], [ -119.41364571699998, 50.062300634000096 ], [ -119.413875802999911, 50.060713424000042 ], [ -119.40861086399994, 50.060397099000078 ], [ -119.40881894499995, 50.058962732000083 ], [ -119.408751964999936, 50.058958706000041 ], [ -119.408760228999924, 50.058901739000042 ], [ -119.407897541, 50.058849883000065 ], [ -119.407932954999964, 50.058605792000073 ], [ -119.407997443999989, 50.058161290000058 ], [ -119.40747218199999, 50.058129712000053 ], [ -119.407478353999963, 50.058096450000107 ], [ -119.407643573999934, 50.057537563000018 ], [ -119.407729675000013, 50.05739829500007 ], [ -119.407855701999964, 50.057046907 ], [ -119.408417506999953, 50.055480387000081 ], [ -119.408577824999924, 50.055287835000101 ], [ -119.408765226999961, 50.055062758000105 ], [ -119.408782694999914, 50.055041791000043 ], [ -119.409263451, 50.054681559000045 ], [ -119.409345982999952, 50.054619692000074 ], [ -119.410879392999959, 50.053736798000081 ], [ -119.411174071999966, 50.053949676000045 ], [ -119.411247498999913, 50.054002710000105 ], [ -119.411375381999932, 50.054213500000117 ], [ -119.411322841999933, 50.055156599000028 ], [ -119.411291445999936, 50.055944845000056 ], [ -119.411286714999932, 50.056063622000067 ], [ -119.411333252999924, 50.056778497000046 ], [ -119.411342771999927, 50.056924740000106 ], [ -119.411398954999967, 50.057075190000042 ], [ -119.411472104999973, 50.057271080000085 ], [ -119.41165122299995, 50.057541773000025 ], [ -119.412226534999959, 50.058411173000138 ], [ -119.4123948299999, 50.058665487000063 ], [ -119.412938584999949, 50.05912342000007 ], [ -119.413610651999946, 50.059422011 ], [ -119.415403689999906, 50.060096698000059 ], [ -119.415681552999956, 50.060187501000101 ], [ -119.416128894999986, 50.060333720000095 ], [ -119.416594508999935, 50.060485891000084 ], [ -119.416662569, 50.060508137000063 ], [ -119.417579114999953, 50.06063989000009 ], [ -119.418037119999966, 50.060643762000126 ], [ -119.418314613999925, 50.060646107000046 ], [ -119.418573715999969, 50.06064773100006 ], [ -119.418868173999954, 50.060649542000142 ], [ -119.41918728399996, 50.060652308000037 ], [ -119.420449881999943, 50.060663196000078 ], [ -119.423981633, 50.060693555000078 ], [ -119.425508358999949, 50.060761011000146 ], [ -119.426498792999979, 50.060804736000129 ], [ -119.426907819999911, 50.060870010000095 ], [ -119.427849255999945, 50.061020212000102 ], [ -119.428224229999927, 50.061114007000072 ], [ -119.429074668999988, 50.06150896600009 ], [ -119.429340176999915, 50.061593477000017 ], [ -119.429519038999914, 50.061621502000087 ], [ -119.42938358699999, 50.062558133000074 ], [ -119.428852913999989, 50.062526337000065 ], [ -119.428852261999936, 50.062530845000047 ], [ -119.42534615699999, 50.06232071200003 ], [ -119.42531160899992, 50.062559451000041 ], [ -119.425060296999931, 50.064296027000076 ], [ -119.42360255799997, 50.064208626000074 ], [ -119.423533852999981, 50.064683261000063 ], [ -119.421080015, 50.064536094000061 ], [ -119.421120537999983, 50.065340661000086 ], [ -119.42070174199992, 50.065349401000041 ], [ -119.420769620999963, 50.066697289000089 ], [ -119.420350811999924, 50.066706026000119 ], [ -119.420377961999918, 50.067245181000082 ], [ -119.419959148999922, 50.067253918000112 ], [ -119.419972719999947, 50.067523495000074 ], [ -119.420391534999922, 50.067514759000112 ], [ -119.42041868499993, 50.068053914000131 ], [ -119.420837505999899, 50.06804517400009 ], [ -119.420851081999899, 50.068314753000017 ], [ -119.421269903999928, 50.068306012000043 ], [ -119.421324226999928, 50.069384321000051 ], [ -119.420905393999988, 50.069393061000028 ], [ -119.421149839999899, 50.07424545000012 ], [ -119.420730965999965, 50.074254190000026 ], [ -119.42074454499999, 50.074523767000116 ], [ -119.420230600999972, 50.074534489 ], [ -119.4190690399999, 50.074558713000052 ], [ -119.419041897999975, 50.074019559000085 ], [ -119.418623025999963, 50.074028292000065 ], [ -119.418636594999924, 50.074297868000023 ], [ -119.417406655999983, 50.074323502000055 ], [ -119.417379968999967, 50.074324059000027 ], [ -119.41736640799999, 50.074054480000072 ], [ -119.416109788999933, 50.074080656000092 ], [ -119.416204668999939, 50.075967701000067 ], [ -119.415785779999965, 50.075976424000018 ], [ -119.415812884999951, 50.076515581000109 ], [ -119.414726635999955, 50.076538193000083 ], [ -119.414134935999954, 50.0765505070001 ], [ -119.412461718999964, 50.076585310000034 ], [ -119.412448184999931, 50.076315731000115 ], [ -119.412056564999958, 50.076323872000096 ], [ -119.411896958999975, 50.077424194000095 ], [ -119.409658731999954, 50.077289762000092 ], [ -119.409628565, 50.077497646000062 ], [ -119.404064183999964, 50.077163237000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9645000", "BldgCostT": "6180000", "sL_LossRatio": "1", "sL_AssetLoss": "447.5", "sL_BldgLoss": "447.5", "sL_StrLoss": "447.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000087FA1BBC08D85DC058E6CEC8F7124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.378501338999968, 50.144662758000045 ], [ -119.378917530999942, 50.144361818000071 ], [ -119.378936394999954, 50.144741928000023 ], [ -119.378774203999953, 50.144745252000106 ], [ -119.37844098, 50.147027182000066 ], [ -119.378218632999975, 50.147013783000041 ], [ -119.378153190999939, 50.147461887000112 ], [ -119.377545407999975, 50.147425258000084 ], [ -119.377507075999986, 50.147687701000038 ], [ -119.376941750999947, 50.147653629000089 ], [ -119.376912859999962, 50.147851415000062 ], [ -119.376451083999967, 50.147823581000111 ], [ -119.376397654999948, 50.148189326000093 ], [ -119.375977350999989, 50.148163990000036 ], [ -119.375896362999953, 50.148718336000094 ], [ -119.375690390999949, 50.148705919000086 ], [ -119.375641969999961, 50.14903734100011 ], [ -119.375532747, 50.149030756000109 ], [ -119.375463887999956, 50.149502044000023 ], [ -119.375377917999927, 50.149496861000088 ], [ -119.375322002999951, 50.149879546000101 ], [ -119.374754603000014, 50.149845338000048 ], [ -119.374740380999967, 50.149942658000043 ], [ -119.374374493999966, 50.149920599000055 ], [ -119.374306487999917, 50.150385968000144 ], [ -119.373816688999952, 50.150356435000077 ], [ -119.373739689999965, 50.150883280000073 ], [ -119.373404019999967, 50.150863040000033 ], [ -119.373322552999952, 50.151420418000072 ], [ -119.371380339999931, 50.151404765000038 ], [ -119.371483385999966, 50.151247628000071 ], [ -119.372392169999927, 50.150290404000053 ], [ -119.372502775999976, 50.150179378000097 ], [ -119.375084391999962, 50.147587718000082 ], [ -119.375175272999968, 50.147496461000081 ], [ -119.375268116999962, 50.147403258000018 ], [ -119.37611886399999, 50.146582427000077 ], [ -119.377521261999945, 50.145371410000074 ], [ -119.378501338999968, 50.144662758000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39645250", "BldgCostT": "26845000", "sL_LossRatio": "1", "sL_AssetLoss": "2713.7", "sL_BldgLoss": "2713.7", "sL_StrLoss": "2713.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F34DC992CDC5DC0C9C13257820A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.440411824999956, 50.089940915000071 ], [ -119.440688360999957, 50.088026671000122 ], [ -119.439355420999945, 50.087946989000081 ], [ -119.43975375699992, 50.085189882000094 ], [ -119.439736075999946, 50.085190254000054 ], [ -119.439722385999971, 50.084920681000035 ], [ -119.439303424999977, 50.084929491000018 ], [ -119.439276046999936, 50.084390344000056 ], [ -119.438857089999914, 50.084399151000085 ], [ -119.438816031999949, 50.083590432000086 ], [ -119.438397083999945, 50.083599237000129 ], [ -119.438342351999964, 50.082520945000063 ], [ -119.437923410999957, 50.082529749000088 ], [ -119.437800297999942, 50.080103589000075 ], [ -119.439057055999939, 50.080077176 ], [ -119.439087137999948, 50.080669757000109 ], [ -119.439413532999964, 50.078410324000089 ], [ -119.439709392999973, 50.078428015000092 ], [ -119.439753771000014, 50.078120786000106 ], [ -119.43572336299999, 50.077879711000101 ], [ -119.436240798999989, 50.074299340000081 ], [ -119.43655033, 50.074317860000093 ], [ -119.436788865999944, 50.072667049000096 ], [ -119.437344834999962, 50.072700312000038 ], [ -119.437431468999989, 50.072100662000061 ], [ -119.438280681, 50.072151464000065 ], [ -119.438593292999883, 50.072552689000126 ], [ -119.438698735999964, 50.072840962000086 ], [ -119.438882007999922, 50.073341900000067 ], [ -119.438887681999958, 50.073368886000068 ], [ -119.438946804999915, 50.0736508950001 ], [ -119.438948899999943, 50.073850596000071 ], [ -119.438887713999975, 50.074380506000089 ], [ -119.438908488999985, 50.07474200300009 ], [ -119.438992280999955, 50.07500348000017 ], [ -119.438995860999967, 50.075014718000077 ], [ -119.4390381689999, 50.075146797000144 ], [ -119.43923728599999, 50.075768297000096 ], [ -119.439165206999974, 50.076315609000069 ], [ -119.439188807999983, 50.076424500000066 ], [ -119.439308126999919, 50.07658960000002 ], [ -119.439769215999917, 50.077010812000047 ], [ -119.439885298999982, 50.077178409000076 ], [ -119.440128419999951, 50.077826796000046 ], [ -119.440619316999943, 50.078731789000123 ], [ -119.440818515000018, 50.079567994000108 ], [ -119.441095497999953, 50.080069405000089 ], [ -119.441327305999948, 50.080388406000026 ], [ -119.441687890999958, 50.080631192000041 ], [ -119.44222948499997, 50.080913592000108 ], [ -119.442875607999923, 50.081356692000078 ], [ -119.44305609499996, 50.081418913000064 ], [ -119.443250194999933, 50.081435102000086 ], [ -119.443235243999965, 50.083395609000029 ], [ -119.443227727999925, 50.08438422300005 ], [ -119.443221014999949, 50.085266333000078 ], [ -119.443215093999967, 50.086041801000079 ], [ -119.44325541799999, 50.086131368000117 ], [ -119.443273618999925, 50.086171706000101 ], [ -119.443357390999978, 50.08637261700008 ], [ -119.44355476599999, 50.086468409000034 ], [ -119.443663709999967, 50.08652503200004 ], [ -119.443745510000014, 50.086594826000066 ], [ -119.443806862999963, 50.086701462000129 ], [ -119.443824498999902, 50.086773060000148 ], [ -119.443800214999968, 50.086845521000036 ], [ -119.443761485, 50.086909323000043 ], [ -119.443670152, 50.087037167000069 ], [ -119.44365947599999, 50.08709704700005 ], [ -119.443626643999977, 50.087280964000051 ], [ -119.443640783999953, 50.087559515000088 ], [ -119.443806752999976, 50.087798898000102 ], [ -119.443830584999915, 50.087811638000126 ], [ -119.443936129999955, 50.087868137000029 ], [ -119.44426235899995, 50.087960227000039 ], [ -119.44431249799996, 50.088121078000036 ], [ -119.444308143999976, 50.088310071000109 ], [ -119.44431317199998, 50.088408902 ], [ -119.444305129999961, 50.088526035000044 ], [ -119.444298022999988, 50.088661108000068 ], [ -119.444292292999975, 50.088823140000052 ], [ -119.444287022999973, 50.08899415900003 ], [ -119.444265966, 50.089129551000013 ], [ -119.444243972999985, 50.089246945000042 ], [ -119.444242628999987, 50.089261897000043 ], [ -119.444362276999968, 50.08968308000005 ], [ -119.444451699999945, 50.089997791000016 ], [ -119.444589603999987, 50.090190552000088 ], [ -119.440411824999956, 50.089940915000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37079000", "BldgCostT": "25100000", "sL_LossRatio": "1", "sL_AssetLoss": "2302", "sL_BldgLoss": "2302", "sL_StrLoss": "2302", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2CB5414B1D85DC0488FF87895114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381359655999944, 50.142803243000074 ], [ -119.38134626599999, 50.142533663000094 ], [ -119.38103858599996, 50.142539974000059 ], [ -119.381202562999988, 50.142262535000036 ], [ -119.381227682, 50.142220018000025 ], [ -119.381457133999945, 50.141582006000057 ], [ -119.381907610000013, 50.139629961000061 ], [ -119.382122185999961, 50.138699978000098 ], [ -119.382552018999917, 50.136837137000093 ], [ -119.382584770999983, 50.136695237000048 ], [ -119.382633472999885, 50.136562185000059 ], [ -119.382785794999947, 50.136145782000092 ], [ -119.383184718999985, 50.135578475000017 ], [ -119.383433080999936, 50.135310836000045 ], [ -119.385074597999989, 50.133978737000056 ], [ -119.385602218999963, 50.133550137000078 ], [ -119.38593987699997, 50.133209323000088 ], [ -119.386255681999984, 50.132816630000029 ], [ -119.386490110999972, 50.132393739000072 ], [ -119.386687405999979, 50.13192711500011 ], [ -119.386805687999967, 50.13148193100006 ], [ -119.386851741, 50.131059022000031 ], [ -119.388268753999981, 50.131144326000019 ], [ -119.388044726999922, 50.132681200000043 ], [ -119.388413425999914, 50.132673613000073 ], [ -119.388449279000014, 50.133393501000072 ], [ -119.38942956599999, 50.133452499000065 ], [ -119.389127598999934, 50.13552428600007 ], [ -119.389926991, 50.135572390000085 ], [ -119.389405214, 50.139152251000141 ], [ -119.388963580999985, 50.13912567700006 ], [ -119.388900913999919, 50.139555560000133 ], [ -119.388503056999951, 50.13953161900006 ], [ -119.388441016999963, 50.13995717100007 ], [ -119.388237058999934, 50.139944897000056 ], [ -119.388219813999953, 50.140063176000133 ], [ -119.388004557999949, 50.140050221000088 ], [ -119.387977911999926, 50.140232981000089 ], [ -119.387851811, 50.140225392000076 ], [ -119.387814718999962, 50.140479784000064 ], [ -119.387524963999951, 50.140462345000117 ], [ -119.387494717, 50.140669790000082 ], [ -119.387123907999936, 50.140647472000119 ], [ -119.387091209999937, 50.140871699000108 ], [ -119.385437783000015, 50.140772166000069 ], [ -119.385317873999952, 50.141594238000053 ], [ -119.383393345999934, 50.141478354000114 ], [ -119.383430268999973, 50.142221033000126 ], [ -119.38313448699995, 50.142227105000046 ], [ -119.383126917999903, 50.142278986000093 ], [ -119.383012900999972, 50.142272120000037 ], [ -119.383037590999905, 50.142768807000031 ], [ -119.381359655999944, 50.142803243000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166655166", "BldgCostT": "106941666", "sL_LossRatio": "0.998763169949611", "sL_AssetLoss": "8732", "sL_BldgLoss": "8721.2", "sL_StrLoss": "8717.3", "sL_NStrLoss": "3.9", "sL_ContLoss": "10.8", "geom_point": "0101000020E610000062CD8E752DD95DC03F9FE0E6FD0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.38632421799997, 50.123751803000104 ], [ -119.386595808999957, 50.121791786000095 ], [ -119.386872416999935, 50.120647351000066 ], [ -119.387223951999957, 50.119193041000074 ], [ -119.387249841999932, 50.11908599300007 ], [ -119.387338961999944, 50.118717298000014 ], [ -119.387503065999979, 50.117756374000137 ], [ -119.387549570999923, 50.117484065000085 ], [ -119.38758044199993, 50.116729351000082 ], [ -119.38759450699996, 50.116385302000083 ], [ -119.387594766999925, 50.114202071000079 ], [ -119.387595053999945, 50.112060102000022 ], [ -119.387595184999924, 50.110954720000095 ], [ -119.38759423, 50.110556496000122 ], [ -119.387646038999947, 50.11022016700008 ], [ -119.387681098999977, 50.109989334000069 ], [ -119.387905754999935, 50.109401559000062 ], [ -119.388308434999914, 50.108767636000103 ], [ -119.389014562999975, 50.108065306000107 ], [ -119.38891976599993, 50.108031612000154 ], [ -119.391571118999977, 50.105686805000055 ], [ -119.391908398999988, 50.105327906000063 ], [ -119.392176984999978, 50.104910710000055 ], [ -119.392336703999931, 50.10452750600011 ], [ -119.392424274999939, 50.10409939500002 ], [ -119.392545200999947, 50.102863502000055 ], [ -119.392623686999954, 50.101958095000043 ], [ -119.392717575999939, 50.101959292000025 ], [ -119.392779289999979, 50.101563897000077 ], [ -119.392761819999976, 50.101298293000063 ], [ -119.392920683999961, 50.100766206000088 ], [ -119.392927942999961, 50.100750297000047 ], [ -119.393268235999955, 50.100002548000042 ], [ -119.393368622999915, 50.099781987000043 ], [ -119.394499264999979, 50.09766279200003 ], [ -119.39479719699996, 50.097104286000075 ], [ -119.395513215999983, 50.095965504000077 ], [ -119.395971434999964, 50.095302954000026 ], [ -119.398358606000016, 50.095446570000064 ], [ -119.398261033999944, 50.0961175320001 ], [ -119.40019959299994, 50.096234121000073 ], [ -119.400037931999975, 50.097346078000101 ], [ -119.40022326699993, 50.097357223000095 ], [ -119.399944332999937, 50.099275741000056 ], [ -119.402208632999972, 50.099411872000069 ], [ -119.401688236999959, 50.102991962000097 ], [ -119.400864107999936, 50.102942421000051 ], [ -119.400591890999976, 50.104814683000043 ], [ -119.400548864999962, 50.104812097000043 ], [ -119.400499705999977, 50.105150184000045 ], [ -119.400330867999969, 50.105140034000073 ], [ -119.40028741199994, 50.105438888000059 ], [ -119.40016978899996, 50.105431817000039 ], [ -119.399940482999924, 50.107008692000129 ], [ -119.398953314999986, 50.106949339000074 ], [ -119.398861468999939, 50.107580816000073 ], [ -119.398852915999925, 50.107580302000066 ], [ -119.398780391999964, 50.108078916000046 ], [ -119.398245234999976, 50.108046736000134 ], [ -119.398139903999947, 50.108770829000022 ], [ -119.397180006, 50.108713102000088 ], [ -119.397071795999963, 50.109456852000093 ], [ -119.396741499999976, 50.109436986000048 ], [ -119.396690198999977, 50.10978956000011 ], [ -119.396348251999939, 50.109768992000085 ], [ -119.396290501999914, 50.110165868000081 ], [ -119.396048076999975, 50.110151285000022 ], [ -119.395861152999913, 50.111435774000043 ], [ -119.395256121, 50.111399379000076 ], [ -119.395157659999896, 50.112075889000046 ], [ -119.395041760999959, 50.112068916000112 ], [ -119.394888904999988, 50.11311909200009 ], [ -119.393976880999901, 50.11306422299999 ], [ -119.393705953999969, 50.114925215000063 ], [ -119.39329173499999, 50.114900292000101 ], [ -119.393258445999962, 50.115128924000039 ], [ -119.393171292999966, 50.115123680000046 ], [ -119.393124358999955, 50.115446026000065 ], [ -119.392886278999924, 50.115431701000055 ], [ -119.392712705999955, 50.116623733000075 ], [ -119.392120810999984, 50.116588115000106 ], [ -119.391928643999947, 50.117907647000024 ], [ -119.39101111699992, 50.117852428000049 ], [ -119.390778079999961, 50.119452270000068 ], [ -119.390746575999955, 50.119450374000074 ], [ -119.390703791999911, 50.11974407200011 ], [ -119.390399768999927, 50.119725773000013 ], [ -119.390072588999914, 50.1219715800001 ], [ -119.386974966999944, 50.121785091000028 ], [ -119.386954421999988, 50.121926042000077 ], [ -119.390759963, 50.122155138000018 ], [ -119.390238405999966, 50.125735067000043 ], [ -119.387859319, 50.125591860000029 ], [ -119.387345967999977, 50.129113624000119 ], [ -119.387218779999941, 50.129105966000033 ], [ -119.387144787999929, 50.129613527000124 ], [ -119.38674007699997, 50.129589160000108 ], [ -119.386698594999928, 50.129354708000072 ], [ -119.386625569, 50.129149278000057 ], [ -119.386094904999965, 50.127656319000025 ], [ -119.385987495000023, 50.127149605000035 ], [ -119.385984820999965, 50.126677944000072 ], [ -119.385983495999938, 50.126445206000064 ], [ -119.38632421799997, 50.123751803000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20453416", "BldgCostT": "12631666", "sL_LossRatio": "1", "sL_AssetLoss": "885", "sL_BldgLoss": "885", "sL_StrLoss": "885", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000049D78EDAABDB5DC025389AC8F1114940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.429837326999944, 50.138234560000114 ], [ -119.435409368999927, 50.138567639000136 ], [ -119.43489113699998, 50.142147701000098 ], [ -119.42931866, 50.141814597000113 ], [ -119.429837326999944, 50.138234560000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019880", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4884084", "BldgCostT": "3368334", "sL_LossRatio": "1", "sL_AssetLoss": "321.6", "sL_BldgLoss": "321.6", "sL_StrLoss": "321.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F249B48BCDC5DC0917A70F31D0E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.448033795999947, 50.108496500000051 ], [ -119.450874127, 50.108665966000096 ], [ -119.450258498999943, 50.109727297000134 ], [ -119.450078199999979, 50.110879297000025 ], [ -119.449934689999935, 50.111435898000096 ], [ -119.44966850699997, 50.112015013000061 ], [ -119.449611080999944, 50.112201717000104 ], [ -119.447516900000011, 50.112076763000061 ], [ -119.448033795999947, 50.108496500000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11334167", "BldgCostT": "7816667", "sL_LossRatio": "1", "sL_AssetLoss": "826.1", "sL_BldgLoss": "826.1", "sL_StrLoss": "826.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016BA96B98ED95DC076FBCD403C0B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.397982299999981, 50.085802492000035 ], [ -119.39813350899999, 50.085283489000119 ], [ -119.398133645999962, 50.085280381000082 ], [ -119.401095939999962, 50.085458573000089 ], [ -119.401085917999978, 50.085527534000043 ], [ -119.401487131999943, 50.085551662000086 ], [ -119.40146672399996, 50.085692104 ], [ -119.401500942, 50.085694162000031 ], [ -119.40147642299992, 50.085862884000022 ], [ -119.40148605399996, 50.085863464000127 ], [ -119.40096575599999, 50.08944361400011 ], [ -119.400932244999964, 50.089441599000061 ], [ -119.400904160999971, 50.089634815000061 ], [ -119.400813326999938, 50.089629352000046 ], [ -119.40079276499992, 50.089770817000016 ], [ -119.400293861999955, 50.089740814000045 ], [ -119.400199172999962, 50.090392229000038 ], [ -119.397750312999918, 50.090244925000086 ], [ -119.397716911999936, 50.090078788000056 ], [ -119.397663996999952, 50.089815597000054 ], [ -119.397300398999917, 50.088841190000075 ], [ -119.39720798499999, 50.088347193000111 ], [ -119.39724190299999, 50.087921190000039 ], [ -119.397394499999947, 50.087383308 ], [ -119.397982299999981, 50.085802492000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56339749", "BldgCostT": "35434999", "sL_LossRatio": "1", "sL_AssetLoss": "3001.8", "sL_BldgLoss": "3001.8", "sL_StrLoss": "3001.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F780EE1AFDB5DC0196F543C68084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.435483438999924, 50.069140523000016 ], [ -119.435499900999943, 50.069026603000054 ], [ -119.435444289999978, 50.06902327600006 ], [ -119.430944801999914, 50.068753898000132 ], [ -119.431228536999967, 50.066791694000123 ], [ -119.426573095999913, 50.066512782000103 ], [ -119.426581198999941, 50.066456779000141 ], [ -119.425137454999984, 50.066370242000076 ], [ -119.425655590999924, 50.062789867000099 ], [ -119.425904144999947, 50.062804767000053 ], [ -119.431218375999961, 50.063123192000084 ], [ -119.431210278999913, 50.063179195000039 ], [ -119.432653932999969, 50.063265652000041 ], [ -119.432370281999965, 50.065227869000076 ], [ -119.433808681999949, 50.06531399200005 ], [ -119.434127609999962, 50.063107263000063 ], [ -119.43437525399996, 50.063122088000114 ], [ -119.434437027999934, 50.062694615000062 ], [ -119.435364249999964, 50.062956413000045 ], [ -119.435692688999936, 50.062984174000078 ], [ -119.435728695999941, 50.062980835000097 ], [ -119.436962409999964, 50.062866066000112 ], [ -119.437743790999932, 50.062846005000061 ], [ -119.438293075999979, 50.062811171000106 ], [ -119.438302908999987, 50.063213506000046 ], [ -119.438314523999949, 50.063690648000076 ], [ -119.438317215999959, 50.063800307000051 ], [ -119.438329677999917, 50.064427214000048 ], [ -119.438338094999949, 50.064849812000084 ], [ -119.438337841999967, 50.064868984000022 ], [ -119.438329800999938, 50.065480889000071 ], [ -119.438319126999929, 50.066291199000069 ], [ -119.438316013999952, 50.066527683000075 ], [ -119.438267396999905, 50.06666533100011 ], [ -119.438102381999968, 50.067132493000045 ], [ -119.438012809999961, 50.067324259000053 ], [ -119.437868883999897, 50.067632191000023 ], [ -119.43790087299999, 50.067889252000093 ], [ -119.437930603, 50.068128004000073 ], [ -119.4379647199999, 50.068217758000095 ], [ -119.438071979999975, 50.068500225000022 ], [ -119.438096203, 50.068563997000076 ], [ -119.43823730499993, 50.068801797000056 ], [ -119.438373233, 50.068960803000017 ], [ -119.438555319, 50.069173805000048 ], [ -119.438732744, 50.069334936000104 ], [ -119.435483438999924, 50.069140523000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104329750", "BldgCostT": "66145000", "sL_LossRatio": "0.996428576596688", "sL_AssetLoss": "6916.01000797", "sL_BldgLoss": "6891.31000797", "sL_StrLoss": "6882.40000797", "sL_NStrLoss": "8.91", "sL_ContLoss": "24.7", "geom_point": "0101000020E6100000B25328E21FD75DC0DC8420ACEB0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.366390983999935, 50.115831494000084 ], [ -119.364885809999933, 50.115106595000043 ], [ -119.363713597999961, 50.114878689000086 ], [ -119.362857111999986, 50.11453690200004 ], [ -119.361614214999975, 50.114571098000091 ], [ -119.36160230599998, 50.114574510000047 ], [ -119.361700695999957, 50.113901968000079 ], [ -119.36151071099999, 50.113890481000098 ], [ -119.362034392999959, 50.110310632000122 ], [ -119.363535440999954, 50.110401380000091 ], [ -119.363960000999924, 50.107498038000067 ], [ -119.363461262, 50.107467888000073 ], [ -119.363112457999975, 50.109853030000082 ], [ -119.36127974899992, 50.109742220000051 ], [ -119.361261625999958, 50.10986610300013 ], [ -119.361295790999961, 50.110560522000085 ], [ -119.361159632999957, 50.110563292000045 ], [ -119.360885804999981, 50.112434973000049 ], [ -119.359679730999972, 50.112362035000039 ], [ -119.35964504499999, 50.112359937000114 ], [ -119.359639487999956, 50.112397918000092 ], [ -119.359621753999932, 50.112519102000107 ], [ -119.359552396999931, 50.112514907000033 ], [ -119.359393954, 50.112505324000068 ], [ -119.359323667999917, 50.112985607000077 ], [ -119.358030543999959, 50.112907386000074 ], [ -119.357979525999909, 50.113255938000115 ], [ -119.352411151999902, 50.112918932000056 ], [ -119.352770798999984, 50.110463809000052 ], [ -119.352479152999962, 50.110469721000115 ], [ -119.352465937999938, 50.110200132000031 ], [ -119.35204673, 50.110208630000074 ], [ -119.352020306999918, 50.109669452000105 ], [ -119.351181899999943, 50.109686441000065 ], [ -119.351168692999963, 50.109416851000027 ], [ -119.350749491999949, 50.109425344000044 ], [ -119.350683474999968, 50.108077398000077 ], [ -119.351102664999956, 50.10806890599999 ], [ -119.351089460999987, 50.107799318000069 ], [ -119.352347021999918, 50.107773833000088 ], [ -119.352360233999946, 50.108043421000055 ], [ -119.35277942299993, 50.10803492400008 ], [ -119.352792637999954, 50.1083045130001 ], [ -119.35321182899996, 50.108296013000093 ], [ -119.353225046999981, 50.108565602000041 ], [ -119.353750360999982, 50.108554949000087 ], [ -119.353763850999925, 50.108462839000076 ], [ -119.353882307000021, 50.108470010000119 ], [ -119.353929560999973, 50.108147342000059 ], [ -119.35403118, 50.108153493000025 ], [ -119.354064267999917, 50.107927545000095 ], [ -119.356570849999954, 50.108079262000032 ], [ -119.356928170999979, 50.105638204000115 ], [ -119.357456938, 50.105670201000081 ], [ -119.357564082999929, 50.104938116000028 ], [ -119.358261900999977, 50.104980340000076 ], [ -119.358405793999964, 50.103997027000048 ], [ -119.358258457999938, 50.103988112000103 ], [ -119.358278348999988, 50.103852190000026 ], [ -119.357314181999982, 50.103793847000134 ], [ -119.35720620799998, 50.104531578000042 ], [ -119.352604242999945, 50.104252992000099 ], [ -119.352169940999914, 50.10721808600006 ], [ -119.346602348999951, 50.106880784000076 ], [ -119.346813406999985, 50.105441095000081 ], [ -119.345940225999968, 50.105388168000026 ], [ -119.346465033999948, 50.101808354000113 ], [ -119.350207965999957, 50.10203517500009 ], [ -119.350318849999923, 50.101278310000104 ], [ -119.35031205699994, 50.101277898000063 ], [ -119.3508054, 50.097910180000035 ], [ -119.350887717999939, 50.098002210000118 ], [ -119.35086908599996, 50.099499901000051 ], [ -119.350930193999915, 50.099705792000094 ], [ -119.350968331999979, 50.100007626000085 ], [ -119.351024476999953, 50.100451902000053 ], [ -119.351025427999929, 50.101662802000092 ], [ -119.352707799999948, 50.101676323000106 ], [ -119.352783971999941, 50.101676933000064 ], [ -119.354197333999934, 50.101688285000073 ], [ -119.35509101699995, 50.101695439000096 ], [ -119.356611275, 50.101707594000068 ], [ -119.356953263999969, 50.10171443500009 ], [ -119.361038005999944, 50.101796113000056 ], [ -119.361400556999953, 50.101803342000032 ], [ -119.362295209999914, 50.101821195000113 ], [ -119.362187985999938, 50.103629495000057 ], [ -119.36223419699995, 50.103774997000073 ], [ -119.362301219999949, 50.103870892000018 ], [ -119.362307290999965, 50.103879601000088 ], [ -119.362331575, 50.103890489 ], [ -119.362306613999962, 50.105462480000064 ], [ -119.362544601999957, 50.105416203000054 ], [ -119.364396599999949, 50.105388213000019 ], [ -119.364498990999934, 50.105385580000146 ], [ -119.364799405, 50.105377925000042 ], [ -119.365604398999949, 50.105357413000064 ], [ -119.365900581999952, 50.105416005000102 ], [ -119.36613111099993, 50.105596888 ], [ -119.36647020399991, 50.106014708 ], [ -119.36649397799998, 50.106034297000107 ], [ -119.366656187999951, 50.106168217000082 ], [ -119.366836100999976, 50.106316711000062 ], [ -119.368075787999928, 50.10708680700008 ], [ -119.370116012999944, 50.107895303000078 ], [ -119.371587091999984, 50.108427766000048 ], [ -119.371650825999964, 50.108450834000067 ], [ -119.372109908999988, 50.108616998000038 ], [ -119.374311045999988, 50.109055050000045 ], [ -119.375290367999924, 50.109147556000082 ], [ -119.378419809999968, 50.109720064000058 ], [ -119.37877769699999, 50.109770300000079 ], [ -119.378530709999922, 50.111463071000045 ], [ -119.377781195999916, 50.111417866000053 ], [ -119.377731591999961, 50.111757789000137 ], [ -119.376138406999928, 50.111661681000065 ], [ -119.376135085999977, 50.111684441000079 ], [ -119.375639788999976, 50.111621612000057 ], [ -119.375166720999971, 50.111685598000051 ], [ -119.373591082999937, 50.112365002000054 ], [ -119.372967978999924, 50.112746692000016 ], [ -119.372084477999962, 50.112980296000039 ], [ -119.371161104999942, 50.113575608000104 ], [ -119.370449019999938, 50.114425807000046 ], [ -119.370093506999979, 50.115153610000043 ], [ -119.370049287999905, 50.115703291000074 ], [ -119.370267480999956, 50.115851491000107 ], [ -119.370796193999936, 50.115822989000065 ], [ -119.370815508999982, 50.11591268300004 ], [ -119.370666594999975, 50.116005287000107 ], [ -119.370686609999922, 50.116409686000068 ], [ -119.370584906999952, 50.116636203000034 ], [ -119.369923097999944, 50.117675901000069 ], [ -119.36865360099992, 50.118295404000101 ], [ -119.367147006999986, 50.11882161300008 ], [ -119.366608963999965, 50.118789112000101 ], [ -119.36669364, 50.118209939000096 ], [ -119.367088703999968, 50.117796903000055 ], [ -119.368393602999902, 50.117032090000095 ], [ -119.368545319999939, 50.116704601000059 ], [ -119.368506302999975, 50.116472405000131 ], [ -119.368375006999884, 50.116348501000104 ], [ -119.366390983999935, 50.115831494000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.6", "sL_BldgLoss": "44.6", "sL_StrLoss": "44.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004216169A33D65DC0689DC8FE3F0C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.346684168999971, 50.094935356000072 ], [ -119.34794139899995, 50.094909924000049 ], [ -119.347944444999953, 50.094972209000034 ], [ -119.347892112999958, 50.095028903000056 ], [ -119.34743678299999, 50.095310095000102 ], [ -119.34741172299999, 50.095342211000073 ], [ -119.347293284999978, 50.09549370400002 ], [ -119.347255005999969, 50.095678313000057 ], [ -119.347289498999913, 50.09630409300005 ], [ -119.347302606999932, 50.096541989000094 ], [ -119.346344128999945, 50.096561374000046 ], [ -119.346278264999967, 50.095213420000043 ], [ -119.346697343999963, 50.09520494700007 ], [ -119.346684168999971, 50.094935356000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36004667", "BldgCostT": "19936667", "sL_LossRatio": "1", "sL_AssetLoss": "528.6", "sL_BldgLoss": "528.6", "sL_StrLoss": "528.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E96977897D55DC012DCA392150D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.333758420999956, 50.105180718000057 ], [ -119.33371910299995, 50.104371940000071 ], [ -119.333299938999971, 50.104380369000083 ], [ -119.333198230999983, 50.102287698000104 ], [ -119.333182014999949, 50.101954033000041 ], [ -119.333601155999972, 50.101945605000104 ], [ -119.333588053999989, 50.101676012000077 ], [ -119.333778719999913, 50.101672178000108 ], [ -119.334845471999969, 50.101650720000116 ], [ -119.334901872, 50.102810429000023 ], [ -119.334924139999941, 50.10326827500004 ], [ -119.335298929999951, 50.103260734000159 ], [ -119.335415571999974, 50.10246637900007 ], [ -119.335793799999948, 50.099890405000117 ], [ -119.336951049999982, 50.099960664000086 ], [ -119.337237429999945, 50.099978049000121 ], [ -119.341360454999972, 50.10022825700009 ], [ -119.340835263999963, 50.103808055000073 ], [ -119.335965737, 50.103512529000099 ], [ -119.335353776999924, 50.103475375000137 ], [ -119.33540111799999, 50.104448519000066 ], [ -119.335421981999914, 50.104877395000052 ], [ -119.335200687999944, 50.104881848000048 ], [ -119.335002816, 50.104885830000065 ], [ -119.335015928999937, 50.105155422000074 ], [ -119.334328182999954, 50.105169258000025 ], [ -119.333758420999956, 50.105180718000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15812917", "BldgCostT": "10641667", "sL_LossRatio": "1", "sL_AssetLoss": "1637.5", "sL_BldgLoss": "1637.5", "sL_StrLoss": "1637.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CFD81BA520D85DC03FDD27E456124940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.380087818999968, 50.142559473000034 ], [ -119.380064735999952, 50.1420945240001 ], [ -119.380062117999927, 50.142094367000013 ], [ -119.380259005999918, 50.14185889200008 ], [ -119.380427715999971, 50.141055701000035 ], [ -119.380134020999932, 50.140494600000089 ], [ -119.38024588899998, 50.139647192000055 ], [ -119.380497390999977, 50.139326699000037 ], [ -119.38098078799996, 50.138947898 ], [ -119.381085213999896, 50.138550263000106 ], [ -119.381314565999944, 50.137676896000137 ], [ -119.381524694999953, 50.137672585000104 ], [ -119.38151057099999, 50.137388235000067 ], [ -119.3813922399999, 50.137381105000017 ], [ -119.381510383999967, 50.136931192000098 ], [ -119.381146808999944, 50.135796101000025 ], [ -119.381091404999921, 50.135230701000047 ], [ -119.380820295999968, 50.134857493000062 ], [ -119.380884891999983, 50.134722197 ], [ -119.381044990999982, 50.134601207000109 ], [ -119.381775809999951, 50.134370495000098 ], [ -119.38274808599999, 50.13363980700003 ], [ -119.385330785999926, 50.132390795000042 ], [ -119.385718286999946, 50.132023392000058 ], [ -119.386039201999964, 50.131161693000109 ], [ -119.386046283000027, 50.131010526000068 ], [ -119.386851741, 50.131059022000031 ], [ -119.386805687999967, 50.13148193100006 ], [ -119.386687405999979, 50.13192711500011 ], [ -119.386490110999972, 50.132393739000072 ], [ -119.386255681999984, 50.132816630000029 ], [ -119.38593987699997, 50.133209323000088 ], [ -119.385602218999963, 50.133550137000078 ], [ -119.385074597999989, 50.133978737000056 ], [ -119.383433080999936, 50.135310836000045 ], [ -119.383184718999985, 50.135578475000017 ], [ -119.382785794999947, 50.136145782000092 ], [ -119.382633472999885, 50.136562185000059 ], [ -119.382584770999983, 50.136695237000048 ], [ -119.382552018999917, 50.136837137000093 ], [ -119.382122185999961, 50.138699978000098 ], [ -119.381907610000013, 50.139629961000061 ], [ -119.381457133999945, 50.141582006000057 ], [ -119.381227682, 50.142220018000025 ], [ -119.381202562999988, 50.142262535000036 ], [ -119.38103858599996, 50.142539974000059 ], [ -119.380507300999952, 50.142550871000068 ], [ -119.380536250999953, 50.143133848000041 ], [ -119.380297669999962, 50.143363826000069 ], [ -119.379528221999934, 50.143920228000056 ], [ -119.378896259000015, 50.143933182000097 ], [ -119.378917530999942, 50.144361818000071 ], [ -119.378501338999968, 50.144662758000045 ], [ -119.377521261999945, 50.145371410000074 ], [ -119.37611886399999, 50.146582427000077 ], [ -119.375268116999962, 50.147403258000018 ], [ -119.375175272999968, 50.147496461000081 ], [ -119.375084391999962, 50.147587718000082 ], [ -119.372502775999976, 50.150179378000097 ], [ -119.372392169999927, 50.150290404000053 ], [ -119.371483385999966, 50.151247628000071 ], [ -119.371380339999931, 50.151404765000038 ], [ -119.37119287899999, 50.151401915000115 ], [ -119.370497641999961, 50.15139136300008 ], [ -119.369420482999928, 50.151375016000067 ], [ -119.369101192999935, 50.151370170000078 ], [ -119.368554667999931, 50.151401019000069 ], [ -119.36853771499996, 50.151381193000134 ], [ -119.368226815999947, 50.150488200000055 ], [ -119.368314506999937, 50.150280304000042 ], [ -119.368000206999952, 50.149837401000113 ], [ -119.368510395999962, 50.149394408 ], [ -119.368569903, 50.148925895000097 ], [ -119.369255420999977, 50.148903104000055 ], [ -119.369780896999956, 50.148766389000087 ], [ -119.37024039799995, 50.148433108000141 ], [ -119.370980289999963, 50.148102696000059 ], [ -119.372138188999912, 50.147171309000086 ], [ -119.372379509999988, 50.146706989000066 ], [ -119.373750207999947, 50.145815385000041 ], [ -119.373726802999968, 50.145635999 ], [ -119.374239005999954, 50.145499205000135 ], [ -119.375245807999974, 50.144948096000128 ], [ -119.376607212999943, 50.144433889 ], [ -119.377974308999981, 50.143498189000127 ], [ -119.379541419999953, 50.142570676000069 ], [ -119.380087818999968, 50.142559473000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40879667", "BldgCostT": "25981667", "sL_LossRatio": "0.99549629880395", "sL_AssetLoss": "3308.39", "sL_BldgLoss": "3293.49", "sL_StrLoss": "3288.1", "sL_NStrLoss": "5.39", "sL_ContLoss": "14.9", "geom_point": "0101000020E6100000FB305ACB8DD85DC0590950323D0F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.383506480999969, 50.113988594000048 ], [ -119.383509606999922, 50.113475890000082 ], [ -119.383719311999954, 50.113488708000091 ], [ -119.38375269699999, 50.113893205000096 ], [ -119.383868086999883, 50.113971506000063 ], [ -119.384036013999946, 50.1139586890001 ], [ -119.384282389999967, 50.113287917000036 ], [ -119.384565704, 50.113094198000063 ], [ -119.384505587999939, 50.11268971200014 ], [ -119.383912483999922, 50.112306593000064 ], [ -119.383591910999954, 50.112034603000069 ], [ -119.382513490999926, 50.11175968800007 ], [ -119.382182597999986, 50.111550397000066 ], [ -119.381293108999927, 50.111658604000134 ], [ -119.380754618999973, 50.11154319900006 ], [ -119.380357595999953, 50.111705605000047 ], [ -119.380342916999979, 50.111984694000036 ], [ -119.379591795999929, 50.112638388000036 ], [ -119.379381417999923, 50.113478703000084 ], [ -119.378645298999942, 50.114402997000056 ], [ -119.37757009699996, 50.114999799000067 ], [ -119.377273499999916, 50.114969887 ], [ -119.377127426999948, 50.114893908000106 ], [ -119.376742306999958, 50.11469358500004 ], [ -119.376503409999927, 50.114670807000032 ], [ -119.376248595, 50.11434319800005 ], [ -119.376116302999961, 50.113635402000028 ], [ -119.376609480999889, 50.113131202000034 ], [ -119.376755301999978, 50.112426187000089 ], [ -119.376562720999971, 50.111917805000104 ], [ -119.376298395, 50.111757551000096 ], [ -119.378743032000017, 50.111905008000015 ], [ -119.379826178999934, 50.111970324000062 ], [ -119.380119637999954, 50.109958656000046 ], [ -119.380618833999961, 50.110028722000038 ], [ -119.382177037999952, 50.110214407000036 ], [ -119.382274622999887, 50.110226028000064 ], [ -119.382543197999951, 50.110258041000101 ], [ -119.382768129999988, 50.110284831000065 ], [ -119.382854561999977, 50.110295132000076 ], [ -119.383271792999977, 50.110344848000061 ], [ -119.38344499899992, 50.110356569 ], [ -119.383785542999973, 50.110379594000086 ], [ -119.384543922999981, 50.110430900000033 ], [ -119.384646615999912, 50.110437818000079 ], [ -119.385965328999959, 50.110527008000076 ], [ -119.38671019399996, 50.11055202500004 ], [ -119.386988085, 50.110553189000015 ], [ -119.38722350899998, 50.110554154000035 ], [ -119.38741893599996, 50.110554978000032 ], [ -119.387447044999973, 50.110555237000042 ], [ -119.38759423, 50.110556496000122 ], [ -119.387595184999924, 50.110954720000095 ], [ -119.387595053999945, 50.112060102000022 ], [ -119.387594766999925, 50.114202071000079 ], [ -119.38759450699996, 50.116385302000083 ], [ -119.38758044199993, 50.116729351000082 ], [ -119.387549570999923, 50.117484065000085 ], [ -119.387503065999979, 50.117756374000137 ], [ -119.387338961999944, 50.118717298000014 ], [ -119.387249841999932, 50.11908599300007 ], [ -119.387223951999957, 50.119193041000074 ], [ -119.386872416999935, 50.120647351000066 ], [ -119.386595808999957, 50.121791786000095 ], [ -119.38632421799997, 50.123751803000104 ], [ -119.385983495999938, 50.126445206000064 ], [ -119.385984820999965, 50.126677944000072 ], [ -119.385987495000023, 50.127149605000035 ], [ -119.386094904999965, 50.127656319000025 ], [ -119.386625569, 50.129149278000057 ], [ -119.386698594999928, 50.129354708000072 ], [ -119.38674007699997, 50.129589160000108 ], [ -119.385850578999936, 50.129535601000043 ], [ -119.385372786999937, 50.128485598000097 ], [ -119.38460059, 50.1278446930001 ], [ -119.383298601999911, 50.127269408000139 ], [ -119.381512605999944, 50.126523099000082 ], [ -119.379263404999946, 50.125732604000078 ], [ -119.379134106999985, 50.125420694000056 ], [ -119.379339100999928, 50.124453686000031 ], [ -119.379160809999945, 50.123953805000092 ], [ -119.379228897999923, 50.123358487000125 ], [ -119.379177586999944, 50.123170491000067 ], [ -119.378872312999931, 50.122934008000129 ], [ -119.379091884999951, 50.1228670960001 ], [ -119.380127984999916, 50.12287280200006 ], [ -119.38050000399997, 50.122757508000099 ], [ -119.380659811000015, 50.122583693000081 ], [ -119.380586497999957, 50.122260397000083 ], [ -119.380666606999966, 50.121908603000058 ], [ -119.381017995999969, 50.121378793000076 ], [ -119.382091885999898, 50.120745004000078 ], [ -119.383021077999985, 50.120015791000043 ], [ -119.38422079299994, 50.119362106000061 ], [ -119.384584592999929, 50.119092988000034 ], [ -119.384804606999978, 50.118719784000135 ], [ -119.384871013999941, 50.118070395000096 ], [ -119.384538308999979, 50.116755803000039 ], [ -119.38447398199996, 50.115165004000033 ], [ -119.384320002, 50.114871605000062 ], [ -119.383881283999983, 50.114511299000064 ], [ -119.383506480999969, 50.113988594000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.8", "sL_BldgLoss": "43.8", "sL_StrLoss": "43.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000655F264834D55DC02B6A0FFF590D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.332238648999947, 50.101972996000022 ], [ -119.332343730999966, 50.101970884000075 ], [ -119.332409218999928, 50.103318850000122 ], [ -119.331990063999953, 50.103327274000037 ], [ -119.332029351999921, 50.104136052000108 ], [ -119.331610191999971, 50.104144475000112 ], [ -119.33163638, 50.104683660000092 ], [ -119.331217214999981, 50.104692082000085 ], [ -119.331269583, 50.105770455000027 ], [ -119.330850407999961, 50.10577887400013 ], [ -119.330863497999971, 50.106048468000033 ], [ -119.330157631999924, 50.106062643 ], [ -119.33033997299999, 50.105552696000082 ], [ -119.330469321999914, 50.105083797000155 ], [ -119.330607380999979, 50.104554891000099 ], [ -119.331232272999927, 50.10369449300002 ], [ -119.331247334999944, 50.103619001000027 ], [ -119.331432475999975, 50.103466891000025 ], [ -119.331644680999958, 50.103247231000047 ], [ -119.331750954999919, 50.103053514000067 ], [ -119.331846571999918, 50.102763075000027 ], [ -119.332059876999921, 50.102452208000074 ], [ -119.33220167199994, 50.102140811000083 ], [ -119.332238648999947, 50.101972996000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.3", "sL_BldgLoss": "44.3", "sL_StrLoss": "44.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E54217902D65DC0EEED96E4000C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.344056111, 50.093369332000059 ], [ -119.344509812999931, 50.093360165000043 ], [ -119.344549297999919, 50.094168938000038 ], [ -119.343362936999981, 50.094192902000074 ], [ -119.343292085999934, 50.094194332000029 ], [ -119.343252621, 50.093385559000048 ], [ -119.344056111, 50.093369332000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "86.1", "sL_BldgLoss": "86.1", "sL_StrLoss": "86.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000077CB1F1D28D55DC049D21CF64E0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.331872166999943, 50.101980360000049 ], [ -119.332238648999947, 50.101972996000022 ], [ -119.33220167199994, 50.102140811000083 ], [ -119.332059876999921, 50.102452208000074 ], [ -119.331846571999918, 50.102763075000027 ], [ -119.331750954999919, 50.103053514000067 ], [ -119.331644680999958, 50.103247231000047 ], [ -119.331432475999975, 50.103466891000025 ], [ -119.331247334999944, 50.103619001000027 ], [ -119.331232272999927, 50.10369449300002 ], [ -119.330607380999979, 50.104554891000099 ], [ -119.330469321999914, 50.105083797000155 ], [ -119.33033997299999, 50.105552696000082 ], [ -119.330157631999924, 50.106062643 ], [ -119.329480566999962, 50.106076235000025 ], [ -119.329472582999927, 50.106066104000078 ], [ -119.329173612999952, 50.105810703000024 ], [ -119.329134460999967, 50.105003757000063 ], [ -119.329553629999964, 50.104995345000113 ], [ -119.329527463999923, 50.104456157000108 ], [ -119.329946628999949, 50.104447742000048 ], [ -119.32992045899999, 50.103908556000071 ], [ -119.330339618999929, 50.103900139000125 ], [ -119.330300360999956, 50.103091359000068 ], [ -119.330719512999934, 50.103082941000132 ], [ -119.330680249999915, 50.102274162000086 ], [ -119.33109939499991, 50.102265743000089 ], [ -119.33108630299995, 50.101996150000062 ], [ -119.331872166999943, 50.101980360000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "50", "sL_BldgLoss": "50", "sL_StrLoss": "50", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A50FE18803DA5DC0BB6477DCCB084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.407491062999895, 50.063115507000141 ], [ -119.407945928999965, 50.063142848000055 ], [ -119.408024263999962, 50.064069330000095 ], [ -119.408130281999945, 50.06534966600001 ], [ -119.40803228499999, 50.065762071000044 ], [ -119.407982456999946, 50.065971916000088 ], [ -119.407476131999957, 50.067382462000069 ], [ -119.40694317699996, 50.069440590000042 ], [ -119.406718912999949, 50.069999547000094 ], [ -119.406283710999929, 50.070890715000061 ], [ -119.405666564999976, 50.071767617000035 ], [ -119.40559790499999, 50.071865209000102 ], [ -119.404865697999924, 50.07266540800007 ], [ -119.402764634999969, 50.074655655000086 ], [ -119.402813295000016, 50.074320641000092 ], [ -119.403655373999925, 50.073508846000017 ], [ -119.403846331999929, 50.073520328000015 ], [ -119.403879357999969, 50.073292911000131 ], [ -119.40494409800003, 50.072266396000039 ], [ -119.405375814999914, 50.071672503000073 ], [ -119.405777206, 50.071322107000078 ], [ -119.406384097999961, 50.07032091000012 ], [ -119.40653888699994, 50.069751201000017 ], [ -119.406342990999946, 50.069224312000067 ], [ -119.406887887, 50.068637499000026 ], [ -119.407435108999962, 50.0667361960001 ], [ -119.407872316999914, 50.065683692000093 ], [ -119.407765294999976, 50.064975895000082 ], [ -119.407847891999964, 50.064397603000046 ], [ -119.40742111499999, 50.063382194000091 ], [ -119.407491062999895, 50.063115507000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "96.4", "sL_BldgLoss": "96.4", "sL_StrLoss": "96.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6E9D7EFECD85DC0914306EA7B0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.380618833999961, 50.110028722000038 ], [ -119.380119637999954, 50.109958656000046 ], [ -119.380154161999982, 50.109721984000075 ], [ -119.382597299999958, 50.110039291000099 ], [ -119.385660490999953, 50.110318399000093 ], [ -119.387125884999961, 50.110279995000035 ], [ -119.387400908999965, 50.10931148800011 ], [ -119.387698496999917, 50.108828712000083 ], [ -119.39067181199999, 50.106195288000094 ], [ -119.391598382999945, 50.105420494000064 ], [ -119.392101412999949, 50.104591703000061 ], [ -119.392435317999968, 50.101183497000093 ], [ -119.3942548799999, 50.09756599700011 ], [ -119.394763188999917, 50.096799813000118 ], [ -119.395026104999943, 50.096191704000148 ], [ -119.395703958999917, 50.095286858000094 ], [ -119.395971434999964, 50.095302954000026 ], [ -119.395513215999983, 50.095965504000077 ], [ -119.39479719699996, 50.097104286000075 ], [ -119.394499264999979, 50.09766279200003 ], [ -119.393368622999915, 50.099781987000043 ], [ -119.393268235999955, 50.100002548000042 ], [ -119.392927942999961, 50.100750297000047 ], [ -119.392920683999961, 50.100766206000088 ], [ -119.392761819999976, 50.101298293000063 ], [ -119.392779289999979, 50.101563897000077 ], [ -119.392717575999939, 50.101959292000025 ], [ -119.392623686999954, 50.101958095000043 ], [ -119.392545200999947, 50.102863502000055 ], [ -119.392424274999939, 50.10409939500002 ], [ -119.392336703999931, 50.10452750600011 ], [ -119.392176984999978, 50.104910710000055 ], [ -119.391908398999988, 50.105327906000063 ], [ -119.391571118999977, 50.105686805000055 ], [ -119.38891976599993, 50.108031612000154 ], [ -119.389014562999975, 50.108065306000107 ], [ -119.388308434999914, 50.108767636000103 ], [ -119.387905754999935, 50.109401559000062 ], [ -119.387681098999977, 50.109989334000069 ], [ -119.387646038999947, 50.11022016700008 ], [ -119.38759423, 50.110556496000122 ], [ -119.387447044999973, 50.110555237000042 ], [ -119.38741893599996, 50.110554978000032 ], [ -119.38722350899998, 50.110554154000035 ], [ -119.386988085, 50.110553189000015 ], [ -119.38671019399996, 50.11055202500004 ], [ -119.385965328999959, 50.110527008000076 ], [ -119.384646615999912, 50.110437818000079 ], [ -119.384543922999981, 50.110430900000033 ], [ -119.383785542999973, 50.110379594000086 ], [ -119.38344499899992, 50.110356569 ], [ -119.383271792999977, 50.110344848000061 ], [ -119.382854561999977, 50.110295132000076 ], [ -119.382768129999988, 50.110284831000065 ], [ -119.382543197999951, 50.110258041000101 ], [ -119.382274622999887, 50.110226028000064 ], [ -119.382177037999952, 50.110214407000036 ], [ -119.380618833999961, 50.110028722000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "1", "sL_AssetLoss": "204", "sL_BldgLoss": "204", "sL_StrLoss": "204", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000C5300316ED95DC0D75C24A3390B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.397907015, 50.085266746000073 ], [ -119.398133645999962, 50.085280381000082 ], [ -119.39813350899999, 50.085283489000119 ], [ -119.397982299999981, 50.085802492000035 ], [ -119.397394499999947, 50.087383308 ], [ -119.39724190299999, 50.087921190000039 ], [ -119.39720798499999, 50.088347193000111 ], [ -119.397300398999917, 50.088841190000075 ], [ -119.397663996999952, 50.089815597000054 ], [ -119.397716911999936, 50.090078788000056 ], [ -119.397750312999918, 50.090244925000086 ], [ -119.39741743399999, 50.090224897000049 ], [ -119.397433997999968, 50.090070408000017 ], [ -119.397249011999946, 50.089472293000036 ], [ -119.396763791999945, 50.088725995000082 ], [ -119.396677588000031, 50.088395593 ], [ -119.39721411399999, 50.087088096000031 ], [ -119.39725658699993, 50.086250708000094 ], [ -119.397908103999967, 50.085302204000087 ], [ -119.397907015, 50.085266746000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "174465228", "BldgCostT": "117259857", "sL_LossRatio": "0.998374704265175", "sL_AssetLoss": "13043.78", "sL_BldgLoss": "13022.58", "sL_StrLoss": "13014.9", "sL_NStrLoss": "7.68", "sL_ContLoss": "21.2", "geom_point": "0101000020E6100000E1E2F2699FD75DC08E42DCE6D70A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365900581999952, 50.105416005000102 ], [ -119.365604398999949, 50.105357413000064 ], [ -119.364799405, 50.105377925000042 ], [ -119.364498990999934, 50.105385580000146 ], [ -119.364396599999949, 50.105388213000019 ], [ -119.362544601999957, 50.105416203000054 ], [ -119.362306613999962, 50.105462480000064 ], [ -119.362331575, 50.103890489 ], [ -119.362307290999965, 50.103879601000088 ], [ -119.362301219999949, 50.103870892000018 ], [ -119.36223419699995, 50.103774997000073 ], [ -119.362187985999938, 50.103629495000057 ], [ -119.362295209999914, 50.101821195000113 ], [ -119.361400556999953, 50.101803342000032 ], [ -119.361038005999944, 50.101796113000056 ], [ -119.356953263999969, 50.10171443500009 ], [ -119.356611275, 50.101707594000068 ], [ -119.35509101699995, 50.101695439000096 ], [ -119.354197333999934, 50.101688285000073 ], [ -119.352783971999941, 50.101676933000064 ], [ -119.352707799999948, 50.101676323000106 ], [ -119.351025427999929, 50.101662802000092 ], [ -119.351024476999953, 50.100451902000053 ], [ -119.350968331999979, 50.100007626000085 ], [ -119.350930193999915, 50.099705792000094 ], [ -119.35086908599996, 50.099499901000051 ], [ -119.350887717999939, 50.098002210000118 ], [ -119.3508054, 50.097910180000035 ], [ -119.350836473999905, 50.097698043000079 ], [ -119.352873543999976, 50.097821436000089 ], [ -119.3528752499999, 50.097809790000078 ], [ -119.350108692, 50.097642201000092 ], [ -119.350633083, 50.094062329000074 ], [ -119.354130645999987, 50.094274191000103 ], [ -119.354186741, 50.093891011000018 ], [ -119.357597862999953, 50.094097527000024 ], [ -119.359351438999909, 50.094203650000104 ], [ -119.359550666999908, 50.092841631000084 ], [ -119.360262453999951, 50.092884699000074 ], [ -119.360384303999979, 50.092051547000032 ], [ -119.360075922999968, 50.092032888000034 ], [ -119.360149764999946, 50.091527999000043 ], [ -119.359964452999975, 50.091516786000049 ], [ -119.360036516999941, 50.091024055000112 ], [ -119.35984528199999, 50.091012484000053 ], [ -119.359909420999955, 50.09057395100011 ], [ -119.35911652799993, 50.090525971000034 ], [ -119.3585196699999, 50.090489849000043 ], [ -119.358544170999949, 50.090322363000027 ], [ -119.357434847999954, 50.090255219000078 ], [ -119.357561345999954, 50.089390594000065 ], [ -119.353801290999982, 50.08916292100011 ], [ -119.353939225999966, 50.088220628000016 ], [ -119.353182734999947, 50.08817480600004 ], [ -119.353706775999953, 50.084594876000033 ], [ -119.356294925000014, 50.084751623000052 ], [ -119.356505124999956, 50.083314936000079 ], [ -119.360390300999924, 50.083550119000044 ], [ -119.360750666999962, 50.08108542800003 ], [ -119.363230117999976, 50.081235445000097 ], [ -119.363680204000019, 50.078155587000026 ], [ -119.364788931999954, 50.078222652000115 ], [ -119.365167878999898, 50.075628814000048 ], [ -119.365517139999938, 50.075649938000097 ], [ -119.365788255, 50.073793924000043 ], [ -119.366428179999957, 50.073832625000158 ], [ -119.366809351999962, 50.07122264100007 ], [ -119.367525990999965, 50.071265976000085 ], [ -119.368027486999935, 50.067831260000112 ], [ -119.370222888999933, 50.067963988000045 ], [ -119.370286607, 50.067527411000093 ], [ -119.372054362, 50.06763425300003 ], [ -119.372420257999963, 50.065126373000105 ], [ -119.379500935999928, 50.064836935000102 ], [ -119.37904639599995, 50.065863995000079 ], [ -119.378684099999987, 50.066713482000125 ], [ -119.379680399999955, 50.066827802000084 ], [ -119.379920995999896, 50.066813394000107 ], [ -119.380532194999986, 50.066594788000039 ], [ -119.382029471999928, 50.065947488000049 ], [ -119.382243514999942, 50.065826801000135 ], [ -119.382578686999977, 50.065529551000097 ], [ -119.38265999399998, 50.065377015000124 ], [ -119.382749709999985, 50.065213259000082 ], [ -119.382815507999965, 50.065130950000082 ], [ -119.382881751999918, 50.065057628000041 ], [ -119.383022841999917, 50.064802839000087 ], [ -119.38317062099999, 50.064682867000052 ], [ -119.383345836999936, 50.064553348000075 ], [ -119.38342692699996, 50.064497713000023 ], [ -119.383589553999926, 50.064395426000083 ], [ -119.383792708999948, 50.064265298000137 ], [ -119.383968848999984, 50.064153739000027 ], [ -119.384063898999955, 50.064097816000086 ], [ -119.384212118999969, 50.063986830000111 ], [ -119.384279208999956, 50.063931491000126 ], [ -119.384347227999939, 50.063894113000082 ], [ -119.384618396999883, 50.063726606000067 ], [ -119.38465760299998, 50.063671829000114 ], [ -119.384837301999951, 50.063632157000079 ], [ -119.384989077999961, 50.063593061000077 ], [ -119.38522707, 50.063528787000081 ], [ -119.385372272, 50.0634832900001 ], [ -119.385516985999971, 50.063414789000056 ], [ -119.385591002999973, 50.063310915000017 ], [ -119.386019408, 50.062199082000092 ], [ -119.386431189999911, 50.06150979800001 ], [ -119.38644876299999, 50.061490313000071 ], [ -119.386549998999953, 50.06137789100007 ], [ -119.386595796, 50.061371603000097 ], [ -119.386698278999958, 50.061409396000066 ], [ -119.38680741099995, 50.062201492000042 ], [ -119.386970989999938, 50.062648392000021 ], [ -119.387173885999985, 50.062941397000017 ], [ -119.387270864999934, 50.063003126000048 ], [ -119.387330501999926, 50.063041101000074 ], [ -119.387870667999891, 50.063185853000064 ], [ -119.388091176, 50.063215887000048 ], [ -119.387512385999941, 50.064584201000116 ], [ -119.387587069999938, 50.065094964000103 ], [ -119.385271418999977, 50.064955323000085 ], [ -119.384651408999943, 50.064917927000032 ], [ -119.384682765999969, 50.06470259000006 ], [ -119.384503028999958, 50.06469174700004 ], [ -119.384356347999955, 50.065699002000038 ], [ -119.385298534999947, 50.06575583200005 ], [ -119.387704921999983, 50.065900939000088 ], [ -119.38791369199997, 50.067328608000018 ], [ -119.387842699000018, 50.067852787000071 ], [ -119.3874075799999, 50.068957893000068 ], [ -119.387494606999951, 50.069325386000088 ], [ -119.387375785999978, 50.06949269600004 ], [ -119.384318272999963, 50.069308322000097 ], [ -119.383178007, 50.069239540000126 ], [ -119.38299428199997, 50.070500773000077 ], [ -119.382874273999946, 50.071324575000084 ], [ -119.382282595999939, 50.0712888810001 ], [ -119.38134163299999, 50.071232106000089 ], [ -119.381310708999962, 50.07144433500013 ], [ -119.381659497999948, 50.071465380000056 ], [ -119.381488941999933, 50.072635888000015 ], [ -119.381392205999987, 50.073299744000032 ], [ -119.382749926999978, 50.073381657000063 ], [ -119.382994591999989, 50.074077992000078 ], [ -119.383083795999966, 50.074750193000099 ], [ -119.382854586999912, 50.075771411000055 ], [ -119.381901709999937, 50.07714 ], [ -119.381706809999955, 50.078269390000088 ], [ -119.381516375999951, 50.078686696000027 ], [ -119.381634591999955, 50.079925795000044 ], [ -119.381579106999979, 50.080790310000111 ], [ -119.381164308999942, 50.081707500000029 ], [ -119.381098674999961, 50.082586003000117 ], [ -119.380053706999945, 50.082522958000027 ], [ -119.37977489499994, 50.084435429000038 ], [ -119.380921895999975, 50.084504629000023 ], [ -119.380913961999937, 50.084559053000113 ], [ -119.379802001999963, 50.087815899000134 ], [ -119.37973741499998, 50.088213196000083 ], [ -119.37989080299991, 50.088758691000081 ], [ -119.379715089999976, 50.088879807000097 ], [ -119.379300592999982, 50.088978107000045 ], [ -119.378535808999942, 50.089064890000067 ], [ -119.378072109999962, 50.089291401000047 ], [ -119.377296407999921, 50.090278394000116 ], [ -119.375552308999914, 50.092067189000026 ], [ -119.374383313999957, 50.092869760000063 ], [ -119.374376104999968, 50.092874708000124 ], [ -119.37395671099992, 50.093143905000083 ], [ -119.373638789999973, 50.094076703000063 ], [ -119.373389710999987, 50.09441428700007 ], [ -119.372777811999924, 50.094760293000029 ], [ -119.371995411999976, 50.095073685000052 ], [ -119.37151511699993, 50.095532297 ], [ -119.37104198899999, 50.096415308000097 ], [ -119.371074702999962, 50.097107395000158 ], [ -119.370966881999962, 50.097729795000099 ], [ -119.370814286999945, 50.098030309000116 ], [ -119.370062208999968, 50.098657002000046 ], [ -119.368952981999925, 50.100272002000075 ], [ -119.367606089999981, 50.103015112000023 ], [ -119.366907897999965, 50.104775389000061 ], [ -119.36677929299999, 50.105253899000061 ], [ -119.366822819999982, 50.105595700000038 ], [ -119.36720558399999, 50.105991696000075 ], [ -119.368742086999973, 50.106779192000062 ], [ -119.370496885999927, 50.107498510000077 ], [ -119.374726600999949, 50.10874469600008 ], [ -119.37793718899999, 50.109433999000025 ], [ -119.378810215999948, 50.109547412000083 ], [ -119.37877769699999, 50.109770300000079 ], [ -119.378419809999968, 50.109720064000058 ], [ -119.375290367999924, 50.109147556000082 ], [ -119.374311045999988, 50.109055050000045 ], [ -119.372109908999988, 50.108616998000038 ], [ -119.371650825999964, 50.108450834000067 ], [ -119.371587091999984, 50.108427766000048 ], [ -119.370116012999944, 50.107895303000078 ], [ -119.368075787999928, 50.10708680700008 ], [ -119.366836100999976, 50.106316711000062 ], [ -119.366656187999951, 50.106168217000082 ], [ -119.36649397799998, 50.106034297000107 ], [ -119.36647020399991, 50.106014708 ], [ -119.36613111099993, 50.105596888 ], [ -119.365900581999952, 50.105416005000102 ] ], [ [ -119.376407517999908, 50.089089493000088 ], [ -119.376537077999927, 50.088201375000047 ], [ -119.375955195999936, 50.088166251000125 ], [ -119.375914629999897, 50.08844430200007 ], [ -119.376483817999983, 50.088478660000099 ], [ -119.376394820999963, 50.089088726000078 ], [ -119.376407517999908, 50.089089493000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94879250", "BldgCostT": "57095000", "sL_LossRatio": "0.988274967063682", "sL_AssetLoss": "6304.929837", "sL_BldgLoss": "6231.004327", "sL_StrLoss": "6199.288257", "sL_NStrLoss": "31.71607", "sL_ContLoss": "73.92551", "geom_point": "0101000020E610000082F0EC1B6DD95DC0CC18C4ACBC064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.386900493999917, 50.05547138700009 ], [ -119.38707138700002, 50.055039272000087 ], [ -119.387137257999939, 50.054903958000118 ], [ -119.387417432999925, 50.054328785000045 ], [ -119.388115671999969, 50.053260291000086 ], [ -119.388614627999956, 50.052703478000133 ], [ -119.388867032999883, 50.052337675000153 ], [ -119.38910475499992, 50.051599878000083 ], [ -119.38931274299992, 50.051182626000077 ], [ -119.389601653999989, 50.050305267000127 ], [ -119.389756210999934, 50.049985006000028 ], [ -119.389963305999984, 50.049409225000055 ], [ -119.390003475999919, 50.049297457000087 ], [ -119.390957605999958, 50.049294320000129 ], [ -119.391264986999914, 50.049293311000035 ], [ -119.391655810999978, 50.049292022000017 ], [ -119.393052541999936, 50.049287430000049 ], [ -119.393974537999924, 50.049284363000055 ], [ -119.394041349999938, 50.049284146000041 ], [ -119.394700966999935, 50.049281971000084 ], [ -119.39577621499997, 50.049278379000057 ], [ -119.39724749899996, 50.049273477000014 ], [ -119.39850975399996, 50.04927273800007 ], [ -119.399995221999973, 50.049275081000125 ], [ -119.401143749999932, 50.049276841000101 ], [ -119.401758345999951, 50.04927778900008 ], [ -119.403042729999939, 50.049279240000068 ], [ -119.404479949999939, 50.049270904000075 ], [ -119.40597753199998, 50.049270489000037 ], [ -119.40733389199994, 50.049270122000046 ], [ -119.40867581199997, 50.049261422000072 ], [ -119.409256555999946, 50.049252229000039 ], [ -119.409627397999884, 50.049246390000057 ], [ -119.40982703499995, 50.049271940000025 ], [ -119.409927225999979, 50.049354705000077 ], [ -119.410180261999955, 50.049901717000054 ], [ -119.410352987999914, 50.050161286000083 ], [ -119.410554017999956, 50.05032236600006 ], [ -119.411074017999979, 50.050614533000093 ], [ -119.411400627999981, 50.050895997000069 ], [ -119.41161144699997, 50.051212044000096 ], [ -119.411721286999963, 50.05155724100004 ], [ -119.41168614499999, 50.052045948000057 ], [ -119.411685423999941, 50.052056192000094 ], [ -119.411590674999971, 50.05234211500008 ], [ -119.411472776999943, 50.052504976000108 ], [ -119.411432843999975, 50.052560161000066 ], [ -119.411249253999941, 50.052681804000031 ], [ -119.41048952199999, 50.053185157000094 ], [ -119.410436582, 50.053308393000066 ], [ -119.41047493899994, 50.05343076500003 ], [ -119.410769036999966, 50.053656115000052 ], [ -119.410879392999959, 50.053736798000081 ], [ -119.409345982999952, 50.054619692000074 ], [ -119.409263451, 50.054681559000045 ], [ -119.408782694999914, 50.055041791000043 ], [ -119.408765226999961, 50.055062758000105 ], [ -119.408594752999974, 50.055074914000095 ], [ -119.408077539999923, 50.055111738000051 ], [ -119.407837579999978, 50.055120636000048 ], [ -119.407788293999943, 50.054540710000033 ], [ -119.408478314999911, 50.053230397000071 ], [ -119.408584177999927, 50.05313919700005 ], [ -119.408752684999953, 50.053153507000097 ], [ -119.40887980699992, 50.053725992000132 ], [ -119.409068683999948, 50.053867003000036 ], [ -119.409413187999959, 50.053805803000074 ], [ -119.409561894999911, 50.05366758600006 ], [ -119.409749683999962, 50.052971196000058 ], [ -119.409734192999949, 50.052089588000065 ], [ -119.409295495999956, 50.051720707000065 ], [ -119.408147977999988, 50.051672296000035 ], [ -119.407479688999956, 50.051740714000076 ], [ -119.4064835, 50.0521836 ], [ -119.404942312999964, 50.051829004000069 ], [ -119.403775694999965, 50.051690801000071 ], [ -119.403134986999987, 50.051722200000071 ], [ -119.403071700999931, 50.051734249000056 ], [ -119.399896082999959, 50.052338793000047 ], [ -119.399317819999951, 50.052773197000064 ], [ -119.399023596999939, 50.052778890000113 ], [ -119.398265392999988, 50.052686404000092 ], [ -119.397945486999916, 50.052449911000103 ], [ -119.397064309999934, 50.05215370000009 ], [ -119.396687491999955, 50.051856015000112 ], [ -119.396289105999955, 50.051737809000045 ], [ -119.393755696999918, 50.051611113000021 ], [ -119.392723315999916, 50.051641002000025 ], [ -119.39170719199997, 50.051464411000083 ], [ -119.390746606999983, 50.051528489000127 ], [ -119.389943503999945, 50.051680907000069 ], [ -119.389762204999982, 50.051962792000033 ], [ -119.389684389999942, 50.052341699000067 ], [ -119.389902702999933, 50.053362904000032 ], [ -119.389806419999928, 50.053941098000053 ], [ -119.390319710999933, 50.0547215 ], [ -119.390314795999956, 50.055207188000054 ], [ -119.390453995999977, 50.055466394000057 ], [ -119.391070595999935, 50.055480590000101 ], [ -119.391157598999897, 50.056396389000042 ], [ -119.390917875999918, 50.056913394000063 ], [ -119.390150659, 50.057985604000116 ], [ -119.389559382999963, 50.058811893000069 ], [ -119.388435432999955, 50.059976388000081 ], [ -119.384526068999961, 50.059740616000042 ], [ -119.38458903199998, 50.059421262000086 ], [ -119.384633896999958, 50.059334580000076 ], [ -119.384699972999925, 50.059198610000102 ], [ -119.38509592199992, 50.058809526000076 ], [ -119.385103614999977, 50.058801983000116 ], [ -119.385150143999908, 50.058756250000037 ], [ -119.38550896299995, 50.058141348000028 ], [ -119.385705623999939, 50.05789857600012 ], [ -119.385996130999928, 50.057704825000087 ], [ -119.386330967999953, 50.0575372610001 ], [ -119.386421232999936, 50.057492100000076 ], [ -119.386428446999972, 50.057483705000074 ], [ -119.386522512999974, 50.057374523000107 ], [ -119.386615249999977, 50.057122764000084 ], [ -119.386590766000012, 50.056703236000054 ], [ -119.386900493999917, 50.05547138700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24501417", "BldgCostT": "14951667", "sL_LossRatio": "1", "sL_AssetLoss": "1112.7", "sL_BldgLoss": "1112.7", "sL_StrLoss": "1112.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000103AAE6784D85DC0961BDA3A17084940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.382898560999962, 50.061252402000072 ], [ -119.382996353999985, 50.060989207000098 ], [ -119.383856040999987, 50.06104107699999 ], [ -119.38395978699999, 50.060328628000022 ], [ -119.384075770999971, 50.060296822000019 ], [ -119.384308625999921, 50.060190782000049 ], [ -119.384403963999958, 50.060090495000068 ], [ -119.387870971999988, 50.060299599000061 ], [ -119.387694913999937, 50.060388496000058 ], [ -119.387252009999941, 50.061027902000049 ], [ -119.387345623000016, 50.062096100000069 ], [ -119.387590882999987, 50.062504795000088 ], [ -119.388013411999921, 50.062846696000065 ], [ -119.388111216999974, 50.063168505000178 ], [ -119.388091176, 50.063215887000048 ], [ -119.387870667999891, 50.063185853000064 ], [ -119.387330501999926, 50.063041101000074 ], [ -119.387270864999934, 50.063003126000048 ], [ -119.387173885999985, 50.062941397000017 ], [ -119.386970989999938, 50.062648392000021 ], [ -119.38680741099995, 50.062201492000042 ], [ -119.386698278999958, 50.061409396000066 ], [ -119.386595796, 50.061371603000097 ], [ -119.386549998999953, 50.06137789100007 ], [ -119.38644876299999, 50.061490313000071 ], [ -119.386431189999911, 50.06150979800001 ], [ -119.386019408, 50.062199082000092 ], [ -119.385591002999973, 50.063310915000017 ], [ -119.385516985999971, 50.063414789000056 ], [ -119.385372272, 50.0634832900001 ], [ -119.38522707, 50.063528787000081 ], [ -119.384989077999961, 50.063593061000077 ], [ -119.384837301999951, 50.063632157000079 ], [ -119.38465760299998, 50.063671829000114 ], [ -119.384618396999883, 50.063726606000067 ], [ -119.384347227999939, 50.063894113000082 ], [ -119.384279208999956, 50.063931491000126 ], [ -119.384212118999969, 50.063986830000111 ], [ -119.384063898999955, 50.064097816000086 ], [ -119.383968848999984, 50.064153739000027 ], [ -119.383792708999948, 50.064265298000137 ], [ -119.383589553999926, 50.064395426000083 ], [ -119.38342692699996, 50.064497713000023 ], [ -119.383345836999936, 50.064553348000075 ], [ -119.38317062099999, 50.064682867000052 ], [ -119.383022841999917, 50.064802839000087 ], [ -119.382881751999918, 50.065057628000041 ], [ -119.382815507999965, 50.065130950000082 ], [ -119.382749709999985, 50.065213259000082 ], [ -119.38265999399998, 50.065377015000124 ], [ -119.382578686999977, 50.065529551000097 ], [ -119.382243514999942, 50.065826801000135 ], [ -119.382029471999928, 50.065947488000049 ], [ -119.380532194999986, 50.066594788000039 ], [ -119.379920995999896, 50.066813394000107 ], [ -119.379680399999955, 50.066827802000084 ], [ -119.378684099999987, 50.066713482000125 ], [ -119.37904639599995, 50.065863995000079 ], [ -119.379500935999928, 50.064836935000102 ], [ -119.380106894999983, 50.063467626000083 ], [ -119.380288431999986, 50.063049707000033 ], [ -119.380510294999965, 50.062749784000026 ], [ -119.38076881899994, 50.062564034000111 ], [ -119.3811351, 50.062370598000086 ], [ -119.382356934999905, 50.061725363000058 ], [ -119.382708543999982, 50.061507305000085 ], [ -119.382898560999962, 50.061252402000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "376728418", "BldgCostT": "245950683", "sL_LossRatio": "0.994771104726425", "sL_AssetLoss": "22605.979622", "sL_BldgLoss": "22487.775322", "sL_StrLoss": "22439.750322", "sL_NStrLoss": "48.025", "sL_ContLoss": "118.2043", "geom_point": "0101000020E61000008708EF4097D95DC0C0EC3B1271054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.390025388999931, 50.048982758000079 ], [ -119.390265486999979, 50.047891157000038 ], [ -119.390636544999978, 50.046371861000075 ], [ -119.391089193999974, 50.044518493000069 ], [ -119.391527163999967, 50.042724853000017 ], [ -119.391642451999928, 50.04215393700013 ], [ -119.391697247999957, 50.041921578000036 ], [ -119.392014905999986, 50.040672113000021 ], [ -119.392112606999945, 50.040530814000078 ], [ -119.392471310999937, 50.040213805000022 ], [ -119.392771798999988, 50.040046911000069 ], [ -119.392949250999919, 50.039994911000043 ], [ -119.393244793999955, 50.039908314000094 ], [ -119.393356102, 50.039769695000103 ], [ -119.392856230999939, 50.034899673000091 ], [ -119.392855316999956, 50.034890713000046 ], [ -119.392976913, 50.034777097000109 ], [ -119.392990184999988, 50.034774142000053 ], [ -119.393069236999949, 50.034756528000059 ], [ -119.393215990999948, 50.034723797000026 ], [ -119.397057589999989, 50.034702493000033 ], [ -119.397173299999935, 50.034702599000134 ], [ -119.397983372999974, 50.034703221000036 ], [ -119.399491905999952, 50.034704401000063 ], [ -119.399996452000011, 50.034704784000034 ], [ -119.400874895999905, 50.034705458000047 ], [ -119.402146037999955, 50.034706438000079 ], [ -119.402204954999959, 50.034348805 ], [ -119.40263702399993, 50.03393148200005 ], [ -119.402769082999924, 50.033581875000053 ], [ -119.402651452999962, 50.033155526000066 ], [ -119.40237312499994, 50.032146769000043 ], [ -119.402163593999944, 50.031378402000058 ], [ -119.402094216999927, 50.031122314000058 ], [ -119.401864720999981, 50.030269676000032 ], [ -119.401670114999973, 50.029562723000033 ], [ -119.40263686900002, 50.029440331000053 ], [ -119.403792994999947, 50.029297738000118 ], [ -119.404273712999938, 50.02924992300008 ], [ -119.403933436999949, 50.030523323000075 ], [ -119.403804490999974, 50.031247809000085 ], [ -119.403719903999928, 50.032023803000115 ], [ -119.403585788000015, 50.034706412000055 ], [ -119.403758191999955, 50.034706905000121 ], [ -119.403779293999904, 50.035049728000097 ], [ -119.403798691999924, 50.035364792000102 ], [ -119.404191703, 50.036405198000054 ], [ -119.404612337999964, 50.037128504000108 ], [ -119.406018338999957, 50.039546037000115 ], [ -119.40650924699996, 50.040390034000055 ], [ -119.406718801999915, 50.040750292000141 ], [ -119.408185228999912, 50.043203235000092 ], [ -119.409929223999953, 50.046120070000057 ], [ -119.410344597999938, 50.046814688000048 ], [ -119.410493487999972, 50.047164900000062 ], [ -119.410316211999927, 50.047215658000084 ], [ -119.410068634999973, 50.047286546000102 ], [ -119.410148417999949, 50.047345499000095 ], [ -119.410211152999949, 50.047705931000088 ], [ -119.410152744999948, 50.048028334000051 ], [ -119.410126996999949, 50.048170381000048 ], [ -119.410159793999952, 50.048592173000017 ], [ -119.410131189999987, 50.048770128000051 ], [ -119.410044948999882, 50.048978053000049 ], [ -119.40982703499995, 50.049271940000025 ], [ -119.409627397999884, 50.049246390000057 ], [ -119.409256555999946, 50.049252229000039 ], [ -119.40867581199997, 50.049261422000072 ], [ -119.40733389199994, 50.049270122000046 ], [ -119.40597753199998, 50.049270489000037 ], [ -119.404479949999939, 50.049270904000075 ], [ -119.403042729999939, 50.049279240000068 ], [ -119.401758345999951, 50.04927778900008 ], [ -119.401143749999932, 50.049276841000101 ], [ -119.399995221999973, 50.049275081000125 ], [ -119.39850975399996, 50.04927273800007 ], [ -119.39724749899996, 50.049273477000014 ], [ -119.39577621499997, 50.049278379000057 ], [ -119.394700966999935, 50.049281971000084 ], [ -119.394041349999938, 50.049284146000041 ], [ -119.393974537999924, 50.049284363000055 ], [ -119.393052541999936, 50.049287430000049 ], [ -119.391655810999978, 50.049292022000017 ], [ -119.391264986999914, 50.049293311000035 ], [ -119.390957605999958, 50.049294320000129 ], [ -119.390003475999919, 50.049297457000087 ], [ -119.390025388999931, 50.048982758000079 ] ], [ [ -119.397148312999917, 50.041048131000096 ], [ -119.397335217, 50.039761417000065 ], [ -119.396033497999923, 50.039682997000071 ], [ -119.396090989999891, 50.039287264000052 ], [ -119.395119949999923, 50.039228754000099 ], [ -119.395113194999951, 50.039275241000027 ], [ -119.395519556999957, 50.039299727000099 ], [ -119.395281856999972, 50.040935684000054 ], [ -119.397148312999917, 50.041048131000096 ] ], [ [ -119.394746809999972, 50.036958129000077 ], [ -119.394781326999947, 50.036720580000122 ], [ -119.394777198, 50.036720331000012 ], [ -119.394742682999919, 50.036957881000092 ], [ -119.394746809999972, 50.036958129000077 ] ], [ [ -119.394686496999952, 50.036069553000125 ], [ -119.394698811999945, 50.035984788000093 ], [ -119.394666539999918, 50.035982844000046 ], [ -119.394654223999936, 50.036067607000085 ], [ -119.394686496999952, 50.036069553000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "157492250", "BldgCostT": "102995000", "sL_LossRatio": "1", "sL_AssetLoss": "14692.8", "sL_BldgLoss": "14692.8", "sL_StrLoss": "14692.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007CCCA38F77DA5DC0F117488A27054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.408185228999912, 50.043203235000092 ], [ -119.406718801999915, 50.040750292000141 ], [ -119.40650924699996, 50.040390034000055 ], [ -119.406018338999957, 50.039546037000115 ], [ -119.404612337999964, 50.037128504000108 ], [ -119.404191703, 50.036405198000054 ], [ -119.403798691999924, 50.035364792000102 ], [ -119.403779293999904, 50.035049728000097 ], [ -119.403758191999955, 50.034706905000121 ], [ -119.403585788000015, 50.034706412000055 ], [ -119.403719903999928, 50.032023803000115 ], [ -119.403804490999974, 50.031247809000085 ], [ -119.403933436999949, 50.030523323000075 ], [ -119.404273712999938, 50.02924992300008 ], [ -119.404454108999985, 50.02923368200004 ], [ -119.405152813999919, 50.029180898000092 ], [ -119.405466683999947, 50.029181788000045 ], [ -119.405778520999945, 50.029254698000059 ], [ -119.406259203999952, 50.029448915000032 ], [ -119.409115502999953, 50.03045768700013 ], [ -119.409924505, 50.030659810000067 ], [ -119.41023301199999, 50.030678392000048 ], [ -119.410230370999969, 50.030888380000057 ], [ -119.410227021999958, 50.031154774000072 ], [ -119.41034386599999, 50.031944631000094 ], [ -119.410601342999911, 50.033249915000034 ], [ -119.410612467999925, 50.033306404000115 ], [ -119.41062780599999, 50.033383939000117 ], [ -119.410847320999949, 50.034496759000078 ], [ -119.410891345, 50.034631406000052 ], [ -119.410925342999988, 50.034735431000072 ], [ -119.411161057999948, 50.035456441000086 ], [ -119.411815268999973, 50.03637880900007 ], [ -119.412292617999981, 50.036277489000113 ], [ -119.413142418999897, 50.036266251000015 ], [ -119.413830566999977, 50.036325675000036 ], [ -119.41452216299993, 50.036583934000134 ], [ -119.415065688999931, 50.036664433000063 ], [ -119.416745800999976, 50.036687542000045 ], [ -119.417580004999962, 50.036699011000039 ], [ -119.418056150999959, 50.0367510680001 ], [ -119.418456168, 50.036795881000067 ], [ -119.418916616, 50.036807946000089 ], [ -119.419737003999941, 50.036829395000055 ], [ -119.42028288599991, 50.036832711000059 ], [ -119.421776865999959, 50.036841802000033 ], [ -119.423481771999931, 50.036852129000046 ], [ -119.42437607799999, 50.036857540000049 ], [ -119.425711087999929, 50.036865605000038 ], [ -119.425704454999959, 50.038742925000072 ], [ -119.424805727999953, 50.038689016000049 ], [ -119.424780742999985, 50.038861752000088 ], [ -119.425703838999951, 50.038917122000029 ], [ -119.425697975999981, 50.040576754000043 ], [ -119.425696969999947, 50.040864280000093 ], [ -119.425693480999939, 50.041853895000095 ], [ -119.425693092999893, 50.041963116000069 ], [ -119.425667670999928, 50.042655815000025 ], [ -119.425642538999966, 50.04334087200003 ], [ -119.42563116, 50.04365192000008 ], [ -119.425621587999942, 50.043911799000071 ], [ -119.42562268599994, 50.043977760000068 ], [ -119.425630577999982, 50.044450393000055 ], [ -119.421952292999961, 50.044440802000082 ], [ -119.421475909999984, 50.044439551000046 ], [ -119.420917314999912, 50.044438093000039 ], [ -119.420470383999969, 50.044436930000082 ], [ -119.41688149399999, 50.044427404000025 ], [ -119.41666311199999, 50.044066690000143 ], [ -119.416129986, 50.043451041 ], [ -119.415421005, 50.042632290000022 ], [ -119.414197574999946, 50.04260844900007 ], [ -119.414045433999931, 50.04266162100005 ], [ -119.414012867999972, 50.042760784000052 ], [ -119.413995424999911, 50.043365389000066 ], [ -119.413986754999911, 50.0436666250001 ], [ -119.413957904, 50.044572288000069 ], [ -119.413680169999907, 50.044572765000034 ], [ -119.413349560999933, 50.0443446210001 ], [ -119.413184300999959, 50.044230579000065 ], [ -119.412595916999948, 50.043489268000023 ], [ -119.412572486999963, 50.043459765000115 ], [ -119.412380097999943, 50.0434617330001 ], [ -119.412281072999974, 50.044841739000042 ], [ -119.412502633999964, 50.045450954000088 ], [ -119.41292481, 50.04597291000006 ], [ -119.413884796999923, 50.046915437000088 ], [ -119.41398927899999, 50.047016526000043 ], [ -119.414055479999959, 50.047218223000066 ], [ -119.41403490099999, 50.048269800000064 ], [ -119.414026409000016, 50.049537798000053 ], [ -119.41402516499997, 50.050022300000109 ], [ -119.414016502999942, 50.053428708000133 ], [ -119.414046396999936, 50.05515770800011 ], [ -119.413855215999945, 50.055165496000043 ], [ -119.413535700999915, 50.055178500000075 ], [ -119.411481767999973, 50.055158162000055 ], [ -119.411322841999933, 50.055156599000028 ], [ -119.411375381999932, 50.054213500000117 ], [ -119.411247498999913, 50.054002710000105 ], [ -119.411174071999966, 50.053949676000045 ], [ -119.410879392999959, 50.053736798000081 ], [ -119.410769036999966, 50.053656115000052 ], [ -119.41047493899994, 50.05343076500003 ], [ -119.410436582, 50.053308393000066 ], [ -119.41048952199999, 50.053185157000094 ], [ -119.411249253999941, 50.052681804000031 ], [ -119.411432843999975, 50.052560161000066 ], [ -119.411472776999943, 50.052504976000108 ], [ -119.411590674999971, 50.05234211500008 ], [ -119.411685423999941, 50.052056192000094 ], [ -119.41168614499999, 50.052045948000057 ], [ -119.411721286999963, 50.05155724100004 ], [ -119.41161144699997, 50.051212044000096 ], [ -119.411400627999981, 50.050895997000069 ], [ -119.411074017999979, 50.050614533000093 ], [ -119.410554017999956, 50.05032236600006 ], [ -119.410352987999914, 50.050161286000083 ], [ -119.410180261999955, 50.049901717000054 ], [ -119.409927225999979, 50.049354705000077 ], [ -119.40982703499995, 50.049271940000025 ], [ -119.410044948999882, 50.048978053000049 ], [ -119.410131189999987, 50.048770128000051 ], [ -119.410159793999952, 50.048592173000017 ], [ -119.410126996999949, 50.048170381000048 ], [ -119.410152744999948, 50.048028334000051 ], [ -119.410211152999949, 50.047705931000088 ], [ -119.410148417999949, 50.047345499000095 ], [ -119.410068634999973, 50.047286546000102 ], [ -119.410316211999927, 50.047215658000084 ], [ -119.410493487999972, 50.047164900000062 ], [ -119.410344597999938, 50.046814688000048 ], [ -119.409929223999953, 50.046120070000057 ], [ -119.408185228999912, 50.043203235000092 ] ], [ [ -119.422684286999953, 50.040068571000056 ], [ -119.422778579999914, 50.039416888000034 ], [ -119.421119624999903, 50.039317329000113 ], [ -119.421025308999901, 50.039969011000075 ], [ -119.422684286999953, 50.040068571000056 ] ], [ [ -119.407763833999951, 50.036922576000087 ], [ -119.4077908, 50.036736620000084 ], [ -119.407442160999921, 50.036715650000147 ], [ -119.407415192999935, 50.036901606000058 ], [ -119.407763833999951, 50.036922576000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141282001", "BldgCostT": "93015001", "sL_LossRatio": "0.998559325370549", "sL_AssetLoss": "11175.32", "sL_BldgLoss": "11159.22", "sL_StrLoss": "11153.4", "sL_NStrLoss": "5.82", "sL_ContLoss": "16.1", "geom_point": "0101000020E6100000D463A6DDBDDA5DC09FC91F8883064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.4123948299999, 50.058665487000063 ], [ -119.412226534999959, 50.058411173000138 ], [ -119.41165122299995, 50.057541773000025 ], [ -119.411472104999973, 50.057271080000085 ], [ -119.411398954999967, 50.057075190000042 ], [ -119.411342771999927, 50.056924740000106 ], [ -119.411333252999924, 50.056778497000046 ], [ -119.411286714999932, 50.056063622000067 ], [ -119.411291445999936, 50.055944845000056 ], [ -119.411322841999933, 50.055156599000028 ], [ -119.411481767999973, 50.055158162000055 ], [ -119.413535700999915, 50.055178500000075 ], [ -119.413855215999945, 50.055165496000043 ], [ -119.414046396999936, 50.05515770800011 ], [ -119.414016502999942, 50.053428708000133 ], [ -119.41402516499997, 50.050022300000109 ], [ -119.414026409000016, 50.049537798000053 ], [ -119.41403490099999, 50.048269800000064 ], [ -119.414055479999959, 50.047218223000066 ], [ -119.41398927899999, 50.047016526000043 ], [ -119.413884796999923, 50.046915437000088 ], [ -119.41292481, 50.04597291000006 ], [ -119.412502633999964, 50.045450954000088 ], [ -119.412281072999974, 50.044841739000042 ], [ -119.412380097999943, 50.0434617330001 ], [ -119.412572486999963, 50.043459765000115 ], [ -119.412595916999948, 50.043489268000023 ], [ -119.413184300999959, 50.044230579000065 ], [ -119.413349560999933, 50.0443446210001 ], [ -119.413680169999907, 50.044572765000034 ], [ -119.413957904, 50.044572288000069 ], [ -119.413986754999911, 50.0436666250001 ], [ -119.413995424999911, 50.043365389000066 ], [ -119.414012867999972, 50.042760784000052 ], [ -119.414045433999931, 50.04266162100005 ], [ -119.414197574999946, 50.04260844900007 ], [ -119.415421005, 50.042632290000022 ], [ -119.416129986, 50.043451041 ], [ -119.41666311199999, 50.044066690000143 ], [ -119.41688149399999, 50.044427404000025 ], [ -119.420470383999969, 50.044436930000082 ], [ -119.420917314999912, 50.044438093000039 ], [ -119.421475909999984, 50.044439551000046 ], [ -119.421952292999961, 50.044440802000082 ], [ -119.425630577999982, 50.044450393000055 ], [ -119.425648109999912, 50.045479731000064 ], [ -119.42565419899995, 50.045838682000095 ], [ -119.425590980999971, 50.046110309000035 ], [ -119.425576820999979, 50.047297980000081 ], [ -119.42557369299999, 50.047558298000055 ], [ -119.42560895599999, 50.048088449000019 ], [ -119.425628710999931, 50.048384858000141 ], [ -119.42564881, 50.0486869060001 ], [ -119.425626547999968, 50.050130195000072 ], [ -119.425181786999943, 50.0501215970001 ], [ -119.42506962, 50.050112330000054 ], [ -119.424850853999914, 50.0500942950001 ], [ -119.422687884999959, 50.049915916000046 ], [ -119.422331216999964, 50.049886497000067 ], [ -119.421850118999956, 50.049867595000137 ], [ -119.421658821999955, 50.04989817200007 ], [ -119.42158737499993, 50.049909590000063 ], [ -119.421427394999924, 50.049956183000063 ], [ -119.420764594999952, 50.050149110000127 ], [ -119.420016914999948, 50.050297894000082 ], [ -119.419157489999975, 50.050468894000076 ], [ -119.419519683999965, 50.051560565000059 ], [ -119.419619300999955, 50.051932346000108 ], [ -119.419688091999944, 50.05218914400011 ], [ -119.419804794999962, 50.05331543000004 ], [ -119.419820931999951, 50.053471272000081 ], [ -119.419857135999933, 50.053820626000089 ], [ -119.419996345999934, 50.05516457 ], [ -119.419996681, 50.055330547000011 ], [ -119.419997788999964, 50.055900498 ], [ -119.419977640999946, 50.056053195000104 ], [ -119.419925274999983, 50.056449611000133 ], [ -119.41975719299991, 50.057081024000091 ], [ -119.419742832999972, 50.057134880000085 ], [ -119.419728441999951, 50.057189003000069 ], [ -119.41848614499996, 50.060226489000101 ], [ -119.418447159999957, 50.060321830000127 ], [ -119.418314613999925, 50.060646107000046 ], [ -119.418037119999966, 50.060643762000126 ], [ -119.417579114999953, 50.06063989000009 ], [ -119.416662569, 50.060508137000063 ], [ -119.416594508999935, 50.060485891000084 ], [ -119.416128894999986, 50.060333720000095 ], [ -119.415681552999956, 50.060187501000101 ], [ -119.415403689999906, 50.060096698000059 ], [ -119.413610651999946, 50.059422011 ], [ -119.412938584999949, 50.05912342000007 ], [ -119.4123948299999, 50.058665487000063 ] ], [ [ -119.416138621999977, 50.058838824000063 ], [ -119.416229869999952, 50.058209090000034 ], [ -119.41455339599996, 50.058108424000089 ], [ -119.414462126000032, 50.058738155000064 ], [ -119.416138621999977, 50.058838824000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184373667", "BldgCostT": "124376667", "sL_LossRatio": "0.998061877990639", "sL_AssetLoss": "14653.360244", "sL_BldgLoss": "14624.960244", "sL_StrLoss": "14614.700244", "sL_NStrLoss": "10.26", "sL_ContLoss": "28.4", "geom_point": "0101000020E61000009CF5FFFDABDB5DC03FB1B1BF2A074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.434437027999934, 50.062694615000062 ], [ -119.434513020999958, 50.062168738000018 ], [ -119.432323698999966, 50.062037652000079 ], [ -119.432381295999946, 50.061639203000027 ], [ -119.429541081999986, 50.061469077000076 ], [ -119.429519038999914, 50.061621502000087 ], [ -119.429340176999915, 50.061593477000017 ], [ -119.429074668999988, 50.06150896600009 ], [ -119.428224229999927, 50.061114007000072 ], [ -119.427849255999945, 50.061020212000102 ], [ -119.426907819999911, 50.060870010000095 ], [ -119.426498792999979, 50.060804736000129 ], [ -119.425508358999949, 50.060761011000146 ], [ -119.423981633, 50.060693555000078 ], [ -119.420449881999943, 50.060663196000078 ], [ -119.41918728399996, 50.060652308000037 ], [ -119.418868173999954, 50.060649542000142 ], [ -119.418573715999969, 50.06064773100006 ], [ -119.418314613999925, 50.060646107000046 ], [ -119.418447159999957, 50.060321830000127 ], [ -119.41848614499996, 50.060226489000101 ], [ -119.419728441999951, 50.057189003000069 ], [ -119.419742832999972, 50.057134880000085 ], [ -119.41975719299991, 50.057081024000091 ], [ -119.419925274999983, 50.056449611000133 ], [ -119.419977640999946, 50.056053195000104 ], [ -119.419997788999964, 50.055900498 ], [ -119.419996681, 50.055330547000011 ], [ -119.419996345999934, 50.05516457 ], [ -119.419857135999933, 50.053820626000089 ], [ -119.419820931999951, 50.053471272000081 ], [ -119.419804794999962, 50.05331543000004 ], [ -119.419688091999944, 50.05218914400011 ], [ -119.419619300999955, 50.051932346000108 ], [ -119.419519683999965, 50.051560565000059 ], [ -119.419157489999975, 50.050468894000076 ], [ -119.420016914999948, 50.050297894000082 ], [ -119.420764594999952, 50.050149110000127 ], [ -119.421427394999924, 50.049956183000063 ], [ -119.42158737499993, 50.049909590000063 ], [ -119.421658821999955, 50.04989817200007 ], [ -119.421850118999956, 50.049867595000137 ], [ -119.422331216999964, 50.049886497000067 ], [ -119.422687884999959, 50.049915916000046 ], [ -119.424850853999914, 50.0500942950001 ], [ -119.42506962, 50.050112330000054 ], [ -119.425181786999943, 50.0501215970001 ], [ -119.425626547999968, 50.050130195000072 ], [ -119.425880207999924, 50.050140903000049 ], [ -119.426152229999957, 50.05022851400004 ], [ -119.426969855999985, 50.050800309000074 ], [ -119.426989312999964, 50.050807981000069 ], [ -119.427367920999956, 50.050956898000116 ], [ -119.427767393999886, 50.051040327000095 ], [ -119.428249310999931, 50.051140964000098 ], [ -119.429114440999925, 50.05132160000003 ], [ -119.429969880999934, 50.051632018000106 ], [ -119.430197478999943, 50.051668213000056 ], [ -119.430437059999917, 50.051659978000089 ], [ -119.431303783, 50.051436545000094 ], [ -119.434747638999966, 50.051225702000046 ], [ -119.435059080999949, 50.051221957000067 ], [ -119.43542615199999, 50.051217576000077 ], [ -119.435571481999901, 50.051243124000059 ], [ -119.435628568999931, 50.051253165000048 ], [ -119.435979753999959, 50.051462885000099 ], [ -119.435995762999966, 50.051466555000061 ], [ -119.436118161999943, 50.05149464300009 ], [ -119.436261832999961, 50.051480674000068 ], [ -119.43707057599994, 50.050832982000081 ], [ -119.438230344999951, 50.049395516000118 ], [ -119.438662184999913, 50.048987994000058 ], [ -119.439248927999955, 50.048464027000101 ], [ -119.439410763999959, 50.048319517000074 ], [ -119.439656213999967, 50.048212319000065 ], [ -119.439920618999977, 50.048226349000096 ], [ -119.44007493099997, 50.048323151000027 ], [ -119.440176147, 50.048496249000053 ], [ -119.44027247599999, 50.049217969000019 ], [ -119.440277117999955, 50.049768979000042 ], [ -119.440104417999976, 50.050669293000041 ], [ -119.440090127999923, 50.05074371400012 ], [ -119.44009876299998, 50.051130963000091 ], [ -119.440102323999923, 50.051290686000087 ], [ -119.440363905999945, 50.053221503000017 ], [ -119.440384111999919, 50.05337055500015 ], [ -119.440410747999962, 50.054157646000057 ], [ -119.440387281999961, 50.054465922000112 ], [ -119.440135082999959, 50.054978992000024 ], [ -119.440168661999962, 50.055013486000107 ], [ -119.440202278999948, 50.055048026000058 ], [ -119.440356071999986, 50.055070766000071 ], [ -119.440568307999939, 50.055038321000012 ], [ -119.44083956799993, 50.054937191000114 ], [ -119.441273527999954, 50.054719367000118 ], [ -119.441305462999978, 50.05469717700003 ], [ -119.44147309499999, 50.054580776000094 ], [ -119.441701040999973, 50.054422474000056 ], [ -119.442465634999962, 50.053891520000036 ], [ -119.442656064999952, 50.053759256000056 ], [ -119.442804754999912, 50.053632725000078 ], [ -119.443374712999969, 50.053152210000057 ], [ -119.443683508999982, 50.052985629000062 ], [ -119.445105593999969, 50.052479213000012 ], [ -119.445295171999959, 50.052412016000076 ], [ -119.445584985, 50.052309342000079 ], [ -119.445927403000013, 50.052187999000097 ], [ -119.446295194999948, 50.051990604000089 ], [ -119.446456204999933, 50.051769083000124 ], [ -119.446607308999887, 50.051362783000052 ], [ -119.447305799999981, 50.050642507000106 ], [ -119.447366212999952, 50.050252499000074 ], [ -119.447419088999965, 50.050206896000091 ], [ -119.447633884999959, 50.050146610000105 ], [ -119.448041712999938, 50.050207099000033 ], [ -119.448096607999972, 50.050234952000032 ], [ -119.448404999, 50.050391301000047 ], [ -119.448565412999955, 50.050415090000072 ], [ -119.448669909999978, 50.050430599000045 ], [ -119.448770652999926, 50.050396754000111 ], [ -119.448886612999956, 50.050357804000079 ], [ -119.449189204999982, 50.05005811200008 ], [ -119.448998094999965, 50.050391494000088 ], [ -119.448845228999943, 50.050580186000076 ], [ -119.448220191999937, 50.051351704000048 ], [ -119.448172221000021, 50.051468938000028 ], [ -119.447982095999961, 50.051933399000035 ], [ -119.447954957999912, 50.052270551000042 ], [ -119.447941295999954, 50.052440106000113 ], [ -119.447507920999897, 50.054938405000044 ], [ -119.447501096999957, 50.054977895000064 ], [ -119.447279177999945, 50.055257930000067 ], [ -119.446889008999918, 50.055750302000021 ], [ -119.446852066999938, 50.055780384000123 ], [ -119.446729069999932, 50.05588065000012 ], [ -119.446312102, 50.056220498000066 ], [ -119.446048755999954, 50.056481613000088 ], [ -119.445886018999943, 50.056642942000053 ], [ -119.445878389999933, 50.056650504000103 ], [ -119.445698192999942, 50.056956600000035 ], [ -119.445671029999914, 50.057072717000082 ], [ -119.445643194999931, 50.057191703000079 ], [ -119.445643894999947, 50.057449992000024 ], [ -119.445522602999944, 50.057833592000101 ], [ -119.445455909999936, 50.057901185000027 ], [ -119.445424116999959, 50.057933396000081 ], [ -119.44514688799994, 50.058055898000063 ], [ -119.44443462699995, 50.05809429300006 ], [ -119.444088367999925, 50.058112947000083 ], [ -119.443948218999978, 50.058120501000126 ], [ -119.443541790999987, 50.058244303000052 ], [ -119.443395692, 50.058401718000049 ], [ -119.443182995999976, 50.058903602000036 ], [ -119.443037710999974, 50.059084501000086 ], [ -119.442554735999948, 50.05941489 ], [ -119.442392314999921, 50.05952598400004 ], [ -119.441851800999984, 50.059895707000074 ], [ -119.441661112999952, 50.060119006000043 ], [ -119.441510857, 50.060365323000042 ], [ -119.441481795999948, 50.060412945000074 ], [ -119.441339612999954, 50.060645999000087 ], [ -119.440746481999952, 50.061304800000059 ], [ -119.440176497999943, 50.062318884000028 ], [ -119.439950387999943, 50.062553668000163 ], [ -119.439853949999986, 50.062595874000081 ], [ -119.439641982999888, 50.062688671000103 ], [ -119.438293075999979, 50.062811171000106 ], [ -119.437743790999932, 50.062846005000061 ], [ -119.436962409999964, 50.062866066000112 ], [ -119.435728695999941, 50.062980835000097 ], [ -119.435692688999936, 50.062984174000078 ], [ -119.435364249999964, 50.062956413000045 ], [ -119.434437027999934, 50.062694615000062 ] ], [ [ -119.423047229999924, 50.06056386900012 ], [ -119.423229660999965, 50.059303545000034 ], [ -119.421695226999987, 50.059211509000114 ], [ -119.421577698999968, 50.060023260000101 ], [ -119.421669208999958, 50.060028750000114 ], [ -119.421604262999921, 50.060477320000132 ], [ -119.423047229999924, 50.06056386900012 ] ], [ [ -119.440388937999955, 50.058806547000074 ], [ -119.440684774999966, 50.056757215000076 ], [ -119.440188357999929, 50.056727520000081 ], [ -119.440099159999946, 50.057345400000024 ], [ -119.437865196999923, 50.057211739000095 ], [ -119.437705400999945, 50.058318218000082 ], [ -119.438044212999969, 50.058338493000093 ], [ -119.438038344999939, 50.058379124000105 ], [ -119.438463801999944, 50.058404582000037 ], [ -119.438422742999961, 50.058688917000048 ], [ -119.440388937999955, 50.058806547000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "166", "sL_BldgLoss": "166", "sL_StrLoss": "166", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D75B98BF21DC5DC0920A00E185024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439103080999971, 50.02094242700008 ], [ -119.439137785999918, 50.020701862000102 ], [ -119.439070394999973, 50.020697826000031 ], [ -119.439136350999931, 50.020240638000104 ], [ -119.439020925999941, 50.020233726000129 ], [ -119.439064088999956, 50.01993453000005 ], [ -119.438808438999928, 50.019919221000059 ], [ -119.438929561999956, 50.019079631000061 ], [ -119.43841328299996, 50.019048713000068 ], [ -119.438628504999912, 50.017556911000085 ], [ -119.439600909999967, 50.018897044000028 ], [ -119.440075374999978, 50.019348 ], [ -119.440844661999975, 50.020398081000081 ], [ -119.440894629999917, 50.020586169000076 ], [ -119.440823592999919, 50.02079679400007 ], [ -119.440559749999977, 50.021029644000052 ], [ -119.439103080999971, 50.02094242700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "345452916", "BldgCostT": "226791666", "sL_LossRatio": "0.998910934372292", "sL_AssetLoss": "26077.4", "sL_BldgLoss": "26049", "sL_StrLoss": "26038.7", "sL_NStrLoss": "10.3", "sL_ContLoss": "28.4", "geom_point": "0101000020E61000009D1BDB84DEDB5DC0EDC283243B054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44009876299998, 50.051130963000091 ], [ -119.440090127999923, 50.05074371400012 ], [ -119.440104417999976, 50.050669293000041 ], [ -119.440277117999955, 50.049768979000042 ], [ -119.44027247599999, 50.049217969000019 ], [ -119.440176147, 50.048496249000053 ], [ -119.44007493099997, 50.048323151000027 ], [ -119.439920618999977, 50.048226349000096 ], [ -119.439656213999967, 50.048212319000065 ], [ -119.439410763999959, 50.048319517000074 ], [ -119.439248927999955, 50.048464027000101 ], [ -119.438662184999913, 50.048987994000058 ], [ -119.438230344999951, 50.049395516000118 ], [ -119.43707057599994, 50.050832982000081 ], [ -119.436261832999961, 50.051480674000068 ], [ -119.436118161999943, 50.05149464300009 ], [ -119.435995762999966, 50.051466555000061 ], [ -119.435979753999959, 50.051462885000099 ], [ -119.435628568999931, 50.051253165000048 ], [ -119.435571481999901, 50.051243124000059 ], [ -119.43542615199999, 50.051217576000077 ], [ -119.435059080999949, 50.051221957000067 ], [ -119.434747638999966, 50.051225702000046 ], [ -119.431303783, 50.051436545000094 ], [ -119.430437059999917, 50.051659978000089 ], [ -119.430197478999943, 50.051668213000056 ], [ -119.429969880999934, 50.051632018000106 ], [ -119.429114440999925, 50.05132160000003 ], [ -119.428249310999931, 50.051140964000098 ], [ -119.427767393999886, 50.051040327000095 ], [ -119.427367920999956, 50.050956898000116 ], [ -119.426989312999964, 50.050807981000069 ], [ -119.426969855999985, 50.050800309000074 ], [ -119.426152229999957, 50.05022851400004 ], [ -119.425880207999924, 50.050140903000049 ], [ -119.425626547999968, 50.050130195000072 ], [ -119.42564881, 50.0486869060001 ], [ -119.425628710999931, 50.048384858000141 ], [ -119.42560895599999, 50.048088449000019 ], [ -119.42557369299999, 50.047558298000055 ], [ -119.425576820999979, 50.047297980000081 ], [ -119.425590980999971, 50.046110309000035 ], [ -119.42565419899995, 50.045838682000095 ], [ -119.425648109999912, 50.045479731000064 ], [ -119.425630577999982, 50.044450393000055 ], [ -119.42562268599994, 50.043977760000068 ], [ -119.425621587999942, 50.043911799000071 ], [ -119.42563116, 50.04365192000008 ], [ -119.425642538999966, 50.04334087200003 ], [ -119.425667670999928, 50.042655815000025 ], [ -119.425693092999893, 50.041963116000069 ], [ -119.425693480999939, 50.041853895000095 ], [ -119.425696969999947, 50.040864280000093 ], [ -119.425697975999981, 50.040576754000043 ], [ -119.425703838999951, 50.038917122000029 ], [ -119.427801361999983, 50.039042909000045 ], [ -119.42782633499999, 50.038870173000099 ], [ -119.425704454999959, 50.038742925000072 ], [ -119.425711087999929, 50.036865605000038 ], [ -119.425725775, 50.035503423000158 ], [ -119.42573432199994, 50.034711521000069 ], [ -119.425739015999937, 50.034277801000052 ], [ -119.425751491999975, 50.033289796000091 ], [ -119.42773450599999, 50.033294106000042 ], [ -119.427968386999979, 50.033227791000066 ], [ -119.42813228599999, 50.03309308800003 ], [ -119.428207402999931, 50.032912585000112 ], [ -119.428205090999953, 50.032812211000078 ], [ -119.428099885999984, 50.032495676000032 ], [ -119.427921807999937, 50.031960006000112 ], [ -119.427793209999919, 50.031123509000111 ], [ -119.42736675899998, 50.030967181000101 ], [ -119.427089371999926, 50.03089195400004 ], [ -119.426837856999938, 50.030780463 ], [ -119.426612671999948, 50.030641694000067 ], [ -119.426273057999978, 50.030499036000059 ], [ -119.425938574999961, 50.030426532000021 ], [ -119.425709497, 50.030437972000165 ], [ -119.42567647499996, 50.030396101000065 ], [ -119.425464210999934, 50.030332806000054 ], [ -119.42425770399997, 50.03025230500004 ], [ -119.423556198, 50.030236083000069 ], [ -119.422912283999963, 50.030221192000063 ], [ -119.422625390999912, 50.03014080700008 ], [ -119.42190823599999, 50.029689433000023 ], [ -119.421860995999907, 50.029659698000081 ], [ -119.421829740999939, 50.029634349000034 ], [ -119.421249994999954, 50.029164309000052 ], [ -119.420246878999976, 50.027766003000089 ], [ -119.419835297999938, 50.02712279400005 ], [ -119.419759421, 50.026909168000067 ], [ -119.41959828899995, 50.026455703000117 ], [ -119.419533926999975, 50.026208108000063 ], [ -119.419492877999957, 50.026050303000019 ], [ -119.419403684999963, 50.025430430000021 ], [ -119.419389516999956, 50.025331693000091 ], [ -119.41938993299999, 50.025317221000094 ], [ -119.41939291199995, 50.025217553000054 ], [ -119.419442608999972, 50.023560701000093 ], [ -119.419527969999962, 50.023047496000032 ], [ -119.419561701999939, 50.022945396000082 ], [ -119.419573238999973, 50.022910481000039 ], [ -119.41968280399999, 50.022578309000096 ], [ -119.419866981999974, 50.021662809000098 ], [ -119.420136925999984, 50.020321202000112 ], [ -119.420065287999975, 50.020225699000036 ], [ -119.420603095, 50.019659577000049 ], [ -119.42102513699993, 50.018600006000092 ], [ -119.421228556999949, 50.018243889000139 ], [ -119.421511229999979, 50.018260863000144 ], [ -119.421450949999937, 50.018677607000043 ], [ -119.421596755999957, 50.018686362000032 ], [ -119.42125041499996, 50.021080647000048 ], [ -119.421407031999934, 50.021077378000037 ], [ -119.421420590999929, 50.021346957000048 ], [ -119.421839003999963, 50.021338220000111 ], [ -119.421879684999951, 50.022146959000082 ], [ -119.422298105999957, 50.022138220000059 ], [ -119.422311671, 50.022407799000042 ], [ -119.422730092999984, 50.022399060000041 ], [ -119.422817821999971, 50.024142298000065 ], [ -119.424240730999941, 50.024227701000015 ], [ -119.423990878999945, 50.025955450000055 ], [ -119.424999623999966, 50.02601598300005 ], [ -119.424719261999925, 50.027954855000047 ], [ -119.425944422999976, 50.028028361000096 ], [ -119.425848925999986, 50.028688860000102 ], [ -119.4263737199999, 50.028720342000099 ], [ -119.42638024599999, 50.028675195000119 ], [ -119.431938875999933, 50.029008498000053 ], [ -119.431701431, 50.030652205000088 ], [ -119.431716492999939, 50.030653108000088 ], [ -119.431676081999981, 50.030932841000073 ], [ -119.431869005999886, 50.030944404000088 ], [ -119.431790086999953, 50.031490711000089 ], [ -119.43182004599997, 50.031492507000046 ], [ -119.431717331999963, 50.032203501000012 ], [ -119.432711564999948, 50.032263084000135 ], [ -119.432665105999973, 50.032584719000113 ], [ -119.43256353699995, 50.033287868000102 ], [ -119.434469077999964, 50.033402038000055 ], [ -119.434251511999989, 50.034908578000064 ], [ -119.437627279, 50.035110754000101 ], [ -119.437565309999954, 50.035540062000116 ], [ -119.43763706299994, 50.035544358000081 ], [ -119.437625203, 50.035310237000132 ], [ -119.438043730999979, 50.035301442000026 ], [ -119.437866195999959, 50.031796959000062 ], [ -119.438405925999945, 50.031785615000089 ], [ -119.43995868799999, 50.031752960000055 ], [ -119.439972354999924, 50.03202253500011 ], [ -119.441227854999966, 50.031996118000066 ], [ -119.441268878999892, 50.032804843000058 ], [ -119.441687386999973, 50.032796034000114 ], [ -119.441714740999913, 50.033335183000055 ], [ -119.442133250999973, 50.033326373000072 ], [ -119.442242698999948, 50.035482969000064 ], [ -119.44182416699995, 50.035491781000111 ], [ -119.44187639, 50.036520882000033 ], [ -119.442134613999912, 50.036536332000082 ], [ -119.442080183999934, 50.036913657000134 ], [ -119.443073909999967, 50.036973108000083 ], [ -119.443036290999885, 50.037233924000063 ], [ -119.4444733, 50.037319880000069 ], [ -119.444896236999938, 50.034386735000055 ], [ -119.446145918999932, 50.034461470000068 ], [ -119.446281533, 50.034469579000103 ], [ -119.446348222999944, 50.034973081000068 ], [ -119.44638568, 50.035067848000047 ], [ -119.445716616999931, 50.035330651000073 ], [ -119.446109389999961, 50.035755856000051 ], [ -119.446861142999964, 50.036401120000058 ], [ -119.447167805999953, 50.036643596000047 ], [ -119.447667866999936, 50.037444598000057 ], [ -119.447887801999954, 50.038011806000085 ], [ -119.447936297999917, 50.038184586000099 ], [ -119.448265255999956, 50.038939888000122 ], [ -119.448366742999909, 50.039113889000063 ], [ -119.448498129999948, 50.03935476200008 ], [ -119.449097302, 50.040840792000104 ], [ -119.449292817999961, 50.041374175000065 ], [ -119.449524996999983, 50.042007516000069 ], [ -119.449564649999971, 50.042152757000117 ], [ -119.449687051999973, 50.042601069000021 ], [ -119.449811321999988, 50.043056271000118 ], [ -119.449847437999892, 50.043188615000062 ], [ -119.449867307999938, 50.043261294000082 ], [ -119.4492661099999, 50.043463703000107 ], [ -119.449401886999951, 50.044515496000045 ], [ -119.448597089999978, 50.044629697000111 ], [ -119.448526605999987, 50.044639686000096 ], [ -119.44848171699995, 50.044747874000052 ], [ -119.44799485399993, 50.045921151000158 ], [ -119.44989300099995, 50.045826884000078 ], [ -119.449985089, 50.046365096000059 ], [ -119.450035288999942, 50.047057892000105 ], [ -119.450003698999978, 50.04735064500008 ], [ -119.449964194999922, 50.047716295000114 ], [ -119.449989204999966, 50.047980604000053 ], [ -119.449411788999939, 50.048776705000094 ], [ -119.449398276999943, 50.04883089300008 ], [ -119.449677186999949, 50.049104898000081 ], [ -119.449251223999966, 50.049478634000053 ], [ -119.448565412999955, 50.050415090000072 ], [ -119.448404999, 50.050391301000047 ], [ -119.448096607999972, 50.050234952000032 ], [ -119.448041712999938, 50.050207099000033 ], [ -119.447633884999959, 50.050146610000105 ], [ -119.447419088999965, 50.050206896000091 ], [ -119.447366212999952, 50.050252499000074 ], [ -119.447305799999981, 50.050642507000106 ], [ -119.446607308999887, 50.051362783000052 ], [ -119.446456204999933, 50.051769083000124 ], [ -119.446295194999948, 50.051990604000089 ], [ -119.445927403000013, 50.052187999000097 ], [ -119.445584985, 50.052309342000079 ], [ -119.445295171999959, 50.052412016000076 ], [ -119.445105593999969, 50.052479213000012 ], [ -119.443683508999982, 50.052985629000062 ], [ -119.443374712999969, 50.053152210000057 ], [ -119.442804754999912, 50.053632725000078 ], [ -119.442656064999952, 50.053759256000056 ], [ -119.442465634999962, 50.053891520000036 ], [ -119.441701040999973, 50.054422474000056 ], [ -119.44147309499999, 50.054580776000094 ], [ -119.441305462999978, 50.05469717700003 ], [ -119.441273527999954, 50.054719367000118 ], [ -119.44083956799993, 50.054937191000114 ], [ -119.440568307999939, 50.055038321000012 ], [ -119.440356071999986, 50.055070766000071 ], [ -119.440202278999948, 50.055048026000058 ], [ -119.440168661999962, 50.055013486000107 ], [ -119.440135082999959, 50.054978992000024 ], [ -119.440387281999961, 50.054465922000112 ], [ -119.440410747999962, 50.054157646000057 ], [ -119.440384111999919, 50.05337055500015 ], [ -119.440363905999945, 50.053221503000017 ], [ -119.440102323999923, 50.051290686000087 ], [ -119.44009876299998, 50.051130963000091 ] ], [ [ -119.44113065399992, 50.050870607000014 ], [ -119.441230665999967, 50.050177615000095 ], [ -119.440892243999883, 50.050157370000051 ], [ -119.440908369999988, 50.050475101000103 ], [ -119.440971784999945, 50.050478895000019 ], [ -119.440925010999976, 50.050802983000061 ], [ -119.440927825999921, 50.050858473000062 ], [ -119.44113065399992, 50.050870607000014 ] ], [ [ -119.440195345999953, 50.036420286000094 ], [ -119.440150045999957, 50.035527012000095 ], [ -119.43931298499993, 50.03554461800011 ], [ -119.439354824999924, 50.036369977000049 ], [ -119.440195345999953, 50.036420286000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12924999", "BldgCostT": "8649999", "sL_LossRatio": "1", "sL_AssetLoss": "1517.4", "sL_BldgLoss": "1517.4", "sL_StrLoss": "1517.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007AF65CA666DC5DC0C11251446D034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442270875999967, 50.030202695000121 ], [ -119.442436013999924, 50.029057677000011 ], [ -119.442381256999937, 50.029054400000042 ], [ -119.442536721999929, 50.027976411000104 ], [ -119.442158822999957, 50.027953797000102 ], [ -119.442211462999978, 50.027588800000096 ], [ -119.442122844999972, 50.027583497000087 ], [ -119.442168538999951, 50.027266666000045 ], [ -119.442087165999979, 50.027261796000083 ], [ -119.442160921999943, 50.026750382000067 ], [ -119.441813490999948, 50.026729589000041 ], [ -119.441875083999932, 50.026302519000055 ], [ -119.441516910999951, 50.026281083000121 ], [ -119.442033304999896, 50.022700438000115 ], [ -119.44324943299992, 50.022773219000058 ], [ -119.443371824999929, 50.022941986000049 ], [ -119.443673152, 50.023233614000112 ], [ -119.443879927999944, 50.023386958000039 ], [ -119.443932698999973, 50.023426089000068 ], [ -119.444060723999939, 50.023558651000045 ], [ -119.444140014999931, 50.023640763000074 ], [ -119.444512994999926, 50.024222849000033 ], [ -119.444672645999972, 50.02436965000004 ], [ -119.444749653999935, 50.024422863000098 ], [ -119.445364730000037, 50.024848039000084 ], [ -119.445617542999912, 50.025058182000095 ], [ -119.445747673999918, 50.02527897200013 ], [ -119.445752684999903, 50.025287480000074 ], [ -119.445790765999973, 50.025519075000041 ], [ -119.4457933, 50.0274372330001 ], [ -119.44579409499994, 50.028004291000094 ], [ -119.445795548999953, 50.029126684000055 ], [ -119.445795758999949, 50.029267224000073 ], [ -119.44573450099999, 50.029672575000035 ], [ -119.445735706999955, 50.03034823500014 ], [ -119.445743948000015, 50.030410464000106 ], [ -119.445735815999939, 50.030409978000129 ], [ -119.442270875999967, 50.030202695000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8627501", "BldgCostT": "5950001", "sL_LossRatio": "1", "sL_AssetLoss": "814.5", "sL_BldgLoss": "814.5", "sL_StrLoss": "814.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0025CD2C9DB5DC0F91C501D48024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433366304999979, 50.015970387000053 ], [ -119.437230234999973, 50.016201924 ], [ -119.436713535999928, 50.019782576000125 ], [ -119.435584905000013, 50.019714960000044 ], [ -119.431155996999934, 50.019449511000055 ], [ -119.431673127999929, 50.015868883000067 ], [ -119.433366304999979, 50.015970387000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "149.6", "sL_BldgLoss": "149.6", "sL_StrLoss": "149.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F458390C3DB5DC0FD37AB15D8014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.43576490199996, 50.015109608000017 ], [ -119.435755469999933, 50.014923134000128 ], [ -119.432693190999956, 50.014739598000112 ], [ -119.430710302999927, 50.014620709000091 ], [ -119.430803318999935, 50.013976681000031 ], [ -119.430817248999972, 50.013996106000043 ], [ -119.430956012, 50.014054087 ], [ -119.431132246999965, 50.01404660300004 ], [ -119.431420387999978, 50.013923928000111 ], [ -119.431602002, 50.013898700000041 ], [ -119.431772009999932, 50.013934182000106 ], [ -119.43249265, 50.014358431000069 ], [ -119.432997441999973, 50.014666767000094 ], [ -119.433173001999961, 50.014673687000091 ], [ -119.43335298399991, 50.014640221000057 ], [ -119.433721007999935, 50.014459140000014 ], [ -119.434022927999962, 50.014066409000044 ], [ -119.434189968999974, 50.013782966000079 ], [ -119.434349856999916, 50.013675168000077 ], [ -119.434614746999912, 50.013635984000061 ], [ -119.434878838999921, 50.013679800000034 ], [ -119.435251504999954, 50.013864668000103 ], [ -119.435854620999962, 50.014239394000121 ], [ -119.436242474, 50.014853110000018 ], [ -119.436351378999987, 50.015097288000085 ], [ -119.43576490199996, 50.015109608000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "283", "sL_BldgLoss": "283", "sL_StrLoss": "283", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D91AD7E039DB5DC0B927DDD0F3014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.426531658999963, 50.014378317000059 ], [ -119.427482470999934, 50.014197931000155 ], [ -119.427219821999984, 50.016015504000045 ], [ -119.421835276, 50.015692313000059 ], [ -119.423518936999983, 50.015103094000047 ], [ -119.424545051999971, 50.014743949000035 ], [ -119.426531658999963, 50.014378317000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51981417", "BldgCostT": "34376667", "sL_LossRatio": "0.997246179328802", "sL_AssetLoss": "4902.28", "sL_BldgLoss": "4888.78", "sL_StrLoss": "4883.9", "sL_NStrLoss": "4.88", "sL_ContLoss": "13.5", "geom_point": "0101000020E6100000A142C8BBDBDB5DC0E793707C48014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.438217621999954, 50.015342114000063 ], [ -119.438532063999958, 50.013162414000092 ], [ -119.438179484000017, 50.013169828000095 ], [ -119.438220428999969, 50.013978556000069 ], [ -119.437383739999945, 50.013996144000096 ], [ -119.437424672999938, 50.014804873000138 ], [ -119.437006321999903, 50.014813665000077 ], [ -119.437019965, 50.015083242000109 ], [ -119.436351378999987, 50.015097288000085 ], [ -119.436242474, 50.014853110000018 ], [ -119.435854620999962, 50.014239394000121 ], [ -119.435251504999954, 50.013864668000103 ], [ -119.434878838999921, 50.013679800000034 ], [ -119.434614746999912, 50.013635984000061 ], [ -119.434349856999916, 50.013675168000077 ], [ -119.434189968999974, 50.013782966000079 ], [ -119.434022927999962, 50.014066409000044 ], [ -119.433721007999935, 50.014459140000014 ], [ -119.43335298399991, 50.014640221000057 ], [ -119.433173001999961, 50.014673687000091 ], [ -119.432997441999973, 50.014666767000094 ], [ -119.43249265, 50.014358431000069 ], [ -119.431772009999932, 50.013934182000106 ], [ -119.431602002, 50.013898700000041 ], [ -119.431420387999978, 50.013923928000111 ], [ -119.431132246999965, 50.01404660300004 ], [ -119.430956012, 50.014054087 ], [ -119.430817248999972, 50.013996106000043 ], [ -119.430803318999935, 50.013976681000031 ], [ -119.431144447999955, 50.011614579000124 ], [ -119.430664802999985, 50.011585814000142 ], [ -119.430765724999986, 50.010886994000046 ], [ -119.430707750999943, 50.01088351700006 ], [ -119.430877397999907, 50.009708793000073 ], [ -119.430547625999935, 50.009689015000028 ], [ -119.430759069999937, 50.008224845000058 ], [ -119.427623430999986, 50.008036738000101 ], [ -119.427944472999968, 50.005814520000087 ], [ -119.437940120999926, 50.005716139000064 ], [ -119.43804018499992, 50.00571870800006 ], [ -119.4408265499999, 50.005777044000077 ], [ -119.440938287000023, 50.005780333000068 ], [ -119.440647512999945, 50.006043493000092 ], [ -119.440355094999944, 50.006616014000087 ], [ -119.439882498999935, 50.008020306000041 ], [ -119.439927086999944, 50.008631289000071 ], [ -119.440011, 50.008907605000026 ], [ -119.440230296, 50.009119810000115 ], [ -119.440218374999944, 50.009407494000115 ], [ -119.440113216999947, 50.009554191000106 ], [ -119.439637693999927, 50.009824803000079 ], [ -119.439303001999946, 50.010344605000093 ], [ -119.439249990999926, 50.010984107000091 ], [ -119.43947770299998, 50.01161790000009 ], [ -119.439772950999938, 50.011806223000093 ], [ -119.43773764399999, 50.011684314000021 ], [ -119.437716590999955, 50.011830241000084 ], [ -119.438727289999974, 50.011808992000113 ], [ -119.438734151999938, 50.0117614340001 ], [ -119.439803105999928, 50.011825456000061 ], [ -119.440473586999957, 50.012253111000085 ], [ -119.44133647699999, 50.012478096000059 ], [ -119.441499305, 50.012646094000026 ], [ -119.441486698999938, 50.014048994000071 ], [ -119.441131702999925, 50.014749691000063 ], [ -119.44209839299999, 50.015403406000104 ], [ -119.442030565999914, 50.015570431000114 ], [ -119.438217621999954, 50.015342114000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133521084", "BldgCostT": "87248334", "sL_LossRatio": "0.996943526559056", "sL_AssetLoss": "11778.28", "sL_BldgLoss": "11742.28", "sL_StrLoss": "11729.3", "sL_NStrLoss": "12.98", "sL_ContLoss": "36", "geom_point": "0101000020E6100000C3172F0E55DA5DC011C00FFF97014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.406085838999957, 50.020079578000029 ], [ -119.405199889999963, 50.018312457000093 ], [ -119.40407321899994, 50.01670783600008 ], [ -119.403924436999944, 50.016438824000048 ], [ -119.403761374999959, 50.016007863000027 ], [ -119.403756287999954, 50.015994380000087 ], [ -119.403719947999889, 50.015632657000097 ], [ -119.403686334999989, 50.015297904000064 ], [ -119.403639416999951, 50.014831022000045 ], [ -119.403592162999928, 50.014360719000152 ], [ -119.403540113999966, 50.013842305 ], [ -119.40348498199991, 50.013296177000058 ], [ -119.403411562999906, 50.01256898700008 ], [ -119.403291958999915, 50.011384165000102 ], [ -119.403258291999961, 50.011050628000078 ], [ -119.403075623999911, 50.011086142000067 ], [ -119.403007656999932, 50.010382220000061 ], [ -119.402876656999979, 50.009025745000059 ], [ -119.402878296999972, 50.007584721000043 ], [ -119.402880249999967, 50.007155737000105 ], [ -119.402880911999944, 50.007011980000129 ], [ -119.402882460999976, 50.006669892000104 ], [ -119.402886682999963, 50.005739598000027 ], [ -119.402882236999972, 50.005404580000111 ], [ -119.403032154999934, 50.00541193500009 ], [ -119.408831903999939, 50.005754413000027 ], [ -119.419718879999948, 50.005843789000046 ], [ -119.42019072899997, 50.005845122000046 ], [ -119.420171875999941, 50.005975477000135 ], [ -119.422176996999951, 50.006095918000064 ], [ -119.421659231999953, 50.009676548000115 ], [ -119.418248894, 50.009471680000047 ], [ -119.418156605999982, 50.010109505000088 ], [ -119.418023149999968, 50.011031829000089 ], [ -119.417873460999914, 50.011022833000034 ], [ -119.417829658999949, 50.011325532000036 ], [ -119.417598154999951, 50.011311620000122 ], [ -119.417515275999961, 50.011884337000041 ], [ -119.417059377999962, 50.011856941000062 ], [ -119.416804615000032, 50.013617224000072 ], [ -119.416844021999935, 50.013616402000103 ], [ -119.416857551999939, 50.013885984000112 ], [ -119.417275901999957, 50.013877265000126 ], [ -119.417384159999983, 50.016033908000047 ], [ -119.416965791999928, 50.016042628 ], [ -119.41697932199996, 50.016312210000159 ], [ -119.415724207999943, 50.016338358000048 ], [ -119.41576478099995, 50.017147100000024 ], [ -119.416183159999889, 50.017138385000095 ], [ -119.416202128999913, 50.017516406000112 ], [ -119.418247474999987, 50.017639304000106 ], [ -119.420135245999973, 50.017752700000059 ], [ -119.420074212999936, 50.018174565000081 ], [ -119.421228556999949, 50.018243889000139 ], [ -119.42102513699993, 50.018600006000092 ], [ -119.420603095, 50.019659577000049 ], [ -119.420065287999975, 50.020225699000036 ], [ -119.419844793999957, 50.020132108000048 ], [ -119.417544692999982, 50.020117022000072 ], [ -119.41738317600003, 50.020115969000074 ], [ -119.416650110999939, 50.020111142000033 ], [ -119.41538423599998, 50.020102806000111 ], [ -119.41453130799998, 50.020097198000052 ], [ -119.413259641999957, 50.020088258000065 ], [ -119.410956997999932, 50.020071989000037 ], [ -119.409850270999968, 50.020065521000063 ], [ -119.408879022999912, 50.020059824000057 ], [ -119.407477516999947, 50.020050508000118 ], [ -119.406085838999957, 50.020079578000029 ] ], [ [ -119.412174181999958, 50.010063429000063 ], [ -119.412263242000023, 50.009448462000073 ], [ -119.412153563999965, 50.009441865000049 ], [ -119.412064501999922, 50.010056832000011 ], [ -119.412174181999958, 50.010063429000063 ] ], [ [ -119.411334567999958, 50.009263022000077 ], [ -119.411451632999942, 50.008454766000064 ], [ -119.411449465999965, 50.008454636000089 ], [ -119.411332400999981, 50.009262891000077 ], [ -119.411334567999958, 50.009263022000077 ] ], [ [ -119.411103144999942, 50.007817258000074 ], [ -119.411106413999946, 50.007794687000057 ], [ -119.410974954999944, 50.007786778000138 ], [ -119.410990123999952, 50.007682056000107 ], [ -119.408840247999976, 50.00755270300008 ], [ -119.408114524999959, 50.007509028000065 ], [ -119.408096077999929, 50.007636321000049 ], [ -119.408840843999926, 50.007681142000102 ], [ -119.411103144999942, 50.007817258000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9739251", "BldgCostT": "6245001", "sL_LossRatio": "1", "sL_AssetLoss": "793.4", "sL_BldgLoss": "793.4", "sL_StrLoss": "793.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005D8AAD129DB5DC07545DF93BD014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.422624621999958, 50.012128015 ], [ -119.427737221999948, 50.012434878000072 ], [ -119.427482470999934, 50.014197931000155 ], [ -119.426531658999963, 50.014378317000059 ], [ -119.424545051999971, 50.014743949000035 ], [ -119.423518936999983, 50.015103094000047 ], [ -119.421835276, 50.015692313000059 ], [ -119.421662809999958, 50.015681957000062 ], [ -119.421722419999966, 50.015269816000021 ], [ -119.422180644, 50.01210135600008 ], [ -119.422624621999958, 50.012128015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21948250", "BldgCostT": "14665000", "sL_LossRatio": "1", "sL_AssetLoss": "1881.2", "sL_BldgLoss": "1881.2", "sL_StrLoss": "1881.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000479C885D9FDC5DC099413A4475064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.447507920999897, 50.054938405000044 ], [ -119.447941295999954, 50.052440106000113 ], [ -119.447954957999912, 50.052270551000042 ], [ -119.447982095999961, 50.051933399000035 ], [ -119.448172221000021, 50.051468938000028 ], [ -119.448220191999937, 50.051351704000048 ], [ -119.448845228999943, 50.050580186000076 ], [ -119.448998094999965, 50.050391494000088 ], [ -119.449189204999982, 50.05005811200008 ], [ -119.448886612999956, 50.050357804000079 ], [ -119.448770652999926, 50.050396754000111 ], [ -119.448669909999978, 50.050430599000045 ], [ -119.448565412999955, 50.050415090000072 ], [ -119.449251223999966, 50.049478634000053 ], [ -119.449677186999949, 50.049104898000081 ], [ -119.449398276999943, 50.04883089300008 ], [ -119.449411788999939, 50.048776705000094 ], [ -119.449989204999966, 50.047980604000053 ], [ -119.449964194999922, 50.047716295000114 ], [ -119.450003698999978, 50.04735064500008 ], [ -119.450035288999942, 50.047057892000105 ], [ -119.449985089, 50.046365096000059 ], [ -119.44989300099995, 50.045826884000078 ], [ -119.44799485399993, 50.045921151000158 ], [ -119.44848171699995, 50.044747874000052 ], [ -119.448526605999987, 50.044639686000096 ], [ -119.448597089999978, 50.044629697000111 ], [ -119.449401886999951, 50.044515496000045 ], [ -119.4492661099999, 50.043463703000107 ], [ -119.449867307999938, 50.043261294000082 ], [ -119.449847437999892, 50.043188615000062 ], [ -119.449811321999988, 50.043056271000118 ], [ -119.449687051999973, 50.042601069000021 ], [ -119.449564649999971, 50.042152757000117 ], [ -119.449524996999983, 50.042007516000069 ], [ -119.449292817999961, 50.041374175000065 ], [ -119.449097302, 50.040840792000104 ], [ -119.448498129999948, 50.03935476200008 ], [ -119.448366742999909, 50.039113889000063 ], [ -119.448265255999956, 50.038939888000122 ], [ -119.447936297999917, 50.038184586000099 ], [ -119.447887801999954, 50.038011806000085 ], [ -119.447667866999936, 50.037444598000057 ], [ -119.447167805999953, 50.036643596000047 ], [ -119.446861142999964, 50.036401120000058 ], [ -119.446109389999961, 50.035755856000051 ], [ -119.445716616999931, 50.035330651000073 ], [ -119.44638568, 50.035067848000047 ], [ -119.446348222999944, 50.034973081000068 ], [ -119.446281533, 50.034469579000103 ], [ -119.446323784999962, 50.034472106000102 ], [ -119.446369021999942, 50.034600303000119 ], [ -119.446775904999981, 50.035175685000098 ], [ -119.447345797999986, 50.035685607000111 ], [ -119.447817796999971, 50.035909209000089 ], [ -119.448211417999943, 50.036243795000061 ], [ -119.448402689999952, 50.036437506000034 ], [ -119.448578706999925, 50.036864811000015 ], [ -119.448754276999935, 50.038372994000071 ], [ -119.449017891999972, 50.038880092000092 ], [ -119.449416084999953, 50.039303097000065 ], [ -119.449557089999985, 50.039885613000074 ], [ -119.449839478999934, 50.04020319700011 ], [ -119.450048912999989, 50.040747208000042 ], [ -119.45023081099994, 50.041597508000038 ], [ -119.450604218999985, 50.042336595000023 ], [ -119.450931285999943, 50.043571398000097 ], [ -119.451262881999952, 50.044841803000097 ], [ -119.451401892999954, 50.046746012000057 ], [ -119.451327880999884, 50.047502199000107 ], [ -119.451380219999919, 50.047996400000081 ], [ -119.45164029799993, 50.048413706000105 ], [ -119.451573195999941, 50.048765510000074 ], [ -119.451271398999936, 50.049141512000077 ], [ -119.450061103999957, 50.049508900000049 ], [ -119.449661278999912, 50.049867799 ], [ -119.449387912999924, 50.050269499000109 ], [ -119.448769100999982, 50.05103848600001 ], [ -119.448704316999923, 50.051390299000069 ], [ -119.448399001999988, 50.051729307000045 ], [ -119.448341790999962, 50.052224908000014 ], [ -119.448418981, 50.052367292000085 ], [ -119.448257998, 50.053083618000116 ], [ -119.44800851199993, 50.053068711000066 ], [ -119.447967115999973, 50.053355825000068 ], [ -119.448217415999935, 50.053370782000044 ], [ -119.448262391999904, 50.054503589000042 ], [ -119.447986798, 50.056245390000072 ], [ -119.447477378999935, 50.056938998000092 ], [ -119.446868211999984, 50.057320708000113 ], [ -119.446458818999972, 50.057797805000128 ], [ -119.44568909499999, 50.059145089000047 ], [ -119.445067609999938, 50.059823104000031 ], [ -119.444850897999942, 50.060233210000064 ], [ -119.444200311999936, 50.060642007000084 ], [ -119.44376089, 50.061074912000088 ], [ -119.443497198, 50.061655996000042 ], [ -119.443502327999951, 50.061865994000058 ], [ -119.443377527999957, 50.061883884000082 ], [ -119.439853949999986, 50.062595874000081 ], [ -119.439950387999943, 50.062553668000163 ], [ -119.440176497999943, 50.062318884000028 ], [ -119.440746481999952, 50.061304800000059 ], [ -119.441339612999954, 50.060645999000087 ], [ -119.441481795999948, 50.060412945000074 ], [ -119.441510857, 50.060365323000042 ], [ -119.441661112999952, 50.060119006000043 ], [ -119.441851800999984, 50.059895707000074 ], [ -119.442392314999921, 50.05952598400004 ], [ -119.442554735999948, 50.05941489 ], [ -119.443037710999974, 50.059084501000086 ], [ -119.443182995999976, 50.058903602000036 ], [ -119.443395692, 50.058401718000049 ], [ -119.443541790999987, 50.058244303000052 ], [ -119.443948218999978, 50.058120501000126 ], [ -119.444088367999925, 50.058112947000083 ], [ -119.44443462699995, 50.05809429300006 ], [ -119.44514688799994, 50.058055898000063 ], [ -119.445424116999959, 50.057933396000081 ], [ -119.445455909999936, 50.057901185000027 ], [ -119.445522602999944, 50.057833592000101 ], [ -119.445643894999947, 50.057449992000024 ], [ -119.445643194999931, 50.057191703000079 ], [ -119.445671029999914, 50.057072717000082 ], [ -119.445698192999942, 50.056956600000035 ], [ -119.445878389999933, 50.056650504000103 ], [ -119.445886018999943, 50.056642942000053 ], [ -119.446048755999954, 50.056481613000088 ], [ -119.446312102, 50.056220498000066 ], [ -119.446729069999932, 50.05588065000012 ], [ -119.446852066999938, 50.055780384000123 ], [ -119.446889008999918, 50.055750302000021 ], [ -119.447279177999945, 50.055257930000067 ], [ -119.447501096999957, 50.054977895000064 ], [ -119.447507920999897, 50.054938405000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "114.2", "sL_BldgLoss": "114.2", "sL_StrLoss": "114.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A4CA5C07EDC5DC01807768050034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.443679820999989, 50.022798973000064 ], [ -119.444310023999932, 50.022836680000118 ], [ -119.44491770599997, 50.023611096000117 ], [ -119.445240583999919, 50.024504101000097 ], [ -119.445903306999966, 50.025137901000036 ], [ -119.446077697999939, 50.025556590000072 ], [ -119.445873417999934, 50.026488006000065 ], [ -119.446300597999979, 50.02773851000012 ], [ -119.44610310899999, 50.028524604000076 ], [ -119.446148775, 50.029729493000012 ], [ -119.445948091999938, 50.030173901000083 ], [ -119.445954092999941, 50.030423032000101 ], [ -119.445743948000015, 50.030410464000106 ], [ -119.445735706999955, 50.03034823500014 ], [ -119.44573450099999, 50.029672575000035 ], [ -119.445795758999949, 50.029267224000073 ], [ -119.445795548999953, 50.029126684000055 ], [ -119.44579409499994, 50.028004291000094 ], [ -119.4457933, 50.0274372330001 ], [ -119.445790765999973, 50.025519075000041 ], [ -119.445752684999903, 50.025287480000074 ], [ -119.445747673999918, 50.02527897200013 ], [ -119.445617542999912, 50.025058182000095 ], [ -119.445364730000037, 50.024848039000084 ], [ -119.444749653999935, 50.024422863000098 ], [ -119.444672645999972, 50.02436965000004 ], [ -119.444512994999926, 50.024222849000033 ], [ -119.444140014999931, 50.023640763000074 ], [ -119.444060723999939, 50.023558651000045 ], [ -119.443932698999973, 50.023426089000068 ], [ -119.443879927999944, 50.023386958000039 ], [ -119.443673152, 50.023233614000112 ], [ -119.443371824999929, 50.022941986000049 ], [ -119.44324943299992, 50.022773219000058 ], [ -119.443679820999989, 50.022798973000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10947583", "BldgCostT": "7078333", "sL_LossRatio": "1", "sL_AssetLoss": "754.7", "sL_BldgLoss": "754.7", "sL_StrLoss": "754.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF6762F43BDC5DC05F9B2A6B5D024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.43892983899994, 50.015468049000056 ], [ -119.441997549999968, 50.015651731000077 ], [ -119.44145350099997, 50.016991393000055 ], [ -119.441761414, 50.018109393000017 ], [ -119.442274309999974, 50.018854303000083 ], [ -119.443012989999886, 50.019369797000074 ], [ -119.443595496999976, 50.019600504000103 ], [ -119.44414868799997, 50.02004769400007 ], [ -119.444416074999978, 50.020356795000076 ], [ -119.44446381599991, 50.020751302000086 ], [ -119.444452405000021, 50.021048999000129 ], [ -119.444279503999937, 50.021252272000019 ], [ -119.443788554999912, 50.021222896000047 ], [ -119.440834915999915, 50.021046117000083 ], [ -119.440559749999977, 50.021029644000052 ], [ -119.440823592999919, 50.02079679400007 ], [ -119.440894629999917, 50.020586169000076 ], [ -119.440844661999975, 50.020398081000081 ], [ -119.440075374999978, 50.019348 ], [ -119.439600909999967, 50.018897044000028 ], [ -119.438628504999912, 50.017556911000085 ], [ -119.43892983899994, 50.015468049000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176511667", "BldgCostT": "118026667", "sL_LossRatio": "1", "sL_AssetLoss": "15466.7", "sL_BldgLoss": "15466.7", "sL_StrLoss": "15466.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4DC708A94DA5DC0013DDC27AA034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.41452216299993, 50.036583934000134 ], [ -119.413830566999977, 50.036325675000036 ], [ -119.413142418999897, 50.036266251000015 ], [ -119.412292617999981, 50.036277489000113 ], [ -119.411815268999973, 50.03637880900007 ], [ -119.411161057999948, 50.035456441000086 ], [ -119.410925342999988, 50.034735431000072 ], [ -119.410891345, 50.034631406000052 ], [ -119.410847320999949, 50.034496759000078 ], [ -119.41062780599999, 50.033383939000117 ], [ -119.410612467999925, 50.033306404000115 ], [ -119.410601342999911, 50.033249915000034 ], [ -119.41034386599999, 50.031944631000094 ], [ -119.410227021999958, 50.031154774000072 ], [ -119.410230370999969, 50.030888380000057 ], [ -119.41023301199999, 50.030678392000048 ], [ -119.409924505, 50.030659810000067 ], [ -119.409115502999953, 50.03045768700013 ], [ -119.406259203999952, 50.029448915000032 ], [ -119.405778520999945, 50.029254698000059 ], [ -119.405466683999947, 50.029181788000045 ], [ -119.405152813999919, 50.029180898000092 ], [ -119.404454108999985, 50.02923368200004 ], [ -119.40473730399999, 50.028122066000044 ], [ -119.404824842999957, 50.027769771000116 ], [ -119.405287324999961, 50.025933987000073 ], [ -119.406176376999952, 50.022915704000127 ], [ -119.406358547999957, 50.022484491000036 ], [ -119.406365893999961, 50.022467077000073 ], [ -119.406475080999925, 50.02220860900011 ], [ -119.406635013999988, 50.0216855030001 ], [ -119.406645090999959, 50.021442291000085 ], [ -119.406603186999973, 50.021150899000112 ], [ -119.40655062299993, 50.021042046000055 ], [ -119.406085838999957, 50.020079578000029 ], [ -119.407477516999947, 50.020050508000118 ], [ -119.408879022999912, 50.020059824000057 ], [ -119.409850270999968, 50.020065521000063 ], [ -119.410956997999932, 50.020071989000037 ], [ -119.413259641999957, 50.020088258000065 ], [ -119.41453130799998, 50.020097198000052 ], [ -119.41538423599998, 50.020102806000111 ], [ -119.416650110999939, 50.020111142000033 ], [ -119.41738317600003, 50.020115969000074 ], [ -119.417544692999982, 50.020117022000072 ], [ -119.419844793999957, 50.020132108000048 ], [ -119.420065287999975, 50.020225699000036 ], [ -119.420136925999984, 50.020321202000112 ], [ -119.419866981999974, 50.021662809000098 ], [ -119.41968280399999, 50.022578309000096 ], [ -119.419573238999973, 50.022910481000039 ], [ -119.419561701999939, 50.022945396000082 ], [ -119.419527969999962, 50.023047496000032 ], [ -119.419442608999972, 50.023560701000093 ], [ -119.41939291199995, 50.025217553000054 ], [ -119.41938993299999, 50.025317221000094 ], [ -119.419389516999956, 50.025331693000091 ], [ -119.419403684999963, 50.025430430000021 ], [ -119.419492877999957, 50.026050303000019 ], [ -119.419533926999975, 50.026208108000063 ], [ -119.41959828899995, 50.026455703000117 ], [ -119.419759421, 50.026909168000067 ], [ -119.419835297999938, 50.02712279400005 ], [ -119.420246878999976, 50.027766003000089 ], [ -119.421249994999954, 50.029164309000052 ], [ -119.421829740999939, 50.029634349000034 ], [ -119.421860995999907, 50.029659698000081 ], [ -119.42190823599999, 50.029689433000023 ], [ -119.422625390999912, 50.03014080700008 ], [ -119.422912283999963, 50.030221192000063 ], [ -119.423556198, 50.030236083000069 ], [ -119.42425770399997, 50.03025230500004 ], [ -119.425464210999934, 50.030332806000054 ], [ -119.42567647499996, 50.030396101000065 ], [ -119.425709497, 50.030437972000165 ], [ -119.425938574999961, 50.030426532000021 ], [ -119.426273057999978, 50.030499036000059 ], [ -119.426612671999948, 50.030641694000067 ], [ -119.426837856999938, 50.030780463 ], [ -119.427089371999926, 50.03089195400004 ], [ -119.42736675899998, 50.030967181000101 ], [ -119.427793209999919, 50.031123509000111 ], [ -119.427921807999937, 50.031960006000112 ], [ -119.428099885999984, 50.032495676000032 ], [ -119.428205090999953, 50.032812211000078 ], [ -119.428207402999931, 50.032912585000112 ], [ -119.42813228599999, 50.03309308800003 ], [ -119.427968386999979, 50.033227791000066 ], [ -119.42773450599999, 50.033294106000042 ], [ -119.425751491999975, 50.033289796000091 ], [ -119.425739015999937, 50.034277801000052 ], [ -119.42573432199994, 50.034711521000069 ], [ -119.425725775, 50.035503423000158 ], [ -119.425711087999929, 50.036865605000038 ], [ -119.42437607799999, 50.036857540000049 ], [ -119.423481771999931, 50.036852129000046 ], [ -119.421776865999959, 50.036841802000033 ], [ -119.42028288599991, 50.036832711000059 ], [ -119.419737003999941, 50.036829395000055 ], [ -119.418916616, 50.036807946000089 ], [ -119.418456168, 50.036795881000067 ], [ -119.418056150999959, 50.0367510680001 ], [ -119.417580004999962, 50.036699011000039 ], [ -119.416745800999976, 50.036687542000045 ], [ -119.415065688999931, 50.036664433000063 ], [ -119.41452216299993, 50.036583934000134 ] ], [ [ -119.422376716999949, 50.034377813000042 ], [ -119.42248107099995, 50.033656527000048 ], [ -119.42158451399996, 50.033602716000061 ], [ -119.421640788999966, 50.033213789000072 ], [ -119.421532938999974, 50.03320731500002 ], [ -119.421607471999906, 50.032692201000074 ], [ -119.421325985999943, 50.032675305000105 ], [ -119.421314102999958, 50.032757433000064 ], [ -119.421435100999986, 50.032764697000054 ], [ -119.421256312999915, 50.034000264000078 ], [ -119.421525079999952, 50.034016396 ], [ -119.421480566999904, 50.034324026000057 ], [ -119.422376716999949, 50.034377813000042 ] ], [ [ -119.416213178999925, 50.025639598000112 ], [ -119.416223638999952, 50.02556735400006 ], [ -119.415914446999963, 50.025548776000022 ], [ -119.41602344099999, 50.024796009000113 ], [ -119.41577312099993, 50.024780968000066 ], [ -119.415653661999954, 50.025605978000051 ], [ -119.416213178999925, 50.025639598000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019919", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18700917", "BldgCostT": "12161667", "sL_LossRatio": "1", "sL_AssetLoss": "1763.8", "sL_BldgLoss": "1763.8", "sL_StrLoss": "1763.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008EB2C04F03D65DC029A95D5DDF064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.341433921000018, 50.051732708000102 ], [ -119.346994735999928, 50.052070297000036 ], [ -119.346470541999949, 50.055650351000153 ], [ -119.340909292999967, 50.055312737000058 ], [ -119.341433921000018, 50.051732708000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019921", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17540251", "BldgCostT": "11625001", "sL_LossRatio": "1", "sL_AssetLoss": "1191.9", "sL_BldgLoss": "1191.9", "sL_StrLoss": "1191.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D9F1B26832D65DC03F35030157044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.344309489999944, 50.031946324000039 ], [ -119.34986791399993, 50.032283776000035 ], [ -119.34934417299992, 50.035863937000116 ], [ -119.34378531699997, 50.035526459000089 ], [ -119.344309489999944, 50.031946324000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "283340083", "BldgCostT": "187108333", "sL_LossRatio": "0.999332294872369", "sL_AssetLoss": "23213.84", "sL_BldgLoss": "23198.34", "sL_StrLoss": "23192.7", "sL_NStrLoss": "5.64", "sL_ContLoss": "15.5", "geom_point": "0101000020E6100000C125112B2DD95DC08C922E6867044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.384443446999953, 50.059735632000084 ], [ -119.38451038099997, 50.059275941000038 ], [ -119.384220071999948, 50.059258426000071 ], [ -119.384428620999969, 50.057826125000048 ], [ -119.384112064999911, 50.057807026000077 ], [ -119.384633325999914, 50.054226805000027 ], [ -119.385130404999984, 50.054256794000018 ], [ -119.385413597999928, 50.052311318000065 ], [ -119.38542992, 50.052312303000114 ], [ -119.385446903999963, 50.052195618000091 ], [ -119.385473178999959, 50.052197203000034 ], [ -119.385508314999981, 50.051955819000057 ], [ -119.386253118999889, 50.052000750000062 ], [ -119.386283290999955, 50.051793436000061 ], [ -119.386946934999969, 50.051833467000058 ], [ -119.387065900999943, 50.051015952000078 ], [ -119.38897177799997, 50.051130891000085 ], [ -119.388946679999947, 50.050625618000105 ], [ -119.389365357999907, 50.050616996000073 ], [ -119.38936438599994, 50.050597442000083 ], [ -119.386281334999936, 50.050411502000053 ], [ -119.386517806999919, 50.04878659000012 ], [ -119.38634098199995, 50.048790228000023 ], [ -119.386327606999942, 50.048520643000053 ], [ -119.385908945999972, 50.04852925400013 ], [ -119.385857787999981, 50.047497857000145 ], [ -119.383537341999983, 50.04735783400006 ], [ -119.383630841999931, 50.046715584000047 ], [ -119.383523983999922, 50.046709135000135 ], [ -119.383698080999949, 50.04551323500003 ], [ -119.383492663999945, 50.045500837000084 ], [ -119.383607180999959, 50.044714191000025 ], [ -119.383478716999917, 50.044706437000045 ], [ -119.383631333000011, 50.04365804800009 ], [ -119.383559989999966, 50.04365374200006 ], [ -119.383618453999972, 50.043252124000091 ], [ -119.383579017999935, 50.043249744000022 ], [ -119.383694733999945, 50.042454803000112 ], [ -119.383591070999941, 50.042448546000102 ], [ -119.383714002999938, 50.041604018000058 ], [ -119.383303517999948, 50.041579239000072 ], [ -119.383593651999931, 50.039586060000012 ], [ -119.383565360999953, 50.039584351 ], [ -119.383621444999932, 50.039199044000107 ], [ -119.383563586999941, 50.03919555200013 ], [ -119.383677496999951, 50.038412950000044 ], [ -119.383536739999983, 50.038404453000084 ], [ -119.383564217999947, 50.038215667000017 ], [ -119.383554050999976, 50.038215054000048 ], [ -119.383582655999959, 50.038018532000088 ], [ -119.383534963999949, 50.038015654000098 ], [ -119.383595737999954, 50.037598109000037 ], [ -119.383543494, 50.037594955000046 ], [ -119.383594361999911, 50.037245462000108 ], [ -119.383581017999973, 50.037244657000052 ], [ -119.383617125999976, 50.036996570000021 ], [ -119.383481031999963, 50.036988355000041 ], [ -119.383533628, 50.036626990000094 ], [ -119.383494956999982, 50.036624656000086 ], [ -119.384016023999962, 50.033044336000039 ], [ -119.384615344999986, 50.033080515000037 ], [ -119.384657610999938, 50.032790049000013 ], [ -119.385550194999979, 50.032843926000076 ], [ -119.385445317999924, 50.030727996000074 ], [ -119.38586382199999, 50.030719388000122 ], [ -119.385850458999968, 50.030449802000057 ], [ -119.387056418999961, 50.030424990000064 ], [ -119.387609541, 50.030413605000078 ], [ -119.387942973999941, 50.030406741000064 ], [ -119.387955197999972, 50.0306531210001 ], [ -119.387956348, 50.030676327000094 ], [ -119.387987752999962, 50.030675680000066 ], [ -119.389211860999978, 50.030650472000055 ], [ -119.389252009999922, 50.031459229000127 ], [ -119.389670520999942, 50.031450607000068 ], [ -119.389710676999968, 50.03225936200004 ], [ -119.390129194999943, 50.032250739000077 ], [ -119.390162876999952, 50.032928948000112 ], [ -119.39340382099999, 50.033124373000106 ], [ -119.39338699399994, 50.033240164000119 ], [ -119.39395091099999, 50.033274157000072 ], [ -119.393922381999971, 50.033470498000071 ], [ -119.394001322999955, 50.033475257000106 ], [ -119.393927775999927, 50.033981406000116 ], [ -119.393956859999975, 50.033983159000073 ], [ -119.393894791999983, 50.034410297000086 ], [ -119.394437954999958, 50.034443035000045 ], [ -119.394468468999918, 50.034233027000049 ], [ -119.394430903999933, 50.034230763 ], [ -119.394465815000018, 50.033990499000062 ], [ -119.39436731799999, 50.033984562000114 ], [ -119.39488750199996, 50.030404177000094 ], [ -119.395547750999981, 50.030443971000125 ], [ -119.395751871999948, 50.029038725000078 ], [ -119.394390554999958, 50.02895667300001 ], [ -119.394438565999948, 50.028626208000091 ], [ -119.392179606999946, 50.028490013000095 ], [ -119.392555787999981, 50.025901386000022 ], [ -119.392128478999922, 50.025875618000029 ], [ -119.392297889999938, 50.024709821000094 ], [ -119.392018106999927, 50.024692948000158 ], [ -119.392005971999964, 50.022576902000054 ], [ -119.392001836999967, 50.021862489000071 ], [ -119.39225560199999, 50.021876634000115 ], [ -119.395432945999971, 50.021914551000116 ], [ -119.395423297, 50.022184089000113 ], [ -119.395420644999888, 50.023214926000072 ], [ -119.395418574999965, 50.024008525000042 ], [ -119.395414802999966, 50.025474814000049 ], [ -119.395819953999975, 50.02497288100006 ], [ -119.396052796999953, 50.024773620000111 ], [ -119.396608605, 50.024060835000029 ], [ -119.397848711999956, 50.022466611000041 ], [ -119.398616991999916, 50.022554986000024 ], [ -119.399118497999908, 50.022538310000051 ], [ -119.399140631999941, 50.020114633000013 ], [ -119.399994464999949, 50.020108857000075 ], [ -119.400758110999988, 50.020103706000107 ], [ -119.40132461799999, 50.020101715000067 ], [ -119.401609245999936, 50.020100792000115 ], [ -119.403527044999919, 50.020082803000037 ], [ -119.40353314099994, 50.017785281000045 ], [ -119.403400959999942, 50.016018702000018 ], [ -119.403309266999884, 50.015589695000138 ], [ -119.403257158999935, 50.015219377000037 ], [ -119.403203090999966, 50.014312773000064 ], [ -119.40318354499999, 50.013858110000065 ], [ -119.403002557999969, 50.011244308000101 ], [ -119.403075623999911, 50.011086142000067 ], [ -119.403258291999961, 50.011050628000078 ], [ -119.403291958999915, 50.011384165000102 ], [ -119.403411562999906, 50.01256898700008 ], [ -119.40348498199991, 50.013296177000058 ], [ -119.403540113999966, 50.013842305 ], [ -119.403592162999928, 50.014360719000152 ], [ -119.403639416999951, 50.014831022000045 ], [ -119.403686334999989, 50.015297904000064 ], [ -119.403719947999889, 50.015632657000097 ], [ -119.403756287999954, 50.015994380000087 ], [ -119.403761374999959, 50.016007863000027 ], [ -119.403924436999944, 50.016438824000048 ], [ -119.40407321899994, 50.01670783600008 ], [ -119.405199889999963, 50.018312457000093 ], [ -119.406085838999957, 50.020079578000029 ], [ -119.40655062299993, 50.021042046000055 ], [ -119.406603186999973, 50.021150899000112 ], [ -119.406645090999959, 50.021442291000085 ], [ -119.406635013999988, 50.0216855030001 ], [ -119.406475080999925, 50.02220860900011 ], [ -119.406365893999961, 50.022467077000073 ], [ -119.406358547999957, 50.022484491000036 ], [ -119.406176376999952, 50.022915704000127 ], [ -119.405287324999961, 50.025933987000073 ], [ -119.404824842999957, 50.027769771000116 ], [ -119.40473730399999, 50.028122066000044 ], [ -119.404454108999985, 50.02923368200004 ], [ -119.404273712999938, 50.02924992300008 ], [ -119.403792994999947, 50.029297738000118 ], [ -119.40263686900002, 50.029440331000053 ], [ -119.401670114999973, 50.029562723000033 ], [ -119.401864720999981, 50.030269676000032 ], [ -119.402094216999927, 50.031122314000058 ], [ -119.402163593999944, 50.031378402000058 ], [ -119.40237312499994, 50.032146769000043 ], [ -119.402651452999962, 50.033155526000066 ], [ -119.402769082999924, 50.033581875000053 ], [ -119.40263702399993, 50.03393148200005 ], [ -119.402204954999959, 50.034348805 ], [ -119.402146037999955, 50.034706438000079 ], [ -119.400874895999905, 50.034705458000047 ], [ -119.399996452000011, 50.034704784000034 ], [ -119.399491905999952, 50.034704401000063 ], [ -119.397983372999974, 50.034703221000036 ], [ -119.397173299999935, 50.034702599000134 ], [ -119.397057589999989, 50.034702493000033 ], [ -119.393215990999948, 50.034723797000026 ], [ -119.393069236999949, 50.034756528000059 ], [ -119.392990184999988, 50.034774142000053 ], [ -119.392976913, 50.034777097000109 ], [ -119.392855316999956, 50.034890713000046 ], [ -119.392856230999939, 50.034899673000091 ], [ -119.393356102, 50.039769695000103 ], [ -119.393244793999955, 50.039908314000094 ], [ -119.392949250999919, 50.039994911000043 ], [ -119.392771798999988, 50.040046911000069 ], [ -119.392471310999937, 50.040213805000022 ], [ -119.392112606999945, 50.040530814000078 ], [ -119.392014905999986, 50.040672113000021 ], [ -119.391697247999957, 50.041921578000036 ], [ -119.391642451999928, 50.04215393700013 ], [ -119.391527163999967, 50.042724853000017 ], [ -119.391089193999974, 50.044518493000069 ], [ -119.390636544999978, 50.046371861000075 ], [ -119.390265486999979, 50.047891157000038 ], [ -119.390025388999931, 50.048982758000079 ], [ -119.390003475999919, 50.049297457000087 ], [ -119.389963305999984, 50.049409225000055 ], [ -119.389756210999934, 50.049985006000028 ], [ -119.389601653999989, 50.050305267000127 ], [ -119.38931274299992, 50.051182626000077 ], [ -119.38910475499992, 50.051599878000083 ], [ -119.388867032999883, 50.052337675000153 ], [ -119.388614627999956, 50.052703478000133 ], [ -119.388115671999969, 50.053260291000086 ], [ -119.387417432999925, 50.054328785000045 ], [ -119.387137257999939, 50.054903958000118 ], [ -119.38707138700002, 50.055039272000087 ], [ -119.386900493999917, 50.05547138700009 ], [ -119.386590766000012, 50.056703236000054 ], [ -119.386615249999977, 50.057122764000084 ], [ -119.386522512999974, 50.057374523000107 ], [ -119.386428446999972, 50.057483705000074 ], [ -119.386421232999936, 50.057492100000076 ], [ -119.386330967999953, 50.0575372610001 ], [ -119.385996130999928, 50.057704825000087 ], [ -119.385705623999939, 50.05789857600012 ], [ -119.38550896299995, 50.058141348000028 ], [ -119.385150143999908, 50.058756250000037 ], [ -119.385103614999977, 50.058801983000116 ], [ -119.38509592199992, 50.058809526000076 ], [ -119.384699972999925, 50.059198610000102 ], [ -119.384633896999958, 50.059334580000076 ], [ -119.38458903199998, 50.059421262000086 ], [ -119.384526068999961, 50.059740616000042 ], [ -119.384443446999953, 50.059735632000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65747667", "BldgCostT": "43901667", "sL_LossRatio": "0.995744053136543", "sL_AssetLoss": "5016.51", "sL_BldgLoss": "4995.16", "sL_StrLoss": "4987.4", "sL_NStrLoss": "7.76", "sL_ContLoss": "21.35", "geom_point": "0101000020E6100000B3336D7B12D85DC0958F28DDAB074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377856873000027, 50.062966697000086 ], [ -119.377933506999909, 50.06244094200008 ], [ -119.373616990999949, 50.062180206000058 ], [ -119.373583880999931, 50.062407212000068 ], [ -119.368021606999946, 50.062070973000104 ], [ -119.368274473999975, 50.060338667000039 ], [ -119.368544180999919, 50.058490848000076 ], [ -119.370800779999982, 50.058627294000125 ], [ -119.372187487999966, 50.058711118000161 ], [ -119.372234846999916, 50.058386457 ], [ -119.372296349999914, 50.057964832000074 ], [ -119.37394785199993, 50.058064640000076 ], [ -119.374013194999975, 50.057616570000093 ], [ -119.376050677999913, 50.057739671000022 ], [ -119.376479745999944, 50.054796320000044 ], [ -119.382041193999953, 50.055132134000061 ], [ -119.381519718999982, 50.058712339000046 ], [ -119.380082782, 50.058625602000063 ], [ -119.379711679999957, 50.061172508000062 ], [ -119.381142304999969, 50.061258864000081 ], [ -119.381197405, 50.060880644000108 ], [ -119.382996353999985, 50.060989207000098 ], [ -119.382898560999962, 50.061252402000072 ], [ -119.382708543999982, 50.061507305000085 ], [ -119.382356934999905, 50.061725363000058 ], [ -119.3811351, 50.062370598000086 ], [ -119.38076881899994, 50.062564034000111 ], [ -119.380510294999965, 50.062749784000026 ], [ -119.380288431999986, 50.063049707000033 ], [ -119.380106894999983, 50.063467626000083 ], [ -119.379500935999928, 50.064836935000102 ], [ -119.372420257999963, 50.065126373000105 ], [ -119.37249577299994, 50.064608754000119 ], [ -119.37574027499997, 50.064804774000073 ], [ -119.376024418999918, 50.062856030000056 ], [ -119.377856873000027, 50.062966697000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47141061", "BldgCostT": "30128190", "sL_LossRatio": "1", "sL_AssetLoss": "2835.6", "sL_BldgLoss": "2835.6", "sL_StrLoss": "2835.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E207732B4D75DC0577DCFC44B024940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.370212339999924, 50.014511071000115 ], [ -119.375201177999912, 50.014812892000144 ], [ -119.375136929999968, 50.016772197000115 ], [ -119.375013027999927, 50.017480801000076 ], [ -119.374880694999888, 50.018405418000093 ], [ -119.374307882999986, 50.018370777000015 ], [ -119.374201914999915, 50.019098111000091 ], [ -119.371317434999952, 50.01892362100007 ], [ -119.370937209999965, 50.021532080000107 ], [ -119.367003150999921, 50.021293973000105 ], [ -119.365379940999958, 50.021195688 ], [ -119.365902252999931, 50.017615380000088 ], [ -119.368102946999954, 50.017748626000071 ], [ -119.368311162999987, 50.016320731000093 ], [ -119.368510588999968, 50.014953032000086 ], [ -119.37013359499997, 50.015051273000019 ], [ -119.370212339999924, 50.014511071000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "286119584", "BldgCostT": "198028334", "sL_LossRatio": "0.999991346184575", "sL_AssetLoss": "17440.86193", "sL_BldgLoss": "17440.711", "sL_StrLoss": "17435.487", "sL_NStrLoss": "5.224", "sL_ContLoss": "0.15093", "geom_point": "0101000020E6100000A959775E70D95DC0A122147CCF014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.391722471000023, 50.015205930000079 ], [ -119.39172497499996, 50.014484619000072 ], [ -119.391725055999956, 50.014134011000124 ], [ -119.39172539299993, 50.013080604000031 ], [ -119.391725462999915, 50.01290897000009 ], [ -119.391721760999957, 50.011532974000019 ], [ -119.391716169999924, 50.009437733 ], [ -119.391714486999931, 50.008817886000067 ], [ -119.391640835999937, 50.008456773000013 ], [ -119.391452908999952, 50.008091479000072 ], [ -119.391280047999942, 50.007873371000052 ], [ -119.391482808999967, 50.007874584000049 ], [ -119.391942558999943, 50.007836526000133 ], [ -119.39221338599998, 50.007814094000025 ], [ -119.39258496199993, 50.007812138000077 ], [ -119.393108000999916, 50.007809366000089 ], [ -119.393280144999935, 50.007810717000091 ], [ -119.394397521999977, 50.0078058900001 ], [ -119.395651886999985, 50.007801250000057 ], [ -119.396352793999966, 50.007800971000108 ], [ -119.397442283999908, 50.007795325000046 ], [ -119.397593990999979, 50.007795028000082 ], [ -119.398602730999926, 50.007793048000046 ], [ -119.399635730999989, 50.007790284000116 ], [ -119.399991388999979, 50.007787984000053 ], [ -119.400217761999926, 50.00778652200006 ], [ -119.400773544999979, 50.007702635000072 ], [ -119.401123840999915, 50.007650259000087 ], [ -119.401449507999985, 50.007601582000028 ], [ -119.402858326999976, 50.007584961000113 ], [ -119.402878296999972, 50.007584721000043 ], [ -119.402876656999979, 50.009025745000059 ], [ -119.403007656999932, 50.010382220000061 ], [ -119.403075623999911, 50.011086142000067 ], [ -119.403002557999969, 50.011244308000101 ], [ -119.40318354499999, 50.013858110000065 ], [ -119.403203090999966, 50.014312773000064 ], [ -119.403257158999935, 50.015219377000037 ], [ -119.403309266999884, 50.015589695000138 ], [ -119.403400959999942, 50.016018702000018 ], [ -119.40353314099994, 50.017785281000045 ], [ -119.403527044999919, 50.020082803000037 ], [ -119.401609245999936, 50.020100792000115 ], [ -119.40132461799999, 50.020101715000067 ], [ -119.400758110999988, 50.020103706000107 ], [ -119.399994464999949, 50.020108857000075 ], [ -119.399140631999941, 50.020114633000013 ], [ -119.398710769, 50.020116947000112 ], [ -119.398431446999922, 50.020118440000061 ], [ -119.397384588999941, 50.020124120000041 ], [ -119.396839878999941, 50.02012704000002 ], [ -119.39549671599994, 50.02013430000008 ], [ -119.394313110999917, 50.020136086000107 ], [ -119.392108928999917, 50.020139379000035 ], [ -119.391697802999957, 50.020140005000023 ], [ -119.391712139999953, 50.019170972000076 ], [ -119.391713700999958, 50.019066406000071 ], [ -119.39171302299998, 50.018009903000092 ], [ -119.391713350999922, 50.017902697000139 ], [ -119.39171402199996, 50.017704721000044 ], [ -119.39171454199996, 50.017551669000071 ], [ -119.39171534499998, 50.017317413000093 ], [ -119.391717754999945, 50.016604758 ], [ -119.391719057, 50.016220865000022 ], [ -119.391720067000023, 50.015919574000137 ], [ -119.391720444999933, 50.015811271000175 ], [ -119.391722471000023, 50.015205930000079 ] ], [ [ -119.399184911999967, 50.014792641000085 ], [ -119.399224192999938, 50.014521966000103 ], [ -119.39888174299989, 50.014529050000071 ], [ -119.398868313999955, 50.014259466000048 ], [ -119.397613236999959, 50.014285418000085 ], [ -119.397572973999957, 50.013476665000063 ], [ -119.397991325999953, 50.013468016000033 ], [ -119.397951055999968, 50.012659262000035 ], [ -119.398787746999943, 50.012641959000071 ], [ -119.398774319999916, 50.01237237600008 ], [ -119.399538432999989, 50.012356569000112 ], [ -119.399566109999938, 50.012165837000055 ], [ -119.402229370999933, 50.012326283000149 ], [ -119.402234446999927, 50.012291289000132 ], [ -119.39940365399994, 50.012120749000118 ], [ -119.399602278999936, 50.010751960000078 ], [ -119.399643865999963, 50.010465354000075 ], [ -119.398262006999971, 50.010493937000085 ], [ -119.398277794999956, 50.010811005000114 ], [ -119.398302278999935, 50.011302690000072 ], [ -119.396628944999918, 50.01133728100011 ], [ -119.396615529999949, 50.011067696000076 ], [ -119.394942199999917, 50.011102264000051 ], [ -119.394935123999986, 50.010959950000078 ], [ -119.394928795999959, 50.010832678000078 ], [ -119.394510466999947, 50.010841315000071 ], [ -119.39451728799996, 50.010978562 ], [ -119.394550673999944, 50.011650072000123 ], [ -119.394969011999962, 50.011641433000086 ], [ -119.394973276000016, 50.011727203000049 ], [ -119.395176831999933, 50.011739476000095 ], [ -119.395113128999981, 50.012178180000056 ], [ -119.395414165999952, 50.012171964000082 ], [ -119.395440981999954, 50.012711134000028 ], [ -119.395859328999919, 50.012702492000066 ], [ -119.395872740999948, 50.012972078000104 ], [ -119.396291086999895, 50.012963434000014 ], [ -119.396344743999961, 50.014041773000073 ], [ -119.396763101999909, 50.014033128000086 ], [ -119.39678993499993, 50.01457229600004 ], [ -119.397208296999978, 50.014563651000074 ], [ -119.397221716999951, 50.014833235000069 ], [ -119.399184911999967, 50.014792641000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155307250", "BldgCostT": "109045000", "sL_LossRatio": "1", "sL_AssetLoss": "434", "sL_BldgLoss": "434", "sL_StrLoss": "434", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023697916ABD95DC0D8128F1714004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.403373512999963, 49.997483996000049 ], [ -119.403435750999975, 49.997369162000055 ], [ -119.403548001999951, 49.997430337000026 ], [ -119.403568845999985, 49.997420690000105 ], [ -119.403590175999938, 49.99739672500008 ], [ -119.403738061999931, 49.997438958000032 ], [ -119.403738372999953, 49.997400918000039 ], [ -119.403701586999915, 49.997382308000091 ], [ -119.403928241999949, 49.997388747000073 ], [ -119.403790559999933, 49.997755675000086 ], [ -119.403786934999928, 49.997765246000114 ], [ -119.403565043999905, 49.998356377000057 ], [ -119.403272046999959, 49.99913695500004 ], [ -119.403227516999948, 49.999255599000051 ], [ -119.403169993999938, 49.99940879300005 ], [ -119.403108936999914, 49.999696140000033 ], [ -119.403044044999916, 50.000001560000044 ], [ -119.403005440999891, 50.000183172000042 ], [ -119.402993805999969, 50.000237993000042 ], [ -119.402952790999976, 50.000520848000072 ], [ -119.402913304999942, 50.000792992000044 ], [ -119.402912131999983, 50.000876170000062 ], [ -119.402882403999953, 50.003020703000104 ], [ -119.398557909999951, 50.002760115000093 ], [ -119.398561776999955, 50.002010095000102 ], [ -119.398410328999915, 50.001784884000095 ], [ -119.398307041999942, 50.001631273000051 ], [ -119.398551680999958, 49.999945226000129 ], [ -119.399373285999928, 49.999546301000052 ], [ -119.39971027899999, 49.999044896000036 ], [ -119.401657000999933, 49.998330008000053 ], [ -119.403373512999963, 49.997483996000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63564333", "BldgCostT": "42363333", "sL_LossRatio": "1", "sL_AssetLoss": "1587.6", "sL_BldgLoss": "1587.6", "sL_StrLoss": "1587.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000927F773C37D95DC02FE196B0B2004940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.391280047999942, 50.007873371000052 ], [ -119.390121390000019, 50.006008570000169 ], [ -119.389740713999942, 50.005990850000039 ], [ -119.389663284000022, 50.005987249000086 ], [ -119.389641320999914, 50.005544507000096 ], [ -119.38922303399994, 50.005553125000105 ], [ -119.389182922999979, 50.004744365000057 ], [ -119.388764643999963, 50.00475298200007 ], [ -119.388751277999972, 50.004483395000086 ], [ -119.388333, 50.004492011000146 ], [ -119.388266175999931, 50.003144076000112 ], [ -119.387847911999941, 50.003152689000096 ], [ -119.387794464999956, 50.00207434200005 ], [ -119.388630978999927, 50.002057115000092 ], [ -119.388617612999937, 50.001787528000101 ], [ -119.389659718999965, 50.001766059000026 ], [ -119.389883861999962, 50.001993303000091 ], [ -119.389885745999948, 50.002031264000053 ], [ -119.389920597999918, 50.002030545000103 ], [ -119.39001140299996, 50.002122604000142 ], [ -119.390838904999924, 50.002484404000072 ], [ -119.390943093999937, 50.002625415000075 ], [ -119.39091392099999, 50.002851803000098 ], [ -119.391605407999961, 50.002936410000117 ], [ -119.391612294999916, 50.003075119000066 ], [ -119.392513016999985, 50.003056541000056 ], [ -119.393294525999977, 50.003225350000086 ], [ -119.393298739999935, 50.00331019100004 ], [ -119.393572799999987, 50.003304534000101 ], [ -119.394146232999972, 50.003513516000105 ], [ -119.394148668999904, 50.003562509000083 ], [ -119.394273594999959, 50.003559930000073 ], [ -119.394425207999973, 50.003615183000072 ], [ -119.39457292599991, 50.003709434000015 ], [ -119.39457472699999, 50.003710584000018 ], [ -119.394593734999944, 50.004093045000033 ], [ -119.394949959999948, 50.004085689000142 ], [ -119.394982495999898, 50.00412508600008 ], [ -119.39525378799999, 50.00426471100009 ], [ -119.396241302999968, 50.004495397000014 ], [ -119.398009914999932, 50.004674793000021 ], [ -119.398804817999945, 50.004576495 ], [ -119.39881930300001, 50.004867369000117 ], [ -119.39883387, 50.005159907000078 ], [ -119.398856984999938, 50.005624112000085 ], [ -119.39843870199995, 50.00563276300003 ], [ -119.398452124999963, 50.005902348000049 ], [ -119.398033837999932, 50.005910998000076 ], [ -119.39808751899993, 50.00698933700005 ], [ -119.399342406999935, 50.006963382000066 ], [ -119.399355833999934, 50.007232966000046 ], [ -119.400966023, 50.007199642000067 ], [ -119.401123177, 50.006116257000031 ], [ -119.402149148999953, 50.006178067000057 ], [ -119.402213350999915, 50.005735381000108 ], [ -119.402762598999956, 50.005768466000106 ], [ -119.402876664999908, 50.004981884000081 ], [ -119.402882236999972, 50.005404580000111 ], [ -119.402886682999963, 50.005739598000027 ], [ -119.402882460999976, 50.006669892000104 ], [ -119.402880911999944, 50.007011980000129 ], [ -119.402880249999967, 50.007155737000105 ], [ -119.402878296999972, 50.007584721000043 ], [ -119.402858326999976, 50.007584961000113 ], [ -119.401449507999985, 50.007601582000028 ], [ -119.401123840999915, 50.007650259000087 ], [ -119.400773544999979, 50.007702635000072 ], [ -119.400217761999926, 50.00778652200006 ], [ -119.399991388999979, 50.007787984000053 ], [ -119.399635730999989, 50.007790284000116 ], [ -119.398602730999926, 50.007793048000046 ], [ -119.397593990999979, 50.007795028000082 ], [ -119.397442283999908, 50.007795325000046 ], [ -119.396352793999966, 50.007800971000108 ], [ -119.395651886999985, 50.007801250000057 ], [ -119.394397521999977, 50.0078058900001 ], [ -119.393280144999935, 50.007810717000091 ], [ -119.393108000999916, 50.007809366000089 ], [ -119.39258496199993, 50.007812138000077 ], [ -119.39221338599998, 50.007814094000025 ], [ -119.391942558999943, 50.007836526000133 ], [ -119.391482808999967, 50.007874584000049 ], [ -119.391280047999942, 50.007873371000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.67008254615163", "sL_AssetLoss": "136.700861", "sL_BldgLoss": "91.600861", "sL_StrLoss": "75.300861", "sL_NStrLoss": "16.3", "sL_ContLoss": "45.1", "geom_point": "0101000020E61000007D63DF80DCD75DC0A04B9B1ED2F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.371241225999938, 49.929459450000138 ], [ -119.371084036999918, 49.927528866000074 ], [ -119.372825904999914, 49.927634474000037 ], [ -119.37279917799998, 49.927090347000011 ], [ -119.374469622, 49.927056141000016 ], [ -119.374549132999988, 49.928673700000061 ], [ -119.374131509000023, 49.928682253000026 ], [ -119.374144758999961, 49.928951848000047 ], [ -119.37265211299993, 49.928982409000085 ], [ -119.372645356999968, 49.92902887200011 ], [ -119.373713, 49.929093589000118 ], [ -119.373670648999962, 49.929384867000088 ], [ -119.371241225999938, 49.929459450000138 ] ], [ [ -119.372838905999956, 49.927899127000025 ], [ -119.372831516999909, 49.927748717000021 ], [ -119.372809556999925, 49.927899729000011 ], [ -119.372838905999956, 49.927899127000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "56.7", "sL_BldgLoss": "56.7", "sL_StrLoss": "56.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A5B6176E6D85DC0C7C77AAC11FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.387136347999913, 49.978606183000096 ], [ -119.387319287999929, 49.97734685000011 ], [ -119.387031829999941, 49.977329483000091 ], [ -119.387551943999966, 49.973748860000107 ], [ -119.387769231999968, 49.973761988000057 ], [ -119.387876177999942, 49.973916491000097 ], [ -119.388443223, 49.974735686000066 ], [ -119.388918996999948, 49.975345086000061 ], [ -119.389264442999945, 49.975735305000086 ], [ -119.38933881199992, 49.975819279000085 ], [ -119.39008676899995, 49.976518512000091 ], [ -119.390458178999978, 49.97686570000014 ], [ -119.391367287, 49.977651148000085 ], [ -119.392320418999958, 49.978474635000097 ], [ -119.392707782999935, 49.978809284000057 ], [ -119.392688593999949, 49.978941493000043 ], [ -119.387136347999913, 49.978606183000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4120500", "BldgCostT": "2370000", "sL_LossRatio": "1", "sL_AssetLoss": "148", "sL_BldgLoss": "148", "sL_StrLoss": "148", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000BACCA5B81D85DC07C9521333CFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.380379702999932, 49.976441503000061 ], [ -119.385931633999988, 49.976777156000033 ], [ -119.385411359, 49.980357756000046 ], [ -119.37985899499995, 49.98002207899999 ], [ -119.380379702999932, 49.976441503000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "175408500", "BldgCostT": "111675000", "sL_LossRatio": "0.996367953110891", "sL_AssetLoss": "12032.5213397", "sL_BldgLoss": "11988.818658", "sL_StrLoss": "11964.535268", "sL_NStrLoss": "24.28339", "sL_ContLoss": "43.7026817", "geom_point": "0101000020E6100000BDD408FD4CD85DC050F8748EE4F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.384469910999954, 49.973257521000058 ], [ -119.384709211999976, 49.971610657000049 ], [ -119.383217780999956, 49.971520490000046 ], [ -119.383369416999969, 49.97047710100005 ], [ -119.383392084, 49.970321126000115 ], [ -119.377023649999956, 49.970451858000033 ], [ -119.376983792999951, 49.969643088000076 ], [ -119.377401771999985, 49.96963451800007 ], [ -119.377295476999976, 49.967477793000072 ], [ -119.37771343699994, 49.967469223000116 ], [ -119.377607136999956, 49.965312498000117 ], [ -119.378025077999951, 49.965303927000093 ], [ -119.377971923999937, 49.964225565000078 ], [ -119.377553991999918, 49.964234136000094 ], [ -119.377275033999965, 49.958572727000032 ], [ -119.376857150999953, 49.958581294000112 ], [ -119.376817312999933, 49.957772521000109 ], [ -119.377235190999954, 49.957763953000011 ], [ -119.377142226999979, 49.955876815000067 ], [ -119.376724367999969, 49.955885383000037 ], [ -119.376657984, 49.954537426000051 ], [ -119.376240135999979, 49.954545992000114 ], [ -119.376226862999971, 49.954276399000079 ], [ -119.375809015999891, 49.954284963000148 ], [ -119.375795743999944, 49.9540153720001 ], [ -119.374960056999939, 49.954032493000042 ], [ -119.37485393099999, 49.951875759000096 ], [ -119.375271756999965, 49.951867200000095 ], [ -119.375231955999979, 49.951058425000021 ], [ -119.374814137999977, 49.951066984000107 ], [ -119.374800873999988, 49.950797392000041 ], [ -119.3743830559999, 49.95080595000011 ], [ -119.374343271999976, 49.949997174000089 ], [ -119.373925462999964, 49.950005730000072 ], [ -119.373916776999963, 49.949829107000077 ], [ -119.372152319999927, 49.949722202000096 ], [ -119.371869329, 49.951666995000068 ], [ -119.372333724999947, 49.951657493000056 ], [ -119.372399980999958, 49.953005455000053 ], [ -119.371982144999947, 49.95301400400011 ], [ -119.372048393999947, 49.954361966000072 ], [ -119.371042700999951, 49.954382538000083 ], [ -119.370945053999947, 49.955053432000049 ], [ -119.371231913999949, 49.955070815000091 ], [ -119.370943431999976, 49.957052832000073 ], [ -119.371276544999958, 49.957073017000091 ], [ -119.371142773999964, 49.957992075000107 ], [ -119.371267308999975, 49.957999620000074 ], [ -119.371196316999914, 49.958487350000055 ], [ -119.372433202999929, 49.95856229 ], [ -119.372382425999916, 49.95891120900005 ], [ -119.372458025999947, 49.958915789000095 ], [ -119.372251596999959, 49.960334208000106 ], [ -119.371172155999929, 49.960342530000055 ], [ -119.368871993999988, 49.960360215000037 ], [ -119.368804589999954, 49.955138897000026 ], [ -119.36879097399999, 49.95412751500011 ], [ -119.368778127000013, 49.953174366000027 ], [ -119.368746482999953, 49.950827810000114 ], [ -119.368712076999927, 49.948273102000073 ], [ -119.36870465799997, 49.947721099000034 ], [ -119.373174197000012, 49.947712437000114 ], [ -119.372972492999978, 49.94486559200007 ], [ -119.374048939999966, 49.94493081500007 ], [ -119.37386236399999, 49.946213564000054 ], [ -119.374158057999935, 49.94623147800008 ], [ -119.374050355999927, 49.944041405000071 ], [ -119.375884117999988, 49.94375874000005 ], [ -119.37612709299998, 49.943753760000099 ], [ -119.376125506999955, 49.943721529000058 ], [ -119.37713821399997, 49.943565407000044 ], [ -119.37737781, 49.94357006200007 ], [ -119.377467393999908, 49.943571792000093 ], [ -119.377475157999953, 49.94087961300005 ], [ -119.37747710499994, 49.940203985000039 ], [ -119.377531490999928, 49.940003197000088 ], [ -119.377949898999972, 49.936029820000037 ], [ -119.37865628899999, 49.936072599000099 ], [ -119.378770424999942, 49.935287141000039 ], [ -119.37548086399994, 49.935087890000062 ], [ -119.37551559099991, 49.931477683000054 ], [ -119.380812527999979, 49.931798498000035 ], [ -119.38069611899995, 49.932599904000021 ], [ -119.38472085899997, 49.932843493000092 ], [ -119.384543779999944, 49.934063257000041 ], [ -119.384560111999946, 49.934064244000119 ], [ -119.384614574999944, 49.933689086000065 ], [ -119.385011921999975, 49.933713126000072 ], [ -119.385241033999947, 49.932134797000074 ], [ -119.38634475899994, 49.932201567000092 ], [ -119.386374693, 49.931995322000098 ], [ -119.386622333999981, 49.932010301000034 ], [ -119.38683797500002, 49.932023345000083 ], [ -119.3868067, 49.931390470000096 ], [ -119.386614338999934, 49.931394431000029 ], [ -119.386575727999983, 49.931660489000066 ], [ -119.386575528999956, 49.931661858000041 ], [ -119.38102907299999, 49.931326218000081 ], [ -119.381045121999932, 49.931215720000111 ], [ -119.38206737899992, 49.931205577000107 ], [ -119.382412917999929, 49.92906989100004 ], [ -119.381349852999932, 49.92911758600011 ], [ -119.38154913299995, 49.927745400000106 ], [ -119.382084090999939, 49.927777785000089 ], [ -119.382308184999914, 49.926234514000093 ], [ -119.382837062999926, 49.926266528000063 ], [ -119.382943573999938, 49.925532924000031 ], [ -119.382337718999935, 49.925545378000066 ], [ -119.382351012999933, 49.925814970000069 ], [ -119.379427823999961, 49.925875012000049 ], [ -119.379414546999911, 49.92560542000011 ], [ -119.378996948999941, 49.925613990000045 ], [ -119.378983673999969, 49.925344398000057 ], [ -119.378148483999979, 49.925361537000057 ], [ -119.378095402999975, 49.924283167000063 ], [ -119.379348158999946, 49.924257458000085 ], [ -119.37933488199999, 49.923987866000076 ], [ -119.37849971499999, 49.924005006000066 ], [ -119.378486443, 49.923735414000063 ], [ -119.377651279999938, 49.923752548000031 ], [ -119.377624745999938, 49.923213362000091 ], [ -119.37678959199998, 49.923230490000087 ], [ -119.376802855999969, 49.923500082000075 ], [ -119.375550115999886, 49.923525764000082 ], [ -119.375510349999956, 49.922716985000079 ], [ -119.375927922999949, 49.922708426000099 ], [ -119.375914665, 49.922438833000037 ], [ -119.376332234999921, 49.922430273000053 ], [ -119.376305716999966, 49.921891088000045 ], [ -119.377558413999964, 49.921865399000119 ], [ -119.37754514699999, 49.921595807000067 ], [ -119.378797835999976, 49.92157010600004 ], [ -119.378784561999922, 49.921300512000094 ], [ -119.37899330899991, 49.921296228000152 ], [ -119.379167555999928, 49.920096625000063 ], [ -119.379562415999942, 49.920120542000078 ], [ -119.379547600999928, 49.919819716000106 ], [ -119.377481581999973, 49.919694557000099 ], [ -119.377454291999967, 49.919882399000116 ], [ -119.376708514999933, 49.919837210000011 ], [ -119.376701757999953, 49.919883717000083 ], [ -119.375053537999975, 49.919783828000085 ], [ -119.374960413999972, 49.920424554000107 ], [ -119.374335306999953, 49.92038666400002 ], [ -119.37404488199999, 49.922384571000066 ], [ -119.372212385999944, 49.922273474000093 ], [ -119.372200939999956, 49.92184053400004 ], [ -119.366273671999963, 49.921715401000036 ], [ -119.366341470999913, 49.921249547000052 ], [ -119.364891066999945, 49.921161513000101 ], [ -119.364884163999989, 49.921208928000077 ], [ -119.365452072999943, 49.921243400000037 ], [ -119.36538610099997, 49.921696635000039 ], [ -119.364180611000023, 49.921671137000068 ], [ -119.364185484999922, 49.921335268000114 ], [ -119.364202933999962, 49.920128586000075 ], [ -119.364204409999928, 49.920027908000129 ], [ -119.364187110999936, 49.919272794000058 ], [ -119.364220386999989, 49.919043609 ], [ -119.364309877999958, 49.918813290000159 ], [ -119.364848997999957, 49.918231898000101 ], [ -119.364967294999957, 49.91816869000008 ], [ -119.365278694999958, 49.91811440500004 ], [ -119.366236270999977, 49.918119854000103 ], [ -119.367559686999954, 49.918127366000114 ], [ -119.369858931999957, 49.9181404 ], [ -119.369871198999959, 49.913585003000023 ], [ -119.36989372, 49.909152100000078 ], [ -119.372816383999989, 49.909157036000089 ], [ -119.378304725999911, 49.909166117000026 ], [ -119.378611273999965, 49.909166616000086 ], [ -119.379650320999971, 49.909168303000101 ], [ -119.381091285999943, 49.909171048000104 ], [ -119.384003607999958, 49.909176552000119 ], [ -119.384622014999962, 49.909177689000046 ], [ -119.386764790999933, 49.909180997000092 ], [ -119.386756287999944, 49.910059199000024 ], [ -119.386753973999973, 49.910445651 ], [ -119.386750344999939, 49.911048931000032 ], [ -119.386746597999945, 49.911669877000072 ], [ -119.386741256999954, 49.91256037400008 ], [ -119.386734684, 49.91364950300008 ], [ -119.386729960999944, 49.91524114500011 ], [ -119.386728668999979, 49.915666594000093 ], [ -119.386717389999916, 49.916428126000021 ], [ -119.386696316999945, 49.917846494000123 ], [ -119.386674898999942, 49.918138683000045 ], [ -119.387480069999981, 49.918150388000129 ], [ -119.387588840999967, 49.918152449000111 ], [ -119.387664021999953, 49.91815353800007 ], [ -119.387784186999923, 49.9181552370001 ], [ -119.387779051999985, 49.918163611000061 ], [ -119.38711576099999, 49.91924454900002 ], [ -119.386930171999893, 49.919608098000019 ], [ -119.38677708599991, 49.920036826000057 ], [ -119.386736289999945, 49.920283120000128 ], [ -119.386698005999946, 49.920514299000089 ], [ -119.386691194999955, 49.921913528000111 ], [ -119.386686841999918, 49.922808331000084 ], [ -119.386686695999941, 49.922817290000111 ], [ -119.386667318999969, 49.924427291000093 ], [ -119.386478720999918, 49.92442580200008 ], [ -119.386477545999966, 49.925114068 ], [ -119.386470920999926, 49.929105976000052 ], [ -119.386555528000017, 49.929102444000101 ], [ -119.386648242999982, 49.929098624000119 ], [ -119.38664641699998, 49.929727952000093 ], [ -119.386691596999952, 49.930428763000101 ], [ -119.386900784999938, 49.931011255000044 ], [ -119.387105899999966, 49.931313549000059 ], [ -119.38736590399999, 49.931613735000028 ], [ -119.387898525999944, 49.932020729000051 ], [ -119.388346573999968, 49.932293531000013 ], [ -119.388776398999951, 49.932555241000031 ], [ -119.388905356999885, 49.932633779000085 ], [ -119.38952054399995, 49.933008320000042 ], [ -119.390220027999959, 49.933538264000099 ], [ -119.390616885999961, 49.934013767000117 ], [ -119.39091271099997, 49.934645724000113 ], [ -119.390973410999933, 49.935042199000094 ], [ -119.391009693999976, 49.93527921600004 ], [ -119.390895684000014, 49.936094110000084 ], [ -119.39085585399999, 49.936177998000097 ], [ -119.389858249999918, 49.938279123000058 ], [ -119.388825644999912, 49.940344089000092 ], [ -119.388510275999977, 49.940974799000038 ], [ -119.388488474999974, 49.94101835500004 ], [ -119.387981788999952, 49.942022613000034 ], [ -119.387672716999987, 49.942649310000014 ], [ -119.387391446, 49.943219685000045 ], [ -119.387353074999936, 49.942443666000052 ], [ -119.387770813999936, 49.942435062000122 ], [ -119.387744148999971, 49.941895883 ], [ -119.387326412999982, 49.941904486000091 ], [ -119.387324027999938, 49.94185623000002 ], [ -119.386065786999922, 49.941780139000066 ], [ -119.386099852999962, 49.942469467000087 ], [ -119.385682111999955, 49.942478065000088 ], [ -119.385748718999963, 49.943826015000127 ], [ -119.385330966999959, 49.943834612000067 ], [ -119.385397568999977, 49.945182563000053 ], [ -119.384979803999897, 49.945191157000103 ], [ -119.384983428999973, 49.945264554000076 ], [ -119.38666120399995, 49.945366020000037 ], [ -119.386570897999945, 49.943539228000112 ], [ -119.386988648999974, 49.943530627000058 ], [ -119.386975318999987, 49.943261038000053 ], [ -119.387375113999937, 49.943252805000064 ], [ -119.387164893999937, 49.943679086000017 ], [ -119.386851909, 49.944582180000062 ], [ -119.386724119999911, 49.945269785000136 ], [ -119.386613593999982, 49.946550483000081 ], [ -119.386543657999965, 49.947361178000101 ], [ -119.386480591999955, 49.948826622000084 ], [ -119.386501504999913, 49.951689631000065 ], [ -119.386501344999914, 49.952028245000037 ], [ -119.386492514999944, 49.952407012000037 ], [ -119.386491419999956, 49.952446379000037 ], [ -119.386439822999961, 49.952447441000061 ], [ -119.386115175999976, 49.954683208000084 ], [ -119.384314549999957, 49.954574327000053 ], [ -119.384009994999971, 49.956670951000042 ], [ -119.383861588999949, 49.956661976000113 ], [ -119.383720733999922, 49.95763155500002 ], [ -119.381824268999978, 49.957516843000057 ], [ -119.381831807999959, 49.957669612000068 ], [ -119.381413935999916, 49.957678196000046 ], [ -119.381493764999988, 49.959295737000019 ], [ -119.381911652999918, 49.959287153000048 ], [ -119.381964887, 49.960365514000031 ], [ -119.381546988999929, 49.960374098000081 ], [ -119.38158690799996, 49.961182869000098 ], [ -119.382004812999966, 49.961174283000098 ], [ -119.38210840899994, 49.963272589000034 ], [ -119.383367207999939, 49.963348721000081 ], [ -119.383365059999946, 49.963305237000064 ], [ -119.383919071999969, 49.963293846000077 ], [ -119.382547308999975, 49.963210889000038 ], [ -119.38306761299998, 49.959630220000101 ], [ -119.383101708999945, 49.959632282000015 ], [ -119.383391310999954, 49.957639022000109 ], [ -119.385267189999936, 49.957752462000059 ], [ -119.384888241999974, 49.958712541000097 ], [ -119.384644150999989, 49.959515933000034 ], [ -119.384536576999977, 49.960121676000071 ], [ -119.38453051099998, 49.961927718000048 ], [ -119.384529382000011, 49.962265692000088 ], [ -119.384521906999964, 49.964494005000041 ], [ -119.384521299999989, 49.964678367000076 ], [ -119.384606307999931, 49.966376690000111 ], [ -119.38476224499999, 49.967230431000139 ], [ -119.385066641999941, 49.968507661000125 ], [ -119.385763958000013, 49.97033779100007 ], [ -119.386605104999944, 49.972035679000044 ], [ -119.38728113499991, 49.973116889000067 ], [ -119.387490839999884, 49.973359790000146 ], [ -119.38754884799999, 49.973443598000053 ], [ -119.384469910999954, 49.973257521000058 ] ], [ [ -119.386001873999959, 49.948948223000073 ], [ -119.386123793999943, 49.948945715000036 ], [ -119.384323484999953, 49.948836837000023 ], [ -119.38433068599997, 49.948982606000087 ], [ -119.383912887999983, 49.948991199000091 ], [ -119.383979462999918, 49.950339149000108 ], [ -119.384397271999902, 49.950330558000097 ], [ -119.384410589999959, 49.950600147000067 ], [ -119.384828400999965, 49.95059155399999 ], [ -119.384841720999972, 49.95086114300009 ], [ -119.385259533999957, 49.950852547000046 ], [ -119.385267799999923, 49.951019803000065 ], [ -119.386106786999932, 49.951070536000017 ], [ -119.386001873999959, 49.948948223000073 ] ], [ [ -119.383299518999962, 49.947654490000041 ], [ -119.383535403999971, 49.946030457000113 ], [ -119.382095353999929, 49.946060054000036 ], [ -119.382082052999962, 49.945790463000101 ], [ -119.377904336999961, 49.945876231000135 ], [ -119.377917615999976, 49.946145822000069 ], [ -119.37749984099996, 49.946154390000103 ], [ -119.377526395999936, 49.946693574000037 ], [ -119.37794417399999, 49.946685005000091 ], [ -119.377957455999962, 49.946954596000069 ], [ -119.378375235999954, 49.946946026000084 ], [ -119.378388519999973, 49.947215618000051 ], [ -119.381313001999956, 49.947155584000029 ], [ -119.381326300999945, 49.947425174000138 ], [ -119.382997438999951, 49.947390836000075 ], [ -119.383010747999919, 49.947660426000041 ], [ -119.383299518999962, 49.947654490000041 ] ], [ [ -119.37998346399999, 49.939896558000093 ], [ -119.380353466999935, 49.939888962000026 ], [ -119.37998778399999, 49.939866825000138 ], [ -119.37998346399999, 49.939896558000093 ] ], [ [ -119.385467375999951, 49.938131715000068 ], [ -119.385447541999923, 49.937730185000106 ], [ -119.38482688, 49.937692639000026 ], [ -119.384769263999914, 49.938089485000049 ], [ -119.385467375999951, 49.938131715000068 ] ], [ [ -119.383079787999975, 49.936441712000068 ], [ -119.383092060999971, 49.936357200000039 ], [ -119.380756706999946, 49.936215853000114 ], [ -119.380744428999932, 49.936300365000044 ], [ -119.383079787999975, 49.936441712000068 ] ], [ [ -119.377410936, 49.91579443600012 ], [ -119.377415814999949, 49.915760850000048 ], [ -119.375530618999974, 49.915646600000073 ], [ -119.375592931999947, 49.915217781000052 ], [ -119.375453117999939, 49.915209307000048 ], [ -119.375345089999925, 49.915952699000094 ], [ -119.376560179999942, 49.916026344000088 ], [ -119.376601004999912, 49.915745355000119 ], [ -119.377410936, 49.91579443600012 ] ], [ [ -119.381925732999946, 49.915423675000049 ], [ -119.381988560999929, 49.914990901000088 ], [ -119.381974989999932, 49.914990080000052 ], [ -119.381989068999971, 49.914893093000089 ], [ -119.381239893999975, 49.914847724000055 ], [ -119.381162979999985, 49.915377484000032 ], [ -119.381925732999946, 49.915423675000049 ] ], [ [ -119.37430113799995, 49.911455883000023 ], [ -119.374311108999976, 49.911387269000038 ], [ -119.372857386999954, 49.91129911900002 ], [ -119.37285105, 49.911342718000157 ], [ -119.37342393599999, 49.911377458000096 ], [ -119.373410043999954, 49.911473028000145 ], [ -119.373428123999958, 49.91147412400008 ], [ -119.37343837899999, 49.911403570000033 ], [ -119.37430113799995, 49.911455883000023 ] ], [ [ -119.375005021, 49.911402021000079 ], [ -119.375018104999981, 49.911311993000069 ], [ -119.374910047999947, 49.911305442000078 ], [ -119.374896964999934, 49.91139547100007 ], [ -119.375005021, 49.911402021000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16884251", "BldgCostT": "10645001", "sL_LossRatio": "0.999916738495892", "sL_AssetLoss": "2317.998", "sL_BldgLoss": "2317.805", "sL_StrLoss": "2317.4", "sL_NStrLoss": "0.405", "sL_ContLoss": "0.193", "geom_point": "0101000020E6100000166B9F2BDDD85DC01F513E90FE014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.395420644999888, 50.023214926000072 ], [ -119.395423297, 50.022184089000113 ], [ -119.395432945999971, 50.021914551000116 ], [ -119.39225560199999, 50.021876634000115 ], [ -119.392001836999967, 50.021862489000071 ], [ -119.392005971999964, 50.022576902000054 ], [ -119.392018106999927, 50.024692948000158 ], [ -119.389023960999978, 50.024512335000097 ], [ -119.389237707999939, 50.023042071000056 ], [ -119.389157664, 50.023037242000036 ], [ -119.389320662, 50.021916004000069 ], [ -119.389316443999988, 50.02191574800009 ], [ -119.389499030999929, 50.020659693 ], [ -119.385369505999904, 50.020744696000051 ], [ -119.385356147999943, 50.020475109000081 ], [ -119.38534944499996, 50.020475248000118 ], [ -119.385353313999957, 50.020091184000123 ], [ -119.384498814999972, 50.020078387000055 ], [ -119.384492612999935, 50.01995314300013 ], [ -119.383243678999932, 50.019978813000066 ], [ -119.38281896099997, 50.019987540000059 ], [ -119.382811801999964, 50.019842867000079 ], [ -119.382752255999947, 50.0186396040001 ], [ -119.382333853999938, 50.018648199000083 ], [ -119.382267165999934, 50.017300262000084 ], [ -119.382685555999956, 50.017291668000084 ], [ -119.382658876999969, 50.016752494000087 ], [ -119.384750799999921, 50.0167094990001 ], [ -119.384764151999889, 50.016979087000081 ], [ -119.38518254, 50.016970483000108 ], [ -119.385195891999928, 50.017240069000117 ], [ -119.386451057999977, 50.017214251000048 ], [ -119.386410975999979, 50.016405490000125 ], [ -119.387247737999957, 50.016388270000078 ], [ -119.387234373999988, 50.016118684000062 ], [ -119.386815994999893, 50.01612729500004 ], [ -119.38680263399999, 50.015857708000048 ], [ -119.386384255999928, 50.015866317000082 ], [ -119.386331782999946, 50.014807382000072 ], [ -119.38177966799995, 50.014532456000076 ], [ -119.381790181999946, 50.014460199000041 ], [ -119.378938581999961, 50.014287878000069 ], [ -119.379459751999946, 50.010707472000014 ], [ -119.385015848999927, 50.011043155999985 ], [ -119.385005339999964, 50.011115414000137 ], [ -119.386572304999959, 50.011210034000065 ], [ -119.386548793999978, 50.010735561000075 ], [ -119.38613046099999, 50.010744169000098 ], [ -119.386090394999925, 50.009935408000068 ], [ -119.38650872, 50.009926802000017 ], [ -119.386335089999989, 50.006422171000033 ], [ -119.387171678999934, 50.006404953000121 ], [ -119.387158318999951, 50.006135368000088 ], [ -119.387874655999937, 50.006120620000104 ], [ -119.387875523, 50.005904097000048 ], [ -119.38871734099996, 50.005943256000101 ], [ -119.388716024999937, 50.006103294000077 ], [ -119.389668066999931, 50.00608368000006 ], [ -119.389663284000022, 50.005987249000086 ], [ -119.389740713999942, 50.005990850000039 ], [ -119.390121390000019, 50.006008570000169 ], [ -119.391280047999942, 50.007873371000052 ], [ -119.391452908999952, 50.008091479000072 ], [ -119.391640835999937, 50.008456773000013 ], [ -119.391714486999931, 50.008817886000067 ], [ -119.391716169999924, 50.009437733 ], [ -119.391721760999957, 50.011532974000019 ], [ -119.391725462999915, 50.01290897000009 ], [ -119.39172539299993, 50.013080604000031 ], [ -119.391725055999956, 50.014134011000124 ], [ -119.39172497499996, 50.014484619000072 ], [ -119.391722471000023, 50.015205930000079 ], [ -119.391720444999933, 50.015811271000175 ], [ -119.391720067000023, 50.015919574000137 ], [ -119.391719057, 50.016220865000022 ], [ -119.391717754999945, 50.016604758 ], [ -119.39171534499998, 50.017317413000093 ], [ -119.39171454199996, 50.017551669000071 ], [ -119.39171402199996, 50.017704721000044 ], [ -119.391713350999922, 50.017902697000139 ], [ -119.39171302299998, 50.018009903000092 ], [ -119.391713700999958, 50.019066406000071 ], [ -119.391712139999953, 50.019170972000076 ], [ -119.391697802999957, 50.020140005000023 ], [ -119.392108928999917, 50.020139379000035 ], [ -119.394313110999917, 50.020136086000107 ], [ -119.39549671599994, 50.02013430000008 ], [ -119.396839878999941, 50.02012704000002 ], [ -119.397384588999941, 50.020124120000041 ], [ -119.398431446999922, 50.020118440000061 ], [ -119.398710769, 50.020116947000112 ], [ -119.399140631999941, 50.020114633000013 ], [ -119.399118497999908, 50.022538310000051 ], [ -119.398616991999916, 50.022554986000024 ], [ -119.397848711999956, 50.022466611000041 ], [ -119.396608605, 50.024060835000029 ], [ -119.396052796999953, 50.024773620000111 ], [ -119.395819953999975, 50.02497288100006 ], [ -119.395414802999966, 50.025474814000049 ], [ -119.395418574999965, 50.024008525000042 ], [ -119.395420644999888, 50.023214926000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3139811", "BldgCostT": "1753190", "sL_LossRatio": "1", "sL_AssetLoss": "72.2", "sL_BldgLoss": "72.2", "sL_StrLoss": "72.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FCC1E181D8D75DC03488ACC13DF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.373110842999921, 49.924925052000063 ], [ -119.373057873999969, 49.923846677000085 ], [ -119.371805120999923, 49.923872317000111 ], [ -119.371765416999921, 49.923063536000015 ], [ -119.371671442999968, 49.923065459000085 ], [ -119.37144869299999, 49.924597124000073 ], [ -119.370842367999927, 49.924560356000029 ], [ -119.370761981999962, 49.923572862000043 ], [ -119.370254659999944, 49.923574102000096 ], [ -119.370242363999949, 49.923019904000107 ], [ -119.370883137999954, 49.923001437000089 ], [ -119.371405238999941, 49.922953770000035 ], [ -119.371964251999913, 49.922637458000054 ], [ -119.372151855999974, 49.922420758000037 ], [ -119.372169759999935, 49.922785398000016 ], [ -119.37342248100002, 49.922759754000019 ], [ -119.373475456999984, 49.923838128000092 ], [ -119.374728205999972, 49.92381247000008 ], [ -119.374781211999945, 49.92489084200011 ], [ -119.373110842999921, 49.924925052000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9851500", "BldgCostT": "5320000", "sL_LossRatio": "1", "sL_AssetLoss": "241", "sL_BldgLoss": "241", "sL_StrLoss": "241", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000004F76EB99BD75DC0A2B416EA59FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.370117608999948, 49.970423997000132 ], [ -119.37223228499991, 49.970432585000047 ], [ -119.372002125999941, 49.972013586000081 ], [ -119.367043766999984, 49.971713164000079 ], [ -119.36705809099999, 49.972005044000049 ], [ -119.366640089999947, 49.972013577000062 ], [ -119.366732694999939, 49.973900725000121 ], [ -119.366314675999917, 49.973909256000105 ], [ -119.366327903999959, 49.974178848000129 ], [ -119.366101782000015, 49.97418346300001 ], [ -119.36597242, 49.973302038000028 ], [ -119.365989119999981, 49.972573648000022 ], [ -119.365998192999953, 49.972177265000035 ], [ -119.36600031499999, 49.972085290000095 ], [ -119.36600271499999, 49.971232988000068 ], [ -119.366118676, 49.971032401000116 ], [ -119.366256375999939, 49.970923301000013 ], [ -119.366353844999978, 49.970890259000036 ], [ -119.366459694999975, 49.970854411000069 ], [ -119.370117608999948, 49.970423997000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.1", "sL_BldgLoss": "47.1", "sL_StrLoss": "47.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9175A0007D65DC0CE9BF5EF9BF94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.343437928999933, 49.95089586100007 ], [ -119.343359396999915, 49.949278273000083 ], [ -119.344466359, 49.949255893000036 ], [ -119.34461283399996, 49.949252930000078 ], [ -119.344625928999946, 49.949522528000088 ], [ -119.345043742, 49.949514078000114 ], [ -119.345073906999943, 49.950134979000033 ], [ -119.345096133999959, 49.950592469000092 ], [ -119.344678310999939, 49.950600919000095 ], [ -119.344691406999942, 49.95087051600008 ], [ -119.343437928999933, 49.95089586100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12391417", "BldgCostT": "7071667", "sL_LossRatio": "1", "sL_AssetLoss": "230.2", "sL_BldgLoss": "230.2", "sL_StrLoss": "230.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B33700346DD65DC0CCC694594EFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.350366557999919, 49.98151989100004 ], [ -119.350353416999951, 49.98125029600007 ], [ -119.34951724199999, 49.981267242000072 ], [ -119.34950410499998, 49.980997646000084 ], [ -119.34908601799998, 49.981006117000049 ], [ -119.348994079999898, 49.979118948000128 ], [ -119.348576011999981, 49.97912741600004 ], [ -119.34852349, 49.97804903400008 ], [ -119.348105430999937, 49.978057501000066 ], [ -119.348039794000016, 49.976709521000082 ], [ -119.348192155999925, 49.976706435000025 ], [ -119.34929393799996, 49.976684118000108 ], [ -119.349320205999931, 49.977223310000056 ], [ -119.349738257999945, 49.977214839000112 ], [ -119.349764532999941, 49.977754030000057 ], [ -119.350182588999985, 49.97774555800008 ], [ -119.35015631199991, 49.977206366000104 ], [ -119.350574362999978, 49.977197892000035 ], [ -119.350561220999907, 49.97692829800009 ], [ -119.350979270999957, 49.976919822000113 ], [ -119.350952985, 49.976380631000033 ], [ -119.351371028999978, 49.976372155000043 ], [ -119.351357884999985, 49.976102559000068 ], [ -119.351452152999912, 49.976100648000056 ], [ -119.351479071000014, 49.975916339000072 ], [ -119.352773314999951, 49.975994956000058 ], [ -119.351998417999965, 49.976627793000056 ], [ -119.351441478999988, 49.977420202000133 ], [ -119.351153375999971, 49.977926502000052 ], [ -119.351203298999934, 49.97815982500002 ], [ -119.351352790999982, 49.978354025000094 ], [ -119.351556549999913, 49.978540689000027 ], [ -119.352010063999927, 49.978888812000086 ], [ -119.352208097999977, 49.979040497000035 ], [ -119.35242500799994, 49.97919801200004 ], [ -119.352582241000036, 49.979275775000112 ], [ -119.352670671999988, 49.979372952000105 ], [ -119.352662879999968, 49.979499029000117 ], [ -119.35261292499996, 49.979626915000068 ], [ -119.352548003999928, 49.979717257000047 ], [ -119.352405650999955, 49.979945021000077 ], [ -119.352367370999943, 49.980017760000095 ], [ -119.352319073999965, 49.980171670000068 ], [ -119.352257720999916, 49.980343830000116 ], [ -119.352233809999987, 49.980425271000101 ], [ -119.352172016999958, 49.980588446000098 ], [ -119.352095838999958, 49.980742895000105 ], [ -119.35207189, 49.980824347000059 ], [ -119.352010570999965, 49.980996495000085 ], [ -119.35198662099999, 49.981077948000078 ], [ -119.351966222999977, 49.981231282000053 ], [ -119.35193141799995, 49.98137592700013 ], [ -119.351936895999984, 49.981488052000074 ], [ -119.350366557999919, 49.98151989100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "69.5", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004325A6F213D85DC0CEAD4A016DF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377367079999885, 49.943458474000067 ], [ -119.377238213999988, 49.940841253 ], [ -119.37427591299999, 49.94066181000003 ], [ -119.374373832999964, 49.939988469000092 ], [ -119.375753394999961, 49.939994276000107 ], [ -119.375807713999961, 49.939994504000069 ], [ -119.377531490999928, 49.940003197000088 ], [ -119.37747710499994, 49.940203985000039 ], [ -119.377475157999953, 49.94087961300005 ], [ -119.377467393999908, 49.943571792000093 ], [ -119.37737781, 49.94357006200007 ], [ -119.37713821399997, 49.943565407000044 ], [ -119.376125506999955, 49.943721529000058 ], [ -119.376113824999962, 49.943484168000076 ], [ -119.377367079999885, 49.943458474000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.9", "sL_BldgLoss": "48.9", "sL_StrLoss": "48.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059106F42C6D55DC010F1490684F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.340909809999971, 49.94851817200005 ], [ -119.341231105999967, 49.948511685000028 ], [ -119.341283409999903, 49.949590078000014 ], [ -119.34086559499994, 49.949598515000069 ], [ -119.340878667, 49.949868113000043 ], [ -119.340460849999943, 49.949876549000052 ], [ -119.340473922999962, 49.95014614700009 ], [ -119.339220458999975, 49.95017144500008 ], [ -119.339208824999915, 49.949931386000038 ], [ -119.339168199999918, 49.949093051000077 ], [ -119.33958601099998, 49.949084619000111 ], [ -119.33957294399994, 49.94881502000004 ], [ -119.339990752999896, 49.948806589000043 ], [ -119.339977684999951, 49.948536990000107 ], [ -119.340909809999971, 49.94851817200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "143", "sL_BldgLoss": "143", "sL_StrLoss": "143", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000707AD5D2F5D35DC00A664CC11AFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.312125647999935, 49.952790004000107 ], [ -119.313604314999935, 49.952880405000052 ], [ -119.313275291999958, 49.955121449000067 ], [ -119.310340868, 49.955149491000043 ], [ -119.310319933999978, 49.954696594000026 ], [ -119.31038851199996, 49.953576700000077 ], [ -119.31038862299999, 49.952683782000086 ], [ -119.312125647999935, 49.952790004000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5804834", "BldgCostT": "4003334", "sL_LossRatio": "1", "sL_AssetLoss": "586.1", "sL_BldgLoss": "586.1", "sL_StrLoss": "586.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B2AE959F7D45DC0E63BF88983F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.325085804999929, 49.939554738 ], [ -119.330632847999965, 49.939893205000082 ], [ -119.330108657999972, 49.943473721 ], [ -119.324561185999954, 49.943135229000127 ], [ -119.325085804999929, 49.939554738 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "283058166", "BldgCostT": "182331666", "sL_LossRatio": "0.999162675802875", "sL_AssetLoss": "22094.190116", "sL_BldgLoss": "22075.690116", "sL_StrLoss": "22069.000116", "sL_NStrLoss": "6.69", "sL_ContLoss": "18.5", "geom_point": "0101000020E61000004271857FEAD65DC0E001F1FC1AFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352325928999932, 49.975337527000107 ], [ -119.352848740999946, 49.971757060000044 ], [ -119.353790451999956, 49.971814257000048 ], [ -119.353947863999934, 49.970735962000091 ], [ -119.352755655999914, 49.970663549000015 ], [ -119.352767713999924, 49.97058096300001 ], [ -119.351133910999977, 49.970481705000083 ], [ -119.351282900999962, 49.969461476000063 ], [ -119.34982313799999, 49.969372770000085 ], [ -119.349999634999961, 49.968164382000076 ], [ -119.34798166099999, 49.968041723000098 ], [ -119.348136862999937, 49.966979404000099 ], [ -119.347380311999927, 49.966933409000077 ], [ -119.347903415999923, 49.963352924000056 ], [ -119.347940202999951, 49.963355161000081 ], [ -119.34816799099994, 49.961795826000078 ], [ -119.348265351999913, 49.961801745000052 ], [ -119.348550682999971, 49.959848330000121 ], [ -119.349493672999984, 49.959905658000118 ], [ -119.349564662999938, 49.959419551000096 ], [ -119.349685628999964, 49.959426905000093 ], [ -119.349935139999957, 49.957718255000024 ], [ -119.35050092099999, 49.957752647000063 ], [ -119.350631675999978, 49.956857104000093 ], [ -119.348206322999914, 49.956709654000058 ], [ -119.348319375999964, 49.955935600000046 ], [ -119.348154172999926, 49.955925554000032 ], [ -119.348322497999945, 49.954773053000068 ], [ -119.348261751999971, 49.954769360000064 ], [ -119.34855916099994, 49.952732913000041 ], [ -119.347540165999987, 49.952670944000033 ], [ -119.347629257, 49.952060962000139 ], [ -119.347548407999952, 49.952056045000063 ], [ -119.347611947999923, 49.951621004000039 ], [ -119.34723768799995, 49.951628581000115 ], [ -119.347205088999928, 49.950958200000066 ], [ -119.347185247999903, 49.950550192000023 ], [ -119.347770068999935, 49.950538350000038 ], [ -119.348071329000021, 49.948475488000057 ], [ -119.348157768999926, 49.94848074500004 ], [ -119.348610774999912, 49.945378392000087 ], [ -119.348746457999965, 49.94538664400006 ], [ -119.349180471999929, 49.942413893000072 ], [ -119.347627544, 49.94244535100006 ], [ -119.347640652999971, 49.942714949000049 ], [ -119.344716367999979, 49.94277413 ], [ -119.344663998999977, 49.941695737000025 ], [ -119.343828505999937, 49.941712632000126 ], [ -119.343815418, 49.941443034000045 ], [ -119.343397673999945, 49.941451479000101 ], [ -119.343384588999953, 49.941181881000055 ], [ -119.342966847999904, 49.941190323000072 ], [ -119.34295376399993, 49.940920725000112 ], [ -119.341282803999931, 49.940954483000084 ], [ -119.341230514999921, 49.939876089000037 ], [ -119.340812782999976, 49.939884524000092 ], [ -119.340708233000015, 49.937727731000059 ], [ -119.340290520999986, 49.937736165000032 ], [ -119.340277454999935, 49.93746656600004 ], [ -119.33944203199998, 49.937483428000078 ], [ -119.33941591199999, 49.936944230000101 ], [ -119.338998204999967, 49.936952658000081 ], [ -119.338959032999966, 49.936143860000087 ], [ -119.339376733000023, 49.936135431000054 ], [ -119.33936367299998, 49.935865832000076 ], [ -119.339781369999969, 49.935857402000046 ], [ -119.339768307999989, 49.935587803000089 ], [ -119.340603697999924, 49.935570938000062 ], [ -119.340590631999959, 49.93530133900002 ], [ -119.341431803999967, 49.935284352000089 ], [ -119.34172694599999, 49.933264602000108 ], [ -119.339196268999927, 49.933110456000136 ], [ -119.33939497199998, 49.931751086000098 ], [ -119.339409715999935, 49.931749596000017 ], [ -119.339904845999953, 49.931749278000041 ], [ -119.341260431999956, 49.931748383000041 ], [ -119.342260428999964, 49.931747694000101 ], [ -119.343562302999942, 49.931746799000038 ], [ -119.343574453999977, 49.931754394000087 ], [ -119.343793569999917, 49.93189137500012 ], [ -119.344022482999932, 49.932034496000028 ], [ -119.344130192999927, 49.932057113000035 ], [ -119.344727810999984, 49.932182589000014 ], [ -119.345466, 49.932464589000062 ], [ -119.345762908999973, 49.932619406000065 ], [ -119.345748676999975, 49.93276471900009 ], [ -119.346076741999937, 49.93278301000003 ], [ -119.34619529299999, 49.932844807000052 ], [ -119.347073140999981, 49.933180868000079 ], [ -119.347132813999963, 49.933203701000139 ], [ -119.347651115999952, 49.93357120600011 ], [ -119.347739337999883, 49.933847432000029 ], [ -119.347627345999967, 49.933840618000062 ], [ -119.347638952, 49.934079361000094 ], [ -119.347812312999963, 49.934075850000113 ], [ -119.347865398999957, 49.934242012000034 ], [ -119.347718335999971, 49.93488734400006 ], [ -119.347678265999932, 49.934888155000074 ], [ -119.347685278000014, 49.935032390000067 ], [ -119.347670003999923, 49.935099387000022 ], [ -119.347690286999978, 49.935495302000056 ], [ -119.347709563999956, 49.935531958000105 ], [ -119.34774379699995, 49.936236145000073 ], [ -119.34807635099996, 49.936229409000106 ], [ -119.34817026199994, 49.93640797400009 ], [ -119.348240150999956, 49.937845270000032 ], [ -119.347822437999952, 49.937853731000111 ], [ -119.347874869999913, 49.938932122000082 ], [ -119.348292590999961, 49.938923661000068 ], [ -119.348331923999979, 49.939732454000094 ], [ -119.350595373999965, 49.939686581000082 ], [ -119.350653692999984, 49.939699508000032 ], [ -119.351318001000024, 49.939891805000094 ], [ -119.352216476999956, 49.94003569299999 ], [ -119.353229199999973, 49.94007777700012 ], [ -119.353963188999984, 49.940108288 ], [ -119.355030801999945, 49.940303410000091 ], [ -119.356593297999922, 49.940334705000083 ], [ -119.358704809999949, 49.940759209000063 ], [ -119.35972392099994, 49.940774803000089 ], [ -119.361145299999947, 49.941051093000084 ], [ -119.362735699999945, 49.941090998000099 ], [ -119.36344011599999, 49.940959996000046 ], [ -119.363669736999952, 49.940961829000038 ], [ -119.364692541999929, 49.940969857000049 ], [ -119.364653106, 49.940952785000029 ], [ -119.364394603999983, 49.940787196000059 ], [ -119.364217613999983, 49.940590407000101 ], [ -119.364105692999914, 49.940340711000083 ], [ -119.364101671999947, 49.93995588600005 ], [ -119.364101096999931, 49.93990149100005 ], [ -119.36884041499999, 49.939965006000087 ], [ -119.368936079999983, 49.93996541399999 ], [ -119.369340842999975, 49.939967136000085 ], [ -119.372068784999939, 49.939978727000124 ], [ -119.371918514999948, 49.941011669000069 ], [ -119.368483838999936, 49.940803438000103 ], [ -119.368293619999974, 49.942110250000042 ], [ -119.368026698999927, 49.942094062000116 ], [ -119.3680211099999, 49.942132457000135 ], [ -119.36668002499998, 49.942051118000023 ], [ -119.366632878999937, 49.942374920000077 ], [ -119.366626406999984, 49.942419367000099 ], [ -119.366672691999923, 49.942422174000079 ], [ -119.371801874999932, 49.942733171000036 ], [ -119.371716025999916, 49.943323238000119 ], [ -119.372251000999938, 49.943355661000062 ], [ -119.372039550999929, 49.944809056000118 ], [ -119.372972492999978, 49.94486559200007 ], [ -119.373174197000012, 49.947712437000114 ], [ -119.36870465799997, 49.947721099000034 ], [ -119.368712076999927, 49.948273102000073 ], [ -119.368746482999953, 49.950827810000114 ], [ -119.368778127000013, 49.953174366000027 ], [ -119.36879097399999, 49.95412751500011 ], [ -119.368804589999954, 49.955138897000026 ], [ -119.368871993999988, 49.960360215000037 ], [ -119.371172155999929, 49.960342530000055 ], [ -119.372251596999959, 49.960334208000106 ], [ -119.371936898999962, 49.962496412000043 ], [ -119.370719727999955, 49.962422669000077 ], [ -119.37060659199993, 49.963199796000033 ], [ -119.370610777, 49.96320005000009 ], [ -119.370462201999956, 49.964220572000066 ], [ -119.372831274999967, 49.964364091000022 ], [ -119.372532611999986, 49.966416100000089 ], [ -119.374567757999969, 49.966539348000076 ], [ -119.374046707999966, 49.970119943000043 ], [ -119.372293253999956, 49.970013758000022 ], [ -119.37223228499991, 49.970432585000047 ], [ -119.370117608999948, 49.970423997000132 ], [ -119.369781611999912, 49.96959730500005 ], [ -119.369250517, 49.96841819900002 ], [ -119.367713000999942, 49.968401805000028 ], [ -119.367168385999904, 49.968486426 ], [ -119.36616600399995, 49.968642188000096 ], [ -119.365744018999962, 49.968647851000043 ], [ -119.365703110999974, 49.968648387000094 ], [ -119.364965304999942, 49.968456502000024 ], [ -119.364370320999953, 49.968456495000034 ], [ -119.363242034999971, 49.968458268000056 ], [ -119.362062597999923, 49.968460092000036 ], [ -119.36186109499999, 49.968795693000054 ], [ -119.361865212999987, 49.969531061000112 ], [ -119.361244423999906, 49.970455820000062 ], [ -119.361272090999961, 49.970815805000065 ], [ -119.359551638999989, 49.970711417000111 ], [ -119.359516886999984, 49.970949689000058 ], [ -119.360481954999969, 49.971008248000089 ], [ -119.360400346999953, 49.97156783500008 ], [ -119.359935948999933, 49.97169052800006 ], [ -119.355483914999965, 49.972760702000116 ], [ -119.354811495999968, 49.972764234000039 ], [ -119.353812588999972, 49.972709435000091 ], [ -119.353355746999952, 49.972837122000051 ], [ -119.353024059999925, 49.972422668000085 ], [ -119.352981683999971, 49.97247292 ], [ -119.352985506, 49.972667313000038 ], [ -119.353250283999955, 49.973203595000086 ], [ -119.353413604999943, 49.973878088000035 ], [ -119.353673217999983, 49.974747299000043 ], [ -119.353680416999936, 49.975167710000065 ], [ -119.353465489999905, 49.975406740000082 ], [ -119.352325928999932, 49.975337527000107 ] ], [ [ -119.355879724999951, 49.967157725000085 ], [ -119.355882427999916, 49.96713920900001 ], [ -119.355750318999966, 49.967131187000049 ], [ -119.355747616999906, 49.967149703000068 ], [ -119.355879724999951, 49.967157725000085 ] ], [ [ -119.354715058999929, 49.962994576000021 ], [ -119.354733811999935, 49.962866075000122 ], [ -119.354661214999936, 49.962861666000094 ], [ -119.354642461999987, 49.962990166000111 ], [ -119.354715058999929, 49.962994576000021 ] ], [ [ -119.357068715999944, 49.957598779000065 ], [ -119.357088385999973, 49.957463924000123 ], [ -119.356149983999927, 49.957406937000044 ], [ -119.356130311999891, 49.957541792000072 ], [ -119.357068715999944, 49.957598779000065 ] ], [ [ -119.359392029999924, 49.953292214000101 ], [ -119.359460112999926, 49.952825245000042 ], [ -119.359299074999953, 49.952815469 ], [ -119.359468863999936, 49.951650901000065 ], [ -119.357686707999903, 49.951542692000011 ], [ -119.357396480999981, 49.953532769000091 ], [ -119.35515180099992, 49.953396435000109 ], [ -119.35510298299999, 49.953731046000044 ], [ -119.357512270999919, 49.953877375000026 ], [ -119.357613359999974, 49.95318421900005 ], [ -119.359392029999924, 49.953292214000101 ] ], [ [ -119.357818822999945, 49.947938399000087 ], [ -119.357833468999942, 49.947837960000065 ], [ -119.357192332999944, 49.947799022000012 ], [ -119.357389689999977, 49.94644563400005 ], [ -119.356271269999951, 49.946377699000095 ], [ -119.355928498999958, 49.948727822000144 ], [ -119.356293823999962, 49.948750014 ], [ -119.356134289999886, 49.949843799000128 ], [ -119.356794142999973, 49.949883879000019 ], [ -119.357084372999935, 49.947893793000112 ], [ -119.357818822999945, 49.947938399000087 ] ], [ [ -119.344963906999936, 49.939260904 ], [ -119.34483299399993, 49.936564922000109 ], [ -119.345250696999955, 49.936556471000173 ], [ -119.345245642999927, 49.936452449000086 ], [ -119.344406942999953, 49.936401400000094 ], [ -119.344441467999928, 49.937112567000071 ], [ -119.34402376099996, 49.937121013000088 ], [ -119.344115367999933, 49.939008202000146 ], [ -119.343697645999967, 49.939016648000077 ], [ -119.343710728999952, 49.939286246000023 ], [ -119.344963906999936, 49.939260904 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47288000", "BldgCostT": "30170000", "sL_LossRatio": "0.996719566288812", "sL_AssetLoss": "2536.25", "sL_BldgLoss": "2527.93", "sL_StrLoss": "2524.9", "sL_NStrLoss": "3.03", "sL_ContLoss": "8.32", "geom_point": "0101000020E61000006FF67265B1D55DC08FB9006EF5FB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.334309338999958, 49.978336051000078 ], [ -119.334296286999944, 49.978066453000082 ], [ -119.333878222999928, 49.978074868000093 ], [ -119.333812984999966, 49.976726875000089 ], [ -119.334231036999952, 49.976718460000029 ], [ -119.33421798799999, 49.976448862000034 ], [ -119.333799936999924, 49.976457276000062 ], [ -119.33374775, 49.975378882 ], [ -119.334165791999965, 49.975370467000076 ], [ -119.334126645999959, 49.97456167200005 ], [ -119.335084606999942, 49.974542384000074 ], [ -119.335531899999978, 49.97148706200008 ], [ -119.336492335999935, 49.971545551000077 ], [ -119.33690918299996, 49.971537150000103 ], [ -119.33683081399991, 49.969919560000108 ], [ -119.336412820999982, 49.969927983000076 ], [ -119.336386701999928, 49.969388786000174 ], [ -119.33513273600002, 49.969414048000083 ], [ -119.335080532999939, 49.968335653000068 ], [ -119.334662552999987, 49.968344069000025 ], [ -119.33455817299992, 49.966187278000064 ], [ -119.334987309999946, 49.966178636000109 ], [ -119.335812056999899, 49.966162025000081 ], [ -119.335799001999973, 49.96589242500005 ], [ -119.337258066999965, 49.965863024000079 ], [ -119.337307835999965, 49.965522899000085 ], [ -119.335028377999961, 49.965384070000034 ], [ -119.335552432999947, 49.961803637000045 ], [ -119.338993563999963, 49.962013201000055 ], [ -119.3394644299999, 49.958794018000034 ], [ -119.340581877999966, 49.958862047000103 ], [ -119.345013915000024, 49.959131749000043 ], [ -119.34449063299999, 49.962712240000073 ], [ -119.341489322999976, 49.962529622 ], [ -119.341049421999969, 49.962502849000053 ], [ -119.340959929999897, 49.9631148140001 ], [ -119.3407523299999, 49.964534364000052 ], [ -119.340700227999946, 49.96489060699999 ], [ -119.341232689999984, 49.964923013000067 ], [ -119.34297967899991, 49.965029319000031 ], [ -119.342456170999924, 49.968609771000054 ], [ -119.341786058999944, 49.968568998000109 ], [ -119.341899071999975, 49.970896752000087 ], [ -119.341481072999954, 49.970905193000036 ], [ -119.341507246999953, 49.971444388000123 ], [ -119.341095474000014, 49.971452703000089 ], [ -119.340253230999934, 49.971469705000047 ], [ -119.340187829999977, 49.970121716000044 ], [ -119.339769835999931, 49.970130152000131 ], [ -119.339756757999979, 49.969860553000046 ], [ -119.33933876699993, 49.969868988000094 ], [ -119.339325690999914, 49.969599390000077 ], [ -119.338907702999947, 49.969607823000047 ], [ -119.338894629999984, 49.969338224000118 ], [ -119.338476642999979, 49.969346655000024 ], [ -119.33846357399996, 49.969077057000121 ], [ -119.338045587999943, 49.969085486000026 ], [ -119.338084791999904, 49.969894281000101 ], [ -119.338502782999981, 49.9698858510001 ], [ -119.338589440999968, 49.971673230000057 ], [ -119.341082898999929, 49.97182498600008 ], [ -119.3409012799999, 49.973066648000071 ], [ -119.342303344999962, 49.973151955000098 ], [ -119.341779688999964, 49.976732365000039 ], [ -119.337986660999931, 49.976501542000065 ], [ -119.33799350299995, 49.976642659000014 ], [ -119.338829604999958, 49.9766257980001 ], [ -119.338842678999967, 49.976895395000113 ], [ -119.339260732999946, 49.976886963000069 ], [ -119.339299967999949, 49.977695755000063 ], [ -119.336791604999959, 49.977746332 ], [ -119.33677854099993, 49.977476733000039 ], [ -119.336360482999936, 49.977485158000079 ], [ -119.336347420999957, 49.977215560000069 ], [ -119.335929364999956, 49.977223982000055 ], [ -119.335916305999916, 49.976954384000074 ], [ -119.335498251, 49.976962805000021 ], [ -119.335563537999974, 49.978310796000059 ], [ -119.334309338999958, 49.978336051000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019951", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "154174978", "BldgCostT": "104234857", "sL_LossRatio": "0.998722101300424", "sL_AssetLoss": "14007.3700724", "sL_BldgLoss": "13989.4700724", "sL_StrLoss": "13983.0000724", "sL_NStrLoss": "6.47", "sL_ContLoss": "17.9", "geom_point": "0101000020E61000009F16F69375D65DC04956F26F1FF74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.361145299999947, 49.941051093000084 ], [ -119.35972392099994, 49.940774803000089 ], [ -119.358704809999949, 49.940759209000063 ], [ -119.356593297999922, 49.940334705000083 ], [ -119.355030801999945, 49.940303410000091 ], [ -119.353963188999984, 49.940108288 ], [ -119.353229199999973, 49.94007777700012 ], [ -119.352216476999956, 49.94003569299999 ], [ -119.351318001000024, 49.939891805000094 ], [ -119.350653692999984, 49.939699508000032 ], [ -119.350595373999965, 49.939686581000082 ], [ -119.350838289999928, 49.939681656000126 ], [ -119.350825167000025, 49.939412058000109 ], [ -119.352078338999959, 49.939386639000091 ], [ -119.352046310999938, 49.93872908200008 ], [ -119.35068091, 49.938646062000089 ], [ -119.350685470999963, 49.938614808000118 ], [ -119.350112193999934, 49.938579946000054 ], [ -119.350151424999979, 49.938311150000125 ], [ -119.350108611999985, 49.938308547000041 ], [ -119.350134952999937, 49.938128065000029 ], [ -119.35010012399999, 49.938125947000081 ], [ -119.350126466999924, 49.937945459000062 ], [ -119.350091734999964, 49.937943347000086 ], [ -119.350116921999955, 49.937770780000022 ], [ -119.350088445999972, 49.93776904800005 ], [ -119.350140003999911, 49.937415797000021 ], [ -119.350107971999975, 49.937413849000045 ], [ -119.350137243999882, 49.937213287000063 ], [ -119.350102084999946, 49.937211149000085 ], [ -119.350130791999931, 49.937014453000138 ], [ -119.350114298, 49.937013450000087 ], [ -119.350144132999944, 49.936809029000059 ], [ -119.350090210999966, 49.936805749000087 ], [ -119.350110128999972, 49.936669276 ], [ -119.350094920999979, 49.936668350000097 ], [ -119.350120106999967, 49.936495776000122 ], [ -119.350091731999967, 49.936494051000125 ], [ -119.350121593999987, 49.936289440000031 ], [ -119.350098746999919, 49.936288051000091 ], [ -119.350113328999925, 49.936188132000034 ], [ -119.348996890999928, 49.93621075900009 ], [ -119.348983776999916, 49.935941162000113 ], [ -119.348148386999952, 49.935958087000039 ], [ -119.348109060999917, 49.93514929300003 ], [ -119.348944438999979, 49.935132370000055 ], [ -119.348905101999904, 49.934323576000089 ], [ -119.349887667999951, 49.93430366300008 ], [ -119.349934759999897, 49.933980985000083 ], [ -119.347739337999883, 49.933847432000029 ], [ -119.347651115999952, 49.93357120600011 ], [ -119.347132813999963, 49.933203701000139 ], [ -119.347073140999981, 49.933180868000079 ], [ -119.34619529299999, 49.932844807000052 ], [ -119.346076741999937, 49.93278301000003 ], [ -119.345748676999975, 49.93276471900009 ], [ -119.345762908999973, 49.932619406000065 ], [ -119.345466, 49.932464589000062 ], [ -119.344727810999984, 49.932182589000014 ], [ -119.344130192999927, 49.932057113000035 ], [ -119.344022482999932, 49.932034496000028 ], [ -119.343793569999917, 49.93189137500012 ], [ -119.343574453999977, 49.931754394000087 ], [ -119.343562302999942, 49.931746799000038 ], [ -119.342260428999964, 49.931747694000101 ], [ -119.341260431999956, 49.931748383000041 ], [ -119.339904845999953, 49.931749278000041 ], [ -119.339409715999935, 49.931749596000017 ], [ -119.33939497199998, 49.931751086000098 ], [ -119.339719627999955, 49.929529846000072 ], [ -119.344340339999945, 49.9298112540001 ], [ -119.344408837999978, 49.929342253000065 ], [ -119.345460239, 49.929406257000061 ], [ -119.345731378999986, 49.92754938000013 ], [ -119.347720641999928, 49.927670448000072 ], [ -119.347914852999963, 49.926339925000029 ], [ -119.348774498999916, 49.926392233000044 ], [ -119.348857640999952, 49.925822546000056 ], [ -119.349250026999968, 49.925846420000042 ], [ -119.349292735999924, 49.92555375600007 ], [ -119.34939529799999, 49.925559995000114 ], [ -119.34942786199997, 49.925336832000013 ], [ -119.346422954999937, 49.925153973000079 ], [ -119.346945655999946, 49.921573290000083 ], [ -119.349524601999946, 49.921730233000098 ], [ -119.349711650999907, 49.920448243000109 ], [ -119.348770054999989, 49.92039094900008 ], [ -119.34885844199998, 49.919785223000119 ], [ -119.346855134999956, 49.919663297000085 ], [ -119.346957897999985, 49.918959234000042 ], [ -119.346613873999956, 49.918938293000053 ], [ -119.346741037999934, 49.918067070000042 ], [ -119.351849902, 49.918061129000172 ], [ -119.351856613999971, 49.918094469000025 ], [ -119.352101892999926, 49.918556415000047 ], [ -119.352469885999938, 49.919249360000023 ], [ -119.352924151999915, 49.920104729000101 ], [ -119.352967877999959, 49.920284422000123 ], [ -119.35300820799992, 49.920448038000075 ], [ -119.353023185, 49.920509008000039 ], [ -119.35302111299994, 49.920697400000101 ], [ -119.35301724499999, 49.921048466000087 ], [ -119.352994596999977, 49.923109637000046 ], [ -119.352983140000021, 49.924153525000094 ], [ -119.352973704999954, 49.925010796000073 ], [ -119.352958728999923, 49.925431630000041 ], [ -119.352949406, 49.925692411000064 ], [ -119.352928840999965, 49.926268282000116 ], [ -119.352915096999979, 49.926654713000076 ], [ -119.352905768999975, 49.926915981000079 ], [ -119.352895419999953, 49.927206903000098 ], [ -119.35289263099996, 49.927410728000048 ], [ -119.352870124999981, 49.929075531000116 ], [ -119.352867440999987, 49.92927353500005 ], [ -119.35286184, 49.929687495000081 ], [ -119.35283951299999, 49.931334346000014 ], [ -119.352821701, 49.932650911000081 ], [ -119.354169101999958, 49.932660744000081 ], [ -119.355675209999944, 49.932671708000036 ], [ -119.355637485000017, 49.933553597000056 ], [ -119.355615692999962, 49.934451694000124 ], [ -119.356719594999959, 49.934479103000051 ], [ -119.357008897999947, 49.9345869160001 ], [ -119.357286385999942, 49.934842203000095 ], [ -119.35734169599999, 49.934990985000034 ], [ -119.357351104999978, 49.935953307000069 ], [ -119.357355590999987, 49.936843201000059 ], [ -119.358728306999978, 49.936831707000081 ], [ -119.358712881999949, 49.939183390000075 ], [ -119.35864138099997, 49.939395795000095 ], [ -119.358436685999919, 49.939638911000031 ], [ -119.359184575999961, 49.939882988000058 ], [ -119.359381358999926, 49.939883762000115 ], [ -119.359744408999987, 49.939885139000076 ], [ -119.359925949999962, 49.939885821000104 ], [ -119.360047367999954, 49.939886277000021 ], [ -119.360067770999962, 49.940303717000141 ], [ -119.359859607999951, 49.940307955000087 ], [ -119.359799895999942, 49.940717653000142 ], [ -119.360737570999959, 49.940774587000121 ], [ -119.360863974999987, 49.939907163000086 ], [ -119.360551799999925, 49.93988820800007 ], [ -119.360652067999936, 49.939888591000077 ], [ -119.360833593999971, 49.939889248000156 ], [ -119.361015152999968, 49.939889950000101 ], [ -119.361196658999944, 49.939890642000087 ], [ -119.361378201999983, 49.939891322000079 ], [ -119.36155971, 49.939892010000065 ], [ -119.361741251999916, 49.93989269000015 ], [ -119.36192281299995, 49.939893391000041 ], [ -119.362104339999973, 49.939894046000092 ], [ -119.362285808999943, 49.939894746000064 ], [ -119.362467353999946, 49.939895424000063 ], [ -119.362648912999944, 49.939896124000015 ], [ -119.36283045499999, 49.939896801000081 ], [ -119.363011998999966, 49.939897477000024 ], [ -119.363193468999924, 49.939898174000092 ], [ -119.36337499499993, 49.939898827000057 ], [ -119.363556553999928, 49.93989952600004 ], [ -119.363919642, 49.93990087500007 ], [ -119.364101096999931, 49.93990149100005 ], [ -119.364101671999947, 49.93995588600005 ], [ -119.364105692999914, 49.940340711000083 ], [ -119.364217613999983, 49.940590407000101 ], [ -119.364394603999983, 49.940787196000059 ], [ -119.364653106, 49.940952785000029 ], [ -119.364692541999929, 49.940969857000049 ], [ -119.363669736999952, 49.940961829000038 ], [ -119.36344011599999, 49.940959996000046 ], [ -119.362735699999945, 49.941090998000099 ], [ -119.361145299999947, 49.941051093000084 ] ], [ [ -119.358387334999975, 49.940142923000082 ], [ -119.358383681999953, 49.940068126000078 ], [ -119.35746392799993, 49.940086835000095 ], [ -119.358387334999975, 49.940142923000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133419417", "BldgCostT": "89066667", "sL_LossRatio": "0.998068522523977", "sL_AssetLoss": "11444.278939", "sL_BldgLoss": "11422.174572", "sL_StrLoss": "11414.004092", "sL_NStrLoss": "8.17048", "sL_ContLoss": "22.104367", "geom_point": "0101000020E61000003FF5277532D75DC09E0081D615F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.358712881999949, 49.939183390000075 ], [ -119.358728306999978, 49.936831707000081 ], [ -119.357355590999987, 49.936843201000059 ], [ -119.357351104999978, 49.935953307000069 ], [ -119.35734169599999, 49.934990985000034 ], [ -119.357286385999942, 49.934842203000095 ], [ -119.357008897999947, 49.9345869160001 ], [ -119.356719594999959, 49.934479103000051 ], [ -119.355615692999962, 49.934451694000124 ], [ -119.355637485000017, 49.933553597000056 ], [ -119.355675209999944, 49.932671708000036 ], [ -119.354169101999958, 49.932660744000081 ], [ -119.352821701, 49.932650911000081 ], [ -119.35283951299999, 49.931334346000014 ], [ -119.35286184, 49.929687495000081 ], [ -119.352867440999987, 49.92927353500005 ], [ -119.352870124999981, 49.929075531000116 ], [ -119.35289263099996, 49.927410728000048 ], [ -119.352895419999953, 49.927206903000098 ], [ -119.352905768999975, 49.926915981000079 ], [ -119.352915096999979, 49.926654713000076 ], [ -119.352928840999965, 49.926268282000116 ], [ -119.352949406, 49.925692411000064 ], [ -119.352958728999923, 49.925431630000041 ], [ -119.352973704999954, 49.925010796000073 ], [ -119.352983140000021, 49.924153525000094 ], [ -119.352994596999977, 49.923109637000046 ], [ -119.35301724499999, 49.921048466000087 ], [ -119.35302111299994, 49.920697400000101 ], [ -119.353023185, 49.920509008000039 ], [ -119.35300820799992, 49.920448038000075 ], [ -119.352967877999959, 49.920284422000123 ], [ -119.353405902999967, 49.920235001000037 ], [ -119.353774087999966, 49.920193488000045 ], [ -119.353838789999955, 49.920169650000076 ], [ -119.358294472999958, 49.920137141000055 ], [ -119.358252697999887, 49.920423838000026 ], [ -119.356954311999942, 49.920344933000059 ], [ -119.356897629999949, 49.920733846000076 ], [ -119.359337689999947, 49.920882117000112 ], [ -119.359447453999962, 49.920128699000045 ], [ -119.359857298999927, 49.920125696000113 ], [ -119.364202933999962, 49.920128586000075 ], [ -119.364185484999922, 49.921335268000114 ], [ -119.364180611000023, 49.921671137000068 ], [ -119.36538610099997, 49.921696635000039 ], [ -119.365363366999972, 49.921852818000019 ], [ -119.365506412999963, 49.92186150000007 ], [ -119.365008858999914, 49.925279498000101 ], [ -119.365582337999925, 49.925314305000029 ], [ -119.365492861999954, 49.925928970000065 ], [ -119.367863907999947, 49.926072845000071 ], [ -119.36768205, 49.927322526000061 ], [ -119.371084036999918, 49.927528866000074 ], [ -119.371241225999938, 49.929459450000138 ], [ -119.373670648999962, 49.929384867000088 ], [ -119.373316084999956, 49.931823228000027 ], [ -119.373589487999936, 49.931839798000091 ], [ -119.373068757999974, 49.935420558000054 ], [ -119.367866250999953, 49.935105121000078 ], [ -119.367570680999933, 49.937135736000116 ], [ -119.372439399999948, 49.937430943 ], [ -119.372068784999939, 49.939978727000124 ], [ -119.369340842999975, 49.939967136000085 ], [ -119.368936079999983, 49.93996541399999 ], [ -119.36884041499999, 49.939965006000087 ], [ -119.364101096999931, 49.93990149100005 ], [ -119.363919642, 49.93990087500007 ], [ -119.363556553999928, 49.93989952600004 ], [ -119.36337499499993, 49.939898827000057 ], [ -119.363193468999924, 49.939898174000092 ], [ -119.363011998999966, 49.939897477000024 ], [ -119.36283045499999, 49.939896801000081 ], [ -119.362648912999944, 49.939896124000015 ], [ -119.362467353999946, 49.939895424000063 ], [ -119.362285808999943, 49.939894746000064 ], [ -119.362104339999973, 49.939894046000092 ], [ -119.36192281299995, 49.939893391000041 ], [ -119.361741251999916, 49.93989269000015 ], [ -119.36155971, 49.939892010000065 ], [ -119.361378201999983, 49.939891322000079 ], [ -119.361196658999944, 49.939890642000087 ], [ -119.361015152999968, 49.939889950000101 ], [ -119.360833593999971, 49.939889248000156 ], [ -119.360652067999936, 49.939888591000077 ], [ -119.360551799999925, 49.93988820800007 ], [ -119.360045960999969, 49.939857495000055 ], [ -119.360047367999954, 49.939886277000021 ], [ -119.359925949999962, 49.939885821000104 ], [ -119.359744408999987, 49.939885139000076 ], [ -119.359381358999926, 49.939883762000115 ], [ -119.359184575999961, 49.939882988000058 ], [ -119.358436685999919, 49.939638911000031 ], [ -119.35864138099997, 49.939395795000095 ], [ -119.358712881999949, 49.939183390000075 ] ], [ [ -119.3622695, 49.935111869000146 ], [ -119.362287639999963, 49.934987347000039 ], [ -119.362109063999966, 49.934976506000048 ], [ -119.362090923, 49.935101028000076 ], [ -119.3622695, 49.935111869000146 ] ], [ [ -119.367780075999974, 49.931415661000095 ], [ -119.367848575999943, 49.930944998000029 ], [ -119.366780895999909, 49.930880224000106 ], [ -119.366927450999952, 49.929873369000113 ], [ -119.365515635999927, 49.92978770200012 ], [ -119.365411439999946, 49.930503399000038 ], [ -119.366779045999948, 49.930586385000019 ], [ -119.366680790999965, 49.931261393000092 ], [ -119.367628063999973, 49.931318863000058 ], [ -119.36761542899994, 49.931405673000036 ], [ -119.367780075999974, 49.931415661000095 ] ], [ [ -119.359242851999952, 49.930768903000079 ], [ -119.359564535999965, 49.928561331000083 ], [ -119.359515091999981, 49.928558329000047 ], [ -119.359827711999941, 49.926412771000081 ], [ -119.357959963999946, 49.926299304000047 ], [ -119.357571337999957, 49.928965730000137 ], [ -119.35753993099992, 49.928963823000061 ], [ -119.357294073999967, 49.930650513000074 ], [ -119.359242851999952, 49.930768903000079 ] ], [ [ -119.357633627999917, 49.925357088000041 ], [ -119.357773185999989, 49.924399504000093 ], [ -119.356783258999982, 49.924339348000053 ], [ -119.356699678999988, 49.924912761000051 ], [ -119.355457118999979, 49.924837240000102 ], [ -119.355401110999949, 49.925221409000102 ], [ -119.357633627999917, 49.925357088000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5758917", "BldgCostT": "3971667", "sL_LossRatio": "0.999981240124129", "sL_AssetLoss": "788.9178", "sL_BldgLoss": "788.903", "sL_StrLoss": "788.8", "sL_NStrLoss": "0.103", "sL_ContLoss": "0.0148", "geom_point": "0101000020E6100000B2F56F0B14D85DC0D90B3F1711F84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.375212057999988, 49.935863976000071 ], [ -119.377949898999972, 49.936029820000037 ], [ -119.377531490999928, 49.940003197000088 ], [ -119.375807713999961, 49.939994504000069 ], [ -119.375753394999961, 49.939994276000107 ], [ -119.374373832999964, 49.939988469000092 ], [ -119.37479661, 49.937081069000051 ], [ -119.375033017999968, 49.937095393000064 ], [ -119.375212057999988, 49.935863976000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6024000", "BldgCostT": "3945000", "sL_LossRatio": "0.935322416342036", "sL_AssetLoss": "403.540122", "sL_BldgLoss": "377.440122", "sL_StrLoss": "368.000122", "sL_NStrLoss": "9.44", "sL_ContLoss": "26.1", "geom_point": "0101000020E610000049CB713C99D75DC04C1938A025F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365903204999924, 49.924260715000081 ], [ -119.366273671999963, 49.921715401000036 ], [ -119.372200939999956, 49.92184053400004 ], [ -119.372212385999944, 49.922273474000093 ], [ -119.372144421999977, 49.922269354000086 ], [ -119.372151855999974, 49.922420758000037 ], [ -119.371964251999913, 49.922637458000054 ], [ -119.371405238999941, 49.922953770000035 ], [ -119.370883137999954, 49.923001437000089 ], [ -119.370242363999949, 49.923019904000107 ], [ -119.370254659999944, 49.923574102000096 ], [ -119.370761981999962, 49.923572862000043 ], [ -119.370842367999927, 49.924560356000029 ], [ -119.365903204999924, 49.924260715000081 ] ], [ [ -119.371789527999965, 49.922253450000042 ], [ -119.371858765999903, 49.922252032000046 ], [ -119.37179033799994, 49.922247883000082 ], [ -119.371789527999965, 49.922253450000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.999988588544959", "sL_AssetLoss": "143.71524", "sL_BldgLoss": "143.7136", "sL_StrLoss": "143.7", "sL_NStrLoss": "0.0136", "sL_ContLoss": "0.00164", "geom_point": "0101000020E61000007DC2E11E6ED85DC0D5BFDA070FF74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381349852999932, 49.92911758600011 ], [ -119.382412917999929, 49.92906989100004 ], [ -119.38206737899992, 49.931205577000107 ], [ -119.381045121999932, 49.931215720000111 ], [ -119.381349852999932, 49.92911758600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "70.2", "sL_BldgLoss": "70.2", "sL_StrLoss": "70.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B72640C103D85DC0A19E3E027FF74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.375266097999926, 49.931462566000057 ], [ -119.37551559099991, 49.931477683000054 ], [ -119.37548086399994, 49.935087890000062 ], [ -119.374745502999986, 49.935043336000035 ], [ -119.375266097999926, 49.931462566000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13895834", "BldgCostT": "9583334", "sL_LossRatio": "1", "sL_AssetLoss": "1082.5", "sL_BldgLoss": "1082.5", "sL_StrLoss": "1082.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000497C934B88D55DC0F319D4A7EAF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.340532663, 49.910893465000036 ], [ -119.340576969999958, 49.910896165000032 ], [ -119.340149579999931, 49.913821884000058 ], [ -119.340053891999958, 49.914476870000065 ], [ -119.338132783999967, 49.914359779000037 ], [ -119.33785449500003, 49.916264016000078 ], [ -119.332310265999951, 49.91592590400009 ], [ -119.332833965999967, 49.91234524300009 ], [ -119.333703329999977, 49.912398280000055 ], [ -119.334754974999953, 49.912462427000037 ], [ -119.335033370999938, 49.91055818800006 ], [ -119.340532663, 49.910893465000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "149281583", "BldgCostT": "99773333", "sL_LossRatio": "0.99853454765036", "sL_AssetLoss": "12555.850079", "sL_BldgLoss": "12537.450079", "sL_StrLoss": "12530.800079", "sL_NStrLoss": "6.65", "sL_ContLoss": "18.4", "geom_point": "0101000020E61000002CB0BE89BAD65DC0C1D15D2B04F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352924151999915, 49.920104729000101 ], [ -119.352469885999938, 49.919249360000023 ], [ -119.352101892999926, 49.918556415000047 ], [ -119.351856613999971, 49.918094469000025 ], [ -119.351849902, 49.918061129000172 ], [ -119.346741037999934, 49.918067070000042 ], [ -119.347136488000018, 49.91535757800002 ], [ -119.350229673999962, 49.915545830000092 ], [ -119.350295615999983, 49.915093773000059 ], [ -119.349988649999943, 49.915075095000105 ], [ -119.350404243999947, 49.912225982000088 ], [ -119.34909611199997, 49.91214637700007 ], [ -119.34955464899997, 49.90900305100007 ], [ -119.346665282999979, 49.908827161000083 ], [ -119.344583080999968, 49.908700359000044 ], [ -119.344628149999963, 49.908391606000073 ], [ -119.344553499999904, 49.908387059000077 ], [ -119.344722114999954, 49.907231934000031 ], [ -119.345076155999948, 49.904806303000036 ], [ -119.347463924999957, 49.90495171200012 ], [ -119.347468049, 49.904923458000027 ], [ -119.348899721999913, 49.905010618000055 ], [ -119.349115352999931, 49.903532292000122 ], [ -119.351902036999974, 49.903701891000068 ], [ -119.352033167999949, 49.902802457000099 ], [ -119.354067403, 49.90292621600004 ], [ -119.354361057999981, 49.90091128800006 ], [ -119.354222240999945, 49.900902843000132 ], [ -119.354616423999943, 49.898197889000045 ], [ -119.354331424999927, 49.898180553000032 ], [ -119.354500037999955, 49.897023446000112 ], [ -119.351211903999953, 49.896823370000106 ], [ -119.351306304000019, 49.89617584400002 ], [ -119.346673004, 49.895893746000056 ], [ -119.346927253999979, 49.894150868000104 ], [ -119.346879426999934, 49.894147955000058 ], [ -119.346881636999953, 49.894132803000069 ], [ -119.345351780999948, 49.8940396140001 ], [ -119.345536770999956, 49.892771715000052 ], [ -119.343944121, 49.89267467700008 ], [ -119.344409850999938, 49.889483083000123 ], [ -119.342312183999965, 49.889355239000075 ], [ -119.342445921999953, 49.888438952000037 ], [ -119.343494264999947, 49.888750654000077 ], [ -119.345140795999967, 49.888613325000108 ], [ -119.345377324999944, 49.888888753000124 ], [ -119.345390680999955, 49.888898481000098 ], [ -119.345798004999921, 49.889195263000062 ], [ -119.345972724999939, 49.88938653200011 ], [ -119.346008921999925, 49.889476647000087 ], [ -119.346171630999919, 49.889881858000088 ], [ -119.346290128999925, 49.889979386000029 ], [ -119.346518577, 49.890023102000114 ], [ -119.346638861999935, 49.890080106000042 ], [ -119.346659055999979, 49.890102984000073 ], [ -119.34713418799997, 49.890639945000018 ], [ -119.348034249999955, 49.891657134000077 ], [ -119.348055576999968, 49.891798424000044 ], [ -119.348044180999949, 49.891914610000107 ], [ -119.348018097, 49.892179978000073 ], [ -119.347666206999975, 49.893490707000062 ], [ -119.347616622999965, 49.893897720000041 ], [ -119.347462618999955, 49.894426634000119 ], [ -119.347586300999936, 49.894556085000097 ], [ -119.347774055999963, 49.894572052000093 ], [ -119.347917345999988, 49.894490456000064 ], [ -119.348028926999959, 49.894086771000012 ], [ -119.348097828999983, 49.893837626000071 ], [ -119.348218074999949, 49.893626374000036 ], [ -119.34838254, 49.893466606000047 ], [ -119.349308998999902, 49.89285468300006 ], [ -119.349653937999932, 49.892703162000061 ], [ -119.349726854, 49.892686094000105 ], [ -119.350135274999971, 49.892590334000026 ], [ -119.351024196999902, 49.89238193100001 ], [ -119.351595997999951, 49.892247875000116 ], [ -119.352421172, 49.892177089000064 ], [ -119.352702967999932, 49.892103915000071 ], [ -119.352798036999957, 49.892059410000108 ], [ -119.352959322999979, 49.891983966000112 ], [ -119.35304794299995, 49.891942489000023 ], [ -119.353338980999951, 49.8919114320001 ], [ -119.35363354199994, 49.891932941000036 ], [ -119.354428727999974, 49.892058118000108 ], [ -119.354700565999977, 49.892139671000031 ], [ -119.354886853999915, 49.892223241000039 ], [ -119.355033545999902, 49.892367658000069 ], [ -119.355584496999938, 49.893430748000057 ], [ -119.355670832999976, 49.893467609000048 ], [ -119.355683179, 49.893472899000074 ], [ -119.355790415999962, 49.893465866000092 ], [ -119.355880109999987, 49.893416232000035 ], [ -119.355998397999969, 49.893083832000045 ], [ -119.356128143000021, 49.892989680000035 ], [ -119.356295553999971, 49.892943853000091 ], [ -119.356521362999956, 49.892957600000059 ], [ -119.358042071999989, 49.893456495000073 ], [ -119.358355628999917, 49.89348187100007 ], [ -119.358713967999961, 49.89344947700009 ], [ -119.35915572, 49.893362533000115 ], [ -119.358793396999928, 49.893018998000059 ], [ -119.358769768999977, 49.892922719000069 ], [ -119.358716176, 49.892704490000071 ], [ -119.358736328999925, 49.892480010000057 ], [ -119.358868295999955, 49.892333728000054 ], [ -119.358906314999956, 49.892291599000039 ], [ -119.359412422999952, 49.892017916000093 ], [ -119.360077501999953, 49.89165830200011 ], [ -119.36058220699995, 49.891340406000076 ], [ -119.361170938999948, 49.890879011000017 ], [ -119.362005363999955, 49.890225074000092 ], [ -119.362036706999945, 49.890200488000083 ], [ -119.362406654999972, 49.890049651 ], [ -119.362497307999902, 49.890012694000063 ], [ -119.362661438, 49.889987699000088 ], [ -119.362773110999967, 49.889970704000127 ], [ -119.363382107999954, 49.890011310000091 ], [ -119.363637215999972, 49.88998709400002 ], [ -119.364322886999958, 49.889692799000052 ], [ -119.364293502999928, 49.889990804000092 ], [ -119.364328505999978, 49.891690880000056 ], [ -119.364290683999911, 49.897148062000085 ], [ -119.361085268999886, 49.896393372000013 ], [ -119.359146340999956, 49.895616439000058 ], [ -119.358646769999936, 49.896502524000049 ], [ -119.358555381999977, 49.897312528000093 ], [ -119.358482086999985, 49.897508569000074 ], [ -119.358262644999982, 49.897739074000093 ], [ -119.357488527999934, 49.898351292 ], [ -119.35744225599997, 49.89843879500004 ], [ -119.357553906999925, 49.898583756000107 ], [ -119.358605641999986, 49.899222994000027 ], [ -119.35879139599993, 49.899396883000044 ], [ -119.358753103999945, 49.899602249000026 ], [ -119.356530665999983, 49.903084213000064 ], [ -119.356283070999922, 49.904562957000046 ], [ -119.356236415999916, 49.904682306000069 ], [ -119.356216178999915, 49.904734093000108 ], [ -119.35595451899999, 49.904898789000065 ], [ -119.354918954999974, 49.905193463000074 ], [ -119.354803260999972, 49.90524876300006 ], [ -119.354668666999942, 49.905404923000063 ], [ -119.354578854999957, 49.906433553000106 ], [ -119.354850356999961, 49.906575614000062 ], [ -119.35598682199992, 49.907440379000086 ], [ -119.356605737999971, 49.90779862200003 ], [ -119.357665637999943, 49.908219795000051 ], [ -119.357911024999936, 49.908283228000116 ], [ -119.358437725999963, 49.90841934200008 ], [ -119.359469160999978, 49.908584994000094 ], [ -119.360621626999915, 49.908620703000096 ], [ -119.361336625, 49.908559396000101 ], [ -119.36194048199998, 49.908416346000074 ], [ -119.362094008999946, 49.908543079000083 ], [ -119.362296799999939, 49.908590611000079 ], [ -119.363950774999964, 49.908321711000042 ], [ -119.364138871999955, 49.908364730000088 ], [ -119.364239340000026, 49.908490950000029 ], [ -119.364184823999921, 49.909374510000063 ], [ -119.364191696999967, 49.912160989000029 ], [ -119.364180050999963, 49.913967417000094 ], [ -119.364175691999947, 49.914643606000034 ], [ -119.364166606999916, 49.915532696000099 ], [ -119.364022085999935, 49.915699101000065 ], [ -119.363189101999978, 49.916118996000115 ], [ -119.363109289999912, 49.916186405000104 ], [ -119.363040799999979, 49.916340289000118 ], [ -119.363423180999945, 49.918064994000098 ], [ -119.36340728499998, 49.91884608600008 ], [ -119.363391619999987, 49.918982163000067 ], [ -119.363343305999962, 49.919401285000113 ], [ -119.363366903999932, 49.919575200000068 ], [ -119.363469596999948, 49.919734098000056 ], [ -119.363738314999921, 49.91996350400003 ], [ -119.363885114999974, 49.92003111000011 ], [ -119.364204409999928, 49.920027908000129 ], [ -119.364202933999962, 49.920128586000075 ], [ -119.359857298999927, 49.920125696000113 ], [ -119.359447453999962, 49.920128699000045 ], [ -119.35949988, 49.919768838000039 ], [ -119.358358245999952, 49.919699473000065 ], [ -119.358294472999958, 49.920137141000055 ], [ -119.353838789999955, 49.920169650000076 ], [ -119.353774087999966, 49.920193488000045 ], [ -119.353405902999967, 49.920235001000037 ], [ -119.352967877999959, 49.920284422000123 ], [ -119.352924151999915, 49.920104729000101 ] ], [ [ -119.353333909999904, 49.916087999000084 ], [ -119.353346427999924, 49.916002141000071 ], [ -119.35264220699996, 49.915959310000105 ], [ -119.352578087999945, 49.916399013000117 ], [ -119.352922096999933, 49.916419936000032 ], [ -119.352833769999904, 49.917025668000115 ], [ -119.353018371999894, 49.917036895000074 ], [ -119.353158291999975, 49.916077318000134 ], [ -119.353333909999904, 49.916087999000084 ] ], [ [ -119.357372069999911, 49.91461079700008 ], [ -119.357384765999925, 49.914523664000072 ], [ -119.35722688499996, 49.914514067 ], [ -119.357214189000018, 49.914601200000057 ], [ -119.357372069999911, 49.91461079700008 ] ], [ [ -119.359520249, 49.911979138000063 ], [ -119.359496453999952, 49.911491707000081 ], [ -119.358456243999967, 49.911428493000052 ], [ -119.358305171999945, 49.912465496000038 ], [ -119.359128527999957, 49.912515533000096 ], [ -119.359102762999967, 49.91198763600007 ], [ -119.359520249, 49.911979138000063 ] ], [ [ -119.361788290999968, 49.89371184700012 ], [ -119.362033924999977, 49.892024092000106 ], [ -119.361050104999919, 49.891964300000069 ], [ -119.361050769999963, 49.891977958000034 ], [ -119.36063345799991, 49.891986460000105 ], [ -119.360636362999969, 49.89204599100006 ], [ -119.360780703, 49.892054765000111 ], [ -119.360550438999923, 49.893636615000084 ], [ -119.361788290999968, 49.89371184700012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "139.2", "sL_BldgLoss": "139.2", "sL_StrLoss": "139.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008489160B49D55DC04884CAE895F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.331939779999956, 49.911997582000062 ], [ -119.33188775399999, 49.910919174000135 ], [ -119.331604195999972, 49.910924878000102 ], [ -119.331633887999956, 49.91030435000004 ], [ -119.331634187999924, 49.910290296 ], [ -119.331644104999896, 49.909844620000072 ], [ -119.33183573, 49.909840765000133 ], [ -119.331822724999938, 49.909571163000088 ], [ -119.33221448799999, 49.909563281000082 ], [ -119.333075141999984, 49.909545960000074 ], [ -119.33312719299991, 49.91062436700004 ], [ -119.333143625999952, 49.910624037000055 ], [ -119.333544672999949, 49.910615963000119 ], [ -119.333609753999923, 49.911963971000041 ], [ -119.333403882999946, 49.911968116 ], [ -119.331939779999956, 49.911997582000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "192254667", "BldgCostT": "122861667", "sL_LossRatio": "0.998688585690534", "sL_AssetLoss": "13954.400122", "sL_BldgLoss": "13936.100122", "sL_StrLoss": "13929.500122", "sL_NStrLoss": "6.6", "sL_ContLoss": "18.3", "geom_point": "0101000020E6100000DECC74F16FD75DC0210B1CF9D1F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.364175691999947, 49.914643606000034 ], [ -119.364180050999963, 49.913967417000094 ], [ -119.364191696999967, 49.912160989000029 ], [ -119.364184823999921, 49.909374510000063 ], [ -119.364239340000026, 49.908490950000029 ], [ -119.364138871999955, 49.908364730000088 ], [ -119.363950774999964, 49.908321711000042 ], [ -119.362296799999939, 49.908590611000079 ], [ -119.362094008999946, 49.908543079000083 ], [ -119.36194048199998, 49.908416346000074 ], [ -119.361336625, 49.908559396000101 ], [ -119.360621626999915, 49.908620703000096 ], [ -119.359469160999978, 49.908584994000094 ], [ -119.358437725999963, 49.90841934200008 ], [ -119.357911024999936, 49.908283228000116 ], [ -119.357665637999943, 49.908219795000051 ], [ -119.356605737999971, 49.90779862200003 ], [ -119.35598682199992, 49.907440379000086 ], [ -119.354850356999961, 49.906575614000062 ], [ -119.354578854999957, 49.906433553000106 ], [ -119.354668666999942, 49.905404923000063 ], [ -119.354803260999972, 49.90524876300006 ], [ -119.354918954999974, 49.905193463000074 ], [ -119.35595451899999, 49.904898789000065 ], [ -119.356216178999915, 49.904734093000108 ], [ -119.356236415999916, 49.904682306000069 ], [ -119.356283070999922, 49.904562957000046 ], [ -119.356530665999983, 49.903084213000064 ], [ -119.358753103999945, 49.899602249000026 ], [ -119.35879139599993, 49.899396883000044 ], [ -119.358605641999986, 49.899222994000027 ], [ -119.357553906999925, 49.898583756000107 ], [ -119.35744225599997, 49.89843879500004 ], [ -119.357488527999934, 49.898351292 ], [ -119.358262644999982, 49.897739074000093 ], [ -119.358482086999985, 49.897508569000074 ], [ -119.358555381999977, 49.897312528000093 ], [ -119.358646769999936, 49.896502524000049 ], [ -119.359146340999956, 49.895616439000058 ], [ -119.361085268999886, 49.896393372000013 ], [ -119.364290683999911, 49.897148062000085 ], [ -119.364821111, 49.897076425000073 ], [ -119.366392334999929, 49.896652529000029 ], [ -119.366853320999923, 49.896529702000088 ], [ -119.367056371999979, 49.896507724000045 ], [ -119.367209620999986, 49.896530565000027 ], [ -119.367328689999965, 49.896605522000094 ], [ -119.367581811999941, 49.89717180600006 ], [ -119.367604871999902, 49.897189259000086 ], [ -119.368497318999957, 49.897864102000064 ], [ -119.368652463999922, 49.897892849000087 ], [ -119.368787243999961, 49.897917818000046 ], [ -119.369044709, 49.89790635500006 ], [ -119.369685356999966, 49.897672502000042 ], [ -119.37045858099999, 49.89759388100007 ], [ -119.370609617999932, 49.8975495890001 ], [ -119.370711161999964, 49.897519798000125 ], [ -119.370875260999938, 49.897429513000112 ], [ -119.371076329999937, 49.897238501000075 ], [ -119.371162190999911, 49.897032386000078 ], [ -119.371183893999927, 49.896835009000043 ], [ -119.370986857999924, 49.896315502000043 ], [ -119.370987732999978, 49.896261249000126 ], [ -119.370989832999967, 49.896131460000106 ], [ -119.371116008999962, 49.895984663000043 ], [ -119.371174729999936, 49.895965736000043 ], [ -119.371441548999954, 49.895879796000088 ], [ -119.37165264, 49.895874908000117 ], [ -119.372465332999937, 49.895856116000139 ], [ -119.372681113999931, 49.895890879000063 ], [ -119.372912138999951, 49.896013270000061 ], [ -119.37315978299992, 49.896300123000039 ], [ -119.373575545999984, 49.897074943000099 ], [ -119.37381123599999, 49.897671673000055 ], [ -119.373891318999981, 49.897874389000087 ], [ -119.374012914999952, 49.897980214000036 ], [ -119.374174363999956, 49.898023428 ], [ -119.374651472000011, 49.898029776000094 ], [ -119.375096710999955, 49.898033588000054 ], [ -119.37589819399993, 49.898040407000096 ], [ -119.376996795999943, 49.898050085000115 ], [ -119.37702174899999, 49.899880400000015 ], [ -119.37702210799992, 49.900004012000053 ], [ -119.377027148999929, 49.901768226000108 ], [ -119.375935009999978, 49.90175168000011 ], [ -119.375915659, 49.90218311500012 ], [ -119.375927005999955, 49.902202130000084 ], [ -119.376150544999973, 49.902577550000125 ], [ -119.376213823999962, 49.902796329000054 ], [ -119.376213625, 49.903683181000105 ], [ -119.37702332399999, 49.903690696000076 ], [ -119.377767505999913, 49.903649096 ], [ -119.377759107999935, 49.904544482000091 ], [ -119.377738592999961, 49.905417506000042 ], [ -119.375418954999986, 49.905415349000052 ], [ -119.373524423999967, 49.905413586000073 ], [ -119.373204395999977, 49.905413294000063 ], [ -119.372772626999975, 49.905412872000085 ], [ -119.372438259999967, 49.905412566000052 ], [ -119.369917709999967, 49.905410104000104 ], [ -119.369908730999953, 49.906806468000049 ], [ -119.369906744999966, 49.907121261000057 ], [ -119.36989372, 49.909152100000078 ], [ -119.369871198999959, 49.913585003000023 ], [ -119.369858931999957, 49.9181404 ], [ -119.367559686999954, 49.918127366000114 ], [ -119.366236270999977, 49.918119854000103 ], [ -119.365278694999958, 49.91811440500004 ], [ -119.364967294999957, 49.91816869000008 ], [ -119.364848997999957, 49.918231898000101 ], [ -119.364309877999958, 49.918813290000159 ], [ -119.364220386999989, 49.919043609 ], [ -119.364187110999936, 49.919272794000058 ], [ -119.364204409999928, 49.920027908000129 ], [ -119.363885114999974, 49.92003111000011 ], [ -119.363738314999921, 49.91996350400003 ], [ -119.363469596999948, 49.919734098000056 ], [ -119.363366903999932, 49.919575200000068 ], [ -119.363343305999962, 49.919401285000113 ], [ -119.363391619999987, 49.918982163000067 ], [ -119.36340728499998, 49.91884608600008 ], [ -119.363423180999945, 49.918064994000098 ], [ -119.363040799999979, 49.916340289000118 ], [ -119.363109289999912, 49.916186405000104 ], [ -119.363189101999978, 49.916118996000115 ], [ -119.364022085999935, 49.915699101000065 ], [ -119.364166606999916, 49.915532696000099 ], [ -119.364175691999947, 49.914643606000034 ] ], [ [ -119.36593204899998, 49.914459813000065 ], [ -119.366075000999942, 49.913477457000084 ], [ -119.365712214999974, 49.913455433000131 ], [ -119.36584134499995, 49.912568076000071 ], [ -119.364979209999916, 49.912515735000078 ], [ -119.365002545999985, 49.912992655000075 ], [ -119.365253432999936, 49.913007887000049 ], [ -119.36506623299999, 49.914294160000068 ], [ -119.365071782999976, 49.914407589000056 ], [ -119.36593204899998, 49.914459813000065 ] ], [ [ -119.3666799, 49.908997743000029 ], [ -119.366831473999966, 49.90795588600011 ], [ -119.366236835999956, 49.907919787000033 ], [ -119.366233852999954, 49.907940289000102 ], [ -119.365977194, 49.907924707000056 ], [ -119.36594415399999, 49.908151795000052 ], [ -119.365826164999987, 49.908144631000063 ], [ -119.365709328999941, 49.908947592000104 ], [ -119.366381450999896, 49.908988396000069 ], [ -119.366382714999958, 49.908979702000174 ], [ -119.3666799, 49.908997743000029 ] ], [ [ -119.359186690999977, 49.907860377000077 ], [ -119.359281601999953, 49.907208736000051 ], [ -119.358162797999938, 49.907140736000045 ], [ -119.35806787199995, 49.907792376000046 ], [ -119.359186690999977, 49.907860377000077 ] ], [ [ -119.36510419899993, 49.902835475000124 ], [ -119.365204203999937, 49.902148151000091 ], [ -119.364890191999962, 49.90215455800007 ], [ -119.364922958999927, 49.902824469000088 ], [ -119.36510419899993, 49.902835475000124 ] ], [ [ -119.366943056999943, 49.902150838000118 ], [ -119.366952955999963, 49.902082779000061 ], [ -119.365299583999928, 49.901982388000093 ], [ -119.365302952999926, 49.902051252000064 ], [ -119.366943056999943, 49.902150838000118 ] ], [ [ -119.374935804999922, 49.902521810000067 ], [ -119.374906390999982, 49.90192295200012 ], [ -119.374227685, 49.901881795000108 ], [ -119.374236019999955, 49.901824436000041 ], [ -119.374156082999988, 49.901819588000095 ], [ -119.374105773999972, 49.902165824000136 ], [ -119.374001085999964, 49.90215947500009 ], [ -119.373957061999974, 49.902462457000091 ], [ -119.374935804999922, 49.902521810000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "1", "sL_AssetLoss": "432", "sL_BldgLoss": "432", "sL_StrLoss": "432", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E4B25DE3ABD35DC0C03A336637F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.304859328999953, 49.87473050100008 ], [ -119.310398363999965, 49.875070022000102 ], [ -119.30987333399996, 49.878650758000049 ], [ -119.304333868999919, 49.878311213000075 ], [ -119.304859328999953, 49.87473050100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "48.2", "sL_BldgLoss": "48.2", "sL_StrLoss": "48.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B800D99024D45DC0BF982D5995EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.314638385999956, 49.864848302000055 ], [ -119.314625495999948, 49.864578695000013 ], [ -119.313791315999978, 49.864595353000055 ], [ -119.313765545999956, 49.864056138000059 ], [ -119.313348461999965, 49.864064466000045 ], [ -119.313296936999976, 49.862986035000084 ], [ -119.314548165999895, 49.862961048000081 ], [ -119.314561052999977, 49.86323065600002 ], [ -119.314978131999965, 49.863222325 ], [ -119.314991022999905, 49.863491932000102 ], [ -119.315825181999983, 49.863475264000016 ], [ -119.315838077999956, 49.863744871000051 ], [ -119.316255159999926, 49.863736535000079 ], [ -119.316293853999952, 49.864545356000093 ], [ -119.31587676499997, 49.864553693000069 ], [ -119.315889660999957, 49.864823300000026 ], [ -119.314638385999956, 49.864848302000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5336000", "BldgCostT": "3680000", "sL_LossRatio": "1", "sL_AssetLoss": "493.1", "sL_BldgLoss": "493.1", "sL_StrLoss": "493.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FB487A4B3CD5DC07AA05FA54CFF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.216990297999985, 49.992899935000047 ], [ -119.217132799999902, 49.992908765000088 ], [ -119.216993119, 49.993845701000055 ], [ -119.216929266999912, 49.994273989000035 ], [ -119.21667564, 49.995975122000083 ], [ -119.216599097999989, 49.996488477000057 ], [ -119.211046029, 49.996144269000048 ], [ -119.211580162999951, 49.992564583000039 ], [ -119.216990297999985, 49.992899935000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "446.2", "sL_BldgLoss": "446.2", "sL_StrLoss": "446.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B527163276D15DC07547ADCD52EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.27043251399999, 49.859909673000104 ], [ -119.275204362999943, 49.8602038000001 ], [ -119.275402076999981, 49.860580899000141 ], [ -119.275554993, 49.861163892000036 ], [ -119.275577105999957, 49.86251642800007 ], [ -119.275578004999915, 49.862572604999983 ], [ -119.275582611999937, 49.862876906000082 ], [ -119.275441947, 49.86383158500005 ], [ -119.269904530999895, 49.863490292000023 ], [ -119.27043251399999, 49.859909673000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "44.5", "sL_BldgLoss": "44.5", "sL_StrLoss": "44.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027C62A8CCACD5DC0B4343B7B7CEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.215194604999965, 49.872189213000084 ], [ -119.215182265999914, 49.871919588000047 ], [ -119.214765082999989, 49.871927562000117 ], [ -119.214752745999988, 49.871657936000091 ], [ -119.214335566999978, 49.8716659070001 ], [ -119.214310899999987, 49.871126655000076 ], [ -119.213059374999887, 49.8711505630001 ], [ -119.213026825999947, 49.870438586000063 ], [ -119.21299774499991, 49.86980243200005 ], [ -119.214666399999928, 49.869770554000056 ], [ -119.2146910699999, 49.870309807000069 ], [ -119.215108236999953, 49.870301833000056 ], [ -119.215132911999916, 49.870841084000112 ], [ -119.216384429999934, 49.870817155000083 ], [ -119.216372084999989, 49.870547530000181 ], [ -119.216789252999931, 49.870539551000014 ], [ -119.216776907999986, 49.87026992500008 ], [ -119.218028406999935, 49.870245978000113 ], [ -119.218060908999931, 49.870955315000039 ], [ -119.218077822999987, 49.871324479000108 ], [ -119.217300148999954, 49.871339361000082 ], [ -119.217243471999964, 49.871340446000083 ], [ -119.217244975999904, 49.871373271000095 ], [ -119.217268171999976, 49.87187969600005 ], [ -119.216850990999902, 49.871887677000068 ], [ -119.216863338999985, 49.872157303000037 ], [ -119.215194604999965, 49.872189213000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5976417", "BldgCostT": "4121667", "sL_LossRatio": "1", "sL_AssetLoss": "368.5", "sL_BldgLoss": "368.5", "sL_StrLoss": "368.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DAF38835CC95DC03B394371C7F24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.144538100999966, 49.89814281400011 ], [ -119.144988300999984, 49.897975891000087 ], [ -119.145520091999927, 49.897972204000098 ], [ -119.145857588999917, 49.898034008000089 ], [ -119.14618511099998, 49.898040997000045 ], [ -119.146243384999963, 49.897966138000086 ], [ -119.146297799999985, 49.897896301000095 ], [ -119.146271986, 49.897750627000079 ], [ -119.146253901999955, 49.897648780000026 ], [ -119.14604059, 49.897356188000124 ], [ -119.144930779999967, 49.896432897000061 ], [ -119.14479961699999, 49.896189701000011 ], [ -119.144825696999973, 49.896033038 ], [ -119.14484442, 49.895920776000082 ], [ -119.144870082999915, 49.895766559000059 ], [ -119.144971618999989, 49.895157107000081 ], [ -119.144937656999957, 49.894835352000044 ], [ -119.144909291999923, 49.894566442000048 ], [ -119.144905905999977, 49.894534198000088 ], [ -119.144907360000019, 49.894473714000114 ], [ -119.144922304999938, 49.893857590000017 ], [ -119.144716806999938, 49.892480044000102 ], [ -119.146992806999961, 49.89262288900008 ], [ -119.146614468999957, 49.895140317000042 ], [ -119.149094909999945, 49.895295937000043 ], [ -119.148779720999968, 49.897393716000046 ], [ -119.148557020999974, 49.898875791000115 ], [ -119.146059665999985, 49.898719111000048 ], [ -119.145277456999906, 49.898670024000118 ], [ -119.144876097999926, 49.901339568000012 ], [ -119.143272464999981, 49.901238916000075 ], [ -119.143609107999978, 49.900527128000114 ], [ -119.143613216999938, 49.900518489000042 ], [ -119.14366219799993, 49.90032040200002 ], [ -119.143739776999908, 49.900006823000076 ], [ -119.14384141499994, 49.899596070000023 ], [ -119.143907786999961, 49.899327717000126 ], [ -119.14395189399994, 49.899149405000095 ], [ -119.143968222999916, 49.898983604000094 ], [ -119.14397815399991, 49.898882525000062 ], [ -119.143989020999967, 49.898772300000061 ], [ -119.144165212, 49.898363306000078 ], [ -119.144538100999966, 49.89814281400011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6853666", "BldgCostT": "4726666", "sL_LossRatio": "1", "sL_AssetLoss": "533.9", "sL_BldgLoss": "533.9", "sL_StrLoss": "533.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009114CB0CDFD05DC07788E2020EF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.260316451999984, 49.877697095000023 ], [ -119.260845347999947, 49.874116593000075 ], [ -119.261635003999956, 49.874165334000104 ], [ -119.261620336999954, 49.873851431000041 ], [ -119.261601660999972, 49.873451731000031 ], [ -119.26201884299999, 49.87344358900004 ], [ -119.262006242999959, 49.873173973000128 ], [ -119.262423421999983, 49.873165828000026 ], [ -119.262410818999982, 49.872896212000057 ], [ -119.263245171999941, 49.872879919000056 ], [ -119.263232565999957, 49.872610303000094 ], [ -119.264901260999977, 49.872577700000058 ], [ -119.264913876999941, 49.872847317000087 ], [ -119.266582576999923, 49.872814690999988 ], [ -119.266595202999923, 49.873084307000084 ], [ -119.267012379999926, 49.873076147000084 ], [ -119.267032200999935, 49.873499348000031 ], [ -119.267050263999963, 49.873884994000022 ], [ -119.265381526999988, 49.873917628000108 ], [ -119.265394144999959, 49.874187245000016 ], [ -119.26455977099999, 49.874203553000044 ], [ -119.264566445999947, 49.874346224000064 ], [ -119.26638398099999, 49.87445833900005 ], [ -119.266067472999964, 49.876602847000157 ], [ -119.26634214099991, 49.876597476000086 ], [ -119.266380018999939, 49.877406324000091 ], [ -119.265947631999921, 49.87741478000008 ], [ -119.26585551299999, 49.878038867000036 ], [ -119.261066872999976, 49.877743415000054 ], [ -119.260316451999984, 49.877697095000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4292000", "BldgCostT": "2960000", "sL_LossRatio": "1", "sL_AssetLoss": "328", "sL_BldgLoss": "328", "sL_StrLoss": "328", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D25C9944BD05DC06D9D661ECC054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.251779376999949, 50.044270696000076 ], [ -119.251101502000012, 50.044104095000087 ], [ -119.250767501000027, 50.04410980100004 ], [ -119.250373914, 50.044378903000073 ], [ -119.249169687999967, 50.044924400000056 ], [ -119.249144190999985, 50.044928994000045 ], [ -119.249395157999942, 50.043239491000087 ], [ -119.250338997999947, 50.043399318000127 ], [ -119.251903982999963, 50.043438222000056 ], [ -119.2532074699999, 50.043355238000039 ], [ -119.253848646000037, 50.04339036300005 ], [ -119.254021415999944, 50.043432734000127 ], [ -119.255303653999974, 50.043998774000045 ], [ -119.255635496999972, 50.044092704000072 ], [ -119.256142497999974, 50.044182606000042 ], [ -119.256655397999921, 50.044223200000033 ], [ -119.257123403999969, 50.044178797000029 ], [ -119.257397306999934, 50.044081903000091 ], [ -119.257602864999981, 50.043965185000076 ], [ -119.258035512999967, 50.04371950300002 ], [ -119.258040903, 50.043716433000071 ], [ -119.258316993000037, 50.044087764000032 ], [ -119.258520960999959, 50.044314133000071 ], [ -119.258581079999928, 50.044625485000061 ], [ -119.258592226999951, 50.044983765000019 ], [ -119.258542773, 50.045341742000119 ], [ -119.258225833999973, 50.045322248000041 ], [ -119.2581252, 50.046000591000059 ], [ -119.25806282399995, 50.046044793000078 ], [ -119.257491720999951, 50.046272740000113 ], [ -119.257211945999984, 50.04650060400008 ], [ -119.256767006999951, 50.046669798000025 ], [ -119.255736723999959, 50.046669405000095 ], [ -119.255569717999919, 50.046711313000102 ], [ -119.2551790799999, 50.046896957000108 ], [ -119.254748327999977, 50.047312295000047 ], [ -119.254569461999978, 50.047592314000035 ], [ -119.254372323999974, 50.047937045000069 ], [ -119.254232827999942, 50.048399781000093 ], [ -119.254200078999972, 50.0486486980001 ], [ -119.254171322999952, 50.048704396000055 ], [ -119.254010406999924, 50.048945730000028 ], [ -119.252576435999941, 50.048857473000048 ], [ -119.253166098999912, 50.048219995000075 ], [ -119.253207196999966, 50.047922411000066 ], [ -119.253913706, 50.046603605000044 ], [ -119.254194420000019, 50.045411499000089 ], [ -119.254118403999925, 50.04498989500005 ], [ -119.25380800399995, 50.04460969600008 ], [ -119.253503812999924, 50.04439889300005 ], [ -119.251779376999949, 50.044270696000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2631750", "BldgCostT": "1815000", "sL_LossRatio": "1", "sL_AssetLoss": "130", "sL_BldgLoss": "130", "sL_StrLoss": "130", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC376BAE22C65DC00CAD6FDC39014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09495759099994, 50.011008204000063 ], [ -119.094519239999954, 50.010252146000091 ], [ -119.094416890999952, 50.010147531000023 ], [ -119.093663043999953, 50.009835147000032 ], [ -119.09348817399993, 50.009669778000017 ], [ -119.093286953999964, 50.009540672000057 ], [ -119.09303472, 50.009520147000089 ], [ -119.092438974999979, 50.009594190000037 ], [ -119.09264391899994, 50.008244909000048 ], [ -119.098197558999956, 50.008595097000061 ], [ -119.098153742999941, 50.008883807000068 ], [ -119.099200347999925, 50.008949770000164 ], [ -119.098927435999926, 50.01074820300007 ], [ -119.098872243999949, 50.010610095000054 ], [ -119.098751534999977, 50.01040796700007 ], [ -119.098649227999942, 50.010303370000017 ], [ -119.09850692, 50.010244265000033 ], [ -119.098391512999953, 50.010483125000107 ], [ -119.098282607999963, 50.010549193000074 ], [ -119.098197410999916, 50.010515522000041 ], [ -119.098081419999943, 50.010420108000034 ], [ -119.098001054999912, 50.010181601000077 ], [ -119.097959354999972, 50.009871238000038 ], [ -119.097899241, 50.0097746100001 ], [ -119.097677211999951, 50.009807315000081 ], [ -119.097481185999968, 50.010120642000061 ], [ -119.097308033999965, 50.010315288000143 ], [ -119.097263099999935, 50.010570946000058 ], [ -119.097298750999954, 50.010752342000075 ], [ -119.097277106000021, 50.010898352000055 ], [ -119.097155435999952, 50.010991922000137 ], [ -119.096920983999965, 50.011061068000096 ], [ -119.096781465999982, 50.011064655000062 ], [ -119.096455532, 50.010956410000119 ], [ -119.096331934999967, 50.011004716000045 ], [ -119.096015829999985, 50.011571216000021 ], [ -119.095696155999946, 50.011606408000098 ], [ -119.095060750999949, 50.011130606000073 ], [ -119.09495759099994, 50.011008204000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "159.5", "sL_BldgLoss": "159.5", "sL_StrLoss": "159.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B2E95AF32D15DC0A3BCE2EBE3ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.268013867999954, 49.857779500000021 ], [ -119.268933281999921, 49.857824491000031 ], [ -119.270131839999962, 49.857975651000174 ], [ -119.271535325999977, 49.858152616 ], [ -119.271366124999986, 49.859300391000062 ], [ -119.265829287999949, 49.85895888900005 ], [ -119.265975724999961, 49.85796635300008 ], [ -119.26724871099999, 49.85780640400008 ], [ -119.268013867999954, 49.857779500000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5336000", "BldgCostT": "3680000", "sL_LossRatio": "1", "sL_AssetLoss": "373.9", "sL_BldgLoss": "373.9", "sL_StrLoss": "373.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009EB7373F9D45DC037B00BF5AAF44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.324422569999939, 49.913151692000092 ], [ -119.324946857, 49.909571054000018 ], [ -119.330490260999937, 49.909909542 ], [ -119.330417190999967, 49.910409022000088 ], [ -119.330609300999953, 49.910405159000064 ], [ -119.330596302999965, 49.910135557000103 ], [ -119.33101378, 49.910127162000073 ], [ -119.331000779999954, 49.909857559000066 ], [ -119.331644104999896, 49.909844620000072 ], [ -119.331634187999924, 49.910290296 ], [ -119.331633887999956, 49.91030435000004 ], [ -119.331604195999972, 49.910924878000102 ], [ -119.331470268999965, 49.91092757200007 ], [ -119.331483271999929, 49.911197174000051 ], [ -119.331065785999911, 49.911205572000071 ], [ -119.331078786999953, 49.911475173000071 ], [ -119.330258803999953, 49.911491662000067 ], [ -119.330247513999936, 49.911568835000018 ], [ -119.330256805999937, 49.911761566000038 ], [ -119.330219206999942, 49.911762322000108 ], [ -119.329966403999961, 49.913490204000063 ], [ -119.324422569999939, 49.913151692000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035334", "BldgCostT": "2093334", "sL_LossRatio": "1", "sL_AssetLoss": "188", "sL_BldgLoss": "188", "sL_StrLoss": "188", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B31A7521D4D35DC0BAE1B17E37FA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.307529717999927, 49.956121429000092 ], [ -119.308055821, 49.952541083000064 ], [ -119.31038862299999, 49.952683782000086 ], [ -119.31038851199996, 49.953576700000077 ], [ -119.310319933999978, 49.954696594000026 ], [ -119.310340868, 49.955149491000043 ], [ -119.313275291999958, 49.955121449000067 ], [ -119.313078640999947, 49.956460776000071 ], [ -119.308141693, 49.956158869000049 ], [ -119.307529717999927, 49.956121429000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.9", "sL_BldgLoss": "49.9", "sL_StrLoss": "49.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F202D306F3CF5DC03FA6F785BEF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.249032263999965, 49.881522362000062 ], [ -119.24901973299994, 49.881252742000044 ], [ -119.248185227999954, 49.88126893400009 ], [ -119.248172700999959, 49.880999315000032 ], [ -119.247755449999929, 49.881007409000084 ], [ -119.247717879999954, 49.88019855099999 ], [ -119.249386853999951, 49.880166168000123 ], [ -119.249399384999933, 49.88043578800005 ], [ -119.250651120999976, 49.880411485000089 ], [ -119.250688741999952, 49.881220341000088 ], [ -119.250271489999989, 49.881228444000037 ], [ -119.250284026999921, 49.881498063000073 ], [ -119.249032263999965, 49.881522362000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "162.7", "sL_BldgLoss": "162.7", "sL_StrLoss": "162.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005345123954CD5DC0C72B5259FB074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.204907619999986, 50.063400054000077 ], [ -119.20518225899994, 50.061564077000078 ], [ -119.205687294999947, 50.061680209000031 ], [ -119.206342498999945, 50.061946593000073 ], [ -119.206608520999978, 50.061967897000045 ], [ -119.207397919999948, 50.061486502000015 ], [ -119.207187382999919, 50.060859893000092 ], [ -119.207690008999961, 50.060868389000092 ], [ -119.21010768399999, 50.06147089400006 ], [ -119.210802749999914, 50.061510489000092 ], [ -119.210468837999912, 50.063744541000119 ], [ -119.20757996499999, 50.063565627000088 ], [ -119.207766502999931, 50.06281958900005 ], [ -119.207733795999971, 50.062748413000115 ], [ -119.206607680999952, 50.062859503000041 ], [ -119.206205910999969, 50.062947793000056 ], [ -119.205798889999954, 50.062910815000102 ], [ -119.205020517999955, 50.062987699000068 ], [ -119.204979198999965, 50.063404489000035 ], [ -119.204907619999986, 50.063400054000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6213250", "BldgCostT": "4285000", "sL_LossRatio": "1", "sL_AssetLoss": "558", "sL_BldgLoss": "558", "sL_StrLoss": "558", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F54D718753CD5DC0D93319C812FF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.205410934999989, 49.991036100000038 ], [ -119.205435121, 49.990874138000081 ], [ -119.205606918999976, 49.990884801000071 ], [ -119.20562752, 49.9907468420001 ], [ -119.2059341399999, 49.990765873000029 ], [ -119.205970516999955, 49.990522248000033 ], [ -119.211522862999928, 49.990866715000138 ], [ -119.211484602999946, 49.991123156000093 ], [ -119.211564577999923, 49.991128115 ], [ -119.211550831999944, 49.991220256000062 ], [ -119.211577584999972, 49.991221915000075 ], [ -119.211555494000024, 49.991369980000044 ], [ -119.211626993, 49.991374414000092 ], [ -119.211092877999988, 49.994954107000076 ], [ -119.210283640999975, 49.994903921000038 ], [ -119.210276641999911, 49.994950825000103 ], [ -119.204723807999983, 49.994606297000125 ], [ -119.205258420999911, 49.991026634000065 ], [ -119.205410934999989, 49.991036100000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4267834", "BldgCostT": "2943334", "sL_LossRatio": "1", "sL_AssetLoss": "300.8", "sL_BldgLoss": "300.8", "sL_StrLoss": "300.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E3DFAD3C4CF5DC0860E2EDBD6064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.242183882999939, 50.055318204000045 ], [ -119.242571219999959, 50.05271395000004 ], [ -119.243230586999957, 50.052954098000114 ], [ -119.243747814999963, 50.05297120700002 ], [ -119.244047993999956, 50.053371400000088 ], [ -119.245229816999966, 50.053248902000128 ], [ -119.246101712999973, 50.052773201000036 ], [ -119.247079, 50.05187310400003 ], [ -119.24778782199995, 50.051508503 ], [ -119.248105496999969, 50.051430210000056 ], [ -119.248390805999961, 50.051551305000011 ], [ -119.248514095999923, 50.051485706000086 ], [ -119.249333295, 50.051118305000024 ], [ -119.25056909099996, 50.05094170600011 ], [ -119.251237433999989, 50.050479234000079 ], [ -119.251424327999956, 50.050490739000054 ], [ -119.251234287, 50.051770275000088 ], [ -119.251064510999967, 50.051908107000031 ], [ -119.250607732999939, 50.052130867000137 ], [ -119.250009398999921, 50.052338016000057 ], [ -119.249718305999963, 50.052468359000038 ], [ -119.249468761999935, 50.052580087000081 ], [ -119.249288677999985, 50.052663757000069 ], [ -119.24894573, 50.052920443000112 ], [ -119.24884883499999, 50.052966886000092 ], [ -119.248425469000011, 50.053341390000057 ], [ -119.248141665000034, 50.053686575 ], [ -119.247832898999931, 50.054130684000036 ], [ -119.247057297999959, 50.054905324000046 ], [ -119.246692358999937, 50.055350425000064 ], [ -119.246404270999946, 50.055578265000115 ], [ -119.242183882999939, 50.055318204000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27528250", "BldgCostT": "18985000", "sL_LossRatio": "1", "sL_AssetLoss": "1984", "sL_BldgLoss": "1984", "sL_StrLoss": "1984", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000038C1D42224CE5DC0FB33B4E8BAEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.211301052999886, 49.868115958000047 ], [ -119.211564766999942, 49.86634332400007 ], [ -119.208882896999953, 49.866176496 ], [ -119.208892258999981, 49.866113580000082 ], [ -119.208898094999924, 49.866074373000153 ], [ -119.208144378999961, 49.86602747500006 ], [ -119.208166174000013, 49.865881042000055 ], [ -119.207423967999887, 49.865834856000049 ], [ -119.207424825000018, 49.865829101000017 ], [ -119.207305182999946, 49.865821656000058 ], [ -119.207283541999942, 49.865967039000068 ], [ -119.206397548, 49.865911896000036 ], [ -119.206379106999933, 49.866035759000077 ], [ -119.200841944999979, 49.865690974000103 ], [ -119.200890523999988, 49.865364922000047 ], [ -119.199536024999958, 49.865280537000011 ], [ -119.199608864999959, 49.864791752000045 ], [ -119.19800965, 49.864692100000127 ], [ -119.197783648999973, 49.86620825500006 ], [ -119.192246528999974, 49.865863035000061 ], [ -119.192513103999943, 49.864076122000057 ], [ -119.194959479999952, 49.863731664000028 ], [ -119.195055492, 49.863718138000074 ], [ -119.195819802999907, 49.863610508000086 ], [ -119.196519706999965, 49.863554804000046 ], [ -119.196563963999935, 49.86355487500002 ], [ -119.197057385999955, 49.863555821000062 ], [ -119.197750000999946, 49.863614300000101 ], [ -119.19865187799995, 49.863805995000043 ], [ -119.199381784999957, 49.864054694000103 ], [ -119.20005572599996, 49.864352233000069 ], [ -119.20101382099989, 49.8647752050001 ], [ -119.201358166999952, 49.864882862000151 ], [ -119.201511789, 49.864930905000058 ], [ -119.202083591999909, 49.865012595000081 ], [ -119.202419149999955, 49.865015070000041 ], [ -119.202724091999954, 49.865017288000075 ], [ -119.202914004999968, 49.864998866000136 ], [ -119.20344993399999, 49.864946821000075 ], [ -119.204226788999932, 49.864871412000106 ], [ -119.204527565999939, 49.864845488000086 ], [ -119.205965303000013, 49.864721609000071 ], [ -119.207026202999955, 49.864630192000043 ], [ -119.207982293999962, 49.864617394000106 ], [ -119.20894648699999, 49.864652990000096 ], [ -119.210460810999976, 49.864767091000139 ], [ -119.21138801099994, 49.864910591000061 ], [ -119.21223059499998, 49.865125603000045 ], [ -119.213729279999953, 49.865664106000096 ], [ -119.214317645, 49.865777428000087 ], [ -119.214366308999942, 49.865786792000058 ], [ -119.215072082999981, 49.86581260300008 ], [ -119.215622102999973, 49.865750188000092 ], [ -119.215635249999949, 49.865747142000032 ], [ -119.216121380999965, 49.86563399900011 ], [ -119.216526018999971, 49.865496500000091 ], [ -119.21813901099992, 49.864936787000026 ], [ -119.21848221299993, 49.86481768700002 ], [ -119.219302482999979, 49.864656383000067 ], [ -119.219997499, 49.864614602000117 ], [ -119.220707589999975, 49.864649692000093 ], [ -119.221437587999958, 49.864785398000087 ], [ -119.22243754299997, 49.865103273000024 ], [ -119.223009185999956, 49.865284991000074 ], [ -119.223717697999973, 49.865405707000015 ], [ -119.224407693999964, 49.865434996 ], [ -119.225119292999921, 49.865375305000015 ], [ -119.227078497999912, 49.864948593000108 ], [ -119.227825614999958, 49.86483771300005 ], [ -119.228627784999929, 49.864798087000089 ], [ -119.230511892, 49.864698100000069 ], [ -119.231246119, 49.864589198 ], [ -119.231330997999947, 49.864568926000089 ], [ -119.234606202999927, 49.863786702 ], [ -119.237463300999963, 49.863087502000035 ], [ -119.238982899999939, 49.862674888000058 ], [ -119.243606409999984, 49.861177084000104 ], [ -119.244543682999961, 49.860837700000083 ], [ -119.245853680999957, 49.860286231000032 ], [ -119.246374389999943, 49.860067027000056 ], [ -119.246362638, 49.860146446000059 ], [ -119.246411337999987, 49.860149460000095 ], [ -119.245881474999948, 49.8637299620001 ], [ -119.241609974999946, 49.863465552000044 ], [ -119.241544, 49.863911060000078 ], [ -119.240824601999989, 49.863866512000051 ], [ -119.240769582999974, 49.86423797700013 ], [ -119.239959138999964, 49.864187785000091 ], [ -119.239703528999911, 49.865913297000105 ], [ -119.234166129999949, 49.865570197000046 ], [ -119.234239723999977, 49.865073811000073 ], [ -119.232379259999917, 49.864958471000079 ], [ -119.232248205999895, 49.865842168000015 ], [ -119.230499803999948, 49.865733747000036 ], [ -119.230426748999989, 49.866226208000107 ], [ -119.22972241299999, 49.866182523000077 ], [ -119.22969352599992, 49.866377225000114 ], [ -119.226604427000026, 49.866185575000038 ], [ -119.226521908999928, 49.866741496000017 ], [ -119.221298995999973, 49.866417261000095 ], [ -119.221098633999972, 49.86776601800009 ], [ -119.216979817, 49.867510146000029 ], [ -119.216838587999987, 49.868460213000034 ], [ -119.211301052999886, 49.868115958000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "192.8", "sL_BldgLoss": "192.8", "sL_StrLoss": "192.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028CD8BB8A5CA5DC0506AF5F6630D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.165948850999968, 50.105202625000054 ], [ -119.165955560999933, 50.105158068000073 ], [ -119.165862636999975, 50.105152282000105 ], [ -119.166401601999951, 50.101573336000087 ], [ -119.167630053999957, 50.101649823000066 ], [ -119.167785993999985, 50.101811605000101 ], [ -119.168160893, 50.102055108000052 ], [ -119.168255298999938, 50.102278697000038 ], [ -119.167859415999914, 50.103428105000027 ], [ -119.16791669599999, 50.105352206000141 ], [ -119.167701382999908, 50.105545900000031 ], [ -119.166935802999944, 50.105928995000063 ], [ -119.16623779299999, 50.106571313000067 ], [ -119.165359306999918, 50.106911682000096 ], [ -119.165129010999948, 50.107086885000086 ], [ -119.164575808999928, 50.107249189000107 ], [ -119.163340411999911, 50.107299140000109 ], [ -119.163451852999955, 50.106559482000051 ], [ -119.163679314999911, 50.106573649000083 ], [ -119.163707452, 50.106386887000049 ], [ -119.164009825000022, 50.106405720000055 ], [ -119.16403864699997, 50.106214395000116 ], [ -119.164320100999959, 50.106231924000056 ], [ -119.16436464899999, 50.105936201000056 ], [ -119.164677887, 50.105955709000071 ], [ -119.164719447999957, 50.105679808000055 ], [ -119.165051380999927, 50.105700480000039 ], [ -119.165092344999977, 50.105428516000174 ], [ -119.165499274999917, 50.105453857000043 ], [ -119.165540938999953, 50.105177226000073 ], [ -119.165948850999968, 50.105202625000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10007417", "BldgCostT": "6901667", "sL_LossRatio": "1", "sL_AssetLoss": "598", "sL_BldgLoss": "598", "sL_StrLoss": "598", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000048D2A02EB3C95DC0820F6FE78CF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.151095393999938, 49.876642007000022 ], [ -119.15264446499998, 49.875258336000094 ], [ -119.152694230999899, 49.875213896000041 ], [ -119.152857902, 49.875067684000086 ], [ -119.152970458999945, 49.874940833000061 ], [ -119.153374193999937, 49.874485707000098 ], [ -119.15423688199995, 49.873914601000116 ], [ -119.154503576, 49.87371650300004 ], [ -119.155022094999964, 49.873331333000131 ], [ -119.155025142999989, 49.873331523000068 ], [ -119.154815534999926, 49.874728534000091 ], [ -119.155352724999943, 49.874762217000097 ], [ -119.155059405999964, 49.876717171000088 ], [ -119.155135262999963, 49.876721928000066 ], [ -119.154598065999977, 49.880301902000035 ], [ -119.151838267999977, 49.880128833000072 ], [ -119.151560527999948, 49.881978768000103 ], [ -119.151411506999978, 49.881969421000115 ], [ -119.151316051999956, 49.882605172000147 ], [ -119.149994133999925, 49.882522246000072 ], [ -119.14946056099997, 49.886074905000065 ], [ -119.146705030999968, 49.885901995000118 ], [ -119.146859798999927, 49.885663283000056 ], [ -119.147216392999951, 49.885224611000069 ], [ -119.147538919999974, 49.884827800000032 ], [ -119.148984410999944, 49.883709796000034 ], [ -119.149428893999925, 49.883263417000123 ], [ -119.149548510999963, 49.883025092000018 ], [ -119.149085352999961, 49.881828023000068 ], [ -119.149005790999951, 49.881622401000087 ], [ -119.148792511999943, 49.881320799000093 ], [ -119.14867436599998, 49.881245639000049 ], [ -119.148115108999946, 49.880889894000099 ], [ -119.147960707999957, 49.880596487000027 ], [ -119.148012380999916, 49.880391989000024 ], [ -119.148214249999967, 49.880067186000119 ], [ -119.14839390199991, 49.879778108000039 ], [ -119.148501114999974, 49.879574202000114 ], [ -119.148914462999983, 49.878787982000041 ], [ -119.149000420999982, 49.878624505000047 ], [ -119.149476315999948, 49.877929982000083 ], [ -119.149498238999982, 49.877897998000087 ], [ -119.149668109999951, 49.877650093000042 ], [ -119.150233896999978, 49.877205001000057 ], [ -119.151095393999938, 49.876642007000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DA106FDF1BD05DC076118D8B76F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.25229500099999, 49.879839824000022 ], [ -119.252282451999974, 49.87957020500005 ], [ -119.251865214999938, 49.879578314000106 ], [ -119.25184012299998, 49.879039075 ], [ -119.251422890999933, 49.879047182000065 ], [ -119.251397803999964, 49.878507945000095 ], [ -119.249311659999961, 49.878548454000118 ], [ -119.249285720999978, 49.87799035200009 ], [ -119.249274065999941, 49.877739597000136 ], [ -119.251360174999959, 49.877699088000043 ], [ -119.251372718000013, 49.8779687070001 ], [ -119.251444742999936, 49.877967308000052 ], [ -119.252624387999973, 49.877944384000095 ], [ -119.252636937999952, 49.87821400300006 ], [ -119.253054163999934, 49.878205893000043 ], [ -119.253079266999976, 49.878745129000073 ], [ -119.253496496999986, 49.878737017000091 ], [ -119.253546718999971, 49.87981549000007 ], [ -119.253340064000028, 49.879819508 ], [ -119.25229500099999, 49.879839824000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9270333", "BldgCostT": "6393333", "sL_LossRatio": "1", "sL_AssetLoss": "704", "sL_BldgLoss": "704", "sL_StrLoss": "704", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000214EB382D7CA5DC035CF3207980D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.162912598999952, 50.110138389000028 ], [ -119.162940858999917, 50.10995084400011 ], [ -119.162991806999983, 50.109959510000067 ], [ -119.16349260699999, 50.109869803000031 ], [ -119.16423379299998, 50.10927160900011 ], [ -119.165669185999974, 50.108533907000073 ], [ -119.16692442, 50.107511298000077 ], [ -119.168190618999915, 50.106777807000036 ], [ -119.168824388999923, 50.106226709000047 ], [ -119.168712492999958, 50.105625598000124 ], [ -119.168678788999955, 50.105481801000032 ], [ -119.168550496999927, 50.105142802000067 ], [ -119.168605912, 50.104494797000058 ], [ -119.168339005999911, 50.104157288000088 ], [ -119.168299994999956, 50.10388808800014 ], [ -119.169125384999973, 50.102388393000048 ], [ -119.169566877999983, 50.101770386000076 ], [ -119.17196719199994, 50.101919752000086 ], [ -119.171927937999953, 50.102180647000111 ], [ -119.172451794, 50.1022132390001 ], [ -119.172437884999937, 50.102305686000108 ], [ -119.172920785999935, 50.102335727000096 ], [ -119.172863395999968, 50.102717207000168 ], [ -119.172902311, 50.102719628000116 ], [ -119.172771170999965, 50.10359131700006 ], [ -119.172826072999939, 50.103594732000019 ], [ -119.172805459999978, 50.103731744000058 ], [ -119.173245568999931, 50.103759121000031 ], [ -119.173245034, 50.103762678000116 ], [ -119.173782451999955, 50.103796106000111 ], [ -119.173772557999925, 50.103861882000082 ], [ -119.17355036, 50.104116072000096 ], [ -119.173369951999973, 50.104470311000057 ], [ -119.173318896999916, 50.104903053000079 ], [ -119.173243699999944, 50.105102405000082 ], [ -119.173206600999947, 50.10553486800012 ], [ -119.172804093999957, 50.105929248000102 ], [ -119.172422021999978, 50.106152312000113 ], [ -119.171948003999958, 50.106512053000117 ], [ -119.171336537999963, 50.106928309000111 ], [ -119.171180715999938, 50.107524988000129 ], [ -119.170879327999955, 50.107674533000129 ], [ -119.170211926999954, 50.108091867000027 ], [ -119.169105079999923, 50.10902116100003 ], [ -119.168772817999979, 50.109423227000015 ], [ -119.168641357999917, 50.109938429000096 ], [ -119.168265994999942, 50.110314286000047 ], [ -119.168066304999954, 50.110459279000096 ], [ -119.162912598999952, 50.110138389000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5855583", "BldgCostT": "4038333", "sL_LossRatio": "1", "sL_AssetLoss": "459", "sL_BldgLoss": "459", "sL_StrLoss": "459", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A93B4D1EFCC5DC0A3D34E281F094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.197561116999978, 50.072990930000046 ], [ -119.197561834999988, 50.072986142000055 ], [ -119.196693889999921, 50.072932306000084 ], [ -119.196860294, 50.071821511000053 ], [ -119.197095482999956, 50.071809196000075 ], [ -119.197383885999969, 50.071696706000068 ], [ -119.198043619, 50.071171202000095 ], [ -119.199025404999958, 50.070909088000114 ], [ -119.199586285999914, 50.070674089000043 ], [ -119.200493419999958, 50.070611398000054 ], [ -119.200830898999982, 50.070695487000087 ], [ -119.2013044, 50.070641405000096 ], [ -119.202042974999983, 50.070258193000022 ], [ -119.202885289, 50.069460693000124 ], [ -119.2048622, 50.068675997000049 ], [ -119.205655506999989, 50.069191487000069 ], [ -119.206395782999948, 50.069491995000106 ], [ -119.206621542000022, 50.069541721000107 ], [ -119.20630599399999, 50.071651215000038 ], [ -119.205959864999926, 50.071629772000101 ], [ -119.205933586999933, 50.071805423000107 ], [ -119.205650296999963, 50.071787873000034 ], [ -119.205621083999958, 50.071983129000046 ], [ -119.205395444999951, 50.071969151000133 ], [ -119.205355484999984, 50.072236235000069 ], [ -119.20516578299997, 50.072224482000124 ], [ -119.205147320999984, 50.072347868000087 ], [ -119.204801018999945, 50.07243132400005 ], [ -119.204661234999918, 50.072433921000034 ], [ -119.204412231, 50.072195644000068 ], [ -119.204239050999945, 50.072081902000058 ], [ -119.203021169999914, 50.072068620000088 ], [ -119.202492862000014, 50.072141400000127 ], [ -119.202343500999945, 50.072243136000033 ], [ -119.202184250999935, 50.072434913000073 ], [ -119.201368708999937, 50.07322702400009 ], [ -119.197561116999978, 50.072990930000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899583", "BldgCostT": "4758333", "sL_LossRatio": "1", "sL_AssetLoss": "455", "sL_BldgLoss": "455", "sL_StrLoss": "455", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D84CF88470C95DC06B2AACD097F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.143921402999936, 49.885727251000041 ], [ -119.14396534399999, 49.885434927000091 ], [ -119.14144874599998, 49.885276883000124 ], [ -119.141987030999971, 49.881696996000123 ], [ -119.145825324, 49.881938021000096 ], [ -119.146315208999951, 49.878677687000049 ], [ -119.146464218999981, 49.878687041 ], [ -119.146505052999942, 49.878415250000074 ], [ -119.146453878, 49.878412037000025 ], [ -119.146991690999954, 49.874832092000126 ], [ -119.14798584199994, 49.874894497000049 ], [ -119.148269335999927, 49.873006917000062 ], [ -119.149472723999935, 49.873082444000012 ], [ -119.149487483999962, 49.872984145000046 ], [ -119.150639583, 49.873056439000038 ], [ -119.155022094999964, 49.873331333000131 ], [ -119.154503576, 49.87371650300004 ], [ -119.15423688199995, 49.873914601000116 ], [ -119.153374193999937, 49.874485707000098 ], [ -119.152970458999945, 49.874940833000061 ], [ -119.152857902, 49.875067684000086 ], [ -119.152694230999899, 49.875213896000041 ], [ -119.15264446499998, 49.875258336000094 ], [ -119.151095393999938, 49.876642007000022 ], [ -119.150233896999978, 49.877205001000057 ], [ -119.149668109999951, 49.877650093000042 ], [ -119.149498238999982, 49.877897998000087 ], [ -119.149476315999948, 49.877929982000083 ], [ -119.149000420999982, 49.878624505000047 ], [ -119.148914462999983, 49.878787982000041 ], [ -119.148501114999974, 49.879574202000114 ], [ -119.14839390199991, 49.879778108000039 ], [ -119.148214249999967, 49.880067186000119 ], [ -119.148012380999916, 49.880391989000024 ], [ -119.147960707999957, 49.880596487000027 ], [ -119.148115108999946, 49.880889894000099 ], [ -119.14867436599998, 49.881245639000049 ], [ -119.148792511999943, 49.881320799000093 ], [ -119.149005790999951, 49.881622401000087 ], [ -119.149085352999961, 49.881828023000068 ], [ -119.149548510999963, 49.883025092000018 ], [ -119.149428893999925, 49.883263417000123 ], [ -119.148984410999944, 49.883709796000034 ], [ -119.147538919999974, 49.884827800000032 ], [ -119.147216392999951, 49.885224611000069 ], [ -119.146859798999927, 49.885663283000056 ], [ -119.146705030999968, 49.885901995000118 ], [ -119.143921402999936, 49.885727251000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019988", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DEE7953E36D15DC0E5CAA84BA9ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.265975724999961, 49.85796635300008 ], [ -119.266357535999987, 49.855378268000123 ], [ -119.271893942999924, 49.855719745000023 ], [ -119.271535325999977, 49.858152616 ], [ -119.270131839999962, 49.857975651000174 ], [ -119.268933281999921, 49.857824491000031 ], [ -119.268013867999954, 49.857779500000021 ], [ -119.26724871099999, 49.85780640400008 ], [ -119.265975724999961, 49.85796635300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16022583", "BldgCostT": "10578333", "sL_LossRatio": "1", "sL_AssetLoss": "1097", "sL_BldgLoss": "1097", "sL_StrLoss": "1097", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D9108F0CAC95DC047D3D15818EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.14705665299999, 49.871574869000064 ], [ -119.147304540999926, 49.869924462 ], [ -119.14659234, 49.869879747000041 ], [ -119.146387918999963, 49.871240615000069 ], [ -119.140850580999881, 49.870892799000039 ], [ -119.141307832999985, 49.867851111000078 ], [ -119.141388741999904, 49.867312845000036 ], [ -119.142235940999953, 49.867366078000018 ], [ -119.142322304999965, 49.866791439000075 ], [ -119.142370545999952, 49.866470458000066 ], [ -119.142320265999942, 49.866467299000107 ], [ -119.142271341999972, 49.866792817000061 ], [ -119.142263300999943, 49.866846322000079 ], [ -119.14167040699999, 49.866809067000077 ], [ -119.13761110899999, 49.866553916000051 ], [ -119.137748788999943, 49.866496597000015 ], [ -119.138238221999941, 49.865956802000071 ], [ -119.138803504999942, 49.865811593000089 ], [ -119.139166194999959, 49.865814400000062 ], [ -119.140345693999947, 49.86608931100011 ], [ -119.141458788999898, 49.86606929000002 ], [ -119.142047193999986, 49.865860014000113 ], [ -119.142096300999967, 49.865355801000071 ], [ -119.14301210099994, 49.865617903000064 ], [ -119.143886787999946, 49.866194712000031 ], [ -119.144649994999924, 49.866478101000041 ], [ -119.14492911799999, 49.866490908000074 ], [ -119.145632085999964, 49.866351293000079 ], [ -119.146697579999909, 49.8659036620001 ], [ -119.147872803999974, 49.86540990900005 ], [ -119.148801709999958, 49.865321595000076 ], [ -119.149177905999949, 49.865341598000093 ], [ -119.149658708999979, 49.865485405000079 ], [ -119.149910695999935, 49.865867087000012 ], [ -119.150126894999985, 49.866006706000093 ], [ -119.150731688999926, 49.866184706000112 ], [ -119.152932776999947, 49.866243093000051 ], [ -119.153517112999978, 49.866519404000023 ], [ -119.153933911999928, 49.867114705000056 ], [ -119.154260690999976, 49.867271393000046 ], [ -119.155068009999979, 49.867301305000055 ], [ -119.155329090999885, 49.867224394000047 ], [ -119.155502605999985, 49.867059188000091 ], [ -119.155641393999971, 49.867056298000115 ], [ -119.155733511999983, 49.866901104000142 ], [ -119.155964494000031, 49.866798515000092 ], [ -119.156654981999935, 49.866696002 ], [ -119.157606680999905, 49.866794292000073 ], [ -119.158424403999902, 49.867040711000051 ], [ -119.158995902999948, 49.867066298000118 ], [ -119.159837218999925, 49.866896797000081 ], [ -119.160241018999983, 49.866591999000093 ], [ -119.160518990999961, 49.865616502000066 ], [ -119.160920409999932, 49.864978399000115 ], [ -119.161097120999926, 49.864867299000061 ], [ -119.161373008999931, 49.864826004000058 ], [ -119.16262689200002, 49.864865893000051 ], [ -119.16290499899999, 49.864829397000044 ], [ -119.164311574999928, 49.86491750200004 ], [ -119.164506911999979, 49.86361347800009 ], [ -119.165159921999958, 49.863631103000017 ], [ -119.166806808, 49.863115508000078 ], [ -119.16850509799994, 49.862786491000065 ], [ -119.16882491399997, 49.862797898000096 ], [ -119.169572692999964, 49.863018711000109 ], [ -119.170526545999934, 49.863543855000046 ], [ -119.170272214999926, 49.865243186000072 ], [ -119.16985540899999, 49.865217103000042 ], [ -119.169813409999975, 49.865497695000066 ], [ -119.164294867999942, 49.865152205000093 ], [ -119.164038534999989, 49.866863293000101 ], [ -119.163793515999913, 49.86849872500003 ], [ -119.161762824999968, 49.868371522000061 ], [ -119.161615868999974, 49.869352072000055 ], [ -119.157112314999921, 49.869069832000086 ], [ -119.15691882199998, 49.870359976000032 ], [ -119.156540598, 49.870336265000098 ], [ -119.156488321999959, 49.870684785000037 ], [ -119.155415477999966, 49.870617518000067 ], [ -119.155258722999946, 49.871662412000028 ], [ -119.152657619999943, 49.871499279000091 ], [ -119.152594120999979, 49.871922371000117 ], [ -119.151697473999903, 49.871866121000075 ], [ -119.14705665299999, 49.871574869000064 ] ], [ [ -119.149614935000017, 49.868121723000094 ], [ -119.149691609999977, 49.867611013000065 ], [ -119.148857872999926, 49.867558683000084 ], [ -119.148781187999973, 49.868069393000091 ], [ -119.149614935000017, 49.868121723000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21201250", "BldgCostT": "14125000", "sL_LossRatio": "1", "sL_AssetLoss": "1252.1", "sL_BldgLoss": "1252.1", "sL_StrLoss": "1252.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025B2EEA303CE5DC0BD98DA106BEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.210460810999976, 49.864767091000139 ], [ -119.20894648699999, 49.864652990000096 ], [ -119.207982293999962, 49.864617394000106 ], [ -119.207026202999955, 49.864630192000043 ], [ -119.205965303000013, 49.864721609000071 ], [ -119.204527565999939, 49.864845488000086 ], [ -119.204226788999932, 49.864871412000106 ], [ -119.20344993399999, 49.864946821000075 ], [ -119.202914004999968, 49.864998866000136 ], [ -119.202724091999954, 49.865017288000075 ], [ -119.202419149999955, 49.865015070000041 ], [ -119.202083591999909, 49.865012595000081 ], [ -119.201511789, 49.864930905000058 ], [ -119.201358166999952, 49.864882862000151 ], [ -119.20101382099989, 49.8647752050001 ], [ -119.20005572599996, 49.864352233000069 ], [ -119.199381784999957, 49.864054694000103 ], [ -119.19865187799995, 49.863805995000043 ], [ -119.197750000999946, 49.863614300000101 ], [ -119.197057385999955, 49.863555821000062 ], [ -119.196563963999935, 49.86355487500002 ], [ -119.196519706999965, 49.863554804000046 ], [ -119.195819802999907, 49.863610508000086 ], [ -119.195055492, 49.863718138000074 ], [ -119.194959479999952, 49.863731664000028 ], [ -119.192513103999943, 49.864076122000057 ], [ -119.192780611999936, 49.862282804000067 ], [ -119.193695055999939, 49.86233983700005 ], [ -119.193978004000016, 49.860442611000032 ], [ -119.19409978199991, 49.860423799000039 ], [ -119.194928895999979, 49.859995090000055 ], [ -119.195317289999977, 49.859960893000121 ], [ -119.196466799999968, 49.860154603000083 ], [ -119.197021094999926, 49.860081998000069 ], [ -119.197797284000032, 49.859732999000073 ], [ -119.198355903999953, 49.859785707000043 ], [ -119.199615498999918, 49.860109801000135 ], [ -119.199457696, 49.86116882000001 ], [ -119.203147250999905, 49.861398662000092 ], [ -119.20307445399996, 49.86188745200009 ], [ -119.205606205999942, 49.86204509500002 ], [ -119.20559868299999, 49.862095626000034 ], [ -119.209171598999944, 49.862317997000083 ], [ -119.209170664999959, 49.862324274000102 ], [ -119.211301533000025, 49.862456839000039 ], [ -119.211300675999894, 49.86246259300006 ], [ -119.213493664999945, 49.862598978000101 ], [ -119.213471888999919, 49.862745413 ], [ -119.214214051999974, 49.86279155900008 ], [ -119.214198867000022, 49.862893683000074 ], [ -119.214952535999927, 49.862940539000085 ], [ -119.214688971999934, 49.864713189000021 ], [ -119.215181963999953, 49.864743836000059 ], [ -119.215600453999926, 49.861928924000068 ], [ -119.215987037999966, 49.861952955000085 ], [ -119.21602274699994, 49.861712734000044 ], [ -119.217204047999971, 49.861786155000118 ], [ -119.217243104999937, 49.861523360000092 ], [ -119.217888881999983, 49.861563493000105 ], [ -119.217890874999966, 49.861550076000114 ], [ -119.223144350999959, 49.861876410000079 ], [ -119.223158637999944, 49.861780197000137 ], [ -119.225407348999951, 49.861919804000124 ], [ -119.225454248999981, 49.861603849000126 ], [ -119.230991103999955, 49.861947391000072 ], [ -119.23098222299997, 49.862007265000095 ], [ -119.231122075999934, 49.862015938000056 ], [ -119.231232119, 49.861273981000103 ], [ -119.235580905999896, 49.861543602000097 ], [ -119.23576307699993, 49.860314481000117 ], [ -119.23648241399998, 49.860359062000086 ], [ -119.236537462999976, 49.859987598000032 ], [ -119.237354391999986, 49.86003822200005 ], [ -119.237423247999942, 49.859573518000076 ], [ -119.238421218999974, 49.859635352000083 ], [ -119.238575351999927, 49.858594941000064 ], [ -119.240982806000019, 49.858744070000036 ], [ -119.241003045999946, 49.858607397000092 ], [ -119.246539654999964, 49.858950154000119 ], [ -119.246374389999943, 49.860067027000056 ], [ -119.245853680999957, 49.860286231000032 ], [ -119.244543682999961, 49.860837700000083 ], [ -119.243606409999984, 49.861177084000104 ], [ -119.238982899999939, 49.862674888000058 ], [ -119.237463300999963, 49.863087502000035 ], [ -119.234606202999927, 49.863786702 ], [ -119.231330997999947, 49.864568926000089 ], [ -119.231246119, 49.864589198 ], [ -119.230511892, 49.864698100000069 ], [ -119.228627784999929, 49.864798087000089 ], [ -119.227825614999958, 49.86483771300005 ], [ -119.227078497999912, 49.864948593000108 ], [ -119.225119292999921, 49.865375305000015 ], [ -119.224407693999964, 49.865434996 ], [ -119.223717697999973, 49.865405707000015 ], [ -119.223009185999956, 49.865284991000074 ], [ -119.22243754299997, 49.865103273000024 ], [ -119.221437587999958, 49.864785398000087 ], [ -119.220707589999975, 49.864649692000093 ], [ -119.219997499, 49.864614602000117 ], [ -119.219302482999979, 49.864656383000067 ], [ -119.21848221299993, 49.86481768700002 ], [ -119.21813901099992, 49.864936787000026 ], [ -119.216526018999971, 49.865496500000091 ], [ -119.216121380999965, 49.86563399900011 ], [ -119.215635249999949, 49.865747142000032 ], [ -119.215622102999973, 49.865750188000092 ], [ -119.215072082999981, 49.86581260300008 ], [ -119.214366308999942, 49.865786792000058 ], [ -119.214317645, 49.865777428000087 ], [ -119.213729279999953, 49.865664106000096 ], [ -119.21223059499998, 49.865125603000045 ], [ -119.21138801099994, 49.864910591000061 ], [ -119.210460810999976, 49.864767091000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "162.7", "sL_BldgLoss": "162.7", "sL_StrLoss": "162.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000983CB733C0D25DC0773BB13D69ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.29214501200002, 49.853372506000028 ], [ -119.294299496999955, 49.853346895000065 ], [ -119.294735615999912, 49.853446597000072 ], [ -119.295064098999958, 49.853628896000053 ], [ -119.29552850799999, 49.854294003000092 ], [ -119.295839900999937, 49.854477923000061 ], [ -119.295586692999919, 49.856201945000031 ], [ -119.29005005, 49.855861667000042 ], [ -119.290212906999926, 49.854753751000018 ], [ -119.290241833, 49.854556965000022 ], [ -119.290375077999968, 49.853650442000081 ], [ -119.290461203999882, 49.853648802000109 ], [ -119.29214501200002, 49.853372506000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "88.1", "sL_BldgLoss": "88.1", "sL_StrLoss": "88.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E3124E5B6CA5DC06BDBACD15DEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.164536278999947, 49.86341742800002 ], [ -119.164812849999961, 49.861570963000084 ], [ -119.165229621999941, 49.861597066000094 ], [ -119.165271643999958, 49.861316473000088 ], [ -119.170808010999963, 49.861663060000083 ], [ -119.170567913, 49.863267443000041 ], [ -119.170028619999954, 49.862937495000068 ], [ -119.169319191999975, 49.862635612000084 ], [ -119.16830100699994, 49.862582891000073 ], [ -119.167635423999982, 49.862649804000107 ], [ -119.166576916999986, 49.86294890100006 ], [ -119.166065307999929, 49.86300298400004 ], [ -119.165648985999923, 49.863352002000099 ], [ -119.165096092999974, 49.863443089000029 ], [ -119.164536278999947, 49.86341742800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "275.8", "sL_BldgLoss": "275.8", "sL_StrLoss": "275.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C4FF46D092D95DC003CB3AB141E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.391938411999973, 49.823877627000094 ], [ -119.39187191399999, 49.822529655000054 ], [ -119.392288619999988, 49.822521050000049 ], [ -119.392275317, 49.822251456000053 ], [ -119.392692020999945, 49.82224285000008 ], [ -119.392678717999928, 49.82197325500006 ], [ -119.393928817999949, 49.821947428000037 ], [ -119.393915506999974, 49.821677834000042 ], [ -119.395582292999961, 49.82164337600004 ], [ -119.395622252999942, 49.822452158000026 ], [ -119.397289064999967, 49.822417676000065 ], [ -119.397302393999965, 49.822687271000071 ], [ -119.397343738999979, 49.822686414000025 ], [ -119.397661329999949, 49.820488781000044 ], [ -119.403194489999962, 49.820823632000057 ], [ -119.403007725999942, 49.82211709200002 ], [ -119.407664934999929, 49.822398711000098 ], [ -119.40756062299999, 49.823121612000122 ], [ -119.403827867999937, 49.823320038000091 ], [ -119.400406936, 49.823501724 ], [ -119.398117610999961, 49.823509850000043 ], [ -119.397954846999966, 49.823306099000078 ], [ -119.397946252999972, 49.82329535500007 ], [ -119.397681998999929, 49.823192654000081 ], [ -119.395655240999986, 49.822916388000117 ], [ -119.395252323999983, 49.82295249000002 ], [ -119.394757463999909, 49.82307426100008 ], [ -119.393716196999904, 49.823500727000081 ], [ -119.39338219699999, 49.823532884000095 ], [ -119.39308905199999, 49.823485301000041 ], [ -119.392828648999952, 49.823365656000114 ], [ -119.392702394999901, 49.823491948000026 ], [ -119.392324721999969, 49.823869650000077 ], [ -119.391938411999973, 49.823877627000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33672083", "BldgCostT": "22958333", "sL_LossRatio": "1", "sL_AssetLoss": "2944", "sL_BldgLoss": "2944", "sL_StrLoss": "2944", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000062C41DF32AC85DC0BEEFC61F18EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.106081090999965, 49.869648185000131 ], [ -119.106143350000011, 49.869236145000094 ], [ -119.110850009, 49.869533320000095 ], [ -119.111201442999956, 49.867205754000025 ], [ -119.112537624999931, 49.86729008300005 ], [ -119.112580493999957, 49.867006086000067 ], [ -119.114273036999947, 49.867112880000072 ], [ -119.114346039999958, 49.866629124000021 ], [ -119.114904236999948, 49.866664340000113 ], [ -119.114907940999956, 49.866639785000075 ], [ -119.11467643899999, 49.866625181000131 ], [ -119.115216597999918, 49.863045335000088 ], [ -119.116883144999946, 49.863150459000032 ], [ -119.116963945999927, 49.862614774000079 ], [ -119.119979896999922, 49.862804950000061 ], [ -119.120000612999931, 49.862667543000107 ], [ -119.122597461999959, 49.862831225000107 ], [ -119.123069043000029, 49.859702005000038 ], [ -119.124152734999925, 49.859770293000039 ], [ -119.126588256999923, 49.859923725000073 ], [ -119.126674095999974, 49.85935380100009 ], [ -119.123612060999932, 49.859160891000101 ], [ -119.122936629999941, 49.859118326000036 ], [ -119.123029211999935, 49.858503933000023 ], [ -119.123294981999919, 49.856740163000062 ], [ -119.121101818999975, 49.856601925000128 ], [ -119.119068566999957, 49.856473726000054 ], [ -119.119204473999943, 49.85557228400009 ], [ -119.118485009999972, 49.85552691200013 ], [ -119.118584801999958, 49.854865053 ], [ -119.118509655, 49.854860314000035 ], [ -119.118568444999966, 49.854470391000049 ], [ -119.117163537999986, 49.854381777000121 ], [ -119.11730872599999, 49.853418998000059 ], [ -119.11731636199994, 49.853368356000082 ], [ -119.117231697999969, 49.85336301500007 ], [ -119.115851689999943, 49.85327595200004 ], [ -119.115707674999925, 49.854230762000057 ], [ -119.110172625999923, 49.853881385000136 ], [ -119.110712986999914, 49.850301498000135 ], [ -119.112715443999903, 49.850427928000023 ], [ -119.114867159, 49.85056374100003 ], [ -119.115295628999888, 49.847722995 ], [ -119.120829972999957, 49.848072116000012 ], [ -119.12054574899993, 49.849958062000084 ], [ -119.121160289999949, 49.849996810000043 ], [ -119.121007562, 49.851010242000072 ], [ -119.123238091999909, 49.851150855000036 ], [ -119.123179345999972, 49.85154078200005 ], [ -119.124584176999988, 49.851629319000082 ], [ -119.124484477999928, 49.852291186000173 ], [ -119.124559621999936, 49.852295921000106 ], [ -119.124423830999916, 49.85319737400004 ], [ -119.125143263999988, 49.853242707000057 ], [ -119.124785034999931, 49.855620889000079 ], [ -119.129011403999982, 49.855887106000083 ], [ -119.128689632999951, 49.858024338000078 ], [ -119.132427039999953, 49.858259616000034 ], [ -119.132282352999979, 49.859221101000117 ], [ -119.134487540999913, 49.859359861000044 ], [ -119.134442157999928, 49.859661527000121 ], [ -119.135839416999929, 49.859749425000082 ], [ -119.135604681999922, 49.861310005000078 ], [ -119.13577202499999, 49.861320531000054 ], [ -119.135681214999963, 49.861924239000075 ], [ -119.136475744, 49.861974212000078 ], [ -119.136473347999953, 49.861990145000036 ], [ -119.13648316499993, 49.861990762000111 ], [ -119.136586075999944, 49.861306519000074 ], [ -119.138110779999948, 49.861402399000021 ], [ -119.138135612999932, 49.861237253000134 ], [ -119.143671762999986, 49.86158521200008 ], [ -119.14362749499999, 49.861879858000108 ], [ -119.147801255000033, 49.862141999000052 ], [ -119.147598261999988, 49.863493847000065 ], [ -119.14920890099999, 49.863594963 ], [ -119.149158128999943, 49.863933155000026 ], [ -119.151475552999969, 49.864078601000109 ], [ -119.151364584999953, 49.864817979000037 ], [ -119.155659273999902, 49.865087388000084 ], [ -119.155427051999936, 49.866635556000098 ], [ -119.154453301999951, 49.866933792000083 ], [ -119.154141495999923, 49.866805695000075 ], [ -119.153416009999958, 49.866143384000083 ], [ -119.152962109999947, 49.865953999000077 ], [ -119.152513214, 49.865864305000102 ], [ -119.150874302999938, 49.865939694000105 ], [ -119.150538288999911, 49.865891295000061 ], [ -119.150213509999929, 49.8657802050001 ], [ -119.150020115999936, 49.865486794000056 ], [ -119.149677482999891, 49.865295991000011 ], [ -119.149237287999966, 49.86513360600005 ], [ -119.148833586999956, 49.865122189000068 ], [ -119.148071600999984, 49.865163487000061 ], [ -119.147342218999938, 49.86537580100002 ], [ -119.146344237999955, 49.865817972000109 ], [ -119.146114406999956, 49.865919799000039 ], [ -119.144974890999919, 49.866273004000057 ], [ -119.144369407999989, 49.866113485000021 ], [ -119.143080490999949, 49.865291701000075 ], [ -119.142039492999928, 49.86505960300012 ], [ -119.141794384999955, 49.865163606000067 ], [ -119.141371290999928, 49.865647812000127 ], [ -119.141206913999923, 49.865704805000114 ], [ -119.140553801999928, 49.865734695000079 ], [ -119.138762710999956, 49.865542403000099 ], [ -119.138254911999965, 49.865687687000097 ], [ -119.137632813999915, 49.866067899000015 ], [ -119.136172206999959, 49.866741605000044 ], [ -119.135421715999939, 49.866747292000056 ], [ -119.135065603999976, 49.866879702000055 ], [ -119.134717502999962, 49.866913399000033 ], [ -119.134182808999981, 49.866760088 ], [ -119.134017512999989, 49.866485210000121 ], [ -119.133750107999973, 49.866381184000069 ], [ -119.133271408999974, 49.866300105000043 ], [ -119.131893211999952, 49.866271594000089 ], [ -119.131178687999949, 49.865852904000064 ], [ -119.130004, 49.865390010000098 ], [ -119.129472686999961, 49.865318792000032 ], [ -119.128948391999984, 49.865139300000052 ], [ -119.128298792999942, 49.865250412000073 ], [ -119.12758218099998, 49.865730392000067 ], [ -119.126572897999949, 49.865542394000066 ], [ -119.12582098399993, 49.865529592000044 ], [ -119.125117606999979, 49.865659196000095 ], [ -119.124172105999932, 49.866026610000063 ], [ -119.12302308699999, 49.866137708000046 ], [ -119.12224950199996, 49.866620508000082 ], [ -119.121328299999973, 49.86685270099999 ], [ -119.118688008999982, 49.8672514 ], [ -119.118032817999918, 49.867218701000077 ], [ -119.11711330699994, 49.866587788000032 ], [ -119.116518521999978, 49.86633850100003 ], [ -119.115398409999955, 49.866196091000106 ], [ -119.115124103999918, 49.866273012000057 ], [ -119.114990709999958, 49.86640259700004 ], [ -119.114968795999957, 49.867175986000078 ], [ -119.114839102999937, 49.867403811000081 ], [ -119.114139198000018, 49.867965006000077 ], [ -119.112814996999958, 49.868222805000116 ], [ -119.112089003999955, 49.868460591000023 ], [ -119.111965518999938, 49.868526103000121 ], [ -119.111735487999965, 49.868970491000027 ], [ -119.110734213999962, 49.869636991000078 ], [ -119.109285998999923, 49.869933188000033 ], [ -119.10859110699991, 49.86997310000001 ], [ -119.107898916999943, 49.869706803000085 ], [ -119.107268176999966, 49.869628392000067 ], [ -119.106983997999947, 49.869498801000098 ], [ -119.106832482999891, 49.869545802000133 ], [ -119.106795117, 49.869618503000048 ], [ -119.107038494000022, 49.869812207000102 ], [ -119.106959482999983, 49.869911900000091 ], [ -119.106486696999923, 49.869911901000116 ], [ -119.106081090999965, 49.869648185000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "226.4", "sL_BldgLoss": "226.4", "sL_StrLoss": "226.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F822D21D61C65DC061623DFF07EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.097181316999951, 49.84202906600008 ], [ -119.102714833999954, 49.842379105000134 ], [ -119.102331969, 49.844913157000057 ], [ -119.102173941999979, 49.845958991000025 ], [ -119.096639995999979, 49.845608927000107 ], [ -119.09712108299999, 49.842427432000072 ], [ -119.097181316999951, 49.84202906600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "195.9", "sL_BldgLoss": "195.9", "sL_StrLoss": "195.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E17C2C75F7D35DC04D32CDCFE8EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.309473371999957, 49.841082215000036 ], [ -119.315008370999934, 49.841421518000118 ], [ -119.314484088999933, 49.845002442000052 ], [ -119.308948660999988, 49.844663115000095 ], [ -119.309473371999957, 49.841082215000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59019999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "96.4", "sL_BldgLoss": "96.4", "sL_StrLoss": "96.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3A857E30FC65DC08D022B246C014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09310308299996, 50.012178662000032 ], [ -119.093146933999947, 50.011889956000068 ], [ -119.092100268999943, 50.011823936000091 ], [ -119.092438974999979, 50.009594190000037 ], [ -119.09303472, 50.009520147000089 ], [ -119.093286953999964, 50.009540672000057 ], [ -119.09348817399993, 50.009669778000017 ], [ -119.093663043999953, 50.009835147000032 ], [ -119.094416890999952, 50.010147531000023 ], [ -119.094519239999954, 50.010252146000091 ], [ -119.09495759099994, 50.011008204000063 ], [ -119.095060750999949, 50.011130606000073 ], [ -119.095696155999946, 50.011606408000098 ], [ -119.096015829999985, 50.011571216000021 ], [ -119.096331934999967, 50.011004716000045 ], [ -119.096455532, 50.010956410000119 ], [ -119.096781465999982, 50.011064655000062 ], [ -119.096920983999965, 50.011061068000096 ], [ -119.097155435999952, 50.010991922000137 ], [ -119.097277106000021, 50.010898352000055 ], [ -119.097298750999954, 50.010752342000075 ], [ -119.097263099999935, 50.010570946000058 ], [ -119.097308033999965, 50.010315288000143 ], [ -119.097481185999968, 50.010120642000061 ], [ -119.097677211999951, 50.009807315000081 ], [ -119.097899241, 50.0097746100001 ], [ -119.097959354999972, 50.009871238000038 ], [ -119.098001054999912, 50.010181601000077 ], [ -119.098081419999943, 50.010420108000034 ], [ -119.098197410999916, 50.010515522000041 ], [ -119.098282607999963, 50.010549193000074 ], [ -119.098391512999953, 50.010483125000107 ], [ -119.09850692, 50.010244265000033 ], [ -119.098649227999942, 50.010303370000017 ], [ -119.098751534999977, 50.01040796700007 ], [ -119.098872243999949, 50.010610095000054 ], [ -119.098927435999926, 50.01074820300007 ], [ -119.098844549999967, 50.011294380000066 ], [ -119.09849461099995, 50.010948495000022 ], [ -119.09835021499994, 50.010861602000077 ], [ -119.097813321999965, 50.010988405000028 ], [ -119.097303910999955, 50.011159300000031 ], [ -119.096790895999931, 50.011590814000044 ], [ -119.096839290999952, 50.012049395000119 ], [ -119.096696290999944, 50.012302911000099 ], [ -119.096691395999969, 50.012404923000105 ], [ -119.09310308299996, 50.012178662000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "0.99999738648908", "sL_AssetLoss": "471.013911", "sL_BldgLoss": "471.01268", "sL_StrLoss": "471", "sL_NStrLoss": "0.01268", "sL_ContLoss": "0.001231", "geom_point": "0101000020E61000000E7B0C1CF1CA5DC0632827DA55E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.175515417999961, 49.758025327000048 ], [ -119.178739061999948, 49.758091552000089 ], [ -119.178709948999938, 49.758286784000028 ], [ -119.178454976999944, 49.758270809000102 ], [ -119.17841515, 49.758537891000103 ], [ -119.175262871999962, 49.758340336000046 ], [ -119.174290099999951, 49.758279354000095 ], [ -119.174242438999926, 49.758598769000081 ], [ -119.174076721999967, 49.759709347000125 ], [ -119.173996852999949, 49.760244586000084 ], [ -119.173447869999904, 49.760210167000061 ], [ -119.173352492999982, 49.760849263000075 ], [ -119.173007469999931, 49.763161001000121 ], [ -119.172625811, 49.763137071000145 ], [ -119.172606758999933, 49.763264710000087 ], [ -119.169179896999935, 49.763049783000085 ], [ -119.167082252999975, 49.762918168000041 ], [ -119.167617101999937, 49.759337548000055 ], [ -119.167998726999954, 49.759361496000096 ], [ -119.16801779099994, 49.759233857000069 ], [ -119.168566756999951, 49.759268304000045 ], [ -119.16876974399996, 49.757909039000054 ], [ -119.16992288699997, 49.757927324000022 ], [ -119.171252820999968, 49.757949327000127 ], [ -119.172292912, 49.757967084000072 ], [ -119.175515417999961, 49.758025327000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "338.1", "sL_BldgLoss": "338.1", "sL_StrLoss": "338.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E1BF0ED61EC95DC0BBE875D5CDF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.139335126999939, 49.900991689000094 ], [ -119.13987376199999, 49.897411890000079 ], [ -119.143153211999973, 49.897617819000075 ], [ -119.143155356999941, 49.89760355300006 ], [ -119.140352, 49.897427526000122 ], [ -119.140890512999988, 49.893847704000052 ], [ -119.141213299999947, 49.893867977000056 ], [ -119.141452874999942, 49.892275113000025 ], [ -119.144716806999938, 49.892480044000102 ], [ -119.144922304999938, 49.893857590000017 ], [ -119.144907360000019, 49.894473714000114 ], [ -119.144905905999977, 49.894534198000088 ], [ -119.144909291999923, 49.894566442000048 ], [ -119.144937656999957, 49.894835352000044 ], [ -119.144971618999989, 49.895157107000081 ], [ -119.144870082999915, 49.895766559000059 ], [ -119.14484442, 49.895920776000082 ], [ -119.144825696999973, 49.896033038 ], [ -119.14479961699999, 49.896189701000011 ], [ -119.144930779999967, 49.896432897000061 ], [ -119.14604059, 49.897356188000124 ], [ -119.146253901999955, 49.897648780000026 ], [ -119.146271986, 49.897750627000079 ], [ -119.146297799999985, 49.897896301000095 ], [ -119.146243384999963, 49.897966138000086 ], [ -119.14618511099998, 49.898040997000045 ], [ -119.145857588999917, 49.898034008000089 ], [ -119.145520091999927, 49.897972204000098 ], [ -119.144988300999984, 49.897975891000087 ], [ -119.144538100999966, 49.89814281400011 ], [ -119.144165212, 49.898363306000078 ], [ -119.143989020999967, 49.898772300000061 ], [ -119.14397815399991, 49.898882525000062 ], [ -119.143968222999916, 49.898983604000094 ], [ -119.14395189399994, 49.899149405000095 ], [ -119.143907786999961, 49.899327717000126 ], [ -119.14384141499994, 49.899596070000023 ], [ -119.143739776999908, 49.900006823000076 ], [ -119.14366219799993, 49.90032040200002 ], [ -119.143613216999938, 49.900518489000042 ], [ -119.143609107999978, 49.900527128000114 ], [ -119.143272464999981, 49.901238916000075 ], [ -119.139335126999939, 49.900991689000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "57.4", "sL_BldgLoss": "57.4", "sL_StrLoss": "57.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008171153026CA5DC0A6C46460D3EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.158568315999915, 49.866821307000095 ], [ -119.157299524999956, 49.866485203000067 ], [ -119.156686415999928, 49.866469504000058 ], [ -119.156455191999981, 49.866494484000064 ], [ -119.156615590999976, 49.865424987000083 ], [ -119.158646135999945, 49.865552285000071 ], [ -119.158793144999919, 49.864571734000094 ], [ -119.16073806499999, 49.864693629000065 ], [ -119.160685501, 49.86470500399999 ], [ -119.16018118099997, 49.864938502 ], [ -119.159912397999932, 49.865465499000059 ], [ -119.159952799999942, 49.86636420700011 ], [ -119.159730803999963, 49.866664695000054 ], [ -119.159320109999939, 49.866817098000126 ], [ -119.158568315999915, 49.866821307000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.7", "sL_BldgLoss": "168.7", "sL_StrLoss": "168.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080B07C2BCCD15DC08D546BA332EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.27544435, 49.858998185000118 ], [ -119.280981262999916, 49.859339201000125 ], [ -119.280454111999944, 49.862919873000081 ], [ -119.275620144999962, 49.86262216800003 ], [ -119.275582611999937, 49.862876906000082 ], [ -119.275578004999915, 49.862572604999983 ], [ -119.275577105999957, 49.86251642800007 ], [ -119.275554993, 49.861163892000036 ], [ -119.275402076999981, 49.860580899000141 ], [ -119.275204362999943, 49.8602038000001 ], [ -119.275266161, 49.860207607000113 ], [ -119.27544435, 49.858998185000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7801000", "BldgCostT": "5380000", "sL_LossRatio": "1", "sL_AssetLoss": "574.9", "sL_BldgLoss": "574.9", "sL_StrLoss": "574.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E43F519794C75DC04C59E1F148EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.105645833, 49.872528565000039 ], [ -119.10601166399999, 49.870107652000065 ], [ -119.106152115999933, 49.870232308000112 ], [ -119.106589814999907, 49.870360490000039 ], [ -119.106921906, 49.870317806000124 ], [ -119.10749399599996, 49.870037208000106 ], [ -119.108449915, 49.870253708000057 ], [ -119.109047010999959, 49.87022520500004 ], [ -119.110770808999973, 49.869860606000046 ], [ -119.111696906999939, 49.869384897000096 ], [ -119.112639512999934, 49.868630104000061 ], [ -119.113338492999958, 49.868420716000045 ], [ -119.113796287999932, 49.868435102000063 ], [ -119.114210296999943, 49.868620108000123 ], [ -119.114702585999964, 49.868728289000032 ], [ -119.115296609999945, 49.868645682000071 ], [ -119.116001779999976, 49.868218493000015 ], [ -119.116074413999939, 49.867937897000033 ], [ -119.115916982999963, 49.867536290000011 ], [ -119.115533100999954, 49.867039190000121 ], [ -119.11550671099991, 49.866761504000081 ], [ -119.115678488999933, 49.866550693000079 ], [ -119.116024883999927, 49.866499493000042 ], [ -119.116602007999958, 49.866668888000085 ], [ -119.117677108999942, 49.867378196000104 ], [ -119.118172208999965, 49.867530607000077 ], [ -119.119299382999927, 49.86756480600004 ], [ -119.119845601999941, 49.867321208000114 ], [ -119.1202334099999, 49.867250004000063 ], [ -119.120692113999922, 49.867251394000029 ], [ -119.121157215999986, 49.8673781950001 ], [ -119.121987816999962, 49.867631707000101 ], [ -119.122265310999921, 49.867608905000083 ], [ -119.122723186999977, 49.867223012000068 ], [ -119.122748207999948, 49.866854086000046 ], [ -119.122867492999902, 49.866743014000079 ], [ -119.124145500999973, 49.86635991100016 ], [ -119.125091294999962, 49.866352791000089 ], [ -119.125341789999979, 49.866032311000048 ], [ -119.125804116999973, 49.865781703000039 ], [ -119.126278786999976, 49.865827196000026 ], [ -119.126854511999966, 49.866294407000069 ], [ -119.127484889999977, 49.866667502000027 ], [ -119.128043096999932, 49.866693108000071 ], [ -119.128457496999914, 49.866614804000086 ], [ -119.12982879799992, 49.86614769800012 ], [ -119.130564894999978, 49.86612629800004 ], [ -119.132200903999916, 49.86722861000009 ], [ -119.132650514999952, 49.867355410000116 ], [ -119.13323740599999, 49.867380987000026 ], [ -119.134152301999933, 49.867318394000073 ], [ -119.136708689999963, 49.866929601000045 ], [ -119.136890055999942, 49.86685409800004 ], [ -119.136811408999975, 49.867376968000045 ], [ -119.136736819999939, 49.867872844000082 ], [ -119.134141013999937, 49.867709585000071 ], [ -119.131199961999982, 49.867524538000055 ], [ -119.131255484999897, 49.86715570700003 ], [ -119.12980663299993, 49.867064517000074 ], [ -119.129763561999965, 49.8673505820001 ], [ -119.12949148, 49.869157507000068 ], [ -119.129093605999955, 49.869132461000149 ], [ -119.129002174999982, 49.86973960300007 ], [ -119.129000591999954, 49.869750116000013 ], [ -119.128923092999912, 49.869745237000082 ], [ -119.123463564999938, 49.86940142000001 ], [ -119.123604509999936, 49.868466230000053 ], [ -119.123828430999964, 49.866980419000079 ], [ -119.123302512999913, 49.866947285000059 ], [ -119.123126148999972, 49.868117454000085 ], [ -119.12030125099993, 49.867939431000131 ], [ -119.120241437999937, 49.868336119000048 ], [ -119.119683215999956, 49.868300931000121 ], [ -119.119638730999952, 49.86859593500008 ], [ -119.11934775499995, 49.870525421000082 ], [ -119.119342820999975, 49.870558134000049 ], [ -119.119314445999976, 49.870556345000089 ], [ -119.119198755999918, 49.871323435000079 ], [ -119.118617292999943, 49.871286780000091 ], [ -119.118549950999977, 49.871733249000087 ], [ -119.11773684299996, 49.871681985000087 ], [ -119.117683729999968, 49.872034068000076 ], [ -119.112146513999932, 49.871684800000018 ], [ -119.112228570999889, 49.871141270000052 ], [ -119.112266971999972, 49.870886918000096 ], [ -119.111491157999964, 49.870837959000092 ], [ -119.111439493999953, 49.871180132000077 ], [ -119.111139711999911, 49.873165513000039 ], [ -119.105602407999982, 49.872815916000079 ], [ -119.105645833, 49.872528565000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "170.3", "sL_BldgLoss": "170.3", "sL_StrLoss": "170.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D281930A36C55DC006CF296D96EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.078928188999967, 49.83856274100004 ], [ -119.08446114799996, 49.83891370400007 ], [ -119.083918868999945, 49.842493518 ], [ -119.078385482999977, 49.842142528000089 ], [ -119.078928188999967, 49.83856274100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.6", "sL_BldgLoss": "51.6", "sL_StrLoss": "51.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD5CE11B92CC5DC047DB84BD01EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194026461999925, 49.860117670000129 ], [ -119.19419863199991, 49.858963127000052 ], [ -119.199734931999927, 49.859308252000083 ], [ -119.199661635999945, 49.859800166000113 ], [ -119.19955181399996, 49.859735901000107 ], [ -119.198442893, 49.859523709000015 ], [ -119.197622623999948, 49.859566402000027 ], [ -119.196964807999962, 49.859767198000021 ], [ -119.196439214999984, 49.859839891000021 ], [ -119.195068108999976, 49.859696003000089 ], [ -119.194682098999962, 49.859747297000055 ], [ -119.194367390999943, 49.859898202000039 ], [ -119.194026461999925, 49.860117670000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "343", "sL_BldgLoss": "343", "sL_StrLoss": "343", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3145EBC7EE65DC0157FCAE7CBE34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.596932526999964, 49.7816436190001 ], [ -119.597434028999885, 49.778061054000084 ], [ -119.601844351999901, 49.778320108000102 ], [ -119.601884041999952, 49.778036357000126 ], [ -119.607413548999929, 49.778360894000052 ], [ -119.607223275999957, 49.779722320000097 ], [ -119.606958592999916, 49.779615592000098 ], [ -119.605941584999954, 49.779584203000063 ], [ -119.605203601999975, 49.779817793000056 ], [ -119.604521003999977, 49.780552694000072 ], [ -119.60372879699996, 49.781065411000093 ], [ -119.603358197999952, 49.781163706000065 ], [ -119.60256821199999, 49.781199293000071 ], [ -119.602028819999987, 49.781471302000035 ], [ -119.60029438, 49.781276192000107 ], [ -119.599529589999975, 49.781257708000069 ], [ -119.59825938599991, 49.781646504000037 ], [ -119.59783853499999, 49.781696850000074 ], [ -119.596932526999964, 49.7816436190001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "107.3", "sL_BldgLoss": "107.3", "sL_StrLoss": "107.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000529ED4F29ED55DC07F45C88AABEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.338192039999939, 49.84251625600006 ], [ -119.338179028999917, 49.842246653000089 ], [ -119.337345246999959, 49.842263476000049 ], [ -119.33731923699996, 49.841724268000021 ], [ -119.336485464999939, 49.841741085000081 ], [ -119.336472465000014, 49.841471481000021 ], [ -119.336055581, 49.841479888000109 ], [ -119.336042581999934, 49.841210283000109 ], [ -119.335208816999966, 49.841227091000093 ], [ -119.335156846999922, 49.840148672000083 ], [ -119.3355737199999, 49.840140269000074 ], [ -119.335560726999972, 49.839870665000049 ], [ -119.336811338999894, 49.83984544700008 ], [ -119.336824339999936, 49.840115051000048 ], [ -119.339325573999986, 49.840064574000046 ], [ -119.339364619999955, 49.840873386000027 ], [ -119.338113982999914, 49.840898632000126 ], [ -119.338126991999943, 49.841168236000051 ], [ -119.338543874999971, 49.841159822000115 ], [ -119.33855688599999, 49.841429426000026 ], [ -119.34022441800002, 49.841395756000075 ], [ -119.340237438999949, 49.841665360000086 ], [ -119.340654324999917, 49.84165693800005 ], [ -119.34069339499996, 49.842465749000127 ], [ -119.338192039999939, 49.84251625600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "243.9", "sL_BldgLoss": "243.9", "sL_StrLoss": "243.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B93F0F9C10CB5DC0D3951980D7E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.172181398999939, 49.781591367000033 ], [ -119.172183615, 49.781576532000045 ], [ -119.17011273699994, 49.781446710000104 ], [ -119.17012751799993, 49.781347753000034 ], [ -119.169487021999942, 49.781307592000061 ], [ -119.169531958, 49.781006808000086 ], [ -119.169495042999941, 49.781004493000118 ], [ -119.169874559999954, 49.778463986000084 ], [ -119.170029913999926, 49.777423953000095 ], [ -119.170305978999977, 49.777441264000096 ], [ -119.170327307999969, 49.777298460000033 ], [ -119.172121706, 49.777410958000104 ], [ -119.172657005999966, 49.777444514000116 ], [ -119.172335806999939, 49.777519104000135 ], [ -119.17216059099999, 49.777980597000081 ], [ -119.172130814999932, 49.778521807000054 ], [ -119.172294988999965, 49.778779613000076 ], [ -119.172463901999919, 49.778829393000109 ], [ -119.172917000999988, 49.778731095000083 ], [ -119.172849718999885, 49.778480496000078 ], [ -119.173587296999969, 49.778503291000106 ], [ -119.174203708999954, 49.778608585000043 ], [ -119.174525519999946, 49.778961903000059 ], [ -119.174825208999962, 49.779145588000091 ], [ -119.175320893999967, 49.779343509000064 ], [ -119.175642597999968, 49.779381995000058 ], [ -119.17572481199997, 49.779668293000043 ], [ -119.176538113999925, 49.780471496000075 ], [ -119.177111618999959, 49.780883095000014 ], [ -119.177206584999936, 49.78114229600007 ], [ -119.177432511999925, 49.781237709000038 ], [ -119.177755528999953, 49.781620411000155 ], [ -119.177708192999916, 49.781937642000088 ], [ -119.172181398999939, 49.781591367000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.6", "sL_BldgLoss": "51.6", "sL_StrLoss": "51.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4B044F3C2D25DC0D8305C802AED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.295214405999957, 49.853248595000068 ], [ -119.294735211999949, 49.853140404000044 ], [ -119.292232784999953, 49.853181700000043 ], [ -119.29041498399999, 49.85337894600007 ], [ -119.290576368999936, 49.852280914000104 ], [ -119.296112581999964, 49.852621166000027 ], [ -119.295926308999952, 49.853889569000074 ], [ -119.295513708, 49.853403887000098 ], [ -119.295214405999957, 49.853248595000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "202.4", "sL_BldgLoss": "202.4", "sL_StrLoss": "202.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8DBE1C8A6D45DC0F091C5E4AAEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.319640882999977, 49.834952033000022 ], [ -119.320156201999936, 49.831428777000049 ], [ -119.320238403999966, 49.831377001000114 ], [ -119.320237883999965, 49.831375520000044 ], [ -119.325698552999938, 49.831709800000034 ], [ -119.325175216, 49.835290824000062 ], [ -119.319640882999977, 49.834952033000022 ] ], [ [ -119.322943698999964, 49.832986400999985 ], [ -119.322247505999954, 49.832677305000054 ], [ -119.321914920999987, 49.832682998000031 ], [ -119.321709106999961, 49.832749992000103 ], [ -119.321742075999907, 49.832858192000074 ], [ -119.322126411999932, 49.833318197000068 ], [ -119.322542697999964, 49.833326805000105 ], [ -119.322952022999942, 49.833130203000053 ], [ -119.322943698999964, 49.832986400999985 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "1", "sL_AssetLoss": "443", "sL_BldgLoss": "443", "sL_StrLoss": "443", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EFD664530FCC5DC059AB6EDC7FE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.186906435999944, 49.794950845000137 ], [ -119.186986102999953, 49.794416378000115 ], [ -119.181753808999957, 49.794089104000093 ], [ -119.181986431999945, 49.792529612000116 ], [ -119.182808791999946, 49.792335206000125 ], [ -119.183325788999952, 49.79238931000004 ], [ -119.183399810999944, 49.792494688000012 ], [ -119.183253787999931, 49.792668397000057 ], [ -119.183608615999972, 49.792842191000041 ], [ -119.184067291999952, 49.792825109000077 ], [ -119.184284703999964, 49.792712588000057 ], [ -119.184360295999923, 49.792548793000059 ], [ -119.18432689799999, 49.792441996 ], [ -119.183725687999967, 49.792353694000042 ], [ -119.183271307999959, 49.792128708000106 ], [ -119.182738005000019, 49.791715602000068 ], [ -119.182203969999975, 49.791071139000046 ], [ -119.182287875999975, 49.790508569000053 ], [ -119.187815821999962, 49.790854330000066 ], [ -119.18773617, 49.791388800000099 ], [ -119.189166167999971, 49.791478197000117 ], [ -119.189196439999961, 49.791275029000062 ], [ -119.194724527999981, 49.791620438000066 ], [ -119.194191419999925, 49.79520103000015 ], [ -119.192465210999956, 49.795093202000096 ], [ -119.192434949999921, 49.795296370000088 ], [ -119.186906435999944, 49.794950845000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "172.3", "sL_BldgLoss": "172.3", "sL_StrLoss": "172.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008AAEA814FDC55DC083A856BA96EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.091390801999964, 49.838592155000114 ], [ -119.096609119999954, 49.838922567000061 ], [ -119.09617720599999, 49.841778917000063 ], [ -119.096067790999896, 49.842502441000107 ], [ -119.090534310999928, 49.842152066000068 ], [ -119.09107606699996, 49.83857221900012 ], [ -119.091390801999964, 49.838592155000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "779060084", "BldgCostT": "522268334", "sL_LossRatio": "1", "sL_AssetLoss": "68052.2", "sL_BldgLoss": "68052.2", "sL_StrLoss": "68052.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A02455C230DF5DC0DFFF2A344EE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.469839660999952, 49.809381422000079 ], [ -119.469811105999938, 49.809357298000066 ], [ -119.468866396999928, 49.809333114000076 ], [ -119.468403191999954, 49.809169039000018 ], [ -119.467735308, 49.808932443000046 ], [ -119.46762000399994, 49.808891594000087 ], [ -119.467027, 49.808435912000071 ], [ -119.466682897999974, 49.808279595000045 ], [ -119.466572406999944, 49.808229408000038 ], [ -119.46636457299995, 49.808084049000051 ], [ -119.466988841999935, 49.808121457000027 ], [ -119.46698984599999, 49.808114437000071 ], [ -119.467164648999926, 49.808124911000029 ], [ -119.467183033999987, 49.807996278000083 ], [ -119.467050592999925, 49.807999100000096 ], [ -119.466995755999932, 49.806920779000123 ], [ -119.46657920899996, 49.806929650000015 ], [ -119.466496972999906, 49.805312168000022 ], [ -119.466913506999944, 49.805303298000091 ], [ -119.466899799999965, 49.805033717000121 ], [ -119.468149393999965, 49.805007095000093 ], [ -119.46816310899996, 49.805276676000069 ], [ -119.468390310999922, 49.805271834000031 ], [ -119.46862239799998, 49.803647653000027 ], [ -119.467247785999945, 49.803676942 ], [ -119.467234076999915, 49.803407362000058 ], [ -119.46681756, 49.803416234000053 ], [ -119.466806912999971, 49.803206849000055 ], [ -119.466768194999958, 49.802445291000019 ], [ -119.466735323999941, 49.801798751000057 ], [ -119.46965085, 49.801736621000046 ], [ -119.469637127999988, 49.801467041000095 ], [ -119.469220626999942, 49.801475921000105 ], [ -119.469165754999921, 49.800397601 ], [ -119.469582246999948, 49.800388721000068 ], [ -119.469568524999957, 49.80011914100001 ], [ -119.470817991999965, 49.800092493000115 ], [ -119.470831718999932, 49.800362074000049 ], [ -119.473330657999981, 49.800308736000048 ], [ -119.473275695, 49.799230419000068 ], [ -119.472859215999975, 49.799239311000036 ], [ -119.472804265999955, 49.798160994000092 ], [ -119.47447014899997, 49.798125415000122 ], [ -119.474456402999976, 49.79785583600006 ], [ -119.476955205999971, 49.797802422000068 ], [ -119.476968966999905, 49.798072002000055 ], [ -119.477801903999946, 49.798054185000041 ], [ -119.477788139999959, 49.797784606000022 ], [ -119.479870467999888, 49.797740039000132 ], [ -119.479856692999959, 49.797470461000067 ], [ -119.480273154999921, 49.797461543000082 ], [ -119.48023182299994, 49.796652809000129 ], [ -119.480648276999887, 49.796643890000091 ], [ -119.480634498999962, 49.796374312000069 ], [ -119.481050950999943, 49.796365391000037 ], [ -119.481023387999983, 49.795826236000096 ], [ -119.481856283999932, 49.795808390000069 ], [ -119.481842497999963, 49.795538814000039 ], [ -119.48309183500001, 49.795512034000055 ], [ -119.483105626999958, 49.79578161200007 ], [ -119.485604305999971, 49.795728014000062 ], [ -119.48561811399999, 49.795997591000038 ], [ -119.486451009999925, 49.795979713000051 ], [ -119.486464821999945, 49.796249290000013 ], [ -119.486881272999966, 49.79624034700003 ], [ -119.486895085999947, 49.796509925000095 ], [ -119.487727989999954, 49.796492037000071 ], [ -119.487741809999974, 49.796761614000047 ], [ -119.488158264999967, 49.796752668000124 ], [ -119.488172084999988, 49.797022243000086 ], [ -119.488588542999977, 49.797013296000074 ], [ -119.488609638999947, 49.797424695000124 ], [ -119.492791654999934, 49.797674431000154 ], [ -119.492780787999919, 49.797462889000101 ], [ -119.494446620999966, 49.797427023000054 ], [ -119.494432764999956, 49.797157447000174 ], [ -119.49484922000002, 49.797148477000114 ], [ -119.494835359999939, 49.796878903000099 ], [ -119.495251814999932, 49.796869931000103 ], [ -119.495224092999976, 49.796330781000115 ], [ -119.495640539999954, 49.796321808000101 ], [ -119.495612815999934, 49.795782658000149 ], [ -119.496445702999949, 49.79576470799999 ], [ -119.496431834999981, 49.795495133000081 ], [ -119.497681154999924, 49.795468197000048 ], [ -119.497695028999885, 49.79573777300007 ], [ -119.49811147299999, 49.795728790000062 ], [ -119.498125348999963, 49.795998365000052 ], [ -119.498541792999916, 49.79598938200013 ], [ -119.498486279999923, 49.794911084000013 ], [ -119.498069844999989, 49.794920067000128 ], [ -119.498028219, 49.794111344000036 ], [ -119.498444646999985, 49.794102361000128 ], [ -119.498430769999942, 49.793832786000131 ], [ -119.498847196, 49.793823803000059 ], [ -119.49880555799993, 49.793015080000018 ], [ -119.497972719999964, 49.793033045000115 ], [ -119.497958847999911, 49.792763471000058 ], [ -119.497542430999943, 49.792772451000076 ], [ -119.497459204999984, 49.791155003000043 ], [ -119.498292011, 49.791137041000113 ], [ -119.498278134999978, 49.790867466000051 ], [ -119.498694535999945, 49.790858483000079 ], [ -119.49868065899993, 49.7905889090001 ], [ -119.499538326999982, 49.790570402000064 ], [ -119.500346248999975, 49.790552962000071 ], [ -119.500382294999966, 49.791252736000047 ], [ -119.50038790799999, 49.791361685000119 ], [ -119.500353724, 49.791362422000027 ], [ -119.499555097999959, 49.791379661000072 ], [ -119.499568980999953, 49.791649236000161 ], [ -119.500283025999963, 49.791633822000044 ], [ -119.501651012999957, 49.791604281000055 ], [ -119.501664906999935, 49.791873855000098 ], [ -119.502081313999938, 49.791864859000015 ], [ -119.502095210999968, 49.792134434000026 ], [ -119.503318669999942, 49.792107996000084 ], [ -119.503512738, 49.790742129000066 ], [ -119.507162634999958, 49.790959630000081 ], [ -119.507191078999981, 49.790759313000073 ], [ -119.507862461999977, 49.79079930800004 ], [ -119.50784136099999, 49.790390903000095 ], [ -119.508257753999899, 49.790381886000034 ], [ -119.508243825999969, 49.790112314000027 ], [ -119.511158554999938, 49.790049150000094 ], [ -119.511172500999962, 49.790318722000059 ], [ -119.511588891999963, 49.790309692000122 ], [ -119.511574942999971, 49.790040120000107 ], [ -119.512407721999935, 49.790022057000044 ], [ -119.512393769999946, 49.789752486000069 ], [ -119.512810155999915, 49.789743451000064 ], [ -119.512796200999944, 49.789473880000052 ], [ -119.514045351999968, 49.78944677100008 ], [ -119.514073274999987, 49.789985913000109 ], [ -119.514906050999969, 49.789967832000066 ], [ -119.514892083999896, 49.789698261000083 ], [ -119.515308468999933, 49.789689218 ], [ -119.515266562999969, 49.788880504000062 ], [ -119.515682941999941, 49.788871460000045 ], [ -119.515668971999943, 49.78860188900012 ], [ -119.51608534699993, 49.788592844000043 ], [ -119.516001515999974, 49.786975418000026 ], [ -119.516417877999984, 49.786966371000084 ], [ -119.516403903999944, 49.786696800000072 ], [ -119.515571184999928, 49.786714891000045 ], [ -119.515585153999908, 49.786984462000106 ], [ -119.51516879299993, 49.786993505000048 ], [ -119.51518275899997, 49.787263077000048 ], [ -119.512779444999978, 49.78731524800002 ], [ -119.512762362999965, 49.786876435000089 ], [ -119.512737451999925, 49.786236660000057 ], [ -119.51346147199996, 49.786220949000047 ], [ -119.513447516999946, 49.785951377000032 ], [ -119.513863868999977, 49.785942340000069 ], [ -119.513849910999966, 49.785672769000094 ], [ -119.514266261, 49.785663730000095 ], [ -119.514252299999953, 49.785394159000113 ], [ -119.514771540999945, 49.785382885000047 ], [ -119.514754600999964, 49.785604609000075 ], [ -119.514707503999915, 49.785681487000026 ], [ -119.514599136999934, 49.785858423000072 ], [ -119.514601031000026, 49.785903219000012 ], [ -119.514575253999936, 49.785948520000041 ], [ -119.514389841999972, 49.786149070000114 ], [ -119.514247037999965, 49.786375756000076 ], [ -119.514260034999964, 49.786417130000125 ], [ -119.51428519399991, 49.786616248000023 ], [ -119.51438632899999, 49.786650272000074 ], [ -119.514554576999956, 49.786662985000028 ], [ -119.514767417999963, 49.786636813000051 ], [ -119.514945851999954, 49.786577891000036 ], [ -119.515072987999943, 49.78650868000004 ], [ -119.515234411999955, 49.7864207840001 ], [ -119.515635425999974, 49.786119540000136 ], [ -119.515872855999987, 49.786037908000068 ], [ -119.516068815999972, 49.786032430000049 ], [ -119.516255767999937, 49.786061986000043 ], [ -119.516297879, 49.786068643000114 ], [ -119.516658666999916, 49.786198480000081 ], [ -119.516864750999943, 49.78632812700009 ], [ -119.517100327999941, 49.786652810000064 ], [ -119.517126777, 49.786790755000091 ], [ -119.517108048999944, 49.78689348000011 ], [ -119.51675514599999, 49.787396272000109 ], [ -119.516733331999944, 49.787618948000102 ], [ -119.516774185999964, 49.787871559000024 ], [ -119.51684932, 49.788246297000057 ], [ -119.516823900999952, 49.78845520000008 ], [ -119.516708594999955, 49.788648829000067 ], [ -119.516553403000017, 49.788824533000124 ], [ -119.516473717999958, 49.788914705000138 ], [ -119.51641286, 49.788983592000079 ], [ -119.516187149999951, 49.789239125000073 ], [ -119.515969107999965, 49.789537720000091 ], [ -119.515921265999964, 49.789757027000057 ], [ -119.515948195999925, 49.789931132000056 ], [ -119.51602408399998, 49.790034985000041 ], [ -119.516136285999963, 49.790158149000042 ], [ -119.515144658999972, 49.790646153000054 ], [ -119.514415571999933, 49.791004921000081 ], [ -119.513400806999954, 49.791504453000066 ], [ -119.512833555, 49.791886088000076 ], [ -119.512583563999925, 49.792098880000026 ], [ -119.512481485999956, 49.792185746000037 ], [ -119.51211593499994, 49.792600181000111 ], [ -119.512101442999949, 49.792624334000017 ], [ -119.51188928199997, 49.792622677000089 ], [ -119.511671373999931, 49.792981914000038 ], [ -119.51130120099999, 49.79393972000009 ], [ -119.511440052999944, 49.793973270000023 ], [ -119.511707175999945, 49.794046728000062 ], [ -119.512565125999927, 49.79428265100006 ], [ -119.512764618999938, 49.794337487000043 ], [ -119.512621901999935, 49.794537609000081 ], [ -119.512351521999946, 49.794792485000038 ], [ -119.512013204999974, 49.795024288000036 ], [ -119.511903460000028, 49.79507789200008 ], [ -119.511716480999951, 49.795169192000138 ], [ -119.51138393799999, 49.795285262000078 ], [ -119.511249992999964, 49.79533198900004 ], [ -119.510831142999947, 49.79541447900008 ], [ -119.510600349999891, 49.795162957000073 ], [ -119.510396401999984, 49.794940666000144 ], [ -119.510091839999959, 49.795072438000062 ], [ -119.509855840999933, 49.795153637000048 ], [ -119.509798632999932, 49.795173298000051 ], [ -119.509612583, 49.795187505000044 ], [ -119.508214671999923, 49.795398653000049 ], [ -119.506920984999951, 49.795602466000012 ], [ -119.505314635999937, 49.795632813000076 ], [ -119.50493973, 49.795639865000076 ], [ -119.504634244000016, 49.795645631000127 ], [ -119.50382404799997, 49.795660881000089 ], [ -119.503316154999965, 49.795659988000047 ], [ -119.50232536799993, 49.795658238000051 ], [ -119.499683908999927, 49.795572996000089 ], [ -119.49930580799996, 49.795613650000057 ], [ -119.499187188999926, 49.795859467000064 ], [ -119.499187086999939, 49.795993820000035 ], [ -119.499186007, 49.797701707000101 ], [ -119.498912686999986, 49.798672502000095 ], [ -119.498898825999959, 49.798671041000055 ], [ -119.498884927999967, 49.798669590000081 ], [ -119.498296985999971, 49.798607859000072 ], [ -119.498136397999957, 49.798590985000075 ], [ -119.497795958999916, 49.798596057000069 ], [ -119.49777298799999, 49.798596395000096 ], [ -119.497423901999923, 49.798628888000081 ], [ -119.497162631999956, 49.798696841000094 ], [ -119.496966329999935, 49.798747870000071 ], [ -119.495610696999947, 49.799120514000094 ], [ -119.495572970999902, 49.799130877000032 ], [ -119.495243367999933, 49.799221474000014 ], [ -119.495076719999986, 49.799267284000102 ], [ -119.49310520599991, 49.799813400000097 ], [ -119.492727883999947, 49.799846966000054 ], [ -119.491890472999941, 49.799921502000053 ], [ -119.491738612999924, 49.799969340000139 ], [ -119.491641252, 49.800055633000021 ], [ -119.491643285999913, 49.800398127000108 ], [ -119.491644011999966, 49.800523932000075 ], [ -119.491645300999949, 49.800742247000116 ], [ -119.491653671999984, 49.802936387000017 ], [ -119.49056342599999, 49.80295347500001 ], [ -119.48935975199997, 49.802953847000012 ], [ -119.486452877999966, 49.802956307000038 ], [ -119.48537860199994, 49.802958945000086 ], [ -119.485181101999956, 49.802959147000117 ], [ -119.483887379999928, 49.802960489000043 ], [ -119.482719907000018, 49.8029617010001 ], [ -119.482756599999917, 49.803674069000131 ], [ -119.482769687999934, 49.803928337000073 ], [ -119.482796875999952, 49.804456423000062 ], [ -119.482825322999958, 49.805024547000066 ], [ -119.482842303999945, 49.805363450000044 ], [ -119.48285199499999, 49.805556994 ], [ -119.481876606999947, 49.805726263000068 ], [ -119.481740289999934, 49.805745356000045 ], [ -119.481311588999972, 49.805805383000099 ], [ -119.480561474999973, 49.805774062000118 ], [ -119.48035117099991, 49.805780168000076 ], [ -119.47934019099992, 49.805809392000072 ], [ -119.478677702, 49.805887209000076 ], [ -119.478243838999944, 49.805977822000074 ], [ -119.478109873999941, 49.806005832000039 ], [ -119.476101613999944, 49.806432891000071 ], [ -119.475875939999938, 49.806480884000038 ], [ -119.474853602999971, 49.806656288000077 ], [ -119.474397203, 49.80662899300011 ], [ -119.473510078999979, 49.806463007000048 ], [ -119.473187292999981, 49.806457198000061 ], [ -119.472707844999931, 49.806555975000052 ], [ -119.472320774, 49.806635643000078 ], [ -119.472625484999952, 49.80699255600004 ], [ -119.473181548999946, 49.807454839000073 ], [ -119.473368210999965, 49.807578218000046 ], [ -119.47374491, 49.807827234000037 ], [ -119.474156721999947, 49.808039730000132 ], [ -119.474272265999957, 49.808078144000092 ], [ -119.474524248999955, 49.808161964000121 ], [ -119.476273764999959, 49.808452704000096 ], [ -119.477001464999944, 49.808631718000058 ], [ -119.477446481999934, 49.808689944000044 ], [ -119.477976617999957, 49.808689146000056 ], [ -119.478485607999929, 49.808719597000035 ], [ -119.478900309, 49.808794978000037 ], [ -119.479187594999971, 49.808932272000085 ], [ -119.479034969999958, 49.809073066000067 ], [ -119.478376404999921, 49.809240485000103 ], [ -119.478373163999962, 49.809240861000049 ], [ -119.478187854999973, 49.809261723000112 ], [ -119.477987300999985, 49.809249725000058 ], [ -119.476849063999936, 49.808898054000039 ], [ -119.476475102999956, 49.808830523000097 ], [ -119.476099765999948, 49.808821597000062 ], [ -119.475624087999947, 49.808860859000085 ], [ -119.474934972999932, 49.809066188000074 ], [ -119.47467253399999, 49.809077575000046 ], [ -119.474320871999964, 49.809035467000115 ], [ -119.474099252999963, 49.809008936000033 ], [ -119.473872392999937, 49.809054067000076 ], [ -119.473741930999935, 49.809186238000109 ], [ -119.473732444999953, 49.809379846000105 ], [ -119.472958766999938, 49.809347084000066 ], [ -119.472639614999963, 49.809301098000034 ], [ -119.472462092999962, 49.809275535000033 ], [ -119.47197193199996, 49.809204926000071 ], [ -119.472071984999943, 49.809852107000047 ], [ -119.472225647999949, 49.810208328 ], [ -119.471251092999964, 49.810055206000108 ], [ -119.47058800399995, 49.809871509000125 ], [ -119.470255785999939, 49.809705243000074 ], [ -119.470175401999924, 49.809664999000155 ], [ -119.469983118999949, 49.809502572000085 ], [ -119.469839660999952, 49.809381422000079 ] ], [ [ -119.469856689999958, 49.805780319000121 ], [ -119.470288732999933, 49.805771105000112 ], [ -119.469854898, 49.805745121000029 ], [ -119.469856689999958, 49.805780319000121 ] ], [ [ -119.480008238000025, 49.800435818000096 ], [ -119.479994459999958, 49.800166241000028 ], [ -119.479161486999956, 49.800184073000054 ], [ -119.479147714999925, 49.799914496000078 ], [ -119.477898259999947, 49.799941234000102 ], [ -119.477912027999963, 49.800210811000035 ], [ -119.476662564999941, 49.800237537000037 ], [ -119.476676324999929, 49.800507115000052 ], [ -119.476259833999976, 49.800516020000011 ], [ -119.476273592, 49.80078559900015 ], [ -119.475857098999938, 49.800794503000084 ], [ -119.475870854, 49.801064082000032 ], [ -119.474204873999938, 49.801099683000096 ], [ -119.474218619999931, 49.801369262000037 ], [ -119.472552624999949, 49.801404839000035 ], [ -119.472566362999956, 49.801674418000047 ], [ -119.473815865999924, 49.801647737000046 ], [ -119.47382960899999, 49.801917316000058 ], [ -119.474662614999957, 49.80189952100006 ], [ -119.47467636499999, 49.802169100000107 ], [ -119.475925877999927, 49.802142396000065 ], [ -119.475912120999965, 49.801872817000074 ], [ -119.476328622999958, 49.80186391300002 ], [ -119.476314865999953, 49.80159433500009 ], [ -119.478813858, 49.801540878 ], [ -119.478772542999977, 49.800732144000072 ], [ -119.47918903399993, 49.800723229000013 ], [ -119.47917526199997, 49.800453652000044 ], [ -119.480008238000025, 49.800435818000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230633500", "BldgCostT": "155695000", "sL_LossRatio": "0.998745578968629", "sL_AssetLoss": "22246.88466", "sL_BldgLoss": "22218.9777", "sL_StrLoss": "22208.8044", "sL_NStrLoss": "10.1733", "sL_ContLoss": "27.90696", "geom_point": "0101000020E6100000253F4E3D37DF5DC0BAFB35BC4DE74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48032753699998, 49.809379748000048 ], [ -119.479187594999971, 49.808932272000085 ], [ -119.478900309, 49.808794978000037 ], [ -119.478485607999929, 49.808719597000035 ], [ -119.477976617999957, 49.808689146000056 ], [ -119.477446481999934, 49.808689944000044 ], [ -119.477001464999944, 49.808631718000058 ], [ -119.476273764999959, 49.808452704000096 ], [ -119.474524248999955, 49.808161964000121 ], [ -119.474272265999957, 49.808078144000092 ], [ -119.474156721999947, 49.808039730000132 ], [ -119.47374491, 49.807827234000037 ], [ -119.473368210999965, 49.807578218000046 ], [ -119.473181548999946, 49.807454839000073 ], [ -119.472625484999952, 49.80699255600004 ], [ -119.472320774, 49.806635643000078 ], [ -119.472707844999931, 49.806555975000052 ], [ -119.473187292999981, 49.806457198000061 ], [ -119.473510078999979, 49.806463007000048 ], [ -119.474397203, 49.80662899300011 ], [ -119.474853602999971, 49.806656288000077 ], [ -119.475875939999938, 49.806480884000038 ], [ -119.476101613999944, 49.806432891000071 ], [ -119.478109873999941, 49.806005832000039 ], [ -119.478243838999944, 49.805977822000074 ], [ -119.478677702, 49.805887209000076 ], [ -119.47934019099992, 49.805809392000072 ], [ -119.48035117099991, 49.805780168000076 ], [ -119.480561474999973, 49.805774062000118 ], [ -119.481311588999972, 49.805805383000099 ], [ -119.481740289999934, 49.805745356000045 ], [ -119.481876606999947, 49.805726263000068 ], [ -119.48285199499999, 49.805556994 ], [ -119.482842303999945, 49.805363450000044 ], [ -119.482825322999958, 49.805024547000066 ], [ -119.482796875999952, 49.804456423000062 ], [ -119.482769687999934, 49.803928337000073 ], [ -119.482756599999917, 49.803674069000131 ], [ -119.482719907000018, 49.8029617010001 ], [ -119.483887379999928, 49.802960489000043 ], [ -119.485181101999956, 49.802959147000117 ], [ -119.48537860199994, 49.802958945000086 ], [ -119.486452877999966, 49.802956307000038 ], [ -119.48935975199997, 49.802953847000012 ], [ -119.49056342599999, 49.80295347500001 ], [ -119.491653671999984, 49.802936387000017 ], [ -119.491737811999911, 49.802933282000055 ], [ -119.491912914999915, 49.803074676000065 ], [ -119.49191843399997, 49.803079438000069 ], [ -119.491996151999928, 49.803146485000063 ], [ -119.493232626999955, 49.804171028000034 ], [ -119.494364028999911, 49.805108454000106 ], [ -119.49451266799997, 49.805171506000107 ], [ -119.494697979999927, 49.805182559000038 ], [ -119.496481221999915, 49.804901605000097 ], [ -119.49740873899998, 49.804755462000038 ], [ -119.497478354999956, 49.804707232000069 ], [ -119.497495595999965, 49.804635106000063 ], [ -119.497033136999946, 49.803140898000095 ], [ -119.497086381999964, 49.803031204000014 ], [ -119.497331356999965, 49.802946479000184 ], [ -119.49735953199999, 49.803022578000075 ], [ -119.497472420999941, 49.803327910000036 ], [ -119.497657563999951, 49.803609445000113 ], [ -119.497819810999943, 49.803856099000029 ], [ -119.498964832999917, 49.805239456000066 ], [ -119.499309893999936, 49.805656297000084 ], [ -119.499413750999935, 49.805835930000079 ], [ -119.499533799999938, 49.806043594000073 ], [ -119.499654097, 49.806570912000083 ], [ -119.499662530999942, 49.80726910300011 ], [ -119.499668282999963, 49.807745805000138 ], [ -119.499662562999987, 49.807769109000041 ], [ -119.499623155999956, 49.807929388000069 ], [ -119.499552509999944, 49.808216588000057 ], [ -119.499467022999966, 49.808339290000042 ], [ -119.499398146999951, 49.80843814400005 ], [ -119.499289725999986, 49.808593810000055 ], [ -119.497454075999926, 49.810299537000077 ], [ -119.496961965999915, 49.8102485100001 ], [ -119.495572658999905, 49.810249551000034 ], [ -119.49238884199994, 49.810251896000054 ], [ -119.491277051999973, 49.810252677000065 ], [ -119.488580846999966, 49.810254555000029 ], [ -119.488439680999974, 49.810254660000112 ], [ -119.487232989999953, 49.810259056000092 ], [ -119.484734277999934, 49.810268102000059 ], [ -119.483881097999969, 49.81023519100011 ], [ -119.483387328999967, 49.810146968000012 ], [ -119.48222572399996, 49.809684681000093 ], [ -119.48069615, 49.80947494500009 ], [ -119.48032753699998, 49.809379748000048 ] ], [ [ -119.494865765999975, 49.807086552000094 ], [ -119.49500901099999, 49.806080053000066 ], [ -119.494752392999899, 49.806064741000029 ], [ -119.49484259300003, 49.805430955000112 ], [ -119.491962446999977, 49.805259066000147 ], [ -119.49201197099994, 49.804911238000045 ], [ -119.490906437999953, 49.804845237000038 ], [ -119.49097598799996, 49.804356826000081 ], [ -119.488959019, 49.804236384000077 ], [ -119.489003354999952, 49.805100578000058 ], [ -119.488586828999956, 49.805109529000106 ], [ -119.488628313999968, 49.805918257000137 ], [ -119.489044845999942, 49.805909306000089 ], [ -119.48908634, 49.806718033000109 ], [ -119.4886698, 49.806726984000072 ], [ -119.488699239999946, 49.807300837000064 ], [ -119.489298445999964, 49.807336621000097 ], [ -119.489270705999928, 49.807531363000081 ], [ -119.489504353999976, 49.80754531500002 ], [ -119.489464427999934, 49.80782561200003 ], [ -119.489563269999934, 49.807831514 ], [ -119.489517516999953, 49.808152713000041 ], [ -119.491851418999957, 49.808292052000063 ], [ -119.491660713999948, 49.809631284000027 ], [ -119.492154446999933, 49.809620663000047 ], [ -119.49216007699999, 49.809730247000083 ], [ -119.492556117999953, 49.806948722000094 ], [ -119.494865765999975, 49.807086552000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183954333", "BldgCostT": "123423333", "sL_LossRatio": "1", "sL_AssetLoss": "17610.8", "sL_BldgLoss": "17610.8", "sL_StrLoss": "17610.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002C69E645FDDF5DC0516E68EB5CE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.491912914999915, 49.803074676000065 ], [ -119.491737811999911, 49.802933282000055 ], [ -119.491653671999984, 49.802936387000017 ], [ -119.491645300999949, 49.800742247000116 ], [ -119.491644011999966, 49.800523932000075 ], [ -119.491643285999913, 49.800398127000108 ], [ -119.491641252, 49.800055633000021 ], [ -119.491738612999924, 49.799969340000139 ], [ -119.491890472999941, 49.799921502000053 ], [ -119.492727883999947, 49.799846966000054 ], [ -119.49310520599991, 49.799813400000097 ], [ -119.495076719999986, 49.799267284000102 ], [ -119.495243367999933, 49.799221474000014 ], [ -119.495572970999902, 49.799130877000032 ], [ -119.495610696999947, 49.799120514000094 ], [ -119.496966329999935, 49.798747870000071 ], [ -119.497162631999956, 49.798696841000094 ], [ -119.497423901999923, 49.798628888000081 ], [ -119.49777298799999, 49.798596395000096 ], [ -119.497795958999916, 49.798596057000069 ], [ -119.498136397999957, 49.798590985000075 ], [ -119.498296985999971, 49.798607859000072 ], [ -119.498884927999967, 49.798669590000081 ], [ -119.498898825999959, 49.798671041000055 ], [ -119.498912686999986, 49.798672502000095 ], [ -119.499186007, 49.797701707000101 ], [ -119.499187086999939, 49.795993820000035 ], [ -119.499187188999926, 49.795859467000064 ], [ -119.49930580799996, 49.795613650000057 ], [ -119.499683908999927, 49.795572996000089 ], [ -119.50232536799993, 49.795658238000051 ], [ -119.503316154999965, 49.795659988000047 ], [ -119.50382404799997, 49.795660881000089 ], [ -119.504634244000016, 49.795645631000127 ], [ -119.50493973, 49.795639865000076 ], [ -119.505314635999937, 49.795632813000076 ], [ -119.506920984999951, 49.795602466000012 ], [ -119.508214671999923, 49.795398653000049 ], [ -119.508480391999939, 49.79620831000004 ], [ -119.508489285999957, 49.796391270000072 ], [ -119.50848549799997, 49.79692837100005 ], [ -119.508266527999979, 49.797930422000093 ], [ -119.508152024999973, 49.798344414000084 ], [ -119.507937327999969, 49.798638695000108 ], [ -119.507713990999932, 49.798855694000054 ], [ -119.507141507999933, 49.799430287000092 ], [ -119.506918502999966, 49.79995970300007 ], [ -119.505330623999896, 49.799979936000071 ], [ -119.505232203999981, 49.79998118200016 ], [ -119.505201389999925, 49.799989188000019 ], [ -119.504699393999914, 49.800119196000075 ], [ -119.50425470499999, 49.800333904000098 ], [ -119.503987730999953, 49.800367601000076 ], [ -119.503868704999945, 49.8003514870001 ], [ -119.503259406999973, 49.800124595000106 ], [ -119.503112020999964, 49.800112198000129 ], [ -119.502958491999948, 49.800151894000102 ], [ -119.502919391999967, 49.800179318000112 ], [ -119.502684393999957, 49.800344097000085 ], [ -119.502675069999952, 49.800605496000074 ], [ -119.503129614999949, 49.801215111000033 ], [ -119.503087804999979, 49.801361601000075 ], [ -119.502737883999941, 49.801507807000092 ], [ -119.50177280799997, 49.80172390900001 ], [ -119.501459300999954, 49.801751290000013 ], [ -119.50093708199995, 49.801716489000057 ], [ -119.500220192999947, 49.8015112080001 ], [ -119.499619218999953, 49.801470910000049 ], [ -119.499544913999941, 49.80155219300012 ], [ -119.499011021999976, 49.801815812000072 ], [ -119.498599886999969, 49.802018784000012 ], [ -119.498280889999975, 49.802104498000084 ], [ -119.497597012999933, 49.802167592000046 ], [ -119.49745849699994, 49.802376091000042 ], [ -119.497368781, 49.802614585000036 ], [ -119.497331356999965, 49.802946479000184 ], [ -119.497086381999964, 49.803031204000014 ], [ -119.497033136999946, 49.803140898000095 ], [ -119.497495595999965, 49.804635106000063 ], [ -119.497478354999956, 49.804707232000069 ], [ -119.49740873899998, 49.804755462000038 ], [ -119.496481221999915, 49.804901605000097 ], [ -119.494697979999927, 49.805182559000038 ], [ -119.49451266799997, 49.805171506000107 ], [ -119.494364028999911, 49.805108454000106 ], [ -119.493232626999955, 49.804171028000034 ], [ -119.491996151999928, 49.803146485000063 ], [ -119.49191843399997, 49.803079438000069 ], [ -119.491912914999915, 49.803074676000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134356917", "BldgCostT": "88406667", "sL_LossRatio": "0.9932674406288", "sL_AssetLoss": "12565.80081", "sL_BldgLoss": "12481.20081", "sL_StrLoss": "12450.60081", "sL_NStrLoss": "30.6", "sL_ContLoss": "84.6", "geom_point": "0101000020E6100000D12934B591E05DC00A57593EBFE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.499309893999936, 49.805656297000084 ], [ -119.498964832999917, 49.805239456000066 ], [ -119.497819810999943, 49.803856099000029 ], [ -119.497657563999951, 49.803609445000113 ], [ -119.497472420999941, 49.803327910000036 ], [ -119.49735953199999, 49.803022578000075 ], [ -119.497331356999965, 49.802946479000184 ], [ -119.497368781, 49.802614585000036 ], [ -119.49745849699994, 49.802376091000042 ], [ -119.497597012999933, 49.802167592000046 ], [ -119.498280889999975, 49.802104498000084 ], [ -119.498599886999969, 49.802018784000012 ], [ -119.499011021999976, 49.801815812000072 ], [ -119.499544913999941, 49.80155219300012 ], [ -119.499619218999953, 49.801470910000049 ], [ -119.500220192999947, 49.8015112080001 ], [ -119.50093708199995, 49.801716489000057 ], [ -119.501459300999954, 49.801751290000013 ], [ -119.50177280799997, 49.80172390900001 ], [ -119.502737883999941, 49.801507807000092 ], [ -119.503087804999979, 49.801361601000075 ], [ -119.503129614999949, 49.801215111000033 ], [ -119.502675069999952, 49.800605496000074 ], [ -119.502684393999957, 49.800344097000085 ], [ -119.502919391999967, 49.800179318000112 ], [ -119.502958491999948, 49.800151894000102 ], [ -119.503112020999964, 49.800112198000129 ], [ -119.503259406999973, 49.800124595000106 ], [ -119.503868704999945, 49.8003514870001 ], [ -119.503987730999953, 49.800367601000076 ], [ -119.50425470499999, 49.800333904000098 ], [ -119.504699393999914, 49.800119196000075 ], [ -119.505201389999925, 49.799989188000019 ], [ -119.505232203999981, 49.79998118200016 ], [ -119.505330623999896, 49.799979936000071 ], [ -119.506918502999966, 49.79995970300007 ], [ -119.512894403999951, 49.799909090000057 ], [ -119.513179008999927, 49.799849302000098 ], [ -119.5157117, 49.798933407000057 ], [ -119.516335898999927, 49.798631891000063 ], [ -119.517650977999949, 49.797766393000067 ], [ -119.518457783999935, 49.797268895000052 ], [ -119.518944904999913, 49.797049491000053 ], [ -119.520618608999939, 49.796525005000021 ], [ -119.521769908999957, 49.796204206000063 ], [ -119.525744479999929, 49.796151402000099 ], [ -119.525885516999935, 49.796238286000062 ], [ -119.525884189999957, 49.796395392000136 ], [ -119.525764275999947, 49.796474090000054 ], [ -119.525146687999893, 49.796532197000026 ], [ -119.524811694999954, 49.796603518000055 ], [ -119.524177504, 49.796798797000072 ], [ -119.523202906000023, 49.797260193000078 ], [ -119.52208127599999, 49.798207163000029 ], [ -119.521821809999949, 49.798426215000127 ], [ -119.521780299999932, 49.798807498000031 ], [ -119.521811316999958, 49.799129903000107 ], [ -119.521804623999969, 49.799142598000053 ], [ -119.521708194999917, 49.799326101000055 ], [ -119.521166868999956, 49.799642492000032 ], [ -119.521134702, 49.79977150600012 ], [ -119.521254506, 49.799909611000054 ], [ -119.521169436999955, 49.799948990000082 ], [ -119.521012786999961, 49.800021591000039 ], [ -119.520926221999943, 49.800061703000097 ], [ -119.520545257999913, 49.800194202000064 ], [ -119.519209998999926, 49.80065859800002 ], [ -119.515524788999926, 49.802580719000019 ], [ -119.51541440299999, 49.802641902000076 ], [ -119.514469995999946, 49.803105014000053 ], [ -119.513283825999977, 49.803879949000056 ], [ -119.512899109999978, 49.804131308000109 ], [ -119.512487206999978, 49.804504660000134 ], [ -119.51179778199996, 49.805129593000125 ], [ -119.511147418999968, 49.805516205000053 ], [ -119.511022753, 49.805569795000089 ], [ -119.510875690999953, 49.805633040000053 ], [ -119.510400208999926, 49.805837508000131 ], [ -119.510374971999951, 49.805845402000053 ], [ -119.509922973999934, 49.805986905000076 ], [ -119.509901005999964, 49.805993788000094 ], [ -119.509525600999979, 49.80602776800005 ], [ -119.508071295999983, 49.806159397000037 ], [ -119.507460702999964, 49.806235895000071 ], [ -119.506176003999926, 49.806561294000041 ], [ -119.505727825999912, 49.806628505000099 ], [ -119.504740344999973, 49.806776573000043 ], [ -119.504589090999971, 49.806799278 ], [ -119.504408801999958, 49.806826300000083 ], [ -119.504278214999943, 49.806874641000043 ], [ -119.504030497999963, 49.806966286000048 ], [ -119.503737956999942, 49.80713124200004 ], [ -119.503704509999977, 49.807150094000129 ], [ -119.50304408599996, 49.807635398000059 ], [ -119.501815806999943, 49.808537993000066 ], [ -119.500589369999943, 49.80943918000002 ], [ -119.500039497999978, 49.809843188000094 ], [ -119.499781513999949, 49.809990389000077 ], [ -119.499401043999939, 49.810159173000081 ], [ -119.499384864999939, 49.810166360000068 ], [ -119.499230620999953, 49.810234803000064 ], [ -119.498801297999975, 49.81034010900003 ], [ -119.498350591999937, 49.810371019000037 ], [ -119.497454075999926, 49.810299537000077 ], [ -119.499289725999986, 49.808593810000055 ], [ -119.499398146999951, 49.80843814400005 ], [ -119.499467022999966, 49.808339290000042 ], [ -119.499552509999944, 49.808216588000057 ], [ -119.499623155999956, 49.807929388000069 ], [ -119.499662562999987, 49.807769109000041 ], [ -119.499668282999963, 49.807745805000138 ], [ -119.499662530999942, 49.80726910300011 ], [ -119.499654097, 49.806570912000083 ], [ -119.499533799999938, 49.806043594000073 ], [ -119.499413750999935, 49.805835930000079 ], [ -119.499309893999936, 49.805656297000084 ] ], [ [ -119.501111197999975, 49.804775255 ], [ -119.501408627999922, 49.802683206000097 ], [ -119.50138562399999, 49.802692861000025 ], [ -119.500793677999965, 49.802813841000024 ], [ -119.500392115999915, 49.805638005000034 ], [ -119.500648732999963, 49.805653303000092 ], [ -119.500644695999966, 49.8056817 ], [ -119.500940154999981, 49.805699313000083 ], [ -119.501071872999958, 49.80477291100005 ], [ -119.501111197999975, 49.804775255 ] ], [ [ -119.510914419999949, 49.801445776000023 ], [ -119.510869642999964, 49.800580507000106 ], [ -119.510453163999969, 49.800589535000057 ], [ -119.510442900999962, 49.800391175000073 ], [ -119.50785812499997, 49.800449061000101 ], [ -119.506693252, 49.80044647700003 ], [ -119.506704836999958, 49.800670721000131 ], [ -119.505871871999915, 49.80068874600007 ], [ -119.50588579399999, 49.800958319000074 ], [ -119.505469309999953, 49.800967328000105 ], [ -119.50551192799999, 49.801792705 ], [ -119.50710025599993, 49.801887317000073 ], [ -119.506976938999969, 49.80275551600004 ], [ -119.508018249999935, 49.80281753000002 ], [ -119.508216951999984, 49.801418367000025 ], [ -119.510724456, 49.801567658000081 ], [ -119.510914419999949, 49.801445776000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "492206833", "BldgCostT": "336793333", "sL_LossRatio": "0.998698054195168", "sL_AssetLoss": "43807.20748", "sL_BldgLoss": "43750.17287", "sL_StrLoss": "43729.40617", "sL_NStrLoss": "20.7667", "sL_ContLoss": "57.03461", "geom_point": "0101000020E6100000B5231F0559E15DC0247576F09BE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.50848549799997, 49.79692837100005 ], [ -119.508489285999957, 49.796391270000072 ], [ -119.508480391999939, 49.79620831000004 ], [ -119.508214671999923, 49.795398653000049 ], [ -119.509612583, 49.795187505000044 ], [ -119.509798632999932, 49.795173298000051 ], [ -119.509855840999933, 49.795153637000048 ], [ -119.510091839999959, 49.795072438000062 ], [ -119.510396401999984, 49.794940666000144 ], [ -119.510600349999891, 49.795162957000073 ], [ -119.510831142999947, 49.79541447900008 ], [ -119.510790540999949, 49.795701085000097 ], [ -119.510878403, 49.795896791000054 ], [ -119.511251106999978, 49.796316389000076 ], [ -119.511392385999926, 49.796441306000077 ], [ -119.511632310999943, 49.79657839200005 ], [ -119.511918106999957, 49.79667669700008 ], [ -119.512213795999955, 49.796725895000044 ], [ -119.512504796999977, 49.796738693000044 ], [ -119.512773500999955, 49.796712200000066 ], [ -119.51298539699998, 49.79666340600005 ], [ -119.514204986999928, 49.796224898000027 ], [ -119.514733311999976, 49.796166902000081 ], [ -119.514657509999921, 49.795895102000017 ], [ -119.51450504799999, 49.795682478000053 ], [ -119.514499181999966, 49.795674298000051 ], [ -119.51430240399992, 49.795518086000087 ], [ -119.514027412999951, 49.795392510000113 ], [ -119.513495793999979, 49.795208189000085 ], [ -119.513598575999978, 49.795110914000077 ], [ -119.513724601999954, 49.794991595000042 ], [ -119.513954405999982, 49.794698200000028 ], [ -119.5141119799999, 49.794423105000071 ], [ -119.514144239999894, 49.794334579000115 ], [ -119.514200668999976, 49.794179533000097 ], [ -119.51422848699994, 49.794103110000023 ], [ -119.514421306999935, 49.79414239400009 ], [ -119.514603907999941, 49.794179608000029 ], [ -119.514936212999942, 49.79419580100015 ], [ -119.515650511999937, 49.794124505000134 ], [ -119.51590420799999, 49.794036604000027 ], [ -119.516180400999957, 49.793810727000114 ], [ -119.516656594999958, 49.793421300000055 ], [ -119.516800496999949, 49.793242002000063 ], [ -119.516911177999944, 49.793021898000113 ], [ -119.516953161999965, 49.792698190000138 ], [ -119.51697150399994, 49.792556805000046 ], [ -119.516591738999978, 49.79215758600008 ], [ -119.516338903999923, 49.792273527000063 ], [ -119.516230793999952, 49.792323097000036 ], [ -119.515489699999975, 49.79164050100006 ], [ -119.51444161199997, 49.792148897000104 ], [ -119.513856354999959, 49.792551688000053 ], [ -119.513596305999968, 49.792730691000017 ], [ -119.513290785999942, 49.793135215000056 ], [ -119.513251006999923, 49.793220231000113 ], [ -119.513152940999987, 49.793429744000129 ], [ -119.513096718999975, 49.793549899000084 ], [ -119.513002312999944, 49.793792600000131 ], [ -119.512982152999982, 49.793838769000089 ], [ -119.512908106999987, 49.794008538000114 ], [ -119.512894932999956, 49.794038687000118 ], [ -119.512764618999938, 49.794337487000043 ], [ -119.512565125999927, 49.79428265100006 ], [ -119.511707175999945, 49.794046728000062 ], [ -119.511440052999944, 49.793973270000023 ], [ -119.51130120099999, 49.79393972000009 ], [ -119.511671373999931, 49.792981914000038 ], [ -119.51188928199997, 49.792622677000089 ], [ -119.512101442999949, 49.792624334000017 ], [ -119.51211593499994, 49.792600181000111 ], [ -119.512481485999956, 49.792185746000037 ], [ -119.512583563999925, 49.792098880000026 ], [ -119.512833555, 49.791886088000076 ], [ -119.513400806999954, 49.791504453000066 ], [ -119.514415571999933, 49.791004921000081 ], [ -119.515144658999972, 49.790646153000054 ], [ -119.516136285999963, 49.790158149000042 ], [ -119.51602408399998, 49.790034985000041 ], [ -119.515948195999925, 49.789931132000056 ], [ -119.515921265999964, 49.789757027000057 ], [ -119.515969107999965, 49.789537720000091 ], [ -119.516187149999951, 49.789239125000073 ], [ -119.51641286, 49.788983592000079 ], [ -119.516473717999958, 49.788914705000138 ], [ -119.516553403000017, 49.788824533000124 ], [ -119.516708594999955, 49.788648829000067 ], [ -119.516823900999952, 49.78845520000008 ], [ -119.51684932, 49.788246297000057 ], [ -119.516774185999964, 49.787871559000024 ], [ -119.516733331999944, 49.787618948000102 ], [ -119.51675514599999, 49.787396272000109 ], [ -119.517108048999944, 49.78689348000011 ], [ -119.517126777, 49.786790755000091 ], [ -119.517100327999941, 49.786652810000064 ], [ -119.516864750999943, 49.78632812700009 ], [ -119.516658666999916, 49.786198480000081 ], [ -119.516297879, 49.786068643000114 ], [ -119.516255767999937, 49.786061986000043 ], [ -119.516068815999972, 49.786032430000049 ], [ -119.515872855999987, 49.786037908000068 ], [ -119.515635425999974, 49.786119540000136 ], [ -119.515234411999955, 49.7864207840001 ], [ -119.515072987999943, 49.78650868000004 ], [ -119.514945851999954, 49.786577891000036 ], [ -119.514767417999963, 49.786636813000051 ], [ -119.514554576999956, 49.786662985000028 ], [ -119.51438632899999, 49.786650272000074 ], [ -119.51428519399991, 49.786616248000023 ], [ -119.514260034999964, 49.786417130000125 ], [ -119.514247037999965, 49.786375756000076 ], [ -119.514389841999972, 49.786149070000114 ], [ -119.514575253999936, 49.785948520000041 ], [ -119.514601031000026, 49.785903219000012 ], [ -119.514599136999934, 49.785858423000072 ], [ -119.514707503999915, 49.785681487000026 ], [ -119.514754600999964, 49.785604609000075 ], [ -119.514771540999945, 49.785382885000047 ], [ -119.515501345999937, 49.785367035000014 ], [ -119.51551531299998, 49.78563660600004 ], [ -119.515967261999918, 49.785626789000084 ], [ -119.51718071099998, 49.785600419000033 ], [ -119.517194687999947, 49.785869991000034 ], [ -119.517611038999945, 49.785860940000113 ], [ -119.517639000999935, 49.786400082000036 ], [ -119.518055353999927, 49.786391029000065 ], [ -119.518069337999933, 49.78666060000009 ], [ -119.518485696999988, 49.78665154700014 ], [ -119.51849968, 49.786921118000095 ], [ -119.518916039999937, 49.786912062000063 ], [ -119.518902052999977, 49.786642492000119 ], [ -119.520187779, 49.786614520000043 ], [ -119.520567482999979, 49.786606256000034 ], [ -119.520581478999958, 49.786875826000013 ], [ -119.520997836999925, 49.786866762000059 ], [ -119.521011835999971, 49.787136333000021 ], [ -119.523093639999928, 49.787090996000053 ], [ -119.523163695999926, 49.788438844000062 ], [ -119.522747323999937, 49.788447915000155 ], [ -119.52276133399999, 49.788717485000106 ], [ -119.522344958999938, 49.788726554000093 ], [ -119.522372974999939, 49.789265693000104 ], [ -119.524454866999989, 49.789220331000124 ], [ -119.524440846999951, 49.78895076200012 ], [ -119.526939096999925, 49.788896279 ], [ -119.52695313, 49.789165847000078 ], [ -119.527369505999985, 49.789156761000136 ], [ -119.52738354199991, 49.789426330000012 ], [ -119.527799919999936, 49.78941724200007 ], [ -119.52782799699996, 49.789956379000031 ], [ -119.52824438, 49.789947291000033 ], [ -119.528272461999975, 49.790486426000022 ], [ -119.52868884899999, 49.79047733600008 ], [ -119.52870289199997, 49.790746904000066 ], [ -119.529119281999911, 49.790737812000074 ], [ -119.529161419999937, 49.791546516000047 ], [ -119.528745024, 49.791555609000078 ], [ -119.528759066999982, 49.791825177000057 ], [ -119.528342668999983, 49.791834269000091 ], [ -119.528356710999958, 49.792103838000109 ], [ -119.527940309999906, 49.79211292700009 ], [ -119.527954350999934, 49.792382495000062 ], [ -119.52753794599991, 49.792391584000086 ], [ -119.527551983999956, 49.792661152000079 ], [ -119.526719169999964, 49.792679325000051 ], [ -119.526733205000014, 49.792948894000091 ], [ -119.526316794999929, 49.792957978000111 ], [ -119.526358889999983, 49.79376668400009 ], [ -119.525942474999965, 49.79377576600011 ], [ -119.525956502999975, 49.794045336000103 ], [ -119.525540083999914, 49.794054417 ], [ -119.525554112999941, 49.794323986000045 ], [ -119.525137692, 49.794333066000043 ], [ -119.52513829499999, 49.794344674000044 ], [ -119.527888665999967, 49.794508020000109 ], [ -119.527937109, 49.794165800000094 ], [ -119.529301422999964, 49.794246801000149 ], [ -119.529305946999926, 49.794214831000083 ], [ -119.531575402999934, 49.794349533000059 ], [ -119.531627062, 49.793984384000055 ], [ -119.532681759999917, 49.794046969000114 ], [ -119.532724527999989, 49.793744609000072 ], [ -119.533236558999988, 49.793774988000095 ], [ -119.533256510999976, 49.79363392000004 ], [ -119.533670021, 49.793658453000042 ], [ -119.533685297999966, 49.793550430000067 ], [ -119.534100458999973, 49.793575059000041 ], [ -119.534104377999924, 49.793547340000096 ], [ -119.534345849999951, 49.793561664000066 ], [ -119.534391582999945, 49.793238246000072 ], [ -119.534588242999945, 49.793249911000039 ], [ -119.534847669999948, 49.791415193000084 ], [ -119.535407780999989, 49.791765499000086 ], [ -119.536521407999984, 49.792883484000072 ], [ -119.537073401999976, 49.79387050200009 ], [ -119.537202775999944, 49.793954489000043 ], [ -119.537098435999923, 49.794675883000139 ], [ -119.53698287399996, 49.794842420000073 ], [ -119.536765488999933, 49.794999301000054 ], [ -119.536352815999948, 49.795215951000095 ], [ -119.53488338399994, 49.795539695000031 ], [ -119.53459114499999, 49.79564427800004 ], [ -119.53441729399999, 49.795730181000117 ], [ -119.532083676999932, 49.796883355000013 ], [ -119.532078504999987, 49.796885933000091 ], [ -119.531824082999961, 49.796959326000042 ], [ -119.53094644199993, 49.797061675000052 ], [ -119.530001715999958, 49.79709293500013 ], [ -119.529881688000017, 49.797096927000062 ], [ -119.529521695999946, 49.797147797000029 ], [ -119.528356665999965, 49.797467855000086 ], [ -119.526922016999947, 49.797755751000075 ], [ -119.525956970999943, 49.797949386000028 ], [ -119.524806289, 49.79824677700006 ], [ -119.524803310999985, 49.798248127000072 ], [ -119.523405517999919, 49.798881497000053 ], [ -119.521591852999933, 49.799748373000071 ], [ -119.521254506, 49.799909611000054 ], [ -119.521134702, 49.79977150600012 ], [ -119.521166868999956, 49.799642492000032 ], [ -119.521708194999917, 49.799326101000055 ], [ -119.521804623999969, 49.799142598000053 ], [ -119.521811316999958, 49.799129903000107 ], [ -119.521780299999932, 49.798807498000031 ], [ -119.521821809999949, 49.798426215000127 ], [ -119.52208127599999, 49.798207163000029 ], [ -119.523202906000023, 49.797260193000078 ], [ -119.524177504, 49.796798797000072 ], [ -119.524811694999954, 49.796603518000055 ], [ -119.525146687999893, 49.796532197000026 ], [ -119.525764275999947, 49.796474090000054 ], [ -119.525884189999957, 49.796395392000136 ], [ -119.525885516999935, 49.796238286000062 ], [ -119.525744479999929, 49.796151402000099 ], [ -119.521769908999957, 49.796204206000063 ], [ -119.520618608999939, 49.796525005000021 ], [ -119.518944904999913, 49.797049491000053 ], [ -119.518457783999935, 49.797268895000052 ], [ -119.517650977999949, 49.797766393000067 ], [ -119.516335898999927, 49.798631891000063 ], [ -119.5157117, 49.798933407000057 ], [ -119.513179008999927, 49.799849302000098 ], [ -119.512894403999951, 49.799909090000057 ], [ -119.506918502999966, 49.79995970300007 ], [ -119.507141507999933, 49.799430287000092 ], [ -119.507713990999932, 49.798855694000054 ], [ -119.507937327999969, 49.798638695000108 ], [ -119.508152024999973, 49.798344414000084 ], [ -119.508266527999979, 49.797930422000093 ], [ -119.50848549799997, 49.79692837100005 ] ], [ [ -119.524450217999956, 49.795157678000074 ], [ -119.524488558999977, 49.794886967000117 ], [ -119.524332888999965, 49.794890360000046 ], [ -119.524346910999952, 49.795159929000079 ], [ -119.524450217999956, 49.795157678000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86265311", "BldgCostT": "56398190", "sL_LossRatio": "0.997449616785202", "sL_AssetLoss": "7606.7", "sL_BldgLoss": "7587.3", "sL_StrLoss": "7580.3", "sL_NStrLoss": "7", "sL_ContLoss": "19.4", "geom_point": "0101000020E61000003B0E82AFE4E05DC0AFE752F9AAE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.512894932999956, 49.794038687000118 ], [ -119.512908106999987, 49.794008538000114 ], [ -119.512982152999982, 49.793838769000089 ], [ -119.513002312999944, 49.793792600000131 ], [ -119.513096718999975, 49.793549899000084 ], [ -119.513152940999987, 49.793429744000129 ], [ -119.513251006999923, 49.793220231000113 ], [ -119.513290785999942, 49.793135215000056 ], [ -119.513596305999968, 49.792730691000017 ], [ -119.513856354999959, 49.792551688000053 ], [ -119.51444161199997, 49.792148897000104 ], [ -119.515489699999975, 49.79164050100006 ], [ -119.516230793999952, 49.792323097000036 ], [ -119.516338903999923, 49.792273527000063 ], [ -119.516591738999978, 49.79215758600008 ], [ -119.51697150399994, 49.792556805000046 ], [ -119.516953161999965, 49.792698190000138 ], [ -119.516911177999944, 49.793021898000113 ], [ -119.516800496999949, 49.793242002000063 ], [ -119.516656594999958, 49.793421300000055 ], [ -119.516180400999957, 49.793810727000114 ], [ -119.51590420799999, 49.794036604000027 ], [ -119.515650511999937, 49.794124505000134 ], [ -119.514936212999942, 49.79419580100015 ], [ -119.514603907999941, 49.794179608000029 ], [ -119.514421306999935, 49.79414239400009 ], [ -119.51422848699994, 49.794103110000023 ], [ -119.514200668999976, 49.794179533000097 ], [ -119.514144239999894, 49.794334579000115 ], [ -119.5141119799999, 49.794423105000071 ], [ -119.513954405999982, 49.794698200000028 ], [ -119.513724601999954, 49.794991595000042 ], [ -119.513598575999978, 49.795110914000077 ], [ -119.513495793999979, 49.795208189000085 ], [ -119.514027412999951, 49.795392510000113 ], [ -119.51430240399992, 49.795518086000087 ], [ -119.514499181999966, 49.795674298000051 ], [ -119.51450504799999, 49.795682478000053 ], [ -119.514657509999921, 49.795895102000017 ], [ -119.514733311999976, 49.796166902000081 ], [ -119.514204986999928, 49.796224898000027 ], [ -119.51298539699998, 49.79666340600005 ], [ -119.512773500999955, 49.796712200000066 ], [ -119.512504796999977, 49.796738693000044 ], [ -119.512213795999955, 49.796725895000044 ], [ -119.511918106999957, 49.79667669700008 ], [ -119.511632310999943, 49.79657839200005 ], [ -119.511392385999926, 49.796441306000077 ], [ -119.511251106999978, 49.796316389000076 ], [ -119.510878403, 49.795896791000054 ], [ -119.510790540999949, 49.795701085000097 ], [ -119.510831142999947, 49.79541447900008 ], [ -119.511249992999964, 49.79533198900004 ], [ -119.51138393799999, 49.795285262000078 ], [ -119.511716480999951, 49.795169192000138 ], [ -119.511903460000028, 49.79507789200008 ], [ -119.512013204999974, 49.795024288000036 ], [ -119.512351521999946, 49.794792485000038 ], [ -119.512621901999935, 49.794537609000081 ], [ -119.512764618999938, 49.794337487000043 ], [ -119.512894932999956, 49.794038687000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "101145562", "BldgCostT": "66398191", "sL_LossRatio": "1", "sL_AssetLoss": "9691", "sL_BldgLoss": "9691", "sL_StrLoss": "9691", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D11E61DEC4E15DC0005D8F1D2FE64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.501789103999911, 49.81891660499999 ], [ -119.500553204999918, 49.818674484000042 ], [ -119.49936751499996, 49.818668559000088 ], [ -119.498856792999945, 49.818665992000078 ], [ -119.498364995000017, 49.818532102000091 ], [ -119.498341797999927, 49.818522164000072 ], [ -119.496344789999952, 49.817667595000017 ], [ -119.495642909999972, 49.817537989000122 ], [ -119.494505899999979, 49.81754529800007 ], [ -119.494508187999955, 49.817541998000067 ], [ -119.494592030999968, 49.81742210000008 ], [ -119.494830528999969, 49.816768520000089 ], [ -119.494859681999984, 49.816688499000101 ], [ -119.49501889299998, 49.816353987000092 ], [ -119.495162344999983, 49.816172736000077 ], [ -119.495401690999984, 49.815870155000091 ], [ -119.495545636999978, 49.815623165000055 ], [ -119.495629856999969, 49.815305793000029 ], [ -119.495653572999956, 49.814815931000098 ], [ -119.495634000999956, 49.814673331000108 ], [ -119.497000296999914, 49.814643885000052 ], [ -119.497014176999983, 49.814913458000035 ], [ -119.498285493999944, 49.814886045000051 ], [ -119.49832446799995, 49.814612118000142 ], [ -119.49794194499999, 49.814589311000077 ], [ -119.498274126999974, 49.812254487000132 ], [ -119.495293230999962, 49.812076706000028 ], [ -119.495478544999983, 49.811860540000055 ], [ -119.496106647999966, 49.811484815000085 ], [ -119.496553467999945, 49.811217535000033 ], [ -119.496827379999914, 49.811008102000102 ], [ -119.497207851999988, 49.810579229000034 ], [ -119.497454075999926, 49.810299537000077 ], [ -119.498350591999937, 49.810371019000037 ], [ -119.498801297999975, 49.81034010900003 ], [ -119.499230620999953, 49.810234803000064 ], [ -119.499384864999939, 49.810166360000068 ], [ -119.499401043999939, 49.810159173000081 ], [ -119.499781513999949, 49.809990389000077 ], [ -119.500039497999978, 49.809843188000094 ], [ -119.500589369999943, 49.80943918000002 ], [ -119.501815806999943, 49.808537993000066 ], [ -119.50304408599996, 49.807635398000059 ], [ -119.503704509999977, 49.807150094000129 ], [ -119.503737956999942, 49.80713124200004 ], [ -119.504030497999963, 49.806966286000048 ], [ -119.504278214999943, 49.806874641000043 ], [ -119.504408801999958, 49.806826300000083 ], [ -119.504589090999971, 49.806799278 ], [ -119.504740344999973, 49.806776573000043 ], [ -119.505727825999912, 49.806628505000099 ], [ -119.506176003999926, 49.806561294000041 ], [ -119.507460702999964, 49.806235895000071 ], [ -119.508071295999983, 49.806159397000037 ], [ -119.509525600999979, 49.80602776800005 ], [ -119.509901005999964, 49.805993788000094 ], [ -119.509922973999934, 49.805986905000076 ], [ -119.510374971999951, 49.805845402000053 ], [ -119.510400208999926, 49.805837508000131 ], [ -119.510875690999953, 49.805633040000053 ], [ -119.511022753, 49.805569795000089 ], [ -119.511147418999968, 49.805516205000053 ], [ -119.51179778199996, 49.805129593000125 ], [ -119.512487206999978, 49.804504660000134 ], [ -119.512899109999978, 49.804131308000109 ], [ -119.513283825999977, 49.803879949000056 ], [ -119.514469995999946, 49.803105014000053 ], [ -119.51541440299999, 49.802641902000076 ], [ -119.515524788999926, 49.802580719000019 ], [ -119.519209998999926, 49.80065859800002 ], [ -119.520545257999913, 49.800194202000064 ], [ -119.520926221999943, 49.800061703000097 ], [ -119.521012786999961, 49.800021591000039 ], [ -119.521169436999955, 49.799948990000082 ], [ -119.521254506, 49.799909611000054 ], [ -119.521591852999933, 49.799748373000071 ], [ -119.523405517999919, 49.798881497000053 ], [ -119.524803310999985, 49.798248127000072 ], [ -119.524806289, 49.79824677700006 ], [ -119.525956970999943, 49.797949386000028 ], [ -119.526922016999947, 49.797755751000075 ], [ -119.528356665999965, 49.797467855000086 ], [ -119.529521695999946, 49.797147797000029 ], [ -119.529881688000017, 49.797096927000062 ], [ -119.530001715999958, 49.79709293500013 ], [ -119.53094644199993, 49.797061675000052 ], [ -119.531824082999961, 49.796959326000042 ], [ -119.532078504999987, 49.796885933000091 ], [ -119.532083676999932, 49.796883355000013 ], [ -119.53441729399999, 49.795730181000117 ], [ -119.53459114499999, 49.79564427800004 ], [ -119.53488338399994, 49.795539695000031 ], [ -119.536352815999948, 49.795215951000095 ], [ -119.536765488999933, 49.794999301000054 ], [ -119.53698287399996, 49.794842420000073 ], [ -119.537098435999923, 49.794675883000139 ], [ -119.537202775999944, 49.793954489000043 ], [ -119.537073401999976, 49.79387050200009 ], [ -119.536521407999984, 49.792883484000072 ], [ -119.535407780999989, 49.791765499000086 ], [ -119.534847669999948, 49.791415193000084 ], [ -119.534940595999927, 49.790757952000085 ], [ -119.534985506999988, 49.790760616000092 ], [ -119.535060520999977, 49.790230053000101 ], [ -119.535271387999956, 49.790242561000071 ], [ -119.535314224999979, 49.789939558000093 ], [ -119.535809617999931, 49.789968941000041 ], [ -119.535815905, 49.789924469000042 ], [ -119.536228971999947, 49.789948968000026 ], [ -119.536247091999954, 49.789820779000088 ], [ -119.536465477999954, 49.789833731000051 ], [ -119.536711566999941, 49.788092684000041 ], [ -119.537888937999938, 49.788162502000041 ], [ -119.537940330999959, 49.787798812000119 ], [ -119.543470561000021, 49.788126581000135 ], [ -119.543416782999927, 49.78850745400009 ], [ -119.544875982999898, 49.788593890000087 ], [ -119.544887334999942, 49.788513471000087 ], [ -119.543475283999911, 49.788429827000094 ], [ -119.543981034999902, 49.784847543000168 ], [ -119.547979585999911, 49.78508435300008 ], [ -119.548208330999927, 49.783462937000053 ], [ -119.553738109999955, 49.783790187000079 ], [ -119.553603168999985, 49.784747532000075 ], [ -119.554158520999948, 49.784780382000065 ], [ -119.554294151999898, 49.783818077000078 ], [ -119.559824016, 49.784145019000071 ], [ -119.559773170999961, 49.784506095000076 ], [ -119.559766159999924, 49.784555875000052 ], [ -119.561015305999931, 49.784629688000038 ], [ -119.560966181999916, 49.784978598000038 ], [ -119.561947300999961, 49.785036563000062 ], [ -119.561669426999956, 49.787010349000084 ], [ -119.561470007999958, 49.787162508000087 ], [ -119.560835083999962, 49.787256495000094 ], [ -119.559556693, 49.787240811000068 ], [ -119.559239076999944, 49.787012896000086 ], [ -119.55876089899999, 49.786924605000081 ], [ -119.557372811, 49.786928890000063 ], [ -119.556144891999963, 49.787116903000026 ], [ -119.554085597999972, 49.787055609000042 ], [ -119.552362086999949, 49.787561195000087 ], [ -119.5521591, 49.787690785000031 ], [ -119.551888889999944, 49.788102391000123 ], [ -119.55093580499999, 49.788726192000105 ], [ -119.550405903999945, 49.788944103000055 ], [ -119.548935602999947, 49.789264603000085 ], [ -119.546478091999973, 49.789310202000124 ], [ -119.544500203, 49.790513600000054 ], [ -119.543923992999964, 49.790678797000027 ], [ -119.543576091999952, 49.790912402000082 ], [ -119.542610188999944, 49.791311209000078 ], [ -119.542374304999939, 49.791594602 ], [ -119.541362808999949, 49.792174201000101 ], [ -119.540478792999963, 49.792544498000133 ], [ -119.539982987999977, 49.792866825000104 ], [ -119.539604605999969, 49.793112811000107 ], [ -119.539063592, 49.793673892000079 ], [ -119.538683478999985, 49.794347599000069 ], [ -119.538569311999979, 49.794556907000086 ], [ -119.538182515999921, 49.794880197000062 ], [ -119.537117704999957, 49.795488399000057 ], [ -119.536499886999977, 49.795663599000079 ], [ -119.535528911999933, 49.795684891000064 ], [ -119.535103285999924, 49.795793204000041 ], [ -119.533690200999914, 49.796418404000086 ], [ -119.531687308999949, 49.797450885000032 ], [ -119.531257706999952, 49.797730096000123 ], [ -119.530803364999954, 49.798147194000073 ], [ -119.529969337999958, 49.798097695000081 ], [ -119.529870183999918, 49.798798309000084 ], [ -119.529261928999944, 49.799162660000079 ], [ -119.527049909999931, 49.799031334000105 ], [ -119.527056035999962, 49.799148969000065 ], [ -119.527472496999962, 49.799139880000027 ], [ -119.527522224999956, 49.800094571000052 ], [ -119.52721951699999, 49.80022100800003 ], [ -119.527212451999915, 49.800225053000069 ], [ -119.526695718999989, 49.800236327000029 ], [ -119.526709756999963, 49.800505896000104 ], [ -119.526293282999944, 49.800514981000106 ], [ -119.526302356999963, 49.800689264000063 ], [ -119.525786702999966, 49.800765105000053 ], [ -119.525080491999958, 49.801077003000039 ], [ -119.525059947999949, 49.80108162500008 ], [ -119.524576976999981, 49.801092155000056 ], [ -119.524329658999974, 49.801205014000061 ], [ -119.524184186999946, 49.801203707000042 ], [ -119.524024679999954, 49.801165780000098 ], [ -119.523930319999977, 49.801106249000085 ], [ -119.523787423999963, 49.801109363000116 ], [ -119.523495287999964, 49.801039895000066 ], [ -119.521773888000013, 49.801068392000076 ], [ -119.52126087299996, 49.801164390000032 ], [ -119.521214668999974, 49.801165396000037 ], [ -119.521113538999913, 49.801191960000068 ], [ -119.520905898999956, 49.801230813000075 ], [ -119.520865357999952, 49.801257150000012 ], [ -119.520499568, 49.801353230000096 ], [ -119.520506679999954, 49.801490150000078 ], [ -119.520476291999927, 49.801509890000091 ], [ -119.519615065999943, 49.80173995300003 ], [ -119.519371322999959, 49.801745256000046 ], [ -119.51927206299996, 49.801803071000045 ], [ -119.519274600999907, 49.801851964000058 ], [ -119.518957511999986, 49.802001309000062 ], [ -119.518908712999988, 49.802025192000052 ], [ -119.518890002999939, 49.802025599000025 ], [ -119.51879596699996, 49.802080371 ], [ -119.518360886999957, 49.802293298000087 ], [ -119.518056891999919, 49.80257949 ], [ -119.517609161999928, 49.802863070000072 ], [ -119.517419973999907, 49.802867183000075 ], [ -119.517246983999925, 49.802954008 ], [ -119.517253938999914, 49.803088057000082 ], [ -119.517167924999967, 49.803142535000127 ], [ -119.516754723999952, 49.803151515000067 ], [ -119.516448319999981, 49.803365305000099 ], [ -119.51631971099999, 49.803399889000119 ], [ -119.515123536999965, 49.80426644500006 ], [ -119.515069981999886, 49.804267607000057 ], [ -119.514820652999902, 49.804410106000056 ], [ -119.514823909999961, 49.804472930000031 ], [ -119.51469304299998, 49.804545666000138 ], [ -119.514548484999978, 49.804548803000088 ], [ -119.514414162999941, 49.804612490000068 ], [ -119.514418603999943, 49.804698198000068 ], [ -119.514187741999962, 49.804826509000051 ], [ -119.514008471999929, 49.804830401000061 ], [ -119.51401329399998, 49.804923464000083 ], [ -119.513682433999946, 49.805107351000089 ], [ -119.513605924999979, 49.805109011000106 ], [ -119.513607979999946, 49.80514873000007 ], [ -119.512495686999927, 49.805766902000052 ], [ -119.512250309999956, 49.806114392000048 ], [ -119.512120284999924, 49.806558806000105 ], [ -119.511680499999969, 49.806927601000076 ], [ -119.511297616999911, 49.807034395000144 ], [ -119.510627007999943, 49.807517301000118 ], [ -119.510183383999944, 49.807562796000099 ], [ -119.510147616999973, 49.807574882000097 ], [ -119.509555408000026, 49.80777499900006 ], [ -119.507612599999902, 49.808914392000055 ], [ -119.50713668299997, 49.809095297000056 ], [ -119.506793509, 49.809202099000089 ], [ -119.506207901999971, 49.809700608000099 ], [ -119.504757902999955, 49.810432589000072 ], [ -119.504655000999946, 49.810606406000041 ], [ -119.504213906999908, 49.810921107000091 ], [ -119.50293211099995, 49.811389706000078 ], [ -119.502372320999939, 49.811609001000065 ], [ -119.501909310999963, 49.812077605000077 ], [ -119.501746318999977, 49.812423706000061 ], [ -119.501702897999934, 49.812909308000023 ], [ -119.501747700999914, 49.813493207000057 ], [ -119.50233701399999, 49.815514191000062 ], [ -119.50227280899999, 49.816145091000116 ], [ -119.50245909899995, 49.817057990000116 ], [ -119.50296541699997, 49.818244404000019 ], [ -119.503028617999931, 49.818313125000046 ], [ -119.503032404999928, 49.818386470000114 ], [ -119.503250589999965, 49.818554490000103 ], [ -119.503273207999911, 49.818579083000039 ], [ -119.503466046999961, 49.818706910000046 ], [ -119.503471995999945, 49.818822160000146 ], [ -119.503634610999939, 49.818818646000061 ], [ -119.503720077999944, 49.818875299000076 ], [ -119.50389377399999, 49.818912674000018 ], [ -119.503899927999896, 49.819031845000126 ], [ -119.501789103999911, 49.81891660499999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7564166", "BldgCostT": "5216666", "sL_LossRatio": "1", "sL_AssetLoss": "817", "sL_BldgLoss": "817", "sL_StrLoss": "817", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD049FCD47E35DC08F780D550CE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.548745414999971, 49.77967153800008 ], [ -119.554274740999972, 49.779998763000016 ], [ -119.553769847, 49.783581119000075 ], [ -119.548240092999933, 49.783253870000109 ], [ -119.548745414999971, 49.77967153800008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "41473750", "BldgCostT": "28075000", "sL_LossRatio": "0.999994912190043", "sL_AssetLoss": "5405.0761", "sL_BldgLoss": "5405.0486", "sL_StrLoss": "5405", "sL_NStrLoss": "0.0486", "sL_ContLoss": "0.0275", "geom_point": "0101000020E61000005F72508070E45DC0C7A28E33F2E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.563127734999924, 49.783722310000051 ], [ -119.563288536999934, 49.782579781000052 ], [ -119.564168357999932, 49.782631746000042 ], [ -119.564210878000011, 49.782329583000013 ], [ -119.560651607999944, 49.782119316000028 ], [ -119.561155948999939, 49.778536921000082 ], [ -119.564753057999965, 49.778749423000122 ], [ -119.564746195999987, 49.778619482000082 ], [ -119.566411289999948, 49.778582593000117 ], [ -119.566397042999981, 49.77831303199999 ], [ -119.566813313999916, 49.778303806000054 ], [ -119.566799064999955, 49.778034245000079 ], [ -119.56721533399994, 49.77802501700009 ], [ -119.567201082999929, 49.777755456000051 ], [ -119.567617348999931, 49.777746227000094 ], [ -119.567603095999928, 49.77747666700003 ], [ -119.568019358999891, 49.777467437000055 ], [ -119.568005103999937, 49.777197875000056 ], [ -119.567588843999928, 49.777207105000116 ], [ -119.567574590999953, 49.776937545000138 ], [ -119.56632581299999, 49.776965227000069 ], [ -119.566268831999963, 49.775886982000053 ], [ -119.567517582999969, 49.775859302000079 ], [ -119.567531833999936, 49.776128863000082 ], [ -119.570445591999942, 49.776064221000063 ], [ -119.570431324, 49.775794661000127 ], [ -119.573345054999976, 49.775729946000112 ], [ -119.57335933799996, 49.775999506000069 ], [ -119.57627307499996, 49.775934719000084 ], [ -119.576315976999965, 49.776743395000054 ], [ -119.575483468999906, 49.776761914000105 ], [ -119.575497764999909, 49.777031473000065 ], [ -119.575081506999936, 49.777040731000106 ], [ -119.575095800999961, 49.777310290000123 ], [ -119.573847021999939, 49.777338053000051 ], [ -119.573861308999966, 49.777607612000033 ], [ -119.573028783, 49.777626114000022 ], [ -119.573043066999972, 49.777895673 ], [ -119.573875597999944, 49.77787717200011 ], [ -119.573889884999971, 49.778146731000042 ], [ -119.574306150999988, 49.778137479000122 ], [ -119.574320442999948, 49.778407038000111 ], [ -119.574736710999943, 49.778397783000102 ], [ -119.574808177999969, 49.779745579000057 ], [ -119.573559335000013, 49.779773340000091 ], [ -119.573545048999975, 49.779503780000049 ], [ -119.572712490999962, 49.77952228000008 ], [ -119.572726772999928, 49.779791840000144 ], [ -119.572310490999925, 49.779801087000052 ], [ -119.572324769999966, 49.780070647000095 ], [ -119.571908486999973, 49.780079894000046 ], [ -119.571922765999958, 49.780349454000081 ], [ -119.571090191999986, 49.780367941000058 ], [ -119.571104466999941, 49.780637500000118 ], [ -119.573185909999893, 49.780591269000112 ], [ -119.573221777999933, 49.781268113000046 ], [ -119.573243051999924, 49.781669506000107 ], [ -119.572826752999958, 49.781678757000108 ], [ -119.572831191999981, 49.781762494000091 ], [ -119.574006761999939, 49.781831823000083 ], [ -119.573979868, 49.782023235000082 ], [ -119.574205934999952, 49.782036566000066 ], [ -119.574236510999953, 49.781818931000053 ], [ -119.579766276999962, 49.782144865000078 ], [ -119.579607513999946, 49.783275834000115 ], [ -119.579603299999974, 49.783277184000056 ], [ -119.577848184999965, 49.783433892000112 ], [ -119.577700486999973, 49.783563495000045 ], [ -119.577545610999934, 49.784016395000073 ], [ -119.577384611999918, 49.784146 ], [ -119.576449501999946, 49.784580384000037 ], [ -119.574994003999961, 49.784909394000081 ], [ -119.574074621999927, 49.784866606000058 ], [ -119.573247109999926, 49.784453603000024 ], [ -119.571591606999931, 49.784392403000027 ], [ -119.570587690999929, 49.784063404000094 ], [ -119.569858197000016, 49.783953708000027 ], [ -119.569359114999955, 49.783965094000031 ], [ -119.568403307999944, 49.784264211000071 ], [ -119.567669478, 49.784848097000079 ], [ -119.565711297999911, 49.784882302000049 ], [ -119.563022998999898, 49.785526002000019 ], [ -119.562855513999963, 49.785656369000058 ], [ -119.563127734999924, 49.783722310000051 ] ], [ [ -119.566634763999957, 49.781902720000048 ], [ -119.5666901499999, 49.781508956000081 ], [ -119.56698366799999, 49.781526284000044 ], [ -119.56697006399996, 49.781268975000017 ], [ -119.56738636099999, 49.781259746000046 ], [ -119.567372106999969, 49.78099018600011 ], [ -119.568204692999984, 49.780971724000096 ], [ -119.56819043499992, 49.780702164000026 ], [ -119.56860672499991, 49.780692930000022 ], [ -119.568592465999984, 49.78042336900009 ], [ -119.569008754, 49.78041413600009 ], [ -119.568980230999955, 49.779875015000087 ], [ -119.568147663999966, 49.77989348200007 ], [ -119.568161918999976, 49.780163042000034 ], [ -119.566913059999948, 49.78019073100009 ], [ -119.566898809999913, 49.77992117100009 ], [ -119.566535328999947, 49.779929227000068 ], [ -119.566260834000019, 49.7818806430001 ], [ -119.566634763999957, 49.781902720000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146520251", "BldgCostT": "95155001", "sL_LossRatio": "1", "sL_AssetLoss": "11925.9", "sL_BldgLoss": "11925.9", "sL_StrLoss": "11925.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000031514A2924DF5DC061C83D9FF9E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.493863288999989, 49.817549404000033 ], [ -119.492542709999952, 49.81701100100009 ], [ -119.491819609999965, 49.817009599000095 ], [ -119.491219390999944, 49.817201900000079 ], [ -119.49075718499995, 49.817157695000041 ], [ -119.490375964999942, 49.816989284000051 ], [ -119.490173609999971, 49.816899899000113 ], [ -119.489603687999988, 49.816354505000064 ], [ -119.489453296999912, 49.816123693000037 ], [ -119.489541218999989, 49.815655201000048 ], [ -119.489416384999913, 49.815387410000035 ], [ -119.48859329699999, 49.814784987000124 ], [ -119.486627778999946, 49.814077085000086 ], [ -119.48472610099995, 49.813392103000098 ], [ -119.483035868999963, 49.812692141000113 ], [ -119.481771908, 49.812168684000021 ], [ -119.481521796999942, 49.812101150000068 ], [ -119.480785601, 49.811902397000068 ], [ -119.479239903999911, 49.811665274000092 ], [ -119.479223327999975, 49.811662721000118 ], [ -119.477954207999929, 49.811467996000047 ], [ -119.477439637999908, 49.811447073000103 ], [ -119.476938579999953, 49.811426694000012 ], [ -119.476018157999931, 49.811282472000073 ], [ -119.475984583999903, 49.81127720500011 ], [ -119.473598265, 49.810564017000068 ], [ -119.472880279999941, 49.810349427000055 ], [ -119.472610518999971, 49.81026879900007 ], [ -119.472225647999949, 49.810208328 ], [ -119.472071984999943, 49.809852107000047 ], [ -119.47197193199996, 49.809204926000071 ], [ -119.472462092999962, 49.809275535000033 ], [ -119.472639614999963, 49.809301098000034 ], [ -119.472958766999938, 49.809347084000066 ], [ -119.473732444999953, 49.809379846000105 ], [ -119.473741930999935, 49.809186238000109 ], [ -119.473872392999937, 49.809054067000076 ], [ -119.474099252999963, 49.809008936000033 ], [ -119.474320871999964, 49.809035467000115 ], [ -119.47467253399999, 49.809077575000046 ], [ -119.474934972999932, 49.809066188000074 ], [ -119.475624087999947, 49.808860859000085 ], [ -119.476099765999948, 49.808821597000062 ], [ -119.476475102999956, 49.808830523000097 ], [ -119.476849063999936, 49.808898054000039 ], [ -119.477987300999985, 49.809249725000058 ], [ -119.478187854999973, 49.809261723000112 ], [ -119.478373163999962, 49.809240861000049 ], [ -119.478376404999921, 49.809240485000103 ], [ -119.479034969999958, 49.809073066000067 ], [ -119.479187594999971, 49.808932272000085 ], [ -119.48032753699998, 49.809379748000048 ], [ -119.48069615, 49.80947494500009 ], [ -119.48222572399996, 49.809684681000093 ], [ -119.483387328999967, 49.810146968000012 ], [ -119.483881097999969, 49.81023519100011 ], [ -119.484734277999934, 49.810268102000059 ], [ -119.487232989999953, 49.810259056000092 ], [ -119.488439680999974, 49.810254660000112 ], [ -119.488580846999966, 49.810254555000029 ], [ -119.491277051999973, 49.810252677000065 ], [ -119.49238884199994, 49.810251896000054 ], [ -119.495572658999905, 49.810249551000034 ], [ -119.496961965999915, 49.8102485100001 ], [ -119.497454075999926, 49.810299537000077 ], [ -119.497207851999988, 49.810579229000034 ], [ -119.496827379999914, 49.811008102000102 ], [ -119.496553467999945, 49.811217535000033 ], [ -119.496106647999966, 49.811484815000085 ], [ -119.495478544999983, 49.811860540000055 ], [ -119.495293230999962, 49.812076706000028 ], [ -119.494706896999958, 49.812041727000107 ], [ -119.494745283000015, 49.811772053000062 ], [ -119.494342403999923, 49.811748017000092 ], [ -119.494494890999988, 49.810676788000102 ], [ -119.493038305999917, 49.810589873000076 ], [ -119.493084558999925, 49.811489757000089 ], [ -119.49266798, 49.811498723000078 ], [ -119.492723395999974, 49.812577022000042 ], [ -119.492485629, 49.81258213800001 ], [ -119.492477816999909, 49.812637003000077 ], [ -119.493372955999959, 49.812690420000131 ], [ -119.493150019999945, 49.814256206000039 ], [ -119.494150534999974, 49.814315902000033 ], [ -119.494094930999978, 49.814706483000094 ], [ -119.495634000999956, 49.814673331000108 ], [ -119.495653572999956, 49.814815931000098 ], [ -119.495629856999969, 49.815305793000029 ], [ -119.495545636999978, 49.815623165000055 ], [ -119.495401690999984, 49.815870155000091 ], [ -119.495162344999983, 49.816172736000077 ], [ -119.49501889299998, 49.816353987000092 ], [ -119.494859681999984, 49.816688499000101 ], [ -119.494830528999969, 49.816768520000089 ], [ -119.494592030999968, 49.81742210000008 ], [ -119.494508187999955, 49.817541998000067 ], [ -119.494505899999979, 49.81754529800007 ], [ -119.493863288999989, 49.817549404000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "136641917", "BldgCostT": "93211667", "sL_LossRatio": "0.996863691302663", "sL_AssetLoss": "16165.500559", "sL_BldgLoss": "16114.800559", "sL_StrLoss": "16096.400559", "sL_NStrLoss": "18.4", "sL_ContLoss": "50.7", "geom_point": "0101000020E61000009CD187154BE55DC069DD27C348EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.56613977799995, 49.842936098000024 ], [ -119.56598164, 49.839052284000097 ], [ -119.567944039999958, 49.838461012000089 ], [ -119.57124649799999, 49.83838775500007 ], [ -119.57126080099999, 49.838657313000034 ], [ -119.571677587999943, 49.838648061000086 ], [ -119.571691893999969, 49.838917618000046 ], [ -119.572108684999961, 49.838908365000108 ], [ -119.572137302999934, 49.839447479000064 ], [ -119.572554095999948, 49.839438223000023 ], [ -119.572568406999949, 49.83970778 ], [ -119.572985203000016, 49.839698524000028 ], [ -119.572999488999969, 49.839967540000032 ], [ -119.573006146999916, 49.839967933000011 ], [ -119.573416312999925, 49.839958822000021 ], [ -119.573387681999975, 49.839419709000076 ], [ -119.573804474999932, 49.839410449000056 ], [ -119.573775837999932, 49.838871337000086 ], [ -119.574192624999938, 49.838862076000034 ], [ -119.57417830699994, 49.838592519000102 ], [ -119.574595091999953, 49.838583257000089 ], [ -119.574580768999965, 49.83831370100004 ], [ -119.5749975519999, 49.838304436000087 ], [ -119.574988517999969, 49.838134417000049 ], [ -119.572736395, 49.838001781000159 ], [ -119.572717447999977, 49.83813643600012 ], [ -119.572246007999979, 49.838108665000071 ], [ -119.572199642999976, 49.838438147000048 ], [ -119.56954764299995, 49.838281888000068 ], [ -119.570036509999937, 49.838094348000091 ], [ -119.570227341999981, 49.838021140000102 ], [ -119.570290643999954, 49.837996856000117 ], [ -119.570473615999944, 49.837926645000024 ], [ -119.570480297999936, 49.837924086000072 ], [ -119.570589738999928, 49.837851667000088 ], [ -119.570790211999935, 49.837718993000117 ], [ -119.571089673999936, 49.837381440000101 ], [ -119.571327201999921, 49.837113685000084 ], [ -119.571482268999944, 49.837063149000123 ], [ -119.57165488599999, 49.837006896000076 ], [ -119.573012604999917, 49.836877305000044 ], [ -119.57356108, 49.836704750000138 ], [ -119.573777689999986, 49.836636597000037 ], [ -119.573967496999913, 49.836498589000037 ], [ -119.573977738999986, 49.836491134 ], [ -119.57404600299999, 49.836441507000046 ], [ -119.573787712999888, 49.83587413500004 ], [ -119.573729610999933, 49.83574649500013 ], [ -119.573621725999942, 49.835596749000104 ], [ -119.573403249999956, 49.835293498000041 ], [ -119.57329524799998, 49.835143589000069 ], [ -119.573130405999976, 49.834914806000079 ], [ -119.5728706299999, 49.834718126000062 ], [ -119.572626650999922, 49.834533376000095 ], [ -119.572332813999978, 49.834310908000056 ], [ -119.572029392999951, 49.834372115000114 ], [ -119.571870694999959, 49.834501687000099 ], [ -119.57260590599995, 49.834997400000134 ], [ -119.57288849599999, 49.835342007000129 ], [ -119.572816670999899, 49.835712553000057 ], [ -119.57277611899994, 49.835921814000123 ], [ -119.572746607999989, 49.836074092000054 ], [ -119.572440194999956, 49.836062697000031 ], [ -119.571951600999981, 49.835934547000107 ], [ -119.571522617, 49.835821993000117 ], [ -119.571495901999938, 49.835788224000048 ], [ -119.571285175999918, 49.835521492000069 ], [ -119.571213122999936, 49.835531471000095 ], [ -119.570966018999968, 49.835565601000042 ], [ -119.570753388999947, 49.835749404000111 ], [ -119.570765709999989, 49.835977852000106 ], [ -119.570781493999959, 49.836270603000081 ], [ -119.57057587599995, 49.836385301000057 ], [ -119.570227377999942, 49.836579695000061 ], [ -119.570351185999968, 49.837187799000098 ], [ -119.570362082999935, 49.837241364000107 ], [ -119.570378710999961, 49.837323107000074 ], [ -119.57005160499989, 49.837186388000092 ], [ -119.569714404999957, 49.836811540000056 ], [ -119.569610733999937, 49.836696281000052 ], [ -119.569420959999917, 49.836485287000102 ], [ -119.569393997999953, 49.836455316000077 ], [ -119.569241545999944, 49.836285814000099 ], [ -119.569179193999943, 49.836216498000127 ], [ -119.569208002999943, 49.83546830500012 ], [ -119.569208319999973, 49.83546019500006 ], [ -119.569307699999939, 49.835367814000087 ], [ -119.570110686999953, 49.834621400000103 ], [ -119.570402012999949, 49.834101491000091 ], [ -119.570943778999961, 49.833558893000017 ], [ -119.57121438199999, 49.833409395000061 ], [ -119.571721079, 49.833281201 ], [ -119.571943292999933, 49.832727202000036 ], [ -119.57238679799994, 49.832717191000036 ], [ -119.57324039199996, 49.832546291000085 ], [ -119.574051510999979, 49.832234286000094 ], [ -119.574653992999984, 49.832002532000047 ], [ -119.575041336999973, 49.831853522000081 ], [ -119.575898715999941, 49.831523699000059 ], [ -119.576667593999929, 49.831083600000071 ], [ -119.577197800999897, 49.830334507000039 ], [ -119.577151046999916, 49.829623928000039 ], [ -119.57712161299996, 49.829176595000021 ], [ -119.577190001999952, 49.828364810000075 ], [ -119.578212099999973, 49.827191309000099 ], [ -119.578482384999987, 49.826993266000024 ], [ -119.579149004999948, 49.826504811000106 ], [ -119.580284585999948, 49.826127401000065 ], [ -119.580964378999951, 49.826029648000045 ], [ -119.581760190999915, 49.825915201000079 ], [ -119.585268851999899, 49.823813570000077 ], [ -119.585331603999975, 49.823775986000022 ], [ -119.586384695999953, 49.823445604000035 ], [ -119.587578487999949, 49.822776855000079 ], [ -119.58813890799992, 49.822462900000033 ], [ -119.588480625, 49.822446641000056 ], [ -119.588527993999918, 49.822444392000087 ], [ -119.588613700999986, 49.822487101000043 ], [ -119.588616211000016, 49.82331599000004 ], [ -119.58858621499999, 49.823532503000102 ], [ -119.58836208299999, 49.823780304000117 ], [ -119.584602894999989, 49.825744294000096 ], [ -119.585494411999932, 49.826560402000055 ], [ -119.585844204999901, 49.82659738500012 ], [ -119.585949705999937, 49.826496303000049 ], [ -119.58535000099999, 49.825960792000103 ], [ -119.585403304999915, 49.825654603000025 ], [ -119.585810183999911, 49.825456595000055 ], [ -119.58620000799999, 49.825465085000118 ], [ -119.58664558699995, 49.825725791000089 ], [ -119.586898685999984, 49.826043403000028 ], [ -119.587145984999921, 49.825983597000089 ], [ -119.58720659, 49.825802691 ], [ -119.586665614999944, 49.825328402000117 ], [ -119.586746621999964, 49.825030806000015 ], [ -119.58743111899993, 49.824573599000104 ], [ -119.58855040099999, 49.824144884000113 ], [ -119.588900806999973, 49.823938402000067 ], [ -119.588840809999937, 49.822379192 ], [ -119.588833016999914, 49.822176594000048 ], [ -119.59011789, 49.822004315000093 ], [ -119.591133191999972, 49.821747897000122 ], [ -119.592497999, 49.821789304000063 ], [ -119.592573801999905, 49.821779735000113 ], [ -119.593795095999965, 49.821625510000032 ], [ -119.594027134999976, 49.821535205000096 ], [ -119.594505113999972, 49.821349193000039 ], [ -119.595005191999945, 49.821364800000026 ], [ -119.595271215999958, 49.821394806000079 ], [ -119.595728008999941, 49.82162690500008 ], [ -119.598101314999965, 49.822041291000069 ], [ -119.598153306000015, 49.822041798000072 ], [ -119.598063891000024, 49.824904811000081 ], [ -119.598051451999964, 49.824672709000041 ], [ -119.597467336999927, 49.824638426000057 ], [ -119.597444571000011, 49.824800904 ], [ -119.596779052999949, 49.824761839000097 ], [ -119.596591470999968, 49.826100339000071 ], [ -119.598023922, 49.826184415000064 ], [ -119.597975210999905, 49.827743838000053 ], [ -119.597473790999985, 49.827749492000052 ], [ -119.596570169999922, 49.827759628000095 ], [ -119.596084148999978, 49.827765181000068 ], [ -119.595653255999977, 49.827770093000062 ], [ -119.594749679999964, 49.827780399000098 ], [ -119.593826920999973, 49.827790905000072 ], [ -119.593401343999943, 49.82779611000003 ], [ -119.593299120999959, 49.827797376000063 ], [ -119.593190961999966, 49.827798698000038 ], [ -119.59242500799995, 49.827810010000107 ], [ -119.59259030599992, 49.830012556000064 ], [ -119.592590885, 49.830025260000127 ], [ -119.592611256999973, 49.830349609000081 ], [ -119.59261511599999, 49.831065541000051 ], [ -119.588895109999939, 49.830681374000051 ], [ -119.588672447999969, 49.830875970000058 ], [ -119.588653543999939, 49.830881579000071 ], [ -119.58834484099998, 49.830973210000124 ], [ -119.588030822999954, 49.831013453000061 ], [ -119.587454862999905, 49.83102111400008 ], [ -119.587376021999916, 49.831027581000058 ], [ -119.586908569999963, 49.831065773000027 ], [ -119.586372374999911, 49.831159562000117 ], [ -119.586474256999935, 49.830433831000057 ], [ -119.582850230999981, 49.83022072000005 ], [ -119.583047190999949, 49.828818453000089 ], [ -119.582473700999955, 49.828784717000048 ], [ -119.582432862999923, 49.829075437 ], [ -119.582176368999967, 49.829060348000077 ], [ -119.582147263999914, 49.829267543000107 ], [ -119.581865690999976, 49.829250979000051 ], [ -119.581855135999959, 49.829326114 ], [ -119.581933306999986, 49.829330712000065 ], [ -119.581430031999972, 49.832912950000058 ], [ -119.580903343999964, 49.832881963000013 ], [ -119.580880308999937, 49.833045895000048 ], [ -119.581809956, 49.833025178000078 ], [ -119.581819502999949, 49.833204415000047 ], [ -119.582276470999901, 49.833231296000079 ], [ -119.58170207799995, 49.833581340000102 ], [ -119.580205958, 49.834357300000107 ], [ -119.580013295999919, 49.834457184 ], [ -119.579454383999945, 49.834780049000088 ], [ -119.577575820000021, 49.836399582000119 ], [ -119.576205918000014, 49.837884589000041 ], [ -119.575912595999952, 49.83808499600007 ], [ -119.575078810999969, 49.838387101000066 ], [ -119.574814908999954, 49.83856659500006 ], [ -119.574744997999915, 49.838640565000091 ], [ -119.574582009999958, 49.838812987000075 ], [ -119.574195527999933, 49.839381492 ], [ -119.573719710999967, 49.840081395000077 ], [ -119.573475698, 49.840447209000061 ], [ -119.573269996999912, 49.840678899000075 ], [ -119.573020701999923, 49.84088360500008 ], [ -119.572876928999989, 49.840967012000078 ], [ -119.572595211999925, 49.841130396000089 ], [ -119.572347156999982, 49.841221030000035 ], [ -119.572146393999944, 49.841294387000033 ], [ -119.571987875999966, 49.841334650000086 ], [ -119.571963467000018, 49.841340859000091 ], [ -119.571775421999973, 49.841388587000075 ], [ -119.56938155099999, 49.841996417000061 ], [ -119.568653694999938, 49.84218120000002 ], [ -119.568307721999972, 49.842342955000028 ], [ -119.567679496, 49.842636708000093 ], [ -119.566584204999984, 49.843327906000056 ], [ -119.566158799999954, 49.843561865000055 ], [ -119.565695981999909, 49.843816401000055 ], [ -119.56613977799995, 49.842936098000024 ] ], [ [ -119.589765353999937, 49.828984332000104 ], [ -119.589819477999953, 49.82859857300015 ], [ -119.588996607999917, 49.828550218000032 ], [ -119.588967792999966, 49.828548524000055 ], [ -119.588913661999953, 49.82893428400007 ], [ -119.589000602999988, 49.828939392000102 ], [ -119.589765353999937, 49.828984332000104 ] ], [ [ -119.592323191999981, 49.826766530000022 ], [ -119.592279282999968, 49.825945407000127 ], [ -119.59135451599991, 49.825891081000115 ], [ -119.591240640999942, 49.826702936000089 ], [ -119.592323191999981, 49.826766530000022 ] ], [ [ -119.593953222, 49.826043722000051 ], [ -119.593997159999958, 49.826864845000081 ], [ -119.594385637999963, 49.826887657000064 ], [ -119.594499457999973, 49.826075799000122 ], [ -119.593953222, 49.826043722000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "177363500", "BldgCostT": "118985000", "sL_LossRatio": "0.994510226412503", "sL_AssetLoss": "18096.733575", "sL_BldgLoss": "17997.386605", "sL_StrLoss": "17961.207805", "sL_NStrLoss": "36.1788", "sL_ContLoss": "99.34697", "geom_point": "0101000020E61000009E3E4C0C53E55DC0D4F65DAE51EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583753549999955, 49.842541882000027 ], [ -119.58408900499991, 49.841902480000066 ], [ -119.584093043999971, 49.841879093000045 ], [ -119.584096022999972, 49.841861679000054 ], [ -119.584119710999985, 49.841723701000014 ], [ -119.584088513999944, 49.841498808000097 ], [ -119.58402386099999, 49.841238678000053 ], [ -119.583972608999943, 49.841032388000023 ], [ -119.584493458999987, 49.840263219000057 ], [ -119.585149247999979, 49.839294763000069 ], [ -119.585268613999929, 49.839118506000105 ], [ -119.585447201999955, 49.838874270000098 ], [ -119.58568651, 49.838547104000071 ], [ -119.586522515999917, 49.837692408000052 ], [ -119.586699877999976, 49.837512294000078 ], [ -119.586820502999956, 49.837308989000107 ], [ -119.586849295999968, 49.837143688000033 ], [ -119.586811698999924, 49.836964500000065 ], [ -119.586704612999966, 49.836782988000024 ], [ -119.586431408999914, 49.836571886000058 ], [ -119.585780379999946, 49.837004095000033 ], [ -119.585587174999944, 49.837131926000126 ], [ -119.5851954399999, 49.837391066000144 ], [ -119.584534287999972, 49.837828412000093 ], [ -119.583245339999976, 49.83868220600008 ], [ -119.582492309999935, 49.839180993000085 ], [ -119.582211925999957, 49.83930899700006 ], [ -119.581887398999953, 49.839393696000052 ], [ -119.581609300999929, 49.839426096000111 ], [ -119.580308184999978, 49.839471069000098 ], [ -119.580228880999954, 49.83947379800005 ], [ -119.580052601999938, 49.839479915000055 ], [ -119.579644298999938, 49.839555207000082 ], [ -119.579056059, 49.839774295000069 ], [ -119.578482308999966, 49.839987991000044 ], [ -119.578240312000034, 49.840079523000092 ], [ -119.577844015, 49.84022938600009 ], [ -119.577344602999958, 49.840327404000114 ], [ -119.576787688999929, 49.840346996000115 ], [ -119.575186102999965, 49.840352896000148 ], [ -119.575156463999974, 49.840348601000109 ], [ -119.57464848599993, 49.840275199000068 ], [ -119.573719710999967, 49.840081395000077 ], [ -119.574195527999933, 49.839381492 ], [ -119.574582009999958, 49.838812987000075 ], [ -119.574744997999915, 49.838640565000091 ], [ -119.574814908999954, 49.83856659500006 ], [ -119.575078810999969, 49.838387101000066 ], [ -119.575912595999952, 49.83808499600007 ], [ -119.576205918000014, 49.837884589000041 ], [ -119.577575820000021, 49.836399582000119 ], [ -119.579454383999945, 49.834780049000088 ], [ -119.580013295999919, 49.834457184 ], [ -119.580205958, 49.834357300000107 ], [ -119.58170207799995, 49.833581340000102 ], [ -119.582276470999901, 49.833231296000079 ], [ -119.582764438999931, 49.833259999000084 ], [ -119.582534308999954, 49.834898159000062 ], [ -119.58274398099995, 49.834893483 ], [ -119.58272961599998, 49.834623928000063 ], [ -119.58314636599998, 49.834614636000026 ], [ -119.583131996999938, 49.834345081000016 ], [ -119.584798979999945, 49.834307898000105 ], [ -119.584813356999945, 49.834577451000079 ], [ -119.586063598999914, 49.834549546000069 ], [ -119.586077983999985, 49.834819100000068 ], [ -119.588551932999934, 49.834763844000086 ], [ -119.58861862, 49.834288704000095 ], [ -119.588650351999945, 49.834290568000021 ], [ -119.588623392000017, 49.835069081000036 ], [ -119.588663510999979, 49.83907284700016 ], [ -119.588657536999946, 49.840160409000077 ], [ -119.588715594999954, 49.843581602000071 ], [ -119.588786581999898, 49.845146014000171 ], [ -119.58841928399994, 49.845127625000018 ], [ -119.58800120399999, 49.845043480000065 ], [ -119.587711868999946, 49.844935261000046 ], [ -119.587643121999974, 49.84490957000002 ], [ -119.587475033999937, 49.844844575000103 ], [ -119.586591483999939, 49.844248143000073 ], [ -119.584635810999885, 49.842927805000031 ], [ -119.584312508999957, 49.842735494000117 ], [ -119.584030509999963, 49.842616905000085 ], [ -119.583810572999951, 49.842557345000081 ], [ -119.583753549999955, 49.842541882000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "0.999993104137454", "sL_AssetLoss": "905.035441", "sL_BldgLoss": "905.0292", "sL_StrLoss": "905", "sL_NStrLoss": "0.0292", "sL_ContLoss": "0.006241", "geom_point": "0101000020E610000022B0AC139BE55DC0E084BECB77EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.586372374999911, 49.831159562000117 ], [ -119.586908569999963, 49.831065773000027 ], [ -119.587376021999916, 49.831027581000058 ], [ -119.587454862999905, 49.83102111400008 ], [ -119.588030822999954, 49.831013453000061 ], [ -119.58834484099998, 49.830973210000124 ], [ -119.588653543999939, 49.830881579000071 ], [ -119.588672447999969, 49.830875970000058 ], [ -119.588895109999939, 49.830681374000051 ], [ -119.588761681000022, 49.831075359000074 ], [ -119.588706578999947, 49.832666775000106 ], [ -119.588115857999981, 49.832632060000066 ], [ -119.588121347999973, 49.832592938000076 ], [ -119.587542942999931, 49.832558944000013 ], [ -119.587545814999942, 49.832538483000107 ], [ -119.58712303099999, 49.832513633000126 ], [ -119.587127077999952, 49.832484794000081 ], [ -119.586760122, 49.832463223000012 ], [ -119.586766204999961, 49.832419886000075 ], [ -119.586200106999925, 49.832386607000039 ], [ -119.586372374999911, 49.831159562000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "274546339", "BldgCostT": "170551880", "sL_LossRatio": "0.97629658001905", "sL_AssetLoss": "17820.2133", "sL_BldgLoss": "17397.8133", "sL_StrLoss": "17245.6133", "sL_NStrLoss": "152.2", "sL_ContLoss": "422.4", "geom_point": "0101000020E6100000021DD73342E65DC099A2B6896AEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.591103702999987, 49.865511906000016 ], [ -119.591096600999933, 49.862436721000108 ], [ -119.591057545999945, 49.860570483000046 ], [ -119.591041072999971, 49.859783769000096 ], [ -119.590462688999978, 49.859956322000066 ], [ -119.590392520999927, 49.859882610000028 ], [ -119.590254414999947, 49.859737610000074 ], [ -119.590729040999946, 49.859209291000056 ], [ -119.590492246999972, 49.859245024000117 ], [ -119.591129891999941, 49.858630715000075 ], [ -119.591508694000012, 49.857632308000071 ], [ -119.591244499999959, 49.856856085000054 ], [ -119.591235836999957, 49.856841494000058 ], [ -119.593929398999975, 49.856744127000042 ], [ -119.594642849999929, 49.856718328000056 ], [ -119.594849809999957, 49.856710842000055 ], [ -119.596338633999949, 49.85665697700005 ], [ -119.600761527999936, 49.856687002000044 ], [ -119.600843563999916, 49.856439050000134 ], [ -119.600933549999979, 49.856506248000059 ], [ -119.601158199999929, 49.856674013000053 ], [ -119.601729882999976, 49.857146449000012 ], [ -119.601930266999901, 49.857424049 ], [ -119.602562815999946, 49.857890292000064 ], [ -119.602563016999937, 49.857890572 ], [ -119.602738852999963, 49.858070826000102 ], [ -119.603325538999954, 49.858672184000135 ], [ -119.602795774999962, 49.858641141000078 ], [ -119.602800733, 49.858733353000062 ], [ -119.60071598299993, 49.858780170000081 ], [ -119.600730460999955, 49.859049721000105 ], [ -119.599843933999963, 49.85906961900006 ], [ -119.599409806999944, 49.862166257000133 ], [ -119.5979709699999, 49.862081895000053 ], [ -119.597999811999927, 49.862619359000078 ], [ -119.597165841999953, 49.862638057000048 ], [ -119.597194761999958, 49.863177158000077 ], [ -119.596777770999935, 49.863186505000058 ], [ -119.596792229999977, 49.863456055000043 ], [ -119.597209221999918, 49.863446709000073 ], [ -119.597238145999938, 49.863985809000056 ], [ -119.597655140999976, 49.863976460000096 ], [ -119.597640675999969, 49.863706910000126 ], [ -119.600142637, 49.863650788000079 ], [ -119.600128160999972, 49.86338123700007 ], [ -119.601379131, 49.86335315600008 ], [ -119.601393614999949, 49.863622705000068 ], [ -119.60306158, 49.863585242000049 ], [ -119.603032592999909, 49.863046144000073 ], [ -119.603449578999943, 49.863036774000115 ], [ -119.603435084999973, 49.862767224000017 ], [ -119.603852069, 49.86275785400003 ], [ -119.603837570999971, 49.862488305000099 ], [ -119.604254551999958, 49.862478933000013 ], [ -119.60424005499999, 49.862209384000018 ], [ -119.605074009999896, 49.862190635000054 ], [ -119.605059506999979, 49.861921087000049 ], [ -119.604642529999978, 49.861930461000078 ], [ -119.604541024999932, 49.86004361800012 ], [ -119.60466095299995, 49.86004092200006 ], [ -119.605369668999955, 49.860767284000126 ], [ -119.605281721999958, 49.861135934000046 ], [ -119.605302640999966, 49.861262753000112 ], [ -119.605315673999925, 49.861341964000069 ], [ -119.605402612999953, 49.861468966000089 ], [ -119.60567667299992, 49.861655659000064 ], [ -119.605961233999921, 49.861727391000052 ], [ -119.605980702999929, 49.861726699000037 ], [ -119.606114174999959, 49.861721915000047 ], [ -119.606666363999949, 49.861622744000023 ], [ -119.607080966999916, 49.861548273000054 ], [ -119.607825104999918, 49.861469055000136 ], [ -119.608963934999935, 49.862061212000093 ], [ -119.609219071000012, 49.862217350000016 ], [ -119.6097716099999, 49.862555419000067 ], [ -119.609895975999947, 49.862734240000115 ], [ -119.61005115599994, 49.863271538000056 ], [ -119.60964624099995, 49.863450976000102 ], [ -119.609060449999902, 49.863777431000059 ], [ -119.609002587999925, 49.863809678000074 ], [ -119.608299659999943, 49.864378639000115 ], [ -119.607399909999955, 49.865106938000096 ], [ -119.606901580999988, 49.865118152000043 ], [ -119.606918622999942, 49.865434629000035 ], [ -119.606777693999931, 49.865508663000078 ], [ -119.60635034299996, 49.86566873500005 ], [ -119.605479282999951, 49.865866021000052 ], [ -119.604545487999957, 49.86608398400012 ], [ -119.604002657, 49.866210674000122 ], [ -119.603781603999963, 49.866262273000068 ], [ -119.603031126999923, 49.866386249000044 ], [ -119.601900519999944, 49.86651231200004 ], [ -119.601376776999928, 49.866619416000084 ], [ -119.601178054999977, 49.866660075000013 ], [ -119.600215599999942, 49.866856906000088 ], [ -119.600034443999917, 49.866898925000086 ], [ -119.600014462999951, 49.866903549000071 ], [ -119.59970609, 49.866975095000029 ], [ -119.598573766999891, 49.867361979000108 ], [ -119.596739538999927, 49.867834988000013 ], [ -119.59634840699999, 49.868047495000035 ], [ -119.595583076999944, 49.868463306000123 ], [ -119.595236845999949, 49.868601899000055 ], [ -119.594773497999967, 49.868709280000118 ], [ -119.594226933999934, 49.868772909000029 ], [ -119.593651247999929, 49.86877525000007 ], [ -119.593101860000019, 49.86867979900007 ], [ -119.592553594000023, 49.868506792000126 ], [ -119.592332126999935, 49.868429523000017 ], [ -119.591945365999933, 49.868294576000054 ], [ -119.59163897799999, 49.868187659000071 ], [ -119.591499852999945, 49.868071441000076 ], [ -119.591422776999977, 49.868007023000061 ], [ -119.591125896000023, 49.867650753000127 ], [ -119.591103702999987, 49.865511906000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129587668", "BldgCostT": "82721668", "sL_LossRatio": "0.997196443767838", "sL_AssetLoss": "12215.26774", "sL_BldgLoss": "12181.02155", "sL_StrLoss": "12166.12355", "sL_NStrLoss": "14.898", "sL_ContLoss": "34.24619", "geom_point": "0101000020E6100000E1504BB547E55DC033B6EFD537EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583824373999974, 49.859006502000057 ], [ -119.584906952999987, 49.858967296000095 ], [ -119.584907312999974, 49.858970911 ], [ -119.585068255999929, 49.85902011500005 ], [ -119.58510808699999, 49.859032316000089 ], [ -119.585264608999978, 49.859033499000105 ], [ -119.585653557999976, 49.859036493000083 ], [ -119.588378741999961, 49.85905736600003 ], [ -119.588915648999972, 49.859210854000082 ], [ -119.590152245999903, 49.859233818000092 ], [ -119.590311248999981, 49.859239051000074 ], [ -119.590492246999972, 49.859245024000117 ], [ -119.590729040999946, 49.859209291000056 ], [ -119.590254414999947, 49.859737610000074 ], [ -119.590392520999927, 49.859882610000028 ], [ -119.590462688999978, 49.859956322000066 ], [ -119.590328809999988, 49.860047008000151 ], [ -119.590169542999917, 49.860154889000022 ], [ -119.588751719, 49.861034144000058 ], [ -119.587714059999954, 49.861483357000061 ], [ -119.587275464999948, 49.861673386000049 ], [ -119.586529040999906, 49.861937425000058 ], [ -119.586281984999943, 49.862006849000089 ], [ -119.585598670999957, 49.862198806000045 ], [ -119.584194053999923, 49.86248644799999 ], [ -119.582782996999981, 49.862660870000084 ], [ -119.582257906999985, 49.862687485000102 ], [ -119.581430077, 49.862729419000104 ], [ -119.579971155999957, 49.862726599000034 ], [ -119.57903095799999, 49.862724779000054 ], [ -119.575936989999917, 49.86271874100008 ], [ -119.573370061999981, 49.862693988000068 ], [ -119.573321437999979, 49.862596589000127 ], [ -119.573242391999912, 49.862438304000136 ], [ -119.573262907999975, 49.861410107000069 ], [ -119.574574102999989, 49.861419597000101 ], [ -119.575918002000023, 49.861434607000085 ], [ -119.57595261199998, 49.860891200000061 ], [ -119.576071610999975, 49.860789897000124 ], [ -119.576242786999956, 49.860763803000097 ], [ -119.576347182999953, 49.86076448300004 ], [ -119.580390098999942, 49.860791095000145 ], [ -119.580581093, 49.860793312000048 ], [ -119.581266663999884, 49.86079430200008 ], [ -119.582486584999955, 49.86079610000013 ], [ -119.582501618999942, 49.859001008000106 ], [ -119.582515561999926, 49.859001075000087 ], [ -119.583824373999974, 49.859006502000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112891000", "BldgCostT": "75415000", "sL_LossRatio": "0.99402605856906", "sL_AssetLoss": "13224.100188", "sL_BldgLoss": "13145.100188", "sL_StrLoss": "13116.400188", "sL_NStrLoss": "28.7", "sL_ContLoss": "79", "geom_point": "0101000020E610000033B57C8F00E55DC02E47E94E07EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565453501, 49.860305715000095 ], [ -119.565661887999966, 49.860101502000084 ], [ -119.567387831999937, 49.860063268000076 ], [ -119.567397651999968, 49.860248470000109 ], [ -119.568228759999982, 49.860176438000074 ], [ -119.56822177599993, 49.860044784000095 ], [ -119.569889662999969, 49.860007801000037 ], [ -119.569875355999955, 49.859738244 ], [ -119.571307987999944, 49.859706458000069 ], [ -119.571541125999914, 49.859661640000063 ], [ -119.571528912999923, 49.859431681000075 ], [ -119.574892051999925, 49.859356985000048 ], [ -119.575277220999951, 49.859266076000047 ], [ -119.575267258999972, 49.85907877000011 ], [ -119.579019903999935, 49.858995296000039 ], [ -119.579005546999937, 49.858725742000097 ], [ -119.579839460999921, 49.858707175000141 ], [ -119.579810737999978, 49.858168066000097 ], [ -119.58106159299993, 49.85814020599999 ], [ -119.581047225999939, 49.85787065300012 ], [ -119.58188112299996, 49.857852071000089 ], [ -119.581866750999936, 49.857582517000054 ], [ -119.583534533999966, 49.857545338000122 ], [ -119.583520151999892, 49.857275784000052 ], [ -119.58560486699993, 49.857229278000069 ], [ -119.585619258999969, 49.857498831000058 ], [ -119.586453147999947, 49.857480217000102 ], [ -119.586438749999957, 49.857210664000092 ], [ -119.586586485999973, 49.857207366000139 ], [ -119.586891251999987, 49.85503762000009 ], [ -119.587816697999955, 49.855091986000041 ], [ -119.587945354999988, 49.854175842000103 ], [ -119.589124530999982, 49.854245103000068 ], [ -119.589104343999978, 49.855155209000067 ], [ -119.589099552999926, 49.855176580000055 ], [ -119.589084526999955, 49.856004821000042 ], [ -119.589080128999981, 49.856246794000135 ], [ -119.58926393499992, 49.856912713000028 ], [ -119.591235836999957, 49.856841494000058 ], [ -119.591244499999959, 49.856856085000054 ], [ -119.591508694000012, 49.857632308000071 ], [ -119.591129891999941, 49.858630715000075 ], [ -119.590492246999972, 49.859245024000117 ], [ -119.590311248999981, 49.859239051000074 ], [ -119.590152245999903, 49.859233818000092 ], [ -119.588915648999972, 49.859210854000082 ], [ -119.588378741999961, 49.85905736600003 ], [ -119.585653557999976, 49.859036493000083 ], [ -119.585264608999978, 49.859033499000105 ], [ -119.58510808699999, 49.859032316000089 ], [ -119.585068255999929, 49.85902011500005 ], [ -119.584907312999974, 49.858970911 ], [ -119.584906952999987, 49.858967296000095 ], [ -119.583824373999974, 49.859006502000057 ], [ -119.582515561999926, 49.859001075000087 ], [ -119.582501618999942, 49.859001008000106 ], [ -119.582486584999955, 49.86079610000013 ], [ -119.581266663999884, 49.86079430200008 ], [ -119.580581093, 49.860793312000048 ], [ -119.580390098999942, 49.860791095000145 ], [ -119.576347182999953, 49.86076448300004 ], [ -119.576242786999956, 49.860763803000097 ], [ -119.576071610999975, 49.860789897000124 ], [ -119.57595261199998, 49.860891200000061 ], [ -119.575918002000023, 49.861434607000085 ], [ -119.574574102999989, 49.861419597000101 ], [ -119.573262907999975, 49.861410107000069 ], [ -119.573242391999912, 49.862438304000136 ], [ -119.573321437999979, 49.862596589000127 ], [ -119.570077046999984, 49.862585966000083 ], [ -119.568703724999935, 49.862670307000023 ], [ -119.56820841299999, 49.862731689000071 ], [ -119.567384889999943, 49.86283368900007 ], [ -119.565693553999935, 49.863192734000044 ], [ -119.565138136999948, 49.86337851100005 ], [ -119.564793539999982, 49.863415976000113 ], [ -119.564595490999977, 49.863404308000042 ], [ -119.564311471999986, 49.863318951000025 ], [ -119.563950396999957, 49.863027670000115 ], [ -119.563583864999927, 49.862834501000052 ], [ -119.563719950999939, 49.862257132000096 ], [ -119.566398447999987, 49.861652226000103 ], [ -119.566927793999938, 49.861529109000116 ], [ -119.566405216999982, 49.861096483 ], [ -119.565453501, 49.860305715000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "142.6", "sL_BldgLoss": "142.6", "sL_StrLoss": "142.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003122F6AEA6E55DC0354EB7AA74EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.58804330199996, 49.846491612000094 ], [ -119.588602203999969, 49.846523103000045 ], [ -119.588720196999986, 49.848026918000109 ], [ -119.587835036999934, 49.84797491700008 ], [ -119.58804330199996, 49.846491612000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020035", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10125833", "BldgCostT": "6983333", "sL_LossRatio": "1", "sL_AssetLoss": "998", "sL_BldgLoss": "998", "sL_StrLoss": "998", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4428D842EE55DC0C2BF6B446EEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.580946979999936, 49.848157405000045 ], [ -119.580918254, 49.847618295000096 ], [ -119.579250808999944, 49.847655431000099 ], [ -119.579265160999967, 49.847924987000091 ], [ -119.578049339999964, 49.84795205000006 ], [ -119.578702257999922, 49.847310892000053 ], [ -119.579374452999929, 49.84665078000004 ], [ -119.579520478999939, 49.84665236000005 ], [ -119.579485665, 49.846569689000056 ], [ -119.57938027199999, 49.846220997000046 ], [ -119.579968196000024, 49.846227809000041 ], [ -119.580019233999963, 49.846188794000092 ], [ -119.58099568599998, 49.846171760000061 ], [ -119.582279289999974, 49.846244539000054 ], [ -119.582933276999967, 49.846272563000063 ], [ -119.583002555999897, 49.847571842000058 ], [ -119.582585696999914, 49.847581136000038 ], [ -119.582614439999972, 49.848120244000079 ], [ -119.580946979999936, 49.848157405000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197781833", "BldgCostT": "130748333", "sL_LossRatio": "0.99901250555036", "sL_AssetLoss": "17114.020242", "sL_BldgLoss": "17097.120242", "sL_StrLoss": "17091.000242", "sL_NStrLoss": "6.12", "sL_ContLoss": "16.9", "geom_point": "0101000020E61000009C84874020E45DC0BC85327D44ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.562866218999943, 49.862644058000086 ], [ -119.562310699999898, 49.862574289000058 ], [ -119.561048002999911, 49.862527900000053 ], [ -119.55864108699997, 49.862485207000049 ], [ -119.55872063399994, 49.86189749400004 ], [ -119.558805408999945, 49.861271401000131 ], [ -119.558871120999967, 49.861171404000096 ], [ -119.558969487999903, 49.861028307000076 ], [ -119.559092631999974, 49.860956005000062 ], [ -119.55936079699994, 49.860798487000132 ], [ -119.55963752299999, 49.860539395000096 ], [ -119.55967644199994, 49.860189460000122 ], [ -119.559819587, 49.858902291000064 ], [ -119.559876610999964, 49.858696189000042 ], [ -119.560035700999933, 49.858488898000118 ], [ -119.56075350199994, 49.857923494000069 ], [ -119.560619487999986, 49.857864090000099 ], [ -119.560493701999945, 49.85768701100006 ], [ -119.560483867999963, 49.857508488000043 ], [ -119.560582385999979, 49.857216293000064 ], [ -119.561401403, 49.85583440500006 ], [ -119.561513309999938, 49.85521879300012 ], [ -119.56148849399996, 49.855068397000075 ], [ -119.561362916999926, 49.854988694000085 ], [ -119.561160492999974, 49.85499849800005 ], [ -119.559745188999955, 49.855866707000061 ], [ -119.559425295999986, 49.855957109000052 ], [ -119.559472376999963, 49.855405399000112 ], [ -119.559432276999971, 49.855118200000049 ], [ -119.559395992999953, 49.854858304000061 ], [ -119.559402692999967, 49.8547829870001 ], [ -119.559500921999955, 49.853677041000033 ], [ -119.559550291999955, 49.853121007000055 ], [ -119.55964787799995, 49.852290553000053 ], [ -119.559689040999928, 49.851940092000063 ], [ -119.559866373999924, 49.850430388000085 ], [ -119.559919091999959, 49.849981495000129 ], [ -119.559987580999959, 49.849842007000042 ], [ -119.56000121699995, 49.849830715000074 ], [ -119.560122005999943, 49.84973069100004 ], [ -119.560981087999949, 49.849429294000075 ], [ -119.561962587999972, 49.84913139400004 ], [ -119.562719806999937, 49.848186411000057 ], [ -119.563112380999925, 49.847877290000035 ], [ -119.563420793999967, 49.847719397000105 ], [ -119.563913484999929, 49.847571493000025 ], [ -119.564914614999978, 49.847450797000121 ], [ -119.566060614999955, 49.847143706000068 ], [ -119.566635826999942, 49.846974394000057 ], [ -119.567052283999942, 49.846812002000028 ], [ -119.567415951, 49.846593721000019 ], [ -119.567590588999948, 49.846488905000037 ], [ -119.567766488, 49.846407896000095 ], [ -119.574633815999917, 49.846710157000096 ], [ -119.577984924999967, 49.84636481900008 ], [ -119.57938027199999, 49.846220997000046 ], [ -119.579485665, 49.846569689000056 ], [ -119.579520478999939, 49.84665236000005 ], [ -119.579374452999929, 49.84665078000004 ], [ -119.578702257999922, 49.847310892000053 ], [ -119.578049339999964, 49.84795205000006 ], [ -119.578014568999905, 49.847952822000124 ], [ -119.578000221999943, 49.847683268000054 ], [ -119.576332769999965, 49.847720362000068 ], [ -119.576318432999969, 49.847450806000019 ], [ -119.57131608499995, 49.847561944000084 ], [ -119.571330392999982, 49.847831501000073 ], [ -119.570913526999959, 49.847840753000085 ], [ -119.570927834, 49.848110309000091 ], [ -119.569677226999943, 49.848138056000025 ], [ -119.569691527999936, 49.848407613000077 ], [ -119.56916838299999, 49.84841921600006 ], [ -119.569138770999984, 49.848629490000079 ], [ -119.568449052999966, 49.848588848000105 ], [ -119.568455205999939, 49.848704904000094 ], [ -119.56554380399993, 49.84876941400006 ], [ -119.565537535000018, 49.848778156000037 ], [ -119.565551356999919, 49.849039122000093 ], [ -119.565134478999951, 49.849048353000043 ], [ -119.56519158099999, 49.850126584000108 ], [ -119.56602535699993, 49.850108120000087 ], [ -119.566039636999989, 49.850377677000019 ], [ -119.56645652600001, 49.850368443000072 ], [ -119.56647080899991, 49.850638 ], [ -119.56688770099997, 49.850628764000056 ], [ -119.566873414999932, 49.850359207000047 ], [ -119.568124081999969, 49.850331489000027 ], [ -119.568166961, 49.851140161000139 ], [ -119.567750064999956, 49.851149402 ], [ -119.567764354999937, 49.8514189590001 ], [ -119.566930558999985, 49.851437436 ], [ -119.566944845999956, 49.851706995000022 ], [ -119.566527944999976, 49.851716230000065 ], [ -119.566556512999952, 49.852255346000071 ], [ -119.566139607, 49.852264580000075 ], [ -119.566182455999922, 49.853073254000059 ], [ -119.564931715999961, 49.853100951000059 ], [ -119.564988822999965, 49.854179182000046 ], [ -119.56457189799994, 49.854188412000013 ], [ -119.564614723999981, 49.854997085000058 ], [ -119.564197792999963, 49.855006314000072 ], [ -119.564369084999953, 49.858241008000078 ], [ -119.56395212599999, 49.858250236000082 ], [ -119.563966399999913, 49.858519794000088 ], [ -119.563549439999946, 49.858529020000098 ], [ -119.563606526999948, 49.859607252000089 ], [ -119.564023495999919, 49.859598024000029 ], [ -119.564037770999988, 49.859867582000049 ], [ -119.564454742999942, 49.859858353000021 ], [ -119.56446901899993, 49.860127911000099 ], [ -119.565661887999966, 49.860101502000084 ], [ -119.565453501, 49.860305715000095 ], [ -119.566405216999982, 49.861096483 ], [ -119.566927793999938, 49.861529109000116 ], [ -119.566398447999987, 49.861652226000103 ], [ -119.563719950999939, 49.862257132000096 ], [ -119.563583864999927, 49.862834501000052 ], [ -119.563138087999974, 49.862678211000052 ], [ -119.562866218999943, 49.862644058000086 ] ], [ [ -119.564040803999944, 49.85204117600005 ], [ -119.564026534999968, 49.851771619000054 ], [ -119.563609632999885, 49.851780844000082 ], [ -119.563581096999954, 49.851241728000097 ], [ -119.563164197999967, 49.851250953000076 ], [ -119.563149933999938, 49.850981395000112 ], [ -119.56311918499992, 49.850982074000058 ], [ -119.562694491999935, 49.853994624000116 ], [ -119.561634723999958, 49.853932119000071 ], [ -119.561551105999939, 49.854525116000069 ], [ -119.562084619999936, 49.854513318000151 ], [ -119.562095054999986, 49.854710574000052 ], [ -119.562424323999963, 49.854750460000041 ], [ -119.562515194999918, 49.854762057000144 ], [ -119.562487280999932, 49.854234540000078 ], [ -119.562904206999931, 49.854225317000079 ], [ -119.562861410999957, 49.853416642000063 ], [ -119.563278327999953, 49.853407418000124 ], [ -119.563264060999984, 49.853137860000068 ], [ -119.563680974999968, 49.853128635000054 ], [ -119.563623899999925, 49.852050403000078 ], [ -119.564040803999944, 49.85204117600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114780333", "BldgCostT": "75768333", "sL_LossRatio": "0.991807167918533", "sL_AssetLoss": "12437.701516", "sL_BldgLoss": "12335.801516", "sL_StrLoss": "12299.001516", "sL_NStrLoss": "36.8", "sL_ContLoss": "101.9", "geom_point": "0101000020E6100000FB254D4977E35DC072A4E9A2D7ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.555297611999919, 49.86180234800004 ], [ -119.555313797999958, 49.861642298000014 ], [ -119.552729320999916, 49.861552899000031 ], [ -119.552737015999952, 49.861498262000062 ], [ -119.552905788, 49.860302822000094 ], [ -119.551988385999948, 49.860262559000013 ], [ -119.55190416899994, 49.860258857000098 ], [ -119.550165093999937, 49.860182470000048 ], [ -119.549048214999942, 49.860133107000109 ], [ -119.54852991199999, 49.86011015600009 ], [ -119.546765357999959, 49.860032134000079 ], [ -119.545134493999981, 49.859962816000056 ], [ -119.545339881999936, 49.858040764000052 ], [ -119.545531883999942, 49.856243495000058 ], [ -119.548895702999957, 49.85636919000013 ], [ -119.549045738999979, 49.856374451000121 ], [ -119.549410762999955, 49.856391849000019 ], [ -119.552322883999977, 49.856531005000164 ], [ -119.555841298999937, 49.85669910000005 ], [ -119.55623699899995, 49.852975210000054 ], [ -119.556758639999941, 49.852998173000117 ], [ -119.55783123599997, 49.85304536100012 ], [ -119.559550291999955, 49.853121007000055 ], [ -119.559500921999955, 49.853677041000033 ], [ -119.559402692999967, 49.8547829870001 ], [ -119.559395992999953, 49.854858304000061 ], [ -119.559432276999971, 49.855118200000049 ], [ -119.559472376999963, 49.855405399000112 ], [ -119.559425295999986, 49.855957109000052 ], [ -119.559745188999955, 49.855866707000061 ], [ -119.561160492999974, 49.85499849800005 ], [ -119.561362916999926, 49.854988694000085 ], [ -119.56148849399996, 49.855068397000075 ], [ -119.561513309999938, 49.85521879300012 ], [ -119.561401403, 49.85583440500006 ], [ -119.560582385999979, 49.857216293000064 ], [ -119.560483867999963, 49.857508488000043 ], [ -119.560493701999945, 49.85768701100006 ], [ -119.560619487999986, 49.857864090000099 ], [ -119.56075350199994, 49.857923494000069 ], [ -119.560035700999933, 49.858488898000118 ], [ -119.559876610999964, 49.858696189000042 ], [ -119.559819587, 49.858902291000064 ], [ -119.55967644199994, 49.860189460000122 ], [ -119.55963752299999, 49.860539395000096 ], [ -119.55936079699994, 49.860798487000132 ], [ -119.559092631999974, 49.860956005000062 ], [ -119.558969487999903, 49.861028307000076 ], [ -119.558871120999967, 49.861171404000096 ], [ -119.558805408999945, 49.861271401000131 ], [ -119.55872063399994, 49.86189749400004 ], [ -119.55864108699997, 49.862485207000049 ], [ -119.558233971999982, 49.862467662000022 ], [ -119.555243391999937, 49.862338916000049 ], [ -119.555297611999919, 49.86180234800004 ] ], [ [ -119.558505051999973, 49.857866609000091 ], [ -119.558460286999932, 49.857019333000068 ], [ -119.558094107999949, 49.856997725000099 ], [ -119.55793669699996, 49.85811333000008 ], [ -119.558303622999972, 49.85810522800007 ], [ -119.558505051999973, 49.857866609000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "191946084", "BldgCostT": "125963334", "sL_LossRatio": "0.997191101708785", "sL_AssetLoss": "18939.8100196", "sL_BldgLoss": "18886.6100196", "sL_StrLoss": "18867.4000196", "sL_NStrLoss": "19.21", "sL_ContLoss": "53.2", "geom_point": "0101000020E61000004D74965984E35DC06E9E3C8FFEEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.560883489, 49.846473102000061 ], [ -119.561920140999945, 49.845983203000081 ], [ -119.562221301999926, 49.845840908000049 ], [ -119.562898086999922, 49.84539254100013 ], [ -119.563633091999975, 49.84490561800007 ], [ -119.563958908999922, 49.844733585000064 ], [ -119.565695981999909, 49.843816401000055 ], [ -119.56618823499997, 49.843720673000071 ], [ -119.566184243999913, 49.843823313000101 ], [ -119.565821403999962, 49.84537291400008 ], [ -119.565841572999915, 49.845370768000066 ], [ -119.565773736999986, 49.846089211000027 ], [ -119.565890054999926, 49.846361748000099 ], [ -119.56723802399992, 49.846394888000106 ], [ -119.567766488, 49.846407896000095 ], [ -119.567590588999948, 49.846488905000037 ], [ -119.567415951, 49.846593721000019 ], [ -119.567052283999942, 49.846812002000028 ], [ -119.566635826999942, 49.846974394000057 ], [ -119.566060614999955, 49.847143706000068 ], [ -119.564914614999978, 49.847450797000121 ], [ -119.563913484999929, 49.847571493000025 ], [ -119.563420793999967, 49.847719397000105 ], [ -119.563112380999925, 49.847877290000035 ], [ -119.562719806999937, 49.848186411000057 ], [ -119.561962587999972, 49.84913139400004 ], [ -119.560981087999949, 49.849429294000075 ], [ -119.560122005999943, 49.84973069100004 ], [ -119.56000121699995, 49.849830715000074 ], [ -119.559987580999959, 49.849842007000042 ], [ -119.559919091999959, 49.849981495000129 ], [ -119.559866373999924, 49.850430388000085 ], [ -119.559689040999928, 49.851940092000063 ], [ -119.55964787799995, 49.852290553000053 ], [ -119.559550291999955, 49.853121007000055 ], [ -119.55783123599997, 49.85304536100012 ], [ -119.556758639999941, 49.852998173000117 ], [ -119.55623699899995, 49.852975210000054 ], [ -119.555841298999937, 49.85669910000005 ], [ -119.552322883999977, 49.856531005000164 ], [ -119.549410762999955, 49.856391849000019 ], [ -119.549045738999979, 49.856374451000121 ], [ -119.548895702999957, 49.85636919000013 ], [ -119.545531883999942, 49.856243495000058 ], [ -119.545712393999978, 49.854442809000041 ], [ -119.545751390999953, 49.853999 ], [ -119.545833730999917, 49.853000919000038 ], [ -119.54584528599996, 49.852860494000026 ], [ -119.545861295999913, 49.852727793000028 ], [ -119.54587284299997, 49.852710228000021 ], [ -119.545944751999983, 49.852600683000105 ], [ -119.545950299999973, 49.852592196000046 ], [ -119.546045350999989, 49.852556464000045 ], [ -119.546082992, 49.852542307000093 ], [ -119.548759197999956, 49.852641784000113 ], [ -119.549282697999956, 49.852671784000052 ], [ -119.54942677299999, 49.851424292000054 ], [ -119.549541102999953, 49.850398096000106 ], [ -119.549587426999906, 49.849901346000074 ], [ -119.549676877999985, 49.84894240200007 ], [ -119.550851042000019, 49.848995500000029 ], [ -119.55325980799995, 49.849104403000084 ], [ -119.554536017999951, 49.849161704000068 ], [ -119.55563199, 49.849210212000138 ], [ -119.556699302999959, 49.849264200000057 ], [ -119.557863079999919, 49.848448065000092 ], [ -119.559401095999974, 49.847369392000118 ], [ -119.560459613999981, 49.846673392000106 ], [ -119.560883489, 49.846473102000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207667334", "BldgCostT": "142483334", "sL_LossRatio": "1", "sL_AssetLoss": "19108.2", "sL_BldgLoss": "19108.2", "sL_StrLoss": "19108.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7FEC55CE7E45DC05C1DDF62EEEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.565773736999986, 49.846089211000027 ], [ -119.565841572999915, 49.845370768000066 ], [ -119.565821403999962, 49.84537291400008 ], [ -119.566184243999913, 49.843823313000101 ], [ -119.56618823499997, 49.843720673000071 ], [ -119.565695981999909, 49.843816401000055 ], [ -119.566158799999954, 49.843561865000055 ], [ -119.566584204999984, 49.843327906000056 ], [ -119.567679496, 49.842636708000093 ], [ -119.568307721999972, 49.842342955000028 ], [ -119.568653694999938, 49.84218120000002 ], [ -119.56938155099999, 49.841996417000061 ], [ -119.571775421999973, 49.841388587000075 ], [ -119.571963467000018, 49.841340859000091 ], [ -119.571987875999966, 49.841334650000086 ], [ -119.572146393999944, 49.841294387000033 ], [ -119.572347156999982, 49.841221030000035 ], [ -119.572595211999925, 49.841130396000089 ], [ -119.572876928999989, 49.840967012000078 ], [ -119.573020701999923, 49.84088360500008 ], [ -119.573269996999912, 49.840678899000075 ], [ -119.573475698, 49.840447209000061 ], [ -119.573719710999967, 49.840081395000077 ], [ -119.57464848599993, 49.840275199000068 ], [ -119.575156463999974, 49.840348601000109 ], [ -119.575186102999965, 49.840352896000148 ], [ -119.576787688999929, 49.840346996000115 ], [ -119.577344602999958, 49.840327404000114 ], [ -119.577844015, 49.84022938600009 ], [ -119.578240312000034, 49.840079523000092 ], [ -119.578482308999966, 49.839987991000044 ], [ -119.579056059, 49.839774295000069 ], [ -119.579644298999938, 49.839555207000082 ], [ -119.580052601999938, 49.839479915000055 ], [ -119.580228880999954, 49.83947379800005 ], [ -119.580308184999978, 49.839471069000098 ], [ -119.581609300999929, 49.839426096000111 ], [ -119.581887398999953, 49.839393696000052 ], [ -119.582211925999957, 49.83930899700006 ], [ -119.582492309999935, 49.839180993000085 ], [ -119.583245339999976, 49.83868220600008 ], [ -119.584534287999972, 49.837828412000093 ], [ -119.5851954399999, 49.837391066000144 ], [ -119.585587174999944, 49.837131926000126 ], [ -119.585780379999946, 49.837004095000033 ], [ -119.586431408999914, 49.836571886000058 ], [ -119.586704612999966, 49.836782988000024 ], [ -119.586811698999924, 49.836964500000065 ], [ -119.586849295999968, 49.837143688000033 ], [ -119.586820502999956, 49.837308989000107 ], [ -119.586699877999976, 49.837512294000078 ], [ -119.586522515999917, 49.837692408000052 ], [ -119.58568651, 49.838547104000071 ], [ -119.585447201999955, 49.838874270000098 ], [ -119.585268613999929, 49.839118506000105 ], [ -119.585149247999979, 49.839294763000069 ], [ -119.584493458999987, 49.840263219000057 ], [ -119.583972608999943, 49.841032388000023 ], [ -119.58402386099999, 49.841238678000053 ], [ -119.584088513999944, 49.841498808000097 ], [ -119.584119710999985, 49.841723701000014 ], [ -119.584096022999972, 49.841861679000054 ], [ -119.584093043999971, 49.841879093000045 ], [ -119.58408900499991, 49.841902480000066 ], [ -119.583753549999955, 49.842541882000027 ], [ -119.583810572999951, 49.842557345000081 ], [ -119.584030509999963, 49.842616905000085 ], [ -119.584312508999957, 49.842735494000117 ], [ -119.584635810999885, 49.842927805000031 ], [ -119.586591483999939, 49.844248143000073 ], [ -119.587475033999937, 49.844844575000103 ], [ -119.587643121999974, 49.84490957000002 ], [ -119.587711868999946, 49.844935261000046 ], [ -119.58800120399999, 49.845043480000065 ], [ -119.58841928399994, 49.845127625000018 ], [ -119.588786581999898, 49.845146014000171 ], [ -119.588602203999969, 49.846523103000045 ], [ -119.58804330199996, 49.846491612000094 ], [ -119.588135062999967, 49.84583804100005 ], [ -119.587918454999979, 49.84584288000007 ], [ -119.587904055999942, 49.84557332700016 ], [ -119.58707037299996, 49.84559194800002 ], [ -119.587055978999942, 49.845322394000064 ], [ -119.586639138999914, 49.845331702000053 ], [ -119.58662474599997, 49.845062149000107 ], [ -119.586207908999938, 49.845071456 ], [ -119.586179127999969, 49.844532348000079 ], [ -119.58534546099996, 49.844550956000027 ], [ -119.585331075999974, 49.844281402000043 ], [ -119.584914246999944, 49.844290703000048 ], [ -119.584899862999976, 49.844021150000074 ], [ -119.584066204999885, 49.844039749000054 ], [ -119.58402307199999, 49.84323108600006 ], [ -119.583606250999964, 49.843240383000136 ], [ -119.583591874999954, 49.842970828000077 ], [ -119.581507770999963, 49.843017290000027 ], [ -119.581536497999934, 49.8435563990001 ], [ -119.582370149999974, 49.843537818000122 ], [ -119.58242762399999, 49.844616037000087 ], [ -119.582844459999976, 49.844606744000018 ], [ -119.582858830999925, 49.844876298000074 ], [ -119.58327566699991, 49.844867004000072 ], [ -119.583347539999963, 49.846214775000057 ], [ -119.582930690999959, 49.846224070000069 ], [ -119.582933276999967, 49.846272563000063 ], [ -119.582279289999974, 49.846244539000054 ], [ -119.58099568599998, 49.846171760000061 ], [ -119.580019233999963, 49.846188794000092 ], [ -119.579968196000024, 49.846227809000041 ], [ -119.57938027199999, 49.846220997000046 ], [ -119.577984924999967, 49.84636481900008 ], [ -119.574633815999917, 49.846710157000096 ], [ -119.567766488, 49.846407896000095 ], [ -119.56723802399992, 49.846394888000106 ], [ -119.565890054999926, 49.846361748000099 ], [ -119.565773736999986, 49.846089211000027 ] ], [ [ -119.572380589999923, 49.844029944000098 ], [ -119.572366276, 49.843760387000131 ], [ -119.571949445999905, 49.843769643000051 ], [ -119.57196375700002, 49.844039199000029 ], [ -119.572380589999923, 49.844029944000098 ] ], [ [ -119.575614930999905, 49.842068958000077 ], [ -119.575602968999988, 49.841843921000113 ], [ -119.575571177999933, 49.842069931000012 ], [ -119.575614930999905, 49.842068958000077 ] ], [ [ -119.575988750999926, 49.841251022000051 ], [ -119.575974419999909, 49.84098146500002 ], [ -119.575723495, 49.84098704500007 ], [ -119.57568541699996, 49.841257766000105 ], [ -119.575988750999926, 49.841251022000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "181767667", "BldgCostT": "121176667", "sL_LossRatio": "1", "sL_AssetLoss": "17902.3", "sL_BldgLoss": "17902.3", "sL_StrLoss": "17902.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000011F1DE6A80E35DC0BF9DA7AE3AEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545133976999978, 49.850732595000125 ], [ -119.545683161999946, 49.850353097000138 ], [ -119.544494922999917, 49.85063907200005 ], [ -119.545248248999883, 49.848970581000117 ], [ -119.544108332999926, 49.849091958000066 ], [ -119.543834203999907, 49.850122794000121 ], [ -119.541098814999927, 49.852319313000152 ], [ -119.541068298999917, 49.85173770299999 ], [ -119.541485208, 49.851728558000083 ], [ -119.541436692999966, 49.850803951000096 ], [ -119.541693702999936, 49.850469985000117 ], [ -119.542151924999985, 49.850159205000075 ], [ -119.54227119899997, 49.850078311000061 ], [ -119.542476764999947, 49.849817689000119 ], [ -119.542636876999978, 49.849814176000031 ], [ -119.542627059, 49.84962713900012 ], [ -119.54334318299999, 49.848719179000085 ], [ -119.543414042999956, 49.84871762300007 ], [ -119.54340969799992, 49.848634845000035 ], [ -119.54377637599994, 49.848169921000107 ], [ -119.54380261299994, 49.848169345000052 ], [ -119.543801002999942, 49.848138695000038 ], [ -119.543992967999941, 49.847895292000096 ], [ -119.54420533199999, 49.847890629000112 ], [ -119.544196799999952, 49.847728151000098 ], [ -119.545133957999894, 49.847060611000124 ], [ -119.545413463000017, 49.847054470000067 ], [ -119.545403689999972, 49.846868474000068 ], [ -119.545524877999981, 49.846782148000067 ], [ -119.545816163999973, 49.846775747000137 ], [ -119.545805977999919, 49.846581912 ], [ -119.545915795, 49.846503685000123 ], [ -119.546022072999932, 49.846501349000114 ], [ -119.54603360199998, 49.846419765000071 ], [ -119.546351792999985, 49.846193102000022 ], [ -119.546859415999933, 49.845543594000112 ], [ -119.547776784999925, 49.845000998000089 ], [ -119.54849721699999, 49.844410004000103 ], [ -119.550055545999925, 49.8436606980001 ], [ -119.550606229999957, 49.84339589399999 ], [ -119.552320976999923, 49.843497220000096 ], [ -119.552315552999929, 49.843394255000121 ], [ -119.552732386999978, 49.843385071000043 ], [ -119.552718182999939, 49.843115510000096 ], [ -119.552926099999965, 49.843110928000101 ], [ -119.553073817999973, 49.842064486000034 ], [ -119.55328156799996, 49.842011458000123 ], [ -119.553939587999977, 49.84184349000013 ], [ -119.554804095999941, 49.841346494000049 ], [ -119.554890195999917, 49.841128594000082 ], [ -119.555241211999956, 49.840932103000064 ], [ -119.555932789999972, 49.840836611000107 ], [ -119.556389888999959, 49.840566005000085 ], [ -119.556750413999964, 49.840510402000049 ], [ -119.556805601999955, 49.840501896000049 ], [ -119.557231786999949, 49.840178597000012 ], [ -119.557811403999949, 49.840057592000072 ], [ -119.558393612999936, 49.840044796000051 ], [ -119.558938717999979, 49.839816902000045 ], [ -119.559783802999959, 49.839744286000098 ], [ -119.562138695, 49.839138819000063 ], [ -119.563822370999958, 49.838705857000072 ], [ -119.564187402999977, 49.838611991000043 ], [ -119.56599941499999, 49.838409799000054 ], [ -119.56605859499993, 49.838412704000071 ], [ -119.566415757999962, 49.838430201000101 ], [ -119.5664849, 49.838433586000107 ], [ -119.566547761999942, 49.838436665000103 ], [ -119.567228070999974, 49.83846998300006 ], [ -119.56722897899999, 49.838476860000107 ], [ -119.567325048999933, 49.838474731000083 ], [ -119.567394095999944, 49.838478113000036 ], [ -119.567704247999956, 49.838466328000031 ], [ -119.567944039999958, 49.838461012000089 ], [ -119.56598164, 49.839052284000097 ], [ -119.56613977799995, 49.842936098000024 ], [ -119.565695981999909, 49.843816401000055 ], [ -119.563958908999922, 49.844733585000064 ], [ -119.563633091999975, 49.84490561800007 ], [ -119.562898086999922, 49.84539254100013 ], [ -119.562221301999926, 49.845840908000049 ], [ -119.561920140999945, 49.845983203000081 ], [ -119.560883489, 49.846473102000061 ], [ -119.560459613999981, 49.846673392000106 ], [ -119.559401095999974, 49.847369392000118 ], [ -119.557863079999919, 49.848448065000092 ], [ -119.556699302999959, 49.849264200000057 ], [ -119.55563199, 49.849210212000138 ], [ -119.554536017999951, 49.849161704000068 ], [ -119.55325980799995, 49.849104403000084 ], [ -119.550851042000019, 49.848995500000029 ], [ -119.549676877999985, 49.84894240200007 ], [ -119.549587426999906, 49.849901346000074 ], [ -119.549541102999953, 49.850398096000106 ], [ -119.54942677299999, 49.851424292000054 ], [ -119.549282697999956, 49.852671784000052 ], [ -119.548759197999956, 49.852641784000113 ], [ -119.546082992, 49.852542307000093 ], [ -119.546045350999989, 49.852556464000045 ], [ -119.545950299999973, 49.852592196000046 ], [ -119.545944751999983, 49.852600683000105 ], [ -119.54587284299997, 49.852710228000021 ], [ -119.545861295999913, 49.852727793000028 ], [ -119.54584528599996, 49.852860494000026 ], [ -119.545833730999917, 49.853000919000038 ], [ -119.545751390999953, 49.853999 ], [ -119.544984102999962, 49.85401508200006 ], [ -119.544213407999919, 49.854084190000087 ], [ -119.544018081999951, 49.854063604000011 ], [ -119.54378120299998, 49.853980882000087 ], [ -119.543553792, 49.853841997000089 ], [ -119.543358805999944, 49.853640793000103 ], [ -119.543293798999954, 49.85347890600007 ], [ -119.543393110999929, 49.853208096000046 ], [ -119.543573194999965, 49.852717119 ], [ -119.543898194999954, 49.852196311000064 ], [ -119.54418267599999, 49.851859359000088 ], [ -119.54419261299999, 49.851839802000072 ], [ -119.544271469999913, 49.851618136000141 ], [ -119.544399126999963, 49.851399422000057 ], [ -119.544502736999974, 49.851253211000042 ], [ -119.54460682699991, 49.85111598000006 ], [ -119.544753546999971, 49.850995802000064 ], [ -119.545004055999954, 49.85081635000008 ], [ -119.545133976999978, 49.850732595000125 ] ], [ [ -119.558322023999978, 49.846500253000109 ], [ -119.558242792999977, 49.84499993700004 ], [ -119.558207118999974, 49.845252851000076 ], [ -119.556122292999973, 49.845129767000039 ], [ -119.555959633999962, 49.846282525000042 ], [ -119.557057217999983, 49.846258304000123 ], [ -119.55707144899999, 49.846527863000063 ], [ -119.558322023999978, 49.846500253000109 ] ], [ [ -119.558582275999939, 49.843525893000049 ], [ -119.558546431999901, 49.842847181000067 ], [ -119.558450293999911, 49.843528807000062 ], [ -119.558582275999939, 49.843525893000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254612811", "BldgCostT": "168023190", "sL_LossRatio": "1", "sL_AssetLoss": "21260.4", "sL_BldgLoss": "21260.4", "sL_StrLoss": "21260.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000519E50BA7AE25DC0CE6606D864EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.529180283999978, 49.873285794000061 ], [ -119.529678797999935, 49.872942591 ], [ -119.529981801999938, 49.872899894000085 ], [ -119.530734752999933, 49.872619309000051 ], [ -119.531006092999959, 49.872518194000136 ], [ -119.531596504999968, 49.872109384000019 ], [ -119.531792324999955, 49.871871605000067 ], [ -119.531840423999967, 49.871647861000042 ], [ -119.531904988999884, 49.871347503000081 ], [ -119.531733721999956, 49.870747901000072 ], [ -119.532257576999939, 49.870367593000019 ], [ -119.53263490099999, 49.868820897000056 ], [ -119.532541994, 49.868363703000078 ], [ -119.532172700999965, 49.867949301000081 ], [ -119.532149403999981, 49.867761294000047 ], [ -119.532302502999983, 49.867496412000094 ], [ -119.53221458799996, 49.86714750000003 ], [ -119.533144596999989, 49.866831307000027 ], [ -119.533498591999916, 49.86643680300007 ], [ -119.53341051299995, 49.865817287000034 ], [ -119.533639194, 49.86538999800004 ], [ -119.53363842, 49.865092296000057 ], [ -119.533243511999913, 49.863941595000064 ], [ -119.533266584, 49.863581292000084 ], [ -119.533735991999947, 49.863003009000124 ], [ -119.534302598999972, 49.862649807000025 ], [ -119.534822288999962, 49.862188411 ], [ -119.534795402, 49.861675702000099 ], [ -119.534594100999925, 49.86132098500007 ], [ -119.53390211, 49.860822583000129 ], [ -119.532902388999943, 49.86034969300006 ], [ -119.532886514999944, 49.860061990000098 ], [ -119.534235598999913, 49.858720394000052 ], [ -119.534509491999984, 49.858615015000112 ], [ -119.535600404999983, 49.858447001000087 ], [ -119.536273784999963, 49.85805390800008 ], [ -119.537576191999932, 49.855795106000066 ], [ -119.538072399999947, 49.855181297000087 ], [ -119.538324620999944, 49.854943446000071 ], [ -119.538999718999932, 49.854306794000138 ], [ -119.53951383899999, 49.853416813000059 ], [ -119.540324105999957, 49.853464769000034 ], [ -119.540305172999936, 49.853103803000053 ], [ -119.540722093999975, 49.85309466100005 ], [ -119.540693810999983, 49.852555534000075 ], [ -119.541110726999946, 49.852546391000061 ], [ -119.541098814999927, 49.852319313000152 ], [ -119.543834203999907, 49.850122794000121 ], [ -119.544108332999926, 49.849091958000066 ], [ -119.545248248999883, 49.848970581000117 ], [ -119.544494922999917, 49.85063907200005 ], [ -119.545683161999946, 49.850353097000138 ], [ -119.545133976999978, 49.850732595000125 ], [ -119.545004055999954, 49.85081635000008 ], [ -119.544753546999971, 49.850995802000064 ], [ -119.54460682699991, 49.85111598000006 ], [ -119.544502736999974, 49.851253211000042 ], [ -119.544399126999963, 49.851399422000057 ], [ -119.544271469999913, 49.851618136000141 ], [ -119.54419261299999, 49.851839802000072 ], [ -119.54418267599999, 49.851859359000088 ], [ -119.543898194999954, 49.852196311000064 ], [ -119.543573194999965, 49.852717119 ], [ -119.543393110999929, 49.853208096000046 ], [ -119.543293798999954, 49.85347890600007 ], [ -119.543358805999944, 49.853640793000103 ], [ -119.543553792, 49.853841997000089 ], [ -119.54378120299998, 49.853980882000087 ], [ -119.544018081999951, 49.854063604000011 ], [ -119.544213407999919, 49.854084190000087 ], [ -119.544984102999962, 49.85401508200006 ], [ -119.545751390999953, 49.853999 ], [ -119.545712393999978, 49.854442809000041 ], [ -119.545531883999942, 49.856243495000058 ], [ -119.545339881999936, 49.858040764000052 ], [ -119.545134493999981, 49.859962816000056 ], [ -119.545000293999934, 49.861257797000064 ], [ -119.544946504999956, 49.861766593 ], [ -119.544830005999984, 49.862856893000043 ], [ -119.54379742199994, 49.862812102000092 ], [ -119.543508592999942, 49.862850095000049 ], [ -119.543354182999963, 49.862904990000075 ], [ -119.543175371999922, 49.863033492000085 ], [ -119.543073071999984, 49.863202124000068 ], [ -119.543047892999937, 49.863243593000107 ], [ -119.542853872999927, 49.863935509000115 ], [ -119.542822517999923, 49.864047383000091 ], [ -119.542859302999901, 49.864300606 ], [ -119.543050607999959, 49.864507884000048 ], [ -119.544108503999965, 49.865075210000121 ], [ -119.543817027999978, 49.865239157000062 ], [ -119.539241101999906, 49.867813082000048 ], [ -119.53904638299997, 49.86800480599999 ], [ -119.538998222999936, 49.868276411000146 ], [ -119.53899563399996, 49.868529695000056 ], [ -119.538989479999913, 49.869140883000028 ], [ -119.538981790999941, 49.869901711000118 ], [ -119.538982211999908, 49.870608692000062 ], [ -119.538251303999957, 49.870592584000079 ], [ -119.537979012000022, 49.870621598000071 ], [ -119.537754309999954, 49.870699492000057 ], [ -119.537245696999918, 49.870957497000099 ], [ -119.536928917999916, 49.871024509000101 ], [ -119.536938521999915, 49.871410598000111 ], [ -119.536864802999972, 49.871734011000108 ], [ -119.536618307, 49.872310895000034 ], [ -119.53662600199999, 49.872552395000056 ], [ -119.536773816999983, 49.872642508000084 ], [ -119.536861473999949, 49.872657332000102 ], [ -119.536937512999899, 49.872670189000118 ], [ -119.537348002, 49.87268101100004 ], [ -119.537338775999928, 49.873666756000034 ], [ -119.5359806109999, 49.873726890000093 ], [ -119.534282057, 49.873600458000105 ], [ -119.534275554999951, 49.873476287000123 ], [ -119.53344135699993, 49.87349452900007 ], [ -119.533444866999915, 49.873561575000089 ], [ -119.532629727999947, 49.873550324000121 ], [ -119.531890332999964, 49.873565861000039 ], [ -119.530261194999966, 49.873301525000066 ], [ -119.528973055999955, 49.873550773000076 ], [ -119.529180283999978, 49.873285794000061 ] ], [ [ -119.536856135999969, 49.866942882000032 ], [ -119.536813758, 49.86613419300005 ], [ -119.536539970999982, 49.866140186000081 ], [ -119.53642497, 49.866952322000074 ], [ -119.536856135999969, 49.866942882000032 ] ], [ [ -119.54167818399999, 49.855405757000078 ], [ -119.541640816, 49.854693747000049 ], [ -119.541197863999969, 49.854703464000181 ], [ -119.541111442000016, 49.855314377000099 ], [ -119.5414935599999, 49.855336987000058 ], [ -119.541478726999955, 49.855441851000123 ], [ -119.541595823999955, 49.855442561000061 ], [ -119.54167818399999, 49.855405757000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120532417", "BldgCostT": "81651667", "sL_LossRatio": "0.999977246949523", "sL_AssetLoss": "13824.080438", "sL_BldgLoss": "13823.765898", "sL_StrLoss": "13821.252298", "sL_NStrLoss": "2.5136", "sL_ContLoss": "0.31454", "geom_point": "0101000020E61000005AD9887108E35DC087A19B1E90EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.539241101999906, 49.867813082000048 ], [ -119.543817027999978, 49.865239157000062 ], [ -119.544108503999965, 49.865075210000121 ], [ -119.543050607999959, 49.864507884000048 ], [ -119.542859302999901, 49.864300606 ], [ -119.542822517999923, 49.864047383000091 ], [ -119.542853872999927, 49.863935509000115 ], [ -119.543047892999937, 49.863243593000107 ], [ -119.543073071999984, 49.863202124000068 ], [ -119.543175371999922, 49.863033492000085 ], [ -119.543354182999963, 49.862904990000075 ], [ -119.543508592999942, 49.862850095000049 ], [ -119.54379742199994, 49.862812102000092 ], [ -119.544830005999984, 49.862856893000043 ], [ -119.544946504999956, 49.861766593 ], [ -119.545000293999934, 49.861257797000064 ], [ -119.545134493999981, 49.859962816000056 ], [ -119.546765357999959, 49.860032134000079 ], [ -119.54852991199999, 49.86011015600009 ], [ -119.549048214999942, 49.860133107000109 ], [ -119.550165093999937, 49.860182470000048 ], [ -119.55190416899994, 49.860258857000098 ], [ -119.551988385999948, 49.860262559000013 ], [ -119.552905788, 49.860302822000094 ], [ -119.552737015999952, 49.861498262000062 ], [ -119.552729320999916, 49.861552899000031 ], [ -119.555313797999958, 49.861642298000014 ], [ -119.555297611999919, 49.86180234800004 ], [ -119.555243391999937, 49.862338916000049 ], [ -119.55503171, 49.864412204000125 ], [ -119.554226105999959, 49.864381782000059 ], [ -119.553393187999973, 49.864346205000111 ], [ -119.552320293, 49.86429999300001 ], [ -119.550509516, 49.864224051000058 ], [ -119.54994789399997, 49.864200498000024 ], [ -119.547692305999973, 49.864104213000104 ], [ -119.54761109399999, 49.864994202000013 ], [ -119.547580699999983, 49.865308520000035 ], [ -119.547487708999938, 49.8655949810001 ], [ -119.547474294999958, 49.865636300000084 ], [ -119.54723540199997, 49.865824388000043 ], [ -119.545535689999937, 49.866784001000077 ], [ -119.545329937999952, 49.866899826000065 ], [ -119.544501116999967, 49.867366425000064 ], [ -119.542723996999953, 49.868366804000047 ], [ -119.542508309999931, 49.868539205000054 ], [ -119.541505707999931, 49.867798089000118 ], [ -119.540935718999933, 49.868124700000074 ], [ -119.540710616999974, 49.868383191000071 ], [ -119.540648389999902, 49.868654907000085 ], [ -119.540659479999974, 49.869908896000084 ], [ -119.538981790999941, 49.869901711000118 ], [ -119.538989479999913, 49.869140883000028 ], [ -119.53899563399996, 49.868529695000056 ], [ -119.538998222999936, 49.868276411000146 ], [ -119.53904638299997, 49.86800480599999 ], [ -119.539241101999906, 49.867813082000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119613886", "BldgCostT": "80182079", "sL_LossRatio": "0.999968571617343", "sL_AssetLoss": "15186.9094", "sL_BldgLoss": "15186.4321", "sL_StrLoss": "15183.5201", "sL_NStrLoss": "2.912", "sL_ContLoss": "0.4773", "geom_point": "0101000020E610000021D63D0D33E35DC00F34C08120EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.543109095999981, 49.87406289800002 ], [ -119.542905853999983, 49.873094983000037 ], [ -119.542892391999914, 49.873098829000114 ], [ -119.542610889999963, 49.87317896100005 ], [ -119.541891182999947, 49.873245900000079 ], [ -119.539930104999954, 49.873463987000086 ], [ -119.539620752999951, 49.87333412300007 ], [ -119.537338775999928, 49.873666756000034 ], [ -119.537348002, 49.87268101100004 ], [ -119.536937512999899, 49.872670189000118 ], [ -119.536861473999949, 49.872657332000102 ], [ -119.536773816999983, 49.872642508000084 ], [ -119.53662600199999, 49.872552395000056 ], [ -119.536618307, 49.872310895000034 ], [ -119.536864802999972, 49.871734011000108 ], [ -119.536938521999915, 49.871410598000111 ], [ -119.536928917999916, 49.871024509000101 ], [ -119.537245696999918, 49.870957497000099 ], [ -119.537754309999954, 49.870699492000057 ], [ -119.537979012000022, 49.870621598000071 ], [ -119.538251303999957, 49.870592584000079 ], [ -119.538982211999908, 49.870608692000062 ], [ -119.538981790999941, 49.869901711000118 ], [ -119.540659479999974, 49.869908896000084 ], [ -119.540648389999902, 49.868654907000085 ], [ -119.540710616999974, 49.868383191000071 ], [ -119.540935718999933, 49.868124700000074 ], [ -119.541505707999931, 49.867798089000118 ], [ -119.542508309999931, 49.868539205000054 ], [ -119.542723996999953, 49.868366804000047 ], [ -119.544501116999967, 49.867366425000064 ], [ -119.545329937999952, 49.866899826000065 ], [ -119.545535689999937, 49.866784001000077 ], [ -119.54723540199997, 49.865824388000043 ], [ -119.547474294999958, 49.865636300000084 ], [ -119.547487708999938, 49.8655949810001 ], [ -119.547580699999983, 49.865308520000035 ], [ -119.54761109399999, 49.864994202000013 ], [ -119.547692305999973, 49.864104213000104 ], [ -119.54994789399997, 49.864200498000024 ], [ -119.550509516, 49.864224051000058 ], [ -119.552320293, 49.86429999300001 ], [ -119.553393187999973, 49.864346205000111 ], [ -119.554226105999959, 49.864381782000059 ], [ -119.55503171, 49.864412204000125 ], [ -119.555243391999937, 49.862338916000049 ], [ -119.558233971999982, 49.862467662000022 ], [ -119.55864108699997, 49.862485207000049 ], [ -119.561048002999911, 49.862527900000053 ], [ -119.562310699999898, 49.862574289000058 ], [ -119.562866218999943, 49.862644058000086 ], [ -119.563138087999974, 49.862678211000052 ], [ -119.563583864999927, 49.862834501000052 ], [ -119.563950396999957, 49.863027670000115 ], [ -119.564311471999986, 49.863318951000025 ], [ -119.564566075999892, 49.863573239000097 ], [ -119.564585715999968, 49.863595699000086 ], [ -119.564646645999957, 49.863665574000066 ], [ -119.564072162999977, 49.863907102000042 ], [ -119.563283746999957, 49.864239847000093 ], [ -119.562811583999959, 49.864475521000024 ], [ -119.562612298999937, 49.864574987000054 ], [ -119.56199068899997, 49.864942854000113 ], [ -119.56133103, 49.86537590700005 ], [ -119.560819721999934, 49.865711561000118 ], [ -119.557560346999978, 49.867851041000094 ], [ -119.555528930999984, 49.869184335000092 ], [ -119.55389319699999, 49.870257822000035 ], [ -119.552919068999984, 49.870897048000124 ], [ -119.552461621999939, 49.871142197000019 ], [ -119.552460579999945, 49.871142766000041 ], [ -119.552378985999894, 49.871186502000072 ], [ -119.551887055999927, 49.871450111000122 ], [ -119.55133534, 49.871697434000112 ], [ -119.550921103999883, 49.871838663000105 ], [ -119.550308176999948, 49.872047614000103 ], [ -119.546906136999922, 49.873090291999986 ], [ -119.546580945999963, 49.873189962000062 ], [ -119.544268706999958, 49.87386595600006 ], [ -119.544178029999955, 49.873746801000074 ], [ -119.543418820999989, 49.873950214000054 ], [ -119.543109095999981, 49.87406289800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "320563085", "BldgCostT": "212883335", "sL_LossRatio": "0.996434567973851", "sL_AssetLoss": "29506.718745", "sL_BldgLoss": "29401.514545", "sL_StrLoss": "29361.940045", "sL_NStrLoss": "39.5745", "sL_ContLoss": "105.2042", "geom_point": "0101000020E61000006A4351E2EBE35DC0B5971BA9CAEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.555401498999942, 49.882445919000105 ], [ -119.555101085, 49.882396519000075 ], [ -119.554451840999945, 49.882364540000076 ], [ -119.553653300999926, 49.882331030000088 ], [ -119.553221017999988, 49.882355104000098 ], [ -119.552651914999927, 49.882447914000039 ], [ -119.551382498999914, 49.882859716000034 ], [ -119.551066611999957, 49.882890702000068 ], [ -119.550785884, 49.882850610000084 ], [ -119.55057631399994, 49.882722715000085 ], [ -119.550483991999968, 49.882584518000016 ], [ -119.55045398099999, 49.882431010000069 ], [ -119.550507503999967, 49.88226980000006 ], [ -119.551886557, 49.880419900000028 ], [ -119.552117855999953, 49.879969444000018 ], [ -119.552207775999989, 49.879342694000115 ], [ -119.552361511999962, 49.879035743000138 ], [ -119.55259244899996, 49.878745980000112 ], [ -119.552878333999971, 49.878541633000061 ], [ -119.554134723999965, 49.878151708000054 ], [ -119.55447562499999, 49.877963248000057 ], [ -119.556517478999965, 49.875997380000101 ], [ -119.556561775999938, 49.875954733000057 ], [ -119.557015313999898, 49.875518059000058 ], [ -119.557281702999916, 49.875233991000087 ], [ -119.557389383999947, 49.874965905000131 ], [ -119.557366913999928, 49.874680092000126 ], [ -119.557215680999903, 49.874464392000043 ], [ -119.556954400999942, 49.87426750300007 ], [ -119.556622308999934, 49.874116995000051 ], [ -119.556600409999973, 49.874113942000079 ], [ -119.556186705999963, 49.874056097000121 ], [ -119.553950389999954, 49.873918689000092 ], [ -119.552151611999989, 49.873808885000045 ], [ -119.551630992, 49.87383590600011 ], [ -119.551393529999956, 49.873893824000021 ], [ -119.55109141299999, 49.873967503000067 ], [ -119.550729585999974, 49.874125802000087 ], [ -119.550250498999958, 49.874482197000127 ], [ -119.549696882, 49.87500929100004 ], [ -119.549530510999972, 49.875277593000078 ], [ -119.549458680999976, 49.875557791000048 ], [ -119.54952691499993, 49.876006200000106 ], [ -119.549545598999941, 49.876128996 ], [ -119.549448501999976, 49.876321999000055 ], [ -119.549269595999945, 49.876431493000048 ], [ -119.549078203999926, 49.876470696000084 ], [ -119.548833812999959, 49.876450902000087 ], [ -119.548750286999933, 49.876418616000095 ], [ -119.548723723999927, 49.876408349 ], [ -119.54860200499999, 49.876361303000067 ], [ -119.54845001399994, 49.876231408000066 ], [ -119.548354219999979, 49.87603969200007 ], [ -119.548436119999977, 49.874627889000102 ], [ -119.54847090799997, 49.874028505000062 ], [ -119.548380505999972, 49.873798309000051 ], [ -119.548227486999949, 49.873625894000014 ], [ -119.548025200999987, 49.873505602000122 ], [ -119.547726299999979, 49.87341661100011 ], [ -119.547472204999906, 49.873406103000057 ], [ -119.546903711999931, 49.873376999000115 ], [ -119.546890932999972, 49.873377513000023 ], [ -119.546922116999966, 49.8732358130001 ], [ -119.551145251999912, 49.87324630500008 ], [ -119.553622817999951, 49.871928371000081 ], [ -119.552378985999894, 49.871186502000072 ], [ -119.552460579999945, 49.871142766000041 ], [ -119.552461621999939, 49.871142197000019 ], [ -119.552919068999984, 49.870897048000124 ], [ -119.55389319699999, 49.870257822000035 ], [ -119.555528930999984, 49.869184335000092 ], [ -119.557560346999978, 49.867851041000094 ], [ -119.560819721999934, 49.865711561000118 ], [ -119.56133103, 49.86537590700005 ], [ -119.56199068899997, 49.864942854000113 ], [ -119.562612298999937, 49.864574987000054 ], [ -119.562811583999959, 49.864475521000024 ], [ -119.563283746999957, 49.864239847000093 ], [ -119.564072162999977, 49.863907102000042 ], [ -119.564646645999957, 49.863665574000066 ], [ -119.565000276999925, 49.864079188000069 ], [ -119.565708425999944, 49.864920024000085 ], [ -119.566024992999985, 49.865358604000086 ], [ -119.566079495999958, 49.865636294000112 ], [ -119.566029180000015, 49.865923110000011 ], [ -119.56701499799999, 49.865989184000107 ], [ -119.567152587999914, 49.865998399000041 ], [ -119.567881802999949, 49.866125295000067 ], [ -119.567836815999939, 49.866395306000072 ], [ -119.567884821999954, 49.866569697000024 ], [ -119.56800350099999, 49.866748299000058 ], [ -119.568994912999983, 49.867740287000075 ], [ -119.569429387999932, 49.868045800000047 ], [ -119.569853811999963, 49.868237222000104 ], [ -119.570578396999949, 49.86856400500006 ], [ -119.571351191999952, 49.869082518000077 ], [ -119.571485617999954, 49.869172702000135 ], [ -119.571564087999931, 49.869258169000027 ], [ -119.571653920999907, 49.869355997000063 ], [ -119.571653061999939, 49.869439330000048 ], [ -119.571224134, 49.869414077000037 ], [ -119.571238967999989, 49.869693315000085 ], [ -119.570821912999989, 49.869702570000079 ], [ -119.570836229999941, 49.869972125000146 ], [ -119.570002115999941, 49.869990630000068 ], [ -119.570016428999963, 49.870260186000074 ], [ -119.569182309999974, 49.870278685000059 ], [ -119.569196617999964, 49.870548241000151 ], [ -119.568779556999957, 49.870557489000049 ], [ -119.56883911099996, 49.871679553000092 ], [ -119.571953529999959, 49.871862929000066 ], [ -119.571932686999986, 49.873187298000047 ], [ -119.571845106999945, 49.873511695000033 ], [ -119.57165959699995, 49.873857385000058 ], [ -119.57064320299996, 49.875142882000013 ], [ -119.570624298, 49.875376605000071 ], [ -119.570682188999953, 49.875560598000057 ], [ -119.570845614999968, 49.875768796000024 ], [ -119.571521624999932, 49.876145395000023 ], [ -119.571950119999954, 49.876574206000029 ], [ -119.572049912999972, 49.876887109000094 ], [ -119.57204845299999, 49.877074682000078 ], [ -119.572047814999934, 49.877155523000098 ], [ -119.572046895999975, 49.877275193000088 ], [ -119.570746992999901, 49.877261895000096 ], [ -119.570582903999949, 49.877260839000037 ], [ -119.569470133, 49.877253702000068 ], [ -119.56945611399999, 49.877253597000099 ], [ -119.569255115999937, 49.877247892000106 ], [ -119.568056974999948, 49.877213935000086 ], [ -119.567507901999946, 49.877198391000093 ], [ -119.56679610899999, 49.877178186000023 ], [ -119.566521429999952, 49.877571845000098 ], [ -119.566466902999963, 49.87765000800011 ], [ -119.565906040999963, 49.878217376000038 ], [ -119.565896690999935, 49.87822680900009 ], [ -119.565446385999934, 49.87854793600011 ], [ -119.564766357999957, 49.878882549000075 ], [ -119.564636154999903, 49.878974140000047 ], [ -119.564028389, 49.87859883700002 ], [ -119.563923522, 49.878530590000061 ], [ -119.563647132999947, 49.878350634000086 ], [ -119.563633563999986, 49.8783365480001 ], [ -119.563425422999984, 49.878119958000134 ], [ -119.563341290999958, 49.87780531100001 ], [ -119.562957064999978, 49.877796206000035 ], [ -119.562656699999948, 49.877826358000085 ], [ -119.562338632999968, 49.877922289000011 ], [ -119.562085843999952, 49.878060876000063 ], [ -119.561338709999973, 49.878653380000038 ], [ -119.561096327999977, 49.878787185000135 ], [ -119.560829444999939, 49.878867154000091 ], [ -119.56046848699998, 49.878881088000107 ], [ -119.560008704999987, 49.878773619000121 ], [ -119.559473086999944, 49.879713059000039 ], [ -119.559396086999968, 49.879848082000073 ], [ -119.55850564699989, 49.881554493000031 ], [ -119.558316132999934, 49.881783592000026 ], [ -119.558311949999961, 49.881788658000097 ], [ -119.558002384999909, 49.881972656000102 ], [ -119.557718450000024, 49.882054325000098 ], [ -119.556764593999958, 49.88232942300008 ], [ -119.556959209999917, 49.882544066000058 ], [ -119.557250313999958, 49.883123762000118 ], [ -119.557179393999945, 49.883378727000085 ], [ -119.556789180999942, 49.883886634000071 ], [ -119.556640008999921, 49.88440288400006 ], [ -119.556638870999947, 49.884406865000116 ], [ -119.556634949999975, 49.884410829000075 ], [ -119.556557472999927, 49.884488743000098 ], [ -119.556453280999932, 49.884514199000165 ], [ -119.556252371999946, 49.884502347000158 ], [ -119.556277629999926, 49.883957561000031 ], [ -119.556357014999946, 49.883217294000104 ], [ -119.556275121999974, 49.882975909000052 ], [ -119.556071695999918, 49.882744498000065 ], [ -119.555769595999948, 49.882559710000095 ], [ -119.555401498999942, 49.882445919000105 ] ], [ [ -119.569871311999961, 49.875390998000071 ], [ -119.569869235999988, 49.875351906000027 ], [ -119.568140635999967, 49.87525011200006 ], [ -119.568420508999949, 49.873264181000117 ], [ -119.567671371999964, 49.873280785000084 ], [ -119.567699975999929, 49.87381989700004 ], [ -119.566865792999948, 49.87383838000008 ], [ -119.566880091999977, 49.874107937000126 ], [ -119.567297184999987, 49.874098695000072 ], [ -119.567354385999963, 49.875176921000048 ], [ -119.567771487999948, 49.875167678 ], [ -119.567800093999921, 49.875706791000013 ], [ -119.569051415999937, 49.875679053000155 ], [ -119.569037103999946, 49.875409497000071 ], [ -119.569871311999961, 49.875390998000071 ] ], [ [ -119.553476093999961, 49.87332461500008 ], [ -119.554164588, 49.873309440000128 ], [ -119.552790701999982, 49.873228334000018 ], [ -119.552783727999966, 49.873277699000056 ], [ -119.552332867999937, 49.873251080000117 ], [ -119.55231301399999, 49.873391610000105 ], [ -119.552226628999975, 49.873386510000088 ], [ -119.552239035999932, 49.873621743000072 ], [ -119.553490316999955, 49.873594174000054 ], [ -119.553476093999961, 49.87332461500008 ] ], [ [ -119.568482352999965, 49.872825319000128 ], [ -119.568611252999943, 49.871910586000091 ], [ -119.568434015999955, 49.871914514000146 ], [ -119.568482352999965, 49.872825319000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "46937558", "BldgCostT": "29463642", "sL_LossRatio": "0.985971421087464", "sL_AssetLoss": "4205.700404", "sL_BldgLoss": "4146.700404", "sL_StrLoss": "4125.300404", "sL_NStrLoss": "21.4", "sL_ContLoss": "59", "geom_point": "0101000020E6100000717D0EE279E55DC0CB9A059801F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.581691152999952, 49.885331464000046 ], [ -119.581792252999946, 49.884612734000065 ], [ -119.580825771999955, 49.884555942000098 ], [ -119.581329662999906, 49.88097396200002 ], [ -119.582558000999938, 49.881046141000112 ], [ -119.582650026999914, 49.88104409000006 ], [ -119.582722641999965, 49.880527748000077 ], [ -119.585667428999969, 49.880527677000032 ], [ -119.58632495699996, 49.880529435 ], [ -119.586807498999988, 49.880528492000046 ], [ -119.591886057999957, 49.880759339000051 ], [ -119.59182183199999, 49.881216681000055 ], [ -119.59036464399999, 49.881131178000068 ], [ -119.590002192999947, 49.883711416 ], [ -119.588953185999955, 49.883649853000065 ], [ -119.588898262999976, 49.88404074000011 ], [ -119.588779164999949, 49.884033750000064 ], [ -119.588659899999982, 49.884882544000106 ], [ -119.587801749999983, 49.884832173000078 ], [ -119.587801258999889, 49.884835664000072 ], [ -119.587352613999926, 49.884809327000077 ], [ -119.587233482, 49.885656975000103 ], [ -119.581691152999952, 49.885331464000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17546417", "BldgCostT": "11101667", "sL_LossRatio": "1", "sL_AssetLoss": "1687.4", "sL_BldgLoss": "1687.4", "sL_StrLoss": "1687.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002AEDECAF07E35DC06F7F703684F34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.544310766999914, 49.903239952 ], [ -119.544266019999952, 49.901699654000033 ], [ -119.544617546999945, 49.901141656000071 ], [ -119.545777992999973, 49.899978380000015 ], [ -119.546373179999989, 49.899381736000073 ], [ -119.546662377999937, 49.898838999000056 ], [ -119.546951077999921, 49.898931914000045 ], [ -119.547111964999928, 49.899144077000066 ], [ -119.5464848399999, 49.902415428000033 ], [ -119.546452858999942, 49.902603025000069 ], [ -119.552060598999944, 49.902466033000117 ], [ -119.551986429999914, 49.902990638000091 ], [ -119.551908552999947, 49.902986044000052 ], [ -119.551803361999973, 49.903730040000056 ], [ -119.551715952999984, 49.903724883000088 ], [ -119.55167607199995, 49.904006943000049 ], [ -119.549645483999925, 49.903887103000031 ], [ -119.549619687999893, 49.904069490000097 ], [ -119.544075395000036, 49.903742085000012 ], [ -119.544085861999974, 49.903668151000034 ], [ -119.54428527, 49.903419942000077 ], [ -119.544310766999914, 49.903239952 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "606933034", "BldgCostT": "396947948", "sL_LossRatio": "0.983989412753857", "sL_AssetLoss": "36755.830436", "sL_BldgLoss": "36167.348006", "sL_StrLoss": "35952.485106", "sL_NStrLoss": "214.8629", "sL_ContLoss": "588.48243", "geom_point": "0101000020E6100000056DC68AD6E45DC0A6C023A69BEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55678341, 49.889368799000074 ], [ -119.556527981, 49.888803001000035 ], [ -119.556291202999901, 49.888283393000108 ], [ -119.556195802, 49.888137786000065 ], [ -119.556034604999951, 49.888042509000073 ], [ -119.55578019099994, 49.88796429500006 ], [ -119.55512368699999, 49.88789399700002 ], [ -119.555219497999971, 49.887710010000035 ], [ -119.555565323999986, 49.887309598000037 ], [ -119.556060394999989, 49.886919909000042 ], [ -119.556314518999912, 49.886703696000097 ], [ -119.556407908999972, 49.886388685000043 ], [ -119.556213515999943, 49.885816468000023 ], [ -119.556211127999973, 49.885605963000046 ], [ -119.556302531999961, 49.885433473000042 ], [ -119.556508509, 49.885260576000121 ], [ -119.556359959999924, 49.885145272000088 ], [ -119.556225640999941, 49.884988369000048 ], [ -119.556252371999946, 49.884502347000158 ], [ -119.556453280999932, 49.884514199000165 ], [ -119.556557472999927, 49.884488743000098 ], [ -119.556634949999975, 49.884410829000075 ], [ -119.556638870999947, 49.884406865000116 ], [ -119.556640008999921, 49.88440288400006 ], [ -119.556789180999942, 49.883886634000071 ], [ -119.557179393999945, 49.883378727000085 ], [ -119.557250313999958, 49.883123762000118 ], [ -119.556959209999917, 49.882544066000058 ], [ -119.556764593999958, 49.88232942300008 ], [ -119.557718450000024, 49.882054325000098 ], [ -119.558002384999909, 49.881972656000102 ], [ -119.558311949999961, 49.881788658000097 ], [ -119.558316132999934, 49.881783592000026 ], [ -119.55850564699989, 49.881554493000031 ], [ -119.559396086999968, 49.879848082000073 ], [ -119.559473086999944, 49.879713059000039 ], [ -119.560008704999987, 49.878773619000121 ], [ -119.56046848699998, 49.878881088000107 ], [ -119.560829444999939, 49.878867154000091 ], [ -119.561096327999977, 49.878787185000135 ], [ -119.561338709999973, 49.878653380000038 ], [ -119.562085843999952, 49.878060876000063 ], [ -119.562338632999968, 49.877922289000011 ], [ -119.562656699999948, 49.877826358000085 ], [ -119.562957064999978, 49.877796206000035 ], [ -119.563341290999958, 49.87780531100001 ], [ -119.563425422999984, 49.878119958000134 ], [ -119.563633563999986, 49.8783365480001 ], [ -119.563647132999947, 49.878350634000086 ], [ -119.563923522, 49.878530590000061 ], [ -119.564028389, 49.87859883700002 ], [ -119.564636154999903, 49.878974140000047 ], [ -119.564766357999957, 49.878882549000075 ], [ -119.565446385999934, 49.87854793600011 ], [ -119.565896690999935, 49.87822680900009 ], [ -119.565906040999963, 49.878217376000038 ], [ -119.566466902999963, 49.87765000800011 ], [ -119.566521429999952, 49.877571845000098 ], [ -119.56679610899999, 49.877178186000023 ], [ -119.567507901999946, 49.877198391000093 ], [ -119.568056974999948, 49.877213935000086 ], [ -119.569255115999937, 49.877247892000106 ], [ -119.56945611399999, 49.877253597000099 ], [ -119.569470133, 49.877253702000068 ], [ -119.570582903999949, 49.877260839000037 ], [ -119.570746992999901, 49.877261895000096 ], [ -119.572046895999975, 49.877275193000088 ], [ -119.572047814999934, 49.877155523000098 ], [ -119.57204845299999, 49.877074682000078 ], [ -119.572049912999972, 49.876887109000094 ], [ -119.571950119999954, 49.876574206000029 ], [ -119.571521624999932, 49.876145395000023 ], [ -119.570845614999968, 49.875768796000024 ], [ -119.570682188999953, 49.875560598000057 ], [ -119.570624298, 49.875376605000071 ], [ -119.57064320299996, 49.875142882000013 ], [ -119.57165959699995, 49.873857385000058 ], [ -119.571845106999945, 49.873511695000033 ], [ -119.571932686999986, 49.873187298000047 ], [ -119.571953529999959, 49.871862929000066 ], [ -119.574185998999937, 49.871994322000042 ], [ -119.573834129999938, 49.874493419000103 ], [ -119.574416418999988, 49.874480481000063 ], [ -119.57440208, 49.874210927000021 ], [ -119.578572989999955, 49.874118181000078 ], [ -119.578558627999954, 49.873848626000026 ], [ -119.578975714999928, 49.873839344000018 ], [ -119.578961349999972, 49.873569790000062 ], [ -119.578544264999962, 49.873579072000027 ], [ -119.578529901999971, 49.873309518000013 ], [ -119.576444484999939, 49.873355909000104 ], [ -119.576430135999956, 49.873086355000119 ], [ -119.575595971999988, 49.873104900000065 ], [ -119.575581626999949, 49.872835346000087 ], [ -119.575164546999972, 49.872844616000101 ], [ -119.575150203999968, 49.872575062000053 ], [ -119.574316047999901, 49.872593597000055 ], [ -119.574244359999938, 49.871245822000112 ], [ -119.574661425999963, 49.871236556000099 ], [ -119.574647086999974, 49.870967000000114 ], [ -119.576315339999951, 49.870929918000073 ], [ -119.576257948999967, 49.869851700000027 ], [ -119.576675002999977, 49.869842426000034 ], [ -119.576635621999984, 49.869102659000113 ], [ -119.575030392999949, 49.869008217000037 ], [ -119.575174183999962, 49.867986678000115 ], [ -119.574906407999947, 49.867992628000081 ], [ -119.574891302999944, 49.867708680000121 ], [ -119.573263320999942, 49.867612871000055 ], [ -119.573395109999979, 49.866676838000075 ], [ -119.573292402999968, 49.866679118000064 ], [ -119.572893479999905, 49.869512348000072 ], [ -119.571653061999939, 49.869439330000048 ], [ -119.571653920999907, 49.869355997000063 ], [ -119.571564087999931, 49.869258169000027 ], [ -119.571485617999954, 49.869172702000135 ], [ -119.571351191999952, 49.869082518000077 ], [ -119.570578396999949, 49.86856400500006 ], [ -119.569853811999963, 49.868237222000104 ], [ -119.569429387999932, 49.868045800000047 ], [ -119.568994912999983, 49.867740287000075 ], [ -119.56800350099999, 49.866748299000058 ], [ -119.567884821999954, 49.866569697000024 ], [ -119.567836815999939, 49.866395306000072 ], [ -119.567881802999949, 49.866125295000067 ], [ -119.567152587999914, 49.865998399000041 ], [ -119.56701499799999, 49.865989184000107 ], [ -119.566029180000015, 49.865923110000011 ], [ -119.566079495999958, 49.865636294000112 ], [ -119.566024992999985, 49.865358604000086 ], [ -119.565708425999944, 49.864920024000085 ], [ -119.565000276999925, 49.864079188000069 ], [ -119.564646645999957, 49.863665574000066 ], [ -119.564585715999968, 49.863595699000086 ], [ -119.564566075999892, 49.863573239000097 ], [ -119.564311471999986, 49.863318951000025 ], [ -119.564595490999977, 49.863404308000042 ], [ -119.564793539999982, 49.863415976000113 ], [ -119.565138136999948, 49.86337851100005 ], [ -119.565693553999935, 49.863192734000044 ], [ -119.567384889999943, 49.86283368900007 ], [ -119.56820841299999, 49.862731689000071 ], [ -119.568703724999935, 49.862670307000023 ], [ -119.570077046999984, 49.862585966000083 ], [ -119.573321437999979, 49.862596589000127 ], [ -119.573370061999981, 49.862693988000068 ], [ -119.575936989999917, 49.86271874100008 ], [ -119.57903095799999, 49.862724779000054 ], [ -119.579971155999957, 49.862726599000034 ], [ -119.581430077, 49.862729419000104 ], [ -119.582257906999985, 49.862687485000102 ], [ -119.582782996999981, 49.862660870000084 ], [ -119.584194053999923, 49.86248644799999 ], [ -119.585598670999957, 49.862198806000045 ], [ -119.586281984999943, 49.862006849000089 ], [ -119.586529040999906, 49.861937425000058 ], [ -119.587275464999948, 49.861673386000049 ], [ -119.587714059999954, 49.861483357000061 ], [ -119.588751719, 49.861034144000058 ], [ -119.590169542999917, 49.860154889000022 ], [ -119.590328809999988, 49.860047008000151 ], [ -119.590462688999978, 49.859956322000066 ], [ -119.591041072999971, 49.859783769000096 ], [ -119.591057545999945, 49.860570483000046 ], [ -119.591096600999933, 49.862436721000108 ], [ -119.591103702999987, 49.865511906000016 ], [ -119.591125896000023, 49.867650753000127 ], [ -119.591048847, 49.868748298000057 ], [ -119.591149148999961, 49.869794019 ], [ -119.591233091, 49.872294487000026 ], [ -119.591232660999978, 49.872294503000028 ], [ -119.59114787299994, 49.87305811200013 ], [ -119.591131373999985, 49.873095832000068 ], [ -119.591100242999943, 49.87348677000012 ], [ -119.587770688999981, 49.873486298000032 ], [ -119.586000004999931, 49.873484402000052 ], [ -119.579845354999989, 49.873482037000052 ], [ -119.57983610699992, 49.873992409000017 ], [ -119.579795181999913, 49.876249963000141 ], [ -119.578687896999952, 49.876274612000024 ], [ -119.578702261999922, 49.876544165000027 ], [ -119.578285149999971, 49.876553448000074 ], [ -119.578299513999966, 49.87682300200003 ], [ -119.577882398999989, 49.876832282000095 ], [ -119.577896758999955, 49.877101836000037 ], [ -119.577479645, 49.877111115000041 ], [ -119.577508359999953, 49.877650224000021 ], [ -119.577091239999959, 49.877659501000032 ], [ -119.577105594999978, 49.877929056000049 ], [ -119.57627134900001, 49.877947608000035 ], [ -119.576285700999961, 49.878217161000109 ], [ -119.576702827999938, 49.878207886000062 ], [ -119.576760246, 49.87928610200008 ], [ -119.575091703999973, 49.879323196 ], [ -119.57507735899999, 49.879053642000088 ], [ -119.574660225999963, 49.879062910000052 ], [ -119.574645881999913, 49.878793356000095 ], [ -119.57381161799999, 49.878811890000037 ], [ -119.573797279999923, 49.878542336000095 ], [ -119.573380149999963, 49.878551601000026 ], [ -119.57340882199999, 49.879090710000099 ], [ -119.573045464999922, 49.879098781000032 ], [ -119.572883869999941, 49.880246119000155 ], [ -119.570120539999948, 49.880083474000038 ], [ -119.57012901399996, 49.880242999000068 ], [ -119.569711867999928, 49.880252251000108 ], [ -119.569726184999922, 49.88052180600004 ], [ -119.569309035999964, 49.880531057000162 ], [ -119.569323350999966, 49.880800613000055 ], [ -119.567237595999956, 49.880846842000032 ], [ -119.567208989999983, 49.88030773 ], [ -119.566791843999951, 49.880316972000045 ], [ -119.566777543999962, 49.880047415000071 ], [ -119.565108961999897, 49.880084366000084 ], [ -119.565080380999973, 49.879545252000071 ], [ -119.5642461, 49.879563718000099 ], [ -119.564260383999965, 49.879833275000081 ], [ -119.563843240999944, 49.879842506000024 ], [ -119.563886092999923, 49.880651176000114 ], [ -119.563468941999957, 49.880660405000079 ], [ -119.563497504999958, 49.881199519000099 ], [ -119.562663193999981, 49.88121797400003 ], [ -119.562677471999905, 49.881487530000115 ], [ -119.562260311999964, 49.881496755000086 ], [ -119.56227458799998, 49.881766312000074 ], [ -119.562065504999936, 49.881770936000102 ], [ -119.561857425999918, 49.881775536000085 ], [ -119.561890448999989, 49.882399163000066 ], [ -119.56191452199991, 49.882853765000057 ], [ -119.561735772999938, 49.882857718000054 ], [ -119.561497351999932, 49.882862988000028 ], [ -119.561515201999953, 49.88320012 ], [ -119.561540167999922, 49.883671659000065 ], [ -119.561122989999916, 49.883680880000043 ], [ -119.561137260999942, 49.88395043800007 ], [ -119.560816891999963, 49.883957518000102 ], [ -119.56047367799999, 49.88638938800009 ], [ -119.559018034999923, 49.886303566000059 ], [ -119.558793186999978, 49.887896242000068 ], [ -119.558926093, 49.887904079000116 ], [ -119.558714633999941, 49.889401838000069 ], [ -119.559286781000012, 49.889435572000124 ], [ -119.55878107199996, 49.89301740900008 ], [ -119.557854784999989, 49.892962793000088 ], [ -119.557938528999983, 49.894546112000086 ], [ -119.55752125699992, 49.894555322000045 ], [ -119.557564023999959, 49.895363994000135 ], [ -119.557146744999955, 49.895373203000105 ], [ -119.557189507999979, 49.896181876000064 ], [ -119.556772220999903, 49.896191083000076 ], [ -119.556786473999978, 49.896460640000029 ], [ -119.556114981999912, 49.896475455000093 ], [ -119.556042399999953, 49.896444585000026 ], [ -119.555643882999959, 49.896298305000109 ], [ -119.555218316999969, 49.896106196000048 ], [ -119.555066387999943, 49.895994305000052 ], [ -119.554966786999941, 49.895878207000038 ], [ -119.55497571799998, 49.895736097000061 ], [ -119.555028372000024, 49.895653251000049 ], [ -119.555056498999988, 49.895609014000094 ], [ -119.555151601999981, 49.895529816000078 ], [ -119.555392578999943, 49.895435589000037 ], [ -119.555963399999953, 49.895302301000072 ], [ -119.556277509999944, 49.895176291000027 ], [ -119.556438597999957, 49.895005209000061 ], [ -119.556761111999961, 49.893909207 ], [ -119.556782155999883, 49.893756917000111 ], [ -119.55688730199995, 49.892995612000099 ], [ -119.55688391599999, 49.892742590000083 ], [ -119.556835194999934, 49.890693687000038 ], [ -119.556847885999943, 49.889634500000106 ], [ -119.55678341, 49.889368799000074 ] ], [ [ -119.588106141999972, 49.872826136000057 ], [ -119.588197928999961, 49.872172771000066 ], [ -119.587514730999899, 49.87213265400004 ], [ -119.587871540999984, 49.869592887000138 ], [ -119.586684227999982, 49.869619401000072 ], [ -119.58669863399993, 49.869888953000022 ], [ -119.585447480999946, 49.869916878000012 ], [ -119.585433082999927, 49.869647326000049 ], [ -119.584181933, 49.869675237000102 ], [ -119.58416754199996, 49.869405685000075 ], [ -119.583553703999925, 49.869419374000117 ], [ -119.58328729499999, 49.871314431000066 ], [ -119.58385122299994, 49.871301856000102 ], [ -119.583836831999974, 49.871032303000064 ], [ -119.58508801499994, 49.871004395000071 ], [ -119.585102413999948, 49.871273948000109 ], [ -119.585519477999966, 49.871264642000078 ], [ -119.585533875999914, 49.871534195000066 ], [ -119.585950941999954, 49.871524886000088 ], [ -119.585965344999948, 49.871794440000073 ], [ -119.586382411999949, 49.871785130000021 ], [ -119.586425626999954, 49.872593787000014 ], [ -119.586842702999959, 49.872584476000078 ], [ -119.586857109, 49.872854029000045 ], [ -119.588106141999972, 49.872826136000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "119215249", "BldgCostT": "75028555", "sL_LossRatio": "0.99180979782542", "sL_AssetLoss": "8021.78", "sL_BldgLoss": "7956.08", "sL_StrLoss": "7932.3", "sL_NStrLoss": "23.78", "sL_ContLoss": "65.7", "geom_point": "0101000020E61000004001CA95F0E25DC03F0A536B4CF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.54129893399994, 49.931881845000063 ], [ -119.541326606999974, 49.93168657800009 ], [ -119.540668927999945, 49.931647729000105 ], [ -119.540685411999902, 49.931531415000045 ], [ -119.539730504999937, 49.931475004000035 ], [ -119.53983441099993, 49.930741947000037 ], [ -119.539576348999915, 49.930726701000054 ], [ -119.539814624999934, 49.929045632000054 ], [ -119.540102053999959, 49.929055395000063 ], [ -119.540290820999985, 49.929025905000081 ], [ -119.54066781, 49.928862198000019 ], [ -119.540934157, 49.928788537000045 ], [ -119.541061548999934, 49.928734538000086 ], [ -119.54115287399999, 49.928695823000055 ], [ -119.541294874999949, 49.928598752000042 ], [ -119.541651451999925, 49.928355089000028 ], [ -119.541618070999931, 49.927988576000104 ], [ -119.541601126, 49.927802242000034 ], [ -119.541278668999965, 49.927186391000127 ], [ -119.54117837699999, 49.926690183000062 ], [ -119.541196486999979, 49.926463739000084 ], [ -119.541398524, 49.926073891000051 ], [ -119.541939826999965, 49.925559611000018 ], [ -119.541946744999947, 49.925313529000086 ], [ -119.541771132999955, 49.924598905000074 ], [ -119.54176969599996, 49.924587687000056 ], [ -119.542806921999926, 49.924564936000102 ], [ -119.542787428999986, 49.924194615000033 ], [ -119.541711217999989, 49.924131046000134 ], [ -119.54159520899999, 49.923225137000053 ], [ -119.541090762999886, 49.921338085000116 ], [ -119.540889165999914, 49.921054105000067 ], [ -119.540971109999987, 49.92047574000005 ], [ -119.541008028999897, 49.920477921000042 ], [ -119.541095738999971, 49.919858841000092 ], [ -119.545458720999989, 49.920116533000105 ], [ -119.545881084999962, 49.917133144000047 ], [ -119.551427013999955, 49.917460452000086 ], [ -119.55139776599998, 49.917667231000081 ], [ -119.552111506999921, 49.917709333000069 ], [ -119.551992522999939, 49.918550626000098 ], [ -119.554138397999978, 49.918677180000024 ], [ -119.553631961999955, 49.922258849000102 ], [ -119.548085435999937, 49.921931655000044 ], [ -119.548204499999954, 49.921090370000123 ], [ -119.54656578, 49.920993646000056 ], [ -119.546127241999955, 49.924091317000091 ], [ -119.546052544999938, 49.924086908000085 ], [ -119.546010352999957, 49.924384919000076 ], [ -119.544464709999943, 49.924293665000093 ], [ -119.544505463999926, 49.925067401000064 ], [ -119.54408792299995, 49.925076567000126 ], [ -119.544144709999927, 49.926154802000077 ], [ -119.543727159999918, 49.926163967000093 ], [ -119.54376974499999, 49.926972643000056 ], [ -119.543352187, 49.926981807000018 ], [ -119.543371009999959, 49.92733929500011 ], [ -119.545631082999961, 49.927472734000048 ], [ -119.545539952999945, 49.928116294000112 ], [ -119.548248742999974, 49.928276164000081 ], [ -119.547741738999946, 49.931857760000035 ], [ -119.54690341, 49.931808290000028 ], [ -119.546846620999929, 49.932209379000071 ], [ -119.54129893399994, 49.931881845000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899584", "BldgCostT": "4758334", "sL_LossRatio": "1", "sL_AssetLoss": "619.9", "sL_BldgLoss": "619.9", "sL_StrLoss": "619.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F976B7574BE65DC0A758DA4E00F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.597816771999959, 49.874767814000094 ], [ -119.597773361999913, 49.873959165000024 ], [ -119.599858769999969, 49.873912391000076 ], [ -119.599873251999924, 49.87418193900001 ], [ -119.601124500999916, 49.874153857000138 ], [ -119.60116796600002, 49.874962503000077 ], [ -119.600333784999961, 49.874981228000081 ], [ -119.600348269999955, 49.875250777000076 ], [ -119.599514084999939, 49.875269495000147 ], [ -119.599543044999976, 49.875808595000059 ], [ -119.597040455999988, 49.875864714000102 ], [ -119.597054923999963, 49.87613426399999 ], [ -119.595803618, 49.87616230400004 ], [ -119.595731323999985, 49.874814553000057 ], [ -119.597816771999959, 49.874767814000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "29110500", "BldgCostT": "19395000", "sL_LossRatio": "0.989675898311122", "sL_AssetLoss": "2712.100369", "sL_BldgLoss": "2684.100369", "sL_StrLoss": "2674.000369", "sL_NStrLoss": "10.1", "sL_ContLoss": "28", "geom_point": "0101000020E6100000923C74CDA6E55DC06E50E2107DF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.585717839999944, 49.879281874000064 ], [ -119.586116907999923, 49.876442560000079 ], [ -119.58978109499995, 49.876657691000055 ], [ -119.591658190999951, 49.876767850000135 ], [ -119.591542916999927, 49.877588756000051 ], [ -119.592324826, 49.877634634000117 ], [ -119.591886057999957, 49.880759339000051 ], [ -119.586807498999988, 49.880528492000046 ], [ -119.58632495699996, 49.880529435 ], [ -119.585667428999969, 49.880527677000032 ], [ -119.582722641999965, 49.880527748000077 ], [ -119.582851771999955, 49.879609494000114 ], [ -119.583052914999911, 49.879621312000069 ], [ -119.583122086999978, 49.879129399000057 ], [ -119.585717839999944, 49.879281874000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148229500", "BldgCostT": "101020000", "sL_LossRatio": "1", "sL_AssetLoss": "14493.9", "sL_BldgLoss": "14493.9", "sL_StrLoss": "14493.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000419967A1B4E65DC0C33FAE0524EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.579795181999913, 49.876249963000141 ], [ -119.57983610699992, 49.873992409000017 ], [ -119.579845354999989, 49.873482037000052 ], [ -119.586000004999931, 49.873484402000052 ], [ -119.587770688999981, 49.873486298000032 ], [ -119.591100242999943, 49.87348677000012 ], [ -119.591131373999985, 49.873095832000068 ], [ -119.59114787299994, 49.87305811200013 ], [ -119.591232660999978, 49.872294503000028 ], [ -119.591233091, 49.872294487000026 ], [ -119.591149148999961, 49.869794019 ], [ -119.591048847, 49.868748298000057 ], [ -119.591125896000023, 49.867650753000127 ], [ -119.591422776999977, 49.868007023000061 ], [ -119.591499852999945, 49.868071441000076 ], [ -119.59163897799999, 49.868187659000071 ], [ -119.591945365999933, 49.868294576000054 ], [ -119.592332126999935, 49.868429523000017 ], [ -119.592553594000023, 49.868506792000126 ], [ -119.593101860000019, 49.86867979900007 ], [ -119.593651247999929, 49.86877525000007 ], [ -119.594226933999934, 49.868772909000029 ], [ -119.594773497999967, 49.868709280000118 ], [ -119.595236845999949, 49.868601899000055 ], [ -119.595583076999944, 49.868463306000123 ], [ -119.59634840699999, 49.868047495000035 ], [ -119.596739538999927, 49.867834988000013 ], [ -119.598573766999891, 49.867361979000108 ], [ -119.59970609, 49.866975095000029 ], [ -119.600014462999951, 49.866903549000071 ], [ -119.600034443999917, 49.866898925000086 ], [ -119.600215599999942, 49.866856906000088 ], [ -119.601178054999977, 49.866660075000013 ], [ -119.601376776999928, 49.866619416000084 ], [ -119.601900519999944, 49.86651231200004 ], [ -119.603031126999923, 49.866386249000044 ], [ -119.603781603999963, 49.866262273000068 ], [ -119.604002657, 49.866210674000122 ], [ -119.604545487999957, 49.86608398400012 ], [ -119.605479282999951, 49.865866021000052 ], [ -119.60635034299996, 49.86566873500005 ], [ -119.606777693999931, 49.865508663000078 ], [ -119.606918622999942, 49.865434629000035 ], [ -119.606988678999969, 49.866735442000106 ], [ -119.606571661999936, 49.866744825000083 ], [ -119.606586176999912, 49.867014374000107 ], [ -119.607003197, 49.867004991000066 ], [ -119.60703223199999, 49.867544087000105 ], [ -119.607866277999946, 49.867525317000094 ], [ -119.607895323999969, 49.868064413000049 ], [ -119.607919022999951, 49.868063879000012 ], [ -119.608336018999921, 49.865085868000079 ], [ -119.607399909999955, 49.865106938000096 ], [ -119.608299659999943, 49.864378639000115 ], [ -119.609002587999925, 49.863809678000074 ], [ -119.609060449999902, 49.863777431000059 ], [ -119.60964624099995, 49.863450976000102 ], [ -119.61005115599994, 49.863271538000056 ], [ -119.610322574999955, 49.863227830000056 ], [ -119.612135603999889, 49.863153329000056 ], [ -119.612323784999944, 49.863106065000103 ], [ -119.612336782999989, 49.863102801000082 ], [ -119.612542955999942, 49.863036324000063 ], [ -119.612709302999932, 49.86288534100003 ], [ -119.612885145999954, 49.862656343000062 ], [ -119.61291330799996, 49.8625760890001 ], [ -119.613156818999954, 49.861882217000051 ], [ -119.61339900899992, 49.861508144000084 ], [ -119.613569644999956, 49.861347874000074 ], [ -119.614082180999944, 49.860866420000029 ], [ -119.614550521999931, 49.860532659000071 ], [ -119.61479604, 49.86022470700005 ], [ -119.615193545999929, 49.859279142000048 ], [ -119.615300479000013, 49.859163515000013 ], [ -119.615588370999944, 49.858971792000013 ], [ -119.615752272999941, 49.85888204400004 ], [ -119.615953820999962, 49.858771679000036 ], [ -119.617254193999941, 49.858748437000067 ], [ -119.618362815999959, 49.858949807000023 ], [ -119.618470248, 49.859400989000093 ], [ -119.618485978999956, 49.859467135000045 ], [ -119.618607668000024, 49.859595235000057 ], [ -119.619180100999969, 49.859904970000073 ], [ -119.619572626999968, 49.860296832000067 ], [ -119.61995618899995, 49.860710279000109 ], [ -119.620024257999944, 49.860728019000106 ], [ -119.62005591799999, 49.861313042000099 ], [ -119.619638950999956, 49.861322471000022 ], [ -119.619653535999973, 49.861592017000106 ], [ -119.619236567999963, 49.86160144400003 ], [ -119.619251149999982, 49.861870989000096 ], [ -119.618565923999952, 49.861886479000042 ], [ -119.618546515999981, 49.862025318000065 ], [ -119.618424148999949, 49.862018165000016 ], [ -119.618431785999945, 49.862159387000069 ], [ -119.618215791999958, 49.862164268000065 ], [ -119.617988713999949, 49.863788652000025 ], [ -119.619353233999945, 49.863757810000017 ], [ -119.619386561999974, 49.864373726000032 ], [ -119.619393573999929, 49.864503341000066 ], [ -119.61546700699995, 49.864240682000101 ], [ -119.612444820999926, 49.864038373 ], [ -119.612153554999978, 49.864049138000041 ], [ -119.611801949999972, 49.86470375199999 ], [ -119.61190610099996, 49.864787301000092 ], [ -119.611726140999963, 49.864844881000082 ], [ -119.612150206999985, 49.865054246000078 ], [ -119.611703217999931, 49.865238435000016 ], [ -119.611605807999965, 49.866909466000031 ], [ -119.611845349999953, 49.867917117000076 ], [ -119.61282004399996, 49.871694483000034 ], [ -119.612968070999926, 49.872268120000058 ], [ -119.61188129099996, 49.872292623000149 ], [ -119.611895838999942, 49.872562170000037 ], [ -119.608142241999957, 49.872646726000035 ], [ -119.608156767, 49.872916273000065 ], [ -119.607739696999914, 49.872925661000068 ], [ -119.607754221999954, 49.873195209000116 ], [ -119.607337150000021, 49.873204595000033 ], [ -119.607351672999954, 49.873474142000155 ], [ -119.606100445999957, 49.873502293000072 ], [ -119.606056899999928, 49.872693649000077 ], [ -119.605222762999986, 49.872712408000048 ], [ -119.605216797999958, 49.87260159200008 ], [ -119.602508543999988, 49.872442968000023 ], [ -119.602613867999949, 49.871691542000029 ], [ -119.602245300999925, 49.871699819000114 ], [ -119.602230808999963, 49.871430271000044 ], [ -119.600562569999951, 49.871467726000141 ], [ -119.60054808699999, 49.871198177000117 ], [ -119.599713971999947, 49.871216895000018 ], [ -119.599670536999923, 49.87040824700005 ], [ -119.59925348599991, 49.870417603000135 ], [ -119.599250052999977, 49.870353689000055 ], [ -119.598718869999928, 49.870322551000093 ], [ -119.598301571999983, 49.873297853000118 ], [ -119.59366460299999, 49.873025930000075 ], [ -119.59353370599996, 49.873958461000029 ], [ -119.591087747999907, 49.873814944000095 ], [ -119.589827592999967, 49.873740983000083 ], [ -119.589834335999953, 49.873867016000077 ], [ -119.583995139999942, 49.873997386000042 ], [ -119.583980746999913, 49.873727833000025 ], [ -119.581061147999947, 49.873792907000094 ], [ -119.58107552499996, 49.874062460000111 ], [ -119.580658435999922, 49.874071750000077 ], [ -119.580672808999964, 49.874341305000073 ], [ -119.580255719999926, 49.874350593000017 ], [ -119.580270089999914, 49.874620147000023 ], [ -119.579852997999964, 49.874629435000031 ], [ -119.579881737999983, 49.875168542000026 ], [ -119.580298836999958, 49.875159254000046 ], [ -119.58034195599997, 49.875967914000064 ], [ -119.579924849999927, 49.875977203000069 ], [ -119.579939222999968, 49.876246756000064 ], [ -119.579795181999913, 49.876249963000141 ] ], [ [ -119.602100379999982, 49.869004328000081 ], [ -119.602027928999917, 49.867656582000066 ], [ -119.599942794, 49.867703391000163 ], [ -119.599957271999941, 49.867972942000094 ], [ -119.599756066999973, 49.867977456000041 ], [ -119.599528301999939, 49.869601814000127 ], [ -119.600878234, 49.869571519000033 ], [ -119.600849265999926, 49.869032419000085 ], [ -119.602100379999982, 49.869004328000081 ] ], [ [ -119.610632004999985, 49.864614702000033 ], [ -119.610581919, 49.863685908000065 ], [ -119.609330950999933, 49.863714089000055 ], [ -119.609351178999987, 49.86408937300007 ], [ -119.609360006999921, 49.864253185000088 ], [ -119.60894301299993, 49.864262576000016 ], [ -119.608956705999944, 49.864516652000106 ], [ -119.6097951499999, 49.864565727000084 ], [ -119.610632004999985, 49.864614702000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121440083", "BldgCostT": "73673333", "sL_LossRatio": "0.995487907971358", "sL_AssetLoss": "8684.23555", "sL_BldgLoss": "8645.05148", "sL_StrLoss": "8630.02528", "sL_NStrLoss": "15.0262", "sL_ContLoss": "39.18407", "geom_point": "0101000020E61000005CD52F6437E85DC099BE53D877EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.628732987999911, 49.841943890000032 ], [ -119.628266012999944, 49.841890405000065 ], [ -119.627204309999911, 49.841927805000132 ], [ -119.626577797999971, 49.841916408 ], [ -119.626191187999936, 49.841976897000059 ], [ -119.625952567999903, 49.842066815000059 ], [ -119.625466542999973, 49.842069138000035 ], [ -119.625465580999929, 49.841952703000103 ], [ -119.625460226999905, 49.841350081 ], [ -119.625457168999958, 49.841008337000069 ], [ -119.625456607999965, 49.840940804000034 ], [ -119.625449869999954, 49.838930297000104 ], [ -119.625448821999939, 49.838606404000046 ], [ -119.625456491999941, 49.838387023000081 ], [ -119.62543579, 49.837172440000103 ], [ -119.625432488999948, 49.836813174000092 ], [ -119.626827397999989, 49.83681701000009 ], [ -119.62823472099997, 49.836812501000104 ], [ -119.628959527999911, 49.836809960000018 ], [ -119.629335041999937, 49.836808641000118 ], [ -119.629474006999914, 49.836808143000042 ], [ -119.629780511999954, 49.836807086000157 ], [ -119.630614152999939, 49.83680413900003 ], [ -119.630864644999974, 49.836803257000099 ], [ -119.63107860599996, 49.836802508000041 ], [ -119.631085800999983, 49.838074501000072 ], [ -119.631088562999949, 49.838560285000078 ], [ -119.63109209699995, 49.839187816000077 ], [ -119.63109779199999, 49.839486577000081 ], [ -119.631105184999953, 49.839874796000046 ], [ -119.631090503999985, 49.840280199000127 ], [ -119.631135290999936, 49.840349603000099 ], [ -119.631130611999964, 49.840438143000071 ], [ -119.631087076999947, 49.841260291000054 ], [ -119.631073099999981, 49.841259476000097 ], [ -119.631080197999921, 49.84139017500015 ], [ -119.631000304999972, 49.842898800000036 ], [ -119.630500415999975, 49.842901205000125 ], [ -119.62986440499999, 49.842907648000086 ], [ -119.628813393999934, 49.842918287000018 ], [ -119.62877626099997, 49.84290679800008 ], [ -119.628709105000013, 49.842885995000103 ], [ -119.628732987999911, 49.841943890000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "466507075", "BldgCostT": "307021877", "sL_LossRatio": "0.970752053243977", "sL_AssetLoss": "21982.183685", "sL_BldgLoss": "21339.249947", "sL_StrLoss": "21094.499847", "sL_NStrLoss": "244.7501", "sL_ContLoss": "642.933738", "geom_point": "0101000020E6100000EC6F96B333E85DC0A0EC1CB9A4EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.628197585999928, 49.829575401000099 ], [ -119.630995201999951, 49.829574415000074 ], [ -119.63100439399993, 49.830488689000013 ], [ -119.63101618499995, 49.831345311000071 ], [ -119.631033697999925, 49.832561560000059 ], [ -119.631042078999926, 49.833146185000047 ], [ -119.631043397000013, 49.833237490000066 ], [ -119.63105837199997, 49.83427901200011 ], [ -119.631068086, 49.834956307000049 ], [ -119.6310696, 49.835223427000123 ], [ -119.631070634999929, 49.835403450000094 ], [ -119.631072991999972, 49.835817353000031 ], [ -119.631075173999974, 49.836204012000103 ], [ -119.63107860599996, 49.836802508000041 ], [ -119.630864644999974, 49.836803257000099 ], [ -119.630614152999939, 49.83680413900003 ], [ -119.629780511999954, 49.836807086000157 ], [ -119.629474006999914, 49.836808143000042 ], [ -119.629335041999937, 49.836808641000118 ], [ -119.628959527999911, 49.836809960000018 ], [ -119.62823472099997, 49.836812501000104 ], [ -119.626827397999989, 49.83681701000009 ], [ -119.625432488999948, 49.836813174000092 ], [ -119.625422575999963, 49.83528740400002 ], [ -119.625420699999935, 49.834997601000062 ], [ -119.625417698999954, 49.833362361000063 ], [ -119.625415612999987, 49.832234395000079 ], [ -119.625394290999964, 49.831387191000061 ], [ -119.624457067999955, 49.8313229110001 ], [ -119.624215406999951, 49.830516485000047 ], [ -119.625393301999949, 49.830504114000149 ], [ -119.625393697, 49.830016473000065 ], [ -119.62539400799993, 49.829619306000041 ], [ -119.62568329199992, 49.829595490000017 ], [ -119.626812805, 49.829580290000081 ], [ -119.628197585999928, 49.829575401000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197860949", "BldgCostT": "109356255", "sL_LossRatio": "0.911578914984858", "sL_AssetLoss": "12537.87442", "sL_BldgLoss": "11429.26196", "sL_StrLoss": "11020.98426", "sL_NStrLoss": "408.2777", "sL_ContLoss": "1108.61246", "geom_point": "0101000020E6100000E2A847E070E85DC0DF48D92269EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.63100439399993, 49.830488689000013 ], [ -119.630995201999951, 49.829574415000074 ], [ -119.628197585999928, 49.829575401000099 ], [ -119.626812805, 49.829580290000081 ], [ -119.62568329199992, 49.829595490000017 ], [ -119.62539400799993, 49.829619306000041 ], [ -119.625382994999939, 49.829107614000101 ], [ -119.625373883999927, 49.828683605 ], [ -119.625365511999945, 49.828434666000092 ], [ -119.625345401999979, 49.827837691000106 ], [ -119.625312275999988, 49.826834638000093 ], [ -119.625295914999967, 49.826340345000084 ], [ -119.625290081999964, 49.826164 ], [ -119.626049659999964, 49.826139985000076 ], [ -119.626674051999927, 49.82612024600008 ], [ -119.628167006999917, 49.826072985000096 ], [ -119.628893521999927, 49.826071067000065 ], [ -119.629129663999933, 49.826070435000133 ], [ -119.631021114999925, 49.826065400000068 ], [ -119.630966006999941, 49.828432306000067 ], [ -119.63389949899998, 49.828426605000082 ], [ -119.633902089999978, 49.829009113000069 ], [ -119.633965509999925, 49.829555406000061 ], [ -119.633980713999918, 49.829826299000061 ], [ -119.633998453999979, 49.829853759000088 ], [ -119.63407831899994, 49.829977406000083 ], [ -119.63423508899993, 49.830030325000067 ], [ -119.63431411599997, 49.830057003000064 ], [ -119.63493749899996, 49.830149399000049 ], [ -119.635813282999919, 49.83031239500005 ], [ -119.636008680999922, 49.830392410000108 ], [ -119.636105871999987, 49.830472724000103 ], [ -119.636183906999989, 49.830537206000066 ], [ -119.636512920999976, 49.830999707000018 ], [ -119.636614116, 49.831325181000103 ], [ -119.636617433, 49.832326636000062 ], [ -119.636620228999973, 49.833171852000085 ], [ -119.636622755999895, 49.833936194000053 ], [ -119.636626020999984, 49.834916802000116 ], [ -119.636630110999931, 49.836157983000142 ], [ -119.636631342999976, 49.836527285000066 ], [ -119.636632191999965, 49.836785205000112 ], [ -119.63391065499998, 49.836793700000051 ], [ -119.63107860599996, 49.836802508000041 ], [ -119.631075173999974, 49.836204012000103 ], [ -119.631072991999972, 49.835817353000031 ], [ -119.631070634999929, 49.835403450000094 ], [ -119.6310696, 49.835223427000123 ], [ -119.631068086, 49.834956307000049 ], [ -119.63105837199997, 49.83427901200011 ], [ -119.631043397000013, 49.833237490000066 ], [ -119.631042078999926, 49.833146185000047 ], [ -119.631033697999925, 49.832561560000059 ], [ -119.63101618499995, 49.831345311000071 ], [ -119.63100439399993, 49.830488689000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170793417", "BldgCostT": "112841667", "sL_LossRatio": "1", "sL_AssetLoss": "19141.6", "sL_BldgLoss": "19141.6", "sL_StrLoss": "19141.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F54133DBD7E85DC0EFD8426F75EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.637575847999969, 49.846927709000113 ], [ -119.63730780199991, 49.846881816000057 ], [ -119.636699610999969, 49.846919505000137 ], [ -119.636674647999911, 49.846923 ], [ -119.635720178999946, 49.847056492000092 ], [ -119.635111690999977, 49.847016483000068 ], [ -119.634743614999977, 49.84691380400006 ], [ -119.63402951499998, 49.846619294000043 ], [ -119.63361311299991, 49.846202292000072 ], [ -119.63347008199996, 49.845755990000058 ], [ -119.633865293999946, 49.844993595000098 ], [ -119.633980880999928, 49.844565099000057 ], [ -119.63399520199999, 49.844091999000049 ], [ -119.631067598999948, 49.844098092000131 ], [ -119.629968027999936, 49.844098217000067 ], [ -119.629228024999932, 49.844098289000058 ], [ -119.629214100999945, 49.84409830900006 ], [ -119.628619905999955, 49.844098978000048 ], [ -119.628076379999968, 49.844099600000064 ], [ -119.627771791999947, 49.84409960400005 ], [ -119.626699555999934, 49.844099552000102 ], [ -119.625756834999933, 49.8440995220001 ], [ -119.625386654999886, 49.844051740000033 ], [ -119.62547713399999, 49.843753722000031 ], [ -119.625475584999919, 49.843506492000074 ], [ -119.625474445999927, 49.843326103000017 ], [ -119.625467064999953, 49.842141375000068 ], [ -119.625466542999973, 49.842069138000035 ], [ -119.625952567999903, 49.842066815000059 ], [ -119.626191187999936, 49.841976897000059 ], [ -119.626577797999971, 49.841916408 ], [ -119.627204309999911, 49.841927805000132 ], [ -119.628266012999944, 49.841890405000065 ], [ -119.628732987999911, 49.841943890000032 ], [ -119.628709105000013, 49.842885995000103 ], [ -119.62877626099997, 49.84290679800008 ], [ -119.628813393999934, 49.842918287000018 ], [ -119.62986440499999, 49.842907648000086 ], [ -119.630500415999975, 49.842901205000125 ], [ -119.631000304999972, 49.842898800000036 ], [ -119.631080197999921, 49.84139017500015 ], [ -119.631086696999915, 49.841509851000062 ], [ -119.631137095, 49.841512792000088 ], [ -119.631171613999982, 49.841265225000065 ], [ -119.631087076999947, 49.841260291000054 ], [ -119.631130611999964, 49.840438143000071 ], [ -119.631135290999936, 49.840349603000099 ], [ -119.631090503999985, 49.840280199000127 ], [ -119.631105184999953, 49.839874796000046 ], [ -119.63109779199999, 49.839486577000081 ], [ -119.63109209699995, 49.839187816000077 ], [ -119.631088562999949, 49.838560285000078 ], [ -119.631085800999983, 49.838074501000072 ], [ -119.63107860599996, 49.836802508000041 ], [ -119.63391065499998, 49.836793700000051 ], [ -119.636632191999965, 49.836785205000112 ], [ -119.636631342999976, 49.836527285000066 ], [ -119.636630110999931, 49.836157983000142 ], [ -119.636626020999984, 49.834916802000116 ], [ -119.636622755999895, 49.833936194000053 ], [ -119.636620228999973, 49.833171852000085 ], [ -119.636617433, 49.832326636000062 ], [ -119.636614116, 49.831325181000103 ], [ -119.636512920999976, 49.830999707000018 ], [ -119.636183906999989, 49.830537206000066 ], [ -119.636105871999987, 49.830472724000103 ], [ -119.636008680999922, 49.830392410000108 ], [ -119.635813282999919, 49.83031239500005 ], [ -119.63493749899996, 49.830149399000049 ], [ -119.63431411599997, 49.830057003000064 ], [ -119.63423508899993, 49.830030325000067 ], [ -119.63407831899994, 49.829977406000083 ], [ -119.633998453999979, 49.829853759000088 ], [ -119.633980713999918, 49.829826299000061 ], [ -119.633965509999925, 49.829555406000061 ], [ -119.633902089999978, 49.829009113000069 ], [ -119.63389949899998, 49.828426605000082 ], [ -119.634500652999989, 49.828423252000057 ], [ -119.636102904999959, 49.828414305000088 ], [ -119.637718169999985, 49.828406495000074 ], [ -119.637817289999958, 49.828403929000089 ], [ -119.638163677999913, 49.828394909000103 ], [ -119.642450995000033, 49.828283299000098 ], [ -119.643021617, 49.828223508000043 ], [ -119.643245945999979, 49.828177698000061 ], [ -119.643303673999938, 49.828258803000075 ], [ -119.64340238199999, 49.828397433000099 ], [ -119.643025526999963, 49.828466601000109 ], [ -119.642263675, 49.828526999000132 ], [ -119.638790307999969, 49.828622504000073 ], [ -119.638121483999925, 49.828726102000111 ], [ -119.637972612999945, 49.828769391000066 ], [ -119.637676603999964, 49.82885550500005 ], [ -119.637304693999965, 49.829000813000043 ], [ -119.637379794999958, 49.829062996000062 ], [ -119.63786571199995, 49.829010098000033 ], [ -119.63816139699999, 49.829040898000102 ], [ -119.638374054999986, 49.829114731000111 ], [ -119.638414282999975, 49.829128692000047 ], [ -119.638698296999948, 49.829293393000036 ], [ -119.639056310999976, 49.829592838000025 ], [ -119.639250689999983, 49.829755394000095 ], [ -119.639937102, 49.830206201000074 ], [ -119.64124161299992, 49.830918799000067 ], [ -119.641993210999914, 49.831452811000105 ], [ -119.642096306999946, 49.831564497000059 ], [ -119.642195251999965, 49.831679570000084 ], [ -119.642270378999939, 49.831766997000074 ], [ -119.642422419999946, 49.832229099000045 ], [ -119.642531797999965, 49.832365509000134 ], [ -119.642631065000018, 49.832447269000049 ], [ -119.64303118899997, 49.832776833000118 ], [ -119.643063807999937, 49.832803699000067 ], [ -119.643186911999919, 49.832982401000081 ], [ -119.6432277299999, 49.83310933800005 ], [ -119.643263795999957, 49.833221583000046 ], [ -119.643267961999982, 49.833230223000058 ], [ -119.64366790299999, 49.834057703000035 ], [ -119.64388809399999, 49.834330602000058 ], [ -119.644153199999948, 49.834551011000045 ], [ -119.644314600999948, 49.834745483000106 ], [ -119.644493380999961, 49.835365403000118 ], [ -119.644497890999958, 49.835411619000077 ], [ -119.644513492999963, 49.835572389000042 ], [ -119.64446947499999, 49.83578830000009 ], [ -119.644020719999901, 49.836637091000107 ], [ -119.64400891799994, 49.836822402000045 ], [ -119.644041727999948, 49.836937197000076 ], [ -119.644045694999946, 49.836945925000045 ], [ -119.64424488399996, 49.837382407000064 ], [ -119.644368008999933, 49.837545271000067 ], [ -119.644518313999967, 49.837744093 ], [ -119.645027908999978, 49.838244190000069 ], [ -119.645129299999951, 49.83841799500005 ], [ -119.645127582999947, 49.83858297500003 ], [ -119.645109541999886, 49.840328919000044 ], [ -119.645107856999985, 49.840490959000078 ], [ -119.645106186999968, 49.84065265300007 ], [ -119.64510450099999, 49.840814695000091 ], [ -119.64510198, 49.84105721300007 ], [ -119.645090295999964, 49.842188907000043 ], [ -119.645119148999925, 49.843962437000101 ], [ -119.645136710999964, 49.845041320000057 ], [ -119.64514624899995, 49.845626136000106 ], [ -119.645157780000019, 49.846336110000045 ], [ -119.645160694999959, 49.846516104000074 ], [ -119.645166853999982, 49.846893540000089 ], [ -119.645169647999978, 49.847064528000104 ], [ -119.645172582999976, 49.847244488000115 ], [ -119.64517359199999, 49.847307604000051 ], [ -119.644445124999947, 49.847312451000079 ], [ -119.643874594999886, 49.847316266000085 ], [ -119.639163487999923, 49.847347492000047 ], [ -119.63867509399999, 49.847246808000065 ], [ -119.638329179999957, 49.847138361000091 ], [ -119.637754995999941, 49.846958396000112 ], [ -119.637575847999969, 49.846927709000113 ] ], [ [ -119.641544093000022, 49.843227679000037 ], [ -119.641589559999915, 49.842901075000015 ], [ -119.64062474, 49.842844857000109 ], [ -119.640579265000014, 49.84317146000005 ], [ -119.641544093000022, 49.843227679000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "596195895", "BldgCostT": "399676524", "sL_LossRatio": "0.985262669477355", "sL_AssetLoss": "26249.111086", "sL_BldgLoss": "25862.26926", "sL_StrLoss": "25712.85668", "sL_NStrLoss": "149.41258", "sL_ContLoss": "386.841826", "geom_point": "0101000020E61000005D3BC56865E85DC0E31F12F822E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.630966006999941, 49.828432306000067 ], [ -119.631021114999925, 49.826065400000068 ], [ -119.629129663999933, 49.826070435000133 ], [ -119.628893521999927, 49.826071067000065 ], [ -119.628167006999917, 49.826072985000096 ], [ -119.626674051999927, 49.82612024600008 ], [ -119.626049659999964, 49.826139985000076 ], [ -119.625290081999964, 49.826164 ], [ -119.625299363999929, 49.824505544000012 ], [ -119.62161747899998, 49.824356977000022 ], [ -119.62166713, 49.824041812000061 ], [ -119.617887912999905, 49.823993109000114 ], [ -119.620000088999973, 49.823063804000085 ], [ -119.62026910400003, 49.822875488000122 ], [ -119.620735099999948, 49.822385389000061 ], [ -119.621021685999949, 49.822081594000039 ], [ -119.621411788, 49.821495001000123 ], [ -119.621574998999961, 49.821025906000024 ], [ -119.621722210999962, 49.819461585000113 ], [ -119.621786282999935, 49.819282096000094 ], [ -119.621990713999963, 49.819036715000067 ], [ -119.622212356999938, 49.818873256000131 ], [ -119.62252402299994, 49.818643508000015 ], [ -119.622716162999907, 49.818367546000054 ], [ -119.622838108999971, 49.818192400000058 ], [ -119.62313892499999, 49.817855977000143 ], [ -119.623158204000021, 49.817667458000045 ], [ -119.622972283999957, 49.817350563000026 ], [ -119.62309618099999, 49.817092289000101 ], [ -119.623112608999975, 49.816845009000062 ], [ -119.623070618999918, 49.816475955000072 ], [ -119.623008593999913, 49.816139334000084 ], [ -119.62297047299991, 49.815932510000046 ], [ -119.622955565999959, 49.815851714000118 ], [ -119.622884073999955, 49.815463675000082 ], [ -119.622882633999922, 49.814704249000037 ], [ -119.623152428999973, 49.812490675000063 ], [ -119.623280974999957, 49.812069282000081 ], [ -119.623435544999964, 49.811811049 ], [ -119.623448229999937, 49.811814812000122 ], [ -119.626843856999955, 49.812823830000077 ], [ -119.627966691999958, 49.813233312000094 ], [ -119.628907738999914, 49.813576482000023 ], [ -119.62923744599999, 49.81376279100013 ], [ -119.629601684999969, 49.813931229000083 ], [ -119.630276765999909, 49.814031168000049 ], [ -119.630756740999956, 49.81417026800009 ], [ -119.631163047999976, 49.814357422000136 ], [ -119.631409713999929, 49.814408834000076 ], [ -119.631632394999912, 49.814362254000038 ], [ -119.63216629799993, 49.814164085000058 ], [ -119.632193214, 49.814152660000097 ], [ -119.632904989999957, 49.813850405000046 ], [ -119.633026113999932, 49.813798938000055 ], [ -119.633518006999921, 49.813592002000092 ], [ -119.633868748999987, 49.813557393000039 ], [ -119.63423976499999, 49.813597100000038 ], [ -119.634428000999961, 49.813662476000076 ], [ -119.634508545999893, 49.813690448000052 ], [ -119.63477445099997, 49.813863966000056 ], [ -119.635737753999976, 49.814678662000041 ], [ -119.635824284999927, 49.814871423000113 ], [ -119.636031556999953, 49.81533325500007 ], [ -119.636119841999985, 49.815668964000047 ], [ -119.636320636999983, 49.816432710000065 ], [ -119.636510891999976, 49.81681944200006 ], [ -119.636526645999965, 49.816846588000097 ], [ -119.637215175999984, 49.818030921000066 ], [ -119.637445511999957, 49.818427139000065 ], [ -119.6374753, 49.818478371000069 ], [ -119.637927717999929, 49.819186463000072 ], [ -119.63810090500003, 49.819395207000113 ], [ -119.638292905999961, 49.819566111000057 ], [ -119.638421105999925, 49.819680242000082 ], [ -119.638768659999982, 49.819915817000094 ], [ -119.639111990999979, 49.820148515000078 ], [ -119.639525611999929, 49.820484140000076 ], [ -119.639607946999917, 49.820581894000036 ], [ -119.639944579999963, 49.820981683000099 ], [ -119.640362167999967, 49.821850990000065 ], [ -119.640731441999932, 49.822619782000061 ], [ -119.640959324999926, 49.82309415800011 ], [ -119.641161406999984, 49.823514850000052 ], [ -119.641248102999953, 49.82380428700008 ], [ -119.641306218999929, 49.824201310000035 ], [ -119.641322483999915, 49.824312506000069 ], [ -119.641392880999902, 49.824537793000026 ], [ -119.641798493999914, 49.825112212000072 ], [ -119.64238873499994, 49.825362988000116 ], [ -119.64283778199993, 49.825553795000125 ], [ -119.643412362999982, 49.825940392000078 ], [ -119.643441778999957, 49.825960203000129 ], [ -119.642860634999977, 49.826325352000055 ], [ -119.643252067999953, 49.826530231000056 ], [ -119.643332752, 49.826549206000081 ], [ -119.643767839999953, 49.826595136000066 ], [ -119.643850865999951, 49.826617356000092 ], [ -119.644000591999955, 49.826698207000092 ], [ -119.644099260999923, 49.826699951000094 ], [ -119.644171607999965, 49.826682030000022 ], [ -119.64422464099998, 49.82665421500014 ], [ -119.644343327999977, 49.826566789000026 ], [ -119.644387810999945, 49.826596696000067 ], [ -119.644682693999982, 49.82671319700011 ], [ -119.644978884999901, 49.826770095000022 ], [ -119.64527538399993, 49.826764792000041 ], [ -119.645580495999965, 49.826697710000062 ], [ -119.645813208, 49.826589388000059 ], [ -119.645970309999939, 49.826463089000093 ], [ -119.646137474999975, 49.826233595000105 ], [ -119.64649588899999, 49.825467939000106 ], [ -119.64650861799997, 49.825440805000042 ], [ -119.646639426999982, 49.824982446000014 ], [ -119.64687673499995, 49.825001124000075 ], [ -119.647116601999983, 49.82501999600003 ], [ -119.64701458199994, 49.825249784000107 ], [ -119.646821677999952, 49.825684100000032 ], [ -119.646706997999956, 49.825942280000078 ], [ -119.646486812999939, 49.826438096000018 ], [ -119.64646489099998, 49.826487400000119 ], [ -119.646103491999924, 49.826949392000081 ], [ -119.645766496999926, 49.827266599000041 ], [ -119.645667475, 49.827335403000106 ], [ -119.645230590999972, 49.827638891000035 ], [ -119.644606596999949, 49.827932189000116 ], [ -119.644092890999985, 49.828094498999988 ], [ -119.6435277, 49.828225912000029 ], [ -119.643303673999938, 49.828258803000075 ], [ -119.643245945999979, 49.828177698000061 ], [ -119.643021617, 49.828223508000043 ], [ -119.642450995000033, 49.828283299000098 ], [ -119.638163677999913, 49.828394909000103 ], [ -119.637817289999958, 49.828403929000089 ], [ -119.637718169999985, 49.828406495000074 ], [ -119.636102904999959, 49.828414305000088 ], [ -119.634500652999989, 49.828423252000057 ], [ -119.63389949899998, 49.828426605000082 ], [ -119.630966006999941, 49.828432306000067 ] ], [ [ -119.641195226999983, 49.827908059000066 ], [ -119.641188630999935, 49.827787025000099 ], [ -119.639933080999953, 49.827713835000047 ], [ -119.639945212, 49.827936555000058 ], [ -119.641195226999983, 49.827908059000066 ] ], [ [ -119.639097191, 49.82768600300016 ], [ -119.639616240999942, 49.827674175000098 ], [ -119.63984236, 49.82604975600006 ], [ -119.639637901999947, 49.826054416000041 ], [ -119.639449403999976, 49.827408530000099 ], [ -119.639080915999969, 49.827387044000069 ], [ -119.639097191, 49.82768600300016 ] ], [ [ -119.624445978999958, 49.824240611000079 ], [ -119.624552443999931, 49.824238198 ], [ -119.624447172999979, 49.824232045000073 ], [ -119.624445978999958, 49.824240611000079 ] ], [ [ -119.639081076999929, 49.821446875000085 ], [ -119.639114249999963, 49.821208551000062 ], [ -119.63874504599994, 49.82121696300004 ], [ -119.638686368, 49.820138788000065 ], [ -119.637853154999959, 49.820157767000119 ], [ -119.637838491, 49.81988822400011 ], [ -119.637421886999931, 49.819897711000067 ], [ -119.637396382999896, 49.819428815000059 ], [ -119.635786728999946, 49.819334906000066 ], [ -119.635891416999982, 49.81858316200001 ], [ -119.634849020999951, 49.818606879000122 ], [ -119.634834374999954, 49.81833733600007 ], [ -119.633168007999956, 49.818375231000076 ], [ -119.633138731999964, 49.817836140000061 ], [ -119.632722143999985, 49.81784561200007 ], [ -119.632632383999962, 49.816192315000073 ], [ -119.631377141999948, 49.816119024000102 ], [ -119.631457750999971, 49.81760446700013 ], [ -119.629374815999967, 49.81765177000004 ], [ -119.629389432999986, 49.817921316000067 ], [ -119.628972841999882, 49.817930772000111 ], [ -119.629002070999917, 49.818469864000079 ], [ -119.627335691999988, 49.818507676000074 ], [ -119.627350295999946, 49.818777222000072 ], [ -119.626341019999984, 49.818800112000062 ], [ -119.62632553899999, 49.818911113000105 ], [ -119.628733466999975, 49.81905179700005 ], [ -119.628629646, 49.819796460000084 ], [ -119.63120953799995, 49.819947131000056 ], [ -119.630902837999926, 49.822147706000052 ], [ -119.63466207499999, 49.822367142000104 ], [ -119.634605594999954, 49.822772592000042 ], [ -119.635858002999896, 49.82284566900011 ], [ -119.636077211999918, 49.821271660000072 ], [ -119.639081076999929, 49.821446875000085 ] ], [ [ -119.626356503999943, 49.815831110000069 ], [ -119.626346745999953, 49.815650916000031 ], [ -119.626147393999958, 49.815639266000112 ], [ -119.626119890999959, 49.815836475000026 ], [ -119.626356503999943, 49.815831110000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "244438084", "BldgCostT": "159978334", "sL_LossRatio": "0.99754618657164", "sL_AssetLoss": "27880.196273", "sL_BldgLoss": "27811.783473", "sL_StrLoss": "27781.081473", "sL_NStrLoss": "30.702", "sL_ContLoss": "68.4128", "geom_point": "0101000020E610000016777AAD5DE75DC001AA132BFEE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.609383391, 49.831192532000095 ], [ -119.608817858999956, 49.828120250000019 ], [ -119.60887636299999, 49.827574895000069 ], [ -119.608878679000014, 49.82727434800006 ], [ -119.608892390999955, 49.826030648000078 ], [ -119.608993689, 49.825589835000088 ], [ -119.60904903499997, 49.825226390000147 ], [ -119.610960094999925, 49.824949173000078 ], [ -119.613745280999979, 49.824536194000068 ], [ -119.614183611999977, 49.824424607000083 ], [ -119.61561298499997, 49.823899698000034 ], [ -119.616297929999973, 49.823740239000095 ], [ -119.617094501999972, 49.823630661000067 ], [ -119.61739362599991, 49.823589476000045 ], [ -119.617738847999973, 49.823541947000095 ], [ -119.617837838999961, 49.823832166000059 ], [ -119.617887912999905, 49.823993109000114 ], [ -119.61789024299992, 49.824122991000081 ], [ -119.617895116999975, 49.824390795000056 ], [ -119.61786065099993, 49.824550540000068 ], [ -119.617740688999959, 49.825106795000075 ], [ -119.61788929, 49.825591394000057 ], [ -119.617862001999967, 49.825786589000082 ], [ -119.617663913999976, 49.826246286000092 ], [ -119.617670498999956, 49.826508600000054 ], [ -119.61778228699994, 49.826776996000127 ], [ -119.617965075999948, 49.82698627400007 ], [ -119.618181152999938, 49.827137094000115 ], [ -119.618651386999943, 49.827346984000052 ], [ -119.618700893, 49.827370237000146 ], [ -119.619406855999941, 49.827701789000081 ], [ -119.61979268199994, 49.827996136000046 ], [ -119.620096285999921, 49.82835969600012 ], [ -119.621264583999945, 49.829765255000019 ], [ -119.621729208000019, 49.829635304000128 ], [ -119.621916795999979, 49.829621024000133 ], [ -119.622246931999939, 49.829595900000122 ], [ -119.622366614999947, 49.829586806000044 ], [ -119.62272461299996, 49.829651053000084 ], [ -119.622776414, 49.829430198000132 ], [ -119.622886705, 49.82925962300002 ], [ -119.623075269999973, 49.829057643000041 ], [ -119.623258373999946, 49.828925635000076 ], [ -119.623579987999989, 49.828790906000087 ], [ -119.623617621999955, 49.828782140000072 ], [ -119.623796274999961, 49.828740411000112 ], [ -119.624120887999979, 49.828714214000073 ], [ -119.625373883999927, 49.828683605 ], [ -119.625382994999939, 49.829107614000101 ], [ -119.62539400799993, 49.829619306000041 ], [ -119.624744888999913, 49.829721316000068 ], [ -119.624201097999929, 49.829918812000052 ], [ -119.623833265999977, 49.830203623000031 ], [ -119.623665873000022, 49.830333225000075 ], [ -119.62354074299995, 49.830430114000116 ], [ -119.622671186, 49.831103408000075 ], [ -119.622505150999956, 49.831064186000063 ], [ -119.621811064999946, 49.830900267000089 ], [ -119.620980256999957, 49.830873006000097 ], [ -119.620423087999924, 49.830854724000055 ], [ -119.619920687000018, 49.830725892000039 ], [ -119.610243207999972, 49.831154510000097 ], [ -119.609383391, 49.831192532000095 ] ], [ [ -119.613742789999961, 49.828530775000061 ], [ -119.613751292999964, 49.828469945000087 ], [ -119.613690892999955, 49.828466409000079 ], [ -119.613694420999963, 49.828531867000024 ], [ -119.613742789999961, 49.828530775000061 ] ], [ [ -119.613592764999964, 49.828264284000035 ], [ -119.61360018499991, 49.828211204000127 ], [ -119.61346465099993, 49.82820327000006 ], [ -119.613508867999926, 49.827886936000084 ], [ -119.613396668999911, 49.827880367000041 ], [ -119.613431479999974, 49.827631336000067 ], [ -119.613420087999941, 49.827630670000076 ], [ -119.61345881199999, 49.827353636000097 ], [ -119.613440606999959, 49.827352571000084 ], [ -119.613503283999989, 49.826904169000052 ], [ -119.612866023999956, 49.826866860000081 ], [ -119.61280306399999, 49.827317243000088 ], [ -119.61195752899999, 49.827267734000017 ], [ -119.612013148999935, 49.828299915000109 ], [ -119.613592764999964, 49.828264284000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "89018000", "BldgCostT": "60920000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D57ABFD18EE65DC067E47F3494E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.597975210999905, 49.827743838000053 ], [ -119.598023922, 49.826184415000064 ], [ -119.598132811999946, 49.826190806000113 ], [ -119.598063891000024, 49.824904811000081 ], [ -119.598153306000015, 49.822041798000072 ], [ -119.598684896999927, 49.82204701000007 ], [ -119.599045001999968, 49.822135949000092 ], [ -119.599348086999939, 49.822210804000086 ], [ -119.600353389999938, 49.822314792000057 ], [ -119.601253695999944, 49.822259190000075 ], [ -119.601548274999942, 49.822296294000118 ], [ -119.60218921799995, 49.822536233000136 ], [ -119.602958100999928, 49.822824075000021 ], [ -119.602958760999982, 49.822836335000041 ], [ -119.602989037999976, 49.82283565600008 ], [ -119.60323088199999, 49.822926191000079 ], [ -119.603591305999942, 49.823061107000093 ], [ -119.60423306199999, 49.823262080000049 ], [ -119.604237640999912, 49.823347341000037 ], [ -119.604487386999949, 49.823341723000077 ], [ -119.60462795299992, 49.823385742 ], [ -119.606406589999949, 49.823942713000136 ], [ -119.60690538899999, 49.824085561000075 ], [ -119.607480677999931, 49.824250300000045 ], [ -119.608527369999976, 49.82442095100005 ], [ -119.60854609399999, 49.824424005 ], [ -119.60854291299998, 49.824604894000061 ], [ -119.608253507999933, 49.824925392000118 ], [ -119.608652392999929, 49.824845602000082 ], [ -119.608866732999957, 49.824444294000038 ], [ -119.608871758999967, 49.824444611000096 ], [ -119.608999577999967, 49.824453562000038 ], [ -119.610290495999962, 49.824546504000068 ], [ -119.610316944999965, 49.824545792000073 ], [ -119.610330526999945, 49.824546743000077 ], [ -119.611390568999951, 49.824516891000052 ], [ -119.612192513999929, 49.824495297000091 ], [ -119.613984474999882, 49.824176194000046 ], [ -119.614014078999901, 49.824165135000101 ], [ -119.613745280999979, 49.824536194000068 ], [ -119.610960094999925, 49.824949173000078 ], [ -119.60904903499997, 49.825226390000147 ], [ -119.608665194999944, 49.825282172000058 ], [ -119.608322754999932, 49.825331922000068 ], [ -119.606702414000011, 49.825645092000123 ], [ -119.605920696999974, 49.82579793300004 ], [ -119.605129983999973, 49.826144352000064 ], [ -119.605013302999964, 49.826195647000063 ], [ -119.604550172999922, 49.82639929000009 ], [ -119.604042865999972, 49.826505006000097 ], [ -119.602931169, 49.82650302600009 ], [ -119.602579835999933, 49.826541103000054 ], [ -119.602142754999974, 49.826673483000114 ], [ -119.601864522, 49.826797124000095 ], [ -119.601731976999957, 49.826896805000089 ], [ -119.600604498999985, 49.827445570000059 ], [ -119.600075583999967, 49.827648145000069 ], [ -119.60004425799994, 49.827660116000061 ], [ -119.599866814999984, 49.827731878000108 ], [ -119.599403056999961, 49.827924985000081 ], [ -119.59901552299999, 49.827763192000099 ], [ -119.598966707999949, 49.827733244000086 ], [ -119.598829818999945, 49.827734219000035 ], [ -119.597975210999905, 49.827743838000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20179168", "BldgCostT": "13916668", "sL_LossRatio": "1", "sL_AssetLoss": "2094.9", "sL_BldgLoss": "2094.9", "sL_StrLoss": "2094.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFB7EF8BAAEA5DC0C06E2244C3E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.664070677999959, 49.800913192000031 ], [ -119.665763304999928, 49.799822191000082 ], [ -119.666173434999905, 49.799644665000095 ], [ -119.66617955699999, 49.799645020000071 ], [ -119.665999775999936, 49.800942752000012 ], [ -119.670909911999928, 49.801227896000128 ], [ -119.670973590999893, 49.801231592000157 ], [ -119.670594170999919, 49.803972288000139 ], [ -119.67056824399998, 49.804159569000099 ], [ -119.670477583999983, 49.804814377000049 ], [ -119.668085513, 49.804675493000062 ], [ -119.667684463999962, 49.804652204000035 ], [ -119.667003746999953, 49.8046126690001 ], [ -119.666287599999976, 49.804571072000044 ], [ -119.666283205999918, 49.804602789000114 ], [ -119.666273280999974, 49.80467441800014 ], [ -119.666221127999933, 49.805050861000055 ], [ -119.666223295999941, 49.805090312000083 ], [ -119.666229567999935, 49.805204441000114 ], [ -119.66619975399999, 49.805205126000033 ], [ -119.666190721999939, 49.80527031600009 ], [ -119.665703371999882, 49.805268587000043 ], [ -119.664930183999942, 49.80537597300016 ], [ -119.664569858999968, 49.805355038000144 ], [ -119.664573729999972, 49.805425479000078 ], [ -119.664430377999935, 49.80544538700007 ], [ -119.664394697999953, 49.805250702000123 ], [ -119.663698927999988, 49.80468057900007 ], [ -119.663623960999985, 49.804619150000079 ], [ -119.663162198999956, 49.804240800000052 ], [ -119.662865575999916, 49.803597385000053 ], [ -119.662360668999966, 49.802502321000105 ], [ -119.662238593, 49.802295852000071 ], [ -119.662718397999981, 49.802160942000064 ], [ -119.662808679999969, 49.802098467000071 ], [ -119.662838692999927, 49.802077648000079 ], [ -119.662873658999956, 49.80199660500007 ], [ -119.662836542999926, 49.801922227000041 ], [ -119.662749623999957, 49.80187527700005 ], [ -119.663817463999948, 49.800996410000025 ], [ -119.664070677999959, 49.800913192000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13158750", "BldgCostT": "9075000", "sL_LossRatio": "1", "sL_AssetLoss": "1249.8", "sL_BldgLoss": "1249.8", "sL_StrLoss": "1249.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005046C79B5DEB5DC00DEBDF5844E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.6786749, 49.796807188000081 ], [ -119.680329592999925, 49.796814300000108 ], [ -119.680672234, 49.796846802000118 ], [ -119.680420176999945, 49.798670542000131 ], [ -119.680343698999934, 49.799223864000027 ], [ -119.679994951999944, 49.799203648000052 ], [ -119.679757966, 49.800918073000126 ], [ -119.674225228999887, 49.800597208000084 ], [ -119.674258975999948, 49.800353294000089 ], [ -119.674586271999942, 49.797987559000077 ], [ -119.676891796999911, 49.797514999000065 ], [ -119.6786749, 49.796807188000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196786834", "BldgCostT": "136683334", "sL_LossRatio": "1", "sL_AssetLoss": "12922.2", "sL_BldgLoss": "12922.2", "sL_StrLoss": "12922.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005107E4D81BED5DC0E879A2B117E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.707419863999974, 49.80219129000011 ], [ -119.707426262999974, 49.802144795000039 ], [ -119.707275518999964, 49.802136095000094 ], [ -119.706664855999989, 49.802100850000024 ], [ -119.703837494999945, 49.801937621000093 ], [ -119.703932487999964, 49.801247808000078 ], [ -119.70395696599995, 49.801070057000068 ], [ -119.704103852999978, 49.800003343000107 ], [ -119.703417609999917, 49.799963713000118 ], [ -119.70352110499995, 49.799212172000061 ], [ -119.702176211999983, 49.799243560000107 ], [ -119.702161199999949, 49.798974030000068 ], [ -119.701744798999982, 49.798983745000065 ], [ -119.701804832999954, 49.800061868000071 ], [ -119.700972008999912, 49.800081295000034 ], [ -119.700987012999917, 49.800350826000034 ], [ -119.700359089999949, 49.80036546900002 ], [ -119.699737767999977, 49.800379955000068 ], [ -119.699733193999919, 49.800297764000042 ], [ -119.699677778999927, 49.799301831000108 ], [ -119.700094184999969, 49.79929212200004 ], [ -119.700079185999954, 49.799022592000057 ], [ -119.701328395999923, 49.798993459000137 ], [ -119.701319179999942, 49.798827943000035 ], [ -119.697924401999941, 49.798631766000021 ], [ -119.697940062999947, 49.798518142000056 ], [ -119.694443498999988, 49.798315971000093 ], [ -119.694445689999938, 49.798300089000108 ], [ -119.693073756, 49.798220733000086 ], [ -119.693086129999955, 49.798131026000114 ], [ -119.692607310999918, 49.798103327000014 ], [ -119.692578168999972, 49.798314585000092 ], [ -119.691967376, 49.798279246000106 ], [ -119.691943349999946, 49.798453399000081 ], [ -119.691293505, 49.798415797000104 ], [ -119.691281622999966, 49.798501914000035 ], [ -119.68690980599996, 49.798248849000096 ], [ -119.686804060999975, 49.799014716000045 ], [ -119.681271504999941, 49.798694206000036 ], [ -119.681302612999929, 49.798469102000084 ], [ -119.681525740999916, 49.796854460000048 ], [ -119.682300402999942, 49.796795804000055 ], [ -119.683131605999961, 49.797000902000043 ], [ -119.683617884999961, 49.796999506000105 ], [ -119.690364679999945, 49.796095093000169 ], [ -119.692505209000018, 49.795605195000043 ], [ -119.69372918499991, 49.795109495000091 ], [ -119.694386397999963, 49.794958606000073 ], [ -119.694903700999987, 49.794749211000081 ], [ -119.696459711, 49.794730695000062 ], [ -119.69684048799995, 49.794605409000056 ], [ -119.697879909, 49.794562587000058 ], [ -119.698440297999952, 49.794368990000109 ], [ -119.699293794999988, 49.793711003000098 ], [ -119.700295599999919, 49.792481899000073 ], [ -119.701064690999928, 49.792095896000092 ], [ -119.702036998999958, 49.791100409000073 ], [ -119.703161917999978, 49.790561994000079 ], [ -119.703393185999943, 49.790224490000071 ], [ -119.703893391999941, 49.789996588000065 ], [ -119.705160895999967, 49.789058113000088 ], [ -119.706199577999911, 49.788466995000093 ], [ -119.706568409999988, 49.788350188000081 ], [ -119.707449287, 49.787736395000103 ], [ -119.70762280799994, 49.787336206000056 ], [ -119.707701303999968, 49.786524400000054 ], [ -119.708507000999973, 49.785498989000111 ], [ -119.708837716999966, 49.785221298000089 ], [ -119.709337189999957, 49.784445088000112 ], [ -119.711250418999953, 49.782644900000058 ], [ -119.711562393999969, 49.782502388000097 ], [ -119.71195031, 49.782485295000079 ], [ -119.712086929999955, 49.782620259000105 ], [ -119.711997026999924, 49.782667276000026 ], [ -119.71172223799999, 49.78283655400007 ], [ -119.711079206999969, 49.783232724000086 ], [ -119.71061140799999, 49.78352088 ], [ -119.709538389999963, 49.784533378000056 ], [ -119.708971543999951, 49.785391790000126 ], [ -119.707947873999927, 49.786419792000046 ], [ -119.707830388999952, 49.786746994000026 ], [ -119.707794602999982, 49.787382407000045 ], [ -119.707612308999984, 49.787744805000074 ], [ -119.70728220699999, 49.787975789000065 ], [ -119.706659340999963, 49.788359703 ], [ -119.706069597999914, 49.788603690000087 ], [ -119.705724686999929, 49.788932313000053 ], [ -119.70553800099999, 49.789044113000074 ], [ -119.705028904999935, 49.789348995000097 ], [ -119.704892524999977, 49.789442680000057 ], [ -119.703740397999965, 49.790234291000054 ], [ -119.703402285999957, 49.790594005000081 ], [ -119.702852219999954, 49.791015502000072 ], [ -119.702825182999945, 49.791078650000031 ], [ -119.7027659, 49.791217189000115 ], [ -119.702778904999974, 49.791426509000111 ], [ -119.702938088999957, 49.791778808000061 ], [ -119.703270579999966, 49.792046298000088 ], [ -119.703400515999974, 49.791963502000044 ], [ -119.704043761, 49.792373192000106 ], [ -119.70405539399998, 49.792380592000079 ], [ -119.704571639999955, 49.79258653100004 ], [ -119.705729407999911, 49.792118808000069 ], [ -119.705392600999986, 49.793401313000118 ], [ -119.70664888899995, 49.79392927300011 ], [ -119.707453092999913, 49.79434777900007 ], [ -119.707782711999954, 49.795054713000106 ], [ -119.708028749999926, 49.795305015000054 ], [ -119.709174059999938, 49.795518 ], [ -119.709200338999935, 49.795462929000095 ], [ -119.709405981999922, 49.795275259000086 ], [ -119.709684348999957, 49.795156813000048 ], [ -119.709950084999932, 49.795099916000069 ], [ -119.71018043699992, 49.795067136000078 ], [ -119.710470188, 49.795067280000062 ], [ -119.711276217999966, 49.795067604000096 ], [ -119.711819718999934, 49.795067812000099 ], [ -119.712604829999947, 49.79507608600003 ], [ -119.713361286999941, 49.795077304000102 ], [ -119.714515271999943, 49.795079159000046 ], [ -119.714602087999978, 49.795079308 ], [ -119.714834625999913, 49.795126364000083 ], [ -119.715506699999978, 49.795262408000063 ], [ -119.717171522999948, 49.796011098000086 ], [ -119.717591991999896, 49.796420797000081 ], [ -119.718544890999979, 49.79724771500004 ], [ -119.718582215999916, 49.798044234000059 ], [ -119.71860243399999, 49.798476092000023 ], [ -119.718616368999974, 49.798773296000064 ], [ -119.718639914999954, 49.799275499000039 ], [ -119.718806492999946, 49.799148799000122 ], [ -119.718934639999958, 49.799114258000081 ], [ -119.719013501999953, 49.799093005000046 ], [ -119.720012992999941, 49.799073798000052 ], [ -119.720294403999958, 49.799126208000096 ], [ -119.720499595999939, 49.801387651000013 ], [ -119.720582826999987, 49.802304454000087 ], [ -119.720555093999963, 49.802392806000071 ], [ -119.717877541999911, 49.802343733000036 ], [ -119.717443214999946, 49.802341003000016 ], [ -119.712850234999948, 49.80256087900004 ], [ -119.707678852999919, 49.802290326000069 ], [ -119.707408183999988, 49.80227615600004 ], [ -119.707419863999974, 49.80219129000011 ] ], [ [ -119.715006567999978, 49.801340818000021 ], [ -119.715180550999918, 49.800075108000058 ], [ -119.714600177999955, 49.800041652000097 ], [ -119.714531825999956, 49.800538873000058 ], [ -119.714340890999921, 49.800527866000074 ], [ -119.714235240999955, 49.801296354000073 ], [ -119.715006567999978, 49.801340818000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10053333", "BldgCostT": "6933333", "sL_LossRatio": "1", "sL_AssetLoss": "984", "sL_BldgLoss": "984", "sL_StrLoss": "984", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041A1D8E9CBEB5DC0E4DDCB5CE4E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.684821242999988, 49.80207613200011 ], [ -119.68480632699999, 49.801806597000088 ], [ -119.686888487999951, 49.801758308000053 ], [ -119.686903414999946, 49.802027841000083 ], [ -119.687088162999942, 49.802023554000087 ], [ -119.686286498999934, 49.805339667000062 ], [ -119.680830869999909, 49.805321222000067 ], [ -119.68076113599993, 49.804059345000013 ], [ -119.681594041999944, 49.804040062000048 ], [ -119.68157914399994, 49.803770526000093 ], [ -119.682412043999975, 49.803751238000125 ], [ -119.682382237999931, 49.803212169000091 ], [ -119.683631573999918, 49.803183224000087 ], [ -119.683616665, 49.802913691000072 ], [ -119.68403310599993, 49.802904040000044 ], [ -119.68398837299999, 49.802095437000048 ], [ -119.684821242999988, 49.80207613200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120295084", "BldgCostT": "82698334", "sL_LossRatio": "0.991927017843418", "sL_AssetLoss": "6169.099477", "sL_BldgLoss": "6119.296447", "sL_StrLoss": "6101.100947", "sL_NStrLoss": "18.1955", "sL_ContLoss": "49.80303", "geom_point": "0101000020E61000007AC08E626DED5DC0F9769EBA6AE54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.707782711999954, 49.795054713000106 ], [ -119.707453092999913, 49.79434777900007 ], [ -119.70664888899995, 49.79392927300011 ], [ -119.705392600999986, 49.793401313000118 ], [ -119.705729407999911, 49.792118808000069 ], [ -119.704571639999955, 49.79258653100004 ], [ -119.704964010999959, 49.792331898000022 ], [ -119.705551317999976, 49.791893584000071 ], [ -119.706069021999966, 49.791413398000032 ], [ -119.706217195999912, 49.791241922000104 ], [ -119.706657582999938, 49.790732299000069 ], [ -119.706942186999953, 49.790346732000089 ], [ -119.708107083999977, 49.788768286000106 ], [ -119.708589011999962, 49.788130138000064 ], [ -119.708763881999985, 49.789009296000074 ], [ -119.708938656999962, 49.790291610000068 ], [ -119.709056251000035, 49.790470814000045 ], [ -119.709898266999943, 49.788960200000062 ], [ -119.71010927899999, 49.788368283000068 ], [ -119.71024646699999, 49.78823178500005 ], [ -119.710416875999925, 49.788209078000065 ], [ -119.710544783999964, 49.788272473000099 ], [ -119.71072167599999, 49.788729582000038 ], [ -119.711074376999989, 49.789083979000061 ], [ -119.712046195999903, 49.789740490000021 ], [ -119.712397688999886, 49.789890800000087 ], [ -119.712990577999932, 49.790140694000058 ], [ -119.713121989999948, 49.790249396000057 ], [ -119.713291170999952, 49.790643281000015 ], [ -119.71330922, 49.790685261000085 ], [ -119.713312103999968, 49.790691984000013 ], [ -119.713268601999928, 49.790767041 ], [ -119.713162782999987, 49.790949599000101 ], [ -119.71307870399994, 49.79109464400009 ], [ -119.712678090999958, 49.791785798000028 ], [ -119.712199086999959, 49.792177106000082 ], [ -119.712058612999982, 49.792408196000082 ], [ -119.712099795999904, 49.792565011000065 ], [ -119.712397605999953, 49.793065207000055 ], [ -119.712764395999898, 49.793337401000016 ], [ -119.713792889999979, 49.793785797000062 ], [ -119.713836274999949, 49.793810486000069 ], [ -119.714165212999958, 49.793997794000035 ], [ -119.714350520999929, 49.794191703000102 ], [ -119.714364140999976, 49.79420063200007 ], [ -119.714826685999981, 49.794503895000034 ], [ -119.715010299999946, 49.794624293 ], [ -119.715430200999918, 49.795108980000116 ], [ -119.715506699999978, 49.795262408000063 ], [ -119.714834625999913, 49.795126364000083 ], [ -119.714602087999978, 49.795079308 ], [ -119.714515271999943, 49.795079159000046 ], [ -119.713361286999941, 49.795077304000102 ], [ -119.712604829999947, 49.79507608600003 ], [ -119.711819718999934, 49.795067812000099 ], [ -119.711276217999966, 49.795067604000096 ], [ -119.710470188, 49.795067280000062 ], [ -119.71018043699992, 49.795067136000078 ], [ -119.709950084999932, 49.795099916000069 ], [ -119.709684348999957, 49.795156813000048 ], [ -119.709405981999922, 49.795275259000086 ], [ -119.709200338999935, 49.795462929000095 ], [ -119.709174059999938, 49.795518 ], [ -119.708028749999926, 49.795305015000054 ], [ -119.707782711999954, 49.795054713000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159205252", "BldgCostT": "104825002", "sL_LossRatio": "0.999999861437447", "sL_AssetLoss": "17336.5743244", "sL_BldgLoss": "17336.5719222", "sL_StrLoss": "17336.4029722", "sL_NStrLoss": "0.16895", "sL_ContLoss": "0.0024022", "geom_point": "0101000020E61000004B286D3F13EE5DC04D3BB15EF7E44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.718639914999954, 49.799275499000039 ], [ -119.718616368999974, 49.798773296000064 ], [ -119.71860243399999, 49.798476092000023 ], [ -119.718582215999916, 49.798044234000059 ], [ -119.718544890999979, 49.79724771500004 ], [ -119.717591991999896, 49.796420797000081 ], [ -119.717171522999948, 49.796011098000086 ], [ -119.715506699999978, 49.795262408000063 ], [ -119.715430200999918, 49.795108980000116 ], [ -119.715010299999946, 49.794624293 ], [ -119.714826685999981, 49.794503895000034 ], [ -119.714364140999976, 49.79420063200007 ], [ -119.714350520999929, 49.794191703000102 ], [ -119.714165212999958, 49.793997794000035 ], [ -119.713836274999949, 49.793810486000069 ], [ -119.713792889999979, 49.793785797000062 ], [ -119.712764395999898, 49.793337401000016 ], [ -119.712397605999953, 49.793065207000055 ], [ -119.712099795999904, 49.792565011000065 ], [ -119.712058612999982, 49.792408196000082 ], [ -119.712199086999959, 49.792177106000082 ], [ -119.712678090999958, 49.791785798000028 ], [ -119.71307870399994, 49.79109464400009 ], [ -119.713162782999987, 49.790949599000101 ], [ -119.713268601999928, 49.790767041 ], [ -119.713312103999968, 49.790691984000013 ], [ -119.71330922, 49.790685261000085 ], [ -119.713291170999952, 49.790643281000015 ], [ -119.713121989999948, 49.790249396000057 ], [ -119.712990577999932, 49.790140694000058 ], [ -119.712397688999886, 49.789890800000087 ], [ -119.712046195999903, 49.789740490000021 ], [ -119.711074376999989, 49.789083979000061 ], [ -119.71072167599999, 49.788729582000038 ], [ -119.710544783999964, 49.788272473000099 ], [ -119.710416875999925, 49.788209078000065 ], [ -119.71024646699999, 49.78823178500005 ], [ -119.71010927899999, 49.788368283000068 ], [ -119.709898266999943, 49.788960200000062 ], [ -119.709056251000035, 49.790470814000045 ], [ -119.708938656999962, 49.790291610000068 ], [ -119.708763881999985, 49.789009296000074 ], [ -119.708589011999962, 49.788130138000064 ], [ -119.708758549999942, 49.787905641000123 ], [ -119.709219834999928, 49.787294761000119 ], [ -119.709277906999901, 49.787217911000042 ], [ -119.709719190999962, 49.786694501000134 ], [ -119.710450492999954, 49.786059506000072 ], [ -119.710866788999923, 49.785748562000023 ], [ -119.711234024999953, 49.785526443000059 ], [ -119.711683108999978, 49.785254853000048 ], [ -119.712522264999933, 49.784838275000034 ], [ -119.713476306999951, 49.784477982000055 ], [ -119.713614437999965, 49.784436287000084 ], [ -119.714424181999959, 49.784203123000026 ], [ -119.714444864999933, 49.784198675000063 ], [ -119.71475219699991, 49.784132861000089 ], [ -119.715145022999963, 49.784048755000065 ], [ -119.716107676999982, 49.78388938800007 ], [ -119.71710183499999, 49.783804950000039 ], [ -119.718026506999948, 49.783769756000076 ], [ -119.718754385999901, 49.783746702000023 ], [ -119.719296176999947, 49.783739120000135 ], [ -119.722368216999911, 49.783704849000067 ], [ -119.723169583999933, 49.783695897000072 ], [ -119.72479321899999, 49.783665687000045 ], [ -119.725032895999945, 49.783848288000058 ], [ -119.72518780899999, 49.783888 ], [ -119.725675887999955, 49.783844694000024 ], [ -119.725900822000014, 49.783871194000049 ], [ -119.725966422999974, 49.783911103 ], [ -119.725975901999988, 49.784014603000074 ], [ -119.725821705999962, 49.784092401000088 ], [ -119.723040190999882, 49.784537088000043 ], [ -119.721811293999934, 49.784686695000069 ], [ -119.72106620999989, 49.784825195000039 ], [ -119.720040012999959, 49.785122706000067 ], [ -119.71981030799995, 49.785222298000122 ], [ -119.719702708999989, 49.785315513000079 ], [ -119.719703814999889, 49.785419301000097 ], [ -119.719816997999942, 49.785498102000048 ], [ -119.72001420399998, 49.785543805000046 ], [ -119.721051294999953, 49.785441 ], [ -119.721306538999926, 49.785511724000045 ], [ -119.72138804699992, 49.785628318000107 ], [ -119.721378351999959, 49.785678342000075 ], [ -119.721370635999946, 49.785704066000022 ], [ -119.721200422999956, 49.78577643700006 ], [ -119.720162601999931, 49.786026316000083 ], [ -119.720089858999941, 49.786109705000058 ], [ -119.720132037, 49.786178055000057 ], [ -119.720250390999936, 49.786209258000078 ], [ -119.720732843999926, 49.786187378000086 ], [ -119.722078641999985, 49.786282951000047 ], [ -119.723636002999953, 49.786471975000033 ], [ -119.724553692999962, 49.786680990000015 ], [ -119.725829295999972, 49.786628042000089 ], [ -119.727361529999925, 49.786289169 ], [ -119.727717355, 49.786255495000027 ], [ -119.727924752999982, 49.786298123000087 ], [ -119.728007873999928, 49.786342621000117 ], [ -119.728089296999954, 49.786460155000029 ], [ -119.72808124099997, 49.786651111 ], [ -119.72818048299996, 49.786720024000012 ], [ -119.728265805, 49.786779103000164 ], [ -119.728918653999983, 49.786760136000105 ], [ -119.729986914000023, 49.786729100000116 ], [ -119.730109894999927, 49.78672719500009 ], [ -119.730778084999898, 49.786593853000092 ], [ -119.731620214, 49.786425790000109 ], [ -119.731987409999988, 49.786288900000137 ], [ -119.731988470999951, 49.786288179000067 ], [ -119.732206187, 49.786146208000019 ], [ -119.732262808999906, 49.786091336000062 ], [ -119.73361569299999, 49.784780007000037 ], [ -119.73398068399996, 49.784557194000023 ], [ -119.734326923999973, 49.784455020000102 ], [ -119.734698028999944, 49.78444625600013 ], [ -119.734692445999926, 49.784347154000038 ], [ -119.734947213999988, 49.784271971000074 ], [ -119.735321030999955, 49.784161659000098 ], [ -119.736657951999959, 49.78413007000006 ], [ -119.736770145999955, 49.784233649000029 ], [ -119.736779360999947, 49.784397082000105 ], [ -119.736829190999984, 49.784395905000096 ], [ -119.736838392999942, 49.784450589000116 ], [ -119.736750799999939, 49.784719461000115 ], [ -119.736709902999934, 49.784844937000052 ], [ -119.736610189999965, 49.785150805000022 ], [ -119.73659035699994, 49.785186612000068 ], [ -119.736576550999928, 49.785211524000076 ], [ -119.736408673999946, 49.785215492000113 ], [ -119.736423868, 49.785485016000059 ], [ -119.73600759199995, 49.785494852000042 ], [ -119.736022781999949, 49.78576437600006 ], [ -119.735606504999964, 49.785774210000092 ], [ -119.735621693999946, 49.786043733000042 ], [ -119.735205414999925, 49.786053568000042 ], [ -119.73522060099999, 49.78632309200006 ], [ -119.734804317999973, 49.786332924000057 ], [ -119.734819502999969, 49.786602448000046 ], [ -119.734403216999965, 49.786612279000103 ], [ -119.734448769000025, 49.787420851 ], [ -119.733199889999966, 49.787450335000152 ], [ -119.733169534999945, 49.786911287000095 ], [ -119.732753248999956, 49.786921111000055 ], [ -119.732798770999949, 49.787729685000095 ], [ -119.732407004999942, 49.787738929000078 ], [ -119.732389594999972, 49.787865978000077 ], [ -119.732397647999974, 49.788009032000105 ], [ -119.732369901999945, 49.788009688000052 ], [ -119.73218356199996, 49.789369396000069 ], [ -119.729965880999927, 49.789241855000093 ], [ -119.729975650999961, 49.789415569000042 ], [ -119.729559338999977, 49.789425383000065 ], [ -119.729574497000016, 49.789694908000058 ], [ -119.72923448599991, 49.789702922000082 ], [ -119.729231655999982, 49.789723563000045 ], [ -119.728977952999969, 49.789708968000078 ], [ -119.728325555999959, 49.78972434000012 ], [ -119.728340706999958, 49.789993867000057 ], [ -119.726259121999973, 49.79004289100012 ], [ -119.726289399999956, 49.790581943000035 ], [ -119.725040431999915, 49.790611341000044 ], [ -119.724995034999935, 49.789802763000075 ], [ -119.725827665999972, 49.78978316700006 ], [ -119.725818633999921, 49.789622332000086 ], [ -119.721200639999935, 49.789356428000048 ], [ -119.721202511999977, 49.789342791000067 ], [ -119.719129673999987, 49.789223371000048 ], [ -119.71913080399996, 49.789215142000096 ], [ -119.718702461999939, 49.789190460000043 ], [ -119.718766073999973, 49.788727298000033 ], [ -119.716717820999946, 49.788609248000064 ], [ -119.716595805999987, 49.789497355000066 ], [ -119.715804343999977, 49.789451729000078 ], [ -119.715833389999943, 49.789970821000054 ], [ -119.717579700999948, 49.790071482000052 ], [ -119.71725992199994, 49.792399221000103 ], [ -119.71797924099999, 49.792440676000091 ], [ -119.71797796, 49.79245000100007 ], [ -119.719188304999989, 49.792519743000113 ], [ -119.719155139999955, 49.792761220000131 ], [ -119.719551107999976, 49.792784034000078 ], [ -119.71925370299999, 49.794949459000087 ], [ -119.719702845999961, 49.794975334000092 ], [ -119.719462949999979, 49.796722012000068 ], [ -119.720800068999935, 49.796799032000145 ], [ -119.720672386999965, 49.797658869000045 ], [ -119.720294403999958, 49.799126208000096 ], [ -119.720012992999941, 49.799073798000052 ], [ -119.719013501999953, 49.799093005000046 ], [ -119.718934639999958, 49.799114258000081 ], [ -119.718806492999946, 49.799148799000122 ], [ -119.718639914999954, 49.799275499000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "369488137", "BldgCostT": "241922022", "sL_LossRatio": "0.972337612346719", "sL_AssetLoss": "25135.212792", "sL_BldgLoss": "24439.912792", "sL_StrLoss": "24188.812792", "sL_NStrLoss": "251.1", "sL_ContLoss": "695.3", "geom_point": "0101000020E61000006A4A040D2AEE5DC0DA3EEC9E1FE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.704043761, 49.792373192000106 ], [ -119.703400515999974, 49.791963502000044 ], [ -119.703270579999966, 49.792046298000088 ], [ -119.702938088999957, 49.791778808000061 ], [ -119.702778904999974, 49.791426509000111 ], [ -119.7027659, 49.791217189000115 ], [ -119.702825182999945, 49.791078650000031 ], [ -119.702852219999954, 49.791015502000072 ], [ -119.703402285999957, 49.790594005000081 ], [ -119.703740397999965, 49.790234291000054 ], [ -119.704892524999977, 49.789442680000057 ], [ -119.705028904999935, 49.789348995000097 ], [ -119.70553800099999, 49.789044113000074 ], [ -119.705724686999929, 49.788932313000053 ], [ -119.706069597999914, 49.788603690000087 ], [ -119.706659340999963, 49.788359703 ], [ -119.70728220699999, 49.787975789000065 ], [ -119.707612308999984, 49.787744805000074 ], [ -119.707794602999982, 49.787382407000045 ], [ -119.707830388999952, 49.786746994000026 ], [ -119.707947873999927, 49.786419792000046 ], [ -119.708971543999951, 49.785391790000126 ], [ -119.709538389999963, 49.784533378000056 ], [ -119.71061140799999, 49.78352088 ], [ -119.711079206999969, 49.783232724000086 ], [ -119.71172223799999, 49.78283655400007 ], [ -119.711997026999924, 49.782667276000026 ], [ -119.712086929999955, 49.782620259000105 ], [ -119.71195031, 49.782485295000079 ], [ -119.712074899999919, 49.78245538700007 ], [ -119.711945203999946, 49.782152109000087 ], [ -119.714793282999935, 49.781928526000073 ], [ -119.714790882999978, 49.781945984000053 ], [ -119.715383678999927, 49.781932085000093 ], [ -119.715379561999924, 49.781858491000087 ], [ -119.716525280000013, 49.781605007000074 ], [ -119.716801498999956, 49.781543890000094 ], [ -119.71786630099993, 49.781428594000019 ], [ -119.718953998999922, 49.781519707000058 ], [ -119.719528928999949, 49.78152632200004 ], [ -119.719531087999925, 49.78156487200004 ], [ -119.72063213699991, 49.781539007000113 ], [ -119.721553384999979, 49.781549591000086 ], [ -119.722059934999933, 49.781569427000072 ], [ -119.722393169, 49.781582468000096 ], [ -119.724517536999926, 49.781665555000117 ], [ -119.726133294999968, 49.781728725000114 ], [ -119.726273059, 49.78173419300002 ], [ -119.72658050899993, 49.781746192000114 ], [ -119.72665077299996, 49.781741463000081 ], [ -119.726630506, 49.781889244000098 ], [ -119.726768666999973, 49.781897197000092 ], [ -119.726917477999976, 49.78190576300009 ], [ -119.727678573999981, 49.781912997000049 ], [ -119.728257665999962, 49.781899353000078 ], [ -119.728718127999969, 49.781877033000058 ], [ -119.728715594000022, 49.78183193900005 ], [ -119.72870362399999, 49.781618963000042 ], [ -119.729536111999963, 49.781599342000156 ], [ -119.729527759999925, 49.781450775000103 ], [ -119.730471605999981, 49.781249101000071 ], [ -119.731022793999955, 49.780957188000123 ], [ -119.731571077999902, 49.780471825000113 ], [ -119.731802612999942, 49.78046636200007 ], [ -119.731962363000022, 49.780274966000015 ], [ -119.731939560999933, 49.779869736000101 ], [ -119.73205854299999, 49.779665757000082 ], [ -119.732176680999927, 49.779463200000087 ], [ -119.732685742999948, 49.778631190000056 ], [ -119.732698850999938, 49.778609773000035 ], [ -119.732985774, 49.778140837000073 ], [ -119.733224538999963, 49.777750550000086 ], [ -119.733380465999971, 49.777495669000061 ], [ -119.734076808999973, 49.776357397000027 ], [ -119.73416051099997, 49.776220589000111 ], [ -119.734237402999938, 49.77609489300005 ], [ -119.734377446999972, 49.775813334000063 ], [ -119.734629340999987, 49.775306902000096 ], [ -119.735011598999947, 49.774538288000031 ], [ -119.735614695, 49.77368801000005 ], [ -119.73600969499995, 49.773525593000024 ], [ -119.736270180999938, 49.773222301000068 ], [ -119.736037902999968, 49.772815006 ], [ -119.736144393999936, 49.772722406000128 ], [ -119.736524494000022, 49.772802215000077 ], [ -119.736825591999917, 49.772705298000034 ], [ -119.736927892000011, 49.772577096000099 ], [ -119.736879413999986, 49.772443292000048 ], [ -119.736665806999923, 49.772340704000072 ], [ -119.736831695999911, 49.772075787000084 ], [ -119.737633398999961, 49.77151749500009 ], [ -119.737898997999963, 49.771061795000065 ], [ -119.738007713999963, 49.771021889000032 ], [ -119.737956183999984, 49.771329493000081 ], [ -119.738096687999985, 49.771362306000086 ], [ -119.738815007, 49.770813995000083 ], [ -119.738810398999959, 49.770715699000064 ], [ -119.738172787999957, 49.770758410000049 ], [ -119.73821858799991, 49.770576108000057 ], [ -119.739101702999918, 49.770493486000099 ], [ -119.73980760399999, 49.769936609000091 ], [ -119.739936635999953, 49.769895914000131 ], [ -119.740147004999969, 49.77008349000014 ], [ -119.740432410999944, 49.770337944000104 ], [ -119.740275892999989, 49.770423858000115 ], [ -119.740244120999961, 49.77044126800012 ], [ -119.739621997999947, 49.770782496000081 ], [ -119.739267001999963, 49.771065494000069 ], [ -119.738927216999926, 49.771482091000102 ], [ -119.738716798999988, 49.771950300000086 ], [ -119.738679036999926, 49.772240925000119 ], [ -119.738607673999965, 49.77279015600007 ], [ -119.738560297, 49.773154686000055 ], [ -119.738439603999922, 49.773446607000061 ], [ -119.738228105999923, 49.773816072000081 ], [ -119.737697832999956, 49.774742414000066 ], [ -119.737316446999969, 49.775408649000049 ], [ -119.737126600999943, 49.775740299000049 ], [ -119.73663070500001, 49.776410546000051 ], [ -119.736579386999964, 49.776479890000068 ], [ -119.736138593999968, 49.776954027000073 ], [ -119.73603806399997, 49.777062171000075 ], [ -119.735292172999948, 49.777864474000062 ], [ -119.734743175999952, 49.778454900000028 ], [ -119.734524670999946, 49.778689963000083 ], [ -119.733585020999939, 49.779700531000046 ], [ -119.732450156, 49.780920973000029 ], [ -119.732417211999916, 49.780951308000098 ], [ -119.73241738599998, 49.780954392000055 ], [ -119.732093505999956, 49.781269146000014 ], [ -119.73207145899994, 49.781269666000128 ], [ -119.732020952999989, 49.781316170000167 ], [ -119.732022205999954, 49.781338437000038 ], [ -119.73197358100002, 49.781385692000079 ], [ -119.73178193699998, 49.781546379000076 ], [ -119.731770641999958, 49.781546646000059 ], [ -119.731658761999881, 49.781649659000088 ], [ -119.731644423999938, 49.78166168000007 ], [ -119.731624289999942, 49.781673969000053 ], [ -119.731624537999949, 49.781678355000082 ], [ -119.73146978699998, 49.781808107000131 ], [ -119.731446068999944, 49.781824186000037 ], [ -119.73137544299999, 49.7818258530001 ], [ -119.731221330999915, 49.781919914000092 ], [ -119.731224397999966, 49.781974458000079 ], [ -119.73103360499999, 49.782103798000058 ], [ -119.730921316999968, 49.7821064460001 ], [ -119.730818668999945, 49.782171260000034 ], [ -119.730822314999955, 49.78223607900005 ], [ -119.730490745999973, 49.782414865000085 ], [ -119.730058597, 49.782647905000083 ], [ -119.729189709999986, 49.783008705000071 ], [ -119.728091702999933, 49.783321991000044 ], [ -119.728047880999981, 49.783334485000125 ], [ -119.72800469, 49.78334681500008 ], [ -119.726921584999928, 49.78354179200003 ], [ -119.726729832999965, 49.783561591000073 ], [ -119.726169499999969, 49.783619389000044 ], [ -119.72479321899999, 49.783665687000045 ], [ -119.723169583999933, 49.783695897000072 ], [ -119.722368216999911, 49.783704849000067 ], [ -119.719296176999947, 49.783739120000135 ], [ -119.718754385999901, 49.783746702000023 ], [ -119.718026506999948, 49.783769756000076 ], [ -119.71710183499999, 49.783804950000039 ], [ -119.716107676999982, 49.78388938800007 ], [ -119.715145022999963, 49.784048755000065 ], [ -119.71475219699991, 49.784132861000089 ], [ -119.714444864999933, 49.784198675000063 ], [ -119.714424181999959, 49.784203123000026 ], [ -119.713614437999965, 49.784436287000084 ], [ -119.713476306999951, 49.784477982000055 ], [ -119.712522264999933, 49.784838275000034 ], [ -119.711683108999978, 49.785254853000048 ], [ -119.711234024999953, 49.785526443000059 ], [ -119.710866788999923, 49.785748562000023 ], [ -119.710450492999954, 49.786059506000072 ], [ -119.709719190999962, 49.786694501000134 ], [ -119.709277906999901, 49.787217911000042 ], [ -119.709219834999928, 49.787294761000119 ], [ -119.708758549999942, 49.787905641000123 ], [ -119.708589011999962, 49.788130138000064 ], [ -119.708107083999977, 49.788768286000106 ], [ -119.706942186999953, 49.790346732000089 ], [ -119.706657582999938, 49.790732299000069 ], [ -119.706217195999912, 49.791241922000104 ], [ -119.706069021999966, 49.791413398000032 ], [ -119.705551317999976, 49.791893584000071 ], [ -119.704964010999959, 49.792331898000022 ], [ -119.704571639999955, 49.79258653100004 ], [ -119.70405539399998, 49.792380592000079 ], [ -119.704043761, 49.792373192000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35862750", "BldgCostT": "22995000", "sL_LossRatio": "1", "sL_AssetLoss": "3621", "sL_BldgLoss": "3621", "sL_StrLoss": "3621", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A02D6898FEE5DC09E226EEB7AE44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.722078641999985, 49.786282951000047 ], [ -119.720732843999926, 49.786187378000086 ], [ -119.720250390999936, 49.786209258000078 ], [ -119.720132037, 49.786178055000057 ], [ -119.720089858999941, 49.786109705000058 ], [ -119.720162601999931, 49.786026316000083 ], [ -119.721200422999956, 49.78577643700006 ], [ -119.721370635999946, 49.785704066000022 ], [ -119.721378351999959, 49.785678342000075 ], [ -119.72138804699992, 49.785628318000107 ], [ -119.721306538999926, 49.785511724000045 ], [ -119.721051294999953, 49.785441 ], [ -119.72001420399998, 49.785543805000046 ], [ -119.719816997999942, 49.785498102000048 ], [ -119.719703814999889, 49.785419301000097 ], [ -119.719702708999989, 49.785315513000079 ], [ -119.71981030799995, 49.785222298000122 ], [ -119.720040012999959, 49.785122706000067 ], [ -119.72106620999989, 49.784825195000039 ], [ -119.721811293999934, 49.784686695000069 ], [ -119.723040190999882, 49.784537088000043 ], [ -119.725821705999962, 49.784092401000088 ], [ -119.725975901999988, 49.784014603000074 ], [ -119.725966422999974, 49.783911103 ], [ -119.725900822000014, 49.783871194000049 ], [ -119.725675887999955, 49.783844694000024 ], [ -119.72518780899999, 49.783888 ], [ -119.725032895999945, 49.783848288000058 ], [ -119.72479321899999, 49.783665687000045 ], [ -119.726169499999969, 49.783619389000044 ], [ -119.726729832999965, 49.783561591000073 ], [ -119.726921584999928, 49.78354179200003 ], [ -119.72800469, 49.78334681500008 ], [ -119.728047880999981, 49.783334485000125 ], [ -119.728091702999933, 49.783321991000044 ], [ -119.729189709999986, 49.783008705000071 ], [ -119.730058597, 49.782647905000083 ], [ -119.730490745999973, 49.782414865000085 ], [ -119.730822314999955, 49.78223607900005 ], [ -119.730824922999929, 49.782282442000046 ], [ -119.731818185999927, 49.782339572000055 ], [ -119.731556310999963, 49.784250528000037 ], [ -119.732185255999966, 49.78423568900012 ], [ -119.732230763999937, 49.785044264000071 ], [ -119.732647035999946, 49.785034441000107 ], [ -119.732616691999965, 49.784495392000068 ], [ -119.734326923999973, 49.784455020000102 ], [ -119.73398068399996, 49.784557194000023 ], [ -119.73361569299999, 49.784780007000037 ], [ -119.732262808999906, 49.786091336000062 ], [ -119.732206187, 49.786146208000019 ], [ -119.731988470999951, 49.786288179000067 ], [ -119.731987409999988, 49.786288900000137 ], [ -119.731620214, 49.786425790000109 ], [ -119.730778084999898, 49.786593853000092 ], [ -119.730109894999927, 49.78672719500009 ], [ -119.729986914000023, 49.786729100000116 ], [ -119.728918653999983, 49.786760136000105 ], [ -119.728265805, 49.786779103000164 ], [ -119.72818048299996, 49.786720024000012 ], [ -119.72808124099997, 49.786651111 ], [ -119.728089296999954, 49.786460155000029 ], [ -119.728007873999928, 49.786342621000117 ], [ -119.727924752999982, 49.786298123000087 ], [ -119.727717355, 49.786255495000027 ], [ -119.727361529999925, 49.786289169 ], [ -119.725829295999972, 49.786628042000089 ], [ -119.724553692999962, 49.786680990000015 ], [ -119.723636002999953, 49.786471975000033 ], [ -119.722078641999985, 49.786282951000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147581417", "BldgCostT": "99106667", "sL_LossRatio": "0.993582455521245", "sL_AssetLoss": "15831.600441", "sL_BldgLoss": "15730.000441", "sL_StrLoss": "15693.100441", "sL_NStrLoss": "36.9", "sL_ContLoss": "101.6", "geom_point": "0101000020E6100000014597FDDBEF5DC08128A95DDDE24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.733585020999939, 49.779700531000046 ], [ -119.734524670999946, 49.778689963000083 ], [ -119.734743175999952, 49.778454900000028 ], [ -119.735292172999948, 49.777864474000062 ], [ -119.73603806399997, 49.777062171000075 ], [ -119.736138593999968, 49.776954027000073 ], [ -119.736579386999964, 49.776479890000068 ], [ -119.73663070500001, 49.776410546000051 ], [ -119.737126600999943, 49.775740299000049 ], [ -119.737316446999969, 49.775408649000049 ], [ -119.737697832999956, 49.774742414000066 ], [ -119.738228105999923, 49.773816072000081 ], [ -119.738439603999922, 49.773446607000061 ], [ -119.738560297, 49.773154686000055 ], [ -119.738607673999965, 49.77279015600007 ], [ -119.738679036999926, 49.772240925000119 ], [ -119.738716798999988, 49.771950300000086 ], [ -119.738927216999926, 49.771482091000102 ], [ -119.739267001999963, 49.771065494000069 ], [ -119.739621997999947, 49.770782496000081 ], [ -119.740244120999961, 49.77044126800012 ], [ -119.740275892999989, 49.770423858000115 ], [ -119.740432410999944, 49.770337944000104 ], [ -119.740738780999934, 49.770389863000077 ], [ -119.741088581000028, 49.770348563000077 ], [ -119.741434107999936, 49.77024653600008 ], [ -119.742532252, 49.769928584000105 ], [ -119.743106240999964, 49.769755694000025 ], [ -119.743442871999932, 49.769617034000106 ], [ -119.74371457, 49.769463800000054 ], [ -119.744105501, 49.769152196000114 ], [ -119.74446084899995, 49.768917087000027 ], [ -119.745234996999969, 49.768686148 ], [ -119.74564990199994, 49.768524909000107 ], [ -119.74595052199993, 49.768364309000084 ], [ -119.746598197999944, 49.767753209000091 ], [ -119.747843518999957, 49.766857704000067 ], [ -119.747942098999914, 49.767002418000068 ], [ -119.747977385999945, 49.767243710000081 ], [ -119.747995908999954, 49.768668587000057 ], [ -119.748318797999943, 49.768497486000044 ], [ -119.748724388999946, 49.768200292000088 ], [ -119.74971181599993, 49.767651998000083 ], [ -119.75023171, 49.767140091000037 ], [ -119.750610920999989, 49.766862988000163 ], [ -119.751104200999961, 49.766616883000061 ], [ -119.751120150999924, 49.766612580000171 ], [ -119.751454291, 49.76652229600009 ], [ -119.751856786999952, 49.766461389000028 ], [ -119.752182588999958, 49.766452989000094 ], [ -119.752352909999971, 49.76652139900002 ], [ -119.75249929899999, 49.766674299000016 ], [ -119.752544452999985, 49.766826558000083 ], [ -119.752602317999958, 49.767021506000034 ], [ -119.752843804999941, 49.767222211000082 ], [ -119.75310310799992, 49.767282208000054 ], [ -119.753426198999975, 49.767313383000079 ], [ -119.753601020999952, 49.767290596000066 ], [ -119.75395522499997, 49.76724440300012 ], [ -119.754281616999933, 49.767343491000069 ], [ -119.754431396999962, 49.767430600000054 ], [ -119.754930612999942, 49.767824911000105 ], [ -119.755150614999948, 49.767846505000072 ], [ -119.755482230999945, 49.767711332000033 ], [ -119.755832087999977, 49.767568710000084 ], [ -119.75616598699996, 49.767245611000142 ], [ -119.75626297599996, 49.767024596000105 ], [ -119.756493309999939, 49.766888794000089 ], [ -119.756758196999925, 49.766805581000042 ], [ -119.757182798999949, 49.766766702000055 ], [ -119.758750090999939, 49.766804994000054 ], [ -119.760771973999937, 49.76704654800016 ], [ -119.76324456699993, 49.766788429000037 ], [ -119.763215753999972, 49.766999841000064 ], [ -119.763102863999947, 49.76699337900002 ], [ -119.762951601999973, 49.768103144000065 ], [ -119.76269507899994, 49.768088460000051 ], [ -119.762589628999962, 49.768862051000035 ], [ -119.761513759, 49.768800455000047 ], [ -119.761332244, 49.770131776000049 ], [ -119.759623869000023, 49.770033947000037 ], [ -119.75960097399999, 49.770201816000146 ], [ -119.758638505999954, 49.770146688000104 ], [ -119.758605542999987, 49.770388339000114 ], [ -119.758174481999944, 49.770363646000149 ], [ -119.758074759999928, 49.771094649000126 ], [ -119.757921768999964, 49.771085884000094 ], [ -119.757867871999977, 49.771480953000058 ], [ -119.756883746999961, 49.771424570000093 ], [ -119.756918933999941, 49.772044452000102 ], [ -119.756580137999933, 49.77205251700007 ], [ -119.756528466999939, 49.772431181000115 ], [ -119.756524155999955, 49.772430933000102 ], [ -119.756548675999952, 49.772862918000051 ], [ -119.75613251599999, 49.772872825000022 ], [ -119.75614781199998, 49.773142345000103 ], [ -119.755731649999959, 49.773152250000116 ], [ -119.755746942999963, 49.773421770000063 ], [ -119.754498447999964, 49.773451479000123 ], [ -119.754513734999975, 49.773720998000044 ], [ -119.75436951099995, 49.773724429000062 ], [ -119.754361567999936, 49.773782617000037 ], [ -119.748499385999978, 49.773806685000061 ], [ -119.74812703399995, 49.777141910000125 ], [ -119.747678537999917, 49.777116179000124 ], [ -119.747590879999933, 49.777757572000034 ], [ -119.745289254999932, 49.777625495000052 ], [ -119.745250187999943, 49.777911226000107 ], [ -119.74518259199999, 49.777907346000134 ], [ -119.74505783099994, 49.778819828000046 ], [ -119.744353890999946, 49.778779422000099 ], [ -119.744332704999962, 49.778934345000081 ], [ -119.738802170000014, 49.778616737000029 ], [ -119.738834500999985, 49.778380517000059 ], [ -119.73784935599997, 49.778323912000097 ], [ -119.737985608999949, 49.777328531000066 ], [ -119.736957927999967, 49.777269473000075 ], [ -119.736706389999952, 49.779106720000073 ], [ -119.734389777, 49.778973554000054 ], [ -119.734394407999957, 49.779055773 ], [ -119.734810628999981, 49.779045943000014 ], [ -119.734871354999939, 49.780124039000043 ], [ -119.73445512499994, 49.780133870000022 ], [ -119.734470302999966, 49.780403394000118 ], [ -119.733221606999919, 49.780432875000045 ], [ -119.733236778999981, 49.780702401000084 ], [ -119.732640774999979, 49.780716467000062 ], [ -119.732466024999908, 49.780906361000085 ], [ -119.732450156, 49.780920973000029 ], [ -119.733585020999939, 49.779700531000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135344167", "BldgCostT": "88896667", "sL_LossRatio": "0.997218140240309", "sL_AssetLoss": "12725.3", "sL_BldgLoss": "12689.9", "sL_StrLoss": "12677", "sL_NStrLoss": "12.9", "sL_ContLoss": "35.4", "geom_point": "0101000020E610000050C6193F64F05DC0DFF0ED23D8E14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.74863470799994, 49.766338016000113 ], [ -119.7495346799999, 49.765889391000037 ], [ -119.750157527999932, 49.765483107000101 ], [ -119.750284016999942, 49.765400596000106 ], [ -119.750456420999981, 49.765330176000099 ], [ -119.751136749999972, 49.765052307000154 ], [ -119.751468268999957, 49.764817617000126 ], [ -119.751661876999918, 49.764522631000084 ], [ -119.751677026999985, 49.764433410000045 ], [ -119.751692273999979, 49.764343960000097 ], [ -119.751753316999924, 49.763985263000045 ], [ -119.75195071, 49.763753715000085 ], [ -119.752322130999971, 49.763461717000105 ], [ -119.752539338999924, 49.763325102000053 ], [ -119.75295755499999, 49.763062080000118 ], [ -119.753266563999944, 49.762920913000137 ], [ -119.75416731199999, 49.762720663000025 ], [ -119.756904418999966, 49.762313308000024 ], [ -119.757164606999964, 49.762223403000085 ], [ -119.757339596999898, 49.762094387000069 ], [ -119.758130177999959, 49.761322701000019 ], [ -119.758651598999904, 49.760430687000046 ], [ -119.758970317999925, 49.76003460600004 ], [ -119.759207620999945, 49.759826102000012 ], [ -119.759531109999926, 49.759660387000061 ], [ -119.759926323999963, 49.759561229000063 ], [ -119.760311042999945, 49.759528143000026 ], [ -119.761482711999946, 49.75954650799999 ], [ -119.761923932999963, 49.759497728000063 ], [ -119.761693964999935, 49.760112030000066 ], [ -119.76144235199996, 49.760752201000052 ], [ -119.761128516999946, 49.761480875000082 ], [ -119.761057960999921, 49.761783789000106 ], [ -119.760978026, 49.762745499000111 ], [ -119.76097095599998, 49.762830622000067 ], [ -119.761021254999932, 49.763330068000137 ], [ -119.761213593999983, 49.763973085000096 ], [ -119.761467390999911, 49.764686413000085 ], [ -119.761468726999922, 49.764799345000085 ], [ -119.761386211999962, 49.764903861000086 ], [ -119.761033440999924, 49.765194399000031 ], [ -119.760777359999963, 49.765405280000074 ], [ -119.760603401999973, 49.765551147000082 ], [ -119.759821006999928, 49.766207286000096 ], [ -119.759537832999925, 49.766400726000015 ], [ -119.759099021999958, 49.766700427000025 ], [ -119.758991233999964, 49.766775509000063 ], [ -119.758830939999925, 49.766806956000018 ], [ -119.758750090999939, 49.766804994000054 ], [ -119.757182798999949, 49.766766702000055 ], [ -119.756758196999925, 49.766805581000042 ], [ -119.756493309999939, 49.766888794000089 ], [ -119.75626297599996, 49.767024596000105 ], [ -119.75616598699996, 49.767245611000142 ], [ -119.755832087999977, 49.767568710000084 ], [ -119.755482230999945, 49.767711332000033 ], [ -119.755150614999948, 49.767846505000072 ], [ -119.754930612999942, 49.767824911000105 ], [ -119.754431396999962, 49.767430600000054 ], [ -119.754281616999933, 49.767343491000069 ], [ -119.75395522499997, 49.76724440300012 ], [ -119.753601020999952, 49.767290596000066 ], [ -119.753426198999975, 49.767313383000079 ], [ -119.75310310799992, 49.767282208000054 ], [ -119.752843804999941, 49.767222211000082 ], [ -119.752602317999958, 49.767021506000034 ], [ -119.752544452999985, 49.766826558000083 ], [ -119.75249929899999, 49.766674299000016 ], [ -119.752352909999971, 49.76652139900002 ], [ -119.752182588999958, 49.766452989000094 ], [ -119.751856786999952, 49.766461389000028 ], [ -119.751454291, 49.76652229600009 ], [ -119.751120150999924, 49.766612580000171 ], [ -119.751104200999961, 49.766616883000061 ], [ -119.750610920999989, 49.766862988000163 ], [ -119.75023171, 49.767140091000037 ], [ -119.74971181599993, 49.767651998000083 ], [ -119.748724388999946, 49.768200292000088 ], [ -119.748318797999943, 49.768497486000044 ], [ -119.747995908999954, 49.768668587000057 ], [ -119.747977385999945, 49.767243710000081 ], [ -119.747942098999914, 49.767002418000068 ], [ -119.747843518999957, 49.766857704000067 ], [ -119.74863470799994, 49.766338016000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114258084", "BldgCostT": "78038334", "sL_LossRatio": "1", "sL_AssetLoss": "12386.1", "sL_BldgLoss": "12386.1", "sL_StrLoss": "12386.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000864AE9BAACF05DC043EAC93EC0E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.764657600999925, 49.74587311100008 ], [ -119.764661484999948, 49.745543085000108 ], [ -119.764662204999979, 49.745481604000091 ], [ -119.764783084999976, 49.745411712000106 ], [ -119.764974382999981, 49.74551680600009 ], [ -119.765251273999979, 49.745668925000068 ], [ -119.765404990999926, 49.745753402000048 ], [ -119.765641523999989, 49.745760719000053 ], [ -119.765739345999975, 49.745763734000079 ], [ -119.766905833999942, 49.745799796000043 ], [ -119.766394313, 49.74750740800004 ], [ -119.766468098999965, 49.747783411000093 ], [ -119.76678729, 49.747995804000027 ], [ -119.767196600999938, 49.748344191000129 ], [ -119.767207968999983, 49.748710964000061 ], [ -119.767213394999914, 49.748885993000059 ], [ -119.767170107999974, 49.74931453800005 ], [ -119.76685338399993, 49.752450595000042 ], [ -119.766850576999957, 49.752493789000063 ], [ -119.766797576999977, 49.7533100630001 ], [ -119.76673502899996, 49.754273112000099 ], [ -119.766681883999922, 49.755090715000101 ], [ -119.766412214999917, 49.755179106000107 ], [ -119.765956205999885, 49.755408498000065 ], [ -119.765883139999957, 49.755459358000067 ], [ -119.765187971999978, 49.755943400000085 ], [ -119.763948131999911, 49.756806680000125 ], [ -119.763312079999977, 49.757263229000081 ], [ -119.763034878999989, 49.757549806000071 ], [ -119.762851102999932, 49.757804720000095 ], [ -119.761923932999963, 49.759497728000063 ], [ -119.761482711999946, 49.75954650799999 ], [ -119.760311042999945, 49.759528143000026 ], [ -119.759926323999963, 49.759561229000063 ], [ -119.759531109999926, 49.759660387000061 ], [ -119.759207620999945, 49.759826102000012 ], [ -119.758970317999925, 49.76003460600004 ], [ -119.758651598999904, 49.760430687000046 ], [ -119.758130177999959, 49.761322701000019 ], [ -119.757339596999898, 49.762094387000069 ], [ -119.757164606999964, 49.762223403000085 ], [ -119.756904418999966, 49.762313308000024 ], [ -119.75416731199999, 49.762720663000025 ], [ -119.753266563999944, 49.762920913000137 ], [ -119.75295755499999, 49.763062080000118 ], [ -119.752539338999924, 49.763325102000053 ], [ -119.752322130999971, 49.763461717000105 ], [ -119.75195071, 49.763753715000085 ], [ -119.751753316999924, 49.763985263000045 ], [ -119.751692273999979, 49.764343960000097 ], [ -119.751677026999985, 49.764433410000045 ], [ -119.751661876999918, 49.764522631000084 ], [ -119.751515305999988, 49.764382821 ], [ -119.751314287999975, 49.764191202000113 ], [ -119.751136881, 49.763878599000044 ], [ -119.751059493999932, 49.763475985000049 ], [ -119.75106340499994, 49.762804498000087 ], [ -119.751114117999933, 49.7625356100001 ], [ -119.751128269000034, 49.762512193000077 ], [ -119.751340700999933, 49.762161297000034 ], [ -119.751486227999948, 49.761998111000068 ], [ -119.752054504999961, 49.76136080000002 ], [ -119.752837921999927, 49.760574715000097 ], [ -119.753003604999947, 49.7604085030001 ], [ -119.753431984999935, 49.759821006000038 ], [ -119.753699529999949, 49.759534225000031 ], [ -119.754316305999964, 49.758873105000113 ], [ -119.755440496999924, 49.757534498000012 ], [ -119.75604454199997, 49.756865387000062 ], [ -119.756447893999933, 49.756418596000074 ], [ -119.758078291999965, 49.755320195000088 ], [ -119.758770907999946, 49.754172689000058 ], [ -119.760123794999927, 49.753463793000044 ], [ -119.761362703999978, 49.752528091000094 ], [ -119.762602596999926, 49.752044798000043 ], [ -119.762846809999971, 49.751805888 ], [ -119.763206179999969, 49.751447299000063 ], [ -119.763917679999921, 49.750557573 ], [ -119.764015280999942, 49.75043549100004 ], [ -119.764391598999936, 49.749840406 ], [ -119.764440912999987, 49.74965744900004 ], [ -119.764476, 49.749527390000019 ], [ -119.764334897999944, 49.748580402000051 ], [ -119.764359808999956, 49.74770241000008 ], [ -119.764498915999951, 49.746847871000099 ], [ -119.764532666999955, 49.746640510000063 ], [ -119.764657600999925, 49.74587311100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "148309750", "BldgCostT": "101755000", "sL_LossRatio": "0.999997763347", "sL_AssetLoss": "16471.03954", "sL_BldgLoss": "16471.0027", "sL_StrLoss": "16470.8", "sL_NStrLoss": "0.2027", "sL_ContLoss": "0.03684", "geom_point": "0101000020E6100000319F7B2874F05DC0F9788D0269E04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.742064897999953, 49.768335789000048 ], [ -119.74175760599995, 49.768315911000109 ], [ -119.741710782999945, 49.768461200000061 ], [ -119.741596099999981, 49.768401296000043 ], [ -119.741665692999945, 49.768156399000119 ], [ -119.741892185999959, 49.767988297000045 ], [ -119.742015015999982, 49.767968396000079 ], [ -119.742052381999912, 49.768102302000045 ], [ -119.742506502999987, 49.768063809000047 ], [ -119.743092700999966, 49.767853007000021 ], [ -119.743464008999965, 49.76753828400004 ], [ -119.743662615999966, 49.767136599000075 ], [ -119.744126804999951, 49.766972896000027 ], [ -119.74603760399999, 49.765146989000129 ], [ -119.747018598999915, 49.763855302000131 ], [ -119.749432902999928, 49.760595188000138 ], [ -119.74963119100002, 49.76017649700001 ], [ -119.752035101, 49.757024808000089 ], [ -119.755428107999975, 49.753427194000054 ], [ -119.755747408, 49.752924506000085 ], [ -119.757681395999924, 49.751286595000032 ], [ -119.759050580999954, 49.749480701000017 ], [ -119.760856511999975, 49.745605404000095 ], [ -119.760855093999979, 49.744840611000051 ], [ -119.76038179499993, 49.743341001000083 ], [ -119.760343921999961, 49.742508526000115 ], [ -119.76048867499999, 49.74251682000007 ], [ -119.760491903999963, 49.742493126000042 ], [ -119.76034283300001, 49.742484583000106 ], [ -119.760326589, 49.742127500000073 ], [ -119.760707809999985, 49.741498001000103 ], [ -119.76156439499999, 49.740946912000034 ], [ -119.764714815, 49.739495589000093 ], [ -119.764750826999972, 49.739473284000034 ], [ -119.76565150499998, 49.739360920000131 ], [ -119.766959677000017, 49.739914309000071 ], [ -119.767500008999946, 49.739897311000064 ], [ -119.767662708999978, 49.739929194000062 ], [ -119.76774208099998, 49.740010515000051 ], [ -119.76771151699991, 49.740251966000066 ], [ -119.767679910999959, 49.740501558000048 ], [ -119.767630404, 49.740892492000022 ], [ -119.767655706000014, 49.741003199000055 ], [ -119.76774893699999, 49.741147515000115 ], [ -119.767779916000023, 49.741195403000056 ], [ -119.767637182999962, 49.742162287000063 ], [ -119.767337793, 49.742939713000105 ], [ -119.767339198999977, 49.743174746000051 ], [ -119.767339479999961, 49.743224201000089 ], [ -119.767332893999964, 49.743225719000094 ], [ -119.766905833999942, 49.745799796000043 ], [ -119.765739345999975, 49.745763734000079 ], [ -119.765641523999989, 49.745760719000053 ], [ -119.765404990999926, 49.745753402000048 ], [ -119.765251273999979, 49.745668925000068 ], [ -119.764974382999981, 49.74551680600009 ], [ -119.764783084999976, 49.745411712000106 ], [ -119.764662204999979, 49.745481604000091 ], [ -119.764661484999948, 49.745543085000108 ], [ -119.764657600999925, 49.74587311100008 ], [ -119.764532666999955, 49.746640510000063 ], [ -119.764498915999951, 49.746847871000099 ], [ -119.764359808999956, 49.74770241000008 ], [ -119.764334897999944, 49.748580402000051 ], [ -119.764476, 49.749527390000019 ], [ -119.764440912999987, 49.74965744900004 ], [ -119.764391598999936, 49.749840406 ], [ -119.764015280999942, 49.75043549100004 ], [ -119.763917679999921, 49.750557573 ], [ -119.763206179999969, 49.751447299000063 ], [ -119.762846809999971, 49.751805888 ], [ -119.762602596999926, 49.752044798000043 ], [ -119.761362703999978, 49.752528091000094 ], [ -119.760123794999927, 49.753463793000044 ], [ -119.758770907999946, 49.754172689000058 ], [ -119.758078291999965, 49.755320195000088 ], [ -119.756447893999933, 49.756418596000074 ], [ -119.75604454199997, 49.756865387000062 ], [ -119.755440496999924, 49.757534498000012 ], [ -119.754316305999964, 49.758873105000113 ], [ -119.753699529999949, 49.759534225000031 ], [ -119.753431984999935, 49.759821006000038 ], [ -119.753003604999947, 49.7604085030001 ], [ -119.752837921999927, 49.760574715000097 ], [ -119.752054504999961, 49.76136080000002 ], [ -119.751486227999948, 49.761998111000068 ], [ -119.751340700999933, 49.762161297000034 ], [ -119.751128269000034, 49.762512193000077 ], [ -119.751114117999933, 49.7625356100001 ], [ -119.75106340499994, 49.762804498000087 ], [ -119.751059493999932, 49.763475985000049 ], [ -119.751136881, 49.763878599000044 ], [ -119.751314287999975, 49.764191202000113 ], [ -119.751515305999988, 49.764382821 ], [ -119.751661876999918, 49.764522631000084 ], [ -119.751468268999957, 49.764817617000126 ], [ -119.751136749999972, 49.765052307000154 ], [ -119.750456420999981, 49.765330176000099 ], [ -119.750284016999942, 49.765400596000106 ], [ -119.750157527999932, 49.765483107000101 ], [ -119.7495346799999, 49.765889391000037 ], [ -119.74863470799994, 49.766338016000113 ], [ -119.747843518999957, 49.766857704000067 ], [ -119.746598197999944, 49.767753209000091 ], [ -119.74595052199993, 49.768364309000084 ], [ -119.74564990199994, 49.768524909000107 ], [ -119.745234996999969, 49.768686148 ], [ -119.74446084899995, 49.768917087000027 ], [ -119.744105501, 49.769152196000114 ], [ -119.74371457, 49.769463800000054 ], [ -119.743442871999932, 49.769617034000106 ], [ -119.743106240999964, 49.769755694000025 ], [ -119.742532252, 49.769928584000105 ], [ -119.741434107999936, 49.77024653600008 ], [ -119.741088581000028, 49.770348563000077 ], [ -119.740738780999934, 49.770389863000077 ], [ -119.740432410999944, 49.770337944000104 ], [ -119.740147004999969, 49.77008349000014 ], [ -119.739936635999953, 49.769895914000131 ], [ -119.740516611999979, 49.76971299800006 ], [ -119.741489386999916, 49.768969601000087 ], [ -119.742047006999982, 49.768758806000093 ], [ -119.742158799, 49.768530890000058 ], [ -119.742064897999953, 49.768335789000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178376084", "BldgCostT": "120808334", "sL_LossRatio": "1", "sL_AssetLoss": "18011.4", "sL_BldgLoss": "18011.4", "sL_StrLoss": "18011.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000AB54BC0D4F15DC0218CE1E28FE04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.760978026, 49.762745499000111 ], [ -119.761057960999921, 49.761783789000106 ], [ -119.761128516999946, 49.761480875000082 ], [ -119.76144235199996, 49.760752201000052 ], [ -119.761693964999935, 49.760112030000066 ], [ -119.761923932999963, 49.759497728000063 ], [ -119.762851102999932, 49.757804720000095 ], [ -119.763034878999989, 49.757549806000071 ], [ -119.763312079999977, 49.757263229000081 ], [ -119.763948131999911, 49.756806680000125 ], [ -119.765187971999978, 49.755943400000085 ], [ -119.765883139999957, 49.755459358000067 ], [ -119.765956205999885, 49.755408498000065 ], [ -119.766412214999917, 49.755179106000107 ], [ -119.766681883999922, 49.755090715000101 ], [ -119.76673502899996, 49.754273112000099 ], [ -119.766797576999977, 49.7533100630001 ], [ -119.766850576999957, 49.752493789000063 ], [ -119.76685338399993, 49.752450595000042 ], [ -119.767170107999974, 49.74931453800005 ], [ -119.767213394999914, 49.748885993000059 ], [ -119.767207968999983, 49.748710964000061 ], [ -119.767196600999938, 49.748344191000129 ], [ -119.76678729, 49.747995804000027 ], [ -119.766468098999965, 49.747783411000093 ], [ -119.766394313, 49.74750740800004 ], [ -119.766905833999942, 49.745799796000043 ], [ -119.767267249000014, 49.745790971000076 ], [ -119.768343295999941, 49.745764563000094 ], [ -119.77155120299993, 49.745515025000039 ], [ -119.771873945999943, 49.745533484000056 ], [ -119.771730007999935, 49.746591542000068 ], [ -119.775461836999909, 49.74650213200011 ], [ -119.775477224999932, 49.746771648000056 ], [ -119.775893155999967, 49.746761676000112 ], [ -119.775902908999939, 49.746932474000047 ], [ -119.776155083999967, 49.746946887000071 ], [ -119.77636565399996, 49.748890975000037 ], [ -119.777141942999961, 49.748892432000069 ], [ -119.77733271699999, 49.748903333000037 ], [ -119.777334149999916, 49.748892792000085 ], [ -119.77930575699996, 49.748896463000044 ], [ -119.779681894999911, 49.748897153 ], [ -119.782902848999967, 49.748903018000107 ], [ -119.782864705999913, 49.749183885000058 ], [ -119.785081824999978, 49.749310429000076 ], [ -119.784972349, 49.750116810000115 ], [ -119.787501967999987, 49.750261134000041 ], [ -119.788171456999962, 49.750245011000096 ], [ -119.788174582999886, 49.750299499000072 ], [ -119.788290473999908, 49.750306108000096 ], [ -119.78829183499991, 49.750296078000069 ], [ -119.7901144, 49.750400011000089 ], [ -119.790274110000013, 49.74922262000009 ], [ -119.790606484999941, 49.74924157100002 ], [ -119.790621599999923, 49.74913012800009 ], [ -119.796148938999934, 49.749445125000072 ], [ -119.796110785999929, 49.749726661000075 ], [ -119.797865102999964, 49.749826578000068 ], [ -119.797435232999987, 49.752999310000035 ], [ -119.797399878999968, 49.753260218000051 ], [ -119.79750903899999, 49.753266434000047 ], [ -119.79749354099998, 49.752997181000048 ], [ -119.797493063, 49.752988877000057 ], [ -119.798166302999974, 49.752972607000075 ], [ -119.799156961000023, 49.752948659000076 ], [ -119.799203533999943, 49.753757191000084 ], [ -119.798804441999962, 49.75376684 ], [ -119.79874785, 49.754184581000047 ], [ -119.800113471000017, 49.754262321000077 ], [ -119.800274748999982, 49.754992868000087 ], [ -119.800004955999952, 49.756984722000084 ], [ -119.799886308999959, 49.757860620000024 ], [ -119.794357931999983, 49.757545815000086 ], [ -119.794471967999982, 49.756704703000125 ], [ -119.792848038999949, 49.756612177000093 ], [ -119.792958552999963, 49.755797222000105 ], [ -119.79224021899995, 49.755814549000057 ], [ -119.792224731999966, 49.755545037000047 ], [ -119.791808733999972, 49.755555070000099 ], [ -119.791793249999984, 49.75528555800004 ], [ -119.791377251999975, 49.755295589000035 ], [ -119.79136177, 49.755026076000036 ], [ -119.790945774999955, 49.755036105000066 ], [ -119.790937858999953, 49.754898269000122 ], [ -119.79076064799996, 49.754888168000065 ], [ -119.790742663999936, 49.755020739000059 ], [ -119.790492920999952, 49.755006502000093 ], [ -119.79002882199994, 49.758427346000055 ], [ -119.788805949999968, 49.758357626000084 ], [ -119.78870948799999, 49.759068440000092 ], [ -119.78782982599995, 49.759078931000097 ], [ -119.787792430999971, 49.759416153000075 ], [ -119.783127126999929, 49.759150003000109 ], [ -119.783418189999907, 49.757007078000079 ], [ -119.782268941000012, 49.756941484000052 ], [ -119.78230406199998, 49.756682948000083 ], [ -119.781815646999959, 49.756655068000036 ], [ -119.781792283999962, 49.756827041000086 ], [ -119.779466191, 49.756694229000097 ], [ -119.779431689999953, 49.756948095000048 ], [ -119.774523432999928, 49.756667684000099 ], [ -119.774466085999933, 49.757089309000072 ], [ -119.774134827999944, 49.757070376000115 ], [ -119.77411148, 49.75724201700006 ], [ -119.773139703999931, 49.757186470000043 ], [ -119.772730782999986, 49.760192040000064 ], [ -119.772140923999984, 49.760158319000055 ], [ -119.77210576899999, 49.76041665500005 ], [ -119.771804745999958, 49.760399444 ], [ -119.771746976, 49.760823962000117 ], [ -119.771671352999988, 49.760819638000065 ], [ -119.771599098999971, 49.761350564000104 ], [ -119.768121122999943, 49.761151657000084 ], [ -119.768115242999954, 49.761194844000094 ], [ -119.767527168999948, 49.761161200000082 ], [ -119.767321289999941, 49.762672959000028 ], [ -119.763834265999947, 49.762473403000065 ], [ -119.763785608999953, 49.76283046600004 ], [ -119.764174654999948, 49.762852736000077 ], [ -119.763686341, 49.766436132000074 ], [ -119.763550034, 49.766428330000082 ], [ -119.763509351999943, 49.766726836000061 ], [ -119.763254945999904, 49.76671227300006 ], [ -119.76324456699993, 49.766788429000037 ], [ -119.760771973999937, 49.76704654800016 ], [ -119.758750090999939, 49.766804994000054 ], [ -119.758830939999925, 49.766806956000018 ], [ -119.758991233999964, 49.766775509000063 ], [ -119.759099021999958, 49.766700427000025 ], [ -119.759537832999925, 49.766400726000015 ], [ -119.759821006999928, 49.766207286000096 ], [ -119.760603401999973, 49.765551147000082 ], [ -119.760777359999963, 49.765405280000074 ], [ -119.761033440999924, 49.765194399000031 ], [ -119.761386211999962, 49.764903861000086 ], [ -119.761468726999922, 49.764799345000085 ], [ -119.761467390999911, 49.764686413000085 ], [ -119.761213593999983, 49.763973085000096 ], [ -119.761021254999932, 49.763330068000137 ], [ -119.76097095599998, 49.762830622000067 ], [ -119.760978026, 49.762745499000111 ] ], [ [ -119.77172427899994, 49.746693571000087 ], [ -119.771721871999944, 49.746651350000036 ], [ -119.771716190999911, 49.746693108000095 ], [ -119.77172427899994, 49.746693571000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "354203250", "BldgCostT": "240180000", "sL_LossRatio": "0.999404924650594", "sL_AssetLoss": "31088.5", "sL_BldgLoss": "31070", "sL_StrLoss": "31063.3", "sL_NStrLoss": "6.7", "sL_ContLoss": "18.5", "geom_point": "0101000020E610000084384A1C41E35DC0B4400E8C34F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.547456847999911, 49.885899478000105 ], [ -119.547440960999964, 49.885597791000066 ], [ -119.547341511999903, 49.885591916000088 ], [ -119.547378097999967, 49.885333221000046 ], [ -119.547260296999966, 49.885335810000093 ], [ -119.547261682999945, 49.88452616400005 ], [ -119.547384388999916, 49.884523465000036 ], [ -119.547378043999927, 49.884402961000021 ], [ -119.547261906999907, 49.884396101000085 ], [ -119.547268361999926, 49.880628605000069 ], [ -119.546904431999948, 49.877675057000012 ], [ -119.546914443999967, 49.876698288000043 ], [ -119.546927618999959, 49.875417197000033 ], [ -119.546941836999977, 49.874033876000112 ], [ -119.546943113999973, 49.873912161000092 ], [ -119.546890932999972, 49.873377513000023 ], [ -119.546903711999931, 49.873376999000115 ], [ -119.547472204999906, 49.873406103000057 ], [ -119.547726299999979, 49.87341661100011 ], [ -119.548025200999987, 49.873505602000122 ], [ -119.548227486999949, 49.873625894000014 ], [ -119.548380505999972, 49.873798309000051 ], [ -119.54847090799997, 49.874028505000062 ], [ -119.548436119999977, 49.874627889000102 ], [ -119.548354219999979, 49.87603969200007 ], [ -119.54845001399994, 49.876231408000066 ], [ -119.54860200499999, 49.876361303000067 ], [ -119.548723723999927, 49.876408349 ], [ -119.548750286999933, 49.876418616000095 ], [ -119.548833812999959, 49.876450902000087 ], [ -119.549078203999926, 49.876470696000084 ], [ -119.549269595999945, 49.876431493000048 ], [ -119.549448501999976, 49.876321999000055 ], [ -119.549545598999941, 49.876128996 ], [ -119.54952691499993, 49.876006200000106 ], [ -119.549458680999976, 49.875557791000048 ], [ -119.549530510999972, 49.875277593000078 ], [ -119.549696882, 49.87500929100004 ], [ -119.550250498999958, 49.874482197000127 ], [ -119.550729585999974, 49.874125802000087 ], [ -119.55109141299999, 49.873967503000067 ], [ -119.551393529999956, 49.873893824000021 ], [ -119.551630992, 49.87383590600011 ], [ -119.552151611999989, 49.873808885000045 ], [ -119.553950389999954, 49.873918689000092 ], [ -119.556186705999963, 49.874056097000121 ], [ -119.556600409999973, 49.874113942000079 ], [ -119.556622308999934, 49.874116995000051 ], [ -119.556954400999942, 49.87426750300007 ], [ -119.557215680999903, 49.874464392000043 ], [ -119.557366913999928, 49.874680092000126 ], [ -119.557389383999947, 49.874965905000131 ], [ -119.557281702999916, 49.875233991000087 ], [ -119.557015313999898, 49.875518059000058 ], [ -119.556561775999938, 49.875954733000057 ], [ -119.556517478999965, 49.875997380000101 ], [ -119.55447562499999, 49.877963248000057 ], [ -119.554134723999965, 49.878151708000054 ], [ -119.552878333999971, 49.878541633000061 ], [ -119.55259244899996, 49.878745980000112 ], [ -119.552361511999962, 49.879035743000138 ], [ -119.552207775999989, 49.879342694000115 ], [ -119.552117855999953, 49.879969444000018 ], [ -119.551886557, 49.880419900000028 ], [ -119.550507503999967, 49.88226980000006 ], [ -119.55045398099999, 49.882431010000069 ], [ -119.550483991999968, 49.882584518000016 ], [ -119.55057631399994, 49.882722715000085 ], [ -119.550785884, 49.882850610000084 ], [ -119.551066611999957, 49.882890702000068 ], [ -119.551382498999914, 49.882859716000034 ], [ -119.552651914999927, 49.882447914000039 ], [ -119.553221017999988, 49.882355104000098 ], [ -119.553653300999926, 49.882331030000088 ], [ -119.554451840999945, 49.882364540000076 ], [ -119.555101085, 49.882396519000075 ], [ -119.555401498999942, 49.882445919000105 ], [ -119.555769595999948, 49.882559710000095 ], [ -119.556071695999918, 49.882744498000065 ], [ -119.556275121999974, 49.882975909000052 ], [ -119.556357014999946, 49.883217294000104 ], [ -119.556277629999926, 49.883957561000031 ], [ -119.556252371999946, 49.884502347000158 ], [ -119.556225640999941, 49.884988369000048 ], [ -119.556359959999924, 49.885145272000088 ], [ -119.556508509, 49.885260576000121 ], [ -119.556302531999961, 49.885433473000042 ], [ -119.556211127999973, 49.885605963000046 ], [ -119.556213515999943, 49.885816468000023 ], [ -119.556407908999972, 49.886388685000043 ], [ -119.556314518999912, 49.886703696000097 ], [ -119.556060394999989, 49.886919909000042 ], [ -119.555565323999986, 49.887309598000037 ], [ -119.555219497999971, 49.887710010000035 ], [ -119.55512368699999, 49.88789399700002 ], [ -119.55497731199992, 49.888336806000027 ], [ -119.554638085999969, 49.88885850600014 ], [ -119.553035116999965, 49.890987796000097 ], [ -119.55277202900001, 49.891366005000087 ], [ -119.552389596999916, 49.891719006000137 ], [ -119.551773184999917, 49.892146842000031 ], [ -119.551514289999972, 49.892326486000073 ], [ -119.551109181999948, 49.892740495000062 ], [ -119.550482909, 49.893543210000139 ], [ -119.550118192999946, 49.894215221000103 ], [ -119.550011696999945, 49.894504108000042 ], [ -119.549791690999967, 49.895981000000127 ], [ -119.549776229999949, 49.896021204000093 ], [ -119.549676697999956, 49.896280284000049 ], [ -119.548938310999972, 49.897350891000073 ], [ -119.548775092999932, 49.897961491000039 ], [ -119.548558910999958, 49.898254892000097 ], [ -119.54802429199999, 49.898873394000148 ], [ -119.54765301599997, 49.899294802000057 ], [ -119.547523199999944, 49.899353002000041 ], [ -119.547361314999961, 49.899361510000062 ], [ -119.54723846899995, 49.899310911000057 ], [ -119.547111964999928, 49.899144077000066 ], [ -119.546951077999921, 49.898931914000045 ], [ -119.546662377999937, 49.898838999000056 ], [ -119.546740275999966, 49.898584490000111 ], [ -119.54698149299999, 49.898193305000113 ], [ -119.546998810999952, 49.898021909000079 ], [ -119.546715225999918, 49.89753740000009 ], [ -119.546712380999963, 49.89737919400001 ], [ -119.546720594999982, 49.897005001000096 ], [ -119.546684123999938, 49.896858400000049 ], [ -119.546593210999987, 49.896740089000019 ], [ -119.546235407999944, 49.896434599000123 ], [ -119.546197301999925, 49.896308587000057 ], [ -119.546236707999938, 49.896168305000053 ], [ -119.546355207999966, 49.896051597000088 ], [ -119.546971603999935, 49.895695202000091 ], [ -119.54724698299998, 49.895427999000077 ], [ -119.547338316999983, 49.895276300000077 ], [ -119.547355354999965, 49.895197508000109 ], [ -119.547366491999966, 49.895146099000101 ], [ -119.547311348, 49.895012925000096 ], [ -119.547263417, 49.894897110000038 ], [ -119.547067217999953, 49.89435732000014 ], [ -119.54704333299999, 49.894121214000073 ], [ -119.547063623999975, 49.8939779190001 ], [ -119.547397883999963, 49.893640135000069 ], [ -119.547479780999964, 49.893436326 ], [ -119.547491569999977, 49.893253830000035 ], [ -119.547383296999939, 49.892903342000054 ], [ -119.54700825899999, 49.892403542000075 ], [ -119.546920158999953, 49.892329297000067 ], [ -119.547200048999926, 49.889925122000093 ], [ -119.547824745999961, 49.88839059100011 ], [ -119.547832385999953, 49.888371925000058 ], [ -119.547896395999913, 49.887922398000057 ], [ -119.547395839999979, 49.885895873000052 ], [ -119.547456847999911, 49.885899478000105 ] ], [ [ -119.548805234999961, 49.87978118400008 ], [ -119.548797518999962, 49.879634691000092 ], [ -119.548518653999935, 49.87964082500006 ], [ -119.548495686999942, 49.879803281000058 ], [ -119.548799574, 49.879821232000062 ], [ -119.548805234999961, 49.87978118400008 ] ], [ [ -119.547932994999925, 49.879078980000074 ], [ -119.547892250999936, 49.878305239000099 ], [ -119.547475114999941, 49.878314410000016 ], [ -119.547467438999931, 49.878168593000041 ], [ -119.547343631, 49.879044161000074 ], [ -119.547932994999925, 49.879078980000074 ] ], [ [ -119.551229332999966, 49.878231812000067 ], [ -119.551243544999977, 49.878501372000095 ], [ -119.55166068199999, 49.878492186000067 ], [ -119.551646467, 49.878222627000106 ], [ -119.551229332999966, 49.878231812000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100025917", "BldgCostT": "68511667", "sL_LossRatio": "1", "sL_AssetLoss": "8540.2", "sL_BldgLoss": "8540.2", "sL_StrLoss": "8540.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006652220D57E35DC0D7A0583CAFF24840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.547111964999928, 49.899144077000066 ], [ -119.54723846899995, 49.899310911000057 ], [ -119.547361314999961, 49.899361510000062 ], [ -119.547523199999944, 49.899353002000041 ], [ -119.54765301599997, 49.899294802000057 ], [ -119.54802429199999, 49.898873394000148 ], [ -119.548558910999958, 49.898254892000097 ], [ -119.548775092999932, 49.897961491000039 ], [ -119.548938310999972, 49.897350891000073 ], [ -119.549676697999956, 49.896280284000049 ], [ -119.549776229999949, 49.896021204000093 ], [ -119.549791690999967, 49.895981000000127 ], [ -119.550011696999945, 49.894504108000042 ], [ -119.550118192999946, 49.894215221000103 ], [ -119.550482909, 49.893543210000139 ], [ -119.551109181999948, 49.892740495000062 ], [ -119.551514289999972, 49.892326486000073 ], [ -119.551773184999917, 49.892146842000031 ], [ -119.552389596999916, 49.891719006000137 ], [ -119.55277202900001, 49.891366005000087 ], [ -119.553035116999965, 49.890987796000097 ], [ -119.554638085999969, 49.88885850600014 ], [ -119.55497731199992, 49.888336806000027 ], [ -119.55512368699999, 49.88789399700002 ], [ -119.55578019099994, 49.88796429500006 ], [ -119.556034604999951, 49.888042509000073 ], [ -119.556195802, 49.888137786000065 ], [ -119.556291202999901, 49.888283393000108 ], [ -119.556527981, 49.888803001000035 ], [ -119.55678341, 49.889368799000074 ], [ -119.556847885999943, 49.889634500000106 ], [ -119.556835194999934, 49.890693687000038 ], [ -119.55688391599999, 49.892742590000083 ], [ -119.55688730199995, 49.892995612000099 ], [ -119.556782155999883, 49.893756917000111 ], [ -119.556761111999961, 49.893909207 ], [ -119.556438597999957, 49.895005209000061 ], [ -119.556277509999944, 49.895176291000027 ], [ -119.555963399999953, 49.895302301000072 ], [ -119.555392578999943, 49.895435589000037 ], [ -119.555151601999981, 49.895529816000078 ], [ -119.555056498999988, 49.895609014000094 ], [ -119.555028372000024, 49.895653251000049 ], [ -119.55497571799998, 49.895736097000061 ], [ -119.554966786999941, 49.895878207000038 ], [ -119.555066387999943, 49.895994305000052 ], [ -119.555218316999969, 49.896106196000048 ], [ -119.555643882999959, 49.896298305000109 ], [ -119.556042399999953, 49.896444585000026 ], [ -119.556114981999912, 49.896475455000093 ], [ -119.555117314, 49.896497456000084 ], [ -119.555103069999959, 49.896227899000102 ], [ -119.553433915999932, 49.896264688 ], [ -119.553382090999904, 49.895283196000086 ], [ -119.553111899999962, 49.895267253000085 ], [ -119.553003845999953, 49.896031788000066 ], [ -119.553016626999963, 49.896273882000102 ], [ -119.552969482999984, 49.896274921000092 ], [ -119.552766271999957, 49.897712635000104 ], [ -119.552746842999952, 49.89771148799999 ], [ -119.552669362999893, 49.898259634000105 ], [ -119.552768296999943, 49.89826547100008 ], [ -119.552261978999951, 49.901847235000055 ], [ -119.552149023999945, 49.901840570000054 ], [ -119.552060598999944, 49.902466033000117 ], [ -119.546452858999942, 49.902603025000069 ], [ -119.5464848399999, 49.902415428000033 ], [ -119.547111964999928, 49.899144077000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69122328", "BldgCostT": "43802410", "sL_LossRatio": "0.990824868691917", "sL_AssetLoss": "6692.00232", "sL_BldgLoss": "6630.60232", "sL_StrLoss": "6608.40232", "sL_NStrLoss": "22.2", "sL_ContLoss": "61.4", "geom_point": "0101000020E610000054AC542FC3E15DC0A7367A2D4FF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.525094899999942, 49.882680556000039 ], [ -119.52438003899999, 49.881949222000117 ], [ -119.524201336999937, 49.881544906000087 ], [ -119.524139804999948, 49.881180986000082 ], [ -119.524182184999987, 49.879553641000022 ], [ -119.524041070999971, 49.879101022000107 ], [ -119.523796857999955, 49.878787193000051 ], [ -119.523727968999978, 49.8786986900001 ], [ -119.523564616999963, 49.878552606000049 ], [ -119.52334618499998, 49.878357297000072 ], [ -119.522834215, 49.878076802000081 ], [ -119.522289876999977, 49.877906362000019 ], [ -119.521260890999912, 49.877646681000051 ], [ -119.520758709999939, 49.87760242800006 ], [ -119.520332489999959, 49.877618351000095 ], [ -119.520368146999942, 49.877519278000072 ], [ -119.52100048399997, 49.877360505000134 ], [ -119.52322109899994, 49.877537099000094 ], [ -119.523366267999947, 49.877519982000138 ], [ -119.523789199999968, 49.877470110000061 ], [ -119.524784790999917, 49.877088495000095 ], [ -119.524856884, 49.876843496000056 ], [ -119.524618590999964, 49.876561513000055 ], [ -119.524665302999935, 49.876399097000082 ], [ -119.524911738999918, 49.876336832000057 ], [ -119.525133001, 49.876280900000069 ], [ -119.525595706999979, 49.876054510000081 ], [ -119.525609032999967, 49.87603051500011 ], [ -119.526324868999922, 49.876072953000062 ], [ -119.526247237999883, 49.87662019100005 ], [ -119.526505441999944, 49.876614561000089 ], [ -119.526477314999951, 49.876075829000087 ], [ -119.5256123449999, 49.876024551000043 ], [ -119.52574760499999, 49.875781005000107 ], [ -119.526210752999987, 49.875607054000078 ], [ -119.526242991999965, 49.875594952 ], [ -119.527222705999932, 49.875226987000055 ], [ -119.527557091999896, 49.875246893000039 ], [ -119.527900681999967, 49.8754107 ], [ -119.528310512, 49.875275386000041 ], [ -119.528430988999915, 49.874939293000075 ], [ -119.528423721999928, 49.874912062000114 ], [ -119.52839418799999, 49.87480146300004 ], [ -119.52829259399999, 49.8744208990001 ], [ -119.528973055999955, 49.873550773000076 ], [ -119.530261194999966, 49.873301525000066 ], [ -119.531890332999964, 49.873565861000039 ], [ -119.532629727999947, 49.873550324000121 ], [ -119.533444866999915, 49.873561575000089 ], [ -119.533455467999914, 49.873764092000073 ], [ -119.533271777999914, 49.873768109000132 ], [ -119.5331044799999, 49.874948747000168 ], [ -119.532262108999987, 49.874898860000087 ], [ -119.532274688000015, 49.875139263000051 ], [ -119.531857573999901, 49.875148378000119 ], [ -119.531871676999955, 49.875417942000119 ], [ -119.531649426999977, 49.875422798000095 ], [ -119.531617154999964, 49.875650480000104 ], [ -119.531465779000015, 49.875641514000073 ], [ -119.531468659999973, 49.875696620000063 ], [ -119.531348631999961, 49.875699242000117 ], [ -119.531303861999945, 49.876015087000084 ], [ -119.531031209999938, 49.875998935000041 ], [ -119.530982465999926, 49.876342792000081 ], [ -119.529828485999957, 49.876274428000087 ], [ -119.529842460999987, 49.87654175200003 ], [ -119.528591080999917, 49.876569066000037 ], [ -119.528605165999949, 49.876838630000066 ], [ -119.528188035, 49.87684773299999 ], [ -119.528244371999961, 49.877925990000037 ], [ -119.527827231999936, 49.877935090000065 ], [ -119.527869480999982, 49.878743785000076 ], [ -119.528703771999943, 49.87872558000003 ], [ -119.528746034999969, 49.879534272000058 ], [ -119.529163186999966, 49.879525169000047 ], [ -119.529261825, 49.88141211700011 ], [ -119.528010317999957, 49.881439426999982 ], [ -119.52799623199995, 49.881169863000117 ], [ -119.527579064999912, 49.88117896300011 ], [ -119.52756498299999, 49.880909399000068 ], [ -119.527147816999928, 49.880918498000021 ], [ -119.52711965899999, 49.880379369000153 ], [ -119.526702498999924, 49.88038846600012 ], [ -119.526688420999946, 49.880118901000095 ], [ -119.525854103999947, 49.880137091000051 ], [ -119.525882248999949, 49.88067622100003 ], [ -119.524630758999976, 49.880703494000109 ], [ -119.524644823999921, 49.880973059000063 ], [ -119.524227657000026, 49.880982148 ], [ -119.524255785, 49.881521278000079 ], [ -119.525090124999934, 49.881503099000099 ], [ -119.525118263999929, 49.882042229000085 ], [ -119.525535438999952, 49.882033137000057 ], [ -119.525563581999933, 49.882572266000118 ], [ -119.52598076299995, 49.882563174000076 ], [ -119.526034326999962, 49.88358908000005 ], [ -119.525094899999942, 49.882680556000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121945138", "BldgCostT": "77985599", "sL_LossRatio": "0.988180489521892", "sL_AssetLoss": "11339.3131", "sL_BldgLoss": "11205.28797", "sL_StrLoss": "11156.50697", "sL_NStrLoss": "48.781", "sL_ContLoss": "134.02513", "geom_point": "0101000020E61000004CE7C3B344E25DC0EC325FD256F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.532153127999976, 49.883220101000084 ], [ -119.532265692999914, 49.882425998000016 ], [ -119.532238433999936, 49.882426593000019 ], [ -119.532196107999965, 49.881617904000038 ], [ -119.532380808999903, 49.881613867000056 ], [ -119.53245755099999, 49.881072446000104 ], [ -119.531333561999972, 49.881097005000086 ], [ -119.531322380999953, 49.880883304000115 ], [ -119.531183413999941, 49.880830415000105 ], [ -119.530485131999967, 49.880845665000017 ], [ -119.53047103499992, 49.880576102000141 ], [ -119.530053873999933, 49.880585211000032 ], [ -119.530035431, 49.880232520000057 ], [ -119.529848824999959, 49.880090161000041 ], [ -119.529857517, 49.879779883000019 ], [ -119.529594431999953, 49.879785627000047 ], [ -119.52950987899996, 49.878168242000136 ], [ -119.529927019999946, 49.878159136000072 ], [ -119.52991292599998, 49.877889572000086 ], [ -119.530330063999912, 49.877880463000103 ], [ -119.530315967999982, 49.877610899000089 ], [ -119.530733103999978, 49.87760178900011 ], [ -119.530728119999964, 49.877506488000058 ], [ -119.530725122999968, 49.87750426000008 ], [ -119.530717123999935, 49.877467361000058 ], [ -119.530725913999959, 49.877464299000053 ], [ -119.53067671399999, 49.876523534000057 ], [ -119.531510966000013, 49.876505311000116 ], [ -119.531496863999976, 49.876235747000067 ], [ -119.531913986999911, 49.876226633000044 ], [ -119.531899883999955, 49.87595706900008 ], [ -119.53231700399999, 49.875947955000129 ], [ -119.532302897999983, 49.875678391000108 ], [ -119.532720015999985, 49.875669275000106 ], [ -119.532705908999958, 49.875399710000082 ], [ -119.533123023999963, 49.875390592000066 ], [ -119.533108914999957, 49.875121029000091 ], [ -119.533526026999979, 49.875111909000118 ], [ -119.533483691999905, 49.874303219000048 ], [ -119.534317903, 49.874284976000119 ], [ -119.534282057, 49.873600458000105 ], [ -119.5359806109999, 49.873726890000093 ], [ -119.537338775999928, 49.873666756000034 ], [ -119.539620752999951, 49.87333412300007 ], [ -119.539930104999954, 49.873463987000086 ], [ -119.541891182999947, 49.873245900000079 ], [ -119.542610889999963, 49.87317896100005 ], [ -119.542892391999914, 49.873098829000114 ], [ -119.542905853999983, 49.873094983000037 ], [ -119.543109095999981, 49.87406289800002 ], [ -119.543418820999989, 49.873950214000054 ], [ -119.544178029999955, 49.873746801000074 ], [ -119.544268706999958, 49.87386595600006 ], [ -119.543228422999945, 49.87418006900009 ], [ -119.542554801000023, 49.874429182000078 ], [ -119.541727423999959, 49.874818177000066 ], [ -119.541542014999919, 49.874936362000078 ], [ -119.541034027999942, 49.874947503000087 ], [ -119.541048180999937, 49.875217064000083 ], [ -119.540631070999922, 49.875226211000097 ], [ -119.540649254999948, 49.87557258700005 ], [ -119.540412519999975, 49.875778797000059 ], [ -119.539853007999938, 49.876445517000093 ], [ -119.538470632, 49.878661753000067 ], [ -119.537075883999961, 49.880895299000031 ], [ -119.536682077999927, 49.881377646000018 ], [ -119.535931383999952, 49.881913809000089 ], [ -119.535527286999937, 49.88220231400004 ], [ -119.535430976999976, 49.882141171000065 ], [ -119.535393988999942, 49.88211768900004 ], [ -119.533605612999935, 49.883306102000077 ], [ -119.532153127999976, 49.883220101000084 ] ], [ [ -119.532550774999962, 49.880414722000111 ], [ -119.53259409399999, 49.880109087000058 ], [ -119.532537308999977, 49.880157458000042 ], [ -119.532550774999962, 49.880414722000111 ] ], [ [ -119.533766455999967, 49.879703806000109 ], [ -119.533751852999956, 49.879424922000076 ], [ -119.533106092, 49.879439040000172 ], [ -119.533021412999972, 49.879659692000089 ], [ -119.533766455999967, 49.879703806000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "62", "sL_BldgLoss": "62", "sL_StrLoss": "62", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000045CCF46421F05DC0C86A886427E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.751768916999964, 49.818865921000032 ], [ -119.751772986999953, 49.818866154000055 ], [ -119.751766588999942, 49.819097823000099 ], [ -119.751757570999956, 49.819423851000082 ], [ -119.751746783999977, 49.81981530300007 ], [ -119.751911793999938, 49.820296693000039 ], [ -119.752405205999978, 49.821149808000051 ], [ -119.75302149499997, 49.821710890000091 ], [ -119.753093401999976, 49.822005688000019 ], [ -119.752537907999979, 49.822521083000034 ], [ -119.751279036999946, 49.822448982000076 ], [ -119.751768916999964, 49.818865921000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.4", "sL_BldgLoss": "61.4", "sL_StrLoss": "61.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056F4E21F11F05DC0D13B789A8AE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.750909729999961, 49.822953913000127 ], [ -119.752003842999926, 49.823016581000047 ], [ -119.751958983999899, 49.823058199000094 ], [ -119.751605008999945, 49.823677803000095 ], [ -119.751260517, 49.824826432000144 ], [ -119.751148402999959, 49.82520021200007 ], [ -119.750937754999939, 49.826566621000026 ], [ -119.750419737999962, 49.826536949000108 ], [ -119.750909729999961, 49.822953913000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17098583", "BldgCostT": "11528333", "sL_LossRatio": "0.999992392551853", "sL_AssetLoss": "2550.1324", "sL_BldgLoss": "2550.113", "sL_StrLoss": "2550", "sL_NStrLoss": "0.113", "sL_ContLoss": "0.0194", "geom_point": "0101000020E61000009D01C32C53EE5DC0E99305E1C4E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.726157194999942, 49.806388037000062 ], [ -119.726153813999986, 49.805989097000086 ], [ -119.724976473999931, 49.805987339000133 ], [ -119.725064056999955, 49.80534924300008 ], [ -119.72508645399995, 49.805186063000093 ], [ -119.72520358, 49.804332690000145 ], [ -119.720257739999951, 49.804047968000155 ], [ -119.720299949999955, 49.803740666000046 ], [ -119.718257397999949, 49.803623014000053 ], [ -119.718408724999932, 49.802521617000124 ], [ -119.71648791099993, 49.802410943 ], [ -119.71626377599992, 49.804041735000119 ], [ -119.716620580999972, 49.804033365000073 ], [ -119.716635675999939, 49.804302893000084 ], [ -119.717052117999984, 49.804293124000026 ], [ -119.717097407, 49.805101704000101 ], [ -119.716481247999923, 49.805116159000114 ], [ -119.715423472999987, 49.805140965000099 ], [ -119.715015154999904, 49.805150538000127 ], [ -119.715009610999971, 49.805051489000036 ], [ -119.715004044999915, 49.804952047000057 ], [ -119.714384488999912, 49.80491633600009 ], [ -119.710596253999938, 49.804697901000132 ], [ -119.710738684999981, 49.803662549000109 ], [ -119.710765135999964, 49.803470269000151 ], [ -119.710791490999938, 49.803278675000101 ], [ -119.71017003599998, 49.803242827000133 ], [ -119.70955064499999, 49.803207096000079 ], [ -119.707297943999905, 49.803077114000111 ], [ -119.707393848, 49.802380314000075 ], [ -119.707408183999988, 49.80227615600004 ], [ -119.707678852999919, 49.802290326000069 ], [ -119.712850234999948, 49.80256087900004 ], [ -119.717443214999946, 49.802341003000016 ], [ -119.717877541999911, 49.802343733000036 ], [ -119.720555093999963, 49.802392806000071 ], [ -119.720582826999987, 49.802304454000087 ], [ -119.720499595999939, 49.801387651000013 ], [ -119.720294403999958, 49.799126208000096 ], [ -119.720672386999965, 49.797658869000045 ], [ -119.720800068999935, 49.796799032000145 ], [ -119.721374108999925, 49.796832093000077 ], [ -119.721361954999935, 49.796920616000108 ], [ -119.723604342999977, 49.797049731000072 ], [ -119.723177119999917, 49.800162022000102 ], [ -119.727835914999957, 49.800430123000098 ], [ -119.72764405199996, 49.801828732000033 ], [ -119.733011843, 49.802137384000055 ], [ -119.732997114999975, 49.80224483700011 ], [ -119.734004918999915, 49.802302757000071 ], [ -119.733984746999937, 49.802449949000106 ], [ -119.734602410999969, 49.802485442000027 ], [ -119.734174297999957, 49.805609323000098 ], [ -119.734143264999929, 49.805835738000084 ], [ -119.73412218499999, 49.805989545000081 ], [ -119.73411136299994, 49.806068507000077 ], [ -119.730570641999975, 49.805864997000057 ], [ -119.73046493799994, 49.806635789000083 ], [ -119.72929875599999, 49.80656873500007 ], [ -119.726157194999942, 49.806388037000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "0.999964049903695", "sL_AssetLoss": "532.12653", "sL_BldgLoss": "532.1074", "sL_StrLoss": "532", "sL_NStrLoss": "0.1074", "sL_ContLoss": "0.01913", "geom_point": "0101000020E6100000EF8ECEF138EF5DC0B6817D6C79E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.73858756099996, 49.806629752000084 ], [ -119.740862967999959, 49.806760378000078 ], [ -119.740800678999989, 49.807215327000108 ], [ -119.740729434999977, 49.807735676000071 ], [ -119.740705802999983, 49.807908280000106 ], [ -119.74037236399991, 49.810343450000055 ], [ -119.734838067999959, 49.810025657000011 ], [ -119.735329100999948, 49.806442608000097 ], [ -119.736809473999983, 49.806527643000052 ], [ -119.737527963999966, 49.806568907000084 ], [ -119.73858756099996, 49.806629752000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "318.6", "sL_BldgLoss": "318.6", "sL_StrLoss": "318.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075048950D9EB5DC0E1421EC10DE74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.68382542099999, 49.806687173000043 ], [ -119.683810508999983, 49.806417638000042 ], [ -119.683394036999928, 49.80642728800008 ], [ -119.683379125999977, 49.806157754000054 ], [ -119.682546184, 49.806177051000049 ], [ -119.68253127899996, 49.805907515000079 ], [ -119.682114810999948, 49.80591716200005 ], [ -119.682099906999966, 49.805647627000042 ], [ -119.68168344, 49.805657271000072 ], [ -119.68166854, 49.805387737000082 ], [ -119.680835610999978, 49.805407020000125 ], [ -119.680830869999909, 49.805321222000067 ], [ -119.686286498999934, 49.805339667000062 ], [ -119.687088162999942, 49.802023554000087 ], [ -119.687319848999962, 49.80201817800004 ], [ -119.68733477799999, 49.802287712000059 ], [ -119.687751214999977, 49.802278048000097 ], [ -119.687810944999953, 49.80335618300014 ], [ -119.687394500999972, 49.803365848000084 ], [ -119.687424362999934, 49.803904915000032 ], [ -119.687007912999931, 49.803914578000033 ], [ -119.687082560999968, 49.805262246000055 ], [ -119.686666098999964, 49.80527190900002 ], [ -119.686681026999949, 49.805541442000042 ], [ -119.686264562999909, 49.805551102000088 ], [ -119.686279488999958, 49.805820636000057 ], [ -119.68586302199999, 49.80583029600011 ], [ -119.685892869999947, 49.806369364000027 ], [ -119.685059926999955, 49.806388678000076 ], [ -119.685074845999935, 49.806658212000094 ], [ -119.68382542099999, 49.806687173000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10338500", "BldgCostT": "7130000", "sL_LossRatio": "1", "sL_AssetLoss": "1111", "sL_BldgLoss": "1111", "sL_StrLoss": "1111", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000121FD080D7EB5DC04643C6A3D4E94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.682022157999896, 49.828698260000067 ], [ -119.682094818999957, 49.828172772000087 ], [ -119.68200309299999, 49.828167459000092 ], [ -119.682498451999919, 49.82458474 ], [ -119.688034142999982, 49.824905175000076 ], [ -119.687961554999958, 49.825430669000063 ], [ -119.688053274999945, 49.825435977000012 ], [ -119.687558341999974, 49.829018717000075 ], [ -119.682022157999896, 49.828698260000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "248796310", "BldgCostT": "168313189", "sL_LossRatio": "0.997905624864433", "sL_AssetLoss": "23682.481308", "sL_BldgLoss": "23632.881308", "sL_StrLoss": "23615.001308", "sL_NStrLoss": "17.88", "sL_ContLoss": "49.6", "geom_point": "0101000020E61000001E501D486AEB5DC09434F3A2FEEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.693094422999962, 49.848582778000093 ], [ -119.693346059999925, 49.847088669000094 ], [ -119.689648016999953, 49.846878108000105 ], [ -119.692150989999973, 49.846153526000151 ], [ -119.692172285999959, 49.846108394000112 ], [ -119.692155112999956, 49.845727277000016 ], [ -119.692255598999935, 49.844262404000126 ], [ -119.689916926999928, 49.844199439000079 ], [ -119.689386015999972, 49.844204039000033 ], [ -119.688726325999966, 49.844302112000037 ], [ -119.688352732999931, 49.844384220000101 ], [ -119.687171812999949, 49.844643794000035 ], [ -119.686277117999921, 49.844805995000058 ], [ -119.684257808, 49.844774908000012 ], [ -119.6839409, 49.844725014000062 ], [ -119.683853364999948, 49.844689549000122 ], [ -119.68237480699996, 49.844090792000046 ], [ -119.680468101999963, 49.843548890000093 ], [ -119.680227288000012, 49.843524089000056 ], [ -119.67990389499991, 49.843561401000059 ], [ -119.679304895999948, 49.843765912000087 ], [ -119.67905061499998, 49.843808102000096 ], [ -119.678729909999944, 49.84377598400004 ], [ -119.678381396999939, 49.843671799000028 ], [ -119.677373787999954, 49.84323879800008 ], [ -119.677085385999987, 49.843154414000068 ], [ -119.676792087999942, 49.843105790000017 ], [ -119.676498100999964, 49.843092302000031 ], [ -119.676368625999928, 49.843111808000103 ], [ -119.675735611999954, 49.843207104000058 ], [ -119.675527803999927, 49.843215782000044 ], [ -119.675334692999968, 49.843179311000085 ], [ -119.674783305999938, 49.842898207000054 ], [ -119.673765184999979, 49.842590903 ], [ -119.67308918699996, 49.842313293000089 ], [ -119.672662502999913, 49.842189314000066 ], [ -119.6724438, 49.842086304000055 ], [ -119.672282377999949, 49.841941495000079 ], [ -119.671839529999957, 49.841436124000026 ], [ -119.671327994999928, 49.840852414000068 ], [ -119.670985120999944, 49.840597807000066 ], [ -119.670329326999962, 49.84022480400008 ], [ -119.670091819999982, 49.839995299000066 ], [ -119.669805205999978, 49.839656308000066 ], [ -119.668994891999915, 49.83874710700011 ], [ -119.668670689999914, 49.838548611000128 ], [ -119.668288892999968, 49.83840369900004 ], [ -119.66797019799999, 49.838337307000067 ], [ -119.666905370999956, 49.838193655000097 ], [ -119.666385267999885, 49.83812349500009 ], [ -119.666157911999917, 49.838073217000115 ], [ -119.665918797999979, 49.837965509000121 ], [ -119.66463809599999, 49.837239289000081 ], [ -119.663801498999973, 49.836731084000121 ], [ -119.662977181999963, 49.836205690000121 ], [ -119.66286067099999, 49.836120296000075 ], [ -119.662500993999956, 49.835866502000044 ], [ -119.662297909999964, 49.835600096000057 ], [ -119.661950494999985, 49.834936194000107 ], [ -119.661692799999969, 49.834550992000139 ], [ -119.661595284999919, 49.834442997000053 ], [ -119.661305780999911, 49.834122299000079 ], [ -119.660985109999928, 49.833868896000062 ], [ -119.66075250599998, 49.833765081000109 ], [ -119.660491802999928, 49.833653288000058 ], [ -119.659978916999989, 49.833458298000053 ], [ -119.659739095999925, 49.833295402000047 ], [ -119.65947848, 49.832981736000079 ], [ -119.659100698999964, 49.832526991000073 ], [ -119.658803812999935, 49.832243398000031 ], [ -119.656895913999961, 49.830858799000048 ], [ -119.65609761199994, 49.83027940100002 ], [ -119.656076717999937, 49.830261057000023 ], [ -119.655715209999954, 49.830320405000123 ], [ -119.65503352599994, 49.829864503000081 ], [ -119.654640100999984, 49.829548447000064 ], [ -119.653648221999958, 49.828751520000054 ], [ -119.653467076999931, 49.828605997000061 ], [ -119.652567685999927, 49.827929703000031 ], [ -119.652105882999962, 49.827538095000122 ], [ -119.651826893999939, 49.827156195000029 ], [ -119.651566696999978, 49.826689589000104 ], [ -119.651478083999962, 49.826323305000081 ], [ -119.65140598399995, 49.825667193000072 ], [ -119.651714977999973, 49.825551591000135 ], [ -119.651812388999929, 49.825453404000044 ], [ -119.652150171999935, 49.82457829700008 ], [ -119.652294107999964, 49.824416002000113 ], [ -119.65271448499999, 49.824110990000108 ], [ -119.651893301, 49.822591489000054 ], [ -119.651624139999967, 49.822334010000105 ], [ -119.65210821299992, 49.822290927000026 ], [ -119.652316919999976, 49.82227235700006 ], [ -119.652238165999975, 49.822155804000019 ], [ -119.652059349999959, 49.82193385700004 ], [ -119.651783805999969, 49.821591885000061 ], [ -119.651550892999964, 49.821411307000112 ], [ -119.651298602999987, 49.821269285000106 ], [ -119.651569241999965, 49.820617716000143 ], [ -119.651364402999931, 49.820411283000084 ], [ -119.65121983399996, 49.820265587000051 ], [ -119.651289871999921, 49.820201175000136 ], [ -119.651616144999977, 49.819901214000012 ], [ -119.652234295999961, 49.819332890000076 ], [ -119.65278557299996, 49.818677892000061 ], [ -119.653985495, 49.816315307000131 ], [ -119.65419426499993, 49.816053445000065 ], [ -119.654301315999959, 49.815919205000107 ], [ -119.654765610999974, 49.815508385000065 ], [ -119.656206005999977, 49.814610644000034 ], [ -119.656736199999926, 49.814598483000047 ], [ -119.656750967, 49.814868024000099 ], [ -119.657167520999977, 49.814858468000104 ], [ -119.65718229, 49.815128008000066 ], [ -119.657598846, 49.815118450000043 ], [ -119.657613617999957, 49.81538799000004 ], [ -119.658446734999956, 49.815368870000057 ], [ -119.65852062, 49.816716567000078 ], [ -119.657687478999932, 49.816735688000101 ], [ -119.657746572999926, 49.817813846000028 ], [ -119.657329994999927, 49.817823404000144 ], [ -119.65734476599999, 49.818092945 ], [ -119.656928183999952, 49.818102502000038 ], [ -119.656942954999948, 49.818372040000064 ], [ -119.656326127999961, 49.818386189000151 ], [ -119.656239457999931, 49.81901056600001 ], [ -119.656081180999934, 49.819001360000115 ], [ -119.656080419999938, 49.819006845000096 ], [ -119.656183488999929, 49.819012839000038 ], [ -119.656148886999958, 49.819262106000032 ], [ -119.65658259099996, 49.819287329000126 ], [ -119.656225696999925, 49.821858370000079 ], [ -119.65715514499999, 49.821912420000018 ], [ -119.657145355999916, 49.821982948000084 ], [ -119.658717899999928, 49.82207437700005 ], [ -119.658220707999973, 49.825657002000156 ], [ -119.655246896999941, 49.825484083000028 ], [ -119.655366887999961, 49.827674595000069 ], [ -119.656605946999932, 49.82774664800008 ], [ -119.656528482999946, 49.828304625000108 ], [ -119.657071907999949, 49.828336221000022 ], [ -119.657058137, 49.828085018000138 ], [ -119.658724806999928, 49.828046774000079 ], [ -119.658739591999961, 49.828316313000094 ], [ -119.659572929999939, 49.828297181000089 ], [ -119.659587718999958, 49.828566720000055 ], [ -119.660004389999969, 49.828557152000066 ], [ -119.660019181999928, 49.828826691000074 ], [ -119.661685872999954, 49.828788403000104 ], [ -119.661717648999954, 49.829367017 ], [ -119.66610283199999, 49.82962169100005 ], [ -119.666064986999984, 49.829894684000067 ], [ -119.666548936999931, 49.829922780000068 ], [ -119.666513601999966, 49.830177682000027 ], [ -119.671767288999931, 49.830482536000076 ], [ -119.67127102799995, 49.834065179000099 ], [ -119.67108892499999, 49.834054616000046 ], [ -119.671020243, 49.834550383000085 ], [ -119.670763725999919, 49.834535504000016 ], [ -119.670848895999924, 49.836080790000089 ], [ -119.672127657999951, 49.83615495500004 ], [ -119.672192279999962, 49.835688431000115 ], [ -119.675826568999952, 49.835899127000083 ], [ -119.675947255999958, 49.835027316000065 ], [ -119.678339145999985, 49.835165918000023 ], [ -119.678457991999963, 49.834307050000056 ], [ -119.678097049999963, 49.83428613800006 ], [ -119.678592780999949, 49.83070346500012 ], [ -119.679290479999921, 49.830743887000068 ], [ -119.679440301999961, 49.829660882000034 ], [ -119.684976583999983, 49.829981471000089 ], [ -119.684880934999939, 49.830673488000109 ], [ -119.689311692999979, 49.830929854000019 ], [ -119.689071230999971, 49.832670711000084 ], [ -119.689853291999924, 49.832715943000103 ], [ -119.689792330999921, 49.833157315000044 ], [ -119.689863721999984, 49.833161443000066 ], [ -119.689610040999966, 49.83499806500005 ], [ -119.689569797999965, 49.835289403000061 ], [ -119.690645837999966, 49.835351627000136 ], [ -119.690636641999959, 49.835418208000121 ], [ -119.691218653999968, 49.835451859000038 ], [ -119.691302913999962, 49.834841696000112 ], [ -119.69134852799999, 49.834511370000079 ], [ -119.696885480999981, 49.834831354000052 ], [ -119.696391136, 49.83841408900004 ], [ -119.694476743999957, 49.838303487000097 ], [ -119.694450308999976, 49.838494999000126 ], [ -119.699382750999987, 49.838779894000041 ], [ -119.69925059299996, 49.839738059000055 ], [ -119.699954196999968, 49.839778680000073 ], [ -119.699460038999973, 49.843361404000099 ], [ -119.698791567999976, 49.843322811000071 ], [ -119.698820136, 49.843835602000063 ], [ -119.699022588999966, 49.843847290000049 ], [ -119.700488203999925, 49.843813132000072 ], [ -119.70049484499998, 49.84393227900005 ], [ -119.703974739999964, 49.84413308000012 ], [ -119.703626132999986, 49.846661965000074 ], [ -119.703480848999973, 49.847715800000032 ], [ -119.697942293999958, 49.847396156000052 ], [ -119.698280623999921, 49.844944093000073 ], [ -119.696892172999952, 49.844976426000052 ], [ -119.696873743, 49.845109977000057 ], [ -119.698159817999951, 49.845184242000073 ], [ -119.697665460999985, 49.848766931000043 ], [ -119.696430543999981, 49.848695621000054 ], [ -119.696419608, 49.848774860000084 ], [ -119.693094422999962, 49.848582778000093 ] ], [ [ -119.67034597699994, 49.834526404000052 ], [ -119.670532640999966, 49.834522099000019 ], [ -119.670345139999981, 49.834511223000064 ], [ -119.67034597699994, 49.834526404000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "49082083", "BldgCostT": "31168333", "sL_LossRatio": "0.999994597054294", "sL_AssetLoss": "4536.41427", "sL_BldgLoss": "4536.38976", "sL_StrLoss": "4536.20406", "sL_NStrLoss": "0.1857", "sL_ContLoss": "0.02451", "geom_point": "0101000020E61000006E5FBCF6B7E85DC0FF1E61BD76E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.644387810999945, 49.826596696000067 ], [ -119.644343327999977, 49.826566789000026 ], [ -119.64422464099998, 49.82665421500014 ], [ -119.644171607999965, 49.826682030000022 ], [ -119.644099260999923, 49.826699951000094 ], [ -119.644000591999955, 49.826698207000092 ], [ -119.643850865999951, 49.826617356000092 ], [ -119.643767839999953, 49.826595136000066 ], [ -119.643332752, 49.826549206000081 ], [ -119.643252067999953, 49.826530231000056 ], [ -119.642860634999977, 49.826325352000055 ], [ -119.643441778999957, 49.825960203000129 ], [ -119.643412362999982, 49.825940392000078 ], [ -119.64283778199993, 49.825553795000125 ], [ -119.64238873499994, 49.825362988000116 ], [ -119.641798493999914, 49.825112212000072 ], [ -119.641392880999902, 49.824537793000026 ], [ -119.641322483999915, 49.824312506000069 ], [ -119.641306218999929, 49.824201310000035 ], [ -119.641248102999953, 49.82380428700008 ], [ -119.641161406999984, 49.823514850000052 ], [ -119.640959324999926, 49.82309415800011 ], [ -119.640731441999932, 49.822619782000061 ], [ -119.640362167999967, 49.821850990000065 ], [ -119.639944579999963, 49.820981683000099 ], [ -119.639607946999917, 49.820581894000036 ], [ -119.639525611999929, 49.820484140000076 ], [ -119.639111990999979, 49.820148515000078 ], [ -119.638768659999982, 49.819915817000094 ], [ -119.638421105999925, 49.819680242000082 ], [ -119.638292905999961, 49.819566111000057 ], [ -119.63810090500003, 49.819395207000113 ], [ -119.637927717999929, 49.819186463000072 ], [ -119.6374753, 49.818478371000069 ], [ -119.637445511999957, 49.818427139000065 ], [ -119.637215175999984, 49.818030921000066 ], [ -119.636526645999965, 49.816846588000097 ], [ -119.636510891999976, 49.81681944200006 ], [ -119.636320636999983, 49.816432710000065 ], [ -119.636119841999985, 49.815668964000047 ], [ -119.636031556999953, 49.81533325500007 ], [ -119.635824284999927, 49.814871423000113 ], [ -119.635737753999976, 49.814678662000041 ], [ -119.63477445099997, 49.813863966000056 ], [ -119.634508545999893, 49.813690448000052 ], [ -119.634428000999961, 49.813662476000076 ], [ -119.63423976499999, 49.813597100000038 ], [ -119.633868748999987, 49.813557393000039 ], [ -119.633518006999921, 49.813592002000092 ], [ -119.633026113999932, 49.813798938000055 ], [ -119.632904989999957, 49.813850405000046 ], [ -119.632193214, 49.814152660000097 ], [ -119.63216629799993, 49.814164085000058 ], [ -119.631632394999912, 49.814362254000038 ], [ -119.631409713999929, 49.814408834000076 ], [ -119.631163047999976, 49.814357422000136 ], [ -119.630756740999956, 49.81417026800009 ], [ -119.630276765999909, 49.814031168000049 ], [ -119.629601684999969, 49.813931229000083 ], [ -119.62923744599999, 49.81376279100013 ], [ -119.628907738999914, 49.813576482000023 ], [ -119.627966691999958, 49.813233312000094 ], [ -119.626843856999955, 49.812823830000077 ], [ -119.623448229999937, 49.811814812000122 ], [ -119.623435544999964, 49.811811049 ], [ -119.623280974999957, 49.812069282000081 ], [ -119.623152428999973, 49.812490675000063 ], [ -119.622882633999922, 49.814704249000037 ], [ -119.622884073999955, 49.815463675000082 ], [ -119.622955565999959, 49.815851714000118 ], [ -119.62297047299991, 49.815932510000046 ], [ -119.623008593999913, 49.816139334000084 ], [ -119.623070618999918, 49.816475955000072 ], [ -119.623112608999975, 49.816845009000062 ], [ -119.62309618099999, 49.817092289000101 ], [ -119.622972283999957, 49.817350563000026 ], [ -119.623158204000021, 49.817667458000045 ], [ -119.62313892499999, 49.817855977000143 ], [ -119.622838108999971, 49.818192400000058 ], [ -119.622716162999907, 49.818367546000054 ], [ -119.62252402299994, 49.818643508000015 ], [ -119.622212356999938, 49.818873256000131 ], [ -119.621990713999963, 49.819036715000067 ], [ -119.621786282999935, 49.819282096000094 ], [ -119.621722210999962, 49.819461585000113 ], [ -119.621574998999961, 49.821025906000024 ], [ -119.621411788, 49.821495001000123 ], [ -119.621021685999949, 49.822081594000039 ], [ -119.620735099999948, 49.822385389000061 ], [ -119.62026910400003, 49.822875488000122 ], [ -119.620000088999973, 49.823063804000085 ], [ -119.617887912999905, 49.823993109000114 ], [ -119.617837838999961, 49.823832166000059 ], [ -119.617738847999973, 49.823541947000095 ], [ -119.61739362599991, 49.823589476000045 ], [ -119.617094501999972, 49.823630661000067 ], [ -119.616297929999973, 49.823740239000095 ], [ -119.61561298499997, 49.823899698000034 ], [ -119.614183611999977, 49.824424607000083 ], [ -119.613745280999979, 49.824536194000068 ], [ -119.614014078999901, 49.824165135000101 ], [ -119.615959720999982, 49.823438506000102 ], [ -119.6172554, 49.823220598000027 ], [ -119.618357577999944, 49.823015493000071 ], [ -119.618833508999927, 49.822851707000034 ], [ -119.619045901999968, 49.822667994000028 ], [ -119.619246911999966, 49.822249289000091 ], [ -119.619185997000031, 49.821881793000038 ], [ -119.619017588999924, 49.821615504000079 ], [ -119.619182292999966, 49.821557088000127 ], [ -119.619360415999964, 49.821769298000042 ], [ -119.619558106999961, 49.821837686000087 ], [ -119.619801811999977, 49.8217237060001 ], [ -119.620091515999903, 49.821420395000125 ], [ -119.620415194999936, 49.820711095000078 ], [ -119.620615778999948, 49.819293995000066 ], [ -119.620823805999947, 49.818758501000026 ], [ -119.62131240199993, 49.818261487000093 ], [ -119.622427590999976, 49.817553706000083 ], [ -119.622749196999962, 49.817069393000104 ], [ -119.622774987999946, 49.816286109000046 ], [ -119.622590309999907, 49.816200703000106 ], [ -119.621610509999954, 49.816059709000086 ], [ -119.622361311999953, 49.816069590000083 ], [ -119.622428008999947, 49.816005509000021 ], [ -119.621304496, 49.815833188000113 ], [ -119.621802499999959, 49.815767700000087 ], [ -119.622391906999923, 49.815880187000111 ], [ -119.6224210929999, 49.815636706000106 ], [ -119.622212816999976, 49.81539880800004 ], [ -119.622406989999945, 49.814611205000041 ], [ -119.622132995999962, 49.813395004000093 ], [ -119.622224377999942, 49.8127711980001 ], [ -119.622409697999942, 49.812335290000114 ], [ -119.622324688999939, 49.811015104000056 ], [ -119.622513007999885, 49.810651899000078 ], [ -119.622910097999963, 49.810283089000016 ], [ -119.624570912999971, 49.809623705000064 ], [ -119.62501090399995, 49.80929890800013 ], [ -119.628044509999924, 49.808069805000045 ], [ -119.630321303999892, 49.807757908 ], [ -119.631626984, 49.80746739900006 ], [ -119.632652198999921, 49.807416109000037 ], [ -119.634041499999952, 49.807663910000038 ], [ -119.634529513999937, 49.807688204000016 ], [ -119.635188117999945, 49.808024303000074 ], [ -119.635849201, 49.808198009000058 ], [ -119.636558077999965, 49.808200894000038 ], [ -119.63722076199997, 49.808530185000045 ], [ -119.637222785999938, 49.808567371000073 ], [ -119.637292409999958, 49.808565786000059 ], [ -119.637458088999892, 49.808648111000096 ], [ -119.637938691999977, 49.808772015000052 ], [ -119.63848319899995, 49.808739216000063 ], [ -119.638516291999935, 49.80934754500003 ], [ -119.636850237999937, 49.809385488000011 ], [ -119.63686489199992, 49.809655033000084 ], [ -119.636405667999909, 49.809665487000089 ], [ -119.636373109999937, 49.809899348000044 ], [ -119.633388409999938, 49.809725131000079 ], [ -119.633380277999933, 49.809783517000064 ], [ -119.632929252999986, 49.809757184000034 ], [ -119.632915261999983, 49.809857627000106 ], [ -119.632280933999979, 49.809820589000033 ], [ -119.632247144999923, 49.810063142000061 ], [ -119.631645221000014, 49.810027992000116 ], [ -119.631643916, 49.81003735600008 ], [ -119.631137571999943, 49.810007785000025 ], [ -119.631119599999977, 49.810136768000071 ], [ -119.631053220999959, 49.810132891000059 ], [ -119.630862999, 49.811498037000057 ], [ -119.63155417199999, 49.811538403000078 ], [ -119.631418829999959, 49.812509758000033 ], [ -119.634109235, 49.81266684000007 ], [ -119.634095657, 49.812416826000067 ], [ -119.63534527899999, 49.812388399000106 ], [ -119.635389219999965, 49.813197034000076 ], [ -119.636222312999976, 49.813178074000078 ], [ -119.636266269999936, 49.813986708000073 ], [ -119.637099376999913, 49.813967743000028 ], [ -119.637143348999984, 49.814776375000129 ], [ -119.636726789999926, 49.814785858000036 ], [ -119.636770756999937, 49.815594491000049 ], [ -119.637187322999921, 49.815585008000028 ], [ -119.63717266499999, 49.815315463000047 ], [ -119.63758923099999, 49.815305977000016 ], [ -119.63755991, 49.814766889000069 ], [ -119.638809588999905, 49.814738424000026 ], [ -119.638824255999936, 49.815007967000099 ], [ -119.639240815999983, 49.814998476000071 ], [ -119.639270155999952, 49.815537563000163 ], [ -119.639686721999979, 49.815528071000124 ], [ -119.639709803999963, 49.815952095000085 ], [ -119.641819905999938, 49.816075130000073 ], [ -119.64150726299998, 49.818322310000035 ], [ -119.641529178, 49.818724600000088 ], [ -119.641451042999932, 49.818726383000076 ], [ -119.64137570299999, 49.819267856000089 ], [ -119.642391740999983, 49.819244681000058 ], [ -119.642450499999939, 49.820322853000064 ], [ -119.641200681000015, 49.820351359000043 ], [ -119.641244731999947, 49.821159987000037 ], [ -119.64207795899992, 49.821140985000056 ], [ -119.642083955999937, 49.821251018000105 ], [ -119.644667254999973, 49.82140156300008 ], [ -119.644285612999937, 49.824145557000051 ], [ -119.646001573999953, 49.824245522000055 ], [ -119.645989285, 49.82402035500008 ], [ -119.646120658999948, 49.824017354000063 ], [ -119.646319002999988, 49.822590900000122 ], [ -119.647583866, 49.822664568000064 ], [ -119.64756750799998, 49.822365023000089 ], [ -119.647984127999933, 49.822355500000064 ], [ -119.647969405999945, 49.822085958000031 ], [ -119.648386026999944, 49.822076433000106 ], [ -119.648356579, 49.821537350000121 ], [ -119.648773191999936, 49.821527824000057 ], [ -119.648743742, 49.820988741000122 ], [ -119.649049834999971, 49.820981740000079 ], [ -119.649485227999961, 49.81784866099999 ], [ -119.649634856999938, 49.817857372000091 ], [ -119.649671333999962, 49.817594865000032 ], [ -119.650178812999982, 49.817624411000082 ], [ -119.650272643, 49.816949077000039 ], [ -119.650484016999926, 49.816961382000045 ], [ -119.65052334799995, 49.816678282000062 ], [ -119.65081009, 49.816694974 ], [ -119.650925975999982, 49.815860788000066 ], [ -119.6509379, 49.815861482000059 ], [ -119.650981990999981, 49.815544088000067 ], [ -119.651140254999945, 49.815553302000062 ], [ -119.651202405999982, 49.815105892000098 ], [ -119.654689708999967, 49.815308840000064 ], [ -119.65466819199996, 49.814915781000103 ], [ -119.655084747999965, 49.814906233000045 ], [ -119.655069990999976, 49.814636692000072 ], [ -119.656024880999922, 49.814614798000022 ], [ -119.656206005999977, 49.814610644000034 ], [ -119.654765610999974, 49.815508385000065 ], [ -119.654301315999959, 49.815919205000107 ], [ -119.65419426499993, 49.816053445000065 ], [ -119.653985495, 49.816315307000131 ], [ -119.65278557299996, 49.818677892000061 ], [ -119.652234295999961, 49.819332890000076 ], [ -119.651616144999977, 49.819901214000012 ], [ -119.651289871999921, 49.820201175000136 ], [ -119.65121983399996, 49.820265587000051 ], [ -119.650478507999949, 49.820947092000054 ], [ -119.649993088999921, 49.821422264000063 ], [ -119.649093106999956, 49.82230321600008 ], [ -119.648976409999989, 49.822417435000091 ], [ -119.648347211, 49.823033301000052 ], [ -119.648013016999982, 49.823429308000101 ], [ -119.647917996999979, 49.823541896000087 ], [ -119.647488856999985, 49.824202349000117 ], [ -119.647460091999932, 49.824246612000088 ], [ -119.647116601999983, 49.82501999600003 ], [ -119.64687673499995, 49.825001124000075 ], [ -119.646639426999982, 49.824982446000014 ], [ -119.64650861799997, 49.825440805000042 ], [ -119.64649588899999, 49.825467939000106 ], [ -119.646137474999975, 49.826233595000105 ], [ -119.645970309999939, 49.826463089000093 ], [ -119.645813208, 49.826589388000059 ], [ -119.645580495999965, 49.826697710000062 ], [ -119.64527538399993, 49.826764792000041 ], [ -119.644978884999901, 49.826770095000022 ], [ -119.644682693999982, 49.82671319700011 ], [ -119.644387810999945, 49.826596696000067 ] ], [ [ -119.640784073999939, 49.820360858000129 ], [ -119.640743943999922, 49.819624039000061 ], [ -119.639907051999927, 49.819575242000106 ], [ -119.639950860999988, 49.820379852 ], [ -119.640784073999939, 49.820360858000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6001250", "BldgCostT": "3875000", "sL_LossRatio": "1", "sL_AssetLoss": "958.7", "sL_BldgLoss": "958.7", "sL_StrLoss": "958.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E6C93AB54EA5DC0F47485A9F3E64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.662064873999967, 49.805300244000065 ], [ -119.66205987799999, 49.805209173000058 ], [ -119.660632946999925, 49.805126222000041 ], [ -119.660736121999918, 49.804382178000068 ], [ -119.660754333999961, 49.804250844000059 ], [ -119.660358077999945, 49.804259947000098 ], [ -119.66033986399998, 49.804260366000101 ], [ -119.660339262999969, 49.804249382000094 ], [ -119.660334787999943, 49.804167790000122 ], [ -119.660177708999981, 49.804158657000045 ], [ -119.656844890999949, 49.80396482000004 ], [ -119.656915129999931, 49.803458583000065 ], [ -119.657901695999968, 49.803206200000034 ], [ -119.659700382999972, 49.802579495000046 ], [ -119.661691010999917, 49.801354699000058 ], [ -119.66315630599999, 49.801213693000129 ], [ -119.663817463999948, 49.800996410000025 ], [ -119.662749623999957, 49.80187527700005 ], [ -119.662836542999926, 49.801922227000041 ], [ -119.662873658999956, 49.80199660500007 ], [ -119.662838692999927, 49.802077648000079 ], [ -119.662808679999969, 49.802098467000071 ], [ -119.662718397999981, 49.802160942000064 ], [ -119.662238593, 49.802295852000071 ], [ -119.662360668999966, 49.802502321000105 ], [ -119.662865575999916, 49.803597385000053 ], [ -119.663162198999956, 49.804240800000052 ], [ -119.663623960999985, 49.804619150000079 ], [ -119.663698927999988, 49.80468057900007 ], [ -119.664394697999953, 49.805250702000123 ], [ -119.664430377999935, 49.80544538700007 ], [ -119.664371306999911, 49.805517085000062 ], [ -119.664177953999939, 49.805521534000029 ], [ -119.66416202799995, 49.8055219 ], [ -119.664163031000015, 49.805540180000087 ], [ -119.664174856999978, 49.805755523000094 ], [ -119.664144657999927, 49.805792178000068 ], [ -119.663957919999973, 49.805796474 ], [ -119.66376035699993, 49.805801018000096 ], [ -119.663772824999967, 49.80602809600002 ], [ -119.663783913999978, 49.806230019000068 ], [ -119.663691349999922, 49.806342363000049 ], [ -119.663518747999959, 49.806346333000121 ], [ -119.663373480999979, 49.806349674000067 ], [ -119.66338265499995, 49.806516791000057 ], [ -119.66338827899996, 49.80661921300009 ], [ -119.663299245999923, 49.806621261000046 ], [ -119.662971796999955, 49.806628791000051 ], [ -119.66299247699996, 49.807005484000115 ], [ -119.663001391999956, 49.8071678680001 ], [ -119.66286023399999, 49.807171113000088 ], [ -119.662584905999935, 49.807177444000047 ], [ -119.662602291999974, 49.80749417400007 ], [ -119.66261100499996, 49.807652921000034 ], [ -119.662557418999938, 49.807717834000101 ], [ -119.66242121099998, 49.807720965000016 ], [ -119.662198005999954, 49.80772609600006 ], [ -119.66221209699998, 49.807982862000088 ], [ -119.662212799999963, 49.80799563500009 ], [ -119.662201694999936, 49.8079958900001 ], [ -119.66096331699994, 49.808024350000032 ], [ -119.660904171999945, 49.806946192000041 ], [ -119.661320656999948, 49.806936622000087 ], [ -119.66129108200002, 49.806397545000046 ], [ -119.661707561999933, 49.806387973000056 ], [ -119.66164840499999, 49.805309816000026 ], [ -119.662064873999967, 49.805300244000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3202084", "BldgCostT": "2208334", "sL_LossRatio": "1", "sL_AssetLoss": "327.5", "sL_BldgLoss": "327.5", "sL_StrLoss": "327.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000036069D10BAE95DC0A1453A2C22E74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.653839516999952, 49.804180293000087 ], [ -119.654600735999949, 49.804005160000031 ], [ -119.654179811999882, 49.807037546000068 ], [ -119.648646516999975, 49.806715389 ], [ -119.648822194999966, 49.805450929000131 ], [ -119.65012040799995, 49.805282711000082 ], [ -119.650888890999937, 49.8048596880001 ], [ -119.651991887999969, 49.80443811100011 ], [ -119.653839516999952, 49.804180293000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5903917", "BldgCostT": "4071667", "sL_LossRatio": "0.999999978303946", "sL_AssetLoss": "654.404719198", "sL_BldgLoss": "654.404705", "sL_StrLoss": "654.400045", "sL_NStrLoss": "0.00466", "sL_ContLoss": "0.000014198", "geom_point": "0101000020E6100000D304FEAE17EC5DC098B9C8567AEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.69088097199996, 49.8484548590001 ], [ -119.690918941999897, 49.848180006000071 ], [ -119.689291339999954, 49.848085915000127 ], [ -119.689365172999956, 49.847551574000128 ], [ -119.688163430999964, 49.847482087000081 ], [ -119.6881191, 49.847802854000101 ], [ -119.682580640999916, 49.847482432000078 ], [ -119.682646994999956, 49.847002728000092 ], [ -119.68872715899991, 49.84682613600004 ], [ -119.689648016999953, 49.846878108000105 ], [ -119.693346059999925, 49.847088669000094 ], [ -119.693094422999962, 49.848582778000093 ], [ -119.69088097199996, 49.8484548590001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "42773251", "BldgCostT": "29235001", "sL_LossRatio": "1", "sL_AssetLoss": "3903.7", "sL_BldgLoss": "3903.7", "sL_StrLoss": "3903.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007E2FC7239FE25DC079A84CB53FF34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.537818605999931, 49.902360996000027 ], [ -119.537583712, 49.901600489 ], [ -119.537694506999969, 49.900807188000044 ], [ -119.537188600999954, 49.900179200000103 ], [ -119.53723319699999, 49.899431498000084 ], [ -119.538019599999984, 49.89824510800004 ], [ -119.537967677, 49.897874806000061 ], [ -119.537888919999929, 49.89731324200006 ], [ -119.537819688999917, 49.896819501000074 ], [ -119.538325286999935, 49.895566109000086 ], [ -119.538558221999935, 49.895210449000089 ], [ -119.540934029999931, 49.895279552000027 ], [ -119.541472545999937, 49.895198552000068 ], [ -119.546541475999916, 49.895284869000101 ], [ -119.546713203999985, 49.895137762000076 ], [ -119.54667722799995, 49.894093655000141 ], [ -119.546920158999953, 49.892329297000067 ], [ -119.54700825899999, 49.892403542000075 ], [ -119.547383296999939, 49.892903342000054 ], [ -119.547491569999977, 49.893253830000035 ], [ -119.547479780999964, 49.893436326 ], [ -119.547397883999963, 49.893640135000069 ], [ -119.547063623999975, 49.8939779190001 ], [ -119.54704333299999, 49.894121214000073 ], [ -119.547067217999953, 49.89435732000014 ], [ -119.547263417, 49.894897110000038 ], [ -119.547311348, 49.895012925000096 ], [ -119.547366491999966, 49.895146099000101 ], [ -119.547355354999965, 49.895197508000109 ], [ -119.547338316999983, 49.895276300000077 ], [ -119.54724698299998, 49.895427999000077 ], [ -119.546971603999935, 49.895695202000091 ], [ -119.546355207999966, 49.896051597000088 ], [ -119.546236707999938, 49.896168305000053 ], [ -119.546197301999925, 49.896308587000057 ], [ -119.546235407999944, 49.896434599000123 ], [ -119.546593210999987, 49.896740089000019 ], [ -119.546684123999938, 49.896858400000049 ], [ -119.546720594999982, 49.897005001000096 ], [ -119.546712380999963, 49.89737919400001 ], [ -119.546715225999918, 49.89753740000009 ], [ -119.546998810999952, 49.898021909000079 ], [ -119.54698149299999, 49.898193305000113 ], [ -119.546740275999966, 49.898584490000111 ], [ -119.546662377999937, 49.898838999000056 ], [ -119.546373179999989, 49.899381736000073 ], [ -119.545777992999973, 49.899978380000015 ], [ -119.544617546999945, 49.901141656000071 ], [ -119.544266019999952, 49.901699654000033 ], [ -119.544310766999914, 49.903239952 ], [ -119.54428527, 49.903419942000077 ], [ -119.544085861999974, 49.903668151000034 ], [ -119.544165687999936, 49.903104230000125 ], [ -119.543592622999952, 49.903070373000098 ], [ -119.543743765000031, 49.902002703000093 ], [ -119.543609593999946, 49.901994776000038 ], [ -119.543716909999929, 49.901236690000111 ], [ -119.543564342999943, 49.901227676000119 ], [ -119.54376315199994, 49.899823231000056 ], [ -119.543547336999922, 49.899810479000017 ], [ -119.543798356999929, 49.898037125000087 ], [ -119.543506554999908, 49.89801988300006 ], [ -119.543732941999963, 49.896420504000083 ], [ -119.543383959999929, 49.896399881000029 ], [ -119.543341413999983, 49.896700455000037 ], [ -119.542677129999944, 49.896661197000057 ], [ -119.542625701999967, 49.897024470000055 ], [ -119.54200457499999, 49.896987759000098 ], [ -119.541956588999966, 49.897326684000106 ], [ -119.541076709999956, 49.897274674000109 ], [ -119.54075585899993, 49.899540406000064 ], [ -119.540484315, 49.899524354000114 ], [ -119.540389657999953, 49.90019271700011 ], [ -119.541228335999918, 49.900242295000062 ], [ -119.541178372999951, 49.900595116000019 ], [ -119.541272759999941, 49.900600695000023 ], [ -119.54114885199999, 49.901475675000029 ], [ -119.541254118999987, 49.901481897000096 ], [ -119.541115889999929, 49.902457979000133 ], [ -119.541615172, 49.902487489000066 ], [ -119.541107934999971, 49.906069180000031 ], [ -119.540926020999976, 49.906058429000069 ], [ -119.540808565999939, 49.906887685000051 ], [ -119.540165004999949, 49.906849646000126 ], [ -119.540098758999989, 49.907317301000042 ], [ -119.537383635000012, 49.907156775000075 ], [ -119.53639270799999, 49.907098172000097 ], [ -119.53651271499993, 49.906670696000063 ], [ -119.536621597999925, 49.906363114000087 ], [ -119.536526702999964, 49.905897411000048 ], [ -119.535744707000021, 49.904789291000093 ], [ -119.53574450099994, 49.904528692000106 ], [ -119.53600278699993, 49.904109990000052 ], [ -119.536602709999897, 49.903862200000049 ], [ -119.53686021299994, 49.903497588000036 ], [ -119.53744782299998, 49.903241206000054 ], [ -119.537578305999929, 49.903085990000086 ], [ -119.537818605999931, 49.902360996000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "68.2", "sL_BldgLoss": "68.2", "sL_StrLoss": "68.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079BFFA0D4DEB5DC0169DF209D5ED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.676390511999955, 49.856455430000047 ], [ -119.677053814999979, 49.856493850000057 ], [ -119.676557684, 49.860076388000024 ], [ -119.676235087999956, 49.860057703000052 ], [ -119.676390511999955, 49.856455430000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39541583", "BldgCostT": "26798333", "sL_LossRatio": "1", "sL_AssetLoss": "3337.4", "sL_BldgLoss": "3337.4", "sL_StrLoss": "3337.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A183899A43E25DC022D5B99A23F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.536376002999972, 49.909120300000041 ], [ -119.536645494999945, 49.908161895000042 ], [ -119.536368352999958, 49.907383405000125 ], [ -119.537384117999963, 49.907443476000033 ], [ -119.53953518199998, 49.907570658000047 ], [ -119.539392468999921, 49.908577992000076 ], [ -119.540919004999978, 49.908668222000131 ], [ -119.540411644999935, 49.912249880000076 ], [ -119.53958897699998, 49.912201256000074 ], [ -119.539385276999937, 49.913638900000095 ], [ -119.539300329999932, 49.913633879000017 ], [ -119.539243292999984, 49.914036402000136 ], [ -119.539218439999928, 49.914034933000067 ], [ -119.539175707999902, 49.914336503000129 ], [ -119.538208339999954, 49.914279318000069 ], [ -119.53780280299999, 49.917140627000016 ], [ -119.537216235999935, 49.917105949000124 ], [ -119.53718418699998, 49.917332041000087 ], [ -119.536683431999961, 49.917302433000046 ], [ -119.536661170999949, 49.917459452000045 ], [ -119.536397707999967, 49.917443874000099 ], [ -119.536369468999979, 49.917643058000067 ], [ -119.536137969, 49.91762937000005 ], [ -119.53610407099994, 49.91786846400003 ], [ -119.535797127999913, 49.91785031400007 ], [ -119.535768265999963, 49.918053871000062 ], [ -119.535542646999929, 49.918040528000098 ], [ -119.535510467, 49.918267476000032 ], [ -119.534407190999929, 49.918202226000055 ], [ -119.533908888999946, 49.92171560400007 ], [ -119.528362569999928, 49.921387412000072 ], [ -119.528465990999933, 49.920658884000048 ], [ -119.528592239, 49.919769533000078 ], [ -119.528656380999948, 49.919714995000035 ], [ -119.529541016999971, 49.918571908000075 ], [ -119.529752998999939, 49.918297992000056 ], [ -119.530022398999932, 49.918147004000041 ], [ -119.531455488999953, 49.917819393000123 ], [ -119.532025093999934, 49.91754599300004 ], [ -119.532424953999964, 49.916631132000063 ], [ -119.532584719999932, 49.916265603000056 ], [ -119.532759089999971, 49.91610039300005 ], [ -119.53395210799998, 49.915506485 ], [ -119.534312315999941, 49.915193194000082 ], [ -119.535292090999974, 49.914748795000015 ], [ -119.535837913999984, 49.914241802000028 ], [ -119.536212278999983, 49.913676397000103 ], [ -119.536365610999923, 49.912377488000054 ], [ -119.536570309999959, 49.912022903000114 ], [ -119.536608084999912, 49.911698202000089 ], [ -119.536376002999972, 49.909120300000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14724750", "BldgCostT": "10155000", "sL_LossRatio": "1", "sL_AssetLoss": "1340.3", "sL_BldgLoss": "1340.3", "sL_StrLoss": "1340.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000694F45014DE75DC0FF25EB6803EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.61282004399996, 49.871694483000034 ], [ -119.611845349999953, 49.867917117000076 ], [ -119.611605807999965, 49.866909466000031 ], [ -119.611703217999931, 49.865238435000016 ], [ -119.612150206999985, 49.865054246000078 ], [ -119.611726140999963, 49.864844881000082 ], [ -119.61190610099996, 49.864787301000092 ], [ -119.611801949999972, 49.86470375199999 ], [ -119.612153554999978, 49.864049138000041 ], [ -119.612444820999926, 49.864038373 ], [ -119.61546700699995, 49.864240682000101 ], [ -119.619393573999929, 49.864503341000066 ], [ -119.619396988999981, 49.864566448000041 ], [ -119.618979994999989, 49.864575874000074 ], [ -119.618994576999924, 49.864845421000091 ], [ -119.617837318999975, 49.864871575000102 ], [ -119.617766667999931, 49.86537692600006 ], [ -119.617362665, 49.865353310000089 ], [ -119.617321162999971, 49.865650136000134 ], [ -119.613870721999987, 49.8654483810001 ], [ -119.613636102, 49.867125426000058 ], [ -119.613690030999976, 49.867124209000146 ], [ -119.613733694999922, 49.867932850000045 ], [ -119.614150718999937, 49.867923441000066 ], [ -119.614136161999937, 49.867653895000089 ], [ -119.61538722799996, 49.867625661000062 ], [ -119.615372663999977, 49.867356115000035 ], [ -119.616623721999929, 49.867327867000036 ], [ -119.616667434999954, 49.868136505000116 ], [ -119.61583338399997, 49.868155339000111 ], [ -119.615837776000021, 49.868236632000119 ], [ -119.61584795, 49.868424886000128 ], [ -119.615430921999945, 49.868434300000054 ], [ -119.615494847999983, 49.869617297000019 ], [ -119.615518314999974, 49.870051578000066 ], [ -119.615101271999919, 49.870060992000084 ], [ -119.615130399999913, 49.870600084000095 ], [ -119.613462208999962, 49.870637725000051 ], [ -119.613418543999927, 49.869829084000095 ], [ -119.612584460999955, 49.869847895000092 ], [ -119.612628111, 49.870656536000091 ], [ -119.613045159999956, 49.870647131000041 ], [ -119.613059712999956, 49.870916678000086 ], [ -119.613476764000012, 49.870907272000089 ], [ -119.61349131799993, 49.871176818000016 ], [ -119.614325423999944, 49.871158 ], [ -119.614369106999959, 49.871966640000089 ], [ -119.613952046999913, 49.871976049000075 ], [ -119.613966604999916, 49.872245596 ], [ -119.612968070999926, 49.872268120000058 ], [ -119.61282004399996, 49.871694483000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "231.4", "sL_BldgLoss": "231.4", "sL_StrLoss": "231.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0BF95ECD8EA5DC017BFE78F02EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.66887155099991, 49.865786658000069 ], [ -119.670194818999946, 49.865791438000024 ], [ -119.670395441999972, 49.868629611000081 ], [ -119.668492551999947, 49.868519296000095 ], [ -119.66887155099991, 49.865786658000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "122.7", "sL_BldgLoss": "122.7", "sL_StrLoss": "122.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B759C4C9A0E25DC09A78499424F64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.540463621999933, 49.924057341 ], [ -119.540889165999914, 49.921054105000067 ], [ -119.541090762999886, 49.921338085000116 ], [ -119.54159520899999, 49.923225137000053 ], [ -119.541711217999989, 49.924131046000134 ], [ -119.540463621999933, 49.924057341 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "253", "sL_BldgLoss": "253", "sL_StrLoss": "253", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000507090949DE25DC059B70742AEF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.541554311999974, 49.924592410000031 ], [ -119.54176969599996, 49.924587687000056 ], [ -119.541771132999955, 49.924598905000074 ], [ -119.541946744999947, 49.925313529000086 ], [ -119.541939826999965, 49.925559611000018 ], [ -119.541398524, 49.926073891000051 ], [ -119.541196486999979, 49.926463739000084 ], [ -119.54117837699999, 49.926690183000062 ], [ -119.541278668999965, 49.927186391000127 ], [ -119.541601126, 49.927802242000034 ], [ -119.541618070999931, 49.927988576000104 ], [ -119.541651451999925, 49.928355089000028 ], [ -119.541294874999949, 49.928598752000042 ], [ -119.54115287399999, 49.928695823000055 ], [ -119.541061548999934, 49.928734538000086 ], [ -119.540934157, 49.928788537000045 ], [ -119.54066781, 49.928862198000019 ], [ -119.540290820999985, 49.929025905000081 ], [ -119.540102053999959, 49.929055395000063 ], [ -119.539814624999934, 49.929045632000054 ], [ -119.540083981999913, 49.927145137000075 ], [ -119.54043559099992, 49.92716591100001 ], [ -119.540372574999978, 49.92596766900003 ], [ -119.54079012399994, 49.925958517000026 ], [ -119.540761768999957, 49.925419398000074 ], [ -119.541179313999976, 49.925410243000087 ], [ -119.541165133, 49.925140684000034 ], [ -119.54158267599999, 49.925131529000069 ], [ -119.541554311999974, 49.924592410000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020119", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9746417", "BldgCostT": "6721667", "sL_LossRatio": "1", "sL_AssetLoss": "718", "sL_BldgLoss": "718", "sL_StrLoss": "718", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006164B07FAAD65DC09974A5AF31FD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352773314999951, 49.975994956000058 ], [ -119.357030726999966, 49.976253454000108 ], [ -119.356867817999941, 49.977369780000068 ], [ -119.356508190999975, 49.97983392000009 ], [ -119.353623730999971, 49.97965880200011 ], [ -119.353632306999927, 49.979834480000044 ], [ -119.353214232999946, 49.979842966000035 ], [ -119.353253704999958, 49.98065175000005 ], [ -119.352835623999937, 49.980660234000084 ], [ -119.35286193499999, 49.981199424000138 ], [ -119.352443849999958, 49.981207906000137 ], [ -119.352457003999973, 49.981477500999986 ], [ -119.351936895999984, 49.981488052000074 ], [ -119.35193141799995, 49.98137592700013 ], [ -119.351966222999977, 49.981231282000053 ], [ -119.35198662099999, 49.981077948000078 ], [ -119.352010570999965, 49.980996495000085 ], [ -119.35207189, 49.980824347000059 ], [ -119.352095838999958, 49.980742895000105 ], [ -119.352172016999958, 49.980588446000098 ], [ -119.352233809999987, 49.980425271000101 ], [ -119.352257720999916, 49.980343830000116 ], [ -119.352319073999965, 49.980171670000068 ], [ -119.352367370999943, 49.980017760000095 ], [ -119.352405650999955, 49.979945021000077 ], [ -119.352548003999928, 49.979717257000047 ], [ -119.35261292499996, 49.979626915000068 ], [ -119.352662879999968, 49.979499029000117 ], [ -119.352670671999988, 49.979372952000105 ], [ -119.352582241000036, 49.979275775000112 ], [ -119.35242500799994, 49.97919801200004 ], [ -119.352208097999977, 49.979040497000035 ], [ -119.352010063999927, 49.978888812000086 ], [ -119.351556549999913, 49.978540689000027 ], [ -119.351352790999982, 49.978354025000094 ], [ -119.351203298999934, 49.97815982500002 ], [ -119.351153375999971, 49.977926502000052 ], [ -119.351441478999988, 49.977420202000133 ], [ -119.351998417999965, 49.976627793000056 ], [ -119.352773314999951, 49.975994956000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "303", "sL_BldgLoss": "303", "sL_StrLoss": "303", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000020F5CFBAE3D45DC0C1DA62C87B0D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.32587253299999, 50.106958170000098 ], [ -119.325859468999951, 50.106688577000128 ], [ -119.325440284999956, 50.106696978000038 ], [ -119.325427223999895, 50.106427382000021 ], [ -119.325008040999961, 50.106435782000112 ], [ -119.32499498199995, 50.106166188000039 ], [ -119.324575800999924, 50.106174586000058 ], [ -119.324523580999966, 50.105096207000031 ], [ -119.324942753999963, 50.105087811000068 ], [ -119.324929696999959, 50.104818217000059 ], [ -119.325768032999946, 50.104801418000093 ], [ -119.325728850999937, 50.103992636000072 ], [ -119.326148012999937, 50.103984233000048 ], [ -119.3261349499999, 50.103714640000128 ], [ -119.327811584999935, 50.10368102000011 ], [ -119.327903096999961, 50.105568178000063 ], [ -119.327483922999974, 50.105576585000065 ], [ -119.327536208999931, 50.106654960000093 ], [ -119.327117024999907, 50.106663367000138 ], [ -119.327130094999944, 50.106932961 ], [ -119.32587253299999, 50.106958170000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818333", "BldgCostT": "2633333", "sL_LossRatio": "1", "sL_AssetLoss": "295.8", "sL_BldgLoss": "295.8", "sL_StrLoss": "295.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007859D95FF2CF5DC0140B3A29E5064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.251064510999967, 50.051908107000031 ], [ -119.251234287, 50.051770275000088 ], [ -119.250892644999951, 50.054070342000102 ], [ -119.249943469999948, 50.05401190500006 ], [ -119.24985453, 50.054610564000072 ], [ -119.24970131799995, 50.05460113100002 ], [ -119.249680228999978, 50.054743068000057 ], [ -119.248598758999904, 50.054676474000125 ], [ -119.248473220999955, 50.055521293000083 ], [ -119.248161579999987, 50.055502102000077 ], [ -119.248158206999918, 50.055524801000068 ], [ -119.247768179999966, 50.055500780000067 ], [ -119.247744395999945, 50.055660809000102 ], [ -119.246404270999946, 50.055578265000115 ], [ -119.246692358999937, 50.055350425000064 ], [ -119.247057297999959, 50.054905324000046 ], [ -119.247832898999931, 50.054130684000036 ], [ -119.248141665000034, 50.053686575 ], [ -119.248425469000011, 50.053341390000057 ], [ -119.24884883499999, 50.052966886000092 ], [ -119.24894573, 50.052920443000112 ], [ -119.249288677999985, 50.052663757000069 ], [ -119.249468761999935, 50.052580087000081 ], [ -119.249718305999963, 50.052468359000038 ], [ -119.250009398999921, 50.052338016000057 ], [ -119.250607732999939, 50.052130867000137 ], [ -119.251064510999967, 50.051908107000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6851250", "BldgCostT": "4725000", "sL_LossRatio": "1", "sL_AssetLoss": "606", "sL_BldgLoss": "606", "sL_StrLoss": "606", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000036D1425DFFD15DC08C206328860E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.279326633999958, 50.111515664000102 ], [ -119.283413590999956, 50.111765785000067 ], [ -119.282883707999986, 50.11534525000009 ], [ -119.282440219999955, 50.115318117000115 ], [ -119.282437888999965, 50.115333861000082 ], [ -119.279028532, 50.115125206000073 ], [ -119.27890229, 50.114947105000041 ], [ -119.278844900999943, 50.11429199800012 ], [ -119.279221508999925, 50.113978596000024 ], [ -119.279218, 50.113312100000037 ], [ -119.279589079999951, 50.112918992000068 ], [ -119.2800367899999, 50.11261280700009 ], [ -119.279856202999952, 50.112337903000103 ], [ -119.27930570699999, 50.111951984000079 ], [ -119.279266294999971, 50.111692798000036 ], [ -119.279326633999958, 50.111515664000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9437083", "BldgCostT": "6508333", "sL_LossRatio": "1", "sL_AssetLoss": "796", "sL_BldgLoss": "796", "sL_StrLoss": "796", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004F52687254D05DC04A159C2C7B054940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.258316993000037, 50.044087764000032 ], [ -119.258040903, 50.043716433000071 ], [ -119.258035512999967, 50.04371950300002 ], [ -119.257602864999981, 50.043965185000076 ], [ -119.257397306999934, 50.044081903000091 ], [ -119.257123403999969, 50.044178797000029 ], [ -119.256655397999921, 50.044223200000033 ], [ -119.256142497999974, 50.044182606000042 ], [ -119.255635496999972, 50.044092704000072 ], [ -119.255303653999974, 50.043998774000045 ], [ -119.254021415999944, 50.043432734000127 ], [ -119.253848646000037, 50.04339036300005 ], [ -119.2532074699999, 50.043355238000039 ], [ -119.251903982999963, 50.043438222000056 ], [ -119.250338997999947, 50.043399318000127 ], [ -119.249395157999942, 50.043239491000087 ], [ -119.249559200999954, 50.042135081000048 ], [ -119.25070568599989, 50.042205688000067 ], [ -119.250717251999973, 50.042127808000011 ], [ -119.253613711999932, 50.042306134000079 ], [ -119.253743159999942, 50.041434075000033 ], [ -119.258493567999949, 50.041726376000035 ], [ -119.259302065999989, 50.041776103000117 ], [ -119.258771102999958, 50.045355785000048 ], [ -119.258542773, 50.045341742000119 ], [ -119.258592226999951, 50.044983765000019 ], [ -119.258581079999928, 50.044625485000061 ], [ -119.258520960999959, 50.044314133000071 ], [ -119.258316993000037, 50.044087764000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "291.7", "sL_BldgLoss": "291.7", "sL_StrLoss": "291.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003670AC3062D05DC07F5C2C561E064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.25806282399995, 50.046044793000078 ], [ -119.2581252, 50.046000591000059 ], [ -119.258059432999971, 50.04644389800017 ], [ -119.257627584999952, 50.046417335000058 ], [ -119.257315213999931, 50.04852261000007 ], [ -119.256812025999963, 50.048491657000113 ], [ -119.256794697999936, 50.048608421000026 ], [ -119.256586408999937, 50.048595608000035 ], [ -119.256511611999926, 50.049099627000054 ], [ -119.254010406999924, 50.048945730000028 ], [ -119.254171322999952, 50.048704396000055 ], [ -119.254200078999972, 50.0486486980001 ], [ -119.254232827999942, 50.048399781000093 ], [ -119.254372323999974, 50.047937045000069 ], [ -119.254569461999978, 50.047592314000035 ], [ -119.254748327999977, 50.047312295000047 ], [ -119.2551790799999, 50.046896957000108 ], [ -119.255569717999919, 50.046711313000102 ], [ -119.255736723999959, 50.046669405000095 ], [ -119.256767006999951, 50.046669798000025 ], [ -119.257211945999984, 50.04650060400008 ], [ -119.257491720999951, 50.046272740000113 ], [ -119.25806282399995, 50.046044793000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "165.8", "sL_BldgLoss": "165.8", "sL_StrLoss": "165.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A84BAD9431D75DC02EECE54E1BFC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.361244423999906, 49.970455820000062 ], [ -119.361865212999987, 49.969531061000112 ], [ -119.36186109499999, 49.968795693000054 ], [ -119.362062597999923, 49.968460092000036 ], [ -119.363242034999971, 49.968458268000056 ], [ -119.363274478999983, 49.969165139000062 ], [ -119.363446706000033, 49.970459539000117 ], [ -119.363216810999972, 49.970464224000061 ], [ -119.363196344999906, 49.970046511000106 ], [ -119.362273982999952, 49.969990566000057 ], [ -119.362145938999959, 49.970868815000074 ], [ -119.361272090999961, 49.970815805000065 ], [ -119.361244423999906, 49.970455820000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21173083", "BldgCostT": "14338333", "sL_LossRatio": "1", "sL_AssetLoss": "1974", "sL_BldgLoss": "1974", "sL_StrLoss": "1974", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000077D524F40AD75DC0A9EBDCF6B5FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.363102619999935, 49.976673385000055 ], [ -119.363089408999898, 49.976403792000042 ], [ -119.362671366999933, 49.976412311000097 ], [ -119.362644951999968, 49.975873125000113 ], [ -119.361808876999973, 49.97589015800007 ], [ -119.361822079999968, 49.97615975100009 ], [ -119.35931384, 49.976210814000083 ], [ -119.359274272999969, 49.975402032000119 ], [ -119.359692305999957, 49.975393526000076 ], [ -119.35965273199993, 49.974584745000129 ], [ -119.35983314799995, 49.974581073000188 ], [ -119.358052832999959, 49.974473039000095 ], [ -119.35787752, 49.97567460000004 ], [ -119.353465489999905, 49.975406740000082 ], [ -119.353680416999936, 49.975167710000065 ], [ -119.353673217999983, 49.974747299000043 ], [ -119.353413604999943, 49.973878088000035 ], [ -119.353250283999955, 49.973203595000086 ], [ -119.352985506, 49.972667313000038 ], [ -119.352981683999971, 49.97247292 ], [ -119.353024059999925, 49.972422668000085 ], [ -119.353355746999952, 49.972837122000051 ], [ -119.353812588999972, 49.972709435000091 ], [ -119.354811495999968, 49.972764234000039 ], [ -119.355483914999965, 49.972760702000116 ], [ -119.359935948999933, 49.97169052800006 ], [ -119.360400346999953, 49.97156783500008 ], [ -119.359961249999969, 49.974578466000068 ], [ -119.360488784999959, 49.974567728000132 ], [ -119.360449199999891, 49.97375894700005 ], [ -119.360867218999942, 49.973750437000071 ], [ -119.360854021999927, 49.97348084300009 ], [ -119.361272038999928, 49.973472331000025 ], [ -119.361258839999948, 49.973202738000069 ], [ -119.361676851999931, 49.973194224000032 ], [ -119.36166365199999, 49.972924632000058 ], [ -119.36291768599996, 49.972899081000044 ], [ -119.362904477999905, 49.972629488000059 ], [ -119.36373320300001, 49.972612598000062 ], [ -119.363803375, 49.973139905000068 ], [ -119.365163635999963, 49.973157517000075 ], [ -119.36597242, 49.973302038000028 ], [ -119.366101782000015, 49.97418346300001 ], [ -119.365909882999958, 49.974187378000032 ], [ -119.365976013999955, 49.975535342000065 ], [ -119.366299234999985, 49.975528745000112 ], [ -119.366417710999883, 49.976335914000067 ], [ -119.366015692999966, 49.976344118000036 ], [ -119.366028921999956, 49.976613711000034 ], [ -119.363102619999935, 49.976673385000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "154.9", "sL_BldgLoss": "154.9", "sL_StrLoss": "154.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E18E38901CD5DC019EE128B4E094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.202184250999935, 50.072434913000073 ], [ -119.202343500999945, 50.072243136000033 ], [ -119.202492862000014, 50.072141400000127 ], [ -119.203021169999914, 50.072068620000088 ], [ -119.204239050999945, 50.072081902000058 ], [ -119.204412231, 50.072195644000068 ], [ -119.204661234999918, 50.072433921000034 ], [ -119.204801018999945, 50.07243132400005 ], [ -119.205147320999984, 50.072347868000087 ], [ -119.205136687999953, 50.072418939000052 ], [ -119.204966666999937, 50.072408406000136 ], [ -119.204930990999941, 50.072646844000168 ], [ -119.204723322999953, 50.072633977000059 ], [ -119.204688792999917, 50.072864749000132 ], [ -119.204393031999928, 50.072846423000058 ], [ -119.204363189, 50.0730458560001 ], [ -119.204049042999955, 50.073026391000035 ], [ -119.204016783999975, 50.073241963000029 ], [ -119.203595045, 50.073215829000098 ], [ -119.203574071999967, 50.073355973000076 ], [ -119.20312459799996, 50.073328119000088 ], [ -119.203123450999982, 50.073335783000083 ], [ -119.201368708999937, 50.07322702400009 ], [ -119.202184250999935, 50.072434913000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4458750", "BldgCostT": "3075000", "sL_LossRatio": "1", "sL_AssetLoss": "309.8", "sL_BldgLoss": "309.8", "sL_StrLoss": "309.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EDD0555F02CB5DC0E39367C1B80D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.17355036, 50.104116072000096 ], [ -119.173772557999925, 50.103861882000082 ], [ -119.173754744999968, 50.103980298000053 ], [ -119.17432704799991, 50.104015891000131 ], [ -119.173788676999976, 50.107594865000152 ], [ -119.173108627999952, 50.107552569000077 ], [ -119.173053363999927, 50.107919879000072 ], [ -119.171740561999968, 50.107838218000062 ], [ -119.171650631999952, 50.108435810000032 ], [ -119.17115241399992, 50.108404815000043 ], [ -119.17109252899999, 50.108802722000071 ], [ -119.17061790699999, 50.108773193000054 ], [ -119.170568320999948, 50.109102633000127 ], [ -119.170161356999955, 50.109077311000078 ], [ -119.170119716999977, 50.109353942000055 ], [ -119.169787753999969, 50.109333287000034 ], [ -119.169746814999911, 50.109605250000079 ], [ -119.169433548999933, 50.10958575700009 ], [ -119.169392014000024, 50.109861658000057 ], [ -119.169110537, 50.109844142000078 ], [ -119.169066014999913, 50.110139866000061 ], [ -119.168763614999975, 50.110121047000042 ], [ -119.168734809999975, 50.110312372000074 ], [ -119.168507328999922, 50.110298215000078 ], [ -119.168479207999965, 50.110484977000084 ], [ -119.168066304999954, 50.110459279000096 ], [ -119.168265994999942, 50.110314286000047 ], [ -119.168641357999917, 50.109938429000096 ], [ -119.168772817999979, 50.109423227000015 ], [ -119.169105079999923, 50.10902116100003 ], [ -119.170211926999954, 50.108091867000027 ], [ -119.170879327999955, 50.107674533000129 ], [ -119.171180715999938, 50.107524988000129 ], [ -119.171336537999963, 50.106928309000111 ], [ -119.171948003999958, 50.106512053000117 ], [ -119.172422021999978, 50.106152312000113 ], [ -119.172804093999957, 50.105929248000102 ], [ -119.173206600999947, 50.10553486800012 ], [ -119.173243699999944, 50.105102405000082 ], [ -119.173318896999916, 50.104903053000079 ], [ -119.173369951999973, 50.104470311000057 ], [ -119.17355036, 50.104116072000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80924500", "BldgCostT": "55810000", "sL_LossRatio": "1", "sL_AssetLoss": "8010", "sL_BldgLoss": "8010", "sL_StrLoss": "8010", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF2E1E396DD75DC0B1BABCD631FC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.36597242, 49.973302038000028 ], [ -119.365163635999963, 49.973157517000075 ], [ -119.363803375, 49.973139905000068 ], [ -119.36373320300001, 49.972612598000062 ], [ -119.363740494999917, 49.972612449000039 ], [ -119.363634799999986, 49.970455705000091 ], [ -119.363446706000033, 49.970459539000117 ], [ -119.363274478999983, 49.969165139000062 ], [ -119.363242034999971, 49.968458268000056 ], [ -119.364370320999953, 49.968456495000034 ], [ -119.364965304999942, 49.968456502000024 ], [ -119.365703110999974, 49.968648387000094 ], [ -119.365744018999962, 49.968647851000043 ], [ -119.36616600399995, 49.968642188000096 ], [ -119.367168385999904, 49.968486426 ], [ -119.367713000999942, 49.968401805000028 ], [ -119.369250517, 49.96841819900002 ], [ -119.369781611999912, 49.96959730500005 ], [ -119.370117608999948, 49.970423997000132 ], [ -119.366459694999975, 49.970854411000069 ], [ -119.366353844999978, 49.970890259000036 ], [ -119.366256375999939, 49.970923301000013 ], [ -119.366118676, 49.971032401000116 ], [ -119.36600271499999, 49.971232988000068 ], [ -119.36600031499999, 49.972085290000095 ], [ -119.365998192999953, 49.972177265000035 ], [ -119.365989119999981, 49.972573648000022 ], [ -119.36597242, 49.973302038000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020130", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "385722667", "BldgCostT": "257226667", "sL_LossRatio": "0.998553221991678", "sL_AssetLoss": "35458.100486", "sL_BldgLoss": "35406.800486", "sL_StrLoss": "35388.300486", "sL_NStrLoss": "18.5", "sL_ContLoss": "51.3", "geom_point": "0101000020E6100000C425AF4AF9D85DC09FDCDF6E83EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.395949762999976, 49.865091197000019 ], [ -119.395755089999966, 49.864757023000053 ], [ -119.395687942999984, 49.864709595000114 ], [ -119.395522434, 49.86469506300007 ], [ -119.395399406999957, 49.864753551000085 ], [ -119.395384728999943, 49.864874585000038 ], [ -119.395611259999967, 49.865142978000087 ], [ -119.395673215999963, 49.865293932000078 ], [ -119.395683519999963, 49.86635213700005 ], [ -119.395629532999948, 49.866435571000075 ], [ -119.395526636999989, 49.866499799000046 ], [ -119.395389660999967, 49.866529435000068 ], [ -119.394154807999939, 49.866539610000117 ], [ -119.394036818999936, 49.866515311000093 ], [ -119.393935110999948, 49.866445951000117 ], [ -119.393550596999987, 49.866014454000016 ], [ -119.393115838999947, 49.865737066000122 ], [ -119.392483492999972, 49.865107243000082 ], [ -119.392361937999979, 49.864914726000045 ], [ -119.392109723999965, 49.864312431000066 ], [ -119.39203213299993, 49.864230960000086 ], [ -119.391899409999894, 49.86417324800005 ], [ -119.391707115999949, 49.864150783000113 ], [ -119.391563372999912, 49.864179113000048 ], [ -119.390820987, 49.864509855000051 ], [ -119.390675310999882, 49.864574756000081 ], [ -119.389536600999961, 49.863512895000028 ], [ -119.389556822999921, 49.863117006000031 ], [ -119.390003315999948, 49.86256720800003 ], [ -119.390575944999952, 49.861367636000068 ], [ -119.390434399999961, 49.862345133000126 ], [ -119.392048135, 49.862442833000024 ], [ -119.391974982999969, 49.862948120000034 ], [ -119.392066066999945, 49.86295363400005 ], [ -119.392052990999957, 49.863043947000101 ], [ -119.392161821999977, 49.863050535000099 ], [ -119.392537158, 49.860457771000071 ], [ -119.392700664999964, 49.860467669000066 ], [ -119.392951434999958, 49.858735177000042 ], [ -119.393478166999955, 49.85876705900008 ], [ -119.393488976999919, 49.858692365000053 ], [ -119.392104983999957, 49.858608586000024 ], [ -119.392166179999919, 49.858185828000011 ], [ -119.388529298999941, 49.857965588000042 ], [ -119.388872495999948, 49.855595874000116 ], [ -119.389327101999967, 49.855601390000061 ], [ -119.390116882999948, 49.855540202000057 ], [ -119.390265691, 49.855185488000075 ], [ -119.390225389999969, 49.854637189000051 ], [ -119.388556319999921, 49.853799798000104 ], [ -119.388334901999926, 49.853534902000064 ], [ -119.38781269699993, 49.852546497000063 ], [ -119.387803011999949, 49.85234849799999 ], [ -119.387941523, 49.852150101000092 ], [ -119.388103593, 49.851973990000069 ], [ -119.388041989999948, 49.851560912000053 ], [ -119.387791589999935, 49.851278902000068 ], [ -119.38736109199999, 49.851026802000035 ], [ -119.386781306999978, 49.850850196000053 ], [ -119.385412692999964, 49.850733492000103 ], [ -119.383370896999921, 49.850496992000032 ], [ -119.382637007999904, 49.850277707000011 ], [ -119.382146795999986, 49.849955803000043 ], [ -119.382009207999943, 49.849698102000083 ], [ -119.382010083999944, 49.849427501000051 ], [ -119.382113889999943, 49.849280811000092 ], [ -119.382470401999953, 49.849156905000015 ], [ -119.382587402999917, 49.849010191000083 ], [ -119.382662910999983, 49.848820683000078 ], [ -119.38260946399997, 49.848260639000102 ], [ -119.382738425999946, 49.848268459000067 ], [ -119.382714220999944, 49.848435474000084 ], [ -119.38291013099996, 49.848447355000104 ], [ -119.38275964099995, 49.849485726000033 ], [ -119.383917470999918, 49.849555930000065 ], [ -119.383889489999959, 49.849749023000101 ], [ -119.385053323999983, 49.849819579000091 ], [ -119.385493407999917, 49.84678187300004 ], [ -119.386705817999939, 49.846855361000038 ], [ -119.386741063999978, 49.846612001000089 ], [ -119.3917012299999, 49.846912506000116 ], [ -119.391792808999952, 49.846279731000045 ], [ -119.39179227699999, 49.846279742000064 ], [ -119.391786984999968, 49.846172529000128 ], [ -119.390992293999943, 49.846124399000125 ], [ -119.390902453999942, 49.846745087000073 ], [ -119.385366251999926, 49.846409626000131 ], [ -119.385522716999958, 49.845329530000072 ], [ -119.38465171099989, 49.845347460000028 ], [ -119.38466497899995, 49.845617055000019 ], [ -119.382163540999969, 49.845668514000131 ], [ -119.3821370299999, 49.845129323000087 ], [ -119.381720126999966, 49.845137895000029 ], [ -119.381693621999887, 49.844598703000038 ], [ -119.381276722999985, 49.84460727400004 ], [ -119.381250222999896, 49.844068082000092 ], [ -119.380416434999987, 49.844085216000046 ], [ -119.38038994499999, 49.843546024000076 ], [ -119.379556164999926, 49.843563152000037 ], [ -119.379542925999914, 49.843293556000077 ], [ -119.379126036999963, 49.843302117000093 ], [ -119.379112799999959, 49.843032521000083 ], [ -119.376194597999969, 49.843092409000064 ], [ -119.376141713999957, 49.842014023000019 ], [ -119.375724835999989, 49.842022572000076 ], [ -119.375738055999975, 49.842292169000046 ], [ -119.37532117399995, 49.842300716000061 ], [ -119.375334391999985, 49.842570313000095 ], [ -119.374917508999971, 49.842578860000046 ], [ -119.374957151999965, 49.843387650000061 ], [ -119.374540261999968, 49.843396196000107 ], [ -119.374553474, 49.843665792000088 ], [ -119.374136582999924, 49.84367433600007 ], [ -119.374163004999943, 49.844213530000054 ], [ -119.372912312000011, 49.844239153000032 ], [ -119.372885905999951, 49.843699958000144 ], [ -119.372052118999974, 49.843717032000015 ], [ -119.372078516999977, 49.844256227000059 ], [ -119.370827821999967, 49.844281827000046 ], [ -119.370854206999965, 49.844821022000076 ], [ -119.372104914999937, 49.8447954210001 ], [ -119.372157715999947, 49.845873811000061 ], [ -119.370906979000026, 49.845899413000062 ], [ -119.370893786999929, 49.845629815000073 ], [ -119.370059964999911, 49.845646874000089 ], [ -119.370033588, 49.845107679000058 ], [ -119.369199776999935, 49.845124733000041 ], [ -119.369186593999927, 49.844855135000081 ], [ -119.367518975999985, 49.844889224000035 ], [ -119.367492627999951, 49.844350027000061 ], [ -119.367075727999946, 49.844358545000048 ], [ -119.366957193999923, 49.841932159000102 ], [ -119.367374071999976, 49.841923642000083 ], [ -119.367360901999916, 49.841654043000062 ], [ -119.367777776999986, 49.841645524000157 ], [ -119.367685563999942, 49.839758336000052 ], [ -119.368102424999975, 49.839749816000086 ], [ -119.36807607599999, 49.839210618000074 ], [ -119.36878793899993, 49.839196066000078 ], [ -119.369182516999956, 49.836478539000026 ], [ -119.367674387999955, 49.836386859000072 ], [ -119.367909713999978, 49.834766325000039 ], [ -119.366740565999976, 49.834695237000048 ], [ -119.366767863999911, 49.834507275000092 ], [ -119.36243014199998, 49.834243419000082 ], [ -119.362473482999931, 49.833945195000098 ], [ -119.362668715999945, 49.833971630000036 ], [ -119.363251130999984, 49.833997041000018 ], [ -119.36355920199999, 49.834010472000038 ], [ -119.363983425999962, 49.834078720000022 ], [ -119.364234945999968, 49.834140502000011 ], [ -119.364785344999945, 49.834275640000101 ], [ -119.364928615999986, 49.834260409000059 ], [ -119.36513127099991, 49.834238861000067 ], [ -119.365301673999923, 49.834122785000048 ], [ -119.36537196899999, 49.834050465000061 ], [ -119.366926312999951, 49.832451289000062 ], [ -119.366984306999896, 49.831138821000089 ], [ -119.366980637999973, 49.831062156000065 ], [ -119.36695830799999, 49.830599322000047 ], [ -119.36787485399995, 49.830655055000101 ], [ -119.36791161399999, 49.830677624000046 ], [ -119.36801621799998, 49.830741841000105 ], [ -119.368081705999913, 49.830773121000021 ], [ -119.368462600999962, 49.830955054000029 ], [ -119.368784443999971, 49.83121847000006 ], [ -119.368935559999926, 49.831542873000025 ], [ -119.368967849999947, 49.831878141000104 ], [ -119.368896638999985, 49.832200433000082 ], [ -119.368894585999925, 49.832209673000065 ], [ -119.368592189999987, 49.832706127000051 ], [ -119.36859666499997, 49.832963792000086 ], [ -119.369150263999956, 49.833669454000045 ], [ -119.369408257999908, 49.833844091000088 ], [ -119.36971562699992, 49.833957615000074 ], [ -119.369764087999954, 49.833964775 ], [ -119.370454245999966, 49.834066481000022 ], [ -119.370758323999951, 49.83411131 ], [ -119.371081495999974, 49.834144336000122 ], [ -119.372721104999954, 49.834311867000089 ], [ -119.373560925999982, 49.834401711000041 ], [ -119.376442247999961, 49.835438468000071 ], [ -119.376882780999949, 49.835596967000065 ], [ -119.378189663999962, 49.836066496000086 ], [ -119.37887549499996, 49.836419706000108 ], [ -119.379849895999925, 49.837160771000057 ], [ -119.380035374000016, 49.837272191000089 ], [ -119.380209432999891, 49.837376774000042 ], [ -119.380740497999909, 49.837594151000111 ], [ -119.381308463, 49.837768602000104 ], [ -119.381639243999942, 49.837836542000069 ], [ -119.382240495999923, 49.837887458000125 ], [ -119.38464980699996, 49.837924916000127 ], [ -119.38586459, 49.837943763000084 ], [ -119.387286198999931, 49.837876401000109 ], [ -119.38899196899996, 49.837795549000106 ], [ -119.389432367999973, 49.837744202000088 ], [ -119.390719957999963, 49.837594058000093 ], [ -119.390763077999964, 49.838115990000063 ], [ -119.389801783999985, 49.838102912000089 ], [ -119.389531208, 49.83814973900008 ], [ -119.389371369999964, 49.838212305000035 ], [ -119.388778814999966, 49.838718307000086 ], [ -119.388452332999961, 49.839064318000062 ], [ -119.3883877049999, 49.839288908000064 ], [ -119.388434826999955, 49.839455248000057 ], [ -119.388940027999979, 49.840063873000098 ], [ -119.389109677999926, 49.840357767000064 ], [ -119.389220806999901, 49.840795317000087 ], [ -119.39017656799993, 49.840799031000152 ], [ -119.390229854999959, 49.842195851000078 ], [ -119.390165411999988, 49.84235180800006 ], [ -119.390024175999883, 49.84247873000006 ], [ -119.389184490999966, 49.842878552000101 ], [ -119.388322543999919, 49.843364604000051 ], [ -119.388091995999901, 49.843597196000069 ], [ -119.387802114999886, 49.844114303000019 ], [ -119.390591146999895, 49.843673659000075 ], [ -119.390647157999979, 49.843595187000105 ], [ -119.391358129, 49.842599256000078 ], [ -119.391525635999983, 49.84220389700004 ], [ -119.391561850999963, 49.84166418500007 ], [ -119.391819866, 49.840681813000074 ], [ -119.394915347999984, 49.838873232000019 ], [ -119.396329143999964, 49.839590113 ], [ -119.396773602999957, 49.839730812000028 ], [ -119.39713198699999, 49.839771728000088 ], [ -119.399110916999945, 49.839997801000081 ], [ -119.398939014999939, 49.840665695000055 ], [ -119.398057997999942, 49.840569899000116 ], [ -119.396794608999983, 49.840454594000072 ], [ -119.395902004999968, 49.840477410000048 ], [ -119.394612500999955, 49.840899693000054 ], [ -119.394905409, 49.84120999 ], [ -119.395200289999948, 49.841410294000134 ], [ -119.396937294999958, 49.842286796000089 ], [ -119.397056577999976, 49.842407794000067 ], [ -119.397117594999955, 49.84263278600006 ], [ -119.397468801999963, 49.842694705000085 ], [ -119.39823120699999, 49.84278048700002 ], [ -119.399695589999936, 49.842772172000082 ], [ -119.400001672999934, 49.842770437000098 ], [ -119.400391165999935, 49.842768217000078 ], [ -119.401286876999933, 49.842763097000109 ], [ -119.401714883999915, 49.842680606000123 ], [ -119.402484309, 49.842447102000072 ], [ -119.402936809000025, 49.842436601 ], [ -119.403398645999943, 49.842497088000123 ], [ -119.403857490999926, 49.842557192000058 ], [ -119.404036122, 49.842656959000045 ], [ -119.404679121999919, 49.843016001000073 ], [ -119.405057087, 49.843192398000028 ], [ -119.405317693999962, 49.843273198000063 ], [ -119.405533388999984, 49.843295086000083 ], [ -119.405758005999971, 49.843317913000135 ], [ -119.406509897999939, 49.843309036000029 ], [ -119.407914116999905, 49.843292441000187 ], [ -119.409821812999937, 49.843269900000053 ], [ -119.409818986999952, 49.843600950000109 ], [ -119.409809138999947, 49.844770278000105 ], [ -119.409805474999956, 49.845202225000037 ], [ -119.409797300999955, 49.846167499000067 ], [ -119.409798905999978, 49.846335375000081 ], [ -119.409810847999907, 49.847585615000099 ], [ -119.409812566999975, 49.847765381000045 ], [ -119.409825617999942, 49.849132209000082 ], [ -119.409829460999944, 49.849536650000111 ], [ -119.409837529999947, 49.850381987000084 ], [ -119.409856193999957, 49.852337712000065 ], [ -119.408997807999953, 49.852432195000077 ], [ -119.40780041, 49.85269848700009 ], [ -119.407440332999954, 49.852724509000105 ], [ -119.407017173999947, 49.852755102000074 ], [ -119.406978962, 49.852755024000068 ], [ -119.40528202900002, 49.85275152800007 ], [ -119.404155495999987, 49.852749199000073 ], [ -119.401927104, 49.852724781000106 ], [ -119.400003897999966, 49.85270366500005 ], [ -119.398588752999927, 49.852688113000049 ], [ -119.398591603999989, 49.854078626000046 ], [ -119.398592189999988, 49.854366485000135 ], [ -119.398598105999923, 49.857190905000039 ], [ -119.398613296999912, 49.859837988000024 ], [ -119.398672601999962, 49.859882190000057 ], [ -119.398713898, 49.859915392000083 ], [ -119.400003599999977, 49.859921164000092 ], [ -119.401358713999954, 49.859927196000051 ], [ -119.401244703999936, 49.863980602000034 ], [ -119.401238296999935, 49.864208902000044 ], [ -119.40124497499994, 49.864269110000087 ], [ -119.401320204999962, 49.86494629300006 ], [ -119.401288005999959, 49.865162907000112 ], [ -119.401217115999955, 49.865640008000071 ], [ -119.401175345999945, 49.86713669000013 ], [ -119.39711919799997, 49.867098654000138 ], [ -119.396791147999949, 49.86709558800009 ], [ -119.396596387999963, 49.867022393000063 ], [ -119.396389986999935, 49.866788639000106 ], [ -119.396136201999965, 49.866032727000082 ], [ -119.396020003999936, 49.865310394000097 ], [ -119.395949762999976, 49.865091197000019 ] ], [ [ -119.397892427999977, 49.865126065000048 ], [ -119.397904410999914, 49.86504322800004 ], [ -119.397742624999964, 49.865033444000048 ], [ -119.397730642999946, 49.865116280000066 ], [ -119.397892427999977, 49.865126065000048 ] ], [ [ -119.395284918999963, 49.852144688000102 ], [ -119.395343900999933, 49.851736965000022 ], [ -119.394935097999962, 49.851712223000035 ], [ -119.39491045599999, 49.851882560000014 ], [ -119.394990525999972, 49.851880905 ], [ -119.395003857999882, 49.852150498000078 ], [ -119.395284918999963, 49.852144688000102 ] ], [ [ -119.400330373999907, 49.848964674000108 ], [ -119.400429910999904, 49.848276039000091 ], [ -119.400103003999973, 49.84825626800005 ], [ -119.400094532999972, 49.848314872000088 ], [ -119.39596084899992, 49.848064782000058 ], [ -119.39594695599996, 49.848160834000055 ], [ -119.399813829999971, 49.848394786 ], [ -119.399736639999944, 49.848928764000128 ], [ -119.400330373999907, 49.848964674000108 ] ], [ [ -119.394567866999964, 49.847912187000084 ], [ -119.394617263999947, 49.847570730000093 ], [ -119.39402110099999, 49.847583049000043 ], [ -119.393978641999979, 49.847876518000106 ], [ -119.394567866999964, 49.847912187000084 ] ], [ [ -119.403701560999934, 49.845112917000037 ], [ -119.403789962999923, 49.844500951000036 ], [ -119.402881301999969, 49.844446015000131 ], [ -119.402896044999935, 49.844343962000046 ], [ -119.399615925999981, 49.844145593000036 ], [ -119.399639203999968, 49.844615590000032 ], [ -119.401371030999954, 49.844720335000055 ], [ -119.401232243999956, 49.845680734000027 ], [ -119.403148237999943, 49.845796587000102 ], [ -119.403250941999943, 49.84508567600006 ], [ -119.403701560999934, 49.845112917000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020131", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.5", "sL_BldgLoss": "60.5", "sL_StrLoss": "60.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000996C979115D85DC0DC6C077EAFEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.376353060999975, 49.847463366000113 ], [ -119.376563138999941, 49.847476117000049 ], [ -119.376361196999966, 49.847996099000021 ], [ -119.376598989999977, 49.849745114000058 ], [ -119.376529090999966, 49.849981498000055 ], [ -119.37640720899999, 49.850055489000049 ], [ -119.376140211999925, 49.850034198000088 ], [ -119.375990275999982, 49.849964036000081 ], [ -119.376353060999975, 49.847463366000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020132", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10669584", "BldgCostT": "7358334", "sL_LossRatio": "1", "sL_AssetLoss": "983.6", "sL_BldgLoss": "983.6", "sL_StrLoss": "983.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F72DC60257D75DC0F103C21486EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.363983425999962, 49.834078720000022 ], [ -119.36355920199999, 49.834010472000038 ], [ -119.363251130999984, 49.833997041000018 ], [ -119.362668715999945, 49.833971630000036 ], [ -119.362473482999931, 49.833945195000098 ], [ -119.362950554999941, 49.830662213000018 ], [ -119.363285885999957, 49.830682617000043 ], [ -119.36333005599991, 49.830378620000019 ], [ -119.36695830799999, 49.830599322000047 ], [ -119.366980637999973, 49.831062156000065 ], [ -119.366984306999896, 49.831138821000089 ], [ -119.366926312999951, 49.832451289000062 ], [ -119.36537196899999, 49.834050465000061 ], [ -119.365301673999923, 49.834122785000048 ], [ -119.36513127099991, 49.834238861000067 ], [ -119.364928615999986, 49.834260409000059 ], [ -119.364785344999945, 49.834275640000101 ], [ -119.364234945999968, 49.834140502000011 ], [ -119.363983425999962, 49.834078720000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020133", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187082917", "BldgCostT": "122871667", "sL_LossRatio": "1", "sL_AssetLoss": "15364", "sL_BldgLoss": "15364", "sL_StrLoss": "15364", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081A3B29BB8D85DC0A40A0C7A6BEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.369408257999908, 49.833844091000088 ], [ -119.369150263999956, 49.833669454000045 ], [ -119.36859666499997, 49.832963792000086 ], [ -119.368592189999987, 49.832706127000051 ], [ -119.368894585999925, 49.832209673000065 ], [ -119.368896638999985, 49.832200433000082 ], [ -119.368967849999947, 49.831878141000104 ], [ -119.368935559999926, 49.831542873000025 ], [ -119.368784443999971, 49.83121847000006 ], [ -119.368462600999962, 49.830955054000029 ], [ -119.368081705999913, 49.830773121000021 ], [ -119.36801621799998, 49.830741841000105 ], [ -119.36791161399999, 49.830677624000046 ], [ -119.36787485399995, 49.830655055000101 ], [ -119.368864157999951, 49.830715203000061 ], [ -119.368847524, 49.830829786000052 ], [ -119.37184754499998, 49.831012127000101 ], [ -119.371835590999964, 49.83076780600009 ], [ -119.372669154, 49.830750736000091 ], [ -119.372655956999935, 49.830481139000014 ], [ -119.37599018499999, 49.830412804000083 ], [ -119.37600340099999, 49.830682400000086 ], [ -119.376836960999952, 49.830665301000138 ], [ -119.376850178999987, 49.830934899000034 ], [ -119.37726696199999, 49.830926347000037 ], [ -119.377253738999983, 49.830656750000095 ], [ -119.380587969000018, 49.830588281000075 ], [ -119.380601209999952, 49.830857879000028 ], [ -119.381017988999972, 49.830849313000066 ], [ -119.38103123199997, 49.831118910000079 ], [ -119.381448012999954, 49.831110343000027 ], [ -119.381461258999977, 49.831379939000058 ], [ -119.382294826999953, 49.831362800000065 ], [ -119.382308076999905, 49.831632396000096 ], [ -119.382724862999908, 49.831623825000051 ], [ -119.38277787599999, 49.832702208000072 ], [ -119.382361079999953, 49.832710780000049 ], [ -119.382374329999934, 49.832980376000101 ], [ -119.382791128999884, 49.832971805000071 ], [ -119.382857396999938, 49.834319783000076 ], [ -119.383274206999943, 49.834311209000063 ], [ -119.383287463999949, 49.834580805 ], [ -119.384932052999886, 49.8345469610001 ], [ -119.385371049999947, 49.831515728000099 ], [ -119.386430721999915, 49.83157998300009 ], [ -119.386666380999912, 49.829952354000056 ], [ -119.387035196999932, 49.829974715000063 ], [ -119.38703742499996, 49.829959330000115 ], [ -119.383640290999935, 49.829753316000087 ], [ -119.384158993999904, 49.826171986000119 ], [ -119.384643262999958, 49.826201361000052 ], [ -119.384643271999934, 49.826201298000065 ], [ -119.385493762999928, 49.826252881000094 ], [ -119.385537847999956, 49.82594841700007 ], [ -119.38705453399993, 49.826040389000099 ], [ -119.387085488999929, 49.825826553000077 ], [ -119.391107813999923, 49.826070362000081 ], [ -119.39141374799999, 49.823955557000012 ], [ -119.391773738999987, 49.823928838000022 ], [ -119.392359830999979, 49.823964350000082 ], [ -119.39235512899991, 49.823869022000117 ], [ -119.392324721999969, 49.823869650000077 ], [ -119.392702394999901, 49.823491948000026 ], [ -119.392828648999952, 49.823365656000114 ], [ -119.39308905199999, 49.823485301000041 ], [ -119.39338219699999, 49.823532884000095 ], [ -119.393716196999904, 49.823500727000081 ], [ -119.394757463999909, 49.82307426100008 ], [ -119.395252323999983, 49.82295249000002 ], [ -119.395655240999986, 49.822916388000117 ], [ -119.397681998999929, 49.823192654000081 ], [ -119.397946252999972, 49.82329535500007 ], [ -119.397954846999966, 49.823306099000078 ], [ -119.398117610999961, 49.823509850000043 ], [ -119.398139013999938, 49.823699909000062 ], [ -119.398082802999966, 49.823793156000086 ], [ -119.39803609099999, 49.823870703000125 ], [ -119.397826091999917, 49.824020594000068 ], [ -119.397544507999982, 49.824119584000087 ], [ -119.397446164999963, 49.82415414899999 ], [ -119.396664605999902, 49.824428901000026 ], [ -119.396336093999963, 49.824625792000063 ], [ -119.396069687999969, 49.824876104000069 ], [ -119.39592710299992, 49.825138398000014 ], [ -119.395879903999912, 49.825465199000071 ], [ -119.395893764999983, 49.82607631200009 ], [ -119.395896006999976, 49.826174310000084 ], [ -119.396045294999922, 49.827100989000016 ], [ -119.396181100999982, 49.827252797000021 ], [ -119.396447911999985, 49.827386396000087 ], [ -119.396808301999954, 49.827470510000083 ], [ -119.397141649999952, 49.82752032500008 ], [ -119.398047396, 49.827655685000053 ], [ -119.398193196999898, 49.827718694000019 ], [ -119.398281278999931, 49.827823397000074 ], [ -119.398250484999934, 49.827997695000093 ], [ -119.398093731999893, 49.828120795000054 ], [ -119.397643069999958, 49.828474585000038 ], [ -119.397589393999951, 49.828516715000028 ], [ -119.397401202999959, 49.828795284000044 ], [ -119.397270684999981, 49.829098996000091 ], [ -119.397218986999945, 49.829457096000041 ], [ -119.397237649999951, 49.829511300000021 ], [ -119.397280923000011, 49.829637005000073 ], [ -119.39730683099999, 49.829668916000116 ], [ -119.398223629999947, 49.830797947000079 ], [ -119.398524126000012, 49.831167993000093 ], [ -119.398645382999916, 49.831317341 ], [ -119.399399771999981, 49.832246262000076 ], [ -119.399916743999881, 49.83288285800009 ], [ -119.39997289599998, 49.832952 ], [ -119.4011714869999, 49.83407490000009 ], [ -119.400193130999952, 49.834442557000031 ], [ -119.400168700999984, 49.834451732000019 ], [ -119.400153093999947, 49.834457590000042 ], [ -119.399088572999943, 49.834038973000048 ], [ -119.39876899699999, 49.833913297000031 ], [ -119.398285522999913, 49.833762089000054 ], [ -119.398160393999945, 49.833759008000058 ], [ -119.397409795999948, 49.833901413000071 ], [ -119.396880477999943, 49.833893797000052 ], [ -119.39649500199999, 49.833856905000026 ], [ -119.39604471799997, 49.83376639500009 ], [ -119.394889017999958, 49.833457094000032 ], [ -119.39470558799999, 49.833386329000085 ], [ -119.394139498999934, 49.833167883000087 ], [ -119.393324740999972, 49.832996407000039 ], [ -119.392591206999938, 49.832841985000066 ], [ -119.391879400999954, 49.832822312000118 ], [ -119.391102764999971, 49.832927542000064 ], [ -119.390515586, 49.833007098000067 ], [ -119.389553188999969, 49.833021008000067 ], [ -119.38938251499999, 49.83487569600004 ], [ -119.389334890999962, 49.835282009000089 ], [ -119.38922970199998, 49.836153491000125 ], [ -119.389118052999976, 49.837021031000084 ], [ -119.38907749699996, 49.837270220000114 ], [ -119.38899196899996, 49.837795549000106 ], [ -119.387286198999931, 49.837876401000109 ], [ -119.38586459, 49.837943763000084 ], [ -119.38464980699996, 49.837924916000127 ], [ -119.382240495999923, 49.837887458000125 ], [ -119.381639243999942, 49.837836542000069 ], [ -119.381308463, 49.837768602000104 ], [ -119.380740497999909, 49.837594151000111 ], [ -119.380209432999891, 49.837376774000042 ], [ -119.380035374000016, 49.837272191000089 ], [ -119.379849895999925, 49.837160771000057 ], [ -119.37887549499996, 49.836419706000108 ], [ -119.378189663999962, 49.836066496000086 ], [ -119.376882780999949, 49.835596967000065 ], [ -119.376442247999961, 49.835438468000071 ], [ -119.373560925999982, 49.834401711000041 ], [ -119.372721104999954, 49.834311867000089 ], [ -119.371081495999974, 49.834144336000122 ], [ -119.370758323999951, 49.83411131 ], [ -119.370454245999966, 49.834066481000022 ], [ -119.369764087999954, 49.833964775 ], [ -119.36971562699992, 49.833957615000074 ], [ -119.369408257999908, 49.833844091000088 ] ], [ [ -119.393981275999948, 49.828693071000053 ], [ -119.394127176999973, 49.827684169000094 ], [ -119.39241404699996, 49.827580399000091 ], [ -119.392404372000016, 49.827647288000044 ], [ -119.39294980499993, 49.827680330000092 ], [ -119.392910048999966, 49.827955190000104 ], [ -119.393176416999921, 49.827971325000057 ], [ -119.393069301999958, 49.828711914000095 ], [ -119.393981275999948, 49.828693071000053 ] ], [ [ -119.396928152999962, 49.823554896000104 ], [ -119.396925669999959, 49.823504673000031 ], [ -119.39484210699996, 49.823547766000019 ], [ -119.394855423999957, 49.823817360000085 ], [ -119.394021992999981, 49.823834587000121 ], [ -119.394033405999963, 49.824065733000054 ], [ -119.394968286999955, 49.824122356000032 ], [ -119.395035967999902, 49.823654229000056 ], [ -119.396819446999984, 49.823762226000156 ], [ -119.396850095999937, 49.823550170000033 ], [ -119.396928152999962, 49.823554896000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "146913418", "BldgCostT": "94631668", "sL_LossRatio": "1", "sL_AssetLoss": "10883.6", "sL_BldgLoss": "10883.6", "sL_StrLoss": "10883.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B292244202D75DC0640DDE5765F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.348034249999955, 49.891657134000077 ], [ -119.34713418799997, 49.890639945000018 ], [ -119.346659055999979, 49.890102984000073 ], [ -119.346638861999935, 49.890080106000042 ], [ -119.346518577, 49.890023102000114 ], [ -119.346290128999925, 49.889979386000029 ], [ -119.346171630999919, 49.889881858000088 ], [ -119.346008921999925, 49.889476647000087 ], [ -119.345972724999939, 49.88938653200011 ], [ -119.345798004999921, 49.889195263000062 ], [ -119.345390680999955, 49.888898481000098 ], [ -119.345377324999944, 49.888888753000124 ], [ -119.345140795999967, 49.888613325000108 ], [ -119.343494264999947, 49.888750654000077 ], [ -119.342445921999953, 49.888438952000037 ], [ -119.342834796999952, 49.88577440000013 ], [ -119.346139207999968, 49.885975773000027 ], [ -119.346104741999937, 49.885264994000096 ], [ -119.346521998999947, 49.885256547000033 ], [ -119.346417396999982, 49.883099743000109 ], [ -119.346834638999979, 49.883091294000096 ], [ -119.346821561999903, 49.882821694000029 ], [ -119.347238798999911, 49.882813243000015 ], [ -119.347225718999979, 49.882543643000091 ], [ -119.348477424999928, 49.882518284000113 ], [ -119.348516682999914, 49.883327084000044 ], [ -119.34809944099996, 49.883335539000029 ], [ -119.348191032999964, 49.885222740000081 ], [ -119.348608289999973, 49.885214284000014 ], [ -119.348595204, 49.884944685000029 ], [ -119.349012457999919, 49.884936227000082 ], [ -119.348999366999948, 49.884666627000044 ], [ -119.349833872999952, 49.884649709 ], [ -119.349820778999984, 49.884380109000041 ], [ -119.351489776999983, 49.884346256000086 ], [ -119.351515149999969, 49.884868285000067 ], [ -119.351529087999936, 49.88515505500007 ], [ -119.351111832999891, 49.885163520000056 ], [ -119.351133556999969, 49.885610573000129 ], [ -119.351141398999985, 49.885771925000014 ], [ -119.351988501999983, 49.885823494000064 ], [ -119.351942361999974, 49.88614010000007 ], [ -119.354870731999981, 49.886318315000096 ], [ -119.354657285999949, 49.887783522000134 ], [ -119.359020399999906, 49.888048904000122 ], [ -119.358564451999953, 49.891180493000078 ], [ -119.359343272999936, 49.891227845000088 ], [ -119.35934206899995, 49.891203162000075 ], [ -119.359523504999956, 49.89119946800006 ], [ -119.359920691999889, 49.888471095000078 ], [ -119.359006336999968, 49.888415503000033 ], [ -119.359527633999932, 49.88483458000006 ], [ -119.365068294999958, 49.885171331000016 ], [ -119.364826549, 49.886833407000019 ], [ -119.36587358099996, 49.886897011000087 ], [ -119.365789283999945, 49.887476640000052 ], [ -119.366596895999919, 49.887525694000068 ], [ -119.366495346999983, 49.888224010000044 ], [ -119.36839169299995, 49.888339167000069 ], [ -119.368390750999978, 49.888319936000123 ], [ -119.37047714, 49.888277278000082 ], [ -119.370490350999916, 49.888546875000081 ], [ -119.370909260999937, 49.888538305000026 ], [ -119.371095105999984, 49.887259452000066 ], [ -119.372907839000021, 49.88736945900007 ], [ -119.373154201999967, 49.885673580000073 ], [ -119.369767113999956, 49.885468007000036 ], [ -119.369907228999935, 49.884503939000069 ], [ -119.369433868000016, 49.884475200000054 ], [ -119.369520613999939, 49.883878358000104 ], [ -119.368855689999975, 49.883837986000117 ], [ -119.368873561999948, 49.883715029000101 ], [ -119.368212176999961, 49.883674869000068 ], [ -119.368257292999957, 49.883364516000036 ], [ -119.36697655899999, 49.883286735000056 ], [ -119.367016224999929, 49.883013918000081 ], [ -119.365562233999981, 49.882925597000096 ], [ -119.365787462999947, 49.881376774000081 ], [ -119.364706589999955, 49.881311105000023 ], [ -119.364709888, 49.881378591000079 ], [ -119.364292668999909, 49.881387104000083 ], [ -119.364305840999961, 49.881656701000068 ], [ -119.363888618999937, 49.881665213000062 ], [ -119.3639017899999, 49.881934809000036 ], [ -119.362650113999962, 49.881960335000016 ], [ -119.362623785999972, 49.881421141000089 ], [ -119.362206564999923, 49.881429646000107 ], [ -119.362167081999971, 49.880620853000053 ], [ -119.361749869, 49.880629356000021 ], [ -119.361710392999925, 49.879820563000067 ], [ -119.362094576999965, 49.879812733000108 ], [ -119.36210573399994, 49.879736049000023 ], [ -119.3613941, 49.879692789000025 ], [ -119.361441370999927, 49.879367909000081 ], [ -119.361385120999941, 49.879364489000082 ], [ -119.361452248999953, 49.878903143000116 ], [ -119.361380651999966, 49.878898791000104 ], [ -119.361416827999932, 49.878650160000049 ], [ -119.361374566999942, 49.878647591000068 ], [ -119.361414267999976, 49.878374738000062 ], [ -119.361383885999913, 49.878372891000055 ], [ -119.361411311999987, 49.878184398000016 ], [ -119.361370097999966, 49.878181892000043 ], [ -119.361408042999955, 49.877921102000094 ], [ -119.361371715999965, 49.8779188930001 ], [ -119.361427748999944, 49.87753378900004 ], [ -119.361370241999964, 49.877530293000049 ], [ -119.361397653999958, 49.877341892000096 ], [ -119.361356553999926, 49.877339393000099 ], [ -119.361392770999984, 49.877090482000071 ], [ -119.361381469999969, 49.877089794 ], [ -119.361429342999955, 49.876760768000054 ], [ -119.361385394999942, 49.876758096000088 ], [ -119.361425653999973, 49.876481383000097 ], [ -119.361376512999939, 49.876478396000039 ], [ -119.361409218999924, 49.876253607000102 ], [ -119.361386026999966, 49.876252197000042 ], [ -119.361416294999984, 49.876044158000049 ], [ -119.361425795999978, 49.876034659000119 ], [ -119.362538405999928, 49.8742651210001 ], [ -119.364192287999984, 49.872097705000044 ], [ -119.36486928799998, 49.872725894000034 ], [ -119.364922854999918, 49.87281925300011 ], [ -119.3650141899999, 49.872978610000104 ], [ -119.365015795999952, 49.873159307000073 ], [ -119.364846691999986, 49.874149696000124 ], [ -119.364842745999951, 49.874292849000042 ], [ -119.364819581999939, 49.875133395000042 ], [ -119.364747211999941, 49.875919303000018 ], [ -119.364748266000021, 49.875998718000055 ], [ -119.364791722999939, 49.87919690100005 ], [ -119.364749419999981, 49.880372001000104 ], [ -119.364780188999958, 49.880476789000049 ], [ -119.364873376999981, 49.88054749900008 ], [ -119.366030282999958, 49.87961530900003 ], [ -119.366794605999942, 49.878961788000055 ], [ -119.366984323999958, 49.878714098000081 ], [ -119.367097424999912, 49.878329903000129 ], [ -119.367038709999946, 49.877186589000047 ], [ -119.367271596999942, 49.877169989000109 ], [ -119.367402713999965, 49.878075705000121 ], [ -119.367605708999932, 49.87828400100004 ], [ -119.367750827999942, 49.87834580500008 ], [ -119.367791217999951, 49.878362997000082 ], [ -119.367991208999953, 49.878352603000039 ], [ -119.368120507999905, 49.878260196000099 ], [ -119.368150004000015, 49.877865477000107 ], [ -119.368242695999967, 49.877775387000057 ], [ -119.368553312999893, 49.877685873000054 ], [ -119.368818876999981, 49.877991858000044 ], [ -119.370360502, 49.879768086000084 ], [ -119.371971512999949, 49.881543035000057 ], [ -119.372205747999942, 49.881801090000081 ], [ -119.372468020999946, 49.882092484000033 ], [ -119.372744632999968, 49.882419938000048 ], [ -119.373181313999936, 49.88294408800008 ], [ -119.373647243000022, 49.883661431000107 ], [ -119.373927818, 49.884307967000012 ], [ -119.374087405999973, 49.884864043000043 ], [ -119.374186197999947, 49.885429229000039 ], [ -119.374527793000013, 49.887383425000039 ], [ -119.374741390999958, 49.887866007000135 ], [ -119.374621185999985, 49.887971604000057 ], [ -119.37472642099999, 49.888527099000036 ], [ -119.37483243299998, 49.888780320000116 ], [ -119.374990986999947, 49.889159101000089 ], [ -119.374733813999967, 49.889249312000032 ], [ -119.374409385999968, 49.889363102000125 ], [ -119.373784670999925, 49.889645813000101 ], [ -119.373761696, 49.889656214000084 ], [ -119.372818491000018, 49.890020696000072 ], [ -119.372462478999921, 49.89020049800007 ], [ -119.371718415999965, 49.890685497000099 ], [ -119.370326883999951, 49.891797719000039 ], [ -119.37020589499997, 49.891668527 ], [ -119.370197106999967, 49.891508121000122 ], [ -119.370397284999939, 49.890803998000131 ], [ -119.370402317999947, 49.889240095000055 ], [ -119.370330579999987, 49.889128296000131 ], [ -119.369947240999963, 49.888793783000025 ], [ -119.369781098999979, 49.888648792000048 ], [ -119.369462404, 49.888543584000097 ], [ -119.368012694999933, 49.888604606000051 ], [ -119.367344982999953, 49.888708595000082 ], [ -119.367302850999948, 49.888719058000106 ], [ -119.366043022999975, 49.889031393000089 ], [ -119.365250122999939, 49.889336272000016 ], [ -119.364322886999958, 49.889692799000052 ], [ -119.363637215999972, 49.88998709400002 ], [ -119.363382107999954, 49.890011310000091 ], [ -119.362773110999967, 49.889970704000127 ], [ -119.362661438, 49.889987699000088 ], [ -119.362497307999902, 49.890012694000063 ], [ -119.362406654999972, 49.890049651 ], [ -119.362036706999945, 49.890200488000083 ], [ -119.362005363999955, 49.890225074000092 ], [ -119.361170938999948, 49.890879011000017 ], [ -119.36058220699995, 49.891340406000076 ], [ -119.360077501999953, 49.89165830200011 ], [ -119.359412422999952, 49.892017916000093 ], [ -119.358906314999956, 49.892291599000039 ], [ -119.358868295999955, 49.892333728000054 ], [ -119.358736328999925, 49.892480010000057 ], [ -119.358716176, 49.892704490000071 ], [ -119.358769768999977, 49.892922719000069 ], [ -119.358793396999928, 49.893018998000059 ], [ -119.35915572, 49.893362533000115 ], [ -119.358713967999961, 49.89344947700009 ], [ -119.358355628999917, 49.89348187100007 ], [ -119.358042071999989, 49.893456495000073 ], [ -119.356521362999956, 49.892957600000059 ], [ -119.356295553999971, 49.892943853000091 ], [ -119.356128143000021, 49.892989680000035 ], [ -119.355998397999969, 49.893083832000045 ], [ -119.355880109999987, 49.893416232000035 ], [ -119.355790415999962, 49.893465866000092 ], [ -119.355683179, 49.893472899000074 ], [ -119.355670832999976, 49.893467609000048 ], [ -119.355584496999938, 49.893430748000057 ], [ -119.355033545999902, 49.892367658000069 ], [ -119.354886853999915, 49.892223241000039 ], [ -119.354700565999977, 49.892139671000031 ], [ -119.354428727999974, 49.892058118000108 ], [ -119.35363354199994, 49.891932941000036 ], [ -119.353338980999951, 49.8919114320001 ], [ -119.35304794299995, 49.891942489000023 ], [ -119.352959322999979, 49.891983966000112 ], [ -119.352798036999957, 49.892059410000108 ], [ -119.352702967999932, 49.892103915000071 ], [ -119.352421172, 49.892177089000064 ], [ -119.351595997999951, 49.892247875000116 ], [ -119.351024196999902, 49.89238193100001 ], [ -119.350135274999971, 49.892590334000026 ], [ -119.349726854, 49.892686094000105 ], [ -119.349653937999932, 49.892703162000061 ], [ -119.349308998999902, 49.89285468300006 ], [ -119.34838254, 49.893466606000047 ], [ -119.348218074999949, 49.893626374000036 ], [ -119.348097828999983, 49.893837626000071 ], [ -119.348028926999959, 49.894086771000012 ], [ -119.347917345999988, 49.894490456000064 ], [ -119.347774055999963, 49.894572052000093 ], [ -119.347586300999936, 49.894556085000097 ], [ -119.347462618999955, 49.894426634000119 ], [ -119.347616622999965, 49.893897720000041 ], [ -119.347666206999975, 49.893490707000062 ], [ -119.348018097, 49.892179978000073 ], [ -119.348044180999949, 49.891914610000107 ], [ -119.348055576999968, 49.891798424000044 ], [ -119.348034249999955, 49.891657134000077 ] ], [ [ -119.35307327699995, 49.890499164000055 ], [ -119.353171149, 49.889827534000062 ], [ -119.349978286999942, 49.889633184000033 ], [ -119.349857673999949, 49.890460474000108 ], [ -119.352149552999919, 49.890599991000073 ], [ -119.352172239999973, 49.890444327000132 ], [ -119.35307327699995, 49.890499164000055 ] ], [ [ -119.348837329, 49.889360092000096 ], [ -119.348854064999927, 49.889245315000082 ], [ -119.347926769999972, 49.889188843000042 ], [ -119.347910030999955, 49.889303619000032 ], [ -119.348837329, 49.889360092000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "162828250", "BldgCostT": "106135000", "sL_LossRatio": "1", "sL_AssetLoss": "11770", "sL_BldgLoss": "11770", "sL_StrLoss": "11770", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1345C8965D75DC0E67A7822CAEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.364791722999939, 49.87919690100005 ], [ -119.364748266000021, 49.875998718000055 ], [ -119.364747211999941, 49.875919303000018 ], [ -119.364819581999939, 49.875133395000042 ], [ -119.364842745999951, 49.874292849000042 ], [ -119.364846691999986, 49.874149696000124 ], [ -119.365015795999952, 49.873159307000073 ], [ -119.3650141899999, 49.872978610000104 ], [ -119.364922854999918, 49.87281925300011 ], [ -119.36486928799998, 49.872725894000034 ], [ -119.364192287999984, 49.872097705000044 ], [ -119.363901203999916, 49.871561607000018 ], [ -119.359371167999967, 49.869770467000087 ], [ -119.359337967999963, 49.869670981000098 ], [ -119.359027186999981, 49.868739926000096 ], [ -119.359177283999927, 49.868746827000102 ], [ -119.360362907999985, 49.868801207000061 ], [ -119.361863579, 49.868869991000111 ], [ -119.363056333999978, 49.868928969000109 ], [ -119.364106031999953, 49.868981610000048 ], [ -119.364586031999963, 49.869005691000083 ], [ -119.365223430999933, 49.869089576000114 ], [ -119.365858646999953, 49.869236582000035 ], [ -119.366391456999949, 49.869434196000014 ], [ -119.36697871599992, 49.869747185000065 ], [ -119.36746111399998, 49.87012868900004 ], [ -119.367776396999957, 49.87047750100006 ], [ -119.367941238999933, 49.870733463000114 ], [ -119.367990705999986, 49.870810305000063 ], [ -119.368311403999954, 49.871536887000033 ], [ -119.368501166999962, 49.87196679500007 ], [ -119.368776799999964, 49.872591187000104 ], [ -119.36885603399999, 49.872820972000085 ], [ -119.368950788999925, 49.873095802000122 ], [ -119.369039318999967, 49.873514809000092 ], [ -119.36904768199993, 49.873873709000101 ], [ -119.369053820999966, 49.874136197000105 ], [ -119.368905127999952, 49.874967089000087 ], [ -119.368521334, 49.875828645000055 ], [ -119.368424102999924, 49.876046886000019 ], [ -119.368311111999972, 49.87650698100002 ], [ -119.36831422899999, 49.876918087000035 ], [ -119.368553312999893, 49.877685873000054 ], [ -119.368242695999967, 49.877775387000057 ], [ -119.368150004000015, 49.877865477000107 ], [ -119.368120507999905, 49.878260196000099 ], [ -119.367991208999953, 49.878352603000039 ], [ -119.367791217999951, 49.878362997000082 ], [ -119.367750827999942, 49.87834580500008 ], [ -119.367605708999932, 49.87828400100004 ], [ -119.367402713999965, 49.878075705000121 ], [ -119.367271596999942, 49.877169989000109 ], [ -119.367038709999946, 49.877186589000047 ], [ -119.367097424999912, 49.878329903000129 ], [ -119.366984323999958, 49.878714098000081 ], [ -119.366794605999942, 49.878961788000055 ], [ -119.366030282999958, 49.87961530900003 ], [ -119.364873376999981, 49.88054749900008 ], [ -119.364780188999958, 49.880476789000049 ], [ -119.364749419999981, 49.880372001000104 ], [ -119.364791722999939, 49.87919690100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "277817667", "BldgCostT": "184241667", "sL_LossRatio": "0.999186610279714", "sL_AssetLoss": "24096.6900751", "sL_BldgLoss": "24077.0900751", "sL_StrLoss": "24070.0000751", "sL_NStrLoss": "7.09", "sL_ContLoss": "19.6", "geom_point": "0101000020E61000007358AF5CCED65DC0DF11A15388EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.359129156999984, 49.874232386000067 ], [ -119.358465156999927, 49.874091969000133 ], [ -119.357581622999959, 49.874121247000097 ], [ -119.357435383999956, 49.874089319000099 ], [ -119.35524119199998, 49.873481582000068 ], [ -119.355164, 49.873490459000095 ], [ -119.354371683999943, 49.873581298000055 ], [ -119.353920207999963, 49.873534800000037 ], [ -119.352990506999959, 49.873203705000094 ], [ -119.352561488999925, 49.87313691300011 ], [ -119.352309002999945, 49.873086299000093 ], [ -119.352087107999978, 49.872959900000055 ], [ -119.35198090099999, 49.872759312000042 ], [ -119.351753592999927, 49.871873800000117 ], [ -119.349670506999928, 49.872210315000075 ], [ -119.34932122099994, 49.871328306000024 ], [ -119.348968256999953, 49.870443339000083 ], [ -119.34861095899997, 49.869492210000054 ], [ -119.349603959999939, 49.869263681000056 ], [ -119.349821197999972, 49.869258843000082 ], [ -119.349873604, 49.868832134000158 ], [ -119.349916767999943, 49.868487929000032 ], [ -119.349929827999944, 49.868398412000012 ], [ -119.349938082, 49.868313110000067 ], [ -119.350526889999941, 49.868338767000097 ], [ -119.35088332, 49.868354305000075 ], [ -119.350962434999957, 49.868357740000071 ], [ -119.351508597999938, 49.868521714000074 ], [ -119.352468704999936, 49.868873691 ], [ -119.3528322, 49.868900286000034 ], [ -119.354454176, 49.868812996000081 ], [ -119.354597244999979, 49.86883891300009 ], [ -119.355047586999959, 49.868920497000076 ], [ -119.355267976999954, 49.868913117000069 ], [ -119.355253446999981, 49.868821009000051 ], [ -119.35520721099999, 49.868543628000054 ], [ -119.355681426999979, 49.868567970000079 ], [ -119.356119212999914, 49.868590484000087 ], [ -119.357580102999975, 49.868665569 ], [ -119.359027186999981, 49.868739926000096 ], [ -119.359337967999963, 49.869670981000098 ], [ -119.359371167999967, 49.869770467000087 ], [ -119.363901203999916, 49.871561607000018 ], [ -119.364192287999984, 49.872097705000044 ], [ -119.362538405999928, 49.8742651210001 ], [ -119.360793461999961, 49.874248380000061 ], [ -119.3608046, 49.874171835000062 ], [ -119.359348322999949, 49.874201494000019 ], [ -119.359349932000029, 49.87423450900009 ], [ -119.359129156999984, 49.874232386000067 ] ], [ [ -119.361001503999944, 49.872818491000096 ], [ -119.361040884999952, 49.872547824000037 ], [ -119.360938053999959, 49.87254991800009 ], [ -119.360951205, 49.872819517000053 ], [ -119.361001503999944, 49.872818491000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413911916", "BldgCostT": "276881666", "sL_LossRatio": "1", "sL_AssetLoss": "32248", "sL_BldgLoss": "32248", "sL_StrLoss": "32248", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F8E91CBC3DD5DC0510120BC30F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.456890319999971, 49.948632377000131 ], [ -119.45692165499996, 49.948414207000106 ], [ -119.456120110999962, 49.948366257000032 ], [ -119.456634479999977, 49.944785168000038 ], [ -119.457402116999944, 49.944831090000029 ], [ -119.457436330999911, 49.944592844000042 ], [ -119.45738710699996, 49.944589900000061 ], [ -119.45790133399997, 49.941008787000058 ], [ -119.45794211499998, 49.941011226000036 ], [ -119.458005051999933, 49.940572888000084 ], [ -119.458111527999947, 49.94057925700011 ], [ -119.458188357999958, 49.940044130000089 ], [ -119.457810423999916, 49.940021522000045 ], [ -119.45832456699999, 49.936440385000012 ], [ -119.45869362, 49.936462462000122 ], [ -119.458855003999972, 49.935338194000053 ], [ -119.458921292999932, 49.935342159000093 ], [ -119.458979622999934, 49.93493579600009 ], [ -119.459030130999949, 49.934938817000038 ], [ -119.459068830999939, 49.934669197000112 ], [ -119.45925717199998, 49.934680462000081 ], [ -119.45933295, 49.934152501000071 ], [ -119.459401725999953, 49.934156615000035 ], [ -119.459442761, 49.933870704000071 ], [ -119.459549907999985, 49.933877112000054 ], [ -119.459584066999966, 49.933639105000019 ], [ -119.459708829999926, 49.933646568000036 ], [ -119.459751074999957, 49.93335220900012 ], [ -119.459912758999963, 49.933361879000103 ], [ -119.459956782999953, 49.933055112000076 ], [ -119.460057203999952, 49.933061119000122 ], [ -119.460095391999971, 49.93279501500011 ], [ -119.46339549899993, 49.932992347000024 ], [ -119.463356252999986, 49.932222908000078 ], [ -119.463277335999962, 49.932218190000057 ], [ -119.463497720999953, 49.930681650000047 ], [ -119.463790961999962, 49.928636989000054 ], [ -119.464082718, 49.928654431000083 ], [ -119.464131466999945, 49.92831449600007 ], [ -119.464430022999977, 49.928332343000129 ], [ -119.464474767999945, 49.92802030300011 ], [ -119.464655437999937, 49.928031103000066 ], [ -119.464827916999965, 49.926828208000067 ], [ -119.464909055999925, 49.926833058000057 ], [ -119.464950627999897, 49.926543110000104 ], [ -119.46504453699994, 49.926548724000028 ], [ -119.465083837999956, 49.926274612000043 ], [ -119.465116014000017, 49.926276535000071 ], [ -119.465152347999947, 49.926023113000049 ], [ -119.465285014999907, 49.926031044000048 ], [ -119.465314552999928, 49.925825017000093 ], [ -119.465434044999967, 49.925832159000066 ], [ -119.465468759999922, 49.925590019000026 ], [ -119.465538348999985, 49.925594179000065 ], [ -119.465573566999979, 49.925348522000078 ], [ -119.465625689999911, 49.925351637000034 ], [ -119.465739803999938, 49.924555623000025 ], [ -119.465857383999918, 49.92456265 ], [ -119.465948528999931, 49.923926826000049 ], [ -119.466830409999915, 49.923979531 ], [ -119.466843593999968, 49.923887546000039 ], [ -119.466904762999945, 49.923891202000043 ], [ -119.466955508999931, 49.923537148000044 ], [ -119.467076238999965, 49.923544363000119 ], [ -119.467102311999966, 49.923362451000102 ], [ -119.46749172399997, 49.923385722000049 ], [ -119.467553814999974, 49.922952461000115 ], [ -119.469158453999981, 49.923048335000026 ], [ -119.469151843999953, 49.922918977000045 ], [ -119.468734297999916, 49.922927871000056 ], [ -119.468724446999929, 49.922735088000103 ], [ -119.468635254999953, 49.922729759000092 ], [ -119.468659187999975, 49.922562730000088 ], [ -119.46518935899995, 49.922355364000147 ], [ -119.465210007999971, 49.922211322000123 ], [ -119.464671851999981, 49.922179150000083 ], [ -119.464713798999981, 49.921886568000019 ], [ -119.464500523999973, 49.921873817000083 ], [ -119.464531321999942, 49.922477579000095 ], [ -119.464948865999972, 49.922468699000035 ], [ -119.46504514599998, 49.924355725000076 ], [ -119.464210026999964, 49.924373483000068 ], [ -119.464223777999919, 49.924643058000058 ], [ -119.463806214999963, 49.924651935000043 ], [ -119.46381996299999, 49.924921511000022 ], [ -119.462567266999926, 49.924948132000047 ], [ -119.462553525999979, 49.924678555000092 ], [ -119.462135962999938, 49.924687426000041 ], [ -119.462163440999959, 49.925226578000029 ], [ -119.462581009999894, 49.92521770700003 ], [ -119.462594750999983, 49.925487283000024 ], [ -119.463012320999923, 49.925478410000061 ], [ -119.463122280999968, 49.927635014000074 ], [ -119.46145192599991, 49.927670497000115 ], [ -119.461438188999963, 49.927400921000086 ], [ -119.461256363999965, 49.927404782000025 ], [ -119.459767839, 49.927436379000042 ], [ -119.459740385, 49.926897228000037 ], [ -119.458070049999918, 49.926932660000027 ], [ -119.458001465999942, 49.925584778000022 ], [ -119.458419038999949, 49.925575923000103 ], [ -119.458391602999882, 49.925036770000105 ], [ -119.4588091699999, 49.925027913000079 ], [ -119.458740568999985, 49.923680031000103 ], [ -119.457905457999956, 49.923697743000041 ], [ -119.45788466299993, 49.923289041000054 ], [ -119.457850599000011, 49.922619436000133 ], [ -119.45826814599998, 49.922610581000072 ], [ -119.45822699799993, 49.921801851000112 ], [ -119.458644536999927, 49.921792995000075 ], [ -119.458562231999949, 49.92017553500007 ], [ -119.458979756999966, 49.920166678000044 ], [ -119.458966038999975, 49.919897101000075 ], [ -119.459383560999925, 49.919888243000081 ], [ -119.459370155999977, 49.919624888000023 ], [ -119.459380924999977, 49.919618431000096 ], [ -119.460204881999971, 49.919600946000095 ], [ -119.460191154999976, 49.919331369000105 ], [ -119.460608672999967, 49.919322506000107 ], [ -119.460594944999983, 49.919052929000024 ], [ -119.461271993999958, 49.919038555000078 ], [ -119.461429975999977, 49.91903519900012 ], [ -119.461418849999944, 49.918816796000016 ], [ -119.461398086999978, 49.918409193000123 ], [ -119.461621724999986, 49.918275121000079 ], [ -119.46190246099999, 49.918316311000055 ], [ -119.462025900999961, 49.918391402000118 ], [ -119.462095816999962, 49.918508466000056 ], [ -119.462054501999958, 49.919069476000075 ], [ -119.462181402999946, 49.919325374000024 ], [ -119.462401631999953, 49.919515543000117 ], [ -119.462721943999924, 49.919651174000059 ], [ -119.46305724399997, 49.9197182280001 ], [ -119.463462772999918, 49.919799331000085 ], [ -119.463849178999936, 49.919835074000069 ], [ -119.464235971999983, 49.919819364 ], [ -119.464575145999945, 49.919774632000035 ], [ -119.464650868, 49.919754763000071 ], [ -119.465130169, 49.919629018000087 ], [ -119.465580400999983, 49.919569637000109 ], [ -119.465912758999977, 49.919525772000078 ], [ -119.466519788, 49.919445699000015 ], [ -119.467317620999964, 49.919176456000095 ], [ -119.467902475999949, 49.918900757000053 ], [ -119.469054574999987, 49.918295972000045 ], [ -119.469478292999923, 49.918168703000092 ], [ -119.469792916999936, 49.918119759000049 ], [ -119.470158703, 49.918123575000045 ], [ -119.470551792, 49.918210245000054 ], [ -119.471253260999944, 49.91849598000006 ], [ -119.471603284, 49.918561073000063 ], [ -119.471941261999959, 49.918564086000025 ], [ -119.472232468999962, 49.918531914000049 ], [ -119.472587574999963, 49.918444709000021 ], [ -119.472941401999918, 49.91824912800012 ], [ -119.47305977399995, 49.918125260000103 ], [ -119.473619575, 49.917535627000092 ], [ -119.474201780999977, 49.916896808000068 ], [ -119.474515214999911, 49.916553411000073 ], [ -119.474723700999945, 49.916219999000113 ], [ -119.474802314999948, 49.91576868900006 ], [ -119.474807901999938, 49.914019901000131 ], [ -119.476029990999947, 49.914008892000027 ], [ -119.476023327999968, 49.915021121000109 ], [ -119.476008188, 49.915517930000092 ], [ -119.475989106999933, 49.916835494000111 ], [ -119.475964797999936, 49.916940335000042 ], [ -119.475897798999981, 49.917229213000084 ], [ -119.475579507999925, 49.917499096000036 ], [ -119.475648905999918, 49.917571001000027 ], [ -119.475721717999988, 49.917755900000024 ], [ -119.475646012999931, 49.918500004000059 ], [ -119.476077582999949, 49.918561899000046 ], [ -119.47624220099999, 49.918613204000053 ], [ -119.476289539999954, 49.918669580000071 ], [ -119.476322856999957, 49.918849965000042 ], [ -119.476339459999934, 49.919304692000019 ], [ -119.476340061999977, 49.91932116100002 ], [ -119.476349984999956, 49.92087633600007 ], [ -119.475735855, 49.920889456000083 ], [ -119.475777296000018, 49.921698175000053 ], [ -119.475359762999943, 49.921707093000094 ], [ -119.475387385999952, 49.922246239000053 ], [ -119.474969845999922, 49.922255156000126 ], [ -119.474983655999949, 49.922524729000017 ], [ -119.474559203999917, 49.922533791000014 ], [ -119.474559194999941, 49.922533865000041 ], [ -119.474558289999933, 49.922533811000164 ], [ -119.474255851999914, 49.922540268000084 ], [ -119.474181306999952, 49.923060972000087 ], [ -119.473755820999898, 49.923035573000092 ], [ -119.473772441999955, 49.923360190000082 ], [ -119.473354893999954, 49.923369101000041 ], [ -119.473382495999957, 49.923908247000035 ], [ -119.47326370899999, 49.923910782000064 ], [ -119.473329719999981, 49.923914723000074 ], [ -119.473295920999931, 49.924150777000079 ], [ -119.473280935999952, 49.924255428000059 ], [ -119.47338134, 49.924261422000072 ], [ -119.472868514999959, 49.92784268900008 ], [ -119.47285640199999, 49.927841966000059 ], [ -119.472810928999934, 49.928159490000027 ], [ -119.472610429, 49.928147520000067 ], [ -119.472576232999955, 49.928386295000081 ], [ -119.472375732, 49.928374324000167 ], [ -119.472341533999966, 49.928613100000085 ], [ -119.472003418999989, 49.92859291200007 ], [ -119.471974227999965, 49.928796708000029 ], [ -119.471724679999937, 49.928781808000096 ], [ -119.471685230999967, 49.929057214000075 ], [ -119.471590044999914, 49.929051530000059 ], [ -119.471559435999936, 49.929265215000079 ], [ -119.47149060199996, 49.929261106000119 ], [ -119.471449647999975, 49.929547018000036 ], [ -119.471247755999954, 49.929534962000091 ], [ -119.471180160999936, 49.93000682200006 ], [ -119.471116910999982, 49.930003045000028 ], [ -119.471080569999941, 49.93025672400006 ], [ -119.471036554999941, 49.930254096000127 ], [ -119.470996783000018, 49.930531726000041 ], [ -119.470839287999979, 49.930522321000069 ], [ -119.470808585000015, 49.930736629000059 ], [ -119.470414815999931, 49.930713114000099 ], [ -119.470339492999983, 49.931238838000091 ], [ -119.469884355999966, 49.931211657000063 ], [ -119.469803199999959, 49.931778049000073 ], [ -119.46953280699995, 49.931761901000108 ], [ -119.46950829599993, 49.931932956000011 ], [ -119.469455561999894, 49.931929806000049 ], [ -119.469352263999966, 49.932650659000025 ], [ -119.469121393999899, 49.93276511300013 ], [ -119.468074111999968, 49.933012892000136 ], [ -119.467495184999933, 49.93342019000012 ], [ -119.467147194999981, 49.934516815000059 ], [ -119.466642823999948, 49.93497178300003 ], [ -119.466078355999926, 49.934938055000032 ], [ -119.465697943999928, 49.937591028000043 ], [ -119.465373950999918, 49.937571668000011 ], [ -119.465320603999928, 49.937943666000081 ], [ -119.465370536999899, 49.938921645000072 ], [ -119.46502101, 49.938929079000133 ], [ -119.465011290999911, 49.938996840000051 ], [ -119.464956066999918, 49.938993540000133 ], [ -119.464994137, 49.939739251000049 ], [ -119.46457644399996, 49.939748133000101 ], [ -119.464590203999975, 49.940017707000081 ], [ -119.464316272999923, 49.940023532000083 ], [ -119.464304422999973, 49.940106154000084 ], [ -119.464256886, 49.940103313000108 ], [ -119.464198041999964, 49.940513554000098 ], [ -119.464053754999966, 49.940504931000063 ], [ -119.46401784699998, 49.940755259000071 ], [ -119.4639274099999, 49.940749854000018 ], [ -119.463820078999959, 49.941498061000047 ], [ -119.463790344999936, 49.94149628400001 ], [ -119.463736696999916, 49.941870263000069 ], [ -119.46373138, 49.941869944000111 ], [ -119.463681811999962, 49.942215462000064 ], [ -119.463579170999949, 49.942209328000061 ], [ -119.463568870999978, 49.942281118000047 ], [ -119.465969508999962, 49.942424567000067 ], [ -119.465903840999914, 49.942882461000096 ], [ -119.46592574, 49.942883770000037 ], [ -119.465875597999982, 49.943233410000083 ], [ -119.465610506999923, 49.943419596000105 ], [ -119.465393394000017, 49.944368091000037 ], [ -119.464961499999959, 49.944907893000014 ], [ -119.465027903999925, 49.945122889000075 ], [ -119.465333513999923, 49.945376399000132 ], [ -119.465237698999886, 49.945973199000044 ], [ -119.463929717999974, 49.946819200000093 ], [ -119.463610504999949, 49.947401697000096 ], [ -119.463652510999964, 49.947697888000057 ], [ -119.46412068099994, 49.948199490000036 ], [ -119.463109202999973, 49.948139048000037 ], [ -119.463081923999979, 49.948329160000149 ], [ -119.463041526000026, 49.948326745000038 ], [ -119.462975745, 49.948785161000067 ], [ -119.462469461999902, 49.948754904000047 ], [ -119.462439430999922, 49.948964173000043 ], [ -119.45924295899999, 49.948773082000095 ], [ -119.456890319999971, 49.948632377000131 ] ], [ [ -119.4612184329999, 49.923087707 ], [ -119.461136037999964, 49.921470251000066 ], [ -119.462388645999937, 49.921443648000078 ], [ -119.46240238399993, 49.921713223000047 ], [ -119.46281992199998, 49.921704352000084 ], [ -119.462810314999942, 49.921515885000076 ], [ -119.462511120999935, 49.921497992000141 ], [ -119.462702926999938, 49.92016053400004 ], [ -119.462650513999989, 49.920157399000068 ], [ -119.462660388999964, 49.92008853400003 ], [ -119.461902429999938, 49.920104636000069 ], [ -119.461888694999985, 49.919835061000114 ], [ -119.46147117299995, 49.919843928000056 ], [ -119.461498637999952, 49.920383080000065 ], [ -119.46108111299999, 49.920391946000045 ], [ -119.461108573999979, 49.920931099000072 ], [ -119.460691042999912, 49.920939963000109 ], [ -119.460704773, 49.921209540000092 ], [ -119.460287238999939, 49.921218404000086 ], [ -119.460314693999976, 49.921757556000038 ], [ -119.459897153999989, 49.921766418000061 ], [ -119.459965782000012, 49.923114299000076 ], [ -119.4612184329999, 49.923087707 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27023251", "BldgCostT": "18165001", "sL_LossRatio": "1", "sL_AssetLoss": "2249.6", "sL_BldgLoss": "2249.6", "sL_StrLoss": "2249.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A422F71DEDC5DC00FEEF7599FF54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.45445614199997, 49.912486291000086 ], [ -119.455345272999978, 49.912140384000068 ], [ -119.455332403999975, 49.912230034000075 ], [ -119.455245312999963, 49.912224818 ], [ -119.455027773999944, 49.91374023600018 ], [ -119.454520854999956, 49.913709879000045 ], [ -119.454454474, 49.914172249000032 ], [ -119.454446524999938, 49.914171772000024 ], [ -119.454110787999952, 49.916510150000121 ], [ -119.45278005199998, 49.916430446000057 ], [ -119.45242584699993, 49.918896683000071 ], [ -119.452407927999928, 49.918895610000028 ], [ -119.452315577000022, 49.91953858300009 ], [ -119.452147114999889, 49.91952849200009 ], [ -119.452107081999927, 49.919807187000053 ], [ -119.452045470999963, 49.919803497000096 ], [ -119.451997496, 49.920137489000055 ], [ -119.451903084999984, 49.920131834000067 ], [ -119.451866604999964, 49.920385791000086 ], [ -119.451655446999936, 49.920373142000152 ], [ -119.45160901099996, 49.920696397000043 ], [ -119.451320650999932, 49.920679122000081 ], [ -119.451248722999978, 49.921179804000097 ], [ -119.450838711999964, 49.921155240000104 ], [ -119.450746434999985, 49.921797513000065 ], [ -119.450658085000029, 49.9217922200001 ], [ -119.450536171999957, 49.922640716000018 ], [ -119.450123686999973, 49.922616001000115 ], [ -119.449888946999963, 49.924249570000086 ], [ -119.447598394999972, 49.92411761200006 ], [ -119.447793869999927, 49.922981202000166 ], [ -119.448046123, 49.921977974000079 ], [ -119.448111855999969, 49.921716505000106 ], [ -119.448303208999931, 49.920955491000058 ], [ -119.449828407, 49.918489568000076 ], [ -119.450183094999943, 49.917863809000096 ], [ -119.450333310999923, 49.917585341000041 ], [ -119.454443138999949, 49.912491344000031 ], [ -119.45445614199997, 49.912486291000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020141", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129806833", "BldgCostT": "87163333", "sL_LossRatio": "1", "sL_AssetLoss": "10202.5", "sL_BldgLoss": "10202.5", "sL_StrLoss": "10202.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DF38005F2DD5DC0414D3E87C3F44840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46190246099999, 49.918316311000055 ], [ -119.461621724999986, 49.918275121000079 ], [ -119.461398086999978, 49.918409193000123 ], [ -119.461388779999965, 49.918226471000061 ], [ -119.461806286999916, 49.918217604000098 ], [ -119.461792552999952, 49.917948029000087 ], [ -119.462970929, 49.91792299400003 ], [ -119.463039715999912, 49.917443285000097 ], [ -119.46047622599994, 49.917289945000078 ], [ -119.460989903999987, 49.913708684000099 ], [ -119.463993731999963, 49.91388836000008 ], [ -119.464350486999948, 49.911399656000121 ], [ -119.465020432999921, 49.911439717000043 ], [ -119.465064567999946, 49.911131784000084 ], [ -119.464371398999901, 49.911146525000063 ], [ -119.464357652000018, 49.910876949000063 ], [ -119.46394021, 49.91088582400004 ], [ -119.463932232999952, 49.910729345000071 ], [ -119.45965702499997, 49.910473577000111 ], [ -119.463276010999962, 49.909643897000116 ], [ -119.463475768999899, 49.909661682000035 ], [ -119.464663243999937, 49.909767491000132 ], [ -119.466196938999957, 49.909795995000088 ], [ -119.466100258999973, 49.909523796000045 ], [ -119.466112869999932, 49.907699593000068 ], [ -119.466019217999985, 49.907202806000065 ], [ -119.465989798999928, 49.907094058000055 ], [ -119.465866617999978, 49.906638324000092 ], [ -119.465608221999958, 49.906197544000037 ], [ -119.465198468000011, 49.905740503000068 ], [ -119.463868438999953, 49.904730855000032 ], [ -119.46363286199994, 49.904456540000062 ], [ -119.463521039999975, 49.904326290000029 ], [ -119.463406453999966, 49.904033811000048 ], [ -119.46340384899996, 49.904027176000078 ], [ -119.463357316999947, 49.903908352000059 ], [ -119.463415294999947, 49.90390174100002 ], [ -119.463696596999938, 49.903869720000081 ], [ -119.464086169999987, 49.903825353000052 ], [ -119.464376643999955, 49.903792260000017 ], [ -119.464880567999955, 49.903734889000113 ], [ -119.465431536, 49.903695453000054 ], [ -119.465586920999968, 49.903684347000137 ], [ -119.466021713999936, 49.903653228000032 ], [ -119.466790399999937, 49.903605269000053 ], [ -119.467092158999947, 49.903518565000077 ], [ -119.467358597, 49.903395444000111 ], [ -119.467587475999935, 49.903232115000087 ], [ -119.46768654899995, 49.903116216000129 ], [ -119.46775707099999, 49.903033663000059 ], [ -119.467855615999923, 49.902833663000074 ], [ -119.467890339999926, 49.902675407000061 ], [ -119.467924067999931, 49.902521708000101 ], [ -119.46800697899999, 49.90236232300002 ], [ -119.468160503999954, 49.902188196000097 ], [ -119.468359597999921, 49.902037556000053 ], [ -119.468557946999951, 49.901931115000096 ], [ -119.469159705999942, 49.901701595000091 ], [ -119.469808937999929, 49.901169712000055 ], [ -119.46997131399992, 49.901080085000046 ], [ -119.470184826999954, 49.901004354000101 ], [ -119.470457847999953, 49.90096197300003 ], [ -119.470646229999943, 49.900964188000017 ], [ -119.470886147999977, 49.90096767900009 ], [ -119.471148365999966, 49.901010460000059 ], [ -119.471448208999945, 49.901142145000065 ], [ -119.472008461, 49.901495274000119 ], [ -119.472018257999963, 49.901511375000069 ], [ -119.472272163999932, 49.901928230000053 ], [ -119.472453857999952, 49.901884093000042 ], [ -119.473738530999938, 49.901571996000037 ], [ -119.473904115, 49.901531769000051 ], [ -119.474199390999942, 49.901519590000071 ], [ -119.474323060999922, 49.90153875700004 ], [ -119.474721623999955, 49.901600511000034 ], [ -119.474958295999912, 49.901637153000074 ], [ -119.474946307999971, 49.90179898400006 ], [ -119.475019800999974, 49.901900901000054 ], [ -119.475147771999957, 49.901973556000073 ], [ -119.475628342999983, 49.902142091000023 ], [ -119.47570012199999, 49.902167278000036 ], [ -119.475828198999963, 49.902248961000069 ], [ -119.475914003999918, 49.902362450000105 ], [ -119.47615426099999, 49.903194003000038 ], [ -119.47631078299996, 49.903350555000074 ], [ -119.476276818999935, 49.903876183000079 ], [ -119.475700811999985, 49.903888488000106 ], [ -119.47568700799998, 49.903618915000031 ], [ -119.475269629999943, 49.903627829000129 ], [ -119.475214423999958, 49.902549533000091 ], [ -119.474379686999953, 49.902567357000095 ], [ -119.474434873999968, 49.903645655000069 ], [ -119.47401749699992, 49.903654565000096 ], [ -119.474031290999918, 49.90392413900004 ], [ -119.473196530999957, 49.90394195700005 ], [ -119.473210320999939, 49.904211532000076 ], [ -119.47028863299991, 49.904273844000109 ], [ -119.470274859999961, 49.904004268000108 ], [ -119.469857476999934, 49.904013164000069 ], [ -119.469816161999987, 49.903204438000017 ], [ -119.469398785999957, 49.903213332000078 ], [ -119.469357481999964, 49.902404607000101 ], [ -119.46894011099999, 49.902413499000019 ], [ -119.468953877999937, 49.902683074000059 ], [ -119.468536506999968, 49.902691965000074 ], [ -119.4685778, 49.903500691000012 ], [ -119.468160420999951, 49.903509580000097 ], [ -119.468174182999959, 49.903779156000077 ], [ -119.46775680199994, 49.903788044000045 ], [ -119.467770561999956, 49.904057619000113 ], [ -119.466935793999966, 49.904075391000056 ], [ -119.46694955000001, 49.904344967000064 ], [ -119.467366935999934, 49.904336082000022 ], [ -119.467408212999942, 49.905144808000102 ], [ -119.467825604999945, 49.905135922000106 ], [ -119.467921937999975, 49.907022950000098 ], [ -119.466669710999923, 49.907049608000058 ], [ -119.466766005999929, 49.908936637000124 ], [ -119.466348577999923, 49.908945521000128 ], [ -119.466362333999882, 49.90921509600004 ], [ -119.468449473999939, 49.909170663000083 ], [ -119.468461743999953, 49.909410914000091 ], [ -119.470882354999958, 49.909555559000104 ], [ -119.470849733999984, 49.909783371000032 ], [ -119.470985065999969, 49.909791456000036 ], [ -119.470903850999932, 49.910358638000048 ], [ -119.472234465, 49.910438124000095 ], [ -119.471721702999943, 49.914019453000058 ], [ -119.471608, 49.914012662000104 ], [ -119.471548922999929, 49.914425236000021 ], [ -119.47163285, 49.914430248000066 ], [ -119.471312075999933, 49.916670326000066 ], [ -119.471538603999974, 49.91668385600012 ], [ -119.471503102999961, 49.916931767000065 ], [ -119.471771251999911, 49.916926049000075 ], [ -119.471743675999946, 49.91638690100006 ], [ -119.472161162999967, 49.916377997000069 ], [ -119.472147373, 49.916108422000093 ], [ -119.472564859000016, 49.916099517000077 ], [ -119.47255106599998, 49.915829943000055 ], [ -119.473803516999979, 49.9158032180001 ], [ -119.473748318999952, 49.914724922000097 ], [ -119.474165792999941, 49.914716012000071 ], [ -119.474124389999986, 49.913907290000061 ], [ -119.473706922999909, 49.913916201000141 ], [ -119.473665529999934, 49.913107480000136 ], [ -119.474082989999914, 49.91309856900007 ], [ -119.474055388999957, 49.912559420000058 ], [ -119.475820471999896, 49.912521730000023 ], [ -119.476029990999947, 49.914008892000027 ], [ -119.474807901999938, 49.914019901000131 ], [ -119.474802314999948, 49.91576868900006 ], [ -119.474723700999945, 49.916219999000113 ], [ -119.474515214999911, 49.916553411000073 ], [ -119.474201780999977, 49.916896808000068 ], [ -119.473619575, 49.917535627000092 ], [ -119.47305977399995, 49.918125260000103 ], [ -119.472941401999918, 49.91824912800012 ], [ -119.472587574999963, 49.918444709000021 ], [ -119.472232468999962, 49.918531914000049 ], [ -119.471941261999959, 49.918564086000025 ], [ -119.471603284, 49.918561073000063 ], [ -119.471253260999944, 49.91849598000006 ], [ -119.470551792, 49.918210245000054 ], [ -119.470158703, 49.918123575000045 ], [ -119.469792916999936, 49.918119759000049 ], [ -119.469478292999923, 49.918168703000092 ], [ -119.469054574999987, 49.918295972000045 ], [ -119.467902475999949, 49.918900757000053 ], [ -119.467317620999964, 49.919176456000095 ], [ -119.466519788, 49.919445699000015 ], [ -119.465912758999977, 49.919525772000078 ], [ -119.465580400999983, 49.919569637000109 ], [ -119.465130169, 49.919629018000087 ], [ -119.464650868, 49.919754763000071 ], [ -119.464575145999945, 49.919774632000035 ], [ -119.464235971999983, 49.919819364 ], [ -119.463849178999936, 49.919835074000069 ], [ -119.463462772999918, 49.919799331000085 ], [ -119.46305724399997, 49.9197182280001 ], [ -119.462721943999924, 49.919651174000059 ], [ -119.462401631999953, 49.919515543000117 ], [ -119.462181402999946, 49.919325374000024 ], [ -119.462054501999958, 49.919069476000075 ], [ -119.462095816999962, 49.918508466000056 ], [ -119.462025900999961, 49.918391402000118 ], [ -119.46190246099999, 49.918316311000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8135167", "BldgCostT": "5346667", "sL_LossRatio": "1", "sL_AssetLoss": "1312", "sL_BldgLoss": "1312", "sL_StrLoss": "1312", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B77C66410FEB5DC0CBBEA749DBED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.671514380999938, 49.85617287200008 ], [ -119.67299226699997, 49.856258534000105 ], [ -119.673304553999955, 49.856531523000058 ], [ -119.673995321999925, 49.857135301000092 ], [ -119.674579611999945, 49.857885808000027 ], [ -119.674632796999987, 49.858100896000103 ], [ -119.674571879999988, 49.858211041000139 ], [ -119.674431187999986, 49.858465505000012 ], [ -119.674140715999982, 49.858516797000085 ], [ -119.674225107999931, 49.859028086000087 ], [ -119.674517194999964, 49.859281597000113 ], [ -119.674902110999966, 49.859461006000089 ], [ -119.675080191999925, 49.859889690000017 ], [ -119.675068751999973, 49.859990141000011 ], [ -119.671017820999921, 49.859755386000131 ], [ -119.671514380999938, 49.85617287200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "170870583", "BldgCostT": "113478333", "sL_LossRatio": "0.995291323250572", "sL_AssetLoss": "20083.60417", "sL_BldgLoss": "19989.03697", "sL_StrLoss": "19954.01597", "sL_NStrLoss": "35.021", "sL_ContLoss": "94.5672", "geom_point": "0101000020E6100000905419A58FE95DC062831AF830EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.644109600999954, 49.85385009100002 ], [ -119.644016414999982, 49.853198360000086 ], [ -119.644003504999887, 49.853108092000099 ], [ -119.643673303999947, 49.852521893000066 ], [ -119.6433606799999, 49.852159699000033 ], [ -119.642693614999942, 49.851467104000093 ], [ -119.642450417999953, 49.85125889100005 ], [ -119.641853778999931, 49.850852103000136 ], [ -119.641052496000029, 49.850241113000124 ], [ -119.640398094999952, 49.849577295000039 ], [ -119.640075602999971, 49.849407802000059 ], [ -119.639273902999946, 49.849150686000016 ], [ -119.639134301999903, 49.848960186000085 ], [ -119.639146105999941, 49.848307806000037 ], [ -119.639163487999923, 49.847347492000047 ], [ -119.643874594999886, 49.847316266000085 ], [ -119.644445124999947, 49.847312451000079 ], [ -119.64517359199999, 49.847307604000051 ], [ -119.645172582999976, 49.847244488000115 ], [ -119.645169647999978, 49.847064528000104 ], [ -119.645166853999982, 49.846893540000089 ], [ -119.645160694999959, 49.846516104000074 ], [ -119.645157780000019, 49.846336110000045 ], [ -119.64514624899995, 49.845626136000106 ], [ -119.645136710999964, 49.845041320000057 ], [ -119.645119148999925, 49.843962437000101 ], [ -119.645090295999964, 49.842188907000043 ], [ -119.64510198, 49.84105721300007 ], [ -119.64510450099999, 49.840814695000091 ], [ -119.645106186999968, 49.84065265300007 ], [ -119.645107856999985, 49.840490959000078 ], [ -119.645109541999886, 49.840328919000044 ], [ -119.645127582999947, 49.83858297500003 ], [ -119.645129299999951, 49.83841799500005 ], [ -119.645027908999978, 49.838244190000069 ], [ -119.644518313999967, 49.837744093 ], [ -119.644368008999933, 49.837545271000067 ], [ -119.64424488399996, 49.837382407000064 ], [ -119.644045694999946, 49.836945925000045 ], [ -119.644041727999948, 49.836937197000076 ], [ -119.64400891799994, 49.836822402000045 ], [ -119.644020719999901, 49.836637091000107 ], [ -119.64446947499999, 49.83578830000009 ], [ -119.644513492999963, 49.835572389000042 ], [ -119.644497890999958, 49.835411619000077 ], [ -119.644493380999961, 49.835365403000118 ], [ -119.644314600999948, 49.834745483000106 ], [ -119.644153199999948, 49.834551011000045 ], [ -119.64388809399999, 49.834330602000058 ], [ -119.64366790299999, 49.834057703000035 ], [ -119.643267961999982, 49.833230223000058 ], [ -119.643263795999957, 49.833221583000046 ], [ -119.6432277299999, 49.83310933800005 ], [ -119.643186911999919, 49.832982401000081 ], [ -119.643063807999937, 49.832803699000067 ], [ -119.64303118899997, 49.832776833000118 ], [ -119.642631065000018, 49.832447269000049 ], [ -119.642531797999965, 49.832365509000134 ], [ -119.642422419999946, 49.832229099000045 ], [ -119.642270378999939, 49.831766997000074 ], [ -119.642195251999965, 49.831679570000084 ], [ -119.642096306999946, 49.831564497000059 ], [ -119.641993210999914, 49.831452811000105 ], [ -119.64124161299992, 49.830918799000067 ], [ -119.639937102, 49.830206201000074 ], [ -119.639250689999983, 49.829755394000095 ], [ -119.639056310999976, 49.829592838000025 ], [ -119.638698296999948, 49.829293393000036 ], [ -119.638414282999975, 49.829128692000047 ], [ -119.638374054999986, 49.829114731000111 ], [ -119.63816139699999, 49.829040898000102 ], [ -119.63786571199995, 49.829010098000033 ], [ -119.637379794999958, 49.829062996000062 ], [ -119.637304693999965, 49.829000813000043 ], [ -119.637676603999964, 49.82885550500005 ], [ -119.637972612999945, 49.828769391000066 ], [ -119.638121483999925, 49.828726102000111 ], [ -119.638790307999969, 49.828622504000073 ], [ -119.642263675, 49.828526999000132 ], [ -119.643025526999963, 49.828466601000109 ], [ -119.64340238199999, 49.828397433000099 ], [ -119.643745060999976, 49.828878690000074 ], [ -119.643819055999955, 49.828982581000091 ], [ -119.643897394999954, 49.829092612000053 ], [ -119.644971602999959, 49.830164996000072 ], [ -119.645023404999932, 49.830596593000088 ], [ -119.645044371999973, 49.830627658000132 ], [ -119.645469873999929, 49.831258725000026 ], [ -119.64558039399995, 49.831422656000029 ], [ -119.646050984999945, 49.832120505000077 ], [ -119.645981461999966, 49.833048246000075 ], [ -119.645972638999964, 49.833166028000157 ], [ -119.645970611999971, 49.833192888000042 ], [ -119.645465600999941, 49.833375200000035 ], [ -119.644867977999951, 49.833387998000035 ], [ -119.644691018999936, 49.833437898000113 ], [ -119.644614697999913, 49.833556096000038 ], [ -119.644622344999931, 49.83360872900014 ], [ -119.644681275999929, 49.8340156000001 ], [ -119.644702993999985, 49.834165594000055 ], [ -119.645038191999973, 49.834698304000021 ], [ -119.6455547, 49.835001608000034 ], [ -119.64576481, 49.83529359100001 ], [ -119.645699085999965, 49.835609789000067 ], [ -119.645781582999973, 49.835823396000059 ], [ -119.645793049999909, 49.835832218000064 ], [ -119.6459352, 49.835941389000027 ], [ -119.646618784999973, 49.836466512000094 ], [ -119.646581396999949, 49.836735327000063 ], [ -119.647000491, 49.836759728000033 ], [ -119.647044190999921, 49.836793296000025 ], [ -119.647265613999934, 49.837525288000066 ], [ -119.647472519999951, 49.837773199000083 ], [ -119.64796952099999, 49.838065109000112 ], [ -119.64806160199997, 49.83811921000008 ], [ -119.650456499, 49.838928192 ], [ -119.651976908, 49.840026307000059 ], [ -119.652158137999933, 49.840281769000036 ], [ -119.65195282699996, 49.841759103000086 ], [ -119.650807012999962, 49.841692445000049 ], [ -119.650796957999916, 49.841764783000023 ], [ -119.653034135999988, 49.841894918999984 ], [ -119.653047658999967, 49.841797608000057 ], [ -119.65405947, 49.841856449000076 ], [ -119.654196012999961, 49.841937492000049 ], [ -119.655102006999954, 49.842222409000023 ], [ -119.655434213999982, 49.842421796000075 ], [ -119.655690050999965, 49.842735769000036 ], [ -119.65623971, 49.843410209000069 ], [ -119.656543614999947, 49.84466350900005 ], [ -119.657282528999986, 49.845281373000063 ], [ -119.657798887, 49.845713094000061 ], [ -119.658159393999981, 49.845944388000071 ], [ -119.658082055999955, 49.846501344000039 ], [ -119.660054703999904, 49.846615950000036 ], [ -119.660442696999937, 49.846750013000133 ], [ -119.66052588899997, 49.846801795000054 ], [ -119.660874888999899, 49.847019092000053 ], [ -119.661089699999977, 49.847392286000073 ], [ -119.661138981999898, 49.847796704000075 ], [ -119.661422661999978, 49.848214361000103 ], [ -119.66108050699999, 49.850679469000077 ], [ -119.657702522999983, 49.850483245000063 ], [ -119.65764537099993, 49.850894748000087 ], [ -119.657204463999975, 49.850869129000074 ], [ -119.657202251999948, 49.85088505800006 ], [ -119.656549647999981, 49.850847134000048 ], [ -119.656385879999931, 49.852026073000026 ], [ -119.655027888999911, 49.851947145000082 ], [ -119.65503903299998, 49.85215042500004 ], [ -119.653788405999975, 49.852179081000031 ], [ -119.653817945999933, 49.852718159000069 ], [ -119.655485466999949, 49.852679947000084 ], [ -119.655470687999937, 49.852410409000051 ], [ -119.656304442999925, 49.852391294000029 ], [ -119.65628965799999, 49.852121756000024 ], [ -119.657540281999971, 49.852093073000042 ], [ -119.657559672999952, 49.852446423000124 ], [ -119.657393105999986, 49.852490044000035 ], [ -119.65713217199999, 49.852558397000074 ], [ -119.65685470699999, 49.852631087000098 ], [ -119.656704307999959, 49.852670497000098 ], [ -119.656593643999955, 49.852710228000021 ], [ -119.656207586999969, 49.852848782000152 ], [ -119.655930414999943, 49.852948256000033 ], [ -119.655631378999928, 49.853055582000131 ], [ -119.655316032999949, 49.853168771000121 ], [ -119.6551499239999, 49.853228396000048 ], [ -119.653970382999944, 49.853328603000151 ], [ -119.653550890999938, 49.853293389000065 ], [ -119.653298846999959, 49.853208076000058 ], [ -119.653170986999967, 49.853164794000065 ], [ -119.652505175000016, 49.853124305000051 ], [ -119.651692987999965, 49.853172709000091 ], [ -119.651452012, 49.853241047000033 ], [ -119.650765811999918, 49.853435710000035 ], [ -119.649311303999966, 49.853756482000101 ], [ -119.648702482999951, 49.853807265000107 ], [ -119.647631742999977, 49.853896558000052 ], [ -119.647404703999911, 49.853915484 ], [ -119.646601081999918, 49.853982501000083 ], [ -119.646173400999956, 49.853965710000118 ], [ -119.645584222999972, 49.853836603000097 ], [ -119.645393007999957, 49.853836295000121 ], [ -119.645114688999954, 49.853950097000059 ], [ -119.644476896999961, 49.85459110500004 ], [ -119.644275004999926, 49.854597400000046 ], [ -119.644160175999957, 49.854509392000068 ], [ -119.644109600999954, 49.85385009100002 ] ], [ [ -119.651147891000022, 49.849540768000054 ], [ -119.651149151999959, 49.849531695000032 ], [ -119.649539560999969, 49.849438059000114 ], [ -119.649482450999983, 49.849848747000088 ], [ -119.651110252999942, 49.849811507 ], [ -119.651141932999934, 49.849583620000054 ], [ -119.651139597999986, 49.849540958000048 ], [ -119.651147891000022, 49.849540768000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9130833", "BldgCostT": "6033333", "sL_LossRatio": "0.999924436690641", "sL_AssetLoss": "1654.242", "sL_BldgLoss": "1654.117", "sL_StrLoss": "1653.7", "sL_NStrLoss": "0.417", "sL_ContLoss": "0.125", "geom_point": "0101000020E61000004AD1A9AF17EB5DC08C6D8C7CE2EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.671236230999938, 49.864394718 ], [ -119.675074518999935, 49.864617122000091 ], [ -119.674578146, 49.868199611000122 ], [ -119.674125891999935, 49.868173413000065 ], [ -119.674033457999926, 49.868840421000108 ], [ -119.673137744, 49.868788529000071 ], [ -119.672001487999964, 49.866613092000094 ], [ -119.671474189999941, 49.866509400000069 ], [ -119.67132160200002, 49.866451799000046 ], [ -119.671198415999982, 49.866262286000101 ], [ -119.671271707999892, 49.866056184000094 ], [ -119.671647896999971, 49.865678998000107 ], [ -119.671795615999912, 49.865399494000116 ], [ -119.671779779999937, 49.865110593000097 ], [ -119.671584967999976, 49.864894927000122 ], [ -119.671267718999971, 49.864543801000067 ], [ -119.671236230999938, 49.864394718 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "436784584", "BldgCostT": "294423334", "sL_LossRatio": "0.997663991495126", "sL_AssetLoss": "46809.37581", "sL_BldgLoss": "46700.02871", "sL_StrLoss": "46658.44521", "sL_NStrLoss": "41.5835", "sL_ContLoss": "109.3471", "geom_point": "0101000020E6100000EC0D7C1447E85DC0DFD9684AFCEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.618485978999956, 49.859467135000045 ], [ -119.618470248, 49.859400989000093 ], [ -119.618362815999959, 49.858949807000023 ], [ -119.617254193999941, 49.858748437000067 ], [ -119.615953820999962, 49.858771679000036 ], [ -119.616707205999973, 49.858359149000115 ], [ -119.616960927999941, 49.85812207400005 ], [ -119.617306389999925, 49.857348620000067 ], [ -119.617368982999935, 49.857110179000067 ], [ -119.617527309999971, 49.85650678800004 ], [ -119.617530430999963, 49.856494956000105 ], [ -119.617935467999942, 49.855944407000038 ], [ -119.618042431000021, 49.855748409000121 ], [ -119.618062996999967, 49.85548146400005 ], [ -119.617978049999962, 49.855040404000128 ], [ -119.617654954999963, 49.853426994000088 ], [ -119.617637254, 49.853034109000149 ], [ -119.617708048999987, 49.852797179000021 ], [ -119.616901269, 49.852551696000077 ], [ -119.616355256999938, 49.852385579000099 ], [ -119.616245898, 49.852352295000053 ], [ -119.615878306999917, 49.852335294000092 ], [ -119.61553980799998, 49.852410292000044 ], [ -119.615393022999982, 49.852259541000109 ], [ -119.615106393999966, 49.851965102000108 ], [ -119.614956196999941, 49.851721608000062 ], [ -119.614955593999952, 49.851708454000047 ], [ -119.61494818599999, 49.851549610000077 ], [ -119.615022590999956, 49.851386891000089 ], [ -119.615097639999988, 49.851308682000116 ], [ -119.615212125000014, 49.851189411000099 ], [ -119.61508218299997, 49.851010297000087 ], [ -119.614378518999956, 49.850532105000134 ], [ -119.613813982999915, 49.850146891000072 ], [ -119.613691298999953, 49.850026012000043 ], [ -119.613679207999937, 49.849963009000128 ], [ -119.613655173999973, 49.849835198000065 ], [ -119.613659505, 49.849415612000023 ], [ -119.613663182999957, 49.84895980400006 ], [ -119.615279594999947, 49.848959596000043 ], [ -119.615694213999944, 49.848929713000089 ], [ -119.615733704999954, 49.848127503000136 ], [ -119.615736645999974, 49.847979359000064 ], [ -119.616486016999929, 49.847986312000032 ], [ -119.619402292999894, 49.848010539000079 ], [ -119.621055943, 49.847990948000074 ], [ -119.621085795999988, 49.847990761000055 ], [ -119.625194157999942, 49.847928603000099 ], [ -119.625383472999928, 49.844115912000063 ], [ -119.625386654999886, 49.844051740000033 ], [ -119.625756834999933, 49.8440995220001 ], [ -119.626699555999934, 49.844099552000102 ], [ -119.627771791999947, 49.84409960400005 ], [ -119.628076379999968, 49.844099600000064 ], [ -119.628619905999955, 49.844098978000048 ], [ -119.629214100999945, 49.84409830900006 ], [ -119.629228024999932, 49.844098289000058 ], [ -119.629968027999936, 49.844098217000067 ], [ -119.631067598999948, 49.844098092000131 ], [ -119.63399520199999, 49.844091999000049 ], [ -119.633980880999928, 49.844565099000057 ], [ -119.633865293999946, 49.844993595000098 ], [ -119.63347008199996, 49.845755990000058 ], [ -119.63361311299991, 49.846202292000072 ], [ -119.63402951499998, 49.846619294000043 ], [ -119.634743614999977, 49.84691380400006 ], [ -119.635111690999977, 49.847016483000068 ], [ -119.635720178999946, 49.847056492000092 ], [ -119.636674647999911, 49.846923 ], [ -119.636699610999969, 49.846919505000137 ], [ -119.63730780199991, 49.846881816000057 ], [ -119.637575847999969, 49.846927709000113 ], [ -119.637754995999941, 49.846958396000112 ], [ -119.638329179999957, 49.847138361000091 ], [ -119.63867509399999, 49.847246808000065 ], [ -119.639163487999923, 49.847347492000047 ], [ -119.639146105999941, 49.848307806000037 ], [ -119.639134301999903, 49.848960186000085 ], [ -119.639273902999946, 49.849150686000016 ], [ -119.640075602999971, 49.849407802000059 ], [ -119.640398094999952, 49.849577295000039 ], [ -119.641052496000029, 49.850241113000124 ], [ -119.641853778999931, 49.850852103000136 ], [ -119.642450417999953, 49.85125889100005 ], [ -119.642693614999942, 49.851467104000093 ], [ -119.6433606799999, 49.852159699000033 ], [ -119.643673303999947, 49.852521893000066 ], [ -119.644003504999887, 49.853108092000099 ], [ -119.644016414999982, 49.853198360000086 ], [ -119.644109600999954, 49.85385009100002 ], [ -119.644160175999957, 49.854509392000068 ], [ -119.644275004999926, 49.854597400000046 ], [ -119.644476896999961, 49.85459110500004 ], [ -119.645114688999954, 49.853950097000059 ], [ -119.645393007999957, 49.853836295000121 ], [ -119.645584222999972, 49.853836603000097 ], [ -119.646173400999956, 49.853965710000118 ], [ -119.646601081999918, 49.853982501000083 ], [ -119.647404703999911, 49.853915484 ], [ -119.647631742999977, 49.853896558000052 ], [ -119.648702482999951, 49.853807265000107 ], [ -119.649311303999966, 49.853756482000101 ], [ -119.650765811999918, 49.853435710000035 ], [ -119.651452012, 49.853241047000033 ], [ -119.651692987999965, 49.853172709000091 ], [ -119.652505175000016, 49.853124305000051 ], [ -119.653170986999967, 49.853164794000065 ], [ -119.653298846999959, 49.853208076000058 ], [ -119.653550890999938, 49.853293389000065 ], [ -119.653970382999944, 49.853328603000151 ], [ -119.6551499239999, 49.853228396000048 ], [ -119.655316032999949, 49.853168771000121 ], [ -119.655631378999928, 49.853055582000131 ], [ -119.655930414999943, 49.852948256000033 ], [ -119.656207586999969, 49.852848782000152 ], [ -119.656593643999955, 49.852710228000021 ], [ -119.656704307999959, 49.852670497000098 ], [ -119.65685470699999, 49.852631087000098 ], [ -119.65713217199999, 49.852558397000074 ], [ -119.657393105999986, 49.852490044000035 ], [ -119.657559672999952, 49.852446423000124 ], [ -119.657599445999935, 49.853171225000082 ], [ -119.656765679999964, 49.853190350000098 ], [ -119.656780465999987, 49.853459887000049 ], [ -119.654279145999965, 49.853517224000107 ], [ -119.654293918999912, 49.853786763000066 ], [ -119.653043248999964, 49.853815411000014 ], [ -119.653028482999957, 49.853545873000066 ], [ -119.651777817999985, 49.853574506000058 ], [ -119.651792576999966, 49.853844045000059 ], [ -119.650541902999976, 49.853872667000118 ], [ -119.65055665599999, 49.854142207000052 ], [ -119.649305973999944, 49.854170816000057 ], [ -119.649320718999931, 49.854440354000054 ], [ -119.648070026999974, 49.854468949000086 ], [ -119.648084766999943, 49.854738489000106 ], [ -119.647667866999925, 49.854748018000038 ], [ -119.647697340999954, 49.855287098000098 ], [ -119.64602972199999, 49.855325199000021 ], [ -119.645989648999901, 49.854591843000065 ], [ -119.645570897999974, 49.854567468000056 ], [ -119.645583362999943, 49.854795640000063 ], [ -119.645166462999896, 49.854805159000087 ], [ -119.645181184999927, 49.855074700000088 ], [ -119.643513567999975, 49.855112764000104 ], [ -119.643484139999927, 49.854573683000112 ], [ -119.643067241000026, 49.854583195000096 ], [ -119.64305839699999, 49.854421184000081 ], [ -119.641730032999945, 49.854343819000093 ], [ -119.640968037, 49.854361192000077 ], [ -119.640997435999964, 49.854900274000073 ], [ -119.637662197999973, 49.854976260000051 ], [ -119.637632836999899, 49.854437175000044 ], [ -119.637215935999933, 49.854446666000108 ], [ -119.637259972999985, 49.855255292000081 ], [ -119.635592337999952, 49.85529324400008 ], [ -119.635607009999973, 49.855562786000043 ], [ -119.635190096999978, 49.855572270000017 ], [ -119.635204766999948, 49.855841813000069 ], [ -119.633120196, 49.855889211000083 ], [ -119.63310553799991, 49.855619668000038 ], [ -119.631983517999956, 49.855645164000123 ], [ -119.63172203, 49.857520026000024 ], [ -119.626182792999913, 49.857196755000068 ], [ -119.62638163599992, 49.855772297000129 ], [ -119.625184160999936, 49.855799437000016 ], [ -119.625125711999942, 49.854721258000026 ], [ -119.624291895999974, 49.854740149000129 ], [ -119.624306502999985, 49.855009693000099 ], [ -119.623889592999888, 49.855019137000035 ], [ -119.623918803, 49.855558227000131 ], [ -119.623501887999936, 49.855567668000099 ], [ -119.623531094999976, 49.856106760000081 ], [ -119.623114175999945, 49.856116200000052 ], [ -119.623143377999909, 49.856655290000077 ], [ -119.620224899999968, 49.856721334000049 ], [ -119.620210312999973, 49.856451789000104 ], [ -119.61984043, 49.856460154000075 ], [ -119.619666126999945, 49.857707504000061 ], [ -119.618566082999919, 49.857643206000041 ], [ -119.618459095999938, 49.858408676000067 ], [ -119.619047207999969, 49.858443053000066 ], [ -119.618906490000015, 49.859449902000073 ], [ -119.619536865, 49.859435651000048 ], [ -119.619522281999963, 49.859166104000053 ], [ -119.620360838999929, 49.859147141000093 ], [ -119.620773123999967, 49.859137815000068 ], [ -119.620816893999958, 49.859946453000099 ], [ -119.62039994, 49.859955883000012 ], [ -119.620414527999955, 49.860225429000096 ], [ -119.619997570999971, 49.860234860000098 ], [ -119.620021728999944, 49.860681252000056 ], [ -119.620024257999944, 49.860728019000106 ], [ -119.61995618899995, 49.860710279000109 ], [ -119.619572626999968, 49.860296832000067 ], [ -119.619180100999969, 49.859904970000073 ], [ -119.618607668000024, 49.859595235000057 ], [ -119.618485978999956, 49.859467135000045 ] ], [ [ -119.634067271999982, 49.8493906490001 ], [ -119.634106204999938, 49.84911134900009 ], [ -119.631910005999941, 49.848983235000041 ], [ -119.631920129999955, 49.849169573000033 ], [ -119.632336987999935, 49.84916010000012 ], [ -119.632351636999942, 49.849429644000054 ], [ -119.634067271999982, 49.8493906490001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33963917", "BldgCostT": "22951667", "sL_LossRatio": "1", "sL_AssetLoss": "3312.1", "sL_BldgLoss": "3312.1", "sL_StrLoss": "3312.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A25AE1E957E95DC018062CB90AEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.643470389999962, 49.857749830000081 ], [ -119.64900981599996, 49.85807222600004 ], [ -119.648511473999974, 49.861654629000085 ], [ -119.642971616999958, 49.8613322080001 ], [ -119.643470389999962, 49.857749830000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13823334", "BldgCostT": "9533334", "sL_LossRatio": "0.999997490431308", "sL_AssetLoss": "1689.53335", "sL_BldgLoss": "1689.52911", "sL_StrLoss": "1689.5", "sL_NStrLoss": "0.02911", "sL_ContLoss": "0.00424", "geom_point": "0101000020E6100000CA5B4B54F1EA5DC02EF6A809ECEE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.670395441999972, 49.868629611000081 ], [ -119.670194818999946, 49.865791438000024 ], [ -119.66887155099991, 49.865786658000069 ], [ -119.66898940599998, 49.864936837000037 ], [ -119.669441624999976, 49.864963056000086 ], [ -119.669534115999966, 49.864296047000018 ], [ -119.671236230999938, 49.864394718 ], [ -119.671267718999971, 49.864543801000067 ], [ -119.671584967999976, 49.864894927000122 ], [ -119.671779779999937, 49.865110593000097 ], [ -119.671795615999912, 49.865399494000116 ], [ -119.671647896999971, 49.865678998000107 ], [ -119.671271707999892, 49.866056184000094 ], [ -119.671198415999982, 49.866262286000101 ], [ -119.67132160200002, 49.866451799000046 ], [ -119.671474189999941, 49.866509400000069 ], [ -119.672001487999964, 49.866613092000094 ], [ -119.673137744, 49.868788529000071 ], [ -119.670395441999972, 49.868629611000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "305.1", "sL_BldgLoss": "305.1", "sL_StrLoss": "305.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007CAA96B6B0E05DC0E3978FDECFF64840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.509037215999967, 49.92665519900001 ], [ -119.509307593999964, 49.926495713000044 ], [ -119.509350690999952, 49.926243596000049 ], [ -119.50868518799993, 49.926320510000082 ], [ -119.508626293999981, 49.926259295000065 ], [ -119.508729103999926, 49.926095487000133 ], [ -119.509362689999989, 49.925649710000073 ], [ -119.509554731999913, 49.92551224200006 ], [ -119.509804395999964, 49.925333499000047 ], [ -119.510979496999965, 49.925128491000059 ], [ -119.512636729999912, 49.925069292000039 ], [ -119.512614801999973, 49.92522337300008 ], [ -119.513161281999942, 49.92521152500008 ], [ -119.513179964999935, 49.925570630000081 ], [ -119.513187909999957, 49.925723334000047 ], [ -119.513203354999987, 49.926020220000083 ], [ -119.512785795999932, 49.926029274 ], [ -119.512829914999926, 49.926877430000054 ], [ -119.51379878099999, 49.926934912 ], [ -119.513289089999944, 49.93051635500013 ], [ -119.511356980999921, 49.930401715000109 ], [ -119.511201855999971, 49.931491299000108 ], [ -119.510617063999973, 49.931456595000064 ], [ -119.508884873999975, 49.931353779000034 ], [ -119.508915713999954, 49.931299605000078 ], [ -119.508901776999949, 49.930732694 ], [ -119.508740652, 49.930450399000108 ], [ -119.508272478999942, 49.929630396000029 ], [ -119.507846432999955, 49.929147415000045 ], [ -119.507517379999982, 49.928774396000087 ], [ -119.507330393999936, 49.928374187000045 ], [ -119.507360012999953, 49.928157799000104 ], [ -119.507410607999958, 49.928066589000082 ], [ -119.508112023999942, 49.927600906000087 ], [ -119.508652077999955, 49.92674349900004 ], [ -119.509037215999967, 49.92665519900001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8252917", "BldgCostT": "5691667", "sL_LossRatio": "1", "sL_AssetLoss": "763.1", "sL_BldgLoss": "763.1", "sL_StrLoss": "763.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DB25CFC8EDF5DC0C985F33EC8014940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.489712863999927, 50.018479066000047 ], [ -119.489934906999935, 50.016927767000091 ], [ -119.489465894999938, 50.0169378350001 ], [ -119.489410150999944, 50.015859572000117 ], [ -119.488991805999888, 50.015868551000061 ], [ -119.48897787099996, 50.015598984000107 ], [ -119.48855953, 50.015607962000047 ], [ -119.488506567999934, 50.01458313500013 ], [ -119.488366571999933, 50.014574814000078 ], [ -119.488751214999951, 50.013476393000083 ], [ -119.489402320999943, 50.012832705000108 ], [ -119.49035458799996, 50.012362706000062 ], [ -119.490566792999928, 50.012133398000117 ], [ -119.490775695999901, 50.011831488000013 ], [ -119.49087860299997, 50.01114639000005 ], [ -119.491295116999964, 50.010533997000088 ], [ -119.491212998999941, 50.009492890000068 ], [ -119.490957092999949, 50.008896206000031 ], [ -119.490933891999973, 50.008437596000121 ], [ -119.49106148599995, 50.00819119800007 ], [ -119.491447881999989, 50.007832301000143 ], [ -119.491406597999941, 50.007321 ], [ -119.491638299999977, 50.006453831000087 ], [ -119.494333316999985, 50.006613932000093 ], [ -119.49472195, 50.006637015000081 ], [ -119.494585445999959, 50.00759165100002 ], [ -119.49621426799996, 50.007688375000043 ], [ -119.495783170999943, 50.010703703000019 ], [ -119.496144971999968, 50.010725185000091 ], [ -119.495971054999956, 50.011941603000025 ], [ -119.496145951999964, 50.011951987000032 ], [ -119.496129731999929, 50.012065435000117 ], [ -119.49648754899999, 50.012086678000102 ], [ -119.496446192999912, 50.012375950000013 ], [ -119.496458469999965, 50.012376679000091 ], [ -119.496399429999883, 50.012789634000072 ], [ -119.496526495999916, 50.012797178000042 ], [ -119.496490336999955, 50.01305008700011 ], [ -119.496520512999908, 50.013051879000095 ], [ -119.496481505999938, 50.013324709000109 ], [ -119.496543329999938, 50.013328379000086 ], [ -119.496485991000014, 50.013729431000101 ], [ -119.496587856999966, 50.013735478000036 ], [ -119.496420744999966, 50.014904294000097 ], [ -119.496981321999954, 50.014937570000036 ], [ -119.496469328999964, 50.018518508000099 ], [ -119.496435958999882, 50.018516527000024 ], [ -119.49640833699999, 50.01870971000006 ], [ -119.495294391999892, 50.018643582000095 ], [ -119.4950170799999, 50.020582535000166 ], [ -119.494397454999955, 50.020545747000035 ], [ -119.491286638999966, 50.020361001000012 ], [ -119.491267608000015, 50.02000790800011 ], [ -119.490775988999971, 50.019415397000095 ], [ -119.489712863999927, 50.018479066000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020150", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "59.6", "sL_BldgLoss": "59.6", "sL_StrLoss": "59.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D46F3688DCDF5DC055EF3690AAFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.495905812999965, 49.965385191000109 ], [ -119.496004886999955, 49.964322702000061 ], [ -119.496138012, 49.963777255000132 ], [ -119.497251591999941, 49.963843437000023 ], [ -119.49955654299994, 49.963980387000106 ], [ -119.499493096999942, 49.96442487300007 ], [ -119.499676769999965, 49.964435785000042 ], [ -119.499637825000022, 49.964708622000053 ], [ -119.499699485999955, 49.96471228500004 ], [ -119.49964445799999, 49.965097803000049 ], [ -119.499671113999952, 49.965099387000087 ], [ -119.499159890999962, 49.968680578000033 ], [ -119.497153482999963, 49.968561375000093 ], [ -119.495916549999961, 49.968487868000125 ], [ -119.495939595, 49.968461490000088 ], [ -119.496399724999961, 49.967642504 ], [ -119.496452200999954, 49.967028695000103 ], [ -119.496260208999985, 49.96654730000008 ], [ -119.496402005, 49.966328008000097 ], [ -119.496542579999954, 49.966100100000048 ], [ -119.496510410999946, 49.965724093000098 ], [ -119.496290814999952, 49.96553039000004 ], [ -119.495939075999928, 49.965466295000049 ], [ -119.495905812999965, 49.965385191000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999935079388633", "sL_AssetLoss": "194.0832", "sL_BldgLoss": "194.0706", "sL_StrLoss": "194", "sL_NStrLoss": "0.0706", "sL_ContLoss": "0.0126", "geom_point": "0101000020E6100000EE1E665069F35DC04792FF4D98F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.800776269999957, 49.920093925000117 ], [ -119.801263317999911, 49.916511125000142 ], [ -119.803785213999973, 49.916654076000029 ], [ -119.804091908999936, 49.917534593000042 ], [ -119.80452709799998, 49.917830792000082 ], [ -119.80477562499999, 49.918498805000056 ], [ -119.804555616999949, 49.918792192000083 ], [ -119.804645911999913, 49.918889 ], [ -119.804734788999966, 49.919012895000023 ], [ -119.80494007899999, 49.918917495000123 ], [ -119.805108206999961, 49.918725201 ], [ -119.805149790999906, 49.918480303000081 ], [ -119.806552917999937, 49.918725491000011 ], [ -119.80632434599994, 49.920408333000061 ], [ -119.800776269999957, 49.920093925000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7801000", "BldgCostT": "5380000", "sL_LossRatio": "1", "sL_AssetLoss": "790.9", "sL_BldgLoss": "790.9", "sL_StrLoss": "790.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001314D42A59F15DC0C82CB5BDE1E84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.770556813, 49.822625813000094 ], [ -119.770604517999942, 49.822275835 ], [ -119.766603709999913, 49.822047305000069 ], [ -119.766765407999941, 49.820861752000084 ], [ -119.761846535999922, 49.820580577000037 ], [ -119.762036966999986, 49.81918537899999 ], [ -119.762335569999948, 49.816997460000032 ], [ -119.767870898999888, 49.81731385800002 ], [ -119.767709241999938, 49.818499419000098 ], [ -119.768067823, 49.818519905000109 ], [ -119.768304028999978, 49.816787497000135 ], [ -119.769938617999927, 49.816880870000041 ], [ -119.770009079, 49.816363935000034 ], [ -119.771392841999955, 49.816442961000085 ], [ -119.771399376999966, 49.816395007000061 ], [ -119.771423440999939, 49.816218411000101 ], [ -119.77143943199998, 49.816101067000076 ], [ -119.776974715, 49.816417006000101 ], [ -119.776854544999964, 49.81729963900009 ], [ -119.778357429999943, 49.817385370000046 ], [ -119.77830417899996, 49.817776571000174 ], [ -119.778287287999916, 49.817900652000091 ], [ -119.778698549999902, 49.817924107000053 ], [ -119.779074540999886, 49.817945551000086 ], [ -119.779057129999927, 49.818073468000122 ], [ -119.779034464999953, 49.818239992000045 ], [ -119.778586804999932, 49.821528738000055 ], [ -119.776303052999936, 49.821398472000062 ], [ -119.776092878999975, 49.822941793000055 ], [ -119.775357335999914, 49.822899827000072 ], [ -119.770556813, 49.822625813000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947917", "BldgCostT": "4791667", "sL_LossRatio": "0.999999460637836", "sL_AssetLoss": "851.005189", "sL_BldgLoss": "851.00473", "sL_StrLoss": "851", "sL_NStrLoss": "0.00473", "sL_ContLoss": "0.000459", "geom_point": "0101000020E6100000E1EF17B3A5F05DC0B3F32EC5F2DB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.760359218999938, 49.722893607000067 ], [ -119.760267306999978, 49.722499085000045 ], [ -119.759713189999971, 49.721784110000044 ], [ -119.759506809999934, 49.721329796000084 ], [ -119.759523014999928, 49.721131802000038 ], [ -119.759282094999932, 49.720795708 ], [ -119.759440982999976, 49.720180491000058 ], [ -119.759331889999885, 49.719697713000038 ], [ -119.759498697999931, 49.719234802000109 ], [ -119.759448107999916, 49.718813187000102 ], [ -119.759137212999974, 49.718487109000122 ], [ -119.758885609999979, 49.71770088800006 ], [ -119.757483209999961, 49.716213989000082 ], [ -119.756805392, 49.715781106000072 ], [ -119.756223920999972, 49.71557030500005 ], [ -119.75620238099999, 49.715407894000073 ], [ -119.755422914999926, 49.714617499000077 ], [ -119.754406601999918, 49.713849789000079 ], [ -119.754151596999975, 49.713747295000132 ], [ -119.753585591999979, 49.713536515000058 ], [ -119.753320885, 49.713533694000034 ], [ -119.753147518, 49.71316050000005 ], [ -119.752477915000014, 49.712609394000019 ], [ -119.752207909999981, 49.712246208000117 ], [ -119.751865096999921, 49.712046476000062 ], [ -119.751945590999966, 49.711456196000078 ], [ -119.754471136999953, 49.711427274000073 ], [ -119.757491033999955, 49.711605064000025 ], [ -119.757324536999974, 49.712827069000099 ], [ -119.759411055999962, 49.712946753000054 ], [ -119.759271642, 49.713970276000019 ], [ -119.7611329699999, 49.714077007000057 ], [ -119.761043678999954, 49.714732709000046 ], [ -119.76183178899997, 49.714777890000086 ], [ -119.761735475999927, 49.715485232000049 ], [ -119.762580511999914, 49.715533671000088 ], [ -119.76252063, 49.715973507000122 ], [ -119.762746735999926, 49.715986468000033 ], [ -119.762680381999985, 49.716473840000084 ], [ -119.762975660999984, 49.716490763000095 ], [ -119.762948516999955, 49.716690143000037 ], [ -119.763107569999931, 49.716699259000102 ], [ -119.763075520999976, 49.716934684000087 ], [ -119.763247780999933, 49.716944556 ], [ -119.76320976699995, 49.717223787000087 ], [ -119.763432493999957, 49.717236551000077 ], [ -119.763411226999935, 49.717392776000111 ], [ -119.763457902999974, 49.717395451000066 ], [ -119.763367478999896, 49.718059682000025 ], [ -119.763647840999951, 49.718075748000047 ], [ -119.763556821999927, 49.718744355000091 ], [ -119.763793979999932, 49.718757945000071 ], [ -119.763688093999932, 49.719535766000014 ], [ -119.764293115999948, 49.71957043300003 ], [ -119.764027006999967, 49.721525294000095 ], [ -119.76416744899997, 49.721533341000089 ], [ -119.764089596999924, 49.722105227000085 ], [ -119.764374278999981, 49.722121538000046 ], [ -119.764356284999963, 49.722253731000109 ], [ -119.764836172999978, 49.722281224000042 ], [ -119.764770353999921, 49.722764771000094 ], [ -119.765046998999964, 49.722780621000076 ], [ -119.76455918100001, 49.726364221000075 ], [ -119.763784475999941, 49.72631983900002 ], [ -119.763549324999957, 49.726306367000056 ], [ -119.763548632999942, 49.726311445000093 ], [ -119.761758513999965, 49.726208865000011 ], [ -119.761114710999976, 49.725223598000127 ], [ -119.760719104999907, 49.724846209000141 ], [ -119.760506091999929, 49.724760696 ], [ -119.760370312999925, 49.724548505000065 ], [ -119.760255312999959, 49.724011603000058 ], [ -119.760395715999948, 49.723548692000108 ], [ -119.760359218999938, 49.722893607000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "0.9999557116993", "sL_AssetLoss": "273.88723", "sL_BldgLoss": "273.8751", "sL_StrLoss": "273.8", "sL_NStrLoss": "0.0751", "sL_ContLoss": "0.01213", "geom_point": "0101000020E61000002440138211FF5DC096A395B52CF04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.986110884999931, 49.87829897400006 ], [ -119.986123623999944, 49.878094500000074 ], [ -119.985558091999977, 49.878109076000101 ], [ -119.985552256999981, 49.878014549000049 ], [ -119.983208898999962, 49.8779535460001 ], [ -119.983212262999984, 49.877899620000051 ], [ -119.983039589999962, 49.877904067000017 ], [ -119.983025704999989, 49.877678883000058 ], [ -119.982808736999942, 49.877673233000088 ], [ -119.982827665999963, 49.877369746000085 ], [ -119.982589384999969, 49.87737588100002 ], [ -119.982539545999956, 49.876567496000064 ], [ -119.982878243999934, 49.876558776000124 ], [ -119.982917664999945, 49.875926666000083 ], [ -119.982890058999942, 49.875478915 ], [ -119.982945676999947, 49.875477483000118 ], [ -119.98295997799994, 49.875248156000083 ], [ -119.983293984999989, 49.87525685500006 ], [ -119.983290400999977, 49.875198716000043 ], [ -119.983380826999934, 49.875196387000081 ], [ -119.98339372399991, 49.874989562000053 ], [ -119.983695604999966, 49.874997423000096 ], [ -119.983690737999936, 49.874918516000072 ], [ -119.984234261, 49.874904516000086 ], [ -119.984244401999931, 49.874741821000015 ], [ -119.98451550599998, 49.874748878000034 ], [ -119.984508022999989, 49.874627574000073 ], [ -119.985087685999972, 49.874612639000098 ], [ -119.985095073999972, 49.87449407400004 ], [ -119.987380475999913, 49.874553532000036 ], [ -119.987843619999964, 49.874541588000078 ], [ -119.98786179699999, 49.874835940000018 ], [ -119.987996869999947, 49.874839452000053 ], [ -119.987929169999987, 49.875926849000074 ], [ -119.987960108999971, 49.876427809000106 ], [ -119.987897879999935, 49.876429414000057 ], [ -119.987879436999975, 49.87672563100007 ], [ -119.987560359999947, 49.876717334000041 ], [ -119.987642989000022, 49.878055324000151 ], [ -119.987378573999976, 49.878062143000065 ], [ -119.987361798999956, 49.878331512000067 ], [ -119.986110884999931, 49.87829897400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "261.6", "sL_BldgLoss": "261.6", "sL_StrLoss": "261.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FC7EDE1248F05DC0DD65B77DACE94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.751815408999931, 49.82771658500009 ], [ -119.751964606999962, 49.826625432000149 ], [ -119.750937754999939, 49.826566621000026 ], [ -119.751148402999959, 49.82520021200007 ], [ -119.751260517, 49.824826432000144 ], [ -119.751605008999945, 49.823677803000095 ], [ -119.751958983999899, 49.823058199000094 ], [ -119.752003842999926, 49.823016581000047 ], [ -119.756445698999983, 49.823270886000088 ], [ -119.756296618999954, 49.824362051000051 ], [ -119.75784142599997, 49.824450451000061 ], [ -119.757351960999927, 49.828033512000083 ], [ -119.751815408999931, 49.82771658500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "0.999972700454076", "sL_AssetLoss": "558.61735", "sL_BldgLoss": "558.6021", "sL_StrLoss": "558.5", "sL_NStrLoss": "0.1021", "sL_ContLoss": "0.01525", "geom_point": "0101000020E610000027B11833D1F55DC03D37022B66EA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.839621051999984, 49.833651488000044 ], [ -119.839633721, 49.833557519000053 ], [ -119.838917234999954, 49.833517070000084 ], [ -119.838963772999946, 49.833171930000027 ], [ -119.83712360199992, 49.833068021000116 ], [ -119.837165368999948, 49.832758346000091 ], [ -119.83630759499998, 49.832709899000122 ], [ -119.836387686999956, 49.832116147000129 ], [ -119.83538090499999, 49.832059276000102 ], [ -119.835431488999959, 49.831684326000094 ], [ -119.834678006999965, 49.831641757000106 ], [ -119.83516146399991, 49.828058371000097 ], [ -119.835402611999925, 49.82807199500013 ], [ -119.835406303999889, 49.828098493000091 ], [ -119.836017392999949, 49.828559902000094 ], [ -119.836739208999958, 49.828776394000052 ], [ -119.83683698899992, 49.829034205000028 ], [ -119.83705761099999, 49.829236405000103 ], [ -119.836925682999905, 49.829356092000069 ], [ -119.836981202999965, 49.829589688000098 ], [ -119.837345393999954, 49.829625314000062 ], [ -119.837859800999979, 49.830089495000024 ], [ -119.839650709999916, 49.83098959600008 ], [ -119.840080001000032, 49.830952604000039 ], [ -119.840493301999942, 49.831122105000112 ], [ -119.840835714999955, 49.831050892000121 ], [ -119.840978293, 49.830885692000081 ], [ -119.841143610999907, 49.830854398000021 ], [ -119.841116603, 49.830387194000089 ], [ -119.840994699999953, 49.830210595000068 ], [ -119.84114638299998, 49.829945708000047 ], [ -119.841141522999962, 49.829630902000119 ], [ -119.841310586999953, 49.829168096000046 ], [ -119.84123800699993, 49.828908904000045 ], [ -119.841425191999974, 49.828760797000029 ], [ -119.84169951899996, 49.828699504 ], [ -119.841953716999981, 49.828287901000081 ], [ -119.841919820999976, 49.828202303000126 ], [ -119.845061371999975, 49.828379559000155 ], [ -119.844894292999939, 49.829620010000021 ], [ -119.845480040999988, 49.829653050000069 ], [ -119.845439098999961, 49.829957035000042 ], [ -119.84604194399999, 49.829991035000027 ], [ -119.84555931899996, 49.833574460000079 ], [ -119.845214012999932, 49.833554985000049 ], [ -119.845158923999946, 49.833963968000027 ], [ -119.839621051999984, 49.833651488000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "196.2", "sL_BldgLoss": "196.2", "sL_StrLoss": "196.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A88B980227F15DC0F2651ED004DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.766243904999925, 49.733404200000045 ], [ -119.766218500999969, 49.733216193000032 ], [ -119.765847000999941, 49.732307598000041 ], [ -119.765829047999915, 49.732198092000026 ], [ -119.767389639000015, 49.732287449000047 ], [ -119.76990815799995, 49.732431608000077 ], [ -119.769757025, 49.733542539000084 ], [ -119.76994173, 49.733553110000045 ], [ -119.769454177999975, 49.737136679000074 ], [ -119.767601520999904, 49.737030643000075 ], [ -119.766755129000018, 49.736982189000081 ], [ -119.766733693, 49.73689209500003 ], [ -119.76683819, 49.736313897000052 ], [ -119.766535096999959, 49.735376799000036 ], [ -119.766036994999951, 49.734641893000095 ], [ -119.765938590999909, 49.734130602000057 ], [ -119.766083408000014, 49.733758901000073 ], [ -119.765996201999982, 49.733697609000046 ], [ -119.766186324999978, 49.73361220300005 ], [ -119.766111398999968, 49.733506802000122 ], [ -119.766243904999925, 49.733404200000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020162", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "408", "sL_BldgLoss": "408", "sL_StrLoss": "408", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB8EE64452F15DC053E22129F5DE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.766905833999942, 49.745799796000043 ], [ -119.767332893999964, 49.743225719000094 ], [ -119.767339479999961, 49.743224201000089 ], [ -119.767339198999977, 49.743174746000051 ], [ -119.767337793, 49.742939713000105 ], [ -119.767637182999962, 49.742162287000063 ], [ -119.767779916000023, 49.741195403000056 ], [ -119.76774893699999, 49.741147515000115 ], [ -119.767655706000014, 49.741003199000055 ], [ -119.767630404, 49.740892492000022 ], [ -119.767679910999959, 49.740501558000048 ], [ -119.76771151699991, 49.740251966000066 ], [ -119.76774208099998, 49.740010515000051 ], [ -119.767662708999978, 49.739929194000062 ], [ -119.767500008999946, 49.739897311000064 ], [ -119.766959677000017, 49.739914309000071 ], [ -119.76565150499998, 49.739360920000131 ], [ -119.764750826999972, 49.739473284000034 ], [ -119.76602961, 49.73868090600012 ], [ -119.766598689999952, 49.738190999000075 ], [ -119.766622336999959, 49.738077389000082 ], [ -119.767315655999965, 49.738060817000097 ], [ -119.767484097999969, 49.73805679 ], [ -119.767499438999948, 49.738326310000083 ], [ -119.768331159999917, 49.738306422000093 ], [ -119.768346180999984, 49.738570254000059 ], [ -119.768416355999989, 49.738574270000122 ], [ -119.76959409199999, 49.738546098000057 ], [ -119.769624796999949, 49.739085136000021 ], [ -119.770040662999918, 49.739075184000072 ], [ -119.770056017999977, 49.739344703 ], [ -119.770471884999964, 49.739334751000051 ], [ -119.77051582499999, 49.740105872000143 ], [ -119.775973164999982, 49.740417960000059 ], [ -119.775486011999945, 49.744001521000079 ], [ -119.769959471999954, 49.743685475000113 ], [ -119.770367498999974, 49.740686677000085 ], [ -119.770132795999956, 49.740692293000102 ], [ -119.770163507999911, 49.741231329000122 ], [ -119.769983213, 49.74123564399999 ], [ -119.769617257999968, 49.743925056000101 ], [ -119.769508563999963, 49.74391883800007 ], [ -119.769330218, 49.745229360000117 ], [ -119.768884959, 49.74520388300003 ], [ -119.768878401, 49.745252070000049 ], [ -119.767908093999921, 49.74519654300007 ], [ -119.767893229999956, 49.745305743000038 ], [ -119.77155120299993, 49.745515025000039 ], [ -119.768343295999941, 49.745764563000094 ], [ -119.767267249000014, 49.745790971000076 ], [ -119.766905833999942, 49.745799796000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34404417", "BldgCostT": "22991667", "sL_LossRatio": "0.999896554236962", "sL_AssetLoss": "5153.811856", "sL_BldgLoss": "5153.278716", "sL_StrLoss": "5151.010716", "sL_NStrLoss": "2.268", "sL_ContLoss": "0.53314", "geom_point": "0101000020E61000005A6AB56E20005EC0E8B455E639F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.007477110999972, 49.888067800000087 ], [ -120.007474702999986, 49.888029066000101 ], [ -120.007226879999948, 49.888022665000108 ], [ -120.007240408999962, 49.887804055000053 ], [ -120.007043298999932, 49.887809171000058 ], [ -120.007039490999944, 49.887747934000068 ], [ -120.00682649599996, 49.887742432000032 ], [ -120.00683874099991, 49.887544592000076 ], [ -120.006609490999921, 49.887550541000074 ], [ -120.006604283999962, 49.887466801000087 ], [ -120.006426115999929, 49.887462198000073 ], [ -120.006442795999988, 49.88719273800006 ], [ -120.006025739999984, 49.887181961000053 ], [ -120.006068887999973, 49.886485011000097 ], [ -120.005708392999935, 49.886494365 ], [ -120.005700283999929, 49.88636388300008 ], [ -120.00565873799998, 49.886362809000055 ], [ -120.005679437999945, 49.88602847600005 ], [ -120.00563308199996, 49.885282588000081 ], [ -120.005308431999978, 49.88527419700003 ], [ -120.005349281999912, 49.884614453000069 ], [ -120.005174141999973, 49.884618997000082 ], [ -120.00514751599998, 49.884190478000036 ], [ -120.004958139999957, 49.884185583000047 ], [ -120.004997868999965, 49.883544011 ], [ -120.004690151999938, 49.883551991000054 ], [ -120.00467876399999, 49.883368692000047 ], [ -120.004591175999963, 49.883366428000045 ], [ -120.004634832999983, 49.88266149600004 ], [ -120.004589719999942, 49.881935258000091 ], [ -120.00384325399996, 49.881954616000051 ], [ -120.003823900999961, 49.882267027000069 ], [ -120.003406889999937, 49.882256241000071 ], [ -120.003381781999977, 49.88266151100008 ], [ -120.003405626999935, 49.883045521000064 ], [ -120.003357914, 49.883046758 ], [ -120.00335680699996, 49.883064614000034 ], [ -120.003012616999939, 49.883055710000093 ], [ -120.00298861, 49.883056332000073 ], [ -120.003005340999906, 49.883325789000054 ], [ -120.00133726599995, 49.883369017000078 ], [ -120.001331872999927, 49.883282106000067 ], [ -120.001255011999888, 49.883280116000044 ], [ -120.00126611799999, 49.883100971000054 ], [ -120.00090352799999, 49.883110364000153 ], [ -120.000896739, 49.883000952000017 ], [ -120.000854699999962, 49.882999864000077 ], [ -120.000875679999965, 49.882661524000085 ], [ -120.00086319499998, 49.88246030400007 ], [ -120.000471103999956, 49.88245015300005 ], [ -120.000479691999971, 49.882311674000107 ], [ -120.000436362999949, 49.882312796000093 ], [ -120.000344232999964, 49.880827529000044 ], [ -120.000154363999968, 49.880822613000063 ], [ -120.00022898899999, 49.879619270000028 ], [ -119.999852235999967, 49.879629026000025 ], [ -119.999842067999978, 49.87946507700007 ], [ -119.999820929999956, 49.87946453000005 ], [ -119.999831481999948, 49.879294361000078 ], [ -119.999775015999944, 49.87838378100011 ], [ -119.999470797999933, 49.878375901 ], [ -119.999622682, 49.875927016000091 ], [ -119.99955148899997, 49.874778796000044 ], [ -119.999694118999969, 49.874775103000104 ], [ -119.999704760999961, 49.874603502000099 ], [ -119.999958643999932, 49.874610079000064 ], [ -119.999951728999946, 49.874498543000044 ], [ -120.000129165999937, 49.874493947000097 ], [ -120.000138411999941, 49.874344844000035 ], [ -120.000360165999979, 49.87435058600007 ], [ -120.000351962999957, 49.874218286000058 ], [ -120.00056421, 49.874212789000062 ], [ -120.000597727999946, 49.873672141000078 ], [ -120.00031854299999, 49.873679372000083 ], [ -120.000309875999946, 49.87353961499999 ], [ -119.999771597999882, 49.873525674000042 ], [ -119.999777934999955, 49.873423484000099 ], [ -119.999467964999923, 49.873431510000025 ], [ -119.999456563999928, 49.873247624000015 ], [ -119.999057514999919, 49.873237287000023 ], [ -119.998797934999942, 49.875212103000109 ], [ -119.997014856999911, 49.875114140000051 ], [ -119.996949436999955, 49.875611666000097 ], [ -119.997136202999954, 49.875616508000093 ], [ -119.99711692899993, 49.875927021000052 ], [ -119.99726510799999, 49.878318749000066 ], [ -119.997385917999964, 49.878321881000048 ], [ -119.997325554999975, 49.879294354000109 ], [ -119.997333608999924, 49.879424331000031 ], [ -119.996916620999954, 49.879435119000085 ], [ -119.996966704999977, 49.880243492000055 ], [ -119.996430450999924, 49.88025736400008 ], [ -119.996418122999913, 49.880455911000105 ], [ -119.996144096999927, 49.880448806000103 ], [ -119.996149405999944, 49.880534523000051 ], [ -119.994321977999931, 49.880581774000092 ], [ -119.994316415999918, 49.880671289000126 ], [ -119.992590880999941, 49.880626506000091 ], [ -119.99072842399994, 49.880674603000116 ], [ -119.99072245, 49.880577984000091 ], [ -119.990563474999973, 49.880573855000065 ], [ -119.990573749999925, 49.880408707000058 ], [ -119.990294766999952, 49.880415907000021 ], [ -119.990287402999954, 49.880296792000117 ], [ -119.99016324899992, 49.880293566000077 ], [ -119.99017223299991, 49.880149181000014 ], [ -119.989861111999957, 49.88015721200005 ], [ -119.989852358999968, 49.880015599000053 ], [ -119.98976302799997, 49.880013277000067 ], [ -119.989779797, 49.879743822000059 ], [ -119.989362810999978, 49.879732987000118 ], [ -119.989390118999935, 49.879294223000073 ], [ -119.989383909999944, 49.879193753000024 ], [ -119.988979370999942, 49.879183240000025 ], [ -119.988984534999972, 49.879100274000074 ], [ -119.988960520999925, 49.879100894000082 ], [ -119.988932180999882, 49.87864223200004 ], [ -119.988595941000014, 49.878633492000127 ], [ -119.988599866999948, 49.878570420000109 ], [ -119.988510239999982, 49.878572733000034 ], [ -119.98848046099999, 49.878090710000045 ], [ -119.988212519999976, 49.878083744000079 ], [ -119.988215206999925, 49.878040565000049 ], [ -119.988059967999931, 49.878044569000124 ], [ -119.988010037, 49.877236190000097 ], [ -119.988265695999971, 49.87722959500006 ], [ -119.98834679499997, 49.87592686500011 ], [ -119.98834378399999, 49.875878133000093 ], [ -119.988349837999962, 49.875877977000087 ], [ -119.988363491999962, 49.875658655000052 ], [ -119.988748468999987, 49.875668663000084 ], [ -119.988727451999964, 49.875328457000123 ], [ -119.989638371999931, 49.875304951000089 ], [ -119.989647871999978, 49.875152259000053 ], [ -119.991224809999949, 49.875193229000097 ], [ -119.991212517999941, 49.874994424000079 ], [ -119.991328352999943, 49.874991433000027 ], [ -119.991332412999952, 49.874926134000063 ], [ -119.991455193999968, 49.874929322000142 ], [ -119.99169942, 49.873073587000093 ], [ -119.991199083999973, 49.873046067000125 ], [ -119.991470790999983, 49.870981501000102 ], [ -119.990411895999898, 49.870923250000011 ], [ -119.99045142099996, 49.870622953000108 ], [ -119.987689626999938, 49.870470976000036 ], [ -119.987854058, 49.869222224000055 ], [ -119.988161513999898, 49.866887115000054 ], [ -119.988244238999982, 49.866891668000058 ], [ -119.988757515999978, 49.866919918000043 ], [ -119.988801102999957, 49.866588828000033 ], [ -119.989488836999939, 49.866626676000138 ], [ -119.989504477999958, 49.866507844000054 ], [ -119.995047336, 49.866812722000063 ], [ -119.994994890999948, 49.867211505000149 ], [ -119.99622252399999, 49.86727899100007 ], [ -119.996176314999929, 49.867630433000095 ], [ -119.996426540999934, 49.86764418700006 ], [ -119.996155076999955, 49.869708774000038 ], [ -119.997213951999953, 49.869766969000082 ], [ -119.997212976999947, 49.869774386000067 ], [ -119.998158521999926, 49.869826344000067 ], [ -119.998034229, 49.870771887000075 ], [ -119.999261548000021, 49.870839316000044 ], [ -119.99920373099998, 49.87127923200012 ], [ -120.001001997999978, 49.871232657000078 ], [ -120.001012294999953, 49.871398682000041 ], [ -120.001156010999949, 49.871402402000079 ], [ -120.001150042999882, 49.871498712000069 ], [ -120.001435625999989, 49.871491312000025 ], [ -120.001447320999944, 49.871679834000112 ], [ -120.001973150999945, 49.871693443000055 ], [ -120.001969809999963, 49.871747360000064 ], [ -120.002286178999981, 49.871739161000029 ], [ -120.002300615999928, 49.871971809000094 ], [ -120.002373376999913, 49.871973691000036 ], [ -120.002356683999963, 49.872243149000035 ], [ -120.002773609999977, 49.872253939000117 ], [ -120.002756916999886, 49.872523396000105 ], [ -120.003012427999963, 49.872530006000048 ], [ -120.003170189999935, 49.872525917000132 ], [ -120.003170697999906, 49.872534101000028 ], [ -120.003173846999971, 49.872534183000042 ], [ -120.003172276, 49.872559527000078 ], [ -120.00318691499993, 49.872795374000106 ], [ -120.003994160999937, 49.872774442000022 ], [ -120.004007701999981, 49.872555752000103 ], [ -120.004843770999969, 49.872577373000084 ], [ -120.004837889999962, 49.872482668000067 ], [ -120.005683967999957, 49.87246071800012 ], [ -120.005692092999979, 49.872329415000088 ], [ -120.006081781999939, 49.872339486000058 ], [ -120.005988220999924, 49.870833481 ], [ -120.006202586999947, 49.87082791800001 ], [ -120.006209051999974, 49.87072343800002 ], [ -120.008293623000014, 49.870777294000078 ], [ -120.008277136999979, 49.871043951000047 ], [ -120.008923337999974, 49.871027168000069 ], [ -120.008925597999962, 49.871063504000162 ], [ -120.00911079699992, 49.871068285000014 ], [ -120.009060829999953, 49.871876664000126 ], [ -120.008643904999929, 49.871865898000131 ], [ -120.008627245999932, 49.872135358000051 ], [ -120.008223010000037, 49.872124919000065 ], [ -120.008210279999986, 49.872125249000106 ], [ -120.008193658999929, 49.872394050000068 ], [ -120.008173114999977, 49.872393520000031 ], [ -120.008173276999941, 49.872396101000099 ], [ -120.007775298999917, 49.872406434000034 ], [ -120.007765835999948, 49.872559464000098 ], [ -120.00780526199999, 49.873193687000068 ], [ -120.008223062999932, 49.873204479000037 ], [ -120.010653055999953, 49.873141349000115 ], [ -120.0106619399999, 49.872997552000115 ], [ -120.011552905999949, 49.873020541000059 ], [ -120.011542188999968, 49.872848346000112 ], [ -120.012792961999963, 49.872815821000081 ], [ -120.012807723999941, 49.87305290700003 ], [ -120.013433671999934, 49.873069045000051 ], [ -120.013643594, 49.873063585000125 ], [ -120.013677946999934, 49.873615122000047 ], [ -120.013964164999948, 49.873622500000117 ], [ -120.013949181999919, 49.873865305000031 ], [ -120.014110875999933, 49.873861098000141 ], [ -120.014161235999936, 49.874669459000039 ], [ -120.01389913, 49.874676279000063 ], [ -120.01388244499995, 49.874946605 ], [ -120.014178022999943, 49.874938913000058 ], [ -120.014214110999916, 49.875518168000035 ], [ -120.01426470699991, 49.87551947200005 ], [ -120.014239570999948, 49.875926778000064 ], [ -120.014298326999935, 49.876869785000039 ], [ -120.014598526999947, 49.876877522000086 ], [ -120.014552209999962, 49.877628082000065 ], [ -120.014762874999974, 49.877622600000137 ], [ -120.01480086399998, 49.878232183000108 ], [ -120.01493236499999, 49.878235571000111 ], [ -120.01486704499996, 49.879294081000111 ], [ -120.014918798999958, 49.880124446000096 ], [ -120.015232964999925, 49.880132541000123 ], [ -120.015205362999922, 49.880579877000116 ], [ -120.015364593999919, 49.880575733000079 ], [ -120.01544858299998, 49.881922998000114 ], [ -120.015121956999963, 49.881931499000075 ], [ -120.015116571999926, 49.882018766000037 ], [ -120.015036746999968, 49.88201670800008 ], [ -120.015048377999975, 49.882203305000104 ], [ -120.01468692499995, 49.882212712000047 ], [ -120.014666294999927, 49.882546942000076 ], [ -120.014249276999948, 49.882536194000103 ], [ -120.014241555999959, 49.882661273000053 ], [ -120.014247953000023, 49.882763915000055 ], [ -120.014235200999948, 49.882764248000058 ], [ -120.014232642999943, 49.882805654 ], [ -120.013434452999945, 49.882785080000097 ], [ -120.013413933999985, 49.882785613000081 ], [ -120.013430721999981, 49.883055067000086 ], [ -120.012126721999962, 49.883088980000132 ], [ -120.012114253000021, 49.883290815000059 ], [ -120.011774104999958, 49.883282041000051 ], [ -120.011779449999935, 49.883367900000032 ], [ -120.011273300999974, 49.883381057000122 ], [ -120.011263554999971, 49.88353876000005 ], [ -120.010954209999966, 49.883530779000104 ], [ -120.010962193999916, 49.883659034000075 ], [ -120.010001504999963, 49.883683999000013 ], [ -120.009995821999951, 49.883775936000035 ], [ -120.009715939, 49.883768712000041 ], [ -120.009744673999933, 49.884230452000097 ], [ -120.01016169799999, 49.884219617000063 ], [ -120.010184778999985, 49.884590481 ], [ -120.010779915999976, 49.884605839000045 ], [ -120.010771404999986, 49.884743552000039 ], [ -120.011029293999982, 49.884736850000138 ], [ -120.011038354999926, 49.884882396000144 ], [ -120.011597334999962, 49.884896817000012 ], [ -120.011580685999931, 49.885166276000085 ], [ -120.011997726999965, 49.885177033000083 ], [ -120.011945129999958, 49.886028338000067 ], [ -120.011964034, 49.886331891000111 ], [ -120.011926313999979, 49.886332872000082 ], [ -120.011914483999973, 49.886524332000171 ], [ -120.011557728999946, 49.886515130000042 ], [ -120.011563773999953, 49.886612186999983 ], [ -120.011491221999947, 49.886614073000089 ], [ -120.011480780999975, 49.886783033000079 ], [ -120.011156169999964, 49.886774659000089 ], [ -120.011163505999917, 49.886892481000139 ], [ -120.011056126000014, 49.886895274000089 ], [ -120.011047073999961, 49.887041733000089 ], [ -120.01075460899996, 49.887034187000026 ], [ -120.010763236999949, 49.887172775000053 ], [ -120.010621023999931, 49.887176471000096 ], [ -120.010613361999972, 49.887300433000085 ], [ -120.010353040999988, 49.887293715000062 ], [ -120.010362960999913, 49.887453068000077 ], [ -120.010185917999976, 49.887457667000042 ], [ -120.010179643999919, 49.887559129000117 ], [ -120.009951470999965, 49.887553240000138 ], [ -120.009962681999966, 49.887733357000037 ], [ -120.009750805999929, 49.887738862000027 ], [ -120.00974592299994, 49.887817823000141 ], [ -120.009328860999943, 49.887807058000121 ], [ -120.009312197999975, 49.888076517000108 ], [ -120.008223789999974, 49.888048414000131 ], [ -120.007477110999972, 49.888067800000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "396", "sL_BldgLoss": "396", "sL_StrLoss": "396", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004877E7BBE1EC5DC0A3BFE14F9EFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.698585100999949, 49.961206520000097 ], [ -119.69884574699995, 49.959322295000106 ], [ -119.697821302999969, 49.959263303000071 ], [ -119.698316842999986, 49.955681154000068 ], [ -119.69850679699999, 49.955692094000092 ], [ -119.698690498999937, 49.954363960000073 ], [ -119.704242030000017, 49.954683519000078 ], [ -119.703798074999938, 49.957895907000108 ], [ -119.704632531999962, 49.957943916000076 ], [ -119.70413746299991, 49.961526082000049 ], [ -119.698585100999949, 49.961206520000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "611", "sL_BldgLoss": "611", "sL_StrLoss": "611", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B630AB56AF05DC037DEA151CFE84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.752897683999947, 49.817125786000119 ], [ -119.753119144999985, 49.815505443000085 ], [ -119.758654228999916, 49.815822308000044 ], [ -119.758561015999959, 49.816504936000058 ], [ -119.762201961999935, 49.816713213000057 ], [ -119.761864904999982, 49.819182829000106 ], [ -119.761712919999979, 49.820296331000073 ], [ -119.761173251999963, 49.820265468000073 ], [ -119.761169296999967, 49.820294444000055 ], [ -119.75718371, 49.820066426000039 ], [ -119.75681494799997, 49.822765938000025 ], [ -119.752537907999979, 49.822521083000034 ], [ -119.753093401999976, 49.822005688000019 ], [ -119.75302149499997, 49.821710890000091 ], [ -119.752405205999978, 49.821149808000051 ], [ -119.751911793999938, 49.820296693000039 ], [ -119.751746783999977, 49.81981530300007 ], [ -119.751757570999956, 49.819423851000082 ], [ -119.751766588999942, 49.819097823000099 ], [ -119.751772986999953, 49.818866154000055 ], [ -119.752652913999952, 49.818916553000037 ], [ -119.752834094, 49.817591042000089 ], [ -119.752812607999957, 49.817212599000108 ], [ -119.75288605799993, 49.817210854000066 ], [ -119.752897683999947, 49.817125786000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "0.999993306753336", "sL_AssetLoss": "359.018593", "sL_BldgLoss": "359.01619", "sL_StrLoss": "359", "sL_NStrLoss": "0.01619", "sL_ContLoss": "0.002403", "geom_point": "0101000020E6100000A2288E0BA0FD5DC042120F8BC5E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.959646603999943, 49.782472508000083 ], [ -119.959572694999906, 49.782169193000122 ], [ -119.95965088299999, 49.782103703000089 ], [ -119.960130994999986, 49.782236088000019 ], [ -119.960333711999922, 49.781888604000095 ], [ -119.960195213999953, 49.781451397000062 ], [ -119.960900696999971, 49.780930114000114 ], [ -119.96144628699993, 49.780322008000056 ], [ -119.961516384999939, 49.780095494000086 ], [ -119.961666111999961, 49.779812108000037 ], [ -119.961792592, 49.779413292000058 ], [ -119.961618592, 49.779292299000097 ], [ -119.961477606999964, 49.778773896000125 ], [ -119.961609704999915, 49.77867128900003 ], [ -119.961892705999958, 49.778762496000112 ], [ -119.96236859699998, 49.778355093000052 ], [ -119.962380699999969, 49.778094496000108 ], [ -119.962031390999968, 49.77785100600007 ], [ -119.961580788, 49.777745606000046 ], [ -119.961226785999926, 49.777853803000013 ], [ -119.960523817999942, 49.778420699000051 ], [ -119.959771261999933, 49.778850337000044 ], [ -119.959925042999927, 49.777685420000125 ], [ -119.960050928, 49.777692395000059 ], [ -119.960115261999931, 49.777205023000064 ], [ -119.960257700999975, 49.777212915000106 ], [ -119.960334784999944, 49.776628925000104 ], [ -119.960440718999934, 49.776634796000145 ], [ -119.960513505999955, 49.77608332800007 ], [ -119.966045242999925, 49.776389713000086 ], [ -119.965892738999926, 49.777546173000076 ], [ -119.965572557999963, 49.7799739290001 ], [ -119.965466616999947, 49.779968064000073 ], [ -119.965393882999962, 49.780519532000021 ], [ -119.965251432999963, 49.780511645000061 ], [ -119.965174404999914, 49.781095635000078 ], [ -119.965048509999988, 49.781088665000063 ], [ -119.964984221999927, 49.781576039000079 ], [ -119.963554259999967, 49.781496861000029 ], [ -119.963305450999883, 49.783382573 ], [ -119.960357291999983, 49.783219272000046 ], [ -119.959310810999909, 49.783161287000077 ], [ -119.959515283999934, 49.78307069400006 ], [ -119.959646603999943, 49.782472508000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "335.8", "sL_BldgLoss": "335.8", "sL_StrLoss": "335.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BDED1D673E35DC0DF11FC0C7BFB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.55244409699999, 49.965857258000035 ], [ -119.552571552999964, 49.964956983000015 ], [ -119.550964359999981, 49.964862282000098 ], [ -119.549670151, 49.96478600500005 ], [ -119.549889813999954, 49.963235049000033 ], [ -119.550177369999957, 49.961204560000148 ], [ -119.55572868099999, 49.961531631000078 ], [ -119.55531879599999, 49.964428338000047 ], [ -119.55822019499999, 49.964599168000042 ], [ -119.557713570999951, 49.968180633000017 ], [ -119.554719515999963, 49.968004348000086 ], [ -119.552161436999938, 49.967853666000067 ], [ -119.55244409699999, 49.965857258000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "167", "sL_BldgLoss": "167", "sL_StrLoss": "167", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B18D1588E0E35DC04F7DBD4E2CFD4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.559592008999928, 49.976050963 ], [ -119.563609178999954, 49.976287246000084 ], [ -119.563294660999986, 49.978511989000069 ], [ -119.563102846999968, 49.979868680000038 ], [ -119.55754925299999, 49.979541990000023 ], [ -119.558056017999917, 49.97596058000007 ], [ -119.559592008999928, 49.976050963 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "65.8", "sL_BldgLoss": "65.8", "sL_StrLoss": "65.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004ADE8CDC0BF05DC01498A9A429E34840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.748499385999978, 49.773806685000061 ], [ -119.754361567999936, 49.773782617000037 ], [ -119.75420640499999, 49.774919227000112 ], [ -119.750455768, 49.774704188000079 ], [ -119.750400153999976, 49.77511131500011 ], [ -119.749719623999965, 49.775072284000075 ], [ -119.749707826999909, 49.775158630000057 ], [ -119.749149674999956, 49.775126615000055 ], [ -119.748868502000036, 49.777184444000071 ], [ -119.74812703399995, 49.777141910000125 ], [ -119.748499385999978, 49.773806685000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999994000279416", "sL_AssetLoss": "245.01141", "sL_BldgLoss": "245.00994", "sL_StrLoss": "245", "sL_NStrLoss": "0.00994", "sL_ContLoss": "0.00147", "geom_point": "0101000020E61000000AD40737BEFB5DC085306DEE1EEF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.932444926999935, 49.870019677000109 ], [ -119.932430747999959, 49.86978568000012 ], [ -119.930386526999911, 49.869672103000021 ], [ -119.930417940999916, 49.869435801000051 ], [ -119.930444230999939, 49.86923803800002 ], [ -119.930862892999983, 49.866088486000066 ], [ -119.936405306999958, 49.866396332000114 ], [ -119.936083412999906, 49.868820154 ], [ -119.936074198999989, 49.868889538000083 ], [ -119.93656949199999, 49.868902639000119 ], [ -119.937004922999932, 49.86891415400008 ], [ -119.936987867999932, 49.869183570000061 ], [ -119.936953755999966, 49.869722479000096 ], [ -119.936264704999957, 49.869704256000048 ], [ -119.935967037999916, 49.869696382000043 ], [ -119.935949248999961, 49.869830319000059 ], [ -119.935929371999976, 49.869979972000088 ], [ -119.93410666299998, 49.869878764000134 ], [ -119.934112646999978, 49.869977446000092 ], [ -119.932444926999935, 49.870019677000109 ] ], [ [ -119.934563695999913, 49.867406688000095 ], [ -119.934461096999925, 49.867301288000093 ], [ -119.934236597, 49.867271410000114 ], [ -119.933076624999927, 49.867435205000085 ], [ -119.932885313999961, 49.867476508000067 ], [ -119.932942509999961, 49.867744208000026 ], [ -119.933056200999928, 49.868020485000102 ], [ -119.934257206999945, 49.86783678700003 ], [ -119.934579705999923, 49.867658806000158 ], [ -119.934563695999913, 49.867406688000095 ] ], [ [ -119.935678197999962, 49.867405313000106 ], [ -119.935821411999896, 49.867473601 ], [ -119.935999891, 49.867442310000044 ], [ -119.93622471499999, 49.867247199000062 ], [ -119.935775715999966, 49.867187394000041 ], [ -119.935628608999977, 49.867271385000038 ], [ -119.935678197999962, 49.867405313000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "301.1", "sL_BldgLoss": "301.1", "sL_StrLoss": "301.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005376D933F4E05DC01FB40521ACF84840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.511519240999959, 49.94445499600009 ], [ -119.51152467199995, 49.94441686800009 ], [ -119.510820220999904, 49.944375076000014 ], [ -119.511330257999973, 49.940793712000072 ], [ -119.513412779999925, 49.940917246000048 ], [ -119.51343537, 49.940758561000088 ], [ -119.518983932999916, 49.941087499000069 ], [ -119.518474492999957, 49.944668897000049 ], [ -119.517096244999891, 49.944587217000084 ], [ -119.517068239999958, 49.944784030000079 ], [ -119.511519240999959, 49.94445499600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "231", "sL_BldgLoss": "231", "sL_StrLoss": "231", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065DA0607DEF35DC09BBDBF8397F54840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.806704585999967, 49.920032589000101 ], [ -119.806748440999954, 49.919709700000077 ], [ -119.806442698999916, 49.919692382000079 ], [ -119.806573535, 49.918729094000128 ], [ -119.806600408999941, 49.918733789000051 ], [ -119.807171112999981, 49.918719503000048 ], [ -119.808052312999948, 49.918554305000022 ], [ -119.808608409999977, 49.91828939800007 ], [ -119.809252990999951, 49.917625707000063 ], [ -119.809604799999974, 49.917454790000107 ], [ -119.810165689999963, 49.917271094000114 ], [ -119.811555700999975, 49.916984803000027 ], [ -119.811958305999923, 49.916472091000074 ], [ -119.812253773999942, 49.916266179000083 ], [ -119.813290197999947, 49.916324830000065 ], [ -119.812804095999979, 49.919907685000105 ], [ -119.812316016999944, 49.919880066000104 ], [ -119.812252695999945, 49.920346697000141 ], [ -119.806704585999967, 49.920032589000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "273.3", "sL_BldgLoss": "273.3", "sL_StrLoss": "273.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002C42565C81ED5DC08D53D74ED2F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.709224206999977, 49.879125202000068 ], [ -119.714766681999947, 49.879444262000035 ], [ -119.714273256999945, 49.883026857000146 ], [ -119.713646223999902, 49.882990775000039 ], [ -119.713597844999981, 49.883341971000064 ], [ -119.713064265999932, 49.883311265000039 ], [ -119.71305642499999, 49.883368184000112 ], [ -119.712972083999958, 49.883363329000083 ], [ -119.712913839999885, 49.883786086000022 ], [ -119.707370851999883, 49.883466935000065 ], [ -119.707864823999955, 49.879884373000053 ], [ -119.707949156999959, 49.879889231000071 ], [ -119.70800744099995, 49.879466475000065 ], [ -119.708305055999944, 49.879483618000101 ], [ -119.708350842999963, 49.879151481000079 ], [ -119.709213733999917, 49.879201181000091 ], [ -119.709224206999977, 49.879125202000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "194.5", "sL_BldgLoss": "194.5", "sL_StrLoss": "194.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D3C884EB13E35DC0C73DA76A4CF94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.545569723999975, 49.945690113000062 ], [ -119.551119116999928, 49.946017424000075 ], [ -119.550612140999959, 49.949598946000052 ], [ -119.545062316, 49.9492716110001 ], [ -119.545569723999975, 49.945690113000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8086167", "BldgCostT": "5576667", "sL_LossRatio": "0.999984380011862", "sL_AssetLoss": "1021.127536", "sL_BldgLoss": "1021.111586", "sL_StrLoss": "1021.000886", "sL_NStrLoss": "0.1107", "sL_ContLoss": "0.01595", "geom_point": "0101000020E6100000DFEEF66A51FC5DC0F20E4B5EF8EE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.94975240899997, 49.873088797000023 ], [ -119.949748759, 49.873028935000029 ], [ -119.949690254999965, 49.873027394000061 ], [ -119.949703320999944, 49.872820158000152 ], [ -119.948902083999954, 49.872840557000103 ], [ -119.948895745999891, 49.872736577000119 ], [ -119.948456515999936, 49.872725007000049 ], [ -119.948467161999957, 49.872556217000074 ], [ -119.948461008999914, 49.872455233000018 ], [ -119.948056603999973, 49.872444578000085 ], [ -119.948064328999962, 49.872322105000137 ], [ -119.947258564000023, 49.872342608000068 ], [ -119.94720146099999, 49.872344061000021 ], [ -119.947199841999932, 49.872317489000082 ], [ -119.947189753999979, 49.872151844 ], [ -119.946822890999925, 49.872142175000128 ], [ -119.946843636999972, 49.871813389000096 ], [ -119.946751692999982, 49.871815727000062 ], [ -119.946738567999944, 49.871600167000089 ], [ -119.946439997999931, 49.871592297000063 ], [ -119.946442431999955, 49.871553706000014 ], [ -119.946318346999931, 49.871556862000084 ], [ -119.946303850999982, 49.871318815000066 ], [ -119.946040105999913, 49.871311862000098 ], [ -119.946041231999928, 49.871294021000033 ], [ -119.94588500199994, 49.871297995000106 ], [ -119.945869140999918, 49.871037463000036 ], [ -119.945696315999982, 49.87103290500005 ], [ -119.945451662000011, 49.871039126000063 ], [ -119.945435258999908, 49.870769655000117 ], [ -119.945018327999904, 49.870780256000032 ], [ -119.94501618699995, 49.870745077000052 ], [ -119.944823446999976, 49.870739994000125 ], [ -119.944837655999947, 49.870514961000069 ], [ -119.944168067999939, 49.87053198100007 ], [ -119.944151673999968, 49.870262510000074 ], [ -119.943734744999944, 49.870273106000113 ], [ -119.943728552999971, 49.870171325000079 ], [ -119.943606818999953, 49.870168113000013 ], [ -119.943617043999936, 49.870006210000028 ], [ -119.943301425999948, 49.870014229000077 ], [ -119.943293866999952, 49.869889963000084 ], [ -119.942790072999941, 49.869876668000046 ], [ -119.942797623999923, 49.869757141000051 ], [ -119.942451186999946, 49.869765940000029 ], [ -119.942440948999959, 49.869597559000063 ], [ -119.941973338999944, 49.869585215000086 ], [ -119.94199036599997, 49.869315771000046 ], [ -119.941573490999971, 49.869304766000084 ], [ -119.94158089499993, 49.869187606000061 ], [ -119.94157160799989, 49.869034823000042 ], [ -119.940756771999986, 49.869013305000081 ], [ -119.940757658999942, 49.868999282000097 ], [ -119.940734359999965, 49.868999875000078 ], [ -119.940718714999946, 49.868742408000081 ], [ -119.940486583000038, 49.868736277000068 ], [ -119.940301068999986, 49.868740986000027 ], [ -119.94030048399992, 49.868731361000087 ], [ -119.939940064999945, 49.868721839000045 ], [ -119.939972460999968, 49.868209551000128 ], [ -119.939851411999882, 49.868212623000083 ], [ -119.939849409999937, 49.868179659000099 ], [ -119.939557275999931, 49.868171940000131 ], [ -119.939571322999939, 49.867949843000126 ], [ -119.939001221999931, 49.867964308000118 ], [ -119.938984856999951, 49.867694836000069 ], [ -119.938567948999946, 49.867705413000053 ], [ -119.938561903, 49.86760585100005 ], [ -119.938340774999986, 49.867600008000082 ], [ -119.938350833999948, 49.867441032000094 ], [ -119.938134681999955, 49.867446515000061 ], [ -119.93812727199996, 49.867324471000117 ], [ -119.937940962999946, 49.867319546000068 ], [ -119.937949709999984, 49.867181319000082 ], [ -119.937701416999971, 49.867187616000109 ], [ -119.937692643999966, 49.867043087000077 ], [ -119.937541157999945, 49.86703908300008 ], [ -119.937548593000017, 49.866921604000083 ], [ -119.937268157999966, 49.866928715000071 ], [ -119.937258021999966, 49.866761704000055 ], [ -119.93714135499999, 49.866758618000034 ], [ -119.93716458699997, 49.86639156600009 ], [ -119.936818550999988, 49.866400340000062 ], [ -119.936807000999977, 49.866209991000126 ], [ -119.936341765999941, 49.866197687000074 ], [ -119.936358822999949, 49.865928245000092 ], [ -119.935941978999921, 49.865917219000075 ], [ -119.935948202999924, 49.865818914000137 ], [ -119.935921389999976, 49.865376888000078 ], [ -119.935559256999952, 49.865367308000017 ], [ -119.935560182999922, 49.86535268600008 ], [ -119.93550247899995, 49.865354148000058 ], [ -119.935486791999949, 49.865095498000109 ], [ -119.935277517, 49.865089961000074 ], [ -119.93506924899999, 49.865095238000023 ], [ -119.9350529069999, 49.864825765000035 ], [ -119.934636022999939, 49.864836327000084 ], [ -119.934619684, 49.864566854000053 ], [ -119.934202800999969, 49.864577414000053 ], [ -119.934104787999942, 49.862960571000045 ], [ -119.934459657999966, 49.86295158100009 ], [ -119.934491384999959, 49.862450670000108 ], [ -119.93443997299994, 49.861602642000037 ], [ -119.934545263999965, 49.861599975000061 ], [ -119.93456473, 49.861292596000062 ], [ -119.934839112999967, 49.861299857000105 ], [ -119.93480781699999, 49.86078365900012 ], [ -119.935014792999965, 49.86077841600008 ], [ -119.935032719999938, 49.860495301000078 ], [ -119.935208103999969, 49.860499942000068 ], [ -119.935175648999916, 49.859964677000093 ], [ -119.936159833999952, 49.859939733000083 ], [ -119.94360271699999, 49.865207696000049 ], [ -119.953098578, 49.871955620000058 ], [ -119.953093428999921, 49.872037393000042 ], [ -119.953218296999964, 49.872040677000058 ], [ -119.953498291999935, 49.872239600000086 ], [ -119.953478316999963, 49.872556829000068 ], [ -119.953504951999946, 49.872993182000172 ], [ -119.9518371569999, 49.873035692000052 ], [ -119.951823612999931, 49.872813660000162 ], [ -119.951405344999984, 49.872802653000093 ], [ -119.951420207999973, 49.873046316000071 ], [ -119.951359378999939, 49.873047865000082 ], [ -119.951357902999945, 49.873071297000074 ], [ -119.950906270999937, 49.873059409000099 ], [ -119.94975240899997, 49.873088797000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7634250", "BldgCostT": "5265000", "sL_LossRatio": "1", "sL_AssetLoss": "682", "sL_BldgLoss": "682", "sL_StrLoss": "682", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006563D29D6FE05DC0C79CEB24F0F74840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.499486178999987, 49.940804696000029 ], [ -119.498979501999926, 49.940716401000088 ], [ -119.498705392999909, 49.940821812000074 ], [ -119.49849109899999, 49.941230609000115 ], [ -119.498156506999962, 49.941220593000068 ], [ -119.497250186999963, 49.940672313000057 ], [ -119.497007502999963, 49.940300610000058 ], [ -119.496923078999927, 49.939743694000036 ], [ -119.497040390999985, 49.939588502000063 ], [ -119.498267508999959, 49.939085697000081 ], [ -119.498189703999969, 49.938394997000032 ], [ -119.497992131999965, 49.938134946000112 ], [ -119.498462909999915, 49.938162935000072 ], [ -119.498502181000021, 49.938235493000043 ], [ -119.498491508999948, 49.938541710000088 ], [ -119.498620692000017, 49.938628491 ], [ -119.498966690999936, 49.938567305000014 ], [ -119.499669403999945, 49.937895099000059 ], [ -119.499768284999959, 49.93763160600011 ], [ -119.499782721999935, 49.936839703000118 ], [ -119.499861785999926, 49.936708803000023 ], [ -119.500014205999918, 49.936456585000073 ], [ -119.500387007, 49.936116197000061 ], [ -119.500971803999974, 49.935861310000043 ], [ -119.50152670199999, 49.935835953 ], [ -119.501750881, 49.935825703000027 ], [ -119.50220938199999, 49.935510900000111 ], [ -119.502559590999979, 49.935468894000138 ], [ -119.5030398009999, 49.935411307000059 ], [ -119.503488123999901, 49.935176304000038 ], [ -119.505248494999961, 49.935022407000083 ], [ -119.505794709999989, 49.934776107000083 ], [ -119.505964611, 49.934418567000087 ], [ -119.506196082999978, 49.933931491000074 ], [ -119.506450468999944, 49.933619687000096 ], [ -119.506943206999964, 49.933015684000054 ], [ -119.507188916999937, 49.932844410000023 ], [ -119.508923653999915, 49.932947400000039 ], [ -119.508961706999941, 49.932680237000106 ], [ -119.510188969999945, 49.932753083000108 ], [ -119.514509256999958, 49.933009405000043 ], [ -119.514182749999975, 49.9353036770001 ], [ -119.51467220699999, 49.935332706000104 ], [ -119.514487559999935, 49.936630157000089 ], [ -119.514162490999979, 49.938914111000081 ], [ -119.509259745999913, 49.938623242000062 ], [ -119.509268376999955, 49.938789315000051 ], [ -119.509148213999964, 49.938791916000127 ], [ -119.50901801599997, 49.939705928000095 ], [ -119.508751355999962, 49.939690101000082 ], [ -119.508701219999963, 49.940042035000076 ], [ -119.506713853999955, 49.939924059000106 ], [ -119.506131059999987, 49.939936660000079 ], [ -119.505982969999977, 49.939939862000074 ], [ -119.50599278699994, 49.940128999000081 ], [ -119.505996960999951, 49.940209427000099 ], [ -119.505933986999977, 49.940210789000076 ], [ -119.505579275999978, 49.940218456000153 ], [ -119.505602785999898, 49.940671479000116 ], [ -119.505607254999987, 49.9407575890001 ], [ -119.505539832999929, 49.940759045000085 ], [ -119.504685907999914, 49.940777500000081 ], [ -119.504354187999951, 49.940784667000067 ], [ -119.504340206, 49.940515100000049 ], [ -119.503922518999971, 49.940524124000113 ], [ -119.503908537999962, 49.940254557000102 ], [ -119.503490854999924, 49.940263579000018 ], [ -119.50348741899991, 49.940197299000083 ], [ -119.500970761999895, 49.940047777000117 ], [ -119.500998704999944, 49.940587243000017 ], [ -119.500810077, 49.940591312000087 ], [ -119.500622976000017, 49.941903015000065 ], [ -119.499716808999949, 49.941849162000054 ], [ -119.499634704999949, 49.941781692000063 ], [ -119.499828598999926, 49.941229204000123 ], [ -119.499791910999974, 49.941058198000114 ], [ -119.499486178999987, 49.940804696000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "239.7", "sL_BldgLoss": "239.7", "sL_StrLoss": "239.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088E0B01BD3DF5DC035B01BD73B044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.494050193999897, 50.03274740500008 ], [ -119.492824996999971, 50.032036691000016 ], [ -119.492801981999975, 50.031857294000126 ], [ -119.493146198999966, 50.031462788000077 ], [ -119.493173487000021, 50.031192205000139 ], [ -119.492811404999941, 50.030609917000071 ], [ -119.497840154999935, 50.03090838100006 ], [ -119.497803809999937, 50.031162537000078 ], [ -119.498181958999965, 50.031184971000108 ], [ -119.49910703099998, 50.031239847000094 ], [ -119.499056205999921, 50.031595331000069 ], [ -119.499781133999974, 50.031638329000025 ], [ -119.499652701999963, 50.032536700000072 ], [ -119.500357775999959, 50.032578515000061 ], [ -119.500300322999919, 50.032980420000037 ], [ -119.50030870399999, 50.032980917000089 ], [ -119.49989034099994, 50.035907323000053 ], [ -119.49979677, 50.036561784000085 ], [ -119.498040971999941, 50.036457647000091 ], [ -119.497749797999973, 50.035951894000029 ], [ -119.497273004999968, 50.035395008000087 ], [ -119.496883403999973, 50.035124398000093 ], [ -119.496831012999962, 50.034963493000042 ], [ -119.496763308999945, 50.034174492000012 ], [ -119.496614011999966, 50.033735792000066 ], [ -119.496320606999987, 50.03346378700008 ], [ -119.495255516999933, 50.033117706000056 ], [ -119.494050193999897, 50.03274740500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16127084", "BldgCostT": "10858334", "sL_LossRatio": "1", "sL_AssetLoss": "1929.9", "sL_BldgLoss": "1929.9", "sL_StrLoss": "1929.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B1A89AFBADF5DC0DC1E7354A4FE4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.493395584999973, 49.998822706000027 ], [ -119.494065995999918, 49.998006711000052 ], [ -119.494043878999904, 49.997854298000071 ], [ -119.493566707999918, 49.997271807000082 ], [ -119.493606008999961, 49.99694709199999 ], [ -119.494179273999961, 49.996169493000082 ], [ -119.494576398999968, 49.995216698000057 ], [ -119.494470679999907, 49.994256703000076 ], [ -119.494185698999942, 49.993597286000082 ], [ -119.494196795999983, 49.993020487000088 ], [ -119.494416184000031, 49.992107602000019 ], [ -119.494316288, 49.991821307000059 ], [ -119.49355031099995, 49.991028097000076 ], [ -119.493007115999944, 49.989942795000033 ], [ -119.492372378999946, 49.989569701000036 ], [ -119.491777984999928, 49.989411600000061 ], [ -119.491718706999976, 49.989071190000104 ], [ -119.491468986999934, 49.98883340400009 ], [ -119.490826888999976, 49.988549906000081 ], [ -119.489837388999916, 49.988283612000068 ], [ -119.488521510999945, 49.988195309000069 ], [ -119.488415403999952, 49.988035795 ], [ -119.488657211999922, 49.987327998000133 ], [ -119.488344796999939, 49.986939094000036 ], [ -119.488950385999942, 49.986513299000094 ], [ -119.489247092000014, 49.985516388000107 ], [ -119.489391004999945, 49.985325506000017 ], [ -119.491237887999958, 49.984070799000037 ], [ -119.4917807, 49.983221999000108 ], [ -119.492344986999967, 49.982823209000109 ], [ -119.493391801999962, 49.982297703000029 ], [ -119.493813814999953, 49.981829105000067 ], [ -119.493919393999988, 49.981179703000059 ], [ -119.494490411999934, 49.980862008000038 ], [ -119.494829703999955, 49.980674110000038 ], [ -119.495079424999943, 49.980399205000012 ], [ -119.495587698999913, 49.979425005000095 ], [ -119.495946395999951, 49.978544888000073 ], [ -119.495831599, 49.977953792000058 ], [ -119.495770217999961, 49.977019504000026 ], [ -119.495670154, 49.976899301000046 ], [ -119.49812048, 49.977044878000129 ], [ -119.499298123999921, 49.97711482400009 ], [ -119.49927014299999, 49.977310789000121 ], [ -119.499380134999981, 49.977317321000015 ], [ -119.499287709000015, 49.977964611000083 ], [ -119.500198551999958, 49.978018700000035 ], [ -119.499887170999941, 49.980199569000106 ], [ -119.502842815999941, 49.98037503200004 ], [ -119.502331670999951, 49.983956165000045 ], [ -119.496778017999958, 49.983626403000123 ], [ -119.496780548999936, 49.983608685000085 ], [ -119.49666958899995, 49.983602093000066 ], [ -119.496617026, 49.983969996000049 ], [ -119.496435008999953, 49.983959183000103 ], [ -119.496400330999933, 49.984201899000055 ], [ -119.495428597999961, 49.984144169000054 ], [ -119.495123589999963, 49.986278524000085 ], [ -119.495005121999938, 49.986271485000024 ], [ -119.494961898999989, 49.986573927000094 ], [ -119.494423603999934, 49.98654194200008 ], [ -119.493089347999927, 49.986462651000068 ], [ -119.493070226999947, 49.986596407000022 ], [ -119.493386566999973, 49.986615208000075 ], [ -119.493355534000017, 49.986832295000099 ], [ -119.494282551999959, 49.986887384000042 ], [ -119.49425719599999, 49.987064779000015 ], [ -119.494570510999949, 49.987083396000116 ], [ -119.494666052999946, 49.98708907200011 ], [ -119.494648803999922, 49.98720975300003 ], [ -119.494646377999942, 49.987226725000042 ], [ -119.494667060999959, 49.987227955000087 ], [ -119.494992050999912, 49.987247264000068 ], [ -119.494953932999977, 49.987513977000042 ], [ -119.494951831999927, 49.987528674000067 ], [ -119.49496974299997, 49.987529738000042 ], [ -119.495412657, 49.987556054000052 ], [ -119.495360717, 49.987919501000079 ], [ -119.495351838999952, 49.98798162100006 ], [ -119.495422180999981, 49.987985801000022 ], [ -119.495865571999943, 49.988012142000059 ], [ -119.495842548, 49.988173253000106 ], [ -119.496269768999952, 49.988198631000124 ], [ -119.496265352999927, 49.988229531000066 ], [ -119.497811922999944, 49.988321388000024 ], [ -119.497671469999929, 49.989304525000087 ], [ -119.497847687, 49.989314990000032 ], [ -119.497792103999984, 49.989704057000061 ], [ -119.498354897999917, 49.989737477000034 ], [ -119.497843296, 49.993318543000107 ], [ -119.497709451, 49.99331059500004 ], [ -119.497592195999914, 49.994131249000063 ], [ -119.497630214999958, 49.994133506000068 ], [ -119.497582589, 49.994466823000067 ], [ -119.497614337999934, 49.994468708000092 ], [ -119.497549877000012, 49.994919851000084 ], [ -119.497895958999948, 49.994940401000058 ], [ -119.49765872899998, 49.996600687000097 ], [ -119.499021134999907, 49.996681574000036 ], [ -119.498758890999952, 49.998517176000057 ], [ -119.499351747999953, 49.998552369000052 ], [ -119.498840125999948, 50.002133397000087 ], [ -119.495537197999965, 50.001937289000104 ], [ -119.49530905099999, 50.003533173000108 ], [ -119.495009163999967, 50.003515363000119 ], [ -119.494130637999945, 50.00346318200004 ], [ -119.493213940999937, 50.003408727000128 ], [ -119.493406099999902, 50.003085409000093 ], [ -119.493549998999967, 50.002632492000032 ], [ -119.493538504999947, 50.002381911000086 ], [ -119.493419395999922, 50.00223939500011 ], [ -119.492472788999947, 50.001748093000089 ], [ -119.491844485999962, 50.001229695000113 ], [ -119.491528876999922, 50.000778199000081 ], [ -119.49223020099997, 49.999764205000133 ], [ -119.493258393999923, 49.999130391000044 ], [ -119.493395584999973, 49.998822706000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "425672856", "BldgCostT": "267947492", "sL_LossRatio": "0.981989558243672", "sL_AssetLoss": "32442.125957", "sL_BldgLoss": "31857.828937", "sL_StrLoss": "31637.522017", "sL_NStrLoss": "220.30692", "sL_ContLoss": "584.29702", "geom_point": "0101000020E610000088EE1094D5E65DC0BAF725F28FEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.608882445999939, 49.839284264000128 ], [ -119.608544696999942, 49.839254553000067 ], [ -119.607564209999936, 49.839226247000049 ], [ -119.604719594999949, 49.839144071000092 ], [ -119.601949393999945, 49.839063981000095 ], [ -119.601928698999942, 49.837600301000066 ], [ -119.601903461999953, 49.835814097000139 ], [ -119.601986662999934, 49.83581222800008 ], [ -119.602001135999927, 49.836081779000054 ], [ -119.60283464599992, 49.836063054000114 ], [ -119.602964957999944, 49.838489008000145 ], [ -119.602548181999921, 49.838498372000068 ], [ -119.602577137999972, 49.839037474000065 ], [ -119.603410697999934, 49.839018743000096 ], [ -119.603367249, 49.838210092000118 ], [ -119.603784023999978, 49.838200725000121 ], [ -119.603769537999966, 49.837931175000065 ], [ -119.604186308999942, 49.837921806000054 ], [ -119.604113877999978, 49.836574055 ], [ -119.603697119999936, 49.836583422000075 ], [ -119.603595742999971, 49.834696570000077 ], [ -119.603179000999958, 49.834705936000077 ], [ -119.603121084999884, 49.833627734000075 ], [ -119.602704351999975, 49.833637098000032 ], [ -119.602762257, 49.834715301000131 ], [ -119.602345513999921, 49.834724663000095 ], [ -119.602359989999968, 49.834994214000091 ], [ -119.601943244999944, 49.835003576000062 ], [ -119.60197218899998, 49.835542678000074 ], [ -119.60189965099994, 49.835544307000077 ], [ -119.601898614999953, 49.835470946000044 ], [ -119.601903725999932, 49.835229235000014 ], [ -119.601676581999953, 49.834696730000111 ], [ -119.60024660499991, 49.833532605000094 ], [ -119.599129261999948, 49.832229499000064 ], [ -119.598610572999917, 49.832045413000117 ], [ -119.598370278999965, 49.83196013700006 ], [ -119.598000863999943, 49.831608881000108 ], [ -119.597666278999966, 49.831417699000106 ], [ -119.597440213999974, 49.831178689000104 ], [ -119.597207804999954, 49.831025083000071 ], [ -119.596399625999979, 49.830738364000084 ], [ -119.595920841999941, 49.830570335000047 ], [ -119.595883344999933, 49.830628171000107 ], [ -119.595805166999924, 49.83074863800006 ], [ -119.595796024999984, 49.830755713000073 ], [ -119.595531196999943, 49.830960993000076 ], [ -119.595148169999931, 49.831214822000057 ], [ -119.594649768999929, 49.831376057000057 ], [ -119.594087402999932, 49.83150559400007 ], [ -119.593788998999941, 49.831504310000113 ], [ -119.593201662999931, 49.831503236000017 ], [ -119.591812063999939, 49.831492064000031 ], [ -119.591348500999956, 49.83142844500005 ], [ -119.590913269999973, 49.831368712000078 ], [ -119.589419046999978, 49.831163665000098 ], [ -119.589017188999961, 49.831109677 ], [ -119.588761681000022, 49.831075359000074 ], [ -119.588895109999939, 49.830681374000051 ], [ -119.59261511599999, 49.831065541000051 ], [ -119.592611256999973, 49.830349609000081 ], [ -119.592590885, 49.830025260000127 ], [ -119.59259030599992, 49.830012556000064 ], [ -119.59242500799995, 49.827810010000107 ], [ -119.593190961999966, 49.827798698000038 ], [ -119.593299120999959, 49.827797376000063 ], [ -119.593401343999943, 49.82779611000003 ], [ -119.593826920999973, 49.827790905000072 ], [ -119.594749679999964, 49.827780399000098 ], [ -119.595653255999977, 49.827770093000062 ], [ -119.596084148999978, 49.827765181000068 ], [ -119.596570169999922, 49.827759628000095 ], [ -119.597473790999985, 49.827749492000052 ], [ -119.597975210999905, 49.827743838000053 ], [ -119.598829818999945, 49.827734219000035 ], [ -119.598966707999949, 49.827733244000086 ], [ -119.59901552299999, 49.827763192000099 ], [ -119.599403056999961, 49.827924985000081 ], [ -119.599866814999984, 49.827731878000108 ], [ -119.60004425799994, 49.827660116000061 ], [ -119.600075583999967, 49.827648145000069 ], [ -119.600604498999985, 49.827445570000059 ], [ -119.601731976999957, 49.826896805000089 ], [ -119.601864522, 49.826797124000095 ], [ -119.602142754999974, 49.826673483000114 ], [ -119.602579835999933, 49.826541103000054 ], [ -119.602931169, 49.82650302600009 ], [ -119.604042865999972, 49.826505006000097 ], [ -119.604550172999922, 49.82639929000009 ], [ -119.605013302999964, 49.826195647000063 ], [ -119.605129983999973, 49.826144352000064 ], [ -119.605920696999974, 49.82579793300004 ], [ -119.606702414000011, 49.825645092000123 ], [ -119.608322754999932, 49.825331922000068 ], [ -119.608665194999944, 49.825282172000058 ], [ -119.60904903499997, 49.825226390000147 ], [ -119.608993689, 49.825589835000088 ], [ -119.608892390999955, 49.826030648000078 ], [ -119.608878679000014, 49.82727434800006 ], [ -119.60887636299999, 49.827574895000069 ], [ -119.608817858999956, 49.828120250000019 ], [ -119.609383391, 49.831192532000095 ], [ -119.610243207999972, 49.831154510000097 ], [ -119.619920687000018, 49.830725892000039 ], [ -119.620423087999924, 49.830854724000055 ], [ -119.620980256999957, 49.830873006000097 ], [ -119.621811064999946, 49.830900267000089 ], [ -119.622505150999956, 49.831064186000063 ], [ -119.622671186, 49.831103408000075 ], [ -119.621524333999929, 49.831958282000073 ], [ -119.621066592999952, 49.832299452000044 ], [ -119.620551115999973, 49.83268365000005 ], [ -119.620503288999927, 49.832719314000059 ], [ -119.619830195999924, 49.833216896000053 ], [ -119.61970168699996, 49.833311925000089 ], [ -119.616122865999898, 49.835957380000117 ], [ -119.615792655999982, 49.836203523000115 ], [ -119.615675798999959, 49.836290592000104 ], [ -119.615181064999916, 49.836655318000069 ], [ -119.610591634999963, 49.840035355000069 ], [ -119.610484230999987, 49.83997490400008 ], [ -119.609947990999956, 49.839668094000061 ], [ -119.609618813999973, 49.839507065000127 ], [ -119.609301645999963, 49.839380144000124 ], [ -119.608882445999939, 49.839284264000128 ] ], [ [ -119.606425952999956, 49.833013667000102 ], [ -119.606382462999946, 49.832205016000096 ], [ -119.606799182999964, 49.832195640000045 ], [ -119.606741190999941, 49.831117440000078 ], [ -119.606324480999945, 49.831126816000072 ], [ -119.606353471999938, 49.831665917000045 ], [ -119.605936756999981, 49.831675292000043 ], [ -119.605965742999928, 49.832214392000054 ], [ -119.605549023999984, 49.832223766 ], [ -119.605592495999986, 49.833032417 ], [ -119.606425952999956, 49.833013667000102 ] ], [ [ -119.614329835999925, 49.832577737000072 ], [ -119.614358267999989, 49.833104787000096 ], [ -119.615191716999959, 49.833085973000088 ], [ -119.61516693499999, 49.832626728000058 ], [ -119.614329835999925, 49.832577737000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43343000", "BldgCostT": "29420000", "sL_LossRatio": "0.962230560652954", "sL_AssetLoss": "1.09533", "sL_BldgLoss": "1.05396", "sL_StrLoss": "0.02766", "sL_NStrLoss": "1.0263", "sL_ContLoss": "0.04137", "geom_point": "0101000020E610000073E7F482F0E55DC0943B0187AFEA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.592359588999926, 49.835404895000082 ], [ -119.591676316999937, 49.835350800000079 ], [ -119.589903598000021, 49.835027637000024 ], [ -119.589239720999956, 49.834865008000094 ], [ -119.589215907, 49.833737459000076 ], [ -119.591032810999977, 49.83384420200013 ], [ -119.590976993999959, 49.832800171000088 ], [ -119.589067945999972, 49.832688010000048 ], [ -119.588761681000022, 49.831075359000074 ], [ -119.589017188999961, 49.831109677 ], [ -119.589419046999978, 49.831163665000098 ], [ -119.590913269999973, 49.831368712000078 ], [ -119.591348500999956, 49.83142844500005 ], [ -119.591812063999939, 49.831492064000031 ], [ -119.593201662999931, 49.831503236000017 ], [ -119.593788998999941, 49.831504310000113 ], [ -119.594087402999932, 49.83150559400007 ], [ -119.594649768999929, 49.831376057000057 ], [ -119.594931853000034, 49.831862167000097 ], [ -119.595084715999946, 49.832130086000099 ], [ -119.595163690999982, 49.83226855300007 ], [ -119.595837223999922, 49.832759579000012 ], [ -119.596160677999961, 49.833090064000075 ], [ -119.596353396, 49.833430097000132 ], [ -119.596016422999966, 49.833410318000027 ], [ -119.596022145999939, 49.833517170000036 ], [ -119.596392515999966, 49.833508869000042 ], [ -119.596450879999921, 49.833731798 ], [ -119.596453321999931, 49.833777381000125 ], [ -119.596462757999987, 49.833777170000069 ], [ -119.596487143999965, 49.833870312 ], [ -119.596510457999926, 49.833959374000045 ], [ -119.59647099399993, 49.834489789000081 ], [ -119.596299652999946, 49.834886049000048 ], [ -119.59597768499999, 49.835341197000062 ], [ -119.595139863000014, 49.836041456000075 ], [ -119.594652764000017, 49.835813310000049 ], [ -119.59459173099999, 49.835794657000065 ], [ -119.593052968, 49.835324040000067 ], [ -119.59291723399997, 49.835282523000032 ], [ -119.592696181999955, 49.835274127000048 ], [ -119.592656284999975, 49.835272616000097 ], [ -119.59241885199999, 49.835353470000015 ], [ -119.592359588999926, 49.835404895000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105047667", "BldgCostT": "72446667", "sL_LossRatio": "0.999998076911973", "sL_AssetLoss": "10530.459196", "sL_BldgLoss": "10530.438945", "sL_StrLoss": "10530.006005", "sL_NStrLoss": "0.43294", "sL_ContLoss": "0.020251", "geom_point": "0101000020E61000001B2CDEC0CBE75DC0CFEBDB8B60EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.621786919999948, 49.840893744000077 ], [ -119.620567325999957, 49.839663189000127 ], [ -119.620079235, 49.839821420000135 ], [ -119.619904546999948, 49.839875608000085 ], [ -119.619637311999924, 49.839501124000073 ], [ -119.619472773999959, 49.839221146000078 ], [ -119.619437237999961, 49.839148440000088 ], [ -119.619311540999945, 49.838962151000025 ], [ -119.618926860999963, 49.83859957500011 ], [ -119.61882076799999, 49.838309366000033 ], [ -119.618785609999975, 49.837671129000071 ], [ -119.618772080999975, 49.83733424200009 ], [ -119.618793932999921, 49.837335953000064 ], [ -119.61921654799994, 49.83734310300013 ], [ -119.61941144799998, 49.837349777000078 ], [ -119.619905362999987, 49.837357343000107 ], [ -119.620058280999984, 49.837359931000044 ], [ -119.620323056999936, 49.837364920000027 ], [ -119.620743192999953, 49.837375882000046 ], [ -119.62105422499998, 49.837385883000103 ], [ -119.621171169999954, 49.837399972000142 ], [ -119.621684122999923, 49.837443811000071 ], [ -119.621836346999913, 49.837456956000061 ], [ -119.62208694, 49.837472815000098 ], [ -119.62220899099999, 49.837497646000052 ], [ -119.623079581999932, 49.83751928000008 ], [ -119.623514803, 49.837492070000103 ], [ -119.624109326999985, 49.837401425000074 ], [ -119.62447586199994, 49.837327428000059 ], [ -119.624751828999948, 49.837267269000051 ], [ -119.624945511999968, 49.837225054000051 ], [ -119.624972478999936, 49.837219165000114 ], [ -119.62543579, 49.837172440000103 ], [ -119.625456491999941, 49.838387023000081 ], [ -119.625065624999976, 49.838333953000088 ], [ -119.624813855999946, 49.838299772000049 ], [ -119.624063990999971, 49.838197945000097 ], [ -119.623222857999977, 49.838196889000045 ], [ -119.622677593999981, 49.838187708000135 ], [ -119.62226907499992, 49.838224458000091 ], [ -119.622431324999923, 49.838493495000115 ], [ -119.622690861999956, 49.838745387000067 ], [ -119.622906769999958, 49.839222472000102 ], [ -119.623261499999941, 49.840006260000038 ], [ -119.623964214999887, 49.840664054000023 ], [ -119.622814115999944, 49.841574672000085 ], [ -119.622068096999925, 49.841270141000159 ], [ -119.621786919999948, 49.840893744000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "233261144", "BldgCostT": "153676523", "sL_LossRatio": "0.999995807025589", "sL_AssetLoss": "22346.9048", "sL_BldgLoss": "22346.8111", "sL_StrLoss": "22346.1332", "sL_NStrLoss": "0.6779", "sL_ContLoss": "0.0937", "geom_point": "0101000020E61000005F23F6C703E65DC031009EFEFDEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589946130999977, 49.852544439000098 ], [ -119.589902886999965, 49.851735782000063 ], [ -119.590020264, 49.851733157000062 ], [ -119.59115356800001, 49.851707815000097 ], [ -119.591167989, 49.851977367000131 ], [ -119.592001778999972, 49.851958715000066 ], [ -119.591972927999933, 49.851419610000065 ], [ -119.591556037999936, 49.851428938000041 ], [ -119.591516537999908, 49.850690721000021 ], [ -119.59065766099999, 49.850640289000054 ], [ -119.591005608999964, 49.848161147000056 ], [ -119.58905542199993, 49.848046610000019 ], [ -119.588720196999986, 49.848026918000109 ], [ -119.588602203999969, 49.846523103000045 ], [ -119.588786581999898, 49.845146014000171 ], [ -119.588715594999954, 49.843581602000071 ], [ -119.588657536999946, 49.840160409000077 ], [ -119.588663510999979, 49.83907284700016 ], [ -119.588623392000017, 49.835069081000036 ], [ -119.588650351999945, 49.834290568000021 ], [ -119.588966716999892, 49.83430915800006 ], [ -119.589048330999958, 49.833727612000139 ], [ -119.589215907, 49.833737459000076 ], [ -119.589239720999956, 49.834865008000094 ], [ -119.589903598000021, 49.835027637000024 ], [ -119.591676316999937, 49.835350800000079 ], [ -119.592359588999926, 49.835404895000082 ], [ -119.59241885199999, 49.835353470000015 ], [ -119.592656284999975, 49.835272616000097 ], [ -119.592696181999955, 49.835274127000048 ], [ -119.59291723399997, 49.835282523000032 ], [ -119.593052968, 49.835324040000067 ], [ -119.59459173099999, 49.835794657000065 ], [ -119.594652764000017, 49.835813310000049 ], [ -119.595139863000014, 49.836041456000075 ], [ -119.59597768499999, 49.835341197000062 ], [ -119.596299652999946, 49.834886049000048 ], [ -119.59647099399993, 49.834489789000081 ], [ -119.596510457999926, 49.833959374000045 ], [ -119.596487143999965, 49.833870312 ], [ -119.596462757999987, 49.833777170000069 ], [ -119.596870059999944, 49.833768039000034 ], [ -119.596900270999953, 49.834331837000043 ], [ -119.597163796999922, 49.834347302000104 ], [ -119.596882998999945, 49.83635059700002 ], [ -119.596661658999906, 49.837929586000058 ], [ -119.596650298999975, 49.837928919000021 ], [ -119.596366839000012, 49.839950876000067 ], [ -119.596368268999953, 49.83997754400005 ], [ -119.59638318899999, 49.840255968000044 ], [ -119.59644909, 49.840254491000039 ], [ -119.596799981999979, 49.840246625000084 ], [ -119.59684332199997, 49.841055280000063 ], [ -119.596211420999936, 49.841069445000123 ], [ -119.595756669999929, 49.844312690000088 ], [ -119.594836038999944, 49.844258659000062 ], [ -119.594733308999977, 49.844991154000084 ], [ -119.597061623999963, 49.845127782000098 ], [ -119.597045607999959, 49.844829002000075 ], [ -119.597462437999965, 49.844819656000055 ], [ -119.597433533999961, 49.844280553000011 ], [ -119.597850358999963, 49.844271207000091 ], [ -119.59783590499994, 49.844001655000042 ], [ -119.598252730999931, 49.843992307000072 ], [ -119.59822381699999, 49.843453204000099 ], [ -119.598640635999985, 49.843443855000075 ], [ -119.598626177999975, 49.84317430400003 ], [ -119.599042993999944, 49.84316495300007 ], [ -119.599028534999945, 49.842895402000138 ], [ -119.599445348999936, 49.84288605000016 ], [ -119.599344114999937, 49.840999193000101 ], [ -119.598510517999941, 49.8410178950001 ], [ -119.598496061999981, 49.840748343000044 ], [ -119.598079263999963, 49.840757692000125 ], [ -119.597978090999902, 49.838870832000026 ], [ -119.598394871999986, 49.838861485000052 ], [ -119.598322599999989, 49.837513728000054 ], [ -119.598488018999916, 49.837510016000031 ], [ -119.598739366999922, 49.837504378000091 ], [ -119.598638181999917, 49.835617518000078 ], [ -119.599054931999916, 49.835608169000096 ], [ -119.599040475999914, 49.835338617000048 ], [ -119.600290723999962, 49.835310559000064 ], [ -119.600261796999959, 49.834771456000091 ], [ -119.599845051999978, 49.83478081100008 ], [ -119.599830590999957, 49.834511260000113 ], [ -119.599413848999944, 49.834520611000109 ], [ -119.59935601799999, 49.833442406000081 ], [ -119.598522551999977, 49.833461106000115 ], [ -119.598489521999937, 49.832845090000063 ], [ -119.598390791000014, 49.83354965900002 ], [ -119.596353396, 49.833430097000132 ], [ -119.596160677999961, 49.833090064000075 ], [ -119.595837223999922, 49.832759579000012 ], [ -119.595163690999982, 49.83226855300007 ], [ -119.595084715999946, 49.832130086000099 ], [ -119.594931853000034, 49.831862167000097 ], [ -119.594649768999929, 49.831376057000057 ], [ -119.595148169999931, 49.831214822000057 ], [ -119.595531196999943, 49.830960993000076 ], [ -119.595796024999984, 49.830755713000073 ], [ -119.595805166999924, 49.83074863800006 ], [ -119.595883344999933, 49.830628171000107 ], [ -119.595920841999941, 49.830570335000047 ], [ -119.596399625999979, 49.830738364000084 ], [ -119.597207804999954, 49.831025083000071 ], [ -119.597440213999974, 49.831178689000104 ], [ -119.597666278999966, 49.831417699000106 ], [ -119.598000863999943, 49.831608881000108 ], [ -119.598370278999965, 49.83196013700006 ], [ -119.598610572999917, 49.832045413000117 ], [ -119.599129261999948, 49.832229499000064 ], [ -119.60024660499991, 49.833532605000094 ], [ -119.601676581999953, 49.834696730000111 ], [ -119.601903725999932, 49.835229235000014 ], [ -119.601898614999953, 49.835470946000044 ], [ -119.60189965099994, 49.835544307000077 ], [ -119.600721936999975, 49.835570754000045 ], [ -119.600736403999932, 49.835840305000033 ], [ -119.601903461999953, 49.835814097000139 ], [ -119.601928698999942, 49.837600301000066 ], [ -119.601949393999945, 49.839063981000095 ], [ -119.601948527999951, 49.839468454000055 ], [ -119.601182862999963, 49.841646554000128 ], [ -119.601027830999968, 49.84197606000005 ], [ -119.600899374999955, 49.842152024000065 ], [ -119.600730773999942, 49.842383015000046 ], [ -119.599908654999979, 49.843120344000056 ], [ -119.598491789999969, 49.844486433000057 ], [ -119.598392462999954, 49.84459326000011 ], [ -119.59811116799996, 49.844895776000065 ], [ -119.598023069999954, 49.844990547000052 ], [ -119.597855694999978, 49.845170553000088 ], [ -119.597486651999944, 49.845781860000052 ], [ -119.597105990999964, 49.84666515300011 ], [ -119.596887117999927, 49.847060325000029 ], [ -119.596814406999925, 49.847191598000073 ], [ -119.596654692999962, 49.847633682000065 ], [ -119.596291199999925, 49.848334707000085 ], [ -119.596101002999944, 49.848526698000043 ], [ -119.59580022199999, 49.84919933200009 ], [ -119.594951730999981, 49.849888624000123 ], [ -119.595039338999953, 49.850674657000063 ], [ -119.595310323999939, 49.850913292000037 ], [ -119.5962942, 49.851779682000057 ], [ -119.597136308999964, 49.852542193000048 ], [ -119.596934360999938, 49.852942476000067 ], [ -119.59651281, 49.853778121000126 ], [ -119.596305138999938, 49.854189761000107 ], [ -119.596275791999943, 49.854247897000036 ], [ -119.595879211999929, 49.854906402000026 ], [ -119.59572689299992, 49.855046408000135 ], [ -119.595560192, 49.855139601000047 ], [ -119.59526966199995, 49.855220648000099 ], [ -119.595138483999975, 49.855257255000026 ], [ -119.594942724999953, 49.855311890000046 ], [ -119.59424033099998, 49.855820572 ], [ -119.594440203999952, 49.855902498000049 ], [ -119.594728810999982, 49.856020787 ], [ -119.595080924999962, 49.856167342000091 ], [ -119.595173347999918, 49.856205777000092 ], [ -119.59485056599999, 49.856516410000054 ], [ -119.594642849999929, 49.856718328000056 ], [ -119.593929398999975, 49.856744127000042 ], [ -119.591235836999957, 49.856841494000058 ], [ -119.58926393499992, 49.856912713000028 ], [ -119.589080128999981, 49.856246794000135 ], [ -119.589084526999955, 49.856004821000042 ], [ -119.589099552999926, 49.855176580000055 ], [ -119.589104343999978, 49.855155209000067 ], [ -119.589124530999982, 49.854245103000068 ], [ -119.589202500999974, 49.854249682000038 ], [ -119.589184384999925, 49.853910840000054 ], [ -119.589601296999959, 49.853901521000111 ], [ -119.589529230999986, 49.852553758000049 ], [ -119.589946130999977, 49.852544439000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "314020219", "BldgCostT": "212095412", "sL_LossRatio": "0.99320693813698", "sL_AssetLoss": "23328.680085", "sL_BldgLoss": "23170.206918", "sL_StrLoss": "23109.291578", "sL_NStrLoss": "60.91534", "sL_ContLoss": "158.473167", "geom_point": "0101000020E610000056659DF96EE75DC0FCAFC5D149EC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.610667263999957, 49.844702448000056 ], [ -119.612140087999975, 49.844311022000035 ], [ -119.613647136999987, 49.843634448000088 ], [ -119.614764811999933, 49.843326945000065 ], [ -119.615238103999957, 49.8432860120001 ], [ -119.61568751799993, 49.843315937000135 ], [ -119.616517695999917, 49.843545894000059 ], [ -119.616563597999971, 49.843558581000096 ], [ -119.616977648, 49.843591828000051 ], [ -119.618697765999983, 49.843347066000078 ], [ -119.618942765, 49.843312199000067 ], [ -119.619393918999961, 49.843279881000036 ], [ -119.619814363999978, 49.843297227000022 ], [ -119.620304603999926, 49.84338459600005 ], [ -119.620742419999956, 49.843527552000062 ], [ -119.62204849799997, 49.844130180000029 ], [ -119.622610391999956, 49.844389431000074 ], [ -119.622644055999956, 49.844404955000066 ], [ -119.622835037999948, 49.844493084000092 ], [ -119.623168529999973, 49.844646940000118 ], [ -119.624137156999893, 49.845093829000099 ], [ -119.624944633999988, 49.844558638000137 ], [ -119.625224370999931, 49.844310679000039 ], [ -119.625255207999942, 49.84428332200013 ], [ -119.625297535999948, 49.844208738000113 ], [ -119.625386654999886, 49.844051740000033 ], [ -119.625383472999928, 49.844115912000063 ], [ -119.625194157999942, 49.847928603000099 ], [ -119.621085795999988, 49.847990761000055 ], [ -119.621055943, 49.847990948000074 ], [ -119.619402292999894, 49.848010539000079 ], [ -119.616486016999929, 49.847986312000032 ], [ -119.615736645999974, 49.847979359000064 ], [ -119.613426349999912, 49.847981937000029 ], [ -119.613426082999979, 49.847981932000025 ], [ -119.605315099999956, 49.847765474000092 ], [ -119.605373277999931, 49.847651220000067 ], [ -119.605670711999934, 49.847066999000091 ], [ -119.606452917999945, 49.845530434000061 ], [ -119.606647740999946, 49.845521843000014 ], [ -119.606887449999988, 49.84551129700008 ], [ -119.60778148599999, 49.845263228000093 ], [ -119.608770877999973, 49.844988683000018 ], [ -119.609403086999947, 49.844859570000047 ], [ -119.60986955199995, 49.844801593000035 ], [ -119.61011319499994, 49.844771311000081 ], [ -119.610617545999958, 49.844708621000052 ], [ -119.610667263999957, 49.844702448000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "473403500", "BldgCostT": "314630000", "sL_LossRatio": "0.994420020784509", "sL_AssetLoss": "55896.925052", "sL_BldgLoss": "55585.021372", "sL_StrLoss": "55463.116802", "sL_NStrLoss": "121.90457", "sL_ContLoss": "311.90368", "geom_point": "0101000020E61000005DAAB979F6E65DC0D318D6225CED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.608963934999935, 49.862061212000093 ], [ -119.607825104999918, 49.861469055000136 ], [ -119.607080966999916, 49.861548273000054 ], [ -119.606666363999949, 49.861622744000023 ], [ -119.606114174999959, 49.861721915000047 ], [ -119.605980702999929, 49.861726699000037 ], [ -119.605961233999921, 49.861727391000052 ], [ -119.60567667299992, 49.861655659000064 ], [ -119.605402612999953, 49.861468966000089 ], [ -119.605315673999925, 49.861341964000069 ], [ -119.605302640999966, 49.861262753000112 ], [ -119.605281721999958, 49.861135934000046 ], [ -119.605369668999955, 49.860767284000126 ], [ -119.60466095299995, 49.86004092200006 ], [ -119.60495798599996, 49.86003424400014 ], [ -119.604899978, 49.858956048000017 ], [ -119.604483027999933, 49.858965422000047 ], [ -119.604468528999959, 49.858695872000055 ], [ -119.603634630999949, 49.858714615000082 ], [ -119.603633318999968, 49.858690217000103 ], [ -119.603325538999954, 49.858672184000135 ], [ -119.602738852999963, 49.858070826000102 ], [ -119.602563016999937, 49.857890572 ], [ -119.602562815999946, 49.857890292000064 ], [ -119.601930266999901, 49.857424049 ], [ -119.601729882999976, 49.857146449000012 ], [ -119.601158199999929, 49.856674013000053 ], [ -119.600933549999979, 49.856506248000059 ], [ -119.600843563999916, 49.856439050000134 ], [ -119.600761527999936, 49.856687002000044 ], [ -119.600778851999934, 49.854762467000043 ], [ -119.600781258999973, 49.85449409200006 ], [ -119.600792338999952, 49.854037369000054 ], [ -119.600601751999974, 49.853215193000025 ], [ -119.60062088799998, 49.852439356000147 ], [ -119.600857608999959, 49.849446780000086 ], [ -119.600111293999987, 49.848199569000087 ], [ -119.600997868999968, 49.848125643000074 ], [ -119.602283571999976, 49.84801838800005 ], [ -119.605315099999956, 49.847765474000092 ], [ -119.613426082999979, 49.847981932000025 ], [ -119.613426349999912, 49.847981937000029 ], [ -119.615736645999974, 49.847979359000064 ], [ -119.615733704999954, 49.848127503000136 ], [ -119.615694213999944, 49.848929713000089 ], [ -119.615279594999947, 49.848959596000043 ], [ -119.613663182999957, 49.84895980400006 ], [ -119.613659505, 49.849415612000023 ], [ -119.613655173999973, 49.849835198000065 ], [ -119.613679207999937, 49.849963009000128 ], [ -119.613691298999953, 49.850026012000043 ], [ -119.613813982999915, 49.850146891000072 ], [ -119.614378518999956, 49.850532105000134 ], [ -119.61508218299997, 49.851010297000087 ], [ -119.615212125000014, 49.851189411000099 ], [ -119.615097639999988, 49.851308682000116 ], [ -119.615022590999956, 49.851386891000089 ], [ -119.61494818599999, 49.851549610000077 ], [ -119.614955593999952, 49.851708454000047 ], [ -119.614956196999941, 49.851721608000062 ], [ -119.615106393999966, 49.851965102000108 ], [ -119.615393022999982, 49.852259541000109 ], [ -119.61553980799998, 49.852410292000044 ], [ -119.615878306999917, 49.852335294000092 ], [ -119.616245898, 49.852352295000053 ], [ -119.616355256999938, 49.852385579000099 ], [ -119.616901269, 49.852551696000077 ], [ -119.617708048999987, 49.852797179000021 ], [ -119.617637254, 49.853034109000149 ], [ -119.617654954999963, 49.853426994000088 ], [ -119.617978049999962, 49.855040404000128 ], [ -119.618062996999967, 49.85548146400005 ], [ -119.618042431000021, 49.855748409000121 ], [ -119.617935467999942, 49.855944407000038 ], [ -119.617530430999963, 49.856494956000105 ], [ -119.617527309999971, 49.85650678800004 ], [ -119.617368982999935, 49.857110179000067 ], [ -119.617306389999925, 49.857348620000067 ], [ -119.616960927999941, 49.85812207400005 ], [ -119.616707205999973, 49.858359149000115 ], [ -119.615953820999962, 49.858771679000036 ], [ -119.615752272999941, 49.85888204400004 ], [ -119.615588370999944, 49.858971792000013 ], [ -119.615300479000013, 49.859163515000013 ], [ -119.615193545999929, 49.859279142000048 ], [ -119.61479604, 49.86022470700005 ], [ -119.614550521999931, 49.860532659000071 ], [ -119.614082180999944, 49.860866420000029 ], [ -119.613569644999956, 49.861347874000074 ], [ -119.61339900899992, 49.861508144000084 ], [ -119.613156818999954, 49.861882217000051 ], [ -119.61291330799996, 49.8625760890001 ], [ -119.612885145999954, 49.862656343000062 ], [ -119.612709302999932, 49.86288534100003 ], [ -119.612542955999942, 49.863036324000063 ], [ -119.612336782999989, 49.863102801000082 ], [ -119.612323784999944, 49.863106065000103 ], [ -119.612135603999889, 49.863153329000056 ], [ -119.610322574999955, 49.863227830000056 ], [ -119.61005115599994, 49.863271538000056 ], [ -119.609895975999947, 49.862734240000115 ], [ -119.6097716099999, 49.862555419000067 ], [ -119.609219071000012, 49.862217350000016 ], [ -119.608963934999935, 49.862061212000093 ] ], [ [ -119.608235576999931, 49.858881002000089 ], [ -119.608221056999923, 49.858611453000016 ], [ -119.608638003999943, 49.858602066000039 ], [ -119.608623482999946, 49.858332518000104 ], [ -119.609683327999946, 49.858308648000055 ], [ -119.60987813399997, 49.858375240000093 ], [ -119.6098841579999, 49.858486981000077 ], [ -119.610271318999963, 49.858509643000104 ], [ -119.610313009999956, 49.858523894000029 ], [ -119.61051481699991, 49.858523894000029 ], [ -119.610957653999904, 49.858549812000014 ], [ -119.611416467999931, 49.858539472000096 ], [ -119.611418645999919, 49.858523894000029 ], [ -119.61153688399996, 49.858523892000129 ], [ -119.612228219999949, 49.8586791050001 ], [ -119.612827206999938, 49.858710506000094 ], [ -119.61292991, 49.858807309000056 ], [ -119.612758808999914, 49.858963991000067 ], [ -119.612945822999933, 49.859085003000111 ], [ -119.613238588999963, 49.859114914000024 ], [ -119.613305301999958, 49.859050794000019 ], [ -119.613228407999912, 49.858637792000053 ], [ -119.61403829899993, 49.857927105000051 ], [ -119.614804997999954, 49.856947301000069 ], [ -119.615287506999934, 49.856864709000014 ], [ -119.615730612999982, 49.85653140000008 ], [ -119.61601869299993, 49.855965991000083 ], [ -119.616008981999954, 49.85575950100008 ], [ -119.615849394999913, 49.855637 ], [ -119.615094886999913, 49.855339392000118 ], [ -119.614532693999976, 49.855235396000097 ], [ -119.61451759299996, 49.85469561200005 ], [ -119.61450432, 49.854685330000031 ], [ -119.61454130499996, 49.854420860000069 ], [ -119.61384003199997, 49.854436684000028 ], [ -119.61385458, 49.854706231000094 ], [ -119.613437669999911, 49.85471563700002 ], [ -119.61346676299999, 49.855254732000049 ], [ -119.610965262999954, 49.855311136000125 ], [ -119.610967136999975, 49.855345892000081 ], [ -119.610531808999966, 49.855352183000107 ], [ -119.61019406099993, 49.855598389000086 ], [ -119.609729036999937, 49.855608865000136 ], [ -119.609746071999922, 49.855924951000034 ], [ -119.609742589999954, 49.855927489000031 ], [ -119.609587699999963, 49.85615180000007 ], [ -119.608924239999965, 49.856166742000084 ], [ -119.608967807999974, 49.856975387000041 ], [ -119.606466209999951, 49.857031695000082 ], [ -119.606495228999961, 49.857570792000111 ], [ -119.606078290999918, 49.857580172000063 ], [ -119.606107304999966, 49.85811927000001 ], [ -119.606524247999971, 49.858109891000048 ], [ -119.60656777899996, 49.858918536000097 ], [ -119.608235576999931, 49.858881002000089 ] ], [ [ -119.605472806999927, 49.854085413000057 ], [ -119.605458305999946, 49.853815864000069 ], [ -119.606292116999967, 49.85379710900002 ], [ -119.606277611999943, 49.853527559000064 ], [ -119.606694514999958, 49.853518180000044 ], [ -119.60668000599999, 49.853248631000014 ], [ -119.607096906999956, 49.853239250000094 ], [ -119.607082395999981, 49.852969701000099 ], [ -119.607499294999954, 49.852960318000051 ], [ -119.60747027, 49.85242122100005 ], [ -119.608304055999923, 49.852402451000039 ], [ -119.608260507999958, 49.851593806000054 ], [ -119.607843619000022, 49.851603191000073 ], [ -119.607858133999912, 49.851872739000022 ], [ -119.606607466999904, 49.851900887000049 ], [ -119.606592960999961, 49.851631337000065 ], [ -119.606176073999961, 49.851640716000063 ], [ -119.606147063999956, 49.851101618 ], [ -119.605730181999945, 49.851110996000038 ], [ -119.605744682999955, 49.851380544000037 ], [ -119.605327798999923, 49.851389921000091 ], [ -119.605342298000011, 49.851659469000069 ], [ -119.60367474499999, 49.851696960000083 ], [ -119.603689235999951, 49.851966509000086 ], [ -119.602855453999936, 49.851985245000073 ], [ -119.60289891499994, 49.852793894000115 ], [ -119.603732709999946, 49.852775158000071 ], [ -119.603747202999912, 49.853044707000052 ], [ -119.60416410299996, 49.853035338000055 ], [ -119.604178597000015, 49.853304887000064 ], [ -119.604595497999966, 49.853295514000109 ], [ -119.604624492999946, 49.853834613000039 ], [ -119.605041398999916, 49.853825239000152 ], [ -119.605055897999975, 49.854094788000054 ], [ -119.605472806999927, 49.854085413000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236831777", "BldgCostT": "145999054", "sL_LossRatio": "0.973274190518899", "sL_AssetLoss": "22416.228007", "sL_BldgLoss": "21817.136168", "sL_StrLoss": "21589.584788", "sL_NStrLoss": "227.55138", "sL_ContLoss": "599.091839", "geom_point": "0101000020E61000005D321A3B99E75DC0EE733A9866EB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.608143308999942, 49.843444998000102 ], [ -119.609049866999939, 49.842773226000119 ], [ -119.611803121999941, 49.840732908000156 ], [ -119.610591634999963, 49.840035355000069 ], [ -119.615181064999916, 49.836655318000069 ], [ -119.615675798999959, 49.836290592000104 ], [ -119.615792655999982, 49.836203523000115 ], [ -119.616122865999898, 49.835957380000117 ], [ -119.61970168699996, 49.833311925000089 ], [ -119.619830195999924, 49.833216896000053 ], [ -119.620503288999927, 49.832719314000059 ], [ -119.620551115999973, 49.83268365000005 ], [ -119.621066592999952, 49.832299452000044 ], [ -119.621524333999929, 49.831958282000073 ], [ -119.622671186, 49.831103408000075 ], [ -119.62354074299995, 49.830430114000116 ], [ -119.623665873000022, 49.830333225000075 ], [ -119.623833265999977, 49.830203623000031 ], [ -119.624201097999929, 49.829918812000052 ], [ -119.624744888999913, 49.829721316000068 ], [ -119.62539400799993, 49.829619306000041 ], [ -119.625393697, 49.830016473000065 ], [ -119.625393301999949, 49.830504114000149 ], [ -119.624215406999951, 49.830516485000047 ], [ -119.624457067999955, 49.8313229110001 ], [ -119.625394290999964, 49.831387191000061 ], [ -119.625415612999987, 49.832234395000079 ], [ -119.625417698999954, 49.833362361000063 ], [ -119.625420699999935, 49.834997601000062 ], [ -119.625422575999963, 49.83528740400002 ], [ -119.625432488999948, 49.836813174000092 ], [ -119.62543579, 49.837172440000103 ], [ -119.624972478999936, 49.837219165000114 ], [ -119.624945511999968, 49.837225054000051 ], [ -119.624751828999948, 49.837267269000051 ], [ -119.62447586199994, 49.837327428000059 ], [ -119.624109326999985, 49.837401425000074 ], [ -119.623514803, 49.837492070000103 ], [ -119.623079581999932, 49.83751928000008 ], [ -119.62220899099999, 49.837497646000052 ], [ -119.62208694, 49.837472815000098 ], [ -119.621836346999913, 49.837456956000061 ], [ -119.621684122999923, 49.837443811000071 ], [ -119.621171169999954, 49.837399972000142 ], [ -119.62105422499998, 49.837385883000103 ], [ -119.620743192999953, 49.837375882000046 ], [ -119.620323056999936, 49.837364920000027 ], [ -119.620058280999984, 49.837359931000044 ], [ -119.619905362999987, 49.837357343000107 ], [ -119.61941144799998, 49.837349777000078 ], [ -119.61921654799994, 49.83734310300013 ], [ -119.618793932999921, 49.837335953000064 ], [ -119.618772080999975, 49.83733424200009 ], [ -119.618785609999975, 49.837671129000071 ], [ -119.61882076799999, 49.838309366000033 ], [ -119.618926860999963, 49.83859957500011 ], [ -119.619311540999945, 49.838962151000025 ], [ -119.619437237999961, 49.839148440000088 ], [ -119.619472773999959, 49.839221146000078 ], [ -119.619637311999924, 49.839501124000073 ], [ -119.619904546999948, 49.839875608000085 ], [ -119.620079235, 49.839821420000135 ], [ -119.620567325999957, 49.839663189000127 ], [ -119.621786919999948, 49.840893744000077 ], [ -119.622068096999925, 49.841270141000159 ], [ -119.622814115999944, 49.841574672000085 ], [ -119.623964214999887, 49.840664054000023 ], [ -119.623261499999941, 49.840006260000038 ], [ -119.622906769999958, 49.839222472000102 ], [ -119.622690861999956, 49.838745387000067 ], [ -119.622431324999923, 49.838493495000115 ], [ -119.62226907499992, 49.838224458000091 ], [ -119.622677593999981, 49.838187708000135 ], [ -119.623222857999977, 49.838196889000045 ], [ -119.624063990999971, 49.838197945000097 ], [ -119.624813855999946, 49.838299772000049 ], [ -119.625065624999976, 49.838333953000088 ], [ -119.625456491999941, 49.838387023000081 ], [ -119.625448821999939, 49.838606404000046 ], [ -119.625449869999954, 49.838930297000104 ], [ -119.625456607999965, 49.840940804000034 ], [ -119.625457168999958, 49.841008337000069 ], [ -119.625460226999905, 49.841350081 ], [ -119.625465580999929, 49.841952703000103 ], [ -119.625466542999973, 49.842069138000035 ], [ -119.625467064999953, 49.842141375000068 ], [ -119.625474445999927, 49.843326103000017 ], [ -119.625475584999919, 49.843506492000074 ], [ -119.62547713399999, 49.843753722000031 ], [ -119.625386654999886, 49.844051740000033 ], [ -119.625297535999948, 49.844208738000113 ], [ -119.625255207999942, 49.84428332200013 ], [ -119.625224370999931, 49.844310679000039 ], [ -119.624944633999988, 49.844558638000137 ], [ -119.624137156999893, 49.845093829000099 ], [ -119.623168529999973, 49.844646940000118 ], [ -119.622835037999948, 49.844493084000092 ], [ -119.622644055999956, 49.844404955000066 ], [ -119.622610391999956, 49.844389431000074 ], [ -119.62204849799997, 49.844130180000029 ], [ -119.620742419999956, 49.843527552000062 ], [ -119.620304603999926, 49.84338459600005 ], [ -119.619814363999978, 49.843297227000022 ], [ -119.619393918999961, 49.843279881000036 ], [ -119.618942765, 49.843312199000067 ], [ -119.618697765999983, 49.843347066000078 ], [ -119.616977648, 49.843591828000051 ], [ -119.616563597999971, 49.843558581000096 ], [ -119.616517695999917, 49.843545894000059 ], [ -119.61568751799993, 49.843315937000135 ], [ -119.615238103999957, 49.8432860120001 ], [ -119.614764811999933, 49.843326945000065 ], [ -119.613647136999987, 49.843634448000088 ], [ -119.612140087999975, 49.844311022000035 ], [ -119.610667263999957, 49.844702448000056 ], [ -119.610617545999958, 49.844708621000052 ], [ -119.61011319499994, 49.844771311000081 ], [ -119.60986955199995, 49.844801593000035 ], [ -119.609403086999947, 49.844859570000047 ], [ -119.608770877999973, 49.844988683000018 ], [ -119.60778148599999, 49.845263228000093 ], [ -119.606887449999988, 49.84551129700008 ], [ -119.606681041999977, 49.844772371000076 ], [ -119.60675691599999, 49.844549263000033 ], [ -119.606929350999948, 49.844344477000043 ], [ -119.608143308999942, 49.843444998000102 ] ], [ [ -119.618571998, 49.839935380000021 ], [ -119.618461650999919, 49.839676591000071 ], [ -119.618321059999985, 49.83928029500008 ], [ -119.617742361999916, 49.838992089000087 ], [ -119.617742016999955, 49.838881845000145 ], [ -119.61774270699999, 49.838835177000071 ], [ -119.617743341999955, 49.838757393000023 ], [ -119.61775049, 49.838604429000057 ], [ -119.617754710999989, 49.838406061000093 ], [ -119.617757303999966, 49.838172813000078 ], [ -119.617757733999937, 49.838108283000096 ], [ -119.617759088999975, 49.838029485000035 ], [ -119.61776972399997, 49.837628902000077 ], [ -119.617770590999953, 49.837294898000096 ], [ -119.617578658999946, 49.83729849900007 ], [ -119.617372749999987, 49.837303870000035 ], [ -119.617103338999968, 49.837311104000058 ], [ -119.617004524999942, 49.837343375000053 ], [ -119.616941644999912, 49.837404275000033 ], [ -119.616934272999913, 49.837505158000063 ], [ -119.616725403, 49.837665951000133 ], [ -119.616677883999969, 49.837706325000106 ], [ -119.616608748999951, 49.837741473000072 ], [ -119.616519306999976, 49.83780790900007 ], [ -119.61631412299991, 49.837978336000049 ], [ -119.616108976999925, 49.838111733000062 ], [ -119.615995315999925, 49.838202756000079 ], [ -119.615609824999964, 49.838490612000022 ], [ -119.615413435, 49.838638054000043 ], [ -119.615891437, 49.838921575000015 ], [ -119.615997968999963, 49.838971963000034 ], [ -119.616436891999911, 49.839192176000125 ], [ -119.616578289999893, 49.839318430000041 ], [ -119.616716051999944, 49.839414758000089 ], [ -119.616895853999907, 49.839495853000059 ], [ -119.616963918999943, 49.839555934000025 ], [ -119.617045644999934, 49.839584289000115 ], [ -119.617267952999953, 49.839716539000072 ], [ -119.61749983199995, 49.839851448000047 ], [ -119.617797438999929, 49.84001959200004 ], [ -119.61798311699999, 49.840132493000056 ], [ -119.618162822999949, 49.840228628000062 ], [ -119.618283769999948, 49.840313452000032 ], [ -119.618404187999985, 49.840361870000045 ], [ -119.618524397999963, 49.840365056000088 ], [ -119.618693530999977, 49.840220963000057 ], [ -119.618571998, 49.839935380000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75753750", "BldgCostT": "43905000", "sL_LossRatio": "0.999938475526859", "sL_AssetLoss": "3761.75509", "sL_BldgLoss": "3761.52365", "sL_StrLoss": "3759.08028", "sL_NStrLoss": "2.44337", "sL_ContLoss": "0.23144", "geom_point": "0101000020E6100000025E45CA7FE75DC0CAB0DD7F5CEB4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.617578658999946, 49.83729849900007 ], [ -119.617770590999953, 49.837294898000096 ], [ -119.61776972399997, 49.837628902000077 ], [ -119.617759088999975, 49.838029485000035 ], [ -119.617757733999937, 49.838108283000096 ], [ -119.617757303999966, 49.838172813000078 ], [ -119.617754710999989, 49.838406061000093 ], [ -119.61775049, 49.838604429000057 ], [ -119.617743341999955, 49.838757393000023 ], [ -119.61774270699999, 49.838835177000071 ], [ -119.617742016999955, 49.838881845000145 ], [ -119.617742361999916, 49.838992089000087 ], [ -119.618321059999985, 49.83928029500008 ], [ -119.618461650999919, 49.839676591000071 ], [ -119.618571998, 49.839935380000021 ], [ -119.618693530999977, 49.840220963000057 ], [ -119.618524397999963, 49.840365056000088 ], [ -119.618404187999985, 49.840361870000045 ], [ -119.618283769999948, 49.840313452000032 ], [ -119.618162822999949, 49.840228628000062 ], [ -119.61798311699999, 49.840132493000056 ], [ -119.617797438999929, 49.84001959200004 ], [ -119.61749983199995, 49.839851448000047 ], [ -119.617267952999953, 49.839716539000072 ], [ -119.617045644999934, 49.839584289000115 ], [ -119.616963918999943, 49.839555934000025 ], [ -119.616895853999907, 49.839495853000059 ], [ -119.616716051999944, 49.839414758000089 ], [ -119.616578289999893, 49.839318430000041 ], [ -119.616436891999911, 49.839192176000125 ], [ -119.615997968999963, 49.838971963000034 ], [ -119.615891437, 49.838921575000015 ], [ -119.615413435, 49.838638054000043 ], [ -119.615609824999964, 49.838490612000022 ], [ -119.615995315999925, 49.838202756000079 ], [ -119.616108976999925, 49.838111733000062 ], [ -119.61631412299991, 49.837978336000049 ], [ -119.616519306999976, 49.83780790900007 ], [ -119.616608748999951, 49.837741473000072 ], [ -119.616677883999969, 49.837706325000106 ], [ -119.616725403, 49.837665951000133 ], [ -119.616934272999913, 49.837505158000063 ], [ -119.616941644999912, 49.837404275000033 ], [ -119.617004524999942, 49.837343375000053 ], [ -119.617103338999968, 49.837311104000058 ], [ -119.617372749999987, 49.837303870000035 ], [ -119.617578658999946, 49.83729849900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9946500", "BldgCostT": "5235000", "sL_LossRatio": "0.264772672190851", "sL_AssetLoss": "49.10046", "sL_BldgLoss": "13.00046", "sL_StrLoss": "0.00046", "sL_NStrLoss": "13", "sL_ContLoss": "36.1", "geom_point": "0101000020E6100000C3D9319E56E65DC0610810704EED4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59978569899999, 49.850356088000076 ], [ -119.600857608999959, 49.849446780000086 ], [ -119.60062088799998, 49.852439356000147 ], [ -119.600601751999974, 49.853215193000025 ], [ -119.600792338999952, 49.854037369000054 ], [ -119.600781258999973, 49.85449409200006 ], [ -119.600778851999934, 49.854762467000043 ], [ -119.600761527999936, 49.856687002000044 ], [ -119.596338633999949, 49.85665697700005 ], [ -119.596557245999961, 49.856422402000121 ], [ -119.596658721999972, 49.856146658000078 ], [ -119.59649398499991, 49.855429998000069 ], [ -119.596507464999959, 49.855164439000085 ], [ -119.596671284999971, 49.85489234800005 ], [ -119.597176423999912, 49.854047959000113 ], [ -119.597989820999913, 49.852278988000052 ], [ -119.598529414000012, 49.851342209000059 ], [ -119.59978569899999, 49.850356088000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234796667", "BldgCostT": "159301667", "sL_LossRatio": "0.989755524013344", "sL_AssetLoss": "14151.229032", "sL_BldgLoss": "14006.257106", "sL_StrLoss": "13948.139816", "sL_NStrLoss": "58.11729", "sL_ContLoss": "144.971926", "geom_point": "0101000020E6100000211FECFB8DE65DC0A5EEA9202FEC4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.607564209999936, 49.839226247000049 ], [ -119.608544696999942, 49.839254553000067 ], [ -119.608882445999939, 49.839284264000128 ], [ -119.609301645999963, 49.839380144000124 ], [ -119.609618813999973, 49.839507065000127 ], [ -119.609947990999956, 49.839668094000061 ], [ -119.610484230999987, 49.83997490400008 ], [ -119.610591634999963, 49.840035355000069 ], [ -119.611803121999941, 49.840732908000156 ], [ -119.609049866999939, 49.842773226000119 ], [ -119.608143308999942, 49.843444998000102 ], [ -119.606929350999948, 49.844344477000043 ], [ -119.60675691599999, 49.844549263000033 ], [ -119.606681041999977, 49.844772371000076 ], [ -119.606887449999988, 49.84551129700008 ], [ -119.606647740999946, 49.845521843000014 ], [ -119.606452917999945, 49.845530434000061 ], [ -119.605670711999934, 49.847066999000091 ], [ -119.605373277999931, 49.847651220000067 ], [ -119.605315099999956, 49.847765474000092 ], [ -119.602283571999976, 49.84801838800005 ], [ -119.600997868999968, 49.848125643000074 ], [ -119.600111293999987, 49.848199569000087 ], [ -119.600857608999959, 49.849446780000086 ], [ -119.59978569899999, 49.850356088000076 ], [ -119.598529414000012, 49.851342209000059 ], [ -119.597989820999913, 49.852278988000052 ], [ -119.597176423999912, 49.854047959000113 ], [ -119.596671284999971, 49.85489234800005 ], [ -119.596507464999959, 49.855164439000085 ], [ -119.59649398499991, 49.855429998000069 ], [ -119.596658721999972, 49.856146658000078 ], [ -119.596557245999961, 49.856422402000121 ], [ -119.596338633999949, 49.85665697700005 ], [ -119.594849809999957, 49.856710842000055 ], [ -119.594642849999929, 49.856718328000056 ], [ -119.59485056599999, 49.856516410000054 ], [ -119.595173347999918, 49.856205777000092 ], [ -119.595080924999962, 49.856167342000091 ], [ -119.594728810999982, 49.856020787 ], [ -119.594440203999952, 49.855902498000049 ], [ -119.59424033099998, 49.855820572 ], [ -119.594942724999953, 49.855311890000046 ], [ -119.595138483999975, 49.855257255000026 ], [ -119.59526966199995, 49.855220648000099 ], [ -119.595560192, 49.855139601000047 ], [ -119.59572689299992, 49.855046408000135 ], [ -119.595879211999929, 49.854906402000026 ], [ -119.596275791999943, 49.854247897000036 ], [ -119.596305138999938, 49.854189761000107 ], [ -119.59651281, 49.853778121000126 ], [ -119.596934360999938, 49.852942476000067 ], [ -119.597136308999964, 49.852542193000048 ], [ -119.5962942, 49.851779682000057 ], [ -119.595310323999939, 49.850913292000037 ], [ -119.595039338999953, 49.850674657000063 ], [ -119.594951730999981, 49.849888624000123 ], [ -119.59580022199999, 49.84919933200009 ], [ -119.596101002999944, 49.848526698000043 ], [ -119.596291199999925, 49.848334707000085 ], [ -119.596654692999962, 49.847633682000065 ], [ -119.596814406999925, 49.847191598000073 ], [ -119.596887117999927, 49.847060325000029 ], [ -119.597105990999964, 49.84666515300011 ], [ -119.597486651999944, 49.845781860000052 ], [ -119.597855694999978, 49.845170553000088 ], [ -119.598023069999954, 49.844990547000052 ], [ -119.59811116799996, 49.844895776000065 ], [ -119.598392462999954, 49.84459326000011 ], [ -119.598491789999969, 49.844486433000057 ], [ -119.599908654999979, 49.843120344000056 ], [ -119.600730773999942, 49.842383015000046 ], [ -119.600899374999955, 49.842152024000065 ], [ -119.601027830999968, 49.84197606000005 ], [ -119.601182862999963, 49.841646554000128 ], [ -119.601948527999951, 49.839468454000055 ], [ -119.601949393999945, 49.839063981000095 ], [ -119.604719594999949, 49.839144071000092 ], [ -119.607564209999936, 49.839226247000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9007000", "BldgCostT": "5740000", "sL_LossRatio": "1", "sL_AssetLoss": "379.3", "sL_BldgLoss": "379.3", "sL_StrLoss": "379.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C029A4E387E15DC0E8CCEADBD1F04840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.523939401999897, 49.883462395000073 ], [ -119.523937049999958, 49.883417319000046 ], [ -119.523918846999948, 49.883417716000032 ], [ -119.523888018, 49.883350706000115 ], [ -119.523487181999926, 49.882799870000021 ], [ -119.523463619999973, 49.882348145000023 ], [ -119.523294253999936, 49.882351833000079 ], [ -119.523006312999939, 49.88158770600004 ], [ -119.522896490999955, 49.879481553000097 ], [ -119.522560201999951, 49.879461608000057 ], [ -119.522841703, 49.878507006000063 ], [ -119.522630505999985, 49.87820648400006 ], [ -119.522014007999985, 49.877976513000071 ], [ -119.521763890999949, 49.877883210000064 ], [ -119.521188446999972, 49.87780525000008 ], [ -119.52034061599997, 49.877689624000055 ], [ -119.520332489999959, 49.877618351000095 ], [ -119.520758709999939, 49.87760242800006 ], [ -119.521260890999912, 49.877646681000051 ], [ -119.522289876999977, 49.877906362000019 ], [ -119.522834215, 49.878076802000081 ], [ -119.52334618499998, 49.878357297000072 ], [ -119.523564616999963, 49.878552606000049 ], [ -119.523727968999978, 49.8786986900001 ], [ -119.523796857999955, 49.878787193000051 ], [ -119.524041070999971, 49.879101022000107 ], [ -119.524182184999987, 49.879553641000022 ], [ -119.524139804999948, 49.881180986000082 ], [ -119.524201336999937, 49.881544906000087 ], [ -119.52438003899999, 49.881949222000117 ], [ -119.525094899999942, 49.882680556000039 ], [ -119.526034326999962, 49.88358908000005 ], [ -119.526065210999946, 49.884180560000075 ], [ -119.524287619999953, 49.884219297000065 ], [ -119.523939401999897, 49.883462395000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133189751", "BldgCostT": "91855001", "sL_LossRatio": "1", "sL_AssetLoss": "9052.8", "sL_BldgLoss": "9052.8", "sL_StrLoss": "9052.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E142375EAEE25DC0DF3CEEBE57F14840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.536023498999938, 49.892558210000097 ], [ -119.534826113999927, 49.891774889000054 ], [ -119.534650545999952, 49.891696546000055 ], [ -119.532116488999947, 49.890565704000068 ], [ -119.531385002999983, 49.890410498000023 ], [ -119.531081186, 49.890732406000055 ], [ -119.530731786999951, 49.890686795000079 ], [ -119.530702495999947, 49.890668759000057 ], [ -119.53066008499998, 49.890642695000047 ], [ -119.530852807999977, 49.890332195000092 ], [ -119.530823190999939, 49.890073001000076 ], [ -119.530738348999961, 49.889995295000055 ], [ -119.530867370999943, 49.889085423000026 ], [ -119.531271064999942, 49.889109330000082 ], [ -119.531754346999946, 49.889137946000069 ], [ -119.531740242999931, 49.888868491000046 ], [ -119.531714422999983, 49.888375217000039 ], [ -119.532900680999916, 49.888349293000047 ], [ -119.532966106999979, 49.888347863000078 ], [ -119.533008455999976, 49.889156551000021 ], [ -119.532321967999948, 49.889171555000054 ], [ -119.534268413999897, 49.88928678000012 ], [ -119.534260156999906, 49.889129184000097 ], [ -119.534677390999931, 49.889120058000088 ], [ -119.534663263999988, 49.888850496000011 ], [ -119.535455451999937, 49.888833166000076 ], [ -119.536562845, 49.888808931000028 ], [ -119.537583876999918, 49.888786577000076 ], [ -119.537598018999958, 49.889056139000061 ], [ -119.5380152499999, 49.889047 ], [ -119.538029395999956, 49.889316562000047 ], [ -119.53886386299996, 49.889298282000034 ], [ -119.538878012999959, 49.889567844000084 ], [ -119.539295248999906, 49.889558702000066 ], [ -119.539300926999942, 49.889666884000093 ], [ -119.5393094, 49.889828264000116 ], [ -119.539726636999944, 49.889819121000102 ], [ -119.53976910099999, 49.890627804000076 ], [ -119.539351857999947, 49.890636948000079 ], [ -119.539366008999963, 49.890906510000093 ], [ -119.538948761999947, 49.8909156530001 ], [ -119.538962912999963, 49.89118521299999 ], [ -119.538545662999979, 49.891194354000085 ], [ -119.538550161999964, 49.89128007900004 ], [ -119.54150604599999, 49.891454868000061 ], [ -119.541334429999978, 49.892667026000055 ], [ -119.54154782099999, 49.892679642000097 ], [ -119.541494736999965, 49.891669457000035 ], [ -119.541911989999932, 49.891660304000034 ], [ -119.541869488999936, 49.890851623000096 ], [ -119.542286734999934, 49.890842470000052 ], [ -119.542272565999909, 49.890572908000131 ], [ -119.54268981, 49.89056375300008 ], [ -119.542633125999942, 49.889485511000068 ], [ -119.543050359999924, 49.889476355000085 ], [ -119.542993671999938, 49.888398112000097 ], [ -119.543410896999902, 49.888388955000053 ], [ -119.543396722999915, 49.888119395000032 ], [ -119.543813944999926, 49.888110236000031 ], [ -119.54372889099993, 49.88649287200009 ], [ -119.544146099999949, 49.886483714000079 ], [ -119.54411774499999, 49.885944592000094 ], [ -119.543283337999938, 49.885962909000042 ], [ -119.54322095899991, 49.884776378 ], [ -119.539189490999973, 49.884537993000095 ], [ -119.539204339, 49.884433132000041 ], [ -119.538801567999926, 49.884441957000028 ], [ -119.538609212999987, 49.884446172000025 ], [ -119.538595067999935, 49.884176609000079 ], [ -119.538177877999914, 49.88418574800005 ], [ -119.538149593999918, 49.883646625 ], [ -119.537315221999933, 49.883664898000035 ], [ -119.537307896999934, 49.883525225000092 ], [ -119.533605612999935, 49.883306102000077 ], [ -119.535393988999942, 49.88211768900004 ], [ -119.535430976999976, 49.882141171000065 ], [ -119.535527286999937, 49.88220231400004 ], [ -119.535931383999952, 49.881913809000089 ], [ -119.536682077999927, 49.881377646000018 ], [ -119.537075883999961, 49.880895299000031 ], [ -119.538470632, 49.878661753000067 ], [ -119.539853007999938, 49.876445517000093 ], [ -119.540412519999975, 49.875778797000059 ], [ -119.540649254999948, 49.87557258700005 ], [ -119.540715985999938, 49.876843582000035 ], [ -119.54029886, 49.876852727000063 ], [ -119.54031301199997, 49.87712228900007 ], [ -119.542033358999959, 49.877084562000121 ], [ -119.54226423599999, 49.875453049000107 ], [ -119.545681940999941, 49.875655097000021 ], [ -119.546081869999938, 49.875646310000086 ], [ -119.546035174999957, 49.87475876400007 ], [ -119.54310294899993, 49.874585429000071 ], [ -119.543119571999952, 49.87490174700006 ], [ -119.541542014999919, 49.874936362000078 ], [ -119.541727423999959, 49.874818177000066 ], [ -119.542554801000023, 49.874429182000078 ], [ -119.543228422999945, 49.87418006900009 ], [ -119.544268706999958, 49.87386595600006 ], [ -119.544404220999951, 49.874023850000057 ], [ -119.544557215999959, 49.874077957000083 ], [ -119.544729307999944, 49.874065561000066 ], [ -119.545299001999965, 49.873802264000098 ], [ -119.54562298499998, 49.873652488000062 ], [ -119.54653989199997, 49.873391612000091 ], [ -119.54675427799998, 49.873382990000032 ], [ -119.546890932999972, 49.873377513000023 ], [ -119.546943113999973, 49.873912161000092 ], [ -119.546941836999977, 49.874033876000112 ], [ -119.546927618999959, 49.875417197000033 ], [ -119.546914443999967, 49.876698288000043 ], [ -119.546904431999948, 49.877675057000012 ], [ -119.547268361999926, 49.880628605000069 ], [ -119.547261906999907, 49.884396101000085 ], [ -119.547048780999887, 49.88438351000007 ], [ -119.547105398999946, 49.883983185000019 ], [ -119.546941604999986, 49.883973508000047 ], [ -119.547129732999935, 49.882643282000096 ], [ -119.545610040000014, 49.882553490000085 ], [ -119.545644706999923, 49.883212337000025 ], [ -119.546061884999915, 49.883203171000034 ], [ -119.546147005999956, 49.88482053300001 ], [ -119.545729813, 49.884829699000058 ], [ -119.545780898999936, 49.885800463000059 ], [ -119.547395839999979, 49.885895873000052 ], [ -119.547896395999913, 49.887922398000057 ], [ -119.547832385999953, 49.888371925000058 ], [ -119.547824745999961, 49.88839059100011 ], [ -119.547200048999926, 49.889925122000093 ], [ -119.546920158999953, 49.892329297000067 ], [ -119.54667722799995, 49.894093655000141 ], [ -119.546713203999985, 49.895137762000076 ], [ -119.546541475999916, 49.895284869000101 ], [ -119.541472545999937, 49.895198552000068 ], [ -119.540934029999931, 49.895279552000027 ], [ -119.538558221999935, 49.895210449000089 ], [ -119.538802787999913, 49.894837004000109 ], [ -119.53880533499999, 49.89467829900007 ], [ -119.538805691999954, 49.894656109000067 ], [ -119.538491199999925, 49.894213097000026 ], [ -119.53768748499999, 49.893520995000053 ], [ -119.536705905999952, 49.892858704000119 ], [ -119.536664760999926, 49.892840587000052 ], [ -119.536143153999944, 49.892610905000019 ], [ -119.536023498999938, 49.892558210000097 ] ], [ [ -119.545496096999969, 49.886401105000054 ], [ -119.545526877999919, 49.886183518000031 ], [ -119.54538353699995, 49.886186666000121 ], [ -119.545394506000022, 49.88639510200003 ], [ -119.545496096999969, 49.886401105000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "66", "sL_BldgLoss": "66", "sL_StrLoss": "66", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005EC490FF36E35DC0EDAA9375B0EF4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.544268706999958, 49.87386595600006 ], [ -119.546580945999963, 49.873189962000062 ], [ -119.546906136999922, 49.873090291999986 ], [ -119.550308176999948, 49.872047614000103 ], [ -119.550921103999883, 49.871838663000105 ], [ -119.55133534, 49.871697434000112 ], [ -119.551887055999927, 49.871450111000122 ], [ -119.552378985999894, 49.871186502000072 ], [ -119.553622817999951, 49.871928371000081 ], [ -119.551145251999912, 49.87324630500008 ], [ -119.546922116999966, 49.8732358130001 ], [ -119.546890932999972, 49.873377513000023 ], [ -119.54675427799998, 49.873382990000032 ], [ -119.54653989199997, 49.873391612000091 ], [ -119.54562298499998, 49.873652488000062 ], [ -119.545299001999965, 49.873802264000098 ], [ -119.544729307999944, 49.874065561000066 ], [ -119.544557215999959, 49.874077957000083 ], [ -119.544404220999951, 49.874023850000057 ], [ -119.544268706999958, 49.87386595600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4128333", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "572.3", "sL_BldgLoss": "572.3", "sL_StrLoss": "572.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000758D75F553C35DC047A32BA68C5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.052610423999937, 50.70507110300008 ], [ -119.053172406000016, 50.704283320000044 ], [ -119.055658826999974, 50.704438497000083 ], [ -119.055581029999985, 50.704939737000053 ], [ -119.055844754999953, 50.704956193000065 ], [ -119.055812865999954, 50.705161658000073 ], [ -119.056298855999927, 50.705191981000084 ], [ -119.055743872999955, 50.708767680000058 ], [ -119.052977426, 50.708595043000052 ], [ -119.052893368999946, 50.709136344000029 ], [ -119.05252997299999, 50.70911366100006 ], [ -119.05249576199995, 50.709333952000122 ], [ -119.052069052999983, 50.709307316000057 ], [ -119.052034753999948, 50.709528163000094 ], [ -119.051666525999977, 50.709505176000057 ], [ -119.051621050999955, 50.70979797100005 ], [ -119.045981043999987, 50.709445738000092 ], [ -119.046168218999952, 50.708241580000049 ], [ -119.047760595999961, 50.707845390000116 ], [ -119.050696218999946, 50.706597804000054 ], [ -119.052610423999937, 50.70507110300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "85.1", "sL_BldgLoss": "85.1", "sL_StrLoss": "85.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F6F4F6759C35DC0700D096BA55F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.051123114999939, 50.745325782000073 ], [ -119.054163817999964, 50.745515417000085 ], [ -119.053608165999933, 50.749090935000012 ], [ -119.050268237999958, 50.748882635000029 ], [ -119.050704116999924, 50.748005300000067 ], [ -119.050610592999959, 50.747162195000065 ], [ -119.051111509999927, 50.746326205000059 ], [ -119.051123114999939, 50.745325782000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.7", "sL_BldgLoss": "41.7", "sL_StrLoss": "41.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B1CD96C17C35DC0008D14C2515A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.050019462999927, 50.704086465000039 ], [ -119.05090161899993, 50.704141552000074 ], [ -119.050464393999917, 50.704883113000108 ], [ -119.049949189999921, 50.705395810000034 ], [ -119.048036012999916, 50.706328692000056 ], [ -119.046378541999928, 50.706888416000062 ], [ -119.046536812999946, 50.705870090000111 ], [ -119.046704237999961, 50.705880551000092 ], [ -119.046782030999978, 50.705379995000058 ], [ -119.047409467999927, 50.70541919300004 ], [ -119.04741150199996, 50.705406109000116 ], [ -119.047774864999937, 50.705428808000065 ], [ -119.04780909599999, 50.705208517000095 ], [ -119.049825599999977, 50.705334466000075 ], [ -119.050019462999927, 50.704086465000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "119.1", "sL_BldgLoss": "119.1", "sL_StrLoss": "119.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADECAB40E7C75DC0ADAE1AB6F3574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.119967410999976, 50.690470325000028 ], [ -119.120043497999944, 50.689975320000059 ], [ -119.120008046999899, 50.689973128000098 ], [ -119.12055768, 50.686397031000062 ], [ -119.123313302999989, 50.686567398000058 ], [ -119.123612346999948, 50.684620696000103 ], [ -119.125061660999947, 50.68471027300005 ], [ -119.125173514999986, 50.683981931000069 ], [ -119.128233543999968, 50.684170996000056 ], [ -119.128312809999983, 50.684502976000068 ], [ -119.128243549999979, 50.684722518000015 ], [ -119.127733240999973, 50.685219887000116 ], [ -119.127581182999947, 50.685529838000072 ], [ -119.127573783999978, 50.685544858000107 ], [ -119.127272441999978, 50.685904391000122 ], [ -119.127189464999944, 50.685942996000072 ], [ -119.126953767, 50.68605258300007 ], [ -119.12570556599999, 50.686379788000103 ], [ -119.125406318999936, 50.686591632000024 ], [ -119.125157977999905, 50.686767420000109 ], [ -119.124866950999944, 50.686929939000024 ], [ -119.124705620999961, 50.687211485 ], [ -119.124676043999955, 50.687598622000081 ], [ -119.12460729899999, 50.687851621000036 ], [ -119.12429671299999, 50.688095051000047 ], [ -119.12372611899994, 50.688428909000024 ], [ -119.123457381999941, 50.688853627000121 ], [ -119.122931308999981, 50.68948085100007 ], [ -119.12283688199993, 50.689660038000028 ], [ -119.122690884999898, 50.690119427000063 ], [ -119.122345343999967, 50.690469905000043 ], [ -119.12224250099996, 50.690610986000095 ], [ -119.119967410999976, 50.690470325000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020208", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3701584", "BldgCostT": "2343334", "sL_LossRatio": "0.995604493680065", "sL_AssetLoss": "89.637", "sL_BldgLoss": "89.243", "sL_StrLoss": "89.1", "sL_NStrLoss": "0.143", "sL_ContLoss": "0.394", "geom_point": "0101000020E610000086E8103852C55DC07887CA7589564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.083847672999966, 50.672378679000069 ], [ -119.087035202999971, 50.672576866000043 ], [ -119.086483070999961, 50.676152855000076 ], [ -119.085963695000018, 50.676120569000098 ], [ -119.085622956999941, 50.678326970000057 ], [ -119.084456943999967, 50.678254478000071 ], [ -119.08431184799997, 50.679193798000071 ], [ -119.079212052999964, 50.678876595000148 ], [ -119.079154126, 50.679251315000045 ], [ -119.078365019999978, 50.679202212000128 ], [ -119.078293711999933, 50.679663433000016 ], [ -119.077886386999978, 50.679638085000072 ], [ -119.078526704999945, 50.678744603000027 ], [ -119.079509193999982, 50.676612507000108 ], [ -119.08041009799993, 50.67522958899999 ], [ -119.081187980999943, 50.674550292 ], [ -119.081208419999939, 50.67437940300006 ], [ -119.081544691999966, 50.674282495000099 ], [ -119.081897895999958, 50.673980606000143 ], [ -119.082538887999988, 50.673725714000071 ], [ -119.083124287999979, 50.673230013000115 ], [ -119.083847672999966, 50.672378679000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54171579", "BldgCostT": "34915744", "sL_LossRatio": "0.996231699354118", "sL_AssetLoss": "2542.26", "sL_BldgLoss": "2532.68", "sL_StrLoss": "2529.2", "sL_NStrLoss": "3.48", "sL_ContLoss": "9.58", "geom_point": "0101000020E6100000053DFE7F5AC25DC0285379F9255A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.028265140999935, 50.72634951400002 ], [ -119.028472944999962, 50.725016584000095 ], [ -119.02799582599998, 50.724986709000113 ], [ -119.028212381999964, 50.723597640000044 ], [ -119.027689611999961, 50.723564903000117 ], [ -119.028247013999973, 50.719989407000128 ], [ -119.028425737999967, 50.720000599000088 ], [ -119.02876171299999, 50.717845114000092 ], [ -119.030084863999946, 50.717927964000118 ], [ -119.030152372999979, 50.717494745000103 ], [ -119.032300732999957, 50.717629232000078 ], [ -119.0355660099999, 50.717833557000084 ], [ -119.03567880899999, 50.71710912700015 ], [ -119.035065448999902, 50.717119840000109 ], [ -119.03505451699999, 50.716867488000055 ], [ -119.033135793999989, 50.716747423000115 ], [ -119.029686069999968, 50.716531472000021 ], [ -119.030243223999946, 50.712955935000089 ], [ -119.030517185999912, 50.712973090000105 ], [ -119.030556423999911, 50.712721242000057 ], [ -119.030870737999962, 50.71274092200008 ], [ -119.031088779999948, 50.711341351000094 ], [ -119.031271103999956, 50.71135276600004 ], [ -119.031283333999923, 50.711274264000075 ], [ -119.030875277999939, 50.711248714000057 ], [ -119.031432271999975, 50.70767315000009 ], [ -119.031968128999935, 50.707706700000074 ], [ -119.032238433999936, 50.705971165000044 ], [ -119.032869211999966, 50.706010655000064 ], [ -119.032957255, 50.705445281000117 ], [ -119.032072025, 50.705389860000125 ], [ -119.032628851999945, 50.701814264000035 ], [ -119.03284994399999, 50.701828107000026 ], [ -119.032883252999952, 50.701614194000086 ], [ -119.032788910999955, 50.701608287000063 ], [ -119.032798331999928, 50.701547792000049 ], [ -119.030261234999927, 50.701388917000074 ], [ -119.030276451999953, 50.701291230000045 ], [ -119.028378882999945, 50.701172365000076 ], [ -119.02838334199997, 50.701143748000014 ], [ -119.027419155999965, 50.701083338000046 ], [ -119.02797629899996, 50.697507748000085 ], [ -119.02870361399998, 50.697553318000061 ], [ -119.028765983999989, 50.697152965000036 ], [ -119.03440431099996, 50.697506074000124 ], [ -119.034341359999971, 50.697910484000012 ], [ -119.035715015999926, 50.697996467000102 ], [ -119.036163776999928, 50.695112829000067 ], [ -119.03736356099995, 50.695187915000083 ], [ -119.037440967999885, 50.694690393000059 ], [ -119.032533601999916, 50.694383193000064 ], [ -119.032638237999933, 50.693711115000035 ], [ -119.030577387, 50.693582041000113 ], [ -119.031134185, 50.690006403000027 ], [ -119.031210180999949, 50.690011163000122 ], [ -119.031259797999965, 50.689692505000046 ], [ -119.031287903999953, 50.689694266000082 ], [ -119.031413936999968, 50.688884806000019 ], [ -119.033794159999928, 50.689033878000011 ], [ -119.034208757999963, 50.686369964000029 ], [ -119.039845772999968, 50.686722802000133 ], [ -119.039289707999956, 50.690298497000072 ], [ -119.03701459699991, 50.690156127000066 ], [ -119.036876372999942, 50.69104458000001 ], [ -119.038727818999988, 50.691160441000086 ], [ -119.038178989999949, 50.694688677000087 ], [ -119.03820141099996, 50.694690080000036 ], [ -119.038701471999971, 50.691475379000074 ], [ -119.04191653399991, 50.691676501000082 ], [ -119.042079362999971, 50.691686683000057 ], [ -119.042131728999934, 50.691349856000109 ], [ -119.042536310999978, 50.691375158000035 ], [ -119.042593127999922, 50.691009666000049 ], [ -119.047028131999937, 50.691286923000099 ], [ -119.047027305999976, 50.691317485000077 ], [ -119.048042432999964, 50.692574698000108 ], [ -119.047675336999987, 50.694937795000087 ], [ -119.047270719999915, 50.694912513000112 ], [ -119.04721393600002, 50.69527800500002 ], [ -119.046651750999985, 50.695242874000023 ], [ -119.046625890999962, 50.695409303000062 ], [ -119.046959016999949, 50.695430122000111 ], [ -119.04689480499998, 50.695843400000079 ], [ -119.047581426999955, 50.695886305000045 ], [ -119.047025864999924, 50.699462 ], [ -119.045606849999956, 50.699373325000039 ], [ -119.045207124999976, 50.701945135000045 ], [ -119.044829522, 50.701921535000025 ], [ -119.044611877999941, 50.703321646000084 ], [ -119.04456795099999, 50.70331890000012 ], [ -119.044466507999942, 50.70397144700005 ], [ -119.043187564999968, 50.703891506000033 ], [ -119.042977514999905, 50.705242379000062 ], [ -119.039442289999926, 50.705021328000058 ], [ -119.039418916999963, 50.705171567000129 ], [ -119.039646637999951, 50.705167582000115 ], [ -119.039666871999913, 50.705633761000072 ], [ -119.039937819999977, 50.705650706000057 ], [ -119.039970125999943, 50.705443040000056 ], [ -119.045609582999944, 50.705795579000096 ], [ -119.045393734999976, 50.707184159000064 ], [ -119.04380078299998, 50.707644606000059 ], [ -119.043063812999947, 50.707945090000059 ], [ -119.041456889999921, 50.708459298000065 ], [ -119.040724003999983, 50.708876601000057 ], [ -119.04004050899999, 50.709464801000102 ], [ -119.040014861999964, 50.709515423000084 ], [ -119.038356772999961, 50.709411726000042 ], [ -119.038630362999967, 50.707653537000084 ], [ -119.038311062999981, 50.707633565000052 ], [ -119.038173590999989, 50.70851698000007 ], [ -119.03754277299997, 50.70847752100012 ], [ -119.037321431999928, 50.709899696999983 ], [ -119.037193590999948, 50.709891700000107 ], [ -119.037184329999917, 50.709951209000089 ], [ -119.039713917999919, 50.710109423000105 ], [ -119.039493584, 50.710544308000124 ], [ -119.039119987999982, 50.711729303000084 ], [ -119.039135904999952, 50.712448493000082 ], [ -119.038914281999922, 50.713669806000013 ], [ -119.036445428999968, 50.713515385000086 ], [ -119.036307726999951, 50.714399923000073 ], [ -119.037921295999979, 50.714371719000027 ], [ -119.037932991999952, 50.714641336000106 ], [ -119.038357656999921, 50.71463391000006 ], [ -119.038359836999959, 50.714684165000065 ], [ -119.038939288999956, 50.714720403000065 ], [ -119.03897360399999, 50.714898089000044 ], [ -119.039530510999953, 50.715670085000127 ], [ -119.040063010999958, 50.716147202000101 ], [ -119.040882392999947, 50.716789497000015 ], [ -119.041360902999884, 50.71702310600007 ], [ -119.042021012999967, 50.717494006000017 ], [ -119.041847622999981, 50.71860857300004 ], [ -119.041691318999966, 50.718598804000052 ], [ -119.040299088999973, 50.717680988000041 ], [ -119.039607613999948, 50.717431791000088 ], [ -119.037931821999948, 50.717326401000101 ], [ -119.037359997999957, 50.717192502000074 ], [ -119.036621918999955, 50.717520099000076 ], [ -119.03594276299999, 50.718170010000037 ], [ -119.035746575999923, 50.718157737000134 ], [ -119.035750685000025, 50.718131346000078 ], [ -119.035749127999978, 50.718131248000098 ], [ -119.0357081329999, 50.71839453200009 ], [ -119.035099314999982, 50.718977106000125 ], [ -119.03493561399992, 50.71947409300008 ], [ -119.034967578999954, 50.721497894000024 ], [ -119.034732177999985, 50.722292596000095 ], [ -119.03471069699998, 50.722752610000072 ], [ -119.034932485999931, 50.722990492000058 ], [ -119.035460422999989, 50.723071706000077 ], [ -119.035570805999967, 50.72332229500006 ], [ -119.034940691999964, 50.72382789600011 ], [ -119.034692703999951, 50.724344891000086 ], [ -119.034301497999962, 50.724773593000037 ], [ -119.033654706999954, 50.725208001000048 ], [ -119.03337462199994, 50.725293403000094 ], [ -119.033035395999917, 50.725336194000107 ], [ -119.032535388999946, 50.72556969500004 ], [ -119.031821294999929, 50.72640011400005 ], [ -119.031624347, 50.726559795000107 ], [ -119.030501181999938, 50.726489498000021 ], [ -119.028265140999935, 50.72634951400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6017583", "BldgCostT": "3678333", "sL_LossRatio": "1", "sL_AssetLoss": "212", "sL_BldgLoss": "212", "sL_StrLoss": "212", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008CB96B47BC15DC0F46AE3FC8B5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.021079686999911, 50.750016247000069 ], [ -119.021257750999965, 50.748875908000052 ], [ -119.0210049249999, 50.74886007 ], [ -119.021319533999971, 50.746845200000067 ], [ -119.020610214, 50.746800760000106 ], [ -119.019984331999979, 50.74676154600008 ], [ -119.02054263699992, 50.743186184000095 ], [ -119.020718640999917, 50.743197213000023 ], [ -119.02273835699998, 50.743323744000065 ], [ -119.022837864999985, 50.742686236000097 ], [ -119.023345778999925, 50.742718049000104 ], [ -119.02370194, 50.742740357000066 ], [ -119.023735306, 50.742963591000063 ], [ -119.02392028899996, 50.743293996000091 ], [ -119.024186485999934, 50.743540409000019 ], [ -119.025792904999918, 50.744330786000042 ], [ -119.026155504999963, 50.74481078400003 ], [ -119.026248597999924, 50.745366286000099 ], [ -119.025800986999968, 50.746148107000117 ], [ -119.025895386999949, 50.746370312000039 ], [ -119.026391185999913, 50.747009809000147 ], [ -119.026402503999961, 50.747279003000052 ], [ -119.02580599599996, 50.747901291000062 ], [ -119.024944709999886, 50.749301283000136 ], [ -119.025029318999984, 50.749597599 ], [ -119.025547673999938, 50.750026019000046 ], [ -119.02549838399996, 50.750025960000045 ], [ -119.025085480999977, 50.750024841000062 ], [ -119.021079686999911, 50.750016247000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "67.5", "sL_BldgLoss": "67.5", "sL_StrLoss": "67.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5FA4B209FC35DC07B7B212ECA594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.054645784999977, 50.70107759200009 ], [ -119.054418438999946, 50.699382197000034 ], [ -119.058828982999941, 50.699657400000063 ], [ -119.058775497999974, 50.700002195000117 ], [ -119.05895990399992, 50.700013697000053 ], [ -119.058405196999942, 50.703589431000111 ], [ -119.053869279999958, 50.703306411 ], [ -119.054546792999972, 50.702356594000051 ], [ -119.05465852399999, 50.701976307000066 ], [ -119.054645784999977, 50.70107759200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.2", "sL_BldgLoss": "31.2", "sL_StrLoss": "31.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CEECEBA79CC85DC0ABBEA9FEF7564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.133463131999932, 50.681656836000052 ], [ -119.133589102999963, 50.680835495000075 ], [ -119.133348056999949, 50.680820615000087 ], [ -119.133896514999947, 50.677244415000089 ], [ -119.135487843999968, 50.677342636000041 ], [ -119.135483801999911, 50.677773485000102 ], [ -119.13549952599999, 50.677900282000046 ], [ -119.135510479999951, 50.677988993000113 ], [ -119.135865902999939, 50.678918001000071 ], [ -119.135772996999947, 50.679385103000094 ], [ -119.135648743999965, 50.679619267000056 ], [ -119.135468789999948, 50.679958405000036 ], [ -119.135468524, 50.679990363000087 ], [ -119.135467380999955, 50.680125297000068 ], [ -119.135450720999955, 50.680652205000065 ], [ -119.135283495999914, 50.681074198000061 ], [ -119.135104993999946, 50.681375517000063 ], [ -119.134744424999965, 50.681496617000086 ], [ -119.134587590999928, 50.681549291000124 ], [ -119.133719773999957, 50.681666485000086 ], [ -119.133596794999917, 50.681683100000029 ], [ -119.133463131999932, 50.681656836000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "126.9", "sL_BldgLoss": "126.9", "sL_StrLoss": "126.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F213705AAC15DC0F36FFA27F65D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.03020859499999, 50.731383811000079 ], [ -119.030514032000013, 50.731402927000019 ], [ -119.030145598999937, 50.732195207000068 ], [ -119.029903904999969, 50.732531301000037 ], [ -119.029066292999971, 50.733139398000048 ], [ -119.028316411999953, 50.733845794000025 ], [ -119.026376901999939, 50.735831203000075 ], [ -119.026003394999947, 50.736376605000061 ], [ -119.02579280899991, 50.737091585000037 ], [ -119.025690015999956, 50.737251512000043 ], [ -119.025026919999974, 50.737209985000092 ], [ -119.022455792999921, 50.737048933000047 ], [ -119.02301378, 50.733473519000057 ], [ -119.025437678999978, 50.7336253510001 ], [ -119.025830088999939, 50.731109678000088 ], [ -119.03020859499999, 50.731383811000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25603250", "BldgCostT": "15710000", "sL_LossRatio": "0.99982955901885", "sL_AssetLoss": "874.2029", "sL_BldgLoss": "874.0539", "sL_StrLoss": "874", "sL_NStrLoss": "0.0539", "sL_ContLoss": "0.149", "geom_point": "0101000020E6100000FFEF67FC6BC35DC0474594DDE9564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.046148565999943, 50.68706081000002 ], [ -119.046154955999938, 50.687019680000034 ], [ -119.045494076999944, 50.686978367000066 ], [ -119.046049605999968, 50.683402627000106 ], [ -119.046597568999942, 50.68343688200013 ], [ -119.04662389, 50.683267440000094 ], [ -119.047688203999883, 50.683333966000127 ], [ -119.047877224999965, 50.682116883000056 ], [ -119.047065071999938, 50.68206612000008 ], [ -119.047160003999977, 50.681454914000078 ], [ -119.046551997999941, 50.68141690700007 ], [ -119.047065400999955, 50.678111413000124 ], [ -119.047107374999925, 50.677841138000126 ], [ -119.049027249999966, 50.677961141000054 ], [ -119.049056836999966, 50.677770579 ], [ -119.048924034999956, 50.677762279000113 ], [ -119.049479177999942, 50.674186484000067 ], [ -119.05135826799993, 50.674303907000088 ], [ -119.051867251999951, 50.671024031000108 ], [ -119.055908927999937, 50.67127648600006 ], [ -119.05591016299995, 50.671268523000073 ], [ -119.056059305999952, 50.671277836000044 ], [ -119.056131277999967, 50.670813727000109 ], [ -119.056793093999929, 50.670855051000025 ], [ -119.057062332999962, 50.669118644000058 ], [ -119.057520346000018, 50.669147241000054 ], [ -119.057554623999962, 50.668926155000058 ], [ -119.059020090999965, 50.669017639000067 ], [ -119.059340219999967, 50.669303705000083 ], [ -119.059588294999983, 50.66940950800003 ], [ -119.059978897999954, 50.669432010000037 ], [ -119.060926310999932, 50.669348512000049 ], [ -119.061279098999975, 50.669347994000063 ], [ -119.061575192999896, 50.669410694000099 ], [ -119.062034000999972, 50.669589199000136 ], [ -119.062571084999959, 50.669620903000038 ], [ -119.062750297999969, 50.669602289000075 ], [ -119.062914812999921, 50.669486092000064 ], [ -119.063130191999946, 50.669124107000123 ], [ -119.063365193999971, 50.669103592000077 ], [ -119.063243611999937, 50.669355885000051 ], [ -119.06285070200002, 50.669900116000086 ], [ -119.062125439999974, 50.67056052300007 ], [ -119.061968303999905, 50.67070360500005 ], [ -119.06094350599993, 50.671636745000072 ], [ -119.060383098999964, 50.672147013000078 ], [ -119.059838470999964, 50.672627260000063 ], [ -119.059216552999942, 50.673175686000057 ], [ -119.056423398999954, 50.675638498000062 ], [ -119.055657278999931, 50.676588090000038 ], [ -119.055293921999947, 50.677163231000065 ], [ -119.055148181000021, 50.677393896000098 ], [ -119.054936474999963, 50.677917443000062 ], [ -119.054835409999924, 50.678167352000102 ], [ -119.061978380999903, 50.67826352900012 ], [ -119.061971720999978, 50.678306509000087 ], [ -119.06196151799999, 50.67830587200006 ], [ -119.061747488999941, 50.679686911000012 ], [ -119.056764670999925, 50.679375972000059 ], [ -119.056735401999944, 50.679564692000028 ], [ -119.059658680999959, 50.679747139000028 ], [ -119.059630002999967, 50.679932124000118 ], [ -119.05965269299999, 50.679933540000036 ], [ -119.059098288999948, 50.683509362000073 ], [ -119.059005627999966, 50.683503580000036 ], [ -119.058986791999956, 50.68362506400014 ], [ -119.058390192999951, 50.683587835000075 ], [ -119.058348877, 50.683854278000119 ], [ -119.058165191999976, 50.683842815000048 ], [ -119.057015342999946, 50.683771052000097 ], [ -119.056938137999964, 50.684268809000081 ], [ -119.055795990999982, 50.684197515000101 ], [ -119.055660927999924, 50.685068136000062 ], [ -119.054007237999912, 50.68496489000006 ], [ -119.053613475, 50.687502278000075 ], [ -119.05178959099996, 50.687388377000055 ], [ -119.051778594, 50.687459219000104 ], [ -119.046141391999967, 50.687106985000121 ], [ -119.046148565999943, 50.68706081000002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14003333", "BldgCostT": "8183333", "sL_LossRatio": "1", "sL_AssetLoss": "231", "sL_BldgLoss": "231", "sL_StrLoss": "231", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5B485ADBAC45DC03E520ADBCB574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.069589930999939, 50.690055130000133 ], [ -119.069646448999947, 50.689690125 ], [ -119.068967235999963, 50.6896478130001 ], [ -119.069001172999947, 50.68942865700005 ], [ -119.068965929999962, 50.689426461000068 ], [ -119.068711441999938, 50.689410606000067 ], [ -119.068769682999942, 50.689034521000075 ], [ -119.067969846, 50.688984687000101 ], [ -119.068149792999947, 50.687822776000083 ], [ -119.067429208999954, 50.687777874000098 ], [ -119.067485886999961, 50.68741193000011 ], [ -119.06761030399997, 50.687356783000013 ], [ -119.068949216999954, 50.686559206000027 ], [ -119.069778819999954, 50.686130505000072 ], [ -119.070824463999926, 50.685240201000099 ], [ -119.070857712999938, 50.685211888000062 ], [ -119.071972001999939, 50.684185095000025 ], [ -119.073552300999935, 50.683095501000139 ], [ -119.074075020999913, 50.682726707000079 ], [ -119.074762890999949, 50.682588504000037 ], [ -119.07559589, 50.682259507000033 ], [ -119.076225197999975, 50.681743990000037 ], [ -119.076927303, 50.680976288000096 ], [ -119.077834619999933, 50.679710318000076 ], [ -119.077663326000035, 50.68081813 ], [ -119.080190429, 50.680975372000084 ], [ -119.079637647999988, 50.684551292000073 ], [ -119.075756071999976, 50.684309749000093 ], [ -119.075370116, 50.686804738000049 ], [ -119.075780890999951, 50.686830306000054 ], [ -119.07522768599992, 50.690406180000103 ], [ -119.069589930999939, 50.690055130000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11308333", "BldgCostT": "7063333", "sL_LossRatio": "1", "sL_AssetLoss": "784", "sL_BldgLoss": "784", "sL_StrLoss": "784", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E6AC0DECCC35DC0B8C90B5DC7584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.053447685999913, 50.696322203000115 ], [ -119.052209503999961, 50.694563286000111 ], [ -119.051237940999926, 50.693768728000109 ], [ -119.051592705999951, 50.691483772000034 ], [ -119.051615496999915, 50.691485195000048 ], [ -119.051635512999965, 50.691356273000103 ], [ -119.052033219999899, 50.691381110000066 ], [ -119.05204559699996, 50.691301382000056 ], [ -119.054137789999956, 50.691432020000072 ], [ -119.054258512999951, 50.690654116000104 ], [ -119.055659787999943, 50.690581205000079 ], [ -119.05795940199999, 50.690712203000025 ], [ -119.058850604000014, 50.690677991000037 ], [ -119.059453793999978, 50.690549911000048 ], [ -119.060163415999938, 50.690362542000038 ], [ -119.060072781999949, 50.690947058000049 ], [ -119.060441677999975, 50.69097006900008 ], [ -119.060510269999909, 50.690527673000126 ], [ -119.061295940999983, 50.69057667600002 ], [ -119.061346850999954, 50.690248291000117 ], [ -119.066984566999906, 50.690599757000079 ], [ -119.066958997999976, 50.690764818000105 ], [ -119.067907167999962, 50.69082390000009 ], [ -119.068990613999972, 50.690891402000133 ], [ -119.068436817999938, 50.694467224000107 ], [ -119.068268248999942, 50.69445672300013 ], [ -119.06824871699996, 50.694582828000136 ], [ -119.06809030699999, 50.694572959000013 ], [ -119.068090109999943, 50.694574232000036 ], [ -119.066688846999909, 50.694486924000103 ], [ -119.065769769999989, 50.694429649000014 ], [ -119.065722615, 50.694733985000092 ], [ -119.065581277999954, 50.694725177000073 ], [ -119.065547418999955, 50.694943689000048 ], [ -119.065180574999914, 50.694920825000075 ], [ -119.065174503999927, 50.694959997000062 ], [ -119.064679618999961, 50.694929151000075 ], [ -119.06463409499996, 50.695222908000048 ], [ -119.058995817999957, 50.694871326000062 ], [ -119.059043797999934, 50.694561965000091 ], [ -119.058967836999926, 50.694557227000111 ], [ -119.059038162999926, 50.69410379700011 ], [ -119.057319871999965, 50.693996592000069 ], [ -119.057148151999954, 50.695103481000018 ], [ -119.057192327999957, 50.695106237000068 ], [ -119.057145052999928, 50.695410954000103 ], [ -119.058317512999963, 50.69548410700002 ], [ -119.057762810999975, 50.699059857000094 ], [ -119.056961181999938, 50.699009842000045 ], [ -119.056934581999968, 50.699181275000058 ], [ -119.056595308999945, 50.699160106000086 ], [ -119.056571773999963, 50.699311783000105 ], [ -119.054390744999978, 50.699175670000059 ], [ -119.054247409999903, 50.698106693000049 ], [ -119.053447685999913, 50.696322203000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020224", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "71.2", "sL_BldgLoss": "71.2", "sL_StrLoss": "71.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D15C5CC7AC55DC0793D770636554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.083958969999941, 50.664256329000082 ], [ -119.083866970000017, 50.664057331000095 ], [ -119.084698555999935, 50.664109054000079 ], [ -119.085231600999975, 50.664243301000035 ], [ -119.086521987999987, 50.664300207000061 ], [ -119.087216658, 50.664265637000042 ], [ -119.089072366999915, 50.664380993000059 ], [ -119.088980808999963, 50.664974311000044 ], [ -119.088721088999989, 50.665070704000073 ], [ -119.087921989999927, 50.665552110000199 ], [ -119.08659119, 50.666170208000068 ], [ -119.085095009999989, 50.66720418400007 ], [ -119.084414182000017, 50.667846504000103 ], [ -119.083974539999986, 50.668509745000044 ], [ -119.08313439699999, 50.668457489000033 ], [ -119.083141905999952, 50.668420178000147 ], [ -119.083609442999915, 50.667170660000082 ], [ -119.083885523999967, 50.666432903000093 ], [ -119.083972514999971, 50.664285604000021 ], [ -119.083958969999941, 50.664256329000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6017584", "BldgCostT": "3678334", "sL_LossRatio": "1", "sL_AssetLoss": "189.8", "sL_BldgLoss": "189.8", "sL_StrLoss": "189.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A5FA7C390C85DC03ED2F953D7554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.131556541999913, 50.675743475000083 ], [ -119.131572780999988, 50.675637609000027 ], [ -119.131215838999978, 50.67561556600004 ], [ -119.13138852899999, 50.674489832000084 ], [ -119.130681299999935, 50.674446153000083 ], [ -119.131229891999965, 50.670869938000102 ], [ -119.133925266999924, 50.671036381000064 ], [ -119.134109257999938, 50.669836371000066 ], [ -119.134053938999955, 50.669832955000054 ], [ -119.134545343999889, 50.666627644000101 ], [ -119.133105430999976, 50.666538736000042 ], [ -119.133249972999963, 50.66559603900005 ], [ -119.132819087, 50.665569429000072 ], [ -119.133134074999973, 50.663515069000013 ], [ -119.136505295999939, 50.663625634000013 ], [ -119.137159761999925, 50.663647068000067 ], [ -119.137156517999983, 50.663658408000046 ], [ -119.137113281999945, 50.664571802000076 ], [ -119.13699191399995, 50.664705090000027 ], [ -119.136909217, 50.664749857000047 ], [ -119.136867809999956, 50.664772286000058 ], [ -119.136678689999982, 50.664753493000077 ], [ -119.136208278999945, 50.66453850500011 ], [ -119.135969991999929, 50.664487710000053 ], [ -119.135638095999923, 50.664584496000096 ], [ -119.135498297999931, 50.664716712000036 ], [ -119.135344878999959, 50.665059195000048 ], [ -119.135322213999984, 50.665531592000065 ], [ -119.135348218, 50.666160504000104 ], [ -119.135464, 50.666842697000035 ], [ -119.135445206, 50.666956187000082 ], [ -119.135524275999913, 50.667261708000076 ], [ -119.135528300999951, 50.667277191000146 ], [ -119.135752492999956, 50.667837086000091 ], [ -119.13577077799999, 50.668014192000065 ], [ -119.135681814999955, 50.668270386000117 ], [ -119.135388701999915, 50.668540191 ], [ -119.135366089999962, 50.668569177000045 ], [ -119.135268404999962, 50.668694386000034 ], [ -119.135193988999958, 50.66896590300005 ], [ -119.135368100999941, 50.670010999000091 ], [ -119.135330089999925, 50.670613821000117 ], [ -119.135295600999939, 50.671160807000042 ], [ -119.135473052999956, 50.672333690000059 ], [ -119.135610003999929, 50.673238888000078 ], [ -119.135514591999964, 50.674492001000054 ], [ -119.135500564999973, 50.675986961000035 ], [ -119.131556541999913, 50.675743475000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "83.5", "sL_BldgLoss": "83.5", "sL_StrLoss": "83.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001637C9EA71C15DC0273ECACAA75E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.020575021999903, 50.741425172000064 ], [ -119.020627124999962, 50.741091468000121 ], [ -119.020563345999918, 50.741087472000082 ], [ -119.020834328, 50.739351802000023 ], [ -119.021121533999974, 50.737512085000027 ], [ -119.02471059, 50.737736923000071 ], [ -119.025283380999923, 50.73777279500009 ], [ -119.024459682999975, 50.738715196000051 ], [ -119.024290686999962, 50.739068409000069 ], [ -119.024332821999934, 50.740029700000029 ], [ -119.023685906999972, 50.741166310000082 ], [ -119.023544825999963, 50.741611223000092 ], [ -119.023221670999959, 50.741590982000027 ], [ -119.020771584999949, 50.741437488000059 ], [ -119.020575021999903, 50.741425172000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12542244", "BldgCostT": "7674076", "sL_LossRatio": "1", "sL_AssetLoss": "425.2", "sL_BldgLoss": "425.2", "sL_StrLoss": "425.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009341416B36C45DC09816D43B85574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.057866167, 50.689199444000096 ], [ -119.057870677, 50.689170370000127 ], [ -119.055888305999943, 50.689046651000083 ], [ -119.055919530999958, 50.688845402000084 ], [ -119.055915520999946, 50.688845153000081 ], [ -119.056470244999943, 50.685269369000061 ], [ -119.057602240000037, 50.685340020000112 ], [ -119.057620497999963, 50.685222295000067 ], [ -119.058560866, 50.685280978000122 ], [ -119.058591362999962, 50.685084317000069 ], [ -119.05920142799998, 50.685122383000085 ], [ -119.059237145999987, 50.684892030000114 ], [ -119.059881035999979, 50.684932204000056 ], [ -119.062338441999941, 50.685085491000024 ], [ -119.062613686999967, 50.683309504000135 ], [ -119.065152652, 50.683467820000061 ], [ -119.065559297999954, 50.680842765000143 ], [ -119.066121875999897, 50.68087783700004 ], [ -119.066133174999919, 50.680804879000029 ], [ -119.066741949999965, 50.680842827000092 ], [ -119.066786961000034, 50.680552193000054 ], [ -119.06712201199997, 50.680573077000084 ], [ -119.067128048999976, 50.680534100000102 ], [ -119.06895657699999, 50.680648056000095 ], [ -119.069310525999953, 50.678361779000056 ], [ -119.071142992999938, 50.678386257000092 ], [ -119.075617009999959, 50.678445849000134 ], [ -119.076005973999941, 50.67845104000002 ], [ -119.076010479999951, 50.678445985000081 ], [ -119.076465191999972, 50.677934993000036 ], [ -119.076527493999919, 50.677851192000048 ], [ -119.077097409999951, 50.677084396000083 ], [ -119.077590674999939, 50.676479599000125 ], [ -119.078146286999967, 50.675922089000018 ], [ -119.078687667999944, 50.675440128000091 ], [ -119.079094801999972, 50.675077696000088 ], [ -119.080994007999948, 50.673116293000135 ], [ -119.082627988999946, 50.671351114000039 ], [ -119.082701475999926, 50.671355684000098 ], [ -119.082694450999938, 50.671401160000059 ], [ -119.082238395, 50.67207640700007 ], [ -119.079483110999945, 50.674734009000055 ], [ -119.076178888999962, 50.678452612000079 ], [ -119.074999389999945, 50.679922394000123 ], [ -119.074829483999977, 50.680258506000044 ], [ -119.073136490999914, 50.682006015000084 ], [ -119.071989216999938, 50.682628402000091 ], [ -119.071305496999926, 50.683180990000011 ], [ -119.070002604999971, 50.683833296000046 ], [ -119.069157792999988, 50.684397139000048 ], [ -119.068340318999958, 50.68494270500004 ], [ -119.064820986999905, 50.687029201000044 ], [ -119.06475851, 50.687053622000107 ], [ -119.064595307999923, 50.687043447000065 ], [ -119.064583108999983, 50.687122182000074 ], [ -119.060965810999946, 50.688535991000045 ], [ -119.06002871299999, 50.688822310000027 ], [ -119.059619707999914, 50.688829388000038 ], [ -119.057937489999972, 50.689255198000104 ], [ -119.057297819999945, 50.689518706000094 ], [ -119.054599540999945, 50.689535431000095 ], [ -119.054682512999975, 50.689000737000072 ], [ -119.057866167, 50.689199444000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "94.7", "sL_BldgLoss": "94.7", "sL_StrLoss": "94.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000718734C7C5C85DC091C589F1925A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.135559928999967, 50.705711192000095 ], [ -119.140165797999927, 50.705995156 ], [ -119.139617486999953, 50.709571266000047 ], [ -119.135985471999987, 50.709347359000091 ], [ -119.133976822999941, 50.709223478000112 ], [ -119.13452557799998, 50.705647394000088 ], [ -119.135559928999967, 50.705711192000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "89.8", "sL_BldgLoss": "89.8", "sL_StrLoss": "89.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BCF6DC74D1C85DC09778DDAED9594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.137344658999965, 50.700123585000078 ], [ -119.140878182999955, 50.700341427000126 ], [ -119.14032999799997, 50.703917564000044 ], [ -119.136219887, 50.703664167000092 ], [ -119.134690037999988, 50.703569809000115 ], [ -119.135238667999957, 50.699993697000181 ], [ -119.137344658999965, 50.700123585000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27522166", "BldgCostT": "17506666", "sL_LossRatio": "1", "sL_AssetLoss": "1002.2", "sL_BldgLoss": "1002.2", "sL_StrLoss": "1002.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058B47379B7CA5DC0422F8ABBCD544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.154080735999969, 50.668709213000021 ], [ -119.154192695999924, 50.667976799000016 ], [ -119.153151357999931, 50.66791268900004 ], [ -119.15369808299999, 50.664336336000119 ], [ -119.15626369, 50.664494270000034 ], [ -119.156644584999967, 50.66200139700004 ], [ -119.160381012999949, 50.662231297000105 ], [ -119.160648360999943, 50.660480445000097 ], [ -119.156968221999961, 50.66025400900002 ], [ -119.157319629999918, 50.657953660000011 ], [ -119.157514548999927, 50.656677605000063 ], [ -119.158032132999935, 50.656709458000044 ], [ -119.158093645999955, 50.656306717000128 ], [ -119.163727853999916, 50.656653309000028 ], [ -119.163254375999912, 50.659755684000103 ], [ -119.163862592999962, 50.659793082000078 ], [ -119.164025448999922, 50.658725957000073 ], [ -119.169660005999944, 50.659072249000054 ], [ -119.169655297999967, 50.659103121000079 ], [ -119.170994487999906, 50.65918538300005 ], [ -119.171096151999905, 50.65851851900009 ], [ -119.17258893899999, 50.658610196 ], [ -119.172604886999963, 50.658505554000051 ], [ -119.178239483999945, 50.65885141200004 ], [ -119.17822099299994, 50.658972826000138 ], [ -119.17972056399995, 50.659064823000016 ], [ -119.179820778999968, 50.658406618000114 ], [ -119.180935391999981, 50.658474984000101 ], [ -119.18083074799992, 50.663403932000065 ], [ -119.18082643299995, 50.66403054400012 ], [ -119.180851570999963, 50.66571406000007 ], [ -119.177667303999939, 50.665518748000096 ], [ -119.177456820999922, 50.6669005030001 ], [ -119.176962278999952, 50.666870161000055 ], [ -119.176917512, 50.667164015000026 ], [ -119.171281883999924, 50.666818093000096 ], [ -119.17133068199999, 50.666498052000058 ], [ -119.171070699, 50.66648208700007 ], [ -119.171298598999954, 50.664987382000049 ], [ -119.167422587999965, 50.66474929000006 ], [ -119.167692040999967, 50.662982928000083 ], [ -119.167548315000019, 50.662974096000021 ], [ -119.167594137999941, 50.662673704000049 ], [ -119.166584459999953, 50.662611659000099 ], [ -119.166439551999957, 50.663561462000075 ], [ -119.165871219999985, 50.663526534000042 ], [ -119.16585822899999, 50.663611675000105 ], [ -119.16219479499992, 50.663386457000065 ], [ -119.161780892999971, 50.666097462000018 ], [ -119.160183334999942, 50.665999210000066 ], [ -119.1597164699999, 50.669056003000051 ], [ -119.154080735999969, 50.668709213000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53457750", "BldgCostT": "34425000", "sL_LossRatio": "0.99926642181457", "sL_AssetLoss": "2249.249", "sL_BldgLoss": "2247.599", "sL_StrLoss": "2247", "sL_NStrLoss": "0.599", "sL_ContLoss": "1.65", "geom_point": "0101000020E61000009669B08074C95DC00165B6D8AB544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.136574996999983, 50.686254794000057 ], [ -119.136914311999973, 50.684041620000087 ], [ -119.135642529999984, 50.68396315200004 ], [ -119.135227808999929, 50.683937561000107 ], [ -119.135442504999958, 50.682537442000104 ], [ -119.133810561999937, 50.682436725000045 ], [ -119.133810616999952, 50.68243637000009 ], [ -119.133347947999965, 50.682407812000115 ], [ -119.133463131999932, 50.681656836000052 ], [ -119.133596794999917, 50.681683100000029 ], [ -119.133719773999957, 50.681666485000086 ], [ -119.134587590999928, 50.681549291000124 ], [ -119.134744424999965, 50.681496617000086 ], [ -119.135104993999946, 50.681375517000063 ], [ -119.135283495999914, 50.681074198000061 ], [ -119.135450720999955, 50.680652205000065 ], [ -119.135467380999955, 50.680125297000068 ], [ -119.135468524, 50.679990363000087 ], [ -119.135468789999948, 50.679958405000036 ], [ -119.135648743999965, 50.679619267000056 ], [ -119.135772996999947, 50.679385103000094 ], [ -119.135865902999939, 50.678918001000071 ], [ -119.135510479999951, 50.677988993000113 ], [ -119.13549952599999, 50.677900282000046 ], [ -119.135483801999911, 50.677773485000102 ], [ -119.135487843999968, 50.677342636000041 ], [ -119.13553277699998, 50.677345409000061 ], [ -119.135738786999923, 50.676001663000093 ], [ -119.135500564999973, 50.675986961000035 ], [ -119.135514591999964, 50.674492001000054 ], [ -119.135610003999929, 50.673238888000078 ], [ -119.135473052999956, 50.672333690000059 ], [ -119.135295600999939, 50.671160807000042 ], [ -119.135330089999925, 50.670613821000117 ], [ -119.135368100999941, 50.670010999000091 ], [ -119.135193988999958, 50.66896590300005 ], [ -119.135268404999962, 50.668694386000034 ], [ -119.135366089999962, 50.668569177000045 ], [ -119.135388701999915, 50.668540191 ], [ -119.135681814999955, 50.668270386000117 ], [ -119.13577077799999, 50.668014192000065 ], [ -119.135752492999956, 50.667837086000091 ], [ -119.135528300999951, 50.667277191000146 ], [ -119.135524275999913, 50.667261708000076 ], [ -119.135445206, 50.666956187000082 ], [ -119.135464, 50.666842697000035 ], [ -119.135348218, 50.666160504000104 ], [ -119.135322213999984, 50.665531592000065 ], [ -119.135344878999959, 50.665059195000048 ], [ -119.135498297999931, 50.664716712000036 ], [ -119.135638095999923, 50.664584496000096 ], [ -119.135969991999929, 50.664487710000053 ], [ -119.136208278999945, 50.66453850500011 ], [ -119.136678689999982, 50.664753493000077 ], [ -119.136867809999956, 50.664772286000058 ], [ -119.136909217, 50.664749857000047 ], [ -119.13699191399995, 50.664705090000027 ], [ -119.137113281999945, 50.664571802000076 ], [ -119.137156517999983, 50.663658408000046 ], [ -119.137159761999925, 50.663647068000067 ], [ -119.137253491999957, 50.663322315000151 ], [ -119.137563204999978, 50.662749384000087 ], [ -119.137425964999949, 50.662243736000029 ], [ -119.139002132, 50.662341006000098 ], [ -119.13885772299993, 50.663283714000073 ], [ -119.139288589999964, 50.66331030000002 ], [ -119.139234865999967, 50.663661019000088 ], [ -119.139014652999919, 50.665098564000097 ], [ -119.140839149999977, 50.665211123000034 ], [ -119.141074651999986, 50.66367335700005 ], [ -119.141370005999946, 50.661744634000016 ], [ -119.13995491299994, 50.661657335000058 ], [ -119.14002360799995, 50.661208807999984 ], [ -119.138519000999963, 50.661115966000068 ], [ -119.138453214999956, 50.661545404000066 ], [ -119.137616991999948, 50.661493797000084 ], [ -119.138004716999916, 50.660832602000063 ], [ -119.138129608, 50.660667003000064 ], [ -119.138327375999921, 50.660536603000025 ], [ -119.138972887999955, 50.660276812000049 ], [ -119.139153721999961, 50.660136299000087 ], [ -119.139281203999957, 50.659981708 ], [ -119.139371904999933, 50.659806804000041 ], [ -119.139564590999953, 50.659198705000087 ], [ -119.13969280399999, 50.6589097 ], [ -119.139953285999965, 50.65860081400006 ], [ -119.140261717999977, 50.658304901000065 ], [ -119.140360304999945, 50.658135006000109 ], [ -119.140369001999915, 50.65797580400001 ], [ -119.140235603999884, 50.657639904000071 ], [ -119.140228489, 50.657407501000108 ], [ -119.140294817999973, 50.657226381000029 ], [ -119.140375189999958, 50.657006799000044 ], [ -119.140513583999947, 50.65678069700008 ], [ -119.140839402999973, 50.656389284000092 ], [ -119.141130904999955, 50.656138290000086 ], [ -119.140743817, 50.655769597000102 ], [ -119.140576282999959, 50.655489397000053 ], [ -119.140023399999976, 50.655153912000088 ], [ -119.139795577999962, 50.654896093000069 ], [ -119.139492702999959, 50.654673495000061 ], [ -119.139377896999946, 50.654373996000096 ], [ -119.139392504999961, 50.654009384000055 ], [ -119.13927430299999, 50.653528204000096 ], [ -119.139045840999984, 50.653072182000088 ], [ -119.144535119999944, 50.653410835000074 ], [ -119.144480619999953, 50.653766982000029 ], [ -119.144753837999957, 50.65378382900014 ], [ -119.144671232999897, 50.654323639000033 ], [ -119.146639215999954, 50.6544449780001 ], [ -119.146626078999944, 50.6545308480001 ], [ -119.14678464299999, 50.654540623000116 ], [ -119.147727615999941, 50.654598750000076 ], [ -119.147861737999989, 50.653721878000034 ], [ -119.148382824999942, 50.653753995000052 ], [ -119.148464740999898, 50.653218390000085 ], [ -119.152742530999916, 50.653481960000072 ], [ -119.153196985999955, 50.650508391000109 ], [ -119.155602801999976, 50.650656549000111 ], [ -119.15630111800003, 50.650699544000112 ], [ -119.156327839999932, 50.650524596000054 ], [ -119.155577818999944, 50.650478418000056 ], [ -119.154097297, 50.650387248000058 ], [ -119.154347060999967, 50.648752612000095 ], [ -119.154476142999954, 50.647907753000041 ], [ -119.153912661999982, 50.647873048000065 ], [ -119.153934132999964, 50.647732531000081 ], [ -119.153374055000015, 50.647698034000086 ], [ -119.153611403999975, 50.646144725000056 ], [ -119.153920516999946, 50.644121594000076 ], [ -119.154705971999974, 50.644169973000047 ], [ -119.154845925999936, 50.643253813000072 ], [ -119.155427896999953, 50.6432896540001 ], [ -119.155432299999958, 50.64326082600008 ], [ -119.161064851999939, 50.643607558000042 ], [ -119.161019637999956, 50.643903815000016 ], [ -119.161722153, 50.643947040000036 ], [ -119.161651739, 50.64440844700006 ], [ -119.164352300999965, 50.644574569000021 ], [ -119.16430214699993, 50.644903332000055 ], [ -119.164473418999961, 50.644913866000081 ], [ -119.164465942999968, 50.644962871000054 ], [ -119.164872209999928, 50.644987856000078 ], [ -119.164818392999976, 50.645340666000102 ], [ -119.164816222999917, 50.645354886000078 ], [ -119.165241623999947, 50.645381045000065 ], [ -119.165217854, 50.645536881000062 ], [ -119.165360330999988, 50.645545643000062 ], [ -119.164830753999965, 50.649017309000037 ], [ -119.164814762999953, 50.649122133000063 ], [ -119.16386829599999, 50.6490639290001 ], [ -119.16355811899993, 50.651096756000079 ], [ -119.162927478999976, 50.651057971000121 ], [ -119.16281242799991, 50.651811872000017 ], [ -119.161827000999963, 50.651751258000047 ], [ -119.161808588, 50.651871896000081 ], [ -119.158704351999987, 50.651680896000052 ], [ -119.158666949999969, 50.651925831000078 ], [ -119.158707708999913, 50.651928339000087 ], [ -119.158645204, 50.6523376620001 ], [ -119.163821473999988, 50.652656099000055 ], [ -119.16379478399989, 50.652831015000039 ], [ -119.164064379999985, 50.652847594000065 ], [ -119.16351862, 50.656424046000097 ], [ -119.157884441999954, 50.656077443000093 ], [ -119.157911157999933, 50.655902529000116 ], [ -119.157641544999976, 50.655885936000054 ], [ -119.157704064999976, 50.655476615000097 ], [ -119.155393336999964, 50.65533437400007 ], [ -119.155079773999944, 50.65738653500005 ], [ -119.154873771999959, 50.658734637000059 ], [ -119.154862177999973, 50.658733923000085 ], [ -119.154711420999945, 50.659720438000065 ], [ -119.153640866999979, 50.659654523000064 ], [ -119.153593386999944, 50.659965163000059 ], [ -119.151790885999958, 50.659854156000073 ], [ -119.151770207999931, 50.659989406000079 ], [ -119.150918104999946, 50.659936918000056 ], [ -119.150847489999975, 50.6603987250001 ], [ -119.14733589099994, 50.660182350000099 ], [ -119.147041208999951, 50.662108439000086 ], [ -119.148232391999954, 50.662181849000042 ], [ -119.147685256999964, 50.665758184 ], [ -119.146555352999926, 50.665688551000095 ], [ -119.146525013999948, 50.665886811000057 ], [ -119.141390023999975, 50.665570209000123 ], [ -119.140891632999953, 50.668824433000047 ], [ -119.139906739999944, 50.66876368100003 ], [ -119.139725010999911, 50.669949986000127 ], [ -119.139780329999937, 50.669953399000093 ], [ -119.139757281999934, 50.670103849000029 ], [ -119.140070829999956, 50.670123191000052 ], [ -119.139522948999968, 50.673699453000083 ], [ -119.138100266999942, 50.673611686000136 ], [ -119.137928533999983, 50.674732315000078 ], [ -119.14158840799999, 50.674958058000136 ], [ -119.141155646999891, 50.677783239000156 ], [ -119.142334780999974, 50.677855943000111 ], [ -119.142259465999956, 50.678347671000054 ], [ -119.143201086999937, 50.678405720000036 ], [ -119.142653355, 50.681981962000059 ], [ -119.142164310999988, 50.68195181400008 ], [ -119.142124245999952, 50.682213373000081 ], [ -119.14138034299998, 50.682167510000149 ], [ -119.141262927999946, 50.682933911000148 ], [ -119.142760621999955, 50.683026242000061 ], [ -119.142212797, 50.686602461000085 ], [ -119.136574996999983, 50.686254794000057 ] ], [ [ -119.148426714999943, 50.656088291000039 ], [ -119.148208120999982, 50.655965803000036 ], [ -119.14769921, 50.655938707000104 ], [ -119.147833318999943, 50.655783502000119 ], [ -119.148432014, 50.655592607000109 ], [ -119.148485806999958, 50.655519996000081 ], [ -119.148315292999925, 50.655218097000059 ], [ -119.147895293999937, 50.65498159600002 ], [ -119.14762648, 50.655005896000056 ], [ -119.147381216999946, 50.655180995000123 ], [ -119.147303004999969, 50.655947298000022 ], [ -119.147404602999941, 50.656331801000057 ], [ -119.147714296999979, 50.656586707000073 ], [ -119.14816959699999, 50.656667893000083 ], [ -119.148421311999954, 50.65660949400008 ], [ -119.148528286999976, 50.656472804 ], [ -119.148426714999943, 50.656088291000039 ] ], [ [ -119.162577094999961, 50.653964797000079 ], [ -119.162124008999967, 50.653640004000103 ], [ -119.16162751, 50.653640008000089 ], [ -119.16165020899993, 50.653792403000139 ], [ -119.161825289999982, 50.653923492000104 ], [ -119.162287709999958, 50.654131388000081 ], [ -119.162512692999911, 50.65412709900005 ], [ -119.162577094999961, 50.653964797000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4458750", "BldgCostT": "3075000", "sL_LossRatio": "1", "sL_AssetLoss": "259.4", "sL_BldgLoss": "259.4", "sL_StrLoss": "259.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095EEF0CF33CB5DC0EF4806CAB7534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.174264360999956, 50.650613872000065 ], [ -119.179897979999978, 50.650959651000043 ], [ -119.179353502999945, 50.654536188000122 ], [ -119.177486478999981, 50.654421628000065 ], [ -119.177334565999942, 50.655419132000084 ], [ -119.176546706999929, 50.655370780000112 ], [ -119.176186345999923, 50.657736554000124 ], [ -119.170551905999972, 50.657390591000059 ], [ -119.171097116999988, 50.65381410800007 ], [ -119.171884944999974, 50.653862499000098 ], [ -119.172245500999949, 50.65149672900008 ], [ -119.174112388999973, 50.651611378000105 ], [ -119.174264360999956, 50.650613872000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000017A85A459EC95DC0531FED24C7504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.147137507999972, 50.633095202000085 ], [ -119.147149160999945, 50.63304101200012 ], [ -119.14714629, 50.632978117000079 ], [ -119.14715717899999, 50.632905964000095 ], [ -119.147167593999953, 50.632824827000043 ], [ -119.147160201999966, 50.632663062000091 ], [ -119.147156932999962, 50.632591162000033 ], [ -119.1471568689999, 50.632589334000038 ], [ -119.147233708999963, 50.632363607000038 ], [ -119.147307692999973, 50.632146210000045 ], [ -119.147515503, 50.631892817000079 ], [ -119.147876316999941, 50.631531505000069 ], [ -119.148040388999931, 50.631248296000088 ], [ -119.148260375999911, 50.630777494000071 ], [ -119.148870429999974, 50.629471797000036 ], [ -119.149233782999929, 50.628767697000036 ], [ -119.149259832999931, 50.628694458000055 ], [ -119.149380984999965, 50.628353482000115 ], [ -119.153518692999924, 50.62860853800003 ], [ -119.152972387999952, 50.632185043000064 ], [ -119.147643002999956, 50.631856502000105 ], [ -119.147454905999979, 50.633086822000045 ], [ -119.14829279099996, 50.633138492000029 ], [ -119.147746015999928, 50.636714952000077 ], [ -119.147333012999923, 50.636689484 ], [ -119.147296808999926, 50.636926262000017 ], [ -119.147156137999943, 50.63691758600006 ], [ -119.14715449199997, 50.636881483000074 ], [ -119.147150802999974, 50.636800613000077 ], [ -119.147147534999988, 50.636728711000053 ], [ -119.147129305999911, 50.636639113000079 ], [ -119.147124782999938, 50.636540243000105 ], [ -119.147105736999961, 50.636432669000051 ], [ -119.147101229999961, 50.636333823000058 ], [ -119.147097961999975, 50.636261922000102 ], [ -119.14710923299999, 50.636198749000066 ], [ -119.147105962999916, 50.636126849000078 ], [ -119.14711721499999, 50.636063709000076 ], [ -119.147117123999976, 50.636061406000067 ], [ -119.147115180999961, 50.636018754000112 ], [ -119.147113944999944, 50.635991809000117 ], [ -119.147124362999989, 50.635910671000062 ], [ -119.147120274999949, 50.635820795000036 ], [ -119.147116623999977, 50.635739914000041 ], [ -119.147112920999959, 50.635659019000045 ], [ -119.147110445999942, 50.635605127000147 ], [ -119.147107596999945, 50.635542197000106 ], [ -119.14711801199995, 50.635461059000122 ], [ -119.147113543999964, 50.635362204000067 ], [ -119.14712314599997, 50.635263091000112 ], [ -119.14713279799993, 50.635163991000084 ], [ -119.14712909299999, 50.635083097000098 ], [ -119.147139125999942, 50.634992978000099 ], [ -119.147135422999938, 50.634912084000064 ], [ -119.147145876999986, 50.634830936000085 ], [ -119.14714218899995, 50.634750065000098 ], [ -119.147139317999972, 50.634687170000106 ], [ -119.147136482999912, 50.634624264000053 ], [ -119.147148136999988, 50.634570072000081 ], [ -119.147145683999938, 50.634516147000021 ], [ -119.147158171999976, 50.634479954000035 ], [ -119.147154084999954, 50.63439007800006 ], [ -119.147152847000015, 50.634363133000093 ], [ -119.147151214999923, 50.634327183000053 ], [ -119.147120062999946, 50.63426478300002 ], [ -119.147089347999909, 50.634211378000082 ], [ -119.147073191999951, 50.634166723000114 ], [ -119.147043291999964, 50.634131294000035 ], [ -119.147012959999955, 50.634086869000093 ], [ -119.146997222, 50.634051185000082 ], [ -119.146981045999922, 50.634006508000084 ], [ -119.146993133999956, 50.633961310000068 ], [ -119.146991499999942, 50.633925360000021 ], [ -119.147003985999945, 50.633889167000056 ], [ -119.147030577999942, 50.63385270800007 ], [ -119.147043901999922, 50.633834456000017 ], [ -119.147056806999956, 50.633807233000034 ], [ -119.14706929499999, 50.633771041000045 ], [ -119.147081380999921, 50.633725843000107 ], [ -119.147093034999969, 50.633671652000011 ], [ -119.147104740999978, 50.633617473000101 ], [ -119.14710266899999, 50.633572529000062 ], [ -119.147114776999928, 50.633527355000133 ], [ -119.147112706999977, 50.633482412000063 ], [ -119.147110652999928, 50.633437490000041 ], [ -119.147108620999944, 50.633392536000024 ], [ -119.147119090000032, 50.633311413000044 ], [ -119.147115784000022, 50.633239522000117 ], [ -119.147126237999942, 50.633158375 ], [ -119.147137507999972, 50.633095202000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "138.2", "sL_BldgLoss": "138.2", "sL_StrLoss": "138.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C263BB209C95DC0041114051B534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.139369061999943, 50.649425603000076 ], [ -119.139335611999925, 50.648891359000075 ], [ -119.1393194609999, 50.648844967000066 ], [ -119.139315467999978, 50.648751712000077 ], [ -119.139327191999939, 50.648695485000097 ], [ -119.139324350999956, 50.648630251000029 ], [ -119.139336059999962, 50.648574001 ], [ -119.139360719999985, 50.64848952300008 ], [ -119.139386193999897, 50.648423644000026 ], [ -119.139425387999978, 50.648348068000082 ], [ -119.139450843999967, 50.648282224000098 ], [ -119.13949005299996, 50.648206672000164 ], [ -119.139515910999975, 50.648150087000026 ], [ -119.139567602999975, 50.648036953 ], [ -119.139592261999937, 50.647952474000128 ], [ -119.139617682999983, 50.647886584000055 ], [ -119.139643558, 50.647830023000076 ], [ -119.139667022999944, 50.647717593000031 ], [ -119.13971712199999, 50.647567190000117 ], [ -119.139728047999924, 50.647492328000041 ], [ -119.139753883999944, 50.647435778000087 ], [ -119.139793893999965, 50.647378803000066 ], [ -119.139805616000018, 50.647322575000075 ], [ -119.139831487999928, 50.647266015000056 ], [ -119.139871477999961, 50.647209075000063 ], [ -119.139911028999933, 50.647142825000067 ], [ -119.139951038999968, 50.64708585000011 ], [ -119.13997652899991, 50.647019996000068 ], [ -119.140120713999963, 50.646755387000091 ], [ -119.140202328999962, 50.6466785900001 ], [ -119.14026978699998, 50.646602241000075 ], [ -119.140323546999966, 50.646535557000071 ], [ -119.140403502999945, 50.646421649000089 ], [ -119.140416311999957, 50.646393349000078 ], [ -119.140428848999946, 50.646355781000075 ], [ -119.140440968999897, 50.646308871000031 ], [ -119.14046680300001, 50.646252321000055 ], [ -119.140478507999973, 50.64619607200013 ], [ -119.140490629999974, 50.646149161000054 ], [ -119.140488617999935, 50.646102552000066 ], [ -119.14050113899998, 50.646064959000064 ], [ -119.140497500999984, 50.645981033000091 ], [ -119.140508844999914, 50.64591551300002 ], [ -119.140534297999949, 50.645849612000042 ], [ -119.140573902999947, 50.645783377000107 ], [ -119.140653855999957, 50.645669470000037 ], [ -119.140694298999946, 50.645621801000054 ], [ -119.140720169999923, 50.645565241000099 ], [ -119.140760136999972, 50.645508276000079 ], [ -119.140814277999979, 50.645450885000066 ], [ -119.14088173199994, 50.645374537000045 ], [ -119.140936219, 50.645326392000051 ], [ -119.141004936999977, 50.645277777000047 ], [ -119.141074, 50.645238409000093 ], [ -119.141177339999942, 50.645165231000071 ], [ -119.142204040999957, 50.645228584000044 ], [ -119.142162744999922, 50.645498405000112 ], [ -119.143656213999961, 50.645590544000058 ], [ -119.143108917999882, 50.649166928000071 ], [ -119.14287918, 50.649152756000056 ], [ -119.142836039999963, 50.649434627000034 ], [ -119.142916204999977, 50.649439572000055 ], [ -119.142368803999915, 50.653015935000091 ], [ -119.138910764999977, 50.652802559000051 ], [ -119.138713504999885, 50.652408808000153 ], [ -119.138593093999972, 50.651820988000104 ], [ -119.139212297999961, 50.650442204000093 ], [ -119.139292895999958, 50.650194488000089 ], [ -119.139296875999932, 50.65016869800008 ], [ -119.139381132999944, 50.649618285000024 ], [ -119.139402686999986, 50.649477401000063 ], [ -119.139369061999943, 50.649425603000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19728916", "BldgCostT": "13396666", "sL_LossRatio": "0.998067693674364", "sL_AssetLoss": "1143.711", "sL_BldgLoss": "1141.501", "sL_StrLoss": "1140.7", "sL_NStrLoss": "0.801", "sL_ContLoss": "2.21", "geom_point": "0101000020E6100000BD60474E2CCB5DC06FC3FF886C514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.171394750999951, 50.646979734000098 ], [ -119.171550760999978, 50.645956027000061 ], [ -119.167692605999932, 50.645718934000072 ], [ -119.167747989999924, 50.645355708000054 ], [ -119.166353789999931, 50.645269998000039 ], [ -119.166493164999963, 50.64435608600013 ], [ -119.166518724999946, 50.6441884770001 ], [ -119.165337931999943, 50.644115871000082 ], [ -119.165364778999901, 50.643939853000063 ], [ -119.165221939999967, 50.643931069000082 ], [ -119.165767412999983, 50.640354555000087 ], [ -119.17139968099994, 50.640700766000087 ], [ -119.171372858999959, 50.640876788000099 ], [ -119.171515689999964, 50.640885563000055 ], [ -119.171350886999946, 50.641967096000023 ], [ -119.172531632999892, 50.642039638000064 ], [ -119.172476291999942, 50.642402868000033 ], [ -119.173870415999886, 50.642488502000035 ], [ -119.173827837999937, 50.642768005000086 ], [ -119.174407467999956, 50.642803603000054 ], [ -119.174492024999935, 50.642248458000026 ], [ -119.177488253, 50.642432425000059 ], [ -119.178988996, 50.642524540000053 ], [ -119.179131675999898, 50.641587158000085 ], [ -119.179451064999967, 50.639488665000101 ], [ -119.180081805999919, 50.639527373000099 ], [ -119.180193471999957, 50.638793580000062 ], [ -119.180212062999928, 50.63879472100006 ], [ -119.180376678999906, 50.637712924000041 ], [ -119.176894899999979, 50.637499205000047 ], [ -119.176925392, 50.637298927000117 ], [ -119.176794713999954, 50.637290903000071 ], [ -119.176830695999968, 50.637054552000087 ], [ -119.176686525, 50.637045699000154 ], [ -119.17672745599999, 50.636776851000043 ], [ -119.176620741999926, 50.636770299000034 ], [ -119.176713580999959, 50.636160497000056 ], [ -119.176441578999942, 50.636143795000116 ], [ -119.176986063999948, 50.63256719200016 ], [ -119.177916640999953, 50.63262433000007 ], [ -119.178150576999926, 50.631087262000015 ], [ -119.178198598000023, 50.630771735000039 ], [ -119.177749918999979, 50.630744188000023 ], [ -119.177428313999897, 50.630724441000041 ], [ -119.177323207, 50.631414989000106 ], [ -119.176872329999966, 50.6313873020001 ], [ -119.176694042999983, 50.632558500000108 ], [ -119.176512993999935, 50.632547382000084 ], [ -119.176305001999964, 50.633913607000054 ], [ -119.175055140999945, 50.633836847000062 ], [ -119.174981868999978, 50.634318035000057 ], [ -119.169350372999972, 50.633972003000117 ], [ -119.169859349999967, 50.630631988000097 ], [ -119.169664614999959, 50.630620018000116 ], [ -119.169889567999974, 50.629143708000072 ], [ -119.167751755999987, 50.629012268000096 ], [ -119.16822844099994, 50.625884555000042 ], [ -119.168296846999951, 50.625435677000063 ], [ -119.173927264999918, 50.625781767000035 ], [ -119.17370246199999, 50.627258091000101 ], [ -119.175190185999938, 50.627349490000043 ], [ -119.175289470999985, 50.626697340000064 ], [ -119.180920100999984, 50.627043076000099 ], [ -119.180877046999939, 50.627326111000031 ], [ -119.181458424999946, 50.627361792000023 ], [ -119.181436979999958, 50.62918542700006 ], [ -119.181216158999945, 50.630637081000117 ], [ -119.181419759999983, 50.630649576000067 ], [ -119.181377826999963, 50.634214541000048 ], [ -119.181227565999947, 50.638057801000045 ], [ -119.181120340999911, 50.640800825000113 ], [ -119.181118053999953, 50.640896018000078 ], [ -119.181120312999937, 50.643201082000068 ], [ -119.180042306999908, 50.643134939000028 ], [ -119.179580239999908, 50.646170802000071 ], [ -119.178424511999964, 50.646099879000069 ], [ -119.178306623999902, 50.64687423000008 ], [ -119.177107836999937, 50.646800651 ], [ -119.177027891999984, 50.647325659000096 ], [ -119.171394750999951, 50.646979734000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "156.1", "sL_BldgLoss": "156.1", "sL_StrLoss": "156.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2E98FF620C85DC0A73892F4FE574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.128233543999968, 50.684170996000056 ], [ -119.130810942000011, 50.684330175000071 ], [ -119.130262148999961, 50.687906330000054 ], [ -119.12881272199999, 50.687816822000059 ], [ -119.128700916999932, 50.688545164000082 ], [ -119.125980602999917, 50.688377122000119 ], [ -119.125605610999941, 50.69081883000004 ], [ -119.12224250099996, 50.690610986000095 ], [ -119.122345343999967, 50.690469905000043 ], [ -119.122690884999898, 50.690119427000063 ], [ -119.12283688199993, 50.689660038000028 ], [ -119.122931308999981, 50.68948085100007 ], [ -119.123457381999941, 50.688853627000121 ], [ -119.12372611899994, 50.688428909000024 ], [ -119.12429671299999, 50.688095051000047 ], [ -119.12460729899999, 50.687851621000036 ], [ -119.124676043999955, 50.687598622000081 ], [ -119.124705620999961, 50.687211485 ], [ -119.124866950999944, 50.686929939000024 ], [ -119.125157977999905, 50.686767420000109 ], [ -119.125406318999936, 50.686591632000024 ], [ -119.12570556599999, 50.686379788000103 ], [ -119.126953767, 50.68605258300007 ], [ -119.127189464999944, 50.685942996000072 ], [ -119.127272441999978, 50.685904391000122 ], [ -119.127573783999978, 50.685544858000107 ], [ -119.127581182999947, 50.685529838000072 ], [ -119.127733240999973, 50.685219887000116 ], [ -119.128243549999979, 50.684722518000015 ], [ -119.128312809999983, 50.684502976000068 ], [ -119.128233543999968, 50.684170996000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3697500", "BldgCostT": "2550000", "sL_LossRatio": "1", "sL_AssetLoss": "220.7", "sL_BldgLoss": "220.7", "sL_StrLoss": "220.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FA6F7857EC95DC058171AFC3B524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.144345248999983, 50.645976887000096 ], [ -119.144388841999955, 50.645691973000076 ], [ -119.144269067999986, 50.645684585000041 ], [ -119.144767743999964, 50.642425120000027 ], [ -119.144959521999951, 50.642481112000077 ], [ -119.14501712699996, 50.642506784000012 ], [ -119.145089591999962, 50.642549957000078 ], [ -119.14510448599999, 50.642567561000135 ], [ -119.145133817999948, 50.642593811000062 ], [ -119.145177679999932, 50.642628708000125 ], [ -119.145207027999945, 50.642654981000113 ], [ -119.145294017999959, 50.642706916000108 ], [ -119.145509507999975, 50.642791955000057 ], [ -119.145682250999954, 50.642868935000045 ], [ -119.145753565999925, 50.642885337000081 ], [ -119.145824443999985, 50.642892744000115 ], [ -119.145881648999989, 50.642909470000056 ], [ -119.145995237999969, 50.642924945000068 ], [ -119.146109664999969, 50.642958360000129 ], [ -119.146153108999954, 50.642984286000058 ], [ -119.146210310999919, 50.643001010000049 ], [ -119.146253426, 50.643018026000057 ], [ -119.14631143299999, 50.643052644000065 ], [ -119.146383093999987, 50.643077980000072 ], [ -119.146455158, 50.643112320000135 ], [ -119.146541327999927, 50.643146336000015 ], [ -119.146655739999986, 50.643179728000064 ], [ -119.14671256199999, 50.643187471000026 ], [ -119.146755621999915, 50.643204473000083 ], [ -119.146798316999963, 50.643212517000038 ], [ -119.146841481999957, 50.643229544000057 ], [ -119.146886847, 50.643300204000099 ], [ -119.146901686999911, 50.643317795000094 ], [ -119.14690466899999, 50.643389298000045 ], [ -119.146892062999939, 50.643425269000126 ], [ -119.14689653, 50.64353251100006 ], [ -119.14691292399999, 50.643585879000057 ], [ -119.146943831999948, 50.643647872000059 ], [ -119.146973951999897, 50.643691991000068 ], [ -119.147018196999952, 50.643735869000082 ], [ -119.14710594099995, 50.64380568400005 ], [ -119.147149403999947, 50.643831633000062 ], [ -119.147206999, 50.643857223000097 ], [ -119.147337437999965, 50.643935081000059 ], [ -119.147380515999956, 50.643952107000047 ], [ -119.147409500999984, 50.643969422000048 ], [ -119.147495677, 50.644003436 ], [ -119.14753841000001, 50.644011470000095 ], [ -119.147638165999979, 50.644036222000032 ], [ -119.14772275699994, 50.644034358000049 ], [ -119.14780691199995, 50.644023498000102 ], [ -119.147876627999935, 50.644003936000054 ], [ -119.147960383999958, 50.643984070000059 ], [ -119.147973607999944, 50.64396573500008 ], [ -119.148001371999968, 50.643956126000027 ], [ -119.148014616999959, 50.643937756000049 ], [ -119.148042003999976, 50.643919108000077 ], [ -119.148083845999906, 50.643909187000148 ], [ -119.148139849999964, 50.643898953000068 ], [ -119.148266716999956, 50.643896161000086 ], [ -119.14830941299999, 50.643904204000059 ], [ -119.148365798999976, 50.643902952000083 ], [ -119.148436734999919, 50.64391037000005 ], [ -119.148746930999948, 50.643903508000029 ], [ -119.148831903999977, 50.643910624000071 ], [ -119.149198483999939, 50.643902508000039 ], [ -119.149268601999893, 50.643891950000068 ], [ -119.149296368999899, 50.643882341000037 ], [ -119.149323700999958, 50.643863681000013 ], [ -119.149315409999943, 50.643847368000053 ], [ -119.149301682999976, 50.643820330000068 ], [ -119.149157871999975, 50.643537061000067 ], [ -119.149157929999902, 50.643528065000126 ], [ -119.149144000999939, 50.64350105799999 ], [ -119.149144381999946, 50.643456110000088 ], [ -119.149130580999895, 50.643411137000093 ], [ -119.149130946999918, 50.643366164000042 ], [ -119.149117183, 50.643321180000029 ], [ -119.149115927999958, 50.643294210000064 ], [ -119.149100184999966, 50.643258526000047 ], [ -119.149083968999932, 50.643213858000081 ], [ -119.149022534999929, 50.643107069000109 ], [ -119.149019642999974, 50.643044148000072 ], [ -119.149018825999946, 50.643026172000127 ], [ -119.149003479999919, 50.642999493000048 ], [ -119.149002661999958, 50.642981518000035 ], [ -119.149015568999971, 50.64295429400007 ], [ -119.14901431399997, 50.642927324 ], [ -119.149011058999946, 50.642855445000073 ], [ -119.149023146999966, 50.642810246000082 ], [ -119.149021890999947, 50.642783276000102 ], [ -119.149034797999889, 50.642756053000056 ], [ -119.149047723999985, 50.642728853000072 ], [ -119.149059811999948, 50.64268365300007 ], [ -119.149057738999929, 50.64263870800005 ], [ -119.14906982699992, 50.642593509000072 ], [ -119.149067771999981, 50.642548587000043 ], [ -119.149065315999948, 50.642494661000072 ], [ -119.14904913599996, 50.642449982000102 ], [ -119.149033355999933, 50.642414309000046 ], [ -119.149017175, 50.642369630000076 ], [ -119.148986849999957, 50.642325229000029 ], [ -119.148957381999978, 50.642298792000133 ], [ -119.148927039999975, 50.642254367000085 ], [ -119.14889757, 50.642227930000089 ], [ -119.14886762699993, 50.642192510000029 ], [ -119.148838577, 50.642175044000084 ], [ -119.148823176999954, 50.642148352000049 ], [ -119.148779547999979, 50.642122169000061 ], [ -119.148749641999927, 50.642086739000035 ], [ -119.148676942999884, 50.642043124000104 ], [ -119.148632928999945, 50.642007959000047 ], [ -119.148574338999978, 50.641964077000104 ], [ -119.148516165999951, 50.641929168000118 ], [ -119.148457572999973, 50.641885286000075 ], [ -119.148399000999945, 50.641841371000098 ], [ -119.148309301999944, 50.641735102000034 ], [ -119.14829350699992, 50.641699404000157 ], [ -119.148277724999957, 50.641663730000047 ], [ -119.148262364999965, 50.641637028000098 ], [ -119.14826198499999, 50.641628046000093 ], [ -119.148260728999915, 50.641601077000104 ], [ -119.148257457999975, 50.641529175000109 ], [ -119.148256655999987, 50.641511223000094 ], [ -119.148269128, 50.641475006000029 ], [ -119.148267072999943, 50.641430083000095 ], [ -119.14827916199998, 50.641384885000015 ], [ -119.14827712599994, 50.641339929000047 ], [ -119.14828879599996, 50.641285760000088 ], [ -119.148287124999939, 50.641249820000098 ], [ -119.148285922999932, 50.641222863000031 ], [ -119.148284287999971, 50.641186912000123 ], [ -119.148254383999955, 50.641151482000112 ], [ -119.148239022999974, 50.641124778000048 ], [ -119.148194592999914, 50.641080642000112 ], [ -119.148150526999956, 50.641045466000051 ], [ -119.148106480999957, 50.641010312000098 ], [ -119.148033765999926, 50.64096667400004 ], [ -119.148004298, 50.64094023600007 ], [ -119.14797439299997, 50.640904806000037 ], [ -119.14795821599995, 50.640860128000085 ], [ -119.147942436999969, 50.640824454000082 ], [ -119.14792625799997, 50.640779775000077 ], [ -119.147910079999988, 50.640735096000078 ], [ -119.147880176999962, 50.640699666000053 ], [ -119.147864397999953, 50.640663992000079 ], [ -119.147848654999933, 50.640628308000046 ], [ -119.147818714999985, 50.640592887000089 ], [ -119.147788428999959, 50.640548476000028 ], [ -119.147743944999945, 50.640504327000045 ], [ -119.147699918999976, 50.640469139000089 ], [ -119.147670016999925, 50.640433709000078 ], [ -119.147654673999952, 50.640407028000098 ], [ -119.147625169999955, 50.640380602000057 ], [ -119.147581141999979, 50.64034541400008 ], [ -119.147559657999935, 50.640300006000118 ], [ -119.147511791999975, 50.64024425500007 ], [ -119.147476553000033, 50.64019804600008 ], [ -119.147452617999932, 50.640170169000037 ], [ -119.147429927999966, 50.64013352200007 ], [ -119.147346519999957, 50.639969195000063 ], [ -119.147288186999987, 50.639774306000071 ], [ -119.147293535999921, 50.638431062000073 ], [ -119.147293815999987, 50.63836210700012 ], [ -119.147157006999947, 50.638150604000082 ], [ -119.147118575999954, 50.637908702000068 ], [ -119.147126912999951, 50.637818025000101 ], [ -119.147136074999963, 50.63771830000006 ], [ -119.147131131999956, 50.637610459000058 ], [ -119.147140388999929, 50.637502354000091 ], [ -119.147135009999957, 50.637385520000088 ], [ -119.147141725999958, 50.637285194000128 ], [ -119.150727003999961, 50.637506232000078 ], [ -119.150399626999985, 50.639648223000073 ], [ -119.150880048999937, 50.639677832000075 ], [ -119.150437960000019, 50.64257023600009 ], [ -119.151224836999987, 50.642618729000134 ], [ -119.150909118999976, 50.644684348000055 ], [ -119.150678179999929, 50.646195162000012 ], [ -119.150004130999903, 50.64615362300006 ], [ -119.149978056999899, 50.64632417800005 ], [ -119.144345248999983, 50.645976887000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23826667", "BldgCostT": "15696667", "sL_LossRatio": "1", "sL_AssetLoss": "1471.7", "sL_BldgLoss": "1471.7", "sL_StrLoss": "1471.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B977C36C38CA5DC0B139A4A4494F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.146302993999925, 50.622100199000073 ], [ -119.145835082999966, 50.62146209400003 ], [ -119.145556311999982, 50.62131589300008 ], [ -119.145317888999969, 50.621155798000061 ], [ -119.145123525999978, 50.620968707000024 ], [ -119.144983298999975, 50.620770501000038 ], [ -119.1449145119999, 50.620570408000027 ], [ -119.144907331999917, 50.620328528000044 ], [ -119.144906200999969, 50.620290105000031 ], [ -119.144850386999977, 50.620079107000045 ], [ -119.144461114999928, 50.619298697000055 ], [ -119.144263811, 50.619009504000125 ], [ -119.144188109999959, 50.618807987000118 ], [ -119.144156889999948, 50.618602991000124 ], [ -119.144203252999915, 50.618049981000055 ], [ -119.144213700999956, 50.617925087000046 ], [ -119.144325613999939, 50.617592597000105 ], [ -119.144203215999966, 50.617455095000125 ], [ -119.143967400999912, 50.617445109000109 ], [ -119.14391192399998, 50.617513750000064 ], [ -119.143350705000032, 50.618208483000082 ], [ -119.143096180999976, 50.618794794000053 ], [ -119.142404101999944, 50.61914019700005 ], [ -119.142267984999975, 50.619314996000128 ], [ -119.1421597, 50.619558294000051 ], [ -119.142063458999928, 50.619661007000083 ], [ -119.141857497999965, 50.61988080600004 ], [ -119.141694112999943, 50.620121633000103 ], [ -119.141674106999943, 50.620151089000039 ], [ -119.141326884999941, 50.62031290500007 ], [ -119.141031794999947, 50.620319009000099 ], [ -119.142491220999929, 50.61587730900002 ], [ -119.142655887999965, 50.615450699000114 ], [ -119.142822791999933, 50.61517671100011 ], [ -119.143061603999968, 50.614934194000092 ], [ -119.144295108999955, 50.61409419500005 ], [ -119.144961617999954, 50.613702099000115 ], [ -119.146989222999977, 50.612796844000066 ], [ -119.147652305999912, 50.61250080700006 ], [ -119.148613815999937, 50.612157530000111 ], [ -119.14917992899997, 50.612231795000127 ], [ -119.150145576999975, 50.612358472000096 ], [ -119.150159488, 50.612360304000042 ], [ -119.150723430999946, 50.612387802000057 ], [ -119.150801509999908, 50.61238914500013 ], [ -119.15211617099996, 50.612411937000076 ], [ -119.152272113999956, 50.612414628000103 ], [ -119.152696929999962, 50.612422002000088 ], [ -119.153048492999957, 50.612463507000029 ], [ -119.153359395999971, 50.612594610000038 ], [ -119.15359658599999, 50.612808707000049 ], [ -119.153650474999964, 50.612885846000104 ], [ -119.153955594999928, 50.613322702000097 ], [ -119.154172305, 50.613577993000042 ], [ -119.154614592999906, 50.613881394000053 ], [ -119.155495587999951, 50.614391501000064 ], [ -119.155605491999921, 50.614488650000084 ], [ -119.155709585999944, 50.614580698000104 ], [ -119.155956089999961, 50.614910883000093 ], [ -119.156079578999964, 50.61501319700011 ], [ -119.156421418999983, 50.615166096000046 ], [ -119.157397707999976, 50.615451902000075 ], [ -119.157737732999976, 50.615625303000087 ], [ -119.158186393000022, 50.615914689000114 ], [ -119.158432623999914, 50.616116697000045 ], [ -119.158512001999966, 50.616220003000073 ], [ -119.15858852599996, 50.616324000000105 ], [ -119.158709897999969, 50.616878399000015 ], [ -119.158853716999914, 50.617099391000096 ], [ -119.159089588999947, 50.617238412000084 ], [ -119.159516223999958, 50.617347704000068 ], [ -119.159780914999942, 50.617363086000111 ], [ -119.1601857859999, 50.617334794000023 ], [ -119.161107747999949, 50.617260737000073 ], [ -119.161648390999957, 50.617217295000096 ], [ -119.162060914999984, 50.617241805000056 ], [ -119.162551920999988, 50.617347805000108 ], [ -119.165089606999913, 50.618200802000068 ], [ -119.165733991, 50.618353208000123 ], [ -119.166185009999964, 50.618422192000025 ], [ -119.166622513, 50.618489085000121 ], [ -119.167599400999947, 50.618585303000025 ], [ -119.168332704999955, 50.618611497000089 ], [ -119.168459021999979, 50.618605916000028 ], [ -119.169323805999952, 50.61856770300011 ], [ -119.170438541999914, 50.618423704000087 ], [ -119.170497509999961, 50.618416079000092 ], [ -119.17069852199991, 50.618383202000061 ], [ -119.171464622999977, 50.618257796000115 ], [ -119.171580008999953, 50.618238884000064 ], [ -119.171641227999942, 50.618235633000026 ], [ -119.17180994899995, 50.618226594000141 ], [ -119.171838072999947, 50.618225081000084 ], [ -119.171972396999962, 50.618217902000033 ], [ -119.172795426999954, 50.618171555000046 ], [ -119.174968524999883, 50.618049202000044 ], [ -119.175291278999978, 50.618000406000064 ], [ -119.175810894999955, 50.617852693000017 ], [ -119.176426797999952, 50.617894209000106 ], [ -119.1769789, 50.617980509000049 ], [ -119.177196885999962, 50.618014596000101 ], [ -119.17799295899999, 50.618216015 ], [ -119.178438862999926, 50.618355268000123 ], [ -119.178521882999988, 50.618381185000047 ], [ -119.180662427999948, 50.61929779000009 ], [ -119.181548721999917, 50.619681618000115 ], [ -119.181512899999973, 50.622728807000037 ], [ -119.179869115999949, 50.622759586000015 ], [ -119.179831709, 50.621950795000046 ], [ -119.179407916999978, 50.621958726000081 ], [ -119.179404910999949, 50.621893727000042 ], [ -119.176902183999985, 50.621740036000126 ], [ -119.176902836999943, 50.621735748000035 ], [ -119.175581341999987, 50.621760442000046 ], [ -119.175565857999928, 50.621424976000078 ], [ -119.17535663399994, 50.622799454000102 ], [ -119.16972657799991, 50.622453435000118 ], [ -119.169772462999973, 50.622152248000091 ], [ -119.169671395999956, 50.622146035000114 ], [ -119.169721559999942, 50.621816770000045 ], [ -119.169613617, 50.621810133000047 ], [ -119.169645232, 50.621602622000061 ], [ -119.165432598999985, 50.621343519000064 ], [ -119.165478981999968, 50.62103926 ], [ -119.164695986999945, 50.620991082000074 ], [ -119.164618990999955, 50.62149610200008 ], [ -119.163819002999929, 50.621446873000075 ], [ -119.163601323999927, 50.622874423000034 ], [ -119.162055685999974, 50.622779294000111 ], [ -119.162049181999919, 50.622821934000086 ], [ -119.162057042999919, 50.622821788000081 ], [ -119.162094145999902, 50.623630589000101 ], [ -119.162941769, 50.623614850000067 ], [ -119.162954142, 50.623884450000084 ], [ -119.16337795500003, 50.623876579000125 ], [ -119.163390331999949, 50.624146178000103 ], [ -119.163814146999982, 50.624138304000077 ], [ -119.163839858999935, 50.624698303000024 ], [ -119.163851281999939, 50.624947104000064 ], [ -119.162579812, 50.624970721000096 ], [ -119.162567440999922, 50.624701120000097 ], [ -119.161760262999948, 50.624716106000065 ], [ -119.161592003999914, 50.625819162000028 ], [ -119.161181652, 50.625793902000119 ], [ -119.16112710199998, 50.626151471000099 ], [ -119.155496735999961, 50.625804735000031 ], [ -119.155536648999913, 50.625543315000115 ], [ -119.155499654999971, 50.625541035000069 ], [ -119.155724274999955, 50.624069798000065 ], [ -119.155453854999919, 50.624053137000082 ], [ -119.155999861999931, 50.620476585000048 ], [ -119.158263104999932, 50.620616005000066 ], [ -119.158315069999958, 50.620275462000031 ], [ -119.157060576000021, 50.620198189000064 ], [ -119.157404042999957, 50.617947695000097 ], [ -119.156421712999972, 50.617887176000046 ], [ -119.156578129999957, 50.616862354000062 ], [ -119.156367481999965, 50.616849375000044 ], [ -119.156445181999942, 50.616340294000061 ], [ -119.156175410999964, 50.616323671000039 ], [ -119.156265591999954, 50.615732824000112 ], [ -119.153159455999983, 50.615541390000075 ], [ -119.153175110999968, 50.615438866000076 ], [ -119.149430928999976, 50.615207991000034 ], [ -119.149147865999964, 50.61706066600005 ], [ -119.147948833999976, 50.616986705000016 ], [ -119.14782984799993, 50.617765294000023 ], [ -119.147418514, 50.617739918000019 ], [ -119.147227620999956, 50.61898889900003 ], [ -119.149293593, 50.619116337000037 ], [ -119.148882207999975, 50.621808537000092 ], [ -119.149506471999985, 50.621847036000077 ], [ -119.148959930999951, 50.625423550000065 ], [ -119.147990818999958, 50.625363782000143 ], [ -119.14793319599994, 50.625098900000076 ], [ -119.147774409999926, 50.624724502000078 ], [ -119.147809840999912, 50.624484567000088 ], [ -119.147815473999955, 50.624446305000056 ], [ -119.14778918799999, 50.624256089 ], [ -119.147469842999925, 50.623699712000111 ], [ -119.147370197999933, 50.623526119000111 ], [ -119.147311201999955, 50.623423296000091 ], [ -119.14652939399997, 50.622263992000057 ], [ -119.146373277999942, 50.622151067000068 ], [ -119.146302993999925, 50.622100199000073 ] ], [ [ -119.175802921999917, 50.619867489000058 ], [ -119.175720547999973, 50.620408689000044 ], [ -119.176236175999975, 50.620399055000064 ], [ -119.176318543999955, 50.619857856000081 ], [ -119.175802921999917, 50.619867489000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "1", "sL_AssetLoss": "315", "sL_BldgLoss": "315", "sL_StrLoss": "315", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007CBBA100FCC35DC04AF3226E29564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.064087107999953, 50.668042910000096 ], [ -119.065245121999965, 50.666810808000029 ], [ -119.065621390999979, 50.666533223000037 ], [ -119.06592634699993, 50.666552240000037 ], [ -119.065760213999937, 50.667625148000063 ], [ -119.067029786999939, 50.667704312000097 ], [ -119.066992781999915, 50.667943326000028 ], [ -119.068828444999951, 50.668057762000032 ], [ -119.068274918999947, 50.671633681000039 ], [ -119.067109962999922, 50.671561061000084 ], [ -119.067104165, 50.671598508000059 ], [ -119.065735307999958, 50.671513161000064 ], [ -119.06554346199998, 50.672751940000104 ], [ -119.065108203999955, 50.672724799000029 ], [ -119.065093947999955, 50.672816851000036 ], [ -119.06508940499999, 50.672816567000069 ], [ -119.064977782999946, 50.673537252000074 ], [ -119.064735744999936, 50.673522159000115 ], [ -119.064599514999912, 50.674401657000011 ], [ -119.064035836999963, 50.67436650500013 ], [ -119.064033888999958, 50.674379071000054 ], [ -119.062648275999919, 50.674292646000026 ], [ -119.062292238999987, 50.676590406000045 ], [ -119.06223818, 50.676587034000107 ], [ -119.061978380999903, 50.67826352900012 ], [ -119.054835409999924, 50.678167352000102 ], [ -119.054936474999963, 50.677917443000062 ], [ -119.055148181000021, 50.677393896000098 ], [ -119.055293921999947, 50.677163231000065 ], [ -119.055657278999931, 50.676588090000038 ], [ -119.056423398999954, 50.675638498000062 ], [ -119.059216552999942, 50.673175686000057 ], [ -119.059838470999964, 50.672627260000063 ], [ -119.060383098999964, 50.672147013000078 ], [ -119.06094350599993, 50.671636745000072 ], [ -119.061968303999905, 50.67070360500005 ], [ -119.062125439999974, 50.67056052300007 ], [ -119.06285070200002, 50.669900116000086 ], [ -119.063243611999937, 50.669355885000051 ], [ -119.063365193999971, 50.669103592000077 ], [ -119.063514630999961, 50.668884040000123 ], [ -119.064022565999906, 50.668137740000105 ], [ -119.064087107999953, 50.668042910000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.2", "sL_BldgLoss": "35.2", "sL_StrLoss": "35.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000888E15E359C55DC0A37C7BB612534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.085456860999912, 50.647525118000011 ], [ -119.085605950999962, 50.647489356000044 ], [ -119.085303728999946, 50.649447570000092 ], [ -119.083890901999894, 50.649642311000029 ], [ -119.08284951399996, 50.650065293000061 ], [ -119.08246845099994, 50.650269113000057 ], [ -119.080973402999945, 50.650176059000081 ], [ -119.080944697999939, 50.650174272000079 ], [ -119.080973425999929, 50.650130376000092 ], [ -119.08104497099994, 50.650021050000078 ], [ -119.081131181000018, 50.649933912000044 ], [ -119.081543679999967, 50.649516841000043 ], [ -119.081950170999932, 50.649158537000105 ], [ -119.082083336999958, 50.649060141000085 ], [ -119.082389210999963, 50.648834159000025 ], [ -119.082744537999972, 50.64857162900006 ], [ -119.083208245999941, 50.648306750000131 ], [ -119.083472677999922, 50.648155718000041 ], [ -119.084171348999945, 50.647866124000082 ], [ -119.084812858999953, 50.647679498000095 ], [ -119.085456860999912, 50.647525118000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.1", "sL_BldgLoss": "38.1", "sL_StrLoss": "38.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F7B04ABA8C85DC097E9B025D8544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.133367402999966, 50.661993167000055 ], [ -119.137425964999949, 50.662243736000029 ], [ -119.137563204999978, 50.662749384000087 ], [ -119.137253491999957, 50.663322315000151 ], [ -119.137159761999925, 50.663647068000067 ], [ -119.136505295999939, 50.663625634000013 ], [ -119.133134074999973, 50.663515069000013 ], [ -119.133367402999966, 50.661993167000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.8", "sL_BldgLoss": "38.8", "sL_StrLoss": "38.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DAECA3AE50C55DC038DB9A7C4C554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.083437768999957, 50.664030633000102 ], [ -119.083866970000017, 50.664057331000095 ], [ -119.083958969999941, 50.664256329000082 ], [ -119.083972514999971, 50.664285604000021 ], [ -119.083885523999967, 50.666432903000093 ], [ -119.083609442999915, 50.667170660000082 ], [ -119.083141905999952, 50.668420178000147 ], [ -119.08313439699999, 50.668457489000033 ], [ -119.081995068999944, 50.668386615000038 ], [ -119.082547462999983, 50.664810614000068 ], [ -119.083309981999975, 50.664858050000049 ], [ -119.083437768999957, 50.664030633000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "211.4", "sL_BldgLoss": "211.4", "sL_StrLoss": "211.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070A69584FCC65DC06F60F6DB6C514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.102451107999954, 50.643606029000075 ], [ -119.102578692999955, 50.642777197000044 ], [ -119.102460558999894, 50.642769865000083 ], [ -119.103551155999966, 50.641801602000101 ], [ -119.103953890999961, 50.641444031000084 ], [ -119.10526270299998, 50.639945016000105 ], [ -119.10663743299996, 50.638370386000055 ], [ -119.107222283999974, 50.637700433000127 ], [ -119.108036893999937, 50.63676725700001 ], [ -119.108987553999967, 50.63567821500007 ], [ -119.109043576999952, 50.635614028000091 ], [ -119.109534994999976, 50.634988417000017 ], [ -119.111826969999981, 50.632070256000105 ], [ -119.112499514, 50.631213878000104 ], [ -119.112860168999973, 50.630754628000091 ], [ -119.113216078999955, 50.630199308000044 ], [ -119.114632749999956, 50.630287112000104 ], [ -119.114758811999934, 50.62946646100005 ], [ -119.11351861699994, 50.629389596000067 ], [ -119.113567454999895, 50.629123176000064 ], [ -119.113643864999986, 50.628706399000045 ], [ -119.11371331399998, 50.628327519000067 ], [ -119.113731376999908, 50.628229017000116 ], [ -119.113907263999977, 50.627592770000035 ], [ -119.114083355999981, 50.627306707000081 ], [ -119.114330131999935, 50.627106290000057 ], [ -119.11436446, 50.627056010000061 ], [ -119.114428057999959, 50.626977146000051 ], [ -119.114496695999961, 50.626876565000046 ], [ -119.114659708999952, 50.626695081000072 ], [ -119.114693857999939, 50.626645052000121 ], [ -119.114669964999919, 50.626743828000059 ], [ -119.114752140999968, 50.626884228000073 ], [ -119.11511338299999, 50.626771226000088 ], [ -119.115502196999984, 50.626700546000066 ], [ -119.11590053599997, 50.626688228000042 ], [ -119.116022546999929, 50.626695081000072 ], [ -119.116660644999968, 50.626730939000062 ], [ -119.115805303999977, 50.62853260100011 ], [ -119.115100519999913, 50.629823006000073 ], [ -119.114379821999961, 50.630780103000092 ], [ -119.113581982999975, 50.631586202000065 ], [ -119.110998796999979, 50.634223797000061 ], [ -119.110006986999977, 50.635437199000144 ], [ -119.109514393999945, 50.635797507000099 ], [ -119.108683590999931, 50.636820114000017 ], [ -119.107840086999929, 50.638193110000032 ], [ -119.107000521999979, 50.639980401000059 ], [ -119.106577296999916, 50.641606906000106 ], [ -119.10609852099995, 50.642586804000075 ], [ -119.105382115999973, 50.643787899000067 ], [ -119.102451107999954, 50.643606029000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72335666", "BldgCostT": "48446666", "sL_LossRatio": "0.998862448285058", "sL_AssetLoss": "4237.17", "sL_BldgLoss": "4232.35", "sL_StrLoss": "4230.6", "sL_NStrLoss": "1.75", "sL_ContLoss": "4.82", "geom_point": "0101000020E6100000109AFACC5BC75DC0B77A909631524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.085794971999988, 50.663055130000103 ], [ -119.086322616999979, 50.6596370520001 ], [ -119.083308430999963, 50.659449569000053 ], [ -119.083478589999956, 50.65834764700007 ], [ -119.082822992, 50.658306858000081 ], [ -119.082960373999953, 50.657417235000018 ], [ -119.082382285999955, 50.657381265000019 ], [ -119.082387614999959, 50.657233297000069 ], [ -119.082274905999967, 50.656892911000078 ], [ -119.081654083999979, 50.65594641700006 ], [ -119.08175204299998, 50.655312149000103 ], [ -119.081239045999936, 50.655280222000066 ], [ -119.081031603999961, 50.654826308000111 ], [ -119.081311635999938, 50.653013236000071 ], [ -119.081686006999945, 50.652523487000074 ], [ -119.082779294, 50.651676108000075 ], [ -119.083561430999922, 50.651337150000089 ], [ -119.084286363999951, 50.651382255000108 ], [ -119.084345801999973, 50.650997215000068 ], [ -119.084833384999953, 50.650785897000041 ], [ -119.085689881999969, 50.650643499000068 ], [ -119.086000405, 50.650615386000077 ], [ -119.090539385999975, 50.650897627000077 ], [ -119.090054122, 50.654043763000061 ], [ -119.090877197999987, 50.654094923000052 ], [ -119.091337453999969, 50.651110583000033 ], [ -119.091408099999967, 50.651114974000038 ], [ -119.091449163999982, 50.650848685000092 ], [ -119.097082171999901, 50.65119864600009 ], [ -119.09703650299997, 50.651495032000149 ], [ -119.099532533999962, 50.651650009000036 ], [ -119.099544168999941, 50.651574471000082 ], [ -119.10029498099999, 50.651621078000034 ], [ -119.100315739999985, 50.651486288000065 ], [ -119.100678548999952, 50.651508808000138 ], [ -119.10075042499993, 50.651042097000065 ], [ -119.099989211999983, 50.650994847000078 ], [ -119.100000083999944, 50.650924258 ], [ -119.098763877999943, 50.65084751400012 ], [ -119.099116117999984, 50.648560796000041 ], [ -119.099779405999982, 50.648403190000096 ], [ -119.1024408899999, 50.647454226000029 ], [ -119.103966395999933, 50.647548885000091 ], [ -119.103995212999976, 50.647361663000069 ], [ -119.105264933999976, 50.647440433000028 ], [ -119.105490572999983, 50.645974120000091 ], [ -119.106117636999898, 50.645446940000049 ], [ -119.106930837, 50.645497377000041 ], [ -119.107130449999914, 50.644199822000118 ], [ -119.107225218999986, 50.644067904000039 ], [ -119.107771483999954, 50.642996903000061 ], [ -119.108383281000016, 50.641178204000042 ], [ -119.108699601999888, 50.639742605000016 ], [ -119.109398197999894, 50.638596109000098 ], [ -119.10952300299999, 50.638198807000052 ], [ -119.110556309999964, 50.636660596000091 ], [ -119.111872582999965, 50.635394493000092 ], [ -119.11255980199995, 50.634977192000051 ], [ -119.113259810000017, 50.634488704000027 ], [ -119.114855002999988, 50.63256168900007 ], [ -119.115393054999956, 50.631942628000061 ], [ -119.115309120999981, 50.632489047000035 ], [ -119.11531412, 50.632489357000061 ], [ -119.115399183999941, 50.631935573000057 ], [ -119.116698011, 50.630441109000017 ], [ -119.117456009999927, 50.629365795000055 ], [ -119.11776340599999, 50.62864090000005 ], [ -119.118464385999985, 50.626929007000058 ], [ -119.118525550999919, 50.62683571900007 ], [ -119.118827078999985, 50.62685266600009 ], [ -119.119187207, 50.626872884000115 ], [ -119.119879782999988, 50.627007855000031 ], [ -119.120807400000018, 50.626009301000046 ], [ -119.121975570999936, 50.626406491000061 ], [ -119.123183302999976, 50.62682339900006 ], [ -119.122368888999958, 50.627834407000066 ], [ -119.122840413999953, 50.627993599000028 ], [ -119.123147743999979, 50.62808261100006 ], [ -119.123296211999929, 50.628125602000047 ], [ -119.123509296999941, 50.628107203000063 ], [ -119.12371581, 50.628057705000039 ], [ -119.124038113999944, 50.627901608000066 ], [ -119.124332796000019, 50.627676210000047 ], [ -119.125963362999926, 50.625749431000031 ], [ -119.126002178999954, 50.625703492000092 ], [ -119.126238083999908, 50.625508715000137 ], [ -119.126526515999913, 50.625388497000124 ], [ -119.126807296999957, 50.625336408000095 ], [ -119.127099580000021, 50.6253110870001 ], [ -119.132128232999889, 50.62533117100007 ], [ -119.131789992999984, 50.627538839000117 ], [ -119.132610091999965, 50.627589536000045 ], [ -119.132668899999942, 50.62720566900007 ], [ -119.134534498999955, 50.627320973000032 ], [ -119.134538597999949, 50.627294211000098 ], [ -119.134647607999952, 50.626582449000125 ], [ -119.134556445, 50.62657681600006 ], [ -119.133213487999967, 50.626493816000078 ], [ -119.133390813999938, 50.625336178000062 ], [ -119.134587191, 50.625340909000023 ], [ -119.13584288399997, 50.625336037000118 ], [ -119.135852502999967, 50.625335996000082 ], [ -119.136338395999985, 50.625290208000138 ], [ -119.136815384999977, 50.625162600000074 ], [ -119.138558394999976, 50.624366790000138 ], [ -119.139028615999948, 50.624125987000134 ], [ -119.139240985999933, 50.623975534000074 ], [ -119.139626203999981, 50.62370259500004 ], [ -119.139788800999924, 50.623559198000081 ], [ -119.14012962, 50.623077508000051 ], [ -119.140502749999925, 50.621936664000017 ], [ -119.141011385999946, 50.621968072000094 ], [ -119.140982715999911, 50.622155468000102 ], [ -119.141214290999969, 50.622169767000123 ], [ -119.141155623999978, 50.622553239000055 ], [ -119.143011554999958, 50.622667815000071 ], [ -119.143127604999933, 50.621909069000068 ], [ -119.140563547999989, 50.621750767000023 ], [ -119.140659620999926, 50.621457019000097 ], [ -119.140703636999916, 50.6213224500001 ], [ -119.140772022999926, 50.621113289000071 ], [ -119.141031794999947, 50.620319009000099 ], [ -119.141326884999941, 50.62031290500007 ], [ -119.141674106999943, 50.620151089000039 ], [ -119.141694112999943, 50.620121633000103 ], [ -119.141857497999965, 50.61988080600004 ], [ -119.142063458999928, 50.619661007000083 ], [ -119.1421597, 50.619558294000051 ], [ -119.142267984999975, 50.619314996000128 ], [ -119.142404101999944, 50.61914019700005 ], [ -119.143096180999976, 50.618794794000053 ], [ -119.143350705000032, 50.618208483000082 ], [ -119.14391192399998, 50.617513750000064 ], [ -119.143967400999912, 50.617445109000109 ], [ -119.144203215999966, 50.617455095000125 ], [ -119.144325613999939, 50.617592597000105 ], [ -119.144213700999956, 50.617925087000046 ], [ -119.144203252999915, 50.618049981000055 ], [ -119.144156889999948, 50.618602991000124 ], [ -119.144188109999959, 50.618807987000118 ], [ -119.144263811, 50.619009504000125 ], [ -119.144461114999928, 50.619298697000055 ], [ -119.144850386999977, 50.620079107000045 ], [ -119.144906200999969, 50.620290105000031 ], [ -119.144907331999917, 50.620328528000044 ], [ -119.1449145119999, 50.620570408000027 ], [ -119.144983298999975, 50.620770501000038 ], [ -119.145123525999978, 50.620968707000024 ], [ -119.145317888999969, 50.621155798000061 ], [ -119.145556311999982, 50.62131589300008 ], [ -119.145835082999966, 50.62146209400003 ], [ -119.146302993999925, 50.622100199000073 ], [ -119.146373277999942, 50.622151067000068 ], [ -119.14652939399997, 50.622263992000057 ], [ -119.147311201999955, 50.623423296000091 ], [ -119.147370197999933, 50.623526119000111 ], [ -119.147469842999925, 50.623699712000111 ], [ -119.14778918799999, 50.624256089 ], [ -119.147815473999955, 50.624446305000056 ], [ -119.147809840999912, 50.624484567000088 ], [ -119.147774409999926, 50.624724502000078 ], [ -119.14793319599994, 50.625098900000076 ], [ -119.147990818999958, 50.625363782000143 ], [ -119.143668319999932, 50.625097095000086 ], [ -119.14348324099997, 50.626307173000029 ], [ -119.141423830999955, 50.626180053000127 ], [ -119.141346770000027, 50.626683721000077 ], [ -119.140998452999938, 50.626662216000092 ], [ -119.140953066999913, 50.626958829000053 ], [ -119.140858282999957, 50.626952978000112 ], [ -119.140714009999968, 50.627895832000029 ], [ -119.14013561099992, 50.62786012 ], [ -119.140058506999978, 50.628363947000118 ], [ -119.138192851000014, 50.628248736000039 ], [ -119.137751762999955, 50.631129993000044 ], [ -119.13690236399999, 50.631077529000081 ], [ -119.136816251999932, 50.631639912000068 ], [ -119.13646539199999, 50.631618239000041 ], [ -119.13639036, 50.63210822100006 ], [ -119.136298360999916, 50.632102538000034 ], [ -119.136228578, 50.632558224000036 ], [ -119.134721127999953, 50.632465093000079 ], [ -119.134258420999956, 50.632436502000068 ], [ -119.134124552999978, 50.633310393000059 ], [ -119.134785166999976, 50.633351211000061 ], [ -119.137875093999938, 50.63354208100008 ], [ -119.137327483999954, 50.637118488000077 ], [ -119.136968186000018, 50.63709629800011 ], [ -119.136765532999931, 50.638419598000027 ], [ -119.133249911999897, 50.63820241500008 ], [ -119.131133817999952, 50.63807163600007 ], [ -119.131356141999944, 50.636621071000086 ], [ -119.130728372999954, 50.636582266000076 ], [ -119.130542125999938, 50.637797341000045 ], [ -119.126637790999936, 50.637555915000121 ], [ -119.126465989999971, 50.637545288000055 ], [ -119.126447086999946, 50.637668542000029 ], [ -119.125933006999944, 50.6410200380001 ], [ -119.125593769999966, 50.640999055000051 ], [ -119.125573597999946, 50.641130546000113 ], [ -119.125344443999893, 50.641116371000095 ], [ -119.12521013099996, 50.641991853000015 ], [ -119.125084326, 50.641984071000117 ], [ -119.1250430199999, 50.642253304000114 ], [ -119.127063888999956, 50.642378298000054 ], [ -119.126515312999942, 50.645954614000082 ], [ -119.126169255999983, 50.645933213000056 ], [ -119.126057032999881, 50.646664722000082 ], [ -119.12558763, 50.646635690000032 ], [ -119.125402368999943, 50.647843136000112 ], [ -119.122092747999901, 50.64763838600004 ], [ -119.122076918999966, 50.647741511000028 ], [ -119.119878806999949, 50.647605470000038 ], [ -119.1164441499999, 50.647392811000067 ], [ -119.116695711999924, 50.645755350000101 ], [ -119.116561167, 50.645747017000133 ], [ -119.11711053499999, 50.642170750000048 ], [ -119.118652850999979, 50.642266259000067 ], [ -119.118767897999973, 50.641517085000011 ], [ -119.118923364999986, 50.64152671100009 ], [ -119.119089622999979, 50.640443980000036 ], [ -119.117802268999966, 50.640364263 ], [ -119.117460028999943, 50.640370485000076 ], [ -119.11745879199999, 50.640342991000033 ], [ -119.117308278999971, 50.640333669000036 ], [ -119.116947309999944, 50.642683740000066 ], [ -119.116529822999937, 50.642657883000034 ], [ -119.116382737, 50.64361535000004 ], [ -119.115772411999941, 50.643577546000095 ], [ -119.115743217000016, 50.643767564000029 ], [ -119.113681220999979, 50.643639818000118 ], [ -119.11328145, 50.646240915000057 ], [ -119.113087016999899, 50.646228867000083 ], [ -119.113072544999952, 50.646323019000071 ], [ -119.112811293999954, 50.646306832000079 ], [ -119.112679774999961, 50.647162426000072 ], [ -119.112364023999959, 50.64714286000001 ], [ -119.112335551999962, 50.647328073000139 ], [ -119.117520793999972, 50.647649272000145 ], [ -119.117471089999952, 50.647972839000012 ], [ -119.117781606999955, 50.647992066000043 ], [ -119.117681157999968, 50.648645990000034 ], [ -119.117973046999936, 50.648664062000059 ], [ -119.117968710999946, 50.648692287000067 ], [ -119.11742367, 50.652240307000049 ], [ -119.114909063999932, 50.652084584000065 ], [ -119.114383721999957, 50.65550256800001 ], [ -119.108750039999947, 50.655153482000159 ], [ -119.109300143999945, 50.651577293000123 ], [ -119.111814702999979, 50.65173314200009 ], [ -119.111845579999965, 50.651532318000072 ], [ -119.110932770999952, 50.65147575000011 ], [ -119.110933030999945, 50.651474062000062 ], [ -119.108621598999932, 50.651330785000042 ], [ -119.108632550999914, 50.651259591999988 ], [ -119.107559566999967, 50.65119306600009 ], [ -119.10747705299994, 50.651729386000035 ], [ -119.107729725999974, 50.651745052000088 ], [ -119.1076906399999, 50.651999113 ], [ -119.108645715999984, 50.652058327000056 ], [ -119.108095554999949, 50.65563451000002 ], [ -119.107266636999938, 50.65558311900007 ], [ -119.107212333999883, 50.655936031000117 ], [ -119.105334660999972, 50.65581959400005 ], [ -119.105310052999968, 50.655979473000073 ], [ -119.10512551799998, 50.655968028000053 ], [ -119.104601613999989, 50.6593714810001 ], [ -119.104396637000022, 50.659358769000093 ], [ -119.104366012999932, 50.659557686000035 ], [ -119.099810481999938, 50.659275043000093 ], [ -119.100281180999914, 50.658053692000045 ], [ -119.100307818999937, 50.657720407000042 ], [ -119.100158307999919, 50.657210495000051 ], [ -119.099949797999969, 50.65698119400011 ], [ -119.099154909999982, 50.656599493000073 ], [ -119.09786989299991, 50.656334612000116 ], [ -119.096683203999945, 50.656364586000052 ], [ -119.095994196, 50.656494206000097 ], [ -119.095774658999972, 50.656625613000067 ], [ -119.096018710999942, 50.65504217600003 ], [ -119.095075660999939, 50.654983603000119 ], [ -119.095080299999921, 50.654953509000116 ], [ -119.092230294999936, 50.654776448000092 ], [ -119.09177006199999, 50.657760778000139 ], [ -119.089280945, 50.657606077 ], [ -119.08896682699995, 50.659641975000106 ], [ -119.091981048999969, 50.659829304000048 ], [ -119.091801214999975, 50.660995286000073 ], [ -119.090920008999973, 50.662008711000048 ], [ -119.090484400999941, 50.662367598000046 ], [ -119.088610022999916, 50.663192201000108 ], [ -119.08839777599999, 50.663216957000031 ], [ -119.085794971999988, 50.663055130000103 ] ], [ [ -119.111854689999959, 50.647517481000087 ], [ -119.111861696999952, 50.647471903000074 ], [ -119.110955125999951, 50.647415716000104 ], [ -119.110932509999955, 50.647562804000174 ], [ -119.111362275999966, 50.647589440000047 ], [ -119.111377883999978, 50.647487931000022 ], [ -119.111854689999959, 50.647517481000087 ] ], [ [ -119.109741937, 50.642411217000074 ], [ -119.109841359, 50.641764649000081 ], [ -119.109282882999949, 50.641730023000015 ], [ -119.109440921999976, 50.640702277000116 ], [ -119.109245950999963, 50.640690188000079 ], [ -119.109202073999981, 50.640975520000055 ], [ -119.10901992099997, 50.640964225000126 ], [ -119.108960884999959, 50.641348125000128 ], [ -119.108905377, 50.641344683000071 ], [ -119.108846501999963, 50.641727527000057 ], [ -119.10844352, 50.641702537000121 ], [ -119.108378002, 50.642128536000072 ], [ -119.108364409999922, 50.642127693000099 ], [ -119.108334228999979, 50.64232393100005 ], [ -119.109741937, 50.642411217000074 ] ], [ [ -119.120318098999988, 50.638078832000097 ], [ -119.120398988999952, 50.637551910000056 ], [ -119.120254753, 50.637542980000063 ], [ -119.120173860999955, 50.638069901000094 ], [ -119.120318098999988, 50.638078832000097 ] ], [ [ -119.124955307999954, 50.637157235000103 ], [ -119.12532440499993, 50.634751107000085 ], [ -119.124408808999974, 50.634694456000084 ], [ -119.124675844999928, 50.632953731 ], [ -119.124326950999901, 50.63296009400004 ], [ -119.124305688, 50.63309869400009 ], [ -119.123186872999923, 50.633029456000088 ], [ -119.12293471699999, 50.634672822000049 ], [ -119.121727665999984, 50.634598109000066 ], [ -119.12136895799992, 50.636935291000079 ], [ -119.124955307999954, 50.637157235000103 ] ], [ [ -119.131237678999952, 50.628639525000054 ], [ -119.131263787999956, 50.628469141000032 ], [ -119.126969256999956, 50.628203549000048 ], [ -119.126805481999966, 50.629271646000113 ], [ -119.125451886999926, 50.629187899000094 ], [ -119.125397734, 50.629540978000072 ], [ -119.125345394999968, 50.62953774000006 ], [ -119.12531014399994, 50.629767579000038 ], [ -119.124974958999971, 50.629746838000102 ], [ -119.12464853799996, 50.631874916000058 ], [ -119.124841870999944, 50.631871390000107 ], [ -119.124957416999933, 50.631118102000073 ], [ -119.124971193999954, 50.631118954000044 ], [ -119.125010729999971, 50.63086120300003 ], [ -119.12543858399998, 50.630887676000036 ], [ -119.125553345999919, 50.630139413000045 ], [ -119.125667758999924, 50.63014649300009 ], [ -119.125712353999972, 50.629855717000027 ], [ -119.126018560999981, 50.629874662000098 ], [ -119.126047948999954, 50.62968302400008 ], [ -119.13093855399994, 50.629985497000064 ], [ -119.131145686999929, 50.628633838000084 ], [ -119.131237678999952, 50.628639525000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "110.3", "sL_BldgLoss": "110.3", "sL_StrLoss": "110.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D79C6ACA61C95DC09816D43B05524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.147149403999947, 50.643831633000062 ], [ -119.14710594099995, 50.64380568400005 ], [ -119.147018196999952, 50.643735869000082 ], [ -119.146973951999897, 50.643691991000068 ], [ -119.146943831999948, 50.643647872000059 ], [ -119.14691292399999, 50.643585879000057 ], [ -119.14689653, 50.64353251100006 ], [ -119.146892062999939, 50.643425269000126 ], [ -119.14690466899999, 50.643389298000045 ], [ -119.146901686999911, 50.643317795000094 ], [ -119.146886847, 50.643300204000099 ], [ -119.146841481999957, 50.643229544000057 ], [ -119.146798316999963, 50.643212517000038 ], [ -119.146755621999915, 50.643204473000083 ], [ -119.14671256199999, 50.643187471000026 ], [ -119.146655739999986, 50.643179728000064 ], [ -119.146541327999927, 50.643146336000015 ], [ -119.146455158, 50.643112320000135 ], [ -119.146383093999987, 50.643077980000072 ], [ -119.14631143299999, 50.643052644000065 ], [ -119.146253426, 50.643018026000057 ], [ -119.146210310999919, 50.643001010000049 ], [ -119.146153108999954, 50.642984286000058 ], [ -119.146109664999969, 50.642958360000129 ], [ -119.145995237999969, 50.642924945000068 ], [ -119.145881648999989, 50.642909470000056 ], [ -119.145824443999985, 50.642892744000115 ], [ -119.145753565999925, 50.642885337000081 ], [ -119.145682250999954, 50.642868935000045 ], [ -119.145509507999975, 50.642791955000057 ], [ -119.145294017999959, 50.642706916000108 ], [ -119.145207027999945, 50.642654981000113 ], [ -119.145177679999932, 50.642628708000125 ], [ -119.145133817999948, 50.642593811000062 ], [ -119.14510448599999, 50.642567561000135 ], [ -119.145089591999962, 50.642549957000078 ], [ -119.14501712699996, 50.642506784000012 ], [ -119.144959521999951, 50.642481112000077 ], [ -119.144767743999964, 50.642425120000027 ], [ -119.144816228999943, 50.642108181000012 ], [ -119.144823113999962, 50.642108606000136 ], [ -119.145028645999915, 50.640765037000087 ], [ -119.144548217999969, 50.640735402000111 ], [ -119.145095295999937, 50.637158975000062 ], [ -119.147141725999958, 50.637285194000128 ], [ -119.147135009999957, 50.637385520000088 ], [ -119.147140388999929, 50.637502354000091 ], [ -119.147131131999956, 50.637610459000058 ], [ -119.147136074999963, 50.63771830000006 ], [ -119.147126912999951, 50.637818025000101 ], [ -119.147118575999954, 50.637908702000068 ], [ -119.147157006999947, 50.638150604000082 ], [ -119.147293815999987, 50.63836210700012 ], [ -119.147293535999921, 50.638431062000073 ], [ -119.147288186999987, 50.639774306000071 ], [ -119.147346519999957, 50.639969195000063 ], [ -119.147429927999966, 50.64013352200007 ], [ -119.147452617999932, 50.640170169000037 ], [ -119.147476553000033, 50.64019804600008 ], [ -119.147511791999975, 50.64024425500007 ], [ -119.147559657999935, 50.640300006000118 ], [ -119.147581141999979, 50.64034541400008 ], [ -119.147625169999955, 50.640380602000057 ], [ -119.147654673999952, 50.640407028000098 ], [ -119.147670016999925, 50.640433709000078 ], [ -119.147699918999976, 50.640469139000089 ], [ -119.147743944999945, 50.640504327000045 ], [ -119.147788428999959, 50.640548476000028 ], [ -119.147818714999985, 50.640592887000089 ], [ -119.147848654999933, 50.640628308000046 ], [ -119.147864397999953, 50.640663992000079 ], [ -119.147880176999962, 50.640699666000053 ], [ -119.147910079999988, 50.640735096000078 ], [ -119.14792625799997, 50.640779775000077 ], [ -119.147942436999969, 50.640824454000082 ], [ -119.14795821599995, 50.640860128000085 ], [ -119.14797439299997, 50.640904806000037 ], [ -119.148004298, 50.64094023600007 ], [ -119.148033765999926, 50.64096667400004 ], [ -119.148106480999957, 50.641010312000098 ], [ -119.148150526999956, 50.641045466000051 ], [ -119.148194592999914, 50.641080642000112 ], [ -119.148239022999974, 50.641124778000048 ], [ -119.148254383999955, 50.641151482000112 ], [ -119.148284287999971, 50.641186912000123 ], [ -119.148285922999932, 50.641222863000031 ], [ -119.148287124999939, 50.641249820000098 ], [ -119.14828879599996, 50.641285760000088 ], [ -119.14827712599994, 50.641339929000047 ], [ -119.14827916199998, 50.641384885000015 ], [ -119.148267072999943, 50.641430083000095 ], [ -119.148269128, 50.641475006000029 ], [ -119.148256655999987, 50.641511223000094 ], [ -119.148257457999975, 50.641529175000109 ], [ -119.148260728999915, 50.641601077000104 ], [ -119.14826198499999, 50.641628046000093 ], [ -119.148262364999965, 50.641637028000098 ], [ -119.148277724999957, 50.641663730000047 ], [ -119.14829350699992, 50.641699404000157 ], [ -119.148309301999944, 50.641735102000034 ], [ -119.148399000999945, 50.641841371000098 ], [ -119.148457572999973, 50.641885286000075 ], [ -119.148516165999951, 50.641929168000118 ], [ -119.148574338999978, 50.641964077000104 ], [ -119.148632928999945, 50.642007959000047 ], [ -119.148676942999884, 50.642043124000104 ], [ -119.148749641999927, 50.642086739000035 ], [ -119.148779547999979, 50.642122169000061 ], [ -119.148823176999954, 50.642148352000049 ], [ -119.148838577, 50.642175044000084 ], [ -119.14886762699993, 50.642192510000029 ], [ -119.14889757, 50.642227930000089 ], [ -119.148927039999975, 50.642254367000085 ], [ -119.148957381999978, 50.642298792000133 ], [ -119.148986849999957, 50.642325229000029 ], [ -119.149017175, 50.642369630000076 ], [ -119.149033355999933, 50.642414309000046 ], [ -119.14904913599996, 50.642449982000102 ], [ -119.149065315999948, 50.642494661000072 ], [ -119.149067771999981, 50.642548587000043 ], [ -119.14906982699992, 50.642593509000072 ], [ -119.149057738999929, 50.64263870800005 ], [ -119.149059811999948, 50.64268365300007 ], [ -119.149047723999985, 50.642728853000072 ], [ -119.149034797999889, 50.642756053000056 ], [ -119.149021890999947, 50.642783276000102 ], [ -119.149023146999966, 50.642810246000082 ], [ -119.149011058999946, 50.642855445000073 ], [ -119.14901431399997, 50.642927324 ], [ -119.149015568999971, 50.64295429400007 ], [ -119.149002661999958, 50.642981518000035 ], [ -119.149003479999919, 50.642999493000048 ], [ -119.149018825999946, 50.643026172000127 ], [ -119.149019642999974, 50.643044148000072 ], [ -119.149022534999929, 50.643107069000109 ], [ -119.149083968999932, 50.643213858000081 ], [ -119.149100184999966, 50.643258526000047 ], [ -119.149115927999958, 50.643294210000064 ], [ -119.149117183, 50.643321180000029 ], [ -119.149130946999918, 50.643366164000042 ], [ -119.149130580999895, 50.643411137000093 ], [ -119.149144381999946, 50.643456110000088 ], [ -119.149144000999939, 50.64350105799999 ], [ -119.149157929999902, 50.643528065000126 ], [ -119.149157871999975, 50.643537061000067 ], [ -119.149301682999976, 50.643820330000068 ], [ -119.149315409999943, 50.643847368000053 ], [ -119.149323700999958, 50.643863681000013 ], [ -119.149296368999899, 50.643882341000037 ], [ -119.149268601999893, 50.643891950000068 ], [ -119.149198483999939, 50.643902508000039 ], [ -119.148831903999977, 50.643910624000071 ], [ -119.148746930999948, 50.643903508000029 ], [ -119.148436734999919, 50.64391037000005 ], [ -119.148365798999976, 50.643902952000083 ], [ -119.14830941299999, 50.643904204000059 ], [ -119.148266716999956, 50.643896161000086 ], [ -119.148139849999964, 50.643898953000068 ], [ -119.148083845999906, 50.643909187000148 ], [ -119.148042003999976, 50.643919108000077 ], [ -119.148014616999959, 50.643937756000049 ], [ -119.148001371999968, 50.643956126000027 ], [ -119.147973607999944, 50.64396573500008 ], [ -119.147960383999958, 50.643984070000059 ], [ -119.147876627999935, 50.644003936000054 ], [ -119.14780691199995, 50.644023498000102 ], [ -119.14772275699994, 50.644034358000049 ], [ -119.147638165999979, 50.644036222000032 ], [ -119.14753841000001, 50.644011470000095 ], [ -119.147495677, 50.644003436 ], [ -119.147409500999984, 50.643969422000048 ], [ -119.147380515999956, 50.643952107000047 ], [ -119.147337437999965, 50.643935081000059 ], [ -119.147206999, 50.643857223000097 ], [ -119.147149403999947, 50.643831633000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "224.9", "sL_BldgLoss": "224.9", "sL_StrLoss": "224.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007FD835CEE4C45DC01561BB6263564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.077066051999935, 50.67100500500004 ], [ -119.082627988999946, 50.671351114000039 ], [ -119.080994007999948, 50.673116293000135 ], [ -119.079094801999972, 50.675077696000088 ], [ -119.078687667999944, 50.675440128000091 ], [ -119.078146286999967, 50.675922089000018 ], [ -119.077590674999939, 50.676479599000125 ], [ -119.077097409999951, 50.677084396000083 ], [ -119.076527493999919, 50.677851192000048 ], [ -119.076465191999972, 50.677934993000036 ], [ -119.076010479999951, 50.678445985000081 ], [ -119.076005973999941, 50.67845104000002 ], [ -119.075617009999959, 50.678445849000134 ], [ -119.071142992999938, 50.678386257000092 ], [ -119.069310525999953, 50.678361779000056 ], [ -119.069416308999948, 50.677678446000073 ], [ -119.069904073999936, 50.677708839000097 ], [ -119.070002516999978, 50.677072858000024 ], [ -119.072527657999984, 50.677230166000115 ], [ -119.072550705999944, 50.677081216000047 ], [ -119.072998214, 50.677109088000108 ], [ -119.07321055299991, 50.675736627000084 ], [ -119.073741750999957, 50.675769709000093 ], [ -119.073944193000017, 50.674461041000022 ], [ -119.074514304999965, 50.674496544000121 ], [ -119.074563583, 50.674177955000125 ], [ -119.074741438, 50.674189030000036 ], [ -119.074883619999966, 50.673269760000018 ], [ -119.076387724999947, 50.673363410000022 ], [ -119.076514087999954, 50.672546195000052 ], [ -119.076628595999964, 50.672553324000084 ], [ -119.076722113999949, 50.671948498000056 ], [ -119.076889377999976, 50.671958911000061 ], [ -119.076918214999949, 50.67177240200003 ], [ -119.076947127999986, 50.671774202000051 ], [ -119.077066051999935, 50.67100500500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "212.7", "sL_BldgLoss": "212.7", "sL_StrLoss": "212.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000006A93580CC65DC0FA78AE10D2524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.087216236999936, 50.649168356000068 ], [ -119.087333599, 50.648407730000024 ], [ -119.086709015999986, 50.648368883000032 ], [ -119.086759222999916, 50.648043513000104 ], [ -119.086670335999884, 50.64803798300008 ], [ -119.086780984999933, 50.64732090600009 ], [ -119.087124623999941, 50.647291667000076 ], [ -119.08852501199999, 50.647258858000093 ], [ -119.088779387, 50.647252905000052 ], [ -119.089450375999917, 50.647237192000034 ], [ -119.089507342999923, 50.647235836000043 ], [ -119.089597755999961, 50.647224380000068 ], [ -119.090367181999966, 50.647126827000072 ], [ -119.091624915999958, 50.646899039000083 ], [ -119.098538056999956, 50.645460152000062 ], [ -119.09897756099997, 50.64533850000003 ], [ -119.099468203999891, 50.645152353000114 ], [ -119.099880617999972, 50.644920705000125 ], [ -119.100280190999982, 50.64465219100002 ], [ -119.100954022999971, 50.644107323000057 ], [ -119.100985033000015, 50.644079794000049 ], [ -119.101318831999947, 50.644100515000048 ], [ -119.100909325999964, 50.646760109000063 ], [ -119.099958390999944, 50.647033106000038 ], [ -119.098377193999966, 50.647384892000076 ], [ -119.096352186999979, 50.647655503000117 ], [ -119.095165689999931, 50.648037199000093 ], [ -119.093096304999932, 50.648245108000047 ], [ -119.091190010999924, 50.648341982000076 ], [ -119.089338381999966, 50.648662396000113 ], [ -119.088556492999899, 50.64892018700003 ], [ -119.087216236999936, 50.649168356000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25692750", "BldgCostT": "16245000", "sL_LossRatio": "1", "sL_AssetLoss": "755.8", "sL_BldgLoss": "755.8", "sL_StrLoss": "755.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008710E3778BC85DC011C691FFB0534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.131130318999951, 50.657255200000073 ], [ -119.131226059999918, 50.656630833000079 ], [ -119.12920178199991, 50.656505746000029 ], [ -119.129628699999927, 50.65372219900005 ], [ -119.129312478999921, 50.65370265500006 ], [ -119.129818850999982, 50.650400744000116 ], [ -119.128396677999916, 50.650312837000101 ], [ -119.128838329999937, 50.647433145000086 ], [ -119.128475980999951, 50.647410744000084 ], [ -119.129024418999947, 50.643834425000058 ], [ -119.131193382999982, 50.643968495000081 ], [ -119.13465684, 50.644182491000073 ], [ -119.134478399999978, 50.645347093000048 ], [ -119.136376787999964, 50.645464342000132 ], [ -119.136441727999951, 50.645040397000088 ], [ -119.136546013999933, 50.645046837000081 ], [ -119.13657143099999, 50.644880900000054 ], [ -119.141177339999942, 50.645165231000071 ], [ -119.141074, 50.645238409000093 ], [ -119.141004936999977, 50.645277777000047 ], [ -119.140936219, 50.645326392000051 ], [ -119.14088173199994, 50.645374537000045 ], [ -119.140814277999979, 50.645450885000066 ], [ -119.140760136999972, 50.645508276000079 ], [ -119.140720169999923, 50.645565241000099 ], [ -119.140694298999946, 50.645621801000054 ], [ -119.140653855999957, 50.645669470000037 ], [ -119.140573902999947, 50.645783377000107 ], [ -119.140534297999949, 50.645849612000042 ], [ -119.140508844999914, 50.64591551300002 ], [ -119.140497500999984, 50.645981033000091 ], [ -119.14050113899998, 50.646064959000064 ], [ -119.140488617999935, 50.646102552000066 ], [ -119.140490629999974, 50.646149161000054 ], [ -119.140478507999973, 50.64619607200013 ], [ -119.14046680300001, 50.646252321000055 ], [ -119.140440968999897, 50.646308871000031 ], [ -119.140428848999946, 50.646355781000075 ], [ -119.140416311999957, 50.646393349000078 ], [ -119.140403502999945, 50.646421649000089 ], [ -119.140323546999966, 50.646535557000071 ], [ -119.14026978699998, 50.646602241000075 ], [ -119.140202328999962, 50.6466785900001 ], [ -119.140120713999963, 50.646755387000091 ], [ -119.13997652899991, 50.647019996000068 ], [ -119.139951038999968, 50.64708585000011 ], [ -119.139911028999933, 50.647142825000067 ], [ -119.139871477999961, 50.647209075000063 ], [ -119.139831487999928, 50.647266015000056 ], [ -119.139805616000018, 50.647322575000075 ], [ -119.139793893999965, 50.647378803000066 ], [ -119.139753883999944, 50.647435778000087 ], [ -119.139728047999924, 50.647492328000041 ], [ -119.13971712199999, 50.647567190000117 ], [ -119.139667022999944, 50.647717593000031 ], [ -119.139643558, 50.647830023000076 ], [ -119.139617682999983, 50.647886584000055 ], [ -119.139592261999937, 50.647952474000128 ], [ -119.139567602999975, 50.648036953 ], [ -119.139515910999975, 50.648150087000026 ], [ -119.13949005299996, 50.648206672000164 ], [ -119.139450843999967, 50.648282224000098 ], [ -119.139425387999978, 50.648348068000082 ], [ -119.139386193999897, 50.648423644000026 ], [ -119.139360719999985, 50.64848952300008 ], [ -119.139336059999962, 50.648574001 ], [ -119.139324350999956, 50.648630251000029 ], [ -119.139327191999939, 50.648695485000097 ], [ -119.139315467999978, 50.648751712000077 ], [ -119.1393194609999, 50.648844967000066 ], [ -119.139335611999925, 50.648891359000075 ], [ -119.139369061999943, 50.649425603000076 ], [ -119.139402686999986, 50.649477401000063 ], [ -119.139381132999944, 50.649618285000024 ], [ -119.139296875999932, 50.65016869800008 ], [ -119.139292895999958, 50.650194488000089 ], [ -119.139212297999961, 50.650442204000093 ], [ -119.138593093999972, 50.651820988000104 ], [ -119.138713504999885, 50.652408808000153 ], [ -119.138910764999977, 50.652802559000051 ], [ -119.138680943999987, 50.652788375000071 ], [ -119.138511890999936, 50.653892144000032 ], [ -119.138772060999926, 50.653908202000061 ], [ -119.138901466999982, 50.653063271000107 ], [ -119.139045840999984, 50.653072182000088 ], [ -119.13927430299999, 50.653528204000096 ], [ -119.139392504999961, 50.654009384000055 ], [ -119.139377896999946, 50.654373996000096 ], [ -119.139492702999959, 50.654673495000061 ], [ -119.139795577999962, 50.654896093000069 ], [ -119.140023399999976, 50.655153912000088 ], [ -119.140576282999959, 50.655489397000053 ], [ -119.140743817, 50.655769597000102 ], [ -119.141130904999955, 50.656138290000086 ], [ -119.140839402999973, 50.656389284000092 ], [ -119.140513583999947, 50.65678069700008 ], [ -119.140375189999958, 50.657006799000044 ], [ -119.140294817999973, 50.657226381000029 ], [ -119.140228489, 50.657407501000108 ], [ -119.140235603999884, 50.657639904000071 ], [ -119.140369001999915, 50.65797580400001 ], [ -119.140360304999945, 50.658135006000109 ], [ -119.140261717999977, 50.658304901000065 ], [ -119.139953285999965, 50.65860081400006 ], [ -119.13969280399999, 50.6589097 ], [ -119.139564590999953, 50.659198705000087 ], [ -119.139371904999933, 50.659806804000041 ], [ -119.139281203999957, 50.659981708 ], [ -119.139153721999961, 50.660136299000087 ], [ -119.138972887999955, 50.660276812000049 ], [ -119.138327375999921, 50.660536603000025 ], [ -119.138129608, 50.660667003000064 ], [ -119.138004716999916, 50.660832602000063 ], [ -119.137616991999948, 50.661493797000084 ], [ -119.133360662999948, 50.661231017000034 ], [ -119.133311190999919, 50.661553723000083 ], [ -119.13194447099994, 50.661469308000115 ], [ -119.131645824, 50.663416856000069 ], [ -119.129969133999921, 50.663313274000082 ], [ -119.12995418499996, 50.663410727000056 ], [ -119.129394198999975, 50.66339234400008 ], [ -119.124775188999976, 50.6632404960001 ], [ -119.124007773999978, 50.663215247000046 ], [ -119.124489798999903, 50.660075259000124 ], [ -119.126451784000025, 50.660196572000068 ], [ -119.126559841999949, 50.659492406000076 ], [ -119.127926490999968, 50.659576886000181 ], [ -119.128225274999949, 50.65762933900001 ], [ -119.129341525999934, 50.657698329000077 ], [ -119.129425648999984, 50.657149865000079 ], [ -119.131130318999951, 50.657255200000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "267.9", "sL_BldgLoss": "267.9", "sL_StrLoss": "267.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006169226407C55DC079705E39CE544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.076245505999921, 50.666296860000081 ], [ -119.07629278899999, 50.665991027000103 ], [ -119.076267627000021, 50.665989461000052 ], [ -119.076366869999944, 50.66534754 ], [ -119.076100568999962, 50.665330958000013 ], [ -119.076522022999924, 50.662604807000065 ], [ -119.074579408999952, 50.662483821000052 ], [ -119.075132320999941, 50.658907833000072 ], [ -119.075455497999926, 50.658927962000099 ], [ -119.07555173599998, 50.658305440000113 ], [ -119.077677258, 50.658437810000081 ], [ -119.080941224999947, 50.658640995000034 ], [ -119.08064418099994, 50.659395295000088 ], [ -119.08043599599992, 50.660460613000041 ], [ -119.08061669599995, 50.661347887000012 ], [ -119.08093869899993, 50.661908993000047 ], [ -119.081637101999888, 50.662642497000071 ], [ -119.082398590999944, 50.663204995000036 ], [ -119.082663367999885, 50.663334895000077 ], [ -119.082638780999986, 50.663494084000035 ], [ -119.082273803999897, 50.665856975000047 ], [ -119.082196296999967, 50.665852153000102 ], [ -119.08215951399994, 50.666090278000063 ], [ -119.081968262999965, 50.666078378000108 ], [ -119.08188033199994, 50.66664758200006 ], [ -119.076245505999921, 50.666296860000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "194", "sL_BldgLoss": "194", "sL_StrLoss": "194", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CD208AA44C95DC088024BE80D514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.141358367999914, 50.636870921000117 ], [ -119.141887972999925, 50.633410038000051 ], [ -119.141722718999972, 50.633399838000095 ], [ -119.14226993399997, 50.629823394 ], [ -119.147599038999928, 50.630152192000025 ], [ -119.147888076999919, 50.628261418000072 ], [ -119.149380984999965, 50.628353482000115 ], [ -119.149259832999931, 50.628694458000055 ], [ -119.149233782999929, 50.628767697000036 ], [ -119.148870429999974, 50.629471797000036 ], [ -119.148260375999911, 50.630777494000071 ], [ -119.148040388999931, 50.631248296000088 ], [ -119.147876316999941, 50.631531505000069 ], [ -119.147515503, 50.631892817000079 ], [ -119.147307692999973, 50.632146210000045 ], [ -119.147233708999963, 50.632363607000038 ], [ -119.1471568689999, 50.632589334000038 ], [ -119.147156932999962, 50.632591162000033 ], [ -119.147160201999966, 50.632663062000091 ], [ -119.147167593999953, 50.632824827000043 ], [ -119.14715717899999, 50.632905964000095 ], [ -119.14714629, 50.632978117000079 ], [ -119.147149160999945, 50.63304101200012 ], [ -119.147137507999972, 50.633095202000085 ], [ -119.147126237999942, 50.633158375 ], [ -119.147115784000022, 50.633239522000117 ], [ -119.147119090000032, 50.633311413000044 ], [ -119.147108620999944, 50.633392536000024 ], [ -119.147110652999928, 50.633437490000041 ], [ -119.147112706999977, 50.633482412000063 ], [ -119.147114776999928, 50.633527355000133 ], [ -119.14710266899999, 50.633572529000062 ], [ -119.147104740999978, 50.633617473000101 ], [ -119.147093034999969, 50.633671652000011 ], [ -119.147081380999921, 50.633725843000107 ], [ -119.14706929499999, 50.633771041000045 ], [ -119.147056806999956, 50.633807233000034 ], [ -119.147043901999922, 50.633834456000017 ], [ -119.147030577999942, 50.63385270800007 ], [ -119.147003985999945, 50.633889167000056 ], [ -119.146991499999942, 50.633925360000021 ], [ -119.146993133999956, 50.633961310000068 ], [ -119.146981045999922, 50.634006508000084 ], [ -119.146997222, 50.634051185000082 ], [ -119.147012959999955, 50.634086869000093 ], [ -119.147043291999964, 50.634131294000035 ], [ -119.147073191999951, 50.634166723000114 ], [ -119.147089347999909, 50.634211378000082 ], [ -119.147120062999946, 50.63426478300002 ], [ -119.147151214999923, 50.634327183000053 ], [ -119.147152847000015, 50.634363133000093 ], [ -119.147154084999954, 50.63439007800006 ], [ -119.147158171999976, 50.634479954000035 ], [ -119.147145683999938, 50.634516147000021 ], [ -119.147148136999988, 50.634570072000081 ], [ -119.147136482999912, 50.634624264000053 ], [ -119.147139317999972, 50.634687170000106 ], [ -119.14714218899995, 50.634750065000098 ], [ -119.147145876999986, 50.634830936000085 ], [ -119.147135422999938, 50.634912084000064 ], [ -119.147139125999942, 50.634992978000099 ], [ -119.14712909299999, 50.635083097000098 ], [ -119.14713279799993, 50.635163991000084 ], [ -119.14712314599997, 50.635263091000112 ], [ -119.147113543999964, 50.635362204000067 ], [ -119.14711801199995, 50.635461059000122 ], [ -119.147107596999945, 50.635542197000106 ], [ -119.147110445999942, 50.635605127000147 ], [ -119.147112920999959, 50.635659019000045 ], [ -119.147116623999977, 50.635739914000041 ], [ -119.147120274999949, 50.635820795000036 ], [ -119.147124362999989, 50.635910671000062 ], [ -119.147113944999944, 50.635991809000117 ], [ -119.147115180999961, 50.636018754000112 ], [ -119.147117123999976, 50.636061406000067 ], [ -119.14711721499999, 50.636063709000076 ], [ -119.147105962999916, 50.636126849000078 ], [ -119.14710923299999, 50.636198749000066 ], [ -119.147097961999975, 50.636261922000102 ], [ -119.147101229999961, 50.636333823000058 ], [ -119.147105736999961, 50.636432669000051 ], [ -119.147124782999938, 50.636540243000105 ], [ -119.147129305999911, 50.636639113000079 ], [ -119.147147534999988, 50.636728711000053 ], [ -119.147150802999974, 50.636800613000077 ], [ -119.14715449199997, 50.636881483000074 ], [ -119.147156137999943, 50.63691758600006 ], [ -119.147046461999935, 50.636910823000051 ], [ -119.147024603999981, 50.637053767000069 ], [ -119.14701526799999, 50.637053192000074 ], [ -119.146990010999957, 50.637218367000052 ], [ -119.141358367999914, 50.636870921000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "86.2", "sL_BldgLoss": "86.2", "sL_StrLoss": "86.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D47D216004C85DC0B712B2DA994C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.126801279999938, 50.597761787000138 ], [ -119.126883443999972, 50.597751022000075 ], [ -119.128073289999932, 50.598635980000068 ], [ -119.127991233999964, 50.599171591000072 ], [ -119.1223644989999, 50.59882316900012 ], [ -119.122503611, 50.597915866000086 ], [ -119.126801279999938, 50.597761787000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "1", "sL_AssetLoss": "157.6", "sL_BldgLoss": "157.6", "sL_StrLoss": "157.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F7D772B8BC95DC0548BEB8CAD4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.144550389999964, 50.600347981000034 ], [ -119.144622584999979, 50.599875607000065 ], [ -119.144303014999934, 50.599855875000046 ], [ -119.144588385999953, 50.597988669000095 ], [ -119.153988888999933, 50.597985613000091 ], [ -119.154146203999957, 50.597978054000073 ], [ -119.155505294999941, 50.597981223000083 ], [ -119.157897967999986, 50.598027463000086 ], [ -119.157825996999975, 50.598499311000062 ], [ -119.157631125999956, 50.598487302000137 ], [ -119.157575005999902, 50.598855217000036 ], [ -119.153743697999928, 50.598619029000083 ], [ -119.151948082999965, 50.598508289000058 ], [ -119.152007402999985, 50.59811971700001 ], [ -119.151771802999988, 50.598105185000072 ], [ -119.151772664, 50.598099541000117 ], [ -119.15058504699999, 50.598026279000109 ], [ -119.150177486999922, 50.600695281000064 ], [ -119.144550389999964, 50.600347981000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223343607", "BldgCostT": "147846011", "sL_LossRatio": "1", "sL_AssetLoss": "6566.8", "sL_BldgLoss": "6566.8", "sL_StrLoss": "6566.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F0BD99278C95DC0A15A65227C4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.121975570999936, 50.626406491000061 ], [ -119.120807400000018, 50.626009301000046 ], [ -119.119879782999988, 50.627007855000031 ], [ -119.119187207, 50.626872884000115 ], [ -119.118827078999985, 50.62685266600009 ], [ -119.118525550999919, 50.62683571900007 ], [ -119.119032090999951, 50.626063111000114 ], [ -119.119275917999943, 50.625187198000098 ], [ -119.119285809999923, 50.625106007000092 ], [ -119.119462601999928, 50.624617493000052 ], [ -119.120148912, 50.623516598000073 ], [ -119.120227104999927, 50.623082209000081 ], [ -119.120981413999985, 50.62130620100006 ], [ -119.121586405999949, 50.620315010000077 ], [ -119.122160789999953, 50.619521694000071 ], [ -119.123467884999968, 50.618121702000025 ], [ -119.123672294999949, 50.617650309000041 ], [ -119.124811198999964, 50.615318787000085 ], [ -119.125828092999939, 50.613735113000075 ], [ -119.126313700999972, 50.6131867920001 ], [ -119.127536591999927, 50.612093008000038 ], [ -119.128611073999977, 50.611526547000096 ], [ -119.132521914, 50.611768454000121 ], [ -119.132785941999913, 50.610044365000135 ], [ -119.131109700999929, 50.609940698000067 ], [ -119.131796392999888, 50.609389904000096 ], [ -119.133470908999954, 50.607972810000092 ], [ -119.133858906999961, 50.607498508000035 ], [ -119.135253592999945, 50.606438889000117 ], [ -119.136025782000033, 50.605713994000084 ], [ -119.13677548699998, 50.60478250600007 ], [ -119.13700810899999, 50.604338203000069 ], [ -119.137040710999941, 50.60349218699999 ], [ -119.136815803999951, 50.602902607000026 ], [ -119.136385481999952, 50.602119303000073 ], [ -119.135630411999955, 50.601385787000055 ], [ -119.134130481999946, 50.600405904000091 ], [ -119.133662742999903, 50.600192559000021 ], [ -119.133763916999953, 50.599531629000076 ], [ -119.139390826999914, 50.599879474000055 ], [ -119.139295223999937, 50.60050452800003 ], [ -119.140661430999955, 50.600588940000129 ], [ -119.140653895999918, 50.600638217000089 ], [ -119.141028021999915, 50.60066133000003 ], [ -119.140899039999965, 50.601504793000082 ], [ -119.141137578, 50.60151952800009 ], [ -119.140794712999963, 50.603761582000075 ], [ -119.145811984999966, 50.604071403000077 ], [ -119.145748821999931, 50.60448471400008 ], [ -119.145909010999986, 50.604494602000067 ], [ -119.145874781999922, 50.604718581000071 ], [ -119.146056521999981, 50.604729799000033 ], [ -119.146005467999942, 50.60506387700012 ], [ -119.146005846999927, 50.605063901000051 ], [ -119.14547396099999, 50.608544094000067 ], [ -119.145507516999913, 50.608546165000128 ], [ -119.14551849799993, 50.608474317000045 ], [ -119.145782734999941, 50.608490627000052 ], [ -119.145840904999943, 50.608110024000041 ], [ -119.146564574999957, 50.608154689000123 ], [ -119.146689112, 50.607339742000121 ], [ -119.146921029999987, 50.607354054000083 ], [ -119.14693730599997, 50.607247547000071 ], [ -119.147293025999915, 50.607269499000061 ], [ -119.147471848, 50.606099157000109 ], [ -119.147493695999913, 50.606100505 ], [ -119.147519555999949, 50.605931257000044 ], [ -119.147754430999953, 50.605945751 ], [ -119.14803393499993, 50.604116264000019 ], [ -119.148183556, 50.604125497000084 ], [ -119.148200333999966, 50.604015668000102 ], [ -119.148220110999915, 50.604016889000043 ], [ -119.148261345999941, 50.603746970000017 ], [ -119.148856088999977, 50.603783667000059 ], [ -119.14890293399999, 50.603476983000085 ], [ -119.150480503999944, 50.603574309000123 ], [ -119.150686979999975, 50.602222229000112 ], [ -119.15029966900002, 50.602198337000104 ], [ -119.150845822999955, 50.598621716000132 ], [ -119.15367511, 50.598796219000135 ], [ -119.156472752999917, 50.59896869900011 ], [ -119.156359743999928, 50.599709422000053 ], [ -119.156849190999964, 50.599739590000048 ], [ -119.156775978, 50.60021949300009 ], [ -119.157165214999949, 50.600243482000074 ], [ -119.157104601999905, 50.600640807000048 ], [ -119.157251839999944, 50.600649881000095 ], [ -119.157231195999913, 50.600785206000054 ], [ -119.158501887999989, 50.600761658000053 ], [ -119.158514226999941, 50.601031261000124 ], [ -119.158937836999954, 50.601023407000092 ], [ -119.158950176999937, 50.601293010000049 ], [ -119.159373788999929, 50.601285154000067 ], [ -119.159386130999977, 50.601554756000084 ], [ -119.161504198000017, 50.601515459000019 ], [ -119.161516552999942, 50.601785060000111 ], [ -119.162787398999939, 50.601761463000109 ], [ -119.16279976, 50.602031064000045 ], [ -119.163223377999927, 50.602023196000111 ], [ -119.163260473999983, 50.602831999000031 ], [ -119.162836849999962, 50.602839868000061 ], [ -119.162861576999958, 50.603379070000116 ], [ -119.16236254899999, 50.603388338000094 ], [ -119.161590687999947, 50.603402668000115 ], [ -119.161578332999952, 50.603133066000048 ], [ -119.161154704999944, 50.603140929000105 ], [ -119.161129997999922, 50.602601727000064 ], [ -119.160282750999983, 50.602617449000057 ], [ -119.160295100999974, 50.602887050000099 ], [ -119.15987147499996, 50.602894907000049 ], [ -119.159896166999928, 50.603434111000119 ], [ -119.159472537999974, 50.60344196800007 ], [ -119.15949722699996, 50.603981171000051 ], [ -119.158226317999919, 50.604004733000075 ], [ -119.158238655999966, 50.604274334000074 ], [ -119.156047987999955, 50.604314915000074 ], [ -119.155806792999968, 50.605895521000015 ], [ -119.159507133999981, 50.606123529000079 ], [ -119.159091930999949, 50.608845634000076 ], [ -119.160566819999957, 50.608818279000069 ], [ -119.160579173999977, 50.60908788000004 ], [ -119.161426536999954, 50.609072156000082 ], [ -119.161435481999945, 50.609267307000096 ], [ -119.165317257999959, 50.609506273000072 ], [ -119.165202112999964, 50.610261784000059 ], [ -119.165369308999971, 50.610272074000093 ], [ -119.165199435999938, 50.611386665000069 ], [ -119.165753573999964, 50.611420766000023 ], [ -119.16533551399999, 50.614163775000051 ], [ -119.166851607999931, 50.614257060000092 ], [ -119.166926265999919, 50.613767118000098 ], [ -119.167053510999921, 50.613774947000103 ], [ -119.167095373999956, 50.613500221000066 ], [ -119.167144424999933, 50.613503239000053 ], [ -119.167203991999969, 50.613112323000074 ], [ -119.172832858999953, 50.613458473000051 ], [ -119.172775494999954, 50.613835256000115 ], [ -119.17298558, 50.613848170000054 ], [ -119.1729669959999, 50.613970233000067 ], [ -119.174269431999932, 50.614050284000072 ], [ -119.174359991999921, 50.613455342000137 ], [ -119.171863881999982, 50.613301912000018 ], [ -119.172408454000035, 50.609725234000095 ], [ -119.173934828999947, 50.609819063000074 ], [ -119.174111342999936, 50.60865937000009 ], [ -119.175312381, 50.60873318600003 ], [ -119.175319987999927, 50.608683198000094 ], [ -119.178833556999962, 50.608899064000049 ], [ -119.178968412999922, 50.608984436000064 ], [ -119.179477219999967, 50.609373952000091 ], [ -119.179927025000012, 50.609255363000052 ], [ -119.180807499999972, 50.609162320000053 ], [ -119.180934610999941, 50.609119396000075 ], [ -119.180787688999928, 50.610085638000058 ], [ -119.181786234999947, 50.61014694700004 ], [ -119.181929817999972, 50.613765870000123 ], [ -119.180012225999974, 50.613648137000034 ], [ -119.180010038999939, 50.613662515000094 ], [ -119.180494500999913, 50.613692262000022 ], [ -119.180430286999979, 50.614114500000078 ], [ -119.181942529999901, 50.614086177000097 ], [ -119.181975972999908, 50.61492900800004 ], [ -119.181510181999926, 50.616441366000089 ], [ -119.181639486999927, 50.616627715000021 ], [ -119.181682746999954, 50.616759307000038 ], [ -119.181722115999918, 50.616879101000102 ], [ -119.181723136999963, 50.617018906000034 ], [ -119.181731185999979, 50.618098085000057 ], [ -119.181734415999941, 50.618529278000025 ], [ -119.181738346999964, 50.619059306000068 ], [ -119.181740695999949, 50.61937210800005 ], [ -119.181677284999964, 50.619473168000049 ], [ -119.181637608, 50.619536392000015 ], [ -119.181626031999954, 50.619555309000148 ], [ -119.181548721999917, 50.619681618000115 ], [ -119.180662427999948, 50.61929779000009 ], [ -119.178521882999988, 50.618381185000047 ], [ -119.178438862999926, 50.618355268000123 ], [ -119.17799295899999, 50.618216015 ], [ -119.177196885999962, 50.618014596000101 ], [ -119.1769789, 50.617980509000049 ], [ -119.176426797999952, 50.617894209000106 ], [ -119.175810894999955, 50.617852693000017 ], [ -119.175291278999978, 50.618000406000064 ], [ -119.174968524999883, 50.618049202000044 ], [ -119.172795426999954, 50.618171555000046 ], [ -119.171972396999962, 50.618217902000033 ], [ -119.171838072999947, 50.618225081000084 ], [ -119.17180994899995, 50.618226594000141 ], [ -119.171641227999942, 50.618235633000026 ], [ -119.171580008999953, 50.618238884000064 ], [ -119.171464622999977, 50.618257796000115 ], [ -119.17069852199991, 50.618383202000061 ], [ -119.170497509999961, 50.618416079000092 ], [ -119.170438541999914, 50.618423704000087 ], [ -119.169323805999952, 50.61856770300011 ], [ -119.168459021999979, 50.618605916000028 ], [ -119.168332704999955, 50.618611497000089 ], [ -119.167599400999947, 50.618585303000025 ], [ -119.166622513, 50.618489085000121 ], [ -119.166185009999964, 50.618422192000025 ], [ -119.165733991, 50.618353208000123 ], [ -119.165089606999913, 50.618200802000068 ], [ -119.162551920999988, 50.617347805000108 ], [ -119.162060914999984, 50.617241805000056 ], [ -119.161648390999957, 50.617217295000096 ], [ -119.161107747999949, 50.617260737000073 ], [ -119.1601857859999, 50.617334794000023 ], [ -119.159780914999942, 50.617363086000111 ], [ -119.159516223999958, 50.617347704000068 ], [ -119.159089588999947, 50.617238412000084 ], [ -119.158853716999914, 50.617099391000096 ], [ -119.158709897999969, 50.616878399000015 ], [ -119.15858852599996, 50.616324000000105 ], [ -119.158512001999966, 50.616220003000073 ], [ -119.158432623999914, 50.616116697000045 ], [ -119.158186393000022, 50.615914689000114 ], [ -119.157737732999976, 50.615625303000087 ], [ -119.157397707999976, 50.615451902000075 ], [ -119.156421418999983, 50.615166096000046 ], [ -119.156079578999964, 50.61501319700011 ], [ -119.155956089999961, 50.614910883000093 ], [ -119.155709585999944, 50.614580698000104 ], [ -119.155605491999921, 50.614488650000084 ], [ -119.155495587999951, 50.614391501000064 ], [ -119.154614592999906, 50.613881394000053 ], [ -119.154172305, 50.613577993000042 ], [ -119.153955594999928, 50.613322702000097 ], [ -119.153650474999964, 50.612885846000104 ], [ -119.15359658599999, 50.612808707000049 ], [ -119.153359395999971, 50.612594610000038 ], [ -119.153048492999957, 50.612463507000029 ], [ -119.152696929999962, 50.612422002000088 ], [ -119.152272113999956, 50.612414628000103 ], [ -119.15211617099996, 50.612411937000076 ], [ -119.150801509999908, 50.61238914500013 ], [ -119.150723430999946, 50.612387802000057 ], [ -119.150159488, 50.612360304000042 ], [ -119.150145576999975, 50.612358472000096 ], [ -119.14917992899997, 50.612231795000127 ], [ -119.148613815999937, 50.612157530000111 ], [ -119.147652305999912, 50.61250080700006 ], [ -119.146989222999977, 50.612796844000066 ], [ -119.144961617999954, 50.613702099000115 ], [ -119.144295108999955, 50.61409419500005 ], [ -119.143061603999968, 50.614934194000092 ], [ -119.142822791999933, 50.61517671100011 ], [ -119.142655887999965, 50.615450699000114 ], [ -119.142491220999929, 50.61587730900002 ], [ -119.141031794999947, 50.620319009000099 ], [ -119.140772022999926, 50.621113289000071 ], [ -119.140703636999916, 50.6213224500001 ], [ -119.140659620999926, 50.621457019000097 ], [ -119.140563547999989, 50.621750767000023 ], [ -119.138453811999966, 50.621620471000035 ], [ -119.138837822999974, 50.619111248000081 ], [ -119.137502355999956, 50.619028748000083 ], [ -119.137526687999966, 50.618869780000104 ], [ -119.137270358999928, 50.618853943000076 ], [ -119.13751137499996, 50.617279295000074 ], [ -119.137218530999974, 50.61726120200008 ], [ -119.137211758999925, 50.617305437000034 ], [ -119.136222275999899, 50.617244295000077 ], [ -119.13571507799999, 50.620557264000077 ], [ -119.1356578799999, 50.620553730000026 ], [ -119.135615486999924, 50.620830603000122 ], [ -119.137079754999917, 50.620921079000091 ], [ -119.137056645999948, 50.62107203900009 ], [ -119.137306457999983, 50.621087473000024 ], [ -119.137207621999934, 50.621733140000153 ], [ -119.140502749999925, 50.621936664000017 ], [ -119.14012962, 50.623077508000051 ], [ -119.139788800999924, 50.623559198000081 ], [ -119.139626203999981, 50.62370259500004 ], [ -119.139240985999933, 50.623975534000074 ], [ -119.139028615999948, 50.624125987000134 ], [ -119.138558394999976, 50.624366790000138 ], [ -119.136815384999977, 50.625162600000074 ], [ -119.136338395999985, 50.625290208000138 ], [ -119.135852502999967, 50.625335996000082 ], [ -119.13584288399997, 50.625336037000118 ], [ -119.134587191, 50.625340909000023 ], [ -119.133390813999938, 50.625336178000062 ], [ -119.133510989999962, 50.624551602000111 ], [ -119.132244028999949, 50.624473284000018 ], [ -119.132176316999931, 50.624915265000062 ], [ -119.132191804999948, 50.624916223000128 ], [ -119.132128232999889, 50.62533117100007 ], [ -119.127099580000021, 50.6253110870001 ], [ -119.126807296999957, 50.625336408000095 ], [ -119.126526515999913, 50.625388497000124 ], [ -119.126238083999908, 50.625508715000137 ], [ -119.126002178999954, 50.625703492000092 ], [ -119.125963362999926, 50.625749431000031 ], [ -119.124332796000019, 50.627676210000047 ], [ -119.124038113999944, 50.627901608000066 ], [ -119.12371581, 50.628057705000039 ], [ -119.123509296999941, 50.628107203000063 ], [ -119.123296211999929, 50.628125602000047 ], [ -119.123147743999979, 50.62808261100006 ], [ -119.122840413999953, 50.627993599000028 ], [ -119.122368888999958, 50.627834407000066 ], [ -119.123183302999976, 50.62682339900006 ], [ -119.121975570999936, 50.626406491000061 ] ], [ [ -119.130304639999935, 50.623870432000054 ], [ -119.130446552999985, 50.622944333000092 ], [ -119.129459853999947, 50.622883312000049 ], [ -119.129317921, 50.623809409000039 ], [ -119.130304639999935, 50.623870432000054 ] ], [ [ -119.140577043999912, 50.613495569000122 ], [ -119.140885230999984, 50.611480818000118 ], [ -119.141490215, 50.611518182000054 ], [ -119.141508207999962, 50.611400534000083 ], [ -119.142981869999943, 50.611491532000031 ], [ -119.143223117000034, 50.609913769000059 ], [ -119.144446680999948, 50.609989309000063 ], [ -119.144592109999948, 50.609037981000064 ], [ -119.139759242999958, 50.608739531000019 ], [ -119.139905789999943, 50.607781514000074 ], [ -119.139572406999918, 50.607760918000047 ], [ -119.139490550999938, 50.608296006000018 ], [ -119.134468005999935, 50.607985601000088 ], [ -119.134292858999956, 50.609129648000106 ], [ -119.13897469699999, 50.609419004000067 ], [ -119.138926057999953, 50.609736922000103 ], [ -119.138945220999943, 50.609738106000144 ], [ -119.138889968999948, 50.61009923400006 ], [ -119.139023841999972, 50.610107504000048 ], [ -119.138476609999898, 50.613684017000018 ], [ -119.138152203999951, 50.613663975000101 ], [ -119.138145441999939, 50.613708160000058 ], [ -119.13876470199996, 50.613746418000098 ], [ -119.138756117999932, 50.613802522000093 ], [ -119.138790720999936, 50.613804660000028 ], [ -119.138842008999944, 50.613469477000059 ], [ -119.140320954999979, 50.613560834000054 ], [ -119.140333241999926, 50.613480512000073 ], [ -119.140577043999912, 50.613495569000122 ] ], [ [ -119.155709889999954, 50.609874982000051 ], [ -119.155657547999922, 50.610217936000012 ], [ -119.156364831999937, 50.610261524000101 ], [ -119.156324938999958, 50.610522927000048 ], [ -119.156588493999948, 50.610539168000045 ], [ -119.156680719999898, 50.609934811000095 ], [ -119.155709889999954, 50.609874982000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002EFC22997CC85DC0338552A4904C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.129234513999975, 50.597700343000042 ], [ -119.134915345999957, 50.597940385000101 ], [ -119.134945845999937, 50.59794960800015 ], [ -119.134991037999953, 50.597958903000098 ], [ -119.135051231999952, 50.59796820800004 ], [ -119.13523041400002, 50.597969119000055 ], [ -119.135365260999919, 50.597978837000085 ], [ -119.135619151999933, 50.597980113000084 ], [ -119.135738979999971, 50.597989739000091 ], [ -119.135946109999907, 50.597990784000061 ], [ -119.13614166799999, 50.597990746000043 ], [ -119.136110932999898, 50.598191607000054 ], [ -119.135629376999958, 50.598161834000059 ], [ -119.13558812299999, 50.59843141900005 ], [ -119.134809908999912, 50.598383300000123 ], [ -119.134764599999968, 50.598679337000071 ], [ -119.130294615999972, 50.598402840000048 ], [ -119.130195082999961, 50.598338002000062 ], [ -119.129485804999931, 50.598009006000062 ], [ -119.129212039999942, 50.597847061000103 ], [ -119.129234513999975, 50.597700343000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4197750", "BldgCostT": "2895000", "sL_LossRatio": "1", "sL_AssetLoss": "279", "sL_BldgLoss": "279", "sL_StrLoss": "279", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019D6BFB1C8C75DC0BC555BDABE4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.12070668099993, 50.610350904000036 ], [ -119.125930350999965, 50.610674367000101 ], [ -119.125762439000013, 50.61176972700013 ], [ -119.124875814999925, 50.612645608000079 ], [ -119.123554397999982, 50.614720695000059 ], [ -119.121238709999886, 50.617281388000016 ], [ -119.120256995999981, 50.619007500000073 ], [ -119.119548483999949, 50.619937601000061 ], [ -119.117846422999932, 50.62423300300005 ], [ -119.116660644999968, 50.626730939000062 ], [ -119.116022546999929, 50.626695081000072 ], [ -119.116083918999962, 50.626573003000019 ], [ -119.116114975999949, 50.626501999 ], [ -119.116131008999972, 50.626451493000076 ], [ -119.116222119999932, 50.626298192000029 ], [ -119.116238128999967, 50.626247779000025 ], [ -119.116331207999949, 50.626034708000063 ], [ -119.116347912999927, 50.625964181000079 ], [ -119.116378319999953, 50.62591310800012 ], [ -119.116394296999957, 50.625862590000082 ], [ -119.116424717999962, 50.625811541000125 ], [ -119.116517646999952, 50.625598513000043 ], [ -119.116533662999956, 50.625547986000107 ], [ -119.116549321999955, 50.625507475000084 ], [ -119.116579727, 50.625456402000061 ], [ -119.116595401999987, 50.625415915000104 ], [ -119.116610763999972, 50.625385375000121 ], [ -119.116611849999941, 50.625355290000101 ], [ -119.116627524999956, 50.625314802000084 ], [ -119.116642867999985, 50.625284296000061 ], [ -119.116630289999975, 50.625244263000077 ], [ -119.116677195999912, 50.625192913000014 ], [ -119.116817649999959, 50.62486515000009 ], [ -119.117770879999966, 50.622640095000065 ], [ -119.118414046999959, 50.621138792000181 ], [ -119.118968904000013, 50.619843488000107 ], [ -119.119411998999965, 50.618836107000043 ], [ -119.119868358999923, 50.6177984770001 ], [ -119.120174358999947, 50.617102745000061 ], [ -119.120437404999947, 50.616504598000077 ], [ -119.120555897999978, 50.61615417300014 ], [ -119.120559505999935, 50.616143466000025 ], [ -119.12071569599999, 50.615681503000118 ], [ -119.120768956999953, 50.612559313000084 ], [ -119.120777903999908, 50.612035300000088 ], [ -119.12076638699989, 50.61125829000008 ], [ -119.12070668099993, 50.610350904000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9062334", "BldgCostT": "5753334", "sL_LossRatio": "0.979307729808786", "sL_AssetLoss": "369.22", "sL_BldgLoss": "361.58", "sL_StrLoss": "358.8", "sL_NStrLoss": "2.78", "sL_ContLoss": "7.64", "geom_point": "0101000020E6100000D3546883C0C75DC029E531DA154D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.119269199999977, 50.606046898000066 ], [ -119.119078402999932, 50.60536198900008 ], [ -119.11865931499996, 50.603857309000048 ], [ -119.118658804999953, 50.603852060000051 ], [ -119.118647983999921, 50.603734743000103 ], [ -119.118589911999948, 50.603106505000021 ], [ -119.118589078999904, 50.60209322700009 ], [ -119.118588752000022, 50.601652603000062 ], [ -119.11858864, 50.601505928000044 ], [ -119.118588201999941, 50.600941893 ], [ -119.118541388999958, 50.600645697000083 ], [ -119.118266401999904, 50.600053624000054 ], [ -119.118241111999907, 50.599999226000072 ], [ -119.1180289979999, 50.599542516000049 ], [ -119.118047253999947, 50.599217211000074 ], [ -119.118051093, 50.59914849400009 ], [ -119.118304676999969, 50.598066244 ], [ -119.121570947999885, 50.597949282000073 ], [ -119.121341384999965, 50.599446285000077 ], [ -119.12365347199993, 50.599589509000062 ], [ -119.123318947999962, 50.601771518000128 ], [ -119.124786186999941, 50.60186238200005 ], [ -119.124237922999953, 50.605438861000074 ], [ -119.12303224, 50.60536419600006 ], [ -119.123013473999919, 50.605486589000058 ], [ -119.122783634999934, 50.60547235500011 ], [ -119.122751871999938, 50.605679495000047 ], [ -119.122177372999928, 50.605643912000104 ], [ -119.12216864799997, 50.60570080800003 ], [ -119.12016548099993, 50.605576713000097 ], [ -119.120108579999936, 50.605947640000089 ], [ -119.120300228999952, 50.605959514000105 ], [ -119.120034295000011, 50.607693040000072 ], [ -119.11998471599999, 50.607585904000075 ], [ -119.119824043999984, 50.60728277100003 ], [ -119.119822231999947, 50.607279377000054 ], [ -119.119450483999969, 50.60657800700011 ], [ -119.11944376699995, 50.606558202000045 ], [ -119.1194431699999, 50.606556500000103 ], [ -119.119269199999977, 50.606046898000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10910500", "BldgCostT": "7315000", "sL_LossRatio": "0.997194431963959", "sL_AssetLoss": "491.879", "sL_BldgLoss": "490.499", "sL_StrLoss": "490", "sL_NStrLoss": "0.499", "sL_ContLoss": "1.38", "geom_point": "0101000020E6100000829A52450ECB5DC0A1489CBA174D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.170841201999963, 50.608089194000094 ], [ -119.171078484999967, 50.606530873000032 ], [ -119.168143124999929, 50.606350322000019 ], [ -119.168307209999952, 50.605273114000035 ], [ -119.168687910999964, 50.602773633000076 ], [ -119.169319530999985, 50.602812490000069 ], [ -119.169467057999952, 50.601843737000067 ], [ -119.167901631999911, 50.601747425000056 ], [ -119.168446381999971, 50.598170716000077 ], [ -119.172966285999948, 50.598448739000105 ], [ -119.17303407199995, 50.598003331000093 ], [ -119.174774268999926, 50.597997667000108 ], [ -119.174838017999974, 50.598048992000066 ], [ -119.175461879999943, 50.598287695000174 ], [ -119.177046412999971, 50.598718831000063 ], [ -119.177068935999941, 50.598724942000025 ], [ -119.177261685999952, 50.598777406000103 ], [ -119.177694056999925, 50.598975717000016 ], [ -119.177711693999981, 50.598983790000055 ], [ -119.177972577, 50.599182093000096 ], [ -119.17839870099999, 50.59969522700009 ], [ -119.178462313999901, 50.599771798000106 ], [ -119.178556815999954, 50.599962607000123 ], [ -119.178567929999957, 50.599997418000022 ], [ -119.178644795999944, 50.600237811000049 ], [ -119.178932093, 50.601136413000063 ], [ -119.178942191999965, 50.601331106000032 ], [ -119.178830005999941, 50.601928887000035 ], [ -119.17869738199991, 50.602399097000067 ], [ -119.178146433999956, 50.602407589000045 ], [ -119.17759561299998, 50.602416071000107 ], [ -119.177346711999945, 50.602419888000036 ], [ -119.17725618299994, 50.602420353000056 ], [ -119.17708639099996, 50.602421236000026 ], [ -119.176154273999927, 50.602426070000028 ], [ -119.176087497, 50.602426404000092 ], [ -119.1757481, 50.602398390000126 ], [ -119.17541501299992, 50.602301191000031 ], [ -119.174652198000032, 50.601920297000071 ], [ -119.173749599999937, 50.601412706000097 ], [ -119.173060091999915, 50.600951490000071 ], [ -119.171831624999967, 50.599989635000078 ], [ -119.17172527699995, 50.59990639100009 ], [ -119.171482920999964, 50.599668242000078 ], [ -119.171134676999941, 50.599326004000055 ], [ -119.17108551799997, 50.599277699000091 ], [ -119.17084990699999, 50.599220806000062 ], [ -119.170623401999933, 50.599244796000022 ], [ -119.170475712999973, 50.599319591000061 ], [ -119.170433404, 50.599503795000025 ], [ -119.170438401999917, 50.599997803000115 ], [ -119.170438673999968, 50.600024748000109 ], [ -119.170458596999978, 50.601996405000136 ], [ -119.170556391999952, 50.602286702000043 ], [ -119.170719819999988, 50.602568990000051 ], [ -119.170916196999968, 50.602908200000101 ], [ -119.171722113999948, 50.604050706000102 ], [ -119.172351024999926, 50.605054773000099 ], [ -119.17252181, 50.605327393000053 ], [ -119.173301803999919, 50.606687608000101 ], [ -119.173556412999943, 50.6070019940001 ], [ -119.17382879799996, 50.607172192000142 ], [ -119.174165483, 50.607274100000076 ], [ -119.175353281999946, 50.607532101000047 ], [ -119.176106202999932, 50.607745413000075 ], [ -119.176544054999923, 50.607944941000071 ], [ -119.176469469999958, 50.608435162 ], [ -119.170841201999963, 50.608089194000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4601333", "BldgCostT": "3173333", "sL_LossRatio": "1", "sL_AssetLoss": "359", "sL_BldgLoss": "359", "sL_StrLoss": "359", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063A383605BC85DC03D84A7469E4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.127409831999898, 50.609711788000112 ], [ -119.127510035999961, 50.609057927000116 ], [ -119.127218472999971, 50.609039883000094 ], [ -119.127243427999971, 50.608877045000099 ], [ -119.126474658999911, 50.608829463000042 ], [ -119.127022786999959, 50.60525298800011 ], [ -119.127032096999955, 50.605253565000091 ], [ -119.127057395999927, 50.605088489000131 ], [ -119.127183931999923, 50.605096320000051 ], [ -119.127184089999957, 50.605095292000016 ], [ -119.128487058999923, 50.605175932000066 ], [ -119.12848742700001, 50.60517352100004 ], [ -119.128632956999951, 50.605182527000053 ], [ -119.128680635999942, 50.604871325000012 ], [ -119.128901950999975, 50.604885021000044 ], [ -119.128902225999965, 50.604883229000059 ], [ -119.13400075, 50.605198609000077 ], [ -119.134143832999953, 50.604263949000021 ], [ -119.134182201, 50.604266321000118 ], [ -119.1342740599999, 50.603666250000103 ], [ -119.134507959999922, 50.603680712000092 ], [ -119.134582667999965, 50.603192648000096 ], [ -119.133216394999948, 50.603108162000119 ], [ -119.133465257999916, 50.601482608000055 ], [ -119.134326193, 50.601922711000057 ], [ -119.135323796999927, 50.603010808000057 ], [ -119.135378600999985, 50.604556100000096 ], [ -119.134991091999922, 50.60537361100004 ], [ -119.134536883999957, 50.605947491000052 ], [ -119.131073891999989, 50.60840430800009 ], [ -119.130147499999936, 50.608907114000068 ], [ -119.129482389999978, 50.609162012000091 ], [ -119.128459498999973, 50.609776743000062 ], [ -119.127409831999898, 50.609711788000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287667", "BldgCostT": "3646667", "sL_LossRatio": "1", "sL_AssetLoss": "264.8", "sL_BldgLoss": "264.8", "sL_StrLoss": "264.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F07828441FC75DC0DD7150E35A4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.106455714999967, 50.593172239000133 ], [ -119.106456696999942, 50.593165851000052 ], [ -119.10373123, 50.59299656300005 ], [ -119.104280972999973, 50.589420132000107 ], [ -119.105757205999936, 50.589511834000049 ], [ -119.105781909999962, 50.589351067000045 ], [ -119.10664869799993, 50.589404901000094 ], [ -119.106788915999971, 50.588492286000111 ], [ -119.10707568, 50.588510096000036 ], [ -119.107443319999973, 50.586116996000079 ], [ -119.113068351, 50.586466177000069 ], [ -119.113011720999964, 50.586835111000013 ], [ -119.113060395000019, 50.586838131000086 ], [ -119.113578702999931, 50.583461130000074 ], [ -119.11485252099996, 50.58354016300013 ], [ -119.116113985999931, 50.583618415000082 ], [ -119.11920344899994, 50.583810002000099 ], [ -119.119094898999933, 50.58451788100011 ], [ -119.119159798999974, 50.584521904000113 ], [ -119.118611299999912, 50.588098430000059 ], [ -119.114847201999979, 50.587865000000143 ], [ -119.11378304599999, 50.587798982000024 ], [ -119.113332473999918, 50.587771027000038 ], [ -119.113156966999952, 50.588914439000057 ], [ -119.112991295999961, 50.589993708000094 ], [ -119.113079167999928, 50.589992113000037 ], [ -119.11313953699991, 50.591340165000055 ], [ -119.112716003999964, 50.591347851000087 ], [ -119.112728073999946, 50.591617462000066 ], [ -119.112372959, 50.59162390500007 ], [ -119.112081619999955, 50.593521467000144 ], [ -119.110001610999944, 50.593392384 ], [ -119.106455714999967, 50.593172239000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30153228", "BldgCostT": "19909857", "sL_LossRatio": "0.998798173223299", "sL_AssetLoss": "1772.302", "sL_BldgLoss": "1770.172", "sL_StrLoss": "1769.4", "sL_NStrLoss": "0.772", "sL_ContLoss": "2.13", "geom_point": "0101000020E6100000F699D44C8EC75DC0770148D00C494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.105508145999949, 50.583494431000048 ], [ -119.105554879999914, 50.583190273000099 ], [ -119.105340062, 50.583176928000043 ], [ -119.105848352999956, 50.579868646000129 ], [ -119.100813047999949, 50.579555708000029 ], [ -119.100826081999969, 50.579470920000119 ], [ -119.099850823999958, 50.579410282000048 ], [ -119.100165361999984, 50.577364586000066 ], [ -119.099795462999936, 50.577341585000084 ], [ -119.099876215999956, 50.576816379000078 ], [ -119.099625394999975, 50.57680078100001 ], [ -119.099732303999986, 50.576105467000069 ], [ -119.103326928999962, 50.57612461700009 ], [ -119.103356278999939, 50.576142296000064 ], [ -119.103414068999911, 50.576159579000034 ], [ -119.104381608999958, 50.576147254 ], [ -119.104347497999967, 50.576147200000079 ], [ -119.104385514999976, 50.574190810000069 ], [ -119.104467696999933, 50.573914199000029 ], [ -119.104708016999922, 50.573726998000033 ], [ -119.105030828999986, 50.573552478000124 ], [ -119.105035286999922, 50.57355004700009 ], [ -119.10553760599997, 50.573278499000011 ], [ -119.10580528, 50.573051392000139 ], [ -119.105972714999965, 50.572838799000138 ], [ -119.106049867999957, 50.572685707000069 ], [ -119.1063402, 50.572109690000083 ], [ -119.10679599799991, 50.571775205000108 ], [ -119.107893898999976, 50.571123111000084 ], [ -119.108204075999978, 50.570851883000081 ], [ -119.108397101999955, 50.570683101000093 ], [ -119.108540868999953, 50.570538410000061 ], [ -119.108936007999915, 50.570140691000077 ], [ -119.10996190299997, 50.569558992000104 ], [ -119.110809293999978, 50.56916030300011 ], [ -119.110994299999945, 50.569018298000074 ], [ -119.111123803999959, 50.568821514000021 ], [ -119.111180980999961, 50.568587604000079 ], [ -119.111183395999916, 50.56790630800004 ], [ -119.111143015999986, 50.567725899000024 ], [ -119.111133766, 50.567708454000048 ], [ -119.110678596999946, 50.566849515000136 ], [ -119.110643929999938, 50.566631606 ], [ -119.110848252, 50.566261614000048 ], [ -119.110873474999948, 50.56621594000007 ], [ -119.111027085999964, 50.565937798000114 ], [ -119.111111505999972, 50.565693012000111 ], [ -119.111254277999933, 50.565040197000052 ], [ -119.111421899000035, 50.564687691000046 ], [ -119.111591599999969, 50.564478904000069 ], [ -119.111855878999918, 50.564243262000041 ], [ -119.112372401999906, 50.563782690000032 ], [ -119.11248780499993, 50.563631891000036 ], [ -119.112501432000016, 50.563158574000042 ], [ -119.1125516099999, 50.561415535000066 ], [ -119.113887924999958, 50.56149850200007 ], [ -119.11393854399995, 50.56116848400012 ], [ -119.115404825000027, 50.561259500000062 ], [ -119.115593635999971, 50.560028219000088 ], [ -119.115829275999928, 50.560042845000062 ], [ -119.115959166999986, 50.559195726 ], [ -119.116589318, 50.559234834000044 ], [ -119.116602441999945, 50.559149240000075 ], [ -119.12058211099999, 50.559396139000057 ], [ -119.120862264, 50.55756769700006 ], [ -119.123287207999951, 50.557596764000074 ], [ -119.12540239399999, 50.557652842000032 ], [ -119.124404900999977, 50.558571211000078 ], [ -119.123491619999953, 50.55963080300004 ], [ -119.122989599999968, 50.560710408000062 ], [ -119.122720791999953, 50.561641799000057 ], [ -119.122662404999986, 50.562866609000061 ], [ -119.122801306999989, 50.563412110000051 ], [ -119.12331428799996, 50.564149794000052 ], [ -119.124313105999974, 50.56500440100006 ], [ -119.125050680999948, 50.565394596000012 ], [ -119.125954478999958, 50.565712191000031 ], [ -119.126030442999962, 50.565745433000117 ], [ -119.125967893999928, 50.566153913000093 ], [ -119.126723971999965, 50.566200760000129 ], [ -119.12668599099996, 50.566448817000065 ], [ -119.127794884999972, 50.566517514000068 ], [ -119.128359819999943, 50.5667647060001 ], [ -119.129417610999951, 50.567050994000098 ], [ -119.130608504999955, 50.567119312000045 ], [ -119.13182961199999, 50.566979798000091 ], [ -119.133501496999955, 50.566464213000103 ], [ -119.13425005799999, 50.566092733000062 ], [ -119.134458689999931, 50.566105644000061 ], [ -119.134427351999975, 50.566310540000067 ], [ -119.13497498699995, 50.566344430000157 ], [ -119.134938523999949, 50.566582861000064 ], [ -119.135322490999954, 50.566606622000066 ], [ -119.134775492999935, 50.570183304000082 ], [ -119.134120011999954, 50.570142743000069 ], [ -119.133772574999938, 50.572414022000018 ], [ -119.128704506999966, 50.5721002760001 ], [ -119.12869764, 50.572145138000081 ], [ -119.124799309999958, 50.571903647000049 ], [ -119.124614810999944, 50.573108101000095 ], [ -119.130082648999931, 50.573446780000054 ], [ -119.129535150999928, 50.577023408000038 ], [ -119.127353082999889, 50.576888283000059 ], [ -119.12726657799999, 50.577453158000033 ], [ -119.121642562999952, 50.577104692000084 ], [ -119.121783326999918, 50.576186247000074 ], [ -119.121750860999981, 50.576184235 ], [ -119.121747465999988, 50.576206387000106 ], [ -119.118762711999977, 50.576021331000049 ], [ -119.11612365, 50.575857640000045 ], [ -119.116129946999962, 50.575816590000095 ], [ -119.11573084099993, 50.575791830000128 ], [ -119.11627942099993, 50.572215264000093 ], [ -119.116809690999929, 50.572248162000015 ], [ -119.116851066999942, 50.571978358000123 ], [ -119.113139925, 50.571748066000069 ], [ -119.113153412999949, 50.5716601560001 ], [ -119.11002752, 50.571466083000089 ], [ -119.109885233999975, 50.572392967000035 ], [ -119.109721242999981, 50.572382782000062 ], [ -119.109478204999945, 50.573965871000063 ], [ -119.109286203999929, 50.573953948000081 ], [ -119.109256305999978, 50.574148677000046 ], [ -119.108674676999939, 50.57411255400006 ], [ -119.108672677999891, 50.57412557700011 ], [ -119.11133667899999, 50.574291002000038 ], [ -119.110787680999934, 50.577867533000102 ], [ -119.107133865999955, 50.577640629000058 ], [ -119.106823921999933, 50.579658490000028 ], [ -119.111513760999941, 50.579949708000072 ], [ -119.111506090999967, 50.579999674000106 ], [ -119.112803022999955, 50.580080172000052 ], [ -119.112254072999946, 50.583656685000037 ], [ -119.111171857999935, 50.583589516000117 ], [ -119.111132832999942, 50.583843711000014 ], [ -119.105508145999949, 50.583494431000048 ] ], [ [ -119.123073290999955, 50.57047898200004 ], [ -119.123113797999963, 50.570214593000053 ], [ -119.12244673899994, 50.570173245000099 ], [ -119.122406228999935, 50.57043763300009 ], [ -119.123073290999955, 50.57047898200004 ] ], [ [ -119.120795679999972, 50.567847016000066 ], [ -119.120955209999948, 50.566806030000066 ], [ -119.119459772999974, 50.566713292000067 ], [ -119.119315478999937, 50.567654663000063 ], [ -119.119209940999951, 50.567648118000101 ], [ -119.11919467199999, 50.567747730000072 ], [ -119.120795679999972, 50.567847016000066 ] ], [ [ -119.112605479999971, 50.566069036000087 ], [ -119.11275519099999, 50.565093252000054 ], [ -119.11213184699993, 50.565054551000017 ], [ -119.112140116999967, 50.565000651000048 ], [ -119.112128996999985, 50.564999961000083 ], [ -119.111971002999923, 50.566029643000014 ], [ -119.112605479999971, 50.566069036000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36787583", "BldgCostT": "22928333", "sL_LossRatio": "0.997641324517157", "sL_AssetLoss": "1530.52", "sL_BldgLoss": "1526.91", "sL_StrLoss": "1525.6", "sL_NStrLoss": "1.31", "sL_ContLoss": "3.61", "geom_point": "0101000020E61000005A5D0332E6C65DC0423A5D92DA4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.105542464999971, 50.634755138000045 ], [ -119.105674393999948, 50.633897519000094 ], [ -119.105503786, 50.633886933000035 ], [ -119.105840072999953, 50.631700762000023 ], [ -119.10336537099991, 50.631547178000041 ], [ -119.103402929999973, 50.631303081000134 ], [ -119.103220782000037, 50.631291775000065 ], [ -119.103262555999962, 50.631020302000138 ], [ -119.102978492999966, 50.631002669000061 ], [ -119.103060156999916, 50.630471956000072 ], [ -119.102979829999981, 50.630466970000022 ], [ -119.103259376999986, 50.62865020500012 ], [ -119.100893591, 50.628503316000092 ], [ -119.100901416999974, 50.628452471000067 ], [ -119.100716888999969, 50.628441011000049 ], [ -119.100775309999946, 50.628061448000096 ], [ -119.095388147000023, 50.627726764000094 ], [ -119.095900265999958, 50.624401872000121 ], [ -119.095383776999924, 50.624369770000065 ], [ -119.095411288, 50.624191155000055 ], [ -119.095091279999949, 50.624171263000065 ], [ -119.09532189599993, 50.622674011000079 ], [ -119.094791774000029, 50.62264105700006 ], [ -119.094818080999943, 50.622470275000055 ], [ -119.094536176999981, 50.622452751000026 ], [ -119.094563924999974, 50.622272614000032 ], [ -119.093940172999964, 50.622233835000017 ], [ -119.094491050000016, 50.618657578000082 ], [ -119.09459839699997, 50.618664253000048 ], [ -119.094937654999953, 50.616461483000137 ], [ -119.100566382999915, 50.616811284000093 ], [ -119.100514724999954, 50.617146982000087 ], [ -119.100818896999982, 50.617165876000051 ], [ -119.100721795999931, 50.617796900000016 ], [ -119.100835740999969, 50.61780397800004 ], [ -119.100638260999929, 50.619087290000024 ], [ -119.102252384999986, 50.619187541000024 ], [ -119.101702117999963, 50.622763833000057 ], [ -119.101318137999939, 50.62273998700006 ], [ -119.101226529999963, 50.623335283000166 ], [ -119.10497918799993, 50.623568275000139 ], [ -119.104951647999926, 50.623747332000036 ], [ -119.105208392999955, 50.62376326800004 ], [ -119.105003301999915, 50.625096696000092 ], [ -119.106897132999919, 50.625214224000089 ], [ -119.106889314999989, 50.625265070000104 ], [ -119.10707383099998, 50.625276519000117 ], [ -119.106824339999932, 50.626898995000019 ], [ -119.108955436999935, 50.627031205000016 ], [ -119.109284953000014, 50.624887631000028 ], [ -119.109344593999978, 50.624891331000129 ], [ -119.109420773999901, 50.624395733000085 ], [ -119.112452084999944, 50.624583718000089 ], [ -119.112740323999972, 50.622707604000077 ], [ -119.113732362999954, 50.622769106000099 ], [ -119.113743481, 50.622696727000097 ], [ -119.114436789999971, 50.622739704000047 ], [ -119.114562237999934, 50.621922920000046 ], [ -119.114539431999944, 50.621921507000117 ], [ -119.114562181999986, 50.621773386000051 ], [ -119.112945493000012, 50.62167316300004 ], [ -119.113294216999947, 50.619403026000029 ], [ -119.113001476999983, 50.619384876000076 ], [ -119.112791388999938, 50.620752485 ], [ -119.112115300999974, 50.620710564000063 ], [ -119.11210766, 50.620760302000114 ], [ -119.112026256999982, 50.620755254000109 ], [ -119.111827618999953, 50.62204810500009 ], [ -119.111616702999939, 50.622035025000073 ], [ -119.111536035999976, 50.622560010000051 ], [ -119.111504437999926, 50.622558050000059 ], [ -119.111456149999952, 50.62287231200002 ], [ -119.105826578999881, 50.622523065000081 ], [ -119.106376514999937, 50.618946751000067 ], [ -119.106408109999933, 50.618948712000133 ], [ -119.10645642899999, 50.618634451000105 ], [ -119.106667327999915, 50.618647539000094 ], [ -119.106748043999985, 50.618122556000095 ], [ -119.106829440999888, 50.618127608000066 ], [ -119.107028204999978, 50.616834760000032 ], [ -119.1077042309999, 50.616876713000103 ], [ -119.107711877, 50.616826975000137 ], [ -119.108082813999914, 50.616849993000059 ], [ -119.108293026999945, 50.615482385000064 ], [ -119.108553375999989, 50.615498540000075 ], [ -119.108594527999941, 50.615230791000037 ], [ -119.110564021999934, 50.615352979000093 ], [ -119.110694476999967, 50.614503937000059 ], [ -119.111183078999929, 50.614534245000101 ], [ -119.111220165999953, 50.614292849000059 ], [ -119.11600492, 50.614589527000099 ], [ -119.116376660999933, 50.612168062000066 ], [ -119.11723585199999, 50.612221314000159 ], [ -119.117293139999958, 50.61184808200008 ], [ -119.118455908999948, 50.611920139000077 ], [ -119.11870566499995, 50.610292610000059 ], [ -119.119628932999944, 50.610349817000042 ], [ -119.119631921999883, 50.610330332000082 ], [ -119.120295200999948, 50.610371424000043 ], [ -119.120302193999962, 50.610325847000105 ], [ -119.12070668099993, 50.610350904000036 ], [ -119.12076638699989, 50.61125829000008 ], [ -119.120777903999908, 50.612035300000088 ], [ -119.120768956999953, 50.612559313000084 ], [ -119.12071569599999, 50.615681503000118 ], [ -119.120559505999935, 50.616143466000025 ], [ -119.120555897999978, 50.61615417300014 ], [ -119.120437404999947, 50.616504598000077 ], [ -119.120174358999947, 50.617102745000061 ], [ -119.119868358999923, 50.6177984770001 ], [ -119.119411998999965, 50.618836107000043 ], [ -119.118968904000013, 50.619843488000107 ], [ -119.118414046999959, 50.621138792000181 ], [ -119.117770879999966, 50.622640095000065 ], [ -119.116817649999959, 50.62486515000009 ], [ -119.116677195999912, 50.625192913000014 ], [ -119.116630289999975, 50.625244263000077 ], [ -119.116642867999985, 50.625284296000061 ], [ -119.116627524999956, 50.625314802000084 ], [ -119.116611849999941, 50.625355290000101 ], [ -119.116610763999972, 50.625385375000121 ], [ -119.116595401999987, 50.625415915000104 ], [ -119.116579727, 50.625456402000061 ], [ -119.116549321999955, 50.625507475000084 ], [ -119.116533662999956, 50.625547986000107 ], [ -119.116517646999952, 50.625598513000043 ], [ -119.116424717999962, 50.625811541000125 ], [ -119.116394296999957, 50.625862590000082 ], [ -119.116378319999953, 50.62591310800012 ], [ -119.116347912999927, 50.625964181000079 ], [ -119.116331207999949, 50.626034708000063 ], [ -119.116238128999967, 50.626247779000025 ], [ -119.116222119999932, 50.626298192000029 ], [ -119.116131008999972, 50.626451493000076 ], [ -119.116114975999949, 50.626501999 ], [ -119.116083918999962, 50.626573003000019 ], [ -119.116022546999929, 50.626695081000072 ], [ -119.11590053599997, 50.626688228000042 ], [ -119.115502196999984, 50.626700546000066 ], [ -119.11511338299999, 50.626771226000088 ], [ -119.114752140999968, 50.626884228000073 ], [ -119.114669964999919, 50.626743828000059 ], [ -119.114693857999939, 50.626645052000121 ], [ -119.114659708999952, 50.626695081000072 ], [ -119.114496695999961, 50.626876565000046 ], [ -119.114428057999959, 50.626977146000051 ], [ -119.11436446, 50.627056010000061 ], [ -119.114330131999935, 50.627106290000057 ], [ -119.114083355999981, 50.627306707000081 ], [ -119.113907263999977, 50.627592770000035 ], [ -119.113731376999908, 50.628229017000116 ], [ -119.11371331399998, 50.628327519000067 ], [ -119.113643864999986, 50.628706399000045 ], [ -119.113567454999895, 50.629123176000064 ], [ -119.11351861699994, 50.629389596000067 ], [ -119.112759556999919, 50.629342543000064 ], [ -119.112849810999933, 50.628755157000057 ], [ -119.10979370499993, 50.628565663000046 ], [ -119.109799197999976, 50.628529929000102 ], [ -119.109560072999969, 50.628515098000037 ], [ -119.109285525999979, 50.63030102400009 ], [ -119.109372548999957, 50.630306422000032 ], [ -119.10937554399996, 50.63028694500013 ], [ -119.109957628999936, 50.630323045000047 ], [ -119.110007231999987, 50.630000359000036 ], [ -119.113216078999955, 50.630199308000044 ], [ -119.112860168999973, 50.630754628000091 ], [ -119.112499514, 50.631213878000104 ], [ -119.111826969999981, 50.632070256000105 ], [ -119.109534994999976, 50.634988417000017 ], [ -119.109043576999952, 50.635614028000091 ], [ -119.108987553999967, 50.63567821500007 ], [ -119.108036893999937, 50.63676725700001 ], [ -119.107222283999974, 50.637700433000127 ], [ -119.10663743299996, 50.638370386000055 ], [ -119.10526270299998, 50.639945016000105 ], [ -119.103953890999961, 50.641444031000084 ], [ -119.103551155999966, 50.641801602000101 ], [ -119.102460558999894, 50.642769865000083 ], [ -119.101523536999977, 50.642711706000121 ], [ -119.102074062999975, 50.639135499000083 ], [ -119.102125582999975, 50.639138698000046 ], [ -119.102167172999927, 50.638868501000097 ], [ -119.102665791, 50.638899450000054 ], [ -119.102725267999986, 50.638513013000079 ], [ -119.103243785999965, 50.638545196000074 ], [ -119.103296460999928, 50.638202925 ], [ -119.103699408, 50.63822793300006 ], [ -119.10376496399999, 50.637801935000027 ], [ -119.103820467999952, 50.637805379000028 ], [ -119.103879380999928, 50.637422536000038 ], [ -119.104061518000023, 50.637433840000014 ], [ -119.104120589999965, 50.6370499410001 ], [ -119.104372980999941, 50.637065604000071 ], [ -119.104476111999929, 50.636395348000086 ], [ -119.104743358999912, 50.636411931000055 ], [ -119.104973472999973, 50.634916256000103 ], [ -119.10513414399999, 50.634926225000079 ], [ -119.105164076999984, 50.634731659000117 ], [ -119.105542464999971, 50.634755138000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61.8", "sL_BldgLoss": "61.8", "sL_StrLoss": "61.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B62454FC2C85DC07F2CA7B1FB4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.138056709999944, 50.592785810000059 ], [ -119.14178565399996, 50.593016251000051 ], [ -119.140961102999952, 50.593310490000121 ], [ -119.139578317999934, 50.593659503000104 ], [ -119.137672193999919, 50.594045400000077 ], [ -119.135507924999914, 50.594283304000051 ], [ -119.132961500999954, 50.59420350300006 ], [ -119.131389706, 50.593854595000032 ], [ -119.130757757999959, 50.593678902000143 ], [ -119.130769281999974, 50.593603646000062 ], [ -119.134960949999964, 50.593862945000069 ], [ -119.134968585999971, 50.593813043000118 ], [ -119.137872125999962, 50.59399256300005 ], [ -119.138056709999944, 50.592785810000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "56.2", "sL_BldgLoss": "56.2", "sL_StrLoss": "56.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083F32D9CF9C35DC0F72D4A3B7B554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.061575192999896, 50.669410694000099 ], [ -119.061279098999975, 50.669347994000063 ], [ -119.060926310999932, 50.669348512000049 ], [ -119.059978897999954, 50.669432010000037 ], [ -119.059588294999983, 50.66940950800003 ], [ -119.059340219999967, 50.669303705000083 ], [ -119.059020090999965, 50.669017639000067 ], [ -119.059666449, 50.669057983000094 ], [ -119.05991456299995, 50.66745708500008 ], [ -119.059967430999961, 50.667384248000104 ], [ -119.060008516, 50.667346820000105 ], [ -119.060058973999958, 50.667289225000083 ], [ -119.060122358999948, 50.667293180000073 ], [ -119.060134778999924, 50.667213042000036 ], [ -119.060172165999958, 50.667178994000039 ], [ -119.060199431999976, 50.667151021000102 ], [ -119.060254695999902, 50.667113236000041 ], [ -119.060334061999967, 50.666965470000079 ], [ -119.060387564999971, 50.666882162000029 ], [ -119.06042691299993, 50.666799118000021 ], [ -119.06046695000002, 50.666734362000064 ], [ -119.060518678999969, 50.66660544700008 ], [ -119.060530761999942, 50.6665503770001 ], [ -119.060527325999985, 50.666459077000162 ], [ -119.06049801799999, 50.666432095000033 ], [ -119.06048250299996, 50.666395808000082 ], [ -119.060453194, 50.666368824000067 ], [ -119.06042427899996, 50.666350930000071 ], [ -119.060394985999949, 50.666323971000025 ], [ -119.06036605599995, 50.666306051000035 ], [ -119.060322296999942, 50.666270134000065 ], [ -119.060292641999979, 50.666200772000103 ], [ -119.065621390999979, 50.666533223000037 ], [ -119.065245121999965, 50.666810808000029 ], [ -119.064087107999953, 50.668042910000096 ], [ -119.064022565999906, 50.668137740000105 ], [ -119.063514630999961, 50.668884040000123 ], [ -119.063365193999971, 50.669103592000077 ], [ -119.063130191999946, 50.669124107000123 ], [ -119.062914812999921, 50.669486092000064 ], [ -119.062750297999969, 50.669602289000075 ], [ -119.062571084999959, 50.669620903000038 ], [ -119.062034000999972, 50.669589199000136 ], [ -119.061575192999896, 50.669410694000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "176.3", "sL_BldgLoss": "176.3", "sL_StrLoss": "176.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000653AF041BAC85DC00452493AD64A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.13271305499994, 50.58738747800011 ], [ -119.132768887999973, 50.587022684000054 ], [ -119.132584476999938, 50.587011274000091 ], [ -119.133131852999909, 50.583434675000042 ], [ -119.133346398999919, 50.583447950000028 ], [ -119.133588121999978, 50.581868283000091 ], [ -119.134773301999985, 50.581941605000026 ], [ -119.134798773999975, 50.581775110000059 ], [ -119.140423473999931, 50.582122911000084 ], [ -119.139876692999948, 50.585699551000054 ], [ -119.139064627999971, 50.585649356000019 ], [ -119.138989777999925, 50.58613887000007 ], [ -119.138759384999929, 50.586124628000078 ], [ -119.138589821999972, 50.587233477000076 ], [ -119.138416829999983, 50.587222783000044 ], [ -119.138338438999938, 50.587735382000048 ], [ -119.13271305499994, 50.58738747800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17926833", "BldgCostT": "11418333", "sL_LossRatio": "0.996016806282265", "sL_AssetLoss": "1144.81", "sL_BldgLoss": "1140.25", "sL_StrLoss": "1138.6", "sL_NStrLoss": "1.65", "sL_ContLoss": "4.56", "geom_point": "0101000020E61000005E75DB8DD7C75DC0948486F6184C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.114609219999963, 50.60602422000008 ], [ -119.114665993999921, 50.605654421000047 ], [ -119.114474346999899, 50.605642537000058 ], [ -119.114567827, 50.605033660000103 ], [ -119.114201280999907, 50.605010930000084 ], [ -119.114733603999966, 50.601543510000099 ], [ -119.11443582899993, 50.60152504400002 ], [ -119.114527590999941, 50.600927304000066 ], [ -119.114281465999909, 50.60091204 ], [ -119.11471481299999, 50.598089061000032 ], [ -119.114830465999944, 50.597335591000011 ], [ -119.115092649999909, 50.597351852000038 ], [ -119.115214693, 50.596556698000036 ], [ -119.116096217999896, 50.596611364000083 ], [ -119.116173275999969, 50.596109219000034 ], [ -119.118156609999957, 50.596232185000055 ], [ -119.120620227999922, 50.596384877000077 ], [ -119.120625806999954, 50.596348493000065 ], [ -119.118147883999953, 50.596194914000101 ], [ -119.115954058999975, 50.596058896000066 ], [ -119.115963174999933, 50.595999486000039 ], [ -119.11534224399999, 50.595960980000015 ], [ -119.115891099999956, 50.592384504000059 ], [ -119.116087622999942, 50.592396692000037 ], [ -119.116131704999987, 50.592109409000095 ], [ -119.116957916999965, 50.592160643000106 ], [ -119.120656485999945, 50.592389917000013 ], [ -119.120916975999975, 50.590691115000062 ], [ -119.121215260999975, 50.590709600000118 ], [ -119.121351405999931, 50.589821622000102 ], [ -119.12541105, 50.590073125000124 ], [ -119.125720741999942, 50.588051916000104 ], [ -119.123008570999929, 50.587883908000023 ], [ -119.123556719999954, 50.584307360000146 ], [ -119.126226631999941, 50.584472751000114 ], [ -119.12650946199993, 50.582626404000052 ], [ -119.127652105999971, 50.582373985000018 ], [ -119.129351000999932, 50.581515188 ], [ -119.129822003999948, 50.58132558900013 ], [ -119.132362517999965, 50.581482833000038 ], [ -119.13189343399992, 50.584547693000047 ], [ -119.132676219999951, 50.584596130000058 ], [ -119.132582164999974, 50.585210670000038 ], [ -119.132746359999899, 50.585220829000093 ], [ -119.132276514999958, 50.588290566000055 ], [ -119.132458781999944, 50.588301844000057 ], [ -119.131911292999973, 50.591878419000075 ], [ -119.127094817999975, 50.591580308000061 ], [ -119.126921989999971, 50.592708437000091 ], [ -119.126388386999935, 50.59261410000007 ], [ -119.124536998999972, 50.592604093000027 ], [ -119.123748678999988, 50.592960198000071 ], [ -119.12334081099999, 50.59331768600002 ], [ -119.123219573999975, 50.593751994000051 ], [ -119.123904894999953, 50.595169094000099 ], [ -119.125867016999948, 50.596995007000025 ], [ -119.126883443999972, 50.597751022000075 ], [ -119.126801279999938, 50.597761787000138 ], [ -119.122503611, 50.597915866000086 ], [ -119.1225837799999, 50.597392977000062 ], [ -119.12166498, 50.597336055000099 ], [ -119.121570947999885, 50.597949282000073 ], [ -119.118304676999969, 50.598066244 ], [ -119.118051093, 50.59914849400009 ], [ -119.118047253999947, 50.599217211000074 ], [ -119.1180289979999, 50.599542516000049 ], [ -119.118241111999907, 50.599999226000072 ], [ -119.118266401999904, 50.600053624000054 ], [ -119.118541388999958, 50.600645697000083 ], [ -119.118588201999941, 50.600941893 ], [ -119.11858864, 50.601505928000044 ], [ -119.118588752000022, 50.601652603000062 ], [ -119.118589078999904, 50.60209322700009 ], [ -119.118589911999948, 50.603106505000021 ], [ -119.118647983999921, 50.603734743000103 ], [ -119.118658804999953, 50.603852060000051 ], [ -119.11865931499996, 50.603857309000048 ], [ -119.119078402999932, 50.60536198900008 ], [ -119.119269199999977, 50.606046898000066 ], [ -119.1194431699999, 50.606556500000103 ], [ -119.11944376699995, 50.606558202000045 ], [ -119.119450483999969, 50.60657800700011 ], [ -119.119822231999947, 50.607279377000054 ], [ -119.119824043999984, 50.60728277100003 ], [ -119.11998471599999, 50.607585904000075 ], [ -119.120034295000011, 50.607693040000072 ], [ -119.119751558999923, 50.609535953000076 ], [ -119.119386708999969, 50.609513348000021 ], [ -119.119323261999938, 50.609926862000044 ], [ -119.119309522999984, 50.609926012000052 ], [ -119.119269974999938, 50.610183763000116 ], [ -119.113641929999957, 50.609834906000039 ], [ -119.114191090999967, 50.606258498000066 ], [ -119.114204827999956, 50.60625935000008 ], [ -119.114244401999926, 50.606001599000052 ], [ -119.114609219999963, 50.60602422000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009DD4FACF18C85DC012EE00152F4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.127803, 50.597013509000071 ], [ -119.125433494999982, 50.595240294000043 ], [ -119.124506900999947, 50.59441139700008 ], [ -119.12434210899994, 50.594217794000045 ], [ -119.124348489999974, 50.594055394000065 ], [ -119.124844214999939, 50.593740608000104 ], [ -119.12508009699998, 50.593682293000079 ], [ -119.126763139999952, 50.593745263000095 ], [ -119.12671820199995, 50.594038569000183 ], [ -119.126914275999965, 50.594050708000118 ], [ -119.126695147999939, 50.595480915000124 ], [ -119.128539121999935, 50.595595067000062 ], [ -119.128278728999987, 50.597294943000044 ], [ -119.127803, 50.597013509000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000316C209F08C95DC0E8E057B452484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.140700932999977, 50.565626942000065 ], [ -119.140721035999931, 50.565495378000058 ], [ -119.140566736999986, 50.565485838000065 ], [ -119.140605868999899, 50.565229738000085 ], [ -119.138426786999972, 50.565094979000015 ], [ -119.138457352999964, 50.564895001000124 ], [ -119.138295296999956, 50.564884976 ], [ -119.138392734999954, 50.564247479000073 ], [ -119.138512416999944, 50.564231008 ], [ -119.139387316999972, 50.564233899000058 ], [ -119.140989608999973, 50.56438339200011 ], [ -119.142488303999968, 50.564725199000044 ], [ -119.143654414999929, 50.565216593000081 ], [ -119.14423678799993, 50.565582589 ], [ -119.144493425999912, 50.565861367000117 ], [ -119.140700932999977, 50.565626942000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9107667", "BldgCostT": "6071667", "sL_LossRatio": "0.998163492042245", "sL_AssetLoss": "373.535", "sL_BldgLoss": "372.849", "sL_StrLoss": "372.6", "sL_NStrLoss": "0.249", "sL_ContLoss": "0.686", "geom_point": "0101000020E6100000B2B8830199C65DC0C3FF2D33B24C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.094716089999977, 50.603446994000073 ], [ -119.095015027999935, 50.601505313000118 ], [ -119.094204207999965, 50.601454883000045 ], [ -119.094754810999959, 50.597878535000071 ], [ -119.098928463999954, 50.598138056000039 ], [ -119.098930515999925, 50.598124731000098 ], [ -119.098973776999955, 50.598127420000047 ], [ -119.099367039999962, 50.595571135000085 ], [ -119.104918524, 50.595916082000024 ], [ -119.105069525999937, 50.594933663000056 ], [ -119.105165155999913, 50.59493960300005 ], [ -119.10520733599995, 50.594665165000087 ], [ -119.105535206999917, 50.594685529000067 ], [ -119.105542422999989, 50.594638573000061 ], [ -119.105650709999949, 50.594645299000028 ], [ -119.105693531999947, 50.594366677000025 ], [ -119.10928407199998, 50.594589611000082 ], [ -119.111319578999954, 50.594715942000057 ], [ -119.111232806999979, 50.595280996 ], [ -119.111547710999972, 50.595300537000064 ], [ -119.111515659999966, 50.595509258000064 ], [ -119.111589424999963, 50.595513836000087 ], [ -119.111190533999959, 50.598111348000081 ], [ -119.111040189999954, 50.599090277000052 ], [ -119.110735396999985, 50.599071364000096 ], [ -119.110696687999976, 50.599323384000172 ], [ -119.110048692999953, 50.599283172000064 ], [ -119.109686173999975, 50.601643102000047 ], [ -119.109246730999956, 50.601615830000114 ], [ -119.109221460999919, 50.601780311000041 ], [ -119.107099373999944, 50.60164858800006 ], [ -119.107028083999978, 50.602112461000083 ], [ -119.106400238999939, 50.602073481000041 ], [ -119.106317180999966, 50.602613876000092 ], [ -119.10422078199997, 50.602483694000043 ], [ -119.10296109699999, 50.60240545100001 ], [ -119.102846161999949, 50.603152854000058 ], [ -119.102542884999977, 50.603134014000069 ], [ -119.102540048, 50.603152462000025 ], [ -119.100462173999915, 50.603023360000094 ], [ -119.10034318699995, 50.603796810000098 ], [ -119.094716089999977, 50.603446994000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "144", "sL_BldgLoss": "144", "sL_StrLoss": "144", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041D9EFE4EEC55DC09EC473F89C524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.095686679999957, 50.643750765000092 ], [ -119.100985033000015, 50.644079794000049 ], [ -119.100954022999971, 50.644107323000057 ], [ -119.100280190999982, 50.64465219100002 ], [ -119.099880617999972, 50.644920705000125 ], [ -119.099468203999891, 50.645152353000114 ], [ -119.09897756099997, 50.64533850000003 ], [ -119.098538056999956, 50.645460152000062 ], [ -119.091624915999958, 50.646899039000083 ], [ -119.090367181999966, 50.647126827000072 ], [ -119.089597755999961, 50.647224380000068 ], [ -119.089507342999923, 50.647235836000043 ], [ -119.089450375999917, 50.647237192000034 ], [ -119.088779387, 50.647252905000052 ], [ -119.08852501199999, 50.647258858000093 ], [ -119.087124623999941, 50.647291667000076 ], [ -119.086780984999933, 50.64732090600009 ], [ -119.087222108999981, 50.644461874000051 ], [ -119.087584411999927, 50.644484408000068 ], [ -119.087621503999955, 50.644243982000098 ], [ -119.089197007999957, 50.644341962000077 ], [ -119.089911439999952, 50.644386385000125 ], [ -119.089927300999975, 50.644283534000053 ], [ -119.092370921999958, 50.644435442000024 ], [ -119.092372687, 50.644423991000039 ], [ -119.092801250999983, 50.644450627000012 ], [ -119.09281667099998, 50.644350600000031 ], [ -119.095567907999936, 50.644521555000054 ], [ -119.095686679999957, 50.643750765000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "297", "sL_BldgLoss": "297", "sL_StrLoss": "297", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FB4473DBEC85DC06AA86AE5524C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.129234513999975, 50.597700343000042 ], [ -119.12968566399995, 50.594754724000062 ], [ -119.130463808999977, 50.594802879000085 ], [ -119.13047088699993, 50.594756662000066 ], [ -119.13080040600002, 50.594881402000084 ], [ -119.133977201999926, 50.595435388000084 ], [ -119.134982176999983, 50.595461096000129 ], [ -119.136375723999947, 50.59535570300006 ], [ -119.137610187999954, 50.595152011000017 ], [ -119.140143010999935, 50.59458379600008 ], [ -119.143636461999918, 50.593436702000112 ], [ -119.14313615399999, 50.596710050000098 ], [ -119.141474047999964, 50.596607381000076 ], [ -119.141274441999897, 50.597912890000046 ], [ -119.14056065199999, 50.597868791000053 ], [ -119.140542154999977, 50.597989751000114 ], [ -119.138175732999954, 50.597990318000029 ], [ -119.138170647000024, 50.5979903200001 ], [ -119.136718670999954, 50.597990629000044 ], [ -119.136147092999977, 50.597955293000062 ], [ -119.13614166799999, 50.597990746000043 ], [ -119.135946109999907, 50.597990784000061 ], [ -119.135738979999971, 50.597989739000091 ], [ -119.135619151999933, 50.597980113000084 ], [ -119.135365260999919, 50.597978837000085 ], [ -119.13523041400002, 50.597969119000055 ], [ -119.135051231999952, 50.59796820800004 ], [ -119.134991037999953, 50.597958903000098 ], [ -119.134945845999937, 50.59794960800015 ], [ -119.134915345999957, 50.597940385000101 ], [ -119.129234513999975, 50.597700343000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "124.9", "sL_BldgLoss": "124.9", "sL_StrLoss": "124.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BC4FC03CC5C75DC0D0502F3A514A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.118634019999931, 50.583435795000078 ], [ -119.118947306999971, 50.581392831000059 ], [ -119.118722664999922, 50.581378902 ], [ -119.119271074999986, 50.577802346000063 ], [ -119.119517032999951, 50.577817598000067 ], [ -119.119569778999974, 50.577473552000093 ], [ -119.125193822999961, 50.577822124000114 ], [ -119.125144551999952, 50.578143765000036 ], [ -119.12518264699996, 50.578146125000153 ], [ -119.125068210999984, 50.578893124000025 ], [ -119.124868304999907, 50.578917495000034 ], [ -119.123817500999934, 50.579125406000095 ], [ -119.123189977999914, 50.579316294000122 ], [ -119.12259007899992, 50.579759198000019 ], [ -119.122434883000025, 50.580085301000032 ], [ -119.122321490999923, 50.581023910000063 ], [ -119.122917995999913, 50.581714600000097 ], [ -119.123370677999944, 50.582047892000048 ], [ -119.124293187999967, 50.582480812000021 ], [ -119.12445333699999, 50.582514825000082 ], [ -119.124258801999929, 50.583784412000099 ], [ -119.118634019999931, 50.583435795000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "179.2", "sL_BldgLoss": "179.2", "sL_StrLoss": "179.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009BC59A4C5C85DC08D346565834B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.133771501999917, 50.591616199000043 ], [ -119.133792103999937, 50.59148158900004 ], [ -119.133523802999946, 50.591464993000066 ], [ -119.134071159999948, 50.58788840800004 ], [ -119.139696617999931, 50.588236243000047 ], [ -119.139683628999961, 50.58832119000008 ], [ -119.140627394999967, 50.588379517000043 ], [ -119.140080551999958, 50.591956132000035 ], [ -119.13940501799999, 50.591914383000073 ], [ -119.139397423999981, 50.59196404700004 ], [ -119.133771501999917, 50.591616199000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "1", "sL_AssetLoss": "434", "sL_BldgLoss": "434", "sL_StrLoss": "434", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000834D007240C95DC0D1C6D7BFE74A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.142193189999887, 50.589180908000145 ], [ -119.14255010699992, 50.586845688000061 ], [ -119.140394576999924, 50.586712492000068 ], [ -119.140941328999986, 50.583135853000101 ], [ -119.141066555999956, 50.583143592000098 ], [ -119.141123942, 50.582768156000022 ], [ -119.143619153999936, 50.582922336000053 ], [ -119.143634528999939, 50.582821714000083 ], [ -119.149144461999967, 50.583161971000045 ], [ -119.149332573, 50.581929801000101 ], [ -119.14843022499997, 50.581874096000085 ], [ -119.148357871999934, 50.582347966000043 ], [ -119.142733082999939, 50.582000566000126 ], [ -119.142754063999931, 50.581863269000053 ], [ -119.142308779999951, 50.581835754000053 ], [ -119.14235423299999, 50.581538324000057 ], [ -119.141810784999933, 50.581504742000085 ], [ -119.14199253299995, 50.580315493000107 ], [ -119.142388613999941, 50.580260508000052 ], [ -119.14387171199999, 50.579962807000065 ], [ -119.146190196999939, 50.579678004000058 ], [ -119.147815291999933, 50.579719297000118 ], [ -119.148861698999937, 50.580014100000021 ], [ -119.149438400999912, 50.580310391000097 ], [ -119.150034191999936, 50.58097401400007 ], [ -119.150144408999978, 50.581223306000034 ], [ -119.150134904999902, 50.581915411000047 ], [ -119.149531378999882, 50.582943692000129 ], [ -119.14735938299998, 50.585178298000073 ], [ -119.146815692999979, 50.585961597000022 ], [ -119.146095896999924, 50.588187714000057 ], [ -119.144696491999966, 50.590974810000034 ], [ -119.144136388999968, 50.591686913000075 ], [ -119.142741076999968, 50.592675297000042 ], [ -119.14238312699996, 50.592803037000117 ], [ -119.141134589999936, 50.592725901000065 ], [ -119.141681356999953, 50.589149284 ], [ -119.142193189999887, 50.589180908000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16925667", "BldgCostT": "10991667", "sL_LossRatio": "0.996864051355771", "sL_AssetLoss": "758.941", "sL_BldgLoss": "756.561", "sL_StrLoss": "755.7", "sL_NStrLoss": "0.861", "sL_ContLoss": "2.38", "geom_point": "0101000020E6100000A9468EF87EC95DC0C93736968B4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.152675334999927, 50.59454489700002 ], [ -119.152698057999928, 50.594396022000126 ], [ -119.152290878999963, 50.594370907000091 ], [ -119.152322863999984, 50.594161362000079 ], [ -119.150864047, 50.59407136800008 ], [ -119.150885563999935, 50.593930441000062 ], [ -119.150882757999966, 50.593930268000122 ], [ -119.151007213999918, 50.593115057000013 ], [ -119.150775609999954, 50.59310076700006 ], [ -119.150788853999956, 50.593014018000105 ], [ -119.150559409999971, 50.592999861000031 ], [ -119.150618715999926, 50.592611411000078 ], [ -119.14887188299997, 50.592503616000094 ], [ -119.149418031999971, 50.588926961000013 ], [ -119.149740176999984, 50.58894684200002 ], [ -119.14974241799996, 50.58893216700001 ], [ -119.151605851999975, 50.589047153000131 ], [ -119.15162043499997, 50.588951610000144 ], [ -119.15255688699996, 50.589009383000125 ], [ -119.152647119999969, 50.588418133000062 ], [ -119.152975423999948, 50.588438386000156 ], [ -119.152979505999951, 50.588411641000022 ], [ -119.153740377, 50.588458573000061 ], [ -119.153751991999982, 50.588382449000044 ], [ -119.151222261999962, 50.588226390000038 ], [ -119.1512503699999, 50.588042237000117 ], [ -119.151132870999959, 50.588034987000079 ], [ -119.151648555999941, 50.584656372000055 ], [ -119.149632304999969, 50.584531944000084 ], [ -119.149192493999962, 50.587412635000177 ], [ -119.148151784999968, 50.587348396000017 ], [ -119.147703590999953, 50.590283162000077 ], [ -119.147191739999968, 50.590251563000031 ], [ -119.146760707999974, 50.593073377000032 ], [ -119.14476961499993, 50.592950438000059 ], [ -119.145806194999963, 50.59205149800006 ], [ -119.146648502999966, 50.590695702000069 ], [ -119.14693440399999, 50.589853989000062 ], [ -119.147545719999982, 50.588979502000015 ], [ -119.147886705999937, 50.587777489000054 ], [ -119.149333099999978, 50.584809387000028 ], [ -119.150078289999925, 50.584084488000066 ], [ -119.151065915999979, 50.582537793000043 ], [ -119.151262184999936, 50.581562205000104 ], [ -119.151242995999922, 50.581140695000052 ], [ -119.15091269899996, 50.580381605000113 ], [ -119.150193276999971, 50.579468597000051 ], [ -119.149293799999981, 50.578972989000071 ], [ -119.148462382999966, 50.578682497000052 ], [ -119.146014578999939, 50.578636893000095 ], [ -119.143963890999942, 50.578873313 ], [ -119.142943900999953, 50.579143899 ], [ -119.141635680999983, 50.579316746000053 ], [ -119.141787111999989, 50.578325849000102 ], [ -119.140735091999915, 50.578260827000065 ], [ -119.140729310000012, 50.578298649000089 ], [ -119.1351050869999, 50.577950863000069 ], [ -119.135177672999987, 50.577476336000075 ], [ -119.136906282999973, 50.57651059600002 ], [ -119.138472377999946, 50.575529295000102 ], [ -119.139629925999927, 50.574582037000077 ], [ -119.142475594999965, 50.574757939000108 ], [ -119.142272621999936, 50.57608633600006 ], [ -119.142300869999943, 50.576088082000119 ], [ -119.14230476799996, 50.576062567000115 ], [ -119.143551381999956, 50.576139602000147 ], [ -119.143757964999978, 50.57478732200007 ], [ -119.139686574999985, 50.574535679000071 ], [ -119.140024784999966, 50.574258900000132 ], [ -119.14085069599993, 50.573444203000072 ], [ -119.142505612999926, 50.572243595000018 ], [ -119.143545381999957, 50.571810693000074 ], [ -119.145113180999985, 50.570927704000077 ], [ -119.145878726999953, 50.570221598000025 ], [ -119.145892943999968, 50.570221328000031 ], [ -119.149423980999956, 50.570155006000064 ], [ -119.149703695999904, 50.570112512000065 ], [ -119.149713745999918, 50.570110977000134 ], [ -119.149487653999955, 50.569502947000146 ], [ -119.149060591999941, 50.568510926000073 ], [ -119.148472794000014, 50.567479954000063 ], [ -119.148529003, 50.56711168900005 ], [ -119.148583369999969, 50.567115046000019 ], [ -119.148787870999968, 50.567396095000035 ], [ -119.149319401999975, 50.568329699000103 ], [ -119.150070498000019, 50.570056810000104 ], [ -119.150681820000017, 50.572389604000051 ], [ -119.151231270999972, 50.574486169000068 ], [ -119.151233526999974, 50.57449477300004 ], [ -119.151667485999951, 50.576150411000135 ], [ -119.151946902999981, 50.57721651100006 ], [ -119.152058991999979, 50.577644116000066 ], [ -119.152327312999915, 50.57926268600005 ], [ -119.152566118, 50.579809101000073 ], [ -119.153283195999975, 50.581248790000075 ], [ -119.153593094999962, 50.581971897000059 ], [ -119.154121917999987, 50.583435527000056 ], [ -119.154333570999924, 50.584021288000045 ], [ -119.155012490999979, 50.586224892000047 ], [ -119.155164602999889, 50.586884199000053 ], [ -119.155213104999973, 50.587347508000022 ], [ -119.155214292999943, 50.588279901000114 ], [ -119.154839602999985, 50.59075429400005 ], [ -119.154399097999942, 50.596060409000081 ], [ -119.154378218999938, 50.59619067200007 ], [ -119.154368147999904, 50.59625392100002 ], [ -119.154367518999948, 50.596257768000022 ], [ -119.154308793, 50.596624492000053 ], [ -119.154247992999956, 50.597004292000065 ], [ -119.154059919999952, 50.59771656500002 ], [ -119.153988888999933, 50.597985613000091 ], [ -119.144588385999953, 50.597988669000095 ], [ -119.144849616999977, 50.59627927400004 ], [ -119.150180773999978, 50.596608332000123 ], [ -119.15051617599994, 50.594411699000048 ], [ -119.152675334999927, 50.59454489700002 ] ], [ [ -119.146193194999938, 50.573212114000036 ], [ -119.146343336999934, 50.572228854000102 ], [ -119.145800229999907, 50.572195305000037 ], [ -119.14565007499999, 50.573178565000028 ], [ -119.146193194999938, 50.573212114000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020289", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "110", "sL_BldgLoss": "110", "sL_StrLoss": "110", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A40909334C55DC01EA25556E8524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.079700560999953, 50.646170936 ], [ -119.079761760999986, 50.645774706000033 ], [ -119.080738019999927, 50.64583549000006 ], [ -119.085394042999951, 50.646125261000044 ], [ -119.085341745999983, 50.646464121000058 ], [ -119.085760153999971, 50.64649015100008 ], [ -119.085605950999962, 50.647489356000044 ], [ -119.085456860999912, 50.647525118000011 ], [ -119.084812858999953, 50.647679498000095 ], [ -119.084171348999945, 50.647866124000082 ], [ -119.083472677999922, 50.648155718000041 ], [ -119.083208245999941, 50.648306750000131 ], [ -119.082744537999972, 50.64857162900006 ], [ -119.082389210999963, 50.648834159000025 ], [ -119.082083336999958, 50.649060141000085 ], [ -119.081950170999932, 50.649158537000105 ], [ -119.081543679999967, 50.649516841000043 ], [ -119.081131181000018, 50.649933912000044 ], [ -119.08104497099994, 50.650021050000078 ], [ -119.080973425999929, 50.650130376000092 ], [ -119.080944697999939, 50.650174272000079 ], [ -119.078082094999914, 50.649996041000072 ], [ -119.078634573999935, 50.646419982000069 ], [ -119.078938514999919, 50.646438909000061 ], [ -119.078986774999962, 50.646126489000068 ], [ -119.079700560999953, 50.646170936 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35938084", "BldgCostT": "22578334", "sL_LossRatio": "1", "sL_AssetLoss": "1968.8", "sL_BldgLoss": "1968.8", "sL_StrLoss": "1968.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1C329EFBACA5DC026D8B08D954B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.165905128999952, 50.597834278000086 ], [ -119.165947410999976, 50.59755674400008 ], [ -119.163430868999953, 50.597401810000093 ], [ -119.163975920999974, 50.593825104000082 ], [ -119.164516391999967, 50.593858384000029 ], [ -119.164967842999957, 50.59089522000005 ], [ -119.165841028000017, 50.590948981000103 ], [ -119.166074477999928, 50.589416341000053 ], [ -119.166185130999963, 50.589423153000084 ], [ -119.166329063999967, 50.588478135000109 ], [ -119.161390328999957, 50.588173971000067 ], [ -119.161935430999932, 50.584597236000043 ], [ -119.162312077999928, 50.584620440000059 ], [ -119.162474466999939, 50.583554745000164 ], [ -119.164820508999981, 50.583699253000127 ], [ -119.168099600999966, 50.583901147000056 ], [ -119.168095824999924, 50.583925948000051 ], [ -119.171997381, 50.584166040000085 ], [ -119.171957017999929, 50.584431296000076 ], [ -119.172012997999957, 50.584434740000106 ], [ -119.171750349999954, 50.586160768000106 ], [ -119.172354506999966, 50.586197934000033 ], [ -119.171810215000022, 50.589774713000047 ], [ -119.171699559999922, 50.589767906000084 ], [ -119.171566355999943, 50.59064314700003 ], [ -119.171691736999918, 50.590650860000039 ], [ -119.171342478999961, 50.592945585000052 ], [ -119.172312473999966, 50.593005249000051 ], [ -119.17206926199998, 50.594603313000142 ], [ -119.172076492999977, 50.594603757000051 ], [ -119.171752241999982, 50.596734108000113 ], [ -119.171558316999921, 50.598008113000063 ], [ -119.168870527999943, 50.598016772000094 ], [ -119.165905128999952, 50.597834278000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83357373", "BldgCostT": "52413706", "sL_LossRatio": "0.998304769374614", "sL_AssetLoss": "3444.959", "sL_BldgLoss": "3439.119", "sL_StrLoss": "3437", "sL_NStrLoss": "2.119", "sL_ContLoss": "5.84", "geom_point": "0101000020E61000000FF1FE2EE2C95DC0BFB81AFAA3494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.154399097999942, 50.596060409000081 ], [ -119.154839602999985, 50.59075429400005 ], [ -119.155214292999943, 50.588279901000114 ], [ -119.155213104999973, 50.587347508000022 ], [ -119.155164602999889, 50.586884199000053 ], [ -119.155012490999979, 50.586224892000047 ], [ -119.154333570999924, 50.584021288000045 ], [ -119.154121917999987, 50.583435527000056 ], [ -119.153593094999962, 50.581971897000059 ], [ -119.153283195999975, 50.581248790000075 ], [ -119.152566118, 50.579809101000073 ], [ -119.152327312999915, 50.57926268600005 ], [ -119.152058991999979, 50.577644116000066 ], [ -119.151946902999981, 50.57721651100006 ], [ -119.151667485999951, 50.576150411000135 ], [ -119.151233526999974, 50.57449477300004 ], [ -119.151231270999972, 50.574486169000068 ], [ -119.150681820000017, 50.572389604000051 ], [ -119.150070498000019, 50.570056810000104 ], [ -119.149319401999975, 50.568329699000103 ], [ -119.148787870999968, 50.567396095000035 ], [ -119.148583369999969, 50.567115046000019 ], [ -119.150213749999978, 50.567215720000043 ], [ -119.150450053999961, 50.565667058000059 ], [ -119.147325785999968, 50.565474116000139 ], [ -119.14563981299996, 50.563328129000091 ], [ -119.143612335999975, 50.560747157000073 ], [ -119.142785517000021, 50.559669959000111 ], [ -119.143861303999984, 50.559720908000038 ], [ -119.143679175999949, 50.559011415000022 ], [ -119.146390529999948, 50.559051969000066 ], [ -119.146390562999926, 50.559067355000124 ], [ -119.148759125999916, 50.559081858000063 ], [ -119.148840273999937, 50.5590809730001 ], [ -119.148838897999923, 50.559177074000075 ], [ -119.148853227999936, 50.559612770000093 ], [ -119.149230771999953, 50.559608685000043 ], [ -119.151097738999923, 50.559626125000086 ], [ -119.15111887099998, 50.560470071000054 ], [ -119.153980909999987, 50.560450214000078 ], [ -119.153882680999914, 50.561269330000066 ], [ -119.153856451999943, 50.561488181000044 ], [ -119.157108561999948, 50.562142360000074 ], [ -119.158635513999968, 50.562148622000095 ], [ -119.158577598999941, 50.562528680000099 ], [ -119.157738852999941, 50.562476948000089 ], [ -119.157726163999968, 50.562560199000103 ], [ -119.157509996999948, 50.562546866000083 ], [ -119.157425081999975, 50.56310400500012 ], [ -119.157054628999902, 50.563081154000038 ], [ -119.156941900999954, 50.563820714000094 ], [ -119.156930756999941, 50.563820027000105 ], [ -119.156777350999903, 50.564826415000013 ], [ -119.15665857599997, 50.5648190880001 ], [ -119.15631605699997, 50.567065921000093 ], [ -119.156057664999963, 50.567049981000096 ], [ -119.155904025999973, 50.568057696000068 ], [ -119.157159213999961, 50.568135120000093 ], [ -119.156823181999968, 50.570339391000076 ], [ -119.15751265499992, 50.570381914000095 ], [ -119.157325576999966, 50.571609123000066 ], [ -119.157875027999964, 50.57164300600008 ], [ -119.15776230499992, 50.572382478000073 ], [ -119.158874007999898, 50.572451026000131 ], [ -119.158902445999942, 50.572452780000084 ], [ -119.158896218999942, 50.57249364000009 ], [ -119.158666748000016, 50.573999162000113 ], [ -119.159077349999919, 50.574024478000084 ], [ -119.158968935999951, 50.574735762000074 ], [ -119.158662868999897, 50.576743706000137 ], [ -119.158674755999954, 50.57674348600009 ], [ -119.158677794999946, 50.576809941000064 ], [ -119.159335332999888, 50.576850477000022 ], [ -119.159207717999919, 50.577687715000096 ], [ -119.159478939999971, 50.577704433000086 ], [ -119.159711478999952, 50.577718767000128 ], [ -119.159640637999928, 50.578183552000077 ], [ -119.159562226999967, 50.57869800200006 ], [ -119.159499931999946, 50.579106689000184 ], [ -119.159848958999987, 50.579128203000103 ], [ -119.160188861999927, 50.579149153000095 ], [ -119.163074668999968, 50.579326978000019 ], [ -119.162863473999906, 50.580713221000089 ], [ -119.163093965999906, 50.580708938000051 ], [ -119.163131032999971, 50.581517745000049 ], [ -119.162739791999982, 50.581525013000039 ], [ -119.162718012999946, 50.581667957000086 ], [ -119.162529720999927, 50.582903742000013 ], [ -119.156904753999967, 50.582557058000049 ], [ -119.157095876999946, 50.581303709000089 ], [ -119.155681063999978, 50.581216464000086 ], [ -119.155276158999968, 50.583871104000067 ], [ -119.155170135999938, 50.583864565000091 ], [ -119.155064388999975, 50.584557807000117 ], [ -119.154994741999971, 50.584553512000056 ], [ -119.154983456, 50.584627490000067 ], [ -119.157567739999948, 50.584786840000056 ], [ -119.157543585999917, 50.584945246000125 ], [ -119.157862941999952, 50.584964933000059 ], [ -119.157845354999978, 50.585080271000038 ], [ -119.160022681999934, 50.585214474000054 ], [ -119.159477419999988, 50.588791197000056 ], [ -119.159440623999956, 50.58878892900001 ], [ -119.159384736999982, 50.589155498000082 ], [ -119.159313352999973, 50.589151098000059 ], [ -119.158946852999961, 50.591554802000111 ], [ -119.158660438999945, 50.591537151000061 ], [ -119.158247573999958, 50.594244512000024 ], [ -119.157991876999958, 50.594228753000031 ], [ -119.157922408999966, 50.594684244000064 ], [ -119.15832959299999, 50.59470933900014 ], [ -119.158297755999939, 50.59491809300004 ], [ -119.158371507999945, 50.594922638000028 ], [ -119.157897967999986, 50.598027463000086 ], [ -119.155505294999941, 50.597981223000083 ], [ -119.154146203999957, 50.597978054000073 ], [ -119.153988888999933, 50.597985613000091 ], [ -119.154059919999952, 50.59771656500002 ], [ -119.154247992999956, 50.597004292000065 ], [ -119.154308793, 50.596624492000053 ], [ -119.154367518999948, 50.596257768000022 ], [ -119.154368147999904, 50.59625392100002 ], [ -119.154378218999938, 50.59619067200007 ], [ -119.154399097999942, 50.596060409000081 ] ], [ [ -119.149761459999951, 50.562014064000032 ], [ -119.149772226, 50.561943504000077 ], [ -119.149605304999966, 50.561933195000094 ], [ -119.149818913999979, 50.560533215000071 ], [ -119.148747972999971, 50.560467074 ], [ -119.14878619699995, 50.560216591000099 ], [ -119.1475258899999, 50.560138741000095 ], [ -119.147263208999959, 50.56185976000004 ], [ -119.149761459999951, 50.562014064000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5668750", "BldgCostT": "3700000", "sL_LossRatio": "0.997430081162233", "sL_AssetLoss": "228.801", "sL_BldgLoss": "228.213", "sL_StrLoss": "228", "sL_NStrLoss": "0.213", "sL_ContLoss": "0.588", "geom_point": "0101000020E6100000E5A99A6206CB5DC06C2B5151D0474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.169725631999896, 50.55908335200008 ], [ -119.175347765999973, 50.559429399000052 ], [ -119.174804033999976, 50.563006308000091 ], [ -119.169181457999983, 50.562660236000049 ], [ -119.169725631999896, 50.55908335200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27571833", "BldgCostT": "17013333", "sL_LossRatio": "1", "sL_AssetLoss": "1416.8", "sL_BldgLoss": "1416.8", "sL_StrLoss": "1416.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0856E9B4ECB5DC0B2ADEAD5154D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.170556391999952, 50.602286702000043 ], [ -119.170458596999978, 50.601996405000136 ], [ -119.170438673999968, 50.600024748000109 ], [ -119.170438401999917, 50.599997803000115 ], [ -119.170433404, 50.599503795000025 ], [ -119.170475712999973, 50.599319591000061 ], [ -119.170623401999933, 50.599244796000022 ], [ -119.17084990699999, 50.599220806000062 ], [ -119.17108551799997, 50.599277699000091 ], [ -119.171134676999941, 50.599326004000055 ], [ -119.171482920999964, 50.599668242000078 ], [ -119.17172527699995, 50.59990639100009 ], [ -119.171831624999967, 50.599989635000078 ], [ -119.173060091999915, 50.600951490000071 ], [ -119.173749599999937, 50.601412706000097 ], [ -119.174652198000032, 50.601920297000071 ], [ -119.17541501299992, 50.602301191000031 ], [ -119.1757481, 50.602398390000126 ], [ -119.176087497, 50.602426404000092 ], [ -119.176154273999927, 50.602426070000028 ], [ -119.17708639099996, 50.602421236000026 ], [ -119.17725618299994, 50.602420353000056 ], [ -119.177346711999945, 50.602419888000036 ], [ -119.17759561299998, 50.602416071000107 ], [ -119.178146433999956, 50.602407589000045 ], [ -119.17869738199991, 50.602399097000067 ], [ -119.178830005999941, 50.601928887000035 ], [ -119.178942191999965, 50.601331106000032 ], [ -119.178932093, 50.601136413000063 ], [ -119.178644795999944, 50.600237811000049 ], [ -119.178567929999957, 50.599997418000022 ], [ -119.178556815999954, 50.599962607000123 ], [ -119.178462313999901, 50.599771798000106 ], [ -119.17839870099999, 50.59969522700009 ], [ -119.177972577, 50.599182093000096 ], [ -119.177711693999981, 50.598983790000055 ], [ -119.177694056999925, 50.598975717000016 ], [ -119.177261685999952, 50.598777406000103 ], [ -119.177068935999941, 50.598724942000025 ], [ -119.177046412999971, 50.598718831000063 ], [ -119.175461879999943, 50.598287695000174 ], [ -119.174838017999974, 50.598048992000066 ], [ -119.174774268999926, 50.597997667000108 ], [ -119.17303407199995, 50.598003331000093 ], [ -119.173115914999983, 50.597465549000034 ], [ -119.173219950999965, 50.596781922000062 ], [ -119.173478620999973, 50.596797828000099 ], [ -119.17348384099995, 50.596763528000032 ], [ -119.173561142999958, 50.596768282000056 ], [ -119.173645165000011, 50.596216131000098 ], [ -119.179271967999966, 50.596561962000109 ], [ -119.179051429999987, 50.598012409 ], [ -119.179033892999939, 50.598127737 ], [ -119.181898217999972, 50.598303670000078 ], [ -119.181659702999923, 50.603912285000042 ], [ -119.181690849999939, 50.60593885 ], [ -119.180243024999982, 50.605849943000088 ], [ -119.18017840899995, 50.606274883000069 ], [ -119.176829434999959, 50.606069159000064 ], [ -119.176544054999923, 50.607944941000071 ], [ -119.176106202999932, 50.607745413000075 ], [ -119.175353281999946, 50.607532101000047 ], [ -119.174165483, 50.607274100000076 ], [ -119.17382879799996, 50.607172192000142 ], [ -119.173556412999943, 50.6070019940001 ], [ -119.173301803999919, 50.606687608000101 ], [ -119.17252181, 50.605327393000053 ], [ -119.172351024999926, 50.605054773000099 ], [ -119.171722113999948, 50.604050706000102 ], [ -119.170916196999968, 50.602908200000101 ], [ -119.170719819999988, 50.602568990000051 ], [ -119.170556391999952, 50.602286702000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5021917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "99.1", "sL_BldgLoss": "99.1", "sL_StrLoss": "99.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D2101C459CA5DC05834DFB95E494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.160318970999967, 50.575633662000044 ], [ -119.160281958999946, 50.574824853000074 ], [ -119.159858586000013, 50.574832708000073 ], [ -119.159833918999965, 50.574293503000028 ], [ -119.159438180999956, 50.574300843000046 ], [ -119.159410549999961, 50.57430135500006 ], [ -119.159373556999938, 50.57349254700005 ], [ -119.158950193999956, 50.573500398000114 ], [ -119.158913209999966, 50.572691590000041 ], [ -119.15899857799991, 50.572690006000101 ], [ -119.159639263999949, 50.572678123000131 ], [ -119.160606628999972, 50.572660175000046 ], [ -119.160631304000034, 50.573199379000094 ], [ -119.161478021999955, 50.573183662000069 ], [ -119.161453335999965, 50.572644458000077 ], [ -119.16187669, 50.572636597000063 ], [ -119.161852002, 50.572097391000113 ], [ -119.162275350999934, 50.572089530000035 ], [ -119.162250656999959, 50.571550324000036 ], [ -119.162674001999932, 50.571542461000021 ], [ -119.162649304999917, 50.571003256 ], [ -119.163495981999972, 50.570987525000085 ], [ -119.163483628999984, 50.570717923000053 ], [ -119.163753075, 50.570712916000055 ], [ -119.164753634999968, 50.570694315000019 ], [ -119.164790716999946, 50.57150312100007 ], [ -119.163944031999904, 50.571518863000037 ], [ -119.163981099999958, 50.572327668000092 ], [ -119.163557748999906, 50.572335536000068 ], [ -119.163582457999965, 50.572874741000128 ], [ -119.163159102999941, 50.572882609000075 ], [ -119.163183806999939, 50.573421813000074 ], [ -119.162760446999982, 50.573429678000068 ], [ -119.162785147999926, 50.57396888300007 ], [ -119.161938415999913, 50.573984610000124 ], [ -119.162000146999958, 50.575332622000083 ], [ -119.161576767999932, 50.575340483000033 ], [ -119.161589111999888, 50.575610086000012 ], [ -119.160682391999899, 50.575626918000104 ], [ -119.160318970999967, 50.575633662000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47861206", "BldgCostT": "31217039", "sL_LossRatio": "1", "sL_AssetLoss": "3248.8", "sL_BldgLoss": "3248.8", "sL_StrLoss": "3248.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061D60FDA80CA5DC0DF440CBFC4464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.162278257999944, 50.562097505000033 ], [ -119.162026372999946, 50.55698398400007 ], [ -119.162225599999942, 50.556996266000041 ], [ -119.162590025999975, 50.554603079000067 ], [ -119.161907039999932, 50.55456097200004 ], [ -119.161904918999966, 50.55451791100009 ], [ -119.163014456, 50.554279241000074 ], [ -119.162996221999975, 50.554232624000072 ], [ -119.162973159999979, 50.554204859000059 ], [ -119.162932769999927, 50.554156265000124 ], [ -119.162915920000017, 50.554125354000128 ], [ -119.162884182999932, 50.554087192000019 ], [ -119.162851126999968, 50.554033221000068 ], [ -119.16280448699996, 50.553987842000062 ], [ -119.162742990999945, 50.553935315000075 ], [ -119.162734118999936, 50.553923953000044 ], [ -119.162695103999951, 50.553874105000048 ], [ -119.162679484999956, 50.553851926000092 ], [ -119.162646534999936, 50.553805055000055 ], [ -119.1626309, 50.553778506000064 ], [ -119.16259662799996, 50.553720174000134 ], [ -119.162591346999974, 50.553703447000103 ], [ -119.162577031999902, 50.553657876000059 ], [ -119.162574254999967, 50.553625761000077 ], [ -119.162571570999944, 50.553595265000098 ], [ -119.162552677999912, 50.553540774000055 ], [ -119.162547917999973, 50.553485970000082 ], [ -119.162540365999973, 50.553470614000084 ], [ -119.162513516999979, 50.553416283000061 ], [ -119.162500272000017, 50.553395543000072 ], [ -119.162464235999892, 50.553339287000021 ], [ -119.162450287999931, 50.553322473000087 ], [ -119.162332559999982, 50.553180662000081 ], [ -119.16227407, 50.553110214000121 ], [ -119.162225451999959, 50.553041093000154 ], [ -119.162177566999958, 50.552979884000095 ], [ -119.162169961999922, 50.552964516000046 ], [ -119.162143165999936, 50.552910198000063 ], [ -119.162133442999931, 50.552888772000095 ], [ -119.16210807, 50.552832647000088 ], [ -119.162096624999919, 50.552813172000107 ], [ -119.162058126999966, 50.552747777000043 ], [ -119.162053746999945, 50.552738571000049 ], [ -119.162017446999968, 50.552662821000119 ], [ -119.162006219999938, 50.552639305000106 ], [ -119.161994068999931, 50.552585632000088 ], [ -119.161983232999958, 50.552537827000087 ], [ -119.16197089399995, 50.552508356000011 ], [ -119.161947507999955, 50.552452448000039 ], [ -119.161942231999944, 50.552431629000147 ], [ -119.161925868999944, 50.552366628000044 ], [ -119.161919769999926, 50.552354287000128 ], [ -119.161891434999944, 50.552296952000056 ], [ -119.161886078999942, 50.552278258000044 ], [ -119.161871232999914, 50.552226792000098 ], [ -119.161854016999911, 50.552202324000042 ], [ -119.161806429999928, 50.55213463700008 ], [ -119.16176264399995, 50.552054362000064 ], [ -119.161721730999886, 50.551979389000081 ], [ -119.161705278999975, 50.551949158000106 ], [ -119.16167467, 50.551905668000082 ], [ -119.161640476999963, 50.551857001000101 ], [ -119.161607439999898, 50.551803054000075 ], [ -119.161569924999966, 50.551760753000103 ], [ -119.161560144999967, 50.551749743000109 ], [ -119.161527104999934, 50.55169585200013 ], [ -119.16152124599995, 50.551687447000027 ], [ -119.161478526999986, 50.551626721000105 ], [ -119.161471269999964, 50.55161431900008 ], [ -119.161428588999939, 50.551541850000092 ], [ -119.161382017999969, 50.551465770000057 ], [ -119.161362499999925, 50.551433933000055 ], [ -119.161330803999988, 50.551395759000044 ], [ -119.161313901999904, 50.551364836000062 ], [ -119.16128411699999, 50.551350679000038 ], [ -119.161240026999963, 50.551337652000029 ], [ -119.161181569999926, 50.551325915000092 ], [ -119.161127642999986, 50.551298200000133 ], [ -119.161025685999945, 50.551245823000073 ], [ -119.160972501999936, 50.551218516000048 ], [ -119.160924512999884, 50.551040495000073 ], [ -119.160840217999962, 50.550895303000082 ], [ -119.160612098999948, 50.550633095000087 ], [ -119.160435695999979, 50.550477794000109 ], [ -119.16026191199991, 50.550408402000102 ], [ -119.160081296999948, 50.550392704000089 ], [ -119.159881001999935, 50.550450807000061 ], [ -119.15971609399999, 50.550546205000025 ], [ -119.159335891999959, 50.550946991000053 ], [ -119.158703194999958, 50.553009756000115 ], [ -119.158653917999942, 50.553170503000139 ], [ -119.158434197999966, 50.553606488000078 ], [ -119.1576026799999, 50.554636700000039 ], [ -119.155703092999929, 50.554618415000085 ], [ -119.155795504999958, 50.55275137900005 ], [ -119.15579323499999, 50.552632624000083 ], [ -119.155853204999957, 50.55263632500013 ], [ -119.155917019999919, 50.552217621000061 ], [ -119.157395144999981, 50.552308828000093 ], [ -119.15791822199999, 50.548875759000026 ], [ -119.158179197999985, 50.548891861000058 ], [ -119.158306450999987, 50.54805656600012 ], [ -119.158491393999967, 50.54806797600002 ], [ -119.158573167999947, 50.547531171000152 ], [ -119.161071006999947, 50.547685244000064 ], [ -119.16113719, 50.547250623000068 ], [ -119.157503108999947, 50.547026443000043 ], [ -119.157521242, 50.546907423000079 ], [ -119.15680499299998, 50.546863224000091 ], [ -119.157342235999977, 50.54333702900005 ], [ -119.165729363999958, 50.543459666000089 ], [ -119.165769515999912, 50.543460251000056 ], [ -119.165725530999978, 50.543749332000118 ], [ -119.16754378, 50.543861384000124 ], [ -119.166999616999931, 50.547438324000048 ], [ -119.166783960999936, 50.547425035000089 ], [ -119.166648350999978, 50.548316329000087 ], [ -119.164229536999969, 50.54816725600012 ], [ -119.164150456999948, 50.548162381000033 ], [ -119.164135037, 50.548263688000063 ], [ -119.164166673999944, 50.548265638000025 ], [ -119.164193400999963, 50.548267285000058 ], [ -119.164145901999987, 50.548579352000033 ], [ -119.164587009999977, 50.548571150000072 ], [ -119.164599358999979, 50.548840753000093 ], [ -119.165022498999974, 50.54883288500006 ], [ -119.165047203999933, 50.549372090000062 ], [ -119.165470348999989, 50.549364219000111 ], [ -119.165519767999967, 50.550442631000081 ], [ -119.16508620899999, 50.550450696000034 ], [ -119.164250306999961, 50.550466241000073 ], [ -119.164225609999932, 50.549927034000042 ], [ -119.163939953999915, 50.54993234500008 ], [ -119.163845251999959, 50.550554473000105 ], [ -119.164220257999915, 50.550577590000074 ], [ -119.16414251499998, 50.551088321000059 ], [ -119.164190694999974, 50.551091291000063 ], [ -119.163871379999989, 50.553188914000053 ], [ -119.166553357999959, 50.55335419200005 ], [ -119.166670723999971, 50.552582926000063 ], [ -119.166859492999905, 50.551342369000068 ], [ -119.172480638999929, 50.551688563000056 ], [ -119.171936772999942, 50.555265492000125 ], [ -119.169020799999942, 50.555085940000019 ], [ -119.169007818999958, 50.555171263000048 ], [ -119.170488153999955, 50.55526242400007 ], [ -119.169944086999976, 50.558839329000079 ], [ -119.168662636999983, 50.558760417 ], [ -119.168416706999921, 50.560376761000036 ], [ -119.167888260999916, 50.560344214000061 ], [ -119.167871087999984, 50.560457072000133 ], [ -119.165771427999957, 50.560327732000097 ], [ -119.165747101999955, 50.560487553 ], [ -119.16766362199999, 50.560605614000075 ], [ -119.167119265999986, 50.564182481000024 ], [ -119.163800915999957, 50.563978045000063 ], [ -119.161496601999943, 50.563836022000025 ], [ -119.161757318, 50.562124378000135 ], [ -119.162278257999944, 50.562097505000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "214419971", "BldgCostT": "138570414", "sL_LossRatio": "0.999591537922562", "sL_AssetLoss": "9548.01", "sL_BldgLoss": "9544.11", "sL_StrLoss": "9542.7", "sL_NStrLoss": "1.41", "sL_ContLoss": "3.9", "geom_point": "0101000020E6100000A120FCB45FC95DC07C2EA59143474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.15111887099998, 50.560470071000054 ], [ -119.151097738999923, 50.559626125000086 ], [ -119.149230771999953, 50.559608685000043 ], [ -119.148853227999936, 50.559612770000093 ], [ -119.148838897999923, 50.559177074000075 ], [ -119.148840273999937, 50.5590809730001 ], [ -119.148759125999916, 50.559081858000063 ], [ -119.146390562999926, 50.559067355000124 ], [ -119.146390529999948, 50.559051969000066 ], [ -119.143679175999949, 50.559011415000022 ], [ -119.143861303999984, 50.559720908000038 ], [ -119.142785517000021, 50.559669959000111 ], [ -119.14228222, 50.559014268000034 ], [ -119.141716829999979, 50.558277559000075 ], [ -119.141598371999947, 50.55812325200008 ], [ -119.141549637999944, 50.557985451000036 ], [ -119.141540931999927, 50.557960832000035 ], [ -119.14148211, 50.557742432000055 ], [ -119.14152101399999, 50.556632696000079 ], [ -119.141438612999963, 50.556308995000123 ], [ -119.141377515999949, 50.556183290000064 ], [ -119.141293915999896, 50.556011192000078 ], [ -119.140345908999961, 50.554806208000109 ], [ -119.140182292999896, 50.554484691000035 ], [ -119.140104399999984, 50.554158490000077 ], [ -119.140104040999944, 50.554128230000074 ], [ -119.140096588999938, 50.553513608000081 ], [ -119.140110887, 50.552769806000057 ], [ -119.142939697999935, 50.552777710000022 ], [ -119.14431111, 50.552779500000028 ], [ -119.145504612999929, 50.552754105000105 ], [ -119.145429698999948, 50.553025494000053 ], [ -119.145444089999927, 50.553144693000036 ], [ -119.145511823999968, 50.553286898000138 ], [ -119.14571521799995, 50.55344119600008 ], [ -119.14612340399999, 50.553619915000063 ], [ -119.146186009999951, 50.553664963000053 ], [ -119.146229464999934, 50.553696247000119 ], [ -119.146404610999923, 50.553822302000079 ], [ -119.146581763999905, 50.554017678 ], [ -119.14675999499994, 50.553975214000104 ], [ -119.146959500999941, 50.554434297000057 ], [ -119.147265336, 50.554833976000062 ], [ -119.147241599, 50.55500229000004 ], [ -119.147347380999975, 50.554941194000023 ], [ -119.147523130999943, 50.55511422700004 ], [ -119.147701412999979, 50.555289732000119 ], [ -119.148056585999939, 50.555639417000087 ], [ -119.148239114999953, 50.55576349400004 ], [ -119.149667909999948, 50.55621730900004 ], [ -119.150093507999955, 50.556329396000109 ], [ -119.150413207999947, 50.556344593000105 ], [ -119.150833299999974, 50.556333294000098 ], [ -119.151756517999956, 50.556308399000024 ], [ -119.151956779999963, 50.556325297000029 ], [ -119.152067873999968, 50.556424196000123 ], [ -119.15207939699998, 50.557539609000123 ], [ -119.153037789999956, 50.557534714000035 ], [ -119.154288392999916, 50.557538804000053 ], [ -119.154345618999955, 50.557628997000087 ], [ -119.15425681, 50.558174102000073 ], [ -119.154195839999929, 50.558657749000126 ], [ -119.154041726999964, 50.559943119000081 ], [ -119.153984496999939, 50.560420308000054 ], [ -119.153980909999987, 50.560450214000078 ], [ -119.15111887099998, 50.560470071000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152362500", "BldgCostT": "100005000", "sL_LossRatio": "0.999289140157735", "sL_AssetLoss": "7680.839", "sL_BldgLoss": "7675.379", "sL_StrLoss": "7673.4", "sL_NStrLoss": "1.979", "sL_ContLoss": "5.46", "geom_point": "0101000020E6100000D1369B1AAAC95DC084151BB19E464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.154195839999929, 50.558657749000126 ], [ -119.15425681, 50.558174102000073 ], [ -119.154345618999955, 50.557628997000087 ], [ -119.154288392999916, 50.557538804000053 ], [ -119.153037789999956, 50.557534714000035 ], [ -119.15207939699998, 50.557539609000123 ], [ -119.152067873999968, 50.556424196000123 ], [ -119.151956779999963, 50.556325297000029 ], [ -119.151756517999956, 50.556308399000024 ], [ -119.150833299999974, 50.556333294000098 ], [ -119.150413207999947, 50.556344593000105 ], [ -119.150093507999955, 50.556329396000109 ], [ -119.149667909999948, 50.55621730900004 ], [ -119.148239114999953, 50.55576349400004 ], [ -119.148056585999939, 50.555639417000087 ], [ -119.147701412999979, 50.555289732000119 ], [ -119.147523130999943, 50.55511422700004 ], [ -119.147347380999975, 50.554941194000023 ], [ -119.147241599, 50.55500229000004 ], [ -119.147265336, 50.554833976000062 ], [ -119.146959500999941, 50.554434297000057 ], [ -119.14675999499994, 50.553975214000104 ], [ -119.146581763999905, 50.554017678 ], [ -119.146404610999923, 50.553822302000079 ], [ -119.146229464999934, 50.553696247000119 ], [ -119.146186009999951, 50.553664963000053 ], [ -119.14612340399999, 50.553619915000063 ], [ -119.14571521799995, 50.55344119600008 ], [ -119.145511823999968, 50.553286898000138 ], [ -119.145444089999927, 50.553144693000036 ], [ -119.145429698999948, 50.553025494000053 ], [ -119.145504612999929, 50.552754105000105 ], [ -119.14431111, 50.552779500000028 ], [ -119.144328395999977, 50.551951011000035 ], [ -119.144344390999905, 50.551130600000128 ], [ -119.144340798999977, 50.550308993000051 ], [ -119.142979998999948, 50.550302489000039 ], [ -119.142992158999988, 50.549479998000052 ], [ -119.143006219999961, 50.548691095000081 ], [ -119.143004352999952, 50.548602763000062 ], [ -119.143002450999958, 50.548514440000112 ], [ -119.143000568999952, 50.548426084 ], [ -119.142998703999965, 50.548337752000123 ], [ -119.142996800999953, 50.54824943000007 ], [ -119.14299491599995, 50.548161073000109 ], [ -119.142993050999962, 50.548072741000098 ], [ -119.142991147999979, 50.547984419000031 ], [ -119.142989320999931, 50.547896075000054 ], [ -119.142988756999927, 50.547872493000106 ], [ -119.142965190999931, 50.547872513000051 ], [ -119.14267859099995, 50.547845796000054 ], [ -119.142543270999951, 50.547844770000012 ], [ -119.141582920999923, 50.547837446000088 ], [ -119.140163876999964, 50.547826592000021 ], [ -119.14017018199992, 50.546967598000116 ], [ -119.141623431999932, 50.54696180300008 ], [ -119.14164195099994, 50.546961521000085 ], [ -119.141662621999942, 50.546957773000017 ], [ -119.141679575999916, 50.546944313000097 ], [ -119.14168721199999, 50.546252477000074 ], [ -119.141687297999979, 50.54622830800011 ], [ -119.142012169999973, 50.545571562000113 ], [ -119.142027317999961, 50.545534400000044 ], [ -119.141059496999944, 50.544750415000081 ], [ -119.141005438999983, 50.544712282000084 ], [ -119.140983411999926, 50.544699101000091 ], [ -119.140956804999931, 50.544685067000053 ], [ -119.140928169999938, 50.544672615000074 ], [ -119.140902284999981, 50.544663313000115 ], [ -119.140792877999957, 50.544664652000023 ], [ -119.140188198999951, 50.544667908000051 ], [ -119.140195590999937, 50.543003806000129 ], [ -119.142973843999926, 50.543060977000017 ], [ -119.14367531299996, 50.543075397000038 ], [ -119.143613313999964, 50.543481534000108 ], [ -119.144421784999977, 50.543531524000024 ], [ -119.144398625999912, 50.543683258000037 ], [ -119.144553291999941, 50.543692820000103 ], [ -119.14450485899998, 50.544010142000062 ], [ -119.144587013999981, 50.544015220000048 ], [ -119.144408310999921, 50.545185987000117 ], [ -119.144451, 50.545188626000019 ], [ -119.144371823999933, 50.545707322000062 ], [ -119.144975637999949, 50.545696196000016 ], [ -119.14497794499999, 50.545747021000068 ], [ -119.145158910999896, 50.54575820800013 ], [ -119.145142754999966, 50.545864068000121 ], [ -119.14528991399996, 50.545873165000032 ], [ -119.145635652999943, 50.543607766000058 ], [ -119.15125567, 50.543955036000071 ], [ -119.151124182, 50.544817326000015 ], [ -119.152998675, 50.54493308900004 ], [ -119.15245334299999, 50.548509953000064 ], [ -119.151621457999966, 50.548458583000077 ], [ -119.151154815999988, 50.551518479000094 ], [ -119.151169249999953, 50.551518213000101 ], [ -119.151181524, 50.551787817000033 ], [ -119.152027862999944, 50.551772175000103 ], [ -119.152040141999976, 50.552041780000067 ], [ -119.154507810999945, 50.551996133000074 ], [ -119.154579169999963, 50.551994812000054 ], [ -119.154604911999982, 50.552559283000093 ], [ -119.15579323499999, 50.552632624000083 ], [ -119.155795504999958, 50.55275137900005 ], [ -119.155703092999929, 50.554618415000085 ], [ -119.1576026799999, 50.554636700000039 ], [ -119.158434197999966, 50.553606488000078 ], [ -119.158653917999942, 50.553170503000139 ], [ -119.158703194999958, 50.553009756000115 ], [ -119.159335891999959, 50.550946991000053 ], [ -119.15971609399999, 50.550546205000025 ], [ -119.159881001999935, 50.550450807000061 ], [ -119.160081296999948, 50.550392704000089 ], [ -119.16026191199991, 50.550408402000102 ], [ -119.160435695999979, 50.550477794000109 ], [ -119.160612098999948, 50.550633095000087 ], [ -119.160840217999962, 50.550895303000082 ], [ -119.160924512999884, 50.551040495000073 ], [ -119.160972501999936, 50.551218516000048 ], [ -119.161025685999945, 50.551245823000073 ], [ -119.161127642999986, 50.551298200000133 ], [ -119.161181569999926, 50.551325915000092 ], [ -119.161240026999963, 50.551337652000029 ], [ -119.16128411699999, 50.551350679000038 ], [ -119.161313901999904, 50.551364836000062 ], [ -119.161330803999988, 50.551395759000044 ], [ -119.161362499999925, 50.551433933000055 ], [ -119.161382017999969, 50.551465770000057 ], [ -119.161428588999939, 50.551541850000092 ], [ -119.161471269999964, 50.55161431900008 ], [ -119.161478526999986, 50.551626721000105 ], [ -119.16152124599995, 50.551687447000027 ], [ -119.161527104999934, 50.55169585200013 ], [ -119.161560144999967, 50.551749743000109 ], [ -119.161569924999966, 50.551760753000103 ], [ -119.161607439999898, 50.551803054000075 ], [ -119.161640476999963, 50.551857001000101 ], [ -119.16167467, 50.551905668000082 ], [ -119.161705278999975, 50.551949158000106 ], [ -119.161721730999886, 50.551979389000081 ], [ -119.16176264399995, 50.552054362000064 ], [ -119.161806429999928, 50.55213463700008 ], [ -119.161854016999911, 50.552202324000042 ], [ -119.161871232999914, 50.552226792000098 ], [ -119.161886078999942, 50.552278258000044 ], [ -119.161891434999944, 50.552296952000056 ], [ -119.161919769999926, 50.552354287000128 ], [ -119.161925868999944, 50.552366628000044 ], [ -119.161942231999944, 50.552431629000147 ], [ -119.161947507999955, 50.552452448000039 ], [ -119.16197089399995, 50.552508356000011 ], [ -119.161983232999958, 50.552537827000087 ], [ -119.161994068999931, 50.552585632000088 ], [ -119.162006219999938, 50.552639305000106 ], [ -119.162017446999968, 50.552662821000119 ], [ -119.162053746999945, 50.552738571000049 ], [ -119.162058126999966, 50.552747777000043 ], [ -119.162096624999919, 50.552813172000107 ], [ -119.16210807, 50.552832647000088 ], [ -119.162133442999931, 50.552888772000095 ], [ -119.162143165999936, 50.552910198000063 ], [ -119.162169961999922, 50.552964516000046 ], [ -119.162177566999958, 50.552979884000095 ], [ -119.162225451999959, 50.553041093000154 ], [ -119.16227407, 50.553110214000121 ], [ -119.162332559999982, 50.553180662000081 ], [ -119.162450287999931, 50.553322473000087 ], [ -119.162464235999892, 50.553339287000021 ], [ -119.162500272000017, 50.553395543000072 ], [ -119.162513516999979, 50.553416283000061 ], [ -119.162540365999973, 50.553470614000084 ], [ -119.162547917999973, 50.553485970000082 ], [ -119.162552677999912, 50.553540774000055 ], [ -119.162571570999944, 50.553595265000098 ], [ -119.162574254999967, 50.553625761000077 ], [ -119.162577031999902, 50.553657876000059 ], [ -119.162591346999974, 50.553703447000103 ], [ -119.16259662799996, 50.553720174000134 ], [ -119.1626309, 50.553778506000064 ], [ -119.162646534999936, 50.553805055000055 ], [ -119.162679484999956, 50.553851926000092 ], [ -119.162695103999951, 50.553874105000048 ], [ -119.162734118999936, 50.553923953000044 ], [ -119.162742990999945, 50.553935315000075 ], [ -119.16280448699996, 50.553987842000062 ], [ -119.162851126999968, 50.554033221000068 ], [ -119.162884182999932, 50.554087192000019 ], [ -119.162915920000017, 50.554125354000128 ], [ -119.162932769999927, 50.554156265000124 ], [ -119.162973159999979, 50.554204859000059 ], [ -119.162996221999975, 50.554232624000072 ], [ -119.163014456, 50.554279241000074 ], [ -119.161904918999966, 50.55451791100009 ], [ -119.161907039999932, 50.55456097200004 ], [ -119.16124038599996, 50.554519868000071 ], [ -119.160993445999949, 50.556141240000024 ], [ -119.158980162999967, 50.556017083000036 ], [ -119.158916370999975, 50.556435786000087 ], [ -119.158585226999918, 50.556415361000106 ], [ -119.15831882499999, 50.558163751000052 ], [ -119.15862538, 50.55818265900011 ], [ -119.158549717999975, 50.558679219000027 ], [ -119.15885670599998, 50.55869815300008 ], [ -119.15882088699999, 50.558933238000115 ], [ -119.159122614999973, 50.558951847000067 ], [ -119.158635513999968, 50.562148622000095 ], [ -119.157108561999948, 50.562142360000074 ], [ -119.153856451999943, 50.561488181000044 ], [ -119.153882680999914, 50.561269330000066 ], [ -119.153980909999987, 50.560450214000078 ], [ -119.153984496999939, 50.560420308000054 ], [ -119.154041726999964, 50.559943119000081 ], [ -119.154195839999929, 50.558657749000126 ] ], [ [ -119.153642735999966, 50.553806551000108 ], [ -119.15366955599994, 50.553630639000112 ], [ -119.153383381999944, 50.553635934000042 ], [ -119.153390447999968, 50.553790977000105 ], [ -119.153642735999966, 50.553806551000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "1", "sL_AssetLoss": "327.8", "sL_BldgLoss": "327.8", "sL_StrLoss": "327.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CBE401851CA5DC0A05FA5CC97474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.161757318, 50.562124378000135 ], [ -119.16188966599999, 50.561255445 ], [ -119.159973131999905, 50.5611372850001 ], [ -119.160074170999906, 50.560474063000051 ], [ -119.159965876999948, 50.560467386000028 ], [ -119.160510756999926, 50.556890537000065 ], [ -119.162026372999946, 50.55698398400007 ], [ -119.162278257999944, 50.562097505000033 ], [ -119.161757318, 50.562124378000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "490103158", "BldgCostT": "308548126", "sL_LossRatio": "0.99354205309037", "sL_AssetLoss": "14718.3", "sL_BldgLoss": "14623.25", "sL_StrLoss": "14588.8", "sL_NStrLoss": "34.45", "sL_ContLoss": "95.05", "geom_point": "0101000020E610000005DF5E46EFC85DC07FBCA9AB2F464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.138607484999937, 50.551097104000085 ], [ -119.13862160399999, 50.550280200000081 ], [ -119.137917696999935, 50.550273690000019 ], [ -119.137598915999945, 50.550271096000102 ], [ -119.137203011999986, 50.550267132000045 ], [ -119.137061698999915, 50.550265710000076 ], [ -119.136815685, 50.550263253000018 ], [ -119.136632839999976, 50.550264523000045 ], [ -119.136538984999945, 50.550265187000029 ], [ -119.136186, 50.550267663000078 ], [ -119.136183835999958, 50.55026767400004 ], [ -119.135984886999921, 50.549886414000106 ], [ -119.135413210999928, 50.549716891000045 ], [ -119.135247101999965, 50.54948620800009 ], [ -119.135336702999965, 50.54926970500005 ], [ -119.134900898999916, 50.549007700000068 ], [ -119.134816605999944, 50.548702892000072 ], [ -119.135677714999957, 50.548084791000079 ], [ -119.135881322999978, 50.547799919000049 ], [ -119.135932933999968, 50.547727710000046 ], [ -119.136031733999943, 50.547589455000093 ], [ -119.136342386999956, 50.547154796000065 ], [ -119.136440673999957, 50.545182076000032 ], [ -119.136504314999982, 50.543904691000094 ], [ -119.13627696199994, 50.543201492000051 ], [ -119.136942383999937, 50.543200755000079 ], [ -119.137997207999916, 50.543199488000056 ], [ -119.140195590999937, 50.543003806000129 ], [ -119.140188198999951, 50.544667908000051 ], [ -119.140792877999957, 50.544664652000023 ], [ -119.140902284999981, 50.544663313000115 ], [ -119.140928169999938, 50.544672615000074 ], [ -119.140956804999931, 50.544685067000053 ], [ -119.140983411999926, 50.544699101000091 ], [ -119.141005438999983, 50.544712282000084 ], [ -119.141059496999944, 50.544750415000081 ], [ -119.142027317999961, 50.545534400000044 ], [ -119.142012169999973, 50.545571562000113 ], [ -119.141687297999979, 50.54622830800011 ], [ -119.14168721199999, 50.546252477000074 ], [ -119.141679575999916, 50.546944313000097 ], [ -119.141662621999942, 50.546957773000017 ], [ -119.14164195099994, 50.546961521000085 ], [ -119.141623431999932, 50.54696180300008 ], [ -119.14017018199992, 50.546967598000116 ], [ -119.140163876999964, 50.547826592000021 ], [ -119.141582920999923, 50.547837446000088 ], [ -119.142543270999951, 50.547844770000012 ], [ -119.14267859099995, 50.547845796000054 ], [ -119.142965190999931, 50.547872513000051 ], [ -119.142988756999927, 50.547872493000106 ], [ -119.142989320999931, 50.547896075000054 ], [ -119.142991147999979, 50.547984419000031 ], [ -119.142993050999962, 50.548072741000098 ], [ -119.14299491599995, 50.548161073000109 ], [ -119.142996800999953, 50.54824943000007 ], [ -119.142998703999965, 50.548337752000123 ], [ -119.143000568999952, 50.548426084 ], [ -119.143002450999958, 50.548514440000112 ], [ -119.143004352999952, 50.548602763000062 ], [ -119.143006219999961, 50.548691095000081 ], [ -119.142992158999988, 50.549479998000052 ], [ -119.142979998999948, 50.550302489000039 ], [ -119.144340798999977, 50.550308993000051 ], [ -119.144344390999905, 50.551130600000128 ], [ -119.144328395999977, 50.551951011000035 ], [ -119.14431111, 50.552779500000028 ], [ -119.142939697999935, 50.552777710000022 ], [ -119.140110887, 50.552769806000057 ], [ -119.138598746999961, 50.552751143000123 ], [ -119.13860190299999, 50.552150283000124 ], [ -119.138604872999963, 50.551592284000037 ], [ -119.138607484999937, 50.551097104000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176169939", "BldgCostT": "105339798", "sL_LossRatio": "0.992718109913872", "sL_AssetLoss": "11246.667971", "sL_BldgLoss": "11164.770971", "sL_StrLoss": "11124.770971", "sL_NStrLoss": "40", "sL_ContLoss": "81.897", "geom_point": "0101000020E6100000219C928384C85DC0236D4F351F474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.132217199999928, 50.553670499000113 ], [ -119.133977490999925, 50.552545750000057 ], [ -119.13400041599999, 50.552531095000099 ], [ -119.135234405999952, 50.552005589000025 ], [ -119.135830913999939, 50.551481508000101 ], [ -119.136204515999935, 50.550998702000093 ], [ -119.136225123999935, 50.550511899000064 ], [ -119.136231599999988, 50.550359191000098 ], [ -119.136183835999958, 50.55026767400004 ], [ -119.136186, 50.550267663000078 ], [ -119.136538984999945, 50.550265187000029 ], [ -119.136632839999976, 50.550264523000045 ], [ -119.136815685, 50.550263253000018 ], [ -119.137061698999915, 50.550265710000076 ], [ -119.137203011999986, 50.550267132000045 ], [ -119.137598915999945, 50.550271096000102 ], [ -119.137917696999935, 50.550273690000019 ], [ -119.13862160399999, 50.550280200000081 ], [ -119.138607484999937, 50.551097104000085 ], [ -119.138604872999963, 50.551592284000037 ], [ -119.13860190299999, 50.552150283000124 ], [ -119.138598746999961, 50.552751143000123 ], [ -119.13724422699994, 50.552753246000059 ], [ -119.137070099999931, 50.552753510000066 ], [ -119.136791052999953, 50.552753936000094 ], [ -119.135535225999959, 50.552741704000063 ], [ -119.134194730999951, 50.552728633000029 ], [ -119.134090213999968, 50.552762788000088 ], [ -119.13407884499999, 50.553501443000094 ], [ -119.134076414999953, 50.553660070000035 ], [ -119.13615943699989, 50.553675268000049 ], [ -119.137343930999947, 50.553684471000068 ], [ -119.138046910999918, 50.554672986000057 ], [ -119.137205215999955, 50.555278991000137 ], [ -119.136999708999923, 50.555351983000037 ], [ -119.136269812999956, 50.555366411000072 ], [ -119.13509892099999, 50.555350805000025 ], [ -119.13505680899999, 50.55625719799999 ], [ -119.135027306999959, 50.556804143000093 ], [ -119.135007327999944, 50.557174827000068 ], [ -119.135009382999911, 50.557891725000061 ], [ -119.135010499999922, 50.558267205000043 ], [ -119.135020730999912, 50.559017002000076 ], [ -119.134336343999905, 50.559009424000088 ], [ -119.1343082879999, 50.559009100000097 ], [ -119.131667168999968, 50.558990210000154 ], [ -119.131275505999938, 50.558987406000035 ], [ -119.130870787999982, 50.558989395000033 ], [ -119.129311791999967, 50.558988509000052 ], [ -119.127210809999937, 50.558996494000105 ], [ -119.127148193, 50.558996655000094 ], [ -119.126196297, 50.558999285000077 ], [ -119.125654320999928, 50.559009987000074 ], [ -119.125962780999942, 50.558705100000054 ], [ -119.126481724999962, 50.558276886000066 ], [ -119.127189903999948, 50.557692490000058 ], [ -119.127888091999949, 50.557202041000053 ], [ -119.128296589999962, 50.556915080000088 ], [ -119.129266390999931, 50.556233791000118 ], [ -119.129817401999901, 50.555846688000017 ], [ -119.130551307999966, 50.55511038300007 ], [ -119.131005594000015, 50.554654599000067 ], [ -119.131734939999944, 50.554062210000083 ], [ -119.132217199999928, 50.553670499000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197606055", "BldgCostT": "126587266", "sL_LossRatio": "0.993527110378001", "sL_AssetLoss": "16592.2804608", "sL_BldgLoss": "16484.8804608", "sL_StrLoss": "16446.0004608", "sL_NStrLoss": "38.88", "sL_ContLoss": "107.4", "geom_point": "0101000020E6100000619F7C51ADC85DC0E5569D0FAE474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.124334494999943, 50.563618589000015 ], [ -119.123831605999939, 50.562799695000059 ], [ -119.123752092999922, 50.562288402000071 ], [ -119.123873245, 50.561695940000099 ], [ -119.123924275999968, 50.561446298000078 ], [ -119.123984481999926, 50.561151891000065 ], [ -119.124580316, 50.560279512000072 ], [ -119.125017499999927, 50.559639407000084 ], [ -119.125303376999952, 50.559356857000054 ], [ -119.125459737999989, 50.559202316 ], [ -119.125654320999928, 50.559009987000074 ], [ -119.126196297, 50.558999285000077 ], [ -119.127148193, 50.558996655000094 ], [ -119.127210809999937, 50.558996494000105 ], [ -119.129311791999967, 50.558988509000052 ], [ -119.130870787999982, 50.558989395000033 ], [ -119.131275505999938, 50.558987406000035 ], [ -119.131667168999968, 50.558990210000154 ], [ -119.1343082879999, 50.559009100000097 ], [ -119.134336343999905, 50.559009424000088 ], [ -119.135020730999912, 50.559017002000076 ], [ -119.135010499999922, 50.558267205000043 ], [ -119.135009382999911, 50.557891725000061 ], [ -119.135007327999944, 50.557174827000068 ], [ -119.135027306999959, 50.556804143000093 ], [ -119.13505680899999, 50.55625719799999 ], [ -119.13509892099999, 50.555350805000025 ], [ -119.136269812999956, 50.555366411000072 ], [ -119.136999708999923, 50.555351983000037 ], [ -119.137205215999955, 50.555278991000137 ], [ -119.138046910999918, 50.554672986000057 ], [ -119.137343930999947, 50.553684471000068 ], [ -119.13615943699989, 50.553675268000049 ], [ -119.134076414999953, 50.553660070000035 ], [ -119.13407884499999, 50.553501443000094 ], [ -119.134090213999968, 50.552762788000088 ], [ -119.134194730999951, 50.552728633000029 ], [ -119.135535225999959, 50.552741704000063 ], [ -119.136791052999953, 50.552753936000094 ], [ -119.137070099999931, 50.552753510000066 ], [ -119.13724422699994, 50.552753246000059 ], [ -119.138598746999961, 50.552751143000123 ], [ -119.140110887, 50.552769806000057 ], [ -119.140096588999938, 50.553513608000081 ], [ -119.140104040999944, 50.554128230000074 ], [ -119.140104399999984, 50.554158490000077 ], [ -119.140182292999896, 50.554484691000035 ], [ -119.140345908999961, 50.554806208000109 ], [ -119.141293915999896, 50.556011192000078 ], [ -119.141377515999949, 50.556183290000064 ], [ -119.141438612999963, 50.556308995000123 ], [ -119.14152101399999, 50.556632696000079 ], [ -119.14148211, 50.557742432000055 ], [ -119.141540931999927, 50.557960832000035 ], [ -119.141549637999944, 50.557985451000036 ], [ -119.141598371999947, 50.55812325200008 ], [ -119.141716829999979, 50.558277559000075 ], [ -119.14228222, 50.559014268000034 ], [ -119.142785517000021, 50.559669959000111 ], [ -119.142366266999943, 50.559650887000096 ], [ -119.14326918799999, 50.560815992000116 ], [ -119.144152139999903, 50.561898839000079 ], [ -119.147114648999946, 50.56567040300007 ], [ -119.147075089999987, 50.565929534000063 ], [ -119.146936910999983, 50.565920998000067 ], [ -119.146346261999923, 50.565884510000096 ], [ -119.146309481999936, 50.56582329900008 ], [ -119.14569008499997, 50.565242205000104 ], [ -119.144684716999919, 50.564585701000084 ], [ -119.143964689999962, 50.56427519800004 ], [ -119.142873598000037, 50.563890588000028 ], [ -119.14092230599999, 50.56353029900005 ], [ -119.13954751699994, 50.563393595000043 ], [ -119.13766961599994, 50.563392195000091 ], [ -119.13745653299999, 50.563447414000116 ], [ -119.134546872999948, 50.563267375000073 ], [ -119.134546921999984, 50.563267057000111 ], [ -119.132082495999924, 50.563114508000112 ], [ -119.132083485999942, 50.563108037000106 ], [ -119.1318874899999, 50.563095903000033 ], [ -119.1318945099999, 50.56305001099999 ], [ -119.126610925999941, 50.562722757000088 ], [ -119.126614374999988, 50.562700223000036 ], [ -119.125912605999929, 50.562656738000044 ], [ -119.125941347999984, 50.562469027000084 ], [ -119.125775638999926, 50.562458758000112 ], [ -119.125734605000019, 50.562726746000045 ], [ -119.126219054999936, 50.56275676700001 ], [ -119.126162697, 50.563124849000047 ], [ -119.126429173999924, 50.563141361000099 ], [ -119.126159229999956, 50.564904376000086 ], [ -119.125597691999985, 50.564701005000096 ], [ -119.125000600999954, 50.564272293000037 ], [ -119.124334494999943, 50.563618589000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8822501", "BldgCostT": "5875001", "sL_LossRatio": "0.996225482486688", "sL_AssetLoss": "445.09", "sL_BldgLoss": "443.41", "sL_StrLoss": "442.8", "sL_NStrLoss": "0.61", "sL_ContLoss": "1.68", "geom_point": "0101000020E610000047BF4BE376C95DC0C13DE83CD7484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.148438681999934, 50.567703444000074 ], [ -119.148472794000014, 50.567479954000063 ], [ -119.149060591999941, 50.568510926000073 ], [ -119.149487653999955, 50.569502947000146 ], [ -119.149713745999918, 50.570110977000134 ], [ -119.149703695999904, 50.570112512000065 ], [ -119.149423980999956, 50.570155006000064 ], [ -119.145892943999968, 50.570221328000031 ], [ -119.145878726999953, 50.570221598000025 ], [ -119.146008814999945, 50.570101598000072 ], [ -119.146686415999952, 50.569171597999983 ], [ -119.146786674999987, 50.567601408000058 ], [ -119.148224874999954, 50.567690239000072 ], [ -119.148438681999934, 50.567703444000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "31.8", "sL_BldgLoss": "31.8", "sL_StrLoss": "31.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FEB8FDF209C55DC062D541DAD6464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.079316900999956, 50.553664788000091 ], [ -119.078661789999927, 50.553532402000066 ], [ -119.07836489799999, 50.553519508000093 ], [ -119.077810778999918, 50.553754492000103 ], [ -119.077316495999966, 50.553781614000059 ], [ -119.077046285, 50.553870908000086 ], [ -119.077199012999941, 50.552880328000093 ], [ -119.07984382399998, 50.553045398000059 ], [ -119.080240651999972, 50.553709132000037 ], [ -119.080524498999949, 50.554183918 ], [ -119.080555585999932, 50.554235897000048 ], [ -119.080487409999947, 50.554291506000062 ], [ -119.080133593999946, 50.554280103000067 ], [ -119.079316900999956, 50.553664788000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13254667", "BldgCostT": "8931667", "sL_LossRatio": "0.988281208003182", "sL_AssetLoss": "930.13", "sL_BldgLoss": "919.23", "sL_StrLoss": "915.3", "sL_NStrLoss": "3.93", "sL_ContLoss": "10.9", "geom_point": "0101000020E6100000399A9FF2DAC75DC03088C41497464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.126233586999945, 50.556862074000051 ], [ -119.12638975, 50.555841971000049 ], [ -119.125249027999956, 50.555771270000015 ], [ -119.125240353999914, 50.555770732000084 ], [ -119.125248127999924, 50.55571995000011 ], [ -119.125094034999933, 50.555710398000016 ], [ -119.125063850999965, 50.555708527000064 ], [ -119.12556999, 50.552402615000112 ], [ -119.123705853999965, 50.552287048000018 ], [ -119.123671114999937, 50.552513900000079 ], [ -119.122278406999953, 50.552427538000067 ], [ -119.122253258999976, 50.55259173100012 ], [ -119.116893436999973, 50.552259203000084 ], [ -119.116770845999937, 50.553058956000015 ], [ -119.112492251999981, 50.552793319000031 ], [ -119.111149956999952, 50.552709948000079 ], [ -119.111343576999957, 50.551447845000084 ], [ -119.111698618999981, 50.54913330600003 ], [ -119.114813444999925, 50.549326745000052 ], [ -119.114986242999947, 50.548199677000092 ], [ -119.115439599999931, 50.548165911000105 ], [ -119.115497824999963, 50.548141291000057 ], [ -119.120620275999968, 50.548459194000074 ], [ -119.120581607999924, 50.548711616 ], [ -119.121783765999979, 50.54878618700009 ], [ -119.121818509999969, 50.548559335000043 ], [ -119.123605836999914, 50.548670182000087 ], [ -119.12370355799996, 50.548031977000029 ], [ -119.126636850999972, 50.548213831000105 ], [ -119.126908503999971, 50.548631695000061 ], [ -119.12770958199999, 50.549211291000049 ], [ -119.128414494, 50.549494714000055 ], [ -119.128999915999884, 50.549645697000081 ], [ -119.130774910999889, 50.549873604000027 ], [ -119.13310565899999, 50.549855104000073 ], [ -119.133043398999959, 50.55026226300005 ], [ -119.132791987999965, 50.551906334000108 ], [ -119.133431324999961, 50.551945921000012 ], [ -119.133435915999911, 50.551915907000058 ], [ -119.133572117999947, 50.551924341000053 ], [ -119.133815090999988, 50.550335278000077 ], [ -119.133435422, 50.550311771000068 ], [ -119.133442061999972, 50.55026834100002 ], [ -119.133505129999918, 50.549855867000097 ], [ -119.134250509, 50.549936185000014 ], [ -119.134496994999949, 50.55008441400004 ], [ -119.134537958999957, 50.550279170000081 ], [ -119.134565255999931, 50.550408945000072 ], [ -119.134625187999973, 50.550693895000016 ], [ -119.134802780999962, 50.550906098000048 ], [ -119.134803601999977, 50.551247912000058 ], [ -119.134658513999938, 50.551467308000085 ], [ -119.134167, 50.551800501000102 ], [ -119.133235301999918, 50.552181623000074 ], [ -119.132349393999959, 50.552544003000087 ], [ -119.131113208999963, 50.55328601100009 ], [ -119.130635886, 50.553695419000057 ], [ -119.129794791000023, 50.55441681000012 ], [ -119.12940731299993, 50.554693806000081 ], [ -119.126945107999987, 50.556453889000075 ], [ -119.126710501000019, 50.55662158300008 ], [ -119.125869788999964, 50.557222513000077 ], [ -119.12553883399994, 50.557527221000065 ], [ -119.12540239399999, 50.557652842000032 ], [ -119.123287207999951, 50.557596764000074 ], [ -119.120862264, 50.55756769700006 ], [ -119.121019895999936, 50.55653883500009 ], [ -119.124201795000019, 50.556736137000101 ], [ -119.126233586999945, 50.556862074000051 ] ], [ [ -119.131741771999941, 50.552036535000113 ], [ -119.131753647999957, 50.551958889000097 ], [ -119.130351682999972, 50.551872055000096 ], [ -119.128804384999953, 50.551776198000063 ], [ -119.128776705999954, 50.551957085 ], [ -119.126989235999972, 50.55184632200006 ], [ -119.126933, 50.552213740000099 ], [ -119.129645473999958, 50.55238181100006 ], [ -119.131232370999925, 50.552480107000157 ], [ -119.131224602999936, 50.552530890000078 ], [ -119.131282253999984, 50.552534461000086 ], [ -119.131343193999925, 50.552136061000084 ], [ -119.131397797999938, 50.552139443000087 ], [ -119.131414496999952, 50.552030262000109 ], [ -119.131641666999911, 50.552044331000104 ], [ -119.131643786999959, 50.552030467000094 ], [ -119.131741771999941, 50.552036535000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "157.2", "sL_BldgLoss": "157.2", "sL_StrLoss": "157.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041983EE897CB5DC014FEF3D135444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.180203783999943, 50.535884695000092 ], [ -119.18050351, 50.533910217000034 ], [ -119.178316260999935, 50.533775646000073 ], [ -119.178859360999965, 50.530198591000051 ], [ -119.182239717999934, 50.530406550000158 ], [ -119.183292618999971, 50.530471302000144 ], [ -119.183284901999968, 50.530764628000099 ], [ -119.183272612999957, 50.531229662000094 ], [ -119.183217948999982, 50.533304118000061 ], [ -119.183306464999959, 50.536075511 ], [ -119.180203783999943, 50.535884695000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.5", "sL_BldgLoss": "51.5", "sL_StrLoss": "51.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB03C37FDBC75DC0BCACEC2F79454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.123472877999944, 50.542218396000102 ], [ -119.124646815999895, 50.542269690000104 ], [ -119.126152798999954, 50.542493302000018 ], [ -119.126631498999956, 50.542595064000047 ], [ -119.12489891499996, 50.542487644000111 ], [ -119.124811931999929, 50.543055896000098 ], [ -119.122899352999923, 50.542937286000026 ], [ -119.122891445, 50.542988940000072 ], [ -119.121466671999897, 50.542900560000106 ], [ -119.121351515999933, 50.543652474000105 ], [ -119.120022970999941, 50.543570045000081 ], [ -119.121104809999963, 50.542621503000106 ], [ -119.121616897999914, 50.542378014000093 ], [ -119.122091711999957, 50.54228819100004 ], [ -119.123472877999944, 50.542218396000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4956583", "BldgCostT": "3418333", "sL_LossRatio": "1", "sL_AssetLoss": "346.2", "sL_BldgLoss": "346.2", "sL_StrLoss": "346.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5A1EADB72C65DC0FC53CB52C2464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.10103763799998, 50.549940663000079 ], [ -119.106658101999969, 50.550290183000087 ], [ -119.106451987999961, 50.55163285400004 ], [ -119.106109024999981, 50.553866797000147 ], [ -119.105634126999945, 50.553837275000014 ], [ -119.105594615999962, 50.554094608000106 ], [ -119.100629490999921, 50.553785836000067 ], [ -119.100338274999928, 50.555681024000094 ], [ -119.094717188999979, 50.555331187000021 ], [ -119.09481183399997, 50.554715773000048 ], [ -119.095267186999962, 50.551754637000023 ], [ -119.10023205100002, 50.552063649000047 ], [ -119.100523246999899, 50.550168453000026 ], [ -119.100998102999952, 50.550197996000065 ], [ -119.10103763799998, 50.549940663000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "35", "sL_BldgLoss": "35", "sL_StrLoss": "35", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D8F1DAF9BC65DC09890492540474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.100691112999954, 50.556228255000065 ], [ -119.100778327999933, 50.555660672000066 ], [ -119.106399503999981, 50.556010203 ], [ -119.106330636999985, 50.556458742000096 ], [ -119.106598627999972, 50.556475398 ], [ -119.106454732999964, 50.55741262500004 ], [ -119.105777285999963, 50.557415317000036 ], [ -119.105600089999925, 50.557433792000033 ], [ -119.099979420999944, 50.557406565000122 ], [ -119.10016552499999, 50.556195559000045 ], [ -119.100691112999954, 50.556228255000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.2", "sL_BldgLoss": "47.2", "sL_StrLoss": "47.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F06392B201C75DC02CDF4CAFC1454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.109329398999961, 50.546768209000071 ], [ -119.109759058999956, 50.543967722000069 ], [ -119.10592602299991, 50.54372946200003 ], [ -119.106006910999895, 50.543659703000088 ], [ -119.106837200999948, 50.543293710000036 ], [ -119.107819086999925, 50.543159790000097 ], [ -119.108497110999934, 50.543201095000079 ], [ -119.109182989, 50.543377808000095 ], [ -119.109978885999979, 50.54381360600005 ], [ -119.11033568, 50.544202400000088 ], [ -119.110835299999934, 50.545623709000076 ], [ -119.111402297999973, 50.546612104000076 ], [ -119.111728662999965, 50.546917278000087 ], [ -119.109329398999961, 50.546768209000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "108.2", "sL_BldgLoss": "108.2", "sL_StrLoss": "108.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000044415B94FAC85DC0BD61B2231B404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.137909913999962, 50.499610509000092 ], [ -119.141662207999929, 50.499358505000089 ], [ -119.141633190999954, 50.499809312000124 ], [ -119.141636001999984, 50.499822180000123 ], [ -119.143138482999987, 50.499682974000095 ], [ -119.142942654999942, 50.500966984000087 ], [ -119.142371821999959, 50.50093164600009 ], [ -119.142156297999946, 50.502344599000061 ], [ -119.137854843999904, 50.502078217000111 ], [ -119.137860494999984, 50.501493990000029 ], [ -119.137881442999955, 50.500696502000068 ], [ -119.137899805999936, 50.499994817000079 ], [ -119.137909913999962, 50.499610509000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "1", "sL_AssetLoss": "52.2", "sL_BldgLoss": "52.2", "sL_StrLoss": "52.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBB3B8F717C85DC09A571A9D18454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.128113305999932, 50.541530586000121 ], [ -119.126647589999962, 50.541252801000063 ], [ -119.125501810999964, 50.541228586000024 ], [ -119.123265031999921, 50.541217790000076 ], [ -119.123077632, 50.540022208000025 ], [ -119.123524864, 50.539313201000027 ], [ -119.123586164999949, 50.539202150000058 ], [ -119.1236369, 50.539122174000035 ], [ -119.124064695999905, 50.53846826300007 ], [ -119.124537294999953, 50.538023897000095 ], [ -119.129402768999981, 50.538325530000115 ], [ -119.129276913999931, 50.539148345000122 ], [ -119.129546119999986, 50.539165028000063 ], [ -119.129368920999951, 50.540323513000011 ], [ -119.129124572999942, 50.541920915000034 ], [ -119.129089907999941, 50.541899401000066 ], [ -119.128113305999932, 50.541530586000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "115.2", "sL_BldgLoss": "115.2", "sL_StrLoss": "115.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000383DDE9AEAC45DC007EEFE8020474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.074528563999962, 50.556158126000071 ], [ -119.074320873999966, 50.555492779000083 ], [ -119.069881452999979, 50.555437866000034 ], [ -119.069414164999927, 50.554341095000076 ], [ -119.069442310999989, 50.554158753000088 ], [ -119.069760402999989, 50.553708992000082 ], [ -119.070964298999925, 50.554083492000061 ], [ -119.072655404999935, 50.554035083000024 ], [ -119.07431810199995, 50.554302905000085 ], [ -119.075078789999907, 50.554407847000043 ], [ -119.074916617999989, 50.555459322000068 ], [ -119.075111926999966, 50.555471517000122 ], [ -119.075119658999895, 50.555421387000109 ], [ -119.076791129999933, 50.555525741000061 ], [ -119.076834560999927, 50.555244070000121 ], [ -119.076987177999968, 50.555262794000043 ], [ -119.077376683999944, 50.55513028900009 ], [ -119.077887106999981, 50.554868287000048 ], [ -119.079033609999954, 50.554596193000116 ], [ -119.079343724999958, 50.554573506000082 ], [ -119.080996403999976, 50.554597704000074 ], [ -119.081563809999977, 50.554694491000056 ], [ -119.082591366, 50.554712917000074 ], [ -119.082487923, 50.5553843530001 ], [ -119.082268651999982, 50.556807533000033 ], [ -119.08165319299999, 50.556769143000075 ], [ -119.081569585999887, 50.557311715000068 ], [ -119.081422368999981, 50.557310987000086 ], [ -119.078928614999953, 50.557298696000018 ], [ -119.078506541999971, 50.557296631000071 ], [ -119.074788079999934, 50.557304019000114 ], [ -119.074528563999962, 50.556158126000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "157.2", "sL_BldgLoss": "157.2", "sL_StrLoss": "157.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E8421599DC55DC057BD70A526474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.083057152999942, 50.557319023000105 ], [ -119.083091738999897, 50.557094528000079 ], [ -119.082649537999927, 50.557066949000109 ], [ -119.08291024099999, 50.555374760000085 ], [ -119.083021638000019, 50.554651652000125 ], [ -119.08350340599992, 50.554480892000065 ], [ -119.084430812999955, 50.553717506000069 ], [ -119.084500052999957, 50.553571510000019 ], [ -119.088821282999945, 50.553840886000067 ], [ -119.088773517999954, 50.55415122100009 ], [ -119.089215692999957, 50.554178776000128 ], [ -119.08904928799997, 50.555259923000023 ], [ -119.089010150999968, 50.55551420200009 ], [ -119.093564766999961, 50.555797922000046 ], [ -119.094621613999948, 50.555863729000087 ], [ -119.094388958999957, 50.55737643900008 ], [ -119.092566265999935, 50.557365172000068 ], [ -119.089393432999913, 50.557349903000024 ], [ -119.083070926999966, 50.557319091000103 ], [ -119.083057152999942, 50.557319023000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.5", "sL_BldgLoss": "43.5", "sL_StrLoss": "43.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9657262B6CB5DC0048950193D404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.182836841999986, 50.500001003000087 ], [ -119.183456360999941, 50.500000444000079 ], [ -119.18345293599999, 50.503432100000026 ], [ -119.182327082, 50.503362817000067 ], [ -119.182836841999986, 50.500001003000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.8", "sL_BldgLoss": "43.8", "sL_StrLoss": "43.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082A3CB3859C85DC01432E3AF41464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.127700781, 50.548097167000044 ], [ -119.133321219999956, 50.548445341000075 ], [ -119.133144858999941, 50.549598742000022 ], [ -119.131756496999955, 50.549704108000107 ], [ -119.130710205999947, 50.54965988900009 ], [ -119.128774387999968, 50.549326688000093 ], [ -119.128072584999984, 50.549095900000097 ], [ -119.127291717999981, 50.548678697000078 ], [ -119.127007593999977, 50.548324009000027 ], [ -119.12701415799998, 50.548237217000057 ], [ -119.127673100999914, 50.548278056000086 ], [ -119.127700781, 50.548097167000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.3", "sL_BldgLoss": "42.3", "sL_StrLoss": "42.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E2090323FC85DC0925519DF7A424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.126341478, 50.519441334000113 ], [ -119.126398883999954, 50.519066016000053 ], [ -119.12603149499995, 50.519043227000068 ], [ -119.126059325999975, 50.518861268000073 ], [ -119.1295539799999, 50.519249281000093 ], [ -119.129564637999977, 50.519217977000025 ], [ -119.132003816999969, 50.519491992000084 ], [ -119.131958334999936, 50.519789588000066 ], [ -119.126341478, 50.519441334000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.1", "sL_BldgLoss": "36.1", "sL_StrLoss": "36.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EADF814320C95DC0046F0EF878424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.142980453999982, 50.52036866200006 ], [ -119.142956026999912, 50.519829444000045 ], [ -119.141264479999933, 50.519860580000071 ], [ -119.141252275999989, 50.519590971000071 ], [ -119.140829389999965, 50.519598751000039 ], [ -119.140792785999963, 50.518789924000032 ], [ -119.141215663999944, 50.518782145000088 ], [ -119.141203460999918, 50.518512535000077 ], [ -119.143740708999985, 50.51846582700005 ], [ -119.143789580000018, 50.519544260000053 ], [ -119.144212463999963, 50.51953647000007 ], [ -119.144249126999981, 50.520345295000062 ], [ -119.142980453999982, 50.52036866200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22955166", "BldgCostT": "15621666", "sL_LossRatio": "0.997186011425472", "sL_AssetLoss": "1179.82", "sL_BldgLoss": "1176.5", "sL_StrLoss": "1175.3", "sL_NStrLoss": "1.2", "sL_ContLoss": "3.32", "geom_point": "0101000020E6100000D75B77B1F8C85DC07F89F4B258444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.135469117999946, 50.543304905000078 ], [ -119.135478850999917, 50.54324122600012 ], [ -119.134280140999962, 50.543167008000111 ], [ -119.134355137999961, 50.542676373000063 ], [ -119.134307274999941, 50.542673409000024 ], [ -119.134344093999943, 50.542432542000064 ], [ -119.12977924899999, 50.542149785000078 ], [ -119.130059097999961, 50.540320132000062 ], [ -119.130326302999933, 50.538573005000075 ], [ -119.132502638999966, 50.538707836000093 ], [ -119.132520705999966, 50.538589655000095 ], [ -119.133902711999909, 50.538675253000051 ], [ -119.134292567999935, 50.536124589000046 ], [ -119.13466895099999, 50.536147899000071 ], [ -119.134687855999957, 50.536024198000064 ], [ -119.136548874999932, 50.53613943000007 ], [ -119.136992011999908, 50.533238843000021 ], [ -119.137210956999979, 50.533252398000087 ], [ -119.137226607999963, 50.533149949000084 ], [ -119.137999672999968, 50.533197805000093 ], [ -119.140361205999966, 50.533343962000096 ], [ -119.140674760999957, 50.531290324000075 ], [ -119.140740518999948, 50.531294393000081 ], [ -119.140986971999922, 50.529680095000067 ], [ -119.138877835999921, 50.529549562000049 ], [ -119.13896785599999, 50.52896006600011 ], [ -119.137712138999959, 50.528882331000055 ], [ -119.138054457999957, 50.526640938000099 ], [ -119.136861208999946, 50.526567056000125 ], [ -119.135540626999969, 50.526485276000059 ], [ -119.136087033999971, 50.522908399000073 ], [ -119.136109236999957, 50.522909774000055 ], [ -119.136179954999989, 50.522446799000143 ], [ -119.136805790000025, 50.522485558000064 ], [ -119.136894454999947, 50.521905015000129 ], [ -119.137158663999983, 50.521921376000066 ], [ -119.13716574399993, 50.52187502000006 ], [ -119.13824799399994, 50.521942034000112 ], [ -119.142782986999961, 50.52222272700002 ], [ -119.142274604999926, 50.525554026000144 ], [ -119.143876081999963, 50.52565310400005 ], [ -119.143786131999917, 50.526242606000046 ], [ -119.145041786999911, 50.526320273000124 ], [ -119.144629137999971, 50.529024928000084 ], [ -119.144618630999915, 50.529093792000062 ], [ -119.144799885999959, 50.529105002000051 ], [ -119.148532466999924, 50.52933578200004 ], [ -119.148493753999972, 50.529589649000094 ], [ -119.149938540999969, 50.529678943000057 ], [ -119.149895609999987, 50.529960522000117 ], [ -119.149665452999926, 50.531470052 ], [ -119.149436209999962, 50.532973478000052 ], [ -119.149427849999952, 50.533028303000037 ], [ -119.149393150999941, 50.533255859000107 ], [ -119.149094355, 50.533237394000082 ], [ -119.148255107999944, 50.533185525000064 ], [ -119.148170226000019, 50.533742085000078 ], [ -119.147730212999988, 50.533714888000077 ], [ -119.147648402999977, 50.534251250000096 ], [ -119.147430102999934, 50.535682399000116 ], [ -119.147353669, 50.535677674000041 ], [ -119.14731121199999, 50.535956 ], [ -119.14632689699998, 50.535895152000059 ], [ -119.146320766999963, 50.535935323000025 ], [ -119.144526867999957, 50.535824405 ], [ -119.144197290999969, 50.53798396600012 ], [ -119.14357318799992, 50.537945371000035 ], [ -119.14342131099994, 50.538940382000092 ], [ -119.142808177999953, 50.538902462000088 ], [ -119.142717111999929, 50.539498997000031 ], [ -119.142357357999984, 50.539476745000073 ], [ -119.142356294999928, 50.539483705000109 ], [ -119.142124371999955, 50.539469360000062 ], [ -119.142111189, 50.539555710000094 ], [ -119.141536118999952, 50.539520137000174 ], [ -119.14139590799995, 50.540438425000033 ], [ -119.140379469999971, 50.540375542000014 ], [ -119.140240915999982, 50.541282788000039 ], [ -119.143665973999973, 50.541494641000043 ], [ -119.143519821999973, 50.542452086000026 ], [ -119.143564442999931, 50.542454845000137 ], [ -119.143505091999941, 50.542843647000026 ], [ -119.143708764999957, 50.542856242 ], [ -119.14367531299996, 50.543075397000038 ], [ -119.142973843999926, 50.543060977000017 ], [ -119.140195590999937, 50.543003806000129 ], [ -119.137997207999916, 50.543199488000056 ], [ -119.136942383999937, 50.543200755000079 ], [ -119.13627696199994, 50.543201492000051 ], [ -119.13620960499999, 50.542993184000117 ], [ -119.135800483999972, 50.542370796000078 ], [ -119.134495490999896, 50.541603193000071 ], [ -119.133399211999944, 50.541398102000088 ], [ -119.133102915, 50.541395300000019 ], [ -119.132955283999976, 50.541531991000035 ], [ -119.132939373999989, 50.54182109300006 ], [ -119.133591596999935, 50.541889510000054 ], [ -119.135036196999948, 50.542627198000091 ], [ -119.135625608999959, 50.543201195000087 ], [ -119.135742095999959, 50.543558592000039 ], [ -119.135872788999933, 50.54458259800009 ], [ -119.135597396999984, 50.545657907000077 ], [ -119.135510197999935, 50.547170393000052 ], [ -119.13521330599994, 50.54777860700014 ], [ -119.134688613999984, 50.548363890000083 ], [ -119.134271908999892, 50.54756210900009 ], [ -119.133930196999955, 50.547075713000019 ], [ -119.133982283999941, 50.546735008000027 ], [ -119.13429001599998, 50.546754062000069 ], [ -119.134780727999924, 50.54354391800004 ], [ -119.134951890999957, 50.543554516 ], [ -119.134994534999947, 50.543275522000073 ], [ -119.135469117999946, 50.543304905000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11715719", "BldgCostT": "7265412", "sL_LossRatio": "1", "sL_AssetLoss": "614", "sL_BldgLoss": "614", "sL_StrLoss": "614", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C253C8957ACB5DC0CA49CDC32E434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.178871978999922, 50.529399071000043 ], [ -119.178903656000017, 50.529190409000066 ], [ -119.178829891999968, 50.529185870000035 ], [ -119.178882630999937, 50.528838480000083 ], [ -119.17884966499993, 50.528836451000117 ], [ -119.174582082999919, 50.528573754000107 ], [ -119.174860629999941, 50.52673999800006 ], [ -119.174678112000024, 50.526728760000054 ], [ -119.174696848999943, 50.526605409000069 ], [ -119.174025098999934, 50.526564042000089 ], [ -119.174568453999939, 50.522986977000116 ], [ -119.174660280999916, 50.522992632000104 ], [ -119.174729471999925, 50.522537079000102 ], [ -119.175120243999956, 50.52256114400015 ], [ -119.175172069999974, 50.522219889000048 ], [ -119.175776850999981, 50.522257130000078 ], [ -119.175880875999937, 50.521572104000079 ], [ -119.178577106999924, 50.521738089000031 ], [ -119.178902356999942, 50.519595268000018 ], [ -119.183436523999916, 50.519874251000076 ], [ -119.183432355999969, 50.524050584000065 ], [ -119.183413161999923, 50.525343080000042 ], [ -119.183377712999942, 50.527731564000121 ], [ -119.183371708999942, 50.52781477000012 ], [ -119.183313875999957, 50.529663130000166 ], [ -119.183313634999962, 50.529672303000126 ], [ -119.182290673999958, 50.52960939000009 ], [ -119.178871978999922, 50.529399071000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "126.8", "sL_BldgLoss": "126.8", "sL_StrLoss": "126.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C4592495BCA5DC068F561FF6D454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.158403732, 50.543351357000127 ], [ -119.158743421999972, 50.541121159000021 ], [ -119.164363230999939, 50.541467768000061 ], [ -119.164237264999926, 50.54229548000005 ], [ -119.165908938999934, 50.542398526000071 ], [ -119.165839154999958, 50.542857178000133 ], [ -119.165861071999956, 50.542858528000068 ], [ -119.165769515999912, 50.543460251000056 ], [ -119.165729363999958, 50.543459666000089 ], [ -119.157342235999977, 50.54333702900005 ], [ -119.157349959999948, 50.543286332000015 ], [ -119.158403732, 50.543351357000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039AE0CCB9BC75DC001EE606194454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.120746776999937, 50.542205591000027 ], [ -119.121520191999963, 50.542118708000032 ], [ -119.121413306999926, 50.542265406000062 ], [ -119.12081918799997, 50.542554610000138 ], [ -119.119693705999964, 50.543549614000078 ], [ -119.119308591999982, 50.543525717000108 ], [ -119.119192273999928, 50.544284966000092 ], [ -119.118759906999941, 50.544769201000079 ], [ -119.117704292999946, 50.545148012000062 ], [ -119.117294996999959, 50.544219508000069 ], [ -119.117414389999965, 50.543749498000054 ], [ -119.117889213999931, 50.543327891000096 ], [ -119.119280601999918, 50.542574505000097 ], [ -119.120746776999937, 50.542205591000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "73.1", "sL_BldgLoss": "73.1", "sL_StrLoss": "73.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007A260BCAFAC85DC05084BB50CC3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.136905921, 50.4996098680001 ], [ -119.13708756799997, 50.498419862000098 ], [ -119.13765836499999, 50.498455228000068 ], [ -119.137874009999976, 50.497042277000091 ], [ -119.137974487999912, 50.497048502000034 ], [ -119.143488165999884, 50.497389958000099 ], [ -119.143138482999987, 50.499682974000095 ], [ -119.141636001999984, 50.499822180000123 ], [ -119.141633190999954, 50.499809312000124 ], [ -119.141662207999929, 50.499358505000089 ], [ -119.137909913999962, 50.499610509000092 ], [ -119.136905921, 50.4996098680001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "176481891", "BldgCostT": "122101975", "sL_LossRatio": "0.997850879787285", "sL_AssetLoss": "3550.29", "sL_BldgLoss": "3542.66", "sL_StrLoss": "3539.9", "sL_NStrLoss": "2.76", "sL_ContLoss": "7.63", "geom_point": "0101000020E6100000A245093C68C95DC00F55E707643B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.134220216999921, 50.479547854000081 ], [ -119.134386778999954, 50.478456585000089 ], [ -119.132624432999989, 50.478347281000083 ], [ -119.130858753999959, 50.47823774200009 ], [ -119.131404947999911, 50.474660675000074 ], [ -119.134398902999962, 50.474846398000125 ], [ -119.134549354999976, 50.473860545000029 ], [ -119.137257405999932, 50.474028462000092 ], [ -119.137877632999974, 50.474066910000083 ], [ -119.139638326999915, 50.474176039000021 ], [ -119.139822636999909, 50.472967371000088 ], [ -119.138098429999928, 50.472860504000025 ], [ -119.134939879999976, 50.472664665000117 ], [ -119.135063661999979, 50.471853465000095 ], [ -119.133376586999944, 50.471748824000045 ], [ -119.133396408999928, 50.471618946000085 ], [ -119.132038252999934, 50.471534688000077 ], [ -119.132191651999932, 50.470529797000047 ], [ -119.132584272999964, 50.467957586000097 ], [ -119.13540888799993, 50.468132803000117 ], [ -119.135449571, 50.467866150000049 ], [ -119.131784608999936, 50.467638788000023 ], [ -119.132330601, 50.464061671000088 ], [ -119.137647370999957, 50.464391465000077 ], [ -119.137769291999959, 50.463591993000058 ], [ -119.142775950999976, 50.463902314000102 ], [ -119.142802553999928, 50.463727733000013 ], [ -119.141502328999962, 50.463647165000111 ], [ -119.142047503999933, 50.460069982000036 ], [ -119.143133574999979, 50.460137281000108 ], [ -119.14340404099994, 50.458362109000106 ], [ -119.146672820999953, 50.458564597000056 ], [ -119.146834101999929, 50.457505471000076 ], [ -119.145715603999946, 50.45743619500012 ], [ -119.145858463999986, 50.45649815300002 ], [ -119.144029882, 50.456384873000083 ], [ -119.146239998999988, 50.456401244000084 ], [ -119.148213865999949, 50.456415814000074 ], [ -119.149269303999958, 50.456423587000046 ], [ -119.149363232999946, 50.452991152000031 ], [ -119.149687080999982, 50.453011202000027 ], [ -119.150031579999933, 50.450747541000077 ], [ -119.150111113999955, 50.450752466000104 ], [ -119.15013485299994, 50.450596471000082 ], [ -119.149429944999966, 50.450552827000124 ], [ -119.149472490999926, 50.44899759500003 ], [ -119.154948621999949, 50.448976728000069 ], [ -119.156270000999939, 50.448971638000103 ], [ -119.156835277999946, 50.448969468000037 ], [ -119.16075158799994, 50.448954299000057 ], [ -119.162051714999947, 50.45118400300008 ], [ -119.162541903999937, 50.451814606000049 ], [ -119.162628233999953, 50.45198837600006 ], [ -119.162633994999965, 50.452000012000028 ], [ -119.162593288999915, 50.452314294000047 ], [ -119.162868515999946, 50.45234759700007 ], [ -119.162898766999945, 50.452364545000123 ], [ -119.163096789999955, 50.452475383 ], [ -119.16362947599994, 50.453108570000069 ], [ -119.1643137, 50.453921814000104 ], [ -119.164413385999964, 50.454011116000068 ], [ -119.164868207999959, 50.454558205000055 ], [ -119.165290903999974, 50.455008580000055 ], [ -119.166520413999947, 50.45458096700002 ], [ -119.166869089999949, 50.454459664000076 ], [ -119.168351034999958, 50.453944199000063 ], [ -119.170117520999909, 50.453329705000122 ], [ -119.170213713999942, 50.4535525410001 ], [ -119.170213789999963, 50.453552775000055 ], [ -119.170321702999942, 50.453802690000025 ], [ -119.170847243999901, 50.454618989000046 ], [ -119.170433268999915, 50.454593439000107 ], [ -119.17008705799999, 50.456874971000055 ], [ -119.168706421999929, 50.456789748000034 ], [ -119.168614325999968, 50.457396504 ], [ -119.1648805949999, 50.457165944000039 ], [ -119.164852158, 50.457353189000052 ], [ -119.163866984000023, 50.457292333000041 ], [ -119.163786937999973, 50.457819313000073 ], [ -119.15924134, 50.457538407000072 ], [ -119.158966014999947, 50.459349719000087 ], [ -119.157860437999886, 50.459281369000131 ], [ -119.157832771999949, 50.459463344000056 ], [ -119.157637836999953, 50.459451292000018 ], [ -119.15734945599999, 50.46134795100005 ], [ -119.155377707999932, 50.461226020000069 ], [ -119.155274297999966, 50.461905897000122 ], [ -119.149664463999969, 50.461558796000077 ], [ -119.149755100999954, 50.46096337700002 ], [ -119.149257691999978, 50.460932587000052 ], [ -119.149275015999976, 50.460818786000104 ], [ -119.148718828999932, 50.460784354000047 ], [ -119.148697761999941, 50.460783050000046 ], [ -119.148696370999971, 50.460792188000021 ], [ -119.148635745999954, 50.461190385000087 ], [ -119.148849803999966, 50.461203637000082 ], [ -119.14830515599995, 50.464780849000107 ], [ -119.143639524999969, 50.464491913000096 ], [ -119.143298363, 50.464470778000106 ], [ -119.143191835999929, 50.465169853000127 ], [ -119.14283417199999, 50.46751686700005 ], [ -119.141688721999984, 50.467445897000104 ], [ -119.141181949999961, 50.467414494000067 ], [ -119.141023659999945, 50.468452873000103 ], [ -119.14094737, 50.468953317000093 ], [ -119.143358539999937, 50.469102706000108 ], [ -119.143076787000012, 50.470951476000025 ], [ -119.148315610999944, 50.471275872000064 ], [ -119.147770797999954, 50.474853037000123 ], [ -119.145223491999957, 50.474695336000089 ], [ -119.144890486999913, 50.476880698000087 ], [ -119.139801173999928, 50.476565445000105 ], [ -119.139653201999977, 50.477535732000078 ], [ -119.140187029999979, 50.47756881100004 ], [ -119.139641497999904, 50.481145907000048 ], [ -119.139001032999943, 50.48110622100009 ], [ -119.138646083999987, 50.48343312300009 ], [ -119.13782506099993, 50.48338224400009 ], [ -119.133033701999949, 50.483085192000068 ], [ -119.133579781999927, 50.479508136000128 ], [ -119.134220216999921, 50.479547854000081 ] ], [ [ -119.142371568, 50.473113788000049 ], [ -119.14244122499997, 50.472656802000067 ], [ -119.14062239499999, 50.472544113000033 ], [ -119.140552719999931, 50.473001097000079 ], [ -119.142371568, 50.473113788000049 ] ], [ [ -119.158446, 50.455706667000094 ], [ -119.158721324999959, 50.45389534800011 ], [ -119.159706418999932, 50.453956250000054 ], [ -119.159781977999899, 50.453459066000065 ], [ -119.158507510999968, 50.453380272000068 ], [ -119.158156601999977, 50.45568877300007 ], [ -119.158446, 50.455706667000094 ] ], [ [ -119.152577482999902, 50.454772238000047 ], [ -119.15261609, 50.454518478000075 ], [ -119.151829122999956, 50.454469775000099 ], [ -119.15179051299998, 50.454723536000103 ], [ -119.152577482999902, 50.454772238000047 ] ], [ [ -119.157256338999957, 50.452606774000074 ], [ -119.157472201999894, 50.451186805000134 ], [ -119.155722795, 50.451078602000102 ], [ -119.155667627999946, 50.451441413000026 ], [ -119.155588091, 50.451436493000116 ], [ -119.155427338999957, 50.452493647000082 ], [ -119.157256338999957, 50.452606774000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "117", "sL_BldgLoss": "117", "sL_StrLoss": "117", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004F1BBC4C20C95DC0F0A7C64BB73D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.140063060999978, 50.480193886000109 ], [ -119.145675136999941, 50.480541464000119 ], [ -119.145481145999938, 50.481814484000047 ], [ -119.145130003999967, 50.484118575000061 ], [ -119.14397013599995, 50.484046764000034 ], [ -119.139517485999974, 50.483770970000123 ], [ -119.140063060999978, 50.480193886000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16380917", "BldgCostT": "10561667", "sL_LossRatio": "1", "sL_AssetLoss": "1219.6", "sL_BldgLoss": "1219.6", "sL_StrLoss": "1219.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000401836D2EBCB5DC06FA9BD6728404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194630435999926, 50.51195764200002 ], [ -119.194658478999941, 50.511772422000028 ], [ -119.194175034999958, 50.511742729000083 ], [ -119.194251850999976, 50.511235376000101 ], [ -119.193793457999973, 50.511207220000045 ], [ -119.19395464499992, 50.51014264700008 ], [ -119.193219810999935, 50.510097506000072 ], [ -119.193446877, 50.508597923000075 ], [ -119.192772601999948, 50.508556497000043 ], [ -119.192966107999922, 50.507278580000062 ], [ -119.192661456999957, 50.507259862000083 ], [ -119.192333879999964, 50.509423036000072 ], [ -119.192102945999963, 50.509408847000067 ], [ -119.19208377299995, 50.509535442000107 ], [ -119.18646773199994, 50.50919022100009 ], [ -119.187009889999956, 50.505613019000087 ], [ -119.187240801999963, 50.505627219000068 ], [ -119.187259985999958, 50.505500624000085 ], [ -119.191463002999953, 50.505759005000044 ], [ -119.191613940999986, 50.504762350000085 ], [ -119.189646455999977, 50.504641418000119 ], [ -119.190188306999985, 50.501064181000054 ], [ -119.191293995999899, 50.501132146000018 ], [ -119.191378255999965, 50.500575723000111 ], [ -119.188877315999946, 50.500421977000066 ], [ -119.188439964999986, 50.503308840000059 ], [ -119.188006919999964, 50.503282212000066 ], [ -119.18794236599993, 50.503708250000024 ], [ -119.18345293599999, 50.503432100000026 ], [ -119.183456360999941, 50.500000444000079 ], [ -119.182836841999986, 50.500001003000087 ], [ -119.182869497999889, 50.499785610000103 ], [ -119.183302507999969, 50.499812258000119 ], [ -119.183361464999962, 50.499423382000018 ], [ -119.178241925999956, 50.499108214000024 ], [ -119.178362750999952, 50.498311822000076 ], [ -119.174844972999949, 50.498095122000095 ], [ -119.175387919999935, 50.494517927000039 ], [ -119.177808490999908, 50.494667051000128 ], [ -119.178160993999938, 50.492343458000079 ], [ -119.179226338999968, 50.492339987000037 ], [ -119.181362897999975, 50.492332999000077 ], [ -119.181792146999967, 50.492324411 ], [ -119.182802195999926, 50.492304201000081 ], [ -119.183112385999962, 50.492332407000049 ], [ -119.183247630999972, 50.492403000000124 ], [ -119.183414011999929, 50.492725502000042 ], [ -119.183437705999935, 50.492943592000067 ], [ -119.183397489999962, 50.495453409000092 ], [ -119.183395000999894, 50.495608302000079 ], [ -119.183397566999972, 50.495625336000046 ], [ -119.183493768999966, 50.496264293000067 ], [ -119.183591810999957, 50.496487001000084 ], [ -119.184186015999899, 50.497281075000053 ], [ -119.183862281999964, 50.499416692000061 ], [ -119.186015248999965, 50.499549151000068 ], [ -119.186017736999958, 50.499532739000045 ], [ -119.189259598999953, 50.499539795000082 ], [ -119.194749103000021, 50.499551493000062 ], [ -119.194742087999884, 50.499999011000121 ], [ -119.194729391999914, 50.500808545000105 ], [ -119.194721631999982, 50.501303329000024 ], [ -119.194692797999949, 50.503143193000064 ], [ -119.194636206999945, 50.503358204000087 ], [ -119.194467413999945, 50.503537392000112 ], [ -119.193475593999921, 50.503977414000133 ], [ -119.19318499399999, 50.504193299000107 ], [ -119.192870691999985, 50.504556706000102 ], [ -119.192769987999966, 50.504809605000084 ], [ -119.192722609999947, 50.505235395000057 ], [ -119.192786384000016, 50.505749309000116 ], [ -119.193057287999963, 50.506206512000126 ], [ -119.193261596999918, 50.50640128900006 ], [ -119.193360019999929, 50.506466852000074 ], [ -119.193634892999938, 50.506649904000071 ], [ -119.193996386999956, 50.506849465000123 ], [ -119.194416893999971, 50.507081616000058 ], [ -119.194866522999973, 50.507294205000079 ], [ -119.195220404999972, 50.507408996 ], [ -119.195379895999949, 50.507497287000071 ], [ -119.19568040799993, 50.507786490000029 ], [ -119.195732415999927, 50.508023497000138 ], [ -119.195766771999971, 50.508352686000137 ], [ -119.195818292999917, 50.508846388000059 ], [ -119.195864303999926, 50.509287096000023 ], [ -119.195792118999961, 50.509963491000043 ], [ -119.195729003999986, 50.510555101000108 ], [ -119.195728263999982, 50.510970745000066 ], [ -119.19572635499999, 50.512024946000132 ], [ -119.194630435999926, 50.51195764200002 ] ], [ [ -119.183288488999935, 50.495808288000092 ], [ -119.183305472999933, 50.49569624800003 ], [ -119.180898268999925, 50.495548072000112 ], [ -119.18088128, 50.495660111000099 ], [ -119.183288488999935, 50.495808288000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "137.1", "sL_BldgLoss": "137.1", "sL_StrLoss": "137.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008B6213147C85DC0E737E9098D3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.131696351999935, 50.47920707 ], [ -119.132424323999913, 50.479252229000075 ], [ -119.131878154, 50.482829280000033 ], [ -119.129185031999953, 50.482662191000017 ], [ -119.126265899999964, 50.482481006000107 ], [ -119.126812508999976, 50.478903981000023 ], [ -119.131696351999935, 50.47920707 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6001250", "BldgCostT": "3875000", "sL_LossRatio": "1", "sL_AssetLoss": "675", "sL_BldgLoss": "675", "sL_StrLoss": "675", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079BE8F389EC95DC071700AA75C3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.147010412999961, 50.499021948000092 ], [ -119.14712248, 50.498286684000057 ], [ -119.146987762999942, 50.498278349000024 ], [ -119.147263154999948, 50.496471433000067 ], [ -119.146784979999936, 50.49644184700005 ], [ -119.147330131999965, 50.492864782000041 ], [ -119.148058360999983, 50.492909840000081 ], [ -119.148369499999944, 50.490867802000082 ], [ -119.149179829999966, 50.490917933000034 ], [ -119.153982967999951, 50.491214955000039 ], [ -119.153805707999965, 50.492379307000078 ], [ -119.153438363999953, 50.494792059000098 ], [ -119.152710099, 50.494747038000085 ], [ -119.152668697, 50.495018926000093 ], [ -119.153146859999964, 50.495048486000037 ], [ -119.153034900999955, 50.495783759000133 ], [ -119.153169609999964, 50.49579208600003 ], [ -119.152712257999966, 50.498795455000106 ], [ -119.148965524999966, 50.499142891000091 ], [ -119.147010412999961, 50.499021948000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "130.2", "sL_BldgLoss": "130.2", "sL_StrLoss": "130.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8E3D2DFE8C95DC0EA8E6A7DB63C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.152305067999976, 50.472357046000106 ], [ -119.157916264999969, 50.472704009000047 ], [ -119.157850879999955, 50.473133940000032 ], [ -119.157372195999955, 50.476281215000078 ], [ -119.151760559999943, 50.475934226000106 ], [ -119.15200727, 50.474313518000081 ], [ -119.152305067999976, 50.472357046000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "43.1", "sL_BldgLoss": "43.1", "sL_StrLoss": "43.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065D00130BBCA5DC0A6704E362F3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.170255705999963, 50.492368895000027 ], [ -119.170620468999942, 50.49236773300008 ], [ -119.170216807999978, 50.495025576000074 ], [ -119.164602738999974, 50.494679244000089 ], [ -119.164945938999921, 50.492421378000103 ], [ -119.166146278999932, 50.492424088000142 ], [ -119.167822253999972, 50.492401600000115 ], [ -119.170255705999963, 50.492368895000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6017583", "BldgCostT": "3678333", "sL_LossRatio": "1", "sL_AssetLoss": "286", "sL_BldgLoss": "286", "sL_StrLoss": "286", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013942E3FE8CA5DC098695E82113B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.168310824999978, 50.466043304000067 ], [ -119.168681910999965, 50.463598995000055 ], [ -119.168418096999972, 50.463582712000132 ], [ -119.168486736999952, 50.463130577000122 ], [ -119.167677004999945, 50.463080593000022 ], [ -119.168220097999935, 50.459503278000085 ], [ -119.168589266999973, 50.459526068000088 ], [ -119.168656903999988, 50.459080488000033 ], [ -119.169531097999979, 50.459134449000054 ], [ -119.16987597499994, 50.456862009000083 ], [ -119.171102746999935, 50.456937722000134 ], [ -119.171167137999944, 50.4565133380001 ], [ -119.172052218999937, 50.456567954000072 ], [ -119.172336922999932, 50.45707412100009 ], [ -119.173062194999943, 50.458363501000058 ], [ -119.173129605999961, 50.458759403000023 ], [ -119.173132842, 50.458857350000052 ], [ -119.173136115999966, 50.458955971000066 ], [ -119.173140575, 50.459090739000047 ], [ -119.173144281999924, 50.459203491000075 ], [ -119.173048088999948, 50.459716703000026 ], [ -119.172946298999989, 50.459967612000092 ], [ -119.172180102999903, 50.461337489000123 ], [ -119.172004283999968, 50.461651836000073 ], [ -119.171877917999893, 50.461877801000099 ], [ -119.171813080999982, 50.462127398000035 ], [ -119.171807205999954, 50.46344499700006 ], [ -119.171857310999911, 50.465844381000075 ], [ -119.171860792999937, 50.466011986000105 ], [ -119.171854811999978, 50.466261993000082 ], [ -119.168310824999978, 50.466043304000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5692917", "BldgCostT": "3716667", "sL_LossRatio": "0.98117123795404", "sL_AssetLoss": "337.25", "sL_BldgLoss": "330.9", "sL_StrLoss": "328.6", "sL_NStrLoss": "2.3", "sL_ContLoss": "6.35", "geom_point": "0101000020E6100000A6E8CC66A3C95DC0F8D7D92DD53B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.145632136999922, 50.47010826700005 ], [ -119.145667551999949, 50.469875799000057 ], [ -119.144067803999974, 50.469776724000056 ], [ -119.144612848999955, 50.46619955600012 ], [ -119.15022322099999, 50.466546911000052 ], [ -119.150187831000011, 50.466779381000094 ], [ -119.15125726, 50.466845560000145 ], [ -119.15164445, 50.464301611000089 ], [ -119.157254638999973, 50.464648612000055 ], [ -119.15671061499998, 50.468225849000106 ], [ -119.151630222999984, 50.467911631000035 ], [ -119.15124300199993, 50.470455568 ], [ -119.145632136999922, 50.47010826700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7826833", "BldgCostT": "5188333", "sL_LossRatio": "0.985017927266519", "sL_AssetLoss": "468.56", "sL_BldgLoss": "461.54", "sL_StrLoss": "459", "sL_NStrLoss": "2.54", "sL_ContLoss": "7.02", "geom_point": "0101000020E610000080D4686A80CA5DC08F0FE5D1AE3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.165649098999893, 50.481165499000021 ], [ -119.165915607, 50.479411380000045 ], [ -119.163893664999989, 50.479286555000044 ], [ -119.163922734, 50.479095269000084 ], [ -119.160721576999919, 50.478897568000079 ], [ -119.160774283999899, 50.478550902000102 ], [ -119.160351088999946, 50.478524758000106 ], [ -119.160372035999927, 50.478386996000069 ], [ -119.159990887999953, 50.478363448000032 ], [ -119.160035124999979, 50.478072519000122 ], [ -119.159196882999964, 50.478020727000093 ], [ -119.159276575999939, 50.477496675000133 ], [ -119.158900210999974, 50.477473420000052 ], [ -119.158959364999973, 50.477084436000091 ], [ -119.158787532999924, 50.477073818000093 ], [ -119.158864403999985, 50.476568341000103 ], [ -119.158185748000022, 50.476526403 ], [ -119.158666672999985, 50.473364034000078 ], [ -119.158729755999943, 50.472949194000066 ], [ -119.159168992000033, 50.472976338000102 ], [ -119.159232555999978, 50.472558305000049 ], [ -119.163543878999974, 50.472824645000074 ], [ -119.163801721999945, 50.471127746 ], [ -119.163330702999986, 50.471098656000045 ], [ -119.163874236999916, 50.467521399000148 ], [ -119.169484920999949, 50.467867779000066 ], [ -119.169406926999898, 50.46838154400006 ], [ -119.17006033899996, 50.468421864000042 ], [ -119.169895050999926, 50.46951073000011 ], [ -119.169414189999912, 50.469971489000024 ], [ -119.165869548999964, 50.47336756800005 ], [ -119.164783725999925, 50.473300530000095 ], [ -119.164703518999943, 50.473828438000048 ], [ -119.164942890999939, 50.473843217000095 ], [ -119.164883791999941, 50.474232206000067 ], [ -119.164961944999959, 50.474237031 ], [ -119.16386711200002, 50.475285798000129 ], [ -119.163006302000028, 50.476151597000069 ], [ -119.165374719999946, 50.47683680300004 ], [ -119.167540300999974, 50.477421794000037 ], [ -119.168056792999948, 50.47761070000012 ], [ -119.16822780299999, 50.477697087000131 ], [ -119.16840570399998, 50.477849798000086 ], [ -119.168655793999974, 50.478655079000106 ], [ -119.168636589999963, 50.478875099000049 ], [ -119.168550620999952, 50.479021402000043 ], [ -119.168155093999971, 50.479480814000091 ], [ -119.16795953699993, 50.479681301000021 ], [ -119.167136880999976, 50.480524702000103 ], [ -119.166792011000013, 50.480697497000058 ], [ -119.166209978999959, 50.481200119000086 ], [ -119.165649098999893, 50.481165499000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "181.9", "sL_BldgLoss": "181.9", "sL_StrLoss": "181.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4F6CE0501C85DC0D2F7BFC8F03C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.122115557999962, 50.4780096000001 ], [ -119.122203095999936, 50.477437069000153 ], [ -119.121850988999924, 50.477415194000052 ], [ -119.122397886, 50.473838168 ], [ -119.128009035999938, 50.474186642000085 ], [ -119.127921576999938, 50.474759178000035 ], [ -119.128273666999959, 50.474781035000127 ], [ -119.127727223999941, 50.478358085000067 ], [ -119.122115557999962, 50.4780096000001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "56166911", "BldgCostT": "35815743", "sL_LossRatio": "0.997298062628331", "sL_AssetLoss": "4626.3100437", "sL_BldgLoss": "4613.8100437", "sL_StrLoss": "4609.3000437", "sL_NStrLoss": "4.51", "sL_ContLoss": "12.5", "geom_point": "0101000020E61000009F795AFA27C85DC0A275D0FC1C3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.122427791999925, 50.499719997000099 ], [ -119.122079312999986, 50.499598997000071 ], [ -119.121981133999967, 50.499599350000068 ], [ -119.121666710999961, 50.49960049200007 ], [ -119.118375914999945, 50.499672625000095 ], [ -119.116993690999919, 50.4997029150001 ], [ -119.115244851999961, 50.499603227000115 ], [ -119.115316193999917, 50.498536110000067 ], [ -119.115322791999986, 50.498114274000059 ], [ -119.115334413999946, 50.497367261000086 ], [ -119.115340596999957, 50.496971271000071 ], [ -119.115394555999913, 50.493508060000082 ], [ -119.115400700999928, 50.493112088000011 ], [ -119.115405773999953, 50.492787979000077 ], [ -119.115450059999958, 50.489944975000064 ], [ -119.11545024099999, 50.489934162000068 ], [ -119.11547932699996, 50.488063575000076 ], [ -119.115512796999965, 50.485916316000051 ], [ -119.115480749999946, 50.48550107100003 ], [ -119.115394102999971, 50.48437869800005 ], [ -119.115474712999912, 50.482237206000057 ], [ -119.115506231999973, 50.481400108000116 ], [ -119.115509308999947, 50.481318862000073 ], [ -119.115556090999945, 50.48007642300005 ], [ -119.115605545999941, 50.478762628000013 ], [ -119.11560758899995, 50.478708288000085 ], [ -119.115758326999966, 50.476178578000017 ], [ -119.11579747899999, 50.475521771000032 ], [ -119.115832370999954, 50.474936105000019 ], [ -119.115921942999989, 50.473431857000037 ], [ -119.115948809999949, 50.472981262000111 ], [ -119.116024386, 50.471712487000083 ], [ -119.116072515999946, 50.470904812000043 ], [ -119.116119844999986, 50.470819329000101 ], [ -119.116154695999967, 50.470756505000018 ], [ -119.11640519799991, 50.470710691000065 ], [ -119.120205813, 50.470621520000059 ], [ -119.123528111000013, 50.470543436000092 ], [ -119.126598808999944, 50.470471200000063 ], [ -119.126597989999979, 50.469086304000022 ], [ -119.12660382, 50.468900559000062 ], [ -119.126609442999936, 50.468720554000129 ], [ -119.126672972999984, 50.466696060000032 ], [ -119.126678338999966, 50.466525017000066 ], [ -119.126707121999942, 50.465607484000031 ], [ -119.126715009999955, 50.465355639000023 ], [ -119.126724034999881, 50.465067915000105 ], [ -119.126762601999957, 50.463837995000091 ], [ -119.12683753099995, 50.463276823000115 ], [ -119.126842005999947, 50.463243491000135 ], [ -119.126847345999948, 50.463233303000031 ], [ -119.127128000999932, 50.46269699700008 ], [ -119.128353084999958, 50.461349405000078 ], [ -119.12852970499992, 50.460888209000046 ], [ -119.129158040999968, 50.45996030400007 ], [ -119.129240425999924, 50.459838658000137 ], [ -119.129873100999987, 50.458904308000086 ], [ -119.130311293999966, 50.458352007000052 ], [ -119.130786983999926, 50.457674596000103 ], [ -119.130882711999902, 50.457425035000036 ], [ -119.131078478999939, 50.456914602000047 ], [ -119.131242413999971, 50.456768593000078 ], [ -119.131500686, 50.456680808000051 ], [ -119.131774209999946, 50.456641981000068 ], [ -119.131797304999949, 50.456638706000092 ], [ -119.132791974999947, 50.456566795000057 ], [ -119.13364925800002, 50.456474622000016 ], [ -119.13390068299999, 50.456447603000065 ], [ -119.13398508, 50.456438508000062 ], [ -119.134931978999973, 50.456336701000048 ], [ -119.135990996999965, 50.45633976500006 ], [ -119.135715136999949, 50.458148452000046 ], [ -119.133095575999945, 50.457985926000084 ], [ -119.13298245099999, 50.458727313000033 ], [ -119.132926445999914, 50.458723837000058 ], [ -119.132891286999921, 50.458954257000073 ], [ -119.134265678999967, 50.459039538000113 ], [ -119.133719899999946, 50.462616687000043 ], [ -119.13124344699996, 50.462463013000026 ], [ -119.131142115999978, 50.463126844000016 ], [ -119.130100800999983, 50.463062209000014 ], [ -119.12998245599999, 50.463837370000071 ], [ -119.130165953999963, 50.463848760000083 ], [ -119.129833762999922, 50.46602452800002 ], [ -119.130451293999911, 50.466062857000061 ], [ -119.129999744, 50.469020325000038 ], [ -119.130979780999979, 50.469081149000054 ], [ -119.130760892999902, 50.470514830000027 ], [ -119.130433620999924, 50.472658238000051 ], [ -119.129709423999941, 50.472613293000094 ], [ -119.129702389999977, 50.472659354000079 ], [ -119.12760115399999, 50.472528921000034 ], [ -119.127566601999987, 50.47275510300004 ], [ -119.126128522999963, 50.472665811000063 ], [ -119.12594169499999, 50.473888538000075 ], [ -119.12033059699999, 50.473539960000068 ], [ -119.120425666999964, 50.472918276000073 ], [ -119.119971607999958, 50.472890055000093 ], [ -119.119970579999944, 50.47289677600007 ], [ -119.11930989699999, 50.472855711000093 ], [ -119.119299851000022, 50.47292139000006 ], [ -119.116724227999939, 50.472761262000091 ], [ -119.11655728399991, 50.473852351000069 ], [ -119.116528199999948, 50.473850542000015 ], [ -119.116421069999902, 50.474550681000096 ], [ -119.116927158999928, 50.47458215000006 ], [ -119.116665250000011, 50.476293853000129 ], [ -119.119461496999961, 50.47646768300006 ], [ -119.118914333999939, 50.480044682 ], [ -119.11884805599999, 50.48004056300006 ], [ -119.118797156, 50.480373282000095 ], [ -119.119011480999973, 50.480386604000095 ], [ -119.118904160999975, 50.481088129000092 ], [ -119.119233521999931, 50.481108598000112 ], [ -119.118785707999947, 50.484035758000097 ], [ -119.120042898999941, 50.484113882000052 ], [ -119.119620909999966, 50.486872366000043 ], [ -119.119853094999939, 50.486886792000078 ], [ -119.119580063999976, 50.488671426000089 ], [ -119.119817818999962, 50.48868619800011 ], [ -119.119627148999953, 50.489932447000051 ], [ -119.120274486999946, 50.489972665000025 ], [ -119.120391608999952, 50.48920705900008 ], [ -119.120698794999925, 50.489226143000081 ], [ -119.120904761999938, 50.487879668000048 ], [ -119.122906899999933, 50.488004028000049 ], [ -119.123125338999913, 50.486575515000027 ], [ -119.123458717999966, 50.486596219000042 ], [ -119.12370460299999, 50.484988024000131 ], [ -119.124064750999977, 50.485010389000131 ], [ -119.124155615999925, 50.484416033000031 ], [ -119.124554486999898, 50.484440802000108 ], [ -119.124638023999964, 50.483894344000106 ], [ -119.124754082999971, 50.483901550000027 ], [ -119.12478312699993, 50.483711546000066 ], [ -119.128532451999945, 50.483944290000061 ], [ -119.130395524, 50.484059894000055 ], [ -119.130121531999947, 50.485853700000114 ], [ -119.134698710999885, 50.486137580000111 ], [ -119.134362610999958, 50.488339263000036 ], [ -119.136416319999924, 50.488466573000025 ], [ -119.136584309999961, 50.487365824000094 ], [ -119.13788638299998, 50.487446520000027 ], [ -119.140390169999975, 50.487601648000101 ], [ -119.140656916999916, 50.485852713000043 ], [ -119.142452555999938, 50.485963931000072 ], [ -119.14246703699996, 50.485868954000104 ], [ -119.142892395, 50.485895296000045 ], [ -119.142949637999905, 50.485898841000115 ], [ -119.142972320999917, 50.485750066000023 ], [ -119.14858511099996, 50.486097495000109 ], [ -119.148181438999956, 50.488747199000109 ], [ -119.148040141, 50.489674595000061 ], [ -119.147557494999987, 50.48964473100007 ], [ -119.147534825999941, 50.489793505000144 ], [ -119.145739023999965, 50.48968237 ], [ -119.145724548, 50.489777347000064 ], [ -119.141918475999958, 50.489541707000086 ], [ -119.141651754999955, 50.49129063700012 ], [ -119.141393704999956, 50.491274655000019 ], [ -119.141246529999961, 50.492239616000113 ], [ -119.142132566000015, 50.492294485000066 ], [ -119.142089651999981, 50.492575881000057 ], [ -119.142126884999982, 50.492578187000092 ], [ -119.141581324999933, 50.496155227000045 ], [ -119.13800259, 50.495933562000104 ], [ -119.135967337999944, 50.495807449000054 ], [ -119.136010292999941, 50.495526056000095 ], [ -119.135973056999916, 50.495523749000093 ], [ -119.13612146299991, 50.494551545000078 ], [ -119.135949538999938, 50.494540889000106 ], [ -119.135808734999941, 50.495463261000047 ], [ -119.130194877999983, 50.495115190000021 ], [ -119.130712974999966, 50.491723824000104 ], [ -119.130619224999947, 50.491718008000056 ], [ -119.130955531999959, 50.489516346000066 ], [ -119.128539509999953, 50.489366456 ], [ -119.128610250999955, 50.488903482000069 ], [ -119.128437263999956, 50.488892749000087 ], [ -119.128191525, 50.490500946000061 ], [ -119.126245945999969, 50.490380200000111 ], [ -119.125884950999946, 50.492741792000118 ], [ -119.125798868999979, 50.492736449000112 ], [ -119.125734167999951, 50.493159695000095 ], [ -119.12553980099996, 50.493147630000053 ], [ -119.125269663000026, 50.494914571000095 ], [ -119.128423147999982, 50.495110272000062 ], [ -119.127885595999928, 50.498627531000054 ], [ -119.131842883999965, 50.49887298400013 ], [ -119.131779415999972, 50.499288460000038 ], [ -119.132147402999948, 50.499311277000075 ], [ -119.132102279999913, 50.499606671000038 ], [ -119.131416050999931, 50.499606197000048 ], [ -119.130122087999965, 50.499605297000109 ], [ -119.128580605999943, 50.499586388000047 ], [ -119.127079696999957, 50.499606997000093 ], [ -119.126829008999948, 50.49968979300008 ], [ -119.126548663999955, 50.499999427000134 ], [ -119.126189805999928, 50.500395799000081 ], [ -119.125888296999932, 50.500634387000083 ], [ -119.125479780999939, 50.500896997000062 ], [ -119.125271025999965, 50.501002295000092 ], [ -119.125038909999915, 50.501037504000095 ], [ -119.124808797999975, 50.501013291000056 ], [ -119.124606281999974, 50.500954260000086 ], [ -119.124434281999953, 50.500904084000126 ], [ -119.124415392999964, 50.500898598000106 ], [ -119.124107291999934, 50.500744993000119 ], [ -119.12293106099996, 50.500027145000082 ], [ -119.122427791999925, 50.499719997000099 ] ], [ [ -119.12237624699992, 50.497593684000087 ], [ -119.122482536999954, 50.496898807000058 ], [ -119.12189545699999, 50.496862350000043 ], [ -119.120331327999949, 50.496765206000106 ], [ -119.12022500499998, 50.497460081000057 ], [ -119.121580491999936, 50.497544268000112 ], [ -119.12237624699992, 50.497593684000087 ] ], [ [ -119.119108584999964, 50.495449636000089 ], [ -119.119248002999953, 50.494538568000031 ], [ -119.1185811349999, 50.494497135000096 ], [ -119.118441703999963, 50.495408202000064 ], [ -119.119108584999964, 50.495449636000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12315000", "BldgCostT": "7500000", "sL_LossRatio": "1", "sL_AssetLoss": "436.1", "sL_BldgLoss": "436.1", "sL_StrLoss": "436.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BA7D71C56CC5DC05CC7D9F0CB424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.19189165399996, 50.524593444000097 ], [ -119.191931789999927, 50.524328532000013 ], [ -119.190609551999984, 50.524247306000092 ], [ -119.19115156299992, 50.520670149000061 ], [ -119.191745435, 50.520706634000085 ], [ -119.191788848999977, 50.520420063000074 ], [ -119.191819427999945, 50.520421942000034 ], [ -119.191920679999939, 50.51975356600007 ], [ -119.192337444999922, 50.519779167000102 ], [ -119.192571437999959, 50.518234376000052 ], [ -119.192655058999975, 50.518239513000054 ], [ -119.1927113199999, 50.517868064000034 ], [ -119.190716701000028, 50.517745522000055 ], [ -119.191258623999943, 50.514168337000029 ], [ -119.1920279199999, 50.51421560400005 ], [ -119.192127620999941, 50.513557355 ], [ -119.195723177999952, 50.513778201000015 ], [ -119.195709987999976, 50.521091096000163 ], [ -119.195712598999947, 50.52159456600009 ], [ -119.195717623999926, 50.522574886000072 ], [ -119.195725954999943, 50.524193583000049 ], [ -119.195729292999914, 50.524848938000027 ], [ -119.195679457000011, 50.525561650000057 ], [ -119.195607202999938, 50.525697628000032 ], [ -119.195382136999982, 50.526121053000068 ], [ -119.195312897999926, 50.526475155000114 ], [ -119.195324731999932, 50.526706046000072 ], [ -119.195468799999972, 50.526831317000088 ], [ -119.196190625, 50.527232154000025 ], [ -119.196271359999969, 50.527259886000095 ], [ -119.196702681999938, 50.527407999000104 ], [ -119.196713946999978, 50.527419143000039 ], [ -119.196844458999948, 50.527548489000097 ], [ -119.196909348999952, 50.527850319000045 ], [ -119.196899816999945, 50.527888648000072 ], [ -119.196735219999965, 50.527887741000036 ], [ -119.185836737999963, 50.527828394000032 ], [ -119.185530260999911, 50.527826704000091 ], [ -119.185610615999948, 50.527296857000074 ], [ -119.185758979999946, 50.526318540000041 ], [ -119.1863643289999, 50.526355754000086 ], [ -119.186417567999968, 50.526004654000069 ], [ -119.189494991999965, 50.526193788000107 ], [ -119.189757409999984, 50.52446232700003 ], [ -119.19189165399996, 50.524593444000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "99.1", "sL_BldgLoss": "99.1", "sL_StrLoss": "99.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7455413CACB5DC05F4C4C7A0C434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.183377712999942, 50.527731564000121 ], [ -119.183413161999923, 50.525343080000042 ], [ -119.183432355999969, 50.524050584000065 ], [ -119.183436523999916, 50.519874251000076 ], [ -119.184519635999919, 50.519940866000049 ], [ -119.184504221999958, 50.520042513000099 ], [ -119.184872431999921, 50.520065157 ], [ -119.184778985, 50.520681370000041 ], [ -119.185214463999927, 50.520708149000036 ], [ -119.185073007999932, 50.521640970000085 ], [ -119.185193028999961, 50.52164835000012 ], [ -119.185124197000022, 50.522102251000057 ], [ -119.185221758999887, 50.522108251000041 ], [ -119.185133311999977, 50.522691486000035 ], [ -119.185176700999975, 50.522694153 ], [ -119.184769257999946, 50.525380746000074 ], [ -119.185006991999956, 50.525395363000079 ], [ -119.184922844999988, 50.525950179000063 ], [ -119.184990930999959, 50.525954365000089 ], [ -119.18495928199999, 50.526163029000017 ], [ -119.185033042999947, 50.52616756500003 ], [ -119.184834534999979, 50.527476389000071 ], [ -119.184782028999933, 50.527822572000076 ], [ -119.183371708999942, 50.52781477000012 ], [ -119.183377712999942, 50.527731564000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5409167", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "680.6", "sL_BldgLoss": "680.6", "sL_StrLoss": "680.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9452F9B27CA5DC0763F5D93243F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.155058986999975, 50.496301676000037 ], [ -119.155379056999962, 50.494199021000057 ], [ -119.15515353499994, 50.494185083000104 ], [ -119.1554252829999, 50.492399767000101 ], [ -119.155697995999958, 50.490607968000148 ], [ -119.157038160999974, 50.490690785000027 ], [ -119.157111455999882, 50.490209099000033 ], [ -119.162724909999923, 50.490555812000125 ], [ -119.162442119999966, 50.492415740000048 ], [ -119.162181007999948, 50.494132962000045 ], [ -119.161066251999912, 50.494064132000105 ], [ -119.160673182999957, 50.496648490000041 ], [ -119.155058986999975, 50.496301676000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12387616", "BldgCostT": "7913879", "sL_LossRatio": "1", "sL_AssetLoss": "691.3", "sL_BldgLoss": "691.3", "sL_StrLoss": "691.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB4AF39EB5C95DC0441A91FF34394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.145280476999986, 50.449034092000055 ], [ -119.145261995999988, 50.444555292000054 ], [ -119.145265308999967, 50.444031893000044 ], [ -119.14592821299999, 50.444036809000067 ], [ -119.146685207999894, 50.444083698000057 ], [ -119.146930408999964, 50.444127808000111 ], [ -119.147482904999947, 50.444291113000133 ], [ -119.147876718999925, 50.444344412000071 ], [ -119.148937702999916, 50.444346897000067 ], [ -119.150320996999966, 50.444351305000133 ], [ -119.151888683999971, 50.444371694000083 ], [ -119.151850915999958, 50.443159600000037 ], [ -119.154072907999947, 50.443148191000034 ], [ -119.157459896999953, 50.44316189200007 ], [ -119.157720113000011, 50.443246599000076 ], [ -119.157920876999981, 50.443462092000075 ], [ -119.157960881999969, 50.443757094000034 ], [ -119.157911108999897, 50.44508100000013 ], [ -119.158084390999988, 50.445179294000049 ], [ -119.158351294999989, 50.445267105000035 ], [ -119.158768495999979, 50.445305611000087 ], [ -119.159741709999963, 50.445308898000071 ], [ -119.160187317999913, 50.445309396000063 ], [ -119.160507878999937, 50.445369797000112 ], [ -119.160530102999942, 50.445392867000066 ], [ -119.160614208999903, 50.445480209000038 ], [ -119.160640834999981, 50.446939240000113 ], [ -119.160672308999921, 50.448665904000102 ], [ -119.16075158799994, 50.448954299000057 ], [ -119.156835277999946, 50.448969468000037 ], [ -119.156270000999939, 50.448971638000103 ], [ -119.154948621999949, 50.448976728000069 ], [ -119.149472490999926, 50.44899759500003 ], [ -119.149429944999966, 50.450552827000124 ], [ -119.147274220999961, 50.450419328000081 ], [ -119.147243714999917, 50.450619707000115 ], [ -119.14664237599996, 50.450582460000099 ], [ -119.14661529599999, 50.450760322000072 ], [ -119.141006913999945, 50.450412778000036 ], [ -119.141224768999933, 50.448983036000044 ], [ -119.143565931999944, 50.449012523000128 ], [ -119.143617364999969, 50.44901318100009 ], [ -119.145280476999986, 50.449034092000055 ] ], [ [ -119.158206721999974, 50.447349670000051 ], [ -119.158285293999896, 50.446832685000096 ], [ -119.155566089999922, 50.446664489000064 ], [ -119.155567627999957, 50.446654371000065 ], [ -119.155543933999965, 50.446652905000064 ], [ -119.155531158999949, 50.446736928000064 ], [ -119.149923206999958, 50.446389834000101 ], [ -119.149924242999944, 50.446383021000095 ], [ -119.148792409999885, 50.446312933000073 ], [ -119.1487421369999, 50.446643258000087 ], [ -119.15213678299996, 50.446853434000026 ], [ -119.152155212999986, 50.446732280000106 ], [ -119.157763223999979, 50.447079262000095 ], [ -119.157726635999907, 50.447319979000063 ], [ -119.158206721999974, 50.447349670000051 ] ], [ [ -119.148780951, 50.446288478000099 ], [ -119.148829442999968, 50.445969844000089 ], [ -119.148780280999972, 50.445966799000153 ], [ -119.148731787, 50.446285433000071 ], [ -119.148780951, 50.446288478000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "178.7", "sL_BldgLoss": "178.7", "sL_StrLoss": "178.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E02EDA677EC65DC081FF52AB54434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.098264307999926, 50.527690739000022 ], [ -119.098271767999947, 50.527642182000058 ], [ -119.097803596999924, 50.527613028000076 ], [ -119.098353011999919, 50.524036341000091 ], [ -119.099500454999927, 50.524107792000038 ], [ -119.099511762999953, 50.524034168000107 ], [ -119.10358041899994, 50.524287424000086 ], [ -119.105128983999947, 50.524383776000093 ], [ -119.104580102999989, 50.527960494000055 ], [ -119.103900729999964, 50.527918226000068 ], [ -119.103881975999926, 50.528040409000013 ], [ -119.10353313199991, 50.52801870400009 ], [ -119.098264307999926, 50.527690739000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.8", "sL_BldgLoss": "40.8", "sL_StrLoss": "40.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016719582C9C85DC00996B8C81C404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.136905921, 50.4996098680001 ], [ -119.137909913999962, 50.499610509000092 ], [ -119.137899805999936, 50.499994817000079 ], [ -119.137881442999955, 50.500696502000068 ], [ -119.137860494999984, 50.501493990000029 ], [ -119.137854843999904, 50.502078217000111 ], [ -119.136541535999982, 50.501996852000048 ], [ -119.136905921, 50.4996098680001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16386667", "BldgCostT": "11091667", "sL_LossRatio": "0.994400124849675", "sL_AssetLoss": "1089.31", "sL_BldgLoss": "1083.21", "sL_StrLoss": "1081", "sL_NStrLoss": "2.21", "sL_ContLoss": "6.1", "geom_point": "0101000020E6100000462CD62EF5C65DC0459AFC3F1C454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.110362487999964, 50.543239611000097 ], [ -119.109609098999954, 50.542803805000048 ], [ -119.108738292999988, 50.542585914000064 ], [ -119.10820088199992, 50.542541699000076 ], [ -119.107269611999953, 50.542540306000042 ], [ -119.106341809999932, 50.542655709000016 ], [ -119.105587992999986, 50.542840804000086 ], [ -119.105077207999955, 50.543092890000075 ], [ -119.104775752999984, 50.543289466000076 ], [ -119.104597568999964, 50.543278385000072 ], [ -119.104928119999954, 50.541125226000105 ], [ -119.099434654999968, 50.54078344599999 ], [ -119.099560136999969, 50.539966667000051 ], [ -119.095022171999929, 50.539684126000047 ], [ -119.095571954999983, 50.536107507000033 ], [ -119.097506811999949, 50.536227997000076 ], [ -119.097582787999954, 50.535733552000181 ], [ -119.103201452999954, 50.536083252000068 ], [ -119.103165508999965, 50.536317362000062 ], [ -119.105595092999963, 50.536468486000039 ], [ -119.105476218999968, 50.537243002000103 ], [ -119.105738041999956, 50.537259284000058 ], [ -119.105361107999954, 50.539715072000028 ], [ -119.106496349999972, 50.539785665000061 ], [ -119.106990231999958, 50.536567368000064 ], [ -119.106990279999948, 50.536567371000075 ], [ -119.107038446999979, 50.536253468000076 ], [ -119.107939282999936, 50.536309477000053 ], [ -119.108051540999952, 50.535577790000048 ], [ -119.113670267999922, 50.535926961000072 ], [ -119.113121923999984, 50.539503671000141 ], [ -119.112221016999982, 50.539447706000018 ], [ -119.112108816999978, 50.540179393000116 ], [ -119.112108769999963, 50.540179389000052 ], [ -119.112060631999981, 50.540493294000079 ], [ -119.111116491999937, 50.540434633000054 ], [ -119.11111547899999, 50.540441242000057 ], [ -119.111355159999931, 50.540456134000124 ], [ -119.110925632999965, 50.543256639000148 ], [ -119.113092097999925, 50.543391225000036 ], [ -119.11338607799992, 50.541473925000055 ], [ -119.113944639, 50.54150861800008 ], [ -119.114019373999938, 50.541021138000126 ], [ -119.116062169999935, 50.541147993000088 ], [ -119.116279949000031, 50.539726987000108 ], [ -119.117304304999919, 50.539790584000059 ], [ -119.117438143999962, 50.538917112000085 ], [ -119.122786089999977, 50.539248980000089 ], [ -119.122889424999983, 50.538574036000071 ], [ -119.123074401999958, 50.538585510000097 ], [ -119.123124926999964, 50.5385886440001 ], [ -119.123206540999902, 50.538055541000134 ], [ -119.123766306999983, 50.53809026200009 ], [ -119.123783621999948, 50.537977154000068 ], [ -119.124537294999953, 50.538023897000095 ], [ -119.124064695999905, 50.53846826300007 ], [ -119.1236369, 50.539122174000035 ], [ -119.123586164999949, 50.539202150000058 ], [ -119.123524864, 50.539313201000027 ], [ -119.123077632, 50.540022208000025 ], [ -119.123265031999921, 50.541217790000076 ], [ -119.123144689999947, 50.541217209000102 ], [ -119.121133601999986, 50.541388103000045 ], [ -119.119334207999941, 50.541835305000163 ], [ -119.118234018999985, 50.542188496000044 ], [ -119.117258006, 50.542763896000046 ], [ -119.116767491999937, 50.543185494000049 ], [ -119.116451901999952, 50.543668296000085 ], [ -119.116509096999977, 50.54527859300007 ], [ -119.115243455999988, 50.545200015000084 ], [ -119.114949531999955, 50.547117311000115 ], [ -119.113359491999972, 50.547018573000088 ], [ -119.113110284999962, 50.546904108000028 ], [ -119.112482383999989, 50.546475397000101 ], [ -119.111449187999966, 50.544830498000124 ], [ -119.11122681699996, 50.544257906000027 ], [ -119.110789279999935, 50.543645492000046 ], [ -119.110362487999964, 50.543239611000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "122.5", "sL_BldgLoss": "122.5", "sL_StrLoss": "122.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB72CB9A1AC65DC098D41A94FA414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.092840643999963, 50.513496190000097 ], [ -119.098456500999973, 50.513846139000115 ], [ -119.097907217999989, 50.5174228710001 ], [ -119.092290920999957, 50.517072894000066 ], [ -119.092840643999963, 50.513496190000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "192.8", "sL_BldgLoss": "192.8", "sL_StrLoss": "192.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3848DDB7DC65DC01BCBC35BCA3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.09825247, 50.500468693000116 ], [ -119.098268767999954, 50.500362520000095 ], [ -119.097452750999977, 50.500311671000105 ], [ -119.097799704999886, 50.498051746000058 ], [ -119.09800186199999, 50.496734867000029 ], [ -119.098861104999983, 50.496788409000018 ], [ -119.098899833999923, 50.496536087000074 ], [ -119.099211937999925, 50.496555534000088 ], [ -119.099333357999939, 50.495764394000084 ], [ -119.10494705799999, 50.496114024000072 ], [ -119.104775962999952, 50.497229719000131 ], [ -119.105139028999972, 50.497252321000076 ], [ -119.104800842999936, 50.499457543000041 ], [ -119.104590477999963, 50.50082915900002 ], [ -119.104020878999933, 50.500793699000056 ], [ -119.103871952999938, 50.500784427000099 ], [ -119.103866746, 50.500818375000094 ], [ -119.099000798999896, 50.500515319000087 ], [ -119.09825247, 50.500468693000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "193.1", "sL_BldgLoss": "193.1", "sL_StrLoss": "193.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF2C488E8FC65DC0EA7A1EB31E444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.099378013999939, 50.534044458000047 ], [ -119.099444453999951, 50.533611923000095 ], [ -119.099189537999948, 50.533596054000093 ], [ -119.099738916999968, 50.530019387000017 ], [ -119.100275034999981, 50.530052761000057 ], [ -119.100278791999941, 50.530028299000072 ], [ -119.103505089999913, 50.530229085000045 ], [ -119.105896765999987, 50.530377866000073 ], [ -119.105777507999932, 50.531155028000079 ], [ -119.105347872999914, 50.533954562000105 ], [ -119.105066623999974, 50.533937069000046 ], [ -119.104996480999972, 50.53439406900003 ], [ -119.099378013999939, 50.534044458000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82128084", "BldgCostT": "57608334", "sL_LossRatio": "1", "sL_AssetLoss": "1102.1", "sL_BldgLoss": "1102.1", "sL_StrLoss": "1102.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDFE876832C85DC06D0288927B414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.132003816999969, 50.519491992000084 ], [ -119.129564637999977, 50.519217977000025 ], [ -119.1295539799999, 50.519249281000093 ], [ -119.126059325999975, 50.518861268000073 ], [ -119.126223839000019, 50.517785705000037 ], [ -119.126427479, 50.517853100000131 ], [ -119.127278197999956, 50.517666505000122 ], [ -119.127958592999931, 50.517411612000032 ], [ -119.12803101899999, 50.517158103000057 ], [ -119.127706100999944, 50.516830510000048 ], [ -119.127723902999932, 50.516578403000089 ], [ -119.127936782999939, 50.516286391000065 ], [ -119.127573603999949, 50.515753812000057 ], [ -119.127334282, 50.515749499000023 ], [ -119.127270075999931, 50.515903293000079 ], [ -119.126637814, 50.51593319800002 ], [ -119.126579487, 50.51623939200006 ], [ -119.126798997999956, 50.516416 ], [ -119.126841102999919, 50.516712305000105 ], [ -119.126542800999957, 50.516968597000087 ], [ -119.126335775999962, 50.517053841000106 ], [ -119.126578564999946, 50.515466364000133 ], [ -119.126694238999931, 50.515473539000027 ], [ -119.126774385999937, 50.514949467000086 ], [ -119.127851183999923, 50.515016256000095 ], [ -119.127869741, 50.514894892000036 ], [ -119.128866029999969, 50.514956677000079 ], [ -119.128872796999971, 50.51491241500004 ], [ -119.129137514999954, 50.514928830000066 ], [ -119.129248485999952, 50.514202935000057 ], [ -119.127104470999939, 50.514069967000054 ], [ -119.127132638999981, 50.513885764000108 ], [ -119.126523067999969, 50.513847951000059 ], [ -119.126560411999904, 50.513603755000084 ], [ -119.12641037899995, 50.51359444900006 ], [ -119.12643705499994, 50.51342002100008 ], [ -119.126105282999973, 50.513399440000079 ], [ -119.126579207999939, 50.510300415000124 ], [ -119.125464047999955, 50.510231226000073 ], [ -119.12543654599996, 50.510411047000026 ], [ -119.125459699999965, 50.510412484000035 ], [ -119.124912600999934, 50.513989364000068 ], [ -119.119296521999928, 50.513640751000061 ], [ -119.119472059999936, 50.512494095000065 ], [ -119.119448905999931, 50.51249265700006 ], [ -119.119563358999969, 50.511744990000068 ], [ -119.119466256999885, 50.511738959000063 ], [ -119.119478303999955, 50.511660267000096 ], [ -119.119255856999956, 50.511646454000115 ], [ -119.119803375999965, 50.508069591000051 ], [ -119.124141720999944, 50.508338930000079 ], [ -119.124500989999916, 50.505990094000069 ], [ -119.12552206499997, 50.506053460000018 ], [ -119.12567409, 50.505059319000125 ], [ -119.126393455999946, 50.505103955 ], [ -119.126488487999964, 50.504482435000114 ], [ -119.126576601999943, 50.504487902000051 ], [ -119.126673913999966, 50.503851438000083 ], [ -119.126918646999954, 50.503866623000143 ], [ -119.126929406999949, 50.503796243000053 ], [ -119.132544318999962, 50.504144474000036 ], [ -119.131997857999949, 50.50772141700002 ], [ -119.131753103999969, 50.507706244000069 ], [ -119.131742349999925, 50.507776623000055 ], [ -119.131654225999938, 50.507771160000068 ], [ -119.131556977999963, 50.508407625000096 ], [ -119.13083755299999, 50.508363021000044 ], [ -119.130742574999942, 50.508984543000061 ], [ -119.130420374, 50.508964565 ], [ -119.130255097999949, 50.510046006000017 ], [ -119.132267940999924, 50.510170795000107 ], [ -119.13225373399996, 50.510263779000063 ], [ -119.133202216999962, 50.51032256900001 ], [ -119.133165417, 50.510563453000024 ], [ -119.13323343199994, 50.510567669000054 ], [ -119.133192342999962, 50.510836633000089 ], [ -119.133267150999956, 50.510841269000096 ], [ -119.133138226999918, 50.511685162000042 ], [ -119.135282144999948, 50.511818015000074 ], [ -119.134735808999892, 50.515394936000078 ], [ -119.134471084999959, 50.515378535000131 ], [ -119.134447345999945, 50.5155339370001 ], [ -119.134478127999984, 50.515535844000063 ], [ -119.133931681999968, 50.519112746000083 ], [ -119.132079316999977, 50.518997959000025 ], [ -119.132003816999969, 50.519491992000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "175", "sL_BldgLoss": "175", "sL_StrLoss": "175", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3FEE1B64FC95DC04CBFA7E6303A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.146411620999942, 50.452808364000106 ], [ -119.149363232999946, 50.452991152000031 ], [ -119.149269303999958, 50.456423587000046 ], [ -119.148213865999949, 50.456415814000074 ], [ -119.146239998999988, 50.456401244000084 ], [ -119.144029882, 50.456384873000083 ], [ -119.141452932999982, 50.456225179000072 ], [ -119.141998021999953, 50.452647963000047 ], [ -119.146394563999962, 50.452920381000141 ], [ -119.146411620999942, 50.452808364000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60141978", "BldgCostT": "39964857", "sL_LossRatio": "0.991404334146168", "sL_AssetLoss": "4351.03", "sL_BldgLoss": "4313.63", "sL_StrLoss": "4300.1", "sL_NStrLoss": "13.53", "sL_ContLoss": "37.4", "geom_point": "0101000020E61000003983F90A56C75DC0AFD3C412C13E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.098581376, 50.510796181000096 ], [ -119.098591475999982, 50.510730403000096 ], [ -119.093251510999949, 50.510397635000075 ], [ -119.093605235, 50.508095569000041 ], [ -119.093801077999956, 50.506820895 ], [ -119.095121922999965, 50.506903231000052 ], [ -119.099416109999964, 50.50717080000009 ], [ -119.099406012999907, 50.507236579000072 ], [ -119.101586612999895, 50.507372386000057 ], [ -119.101816281999959, 50.505875776000053 ], [ -119.102143378999955, 50.505896144000054 ], [ -119.10215056899996, 50.505849284000114 ], [ -119.102572438999971, 50.505875551000059 ], [ -119.102579751999954, 50.505827893000074 ], [ -119.103885526999932, 50.505909187000078 ], [ -119.105674325999942, 50.506020527000011 ], [ -119.10574973099996, 50.505528865000088 ], [ -119.105985869999969, 50.505543561000103 ], [ -119.106029327, 50.505260201000056 ], [ -119.105766464999959, 50.505243842000077 ], [ -119.105708096999948, 50.505624422000018 ], [ -119.103896043999924, 50.505511634000072 ], [ -119.100093207, 50.505274835000073 ], [ -119.100143689999939, 50.50494594200012 ], [ -119.099512410999978, 50.504906619000074 ], [ -119.100061413999967, 50.501329825 ], [ -119.100319839999969, 50.501345923000059 ], [ -119.100322002999917, 50.501331831000051 ], [ -119.100779331999988, 50.501360317000028 ], [ -119.100803988999957, 50.501199641000056 ], [ -119.104004874999987, 50.501398965000121 ], [ -119.10466329899999, 50.501439954000048 ], [ -119.104870474999984, 50.500089132000049 ], [ -119.104894711999975, 50.500090640000089 ], [ -119.104950291999955, 50.49972823300007 ], [ -119.108062933999975, 50.499921951000026 ], [ -119.108127556999975, 50.499500382000058 ], [ -119.10838134699999, 50.497844707000077 ], [ -119.109094148999958, 50.49788905600014 ], [ -119.109094413999955, 50.497887322000075 ], [ -119.11062963399992, 50.497982826000104 ], [ -119.110756682999948, 50.497153658000066 ], [ -119.112992534999975, 50.497292709000071 ], [ -119.113219070999932, 50.495813711000032 ], [ -119.11271720699996, 50.495782504000061 ], [ -119.112978331999926, 50.494077679000036 ], [ -119.108837502999947, 50.493820100000036 ], [ -119.109142642999956, 50.491828940000097 ], [ -119.10756349899998, 50.491730668000088 ], [ -119.108111703999953, 50.488153776000068 ], [ -119.113724522999917, 50.48850296600002 ], [ -119.113506225999984, 50.489928528000107 ], [ -119.113719230999934, 50.489941774000094 ], [ -119.114115109999943, 50.487356392000024 ], [ -119.113882926, 50.48734195300009 ], [ -119.114331092999976, 50.48441482500008 ], [ -119.113073901999968, 50.484336636000066 ], [ -119.113099199999922, 50.484171417000013 ], [ -119.111632767999978, 50.484080196000029 ], [ -119.11202462199999, 50.48152153000008 ], [ -119.111985754999949, 50.481519111000082 ], [ -119.112071816999944, 50.480957120000042 ], [ -119.111902890999914, 50.480946611000022 ], [ -119.112367940999974, 50.47790962100003 ], [ -119.110768263999915, 50.47781008600009 ], [ -119.110851164999957, 50.477268786000089 ], [ -119.110127781999935, 50.477223769000084 ], [ -119.110273343999978, 50.476273396000046 ], [ -119.109869538999988, 50.476248264000098 ], [ -119.110417372999947, 50.472671292000022 ], [ -119.110928089999931, 50.472703078000066 ], [ -119.111119708999979, 50.47145170500005 ], [ -119.111230006999918, 50.471458569000099 ], [ -119.111302227999929, 50.47098690800005 ], [ -119.111331309999954, 50.470988718000036 ], [ -119.111493978999988, 50.469926310000126 ], [ -119.111553382999958, 50.469930006 ], [ -119.111725332999953, 50.46880691200009 ], [ -119.112326909999936, 50.468844350000026 ], [ -119.112498258999977, 50.467725027000014 ], [ -119.118108572000011, 50.468074004000087 ], [ -119.118087931999966, 50.468208945000072 ], [ -119.118815559999973, 50.468254184000102 ], [ -119.118732654, 50.468796264000133 ], [ -119.118869694999944, 50.468804784000056 ], [ -119.118808225999956, 50.4692067 ], [ -119.122410587999937, 50.469430596000095 ], [ -119.122502463, 50.46882955800011 ], [ -119.124093846999983, 50.468928428 ], [ -119.124206030999957, 50.468194334 ], [ -119.122855657999963, 50.468110439000057 ], [ -119.123402362999968, 50.464533367000058 ], [ -119.123618420999918, 50.46454679200005 ], [ -119.123844327999947, 50.463068475000028 ], [ -119.123969414999934, 50.463076246000092 ], [ -119.124359346999938, 50.46052428000008 ], [ -119.124564853999971, 50.460537048000042 ], [ -119.124774705999926, 50.459163487000097 ], [ -119.125416200999894, 50.459203340000087 ], [ -119.125522708999966, 50.458506102000051 ], [ -119.126324017999963, 50.45855587900008 ], [ -119.126508131999941, 50.457350422000033 ], [ -119.12683081899999, 50.457370465000039 ], [ -119.126964560999951, 50.456494730000024 ], [ -119.12765439399999, 50.456537576000066 ], [ -119.127919413999933, 50.454801947000114 ], [ -119.130430432, 50.454957870000058 ], [ -119.130599949999976, 50.453847206000084 ], [ -119.136208677999917, 50.454195274000071 ], [ -119.136152361999962, 50.454564552000043 ], [ -119.136260703999966, 50.454571273000099 ], [ -119.135990996999965, 50.45633976500006 ], [ -119.134931978999973, 50.456336701000048 ], [ -119.13398508, 50.456438508000062 ], [ -119.13390068299999, 50.456447603000065 ], [ -119.13364925800002, 50.456474622000016 ], [ -119.132791974999947, 50.456566795000057 ], [ -119.131797304999949, 50.456638706000092 ], [ -119.131774209999946, 50.456641981000068 ], [ -119.131500686, 50.456680808000051 ], [ -119.131242413999971, 50.456768593000078 ], [ -119.131078478999939, 50.456914602000047 ], [ -119.130882711999902, 50.457425035000036 ], [ -119.130786983999926, 50.457674596000103 ], [ -119.130311293999966, 50.458352007000052 ], [ -119.129873100999987, 50.458904308000086 ], [ -119.129240425999924, 50.459838658000137 ], [ -119.129158040999968, 50.45996030400007 ], [ -119.12852970499992, 50.460888209000046 ], [ -119.128353084999958, 50.461349405000078 ], [ -119.127128000999932, 50.46269699700008 ], [ -119.126847345999948, 50.463233303000031 ], [ -119.126842005999947, 50.463243491000135 ], [ -119.12683753099995, 50.463276823000115 ], [ -119.126762601999957, 50.463837995000091 ], [ -119.126724034999881, 50.465067915000105 ], [ -119.126715009999955, 50.465355639000023 ], [ -119.126707121999942, 50.465607484000031 ], [ -119.126678338999966, 50.466525017000066 ], [ -119.126672972999984, 50.466696060000032 ], [ -119.126609442999936, 50.468720554000129 ], [ -119.12660382, 50.468900559000062 ], [ -119.126597989999979, 50.469086304000022 ], [ -119.126598808999944, 50.470471200000063 ], [ -119.123528111000013, 50.470543436000092 ], [ -119.120205813, 50.470621520000059 ], [ -119.11640519799991, 50.470710691000065 ], [ -119.116154695999967, 50.470756505000018 ], [ -119.116119844999986, 50.470819329000101 ], [ -119.116072515999946, 50.470904812000043 ], [ -119.116024386, 50.471712487000083 ], [ -119.115948809999949, 50.472981262000111 ], [ -119.115921942999989, 50.473431857000037 ], [ -119.115832370999954, 50.474936105000019 ], [ -119.11579747899999, 50.475521771000032 ], [ -119.115758326999966, 50.476178578000017 ], [ -119.11560758899995, 50.478708288000085 ], [ -119.115605545999941, 50.478762628000013 ], [ -119.115556090999945, 50.48007642300005 ], [ -119.115509308999947, 50.481318862000073 ], [ -119.115506231999973, 50.481400108000116 ], [ -119.115474712999912, 50.482237206000057 ], [ -119.115394102999971, 50.48437869800005 ], [ -119.115480749999946, 50.48550107100003 ], [ -119.115512796999965, 50.485916316000051 ], [ -119.11547932699996, 50.488063575000076 ], [ -119.11545024099999, 50.489934162000068 ], [ -119.115450059999958, 50.489944975000064 ], [ -119.115405773999953, 50.492787979000077 ], [ -119.115400700999928, 50.493112088000011 ], [ -119.115394555999913, 50.493508060000082 ], [ -119.115340596999957, 50.496971271000071 ], [ -119.115334413999946, 50.497367261000086 ], [ -119.115322791999986, 50.498114274000059 ], [ -119.115316193999917, 50.498536110000067 ], [ -119.115244851999961, 50.499603227000115 ], [ -119.116993690999919, 50.4997029150001 ], [ -119.118375914999945, 50.499672625000095 ], [ -119.121666710999961, 50.49960049200007 ], [ -119.121981133999967, 50.499599350000068 ], [ -119.122079312999986, 50.499598997000071 ], [ -119.122427791999925, 50.499719997000099 ], [ -119.12293106099996, 50.500027145000082 ], [ -119.124107291999934, 50.500744993000119 ], [ -119.124415392999964, 50.500898598000106 ], [ -119.124434281999953, 50.500904084000126 ], [ -119.124606281999974, 50.500954260000086 ], [ -119.124808797999975, 50.501013291000056 ], [ -119.125038909999915, 50.501037504000095 ], [ -119.125271025999965, 50.501002295000092 ], [ -119.125479780999939, 50.500896997000062 ], [ -119.125888296999932, 50.500634387000083 ], [ -119.126189805999928, 50.500395799000081 ], [ -119.126548663999955, 50.499999427000134 ], [ -119.126829008999948, 50.49968979300008 ], [ -119.127079696999957, 50.499606997000093 ], [ -119.128580605999943, 50.499586388000047 ], [ -119.130122087999965, 50.499605297000109 ], [ -119.131416050999931, 50.499606197000048 ], [ -119.132102279999913, 50.499606671000038 ], [ -119.131600968999962, 50.502888238000025 ], [ -119.131126205999962, 50.502858800000055 ], [ -119.131089958999937, 50.503096049000078 ], [ -119.130190543, 50.503040274000057 ], [ -119.130168523999941, 50.503184370000078 ], [ -119.124851806999942, 50.502854518000049 ], [ -119.124404618999932, 50.505778495000087 ], [ -119.123256502999979, 50.505707231000045 ], [ -119.123110411999946, 50.506662222000031 ], [ -119.119073901999911, 50.506411580000041 ], [ -119.119011640999958, 50.506818315000082 ], [ -119.11339650099994, 50.506469401000039 ], [ -119.113443445999962, 50.506162966000026 ], [ -119.113020810999942, 50.506136692000062 ], [ -119.113437567999966, 50.503416263000048 ], [ -119.110663515999988, 50.503243770000047 ], [ -119.110512525999965, 50.504229016000039 ], [ -119.110296114, 50.504215555000016 ], [ -119.110261927999971, 50.504438620000087 ], [ -119.106226493999927, 50.50418756100003 ], [ -119.106093808999958, 50.505052785000068 ], [ -119.111676350999986, 50.505400057000024 ], [ -119.111128219999941, 50.508976890000028 ], [ -119.110892060999916, 50.508962205000103 ], [ -119.110816534, 50.509454996000038 ], [ -119.107721700999974, 50.509262506000084 ], [ -119.107646311999972, 50.509754167000025 ], [ -119.107224401999929, 50.509727919000134 ], [ -119.107217093999949, 50.509775577000021 ], [ -119.107194471999961, 50.509774170000071 ], [ -119.107078430999962, 50.5105308790001 ], [ -119.104317644000034, 50.510359080000043 ], [ -119.104196940999898, 50.511145843000044 ], [ -119.10374772099999, 50.511117882000043 ], [ -119.098581376, 50.510796181000096 ] ], [ [ -119.118821610999987, 50.502785018000111 ], [ -119.118958627999959, 50.501889826000081 ], [ -119.117862578999947, 50.50182173400006 ], [ -119.117924641999977, 50.501416297000056 ], [ -119.11780290499992, 50.501408734000059 ], [ -119.117860050999951, 50.501035423000161 ], [ -119.115848881999966, 50.500910448000091 ], [ -119.115822981999941, 50.501079602000125 ], [ -119.115249238999965, 50.501043942000059 ], [ -119.115054416999953, 50.502316117000071 ], [ -119.114270805, 50.502267409000069 ], [ -119.114219815999945, 50.502600310000091 ], [ -119.118027499, 50.502836936000037 ], [ -119.118042851999974, 50.502736639000062 ], [ -119.118821610999987, 50.502785018000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "75180167", "BldgCostT": "52816667", "sL_LossRatio": "1", "sL_AssetLoss": "613.3", "sL_BldgLoss": "613.3", "sL_StrLoss": "613.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000792587576BC75DC05B167E3613444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.114844351, 50.535753184000022 ], [ -119.115360551999913, 50.532385015000102 ], [ -119.115136704999912, 50.532371112000057 ], [ -119.114968563999966, 50.533468244000112 ], [ -119.114722483999984, 50.533452960000076 ], [ -119.114720953999935, 50.533462949000096 ], [ -119.114471730999981, 50.533447469000059 ], [ -119.114446749999956, 50.533610455000037 ], [ -119.108828305999964, 50.533261322000037 ], [ -119.108832265999951, 50.533235502000068 ], [ -119.10854129799999, 50.533217413000074 ], [ -119.10857022099999, 50.533028870000059 ], [ -119.10849691, 50.533024312000094 ], [ -119.108498576999963, 50.533013445000066 ], [ -119.108346806, 50.533004009000067 ], [ -119.108628147999951, 50.53116995600012 ], [ -119.108895449999963, 50.529427294000072 ], [ -119.113818803999933, 50.529733275000105 ], [ -119.114068499999959, 50.528104108000058 ], [ -119.114344860999935, 50.528121278000043 ], [ -119.114355690999972, 50.528050615000083 ], [ -119.114817389999956, 50.528079297000076 ], [ -119.114859282999973, 50.527805926000056 ], [ -119.120477092000016, 50.528154757000031 ], [ -119.120434669999938, 50.528431808000093 ], [ -119.120516008999957, 50.528436857000045 ], [ -119.120488641999941, 50.528615589000076 ], [ -119.12077641499998, 50.52863345 ], [ -119.120761276999957, 50.528732309000119 ], [ -119.120984213999947, 50.528746144000088 ], [ -119.120436537999979, 50.532322922000048 ], [ -119.120297700999956, 50.532314306000089 ], [ -119.12028022199992, 50.532428448000104 ], [ -119.121851042999964, 50.532525928000034 ], [ -119.12130338899999, 50.536102692000092 ], [ -119.120955764999948, 50.536081122000084 ], [ -119.120470957999885, 50.536051038000039 ], [ -119.120463151999928, 50.53610201200005 ], [ -119.114844351, 50.535753184000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "263", "sL_BldgLoss": "263", "sL_StrLoss": "263", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A866BDB59FCA5DC0E9A683AB72364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.163466727999975, 50.423412482000039 ], [ -119.169071931999937, 50.423758902000039 ], [ -119.168987370999957, 50.424316467000068 ], [ -119.168529334999917, 50.427336380000042 ], [ -119.16292369199995, 50.426989933000108 ], [ -119.1633821, 50.423970043000118 ], [ -119.163466727999975, 50.423412482000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "227234000", "BldgCostT": "152930000", "sL_LossRatio": "0.997673305421077", "sL_AssetLoss": "9902.46", "sL_BldgLoss": "9879.42", "sL_StrLoss": "9871.1", "sL_NStrLoss": "8.32", "sL_ContLoss": "23.04", "geom_point": "0101000020E610000044DD9C84B1CA5DC0213340376E384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.162051714999947, 50.45118400300008 ], [ -119.16075158799994, 50.448954299000057 ], [ -119.160672308999921, 50.448665904000102 ], [ -119.160640834999981, 50.446939240000113 ], [ -119.160614208999903, 50.445480209000038 ], [ -119.160530102999942, 50.445392867000066 ], [ -119.160507878999937, 50.445369797000112 ], [ -119.160187317999913, 50.445309396000063 ], [ -119.159741709999963, 50.445308898000071 ], [ -119.158768495999979, 50.445305611000087 ], [ -119.158351294999989, 50.445267105000035 ], [ -119.158084390999988, 50.445179294000049 ], [ -119.157911108999897, 50.44508100000013 ], [ -119.157960881999969, 50.443757094000034 ], [ -119.157920876999981, 50.443462092000075 ], [ -119.157720113000011, 50.443246599000076 ], [ -119.157459896999953, 50.44316189200007 ], [ -119.154072907999947, 50.443148191000034 ], [ -119.151850915999958, 50.443159600000037 ], [ -119.151888683999971, 50.444371694000083 ], [ -119.150320996999966, 50.444351305000133 ], [ -119.148937702999916, 50.444346897000067 ], [ -119.147876718999925, 50.444344412000071 ], [ -119.147482904999947, 50.444291113000133 ], [ -119.146930408999964, 50.444127808000111 ], [ -119.146685207999894, 50.444083698000057 ], [ -119.14592821299999, 50.444036809000067 ], [ -119.145265308999967, 50.444031893000044 ], [ -119.145261995999988, 50.444555292000054 ], [ -119.145280476999986, 50.449034092000055 ], [ -119.143617364999969, 50.44901318100009 ], [ -119.143565931999944, 50.449012523000128 ], [ -119.141224768999933, 50.448983036000044 ], [ -119.141259572999942, 50.448754614000087 ], [ -119.14033130699994, 50.448697063000047 ], [ -119.140876393, 50.445119819000091 ], [ -119.141052631999941, 50.445130746000068 ], [ -119.141529889999973, 50.441998074 ], [ -119.141559907, 50.44199696000004 ], [ -119.141560525999978, 50.441996998000086 ], [ -119.141560535999986, 50.441996936000074 ], [ -119.146672211999913, 50.441807026000056 ], [ -119.149091335999941, 50.441757676000066 ], [ -119.149061608999915, 50.440634501000019 ], [ -119.149043020999926, 50.440013167000124 ], [ -119.149024429999955, 50.439377923000016 ], [ -119.14898802499998, 50.438174024000041 ], [ -119.148982096999958, 50.437975146000134 ], [ -119.14919297899992, 50.437988208000021 ], [ -119.149466919999966, 50.436187693000122 ], [ -119.155073600999955, 50.436534816000069 ], [ -119.154898054999975, 50.437689578000054 ], [ -119.156370340999928, 50.437780682000053 ], [ -119.156282486999913, 50.438358695000019 ], [ -119.157938431, 50.438461140000108 ], [ -119.157922053999982, 50.438568914000015 ], [ -119.157866513999977, 50.438934395000075 ], [ -119.158479619999966, 50.438972318000054 ], [ -119.158487674999947, 50.438919305000077 ], [ -119.15869212299999, 50.438931951000036 ], [ -119.158739517999962, 50.438620030000017 ], [ -119.158775213999945, 50.438385095000108 ], [ -119.15861346299999, 50.43837509100004 ], [ -119.159156976999924, 50.434797711000073 ], [ -119.161345381999951, 50.434933046000047 ], [ -119.161562545999956, 50.433503063000032 ], [ -119.161832241999917, 50.433519739000047 ], [ -119.161841135999921, 50.433461169000104 ], [ -119.163820776999955, 50.433583551000062 ], [ -119.16404431499997, 50.432111016000107 ], [ -119.164376131, 50.432131525000024 ], [ -119.164438819999958, 50.431718524000082 ], [ -119.165759024999915, 50.431800115000058 ], [ -119.166014041999972, 50.430119656000066 ], [ -119.167563485999949, 50.430215395000047 ], [ -119.16756417, 50.430210892000105 ], [ -119.168743192999955, 50.430283728000099 ], [ -119.168875857999964, 50.429409120000116 ], [ -119.169953269999922, 50.429475668000087 ], [ -119.169997921999979, 50.429181245000073 ], [ -119.170068813999976, 50.429185623000059 ], [ -119.170198260999911, 50.428332047000076 ], [ -119.171810905999934, 50.428431633000052 ], [ -119.171856199999951, 50.428132884000064 ], [ -119.171952908999955, 50.428138856000039 ], [ -119.171933381999935, 50.428203867000065 ], [ -119.171864818999964, 50.428431906000142 ], [ -119.171963418999951, 50.428668203000051 ], [ -119.172206773999932, 50.428872794000036 ], [ -119.172611494999941, 50.429123518000047 ], [ -119.174840425999932, 50.430312808000096 ], [ -119.17507081399998, 50.430024602000039 ], [ -119.175157512999931, 50.429172289000107 ], [ -119.175243113999969, 50.428905891000134 ], [ -119.175418359999952, 50.42877324800007 ], [ -119.176890509999922, 50.427658903000058 ], [ -119.176933385999973, 50.42763250400003 ], [ -119.177450510999932, 50.427314295000045 ], [ -119.177858093999987, 50.427126412000035 ], [ -119.178169485999931, 50.427059813 ], [ -119.178539181999923, 50.427036907000065 ], [ -119.178746287999928, 50.427024097000114 ], [ -119.183304307999961, 50.427002699000099 ], [ -119.18328660899999, 50.429745887000081 ], [ -119.183284075999964, 50.432340583000091 ], [ -119.183282279999943, 50.434227864000064 ], [ -119.183280576999948, 50.436010668000101 ], [ -119.183278296999973, 50.438352002000038 ], [ -119.183239081999943, 50.438782653000075 ], [ -119.18313905399998, 50.439881325000087 ], [ -119.182964274999975, 50.441799900000092 ], [ -119.182794888, 50.443572652000107 ], [ -119.182571992999939, 50.445904789000096 ], [ -119.182412500999973, 50.447406116000082 ], [ -119.182352508999926, 50.447643550000059 ], [ -119.182281987999929, 50.447922491000057 ], [ -119.182123209999958, 50.448214204000109 ], [ -119.1817217, 50.448762701000085 ], [ -119.181537514999931, 50.448950900000135 ], [ -119.18094150499995, 50.449409704000075 ], [ -119.180001593999961, 50.449850101000038 ], [ -119.179141672999961, 50.450152893000109 ], [ -119.17901767599993, 50.450196529000017 ], [ -119.178172773999933, 50.450494037000091 ], [ -119.177141341999913, 50.450857170000049 ], [ -119.170117520999909, 50.453329705000122 ], [ -119.168351034999958, 50.453944199000063 ], [ -119.166869089999949, 50.454459664000076 ], [ -119.166520413999947, 50.45458096700002 ], [ -119.165290903999974, 50.455008580000055 ], [ -119.164868207999959, 50.454558205000055 ], [ -119.164413385999964, 50.454011116000068 ], [ -119.1643137, 50.453921814000104 ], [ -119.16362947599994, 50.453108570000069 ], [ -119.163096789999955, 50.452475383 ], [ -119.162898766999945, 50.452364545000123 ], [ -119.162868515999946, 50.45234759700007 ], [ -119.162593288999915, 50.452314294000047 ], [ -119.162633994999965, 50.452000012000028 ], [ -119.162628233999953, 50.45198837600006 ], [ -119.162541903999937, 50.451814606000049 ], [ -119.162051714999947, 50.45118400300008 ] ], [ [ -119.17433089599993, 50.449476220000115 ], [ -119.174680708999958, 50.447169095000092 ], [ -119.180288946999966, 50.447514938000047 ], [ -119.18023596899998, 50.447864649000017 ], [ -119.180372581999961, 50.44787307000005 ], [ -119.180911699999967, 50.444314031000026 ], [ -119.181094324999933, 50.444325287 ], [ -119.181175818999989, 50.443787230000041 ], [ -119.181074894999981, 50.443781010000073 ], [ -119.181065104999931, 50.443845652000036 ], [ -119.179762840999942, 50.443765373000105 ], [ -119.179748447999941, 50.443860383000072 ], [ -119.174140668999939, 50.443514511000089 ], [ -119.174268354999953, 50.442672311000095 ], [ -119.173444805999935, 50.442621492000093 ], [ -119.173625186999971, 50.441431820000041 ], [ -119.173627648999982, 50.441415579000108 ], [ -119.171361747999953, 50.441275725000061 ], [ -119.171347284999968, 50.441371088000018 ], [ -119.1711154199999, 50.44289978200004 ], [ -119.167847309999942, 50.442697988000084 ], [ -119.16776953699997, 50.44321049000007 ], [ -119.168795470999953, 50.443273849000072 ], [ -119.168740636999942, 50.44363522900008 ], [ -119.170808332000021, 50.443762893000098 ], [ -119.170757119999948, 50.444100503000122 ], [ -119.171299438999966, 50.444133980000068 ], [ -119.171164271999956, 50.445025091000062 ], [ -119.173898116999965, 50.445193812000134 ], [ -119.173355645999919, 50.448771217000058 ], [ -119.169944655999984, 50.448560697000111 ], [ -119.169818287999973, 50.449393547000099 ], [ -119.170690822, 50.449447408000076 ], [ -119.170548574999884, 50.450385009000087 ], [ -119.17198145199994, 50.450473445000078 ], [ -119.172153097999924, 50.449341843000077 ], [ -119.17433089599993, 50.449476220000115 ] ], [ [ -119.165610765999986, 50.441875357000079 ], [ -119.165727123999915, 50.441108811000049 ], [ -119.165176828999918, 50.441074811000121 ], [ -119.164875491999965, 50.441056192000119 ], [ -119.164860379999979, 50.441155742 ], [ -119.164759118999953, 50.44182273600007 ], [ -119.165610765999986, 50.441875357000079 ] ], [ [ -119.168989874999951, 50.43915762200001 ], [ -119.169437852, 50.436204649000068 ], [ -119.170003481999942, 50.436239579000109 ], [ -119.17001332800001, 50.436174662000077 ], [ -119.174717041999898, 50.436465020000099 ], [ -119.17482774399997, 50.435734671000034 ], [ -119.178792640000012, 50.435979264000046 ], [ -119.179053792999952, 50.434255231000122 ], [ -119.178887269999976, 50.434244960000058 ], [ -119.179429127999967, 50.430667464000074 ], [ -119.179945798999896, 50.430699327000028 ], [ -119.180078815999948, 50.429820956000093 ], [ -119.178798925999942, 50.429742019000066 ], [ -119.178275187999986, 50.433199642 ], [ -119.177355136999935, 50.433142889000059 ], [ -119.17726317599994, 50.433749864000049 ], [ -119.17637586499994, 50.433695123000064 ], [ -119.176322350999939, 50.43404828399999 ], [ -119.172675101999943, 50.433823201000074 ], [ -119.172627894999962, 50.434134569000101 ], [ -119.171078304999938, 50.434038902000118 ], [ -119.171077621999942, 50.434043405000061 ], [ -119.169757342999915, 50.433961877000087 ], [ -119.169502442999985, 50.4356423360001 ], [ -119.169170599999958, 50.435621842000089 ], [ -119.169107947999962, 50.436034844000119 ], [ -119.167128184999981, 50.43591255700008 ], [ -119.166904727999977, 50.437385091000088 ], [ -119.166635006999968, 50.43736842800007 ], [ -119.16662611799994, 50.43742699800007 ], [ -119.164599324999983, 50.437301763000036 ], [ -119.164580314999952, 50.437426995000109 ], [ -119.166952848000022, 50.437573588000063 ], [ -119.166733605999966, 50.439018260000083 ], [ -119.168989874999951, 50.43915762200001 ] ], [ [ -119.180156602999929, 50.437915795000094 ], [ -119.180052785, 50.438601232000046 ], [ -119.180299140999978, 50.438616421000106 ], [ -119.180199370999958, 50.439275131000088 ], [ -119.182360909999929, 50.43940837700012 ], [ -119.182564429999957, 50.438064226000115 ], [ -119.180156602999929, 50.437915795000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "195884392", "BldgCostT": "122851976", "sL_LossRatio": "0.997035246982044", "sL_AssetLoss": "13937.080002871", "sL_BldgLoss": "13895.760002871", "sL_StrLoss": "13880.800002871", "sL_NStrLoss": "14.96", "sL_ContLoss": "41.32", "geom_point": "0101000020E6100000B8A31FAAFCCB5DC06A25A6D105394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.184099818, 50.444360631000102 ], [ -119.184069069999936, 50.443596706000037 ], [ -119.184066215999934, 50.443488787000092 ], [ -119.184054156999977, 50.443031599000044 ], [ -119.184160443999986, 50.442806158000046 ], [ -119.184399019999915, 50.442389360000085 ], [ -119.184504590999921, 50.441691737000028 ], [ -119.184863216999943, 50.441659699000098 ], [ -119.184911605999929, 50.441658894000057 ], [ -119.185770146999971, 50.441644601000071 ], [ -119.186328597999946, 50.44163531100002 ], [ -119.186839292999935, 50.44162609800005 ], [ -119.188052602999988, 50.441603388000047 ], [ -119.188645602999941, 50.441592896000031 ], [ -119.18934408399997, 50.441573074000054 ], [ -119.19002969899999, 50.441553604000056 ], [ -119.19005559, 50.442579690000102 ], [ -119.190072523999945, 50.443497002000065 ], [ -119.190771314999935, 50.443492314000139 ], [ -119.191460690999989, 50.443487703000145 ], [ -119.191461100999931, 50.444308288000073 ], [ -119.191724782999984, 50.444308038000088 ], [ -119.19185181899999, 50.444307913000088 ], [ -119.192457394999948, 50.444307309000074 ], [ -119.192595347999955, 50.444692587000127 ], [ -119.19265567099994, 50.444861044000042 ], [ -119.192981285000016, 50.445770362000083 ], [ -119.193233614999912, 50.446475109000069 ], [ -119.19341260199991, 50.446974905000069 ], [ -119.19126410699991, 50.447266917000093 ], [ -119.18976980199993, 50.447462904000105 ], [ -119.189122863999955, 50.447548575000091 ], [ -119.189365095999946, 50.448332594000071 ], [ -119.188948506999964, 50.448354803000058 ], [ -119.186945600999977, 50.448622801000077 ], [ -119.185436793999941, 50.448824648000056 ], [ -119.184323408999987, 50.448973605000042 ], [ -119.182927618999926, 50.449157752000069 ], [ -119.182742218999962, 50.449182199000106 ], [ -119.182204644999928, 50.449295394000025 ], [ -119.181641405999954, 50.449413987000078 ], [ -119.180001593999961, 50.449850101000038 ], [ -119.18094150499995, 50.449409704000075 ], [ -119.181537514999931, 50.448950900000135 ], [ -119.1817217, 50.448762701000085 ], [ -119.182123209999958, 50.448214204000109 ], [ -119.182281987999929, 50.447922491000057 ], [ -119.182352508999926, 50.447643550000059 ], [ -119.182412500999973, 50.447406116000082 ], [ -119.182571992999939, 50.445904789000096 ], [ -119.183007676999921, 50.445899710000035 ], [ -119.184161091999911, 50.445886195000078 ], [ -119.184120750999952, 50.444881915000018 ], [ -119.184099818, 50.444360631000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "270407594", "BldgCostT": "175418097", "sL_LossRatio": "0.999170907595094", "sL_AssetLoss": "18767.51", "sL_BldgLoss": "18751.95", "sL_StrLoss": "18746.3", "sL_NStrLoss": "5.65", "sL_ContLoss": "15.56", "geom_point": "0101000020E6100000DD804A8DF7CB5DC0ED88E00BD5374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.183278296999973, 50.438352002000038 ], [ -119.183280576999948, 50.436010668000101 ], [ -119.183282279999943, 50.434227864000064 ], [ -119.183284075999964, 50.432340583000091 ], [ -119.18328660899999, 50.429745887000081 ], [ -119.185152524, 50.429754633000059 ], [ -119.18619489299999, 50.429759500000088 ], [ -119.187901975999978, 50.429767434000098 ], [ -119.188728686999966, 50.429771271000043 ], [ -119.190586846999977, 50.429779885000031 ], [ -119.191132092, 50.429782394000078 ], [ -119.19113175699999, 50.42988624500007 ], [ -119.190851843999951, 50.429891519000066 ], [ -119.19088918599995, 50.430700330000022 ], [ -119.191129134999969, 50.430695811000106 ], [ -119.191126611999906, 50.431474608000073 ], [ -119.191124512999934, 50.43223729700005 ], [ -119.191119712, 50.432948234000044 ], [ -119.191117913000014, 50.433216287000022 ], [ -119.191187883999959, 50.433686388000091 ], [ -119.19125832, 50.434159308000091 ], [ -119.19138971299999, 50.437036816000109 ], [ -119.1913968, 50.437191898000037 ], [ -119.19147229899994, 50.438797948000108 ], [ -119.191506702999931, 50.44009549800009 ], [ -119.191538730999952, 50.440800622000097 ], [ -119.188037414999911, 50.440862193000051 ], [ -119.188052602999988, 50.441603388000047 ], [ -119.186839292999935, 50.44162609800005 ], [ -119.186328597999946, 50.44163531100002 ], [ -119.185770146999971, 50.441644601000071 ], [ -119.184911605999929, 50.441658894000057 ], [ -119.184863216999943, 50.441659699000098 ], [ -119.184504590999921, 50.441691737000028 ], [ -119.184399019999915, 50.442389360000085 ], [ -119.184160443999986, 50.442806158000046 ], [ -119.184054156999977, 50.443031599000044 ], [ -119.184066215999934, 50.443488787000092 ], [ -119.184069069999936, 50.443596706000037 ], [ -119.184099818, 50.444360631000102 ], [ -119.184120750999952, 50.444881915000018 ], [ -119.184161091999911, 50.445886195000078 ], [ -119.183007676999921, 50.445899710000035 ], [ -119.182571992999939, 50.445904789000096 ], [ -119.182794888, 50.443572652000107 ], [ -119.182964274999975, 50.441799900000092 ], [ -119.18313905399998, 50.439881325000087 ], [ -119.183239081999943, 50.438782653000075 ], [ -119.183278296999973, 50.438352002000038 ] ], [ [ -119.188677960999939, 50.437951398000088 ], [ -119.188837623999945, 50.436895890000081 ], [ -119.188550735999954, 50.436878224000033 ], [ -119.188730627999973, 50.435688972000051 ], [ -119.188530116999942, 50.435676624000095 ], [ -119.188705192, 50.434519187000085 ], [ -119.187686562999886, 50.434538351000093 ], [ -119.187661701999914, 50.433999142000054 ], [ -119.186395374999933, 50.434022954000071 ], [ -119.186420221999953, 50.434562163000095 ], [ -119.185998105999943, 50.434570097000112 ], [ -119.186010529999962, 50.434839702000083 ], [ -119.184744177999946, 50.434863496000041 ], [ -119.184682108999979, 50.433515471000085 ], [ -119.18465658099997, 50.433515950000064 ], [ -119.184496685999974, 50.434572430000067 ], [ -119.1846632099999, 50.434582692000056 ], [ -119.18438869499991, 50.436396423000083 ], [ -119.188438416999958, 50.436645891000033 ], [ -119.188244959999963, 50.437924734000056 ], [ -119.188677960999939, 50.437951398000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "131022000", "BldgCostT": "86940000", "sL_LossRatio": "0.997453898590478", "sL_AssetLoss": "11782.72", "sL_BldgLoss": "11752.72", "sL_StrLoss": "11741.9", "sL_NStrLoss": "10.82", "sL_ContLoss": "30", "geom_point": "0101000020E6100000B1FED81C4ECC5DC0FA96072355384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.191461100999931, 50.444308288000073 ], [ -119.191460690999989, 50.443487703000145 ], [ -119.190771314999935, 50.443492314000139 ], [ -119.190072523999945, 50.443497002000065 ], [ -119.19005559, 50.442579690000102 ], [ -119.19002969899999, 50.441553604000056 ], [ -119.18934408399997, 50.441573074000054 ], [ -119.188645602999941, 50.441592896000031 ], [ -119.188052602999988, 50.441603388000047 ], [ -119.188037414999911, 50.440862193000051 ], [ -119.191538730999952, 50.440800622000097 ], [ -119.191506702999931, 50.44009549800009 ], [ -119.19147229899994, 50.438797948000108 ], [ -119.1913968, 50.437191898000037 ], [ -119.19138971299999, 50.437036816000109 ], [ -119.19125832, 50.434159308000091 ], [ -119.193099733999986, 50.434167806000055 ], [ -119.1933109, 50.436785916000112 ], [ -119.193324435999926, 50.43678556200009 ], [ -119.193353746999946, 50.43697490200001 ], [ -119.193597582999956, 50.437901944000046 ], [ -119.193668759999966, 50.438194640000056 ], [ -119.19396899899999, 50.438658277000066 ], [ -119.194110766999984, 50.438786451000105 ], [ -119.194317117999915, 50.438986109 ], [ -119.194553183999957, 50.439090980000117 ], [ -119.194511861999956, 50.4395365190001 ], [ -119.194521074999926, 50.439810593000054 ], [ -119.194527791999974, 50.440018705000099 ], [ -119.193517882999942, 50.440035111000029 ], [ -119.193503202999977, 50.441508295000112 ], [ -119.194503494999964, 50.441490397000038 ], [ -119.194498327999952, 50.443537401000057 ], [ -119.194485305999962, 50.444287600000102 ], [ -119.193722525999959, 50.444297568000053 ], [ -119.193254875999955, 50.444302195000041 ], [ -119.192457394999948, 50.444307309000074 ], [ -119.19185181899999, 50.444307913000088 ], [ -119.191724782999984, 50.444308038000088 ], [ -119.191461100999931, 50.444308288000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133084805", "BldgCostT": "83317266", "sL_LossRatio": "0.998466561309511", "sL_AssetLoss": "8738.53", "sL_BldgLoss": "8725.13", "sL_StrLoss": "8720.3", "sL_NStrLoss": "4.83", "sL_ContLoss": "13.4", "geom_point": "0101000020E610000041E6A12129CC5DC09062047DB7394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.184957423999919, 50.455925793000112 ], [ -119.185070625999941, 50.455178157000049 ], [ -119.184798256999969, 50.455161383000096 ], [ -119.184799111999965, 50.455155738000073 ], [ -119.18268533399997, 50.455025532000036 ], [ -119.182963691999973, 50.453175622000067 ], [ -119.18327921199996, 50.451540197000078 ], [ -119.183230419999944, 50.451448311000078 ], [ -119.185712431999917, 50.451601196000091 ], [ -119.185711576999921, 50.451606841000107 ], [ -119.187736701999938, 50.451731541000086 ], [ -119.187742256999982, 50.451694829000097 ], [ -119.183213203999955, 50.451415892000085 ], [ -119.182196449999964, 50.449501039000069 ], [ -119.182204644999928, 50.449295394000025 ], [ -119.182742218999962, 50.449182199000106 ], [ -119.182927618999926, 50.449157752000069 ], [ -119.184323408999987, 50.448973605000042 ], [ -119.185436793999941, 50.448824648000056 ], [ -119.186945600999977, 50.448622801000077 ], [ -119.188948506999964, 50.448354803000058 ], [ -119.189365095999946, 50.448332594000071 ], [ -119.189122863999955, 50.447548575000091 ], [ -119.18976980199993, 50.447462904000105 ], [ -119.19126410699991, 50.447266917000093 ], [ -119.19341260199991, 50.446974905000069 ], [ -119.193233614999912, 50.446475109000069 ], [ -119.192981285000016, 50.445770362000083 ], [ -119.19265567099994, 50.444861044000042 ], [ -119.192595347999955, 50.444692587000127 ], [ -119.192457394999948, 50.444307309000074 ], [ -119.193254875999955, 50.444302195000041 ], [ -119.193722525999959, 50.444297568000053 ], [ -119.194485305999962, 50.444287600000102 ], [ -119.194498327999952, 50.443537401000057 ], [ -119.194503494999964, 50.441490397000038 ], [ -119.195924423999926, 50.441478503000042 ], [ -119.195906897999976, 50.443233195000062 ], [ -119.195896711999978, 50.444424094000063 ], [ -119.195910393999966, 50.444867300000062 ], [ -119.19661027399999, 50.444864247000048 ], [ -119.197281108999945, 50.444861308000029 ], [ -119.197261481999988, 50.445993009000105 ], [ -119.197225410000016, 50.446428481000069 ], [ -119.197059384999974, 50.446477259000083 ], [ -119.19700919899999, 50.446492 ], [ -119.196814861999897, 50.446519548000026 ], [ -119.196387389, 50.446580088000069 ], [ -119.196666487999948, 50.447448500000121 ], [ -119.196825281999949, 50.447671321000072 ], [ -119.19377457, 50.448071299000105 ], [ -119.194055909, 50.448944393000069 ], [ -119.19417641299998, 50.449317405000031 ], [ -119.194290283999976, 50.449949112000084 ], [ -119.194322013999937, 50.450365424000054 ], [ -119.194361387999948, 50.450883209000047 ], [ -119.194355299999984, 50.451884941000102 ], [ -119.194349924999941, 50.452767024000089 ], [ -119.194349711999948, 50.452804296000053 ], [ -119.194360791999955, 50.452813101000082 ], [ -119.194551887999921, 50.452964814000076 ], [ -119.194841025999906, 50.453065605000063 ], [ -119.195176190999973, 50.453104303000011 ], [ -119.196846550999936, 50.453027868000042 ], [ -119.197625989999921, 50.4529921990001 ], [ -119.197211093999954, 50.453143693000051 ], [ -119.195951398999938, 50.453490490000078 ], [ -119.19536880899993, 50.45383379900008 ], [ -119.195177916999953, 50.453914610000027 ], [ -119.195119309999967, 50.45393939600006 ], [ -119.194818116999912, 50.453975010000093 ], [ -119.194593294999919, 50.454029811000055 ], [ -119.194498205999935, 50.454069103000073 ], [ -119.194428795999983, 50.454153291000111 ], [ -119.19439118799994, 50.454504790000044 ], [ -119.194404304999949, 50.455700808000081 ], [ -119.194407397999925, 50.456007906000131 ], [ -119.188547721999925, 50.456035496000048 ], [ -119.188400629999975, 50.456065758000058 ], [ -119.184957423999919, 50.455925793000112 ] ], [ [ -119.192612948999979, 50.451552896000095 ], [ -119.192629254999986, 50.451445077000116 ], [ -119.192270455999946, 50.451451841000043 ], [ -119.1922206, 50.45037342900013 ], [ -119.191798346999946, 50.450381385000114 ], [ -119.19178588699998, 50.450111783000075 ], [ -119.190519131999949, 50.450135645000046 ], [ -119.190531586999938, 50.450405248000067 ], [ -119.190109331999977, 50.450413199000081 ], [ -119.190134235999949, 50.450952406000113 ], [ -119.188205599999904, 50.450988702000124 ], [ -119.188122089999979, 50.451540550000054 ], [ -119.190163344999931, 50.451666198000119 ], [ -119.190166284999947, 50.451646760000052 ], [ -119.191829972999969, 50.451749140000103 ], [ -119.191830205999949, 50.451747598000068 ], [ -119.192222408999939, 50.451771730000083 ], [ -119.192258800999966, 50.451531107000029 ], [ -119.192612948999979, 50.451552896000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "245336887", "BldgCostT": "163722080", "sL_LossRatio": "1", "sL_AssetLoss": "12460.8", "sL_BldgLoss": "12460.8", "sL_StrLoss": "12460.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063ACB2C60BCD5DC0026F0EF8F8394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194404304999949, 50.455700808000081 ], [ -119.19439118799994, 50.454504790000044 ], [ -119.194428795999983, 50.454153291000111 ], [ -119.194498205999935, 50.454069103000073 ], [ -119.194593294999919, 50.454029811000055 ], [ -119.194818116999912, 50.453975010000093 ], [ -119.195119309999967, 50.45393939600006 ], [ -119.195177916999953, 50.453914610000027 ], [ -119.19536880899993, 50.45383379900008 ], [ -119.195951398999938, 50.453490490000078 ], [ -119.197211093999954, 50.453143693000051 ], [ -119.197625989999921, 50.4529921990001 ], [ -119.198327627999973, 50.452733827000024 ], [ -119.198405402999981, 50.452705191000149 ], [ -119.199675811999938, 50.452305789000071 ], [ -119.199987574999952, 50.45222658400008 ], [ -119.200934202999946, 50.45198598200006 ], [ -119.201162, 50.451892509000103 ], [ -119.202281722999928, 50.451337593000062 ], [ -119.202557490999979, 50.451123410000115 ], [ -119.202605471999917, 50.450977106000018 ], [ -119.202625717999979, 50.450915503000097 ], [ -119.202623198999959, 50.450276289000044 ], [ -119.202621516999898, 50.449369014000055 ], [ -119.202619580999951, 50.448650292000103 ], [ -119.204546819999948, 50.448661265000069 ], [ -119.205668383999949, 50.4486651940001 ], [ -119.206490994999953, 50.448672301000066 ], [ -119.207027499999953, 50.448673720000052 ], [ -119.208410565999941, 50.448677349000022 ], [ -119.209853075999959, 50.448683753000061 ], [ -119.210112151999951, 50.448684187000026 ], [ -119.210127013, 50.450112213000082 ], [ -119.210155631999925, 50.453432832000082 ], [ -119.209286285999923, 50.453379484000074 ], [ -119.209220500999919, 50.453815541000054 ], [ -119.209587128999928, 50.453838040000029 ], [ -119.209265740999967, 50.455968326000111 ], [ -119.20566933299996, 50.455988508000118 ], [ -119.203953939999934, 50.455972391000145 ], [ -119.20323392200001, 50.455970091000097 ], [ -119.203279842999919, 50.455665989000032 ], [ -119.20326453499996, 50.455665048000057 ], [ -119.203218479000029, 50.455970042000061 ], [ -119.198280733999965, 50.455954145000078 ], [ -119.198274977999944, 50.455954124000137 ], [ -119.194407397999925, 50.456007906000131 ], [ -119.194404304999949, 50.455700808000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "254330979", "BldgCostT": "161379858", "sL_LossRatio": "0.990140679721695", "sL_AssetLoss": "19250.82", "sL_BldgLoss": "19061.02", "sL_StrLoss": "18992.3", "sL_NStrLoss": "68.72", "sL_ContLoss": "189.8", "geom_point": "0101000020E6100000013023C46ECD5DC01C6D3C75B8384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.204546819999948, 50.448661265000069 ], [ -119.2045826899999, 50.447833012000068 ], [ -119.204593702999944, 50.447534895000061 ], [ -119.204615593999961, 50.447013894000079 ], [ -119.204632405999973, 50.446612925000068 ], [ -119.204507501999942, 50.446578182000046 ], [ -119.204458671999987, 50.446498447000067 ], [ -119.204417546999935, 50.446497986000061 ], [ -119.204166217999926, 50.446495046000067 ], [ -119.202322789999954, 50.446473571000119 ], [ -119.202111213999927, 50.446471096000032 ], [ -119.201912800999963, 50.44646879800009 ], [ -119.200016026999904, 50.446446646000012 ], [ -119.199997006999965, 50.446440850000066 ], [ -119.199729180999938, 50.446359498000106 ], [ -119.200006217999913, 50.446049930000086 ], [ -119.200018607999979, 50.44603607700008 ], [ -119.200250006000019, 50.445693733000084 ], [ -119.200425389999964, 50.445329004000058 ], [ -119.200547033999968, 50.444926656000128 ], [ -119.200565151999939, 50.444665984000025 ], [ -119.20070218099994, 50.443578129000066 ], [ -119.200707333999929, 50.443537337000038 ], [ -119.200850287999955, 50.443293363000087 ], [ -119.20123147399994, 50.443018013000064 ], [ -119.201600020999933, 50.442891712000076 ], [ -119.201811180999968, 50.442866554000055 ], [ -119.20221962899997, 50.442817851000058 ], [ -119.203291267999973, 50.442608384000067 ], [ -119.204352886999928, 50.442380188000072 ], [ -119.204706132999931, 50.442234006000099 ], [ -119.205032118999938, 50.442380407000073 ], [ -119.205617684999964, 50.442456987000078 ], [ -119.207673884, 50.442492104000081 ], [ -119.20763849599993, 50.441507817000044 ], [ -119.207074193999944, 50.441502437000025 ], [ -119.205462655999895, 50.441487029000086 ], [ -119.205615540999986, 50.441270755000062 ], [ -119.205708784, 50.440868463000065 ], [ -119.205710025999906, 50.440732685000022 ], [ -119.205711813000036, 50.440539167000047 ], [ -119.205716056999961, 50.440088988000142 ], [ -119.205721747999959, 50.439282339000037 ], [ -119.205726954999975, 50.438704051000087 ], [ -119.205730988, 50.438452438000084 ], [ -119.205736874999957, 50.437850688000054 ], [ -119.205738062999927, 50.43774018000007 ], [ -119.205739151999936, 50.437638706000094 ], [ -119.205745866999933, 50.437052422000079 ], [ -119.205756950999941, 50.43608870700006 ], [ -119.21553629499995, 50.43623456200001 ], [ -119.215434907999935, 50.436907485000113 ], [ -119.21006072099999, 50.436577716000066 ], [ -119.210056669999958, 50.436604584000044 ], [ -119.212051775999953, 50.436727037000018 ], [ -119.211954615999915, 50.437371570000067 ], [ -119.212364610999941, 50.437396730000074 ], [ -119.212272901999924, 50.438005115000081 ], [ -119.21561815099993, 50.438210341000087 ], [ -119.215209324999989, 50.440923570000038 ], [ -119.215489117999965, 50.440940730000058 ], [ -119.215598421999957, 50.440215313000095 ], [ -119.217000009999978, 50.440301264000077 ], [ -119.216910802999948, 50.443196115000021 ], [ -119.216914312999961, 50.443820771000048 ], [ -119.216933612999981, 50.445079501000123 ], [ -119.216895765999979, 50.448789869000073 ], [ -119.216752287999967, 50.44872781800003 ], [ -119.216526327999958, 50.448705858000032 ], [ -119.215212913999977, 50.448701381000035 ], [ -119.215045472999975, 50.448700805 ], [ -119.214697318999981, 50.44868953600006 ], [ -119.211366241999926, 50.448626755000085 ], [ -119.211362863999952, 50.448628368000065 ], [ -119.211049927999952, 50.448685895 ], [ -119.210566036999964, 50.448685030000036 ], [ -119.210112151999951, 50.448684187000026 ], [ -119.209853075999959, 50.448683753000061 ], [ -119.208410565999941, 50.448677349000022 ], [ -119.207027499999953, 50.448673720000052 ], [ -119.206490994999953, 50.448672301000066 ], [ -119.205668383999949, 50.4486651940001 ], [ -119.204546819999948, 50.448661265000069 ] ], [ [ -119.21422484599999, 50.441791291000058 ], [ -119.214233164999911, 50.441736096000078 ], [ -119.211249918999897, 50.441553060000082 ], [ -119.211254352999958, 50.441648160000071 ], [ -119.21086957299994, 50.44165547500004 ], [ -119.21084125499999, 50.441850862000123 ], [ -119.210857312999934, 50.442195386 ], [ -119.210643626999953, 50.442199447000107 ], [ -119.210446612999974, 50.442449663000069 ], [ -119.21046026499998, 50.442742609000085 ], [ -119.210202364999972, 50.442747510000132 ], [ -119.210119068000012, 50.443299846000102 ], [ -119.210684431999951, 50.443334545 ], [ -119.210765986999917, 50.442793709000028 ], [ -119.212789329999978, 50.44291786500002 ], [ -119.21297075299999, 50.441714357000087 ], [ -119.21422484599999, 50.441791291000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43", "sL_BldgLoss": "43", "sL_StrLoss": "43", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A88C986BBCA5DC0365D2E66F43E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.165146456999963, 50.491102085000101 ], [ -119.17076008399999, 50.491448391000056 ], [ -119.170620468999942, 50.49236773300008 ], [ -119.170255705999963, 50.492368895000027 ], [ -119.167822253999972, 50.492401600000115 ], [ -119.166146278999932, 50.492424088000142 ], [ -119.164945938999921, 50.492421378000103 ], [ -119.165146456999963, 50.491102085000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107771417", "BldgCostT": "74191667", "sL_LossRatio": "0.987675428752492", "sL_AssetLoss": "3029.72", "sL_BldgLoss": "2992.38", "sL_StrLoss": "2978.9", "sL_NStrLoss": "13.48", "sL_ContLoss": "37.34", "geom_point": "0101000020E61000008E8E373B0ACC5DC0773BF3593B3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.182473693999953, 50.472467184000074 ], [ -119.182841644999982, 50.470038826000078 ], [ -119.182098849999946, 50.469993078000158 ], [ -119.182640882, 50.466415724000051 ], [ -119.185347121999939, 50.466582375000073 ], [ -119.185406911999976, 50.466187576000067 ], [ -119.18227963, 50.465994991000088 ], [ -119.1828216, 50.462417619000128 ], [ -119.18410194099998, 50.462496476000119 ], [ -119.184144353999926, 50.462216449000103 ], [ -119.189754533999974, 50.462561807000078 ], [ -119.189720251999987, 50.462788338000074 ], [ -119.190842721999942, 50.46285740200009 ], [ -119.191049590999981, 50.461490168000076 ], [ -119.191016648999934, 50.461488142000086 ], [ -119.191340148, 50.459349919000054 ], [ -119.191038295999974, 50.459331347000095 ], [ -119.19127309, 50.457779374000054 ], [ -119.191128105999951, 50.457770453000109 ], [ -119.191305637, 50.456596935000071 ], [ -119.190515280999961, 50.456611820000042 ], [ -119.190293703999956, 50.458076307000084 ], [ -119.18859448399995, 50.457971732000082 ], [ -119.18810518399998, 50.461204550000041 ], [ -119.184582268999961, 50.460987656000064 ], [ -119.184481653999953, 50.461652031000071 ], [ -119.180688169999925, 50.461418352000081 ], [ -119.178871626999921, 50.461306406000055 ], [ -119.17902422, 50.460299642000052 ], [ -119.17628055599998, 50.460130504000027 ], [ -119.176234126999972, 50.460436722000075 ], [ -119.175088600999956, 50.460366084000043 ], [ -119.174942733999984, 50.461327912000108 ], [ -119.176996130999896, 50.461454525000107 ], [ -119.178506266999975, 50.46154761600009 ], [ -119.178195152999976, 50.46359998400002 ], [ -119.180140555999969, 50.463719876000035 ], [ -119.180025481999976, 50.464479170000033 ], [ -119.180671293, 50.464518962000042 ], [ -119.180129125999926, 50.468096315000047 ], [ -119.174518332999966, 50.467750472000098 ], [ -119.174633506999925, 50.466991187000126 ], [ -119.173987666999935, 50.466951360000046 ], [ -119.174298993999969, 50.46489901200006 ], [ -119.174148857999953, 50.464889753000051 ], [ -119.173921359999966, 50.466389460000045 ], [ -119.171854811999978, 50.466261993000082 ], [ -119.171860792999937, 50.466011986000105 ], [ -119.171857310999911, 50.465844381000075 ], [ -119.171807205999954, 50.46344499700006 ], [ -119.171813080999982, 50.462127398000035 ], [ -119.171877917999893, 50.461877801000099 ], [ -119.172004283999968, 50.461651836000073 ], [ -119.172180102999903, 50.461337489000123 ], [ -119.172946298999989, 50.459967612000092 ], [ -119.173048088999948, 50.459716703000026 ], [ -119.173144281999924, 50.459203491000075 ], [ -119.173140575, 50.459090739000047 ], [ -119.173136115999966, 50.458955971000066 ], [ -119.173132842, 50.458857350000052 ], [ -119.173129605999961, 50.458759403000023 ], [ -119.173062194999943, 50.458363501000058 ], [ -119.172336922999932, 50.45707412100009 ], [ -119.172052218999937, 50.456567954000072 ], [ -119.174677950999978, 50.456729938000123 ], [ -119.174724388999977, 50.456423719000043 ], [ -119.180333776999973, 50.456769556000019 ], [ -119.180181223999952, 50.457776326000086 ], [ -119.182936446999932, 50.45794608800005 ], [ -119.183037078999988, 50.457281711000086 ], [ -119.184736260999927, 50.457386371000013 ], [ -119.184957423999919, 50.455925793000112 ], [ -119.188400629999975, 50.456065758000058 ], [ -119.188547721999925, 50.456035496000048 ], [ -119.194407397999925, 50.456007906000131 ], [ -119.198274977999944, 50.455954124000137 ], [ -119.198280733999965, 50.455954145000078 ], [ -119.203218479000029, 50.455970042000061 ], [ -119.203176562999943, 50.456247618000091 ], [ -119.203157255999955, 50.456246432000121 ], [ -119.203066091999915, 50.456850119000059 ], [ -119.202745781999937, 50.456830444000076 ], [ -119.202737479999897, 50.456885427000039 ], [ -119.198216644999931, 50.456607647000084 ], [ -119.197949528999985, 50.458375125000067 ], [ -119.199339212, 50.458460533000064 ], [ -119.19929618599997, 50.45874527600003 ], [ -119.199907111999934, 50.458782818000088 ], [ -119.19985757799999, 50.459110663000025 ], [ -119.201597680999924, 50.459217573000089 ], [ -119.201583292999914, 50.459312829000076 ], [ -119.205688858999977, 50.459564959000012 ], [ -119.205605760999958, 50.460115395000088 ], [ -119.205765619999937, 50.460125208000058 ], [ -119.207192847999977, 50.460212818000031 ], [ -119.206652835999975, 50.463790319000054 ], [ -119.205771521999949, 50.463736223000055 ], [ -119.202909429999963, 50.463560492000099 ], [ -119.202619156999958, 50.465482207 ], [ -119.200240528999956, 50.46533610500007 ], [ -119.200160371999971, 50.46586656300007 ], [ -119.196948129999967, 50.465669175000102 ], [ -119.196925925999963, 50.465816037000074 ], [ -119.194372416999954, 50.4656590600001 ], [ -119.193998629999939, 50.468130398000042 ], [ -119.190805568999906, 50.467934020000065 ], [ -119.190545265999944, 50.469654074000076 ], [ -119.189057057999904, 50.469562515000113 ], [ -119.18868241899996, 50.472037310000047 ], [ -119.18820695, 50.472008053000096 ], [ -119.188085135999955, 50.472812622000099 ], [ -119.183776745999921, 50.47254742500013 ], [ -119.182473693999953, 50.472467184000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4768750", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "803", "sL_BldgLoss": "803", "sL_StrLoss": "803", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023609DF864CB5DC0B7973446EB394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.170117520999909, 50.453329705000122 ], [ -119.177141341999913, 50.450857170000049 ], [ -119.178172773999933, 50.450494037000091 ], [ -119.17901767599993, 50.450196529000017 ], [ -119.179141672999961, 50.450152893000109 ], [ -119.180001593999961, 50.449850101000038 ], [ -119.181641405999954, 50.449413987000078 ], [ -119.182204644999928, 50.449295394000025 ], [ -119.182196449999964, 50.449501039000069 ], [ -119.183213203999955, 50.451415892000085 ], [ -119.18248663299994, 50.451371127000073 ], [ -119.182604597999941, 50.450592242000077 ], [ -119.181368006999918, 50.450516041000121 ], [ -119.181245315999917, 50.45132599300009 ], [ -119.183230419999944, 50.451448311000078 ], [ -119.18327921199996, 50.451540197000078 ], [ -119.182963691999973, 50.453175622000067 ], [ -119.18268533399997, 50.455025532000036 ], [ -119.179561591999942, 50.454833038000046 ], [ -119.18005064099999, 50.451605469000086 ], [ -119.17749482499994, 50.451447905000066 ], [ -119.177219367999939, 50.453265218000091 ], [ -119.174003177999964, 50.453066857000124 ], [ -119.17378258699992, 50.454521393000107 ], [ -119.172975146999974, 50.45447157800006 ], [ -119.172933262999948, 50.454747712000049 ], [ -119.170847243999901, 50.454618989000046 ], [ -119.170321702999942, 50.453802690000025 ], [ -119.170213789999963, 50.453552775000055 ], [ -119.170213713999942, 50.4535525410001 ], [ -119.170117520999909, 50.453329705000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.7", "sL_BldgLoss": "48.7", "sL_StrLoss": "48.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E756A58036CD5DC02B496440723A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.203437694999963, 50.45707119500004 ], [ -119.203586098999949, 50.456088410000078 ], [ -119.203219455999943, 50.456065890000076 ], [ -119.20323392200001, 50.455970091000097 ], [ -119.203953939999934, 50.455972391000145 ], [ -119.20566933299996, 50.455988508000118 ], [ -119.209265740999967, 50.455968326000111 ], [ -119.209047382999984, 50.457415580000031 ], [ -119.205697760999968, 50.457209978000016 ], [ -119.203437694999963, 50.45707119500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66666995", "BldgCostT": "43054077", "sL_LossRatio": "0.997021849414496", "sL_AssetLoss": "5876.13", "sL_BldgLoss": "5858.63", "sL_StrLoss": "5852.3", "sL_NStrLoss": "6.33", "sL_ContLoss": "17.5", "geom_point": "0101000020E61000001104D9FC09CD5DC00FD085AAFB3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.192262480999915, 50.495397509000043 ], [ -119.192508892999967, 50.493769818 ], [ -119.19225499199996, 50.493754212000063 ], [ -119.192328013999898, 50.493271862000043 ], [ -119.191270995999929, 50.493206886000053 ], [ -119.191812580999951, 50.489629589000046 ], [ -119.194044053999946, 50.489766748000072 ], [ -119.194196624999933, 50.488758542000021 ], [ -119.194780786999942, 50.488794440000063 ], [ -119.195023412999916, 50.48880935000011 ], [ -119.195152357000012, 50.487957134000062 ], [ -119.19478417299996, 50.487934509000098 ], [ -119.192217000999975, 50.487776722000042 ], [ -119.1922347349999, 50.487659555000079 ], [ -119.18982308599999, 50.487511272000042 ], [ -119.189629100999966, 50.488792348000047 ], [ -119.184015660999933, 50.488446994000071 ], [ -119.184131373999932, 50.487683467000124 ], [ -119.181037718999946, 50.487493014000087 ], [ -119.181392535999976, 50.485152654000025 ], [ -119.181580046999954, 50.483915742000086 ], [ -119.183327835999961, 50.484023352000129 ], [ -119.18341659399999, 50.483437683 ], [ -119.188339947999964, 50.483740659000063 ], [ -119.188781706999961, 50.480823399000016 ], [ -119.19010565799999, 50.480904835000054 ], [ -119.190265747999888, 50.479847346000049 ], [ -119.184874600999962, 50.47951563600008 ], [ -119.185416527999976, 50.47593831000011 ], [ -119.189940335999964, 50.476216673000089 ], [ -119.19102842399991, 50.476283599000098 ], [ -119.19093064899999, 50.47692959000004 ], [ -119.190753064999925, 50.478102836000076 ], [ -119.191564156999959, 50.478152717000071 ], [ -119.196144085999947, 50.478434261000054 ], [ -119.196000054, 50.479386543000011 ], [ -119.196295337999985, 50.479404689000035 ], [ -119.196779518999918, 50.476203171000108 ], [ -119.202391534999933, 50.476547885000038 ], [ -119.201850945999965, 50.480125290000103 ], [ -119.198094254999916, 50.479894572000084 ], [ -119.197758897999975, 50.482112323000088 ], [ -119.198492756999883, 50.482157404000077 ], [ -119.198446420999971, 50.482463846000059 ], [ -119.198868865999941, 50.482489794000053 ], [ -119.198327924999944, 50.486067156000111 ], [ -119.198142853, 50.486055789000012 ], [ -119.198078727999928, 50.486479818000085 ], [ -119.198645786, 50.486514647000035 ], [ -119.199040987999965, 50.483901041000102 ], [ -119.204653977999939, 50.484245637000114 ], [ -119.204627584999969, 50.484420329000109 ], [ -119.205356081, 50.484465032000081 ], [ -119.205596961999944, 50.482870388000066 ], [ -119.206274365999946, 50.482911952000094 ], [ -119.206583329999916, 50.480866206000037 ], [ -119.20785155599998, 50.480944010000059 ], [ -119.207988015999916, 50.48004023700004 ], [ -119.209014097999926, 50.480103174000071 ], [ -119.209056935999968, 50.479819407000079 ], [ -119.207794505999956, 50.479741970000127 ], [ -119.207918702999962, 50.478919405000077 ], [ -119.207618155999953, 50.478900967000087 ], [ -119.207683973999949, 50.478465059000044 ], [ -119.206363347, 50.478384033000097 ], [ -119.206903557999951, 50.474806598000036 ], [ -119.206960753999937, 50.474810107000067 ], [ -119.20728466, 50.472664802000097 ], [ -119.207717787, 50.472691378000057 ], [ -119.208012937999968, 50.470736214000077 ], [ -119.208270616999968, 50.470752024000035 ], [ -119.208370558999917, 50.470089921000124 ], [ -119.209206704999971, 50.47014121800008 ], [ -119.209411785999976, 50.468782341000072 ], [ -119.211531728999915, 50.468912370000055 ], [ -119.212984196999955, 50.469001435000031 ], [ -119.213143370999944, 50.467946124000072 ], [ -119.213900488, 50.467992543000086 ], [ -119.213919497999939, 50.467866496000106 ], [ -119.213830831999942, 50.467861061000079 ], [ -119.214061699999945, 50.466330180000043 ], [ -119.212315688999951, 50.466223123000056 ], [ -119.21285528199995, 50.462645605000056 ], [ -119.214781960999957, 50.462763739000096 ], [ -119.214782988, 50.462756925000079 ], [ -119.211749517999976, 50.462570914000032 ], [ -119.211986042999939, 50.461002811000114 ], [ -119.211828026999953, 50.460993119000129 ], [ -119.211890732999947, 50.460577387000086 ], [ -119.211062732999906, 50.460526599000119 ], [ -119.211602357999965, 50.456949062000106 ], [ -119.21237620899997, 50.456996530000069 ], [ -119.212389774999934, 50.456906562000043 ], [ -119.21232912499994, 50.456902842000083 ], [ -119.212868604999983, 50.45332528200008 ], [ -119.213217972999985, 50.453346711000101 ], [ -119.213244496999948, 50.453170791000062 ], [ -119.21364696799999, 50.453195476000083 ], [ -119.213977857999936, 50.451000637000014 ], [ -119.213652495999895, 50.450980682000065 ], [ -119.21356525, 50.451559392000085 ], [ -119.211174461999946, 50.451412732000065 ], [ -119.210863239999966, 50.453476249000033 ], [ -119.210155631999925, 50.453432832000082 ], [ -119.210127013, 50.450112213000082 ], [ -119.210112151999951, 50.448684187000026 ], [ -119.210566036999964, 50.448685030000036 ], [ -119.211049927999952, 50.448685895 ], [ -119.211362863999952, 50.448628368000065 ], [ -119.211366241999926, 50.448626755000085 ], [ -119.214697318999981, 50.44868953600006 ], [ -119.215045472999975, 50.448700805 ], [ -119.215212913999977, 50.448701381000035 ], [ -119.216526327999958, 50.448705858000032 ], [ -119.216752287999967, 50.44872781800003 ], [ -119.216895765999979, 50.448789869000073 ], [ -119.216985170999948, 50.448900964000103 ], [ -119.216991018999977, 50.44896305900005 ], [ -119.21701134499996, 50.449177880000015 ], [ -119.217028120999899, 50.450782427000092 ], [ -119.215779069999954, 50.450705850000105 ], [ -119.215840632999928, 50.450297352000128 ], [ -119.215161876999929, 50.45025573300007 ], [ -119.215089124999935, 50.450738424000107 ], [ -119.217028902999971, 50.450857355000032 ], [ -119.217056212999921, 50.453469102000085 ], [ -119.217062319999982, 50.454053530000103 ], [ -119.217073584999952, 50.455132917000128 ], [ -119.21708111, 50.455852819000029 ], [ -119.217446698999979, 50.455813681000066 ], [ -119.217613856999918, 50.45591150700006 ], [ -119.217856379999887, 50.455965135000064 ], [ -119.217512670999938, 50.455963804000113 ], [ -119.217081920999959, 50.455963781000051 ], [ -119.217088557999929, 50.456877649000056 ], [ -119.217094765999931, 50.45773169700005 ], [ -119.217101097999915, 50.458603952000033 ], [ -119.217101822999922, 50.458702836000079 ], [ -119.217104619999958, 50.459089511000037 ], [ -119.217111702999944, 50.460060874000128 ], [ -119.217117176999963, 50.460816278000074 ], [ -119.217120770999941, 50.461311052000042 ], [ -119.21712455699992, 50.461832791000042 ], [ -119.217129791999952, 50.462552243000076 ], [ -119.217135483, 50.463334410000115 ], [ -119.217138736, 50.463784229000098 ], [ -119.217143799999917, 50.464476747000028 ], [ -119.217169157999976, 50.467965998000125 ], [ -119.217172604000012, 50.468433810000079 ], [ -119.217175667000021, 50.468856672000079 ], [ -119.217176997, 50.469041896000121 ], [ -119.217162793999947, 50.470286422000086 ], [ -119.2171611099999, 50.470433691000089 ], [ -119.221726206999932, 50.470442613000039 ], [ -119.22264180799999, 50.470444371000099 ], [ -119.222881170999955, 50.470444843000045 ], [ -119.223434039, 50.470445904 ], [ -119.223107547999959, 50.472613623000058 ], [ -119.220722304999967, 50.472467582000014 ], [ -119.220687844999986, 50.472696278000107 ], [ -119.218285367999925, 50.472549129000079 ], [ -119.218239347999898, 50.472854433000045 ], [ -119.214903179999936, 50.472650009000091 ], [ -119.214439644999956, 50.475723514000109 ], [ -119.214402235999941, 50.475721220000011 ], [ -119.214305674999977, 50.476361415000042 ], [ -119.213671481999938, 50.476322543000023 ], [ -119.213646184999973, 50.476490243000065 ], [ -119.213946717999988, 50.476508664000079 ], [ -119.21391050699999, 50.476748723000043 ], [ -119.215548683999927, 50.476849121000107 ], [ -119.215009133999928, 50.480426588000071 ], [ -119.21463328599999, 50.480403557000074 ], [ -119.214380900999956, 50.482076699000061 ], [ -119.213354764999934, 50.482013811000108 ], [ -119.213099175999986, 50.483707802000012 ], [ -119.214062360999947, 50.483689477000041 ], [ -119.21411277299994, 50.484767866 ], [ -119.213690219999961, 50.484775906000046 ], [ -119.213698291999918, 50.484948611000107 ], [ -119.213932875999916, 50.48496298700011 ], [ -119.213530018999975, 50.484980105000027 ], [ -119.213299383999981, 50.485006496000089 ], [ -119.213119566999964, 50.485081292000075 ], [ -119.212990300999962, 50.485225003000039 ], [ -119.212779920999949, 50.485727509000064 ], [ -119.212678606999972, 50.485816984000131 ], [ -119.21257081, 50.485846503000047 ], [ -119.212443194999935, 50.485830478000018 ], [ -119.212428998999883, 50.485828693000052 ], [ -119.212291882999978, 50.48572378900009 ], [ -119.211863903999969, 50.48516229700008 ], [ -119.211810164999974, 50.485132075000102 ], [ -119.211645403999938, 50.485039322 ], [ -119.211474886999952, 50.484943393000037 ], [ -119.210855720000012, 50.484973199000095 ], [ -119.209886897, 50.484955295000084 ], [ -119.209328381999967, 50.485051902000116 ], [ -119.208508168999956, 50.48546910400006 ], [ -119.20780808399995, 50.485825194000036 ], [ -119.207016897999921, 50.486309290000108 ], [ -119.206273215999929, 50.48706069800005 ], [ -119.206180478999954, 50.487223794000052 ], [ -119.206062139999943, 50.487210758000025 ], [ -119.205718024999953, 50.487172808000139 ], [ -119.20537161299994, 50.487187690000063 ], [ -119.20507068199997, 50.487313596000078 ], [ -119.204634193999965, 50.487765212000035 ], [ -119.20447165399996, 50.487895875000028 ], [ -119.204162027999985, 50.488144810000037 ], [ -119.203283203999959, 50.488851283000059 ], [ -119.203092006999938, 50.488898186000064 ], [ -119.202931100999962, 50.488856708000064 ], [ -119.202846299999962, 50.488743202000123 ], [ -119.202817578999912, 50.48838939400013 ], [ -119.202572697999983, 50.487882419000059 ], [ -119.2025516799999, 50.487767934000018 ], [ -119.202549724, 50.487757029000122 ], [ -119.202548105999938, 50.487748268000082 ], [ -119.20252999799996, 50.487649610000041 ], [ -119.202568381999953, 50.487470593000076 ], [ -119.203101784999916, 50.486799307000069 ], [ -119.203384208999935, 50.486280391000093 ], [ -119.20376979299999, 50.485771505000059 ], [ -119.204005805999913, 50.485212802000063 ], [ -119.204264210999966, 50.484861308000077 ], [ -119.204330403999975, 50.484685806000087 ], [ -119.204251897999981, 50.484568105000086 ], [ -119.20406690899992, 50.484573908000066 ], [ -119.203781580999973, 50.484755907000093 ], [ -119.202788483999939, 50.485639106000122 ], [ -119.202432681999937, 50.48590327200008 ], [ -119.20208658699994, 50.486160193000046 ], [ -119.201088797999944, 50.486783103000079 ], [ -119.20087898599999, 50.487046391000042 ], [ -119.200510289999968, 50.487827113000051 ], [ -119.200027501999941, 50.488321891000076 ], [ -119.200005334999943, 50.488378999000105 ], [ -119.199923202999969, 50.488590803000093 ], [ -119.19995841399998, 50.488985607000053 ], [ -119.19964209299998, 50.489840899000129 ], [ -119.199480593999951, 50.490656010000059 ], [ -119.199306584999974, 50.490953993000034 ], [ -119.199244576999945, 50.491035675 ], [ -119.199148397999963, 50.49116229000002 ], [ -119.19899352499999, 50.491366210000095 ], [ -119.198413222999989, 50.491850496000033 ], [ -119.1981626199999, 50.491962394000041 ], [ -119.197762713999936, 50.492030802000066 ], [ -119.197229793999952, 50.491976411000095 ], [ -119.195661783000034, 50.491601194000069 ], [ -119.197063209999925, 50.49276859000009 ], [ -119.197202118999911, 50.492926997000133 ], [ -119.197277494, 50.493140111000045 ], [ -119.197276874999943, 50.493256489000011 ], [ -119.1971636899999, 50.493471597000074 ], [ -119.19610817599991, 50.494286899000031 ], [ -119.195488207999972, 50.494686608000087 ], [ -119.195167787999964, 50.494978304 ], [ -119.19482470199992, 50.495414665000112 ], [ -119.194802893999977, 50.495442402000045 ], [ -119.194791497999958, 50.495552921000098 ], [ -119.192262480999915, 50.495397509000043 ] ], [ [ -119.21157756799991, 50.484818624000141 ], [ -119.21157590199999, 50.484782936000073 ], [ -119.211467095999936, 50.48477626600004 ], [ -119.210978697, 50.484746324000078 ], [ -119.21097337499998, 50.48478158400011 ], [ -119.211468759999917, 50.484811954000108 ], [ -119.21157756799991, 50.484818624000141 ] ], [ [ -119.211987411999985, 50.48453845500012 ], [ -119.211957322999922, 50.483894183000096 ], [ -119.211792528999979, 50.48388408100007 ], [ -119.211692928000019, 50.484544054000089 ], [ -119.211987411999985, 50.48453845500012 ] ], [ [ -119.190195273999947, 50.485051451000075 ], [ -119.19027484599999, 50.484525877000102 ], [ -119.188929456999944, 50.484443131 ], [ -119.188835790999974, 50.48506166300011 ], [ -119.188825096999949, 50.485132278000016 ], [ -119.190170508, 50.485215025000059 ], [ -119.190195273999947, 50.485051451000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.8", "sL_BldgLoss": "46.8", "sL_StrLoss": "46.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFE4D085C5CA5DC0CD7D49956E3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.169414189999912, 50.469971489000024 ], [ -119.169895050999926, 50.46951073000011 ], [ -119.169517282999948, 50.471999148000052 ], [ -119.169334853999985, 50.471987891000055 ], [ -119.169095152999901, 50.473566654000123 ], [ -119.165869548999964, 50.47336756800005 ], [ -119.169414189999912, 50.469971489000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "167.9", "sL_BldgLoss": "167.9", "sL_StrLoss": "167.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F2BBC0DE2CB5DC0F36BF318483F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.183414011999929, 50.492725502000042 ], [ -119.183247630999972, 50.492403000000124 ], [ -119.183112385999962, 50.492332407000049 ], [ -119.182802195999926, 50.492304201000081 ], [ -119.181792146999967, 50.492324411 ], [ -119.181362897999975, 50.492332999000077 ], [ -119.179226338999968, 50.492339987000037 ], [ -119.178160993999938, 50.492343458000079 ], [ -119.17824735, 50.491774186000086 ], [ -119.183861160999967, 50.492119829000018 ], [ -119.183778400999955, 50.492665841000083 ], [ -119.18937892299999, 50.493010378000101 ], [ -119.188837103999958, 50.496587647000126 ], [ -119.184333118999973, 50.496310591000075 ], [ -119.184186015999899, 50.497281075000053 ], [ -119.183591810999957, 50.496487001000084 ], [ -119.183493768999966, 50.496264293000067 ], [ -119.183397566999972, 50.495625336000046 ], [ -119.183395000999894, 50.495608302000079 ], [ -119.183397489999962, 50.495453409000092 ], [ -119.183437705999935, 50.492943592000067 ], [ -119.183414011999929, 50.492725502000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5028333", "BldgCostT": "3258333", "sL_LossRatio": "0.974638280965467", "sL_AssetLoss": "302.03", "sL_BldgLoss": "294.37", "sL_StrLoss": "291.6", "sL_NStrLoss": "2.77", "sL_ContLoss": "7.66", "geom_point": "0101000020E610000065E05F8845CD5DC0BB9E8590B53B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.206167714999935, 50.468484348000032 ], [ -119.206204976999956, 50.468237551000122 ], [ -119.205386705999928, 50.468187327000088 ], [ -119.205423597999982, 50.467943017000024 ], [ -119.202322925999951, 50.467752643000033 ], [ -119.202863330999989, 50.46417518000009 ], [ -119.205787923999964, 50.464354747000073 ], [ -119.208473896, 50.464519593000084 ], [ -119.20843702499999, 50.464763904000037 ], [ -119.211537514999975, 50.464954107000075 ], [ -119.211500284999957, 50.465200907000046 ], [ -119.212318509999974, 50.465251087000048 ], [ -119.211778841999916, 50.468828590000079 ], [ -119.2115311109999, 50.468813398000052 ], [ -119.206167714999935, 50.468484348000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4744583", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "582.9", "sL_BldgLoss": "582.9", "sL_StrLoss": "582.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B8142B984CE5DC025D6B9D4CE3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.22595073599993, 50.480031273000051 ], [ -119.22626219799993, 50.477962832000081 ], [ -119.224794740999968, 50.477873044000049 ], [ -119.22502228799999, 50.476362097000141 ], [ -119.224751845999961, 50.47634554600009 ], [ -119.225165551999979, 50.473598297000123 ], [ -119.22502114199996, 50.473589460000042 ], [ -119.225493882999942, 50.470449833000096 ], [ -119.225533213999896, 50.470449908000091 ], [ -119.228485483999918, 50.470428302000137 ], [ -119.22852416099991, 50.472633940000094 ], [ -119.228527897999982, 50.472846407000112 ], [ -119.228423090999982, 50.476125982000021 ], [ -119.228421077999954, 50.47618882600004 ], [ -119.228414914999931, 50.476382203000078 ], [ -119.228408568999939, 50.478410203000102 ], [ -119.228403049999912, 50.480181276000067 ], [ -119.22595073599993, 50.480031273000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4436250", "BldgCostT": "2850000", "sL_LossRatio": "0.976840005204493", "sL_AssetLoss": "230.57", "sL_BldgLoss": "225.23", "sL_StrLoss": "223.3", "sL_NStrLoss": "1.93", "sL_ContLoss": "5.34", "geom_point": "0101000020E6100000B1C8E9CA6BCE5DC01B8A5CECCD3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.224447604999966, 50.479984212000033 ], [ -119.228402911, 50.480226178000073 ], [ -119.228397355999931, 50.482008044000118 ], [ -119.22838840799993, 50.484883199000137 ], [ -119.22088661, 50.484905955000137 ], [ -119.221231595999939, 50.482616844000091 ], [ -119.222415238999972, 50.482689299000093 ], [ -119.222431245999985, 50.482583072000082 ], [ -119.224041301999989, 50.4826816080001 ], [ -119.224447604999966, 50.479984212000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6761667", "BldgCostT": "4166667", "sL_LossRatio": "0.971784112284763", "sL_AssetLoss": "276.44", "sL_BldgLoss": "268.64", "sL_StrLoss": "265.8", "sL_NStrLoss": "2.84", "sL_ContLoss": "7.8", "geom_point": "0101000020E6100000F13A4D2CD1CA5DC02D9AC6DD3D3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.166206278999965, 50.481763214000054 ], [ -119.166291066999946, 50.481205124000077 ], [ -119.166209978999959, 50.481200119000086 ], [ -119.166792011000013, 50.480697497000058 ], [ -119.167136880999976, 50.480524702000103 ], [ -119.16795953699993, 50.479681301000021 ], [ -119.168155093999971, 50.479480814000091 ], [ -119.168550620999952, 50.479021402000043 ], [ -119.168636589999963, 50.478875099000049 ], [ -119.168655793999974, 50.478655079000106 ], [ -119.16840570399998, 50.477849798000086 ], [ -119.16822780299999, 50.477697087000131 ], [ -119.168056792999948, 50.47761070000012 ], [ -119.167540300999974, 50.477421794000037 ], [ -119.165374719999946, 50.47683680300004 ], [ -119.163006302000028, 50.476151597000069 ], [ -119.16386711200002, 50.475285798000129 ], [ -119.164961944999959, 50.474237031 ], [ -119.165055614999943, 50.474242814000078 ], [ -119.164995088999902, 50.474641202000086 ], [ -119.1679667499999, 50.474824635000097 ], [ -119.167886153999973, 50.475355336000085 ], [ -119.16793478799994, 50.475358337000095 ], [ -119.167913113999973, 50.475501056000049 ], [ -119.168678973999988, 50.475548317000076 ], [ -119.168615361999954, 50.475967227000055 ], [ -119.170048958999985, 50.476055679000119 ], [ -119.169954851999933, 50.47667551800005 ], [ -119.17240772699999, 50.476826816000099 ], [ -119.172225062999928, 50.478030338000025 ], [ -119.17318278599997, 50.478089397000119 ], [ -119.17281046, 50.480542660000069 ], [ -119.172639861999926, 50.481666653000069 ], [ -119.171892964999955, 50.481620596000042 ], [ -119.171818751999979, 50.482109470000104 ], [ -119.166206278999965, 50.481763214000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "128.8", "sL_BldgLoss": "128.8", "sL_StrLoss": "128.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7A0357929CC5DC04C0106D5C83F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.186017736999958, 50.499532739000045 ], [ -119.186452718999988, 50.496662284000067 ], [ -119.1920672, 50.497007511000049 ], [ -119.191947203999945, 50.497800061000106 ], [ -119.194774301999971, 50.497973787000042 ], [ -119.194777024999951, 50.498515203000096 ], [ -119.194746121999955, 50.498859899000081 ], [ -119.194749103000021, 50.499551493000062 ], [ -119.189259598999953, 50.499539795000082 ], [ -119.186017736999958, 50.499532739000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24020833", "BldgCostT": "15883333", "sL_LossRatio": "0.983744558429464", "sL_AssetLoss": "2733.86606", "sL_BldgLoss": "2689.42586", "sL_StrLoss": "2673.10086", "sL_NStrLoss": "16.325", "sL_ContLoss": "44.4402", "geom_point": "0101000020E6100000F292186740CF5DC011883A20C73E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.23053915299991, 50.499813860000096 ], [ -119.230691925999963, 50.498799079000094 ], [ -119.228918962999941, 50.498690720000049 ], [ -119.228298650999974, 50.498652801000127 ], [ -119.228702372999948, 50.495971845000042 ], [ -119.225833657999942, 50.495796438000148 ], [ -119.226022649999919, 50.494541832000081 ], [ -119.223927682999943, 50.494413688000115 ], [ -119.224466693999915, 50.490836238000043 ], [ -119.227729310999948, 50.49103578800004 ], [ -119.22786058399997, 50.490164014000108 ], [ -119.228616587, 50.490210239000149 ], [ -119.22987131499994, 50.490286947000072 ], [ -119.22987202499999, 50.490282229000094 ], [ -119.228616382999988, 50.490205466000042 ], [ -119.22643817, 50.490072267000087 ], [ -119.22697692899996, 50.48649478600008 ], [ -119.228461321999944, 50.486585562000045 ], [ -119.23259045399999, 50.486837969000071 ], [ -119.232064200999915, 50.490335307000073 ], [ -119.234045822999946, 50.490456384000055 ], [ -119.234570371999908, 50.486969360000089 ], [ -119.234884067999985, 50.486988523000051 ], [ -119.23489656, 50.486905467000078 ], [ -119.236114658999952, 50.486979872000056 ], [ -119.236156716999972, 50.486700196000086 ], [ -119.23688535799991, 50.486744697000034 ], [ -119.237000621999968, 50.485978113000073 ], [ -119.242062764999957, 50.486287144000059 ], [ -119.242127438999901, 50.485856685000101 ], [ -119.238995618999965, 50.485665523000129 ], [ -119.239054456999952, 50.485274091000086 ], [ -119.237229791999937, 50.485162675000026 ], [ -119.237277876999897, 50.484842850000042 ], [ -119.23776763599993, 50.481585120000084 ], [ -119.237822411999943, 50.481588466000098 ], [ -119.237930168999966, 50.480871622000116 ], [ -119.240142587999941, 50.481006710000038 ], [ -119.243543077999945, 50.481214254000086 ], [ -119.243486564999898, 50.481590515000043 ], [ -119.246187420999917, 50.48175528200003 ], [ -119.245823335999916, 50.484180138000049 ], [ -119.24735403399994, 50.484273488000056 ], [ -119.247505718999932, 50.483263046000076 ], [ -119.251067192999983, 50.483480163000117 ], [ -119.251060422999942, 50.484800605000068 ], [ -119.251094795999947, 50.485694407000068 ], [ -119.251069823999927, 50.486285902000127 ], [ -119.251050198999963, 50.486774797000052 ], [ -119.251063875999961, 50.487055192000085 ], [ -119.251184675999966, 50.489531400000018 ], [ -119.251250180999989, 50.489708593000081 ], [ -119.251291807999948, 50.489950393000072 ], [ -119.251368664999973, 50.492162087000075 ], [ -119.251376943999986, 50.492400387000032 ], [ -119.251377367999964, 50.492410382000052 ], [ -119.251391349999963, 50.492727584000107 ], [ -119.251391923999932, 50.492738528000125 ], [ -119.251392922999969, 50.492757987000068 ], [ -119.251469341999893, 50.494250166000064 ], [ -119.250884564, 50.494214535000054 ], [ -119.251014778999931, 50.493346863000049 ], [ -119.249070402999962, 50.49322837000004 ], [ -119.248990659999947, 50.493759580000059 ], [ -119.24642568299997, 50.493603214000075 ], [ -119.246265392999973, 50.494670541000112 ], [ -119.240650788999957, 50.494328052000078 ], [ -119.240881732999981, 50.492791511000071 ], [ -119.240780898999901, 50.49278535800007 ], [ -119.241107411999963, 50.49061281700007 ], [ -119.240014540999951, 50.490546117000051 ], [ -119.23997250299999, 50.490825793000113 ], [ -119.239658777000031, 50.49080664400006 ], [ -119.23964629299999, 50.490889700000075 ], [ -119.235484491999941, 50.490635587000092 ], [ -119.23543246899996, 50.49098145400005 ], [ -119.238166747999941, 50.491148423000077 ], [ -119.238023516999931, 50.49210105100012 ], [ -119.238175412999965, 50.492110325000084 ], [ -119.237957187999911, 50.493561695000032 ], [ -119.239608367999935, 50.493662488000076 ], [ -119.239070525999978, 50.497239999000058 ], [ -119.237409706999969, 50.497138617000076 ], [ -119.23737315899993, 50.497381637000053 ], [ -119.236579098999954, 50.497333156000053 ], [ -119.236154363999972, 50.500156859000064 ], [ -119.23053915299991, 50.499813860000096 ] ], [ [ -119.248881480999955, 50.489363438000098 ], [ -119.248936926999988, 50.488994050000059 ], [ -119.247312998999959, 50.48889504699999 ], [ -119.247406169999948, 50.488274470000142 ], [ -119.245046768999927, 50.488130585000093 ], [ -119.24510443299999, 50.487746639000136 ], [ -119.24320289399995, 50.487630640000077 ], [ -119.242950985999968, 50.4893074290001 ], [ -119.24488300899999, 50.489425288000064 ], [ -119.244928499999943, 50.489122402000135 ], [ -119.248881480999955, 50.489363438000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "228.2", "sL_BldgLoss": "228.2", "sL_StrLoss": "228.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB949EE9A5CC5DC05FE74B14C6424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.195679457000011, 50.525561650000057 ], [ -119.195729292999914, 50.524848938000027 ], [ -119.195725954999943, 50.524193583000049 ], [ -119.195717623999926, 50.522574886000072 ], [ -119.195712598999947, 50.52159456600009 ], [ -119.195709987999976, 50.521091096000163 ], [ -119.195723177999952, 50.513778201000015 ], [ -119.197744249999943, 50.513902287000121 ], [ -119.197202843999918, 50.517479506000015 ], [ -119.196433486999979, 50.517432274000086 ], [ -119.196413767999971, 50.517562542000064 ], [ -119.199550048, 50.51775504600004 ], [ -119.199196906999987, 50.520088828000048 ], [ -119.200753170999917, 50.520184316000019 ], [ -119.200599663, 50.521198945000087 ], [ -119.200211928999963, 50.523761522000036 ], [ -119.200059848999928, 50.523752192000096 ], [ -119.200017033999984, 50.524035127000055 ], [ -119.199356697999931, 50.523994611000063 ], [ -119.199337610999962, 50.524120742000044 ], [ -119.198228770999918, 50.5240527 ], [ -119.198084454999972, 50.525006135000126 ], [ -119.199828541999949, 50.525113153000035 ], [ -119.199399610999976, 50.527947398000038 ], [ -119.197948908999976, 50.527913308000031 ], [ -119.196899816999945, 50.527888648000072 ], [ -119.196909348999952, 50.527850319000045 ], [ -119.196844458999948, 50.527548489000097 ], [ -119.196713946999978, 50.527419143000039 ], [ -119.196702681999938, 50.527407999000104 ], [ -119.196271359999969, 50.527259886000095 ], [ -119.196190625, 50.527232154000025 ], [ -119.195468799999972, 50.526831317000088 ], [ -119.195324731999932, 50.526706046000072 ], [ -119.195312897999926, 50.526475155000114 ], [ -119.195382136999982, 50.526121053000068 ], [ -119.195607202999938, 50.525697628000032 ], [ -119.195679457000011, 50.525561650000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30538708", "BldgCostT": "16831685", "sL_LossRatio": "0.987805266849455", "sL_AssetLoss": "1254.64", "sL_BldgLoss": "1239.34", "sL_StrLoss": "1233.8", "sL_NStrLoss": "5.54", "sL_ContLoss": "15.3", "geom_point": "0101000020E6100000374FE06311CE5DC0C7FD3F35FB404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.215897487999953, 50.513582027000076 ], [ -119.215926504, 50.513389771000035 ], [ -119.214817964999938, 50.513321898000079 ], [ -119.214878863999957, 50.512918469000049 ], [ -119.212535221999985, 50.512774937000096 ], [ -119.212560863999926, 50.512605122000053 ], [ -119.210676575999969, 50.512489685000062 ], [ -119.211216851999978, 50.508912379000037 ], [ -119.21128543899998, 50.508916582000055 ], [ -119.211385408999917, 50.508254586000099 ], [ -119.20705865299999, 50.507989394000077 ], [ -119.207599162999927, 50.504412086000045 ], [ -119.209554501999904, 50.504531953000054 ], [ -119.209888780999933, 50.502318634000055 ], [ -119.210418243999953, 50.502351085000015 ], [ -119.210423157999969, 50.502318546000062 ], [ -119.21186238699994, 50.502406744000119 ], [ -119.212138781999926, 50.500575980000079 ], [ -119.212272680999902, 50.500584185000058 ], [ -119.217753946999963, 50.500919907000146 ], [ -119.217747572999912, 50.500962167000068 ], [ -119.217988240999944, 50.500976901000051 ], [ -119.21796060199999, 50.501160142000082 ], [ -119.218696331999936, 50.501205183000145 ], [ -119.21828498799999, 50.503932354000071 ], [ -119.218460426999982, 50.503943093000082 ], [ -119.217992325999901, 50.507046230000036 ], [ -119.220933561999928, 50.507226232000072 ], [ -119.220796173999958, 50.508137312000066 ], [ -119.220841935999928, 50.508140112000042 ], [ -119.220880089999937, 50.507887098000083 ], [ -119.222371331999938, 50.507978330000093 ], [ -119.222451445999951, 50.50744693200005 ], [ -119.223601262999964, 50.507517263000089 ], [ -119.224058242999959, 50.504485362000061 ], [ -119.224484491999988, 50.504511431000054 ], [ -119.224505629999939, 50.504371172000063 ], [ -119.227344376999923, 50.504544746000057 ], [ -119.22763159199998, 50.502638039000047 ], [ -119.228862124, 50.50271325600005 ], [ -119.233247130999956, 50.502981182000049 ], [ -119.233206573, 50.503250664000092 ], [ -119.233218350999977, 50.503251384000123 ], [ -119.233201449999967, 50.503363672000077 ], [ -119.233260557999984, 50.503367283000017 ], [ -119.232722095999989, 50.506944720000085 ], [ -119.230816728000022, 50.506828325000114 ], [ -119.230533199999954, 50.508711267000145 ], [ -119.230155723999957, 50.508688203000077 ], [ -119.230055767999943, 50.509351950000102 ], [ -119.231024849999955, 50.50941115800007 ], [ -119.23048613899999, 50.512988556000103 ], [ -119.22868555299999, 50.512878543000078 ], [ -119.224869373999979, 50.512645278000079 ], [ -119.224966219999885, 50.512002724000141 ], [ -119.221833180999951, 50.511811117000036 ], [ -119.221514300999928, 50.513925759000102 ], [ -119.215897487999953, 50.513582027000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5385000", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "668.4", "sL_BldgLoss": "668.4", "sL_StrLoss": "668.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005482307D50CD5DC0DE10789AAB424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.206418118999949, 50.524247844000087 ], [ -119.206428209999956, 50.524181096000078 ], [ -119.205738602999972, 50.524138826000055 ], [ -119.205772467999935, 50.523914838000067 ], [ -119.205591111999965, 50.523903722000121 ], [ -119.205783771, 50.522629456000104 ], [ -119.205101186000022, 50.522587611000034 ], [ -119.205289676999925, 50.521340961000135 ], [ -119.205355877999978, 50.520903099000144 ], [ -119.202165109999939, 50.520707433000076 ], [ -119.20270616, 50.517130204000125 ], [ -119.208323314999973, 50.51747460100006 ], [ -119.208085109999971, 50.519050891000084 ], [ -119.21320536799999, 50.519364570000093 ], [ -119.21320420499994, 50.51937227300008 ], [ -119.213734651999943, 50.519404755000018 ], [ -119.213630239999944, 50.52009622900006 ], [ -119.21344151299999, 50.521346025000042 ], [ -119.213194449999918, 50.522982028000079 ], [ -119.212287766999978, 50.522926504000047 ], [ -119.212036189999978, 50.524592051000113 ], [ -119.206418118999949, 50.524247844000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "223", "sL_BldgLoss": "223", "sL_StrLoss": "223", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F13B1B2CFBCC5DC02D9F4033E3414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.201103949999933, 50.516606311000025 ], [ -119.201135060999931, 50.516400650000094 ], [ -119.199698019999985, 50.516312474000067 ], [ -119.199712813999938, 50.516214697000109 ], [ -119.19837898599998, 50.516132837000065 ], [ -119.19892028299995, 50.512555607000124 ], [ -119.204536837999967, 50.512900198000033 ], [ -119.20452205499997, 50.512997975000111 ], [ -119.20585580399991, 50.513079762000061 ], [ -119.205824715999967, 50.51328542600011 ], [ -119.207261671999987, 50.513373523000041 ], [ -119.206721027999947, 50.516950790000095 ], [ -119.201103949999933, 50.516606311000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47", "sL_BldgLoss": "47", "sL_StrLoss": "47", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C065040AABCE5DC0600A072915424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.228762990999925, 50.51419059300008 ], [ -119.234379978999968, 50.51453367400007 ], [ -119.234326282999973, 50.514890411000067 ], [ -119.233468617999932, 50.51493219500005 ], [ -119.232584594999977, 50.515024419000092 ], [ -119.232193133999928, 50.515109463000023 ], [ -119.231229308999957, 50.515318890000088 ], [ -119.230752114999987, 50.515436854000058 ], [ -119.230403605, 50.51552299300009 ], [ -119.228605637999948, 50.516121707000075 ], [ -119.22855953599999, 50.516267795000019 ], [ -119.228591812999966, 50.519563017000117 ], [ -119.226776976999957, 50.51945211700005 ], [ -119.227206437999939, 50.516602255000045 ], [ -119.227316058999961, 50.515874764000067 ], [ -119.227820988999937, 50.515905622000076 ], [ -119.227960481999943, 50.514979777000136 ], [ -119.22804045, 50.51498466400006 ], [ -119.228102398999937, 50.514573479000056 ], [ -119.228369328999989, 50.514589791000027 ], [ -119.22840239599995, 50.514370285000012 ], [ -119.228664554999966, 50.514386304000048 ], [ -119.228732879999924, 50.514390479000028 ], [ -119.228762990999925, 50.51419059300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "235.7", "sL_BldgLoss": "235.7", "sL_StrLoss": "235.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B894F3C51ECE5DC0A6B9F4B381424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.22520154399993, 50.51720202500006 ], [ -119.226514749999922, 50.517282298000097 ], [ -119.225975585999947, 50.520859641000065 ], [ -119.225795243999968, 50.520848617000077 ], [ -119.225728298999968, 50.521292745000032 ], [ -119.220239882999934, 50.520957142000064 ], [ -119.220069797999926, 50.522084573000036 ], [ -119.218573138999929, 50.521993008000045 ], [ -119.214451979, 50.521740772000072 ], [ -119.214510187999949, 50.521355251000088 ], [ -119.214704229999924, 50.520070052000044 ], [ -119.214992066999969, 50.518163488000077 ], [ -119.219070265999946, 50.518413097000092 ], [ -119.220480103999989, 50.51849935100006 ], [ -119.220539995999971, 50.518102293000013 ], [ -119.22065016499991, 50.517371916000087 ], [ -119.220830491999948, 50.51738294700008 ], [ -119.220897479999977, 50.516938820000107 ], [ -119.22520154399993, 50.51720202500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14370167", "BldgCostT": "9646667", "sL_LossRatio": "1", "sL_AssetLoss": "1245", "sL_BldgLoss": "1245", "sL_StrLoss": "1245", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001142384D3CCF5DC069B2983BA73C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.249513768999932, 50.483141618000055 ], [ -119.249520335999975, 50.483097859000068 ], [ -119.246517077999982, 50.482914736000119 ], [ -119.247054158999944, 50.479337126000161 ], [ -119.247102188, 50.47934005600014 ], [ -119.247305223999945, 50.477987429000045 ], [ -119.247325604, 50.477988672000023 ], [ -119.247592610999959, 50.476209732000051 ], [ -119.24899322499995, 50.476295144000041 ], [ -119.249123393999966, 50.475427663000069 ], [ -119.248489461999966, 50.475389007000032 ], [ -119.248918684999964, 50.472528562 ], [ -119.244935838999979, 50.472285610000078 ], [ -119.24490298799995, 50.472504425000075 ], [ -119.239291150999975, 50.472161858000113 ], [ -119.239336488999953, 50.471860120000031 ], [ -119.23637918099999, 50.471679478000112 ], [ -119.236473975999957, 50.47104885300007 ], [ -119.236328721999953, 50.471039979000103 ], [ -119.236454443999946, 50.470203606000069 ], [ -119.235664125999932, 50.470155316000103 ], [ -119.235365952999985, 50.472138644000033 ], [ -119.235234931999969, 50.472130638000095 ], [ -119.235138633999966, 50.472771120000111 ], [ -119.235191802, 50.472774369000021 ], [ -119.235079384999977, 50.473522043000031 ], [ -119.24009539799999, 50.473828434000055 ], [ -119.239557830999928, 50.477406035000087 ], [ -119.236484525999956, 50.47721833700006 ], [ -119.236206185999933, 50.479069665000118 ], [ -119.236173989999926, 50.479283808000098 ], [ -119.232126097999966, 50.479036457000085 ], [ -119.231978848999987, 50.480015202000075 ], [ -119.231620803999988, 50.479993316000055 ], [ -119.231563449999953, 50.480374511000036 ], [ -119.228403049999912, 50.480181276000067 ], [ -119.228408568999939, 50.478410203000102 ], [ -119.228414914999931, 50.476382203000078 ], [ -119.228421077999954, 50.47618882600004 ], [ -119.228423090999982, 50.476125982000021 ], [ -119.228527897999982, 50.472846407000112 ], [ -119.22852416099991, 50.472633940000094 ], [ -119.228485483999918, 50.470428302000137 ], [ -119.228484983999977, 50.469791434000072 ], [ -119.228483893999979, 50.468529094000097 ], [ -119.228490795999932, 50.467992378000119 ], [ -119.22850105699996, 50.467191455000076 ], [ -119.228506578999969, 50.466760392000047 ], [ -119.229430950999941, 50.46675620000007 ], [ -119.229895981999931, 50.466754092000066 ], [ -119.232133208, 50.466743896000075 ], [ -119.232825803999944, 50.466735074000013 ], [ -119.2329948, 50.466732911000115 ], [ -119.233445462999939, 50.466727153000065 ], [ -119.235501495999955, 50.46670090700011 ], [ -119.235656378999977, 50.466698926000092 ], [ -119.237036317, 50.466681289000107 ], [ -119.239792383999955, 50.466645991000043 ], [ -119.23978788799991, 50.468361426000079 ], [ -119.23978772000001, 50.468424333000037 ], [ -119.239785347999913, 50.469333043000063 ], [ -119.239782717999958, 50.470338898000115 ], [ -119.244357101, 50.470347387000089 ], [ -119.244819099999958, 50.470364893000081 ], [ -119.244980797999986, 50.470370990000042 ], [ -119.245047477999961, 50.47038191400005 ], [ -119.245429887999933, 50.470444508000107 ], [ -119.246081216000036, 50.470651204000049 ], [ -119.246474219999968, 50.470871905000095 ], [ -119.246581017999958, 50.470899603000163 ], [ -119.246752189999938, 50.470943986000094 ], [ -119.247146097, 50.470913804000126 ], [ -119.247544997999967, 50.470717900000054 ], [ -119.247900883999961, 50.470459802000022 ], [ -119.248621996999958, 50.470381006000096 ], [ -119.249654295999918, 50.470530590000067 ], [ -119.250186984, 50.470707499000113 ], [ -119.250403707999951, 50.470820003 ], [ -119.250754609999944, 50.471076082000131 ], [ -119.251221576999924, 50.471492697000023 ], [ -119.251222711999944, 50.47163931800003 ], [ -119.251231198999946, 50.47278188800005 ], [ -119.251232291999955, 50.472932102000108 ], [ -119.251231944, 50.472953093000065 ], [ -119.251195798999916, 50.475085599000082 ], [ -119.251188618999933, 50.475508906000059 ], [ -119.251174597999949, 50.476336805000052 ], [ -119.251168591999928, 50.477792358000031 ], [ -119.251166481999974, 50.478314418000096 ], [ -119.251161052999919, 50.479628085000101 ], [ -119.251159106999935, 50.480102296000091 ], [ -119.25115391599995, 50.480285305000052 ], [ -119.251120318999952, 50.481473094000116 ], [ -119.25111576499998, 50.481635142000123 ], [ -119.25107047799996, 50.483236506000047 ], [ -119.249513768999932, 50.483141618000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6810000", "BldgCostT": "4200000", "sL_LossRatio": "0.974823226912363", "sL_AssetLoss": "280.02", "sL_BldgLoss": "272.97", "sL_StrLoss": "270.4", "sL_NStrLoss": "2.57", "sL_ContLoss": "7.05", "geom_point": "0101000020E610000019DA29EBF1CF5DC08C103F7B05404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.250193705999919, 50.506428592000155 ], [ -119.25031111199992, 50.505646580000118 ], [ -119.246533742999958, 50.505416392000043 ], [ -119.246599196, 50.504980655000054 ], [ -119.246230563999987, 50.50495818400001 ], [ -119.24676793099998, 50.50138067300005 ], [ -119.247152110999963, 50.501404092000044 ], [ -119.247157414999961, 50.501368782000092 ], [ -119.250016578999976, 50.501543029000167 ], [ -119.250031722999935, 50.501442153000063 ], [ -119.249608826000014, 50.501416385000027 ], [ -119.249703417999982, 50.500786313000063 ], [ -119.247033888999979, 50.500623615000052 ], [ -119.247406275999964, 50.498143965000082 ], [ -119.245986225999928, 50.49805739100001 ], [ -119.246523528999916, 50.494479851000037 ], [ -119.251496628999973, 50.494782957000048 ], [ -119.251528061999977, 50.495396685000046 ], [ -119.251554790999975, 50.495918911000025 ], [ -119.251633810999948, 50.496808201000071 ], [ -119.25153261, 50.497247002000115 ], [ -119.251448388, 50.497977407000107 ], [ -119.251541386999975, 50.498687900000071 ], [ -119.251560590999986, 50.498834500000044 ], [ -119.251519227999964, 50.49944119600007 ], [ -119.251539895999926, 50.499860387000076 ], [ -119.251561650999975, 50.49999796900002 ], [ -119.251656104999924, 50.500595806000021 ], [ -119.251577384000015, 50.501479108000076 ], [ -119.251619005999927, 50.502545867000038 ], [ -119.251636717999958, 50.503000006000015 ], [ -119.251629236, 50.503195752000074 ], [ -119.25154530099995, 50.505389424000036 ], [ -119.251502473999949, 50.506508316000037 ], [ -119.250193705999919, 50.506428592000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "86.5", "sL_BldgLoss": "86.5", "sL_StrLoss": "86.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000477AEE90A4CD5DC08C35B79D913F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.210632077999946, 50.494670631000076 ], [ -119.21624649799999, 50.495014638000079 ], [ -119.215706785999956, 50.498592029000065 ], [ -119.214602895999974, 50.498524414 ], [ -119.210091925999961, 50.498247997000142 ], [ -119.210153581, 50.497839691000095 ], [ -119.210632077999946, 50.494670631000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "156.7", "sL_BldgLoss": "156.7", "sL_StrLoss": "156.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000473F961575CF5DC0033A1FE0C1414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.237033021999963, 50.514985631000073 ], [ -119.235619414999988, 50.514869493000091 ], [ -119.234890586999896, 50.514862893000021 ], [ -119.23440182899999, 50.514886728000093 ], [ -119.234704206999979, 50.512877725000088 ], [ -119.23479571, 50.512883311000074 ], [ -119.234958757999948, 50.511799929000055 ], [ -119.240575494999945, 50.512142698000019 ], [ -119.240408542999887, 50.513252933000061 ], [ -119.241493044999928, 50.513319082000123 ], [ -119.241536301999957, 50.513031382000072 ], [ -119.24201450299995, 50.513060547000066 ], [ -119.24202598299992, 50.512984193000108 ], [ -119.245972259999974, 50.513224790000137 ], [ -119.246056325999945, 50.512665284000036 ], [ -119.246474960999976, 50.512690800000037 ], [ -119.246506316999969, 50.512482094000106 ], [ -119.251510157999988, 50.512786945000109 ], [ -119.251505600999934, 50.513067209000113 ], [ -119.250807103999932, 50.51328369600003 ], [ -119.250119724999934, 50.513568661000122 ], [ -119.249620790999984, 50.513775499000062 ], [ -119.24830075099996, 50.514225432000075 ], [ -119.248039084, 50.514314611000096 ], [ -119.245912482999984, 50.51501890000003 ], [ -119.245430810999949, 50.515140306000028 ], [ -119.245077513999931, 50.51519999700011 ], [ -119.242532591999918, 50.515395893000104 ], [ -119.241636945999986, 50.515384625000102 ], [ -119.241301897999961, 50.515380382000096 ], [ -119.240636193999975, 50.515330817000134 ], [ -119.239338910999962, 50.51517499300008 ], [ -119.237033021999963, 50.514985631000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "199.3", "sL_BldgLoss": "199.3", "sL_StrLoss": "199.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F541BF8484CE5DC027C543EF3F434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.22403510399991, 50.527854925000035 ], [ -119.224066643999947, 50.527645769000053 ], [ -119.223563503999969, 50.527615012000055 ], [ -119.224102938999948, 50.524037711000076 ], [ -119.224129475999959, 50.524039333000069 ], [ -119.224213266000021, 50.523483612000113 ], [ -119.22437507799998, 50.523493504000079 ], [ -119.224392264999949, 50.523379515000038 ], [ -119.22495478799999, 50.523413902000051 ], [ -119.225136897999931, 50.522205930000027 ], [ -119.22590158899996, 50.522252670000064 ], [ -119.225942574999962, 50.521980747000086 ], [ -119.228731346999922, 50.52215116100011 ], [ -119.229027974999937, 50.523760672000037 ], [ -119.22904786, 50.523936455000147 ], [ -119.229049069999959, 50.523946929000083 ], [ -119.22917147899993, 50.52502851800007 ], [ -119.229650877, 50.526212190000095 ], [ -119.229880751999985, 50.526615213000063 ], [ -119.229917343999901, 50.526699801000056 ], [ -119.230164603999953, 50.527271584000104 ], [ -119.230619566999962, 50.527874301000118 ], [ -119.230870368999931, 50.528119756000159 ], [ -119.23090943099993, 50.528146272000107 ], [ -119.229335065999948, 50.528178774000061 ], [ -119.22403510399991, 50.527854925000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.5", "sL_BldgLoss": "91.5", "sL_StrLoss": "91.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000000DC55DDDDCD5DC07D5A457F68434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.213619620999964, 50.528280547000094 ], [ -119.21362030899995, 50.528275988000047 ], [ -119.213271390999935, 50.528254626000049 ], [ -119.213811650999943, 50.524677376000078 ], [ -119.218617278999901, 50.524971499000117 ], [ -119.219429830999985, 50.525021209000045 ], [ -119.219370749999925, 50.525412759000119 ], [ -119.219719649999959, 50.525434102000133 ], [ -119.219715319, 50.52546280000012 ], [ -119.220151636999944, 50.525489490000048 ], [ -119.219715981999983, 50.528376824000048 ], [ -119.218668071999929, 50.528398347000113 ], [ -119.216188636999945, 50.528340540000094 ], [ -119.213619620999964, 50.528280547000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "144.5", "sL_BldgLoss": "144.5", "sL_StrLoss": "144.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B864C9DAEECF5DC07B5C86C549414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.245951459, 50.512216962000132 ], [ -119.245985521999927, 50.511990257000065 ], [ -119.245166648999955, 50.511940342000045 ], [ -119.245704183999948, 50.508362866000063 ], [ -119.245909096999938, 50.508375358000109 ], [ -119.245980096999943, 50.507902772000051 ], [ -119.246273334999913, 50.507920646000102 ], [ -119.246298493, 50.507753179000119 ], [ -119.251914810999963, 50.508095376 ], [ -119.251851081999945, 50.508519941000046 ], [ -119.251922731999983, 50.508524306000012 ], [ -119.252102449999967, 50.507326980000109 ], [ -119.253156798999939, 50.507853489000119 ], [ -119.253448695999978, 50.508032891000056 ], [ -119.253663004999979, 50.508257106000038 ], [ -119.253726301, 50.508524500000057 ], [ -119.253618913999958, 50.509193111000101 ], [ -119.253553406999956, 50.50936509900005 ], [ -119.253419013999988, 50.509524806000066 ], [ -119.253113588999952, 50.509718291000112 ], [ -119.252651713999953, 50.509925703000135 ], [ -119.252588583999952, 50.509949116000058 ], [ -119.252386030999929, 50.509936781000093 ], [ -119.252372130999973, 50.510029389000131 ], [ -119.252035000999911, 50.510154415000088 ], [ -119.251655119999953, 50.510401106000117 ], [ -119.251593383999989, 50.510519859000077 ], [ -119.251545514999961, 50.510612012000131 ], [ -119.251513913999958, 50.51255586200007 ], [ -119.245951459, 50.512216962000132 ] ], [ [ -119.252446909999918, 50.508916196000058 ], [ -119.252116208999979, 50.508813610000061 ], [ -119.251496875999919, 50.508826396000117 ], [ -119.25043208299999, 50.508397697000071 ], [ -119.249911185999949, 50.508389206000068 ], [ -119.249572520999919, 50.508701099000085 ], [ -119.249528880999904, 50.508963196000131 ], [ -119.249857094000035, 50.509326297000023 ], [ -119.25028910799989, 50.509532803000141 ], [ -119.250958982999975, 50.509655296000055 ], [ -119.251108387999949, 50.509544208000065 ], [ -119.25188518399996, 50.509555599000095 ], [ -119.252488507999956, 50.509185283000107 ], [ -119.252446909999918, 50.508916196000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "88.8", "sL_BldgLoss": "88.8", "sL_StrLoss": "88.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C29596F90CE5DC085B18520073E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.22838840799993, 50.484883199000137 ], [ -119.228397355999931, 50.482008044000118 ], [ -119.228402911, 50.480226178000073 ], [ -119.23006030099998, 50.480327525000114 ], [ -119.22968916, 50.482793538000088 ], [ -119.231764115999937, 50.482920383000085 ], [ -119.231469135999959, 50.484880758000067 ], [ -119.231225780999935, 50.486497903000021 ], [ -119.229560548999956, 50.486396109000047 ], [ -119.229560302999943, 50.486397743000062 ], [ -119.228450369999976, 50.486329878000063 ], [ -119.227540214999976, 50.486274220000034 ], [ -119.227505618, 50.48650398900007 ], [ -119.226321865999978, 50.486431589000098 ], [ -119.226305867999926, 50.486537816000066 ], [ -119.220692426999946, 50.486194314000102 ], [ -119.22088661, 50.484905955000137 ], [ -119.22838840799993, 50.484883199000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.9", "sL_BldgLoss": "44.9", "sL_StrLoss": "44.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D070357800CD5DC0622BEC9286434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.200520303999895, 50.526888978000109 ], [ -119.206138658999947, 50.527233482000028 ], [ -119.206007275999966, 50.528102430000082 ], [ -119.200356737999954, 50.527969880000114 ], [ -119.200520303999895, 50.526888978000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8112000", "BldgCostT": "5385000", "sL_LossRatio": "0.983797186952247", "sL_AssetLoss": "467.82", "sL_BldgLoss": "460.24", "sL_StrLoss": "457.5", "sL_NStrLoss": "2.74", "sL_ContLoss": "7.58", "geom_point": "0101000020E6100000F3B0AB240DCD5DC00C72597DDC3E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.196841195999951, 50.497588431000104 ], [ -119.197127441999953, 50.495696418000087 ], [ -119.194791497999958, 50.495552921000098 ], [ -119.194802893999977, 50.495442402000045 ], [ -119.19482470199992, 50.495414665000112 ], [ -119.195167787999964, 50.494978304 ], [ -119.195488207999972, 50.494686608000087 ], [ -119.19610817599991, 50.494286899000031 ], [ -119.1971636899999, 50.493471597000074 ], [ -119.197276874999943, 50.493256489000011 ], [ -119.197277494, 50.493140111000045 ], [ -119.197202118999911, 50.492926997000133 ], [ -119.197063209999925, 50.49276859000009 ], [ -119.195661783000034, 50.491601194000069 ], [ -119.197229793999952, 50.491976411000095 ], [ -119.197762713999936, 50.492030802000066 ], [ -119.1981626199999, 50.491962394000041 ], [ -119.198413222999989, 50.491850496000033 ], [ -119.19899352499999, 50.491366210000095 ], [ -119.199148397999963, 50.49116229000002 ], [ -119.199244576999945, 50.491035675 ], [ -119.199306584999974, 50.490953993000034 ], [ -119.199480593999951, 50.490656010000059 ], [ -119.19964209299998, 50.489840899000129 ], [ -119.19995841399998, 50.488985607000053 ], [ -119.199923202999969, 50.488590803000093 ], [ -119.200005334999943, 50.488378999000105 ], [ -119.200027501999941, 50.488321891000076 ], [ -119.200510289999968, 50.487827113000051 ], [ -119.20087898599999, 50.487046391000042 ], [ -119.201088797999944, 50.486783103000079 ], [ -119.20208658699994, 50.486160193000046 ], [ -119.202432681999937, 50.48590327200008 ], [ -119.202788483999939, 50.485639106000122 ], [ -119.203781580999973, 50.484755907000093 ], [ -119.20406690899992, 50.484573908000066 ], [ -119.204251897999981, 50.484568105000086 ], [ -119.204330403999975, 50.484685806000087 ], [ -119.204264210999966, 50.484861308000077 ], [ -119.204005805999913, 50.485212802000063 ], [ -119.20376979299999, 50.485771505000059 ], [ -119.203384208999935, 50.486280391000093 ], [ -119.203101784999916, 50.486799307000069 ], [ -119.202568381999953, 50.487470593000076 ], [ -119.20252999799996, 50.487649610000041 ], [ -119.202548105999938, 50.487748268000082 ], [ -119.202549724, 50.487757029000122 ], [ -119.2025516799999, 50.487767934000018 ], [ -119.202572697999983, 50.487882419000059 ], [ -119.202817578999912, 50.48838939400013 ], [ -119.202846299999962, 50.488743202000123 ], [ -119.202931100999962, 50.488856708000064 ], [ -119.203092006999938, 50.488898186000064 ], [ -119.203283203999959, 50.488851283000059 ], [ -119.204162027999985, 50.488144810000037 ], [ -119.20447165399996, 50.487895875000028 ], [ -119.204634193999965, 50.487765212000035 ], [ -119.20507068199997, 50.487313596000078 ], [ -119.20537161299994, 50.487187690000063 ], [ -119.205718024999953, 50.487172808000139 ], [ -119.206062139999943, 50.487210758000025 ], [ -119.206180478999954, 50.487223794000052 ], [ -119.206273215999929, 50.48706069800005 ], [ -119.207016897999921, 50.486309290000108 ], [ -119.20780808399995, 50.485825194000036 ], [ -119.208508168999956, 50.48546910400006 ], [ -119.209328381999967, 50.485051902000116 ], [ -119.209886897, 50.484955295000084 ], [ -119.210855720000012, 50.484973199000095 ], [ -119.211474886999952, 50.484943393000037 ], [ -119.211645403999938, 50.485039322 ], [ -119.211810164999974, 50.485132075000102 ], [ -119.211863903999969, 50.48516229700008 ], [ -119.212291882999978, 50.48572378900009 ], [ -119.212428998999883, 50.485828693000052 ], [ -119.212443194999935, 50.485830478000018 ], [ -119.21257081, 50.485846503000047 ], [ -119.212678606999972, 50.485816984000131 ], [ -119.212779920999949, 50.485727509000064 ], [ -119.212990300999962, 50.485225003000039 ], [ -119.213119566999964, 50.485081292000075 ], [ -119.213299383999981, 50.485006496000089 ], [ -119.213530018999975, 50.484980105000027 ], [ -119.213932875999916, 50.48496298700011 ], [ -119.21424108399999, 50.484981874000049 ], [ -119.213701333999964, 50.488559300000098 ], [ -119.208268430999951, 50.488226244 ], [ -119.20794888799999, 50.490342193000075 ], [ -119.208577455999958, 50.490380741000095 ], [ -119.208037191999949, 50.493958115000041 ], [ -119.207436029999911, 50.493921249000046 ], [ -119.207403073999927, 50.494139430000075 ], [ -119.206161363999954, 50.494063271000108 ], [ -119.202020839999946, 50.493809217000027 ], [ -119.201979534999964, 50.494082454000079 ], [ -119.199554798999941, 50.493933604000134 ], [ -119.199524432999922, 50.494134409000011 ], [ -119.198133009999978, 50.494048968000129 ], [ -119.198131770999964, 50.494057151000064 ], [ -119.202996626999919, 50.494355804000087 ], [ -119.202455872999977, 50.497933133000053 ], [ -119.196841195999951, 50.497588431000104 ] ], [ [ -119.20817278799997, 50.487651960000129 ], [ -119.208324355999977, 50.486648245000055 ], [ -119.207946467999975, 50.48662506900007 ], [ -119.20784801, 50.487277052000131 ], [ -119.20812186199997, 50.487293848000071 ], [ -119.20806874699997, 50.487645578000063 ], [ -119.20817278799997, 50.487651960000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9438750", "BldgCostT": "6300000", "sL_LossRatio": "0.987251700036288", "sL_AssetLoss": "633.81", "sL_BldgLoss": "625.73", "sL_StrLoss": "622.8", "sL_NStrLoss": "2.93", "sL_ContLoss": "8.08", "geom_point": "0101000020E6100000C2E291F4C0CC5DC0EF8CB62A89404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194866522999973, 50.507294205000079 ], [ -119.194416893999971, 50.507081616000058 ], [ -119.193996386999956, 50.506849465000123 ], [ -119.193634892999938, 50.506649904000071 ], [ -119.193360019999929, 50.506466852000074 ], [ -119.193261596999918, 50.50640128900006 ], [ -119.193057287999963, 50.506206512000126 ], [ -119.192786384000016, 50.505749309000116 ], [ -119.192722609999947, 50.505235395000057 ], [ -119.192769987999966, 50.504809605000084 ], [ -119.192870691999985, 50.504556706000102 ], [ -119.19318499399999, 50.504193299000107 ], [ -119.193475593999921, 50.503977414000133 ], [ -119.194467413999945, 50.503537392000112 ], [ -119.194636206999945, 50.503358204000087 ], [ -119.194692797999949, 50.503143193000064 ], [ -119.194721631999982, 50.501303329000024 ], [ -119.194729391999914, 50.500808545000105 ], [ -119.194742087999884, 50.499999011000121 ], [ -119.194749103000021, 50.499551493000062 ], [ -119.194746121999955, 50.498859899000081 ], [ -119.194777024999951, 50.498515203000096 ], [ -119.194774301999971, 50.497973787000042 ], [ -119.196471759999937, 50.498078059000129 ], [ -119.196497610999955, 50.497907217000026 ], [ -119.197537254999972, 50.497971069000066 ], [ -119.197547666999981, 50.497902240000037 ], [ -119.203162386999949, 50.498246906000119 ], [ -119.202984187999917, 50.499425765000076 ], [ -119.207462930999966, 50.499700490000073 ], [ -119.206922466999956, 50.503277819000068 ], [ -119.205901279, 50.503215195000038 ], [ -119.205893321999923, 50.503267842000085 ], [ -119.205552059999931, 50.50324691200008 ], [ -119.205461635999924, 50.50384525000009 ], [ -119.199846200999929, 50.503500703000107 ], [ -119.199849164999961, 50.503481097000076 ], [ -119.199785698999975, 50.503477202000028 ], [ -119.19979536799994, 50.503413278000053 ], [ -119.199743601999941, 50.503410100000046 ], [ -119.199911250999961, 50.502301684000052 ], [ -119.198705359, 50.502227655000063 ], [ -119.198302183999942, 50.50489271100011 ], [ -119.19727151799998, 50.504829429000026 ], [ -119.197225963999983, 50.505130484000034 ], [ -119.199887985999965, 50.505293911000123 ], [ -119.199840724999959, 50.505606362000044 ], [ -119.20052228599998, 50.505648194000031 ], [ -119.200239089999968, 50.507520550000052 ], [ -119.202580749999967, 50.507664241000064 ], [ -119.20203980299999, 50.511241511000058 ], [ -119.201269420999935, 50.51119424300007 ], [ -119.201131512999922, 50.512106029000016 ], [ -119.200425211999942, 50.512062689000082 ], [ -119.20042068099994, 50.512092646000035 ], [ -119.200334966999961, 50.51208738600009 ], [ -119.20031538299996, 50.512216848000058 ], [ -119.200260346000022, 50.512213470000049 ], [ -119.200246885999917, 50.512302449000103 ], [ -119.19572635499999, 50.512024946000132 ], [ -119.195728263999982, 50.510970745000066 ], [ -119.195729003999986, 50.510555101000108 ], [ -119.195792118999961, 50.509963491000043 ], [ -119.195864303999926, 50.509287096000023 ], [ -119.195818292999917, 50.508846388000059 ], [ -119.195766771999971, 50.508352686000137 ], [ -119.195732415999927, 50.508023497000138 ], [ -119.19568040799993, 50.507786490000029 ], [ -119.195379895999949, 50.507497287000071 ], [ -119.195220404999972, 50.507408996 ], [ -119.194866522999973, 50.507294205000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "251.1", "sL_BldgLoss": "251.1", "sL_StrLoss": "251.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F95C964430D15DC0E710829F823B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26251435599994, 50.466697111000016 ], [ -119.263049976, 50.463119353000124 ], [ -119.26534567899995, 50.463259060000091 ], [ -119.265431596999974, 50.462684906000106 ], [ -119.271042452999978, 50.463026157000037 ], [ -119.271025979999976, 50.463136340000077 ], [ -119.27474804299996, 50.463362555000046 ], [ -119.274213345999982, 50.466940369000078 ], [ -119.268601979999914, 50.466599281000093 ], [ -119.268618461999964, 50.466489098000054 ], [ -119.268211577999978, 50.466464354000024 ], [ -119.26812568900003, 50.467038508000087 ], [ -119.26251435599994, 50.466697111000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "107.8", "sL_BldgLoss": "107.8", "sL_StrLoss": "107.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD4A4154EDD05DC09F5912A0263C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.261947450999983, 50.467969140000051 ], [ -119.267558937999979, 50.468310563000081 ], [ -119.267023614, 50.471888321000044 ], [ -119.261411685999988, 50.471546871000058 ], [ -119.261947450999983, 50.467969140000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "326", "sL_BldgLoss": "326", "sL_StrLoss": "326", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009C0CD81FB2D15DC0C49340F7A33D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.277264862999957, 50.477282912000142 ], [ -119.28287762299999, 50.477623558000076 ], [ -119.282776255999963, 50.478302483000043 ], [ -119.282343402999985, 50.481201348000155 ], [ -119.280647503999958, 50.481098453000079 ], [ -119.279399556999962, 50.481022719000038 ], [ -119.2791168319999, 50.482915124000087 ], [ -119.278882435999947, 50.484483919000091 ], [ -119.277491042999912, 50.484399464 ], [ -119.275502982999953, 50.48427876100007 ], [ -119.275369982999933, 50.485168427000062 ], [ -119.275296903999958, 50.48517837100011 ], [ -119.274932197999988, 50.485189066000046 ], [ -119.274284139999949, 50.48520811 ], [ -119.27420127699996, 50.485210542000061 ], [ -119.269739572999981, 50.484939475000019 ], [ -119.270274835999942, 50.481361762000098 ], [ -119.273654046999951, 50.481567080000069 ], [ -119.273803828000013, 50.480565341000094 ], [ -119.276747620999942, 50.480744119000079 ], [ -119.277264862999957, 50.477282912000142 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004AEA465063D45DC0FC54F40B1F3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.316052956, 50.468799879000066 ], [ -119.321664954999932, 50.469138567000059 ], [ -119.321491765999909, 50.470305519000071 ], [ -119.31579269199996, 50.47055206900005 ], [ -119.316052956, 50.468799879000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.4", "sL_BldgLoss": "49.4", "sL_StrLoss": "49.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000052A414D7E5D25DC078BF238DFE3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.295555992999951, 50.483725584000062 ], [ -119.297445173999961, 50.483839941000021 ], [ -119.297465005999982, 50.484901604000065 ], [ -119.293871663999965, 50.484964710000071 ], [ -119.293183104999954, 50.484967280000049 ], [ -119.29338780799999, 50.483594297000081 ], [ -119.295555992999951, 50.483725584000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43777750", "BldgCostT": "29245000", "sL_LossRatio": "0.997237156956934", "sL_AssetLoss": "3351.62", "sL_BldgLoss": "3342.36", "sL_StrLoss": "3339", "sL_NStrLoss": "3.36", "sL_ContLoss": "9.26", "geom_point": "0101000020E61000001BF3F8C53ECF5DC0B1E9315F983B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.251159106999935, 50.480102296000091 ], [ -119.251161052999919, 50.479628085000101 ], [ -119.251166481999974, 50.478314418000096 ], [ -119.251168591999928, 50.477792358000031 ], [ -119.251174597999949, 50.476336805000052 ], [ -119.251188618999933, 50.475508906000059 ], [ -119.251195798999916, 50.475085599000082 ], [ -119.251231944, 50.472953093000065 ], [ -119.251232291999955, 50.472932102000108 ], [ -119.251231198999946, 50.47278188800005 ], [ -119.251222711999944, 50.47163931800003 ], [ -119.251221576999924, 50.471492697000023 ], [ -119.250754609999944, 50.471076082000131 ], [ -119.250403707999951, 50.470820003 ], [ -119.250186984, 50.470707499000113 ], [ -119.249654295999918, 50.470530590000067 ], [ -119.248621996999958, 50.470381006000096 ], [ -119.247900883999961, 50.470459802000022 ], [ -119.247544997999967, 50.470717900000054 ], [ -119.247146097, 50.470913804000126 ], [ -119.246752189999938, 50.470943986000094 ], [ -119.246581017999958, 50.470899603000163 ], [ -119.246474219999968, 50.470871905000095 ], [ -119.246081216000036, 50.470651204000049 ], [ -119.245429887999933, 50.470444508000107 ], [ -119.245047477999961, 50.47038191400005 ], [ -119.244980797999986, 50.470370990000042 ], [ -119.244819099999958, 50.470364893000081 ], [ -119.244357101, 50.470347387000089 ], [ -119.239782717999958, 50.470338898000115 ], [ -119.239785347999913, 50.469333043000063 ], [ -119.23978772000001, 50.468424333000037 ], [ -119.23978788799991, 50.468361426000079 ], [ -119.239792383999955, 50.466645991000043 ], [ -119.237036317, 50.466681289000107 ], [ -119.235656378999977, 50.466698926000092 ], [ -119.235501495999955, 50.46670090700011 ], [ -119.233445462999939, 50.466727153000065 ], [ -119.2329948, 50.466732911000115 ], [ -119.232825803999944, 50.466735074000013 ], [ -119.232133208, 50.466743896000075 ], [ -119.229895981999931, 50.466754092000066 ], [ -119.229430950999941, 50.46675620000007 ], [ -119.228506578999969, 50.466760392000047 ], [ -119.22850105699996, 50.467191455000076 ], [ -119.228490795999932, 50.467992378000119 ], [ -119.228483893999979, 50.468529094000097 ], [ -119.228484983999977, 50.469791434000072 ], [ -119.228485483999918, 50.470428302000137 ], [ -119.225533213999896, 50.470449908000091 ], [ -119.225493882999942, 50.470449833000096 ], [ -119.225559816999976, 50.470011913000043 ], [ -119.22632076, 50.470058478000091 ], [ -119.226517256999912, 50.468753174000021 ], [ -119.224963176999893, 50.468658068000067 ], [ -119.225230087999975, 50.466885291000033 ], [ -119.225017400999931, 50.466872273000085 ], [ -119.22508185699995, 50.466444153000104 ], [ -119.224783122999952, 50.466425868000023 ], [ -119.2249157699999, 50.465544844000064 ], [ -119.22488518599998, 50.465542972999984 ], [ -119.225029250999967, 50.464586074000088 ], [ -119.224921451999961, 50.464579475000093 ], [ -119.225071983999968, 50.463579601000035 ], [ -119.224818317999961, 50.463564074000047 ], [ -119.224933285999953, 50.4628004160001 ], [ -119.224823171999972, 50.462793676000025 ], [ -119.224972102999956, 50.461804400000034 ], [ -119.224901541999955, 50.461800080000046 ], [ -119.22504259, 50.460863129000153 ], [ -119.224966706999936, 50.460858483000052 ], [ -119.225130547, 50.459770108000036 ], [ -119.224868779999923, 50.459754083000107 ], [ -119.22507198299995, 50.458404195000142 ], [ -119.224704743999922, 50.458381712000119 ], [ -119.224698917999945, 50.458420421000042 ], [ -119.224033608999918, 50.458379687000104 ], [ -119.224012793999961, 50.458517936000106 ], [ -119.220924191999984, 50.458328784000109 ], [ -119.220789476999926, 50.459223159 ], [ -119.221246079999958, 50.459251127000108 ], [ -119.221105386999952, 50.460185220000021 ], [ -119.222019519999932, 50.460241209000039 ], [ -119.221480682999953, 50.463818781000086 ], [ -119.220529647999939, 50.463760533000077 ], [ -119.220290215999938, 50.465349805000045 ], [ -119.21987596799994, 50.465324430000123 ], [ -119.219698561999905, 50.466501852000093 ], [ -119.21978722599998, 50.466507283000034 ], [ -119.219785049999928, 50.466521730000061 ], [ -119.220970689999916, 50.466594350000051 ], [ -119.220630645999933, 50.468851429000033 ], [ -119.223646361999954, 50.469036080000137 ], [ -119.223434039, 50.470445904 ], [ -119.222881170999955, 50.470444843000045 ], [ -119.22264180799999, 50.470444371000099 ], [ -119.221726206999932, 50.470442613000039 ], [ -119.2171611099999, 50.470433691000089 ], [ -119.217162793999947, 50.470286422000086 ], [ -119.217176997, 50.469041896000121 ], [ -119.217175667000021, 50.468856672000079 ], [ -119.217172604000012, 50.468433810000079 ], [ -119.217169157999976, 50.467965998000125 ], [ -119.217143799999917, 50.464476747000028 ], [ -119.217138736, 50.463784229000098 ], [ -119.217135483, 50.463334410000115 ], [ -119.217129791999952, 50.462552243000076 ], [ -119.21712455699992, 50.461832791000042 ], [ -119.217120770999941, 50.461311052000042 ], [ -119.217117176999963, 50.460816278000074 ], [ -119.217111702999944, 50.460060874000128 ], [ -119.217104619999958, 50.459089511000037 ], [ -119.217101822999922, 50.458702836000079 ], [ -119.217101097999915, 50.458603952000033 ], [ -119.217094765999931, 50.45773169700005 ], [ -119.217088557999929, 50.456877649000056 ], [ -119.217081920999959, 50.455963781000051 ], [ -119.217512670999938, 50.455963804000113 ], [ -119.217856379999887, 50.455965135000064 ], [ -119.22001720199998, 50.455973574000019 ], [ -119.221158680999977, 50.455978005000055 ], [ -119.224050824999907, 50.455989203000087 ], [ -119.224501683999932, 50.455990921000051 ], [ -119.227677639999953, 50.456003135000081 ], [ -119.22798058799999, 50.455923687000045 ], [ -119.228189881999953, 50.456005098000098 ], [ -119.22983963899999, 50.455909150000089 ], [ -119.229759366999929, 50.456442816000056 ], [ -119.231017044999973, 50.45651975099999 ], [ -119.230853357999933, 50.457608140000062 ], [ -119.231115115999941, 50.457624151000061 ], [ -119.230974201999928, 50.458561114000148 ], [ -119.231050081999939, 50.458565755000059 ], [ -119.230901294999953, 50.459555043000137 ], [ -119.230971853999961, 50.459559359000124 ], [ -119.23092465099991, 50.459873203000079 ], [ -119.232001894999925, 50.459939086000055 ], [ -119.232241882999986, 50.458343137000064 ], [ -119.232631236999907, 50.458366947000115 ], [ -119.232688583999973, 50.457985547000092 ], [ -119.232966670999957, 50.458002551000057 ], [ -119.233229455999918, 50.456254670000135 ], [ -119.232672399999984, 50.456220606000031 ], [ -119.232740695999951, 50.455766358000069 ], [ -119.238378347999969, 50.455923509000094 ], [ -119.238292001000019, 50.456498299000025 ], [ -119.23884906499994, 50.456532335000084 ], [ -119.238311603999975, 50.460110005000047 ], [ -119.238033501999922, 50.46009301400008 ], [ -119.237959302999954, 50.460586865000046 ], [ -119.243244005999912, 50.460909622000074 ], [ -119.243163113999913, 50.461448428000082 ], [ -119.24370992799993, 50.461481810000087 ], [ -119.243548553999972, 50.462556735000071 ], [ -119.243973993999973, 50.462582705000095 ], [ -119.243436866999929, 50.466160374000026 ], [ -119.2422502309999, 50.466087935000054 ], [ -119.242062429999976, 50.467338474000066 ], [ -119.242074417999916, 50.467339206000105 ], [ -119.242167380999902, 50.466720184000096 ], [ -119.24777856299994, 50.467062609000067 ], [ -119.247599342999933, 50.468256967000045 ], [ -119.247772423999905, 50.468267524000069 ], [ -119.248117564999944, 50.465967318000033 ], [ -119.248750416999883, 50.46600592000005 ], [ -119.249241997999931, 50.462729036000106 ], [ -119.249504765999944, 50.462745063000035 ], [ -119.249935427999972, 50.459873745000031 ], [ -119.25554581699997, 50.460215780000119 ], [ -119.255009636999958, 50.463793515000063 ], [ -119.254930841999936, 50.463788714000032 ], [ -119.254883788999948, 50.464102651000154 ], [ -119.254922403999942, 50.464105005000114 ], [ -119.254420985999943, 50.467450185000125 ], [ -119.25723856099998, 50.467621848000086 ], [ -119.25670242699999, 50.471199559000034 ], [ -119.253656472999964, 50.471013980000123 ], [ -119.253611281999952, 50.471315388000022 ], [ -119.259145466999911, 50.471652504000076 ], [ -119.258609435999958, 50.475230206000077 ], [ -119.256037070999966, 50.475073545000036 ], [ -119.255755208999943, 50.476953866 ], [ -119.255275437999941, 50.476924641000089 ], [ -119.255093845999909, 50.478135879000106 ], [ -119.254387396999945, 50.478092841000077 ], [ -119.254203673999939, 50.4793180960001 ], [ -119.252802955999954, 50.479232750000065 ], [ -119.252728793999964, 50.479727227000119 ], [ -119.255663454999933, 50.479906016000044 ], [ -119.255127047999949, 50.483483664000069 ], [ -119.25107047799996, 50.483236506000047 ], [ -119.25111576499998, 50.481635142000123 ], [ -119.251120318999952, 50.481473094000116 ], [ -119.25115391599995, 50.480285305000052 ], [ -119.251159106999935, 50.480102296000091 ] ], [ [ -119.237956213999908, 50.464950054000042 ], [ -119.23798735299998, 50.464742817000051 ], [ -119.237561896, 50.464716825000032 ], [ -119.237642862000015, 50.464178024000013 ], [ -119.237096018999949, 50.464144613000073 ], [ -119.237435394000016, 50.461886215000028 ], [ -119.237371693999975, 50.46188232300009 ], [ -119.237314381999965, 50.462263723000056 ], [ -119.232151454999951, 50.461948138000082 ], [ -119.232126807999961, 50.462112032000121 ], [ -119.236414149999973, 50.462374113000081 ], [ -119.236065595999946, 50.464693223000083 ], [ -119.237878262999985, 50.464803979000109 ], [ -119.237857221999903, 50.464944006000124 ], [ -119.237956213999908, 50.464950054000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "138", "sL_BldgLoss": "138", "sL_StrLoss": "138", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034C76605CECE5DC0F552EBDC38424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.233468617999932, 50.51493219500005 ], [ -119.234326282999973, 50.514890411000067 ], [ -119.233841472999984, 50.518111068000039 ], [ -119.233639446999959, 50.518098733000073 ], [ -119.23354709399996, 50.518712173000019 ], [ -119.233071675999923, 50.518683145000068 ], [ -119.233038983999975, 50.518900285000036 ], [ -119.23253401599996, 50.518869450000061 ], [ -119.232394604999953, 50.51979529699999 ], [ -119.228591812999966, 50.519563017000117 ], [ -119.22855953599999, 50.516267795000019 ], [ -119.228605637999948, 50.516121707000075 ], [ -119.230403605, 50.51552299300009 ], [ -119.230752114999987, 50.515436854000058 ], [ -119.231229308999957, 50.515318890000088 ], [ -119.232193133999928, 50.515109463000023 ], [ -119.232584594999977, 50.515024419000092 ], [ -119.233468617999932, 50.51493219500005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "74.3", "sL_BldgLoss": "74.3", "sL_StrLoss": "74.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006353198CF2D25DC003807C6CBF3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.295055659999932, 50.476457693000071 ], [ -119.295103774999987, 50.47613482100008 ], [ -119.294356227999984, 50.476089549000072 ], [ -119.294239353999956, 50.476082471000076 ], [ -119.294772571, 50.47250460100004 ], [ -119.297460063999921, 50.472667336000072 ], [ -119.297639729999929, 50.475728641000067 ], [ -119.297627875, 50.476613427000082 ], [ -119.295055659999932, 50.476457693000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "188", "sL_BldgLoss": "188", "sL_StrLoss": "188", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E702349DDFCE5DC0FF19ADBC47434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.230619566999962, 50.527874301000118 ], [ -119.230164603999953, 50.527271584000104 ], [ -119.229917343999901, 50.526699801000056 ], [ -119.229880751999985, 50.526615213000063 ], [ -119.229650877, 50.526212190000095 ], [ -119.22917147899993, 50.52502851800007 ], [ -119.229049069999959, 50.523946929000083 ], [ -119.22904786, 50.523936455000147 ], [ -119.229027974999937, 50.523760672000037 ], [ -119.228731346999922, 50.52215116100011 ], [ -119.231560511999973, 50.522323969000098 ], [ -119.231287020999972, 50.524139794000035 ], [ -119.236141591999967, 50.524436145000081 ], [ -119.236089018999962, 50.524785442000116 ], [ -119.236197214999891, 50.524792044 ], [ -119.23576624, 50.527655218000085 ], [ -119.236576199999959, 50.527704640000096 ], [ -119.236507936999956, 50.528158159000036 ], [ -119.23090943099993, 50.528146272000107 ], [ -119.230870368999931, 50.528119756000159 ], [ -119.230619566999962, 50.527874301000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "52.8", "sL_BldgLoss": "52.8", "sL_StrLoss": "52.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C95E089C59D15DC06B81B9ED2D3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.268115387999956, 50.494130712000164 ], [ -119.268321848999932, 50.492751426000041 ], [ -119.268608435999923, 50.492747529000042 ], [ -119.26875030599993, 50.492783392000064 ], [ -119.268882874000013, 50.492816922000053 ], [ -119.269124356999939, 50.492840634000061 ], [ -119.269523505999942, 50.492848164000129 ], [ -119.273960492999933, 50.49293186700006 ], [ -119.273730175999958, 50.494471813000061 ], [ -119.268115387999956, 50.494130712000164 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80114250", "BldgCostT": "56010000", "sL_LossRatio": "0.992440541954992", "sL_AssetLoss": "859.85", "sL_BldgLoss": "853.35", "sL_StrLoss": "851", "sL_NStrLoss": "2.35", "sL_ContLoss": "6.5", "geom_point": "0101000020E6100000337E8E4D7AD05DC0705E5ADC983E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.256110332999953, 50.495945776000077 ], [ -119.256320302999939, 50.494545613000078 ], [ -119.251469341999893, 50.494250166000064 ], [ -119.251392922999969, 50.492757987000068 ], [ -119.251391923999932, 50.492738528000125 ], [ -119.251391349999963, 50.492727584000107 ], [ -119.251377367999964, 50.492410382000052 ], [ -119.251376943999986, 50.492400387000032 ], [ -119.251368664999973, 50.492162087000075 ], [ -119.251291807999948, 50.489950393000072 ], [ -119.251250180999989, 50.489708593000081 ], [ -119.251184675999966, 50.489531400000018 ], [ -119.251063875999961, 50.487055192000085 ], [ -119.251050198999963, 50.486774797000052 ], [ -119.251069823999927, 50.486285902000127 ], [ -119.251094795999947, 50.485694407000068 ], [ -119.251060422999942, 50.484800605000068 ], [ -119.251067192999983, 50.483480163000117 ], [ -119.253118998999966, 50.483605194000077 ], [ -119.253075017999933, 50.483898406000094 ], [ -119.25461387099989, 50.483992154000106 ], [ -119.25441490599999, 50.485318919000058 ], [ -119.256979509999965, 50.485475108000117 ], [ -119.256985425999986, 50.485435648000148 ], [ -119.25622265599999, 50.485389200000064 ], [ -119.256758997999938, 50.481811555000057 ], [ -119.26237216699991, 50.482153235000133 ], [ -119.262023069999913, 50.484483867000087 ], [ -119.263925377999954, 50.484599597000091 ], [ -119.263867512999965, 50.484986 ], [ -119.263193916999967, 50.484970501000078 ], [ -119.263390134999895, 50.487738230000112 ], [ -119.262920723999969, 50.48834484200006 ], [ -119.263179694999963, 50.492821208000109 ], [ -119.268047039999956, 50.492755160000108 ], [ -119.267980953999938, 50.493196647000026 ], [ -119.262366367999931, 50.49285525500008 ], [ -119.262451106999919, 50.49228962400008 ], [ -119.26223130299995, 50.492276253000078 ], [ -119.26224721799997, 50.492170011000049 ], [ -119.261778035999953, 50.492141468000057 ], [ -119.261774526999901, 50.492164893000101 ], [ -119.256902299999922, 50.49186837400007 ], [ -119.256825727999967, 50.492379071000073 ], [ -119.262261289999941, 50.492709859000058 ], [ -119.26172525599999, 50.496287483000117 ], [ -119.256110332999953, 50.495945776000077 ] ], [ [ -119.256293490999923, 50.490933714000029 ], [ -119.256342742999919, 50.490605242000072 ], [ -119.254378526, 50.490485626000094 ], [ -119.254329258999974, 50.490814097000033 ], [ -119.256293490999923, 50.490933714000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37650000", "BldgCostT": "25230000", "sL_LossRatio": "1", "sL_AssetLoss": "2482.9", "sL_BldgLoss": "2482.9", "sL_StrLoss": "2482.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E614F449B4D05DC05A13030BFD404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.249324954999977, 50.519915741000027 ], [ -119.249744469999925, 50.517122565000093 ], [ -119.248347635999963, 50.517037474000126 ], [ -119.248303957999966, 50.517328239000044 ], [ -119.247520569999949, 50.517280509000123 ], [ -119.24738596499999, 50.518176459000117 ], [ -119.245081955999964, 50.518036050000049 ], [ -119.244987787999946, 50.518662611000074 ], [ -119.243603617999923, 50.518578236000074 ], [ -119.243568635999978, 50.518810944000059 ], [ -119.237951045999964, 50.518468329000029 ], [ -119.238088733999973, 50.517553147000058 ], [ -119.237299887999924, 50.517505012000079 ], [ -119.237356407999968, 50.51712936800002 ], [ -119.235050842, 50.516988651000105 ], [ -119.235122352999952, 50.516513527000015 ], [ -119.234165746000016, 50.516455128000089 ], [ -119.23440182899999, 50.514886728000093 ], [ -119.234890586999896, 50.514862893000021 ], [ -119.235619414999988, 50.514869493000091 ], [ -119.237033021999963, 50.514985631000073 ], [ -119.239338910999962, 50.51517499300008 ], [ -119.240636193999975, 50.515330817000134 ], [ -119.241301897999961, 50.515380382000096 ], [ -119.241636945999986, 50.515384625000102 ], [ -119.242532591999918, 50.515395893000104 ], [ -119.245077513999931, 50.51519999700011 ], [ -119.245430810999949, 50.515140306000028 ], [ -119.245912482999984, 50.51501890000003 ], [ -119.248039084, 50.514314611000096 ], [ -119.24830075099996, 50.514225432000075 ], [ -119.249620790999984, 50.513775499000062 ], [ -119.250119724999934, 50.513568661000122 ], [ -119.250807103999932, 50.51328369600003 ], [ -119.251505600999934, 50.513067209000113 ], [ -119.251510157999988, 50.512786945000109 ], [ -119.251661357, 50.512796153000096 ], [ -119.25176215299993, 50.512124737000114 ], [ -119.25163471599997, 50.512116976000129 ], [ -119.251568331999962, 50.512559176000131 ], [ -119.251513913999958, 50.51255586200007 ], [ -119.251545514999961, 50.510612012000131 ], [ -119.251593383999989, 50.510519859000077 ], [ -119.251655119999953, 50.510401106000117 ], [ -119.252035000999911, 50.510154415000088 ], [ -119.252372130999973, 50.510029389000131 ], [ -119.252061386999912, 50.512099543000062 ], [ -119.252745400999956, 50.512141196000137 ], [ -119.252988244999983, 50.510523238000104 ], [ -119.253837777999948, 50.510574963000089 ], [ -119.253919534999966, 50.510030155000024 ], [ -119.252588583999952, 50.509949116000058 ], [ -119.252651713999953, 50.509925703000135 ], [ -119.253113588999952, 50.509718291000112 ], [ -119.253419013999988, 50.509524806000066 ], [ -119.253553406999956, 50.50936509900005 ], [ -119.253618913999958, 50.509193111000101 ], [ -119.253726301, 50.508524500000057 ], [ -119.253663004999979, 50.508257106000038 ], [ -119.253448695999978, 50.508032891000056 ], [ -119.253156798999939, 50.507853489000119 ], [ -119.252102449999967, 50.507326980000109 ], [ -119.252218777999985, 50.50655194299999 ], [ -119.251502473999949, 50.506508316000037 ], [ -119.25154530099995, 50.505389424000036 ], [ -119.251629236, 50.503195752000074 ], [ -119.251636717999958, 50.503000006000015 ], [ -119.251619005999927, 50.502545867000038 ], [ -119.251577384000015, 50.501479108000076 ], [ -119.251656104999924, 50.500595806000021 ], [ -119.251561650999975, 50.49999796900002 ], [ -119.251539895999926, 50.499860387000076 ], [ -119.251519227999964, 50.49944119600007 ], [ -119.251560590999986, 50.498834500000044 ], [ -119.251541386999975, 50.498687900000071 ], [ -119.251448388, 50.497977407000107 ], [ -119.25153261, 50.497247002000115 ], [ -119.251633810999948, 50.496808201000071 ], [ -119.251554790999975, 50.495918911000025 ], [ -119.251528061999977, 50.495396685000046 ], [ -119.251496628999973, 50.494782957000048 ], [ -119.252138197999926, 50.494822043000092 ], [ -119.251766097999962, 50.497301719000035 ], [ -119.253186135999954, 50.49738821900015 ], [ -119.253091598999916, 50.49801829700008 ], [ -119.255760996999967, 50.498180850000075 ], [ -119.255700145999953, 50.498586556000092 ], [ -119.257759160999967, 50.49871189499999 ], [ -119.25722269799995, 50.502289472000086 ], [ -119.256088391999938, 50.502220428000072 ], [ -119.255946161999987, 50.503168673000097 ], [ -119.25634651699994, 50.503193044000042 ], [ -119.255895835999951, 50.506197656000055 ], [ -119.25793966199997, 50.506322045000076 ], [ -119.257942167999886, 50.506305340000019 ], [ -119.258922248999951, 50.506364975000054 ], [ -119.258955431999965, 50.506143664000071 ], [ -119.259115058999953, 50.506153376000029 ], [ -119.259147236000032, 50.505938767000096 ], [ -119.26026752599995, 50.506006920000075 ], [ -119.260474651999971, 50.504625194000042 ], [ -119.26453370099992, 50.50487203400013 ], [ -119.265914563999942, 50.504955973000051 ], [ -119.265971262999926, 50.504577426000075 ], [ -119.264772867999966, 50.504504579000084 ], [ -119.263933933999979, 50.50445357600006 ], [ -119.264469889999958, 50.500875977000106 ], [ -119.26484594099999, 50.500898840000097 ], [ -119.264864479000011, 50.500775086000068 ], [ -119.270444329999989, 50.501114177000034 ], [ -119.270710206999979, 50.499337615000059 ], [ -119.272332759999955, 50.499436166000123 ], [ -119.272511189999989, 50.498243554000084 ], [ -119.276625740999933, 50.498493356000068 ], [ -119.27666931, 50.49820195000008 ], [ -119.277293635999911, 50.498239839000099 ], [ -119.280992626999989, 50.498464258000126 ], [ -119.28103282099994, 50.498195248000066 ], [ -119.286648212999921, 50.498535695000044 ], [ -119.286114043999987, 50.502113411000074 ], [ -119.282638300999949, 50.501902721000043 ], [ -119.282535415999973, 50.502591392000078 ], [ -119.281614127999958, 50.502535527000099 ], [ -119.281567286999916, 50.502849014000049 ], [ -119.278963545999957, 50.502691087000116 ], [ -119.278898986999963, 50.503122974000078 ], [ -119.277917622999922, 50.503063435000037 ], [ -119.277527070999909, 50.505675599000078 ], [ -119.271910859999963, 50.505334695000094 ], [ -119.272254004, 50.503041535000079 ], [ -119.27187170699996, 50.503018319000034 ], [ -119.271457313999946, 50.505787438000027 ], [ -119.266017260999945, 50.505456932000065 ], [ -119.265732957999973, 50.50735501100008 ], [ -119.269953930999961, 50.5076114760001 ], [ -119.269418329999951, 50.511189072000072 ], [ -119.265024561999951, 50.510922105000084 ], [ -119.264844284, 50.512125374000036 ], [ -119.260686972999977, 50.51187261200004 ], [ -119.260439270999939, 50.513524772000061 ], [ -119.259165818999946, 50.513447315000128 ], [ -119.259107531000012, 50.513836001000122 ], [ -119.258167976999985, 50.513778844000058 ], [ -119.258068419999987, 50.514442623000036 ], [ -119.25709157199995, 50.5143831890001 ], [ -119.256848853999941, 50.516001148000036 ], [ -119.251693411999909, 50.515687330000084 ], [ -119.251586147999916, 50.516401766000058 ], [ -119.251167474999988, 50.516376271000112 ], [ -119.251161300000021, 50.51641739900009 ], [ -119.255479669999943, 50.516680295000064 ], [ -119.254942811999967, 50.520257781000034 ], [ -119.249324954999977, 50.519915741000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "168.4", "sL_BldgLoss": "168.4", "sL_StrLoss": "168.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003DDF81C7D8D05DC06892BB7C29334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.260919608000037, 50.401587820000024 ], [ -119.260978828999967, 50.401191775000029 ], [ -119.259930275999977, 50.401127836000043 ], [ -119.26033391499999, 50.400791608000112 ], [ -119.260926479999938, 50.399978394000058 ], [ -119.260961178999935, 50.399807493000075 ], [ -119.260856883999978, 50.399702104000063 ], [ -119.260554595999935, 50.39981460100006 ], [ -119.259970615999976, 50.40056368900013 ], [ -119.259264651, 50.400745490000126 ], [ -119.25974910299999, 50.397506118000102 ], [ -119.265351826999961, 50.397847682000084 ], [ -119.265302417999933, 50.39817836 ], [ -119.265289066999941, 50.398267710000034 ], [ -119.267053799999942, 50.398375236000042 ], [ -119.266519263999925, 50.40195330300007 ], [ -119.260916022999965, 50.40161179800004 ], [ -119.260919608000037, 50.401587820000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "118", "sL_BldgLoss": "118", "sL_StrLoss": "118", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED8AAE45EACF5DC05013A6BDFB334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.246433010999965, 50.404082729000024 ], [ -119.251431425999925, 50.404388026000042 ], [ -119.251317098999934, 50.404456095000029 ], [ -119.250958079999947, 50.404886198000099 ], [ -119.250385910999952, 50.405310586000112 ], [ -119.250415004000018, 50.405921608000043 ], [ -119.251001493000018, 50.406099598 ], [ -119.251696253999967, 50.406696804000021 ], [ -119.251514734999915, 50.407908900000137 ], [ -119.251475960999954, 50.40800142400014 ], [ -119.24589677499992, 50.407660670000084 ], [ -119.246433010999965, 50.404082729000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83147661", "BldgCostT": "57335743", "sL_LossRatio": "1", "sL_AssetLoss": "1065.7", "sL_BldgLoss": "1065.7", "sL_StrLoss": "1065.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009280A866DCCF5DC09BA7DF2A74304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.230994807999949, 50.382294188000117 ], [ -119.232033814999951, 50.37986356800014 ], [ -119.232079903999988, 50.379755708000076 ], [ -119.23230364299998, 50.37923231600012 ], [ -119.232856842999951, 50.377937963000079 ], [ -119.233367568999881, 50.376831817000067 ], [ -119.233790226999972, 50.376180671000107 ], [ -119.234065704999978, 50.376256225000077 ], [ -119.234344361999931, 50.376263355000077 ], [ -119.234494649999988, 50.376264923000065 ], [ -119.236014543999886, 50.376280777000062 ], [ -119.23674645899996, 50.376280333000082 ], [ -119.240221677999926, 50.376278039000084 ], [ -119.241990739999935, 50.376276845000099 ], [ -119.24296288499994, 50.376276165000014 ], [ -119.243117850999965, 50.376276063000077 ], [ -119.245482450999987, 50.376274382000112 ], [ -119.247421377999984, 50.376272956000044 ], [ -119.251388059999968, 50.37626995600008 ], [ -119.25323021299999, 50.376268517000014 ], [ -119.254539112999964, 50.37626747600013 ], [ -119.254499871999926, 50.376529810000051 ], [ -119.254634563999971, 50.376538035000088 ], [ -119.254552034999989, 50.377089756000018 ], [ -119.254851068999955, 50.377108016000101 ], [ -119.254938794999987, 50.376521510000039 ], [ -119.254923611999956, 50.37652058300008 ], [ -119.254961520999984, 50.376267138000053 ], [ -119.257097279000021, 50.376265398000044 ], [ -119.257246437999925, 50.376253855000094 ], [ -119.257354932999974, 50.376245450000049 ], [ -119.257463389999955, 50.376237055000068 ], [ -119.257561776999978, 50.376235171000054 ], [ -119.257674199999897, 50.376232970000039 ], [ -119.257885408999968, 50.376237857000064 ], [ -119.257913546999958, 50.376237321000133 ], [ -119.258082146999982, 50.376234041000053 ], [ -119.258237139999906, 50.37624001700005 ], [ -119.258335542999987, 50.376238098000144 ], [ -119.258433877999906, 50.376236201000083 ], [ -119.258644682999943, 50.376232114000111 ], [ -119.258841421999946, 50.376228295000011 ], [ -119.259010060999969, 50.376225004000077 ], [ -119.2592068, 50.376221186000102 ], [ -119.259361790999961, 50.376227160000099 ], [ -119.259460160999978, 50.376225250000061 ], [ -119.25965731899997, 50.376230426000092 ], [ -119.259812311999951, 50.376236400000074 ], [ -119.259966897999931, 50.376233400000103 ], [ -119.260192177999897, 50.376238013000027 ], [ -119.260402982999935, 50.376233923000079 ], [ -119.260557518, 50.376230909000036 ], [ -119.260754255999942, 50.37622708800005 ], [ -119.260909264999938, 50.376233082000049 ], [ -119.261049822999965, 50.376230340000049 ], [ -119.261176693999943, 50.376236873000039 ], [ -119.261303181999963, 50.376234399000118 ], [ -119.261430091999955, 50.376240922000072 ], [ -119.261542491999961, 50.376238751000116 ], [ -119.261683453000018, 50.376244979000049 ], [ -119.26188019199995, 50.376241156000091 ], [ -119.261978981999945, 50.376248241000056 ], [ -119.262133551999938, 50.376245213000054 ], [ -119.262344780999953, 50.376250116000051 ], [ -119.26244355399993, 50.376257176000117 ], [ -119.262598140999941, 50.376254172000138 ], [ -119.262654361000031, 50.376253080000033 ], [ -119.262696933, 50.376261254000035 ], [ -119.262809352999938, 50.376259049000033 ], [ -119.262907722999927, 50.376257136000085 ], [ -119.263020121999944, 50.376254964000097 ], [ -119.26314703099996, 50.376261484000047 ], [ -119.263301619999964, 50.376258478000082 ], [ -119.263470258999959, 50.376255180000108 ], [ -119.263582659999912, 50.376253008000027 ], [ -119.263723177999978, 50.37625027100011 ], [ -119.26375310399996, 50.376249688000058 ], [ -119.263802480999942, 50.376245693000058 ], [ -119.269386414999971, 50.376279204000134 ], [ -119.26988140899999, 50.376313800000069 ], [ -119.270056641999972, 50.376362567000037 ], [ -119.270267989999979, 50.376421402000069 ], [ -119.271748990999981, 50.377289712000064 ], [ -119.272789186999887, 50.378000236000126 ], [ -119.269700155999971, 50.377812074000104 ], [ -119.269584288999951, 50.378588390000132 ], [ -119.265804152999976, 50.37835801100006 ], [ -119.265750828999927, 50.378715077000059 ], [ -119.260311705999953, 50.3783833620001 ], [ -119.260289981999932, 50.378528704000097 ], [ -119.254804515999936, 50.378193886000048 ], [ -119.254430649999904, 50.380693131000051 ], [ -119.248830134999977, 50.380351007000101 ], [ -119.248912739, 50.37979929300014 ], [ -119.248498860999973, 50.379773998000083 ], [ -119.248544533999947, 50.3794689590001 ], [ -119.247965765999936, 50.379433585000136 ], [ -119.248196144999966, 50.377894998000095 ], [ -119.24773347499999, 50.377866717000138 ], [ -119.247535365999951, 50.379189693000129 ], [ -119.247304410999945, 50.379175575000033 ], [ -119.247244476999981, 50.379575799000065 ], [ -119.241644152999967, 50.37923331000011 ], [ -119.241660042999939, 50.379127289000117 ], [ -119.240355618999928, 50.37904747500005 ], [ -119.240403718999957, 50.378726608000072 ], [ -119.239121570999913, 50.37864814200006 ], [ -119.238978717999913, 50.379600887000016 ], [ -119.234940918999882, 50.379353680000094 ], [ -119.234943183999945, 50.379401846000093 ], [ -119.234521574, 50.379409949000035 ], [ -119.234546917999936, 50.379949147000104 ], [ -119.234125301999939, 50.379957250000103 ], [ -119.234150642999978, 50.38049644700007 ], [ -119.233729020999988, 50.380504548000019 ], [ -119.233741688999942, 50.380774145000039 ], [ -119.23340145399996, 50.380780682000065 ], [ -119.233374751999932, 50.38095861200005 ], [ -119.23332821799994, 50.380955761000045 ], [ -119.233332732999926, 50.381051844000048 ], [ -119.233063382999916, 50.381057017000032 ], [ -119.233023285999963, 50.381324201000027 ], [ -119.237845907999912, 50.381619511000046 ], [ -119.237493344999976, 50.38397022500002 ], [ -119.230666944999925, 50.38397184400003 ], [ -119.230023277999948, 50.383971961000114 ], [ -119.230100030999921, 50.383896722000031 ], [ -119.230427053999918, 50.383414479000052 ], [ -119.230571955999963, 50.383200760000129 ], [ -119.230715235999952, 50.38289403200011 ], [ -119.230988425999954, 50.382309128000024 ], [ -119.230994807999949, 50.382294188000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30217500", "BldgCostT": "19575000", "sL_LossRatio": "0.996768669856007", "sL_AssetLoss": "3930.2700232", "sL_BldgLoss": "3917.5700232", "sL_StrLoss": "3913.0000232", "sL_NStrLoss": "4.57", "sL_ContLoss": "12.7", "geom_point": "0101000020E61000004D78B605D3CE5DC071D68E7FF2324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.229419832999923, 50.408423313000057 ], [ -119.229517029999968, 50.407776430000112 ], [ -119.229422077999942, 50.407770614000107 ], [ -119.229536294999889, 50.407010443000104 ], [ -119.228722782, 50.406960611000088 ], [ -119.22872754399998, 50.406644080000071 ], [ -119.228737002999978, 50.406014910000039 ], [ -119.228747888999962, 50.405291206000079 ], [ -119.228756616999988, 50.404648019000085 ], [ -119.228782391000024, 50.402737708000075 ], [ -119.228817816999936, 50.400149987000049 ], [ -119.228818597999975, 50.400094677000041 ], [ -119.228820033000019, 50.399996562000084 ], [ -119.228824446999937, 50.399690059000143 ], [ -119.228833508, 50.399060537000054 ], [ -119.228841151999973, 50.398529464000056 ], [ -119.228847491999957, 50.398089194000086 ], [ -119.227958167999958, 50.398087281000109 ], [ -119.227842738999982, 50.398087017000115 ], [ -119.217093373999944, 50.398063041000121 ], [ -119.217101011999929, 50.398053558000122 ], [ -119.21723347599999, 50.397888921000067 ], [ -119.218515982999989, 50.396294795000095 ], [ -119.219011391999956, 50.395473002000074 ], [ -119.219228791999939, 50.394854400000028 ], [ -119.21935701299999, 50.394231665000135 ], [ -119.219532317999921, 50.393380326000049 ], [ -119.219617006, 50.392968990000099 ], [ -119.219650526999928, 50.392857728000152 ], [ -119.219717742999975, 50.392634640000068 ], [ -119.219772411999926, 50.392453209000024 ], [ -119.220058222999953, 50.391943502000075 ], [ -119.220950030000012, 50.390818234000093 ], [ -119.221474618999949, 50.390156295000118 ], [ -119.222051699999938, 50.389425297000045 ], [ -119.222585182999964, 50.38874954500006 ], [ -119.22282591799997, 50.388444601000067 ], [ -119.222893883999987, 50.38835851300005 ], [ -119.222908361999956, 50.388340235000086 ], [ -119.223186904999935, 50.387988298000067 ], [ -119.223788590999959, 50.387266906000029 ], [ -119.223846420999934, 50.387210291000024 ], [ -119.224048661000012, 50.38701227200005 ], [ -119.224148853999949, 50.386914202000149 ], [ -119.22426582599995, 50.386799705000023 ], [ -119.224930327999928, 50.386402613000023 ], [ -119.22620571, 50.385880522 ], [ -119.227789910999888, 50.38527803800006 ], [ -119.228658168999971, 50.384909870000072 ], [ -119.228731308999926, 50.384878869 ], [ -119.228683879999934, 50.385505784000095 ], [ -119.228714788000019, 50.385658801000012 ], [ -119.228714839999924, 50.385670945000051 ], [ -119.228719021999979, 50.386911916000045 ], [ -119.228719713999965, 50.387109873000085 ], [ -119.22871990599999, 50.387172793000026 ], [ -119.228722471999916, 50.387931225000095 ], [ -119.22872250199994, 50.38794618700009 ], [ -119.228724265999944, 50.388458715000063 ], [ -119.228724738999958, 50.388602255000059 ], [ -119.228725441000023, 50.388808961000109 ], [ -119.228726504999941, 50.389124016000061 ], [ -119.228729032999979, 50.389879425000053 ], [ -119.228730092999982, 50.390194226000084 ], [ -119.228731519999911, 50.390612121000025 ], [ -119.230264432999945, 50.390607385000038 ], [ -119.230414066999955, 50.390606922000138 ], [ -119.231930873999929, 50.390602255000019 ], [ -119.232037725999959, 50.390601924000073 ], [ -119.231830521999939, 50.391981991000108 ], [ -119.232313712999897, 50.39201158500007 ], [ -119.231833065000018, 50.395212823000058 ], [ -119.232470927999941, 50.395251888000104 ], [ -119.23234809399996, 50.396069991000026 ], [ -119.235115198999907, 50.396239416000121 ], [ -119.235074335999983, 50.396511675000092 ], [ -119.240140358999952, 50.39682167800008 ], [ -119.239894884999927, 50.398458374000064 ], [ -119.245366604999958, 50.398792938000035 ], [ -119.245365025999888, 50.398803481000073 ], [ -119.248493606999943, 50.398994652000077 ], [ -119.247957594999932, 50.402572626000108 ], [ -119.242583625999927, 50.402244198000055 ], [ -119.242152285999978, 50.405120752000094 ], [ -119.241447013999974, 50.405077630000115 ], [ -119.241263313999951, 50.40630247000005 ], [ -119.235659723999987, 50.405959691000106 ], [ -119.235895891999959, 50.404386310000127 ], [ -119.233195710999894, 50.404221033000027 ], [ -119.233170432999927, 50.404389373000107 ], [ -119.235562945999902, 50.404535821000103 ], [ -119.235465842999957, 50.405182711000087 ], [ -119.23556079, 50.405188522000067 ], [ -119.235023680999987, 50.408766406000034 ], [ -119.229419832999923, 50.408423313000057 ] ], [ [ -119.23933085199999, 50.401337463000033 ], [ -119.239472735999982, 50.400391610000085 ], [ -119.235711067999958, 50.400161442000105 ], [ -119.235683937999966, 50.400342212000041 ], [ -119.234470437999946, 50.400267932000084 ], [ -119.234460483999925, 50.400334240000106 ], [ -119.233797259999903, 50.400293638000107 ], [ -119.233744681999966, 50.400643858000102 ], [ -119.23716933899999, 50.400853468000065 ], [ -119.237117035999972, 50.401202021000145 ], [ -119.23933085199999, 50.401337463000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "89", "sL_BldgLoss": "89", "sL_StrLoss": "89", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051B372F544D45DC0D2E58BC508344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.315804352999947, 50.408043405000072 ], [ -119.31583357299999, 50.407846409000079 ], [ -119.315816966999975, 50.407845405000074 ], [ -119.315841402999965, 50.407680656000117 ], [ -119.315819079000036, 50.40767930600002 ], [ -119.31584820099999, 50.407482965000064 ], [ -119.313804127999958, 50.40735935000005 ], [ -119.314131844999935, 50.405150431000024 ], [ -119.317227336999906, 50.405169747000102 ], [ -119.317461353999974, 50.405107182000052 ], [ -119.317523173999945, 50.405056126000069 ], [ -119.319181964999984, 50.405113785000047 ], [ -119.319261431999976, 50.405319910000067 ], [ -119.318885761999937, 50.408229678000055 ], [ -119.315804352999947, 50.408043405000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5385000", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "664", "sL_BldgLoss": "664", "sL_StrLoss": "664", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B04C2AE03FCE5DC0132BE5AD213A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.217613856999918, 50.45591150700006 ], [ -119.217446698999979, 50.455813681000066 ], [ -119.21708111, 50.455852819000029 ], [ -119.217073584999952, 50.455132917000128 ], [ -119.217062319999982, 50.454053530000103 ], [ -119.217056212999921, 50.453469102000085 ], [ -119.217028902999971, 50.450857355000032 ], [ -119.219636176999984, 50.451017155000081 ], [ -119.219550087999934, 50.451588690000094 ], [ -119.221011272999945, 50.451678219000037 ], [ -119.220760403999947, 50.453344005000169 ], [ -119.220775494999927, 50.453344929000103 ], [ -119.220592740999976, 50.454558352000042 ], [ -119.221120116999955, 50.454590660000122 ], [ -119.221364955999945, 50.452964876000038 ], [ -119.22459174799998, 50.45316250000009 ], [ -119.22459330699995, 50.45315214900009 ], [ -119.230202667999919, 50.453495468 ], [ -119.22983963899999, 50.455909150000089 ], [ -119.228189881999953, 50.456005098000098 ], [ -119.22798058799999, 50.455923687000045 ], [ -119.227677639999953, 50.456003135000081 ], [ -119.224501683999932, 50.455990921000051 ], [ -119.224050824999907, 50.455989203000087 ], [ -119.221158680999977, 50.455978005000055 ], [ -119.22001720199998, 50.455973574000019 ], [ -119.217856379999887, 50.455965135000064 ], [ -119.217613856999918, 50.45591150700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012356EBDE8D25DC078B06AB5AC354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.292918850999939, 50.417374125000038 ], [ -119.298524287999967, 50.417714005000036 ], [ -119.297992013999973, 50.421292136000083 ], [ -119.29238613699998, 50.420952230000125 ], [ -119.292918850999939, 50.417374125000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5621834", "BldgCostT": "3613334", "sL_LossRatio": "1", "sL_AssetLoss": "554.4", "sL_BldgLoss": "554.4", "sL_StrLoss": "554.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD5137C4F6CF5DC0C97918BDC7374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.248989182999964, 50.43654776100005 ], [ -119.249203960999978, 50.435115065000055 ], [ -119.245371606999953, 50.434881101000038 ], [ -119.245908207999946, 50.431303284000144 ], [ -119.251515018, 50.431645533000086 ], [ -119.251177860999974, 50.433895478000089 ], [ -119.255010161999948, 50.43412924200004 ], [ -119.254474246999933, 50.437707091000071 ], [ -119.251014991999966, 50.437496089000035 ], [ -119.250601223999979, 50.440256673000064 ], [ -119.244993350999948, 50.439914380000047 ], [ -119.245530040999938, 50.436336587000035 ], [ -119.248989182999964, 50.43654776100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "138", "sL_BldgLoss": "138", "sL_StrLoss": "138", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002900AD96C7D05DC0F1F0434AD8344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.259647257, 50.410890848000079 ], [ -119.26525164, 50.411232412000032 ], [ -119.26506453899998, 50.412484170000042 ], [ -119.264716808999964, 50.414810412000051 ], [ -119.259111987, 50.414468822000046 ], [ -119.259411578999959, 50.412466287000065 ], [ -119.259647257, 50.410890848000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7257917", "BldgCostT": "4741667", "sL_LossRatio": "1", "sL_AssetLoss": "688", "sL_BldgLoss": "688", "sL_StrLoss": "688", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FC51F5A724D45DC0D218CEB113354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.313587381000019, 50.421187516000096 ], [ -119.313895274999979, 50.41911295200007 ], [ -119.311742664999883, 50.418982770000063 ], [ -119.31209351699999, 50.416619278000049 ], [ -119.311308012999987, 50.416571763000043 ], [ -119.31166458699991, 50.414169744000048 ], [ -119.311149172999933, 50.414138564000027 ], [ -119.311680319999965, 50.410560337000014 ], [ -119.311785900999936, 50.410566725000088 ], [ -119.312069109999968, 50.408658542000104 ], [ -119.312070582999951, 50.40865863100008 ], [ -119.312105220999968, 50.408425242000099 ], [ -119.317709692, 50.408764156000075 ], [ -119.317597760999888, 50.409518976000058 ], [ -119.317795942000018, 50.409530955 ], [ -119.317265290999927, 50.413109215000055 ], [ -119.316960032999987, 50.413090764000096 ], [ -119.316928804, 50.413301318000059 ], [ -119.317444210999938, 50.41333247199999 ], [ -119.317093664999931, 50.415695991000099 ], [ -119.317879159999961, 50.415743464000045 ], [ -119.3178193699999, 50.416146615000052 ], [ -119.317784575999951, 50.416146906000073 ], [ -119.317787534, 50.416361268000074 ], [ -119.317571471999941, 50.417818050000079 ], [ -119.317807318999925, 50.417832303000097 ], [ -119.317783193999944, 50.421441142000063 ], [ -119.313587381000019, 50.421187516000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5353000", "BldgCostT": "3220000", "sL_LossRatio": "1", "sL_AssetLoss": "189.3", "sL_BldgLoss": "189.3", "sL_StrLoss": "189.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB61026DE1D05DC01DEF861B0D314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262622226999952, 50.380578141000036 ], [ -119.268222874999978, 50.380919568000074 ], [ -119.267688636999964, 50.384497719000102 ], [ -119.265120708999959, 50.384341209000127 ], [ -119.26489579299999, 50.385846880000059 ], [ -119.259294558999983, 50.3855052870001 ], [ -119.259829473, 50.381927181000066 ], [ -119.262397245999978, 50.382083814000076 ], [ -119.262622226999952, 50.380578141000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99399072", "BldgCostT": "67415918", "sL_LossRatio": "1", "sL_AssetLoss": "1188.9", "sL_BldgLoss": "1188.9", "sL_StrLoss": "1188.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000276A06440AD25DC0DCC104455E334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.278439541999916, 50.409114469000016 ], [ -119.278686304999908, 50.407460092000079 ], [ -119.275353356999972, 50.407257386000019 ], [ -119.275494621999911, 50.406310717000075 ], [ -119.274009517999929, 50.406220362000042 ], [ -119.271244391999971, 50.406052076000016 ], [ -119.271778603999977, 50.402474004000048 ], [ -119.274032945, 50.402611210000032 ], [ -119.27401667, 50.402271252000062 ], [ -119.26880888299999, 50.401954217000139 ], [ -119.269343237999919, 50.398376139000078 ], [ -119.27081836, 50.398465966000039 ], [ -119.27097145399992, 50.397440506000088 ], [ -119.270560353999926, 50.397415474000091 ], [ -119.270662493999922, 50.39673132700009 ], [ -119.267765711999942, 50.396554899000137 ], [ -119.267798865999936, 50.396332920000106 ], [ -119.267397815999928, 50.396308488000052 ], [ -119.267410458999962, 50.396223839000058 ], [ -119.267062067999973, 50.396202614000117 ], [ -119.264016113999944, 50.396016996000107 ], [ -119.264550777999915, 50.392438915000092 ], [ -119.268437249999963, 50.39267573900004 ], [ -119.2685970499999, 50.39160560500008 ], [ -119.270060312999959, 50.391694733000072 ], [ -119.270393417999955, 50.391715020000071 ], [ -119.27046138499999, 50.391259729000076 ], [ -119.270475063999967, 50.391168084000107 ], [ -119.269305537999912, 50.391096852000075 ], [ -119.269839724999912, 50.387518723000035 ], [ -119.275441286999921, 50.387859783000039 ], [ -119.27527844299999, 50.38895152200012 ], [ -119.273757500000016, 50.389615207000119 ], [ -119.273830508999978, 50.389808291000094 ], [ -119.273826308999972, 50.390035486000066 ], [ -119.273744503, 50.390204704000077 ], [ -119.273512981999929, 50.390325995000055 ], [ -119.271861388999938, 50.390786909000077 ], [ -119.271539001999955, 50.390920800000032 ], [ -119.27122661, 50.39115811100006 ], [ -119.271143909999978, 50.391314601000083 ], [ -119.271117895, 50.391441191000062 ], [ -119.271154381999949, 50.391556293000058 ], [ -119.271317697999933, 50.391778305000045 ], [ -119.271624297999935, 50.392072303000049 ], [ -119.271780268999947, 50.392205149000077 ], [ -119.272592327999917, 50.392896709000055 ], [ -119.272789697999926, 50.393118209000093 ], [ -119.272830708999919, 50.393240707000054 ], [ -119.272780814, 50.393632104000083 ], [ -119.272682730999946, 50.394026154000095 ], [ -119.272669281, 50.394080147000039 ], [ -119.272371382999893, 50.395277095000019 ], [ -119.272383505999983, 50.395527996000062 ], [ -119.272384486999968, 50.395548709000117 ], [ -119.272446304999946, 50.39567429900012 ], [ -119.27262569, 50.395892907000054 ], [ -119.272865228999976, 50.396042349000041 ], [ -119.273146817999944, 50.39621799400004 ], [ -119.273394640999982, 50.396405097000063 ], [ -119.273530410999953, 50.396507595000074 ], [ -119.273589983999955, 50.396570281000031 ], [ -119.274034881999938, 50.39703839600007 ], [ -119.274336919999897, 50.397193002000044 ], [ -119.275495704999926, 50.397602006000042 ], [ -119.275662605999941, 50.397698198000136 ], [ -119.27597730599993, 50.397879602000025 ], [ -119.276026220999924, 50.397948289000041 ], [ -119.276084816999941, 50.3980305010001 ], [ -119.276229075999979, 50.398533572000119 ], [ -119.276250285999978, 50.398607504000026 ], [ -119.276106977999959, 50.399129467000058 ], [ -119.276024286999956, 50.399430491000075 ], [ -119.275742607999945, 50.399869186000082 ], [ -119.275549611999935, 50.399988302000033 ], [ -119.275537878999913, 50.399993312000056 ], [ -119.27499849799996, 50.400223812000057 ], [ -119.274806707999957, 50.400457603000113 ], [ -119.275021704, 50.40046618200013 ], [ -119.275536674999955, 50.400543933000094 ], [ -119.27561337, 50.400555496000031 ], [ -119.275923456999948, 50.400586744000123 ], [ -119.276296519999946, 50.400624322000048 ], [ -119.276992004999912, 50.400694405000131 ], [ -119.277246492999936, 50.400694642000111 ], [ -119.277294512999987, 50.400694711000014 ], [ -119.277459163999978, 50.400656528000141 ], [ -119.2775873, 50.400626802000048 ], [ -119.277861573999942, 50.400493601000107 ], [ -119.278099701999949, 50.400328508000023 ], [ -119.278462818999941, 50.399997611000046 ], [ -119.278655178999927, 50.399702398000045 ], [ -119.27887120299999, 50.398917588000053 ], [ -119.278878286999898, 50.398905986000024 ], [ -119.279011614999959, 50.39868700400006 ], [ -119.27910685099998, 50.398599992000094 ], [ -119.279257108999971, 50.398462705000085 ], [ -119.279549888999981, 50.398679106000031 ], [ -119.279555067999937, 50.398688469000028 ], [ -119.279694688999925, 50.398940591000056 ], [ -119.27975990499999, 50.399147686000042 ], [ -119.279746334, 50.399997531000068 ], [ -119.279737517999976, 50.400548985000079 ], [ -119.279813501999982, 50.400798301000073 ], [ -119.27991058299996, 50.400919220000027 ], [ -119.27998870299993, 50.401016498000089 ], [ -119.280293689999908, 50.401151509000051 ], [ -119.280658403999951, 50.401264902000058 ], [ -119.281658092999962, 50.401443002000057 ], [ -119.282853021999969, 50.401601308000096 ], [ -119.283210485999959, 50.401668201000085 ], [ -119.284012807999915, 50.401900204000107 ], [ -119.285915109999976, 50.402604291000067 ], [ -119.286288699999943, 50.402658593000091 ], [ -119.286710489999976, 50.402683293000045 ], [ -119.288972616999942, 50.402528214000064 ], [ -119.289697285999935, 50.402531610000082 ], [ -119.290964913999971, 50.402676194000044 ], [ -119.292551197999899, 50.402749891000099 ], [ -119.29294149499999, 50.402787208000106 ], [ -119.294318234999949, 50.403026032000064 ], [ -119.295405303999971, 50.403214597000044 ], [ -119.29646469, 50.403333988000043 ], [ -119.300076712999953, 50.403711806000089 ], [ -119.300362430999925, 50.403724948000075 ], [ -119.300691608999983, 50.403740084000056 ], [ -119.301087316999912, 50.403712599000066 ], [ -119.301492702999965, 50.403647791 ], [ -119.301870590999954, 50.403539793000057 ], [ -119.302284671999985, 50.403379111000092 ], [ -119.302844185999959, 50.403162002000023 ], [ -119.303156509999923, 50.403086102000032 ], [ -119.303178684999963, 50.403083302000049 ], [ -119.303469633999896, 50.403046519000057 ], [ -119.30363911299996, 50.403025086000042 ], [ -119.304569796999942, 50.403058898000033 ], [ -119.306287104999939, 50.403212484000058 ], [ -119.306786378999931, 50.403315014000071 ], [ -119.307667089999953, 50.403571396000139 ], [ -119.307944890999977, 50.40367484500004 ], [ -119.308501452999977, 50.403882142000036 ], [ -119.308569925999976, 50.405177809000108 ], [ -119.309575945999939, 50.405166175000019 ], [ -119.309695897999944, 50.405164877000139 ], [ -119.311364665999946, 50.405146819000066 ], [ -119.312534819999954, 50.405143098000117 ], [ -119.312114577999964, 50.407974945000042 ], [ -119.306510246999963, 50.407635748000118 ], [ -119.306776875999958, 50.405840582000117 ], [ -119.303931887999951, 50.405668281000061 ], [ -119.303959223000021, 50.405484313000088 ], [ -119.303495714999954, 50.405456234000049 ], [ -119.303410093999929, 50.406032449000122 ], [ -119.297806067999915, 50.405692811000044 ], [ -119.297973063999947, 50.404569882000033 ], [ -119.295351341999904, 50.404410891000047 ], [ -119.295345353999934, 50.40445113800007 ], [ -119.294739740999972, 50.404414402000072 ], [ -119.294565383999966, 50.405586253000052 ], [ -119.288961480999959, 50.405246168000133 ], [ -119.289108692999932, 50.404257581000103 ], [ -119.28453807899993, 50.40397999000006 ], [ -119.284441192999935, 50.404630187000095 ], [ -119.283836065999964, 50.40459342 ], [ -119.283658423999924, 50.405785402000085 ], [ -119.281249507999959, 50.405639009000026 ], [ -119.281244223999977, 50.405674438000041 ], [ -119.284577083, 50.405876967000104 ], [ -119.284043844999985, 50.409455084000101 ], [ -119.278439541999916, 50.409114469000016 ] ], [ [ -119.278296050999955, 50.403825811000047 ], [ -119.278482562, 50.402575267000067 ], [ -119.27613231299992, 50.402432318000045 ], [ -119.27618712099995, 50.402064952000082 ], [ -119.275694137999977, 50.402034961000027 ], [ -119.275709576999958, 50.402357222 ], [ -119.275287772999917, 50.402365476000121 ], [ -119.275303246999954, 50.402688505000043 ], [ -119.277382032999924, 50.402814960000022 ], [ -119.277240818999971, 50.40376163500008 ], [ -119.278296050999955, 50.403825811000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "224055367", "BldgCostT": "151597782", "sL_LossRatio": "0.995110736821939", "sL_AssetLoss": "5010.98", "sL_BldgLoss": "4986.48", "sL_StrLoss": "4977.6", "sL_NStrLoss": "8.88", "sL_ContLoss": "24.5", "geom_point": "0101000020E6100000F5C7FF0D2FCF5DC0DA2E23AB11374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.232740695999951, 50.455766358000069 ], [ -119.232883476999987, 50.454816656000077 ], [ -119.23087574000003, 50.454693860000049 ], [ -119.231008538999987, 50.453810783000101 ], [ -119.230738395999978, 50.453794258000087 ], [ -119.231146568000014, 50.451079918000119 ], [ -119.229950456999958, 50.451006741000072 ], [ -119.230488471999976, 50.447429071000087 ], [ -119.230503104999968, 50.447429966000094 ], [ -119.230520957999929, 50.447311240000076 ], [ -119.227304076999971, 50.447114369000104 ], [ -119.227266207999946, 50.447366089000049 ], [ -119.225674568999935, 50.447268646000083 ], [ -119.225655040999925, 50.447398426000106 ], [ -119.224350552999979, 50.447318546000062 ], [ -119.223885032999988, 50.450411359000043 ], [ -119.221506111999972, 50.450265646000034 ], [ -119.221388060999971, 50.451049614000091 ], [ -119.217028120999899, 50.450782427000092 ], [ -119.21701134499996, 50.449177880000015 ], [ -119.216991018999977, 50.44896305900005 ], [ -119.216985170999948, 50.448900964000103 ], [ -119.216895765999979, 50.448789869000073 ], [ -119.216933612999981, 50.445079501000123 ], [ -119.216914312999961, 50.443820771000048 ], [ -119.216910802999948, 50.443196115000021 ], [ -119.216952689999985, 50.443144985000046 ], [ -119.217560474999971, 50.442403004000056 ], [ -119.218361901999941, 50.441424610000077 ], [ -119.219394798999971, 50.440766702000126 ], [ -119.219767284999975, 50.440482595000027 ], [ -119.220124001999977, 50.440152507000036 ], [ -119.22085258599995, 50.439394217000043 ], [ -119.220887385999987, 50.439358001000045 ], [ -119.221097703999959, 50.43919107700011 ], [ -119.221149325999988, 50.439150102000092 ], [ -119.221457799999882, 50.438961410000054 ], [ -119.222952795999916, 50.438374437000078 ], [ -119.224166758999928, 50.438448805000071 ], [ -119.223987891999926, 50.439637425000065 ], [ -119.224283037999896, 50.439655504000044 ], [ -119.223772250999957, 50.443049625000086 ], [ -119.225485932999959, 50.44315457800014 ], [ -119.225485901999932, 50.443154784000058 ], [ -119.226908964999936, 50.443241919000094 ], [ -119.22717927799998, 50.441444948000047 ], [ -119.226377582999987, 50.441395862000029 ], [ -119.226811482999921, 50.438511461000076 ], [ -119.223306383999955, 50.438296784000045 ], [ -119.223316589999911, 50.438228968 ], [ -119.225527781999943, 50.437318795000067 ], [ -119.226042196999984, 50.43714360700006 ], [ -119.227098614999974, 50.436864284000094 ], [ -119.227400102999979, 50.436694090000067 ], [ -119.2276011099999, 50.436467310000062 ], [ -119.227800825999935, 50.435910804000073 ], [ -119.227950111999974, 50.435670795000043 ], [ -119.22833421899999, 50.435383793000057 ], [ -119.229392585999946, 50.434855490000125 ], [ -119.229662399999938, 50.43458501200007 ], [ -119.22990960099996, 50.434079297000068 ], [ -119.230013097000011, 50.433927706000119 ], [ -119.230440132999931, 50.433495370000038 ], [ -119.231184413999941, 50.432741906000039 ], [ -119.23123886499998, 50.432709224000085 ], [ -119.231335637999933, 50.432715146000042 ], [ -119.231346210999916, 50.432644795000023 ], [ -119.232378489999945, 50.432025205000102 ], [ -119.232541313999917, 50.431954351000051 ], [ -119.233055008999884, 50.431730785000084 ], [ -119.23307129, 50.431726637000047 ], [ -119.233934796999932, 50.431505702000088 ], [ -119.234309995999965, 50.431380600000047 ], [ -119.234674695999942, 50.431213398000068 ], [ -119.234835998999984, 50.431109486000011 ], [ -119.235086397999979, 50.43085489900006 ], [ -119.235284028999928, 50.430497842000122 ], [ -119.235343312999987, 50.430390739000124 ], [ -119.235639711999937, 50.429855194 ], [ -119.23611152499997, 50.429222959000121 ], [ -119.236245318, 50.429043693000075 ], [ -119.23701169399996, 50.428272808000024 ], [ -119.238138288999963, 50.427033696000102 ], [ -119.236645613999926, 50.427031723 ], [ -119.236558783999925, 50.427031607000096 ], [ -119.236595264999963, 50.426788657000074 ], [ -119.23608534499999, 50.426757469000066 ], [ -119.236044281000019, 50.427030914000085 ], [ -119.233942048999964, 50.42702806000004 ], [ -119.23222454899998, 50.427025707000084 ], [ -119.232224240999969, 50.427025712000102 ], [ -119.231135610999971, 50.427024196000076 ], [ -119.230773782999961, 50.42695599000011 ], [ -119.23075958799997, 50.426925518000104 ], [ -119.230682909999985, 50.426760883000071 ], [ -119.230802919999974, 50.426339409000057 ], [ -119.231019714999917, 50.425226210000098 ], [ -119.231027286999975, 50.425030770000021 ], [ -119.231028510999963, 50.424999474000096 ], [ -119.23105278099996, 50.42437520200005 ], [ -119.23094310099999, 50.423627412 ], [ -119.230812603999979, 50.423262784000038 ], [ -119.230127489999973, 50.422269501000102 ], [ -119.230098232, 50.422195208000048 ], [ -119.229723213999947, 50.421242706000072 ], [ -119.229338982999977, 50.420702892000051 ], [ -119.228632110999982, 50.419920300000037 ], [ -119.228582948999971, 50.419787949000082 ], [ -119.228539479999966, 50.419670891000116 ], [ -119.228532159999958, 50.419627696000092 ], [ -119.22849230199995, 50.419392703000085 ], [ -119.228571, 50.41741070800007 ], [ -119.228607603999933, 50.41478601600005 ], [ -119.228612472999927, 50.414435302000093 ], [ -119.228622139999985, 50.413743243000084 ], [ -119.228639387, 50.41250519400009 ], [ -119.228671094999982, 50.410397198000055 ], [ -119.231185270999916, 50.410551173000073 ], [ -119.231226923999913, 50.41027389700006 ], [ -119.236831013999932, 50.410616898000043 ], [ -119.236773151999955, 50.411002393000061 ], [ -119.237412426999953, 50.411041501000028 ], [ -119.237720113999984, 50.408991342000014 ], [ -119.24262995399999, 50.409291586000052 ], [ -119.24273011799994, 50.408623656000017 ], [ -119.243418993, 50.408665763000016 ], [ -119.243585140999983, 50.407557672000081 ], [ -119.249188987999901, 50.407900050000073 ], [ -119.24898944, 50.409231993000084 ], [ -119.24836760099997, 50.409621700000059 ], [ -119.247242383999918, 50.409957801000104 ], [ -119.246806511, 50.410245491000069 ], [ -119.246204089999935, 50.410923389000047 ], [ -119.246032792999955, 50.412662409000042 ], [ -119.245667184999945, 50.413236292000086 ], [ -119.245596092999932, 50.41353399800002 ], [ -119.245651082999956, 50.414405604000116 ], [ -119.245920989999917, 50.414751691000085 ], [ -119.246050085999983, 50.414803002000021 ], [ -119.246676391999983, 50.414796149000011 ], [ -119.246668526999883, 50.414848625000054 ], [ -119.246067128, 50.41481188700007 ], [ -119.245905352999941, 50.415891040000076 ], [ -119.243184615999908, 50.415724797000017 ], [ -119.243035091999985, 50.41672177300007 ], [ -119.247203174999967, 50.416976424000033 ], [ -119.246888774999974, 50.419073883000095 ], [ -119.248640069999936, 50.419180832000059 ], [ -119.251150995000017, 50.419334120000045 ], [ -119.250614949999971, 50.422912015000058 ], [ -119.245727645999949, 50.422613601000101 ], [ -119.24500923, 50.422569716000098 ], [ -119.245323741999968, 50.420472272000112 ], [ -119.243810536999931, 50.420379822 ], [ -119.243511311999896, 50.422374880000099 ], [ -119.237905712999961, 50.422032220000084 ], [ -119.237992295999931, 50.421455432000066 ], [ -119.234984800999896, 50.421271472000093 ], [ -119.234555221999983, 50.424131778000088 ], [ -119.233385496999972, 50.424060207000061 ], [ -119.233329942999987, 50.42443001700012 ], [ -119.234978682999952, 50.424530894000014 ], [ -119.235194732999958, 50.423092319000069 ], [ -119.238643550999925, 50.423303252000117 ], [ -119.238709392999951, 50.422864599000015 ], [ -119.244315101999987, 50.423207216000023 ], [ -119.24429618399995, 50.42333335900004 ], [ -119.244215376999961, 50.423872149000026 ], [ -119.248984200999956, 50.42416338900005 ], [ -119.248790060999966, 50.425458703000075 ], [ -119.249091691999979, 50.425477117000071 ], [ -119.249242445000021, 50.424471243000085 ], [ -119.254848433999911, 50.42481332800002 ], [ -119.254717729999953, 50.425686150000118 ], [ -119.25818098799999, 50.425897337 ], [ -119.257916588999962, 50.427663760000065 ], [ -119.258059336999935, 50.427672462000075 ], [ -119.25838319199994, 50.425508755000081 ], [ -119.263989377999948, 50.425850377000074 ], [ -119.263948782999989, 50.426121834000071 ], [ -119.266165227999963, 50.426256817000137 ], [ -119.26563029199994, 50.429834755000122 ], [ -119.261580709999947, 50.429588099000071 ], [ -119.261520044999926, 50.429993575000076 ], [ -119.261297594999945, 50.431480350000051 ], [ -119.255690730999959, 50.431138595000093 ], [ -119.255913364, 50.429651829000129 ], [ -119.255955236999966, 50.429372185000013 ], [ -119.252848386999972, 50.429182688000019 ], [ -119.252826805999945, 50.429326749000019 ], [ -119.24722027299994, 50.428984564000089 ], [ -119.247221921999966, 50.42897356200006 ], [ -119.246119338999932, 50.428906234000095 ], [ -119.246313570999959, 50.427610931000046 ], [ -119.242841624999954, 50.427398846000166 ], [ -119.24294137699999, 50.42673391800011 ], [ -119.242352630999932, 50.426697944000068 ], [ -119.24203653, 50.428804750000062 ], [ -119.241952436999938, 50.429365197000081 ], [ -119.240411636999923, 50.42927103400006 ], [ -119.240034857999916, 50.431781354000115 ], [ -119.243010243999919, 50.431963170000067 ], [ -119.242870174999979, 50.432896720000095 ], [ -119.243355396999959, 50.43292636300005 ], [ -119.242818573999955, 50.43650416 ], [ -119.242171779, 50.436464647000065 ], [ -119.241971110999984, 50.437801777000068 ], [ -119.236363608999952, 50.437459046000114 ], [ -119.236491347999944, 50.436608581000023 ], [ -119.233235666999974, 50.436409461000061 ], [ -119.233522877999974, 50.43449806500012 ], [ -119.233227616999926, 50.434480002000043 ], [ -119.232935540999918, 50.436423687000044 ], [ -119.232179900999952, 50.436377455000098 ], [ -119.232084636999943, 50.43701130400008 ], [ -119.229185499000025, 50.436833881000034 ], [ -119.229018143, 50.437946876000098 ], [ -119.232523241999928, 50.43816137400006 ], [ -119.232331813999934, 50.439435051000082 ], [ -119.237467672999955, 50.439749139000128 ], [ -119.236930302999909, 50.44332687700004 ], [ -119.233459272999966, 50.443114631000078 ], [ -119.233342026999978, 50.443894772000064 ], [ -119.238275745999928, 50.444196426000097 ], [ -119.237738386999965, 50.447774149000061 ], [ -119.23612643099996, 50.447675617000137 ], [ -119.235930976999938, 50.448976487000031 ], [ -119.235916343, 50.448975593000071 ], [ -119.235689321999956, 50.450486462000057 ], [ -119.236885428, 50.450559577000064 ], [ -119.236752753999951, 50.451442664000055 ], [ -119.237022884999973, 50.451459175000082 ], [ -119.236811951999982, 50.452863138000083 ], [ -119.238819623999987, 50.452985828000081 ], [ -119.238378347999969, 50.455923509000094 ], [ -119.232740695999951, 50.455766358000069 ] ], [ [ -119.241298919999977, 50.418629010000124 ], [ -119.241473414999959, 50.417465879000055 ], [ -119.240984203999972, 50.417435973000124 ], [ -119.240809696, 50.418599104000066 ], [ -119.241298919999977, 50.418629010000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4720417", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "507.4", "sL_BldgLoss": "507.4", "sL_StrLoss": "507.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A349BD026CD15DC0BC02D193B2344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.270436452999917, 50.412500902000026 ], [ -119.270514589999905, 50.411977732000125 ], [ -119.268202690999928, 50.411836979000078 ], [ -119.268737210999959, 50.408258949000036 ], [ -119.272587969999904, 50.40849336400003 ], [ -119.274341335999935, 50.408600055000164 ], [ -119.273920171999961, 50.411421675000064 ], [ -119.276232067999928, 50.411562309000082 ], [ -119.275698101000017, 50.415140360000045 ], [ -119.270093155999945, 50.414799325000104 ], [ -119.270436452999917, 50.412500902000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "180.8", "sL_BldgLoss": "180.8", "sL_StrLoss": "180.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068FE7F3986CF5DC0A934BD1F92324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.24003460199999, 50.393124055000051 ], [ -119.245636633999979, 50.393466619000101 ], [ -119.245100461, 50.397044604000051 ], [ -119.239497989999961, 50.396702015000024 ], [ -119.24003460199999, 50.393124055000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3820000", "BldgCostT": "2425000", "sL_LossRatio": "0.914941999037746", "sL_AssetLoss": "282.160405", "sL_BldgLoss": "258.160405", "sL_StrLoss": "249.500405", "sL_NStrLoss": "8.66", "sL_ContLoss": "24", "geom_point": "0101000020E610000095AB06FE83D15DC0C5858759FD304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.275800025999956, 50.388723914000181 ], [ -119.275922313999899, 50.387904002000056 ], [ -119.275541578999949, 50.387880831000103 ], [ -119.275973803999989, 50.384982803000064 ], [ -119.270767226999965, 50.384665806000029 ], [ -119.27106799299996, 50.382650521000059 ], [ -119.270057840999954, 50.38258899 ], [ -119.270591868999986, 50.379010819000051 ], [ -119.273981363999951, 50.379217247000021 ], [ -119.274065954999941, 50.378650115000049 ], [ -119.275142395999964, 50.378976716000089 ], [ -119.27550569600001, 50.37914599500008 ], [ -119.275781318999961, 50.379363100000042 ], [ -119.275970917999985, 50.379607595000031 ], [ -119.276109010999932, 50.37986598400007 ], [ -119.27611354899993, 50.379880543000056 ], [ -119.275985738999964, 50.380737655000146 ], [ -119.275655789999973, 50.381038105000073 ], [ -119.275303709999918, 50.381305502000039 ], [ -119.274651405999947, 50.381699991000097 ], [ -119.274285904999928, 50.381952998000052 ], [ -119.274117521000022, 50.382154003000061 ], [ -119.2740461879999, 50.382376204000103 ], [ -119.274064362999965, 50.382587726000075 ], [ -119.274065310999958, 50.382598501000089 ], [ -119.27413059, 50.38280470100004 ], [ -119.274313591999913, 50.383159804000094 ], [ -119.274439827999942, 50.383340331000049 ], [ -119.274523186999929, 50.383459609000063 ], [ -119.275189210999926, 50.38419716900011 ], [ -119.275234384999976, 50.384247199000058 ], [ -119.275327757999946, 50.384350607000044 ], [ -119.275523683999936, 50.384567595000142 ], [ -119.275825671999925, 50.384844991000122 ], [ -119.276047186999904, 50.384991063000029 ], [ -119.278175838, 50.386394863000113 ], [ -119.278743497999983, 50.386769209000121 ], [ -119.277685417999962, 50.387843188000069 ], [ -119.277677908999962, 50.387850795000055 ], [ -119.277342905999916, 50.388050599000088 ], [ -119.275800025999956, 50.388723914000181 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9843750", "BldgCostT": "6525000", "sL_LossRatio": "1", "sL_AssetLoss": "1050", "sL_BldgLoss": "1050", "sL_StrLoss": "1050", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021D96D6167D05DC05BD3BCE394344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.247807978999958, 50.418893301000075 ], [ -119.247996741999955, 50.417633859000091 ], [ -119.247517556999966, 50.417604595000128 ], [ -119.247967283999913, 50.41460389300007 ], [ -119.248054214999982, 50.414620708000015 ], [ -119.24834861099994, 50.414884200000152 ], [ -119.248773201999953, 50.414938305000085 ], [ -119.249940610999928, 50.414627797000101 ], [ -119.251423091999982, 50.413817390000112 ], [ -119.252369195999947, 50.41300700900009 ], [ -119.25384021399999, 50.411359198000085 ], [ -119.25430608, 50.409893694000104 ], [ -119.25470431, 50.409382393000016 ], [ -119.25497511099999, 50.408288594000076 ], [ -119.255900519999983, 50.407604998000039 ], [ -119.256167198999918, 50.407294486000048 ], [ -119.257915699999899, 50.404984497000079 ], [ -119.258238709999901, 50.404087196000063 ], [ -119.259317896999931, 50.402825392000111 ], [ -119.259507302999964, 50.402362493000105 ], [ -119.259585017999896, 50.401665717000064 ], [ -119.260804084000014, 50.401740056000037 ], [ -119.26328907499996, 50.401891548000073 ], [ -119.26302484699994, 50.403659163000057 ], [ -119.264817447999931, 50.403768409000051 ], [ -119.264282670999989, 50.407346441000072 ], [ -119.260552449, 50.407119077000033 ], [ -119.260436532999933, 50.407894128000052 ], [ -119.260016432999976, 50.407868514000064 ], [ -119.259865464999976, 50.408877838000151 ], [ -119.2596976199999, 50.408867604000058 ], [ -119.259359168999936, 50.411130144000026 ], [ -119.258153636999978, 50.411056631000086 ], [ -119.25811755399998, 50.411297787000123 ], [ -119.258242494999962, 50.411305406000054 ], [ -119.258069436999932, 50.412462001000044 ], [ -119.257707107, 50.414883372000077 ], [ -119.257067217, 50.414844348000067 ], [ -119.257003798999932, 50.41526808800004 ], [ -119.256512851999929, 50.415238145000053 ], [ -119.25641890699994, 50.415865800000134 ], [ -119.255810805999971, 50.415828707000045 ], [ -119.255744400999959, 50.41627231400004 ], [ -119.253874074999885, 50.416158209000045 ], [ -119.253413264999921, 50.419235461000014 ], [ -119.248786715999955, 50.41895306599999 ], [ -119.247807978999958, 50.418893301000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69776500", "BldgCostT": "49090000", "sL_LossRatio": "1", "sL_AssetLoss": "142.5", "sL_BldgLoss": "142.5", "sL_StrLoss": "142.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E7E28245BCE5DC0082ADB6E1F304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.225087090999949, 50.37420128100004 ], [ -119.227381388999945, 50.374341986000061 ], [ -119.226843997999964, 50.377919969000132 ], [ -119.226188429000018, 50.377879769000039 ], [ -119.221244034999984, 50.377576449000067 ], [ -119.22178186499994, 50.373998492000041 ], [ -119.225087090999949, 50.37420128100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36331417", "BldgCostT": "21426667", "sL_LossRatio": "0.997666893658471", "sL_AssetLoss": "685.781", "sL_BldgLoss": "684.181", "sL_StrLoss": "683.6", "sL_NStrLoss": "0.581", "sL_ContLoss": "1.6", "geom_point": "0101000020E6100000D23AC33741CF5DC0635EA2D5242C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.242739579999977, 50.351395297000089 ], [ -119.243054389999955, 50.349293076000031 ], [ -119.241964394999954, 50.349314104000072 ], [ -119.242027900000025, 50.35066209700004 ], [ -119.241606546, 50.350670223000073 ], [ -119.241631944999966, 50.351209419000064 ], [ -119.24075568899994, 50.351226314 ], [ -119.240367866999932, 50.35123379000003 ], [ -119.240266333999941, 50.349076999000019 ], [ -119.239844991999945, 50.349085119000101 ], [ -119.23978155399999, 50.347737124000055 ], [ -119.241077699999963, 50.347712142000063 ], [ -119.241125773999926, 50.347391182000081 ], [ -119.239461356999982, 50.34728925600011 ], [ -119.2391067499999, 50.3496560580001 ], [ -119.236342033999932, 50.349486695000053 ], [ -119.234884921999935, 50.349397405000076 ], [ -119.234403490999981, 50.349367899000079 ], [ -119.233510190999965, 50.349313145000096 ], [ -119.233627752999965, 50.348529158000098 ], [ -119.234046713999959, 50.345735002000048 ], [ -119.235051605999928, 50.345796595000131 ], [ -119.23499500099993, 50.344591135000016 ], [ -119.23625890799994, 50.344566826000111 ], [ -119.236246241999936, 50.344297227000069 ], [ -119.23691807199998, 50.344284300000055 ], [ -119.236937267999934, 50.344156211000033 ], [ -119.235821226999988, 50.344087821000095 ], [ -119.236004511999951, 50.342864961000018 ], [ -119.230636946999965, 50.342535881000103 ], [ -119.231173616999925, 50.338957720000053 ], [ -119.231315366999979, 50.338966413000087 ], [ -119.232392233000013, 50.34024971100007 ], [ -119.23268397799994, 50.34025031500007 ], [ -119.234203806999943, 50.340253433000015 ], [ -119.239234282999959, 50.340275340000112 ], [ -119.239878451999942, 50.340273364000069 ], [ -119.242098842999923, 50.340247190000063 ], [ -119.242796849999962, 50.340238949000081 ], [ -119.24298350799998, 50.340950661000086 ], [ -119.243157197, 50.341612984000051 ], [ -119.243217437999974, 50.341842717000134 ], [ -119.243259357999975, 50.34209751900007 ], [ -119.243307616999957, 50.342390793000114 ], [ -119.243316621999952, 50.343776581000157 ], [ -119.243318823999914, 50.344107618000038 ], [ -119.243193210999976, 50.344985425000083 ], [ -119.243071167999943, 50.345838523000097 ], [ -119.243015376999907, 50.346228557000089 ], [ -119.243024463999959, 50.346405180000062 ], [ -119.243090127999935, 50.347681139000059 ], [ -119.243308603999964, 50.348466363000078 ], [ -119.243360478999975, 50.348624538000081 ], [ -119.243429745999975, 50.348835779000105 ], [ -119.243574436999921, 50.349142548000074 ], [ -119.244237567, 50.350521497000052 ], [ -119.24471595299994, 50.351516254000046 ], [ -119.242739579999977, 50.351395297000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12595583", "BldgCostT": "8213333", "sL_LossRatio": "0.999110935266196", "sL_AssetLoss": "869.453", "sL_BldgLoss": "868.68", "sL_StrLoss": "868.4", "sL_NStrLoss": "0.28", "sL_ContLoss": "0.773", "geom_point": "0101000020E6100000F1216E6FF3CC5DC00054D40D522C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.196430747999898, 50.349583017 ], [ -119.196970205999961, 50.346005055000063 ], [ -119.198357075999951, 50.346090527000037 ], [ -119.198795283999956, 50.343183090000082 ], [ -119.202907532999959, 50.343436422000096 ], [ -119.20294290399994, 50.343201585000038 ], [ -119.208538475999944, 50.343546045000068 ], [ -119.208407845999915, 50.344414038000089 ], [ -119.208507135999966, 50.344420147000037 ], [ -119.207968607999987, 50.347998175000065 ], [ -119.202372490999934, 50.347653687000026 ], [ -119.202467869999964, 50.347020540000031 ], [ -119.202465067, 50.347020367 ], [ -119.202027058999988, 50.349927805000078 ], [ -119.196430747999898, 50.349583017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69694964", "BldgCostT": "44149489", "sL_LossRatio": "0.994904759171752", "sL_AssetLoss": "3136.26", "sL_BldgLoss": "3120.28", "sL_StrLoss": "3114.5", "sL_NStrLoss": "5.78", "sL_ContLoss": "15.98", "geom_point": "0101000020E6100000B02770A121CD5DC0060AB42287334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.180430438999963, 50.425022790000106 ], [ -119.1804972899999, 50.42458125800011 ], [ -119.180426982999961, 50.424576922000028 ], [ -119.180472032999958, 50.424279373000054 ], [ -119.180453402999916, 50.424278224000084 ], [ -119.180995017999933, 50.420700675000063 ], [ -119.181897613999965, 50.42075633800011 ], [ -119.182069832999915, 50.419618497000044 ], [ -119.182177584999977, 50.419625142 ], [ -119.18221974199993, 50.419346600000019 ], [ -119.183240641999959, 50.419409547000043 ], [ -119.183375837999904, 50.418516124000114 ], [ -119.185612132999921, 50.41865398000003 ], [ -119.185887522999934, 50.416833377000053 ], [ -119.185892172999971, 50.416833664000102 ], [ -119.186092989999963, 50.415505979000038 ], [ -119.186331962999986, 50.415520707000027 ], [ -119.186436600999926, 50.414828850000042 ], [ -119.186312556999894, 50.414821205000074 ], [ -119.186853593999928, 50.411243586000104 ], [ -119.188065726999966, 50.411318287000078 ], [ -119.188135360999951, 50.410857714000045 ], [ -119.189002411999965, 50.410911140000088 ], [ -119.189344031999937, 50.408651136000039 ], [ -119.191364113999924, 50.408775585000129 ], [ -119.19151068399999, 50.407805584000073 ], [ -119.191653330999927, 50.407814370000047 ], [ -119.191810329999925, 50.406775288000055 ], [ -119.197413687000036, 50.40712028300009 ], [ -119.197342741999989, 50.407590216000116 ], [ -119.199086343999952, 50.407697509000094 ], [ -119.199213782999905, 50.406853138000066 ], [ -119.197956020000021, 50.406775744000043 ], [ -119.198033519999981, 50.406262330000089 ], [ -119.19685852, 50.406190015000043 ], [ -119.19692324499999, 50.40576130100002 ], [ -119.196916401999914, 50.40576143 ], [ -119.196878992000023, 50.40495261700007 ], [ -119.19704580699991, 50.404949466000055 ], [ -119.197398619999959, 50.402612305000041 ], [ -119.19803916499994, 50.40265172900007 ], [ -119.198007299999944, 50.401963058000035 ], [ -119.200116400999917, 50.401923173000064 ], [ -119.200128890999935, 50.402192776000106 ], [ -119.20055071199999, 50.40218479400005 ], [ -119.200563200999937, 50.402454397000035 ], [ -119.201406851999948, 50.402438429000036 ], [ -119.20141934599998, 50.40270803400005 ], [ -119.201841173, 50.402700047000046 ], [ -119.201849800999952, 50.402886185000085 ], [ -119.203001503999985, 50.402957019000134 ], [ -119.202949734999947, 50.403300251000132 ], [ -119.205254355999926, 50.40344195800003 ], [ -119.20525391299995, 50.403444897000071 ], [ -119.206096995999985, 50.403428904000094 ], [ -119.20608447399999, 50.403159302000113 ], [ -119.207349962999942, 50.403135287000076 ], [ -119.207337433999967, 50.402865685000101 ], [ -119.208181086999943, 50.402849668000073 ], [ -119.208168552999936, 50.402580066000027 ], [ -119.208590375999989, 50.402572054000096 ], [ -119.208577841999954, 50.402302451000054 ], [ -119.208999662999958, 50.40229443900008 ], [ -119.208911903999962, 50.400407224000091 ], [ -119.209333710999914, 50.400399210000046 ], [ -119.209308634, 50.399860007000044 ], [ -119.209503488999985, 50.399856304000068 ], [ -119.205502075999959, 50.399610368000069 ], [ -119.206041413999941, 50.396032586000032 ], [ -119.211643547999969, 50.396376867000058 ], [ -119.211578140999961, 50.396811138000061 ], [ -119.212130685999909, 50.396845079000109 ], [ -119.212294557999982, 50.395756929000058 ], [ -119.21392983, 50.395857363000069 ], [ -119.214357022999934, 50.393019769000041 ], [ -119.215038718999949, 50.393061629000037 ], [ -119.215304175999961, 50.391297986000019 ], [ -119.216662017999923, 50.391381353000028 ], [ -119.216706717999926, 50.39108430400006 ], [ -119.216498491999914, 50.391088274000055 ], [ -119.216483869999976, 50.390774809000071 ], [ -119.216133821, 50.390394661000123 ], [ -119.216104920999911, 50.390226861000045 ], [ -119.216356822999956, 50.390094262000076 ], [ -119.216558921999948, 50.390100962000126 ], [ -119.216838552999917, 50.390208179000098 ], [ -119.21718488599997, 50.387906421000061 ], [ -119.21747457799999, 50.387924205000047 ], [ -119.217583377999986, 50.387201029000067 ], [ -119.217574936999966, 50.387020133000107 ], [ -119.217610694999948, 50.387019451000057 ], [ -119.217659532999946, 50.386694829000113 ], [ -119.218328785999958, 50.386735911000109 ], [ -119.218405718999975, 50.386734442000083 ], [ -119.218380552, 50.386195241000067 ], [ -119.218802227999987, 50.38618719500009 ], [ -119.21878964299998, 50.38591759400007 ], [ -119.219632987999987, 50.385901497000098 ], [ -119.219620396999929, 50.385631895000124 ], [ -119.220465318999914, 50.385615764000072 ], [ -119.220498682999974, 50.385393891000014 ], [ -119.22383931499995, 50.385598835000096 ], [ -119.223837091999911, 50.385551321000101 ], [ -119.224258758999937, 50.385543256000119 ], [ -119.224246143999949, 50.385273656000031 ], [ -119.22466780799999, 50.385265588000046 ], [ -119.224655189999979, 50.384995988000078 ], [ -119.225076852999919, 50.384987920000093 ], [ -119.225064232, 50.384718319000093 ], [ -119.225148319999946, 50.384716711000053 ], [ -119.22541560800002, 50.382937897000041 ], [ -119.227095829999939, 50.383040920000084 ], [ -119.227084107999971, 50.382790756000084 ], [ -119.227151201999945, 50.38278947100013 ], [ -119.227539568999987, 50.38020393900009 ], [ -119.227833458999939, 50.380221956000113 ], [ -119.22817233899994, 50.377965525 ], [ -119.228311711999964, 50.377037448000088 ], [ -119.229199314999974, 50.377091859000117 ], [ -119.230618964999977, 50.377178871000105 ], [ -119.230613220999942, 50.37705642300012 ], [ -119.2313212899999, 50.377042836000044 ], [ -119.233142763999965, 50.377007863000074 ], [ -119.233142412999882, 50.377000391000095 ], [ -119.232993596000014, 50.37699127500008 ], [ -119.233014420999922, 50.376852508000063 ], [ -119.232269281999919, 50.376806856000044 ], [ -119.232806229999966, 50.373228841000071 ], [ -119.233096023999948, 50.373246597000069 ], [ -119.233139230999953, 50.3729586480001 ], [ -119.233575176999963, 50.37298535700009 ], [ -119.233700051999975, 50.37215305899999 ], [ -119.235131978999917, 50.372240774000026 ], [ -119.235195305999966, 50.371818593000057 ], [ -119.237123856999986, 50.371936699000116 ], [ -119.237117635999965, 50.371804443000052 ], [ -119.237397629999975, 50.371799054000121 ], [ -119.23653635, 50.372845952000034 ], [ -119.23622634699997, 50.373222717000033 ], [ -119.234421947999962, 50.37541575100002 ], [ -119.234100737999924, 50.375806103000031 ], [ -119.23379685699993, 50.376172703000059 ], [ -119.233790226999972, 50.376180671000107 ], [ -119.233367568999881, 50.376831817000067 ], [ -119.232856842999951, 50.377937963000079 ], [ -119.23230364299998, 50.37923231600012 ], [ -119.232079903999988, 50.379755708000076 ], [ -119.232033814999951, 50.37986356800014 ], [ -119.230994807999949, 50.382294188000117 ], [ -119.230988425999954, 50.382309128000024 ], [ -119.230715235999952, 50.38289403200011 ], [ -119.230571955999963, 50.383200760000129 ], [ -119.230427053999918, 50.383414479000052 ], [ -119.230100030999921, 50.383896722000031 ], [ -119.230023277999948, 50.383971961000114 ], [ -119.228680388999962, 50.383983853000132 ], [ -119.228731308999926, 50.384878869 ], [ -119.228658168999971, 50.384909870000072 ], [ -119.227789910999888, 50.38527803800006 ], [ -119.22620571, 50.385880522 ], [ -119.224930327999928, 50.386402613000023 ], [ -119.22426582599995, 50.386799705000023 ], [ -119.224148853999949, 50.386914202000149 ], [ -119.224048661000012, 50.38701227200005 ], [ -119.223846420999934, 50.387210291000024 ], [ -119.223788590999959, 50.387266906000029 ], [ -119.223186904999935, 50.387988298000067 ], [ -119.222908361999956, 50.388340235000086 ], [ -119.222893883999987, 50.38835851300005 ], [ -119.22282591799997, 50.388444601000067 ], [ -119.222585182999964, 50.38874954500006 ], [ -119.222051699999938, 50.389425297000045 ], [ -119.221474618999949, 50.390156295000118 ], [ -119.220950030000012, 50.390818234000093 ], [ -119.220058222999953, 50.391943502000075 ], [ -119.219772411999926, 50.392453209000024 ], [ -119.219717742999975, 50.392634640000068 ], [ -119.219650526999928, 50.392857728000152 ], [ -119.219617006, 50.392968990000099 ], [ -119.219532317999921, 50.393380326000049 ], [ -119.21935701299999, 50.394231665000135 ], [ -119.219228791999939, 50.394854400000028 ], [ -119.219011391999956, 50.395473002000074 ], [ -119.218515982999989, 50.396294795000095 ], [ -119.21723347599999, 50.397888921000067 ], [ -119.217101011999929, 50.398053558000122 ], [ -119.217093373999944, 50.398063041000121 ], [ -119.216913582999922, 50.398286515000045 ], [ -119.215516443999931, 50.400022871000054 ], [ -119.215090577999931, 50.400552094000062 ], [ -119.215042259999919, 50.400611476000037 ], [ -119.214646871999918, 50.40109722200004 ], [ -119.213694292999918, 50.402267292000062 ], [ -119.213137419999953, 50.402726899000072 ], [ -119.212600905999977, 50.40305049800007 ], [ -119.212045122999953, 50.403296199000053 ], [ -119.209605855999911, 50.404094129000129 ], [ -119.208153469999942, 50.404569196000125 ], [ -119.207410995999965, 50.404871093000089 ], [ -119.20687860399994, 50.405148897000053 ], [ -119.206373486, 50.405470001000012 ], [ -119.205908109999953, 50.405865605000052 ], [ -119.205389805999928, 50.40638425300007 ], [ -119.205340952999947, 50.405332126000062 ], [ -119.204968282999914, 50.405339194000049 ], [ -119.204863842999941, 50.406031801 ], [ -119.204991842999945, 50.406039671000066 ], [ -119.204859923999976, 50.406914490000091 ], [ -119.204182372000034, 50.407592491000088 ], [ -119.201918385999974, 50.409857702000082 ], [ -119.199989135999957, 50.41147422300007 ], [ -119.199426710999958, 50.411945450000061 ], [ -119.199231387999987, 50.412109102000045 ], [ -119.19555386, 50.41507379000015 ], [ -119.192206175999928, 50.417772125000077 ], [ -119.192179166999935, 50.417770462000107 ], [ -119.192303445999983, 50.41694805000003 ], [ -119.191939364999925, 50.416925631000048 ], [ -119.191903179999912, 50.417165070000152 ], [ -119.191897892999947, 50.417164744000061 ], [ -119.191750610999961, 50.418139290000056 ], [ -119.190044979999954, 50.419513886000097 ], [ -119.185253612999986, 50.423374694000088 ], [ -119.184751695, 50.423822204 ], [ -119.184046670999948, 50.424583093000095 ], [ -119.183566373999938, 50.42545215800002 ], [ -119.180395033999957, 50.42525662000002 ], [ -119.180430438999963, 50.425022790000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4556084", "BldgCostT": "2878334", "sL_LossRatio": "1", "sL_AssetLoss": "439.6", "sL_BldgLoss": "439.6", "sL_StrLoss": "439.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C84D05C356CD5DC0FD231D2F6E304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.205890119999964, 50.376401434000044 ], [ -119.211489820999986, 50.37674573200006 ], [ -119.210951144999939, 50.38032362600012 ], [ -119.205351004999969, 50.379979304000123 ], [ -119.205890119999964, 50.376401434000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4199417", "BldgCostT": "2686667", "sL_LossRatio": "0.988636469481469", "sL_AssetLoss": "107.361", "sL_BldgLoss": "106.141", "sL_StrLoss": "105.7", "sL_NStrLoss": "0.441", "sL_ContLoss": "1.22", "geom_point": "0101000020E610000029B78A5199CD5DC0CD1BCCCB862C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.209953948999924, 50.345902552000069 ], [ -119.215549907999915, 50.346246657000066 ], [ -119.215011915000019, 50.34982470900011 ], [ -119.209415518999947, 50.349480578000069 ], [ -119.209953948999924, 50.345902552000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "110.7", "sL_BldgLoss": "110.7", "sL_StrLoss": "110.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DE32AF3C6BCF5DC0D396A5636F2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.2411817939999, 50.360239 ], [ -119.243654293999924, 50.360390320000121 ], [ -119.242485487999957, 50.362207945000058 ], [ -119.242413818, 50.362319384000024 ], [ -119.242306288999984, 50.362486546000063 ], [ -119.242267777999956, 50.362546488000113 ], [ -119.241817687, 50.363246343000036 ], [ -119.241609750999942, 50.363569683000108 ], [ -119.241550961999948, 50.363661087000082 ], [ -119.241193703999926, 50.364329810000072 ], [ -119.241030423999987, 50.364839335000084 ], [ -119.240942977999978, 50.365112151000062 ], [ -119.240844027999913, 50.365420869000062 ], [ -119.238913099999962, 50.365302663000072 ], [ -119.239449386999965, 50.361724565000038 ], [ -119.240945488999955, 50.361816155000078 ], [ -119.2411817939999, 50.360239 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6824750", "BldgCostT": "4235000", "sL_LossRatio": "1", "sL_AssetLoss": "169.2", "sL_BldgLoss": "169.2", "sL_StrLoss": "169.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009AD0E29452CB5DC09F3B2429A7364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.174181362999946, 50.425917937000058 ], [ -119.174254045999973, 50.425438333000088 ], [ -119.174260062999934, 50.425438704000086 ], [ -119.174309461999925, 50.425112733000049 ], [ -119.179450864, 50.425429980000075 ], [ -119.179450923000033, 50.425425462000128 ], [ -119.179729421999951, 50.425432261000019 ], [ -119.179728110999974, 50.42544708 ], [ -119.179914959999934, 50.425458605000102 ], [ -119.179803745999891, 50.426193060000102 ], [ -119.180010425999967, 50.426205807000045 ], [ -119.180128192, 50.42542806700002 ], [ -119.183508430999936, 50.425636489000119 ], [ -119.183438497999973, 50.425863596000028 ], [ -119.18334231299994, 50.426340694000032 ], [ -119.183304307999961, 50.427002699000099 ], [ -119.178746287999928, 50.427024097000114 ], [ -119.178539181999923, 50.427036907000065 ], [ -119.178169485999931, 50.427059813 ], [ -119.177858093999987, 50.427126412000035 ], [ -119.177450510999932, 50.427314295000045 ], [ -119.176933385999973, 50.42763250400003 ], [ -119.176890509999922, 50.427658903000058 ], [ -119.175418359999952, 50.42877324800007 ], [ -119.175243113999969, 50.428905891000134 ], [ -119.175157512999931, 50.429172289000107 ], [ -119.17507081399998, 50.430024602000039 ], [ -119.174840425999932, 50.430312808000096 ], [ -119.172611494999941, 50.429123518000047 ], [ -119.172206773999932, 50.428872794000036 ], [ -119.171963418999951, 50.428668203000051 ], [ -119.171864818999964, 50.428431906000142 ], [ -119.171933381999935, 50.428203867000065 ], [ -119.171952908999955, 50.428138856000039 ], [ -119.173232381999952, 50.428217849000085 ], [ -119.173586549999968, 50.425881219000075 ], [ -119.174181362999946, 50.425917937000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37389002", "BldgCostT": "22395958", "sL_LossRatio": "1", "sL_AssetLoss": "1819", "sL_BldgLoss": "1819", "sL_StrLoss": "1819", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F703479731D25DC028318473782E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.290124664999951, 50.373660064000113 ], [ -119.290353088999936, 50.372124696000064 ], [ -119.289349086999962, 50.372063700000119 ], [ -119.288226909999963, 50.37199551500003 ], [ -119.288366531999941, 50.371057280000123 ], [ -119.287007435999939, 50.370974683000107 ], [ -119.287534731999955, 50.367431681 ], [ -119.287380389999981, 50.367422300000051 ], [ -119.287661785999944, 50.365531356000048 ], [ -119.286704797999974, 50.365473186000031 ], [ -119.287202254999912, 50.362130422000078 ], [ -119.285706194999989, 50.362039465000059 ], [ -119.285795132999979, 50.361441906000032 ], [ -119.285799447999949, 50.361412913000024 ], [ -119.285561807999954, 50.361417586000059 ], [ -119.285569007999982, 50.361567477000044 ], [ -119.285574758999971, 50.361687175000093 ], [ -119.285344807999962, 50.361691696000072 ], [ -119.285153320999953, 50.361695461000124 ], [ -119.285158105, 50.361795064000077 ], [ -119.285166272999959, 50.361965051000077 ], [ -119.28483946899992, 50.361971475000054 ], [ -119.284740640999985, 50.361973417000094 ], [ -119.284732079999984, 50.36203092900012 ], [ -119.284702311999951, 50.362230898000071 ], [ -119.285591189999977, 50.362284950000074 ], [ -119.285058545999973, 50.365863268000048 ], [ -119.284581825999936, 50.365834280000087 ], [ -119.28452674199994, 50.366204279000023 ], [ -119.27937928599998, 50.365891146000159 ], [ -119.279122987, 50.36761129900006 ], [ -119.273523902999926, 50.367270417000093 ], [ -119.274057475999953, 50.363692161000131 ], [ -119.278568157999956, 50.363966803000025 ], [ -119.278686639999975, 50.363171622000017 ], [ -119.278474833999965, 50.363175774000119 ], [ -119.278468727999964, 50.363048296000052 ], [ -119.278461919999955, 50.362906183000064 ], [ -119.278229139999937, 50.362910745000065 ], [ -119.27761901699995, 50.362922700000105 ], [ -119.277595554999934, 50.36243272300009 ], [ -119.277593199999927, 50.36238351800003 ], [ -119.277548732999932, 50.362384389000113 ], [ -119.277171750999941, 50.362391774000045 ], [ -119.27715079499994, 50.361954006000076 ], [ -119.277145939999954, 50.361852592000034 ], [ -119.2770642, 50.361854192000109 ], [ -119.276303053999968, 50.36186910000005 ], [ -119.27629015299999, 50.361599508000033 ], [ -119.27544727199999, 50.361616010000056 ], [ -119.27539074799995, 50.360434373000032 ], [ -119.275357005, 50.359728867000044 ], [ -119.276199853999969, 50.359712367000085 ], [ -119.276174054999927, 50.359173183000038 ], [ -119.277859731999939, 50.359140164000046 ], [ -119.277808100999962, 50.358061799000019 ], [ -119.277386689999915, 50.358070055000056 ], [ -119.277347975999973, 50.357261280000024 ], [ -119.278612182999922, 50.357236506000092 ], [ -119.278599269999972, 50.35696691600004 ], [ -119.27902067, 50.356958655000057 ], [ -119.278994842999936, 50.356419471000066 ], [ -119.279416235999946, 50.356411210000033 ], [ -119.279390404999916, 50.355872027000061 ], [ -119.279811793999954, 50.355863763000023 ], [ -119.279760124999953, 50.354785398000033 ], [ -119.278917364999955, 50.354801924000078 ], [ -119.278981927999936, 50.356149880000103 ], [ -119.277296359000033, 50.356182914000065 ], [ -119.277244744999976, 50.355104547000089 ], [ -119.277666127999964, 50.35509629200007 ], [ -119.277588698999963, 50.353478742000092 ], [ -119.278010067999929, 50.353470484000113 ], [ -119.277945535999905, 50.352122526000045 ], [ -119.279630961999956, 50.352089485000107 ], [ -119.279682622999971, 50.35316785000002 ], [ -119.281368082999933, 50.353134784000083 ], [ -119.281393935999958, 50.353673965000041 ], [ -119.282658042999941, 50.353649149000077 ], [ -119.28263217599999, 50.353109967000073 ], [ -119.283474903999931, 50.353093416000064 ], [ -119.283423155999984, 50.352015052000098 ], [ -119.284265863999977, 50.351998496000121 ], [ -119.284256581999955, 50.351805143000085 ], [ -119.28534327199999, 50.351856543000032 ], [ -119.285360802999918, 50.352341391000074 ], [ -119.285269210999914, 50.352513798000068 ], [ -119.285142597999965, 50.35256094100005 ], [ -119.284400708999911, 50.352837096000073 ], [ -119.284275098999942, 50.353171697000086 ], [ -119.283592122999949, 50.353275705000016 ], [ -119.283562075999939, 50.353815493000063 ], [ -119.282844715999943, 50.354100293000094 ], [ -119.28218452699997, 50.354538664000145 ], [ -119.28415374399998, 50.354600615000088 ], [ -119.284205405999941, 50.358410417000137 ], [ -119.289962464999988, 50.358479437000014 ], [ -119.289964359999956, 50.358526363000109 ], [ -119.291008237999947, 50.358589483000102 ], [ -119.29095406299993, 50.35936189400006 ], [ -119.290915294999976, 50.359586880000066 ], [ -119.290937591999949, 50.359586570000047 ], [ -119.291096356999972, 50.359603443000054 ], [ -119.29056744899998, 50.367439356000055 ], [ -119.290545287, 50.369151809000122 ], [ -119.291439030999925, 50.369170433000136 ], [ -119.294293806, 50.369193924000115 ], [ -119.294130444999908, 50.370292704000093 ], [ -119.296256559999975, 50.370421771000039 ], [ -119.295724663999948, 50.374000104000103 ], [ -119.294405355999942, 50.373920020000057 ], [ -119.290124664999951, 50.373660064000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "128.6", "sL_BldgLoss": "128.6", "sL_StrLoss": "128.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000899DC64923D05DC0A972350D652E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.249622412999898, 50.360498694000114 ], [ -119.255220477999927, 50.360840788000104 ], [ -119.254685449999954, 50.364418966000137 ], [ -119.249086946999938, 50.364076847000071 ], [ -119.249622412999898, 50.360498694000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12018833", "BldgCostT": "7553333", "sL_LossRatio": "1", "sL_AssetLoss": "1067", "sL_BldgLoss": "1067", "sL_StrLoss": "1067", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDACE4BE70D35DC071990D113B314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.3038750599999, 50.391327708000127 ], [ -119.303919280999978, 50.39102999000005 ], [ -119.301968419999966, 50.390911757000055 ], [ -119.3025000199999, 50.387333470000044 ], [ -119.303390779999944, 50.387387460000063 ], [ -119.30368572399999, 50.385401630000054 ], [ -119.301308879999937, 50.385257550000077 ], [ -119.301561656000018, 50.38355609200007 ], [ -119.299569740999942, 50.38343530499999 ], [ -119.299771884, 50.382074966000083 ], [ -119.298372296999901, 50.381990076000143 ], [ -119.298674965999965, 50.379953503000046 ], [ -119.29890407699996, 50.378411766000063 ], [ -119.304504728999987, 50.37875136000013 ], [ -119.304302743, 50.380111714000073 ], [ -119.305702284999924, 50.380196530000021 ], [ -119.305449682999949, 50.381898005000025 ], [ -119.307046578999959, 50.381994758000062 ], [ -119.307189092, 50.383719541000026 ], [ -119.307045531999933, 50.38468668000008 ], [ -119.307270131999971, 50.384700285000086 ], [ -119.307837703999937, 50.391567760000051 ], [ -119.307720007999961, 50.391560633000012 ], [ -119.307574236999955, 50.391551804000102 ], [ -119.3038750599999, 50.391327708000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11538333", "BldgCostT": "6483333", "sL_LossRatio": "1", "sL_AssetLoss": "176.6", "sL_BldgLoss": "176.6", "sL_StrLoss": "176.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005FA9997BE9D25DC08D4D65304A304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.293062201999959, 50.379088834000086 ], [ -119.293345335999987, 50.377185115000039 ], [ -119.291385293999937, 50.377223762000021 ], [ -119.29128135299996, 50.375067058000099 ], [ -119.292546021999925, 50.375042126000103 ], [ -119.292559018999924, 50.375311714000127 ], [ -119.292980577999927, 50.375303401000075 ], [ -119.293019581999943, 50.376112164000062 ], [ -119.293441146999953, 50.376103848000128 ], [ -119.29345706399999, 50.376433827000071 ], [ -119.29354530099999, 50.375840495000062 ], [ -119.293594367999972, 50.375510537000132 ], [ -119.299194621999959, 50.375850400000019 ], [ -119.298662894999936, 50.379428723000082 ], [ -119.296512240999945, 50.379298240000054 ], [ -119.293062201999959, 50.379088834000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7874167", "BldgCostT": "5166667", "sL_LossRatio": "1", "sL_AssetLoss": "801", "sL_BldgLoss": "801", "sL_StrLoss": "801", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004333DB5796CF5DC04100BA79F42F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234421947999962, 50.37541575100002 ], [ -119.23622634699997, 50.373222717000033 ], [ -119.23653635, 50.372845952000034 ], [ -119.237397629999975, 50.371799054000121 ], [ -119.237539179, 50.371796330000031 ], [ -119.23753164299994, 50.371636155000019 ], [ -119.23784875199999, 50.371250687000078 ], [ -119.23793534499994, 50.371249020000093 ], [ -119.237930733999931, 50.371151029000075 ], [ -119.238299861999963, 50.370702317000067 ], [ -119.238331504000016, 50.370701708000077 ], [ -119.238329816999965, 50.370665902000049 ], [ -119.238525413000019, 50.370428132000015 ], [ -119.239583402999983, 50.370407755000024 ], [ -119.239621493999948, 50.371216549000067 ], [ -119.239199956999968, 50.371224669000121 ], [ -119.239225346999888, 50.371763865000048 ], [ -119.238803804999961, 50.37177198400007 ], [ -119.238816438999919, 50.372040327000072 ], [ -119.240794661999956, 50.372161410000103 ], [ -119.240559632999975, 50.373729534000041 ], [ -119.24505177899999, 50.374004354000114 ], [ -119.245135182999945, 50.373447524000021 ], [ -119.25073481599999, 50.373789838 ], [ -119.250704395999918, 50.373993103000025 ], [ -119.254841500999973, 50.374245826000042 ], [ -119.254539112999964, 50.37626747600013 ], [ -119.25323021299999, 50.376268517000014 ], [ -119.251388059999968, 50.37626995600008 ], [ -119.247421377999984, 50.376272956000044 ], [ -119.245482450999987, 50.376274382000112 ], [ -119.243117850999965, 50.376276063000077 ], [ -119.24296288499994, 50.376276165000014 ], [ -119.241990739999935, 50.376276845000099 ], [ -119.240221677999926, 50.376278039000084 ], [ -119.23674645899996, 50.376280333000082 ], [ -119.236014543999886, 50.376280777000062 ], [ -119.234494649999988, 50.376264923000065 ], [ -119.234344361999931, 50.376263355000077 ], [ -119.234065704999978, 50.376256225000077 ], [ -119.233790226999972, 50.376180671000107 ], [ -119.23379685699993, 50.376172703000059 ], [ -119.234100737999924, 50.375806103000031 ], [ -119.234421947999962, 50.37541575100002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14667917", "BldgCostT": "8641667", "sL_LossRatio": "1", "sL_AssetLoss": "330", "sL_BldgLoss": "330", "sL_StrLoss": "330", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006C3D8554B8CF5DC0EDD62AA8452C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.243308603999964, 50.348466363000078 ], [ -119.243090127999935, 50.347681139000059 ], [ -119.243024463999959, 50.346405180000062 ], [ -119.243015376999907, 50.346228557000089 ], [ -119.243071167999943, 50.345838523000097 ], [ -119.243193210999976, 50.344985425000083 ], [ -119.243318823999914, 50.344107618000038 ], [ -119.243316621999952, 50.343776581000157 ], [ -119.243307616999957, 50.342390793000114 ], [ -119.243259357999975, 50.34209751900007 ], [ -119.243217437999974, 50.341842717000134 ], [ -119.243157197, 50.341612984000051 ], [ -119.24298350799998, 50.340950661000086 ], [ -119.242796849999962, 50.340238949000081 ], [ -119.243465139999927, 50.340225715000059 ], [ -119.244135796999927, 50.340225245000035 ], [ -119.24492092, 50.340223658000092 ], [ -119.245048131999908, 50.340223543000086 ], [ -119.246034771, 50.34022264100004 ], [ -119.246062765999923, 50.340222623000038 ], [ -119.246970958999952, 50.340221809000077 ], [ -119.247439129999989, 50.340220412000086 ], [ -119.247474857999947, 50.340977194000075 ], [ -119.247480831999951, 50.341103709000066 ], [ -119.248048599999933, 50.341138445000162 ], [ -119.247513237999968, 50.344716678000076 ], [ -119.247438, 50.344712076000071 ], [ -119.247158626999962, 50.346579082000062 ], [ -119.246925701999928, 50.346564832000055 ], [ -119.2467899599999, 50.347471888000022 ], [ -119.24676159699996, 50.347470153000067 ], [ -119.246678504999949, 50.34802537100007 ], [ -119.248871846000014, 50.348159537000093 ], [ -119.248543631999979, 50.350353221000042 ], [ -119.248336464999966, 50.351737742000132 ], [ -119.246658943999975, 50.351635133000045 ], [ -119.24471595299994, 50.351516254000046 ], [ -119.244237567, 50.350521497000052 ], [ -119.243574436999921, 50.349142548000074 ], [ -119.243429745999975, 50.348835779000105 ], [ -119.243360478999975, 50.348624538000081 ], [ -119.243308603999964, 50.348466363000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33806000", "BldgCostT": "21665000", "sL_LossRatio": "0.988927057055445", "sL_AssetLoss": "1863.1", "sL_BldgLoss": "1842.47", "sL_StrLoss": "1835", "sL_NStrLoss": "7.47", "sL_ContLoss": "20.63", "geom_point": "0101000020E6100000002D0A794CD15DC0309B63EDAD2C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.269299895999922, 50.362211310000056 ], [ -119.269728927999935, 50.359335651000059 ], [ -119.26623669599995, 50.359122732000053 ], [ -119.26656936699996, 50.356893840000119 ], [ -119.265134212999925, 50.356806307000063 ], [ -119.26524471, 50.356066091000066 ], [ -119.264757951999954, 50.356036398000086 ], [ -119.26510939899994, 50.353682048000017 ], [ -119.264759511999941, 50.353660703000038 ], [ -119.264906407999945, 50.352676623000036 ], [ -119.264238763999927, 50.352635890000087 ], [ -119.264582300999948, 50.350334538000091 ], [ -119.26477289899999, 50.349057612000117 ], [ -119.265994093999922, 50.349132114000035 ], [ -119.265971092999933, 50.348649048000013 ], [ -119.265954912999945, 50.348309222000154 ], [ -119.265856247999949, 50.348311146000114 ], [ -119.265533586999979, 50.348317435000062 ], [ -119.265482253999949, 50.347239057000102 ], [ -119.265491813999944, 50.347238872000069 ], [ -119.266005147999948, 50.347228866000087 ], [ -119.266030204999964, 50.347060952000049 ], [ -119.266263647999921, 50.345496519000079 ], [ -119.264977243999908, 50.345418035000051 ], [ -119.261023453999911, 50.345176716000076 ], [ -119.261557754999927, 50.341598420000061 ], [ -119.262844627999954, 50.341676980000067 ], [ -119.26293793799999, 50.341051894000074 ], [ -119.261628259999981, 50.340971941000134 ], [ -119.261734225999959, 50.340262183000057 ], [ -119.262558945999942, 50.340264043000062 ], [ -119.262633612999977, 50.340265039000094 ], [ -119.265324482999972, 50.34030072900007 ], [ -119.268693576999951, 50.340321354000054 ], [ -119.268641442999979, 50.340670907000025 ], [ -119.269144296999954, 50.340701575000061 ], [ -119.269200538999954, 50.340324448000075 ], [ -119.276144936999913, 50.340366603000092 ], [ -119.276145382999943, 50.340350476000054 ], [ -119.276579779999935, 50.340357079000043 ], [ -119.277877814999954, 50.340436145000098 ], [ -119.277794988000011, 50.341673256000099 ], [ -119.277856905999911, 50.341699929000072 ], [ -119.277870184, 50.343300189000082 ], [ -119.278009973999957, 50.345061582000042 ], [ -119.277954465999954, 50.345390079000047 ], [ -119.277815907000019, 50.345545885000021 ], [ -119.277753477999951, 50.348468818000065 ], [ -119.27765345, 50.348462727000026 ], [ -119.277461116000012, 50.349753781000025 ], [ -119.27731982499995, 50.349745177000059 ], [ -119.277249532999946, 50.350216985000053 ], [ -119.276844033999978, 50.35019229100007 ], [ -119.276729052999954, 50.350963995000072 ], [ -119.275694626999922, 50.350900992000092 ], [ -119.275581840999976, 50.351657820000042 ], [ -119.273996856999958, 50.351561265000043 ], [ -119.273725656999915, 50.353380558000019 ], [ -119.270828932999962, 50.353204035000026 ], [ -119.270778877999959, 50.353539662000053 ], [ -119.271265613000011, 50.353569329000095 ], [ -119.270933197999966, 50.355798244000084 ], [ -119.272368330999925, 50.355885703000084 ], [ -119.271939498999942, 50.358761385000058 ], [ -119.275431730999969, 50.358974124000049 ], [ -119.275225277999979, 50.360359140000071 ], [ -119.274898321999899, 50.362552408000113 ], [ -119.269299895999922, 50.362211310000056 ] ], [ [ -119.26825453399999, 50.344366489000066 ], [ -119.268270542, 50.344259173000133 ], [ -119.26803016799991, 50.344244512000046 ], [ -119.26830177, 50.342423678000046 ], [ -119.267092407999911, 50.342349912000032 ], [ -119.266804746999952, 50.344278059000025 ], [ -119.26825453399999, 50.344366489000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "146.1", "sL_BldgLoss": "146.1", "sL_StrLoss": "146.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000370BC567BCD15DC080A2EC0C57304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.27449858199999, 50.37574940100005 ], [ -119.280098722, 50.376090230000038 ], [ -119.279565480999935, 50.379668459000051 ], [ -119.276175927999958, 50.379462204000077 ], [ -119.27611354899993, 50.379880543000056 ], [ -119.276109010999932, 50.37986598400007 ], [ -119.275970917999985, 50.379607595000031 ], [ -119.275781318999961, 50.379363100000042 ], [ -119.27550569600001, 50.37914599500008 ], [ -119.275142395999964, 50.378976716000089 ], [ -119.274065954999941, 50.378650115000049 ], [ -119.27449858199999, 50.37574940100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8555083", "BldgCostT": "5428333", "sL_LossRatio": "1", "sL_AssetLoss": "496", "sL_BldgLoss": "496", "sL_StrLoss": "496", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000238E1247E0D05DC0D3F26EF2FC2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26988140899999, 50.376313800000069 ], [ -119.269386414999971, 50.376279204000134 ], [ -119.263802480999942, 50.376245693000058 ], [ -119.26375310399996, 50.376249688000058 ], [ -119.263723177999978, 50.37625027100011 ], [ -119.263582659999912, 50.376253008000027 ], [ -119.263470258999959, 50.376255180000108 ], [ -119.263301619999964, 50.376258478000082 ], [ -119.26314703099996, 50.376261484000047 ], [ -119.263020121999944, 50.376254964000097 ], [ -119.262907722999927, 50.376257136000085 ], [ -119.262809352999938, 50.376259049000033 ], [ -119.262696933, 50.376261254000035 ], [ -119.262654361000031, 50.376253080000033 ], [ -119.262598140999941, 50.376254172000138 ], [ -119.26244355399993, 50.376257176000117 ], [ -119.262344780999953, 50.376250116000051 ], [ -119.262133551999938, 50.376245213000054 ], [ -119.261978981999945, 50.376248241000056 ], [ -119.26188019199995, 50.376241156000091 ], [ -119.261683453000018, 50.376244979000049 ], [ -119.261542491999961, 50.376238751000116 ], [ -119.261430091999955, 50.376240922000072 ], [ -119.261303181999963, 50.376234399000118 ], [ -119.261176693999943, 50.376236873000039 ], [ -119.261049822999965, 50.376230340000049 ], [ -119.260909264999938, 50.376233082000049 ], [ -119.260754255999942, 50.37622708800005 ], [ -119.260557518, 50.376230909000036 ], [ -119.260402982999935, 50.376233923000079 ], [ -119.260192177999897, 50.376238013000027 ], [ -119.259966897999931, 50.376233400000103 ], [ -119.259812311999951, 50.376236400000074 ], [ -119.25965731899997, 50.376230426000092 ], [ -119.259460160999978, 50.376225250000061 ], [ -119.259361790999961, 50.376227160000099 ], [ -119.2592068, 50.376221186000102 ], [ -119.259010060999969, 50.376225004000077 ], [ -119.258841421999946, 50.376228295000011 ], [ -119.258644682999943, 50.376232114000111 ], [ -119.258433877999906, 50.376236201000083 ], [ -119.258335542999987, 50.376238098000144 ], [ -119.258237139999906, 50.37624001700005 ], [ -119.258082146999982, 50.376234041000053 ], [ -119.257913546999958, 50.376237321000133 ], [ -119.257885408999968, 50.376237857000064 ], [ -119.257674199999897, 50.376232970000039 ], [ -119.257561776999978, 50.376235171000054 ], [ -119.257463389999955, 50.376237055000068 ], [ -119.257354932999974, 50.376245450000049 ], [ -119.257246437999925, 50.376253855000094 ], [ -119.257097279000021, 50.376265398000044 ], [ -119.254961520999984, 50.376267138000053 ], [ -119.255458765999947, 50.372942459000058 ], [ -119.259633449999953, 50.37319730200003 ], [ -119.259742604999929, 50.372466955000014 ], [ -119.265342227999966, 50.372808532000086 ], [ -119.265059485999942, 50.374701865000127 ], [ -119.267912168999942, 50.374875767000042 ], [ -119.268028054999931, 50.374099449000035 ], [ -119.273627941999948, 50.374440606000078 ], [ -119.273094208999979, 50.378018812000157 ], [ -119.272789186999887, 50.378000236000126 ], [ -119.271748990999981, 50.377289712000064 ], [ -119.270267989999979, 50.376421402000069 ], [ -119.270056641999972, 50.376362567000037 ], [ -119.26988140899999, 50.376313800000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020448", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "198.6", "sL_BldgLoss": "198.6", "sL_StrLoss": "198.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009883E2BF67D05DC0BCE6FAE3E22C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.25367040299993, 50.352378498000078 ], [ -119.253688634999946, 50.352256565000047 ], [ -119.252862484999937, 50.35220607600008 ], [ -119.253140533999925, 50.350346583000039 ], [ -119.253397513999928, 50.348627851000117 ], [ -119.25899413799999, 50.348969759000035 ], [ -119.25897592299998, 50.349091693000069 ], [ -119.259802022999907, 50.349142137000037 ], [ -119.25962355899999, 50.350336874000092 ], [ -119.259267493999971, 50.352720390000087 ], [ -119.25367040299993, 50.352378498000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60056386", "BldgCostT": "37657079", "sL_LossRatio": "0.999020227048211", "sL_AssetLoss": "3704.94", "sL_BldgLoss": "3701.31", "sL_StrLoss": "3700", "sL_NStrLoss": "1.31", "sL_ContLoss": "3.63", "geom_point": "0101000020E6100000458BA69285D25DC08F439A04B1324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.29294149499999, 50.402787208000106 ], [ -119.292551197999899, 50.402749891000099 ], [ -119.290964913999971, 50.402676194000044 ], [ -119.289697285999935, 50.402531610000082 ], [ -119.288972616999942, 50.402528214000064 ], [ -119.286710489999976, 50.402683293000045 ], [ -119.286288699999943, 50.402658593000091 ], [ -119.285915109999976, 50.402604291000067 ], [ -119.284012807999915, 50.401900204000107 ], [ -119.283210485999959, 50.401668201000085 ], [ -119.282853021999969, 50.401601308000096 ], [ -119.281658092999962, 50.401443002000057 ], [ -119.280658403999951, 50.401264902000058 ], [ -119.280293689999908, 50.401151509000051 ], [ -119.27998870299993, 50.401016498000089 ], [ -119.27991058299996, 50.400919220000027 ], [ -119.279813501999982, 50.400798301000073 ], [ -119.279737517999976, 50.400548985000079 ], [ -119.279746334, 50.399997531000068 ], [ -119.27975990499999, 50.399147686000042 ], [ -119.279694688999925, 50.398940591000056 ], [ -119.279555067999937, 50.398688469000028 ], [ -119.279549888999981, 50.398679106000031 ], [ -119.279257108999971, 50.398462705000085 ], [ -119.27910685099998, 50.398599992000094 ], [ -119.279011614999959, 50.39868700400006 ], [ -119.278878286999898, 50.398905986000024 ], [ -119.27887120299999, 50.398917588000053 ], [ -119.278655178999927, 50.399702398000045 ], [ -119.278462818999941, 50.399997611000046 ], [ -119.278099701999949, 50.400328508000023 ], [ -119.277861573999942, 50.400493601000107 ], [ -119.2775873, 50.400626802000048 ], [ -119.277459163999978, 50.400656528000141 ], [ -119.277294512999987, 50.400694711000014 ], [ -119.277246492999936, 50.400694642000111 ], [ -119.276992004999912, 50.400694405000131 ], [ -119.276296519999946, 50.400624322000048 ], [ -119.275923456999948, 50.400586744000123 ], [ -119.27561337, 50.400555496000031 ], [ -119.275536674999955, 50.400543933000094 ], [ -119.275021704, 50.40046618200013 ], [ -119.274806707999957, 50.400457603000113 ], [ -119.27499849799996, 50.400223812000057 ], [ -119.275537878999913, 50.399993312000056 ], [ -119.275549611999935, 50.399988302000033 ], [ -119.275742607999945, 50.399869186000082 ], [ -119.276024286999956, 50.399430491000075 ], [ -119.276106977999959, 50.399129467000058 ], [ -119.276250285999978, 50.398607504000026 ], [ -119.276229075999979, 50.398533572000119 ], [ -119.276084816999941, 50.3980305010001 ], [ -119.276026220999924, 50.397948289000041 ], [ -119.27597730599993, 50.397879602000025 ], [ -119.275662605999941, 50.397698198000136 ], [ -119.275495704999926, 50.397602006000042 ], [ -119.274336919999897, 50.397193002000044 ], [ -119.274034881999938, 50.39703839600007 ], [ -119.273589983999955, 50.396570281000031 ], [ -119.273530410999953, 50.396507595000074 ], [ -119.273394640999982, 50.396405097000063 ], [ -119.273146817999944, 50.39621799400004 ], [ -119.272865228999976, 50.396042349000041 ], [ -119.27262569, 50.395892907000054 ], [ -119.272446304999946, 50.39567429900012 ], [ -119.272384486999968, 50.395548709000117 ], [ -119.272383505999983, 50.395527996000062 ], [ -119.272371382999893, 50.395277095000019 ], [ -119.272669281, 50.394080147000039 ], [ -119.272682730999946, 50.394026154000095 ], [ -119.272780814, 50.393632104000083 ], [ -119.272830708999919, 50.393240707000054 ], [ -119.272789697999926, 50.393118209000093 ], [ -119.272592327999917, 50.392896709000055 ], [ -119.271780268999947, 50.392205149000077 ], [ -119.271624297999935, 50.392072303000049 ], [ -119.271317697999933, 50.391778305000045 ], [ -119.271154381999949, 50.391556293000058 ], [ -119.271117895, 50.391441191000062 ], [ -119.271143909999978, 50.391314601000083 ], [ -119.27122661, 50.39115811100006 ], [ -119.271539001999955, 50.390920800000032 ], [ -119.271861388999938, 50.390786909000077 ], [ -119.273512981999929, 50.390325995000055 ], [ -119.273744503, 50.390204704000077 ], [ -119.273826308999972, 50.390035486000066 ], [ -119.273830508999978, 50.389808291000094 ], [ -119.273757500000016, 50.389615207000119 ], [ -119.27527844299999, 50.38895152200012 ], [ -119.275219467999989, 50.389346890000056 ], [ -119.275702718999923, 50.389376300000038 ], [ -119.275800025999956, 50.388723914000181 ], [ -119.277342905999916, 50.388050599000088 ], [ -119.277677908999962, 50.387850795000055 ], [ -119.277685417999962, 50.387843188000069 ], [ -119.278743497999983, 50.386769209000121 ], [ -119.278175838, 50.386394863000113 ], [ -119.276047186999904, 50.384991063000029 ], [ -119.275825671999925, 50.384844991000122 ], [ -119.275523683999936, 50.384567595000142 ], [ -119.275327757999946, 50.384350607000044 ], [ -119.275234384999976, 50.384247199000058 ], [ -119.275189210999926, 50.38419716900011 ], [ -119.274523186999929, 50.383459609000063 ], [ -119.274439827999942, 50.383340331000049 ], [ -119.274313591999913, 50.383159804000094 ], [ -119.27413059, 50.38280470100004 ], [ -119.274065310999958, 50.382598501000089 ], [ -119.274064362999965, 50.382587726000075 ], [ -119.2740461879999, 50.382376204000103 ], [ -119.274117521000022, 50.382154003000061 ], [ -119.274285904999928, 50.381952998000052 ], [ -119.274651405999947, 50.381699991000097 ], [ -119.275303709999918, 50.381305502000039 ], [ -119.275655789999973, 50.381038105000073 ], [ -119.275985738999964, 50.380737655000146 ], [ -119.275891867, 50.381367152000031 ], [ -119.276901997999971, 50.381428629000062 ], [ -119.276469868, 50.384326674000143 ], [ -119.280890454999948, 50.384595606000104 ], [ -119.28167644699991, 50.384643403000034 ], [ -119.281378352999951, 50.386643855000088 ], [ -119.281759079999958, 50.386667005000056 ], [ -119.281225846999973, 50.390245195000062 ], [ -119.276310191999954, 50.389946190000053 ], [ -119.275855268999976, 50.392996212000092 ], [ -119.274058835999966, 50.392886884000099 ], [ -119.273891606999939, 50.394007651000038 ], [ -119.274342459999914, 50.394035093000163 ], [ -119.274386078999939, 50.393742743000097 ], [ -119.27833864199998, 50.393983232000011 ], [ -119.278752031999957, 50.391210737000073 ], [ -119.284354118999943, 50.391551344000035 ], [ -119.284247414000021, 50.392267620000048 ], [ -119.285301952999959, 50.392331703000082 ], [ -119.285743431999961, 50.389367592000063 ], [ -119.291345343999978, 50.3897078460001 ], [ -119.290823437999947, 50.393214814000039 ], [ -119.293027501999944, 50.393348607000114 ], [ -119.293033294999972, 50.393309669000089 ], [ -119.294519535999939, 50.393399862000123 ], [ -119.294604555999953, 50.392828302000048 ], [ -119.299909967999909, 50.393150101000131 ], [ -119.299912906999921, 50.393130325000058 ], [ -119.305245325999948, 50.393453501000103 ], [ -119.305281169999915, 50.39321214700005 ], [ -119.307581108999941, 50.393351457000023 ], [ -119.307936730999955, 50.393372993000085 ], [ -119.308162782999915, 50.397610231000051 ], [ -119.307193096999981, 50.397551512000106 ], [ -119.307174986999939, 50.397673484000073 ], [ -119.303529182999981, 50.397452640000054 ], [ -119.303491828999952, 50.397704068000074 ], [ -119.302153665999924, 50.397622979000133 ], [ -119.302134672999927, 50.397750799000036 ], [ -119.301682050999929, 50.397723368000115 ], [ -119.301619468999931, 50.398144489000053 ], [ -119.305477923999973, 50.398378273000034 ], [ -119.305073314999945, 50.401102331000061 ], [ -119.307005262999937, 50.401219337000043 ], [ -119.306936263999887, 50.401683976000129 ], [ -119.308167158999936, 50.401758506000078 ], [ -119.308085365999958, 50.402309390000092 ], [ -119.308416998999945, 50.402329467000172 ], [ -119.308501452999977, 50.403882142000036 ], [ -119.307944890999977, 50.40367484500004 ], [ -119.307667089999953, 50.403571396000139 ], [ -119.306786378999931, 50.403315014000071 ], [ -119.306287104999939, 50.403212484000058 ], [ -119.304569796999942, 50.403058898000033 ], [ -119.30363911299996, 50.403025086000042 ], [ -119.303469633999896, 50.403046519000057 ], [ -119.303178684999963, 50.403083302000049 ], [ -119.303156509999923, 50.403086102000032 ], [ -119.302844185999959, 50.403162002000023 ], [ -119.302284671999985, 50.403379111000092 ], [ -119.301870590999954, 50.403539793000057 ], [ -119.301492702999965, 50.403647791 ], [ -119.301087316999912, 50.403712599000066 ], [ -119.300691608999983, 50.403740084000056 ], [ -119.300362430999925, 50.403724948000075 ], [ -119.300076712999953, 50.403711806000089 ], [ -119.29646469, 50.403333988000043 ], [ -119.295405303999971, 50.403214597000044 ], [ -119.294318234999949, 50.403026032000064 ], [ -119.29294149499999, 50.402787208000106 ] ], [ [ -119.290099852999958, 50.40170477200008 ], [ -119.290236448999948, 50.40078724100006 ], [ -119.290221951999982, 50.400786361 ], [ -119.290085354999945, 50.401703893000061 ], [ -119.290099852999958, 50.40170477200008 ] ], [ [ -119.298286228999984, 50.400978403000053 ], [ -119.298290755999957, 50.400947957000014 ], [ -119.29825850499999, 50.400946001000094 ], [ -119.298253978999966, 50.400976447000062 ], [ -119.298286228999984, 50.400978403000053 ] ], [ [ -119.283582956, 50.40005444300003 ], [ -119.283601832999921, 50.399927768000076 ], [ -119.284012971999971, 50.399952752000083 ], [ -119.284078344999955, 50.399514028000077 ], [ -119.28339616199996, 50.399472572 ], [ -119.283311906, 50.400037971000131 ], [ -119.283582956, 50.40005444300003 ] ], [ [ -119.294960596999942, 50.397522730000091 ], [ -119.294496331999966, 50.400643531000071 ], [ -119.29558437299994, 50.400709536000107 ], [ -119.296021343999911, 50.397771743000099 ], [ -119.29575803299997, 50.397755771000057 ], [ -119.295785252999934, 50.397572758000138 ], [ -119.294960596999942, 50.397522730000091 ] ], [ [ -119.289869309999986, 50.395883385000062 ], [ -119.290260917999987, 50.393252559000075 ], [ -119.288519606999955, 50.393146816000083 ], [ -119.288127898999974, 50.395777637000066 ], [ -119.289869309999986, 50.395883385000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6569167", "BldgCostT": "4266667", "sL_LossRatio": "1", "sL_AssetLoss": "765.9", "sL_BldgLoss": "765.9", "sL_StrLoss": "765.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007C670F0FBCCF5DC005815327B92E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.24394255199995, 50.368666495000099 ], [ -119.244396130999945, 50.365638227000055 ], [ -119.240844027999913, 50.365420869000062 ], [ -119.240942977999978, 50.365112151000062 ], [ -119.241030423999987, 50.364839335000084 ], [ -119.241193703999926, 50.364329810000072 ], [ -119.241550961999948, 50.363661087000082 ], [ -119.241609750999942, 50.363569683000108 ], [ -119.241817687, 50.363246343000036 ], [ -119.242267777999956, 50.362546488000113 ], [ -119.242306288999984, 50.362486546000063 ], [ -119.242413818, 50.362319384000024 ], [ -119.242485487999957, 50.362207945000058 ], [ -119.243654293999924, 50.360390320000121 ], [ -119.24635389, 50.360555473000012 ], [ -119.246779762999921, 50.360581520000054 ], [ -119.24626575399995, 50.364014833000041 ], [ -119.250429781999927, 50.364269428000043 ], [ -119.249894333999976, 50.367847567000048 ], [ -119.249717011999934, 50.367836729000025 ], [ -119.249541584999989, 50.369008872000094 ], [ -119.24394255199995, 50.368666495000099 ] ], [ [ -119.244655789999982, 50.365099235000073 ], [ -119.244809639999957, 50.364071920000065 ], [ -119.244747878999959, 50.364068141000068 ], [ -119.244594025999973, 50.365095457000052 ], [ -119.244655789999982, 50.365099235000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "180.8", "sL_BldgLoss": "180.8", "sL_StrLoss": "180.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000073440068FBD25DC0603E5931DC314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.294059772999958, 50.387573177 ], [ -119.299661523999958, 50.387913013000052 ], [ -119.299129691999951, 50.391491283000072 ], [ -119.293527500999943, 50.391151423000053 ], [ -119.294059772999958, 50.387573177 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150771666", "BldgCostT": "96516666", "sL_LossRatio": "0.99822164630244", "sL_AssetLoss": "8828.39", "sL_BldgLoss": "8812.69", "sL_StrLoss": "8807", "sL_NStrLoss": "5.69", "sL_ContLoss": "15.7", "geom_point": "0101000020E61000004F5A5DF34FCF5DC047D8644B5E294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.239447013999921, 50.339107625000054 ], [ -119.239216635999966, 50.338855112000054 ], [ -119.238830196999942, 50.338145420000075 ], [ -119.23870451499999, 50.338013995000097 ], [ -119.238332308999958, 50.337764634000024 ], [ -119.237868083999928, 50.337453605000093 ], [ -119.237725086999944, 50.337314799000062 ], [ -119.237704592999989, 50.337276510000081 ], [ -119.237612599999977, 50.337104799000038 ], [ -119.237431114999936, 50.336497913000123 ], [ -119.237245904999895, 50.336141700000056 ], [ -119.236995906999937, 50.33577521100009 ], [ -119.23675922799994, 50.335512257000062 ], [ -119.23674299000001, 50.335494191000073 ], [ -119.236506286999941, 50.335321793000048 ], [ -119.235391286999956, 50.334643096000029 ], [ -119.235372785999957, 50.33455869400008 ], [ -119.235170706999952, 50.333637494000094 ], [ -119.235057044999948, 50.33327816500006 ], [ -119.23503469, 50.333207506000029 ], [ -119.234980596999918, 50.333095615000026 ], [ -119.234869899999964, 50.332866663000139 ], [ -119.234778294999956, 50.332677206000049 ], [ -119.23472651899999, 50.332486302000071 ], [ -119.23485380799994, 50.331090295000088 ], [ -119.234946480999895, 50.330736730000076 ], [ -119.234969095999972, 50.330650504000054 ], [ -119.235312915999899, 50.330080179000092 ], [ -119.235611020999968, 50.329701251000095 ], [ -119.235970106999915, 50.329244815000017 ], [ -119.236107209999957, 50.329017592000085 ], [ -119.236265368999909, 50.328587495000058 ], [ -119.236348074999967, 50.328362564000088 ], [ -119.236519216999952, 50.327897183000104 ], [ -119.235173892999953, 50.327664006000127 ], [ -119.234979602999942, 50.327595184000081 ], [ -119.234893909999954, 50.327535808000114 ], [ -119.234585910999968, 50.326878597000103 ], [ -119.23454425599999, 50.326729345000089 ], [ -119.234540012000011, 50.326714204000076 ], [ -119.23459218499994, 50.326479105000075 ], [ -119.234894889999907, 50.325730316000062 ], [ -119.234901785999952, 50.325608493000111 ], [ -119.234912109999968, 50.325427097000038 ], [ -119.234792321999947, 50.324983699 ], [ -119.234014173999981, 50.322743671000083 ], [ -119.233939465999953, 50.322528557000091 ], [ -119.233818202999885, 50.322179497 ], [ -119.233776115999973, 50.321895896000072 ], [ -119.233744272999942, 50.321681539000103 ], [ -119.23372449699994, 50.321548128000053 ], [ -119.233690401999979, 50.321318500000125 ], [ -119.23371027799999, 50.320931605000091 ], [ -119.23394349199998, 50.319535713000022 ], [ -119.233993609, 50.319201224000039 ], [ -119.234011070999927, 50.319084676000024 ], [ -119.234039829000011, 50.318892672000089 ], [ -119.234053817999921, 50.31879949800004 ], [ -119.233908604999968, 50.317150204000065 ], [ -119.233417984999917, 50.314991309000014 ], [ -119.232767889999977, 50.313397690000023 ], [ -119.232477140999933, 50.31278560300003 ], [ -119.232444522999941, 50.31271694500002 ], [ -119.232432187999947, 50.312691007000119 ], [ -119.232425182999989, 50.312639645000075 ], [ -119.232317806, 50.311854311000047 ], [ -119.232275070999961, 50.310890719000078 ], [ -119.236853522, 50.310858610000118 ], [ -119.236858114999961, 50.311783314000145 ], [ -119.236858649999974, 50.311900140000063 ], [ -119.236859905999921, 50.312151002000128 ], [ -119.236963907999936, 50.312342384000061 ], [ -119.236988251999932, 50.312356672000135 ], [ -119.236988479999937, 50.312356804000039 ], [ -119.237018198999976, 50.312374197000047 ], [ -119.237341304999958, 50.312563292000064 ], [ -119.237826184999989, 50.312641789000068 ], [ -119.238714564999938, 50.312621392000068 ], [ -119.238480440999965, 50.314185161000118 ], [ -119.237046961999923, 50.31409727500003 ], [ -119.23693682599999, 50.314832710000111 ], [ -119.237138810999966, 50.314845094000098 ], [ -119.237108277999965, 50.315048977000075 ], [ -119.237256921999958, 50.315058091000061 ], [ -119.23709160099996, 50.31616201000007 ], [ -119.237365292999982, 50.316178791000063 ], [ -119.237147108999935, 50.317635679000027 ], [ -119.237975764999987, 50.317686481000067 ], [ -119.238184379999964, 50.316293322000043 ], [ -119.238480397999965, 50.316311469000041 ], [ -119.238660225999936, 50.315110431000093 ], [ -119.238690434999938, 50.315112283000083 ], [ -119.238884387, 50.313816834000079 ], [ -119.240212105999916, 50.313898213000122 ], [ -119.24022178899996, 50.313833531000093 ], [ -119.239749617999948, 50.313804592000068 ], [ -119.239971040999976, 50.312325370000089 ], [ -119.240043819999954, 50.312322702000067 ], [ -119.241482117999922, 50.312582406000047 ], [ -119.24224813499994, 50.312838765000095 ], [ -119.24226137799991, 50.31284319300007 ], [ -119.242335408999949, 50.312855511000095 ], [ -119.242518806999939, 50.312886005000102 ], [ -119.244025203999911, 50.31288799400005 ], [ -119.243260504999952, 50.314302803000054 ], [ -119.244689707999896, 50.31449892800002 ], [ -119.247372115999951, 50.314867012000022 ], [ -119.246274376999963, 50.318204266000045 ], [ -119.24592689, 50.319260600000057 ], [ -119.245375832999969, 50.320935635000104 ], [ -119.244870042999963, 50.322473123000087 ], [ -119.243784286999983, 50.325645774000066 ], [ -119.242835730999943, 50.328570790000086 ], [ -119.242735930999942, 50.328878501000069 ], [ -119.242477803, 50.329565944000066 ], [ -119.24196131299999, 50.330659159000113 ], [ -119.241738170999923, 50.331169104000068 ], [ -119.241462704999961, 50.331755265000012 ], [ -119.241315233999941, 50.332080247000135 ], [ -119.241107141999947, 50.332263416000096 ], [ -119.240863406999949, 50.332364037000033 ], [ -119.240606608999911, 50.332363658000077 ], [ -119.240876952999926, 50.332528262000061 ], [ -119.240982957, 50.332619758000043 ], [ -119.241024437999954, 50.332655571000018 ], [ -119.241029213999965, 50.332664706000052 ], [ -119.24114833499999, 50.332893344000077 ], [ -119.24195040499994, 50.336935414000031 ], [ -119.242421462999957, 50.338334238000073 ], [ -119.2420134, 50.338613426000094 ], [ -119.24204329, 50.338766464000081 ], [ -119.242044026999906, 50.338829049000047 ], [ -119.242048476999969, 50.339207592000022 ], [ -119.242049371999912, 50.339286179000112 ], [ -119.242049954999956, 50.339334692000101 ], [ -119.241723929, 50.339324677000093 ], [ -119.241514031999913, 50.33925585800008 ], [ -119.241378850999965, 50.339170853000077 ], [ -119.24115923699999, 50.339032798000069 ], [ -119.241048211999953, 50.339025398000103 ], [ -119.240995675999955, 50.33902188800009 ], [ -119.24084011299999, 50.339090003000138 ], [ -119.240634839999956, 50.33945207700004 ], [ -119.240501424999977, 50.33956035100006 ], [ -119.240326141999958, 50.339609207000137 ], [ -119.240140910999969, 50.339573471000037 ], [ -119.23983574499999, 50.339433822000039 ], [ -119.239447013999921, 50.339107625000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107659416", "BldgCostT": "71541666", "sL_LossRatio": "1", "sL_AssetLoss": "6383.7", "sL_BldgLoss": "6383.7", "sL_StrLoss": "6383.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065983D7D02CF5DC0FAC962AC00274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234808215999962, 50.298819732000069 ], [ -119.236813594999902, 50.29881820100011 ], [ -119.236828211999963, 50.300000826000037 ], [ -119.23683319299991, 50.300402094000034 ], [ -119.236831774999956, 50.300783178000032 ], [ -119.236827599999941, 50.301889034000055 ], [ -119.236826843999964, 50.302092285000093 ], [ -119.236825415999959, 50.30247428300008 ], [ -119.236822161, 50.303329417000079 ], [ -119.236819995999966, 50.303910488000085 ], [ -119.236830239999946, 50.30608989500012 ], [ -119.236834895999948, 50.30708020000008 ], [ -119.236852105999901, 50.310569284000081 ], [ -119.236853522, 50.310858610000118 ], [ -119.232275070999961, 50.310890719000078 ], [ -119.23225657799992, 50.310473797000078 ], [ -119.232305289999914, 50.310223991000051 ], [ -119.232302667999974, 50.310161602000065 ], [ -119.23225906099999, 50.309128040000083 ], [ -119.232236185999952, 50.308585690000051 ], [ -119.232224683999945, 50.308220362000071 ], [ -119.232203435999949, 50.307546305000109 ], [ -119.232154100999949, 50.305979597000047 ], [ -119.232211907999897, 50.305744786000098 ], [ -119.232403779999942, 50.30556519900005 ], [ -119.233322216999923, 50.305084394000112 ], [ -119.233508520999962, 50.30487650700006 ], [ -119.233622397999937, 50.304653186000046 ], [ -119.233591486999927, 50.304369703000141 ], [ -119.233312582999957, 50.30392459400008 ], [ -119.233282052999982, 50.303864472000036 ], [ -119.232972812999918, 50.303256098000141 ], [ -119.232884401999939, 50.303082213000046 ], [ -119.232536539999955, 50.302543867000061 ], [ -119.232515718999963, 50.302511591000027 ], [ -119.232206443999971, 50.301875602000074 ], [ -119.23194421599996, 50.301336201000041 ], [ -119.231880827999973, 50.301148404000088 ], [ -119.231643391999953, 50.300444704000057 ], [ -119.231405116999952, 50.299997692000083 ], [ -119.231198601999964, 50.299610297000058 ], [ -119.231195523999958, 50.298821108000027 ], [ -119.23347572299997, 50.298820309000114 ], [ -119.234573704999903, 50.298819891000072 ], [ -119.234808215999962, 50.298819732000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133710250", "BldgCostT": "86170000", "sL_LossRatio": "0.999388758974955", "sL_AssetLoss": "8261.88", "sL_BldgLoss": "8256.83", "sL_StrLoss": "8255", "sL_NStrLoss": "1.83", "sL_ContLoss": "5.05", "geom_point": "0101000020E6100000D54943AE90CE5DC0A069ECBF0C254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.228916610999974, 50.305590935000104 ], [ -119.229068709999979, 50.30457628500001 ], [ -119.228728702999902, 50.304555408000091 ], [ -119.228802875999932, 50.303501875000052 ], [ -119.228753293999887, 50.303085334000102 ], [ -119.228317515999933, 50.302465086000048 ], [ -119.227952429999959, 50.301075585 ], [ -119.227856609999947, 50.300856968000055 ], [ -119.227529800999932, 50.300677526000115 ], [ -119.227313141999957, 50.300419936000011 ], [ -119.22716741, 50.300064970000044 ], [ -119.227013168999932, 50.299666617000135 ], [ -119.226884445999985, 50.299398464000021 ], [ -119.226772572999948, 50.299288760000103 ], [ -119.226712576999915, 50.299222392000118 ], [ -119.226675983999954, 50.299214687000138 ], [ -119.2266962, 50.299079856000048 ], [ -119.222206867999944, 50.298803975000055 ], [ -119.222155369999939, 50.299147230000052 ], [ -119.221833606, 50.299100437000043 ], [ -119.221842421999909, 50.297397738000022 ], [ -119.221846460999984, 50.296617251000058 ], [ -119.221846765999913, 50.296558437000051 ], [ -119.221881252999935, 50.296256279000097 ], [ -119.22199634699993, 50.295247143000054 ], [ -119.222252057999953, 50.293005117000092 ], [ -119.222338850999918, 50.292244276000055 ], [ -119.222429897999973, 50.291627799000061 ], [ -119.222545312999941, 50.291328807000099 ], [ -119.222644242999962, 50.291150713000079 ], [ -119.222666713999971, 50.291110290000049 ], [ -119.222682097999922, 50.291082627000073 ], [ -119.222753875999928, 50.290953401000067 ], [ -119.223146773999972, 50.290524390000058 ], [ -119.221433040999926, 50.289782852000101 ], [ -119.22071952499999, 50.289474092000049 ], [ -119.220518501999919, 50.289450905000095 ], [ -119.220437550999961, 50.289473842000035 ], [ -119.22032999299995, 50.289504312000112 ], [ -119.219961502999979, 50.289892400000099 ], [ -119.219805706999963, 50.289991195000056 ], [ -119.219611996999959, 50.290060496000059 ], [ -119.218603980999944, 50.290321796000036 ], [ -119.218331502999945, 50.290323914000084 ], [ -119.218250755999946, 50.290309932000056 ], [ -119.218081421999926, 50.290280609000099 ], [ -119.217990255999979, 50.290247737000129 ], [ -119.217800405999967, 50.290179295000044 ], [ -119.2176874099999, 50.290058597000098 ], [ -119.217669466999965, 50.289993167000034 ], [ -119.217637320999984, 50.289875888000033 ], [ -119.217982807999974, 50.288368733000027 ], [ -119.21799669899994, 50.288308090000029 ], [ -119.217951703999958, 50.288062410000045 ], [ -119.217860076999912, 50.287921409000042 ], [ -119.217685208999967, 50.287752595000022 ], [ -119.217161908999941, 50.287481184000114 ], [ -119.217020087999984, 50.287364103000094 ], [ -119.216961419999933, 50.287212737000061 ], [ -119.21695197299999, 50.28718839600004 ], [ -119.21694991599999, 50.286790520000082 ], [ -119.216948554999973, 50.286529637000129 ], [ -119.216947108999975, 50.286253590000051 ], [ -119.216941315999946, 50.286205006000095 ], [ -119.216877297999972, 50.285667011000029 ], [ -119.216869334999942, 50.285362668000069 ], [ -119.216868802999926, 50.285343289000046 ], [ -119.216863625999949, 50.285145429000053 ], [ -119.216833697999959, 50.284002996000048 ], [ -119.216836335999929, 50.283930099000038 ], [ -119.216866151, 50.283103371000038 ], [ -119.216907290999984, 50.281962607 ], [ -119.21780870799995, 50.281950382000012 ], [ -119.217977408999971, 50.281925933000046 ], [ -119.21804939799992, 50.281915509000036 ], [ -119.218236494999971, 50.281796100000058 ], [ -119.218247514999945, 50.281777756000096 ], [ -119.218317399999989, 50.281661190000072 ], [ -119.218330482999974, 50.281143587000045 ], [ -119.218358204, 50.28004580200006 ], [ -119.221130591999952, 50.280057882000044 ], [ -119.224108007999959, 50.280070807000051 ], [ -119.22607889199999, 50.280061900000085 ], [ -119.226652199999975, 50.280065596000078 ], [ -119.226896810999946, 50.28010769100009 ], [ -119.227016613999965, 50.280173698000091 ], [ -119.227085924, 50.280285416000083 ], [ -119.227195266999928, 50.280815842000045 ], [ -119.227351586999958, 50.280902152000053 ], [ -119.228075108, 50.280947523000044 ], [ -119.228679818999936, 50.280910631000026 ], [ -119.229104130999957, 50.280807599000049 ], [ -119.229968027999945, 50.280282861000039 ], [ -119.230957339000014, 50.279607789000067 ], [ -119.231172663999985, 50.279520790000078 ], [ -119.231587608, 50.279353083000039 ], [ -119.23241918899997, 50.279158441000085 ], [ -119.232195952999973, 50.280649260000146 ], [ -119.233553963999952, 50.280732644000103 ], [ -119.233654859999902, 50.280058723000074 ], [ -119.233645291999906, 50.279854361000012 ], [ -119.233685571999942, 50.27985358600003 ], [ -119.23383129099993, 50.278880214000075 ], [ -119.23447520399999, 50.278754016000043 ], [ -119.234671823999975, 50.278715472000044 ], [ -119.234828212999929, 50.278729026000072 ], [ -119.235065708999983, 50.278749592000025 ], [ -119.235863892999973, 50.278879826000022 ], [ -119.236167270999928, 50.278897088000093 ], [ -119.23626228699996, 50.27890248000007 ], [ -119.23666309399999, 50.278843119000065 ], [ -119.238274822999955, 50.278454472000135 ], [ -119.238543681999957, 50.278419517000032 ], [ -119.239268458999931, 50.27842787900002 ], [ -119.239753457999981, 50.278411752000089 ], [ -119.239870455999977, 50.278407862000066 ], [ -119.239927302999945, 50.278405992000053 ], [ -119.240123049999966, 50.278374081000088 ], [ -119.24020531099994, 50.278360674000034 ], [ -119.240490840999939, 50.278314163000054 ], [ -119.242025609999985, 50.278420911000083 ], [ -119.242659733999986, 50.278495392000082 ], [ -119.243585593999981, 50.278604137000052 ], [ -119.243633082999906, 50.278604422000058 ], [ -119.245654749, 50.278616314000075 ], [ -119.246353626999962, 50.278656442000077 ], [ -119.247254314999935, 50.278837 ], [ -119.247355383999931, 50.280122332000097 ], [ -119.247355980999941, 50.280131330000096 ], [ -119.247377137999962, 50.280451473000056 ], [ -119.247366516999975, 50.280451987000099 ], [ -119.243723684999949, 50.280586387000021 ], [ -119.243746998999924, 50.280861273000021 ], [ -119.240281239999973, 50.28094781500004 ], [ -119.240269124999926, 50.280643002000076 ], [ -119.237625876999971, 50.280935907000057 ], [ -119.237766429999965, 50.280652277000065 ], [ -119.23741736599996, 50.280644819000031 ], [ -119.237043584999938, 50.280842846000013 ], [ -119.236274666999961, 50.281113067000092 ], [ -119.23535771499999, 50.281272589000061 ], [ -119.234740713999969, 50.281636437000046 ], [ -119.234003673999936, 50.281777195000039 ], [ -119.233681540999953, 50.282051877000065 ], [ -119.232518354999954, 50.282107573000118 ], [ -119.233157813999952, 50.283162100000041 ], [ -119.232056296999971, 50.283421822000072 ], [ -119.231128795999936, 50.283640499000093 ], [ -119.231152310999974, 50.284989502000087 ], [ -119.23116456299995, 50.285690965000072 ], [ -119.231170373999987, 50.286026498000048 ], [ -119.231185416999892, 50.288046867000062 ], [ -119.231193886999961, 50.28919238800006 ], [ -119.23119288599996, 50.289312404000057 ], [ -119.231199806999953, 50.291836202000077 ], [ -119.231199088, 50.292985491000117 ], [ -119.231197965999939, 50.294820395000087 ], [ -119.23119782899991, 50.295063038000045 ], [ -119.231197186999907, 50.296052664000051 ], [ -119.231196898999926, 50.29655618700005 ], [ -119.231196833999945, 50.296650345000025 ], [ -119.231196549999979, 50.297095396000081 ], [ -119.231195882999927, 50.298210555000033 ], [ -119.231195822999922, 50.298309427000042 ], [ -119.231195523999958, 50.298821108000027 ], [ -119.231198601999964, 50.299610297000058 ], [ -119.231405116999952, 50.299997692000083 ], [ -119.231643391999953, 50.300444704000057 ], [ -119.231880827999973, 50.301148404000088 ], [ -119.23194421599996, 50.301336201000041 ], [ -119.232206443999971, 50.301875602000074 ], [ -119.232515718999963, 50.302511591000027 ], [ -119.232536539999955, 50.302543867000061 ], [ -119.232884401999939, 50.303082213000046 ], [ -119.232972812999918, 50.303256098000141 ], [ -119.233282052999982, 50.303864472000036 ], [ -119.233312582999957, 50.30392459400008 ], [ -119.233591486999927, 50.304369703000141 ], [ -119.233622397999937, 50.304653186000046 ], [ -119.233508520999962, 50.30487650700006 ], [ -119.233322216999923, 50.305084394000112 ], [ -119.232403779999942, 50.30556519900005 ], [ -119.232211907999897, 50.305744786000098 ], [ -119.232154100999949, 50.305979597000047 ], [ -119.232203435999949, 50.307546305000109 ], [ -119.232224683999945, 50.308220362000071 ], [ -119.232236185999952, 50.308585690000051 ], [ -119.230801705999966, 50.308556303000081 ], [ -119.230588293999958, 50.308577498000112 ], [ -119.230378885999968, 50.308656700000029 ], [ -119.22961481399993, 50.309133495000069 ], [ -119.22960906599999, 50.309135496000088 ], [ -119.229321657999947, 50.308846706000111 ], [ -119.229242971999923, 50.308666266000152 ], [ -119.229118477999947, 50.306499120000119 ], [ -119.229003750999965, 50.306245469000025 ], [ -119.228721554999964, 50.305717774000094 ], [ -119.228698698999921, 50.305577554000081 ], [ -119.228916610999974, 50.305590935000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123532333", "BldgCostT": "81568333", "sL_LossRatio": "0.999076792834258", "sL_AssetLoss": "8221.34", "sL_BldgLoss": "8213.75", "sL_StrLoss": "8211", "sL_NStrLoss": "2.75", "sL_ContLoss": "7.59", "geom_point": "0101000020E6100000259E0EBF36CF5DC0B250199C14254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.231197965999939, 50.294820395000087 ], [ -119.231199088, 50.292985491000117 ], [ -119.231199806999953, 50.291836202000077 ], [ -119.23119288599996, 50.289312404000057 ], [ -119.231193886999961, 50.28919238800006 ], [ -119.231185416999892, 50.288046867000062 ], [ -119.231170373999987, 50.286026498000048 ], [ -119.23116456299995, 50.285690965000072 ], [ -119.231152310999974, 50.284989502000087 ], [ -119.231128795999936, 50.283640499000093 ], [ -119.232056296999971, 50.283421822000072 ], [ -119.233157813999952, 50.283162100000041 ], [ -119.23371721699999, 50.283030201000059 ], [ -119.234482288999956, 50.282718295000102 ], [ -119.235089591999966, 50.282470692000118 ], [ -119.235731801999975, 50.282287110000077 ], [ -119.235892112999949, 50.282257057000066 ], [ -119.236435313999948, 50.282155207000038 ], [ -119.237188423999967, 50.282087598000089 ], [ -119.238753324, 50.282013 ], [ -119.239735846, 50.2820046060001 ], [ -119.239937899999944, 50.282002878000071 ], [ -119.240111486999965, 50.283379122000042 ], [ -119.242022290999955, 50.283362284000098 ], [ -119.241888752999984, 50.28198617000001 ], [ -119.244178418999951, 50.281966502000024 ], [ -119.245807402, 50.281962506000099 ], [ -119.245812711999932, 50.283889391000052 ], [ -119.245814300999911, 50.284586506000039 ], [ -119.245816636999976, 50.285454569000123 ], [ -119.24581888599991, 50.286281877000064 ], [ -119.245823404999967, 50.287959103000063 ], [ -119.245817594999934, 50.289281306000063 ], [ -119.245604590999946, 50.289281797000093 ], [ -119.243562882, 50.28929029800004 ], [ -119.243396290999939, 50.289338789000041 ], [ -119.243324106999964, 50.289444481000082 ], [ -119.243327417999964, 50.290062538000015 ], [ -119.243331472999984, 50.290826947000056 ], [ -119.243340641999964, 50.292544293000013 ], [ -119.243346635999913, 50.29366845100003 ], [ -119.24336250099995, 50.29664680900008 ], [ -119.242779398999986, 50.296669705000035 ], [ -119.239693967999983, 50.296682467000082 ], [ -119.236915908999961, 50.296693905000055 ], [ -119.236802707999985, 50.296799805000049 ], [ -119.236807885999923, 50.297760927000105 ], [ -119.236810519999949, 50.298246718000044 ], [ -119.236813594999902, 50.29881820100011 ], [ -119.234808215999962, 50.298819732000069 ], [ -119.234573704999903, 50.298819891000072 ], [ -119.23347572299997, 50.298820309000114 ], [ -119.231195523999958, 50.298821108000027 ], [ -119.231195822999922, 50.298309427000042 ], [ -119.231195882999927, 50.298210555000033 ], [ -119.231196549999979, 50.297095396000081 ], [ -119.231196833999945, 50.296650345000025 ], [ -119.231196898999926, 50.29655618700005 ], [ -119.231197186999907, 50.296052664000051 ], [ -119.23119782899991, 50.295063038000045 ], [ -119.231197965999939, 50.294820395000087 ] ], [ [ -119.235362682, 50.294458814000087 ], [ -119.235378473999901, 50.294353342000107 ], [ -119.234378914000018, 50.294292006000028 ], [ -119.234360205999977, 50.294416946000112 ], [ -119.23493082499999, 50.294451963000029 ], [ -119.234933739999946, 50.294432494000048 ], [ -119.235362682, 50.294458814000087 ] ], [ [ -119.23998338499996, 50.294509889 ], [ -119.240055729999966, 50.294026360000046 ], [ -119.24003256499995, 50.29402494000005 ], [ -119.2400792, 50.293713240000024 ], [ -119.239827979000012, 50.293697836000028 ], [ -119.239974132999947, 50.292720993000152 ], [ -119.239929248999943, 50.292718241000095 ], [ -119.239974577999973, 50.29241526800012 ], [ -119.239709697999956, 50.292420374000102 ], [ -119.239684373999964, 50.291881170000117 ], [ -119.239263537999989, 50.291889281000095 ], [ -119.239237964999987, 50.29134469100007 ], [ -119.237103626999982, 50.291213775000088 ], [ -119.23664093499994, 50.294304887000074 ], [ -119.23998338499996, 50.294509889 ] ], [ [ -119.241653269999915, 50.287069742000035 ], [ -119.24175712, 50.286375357000111 ], [ -119.238653444999912, 50.286185018000033 ], [ -119.238682245999939, 50.285992522000107 ], [ -119.238621855999966, 50.285988818000071 ], [ -119.238648276999967, 50.285812238000084 ], [ -119.238600667999961, 50.285809318000055 ], [ -119.238627696999941, 50.285628666000022 ], [ -119.238592679999968, 50.285626518000072 ], [ -119.238622781999965, 50.285425331000113 ], [ -119.236820498000014, 50.2854600410001 ], [ -119.236763061999937, 50.285843812000032 ], [ -119.236823860999905, 50.285847543000045 ], [ -119.236793805999937, 50.286048366000017 ], [ -119.23682927499999, 50.286050543000066 ], [ -119.236766206999931, 50.286471942000013 ], [ -119.236868901999941, 50.286478243000019 ], [ -119.236844450999982, 50.286641613000121 ], [ -119.23947153099999, 50.28680277100004 ], [ -119.239392827999964, 50.287328832000071 ], [ -119.240464334999928, 50.287394545000033 ], [ -119.240402955999954, 50.287804866000059 ], [ -119.240558749999963, 50.287814420000117 ], [ -119.240612182999953, 50.287457206000084 ], [ -119.241199490999961, 50.287493219000119 ], [ -119.241266377999949, 50.28704601900013 ], [ -119.241653269999915, 50.287069742000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "193393142", "BldgCostT": "125591976", "sL_LossRatio": "0.996044428269704", "sL_AssetLoss": "12584.78", "sL_BldgLoss": "12535", "sL_StrLoss": "12517", "sL_NStrLoss": "18", "sL_ContLoss": "49.78", "geom_point": "0101000020E610000000130203D2CF5DC01322F9ADCA234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234003673999936, 50.281777195000039 ], [ -119.234740713999969, 50.281636437000046 ], [ -119.23535771499999, 50.281272589000061 ], [ -119.236274666999961, 50.281113067000092 ], [ -119.237043584999938, 50.280842846000013 ], [ -119.23741736599996, 50.280644819000031 ], [ -119.237766429999965, 50.280652277000065 ], [ -119.237625876999971, 50.280935907000057 ], [ -119.240269124999926, 50.280643002000076 ], [ -119.240281239999973, 50.28094781500004 ], [ -119.243746998999924, 50.280861273000021 ], [ -119.243723684999949, 50.280586387000021 ], [ -119.247366516999975, 50.280451987000099 ], [ -119.247377137999962, 50.280451473000056 ], [ -119.247355980999941, 50.280131330000096 ], [ -119.247355383999931, 50.280122332000097 ], [ -119.247254314999935, 50.278837 ], [ -119.246353626999962, 50.278656442000077 ], [ -119.245654749, 50.278616314000075 ], [ -119.243633082999906, 50.278604422000058 ], [ -119.243585593999981, 50.278604137000052 ], [ -119.242659733999986, 50.278495392000082 ], [ -119.242025609999985, 50.278420911000083 ], [ -119.240490840999939, 50.278314163000054 ], [ -119.24020531099994, 50.278360674000034 ], [ -119.240123049999966, 50.278374081000088 ], [ -119.239927302999945, 50.278405992000053 ], [ -119.239870455999977, 50.278407862000066 ], [ -119.239976485999975, 50.277303912000029 ], [ -119.241287995000036, 50.277301290000054 ], [ -119.242237313999908, 50.277316210000109 ], [ -119.243096481999928, 50.277443804000058 ], [ -119.244091112999968, 50.277551699000085 ], [ -119.244615403999944, 50.277609209000111 ], [ -119.244863194999965, 50.277592785000088 ], [ -119.245046996999918, 50.277522802000071 ], [ -119.245685503999979, 50.276882105000013 ], [ -119.246079577999936, 50.276508996000082 ], [ -119.246406984999922, 50.276393597000016 ], [ -119.24668339899992, 50.276383483000096 ], [ -119.24693551199999, 50.27634749300011 ], [ -119.247004396999941, 50.27624429700009 ], [ -119.247017789, 50.275512912000075 ], [ -119.247020783000011, 50.274738440000121 ], [ -119.24745376499996, 50.274740040000083 ], [ -119.248901615999969, 50.274745334000087 ], [ -119.2518002, 50.274733287000117 ], [ -119.251414273999984, 50.27596819700009 ], [ -119.251558149999966, 50.276184661000066 ], [ -119.251708358999963, 50.276321161000034 ], [ -119.251964296999986, 50.276485786000137 ], [ -119.252799602999929, 50.276839375000087 ], [ -119.253425642, 50.277112441000071 ], [ -119.253865550999961, 50.277404793000109 ], [ -119.254033847999949, 50.277517850000031 ], [ -119.254162803999932, 50.277604458000056 ], [ -119.254584536, 50.277914655000117 ], [ -119.254701437999984, 50.278057156000088 ], [ -119.254765326000012, 50.278214549000012 ], [ -119.254786146999919, 50.278462354000119 ], [ -119.25480148699998, 50.278847814000137 ], [ -119.254816997999939, 50.279237966000089 ], [ -119.254860918999967, 50.280393831000055 ], [ -119.254864200999975, 50.280480398000087 ], [ -119.254867185999956, 50.280611501000067 ], [ -119.25481629699999, 50.280763657000087 ], [ -119.254712825999945, 50.280908994000121 ], [ -119.254097666999925, 50.281459978000065 ], [ -119.253767919999973, 50.281921898000057 ], [ -119.252975284999977, 50.281923938000034 ], [ -119.252565637999936, 50.281926150000096 ], [ -119.252598736999971, 50.282824245000079 ], [ -119.25211158499999, 50.282825066000065 ], [ -119.252051593999937, 50.281928953000069 ], [ -119.251282076999942, 50.281933120000126 ], [ -119.250781483999958, 50.281935821000097 ], [ -119.25071875799992, 50.282507522000074 ], [ -119.249994049999913, 50.28251979000003 ], [ -119.249855524999987, 50.283357669000061 ], [ -119.246756494999957, 50.283372222000125 ], [ -119.246715589999937, 50.283659764000049 ], [ -119.246342748999936, 50.283661256000087 ], [ -119.24634475, 50.283889428000066 ], [ -119.245812711999932, 50.283889391000052 ], [ -119.245807402, 50.281962506000099 ], [ -119.244178418999951, 50.281966502000024 ], [ -119.241888752999984, 50.28198617000001 ], [ -119.242022290999955, 50.283362284000098 ], [ -119.240111486999965, 50.283379122000042 ], [ -119.239937899999944, 50.282002878000071 ], [ -119.239735846, 50.2820046060001 ], [ -119.238753324, 50.282013 ], [ -119.237188423999967, 50.282087598000089 ], [ -119.236435313999948, 50.282155207000038 ], [ -119.235892112999949, 50.282257057000066 ], [ -119.235731801999975, 50.282287110000077 ], [ -119.235089591999966, 50.282470692000118 ], [ -119.234482288999956, 50.282718295000102 ], [ -119.23371721699999, 50.283030201000059 ], [ -119.233157813999952, 50.283162100000041 ], [ -119.232518354999954, 50.282107573000118 ], [ -119.233681540999953, 50.282051877000065 ], [ -119.234003673999936, 50.281777195000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125824167", "BldgCostT": "79646667", "sL_LossRatio": "1", "sL_AssetLoss": "6851.9", "sL_BldgLoss": "6851.9", "sL_StrLoss": "6851.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C21041EEC5CF5DC05E3AFFD983224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.246945803999893, 50.270833594000045 ], [ -119.246878692999971, 50.270150594000036 ], [ -119.246273268999929, 50.270136995000051 ], [ -119.244961167999989, 50.270144411000068 ], [ -119.243614554999951, 50.270151998000095 ], [ -119.243474011999936, 50.270152803000045 ], [ -119.243111841999976, 50.270154842000132 ], [ -119.243127761999943, 50.268099530000072 ], [ -119.242498712999947, 50.268100509000078 ], [ -119.24251924, 50.267410232000081 ], [ -119.242629380999972, 50.267410052000045 ], [ -119.243074067999956, 50.267409253000082 ], [ -119.243415749999912, 50.267408891000116 ], [ -119.244955908999927, 50.267407278000029 ], [ -119.245253395999967, 50.267407620000057 ], [ -119.24618475699999, 50.267408578000065 ], [ -119.247695189999931, 50.267411809000109 ], [ -119.247693276999954, 50.267848602000065 ], [ -119.247693874999982, 50.268047642000134 ], [ -119.247695400999987, 50.268599006000031 ], [ -119.247707693999985, 50.269072882000039 ], [ -119.247715208999978, 50.269363091000159 ], [ -119.247718913999989, 50.27014069300003 ], [ -119.248990281999951, 50.270140089000087 ], [ -119.25008807399999, 50.270132399000055 ], [ -119.25006018499991, 50.272414799000103 ], [ -119.248985104999974, 50.272412094000067 ], [ -119.24808756499999, 50.272428468000079 ], [ -119.247622780999961, 50.272429763000034 ], [ -119.246733778999939, 50.272432194000025 ], [ -119.246810795999977, 50.272133606000118 ], [ -119.247025997999955, 50.271750388000036 ], [ -119.247028593999971, 50.271100487000048 ], [ -119.246945803999893, 50.270833594000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100156250", "BldgCostT": "66125000", "sL_LossRatio": "1", "sL_AssetLoss": "6327.2", "sL_BldgLoss": "6327.2", "sL_StrLoss": "6327.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008774B2B32CD05DC0B9645E3FAB224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.253137103, 50.269478598000042 ], [ -119.253194992999951, 50.268674996000087 ], [ -119.254084144999936, 50.268678460000118 ], [ -119.254296591999946, 50.268679304000059 ], [ -119.255405093999926, 50.268683895000045 ], [ -119.255546189999961, 50.26877739800004 ], [ -119.255840286999927, 50.268837014000049 ], [ -119.25668488299999, 50.268825458000052 ], [ -119.256695569999977, 50.26946257200013 ], [ -119.256698036999964, 50.270126305000112 ], [ -119.254927396999975, 50.270137987000069 ], [ -119.254900622999969, 50.270846901000041 ], [ -119.254871203999954, 50.271515899000043 ], [ -119.253684578999923, 50.271948804000075 ], [ -119.253383585, 50.272029712000084 ], [ -119.25203260899994, 50.272109509000089 ], [ -119.251555782999915, 50.272357499000087 ], [ -119.25159301399999, 50.272551984000117 ], [ -119.251544635999977, 50.27297069400008 ], [ -119.251425836999928, 50.273058201000019 ], [ -119.251226452999973, 50.273100160000119 ], [ -119.250015308999934, 50.273073839000034 ], [ -119.248118125999937, 50.273075520000134 ], [ -119.248098033999952, 50.27307555500002 ], [ -119.24808756499999, 50.272428468000079 ], [ -119.248985104999974, 50.272412094000067 ], [ -119.25006018499991, 50.272414799000103 ], [ -119.25008807399999, 50.270132399000055 ], [ -119.253127811999946, 50.270136206000139 ], [ -119.253137103, 50.269478598000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95829333", "BldgCostT": "64143333", "sL_LossRatio": "1", "sL_AssetLoss": "6799.1", "sL_BldgLoss": "6799.1", "sL_StrLoss": "6799.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F4FF42B23D05DC0BA0D28A363224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.249536894999949, 50.268622494000063 ], [ -119.249530417999964, 50.267863707000068 ], [ -119.249518386999938, 50.267425107000051 ], [ -119.250180133999905, 50.267425644000134 ], [ -119.25050477399999, 50.267425900000028 ], [ -119.25113798299995, 50.267433100000098 ], [ -119.252540385999964, 50.267442301000074 ], [ -119.253237498999937, 50.267436213000074 ], [ -119.253943205999974, 50.267429805000091 ], [ -119.254243594999977, 50.267428299000102 ], [ -119.255338495999965, 50.267429416 ], [ -119.256664106999935, 50.267433792000062 ], [ -119.25668488299999, 50.268825458000052 ], [ -119.255840286999927, 50.268837014000049 ], [ -119.255546189999961, 50.26877739800004 ], [ -119.255405093999926, 50.268683895000045 ], [ -119.254296591999946, 50.268679304000059 ], [ -119.254084144999936, 50.268678460000118 ], [ -119.253194992999951, 50.268674996000087 ], [ -119.253137103, 50.269478598000042 ], [ -119.253127811999946, 50.270136206000139 ], [ -119.25008807399999, 50.270132399000055 ], [ -119.248990281999951, 50.270140089000087 ], [ -119.247718913999989, 50.27014069300003 ], [ -119.247715208999978, 50.269363091000159 ], [ -119.249539100999982, 50.269362890000096 ], [ -119.249536894999949, 50.268622494000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105948644", "BldgCostT": "71656523", "sL_LossRatio": "1", "sL_AssetLoss": "8785", "sL_BldgLoss": "8785", "sL_StrLoss": "8785", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016EE8597DACF5DC04FB08BE423224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.247693276999954, 50.267848602000065 ], [ -119.247695189999931, 50.267411809000109 ], [ -119.24618475699999, 50.267408578000065 ], [ -119.245253395999967, 50.267407620000057 ], [ -119.244955908999927, 50.267407278000029 ], [ -119.243415749999912, 50.267408891000116 ], [ -119.243074067999956, 50.267409253000082 ], [ -119.242629380999972, 50.267410052000045 ], [ -119.24251924, 50.267410232000081 ], [ -119.242468525999925, 50.265409882000093 ], [ -119.245448315999937, 50.265448302000038 ], [ -119.245500586000034, 50.265449901000089 ], [ -119.247600980999948, 50.265456791000091 ], [ -119.248790710000023, 50.265464700000081 ], [ -119.250207325999895, 50.265434998000082 ], [ -119.25034843399996, 50.265424301000074 ], [ -119.251122384999988, 50.265365609000057 ], [ -119.252560384, 50.265372403000065 ], [ -119.252540385999964, 50.267442301000074 ], [ -119.25113798299995, 50.267433100000098 ], [ -119.25050477399999, 50.267425900000028 ], [ -119.250180133999905, 50.267425644000134 ], [ -119.249518386999938, 50.267425107000051 ], [ -119.249530417999964, 50.267863707000068 ], [ -119.249536894999949, 50.268622494000063 ], [ -119.249539100999982, 50.269362890000096 ], [ -119.247715208999978, 50.269363091000159 ], [ -119.247707693999985, 50.269072882000039 ], [ -119.247695400999987, 50.268599006000031 ], [ -119.247693874999982, 50.268047642000134 ], [ -119.247693276999954, 50.267848602000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79974333", "BldgCostT": "54363333", "sL_LossRatio": "1", "sL_AssetLoss": "7591", "sL_BldgLoss": "7591", "sL_StrLoss": "7591", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E39D342D1CF5DC03AD3D735D2214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.242468525999925, 50.265409882000093 ], [ -119.242218365999946, 50.263696101000093 ], [ -119.242253493999925, 50.263696099000107 ], [ -119.24258698, 50.263745822000018 ], [ -119.242726308999949, 50.26376661000004 ], [ -119.244827339999958, 50.263731460000017 ], [ -119.24529041299995, 50.263723724000116 ], [ -119.2453753879999, 50.263722310000063 ], [ -119.24538738699998, 50.262793104000167 ], [ -119.24563912399995, 50.262791593000038 ], [ -119.251100111999932, 50.262758703000046 ], [ -119.251104221999967, 50.263769200000077 ], [ -119.251122384999988, 50.265365609000057 ], [ -119.25034843399996, 50.265424301000074 ], [ -119.250207325999895, 50.265434998000082 ], [ -119.248790710000023, 50.265464700000081 ], [ -119.247600980999948, 50.265456791000091 ], [ -119.245500586000034, 50.265449901000089 ], [ -119.245448315999937, 50.265448302000038 ], [ -119.242468525999925, 50.265409882000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "130328500", "BldgCostT": "87880000", "sL_LossRatio": "1", "sL_AssetLoss": "10474.4", "sL_BldgLoss": "10474.4", "sL_StrLoss": "10474.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9DBD8CB3AD05DC001435E28C3214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.252540385999964, 50.267442301000074 ], [ -119.252560384, 50.265372403000065 ], [ -119.251122384999988, 50.265365609000057 ], [ -119.251104221999967, 50.263769200000077 ], [ -119.251100111999932, 50.262758703000046 ], [ -119.251096392999912, 50.262235701000101 ], [ -119.251083016999956, 50.261862901000065 ], [ -119.251094998999946, 50.260073303000091 ], [ -119.251274697, 50.260124903000104 ], [ -119.252544277999945, 50.260134997000122 ], [ -119.25393760899999, 50.260147200000084 ], [ -119.255274683999957, 50.260138805000096 ], [ -119.255283497999969, 50.261289509000051 ], [ -119.255314992999971, 50.262259309000086 ], [ -119.255296914, 50.263296502000067 ], [ -119.255300296999962, 50.263841092000106 ], [ -119.2553154, 50.264231090000074 ], [ -119.255304291999977, 50.26535351100005 ], [ -119.256640100999945, 50.265364917000078 ], [ -119.256664106999935, 50.267433792000062 ], [ -119.255338495999965, 50.267429416 ], [ -119.254243594999977, 50.267428299000102 ], [ -119.253943205999974, 50.267429805000091 ], [ -119.253237498999937, 50.267436213000074 ], [ -119.252540385999964, 50.267442301000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71942416", "BldgCostT": "49351666", "sL_LossRatio": "1", "sL_AssetLoss": "6615.2", "sL_BldgLoss": "6615.2", "sL_StrLoss": "6615.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D31102EAF4CF5DC011B04E7C52214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.249442887999976, 50.261068108000046 ], [ -119.249458099999956, 50.260022695000053 ], [ -119.24912814899993, 50.260019699000047 ], [ -119.247919893999935, 50.260008719000091 ], [ -119.247896815, 50.25960650000011 ], [ -119.248356105999946, 50.259616603000111 ], [ -119.24849440499996, 50.259587107000044 ], [ -119.248565801999959, 50.259514802000048 ], [ -119.248571926999944, 50.258596003000072 ], [ -119.248536397999956, 50.258503606000033 ], [ -119.248411909999959, 50.258459804000069 ], [ -119.248472679999978, 50.258280956000085 ], [ -119.248519569999957, 50.258142655000093 ], [ -119.248519995, 50.258141394000077 ], [ -119.248493584999935, 50.257214402000066 ], [ -119.249756609999949, 50.25709770600011 ], [ -119.251057680999978, 50.256933695000086 ], [ -119.251058474999965, 50.256999914000112 ], [ -119.251087333999976, 50.259427934000023 ], [ -119.251093546999968, 50.259949032000073 ], [ -119.251093731999958, 50.259967096000061 ], [ -119.251094998999946, 50.260073303000091 ], [ -119.251083016999956, 50.261862901000065 ], [ -119.251096392999912, 50.262235701000101 ], [ -119.251100111999932, 50.262758703000046 ], [ -119.24563912399995, 50.262791593000038 ], [ -119.24538738699998, 50.262793104000167 ], [ -119.245377987999944, 50.261884309000045 ], [ -119.246066691999957, 50.261877795000018 ], [ -119.247272108999937, 50.261874 ], [ -119.24789429399999, 50.261872201000109 ], [ -119.248187886999972, 50.261044048000016 ], [ -119.249442887999976, 50.261068108000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211714979", "BldgCostT": "134790842", "sL_LossRatio": "0.986523740155424", "sL_AssetLoss": "8615.15", "sL_BldgLoss": "8499.05", "sL_StrLoss": "8457", "sL_NStrLoss": "42.05", "sL_ContLoss": "116.1", "geom_point": "0101000020E61000009DCCD3149CD05DC0744F9ADD45224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.256664106999935, 50.267433792000062 ], [ -119.256640100999945, 50.265364917000078 ], [ -119.258046600999975, 50.265365202000062 ], [ -119.258723610999979, 50.265361492000075 ], [ -119.259400581999941, 50.265357787000021 ], [ -119.260735486999963, 50.265365400000114 ], [ -119.262332208999965, 50.26535649300007 ], [ -119.262341402999979, 50.267044491000021 ], [ -119.262245581999935, 50.267233606000048 ], [ -119.261955203999946, 50.267432502000062 ], [ -119.262419691000019, 50.267436494000052 ], [ -119.262417306999964, 50.268114402000066 ], [ -119.262422880999921, 50.268833395000144 ], [ -119.262426815999916, 50.269545090000086 ], [ -119.262456001999965, 50.270029805000085 ], [ -119.262417218999971, 50.27010149500007 ], [ -119.262340111999933, 50.270145503000037 ], [ -119.26150664, 50.270152206000027 ], [ -119.261022112999981, 50.270156091000054 ], [ -119.26085959599996, 50.270154018000028 ], [ -119.259435226999969, 50.270135811000152 ], [ -119.256698036999964, 50.270126305000112 ], [ -119.256695569999977, 50.26946257200013 ], [ -119.25668488299999, 50.268825458000052 ], [ -119.256664106999935, 50.267433792000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96657917", "BldgCostT": "64801667", "sL_LossRatio": "0.997442384679691", "sL_AssetLoss": "7248.94", "sL_BldgLoss": "7230.4", "sL_StrLoss": "7223.7", "sL_NStrLoss": "6.7", "sL_ContLoss": "18.54", "geom_point": "0101000020E6100000FF217003C2D05DC02F858B05D3224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.258488138999965, 50.272668451000115 ], [ -119.258489883999957, 50.272127349000066 ], [ -119.25849052699999, 50.27200009300001 ], [ -119.258489487999952, 50.271468276000114 ], [ -119.258489171999912, 50.271274701000031 ], [ -119.258488228999923, 50.270739619000089 ], [ -119.258950870999925, 50.270548555000062 ], [ -119.259179830999955, 50.27044969700011 ], [ -119.259435226999969, 50.270135811000152 ], [ -119.26085959599996, 50.270154018000028 ], [ -119.261022112999981, 50.270156091000054 ], [ -119.26150664, 50.270152206000027 ], [ -119.262340111999933, 50.270145503000037 ], [ -119.264268195999989, 50.270146111000081 ], [ -119.26423809399995, 50.270849296000158 ], [ -119.26425000099999, 50.271486714000112 ], [ -119.264255994999957, 50.271807400000114 ], [ -119.264267789999948, 50.272683804000081 ], [ -119.264868505999985, 50.272680713000042 ], [ -119.265452695999912, 50.272677686000058 ], [ -119.266633739999975, 50.272688484000049 ], [ -119.266626776999942, 50.273338660000029 ], [ -119.266623316, 50.273667393000068 ], [ -119.26430899199994, 50.273674902000032 ], [ -119.258494202999913, 50.273657899000064 ], [ -119.258486985, 50.273016506000019 ], [ -119.258488138999965, 50.272668451000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "152220000", "BldgCostT": "96195000", "sL_LossRatio": "0.999014834240507", "sL_AssetLoss": "9338.53", "sL_BldgLoss": "9329.33", "sL_StrLoss": "9326", "sL_NStrLoss": "3.33", "sL_ContLoss": "9.2", "geom_point": "0101000020E61000009B3B6D6CBAD05DC05E269A724B234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.258494202999913, 50.273657899000064 ], [ -119.26430899199994, 50.273674902000032 ], [ -119.264305398999909, 50.274740003000055 ], [ -119.264277899999925, 50.276182807000033 ], [ -119.264286366999968, 50.277251325000144 ], [ -119.26429071099993, 50.27779958500011 ], [ -119.262389140999957, 50.277807963000086 ], [ -119.261996846999978, 50.277811424000085 ], [ -119.258490409999979, 50.277842188000072 ], [ -119.258486061999989, 50.277417584 ], [ -119.258486404999928, 50.277349008000066 ], [ -119.258483876999961, 50.277101464000076 ], [ -119.258482610999963, 50.27697772199999 ], [ -119.258478775999919, 50.276445952000081 ], [ -119.258475267999955, 50.275958903000053 ], [ -119.258466228999936, 50.274715166000078 ], [ -119.258494202999913, 50.273657899000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "222435418", "BldgCostT": "148796668", "sL_LossRatio": "0.999277750922081", "sL_AssetLoss": "10508.84", "sL_BldgLoss": "10501.25", "sL_StrLoss": "10498.5", "sL_NStrLoss": "2.75", "sL_ContLoss": "7.59", "geom_point": "0101000020E6100000B44E95EF59D05DC083F99FBA41234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.25235418799997, 50.273449105000076 ], [ -119.253132155999978, 50.272873795000116 ], [ -119.253632131999964, 50.272583907000147 ], [ -119.254064584999981, 50.27283160100005 ], [ -119.254347015999926, 50.272950899000122 ], [ -119.254549609999941, 50.273000288000141 ], [ -119.255250593999975, 50.273026103000042 ], [ -119.255649695999949, 50.272996312000089 ], [ -119.25565219799995, 50.27335759900005 ], [ -119.256493780999975, 50.273342017000054 ], [ -119.257147607999926, 50.2733299020001 ], [ -119.257116799999935, 50.272138095000088 ], [ -119.258489883999957, 50.272127349000066 ], [ -119.258488138999965, 50.272668451000115 ], [ -119.258486985, 50.273016506000019 ], [ -119.258494202999913, 50.273657899000064 ], [ -119.258466228999936, 50.274715166000078 ], [ -119.258475267999955, 50.275958903000053 ], [ -119.258478775999919, 50.276445952000081 ], [ -119.258482610999963, 50.27697772199999 ], [ -119.258483876999961, 50.277101464000076 ], [ -119.258486404999928, 50.277349008000066 ], [ -119.258486061999989, 50.277417584 ], [ -119.258490409999979, 50.277842188000072 ], [ -119.258491552999914, 50.278263560000049 ], [ -119.258492057999931, 50.278464326000076 ], [ -119.25624544199998, 50.278463162 ], [ -119.254786146999919, 50.278462354000119 ], [ -119.254765326000012, 50.278214549000012 ], [ -119.254701437999984, 50.278057156000088 ], [ -119.254584536, 50.277914655000117 ], [ -119.254162803999932, 50.277604458000056 ], [ -119.254033847999949, 50.277517850000031 ], [ -119.253865550999961, 50.277404793000109 ], [ -119.253425642, 50.277112441000071 ], [ -119.252799602999929, 50.276839375000087 ], [ -119.251964296999986, 50.276485786000137 ], [ -119.251708358999963, 50.276321161000034 ], [ -119.251558149999966, 50.276184661000066 ], [ -119.251414273999984, 50.27596819700009 ], [ -119.2518002, 50.274733287000117 ], [ -119.252232110999941, 50.273568023000053 ], [ -119.25235418799997, 50.273449105000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155491749", "BldgCostT": "104049999", "sL_LossRatio": "0.998954778943547", "sL_AssetLoss": "7051.14", "sL_BldgLoss": "7043.77", "sL_StrLoss": "7041.1", "sL_NStrLoss": "2.67", "sL_ContLoss": "7.37", "geom_point": "0101000020E61000004080148E43D05DC0E4F4FE37DD224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.248901615999969, 50.274745334000087 ], [ -119.248951605999977, 50.273768848000081 ], [ -119.248069885999953, 50.27377351200014 ], [ -119.248098033999952, 50.27307555500002 ], [ -119.248118125999937, 50.273075520000134 ], [ -119.250015308999934, 50.273073839000034 ], [ -119.251226452999973, 50.273100160000119 ], [ -119.251425836999928, 50.273058201000019 ], [ -119.251544635999977, 50.27297069400008 ], [ -119.25159301399999, 50.272551984000117 ], [ -119.251555782999915, 50.272357499000087 ], [ -119.25203260899994, 50.272109509000089 ], [ -119.253383585, 50.272029712000084 ], [ -119.253684578999923, 50.271948804000075 ], [ -119.254871203999954, 50.271515899000043 ], [ -119.254900622999969, 50.270846901000041 ], [ -119.254927396999975, 50.270137987000069 ], [ -119.256698036999964, 50.270126305000112 ], [ -119.259435226999969, 50.270135811000152 ], [ -119.259179830999955, 50.27044969700011 ], [ -119.258950870999925, 50.270548555000062 ], [ -119.258488228999923, 50.270739619000089 ], [ -119.258489171999912, 50.271274701000031 ], [ -119.258489487999952, 50.271468276000114 ], [ -119.25849052699999, 50.27200009300001 ], [ -119.258489883999957, 50.272127349000066 ], [ -119.257116799999935, 50.272138095000088 ], [ -119.257147607999926, 50.2733299020001 ], [ -119.256493780999975, 50.273342017000054 ], [ -119.25565219799995, 50.27335759900005 ], [ -119.255649695999949, 50.272996312000089 ], [ -119.255250593999975, 50.273026103000042 ], [ -119.254549609999941, 50.273000288000141 ], [ -119.254347015999926, 50.272950899000122 ], [ -119.254064584999981, 50.27283160100005 ], [ -119.253632131999964, 50.272583907000147 ], [ -119.253132155999978, 50.272873795000116 ], [ -119.25235418799997, 50.273449105000076 ], [ -119.252232110999941, 50.273568023000053 ], [ -119.2518002, 50.274733287000117 ], [ -119.248901615999969, 50.274745334000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417798330", "BldgCostT": "262498007", "sL_LossRatio": "0.980256913846405", "sL_AssetLoss": "12612.01", "sL_BldgLoss": "12363.01", "sL_StrLoss": "12272.9", "sL_NStrLoss": "90.11", "sL_ContLoss": "249", "geom_point": "0101000020E6100000453B5E16CDD05DC0151CFBE5D5234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.266636001000037, 50.277811999000072 ], [ -119.270007519999965, 50.277814832000075 ], [ -119.269995349999988, 50.278770695000098 ], [ -119.269990991999933, 50.279109334000111 ], [ -119.269920804999941, 50.279246377000113 ], [ -119.269903547999931, 50.279280035000099 ], [ -119.269625351999949, 50.27952938500006 ], [ -119.26953330000002, 50.27979730800012 ], [ -119.269603611999926, 50.280101316000128 ], [ -119.269908717999968, 50.280561420000112 ], [ -119.269964871999903, 50.280780608000015 ], [ -119.269971049, 50.281969957000072 ], [ -119.269442125999959, 50.281969163000099 ], [ -119.268303601999889, 50.281967441000049 ], [ -119.266721522999944, 50.281969216000064 ], [ -119.266524464999947, 50.281967084000037 ], [ -119.263264271999958, 50.281943012000077 ], [ -119.262375460999962, 50.281947369000086 ], [ -119.258450642999961, 50.281936670000078 ], [ -119.257785619999979, 50.281932196000106 ], [ -119.254933785, 50.281912899000076 ], [ -119.253767919999973, 50.281921898000057 ], [ -119.254097666999925, 50.281459978000065 ], [ -119.254712825999945, 50.280908994000121 ], [ -119.25481629699999, 50.280763657000087 ], [ -119.254867185999956, 50.280611501000067 ], [ -119.254864200999975, 50.280480398000087 ], [ -119.254860918999967, 50.280393831000055 ], [ -119.254816997999939, 50.279237966000089 ], [ -119.25480148699998, 50.278847814000137 ], [ -119.254786146999919, 50.278462354000119 ], [ -119.25624544199998, 50.278463162 ], [ -119.258492057999931, 50.278464326000076 ], [ -119.258491552999914, 50.278263560000049 ], [ -119.258490409999979, 50.277842188000072 ], [ -119.261996846999978, 50.277811424000085 ], [ -119.262389140999957, 50.277807963000086 ], [ -119.26429071099993, 50.27779958500011 ], [ -119.266636001000037, 50.277811999000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417952373", "BldgCostT": "282473706", "sL_LossRatio": "0.984430154312101", "sL_AssetLoss": "5626.26", "sL_BldgLoss": "5538.66", "sL_StrLoss": "5506.8", "sL_NStrLoss": "31.86", "sL_ContLoss": "87.6", "geom_point": "0101000020E6100000EBC7919415D25DC01F971F55A0214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.279346630999939, 50.263527529000058 ], [ -119.279346071999967, 50.263386950000033 ], [ -119.279345392999943, 50.263206298000021 ], [ -119.279341458999937, 50.262187451000045 ], [ -119.279331485999933, 50.26159100100007 ], [ -119.279695895999964, 50.261623196000137 ], [ -119.280793083999967, 50.261621694000077 ], [ -119.284184969999927, 50.261616993000096 ], [ -119.285793079, 50.261615698000071 ], [ -119.28579584699996, 50.262646779000072 ], [ -119.285795945999965, 50.262679219000027 ], [ -119.285798896999907, 50.263778309000081 ], [ -119.284263715999927, 50.263791259000094 ], [ -119.28093205299993, 50.263800540000013 ], [ -119.280650211999941, 50.263801324000049 ], [ -119.280271117999987, 50.263802372000093 ], [ -119.279500964999926, 50.263786424000038 ], [ -119.279374762999979, 50.263783827000026 ], [ -119.279346630999939, 50.263527529000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "198149334", "BldgCostT": "129518334", "sL_LossRatio": "0.99806888000122", "sL_AssetLoss": "9838.85", "sL_BldgLoss": "9819.85", "sL_StrLoss": "9813", "sL_NStrLoss": "6.85", "sL_ContLoss": "19", "geom_point": "0101000020E610000031E609DFD6D15DC0C20CC7D28B204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.27662408499999, 50.256835905000123 ], [ -119.277593302999946, 50.256723512000079 ], [ -119.278724697999948, 50.256827798000089 ], [ -119.278888817999984, 50.25662470300005 ], [ -119.278801408, 50.256169791000055 ], [ -119.27882968499992, 50.25602710600004 ], [ -119.278907401999916, 50.255930688000035 ], [ -119.278683078999961, 50.255932395000031 ], [ -119.277637485999904, 50.255809896000073 ], [ -119.276396101, 50.255810909000076 ], [ -119.276561374, 50.255419198 ], [ -119.276706919999938, 50.255075108 ], [ -119.276875818999926, 50.254810907000085 ], [ -119.276958479999948, 50.254662504000123 ], [ -119.277512912999924, 50.253946998000039 ], [ -119.27616970299999, 50.253921889000097 ], [ -119.276191206999925, 50.253189199000076 ], [ -119.274917087999924, 50.253182798000068 ], [ -119.274959887999984, 50.252847698000075 ], [ -119.27501979699997, 50.251165818000047 ], [ -119.275257198999967, 50.250895913000129 ], [ -119.275477798999958, 50.250738806000122 ], [ -119.27578248899998, 50.250631892000101 ], [ -119.27608040399997, 50.250589602000019 ], [ -119.277227212999932, 50.250580098000029 ], [ -119.277655310999961, 50.250543110000102 ], [ -119.277931290999931, 50.250487710000115 ], [ -119.278190485999957, 50.250638892000062 ], [ -119.278358198999939, 50.250667188000079 ], [ -119.278388606999954, 50.250658877000035 ], [ -119.278965757999984, 50.251056393000106 ], [ -119.279256244999956, 50.252175512000107 ], [ -119.279082717999927, 50.252285892000025 ], [ -119.27891289899992, 50.252433322000087 ], [ -119.278759869999959, 50.252566174000101 ], [ -119.278513282999938, 50.252780203000093 ], [ -119.279826000999918, 50.252792587000123 ], [ -119.280837317999939, 50.252813690000103 ], [ -119.280832720999953, 50.253100504000052 ], [ -119.280137803999949, 50.25400340300007 ], [ -119.27989132, 50.254410807000077 ], [ -119.280096576999981, 50.25447030100004 ], [ -119.281123899999955, 50.254763209000032 ], [ -119.282181700999956, 50.255087713000115 ], [ -119.283118678999955, 50.255372392000048 ], [ -119.283600673999942, 50.255446896000109 ], [ -119.284000699999979, 50.255457707000097 ], [ -119.284464493999934, 50.255399297000032 ], [ -119.284532449, 50.255380141000082 ], [ -119.28455980699999, 50.25542013500008 ], [ -119.28461648399994, 50.255503096000105 ], [ -119.2847298, 50.25566903100011 ], [ -119.284786459999964, 50.255751969000102 ], [ -119.284843151999922, 50.2558349540001 ], [ -119.284899776999964, 50.255917903000061 ], [ -119.28495645299995, 50.256000864000072 ], [ -119.28440921399999, 50.256103790000097 ], [ -119.283806506999909, 50.256177194000031 ], [ -119.283596293999921, 50.256235707000073 ], [ -119.28291250299999, 50.256618307000096 ], [ -119.282450077999982, 50.256771598000078 ], [ -119.281860169999916, 50.256824993000073 ], [ -119.280129011999961, 50.256841195000092 ], [ -119.280085672999974, 50.256961395000097 ], [ -119.279833594999914, 50.257292705000083 ], [ -119.279421801999959, 50.257304598000125 ], [ -119.278579309999955, 50.257455404000041 ], [ -119.276198699999924, 50.25811449100015 ], [ -119.276191504999957, 50.257566097000044 ], [ -119.276172105999962, 50.256824609000013 ], [ -119.27662408499999, 50.256835905000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "96502221", "BldgCostT": "58208932", "sL_LossRatio": "0.984141712486813", "sL_AssetLoss": "6530.97", "sL_BldgLoss": "6427.4", "sL_StrLoss": "6390", "sL_NStrLoss": "37.4", "sL_ContLoss": "103.57", "geom_point": "0101000020E610000073F673AF38D25DC03F3A12BB78204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.280137803999949, 50.25400340300007 ], [ -119.280832720999953, 50.253100504000052 ], [ -119.280837317999939, 50.252813690000103 ], [ -119.281638412999911, 50.252817401000122 ], [ -119.281658001, 50.252173105000047 ], [ -119.281833310999929, 50.252074606000079 ], [ -119.282157504999986, 50.252054601000069 ], [ -119.283202380999938, 50.25208580300005 ], [ -119.284241272, 50.252082403000081 ], [ -119.284503913999941, 50.252021602000063 ], [ -119.28472548699996, 50.251886191000089 ], [ -119.284887887999943, 50.251835603000053 ], [ -119.284974580999943, 50.251852335000073 ], [ -119.285004400999952, 50.251858085000102 ], [ -119.285058699, 50.251938109 ], [ -119.285058713999959, 50.251965799000097 ], [ -119.285058882999948, 50.252226418000078 ], [ -119.285059201, 50.252817483000051 ], [ -119.285750105999966, 50.252813491000097 ], [ -119.286049004999924, 50.252765001000107 ], [ -119.286645707999952, 50.252598184000092 ], [ -119.287147110999939, 50.252542097000081 ], [ -119.289085522999983, 50.252553701000089 ], [ -119.289110506999961, 50.252783604000072 ], [ -119.289782812999988, 50.253503506000129 ], [ -119.290377693000011, 50.254166286000078 ], [ -119.29004211599991, 50.254291192000068 ], [ -119.288791408999884, 50.254630310000088 ], [ -119.288561817999934, 50.254354511000031 ], [ -119.288370703999973, 50.254237200000013 ], [ -119.288178690999985, 50.254173103000035 ], [ -119.287951206999963, 50.254149292000108 ], [ -119.287714589999965, 50.254167402000071 ], [ -119.28749518399998, 50.25422179300007 ], [ -119.286226406999958, 50.254737486000039 ], [ -119.284901175999963, 50.25527610600011 ], [ -119.284532449, 50.255380141000082 ], [ -119.284464493999934, 50.255399297000032 ], [ -119.284000699999979, 50.255457707000097 ], [ -119.283600673999942, 50.255446896000109 ], [ -119.283118678999955, 50.255372392000048 ], [ -119.282181700999956, 50.255087713000115 ], [ -119.281123899999955, 50.254763209000032 ], [ -119.280096576999981, 50.25447030100004 ], [ -119.27989132, 50.254410807000077 ], [ -119.280137803999949, 50.25400340300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "229815417", "BldgCostT": "157571667", "sL_LossRatio": "0.995869744163841", "sL_AssetLoss": "7592.75", "sL_BldgLoss": "7561.39", "sL_StrLoss": "7550", "sL_NStrLoss": "11.39", "sL_ContLoss": "31.36", "geom_point": "0101000020E61000001C8BE05E5DD25DC01B3578C2BF204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.279833594999914, 50.257292705000083 ], [ -119.280085672999974, 50.256961395000097 ], [ -119.280129011999961, 50.256841195000092 ], [ -119.281860169999916, 50.256824993000073 ], [ -119.282450077999982, 50.256771598000078 ], [ -119.28291250299999, 50.256618307000096 ], [ -119.283596293999921, 50.256235707000073 ], [ -119.283806506999909, 50.256177194000031 ], [ -119.28440921399999, 50.256103790000097 ], [ -119.28495645299995, 50.256000864000072 ], [ -119.284899776999964, 50.255917903000061 ], [ -119.284843151999922, 50.2558349540001 ], [ -119.284786459999964, 50.255751969000102 ], [ -119.2847298, 50.25566903100011 ], [ -119.28461648399994, 50.255503096000105 ], [ -119.28455980699999, 50.25542013500008 ], [ -119.284532449, 50.255380141000082 ], [ -119.284901175999963, 50.25527610600011 ], [ -119.286226406999958, 50.254737486000039 ], [ -119.28749518399998, 50.25422179300007 ], [ -119.287714589999965, 50.254167402000071 ], [ -119.287951206999963, 50.254149292000108 ], [ -119.288178690999985, 50.254173103000035 ], [ -119.288370703999973, 50.254237200000013 ], [ -119.288561817999934, 50.254354511000031 ], [ -119.288791408999884, 50.254630310000088 ], [ -119.29004211599991, 50.254291192000068 ], [ -119.290377693000011, 50.254166286000078 ], [ -119.290641792999935, 50.254408898000072 ], [ -119.290873721999915, 50.254535900000043 ], [ -119.29105899299995, 50.254587806000053 ], [ -119.291485293999941, 50.25463009500006 ], [ -119.291890205999948, 50.254588784000084 ], [ -119.291924380999902, 50.254956509000074 ], [ -119.29183929199999, 50.255149998 ], [ -119.291400313999958, 50.255563791000064 ], [ -119.290655506999911, 50.256025792000116 ], [ -119.290520807999926, 50.256173802000042 ], [ -119.290401914999904, 50.256452705000044 ], [ -119.289513305999932, 50.25641210200012 ], [ -119.288229805, 50.256544302000066 ], [ -119.287630202999978, 50.256663000000117 ], [ -119.286478111999983, 50.256944892000064 ], [ -119.285117893999967, 50.257214108000092 ], [ -119.284097624, 50.257395601000084 ], [ -119.283235823, 50.257410801000049 ], [ -119.282260913999934, 50.257305303000102 ], [ -119.281387589999937, 50.257350501000104 ], [ -119.279833594999914, 50.257292705000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113051833", "BldgCostT": "70183333", "sL_LossRatio": "1", "sL_AssetLoss": "6916.4", "sL_BldgLoss": "6916.4", "sL_StrLoss": "6916.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ABB0116FBAD25DC003110C94D2204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.292981992999927, 50.254276099000094 ], [ -119.293624977999968, 50.253770130000056 ], [ -119.294824190999947, 50.252826400000053 ], [ -119.295090103999968, 50.252657594000084 ], [ -119.295335123999962, 50.252573212000151 ], [ -119.29562778899999, 50.25251880200009 ], [ -119.295802360999957, 50.252521103000049 ], [ -119.296236596999947, 50.252526909000025 ], [ -119.296572084999966, 50.252630392000071 ], [ -119.295537307999979, 50.253433210000061 ], [ -119.295376902999976, 50.253641001000062 ], [ -119.295318308, 50.253826995000047 ], [ -119.295348412999942, 50.254022986000059 ], [ -119.295696787999944, 50.2540206910001 ], [ -119.296080480999976, 50.254121690000019 ], [ -119.295901490999924, 50.254303092000058 ], [ -119.295334768999965, 50.255037193000085 ], [ -119.295107998999981, 50.255330889000057 ], [ -119.294932483999986, 50.255611793000035 ], [ -119.29487718299994, 50.255899194000072 ], [ -119.294882031999919, 50.255917621000052 ], [ -119.29497791299994, 50.25628448000009 ], [ -119.295121606999928, 50.256531506000051 ], [ -119.295312817999957, 50.256638899000031 ], [ -119.295381691, 50.256672074000086 ], [ -119.295818954999945, 50.256882754000081 ], [ -119.296256257999914, 50.257093481000076 ], [ -119.296433897999947, 50.257179054000098 ], [ -119.296664858999989, 50.257313724000021 ], [ -119.297053933, 50.257540523000067 ], [ -119.296762262999962, 50.25781041700008 ], [ -119.296579374999908, 50.258027711000047 ], [ -119.295853749999978, 50.257998901000022 ], [ -119.2949407199999, 50.25802729500009 ], [ -119.29394896299999, 50.258158443000049 ], [ -119.288947449999952, 50.258819700000096 ], [ -119.287963980999947, 50.258952081000103 ], [ -119.287998979999927, 50.258069018000064 ], [ -119.287999894999984, 50.258045654000099 ], [ -119.288002988999935, 50.257967706000045 ], [ -119.288032429999959, 50.257878124000058 ], [ -119.288113508999942, 50.257631400000115 ], [ -119.288190293999946, 50.257446503000082 ], [ -119.288229805, 50.256544302000066 ], [ -119.289513305999932, 50.25641210200012 ], [ -119.290401914999904, 50.256452705000044 ], [ -119.290520807999926, 50.256173802000042 ], [ -119.290655506999911, 50.256025792000116 ], [ -119.291400313999958, 50.255563791000064 ], [ -119.29183929199999, 50.255149998 ], [ -119.291924380999902, 50.254956509000074 ], [ -119.291890205999948, 50.254588784000084 ], [ -119.292481199999969, 50.254498380000094 ], [ -119.29277019700001, 50.254402288000037 ], [ -119.292981992999927, 50.254276099000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "280351942", "BldgCostT": "181906784", "sL_LossRatio": "0.985586262598332", "sL_AssetLoss": "9060.8005655", "sL_BldgLoss": "8930.2005655", "sL_StrLoss": "8882.9005655", "sL_NStrLoss": "47.3", "sL_ContLoss": "130.6", "geom_point": "0101000020E6100000D7CF40D1A1D25DC0FDA922C347214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.295853749999978, 50.257998901000022 ], [ -119.296579374999908, 50.258027711000047 ], [ -119.296601196999944, 50.258897508000075 ], [ -119.296622018999983, 50.259783511000073 ], [ -119.296644304000012, 50.260850101000059 ], [ -119.291712687999947, 50.260847869000052 ], [ -119.291714005999921, 50.260930968000068 ], [ -119.291714611999964, 50.260968059 ], [ -119.29170742399999, 50.261614931000054 ], [ -119.289705982999976, 50.261617603000083 ], [ -119.288839567999986, 50.261616292000078 ], [ -119.287677581999944, 50.261615826000082 ], [ -119.287123301999912, 50.261615610000064 ], [ -119.285793079, 50.261615698000071 ], [ -119.284184969999927, 50.261616993000096 ], [ -119.284166659999968, 50.261123907000105 ], [ -119.284192044999912, 50.260317437000076 ], [ -119.285523641999987, 50.260222561000077 ], [ -119.288000790999945, 50.259957338000099 ], [ -119.287963980999947, 50.258952081000103 ], [ -119.288947449999952, 50.258819700000096 ], [ -119.29394896299999, 50.258158443000049 ], [ -119.2949407199999, 50.25802729500009 ], [ -119.295853749999978, 50.257998901000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "182269083", "BldgCostT": "116448333", "sL_LossRatio": "1", "sL_AssetLoss": "14219.4", "sL_BldgLoss": "14219.4", "sL_StrLoss": "14219.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021F4BF9E27D35DC01771AE1F6A214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.29341234599994, 50.262936214000028 ], [ -119.293365368999943, 50.262930098000055 ], [ -119.292711170999922, 50.262903837000074 ], [ -119.292002119999921, 50.262876904000038 ], [ -119.291716430999969, 50.262864939000067 ], [ -119.291708500999974, 50.262576446000075 ], [ -119.291701130999968, 50.262436072000057 ], [ -119.29170742399999, 50.261614931000054 ], [ -119.291714611999964, 50.260968059 ], [ -119.291714005999921, 50.260930968000068 ], [ -119.291712687999947, 50.260847869000052 ], [ -119.296644304000012, 50.260850101000059 ], [ -119.296654030999932, 50.261297612000149 ], [ -119.297629195999946, 50.261188850000025 ], [ -119.298068652999987, 50.261139812000067 ], [ -119.298277413, 50.261116523000048 ], [ -119.298506823999944, 50.261089843000029 ], [ -119.299369425999913, 50.260793902000088 ], [ -119.300129512999945, 50.260533137000024 ], [ -119.30052600099999, 50.260340600000077 ], [ -119.300747452999971, 50.260233079000045 ], [ -119.301559261999984, 50.259718206000045 ], [ -119.301818731999973, 50.259612107000052 ], [ -119.302921594999958, 50.259329777000048 ], [ -119.303366809999915, 50.259168159000069 ], [ -119.303716878, 50.259040489000014 ], [ -119.304963535999946, 50.258452714000086 ], [ -119.306589484999947, 50.257843750000042 ], [ -119.308141484999922, 50.256753604000082 ], [ -119.308723684999933, 50.25716091200011 ], [ -119.308999808999928, 50.257437695000085 ], [ -119.308606791000017, 50.257636789000074 ], [ -119.307669912999984, 50.258179291000012 ], [ -119.307300089999927, 50.258392498000077 ], [ -119.307079712999908, 50.258558702000059 ], [ -119.306906113999943, 50.258770305000027 ], [ -119.306830797999936, 50.259050096000074 ], [ -119.306868392999888, 50.259624697000049 ], [ -119.305912104999933, 50.259678593000075 ], [ -119.30550129699999, 50.259741180000105 ], [ -119.304677312999971, 50.259991990000074 ], [ -119.303894319, 50.260230272000094 ], [ -119.303598610999984, 50.260409966000054 ], [ -119.303160314999928, 50.26082937400006 ], [ -119.30280652099998, 50.261048845000083 ], [ -119.302597617999965, 50.261097924000026 ], [ -119.302302799999936, 50.261167149000045 ], [ -119.301614705999967, 50.261179564000059 ], [ -119.301432225, 50.261270446000026 ], [ -119.301563196999894, 50.261984361000096 ], [ -119.301595693999957, 50.262658948000102 ], [ -119.300156968999943, 50.262791739000122 ], [ -119.299563998999972, 50.262846863000057 ], [ -119.296750064999941, 50.263317647000115 ], [ -119.296536719999949, 50.263353330000037 ], [ -119.296112684999954, 50.263380790000106 ], [ -119.295113325999964, 50.263325386000062 ], [ -119.294766169999932, 50.263271757000027 ], [ -119.293679195999957, 50.262970890000076 ], [ -119.293550413999981, 50.262954156000028 ], [ -119.293467572999958, 50.262943391000064 ], [ -119.29341234599994, 50.262936214000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "250031000", "BldgCostT": "167060000", "sL_LossRatio": "1", "sL_AssetLoss": "5571.9", "sL_BldgLoss": "5571.9", "sL_StrLoss": "5571.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000621B1B2E70D25DC09B2763BEB4214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.289705982999976, 50.261617603000083 ], [ -119.29170742399999, 50.261614931000054 ], [ -119.291701130999968, 50.262436072000057 ], [ -119.291708500999974, 50.262576446000075 ], [ -119.291716430999969, 50.262864939000067 ], [ -119.291682925999964, 50.263138238000053 ], [ -119.291127651999929, 50.263651503000084 ], [ -119.289123018999973, 50.264928746000088 ], [ -119.28867020699991, 50.265102481000014 ], [ -119.285681521999948, 50.265137969000065 ], [ -119.284275223999941, 50.265137109000115 ], [ -119.284263715999927, 50.263791259000094 ], [ -119.285798896999907, 50.263778309000081 ], [ -119.285795945999965, 50.262679219000027 ], [ -119.28579584699996, 50.262646779000072 ], [ -119.285793079, 50.261615698000071 ], [ -119.287123301999912, 50.261615610000064 ], [ -119.287677581999944, 50.261615826000082 ], [ -119.288839567999986, 50.261616292000078 ], [ -119.289705982999976, 50.261617603000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "396712667", "BldgCostT": "266191667", "sL_LossRatio": "0.998841493429329", "sL_AssetLoss": "12067.26", "sL_BldgLoss": "12053.28", "sL_StrLoss": "12048.2", "sL_NStrLoss": "5.08", "sL_ContLoss": "13.98", "geom_point": "0101000020E6100000B58BE42390D25DC00A0D9B3368224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.283327394999972, 50.27229708700002 ], [ -119.283578835999947, 50.271921530000078 ], [ -119.28401152099994, 50.271997644000059 ], [ -119.28531480399991, 50.271991190000129 ], [ -119.285301174999944, 50.270989272000072 ], [ -119.285088966000032, 50.271004840000082 ], [ -119.284871724999945, 50.271018710000078 ], [ -119.284151482999931, 50.271068408000119 ], [ -119.284160232999952, 50.271049410000039 ], [ -119.284291960999951, 50.270764299000071 ], [ -119.284678807, 50.269754195000068 ], [ -119.284673582999986, 50.26961992400004 ], [ -119.284617802999961, 50.268191370000046 ], [ -119.284539789999911, 50.267226944000065 ], [ -119.284385255999922, 50.266299593000092 ], [ -119.28431200499989, 50.265860074000074 ], [ -119.284285069999939, 50.26569826100009 ], [ -119.284281444999976, 50.265676718000051 ], [ -119.284271557999958, 50.265617168000141 ], [ -119.284275223999941, 50.265137109000115 ], [ -119.285681521999948, 50.265137969000065 ], [ -119.28867020699991, 50.265102481000014 ], [ -119.289123018999973, 50.264928746000088 ], [ -119.291127651999929, 50.263651503000084 ], [ -119.291682925999964, 50.263138238000053 ], [ -119.291716430999969, 50.262864939000067 ], [ -119.292002119999921, 50.262876904000038 ], [ -119.292711170999922, 50.262903837000074 ], [ -119.293365368999943, 50.262930098000055 ], [ -119.29341234599994, 50.262936214000028 ], [ -119.293467572999958, 50.262943391000064 ], [ -119.293550413999981, 50.262954156000028 ], [ -119.293679195999957, 50.262970890000076 ], [ -119.294766169999932, 50.263271757000027 ], [ -119.295113325999964, 50.263325386000062 ], [ -119.296112684999954, 50.263380790000106 ], [ -119.296536719999949, 50.263353330000037 ], [ -119.296750064999941, 50.263317647000115 ], [ -119.299563998999972, 50.262846863000057 ], [ -119.299523501999985, 50.263424882000045 ], [ -119.299375201999965, 50.263692972000058 ], [ -119.298407286999961, 50.265048495000023 ], [ -119.298370937999948, 50.265099416000098 ], [ -119.298365102999952, 50.265107586000084 ], [ -119.298371157999966, 50.265118243000089 ], [ -119.298229970999913, 50.265390339000135 ], [ -119.298189936999961, 50.265831857000101 ], [ -119.298279880999985, 50.266332196000114 ], [ -119.298314803, 50.266476468000043 ], [ -119.298381877999972, 50.26720454700007 ], [ -119.29838327499999, 50.267277789000048 ], [ -119.295837873999943, 50.267122942000071 ], [ -119.296050702999977, 50.265687591000116 ], [ -119.295661734999953, 50.26566392300002 ], [ -119.295604326999978, 50.266051075000092 ], [ -119.293003936999938, 50.265892810000018 ], [ -119.292613535000015, 50.268524438000071 ], [ -119.291632717, 50.268464727 ], [ -119.29171068299992, 50.270088404000013 ], [ -119.292131310999963, 50.27008010600008 ], [ -119.292118362999943, 50.269810513000053 ], [ -119.293380237999926, 50.269785610000035 ], [ -119.293367282999924, 50.269516017000107 ], [ -119.29420852899996, 50.269499408000044 ], [ -119.294195568999967, 50.269229816000035 ], [ -119.297139903999948, 50.26917163400006 ], [ -119.297147504999927, 50.26932954200003 ], [ -119.297387175999972, 50.269344122000092 ], [ -119.297388582999957, 50.269482577000048 ], [ -119.297238871999966, 50.26951945800009 ], [ -119.297034918999913, 50.269458246000077 ], [ -119.296697637999955, 50.272913253000056 ], [ -119.295487274999971, 50.272839620000063 ], [ -119.295666759999975, 50.271629389000054 ], [ -119.295574136, 50.271631219000064 ], [ -119.295561165999985, 50.271361627000076 ], [ -119.295140528999966, 50.271369938000049 ], [ -119.295127561999976, 50.271100346000019 ], [ -119.29428629, 50.271116963000097 ], [ -119.294299251, 50.271386555000078 ], [ -119.293878611999943, 50.271394862000136 ], [ -119.293891571999907, 50.271664453000071 ], [ -119.293050287999947, 50.271681061000088 ], [ -119.293063240999956, 50.271950654000094 ], [ -119.292221952999938, 50.271967256000075 ], [ -119.29223490399994, 50.272236848000077 ], [ -119.291814255999924, 50.272245148000124 ], [ -119.291827204999933, 50.272514740000076 ], [ -119.289303302999926, 50.272564502000129 ], [ -119.289316234999944, 50.272834095000078 ], [ -119.288895582999913, 50.272842383000047 ], [ -119.288908514999932, 50.273111977000042 ], [ -119.287646545999934, 50.273136833000095 ], [ -119.287607774999969, 50.272328052000034 ], [ -119.288028422999929, 50.272319769000021 ], [ -119.288015497999979, 50.272050175000047 ], [ -119.288436143999931, 50.272041890000082 ], [ -119.288423215999927, 50.271772297000076 ], [ -119.288002570999936, 50.27178058100003 ], [ -119.287989646999932, 50.271510987000092 ], [ -119.287148361999982, 50.271527553000091 ], [ -119.287200046999928, 50.272605928000083 ], [ -119.286779395999972, 50.2726142080001 ], [ -119.286792313999953, 50.272883802000052 ], [ -119.286371658999954, 50.272892081000045 ], [ -119.28639749499996, 50.273431269000085 ], [ -119.285978124999957, 50.273439521000149 ], [ -119.285619994999962, 50.275850658000081 ], [ -119.285505582999974, 50.276077021000077 ], [ -119.285502187999924, 50.276086741000071 ], [ -119.285400661999958, 50.276379488000032 ], [ -119.285392661999978, 50.276482238000014 ], [ -119.281768897999925, 50.276241851000115 ], [ -119.281733733999957, 50.276144724000041 ], [ -119.281471717999963, 50.275420484000087 ], [ -119.281481113999973, 50.275215207000045 ], [ -119.281647766999981, 50.274909417000075 ], [ -119.281709775999929, 50.274795812000015 ], [ -119.281921869999948, 50.274383542000031 ], [ -119.282562554999942, 50.273439460000098 ], [ -119.283327394999972, 50.27229708700002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.4", "sL_BldgLoss": "42.4", "sL_StrLoss": "42.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008FD9FE3A1CD35DC06B3EB67E5D224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.298157140999962, 50.268072122000028 ], [ -119.29919104399994, 50.268051665000044 ], [ -119.299230005999945, 50.268860439000036 ], [ -119.297968159999954, 50.268885406000081 ], [ -119.297942732999928, 50.268357327000018 ], [ -119.298157140999962, 50.268072122000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48608750", "BldgCostT": "33050000", "sL_LossRatio": "0.999250135912866", "sL_AssetLoss": "3253.923", "sL_BldgLoss": "3251.483", "sL_StrLoss": "3250.6", "sL_NStrLoss": "0.883", "sL_ContLoss": "2.44", "geom_point": "0101000020E61000007ED63E151ED25DC01834C2152F264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.28441818, 50.299763570000096 ], [ -119.284406524999966, 50.299685440000118 ], [ -119.284356345999981, 50.299751329000088 ], [ -119.284196245999908, 50.300030622000065 ], [ -119.284112771999986, 50.300397740000101 ], [ -119.28421282299999, 50.300967276000044 ], [ -119.282831324000014, 50.301048186000116 ], [ -119.282827921999953, 50.300727401000124 ], [ -119.28279180599999, 50.300495909000027 ], [ -119.2826415, 50.300273707000066 ], [ -119.281283994999967, 50.30025961000009 ], [ -119.281032225999979, 50.300292998 ], [ -119.280891183999969, 50.300373062000084 ], [ -119.28020649799997, 50.300761704000152 ], [ -119.279861276999952, 50.300854401000045 ], [ -119.279601993999961, 50.300843095000062 ], [ -119.279483002999925, 50.300828339000134 ], [ -119.27938739399994, 50.300816499000128 ], [ -119.279197801999928, 50.300649700000072 ], [ -119.279131449999952, 50.300526377000033 ], [ -119.279122538999928, 50.300509825000084 ], [ -119.273831780999956, 50.30117036300004 ], [ -119.272149172999974, 50.300654915000074 ], [ -119.272229084999964, 50.300583095 ], [ -119.272506486999958, 50.300366177000107 ], [ -119.27276548199994, 50.30016359600009 ], [ -119.27303901799992, 50.300002722000059 ], [ -119.273236909999952, 50.299886306000111 ], [ -119.273713782999906, 50.299667094000029 ], [ -119.274649920999963, 50.299385704000017 ], [ -119.274814989999925, 50.29935814700012 ], [ -119.275105519999926, 50.299309698000116 ], [ -119.276391482999941, 50.29911179600002 ], [ -119.276930990999958, 50.298965105000043 ], [ -119.277422102999964, 50.298744996000089 ], [ -119.278169380999941, 50.29824155300004 ], [ -119.278190104999965, 50.298227608000076 ], [ -119.278129622999941, 50.29844788400009 ], [ -119.281187855999974, 50.2972764370001 ], [ -119.281268431999976, 50.297037284000069 ], [ -119.281963977999936, 50.297128560000033 ], [ -119.28206606, 50.296802303000028 ], [ -119.28201900799999, 50.295646025000103 ], [ -119.282220769999938, 50.295571989000074 ], [ -119.282711204999941, 50.29556512700001 ], [ -119.282806065999978, 50.295542579000021 ], [ -119.283124995999984, 50.295474849000094 ], [ -119.283429236999936, 50.295379 ], [ -119.28361927, 50.295240321000101 ], [ -119.283696627999987, 50.295094806000051 ], [ -119.28379256199996, 50.295047937000028 ], [ -119.284200268999925, 50.295057909000086 ], [ -119.28429149599998, 50.295072680000011 ], [ -119.285164132999981, 50.295246013000025 ], [ -119.285458691999906, 50.295240083000081 ], [ -119.285713808, 50.295270260000102 ], [ -119.285981165999971, 50.295301861000056 ], [ -119.28612371899996, 50.295343950000131 ], [ -119.286040509999964, 50.295075796000056 ], [ -119.286131495999953, 50.294336349000126 ], [ -119.286002943999932, 50.293997011000059 ], [ -119.285621736999957, 50.293662966000028 ], [ -119.285395631999947, 50.293409038000057 ], [ -119.28698078799998, 50.293505569000033 ], [ -119.286957372999964, 50.293663169000055 ], [ -119.288316755999972, 50.293745934000121 ], [ -119.28830332199999, 50.293836379000062 ], [ -119.289039839999958, 50.293881213000077 ], [ -119.288994592, 50.294185859000059 ], [ -119.289113758999918, 50.294193113000091 ], [ -119.289027186999974, 50.294775978000096 ], [ -119.289070498999962, 50.294778614000087 ], [ -119.288538922999948, 50.298357257000056 ], [ -119.288386861999982, 50.298348 ], [ -119.288350827999963, 50.298590560000036 ], [ -119.288306325999912, 50.298587852000018 ], [ -119.288265039999928, 50.298865762000055 ], [ -119.288118603999976, 50.298856848000064 ], [ -119.288087342999944, 50.29906726500009 ], [ -119.287774545000019, 50.299048223000128 ], [ -119.287674962999972, 50.299718473 ], [ -119.287510040999933, 50.299708433000028 ], [ -119.287476365999936, 50.299935076000068 ], [ -119.286957000999948, 50.29990345800006 ], [ -119.286851776999967, 50.300611589000063 ], [ -119.286680851999932, 50.300601183 ], [ -119.286645379999925, 50.30083989300006 ], [ -119.286506597, 50.300831443000042 ], [ -119.286465187999937, 50.301110096000087 ], [ -119.286237086999961, 50.301096209000065 ], [ -119.286069431999977, 50.302224303000102 ], [ -119.285462917999908, 50.302187373000045 ], [ -119.28530382799994, 50.30325768100009 ], [ -119.284753219999928, 50.303266985000029 ], [ -119.28441818, 50.299763570000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "135.1", "sL_BldgLoss": "135.1", "sL_StrLoss": "135.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000477519824CD25DC078C500478A234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.285249333999943, 50.277827913000074 ], [ -119.285392661999978, 50.276482238000014 ], [ -119.285400661999958, 50.276379488000032 ], [ -119.285502187999924, 50.276086741000071 ], [ -119.285505582999974, 50.276077021000077 ], [ -119.285619994999962, 50.275850658000081 ], [ -119.285516901999983, 50.27654469000003 ], [ -119.286681558999959, 50.276615642000074 ], [ -119.286300435, 50.27918165200002 ], [ -119.285823191999967, 50.278903081000124 ], [ -119.28543381799993, 50.278611641000055 ], [ -119.285237675999909, 50.278253423000045 ], [ -119.285249333999943, 50.277827913000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "296216916", "BldgCostT": "200991666", "sL_LossRatio": "1", "sL_AssetLoss": "17767.5", "sL_BldgLoss": "17767.5", "sL_StrLoss": "17767.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B69CE846DAD45DC003CF10D075214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.300029588, 50.269109853000039 ], [ -119.300283954999941, 50.267393378000072 ], [ -119.29838327499999, 50.267277789000048 ], [ -119.298381877999972, 50.26720454700007 ], [ -119.298314803, 50.266476468000043 ], [ -119.298279880999985, 50.266332196000114 ], [ -119.298189936999961, 50.265831857000101 ], [ -119.298229970999913, 50.265390339000135 ], [ -119.298371157999966, 50.265118243000089 ], [ -119.298365102999952, 50.265107586000084 ], [ -119.298370937999948, 50.265099416000098 ], [ -119.298407286999961, 50.265048495000023 ], [ -119.299375201999965, 50.263692972000058 ], [ -119.299523501999985, 50.263424882000045 ], [ -119.299563998999972, 50.262846863000057 ], [ -119.300156968999943, 50.262791739000122 ], [ -119.301595693999957, 50.262658948000102 ], [ -119.303125296999966, 50.262751113000014 ], [ -119.303310817, 50.262762288000026 ], [ -119.303703905999924, 50.262796398000127 ], [ -119.304618972999918, 50.26287573300003 ], [ -119.305527297999959, 50.262954493000024 ], [ -119.305609303, 50.262961606000076 ], [ -119.305896591999968, 50.262933911000069 ], [ -119.30706891599999, 50.262601593000106 ], [ -119.308127911999918, 50.262301194000059 ], [ -119.308489068999961, 50.262259902000068 ], [ -119.308741728999948, 50.262267050000077 ], [ -119.31026849099996, 50.262310225000078 ], [ -119.31113530599994, 50.262289728000027 ], [ -119.311204230999962, 50.262294983000096 ], [ -119.311695756999967, 50.262332455000013 ], [ -119.311904349999978, 50.262348339000063 ], [ -119.312160459, 50.262367870000098 ], [ -119.31224171199996, 50.262374060000091 ], [ -119.312410751999906, 50.262356472000135 ], [ -119.31253221899999, 50.262343861000026 ], [ -119.312771389999966, 50.262279831000079 ], [ -119.313003738999925, 50.262137751000054 ], [ -119.313584748999943, 50.261658447000066 ], [ -119.314463884999924, 50.260649249000103 ], [ -119.314672987999955, 50.260445268000062 ], [ -119.3149265499999, 50.260321635000068 ], [ -119.315355738000022, 50.260230313000122 ], [ -119.315620517999889, 50.260235763000018 ], [ -119.316842005999916, 50.260260914000092 ], [ -119.31810651899994, 50.260113726000093 ], [ -119.319576371999958, 50.259927485000077 ], [ -119.320594157999949, 50.259798499000063 ], [ -119.320761562, 50.259777284000073 ], [ -119.321505530999943, 50.259683023000022 ], [ -119.322659837999936, 50.259536714000021 ], [ -119.323371641999955, 50.259446478 ], [ -119.323743893999946, 50.259399287000065 ], [ -119.324222208999927, 50.259394902000032 ], [ -119.325345401999968, 50.259432204000106 ], [ -119.32567803099991, 50.259412703000066 ], [ -119.32590267199997, 50.259366902000124 ], [ -119.325968525999954, 50.259353505000085 ], [ -119.326268311999954, 50.259231808000081 ], [ -119.326931026999887, 50.258703208000092 ], [ -119.327074522999922, 50.258624116000064 ], [ -119.32727181499996, 50.258515409000033 ], [ -119.32740338, 50.258442907000116 ], [ -119.327700275999959, 50.258216300000058 ], [ -119.327706391999982, 50.258208158000024 ], [ -119.328241217999945, 50.25749159300009 ], [ -119.328410993999952, 50.257361999000118 ], [ -119.328651607000026, 50.257259189000138 ], [ -119.329284776999941, 50.257198204000112 ], [ -119.329826226999913, 50.25718590400006 ], [ -119.330184713, 50.257210288000067 ], [ -119.330374150999944, 50.257258153000116 ], [ -119.330452290999958, 50.257277891000129 ], [ -119.331185101999921, 50.257592197000044 ], [ -119.331066599999957, 50.257755694000146 ], [ -119.330954707999979, 50.258457602000099 ], [ -119.330950485999921, 50.259039590000107 ], [ -119.331074880999964, 50.259247495000096 ], [ -119.331356000999989, 50.259557885000035 ], [ -119.332260406999978, 50.259205499000089 ], [ -119.333042209999959, 50.258977495000153 ], [ -119.334391499999981, 50.258856912000098 ], [ -119.334683307999953, 50.258778883000048 ], [ -119.334971190999937, 50.258641997000076 ], [ -119.335879491999918, 50.258052394000075 ], [ -119.336078394999944, 50.257898288000078 ], [ -119.336136594999928, 50.257818692000072 ], [ -119.336187397999979, 50.257655692000071 ], [ -119.33616880199996, 50.257380184000027 ], [ -119.336007297999956, 50.257070691000152 ], [ -119.335812904999926, 50.256812489000033 ], [ -119.337028029999914, 50.256435567000018 ], [ -119.339706770999982, 50.255604561000105 ], [ -119.339794605999913, 50.255577297000052 ], [ -119.340232698999955, 50.254965600000084 ], [ -119.340416987999944, 50.254843108000081 ], [ -119.340530183999988, 50.254808460000078 ], [ -119.340604316999929, 50.254785812000094 ], [ -119.34109749699995, 50.254699217000095 ], [ -119.342221135000031, 50.254435799000092 ], [ -119.344112821999886, 50.254380404000131 ], [ -119.344741871999958, 50.254384998000113 ], [ -119.34541335199998, 50.254321745000077 ], [ -119.3470074499999, 50.254067784 ], [ -119.34935100599999, 50.253791137000071 ], [ -119.349638305999946, 50.253757234000034 ], [ -119.35109969799997, 50.253744340000047 ], [ -119.351134018999957, 50.25368233100005 ], [ -119.351231405999926, 50.25368820900011 ], [ -119.351223374999947, 50.25374284 ], [ -119.350978048999963, 50.255411610000053 ], [ -119.35245594, 50.255381690000057 ], [ -119.352469221999939, 50.255651272000144 ], [ -119.352889703999978, 50.255642757 ], [ -119.352929557999957, 50.256451502000147 ], [ -119.353350048999971, 50.256442984000024 ], [ -119.353443064999979, 50.25833005700008 ], [ -119.351761038999911, 50.25836412200006 ], [ -119.351774318, 50.258633703 ], [ -119.350933298999962, 50.258650727000038 ], [ -119.351026227999967, 50.26053780200008 ], [ -119.350605701999953, 50.260546312000081 ], [ -119.350618975999978, 50.26081589400011 ], [ -119.348936856999941, 50.260849920000055 ], [ -119.348923594000013, 50.260580337000093 ], [ -119.347241481999944, 50.260614338000089 ], [ -119.347254735999982, 50.260883921000129 ], [ -119.345152081999942, 50.26092638800008 ], [ -119.345112351999944, 50.260117638000033 ], [ -119.345532875999965, 50.260109148000097 ], [ -119.345519630999917, 50.259839565000092 ], [ -119.34594015299993, 50.25983107400004 ], [ -119.345926906999978, 50.259561491000078 ], [ -119.34550638799999, 50.259569982000087 ], [ -119.345466653999921, 50.258761233000044 ], [ -119.345887165999926, 50.258752742000084 ], [ -119.345879803999978, 50.258602887000087 ], [ -119.345035441, 50.258551883000059 ], [ -119.345046141999944, 50.258769723000078 ], [ -119.343793927999954, 50.258794994 ], [ -119.343783006999942, 50.258869191000102 ], [ -119.340717105999971, 50.258683905000055 ], [ -119.340388774999923, 50.26091346400009 ], [ -119.340139071999914, 50.26089836900011 ], [ -119.340129866999973, 50.260960869000101 ], [ -119.339898644999934, 50.260946892000078 ], [ -119.339891858999948, 50.260992975000136 ], [ -119.339606062999977, 50.260975698000074 ], [ -119.33958615099999, 50.261110882000082 ], [ -119.339291857, 50.261093090000017 ], [ -119.339287939999949, 50.261119689000026 ], [ -119.339013703999953, 50.261103109000068 ], [ -119.339000330999966, 50.261193895000076 ], [ -119.33801572199998, 50.261134361000103 ], [ -119.337967700999954, 50.261460318000097 ], [ -119.33738231699999, 50.261424919000056 ], [ -119.337350784999941, 50.261638931000064 ], [ -119.337097532999934, 50.26162361600008 ], [ -119.337068782999964, 50.261818737000119 ], [ -119.336750789999911, 50.26179950500007 ], [ -119.336736772, 50.261894645000083 ], [ -119.336500854999954, 50.261880377000104 ], [ -119.33649643699999, 50.261910356000023 ], [ -119.337201538999977, 50.261896171000053 ], [ -119.337241137999982, 50.262704926000069 ], [ -119.335979486999946, 50.262730303000104 ], [ -119.335955416999965, 50.262238418000081 ], [ -119.335761473999938, 50.262226686000069 ], [ -119.335743953999938, 50.262345566000107 ], [ -119.335464164999962, 50.26232864200005 ], [ -119.33544604799998, 50.262451573000071 ], [ -119.335184683999955, 50.262435762000102 ], [ -119.33516894099999, 50.262542579000097 ], [ -119.334939020999983, 50.26252867000008 ], [ -119.334923335, 50.262635085000085 ], [ -119.334687323999972, 50.262620807000154 ], [ -119.334669829999939, 50.262739490000079 ], [ -119.334390045999939, 50.262722563000082 ], [ -119.334371923999981, 50.262845497000065 ], [ -119.331502007999958, 50.262671827000084 ], [ -119.330012672999956, 50.262581672000053 ], [ -119.329732614999955, 50.264480199000118 ], [ -119.328288352999948, 50.26439275300006 ], [ -119.32820587399999, 50.264951732000043 ], [ -119.322619097999947, 50.264613288000056 ], [ -119.32265658099999, 50.264359470000095 ], [ -119.322231003999917, 50.264333677000145 ], [ -119.322273249999938, 50.264047620000113 ], [ -119.321853310999941, 50.264022167000121 ], [ -119.321939920999981, 50.263435740000041 ], [ -119.321846350999962, 50.263430068000091 ], [ -119.321881086999937, 50.263194879000089 ], [ -119.321154744999916, 50.263150850000038 ], [ -119.32120575899998, 50.262805474000047 ], [ -119.320767008999908, 50.262778875000073 ], [ -119.320460233999967, 50.26485561000009 ], [ -119.320048085999986, 50.264830623000037 ], [ -119.320033918999968, 50.264926519 ], [ -119.319771911999979, 50.264910634000096 ], [ -119.319715726999988, 50.265290926000041 ], [ -119.319238499999983, 50.265261991000031 ], [ -119.319195717999946, 50.265551537000064 ], [ -119.318992313999942, 50.265539203000124 ], [ -119.318965917999918, 50.265717841000011 ], [ -119.31871950699994, 50.265702900000107 ], [ -119.31868651799999, 50.265926148000077 ], [ -119.318426771999924, 50.265910397 ], [ -119.318399113999945, 50.266097554000076 ], [ -119.312812271999974, 50.26575861300006 ], [ -119.31295602699997, 50.264786616000059 ], [ -119.312804437999958, 50.264777416000115 ], [ -119.312876335999988, 50.264291269000047 ], [ -119.312816169999962, 50.264287617000051 ], [ -119.312866477999933, 50.263947455000071 ], [ -119.312234581999974, 50.263909100000134 ], [ -119.311917232000013, 50.266054602000125 ], [ -119.31184430499998, 50.266050176000071 ], [ -119.311782348999927, 50.266469005000076 ], [ -119.30795029899997, 50.266236325000087 ], [ -119.307801521999949, 50.267241493000064 ], [ -119.306716256, 50.267175572000021 ], [ -119.306396378000031, 50.269336220000092 ], [ -119.305640313999973, 50.26929028900004 ], [ -119.305616749999956, 50.269449438000123 ], [ -119.300029588, 50.269109853000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161546333", "BldgCostT": "109178333", "sL_LossRatio": "0.99882868174078", "sL_AssetLoss": "13113.43", "sL_BldgLoss": "13098.07", "sL_StrLoss": "13092.5", "sL_NStrLoss": "5.57", "sL_ContLoss": "15.36", "geom_point": "0101000020E6100000EFD59EC4EDD75DC01F7973FA721F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.353434832999966, 50.253751063000031 ], [ -119.353515604999984, 50.253201418000096 ], [ -119.35319061199999, 50.253208002000079 ], [ -119.353203898999965, 50.253477583000084 ], [ -119.351661810999971, 50.253508814000092 ], [ -119.351225159999927, 50.25351765300011 ], [ -119.351634089999976, 50.252778762000041 ], [ -119.350767073999961, 50.251957621000038 ], [ -119.350729494999911, 50.251143158000026 ], [ -119.350683507999932, 50.250146126000082 ], [ -119.350078606999944, 50.25016840600005 ], [ -119.349644686999937, 50.250101567000129 ], [ -119.349208941999947, 50.2499705560001 ], [ -119.348695542999948, 50.249687683000026 ], [ -119.348150145999952, 50.249325235000121 ], [ -119.346943605999968, 50.248353237000096 ], [ -119.347304552999944, 50.248360612000084 ], [ -119.347701183999945, 50.248338537000095 ], [ -119.34779453899999, 50.248333329000019 ], [ -119.347922014999938, 50.248232722000125 ], [ -119.348541776999951, 50.248291133000166 ], [ -119.349098698999924, 50.248852695000096 ], [ -119.349970991999982, 50.249436613000029 ], [ -119.350916319999925, 50.249849599000065 ], [ -119.351723599999943, 50.249715686000094 ], [ -119.352132807999936, 50.249473587000111 ], [ -119.353128894999955, 50.249490713000043 ], [ -119.353547499999976, 50.249455100000063 ], [ -119.354559804999937, 50.249181692000072 ], [ -119.355068820999989, 50.249279899000058 ], [ -119.35550391699995, 50.249271399000058 ], [ -119.356179103999978, 50.249042089000071 ], [ -119.357289889999905, 50.248821310000075 ], [ -119.35786647899999, 50.248539300000061 ], [ -119.358841086999959, 50.247818694000074 ], [ -119.35910240799997, 50.247731785000092 ], [ -119.360560796999934, 50.247414206000016 ], [ -119.361228104999952, 50.247597988000031 ], [ -119.361579596999931, 50.247609300000079 ], [ -119.362051118999915, 50.247213396000078 ], [ -119.362796600999943, 50.246964190000057 ], [ -119.363739589999952, 50.246458593000106 ], [ -119.364843589999964, 50.246391612000075 ], [ -119.366517193999968, 50.245907412000079 ], [ -119.367155112, 50.245759309000057 ], [ -119.368121090999949, 50.24571368800013 ], [ -119.369570319, 50.245836199000081 ], [ -119.371478483999937, 50.245833400000016 ], [ -119.372368378999965, 50.245662519000064 ], [ -119.372576287999948, 50.245622608000069 ], [ -119.373530387999949, 50.24562109300004 ], [ -119.373935192999966, 50.245543276000049 ], [ -119.373973889999974, 50.24553582900004 ], [ -119.37469763699994, 50.245396681000031 ], [ -119.376100821999955, 50.245126905000163 ], [ -119.376532717999964, 50.245020166000131 ], [ -119.377269801999915, 50.244838050000098 ], [ -119.37770734, 50.244729915000036 ], [ -119.377768752999913, 50.244714746000113 ], [ -119.377812562999964, 50.244703936000093 ], [ -119.378596091999938, 50.244510302 ], [ -119.379365813999982, 50.244232491000048 ], [ -119.380004306999979, 50.243815202000043 ], [ -119.380890907, 50.243435079000051 ], [ -119.38128318, 50.243266892000115 ], [ -119.382406708999937, 50.243029098000129 ], [ -119.38289144599996, 50.242801388000075 ], [ -119.383310096999963, 50.242604699000054 ], [ -119.384926278999956, 50.242104800000078 ], [ -119.385417277999949, 50.24178215700011 ], [ -119.386298204999903, 50.241203288000087 ], [ -119.387120716999959, 50.240529601000119 ], [ -119.387580520999947, 50.240077096000064 ], [ -119.387885969999928, 50.239776445000068 ], [ -119.388225111999958, 50.239442704000069 ], [ -119.388230479999947, 50.239437419000069 ], [ -119.388603981999921, 50.23906979000008 ], [ -119.389249397999919, 50.238759297000044 ], [ -119.389815388999963, 50.23859409900011 ], [ -119.390763192999941, 50.238484399000043 ], [ -119.391770080999947, 50.238158293 ], [ -119.392173493999906, 50.237817906000039 ], [ -119.393580908, 50.237077305000099 ], [ -119.395364192999949, 50.235718602000134 ], [ -119.3959870899999, 50.234428305000073 ], [ -119.39659749399999, 50.233444209000019 ], [ -119.39809029299991, 50.231876113000077 ], [ -119.398944519999972, 50.23160549800005 ], [ -119.399733996999913, 50.231131203000103 ], [ -119.399856753000023, 50.231001844000062 ], [ -119.400640015999983, 50.231048795000142 ], [ -119.400533421999938, 50.231779740000079 ], [ -119.400117986999987, 50.234628261000111 ], [ -119.399539798999982, 50.234593604000082 ], [ -119.399415902000015, 50.235442977000091 ], [ -119.399360353999924, 50.235439647000092 ], [ -119.399310416999924, 50.235781978 ], [ -119.39918877, 50.235774686000099 ], [ -119.39916222, 50.235956681000076 ], [ -119.398863007, 50.235938743000041 ], [ -119.398805726, 50.236331388000011 ], [ -119.398804715, 50.23633132700008 ], [ -119.398767738999979, 50.236584787000062 ], [ -119.398647727, 50.236577593000092 ], [ -119.398609445999966, 50.236839991000053 ], [ -119.398488574999988, 50.2368327450001 ], [ -119.398456150999948, 50.237054993000086 ], [ -119.398318911999951, 50.237046766000105 ], [ -119.398269461999945, 50.237385698000061 ], [ -119.398167988999916, 50.237379614000112 ], [ -119.398132069, 50.237625800000103 ], [ -119.397932127000018, 50.237613813000031 ], [ -119.397882575000011, 50.237953405000042 ], [ -119.397821588999932, 50.237949749000094 ], [ -119.397809776999935, 50.23803070600011 ], [ -119.397301315999954, 50.238000220000089 ], [ -119.39721618199998, 50.23858361800005 ], [ -119.396851409999925, 50.238561745000055 ], [ -119.396814578999937, 50.238814127000083 ], [ -119.396598860999973, 50.238801192000047 ], [ -119.396572176999882, 50.238984032000111 ], [ -119.396381352999938, 50.238972589000106 ], [ -119.396355876999962, 50.239147136000113 ], [ -119.39614059299997, 50.239134226000033 ], [ -119.396110976999978, 50.23933714200011 ], [ -119.395896126999958, 50.239324257000042 ], [ -119.39586357799999, 50.23954724700009 ], [ -119.395504754999976, 50.239525728000061 ], [ -119.395469674, 50.239766055000125 ], [ -119.394849731999912, 50.239728873000018 ], [ -119.394799060999958, 50.240075971000032 ], [ -119.394303257999923, 50.240046231000015 ], [ -119.394261552999964, 50.24033188100001 ], [ -119.393643926999971, 50.240294831000092 ], [ -119.393621431999961, 50.240448896000046 ], [ -119.392905768, 50.240405960000075 ], [ -119.392866711999929, 50.240673412000078 ], [ -119.391451741999987, 50.24058850800003 ], [ -119.391390666999953, 50.241006647000077 ], [ -119.391042406999958, 50.240985747000089 ], [ -119.390976771999945, 50.241435054000085 ], [ -119.390713721999987, 50.24141926700004 ], [ -119.390666976, 50.241739261000113 ], [ -119.39054536699993, 50.241731963000028 ], [ -119.39051877799993, 50.241913964000076 ], [ -119.390299487999982, 50.241900802000011 ], [ -119.390253383999962, 50.242216369000083 ], [ -119.389060723999989, 50.242144780000082 ], [ -119.388890586999935, 50.243309097000072 ], [ -119.388682133999936, 50.243296584000049 ], [ -119.388648388999982, 50.243527503000038 ], [ -119.38838884099999, 50.243511921000049 ], [ -119.388361485999937, 50.243699108000087 ], [ -119.387972120999947, 50.243675732000071 ], [ -119.387931082999927, 50.243956518000111 ], [ -119.38413487199989, 50.243728534000084 ], [ -119.383881391999964, 50.245461807000041 ], [ -119.383771721999963, 50.245455219000107 ], [ -119.383659822999945, 50.246220310000055 ], [ -119.383141893999934, 50.246189195000056 ], [ -119.383078320000024, 50.24662382200006 ], [ -119.382805418, 50.246607426000018 ], [ -119.382783315999987, 50.246758529000026 ], [ -119.38252894399993, 50.246743245000083 ], [ -119.382509209999967, 50.246878135000053 ], [ -119.382190538999936, 50.246858988000064 ], [ -119.38218249799999, 50.246913942000042 ], [ -119.381928027999976, 50.246898652000084 ], [ -119.381908293000023, 50.247033548000068 ], [ -119.381608925999942, 50.247015559000083 ], [ -119.381597382999956, 50.247094455000109 ], [ -119.38129914699999, 50.247076533000033 ], [ -119.381278775999974, 50.247215762000074 ], [ -119.381142363999942, 50.247207565000032 ], [ -119.380923063999944, 50.247194386 ], [ -119.380910262999976, 50.247281870000059 ], [ -119.380635799999979, 50.247265375000062 ], [ -119.380625453999968, 50.24733607600011 ], [ -119.379473373999986, 50.247266830000108 ], [ -119.379459006, 50.24736500300007 ], [ -119.37864500099991, 50.247316070000089 ], [ -119.378635171999974, 50.247383222000096 ], [ -119.378236493999964, 50.247359253000049 ], [ -119.378217159999963, 50.247491332000109 ], [ -119.378126141999957, 50.247485860000076 ], [ -119.377970607999913, 50.248548335000088 ], [ -119.376380341999948, 50.24845271100002 ], [ -119.376359540999914, 50.248594771000086 ], [ -119.37596724499997, 50.248571179000059 ], [ -119.375946728999963, 50.248711280000023 ], [ -119.375472836000014, 50.248682779000049 ], [ -119.375452814999974, 50.24881949100007 ], [ -119.3749713099999, 50.248790530000093 ], [ -119.374961295999952, 50.248858902000052 ], [ -119.374429464999977, 50.248826911000016 ], [ -119.374419973999963, 50.248891715000084 ], [ -119.374214160999927, 50.248879334000065 ], [ -119.37420566699997, 50.248937319000049 ], [ -119.373241337999957, 50.248879304000049 ], [ -119.373230125999939, 50.248955842000036 ], [ -119.37286714599999, 50.24893400200007 ], [ -119.372861411999935, 50.248973150000047 ], [ -119.372485513, 50.248950532000023 ], [ -119.372482093999949, 50.24897385900006 ], [ -119.372039129999933, 50.248947205000086 ], [ -119.372022078999947, 50.249063569000072 ], [ -119.371327856999955, 50.249021791000104 ], [ -119.371313453, 50.249120085000101 ], [ -119.370956963999987, 50.249098630000077 ], [ -119.370950037999961, 50.249145893000041 ], [ -119.370694004, 50.249130484000055 ], [ -119.370686028999941, 50.249184899000085 ], [ -119.367568464000016, 50.248997214000084 ], [ -119.367256788999967, 50.251122774000109 ], [ -119.366457692999958, 50.251074652000071 ], [ -119.366430760999904, 50.251258291000113 ], [ -119.365400888999929, 50.251196263000061 ], [ -119.365364224999908, 50.25144621600014 ], [ -119.364778203999961, 50.251410916000054 ], [ -119.364752705999976, 50.251584729000058 ], [ -119.363784324999969, 50.251526391000063 ], [ -119.363756571999915, 50.2517155520001 ], [ -119.36354033, 50.251702524000088 ], [ -119.363516467999929, 50.251865157000076 ], [ -119.361741933999895, 50.25175822700001 ], [ -119.361737386999977, 50.251789199000086 ], [ -119.361407573999969, 50.251769321000054 ], [ -119.361343995, 50.252202505000064 ], [ -119.361202804999948, 50.252193996000088 ], [ -119.360912184999933, 50.254173911000066 ], [ -119.359024584999972, 50.254060128000098 ], [ -119.359020498999939, 50.254087955000031 ], [ -119.353434832999966, 50.253751063000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "0.999875001021626", "sL_AssetLoss": "62.40051", "sL_BldgLoss": "62.39271", "sL_StrLoss": "62.30431", "sL_NStrLoss": "0.0884", "sL_ContLoss": "0.0078", "geom_point": "0101000020E6100000EDFA3F662BD65DC089DEB9628C1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.344511699999913, 50.238295105000056 ], [ -119.348537923999956, 50.238359037000059 ], [ -119.346439998999955, 50.239206896000013 ], [ -119.34640930599997, 50.239219298000101 ], [ -119.346130712999951, 50.239315639000054 ], [ -119.346030629999973, 50.239252536 ], [ -119.345922149999964, 50.239184164000058 ], [ -119.345813637, 50.239115745000085 ], [ -119.345596676999961, 50.238979001000104 ], [ -119.345488166999942, 50.238910582000102 ], [ -119.345379688999984, 50.238842208000079 ], [ -119.345271192999988, 50.238773812000041 ], [ -119.345162662999911, 50.238705428000124 ], [ -119.34505422, 50.23863704400005 ], [ -119.344945709999976, 50.238568623000035 ], [ -119.34472872, 50.238431888000036 ], [ -119.344670376999943, 50.238395037000032 ], [ -119.344620248999931, 50.238363457000119 ], [ -119.344511699999913, 50.238295105000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20407500", "BldgCostT": "12600000", "sL_LossRatio": "1", "sL_AssetLoss": "773.2", "sL_BldgLoss": "773.2", "sL_StrLoss": "773.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000439A04B124D35DC0843E8145B8224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.296697637999955, 50.272913253000056 ], [ -119.297034918999913, 50.269458246000077 ], [ -119.297238871999966, 50.26951945800009 ], [ -119.297388582999957, 50.269482577000048 ], [ -119.297387175999972, 50.269344122000092 ], [ -119.301605151999922, 50.269600616000083 ], [ -119.301074861999965, 50.273179433000053 ], [ -119.296697637999955, 50.272913253000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84879500", "BldgCostT": "54590000", "sL_LossRatio": "1", "sL_AssetLoss": "5164.4", "sL_BldgLoss": "5164.4", "sL_StrLoss": "5164.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004F2676868CDA5DC091476041D41F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.411675385999956, 50.252853270000109 ], [ -119.411673607999973, 50.252818053000141 ], [ -119.411253168999934, 50.252826782000049 ], [ -119.411239555999927, 50.252557212000077 ], [ -119.410819117999964, 50.252565938000032 ], [ -119.410805508999943, 50.252296368000117 ], [ -119.410385071999897, 50.252305094000036 ], [ -119.410357857999912, 50.251765951000081 ], [ -119.409937427999978, 50.251774676000068 ], [ -119.409842201999965, 50.249887678000093 ], [ -119.410262614999965, 50.249878955000057 ], [ -119.410249009, 50.249609384000109 ], [ -119.41066942099998, 50.249600660000041 ], [ -119.410655814999927, 50.249331089000108 ], [ -119.411076222999938, 50.249322363000083 ], [ -119.411035394999956, 50.24851365100011 ], [ -119.409774186999968, 50.248539823000065 ], [ -119.40976058499993, 50.248270251000051 ], [ -119.409340183999959, 50.248278973000097 ], [ -119.409299387, 50.2474702600001 ], [ -119.409719781999982, 50.247461539000064 ], [ -119.409706179999944, 50.24719196700007 ], [ -119.41012657099999, 50.247183245000059 ], [ -119.41008576199999, 50.246374532000104 ], [ -119.409665377999914, 50.246383254000037 ], [ -119.409610977999961, 50.245304969000131 ], [ -119.409190602999971, 50.245313689000078 ], [ -119.409149811999981, 50.244504975000048 ], [ -119.409990546999978, 50.244487534000086 ], [ -119.40994974399996, 50.24367882000012 ], [ -119.409529383999939, 50.243687541000064 ], [ -119.409461394999965, 50.242339684000044 ], [ -119.409881742999985, 50.242330963000079 ], [ -119.409868143, 50.242061392000068 ], [ -119.410288487999935, 50.242052669000074 ], [ -119.410274888999979, 50.241783097000059 ], [ -119.41195626, 50.241748194000081 ], [ -119.411997093999958, 50.242556907000065 ], [ -119.412417442999967, 50.242548177000067 ], [ -119.412458286999978, 50.243356889000026 ], [ -119.412037928999936, 50.243365619000073 ], [ -119.412051541999944, 50.24363519100006 ], [ -119.411631183999987, 50.243643920000068 ], [ -119.411658402999961, 50.244183062000126 ], [ -119.412919495, 50.244156870000069 ], [ -119.412960348999974, 50.244965582000098 ], [ -119.412539978999959, 50.244974314000039 ], [ -119.412553593999974, 50.245243885000079 ], [ -119.413814712999979, 50.245217684000096 ], [ -119.413828335999952, 50.245487254000125 ], [ -119.414248710999956, 50.245478517000087 ], [ -119.41426233599999, 50.24574808800002 ], [ -119.41468271299999, 50.245739348000086 ], [ -119.414696341999957, 50.24600891800003 ], [ -119.415116720999919, 50.246000179000127 ], [ -119.415130352999924, 50.246269749000056 ], [ -119.418504335999941, 50.24619954500006 ], [ -119.41875079, 50.246370292000059 ], [ -119.418925275999982, 50.246418098000056 ], [ -119.418927427999947, 50.24646058800009 ], [ -119.419069550999936, 50.246457628000016 ], [ -119.420185588999971, 50.246763397000095 ], [ -119.420205860999943, 50.246775499000115 ], [ -119.420215891999959, 50.246973455000095 ], [ -119.420526603999974, 50.24696698000006 ], [ -119.420679418999953, 50.247058208000041 ], [ -119.420973307999986, 50.247871410000094 ], [ -119.420772696999961, 50.248648990000099 ], [ -119.421406205999929, 50.249238598 ], [ -119.421618490999947, 50.249736686000084 ], [ -119.421634167999983, 50.250045842000091 ], [ -119.421599000999933, 50.250816694000079 ], [ -119.421254916999885, 50.251219693000039 ], [ -119.42129868899994, 50.251538401000126 ], [ -119.421288997999952, 50.251538603000029 ], [ -119.421309516999941, 50.251943275000052 ], [ -119.421264554999979, 50.252078819000111 ], [ -119.420895903999977, 50.252086504000069 ], [ -119.420901880999907, 50.252204377000076 ], [ -119.419583085999989, 50.252586998000119 ], [ -119.41904808299999, 50.252813392000085 ], [ -119.418987943, 50.252853713000086 ], [ -119.417988627999975, 50.252853681000055 ], [ -119.417966534999962, 50.252417373000121 ], [ -119.417125664999944, 50.25243487400008 ], [ -119.417139309999982, 50.252704444000102 ], [ -119.416298434999959, 50.252721939 ], [ -119.416305096999949, 50.252853607000105 ], [ -119.411675385999956, 50.252853270000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47465834", "BldgCostT": "30733334", "sL_LossRatio": "1", "sL_AssetLoss": "3918", "sL_BldgLoss": "3918", "sL_StrLoss": "3918", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000295C4DA6E3D95DC0B4D5DD23B81D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.400329198999913, 50.236455807000134 ], [ -119.40026832199996, 50.235243987000032 ], [ -119.401108897999947, 50.235226613000066 ], [ -119.401054712999922, 50.234148318000052 ], [ -119.401895269999955, 50.234130938000142 ], [ -119.401881719999963, 50.233861365000067 ], [ -119.402301996999896, 50.233852672000054 ], [ -119.402234234, 50.232504806000087 ], [ -119.402654498999965, 50.232496112000014 ], [ -119.4026273899999, 50.231956966000041 ], [ -119.403047649999948, 50.231948271000086 ], [ -119.403034092999974, 50.231678697000056 ], [ -119.403903071999963, 50.231660715 ], [ -119.401376742999943, 50.231509335000069 ], [ -119.40141474899994, 50.231248687000068 ], [ -119.401469842999916, 50.230870839000019 ], [ -119.400061187999924, 50.230786405000039 ], [ -119.401119218999966, 50.229671398000029 ], [ -119.401458310999942, 50.229430706000102 ], [ -119.40171488499999, 50.22936931200006 ], [ -119.402690376999956, 50.229135893000041 ], [ -119.402971499999978, 50.228859589000066 ], [ -119.403417831999931, 50.228660434000091 ], [ -119.403520307999912, 50.228614702000115 ], [ -119.403591342999974, 50.228510265000082 ], [ -119.403701196999975, 50.228348809000103 ], [ -119.403781001999945, 50.228231510000079 ], [ -119.404405896999918, 50.227814302000105 ], [ -119.404612694999969, 50.227728797000076 ], [ -119.405004110999926, 50.227711697000096 ], [ -119.406416120999936, 50.227925299000056 ], [ -119.407481415999925, 50.22819169500017 ], [ -119.408155040999986, 50.22823092000003 ], [ -119.407972010999927, 50.22948751400007 ], [ -119.40799969699999, 50.230036983000069 ], [ -119.408022822999968, 50.230495955000052 ], [ -119.407824519999977, 50.230500065000108 ], [ -119.407722823999947, 50.231198197 ], [ -119.407059868999923, 50.231158500000042 ], [ -119.40703546899999, 50.231325983000055 ], [ -119.40722307099999, 50.231322095000067 ], [ -119.407290970999966, 50.232669956000066 ], [ -119.407711234999951, 50.232661245000024 ], [ -119.407792733999912, 50.234278678000081 ], [ -119.407372455999962, 50.234287391000066 ], [ -119.407399619999978, 50.234826535000089 ], [ -119.406979337999957, 50.234835246000046 ], [ -119.407047237999947, 50.236183107000059 ], [ -119.405786351999936, 50.236209232000057 ], [ -119.405772778999932, 50.23593965900006 ], [ -119.405352486999931, 50.235948365000063 ], [ -119.40533891499993, 50.235678792000087 ], [ -119.40407804099999, 50.235704898000073 ], [ -119.404091603999973, 50.235974471000091 ], [ -119.403251014999967, 50.235991868000099 ], [ -119.403264574999952, 50.236261441000075 ], [ -119.402844277, 50.236270136000037 ], [ -119.402857834999907, 50.236539710000045 ], [ -119.401430561999945, 50.236569229000082 ], [ -119.400336033999963, 50.236591855000079 ], [ -119.400329198999913, 50.236455807000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "234.8", "sL_BldgLoss": "234.8", "sL_StrLoss": "234.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E43EA4A553D25DC097B0B28DAA244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.285983235999964, 50.28660454400007 ], [ -119.285807516999952, 50.284277975000101 ], [ -119.286205625999912, 50.28424451500004 ], [ -119.2864643599999, 50.283904355000139 ], [ -119.286600852999982, 50.283644649000095 ], [ -119.286999822999917, 50.283668948000091 ], [ -119.286741596999931, 50.285407345000088 ], [ -119.287116037999979, 50.285430149000028 ], [ -119.286584418999951, 50.289008824000135 ], [ -119.285481616999931, 50.288941659000045 ], [ -119.285506097999985, 50.288906870000069 ], [ -119.285781434999976, 50.287912013000131 ], [ -119.285804524999918, 50.286930949000059 ], [ -119.285972755999978, 50.286614963000048 ], [ -119.285983235999964, 50.28660454400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16670833", "BldgCostT": "11233333", "sL_LossRatio": "1", "sL_AssetLoss": "1280.8", "sL_BldgLoss": "1280.8", "sL_StrLoss": "1280.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD0C13F434D45DC08EF7F422A4234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.313202557999944, 50.276487639000074 ], [ -119.318790724999943, 50.276826555000056 ], [ -119.318261707, 50.280405421000061 ], [ -119.312673100999959, 50.280066480000102 ], [ -119.313202557999944, 50.276487639000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "140338251", "BldgCostT": "93815001", "sL_LossRatio": "1", "sL_AssetLoss": "10065.9", "sL_BldgLoss": "10065.9", "sL_StrLoss": "10065.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4F6214EABD35DC0DF4F74FA4D214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.303703905999924, 50.262796398000127 ], [ -119.303310817, 50.262762288000026 ], [ -119.303125296999966, 50.262751113000014 ], [ -119.301595693999957, 50.262658948000102 ], [ -119.301563196999894, 50.261984361000096 ], [ -119.301432225, 50.261270446000026 ], [ -119.301614705999967, 50.261179564000059 ], [ -119.302302799999936, 50.261167149000045 ], [ -119.302597617999965, 50.261097924000026 ], [ -119.30280652099998, 50.261048845000083 ], [ -119.303160314999928, 50.26082937400006 ], [ -119.303598610999984, 50.260409966000054 ], [ -119.303894319, 50.260230272000094 ], [ -119.304677312999971, 50.259991990000074 ], [ -119.30550129699999, 50.259741180000105 ], [ -119.305912104999933, 50.259678593000075 ], [ -119.306868392999888, 50.259624697000049 ], [ -119.306830797999936, 50.259050096000074 ], [ -119.306906113999943, 50.258770305000027 ], [ -119.307079712999908, 50.258558702000059 ], [ -119.307300089999927, 50.258392498000077 ], [ -119.307669912999984, 50.258179291000012 ], [ -119.308606791000017, 50.257636789000074 ], [ -119.308999808999928, 50.257437695000085 ], [ -119.308723684999933, 50.25716091200011 ], [ -119.308141484999922, 50.256753604000082 ], [ -119.308600461999944, 50.256413164000136 ], [ -119.3092664549999, 50.255920964000019 ], [ -119.309634960999958, 50.25566801500004 ], [ -119.310111454999969, 50.255390009000074 ], [ -119.31029022599995, 50.25522933900006 ], [ -119.310492215999915, 50.255342281000019 ], [ -119.310567406999922, 50.25538429300012 ], [ -119.310560921999965, 50.255742301000033 ], [ -119.310555033999918, 50.256134653000082 ], [ -119.310625870999971, 50.256385716000125 ], [ -119.310749157999979, 50.256822614000086 ], [ -119.310794505999979, 50.257944796000054 ], [ -119.310861811999942, 50.2583469960001 ], [ -119.310926108999979, 50.258531495000064 ], [ -119.311205007999931, 50.259237203000112 ], [ -119.311219797999939, 50.259375289000019 ], [ -119.311159101999948, 50.259642508000042 ], [ -119.310866410999949, 50.260345096000094 ], [ -119.310615411999919, 50.260755987000039 ], [ -119.310311282999976, 50.261192501000039 ], [ -119.310253712999923, 50.26141021300004 ], [ -119.31026849099996, 50.262310225000078 ], [ -119.308741728999948, 50.262267050000077 ], [ -119.308489068999961, 50.262259902000068 ], [ -119.308127911999918, 50.262301194000059 ], [ -119.30706891599999, 50.262601593000106 ], [ -119.305896591999968, 50.262933911000069 ], [ -119.305609303, 50.262961606000076 ], [ -119.305527297999959, 50.262954493000024 ], [ -119.304618972999918, 50.26287573300003 ], [ -119.303703905999924, 50.262796398000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "284303584", "BldgCostT": "175053334", "sL_LossRatio": "0.998068367688878", "sL_AssetLoss": "14055.47", "sL_BldgLoss": "14028.32", "sL_StrLoss": "14018.5", "sL_NStrLoss": "9.82", "sL_ContLoss": "27.15", "geom_point": "0101000020E610000022C6643754D45DC04114FED2C3204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.31026849099996, 50.262310225000078 ], [ -119.310253712999923, 50.26141021300004 ], [ -119.310311282999976, 50.261192501000039 ], [ -119.310615411999919, 50.260755987000039 ], [ -119.310866410999949, 50.260345096000094 ], [ -119.311159101999948, 50.259642508000042 ], [ -119.311219797999939, 50.259375289000019 ], [ -119.311205007999931, 50.259237203000112 ], [ -119.310926108999979, 50.258531495000064 ], [ -119.310861811999942, 50.2583469960001 ], [ -119.310794505999979, 50.257944796000054 ], [ -119.310749157999979, 50.256822614000086 ], [ -119.310625870999971, 50.256385716000125 ], [ -119.310555033999918, 50.256134653000082 ], [ -119.310560921999965, 50.255742301000033 ], [ -119.310567406999922, 50.25538429300012 ], [ -119.310492215999915, 50.255342281000019 ], [ -119.31029022599995, 50.25522933900006 ], [ -119.310111454999969, 50.255390009000074 ], [ -119.309634960999958, 50.25566801500004 ], [ -119.3092664549999, 50.255920964000019 ], [ -119.308600461999944, 50.256413164000136 ], [ -119.308141484999922, 50.256753604000082 ], [ -119.306589484999947, 50.257843750000042 ], [ -119.304963535999946, 50.258452714000086 ], [ -119.303716878, 50.259040489000014 ], [ -119.303366809999915, 50.259168159000069 ], [ -119.302921594999958, 50.259329777000048 ], [ -119.301818731999973, 50.259612107000052 ], [ -119.301559261999984, 50.259718206000045 ], [ -119.300747452999971, 50.260233079000045 ], [ -119.30052600099999, 50.260340600000077 ], [ -119.300129512999945, 50.260533137000024 ], [ -119.299369425999913, 50.260793902000088 ], [ -119.298506823999944, 50.261089843000029 ], [ -119.298277413, 50.261116523000048 ], [ -119.298068652999987, 50.261139812000067 ], [ -119.297629195999946, 50.261188850000025 ], [ -119.296654030999932, 50.261297612000149 ], [ -119.296644304000012, 50.260850101000059 ], [ -119.296622018999983, 50.259783511000073 ], [ -119.296601196999944, 50.258897508000075 ], [ -119.301110448999964, 50.258258202000057 ], [ -119.301672866999979, 50.258104622000104 ], [ -119.301720281999948, 50.257993759000058 ], [ -119.302869114999936, 50.257581521000091 ], [ -119.303359, 50.257317909000101 ], [ -119.303601107999924, 50.257310049000075 ], [ -119.304208110999966, 50.256988547000091 ], [ -119.305557607999972, 50.256267105000049 ], [ -119.306597895999971, 50.255711916000017 ], [ -119.307061232999942, 50.255465626000046 ], [ -119.307466870999974, 50.255247413000049 ], [ -119.307731626999939, 50.255105522000058 ], [ -119.308101580999974, 50.254909513000015 ], [ -119.308354218000019, 50.254773213000085 ], [ -119.309314636999886, 50.254261892000081 ], [ -119.31019303699999, 50.253793175000034 ], [ -119.310399153999953, 50.253683183000113 ], [ -119.310782978999939, 50.253479 ], [ -119.311672797999933, 50.25300672000008 ], [ -119.312820566999946, 50.252390290000029 ], [ -119.313272140999914, 50.252146884000076 ], [ -119.313698004999935, 50.251915441000079 ], [ -119.313951163999917, 50.251779105000061 ], [ -119.313984236999914, 50.251761301000073 ], [ -119.314346912999966, 50.251566634000028 ], [ -119.314836688999947, 50.251302961000071 ], [ -119.314891825999979, 50.251272873000069 ], [ -119.31531417799998, 50.251042114000043 ], [ -119.316524751999978, 50.250380787000076 ], [ -119.317055711999927, 50.25009070000003 ], [ -119.317756389999957, 50.249715205000044 ], [ -119.31842797599991, 50.249351530000105 ], [ -119.319191146000023, 50.248938330000094 ], [ -119.319565231999931, 50.248960706000062 ], [ -119.322709977999963, 50.249148997000063 ], [ -119.322684222999939, 50.252343780000061 ], [ -119.322681514999914, 50.252681607000028 ], [ -119.322726185999954, 50.252932593000068 ], [ -119.322872180999966, 50.253126494000099 ], [ -119.323067661999957, 50.25320465700009 ], [ -119.323079773999936, 50.25320949000006 ], [ -119.323266592, 50.253203611000103 ], [ -119.323407529999912, 50.253171192000089 ], [ -119.32391558799992, 50.253054296000059 ], [ -119.324117408999925, 50.253071088000091 ], [ -119.324733687999981, 50.253257411000014 ], [ -119.326021516999944, 50.253361614000085 ], [ -119.326834197999915, 50.253515515000046 ], [ -119.327251291999957, 50.253572424000019 ], [ -119.327646880999964, 50.253545813000102 ], [ -119.329327397999975, 50.253155619000047 ], [ -119.329645510999924, 50.252918519000055 ], [ -119.329716203, 50.252697147000099 ], [ -119.329851912999956, 50.252474240000055 ], [ -119.3301062, 50.252278329000106 ], [ -119.330356055, 50.252127313000123 ], [ -119.330412015999954, 50.252093505000076 ], [ -119.33138528099991, 50.252911784000091 ], [ -119.331632329999948, 50.253211547000028 ], [ -119.33138744899999, 50.254872385000041 ], [ -119.330834262999957, 50.254838893000034 ], [ -119.330782758999987, 50.255188156000074 ], [ -119.330964731999956, 50.255199173000044 ], [ -119.330953456999936, 50.255275649000133 ], [ -119.331914806999976, 50.255333847000045 ], [ -119.331860301999882, 50.255703520000047 ], [ -119.33237149899999, 50.255734464000113 ], [ -119.33238489199999, 50.255643625000118 ], [ -119.332443583000028, 50.255647177000064 ], [ -119.332562827999965, 50.254838328000119 ], [ -119.333043684999964, 50.254867432000019 ], [ -119.333075559999912, 50.255048784000039 ], [ -119.33331559, 50.255268779000112 ], [ -119.333576388999958, 50.255739394000038 ], [ -119.333458211999968, 50.256167659000084 ], [ -119.33408217899995, 50.257617834000051 ], [ -119.333937805999938, 50.257681203000104 ], [ -119.333665972999938, 50.257756798000045 ], [ -119.333306307999976, 50.257797389000082 ], [ -119.332195111999937, 50.257785200000072 ], [ -119.331661578999942, 50.257723994000074 ], [ -119.331185101999921, 50.257592197000044 ], [ -119.330452290999958, 50.257277891000129 ], [ -119.330374150999944, 50.257258153000116 ], [ -119.330184713, 50.257210288000067 ], [ -119.329826226999913, 50.25718590400006 ], [ -119.329284776999941, 50.257198204000112 ], [ -119.328651607000026, 50.257259189000138 ], [ -119.328410993999952, 50.257361999000118 ], [ -119.328241217999945, 50.25749159300009 ], [ -119.327706391999982, 50.258208158000024 ], [ -119.327700275999959, 50.258216300000058 ], [ -119.32740338, 50.258442907000116 ], [ -119.32727181499996, 50.258515409000033 ], [ -119.327074522999922, 50.258624116000064 ], [ -119.326931026999887, 50.258703208000092 ], [ -119.326268311999954, 50.259231808000081 ], [ -119.325968525999954, 50.259353505000085 ], [ -119.32590267199997, 50.259366902000124 ], [ -119.32567803099991, 50.259412703000066 ], [ -119.325345401999968, 50.259432204000106 ], [ -119.324222208999927, 50.259394902000032 ], [ -119.323743893999946, 50.259399287000065 ], [ -119.323371641999955, 50.259446478 ], [ -119.322659837999936, 50.259536714000021 ], [ -119.321505530999943, 50.259683023000022 ], [ -119.320761562, 50.259777284000073 ], [ -119.320594157999949, 50.259798499000063 ], [ -119.319576371999958, 50.259927485000077 ], [ -119.31810651899994, 50.260113726000093 ], [ -119.316842005999916, 50.260260914000092 ], [ -119.315620517999889, 50.260235763000018 ], [ -119.315355738000022, 50.260230313000122 ], [ -119.3149265499999, 50.260321635000068 ], [ -119.314672987999955, 50.260445268000062 ], [ -119.314463884999924, 50.260649249000103 ], [ -119.313584748999943, 50.261658447000066 ], [ -119.313003738999925, 50.262137751000054 ], [ -119.312771389999966, 50.262279831000079 ], [ -119.31253221899999, 50.262343861000026 ], [ -119.312410751999906, 50.262356472000135 ], [ -119.31224171199996, 50.262374060000091 ], [ -119.312160459, 50.262367870000098 ], [ -119.311904349999978, 50.262348339000063 ], [ -119.311695756999967, 50.262332455000013 ], [ -119.311204230999962, 50.262294983000096 ], [ -119.31113530599994, 50.262289728000027 ], [ -119.31026849099996, 50.262310225000078 ] ], [ [ -119.317332753999963, 50.258044091000066 ], [ -119.317413839999972, 50.257495363000082 ], [ -119.31638531499999, 50.257432964000046 ], [ -119.316304216999953, 50.257981692000058 ], [ -119.317332753999963, 50.258044091000066 ] ], [ [ -119.325048973, 50.257097899000037 ], [ -119.325102978999951, 50.256731999000131 ], [ -119.320601576999962, 50.256459148000026 ], [ -119.320739867999961, 50.255522796000044 ], [ -119.320174926999954, 50.255488538000058 ], [ -119.320304148999938, 50.254613634000066 ], [ -119.318738766999957, 50.254518697000051 ], [ -119.318341437999919, 50.257208103000032 ], [ -119.319561408999974, 50.257282094000061 ], [ -119.319637078999918, 50.256769837000085 ], [ -119.325048973, 50.257097899000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "218735000", "BldgCostT": "140435000", "sL_LossRatio": "0.997865425075241", "sL_AssetLoss": "12719.16", "sL_BldgLoss": "12692.01", "sL_StrLoss": "12682.2", "sL_NStrLoss": "9.81", "sL_ContLoss": "27.15", "geom_point": "0101000020E6100000B64F3BBA99D35DC02FFAB78962204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.299089952999978, 50.255912277000093 ], [ -119.29920315599999, 50.255823 ], [ -119.299681290999928, 50.255445805000079 ], [ -119.300790418999966, 50.256015210000015 ], [ -119.301642000999948, 50.255335688000095 ], [ -119.301887710999935, 50.255170092000107 ], [ -119.302912313999926, 50.255719902000074 ], [ -119.304931427999989, 50.254168002000078 ], [ -119.303812501999914, 50.253598896000078 ], [ -119.302725010999907, 50.253036306000062 ], [ -119.303383779999976, 50.252516600000014 ], [ -119.305311621999948, 50.253503189000071 ], [ -119.305439296999936, 50.253592214000065 ], [ -119.305818582999962, 50.253294794000062 ], [ -119.306308313999949, 50.253127701000061 ], [ -119.306599708999926, 50.252919683000094 ], [ -119.30730429399992, 50.252366698000053 ], [ -119.307544896999943, 50.252149289000087 ], [ -119.308047125999934, 50.251421501000074 ], [ -119.307408286999987, 50.251072987000065 ], [ -119.307108885999938, 50.250973602000037 ], [ -119.306629495999957, 50.250881290000088 ], [ -119.306372699999926, 50.250883703000056 ], [ -119.305783093999977, 50.250888492000044 ], [ -119.305297197999948, 50.250839998000039 ], [ -119.305321899999967, 50.250531007000106 ], [ -119.305172694999953, 50.250205901000079 ], [ -119.304983503999921, 50.250018391000083 ], [ -119.304788487999971, 50.24988009900003 ], [ -119.30409629899999, 50.249512102000068 ], [ -119.30445815799996, 50.249240507000103 ], [ -119.304757203999984, 50.249016085000022 ], [ -119.305895012999898, 50.247762606000066 ], [ -119.306321623999935, 50.247421093000121 ], [ -119.307016593999947, 50.246932491000031 ], [ -119.308833895999939, 50.247864498000091 ], [ -119.309723198999933, 50.24832839700013 ], [ -119.310603316999959, 50.248807054000068 ], [ -119.311356995999986, 50.249314996000052 ], [ -119.311375632999926, 50.249327562000055 ], [ -119.311560271999937, 50.249451979000042 ], [ -119.313367061999912, 50.250823033000096 ], [ -119.314030229999915, 50.251326251000101 ], [ -119.314346912999966, 50.251566634000028 ], [ -119.313984236999914, 50.251761301000073 ], [ -119.313951163999917, 50.251779105000061 ], [ -119.313698004999935, 50.251915441000079 ], [ -119.313272140999914, 50.252146884000076 ], [ -119.312820566999946, 50.252390290000029 ], [ -119.311672797999933, 50.25300672000008 ], [ -119.310782978999939, 50.253479 ], [ -119.310399153999953, 50.253683183000113 ], [ -119.31019303699999, 50.253793175000034 ], [ -119.309314636999886, 50.254261892000081 ], [ -119.308354218000019, 50.254773213000085 ], [ -119.308101580999974, 50.254909513000015 ], [ -119.307731626999939, 50.255105522000058 ], [ -119.307466870999974, 50.255247413000049 ], [ -119.307061232999942, 50.255465626000046 ], [ -119.306597895999971, 50.255711916000017 ], [ -119.305557607999972, 50.256267105000049 ], [ -119.304208110999966, 50.256988547000091 ], [ -119.303601107999924, 50.257310049000075 ], [ -119.303359, 50.257317909000101 ], [ -119.302869114999936, 50.257581521000091 ], [ -119.301720281999948, 50.257993759000058 ], [ -119.301672866999979, 50.258104622000104 ], [ -119.301110448999964, 50.258258202000057 ], [ -119.296601196999944, 50.258897508000075 ], [ -119.296579374999908, 50.258027711000047 ], [ -119.296762262999962, 50.25781041700008 ], [ -119.297053933, 50.257540523000067 ], [ -119.297136485999914, 50.257464156000047 ], [ -119.29721628, 50.257390306000119 ], [ -119.29775868199998, 50.256962468000104 ], [ -119.299033377999976, 50.255956921000148 ], [ -119.299089952999978, 50.255912277000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115472720", "BldgCostT": "73960413", "sL_LossRatio": "0.996602702646715", "sL_AssetLoss": "7241.05", "sL_BldgLoss": "7216.45", "sL_StrLoss": "7207.5", "sL_NStrLoss": "8.95", "sL_ContLoss": "24.6", "geom_point": "0101000020E6100000611BC0747DD35DC0D937E62B37204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.305311621999948, 50.253503189000071 ], [ -119.303383779999976, 50.252516600000014 ], [ -119.302725010999907, 50.253036306000062 ], [ -119.30090210899999, 50.252121990000056 ], [ -119.301059171999896, 50.251991244000074 ], [ -119.301776735000018, 50.251393835000016 ], [ -119.302337096999963, 50.250927292000036 ], [ -119.302640854999979, 50.250648056000024 ], [ -119.303134273999916, 50.250194442000115 ], [ -119.30330420199995, 50.250038190000105 ], [ -119.30409629899999, 50.249512102000068 ], [ -119.304788487999971, 50.24988009900003 ], [ -119.304983503999921, 50.250018391000083 ], [ -119.305172694999953, 50.250205901000079 ], [ -119.305321899999967, 50.250531007000106 ], [ -119.305297197999948, 50.250839998000039 ], [ -119.305783093999977, 50.250888492000044 ], [ -119.306372699999926, 50.250883703000056 ], [ -119.306629495999957, 50.250881290000088 ], [ -119.307108885999938, 50.250973602000037 ], [ -119.307408286999987, 50.251072987000065 ], [ -119.308047125999934, 50.251421501000074 ], [ -119.307544896999943, 50.252149289000087 ], [ -119.30730429399992, 50.252366698000053 ], [ -119.306599708999926, 50.252919683000094 ], [ -119.306308313999949, 50.253127701000061 ], [ -119.305818582999962, 50.253294794000062 ], [ -119.305439296999936, 50.253592214000065 ], [ -119.305311621999948, 50.253503189000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76018167", "BldgCostT": "50036667", "sL_LossRatio": "0.994858292599243", "sL_AssetLoss": "6849.779121", "sL_BldgLoss": "6814.559561", "sL_StrLoss": "6801.405861", "sL_NStrLoss": "13.1537", "sL_ContLoss": "35.21956", "geom_point": "0101000020E6100000CF7365CC34D35DC072EDEAD99C204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.296718908999964, 50.255546288000055 ], [ -119.297783313999957, 50.254784261000019 ], [ -119.297979894999926, 50.254643485000052 ], [ -119.298829909999967, 50.25398468500002 ], [ -119.300086126999972, 50.252828365000035 ], [ -119.300433378999955, 50.252508697000103 ], [ -119.30090210899999, 50.252121990000056 ], [ -119.302725010999907, 50.253036306000062 ], [ -119.303812501999914, 50.253598896000078 ], [ -119.304931427999989, 50.254168002000078 ], [ -119.302912313999926, 50.255719902000074 ], [ -119.301887710999935, 50.255170092000107 ], [ -119.301642000999948, 50.255335688000095 ], [ -119.300790418999966, 50.256015210000015 ], [ -119.299681290999928, 50.255445805000079 ], [ -119.29920315599999, 50.255823 ], [ -119.299089952999978, 50.255912277000093 ], [ -119.299033377999976, 50.255956921000148 ], [ -119.29775868199998, 50.256962468000104 ], [ -119.29721628, 50.257390306000119 ], [ -119.297136485999914, 50.257464156000047 ], [ -119.297053933, 50.257540523000067 ], [ -119.296664858999989, 50.257313724000021 ], [ -119.296433897999947, 50.257179054000098 ], [ -119.296256257999914, 50.257093481000076 ], [ -119.295818954999945, 50.256882754000081 ], [ -119.295381691, 50.256672074000086 ], [ -119.295312817999957, 50.256638899000031 ], [ -119.295121606999928, 50.256531506000051 ], [ -119.29497791299994, 50.25628448000009 ], [ -119.294882031999919, 50.255917621000052 ], [ -119.29487718299994, 50.255899194000072 ], [ -119.295685001999985, 50.255839099000049 ], [ -119.295946928999925, 50.255785723000052 ], [ -119.296234187999971, 50.255727204000024 ], [ -119.296718908999964, 50.255546288000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "234140385", "BldgCostT": "151297078", "sL_LossRatio": "0.998568559609116", "sL_AssetLoss": "9396.13", "sL_BldgLoss": "9382.68", "sL_StrLoss": "9377.8", "sL_NStrLoss": "4.88", "sL_ContLoss": "13.45", "geom_point": "0101000020E6100000FF8D45EC76D35DC084E8DF47981F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.296080480999976, 50.254121690000019 ], [ -119.295696787999944, 50.2540206910001 ], [ -119.295348412999942, 50.254022986000059 ], [ -119.295318308, 50.253826995000047 ], [ -119.295376902999976, 50.253641001000062 ], [ -119.295537307999979, 50.253433210000061 ], [ -119.296572084999966, 50.252630392000071 ], [ -119.296236596999947, 50.252526909000025 ], [ -119.295802360999957, 50.252521103000049 ], [ -119.29562778899999, 50.25251880200009 ], [ -119.295335123999962, 50.252573212000151 ], [ -119.295090103999968, 50.252657594000084 ], [ -119.294824190999947, 50.252826400000053 ], [ -119.293624977999968, 50.253770130000056 ], [ -119.292981992999927, 50.254276099000094 ], [ -119.29277019700001, 50.254402288000037 ], [ -119.292481199999969, 50.254498380000094 ], [ -119.291890205999948, 50.254588784000084 ], [ -119.291485293999941, 50.25463009500006 ], [ -119.29105899299995, 50.254587806000053 ], [ -119.290873721999915, 50.254535900000043 ], [ -119.290641792999935, 50.254408898000072 ], [ -119.290377693000011, 50.254166286000078 ], [ -119.289782812999988, 50.253503506000129 ], [ -119.289110506999961, 50.252783604000072 ], [ -119.289085522999983, 50.252553701000089 ], [ -119.287147110999939, 50.252542097000081 ], [ -119.286645707999952, 50.252598184000092 ], [ -119.286049004999924, 50.252765001000107 ], [ -119.285750105999966, 50.252813491000097 ], [ -119.285059201, 50.252817483000051 ], [ -119.285058882999948, 50.252226418000078 ], [ -119.285058713999959, 50.251965799000097 ], [ -119.285058699, 50.251938109 ], [ -119.285004400999952, 50.251858085000102 ], [ -119.284974580999943, 50.251852335000073 ], [ -119.284887887999943, 50.251835603000053 ], [ -119.28472548699996, 50.251886191000089 ], [ -119.284503913999941, 50.252021602000063 ], [ -119.284241272, 50.252082403000081 ], [ -119.283202380999938, 50.25208580300005 ], [ -119.282157504999986, 50.252054601000069 ], [ -119.281833310999929, 50.252074606000079 ], [ -119.281658001, 50.252173105000047 ], [ -119.281638412999911, 50.252817401000122 ], [ -119.280837317999939, 50.252813690000103 ], [ -119.279826000999918, 50.252792587000123 ], [ -119.278513282999938, 50.252780203000093 ], [ -119.278759869999959, 50.252566174000101 ], [ -119.27891289899992, 50.252433322000087 ], [ -119.279082717999927, 50.252285892000025 ], [ -119.279256244999956, 50.252175512000107 ], [ -119.278965757999984, 50.251056393000106 ], [ -119.280100996999948, 50.251638168000085 ], [ -119.281118313999954, 50.250991052000131 ], [ -119.28222031599995, 50.250290032000123 ], [ -119.282365595999963, 50.250197601000082 ], [ -119.282910644999973, 50.249850610000102 ], [ -119.283817331999899, 50.249909644000063 ], [ -119.283999695999967, 50.249924634000102 ], [ -119.284549254999931, 50.249584935000065 ], [ -119.284671898999989, 50.249507583000074 ], [ -119.284696699999969, 50.249494049000056 ], [ -119.285016776999939, 50.249317627000089 ], [ -119.285470337, 50.249058721000033 ], [ -119.285051347999968, 50.248530516000116 ], [ -119.285465212999938, 50.24827939500004 ], [ -119.286315725999941, 50.24777391700006 ], [ -119.286804746999948, 50.248120779000011 ], [ -119.286869913999936, 50.248166861000058 ], [ -119.287387510999935, 50.247884425000052 ], [ -119.287404925999965, 50.247874800000062 ], [ -119.287506133999969, 50.247818646000056 ], [ -119.287859109999957, 50.247629949000057 ], [ -119.287876441999984, 50.247619157000017 ], [ -119.287888723999941, 50.247606019000067 ], [ -119.287902021999955, 50.24758812200006 ], [ -119.287913045, 50.247568907000101 ], [ -119.287919453999933, 50.247547644000058 ], [ -119.287920040999921, 50.247528639000073 ], [ -119.287919381999956, 50.247504747000114 ], [ -119.287910624999896, 50.247482475000048 ], [ -119.287896120999989, 50.247452866000089 ], [ -119.28787360299998, 50.247428887000112 ], [ -119.287853667000022, 50.247413691000091 ], [ -119.287836587999962, 50.247401431000135 ], [ -119.28744241099993, 50.247104230000083 ], [ -119.288894849999963, 50.246240894000032 ], [ -119.290853968999954, 50.246360265000121 ], [ -119.290323101999888, 50.249939137000091 ], [ -119.286776475999915, 50.249723014000047 ], [ -119.286582451999948, 50.251030208000067 ], [ -119.286587410999985, 50.251030110000059 ], [ -119.286600318999916, 50.251299706000104 ], [ -119.287861710999891, 50.251274869000071 ], [ -119.287874626999894, 50.251544462000062 ], [ -119.292079276999942, 50.251461574000068 ], [ -119.292092216999919, 50.251731167000102 ], [ -119.296308276, 50.251647900000123 ], [ -119.296343183999952, 50.251412389000038 ], [ -119.296707465999972, 50.251434561000046 ], [ -119.296704370999947, 50.251370220000041 ], [ -119.297124832999955, 50.251361905000053 ], [ -119.297111865999966, 50.25109231199999 ], [ -119.297532324999906, 50.251083997000116 ], [ -119.297519353999959, 50.250814405000028 ], [ -119.29793981100002, 50.25080608800004 ], [ -119.297926838999942, 50.250536495000084 ], [ -119.298827177999897, 50.250518681000081 ], [ -119.299011487999977, 50.249274645000121 ], [ -119.301239401999979, 50.249410175000058 ], [ -119.301238503999969, 50.249391538000047 ], [ -119.301658948999943, 50.249383209000015 ], [ -119.301632963999936, 50.248844023000103 ], [ -119.304155589999965, 50.248794012000083 ], [ -119.304051544999979, 50.246637279000026 ], [ -119.303210709, 50.246653954000102 ], [ -119.303197708, 50.246384362000093 ], [ -119.302777291999959, 50.246392698000044 ], [ -119.30276429599995, 50.246123106000091 ], [ -119.30192346699998, 50.246139772000035 ], [ -119.301910473999925, 50.245870179000107 ], [ -119.301490062999946, 50.245878510000082 ], [ -119.301477071999969, 50.245608918000123 ], [ -119.301056661999922, 50.24561724800008 ], [ -119.301043673999985, 50.245347655000053 ], [ -119.300623267999953, 50.245355982000099 ], [ -119.300610282999983, 50.245086390000083 ], [ -119.300189875999962, 50.245094715000086 ], [ -119.300150929999987, 50.244285938000097 ], [ -119.30141212599996, 50.244260957000037 ], [ -119.301425113999983, 50.24453055000005 ], [ -119.303106714999942, 50.244497218000049 ], [ -119.303119712999958, 50.244766811000019 ], [ -119.303540114999961, 50.244758474000022 ], [ -119.303553115999932, 50.245028066000025 ], [ -119.3039735199999, 50.245019728000088 ], [ -119.303986524, 50.245289320000097 ], [ -119.305247740999945, 50.24526429700007 ], [ -119.305234730999956, 50.24499470500011 ], [ -119.30727413399994, 50.24495421400011 ], [ -119.30758237399999, 50.242870726000085 ], [ -119.309477265999988, 50.242985868000126 ], [ -119.309514698, 50.242732769000078 ], [ -119.30981853699997, 50.242751228000081 ], [ -119.309843892999936, 50.242579777000081 ], [ -119.31025335899993, 50.242604652000118 ], [ -119.310285383999883, 50.242388086000055 ], [ -119.310533568999958, 50.242403163000112 ], [ -119.310598094999989, 50.24196679199999 ], [ -119.311550453999956, 50.242024641000071 ], [ -119.311601566999954, 50.241678915000115 ], [ -119.315935197999977, 50.241942047000066 ], [ -119.315976779999943, 50.241660614000111 ], [ -119.316440830999966, 50.241688781000065 ], [ -119.316485971999981, 50.241383225000028 ], [ -119.317058558999975, 50.241417977000062 ], [ -119.31708955699996, 50.241208139000037 ], [ -119.317429856999965, 50.241228791 ], [ -119.317462951999957, 50.24100474700009 ], [ -119.319924019999974, 50.241154071000047 ], [ -119.319993560999933, 50.240683104000063 ], [ -119.320372915999926, 50.240706116000084 ], [ -119.32039595, 50.240550112000015 ], [ -119.321742266999976, 50.240631772000015 ], [ -119.321755791999948, 50.240540144000079 ], [ -119.322468166999954, 50.24058334500009 ], [ -119.322531380999934, 50.240155061000053 ], [ -119.324988935999926, 50.24030406100006 ], [ -119.325489733999973, 50.236909519000051 ], [ -119.326039398999939, 50.23694283800004 ], [ -119.326054312999943, 50.236841733000126 ], [ -119.326416007999967, 50.236863656000033 ], [ -119.326430699999918, 50.236764041000086 ], [ -119.326769303, 50.236784563000114 ], [ -119.326813920999939, 50.236482045000081 ], [ -119.32720170599994, 50.236580053000047 ], [ -119.327934005999907, 50.236627862000027 ], [ -119.328368280999911, 50.23660988400006 ], [ -119.329094456999925, 50.236531867000089 ], [ -119.329519593999947, 50.236612902000061 ], [ -119.329862764999987, 50.236740718000092 ], [ -119.330113193999964, 50.236978251000117 ], [ -119.330285349999926, 50.237334184000055 ], [ -119.330053889999974, 50.237752145000073 ], [ -119.329868080999944, 50.238281631000085 ], [ -119.329698212999944, 50.238765546000117 ], [ -119.329636368999928, 50.238785895000021 ], [ -119.329566818, 50.238808096000099 ], [ -119.32880438299999, 50.239059794000134 ], [ -119.328209017999882, 50.239344199000072 ], [ -119.328204187999972, 50.239354434000099 ], [ -119.328139117999953, 50.239493504000095 ], [ -119.328686489999896, 50.240116995000108 ], [ -119.328072603999914, 50.24034529900004 ], [ -119.327964504999926, 50.240457903000149 ], [ -119.327809701999939, 50.240886301000053 ], [ -119.327621697999959, 50.240880282000084 ], [ -119.32645418299991, 50.240843011000045 ], [ -119.326239801000028, 50.240854416000111 ], [ -119.326025411999979, 50.240904602000057 ], [ -119.325413180999988, 50.241159100000061 ], [ -119.323995821999986, 50.241887495000057 ], [ -119.323350013999956, 50.24215978900007 ], [ -119.322442598999913, 50.242438813000092 ], [ -119.321883492999973, 50.242543538000049 ], [ -119.321718286999982, 50.242574498000039 ], [ -119.321249295999962, 50.242698597000064 ], [ -119.320594113999945, 50.242947809000086 ], [ -119.319803201999889, 50.243343988000035 ], [ -119.319075006999981, 50.24366810500009 ], [ -119.31784270299994, 50.244077200000092 ], [ -119.31748884299999, 50.244171507000011 ], [ -119.31714178699994, 50.244264 ], [ -119.316647990999982, 50.244371843000124 ], [ -119.315890001999946, 50.244537416000057 ], [ -119.315496273999884, 50.244581267000058 ], [ -119.314406230999978, 50.244702718000042 ], [ -119.31394325899997, 50.244754280000059 ], [ -119.313583820999938, 50.244794306000088 ], [ -119.313429586, 50.244811494000011 ], [ -119.310766647999941, 50.245150323000082 ], [ -119.310134888999954, 50.245230705000047 ], [ -119.309297700999977, 50.245367607000119 ], [ -119.309267425, 50.24537603400006 ], [ -119.30888038, 50.245483990000082 ], [ -119.308521887999959, 50.245669793000033 ], [ -119.3081041, 50.245928579000093 ], [ -119.30785820100003, 50.246080912000068 ], [ -119.307576574999956, 50.246289499000049 ], [ -119.307252698999946, 50.246661408000136 ], [ -119.307030831999953, 50.24691615800004 ], [ -119.307016593999947, 50.246932491000031 ], [ -119.306321623999935, 50.247421093000121 ], [ -119.305895012999898, 50.247762606000066 ], [ -119.304757203999984, 50.249016085000022 ], [ -119.30445815799996, 50.249240507000103 ], [ -119.30409629899999, 50.249512102000068 ], [ -119.30330420199995, 50.250038190000105 ], [ -119.303134273999916, 50.250194442000115 ], [ -119.302640854999979, 50.250648056000024 ], [ -119.302337096999963, 50.250927292000036 ], [ -119.301776735000018, 50.251393835000016 ], [ -119.301059171999896, 50.251991244000074 ], [ -119.30090210899999, 50.252121990000056 ], [ -119.300433378999955, 50.252508697000103 ], [ -119.300086126999972, 50.252828365000035 ], [ -119.298829909999967, 50.25398468500002 ], [ -119.297979894999926, 50.254643485000052 ], [ -119.297783313999957, 50.254784261000019 ], [ -119.296718908999964, 50.255546288000055 ], [ -119.296234187999971, 50.255727204000024 ], [ -119.295946928999925, 50.255785723000052 ], [ -119.295685001999985, 50.255839099000049 ], [ -119.29487718299994, 50.255899194000072 ], [ -119.294932483999986, 50.255611793000035 ], [ -119.295107998999981, 50.255330889000057 ], [ -119.295334768999965, 50.255037193000085 ], [ -119.295901490999924, 50.254303092000058 ], [ -119.296080480999976, 50.254121690000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37593834", "BldgCostT": "24983334", "sL_LossRatio": "1", "sL_AssetLoss": "2061.9", "sL_BldgLoss": "2061.9", "sL_StrLoss": "2061.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009EEA2D71A6D35DC0CF3107DE1C1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.310016029999957, 50.231051857000075 ], [ -119.310215100999983, 50.23095338300007 ], [ -119.31058358599995, 50.23103270500004 ], [ -119.312985615999963, 50.231033035000053 ], [ -119.312763701999984, 50.232534668000028 ], [ -119.311503712999951, 50.23245812800014 ], [ -119.311048593999914, 50.235536899000067 ], [ -119.30909888299999, 50.235418432000138 ], [ -119.308825293999988, 50.237268446000044 ], [ -119.307497043999902, 50.237187720000023 ], [ -119.307262810999973, 50.238771177000075 ], [ -119.304075329999961, 50.238577389000042 ], [ -119.303999986999983, 50.239086451000034 ], [ -119.299832152999954, 50.238832919000032 ], [ -119.300669387999974, 50.238218291000059 ], [ -119.300693000999971, 50.238199532000039 ], [ -119.30148668799994, 50.237568393000089 ], [ -119.30317911299997, 50.23607789700003 ], [ -119.303482014999943, 50.235780483000042 ], [ -119.303575587999958, 50.235688631000123 ], [ -119.304287770999935, 50.234989329 ], [ -119.304391966999958, 50.234887040000103 ], [ -119.304642640999973, 50.234640916000075 ], [ -119.305387015999926, 50.233909993000083 ], [ -119.307028020999937, 50.232622203000076 ], [ -119.307318395999957, 50.232420390000115 ], [ -119.308258190999979, 50.231921392000125 ], [ -119.308763353999936, 50.231671516000084 ], [ -119.308987883999961, 50.231560440000116 ], [ -119.310016029999957, 50.231051857000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E6E256DEA1D45DC0B85CDCCA3B1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.321657634999923, 50.23657209800006 ], [ -119.321644534999933, 50.236302509000055 ], [ -119.321364191999962, 50.236308112000074 ], [ -119.321401445999967, 50.23625094300008 ], [ -119.321562863999972, 50.236103592000084 ], [ -119.321876345999939, 50.235908132000063 ], [ -119.322098585999981, 50.235858556000046 ], [ -119.322503968000021, 50.235823199000045 ], [ -119.322928589999904, 50.235895372000059 ], [ -119.323097334999972, 50.235900890000011 ], [ -119.323310473000021, 50.235953230000035 ], [ -119.323325822999976, 50.236268891000094 ], [ -119.322905499999962, 50.236277297000143 ], [ -119.322918606999977, 50.236546886000113 ], [ -119.321657634999923, 50.23657209800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63205667", "BldgCostT": "39226667", "sL_LossRatio": "1", "sL_AssetLoss": "2684.4", "sL_BldgLoss": "2684.4", "sL_StrLoss": "2684.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD221FAADFD15DC081DB455EF71F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.273677624999934, 50.256827574000056 ], [ -119.273674835999927, 50.256325439000065 ], [ -119.273679756000021, 50.256073108000116 ], [ -119.273693550999965, 50.25536599100009 ], [ -119.273699346999948, 50.255260698 ], [ -119.273755205, 50.255169309000074 ], [ -119.273737856999958, 50.254641929000037 ], [ -119.27373791, 50.254243796000019 ], [ -119.273733878999963, 50.253910402000031 ], [ -119.273732185999961, 50.253173599000064 ], [ -119.2737360899999, 50.252834403000044 ], [ -119.273733865999944, 50.25269117200007 ], [ -119.273733371999953, 50.252658911000012 ], [ -119.273723551999964, 50.252025137000032 ], [ -119.27371686399999, 50.251593633000027 ], [ -119.273709473999986, 50.25111919200004 ], [ -119.273714088999924, 50.250648713000061 ], [ -119.273718439999982, 50.250206657000042 ], [ -119.273727106999928, 50.249327812000075 ], [ -119.273727728999987, 50.249261395000083 ], [ -119.27343618699993, 50.249214692000059 ], [ -119.27290969399999, 50.249174388000021 ], [ -119.272484080999959, 50.249156606000042 ], [ -119.272160781999958, 50.249142211000091 ], [ -119.27143708899996, 50.249110603000119 ], [ -119.271442876999956, 50.249102366000095 ], [ -119.271628301999939, 50.248838791000018 ], [ -119.27187558599995, 50.248501913 ], [ -119.27208681499998, 50.24837029800004 ], [ -119.272249287999941, 50.248280346000115 ], [ -119.272583888, 50.248097597000026 ], [ -119.27260548799994, 50.24805939200008 ], [ -119.27263827299997, 50.248019737000035 ], [ -119.272681112999976, 50.247982427000039 ], [ -119.27275750099993, 50.247920433000061 ], [ -119.272819012999932, 50.247883840000021 ], [ -119.272883744999902, 50.247845872000035 ], [ -119.272949204999946, 50.247811639000126 ], [ -119.273020308999932, 50.247784346000024 ], [ -119.27302127199999, 50.247789088000047 ], [ -119.273185395999931, 50.247841510000072 ], [ -119.273551007999941, 50.247902703000051 ], [ -119.274292529999911, 50.248038523000076 ], [ -119.274363455999946, 50.247981204000084 ], [ -119.274686301999935, 50.247723746000112 ], [ -119.274717080999963, 50.247705328000087 ], [ -119.275168852, 50.24743451500003 ], [ -119.275312636999956, 50.247424337000048 ], [ -119.277294518999952, 50.246703251000099 ], [ -119.277966527999951, 50.246458744000094 ], [ -119.278547042999918, 50.246182696000027 ], [ -119.278747272999951, 50.246046831000065 ], [ -119.278988853999948, 50.245882837000067 ], [ -119.279274785999931, 50.245613544000058 ], [ -119.279324642999924, 50.245566577000076 ], [ -119.279440153999971, 50.245409364000075 ], [ -119.27957536400001, 50.245225266000062 ], [ -119.279637846999904, 50.245088118000133 ], [ -119.279648277999968, 50.244553456000077 ], [ -119.279650881999899, 50.244420226000074 ], [ -119.279835380999913, 50.244416605000012 ], [ -119.279896306999944, 50.244006494000104 ], [ -119.280100439999913, 50.244018952000047 ], [ -119.285480224999944, 50.244347108000042 ], [ -119.285365874999954, 50.24511747200004 ], [ -119.285462656999954, 50.245115568000109 ], [ -119.285463440999976, 50.245131956000108 ], [ -119.28698583100001, 50.2452247700001 ], [ -119.286959284999938, 50.245403640000148 ], [ -119.28692621699993, 50.245626461000036 ], [ -119.287590528999928, 50.245613380000101 ], [ -119.287603438999952, 50.245882974000033 ], [ -119.288023855999938, 50.245874694000065 ], [ -119.288028895999958, 50.245979923000057 ], [ -119.288038898999929, 50.24618873000005 ], [ -119.288894849999963, 50.246240894000032 ], [ -119.28744241099993, 50.247104230000083 ], [ -119.287836587999962, 50.247401431000135 ], [ -119.287853667000022, 50.247413691000091 ], [ -119.28787360299998, 50.247428887000112 ], [ -119.287896120999989, 50.247452866000089 ], [ -119.287910624999896, 50.247482475000048 ], [ -119.287919381999956, 50.247504747000114 ], [ -119.287920040999921, 50.247528639000073 ], [ -119.287919453999933, 50.247547644000058 ], [ -119.287913045, 50.247568907000101 ], [ -119.287902021999955, 50.24758812200006 ], [ -119.287888723999941, 50.247606019000067 ], [ -119.287876441999984, 50.247619157000017 ], [ -119.287859109999957, 50.247629949000057 ], [ -119.287506133999969, 50.247818646000056 ], [ -119.287404925999965, 50.247874800000062 ], [ -119.287387510999935, 50.247884425000052 ], [ -119.286869913999936, 50.248166861000058 ], [ -119.286804746999948, 50.248120779000011 ], [ -119.286315725999941, 50.24777391700006 ], [ -119.285465212999938, 50.24827939500004 ], [ -119.285051347999968, 50.248530516000116 ], [ -119.285470337, 50.249058721000033 ], [ -119.285016776999939, 50.249317627000089 ], [ -119.284696699999969, 50.249494049000056 ], [ -119.284671898999989, 50.249507583000074 ], [ -119.284549254999931, 50.249584935000065 ], [ -119.283999695999967, 50.249924634000102 ], [ -119.283817331999899, 50.249909644000063 ], [ -119.282910644999973, 50.249850610000102 ], [ -119.282365595999963, 50.250197601000082 ], [ -119.28222031599995, 50.250290032000123 ], [ -119.281118313999954, 50.250991052000131 ], [ -119.280100996999948, 50.251638168000085 ], [ -119.278965757999984, 50.251056393000106 ], [ -119.278388606999954, 50.250658877000035 ], [ -119.278358198999939, 50.250667188000079 ], [ -119.278190485999957, 50.250638892000062 ], [ -119.277931290999931, 50.250487710000115 ], [ -119.277655310999961, 50.250543110000102 ], [ -119.277227212999932, 50.250580098000029 ], [ -119.27608040399997, 50.250589602000019 ], [ -119.27578248899998, 50.250631892000101 ], [ -119.275477798999958, 50.250738806000122 ], [ -119.275257198999967, 50.250895913000129 ], [ -119.27501979699997, 50.251165818000047 ], [ -119.274959887999984, 50.252847698000075 ], [ -119.274917087999924, 50.253182798000068 ], [ -119.276191206999925, 50.253189199000076 ], [ -119.27616970299999, 50.253921889000097 ], [ -119.277512912999924, 50.253946998000039 ], [ -119.276958479999948, 50.254662504000123 ], [ -119.276875818999926, 50.254810907000085 ], [ -119.276706919999938, 50.255075108 ], [ -119.276561374, 50.255419198 ], [ -119.276396101, 50.255810909000076 ], [ -119.277637485999904, 50.255809896000073 ], [ -119.278683078999961, 50.255932395000031 ], [ -119.278907401999916, 50.255930688000035 ], [ -119.27882968499992, 50.25602710600004 ], [ -119.278801408, 50.256169791000055 ], [ -119.278888817999984, 50.25662470300005 ], [ -119.278724697999948, 50.256827798000089 ], [ -119.277593302999946, 50.256723512000079 ], [ -119.27662408499999, 50.256835905000123 ], [ -119.276172105999962, 50.256824609000013 ], [ -119.276191504999957, 50.257566097000044 ], [ -119.276198699999924, 50.25811449100015 ], [ -119.276200488999947, 50.258263592000056 ], [ -119.276208793, 50.259401632000106 ], [ -119.275991302999984, 50.25943352200008 ], [ -119.274962445999932, 50.259415816000107 ], [ -119.27380252599994, 50.259417240000069 ], [ -119.273678446999966, 50.259412139000098 ], [ -119.273677759999927, 50.259188810000083 ], [ -119.27367496, 50.258266509000109 ], [ -119.273675623999907, 50.257906109000068 ], [ -119.273676298999987, 50.25755783200006 ], [ -119.273677624999934, 50.256827574000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14418501", "BldgCostT": "9680001", "sL_LossRatio": "1", "sL_AssetLoss": "1371.1", "sL_BldgLoss": "1371.1", "sL_StrLoss": "1371.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B7DCB2A666D25DC0D9FAB705AA1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.280529233999914, 50.23873615400003 ], [ -119.280516364999983, 50.238466558000063 ], [ -119.27976694599991, 50.238481269000069 ], [ -119.27977905299997, 50.237861631000037 ], [ -119.279954869999926, 50.237958126000059 ], [ -119.280344161999921, 50.238058609000099 ], [ -119.280721254999946, 50.238079811000034 ], [ -119.282284170999958, 50.238045188000036 ], [ -119.282526231999967, 50.238046422000046 ], [ -119.28291907299996, 50.237070112000033 ], [ -119.282974071999917, 50.237069032000086 ], [ -119.282968278999945, 50.236947821000093 ], [ -119.283300397999966, 50.236122379000022 ], [ -119.28365738799998, 50.23523509500005 ], [ -119.284345818999938, 50.233523894 ], [ -119.28444889, 50.233484968000049 ], [ -119.284531535000028, 50.233453744000059 ], [ -119.284614144999949, 50.233422529000052 ], [ -119.284696790999988, 50.233391305000104 ], [ -119.284775541000016, 50.233358417000034 ], [ -119.284775971999963, 50.233358091000071 ], [ -119.285092886000015, 50.232804988000048 ], [ -119.285555177999981, 50.232230665000067 ], [ -119.285674742, 50.232082093000024 ], [ -119.287168768999962, 50.23069708600012 ], [ -119.288030416999959, 50.229995765000098 ], [ -119.288289737999889, 50.229845998000073 ], [ -119.288497061999948, 50.229726287000055 ], [ -119.289251498999974, 50.229424686000044 ], [ -119.289585256999956, 50.229291549000045 ], [ -119.289922207999936, 50.229032209000117 ], [ -119.290025167999914, 50.228793830000036 ], [ -119.290016372999986, 50.225592593000073 ], [ -119.290016184999914, 50.225526327000097 ], [ -119.29001423599999, 50.224819467000067 ], [ -119.29001303499993, 50.224383664000058 ], [ -119.290096977999937, 50.223586728000022 ], [ -119.290123603999973, 50.223334094000101 ], [ -119.290051835999975, 50.223248450000071 ], [ -119.290725590999955, 50.223234883000032 ], [ -119.290892434999961, 50.22671626700005 ], [ -119.291695318999956, 50.226765199000091 ], [ -119.291550756999982, 50.227740399000076 ], [ -119.291783782999957, 50.227754599000029 ], [ -119.291253206999968, 50.231333562000025 ], [ -119.288876569999971, 50.231188706000111 ], [ -119.288561698999942, 50.233311619000148 ], [ -119.285731214999927, 50.233139033000079 ], [ -119.285748789999957, 50.233506417000093 ], [ -119.285328481999969, 50.23351468800012 ], [ -119.285380055999937, 50.234593071000056 ], [ -119.284959736999966, 50.234601341000051 ], [ -119.28499841199999, 50.235410129000108 ], [ -119.284578087999961, 50.235418397000061 ], [ -119.284603867999977, 50.235957588000069 ], [ -119.284183536999976, 50.235965856000085 ], [ -119.284190630999944, 50.236114246000113 ], [ -119.284222202999956, 50.236774643000054 ], [ -119.284489150999917, 50.236769393000017 ], [ -119.284642538999947, 50.236766376000041 ], [ -119.284660061999944, 50.237132850000094 ], [ -119.284695931999977, 50.237882985000049 ], [ -119.284706994999937, 50.2381143550001 ], [ -119.283445946999947, 50.23813915300012 ], [ -119.283458830999933, 50.238408748000026 ], [ -119.282370402999931, 50.238430141000052 ], [ -119.282197775999975, 50.238433533000062 ], [ -119.282210653, 50.23870313 ], [ -119.280529233999914, 50.23873615400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34088834", "BldgCostT": "20803334", "sL_LossRatio": "1", "sL_AssetLoss": "1815.4", "sL_BldgLoss": "1815.4", "sL_StrLoss": "1815.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE31C30CAED25DC0A81674EF9F1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.292033107999941, 50.236365153000065 ], [ -119.297616176999952, 50.236705157000095 ], [ -119.297085955999961, 50.240284107000093 ], [ -119.296840576999983, 50.240269169000044 ], [ -119.296801556999966, 50.240532512000037 ], [ -119.292370219999924, 50.240262663000081 ], [ -119.29212863099994, 50.241892016000058 ], [ -119.291732488999969, 50.241867884000094 ], [ -119.291695025, 50.242120526000093 ], [ -119.286111333999926, 50.241780224000109 ], [ -119.28664243899999, 50.238201334000095 ], [ -119.287038545999977, 50.238225486000083 ], [ -119.287076034, 50.237972844000119 ], [ -119.291507115999977, 50.238242908000061 ], [ -119.29174870599999, 50.236613547000054 ], [ -119.291994063999937, 50.236628496000087 ], [ -119.292033107999941, 50.236365153000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16386667", "BldgCostT": "11091667", "sL_LossRatio": "0.992625166832073", "sL_AssetLoss": "1168.84", "sL_BldgLoss": "1160.22", "sL_StrLoss": "1157.1", "sL_NStrLoss": "3.12", "sL_ContLoss": "8.62", "geom_point": "0101000020E6100000C9C48C746FD35DC0DDC2258DF21D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.298416576999898, 50.238746772000049 ], [ -119.298467726999917, 50.238401456000098 ], [ -119.298410500999935, 50.238397973000097 ], [ -119.298940595999966, 50.234819007000063 ], [ -119.299366804, 50.234844947000106 ], [ -119.299413190999971, 50.234531718000028 ], [ -119.299887181999935, 50.23456056300008 ], [ -119.299950890999938, 50.234130328000084 ], [ -119.300096683999968, 50.23413920100014 ], [ -119.300130795000015, 50.233908833000086 ], [ -119.300754635999908, 50.233946794000062 ], [ -119.300822688000011, 50.233487148000037 ], [ -119.302216342999969, 50.233571940000033 ], [ -119.302293649999953, 50.233049680000079 ], [ -119.303443104999971, 50.233119601000055 ], [ -119.30351892099999, 50.232607307000116 ], [ -119.305828021999943, 50.232747733000096 ], [ -119.305995068999948, 50.231618561000126 ], [ -119.307255025999979, 50.231695164000065 ], [ -119.307710362999927, 50.228616393000074 ], [ -119.311120397999986, 50.228823644000045 ], [ -119.311090290999957, 50.228926242000078 ], [ -119.310414574999982, 50.230084368000085 ], [ -119.309884241999939, 50.230595317000052 ], [ -119.309124359999913, 50.231253619000043 ], [ -119.308987883999961, 50.231560440000116 ], [ -119.308763353999936, 50.231671516000084 ], [ -119.308258190999979, 50.231921392000125 ], [ -119.307318395999957, 50.232420390000115 ], [ -119.307028020999937, 50.232622203000076 ], [ -119.305387015999926, 50.233909993000083 ], [ -119.304642640999973, 50.234640916000075 ], [ -119.304391966999958, 50.234887040000103 ], [ -119.304287770999935, 50.234989329 ], [ -119.303575587999958, 50.235688631000123 ], [ -119.303482014999943, 50.235780483000042 ], [ -119.30317911299997, 50.23607789700003 ], [ -119.30148668799994, 50.237568393000089 ], [ -119.300693000999971, 50.238199532000039 ], [ -119.300669387999974, 50.238218291000059 ], [ -119.299832152999954, 50.238832919000032 ], [ -119.298416576999898, 50.238746772000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "199.6", "sL_BldgLoss": "199.6", "sL_StrLoss": "199.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001327F73B94D35DC090F681DCAC1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.303483565999954, 50.223278445000055 ], [ -119.307441863999912, 50.223340905000079 ], [ -119.307642369999897, 50.223506184000023 ], [ -119.308856907999925, 50.224590230000047 ], [ -119.308917818999959, 50.224614153000076 ], [ -119.308887004999946, 50.224822576000051 ], [ -119.30330531299991, 50.22448313600006 ], [ -119.303483565999954, 50.223278445000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "207264636", "BldgCostT": "139962079", "sL_LossRatio": "0.998419783724813", "sL_AssetLoss": "4803.14", "sL_BldgLoss": "4795.55", "sL_StrLoss": "4792.8", "sL_NStrLoss": "2.75", "sL_ContLoss": "7.59", "geom_point": "0101000020E6100000510E984D61D15DC002D0A42456204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.271319227000021, 50.256294670000045 ], [ -119.271306298999988, 50.254298399000049 ], [ -119.271001303999938, 50.254312306 ], [ -119.270085004999927, 50.254296892000077 ], [ -119.26888539, 50.254300398000026 ], [ -119.268677204999975, 50.254355297000075 ], [ -119.268079794999949, 50.254345899000079 ], [ -119.268142288999954, 50.253519097000058 ], [ -119.268872328, 50.252855004000025 ], [ -119.268861234000013, 50.252370565000049 ], [ -119.268837714999975, 50.251338520000047 ], [ -119.268840621999942, 50.251180546000107 ], [ -119.269979557999974, 50.250130467000055 ], [ -119.271316903999946, 50.250174107000078 ], [ -119.271314783999983, 50.249203397 ], [ -119.27143708899996, 50.249110603000119 ], [ -119.272160781999958, 50.249142211000091 ], [ -119.272484080999959, 50.249156606000042 ], [ -119.27290969399999, 50.249174388000021 ], [ -119.27343618699993, 50.249214692000059 ], [ -119.273727728999987, 50.249261395000083 ], [ -119.273727106999928, 50.249327812000075 ], [ -119.273718439999982, 50.250206657000042 ], [ -119.273714088999924, 50.250648713000061 ], [ -119.273709473999986, 50.25111919200004 ], [ -119.27371686399999, 50.251593633000027 ], [ -119.273723551999964, 50.252025137000032 ], [ -119.273733371999953, 50.252658911000012 ], [ -119.273733865999944, 50.25269117200007 ], [ -119.2737360899999, 50.252834403000044 ], [ -119.273732185999961, 50.253173599000064 ], [ -119.273733878999963, 50.253910402000031 ], [ -119.27373791, 50.254243796000019 ], [ -119.273737856999958, 50.254641929000037 ], [ -119.273755205, 50.255169309000074 ], [ -119.273699346999948, 50.255260698 ], [ -119.273693550999965, 50.25536599100009 ], [ -119.273679756000021, 50.256073108000116 ], [ -119.273674835999927, 50.256325439000065 ], [ -119.272865171999968, 50.256322038000043 ], [ -119.272495416999959, 50.256325605 ], [ -119.271319392999928, 50.256322398000052 ], [ -119.271319227000021, 50.256294670000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "246583970", "BldgCostT": "162850413", "sL_LossRatio": "0.992596404141416", "sL_AssetLoss": "8279.760426", "sL_BldgLoss": "8218.460426", "sL_StrLoss": "8196.200426", "sL_NStrLoss": "22.26", "sL_ContLoss": "61.3", "geom_point": "0101000020E61000007FBF4D5637D15DC049E8B2C1D71F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.267714441, 50.258007805000084 ], [ -119.266874579999964, 50.25777520800002 ], [ -119.265092230999969, 50.257282529000086 ], [ -119.263758484999968, 50.256871448000055 ], [ -119.262851513999962, 50.256509016000109 ], [ -119.262194721999947, 50.256179046000071 ], [ -119.261765137999959, 50.255922555000012 ], [ -119.261222259999954, 50.255547158000091 ], [ -119.259850467999968, 50.25437081200004 ], [ -119.259385843999951, 50.253848516000168 ], [ -119.259972151999989, 50.253705632000077 ], [ -119.26238263499999, 50.253716794000049 ], [ -119.262380918999909, 50.253237167000115 ], [ -119.26237629299996, 50.25193420100004 ], [ -119.262375270999911, 50.251374823000077 ], [ -119.26237288399993, 50.25010608000013 ], [ -119.262372011999958, 50.249627204000042 ], [ -119.262377, 50.248335507000057 ], [ -119.262408206999936, 50.247993497000017 ], [ -119.26246548599994, 50.247817299000126 ], [ -119.262607335999974, 50.247583468000059 ], [ -119.262670880999949, 50.247478693000083 ], [ -119.262945988999917, 50.247211107000062 ], [ -119.26296596, 50.247198804000057 ], [ -119.263018286999909, 50.247166574000076 ], [ -119.263471161999917, 50.246887672000106 ], [ -119.26348427299996, 50.246879578000069 ], [ -119.264048800999959, 50.24653190300004 ], [ -119.264358597999944, 50.246286293 ], [ -119.264520174999973, 50.246094722000038 ], [ -119.264598212999942, 50.246002205000082 ], [ -119.264702163999956, 50.245845052000078 ], [ -119.264861711999927, 50.24560386700005 ], [ -119.265085866999968, 50.245233878000114 ], [ -119.265153075999976, 50.245090845000064 ], [ -119.26524050299993, 50.244904764000111 ], [ -119.265322875999985, 50.244616399000094 ], [ -119.265691880999981, 50.24253534300005 ], [ -119.26587839599992, 50.241783844000039 ], [ -119.265986389999938, 50.241153037000068 ], [ -119.266148396999967, 50.239679600000052 ], [ -119.266185477999898, 50.239342389000043 ], [ -119.266548484999987, 50.238199922000049 ], [ -119.267134016999989, 50.23822534100001 ], [ -119.268227235999973, 50.238258247 ], [ -119.26954035299994, 50.238282978000036 ], [ -119.269545530999935, 50.23829613400008 ], [ -119.270545324999944, 50.238297791000065 ], [ -119.270336223999948, 50.23970351300013 ], [ -119.270775808999986, 50.239730379000093 ], [ -119.270831715999918, 50.23935452300001 ], [ -119.27081345199997, 50.239353406000077 ], [ -119.270970358999975, 50.238298492000126 ], [ -119.271756199999956, 50.238299785000038 ], [ -119.27185779199999, 50.23825438500004 ], [ -119.272045904999914, 50.2381703000001 ], [ -119.273172489999979, 50.238171419 ], [ -119.273564482999987, 50.238175445000095 ], [ -119.273992122999985, 50.238179836000015 ], [ -119.27462940599996, 50.238186405000114 ], [ -119.275993931999892, 50.238175274000042 ], [ -119.279232158999946, 50.238148817000109 ], [ -119.279531568999971, 50.238076739000043 ], [ -119.27977905299997, 50.237861631000037 ], [ -119.27976694599991, 50.238481269000069 ], [ -119.279749945, 50.238481603000103 ], [ -119.279563667999952, 50.239735609000107 ], [ -119.276900249999983, 50.239573017000048 ], [ -119.27684436299991, 50.239949070000108 ], [ -119.276381522999955, 50.239920808000065 ], [ -119.276327160999969, 50.240286581000063 ], [ -119.273165601999906, 50.240093482000063 ], [ -119.272308348999928, 50.240041108000071 ], [ -119.270752439, 50.239946031000031 ], [ -119.270662815999941, 50.240548544000042 ], [ -119.270937890999974, 50.240543167000077 ], [ -119.270963519999952, 50.241082363000061 ], [ -119.271383898999915, 50.241074143000084 ], [ -119.27139671899999, 50.241343741000044 ], [ -119.271817099999964, 50.24133552100011 ], [ -119.271881204999971, 50.242683509000067 ], [ -119.272301596999938, 50.242675287000047 ], [ -119.272404193999989, 50.244832068000044 ], [ -119.271983782999939, 50.244840293000053 ], [ -119.272009428999979, 50.245379489000108 ], [ -119.272429845999966, 50.245371265000074 ], [ -119.272455495999964, 50.245910460000054 ], [ -119.274581796999911, 50.245868843000061 ], [ -119.274817710999969, 50.244282080000076 ], [ -119.279545372999976, 50.244570699000043 ], [ -119.279538296999988, 50.244422436000065 ], [ -119.279650881999899, 50.244420226000074 ], [ -119.279648277999968, 50.244553456000077 ], [ -119.279637846999904, 50.245088118000133 ], [ -119.27957536400001, 50.245225266000062 ], [ -119.279440153999971, 50.245409364000075 ], [ -119.279324642999924, 50.245566577000076 ], [ -119.279274785999931, 50.245613544000058 ], [ -119.278988853999948, 50.245882837000067 ], [ -119.278747272999951, 50.246046831000065 ], [ -119.278547042999918, 50.246182696000027 ], [ -119.277966527999951, 50.246458744000094 ], [ -119.277294518999952, 50.246703251000099 ], [ -119.275312636999956, 50.247424337000048 ], [ -119.275168852, 50.24743451500003 ], [ -119.274717080999963, 50.247705328000087 ], [ -119.274686301999935, 50.247723746000112 ], [ -119.274363455999946, 50.247981204000084 ], [ -119.274292529999911, 50.248038523000076 ], [ -119.273551007999941, 50.247902703000051 ], [ -119.273185395999931, 50.247841510000072 ], [ -119.27302127199999, 50.247789088000047 ], [ -119.273020308999932, 50.247784346000024 ], [ -119.272949204999946, 50.247811639000126 ], [ -119.272883744999902, 50.247845872000035 ], [ -119.272819012999932, 50.247883840000021 ], [ -119.27275750099993, 50.247920433000061 ], [ -119.272681112999976, 50.247982427000039 ], [ -119.27263827299997, 50.248019737000035 ], [ -119.27260548799994, 50.24805939200008 ], [ -119.272583888, 50.248097597000026 ], [ -119.272249287999941, 50.248280346000115 ], [ -119.27208681499998, 50.24837029800004 ], [ -119.27187558599995, 50.248501913 ], [ -119.271628301999939, 50.248838791000018 ], [ -119.271442876999956, 50.249102366000095 ], [ -119.27143708899996, 50.249110603000119 ], [ -119.271314783999983, 50.249203397 ], [ -119.271316903999946, 50.250174107000078 ], [ -119.269979557999974, 50.250130467000055 ], [ -119.268840621999942, 50.251180546000107 ], [ -119.268837714999975, 50.251338520000047 ], [ -119.268861234000013, 50.252370565000049 ], [ -119.268872328, 50.252855004000025 ], [ -119.268142288999954, 50.253519097000058 ], [ -119.268079794999949, 50.254345899000079 ], [ -119.268677204999975, 50.254355297000075 ], [ -119.26888539, 50.254300398000026 ], [ -119.270085004999927, 50.254296892000077 ], [ -119.271001303999938, 50.254312306 ], [ -119.271306298999988, 50.254298399000049 ], [ -119.271319227000021, 50.256294670000045 ], [ -119.271319392999928, 50.256322398000052 ], [ -119.272495416999959, 50.256325605 ], [ -119.272865171999968, 50.256322038000043 ], [ -119.273674835999927, 50.256325439000065 ], [ -119.273677624999934, 50.256827574000056 ], [ -119.273676298999987, 50.25755783200006 ], [ -119.273675623999907, 50.257906109000068 ], [ -119.27367496, 50.258266509000109 ], [ -119.273677759999927, 50.259188810000083 ], [ -119.273678446999966, 50.259412139000098 ], [ -119.273680543999944, 50.260113502000102 ], [ -119.273682035999954, 50.260606113000094 ], [ -119.27368194899995, 50.260938342000067 ], [ -119.27319343799995, 50.260982547 ], [ -119.270821641999973, 50.261201514000035 ], [ -119.270612337999978, 50.261253728000071 ], [ -119.270510295999941, 50.261134709000089 ], [ -119.27001994699999, 50.260594604000083 ], [ -119.269932432999951, 50.260481445000018 ], [ -119.269110288999912, 50.259418147000098 ], [ -119.268536893999951, 50.258676496000071 ], [ -119.268447362999936, 50.258560695000035 ], [ -119.268286497999938, 50.258352618000053 ], [ -119.267794819999935, 50.258030076000118 ], [ -119.267714441, 50.258007805000084 ] ], [ [ -119.270682, 50.257984700000065 ], [ -119.269852902999972, 50.25765 ], [ -119.26952989199998, 50.257657103999982 ], [ -119.269490801999922, 50.257719803000072 ], [ -119.269650797999972, 50.257816601000044 ], [ -119.270276495999923, 50.257984701000069 ], [ -119.270682, 50.257984700000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273580938", "BldgCostT": "165067585", "sL_LossRatio": "0.983253836631662", "sL_AssetLoss": "10509.87", "sL_BldgLoss": "10333.87", "sL_StrLoss": "10270.2", "sL_NStrLoss": "63.67", "sL_ContLoss": "176", "geom_point": "0101000020E61000009B54773C58D05DC03A750578DE1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.251070998999978, 50.253914019000028 ], [ -119.251062707999907, 50.252925291000111 ], [ -119.247672698999935, 50.252916193000054 ], [ -119.247628247999955, 50.252911391000069 ], [ -119.247527272999932, 50.252900455000045 ], [ -119.24742631699992, 50.252889542000048 ], [ -119.247325377, 50.252878595000034 ], [ -119.247224421999988, 50.252867682000037 ], [ -119.24712346499993, 50.252856770000108 ], [ -119.247022489999964, 50.252845833000094 ], [ -119.246921516999947, 50.252834896000067 ], [ -119.246820596999939, 50.25282397400013 ], [ -119.24671960299996, 50.25281307100002 ], [ -119.246618666999922, 50.252802123000059 ], [ -119.246534348999916, 50.252792984000067 ], [ -119.246517709000017, 50.252791210000062 ], [ -119.246382978999947, 50.252793619000073 ], [ -119.246234402999946, 50.252796298000135 ], [ -119.24608582499998, 50.252798979000012 ], [ -119.245937251999976, 50.252801600000026 ], [ -119.245788674999986, 50.252804280000134 ], [ -119.245640135999963, 50.252806948000035 ], [ -119.245491542999943, 50.25280960200007 ], [ -119.245343000999981, 50.25281227100006 ], [ -119.245194425999927, 50.252814948000029 ], [ -119.245045831999931, 50.252817604000029 ], [ -119.244897274999957, 50.252820247000102 ], [ -119.244748698999899, 50.252822925000039 ], [ -119.24460015899993, 50.252825592000079 ], [ -119.24445158199994, 50.252828269000062 ], [ -119.244302988999962, 50.252830923000062 ], [ -119.244154431999959, 50.252833564000113 ], [ -119.24400585599993, 50.252836241000125 ], [ -119.243857314999943, 50.252838907000026 ], [ -119.243708755999975, 50.252841548000099 ], [ -119.243560143999915, 50.252844235000097 ], [ -119.243411604999935, 50.252846901000062 ], [ -119.243263010999954, 50.25284955300004 ], [ -119.243114469999966, 50.252852217000068 ], [ -119.242965875999985, 50.252854869 ], [ -119.242817335999931, 50.252857532000093 ], [ -119.242668758999969, 50.252860206000037 ], [ -119.242520165999977, 50.252862857000096 ], [ -119.24237162699994, 50.252865521000061 ], [ -119.242273235999974, 50.252867279000071 ], [ -119.242223085999953, 50.252868184000114 ], [ -119.242074491999972, 50.252870835000067 ], [ -119.241931629999954, 50.252873387000086 ], [ -119.24178878799999, 50.252875905000074 ], [ -119.241645908999914, 50.252878434000145 ], [ -119.241503085999966, 50.252880976000071 ], [ -119.241360225999983, 50.252883470000036 ], [ -119.241217347999978, 50.252885999000078 ], [ -119.241074520999987, 50.252888539000068 ], [ -119.240931644999975, 50.252891068000061 ], [ -119.240788838999947, 50.252893574000034 ], [ -119.240645939999979, 50.252896136000118 ], [ -119.240503098, 50.252898653000017 ], [ -119.240360292999966, 50.252901159000061 ], [ -119.240284850999942, 50.252902492000075 ], [ -119.240217377999926, 50.252903695000029 ], [ -119.24007457299993, 50.252906201000016 ], [ -119.240019084999986, 50.252907198000045 ], [ -119.239944910999938, 50.250859480000102 ], [ -119.241546248999924, 50.25082859200004 ], [ -119.241580690999953, 50.251562365000098 ], [ -119.24251181299995, 50.251619498000117 ], [ -119.243266133999953, 50.251604934000078 ], [ -119.243268997999934, 50.251665953000064 ], [ -119.244113154999951, 50.251717737000057 ], [ -119.244094421999989, 50.251319088000081 ], [ -119.244514898999967, 50.251310964000012 ], [ -119.244476887999951, 50.250502156000024 ], [ -119.243635946999959, 50.250518402000083 ], [ -119.243648612999948, 50.25078800400005 ], [ -119.242387196999985, 50.250812361000087 ], [ -119.242334949999957, 50.249699604000043 ], [ -119.241641915999963, 50.249657078000105 ], [ -119.241655960999978, 50.249563090000045 ], [ -119.240380983999941, 50.249484842000051 ], [ -119.240397964999914, 50.249371217000032 ], [ -119.240038179999914, 50.249349134000028 ], [ -119.240070391999936, 50.249133612000072 ], [ -119.239885866999941, 50.249122286000095 ], [ -119.239882209999976, 50.249008488000058 ], [ -119.239893931, 50.248930072000142 ], [ -119.23987966199995, 50.248929197000081 ], [ -119.239826344, 50.247270151000052 ], [ -119.2413235099999, 50.247073713000105 ], [ -119.241668587999953, 50.24734745700006 ], [ -119.242013037999953, 50.247587966000033 ], [ -119.242368791999979, 50.247790390000048 ], [ -119.242861729999973, 50.247989455000045 ], [ -119.243165686999944, 50.248093546000106 ], [ -119.243809280999955, 50.248313937000027 ], [ -119.244810676999975, 50.248655329000051 ], [ -119.24519858599993, 50.248746826000115 ], [ -119.245855386999935, 50.248829405000066 ], [ -119.246599393999958, 50.248922992000089 ], [ -119.247262402999937, 50.249106305000076 ], [ -119.247907102999932, 50.249345296000065 ], [ -119.249362331999976, 50.249937898000113 ], [ -119.249789117999967, 50.250111702000041 ], [ -119.250318696999955, 50.250216304000062 ], [ -119.251182713999953, 50.250242212000089 ], [ -119.251281520999939, 50.249882596000106 ], [ -119.251416607999928, 50.249638126000036 ], [ -119.251603212999925, 50.249444622000119 ], [ -119.2517503099999, 50.249337124000057 ], [ -119.252086554999906, 50.249141946000059 ], [ -119.252429664999937, 50.249013980000043 ], [ -119.25280592199999, 50.248937730000058 ], [ -119.253439058999973, 50.248877207000085 ], [ -119.253677706999952, 50.248854801000121 ], [ -119.254070933999984, 50.248730837000018 ], [ -119.254313579999987, 50.248605755 ], [ -119.254626822999953, 50.248375764000052 ], [ -119.255563670999919, 50.247553756000023 ], [ -119.256146989999976, 50.24704325900003 ], [ -119.257698720999912, 50.247756724000084 ], [ -119.259372648999914, 50.246261154000123 ], [ -119.259507643999925, 50.245988628000063 ], [ -119.259507296999985, 50.245929546000042 ], [ -119.259506408999982, 50.245789037000058 ], [ -119.259428050999986, 50.245577489000063 ], [ -119.259290715999953, 50.245393032000081 ], [ -119.258595242999959, 50.244908063000032 ], [ -119.260087654999921, 50.244232894000064 ], [ -119.260350941999945, 50.2441207890001 ], [ -119.260661218999942, 50.243947497000057 ], [ -119.26074472799999, 50.243889070000122 ], [ -119.260970989, 50.243730790000058 ], [ -119.261216898999947, 50.243498506000059 ], [ -119.261415042999886, 50.243234231000073 ], [ -119.261480707999937, 50.243146639000074 ], [ -119.261550899999989, 50.243053 ], [ -119.261628066999918, 50.242849248000077 ], [ -119.261650813999893, 50.242789213000073 ], [ -119.261698267999961, 50.242659391000089 ], [ -119.261742014999982, 50.242319004000073 ], [ -119.261707309999949, 50.240395609000089 ], [ -119.261645010999985, 50.239470904 ], [ -119.261627255999926, 50.238995972000055 ], [ -119.261607909999924, 50.238478458000124 ], [ -119.262305217999938, 50.238430441000055 ], [ -119.266548484999987, 50.238199922000049 ], [ -119.266185477999898, 50.239342389000043 ], [ -119.266148396999967, 50.239679600000052 ], [ -119.265986389999938, 50.241153037000068 ], [ -119.26587839599992, 50.241783844000039 ], [ -119.265691880999981, 50.24253534300005 ], [ -119.265322875999985, 50.244616399000094 ], [ -119.26524050299993, 50.244904764000111 ], [ -119.265153075999976, 50.245090845000064 ], [ -119.265085866999968, 50.245233878000114 ], [ -119.264861711999927, 50.24560386700005 ], [ -119.264702163999956, 50.245845052000078 ], [ -119.264598212999942, 50.246002205000082 ], [ -119.264520174999973, 50.246094722000038 ], [ -119.264358597999944, 50.246286293 ], [ -119.264048800999959, 50.24653190300004 ], [ -119.26348427299996, 50.246879578000069 ], [ -119.263471161999917, 50.246887672000106 ], [ -119.263018286999909, 50.247166574000076 ], [ -119.26296596, 50.247198804000057 ], [ -119.262945988999917, 50.247211107000062 ], [ -119.262670880999949, 50.247478693000083 ], [ -119.262607335999974, 50.247583468000059 ], [ -119.26246548599994, 50.247817299000126 ], [ -119.262408206999936, 50.247993497000017 ], [ -119.262377, 50.248335507000057 ], [ -119.262372011999958, 50.249627204000042 ], [ -119.26237288399993, 50.25010608000013 ], [ -119.262375270999911, 50.251374823000077 ], [ -119.26237629299996, 50.25193420100004 ], [ -119.262380918999909, 50.253237167000115 ], [ -119.26238263499999, 50.253716794000049 ], [ -119.259972151999989, 50.253705632000077 ], [ -119.259385843999951, 50.253848516000168 ], [ -119.258366785999939, 50.25425742200008 ], [ -119.257894456999963, 50.254448797000059 ], [ -119.257613360999969, 50.254491204000047 ], [ -119.256830844999939, 50.254456826000116 ], [ -119.25656869699999, 50.254485927000054 ], [ -119.256321580999952, 50.254555669000034 ], [ -119.256102962999961, 50.254651520000039 ], [ -119.256091027999943, 50.25465940800008 ], [ -119.255627807999986, 50.254965514000105 ], [ -119.255266014999975, 50.255123920000102 ], [ -119.253658971999982, 50.255549126000055 ], [ -119.253520390999924, 50.255585815000082 ], [ -119.252168014999938, 50.255857786000114 ], [ -119.251061472999965, 50.256237791000117 ], [ -119.251070590999973, 50.255391088000074 ], [ -119.251077786999986, 50.254722015000027 ], [ -119.251076285999901, 50.254543321000021 ], [ -119.251070998999978, 50.253914019000028 ] ], [ [ -119.26359966199999, 50.24107745400002 ], [ -119.263685785999925, 50.240499082000021 ], [ -119.262943796999977, 50.240453686000123 ], [ -119.263060533, 50.239669805000062 ], [ -119.262872997000017, 50.239658331000044 ], [ -119.26283824399998, 50.239891695000075 ], [ -119.262912434999961, 50.239890249000027 ], [ -119.263001827999958, 50.24177744800005 ], [ -119.26333899899997, 50.241770877000121 ], [ -119.263443680999927, 50.24106791200014 ], [ -119.26359966199999, 50.24107745400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261310667", "BldgCostT": "171901667", "sL_LossRatio": "0.99950751494658", "sL_AssetLoss": "17584.29", "sL_BldgLoss": "17575.63", "sL_StrLoss": "17572.5", "sL_NStrLoss": "3.13", "sL_ContLoss": "8.66", "geom_point": "0101000020E6100000C1F407143BD05DC020945A9C6F1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.248127297999972, 50.246648030000088 ], [ -119.248191919999925, 50.245431634000035 ], [ -119.248721939999982, 50.245382297000049 ], [ -119.25062633399989, 50.245179891000092 ], [ -119.250927616999945, 50.243264031000095 ], [ -119.252133332999932, 50.243337923000077 ], [ -119.252135238999983, 50.243337886000049 ], [ -119.252122527999944, 50.243068284000103 ], [ -119.252542928999958, 50.243060133000014 ], [ -119.252441236, 50.240903320000015 ], [ -119.252861619000015, 50.240895167000048 ], [ -119.252848903999976, 50.240625566000091 ], [ -119.253689664999953, 50.240609256000027 ], [ -119.253638793999983, 50.239530850000087 ], [ -119.254059164999987, 50.239522694000058 ], [ -119.254046445999947, 50.239253092000041 ], [ -119.255727916999959, 50.239220450000076 ], [ -119.255740644999932, 50.239490051000068 ], [ -119.256161013999986, 50.23948188700016 ], [ -119.256186476999943, 50.240021089000074 ], [ -119.256523386999973, 50.240014544000125 ], [ -119.256558641, 50.240137268000055 ], [ -119.256384534999924, 50.240380897000087 ], [ -119.255394227999957, 50.24079923700004 ], [ -119.255133511999972, 50.240981736000037 ], [ -119.25423647799991, 50.241263561000075 ], [ -119.25397192099993, 50.241384571000026 ], [ -119.253817779999935, 50.241492508000107 ], [ -119.253673125999967, 50.241659696000177 ], [ -119.253611554999935, 50.241836487000036 ], [ -119.253621147999965, 50.242017676000039 ], [ -119.253730493999939, 50.242276254000068 ], [ -119.253877675999945, 50.242583210000056 ], [ -119.254281005999971, 50.243184847000073 ], [ -119.254335865999977, 50.243496991000065 ], [ -119.254272860999947, 50.243730576000118 ], [ -119.254168365999945, 50.243893007000025 ], [ -119.253658418999962, 50.244308672000059 ], [ -119.253530942999987, 50.244502206000078 ], [ -119.253440129999959, 50.244880970000104 ], [ -119.253437736999956, 50.244891045 ], [ -119.253312888999972, 50.245091531000085 ], [ -119.253143170999977, 50.245364156000143 ], [ -119.253442647999989, 50.245387011000076 ], [ -119.253855428999898, 50.245330148000086 ], [ -119.254274147999951, 50.245186057000062 ], [ -119.254829475999927, 50.244768636000074 ], [ -119.255382850999951, 50.244278886000089 ], [ -119.255597911999985, 50.243960722000033 ], [ -119.255724324999989, 50.243613636000092 ], [ -119.25576804399999, 50.243046630000059 ], [ -119.255777101999939, 50.242928893000098 ], [ -119.255857536999955, 50.242795697000084 ], [ -119.257138836999928, 50.243262368000089 ], [ -119.257552794999967, 50.243396085000107 ], [ -119.257702305999956, 50.24341965500011 ], [ -119.257880397999912, 50.243447697000093 ], [ -119.258171389999973, 50.243451111000127 ], [ -119.258791996999918, 50.243322997000099 ], [ -119.25921010899999, 50.243211286000104 ], [ -119.25956711500001, 50.24301829500007 ], [ -119.260420720999903, 50.243453391000095 ], [ -119.260970989, 50.243730790000058 ], [ -119.26074472799999, 50.243889070000122 ], [ -119.260661218999942, 50.243947497000057 ], [ -119.260350941999945, 50.2441207890001 ], [ -119.260087654999921, 50.244232894000064 ], [ -119.258595242999959, 50.244908063000032 ], [ -119.259290715999953, 50.245393032000081 ], [ -119.259428050999986, 50.245577489000063 ], [ -119.259506408999982, 50.245789037000058 ], [ -119.259507296999985, 50.245929546000042 ], [ -119.259507643999925, 50.245988628000063 ], [ -119.259372648999914, 50.246261154000123 ], [ -119.257698720999912, 50.247756724000084 ], [ -119.256146989999976, 50.24704325900003 ], [ -119.255563670999919, 50.247553756000023 ], [ -119.254626822999953, 50.248375764000052 ], [ -119.254313579999987, 50.248605755 ], [ -119.254070933999984, 50.248730837000018 ], [ -119.253677706999952, 50.248854801000121 ], [ -119.253439058999973, 50.248877207000085 ], [ -119.25280592199999, 50.248937730000058 ], [ -119.252429664999937, 50.249013980000043 ], [ -119.252086554999906, 50.249141946000059 ], [ -119.2517503099999, 50.249337124000057 ], [ -119.251603212999925, 50.249444622000119 ], [ -119.251416607999928, 50.249638126000036 ], [ -119.251281520999939, 50.249882596000106 ], [ -119.251182713999953, 50.250242212000089 ], [ -119.250318696999955, 50.250216304000062 ], [ -119.249789117999967, 50.250111702000041 ], [ -119.249362331999976, 50.249937898000113 ], [ -119.247907102999932, 50.249345296000065 ], [ -119.248358279999934, 50.24841492300007 ], [ -119.248213044, 50.248350206000048 ], [ -119.248127297999972, 50.246648030000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2107333", "BldgCostT": "1453333", "sL_LossRatio": "1", "sL_AssetLoss": "282", "sL_BldgLoss": "282", "sL_StrLoss": "282", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D1507E94CD05DC0350BD5498D1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254454090999928, 50.23897533300007 ], [ -119.254441369999952, 50.238705732000042 ], [ -119.254021007999924, 50.238713889000024 ], [ -119.25400781799999, 50.238434316000117 ], [ -119.254998761999914, 50.23841839300006 ], [ -119.25511376499999, 50.238615751000069 ], [ -119.255367150999973, 50.23889158100004 ], [ -119.255449134999978, 50.238956016000067 ], [ -119.254454090999928, 50.23897533300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.9", "sL_BldgLoss": "91.9", "sL_StrLoss": "91.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005760CFA58D05DC05FD91E208C1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254998761999914, 50.23841839300006 ], [ -119.25569034599999, 50.238424696000052 ], [ -119.255715185999946, 50.238950849000069 ], [ -119.255449134999978, 50.238956016000067 ], [ -119.255367150999973, 50.23889158100004 ], [ -119.25511376499999, 50.238615751000069 ], [ -119.254998761999914, 50.23841839300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "211214834", "BldgCostT": "139618334", "sL_LossRatio": "0.999491226144991", "sL_AssetLoss": "13031.33", "sL_BldgLoss": "13024.7", "sL_StrLoss": "13022.3", "sL_NStrLoss": "2.4", "sL_ContLoss": "6.63", "geom_point": "0101000020E61000008282629683D05DC0E204F91BE51E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254281005999971, 50.243184847000073 ], [ -119.253877675999945, 50.242583210000056 ], [ -119.253730493999939, 50.242276254000068 ], [ -119.253621147999965, 50.242017676000039 ], [ -119.253611554999935, 50.241836487000036 ], [ -119.253673125999967, 50.241659696000177 ], [ -119.253817779999935, 50.241492508000107 ], [ -119.25397192099993, 50.241384571000026 ], [ -119.25423647799991, 50.241263561000075 ], [ -119.255133511999972, 50.240981736000037 ], [ -119.255394227999957, 50.24079923700004 ], [ -119.256384534999924, 50.240380897000087 ], [ -119.256558641, 50.240137268000055 ], [ -119.256523386999973, 50.240014544000125 ], [ -119.25702722299999, 50.240004755000093 ], [ -119.257001751999923, 50.239465554000049 ], [ -119.256581382999983, 50.239473720000042 ], [ -119.256568648999945, 50.239204120000132 ], [ -119.256148281999955, 50.239212286000054 ], [ -119.256111272999959, 50.238428531000118 ], [ -119.261607909999924, 50.238478458000124 ], [ -119.261627255999926, 50.238995972000055 ], [ -119.261645010999985, 50.239470904 ], [ -119.261707309999949, 50.240395609000089 ], [ -119.261742014999982, 50.242319004000073 ], [ -119.261698267999961, 50.242659391000089 ], [ -119.261650813999893, 50.242789213000073 ], [ -119.261628066999918, 50.242849248000077 ], [ -119.261550899999989, 50.243053 ], [ -119.261480707999937, 50.243146639000074 ], [ -119.261415042999886, 50.243234231000073 ], [ -119.261216898999947, 50.243498506000059 ], [ -119.260970989, 50.243730790000058 ], [ -119.260420720999903, 50.243453391000095 ], [ -119.25956711500001, 50.24301829500007 ], [ -119.25921010899999, 50.243211286000104 ], [ -119.258791996999918, 50.243322997000099 ], [ -119.258171389999973, 50.243451111000127 ], [ -119.257880397999912, 50.243447697000093 ], [ -119.257702305999956, 50.24341965500011 ], [ -119.257552794999967, 50.243396085000107 ], [ -119.257138836999928, 50.243262368000089 ], [ -119.255857536999955, 50.242795697000084 ], [ -119.255777101999939, 50.242928893000098 ], [ -119.25576804399999, 50.243046630000059 ], [ -119.255724324999989, 50.243613636000092 ], [ -119.255597911999985, 50.243960722000033 ], [ -119.255382850999951, 50.244278886000089 ], [ -119.254829475999927, 50.244768636000074 ], [ -119.254274147999951, 50.245186057000062 ], [ -119.253855428999898, 50.245330148000086 ], [ -119.253442647999989, 50.245387011000076 ], [ -119.253143170999977, 50.245364156000143 ], [ -119.253312888999972, 50.245091531000085 ], [ -119.253437736999956, 50.244891045 ], [ -119.253440129999959, 50.244880970000104 ], [ -119.253530942999987, 50.244502206000078 ], [ -119.253658418999962, 50.244308672000059 ], [ -119.254168365999945, 50.243893007000025 ], [ -119.254272860999947, 50.243730576000118 ], [ -119.254335865999977, 50.243496991000065 ], [ -119.254281005999971, 50.243184847000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "372800916", "BldgCostT": "248316666", "sL_LossRatio": "0.999712124085899", "sL_AssetLoss": "23725.5", "sL_BldgLoss": "23718.67", "sL_StrLoss": "23716.2", "sL_NStrLoss": "2.47", "sL_ContLoss": "6.83", "geom_point": "0101000020E6100000356EF7936DCF5DC0A65A666CC31D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.239457786999964, 50.243965908000064 ], [ -119.239503580999965, 50.243282601000075 ], [ -119.239461506999973, 50.242923389000055 ], [ -119.239305692999935, 50.242627588000047 ], [ -119.238627314999974, 50.242048690000026 ], [ -119.238012995999895, 50.241380803000027 ], [ -119.237939684999958, 50.241230004000087 ], [ -119.23788818099996, 50.24075460500007 ], [ -119.237716696999925, 50.240441702000119 ], [ -119.237403903, 50.240036889000073 ], [ -119.237117465999972, 50.239758281000022 ], [ -119.23691072299998, 50.2395571240001 ], [ -119.236410287999959, 50.239070297000112 ], [ -119.236221780000022, 50.238832996000092 ], [ -119.235921303999945, 50.23820508300004 ], [ -119.235869719000021, 50.238121431000096 ], [ -119.235498502999988, 50.237519116000087 ], [ -119.235247655999984, 50.23700172900007 ], [ -119.235153657999959, 50.236500240000098 ], [ -119.234388511999953, 50.236500033000077 ], [ -119.23094952699995, 50.236499193000078 ], [ -119.23007603, 50.23650051900006 ], [ -119.228557683999924, 50.234776664000037 ], [ -119.228282828999966, 50.234464590000115 ], [ -119.227990899999966, 50.234133094000057 ], [ -119.227647116999961, 50.233795 ], [ -119.227450594999979, 50.23350850900006 ], [ -119.227434690999957, 50.233304287000088 ], [ -119.2275007099999, 50.233154884000086 ], [ -119.227663517999986, 50.232951814000025 ], [ -119.227947800000024, 50.232680399000117 ], [ -119.228082219999948, 50.232554103000062 ], [ -119.228239714999987, 50.232264098000066 ], [ -119.22824200099997, 50.232226828000144 ], [ -119.228267278999922, 50.231816094000131 ], [ -119.228250303999971, 50.230959991000098 ], [ -119.228238900999941, 50.229954391000014 ], [ -119.228212379999917, 50.228908102000048 ], [ -119.228212093999943, 50.228567072000047 ], [ -119.228211317999964, 50.227658570000102 ], [ -119.228211123999969, 50.227460604000036 ], [ -119.228210872999924, 50.227181996000098 ], [ -119.228210592999957, 50.226840483000082 ], [ -119.228208747999957, 50.224708193000012 ], [ -119.228208611999946, 50.224557708000091 ], [ -119.228205008999936, 50.223640995000089 ], [ -119.228870498000035, 50.223643998000064 ], [ -119.230017684999964, 50.223646890000062 ], [ -119.232070380999943, 50.223639494000047 ], [ -119.23319801699995, 50.223641121000036 ], [ -119.23375907399992, 50.223655732000068 ], [ -119.234455334999936, 50.223726522000064 ], [ -119.235942654999974, 50.223921774000075 ], [ -119.236453655999938, 50.223987083000068 ], [ -119.236554686999938, 50.224000006000068 ], [ -119.237110908999966, 50.224028800000049 ], [ -119.237567495999883, 50.224026086000045 ], [ -119.238488703999934, 50.223948186000037 ], [ -119.239526906999942, 50.223691388000098 ], [ -119.239752026999938, 50.223635709000071 ], [ -119.240223661999963, 50.223617279000059 ], [ -119.240407802999954, 50.223610092000094 ], [ -119.240437189999938, 50.223612567000046 ], [ -119.240772081999978, 50.22364059700007 ], [ -119.242008636, 50.223827792000051 ], [ -119.243060272999941, 50.223986986000114 ], [ -119.243220291999975, 50.224011206000071 ], [ -119.243734916999969, 50.22414849900008 ], [ -119.24466622499996, 50.224512606000104 ], [ -119.245168584999973, 50.224778866000051 ], [ -119.245550749999936, 50.224981437000039 ], [ -119.245693091999968, 50.22505688899999 ], [ -119.245980989999978, 50.22518469700006 ], [ -119.246038614000014, 50.225201823000113 ], [ -119.24657430399999, 50.225361013000104 ], [ -119.247682359999942, 50.225505658000031 ], [ -119.24802390499994, 50.225550222000059 ], [ -119.24807571299999, 50.225556994000101 ], [ -119.248421307999934, 50.22559979600009 ], [ -119.249664998999918, 50.225663490000038 ], [ -119.250046195999971, 50.225685094000077 ], [ -119.250322592999936, 50.225738992000089 ], [ -119.250776708000018, 50.225885202000036 ], [ -119.251403993999958, 50.226135797000062 ], [ -119.252739890999976, 50.22676209600008 ], [ -119.253639996999979, 50.227062010000047 ], [ -119.254693886999974, 50.227303488000054 ], [ -119.254653640999948, 50.227802055000048 ], [ -119.253287679999957, 50.22874783700005 ], [ -119.251814264999965, 50.229767921000089 ], [ -119.253110368999927, 50.230793560000116 ], [ -119.25319697899999, 50.230862090000137 ], [ -119.253354131999956, 50.230986421000075 ], [ -119.253655848999969, 50.231225162000051 ], [ -119.253691848999921, 50.231261465000095 ], [ -119.254176118999951, 50.231750007000109 ], [ -119.254316587999938, 50.231961319000035 ], [ -119.254541435999954, 50.232299550000029 ], [ -119.254895107, 50.232831516000076 ], [ -119.255106100999967, 50.233069218000068 ], [ -119.255425788999929, 50.233333506000065 ], [ -119.255804853999933, 50.233546310000108 ], [ -119.25581572, 50.233552393000096 ], [ -119.256320719999934, 50.233754898000086 ], [ -119.257696401999965, 50.234182181000051 ], [ -119.25811048599995, 50.234361009000104 ], [ -119.258485101999938, 50.23456001300012 ], [ -119.259029204999976, 50.234925607000044 ], [ -119.25989348399996, 50.235675498000077 ], [ -119.261267189999984, 50.237373887000054 ], [ -119.261458800999918, 50.237676407000087 ], [ -119.261542619999958, 50.237889090000067 ], [ -119.261597002999935, 50.238185901000044 ], [ -119.261607909999924, 50.238478458000124 ], [ -119.256111272999959, 50.238428531000118 ], [ -119.25611009, 50.238403482000066 ], [ -119.256530449999943, 50.238395317000034 ], [ -119.25651771599999, 50.238125715000081 ], [ -119.257470067999961, 50.238107212000074 ], [ -119.257539224999974, 50.23764316800002 ], [ -119.259929740999937, 50.237789533000047 ], [ -119.260288170999985, 50.237782558000056 ], [ -119.260249908999981, 50.236973757000094 ], [ -119.259829562999982, 50.236981935000138 ], [ -119.259804060999954, 50.236442734000036 ], [ -119.259383719999917, 50.236450911000119 ], [ -119.259377729999954, 50.236324263000029 ], [ -119.258602124999982, 50.236276775000114 ], [ -119.258627224999927, 50.236108320000085 ], [ -119.258097118999942, 50.236075861000103 ], [ -119.258110288999902, 50.235987488000077 ], [ -119.257613210999963, 50.235957048000131 ], [ -119.25763251699999, 50.235827489000094 ], [ -119.25682757599999, 50.235778191000058 ], [ -119.256861665999978, 50.236499943000062 ], [ -119.255180292999938, 50.236532601000093 ], [ -119.255193017999943, 50.236802202000071 ], [ -119.255613363999927, 50.236794040000049 ], [ -119.25569034599999, 50.238424696000052 ], [ -119.254998761999914, 50.23841839300006 ], [ -119.25400781799999, 50.238434316000117 ], [ -119.253944697999884, 50.237096281000071 ], [ -119.253524348999974, 50.237104436000038 ], [ -119.253498916999916, 50.236565234000054 ], [ -119.253078572999968, 50.236573388000132 ], [ -119.253065859999964, 50.2363037860001 ], [ -119.25264551799998, 50.236311939000075 ], [ -119.252632807999987, 50.23604233700005 ], [ -119.252212467999982, 50.236050489000085 ], [ -119.252187052999901, 50.235511284000061 ], [ -119.251766717999956, 50.235519435000057 ], [ -119.251741308999939, 50.234980231000073 ], [ -119.247537989999955, 50.235061640000104 ], [ -119.247525308999911, 50.234792039000034 ], [ -119.244582990999987, 50.234848934000119 ], [ -119.244532336999967, 50.233770521000032 ], [ -119.244952659999981, 50.233762397000071 ], [ -119.244939994, 50.23349279500006 ], [ -119.245360313, 50.233484670000024 ], [ -119.245347645999956, 50.233215066000099 ], [ -119.244927328999935, 50.233223190000082 ], [ -119.244889334, 50.232414381000133 ], [ -119.245309643999946, 50.232406257000072 ], [ -119.245284310999949, 50.231867050000069 ], [ -119.24486400499994, 50.231875173000077 ], [ -119.244876669999954, 50.232144777000052 ], [ -119.244456360999948, 50.23215290000006 ], [ -119.244469021999976, 50.232422504000056 ], [ -119.243208092000017, 50.232446863000071 ], [ -119.243202962999959, 50.232337622000067 ], [ -119.243170126999985, 50.2316380520001 ], [ -119.24359043099993, 50.231629933000058 ], [ -119.243565116999946, 50.231090726000026 ], [ -119.243985416999976, 50.231082606000065 ], [ -119.243972756999966, 50.230813003000037 ], [ -119.244393054999989, 50.230804882000072 ], [ -119.244380392999972, 50.230535279000058 ], [ -119.244800686999952, 50.230527156000093 ], [ -119.244788021999938, 50.230257552000118 ], [ -119.245208315, 50.23024943000015 ], [ -119.245195649, 50.229979825000015 ], [ -119.246036226999962, 50.22996357300017 ], [ -119.246023555999926, 50.229693970000092 ], [ -119.24686412799997, 50.229677712000075 ], [ -119.246851453999938, 50.229408109000097 ], [ -119.247271735999959, 50.229399978000117 ], [ -119.247259059999976, 50.229130375000089 ], [ -119.247679341, 50.229122243000106 ], [ -119.247666661999986, 50.228852640000142 ], [ -119.248086940999954, 50.228844505000069 ], [ -119.248074259, 50.228574902000098 ], [ -119.249216277999906, 50.22855279300007 ], [ -119.249218622999976, 50.228537073000084 ], [ -119.248834597999931, 50.228513521000096 ], [ -119.248844435999928, 50.228447583000062 ], [ -119.248554693999921, 50.228429812000051 ], [ -119.248599945999928, 50.228126513000078 ], [ -119.248324307999923, 50.228109607000043 ], [ -119.248332771999941, 50.228052882000014 ], [ -119.247892797999953, 50.22802589500003 ], [ -119.247906816999915, 50.227931931000036 ], [ -119.246632563999981, 50.22785376100007 ], [ -119.246643369999958, 50.227781350000079 ], [ -119.246159253999977, 50.227751647000112 ], [ -119.246190360999918, 50.227543224000094 ], [ -119.245628250999957, 50.227508733000093 ], [ -119.245631412999927, 50.227487558000057 ], [ -119.245267441999957, 50.227465224000078 ], [ -119.24527746699999, 50.227398056000055 ], [ -119.243677795999986, 50.227299880000011 ], [ -119.243680386999984, 50.227282528000089 ], [ -119.241899939999954, 50.227173230000105 ], [ -119.241916078999949, 50.227065168000117 ], [ -119.238797567999939, 50.226873659000105 ], [ -119.238783296999955, 50.226969173000043 ], [ -119.238695375999953, 50.226963773000136 ], [ -119.238650207999953, 50.227266076000049 ], [ -119.23403867299993, 50.226982712000094 ], [ -119.233833364999924, 50.228355805 ], [ -119.238187950999972, 50.228623385000056 ], [ -119.23800887, 50.229821769000068 ], [ -119.238484422999932, 50.229850980000037 ], [ -119.238363300999964, 50.230661540000092 ], [ -119.24294323799991, 50.230942759000051 ], [ -119.242679144999983, 50.232711170000123 ], [ -119.242408772999966, 50.234521471000043 ], [ -119.240456723999927, 50.234401635000026 ], [ -119.24042888, 50.23439992600003 ], [ -119.240425300999974, 50.234423877000047 ], [ -119.240376452999968, 50.234750838000124 ], [ -119.240755774999982, 50.234774128000033 ], [ -119.24031216899999, 50.237743271000035 ], [ -119.24109326599995, 50.237791224000034 ], [ -119.24100163699994, 50.238404540000047 ], [ -119.241716288999967, 50.238448408000096 ], [ -119.241409888999954, 50.240499356000043 ], [ -119.242366907999951, 50.240558095000068 ], [ -119.242270355999949, 50.241204440000054 ], [ -119.242885334999983, 50.241242182000065 ], [ -119.242842835999923, 50.241526701000048 ], [ -119.24296145199996, 50.241533980000028 ], [ -119.242921656999968, 50.241800395000041 ], [ -119.243278159999988, 50.241822273000103 ], [ -119.243213287999978, 50.242256591000064 ], [ -119.243704975999975, 50.242286761000109 ], [ -119.24368153599994, 50.242443701000049 ], [ -119.244154971999976, 50.242472749000058 ], [ -119.244126799999918, 50.242661391000112 ], [ -119.244657269999934, 50.242693935000069 ], [ -119.244473819999911, 50.243922336000047 ], [ -119.248129443999929, 50.244146543000063 ], [ -119.24811769499992, 50.244225255000103 ], [ -119.249230484999927, 50.244203713000104 ], [ -119.249238715999951, 50.244378505000071 ], [ -119.249680138999921, 50.244405566000061 ], [ -119.24986024899999, 50.243198606000149 ], [ -119.250927616999945, 50.243264031000095 ], [ -119.25062633399989, 50.245179891000092 ], [ -119.248721939999982, 50.245382297000049 ], [ -119.248191919999925, 50.245431634000035 ], [ -119.24588990899997, 50.245441121000077 ], [ -119.239274682999962, 50.245468132000084 ], [ -119.239266289999989, 50.245463645000051 ], [ -119.238965012999955, 50.245302627000058 ], [ -119.238805026999955, 50.245157377000076 ], [ -119.238733203999928, 50.244968769000067 ], [ -119.238733881999934, 50.244966439000045 ], [ -119.238786424999958, 50.244782452000088 ], [ -119.238986611999934, 50.244574310000118 ], [ -119.239128328999939, 50.244426938000061 ], [ -119.239375417999923, 50.244159500000073 ], [ -119.239457786999964, 50.243965908000064 ] ], [ [ -119.247385836999939, 50.231826406000017 ], [ -119.247398513999983, 50.232096009000017 ], [ -119.246978205999966, 50.232104141000036 ], [ -119.247003558999964, 50.232643347000057 ], [ -119.246583246999975, 50.232651477000033 ], [ -119.246608595999973, 50.233190684000093 ], [ -119.247028913999927, 50.233182553000113 ], [ -119.247041589999952, 50.233452156000034 ], [ -119.249983818999922, 50.233395199 ], [ -119.24999651199991, 50.233664800000085 ], [ -119.250837149999967, 50.233648513000048 ], [ -119.250811754999958, 50.233109309000071 ], [ -119.251232066999933, 50.233101163000114 ], [ -119.251206666999977, 50.232561958000041 ], [ -119.250786357999914, 50.232570104000054 ], [ -119.25074826399999, 50.231761297 ], [ -119.247385836999939, 50.231826406000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98226583", "BldgCostT": "65323333", "sL_LossRatio": "0.996635938343284", "sL_AssetLoss": "4131.91", "sL_BldgLoss": "4118.01", "sL_StrLoss": "4113", "sL_NStrLoss": "5.01", "sL_ContLoss": "13.9", "geom_point": "0101000020E61000007BFDD525DBD05DC0307F85CC151E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.257696401999965, 50.234182181000051 ], [ -119.256320719999934, 50.233754898000086 ], [ -119.25581572, 50.233552393000096 ], [ -119.255804853999933, 50.233546310000108 ], [ -119.255425788999929, 50.233333506000065 ], [ -119.255658897999965, 50.233140104000064 ], [ -119.255875690999972, 50.233007990000033 ], [ -119.256125170999937, 50.232912190000029 ], [ -119.256509615999931, 50.232884303000041 ], [ -119.256602619999967, 50.232899807000123 ], [ -119.257383606999952, 50.233029984000034 ], [ -119.258057892999929, 50.233173312000083 ], [ -119.259224110999952, 50.233579603000159 ], [ -119.260213701999959, 50.233969811000087 ], [ -119.260841902999957, 50.234130087000139 ], [ -119.261868920000012, 50.234374396000057 ], [ -119.262085295999967, 50.23436779200005 ], [ -119.262259918999945, 50.234320703000037 ], [ -119.262408606999927, 50.234220598000064 ], [ -119.26245989100002, 50.234112706000055 ], [ -119.262462803999981, 50.233932284000076 ], [ -119.26245999299995, 50.23335907200002 ], [ -119.262452890999967, 50.231918312000062 ], [ -119.264075301999966, 50.231927291000048 ], [ -119.264559282999954, 50.231930803000104 ], [ -119.264962721999922, 50.231933744000045 ], [ -119.26557629399997, 50.231938184000043 ], [ -119.265995838999942, 50.23194122900005 ], [ -119.266380113999958, 50.231943991000065 ], [ -119.266625064999971, 50.231945764000017 ], [ -119.266628590999971, 50.231945803000059 ], [ -119.266670824999949, 50.231946105000063 ], [ -119.266838396999944, 50.231974407000074 ], [ -119.267043382999972, 50.23206369900003 ], [ -119.267304778999957, 50.232224371000079 ], [ -119.267475605999934, 50.232329385000064 ], [ -119.26759810599998, 50.232481389000036 ], [ -119.267715879999926, 50.232768490000069 ], [ -119.267737397999952, 50.233002689000095 ], [ -119.267684895999977, 50.233317295000056 ], [ -119.267307985999963, 50.234137502000117 ], [ -119.267181891999954, 50.234284208000147 ], [ -119.267178004999934, 50.234286632000142 ], [ -119.267034309999957, 50.234375963000069 ], [ -119.267008373999914, 50.234593250000088 ], [ -119.267042514, 50.234691387000048 ], [ -119.267209237999978, 50.234728491000077 ], [ -119.267257809999961, 50.234739307 ], [ -119.267212225999941, 50.234930410000111 ], [ -119.267123910999956, 50.235300898000055 ], [ -119.267107997999943, 50.235367613000122 ], [ -119.267103280999947, 50.235389765000086 ], [ -119.26701054399993, 50.235824715000021 ], [ -119.266996071000023, 50.235892454000101 ], [ -119.266933110999929, 50.236187906000033 ], [ -119.266804914999923, 50.23678910900005 ], [ -119.266621221999984, 50.23779988800009 ], [ -119.266585149999912, 50.237998157000042 ], [ -119.266548484999987, 50.238199922000049 ], [ -119.262305217999938, 50.238430441000055 ], [ -119.261607909999924, 50.238478458000124 ], [ -119.261597002999935, 50.238185901000044 ], [ -119.261542619999958, 50.237889090000067 ], [ -119.261458800999918, 50.237676407000087 ], [ -119.261267189999984, 50.237373887000054 ], [ -119.25989348399996, 50.235675498000077 ], [ -119.259029204999976, 50.234925607000044 ], [ -119.258485101999938, 50.23456001300012 ], [ -119.25811048599995, 50.234361009000104 ], [ -119.257696401999965, 50.234182181000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "125573667", "BldgCostT": "84656667", "sL_LossRatio": "1", "sL_AssetLoss": "8394.5", "sL_BldgLoss": "8394.5", "sL_StrLoss": "8394.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009252BFC18DD05DC0A101EDF58B1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.267043382999972, 50.23206369900003 ], [ -119.266838396999944, 50.231974407000074 ], [ -119.266670824999949, 50.231946105000063 ], [ -119.266628590999971, 50.231945803000059 ], [ -119.266625064999971, 50.231945764000017 ], [ -119.266380113999958, 50.231943991000065 ], [ -119.265995838999942, 50.23194122900005 ], [ -119.26557629399997, 50.231938184000043 ], [ -119.264962721999922, 50.231933744000045 ], [ -119.264559282999954, 50.231930803000104 ], [ -119.264075301999966, 50.231927291000048 ], [ -119.262452890999967, 50.231918312000062 ], [ -119.26245999299995, 50.23335907200002 ], [ -119.262462803999981, 50.233932284000076 ], [ -119.26245989100002, 50.234112706000055 ], [ -119.262408606999927, 50.234220598000064 ], [ -119.262259918999945, 50.234320703000037 ], [ -119.262085295999967, 50.23436779200005 ], [ -119.261868920000012, 50.234374396000057 ], [ -119.260841902999957, 50.234130087000139 ], [ -119.260213701999959, 50.233969811000087 ], [ -119.259224110999952, 50.233579603000159 ], [ -119.258057892999929, 50.233173312000083 ], [ -119.257383606999952, 50.233029984000034 ], [ -119.256602619999967, 50.232899807000123 ], [ -119.256509615999931, 50.232884303000041 ], [ -119.256125170999937, 50.232912190000029 ], [ -119.255875690999972, 50.233007990000033 ], [ -119.255658897999965, 50.233140104000064 ], [ -119.255425788999929, 50.233333506000065 ], [ -119.255106100999967, 50.233069218000068 ], [ -119.254895107, 50.232831516000076 ], [ -119.254541435999954, 50.232299550000029 ], [ -119.254316587999938, 50.231961319000035 ], [ -119.254176118999951, 50.231750007000109 ], [ -119.253691848999921, 50.231261465000095 ], [ -119.253655848999969, 50.231225162000051 ], [ -119.253354131999956, 50.230986421000075 ], [ -119.25319697899999, 50.230862090000137 ], [ -119.253110368999927, 50.230793560000116 ], [ -119.251814264999965, 50.229767921000089 ], [ -119.253287679999957, 50.22874783700005 ], [ -119.254653640999948, 50.227802055000048 ], [ -119.254693886999974, 50.227303488000054 ], [ -119.255910380999936, 50.227531487000135 ], [ -119.258410081999926, 50.227955496000085 ], [ -119.258842490999925, 50.228048791000028 ], [ -119.259248614999976, 50.228187399000035 ], [ -119.260452904999951, 50.228724397000079 ], [ -119.261279606999906, 50.229186702000014 ], [ -119.261786018999899, 50.229587792000046 ], [ -119.262112386999931, 50.22980740800007 ], [ -119.262687111999981, 50.230108906000126 ], [ -119.263554695999986, 50.23047709100004 ], [ -119.263677796999929, 50.230524098000053 ], [ -119.263913279999912, 50.230614030000041 ], [ -119.266592792999958, 50.231637096000071 ], [ -119.26808398499999, 50.23205509900005 ], [ -119.268369412999931, 50.23187848700011 ], [ -119.268776395999978, 50.231745413000091 ], [ -119.268843693999926, 50.231733922000046 ], [ -119.26893192699994, 50.231718900000018 ], [ -119.26852731799994, 50.232066060000058 ], [ -119.268398751999953, 50.232227839000124 ], [ -119.268147253999942, 50.232718201000047 ], [ -119.268005185, 50.23314279200018 ], [ -119.267459448999915, 50.234308605000187 ], [ -119.267257809999961, 50.234739307 ], [ -119.267209237999978, 50.234728491000077 ], [ -119.267042514, 50.234691387000048 ], [ -119.267008373999914, 50.234593250000088 ], [ -119.267034309999957, 50.234375963000069 ], [ -119.267178004999934, 50.234286632000142 ], [ -119.267181891999954, 50.234284208000147 ], [ -119.267307985999963, 50.234137502000117 ], [ -119.267684895999977, 50.233317295000056 ], [ -119.267737397999952, 50.233002689000095 ], [ -119.267715879999926, 50.232768490000069 ], [ -119.26759810599998, 50.232481389000036 ], [ -119.267475605999934, 50.232329385000064 ], [ -119.267304778999957, 50.232224371000079 ], [ -119.267043382999972, 50.23206369900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127133311", "BldgCostT": "81903190", "sL_LossRatio": "1", "sL_AssetLoss": "9444", "sL_BldgLoss": "9444", "sL_StrLoss": "9444", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007FEDCB5F42D05DC031A47145B51C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.250322592999936, 50.225738992000089 ], [ -119.250046195999971, 50.225685094000077 ], [ -119.249664998999918, 50.225663490000038 ], [ -119.248421307999934, 50.22559979600009 ], [ -119.24807571299999, 50.225556994000101 ], [ -119.24808391199997, 50.225189284000038 ], [ -119.248100916999974, 50.224425404000073 ], [ -119.248100293999968, 50.224316327000061 ], [ -119.248095869999958, 50.223525172000045 ], [ -119.248090569999974, 50.222571777000034 ], [ -119.248085602999979, 50.221680812000088 ], [ -119.248084696999982, 50.221518779000071 ], [ -119.248083015999967, 50.221213695000081 ], [ -119.251585017999943, 50.221220805000065 ], [ -119.251548493999962, 50.221890298000034 ], [ -119.255090111999934, 50.221905987000063 ], [ -119.255083185, 50.22303871400004 ], [ -119.255028696999958, 50.223196097000042 ], [ -119.254920001999935, 50.223340207 ], [ -119.254760612, 50.223465010000034 ], [ -119.25467360199994, 50.223614001000094 ], [ -119.254673258999958, 50.223686284000046 ], [ -119.254673059999931, 50.223740409000108 ], [ -119.254652275999973, 50.224540874000049 ], [ -119.254758285999955, 50.224680095000103 ], [ -119.254880679999971, 50.224633436000083 ], [ -119.256629453999921, 50.224662034000055 ], [ -119.256640695999977, 50.222488609000017 ], [ -119.258164386999951, 50.222468201000048 ], [ -119.258170297999968, 50.220018087000064 ], [ -119.259613685999952, 50.220016301000072 ], [ -119.259614514999953, 50.220833390000038 ], [ -119.259610433999967, 50.222449302000022 ], [ -119.259582747999957, 50.223363114000065 ], [ -119.259572712999955, 50.223647825000093 ], [ -119.259458864999971, 50.223797950000105 ], [ -119.259272333999931, 50.223934597000095 ], [ -119.258080760999974, 50.224589324000078 ], [ -119.258564118999985, 50.225125430000062 ], [ -119.258715391999928, 50.225327215000078 ], [ -119.258775550999957, 50.225407452000098 ], [ -119.258805098999972, 50.225542233000105 ], [ -119.258845152, 50.225725002000104 ], [ -119.258839236999918, 50.225878129000108 ], [ -119.258755820999937, 50.226182705000063 ], [ -119.258480109999979, 50.226795095000071 ], [ -119.258485314999916, 50.227138497000034 ], [ -119.258568629999971, 50.227194448000041 ], [ -119.258779693999955, 50.227336190000052 ], [ -119.259933715999964, 50.227719290000103 ], [ -119.26033830099999, 50.227933687000139 ], [ -119.260589499999966, 50.228260506000034 ], [ -119.260596708999913, 50.228590488000073 ], [ -119.260452904999951, 50.228724397000079 ], [ -119.259248614999976, 50.228187399000035 ], [ -119.258842490999925, 50.228048791000028 ], [ -119.258410081999926, 50.227955496000085 ], [ -119.255910380999936, 50.227531487000135 ], [ -119.254693886999974, 50.227303488000054 ], [ -119.253639996999979, 50.227062010000047 ], [ -119.252739890999976, 50.22676209600008 ], [ -119.251403993999958, 50.226135797000062 ], [ -119.250776708000018, 50.225885202000036 ], [ -119.250322592999936, 50.225738992000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124367167", "BldgCostT": "82086667", "sL_LossRatio": "1", "sL_AssetLoss": "7370.7", "sL_BldgLoss": "7370.7", "sL_StrLoss": "7370.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F78488C39D05DC0E16413473B1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.255083185, 50.22303871400004 ], [ -119.255090111999934, 50.221905987000063 ], [ -119.251548493999962, 50.221890298000034 ], [ -119.251585017999943, 50.221220805000065 ], [ -119.248083015999967, 50.221213695000081 ], [ -119.248072108999978, 50.220022088000114 ], [ -119.248090520999938, 50.219747802000064 ], [ -119.248165706999885, 50.21963050200003 ], [ -119.248681808999947, 50.219228799000085 ], [ -119.248769662999962, 50.219193941000128 ], [ -119.248918217, 50.219135007000027 ], [ -119.249258410999985, 50.219119696000078 ], [ -119.250277216999919, 50.219132602000059 ], [ -119.251217708999931, 50.219217300000068 ], [ -119.251581005999924, 50.219217008000086 ], [ -119.2528103, 50.219206593000081 ], [ -119.25307407699998, 50.219146094000109 ], [ -119.253180010999955, 50.218992693000118 ], [ -119.253180011999945, 50.218785097000087 ], [ -119.253184087999955, 50.218568606000112 ], [ -119.25305932, 50.218395793000084 ], [ -119.252582411999967, 50.218307788000075 ], [ -119.252677584999944, 50.218047302000087 ], [ -119.252798511999927, 50.217963507000029 ], [ -119.253674921999945, 50.217732 ], [ -119.254351093999958, 50.217748096000129 ], [ -119.255137316999978, 50.21777190300007 ], [ -119.256629918999948, 50.217770399000095 ], [ -119.256625804999942, 50.218780505000041 ], [ -119.25663510299999, 50.22002248800009 ], [ -119.256640695999977, 50.222488609000017 ], [ -119.256629453999921, 50.224662034000055 ], [ -119.254880679999971, 50.224633436000083 ], [ -119.254758285999955, 50.224680095000103 ], [ -119.254652275999973, 50.224540874000049 ], [ -119.254673059999931, 50.223740409000108 ], [ -119.254673258999958, 50.223686284000046 ], [ -119.25467360199994, 50.223614001000094 ], [ -119.254760612, 50.223465010000034 ], [ -119.254920001999935, 50.223340207 ], [ -119.255028696999958, 50.223196097000042 ], [ -119.255083185, 50.22303871400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "95550834", "BldgCostT": "64688334", "sL_LossRatio": "0.999564198230102", "sL_AssetLoss": "6264.316", "sL_BldgLoss": "6261.586", "sL_StrLoss": "6260.6", "sL_NStrLoss": "0.986", "sL_ContLoss": "2.73", "geom_point": "0101000020E6100000AEC38F39A8D05DC031E6B696AC1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.256625804999942, 50.218780505000041 ], [ -119.256629918999948, 50.217770399000095 ], [ -119.255137316999978, 50.21777190300007 ], [ -119.254351093999958, 50.217748096000129 ], [ -119.253674921999945, 50.217732 ], [ -119.252798511999927, 50.217963507000029 ], [ -119.252677584999944, 50.218047302000087 ], [ -119.252582411999967, 50.218307788000075 ], [ -119.251441498999938, 50.218282992000127 ], [ -119.250803697999984, 50.218262808000112 ], [ -119.250269107999941, 50.218245852000095 ], [ -119.249493779999966, 50.218221293000077 ], [ -119.248633410999929, 50.218212812000104 ], [ -119.248067791999944, 50.218210611000075 ], [ -119.247803229999988, 50.216272500000031 ], [ -119.251246244999933, 50.216257891000041 ], [ -119.251206837999945, 50.215291634000074 ], [ -119.251234560999976, 50.215291097000048 ], [ -119.251221866999956, 50.215021494000126 ], [ -119.25269855099998, 50.214992861000098 ], [ -119.252730222999958, 50.214780385000026 ], [ -119.256624534999958, 50.215334953000081 ], [ -119.25663422300002, 50.215335135000075 ], [ -119.258287986999932, 50.215272486000053 ], [ -119.258225045999922, 50.215695079000071 ], [ -119.259243004000012, 50.215675280000021 ], [ -119.25925574199999, 50.215944882000059 ], [ -119.259675901999969, 50.215936707000076 ], [ -119.259714125999892, 50.216745512000081 ], [ -119.258063808999921, 50.216777611000069 ], [ -119.258036871999963, 50.216958458000072 ], [ -119.257620200999952, 50.216932931 ], [ -119.257672757999956, 50.218046011000133 ], [ -119.259998270999958, 50.218188460000107 ], [ -119.259972789999935, 50.218359574000097 ], [ -119.260488165999902, 50.218349545000073 ], [ -119.260652470999943, 50.217246061 ], [ -119.259997556999934, 50.217205953000111 ], [ -119.260296785999955, 50.215196352000049 ], [ -119.262985027999932, 50.215094412000028 ], [ -119.26303242799996, 50.212975862000036 ], [ -119.263702713999962, 50.212804317000099 ], [ -119.264446509999971, 50.212681172000075 ], [ -119.26524611499994, 50.212634110000103 ], [ -119.26601451, 50.212613167000022 ], [ -119.266581767999938, 50.212627794000092 ], [ -119.267016470999963, 50.212701587000048 ], [ -119.267469765000016, 50.212418793000083 ], [ -119.26788354199999, 50.21224521900011 ], [ -119.268561769999948, 50.212286711000083 ], [ -119.268542054999926, 50.212419296000093 ], [ -119.268880175999968, 50.212439980000049 ], [ -119.268973183999918, 50.21181446200012 ], [ -119.269807752999924, 50.211532709000032 ], [ -119.270606904999951, 50.211402407000037 ], [ -119.27098055799992, 50.21134808100004 ], [ -119.271918243999977, 50.211211693000074 ], [ -119.271045478999952, 50.211420799000059 ], [ -119.270904113999961, 50.211488111000037 ], [ -119.27086066699998, 50.211508821000031 ], [ -119.270774412, 50.211615509000076 ], [ -119.270775516999919, 50.211681122000073 ], [ -119.270778031999953, 50.211827907000114 ], [ -119.270918341999987, 50.212238246000041 ], [ -119.270982970999938, 50.212598836000041 ], [ -119.270936829999982, 50.212890348000094 ], [ -119.270850199999956, 50.213202378000069 ], [ -119.270761075999985, 50.213523350000067 ], [ -119.27060918799999, 50.21386346000002 ], [ -119.270521520999949, 50.213988439000133 ], [ -119.270280183999915, 50.213973680000052 ], [ -119.270230758999944, 50.21430613100005 ], [ -119.269824188999962, 50.214712015000046 ], [ -119.269374025000033, 50.215055861000103 ], [ -119.26932077099994, 50.215096557000059 ], [ -119.268844697999924, 50.215600110000018 ], [ -119.268646478999955, 50.215768551000032 ], [ -119.268429612, 50.215901570000035 ], [ -119.26822053799998, 50.215991710000026 ], [ -119.268012918999943, 50.216034080000014 ], [ -119.26745990699996, 50.216079707000119 ], [ -119.26744439099997, 50.216088628000087 ], [ -119.267225877999962, 50.216214347000104 ], [ -119.267184452999956, 50.216267115000093 ], [ -119.267029650999945, 50.216464179000084 ], [ -119.266812812999959, 50.21659718300004 ], [ -119.265651728999941, 50.216973064000058 ], [ -119.264766359999939, 50.217350435000114 ], [ -119.26362577699993, 50.217702261000092 ], [ -119.263381903999971, 50.217818235000081 ], [ -119.263137885, 50.217934193000083 ], [ -119.262312295999948, 50.218413684000097 ], [ -119.261866513999962, 50.21867260700008 ], [ -119.261556486999922, 50.218788113000102 ], [ -119.26120020499998, 50.218816901000054 ], [ -119.260349805999979, 50.218666407000143 ], [ -119.260075778999976, 50.218681194000112 ], [ -119.259871914999948, 50.218727403000038 ], [ -119.259675208999951, 50.21881920800007 ], [ -119.259613507999987, 50.218949987000094 ], [ -119.259613685999952, 50.220016301000072 ], [ -119.258170297999968, 50.220018087000064 ], [ -119.258164386999951, 50.222468201000048 ], [ -119.256640695999977, 50.222488609000017 ], [ -119.25663510299999, 50.22002248800009 ], [ -119.256625804999942, 50.218780505000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85754751", "BldgCostT": "58460001", "sL_LossRatio": "0.999253677194655", "sL_AssetLoss": "5788.38", "sL_BldgLoss": "5784.06", "sL_StrLoss": "5782.5", "sL_NStrLoss": "1.56", "sL_ContLoss": "4.32", "geom_point": "0101000020E61000000FE513CB10CF5DC05EADD17A111C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.240437189999938, 50.223612567000046 ], [ -119.240407802999954, 50.223610092000094 ], [ -119.240223661999963, 50.223617279000059 ], [ -119.239752026999938, 50.223635709000071 ], [ -119.239526906999942, 50.223691388000098 ], [ -119.238488703999934, 50.223948186000037 ], [ -119.237567495999883, 50.224026086000045 ], [ -119.237110908999966, 50.224028800000049 ], [ -119.236554686999938, 50.224000006000068 ], [ -119.236453655999938, 50.223987083000068 ], [ -119.235942654999974, 50.223921774000075 ], [ -119.234455334999936, 50.223726522000064 ], [ -119.23375907399992, 50.223655732000068 ], [ -119.23319801699995, 50.223641121000036 ], [ -119.232070380999943, 50.223639494000047 ], [ -119.230017684999964, 50.223646890000062 ], [ -119.228870498000035, 50.223643998000064 ], [ -119.228205008999936, 50.223640995000089 ], [ -119.227435095999979, 50.223638803000036 ], [ -119.227405884999911, 50.220418104000018 ], [ -119.227419611999949, 50.220044201000078 ], [ -119.227375605999896, 50.219915094000093 ], [ -119.226827494999938, 50.219531987000067 ], [ -119.226657524999965, 50.219472807000038 ], [ -119.225816998999946, 50.219444512000052 ], [ -119.22259089799995, 50.219457109000089 ], [ -119.222566090999948, 50.218278192000128 ], [ -119.222562942999957, 50.217908166000079 ], [ -119.222561416, 50.217726190000114 ], [ -119.222712086999948, 50.21742489800009 ], [ -119.222953003999976, 50.217132811000155 ], [ -119.223216409999964, 50.21699032700009 ], [ -119.223231780999981, 50.216981999000062 ], [ -119.223776979999968, 50.216772691000138 ], [ -119.224019859999956, 50.216737024000153 ], [ -119.224167119999919, 50.216715394000033 ], [ -119.224626217999941, 50.216723788000067 ], [ -119.224850114999953, 50.216752103000061 ], [ -119.225064301999964, 50.216806810000023 ], [ -119.225882935999905, 50.217235497000097 ], [ -119.22586464199999, 50.217122414000066 ], [ -119.225527977999917, 50.216657373000032 ], [ -119.225198348999953, 50.216202100000046 ], [ -119.225077147, 50.216034684000093 ], [ -119.224672468999984, 50.21544843300007 ], [ -119.224211951999933, 50.214781280000125 ], [ -119.223969941999982, 50.214430638000081 ], [ -119.223923363999958, 50.21427154800007 ], [ -119.223946812999941, 50.214114927000082 ], [ -119.223950156999976, 50.214092621000127 ], [ -119.224046170999912, 50.213902599000107 ], [ -119.224069613999973, 50.213878212000097 ], [ -119.22424957, 50.213691187000052 ], [ -119.226739698999936, 50.212222632000106 ], [ -119.227189203999927, 50.211957543 ], [ -119.228429201999958, 50.211226169000057 ], [ -119.228618406999956, 50.211105703000051 ], [ -119.229025478, 50.210846507000085 ], [ -119.229095116999929, 50.210802154000099 ], [ -119.229528789999947, 50.210585057000046 ], [ -119.2302451199999, 50.210313113000019 ], [ -119.230402305, 50.210278352000024 ], [ -119.2315633799999, 50.215722747000093 ], [ -119.232599556, 50.215759003000066 ], [ -119.232541911999974, 50.216144550000074 ], [ -119.236475889999923, 50.216386408000069 ], [ -119.236373825999976, 50.217069433000077 ], [ -119.237396506999985, 50.217132283000083 ], [ -119.237116239999978, 50.219008035000051 ], [ -119.239303673999942, 50.219142434000091 ], [ -119.239278118999948, 50.219313519000117 ], [ -119.240961032999962, 50.219416890000019 ], [ -119.240906721, 50.219780569000079 ], [ -119.242583870999908, 50.219883560000035 ], [ -119.242909466999919, 50.217702683000027 ], [ -119.244192719999944, 50.217781467000052 ], [ -119.244203309999961, 50.217710512000082 ], [ -119.24492259499999, 50.21775466600004 ], [ -119.24493248, 50.217688429000084 ], [ -119.247148197999962, 50.217824412000077 ], [ -119.247108987999951, 50.216990090000081 ], [ -119.246688814, 50.216998219000104 ], [ -119.246676145999956, 50.216728615000072 ], [ -119.246255973999922, 50.216736742000123 ], [ -119.246231747999971, 50.216221071000099 ], [ -119.247803229999988, 50.216272500000031 ], [ -119.248067791999944, 50.218210611000075 ], [ -119.248633410999929, 50.218212812000104 ], [ -119.249493779999966, 50.218221293000077 ], [ -119.250269107999941, 50.218245852000095 ], [ -119.250803697999984, 50.218262808000112 ], [ -119.251441498999938, 50.218282992000127 ], [ -119.252582411999967, 50.218307788000075 ], [ -119.25305932, 50.218395793000084 ], [ -119.253184087999955, 50.218568606000112 ], [ -119.253180011999945, 50.218785097000087 ], [ -119.253180010999955, 50.218992693000118 ], [ -119.25307407699998, 50.219146094000109 ], [ -119.2528103, 50.219206593000081 ], [ -119.251581005999924, 50.219217008000086 ], [ -119.251217708999931, 50.219217300000068 ], [ -119.250277216999919, 50.219132602000059 ], [ -119.249258410999985, 50.219119696000078 ], [ -119.248918217, 50.219135007000027 ], [ -119.248769662999962, 50.219193941000128 ], [ -119.248681808999947, 50.219228799000085 ], [ -119.248165706999885, 50.21963050200003 ], [ -119.248090520999938, 50.219747802000064 ], [ -119.248072108999978, 50.220022088000114 ], [ -119.248083015999967, 50.221213695000081 ], [ -119.248084696999982, 50.221518779000071 ], [ -119.248085602999979, 50.221680812000088 ], [ -119.248090569999974, 50.222571777000034 ], [ -119.248095869999958, 50.223525172000045 ], [ -119.248100293999968, 50.224316327000061 ], [ -119.248100916999974, 50.224425404000073 ], [ -119.24808391199997, 50.225189284000038 ], [ -119.24807571299999, 50.225556994000101 ], [ -119.24802390499994, 50.225550222000059 ], [ -119.247682359999942, 50.225505658000031 ], [ -119.24657430399999, 50.225361013000104 ], [ -119.246038614000014, 50.225201823000113 ], [ -119.245980989999978, 50.22518469700006 ], [ -119.245693091999968, 50.22505688899999 ], [ -119.245550749999936, 50.224981437000039 ], [ -119.245168584999973, 50.224778866000051 ], [ -119.24466622499996, 50.224512606000104 ], [ -119.243734916999969, 50.22414849900008 ], [ -119.243220291999975, 50.224011206000071 ], [ -119.243060272999941, 50.223986986000114 ], [ -119.242008636, 50.223827792000051 ], [ -119.240772081999978, 50.22364059700007 ], [ -119.240437189999938, 50.223612567000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78361500", "BldgCostT": "51780000", "sL_LossRatio": "1", "sL_AssetLoss": "7334", "sL_BldgLoss": "7334", "sL_StrLoss": "7334", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004918DDAC07CE5DC05FC42DD53B1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.225588326999954, 50.224524851000105 ], [ -119.22559499499999, 50.223636588000076 ], [ -119.224281521999927, 50.223634836000024 ], [ -119.222580903000022, 50.223632509000041 ], [ -119.22100125599998, 50.223632680000051 ], [ -119.21934747799996, 50.223632865000091 ], [ -119.218772710999986, 50.223632909000102 ], [ -119.218113088999971, 50.223632967000086 ], [ -119.214017749999954, 50.22363322100005 ], [ -119.212059416999949, 50.22363329100012 ], [ -119.21202681699998, 50.219926601000083 ], [ -119.212032639999947, 50.216954277000077 ], [ -119.212346882999924, 50.216879196000036 ], [ -119.213307700999962, 50.216774971000042 ], [ -119.21435529199999, 50.21666129700003 ], [ -119.21532729099999, 50.216750990000016 ], [ -119.216916294999919, 50.217152597000052 ], [ -119.217635120999958, 50.21663419900004 ], [ -119.21781641599992, 50.216604296000057 ], [ -119.218674908999944, 50.217010188000096 ], [ -119.219477389999952, 50.217075697000048 ], [ -119.219891089999948, 50.216916189000095 ], [ -119.220142122999903, 50.21664702800004 ], [ -119.22031879799998, 50.216457605000045 ], [ -119.220612592999913, 50.216443413000022 ], [ -119.221018089999944, 50.216741003000031 ], [ -119.221242414999963, 50.216745296000092 ], [ -119.221599186999953, 50.216577210000032 ], [ -119.22185080599999, 50.216562994000114 ], [ -119.222419888999951, 50.216723889000086 ], [ -119.22354499699999, 50.216530206000115 ], [ -119.223931700999955, 50.216676901000021 ], [ -119.224019859999956, 50.216737024000153 ], [ -119.223776979999968, 50.216772691000138 ], [ -119.223231780999981, 50.216981999000062 ], [ -119.223216409999964, 50.21699032700009 ], [ -119.222953003999976, 50.217132811000155 ], [ -119.222712086999948, 50.21742489800009 ], [ -119.222561416, 50.217726190000114 ], [ -119.222562942999957, 50.217908166000079 ], [ -119.222566090999948, 50.218278192000128 ], [ -119.22259089799995, 50.219457109000089 ], [ -119.225816998999946, 50.219444512000052 ], [ -119.226657524999965, 50.219472807000038 ], [ -119.226827494999938, 50.219531987000067 ], [ -119.227375605999896, 50.219915094000093 ], [ -119.227419611999949, 50.220044201000078 ], [ -119.227405884999911, 50.220418104000018 ], [ -119.227435095999979, 50.223638803000036 ], [ -119.228205008999936, 50.223640995000089 ], [ -119.228208611999946, 50.224557708000091 ], [ -119.22558799699999, 50.224568016000099 ], [ -119.225588326999954, 50.224524851000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25898333", "BldgCostT": "17333333", "sL_LossRatio": "1", "sL_AssetLoss": "2923", "sL_BldgLoss": "2923", "sL_StrLoss": "2923", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AA454CA241CC5DC0FFD790EA011D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.196198400999947, 50.234257924000119 ], [ -119.196323362999948, 50.233426962000053 ], [ -119.196206691999947, 50.233419752 ], [ -119.196744786999957, 50.229841258000121 ], [ -119.19786146699991, 50.229910269000058 ], [ -119.198227397999929, 50.22747599100007 ], [ -119.196356604999906, 50.227360369000017 ], [ -119.196504996999963, 50.226373417000048 ], [ -119.196246969999947, 50.226357468000081 ], [ -119.196251300999933, 50.226328662000135 ], [ -119.194872852999978, 50.226243445000051 ], [ -119.19465433100001, 50.22769648000007 ], [ -119.189073146999931, 50.227351267000081 ], [ -119.189117520999986, 50.227056459000025 ], [ -119.187320049999954, 50.226945219000072 ], [ -119.187195712999952, 50.22777105000003 ], [ -119.187034102999945, 50.227761047000072 ], [ -119.186447365999953, 50.227724728000034 ], [ -119.186419185999966, 50.227911868000021 ], [ -119.180838038999951, 50.227566239000083 ], [ -119.180910736999934, 50.227083840000077 ], [ -119.180901072999959, 50.227083241000081 ], [ -119.181095898999928, 50.225790398000065 ], [ -119.178920300999977, 50.225655589000098 ], [ -119.179268750999952, 50.223343838000126 ], [ -119.179259470999909, 50.223140279000098 ], [ -119.179299545999982, 50.223139526000175 ], [ -119.179459665999914, 50.222077144000046 ], [ -119.184153171999967, 50.222367919000078 ], [ -119.184201362999929, 50.222047952000068 ], [ -119.184759865999936, 50.222082539000048 ], [ -119.18485308399994, 50.221463530000072 ], [ -119.186390680000017, 50.222030911000083 ], [ -119.187253076999951, 50.222382291000017 ], [ -119.189702802999989, 50.223527199000046 ], [ -119.191108116999956, 50.2242009980001 ], [ -119.191520992999955, 50.224339493000087 ], [ -119.191996518999986, 50.224454693000062 ], [ -119.192598201999957, 50.22454600700005 ], [ -119.192729381999982, 50.224555304000091 ], [ -119.19362965099999, 50.224619222000058 ], [ -119.195851757999961, 50.224776979000033 ], [ -119.196945290999963, 50.224854619000084 ], [ -119.197186504999962, 50.224945299000062 ], [ -119.197499688, 50.224754310000044 ], [ -119.197790657999974, 50.224467810000078 ], [ -119.197888709999944, 50.224371258000126 ], [ -119.198342703, 50.223924199000031 ], [ -119.198497394999961, 50.223831688000089 ], [ -119.198868514999958, 50.223723684000142 ], [ -119.199524600999922, 50.223695700000079 ], [ -119.200001893999968, 50.22369334600004 ], [ -119.202281790999962, 50.223682095000122 ], [ -119.202217403999938, 50.224110730000106 ], [ -119.202475421999949, 50.224126666000082 ], [ -119.202039558999928, 50.227028170000054 ], [ -119.202151277, 50.227026052000078 ], [ -119.202154045, 50.227086145000044 ], [ -119.203902776999968, 50.227194132000115 ], [ -119.20368886199995, 50.22861840100007 ], [ -119.202843942999948, 50.228596855000085 ], [ -119.202433485999961, 50.228535417000046 ], [ -119.202044972999957, 50.22840306299999 ], [ -119.201704213, 50.228213920000073 ], [ -119.200421428, 50.227501876000062 ], [ -119.200192251999965, 50.228939197000102 ], [ -119.200051249999959, 50.229823430000103 ], [ -119.200001050999958, 50.230138473000039 ], [ -119.199981610999941, 50.230260282000074 ], [ -119.19984131199999, 50.230509789000045 ], [ -119.199059554999934, 50.231332793000092 ], [ -119.199046516999942, 50.231346505000069 ], [ -119.198923006999976, 50.231559195000109 ], [ -119.198918899999939, 50.23159222099999 ], [ -119.198868318999985, 50.231998292000085 ], [ -119.198866582999955, 50.232050805000036 ], [ -119.198800181999971, 50.234062705000014 ], [ -119.19866770099999, 50.236377697000087 ], [ -119.195523547999983, 50.235739810000055 ], [ -119.195750586999964, 50.234230247000028 ], [ -119.196198400999947, 50.234257924000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48683334", "BldgCostT": "32783334", "sL_LossRatio": "1", "sL_AssetLoss": "4635.7", "sL_BldgLoss": "4635.7", "sL_StrLoss": "4635.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9DEBA8B05CE5DC0AFF1FC165B1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.228115866999929, 50.240731909000054 ], [ -119.225272422999979, 50.239559902000046 ], [ -119.225203687999951, 50.239531576000054 ], [ -119.223978529999968, 50.238937030000017 ], [ -119.222678535999989, 50.238212353000051 ], [ -119.222587084999986, 50.238139636000014 ], [ -119.222235495999911, 50.237860031000089 ], [ -119.221940443999983, 50.237497872000084 ], [ -119.221531910999929, 50.236417214000035 ], [ -119.22137707199991, 50.236190990000111 ], [ -119.221291294999943, 50.236110114000049 ], [ -119.224244164999959, 50.236291887000107 ], [ -119.22414010199995, 50.236986711000071 ], [ -119.224730998000013, 50.237023076000114 ], [ -119.224495307999959, 50.238596803000043 ], [ -119.227229226999981, 50.238765010000151 ], [ -119.227101017999985, 50.239621369000112 ], [ -119.227745259999892, 50.239660997000037 ], [ -119.227936428999925, 50.238383956000099 ], [ -119.227371470999969, 50.238349205000127 ], [ -119.227434519999974, 50.237928043000061 ], [ -119.227300596999982, 50.237919804000072 ], [ -119.227379520999975, 50.237392603000032 ], [ -119.226955122999939, 50.237366495000082 ], [ -119.227022410999979, 50.236917029000118 ], [ -119.226912950999932, 50.23691029600009 ], [ -119.226955616999959, 50.236625303000075 ], [ -119.226410753999915, 50.236591783000058 ], [ -119.226531598999927, 50.235784633000065 ], [ -119.226402408999931, 50.235776684000015 ], [ -119.226444417999943, 50.235496091000087 ], [ -119.225855711999955, 50.235459869000117 ], [ -119.22590294199999, 50.235144432000041 ], [ -119.225144310999923, 50.235097750000129 ], [ -119.225193668999978, 50.234768128000013 ], [ -119.224691717999974, 50.234737239000026 ], [ -119.224756393999925, 50.234305346000021 ], [ -119.224471840999968, 50.234287833000096 ], [ -119.224625033999985, 50.23326485500008 ], [ -119.223245528999925, 50.233179944000071 ], [ -119.223163796999984, 50.233725614000072 ], [ -119.220300135999963, 50.233549295000046 ], [ -119.22004367199996, 50.235260748000073 ], [ -119.218402083999962, 50.234191128000141 ], [ -119.218008700999945, 50.233846351000061 ], [ -119.218002207, 50.233838382000037 ], [ -119.21795009099999, 50.233774224000015 ], [ -119.217890213999951, 50.233700511000031 ], [ -119.21713002300001, 50.232764706000104 ], [ -119.216833788999935, 50.232513739000041 ], [ -119.216457693999956, 50.232195081000057 ], [ -119.215981470999978, 50.231867780000137 ], [ -119.21542259899995, 50.231603085000053 ], [ -119.214703274999977, 50.23132850100005 ], [ -119.214081498000027, 50.231154756000066 ], [ -119.213533397, 50.231062271000106 ], [ -119.20819456299995, 50.230507277000108 ], [ -119.207656792999927, 50.230383797000087 ], [ -119.207195003999956, 50.230223466000091 ], [ -119.206943202999966, 50.230104199000046 ], [ -119.206754521999969, 50.230014800000028 ], [ -119.205601151999986, 50.229208937000074 ], [ -119.209241891999937, 50.229433600000085 ], [ -119.209262775999917, 50.229294443000043 ], [ -119.209981463999924, 50.229338777000038 ], [ -119.209997447999953, 50.229232259000106 ], [ -119.215184483999977, 50.229552096000063 ], [ -119.215227659, 50.22926415900011 ], [ -119.214262419999926, 50.229204661000061 ], [ -119.214291900999953, 50.229008073000045 ], [ -119.209355076999941, 50.228703626 ], [ -119.209416865999955, 50.228291897000098 ], [ -119.208643884999915, 50.228244208000042 ], [ -119.208755391999929, 50.227501232000058 ], [ -119.208646434999963, 50.227494509000117 ], [ -119.208672969999952, 50.2273177040001 ], [ -119.208656847000029, 50.227316710000139 ], [ -119.208691795999968, 50.227083845000017 ], [ -119.208662062999963, 50.22708201100005 ], [ -119.208687986999976, 50.226909276000114 ], [ -119.208659375999943, 50.226907511000093 ], [ -119.208776904999979, 50.226124386 ], [ -119.208667127999959, 50.226117612000046 ], [ -119.208733638999959, 50.225674434000041 ], [ -119.208409957999919, 50.225654461000019 ], [ -119.208303545999939, 50.226363471000177 ], [ -119.208212774999978, 50.226357870000129 ], [ -119.208141465000011, 50.226832973000079 ], [ -119.20256028599999, 50.226488442000097 ], [ -119.202694909999977, 50.22559221200008 ], [ -119.202651749999973, 50.225589547000084 ], [ -119.202938745999944, 50.223678845000052 ], [ -119.206101086, 50.223663143000117 ], [ -119.212059416999949, 50.22363329100012 ], [ -119.214017749999954, 50.22363322100005 ], [ -119.218113088999971, 50.223632967000086 ], [ -119.218772710999986, 50.223632909000102 ], [ -119.21934747799996, 50.223632865000091 ], [ -119.22100125599998, 50.223632680000051 ], [ -119.222580903000022, 50.223632509000041 ], [ -119.224281521999927, 50.223634836000024 ], [ -119.22559499499999, 50.223636588000076 ], [ -119.225588326999954, 50.224524851000105 ], [ -119.22558799699999, 50.224568016000099 ], [ -119.228208611999946, 50.224557708000091 ], [ -119.228208747999957, 50.224708193000012 ], [ -119.228210592999957, 50.226840483000082 ], [ -119.228210872999924, 50.227181996000098 ], [ -119.228211123999969, 50.227460604000036 ], [ -119.228211317999964, 50.227658570000102 ], [ -119.228212093999943, 50.228567072000047 ], [ -119.228212379999917, 50.228908102000048 ], [ -119.228238900999941, 50.229954391000014 ], [ -119.228250303999971, 50.230959991000098 ], [ -119.228267278999922, 50.231816094000131 ], [ -119.22824200099997, 50.232226828000144 ], [ -119.228239714999987, 50.232264098000066 ], [ -119.228082219999948, 50.232554103000062 ], [ -119.227947800000024, 50.232680399000117 ], [ -119.227663517999986, 50.232951814000025 ], [ -119.2275007099999, 50.233154884000086 ], [ -119.227434690999957, 50.233304287000088 ], [ -119.227450594999979, 50.23350850900006 ], [ -119.227647116999961, 50.233795 ], [ -119.227990899999966, 50.234133094000057 ], [ -119.228282828999966, 50.234464590000115 ], [ -119.228557683999924, 50.234776664000037 ], [ -119.23007603, 50.23650051900006 ], [ -119.230137576999965, 50.236748097000074 ], [ -119.230197361999956, 50.237469460000099 ], [ -119.230245740999976, 50.238053300000026 ], [ -119.230258359999951, 50.238205884000102 ], [ -119.230304562999905, 50.238763166000055 ], [ -119.23041821699999, 50.240134706000049 ], [ -119.229071837000021, 50.240051919000031 ], [ -119.229047673999929, 50.240213352000076 ], [ -119.230431785999883, 50.240298459000073 ], [ -119.23045937099999, 50.24063133100001 ], [ -119.230346853999976, 50.240931388000014 ], [ -119.230037333999974, 50.24121122700015 ], [ -119.229677834999961, 50.241288428000061 ], [ -119.229458747999928, 50.241283991000039 ], [ -119.229050053999941, 50.241191145000052 ], [ -119.228115866999929, 50.240731909000054 ] ], [ [ -119.224010587999956, 50.226475270000037 ], [ -119.224059518999965, 50.226148500000065 ], [ -119.222721052999958, 50.2260660950001 ], [ -119.222672113999948, 50.226392865000044 ], [ -119.224010587999956, 50.226475270000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13541250", "BldgCostT": "9075000", "sL_LossRatio": "1", "sL_AssetLoss": "997", "sL_BldgLoss": "997", "sL_StrLoss": "997", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CC7BDE8514CB5DC0215E9513861D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.186933003999968, 50.23369369200006 ], [ -119.184009239999966, 50.232966407000042 ], [ -119.18147107299994, 50.232334946000087 ], [ -119.180776279000014, 50.23216209900005 ], [ -119.178980888999973, 50.23173811000003 ], [ -119.178547183999939, 50.231635694000083 ], [ -119.175298289999915, 50.231036091000121 ], [ -119.174388896, 50.230884120000091 ], [ -119.17360058, 50.230752382000041 ], [ -119.172754749, 50.230611021000122 ], [ -119.172712803999957, 50.23060401200005 ], [ -119.171965502999967, 50.23053511500008 ], [ -119.16991396, 50.230455401000022 ], [ -119.16849906099992, 50.23040041200013 ], [ -119.168385191999931, 50.230396015000032 ], [ -119.167919993999931, 50.23039773700004 ], [ -119.167507207, 50.230399310000067 ], [ -119.166633608000012, 50.230424493000022 ], [ -119.165311792999944, 50.230462599000063 ], [ -119.164025615999961, 50.230287890000042 ], [ -119.163133717999983, 50.230210865000053 ], [ -119.161551216999925, 50.230074158000079 ], [ -119.160042403999938, 50.229943783000095 ], [ -119.157915750999962, 50.229932787000081 ], [ -119.156954709999965, 50.229927817000053 ], [ -119.156681788999919, 50.229926411000129 ], [ -119.155840481999959, 50.229979907000015 ], [ -119.154777167999953, 50.230047492000082 ], [ -119.15111419599999, 50.230280328000028 ], [ -119.151081483999988, 50.230282407000068 ], [ -119.151088767999966, 50.228624668000073 ], [ -119.151630637, 50.228658384000028 ], [ -119.151601527999972, 50.228850705000063 ], [ -119.151928554999955, 50.228871053000077 ], [ -119.1519734929999, 50.228574133000038 ], [ -119.154149420999929, 50.228709489000046 ], [ -119.154188003999977, 50.228454483000085 ], [ -119.155877162, 50.228559529000059 ], [ -119.155900533999954, 50.228405022000068 ], [ -119.159301283, 50.228616429000063 ], [ -119.159320079999986, 50.22849210100005 ], [ -119.164901175999915, 50.228838817000025 ], [ -119.164827002999971, 50.229329826000011 ], [ -119.165610729999955, 50.229378491000062 ], [ -119.165659373999972, 50.22905644700004 ], [ -119.167666727, 50.229181065000013 ], [ -119.167701391999969, 50.228951493000082 ], [ -119.173282608999926, 50.229297786000117 ], [ -119.17314649799999, 50.230199902000045 ], [ -119.178366911999959, 50.230523547000089 ], [ -119.178233302999942, 50.231409719000119 ], [ -119.179987318999935, 50.231518404000035 ], [ -119.17993106299997, 50.23189161400007 ], [ -119.182959851999925, 50.232079223 ], [ -119.182929912999924, 50.232277936000116 ], [ -119.183738872999953, 50.232328030000104 ], [ -119.184119534999951, 50.229801170000037 ], [ -119.186975646999969, 50.229977984000058 ], [ -119.189700980999987, 50.230146632000071 ], [ -119.189205713999954, 50.233436880000085 ], [ -119.191979834999984, 50.233608476000036 ], [ -119.191785864999986, 50.234897486000115 ], [ -119.188955904999915, 50.234195525000096 ], [ -119.188686384, 50.234128683000037 ], [ -119.186933003999968, 50.23369369200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "140.7", "sL_BldgLoss": "140.7", "sL_StrLoss": "140.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8B437B6E6C95DC01778D5A03B1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.158287394999945, 50.218562703000082 ], [ -119.158486840999942, 50.218535804000112 ], [ -119.158171560999989, 50.220621331000089 ], [ -119.157251891999977, 50.220564150000044 ], [ -119.157241020999933, 50.220636051000035 ], [ -119.155426172999981, 50.220523190000065 ], [ -119.15531387199999, 50.221265694000103 ], [ -119.154681354999951, 50.22122635300012 ], [ -119.154678743999952, 50.221243609000112 ], [ -119.15411163499999, 50.221208332000067 ], [ -119.154087824999976, 50.221365721000033 ], [ -119.153601966999972, 50.221335497000034 ], [ -119.153438354999977, 50.222416935000105 ], [ -119.152160386999981, 50.222337422000066 ], [ -119.152157595999896, 50.222355863000068 ], [ -119.151558696999956, 50.222318596000022 ], [ -119.15153787599999, 50.222456177000069 ], [ -119.151115983999958, 50.222429922000082 ], [ -119.151120457999951, 50.221411511000071 ], [ -119.151122727999962, 50.2208987180001 ], [ -119.151123580000032, 50.220699592000095 ], [ -119.151862897999948, 50.220576845000089 ], [ -119.15305659799999, 50.220378628000134 ], [ -119.153121299999938, 50.220367898000056 ], [ -119.153645519999927, 50.22025726800004 ], [ -119.154020211999963, 50.220178204000021 ], [ -119.15450368700003, 50.219997892000066 ], [ -119.154839028999959, 50.219838579000061 ], [ -119.155797815999946, 50.219383096000087 ], [ -119.156900097999966, 50.218890897000072 ], [ -119.15763179299995, 50.21867989600004 ], [ -119.157817444, 50.218646711000069 ], [ -119.158287394999945, 50.218562703000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "145026311", "BldgCostT": "94558190", "sL_LossRatio": "0.99768190474969", "sL_AssetLoss": "9356.82", "sL_BldgLoss": "9335.13", "sL_StrLoss": "9327.3", "sL_NStrLoss": "7.83", "sL_ContLoss": "21.69", "geom_point": "0101000020E61000007FAED770E8CD5DC0734E6869591E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.229051826999935, 50.242039919000042 ], [ -119.229198253999982, 50.241904498000096 ], [ -119.228916484, 50.24180045 ], [ -119.228649586999936, 50.241701905000049 ], [ -119.228327551999953, 50.241641504000043 ], [ -119.228136974, 50.241645852000048 ], [ -119.227985602999979, 50.24164930900011 ], [ -119.225579389999936, 50.241890740000052 ], [ -119.2250365099999, 50.241945217000072 ], [ -119.222769816, 50.242172608000089 ], [ -119.22257449199999, 50.242131694000058 ], [ -119.222332185999932, 50.24166179000008 ], [ -119.22221275699998, 50.241540746000034 ], [ -119.222065615999924, 50.24139160000005 ], [ -119.221730708999942, 50.241154288000054 ], [ -119.221426092999977, 50.241005617000027 ], [ -119.221056193999956, 50.240888898000058 ], [ -119.220193200999944, 50.24070750800005 ], [ -119.219186311999948, 50.240602196000111 ], [ -119.218310991999886, 50.240408296000012 ], [ -119.21543281, 50.239706391000084 ], [ -119.212844606999937, 50.239099991000032 ], [ -119.210372102999912, 50.238961994000057 ], [ -119.20653839799995, 50.238292084000093 ], [ -119.204747589999968, 50.238220407000078 ], [ -119.204378716999926, 50.238163299000085 ], [ -119.199990663999955, 50.236791381000067 ], [ -119.19866770099999, 50.236377697000087 ], [ -119.198800181999971, 50.234062705000014 ], [ -119.198866582999955, 50.232050805000036 ], [ -119.198868318999985, 50.231998292000085 ], [ -119.198918899999939, 50.23159222099999 ], [ -119.198923006999976, 50.231559195000109 ], [ -119.199046516999942, 50.231346505000069 ], [ -119.199059554999934, 50.231332793000092 ], [ -119.19984131199999, 50.230509789000045 ], [ -119.199981610999941, 50.230260282000074 ], [ -119.200001050999958, 50.230138473000039 ], [ -119.200051249999959, 50.229823430000103 ], [ -119.200192251999965, 50.228939197000102 ], [ -119.200421428, 50.227501876000062 ], [ -119.201704213, 50.228213920000073 ], [ -119.202044972999957, 50.22840306299999 ], [ -119.202433485999961, 50.228535417000046 ], [ -119.202843942999948, 50.228596855000085 ], [ -119.20368886199995, 50.22861840100007 ], [ -119.203465336999898, 50.230106547000105 ], [ -119.204879488999921, 50.23019385300006 ], [ -119.205032666999969, 50.229173846000016 ], [ -119.205601151999986, 50.229208937000074 ], [ -119.206754521999969, 50.230014800000028 ], [ -119.206943202999966, 50.230104199000046 ], [ -119.207195003999956, 50.230223466000091 ], [ -119.207656792999927, 50.230383797000087 ], [ -119.20819456299995, 50.230507277000108 ], [ -119.213533397, 50.231062271000106 ], [ -119.214081498000027, 50.231154756000066 ], [ -119.214703274999977, 50.23132850100005 ], [ -119.21542259899995, 50.231603085000053 ], [ -119.215981470999978, 50.231867780000137 ], [ -119.216457693999956, 50.232195081000057 ], [ -119.216833788999935, 50.232513739000041 ], [ -119.21713002300001, 50.232764706000104 ], [ -119.217890213999951, 50.233700511000031 ], [ -119.21795009099999, 50.233774224000015 ], [ -119.218002207, 50.233838382000037 ], [ -119.218008700999945, 50.233846351000061 ], [ -119.218402083999962, 50.234191128000141 ], [ -119.22004367199996, 50.235260748000073 ], [ -119.219928956999951, 50.236026225000067 ], [ -119.221291294999943, 50.236110114000049 ], [ -119.22137707199991, 50.236190990000111 ], [ -119.221531910999929, 50.236417214000035 ], [ -119.221940443999983, 50.237497872000084 ], [ -119.222235495999911, 50.237860031000089 ], [ -119.222587084999986, 50.238139636000014 ], [ -119.222678535999989, 50.238212353000051 ], [ -119.223978529999968, 50.238937030000017 ], [ -119.225203687999951, 50.239531576000054 ], [ -119.225272422999979, 50.239559902000046 ], [ -119.228115866999929, 50.240731909000054 ], [ -119.229050053999941, 50.241191145000052 ], [ -119.229458747999928, 50.241283991000039 ], [ -119.229677834999961, 50.241288428000061 ], [ -119.230037333999974, 50.24121122700015 ], [ -119.230346853999976, 50.240931388000014 ], [ -119.23045937099999, 50.24063133100001 ], [ -119.230431785999883, 50.240298459000073 ], [ -119.231252289999972, 50.240348903 ], [ -119.231111281999972, 50.241291291000039 ], [ -119.232265881999936, 50.24136226300007 ], [ -119.232248495999968, 50.24099015200003 ], [ -119.231447439999926, 50.24094091200007 ], [ -119.23151375399999, 50.240497707000017 ], [ -119.231384077999934, 50.240500198000085 ], [ -119.23136974099999, 50.24019320400005 ], [ -119.23041821699999, 50.240134706000049 ], [ -119.230304562999905, 50.238763166000055 ], [ -119.230258359999951, 50.238205884000102 ], [ -119.230245740999976, 50.238053300000026 ], [ -119.230197361999956, 50.237469460000099 ], [ -119.230137576999965, 50.236748097000074 ], [ -119.23007603, 50.23650051900006 ], [ -119.23094952699995, 50.236499193000078 ], [ -119.234388511999953, 50.236500033000077 ], [ -119.235153657999959, 50.236500240000098 ], [ -119.235247655999984, 50.23700172900007 ], [ -119.235498502999988, 50.237519116000087 ], [ -119.235869719000021, 50.238121431000096 ], [ -119.235921303999945, 50.23820508300004 ], [ -119.236221780000022, 50.238832996000092 ], [ -119.236410287999959, 50.239070297000112 ], [ -119.23691072299998, 50.2395571240001 ], [ -119.237117465999972, 50.239758281000022 ], [ -119.237403903, 50.240036889000073 ], [ -119.237716696999925, 50.240441702000119 ], [ -119.23788818099996, 50.24075460500007 ], [ -119.237939684999958, 50.241230004000087 ], [ -119.238012995999895, 50.241380803000027 ], [ -119.238627314999974, 50.242048690000026 ], [ -119.239305692999935, 50.242627588000047 ], [ -119.239461506999973, 50.242923389000055 ], [ -119.239503580999965, 50.243282601000075 ], [ -119.239457786999964, 50.243965908000064 ], [ -119.239375417999923, 50.244159500000073 ], [ -119.239128328999939, 50.244426938000061 ], [ -119.238986611999934, 50.244574310000118 ], [ -119.238786424999958, 50.244782452000088 ], [ -119.238733881999934, 50.244966439000045 ], [ -119.238733203999928, 50.244968769000067 ], [ -119.238805026999955, 50.245157377000076 ], [ -119.238965012999955, 50.245302627000058 ], [ -119.239266289999989, 50.245463645000051 ], [ -119.239274682999962, 50.245468132000084 ], [ -119.238311510999949, 50.245735037000017 ], [ -119.23511441399998, 50.245707265000107 ], [ -119.232322882999981, 50.245682956000103 ], [ -119.228853166, 50.245652615000026 ], [ -119.228928617999912, 50.245465993000138 ], [ -119.228971001999952, 50.244495389000079 ], [ -119.228969087999971, 50.244168162000058 ], [ -119.228962884999987, 50.243114928000097 ], [ -119.228957970999915, 50.242277099000091 ], [ -119.229037959999971, 50.242052715000078 ], [ -119.229051826999935, 50.242039919000042 ] ], [ [ -119.235316407999946, 50.242370349000076 ], [ -119.235446337999988, 50.241501481000086 ], [ -119.23460487399997, 50.241517673000025 ], [ -119.235379924999961, 50.2415652910001 ], [ -119.235260052999976, 50.242366887000117 ], [ -119.235316407999946, 50.242370349000076 ] ], [ [ -119.203182241999954, 50.235972076000031 ], [ -119.203292420999929, 50.23523868700002 ], [ -119.20216558599995, 50.23516911400003 ], [ -119.202359948999941, 50.233875522000048 ], [ -119.202045372999962, 50.233856098000068 ], [ -119.201741591999905, 50.235877797000079 ], [ -119.201142464999947, 50.235840798000034 ], [ -119.201141671999906, 50.235846077000133 ], [ -119.203182241999954, 50.235972076000031 ] ], [ [ -119.211729156999965, 50.233207877000069 ], [ -119.211740507999977, 50.233132225000062 ], [ -119.211123344999962, 50.233094166000093 ], [ -119.211128022999958, 50.233062989000089 ], [ -119.210519326999986, 50.233025450000063 ], [ -119.210525544999925, 50.232984021000028 ], [ -119.210098080999941, 50.23295765600016 ], [ -119.210077196999961, 50.233096813000024 ], [ -119.208128700999922, 50.232976616 ], [ -119.208127333000022, 50.232985717000048 ], [ -119.211729156999965, 50.233207877000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91738000", "BldgCostT": "61300000", "sL_LossRatio": "1", "sL_AssetLoss": "5883.1", "sL_BldgLoss": "5883.1", "sL_StrLoss": "5883.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006472C5200BCE5DC0C94E0D6E4A1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.211681691999942, 50.245000104000034 ], [ -119.210868794999939, 50.244071516000105 ], [ -119.210758601999956, 50.24382 ], [ -119.210769704999976, 50.243661791000086 ], [ -119.210890988999964, 50.243454294000124 ], [ -119.211049487999929, 50.243336804000108 ], [ -119.212051904999953, 50.242993196000022 ], [ -119.212189934999969, 50.242904603000042 ], [ -119.21268329899999, 50.242587916000033 ], [ -119.21344478799989, 50.242347696000088 ], [ -119.213563094, 50.242404686000029 ], [ -119.213922690999979, 50.242777211000011 ], [ -119.215469710999955, 50.243076483000038 ], [ -119.215725988999949, 50.243151891000132 ], [ -119.21670851499999, 50.243955485000079 ], [ -119.217639697999914, 50.244651198000085 ], [ -119.217855390999944, 50.244452311000018 ], [ -119.217914504999953, 50.244293486000082 ], [ -119.218007289999889, 50.243345704 ], [ -119.217881714999947, 50.242773700000065 ], [ -119.217712192999954, 50.241987590000122 ], [ -119.217636676999973, 50.241852095000063 ], [ -119.217496102999988, 50.241728695000056 ], [ -119.217281098999976, 50.241640615000058 ], [ -119.21470090699998, 50.240998502000124 ], [ -119.215074401999971, 50.240339895000076 ], [ -119.21543281, 50.239706391000084 ], [ -119.218310991999886, 50.240408296000012 ], [ -119.219186311999948, 50.240602196000111 ], [ -119.220193200999944, 50.24070750800005 ], [ -119.221056193999956, 50.240888898000058 ], [ -119.221426092999977, 50.241005617000027 ], [ -119.221730708999942, 50.241154288000054 ], [ -119.222065615999924, 50.24139160000005 ], [ -119.22221275699998, 50.241540746000034 ], [ -119.222332185999932, 50.24166179000008 ], [ -119.22257449199999, 50.242131694000058 ], [ -119.222769816, 50.242172608000089 ], [ -119.2250365099999, 50.241945217000072 ], [ -119.225579389999936, 50.241890740000052 ], [ -119.227985602999979, 50.24164930900011 ], [ -119.228136974, 50.241645852000048 ], [ -119.228327551999953, 50.241641504000043 ], [ -119.228649586999936, 50.241701905000049 ], [ -119.228916484, 50.24180045 ], [ -119.229198253999982, 50.241904498000096 ], [ -119.229051826999935, 50.242039919000042 ], [ -119.229037959999971, 50.242052715000078 ], [ -119.228957970999915, 50.242277099000091 ], [ -119.228962884999987, 50.243114928000097 ], [ -119.228969087999971, 50.244168162000058 ], [ -119.228971001999952, 50.244495389000079 ], [ -119.228928617999912, 50.245465993000138 ], [ -119.228853166, 50.245652615000026 ], [ -119.225069347999963, 50.245660407000052 ], [ -119.225131423999969, 50.245245961000073 ], [ -119.225108124999934, 50.24524452800005 ], [ -119.225269639999951, 50.244166154 ], [ -119.225056380999945, 50.244153033000046 ], [ -119.224916604999962, 50.245086244000099 ], [ -119.222901454999928, 50.244962242000057 ], [ -119.222800365999959, 50.245636931000014 ], [ -119.21646694599994, 50.24540630600012 ], [ -119.216870880999934, 50.251361113000073 ], [ -119.21432848900001, 50.251340886000051 ], [ -119.214117211999977, 50.251105706000025 ], [ -119.213935989999939, 50.250764084000046 ], [ -119.213732310999916, 50.250103294000091 ], [ -119.213631091999957, 50.249397304000134 ], [ -119.213492908999939, 50.24916309300005 ], [ -119.213845792999933, 50.249017801000065 ], [ -119.214091512999971, 50.248789094000117 ], [ -119.214147317999974, 50.248444897000041 ], [ -119.214194804999977, 50.247395985000033 ], [ -119.214130602999944, 50.247035408000094 ], [ -119.213992577999988, 50.246800302000032 ], [ -119.21379739799994, 50.246626603 ], [ -119.212913005999937, 50.245948213000069 ], [ -119.211681691999942, 50.245000104000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78810667", "BldgCostT": "53616667", "sL_LossRatio": "1", "sL_AssetLoss": "4793.7", "sL_BldgLoss": "4793.7", "sL_StrLoss": "4793.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027EFCACB6DCD5DC0229CBB02F61E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.205063990999989, 50.241853394000017 ], [ -119.20481170199993, 50.241640819000068 ], [ -119.204220015999951, 50.241142207000088 ], [ -119.204028389999934, 50.241011212000082 ], [ -119.203707607999959, 50.240848693000075 ], [ -119.202902277999954, 50.240504885000071 ], [ -119.202629922999975, 50.240388621000136 ], [ -119.202493798999967, 50.240330502000084 ], [ -119.202361798999959, 50.240265209000043 ], [ -119.20215149099991, 50.240161194000052 ], [ -119.201524690999975, 50.239579913000107 ], [ -119.201283196999938, 50.239424998000139 ], [ -119.200866278999968, 50.2392276920001 ], [ -119.200392221999962, 50.238886001000068 ], [ -119.200368100999938, 50.238746391000056 ], [ -119.200419900999961, 50.238654807000067 ], [ -119.200521277999911, 50.238570791000043 ], [ -119.200700388999962, 50.238532196000101 ], [ -119.20076160399995, 50.238535918000167 ], [ -119.200866393999917, 50.238542273000078 ], [ -119.201645412999966, 50.238589598000011 ], [ -119.202511200999979, 50.238639483000036 ], [ -119.202833243999962, 50.238646240000087 ], [ -119.203553096999968, 50.238661295000099 ], [ -119.203956598999952, 50.238647394000054 ], [ -119.204175493999969, 50.238606804 ], [ -119.204476185999965, 50.238498904000068 ], [ -119.20542648, 50.238783293000012 ], [ -119.206184506999975, 50.238970007000106 ], [ -119.208335510999973, 50.239391695000059 ], [ -119.208989911999964, 50.239489802000016 ], [ -119.210578307999967, 50.23957779200002 ], [ -119.212538703999982, 50.239655409000072 ], [ -119.21287681699998, 50.239711406000026 ], [ -119.213762786999922, 50.239974602000075 ], [ -119.215074401999971, 50.240339895000076 ], [ -119.21470090699998, 50.240998502000124 ], [ -119.217281098999976, 50.241640615000058 ], [ -119.217496102999988, 50.241728695000056 ], [ -119.217636676999973, 50.241852095000063 ], [ -119.217712192999954, 50.241987590000122 ], [ -119.217881714999947, 50.242773700000065 ], [ -119.218007289999889, 50.243345704 ], [ -119.217914504999953, 50.244293486000082 ], [ -119.217855390999944, 50.244452311000018 ], [ -119.217639697999914, 50.244651198000085 ], [ -119.21670851499999, 50.243955485000079 ], [ -119.215725988999949, 50.243151891000132 ], [ -119.215469710999955, 50.243076483000038 ], [ -119.213922690999979, 50.242777211000011 ], [ -119.213563094, 50.242404686000029 ], [ -119.21344478799989, 50.242347696000088 ], [ -119.21268329899999, 50.242587916000033 ], [ -119.212189934999969, 50.242904603000042 ], [ -119.212051904999953, 50.242993196000022 ], [ -119.211049487999929, 50.243336804000108 ], [ -119.210890988999964, 50.243454294000124 ], [ -119.210769704999976, 50.243661791000086 ], [ -119.210758601999956, 50.24382 ], [ -119.210868794999939, 50.244071516000105 ], [ -119.211681691999942, 50.245000104000034 ], [ -119.212913005999937, 50.245948213000069 ], [ -119.21379739799994, 50.246626603 ], [ -119.213992577999988, 50.246800302000032 ], [ -119.214130602999944, 50.247035408000094 ], [ -119.214194804999977, 50.247395985000033 ], [ -119.214147317999974, 50.248444897000041 ], [ -119.214091512999971, 50.248789094000117 ], [ -119.213845792999933, 50.249017801000065 ], [ -119.213492908999939, 50.24916309300005 ], [ -119.2132484099999, 50.248755196000019 ], [ -119.21316270199992, 50.24854680700011 ], [ -119.213200886999957, 50.248151895000042 ], [ -119.213372301999968, 50.247291113000053 ], [ -119.213339007999977, 50.247090394000118 ], [ -119.213198483999975, 50.246928303000068 ], [ -119.21299619499996, 50.246820996000046 ], [ -119.212429320999931, 50.246637096 ], [ -119.21235643199995, 50.246603083000039 ], [ -119.21213961700002, 50.246501892000047 ], [ -119.211510898999975, 50.246016200000049 ], [ -119.211097306999989, 50.245768578000082 ], [ -119.209548316999971, 50.245125896000026 ], [ -119.209098412999978, 50.244913078000089 ], [ -119.209010389999918, 50.244853366000072 ], [ -119.20828911299999, 50.244363802000052 ], [ -119.207696113999972, 50.243856796000053 ], [ -119.207564804999947, 50.243759250000053 ], [ -119.206907812999958, 50.243271002000043 ], [ -119.205063990999989, 50.241853394000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59220583", "BldgCostT": "39898333", "sL_LossRatio": "1", "sL_AssetLoss": "3316.8", "sL_BldgLoss": "3316.8", "sL_StrLoss": "3316.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7B94B033BC85DC024F78D12E81D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.11500260299999, 50.245116057000068 ], [ -119.114529413999946, 50.244463330000102 ], [ -119.114547144999946, 50.2420375290001 ], [ -119.114570321999963, 50.238863886000068 ], [ -119.116570377999935, 50.238988956000107 ], [ -119.11667756199995, 50.238284587000095 ], [ -119.116682481999959, 50.238252252000166 ], [ -119.118329260999985, 50.238355204000086 ], [ -119.118438339999969, 50.237638191000045 ], [ -119.119284551999911, 50.237691084000055 ], [ -119.119524078000026, 50.236116312000071 ], [ -119.1209543, 50.236205694000049 ], [ -119.12106869199999, 50.235453428000071 ], [ -119.12068026699994, 50.235429155000084 ], [ -119.120697660999895, 50.235314774000081 ], [ -119.120649325999977, 50.235311754000051 ], [ -119.120640855999909, 50.235367450000076 ], [ -119.120188891999973, 50.235339204000084 ], [ -119.120146147999975, 50.235620260000111 ], [ -119.119861289999932, 50.235602457 ], [ -119.119834642999962, 50.235777667 ], [ -119.119525749999951, 50.235758360000027 ], [ -119.1194917399999, 50.235981974 ], [ -119.119278012999956, 50.235968615000083 ], [ -119.119234942999952, 50.236251779000021 ], [ -119.11878019199996, 50.236223355000057 ], [ -119.118758827999955, 50.236363790000077 ], [ -119.118511741999953, 50.236348345000103 ], [ -119.118483926999943, 50.236531196000072 ], [ -119.118104266000017, 50.236507462000077 ], [ -119.118083615999979, 50.236643204000053 ], [ -119.117811602999907, 50.23662619900005 ], [ -119.117782510999973, 50.236817412000079 ], [ -119.117418892999922, 50.236794678000102 ], [ -119.11732362699999, 50.237420820000111 ], [ -119.115854407999961, 50.237328954000148 ], [ -119.115825066999918, 50.237521754000063 ], [ -119.114500354999933, 50.237438907000119 ], [ -119.114530783999953, 50.235246991000125 ], [ -119.114538113999942, 50.234662303000057 ], [ -119.115582579000019, 50.234371 ], [ -119.115994193999924, 50.234211591000125 ], [ -119.11638368, 50.234012902000124 ], [ -119.120009021999948, 50.231898807000036 ], [ -119.121087183, 50.231269993000076 ], [ -119.124401243999955, 50.229403544000021 ], [ -119.126467213999902, 50.228239876000067 ], [ -119.128873310999921, 50.22688448600011 ], [ -119.128884261999957, 50.226878751000093 ], [ -119.129606420999906, 50.226499503000078 ], [ -119.131024797999942, 50.225858409000082 ], [ -119.131269173999925, 50.225754481000081 ], [ -119.131605940999961, 50.225611264000044 ], [ -119.134663500999935, 50.224310994000049 ], [ -119.135185097999951, 50.224149397000055 ], [ -119.137279614999912, 50.223729204000108 ], [ -119.139481649999965, 50.223098959000026 ], [ -119.141347083999932, 50.222564994000031 ], [ -119.141802595999962, 50.222439899000058 ], [ -119.146250609999953, 50.221430188000078 ], [ -119.147235098999957, 50.221252208000131 ], [ -119.149983014000014, 50.220894986000125 ], [ -119.151123580000032, 50.220699592000095 ], [ -119.151122727999962, 50.2208987180001 ], [ -119.151120457999951, 50.221411511000071 ], [ -119.151115983999958, 50.222429922000082 ], [ -119.149326637999962, 50.222318551000107 ], [ -119.149273989, 50.222666328000052 ], [ -119.148318474999925, 50.222606844000012 ], [ -119.148293552999945, 50.222771450000039 ], [ -119.147030439999952, 50.222692804000069 ], [ -119.14701, 50.222827780000031 ], [ -119.146989981, 50.222826533000067 ], [ -119.146904728, 50.223389481000055 ], [ -119.145825896999952, 50.223322297000074 ], [ -119.145785588999971, 50.223588405000037 ], [ -119.144167454999987, 50.223487616000099 ], [ -119.144130725999958, 50.223730044000057 ], [ -119.143201758999965, 50.223672170000036 ], [ -119.143165892999932, 50.223908864000059 ], [ -119.141745234999988, 50.22382034300005 ], [ -119.141683147999942, 50.224229997000087 ], [ -119.140907225, 50.224181641000072 ], [ -119.140756359999941, 50.225176917000113 ], [ -119.140063960999953, 50.22513376200002 ], [ -119.140039936999955, 50.225292232000072 ], [ -119.139921876999921, 50.225284873000099 ], [ -119.139578018999956, 50.227552880000076 ], [ -119.140094974999968, 50.227585102000027 ], [ -119.139884060999947, 50.228976236000058 ], [ -119.139845052999959, 50.229233510000071 ], [ -119.139846694999946, 50.229233612000037 ], [ -119.139606106999935, 50.230820333000075 ], [ -119.139763105999975, 50.230830119000061 ], [ -119.139584702999969, 50.232006677000079 ], [ -119.139758687, 50.232017520000042 ], [ -119.13921607199994, 50.235595725000088 ], [ -119.133634340999947, 50.235247713000028 ], [ -119.133812911999911, 50.234071169000082 ], [ -119.133638920999914, 50.234060316000111 ], [ -119.13387973499999, 50.232473615000039 ], [ -119.133722730999963, 50.232463822000057 ], [ -119.133858361999927, 50.231570134000073 ], [ -119.133726161999917, 50.231561887000147 ], [ -119.132082306999948, 50.231459333000018 ], [ -119.131933449, 50.232439930000027 ], [ -119.131932482999972, 50.232446288000119 ], [ -119.133759836999957, 50.232560288000045 ], [ -119.133267884999938, 50.235801539000107 ], [ -119.136128382999928, 50.235979929000038 ], [ -119.135585433999935, 50.239558098000039 ], [ -119.130003243999951, 50.23920990500006 ], [ -119.130495466999946, 50.235968682000056 ], [ -119.129120147999942, 50.235882851000021 ], [ -119.129077444999936, 50.236164009000099 ], [ -119.130254908999959, 50.236237493000068 ], [ -119.129711494999981, 50.239815632000024 ], [ -119.1246446439999, 50.239499325000054 ], [ -119.124561984999943, 50.240043149000037 ], [ -119.123715722999947, 50.23999029599999 ], [ -119.123476321999988, 50.241565069000067 ], [ -119.121829413999976, 50.241462194000036 ], [ -119.121720379999928, 50.242179207000021 ], [ -119.119127070000019, 50.242017165000085 ], [ -119.119014994999958, 50.242753868000115 ], [ -119.118230951999976, 50.2427048650001 ], [ -119.117901328999949, 50.24487121100006 ], [ -119.118292218999926, 50.244895643000106 ], [ -119.117747757999936, 50.248473682000039 ], [ -119.114740876999917, 50.248285710000104 ], [ -119.114554025999922, 50.245830721000047 ], [ -119.114554022999982, 50.24583009700013 ], [ -119.11483602, 50.245628649000118 ], [ -119.11496556900002, 50.245447588000097 ], [ -119.11500260299999, 50.245116057000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13328583", "BldgCostT": "8928333", "sL_LossRatio": "1", "sL_AssetLoss": "990.3", "sL_BldgLoss": "990.3", "sL_StrLoss": "990.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003745364621CD5DC06C061B4B161F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.216727055999925, 50.253126743000024 ], [ -119.216841342999913, 50.252364781000068 ], [ -119.212566134999918, 50.252101391000103 ], [ -119.211315875999944, 50.25202433200009 ], [ -119.211361995999937, 50.251717092000021 ], [ -119.211067288999942, 50.251698925000035 ], [ -119.21122528199993, 50.250646425000106 ], [ -119.211103660999967, 50.250638928000086 ], [ -119.211473469999987, 50.248175219000132 ], [ -119.211335936999902, 50.248166741000091 ], [ -119.211373688999942, 50.247915224000025 ], [ -119.209688001999936, 50.247811296000059 ], [ -119.209746380999917, 50.247422447000105 ], [ -119.209117709999958, 50.247383681000059 ], [ -119.20914436799994, 50.247206125000076 ], [ -119.208733210999924, 50.247180770000092 ], [ -119.208774534, 50.246905549000104 ], [ -119.208505620999972, 50.246888964000064 ], [ -119.208543777999964, 50.246634852000049 ], [ -119.208149827999932, 50.246610556000064 ], [ -119.208228145999939, 50.246088992000068 ], [ -119.207603144999965, 50.246050442000104 ], [ -119.207631215999982, 50.24586352600015 ], [ -119.207370350999952, 50.24584743500003 ], [ -119.207411056999945, 50.245576387000028 ], [ -119.207129661999943, 50.245559029000077 ], [ -119.20729343699999, 50.244468487000098 ], [ -119.206742909999932, 50.244478947000083 ], [ -119.206739789999958, 50.2444114030001 ], [ -119.203324117999955, 50.24420062700009 ], [ -119.203435048999935, 50.243462355000119 ], [ -119.202068484999984, 50.24348826900011 ], [ -119.202093341999898, 50.244027490000107 ], [ -119.200832064999943, 50.244051394000088 ], [ -119.200819644999953, 50.243781783000074 ], [ -119.200399223, 50.243789748000012 ], [ -119.200386802999944, 50.243520136000036 ], [ -119.199966381999914, 50.243528100000063 ], [ -119.199953966999928, 50.243258488000095 ], [ -119.19953354699993, 50.243266450000149 ], [ -119.199521134999941, 50.242996839000064 ], [ -119.199100716999965, 50.243004798000136 ], [ -119.199063486999989, 50.24219596500005 ], [ -119.19948389399994, 50.242188005000102 ], [ -119.199471482999954, 50.241918394000024 ], [ -119.199891888999929, 50.241910432000118 ], [ -119.199886743999954, 50.241798701000093 ], [ -119.198559115999956, 50.241716700000062 ], [ -119.198599149999922, 50.241450448000137 ], [ -119.198211322999953, 50.24142649100002 ], [ -119.198214931999971, 50.241402487000101 ], [ -119.197765047999965, 50.241411 ], [ -119.197715436999985, 50.240332553000073 ], [ -119.198182869, 50.240323708000062 ], [ -119.197055561999889, 50.240254061000087 ], [ -119.19740293299999, 50.237944087000059 ], [ -119.195212359999971, 50.237808716000082 ], [ -119.195523547999983, 50.235739810000055 ], [ -119.19866770099999, 50.236377697000087 ], [ -119.199990663999955, 50.236791381000067 ], [ -119.204378716999926, 50.238163299000085 ], [ -119.204747589999968, 50.238220407000078 ], [ -119.20653839799995, 50.238292084000093 ], [ -119.210372102999912, 50.238961994000057 ], [ -119.212844606999937, 50.239099991000032 ], [ -119.21543281, 50.239706391000084 ], [ -119.215074401999971, 50.240339895000076 ], [ -119.213762786999922, 50.239974602000075 ], [ -119.21287681699998, 50.239711406000026 ], [ -119.212538703999982, 50.239655409000072 ], [ -119.210578307999967, 50.23957779200002 ], [ -119.208989911999964, 50.239489802000016 ], [ -119.208335510999973, 50.239391695000059 ], [ -119.206184506999975, 50.238970007000106 ], [ -119.20542648, 50.238783293000012 ], [ -119.204476185999965, 50.238498904000068 ], [ -119.204175493999969, 50.238606804 ], [ -119.203956598999952, 50.238647394000054 ], [ -119.203553096999968, 50.238661295000099 ], [ -119.202833243999962, 50.238646240000087 ], [ -119.202511200999979, 50.238639483000036 ], [ -119.201645412999966, 50.238589598000011 ], [ -119.200866393999917, 50.238542273000078 ], [ -119.20076160399995, 50.238535918000167 ], [ -119.200700388999962, 50.238532196000101 ], [ -119.200521277999911, 50.238570791000043 ], [ -119.200419900999961, 50.238654807000067 ], [ -119.200368100999938, 50.238746391000056 ], [ -119.200392221999962, 50.238886001000068 ], [ -119.200866278999968, 50.2392276920001 ], [ -119.201283196999938, 50.239424998000139 ], [ -119.201524690999975, 50.239579913000107 ], [ -119.20215149099991, 50.240161194000052 ], [ -119.202361798999959, 50.240265209000043 ], [ -119.202493798999967, 50.240330502000084 ], [ -119.202629922999975, 50.240388621000136 ], [ -119.202902277999954, 50.240504885000071 ], [ -119.203707607999959, 50.240848693000075 ], [ -119.204028389999934, 50.241011212000082 ], [ -119.204220015999951, 50.241142207000088 ], [ -119.20481170199993, 50.241640819000068 ], [ -119.205063990999989, 50.241853394000017 ], [ -119.206907812999958, 50.243271002000043 ], [ -119.207564804999947, 50.243759250000053 ], [ -119.207696113999972, 50.243856796000053 ], [ -119.20828911299999, 50.244363802000052 ], [ -119.209010389999918, 50.244853366000072 ], [ -119.209098412999978, 50.244913078000089 ], [ -119.209548316999971, 50.245125896000026 ], [ -119.211097306999989, 50.245768578000082 ], [ -119.211510898999975, 50.246016200000049 ], [ -119.21213961700002, 50.246501892000047 ], [ -119.21235643199995, 50.246603083000039 ], [ -119.212429320999931, 50.246637096 ], [ -119.21299619499996, 50.246820996000046 ], [ -119.213198483999975, 50.246928303000068 ], [ -119.213339007999977, 50.247090394000118 ], [ -119.213372301999968, 50.247291113000053 ], [ -119.213200886999957, 50.248151895000042 ], [ -119.21316270199992, 50.24854680700011 ], [ -119.2132484099999, 50.248755196000019 ], [ -119.213492908999939, 50.24916309300005 ], [ -119.213631091999957, 50.249397304000134 ], [ -119.213732310999916, 50.250103294000091 ], [ -119.213935989999939, 50.250764084000046 ], [ -119.214117211999977, 50.251105706000025 ], [ -119.21432848900001, 50.251340886000051 ], [ -119.216870880999934, 50.251361113000073 ], [ -119.216997625999952, 50.253129096000094 ], [ -119.216727055999925, 50.253126743000024 ] ], [ [ -119.20359769199996, 50.24237988400003 ], [ -119.203624666999971, 50.242200349000093 ], [ -119.202848461999949, 50.242152436000026 ], [ -119.20285959499995, 50.242393883000041 ], [ -119.20359769199996, 50.24237988400003 ] ], [ [ -119.20242675499999, 50.242132244000082 ], [ -119.202499150999941, 50.242130872000089 ], [ -119.202426484999975, 50.242126386000059 ], [ -119.20242675499999, 50.242132244000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48069084", "BldgCostT": "29993334", "sL_LossRatio": "0.999435405061899", "sL_AssetLoss": "1572.809", "sL_BldgLoss": "1571.921", "sL_StrLoss": "1571.6", "sL_NStrLoss": "0.321", "sL_ContLoss": "0.888", "geom_point": "0101000020E6100000FE968CA500CB5DC0E0EB31B2E01D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.188823400999951, 50.239748534000078 ], [ -119.189229669999975, 50.237050131000096 ], [ -119.189107931, 50.237042601000041 ], [ -119.188883483, 50.238533384000064 ], [ -119.183301011, 50.23818788400007 ], [ -119.183412656999948, 50.237446952 ], [ -119.181586006999964, 50.23733383900003 ], [ -119.181783850999935, 50.236021151000052 ], [ -119.179575932999981, 50.235884386000102 ], [ -119.179606161999942, 50.235683876000046 ], [ -119.178561615999911, 50.235619158000084 ], [ -119.178591576999906, 50.235420447000109 ], [ -119.17683857499999, 50.235311811000031 ], [ -119.176894860999965, 50.234938604000078 ], [ -119.173865905999961, 50.234750830000088 ], [ -119.173912423999937, 50.234442524000038 ], [ -119.173805540999979, 50.234435896000036 ], [ -119.173737425999974, 50.234887339000075 ], [ -119.16815551799999, 50.234541072000113 ], [ -119.168412498999942, 50.232839246 ], [ -119.168384565999972, 50.232837512000103 ], [ -119.168313102999903, 50.233310767000035 ], [ -119.162731430999912, 50.232964226000036 ], [ -119.16275428199998, 50.232813016000073 ], [ -119.161591604999941, 50.232740793000133 ], [ -119.161665819999911, 50.23224978800009 ], [ -119.160959523999963, 50.232205909000086 ], [ -119.16094073, 50.232330237000042 ], [ -119.159251420999951, 50.232225270000107 ], [ -119.159228058999972, 50.232379776000087 ], [ -119.157051939999974, 50.232244521000041 ], [ -119.157013368999984, 50.232499527000066 ], [ -119.152663117999964, 50.232229009000108 ], [ -119.15261818099998, 50.232525927000111 ], [ -119.147036723999946, 50.23217859100005 ], [ -119.147065855, 50.231986273000082 ], [ -119.145507589999951, 50.231889249000133 ], [ -119.145528562999957, 50.231750810000101 ], [ -119.144754874999975, 50.23170262900004 ], [ -119.144772668999963, 50.231585186000082 ], [ -119.144394270999939, 50.231561620000051 ], [ -119.144758235, 50.22915952500005 ], [ -119.144936428999983, 50.227983371000057 ], [ -119.150517354000016, 50.228330814000117 ], [ -119.150499575999959, 50.228448259000061 ], [ -119.15087795099997, 50.228471805000069 ], [ -119.150856994999955, 50.228610246000081 ], [ -119.151088767999966, 50.228624668000073 ], [ -119.151081483999988, 50.230282407000068 ], [ -119.15111419599999, 50.230280328000028 ], [ -119.154777167999953, 50.230047492000082 ], [ -119.155840481999959, 50.229979907000015 ], [ -119.156681788999919, 50.229926411000129 ], [ -119.156954709999965, 50.229927817000053 ], [ -119.157915750999962, 50.229932787000081 ], [ -119.160042403999938, 50.229943783000095 ], [ -119.161551216999925, 50.230074158000079 ], [ -119.163133717999983, 50.230210865000053 ], [ -119.164025615999961, 50.230287890000042 ], [ -119.165311792999944, 50.230462599000063 ], [ -119.166633608000012, 50.230424493000022 ], [ -119.167507207, 50.230399310000067 ], [ -119.167919993999931, 50.23039773700004 ], [ -119.168385191999931, 50.230396015000032 ], [ -119.16849906099992, 50.23040041200013 ], [ -119.16991396, 50.230455401000022 ], [ -119.171965502999967, 50.23053511500008 ], [ -119.172712803999957, 50.23060401200005 ], [ -119.172754749, 50.230611021000122 ], [ -119.17360058, 50.230752382000041 ], [ -119.174388896, 50.230884120000091 ], [ -119.175298289999915, 50.231036091000121 ], [ -119.178547183999939, 50.231635694000083 ], [ -119.178980888999973, 50.23173811000003 ], [ -119.180776279000014, 50.23216209900005 ], [ -119.18147107299994, 50.232334946000087 ], [ -119.184009239999966, 50.232966407000042 ], [ -119.186933003999968, 50.23369369200006 ], [ -119.188686384, 50.234128683000037 ], [ -119.188955904999915, 50.234195525000096 ], [ -119.191785864999986, 50.234897486000115 ], [ -119.191573760999944, 50.236306901000077 ], [ -119.194944423999942, 50.236515300000043 ], [ -119.194406107999939, 50.240093754000064 ], [ -119.188823400999951, 50.239748534000078 ] ], [ [ -119.186285017000017, 50.234012978000145 ], [ -119.186354540999957, 50.233551339000066 ], [ -119.185568910999962, 50.233502710000081 ], [ -119.185499377999975, 50.233964349000097 ], [ -119.186285017000017, 50.234012978000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "72.2", "sL_BldgLoss": "72.2", "sL_StrLoss": "72.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D6849B2900C75DC0896D9C5EF31B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.109293616999977, 50.219844605000063 ], [ -119.109281721999963, 50.219574976000047 ], [ -119.108861484999935, 50.219582608000053 ], [ -119.108837701999974, 50.219043351000032 ], [ -119.108417469999921, 50.219050981000059 ], [ -119.108381803999976, 50.218242095000051 ], [ -119.107961579999966, 50.218249723000014 ], [ -119.107925920999946, 50.217440836000044 ], [ -119.10834613699997, 50.217433209000042 ], [ -119.108334247999935, 50.217163580000083 ], [ -119.110435317999986, 50.217125422000066 ], [ -119.110482920999956, 50.218203934000016 ], [ -119.110062697999965, 50.218211568000044 ], [ -119.110086494999962, 50.218750826000068 ], [ -119.11050672199994, 50.218743190000048 ], [ -119.110554326999946, 50.219821703000022 ], [ -119.109293616999977, 50.219844605000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.1", "sL_BldgLoss": "40.1", "sL_StrLoss": "40.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009C6A6FE854C55DC0DFC9E172C01B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.082415490999921, 50.216176011000115 ], [ -119.08442033099999, 50.216166366000053 ], [ -119.084216287999965, 50.217501626000072 ], [ -119.082107864, 50.217369087000101 ], [ -119.082415490999921, 50.216176011000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4458750", "BldgCostT": "3075000", "sL_LossRatio": "1", "sL_AssetLoss": "274.1", "sL_BldgLoss": "274.1", "sL_StrLoss": "274.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BD73E91E5CA5DC0141D4D1EE41B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.170279302999973, 50.219892661000074 ], [ -119.17027512099996, 50.21980050500013 ], [ -119.169950000999961, 50.219806580000061 ], [ -119.169826589999957, 50.21977431800012 ], [ -119.169443180999977, 50.219619710000103 ], [ -119.16942543799999, 50.219612558000065 ], [ -119.169422444999896, 50.219546588000078 ], [ -119.169268915, 50.219549456000038 ], [ -119.168997027999964, 50.219439847000046 ], [ -119.16898999499999, 50.219284819000102 ], [ -119.168629201999977, 50.219291557000112 ], [ -119.16814021499999, 50.219094419000086 ], [ -119.168137335, 50.219030894000078 ], [ -119.167989495999976, 50.219033653000089 ], [ -119.167872799999927, 50.218986605000119 ], [ -119.167712424999948, 50.218935185000127 ], [ -119.167668228999972, 50.217960265000073 ], [ -119.167248022999971, 50.217968107000026 ], [ -119.16723580199999, 50.21769848800006 ], [ -119.166815598999932, 50.217706329000094 ], [ -119.166803381999955, 50.217436710000065 ], [ -119.166383179999968, 50.217444549000078 ], [ -119.16633432099999, 50.216366076000064 ], [ -119.166754510999951, 50.216358237000023 ], [ -119.166742294999921, 50.216088619000047 ], [ -119.168002860999977, 50.216065094000072 ], [ -119.168015083999975, 50.216334713000037 ], [ -119.171376605999953, 50.216271915000114 ], [ -119.171388847999978, 50.216541531000104 ], [ -119.173489804999932, 50.21650223300005 ], [ -119.173575593999971, 50.218389552000048 ], [ -119.173155386999937, 50.218397417000098 ], [ -119.173216658999948, 50.219745502000109 ], [ -119.171956001999916, 50.219769084000049 ], [ -119.171966314999977, 50.21999613900006 ], [ -119.170926304999909, 50.219970841000041 ], [ -119.170325095999914, 50.219904631000105 ], [ -119.170279302999973, 50.219892661000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14394334", "BldgCostT": "9663334", "sL_LossRatio": "1", "sL_AssetLoss": "1172.2", "sL_BldgLoss": "1172.2", "sL_StrLoss": "1172.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F71672E89C65DC03F72EF0A921C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.096202087999956, 50.227359791000012 ], [ -119.096568302999927, 50.224959576000074 ], [ -119.094693456999963, 50.224841955000066 ], [ -119.095045938999959, 50.222532120000047 ], [ -119.095239451999973, 50.221263920000112 ], [ -119.100819168999976, 50.221613879000067 ], [ -119.100767189999971, 50.221954807000067 ], [ -119.100846747999981, 50.221959795000075 ], [ -119.100985416999947, 50.221050250000097 ], [ -119.10656515099997, 50.221399918000046 ], [ -119.106564306999985, 50.221405459000088 ], [ -119.107372726, 50.22145609600004 ], [ -119.107359528999922, 50.221542735000092 ], [ -119.108075509999978, 50.221587577000136 ], [ -119.108008805999972, 50.222025550000126 ], [ -119.108022854999959, 50.222026430000028 ], [ -119.108548264999925, 50.222016893000095 ], [ -119.10853637299999, 50.221747265000097 ], [ -119.108116119999934, 50.221754892000043 ], [ -119.10810423099997, 50.221485264000066 ], [ -119.107683977999955, 50.221492891000018 ], [ -119.107672091999959, 50.221223262000102 ], [ -119.107251842000011, 50.221230888000065 ], [ -119.107228073999963, 50.220691630000076 ], [ -119.10680782899999, 50.220699254000067 ], [ -119.106736546999983, 50.219081482000036 ], [ -119.10799724, 50.219058607000115 ], [ -119.108021013999945, 50.219597865000111 ], [ -119.108441251, 50.219590237000048 ], [ -119.10847692099999, 50.220399122000053 ], [ -119.108897163, 50.220391493000044 ], [ -119.108909054999941, 50.220661121000013 ], [ -119.109329299999956, 50.220653490000075 ], [ -119.10934119599996, 50.220923119000062 ], [ -119.110601935999966, 50.220900216000061 ], [ -119.110590034999987, 50.220630587000123 ], [ -119.111010277999966, 50.220622950000077 ], [ -119.110998373999948, 50.220353321000069 ], [ -119.111418615000019, 50.220345683000104 ], [ -119.111406707999947, 50.22007605500005 ], [ -119.112247186999923, 50.220060773000064 ], [ -119.112235274999975, 50.219791145000073 ], [ -119.112655511999932, 50.219783503000087 ], [ -119.112643597999963, 50.219513875000089 ], [ -119.113063830999948, 50.219506230000043 ], [ -119.113051915999918, 50.219236602000095 ], [ -119.114732840000016, 50.219206009000047 ], [ -119.114752647999936, 50.219653834000027 ], [ -119.114614801, 50.219701887000028 ], [ -119.114019901999953, 50.219946399000094 ], [ -119.113149913999948, 50.220481698000093 ], [ -119.111427112999962, 50.221761813000107 ], [ -119.111281707999964, 50.221847499 ], [ -119.110875020999956, 50.221974630000084 ], [ -119.110229291999971, 50.221986363000021 ], [ -119.110234801, 50.222111184000035 ], [ -119.108268698999908, 50.222480704000041 ], [ -119.10802109399998, 50.222608797000085 ], [ -119.107682285999942, 50.22286390400005 ], [ -119.10746711799996, 50.222945193000072 ], [ -119.107207395999936, 50.2229858070001 ], [ -119.106601919999932, 50.222957808000061 ], [ -119.106333421999963, 50.223009698000055 ], [ -119.106142702999946, 50.223106089000083 ], [ -119.105800604999899, 50.223382686000022 ], [ -119.105683209999938, 50.223441206000082 ], [ -119.105482889999934, 50.223462091000066 ], [ -119.105164841000018, 50.223421978000069 ], [ -119.104757515999907, 50.223370596000038 ], [ -119.103902923999968, 50.223248409000043 ], [ -119.103438286999918, 50.223275300000083 ], [ -119.103332922999982, 50.22336620500004 ], [ -119.10332140299991, 50.223861253000074 ], [ -119.103296907999948, 50.224914491000078 ], [ -119.103224000999916, 50.225189904000061 ], [ -119.103175591999957, 50.226265099000024 ], [ -119.103135885999947, 50.226543497000144 ], [ -119.103210808999947, 50.227207397000036 ], [ -119.102523599999984, 50.227261889000083 ], [ -119.102491201999982, 50.227259547000131 ], [ -119.102247791999915, 50.227241896000095 ], [ -119.102233103999964, 50.22723442500007 ], [ -119.101928797999904, 50.227080100000101 ], [ -119.101608893999966, 50.226951701000075 ], [ -119.101194405999976, 50.226853491000085 ], [ -119.099743387999965, 50.226836497000065 ], [ -119.098684699999964, 50.226760215000098 ], [ -119.098491475999964, 50.226769217000047 ], [ -119.098386791999971, 50.226774084000098 ], [ -119.098085687999912, 50.226827403000073 ], [ -119.096694689999964, 50.22724859900007 ], [ -119.096202087999956, 50.227359791000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "69", "sL_BldgLoss": "69", "sL_StrLoss": "69", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DC2A1B738C75DC0D4088185E11B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.11135908299994, 50.218997543000043 ], [ -119.11126384100001, 50.216840518000055 ], [ -119.112944683999942, 50.216809953000059 ], [ -119.112968510999977, 50.217349209000069 ], [ -119.113388725999954, 50.217341563000062 ], [ -119.113376809, 50.21707193600006 ], [ -119.114637444999971, 50.217048990000066 ], [ -119.114649369999967, 50.217318618000022 ], [ -119.115069582999965, 50.21731096600012 ], [ -119.11510536199998, 50.218119848000129 ], [ -119.113424476999953, 50.218150445000084 ], [ -119.113436394999979, 50.218420073000097 ], [ -119.113016169999952, 50.218427719000069 ], [ -119.113040000999916, 50.218966975000093 ], [ -119.11135908299994, 50.218997543000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22069084", "BldgCostT": "14748334", "sL_LossRatio": "1", "sL_AssetLoss": "1645.7", "sL_BldgLoss": "1645.7", "sL_StrLoss": "1645.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000778FE004EECD5DC0361E7422A41B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.211103636999908, 50.221022989000126 ], [ -119.211205486, 50.220344016000062 ], [ -119.209267347, 50.220224442000067 ], [ -119.209449950999939, 50.21900740800001 ], [ -119.209306329999919, 50.218998545000041 ], [ -119.209843221999975, 50.21541992100007 ], [ -119.21469820599999, 50.215719394000068 ], [ -119.214939273999931, 50.214111234000029 ], [ -119.220224628999986, 50.214437006000026 ], [ -119.220711088999963, 50.211188959000012 ], [ -119.222470351, 50.211297337000154 ], [ -119.222712085999959, 50.209682701000091 ], [ -119.225122314999936, 50.209831136000098 ], [ -119.225275122999946, 50.208810057000093 ], [ -119.230854301999955, 50.209153449000091 ], [ -119.230695802999946, 50.210213431000042 ], [ -119.230603027999905, 50.210233950000031 ], [ -119.230402305, 50.210278352000024 ], [ -119.2302451199999, 50.210313113000019 ], [ -119.229528789999947, 50.210585057000046 ], [ -119.229095116999929, 50.210802154000099 ], [ -119.229025478, 50.210846507000085 ], [ -119.228618406999956, 50.211105703000051 ], [ -119.228429201999958, 50.211226169000057 ], [ -119.227189203999927, 50.211957543 ], [ -119.226739698999936, 50.212222632000106 ], [ -119.22424957, 50.213691187000052 ], [ -119.224069613999973, 50.213878212000097 ], [ -119.224046170999912, 50.213902599000107 ], [ -119.223950156999976, 50.214092621000127 ], [ -119.223946812999941, 50.214114927000082 ], [ -119.223923363999958, 50.21427154800007 ], [ -119.223969941999982, 50.214430638000081 ], [ -119.224211951999933, 50.214781280000125 ], [ -119.224672468999984, 50.21544843300007 ], [ -119.225077147, 50.216034684000093 ], [ -119.225198348999953, 50.216202100000046 ], [ -119.225527977999917, 50.216657373000032 ], [ -119.22586464199999, 50.217122414000066 ], [ -119.225882935999905, 50.217235497000097 ], [ -119.225064301999964, 50.216806810000023 ], [ -119.224850114999953, 50.216752103000061 ], [ -119.224626217999941, 50.216723788000067 ], [ -119.224167119999919, 50.216715394000033 ], [ -119.224019859999956, 50.216737024000153 ], [ -119.223931700999955, 50.216676901000021 ], [ -119.22354499699999, 50.216530206000115 ], [ -119.222419888999951, 50.216723889000086 ], [ -119.22185080599999, 50.216562994000114 ], [ -119.221599186999953, 50.216577210000032 ], [ -119.221242414999963, 50.216745296000092 ], [ -119.221018089999944, 50.216741003000031 ], [ -119.220612592999913, 50.216443413000022 ], [ -119.22031879799998, 50.216457605000045 ], [ -119.220142122999903, 50.21664702800004 ], [ -119.219891089999948, 50.216916189000095 ], [ -119.219477389999952, 50.217075697000048 ], [ -119.218674908999944, 50.217010188000096 ], [ -119.21781641599992, 50.216604296000057 ], [ -119.217635120999958, 50.21663419900004 ], [ -119.216916294999919, 50.217152597000052 ], [ -119.21532729099999, 50.216750990000016 ], [ -119.21435529199999, 50.21666129700003 ], [ -119.213307700999962, 50.216774971000042 ], [ -119.212346882999924, 50.216879196000036 ], [ -119.212032639999947, 50.216954277000077 ], [ -119.21202681699998, 50.219926601000083 ], [ -119.212059416999949, 50.22363329100012 ], [ -119.206101086, 50.223663143000117 ], [ -119.202938745999944, 50.223678845000052 ], [ -119.203189244, 50.222010986000065 ], [ -119.205922112999971, 50.222179726000029 ], [ -119.205965330999987, 50.221891849000016 ], [ -119.207229759999947, 50.221969897000058 ], [ -119.20724097499999, 50.221895178000103 ], [ -119.207697968, 50.221923383000032 ], [ -119.207700954999922, 50.221903489000091 ], [ -119.20782978299998, 50.221911439000152 ], [ -119.207943985999961, 50.221150492000106 ], [ -119.20915330499993, 50.221225119000046 ], [ -119.209201244999974, 50.220905620000053 ], [ -119.211103636999908, 50.221022989000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11220417", "BldgCostT": "7241667", "sL_LossRatio": "1", "sL_AssetLoss": "585.1", "sL_BldgLoss": "585.1", "sL_StrLoss": "585.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7DB23E538CC5DC0BD5BB45BA61B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.190291241999958, 50.219160718000062 ], [ -119.190703441999958, 50.216421008000104 ], [ -119.185535477999963, 50.216101093000105 ], [ -119.1860742099999, 50.212522571000086 ], [ -119.191653546999973, 50.212867942000059 ], [ -119.191241436999988, 50.215607669000065 ], [ -119.19640938299996, 50.215927316000084 ], [ -119.195983864999945, 50.218757969000109 ], [ -119.195871427999947, 50.219505873000067 ], [ -119.19402265599993, 50.219391552000047 ], [ -119.190291241999958, 50.219160718000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020542", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24746750", "BldgCostT": "16595000", "sL_LossRatio": "1", "sL_AssetLoss": "1263.2", "sL_BldgLoss": "1263.2", "sL_StrLoss": "1263.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058B200F954C95DC08435C635DB1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.141338601, 50.219480698000048 ], [ -119.141349324999979, 50.216653691000026 ], [ -119.141350743999951, 50.216284385000066 ], [ -119.141352602999959, 50.21579269500009 ], [ -119.141347883999941, 50.215784150000076 ], [ -119.141275288999978, 50.215652409000043 ], [ -119.141120292999943, 50.215578716000024 ], [ -119.14092481599999, 50.215549299000081 ], [ -119.140346562999923, 50.215546315 ], [ -119.137227504999942, 50.215530096000087 ], [ -119.136687099999946, 50.215565014000056 ], [ -119.136145891999931, 50.215652309000106 ], [ -119.135167499999952, 50.215997699000113 ], [ -119.13395902399995, 50.2164243100001 ], [ -119.132574200999954, 50.216735199000091 ], [ -119.13254649199996, 50.216742957000115 ], [ -119.133023642999959, 50.213598162000046 ], [ -119.134007818999947, 50.213659582000034 ], [ -119.134051112999956, 50.213374186000102 ], [ -119.136488865999951, 50.213526280000089 ], [ -119.136531511000015, 50.213245042000011 ], [ -119.142110560999967, 50.213592917000078 ], [ -119.142005788999924, 50.214284401000086 ], [ -119.143980547999931, 50.214407467000058 ], [ -119.143896269999942, 50.214963844000067 ], [ -119.145667932999928, 50.215074222000112 ], [ -119.145387343000024, 50.216926955000062 ], [ -119.146034183999959, 50.216967247000078 ], [ -119.146231757999942, 50.215662570000106 ], [ -119.151811177999932, 50.216009953000068 ], [ -119.151761673999957, 50.216337130000092 ], [ -119.155019997999929, 50.216539865000094 ], [ -119.154979025999978, 50.216810784000074 ], [ -119.158712501999929, 50.217042963000061 ], [ -119.158486840999942, 50.218535804000112 ], [ -119.158287394999945, 50.218562703000082 ], [ -119.157817444, 50.218646711000069 ], [ -119.15763179299995, 50.21867989600004 ], [ -119.156900097999966, 50.218890897000072 ], [ -119.155797815999946, 50.219383096000087 ], [ -119.154839028999959, 50.219838579000061 ], [ -119.15450368700003, 50.219997892000066 ], [ -119.154020211999963, 50.220178204000021 ], [ -119.153645519999927, 50.22025726800004 ], [ -119.153121299999938, 50.220367898000056 ], [ -119.15305659799999, 50.220378628000134 ], [ -119.151862897999948, 50.220576845000089 ], [ -119.151123580000032, 50.220699592000095 ], [ -119.149983014000014, 50.220894986000125 ], [ -119.147235098999957, 50.221252208000131 ], [ -119.146250609999953, 50.221430188000078 ], [ -119.141802595999962, 50.222439899000058 ], [ -119.141347083999932, 50.222564994000031 ], [ -119.141344244999942, 50.221537330000118 ], [ -119.14134133099995, 50.220467303000078 ], [ -119.141338601, 50.219480698000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20440834", "BldgCostT": "13833334", "sL_LossRatio": "1", "sL_AssetLoss": "1490.6", "sL_BldgLoss": "1490.6", "sL_StrLoss": "1490.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023577FBE4CC55DC0B06AF748D61C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.073410004999985, 50.22668509600004 ], [ -119.073373075999967, 50.22352189500009 ], [ -119.07545189199999, 50.223512801000062 ], [ -119.076657931999989, 50.223528153000139 ], [ -119.079937366999957, 50.223569836000074 ], [ -119.079951414999982, 50.22357000800011 ], [ -119.08051003099996, 50.223564969000108 ], [ -119.081247947999941, 50.22070378500009 ], [ -119.086647934999917, 50.221043170000023 ], [ -119.086206297999965, 50.223933753000075 ], [ -119.086101264999968, 50.224621164000062 ], [ -119.085436486999953, 50.224579398000039 ], [ -119.085289724999924, 50.225539778000012 ], [ -119.08578468499995, 50.22557087500013 ], [ -119.085929568999973, 50.224622717000059 ], [ -119.091509626999979, 50.224973144000067 ], [ -119.091465969999931, 50.225259079000118 ], [ -119.09536932599994, 50.225504038000103 ], [ -119.095069575999943, 50.227468288000082 ], [ -119.09506249699993, 50.227468590000072 ], [ -119.093255283999937, 50.227404894000074 ], [ -119.092583387999966, 50.227442208000063 ], [ -119.092210265999952, 50.227504050000036 ], [ -119.091034291999975, 50.227699011000013 ], [ -119.09035269499999, 50.227753698000143 ], [ -119.090049419999943, 50.227757026000056 ], [ -119.085733594999951, 50.227804105000089 ], [ -119.084173895999967, 50.227678088000076 ], [ -119.083566799999957, 50.227604715000041 ], [ -119.080516795999941, 50.22684410200003 ], [ -119.080058419999958, 50.226756503000061 ], [ -119.079554989999977, 50.226751111000105 ], [ -119.078838798999968, 50.226810791000048 ], [ -119.078324407999958, 50.226904909000034 ], [ -119.077992883999983, 50.227000495000055 ], [ -119.077678617999965, 50.227121603000043 ], [ -119.07727542, 50.227335594000053 ], [ -119.076180991999976, 50.2281364030001 ], [ -119.07581868599999, 50.228304196000053 ], [ -119.074102991999922, 50.22882931700007 ], [ -119.073192191999937, 50.229055605000049 ], [ -119.072408681999988, 50.229204901000045 ], [ -119.072241889999987, 50.229163665000087 ], [ -119.072144090999942, 50.229139516000039 ], [ -119.072093498999948, 50.229027887000051 ], [ -119.072119608999969, 50.228885092000048 ], [ -119.073410887999941, 50.226937091000089 ], [ -119.073410004999985, 50.22668509600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12332917", "BldgCostT": "8241667", "sL_LossRatio": "1", "sL_AssetLoss": "1346", "sL_BldgLoss": "1346", "sL_StrLoss": "1346", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000050587FD769CC5DC0014D0846731C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.187253076999951, 50.222382291000017 ], [ -119.186390680000017, 50.222030911000083 ], [ -119.18485308399994, 50.221463530000072 ], [ -119.184941595999987, 50.220875766000049 ], [ -119.188501722999945, 50.221096172000045 ], [ -119.188543643999935, 50.220817648000029 ], [ -119.188801392999935, 50.220833601000059 ], [ -119.188841644999982, 50.220566154000082 ], [ -119.18976968199999, 50.220623587000055 ], [ -119.189905744999948, 50.219719377000018 ], [ -119.194006074999947, 50.219973036000056 ], [ -119.195485997000034, 50.220064551000107 ], [ -119.195432607999962, 50.22041964800011 ], [ -119.198004325999975, 50.220578628000105 ], [ -119.199675987999981, 50.220681935000052 ], [ -119.199443035999963, 50.222232209000026 ], [ -119.20209381899997, 50.222395972000044 ], [ -119.201987996999904, 50.223100440000081 ], [ -119.202365658999966, 50.223123766000086 ], [ -119.202281790999962, 50.223682095000122 ], [ -119.200001893999968, 50.22369334600004 ], [ -119.199524600999922, 50.223695700000079 ], [ -119.198868514999958, 50.223723684000142 ], [ -119.198497394999961, 50.223831688000089 ], [ -119.198342703, 50.223924199000031 ], [ -119.197888709999944, 50.224371258000126 ], [ -119.197790657999974, 50.224467810000078 ], [ -119.197499688, 50.224754310000044 ], [ -119.197186504999962, 50.224945299000062 ], [ -119.196945290999963, 50.224854619000084 ], [ -119.195851757999961, 50.224776979000033 ], [ -119.19362965099999, 50.224619222000058 ], [ -119.192729381999982, 50.224555304000091 ], [ -119.192598201999957, 50.22454600700005 ], [ -119.191996518999986, 50.224454693000062 ], [ -119.191520992999955, 50.224339493000087 ], [ -119.191108116999956, 50.2242009980001 ], [ -119.189702802999989, 50.223527199000046 ], [ -119.187253076999951, 50.222382291000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69684562", "BldgCostT": "46493191", "sL_LossRatio": "0.997509020071849", "sL_AssetLoss": "5138.54", "sL_BldgLoss": "5125.74", "sL_StrLoss": "5121.1", "sL_NStrLoss": "4.64", "sL_ContLoss": "12.8", "geom_point": "0101000020E61000007EBF66F397C65DC036C997695E1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.091699618999954, 50.23809482300009 ], [ -119.091741996999957, 50.237934505000069 ], [ -119.091737356999957, 50.237823599000066 ], [ -119.091667473999976, 50.236151729000056 ], [ -119.091655459999956, 50.235864093000082 ], [ -119.091652684999971, 50.235797711000103 ], [ -119.091641463999977, 50.23499972600009 ], [ -119.091626498, 50.233938973000079 ], [ -119.09161886699998, 50.233399807000112 ], [ -119.091616523999946, 50.233230711000054 ], [ -119.087601695, 50.233452713000084 ], [ -119.086381174999985, 50.233465494000029 ], [ -119.086386916999956, 50.233317807000034 ], [ -119.08647736799999, 50.231263565000027 ], [ -119.088158577999948, 50.231369150000056 ], [ -119.088047374999974, 50.232097009 ], [ -119.088603725999974, 50.23213194500012 ], [ -119.088606437999914, 50.232114196000055 ], [ -119.090299582999961, 50.232220496000117 ], [ -119.09034037099994, 50.231953436 ], [ -119.094156969999958, 50.232192955000045 ], [ -119.0943943, 50.23063813000006 ], [ -119.092103626999915, 50.230679409000118 ], [ -119.092115428999946, 50.230949041000081 ], [ -119.091695090000016, 50.230956611000046 ], [ -119.09170689099993, 50.231226241000115 ], [ -119.09086620399998, 50.231241377000039 ], [ -119.090889795999885, 50.231780639000057 ], [ -119.089628751999925, 50.231803332000027 ], [ -119.089616964999962, 50.23153370000005 ], [ -119.089196616999942, 50.231541261000167 ], [ -119.089184830999912, 50.231271630000045 ], [ -119.088764488999971, 50.231279189000169 ], [ -119.088717354999957, 50.230200664000058 ], [ -119.088297020999931, 50.230208222000151 ], [ -119.088273892999922, 50.229678874000044 ], [ -119.088151061999966, 50.22967116000008 ], [ -119.087432799999974, 50.229684069000044 ], [ -119.087430257999969, 50.229625893000062 ], [ -119.087270078999936, 50.229615832000015 ], [ -119.08722610699999, 50.229903625000134 ], [ -119.086539136999974, 50.229860477000123 ], [ -119.086564780999979, 50.229277690000025 ], [ -119.08653039899994, 50.229041683000091 ], [ -119.085733594999951, 50.227804105000089 ], [ -119.090049419999943, 50.227757026000056 ], [ -119.09035269499999, 50.227753698000143 ], [ -119.091034291999975, 50.227699011000013 ], [ -119.092210265999952, 50.227504050000036 ], [ -119.092583387999966, 50.227442208000063 ], [ -119.093255283999937, 50.227404894000074 ], [ -119.09506249699993, 50.227468590000072 ], [ -119.095069575999943, 50.227468288000082 ], [ -119.094875409999943, 50.228740551000051 ], [ -119.096644535999957, 50.228708629000096 ], [ -119.096622516999943, 50.228206636000039 ], [ -119.096078080999959, 50.228172487000045 ], [ -119.096202087999956, 50.227359791000012 ], [ -119.096694689999964, 50.22724859900007 ], [ -119.098085687999912, 50.226827403000073 ], [ -119.098386791999971, 50.226774084000098 ], [ -119.098491475999964, 50.226769217000047 ], [ -119.098684699999964, 50.226760215000098 ], [ -119.099743387999965, 50.226836497000065 ], [ -119.101194405999976, 50.226853491000085 ], [ -119.101608893999966, 50.226951701000075 ], [ -119.101928797999904, 50.227080100000101 ], [ -119.102233103999964, 50.22723442500007 ], [ -119.102247791999915, 50.227241896000095 ], [ -119.102491201999982, 50.227259547000131 ], [ -119.102523599999984, 50.227261889000083 ], [ -119.103210808999947, 50.227207397000036 ], [ -119.103135885999947, 50.226543497000144 ], [ -119.103175591999957, 50.226265099000024 ], [ -119.103224000999916, 50.225189904000061 ], [ -119.103296907999948, 50.224914491000078 ], [ -119.10332140299991, 50.223861253000074 ], [ -119.103332922999982, 50.22336620500004 ], [ -119.103438286999918, 50.223275300000083 ], [ -119.103902923999968, 50.223248409000043 ], [ -119.104757515999907, 50.223370596000038 ], [ -119.105164841000018, 50.223421978000069 ], [ -119.105482889999934, 50.223462091000066 ], [ -119.105683209999938, 50.223441206000082 ], [ -119.105800604999899, 50.223382686000022 ], [ -119.106142702999946, 50.223106089000083 ], [ -119.106333421999963, 50.223009698000055 ], [ -119.106601919999932, 50.222957808000061 ], [ -119.107207395999936, 50.2229858070001 ], [ -119.10746711799996, 50.222945193000072 ], [ -119.107682285999942, 50.22286390400005 ], [ -119.10802109399998, 50.222608797000085 ], [ -119.108268698999908, 50.222480704000041 ], [ -119.110234801, 50.222111184000035 ], [ -119.110241191999947, 50.222255991000061 ], [ -119.109820934999945, 50.222263626000014 ], [ -119.109844731999914, 50.222802882000096 ], [ -119.108583940999935, 50.222825777000047 ], [ -119.108585761999933, 50.222867089000033 ], [ -119.108676375999934, 50.222872764000051 ], [ -119.108648472999946, 50.223055983000094 ], [ -119.108858880999946, 50.223069159000076 ], [ -119.108804412999959, 50.223426827 ], [ -119.108824107999979, 50.223428060000124 ], [ -119.108786872999971, 50.223672552000032 ], [ -119.108873222999975, 50.22367796000006 ], [ -119.108849475999975, 50.223833891000048 ], [ -119.108959130999949, 50.223840757000083 ], [ -119.108935979999941, 50.223992773000049 ], [ -119.10902673799994, 50.22399845600011 ], [ -119.109007464999962, 50.224125009000026 ], [ -119.109266839999975, 50.224141249000112 ], [ -119.109121443, 50.225096013000098 ], [ -119.11085125399994, 50.225204308000094 ], [ -119.110795438999958, 50.225570903000033 ], [ -119.11088462, 50.225576485000019 ], [ -119.110905842999927, 50.225437088000028 ], [ -119.111936598999961, 50.225501605000055 ], [ -119.112055233999982, 50.224722265000075 ], [ -119.111965279999978, 50.224716634000046 ], [ -119.112469207999965, 50.221405958000055 ], [ -119.112306746999963, 50.221408912000072 ], [ -119.112318656999932, 50.221678539000067 ], [ -119.111898404999977, 50.221686182000042 ], [ -119.111910316, 50.221955810000082 ], [ -119.110875020999956, 50.221974630000084 ], [ -119.111281707999964, 50.221847499 ], [ -119.111427112999962, 50.221761813000107 ], [ -119.113149913999948, 50.220481698000093 ], [ -119.114019901999953, 50.219946399000094 ], [ -119.114614801, 50.219701887000028 ], [ -119.114752647999936, 50.219653834000027 ], [ -119.114780541999949, 50.220284518 ], [ -119.114360301999938, 50.220292170000107 ], [ -119.114372224999897, 50.220561797000087 ], [ -119.113951982999978, 50.220569447000067 ], [ -119.113963902999899, 50.220839074000018 ], [ -119.113543658999916, 50.220846722000068 ], [ -119.113555577999989, 50.221116350000081 ], [ -119.113135330999967, 50.221123996000109 ], [ -119.113137708999915, 50.221177804000071 ], [ -119.115721108999978, 50.22133944800013 ], [ -119.116970110999958, 50.221417576000086 ], [ -119.116979305999934, 50.221357116000064 ], [ -119.118863587999954, 50.221474955000069 ], [ -119.118876923999935, 50.221387259000103 ], [ -119.119578155999974, 50.221431105000121 ], [ -119.119582690999977, 50.221401275000119 ], [ -119.120052130999952, 50.221430625000046 ], [ -119.120055769999951, 50.221406686000137 ], [ -119.120405937999962, 50.221428578000094 ], [ -119.120411254999965, 50.221393595000045 ], [ -119.120853431999961, 50.221421236000012 ], [ -119.120874142, 50.221285005000048 ], [ -119.123110295999979, 50.221424766000098 ], [ -119.123116739999958, 50.221382357000046 ], [ -119.128696686999973, 50.221730905000051 ], [ -119.12841557800003, 50.223582149000059 ], [ -119.125984406000015, 50.223577135 ], [ -119.121706813999964, 50.223568190000023 ], [ -119.121398645999946, 50.223567553000066 ], [ -119.117514129999947, 50.223559260000101 ], [ -119.115326736999947, 50.223554528000051 ], [ -119.114845644999946, 50.223553503000048 ], [ -119.114801895999932, 50.223553413000097 ], [ -119.114723823999938, 50.22375171000003 ], [ -119.114631102999937, 50.227035687000118 ], [ -119.114503391999918, 50.227227193000076 ], [ -119.109403959999923, 50.227213810000059 ], [ -119.10713750299999, 50.227207801000063 ], [ -119.107172492999922, 50.227920686000033 ], [ -119.10836789699998, 50.227932313000089 ], [ -119.108607986, 50.227974412000073 ], [ -119.108729413999967, 50.228102096000086 ], [ -119.108760595, 50.228433700000039 ], [ -119.108805421999946, 50.228555709000027 ], [ -119.108919608999884, 50.228702787000017 ], [ -119.10905251399997, 50.228764393000098 ], [ -119.108791223999901, 50.228999998000091 ], [ -119.108795829999934, 50.229149870000121 ], [ -119.108804447999987, 50.229428458000037 ], [ -119.108819705999949, 50.229922898000076 ], [ -119.108862902999988, 50.230952405000089 ], [ -119.108153160999933, 50.230960135000025 ], [ -119.107339107999962, 50.230968990000079 ], [ -119.107329807000028, 50.23163120100002 ], [ -119.107323340999983, 50.232648271000059 ], [ -119.107322373999963, 50.232802188000093 ], [ -119.107318552999942, 50.233404873000012 ], [ -119.107309485999949, 50.234835163000099 ], [ -119.107307978999955, 50.235069968000069 ], [ -119.107307350999974, 50.235168812000104 ], [ -119.107299498999922, 50.236406398000064 ], [ -119.106464808999988, 50.236583939000077 ], [ -119.106197404999975, 50.236640788000066 ], [ -119.105587473999904, 50.2367976990001 ], [ -119.105197494999942, 50.236953011000068 ], [ -119.104827694, 50.237142891000069 ], [ -119.104773717999976, 50.237178721000113 ], [ -119.104409014999973, 50.237420945000068 ], [ -119.103586187999966, 50.237967286000114 ], [ -119.10337608399999, 50.238070607000061 ], [ -119.103004010999953, 50.238208464000145 ], [ -119.102913222999973, 50.238242105000076 ], [ -119.102480728999979, 50.238349570000032 ], [ -119.102446691999916, 50.238358017000046 ], [ -119.102740986999947, 50.23642793100003 ], [ -119.103365417999967, 50.236467052000073 ], [ -119.10352801099999, 50.235400545000111 ], [ -119.104094527999933, 50.235436036000102 ], [ -119.10418607, 50.234835509000071 ], [ -119.103805807999919, 50.234811687000061 ], [ -119.103836440999913, 50.234610739000075 ], [ -119.103832422999972, 50.234610489000083 ], [ -119.103940138, 50.233903875000053 ], [ -119.102835438999989, 50.233834663000025 ], [ -119.102967284, 50.232969858000068 ], [ -119.102720446, 50.232954391000064 ], [ -119.102730634999958, 50.233185955000067 ], [ -119.101889921999884, 50.233201170000086 ], [ -119.101901778999959, 50.233470799000052 ], [ -119.101481418999938, 50.233478405000078 ], [ -119.101493275999957, 50.233748034 ], [ -119.099548851999927, 50.233783196000097 ], [ -119.099434291999955, 50.234534235000119 ], [ -119.095617467999944, 50.23429489900014 ], [ -119.095375289999978, 50.235881624000058 ], [ -119.095126267999959, 50.235866004000052 ], [ -119.095093521999971, 50.236080536 ], [ -119.09516094699994, 50.236084766000019 ], [ -119.09490346299998, 50.237771589000083 ], [ -119.095614047999945, 50.237816158000058 ], [ -119.095582760999946, 50.238021140000072 ], [ -119.100037421999929, 50.23830043600006 ], [ -119.100000221999892, 50.238544311000048 ], [ -119.101119419999975, 50.23861445300011 ], [ -119.100876994, 50.238660890000126 ], [ -119.100184697999964, 50.238849891000029 ], [ -119.099642193999927, 50.238997991000112 ], [ -119.099117302999957, 50.239114099000076 ], [ -119.09856569599999, 50.239193288000124 ], [ -119.096956883999951, 50.239365098000064 ], [ -119.094985584999947, 50.239575563000109 ], [ -119.092879157999931, 50.239800420000059 ], [ -119.092049288999988, 50.239889002000055 ], [ -119.091781974999947, 50.239676120000112 ], [ -119.09174150699999, 50.239643912000105 ], [ -119.091694206999961, 50.239335707000102 ], [ -119.09167858299999, 50.238174298000033 ], [ -119.091699618999954, 50.23809482300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24305811", "BldgCostT": "15143190", "sL_LossRatio": "1", "sL_AssetLoss": "1123.8", "sL_BldgLoss": "1123.8", "sL_StrLoss": "1123.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E463D86BFC85DC0FA13C7472C1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.134351313999957, 50.223630499000095 ], [ -119.13401889, 50.223593493000102 ], [ -119.131968713999981, 50.223589376000113 ], [ -119.131771693999937, 50.223588982000187 ], [ -119.131479326999937, 50.223588397000135 ], [ -119.129798434999969, 50.223584967000072 ], [ -119.129615900999966, 50.223584605000035 ], [ -119.129173856999955, 50.223583703000024 ], [ -119.129285591999974, 50.222847800000054 ], [ -119.129753916999931, 50.22287703800005 ], [ -119.129909519999941, 50.221852113000097 ], [ -119.130643250999952, 50.221897915000064 ], [ -119.13087666199999, 50.220360231000029 ], [ -119.134802259999958, 50.220605199000026 ], [ -119.134873600999981, 50.220134921000096 ], [ -119.134919373999978, 50.220137777000097 ], [ -119.135285315999909, 50.217725324000149 ], [ -119.137923668999989, 50.217889885000062 ], [ -119.137960900999943, 50.217644329000066 ], [ -119.13785887899999, 50.217637967000101 ], [ -119.137877807999985, 50.217513122000071 ], [ -119.132480718999929, 50.217176420000051 ], [ -119.13254649199996, 50.216742957000115 ], [ -119.132574200999954, 50.216735199000091 ], [ -119.13395902399995, 50.2164243100001 ], [ -119.135167499999952, 50.215997699000113 ], [ -119.136145891999931, 50.215652309000106 ], [ -119.136687099999946, 50.215565014000056 ], [ -119.137227504999942, 50.215530096000087 ], [ -119.140346562999923, 50.215546315 ], [ -119.14092481599999, 50.215549299000081 ], [ -119.141120292999943, 50.215578716000024 ], [ -119.141275288999978, 50.215652409000043 ], [ -119.141347883999941, 50.215784150000076 ], [ -119.141352602999959, 50.21579269500009 ], [ -119.141350743999951, 50.216284385000066 ], [ -119.141349324999979, 50.216653691000026 ], [ -119.141338601, 50.219480698000048 ], [ -119.14134133099995, 50.220467303000078 ], [ -119.141344244999942, 50.221537330000118 ], [ -119.141347083999932, 50.222564994000031 ], [ -119.139481649999965, 50.223098959000026 ], [ -119.137279614999912, 50.223729204000108 ], [ -119.135185097999951, 50.224149397000055 ], [ -119.134701886999949, 50.223779695000083 ], [ -119.134520719999955, 50.22368349900011 ], [ -119.134494424999943, 50.223675266000029 ], [ -119.134351313999957, 50.223630499000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "282.5", "sL_BldgLoss": "282.5", "sL_StrLoss": "282.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B246EA12DC85DC0692F4734261C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.127489828999941, 50.218035017000062 ], [ -119.130786176999933, 50.218240840000142 ], [ -119.13024302, 50.221819065000062 ], [ -119.124663051999946, 50.221470594000024 ], [ -119.125125544999932, 50.218426266000058 ], [ -119.125710570999928, 50.218333891000043 ], [ -119.126350804999959, 50.218290888000048 ], [ -119.127489828999941, 50.218035017000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "87220750", "BldgCostT": "58945000", "sL_LossRatio": "1", "sL_AssetLoss": "5428.1", "sL_BldgLoss": "5428.1", "sL_StrLoss": "5428.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000419946938BC75DC069045582491D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.107318552999942, 50.233404873000012 ], [ -119.107322373999963, 50.232802188000093 ], [ -119.107323340999983, 50.232648271000059 ], [ -119.107329807000028, 50.23163120100002 ], [ -119.107339107999962, 50.230968990000079 ], [ -119.108153160999933, 50.230960135000025 ], [ -119.108862902999988, 50.230952405000089 ], [ -119.108819705999949, 50.229922898000076 ], [ -119.108804447999987, 50.229428458000037 ], [ -119.108795829999934, 50.229149870000121 ], [ -119.108791223999901, 50.228999998000091 ], [ -119.10905251399997, 50.228764393000098 ], [ -119.108919608999884, 50.228702787000017 ], [ -119.108805421999946, 50.228555709000027 ], [ -119.108760595, 50.228433700000039 ], [ -119.108729413999967, 50.228102096000086 ], [ -119.108607986, 50.227974412000073 ], [ -119.10836789699998, 50.227932313000089 ], [ -119.107172492999922, 50.227920686000033 ], [ -119.10713750299999, 50.227207801000063 ], [ -119.109403959999923, 50.227213810000059 ], [ -119.114503391999918, 50.227227193000076 ], [ -119.114631102999937, 50.227035687000118 ], [ -119.114723823999938, 50.22375171000003 ], [ -119.114801895999932, 50.223553413000097 ], [ -119.114845644999946, 50.223553503000048 ], [ -119.115326736999947, 50.223554528000051 ], [ -119.117514129999947, 50.223559260000101 ], [ -119.121398645999946, 50.223567553000066 ], [ -119.121706813999964, 50.223568190000023 ], [ -119.125984406000015, 50.223577135 ], [ -119.12841557800003, 50.223582149000059 ], [ -119.128403575000021, 50.223661200000066 ], [ -119.129154966000016, 50.223708114000033 ], [ -119.129173856999955, 50.223583703000024 ], [ -119.129615900999966, 50.223584605000035 ], [ -119.129798434999969, 50.223584967000072 ], [ -119.131479326999937, 50.223588397000135 ], [ -119.131771693999937, 50.223588982000187 ], [ -119.131968713999981, 50.223589376000113 ], [ -119.13401889, 50.223593493000102 ], [ -119.134351313999957, 50.223630499000095 ], [ -119.134494424999943, 50.223675266000029 ], [ -119.134520719999955, 50.22368349900011 ], [ -119.134701886999949, 50.223779695000083 ], [ -119.135185097999951, 50.224149397000055 ], [ -119.134663500999935, 50.224310994000049 ], [ -119.131605940999961, 50.225611264000044 ], [ -119.131269173999925, 50.225754481000081 ], [ -119.131024797999942, 50.225858409000082 ], [ -119.129606420999906, 50.226499503000078 ], [ -119.128884261999957, 50.226878751000093 ], [ -119.128873310999921, 50.22688448600011 ], [ -119.126467213999902, 50.228239876000067 ], [ -119.124401243999955, 50.229403544000021 ], [ -119.121087183, 50.231269993000076 ], [ -119.120009021999948, 50.231898807000036 ], [ -119.11638368, 50.234012902000124 ], [ -119.115994193999924, 50.234211591000125 ], [ -119.115582579000019, 50.234371 ], [ -119.114538113999942, 50.234662303000057 ], [ -119.113019173999959, 50.235069103000086 ], [ -119.111383693999983, 50.23550710800005 ], [ -119.110537075999943, 50.235701490000089 ], [ -119.107299498999922, 50.236406398000064 ], [ -119.107307350999974, 50.235168812000104 ], [ -119.107307978999955, 50.235069968000069 ], [ -119.107309485999949, 50.234835163000099 ], [ -119.107318552999942, 50.233404873000012 ] ], [ [ -119.111216492999944, 50.233083297000128 ], [ -119.11128636499997, 50.232624432000073 ], [ -119.11097310199996, 50.232604826000113 ], [ -119.110951090999961, 50.232749376000129 ], [ -119.110281958999948, 50.232707497000071 ], [ -119.110285120999961, 50.232779111000077 ], [ -119.110250545000014, 50.232779739000172 ], [ -119.110213871999974, 50.233020546 ], [ -119.111216492999944, 50.233083297000128 ] ], [ [ -119.118988623999925, 50.229999435000103 ], [ -119.119165010999907, 50.228839626000052 ], [ -119.118945095999948, 50.228843639000068 ], [ -119.118992908999985, 50.22992214300011 ], [ -119.117493711999941, 50.22994948300002 ], [ -119.117356433999973, 50.230851901000044 ], [ -119.118271150999988, 50.230909094000069 ], [ -119.118414966999921, 50.229963571000049 ], [ -119.118988623999925, 50.229999435000103 ] ], [ [ -119.125255220999961, 50.225433367000022 ], [ -119.125274021999985, 50.22530962200009 ], [ -119.125097406999927, 50.225298590000115 ], [ -119.125092089999924, 50.225333573000079 ], [ -119.124622607999953, 50.225304245000054 ], [ -119.124618969999929, 50.22532818400007 ], [ -119.12391767299999, 50.225284370000075 ], [ -119.123913139999928, 50.225314200000078 ], [ -119.122028684999947, 50.225196448000062 ], [ -119.122015354999974, 50.22528414300006 ], [ -119.11998666299999, 50.225157341000063 ], [ -119.11998169599994, 50.225190006000027 ], [ -119.120941899999963, 50.225250027000143 ], [ -119.120464138000017, 50.228392427000074 ], [ -119.121302321999949, 50.228444814000085 ], [ -119.121481784999972, 50.22726433400004 ], [ -119.121994743999892, 50.227296392000063 ], [ -119.122049777999933, 50.226934346000121 ], [ -119.124257778999961, 50.227072306000053 ], [ -119.124481045999985, 50.22560299800007 ], [ -119.12482763099996, 50.225624649000032 ], [ -119.124860440999967, 50.225408707000057 ], [ -119.125255220999961, 50.225433367000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "1", "sL_AssetLoss": "332.8", "sL_BldgLoss": "332.8", "sL_StrLoss": "332.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4642751E9C45DC0DD3ABD5A871F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.073929653999969, 50.248025531000074 ], [ -119.073947512999922, 50.247908913000074 ], [ -119.07344364699999, 50.24787721800007 ], [ -119.07399159499991, 50.244299395000091 ], [ -119.075592328999932, 50.24440007900013 ], [ -119.079573979999978, 50.24465041700013 ], [ -119.079556134999933, 50.244767036000077 ], [ -119.080059971999958, 50.244798703000136 ], [ -119.079512495999921, 50.248376554000053 ], [ -119.07861797299995, 50.248320330000055 ], [ -119.078587815999981, 50.248117511000018 ], [ -119.077654215999971, 50.248138881000045 ], [ -119.076822571999969, 50.248157887000033 ], [ -119.076360776999977, 50.248171031000041 ], [ -119.076279828999972, 50.24817333400005 ], [ -119.073929653999969, 50.248025531000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "111940583", "BldgCostT": "76463333", "sL_LossRatio": "0.999086711088086", "sL_AssetLoss": "8956.64", "sL_BldgLoss": "8948.46", "sL_StrLoss": "8945.5", "sL_NStrLoss": "2.96", "sL_ContLoss": "8.18", "geom_point": "0101000020E6100000D242FAD44EC55DC01A9BC2EF4B1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.072247463999986, 50.244041693000042 ], [ -119.07234089699989, 50.243431710000017 ], [ -119.06972092499997, 50.243266824000095 ], [ -119.069730179999922, 50.243206423000117 ], [ -119.068629877999925, 50.243137157 ], [ -119.068619739, 50.243203316000049 ], [ -119.063037616999921, 50.242851739000066 ], [ -119.063214565999914, 50.241698014000121 ], [ -119.06432130499999, 50.241699455000081 ], [ -119.06562159, 50.24170113900005 ], [ -119.06562659599993, 50.241609182000097 ], [ -119.065631583999945, 50.241517260000123 ], [ -119.065636607999934, 50.241425326000147 ], [ -119.065641613999944, 50.241333371000067 ], [ -119.065651606999964, 50.241149492000055 ], [ -119.065656593999961, 50.241057571000091 ], [ -119.065661601000016, 50.240965615000086 ], [ -119.065666623999903, 50.240873682 ], [ -119.065671592999976, 50.240781736000059 ], [ -119.065676563999943, 50.240689791000094 ], [ -119.065681604999966, 50.240597882000074 ], [ -119.065686572999965, 50.24050593700013 ], [ -119.065691578999989, 50.240413980000056 ], [ -119.06569660299999, 50.240322049000049 ], [ -119.065701571999981, 50.240230104000062 ], [ -119.06570659499999, 50.240138171000105 ], [ -119.065711618999941, 50.240046238000062 ], [ -119.065721594999928, 50.239862337000019 ], [ -119.065726615999949, 50.239770405000108 ], [ -119.065731604999883, 50.239678483000034 ], [ -119.065736609999959, 50.239586528000068 ], [ -119.06574163399992, 50.239494595000068 ], [ -119.065746205999972, 50.239410014000129 ], [ -119.065803980999974, 50.239413654000032 ], [ -119.065814121999978, 50.239347495000047 ], [ -119.066514205999979, 50.239391590000075 ], [ -119.06672335699993, 50.238027113000086 ], [ -119.070313335999913, 50.238253157000123 ], [ -119.070501535999966, 50.237024658000088 ], [ -119.070188464999973, 50.237004950000035 ], [ -119.070426153999989, 50.235453373000098 ], [ -119.07042848199994, 50.235438174000123 ], [ -119.069861535999934, 50.235402482000026 ], [ -119.069872987999972, 50.235217423000108 ], [ -119.070010702999951, 50.230662030000055 ], [ -119.069370269000018, 50.229980863000087 ], [ -119.068033747999962, 50.228590630000085 ], [ -119.068018829999943, 50.228575112000101 ], [ -119.067651812999927, 50.228214032000039 ], [ -119.069239443999905, 50.226658972000074 ], [ -119.06882897299991, 50.223489595000075 ], [ -119.069268181999988, 50.223492739000086 ], [ -119.071119905999922, 50.223505907000096 ], [ -119.073373075999967, 50.22352189500009 ], [ -119.073410004999985, 50.22668509600004 ], [ -119.073410887999941, 50.226937091000089 ], [ -119.072119608999969, 50.228885092000048 ], [ -119.072093498999948, 50.229027887000051 ], [ -119.072144090999942, 50.229139516000039 ], [ -119.072241889999987, 50.229163665000087 ], [ -119.072408681999988, 50.229204901000045 ], [ -119.073192191999937, 50.229055605000049 ], [ -119.074102991999922, 50.22882931700007 ], [ -119.07581868599999, 50.228304196000053 ], [ -119.076180991999976, 50.2281364030001 ], [ -119.07727542, 50.227335594000053 ], [ -119.077678617999965, 50.227121603000043 ], [ -119.077992883999983, 50.227000495000055 ], [ -119.078324407999958, 50.226904909000034 ], [ -119.078838798999968, 50.226810791000048 ], [ -119.079554989999977, 50.226751111000105 ], [ -119.080058419999958, 50.226756503000061 ], [ -119.080516795999941, 50.22684410200003 ], [ -119.083566799999957, 50.227604715000041 ], [ -119.084173895999967, 50.227678088000076 ], [ -119.085733594999951, 50.227804105000089 ], [ -119.08653039899994, 50.229041683000091 ], [ -119.086564780999979, 50.229277690000025 ], [ -119.086539136999974, 50.229860477000123 ], [ -119.08653887, 50.229860460000076 ], [ -119.086325909999942, 50.23125405200004 ], [ -119.08647736799999, 50.231263565000027 ], [ -119.086386916999956, 50.233317807000034 ], [ -119.086381174999985, 50.233465494000029 ], [ -119.087601695, 50.233452713000084 ], [ -119.091616523999946, 50.233230711000054 ], [ -119.09161886699998, 50.233399807000112 ], [ -119.091626498, 50.233938973000079 ], [ -119.091641463999977, 50.23499972600009 ], [ -119.091652684999971, 50.235797711000103 ], [ -119.091655459999956, 50.235864093000082 ], [ -119.091667473999976, 50.236151729000056 ], [ -119.091737356999957, 50.237823599000066 ], [ -119.091741996999957, 50.237934505000069 ], [ -119.091699618999954, 50.23809482300009 ], [ -119.09167858299999, 50.238174298000033 ], [ -119.091694206999961, 50.239335707000102 ], [ -119.09174150699999, 50.239643912000105 ], [ -119.091781974999947, 50.239676120000112 ], [ -119.092049288999988, 50.239889002000055 ], [ -119.092879157999931, 50.239800420000059 ], [ -119.094985584999947, 50.239575563000109 ], [ -119.096956883999951, 50.239365098000064 ], [ -119.09856569599999, 50.239193288000124 ], [ -119.099117302999957, 50.239114099000076 ], [ -119.099642193999927, 50.238997991000112 ], [ -119.100184697999964, 50.238849891000029 ], [ -119.100876994, 50.238660890000126 ], [ -119.101119419999975, 50.23861445300011 ], [ -119.102395396999967, 50.2386944060001 ], [ -119.102446691999916, 50.238358017000046 ], [ -119.102480728999979, 50.238349570000032 ], [ -119.102913222999973, 50.238242105000076 ], [ -119.103004010999953, 50.238208464000145 ], [ -119.10337608399999, 50.238070607000061 ], [ -119.103586187999966, 50.237967286000114 ], [ -119.104409014999973, 50.237420945000068 ], [ -119.104773717999976, 50.237178721000113 ], [ -119.104827694, 50.237142891000069 ], [ -119.105197494999942, 50.236953011000068 ], [ -119.105587473999904, 50.2367976990001 ], [ -119.106197404999975, 50.236640788000066 ], [ -119.106464808999988, 50.236583939000077 ], [ -119.107299498999922, 50.236406398000064 ], [ -119.110537075999943, 50.235701490000089 ], [ -119.111383693999983, 50.23550710800005 ], [ -119.113019173999959, 50.235069103000086 ], [ -119.114538113999942, 50.234662303000057 ], [ -119.114530783999953, 50.235246991000125 ], [ -119.114500354999933, 50.237438907000119 ], [ -119.11285447599991, 50.237335951000027 ], [ -119.112658589999938, 50.238622522000156 ], [ -119.112184867999972, 50.238592885000081 ], [ -119.112164075999914, 50.238729434000049 ], [ -119.111894843999977, 50.238712589000102 ], [ -119.111892063999932, 50.238730840000038 ], [ -119.108686014999989, 50.238530197000088 ], [ -119.108564453999975, 50.239328115 ], [ -119.107939978999966, 50.23928902300004 ], [ -119.10777747599991, 50.240355530000031 ], [ -119.104224424000037, 50.240133041000028 ], [ -119.103878620000017, 50.242401215 ], [ -119.099205806000015, 50.242108428000051 ], [ -119.099176712999949, 50.242299121000045 ], [ -119.098723809999967, 50.242270732000044 ], [ -119.098639217999988, 50.242825132000114 ], [ -119.093056909, 50.242475073000051 ], [ -119.093057375999962, 50.242472022000115 ], [ -119.09193494099999, 50.242401600000093 ], [ -119.091910812, 50.242559586 ], [ -119.091325694999966, 50.242522872000094 ], [ -119.091149339999959, 50.243677402000074 ], [ -119.089124192999947, 50.243550304000095 ], [ -119.089077458999924, 50.243856147000017 ], [ -119.085727583999955, 50.243645828000112 ], [ -119.085647828999981, 50.244167525000123 ], [ -119.082942884999952, 50.243997621000076 ], [ -119.082917409999936, 50.244164187000052 ], [ -119.081568100999959, 50.244079409000058 ], [ -119.081530759999964, 50.244323518000023 ], [ -119.077875570999964, 50.244093776000057 ], [ -119.077829803, 50.244392802000071 ], [ -119.075498438999915, 50.244246203000031 ], [ -119.072247463999986, 50.244041693000042 ] ], [ [ -119.077702755999923, 50.236938158000036 ], [ -119.077761413999951, 50.236554841000029 ], [ -119.07703542199999, 50.236509186000099 ], [ -119.076976757999915, 50.23689250300005 ], [ -119.077702755999923, 50.236938158000036 ] ], [ [ -119.074798255999937, 50.233682709000036 ], [ -119.075036523999955, 50.232126187000048 ], [ -119.07686631899999, 50.232241292 ], [ -119.07696517, 50.231595330000061 ], [ -119.07940579299995, 50.231748812000035 ], [ -119.079481380999979, 50.231254687000032 ], [ -119.080679865999969, 50.231330034000102 ], [ -119.080956644999986, 50.229520281000134 ], [ -119.080848149999937, 50.229513461000039 ], [ -119.080886959999958, 50.229259694000099 ], [ -119.079631643999917, 50.229180771000124 ], [ -119.079486583999937, 50.230129101000109 ], [ -119.07600969899994, 50.229910431000057 ], [ -119.075807285999986, 50.231232982000023 ], [ -119.075041220999964, 50.231184787000053 ], [ -119.075003961, 50.231428200000011 ], [ -119.074485271999919, 50.231395565000035 ], [ -119.074381322999955, 50.232074593000107 ], [ -119.074445512999958, 50.232078633000093 ], [ -119.074205652999964, 50.233645424000017 ], [ -119.074798255999937, 50.233682709000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026666", "BldgCostT": "3466666", "sL_LossRatio": "1", "sL_AssetLoss": "277.9", "sL_BldgLoss": "277.9", "sL_StrLoss": "277.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000667F452344C75DC07AD76684331F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.112164606999926, 50.248124591000092 ], [ -119.112611698999956, 50.245188850000048 ], [ -119.112220808999936, 50.245164399000053 ], [ -119.112620735999897, 50.242538173000121 ], [ -119.112242388999931, 50.242514505000038 ], [ -119.112787211999944, 50.238936465000052 ], [ -119.113949502999958, 50.239009171000127 ], [ -119.113977267999971, 50.238826792000097 ], [ -119.114570321999963, 50.238863886000068 ], [ -119.114547144999946, 50.2420375290001 ], [ -119.114529413999946, 50.244463330000102 ], [ -119.11500260299999, 50.245116057000068 ], [ -119.11496556900002, 50.245447588000097 ], [ -119.11483602, 50.245628649000118 ], [ -119.114554022999982, 50.24583009700013 ], [ -119.114554025999922, 50.245830721000047 ], [ -119.114740876999917, 50.248285710000104 ], [ -119.112164606999926, 50.248124591000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25760500", "BldgCostT": "15820000", "sL_LossRatio": "1", "sL_AssetLoss": "707.8", "sL_BldgLoss": "707.8", "sL_StrLoss": "707.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A462575C2BD5DC001678412C1224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.956983083999901, 50.279242919000041 ], [ -118.957061196999987, 50.278741773000057 ], [ -118.956894516, 50.278731117000078 ], [ -118.957202128999924, 50.276757508000053 ], [ -118.95522150499994, 50.276630877000137 ], [ -118.955393541999953, 50.27649341700009 ], [ -118.955763361999914, 50.276129626000049 ], [ -118.956285653999956, 50.275429630000083 ], [ -118.957102661999912, 50.274774730000082 ], [ -118.957471965999957, 50.274423432000063 ], [ -118.957816724999958, 50.274066145000148 ], [ -118.958419279999987, 50.273439003000092 ], [ -118.958610209999918, 50.273182072000104 ], [ -118.959117430999939, 50.272014107000146 ], [ -118.959302919999956, 50.2715870420001 ], [ -118.959388836999963, 50.271475111 ], [ -118.95952758599999, 50.271294336000032 ], [ -118.959877351999978, 50.270977096000088 ], [ -118.963789447999901, 50.268157108000025 ], [ -118.964208844999973, 50.267908435000045 ], [ -118.964645002999944, 50.267724034000018 ], [ -118.964779330999988, 50.267689181999984 ], [ -118.96515339599992, 50.267592132000118 ], [ -118.96794719899998, 50.267071450000081 ], [ -118.968432058999937, 50.266882039000038 ], [ -118.968804241, 50.26661949500005 ], [ -118.968815470999942, 50.266602198000072 ], [ -118.968924601999944, 50.266434804000021 ], [ -118.96894490899993, 50.266277098000053 ], [ -118.968878007999976, 50.265402189000056 ], [ -118.969080765999962, 50.264870687000013 ], [ -118.976797754999922, 50.26486116500012 ], [ -118.976416379999961, 50.267315554000064 ], [ -118.973163027999973, 50.267108058000062 ], [ -118.973050862999955, 50.267829528000057 ], [ -118.972714932999963, 50.267808097000056 ], [ -118.972593884999981, 50.268586637000091 ], [ -118.972105984999956, 50.26855551000007 ], [ -118.971995994999972, 50.269262849000043 ], [ -118.971815946999953, 50.269251361000101 ], [ -118.971701324, 50.269988454000035 ], [ -118.970960505999955, 50.269941185000093 ], [ -118.970817032999932, 50.270863672000068 ], [ -118.970215644999939, 50.27082529700008 ], [ -118.970209906999969, 50.270862186000052 ], [ -118.969739564999912, 50.270832170000133 ], [ -118.969738984999964, 50.270835896000087 ], [ -118.969464898999902, 50.270818404000131 ], [ -118.969350108999933, 50.271556303000082 ], [ -118.965212987999905, 50.271292184000053 ], [ -118.965192220999953, 50.271425599000111 ], [ -118.96466179199993, 50.271391724000047 ], [ -118.964590419000032, 50.271850211000043 ], [ -118.964126463999932, 50.271820580000046 ], [ -118.96407581299999, 50.272145922000092 ], [ -118.962975691999986, 50.272075653000051 ], [ -118.962446626000016, 50.275473151 ], [ -118.961299686999936, 50.275399879000119 ], [ -118.961299680999957, 50.275399913000065 ], [ -118.963037308999944, 50.275510916000087 ], [ -118.962959267999977, 50.276012069000039 ], [ -118.963125941, 50.276022715000046 ], [ -118.962568859999976, 50.27959983800006 ], [ -118.956983083999901, 50.279242919000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "1", "sL_AssetLoss": "375.6", "sL_BldgLoss": "375.6", "sL_StrLoss": "375.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001ABC1A66C9BB5DC08ABCF616202E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.930799449999924, 50.363274519000136 ], [ -118.93122574599991, 50.360554941000011 ], [ -118.930393022999951, 50.360501614000057 ], [ -118.93080743199999, 50.357857859000013 ], [ -118.930953641999963, 50.356925021000052 ], [ -118.936548799999954, 50.357283220000063 ], [ -118.936257417999911, 50.359143697000079 ], [ -118.937740303999988, 50.359238582000053 ], [ -118.938437268999976, 50.359283171000136 ], [ -118.93787721299995, 50.362859791000062 ], [ -118.937180191999929, 50.362815198000071 ], [ -118.936529960999962, 50.362773595000093 ], [ -118.936395391999923, 50.363632722000055 ], [ -118.93588968200001, 50.363600363000018 ], [ -118.930799449999924, 50.363274519000136 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "33.7", "sL_BldgLoss": "33.7", "sL_StrLoss": "33.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DAFC0C24FBB5DC0AA87811128254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.926454414999981, 50.289826705000031 ], [ -118.929598247999948, 50.288960400000057 ], [ -118.929438197999929, 50.289982964000046 ], [ -118.927719426999914, 50.289872676000066 ], [ -118.927513382, 50.291188705000152 ], [ -118.922560254999937, 50.290870726000065 ], [ -118.92265749099991, 50.290848400000044 ], [ -118.923849682999929, 50.290676498000074 ], [ -118.924356011999961, 50.290555547000054 ], [ -118.924761301999951, 50.290458708000109 ], [ -118.926454414999981, 50.289826705000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "197.1", "sL_BldgLoss": "197.1", "sL_StrLoss": "197.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD074378CFBF5DC06BB91205231E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.993391478000021, 50.236391619000081 ], [ -118.993415220999978, 50.236238346000029 ], [ -118.988467433999972, 50.235923284000073 ], [ -118.988582876999914, 50.23517853300006 ], [ -118.988667146999944, 50.235160901000043 ], [ -118.989744279999911, 50.235038046000106 ], [ -118.99157072899996, 50.234952931000073 ], [ -118.99223991099997, 50.234956833000147 ], [ -118.992741885999919, 50.234959803000088 ], [ -118.993018793999937, 50.234990891000081 ], [ -118.993476353999966, 50.23507425800009 ], [ -118.994420610999924, 50.23524629800005 ], [ -118.994993922000035, 50.235292809000086 ], [ -118.995007992999888, 50.235292336000036 ], [ -118.995642519999976, 50.23527080200013 ], [ -118.997207638999981, 50.235100160000037 ], [ -118.998593367999987, 50.234949069000038 ], [ -118.99907911299999, 50.234896108000044 ], [ -118.999673115999926, 50.234781200000072 ], [ -118.999999944999942, 50.234697235000077 ], [ -119.001310505999982, 50.234360611000014 ], [ -119.002150012999948, 50.234234204000082 ], [ -119.002896780999919, 50.234144861000061 ], [ -119.003610332999983, 50.234059469000087 ], [ -119.0046146, 50.23393930900005 ], [ -119.005055668999944, 50.23391347700003 ], [ -119.004809446999971, 50.235505688000046 ], [ -119.000447566, 50.235228396000068 ], [ -119.000349474999894, 50.235862289000117 ], [ -118.999121243999923, 50.235784176000053 ], [ -118.998972263999988, 50.236746717000059 ], [ -118.993391478000021, 50.236391619000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3320500", "BldgCostT": "2290000", "sL_LossRatio": "1", "sL_AssetLoss": "164.6", "sL_BldgLoss": "164.6", "sL_StrLoss": "164.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E80FAC7E9BB5DC0920E490C86304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.933037621999944, 50.381012845000051 ], [ -118.933135276999934, 50.380389945000076 ], [ -118.933091566999934, 50.380387148000068 ], [ -118.933652218999981, 50.37681063200008 ], [ -118.934974317999931, 50.376895226000073 ], [ -118.939249858999972, 50.377168685000122 ], [ -118.939152294999971, 50.377791594000037 ], [ -118.93919600199996, 50.377794388000019 ], [ -118.939071825999974, 50.378587189000044 ], [ -118.938635775999956, 50.381370928000095 ], [ -118.93721004399994, 50.381279759000023 ], [ -118.934316132999982, 50.381094650000065 ], [ -118.933037621999944, 50.381012845000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "67.5", "sL_BldgLoss": "67.5", "sL_StrLoss": "67.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B27CFA3FFC45DC02BF1CA3FC4204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.076932879999973, 50.258097793000076 ], [ -119.077057928999963, 50.257281119000098 ], [ -119.076621525999954, 50.257253686000134 ], [ -119.077169335999955, 50.253675890000046 ], [ -119.079307944999954, 50.25381030900013 ], [ -119.079319652999956, 50.254924479000103 ], [ -119.079311084999958, 50.255553465000048 ], [ -119.079274348999931, 50.258244950000076 ], [ -119.076932879999973, 50.258097793000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "1", "sL_AssetLoss": "127.7", "sL_BldgLoss": "127.7", "sL_StrLoss": "127.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F5372D224BD5DC0306A104921374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.951844419999972, 50.432028196000061 ], [ -118.95120984499998, 50.43152752000006 ], [ -118.951084502999933, 50.43142862800007 ], [ -118.952145101, 50.431496236000022 ], [ -118.952128225999957, 50.431604037000092 ], [ -118.952556349999981, 50.43163132500009 ], [ -118.953021984999936, 50.428656300000128 ], [ -118.95862620099993, 50.429013351000073 ], [ -118.958066877999954, 50.43258976000007 ], [ -118.95315075399999, 50.43227656500008 ], [ -118.953011034, 50.43316924500003 ], [ -118.952368294999957, 50.432540618000104 ], [ -118.952289165999971, 50.432463198000065 ], [ -118.951844419999972, 50.432028196000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "72", "sL_BldgLoss": "72", "sL_StrLoss": "72", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007930D6F553BD5DC0C4EFE00600384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.954982721999968, 50.435875173000056 ], [ -118.960411828999952, 50.436220917000099 ], [ -118.959852557999923, 50.439797302000073 ], [ -118.958998904999959, 50.439742957000085 ], [ -118.958513020999987, 50.43933570700009 ], [ -118.957376234999927, 50.438666333000079 ], [ -118.95726631299999, 50.438601601000101 ], [ -118.956790725999909, 50.438026421000124 ], [ -118.955430008999926, 50.436380693000075 ], [ -118.954982721999968, 50.435875173000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5454417", "BldgCostT": "3761667", "sL_LossRatio": "1", "sL_AssetLoss": "285.5", "sL_BldgLoss": "285.5", "sL_StrLoss": "285.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000073DD6B73E9BA5DC018A6638C97324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.919083052999937, 50.398225923000041 ], [ -118.91947528099999, 50.395729904000085 ], [ -118.915752420999979, 50.395491236000034 ], [ -118.91631463199991, 50.391914875000076 ], [ -118.921914003, 50.392273798000076 ], [ -118.921521938999959, 50.394769836000087 ], [ -118.925244771999985, 50.395008310000016 ], [ -118.92468322799995, 50.398584702000036 ], [ -118.919083052999937, 50.398225923000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.9", "sL_BldgLoss": "36.9", "sL_StrLoss": "36.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0503218E7BC5DC02F649E2A19254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.95069417699996, 50.290885473000188 ], [ -118.950616982999989, 50.288997911000074 ], [ -118.951037870999969, 50.288990846000068 ], [ -118.951026840999972, 50.2887211950001 ], [ -118.952289495999963, 50.288699989000115 ], [ -118.952322606999957, 50.289508943000101 ], [ -118.952665413999966, 50.289503184000083 ], [ -118.952743497999961, 50.289501871000056 ], [ -118.952753419999979, 50.289744211000013 ], [ -118.952776618999948, 50.290310825000077 ], [ -118.952355718999968, 50.290317896000033 ], [ -118.952377792999982, 50.290857198 ], [ -118.95069417699996, 50.290885473000188 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "1", "sL_AssetLoss": "146.8", "sL_BldgLoss": "146.8", "sL_StrLoss": "146.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB17739DA7BB5DC0A946966987334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.932042248999963, 50.400759773000118 ], [ -118.935186222999945, 50.400960847000071 ], [ -118.934625393999937, 50.404537262000069 ], [ -118.930679200000014, 50.404284869000016 ], [ -118.93040656299999, 50.404267426000104 ], [ -118.929024401999939, 50.404178988000091 ], [ -118.92958567, 50.400602599000109 ], [ -118.93124034, 50.400708473000044 ], [ -118.932042248999963, 50.400759773000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4316167", "BldgCostT": "2976667", "sL_LossRatio": "1", "sL_AssetLoss": "223.5", "sL_BldgLoss": "223.5", "sL_StrLoss": "223.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD205FBE8CBA5DC06B8B2960D4254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.920942284999953, 50.291242197000031 ], [ -118.921985906999964, 50.291002594000076 ], [ -118.921644935999964, 50.293178534000035 ], [ -118.919072017999952, 50.293013257000055 ], [ -118.918819893999967, 50.294621495000058 ], [ -118.916708747999962, 50.294485835000039 ], [ -118.91647726599993, 50.295961844000075 ], [ -118.915947216999925, 50.295927777000031 ], [ -118.915718311999939, 50.297387158000042 ], [ -118.914762937999953, 50.29732574900008 ], [ -118.914623012000021, 50.298217681000018 ], [ -118.91045010499991, 50.297949357000057 ], [ -118.910192494999933, 50.299590379000058 ], [ -118.907443697999923, 50.299413539000049 ], [ -118.908572779999972, 50.297813283000032 ], [ -118.908844857999938, 50.297741147000075 ], [ -118.909021111999962, 50.29769439300005 ], [ -118.909893111999963, 50.297309655000042 ], [ -118.910451353999946, 50.297063369000043 ], [ -118.911283000999958, 50.296696407000077 ], [ -118.911690293999968, 50.296348600000115 ], [ -118.91179039299999, 50.296168409000096 ], [ -118.912081652999959, 50.295644140000078 ], [ -118.912118995999919, 50.295576897000018 ], [ -118.91250899899994, 50.295285806000024 ], [ -118.913256512999936, 50.294954497000091 ], [ -118.914308000999981, 50.294565992000038 ], [ -118.914746701999917, 50.294332302000022 ], [ -118.915440609999976, 50.293848501000078 ], [ -118.915778083999953, 50.293522505000062 ], [ -118.916112100999968, 50.293372301000076 ], [ -118.916567622999978, 50.293256202000066 ], [ -118.917134006999945, 50.293144399000035 ], [ -118.917514709999978, 50.292965709000065 ], [ -118.918008793999945, 50.292514187000052 ], [ -118.918630973999967, 50.292126500000073 ], [ -118.919029797999912, 50.291877998000125 ], [ -118.919672985999981, 50.291626697000041 ], [ -118.920571954999943, 50.291354401000092 ], [ -118.920942284999953, 50.291242197000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "1", "sL_AssetLoss": "113.3", "sL_BldgLoss": "113.3", "sL_StrLoss": "113.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007D139C37DBC5DC05155991010254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.94482349, 50.291523543000061 ], [ -118.944815067999912, 50.291317013000054 ], [ -118.944032860999968, 50.291266935000081 ], [ -118.943549766999965, 50.291275016000085 ], [ -118.943548172999925, 50.291235903000043 ], [ -118.942101749999921, 50.291143281000068 ], [ -118.942660587, 50.287566314000074 ], [ -118.948247275999961, 50.287923952000035 ], [ -118.94768887399999, 50.291500946000099 ], [ -118.946081968999977, 50.291398108000095 ], [ -118.946086223999927, 50.291502404000028 ], [ -118.94482349, 50.291523543000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "1", "sL_AssetLoss": "101.1", "sL_BldgLoss": "101.1", "sL_StrLoss": "101.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094C516E586B95DC083FBC76302364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.896366532999963, 50.419999692000012 ], [ -118.901969227999956, 50.420359609000087 ], [ -118.901519907999969, 50.423210170000083 ], [ -118.901331096999954, 50.423339207000012 ], [ -118.900959866999983, 50.423746958000102 ], [ -118.90082204799999, 50.423898300000069 ], [ -118.895802393999986, 50.423575826000075 ], [ -118.896366532999963, 50.419999692000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4601333", "BldgCostT": "3173333", "sL_LossRatio": "1", "sL_AssetLoss": "148.1", "sL_BldgLoss": "148.1", "sL_StrLoss": "148.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000092BB9DB750C15DC00F74FE37401E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.02546693499994, 50.239097104000052 ], [ -119.025618771999959, 50.23811240100008 ], [ -119.025110490999936, 50.23808019700008 ], [ -119.02515832499995, 50.237769995000086 ], [ -119.019736941999966, 50.23742634900006 ], [ -119.019739499999901, 50.237409780000107 ], [ -119.019300430999976, 50.237381937000066 ], [ -119.019303340999926, 50.237363083000112 ], [ -119.018657411999982, 50.237322119000069 ], [ -119.018734293999955, 50.236823992000083 ], [ -119.016693883999963, 50.236694565000072 ], [ -119.01673707199997, 50.236414827000068 ], [ -119.016023381999915, 50.236369547000038 ], [ -119.016230848999925, 50.235025810000081 ], [ -119.012358082999924, 50.234780023000035 ], [ -119.01231884699996, 50.235034019000089 ], [ -119.006738167999956, 50.234679593000102 ], [ -119.006876026999947, 50.233787855000081 ], [ -119.007872189999929, 50.233599895000097 ], [ -119.008455011999928, 50.233520412000125 ], [ -119.009419234999953, 50.233466383000064 ], [ -119.010910683999953, 50.233382793000082 ], [ -119.012139079999912, 50.233411198000056 ], [ -119.012740389999948, 50.233458394000081 ], [ -119.013323793999945, 50.233539612000079 ], [ -119.015003286999956, 50.233884692000046 ], [ -119.01697551499997, 50.234278104000083 ], [ -119.016991877999885, 50.23428285500006 ], [ -119.017111566999958, 50.234317705000073 ], [ -119.017510802999965, 50.234433891000052 ], [ -119.018191684999977, 50.234701813000058 ], [ -119.018274506999958, 50.234734405000104 ], [ -119.020280089999972, 50.235614802000086 ], [ -119.020470066, 50.235684055000092 ], [ -119.020810903999944, 50.235808286000044 ], [ -119.021376310999983, 50.235969705000088 ], [ -119.022563906999935, 50.236226500000036 ], [ -119.023385817, 50.236375438000081 ], [ -119.023468393999963, 50.23639040700008 ], [ -119.025242592999987, 50.236661789 ], [ -119.027153498999937, 50.236860504000042 ], [ -119.027926822999973, 50.236953029000048 ], [ -119.028483124999951, 50.237019580000037 ], [ -119.029177069999946, 50.237102629000049 ], [ -119.031324416999922, 50.237359510000054 ], [ -119.031826409999923, 50.23745720700002 ], [ -119.032588289999978, 50.237678809000109 ], [ -119.033308752, 50.237929826000062 ], [ -119.033098086999985, 50.237933514000112 ], [ -119.033109559999957, 50.238203154000139 ], [ -119.031848300999911, 50.238225222000047 ], [ -119.031825368999961, 50.237685940000063 ], [ -119.031767619, 50.237686952000089 ], [ -119.031602989999925, 50.238755571000041 ], [ -119.031159711000029, 50.238727509000078 ], [ -119.031048303999953, 50.239450580000032 ], [ -119.02546693499994, 50.239097104000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "195.4", "sL_BldgLoss": "195.4", "sL_StrLoss": "195.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D11221101BE5DC0F71D68AA4C254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.966299957, 50.289435356000105 ], [ -118.971887061999936, 50.28979180000006 ], [ -118.971330504999969, 50.29336890400009 ], [ -118.965742962999968, 50.29301243300003 ], [ -118.966299957, 50.289435356000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "1", "sL_AssetLoss": "140", "sL_BldgLoss": "140", "sL_StrLoss": "140", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4F38D8574BC5DC0E32407CBDC274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.945492639999927, 50.309675592000119 ], [ -118.947686079999954, 50.309815913000079 ], [ -118.947481779999933, 50.311123911000045 ], [ -118.947127364999915, 50.313392804000053 ], [ -118.946434491999952, 50.313348484000095 ], [ -118.944933752999958, 50.313252472000038 ], [ -118.94153754599995, 50.313035120000052 ], [ -118.942096696999954, 50.309458257000131 ], [ -118.945492639999927, 50.309675592000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "1", "sL_AssetLoss": "128.1", "sL_BldgLoss": "128.1", "sL_StrLoss": "128.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BD6F9F9E7BD5DC053CCE616DF254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.964768374999949, 50.293903833000073 ], [ -118.970356019999954, 50.294260352000045 ], [ -118.969799285999983, 50.29783742700004 ], [ -118.964211205999959, 50.297480882000151 ], [ -118.964768374999949, 50.293903833000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "69.7", "sL_BldgLoss": "69.7", "sL_StrLoss": "69.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000030682101E3B85DC07066AA1647364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.88598552, 50.422289383000077 ], [ -118.890775177999913, 50.422597525000114 ], [ -118.890304780999926, 50.425576915000157 ], [ -118.890036192999929, 50.425583614000075 ], [ -118.889056516999943, 50.42582859400008 ], [ -118.888722, 50.425859403000047 ], [ -118.888262108999953, 50.42603850100005 ], [ -118.888246442999971, 50.426047283000088 ], [ -118.887460426999965, 50.425996715000053 ], [ -118.887465603999942, 50.425974612000111 ], [ -118.887484519999987, 50.424943476000109 ], [ -118.887492207999969, 50.424524990000073 ], [ -118.887469603999975, 50.423333293000105 ], [ -118.887327394999957, 50.423042299000045 ], [ -118.887077399999924, 50.422860078000092 ], [ -118.88598552, 50.422289383000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "140.9", "sL_BldgLoss": "140.9", "sL_StrLoss": "140.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000324C962835BE5DC07360FF96FC384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.969269839, 50.443659508000053 ], [ -118.974876045999977, 50.444015730000068 ], [ -118.974398698999963, 50.447074039000078 ], [ -118.970258839999971, 50.446311190000124 ], [ -118.968925037999952, 50.445866903000081 ], [ -118.969269839, 50.443659508000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "37.9", "sL_BldgLoss": "37.9", "sL_StrLoss": "37.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BCFE0BA1D6BC5DC09932EC0727264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.950116984999951, 50.297371235000071 ], [ -118.951379871, 50.297350036000061 ], [ -118.951419261999945, 50.298312622000026 ], [ -118.951435044999968, 50.298698291000058 ], [ -118.951081731999935, 50.298704224000055 ], [ -118.949751151999962, 50.298726554000069 ], [ -118.949707048, 50.297647949000101 ], [ -118.950128012, 50.297640886000131 ], [ -118.950116984999951, 50.297371235000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "1", "sL_AssetLoss": "127.4", "sL_BldgLoss": "127.4", "sL_StrLoss": "127.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F67BD10D9B85DC014D7E7201E354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.885730086999928, 50.41301363300002 ], [ -118.891331828999981, 50.413374091000051 ], [ -118.890767373999935, 50.416950228000083 ], [ -118.885165192999978, 50.416589743000067 ], [ -118.885730086999928, 50.41301363300002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "190.8", "sL_BldgLoss": "190.8", "sL_StrLoss": "190.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002893013DE0BD5DC0C87DAB7562244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.964296740999927, 50.282287894000021 ], [ -118.969882948999953, 50.282644441000095 ], [ -118.969326320999954, 50.28622156800008 ], [ -118.963739675999932, 50.285864993000047 ], [ -118.964296740999927, 50.282287894000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3960917", "BldgCostT": "2731667", "sL_LossRatio": "1", "sL_AssetLoss": "184.7", "sL_BldgLoss": "184.7", "sL_StrLoss": "184.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000846C725B8FBB5DC0C7960E6BE4314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.92821170699996, 50.391918490000108 ], [ -118.928361939999945, 50.390961093000094 ], [ -118.926877531999978, 50.39086605500006 ], [ -118.927438804999952, 50.387289617000079 ], [ -118.932644340999971, 50.387622812000089 ], [ -118.933037690999981, 50.387647980000096 ], [ -118.932887566999923, 50.388605385000119 ], [ -118.933136148999921, 50.388621290000046 ], [ -118.934371915, 50.388700344000064 ], [ -118.933811173999914, 50.392276811000073 ], [ -118.932575309999947, 50.392197750000072 ], [ -118.930048925999941, 50.392036089000051 ], [ -118.92821170699996, 50.391918490000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9480667", "BldgCostT": "6066667", "sL_LossRatio": "1", "sL_AssetLoss": "313.9", "sL_BldgLoss": "313.9", "sL_StrLoss": "313.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002EA470FBADBC5DC0579FA33C90264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.946744915999957, 50.3043924830001 ], [ -118.947106237999932, 50.302079016000079 ], [ -118.946683523999965, 50.302051970000036 ], [ -118.941769619999903, 50.30173745000009 ], [ -118.942328613999948, 50.2981605330001 ], [ -118.947242132999975, 50.298475030000084 ], [ -118.947916605999978, 50.298518183000049 ], [ -118.947555354999963, 50.300831663000046 ], [ -118.948020640999971, 50.300861430000033 ], [ -118.948258190999979, 50.29934007100011 ], [ -118.950451121999947, 50.299480338000137 ], [ -118.953846374999912, 50.299697421000076 ], [ -118.953288269999931, 50.303274389000059 ], [ -118.952571137999939, 50.303228546000156 ], [ -118.952333711999984, 50.304749908000048 ], [ -118.948751574999946, 50.304520849000077 ], [ -118.946744915999957, 50.3043924830001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "1", "sL_AssetLoss": "112.3", "sL_BldgLoss": "112.3", "sL_StrLoss": "112.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000357AD215AEBB5DC045FCB3B40D334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.931821138999936, 50.397006157000121 ], [ -118.935580854999927, 50.397246628000062 ], [ -118.935020100999949, 50.400823062000036 ], [ -118.932043494999945, 50.400632690000045 ], [ -118.931260091999917, 50.400582572000083 ], [ -118.929419566999954, 50.400464806000066 ], [ -118.929980758999989, 50.39688839800008 ], [ -118.930327065999975, 50.39691056 ], [ -118.931821138999936, 50.397006157000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10223167", "BldgCostT": "6786667", "sL_LossRatio": "1", "sL_AssetLoss": "780.6", "sL_BldgLoss": "780.6", "sL_StrLoss": "780.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DBEDFA272BD5DC0315FB939F0244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.961077489999937, 50.285717228000102 ], [ -118.966664096000031, 50.286073937000076 ], [ -118.96610717199998, 50.289651032000066 ], [ -118.96413578799995, 50.289525191000081 ], [ -118.963894153999917, 50.29107657900007 ], [ -118.96034578699998, 50.290849983000093 ], [ -118.960268711999902, 50.29134456000002 ], [ -118.959136082999933, 50.291272207000056 ], [ -118.959110866999964, 50.291433987000097 ], [ -118.953523658999984, 50.291076898 ], [ -118.954081594999934, 50.287499874000055 ], [ -118.955214121999987, 50.287572279000074 ], [ -118.955239349999928, 50.287410500000085 ], [ -118.956800418999961, 50.287510283000074 ], [ -118.95706055699999, 50.285841638000043 ], [ -118.96101870399994, 50.286094542000065 ], [ -118.961077489999937, 50.285717228000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8775584", "BldgCostT": "5788334", "sL_LossRatio": "1", "sL_AssetLoss": "713.9", "sL_BldgLoss": "713.9", "sL_StrLoss": "713.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DE9897CD1BB5DC021B6AADB8F354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.937569244999949, 50.423870401000102 ], [ -118.937557941999955, 50.423593465000124 ], [ -118.937219452999969, 50.423599103000079 ], [ -118.93713169199998, 50.42349838100003 ], [ -118.937113851000021, 50.423061201000039 ], [ -118.936797082999973, 50.423066476000031 ], [ -118.936685543999914, 50.422915533000072 ], [ -118.936680772999964, 50.422798581000023 ], [ -118.936600114999948, 50.422799925000064 ], [ -118.936438192999972, 50.422580798000077 ], [ -118.935636007999989, 50.421868593000042 ], [ -118.935176982999906, 50.421556597000077 ], [ -118.934575006999978, 50.421236298000153 ], [ -118.932928566999962, 50.420774231000046 ], [ -118.932508931999948, 50.420656443000084 ], [ -118.932454210999978, 50.42064110400004 ], [ -118.93231885599999, 50.420610926000059 ], [ -118.931597099999934, 50.420449984000093 ], [ -118.930945504999897, 50.42027458900008 ], [ -118.930369203999959, 50.420088790000094 ], [ -118.930233931999979, 50.420058666000045 ], [ -118.930218049999922, 50.419668043000065 ], [ -118.930847260999954, 50.419657600000079 ], [ -118.931098353999985, 50.418057877000152 ], [ -118.92989299, 50.417980784000058 ], [ -118.93045436199999, 50.414404453000031 ], [ -118.933208873999959, 50.414580606000143 ], [ -118.936056631999989, 50.414762650000036 ], [ -118.93576517199989, 50.416621 ], [ -118.938785273999912, 50.416813979000061 ], [ -118.938719742999965, 50.417231963000091 ], [ -118.939262989999946, 50.417266666000096 ], [ -118.938702279999973, 50.420843029000103 ], [ -118.937442403999952, 50.420762542000041 ], [ -118.93750238399997, 50.422232248000036 ], [ -118.937502914999982, 50.422245228000051 ], [ -118.93751503599999, 50.422245026000049 ], [ -118.93792498399992, 50.422238197000091 ], [ -118.937942903999982, 50.422677191000076 ], [ -118.937947, 50.422777491000019 ], [ -118.938040663999942, 50.422775931000075 ], [ -118.93836907599993, 50.422770458000109 ], [ -118.938382479999973, 50.42309875100004 ], [ -118.938391096999979, 50.423309754000094 ], [ -118.938633439999947, 50.423305714000044 ], [ -118.938813175999925, 50.423302718000116 ], [ -118.93881956599995, 50.423459211000036 ], [ -118.938824188999916, 50.423572365000034 ], [ -118.938954151999951, 50.423570199000032 ], [ -118.939246270999959, 50.423565329 ], [ -118.939256660999916, 50.423819668000121 ], [ -118.939279318, 50.424374271000048 ], [ -118.93873345599998, 50.424383370000079 ], [ -118.937925703999923, 50.42407560900012 ], [ -118.937569244999949, 50.423870401000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.8", "sL_BldgLoss": "37.8", "sL_StrLoss": "37.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CBB6570F2DC35DC09C7907B2FD1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.04765996199994, 50.241747672000081 ], [ -119.047856265999883, 50.241739567000103 ], [ -119.048683207999915, 50.241705383000124 ], [ -119.049002190999914, 50.24169221000006 ], [ -119.049649089999932, 50.241718600000056 ], [ -119.052219703999953, 50.242026300000106 ], [ -119.05240788899999, 50.242037100000104 ], [ -119.052320698999978, 50.242604688000085 ], [ -119.046738776999945, 50.242252288000039 ], [ -119.046810959999902, 50.241782769000039 ], [ -119.04765996199994, 50.241747672000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17322450", "BldgCostT": "11317213", "sL_LossRatio": "1", "sL_AssetLoss": "830.2", "sL_BldgLoss": "830.2", "sL_StrLoss": "830.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000628A49EACABC5DC0AF3828A342244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.934236941999984, 50.288617967000079 ], [ -118.934336544999979, 50.287981151000068 ], [ -118.934007243999972, 50.287960037000076 ], [ -118.934925341999971, 50.28739657000007 ], [ -118.935979296999946, 50.28674971300007 ], [ -118.936903670999939, 50.286182352 ], [ -118.937478311999925, 50.285829649000028 ], [ -118.93804480599999, 50.285481942000054 ], [ -118.940679402999962, 50.283864704000081 ], [ -118.941048779999974, 50.283703192000111 ], [ -118.9414724169999, 50.283564992000095 ], [ -118.941963991999955, 50.283468802000122 ], [ -118.942185310999903, 50.283425506000107 ], [ -118.943516207999892, 50.28328499400002 ], [ -118.943737097999986, 50.283243093000067 ], [ -118.944086084000034, 50.283130903000057 ], [ -118.944195290999971, 50.28306511200006 ], [ -118.94498628799991, 50.282588408 ], [ -118.946110200999925, 50.281911098000144 ], [ -118.946275773999929, 50.281807784000129 ], [ -118.948011693999931, 50.280724559000099 ], [ -118.948466601999939, 50.28044069300006 ], [ -118.949190222999974, 50.279988497000076 ], [ -118.950407647999967, 50.279192788000017 ], [ -118.950983789999967, 50.278816194000122 ], [ -118.951540361999932, 50.278478946000092 ], [ -118.952598918999954, 50.277837508000097 ], [ -118.95396866699997, 50.277401200000099 ], [ -118.954389097999965, 50.277219526000124 ], [ -118.954780688999946, 50.276977150000057 ], [ -118.955102692, 50.276997740000112 ], [ -118.954968029999961, 50.277861477000059 ], [ -118.9552144799999, 50.277857330000082 ], [ -118.955203430999987, 50.277587680000138 ], [ -118.95646578899999, 50.277566432000086 ], [ -118.956554240999964, 50.279723641000082 ], [ -118.956975044, 50.2797165530001 ], [ -118.957033952999964, 50.281152791000068 ], [ -118.957036519999946, 50.281136324000073 ], [ -118.962622529000029, 50.281493239000014 ], [ -118.9625473669999, 50.281975807000066 ], [ -118.963535532999913, 50.282038915000058 ], [ -118.96297841199997, 50.28561601300003 ], [ -118.957391892000018, 50.285259118000113 ], [ -118.957467113999925, 50.28477655600004 ], [ -118.956478896999954, 50.284713393000025 ], [ -118.957005540999958, 50.281335063000078 ], [ -118.955358129999951, 50.281362797000092 ], [ -118.955291824999918, 50.279744890000124 ], [ -118.95487102, 50.279751970000063 ], [ -118.954829872999966, 50.278747588000094 ], [ -118.954630564999931, 50.280025852000129 ], [ -118.954882067999918, 50.28002162100011 ], [ -118.954926260999954, 50.28110022700011 ], [ -118.95450544299996, 50.281107306000081 ], [ -118.954538582999959, 50.281916259000084 ], [ -118.951368542999887, 50.281969538000077 ], [ -118.951164568, 50.283276988000054 ], [ -118.949629913, 50.283178804000066 ], [ -118.949314539999989, 50.283158624000095 ], [ -118.949058162999989, 50.284801432000037 ], [ -118.948376233999937, 50.284757794000036 ], [ -118.94826056799991, 50.285498848000024 ], [ -118.946129073999941, 50.285362425000052 ], [ -118.943592297999899, 50.285200007000128 ], [ -118.943493576999941, 50.285832056000096 ], [ -118.942129834999903, 50.285744717000043 ], [ -118.941947269999986, 50.286913288000036 ], [ -118.941558180999934, 50.286888366000078 ], [ -118.941508068999966, 50.287209097000115 ], [ -118.941421610999924, 50.287203560000101 ], [ -118.941260713999952, 50.28823330000008 ], [ -118.940501811999965, 50.288184687000047 ], [ -118.940498978999983, 50.288202817000077 ], [ -118.940244574999966, 50.288186520000075 ], [ -118.940171389999989, 50.288654824000041 ], [ -118.939876841999975, 50.288635955000053 ], [ -118.93982369299998, 50.288976031000097 ], [ -118.934236941999984, 50.288617967000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "223148083", "BldgCostT": "147373333", "sL_LossRatio": "0.999568976364377", "sL_AssetLoss": "11205.882", "sL_BldgLoss": "11201.052", "sL_StrLoss": "11199.3", "sL_NStrLoss": "1.752", "sL_ContLoss": "4.83", "geom_point": "0101000020E6100000ADB2DFA84FBE5DC010F571239B204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.968587494999895, 50.263408383000112 ], [ -118.968518899999978, 50.263015607000064 ], [ -118.968579203999951, 50.262718702000072 ], [ -118.968672886999983, 50.262569407000029 ], [ -118.969087083999938, 50.262145101000037 ], [ -118.969226481999954, 50.261945233000134 ], [ -118.969274001999921, 50.261877105000089 ], [ -118.969458857999896, 50.261357385000053 ], [ -118.969491991999945, 50.261264193000031 ], [ -118.969575409999933, 50.260682391000046 ], [ -118.969540885999962, 50.260227416000085 ], [ -118.969529226999981, 50.260073402000032 ], [ -118.969426304999956, 50.259747103000038 ], [ -118.969192315999948, 50.259230004000067 ], [ -118.969119512999967, 50.258946300000083 ], [ -118.969122014999925, 50.258503906000101 ], [ -118.969114710999989, 50.257889192000036 ], [ -118.969062592999947, 50.257633760000047 ], [ -118.968946704999951, 50.257065610000062 ], [ -118.968969577999957, 50.25678260500009 ], [ -118.969089492999984, 50.256537392000098 ], [ -118.969261624999945, 50.25630949200017 ], [ -118.969474711999951, 50.256027302000078 ], [ -118.969576884999952, 50.255787194000035 ], [ -118.969591666000028, 50.255730463000091 ], [ -118.969676485999926, 50.255404347000081 ], [ -118.969888907999959, 50.254587786000073 ], [ -118.969888902999969, 50.254443052000049 ], [ -118.969888911999959, 50.254361088000032 ], [ -118.969813400999954, 50.254121507000072 ], [ -118.969463557999944, 50.253663822000085 ], [ -118.968979377999929, 50.253030358000032 ], [ -118.968805599999953, 50.252852255000057 ], [ -118.968700253999941, 50.252777996000077 ], [ -118.96884049, 50.251585494000025 ], [ -118.968827343999934, 50.250446618000076 ], [ -118.969827903999956, 50.250447285000114 ], [ -118.970078675999957, 50.250447953000055 ], [ -118.970739418999983, 50.250448212000038 ], [ -118.970924304, 50.250448273000103 ], [ -118.971488001999973, 50.250448489000071 ], [ -118.971786149999986, 50.250462315000085 ], [ -118.972211513000033, 50.250482019000074 ], [ -118.972332181999903, 50.250458117000044 ], [ -118.972475610999936, 50.249916296000016 ], [ -118.97260090099995, 50.249750902000081 ], [ -118.972906380999959, 50.249347709000098 ], [ -118.973016518999927, 50.249138008000052 ], [ -118.973097978999931, 50.248840608000116 ], [ -118.973087994999986, 50.248106598000085 ], [ -118.972977084999982, 50.247487108000044 ], [ -118.973031998999915, 50.245928093000046 ], [ -118.97304731399997, 50.245915018000126 ], [ -118.973194380999956, 50.245789393000059 ], [ -118.974045980999946, 50.245387694000073 ], [ -118.974342381999932, 50.24520339900004 ], [ -118.974565618999947, 50.244900598000058 ], [ -118.974881814999947, 50.24431648800001 ], [ -118.975602081999938, 50.244288386000036 ], [ -118.976367293999985, 50.24435165700006 ], [ -118.977149488999984, 50.244460255000099 ], [ -118.977334877999951, 50.244364556000036 ], [ -118.977440760999983, 50.244217866000014 ], [ -118.977408865999934, 50.244042368000066 ], [ -118.97721387699994, 50.24398206900009 ], [ -118.976662681999969, 50.24391977500003 ], [ -118.976484045999896, 50.243663665000099 ], [ -118.976744121999928, 50.243649552000122 ], [ -118.977120107999923, 50.243560647000088 ], [ -118.977580423999925, 50.24339129700013 ], [ -118.977883766999952, 50.243189375000043 ], [ -118.978097072999944, 50.242968153000078 ], [ -118.978248592999961, 50.242745680000098 ], [ -118.97862738699996, 50.241923582000084 ], [ -118.978852151999945, 50.241435702000103 ], [ -118.979346444999948, 50.240112447000065 ], [ -118.979429091999918, 50.240004381000055 ], [ -118.981140870999923, 50.240113539000085 ], [ -118.980585651999917, 50.243690918000063 ], [ -118.98023163, 50.243668345000046 ], [ -118.980142111999925, 50.244245049000043 ], [ -118.980347693999988, 50.244241546000097 ], [ -118.980392405999922, 50.245320141000079 ], [ -118.979971909999946, 50.245327309000061 ], [ -118.97998308699999, 50.245596957000025 ], [ -118.979562587999965, 50.24560412300012 ], [ -118.979573761999958, 50.245873771000092 ], [ -118.978312258999921, 50.245895261000086 ], [ -118.978323425999946, 50.24616491000014 ], [ -118.977061914, 50.246186385000087 ], [ -118.977073074999979, 50.246456035000094 ], [ -118.976652568999953, 50.246463190000043 ], [ -118.976674883, 50.247002488000106 ], [ -118.975833859999909, 50.247016796000068 ], [ -118.975867319999907, 50.247825744000046 ], [ -118.97544680299994, 50.247832895000101 ], [ -118.975524864999983, 50.249720441000122 ], [ -118.97594540099999, 50.249713290000059 ], [ -118.9760234889999, 50.25160083400003 ], [ -118.974761832999974, 50.251622286000078 ], [ -118.974750683999943, 50.251352637000103 ], [ -118.974330133999928, 50.251359785000091 ], [ -118.974285548999916, 50.250281187000063 ], [ -118.973444466999965, 50.250295477000066 ], [ -118.973466749999929, 50.250834776000069 ], [ -118.972625658999945, 50.250849060000114 ], [ -118.97264648, 50.251353239000082 ], [ -118.973684299999931, 50.251419470000044 ], [ -118.973523712999949, 50.252452842000118 ], [ -118.97353359899995, 50.25245267400004 ], [ -118.973538273999949, 50.252565767000121 ], [ -118.973685677999981, 50.252575173000103 ], [ -118.97356954199995, 50.253322482000016 ], [ -118.973578171999947, 50.253531272000082 ], [ -118.97399874099996, 50.253524127000105 ], [ -118.97403217699997, 50.254333076000094 ], [ -118.974452753999955, 50.254325928000064 ], [ -118.974463902999901, 50.25459557800005 ], [ -118.974884480999975, 50.254588430000084 ], [ -118.97496254, 50.256475974000061 ], [ -118.974541944999913, 50.25648312300013 ], [ -118.974564242999961, 50.257022421000059 ], [ -118.974984843999948, 50.257015271000149 ], [ -118.975029454999969, 50.258093869000071 ], [ -118.974608845999938, 50.258101018000055 ], [ -118.974638433999985, 50.258816526000025 ], [ -118.976033622, 50.258905520000013 ], [ -118.97594909799993, 50.259449532000069 ], [ -118.977301619999963, 50.259535787000118 ], [ -118.977021268999948, 50.261340402000016 ], [ -118.976745861, 50.263113057000069 ], [ -118.972852710999959, 50.262864732000047 ], [ -118.972758687999956, 50.263469551000078 ], [ -118.976972215999979, 50.263738304000071 ], [ -118.976797754999922, 50.26486116500012 ], [ -118.969080765999962, 50.264870687000013 ], [ -118.969216014000025, 50.264516092000072 ], [ -118.969206318999909, 50.264441399000098 ], [ -118.969185899999971, 50.26428381000003 ], [ -118.968587494999895, 50.263408383000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008AFC02937EBD5DC0782F3175DB204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.95998449299999, 50.256380555000078 ], [ -118.961909835999961, 50.256503626000054 ], [ -118.961906324999958, 50.256554887000021 ], [ -118.961832341999951, 50.257030111000091 ], [ -118.960186472999936, 50.256893696000063 ], [ -118.959629080999932, 50.256847490000077 ], [ -118.959880033999937, 50.256517797000072 ], [ -118.95998449299999, 50.256380555000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "257956415", "BldgCostT": "165791154", "sL_LossRatio": "0.993538076638329", "sL_AssetLoss": "9792.75", "sL_BldgLoss": "9729.47", "sL_StrLoss": "9706.5", "sL_NStrLoss": "22.97", "sL_ContLoss": "63.28", "geom_point": "0101000020E6100000FE4E077082BD5DC0821366142A204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.959270181999955, 50.253757278000052 ], [ -118.95964700799999, 50.253450024000081 ], [ -118.959340204999975, 50.253506714000139 ], [ -118.959184408999974, 50.253535515000067 ], [ -118.957858286999937, 50.253246289000025 ], [ -118.957772291999987, 50.253175917000085 ], [ -118.957631415999913, 50.253012495000064 ], [ -118.957554294999909, 50.252918997000023 ], [ -118.957546098999927, 50.252791111000093 ], [ -118.95763253199999, 50.252354104000041 ], [ -118.951374781, 50.252725789000074 ], [ -118.95000943899997, 50.252638380000086 ], [ -118.950567177999986, 50.249061196000099 ], [ -118.954223912999964, 50.249295266000033 ], [ -118.954233878999929, 50.249231312000127 ], [ -118.954035212999926, 50.249218599000116 ], [ -118.95407938299995, 50.248935140000057 ], [ -118.951817062999936, 50.24879033800007 ], [ -118.95186257499995, 50.248498356000042 ], [ -118.952184012999965, 50.248488333000047 ], [ -118.9542004799999, 50.248644498000075 ], [ -118.954933085999954, 50.248709444000021 ], [ -118.955998851999979, 50.24881646500009 ], [ -118.956027911, 50.248818496000041 ], [ -118.956254512, 50.248834332000072 ], [ -118.956538296999895, 50.248854162000065 ], [ -118.957835036999896, 50.248944756000057 ], [ -118.957967858999922, 50.248943720000092 ], [ -118.958136394999912, 50.248942383000021 ], [ -118.95830493199999, 50.248941044000034 ], [ -118.959543933999939, 50.248931209000055 ], [ -118.960465512999917, 50.248914272000064 ], [ -118.961049017000022, 50.24876907100009 ], [ -118.961900121999989, 50.248389999000068 ], [ -118.962296809999955, 50.248259101000045 ], [ -118.963133400999965, 50.248045200000078 ], [ -118.964135270999947, 50.247812807000066 ], [ -118.96511514599996, 50.247585498000035 ], [ -118.965984616999947, 50.247383788000015 ], [ -118.967803390999975, 50.24716129100009 ], [ -118.967845600999937, 50.247723988000082 ], [ -118.967842697999941, 50.248938620000025 ], [ -118.968827903999951, 50.248956367000105 ], [ -118.968827343999934, 50.250446618000076 ], [ -118.96884049, 50.251585494000025 ], [ -118.968700253999941, 50.252777996000077 ], [ -118.968805599999953, 50.252852255000057 ], [ -118.968979377999929, 50.253030358000032 ], [ -118.969463557999944, 50.253663822000085 ], [ -118.969813400999954, 50.254121507000072 ], [ -118.969888911999959, 50.254361088000032 ], [ -118.969888902999969, 50.254443052000049 ], [ -118.969888907999959, 50.254587786000073 ], [ -118.969676485999926, 50.255404347000081 ], [ -118.969591666000028, 50.255730463000091 ], [ -118.967427050999945, 50.255717016000112 ], [ -118.967461011999916, 50.255498685000099 ], [ -118.96603821199993, 50.255407811000055 ], [ -118.96600378, 50.255629120000087 ], [ -118.96573389299999, 50.255611881000078 ], [ -118.96588954799999, 50.253453486000119 ], [ -118.965369612999964, 50.253481217000122 ], [ -118.965373780999983, 50.25330307900002 ], [ -118.964956329999936, 50.253220249000094 ], [ -118.963476822999937, 50.252926694000109 ], [ -118.963449906999983, 50.253094245000085 ], [ -118.96289812599997, 50.253078150000071 ], [ -118.96284504299993, 50.252934329000034 ], [ -118.962152640999975, 50.252959285000081 ], [ -118.961979797999973, 50.255482427000125 ], [ -118.960892066999989, 50.255412901000106 ], [ -118.960887747999919, 50.25544063800006 ], [ -118.959359536999926, 50.255342938000027 ], [ -118.959193802999906, 50.255078079000057 ], [ -118.959047880999961, 50.254195955000043 ], [ -118.959270181999955, 50.253757278000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "74.9", "sL_BldgLoss": "74.9", "sL_StrLoss": "74.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BC45D9CBCBC5DC06BCF8F330B204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.949418935999958, 50.249119678000092 ], [ -118.94947157199999, 50.249101275000072 ], [ -118.949005246999931, 50.252091716000109 ], [ -118.948813801999933, 50.252079456000025 ], [ -118.948732921999976, 50.250224707 ], [ -118.948717954999935, 50.24988146300003 ], [ -118.94869153, 50.24944041800007 ], [ -118.948639629999946, 50.249276881000064 ], [ -118.949418935999958, 50.249119678000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46.5", "sL_BldgLoss": "46.5", "sL_StrLoss": "46.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C45A7C0A40BD5DC032FF4BC6EF1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.956269300999963, 50.241951117000056 ], [ -118.956258259999984, 50.241681465000106 ], [ -118.956098953, 50.241684148000061 ], [ -118.955837789999947, 50.241688544000056 ], [ -118.95582838499999, 50.24145878000013 ], [ -118.958342928999954, 50.241525645000088 ], [ -118.958337784999941, 50.2415606940001 ], [ -118.958370659999957, 50.241645874000042 ], [ -118.957940137999941, 50.24165313100012 ], [ -118.957951185999946, 50.241922783000049 ], [ -118.956269300999963, 50.241951117000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135236715", "BldgCostT": "88327824", "sL_LossRatio": "0.996551091225511", "sL_AssetLoss": "10406.19", "sL_BldgLoss": "10370.3", "sL_StrLoss": "10357.3", "sL_NStrLoss": "13", "sL_ContLoss": "35.89", "geom_point": "0101000020E6100000D1D7F335CBBD5DC0C58D113F351F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.968827343999934, 50.250446618000076 ], [ -118.968827903999951, 50.248956367000105 ], [ -118.967842697999941, 50.248938620000025 ], [ -118.967845600999937, 50.247723988000082 ], [ -118.967803390999975, 50.24716129100009 ], [ -118.965984616999947, 50.247383788000015 ], [ -118.96511514599996, 50.247585498000035 ], [ -118.964135270999947, 50.247812807000066 ], [ -118.963133400999965, 50.248045200000078 ], [ -118.962296809999955, 50.248259101000045 ], [ -118.961900121999989, 50.248389999000068 ], [ -118.961049017000022, 50.24876907100009 ], [ -118.960465512999917, 50.248914272000064 ], [ -118.959543933999939, 50.248931209000055 ], [ -118.95830493199999, 50.248941044000034 ], [ -118.958136394999912, 50.248942383000021 ], [ -118.957967858999922, 50.248943720000092 ], [ -118.957835036999896, 50.248944756000057 ], [ -118.956538296999895, 50.248854162000065 ], [ -118.956254512, 50.248834332000072 ], [ -118.956027911, 50.248818496000041 ], [ -118.955998851999979, 50.24881646500009 ], [ -118.954933085999954, 50.248709444000021 ], [ -118.9542004799999, 50.248644498000075 ], [ -118.952184012999965, 50.248488333000047 ], [ -118.95186257499995, 50.248498356000042 ], [ -118.951946444999948, 50.247960280000036 ], [ -118.95146593699998, 50.247968352000079 ], [ -118.951439454999942, 50.24732015700004 ], [ -118.951432889999978, 50.247159392000043 ], [ -118.952072951999966, 50.247148639000066 ], [ -118.952207362999943, 50.24628625400009 ], [ -118.951168680999956, 50.24621975600013 ], [ -118.951168690999978, 50.24600288700006 ], [ -118.953336702999948, 50.246145161000094 ], [ -118.95335561, 50.245701494000095 ], [ -118.953357308999969, 50.245661669000036 ], [ -118.953481040999947, 50.242754875000074 ], [ -118.95462212399994, 50.242827910000088 ], [ -118.954598441999977, 50.242249081000054 ], [ -118.956014674999977, 50.242225245000071 ], [ -118.958494426999948, 50.242183466 ], [ -118.958677396000013, 50.244020307000035 ], [ -118.958867802999933, 50.244205491000031 ], [ -118.958975305999914, 50.243735493000045 ], [ -118.9586883599999, 50.242180196000042 ], [ -118.958803183999933, 50.24217826000006 ], [ -118.958781073999944, 50.24163895500007 ], [ -118.958634850999943, 50.24164142000005 ], [ -118.958679405999987, 50.241330006000034 ], [ -118.95957021399991, 50.240811600000058 ], [ -118.959959116999954, 50.240724702000087 ], [ -118.960785887999961, 50.240691998000031 ], [ -118.961507123999937, 50.24052680200009 ], [ -118.962279376999902, 50.240523891000088 ], [ -118.962864321999945, 50.240422803000051 ], [ -118.963755090999939, 50.239904408000051 ], [ -118.964531002999976, 50.239666507000017 ], [ -118.965047707999986, 50.23928910000005 ], [ -118.965544901999962, 50.239101112000107 ], [ -118.96542031599995, 50.238797796 ], [ -118.964911699999917, 50.238725112000033 ], [ -118.964654402999955, 50.237901912000098 ], [ -118.964892784999932, 50.237591398000056 ], [ -118.96585169799998, 50.237000392000013 ], [ -118.966127505, 50.236546100000133 ], [ -118.965915180999929, 50.2361629970001 ], [ -118.965571579999946, 50.235987796000089 ], [ -118.965078815999988, 50.235960695000109 ], [ -118.964919095999974, 50.235846794000082 ], [ -118.964863, 50.235487901000063 ], [ -118.965191506999986, 50.235302787000123 ], [ -118.965232334999911, 50.235295239000038 ], [ -118.965622597999953, 50.23522301 ], [ -118.96611602199999, 50.235277090000061 ], [ -118.966123691999968, 50.235281686000107 ], [ -118.966145963999949, 50.235401449000037 ], [ -118.96629408499993, 50.23619739400003 ], [ -118.96631559099994, 50.236521189000037 ], [ -118.966279132999929, 50.236899433000076 ], [ -118.973730479999944, 50.236847225000048 ], [ -118.973745895999969, 50.237220446000045 ], [ -118.973367862999964, 50.237458811000067 ], [ -118.97375599599998, 50.237464959000079 ], [ -118.973761889999949, 50.237607641000054 ], [ -118.973341459999972, 50.237614784000137 ], [ -118.973352596000026, 50.237884434000122 ], [ -118.972932162999911, 50.237891575000042 ], [ -118.972943295999983, 50.238161226000059 ], [ -118.972522861999906, 50.238168366000131 ], [ -118.972533992999928, 50.23843801600011 ], [ -118.972113554999936, 50.238445154000047 ], [ -118.97214694299997, 50.239254106000018 ], [ -118.972987830999969, 50.239239827000091 ], [ -118.973032367999934, 50.240318428000116 ], [ -118.972611914999931, 50.240325569000099 ], [ -118.972634178999954, 50.24086486900007 ], [ -118.972213720999918, 50.240872008000039 ], [ -118.972224851999911, 50.241141658000089 ], [ -118.972083534999953, 50.241144057000064 ], [ -118.971756044999907, 50.243251421000075 ], [ -118.970780808999976, 50.243189155000088 ], [ -118.970717604999933, 50.243595790000043 ], [ -118.971484066999963, 50.243582785000065 ], [ -118.971489544999912, 50.243715515000069 ], [ -118.97245092699994, 50.24377688900006 ], [ -118.972441684, 50.243836369000086 ], [ -118.972756649999923, 50.243831022000052 ], [ -118.972745514999986, 50.243561371000084 ], [ -118.97378266199999, 50.243543755000097 ], [ -118.974125684999962, 50.241335812000052 ], [ -118.974516916999974, 50.241360781000012 ], [ -118.97464540699994, 50.240533623000019 ], [ -118.975431480999973, 50.240583787000112 ], [ -118.975559810999968, 50.23975754100011 ], [ -118.979429091999918, 50.240004381000055 ], [ -118.979346444999948, 50.240112447000065 ], [ -118.978852151999945, 50.241435702000103 ], [ -118.97862738699996, 50.241923582000084 ], [ -118.978248592999961, 50.242745680000098 ], [ -118.978097072999944, 50.242968153000078 ], [ -118.977883766999952, 50.243189375000043 ], [ -118.977580423999925, 50.24339129700013 ], [ -118.977120107999923, 50.243560647000088 ], [ -118.976744121999928, 50.243649552000122 ], [ -118.976484045999896, 50.243663665000099 ], [ -118.976662681999969, 50.24391977500003 ], [ -118.97721387699994, 50.24398206900009 ], [ -118.977408865999934, 50.244042368000066 ], [ -118.977440760999983, 50.244217866000014 ], [ -118.977334877999951, 50.244364556000036 ], [ -118.977149488999984, 50.244460255000099 ], [ -118.976367293999985, 50.24435165700006 ], [ -118.975602081999938, 50.244288386000036 ], [ -118.974881814999947, 50.24431648800001 ], [ -118.974565618999947, 50.244900598000058 ], [ -118.974342381999932, 50.24520339900004 ], [ -118.974045980999946, 50.245387694000073 ], [ -118.973194380999956, 50.245789393000059 ], [ -118.97304731399997, 50.245915018000126 ], [ -118.973031998999915, 50.245928093000046 ], [ -118.972977084999982, 50.247487108000044 ], [ -118.973087994999986, 50.248106598000085 ], [ -118.973097978999931, 50.248840608000116 ], [ -118.973016518999927, 50.249138008000052 ], [ -118.972906380999959, 50.249347709000098 ], [ -118.97260090099995, 50.249750902000081 ], [ -118.972475610999936, 50.249916296000016 ], [ -118.972332181999903, 50.250458117000044 ], [ -118.972211513000033, 50.250482019000074 ], [ -118.971786149999986, 50.250462315000085 ], [ -118.971488001999973, 50.250448489000071 ], [ -118.970924304, 50.250448273000103 ], [ -118.970739418999983, 50.250448212000038 ], [ -118.970078675999957, 50.250447953000055 ], [ -118.969827903999956, 50.250447285000114 ], [ -118.968827343999934, 50.250446618000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186197064", "BldgCostT": "125913051", "sL_LossRatio": "0.9980230279422", "sL_AssetLoss": "11219.177283", "sL_BldgLoss": "11196.997283", "sL_StrLoss": "11188.205283", "sL_NStrLoss": "8.792", "sL_ContLoss": "22.18", "geom_point": "0101000020E6100000213031F1A2BF5DC001550EF3061D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.96631559099994, 50.236521189000037 ], [ -118.96629408499993, 50.23619739400003 ], [ -118.966145963999949, 50.235401449000037 ], [ -118.966123691999968, 50.235281686000107 ], [ -118.966102209999974, 50.235166285000076 ], [ -118.966038156999929, 50.234631943000103 ], [ -118.966018192999982, 50.234465488000097 ], [ -118.966081126999953, 50.233639198000112 ], [ -118.966109545999984, 50.233266329000109 ], [ -118.966291052999964, 50.230882653000037 ], [ -118.966549717999911, 50.227485905000023 ], [ -118.966614291999932, 50.227006820000035 ], [ -118.966778096, 50.226795989000024 ], [ -118.96701810699993, 50.2267382080001 ], [ -118.96736600499996, 50.226720592000135 ], [ -118.969168099999976, 50.226772618000034 ], [ -118.972791033999926, 50.226830819000085 ], [ -118.973016322999953, 50.226834440000026 ], [ -118.974459097999969, 50.226857571000053 ], [ -118.974655020999947, 50.226860700000067 ], [ -118.97486779399999, 50.226864105000082 ], [ -118.976640295999971, 50.226892511000131 ], [ -118.976878189999979, 50.226896333000084 ], [ -118.97815515399995, 50.22691675600003 ], [ -118.983715987, 50.227005602000112 ], [ -118.984054879999945, 50.226936902000034 ], [ -118.98428927799999, 50.226778396000093 ], [ -118.984510389, 50.226152110000051 ], [ -118.98465414199994, 50.226082535000046 ], [ -118.984749493999914, 50.226036386000068 ], [ -118.985214080999981, 50.226001907000061 ], [ -118.986122073999965, 50.226023256000062 ], [ -118.988202177999966, 50.226072199000058 ], [ -118.98848809699993, 50.226054288000086 ], [ -118.988751601999965, 50.226007905000095 ], [ -118.989066798999943, 50.225910492 ], [ -118.989445877999955, 50.225708895000103 ], [ -118.989608319999888, 50.225570206000064 ], [ -118.989667272999966, 50.22526229400011 ], [ -118.989729024000013, 50.223513664000087 ], [ -118.989838103999915, 50.220422996000067 ], [ -118.989928600000013, 50.220248110000085 ], [ -118.990159980999948, 50.220145494000057 ], [ -118.990411571999914, 50.220107416000126 ], [ -118.990441278999924, 50.220102894000028 ], [ -118.993217785999974, 50.22010900600003 ], [ -118.994657011999948, 50.220119292000099 ], [ -118.995803223999943, 50.220129989000078 ], [ -118.995736818999916, 50.221196099000068 ], [ -118.99574898099999, 50.221981699000047 ], [ -118.997097404999977, 50.221978112000023 ], [ -118.997143373000014, 50.220142995000067 ], [ -118.999993866999944, 50.220146221000064 ], [ -119.00371821499999, 50.220150288000063 ], [ -119.006577894999921, 50.220174087000046 ], [ -119.008390817999938, 50.220180106000065 ], [ -119.011070157999967, 50.220188922000041 ], [ -119.01335592199996, 50.220196392000069 ], [ -119.014988793000015, 50.220201705000086 ], [ -119.014992553999974, 50.223736 ], [ -119.01499283699998, 50.224014396000065 ], [ -119.014993032999953, 50.224185895000033 ], [ -119.014993044999969, 50.2242066700001 ], [ -119.014995463999981, 50.226507001000094 ], [ -119.014996267999933, 50.227244273000046 ], [ -119.0149968959999, 50.227828524000103 ], [ -119.014997071999943, 50.228017266000052 ], [ -119.014997334999975, 50.228232996000038 ], [ -119.01499743899997, 50.228359055000055 ], [ -119.014998134999985, 50.229033660000084 ], [ -119.0150003099999, 50.231067151000083 ], [ -119.015001037999951, 50.231741498000112 ], [ -119.015001628999983, 50.232316981000118 ], [ -119.01500173899997, 50.232425095000039 ], [ -119.015002050999954, 50.232694504000037 ], [ -119.015002180999957, 50.232838303000086 ], [ -119.015002306999946, 50.232937652000061 ], [ -119.01500247300001, 50.233090229000027 ], [ -119.015003286999956, 50.233884692000046 ], [ -119.013323793999945, 50.233539612000079 ], [ -119.012740389999948, 50.233458394000081 ], [ -119.012139079999912, 50.233411198000056 ], [ -119.010910683999953, 50.233382793000082 ], [ -119.009419234999953, 50.233466383000064 ], [ -119.008455011999928, 50.233520412000125 ], [ -119.007872189999929, 50.233599895000097 ], [ -119.006876026999947, 50.233787855000081 ], [ -119.006917545999912, 50.233519288000046 ], [ -119.005747915999933, 50.233444968000136 ], [ -119.006301025999946, 50.229867416000069 ], [ -119.00906991, 50.230043332000037 ], [ -119.009567752999899, 50.226821482000055 ], [ -119.011384203999938, 50.226936849000083 ], [ -119.011525391999953, 50.226022810000075 ], [ -119.011425117999934, 50.226016442000073 ], [ -119.011536804999963, 50.225293379000085 ], [ -119.010482438999972, 50.225226416000076 ], [ -119.010823103999911, 50.223021111000037 ], [ -119.009814010999918, 50.222957014000073 ], [ -119.009452083999975, 50.225299608000057 ], [ -119.009059671999978, 50.225274680000076 ], [ -119.009041170999978, 50.225394417000054 ], [ -119.008749181999988, 50.2253758680001 ], [ -119.008729562999974, 50.225502824000067 ], [ -119.008343284999953, 50.225478283000015 ], [ -119.008326649999958, 50.225585933000055 ], [ -119.002747163999985, 50.22523130200009 ], [ -119.003019993999928, 50.223467113000041 ], [ -119.002972791, 50.223464111000041 ], [ -119.003015032999897, 50.223190954000088 ], [ -119.00298451099999, 50.223189013000095 ], [ -119.003019054999967, 50.222965634000026 ], [ -119.002807919999924, 50.222952208000045 ], [ -119.002910944999954, 50.22228599200011 ], [ -119.001562809999953, 50.222200258000058 ], [ -119.001543175999984, 50.222327196000059 ], [ -119.000808607999943, 50.222280474000108 ], [ -119.000376777999946, 50.225071915000079 ], [ -118.994797416999916, 50.224716882000102 ], [ -118.99486204099999, 50.224299485000095 ], [ -118.994778744999934, 50.224294183000055 ], [ -118.994815410999934, 50.224057364000096 ], [ -118.99330617199999, 50.223961275000114 ], [ -118.993266970999954, 50.22421441200008 ], [ -118.993283564999956, 50.224215469000121 ], [ -118.992729497999903, 50.227792983000029 ], [ -118.992439290999968, 50.227774504000088 ], [ -118.992355510999957, 50.22831539000007 ], [ -118.991561539999964, 50.228264830000086 ], [ -118.991547476999983, 50.228355608000051 ], [ -118.988418663999951, 50.228156309000035 ], [ -118.988386740999957, 50.228362280000098 ], [ -118.987644082999978, 50.228314961000066 ], [ -118.98762011399999, 50.228469597000107 ], [ -118.983370010999977, 50.228198701000096 ], [ -118.98333542599994, 50.22842169500008 ], [ -118.981100176999959, 50.228279156000099 ], [ -118.981087423999924, 50.228361346000035 ], [ -118.980626198999957, 50.228331929000049 ], [ -118.980407971999909, 50.229738359000081 ], [ -118.97482819299999, 50.229382318000013 ], [ -118.974854504999939, 50.229212879000045 ], [ -118.974278245999969, 50.229176092000074 ], [ -118.974274875999981, 50.22919779900009 ], [ -118.97317975199995, 50.229127880000064 ], [ -118.973169027999958, 50.229196924000092 ], [ -118.97221725599999, 50.229136149000063 ], [ -118.972470802999979, 50.228863886000141 ], [ -118.972472513999932, 50.22858620800006 ], [ -118.97276349899991, 50.228121898000097 ], [ -118.973998396999932, 50.228154607000064 ], [ -118.974561103, 50.227883999000078 ], [ -118.974694498999966, 50.2277116980001 ], [ -118.974662504999912, 50.226919902000077 ], [ -118.974312615999906, 50.227258807000048 ], [ -118.974264698999889, 50.227800007000042 ], [ -118.972341694999955, 50.227795711000113 ], [ -118.972141895999982, 50.228052097000095 ], [ -118.97212899499999, 50.228752813000028 ], [ -118.971971491999966, 50.229016292000082 ], [ -118.971644541000032, 50.229099575000077 ], [ -118.970272131999977, 50.229011918000047 ], [ -118.970263041999914, 50.229070405000051 ], [ -118.970850091999964, 50.229107903000035 ], [ -118.97082317099995, 50.229281162000063 ], [ -118.970965288999963, 50.229290239000058 ], [ -118.970719201999955, 50.229550394000114 ], [ -118.970176123, 50.229677105000043 ], [ -118.970042382999964, 50.229832404000049 ], [ -118.969561510999952, 50.230047406000068 ], [ -118.970041113999969, 50.230120096000114 ], [ -118.970601006999985, 50.230083001 ], [ -118.971134813999981, 50.229463490000036 ], [ -118.97126167199994, 50.229413286000131 ], [ -118.971244102999933, 50.229526364000087 ], [ -118.972363671, 50.22959786200007 ], [ -118.972354802999988, 50.229654952000054 ], [ -118.973251946999966, 50.229712237000093 ], [ -118.972696233999955, 50.233289625000033 ], [ -118.970178798999939, 50.233128862000093 ], [ -118.969717760999956, 50.236095286000115 ], [ -118.96940465099999, 50.236075287000112 ], [ -118.969322526999989, 50.236603629000129 ], [ -118.973296918999935, 50.236536183000084 ], [ -118.973308052999982, 50.236805832000073 ], [ -118.973728476999966, 50.236798691000068 ], [ -118.973730479999944, 50.236847225000048 ], [ -118.966279132999929, 50.236899433000076 ], [ -118.96631559099994, 50.236521189000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20231417", "BldgCostT": "13246667", "sL_LossRatio": "0.999152384239469", "sL_AssetLoss": "819.947", "sL_BldgLoss": "819.252", "sL_StrLoss": "819", "sL_NStrLoss": "0.252", "sL_ContLoss": "0.695", "geom_point": "0101000020E61000005E797F72CABF5DC0A6809B62E11D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.988582876999914, 50.23517853300006 ], [ -118.989021936999961, 50.232345829000032 ], [ -118.990093213999927, 50.232414065000071 ], [ -118.990145002999938, 50.232079853000073 ], [ -118.995249226999945, 50.232404824000128 ], [ -118.995322786999964, 50.231929771000075 ], [ -118.999684320999947, 50.232207267000078 ], [ -118.99978241299999, 50.231573372000106 ], [ -119.005362656999964, 50.231928150000094 ], [ -119.005055668999944, 50.23391347700003 ], [ -119.0046146, 50.23393930900005 ], [ -119.003610332999983, 50.234059469000087 ], [ -119.002896780999919, 50.234144861000061 ], [ -119.002150012999948, 50.234234204000082 ], [ -119.001310505999982, 50.234360611000014 ], [ -118.999999944999942, 50.234697235000077 ], [ -118.999673115999926, 50.234781200000072 ], [ -118.99907911299999, 50.234896108000044 ], [ -118.998593367999987, 50.234949069000038 ], [ -118.997207638999981, 50.235100160000037 ], [ -118.995642519999976, 50.23527080200013 ], [ -118.995007992999888, 50.235292336000036 ], [ -118.994993922000035, 50.235292809000086 ], [ -118.994420610999924, 50.23524629800005 ], [ -118.993476353999966, 50.23507425800009 ], [ -118.993018793999937, 50.234990891000081 ], [ -118.992741885999919, 50.234959803000088 ], [ -118.99223991099997, 50.234956833000147 ], [ -118.99157072899996, 50.234952931000073 ], [ -118.989744279999911, 50.235038046000106 ], [ -118.988667146999944, 50.235160901000043 ], [ -118.988582876999914, 50.23517853300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10403833", "BldgCostT": "6703333", "sL_LossRatio": "1", "sL_AssetLoss": "469", "sL_BldgLoss": "469", "sL_StrLoss": "469", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5722BC6F1BE5DC06BF1CE46D31D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.980994156999955, 50.231043543000084 ], [ -118.986574187999935, 50.231399271000058 ], [ -118.986019503999941, 50.23497671700008 ], [ -118.980439037999986, 50.23462096300004 ], [ -118.980994156999955, 50.231043543000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17707917", "BldgCostT": "10241667", "sL_LossRatio": "0.993484721364275", "sL_AssetLoss": "325.389", "sL_BldgLoss": "323.269", "sL_StrLoss": "322.5", "sL_NStrLoss": "0.769", "sL_ContLoss": "2.12", "geom_point": "0101000020E61000002A1B397FD1BB5DC0F5A91908381E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.935658522999972, 50.241181408000024 ], [ -118.935257815999933, 50.241130388000059 ], [ -118.934613185999936, 50.241107094000043 ], [ -118.932966813999954, 50.241118903000029 ], [ -118.932387318999943, 50.241085303000013 ], [ -118.931976510999931, 50.240963205000128 ], [ -118.931809597999987, 50.240877482000073 ], [ -118.931547302999903, 50.240661903000046 ], [ -118.931507695999983, 50.240604541000053 ], [ -118.931461105999958, 50.240537109000059 ], [ -118.931391188999939, 50.240272500000067 ], [ -118.931388387999959, 50.240159761000093 ], [ -118.931351416, 50.238669396000091 ], [ -118.93129770599991, 50.238301005000089 ], [ -118.93131333499997, 50.238134576000064 ], [ -118.931334536999927, 50.237908705000031 ], [ -118.931346481999967, 50.237781198000079 ], [ -118.931352718999946, 50.236531226000075 ], [ -118.93135286199994, 50.236498858000068 ], [ -118.931364354, 50.234187957000096 ], [ -118.931368701999986, 50.233311410000091 ], [ -118.931321147999924, 50.233176214000125 ], [ -118.931301588999929, 50.233120648000053 ], [ -118.931293595999946, 50.233097898000082 ], [ -118.931212599999952, 50.232976192000081 ], [ -118.93092527499999, 50.232755498000053 ], [ -118.930891784999972, 50.232729792000036 ], [ -118.930553945999961, 50.232565710000074 ], [ -118.930876557999952, 50.230501401000033 ], [ -118.936456129999925, 50.230859662000036 ], [ -118.936405921999949, 50.231181194000015 ], [ -118.937420923, 50.231246336000027 ], [ -118.937415288999915, 50.231282421000152 ], [ -118.938437392999958, 50.23134800900003 ], [ -118.937878914999942, 50.234925212000071 ], [ -118.932540041, 50.234582514000039 ], [ -118.93239404699996, 50.235516850000067 ], [ -118.933446954999951, 50.235584456000012 ], [ -118.933350818999955, 50.236199785000089 ], [ -118.937849660999973, 50.23648853500007 ], [ -118.93747908899995, 50.238861728000082 ], [ -118.938772594999961, 50.238944715000066 ], [ -118.938719471999917, 50.239284958000049 ], [ -118.939402898999973, 50.239328798 ], [ -118.939080023999935, 50.24139686600008 ], [ -118.938830593999938, 50.241398513 ], [ -118.938598724, 50.241413055000066 ], [ -118.93839985999989, 50.241425536000094 ], [ -118.938316352999962, 50.24143077300004 ], [ -118.937642178999909, 50.241473091000067 ], [ -118.937135686999909, 50.241449686000081 ], [ -118.935658522999972, 50.241181408000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "244.6", "sL_BldgLoss": "244.6", "sL_StrLoss": "244.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B74FBFF27DC45DC043B577FCCD1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.066960802999944, 50.219916096000077 ], [ -119.06724044399999, 50.218090788000026 ], [ -119.066277006999925, 50.218030081000052 ], [ -119.066492843, 50.216621339000028 ], [ -119.066825159999951, 50.214452155000103 ], [ -119.068865017999897, 50.214580679000065 ], [ -119.072403819999977, 50.214803553000067 ], [ -119.072400659999957, 50.214824200000102 ], [ -119.074324261999919, 50.214945300000061 ], [ -119.074126706999934, 50.216236242000065 ], [ -119.073776693999918, 50.218523260000062 ], [ -119.072816393999958, 50.218462810000091 ], [ -119.07254013699999, 50.220267484000061 ], [ -119.068906833999989, 50.220038690000067 ], [ -119.066960802999944, 50.219916096000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "98.3", "sL_BldgLoss": "98.3", "sL_StrLoss": "98.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C165C2ED18BB5DC006178623231D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.919260591999929, 50.227452906000089 ], [ -118.919501106, 50.225916231000021 ], [ -118.922543693999941, 50.226111967000051 ], [ -118.925080022999978, 50.226275069000074 ], [ -118.925040340999956, 50.226528811000016 ], [ -118.925985011999956, 50.226589545000131 ], [ -118.925944249999944, 50.226850221000049 ], [ -118.927020697999978, 50.226919416000058 ], [ -118.926871569999932, 50.227873220000028 ], [ -118.926564597, 50.229836469000126 ], [ -118.925604287999974, 50.229719002000074 ], [ -118.920898477999941, 50.228342410000032 ], [ -118.920176288999969, 50.228006018000102 ], [ -118.919497115999903, 50.227574804000128 ], [ -118.919260591999929, 50.227452906000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7541667", "BldgCostT": "4991667", "sL_LossRatio": "0.993835791900604", "sL_AssetLoss": "374.744", "sL_BldgLoss": "372.434", "sL_StrLoss": "371.6", "sL_NStrLoss": "0.834", "sL_ContLoss": "2.31", "geom_point": "0101000020E6100000879EBDC83EC55DC0928FC468A9184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.078401598999932, 50.196115563000042 ], [ -119.078343046999976, 50.194767390000059 ], [ -119.077923022, 50.194774906000092 ], [ -119.077887898999975, 50.193966003000128 ], [ -119.077467879999972, 50.19397351700011 ], [ -119.077461127999925, 50.19381796400009 ], [ -119.072810490999956, 50.193525114000039 ], [ -119.073254602999924, 50.190621927000059 ], [ -119.073357832999932, 50.189947042000043 ], [ -119.078933534999962, 50.190298121000083 ], [ -119.078787827999989, 50.191251452000103 ], [ -119.079870812999971, 50.191232059000086 ], [ -119.079882531999942, 50.191501695000063 ], [ -119.080302527999933, 50.191494171000095 ], [ -119.08031424699999, 50.191763806000075 ], [ -119.080734246999967, 50.1917562820001 ], [ -119.080745967999931, 50.192025915000052 ], [ -119.081165968999969, 50.192018389000062 ], [ -119.081177693999948, 50.192288024000121 ], [ -119.081597696999935, 50.192280497000077 ], [ -119.081609423999922, 50.19255013 ], [ -119.082029429999949, 50.192542602000103 ], [ -119.082041159999974, 50.192812235000112 ], [ -119.082461166999948, 50.192804705000114 ], [ -119.082472899, 50.193074339000106 ], [ -119.082828029999916, 50.193067970000087 ], [ -119.083277495999951, 50.190125468000097 ], [ -119.088853294999979, 50.190476045 ], [ -119.088673861999979, 50.191651729000085 ], [ -119.09040642699992, 50.191760605000077 ], [ -119.089860405999971, 50.195338753000073 ], [ -119.084284000999958, 50.194988228000028 ], [ -119.084463561999925, 50.193812558000069 ], [ -119.083342641999963, 50.193742063000116 ], [ -119.083383344999945, 50.194677076000112 ], [ -119.082963321999927, 50.194684610000124 ], [ -119.08297505699997, 50.194954244000066 ], [ -119.08171497699999, 50.194976839000113 ], [ -119.081703246999936, 50.194707204000132 ], [ -119.081283223999961, 50.194714734000151 ], [ -119.081259771999896, 50.194175464000097 ], [ -119.080839752, 50.194182991000069 ], [ -119.080828026999896, 50.193913357000014 ], [ -119.08040800899991, 50.193920882000036 ], [ -119.080384567999957, 50.193381614000025 ], [ -119.079964554999961, 50.193389137000054 ], [ -119.079941117999923, 50.192849868000053 ], [ -119.079521110999977, 50.19285739 ], [ -119.079509393999928, 50.192587755000041 ], [ -119.079089387999971, 50.192595275000045 ], [ -119.079077674999894, 50.19232564100011 ], [ -119.078657670000013, 50.1923331590001 ], [ -119.07864988599999, 50.192153941000072 ], [ -119.078539677000023, 50.192874959000108 ], [ -119.078681092999929, 50.192872429000047 ], [ -119.078704515000013, 50.193411699000109 ], [ -119.079124528999955, 50.193404179000019 ], [ -119.079136241999947, 50.193673814000114 ], [ -119.079556258, 50.193666294000039 ], [ -119.079591406999967, 50.194475197000017 ], [ -119.080011428999953, 50.194467676000038 ], [ -119.080081747999941, 50.196085482000043 ], [ -119.079386044999978, 50.196097941000083 ], [ -119.078401598999932, 50.196115563000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57277667", "BldgCostT": "37321667", "sL_LossRatio": "0.989864455341308", "sL_AssetLoss": "4203.030171", "sL_BldgLoss": "4160.430171", "sL_StrLoss": "4145.000171", "sL_NStrLoss": "15.43", "sL_ContLoss": "42.6", "geom_point": "0101000020E6100000AF4D19EE92BF5DC036A82656001D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.958736856999948, 50.240560344000095 ], [ -118.958714747999977, 50.24002104000003 ], [ -118.959976109999957, 50.239999765 ], [ -118.959965048999919, 50.239730113000022 ], [ -118.960805952999962, 50.23971592200013 ], [ -118.960772755999983, 50.238906965000069 ], [ -118.962034086999978, 50.238885669000084 ], [ -118.962023015999989, 50.238616018000052 ], [ -118.96454566099996, 50.238573384000055 ], [ -118.964501315999911, 50.237494777000016 ], [ -118.964080885999977, 50.237501885000022 ], [ -118.964077410999892, 50.237417344000129 ], [ -118.96263232299999, 50.237324962000088 ], [ -118.962853468999981, 50.235903596000043 ], [ -118.962753139999947, 50.235905292000069 ], [ -118.962744620999928, 50.235697833000089 ], [ -118.959155024999973, 50.235468270000062 ], [ -118.959211924999963, 50.235102733000168 ], [ -118.959188740999949, 50.235101250000071 ], [ -118.958641818999951, 50.238614530000135 ], [ -118.95659739199999, 50.238483731 ], [ -118.953061119999958, 50.238257394000058 ], [ -118.95361844199999, 50.234680129000061 ], [ -118.957154435999925, 50.234906448000082 ], [ -118.959195914999967, 50.235037060000145 ], [ -118.959252161, 50.234675715000051 ], [ -118.959162379999952, 50.234669971000123 ], [ -118.95923050299993, 50.234232324000047 ], [ -118.95917810899999, 50.234228973000079 ], [ -118.95927374399993, 50.233614570000086 ], [ -118.958196420999911, 50.233545646000088 ], [ -118.958593319999949, 50.230995985000078 ], [ -118.958261496999938, 50.230974754000052 ], [ -118.958818319999963, 50.227397429000078 ], [ -118.960154460999959, 50.227482912000063 ], [ -118.960191768999948, 50.227243160000086 ], [ -118.961699527999912, 50.227339604000072 ], [ -118.962115328999957, 50.22466679700009 ], [ -118.962862683999958, 50.224714594000083 ], [ -118.962898003999982, 50.224487515000078 ], [ -118.966229395000013, 50.224700510000055 ], [ -118.966292267999975, 50.224296091000085 ], [ -118.971871354999919, 50.224652565000028 ], [ -118.971767700999948, 50.225319827000142 ], [ -118.972246808999969, 50.225350426000084 ], [ -118.972436807999912, 50.224127227000096 ], [ -118.969580672999953, 50.223944784000025 ], [ -118.970136517999947, 50.22036736899999 ], [ -118.975715150999989, 50.220723650000124 ], [ -118.97537363, 50.222923492000092 ], [ -118.975512974999944, 50.222932387000107 ], [ -118.975359816999912, 50.223130005000023 ], [ -118.975394907999956, 50.223282391000041 ], [ -118.975698797999939, 50.223520306000097 ], [ -118.975804795999963, 50.223366496000033 ], [ -118.976216288999936, 50.223134295000079 ], [ -118.976322888999903, 50.222984087999983 ], [ -118.978229724999963, 50.223105786000055 ], [ -118.978064140999948, 50.22417270800004 ], [ -118.981271775, 50.224377349000065 ], [ -118.981314126999962, 50.224104332000074 ], [ -118.981370558999913, 50.224107932000074 ], [ -118.98146915599996, 50.223472335000039 ], [ -118.982552578999929, 50.223541433000058 ], [ -118.982556405999901, 50.223516759000084 ], [ -118.986059007999955, 50.223740074000027 ], [ -118.986550596999962, 50.220568743000108 ], [ -118.987066123999952, 50.220601602000073 ], [ -118.98734286899996, 50.21881593000009 ], [ -118.98748509799999, 50.21868790400007 ], [ -118.988052522999908, 50.218515605000071 ], [ -118.990351901999958, 50.218494187000033 ], [ -118.991116313999925, 50.218337592000104 ], [ -118.992537301, 50.217475891000063 ], [ -118.993263800999955, 50.217400386000051 ], [ -118.993911309999959, 50.217146905000071 ], [ -118.994233492999939, 50.216809401000084 ], [ -118.99438538099993, 50.216085904000074 ], [ -118.994519601999983, 50.215905003000096 ], [ -118.994810806999965, 50.215828090000052 ], [ -118.99710909, 50.215815294000073 ], [ -118.997786514999945, 50.215605907000118 ], [ -118.998969216999981, 50.215396606000063 ], [ -118.999204996999964, 50.215265151000033 ], [ -118.998702542999979, 50.218512870000083 ], [ -118.998324137999987, 50.218488791000055 ], [ -118.99832094599999, 50.218509419000057 ], [ -119.000078491999886, 50.218621248000012 ], [ -119.000109027999926, 50.218423845000082 ], [ -119.003132841999971, 50.21861617800009 ], [ -119.003148390999925, 50.218515615000051 ], [ -119.003554339999951, 50.218541430000059 ], [ -119.003564173999905, 50.218477824000082 ], [ -119.004729007999913, 50.218551888000029 ], [ -119.004732321999981, 50.218530452000017 ], [ -119.005089449999915, 50.218553156000063 ], [ -119.005187434999968, 50.217919260000023 ], [ -119.010766041999943, 50.218273771000021 ], [ -119.010706857999963, 50.218656954000089 ], [ -119.011198590999967, 50.218688189000062 ], [ -119.011454012999977, 50.217034300000094 ], [ -119.014543155999945, 50.217230472000061 ], [ -119.014796587, 50.215588633000038 ], [ -119.010978423999944, 50.215346151000084 ], [ -119.011530901999933, 50.211768488000153 ], [ -119.01323071199991, 50.211876456000063 ], [ -119.017108802999971, 50.212122683000096 ], [ -119.016738932999914, 50.21451981000007 ], [ -119.020557056999934, 50.214762093000054 ], [ -119.020005254999944, 50.218339786000065 ], [ -119.019477523999939, 50.218306306000059 ], [ -119.019184009999918, 50.220208963000054 ], [ -119.018949796999905, 50.221727101000106 ], [ -119.017722921999976, 50.22164925800012 ], [ -119.017546529999919, 50.222792334000097 ], [ -119.017556905999967, 50.222792992000116 ], [ -119.017328214999964, 50.22427490000004 ], [ -119.017495210999925, 50.224285497000089 ], [ -119.017047249999976, 50.227188032000072 ], [ -119.017505407999963, 50.227217102000118 ], [ -119.01725932299999, 50.228811536000066 ], [ -119.018431187999965, 50.228885881000039 ], [ -119.018303168999978, 50.229715431000024 ], [ -119.019616707999901, 50.229798749000096 ], [ -119.019407210999958, 50.231156458000072 ], [ -119.020452141999939, 50.231138287000086 ], [ -119.020541569999949, 50.230558642000027 ], [ -119.026121850999928, 50.230912372000013 ], [ -119.025851926999977, 50.232663287000022 ], [ -119.026563105999969, 50.232650882000087 ], [ -119.026574540999931, 50.232920523000097 ], [ -119.027835662999919, 50.232898515000024 ], [ -119.02784710499995, 50.23316815700008 ], [ -119.028687857999941, 50.233153475000087 ], [ -119.02869930199995, 50.233423117000065 ], [ -119.029003419999938, 50.233417806000098 ], [ -119.029021951999965, 50.233297542000052 ], [ -119.030506356999922, 50.233391544000028 ], [ -119.031221569999914, 50.233379040000017 ], [ -119.031224032999944, 50.23343698500004 ], [ -119.034602635999974, 50.233650841000099 ], [ -119.034051710999961, 50.237228518000052 ], [ -119.033487294999986, 50.23719279900007 ], [ -119.033518503999971, 50.237926156000078 ], [ -119.033308752, 50.237929826000062 ], [ -119.032588289999978, 50.237678809000109 ], [ -119.031826409999923, 50.23745720700002 ], [ -119.031324416999922, 50.237359510000054 ], [ -119.029177069999946, 50.237102629000049 ], [ -119.028483124999951, 50.237019580000037 ], [ -119.027926822999973, 50.236953029000048 ], [ -119.027153498999937, 50.236860504000042 ], [ -119.025242592999987, 50.236661789 ], [ -119.023468393999963, 50.23639040700008 ], [ -119.023385817, 50.236375438000081 ], [ -119.022563906999935, 50.236226500000036 ], [ -119.021376310999983, 50.235969705000088 ], [ -119.020810903999944, 50.235808286000044 ], [ -119.020470066, 50.235684055000092 ], [ -119.020280089999972, 50.235614802000086 ], [ -119.018274506999958, 50.234734405000104 ], [ -119.018191684999977, 50.234701813000058 ], [ -119.017510802999965, 50.234433891000052 ], [ -119.017111566999958, 50.234317705000073 ], [ -119.016991877999885, 50.23428285500006 ], [ -119.01697551499997, 50.234278104000083 ], [ -119.015003286999956, 50.233884692000046 ], [ -119.01500247300001, 50.233090229000027 ], [ -119.015002306999946, 50.232937652000061 ], [ -119.015002180999957, 50.232838303000086 ], [ -119.015002050999954, 50.232694504000037 ], [ -119.01500173899997, 50.232425095000039 ], [ -119.015001628999983, 50.232316981000118 ], [ -119.015001037999951, 50.231741498000112 ], [ -119.0150003099999, 50.231067151000083 ], [ -119.014998134999985, 50.229033660000084 ], [ -119.01499743899997, 50.228359055000055 ], [ -119.014997334999975, 50.228232996000038 ], [ -119.014997071999943, 50.228017266000052 ], [ -119.0149968959999, 50.227828524000103 ], [ -119.014996267999933, 50.227244273000046 ], [ -119.014995463999981, 50.226507001000094 ], [ -119.014993044999969, 50.2242066700001 ], [ -119.014993032999953, 50.224185895000033 ], [ -119.01499283699998, 50.224014396000065 ], [ -119.014992553999974, 50.223736 ], [ -119.014988793000015, 50.220201705000086 ], [ -119.01335592199996, 50.220196392000069 ], [ -119.011070157999967, 50.220188922000041 ], [ -119.008390817999938, 50.220180106000065 ], [ -119.006577894999921, 50.220174087000046 ], [ -119.00371821499999, 50.220150288000063 ], [ -118.999993866999944, 50.220146221000064 ], [ -118.997143373000014, 50.220142995000067 ], [ -118.997097404999977, 50.221978112000023 ], [ -118.99574898099999, 50.221981699000047 ], [ -118.995736818999916, 50.221196099000068 ], [ -118.995803223999943, 50.220129989000078 ], [ -118.994657011999948, 50.220119292000099 ], [ -118.993217785999974, 50.22010900600003 ], [ -118.990441278999924, 50.220102894000028 ], [ -118.990411571999914, 50.220107416000126 ], [ -118.990159980999948, 50.220145494000057 ], [ -118.989928600000013, 50.220248110000085 ], [ -118.989838103999915, 50.220422996000067 ], [ -118.989729024000013, 50.223513664000087 ], [ -118.989667272999966, 50.22526229400011 ], [ -118.989608319999888, 50.225570206000064 ], [ -118.989445877999955, 50.225708895000103 ], [ -118.989066798999943, 50.225910492 ], [ -118.988751601999965, 50.226007905000095 ], [ -118.98848809699993, 50.226054288000086 ], [ -118.988202177999966, 50.226072199000058 ], [ -118.986122073999965, 50.226023256000062 ], [ -118.985214080999981, 50.226001907000061 ], [ -118.984749493999914, 50.226036386000068 ], [ -118.98465414199994, 50.226082535000046 ], [ -118.984510389, 50.226152110000051 ], [ -118.98428927799999, 50.226778396000093 ], [ -118.984054879999945, 50.226936902000034 ], [ -118.983715987, 50.227005602000112 ], [ -118.97815515399995, 50.22691675600003 ], [ -118.976878189999979, 50.226896333000084 ], [ -118.976640295999971, 50.226892511000131 ], [ -118.97486779399999, 50.226864105000082 ], [ -118.974655020999947, 50.226860700000067 ], [ -118.974459097999969, 50.226857571000053 ], [ -118.973016322999953, 50.226834440000026 ], [ -118.972791033999926, 50.226830819000085 ], [ -118.969168099999976, 50.226772618000034 ], [ -118.96736600499996, 50.226720592000135 ], [ -118.96701810699993, 50.2267382080001 ], [ -118.966778096, 50.226795989000024 ], [ -118.966614291999932, 50.227006820000035 ], [ -118.966549717999911, 50.227485905000023 ], [ -118.966291052999964, 50.230882653000037 ], [ -118.966109545999984, 50.233266329000109 ], [ -118.966081126999953, 50.233639198000112 ], [ -118.966018192999982, 50.234465488000097 ], [ -118.966038156999929, 50.234631943000103 ], [ -118.966102209999974, 50.235166285000076 ], [ -118.966123691999968, 50.235281686000107 ], [ -118.96611602199999, 50.235277090000061 ], [ -118.965622597999953, 50.23522301 ], [ -118.965232334999911, 50.235295239000038 ], [ -118.965191506999986, 50.235302787000123 ], [ -118.964863, 50.235487901000063 ], [ -118.964919095999974, 50.235846794000082 ], [ -118.965078815999988, 50.235960695000109 ], [ -118.965571579999946, 50.235987796000089 ], [ -118.965915180999929, 50.2361629970001 ], [ -118.966127505, 50.236546100000133 ], [ -118.96585169799998, 50.237000392000013 ], [ -118.964892784999932, 50.237591398000056 ], [ -118.964654402999955, 50.237901912000098 ], [ -118.964911699999917, 50.238725112000033 ], [ -118.96542031599995, 50.238797796 ], [ -118.965544901999962, 50.239101112000107 ], [ -118.965047707999986, 50.23928910000005 ], [ -118.964531002999976, 50.239666507000017 ], [ -118.963755090999939, 50.239904408000051 ], [ -118.962864321999945, 50.240422803000051 ], [ -118.962279376999902, 50.240523891000088 ], [ -118.961507123999937, 50.24052680200009 ], [ -118.960487684999975, 50.24058939600009 ], [ -118.959601794999983, 50.240532413000075 ], [ -118.959183593, 50.240602190000089 ], [ -118.958910411999938, 50.240777402000049 ], [ -118.958370814999938, 50.241335692000042 ], [ -118.958342928999954, 50.241525645000088 ], [ -118.95582838499999, 50.24145878000013 ], [ -118.955804675999929, 50.240879586000062 ], [ -118.956225365999899, 50.24087250300007 ], [ -118.95790698799999, 50.240844173000085 ], [ -118.95789593799995, 50.240574520000081 ], [ -118.958736856999948, 50.240560344000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.9", "sL_BldgLoss": "39.9", "sL_StrLoss": "39.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F777A8C8FBC5DC09AC3FF67DE1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.943981213999947, 50.248156944000137 ], [ -118.949563059999903, 50.248514535000027 ], [ -118.94947157199999, 50.249101275000072 ], [ -118.949418935999958, 50.249119678000092 ], [ -118.948639629999946, 50.249276881000064 ], [ -118.948517935000027, 50.249301446000096 ], [ -118.94715903599996, 50.249575521000089 ], [ -118.946886877999987, 50.249630404000079 ], [ -118.94651659299997, 50.249676190000031 ], [ -118.946333570999982, 50.249698834000078 ], [ -118.944115575999945, 50.249822277000078 ], [ -118.943715115999936, 50.249862126000032 ], [ -118.943981213999947, 50.248156944000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "102.6", "sL_BldgLoss": "102.6", "sL_StrLoss": "102.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2B9ACBAF5C05DC037E43CEF081A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.013661098999961, 50.201506344000094 ], [ -119.018062471999954, 50.201785834000063 ], [ -119.017510629999919, 50.20536357600006 ], [ -119.01436267900003, 50.205163698000057 ], [ -119.011933556, 50.205009399000069 ], [ -119.012485831999953, 50.20143168300006 ], [ -119.013661098999961, 50.201506344000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "90", "sL_BldgLoss": "90", "sL_StrLoss": "90", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E25410A8E3BC5DC0BD010394481F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.949168451999967, 50.246091670000077 ], [ -118.949726176999917, 50.242514461000034 ], [ -118.953481040999947, 50.242754875000074 ], [ -118.953357308999969, 50.245661669000036 ], [ -118.95335561, 50.245701494000095 ], [ -118.953336702999948, 50.246145161000094 ], [ -118.951168690999978, 50.24600288700006 ], [ -118.951168680999956, 50.24621975600013 ], [ -118.949168451999967, 50.246091670000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "155.9", "sL_BldgLoss": "155.9", "sL_StrLoss": "155.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000031101D6531C55DC0478ED730811B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.078768537, 50.216292088000067 ], [ -119.078773879999915, 50.216257148000111 ], [ -119.077929143999953, 50.216204008000062 ], [ -119.078476355999939, 50.212626016000087 ], [ -119.084054881999919, 50.212976826000073 ], [ -119.08391832099997, 50.213870514000085 ], [ -119.084763019999912, 50.213923608000052 ], [ -119.08442033099999, 50.216166366000053 ], [ -119.082415490999921, 50.216176011000115 ], [ -119.082107864, 50.217369087000101 ], [ -119.078637203999946, 50.217150826000122 ], [ -119.078768537, 50.216292088000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "202.8", "sL_BldgLoss": "202.8", "sL_StrLoss": "202.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000257D94F008C25DC06DBC64B1071C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.031251106999903, 50.2161145500001 ], [ -119.036829695, 50.216467744000056 ], [ -119.036615973999986, 50.217856708000049 ], [ -119.036279153999956, 50.220045511000102 ], [ -119.03363969, 50.219878436000101 ], [ -119.032654336999926, 50.219816049000045 ], [ -119.03241415599993, 50.221375902000027 ], [ -119.032340383999937, 50.221854996000047 ], [ -119.02676116799995, 50.221501577000069 ], [ -119.02695835699997, 50.220221988000063 ], [ -119.027312476999924, 50.217923863000067 ], [ -119.030937115999905, 50.218153503000025 ], [ -119.031251106999903, 50.2161145500001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "162.9", "sL_BldgLoss": "162.9", "sL_StrLoss": "162.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000634C13194AC25DC08AD7CC8C44194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.033322497, 50.199329805000076 ], [ -119.033421560999969, 50.198686034000083 ], [ -119.032006199999969, 50.198596370000068 ], [ -119.03255681899999, 50.195018525000116 ], [ -119.038132827000013, 50.195371664000113 ], [ -119.03803383799999, 50.196015441000057 ], [ -119.039449127999958, 50.196105028000083 ], [ -119.038899040999965, 50.199682903000038 ], [ -119.033322497, 50.199329805000076 ] ], [ [ -119.035190797999988, 50.196256590000125 ], [ -119.034816687999964, 50.195372209 ], [ -119.034493706999953, 50.195369288000037 ], [ -119.034279010999967, 50.195903387000044 ], [ -119.034246093999968, 50.196128392000105 ], [ -119.034484497999955, 50.196790686000099 ], [ -119.034690389, 50.197028499000048 ], [ -119.034969515999961, 50.197005797000052 ], [ -119.035848994999938, 50.196595608000038 ], [ -119.035704203999927, 50.196490191000102 ], [ -119.035351695000017, 50.196424714000045 ], [ -119.035190797999988, 50.196256590000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "77.7", "sL_BldgLoss": "77.7", "sL_StrLoss": "77.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000125275975DAB5DC05330197D3BFA4840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.674221564999982, 49.956189631000072 ], [ -118.674517277999939, 49.954352328000077 ], [ -118.674805501999984, 49.954381687000058 ], [ -118.674948196999964, 49.954514190000054 ], [ -118.675313207999949, 49.954545486000079 ], [ -118.675776381, 49.954242102000102 ], [ -118.676428487999928, 49.953727991000029 ], [ -118.67771690799999, 49.953088494000035 ], [ -118.678204195999925, 49.953091407000045 ], [ -118.67821152399992, 49.953093244000115 ], [ -118.679119, 49.953320711000046 ], [ -118.679858187999983, 49.953327808000097 ], [ -118.680431698999911, 49.953226985000065 ], [ -118.680019540999979, 49.95578989100008 ], [ -118.679890975999939, 49.955781282000011 ], [ -118.679765573999958, 49.956560995000061 ], [ -118.677487516999989, 49.956408434000068 ], [ -118.674221564999982, 49.956189631000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "106.4", "sL_BldgLoss": "106.4", "sL_StrLoss": "106.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000059C8CC798C15DC08C54CECD6D164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.022438758999954, 50.173260139 ], [ -119.028012017999956, 50.173613799000073 ], [ -119.02746130199999, 50.177191722000032 ], [ -119.021887606999883, 50.176838035000102 ], [ -119.022438758999954, 50.173260139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "72.6", "sL_BldgLoss": "72.6", "sL_StrLoss": "72.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008303189E30C35DC0CC8BC016C31E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.046810959999902, 50.241782769000039 ], [ -119.047288763, 50.238674572000043 ], [ -119.052870250999902, 50.239026946000095 ], [ -119.05240788899999, 50.242037100000104 ], [ -119.052219703999953, 50.242026300000106 ], [ -119.049649089999932, 50.241718600000056 ], [ -119.049002190999914, 50.24169221000006 ], [ -119.048683207999915, 50.241705383000124 ], [ -119.047856265999883, 50.241739567000103 ], [ -119.04765996199994, 50.241747672000081 ], [ -119.046810959999902, 50.241782769000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.2", "sL_BldgLoss": "34.2", "sL_StrLoss": "34.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005CDC4E7440BC5DC0E72FDBEBB0184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.939843162000017, 50.191114119000105 ], [ -118.942578239999975, 50.191289709000081 ], [ -118.942020580999895, 50.194867119000037 ], [ -118.940703675999941, 50.194782584000116 ], [ -118.940537313999954, 50.194605507000055 ], [ -118.94031421499993, 50.194158508000065 ], [ -118.940359394999959, 50.193895809000061 ], [ -118.940479324999956, 50.193686711000026 ], [ -118.94123631699992, 50.193011711000075 ], [ -118.94131171, 50.192771804000103 ], [ -118.941264981999936, 50.192538491000079 ], [ -118.941009679, 50.192270897000114 ], [ -118.9405875839999, 50.191981001000066 ], [ -118.940223291999985, 50.191590798000114 ], [ -118.940210850999918, 50.191575183000076 ], [ -118.939843162000017, 50.191114119000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "113.7", "sL_BldgLoss": "113.7", "sL_StrLoss": "113.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000180AF91CEFC45DC0239153C76C1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.07569625399999, 50.204034631000077 ], [ -119.08127370199999, 50.204385585000075 ], [ -119.08072681, 50.207963629000083 ], [ -119.07864879899999, 50.207832907000082 ], [ -119.078492561999923, 50.208854677000119 ], [ -119.072914585, 50.208503585000109 ], [ -119.073462099999944, 50.204925582000037 ], [ -119.075539963, 50.205056402000082 ], [ -119.07569625399999, 50.204034631000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "135", "sL_BldgLoss": "135", "sL_StrLoss": "135", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007413ADC36EC45DC087508458261B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.06626397099997, 50.214097489 ], [ -119.066376967999986, 50.213359912000087 ], [ -119.06613061799996, 50.213344386000067 ], [ -119.066678725, 50.209766439000092 ], [ -119.067179171999939, 50.209797978000033 ], [ -119.072256807999949, 50.210117847000085 ], [ -119.072143914999984, 50.21085543300012 ], [ -119.072390253999941, 50.210870946000064 ], [ -119.071842583999938, 50.214448915000091 ], [ -119.068803095999954, 50.214257477000018 ], [ -119.06626397099997, 50.214097489 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020615", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004533473D21C45DC09F1B6007CA1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.063586324, 50.239273945 ], [ -119.065746205999972, 50.239410014000129 ], [ -119.06574163399992, 50.239494595000068 ], [ -119.065736609999959, 50.239586528000068 ], [ -119.065731604999883, 50.239678483000034 ], [ -119.065726615999949, 50.239770405000108 ], [ -119.065721594999928, 50.239862337000019 ], [ -119.065711618999941, 50.240046238000062 ], [ -119.06570659499999, 50.240138171000105 ], [ -119.065701571999981, 50.240230104000062 ], [ -119.06569660299999, 50.240322049000049 ], [ -119.065691578999989, 50.240413980000056 ], [ -119.065686572999965, 50.24050593700013 ], [ -119.065681604999966, 50.240597882000074 ], [ -119.065676563999943, 50.240689791000094 ], [ -119.065671592999976, 50.240781736000059 ], [ -119.065666623999903, 50.240873682 ], [ -119.065661601000016, 50.240965615000086 ], [ -119.065656593999961, 50.241057571000091 ], [ -119.065651606999964, 50.241149492000055 ], [ -119.065641613999944, 50.241333371000067 ], [ -119.065636607999934, 50.241425326000147 ], [ -119.065631583999945, 50.241517260000123 ], [ -119.06562659599993, 50.241609182000097 ], [ -119.06562159, 50.24170113900005 ], [ -119.06432130499999, 50.241699455000081 ], [ -119.063214565999914, 50.241698014000121 ], [ -119.063586324, 50.239273945 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "200.6", "sL_BldgLoss": "200.6", "sL_StrLoss": "200.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006286E7216ABC5DC0C4FC687A011F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.942695384999965, 50.242056545000068 ], [ -118.942693316999978, 50.241922135000024 ], [ -118.942692297999898, 50.241855704000045 ], [ -118.94255430399997, 50.241692392000054 ], [ -118.94235411599999, 50.241557591000117 ], [ -118.94209512299993, 50.241456095000053 ], [ -118.941787499999961, 50.241395799000081 ], [ -118.941447293999886, 50.241381214000057 ], [ -118.939406253999962, 50.241394712 ], [ -118.939528324999941, 50.240612824000024 ], [ -118.940807058999937, 50.240694836000081 ], [ -118.941005626999925, 50.239422655000112 ], [ -118.946586373999935, 50.2397804 ], [ -118.946216925999977, 50.242149169000101 ], [ -118.94654523799997, 50.242170206000019 ], [ -118.94598726699995, 50.245747401000102 ], [ -118.942748986999945, 50.24553986200003 ], [ -118.942724737, 50.243962996000086 ], [ -118.942713363999957, 50.243225818000035 ], [ -118.942712525, 50.243171577000062 ], [ -118.942710317999982, 50.243027600000069 ], [ -118.942696348999931, 50.242119336000059 ], [ -118.942695384999965, 50.242056545000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "114.5", "sL_BldgLoss": "114.5", "sL_StrLoss": "114.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000379B815A9BA5DC0C48E6BE88B1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.91522957799998, 50.224157595000094 ], [ -118.914631036999978, 50.223811393000076 ], [ -118.914201399999968, 50.223562907000037 ], [ -118.91424970099996, 50.22351624100002 ], [ -118.91435908699999, 50.223410499000067 ], [ -118.914622695999981, 50.223418408000086 ], [ -118.915071881999935, 50.223518702000021 ], [ -118.91529430199995, 50.223519483000082 ], [ -118.915308882999966, 50.223502302000021 ], [ -118.915389418999951, 50.223407292000083 ], [ -118.915280581999951, 50.223175307000105 ], [ -118.914920799999948, 50.222954286000125 ], [ -118.91408, 50.222593103000065 ], [ -118.913570497999956, 50.222428414000056 ], [ -118.913331987999968, 50.222278409000097 ], [ -118.913323317999968, 50.221713300000012 ], [ -118.91338210399999, 50.221400894000041 ], [ -118.913465541000036, 50.221275159000108 ], [ -118.913514905999989, 50.221200793 ], [ -118.913813394999977, 50.220868708000104 ], [ -118.914145716999911, 50.220575680000159 ], [ -118.914192076999925, 50.220534806000032 ], [ -118.91646085, 50.220680897000094 ], [ -118.916417149999958, 50.220960027000068 ], [ -118.917193045999937, 50.221009977000037 ], [ -118.917130736999951, 50.221408009000065 ], [ -118.919136712999901, 50.221537124000143 ], [ -118.918704636999962, 50.224297781000054 ], [ -118.918764612999937, 50.224301641000075 ], [ -118.918359883999941, 50.226887285000068 ], [ -118.917351995999979, 50.225915592000085 ], [ -118.91726555299999, 50.225843688000054 ], [ -118.916781214999958, 50.225440791000096 ], [ -118.916017518999965, 50.224748492000046 ], [ -118.91522957799998, 50.224157595000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "208.2", "sL_BldgLoss": "208.2", "sL_StrLoss": "208.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EBD7299829C25DC065C11FD9B71C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.032770604999953, 50.22216959900004 ], [ -119.038349949999969, 50.22252271400005 ], [ -119.037799455999959, 50.226100461000037 ], [ -119.034904605999913, 50.225917283000037 ], [ -119.03480695199994, 50.22655162800001 ], [ -119.029227138999957, 50.22619833600006 ], [ -119.029778309999955, 50.222620632000044 ], [ -119.032672929999947, 50.222803945000059 ], [ -119.032770604999953, 50.22216959900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13110161", "BldgCostT": "8065743", "sL_LossRatio": "1", "sL_AssetLoss": "492.6", "sL_BldgLoss": "492.6", "sL_StrLoss": "492.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3A6267F7FC45DC003F51C47E21C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.068316512999942, 50.235305201000124 ], [ -119.068424855999936, 50.234598146000103 ], [ -119.068360661999947, 50.234594105000028 ], [ -119.068523663999926, 50.233530298000062 ], [ -119.067408370999956, 50.233550154000035 ], [ -119.067385042999916, 50.233010884000052 ], [ -119.06696467799999, 50.233018365000078 ], [ -119.066953016999946, 50.23274873000004 ], [ -119.065271564999975, 50.232778638000106 ], [ -119.065248260999965, 50.232239368000059 ], [ -119.064407544999966, 50.232254312000165 ], [ -119.06437260499996, 50.231445405000031 ], [ -119.065633659999918, 50.231422987000045 ], [ -119.06564531199993, 50.231692622000061 ], [ -119.066196617999964, 50.231682817000085 ], [ -119.066599097999955, 50.229056652000097 ], [ -119.064703414999912, 50.228937214000084 ], [ -119.065172024, 50.225880005000135 ], [ -119.06493593099998, 50.225865127000091 ], [ -119.06499983, 50.225448230000026 ], [ -119.064853757, 50.22543902600011 ], [ -119.06540211, 50.221861141000041 ], [ -119.067400155999977, 50.221987035000076 ], [ -119.067599078999933, 50.220688589000062 ], [ -119.068890336, 50.220769930000088 ], [ -119.073178512999931, 50.221039945 ], [ -119.073159405999917, 50.221164759000025 ], [ -119.073629267999976, 50.221194334000124 ], [ -119.073673105999944, 50.220907928000017 ], [ -119.077053890999949, 50.221120673000023 ], [ -119.07707345399993, 50.220992806000083 ], [ -119.07978532599999, 50.221163382000071 ], [ -119.079794228999958, 50.221105167000061 ], [ -119.080993766999924, 50.221180596000032 ], [ -119.081068396999939, 50.220692496000098 ], [ -119.081247947999941, 50.22070378500009 ], [ -119.08051003099996, 50.223564969000108 ], [ -119.079951414999982, 50.22357000800011 ], [ -119.079937366999957, 50.223569836000074 ], [ -119.076657931999989, 50.223528153000139 ], [ -119.07545189199999, 50.223512801000062 ], [ -119.073373075999967, 50.22352189500009 ], [ -119.071119905999922, 50.223505907000096 ], [ -119.069268181999988, 50.223492739000086 ], [ -119.06882897299991, 50.223489595000075 ], [ -119.069239443999905, 50.226658972000074 ], [ -119.067651812999927, 50.228214032000039 ], [ -119.068018829999943, 50.228575112000101 ], [ -119.068033747999962, 50.228590630000085 ], [ -119.069370269000018, 50.229980863000087 ], [ -119.070010702999951, 50.230662030000055 ], [ -119.069872987999972, 50.235217423000108 ], [ -119.069861535999934, 50.235402482000026 ], [ -119.068316512999942, 50.235305201000124 ] ], [ [ -119.068637445999954, 50.232787688 ], [ -119.068723939, 50.232223173000129 ], [ -119.068190878999971, 50.232189603000094 ], [ -119.068214104, 50.232726283 ], [ -119.068634464999903, 50.232718797000047 ], [ -119.068637445999954, 50.232787688 ] ], [ [ -119.067770409, 50.232194497000073 ], [ -119.068158789999956, 50.232187582000094 ], [ -119.067769047999946, 50.232163037000134 ], [ -119.067770409, 50.232194497000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "134.6", "sL_BldgLoss": "134.6", "sL_StrLoss": "134.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FABE7E693C35DC007639F5BC31B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.053387413999985, 50.214934351000082 ], [ -119.058966029999937, 50.215286427000052 ], [ -119.058829410999948, 50.216177190000039 ], [ -119.058417247999913, 50.218864309000068 ], [ -119.052838195999982, 50.218512207000053 ], [ -119.053132384999955, 50.216595797000089 ], [ -119.053387413999985, 50.214934351000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "99.6", "sL_BldgLoss": "99.6", "sL_StrLoss": "99.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001598467A6EC45DC08AAB0CDBFD194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.066728402999928, 50.201094819000048 ], [ -119.072305422999989, 50.201446228000101 ], [ -119.072100701999943, 50.202784027000085 ], [ -119.071757857999913, 50.205024241000025 ], [ -119.067904747999961, 50.204781487000027 ], [ -119.066180403999937, 50.204672806000083 ], [ -119.066728402999928, 50.201094819000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "29.1", "sL_BldgLoss": "29.1", "sL_StrLoss": "29.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DA6A9C6E55AB5DC0B2E611EDF4F94840" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.674937184999948, 49.954190892000028 ], [ -118.674587508999963, 49.954132503000025 ], [ -118.674551331999936, 49.954140741000067 ], [ -118.674797284999926, 49.952612465000087 ], [ -118.674925842, 49.952621079000075 ], [ -118.675051315999966, 49.951841369000078 ], [ -118.678698986999947, 49.952085736000086 ], [ -118.680594801999945, 49.952212693000028 ], [ -118.680464604999898, 49.953022363000066 ], [ -118.680253804999921, 49.953115587000106 ], [ -118.67981019199999, 49.953175399000081 ], [ -118.67897250799993, 49.953142692000029 ], [ -118.678295299999945, 49.952936189000091 ], [ -118.678285878999958, 49.952935804000056 ], [ -118.677807877999953, 49.952916196000047 ], [ -118.676092297000011, 49.953696700000108 ], [ -118.675667194000013, 49.953937399000026 ], [ -118.675277388999973, 49.954302001000045 ], [ -118.67512310599993, 49.954331911000089 ], [ -118.674937184999948, 49.954190892000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020623", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "237.2", "sL_BldgLoss": "237.2", "sL_StrLoss": "237.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B407731E02C35DC07DADAEB70B1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.043994625, 50.206035088000085 ], [ -119.044284995999959, 50.204145421000135 ], [ -119.042356401999953, 50.204023446000114 ], [ -119.042906269999918, 50.200445574000049 ], [ -119.048483024999925, 50.200798187000011 ], [ -119.048305292999942, 50.201955638000136 ], [ -119.051803799999988, 50.202176698000081 ], [ -119.051254611999937, 50.205754607000081 ], [ -119.050682908999988, 50.205718491000077 ], [ -119.050599511, 50.206261720000086 ], [ -119.049601094999943, 50.206198640000075 ], [ -119.049572072999979, 50.206387643000092 ], [ -119.043994625, 50.206035088000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4671417", "BldgCostT": "3221667", "sL_LossRatio": "1", "sL_AssetLoss": "283.3", "sL_BldgLoss": "283.3", "sL_StrLoss": "283.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF04DF34FDC15DC04FE91EE1CD1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.028256443999936, 50.212288938000043 ], [ -119.028567762999941, 50.210267835000089 ], [ -119.026486025999986, 50.210135893000128 ], [ -119.026504190999916, 50.210017988000075 ], [ -119.02518029299992, 50.209934057000034 ], [ -119.025731585999935, 50.206356298000095 ], [ -119.031308931999931, 50.20670977600011 ], [ -119.031290780999953, 50.206827682000046 ], [ -119.032614600999935, 50.206911541000075 ], [ -119.03249723199994, 50.207674027000031 ], [ -119.036639724999972, 50.207936332000031 ], [ -119.036614862999954, 50.208097944000095 ], [ -119.037012625999964, 50.20812312100005 ], [ -119.036462200999935, 50.21170092800007 ], [ -119.03400338699997, 50.211545264000122 ], [ -119.033834539999958, 50.212642285000086 ], [ -119.028256443999936, 50.212288938000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "120.6", "sL_BldgLoss": "120.6", "sL_StrLoss": "120.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED95600E8EC25DC0CC99ED0AFD1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.037406639999944, 50.20888187 ], [ -119.042984388999969, 50.209234758000051 ], [ -119.042434420999896, 50.212812589000109 ], [ -119.036856237999956, 50.212459676000016 ], [ -119.037406639999944, 50.20888187 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.8", "sL_BldgLoss": "42.8", "sL_StrLoss": "42.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001ED623268BBF5DC075EFB813B21B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.987413049999972, 50.218363079000035 ], [ -118.987547023000019, 50.217498558000024 ], [ -118.989073871999963, 50.217595862000046 ], [ -118.989086354999927, 50.217515293000062 ], [ -118.99025767799999, 50.217589925000027 ], [ -118.990308316999986, 50.21726302000009 ], [ -118.990331325999975, 50.217264486000026 ], [ -118.99039673599999, 50.216842220000046 ], [ -118.990408845999951, 50.21684299200011 ], [ -118.990461150999977, 50.216505321000085 ], [ -118.993351354999945, 50.216689420000122 ], [ -118.99367791899999, 50.214580190000092 ], [ -118.999022322999963, 50.214920412000041 ], [ -118.998474475999956, 50.215288293000135 ], [ -118.99753791, 50.215358103 ], [ -118.996567301999917, 50.215608792000033 ], [ -118.995837706999936, 50.215611601000049 ], [ -118.995313499999938, 50.215440697000105 ], [ -118.99439230099992, 50.2155460990001 ], [ -118.994132314999931, 50.215704205000101 ], [ -118.994097108999966, 50.215848101000077 ], [ -118.993655089999933, 50.216054603000075 ], [ -118.99380209499999, 50.216537398000106 ], [ -118.993770211999944, 50.216799389000073 ], [ -118.992644509999977, 50.216988789000077 ], [ -118.992118219999966, 50.217159706000103 ], [ -118.99139228300001, 50.217558500000067 ], [ -118.9909334099999, 50.217971486000117 ], [ -118.990642683999909, 50.218111103000041 ], [ -118.989768204999962, 50.218297709000133 ], [ -118.988377200999963, 50.21819509400013 ], [ -118.987413049999972, 50.218363079000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13397250", "BldgCostT": "9030000", "sL_LossRatio": "0.995295443686216", "sL_AssetLoss": "816.23", "sL_BldgLoss": "812.39", "sL_StrLoss": "811", "sL_NStrLoss": "1.39", "sL_ContLoss": "3.84", "geom_point": "0101000020E61000005EE6858524C05DC0CFF06E7EA61A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.000960435999929, 50.214348675000053 ], [ -119.000973628999958, 50.2142633650001 ], [ -119.000328846999977, 50.214222343000081 ], [ -119.000336015999935, 50.214211603000074 ], [ -119.000781881999956, 50.213808595000053 ], [ -119.000745493999887, 50.213647592000029 ], [ -119.000085105999986, 50.213911107000079 ], [ -118.99991678899994, 50.214196125000051 ], [ -118.995578872999971, 50.213920026000018 ], [ -118.99574155699996, 50.212868896000039 ], [ -118.995495442999953, 50.212853226000064 ], [ -118.996049109999973, 50.209275629000068 ], [ -118.996716510999988, 50.209318121000109 ], [ -118.997033878999929, 50.207266948000019 ], [ -119.000798359000029, 50.207506546000062 ], [ -119.000892531999952, 50.206897534000113 ], [ -119.001116619, 50.206911793000081 ], [ -119.00126952899997, 50.205922871000041 ], [ -119.000636395999919, 50.205882584000037 ], [ -119.00093087599997, 50.203978120000052 ], [ -118.998344753999945, 50.203813525000115 ], [ -118.998898085999897, 50.200235872000064 ], [ -119.00447447199997, 50.200590709000025 ], [ -119.004180162999987, 50.202495191000068 ], [ -119.006766230999958, 50.202659650000065 ], [ -119.006653258999989, 50.203390918000196 ], [ -119.007682051999907, 50.203456326000037 ], [ -119.007507298999911, 50.204587622000133 ], [ -119.008274809999975, 50.204636411000067 ], [ -119.007722163000025, 50.208214091000045 ], [ -119.006781629999935, 50.208154301000093 ], [ -119.00639942, 50.210627955000071 ], [ -119.006563275999966, 50.210638372000062 ], [ -119.006493834999958, 50.211087772000013 ], [ -119.007091389999943, 50.211125759000033 ], [ -119.006538570999965, 50.214703402000048 ], [ -119.000960435999929, 50.214348675000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "106.4", "sL_BldgLoss": "106.4", "sL_StrLoss": "106.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FFB5594802C55DC0FD2CD83ECB194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.079359618999945, 50.199777744000095 ], [ -119.081326296999919, 50.19990147400015 ], [ -119.080779462999914, 50.203479539000071 ], [ -119.07520213, 50.203128560000025 ], [ -119.075319521000011, 50.202361101000058 ], [ -119.075749397999971, 50.199550520000102 ], [ -119.079359618999945, 50.199777744000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "170.1", "sL_BldgLoss": "170.1", "sL_StrLoss": "170.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3ECEFCF79C25DC00F483E86F9194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.03621726899992, 50.2057238720001 ], [ -119.036566565999962, 50.203453250000052 ], [ -119.035024985999939, 50.203355644000048 ], [ -119.03557542399993, 50.199777805000046 ], [ -119.041152038999968, 50.20013078900012 ], [ -119.040802997999933, 50.202401436000052 ], [ -119.042344556999964, 50.202498961000082 ], [ -119.041794619999948, 50.206076820000128 ], [ -119.03621726899992, 50.2057238720001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "33", "sL_BldgLoss": "33", "sL_StrLoss": "33", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009ECA2FA4BFBA5DC07DC908A07F1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.91858618399999, 50.212731512000097 ], [ -118.920213786999952, 50.212836276000132 ], [ -118.919654099999931, 50.216413473000046 ], [ -118.917787340999979, 50.21629331500003 ], [ -118.917739727999958, 50.216597517000146 ], [ -118.915556075999959, 50.216456920000077 ], [ -118.915528767999945, 50.216417391000036 ], [ -118.915440293999936, 50.216219552000091 ], [ -118.915312772999968, 50.215934488000109 ], [ -118.915181411999981, 50.215640794000066 ], [ -118.915256803999952, 50.215334126000101 ], [ -118.915259000999953, 50.215325105000076 ], [ -118.915295243999978, 50.215275822000137 ], [ -118.91545230199992, 50.215062094000089 ], [ -118.915949570999942, 50.214648231000062 ], [ -118.916499996, 50.214190107000015 ], [ -118.917422986999924, 50.213269394000093 ], [ -118.918224895999913, 50.21297779800009 ], [ -118.918563101999979, 50.212778287000084 ], [ -118.91858618399999, 50.212731512000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "31.7", "sL_BldgLoss": "31.7", "sL_StrLoss": "31.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CC61D60F9AB35DC014598C361E234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.80675818099999, 50.272670075000086 ], [ -118.80730894099996, 50.272706041000077 ], [ -118.806739609999951, 50.276282385000052 ], [ -118.805869020999921, 50.276225531000073 ], [ -118.805970900999952, 50.275965506000091 ], [ -118.805943883999987, 50.275683702000102 ], [ -118.805720618999914, 50.275269801000078 ], [ -118.80558691899995, 50.274851907000077 ], [ -118.805115097999973, 50.274421803000109 ], [ -118.804921009999944, 50.273896006000079 ], [ -118.806457349999945, 50.27287082300009 ], [ -118.80675818099999, 50.272670075000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4104167", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "562.3", "sL_BldgLoss": "562.3", "sL_StrLoss": "562.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B547E63D9B95DC05F23CD48D2244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.900426298999946, 50.28852239600009 ], [ -118.900162784999935, 50.288493705000114 ], [ -118.898592382999965, 50.288478251000079 ], [ -118.898530639999933, 50.288477642000082 ], [ -118.898891962999969, 50.286179115000039 ], [ -118.904478133999973, 50.286538966000109 ], [ -118.90438902399994, 50.287106297000051 ], [ -118.905719038999933, 50.287191931000095 ], [ -118.905841349999946, 50.286413074000052 ], [ -118.911295516999971, 50.286764077000043 ], [ -118.910945686, 50.286916560000108 ], [ -118.907801284999906, 50.288287010000019 ], [ -118.907499351999945, 50.288418617000048 ], [ -118.907171606999952, 50.288561448000081 ], [ -118.906007377999956, 50.289068807000071 ], [ -118.905501009999981, 50.289239412000086 ], [ -118.905230686999971, 50.289298803000065 ], [ -118.904653820999897, 50.289361001000096 ], [ -118.904060801999947, 50.289381502000019 ], [ -118.90346649599995, 50.289374892000104 ], [ -118.902884280999913, 50.28930941400003 ], [ -118.902334817999957, 50.289188200000069 ], [ -118.901822903999957, 50.289043206000052 ], [ -118.900868680999949, 50.288656367000016 ], [ -118.900681003999949, 50.288580301000046 ], [ -118.900612476999953, 50.288564731000079 ], [ -118.900426298999946, 50.28852239600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17969410", "BldgCostT": "10735742", "sL_LossRatio": "0.99459178085896", "sL_AssetLoss": "443.769", "sL_BldgLoss": "441.369", "sL_StrLoss": "440.5", "sL_NStrLoss": "0.869", "sL_ContLoss": "2.4", "geom_point": "0101000020E61000005658C23D83B75DC06973524EEA234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.861121738999913, 50.284305743000061 ], [ -118.861243287999983, 50.283536554000079 ], [ -118.859898453999946, 50.283449411000078 ], [ -118.859950832, 50.283118004000052 ], [ -118.859668470999964, 50.283099705000076 ], [ -118.860233711999953, 50.279523120000086 ], [ -118.860679348999952, 50.279552 ], [ -118.860830435999958, 50.278595832000065 ], [ -118.862113833999956, 50.278678992000017 ], [ -118.862236714999966, 50.277901163000053 ], [ -118.867821573999933, 50.278262869000038 ], [ -118.867725187999937, 50.278873463000174 ], [ -118.870511494000013, 50.279053812000022 ], [ -118.870884606999979, 50.276689155000113 ], [ -118.87646938499995, 50.277050426000066 ], [ -118.876145118999929, 50.27910712900011 ], [ -118.875905455999941, 50.280627104000068 ], [ -118.872163425999972, 50.28038507100009 ], [ -118.871730712000016, 50.28312769300004 ], [ -118.866998859999953, 50.282821454000064 ], [ -118.866707379999966, 50.284667504000026 ], [ -118.863976596999962, 50.284490677000051 ], [ -118.861121738999913, 50.284305743000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.9", "sL_BldgLoss": "42.9", "sL_StrLoss": "42.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004EA12DC6C4B95DC0CCAB632AB7214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.901149939999982, 50.263103968000145 ], [ -118.901139201999982, 50.262834307000048 ], [ -118.904083883999974, 50.262786089000016 ], [ -118.904094637999947, 50.263055748000113 ], [ -118.905356649999931, 50.263035060000092 ], [ -118.905368117999942, 50.263322424000066 ], [ -118.905388933999973, 50.263844040000073 ], [ -118.899920115999961, 50.263933594000079 ], [ -118.899895593999958, 50.263317383000043 ], [ -118.899887924000012, 50.263124612000034 ], [ -118.901149939999982, 50.263103968000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "102.5", "sL_BldgLoss": "102.5", "sL_StrLoss": "102.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021EEE2E45BBD5DC0E1600C380D214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.955773963999974, 50.259724125000034 ], [ -118.956331334999959, 50.256146946000079 ], [ -118.95998449299999, 50.256380555000078 ], [ -118.959880033999937, 50.256517797000072 ], [ -118.959629080999932, 50.256847490000077 ], [ -118.960186472999936, 50.256893696000063 ], [ -118.961832341999951, 50.257030111000091 ], [ -118.961357324999966, 50.260081115000041 ], [ -118.955773963999974, 50.259724125000034 ] ], [ [ -118.958730320999948, 50.257268300000113 ], [ -118.959164776999955, 50.256936498000101 ], [ -118.959348682999973, 50.256952206000101 ], [ -118.959315490999984, 50.256835413000033 ], [ -118.959117892000023, 50.256802604000036 ], [ -118.95876679499996, 50.25680829500002 ], [ -118.958505799999898, 50.256939302000056 ], [ -118.958389090999916, 50.257184316000099 ], [ -118.95846609699997, 50.257687004000076 ], [ -118.958295314999972, 50.257950493000109 ], [ -118.958727096999937, 50.257852306000146 ], [ -118.958804889999897, 50.257725504000092 ], [ -118.958730320999948, 50.257268300000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.2", "sL_BldgLoss": "39.2", "sL_StrLoss": "39.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004343946993B65DC05C0CF5264C204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.854570699999925, 50.251137106000023 ], [ -118.854624, 50.251140396 ], [ -118.854291900999925, 50.253241564000078 ], [ -118.849449461999939, 50.252927175000096 ], [ -118.850143405999958, 50.252658198000113 ], [ -118.851373280999908, 50.252069133000106 ], [ -118.852476986999989, 50.251540484000017 ], [ -118.852944869999973, 50.2513706820001 ], [ -118.853025789999919, 50.251341299000089 ], [ -118.853615693999984, 50.251203405000034 ], [ -118.854248698999982, 50.251140607000067 ], [ -118.854570699999925, 50.251137106000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020641", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6169583", "BldgCostT": "3758333", "sL_LossRatio": "0.997696483297835", "sL_AssetLoss": "149.771", "sL_BldgLoss": "149.426", "sL_StrLoss": "149.3", "sL_NStrLoss": "0.126", "sL_ContLoss": "0.345", "geom_point": "0101000020E610000002335B89ABB55DC02D7B12D89C254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.835331121999914, 50.296609771000043 ], [ -118.835427679999967, 50.296001124000028 ], [ -118.834642774999978, 50.296013516000059 ], [ -118.834632401999912, 50.295743848000065 ], [ -118.83379045099997, 50.295757135000073 ], [ -118.833759341999922, 50.29494812700004 ], [ -118.834601278999969, 50.294934840000046 ], [ -118.834590905000013, 50.294665170000073 ], [ -118.835432837999946, 50.29465187600001 ], [ -118.835422458999972, 50.294382207000098 ], [ -118.835685153999989, 50.294378058000063 ], [ -118.835851307000013, 50.29333060200004 ], [ -118.836760256000019, 50.293389688000047 ], [ -118.83677742, 50.293281468000103 ], [ -118.836643807999934, 50.293283579 ], [ -118.836602269999972, 50.292204902000059 ], [ -118.836181326999949, 50.292211554000083 ], [ -118.836139800999931, 50.29113287800002 ], [ -118.83698166799995, 50.29111957300011 ], [ -118.836971282999954, 50.290849904000012 ], [ -118.83991780099997, 50.290803291000067 ], [ -118.839928203999975, 50.291072959000083 ], [ -118.840349137999965, 50.291066295000135 ], [ -118.8403699469999, 50.29160563199999 ], [ -118.840790885, 50.291598966000059 ], [ -118.840801292999942, 50.291868634000053 ], [ -118.84094838599998, 50.291866304000095 ], [ -118.84122223199995, 50.291861966000099 ], [ -118.841265424999946, 50.292980815000114 ], [ -118.842456875999972, 50.293058205000065 ], [ -118.841958540999926, 50.296202591000089 ], [ -118.841595579999975, 50.296215852000017 ], [ -118.841493226999944, 50.296219599000018 ], [ -118.841090903999941, 50.296188075000082 ], [ -118.84047990099999, 50.296140212000097 ], [ -118.839585649999933, 50.296044533000078 ], [ -118.839086152999954, 50.295991093000069 ], [ -118.838652493999959, 50.295944693000109 ], [ -118.838048849999907, 50.295943256000037 ], [ -118.837858301999972, 50.295942797000059 ], [ -118.837210002999925, 50.296027100000039 ], [ -118.836770997999963, 50.296143111000042 ], [ -118.835331121999914, 50.296609771000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10843373", "BldgCostT": "7268706", "sL_LossRatio": "0.994733774947739", "sL_AssetLoss": "374.082", "sL_BldgLoss": "372.112", "sL_StrLoss": "371.4", "sL_NStrLoss": "0.712", "sL_ContLoss": "1.97", "geom_point": "0101000020E61000001290062291B85DC07E758F4B20224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.877118055999944, 50.271782314000042 ], [ -118.87739191799993, 50.270044793000068 ], [ -118.877019571999966, 50.270020715000072 ], [ -118.877583281999932, 50.266443982000055 ], [ -118.88146740799999, 50.266695092000077 ], [ -118.88190523499992, 50.263915173000051 ], [ -118.885999033, 50.264179689000045 ], [ -118.886463385999946, 50.261229270000044 ], [ -118.890017768999883, 50.261458808000029 ], [ -118.892046384999972, 50.261589761000131 ], [ -118.891483875999938, 50.265166590000064 ], [ -118.887389956999982, 50.264902278000122 ], [ -118.887093618999927, 50.26678528700004 ], [ -118.886925626999954, 50.267852687000065 ], [ -118.885011393999946, 50.267729047000081 ], [ -118.883041371, 50.267601768000112 ], [ -118.882893232999947, 50.268542461000045 ], [ -118.88326556899996, 50.268566519000068 ], [ -118.882702280999951, 50.272143272000058 ], [ -118.877118055999944, 50.271782314000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3795834", "BldgCostT": "2408334", "sL_LossRatio": "0.979183103720338", "sL_AssetLoss": "164.77", "sL_BldgLoss": "161.34", "sL_StrLoss": "160.1", "sL_NStrLoss": "1.24", "sL_ContLoss": "3.43", "geom_point": "0101000020E61000008692C9A99DB45DC0E2E6543280214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.816628704, 50.263044849000053 ], [ -118.816732332999948, 50.262392829000042 ], [ -118.814163575999913, 50.262225236000042 ], [ -118.81524811599995, 50.261524405000088 ], [ -118.815872410999958, 50.261189284000075 ], [ -118.816472175999976, 50.260990797000069 ], [ -118.817227091999925, 50.260827790000128 ], [ -118.81776251, 50.260785912000124 ], [ -118.818276920999921, 50.260796902000017 ], [ -118.818783395999986, 50.260866096000086 ], [ -118.819275809999979, 50.260979501000087 ], [ -118.819785209999949, 50.261128846000098 ], [ -118.820024906999961, 50.261199106000113 ], [ -118.820840910999948, 50.26134350300002 ], [ -118.821402097, 50.261379201000096 ], [ -118.82168290199999, 50.261369483000117 ], [ -118.822221894999984, 50.261296197 ], [ -118.823383779999972, 50.260958198000026 ], [ -118.825145542999948, 50.260411994000023 ], [ -118.827469487999963, 50.259691409 ], [ -118.828535623999969, 50.259340755000018 ], [ -118.828310532999964, 50.260759421000074 ], [ -118.82801437899991, 50.26262583700008 ], [ -118.827605965999936, 50.262599237000082 ], [ -118.822431763999973, 50.26226211200003 ], [ -118.822539540999955, 50.261583426000136 ], [ -118.822501655999986, 50.261580957000035 ], [ -118.822211368999916, 50.263408866000134 ], [ -118.816628704, 50.263044849000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8848334", "BldgCostT": "5683334", "sL_LossRatio": "0.972417865125891", "sL_AssetLoss": "474.22", "sL_BldgLoss": "461.14", "sL_StrLoss": "456.4", "sL_NStrLoss": "4.74", "sL_ContLoss": "13.08", "geom_point": "0101000020E6100000A08058FC47BC5DC0816A8B8419244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.950638863999956, 50.276712212000071 ], [ -118.954780688999946, 50.276977150000057 ], [ -118.954389097999965, 50.277219526000124 ], [ -118.95396866699997, 50.277401200000099 ], [ -118.952598918999954, 50.277837508000097 ], [ -118.951540361999932, 50.278478946000092 ], [ -118.950983789999967, 50.278816194000122 ], [ -118.950407647999967, 50.279192788000017 ], [ -118.949190222999974, 50.279988497000076 ], [ -118.948466601999939, 50.28044069300006 ], [ -118.948011693999931, 50.280724559000099 ], [ -118.946275773999929, 50.281807784000129 ], [ -118.946110200999925, 50.281911098000144 ], [ -118.94498628799991, 50.282588408 ], [ -118.944195290999971, 50.28306511200006 ], [ -118.944086084000034, 50.283130903000057 ], [ -118.943737097999986, 50.283243093000067 ], [ -118.943516207999892, 50.28328499400002 ], [ -118.942185310999903, 50.283425506000107 ], [ -118.941963991999955, 50.283468802000122 ], [ -118.9414724169999, 50.283564992000095 ], [ -118.941048779999974, 50.283703192000111 ], [ -118.940679402999962, 50.283864704000081 ], [ -118.93804480599999, 50.285481942000054 ], [ -118.937478311999925, 50.285829649000028 ], [ -118.936903670999939, 50.286182352 ], [ -118.935979296999946, 50.28674971300007 ], [ -118.934925341999971, 50.28739657000007 ], [ -118.934007243999972, 50.287960037000076 ], [ -118.93099858399998, 50.287767079000055 ], [ -118.93117007699999, 50.286671109000032 ], [ -118.931450881000018, 50.286615592000025 ], [ -118.931809618999964, 50.286114298000093 ], [ -118.931801390999965, 50.285890708000061 ], [ -118.931623196999908, 50.285685613000027 ], [ -118.931349487999952, 50.285524488000114 ], [ -118.93155825599996, 50.284190153000026 ], [ -118.935444855999933, 50.284439403000079 ], [ -118.935471681999942, 50.284267842000105 ], [ -118.936119724999941, 50.284309388000054 ], [ -118.936205377999926, 50.283761558000016 ], [ -118.93640261599991, 50.28377420200011 ], [ -118.936480792999973, 50.283274163000016 ], [ -118.93686985, 50.283299102000079 ], [ -118.936919988999975, 50.282978372000102 ], [ -118.938283638999934, 50.283065775000075 ], [ -118.938466282999954, 50.281897204000117 ], [ -118.9415732, 50.28209627800009 ], [ -118.942112706999964, 50.278642579000056 ], [ -118.94676278299994, 50.278940365000039 ], [ -118.947100492999979, 50.276776788000078 ], [ -118.949472333999921, 50.276928602000119 ], [ -118.949517294999964, 50.276640442000023 ], [ -118.950638863999956, 50.276712212000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "76.7", "sL_BldgLoss": "76.7", "sL_StrLoss": "76.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED19DBCEABBB5DC0AB1D6A8077204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.934902263999959, 50.251457912000085 ], [ -118.935071071999928, 50.251468744000057 ], [ -118.934512080999966, 50.2550458380001 ], [ -118.928929550999953, 50.254687491000084 ], [ -118.929176722999927, 50.253107104000058 ], [ -118.929666012999959, 50.253127896000102 ], [ -118.930404306999932, 50.253112108000089 ], [ -118.930973676999926, 50.253031188000058 ], [ -118.93171281399998, 50.252839283000071 ], [ -118.932448589999964, 50.252613810000057 ], [ -118.932534989999937, 50.252580004000087 ], [ -118.932930522, 50.252425203 ], [ -118.934481991999959, 50.251625192000063 ], [ -118.934902263999959, 50.251457912000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12457706", "BldgCostT": "8382039", "sL_LossRatio": "0.986605834066256", "sL_AssetLoss": "545.76", "sL_BldgLoss": "538.45", "sL_StrLoss": "535.8", "sL_NStrLoss": "2.65", "sL_ContLoss": "7.31", "geom_point": "0101000020E6100000E9C4CCDB64BA5DC0EEC970FA82204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.915291287999977, 50.256072280000076 ], [ -118.915574422999924, 50.25426551000006 ], [ -118.914405213999927, 50.254190277000099 ], [ -118.914391967999947, 50.254274797000043 ], [ -118.908809691999949, 50.253915432000063 ], [ -118.908828211999946, 50.253797355000131 ], [ -118.908667896999958, 50.253787030000062 ], [ -118.908649795999978, 50.253902429000028 ], [ -118.908047948000018, 50.253863666000079 ], [ -118.907593209999945, 50.256762345000048 ], [ -118.902010680999979, 50.256402638000075 ], [ -118.902572251999956, 50.252825714000068 ], [ -118.90317408199995, 50.252864507000048 ], [ -118.903276883999965, 50.252209592000014 ], [ -118.901589757999929, 50.252100836000103 ], [ -118.901621201999959, 50.251900560000124 ], [ -118.901631181999932, 50.251900398 ], [ -118.90492997199999, 50.251775590000044 ], [ -118.905410210999989, 50.251757382000072 ], [ -118.906049421999967, 50.251699202000118 ], [ -118.906984880999929, 50.25153179400013 ], [ -118.907672294999941, 50.251354796000093 ], [ -118.908142598, 50.251277589000068 ], [ -118.908459901, 50.251292725000084 ], [ -118.908898119999932, 50.251313609000121 ], [ -118.909757535000026, 50.251392263000092 ], [ -118.910896400999917, 50.251496494000023 ], [ -118.91140110399999, 50.25157690300005 ], [ -118.912120092999942, 50.251773989000114 ], [ -118.912616796999956, 50.251869209000048 ], [ -118.913119911999956, 50.251924208000084 ], [ -118.913776538999983, 50.251962337000059 ], [ -118.914125584999965, 50.251982604000041 ], [ -118.91484621099994, 50.251945003000046 ], [ -118.91533366699997, 50.251859463000066 ], [ -118.915531799999897, 50.25182470600005 ], [ -118.916339504999939, 50.251587551000043 ], [ -118.916603985999956, 50.251509925000079 ], [ -118.91850451399992, 50.250951900000047 ], [ -118.918735320999971, 50.250898665000101 ], [ -118.918924194999988, 50.250855114000046 ], [ -118.919144, 50.250828585000093 ], [ -118.919587790999984, 50.250848115000039 ], [ -118.92001800499996, 50.250945299000094 ], [ -118.92157577499998, 50.25155794000009 ], [ -118.921220338999902, 50.253828142000053 ], [ -118.917079338999912, 50.253561845000078 ], [ -118.917001273, 50.254060142000093 ], [ -118.921202858999962, 50.254330336000073 ], [ -118.921140932999947, 50.254725836000013 ], [ -118.920642739999934, 50.25790734600011 ], [ -118.915059966999976, 50.257548299000071 ], [ -118.915291287999977, 50.256072280000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5258750", "BldgCostT": "3155000", "sL_LossRatio": "1", "sL_AssetLoss": "96", "sL_BldgLoss": "96", "sL_StrLoss": "96", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B140FBD7FB65DC07264ABEC37254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.849861177999969, 50.294067810000065 ], [ -118.850256958, 50.291567662 ], [ -118.847692581999951, 50.291401255000046 ], [ -118.848258871999946, 50.28782477000005 ], [ -118.853844842999933, 50.288187178000072 ], [ -118.853449290999919, 50.290687349000073 ], [ -118.856013646999912, 50.290853623000054 ], [ -118.85575604899995, 50.292482258000035 ], [ -118.85499680599996, 50.292726470000026 ], [ -118.852934899999966, 50.293389592000032 ], [ -118.852146810999969, 50.293643804000077 ], [ -118.851930555999942, 50.293746340000112 ], [ -118.851364210999947, 50.294014912000087 ], [ -118.851130517999977, 50.294150157000018 ], [ -118.849861177999969, 50.294067810000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6065917", "BldgCostT": "3711667", "sL_LossRatio": "1", "sL_AssetLoss": "234.5", "sL_BldgLoss": "234.5", "sL_StrLoss": "234.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000195E628FFDB85DC0FF1034C9BC244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.890453183, 50.285223621000057 ], [ -118.896039168999934, 50.285583900000105 ], [ -118.895588656999919, 50.288448638000027 ], [ -118.895181262999984, 50.288444616000085 ], [ -118.894171164999989, 50.288434643000052 ], [ -118.893629800000014, 50.288429287000106 ], [ -118.892961760999953, 50.288427818000102 ], [ -118.888327495999974, 50.288417412000037 ], [ -118.885771471999988, 50.28841158900012 ], [ -118.884573920999912, 50.288408836000031 ], [ -118.885004094999942, 50.285677699000161 ], [ -118.89032764399991, 50.286021318000031 ], [ -118.890453183, 50.285223621000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463750", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "517", "sL_BldgLoss": "517", "sL_StrLoss": "517", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AFE57C4ECDB95DC0B238526C3B224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.900644933999942, 50.265470103000048 ], [ -118.906228567999946, 50.265829875000115 ], [ -118.90566712499999, 50.269406757000112 ], [ -118.900083055999986, 50.269046959000065 ], [ -118.900644933999942, 50.265470103000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "43.9", "sL_BldgLoss": "43.9", "sL_StrLoss": "43.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009A406CBFFB75DC00B01F1A161204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.871778746999922, 50.254374301000041 ], [ -118.872194614999955, 50.251736669000088 ], [ -118.872262063999955, 50.251742307000043 ], [ -118.872285988999948, 50.251744292000105 ], [ -118.87270689799999, 50.251739112000109 ], [ -118.874092280999946, 50.251580293000075 ], [ -118.874817131999933, 50.251456407000084 ], [ -118.875307254999882, 50.251372609000043 ], [ -118.876460798999943, 50.25117540700009 ], [ -118.877054004999948, 50.251114392000026 ], [ -118.877454107999981, 50.251128317000045 ], [ -118.877924278999899, 50.251158732000114 ], [ -118.877360784999908, 50.254735536000105 ], [ -118.871778746999922, 50.254374301000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5577500", "BldgCostT": "3350000", "sL_LossRatio": "0.98673828883739", "sL_AssetLoss": "149.302", "sL_BldgLoss": "147.322", "sL_StrLoss": "146.6", "sL_NStrLoss": "0.722", "sL_ContLoss": "1.98", "geom_point": "0101000020E61000005F826CBC68B75DC0C58BC73D44204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.865359083999962, 50.253413525000042 ], [ -118.865433898999981, 50.25293945800005 ], [ -118.865262500999961, 50.252928351000087 ], [ -118.86522747099994, 50.253150316000102 ], [ -118.859645723999918, 50.252788467000116 ], [ -118.859911210999925, 50.251107484000059 ], [ -118.863687763999934, 50.250713779000073 ], [ -118.863914714999936, 50.250690128000031 ], [ -118.865243784999961, 50.250551547000036 ], [ -118.865343019999926, 50.250541198000121 ], [ -118.866163101, 50.250480603000092 ], [ -118.866697488999975, 50.250506190000053 ], [ -118.867496118999952, 50.250653689000053 ], [ -118.871079106999943, 50.251593883000112 ], [ -118.871279057999942, 50.251630914000053 ], [ -118.870940952999916, 50.253775086000061 ], [ -118.865359083999962, 50.253413525000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "82.3", "sL_BldgLoss": "82.3", "sL_StrLoss": "82.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051F2B07139BD5DC0D202939F7D204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.955304960999982, 50.255083623000139 ], [ -118.955353910999946, 50.254769481000054 ], [ -118.954927671999926, 50.254742212000039 ], [ -118.954973874999951, 50.254445701000122 ], [ -118.954861488999896, 50.254438511000046 ], [ -118.95490487099994, 50.254160116000037 ], [ -118.954523297999941, 50.254135702000035 ], [ -118.954644611999967, 50.25335720300005 ], [ -118.954491449999935, 50.253347403000092 ], [ -118.954550645999973, 50.252967524 ], [ -118.954343147999964, 50.252954247000048 ], [ -118.954292368999972, 50.252950998000109 ], [ -118.954298305999941, 50.252912898000055 ], [ -118.951374781, 50.252725789000074 ], [ -118.95763253199999, 50.252354104000041 ], [ -118.957546098999927, 50.252791111000093 ], [ -118.957554294999909, 50.252918997000023 ], [ -118.957631415999913, 50.253012495000064 ], [ -118.957772291999987, 50.253175917000085 ], [ -118.957858286999937, 50.253246289000025 ], [ -118.959184408999974, 50.253535515000067 ], [ -118.959340204999975, 50.253506714000139 ], [ -118.95964700799999, 50.253450024000081 ], [ -118.959270181999955, 50.253757278000052 ], [ -118.959047880999961, 50.254195955000043 ], [ -118.959193802999906, 50.255078079000057 ], [ -118.959359536999926, 50.255342938000027 ], [ -118.955304960999982, 50.255083623000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463750", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "341.7", "sL_BldgLoss": "341.7", "sL_StrLoss": "341.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000924A25FAC4B55DC092B1B9EED6204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.846513306999924, 50.253784334000066 ], [ -118.848130879999957, 50.253329153000088 ], [ -118.847831528999947, 50.25522130700007 ], [ -118.842823157999959, 50.254895860000047 ], [ -118.84251149, 50.256864323000038 ], [ -118.840171170999923, 50.25671216800005 ], [ -118.839827684999946, 50.258880678000097 ], [ -118.834245434999971, 50.258517548000057 ], [ -118.834490457999962, 50.256971880000066 ], [ -118.834905316999979, 50.256830296000061 ], [ -118.835439482999945, 50.256688915000097 ], [ -118.83592066099996, 50.256596728000041 ], [ -118.837129102999953, 50.256365192000032 ], [ -118.838667575, 50.256035431000072 ], [ -118.83920149199993, 50.255920993000124 ], [ -118.840070314999977, 50.255705596000013 ], [ -118.84089062, 50.255453606000088 ], [ -118.84297648799999, 50.254812804000068 ], [ -118.844264106999944, 50.254417196000126 ], [ -118.84621291399999, 50.253868872000112 ], [ -118.846513306999924, 50.253784334000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26238916", "BldgCostT": "15676666", "sL_LossRatio": "0.996737021576812", "sL_AssetLoss": "1020.54", "sL_BldgLoss": "1017.21", "sL_StrLoss": "1016", "sL_NStrLoss": "1.21", "sL_ContLoss": "3.33", "geom_point": "0101000020E6100000A0BD9FBF75BD5DC0EF7FD3FD14224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.957560721999954, 50.270146125000053 ], [ -118.957701919999963, 50.269239974000136 ], [ -118.954573130999989, 50.269039899000028 ], [ -118.954553074, 50.26903089299999 ], [ -118.954552197999945, 50.269038560000126 ], [ -118.954061272999965, 50.26900715900004 ], [ -118.954503410999919, 50.266170903000031 ], [ -118.95277342899999, 50.266060230000043 ], [ -118.953331114999969, 50.262483093000121 ], [ -118.953995137999939, 50.262525577000083 ], [ -118.954300479999958, 50.260566611000101 ], [ -118.959883932999972, 50.260923674000026 ], [ -118.959669317999968, 50.262301680000071 ], [ -118.959441601999956, 50.262311495000041 ], [ -118.95950879899999, 50.262579198000061 ], [ -118.95886090099998, 50.262500909 ], [ -118.958350519999925, 50.262698800000102 ], [ -118.957491013, 50.262613408000057 ], [ -118.956982495999981, 50.262882587000043 ], [ -118.956908089, 50.263127507000043 ], [ -118.957120277999962, 50.263529198000064 ], [ -118.95763868099999, 50.263833901000069 ], [ -118.957698577, 50.263950695000105 ], [ -118.957344010999947, 50.264523304000072 ], [ -118.957568802, 50.26489781200015 ], [ -118.957699880999954, 50.264976194000099 ], [ -118.957893810999934, 50.264954796000069 ], [ -118.958166299999974, 50.264752502000078 ], [ -118.958635519999987, 50.26463304800005 ], [ -118.958560161999955, 50.265116788000107 ], [ -118.958704465999986, 50.265126013000071 ], [ -118.958604007999966, 50.265149910000119 ], [ -118.958220209999951, 50.265344984000123 ], [ -118.958006192999932, 50.265609908000094 ], [ -118.958101096999926, 50.265869102000096 ], [ -118.958039010999926, 50.266077089000056 ], [ -118.957508291999929, 50.266148307 ], [ -118.956262793999912, 50.266582702000072 ], [ -118.955894292999957, 50.266841896000074 ], [ -118.955920797999951, 50.267128092000029 ], [ -118.956376393999946, 50.267606690000058 ], [ -118.956045398999919, 50.268106601000085 ], [ -118.956446817999961, 50.26794699800012 ], [ -118.956646497999927, 50.267683589000086 ], [ -118.956649997999975, 50.26744860200008 ], [ -118.956268494999961, 50.267032712000066 ], [ -118.956540181999983, 50.266803398000064 ], [ -118.958285691999947, 50.26627930800003 ], [ -118.9583783, 50.26612550000003 ], [ -118.958275690999983, 50.265712508000028 ], [ -118.958352512999966, 50.265513102000057 ], [ -118.958739300999937, 50.265344986000052 ], [ -118.959228389000018, 50.265300914000065 ], [ -118.959444210999948, 50.265173302000051 ], [ -118.960912589999936, 50.265267154000107 ], [ -118.96079795899999, 50.266003228000031 ], [ -118.962975340999932, 50.266142359000177 ], [ -118.963010703999927, 50.265915222000103 ], [ -118.963577867999916, 50.265951455000042 ], [ -118.963605486999924, 50.265774035000071 ], [ -118.963940883999939, 50.265795461000081 ], [ -118.96416594099999, 50.264349645000109 ], [ -118.965470339999982, 50.264432961000075 ], [ -118.965669643999931, 50.263152276000071 ], [ -118.966504935, 50.263205621000033 ], [ -118.966843709999949, 50.261028297000138 ], [ -118.967202909999941, 50.261051235000075 ], [ -118.967389365999949, 50.259852723000066 ], [ -118.96553821, 50.259734496000043 ], [ -118.96609481099992, 50.25615726700012 ], [ -118.967132517999985, 50.256223546000093 ], [ -118.967157570999959, 50.256062492000112 ], [ -118.967371189999966, 50.256076135000036 ], [ -118.967427050999945, 50.255717016000112 ], [ -118.969591666000028, 50.255730463000091 ], [ -118.969576884999952, 50.255787194000035 ], [ -118.969474711999951, 50.256027302000078 ], [ -118.969261624999945, 50.25630949200017 ], [ -118.969089492999984, 50.256537392000098 ], [ -118.968969577999957, 50.25678260500009 ], [ -118.968946704999951, 50.257065610000062 ], [ -118.969062592999947, 50.257633760000047 ], [ -118.969114710999989, 50.257889192000036 ], [ -118.969122014999925, 50.258503906000101 ], [ -118.969119512999967, 50.258946300000083 ], [ -118.969192315999948, 50.259230004000067 ], [ -118.969426304999956, 50.259747103000038 ], [ -118.969529226999981, 50.260073402000032 ], [ -118.969540885999962, 50.260227416000085 ], [ -118.969575409999933, 50.260682391000046 ], [ -118.969491991999945, 50.261264193000031 ], [ -118.969458857999896, 50.261357385000053 ], [ -118.969274001999921, 50.261877105000089 ], [ -118.969226481999954, 50.261945233000134 ], [ -118.969087083999938, 50.262145101000037 ], [ -118.968672886999983, 50.262569407000029 ], [ -118.968579203999951, 50.262718702000072 ], [ -118.968518899999978, 50.263015607000064 ], [ -118.968587494999895, 50.263408383000112 ], [ -118.969185899999971, 50.26428381000003 ], [ -118.969206318999909, 50.264441399000098 ], [ -118.969216014000025, 50.264516092000072 ], [ -118.969080765999962, 50.264870687000013 ], [ -118.968878007999976, 50.265402189000056 ], [ -118.96894490899993, 50.266277098000053 ], [ -118.968924601999944, 50.266434804000021 ], [ -118.968815470999942, 50.266602198000072 ], [ -118.968804241, 50.26661949500005 ], [ -118.968432058999937, 50.266882039000038 ], [ -118.96794719899998, 50.267071450000081 ], [ -118.96515339599992, 50.267592132000118 ], [ -118.964779330999988, 50.267689181999984 ], [ -118.964645002999944, 50.267724034000018 ], [ -118.964208844999973, 50.267908435000045 ], [ -118.963789447999901, 50.268157108000025 ], [ -118.959877351999978, 50.270977096000088 ], [ -118.95952758599999, 50.271294336000032 ], [ -118.959388836999963, 50.271475111 ], [ -118.959302919999956, 50.2715870420001 ], [ -118.959117430999939, 50.272014107000146 ], [ -118.958610209999918, 50.273182072000104 ], [ -118.958419279999987, 50.273439003000092 ], [ -118.957816724999958, 50.274066145000148 ], [ -118.957471965999957, 50.274423432000063 ], [ -118.957102661999912, 50.274774730000082 ], [ -118.956285653999956, 50.275429630000083 ], [ -118.955763361999914, 50.276129626000049 ], [ -118.955393541999953, 50.27649341700009 ], [ -118.95522150499994, 50.276630877000137 ], [ -118.95313623499996, 50.276497518000028 ], [ -118.953694019999972, 50.27292042800007 ], [ -118.95387753599999, 50.272932166000061 ], [ -118.954263832000024, 50.270454435000048 ], [ -118.955207191999989, 50.270514770000027 ], [ -118.955287313999975, 50.270000757000041 ], [ -118.957560721999954, 50.270146125000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41.8", "sL_BldgLoss": "41.8", "sL_StrLoss": "41.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8B49424F6B95DC0D682079B74214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.903231796999961, 50.262530212000051 ], [ -118.903221046999988, 50.262260552000058 ], [ -118.902800384999949, 50.262267442000081 ], [ -118.902768144999953, 50.261458461000046 ], [ -118.905292083999939, 50.26141710000006 ], [ -118.90527056199997, 50.26087778100004 ], [ -118.905691212999983, 50.260870882000113 ], [ -118.905680450999938, 50.260601221000066 ], [ -118.9061011, 50.260594321000092 ], [ -118.906090334999959, 50.260324661000027 ], [ -118.906510978999918, 50.260317760000078 ], [ -118.906500213999962, 50.260048100000041 ], [ -118.908182786999987, 50.260020479000062 ], [ -118.90818657199992, 50.260115217000127 ], [ -118.908215116999912, 50.260829457000099 ], [ -118.907794465999956, 50.260836365000138 ], [ -118.907805241999966, 50.26110602500011 ], [ -118.906963934999936, 50.261119836000113 ], [ -118.90699624599999, 50.26192881500004 ], [ -118.90657558699999, 50.261935719000064 ], [ -118.906586352999966, 50.262205379000129 ], [ -118.905846581999953, 50.262217516000092 ], [ -118.904483038999942, 50.262239874000045 ], [ -118.904493794999937, 50.262509533000113 ], [ -118.903231796999961, 50.262530212000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19038161", "BldgCostT": "11185743", "sL_LossRatio": "0.989209809264305", "sL_AssetLoss": "458.75", "sL_BldgLoss": "453.8", "sL_StrLoss": "452", "sL_NStrLoss": "1.8", "sL_ContLoss": "4.95", "geom_point": "0101000020E6100000891288322FB95DC0B4C4B1CBC3204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.894330952999937, 50.254237150000066 ], [ -118.894546465999937, 50.252865936 ], [ -118.89309871099999, 50.252772498000084 ], [ -118.893149617999939, 50.252448655000116 ], [ -118.89140688, 50.252336152000041 ], [ -118.891687432999959, 50.25055175799999 ], [ -118.891876694999951, 50.250618012000089 ], [ -118.892251470999952, 50.250758175000065 ], [ -118.893056202999958, 50.251059088000034 ], [ -118.893092123999978, 50.251069428000051 ], [ -118.894542602999948, 50.251485587000069 ], [ -118.895450602999972, 50.251666483000079 ], [ -118.895770020999962, 50.251730105000021 ], [ -118.896105399999968, 50.251772896000041 ], [ -118.896944608999945, 50.251880011000061 ], [ -118.898105191999932, 50.251957602000083 ], [ -118.89838683, 50.25195303700005 ], [ -118.90087776799993, 50.251912631000103 ], [ -118.900478573, 50.254454813000059 ], [ -118.899940967999967, 50.254420148000065 ], [ -118.899624044999911, 50.256438027000065 ], [ -118.896604595999989, 50.256243285000032 ], [ -118.896331787999912, 50.257979398000082 ], [ -118.895179168999945, 50.257905037000022 ], [ -118.89481574499996, 50.260217227000105 ], [ -118.892585750999928, 50.260073324000132 ], [ -118.892568446000013, 50.260183377 ], [ -118.892344373999919, 50.260168916000097 ], [ -118.892280254999946, 50.260576683000103 ], [ -118.890724994999943, 50.260476291 ], [ -118.886697379999973, 50.260216204000116 ], [ -118.887260205999965, 50.256639376000052 ], [ -118.887484258999962, 50.256653849000067 ], [ -118.88754841399999, 50.256246082000075 ], [ -118.887764128999962, 50.25626001600012 ], [ -118.887845328999944, 50.25574388800009 ], [ -118.888151318999959, 50.255763652000049 ], [ -118.888313563999986, 50.254732296000036 ], [ -118.891174122999956, 50.254917015000096 ], [ -118.891311672999933, 50.254042262000041 ], [ -118.894330952999937, 50.254237150000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "71.4", "sL_BldgLoss": "71.4", "sL_StrLoss": "71.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000662BD43FEDB35DC025D9550E4E224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.809867093999941, 50.266083473000016 ], [ -118.813510087999973, 50.266321255000079 ], [ -118.812941326, 50.269897660000055 ], [ -118.80902634899995, 50.269642121000054 ], [ -118.809412592999976, 50.268405810000054 ], [ -118.809511076999925, 50.267902681000102 ], [ -118.809867093999941, 50.266083473000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "75", "sL_BldgLoss": "75", "sL_StrLoss": "75", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007A38FDB090BC5DC0B7D1DFCF19204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.948517935000027, 50.249301446000096 ], [ -118.948639629999946, 50.249276881000064 ], [ -118.94869153, 50.24944041800007 ], [ -118.948717954999935, 50.24988146300003 ], [ -118.948732921999976, 50.250224707 ], [ -118.948813801999933, 50.252079456000025 ], [ -118.943422966999918, 50.251734099000039 ], [ -118.943715115999936, 50.249862126000032 ], [ -118.944115575999945, 50.249822277000078 ], [ -118.946333570999982, 50.249698834000078 ], [ -118.94651659299997, 50.249676190000031 ], [ -118.946886877999987, 50.249630404000079 ], [ -118.94715903599996, 50.249575521000089 ], [ -118.948517935000027, 50.249301446000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5377167", "BldgCostT": "3236667", "sL_LossRatio": "1", "sL_AssetLoss": "171.3", "sL_BldgLoss": "171.3", "sL_StrLoss": "171.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000974CDBE040BA5DC0F7A8A6C140224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.907927136999973, 50.265143068000079 ], [ -118.913510787999897, 50.265502472000065 ], [ -118.912949923999946, 50.269079392000023 ], [ -118.912649561999942, 50.269060066000065 ], [ -118.912492858999926, 50.27005930100006 ], [ -118.906908653999892, 50.269699847000048 ], [ -118.907470002999958, 50.266122960000089 ], [ -118.907770343, 50.266142300000105 ], [ -118.907927136999973, 50.265143068000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5401333", "BldgCostT": "3253333", "sL_LossRatio": "1", "sL_AssetLoss": "181.7", "sL_BldgLoss": "181.7", "sL_StrLoss": "181.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BE9FB5F24B85DC0ACD8EB1FBC244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.87586791699999, 50.285237090000138 ], [ -118.881453787999988, 50.285598105000062 ], [ -118.881012157999976, 50.288400570000093 ], [ -118.878626108999967, 50.28839496800002 ], [ -118.87537107799993, 50.288387272000065 ], [ -118.875018346, 50.288386430000074 ], [ -118.874835573999945, 50.288385980000029 ], [ -118.872154185999989, 50.288379542000072 ], [ -118.872261236999961, 50.28770111500009 ], [ -118.873102050999975, 50.287755499000056 ], [ -118.87340749099998, 50.285819435000093 ], [ -118.875752167999934, 50.285971058000072 ], [ -118.87586791699999, 50.285237090000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "205.3", "sL_BldgLoss": "205.3", "sL_StrLoss": "205.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008A34754714BB5DC0E4F90CA8B7244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.922661804999933, 50.288281711000138 ], [ -118.9221479099999, 50.288140298000016 ], [ -118.921850595999956, 50.288018788000024 ], [ -118.921445194999933, 50.28785310800005 ], [ -118.920546705999939, 50.287357302000089 ], [ -118.9203284929999, 50.287264712000159 ], [ -118.919839396999947, 50.287135815000084 ], [ -118.919553542999907, 50.287089658000056 ], [ -118.91944137299997, 50.287071552000043 ], [ -118.919327611999933, 50.287053198000095 ], [ -118.916670180999972, 50.286736636000093 ], [ -118.915807030999972, 50.286633801000107 ], [ -118.916097594999925, 50.284780803000032 ], [ -118.92168373, 50.285139785000055 ], [ -118.921577552999977, 50.285817443000099 ], [ -118.921791471999896, 50.285831184000088 ], [ -118.921773745999928, 50.285944321000038 ], [ -118.924401390999918, 50.286113077000039 ], [ -118.924411663999948, 50.286047495000048 ], [ -118.927959703999974, 50.286275260000131 ], [ -118.927694399999936, 50.286390603000079 ], [ -118.927543499999928, 50.286527294000045 ], [ -118.927483398999925, 50.28677080100011 ], [ -118.927549976999899, 50.287004393000096 ], [ -118.927740689999936, 50.287189508000068 ], [ -118.928164315999965, 50.28726359400013 ], [ -118.927937197999952, 50.286853413000131 ], [ -118.928208733999938, 50.286291242000082 ], [ -118.929998019999957, 50.286406056000018 ], [ -118.929607096999973, 50.288903857000051 ], [ -118.928109248999988, 50.288626423000061 ], [ -118.928016307999954, 50.28860920000006 ], [ -118.92658892299994, 50.288613955000073 ], [ -118.924470801, 50.288620987000073 ], [ -118.92392897799999, 50.288567193000105 ], [ -118.923495023999948, 50.28846942100008 ], [ -118.923281177999925, 50.288421241000052 ], [ -118.923092058999899, 50.288378635000072 ], [ -118.922661804999933, 50.288281711000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "90.8", "sL_BldgLoss": "90.8", "sL_StrLoss": "90.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003DBEF7165AB75DC0228680F0DF244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.863963400999964, 50.286643788000013 ], [ -118.868281845999917, 50.286923374000075 ], [ -118.868032832999987, 50.288500596000084 ], [ -118.86785961699999, 50.288532992000064 ], [ -118.866183382999935, 50.2889177140001 ], [ -118.865319888999963, 50.289186094000108 ], [ -118.863998194999922, 50.289666910000065 ], [ -118.862570665999925, 50.290166751000072 ], [ -118.862130779000012, 50.290138259000088 ], [ -118.862695915999936, 50.286561694000028 ], [ -118.863963400999964, 50.286643788000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.3", "sL_BldgLoss": "44.3", "sL_StrLoss": "44.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3312781B0BD5DC02EBB92AA8E204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.961979797999973, 50.255482427000125 ], [ -118.962152640999975, 50.252959285000081 ], [ -118.96284504299993, 50.252934329000034 ], [ -118.96289812599997, 50.253078150000071 ], [ -118.963449906999983, 50.253094245000085 ], [ -118.963476822999937, 50.252926694000109 ], [ -118.964956329999936, 50.253220249000094 ], [ -118.965373780999983, 50.25330307900002 ], [ -118.965369612999964, 50.253481217000122 ], [ -118.96588954799999, 50.253453486000119 ], [ -118.96573389299999, 50.255611881000078 ], [ -118.965397669999973, 50.255590402000031 ], [ -118.96538065699994, 50.255699734000061 ], [ -118.961979797999973, 50.255482427000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8462911", "BldgCostT": "4860743", "sL_LossRatio": "1", "sL_AssetLoss": "117.9", "sL_BldgLoss": "117.9", "sL_StrLoss": "117.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B494A8EEBCB45DC02F487EEDAE254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.822984290999926, 50.295674490000124 ], [ -118.823057478999928, 50.295213944000075 ], [ -118.822859044999959, 50.295201021000018 ], [ -118.82279692699997, 50.295591896000133 ], [ -118.820653917999962, 50.294647189000045 ], [ -118.820695507999957, 50.294473694000068 ], [ -118.820639501999921, 50.294275905000092 ], [ -118.82052959499994, 50.294124216000064 ], [ -118.819997193999896, 50.293674007000064 ], [ -118.819951621999934, 50.293614182000098 ], [ -118.819928316999963, 50.293583598000062 ], [ -118.819902423999977, 50.293391407000072 ], [ -118.819947698999897, 50.293142297000053 ], [ -118.820080142999927, 50.29286451600008 ], [ -118.82017620399999, 50.292662991000043 ], [ -118.820165213999985, 50.292510609000047 ], [ -118.820074308999921, 50.292354705000101 ], [ -118.819744008999947, 50.292036004000039 ], [ -118.819509583999974, 50.291930295 ], [ -118.819234491999964, 50.291912389000096 ], [ -118.819215347999901, 50.291912004000054 ], [ -118.818438766999961, 50.291896389000037 ], [ -118.818532671999975, 50.291305804000025 ], [ -118.824118832999929, 50.291669713000083 ], [ -118.823717707999919, 50.294194329000071 ], [ -118.828811159999987, 50.294525887000091 ], [ -118.828259548999938, 50.29799960900003 ], [ -118.826736735999958, 50.297328466000074 ], [ -118.823397950999933, 50.295856832000077 ], [ -118.823208354999949, 50.295773277000087 ], [ -118.823009422999959, 50.295685567000049 ], [ -118.822984290999926, 50.295674490000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7494750", "BldgCostT": "4905000", "sL_LossRatio": "1", "sL_AssetLoss": "737", "sL_BldgLoss": "737", "sL_StrLoss": "737", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000450AA7FDBDB85DC0DC0AA351E8224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.884103060999934, 50.276833698000054 ], [ -118.884326895999905, 50.275412344000124 ], [ -118.882599611999922, 50.275300760000057 ], [ -118.883162946999974, 50.271724022000015 ], [ -118.88347741299998, 50.271744339000051 ], [ -118.883520845999897, 50.27146852900006 ], [ -118.884401704999902, 50.271525435000093 ], [ -118.884415645999979, 50.27143689100005 ], [ -118.882968192999968, 50.271343378000033 ], [ -118.883531450999939, 50.267766621000128 ], [ -118.885029052999968, 50.267863374000029 ], [ -118.889115229999931, 50.268127256000128 ], [ -118.888566767999947, 50.271612799000138 ], [ -118.890014242999882, 50.271706238000057 ], [ -118.889816496000023, 50.272963051000083 ], [ -118.891001197999927, 50.273039513000128 ], [ -118.890438463999956, 50.276616284000021 ], [ -118.890435320999941, 50.276616081000071 ], [ -118.890358786999911, 50.27710248500005 ], [ -118.889709010999965, 50.277060549000062 ], [ -118.88968796399999, 50.277194300000104 ], [ -118.884578936999901, 50.276864435000093 ], [ -118.884103060999934, 50.276833698000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9683333", "BldgCostT": "5708333", "sL_LossRatio": "0.968962197223067", "sL_AssetLoss": "789.36", "sL_BldgLoss": "764.86", "sL_StrLoss": "756", "sL_NStrLoss": "8.86", "sL_ContLoss": "24.5", "geom_point": "0101000020E6100000E2397C4E91BB5DC0220A9886821E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.933263327999896, 50.242547836000078 ], [ -118.933316493999953, 50.242207596000128 ], [ -118.932633030999966, 50.242163719000068 ], [ -118.932754471999914, 50.24138661500011 ], [ -118.927368221, 50.24104067400004 ], [ -118.92759071299993, 50.239617961000135 ], [ -118.927581724, 50.239617384000042 ], [ -118.927705053999929, 50.238828724000022 ], [ -118.927307468999928, 50.238803178000069 ], [ -118.927509175999973, 50.23751331900003 ], [ -118.926456230999989, 50.237445657000094 ], [ -118.927015639999951, 50.233868522000037 ], [ -118.931332227999945, 50.234145844000047 ], [ -118.93133255199993, 50.234143768000152 ], [ -118.93031749599993, 50.234078571000133 ], [ -118.930553945999961, 50.232565710000074 ], [ -118.930891784999972, 50.232729792000036 ], [ -118.93092527499999, 50.232755498000053 ], [ -118.931212599999952, 50.232976192000081 ], [ -118.931293595999946, 50.233097898000082 ], [ -118.931301588999929, 50.233120648000053 ], [ -118.931321147999924, 50.233176214000125 ], [ -118.931368701999986, 50.233311410000091 ], [ -118.931364354, 50.234187957000096 ], [ -118.93135286199994, 50.236498858000068 ], [ -118.931352718999946, 50.236531226000075 ], [ -118.931346481999967, 50.237781198000079 ], [ -118.931334536999927, 50.237908705000031 ], [ -118.93131333499997, 50.238134576000064 ], [ -118.93129770599991, 50.238301005000089 ], [ -118.931351416, 50.238669396000091 ], [ -118.931388387999959, 50.240159761000093 ], [ -118.931391188999939, 50.240272500000067 ], [ -118.931461105999958, 50.240537109000059 ], [ -118.931507695999983, 50.240604541000053 ], [ -118.931547302999903, 50.240661903000046 ], [ -118.931809597999987, 50.240877482000073 ], [ -118.931976510999931, 50.240963205000128 ], [ -118.932387318999943, 50.241085303000013 ], [ -118.932966813999954, 50.241118903000029 ], [ -118.934613185999936, 50.241107094000043 ], [ -118.935257815999933, 50.241130388000059 ], [ -118.935658522999972, 50.241181408000024 ], [ -118.937135686999909, 50.241449686000081 ], [ -118.937642178999909, 50.241473091000067 ], [ -118.938316352999962, 50.24143077300004 ], [ -118.93839985999989, 50.241425536000094 ], [ -118.938598724, 50.241413055000066 ], [ -118.938830593999938, 50.241398513 ], [ -118.939080023999935, 50.24139686600008 ], [ -118.938844398999962, 50.242905970000045 ], [ -118.933263327999896, 50.242547836000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "29.5", "sL_BldgLoss": "29.5", "sL_StrLoss": "29.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB01921BCBB35DC0DBC2F35231264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.808338927999941, 50.299643744000086 ], [ -118.80834781199998, 50.299587955000035 ], [ -118.807781913999989, 50.299551028000032 ], [ -118.808297172000024, 50.296315663000087 ], [ -118.80865164299999, 50.29654363300007 ], [ -118.80904142599999, 50.296794303000134 ], [ -118.810283316999971, 50.297503199000111 ], [ -118.810603299999968, 50.297771596000075 ], [ -118.810626291999952, 50.297832765000088 ], [ -118.810727187999959, 50.29810130400007 ], [ -118.810747258999967, 50.298614623000098 ], [ -118.810778828, 50.299423635000039 ], [ -118.810792786999954, 50.299781216000028 ], [ -118.810797464999922, 50.29980413700013 ], [ -118.808338927999941, 50.299643744000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4744584", "BldgCostT": "3008334", "sL_LossRatio": "1", "sL_AssetLoss": "523.8", "sL_BldgLoss": "523.8", "sL_StrLoss": "523.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006166862AC8AE5DC0A0F3BF01521A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.728880074999921, 50.2073519200001 ], [ -118.728897599999968, 50.2072428520001 ], [ -118.726904721999944, 50.207111066000053 ], [ -118.72716851199999, 50.205469765000089 ], [ -118.72747947299996, 50.203534817000062 ], [ -118.733054103999947, 50.203903367000095 ], [ -118.733036589999955, 50.204012436 ], [ -118.735029350999966, 50.204144112000087 ], [ -118.734652633999929, 50.206490623000057 ], [ -118.734455185999963, 50.207720398000106 ], [ -118.728880074999921, 50.2073519200001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2895833", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "418.7", "sL_BldgLoss": "418.7", "sL_StrLoss": "418.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004F2B5CC17CB65DC0C9222CAE1A204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.849275958999954, 50.249302495000038 ], [ -118.854857193999948, 50.249664870000082 ], [ -118.854624, 50.251140396 ], [ -118.854570699999925, 50.251137106000023 ], [ -118.854248698999982, 50.251140607000067 ], [ -118.853615693999984, 50.251203405000034 ], [ -118.853025789999919, 50.251341299000089 ], [ -118.852944869999973, 50.2513706820001 ], [ -118.852476986999989, 50.251540484000017 ], [ -118.851373280999908, 50.252069133000106 ], [ -118.850143405999958, 50.252658198000113 ], [ -118.849449461999939, 50.252927175000096 ], [ -118.848710228999963, 50.252879162000106 ], [ -118.849275958999954, 50.249302495000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8227333", "BldgCostT": "4783333", "sL_LossRatio": "0.970579813886901", "sL_AssetLoss": "139.7", "sL_BldgLoss": "135.59", "sL_StrLoss": "134.1", "sL_NStrLoss": "1.49", "sL_ContLoss": "4.11", "geom_point": "0101000020E6100000C558855179B45DC0422B07E543214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.812738628999981, 50.262132242000092 ], [ -118.813307309999942, 50.258555803 ], [ -118.818889394999928, 50.258919990000095 ], [ -118.818785806, 50.259572014000113 ], [ -118.822239979999949, 50.259797229000064 ], [ -118.822530241999971, 50.257969311000068 ], [ -118.828112329999925, 50.258333033000021 ], [ -118.828004643999961, 50.259011727000129 ], [ -118.828581861999936, 50.259049321000063 ], [ -118.828535623999969, 50.259340755000018 ], [ -118.827469487999963, 50.259691409 ], [ -118.825145542999948, 50.260411994000023 ], [ -118.823383779999972, 50.260958198000026 ], [ -118.822221894999984, 50.261296197 ], [ -118.82168290199999, 50.261369483000117 ], [ -118.821402097, 50.261379201000096 ], [ -118.820840910999948, 50.26134350300002 ], [ -118.820024906999961, 50.261199106000113 ], [ -118.819785209999949, 50.261128846000098 ], [ -118.819275809999979, 50.260979501000087 ], [ -118.818783395999986, 50.260866096000086 ], [ -118.818276920999921, 50.260796902000017 ], [ -118.81776251, 50.260785912000124 ], [ -118.817227091999925, 50.260827790000128 ], [ -118.816472175999976, 50.260990797000069 ], [ -118.815872410999958, 50.261189284000075 ], [ -118.81524811599995, 50.261524405000088 ], [ -118.814163575999913, 50.262225236000042 ], [ -118.812738628999981, 50.262132242000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4320833", "BldgCostT": "2483333", "sL_LossRatio": "1", "sL_AssetLoss": "58.8", "sL_BldgLoss": "58.8", "sL_StrLoss": "58.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084BE70BE03B35DC062978F41FA284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.795884991999941, 50.3230799480001 ], [ -118.796345037999984, 50.320197677000102 ], [ -118.795856389999955, 50.320165754000072 ], [ -118.796427131999948, 50.316589666000048 ], [ -118.798769706999934, 50.316742690000076 ], [ -118.798041681999933, 50.317630106000109 ], [ -118.797877193999966, 50.317952707000067 ], [ -118.797750714, 50.318435798000067 ], [ -118.797183989999922, 50.319218197000055 ], [ -118.797164661999915, 50.319477281000012 ], [ -118.797155488, 50.319600199000028 ], [ -118.797505413999943, 50.32095094500005 ], [ -118.797656098999965, 50.321532606000105 ], [ -118.797854921999928, 50.32176297900002 ], [ -118.798021972999919, 50.321956513000046 ], [ -118.798111388999956, 50.322060104 ], [ -118.798872608999943, 50.322660884000094 ], [ -118.799006281999937, 50.322805102000082 ], [ -118.799299738999963, 50.323302976000015 ], [ -118.795884991999941, 50.3230799480001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13535116", "BldgCostT": "7913879", "sL_LossRatio": "1", "sL_AssetLoss": "1207.2", "sL_BldgLoss": "1207.2", "sL_StrLoss": "1207.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008286FE092EB55DC03BA583F57F1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.826147554999963, 50.218557106000155 ], [ -118.82623701299994, 50.217992916000121 ], [ -118.825925485999932, 50.217972601000099 ], [ -118.826005380999931, 50.217468730000043 ], [ -118.825695114999945, 50.217448496000038 ], [ -118.825753478999971, 50.217080418000087 ], [ -118.825552234999947, 50.217067293000099 ], [ -118.825559187999957, 50.21702344100008 ], [ -118.823980187999936, 50.216920449000014 ], [ -118.824192344999958, 50.215582745000155 ], [ -118.824547418999913, 50.213343742000085 ], [ -118.825841704999945, 50.213428166000021 ], [ -118.825909578999969, 50.213000072000106 ], [ -118.831155373999948, 50.213342087000065 ], [ -118.831583961999939, 50.210636695000048 ], [ -118.837160302999948, 50.210999983000086 ], [ -118.836851083999932, 50.212953423000059 ], [ -118.83730193299999, 50.212982782000097 ], [ -118.837172515999939, 50.213800361000047 ], [ -118.836735712999911, 50.216559556000092 ], [ -118.832146253999966, 50.216260604000112 ], [ -118.831724825999956, 50.218920663000048 ], [ -118.826147554999963, 50.218557106000155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020678", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4413750", "BldgCostT": "2625000", "sL_LossRatio": "0.96024827393821", "sL_AssetLoss": "114.712", "sL_BldgLoss": "110.152", "sL_StrLoss": "108.5", "sL_NStrLoss": "1.652", "sL_ContLoss": "4.56", "geom_point": "0101000020E6100000CAD6C07757B75DC049384615F21F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.859911210999925, 50.251107484000059 ], [ -118.860210589999923, 50.249211744000071 ], [ -118.860948919999913, 50.249259624000089 ], [ -118.861215737999942, 50.247569762000118 ], [ -118.866796853999986, 50.247931534000074 ], [ -118.866709933999928, 50.248482484000135 ], [ -118.867184380999916, 50.248513225000124 ], [ -118.866964927999945, 50.249904254000107 ], [ -118.871504940999927, 50.250198309000069 ], [ -118.871279057999942, 50.251630914000053 ], [ -118.871079106999943, 50.251593883000112 ], [ -118.867496118999952, 50.250653689000053 ], [ -118.866697488999975, 50.250506190000053 ], [ -118.866163101, 50.250480603000092 ], [ -118.865343019999926, 50.250541198000121 ], [ -118.865243784999961, 50.250551547000036 ], [ -118.863914714999936, 50.250690128000031 ], [ -118.863687763999934, 50.250713779000073 ], [ -118.859911210999925, 50.251107484000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4785083", "BldgCostT": "2828333", "sL_LossRatio": "1", "sL_AssetLoss": "86.2", "sL_BldgLoss": "86.2", "sL_StrLoss": "86.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005517E8C17AAB5DC06DD795E09E184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.676870394, 50.190374936000104 ], [ -118.682442999, 50.190746049000083 ], [ -118.681864862999959, 50.194322124000102 ], [ -118.676291825999968, 50.193950982000061 ], [ -118.676870394, 50.190374936000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2255417", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "308.6", "sL_BldgLoss": "308.6", "sL_StrLoss": "308.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000097207E5935B35DC06F1139F9842A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.79922086699996, 50.330019163000117 ], [ -118.800196910999944, 50.330082883000053 ], [ -118.800279797999949, 50.330285612000111 ], [ -118.801215816, 50.33158880200007 ], [ -118.801381105999909, 50.331924799000021 ], [ -118.801664098999964, 50.332832993000054 ], [ -118.801804976999961, 50.333516998000043 ], [ -118.80179497099999, 50.333759086000093 ], [ -118.801793247999939, 50.333800362000048 ], [ -118.798650176999928, 50.333595204000041 ], [ -118.79922086699996, 50.330019163000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4255533", "BldgCostT": "2305546", "sL_LossRatio": "1", "sL_AssetLoss": "98.6", "sL_BldgLoss": "98.6", "sL_StrLoss": "98.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BFA99BCD5BB15DC0344A97FEA51A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.768726234999932, 50.206219258000026 ], [ -118.774301527999938, 50.206585723000039 ], [ -118.773730424999897, 50.210162202000042 ], [ -118.7681546969999, 50.209795710000058 ], [ -118.768726234999932, 50.206219258000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463750", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "414.4", "sL_BldgLoss": "414.4", "sL_StrLoss": "414.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005ADB81F0DB45DC0536D814ED21B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.81079670299999, 50.215385036000036 ], [ -118.816373460999955, 50.215749371000065 ], [ -118.816149733999936, 50.217158468000051 ], [ -118.815805557999909, 50.219326024000047 ], [ -118.81022836599999, 50.218961662000019 ], [ -118.810386262999955, 50.21796804700007 ], [ -118.81079670299999, 50.215385036000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.957508279895708", "sL_AssetLoss": "141.91", "sL_BldgLoss": "135.88", "sL_StrLoss": "133.7", "sL_NStrLoss": "2.18", "sL_ContLoss": "6.03", "geom_point": "0101000020E61000002FA1C4DF5DB25DC0F48CD882B9234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.784473035999952, 50.277127895000056 ], [ -118.79005717699999, 50.277493532000101 ], [ -118.789486423999961, 50.281069765000026 ], [ -118.783901846999953, 50.280704102000072 ], [ -118.784473035999952, 50.277127895000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512084", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "445.6", "sL_BldgLoss": "445.6", "sL_StrLoss": "445.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000697C57EB61B75DC04DBC033CE91A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.862845336999939, 50.208273399000085 ], [ -118.868421637000012, 50.208635107000056 ], [ -118.868044795999978, 50.211026351000022 ], [ -118.86785792199997, 50.212212061000088 ], [ -118.862281187999884, 50.211850325000057 ], [ -118.862448117999946, 50.210791982000117 ], [ -118.862845336999939, 50.208273399000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2847500", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "381.8", "sL_BldgLoss": "381.8", "sL_StrLoss": "381.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2A2A6868BB25DC06A41180DD32D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.78879461299999, 50.359798015000102 ], [ -118.788798083999922, 50.359776309000026 ], [ -118.787713608999951, 50.359705447000117 ], [ -118.787766119999972, 50.359377133000073 ], [ -118.787596427999944, 50.359366044000097 ], [ -118.788168317999947, 50.35579017700006 ], [ -118.792019377000017, 50.35604177200004 ], [ -118.792165374999968, 50.356549900000047 ], [ -118.792248816999944, 50.356939301000097 ], [ -118.792173382999962, 50.357313705000081 ], [ -118.792025062999926, 50.357698301000056 ], [ -118.791699048999973, 50.358543574000059 ], [ -118.791509728999984, 50.359034501000096 ], [ -118.791345714999977, 50.359291190000121 ], [ -118.791085306999918, 50.359523505000105 ], [ -118.790106911999914, 50.360145207000052 ], [ -118.78952508399999, 50.360663590000122 ], [ -118.788800688, 50.360448314000081 ], [ -118.787524914999935, 50.359871709000046 ], [ -118.787050375999939, 50.359720134000028 ], [ -118.78699520899994, 50.359702507000065 ], [ -118.786880857999961, 50.359672958000012 ], [ -118.78879461299999, 50.359798015000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2871667", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "399.8", "sL_BldgLoss": "399.8", "sL_StrLoss": "399.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000881A9EC113BC5DC0FF47E0EEB0184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.937003481, 50.190931740000039 ], [ -118.939843162000017, 50.191114119000105 ], [ -118.940210850999918, 50.191575183000076 ], [ -118.940223291999985, 50.191590798000114 ], [ -118.9405875839999, 50.191981001000066 ], [ -118.941009679, 50.192270897000114 ], [ -118.941264981999936, 50.192538491000079 ], [ -118.94131171, 50.192771804000103 ], [ -118.94123631699992, 50.193011711000075 ], [ -118.940479324999956, 50.193686711000026 ], [ -118.940359394999959, 50.193895809000061 ], [ -118.94031421499993, 50.194158508000065 ], [ -118.940537313999954, 50.194605507000055 ], [ -118.940703675999941, 50.194782584000116 ], [ -118.93644538699999, 50.194509123000088 ], [ -118.937003481, 50.190931740000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512083", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "384.5", "sL_BldgLoss": "384.5", "sL_StrLoss": "384.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003105ADB89FAB5DC0090D0E4034204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.679123136999934, 50.249621139000048 ], [ -118.684703035999974, 50.249992109000047 ], [ -118.684124324, 50.253567921000119 ], [ -118.678543988999976, 50.253196922000086 ], [ -118.679123136999934, 50.249621139000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24676181", "BldgCostT": "14767348", "sL_LossRatio": "0.997005460121458", "sL_AssetLoss": "691.926", "sL_BldgLoss": "689.854", "sL_StrLoss": "689.1", "sL_NStrLoss": "0.754", "sL_ContLoss": "2.072", "geom_point": "0101000020E6100000AFB300F163B25DC0F1FCFDBD6F1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.792492338999949, 50.21659 ], [ -118.79254605399997, 50.216252807000082 ], [ -118.788868231, 50.216011764000044 ], [ -118.788670464999967, 50.215998799000076 ], [ -118.7885792229999, 50.216571249000012 ], [ -118.78300258799996, 50.21620551000008 ], [ -118.783173848999951, 50.215131829 ], [ -118.778137511999944, 50.214801278000039 ], [ -118.778243573999987, 50.21413678000004 ], [ -118.77328410699991, 50.213811044000032 ], [ -118.773582394999963, 50.211943391000048 ], [ -118.773855290999933, 50.210234585000102 ], [ -118.779431118999952, 50.210600789000047 ], [ -118.779325082999932, 50.211265290000043 ], [ -118.78428431399999, 50.21159075500001 ], [ -118.784113092999974, 50.212664442000047 ], [ -118.787932716999947, 50.212914963000038 ], [ -118.788023958999986, 50.212342511000031 ], [ -118.793600158999979, 50.212707998000027 ], [ -118.793330664999971, 50.214400066000096 ], [ -118.795651158999974, 50.214552075000014 ], [ -118.795707123999989, 50.214200590000068 ], [ -118.801283614999988, 50.214565688000107 ], [ -118.800928630999962, 50.216796786000039 ], [ -118.800714537999966, 50.218142270000072 ], [ -118.797909374999961, 50.217958650000135 ], [ -118.79785342199996, 50.218310134000028 ], [ -118.792276498999954, 50.217944864000089 ], [ -118.792492338999949, 50.21659 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7822494", "BldgCostT": "4419076", "sL_LossRatio": "1", "sL_AssetLoss": "109", "sL_BldgLoss": "109", "sL_StrLoss": "109", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F344087619B85DC0934957FA9A1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.874045756999948, 50.237135527000092 ], [ -118.879625692, 50.237496656000118 ], [ -118.879062502999929, 50.241073534000101 ], [ -118.873482131999978, 50.240712377000087 ], [ -118.874045756999948, 50.237135527000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2847500", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "547.7", "sL_BldgLoss": "547.7", "sL_StrLoss": "547.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001377C43A38BC5DC097446A98291F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.940405788999954, 50.245389628000076 ], [ -118.940423306999961, 50.245277419000082 ], [ -118.938866647999959, 50.245177586000167 ], [ -118.939020351999929, 50.244193232000043 ], [ -118.938969818999951, 50.244189991000056 ], [ -118.939406253999962, 50.241394712 ], [ -118.941447293999886, 50.241381214000057 ], [ -118.941787499999961, 50.241395799000081 ], [ -118.94209512299993, 50.241456095000053 ], [ -118.94235411599999, 50.241557591000117 ], [ -118.94255430399997, 50.241692392000054 ], [ -118.942692297999898, 50.241855704000045 ], [ -118.942693316999978, 50.241922135000024 ], [ -118.942695384999965, 50.242056545000068 ], [ -118.942696348999931, 50.242119336000059 ], [ -118.942710317999982, 50.243027600000069 ], [ -118.942712525, 50.243171577000062 ], [ -118.942713363999957, 50.243225818000035 ], [ -118.942724737, 50.243962996000086 ], [ -118.942748986999945, 50.24553986200003 ], [ -118.940405788999954, 50.245389628000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4303866", "BldgCostT": "2338879", "sL_LossRatio": "1", "sL_AssetLoss": "105.5", "sL_BldgLoss": "105.5", "sL_StrLoss": "105.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B0E8D1F91B85DC084BB504C201C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.881350110999932, 50.217766744000109 ], [ -118.886927723999989, 50.218127513000077 ], [ -118.886365350999924, 50.221704516000102 ], [ -118.884612414999978, 50.221591165000099 ], [ -118.880787303, 50.221343721000082 ], [ -118.881219915999949, 50.218594259000071 ], [ -118.881350110999932, 50.217766744000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7260053", "BldgCostT": "3928746", "sL_LossRatio": "1", "sL_AssetLoss": "334.4", "sL_BldgLoss": "334.4", "sL_StrLoss": "334.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC915D6959B35DC00BF2717519234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.802917122999986, 50.272419160000069 ], [ -118.80675818099999, 50.272670075000086 ], [ -118.806457349999945, 50.27287082300009 ], [ -118.804921009999944, 50.273896006000079 ], [ -118.805115097999973, 50.274421803000109 ], [ -118.80558691899995, 50.274851907000077 ], [ -118.805720618999914, 50.275269801000078 ], [ -118.805943883999987, 50.275683702000102 ], [ -118.805970900999952, 50.275965506000091 ], [ -118.805869020999921, 50.276225531000073 ], [ -118.804275216999912, 50.276121430000053 ], [ -118.804272793999971, 50.27613664200009 ], [ -118.798688705999908, 50.275771723000027 ], [ -118.799030957999904, 50.273624273000095 ], [ -118.799258666999961, 50.27219541900007 ], [ -118.801722828999957, 50.272356487000096 ], [ -118.801725251, 50.272341275000059 ], [ -118.802917122999986, 50.272419160000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9158803", "BldgCostT": "5028746", "sL_LossRatio": "0.99836680316768", "sL_AssetLoss": "498.409", "sL_BldgLoss": "497.595", "sL_StrLoss": "497.3", "sL_NStrLoss": "0.295", "sL_ContLoss": "0.814", "geom_point": "0101000020E6100000635ECB5416B05DC009B99C5C9D214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.751687593000014, 50.262082075000151 ], [ -118.751780185999962, 50.261504735000109 ], [ -118.747491280999967, 50.261222328000024 ], [ -118.74756222799999, 50.260780204000099 ], [ -118.747897791999947, 50.260541206000013 ], [ -118.748632079999965, 50.260269096000094 ], [ -118.749107094999914, 50.260226400000064 ], [ -118.749701707999947, 50.259974288000059 ], [ -118.750841790999942, 50.259705107000087 ], [ -118.752634194999985, 50.259569889000026 ], [ -118.753582303, 50.259799193000063 ], [ -118.754362492, 50.260029915000132 ], [ -118.755275200999975, 50.260465694000082 ], [ -118.755473822999974, 50.260885803000136 ], [ -118.755395698999948, 50.261454092000108 ], [ -118.755492819999972, 50.262153405000099 ], [ -118.755798395999946, 50.26248240000006 ], [ -118.756333239999918, 50.262855023000022 ], [ -118.753643890999967, 50.262678078000143 ], [ -118.753144598999924, 50.265791827000072 ], [ -118.747562198999944, 50.265424321000118 ], [ -118.74813606099994, 50.261848233000116 ], [ -118.751687593000014, 50.262082075000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020695", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4144667", "BldgCostT": "2386667", "sL_LossRatio": "1", "sL_AssetLoss": "61.8", "sL_BldgLoss": "61.8", "sL_StrLoss": "61.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004CF422A814B45DC0A3369AF170254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.8131233229999, 50.293180698000114 ], [ -118.812529893999937, 50.293096807000019 ], [ -118.811947603999982, 50.293094093000065 ], [ -118.8101991, 50.293170735000032 ], [ -118.810257047999983, 50.292806720000065 ], [ -118.810780861999959, 50.292840895000097 ], [ -118.811014393999969, 50.29137373400004 ], [ -118.816155560999903, 50.291709016000077 ], [ -118.816592428999982, 50.291788790000055 ], [ -118.816231654999939, 50.294057055000039 ], [ -118.815452796999978, 50.293811391000062 ], [ -118.815369310999984, 50.29378879300004 ], [ -118.8131233229999, 50.293180698000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "31.3", "sL_BldgLoss": "31.3", "sL_StrLoss": "31.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D882FF296CB45DC0E9663D848A254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.819828710999971, 50.294289911000099 ], [ -118.819566213999963, 50.294263804000074 ], [ -118.817355177999914, 50.294316926000114 ], [ -118.81743828099998, 50.293794386000052 ], [ -118.818129798999934, 50.293839454000135 ], [ -118.818438766999961, 50.291896389000037 ], [ -118.819215347999901, 50.291912004000054 ], [ -118.819234491999964, 50.291912389000096 ], [ -118.819509583999974, 50.291930295 ], [ -118.819744008999947, 50.292036004000039 ], [ -118.820074308999921, 50.292354705000101 ], [ -118.820165213999985, 50.292510609000047 ], [ -118.82017620399999, 50.292662991000043 ], [ -118.820080142999927, 50.29286451600008 ], [ -118.819947698999897, 50.293142297000053 ], [ -118.819902423999977, 50.293391407000072 ], [ -118.819928316999963, 50.293583598000062 ], [ -118.819951621999934, 50.293614182000098 ], [ -118.819997193999896, 50.293674007000064 ], [ -118.82052959499994, 50.294124216000064 ], [ -118.820639501999921, 50.294275905000092 ], [ -118.820695507999957, 50.294473694000068 ], [ -118.820653917999962, 50.294647189000045 ], [ -118.820157408999989, 50.294379086000056 ], [ -118.819858324999984, 50.294297946000029 ], [ -118.819828710999971, 50.294289911000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "33.1", "sL_BldgLoss": "33.1", "sL_StrLoss": "33.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027C34C3639B25DC0DD8CC32EC42D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.78262984, 50.356576278000077 ], [ -118.782306107999958, 50.356524282000102 ], [ -118.781965988999943, 50.356506027000094 ], [ -118.781920773999971, 50.35650359500012 ], [ -118.780868696999974, 50.356605499000125 ], [ -118.780670841999964, 50.356604860000068 ], [ -118.780734019999954, 50.356210209000089 ], [ -118.786327886999956, 50.356575997000064 ], [ -118.785874080999989, 50.359412792000086 ], [ -118.785385708999925, 50.359286586000088 ], [ -118.784612518999921, 50.359048997000073 ], [ -118.784295386999972, 50.358928903000027 ], [ -118.784181427999926, 50.358846503000052 ], [ -118.784137589999986, 50.358766890000076 ], [ -118.784146498999945, 50.358667208000099 ], [ -118.784269382999952, 50.358490913000068 ], [ -118.785004888999978, 50.357806401000104 ], [ -118.785061795999965, 50.357689095000062 ], [ -118.785061613999957, 50.35756720100008 ], [ -118.785012414000022, 50.357423898000043 ], [ -118.784889188999941, 50.357266792000118 ], [ -118.784682227999923, 50.357130048000073 ], [ -118.784654003999933, 50.357111396000114 ], [ -118.784366224999943, 50.357002300000055 ], [ -118.782923285999928, 50.35662340800009 ], [ -118.78262984, 50.356576278000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4168833", "BldgCostT": "2403333", "sL_LossRatio": "1", "sL_AssetLoss": "63", "sL_BldgLoss": "63", "sL_StrLoss": "63", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD9174519DB15DC0D0CF7932A4224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.772387636999952, 50.271887200000016 ], [ -118.77290687699994, 50.268640816000115 ], [ -118.773330599999937, 50.268691896000085 ], [ -118.775337596999989, 50.269110614000098 ], [ -118.778323234999988, 50.270049785000019 ], [ -118.777971034999894, 50.272253449000068 ], [ -118.772387636999952, 50.271887200000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512083", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "420.1", "sL_BldgLoss": "420.1", "sL_StrLoss": "420.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009364B551CB85DC010A4DE95551B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.874222460999988, 50.211580266000063 ], [ -118.879799258999924, 50.211941398000079 ], [ -118.879236399000021, 50.215518394000043 ], [ -118.877398670999966, 50.215399422000125 ], [ -118.873659166999985, 50.215157235000085 ], [ -118.873867917999974, 50.213831714000044 ], [ -118.874222460999988, 50.211580266000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10528417", "BldgCostT": "6261667", "sL_LossRatio": "1", "sL_AssetLoss": "1122.1", "sL_BldgLoss": "1122.1", "sL_StrLoss": "1122.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBFCFB4A6FB95DC014490DD0AA1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.897809675999952, 50.226192183000151 ], [ -118.89789188099995, 50.225668556000123 ], [ -118.894492508999946, 50.22544909300008 ], [ -118.894516927000012, 50.22529363600006 ], [ -118.890799105999989, 50.22505349200005 ], [ -118.890983079999984, 50.223882731000053 ], [ -118.891361171999918, 50.221476480000078 ], [ -118.896939320999962, 50.221836742000114 ], [ -118.89691491399999, 50.221992201000084 ], [ -118.900632515999945, 50.22223214100012 ], [ -118.900550347999953, 50.222755772000077 ], [ -118.903949547999929, 50.222975049000105 ], [ -118.903880639999926, 50.223414383000076 ], [ -118.903388455999959, 50.226552118000079 ], [ -118.897809675999952, 50.226192183000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3463750", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "329.5", "sL_BldgLoss": "329.5", "sL_StrLoss": "329.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085D2B41713B35DC0B5304D09EF294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.795939159999961, 50.329472137000053 ], [ -118.796014993999975, 50.328997110000032 ], [ -118.795585081999931, 50.328969028000124 ], [ -118.796155956999954, 50.325392982000075 ], [ -118.800025556999941, 50.325645686 ], [ -118.800217613999962, 50.327417992000079 ], [ -118.800286300999986, 50.327797113000095 ], [ -118.800385116999976, 50.328342208000052 ], [ -118.800280612999984, 50.328810741000026 ], [ -118.800161886999945, 50.329343003000126 ], [ -118.800125610999928, 50.329658606000052 ], [ -118.800132674999958, 50.329745970000026 ], [ -118.795939159999961, 50.329472137000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2871667", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "441.3", "sL_BldgLoss": "441.3", "sL_StrLoss": "441.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D711A87A89AC5DC005E6D7C5231A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.692474832999906, 50.20523111100006 ], [ -118.692528642999932, 50.204897891000037 ], [ -118.69249735599999, 50.204895812000082 ], [ -118.69259988, 50.204260923000064 ], [ -118.692610641999963, 50.204194271000105 ], [ -118.692409602999973, 50.204180911000059 ], [ -118.692442390999943, 50.203977865000141 ], [ -118.692595103999949, 50.204019989000102 ], [ -118.693924903999942, 50.203982990000078 ], [ -118.694463489999933, 50.203804891000061 ], [ -118.694845491999942, 50.203861900000035 ], [ -118.695078519999981, 50.203740801000066 ], [ -118.694829801999944, 50.203457398000097 ], [ -118.694838217, 50.203259500000151 ], [ -118.694965114999931, 50.202879205000045 ], [ -118.695152003999951, 50.202669810000053 ], [ -118.695385793999947, 50.202523092000035 ], [ -118.695815711999927, 50.202417792000091 ], [ -118.696659090999916, 50.202441990000111 ], [ -118.697096003999931, 50.202524604000097 ], [ -118.697680895999952, 50.202849297000078 ], [ -118.697792788, 50.203629808000066 ], [ -118.698733054999977, 50.203609806000031 ], [ -118.698639885999924, 50.204187271000116 ], [ -118.698500376999945, 50.20505191900002 ], [ -118.698141897999975, 50.205028115000069 ], [ -118.69804938799993, 50.205601428000101 ], [ -118.692474832999906, 50.20523111100006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17071366", "BldgCostT": "10088879", "sL_LossRatio": "1", "sL_AssetLoss": "2329.9", "sL_BldgLoss": "2329.9", "sL_StrLoss": "2329.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F88491031BBA5DC046D65C66BF1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.901621201999959, 50.251900560000124 ], [ -118.90215130899999, 50.248523895000105 ], [ -118.903838285999925, 50.248632643000029 ], [ -118.904050707999943, 50.247279082000034 ], [ -118.900700967999967, 50.247063121000089 ], [ -118.901262525, 50.243486162000089 ], [ -118.90265148099995, 50.243575722000102 ], [ -118.902823513999948, 50.242479594000038 ], [ -118.908404334999943, 50.242839267000051 ], [ -118.90814944, 50.24446461600013 ], [ -118.910481282000021, 50.244614813000069 ], [ -118.909920437, 50.24819181400003 ], [ -118.909549143999953, 50.248167902000141 ], [ -118.909460572999961, 50.248732716000156 ], [ -118.914156050999949, 50.249035020000093 ], [ -118.914096280999971, 50.249416406000108 ], [ -118.91719408199999, 50.249615736000116 ], [ -118.917141285999961, 50.249952770000085 ], [ -118.921780362999954, 50.250251110000121 ], [ -118.92157577499998, 50.25155794000009 ], [ -118.92001800499996, 50.250945299000094 ], [ -118.919587790999984, 50.250848115000039 ], [ -118.919144, 50.250828585000093 ], [ -118.918924194999988, 50.250855114000046 ], [ -118.918735320999971, 50.250898665000101 ], [ -118.91850451399992, 50.250951900000047 ], [ -118.916603985999956, 50.251509925000079 ], [ -118.916339504999939, 50.251587551000043 ], [ -118.915531799999897, 50.25182470600005 ], [ -118.91533366699997, 50.251859463000066 ], [ -118.91484621099994, 50.251945003000046 ], [ -118.914125584999965, 50.251982604000041 ], [ -118.913776538999983, 50.251962337000059 ], [ -118.913119911999956, 50.251924208000084 ], [ -118.912616796999956, 50.251869209000048 ], [ -118.912120092999942, 50.251773989000114 ], [ -118.91140110399999, 50.25157690300005 ], [ -118.910896400999917, 50.251496494000023 ], [ -118.909757535000026, 50.251392263000092 ], [ -118.908898119999932, 50.251313609000121 ], [ -118.908459901, 50.251292725000084 ], [ -118.908142598, 50.251277589000068 ], [ -118.907672294999941, 50.251354796000093 ], [ -118.906984880999929, 50.25153179400013 ], [ -118.906049421999967, 50.251699202000118 ], [ -118.905410210999989, 50.251757382000072 ], [ -118.90492997199999, 50.251775590000044 ], [ -118.901631181999932, 50.251900398 ], [ -118.901621201999959, 50.251900560000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7846661", "BldgCostT": "4435743", "sL_LossRatio": "1", "sL_AssetLoss": "93.5", "sL_BldgLoss": "93.5", "sL_StrLoss": "93.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000619A96167DBA5DC02DA027D06D1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.912162057999964, 50.216238304000044 ], [ -118.912166109999987, 50.216212444000078 ], [ -118.91086902, 50.216128868000091 ], [ -118.911429394999914, 50.212551714000092 ], [ -118.914592978999963, 50.212755529000113 ], [ -118.914636558999987, 50.212477187000104 ], [ -118.91858618399999, 50.212731512000097 ], [ -118.918563101999979, 50.212778287000084 ], [ -118.918224895999913, 50.21297779800009 ], [ -118.917422986999924, 50.213269394000093 ], [ -118.916499996, 50.214190107000015 ], [ -118.915949570999942, 50.214648231000062 ], [ -118.91545230199992, 50.215062094000089 ], [ -118.915295243999978, 50.215275822000137 ], [ -118.915259000999953, 50.215325105000076 ], [ -118.915256803999952, 50.215334126000101 ], [ -118.915181411999981, 50.215640794000066 ], [ -118.915312772999968, 50.215934488000109 ], [ -118.915440293999936, 50.216219552000091 ], [ -118.915528767999945, 50.216417391000036 ], [ -118.915556075999959, 50.216456920000077 ], [ -118.912162057999964, 50.216238304000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7274250", "BldgCostT": "4545000", "sL_LossRatio": "1", "sL_AssetLoss": "291", "sL_BldgLoss": "291", "sL_StrLoss": "291", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3D66474DDB55DC03005941B7F204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.842815929, 50.251281954 ], [ -118.848397356999897, 50.251644654000046 ], [ -118.848130879999957, 50.253329153000088 ], [ -118.846513306999924, 50.253784334000066 ], [ -118.84621291399999, 50.253868872000112 ], [ -118.844264106999944, 50.254417196000126 ], [ -118.84297648799999, 50.254812804000068 ], [ -118.84089062, 50.255453606000088 ], [ -118.840070314999977, 50.255705596000013 ], [ -118.83920149199993, 50.255920993000124 ], [ -118.838667575, 50.256035431000072 ], [ -118.837129102999953, 50.256365192000032 ], [ -118.83592066099996, 50.256596728000041 ], [ -118.835439482999945, 50.256688915000097 ], [ -118.834905316999979, 50.256830296000061 ], [ -118.834490457999962, 50.256971880000066 ], [ -118.834812374999942, 50.254940981000104 ], [ -118.837152585999974, 50.255093249000062 ], [ -118.837496170999941, 50.252924737000065 ], [ -118.842504285999922, 50.253250426000129 ], [ -118.842815929, 50.251281954 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020710", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9247167", "BldgCostT": "5486667", "sL_LossRatio": "0.989715622818108", "sL_AssetLoss": "211.972", "sL_BldgLoss": "209.792", "sL_StrLoss": "209", "sL_NStrLoss": "0.792", "sL_ContLoss": "2.18", "geom_point": "0101000020E6100000AFC4D18F65B15DC05953F6E93A2D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.771759613999976, 50.350727092000106 ], [ -118.777352731999926, 50.351093336000112 ], [ -118.776780047999949, 50.354669168000044 ], [ -118.772149108999912, 50.354365951 ], [ -118.771888206999947, 50.355993775000094 ], [ -118.766294528999978, 50.355627258000084 ], [ -118.766868053999985, 50.352051485000054 ], [ -118.7714987199999, 50.352354923000085 ], [ -118.771759613999976, 50.350727092000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020711", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "1", "sL_AssetLoss": "37.8", "sL_BldgLoss": "37.8", "sL_StrLoss": "37.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000069F8DC2A04BB5DC0C5C9DC005C1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.920881927999986, 50.230137817000134 ], [ -118.920922720999954, 50.229877143000095 ], [ -118.919846211999982, 50.229807890000068 ], [ -118.919885926999925, 50.229554149000087 ], [ -118.918941202999932, 50.229493364000064 ], [ -118.919260591999929, 50.227452906000089 ], [ -118.919497115999903, 50.227574804000128 ], [ -118.920176288999969, 50.228006018000102 ], [ -118.920898477999941, 50.228342410000032 ], [ -118.925604287999974, 50.229719002000074 ], [ -118.926564597, 50.229836469000126 ], [ -118.926461374999946, 50.230496582000036 ], [ -118.920881927999986, 50.230137817000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7894994", "BldgCostT": "4469076", "sL_LossRatio": "1", "sL_AssetLoss": "111", "sL_BldgLoss": "111", "sL_StrLoss": "111", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009DA496395FB95DC0FF7D00310D204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.891687432999959, 50.25055175799999 ], [ -118.891969235999937, 50.248759264000071 ], [ -118.897550744999961, 50.249119482000054 ], [ -118.897505296999938, 50.249408799000051 ], [ -118.900055886999937, 50.249573313 ], [ -118.90004819399999, 50.249622310000113 ], [ -118.900970561999912, 50.249681788000082 ], [ -118.90078533799999, 50.250861452000052 ], [ -118.901040238999883, 50.250877888000034 ], [ -118.90087776799993, 50.251912631000103 ], [ -118.89838683, 50.25195303700005 ], [ -118.898105191999932, 50.251957602000083 ], [ -118.896944608999945, 50.251880011000061 ], [ -118.896105399999968, 50.251772896000041 ], [ -118.895770020999962, 50.251730105000021 ], [ -118.895450602999972, 50.251666483000079 ], [ -118.894542602999948, 50.251485587000069 ], [ -118.893092123999978, 50.251069428000051 ], [ -118.893056202999958, 50.251059088000034 ], [ -118.892251470999952, 50.250758175000065 ], [ -118.891876694999951, 50.250618012000089 ], [ -118.891687432999959, 50.25055175799999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020714", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.7", "sL_BldgLoss": "35.7", "sL_StrLoss": "35.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A75FBFB3BFB35DC029C95B2A46224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.809246044999952, 50.266042924000075 ], [ -118.809867093999941, 50.266083473000016 ], [ -118.809511076999925, 50.267902681000102 ], [ -118.809412592999976, 50.268405810000054 ], [ -118.80902634899995, 50.269642121000054 ], [ -118.80735793599996, 50.269533178000046 ], [ -118.807398965999951, 50.269275400000012 ], [ -118.807927133999954, 50.26595679900003 ], [ -118.809246044999952, 50.266042924000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020715", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70584333", "BldgCostT": "49383333", "sL_LossRatio": "1", "sL_AssetLoss": "469.7", "sL_BldgLoss": "469.7", "sL_StrLoss": "469.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C11FD9B76EBB5DC00D55EF782C204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.929176722999927, 50.253107104000058 ], [ -118.929178026999949, 50.25309877100004 ], [ -118.924998665999951, 50.25283030500006 ], [ -118.924754946999954, 50.252757740000135 ], [ -118.925305863999881, 50.249237022000067 ], [ -118.930887693999935, 50.24959555600001 ], [ -118.930639298999893, 50.251184287000036 ], [ -118.934902263999959, 50.251457912000085 ], [ -118.934481991999959, 50.251625192000063 ], [ -118.932930522, 50.252425203 ], [ -118.932534989999937, 50.252580004000087 ], [ -118.932448589999964, 50.252613810000057 ], [ -118.93171281399998, 50.252839283000071 ], [ -118.930973676999926, 50.253031188000058 ], [ -118.930404306999932, 50.253112108000089 ], [ -118.929666012999959, 50.253127896000102 ], [ -118.929176722999927, 50.253107104000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6535116", "BldgCostT": "3613879", "sL_LossRatio": "1", "sL_AssetLoss": "482.4", "sL_BldgLoss": "482.4", "sL_StrLoss": "482.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5FC0272B0BA5DC083E1B77C7F1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.915505483999965, 50.243920886000126 ], [ -118.921086582999976, 50.244279917000028 ], [ -118.920526578999926, 50.247856973000047 ], [ -118.918611949999985, 50.247733838000016 ], [ -118.91853341199996, 50.248235318000127 ], [ -118.912951845999913, 50.247876160000068 ], [ -118.913512448999981, 50.244299142000095 ], [ -118.915426917999952, 50.24442236599999 ], [ -118.915505483999965, 50.243920886000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3512083", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "425.6", "sL_BldgLoss": "425.6", "sL_StrLoss": "425.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD6C17814EB25DC0C86768F2031F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.783537008999986, 50.240336881000069 ], [ -118.789116613999951, 50.240702582000033 ], [ -118.788546250999929, 50.244278979000079 ], [ -118.782966209999984, 50.243913252000034 ], [ -118.783537008999986, 50.240336881000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3203750", "BldgCostT": "2000000", "sL_LossRatio": "0.991276574508434", "sL_AssetLoss": "100.19", "sL_BldgLoss": "99.316", "sL_StrLoss": "99", "sL_NStrLoss": "0.316", "sL_ContLoss": "0.874", "geom_point": "0101000020E61000005C26BB80B4B75DC0A6C123E0461F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.867883733999946, 50.24238130100008 ], [ -118.873464267, 50.242742738000061 ], [ -118.87290052599991, 50.24631956000006 ], [ -118.867319558999938, 50.245958095000042 ], [ -118.867883733999946, 50.24238130100008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4296667", "BldgCostT": "2466667", "sL_LossRatio": "1", "sL_AssetLoss": "58.4", "sL_BldgLoss": "58.4", "sL_StrLoss": "58.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008480B0271B35DC093E5A8CCE2274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.807046127999939, 50.310462644000047 ], [ -118.807369103999989, 50.310483717000068 ], [ -118.80729307899999, 50.310960905000101 ], [ -118.806364901999984, 50.31169199300011 ], [ -118.805811138999943, 50.312072049000051 ], [ -118.805757902, 50.312108596000016 ], [ -118.80506421199999, 50.312528503000053 ], [ -118.804658000999922, 50.312676398000121 ], [ -118.804471953999936, 50.31270643200002 ], [ -118.803552561999979, 50.312854919000081 ], [ -118.80351479799999, 50.31286100500008 ], [ -118.803077789999961, 50.313024888000015 ], [ -118.802721285, 50.313233793000045 ], [ -118.802036348999977, 50.313749035000114 ], [ -118.801210518999952, 50.313695116000105 ], [ -118.801780757999921, 50.310118971000101 ], [ -118.807046127999939, 50.310462644000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9570167", "BldgCostT": "5656667", "sL_LossRatio": "1", "sL_AssetLoss": "221.9", "sL_BldgLoss": "221.9", "sL_StrLoss": "221.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B5FFF9E6DBA5DC0D84FF7E8AA1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.91262561299996, 50.22751959300016 ], [ -118.912991857999913, 50.225181767000073 ], [ -118.912326161999914, 50.225138890000075 ], [ -118.912454754999956, 50.224318068000066 ], [ -118.911054379999953, 50.224227856000013 ], [ -118.911094744999957, 50.223970246000064 ], [ -118.90811410500001, 50.223778175000042 ], [ -118.908207718999918, 50.223180969000083 ], [ -118.908674790999939, 50.220201070000023 ], [ -118.910879316999925, 50.220343138000104 ], [ -118.910882688999962, 50.220321622000029 ], [ -118.914192076999925, 50.220534806000032 ], [ -118.914145716999911, 50.220575680000159 ], [ -118.913813394999977, 50.220868708000104 ], [ -118.913514905999989, 50.221200793 ], [ -118.913465541000036, 50.221275159000108 ], [ -118.91338210399999, 50.221400894000041 ], [ -118.913323317999968, 50.221713300000012 ], [ -118.913331987999968, 50.222278409000097 ], [ -118.913570497999956, 50.222428414000056 ], [ -118.91408, 50.222593103000065 ], [ -118.914920799999948, 50.222954286000125 ], [ -118.915280581999951, 50.223175307000105 ], [ -118.915389418999951, 50.223407292000083 ], [ -118.915308882999966, 50.223502302000021 ], [ -118.91529430199995, 50.223519483000082 ], [ -118.915071881999935, 50.223518702000021 ], [ -118.914622695999981, 50.223418408000086 ], [ -118.91435908699999, 50.223410499000067 ], [ -118.91424970099996, 50.22351624100002 ], [ -118.914201399999968, 50.223562907000037 ], [ -118.914631036999978, 50.223811393000076 ], [ -118.91522957799998, 50.224157595000094 ], [ -118.916017518999965, 50.224748492000046 ], [ -118.916781214999958, 50.225440791000096 ], [ -118.91726555299999, 50.225843688000054 ], [ -118.917351995999979, 50.225915592000085 ], [ -118.918359883999941, 50.226887285000068 ], [ -118.918204672999934, 50.227878778000026 ], [ -118.91262561299996, 50.22751959300016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3179583", "BldgCostT": "1983333", "sL_LossRatio": "0.994587591164608", "sL_AssetLoss": "95.706", "sL_BldgLoss": "95.188", "sL_StrLoss": "95", "sL_NStrLoss": "0.188", "sL_ContLoss": "0.518", "geom_point": "0101000020E61000000B9A7DBB78B25DC0C5DA6B830B2D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.786116831999948, 50.349947615000133 ], [ -118.791709968999911, 50.350313134000068 ], [ -118.791314149999934, 50.352789685000054 ], [ -118.791159514999961, 50.353092310000122 ], [ -118.791102384999959, 50.353449908000087 ], [ -118.791168127999953, 50.35370324400003 ], [ -118.791138429999961, 50.353889044000077 ], [ -118.785544854, 50.353523499000104 ], [ -118.786116831999948, 50.349947615000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "75.4", "sL_BldgLoss": "75.4", "sL_StrLoss": "75.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000546242B3BAE5DC03C73A46DDB3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.721583487999951, 50.465814108000075 ], [ -118.726772787999934, 50.466155375 ], [ -118.726631703999928, 50.467027832000078 ], [ -118.725519719999937, 50.467185400000069 ], [ -118.725249010999946, 50.467504390000052 ], [ -118.724368423999962, 50.46808410300013 ], [ -118.722740109999975, 50.468639501000048 ], [ -118.721773710999955, 50.469939788000012 ], [ -118.721593972999983, 50.470111247000027 ], [ -118.720800673999946, 50.470059060000033 ], [ -118.719344048999957, 50.469963222000032 ], [ -118.71992274499999, 50.466388203000129 ], [ -118.721056399999938, 50.466462793000083 ], [ -118.721165823999982, 50.465786630000082 ], [ -118.721583487999951, 50.465814108000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "74", "sL_BldgLoss": "74", "sL_StrLoss": "74", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054164BB2CAAE5DC09FA785BBC83A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.729703410999974, 50.457539103000094 ], [ -118.73530942, 50.45790742100008 ], [ -118.735281043999962, 50.458083142000078 ], [ -118.735068907000013, 50.45821150700008 ], [ -118.734947885999958, 50.458725599000068 ], [ -118.734651880999976, 50.459098702000034 ], [ -118.733137793999987, 50.459696907000094 ], [ -118.732601614999965, 50.460064300000028 ], [ -118.730752181999975, 50.460722304000065 ], [ -118.730438998999929, 50.461005802000038 ], [ -118.730286315999976, 50.461502797000044 ], [ -118.730196813999925, 50.461597789000052 ], [ -118.728185343999925, 50.461465585000028 ], [ -118.72876323199992, 50.457890483000092 ], [ -118.729637340999972, 50.457947938000082 ], [ -118.729703410999974, 50.457539103000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "44.9", "sL_BldgLoss": "44.9", "sL_StrLoss": "44.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A0A2F5EFFB85DC00783848B09254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.888610296999929, 50.290463695000035 ], [ -118.888751403999962, 50.28956738300009 ], [ -118.887209313999918, 50.289467859000055 ], [ -118.887214729999926, 50.289433467 ], [ -118.88444073099997, 50.289254381000063 ], [ -118.884573920999912, 50.288408836000031 ], [ -118.885771471999988, 50.28841158900012 ], [ -118.888327495999974, 50.288417412000037 ], [ -118.892961760999953, 50.288427818000102 ], [ -118.893629800000014, 50.288429287000106 ], [ -118.894171164999989, 50.288434643000052 ], [ -118.895181262999984, 50.288444616000085 ], [ -118.895588656999919, 50.288448638000027 ], [ -118.895476677999966, 50.289160639000031 ], [ -118.894468800999945, 50.289095655000089 ], [ -118.894196914999938, 50.29082406400002 ], [ -118.888610296999929, 50.290463695000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "98.6", "sL_BldgLoss": "98.6", "sL_StrLoss": "98.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F338B12C7DAD5DC058520F4DB0344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.708913046999939, 50.408513313000078 ], [ -118.71451280399998, 50.408882703000074 ], [ -118.713934413999979, 50.412457949000114 ], [ -118.712997817999948, 50.41239618600008 ], [ -118.71261738500003, 50.414747173000087 ], [ -118.70701691599993, 50.414377689000105 ], [ -118.707595875999971, 50.410802487000069 ], [ -118.708532432999945, 50.410864296000035 ], [ -118.708913046999939, 50.408513313000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "80", "sL_BldgLoss": "80", "sL_StrLoss": "80", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DCA505165DB75DC0E4BACE2BC3264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.862545228000016, 50.300862027000107 ], [ -118.868132921, 50.301223707000069 ], [ -118.867568030999962, 50.30480023300003 ], [ -118.861979901999959, 50.304438526000105 ], [ -118.862545228000016, 50.300862027000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.2", "sL_BldgLoss": "36.2", "sL_StrLoss": "36.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5243627C8B45DC0D75A0CDC09264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.822656262999971, 50.297738545000058 ], [ -118.822984290999926, 50.295674490000124 ], [ -118.823009422999959, 50.295685567000049 ], [ -118.823208354999949, 50.295773277000087 ], [ -118.823397950999933, 50.295856832000077 ], [ -118.826736735999958, 50.297328466000074 ], [ -118.828259548999938, 50.29799960900003 ], [ -118.828243250999947, 50.298102242000084 ], [ -118.822656262999971, 50.297738545000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "76", "sL_BldgLoss": "76", "sL_StrLoss": "76", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B355CE4DEB45DC040D1860D60264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.823598989999951, 50.297834036000047 ], [ -118.828722703999972, 50.298167541000076 ], [ -118.829166456999985, 50.298320740000079 ], [ -118.828618071000022, 50.301774025000064 ], [ -118.82303062799997, 50.301410348000068 ], [ -118.823598989999951, 50.297834036000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "27.2", "sL_BldgLoss": "27.2", "sL_StrLoss": "27.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000022BBFBB143B35DC0F01750FBEF294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.800217613999962, 50.327417992000079 ], [ -118.800025556999941, 50.325645686 ], [ -118.801746142999917, 50.325758005000104 ], [ -118.801670373999954, 50.326233038000083 ], [ -118.802100264, 50.326261096000025 ], [ -118.801529847999959, 50.329837168000097 ], [ -118.800132674999958, 50.329745970000026 ], [ -118.800125610999928, 50.329658606000052 ], [ -118.800161886999945, 50.329343003000126 ], [ -118.800280612999984, 50.328810741000026 ], [ -118.800385116999976, 50.328342208000052 ], [ -118.800286300999986, 50.327797113000095 ], [ -118.800217613999962, 50.327417992000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020734", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "78.8", "sL_BldgLoss": "78.8", "sL_StrLoss": "78.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000783637E8C3BD5DC01809AF5569394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.962558467999941, 50.446560561000062 ], [ -118.968164981999948, 50.44691712300007 ], [ -118.96760619299998, 50.450493500000036 ], [ -118.965586511999973, 50.450365086000033 ], [ -118.961999238999979, 50.450136911000087 ], [ -118.962464477999973, 50.44716169000008 ], [ -118.962558467999941, 50.446560561000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "189", "sL_BldgLoss": "189", "sL_StrLoss": "189", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BBD9C237CB85DC061C66F65E4364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.883179761999941, 50.42676552200011 ], [ -118.883337281999914, 50.425768910000038 ], [ -118.887451765999941, 50.426033705000073 ], [ -118.887378509999962, 50.426346498000093 ], [ -118.887133387999938, 50.426671205000048 ], [ -118.888186355999949, 50.426080964000036 ], [ -118.888940584999943, 50.426129482000057 ], [ -118.888375781999954, 50.429705551000104 ], [ -118.885901987999929, 50.42954639800007 ], [ -118.885744513999924, 50.430543009000168 ], [ -118.882978015999981, 50.430364958000034 ], [ -118.882794038999975, 50.43152877300011 ], [ -118.882060129999971, 50.431481528000056 ], [ -118.881986728999905, 50.431945790000043 ], [ -118.876382757999977, 50.431584869000083 ], [ -118.87641134199994, 50.431404215000065 ], [ -118.876948533999894, 50.428008870000049 ], [ -118.877682382999978, 50.428056150000096 ], [ -118.877755821, 50.427591888000066 ], [ -118.880522127999967, 50.427770069000069 ], [ -118.880706146999941, 50.426606252000035 ], [ -118.883179761999941, 50.42676552200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "66.2", "sL_BldgLoss": "66.2", "sL_StrLoss": "66.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000003B78BBC6EAD5DC0FF3D78ED52384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.707371670999947, 50.43805845 ], [ -118.712975077999957, 50.438427904000072 ], [ -118.71239619, 50.442003011000033 ], [ -118.706792342999961, 50.4416335290001 ], [ -118.707371670999947, 50.43805845 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "72.2", "sL_BldgLoss": "72.2", "sL_StrLoss": "72.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006C076512DCB65DC0905A722637274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.85467097599998, 50.30440125800002 ], [ -118.860259040999935, 50.304763334000015 ], [ -118.85969348499998, 50.308339803000074 ], [ -118.854104982999971, 50.307977700000073 ], [ -118.85467097599998, 50.30440125800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "82.6", "sL_BldgLoss": "82.6", "sL_StrLoss": "82.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006CF1C6D50AB85DC0E1760D9F99264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.87314963899999, 50.299594265000067 ], [ -118.878737257999958, 50.299955410000088 ], [ -118.878173221999958, 50.303531996000096 ], [ -118.872585165999922, 50.303170823000094 ], [ -118.87314963899999, 50.299594265000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020739", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "170.8", "sL_BldgLoss": "170.8", "sL_StrLoss": "170.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B47E4CCE7DB25DC028F32C940E2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.78459916599995, 50.36313705200007 ], [ -118.78508386599999, 50.360107925000143 ], [ -118.780161536999955, 50.359786036000081 ], [ -118.780670841999964, 50.356604860000068 ], [ -118.780868696999974, 50.356605499000125 ], [ -118.781920773999971, 50.35650359500012 ], [ -118.781965988999943, 50.356506027000094 ], [ -118.782306107999958, 50.356524282000102 ], [ -118.78262984, 50.356576278000077 ], [ -118.782923285999928, 50.35662340800009 ], [ -118.784366224999943, 50.357002300000055 ], [ -118.784654003999933, 50.357111396000114 ], [ -118.784682227999923, 50.357130048000073 ], [ -118.784889188999941, 50.357266792000118 ], [ -118.785012414000022, 50.357423898000043 ], [ -118.785061613999957, 50.35756720100008 ], [ -118.785061795999965, 50.357689095000062 ], [ -118.785004888999978, 50.357806401000104 ], [ -118.784269382999952, 50.358490913000068 ], [ -118.784146498999945, 50.358667208000099 ], [ -118.784137589999986, 50.358766890000076 ], [ -118.784181427999926, 50.358846503000052 ], [ -118.784295386999972, 50.358928903000027 ], [ -118.784612518999921, 50.359048997000073 ], [ -118.785385708999925, 50.359286586000088 ], [ -118.785874080999989, 50.359412792000086 ], [ -118.785843307999968, 50.359605144000113 ], [ -118.786880857999961, 50.359672958000012 ], [ -118.78699520899994, 50.359702507000065 ], [ -118.787050375999939, 50.359720134000028 ], [ -118.787524914999935, 50.359871709000046 ], [ -118.788800688, 50.360448314000081 ], [ -118.78952508399999, 50.360663590000122 ], [ -118.790106911999914, 50.360145207000052 ], [ -118.791085306999918, 50.359523505000105 ], [ -118.791345714999977, 50.359291190000121 ], [ -118.791509728999984, 50.359034501000096 ], [ -118.791699048999973, 50.358543574000059 ], [ -118.792025062999926, 50.357698301000056 ], [ -118.792173382999962, 50.357313705000081 ], [ -118.792248816999944, 50.356939301000097 ], [ -118.792165374999968, 50.356549900000047 ], [ -118.792019377000017, 50.35604177200004 ], [ -118.793762194999942, 50.356155589000117 ], [ -118.793709730999964, 50.35648390700004 ], [ -118.7938794129999, 50.356494986000044 ], [ -118.793849281999911, 50.356683554000064 ], [ -118.794168269999943, 50.356704383000128 ], [ -118.794141308999926, 50.35674219100013 ], [ -118.79414991899999, 50.356975800000058 ], [ -118.794296093999918, 50.357108311000097 ], [ -118.794798405000037, 50.357433005000047 ], [ -118.794820262999934, 50.357464310000097 ], [ -118.794819189999941, 50.357471027000066 ], [ -118.794825227999937, 50.357471421000106 ], [ -118.795245889999975, 50.35807390300009 ], [ -118.795815606999966, 50.358659207000066 ], [ -118.797078593999942, 50.359341407000024 ], [ -118.798018588000019, 50.359658991000046 ], [ -118.798397085, 50.360013605000049 ], [ -118.798442151, 50.360040148000024 ], [ -118.79823975, 50.361307465000081 ], [ -118.792645199999981, 50.360942281000078 ], [ -118.792759747000019, 50.36022561700004 ], [ -118.790738980999919, 50.360093641000027 ], [ -118.790193921999972, 50.363502641000075 ], [ -118.784972524999915, 50.363161459 ], [ -118.78459916599995, 50.36313705200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "72.8", "sL_BldgLoss": "72.8", "sL_StrLoss": "72.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005C3565C5EB75DC0E2163D01DE274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.862622546999901, 50.309493451000023 ], [ -118.868211304999988, 50.309855123000105 ], [ -118.867646313999941, 50.313431610000045 ], [ -118.862057120999935, 50.313069910000053 ], [ -118.862622546999901, 50.309493451000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "70.8", "sL_BldgLoss": "70.8", "sL_StrLoss": "70.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AEE90796DFB75DC0A8A0894DB7374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.874185401999966, 50.433550245000028 ], [ -118.876106756999931, 50.433674054000043 ], [ -118.875540842999925, 50.437250023000111 ], [ -118.871113954999927, 50.436964711000073 ], [ -118.869936265999982, 50.436888779000114 ], [ -118.87050261899999, 50.433312836000027 ], [ -118.874185401999966, 50.433550245000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000934107C0ACB55DC07678DF63F6254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.837210002999925, 50.296027100000039 ], [ -118.837858301999972, 50.295942797000059 ], [ -118.838048849999907, 50.295943256000037 ], [ -118.838652493999959, 50.295944693000109 ], [ -118.839086152999954, 50.295991093000069 ], [ -118.839585649999933, 50.296044533000078 ], [ -118.84047990099999, 50.296140212000097 ], [ -118.841090903999941, 50.296188075000082 ], [ -118.841493226999944, 50.296219599000018 ], [ -118.841595579999975, 50.296215852000017 ], [ -118.841958540999926, 50.296202591000089 ], [ -118.84189006299999, 50.296634637000054 ], [ -118.841508347999948, 50.296609844000031 ], [ -118.840981040999964, 50.296575593000078 ], [ -118.840870953999968, 50.297270058000088 ], [ -118.83528396899996, 50.29690699800004 ], [ -118.835331121999914, 50.296609771000043 ], [ -118.836770997999963, 50.296143111000042 ], [ -118.837210002999925, 50.296027100000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020744", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.3", "sL_BldgLoss": "46.3", "sL_StrLoss": "46.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE2A02946DB75DC05529454414254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.86785961699999, 50.288532992000064 ], [ -118.868032832999987, 50.288500596000084 ], [ -118.867717145999919, 50.290499966000084 ], [ -118.862570665999925, 50.290166751000072 ], [ -118.863998194999922, 50.289666910000065 ], [ -118.865319888999963, 50.289186094000108 ], [ -118.866183382999935, 50.2889177140001 ], [ -118.86785961699999, 50.288532992000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "29.8", "sL_BldgLoss": "29.8", "sL_StrLoss": "29.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B96ABC461B35DC0C7265C3C7A2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.800196910999944, 50.330082883000053 ], [ -118.804811648999944, 50.330384029000108 ], [ -118.804241394999949, 50.333960097000066 ], [ -118.801793247999939, 50.333800362000048 ], [ -118.80179497099999, 50.333759086000093 ], [ -118.801804976999961, 50.333516998000043 ], [ -118.801664098999964, 50.332832993000054 ], [ -118.801381105999909, 50.331924799000021 ], [ -118.801215816, 50.33158880200007 ], [ -118.800279797999949, 50.330285612000111 ], [ -118.800196910999944, 50.330082883000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.8", "sL_BldgLoss": "36.8", "sL_StrLoss": "36.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FEC7D912DBD5DC07579108E1B384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.954806703999935, 50.435863958000034 ], [ -118.954982721999968, 50.435875173000056 ], [ -118.955430008999926, 50.436380693000075 ], [ -118.956790725999909, 50.438026421000124 ], [ -118.95726631299999, 50.438601601000101 ], [ -118.957376234999927, 50.438666333000079 ], [ -118.958513020999987, 50.43933570700009 ], [ -118.958998904999959, 50.439742957000085 ], [ -118.954246992999941, 50.439440317000091 ], [ -118.954806703999935, 50.435863958000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020749", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "33.7", "sL_BldgLoss": "33.7", "sL_StrLoss": "33.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B07DD83D7FB15DC0BAE4B0E2F1344940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.774341190999948, 50.411887351000146 ], [ -118.776478418999943, 50.412027084000094 ], [ -118.77590489399995, 50.415602638000124 ], [ -118.771295464000019, 50.415301222000025 ], [ -118.770303804000022, 50.415236350000093 ], [ -118.770877767999963, 50.411660824000137 ], [ -118.774341190999948, 50.411887351000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "36.8", "sL_BldgLoss": "36.8", "sL_StrLoss": "36.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9993D54C3BC5DC06B3F426275374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.947080148999987, 50.434894227000036 ], [ -118.947097035999917, 50.43478642900007 ], [ -118.94598032099999, 50.434715197000052 ], [ -118.946540628999941, 50.431138859000107 ], [ -118.951084502999933, 50.43142862800007 ], [ -118.95120984499998, 50.43152752000006 ], [ -118.951844419999972, 50.432028196000061 ], [ -118.952289165999971, 50.432463198000065 ], [ -118.952368294999957, 50.432540618000104 ], [ -118.953011034, 50.43316924500003 ], [ -118.952685091999967, 50.435251576000034 ], [ -118.947080148999987, 50.434894227000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "66.2", "sL_BldgLoss": "66.2", "sL_StrLoss": "66.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070E8F37214B15DC0DB8BC3F498354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.768699137999974, 50.417043322000026 ], [ -118.769960898999926, 50.417125875000131 ], [ -118.769386792999967, 50.420701373000092 ], [ -118.76393113099999, 50.420344318000048 ], [ -118.763785122999963, 50.420334759000056 ], [ -118.76435966899993, 50.416759288000087 ], [ -118.768699137999974, 50.417043322000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC6C0655B6B85DC0D26431774E364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.88517229699994, 50.422237043000052 ], [ -118.88598552, 50.422289383000077 ], [ -118.887077399999924, 50.422860078000092 ], [ -118.887327394999957, 50.423042299000045 ], [ -118.887469603999975, 50.423333293000105 ], [ -118.887492207999969, 50.424524990000073 ], [ -118.887484519999987, 50.424943476000109 ], [ -118.887465603999942, 50.425974612000111 ], [ -118.887460426999965, 50.425996715000053 ], [ -118.884607242999962, 50.425813109000103 ], [ -118.88517229699994, 50.422237043000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.3", "sL_BldgLoss": "37.3", "sL_StrLoss": "37.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000424BEC148AB35DC0A4C7CE5F11284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.806364901999984, 50.31169199300011 ], [ -118.80729307899999, 50.310960905000101 ], [ -118.806799302999977, 50.314059889000106 ], [ -118.804829005999977, 50.313931323000119 ], [ -118.802036348999977, 50.313749035000114 ], [ -118.802721285, 50.313233793000045 ], [ -118.803077789999961, 50.313024888000015 ], [ -118.80351479799999, 50.31286100500008 ], [ -118.803552561999979, 50.312854919000081 ], [ -118.804471953999936, 50.31270643200002 ], [ -118.804658000999922, 50.312676398000121 ], [ -118.80506421199999, 50.312528503000053 ], [ -118.805757902, 50.312108596000016 ], [ -118.805811138999943, 50.312072049000051 ], [ -118.806364901999984, 50.31169199300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006430B1BF0DB85DC0AC28B1AD17254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.878626108999967, 50.28839496800002 ], [ -118.881012157999976, 50.288400570000093 ], [ -118.880890144999924, 50.289174770000052 ], [ -118.880183180999893, 50.289129095000064 ], [ -118.87996307899995, 50.290525488000078 ], [ -118.877484260999964, 50.290365302000062 ], [ -118.877283424999973, 50.29163894600002 ], [ -118.87169684199992, 50.291277723000064 ], [ -118.872154185999989, 50.288379542000072 ], [ -118.874835573999945, 50.288385980000029 ], [ -118.875018346, 50.288386430000074 ], [ -118.87537107799993, 50.288387272000065 ], [ -118.878626108999967, 50.28839496800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "123.4", "sL_BldgLoss": "123.4", "sL_StrLoss": "123.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B094179E5B65DC008FB1B591E264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.856454585999955, 50.301812578000138 ], [ -118.856905448999981, 50.298962315000054 ], [ -118.853869400999926, 50.29876551100007 ], [ -118.854435295999934, 50.295189028000095 ], [ -118.854492658999945, 50.295192747000094 ], [ -118.854621785999939, 50.294376573000164 ], [ -118.851130517999977, 50.294150157000018 ], [ -118.851364210999947, 50.294014912000087 ], [ -118.851930555999942, 50.293746340000112 ], [ -118.852146810999969, 50.293643804000077 ], [ -118.852934899999966, 50.293389592000032 ], [ -118.85499680599996, 50.292726470000026 ], [ -118.85575604899995, 50.292482258000035 ], [ -118.855465781999939, 50.294317292000066 ], [ -118.860226451999964, 50.294625814000035 ], [ -118.859661022, 50.298202329000034 ], [ -118.85960365399994, 50.298198613000075 ], [ -118.859571589999959, 50.29840140900005 ], [ -118.862607639999922, 50.298598056000081 ], [ -118.862042345999939, 50.302174566000112 ], [ -118.856454585999955, 50.301812578000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020759", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "132.8", "sL_BldgLoss": "132.8", "sL_StrLoss": "132.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C4C81672FAB95DC03CE3D26321254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.902824067999958, 50.292426586 ], [ -118.903105311, 50.290636588000019 ], [ -118.901727656999967, 50.290547860000089 ], [ -118.90181680699996, 50.289980533000083 ], [ -118.898329688999965, 50.289755867000046 ], [ -118.898530639999933, 50.288477642000082 ], [ -118.898592382999965, 50.288478251000079 ], [ -118.900162784999935, 50.288493705000114 ], [ -118.900426298999946, 50.28852239600009 ], [ -118.900612476999953, 50.288564731000079 ], [ -118.900681003999949, 50.288580301000046 ], [ -118.900868680999949, 50.288656367000016 ], [ -118.901822903999957, 50.289043206000052 ], [ -118.902334817999957, 50.289188200000069 ], [ -118.902884280999913, 50.28930941400003 ], [ -118.90346649599995, 50.289374892000104 ], [ -118.904060801999947, 50.289381502000019 ], [ -118.904653820999897, 50.289361001000096 ], [ -118.905230686999971, 50.289298803000065 ], [ -118.905501009999981, 50.289239412000086 ], [ -118.906007377999956, 50.289068807000071 ], [ -118.907171606999952, 50.288561448000081 ], [ -118.907499351999945, 50.288418617000048 ], [ -118.907801284999906, 50.288287010000019 ], [ -118.910945686, 50.286916560000108 ], [ -118.911295516999971, 50.286764077000043 ], [ -118.911427603999954, 50.286772575000086 ], [ -118.911007228999907, 50.289451453000055 ], [ -118.910410813999974, 50.28951810800006 ], [ -118.909763313999918, 50.289798697000052 ], [ -118.909064692999934, 50.289881307000073 ], [ -118.908566790999942, 50.290104892000045 ], [ -118.909546380999984, 50.290008101000097 ], [ -118.910598698999976, 50.289640595000066 ], [ -118.910979433999927, 50.289628568000076 ], [ -118.910866311999925, 50.290349387000056 ], [ -118.90881433399997, 50.290217367000082 ], [ -118.908411040000018, 50.29278623600004 ], [ -118.902824067999958, 50.292426586 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020760", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14350000", "BldgCostT": "9400000", "sL_LossRatio": "0.99646131145133", "sL_AssetLoss": "599.092", "sL_BldgLoss": "596.972", "sL_StrLoss": "596.2", "sL_NStrLoss": "0.772", "sL_ContLoss": "2.12", "geom_point": "0101000020E6100000B2E312897AB15DC0A99DE5A2EF2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.77043156399999, 50.382201819000066 ], [ -118.770985921999966, 50.378745712000104 ], [ -118.770303396999935, 50.378701024000101 ], [ -118.770335737999929, 50.378499403000049 ], [ -118.769044296999951, 50.378519056000087 ], [ -118.769024230999918, 50.377979705 ], [ -118.768602514999927, 50.377986121000042 ], [ -118.768592483999939, 50.377716446000065 ], [ -118.76817076699993, 50.377722859000073 ], [ -118.768120631999949, 50.376374481000049 ], [ -118.766855517999915, 50.376393711000091 ], [ -118.766895597999934, 50.377472414000117 ], [ -118.767317311999989, 50.377466005000052 ], [ -118.767377450999959, 50.379084058000025 ], [ -118.766390427999951, 50.379099056000037 ], [ -118.765050944999928, 50.379119395 ], [ -118.76400362, 50.379135286000128 ], [ -118.763984688, 50.378624922000022 ], [ -118.763983611999933, 50.378595934000046 ], [ -118.763903611, 50.378597148000075 ], [ -118.762798070999963, 50.378613912000091 ], [ -118.762690597999949, 50.379283226000112 ], [ -118.757094112999951, 50.378916255000092 ], [ -118.757305636999931, 50.377599942000117 ], [ -118.757668660999954, 50.375340634000047 ], [ -118.76241171299999, 50.375651664000038 ], [ -118.763873574999977, 50.375629499000112 ], [ -118.763843567999942, 50.374820470000088 ], [ -118.764265257999966, 50.374814072000056 ], [ -118.764255253999963, 50.374544397000122 ], [ -118.765234837999927, 50.3745295310001 ], [ -118.765630595999951, 50.372063607000051 ], [ -118.771226301999931, 50.372430150000071 ], [ -118.771164559999974, 50.372815173000092 ], [ -118.773519872999913, 50.372969370000135 ], [ -118.77379898699995, 50.371228190000089 ], [ -118.776006733999935, 50.371372679000089 ], [ -118.776243264999948, 50.369896589000085 ], [ -118.774881464999979, 50.369807469000129 ], [ -118.77545449199998, 50.366231714000037 ], [ -118.778270698999961, 50.366415997000075 ], [ -118.778581353999982, 50.364476480000128 ], [ -118.779007055999926, 50.364504331000077 ], [ -118.779073252999979, 50.36409099100009 ], [ -118.784332288999977, 50.36443490800005 ], [ -118.784668081999911, 50.364456858000075 ], [ -118.784095807, 50.36803266900008 ], [ -118.78367006799995, 50.368004838000047 ], [ -118.783603905999925, 50.368418179000095 ], [ -118.780787553999957, 50.368234032000082 ], [ -118.780543338999962, 50.369759096000081 ], [ -118.78190514799995, 50.369848147 ], [ -118.781332585999962, 50.373423919000054 ], [ -118.779124721999892, 50.373279535000037 ], [ -118.778965846999952, 50.374271338000035 ], [ -118.779036151999918, 50.374275936000046 ], [ -118.778463307999971, 50.377851672000098 ], [ -118.776802252999943, 50.37774302 ], [ -118.776747707999945, 50.378083385000124 ], [ -118.777327173999964, 50.378121291000049 ], [ -118.777313133999897, 50.378208908000012 ], [ -118.778459045999966, 50.378283860000089 ], [ -118.77835283, 50.378946792000093 ], [ -118.779440661999928, 50.379017934000025 ], [ -118.778867787999943, 50.382593651000072 ], [ -118.776053969, 50.382409610000117 ], [ -118.776028562999912, 50.382568116000066 ], [ -118.77515007299999, 50.382510642000092 ], [ -118.77043156399999, 50.382201819000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "66.2", "sL_BldgLoss": "66.2", "sL_StrLoss": "66.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0DAC7A7D3B15DC0AB49E815EC334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.777524852999932, 50.403769142000058 ], [ -118.78162989099999, 50.404037424000116 ], [ -118.781056872999912, 50.407613040000065 ], [ -118.778599322999952, 50.407452448000058 ], [ -118.775456731999967, 50.407247009000095 ], [ -118.776030187999964, 50.403671421000098 ], [ -118.777524852999932, 50.403769142000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38", "sL_BldgLoss": "38", "sL_StrLoss": "38", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BAE896E376B45DC02BD3F565E5254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.817355177999914, 50.294316926000114 ], [ -118.819566213999963, 50.294263804000074 ], [ -118.819828710999971, 50.294289911000099 ], [ -118.819858324999984, 50.294297946000029 ], [ -118.820157408999989, 50.294379086000056 ], [ -118.820653917999962, 50.294647189000045 ], [ -118.82279692699997, 50.295591896000133 ], [ -118.822456378999945, 50.297734675000072 ], [ -118.817342086999957, 50.297401487000123 ], [ -118.816949342999962, 50.296868600000082 ], [ -118.817355177999914, 50.294316926000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7946666", "BldgCostT": "5216666", "sL_LossRatio": "1", "sL_AssetLoss": "743.8", "sL_BldgLoss": "743.8", "sL_StrLoss": "743.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A3609390AB95DC0656199C896264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.88107441299999, 50.305436455000098 ], [ -118.881638243999987, 50.301859863000047 ], [ -118.881813549999947, 50.301871184000056 ], [ -118.882122329999987, 50.299912169000038 ], [ -118.884974143999955, 50.300096291000074 ], [ -118.885157553999974, 50.298932135000072 ], [ -118.888798397999892, 50.299167092000083 ], [ -118.88884279699991, 50.298885119000069 ], [ -118.892824119999943, 50.299141907 ], [ -118.893261743999929, 50.296360913000065 ], [ -118.898849124999984, 50.296721044000066 ], [ -118.898380466999967, 50.299701568000017 ], [ -118.901206157, 50.299883585000053 ], [ -118.900643894999945, 50.30346028600011 ], [ -118.89667278499995, 50.303204466000047 ], [ -118.896402890999951, 50.304920178000017 ], [ -118.890814517999985, 50.304559927000078 ], [ -118.890906963999939, 50.303972727000023 ], [ -118.888397483999952, 50.303810862000049 ], [ -118.888562216999958, 50.302764832000086 ], [ -118.88779596699996, 50.302715395000028 ], [ -118.887397917999962, 50.305242582000105 ], [ -118.886756704999925, 50.305201208000042 ], [ -118.88666281699993, 50.305797197000047 ], [ -118.88107441299999, 50.305436455000098 ] ], [ [ -118.895348454000015, 50.301239292000076 ], [ -118.895524579999972, 50.300119751000068 ], [ -118.894305261999961, 50.300041155000102 ], [ -118.894221500999933, 50.300573489 ], [ -118.894548540999963, 50.300594572000115 ], [ -118.894456149999939, 50.301181776000064 ], [ -118.895348454000015, 50.301239292000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020765", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "66.2", "sL_BldgLoss": "66.2", "sL_StrLoss": "66.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD746F2CC5AE5DC0968D734037324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.728274110999976, 50.390339205000089 ], [ -118.733871775, 50.390707627000097 ], [ -118.733295149999947, 50.394283055000145 ], [ -118.727697046999964, 50.393914606000116 ], [ -118.728274110999976, 50.390339205000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "64.9", "sL_BldgLoss": "64.9", "sL_StrLoss": "64.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000630DD59C95B15DC0038B2E3563324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.771448896999971, 50.39541912100001 ], [ -118.771504290999971, 50.395073851000085 ], [ -118.771447320999968, 50.395070122000043 ], [ -118.772020937999969, 50.391494499000103 ], [ -118.774382305999964, 50.391649006000122 ], [ -118.777619100999956, 50.391860711000035 ], [ -118.777593994999904, 50.392017344000102 ], [ -118.778131597999931, 50.392052497000151 ], [ -118.777558455999952, 50.395628149000053 ], [ -118.777077783999971, 50.395596719000089 ], [ -118.77704754199999, 50.395785360000062 ], [ -118.776085322999919, 50.395722436000057 ], [ -118.771448896999971, 50.39541912100001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020767", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "109.6", "sL_BldgLoss": "109.6", "sL_StrLoss": "109.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000145E40370DB45DC04076AC8C25264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.812398127, 50.303222849000043 ], [ -118.812920243999955, 50.29994258200005 ], [ -118.810797464999922, 50.29980413700013 ], [ -118.810792786999954, 50.299781216000028 ], [ -118.810778828, 50.299423635000039 ], [ -118.810747258999967, 50.298614623000098 ], [ -118.810727187999959, 50.29810130400007 ], [ -118.810626291999952, 50.297832765000088 ], [ -118.810603299999968, 50.297771596000075 ], [ -118.810283316999971, 50.297503199000111 ], [ -118.80904142599999, 50.296794303000134 ], [ -118.80865164299999, 50.29654363300007 ], [ -118.808297172000024, 50.296315663000087 ], [ -118.808351456, 50.295974785000112 ], [ -118.809738280999937, 50.296065275000096 ], [ -118.809813756999958, 50.295591217000052 ], [ -118.810811590999947, 50.295672100000097 ], [ -118.81095129499991, 50.295652188000147 ], [ -118.811043913999981, 50.295488404000125 ], [ -118.811165599999953, 50.29537018500011 ], [ -118.810922091999885, 50.295247713000052 ], [ -118.810873399999949, 50.295078199000088 ], [ -118.811252887999956, 50.295081097000065 ], [ -118.811303213999935, 50.29496290800008 ], [ -118.81131348299999, 50.294837604000101 ], [ -118.811099516999903, 50.294777693000071 ], [ -118.811320994999988, 50.294297806000017 ], [ -118.81121180099997, 50.293984388000084 ], [ -118.81041131099991, 50.294005790000035 ], [ -118.810053428999979, 50.29408578200011 ], [ -118.8101991, 50.293170735000032 ], [ -118.811947603999982, 50.293094093000065 ], [ -118.812529893999937, 50.293096807000019 ], [ -118.8131233229999, 50.293180698000114 ], [ -118.815369310999984, 50.29378879300004 ], [ -118.815452796999978, 50.293811391000062 ], [ -118.816231654999939, 50.294057055000039 ], [ -118.81603166599993, 50.29531432600001 ], [ -118.815750523999895, 50.295295999000118 ], [ -118.815608998999934, 50.296185646000048 ], [ -118.815212183999989, 50.296214809000062 ], [ -118.814841099999938, 50.296409897000061 ], [ -118.81467038699995, 50.297087801000089 ], [ -118.814477284999938, 50.297153297000129 ], [ -118.814372992999964, 50.29702939800007 ], [ -118.814289106, 50.296662001000144 ], [ -118.814399399999942, 50.296579401 ], [ -118.81422780699998, 50.296132186000136 ], [ -118.814140802999958, 50.296079486000032 ], [ -118.81308788399997, 50.296105104000091 ], [ -118.813121684999942, 50.296607807000093 ], [ -118.813424694999966, 50.296449806000055 ], [ -118.813915189999946, 50.296442602000063 ], [ -118.81409959799997, 50.297221686000029 ], [ -118.814403501999919, 50.297442399000026 ], [ -118.814611897999924, 50.297412494000042 ], [ -118.814954216999965, 50.297181804000026 ], [ -118.815420591999953, 50.296491108000062 ], [ -118.815562179999972, 50.296479949000073 ], [ -118.815325582999904, 50.297967135000079 ], [ -118.814261851999959, 50.297897787000061 ], [ -118.813973134999941, 50.299712180000043 ], [ -118.816294086999918, 50.299863479000045 ], [ -118.81636919499999, 50.300010302000018 ], [ -118.816024917999982, 50.300205403000064 ], [ -118.815769000999964, 50.300514509000052 ], [ -118.815769901999943, 50.30089328800009 ], [ -118.816071020999928, 50.301787702000141 ], [ -118.81662321499995, 50.302281909000044 ], [ -118.817247582999968, 50.302461306000048 ], [ -118.817750590999978, 50.302723416000056 ], [ -118.81802766499996, 50.303323281000111 ], [ -118.817985709999945, 50.303587061000037 ], [ -118.812398127, 50.303222849000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FFC045BC2FB35DC012BDEF8CF4284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.797155488, 50.319600199000028 ], [ -118.797164661999915, 50.319477281000012 ], [ -118.797183989999922, 50.319218197000055 ], [ -118.797750714, 50.318435798000067 ], [ -118.797877193999966, 50.317952707000067 ], [ -118.798041681999933, 50.317630106000109 ], [ -118.798769706999934, 50.316742690000076 ], [ -118.802016232999932, 50.316954679000069 ], [ -118.801556580999971, 50.319836985000165 ], [ -118.80204523099998, 50.31986888400008 ], [ -118.801474890999941, 50.323444986000048 ], [ -118.799299738999963, 50.323302976000015 ], [ -118.799006281999937, 50.322805102000082 ], [ -118.798872608999943, 50.322660884000094 ], [ -118.798111388999956, 50.322060104 ], [ -118.798021972999919, 50.321956513000046 ], [ -118.797854921999928, 50.32176297900002 ], [ -118.797656098999965, 50.321532606000105 ], [ -118.797505413999943, 50.32095094500005 ], [ -118.797155488, 50.319600199000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020769", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6925417", "BldgCostT": "4566667", "sL_LossRatio": "0.99392277922659", "sL_AssetLoss": "299.479", "sL_BldgLoss": "297.659", "sL_StrLoss": "297", "sL_NStrLoss": "0.659", "sL_ContLoss": "1.82", "geom_point": "0101000020E61000000B140C4254AF5DC045C7DD39F7384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.733058687999986, 50.45751072900002 ], [ -118.733372827999958, 50.455565885000077 ], [ -118.733197027999935, 50.455554336000048 ], [ -118.733263455999989, 50.455143063000051 ], [ -118.732883946999948, 50.455118129000077 ], [ -118.733184985, 50.453254335000082 ], [ -118.733461380999984, 50.451542974000112 ], [ -118.733539738, 50.451548122000069 ], [ -118.733622302999933, 50.451036875000064 ], [ -118.733841054999942, 50.451051248000049 ], [ -118.733908211999918, 50.450635382000051 ], [ -118.734228619999968, 50.45065643100007 ], [ -118.734288113999966, 50.45028798900006 ], [ -118.734526592999941, 50.450303655000106 ], [ -118.734586621999966, 50.449931896000031 ], [ -118.734930982999956, 50.449954517000087 ], [ -118.735001526999937, 50.449517603000061 ], [ -118.735263845999953, 50.449534835000101 ], [ -118.735334934999912, 50.449094510000059 ], [ -118.735452396999932, 50.449102226000043 ], [ -118.735523950999948, 50.448659013000089 ], [ -118.735741945999962, 50.448673333000059 ], [ -118.735815562999974, 50.448217319 ], [ -118.735933824999975, 50.448225087000047 ], [ -118.735998876999986, 50.44782212200009 ], [ -118.736105288999937, 50.447829111000082 ], [ -118.736163188999925, 50.447470425000041 ], [ -118.736273819999965, 50.447477692000064 ], [ -118.736349906999962, 50.447006328000107 ], [ -118.73639271499999, 50.447009139000073 ], [ -118.736457023999932, 50.446610729000085 ], [ -118.736618848999967, 50.44662135900009 ], [ -118.73668783899997, 50.446193934000078 ], [ -118.73670399299999, 50.446194995000099 ], [ -118.736779959999978, 50.445724334 ], [ -118.736903051999917, 50.44573241900008 ], [ -118.736979777999963, 50.445257038000115 ], [ -118.737072970999932, 50.445263158000039 ], [ -118.737136690999975, 50.444868341000131 ], [ -118.737146820999939, 50.444869006000026 ], [ -118.737220812999965, 50.44441054100011 ], [ -118.73771967199994, 50.444443304000096 ], [ -118.737866934999971, 50.443530754000072 ], [ -118.738741947999969, 50.443588215000048 ], [ -118.738902642, 50.442592275000074 ], [ -118.739890974999923, 50.442657170000068 ], [ -118.740104958999922, 50.441330699000076 ], [ -118.740548476999948, 50.44135981800013 ], [ -118.740679167999929, 50.440549575000055 ], [ -118.74059231699998, 50.440543872000013 ], [ -118.741168955999967, 50.436968612000022 ], [ -118.741652638999966, 50.43700036700011 ], [ -118.741926215999939, 50.43530382600008 ], [ -118.742154635999952, 50.435318821000088 ], [ -118.742298847999947, 50.43442443200005 ], [ -118.742491131999913, 50.434437054000064 ], [ -118.742674193999946, 50.433301638000088 ], [ -118.743203333999958, 50.433336372000099 ], [ -118.743306400999941, 50.432697051000019 ], [ -118.746916342999953, 50.43293395000007 ], [ -118.748909436999924, 50.433064693000048 ], [ -118.748804564999915, 50.433715720000045 ], [ -118.748792210999937, 50.433722202000055 ], [ -118.748143316, 50.433740697000083 ], [ -118.747181000999959, 50.433961390000029 ], [ -118.746612209999938, 50.434203585000056 ], [ -118.745598808999901, 50.435344404000027 ], [ -118.745138910999941, 50.436646094000139 ], [ -118.745130297999964, 50.437158796000084 ], [ -118.744587108999937, 50.437742684000092 ], [ -118.744340998999959, 50.438295304000086 ], [ -118.744270383999947, 50.439051607000053 ], [ -118.744039986999894, 50.439306503000118 ], [ -118.743849292, 50.439884713000069 ], [ -118.743935696999969, 50.441430005000043 ], [ -118.74353220799992, 50.441976903000139 ], [ -118.743297380999977, 50.442879795000124 ], [ -118.743047078999922, 50.443368293000098 ], [ -118.742212695999953, 50.444371010000033 ], [ -118.741464480999966, 50.444741290000074 ], [ -118.740696914999958, 50.445669900000084 ], [ -118.740092506999957, 50.446102785000086 ], [ -118.739797301999928, 50.446924597000077 ], [ -118.739851697999939, 50.447635294000094 ], [ -118.739268817, 50.448615109000102 ], [ -118.73911990499991, 50.449166296000065 ], [ -118.738745008, 50.449710293000052 ], [ -118.738135598999989, 50.45115020300009 ], [ -118.736887014999979, 50.452419209000055 ], [ -118.736417786999979, 50.453091391000058 ], [ -118.736472298999956, 50.453423286000053 ], [ -118.737013109999936, 50.454306290000012 ], [ -118.737293384999944, 50.454652392000092 ], [ -118.737783687999965, 50.454959992000063 ], [ -118.737988289999976, 50.45519929800011 ], [ -118.736789810999966, 50.455928498000077 ], [ -118.73616699199999, 50.457403909000071 ], [ -118.735937513999957, 50.457685901000033 ], [ -118.735916767999967, 50.457698455000127 ], [ -118.733058687999986, 50.45751072900002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "66.1", "sL_BldgLoss": "66.1", "sL_StrLoss": "66.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A6CCA577AAF5DC0FD8DD195E32F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.73933233799994, 50.372161111 ], [ -118.74492784399996, 50.372528982000091 ], [ -118.744352323999948, 50.376104550000051 ], [ -118.738756379999955, 50.375736651000068 ], [ -118.73933233799994, 50.372161111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "64.8", "sL_BldgLoss": "64.8", "sL_StrLoss": "64.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005AA678BFBEB05DC01258AD0ADC2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.75958291799995, 50.368441845000042 ], [ -118.759753697999955, 50.367378448000039 ], [ -118.757426622999944, 50.367225788000084 ], [ -118.758000995999907, 50.363650113000084 ], [ -118.758750394999964, 50.363699280000013 ], [ -118.75879007199994, 50.363452230000121 ], [ -118.764384657999969, 50.363819123000027 ], [ -118.764174350999937, 50.365129583000069 ], [ -118.76575190799997, 50.365232987000049 ], [ -118.765178125999924, 50.368808696000031 ], [ -118.75958291799995, 50.368441845000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "37", "sL_BldgLoss": "37", "sL_StrLoss": "37", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000052E558A59B75DC0CC6C88D8FD384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.866561929999989, 50.443551611000032 ], [ -118.867926228999963, 50.443639603000065 ], [ -118.867359542999964, 50.447215485000065 ], [ -118.864283902999958, 50.44701709700005 ], [ -118.861753793999952, 50.446853832000095 ], [ -118.862320920999963, 50.44327797600009 ], [ -118.866561929999989, 50.443551611000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "64.8", "sL_BldgLoss": "64.8", "sL_StrLoss": "64.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D876BD655AE5DC09ED2C1FABF314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.720976233000016, 50.390646926000052 ], [ -118.72104727, 50.390207196000105 ], [ -118.720724454999981, 50.390185920000071 ], [ -118.721302021999975, 50.386610538000092 ], [ -118.721629909999976, 50.386632150000032 ], [ -118.721675119999986, 50.386352246000072 ], [ -118.727272236999937, 50.386721003000083 ], [ -118.726695140999979, 50.390296415000044 ], [ -118.726690041999916, 50.390296079000045 ], [ -118.726573875999975, 50.391015716000013 ], [ -118.720976233000016, 50.390646926000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "1", "sL_AssetLoss": "227.1", "sL_BldgLoss": "227.1", "sL_StrLoss": "227.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001820764B97BA5DC05D4B86EB6A254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.913562210999899, 50.292161577000023 ], [ -118.91379009299996, 50.290708987000087 ], [ -118.913934008999917, 50.290889588000063 ], [ -118.914370391, 50.290900990000097 ], [ -118.914865537999944, 50.290754477000071 ], [ -118.916366533999977, 50.290850967000061 ], [ -118.916586703999968, 50.289446926000061 ], [ -118.916599197999986, 50.289461208000013 ], [ -118.917005409999902, 50.289435507000078 ], [ -118.917339508999959, 50.289323004000018 ], [ -118.917369838999932, 50.289291004000098 ], [ -118.919769236999926, 50.289445188000158 ], [ -118.920167783999972, 50.289842904000089 ], [ -118.921003481999918, 50.290062194000043 ], [ -118.921668416999964, 50.290537907000029 ], [ -118.92224368899997, 50.290509392000025 ], [ -118.922405799000018, 50.290372693000073 ], [ -118.921869793999974, 50.290299994000165 ], [ -118.920648286999949, 50.289600690000029 ], [ -118.919925345999971, 50.289455217000118 ], [ -118.922119783999946, 50.289596181000014 ], [ -118.922122385999984, 50.289579583000062 ], [ -118.919802950999966, 50.289430589000084 ], [ -118.919742397999983, 50.289418402000102 ], [ -118.919751280999961, 50.289427268000061 ], [ -118.919111252, 50.289386146000048 ], [ -118.919128986999922, 50.289273009000063 ], [ -118.91748665599998, 50.289167469000098 ], [ -118.917530895999974, 50.288878706000148 ], [ -118.91775042099999, 50.288767602000071 ], [ -118.918989101999955, 50.28880031300011 ], [ -118.918812488999976, 50.288642207000052 ], [ -118.91842879799999, 50.288522606000093 ], [ -118.917489393999944, 50.288538309000046 ], [ -118.91725641299999, 50.288684994000015 ], [ -118.91694878, 50.28913289900003 ], [ -118.916874772999932, 50.289128142000052 ], [ -118.916779199999965, 50.289052403000071 ], [ -118.916635383999932, 50.288588103000038 ], [ -118.916334703, 50.288457100000137 ], [ -118.91612160899993, 50.288388686000104 ], [ -118.915739434999963, 50.288442752000066 ], [ -118.915750624999987, 50.288371400000116 ], [ -118.915536695999933, 50.288357648000087 ], [ -118.915807030999972, 50.286633801000107 ], [ -118.916670180999972, 50.286736636000093 ], [ -118.919327611999933, 50.287053198000095 ], [ -118.91944137299997, 50.287071552000043 ], [ -118.919553542999907, 50.287089658000056 ], [ -118.919839396999947, 50.287135815000084 ], [ -118.9203284929999, 50.287264712000159 ], [ -118.920546705999939, 50.287357302000089 ], [ -118.921445194999933, 50.28785310800005 ], [ -118.921850595999956, 50.288018788000024 ], [ -118.9221479099999, 50.288140298000016 ], [ -118.922661804999933, 50.288281711000138 ], [ -118.923092058999899, 50.288378635000072 ], [ -118.923281177999925, 50.288421241000052 ], [ -118.923495023999948, 50.28846942100008 ], [ -118.92392897799999, 50.288567193000105 ], [ -118.924470801, 50.288620987000073 ], [ -118.92658892299994, 50.288613955000073 ], [ -118.928016307999954, 50.28860920000006 ], [ -118.928109248999988, 50.288626423000061 ], [ -118.929607096999973, 50.288903857000051 ], [ -118.929598247999948, 50.288960400000057 ], [ -118.926454414999981, 50.289826705000031 ], [ -118.924761301999951, 50.290458708000109 ], [ -118.924356011999961, 50.290555547000054 ], [ -118.923849682999929, 50.290676498000074 ], [ -118.92265749099991, 50.290848400000044 ], [ -118.922560254999937, 50.290870726000065 ], [ -118.922012085999938, 50.290835521000083 ], [ -118.921985906999964, 50.291002594000076 ], [ -118.920942284999953, 50.291242197000031 ], [ -118.920571954999943, 50.291354401000092 ], [ -118.919672985999981, 50.291626697000041 ], [ -118.919029797999912, 50.291877998000125 ], [ -118.918630973999967, 50.292126500000073 ], [ -118.918008793999945, 50.292514187000052 ], [ -118.917514709999978, 50.292965709000065 ], [ -118.917134006999945, 50.293144399000035 ], [ -118.916567622999978, 50.293256202000066 ], [ -118.916112100999968, 50.293372301000076 ], [ -118.915778083999953, 50.293522505000062 ], [ -118.915440609999976, 50.293848501000078 ], [ -118.914746701999917, 50.294332302000022 ], [ -118.914308000999981, 50.294565992000038 ], [ -118.913256512999936, 50.294954497000091 ], [ -118.91250899899994, 50.295285806000024 ], [ -118.912118995999919, 50.295576897000018 ], [ -118.912081652999959, 50.295644140000078 ], [ -118.91179039299999, 50.296168409000096 ], [ -118.911690293999968, 50.296348600000115 ], [ -118.911283000999958, 50.296696407000077 ], [ -118.910451353999946, 50.297063369000043 ], [ -118.909893111999963, 50.297309655000042 ], [ -118.909021111999962, 50.29769439300005 ], [ -118.908844857999938, 50.297741147000075 ], [ -118.908572779999972, 50.297813283000032 ], [ -118.907443697999923, 50.299413539000049 ], [ -118.904604669999912, 50.299230822000077 ], [ -118.905166566999924, 50.295654082000084 ], [ -118.909339230999962, 50.295922606000083 ], [ -118.90959685, 50.294281578999986 ], [ -118.909607198999979, 50.294282244000051 ], [ -118.909826817999942, 50.292883181000029 ], [ -118.911301754999926, 50.292978060000088 ], [ -118.911451195999945, 50.292025816000063 ], [ -118.913562210999899, 50.292161577000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "68.5", "sL_BldgLoss": "68.5", "sL_StrLoss": "68.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CA02F4176A85DC0884703F4D2204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.630314380999934, 50.257685769000041 ], [ -118.630368328999964, 50.257354933000023 ], [ -118.630023694999963, 50.257331861000118 ], [ -118.630090973999984, 50.256919286000056 ], [ -118.630606719999975, 50.253756352000075 ], [ -118.631680173999925, 50.253828211000027 ], [ -118.631874809999928, 50.254627804000059 ], [ -118.632354211999925, 50.255520799000088 ], [ -118.634165398, 50.25679120300012 ], [ -118.635401177999924, 50.25718297500007 ], [ -118.635414178999895, 50.257187097000077 ], [ -118.635937506999966, 50.257797553000081 ], [ -118.635894873, 50.258059201000066 ], [ -118.630314380999934, 50.257685769000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "1", "sL_AssetLoss": "134.4", "sL_BldgLoss": "134.4", "sL_StrLoss": "134.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F3014C97AA65DC01423AE1094224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.605401355999959, 50.267363306000085 ], [ -118.605726604999944, 50.267385148000074 ], [ -118.605724158, 50.267400101000106 ], [ -118.605141442999951, 50.270960464000069 ], [ -118.602987355999943, 50.270815789000025 ], [ -118.602749161999952, 50.270799788000012 ], [ -118.602712252999979, 50.271025208000026 ], [ -118.602343549999972, 50.273276921000033 ], [ -118.601245702999975, 50.273203168000059 ], [ -118.59676146299995, 50.272901802000071 ], [ -118.597347309999989, 50.269326540000108 ], [ -118.59973949399992, 50.269487331000057 ], [ -118.600145214999912, 50.267010197000083 ], [ -118.605389007000014, 50.267362476000073 ], [ -118.605401355999959, 50.267363306000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "100.2", "sL_BldgLoss": "100.2", "sL_StrLoss": "100.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000004C08077D5A85DC0B14D8D44A6204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.635946873999941, 50.257102669000062 ], [ -118.634291092999916, 50.256356790000019 ], [ -118.633677502999902, 50.255646201000097 ], [ -118.632755715999963, 50.254975391000094 ], [ -118.632435191999889, 50.254629300000069 ], [ -118.63227160299999, 50.253894407000125 ], [ -118.632272121999918, 50.253867832000054 ], [ -118.632794858999944, 50.253902819000082 ], [ -118.632948860999974, 50.25295800300006 ], [ -118.638528792, 50.253331304000049 ], [ -118.638497849999965, 50.253521279000019 ], [ -118.643614948999954, 50.253863363000029 ], [ -118.643497090999958, 50.254587480000112 ], [ -118.643230274999922, 50.256226710000092 ], [ -118.64286420699996, 50.256389589000051 ], [ -118.640509955999931, 50.257270306000088 ], [ -118.637452474999932, 50.257065869000066 ], [ -118.637483323999945, 50.256876498000032 ], [ -118.637483422999949, 50.256875895000107 ], [ -118.63610272799994, 50.25678354700004 ], [ -118.636053286999967, 50.257086990000111 ], [ -118.636032248999967, 50.257216101 ], [ -118.635957403999953, 50.257107412000067 ], [ -118.635946873999941, 50.257102669000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "69.5", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002C76E20F92A25DC04B3558DD0F1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.537672371999975, 50.217257458000141 ], [ -118.543247126999944, 50.217635589000096 ], [ -118.542857996999899, 50.219995897000032 ], [ -118.542657685999956, 50.22121080200003 ], [ -118.537082496999957, 50.220832643000044 ], [ -118.537404514999935, 50.218880992000038 ], [ -118.537672371999975, 50.217257458000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21081970", "BldgCostT": "13515413", "sL_LossRatio": "0.998263454140718", "sL_AssetLoss": "794.681", "sL_BldgLoss": "793.301", "sL_StrLoss": "792.8", "sL_NStrLoss": "0.501", "sL_ContLoss": "1.38", "geom_point": "0101000020E610000021BBC106BAA65DC00771B3B25C1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.630038396999907, 50.25180221100004 ], [ -118.628897790999972, 50.251638412000013 ], [ -118.627647717999977, 50.251611402000023 ], [ -118.626657407999943, 50.25095050500007 ], [ -118.626337708000023, 50.250244093000077 ], [ -118.625677578999941, 50.249798738000031 ], [ -118.625714979999913, 50.249569490000084 ], [ -118.623934813999981, 50.24945020800007 ], [ -118.623991057999959, 50.249105532000051 ], [ -118.623524072999956, 50.249074236000055 ], [ -118.623662478999989, 50.248698896000057 ], [ -118.622741504999951, 50.247992502000081 ], [ -118.622636609999972, 50.247804486000106 ], [ -118.622923492999945, 50.24718070100004 ], [ -118.62287060899996, 50.246865899000149 ], [ -118.622623102999967, 50.246545498000089 ], [ -118.622163598999975, 50.246291904000067 ], [ -118.621504317999921, 50.246229307000128 ], [ -118.62149391899996, 50.246234201000043 ], [ -118.621486872999967, 50.246026588000142 ], [ -118.621066287999938, 50.246032458000094 ], [ -118.621053886999974, 50.245666965000062 ], [ -118.620825482999962, 50.245651651000053 ], [ -118.620640187999953, 50.246786774000093 ], [ -118.61702779399991, 50.246544507000102 ], [ -118.61687679, 50.247469056000085 ], [ -118.616563606999947, 50.247395702000041 ], [ -118.61656771199992, 50.246297600000084 ], [ -118.616214711999959, 50.245807705000097 ], [ -118.61565260899998, 50.245366190000041 ], [ -118.614777810999954, 50.245198210000126 ], [ -118.614074804999944, 50.245172506000081 ], [ -118.613818922999926, 50.245217513000057 ], [ -118.61381601899997, 50.245217319000055 ], [ -118.613815899999949, 50.245218045000094 ], [ -118.61368599499994, 50.245240895000109 ], [ -118.613273303000014, 50.245524297000124 ], [ -118.613190885999984, 50.24596720600006 ], [ -118.613026778999981, 50.246112497000041 ], [ -118.612625496999982, 50.246280594000027 ], [ -118.612109093999919, 50.246360288000076 ], [ -118.611714305999982, 50.246301901000045 ], [ -118.611256294, 50.246011413000105 ], [ -118.611105498999962, 50.245689512000069 ], [ -118.610947884999959, 50.245584094000094 ], [ -118.61090209799994, 50.245917413000015 ], [ -118.610993587999971, 50.246105394000047 ], [ -118.611324809999971, 50.246388790000033 ], [ -118.61185099, 50.24657959400011 ], [ -118.612718792999928, 50.246504215000087 ], [ -118.613412805999971, 50.24629618900012 ], [ -118.613710406999942, 50.245987189000083 ], [ -118.613697622999936, 50.245609798000075 ], [ -118.613765507999972, 50.245561509000012 ], [ -118.615184681999963, 50.245656745000069 ], [ -118.61519746299993, 50.245578508000058 ], [ -118.615438082999958, 50.245656803000067 ], [ -118.615709992999911, 50.245806302000069 ], [ -118.616031393999975, 50.246160889000059 ], [ -118.6160464969999, 50.2470511000001 ], [ -118.616259293999988, 50.247533887000074 ], [ -118.616621278999958, 50.247852898000083 ], [ -118.616810200999964, 50.247876752000153 ], [ -118.616567251, 50.24936415900013 ], [ -118.615762677999925, 50.249310184000088 ], [ -118.615730823999925, 50.249505178000049 ], [ -118.612721505999914, 50.24930324200011 ], [ -118.610151550999888, 50.249130724000032 ], [ -118.610254731999987, 50.248499582000115 ], [ -118.607667717999959, 50.248325857000026 ], [ -118.607992141999929, 50.2463419810001 ], [ -118.608063231999893, 50.245907237000011 ], [ -118.606621198999946, 50.245810372000065 ], [ -118.605812628999985, 50.245756050000082 ], [ -118.60550977399997, 50.247607514000087 ], [ -118.599930818999908, 50.247232543000031 ], [ -118.600070744999968, 50.246377783000064 ], [ -118.595193131999949, 50.246049713000104 ], [ -118.595551189999966, 50.243863753000014 ], [ -118.59192078099997, 50.243619427000091 ], [ -118.591945762999941, 50.243466978000122 ], [ -118.591526189999982, 50.243472725000068 ], [ -118.59151720599999, 50.243203020000117 ], [ -118.59067607399993, 50.243214538000124 ], [ -118.590685053999934, 50.243484244000065 ], [ -118.589423345999961, 50.243501511000012 ], [ -118.589414373999929, 50.243231804000125 ], [ -118.588993808999973, 50.243237557000022 ], [ -118.588984838999949, 50.242967850000099 ], [ -118.58895869, 50.242968208000065 ], [ -118.588829935, 50.243753601000058 ], [ -118.586445154999979, 50.243592972000066 ], [ -118.586372343999969, 50.244036956000052 ], [ -118.586040477999958, 50.244014599000145 ], [ -118.585873375999924, 50.245033465000098 ], [ -118.584909040999946, 50.244968494000034 ], [ -118.583547868999958, 50.244876771000108 ], [ -118.580294899999927, 50.244657500000137 ], [ -118.580560051999939, 50.243041984000072 ], [ -118.58088168099999, 50.241082195000097 ], [ -118.581213521999928, 50.241104568 ], [ -118.58138071399999, 50.240085704000101 ], [ -118.582951883999954, 50.240191619000043 ], [ -118.583257450999966, 50.240212215000042 ], [ -118.58338896399998, 50.239410547000034 ], [ -118.586809381999913, 50.239641034000023 ], [ -118.586837010999929, 50.239472537000076 ], [ -118.586076270999911, 50.239421283000141 ], [ -118.586061480999888, 50.239511475000072 ], [ -118.580483682999926, 50.239135517000094 ], [ -118.580575466999917, 50.238576219000066 ], [ -118.580846996, 50.238560689000046 ], [ -118.581921383999941, 50.238628588000054 ], [ -118.583167506999985, 50.238569796000036 ], [ -118.584831585999964, 50.23860969800009 ], [ -118.585374003999945, 50.238569402000067 ], [ -118.586254904, 50.238424589000061 ], [ -118.586538819999944, 50.238413006 ], [ -118.586962791999952, 50.238466802000104 ], [ -118.588446911999952, 50.238857415000084 ], [ -118.589510399999966, 50.23913731199999 ], [ -118.59141269899996, 50.239857301000072 ], [ -118.59223706399996, 50.240269065000099 ], [ -118.593211203999886, 50.240755601000039 ], [ -118.593899908999958, 50.24119860200004 ], [ -118.594168211999943, 50.241325108000034 ], [ -118.594267400999911, 50.241357850000028 ], [ -118.59488041799996, 50.241560107000048 ], [ -118.59534130900002, 50.241712203000077 ], [ -118.596297791999959, 50.242070296000094 ], [ -118.597042000999949, 50.242312904000102 ], [ -118.598173126999882, 50.242612206000096 ], [ -118.598186400999936, 50.242615130000033 ], [ -118.599726407999967, 50.242954362000013 ], [ -118.599915, 50.242995904000011 ], [ -118.599997655999971, 50.243006613000084 ], [ -118.600011422999955, 50.243008405000104 ], [ -118.601650496999952, 50.243220998000062 ], [ -118.602024114999892, 50.243253541000065 ], [ -118.602560991999937, 50.243300311000091 ], [ -118.60259662199995, 50.24330160100002 ], [ -118.603441317999966, 50.243332410000015 ], [ -118.60396263699991, 50.243383408000057 ], [ -118.604443193999955, 50.243430427000135 ], [ -118.605308850999975, 50.243525623000082 ], [ -118.60699631599999, 50.243626892000115 ], [ -118.607025069999949, 50.24362862100007 ], [ -118.606498883999961, 50.244701091000067 ], [ -118.606468920999987, 50.245448803000109 ], [ -118.606785798999979, 50.245695187000088 ], [ -118.607600396999914, 50.245737910000081 ], [ -118.608196810999914, 50.245532806000078 ], [ -118.608495889999972, 50.245249415000067 ], [ -118.60762141399999, 50.245495799 ], [ -118.607030889999919, 50.24548590600007 ], [ -118.606804313999959, 50.245380496000067 ], [ -118.60674740099995, 50.244967409000076 ], [ -118.607270690999954, 50.243845202000038 ], [ -118.607310863999942, 50.243645781000097 ], [ -118.607318485999912, 50.243646239000043 ], [ -118.60744492799995, 50.24365380200009 ], [ -118.608454601999966, 50.243714383000061 ], [ -118.60933544599996, 50.243699419000031 ], [ -118.609567529999964, 50.243694243000078 ], [ -118.610030774, 50.243732578000078 ], [ -118.610489576999925, 50.243841100000061 ], [ -118.611239424999951, 50.244127306000124 ], [ -118.611252522999948, 50.244130249000136 ], [ -118.611119687999974, 50.244942969000057 ], [ -118.61298620899997, 50.245068268000075 ], [ -118.613121505999942, 50.244240273000109 ], [ -118.613851201000031, 50.244167068000124 ], [ -118.614240592999934, 50.244157052000062 ], [ -118.614657399999956, 50.244212134000058 ], [ -118.615964120999976, 50.244524846000026 ], [ -118.616413745999978, 50.244577606000057 ], [ -118.616895801999959, 50.244561132000072 ], [ -118.617936792999913, 50.244359865000042 ], [ -118.618208821999943, 50.24433577700006 ], [ -118.618441802999953, 50.24431511500007 ], [ -118.618676372999943, 50.244314239000126 ], [ -118.618990615999905, 50.244313068000046 ], [ -118.619553993999915, 50.244359900000063 ], [ -118.620650004999902, 50.24456442900005 ], [ -118.621046722999907, 50.244595540000027 ], [ -118.621082628999901, 50.244596010000109 ], [ -118.621549009999981, 50.244602103000091 ], [ -118.622514923999958, 50.244615233000076 ], [ -118.622580251999949, 50.244616111000077 ], [ -118.622931428999919, 50.24465863900005 ], [ -118.623248900999968, 50.244752195000032 ], [ -118.62338340499997, 50.244816088000114 ], [ -118.624246057999954, 50.245225691000059 ], [ -118.625189765, 50.245606355000064 ], [ -118.626252795999932, 50.246035106000065 ], [ -118.626476864999972, 50.246125488000089 ], [ -118.627120783999928, 50.24638521300011 ], [ -118.627884344999956, 50.246665880000087 ], [ -118.627907971999889, 50.246671372000023 ], [ -118.628248643999925, 50.246750545000097 ], [ -118.628397873999987, 50.246785219000081 ], [ -118.628912319999955, 50.246846786000027 ], [ -118.629422724999941, 50.246855682000096 ], [ -118.630355915999957, 50.247514568000064 ], [ -118.630491335, 50.2475706560001 ], [ -118.630476559999977, 50.247661282000131 ], [ -118.630755185999959, 50.247679938000026 ], [ -118.630876287999939, 50.247730095000072 ], [ -118.63135281699999, 50.247860493000147 ], [ -118.631627957999967, 50.24789712700003 ], [ -118.631517249999916, 50.248576301000035 ], [ -118.632504086000012, 50.248642362000041 ], [ -118.631921277999936, 50.25221790500008 ], [ -118.63056709199999, 50.252127252000037 ], [ -118.630038396999907, 50.25180221100004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5BBEB6C08A95DC0A9D0278F7A1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.639353289999988, 50.245870704000104 ], [ -118.642992506999931, 50.244662064000124 ], [ -118.642656941999988, 50.246723977000038 ], [ -118.637768243999943, 50.24639706900011 ], [ -118.639353289999988, 50.245870704000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "101.5", "sL_BldgLoss": "101.5", "sL_StrLoss": "101.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DBB98667AAA5DC02B28143B7D1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.659677799999955, 50.247641109000071 ], [ -118.659701168999931, 50.247497188000061 ], [ -118.656985326999987, 50.247316034000043 ], [ -118.65704871299998, 50.246925809000075 ], [ -118.657317580999944, 50.245270478000073 ], [ -118.658336799999972, 50.245494495000074 ], [ -118.65966361699999, 50.245700552000088 ], [ -118.659815186999978, 50.245724106000054 ], [ -118.660818907999939, 50.245768512000055 ], [ -118.661334633999971, 50.245744098000102 ], [ -118.661849115999956, 50.245687548000021 ], [ -118.662332296999921, 50.245634418000108 ], [ -118.663128144999959, 50.245448030000077 ], [ -118.663816194999981, 50.245221917000016 ], [ -118.665557586999981, 50.244510427000115 ], [ -118.665767067999951, 50.244424828000078 ], [ -118.666701710999959, 50.244008196000017 ], [ -118.667175431999908, 50.243851822000046 ], [ -118.667422671999944, 50.243805051000074 ], [ -118.667941181999964, 50.243780840000085 ], [ -118.669493942999964, 50.243950609000088 ], [ -118.669804254999946, 50.243984535000067 ], [ -118.669445177999933, 50.24619907300012 ], [ -118.666589537999926, 50.24600884000008 ], [ -118.66630702799992, 50.247750339000021 ], [ -118.66613158, 50.247738648000066 ], [ -118.66550324399995, 50.247526875000105 ], [ -118.664568974999952, 50.2472119930001 ], [ -118.663645522999943, 50.247224801000101 ], [ -118.66173959399994, 50.247778591000056 ], [ -118.659951792999948, 50.247659381000034 ], [ -118.659677799999955, 50.247641109000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020790", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4554667", "BldgCostT": "2931667", "sL_LossRatio": "0.987020170360264", "sL_AssetLoss": "135.595", "sL_BldgLoss": "133.835", "sL_StrLoss": "133.2", "sL_NStrLoss": "0.635", "sL_ContLoss": "1.76", "geom_point": "0101000020E6100000B2D7FD5B70A35DC0B9173D5C172A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.550679569999971, 50.33257739400009 ], [ -118.5512259599999, 50.329268338000119 ], [ -118.54988997399991, 50.329178078000098 ], [ -118.550480249999907, 50.325603322000049 ], [ -118.55186151399991, 50.325696641000071 ], [ -118.551970015999927, 50.325039354000111 ], [ -118.555562753999965, 50.325281998000087 ], [ -118.557558157999921, 50.325416711000045 ], [ -118.55730695099993, 50.326939574000107 ], [ -118.557091815999982, 50.32702329600005 ], [ -118.556892373999929, 50.327332293000076 ], [ -118.556876415999952, 50.32768270100005 ], [ -118.55712030799999, 50.328070976000021 ], [ -118.556968443999935, 50.328991506000122 ], [ -118.555587068999984, 50.328898252000094 ], [ -118.555522450999945, 50.329289847000027 ], [ -118.556858452999961, 50.329380038000039 ], [ -118.556268631999956, 50.332954811000093 ], [ -118.554690389999948, 50.332848265000074 ], [ -118.550679569999971, 50.33257739400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "69.5", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5F3E43758A15DC0C7681D55CD1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.5185577399999, 50.238469881000114 ], [ -118.524134940999943, 50.238848967000088 ], [ -118.523543719, 50.242423979000101 ], [ -118.52352580899999, 50.242422762000039 ], [ -118.523461335999954, 50.242812581000102 ], [ -118.517883652999913, 50.242433462000051 ], [ -118.518475321999944, 50.238858481000115 ], [ -118.51849323, 50.238859699000116 ], [ -118.5185577399999, 50.238469881000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16695750", "BldgCostT": "10515000", "sL_LossRatio": "1", "sL_AssetLoss": "1075.4", "sL_BldgLoss": "1075.4", "sL_StrLoss": "1075.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001728ADE8E4A25DC087CB2A6C861D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.536968123999898, 50.234763259000069 ], [ -118.53691669199992, 50.233163742000031 ], [ -118.533102135999968, 50.232904907000069 ], [ -118.533292713999941, 50.231750840000103 ], [ -118.533692481999978, 50.229329800000102 ], [ -118.534101130999943, 50.22935753500014 ], [ -118.53425350599997, 50.228434610000107 ], [ -118.535322579999956, 50.228507161000032 ], [ -118.535617642, 50.226719636000041 ], [ -118.536979842999955, 50.22681206500009 ], [ -118.53700408399996, 50.226665168000103 ], [ -118.538617028999951, 50.226774588000062 ], [ -118.538974911999929, 50.224605406000094 ], [ -118.544550579999935, 50.22498346800009 ], [ -118.544453109999949, 50.225574712000054 ], [ -118.54807691299996, 50.225820271000046 ], [ -118.547666173999943, 50.228312790000075 ], [ -118.55057452199999, 50.228509780000117 ], [ -118.550572703999975, 50.228516395000071 ], [ -118.550386408999927, 50.228796999000082 ], [ -118.550047011999965, 50.229152992000124 ], [ -118.549211902999971, 50.229316804000064 ], [ -118.548368816999954, 50.22883260200004 ], [ -118.548076689999945, 50.228513499000073 ], [ -118.547955711999975, 50.228650300000069 ], [ -118.547975411999957, 50.228821195000123 ], [ -118.54823690399995, 50.229104590000098 ], [ -118.549088700999988, 50.229453510000063 ], [ -118.54992772199995, 50.229388006000107 ], [ -118.550662301999978, 50.229071810000072 ], [ -118.550831111999912, 50.229124494000047 ], [ -118.551046587999949, 50.229688511000056 ], [ -118.55121850899998, 50.229802493000093 ], [ -118.553458997999883, 50.22974550800005 ], [ -118.554086205999951, 50.229638687000055 ], [ -118.555250504999975, 50.229173010000096 ], [ -118.55566728899997, 50.229113109000117 ], [ -118.556073851999912, 50.229125500000094 ], [ -118.556418845999957, 50.229148845000047 ], [ -118.555992975999956, 50.231735898000068 ], [ -118.559172237999974, 50.231950974000078 ], [ -118.558869236999911, 50.23379222500008 ], [ -118.558862811999973, 50.233793090000077 ], [ -118.558868810999954, 50.233794814000156 ], [ -118.558583865999978, 50.235526205000056 ], [ -118.557610589999939, 50.235460374000077 ], [ -118.557051679999972, 50.235422566000061 ], [ -118.553006784999965, 50.235148858000109 ], [ -118.553319773999959, 50.233248475000053 ], [ -118.551836537999975, 50.233148069000073 ], [ -118.551708578999964, 50.233924865000041 ], [ -118.550579930999959, 50.233848449000071 ], [ -118.550313802999952, 50.235463692000089 ], [ -118.54473679799996, 50.235085927000071 ], [ -118.54485754699999, 50.234353610000078 ], [ -118.543434808999962, 50.234257192 ], [ -118.543603171999976, 50.233236262000041 ], [ -118.538893638999951, 50.232916968000097 ], [ -118.538914969999936, 50.232787696000074 ], [ -118.538762259999913, 50.232777339000066 ], [ -118.538678775, 50.233283261000025 ], [ -118.538603043999956, 50.233278125000027 ], [ -118.538650132999962, 50.234740995000038 ], [ -118.536968123999898, 50.234763259000069 ] ], [ [ -118.545857502999951, 50.229523858000071 ], [ -118.545868265999943, 50.229458563 ], [ -118.544728655999904, 50.229381336000102 ], [ -118.544717890999962, 50.229446632000112 ], [ -118.545857502999951, 50.229523858000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "33", "sL_BldgLoss": "33", "sL_StrLoss": "33", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002249392D72A65DC0253CE3F371234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.601440794999974, 50.274909384000125 ], [ -118.6017160599999, 50.274927875000074 ], [ -118.601130483999938, 50.278503136000076 ], [ -118.599678332999986, 50.278405573000036 ], [ -118.599679690999935, 50.277687211000021 ], [ -118.600152597, 50.276314306000067 ], [ -118.600605102, 50.275587892000047 ], [ -118.601040201999965, 50.27515070200014 ], [ -118.601440794999974, 50.274909384000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "33", "sL_BldgLoss": "33", "sL_StrLoss": "33", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007087B8FF29A55DC08E1588E0B0264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.581297633999952, 50.300506580000039 ], [ -118.583774844999965, 50.300673329000084 ], [ -118.583187520999928, 50.304248376000118 ], [ -118.578950439999971, 50.303963132000078 ], [ -118.57760177699997, 50.303872304000059 ], [ -118.578189535999968, 50.300297285000028 ], [ -118.581297633999952, 50.300506580000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020804", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "69.5", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CBE06A9547A35DC0D3F6F1C886184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.549091287999914, 50.189712145000023 ], [ -118.554662756999974, 50.190089713000098 ], [ -118.554596058, 50.19049518900006 ], [ -118.55445644400001, 50.190576533000062 ], [ -118.553779889999973, 50.191119097000083 ], [ -118.553312234999936, 50.191692972000048 ], [ -118.553209672999941, 50.191893712000137 ], [ -118.553191735999945, 50.191928824000065 ], [ -118.553164932999962, 50.19226412700003 ], [ -118.553161118999981, 50.192311778000075 ], [ -118.55343848299999, 50.193476598000082 ], [ -118.553445688999915, 50.193622511000065 ], [ -118.548502668, 50.19328751900008 ], [ -118.549091287999914, 50.189712145000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10140500", "BldgCostT": "6050000", "sL_LossRatio": "1", "sL_AssetLoss": "140.1", "sL_BldgLoss": "140.1", "sL_StrLoss": "140.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E576165A69A35DC0F98D65B0181C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.551865285999952, 50.221657292000032 ], [ -118.55218060299994, 50.219742469000025 ], [ -118.552174560000012, 50.21974206000008 ], [ -118.552103039999949, 50.220176392000106 ], [ -118.546527898999926, 50.219798709000074 ], [ -118.54711701699992, 50.216223469000099 ], [ -118.548248234999988, 50.216300126000093 ], [ -118.548319785, 50.215865795000092 ], [ -118.549820581999967, 50.215967478000103 ], [ -118.549794584999958, 50.215165191000033 ], [ -118.550214912999962, 50.215159583000016 ], [ -118.550206171999918, 50.214889870000029 ], [ -118.551887472999937, 50.2148674210001 ], [ -118.551904974999957, 50.215406846000086 ], [ -118.55232530499994, 50.215401230000055 ], [ -118.552349239999955, 50.216138754000056 ], [ -118.553894457999931, 50.216243389000077 ], [ -118.553517803999938, 50.218531387000084 ], [ -118.556664696999931, 50.218744410000049 ], [ -118.5570315699999, 50.216514894000085 ], [ -118.560648473999919, 50.216759620000104 ], [ -118.560547524999919, 50.217369552000029 ], [ -118.560610669000013, 50.220372151000014 ], [ -118.557746158999976, 50.220178358000105 ], [ -118.55737929299994, 50.222407866000033 ], [ -118.554107893999969, 50.222186453000056 ], [ -118.553580690999951, 50.225388544000047 ], [ -118.550606369999969, 50.225187152000061 ], [ -118.55097579199996, 50.224525793000112 ], [ -118.551034699999931, 50.22413838800005 ], [ -118.550266105999967, 50.222926409000138 ], [ -118.550222184999939, 50.221990702000028 ], [ -118.549956327999951, 50.221528004000085 ], [ -118.551865285999952, 50.221657292000032 ] ], [ [ -118.550242023999957, 50.215996028000085 ], [ -118.550241137999961, 50.215968720000014 ], [ -118.549905106999958, 50.215973204000079 ], [ -118.550242023999957, 50.215996028000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "33", "sL_BldgLoss": "33", "sL_StrLoss": "33", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B52F3DED32A55DC0832F33096A284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.581551236999957, 50.313817317000044 ], [ -118.58418803799999, 50.313994744000127 ], [ -118.583600575, 50.317569733000028 ], [ -118.578013183999929, 50.317193688000025 ], [ -118.578446546999928, 50.314558506000104 ], [ -118.578652184999925, 50.314510202000079 ], [ -118.579995887999956, 50.31434778900006 ], [ -118.580621598999983, 50.31419538800003 ], [ -118.581551236999957, 50.313817317000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "134.4", "sL_BldgLoss": "134.4", "sL_StrLoss": "134.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009155BE2508A45DC015CEA8D81C294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.566913395999961, 50.31921734200008 ], [ -118.56955558, 50.319395464000117 ], [ -118.569123920999957, 50.319873698000031 ], [ -118.568298207999973, 50.321692395000063 ], [ -118.567970509999981, 50.321992891000036 ], [ -118.567637986999927, 50.322115411000063 ], [ -118.566868888999949, 50.322233609000079 ], [ -118.564284602999962, 50.322294894000052 ], [ -118.563214675999973, 50.322615293000126 ], [ -118.56243979099996, 50.322994215000051 ], [ -118.562173591999922, 50.323411512000064 ], [ -118.562173821999977, 50.323496786000092 ], [ -118.558762845999965, 50.323266617000108 ], [ -118.557580453999961, 50.323186805000056 ], [ -118.558170044999912, 50.319611981000051 ], [ -118.562133597999917, 50.319879472000132 ], [ -118.562159063999928, 50.319724971000049 ], [ -118.563123042, 50.31979000600009 ], [ -118.563145425999949, 50.319654193000126 ], [ -118.565310466999989, 50.319800226000034 ], [ -118.565423055999972, 50.319116844000106 ], [ -118.566913395999961, 50.31921734200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BBD39F940A65DC08DCB9F0C61234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.600037517999965, 50.274815101000094 ], [ -118.600411875999924, 50.274840255000136 ], [ -118.600091778999953, 50.275288897000088 ], [ -118.59910959299998, 50.277435104000084 ], [ -118.599056441999963, 50.278363786000035 ], [ -118.596409630999958, 50.278185896000103 ], [ -118.595547762999928, 50.278127958000091 ], [ -118.596133774999913, 50.274552726000096 ], [ -118.600037517999965, 50.274815101000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.1", "sL_BldgLoss": "34.1", "sL_StrLoss": "34.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C9D8BFA126A35DC0AAFBB6169C1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.548593966999988, 50.221435715000034 ], [ -118.549626380999896, 50.221505654000069 ], [ -118.549829500999948, 50.222023389000064 ], [ -118.550064596999988, 50.223233998000097 ], [ -118.550246401999914, 50.223599991000114 ], [ -118.550666286999942, 50.224035798000045 ], [ -118.550607386999985, 50.224360505000035 ], [ -118.550200192999938, 50.22478780400013 ], [ -118.550117246999946, 50.22515402600007 ], [ -118.548004897999974, 50.225010939000043 ], [ -118.548593966999988, 50.221435715000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "33", "sL_BldgLoss": "33", "sL_StrLoss": "33", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FDA2E3EE5CA45DC0A0D2565F3C294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.570109558999917, 50.319432802000037 ], [ -118.57101057899996, 50.319493524000102 ], [ -118.570422002999962, 50.323068417000115 ], [ -118.568256788999946, 50.322922485000049 ], [ -118.568144232999927, 50.323605867000062 ], [ -118.567180166999933, 50.323540876000045 ], [ -118.567157794999957, 50.323676689000123 ], [ -118.563193878999982, 50.323409380000044 ], [ -118.563168413999946, 50.323563879000048 ], [ -118.562657542999943, 50.323529418000064 ], [ -118.562720183999915, 50.323404298000078 ], [ -118.563189898999937, 50.32318220300008 ], [ -118.564693281999951, 50.322720701000065 ], [ -118.565698323, 50.322537004000047 ], [ -118.567283383999921, 50.322461495000056 ], [ -118.568258296999957, 50.32217808700009 ], [ -118.568491211999969, 50.322022887000045 ], [ -118.569097486999937, 50.321205409000122 ], [ -118.569392815999947, 50.32038220400004 ], [ -118.569857012999975, 50.319584598000056 ], [ -118.570109558999917, 50.319432802000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E71AC28F1A25DC03FB51388CB174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.544478181999963, 50.186579921000089 ], [ -118.544829382999922, 50.184447556000073 ], [ -118.54502279899998, 50.184556609000047 ], [ -118.545208502999955, 50.184624460000023 ], [ -118.54540678699999, 50.18469693 ], [ -118.54600982, 50.184917306000102 ], [ -118.546210999, 50.185012308000083 ], [ -118.546534111999989, 50.185273703000114 ], [ -118.546919302999981, 50.185765297000096 ], [ -118.547086503999964, 50.185921214000061 ], [ -118.547492521999928, 50.186192802000072 ], [ -118.548558984999957, 50.186814601000059 ], [ -118.548615878999925, 50.186860548000041 ], [ -118.544478181999963, 50.186579921000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9209706", "BldgCostT": "6142039", "sL_LossRatio": "0.991385006975207", "sL_AssetLoss": "204.295", "sL_BldgLoss": "202.535", "sL_StrLoss": "201.9", "sL_NStrLoss": "0.635", "sL_ContLoss": "1.76", "geom_point": "0101000020E6100000503BDB27B0A95DC01DFF89BAA41F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.650720801999967, 50.251510300000064 ], [ -118.650214286999983, 50.251473204000057 ], [ -118.649415309999966, 50.251493199000045 ], [ -118.649352966999942, 50.251508332000085 ], [ -118.64939406699996, 50.251255599000061 ], [ -118.649900788999929, 50.248139374000104 ], [ -118.651029529999974, 50.248214744000109 ], [ -118.65117621199991, 50.247312464000125 ], [ -118.650846711999975, 50.247290464000109 ], [ -118.650863484999931, 50.247187292000056 ], [ -118.650473103999929, 50.24716122500007 ], [ -118.650443013999933, 50.247346299000114 ], [ -118.644863720999965, 50.246973597000093 ], [ -118.645006654999989, 50.24609508599999 ], [ -118.643780947999957, 50.246013168000047 ], [ -118.644034040999941, 50.24445776700005 ], [ -118.644055419999987, 50.244326377000093 ], [ -118.644849290999929, 50.244100601000113 ], [ -118.645119833999942, 50.244044149000032 ], [ -118.645961389999954, 50.243868484000053 ], [ -118.647075320999988, 50.243720704000104 ], [ -118.648186707, 50.243691888000086 ], [ -118.648611483999943, 50.243702815000141 ], [ -118.649663749999945, 50.243729868000095 ], [ -118.649726918999988, 50.243731489000076 ], [ -118.650788715999965, 50.243852100000133 ], [ -118.653932981999915, 50.244526489000094 ], [ -118.654757576999927, 50.244707768000055 ], [ -118.656211882999912, 50.245027441000111 ], [ -118.656832047999956, 50.245163757000057 ], [ -118.656555930999943, 50.246863597000143 ], [ -118.656433657999969, 50.247616300000089 ], [ -118.656763162999965, 50.2476382830001 ], [ -118.656311735999964, 50.250417126000094 ], [ -118.656258741999963, 50.25074331800004 ], [ -118.653623816999968, 50.251523096000071 ], [ -118.65235781799997, 50.251810796000029 ], [ -118.651430497999939, 50.251797907000089 ], [ -118.650720801999967, 50.251510300000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "68.2", "sL_BldgLoss": "68.2", "sL_StrLoss": "68.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071551B94D7A35DC04FA9758F2A1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.558638058, 50.207549772000064 ], [ -118.558920556999965, 50.205832111000063 ], [ -118.55766824599999, 50.205747350000117 ], [ -118.557861728999967, 50.204571041000086 ], [ -118.557783628999971, 50.204565755000061 ], [ -118.558371663999978, 50.200990384000114 ], [ -118.559643786999928, 50.201076488000119 ], [ -118.559683014999976, 50.200837913000036 ], [ -118.56071201599994, 50.200907550000061 ], [ -118.560863211999958, 50.201039828000027 ], [ -118.561037290999977, 50.201309183000035 ], [ -118.561151524999943, 50.20172812900006 ], [ -118.561169088000014, 50.202559157000124 ], [ -118.561169978999942, 50.202601536000067 ], [ -118.561225410999967, 50.20288998300002 ], [ -118.561480532999923, 50.203480237000115 ], [ -118.561732311999975, 50.203945551000039 ], [ -118.562179108999942, 50.204775579000049 ], [ -118.562506560999964, 50.205300768000043 ], [ -118.56299640899999, 50.20608629500007 ], [ -118.563352702999964, 50.206549602000031 ], [ -118.561499234999971, 50.206558478000055 ], [ -118.561281328999939, 50.206559511000066 ], [ -118.561429919999924, 50.207738685000038 ], [ -118.558638058, 50.207549772000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020820", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "103.6", "sL_BldgLoss": "103.6", "sL_StrLoss": "103.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002957BAB39DA15DC01B25F95B4C1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.523377668999913, 50.226829460000026 ], [ -118.528953480999959, 50.227208307000083 ], [ -118.528362788999985, 50.230783400000064 ], [ -118.52716523399999, 50.230702056000077 ], [ -118.527123245000013, 50.230956127000063 ], [ -118.526732671, 50.23092959500007 ], [ -118.521546987999983, 50.23057718900008 ], [ -118.521856110999977, 50.228708035000032 ], [ -118.522138212999906, 50.227002133000042 ], [ -118.52333566199998, 50.227083530000108 ], [ -118.523377668999913, 50.226829460000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12991744", "BldgCostT": "7984076", "sL_LossRatio": "1", "sL_AssetLoss": "333.7", "sL_BldgLoss": "333.7", "sL_StrLoss": "333.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C6AAA4C256A55DC009BFD4CF1B254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.57808566199995, 50.295542834000152 ], [ -118.578465393999949, 50.293232598000046 ], [ -118.577933015999974, 50.293196735000052 ], [ -118.578520609999913, 50.289621665 ], [ -118.581685727999911, 50.28983484300003 ], [ -118.582034863999951, 50.287709440000057 ], [ -118.58379933899991, 50.287828241000085 ], [ -118.583887251999954, 50.287834159000049 ], [ -118.58390697, 50.287714088000094 ], [ -118.583938139999972, 50.287524279000074 ], [ -118.582038255999947, 50.287396361000049 ], [ -118.582625450999927, 50.283821243 ], [ -118.588208766999941, 50.284197071000058 ], [ -118.588092712999966, 50.284904239000049 ], [ -118.588046273, 50.28518721000011 ], [ -118.589946080999937, 50.28531502500001 ], [ -118.589653031999944, 50.287101024000073 ], [ -118.589305595, 50.287292113 ], [ -118.588018092999903, 50.287444499000117 ], [ -118.587423989999976, 50.287722198000061 ], [ -118.587063682999883, 50.288276203000059 ], [ -118.586650198999919, 50.289388493000068 ], [ -118.586570912999946, 50.289928305000032 ], [ -118.586716510999949, 50.290898186000064 ], [ -118.586997606999915, 50.291658120000072 ], [ -118.583866525999895, 50.291447396000116 ], [ -118.583850775999935, 50.291543298000093 ], [ -118.585077583999947, 50.291625874000033 ], [ -118.584490479999943, 50.295200969000113 ], [ -118.583795981, 50.295154224000093 ], [ -118.58367038399993, 50.295918886000059 ], [ -118.581837802999942, 50.295795520000127 ], [ -118.57808566199995, 50.295542834000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "104.9", "sL_BldgLoss": "104.9", "sL_StrLoss": "104.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0BEAB7178A45DC0297403AAA41C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.567357229999971, 50.22179914000003 ], [ -118.572932788999935, 50.222175769000017 ], [ -118.572345626999933, 50.225751120000091 ], [ -118.566769632999979, 50.225374462000033 ], [ -118.567357229999971, 50.22179914000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3960916", "BldgCostT": "2731666", "sL_LossRatio": "1", "sL_AssetLoss": "175.7", "sL_BldgLoss": "175.7", "sL_StrLoss": "175.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000106776C4BEA65DC0FE948D7B311B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.601593921999964, 50.215651255000118 ], [ -118.601666167999923, 50.215209510000136 ], [ -118.601657951999954, 50.215208957000058 ], [ -118.602242669999967, 50.211633403000114 ], [ -118.603222922, 50.211699342000081 ], [ -118.603492921999973, 50.210047875000093 ], [ -118.603683858999887, 50.208879928000066 ], [ -118.609258132999983, 50.209254729000072 ], [ -118.609129781999968, 50.210040444000114 ], [ -118.608673997999944, 50.212830331000106 ], [ -118.607701928999987, 50.212764992000075 ], [ -118.60716901, 50.21602615700008 ], [ -118.601593921999964, 50.215651255000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020827", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "139", "sL_BldgLoss": "139", "sL_StrLoss": "139", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C316B30C8EAA5DC01CD014323E1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.662422826999943, 50.20304914200004 ], [ -118.667996866999957, 50.203420978000025 ], [ -118.667479309000029, 50.206615083000081 ], [ -118.667417433999987, 50.20699691800008 ], [ -118.665880849999922, 50.206894444000078 ], [ -118.662290402999957, 50.206654913000058 ], [ -118.661842957999937, 50.206625054000014 ], [ -118.662023085, 50.205514316000098 ], [ -118.662422826999943, 50.20304914200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028BD0C5272A35DC00BFA03CC99184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.55445644400001, 50.190576533000062 ], [ -118.554596058, 50.19049518900006 ], [ -118.55407457199999, 50.193665114000055 ], [ -118.553445688999915, 50.193622511000065 ], [ -118.55343848299999, 50.193476598000082 ], [ -118.553161118999981, 50.192311778000075 ], [ -118.553164932999962, 50.19226412700003 ], [ -118.553191735999945, 50.191928824000065 ], [ -118.553209672999941, 50.191893712000137 ], [ -118.553312234999936, 50.191692972000048 ], [ -118.553779889999973, 50.191119097000083 ], [ -118.55445644400001, 50.190576533000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "139", "sL_BldgLoss": "139", "sL_StrLoss": "139", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000954A70D1E6A55DC05B0A48FB9F194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.589719252999956, 50.198219185000035 ], [ -118.595292102999935, 50.198594697000068 ], [ -118.594707005999936, 50.2021702750001 ], [ -118.589133722, 50.201794735000135 ], [ -118.589719252999956, 50.198219185000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35642386", "BldgCostT": "23557079", "sL_LossRatio": "0.999098793755033", "sL_AssetLoss": "1531.281", "sL_BldgLoss": "1529.901", "sL_StrLoss": "1529.4", "sL_NStrLoss": "0.501", "sL_ContLoss": "1.38", "geom_point": "0101000020E6100000B2889B32FBA45DC0F73B1405FA1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.578810197999985, 50.221840005000061 ], [ -118.579191560999931, 50.219515628000131 ], [ -118.579010563999987, 50.21950341600008 ], [ -118.579159477999951, 50.218595750000127 ], [ -118.579166884999964, 50.21855060200005 ], [ -118.579073587999929, 50.218544306000069 ], [ -118.575568123999943, 50.218307723000059 ], [ -118.575735302999973, 50.217289174000051 ], [ -118.575755318999981, 50.217167218000029 ], [ -118.574131456999964, 50.217057585000063 ], [ -118.574343834999979, 50.215763872000075 ], [ -118.569086291999938, 50.215408747000041 ], [ -118.569137814999962, 50.215095099000045 ], [ -118.56865, 50.21506213600005 ], [ -118.568706097, 50.214720664000012 ], [ -118.567660593999975, 50.214650010000113 ], [ -118.56822796299997, 50.211196494000085 ], [ -118.568101243999948, 50.211187930000087 ], [ -118.56815458199999, 50.210863248000116 ], [ -118.568258945999943, 50.21022793200008 ], [ -118.567516441999928, 50.210177746000078 ], [ -118.567346891999989, 50.210166285000099 ], [ -118.566694789999971, 50.210122205000062 ], [ -118.566685159999935, 50.210180826000041 ], [ -118.566561162, 50.210935489000057 ], [ -118.561672184999935, 50.210604881000087 ], [ -118.56173990099991, 50.210198382000023 ], [ -118.56143892899992, 50.207810172000087 ], [ -118.561450453999939, 50.207740073000089 ], [ -118.561429919999924, 50.207738685000038 ], [ -118.561281328999939, 50.206559511000066 ], [ -118.561499234999971, 50.206558478000055 ], [ -118.563352702999964, 50.206549602000031 ], [ -118.56299640899999, 50.20608629500007 ], [ -118.562506560999964, 50.205300768000043 ], [ -118.562179108999942, 50.204775579000049 ], [ -118.561732311999975, 50.203945551000039 ], [ -118.561480532999923, 50.203480237000115 ], [ -118.561225410999967, 50.20288998300002 ], [ -118.561169978999942, 50.202601536000067 ], [ -118.561169088000014, 50.202559157000124 ], [ -118.561151524999943, 50.20172812900006 ], [ -118.561037290999977, 50.201309183000035 ], [ -118.560863211999958, 50.201039828000027 ], [ -118.56071201599994, 50.200907550000061 ], [ -118.56525593799995, 50.20121494000005 ], [ -118.565013671999907, 50.202689406000069 ], [ -118.564973768999948, 50.202932249000128 ], [ -118.564741209999937, 50.20434752600007 ], [ -118.564799367999967, 50.204351459000065 ], [ -118.564336190999938, 50.207169944000036 ], [ -118.56553411099999, 50.207250949000048 ], [ -118.565667746999949, 50.206437664000092 ], [ -118.570781829999959, 50.206783333000132 ], [ -118.571107401999896, 50.204800481000063 ], [ -118.576680904999975, 50.205176930000093 ], [ -118.576094257999983, 50.208752378000042 ], [ -118.574158557999908, 50.208621669000124 ], [ -118.573987876000018, 50.209661552000107 ], [ -118.574857676999969, 50.209720290000114 ], [ -118.574787744999952, 50.21014638000004 ], [ -118.574538557999986, 50.211664619000054 ], [ -118.575936773999956, 50.21175902600001 ], [ -118.576038232999935, 50.211140763000039 ], [ -118.575934322999984, 50.211133747000119 ], [ -118.576097283999943, 50.210140677000034 ], [ -118.576521012999976, 50.207558311000135 ], [ -118.578529776999986, 50.207693913000121 ], [ -118.578588935999989, 50.207333258000119 ], [ -118.579612647999951, 50.207402349000063 ], [ -118.579802343999972, 50.206245681000091 ], [ -118.58098379399992, 50.206325406000076 ], [ -118.581382403999953, 50.20389431100007 ], [ -118.58695588099998, 50.204270241000067 ], [ -118.58642318699998, 50.207521485000065 ], [ -118.587154386999941, 50.207570783000079 ], [ -118.58717105499997, 50.207469051000039 ], [ -118.59242055199995, 50.207822828000118 ], [ -118.59254744499998, 50.207047772000088 ], [ -118.594135351999938, 50.207154735000103 ], [ -118.598121401999933, 50.207423136000024 ], [ -118.597688612999946, 50.210068471000021 ], [ -118.59753641399999, 50.210998688000082 ], [ -118.592286509, 50.210645155000073 ], [ -118.592159601999981, 50.211420208000092 ], [ -118.589344639, 50.211230542000109 ], [ -118.589327975999964, 50.211332273000068 ], [ -118.586704601999912, 50.21115544900011 ], [ -118.58665526599998, 50.211456532000099 ], [ -118.586467350999939, 50.211443865000042 ], [ -118.586303203999975, 50.212445538000026 ], [ -118.585094509000015, 50.212364045000108 ], [ -118.583231045999966, 50.212238379000013 ], [ -118.583218662999911, 50.212313909000031 ], [ -118.581500871999964, 50.212198038000111 ], [ -118.581469090999931, 50.212391847000028 ], [ -118.578701494999933, 50.21220510600007 ], [ -118.578450657999952, 50.213734131000095 ], [ -118.580292965999888, 50.21385844700005 ], [ -118.580105897999928, 50.214998964000102 ], [ -118.581729700999972, 50.21510850900011 ], [ -118.581573444999918, 50.216061332000095 ], [ -118.582988820999944, 50.216156796000092 ], [ -118.585172058999902, 50.216304015000091 ], [ -118.584791029999948, 50.218628423000126 ], [ -118.58497202599996, 50.218640626000131 ], [ -118.584385857999933, 50.222216057000097 ], [ -118.582943663999984, 50.22211881600002 ], [ -118.582536838999943, 50.222091381000048 ], [ -118.578810197999985, 50.221840005000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.5", "sL_BldgLoss": "31.5", "sL_StrLoss": "31.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E0E222163B05DC09FB1ABA054214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.754446104999943, 50.259263607000086 ], [ -118.75521970299998, 50.259297795000059 ], [ -118.756206000999939, 50.259453101000091 ], [ -118.756748814999966, 50.259706592000029 ], [ -118.756881901999961, 50.26027911300006 ], [ -118.75753309000001, 50.260800406000023 ], [ -118.757533826999946, 50.260800648000085 ], [ -118.757202409999962, 50.262868733000047 ], [ -118.75700038299999, 50.262733002000068 ], [ -118.756886094999928, 50.261871388000081 ], [ -118.75657881799998, 50.261166405000047 ], [ -118.756005808999987, 50.260472805000092 ], [ -118.755557187999941, 50.260102493000069 ], [ -118.753952291999909, 50.259595494000074 ], [ -118.752583486000034, 50.259337700000067 ], [ -118.752818785999963, 50.259279300000038 ], [ -118.754028498999958, 50.259324894000095 ], [ -118.754446104999943, 50.259263607000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13957417", "BldgCostT": "8151667", "sL_LossRatio": "1", "sL_AssetLoss": "243.7", "sL_BldgLoss": "243.7", "sL_StrLoss": "243.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F198D9DECA75DC0818B996D3C1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.630355915999957, 50.247514568000064 ], [ -118.629422724999941, 50.246855682000096 ], [ -118.628912319999955, 50.246846786000027 ], [ -118.628397873999987, 50.246785219000081 ], [ -118.628248643999925, 50.246750545000097 ], [ -118.627907971999889, 50.246671372000023 ], [ -118.627884344999956, 50.246665880000087 ], [ -118.627120783999928, 50.24638521300011 ], [ -118.626476864999972, 50.246125488000089 ], [ -118.626252795999932, 50.246035106000065 ], [ -118.625189765, 50.245606355000064 ], [ -118.624246057999954, 50.245225691000059 ], [ -118.62338340499997, 50.244816088000114 ], [ -118.623248900999968, 50.244752195000032 ], [ -118.622931428999919, 50.24465863900005 ], [ -118.622580251999949, 50.244616111000077 ], [ -118.622514923999958, 50.244615233000076 ], [ -118.621549009999981, 50.244602103000091 ], [ -118.621082628999901, 50.244596010000109 ], [ -118.621046722999907, 50.244595540000027 ], [ -118.620650004999902, 50.24456442900005 ], [ -118.619553993999915, 50.244359900000063 ], [ -118.618990615999905, 50.244313068000046 ], [ -118.618676372999943, 50.244314239000126 ], [ -118.618441802999953, 50.24431511500007 ], [ -118.618208821999943, 50.24433577700006 ], [ -118.617936792999913, 50.244359865000042 ], [ -118.616895801999959, 50.244561132000072 ], [ -118.616413745999978, 50.244577606000057 ], [ -118.615964120999976, 50.244524846000026 ], [ -118.614657399999956, 50.244212134000058 ], [ -118.614240592999934, 50.244157052000062 ], [ -118.613851201000031, 50.244167068000124 ], [ -118.613121505999942, 50.244240273000109 ], [ -118.613555330999986, 50.241585135 ], [ -118.618741795999952, 50.24193313500011 ], [ -118.61874758799999, 50.24189765300013 ], [ -118.62208725099994, 50.242121605000087 ], [ -118.624326042999911, 50.242271677000076 ], [ -118.62404782899992, 50.24397694800011 ], [ -118.623877244999974, 50.245022444000071 ], [ -118.625251899999981, 50.24511456800014 ], [ -118.625270832999945, 50.244998509000013 ], [ -118.626478062999965, 50.245079397000069 ], [ -118.627383389999977, 50.245140049000085 ], [ -118.62775424199998, 50.242865959000021 ], [ -118.633332889999906, 50.243239528000068 ], [ -118.632750215999948, 50.246815100000063 ], [ -118.630637564999944, 50.24667366400012 ], [ -118.630491335, 50.2475706560001 ], [ -118.630355915999957, 50.247514568000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "100.2", "sL_BldgLoss": "100.2", "sL_StrLoss": "100.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A502E5374AA5DC023F5E0E63B1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.660902982999943, 50.243933320000046 ], [ -118.661068690999926, 50.242912513000078 ], [ -118.664303848000017, 50.243128201000033 ], [ -118.664446079999976, 50.242251588000023 ], [ -118.670024953999956, 50.242623304000034 ], [ -118.669804254999946, 50.243984535000067 ], [ -118.669493942999964, 50.243950609000088 ], [ -118.667941181999964, 50.243780840000085 ], [ -118.667422671999944, 50.243805051000074 ], [ -118.667175431999908, 50.243851822000046 ], [ -118.666701710999959, 50.244008196000017 ], [ -118.665767067999951, 50.244424828000078 ], [ -118.665557586999981, 50.244510427000115 ], [ -118.663816194999981, 50.245221917000016 ], [ -118.663128144999959, 50.245448030000077 ], [ -118.662332296999921, 50.245634418000108 ], [ -118.661849115999956, 50.245687548000021 ], [ -118.661334633999971, 50.245744098000102 ], [ -118.660818907999939, 50.245768512000055 ], [ -118.659815186999978, 50.245724106000054 ], [ -118.65966361699999, 50.245700552000088 ], [ -118.658336799999972, 50.245494495000074 ], [ -118.657317580999944, 50.245270478000073 ], [ -118.657566097999961, 50.243740336000059 ], [ -118.658235915, 50.243785021000107 ], [ -118.658240667999948, 50.243755751000045 ], [ -118.660902982999943, 50.243933320000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "118.5", "sL_BldgLoss": "118.5", "sL_StrLoss": "118.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000038C4705C63AE5DC0B26323102F204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.722312165999966, 50.249463817000027 ], [ -118.72789239799998, 50.249832606000034 ], [ -118.727352037999978, 50.253191445000034 ], [ -118.727317092999968, 50.253408644000054 ], [ -118.721736426999968, 50.25303982700003 ], [ -118.721895831999987, 50.252049795000055 ], [ -118.722312165999966, 50.249463817000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "212.6", "sL_BldgLoss": "212.6", "sL_StrLoss": "212.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083303BB45DAF5DC05758369456214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.740388019999969, 50.262826342000089 ], [ -118.739615692999962, 50.262698810000096 ], [ -118.738486107999918, 50.262166201000099 ], [ -118.737737115999948, 50.261988201000058 ], [ -118.736749731999936, 50.261513737000065 ], [ -118.737282232999945, 50.258200078000073 ], [ -118.742863661999948, 50.258568106000091 ], [ -118.742824289999959, 50.258813323000076 ], [ -118.743336664999973, 50.258847094000046 ], [ -118.742762461999945, 50.262423171000087 ], [ -118.742340407999905, 50.262395354000105 ], [ -118.742251782, 50.262947232000059 ], [ -118.742227435999951, 50.262947597000064 ], [ -118.741632333999974, 50.262908371000087 ], [ -118.741472994999953, 50.262868300000058 ], [ -118.741234108999905, 50.262882121000061 ], [ -118.740388019999969, 50.262826342000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "171.5", "sL_BldgLoss": "171.5", "sL_StrLoss": "171.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000072EF6D3CD0A55DC0CBEE4DFC661E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.589413307999948, 50.237434792000094 ], [ -118.589185018999927, 50.237293799000099 ], [ -118.588933395999931, 50.237325109000011 ], [ -118.588382018999965, 50.237619902000056 ], [ -118.58805759499991, 50.237570095000066 ], [ -118.587599286999946, 50.237252507000086 ], [ -118.587017195, 50.236658594000069 ], [ -118.586545602999962, 50.236403711000143 ], [ -118.585544793999944, 50.236192903000067 ], [ -118.584748597999976, 50.236348104000108 ], [ -118.582896701999942, 50.237119998000061 ], [ -118.582160298999952, 50.237327991000029 ], [ -118.581663102999983, 50.237558689000117 ], [ -118.581282297999948, 50.237941808000087 ], [ -118.580674404999968, 50.238192505000043 ], [ -118.580638802999971, 50.238190265000121 ], [ -118.581070375999971, 50.235560186000058 ], [ -118.58501460399998, 50.235826068000016 ], [ -118.58502939499999, 50.235735876000071 ], [ -118.590606812999965, 50.236111605000048 ], [ -118.590466255999914, 50.236969320000064 ], [ -118.593376086999939, 50.237165230000095 ], [ -118.593298249999989, 50.237640378000052 ], [ -118.593387674999946, 50.237646397000027 ], [ -118.593479152999961, 50.237087969000065 ], [ -118.59905680699994, 50.237463272000085 ], [ -118.598873654999949, 50.238582149000138 ], [ -118.598041386999938, 50.239205101000046 ], [ -118.59735639799996, 50.23930478700003 ], [ -118.595983984999975, 50.239323299000063 ], [ -118.595326888, 50.239431509000106 ], [ -118.593994111999919, 50.239837408000106 ], [ -118.593216884999919, 50.239649395000072 ], [ -118.593099597, 50.239498498000046 ], [ -118.593024682999939, 50.238933098000118 ], [ -118.592683587999915, 50.238766405000035 ], [ -118.592131193999975, 50.238585615000062 ], [ -118.590477594999982, 50.238239509000039 ], [ -118.59012402399992, 50.237695403000046 ], [ -118.589922386999973, 50.237554403000097 ], [ -118.589413307999948, 50.237434792000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020839", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.1", "sL_BldgLoss": "34.1", "sL_StrLoss": "34.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7D357E3EEA35DC0FE83C44DF81B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.560648473999919, 50.216759620000104 ], [ -118.562606394999989, 50.216892046000112 ], [ -118.562529587, 50.217359183000127 ], [ -118.56201848799995, 50.22046736700009 ], [ -118.560610669000013, 50.220372151000014 ], [ -118.560547524999919, 50.217369552000029 ], [ -118.560648473999919, 50.216759620000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5858000", "BldgCostT": "4040000", "sL_LossRatio": "1", "sL_AssetLoss": "280.6", "sL_BldgLoss": "280.6", "sL_StrLoss": "280.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056D43F0C5DA85DC006BFAA06231B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.628992346999951, 50.214757020000036 ], [ -118.629052256999927, 50.21438933100017 ], [ -118.625120053999979, 50.21412571400009 ], [ -118.62514239099994, 50.21398869100004 ], [ -118.624150733999983, 50.213922187000072 ], [ -118.624524292999979, 50.211630850000063 ], [ -118.624733663999962, 50.210346508000072 ], [ -118.630308100999912, 50.210720233000096 ], [ -118.630453584999941, 50.209826835000086 ], [ -118.630662403999906, 50.208544437000093 ], [ -118.636236858999936, 50.208917876000079 ], [ -118.63609524499999, 50.209787984000087 ], [ -118.635658295999932, 50.212472474000037 ], [ -118.63565485399991, 50.212493623000114 ], [ -118.635590931999971, 50.212489342000062 ], [ -118.635003942999944, 50.21245003300006 ], [ -118.634977826999929, 50.212610463000061 ], [ -118.634567550999947, 50.215130540000068 ], [ -118.628992346999951, 50.214757020000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020845", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12117166", "BldgCostT": "8356666", "sL_LossRatio": "1", "sL_AssetLoss": "625.8", "sL_BldgLoss": "625.8", "sL_StrLoss": "625.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2A02D4A7DA65DC08F0FE5D1AE1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.610030774, 50.243732578000078 ], [ -118.609567529999964, 50.243694243000078 ], [ -118.60933544599996, 50.243699419000031 ], [ -118.608454601999966, 50.243714383000061 ], [ -118.60744492799995, 50.24365380200009 ], [ -118.607318485999912, 50.243646239000043 ], [ -118.607310863999942, 50.243645781000097 ], [ -118.607367107999934, 50.243366589000082 ], [ -118.607275903999962, 50.243188594000067 ], [ -118.606790021999956, 50.242889505000065 ], [ -118.606051991999919, 50.242657389000044 ], [ -118.605237907999935, 50.242227304000018 ], [ -118.603611698999899, 50.242231504000145 ], [ -118.602412988999959, 50.242438 ], [ -118.602160607999934, 50.242432302000047 ], [ -118.602001995999956, 50.242335505000021 ], [ -118.601851217, 50.242418099000126 ], [ -118.601895791999979, 50.242480790000052 ], [ -118.602405289999965, 50.242617490000058 ], [ -118.60412151599999, 50.24237819700005 ], [ -118.604892894999978, 50.24237680800006 ], [ -118.606426907999904, 50.24296638600007 ], [ -118.606970912999955, 50.243282592000071 ], [ -118.607103287999962, 50.24346919200012 ], [ -118.607025069999949, 50.24362862100007 ], [ -118.60699631599999, 50.243626892000115 ], [ -118.605308850999975, 50.243525623000082 ], [ -118.604443193999955, 50.243430427000135 ], [ -118.60396263699991, 50.243383408000057 ], [ -118.603441317999966, 50.243332410000015 ], [ -118.60259662199995, 50.24330160100002 ], [ -118.602560991999937, 50.243300311000091 ], [ -118.602024114999892, 50.243253541000065 ], [ -118.601650496999952, 50.243220998000062 ], [ -118.600011422999955, 50.243008405000104 ], [ -118.599997655999971, 50.243006613000084 ], [ -118.599915, 50.242995904000011 ], [ -118.599726407999967, 50.242954362000013 ], [ -118.598186400999936, 50.242615130000033 ], [ -118.598173126999882, 50.242612206000096 ], [ -118.597042000999949, 50.242312904000102 ], [ -118.596297791999959, 50.242070296000094 ], [ -118.59534130900002, 50.241712203000077 ], [ -118.59488041799996, 50.241560107000048 ], [ -118.594267400999911, 50.241357850000028 ], [ -118.594168211999943, 50.241325108000034 ], [ -118.593899908999958, 50.24119860200004 ], [ -118.593211203999886, 50.240755601000039 ], [ -118.59223706399996, 50.240269065000099 ], [ -118.59141269899996, 50.239857301000072 ], [ -118.589510399999966, 50.23913731199999 ], [ -118.588446911999952, 50.238857415000084 ], [ -118.586962791999952, 50.238466802000104 ], [ -118.586538819999944, 50.238413006 ], [ -118.586254904, 50.238424589000061 ], [ -118.585374003999945, 50.238569402000067 ], [ -118.584831585999964, 50.23860969800009 ], [ -118.583167506999985, 50.238569796000036 ], [ -118.581921383999941, 50.238628588000054 ], [ -118.580846996, 50.238560689000046 ], [ -118.580575466999917, 50.238576219000066 ], [ -118.580600492999977, 50.238423719000153 ], [ -118.580933299999941, 50.238431686000048 ], [ -118.581436416999935, 50.238344900000158 ], [ -118.581878894999974, 50.238168313000081 ], [ -118.58275388599999, 50.237517395000062 ], [ -118.58414190799995, 50.237021791000082 ], [ -118.58481369799992, 50.236563207000067 ], [ -118.585269902999926, 50.236420790000054 ], [ -118.586371388999908, 50.23659589300005 ], [ -118.58681629699997, 50.236913505000132 ], [ -118.58711038499996, 50.237313695000076 ], [ -118.587873902999945, 50.237968911000102 ], [ -118.588282276999905, 50.237998792000113 ], [ -118.588561092999967, 50.237931799000151 ], [ -118.589096813999916, 50.23761989900003 ], [ -118.58940528699999, 50.237597199000021 ], [ -118.58957940499991, 50.23775671100006 ], [ -118.589585205999967, 50.237946105000105 ], [ -118.589956415999922, 50.238183905000064 ], [ -118.590684603999989, 50.238559912000071 ], [ -118.591981496999963, 50.238784890000034 ], [ -118.592605602999981, 50.238992899000046 ], [ -118.592673618, 50.239297706000102 ], [ -118.592996200999934, 50.239733490000035 ], [ -118.593468624999943, 50.240032504000105 ], [ -118.593737580999928, 50.240092401000048 ], [ -118.594269586999928, 50.240075306000065 ], [ -118.594519618999968, 50.240001198000058 ], [ -118.594860110999946, 50.239726295000011 ], [ -118.59562689499991, 50.239544004000031 ], [ -118.597461813999985, 50.239474292000054 ], [ -118.598240985999922, 50.23929340000003 ], [ -118.598810253999972, 50.238969458000092 ], [ -118.598471505999896, 50.241038690000039 ], [ -118.597988568999966, 50.241006206000073 ], [ -118.597934025999962, 50.241339346000068 ], [ -118.601386658999928, 50.241571532000108 ], [ -118.601411215000013, 50.241421475000074 ], [ -118.599957922000016, 50.241323756000092 ], [ -118.600216122999925, 50.239746246000017 ], [ -118.600477405, 50.239954187000052 ], [ -118.600918996999951, 50.240559513000022 ], [ -118.60109730899994, 50.240872799000101 ], [ -118.601439292999942, 50.241038008000082 ], [ -118.601449399999979, 50.240921286000109 ], [ -118.600609994999957, 50.239673611000107 ], [ -118.600115402999961, 50.239203692000075 ], [ -118.599890140999889, 50.239045012000091 ], [ -118.599899132999937, 50.238990068000078 ], [ -118.59980296099998, 50.238983601000015 ], [ -118.599621670999923, 50.238855893000029 ], [ -118.600188154999984, 50.235394718000087 ], [ -118.60087009199999, 50.235440578000052 ], [ -118.605765656999921, 50.235769681000072 ], [ -118.605763239999987, 50.235784465000016 ], [ -118.608563370999974, 50.235972603000093 ], [ -118.608471856999984, 50.236532419000099 ], [ -118.609346685999938, 50.236591183000058 ], [ -118.609070275999954, 50.238282155000022 ], [ -118.608801971999952, 50.239923417000071 ], [ -118.61015468799998, 50.240014268000046 ], [ -118.609948555999964, 50.241275364000025 ], [ -118.611575832999961, 50.241384631000081 ], [ -118.611422345, 50.242323805000062 ], [ -118.611546397999945, 50.242332134000087 ], [ -118.611252522999948, 50.244130249000136 ], [ -118.611239424999951, 50.244127306000124 ], [ -118.610489576999925, 50.243841100000061 ], [ -118.610030774, 50.243732578000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "195.4", "sL_BldgLoss": "195.4", "sL_StrLoss": "195.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000096AB06FEC3A35DC03C418B3AAD064940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.555782632999936, 50.054086115000068 ], [ -118.555887759999948, 50.053444890000087 ], [ -118.555751275999938, 50.053435616000101 ], [ -118.556337518999982, 50.049859544000107 ], [ -118.557843560999942, 50.049961867000029 ], [ -118.561891952999986, 50.05023681600003 ], [ -118.561786916999907, 50.050878050000058 ], [ -118.561923394999937, 50.05088731700004 ], [ -118.561337574999982, 50.054463413000072 ], [ -118.558555008999946, 50.054274454000087 ], [ -118.555782632999936, 50.054086115000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "140.3", "sL_BldgLoss": "140.3", "sL_StrLoss": "140.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B3D90A356A75DC0D3544FE69F1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.612166128999959, 50.237279794000116 ], [ -118.617743961999963, 50.237654152000033 ], [ -118.617362996999958, 50.239987330000098 ], [ -118.617160129999945, 50.241229668000095 ], [ -118.611581862999941, 50.240855281000051 ], [ -118.611903629999944, 50.238886259000019 ], [ -118.612166128999959, 50.237279794000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10860500", "BldgCostT": "7490000", "sL_LossRatio": "1", "sL_AssetLoss": "557", "sL_BldgLoss": "557", "sL_StrLoss": "557", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B535221807A75DC0F99BD4C0241C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.608605894999954, 50.225568430000109 ], [ -118.609184668999944, 50.222026733000114 ], [ -118.608986948999927, 50.222013448000048 ], [ -118.609100007999942, 50.221321559000039 ], [ -118.607646955999911, 50.221223912000063 ], [ -118.607816033999924, 50.220189367000081 ], [ -118.60607716899996, 50.220072488000014 ], [ -118.606031597999959, 50.220351273000063 ], [ -118.600455986999947, 50.219976314000107 ], [ -118.601040861999977, 50.216400788000115 ], [ -118.601990353999938, 50.216464662000135 ], [ -118.60206313799999, 50.216019610000032 ], [ -118.607638273999953, 50.216394489000066 ], [ -118.607611103999886, 50.216560758000035 ], [ -118.611711749999984, 50.216836306000104 ], [ -118.61182050499994, 50.21617043100008 ], [ -118.617395740999939, 50.216544817000106 ], [ -118.616812153999931, 50.220120429000069 ], [ -118.614953489999934, 50.219995650000044 ], [ -118.614568407, 50.22235412700006 ], [ -118.614766127999985, 50.222367403000092 ], [ -118.614182257999957, 50.225942974000077 ], [ -118.608605894999954, 50.225568430000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160584", "BldgCostT": "4938334", "sL_LossRatio": "1", "sL_AssetLoss": "382.1", "sL_BldgLoss": "382.1", "sL_StrLoss": "382.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A867077D65A95DC05D263748101F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.63707778899996, 50.246350881000097 ], [ -118.637660116999896, 50.242775283000114 ], [ -118.643206855999964, 50.24314621400007 ], [ -118.643730209999958, 50.239929813000039 ], [ -118.643889820999973, 50.239940483000026 ], [ -118.644026642999904, 50.239099518000053 ], [ -118.649604960999952, 50.239472266000099 ], [ -118.649355229999941, 50.241008350000051 ], [ -118.654433515999983, 50.241347436000069 ], [ -118.654351134999914, 50.241854493000055 ], [ -118.654774142999941, 50.241882727000124 ], [ -118.654756529999972, 50.241991137000042 ], [ -118.655804817000018, 50.242061099000104 ], [ -118.655492104999922, 50.243986091000082 ], [ -118.657006912999961, 50.244087170000057 ], [ -118.656832047999956, 50.245163757000057 ], [ -118.656211882999912, 50.245027441000111 ], [ -118.654757576999927, 50.244707768000055 ], [ -118.653932981999915, 50.244526489000094 ], [ -118.650788715999965, 50.243852100000133 ], [ -118.649726918999988, 50.243731489000076 ], [ -118.649663749999945, 50.243729868000095 ], [ -118.648611483999943, 50.243702815000141 ], [ -118.648186707, 50.243691888000086 ], [ -118.647075320999988, 50.243720704000104 ], [ -118.645961389999954, 50.243868484000053 ], [ -118.645119833999942, 50.244044149000032 ], [ -118.644849290999929, 50.244100601000113 ], [ -118.644055419999987, 50.244326377000093 ], [ -118.644177795, 50.243574264000067 ], [ -118.643180375999989, 50.243507594000107 ], [ -118.642992506999931, 50.244662064000124 ], [ -118.639353289999988, 50.245870704000104 ], [ -118.637768243999943, 50.24639706900011 ], [ -118.63707778899996, 50.246350881000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9579667", "BldgCostT": "6606667", "sL_LossRatio": "1", "sL_AssetLoss": "471", "sL_BldgLoss": "471", "sL_StrLoss": "471", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BE2900DA4AD5DC0E9201AA316204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.714998027999968, 50.25540883499999 ], [ -118.715468037999955, 50.252492450000055 ], [ -118.714322205999935, 50.252416622000041 ], [ -118.714334808999965, 50.252338427000012 ], [ -118.70884974199997, 50.251975270000074 ], [ -118.708938990999968, 50.251421942000043 ], [ -118.706177397999951, 50.251238997000058 ], [ -118.706182324999958, 50.251208465000097 ], [ -118.70577039799997, 50.251181170000081 ], [ -118.705392016999951, 50.250504803000084 ], [ -118.70441591099997, 50.24987240500009 ], [ -118.703904888999958, 50.249681608000067 ], [ -118.702532763999926, 50.249682605000075 ], [ -118.702635661999949, 50.249045180000095 ], [ -118.702904924999956, 50.247377071000123 ], [ -118.702974261999927, 50.247381668000052 ], [ -118.703023636999902, 50.247075773000041 ], [ -118.708603418999957, 50.247445538000086 ], [ -118.708593816999922, 50.24750506500007 ], [ -118.709209103999981, 50.247545822000099 ], [ -118.709182270999946, 50.247712204000123 ], [ -118.710888347999955, 50.247825195000075 ], [ -118.71093006699999, 50.247566454 ], [ -118.71650997299993, 50.247935819000112 ], [ -118.716425232999882, 50.248461782000106 ], [ -118.717525676999969, 50.248534592000077 ], [ -118.717514924999989, 50.248601328000049 ], [ -118.718230559999895, 50.248648672000066 ], [ -118.718207001999943, 50.248794923000077 ], [ -118.719049445999971, 50.248850650000072 ], [ -118.719029572999929, 50.248974038000028 ], [ -118.719696232999937, 50.249018132000018 ], [ -118.719673933999928, 50.24915659300008 ], [ -118.720478617999945, 50.249209811000121 ], [ -118.720082391999966, 50.251670280000077 ], [ -118.720008962999955, 50.252126229000062 ], [ -118.721154797999972, 50.252201999000079 ], [ -118.720578931999967, 50.25577799000007 ], [ -118.714998027999968, 50.25540883499999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "103.6", "sL_BldgLoss": "103.6", "sL_StrLoss": "103.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003CB203F8B8A35DC0B78D2F6F48184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.555665707999935, 50.187734489000057 ], [ -118.561236990999987, 50.188111725000034 ], [ -118.560649348999902, 50.191687171000105 ], [ -118.555077631999936, 50.191309907000083 ], [ -118.555281226999981, 50.190072155000081 ], [ -118.555339179999947, 50.190030794000116 ], [ -118.555468526999945, 50.189881676 ], [ -118.555559857999967, 50.189776386000098 ], [ -118.555392951999934, 50.189668662000081 ], [ -118.555385287999911, 50.189663711000087 ], [ -118.555351944999941, 50.189642195 ], [ -118.555665707999935, 50.187734489000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "1", "sL_AssetLoss": "215.8", "sL_BldgLoss": "215.8", "sL_StrLoss": "215.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F215BF1E8AF5DC09F1717DCC9204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.747810369999939, 50.259233786000053 ], [ -118.74801277899995, 50.257972281000029 ], [ -118.744785420999932, 50.257759660000083 ], [ -118.745098077999899, 50.255811773000083 ], [ -118.745359405000016, 50.254183551000033 ], [ -118.745409344999985, 50.254186842000109 ], [ -118.74556935, 50.253189853000045 ], [ -118.751150227999958, 50.253557465 ], [ -118.751084273999979, 50.25396875200007 ], [ -118.751430648999971, 50.253991558000052 ], [ -118.751128488999953, 50.255875778000075 ], [ -118.75085714699992, 50.257567700000088 ], [ -118.750460798999939, 50.257541603000071 ], [ -118.750419154999975, 50.257801248000042 ], [ -118.753646542999974, 50.258013705000067 ], [ -118.753488852999951, 50.258997268000087 ], [ -118.752151683999941, 50.2590742000001 ], [ -118.750676813, 50.259042901000029 ], [ -118.750140485999935, 50.258933194000051 ], [ -118.748456089999948, 50.258877697000088 ], [ -118.748094686999977, 50.259018708000092 ], [ -118.747810369999939, 50.259233786000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "69.5", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002047314813A35DC0F386C11DA4174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.545067029999956, 50.183004537000052 ], [ -118.550637643999963, 50.183382312000049 ], [ -118.550049228999953, 50.186957723000106 ], [ -118.548615878999925, 50.186860548000041 ], [ -118.548558984999957, 50.186814601000059 ], [ -118.547492521999928, 50.186192802000072 ], [ -118.547086503999964, 50.185921214000061 ], [ -118.546919302999981, 50.185765297000096 ], [ -118.546534111999989, 50.185273703000114 ], [ -118.546210999, 50.185012308000083 ], [ -118.54600982, 50.184917306000102 ], [ -118.54540678699999, 50.18469693 ], [ -118.545208502999955, 50.184624460000023 ], [ -118.54502279899998, 50.184556609000047 ], [ -118.544829382999922, 50.184447556000073 ], [ -118.545067029999956, 50.183004537000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "172.8", "sL_BldgLoss": "172.8", "sL_StrLoss": "172.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054882E4585A75DC040CFB062821A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.614772142, 50.208919736000041 ], [ -118.614834156999947, 50.208539804000054 ], [ -118.614088445999982, 50.20848971800006 ], [ -118.614452189999966, 50.20626137100006 ], [ -118.614672099999922, 50.20491406700004 ], [ -118.62024597599995, 50.205288314000072 ], [ -118.620184010999978, 50.205668251000098 ], [ -118.62092968099995, 50.205718296000121 ], [ -118.620754622999982, 50.206791725000066 ], [ -118.620346511999969, 50.209293977000094 ], [ -118.614772142, 50.208919736000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9959084", "BldgCostT": "6868334", "sL_LossRatio": "1", "sL_AssetLoss": "522", "sL_BldgLoss": "522", "sL_StrLoss": "522", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000069426A45A1A55DC0B9BF59CE4E1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.588762158999884, 50.233476159000119 ], [ -118.588842783999937, 50.232984244000058 ], [ -118.588038171999969, 50.232930040000049 ], [ -118.588075451999927, 50.232702599000106 ], [ -118.584695584, 50.232474848000031 ], [ -118.584931201999964, 50.231038002000048 ], [ -118.582643619999928, 50.230883794000079 ], [ -118.583230035999932, 50.227308413000102 ], [ -118.584215371999946, 50.227374841000085 ], [ -118.584521491999965, 50.227395478000084 ], [ -118.584567587999985, 50.227114363000084 ], [ -118.58396330399998, 50.227073627000081 ], [ -118.582227471999914, 50.226956591000075 ], [ -118.582813872000017, 50.223381194000041 ], [ -118.582853301999961, 50.223383853000108 ], [ -118.588389752999902, 50.223757042000081 ], [ -118.588130643999975, 50.225338139000058 ], [ -118.590470696999958, 50.225495787000085 ], [ -118.590019355999942, 50.22825048600005 ], [ -118.591742747999945, 50.228366557000108 ], [ -118.591606381999924, 50.229198973000059 ], [ -118.593613348999938, 50.229334107000042 ], [ -118.593555591999944, 50.22968675200007 ], [ -118.594200854999912, 50.229730192000098 ], [ -118.594120292999932, 50.230222114000121 ], [ -118.594924864999911, 50.230276272000033 ], [ -118.594396271999969, 50.233504032000049 ], [ -118.59433933199989, 50.233851702000052 ], [ -118.588762158999884, 50.233476159000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "1", "sL_AssetLoss": "137.7", "sL_BldgLoss": "137.7", "sL_StrLoss": "137.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002630632BA4A75DC0BA0B7B77B71C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.617810329999941, 50.221884681000091 ], [ -118.623386317999959, 50.222258762000159 ], [ -118.622803127999944, 50.225834379000084 ], [ -118.621157808999925, 50.225724029000077 ], [ -118.620980101999933, 50.226813217000092 ], [ -118.615403574999931, 50.226439017000061 ], [ -118.615987355999934, 50.222863442000069 ], [ -118.617632558999944, 50.22297387 ], [ -118.617810329999941, 50.221884681000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "63.6", "sL_BldgLoss": "63.6", "sL_StrLoss": "63.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000439747693CB95DC0A6E1E701A4474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.893016467999971, 50.557874350000127 ], [ -118.896386904999929, 50.558090307000093 ], [ -118.896314805999978, 50.558545808000098 ], [ -118.896086216999961, 50.559362797000048 ], [ -118.895873826999917, 50.55993699100005 ], [ -118.895738809999955, 50.560302106000094 ], [ -118.89568374, 50.56042039800009 ], [ -118.89512494899995, 50.561621239000054 ], [ -118.892450336999929, 50.561449859000078 ], [ -118.893016467999971, 50.557874350000127 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.5", "sL_BldgLoss": "37.5", "sL_StrLoss": "37.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068F3309BDDB95DC03C8CE654F4454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.903445264999945, 50.545696781000096 ], [ -118.90787033499997, 50.545979952000032 ], [ -118.908116783999972, 50.546119393000048 ], [ -118.907340017999957, 50.546132195000084 ], [ -118.906512602999967, 50.546261795000099 ], [ -118.904217300999932, 50.546767410000015 ], [ -118.903829692, 50.546935411000049 ], [ -118.902994709999945, 50.547560708000063 ], [ -118.90214255699999, 50.548473511000097 ], [ -118.902475317999972, 50.546368444000045 ], [ -118.902911101999948, 50.546186287000104 ], [ -118.903445264999945, 50.545696781000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020867", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "32.4", "sL_BldgLoss": "32.4", "sL_StrLoss": "32.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D169117C8AF5DC0543D3655394E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.75048219699994, 50.612974592000079 ], [ -118.749279682999912, 50.612515996000042 ], [ -118.748540589999962, 50.612427704000027 ], [ -118.74737141199995, 50.612148489000056 ], [ -118.746381096999954, 50.612145695000066 ], [ -118.745822905999916, 50.612352211000079 ], [ -118.74555578399999, 50.612373596000047 ], [ -118.744972879999978, 50.612265294000046 ], [ -118.743954710999901, 50.611885109000042 ], [ -118.742871391999927, 50.611658602000098 ], [ -118.742096014999959, 50.610923703000033 ], [ -118.741826878, 50.610505 ], [ -118.741662408999943, 50.609905392000023 ], [ -118.741087921999949, 50.608861502000067 ], [ -118.741082488999922, 50.608330198000033 ], [ -118.741463901999964, 50.607965610000051 ], [ -118.741525188999901, 50.607703601 ], [ -118.741481, 50.607224181000106 ], [ -118.741648555, 50.607235138000149 ], [ -118.741544622999967, 50.607877056000071 ], [ -118.741778295999922, 50.607892335000017 ], [ -118.741738469999973, 50.60813831800003 ], [ -118.743241667999925, 50.608236596000026 ], [ -118.742826185999974, 50.61080314600013 ], [ -118.74391902399995, 50.610874581000097 ], [ -118.743892982999981, 50.611035462000125 ], [ -118.744420919000021, 50.611069968000095 ], [ -118.744301688999954, 50.611806593000033 ], [ -118.747869351999967, 50.612039707000122 ], [ -118.747889885999953, 50.611912787000016 ], [ -118.749083044999963, 50.611990723000076 ], [ -118.74909883399998, 50.611893114000026 ], [ -118.754724234999941, 50.612260383000027 ], [ -118.754613993999968, 50.612942426000124 ], [ -118.75409969899998, 50.612928987000075 ], [ -118.75328491399992, 50.613075695000063 ], [ -118.752647892999931, 50.61305009100009 ], [ -118.752061598999916, 50.612879190000079 ], [ -118.75104580199999, 50.612884892000118 ], [ -118.750724704999982, 50.612988794000024 ], [ -118.75048219699994, 50.612974592000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.2", "sL_BldgLoss": "31.2", "sL_StrLoss": "31.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098C493BC3EB75DC0D7BB0533A24C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.8624451, 50.597162050000058 ], [ -118.864624454999927, 50.597302178000071 ], [ -118.864565582999916, 50.59756609800008 ], [ -118.864537210999913, 50.597956761000084 ], [ -118.864523823999946, 50.598141300000087 ], [ -118.864450587999954, 50.598574495000044 ], [ -118.864226708999965, 50.59916060200009 ], [ -118.863958800999981, 50.599611995000075 ], [ -118.863717734999952, 50.599845916000049 ], [ -118.863669907999935, 50.5998923060001 ], [ -118.863505204999953, 50.599986460000082 ], [ -118.86331714499994, 50.600094020000029 ], [ -118.863268181999942, 50.600121995000059 ], [ -118.862814163999957, 50.600302135000071 ], [ -118.861886737, 50.600670061000102 ], [ -118.8624451, 50.597162050000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "1", "sL_AssetLoss": "175.3", "sL_BldgLoss": "175.3", "sL_StrLoss": "175.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9535B6628BF5DC05ADD24E5F2454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.987428198999964, 50.547398991000115 ], [ -118.986987915999919, 50.547265597000035 ], [ -118.986117412999974, 50.547234901000131 ], [ -118.98496449699995, 50.547277505000146 ], [ -118.984542021999943, 50.547232037000079 ], [ -118.984497109999921, 50.547227189000111 ], [ -118.984355135999976, 50.547183870000033 ], [ -118.984172111999911, 50.547128004000051 ], [ -118.983957225999958, 50.547025126000015 ], [ -118.98261191499995, 50.546381102000048 ], [ -118.982079385999981, 50.546220995000049 ], [ -118.981589784999954, 50.546158402000096 ], [ -118.980750676999932, 50.546144997000049 ], [ -118.98065189099998, 50.546153775000079 ], [ -118.98100301199996, 50.543907417000085 ], [ -118.983146080999973, 50.544043076000072 ], [ -118.983177020999946, 50.543845065000014 ], [ -118.988795802999974, 50.544200543000088 ], [ -118.98842554699999, 50.546571929000059 ], [ -118.99233115499996, 50.546818849000012 ], [ -118.991773044999931, 50.550394909 ], [ -118.9899696799999, 50.550280914000034 ], [ -118.989943612999966, 50.550260269000113 ], [ -118.9898136, 50.550157313000071 ], [ -118.988654075999989, 50.548714946000104 ], [ -118.987762005999983, 50.547605193000059 ], [ -118.987615179999949, 50.547514482000047 ], [ -118.987428198999964, 50.547398991000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "94.8", "sL_BldgLoss": "94.8", "sL_StrLoss": "94.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B968FE640B05DC0685F1666E3504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.75250823099995, 50.630038756000133 ], [ -118.757064098999962, 50.630335953 ], [ -118.756909818999986, 50.631290355000111 ], [ -118.756486244999977, 50.633910451000062 ], [ -118.755961692999961, 50.633876242000071 ], [ -118.754412671999944, 50.633775207000042 ], [ -118.750858120999922, 50.633543280000026 ], [ -118.751436417999969, 50.629968810000037 ], [ -118.75250823099995, 50.630038756000133 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "62.4", "sL_BldgLoss": "62.4", "sL_StrLoss": "62.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BE5CCFA7DB15DC0D92E86D5CC4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.770170253999936, 50.609699364000036 ], [ -118.770746709999941, 50.606124691000105 ], [ -118.77637156599998, 50.606490869000012 ], [ -118.77604637499995, 50.608509053000098 ], [ -118.77782426099999, 50.608624733000113 ], [ -118.777746337999943, 50.609108430000063 ], [ -118.775902296999931, 50.608929801000023 ], [ -118.773911588999965, 50.609040899000036 ], [ -118.772701888999975, 50.609166294000062 ], [ -118.770977710999958, 50.60952520900004 ], [ -118.770410461999973, 50.609715007000055 ], [ -118.770170253999936, 50.609699364000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "107.7", "sL_BldgLoss": "107.7", "sL_StrLoss": "107.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025C73AA806BF5DC069B4C99FF7434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.981399790999944, 50.53261748700006 ], [ -118.981958503999962, 50.529041403000093 ], [ -118.982627010999977, 50.529083733000064 ], [ -118.98264921699996, 50.528941588000038 ], [ -118.982774010999918, 50.528930111000072 ], [ -118.98329080099991, 50.528962806000024 ], [ -118.984619421999966, 50.529217504000087 ], [ -118.985678295999918, 50.529311610000065 ], [ -118.986695280000021, 50.529353093000033 ], [ -118.987925805999978, 50.529403292000076 ], [ -118.988249029999963, 50.529406690000044 ], [ -118.987740572999954, 50.5326640420001 ], [ -118.987072005999948, 50.53262174200011 ], [ -118.987017158999933, 50.532973059000014 ], [ -118.981399790999944, 50.53261748700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287667", "BldgCostT": "3646667", "sL_LossRatio": "1", "sL_AssetLoss": "319.7", "sL_BldgLoss": "319.7", "sL_StrLoss": "319.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000069AA690F22C05DC073037079CD444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.009863404999919, 50.542544608000107 ], [ -119.009138315999948, 50.542413610000061 ], [ -119.00912890699999, 50.54241423800007 ], [ -119.00914005599999, 50.542342619000131 ], [ -119.007964705999925, 50.542268497000094 ], [ -119.007963931999882, 50.542273466000047 ], [ -119.008162676999959, 50.542286001000029 ], [ -119.008129035999971, 50.542502084000077 ], [ -119.007164290999953, 50.542779592000095 ], [ -119.006166994999973, 50.542923392000098 ], [ -119.005687214999966, 50.542894904 ], [ -119.004455812999964, 50.542476201000071 ], [ -119.003531394999953, 50.541845012000046 ], [ -119.006101194999943, 50.542007162000054 ], [ -119.006103094999943, 50.541994964000011 ], [ -119.005803222999958, 50.541976046000059 ], [ -119.005919297999981, 50.541230698000042 ], [ -119.004521632999968, 50.541142512000086 ], [ -119.004548232999952, 50.540971750000061 ], [ -119.004267037999952, 50.540954006000057 ], [ -119.004355405999917, 50.540386693000059 ], [ -119.002323515999962, 50.540258453000014 ], [ -119.002363345999981, 50.540002817000094 ], [ -119.002124625999954, 50.539987748000065 ], [ -119.002266227999954, 50.539078930000102 ], [ -119.001181060999926, 50.539010423000057 ], [ -119.001217992999941, 50.538773412000047 ], [ -119.001169076999972, 50.538770324000026 ], [ -119.001194164999973, 50.538609326000056 ], [ -119.001190988999937, 50.538609125000043 ], [ -119.00129059899993, 50.53796988100008 ], [ -119.00021710099999, 50.537902099000114 ], [ -119.000425629999953, 50.536564023000082 ], [ -118.999691877999965, 50.536517687000085 ], [ -118.999775809999932, 50.535979150000102 ], [ -118.999689314999912, 50.535973687000116 ], [ -118.999743713000015, 50.535624644000031 ], [ -118.995045893999986, 50.535327860000095 ], [ -118.995158402999962, 50.534606414000073 ], [ -118.994304418999917, 50.534552442000027 ], [ -118.994460684999979, 50.533550510000055 ], [ -118.994459694999975, 50.533550448000085 ], [ -118.994462321999933, 50.533533597000073 ], [ -118.994051582999987, 50.533507636000138 ], [ -118.994367843999925, 50.531479809000118 ], [ -118.990805020999957, 50.531254551000103 ], [ -118.991080921, 50.529486267000074 ], [ -118.991391197999974, 50.529533993000044 ], [ -118.991959985999983, 50.529705392000025 ], [ -118.993077288999984, 50.530287410000064 ], [ -118.993881496999961, 50.530706289000086 ], [ -118.994790613999967, 50.531287403000071 ], [ -118.99591621, 50.532135904000015 ], [ -118.996434553999933, 50.532469271000103 ], [ -118.997312912, 50.533034156000085 ], [ -118.997902396999947, 50.533413255000013 ], [ -118.999099983999912, 50.534183396000138 ], [ -118.999979293999957, 50.534835767000054 ], [ -119.000968816999915, 50.535569908000113 ], [ -119.001230983999932, 50.535783267000085 ], [ -119.001573871999966, 50.536062365000099 ], [ -119.00272469799998, 50.536998911000097 ], [ -119.003015888999954, 50.537177902000032 ], [ -119.003384792999967, 50.53734118700006 ], [ -119.004726911999953, 50.537694009000049 ], [ -119.005241477999903, 50.537914292000039 ], [ -119.006557594999933, 50.538670810000021 ], [ -119.007873082999978, 50.539195308000025 ], [ -119.008528494999908, 50.539531811000074 ], [ -119.009640099999956, 50.540326893000078 ], [ -119.010016178999976, 50.540680995000038 ], [ -119.010403323999938, 50.541347409000124 ], [ -119.01065343499999, 50.54155115400004 ], [ -119.011268120999958, 50.542051900000033 ], [ -119.012261611999946, 50.543169898000095 ], [ -119.012298796999929, 50.54322893100008 ], [ -119.012362213999964, 50.543329595000102 ], [ -119.012388979999969, 50.543372095000052 ], [ -119.012355448000037, 50.543445546000058 ], [ -119.0123018459999, 50.543562951000069 ], [ -119.012300182, 50.543566594000062 ], [ -119.010757574999985, 50.54299749700008 ], [ -119.009863404999919, 50.542544608000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000032C2C2E6AFB85DC0F8E80586C9494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.885046153999951, 50.575047910000151 ], [ -118.887504597999964, 50.575205557000068 ], [ -118.887425788999948, 50.575280099000089 ], [ -118.887368130999931, 50.57535344500009 ], [ -118.887198106999932, 50.575569800000061 ], [ -118.886831988999916, 50.576177506000064 ], [ -118.886418089999921, 50.577131490000049 ], [ -118.886255319999961, 50.577329050000152 ], [ -118.886057716, 50.577568911000121 ], [ -118.885775966999944, 50.577798639000015 ], [ -118.885708681999958, 50.577853491000056 ], [ -118.885136743999965, 50.578154207000075 ], [ -118.884790212, 50.578336381000085 ], [ -118.884492054999967, 50.578542072000047 ], [ -118.885046153999951, 50.575047910000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10995916", "BldgCostT": "7111666", "sL_LossRatio": "1", "sL_AssetLoss": "480.1", "sL_BldgLoss": "480.1", "sL_StrLoss": "480.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007EE7D50816BE5DC03A0C205B9A444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.969710143999976, 50.541799445000045 ], [ -118.969769804999942, 50.541418331000102 ], [ -118.969635968999967, 50.541409843000103 ], [ -118.970195723999922, 50.537833856000113 ], [ -118.970653038999956, 50.537862857000043 ], [ -118.970998132999938, 50.53565780600006 ], [ -118.969338199999953, 50.535552530000061 ], [ -118.969196375999971, 50.53645855600012 ], [ -118.963578715, 50.536102086 ], [ -118.963991487999976, 50.533467108000131 ], [ -118.962922976999891, 50.533399272000096 ], [ -118.962936838999923, 50.533310794000109 ], [ -118.961912351999928, 50.53324574400002 ], [ -118.961950062999975, 50.533005069000133 ], [ -118.961511850999898, 50.533012455000097 ], [ -118.961500665999935, 50.532742816000074 ], [ -118.961077614999923, 50.532749944000102 ], [ -118.961066432999942, 50.532480306000146 ], [ -118.960643384999941, 50.532487433000085 ], [ -118.960627899999949, 50.53211398100003 ], [ -118.96060984599994, 50.531678516000028 ], [ -118.961878966999976, 50.531657132000106 ], [ -118.961890153, 50.531926771000073 ], [ -118.962000137999894, 50.531924917000012 ], [ -118.962275067999926, 50.53017013300007 ], [ -118.962638423999948, 50.53005566900007 ], [ -118.962955189, 50.529955906000062 ], [ -118.963060200999934, 50.529969017000091 ], [ -118.964381001999982, 50.530134002000089 ], [ -118.965074897999941, 50.530384782000112 ], [ -118.965704103999954, 50.530578197000104 ], [ -118.965893604999977, 50.530735587000073 ], [ -118.966078143999965, 50.531030883000042 ], [ -118.966346112999958, 50.531459594000069 ], [ -118.966639700999949, 50.531767088000123 ], [ -118.967007186999979, 50.532246411000095 ], [ -118.967194780999989, 50.53256979100005 ], [ -118.967209988, 50.533006893000106 ], [ -118.967118821999989, 50.533181681 ], [ -118.967180707999944, 50.533283713000081 ], [ -118.967282301999944, 50.53345119100004 ], [ -118.967660186999964, 50.533764090000048 ], [ -118.968898501999917, 50.534497204000047 ], [ -118.96931521899991, 50.534508303000102 ], [ -118.96939246299992, 50.534473276000085 ], [ -118.969617417999956, 50.534371291000099 ], [ -118.970062564, 50.53385061000008 ], [ -118.970092698999935, 50.53381536800007 ], [ -118.970155582999922, 50.53374180200008 ], [ -118.970491978999988, 50.533522894000058 ], [ -118.970503873000013, 50.533517722000063 ], [ -118.970626594999956, 50.533464373000072 ], [ -118.970682196999974, 50.533440203000062 ], [ -118.970768404999944, 50.533420451000055 ], [ -118.971126518999966, 50.533338400000098 ], [ -118.971597107999969, 50.533349530000059 ], [ -118.971854191999967, 50.533355598000064 ], [ -118.972334194999959, 50.53343299200003 ], [ -118.972472013999948, 50.533504006000037 ], [ -118.973153817999972, 50.534776086000051 ], [ -118.973408195, 50.534953798000053 ], [ -118.973750700999943, 50.535012594000079 ], [ -118.973898213999959, 50.534994790000042 ], [ -118.974028703999949, 50.534930906000106 ], [ -118.974806619999953, 50.534500705000035 ], [ -118.975226792999976, 50.534307122000079 ], [ -118.975402703999947, 50.534226090000104 ], [ -118.975720708000026, 50.534115401000101 ], [ -118.976834113999985, 50.533860888000014 ], [ -118.977201892999943, 50.533712611000063 ], [ -118.977363274999959, 50.533614501000031 ], [ -118.977449508999911, 50.533526641000023 ], [ -118.977638768999952, 50.533538632000024 ], [ -118.977079657999951, 50.537114675000062 ], [ -118.976449904999953, 50.537074774000075 ], [ -118.976188009999987, 50.538749491000068 ], [ -118.975864511999973, 50.538728993000099 ], [ -118.975572950999918, 50.540593167000033 ], [ -118.975526597999973, 50.540604802000082 ], [ -118.97459920599999, 50.541034883000123 ], [ -118.973686898, 50.541509212000044 ], [ -118.973173612, 50.542019032000034 ], [ -118.969710143999976, 50.541799445000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "93.6", "sL_BldgLoss": "93.6", "sL_StrLoss": "93.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005ED36AE531B35DC0CC5D4BC8874C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.797395514999963, 50.595923871000124 ], [ -118.803019313000036, 50.596288708000074 ], [ -118.802445546999977, 50.59986359000002 ], [ -118.796821306999931, 50.599498725000089 ], [ -118.797395514999963, 50.595923871000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "62.4", "sL_BldgLoss": "62.4", "sL_StrLoss": "62.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000001284E0795B15DC0E9C4D44C2D4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.771936709999935, 50.609886216000099 ], [ -118.771948171999924, 50.609815138000052 ], [ -118.771630934999948, 50.609794482000048 ], [ -118.77183300199999, 50.609728806000099 ], [ -118.77387199599994, 50.609436892000076 ], [ -118.77566370699995, 50.609399787000086 ], [ -118.777666030999953, 50.60960690400001 ], [ -118.777609852999959, 50.609955602000063 ], [ -118.777248334999939, 50.612199432000054 ], [ -118.771622757999964, 50.611833301000047 ], [ -118.771936709999935, 50.609886216000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "41.6", "sL_BldgLoss": "41.6", "sL_StrLoss": "41.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059E6C6572FBC5DC02D5EEAEFBE454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.937130805999985, 50.545799632000069 ], [ -118.937423759999945, 50.543937037000028 ], [ -118.938027808999948, 50.544086988000075 ], [ -118.93944039199998, 50.544125499000089 ], [ -118.940897688999883, 50.543859109000053 ], [ -118.942013190999916, 50.543515904000095 ], [ -118.94286359799996, 50.543259486000053 ], [ -118.943206884999881, 50.543246804000034 ], [ -118.942749467999988, 50.546157433000076 ], [ -118.937130805999985, 50.545799632000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83619250", "BldgCostT": "58165000", "sL_LossRatio": "1", "sL_AssetLoss": "873.3", "sL_BldgLoss": "873.3", "sL_StrLoss": "873.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2D750A45AC05DC04612BD8C62464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.008334309999938, 50.555858702000087 ], [ -119.007368998999965, 50.555524289000076 ], [ -119.0070652199999, 50.555521180000035 ], [ -119.006941185999949, 50.555519901000054 ], [ -119.00626379699996, 50.555423008000041 ], [ -119.005861924999977, 50.555350661000077 ], [ -119.003586094999946, 50.554940904000063 ], [ -119.002937174999886, 50.554824058000108 ], [ -119.001810005, 50.554621099000038 ], [ -119.000551293999962, 50.554367404000097 ], [ -118.99998026899999, 50.554142495000043 ], [ -118.99800504199996, 50.553364519000034 ], [ -118.998045652, 50.553104126000086 ], [ -118.998329653999932, 50.553122059000096 ], [ -118.998429642999938, 50.552480865000085 ], [ -118.994539414999963, 50.552235166000052 ], [ -118.994102313999917, 50.552161520000027 ], [ -118.99465315, 50.548631039000071 ], [ -119.000272617999926, 50.548985934000029 ], [ -118.999779620999917, 50.55214826900005 ], [ -119.004421807999989, 50.552441225000031 ], [ -119.004374981999916, 50.552741762000089 ], [ -119.004778067999922, 50.552767190000061 ], [ -119.00494392899995, 50.551702580000075 ], [ -119.005811847999979, 50.551757327000075 ], [ -119.005840497999912, 50.551573400000102 ], [ -119.007917001999942, 50.551704354000094 ], [ -119.008076848999934, 50.55067784900006 ], [ -119.008261616999917, 50.550689499000057 ], [ -119.008363654999982, 50.550034192000055 ], [ -119.007814472999939, 50.549999562000018 ], [ -119.007771635999958, 50.550274645000066 ], [ -119.006183860999968, 50.550174510000033 ], [ -119.006055299999971, 50.550999882000021 ], [ -119.000435535999912, 50.550645280000069 ], [ -119.000714268999971, 50.548857171000094 ], [ -119.000394458999907, 50.548836983000058 ], [ -119.000951865, 50.54526087400005 ], [ -119.00153858699997, 50.545297911000105 ], [ -119.00198827899996, 50.542412190000036 ], [ -119.002265656999981, 50.542429699000103 ], [ -119.002299410999967, 50.542213075000113 ], [ -119.003074414999944, 50.542869303 ], [ -119.004236493999969, 50.543316504000067 ], [ -119.005516084999925, 50.54352870300005 ], [ -119.007046592000023, 50.543349312000096 ], [ -119.008139130999965, 50.543105070000102 ], [ -119.00772858, 50.545741923000023 ], [ -119.009020391, 50.545823385000105 ], [ -119.008921575000016, 50.546458120000111 ], [ -119.009054231999968, 50.546466485000046 ], [ -119.008530983999975, 50.54982729000001 ], [ -119.009247292999945, 50.549872453000077 ], [ -119.009563444999912, 50.547841676000054 ], [ -119.009809135999888, 50.547857166000064 ], [ -119.009813835000031, 50.54782698100005 ], [ -119.010526049999967, 50.547871880000052 ], [ -119.010583946999944, 50.547499917000081 ], [ -119.010456209999958, 50.547491864000037 ], [ -119.010640404999918, 50.54630845600019 ], [ -119.009682167999969, 50.546248046000052 ], [ -119.01004466099999, 50.54391923700009 ], [ -119.008905804999969, 50.54384742900011 ], [ -119.009034263999951, 50.543022228000069 ], [ -119.00929319499997, 50.543067303000036 ], [ -119.010182316999959, 50.543420500000146 ], [ -119.010689789999944, 50.543735210000179 ], [ -119.011323797999964, 50.543994386000072 ], [ -119.011864178999986, 50.544119793000021 ], [ -119.012035560999962, 50.544158364000054 ], [ -119.012028002999983, 50.544208704000049 ], [ -119.012004091, 50.544368897000034 ], [ -119.012068299999953, 50.544548988000081 ], [ -119.012207108000013, 50.544695888000064 ], [ -119.012755288999955, 50.545102407000059 ], [ -119.012896198999982, 50.545354090000075 ], [ -119.012933310999955, 50.545590304000065 ], [ -119.012926427999915, 50.546288509000057 ], [ -119.012919782999987, 50.546962582000084 ], [ -119.012893094999981, 50.551531769000064 ], [ -119.012885877999963, 50.55277275600011 ], [ -119.012876795999944, 50.554323099000086 ], [ -119.012874417999939, 50.55462998800003 ], [ -119.013225151999933, 50.555204720000113 ], [ -119.013378598999964, 50.555456194000037 ], [ -119.013731025999931, 50.555690493000085 ], [ -119.014099416999926, 50.555830206000103 ], [ -119.013766714999946, 50.555916718000077 ], [ -119.013404104999935, 50.555948917000066 ], [ -119.012923108999928, 50.556031502000103 ], [ -119.010894391999955, 50.556594316000044 ], [ -119.01029999, 50.556657009000091 ], [ -119.010365534999949, 50.556539949000069 ], [ -119.010244706999984, 50.556495547000047 ], [ -119.0100324799999, 50.556410902000039 ], [ -119.009849315999986, 50.556319542000068 ], [ -119.009655905999963, 50.556223061000068 ], [ -119.00927040099999, 50.556046605000127 ], [ -119.008751234999963, 50.555926342000113 ], [ -119.008334309999938, 50.555858702000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "76.8", "sL_BldgLoss": "76.8", "sL_StrLoss": "76.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D41EAFAEEAD5DC0B4628FBBCE414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.716133674999952, 50.516016341000103 ], [ -118.716270638999973, 50.515171555000038 ], [ -118.71576242299993, 50.515138133000058 ], [ -118.716341983999882, 50.511563332000065 ], [ -118.717256370999962, 50.511623463000056 ], [ -118.718176167999928, 50.511683941000058 ], [ -118.71835021399994, 50.512324294000045 ], [ -118.718919584999952, 50.512873993000092 ], [ -118.719460478999977, 50.513756994000104 ], [ -118.719865086999945, 50.516261654000083 ], [ -118.718978325999956, 50.516203368000021 ], [ -118.716133674999952, 50.516016341000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "63.6", "sL_BldgLoss": "63.6", "sL_StrLoss": "63.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D0C12CBFBB85DC0E3B1342ACF484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.888441476999944, 50.566653167000034 ], [ -118.893741563, 50.566992867000089 ], [ -118.893457492999929, 50.567378590000082 ], [ -118.892528193999951, 50.568182299000043 ], [ -118.892001478999987, 50.568693902000113 ], [ -118.89181001599999, 50.568905706000066 ], [ -118.890730114999926, 50.570100295000067 ], [ -118.890616584999933, 50.570225897000086 ], [ -118.890026905999918, 50.570878198000024 ], [ -118.889466081999956, 50.571498502000104 ], [ -118.889269004999903, 50.571783793000165 ], [ -118.889058306999914, 50.57226238600007 ], [ -118.888897033999982, 50.572939529000081 ], [ -118.888143175, 50.572891201000047 ], [ -118.888008400999951, 50.572448713 ], [ -118.888077916000015, 50.571728101000168 ], [ -118.889607704999946, 50.570074610000027 ], [ -118.889756615999914, 50.569560395000039 ], [ -118.889719905999925, 50.568966508000102 ], [ -118.889209584999946, 50.568237303000053 ], [ -118.888339076999941, 50.567299376000044 ], [ -118.888441476999944, 50.566653167000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.3", "sL_BldgLoss": "44.3", "sL_StrLoss": "44.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7E7A22123BC5DC009988E737A454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.937693194999952, 50.54222382800009 ], [ -118.942814094999946, 50.542549945000076 ], [ -118.942305001999969, 50.542729703000049 ], [ -118.941593615999949, 50.542903496000065 ], [ -118.940413297999967, 50.543372095000052 ], [ -118.938746221999978, 50.543346397000036 ], [ -118.937551235999976, 50.543126496000085 ], [ -118.937693194999952, 50.54222382800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14858833", "BldgCostT": "8773333", "sL_LossRatio": "1", "sL_AssetLoss": "295", "sL_BldgLoss": "295", "sL_StrLoss": "295", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083E4AE6F71AF5DC05F73FD71314C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.738761893999978, 50.599488812000068 ], [ -118.739044585999949, 50.599088598000087 ], [ -118.738892897999932, 50.598047494000056 ], [ -118.739161608999922, 50.596919503000031 ], [ -118.739244080999953, 50.594948400000071 ], [ -118.738736401999986, 50.594163592000022 ], [ -118.738135211999946, 50.592841992000061 ], [ -118.738129807999911, 50.591879195000047 ], [ -118.73835328399997, 50.591444794000033 ], [ -118.739500892999956, 50.590410796000079 ], [ -118.739807209999938, 50.589876793000094 ], [ -118.740260513999957, 50.588744501000086 ], [ -118.740415299999924, 50.588005409000097 ], [ -118.741107187999887, 50.586807597000131 ], [ -118.741179798999966, 50.58650989500007 ], [ -118.74113141, 50.585986160000111 ], [ -118.743343297999942, 50.586130851000064 ], [ -118.744072316999947, 50.586178530000034 ], [ -118.743680070999915, 50.588603084000056 ], [ -118.743493996999959, 50.589753150000078 ], [ -118.743370607999964, 50.589745081000054 ], [ -118.743239632999916, 50.590554554000079 ], [ -118.743137838999957, 50.590547896000025 ], [ -118.743037456999971, 50.591168257000056 ], [ -118.742430302999978, 50.591128547000025 ], [ -118.742052624999957, 50.591103845000056 ], [ -118.741961937999989, 50.591664201000071 ], [ -118.74197107099998, 50.591664799000121 ], [ -118.741846685999988, 50.592433347000053 ], [ -118.74184336899999, 50.592453846000105 ], [ -118.742307314999948, 50.59248419100004 ], [ -118.742226928999912, 50.592980899000075 ], [ -118.742501943999969, 50.592998886000025 ], [ -118.74241440599999, 50.593539797000076 ], [ -118.742709273999964, 50.593559082000063 ], [ -118.742634579999944, 50.594020637000092 ], [ -118.742769804999966, 50.594029481000064 ], [ -118.742661294999962, 50.594699988000066 ], [ -118.742838549999959, 50.59471158000008 ], [ -118.74252066199989, 50.596675802000057 ], [ -118.743968151, 50.596770453000076 ], [ -118.743511939999948, 50.599589623000043 ], [ -118.74417314199999, 50.599632853000081 ], [ -118.743829443999957, 50.601756696000088 ], [ -118.743594655999914, 50.603207416000089 ], [ -118.742062581999932, 50.603107244000064 ], [ -118.741974710999912, 50.603650051000045 ], [ -118.741002898999952, 50.603586500000077 ], [ -118.740988877999939, 50.603510696000122 ], [ -118.740819296999945, 50.603144694000044 ], [ -118.74007019699998, 50.602733093000083 ], [ -118.739441481999961, 50.602176202000066 ], [ -118.7391827, 50.60165918800007 ], [ -118.739163584999943, 50.601146491000087 ], [ -118.738910196999925, 50.600817505000087 ], [ -118.738950103999954, 50.600007202000079 ], [ -118.73872917700001, 50.599740797000059 ], [ -118.738761893999978, 50.599488812000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "95.4", "sL_BldgLoss": "95.4", "sL_StrLoss": "95.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043881A3B57BB5DC064CAC9BCBC444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.924219917999977, 50.538901286000026 ], [ -118.924590156999955, 50.536551239000126 ], [ -118.924783246999979, 50.535325518000093 ], [ -118.930400502999973, 50.535683948000027 ], [ -118.930365293999941, 50.535907635000065 ], [ -118.929956853999911, 50.538502329000053 ], [ -118.929751084999936, 50.538395896000061 ], [ -118.928901101999941, 50.538328895000113 ], [ -118.926783981999975, 50.538345990000082 ], [ -118.92636148099993, 50.538380190000098 ], [ -118.925597011, 50.538635104000051 ], [ -118.925182709999945, 50.53896274100002 ], [ -118.924219917999977, 50.538901286000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "81.4", "sL_BldgLoss": "81.4", "sL_StrLoss": "81.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F01D90DF36BE5DC0F1EC76E6B3454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.968991726999946, 50.545982814000091 ], [ -118.969437433999985, 50.543136036000057 ], [ -118.969622897999926, 50.54318690300002 ], [ -118.970176116999951, 50.543295192000116 ], [ -118.970938001000022, 50.543632707000107 ], [ -118.971080081999915, 50.543631296000058 ], [ -118.973316390999955, 50.543125688000082 ], [ -118.973530230999984, 50.542949447000112 ], [ -118.975125110999969, 50.543050520000136 ], [ -118.974675264999945, 50.545926079000076 ], [ -118.973032320999963, 50.545742706000098 ], [ -118.972800819000014, 50.545729728000026 ], [ -118.972421901999923, 50.545708498000046 ], [ -118.971931306999963, 50.545734294000056 ], [ -118.969840996999935, 50.546037007000045 ], [ -118.969307879999945, 50.546043796000028 ], [ -118.968991726999946, 50.545982814000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "64.8", "sL_BldgLoss": "64.8", "sL_StrLoss": "64.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F644F89348B55DC09C1320AF2C4E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.835014528, 50.60909149300003 ], [ -118.835653432999919, 50.609132725000059 ], [ -118.835082096999955, 50.612707720000124 ], [ -118.829455986999946, 50.61234450900006 ], [ -118.830020318, 50.608816113000103 ], [ -118.830027764999954, 50.608769543000101 ], [ -118.835014528, 50.60909149300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "62.4", "sL_BldgLoss": "62.4", "sL_StrLoss": "62.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056755E7CF4B95DC00954DE1229464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.90705850099998, 50.54647830600004 ], [ -118.908131105999971, 50.546491627000087 ], [ -118.907643725999932, 50.549577223000078 ], [ -118.902024917999938, 50.549217649000056 ], [ -118.90203447499999, 50.549157201000156 ], [ -118.902633706999936, 50.5484565040001 ], [ -118.903076609999943, 50.547874004000128 ], [ -118.90368949199997, 50.547324194000112 ], [ -118.904815096999954, 50.546847092000114 ], [ -118.90705850099998, 50.54647830600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "96", "sL_BldgLoss": "96", "sL_StrLoss": "96", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8D4B9BB71B65DC01CEF8E8C554D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.848737883999945, 50.602773552000023 ], [ -118.854362951999946, 50.603135793000064 ], [ -118.854037587999954, 50.605177407000092 ], [ -118.853805522999949, 50.605230606000077 ], [ -118.853510184999934, 50.60527388700006 ], [ -118.852958537999882, 50.605309933000072 ], [ -118.852911485, 50.605312997000077 ], [ -118.849005602999938, 50.605349607000093 ], [ -118.847335586999975, 50.605335746000023 ], [ -118.846889984999919, 50.605332046000058 ], [ -118.847126794999923, 50.603847617000099 ], [ -118.847718910999987, 50.603885770000105 ], [ -118.847840302999941, 50.603124733000094 ], [ -118.848673316999964, 50.603178401000022 ], [ -118.848737883999945, 50.602773552000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "127.2", "sL_BldgLoss": "127.2", "sL_StrLoss": "127.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C99EB1EDBCB25DC0B344E360A14D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.794198463999976, 50.60379366800003 ], [ -118.796587068999926, 50.603948702000068 ], [ -118.796295623999967, 50.605762681000122 ], [ -118.796012694999916, 50.607523518000058 ], [ -118.794085492999955, 50.607398436000025 ], [ -118.793865170999979, 50.608769163000069 ], [ -118.788239886999989, 50.60840387000006 ], [ -118.788249143999963, 50.608346326000103 ], [ -118.788507174999964, 50.606742229000105 ], [ -118.788688884999942, 50.606611209000079 ], [ -118.789451297999946, 50.606203908000047 ], [ -118.79140840099997, 50.605634190000053 ], [ -118.792272014999966, 50.604900796000067 ], [ -118.79345768499995, 50.604118909000078 ], [ -118.794198463999976, 50.60379366800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "122", "sL_BldgLoss": "122", "sL_StrLoss": "122", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F51DD345D0BC5DC0FD14A673EE444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.94720424399999, 50.540297322000043 ], [ -118.947537439999962, 50.538175533000064 ], [ -118.947904700999985, 50.538148108 ], [ -118.947785307999979, 50.538005597000051 ], [ -118.948032295999965, 50.53752430600013 ], [ -118.947887590999983, 50.537418894000027 ], [ -118.947671186999983, 50.537323780000108 ], [ -118.947765766, 50.536721444000086 ], [ -118.953383378999931, 50.53707871299999 ], [ -118.952922599, 50.540015415000148 ], [ -118.951673183999958, 50.539909803000121 ], [ -118.951104892999979, 50.53981149700008 ], [ -118.950600487, 50.539567994000024 ], [ -118.949852889999988, 50.538853001000113 ], [ -118.949591913999882, 50.538722000000107 ], [ -118.949494785999931, 50.538759008000056 ], [ -118.949551286999977, 50.539073796000068 ], [ -118.949772614999958, 50.539644893000116 ], [ -118.950150810999986, 50.539918384000025 ], [ -118.950811904999924, 50.540230201000085 ], [ -118.95075980499999, 50.540302896000078 ], [ -118.950099294999916, 50.540481477000078 ], [ -118.94720424399999, 50.540297322000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "126", "sL_BldgLoss": "126", "sL_StrLoss": "126", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007C9D927B13B85DC0FABACAE2974A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.875125711999914, 50.584819232000051 ], [ -118.875157107999954, 50.584621553000048 ], [ -118.872644147999921, 50.584460164000092 ], [ -118.873212143999964, 50.580884856000075 ], [ -118.87883467199994, 50.581245871000121 ], [ -118.87880329499994, 50.58144355200006 ], [ -118.881287940999982, 50.581602995 ], [ -118.880874009999928, 50.581944289000042 ], [ -118.878598088999979, 50.583757599000108 ], [ -118.878246596999929, 50.583986867000078 ], [ -118.878048497999899, 50.58411608500009 ], [ -118.877627092999916, 50.584346309000139 ], [ -118.876455998999944, 50.584904643000115 ], [ -118.875125711999914, 50.584819232000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4103500", "BldgCostT": "2830000", "sL_LossRatio": "1", "sL_AssetLoss": "195", "sL_BldgLoss": "195", "sL_StrLoss": "195", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3B7D17CA5B45DC0BE16D3D02F4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.827205891999952, 50.605967501000087 ], [ -118.826577191999945, 50.605770889000098 ], [ -118.82503279399999, 50.60567840500007 ], [ -118.823811787999972, 50.605184208000033 ], [ -118.822275190999974, 50.604903596999989 ], [ -118.821594586999979, 50.604850889000026 ], [ -118.81869699899994, 50.603708710000035 ], [ -118.817742402999954, 50.603147502000105 ], [ -118.81706738299999, 50.602906900000058 ], [ -118.816705623999937, 50.60266050200007 ], [ -118.816015506999918, 50.602715994000071 ], [ -118.815672400999929, 50.602640507000089 ], [ -118.814944006999937, 50.602076494000052 ], [ -118.814105910999956, 50.601207798000061 ], [ -118.813933946999953, 50.601106479000087 ], [ -118.814148065999944, 50.599770360000043 ], [ -118.819772479999955, 50.600134349000058 ], [ -118.819673737999949, 50.600751001000035 ], [ -118.820570797999949, 50.600809029000075 ], [ -118.820502977999965, 50.601232620000062 ], [ -118.821402600999988, 50.601290806000065 ], [ -118.820991326999888, 50.603859645000036 ], [ -118.82232495199996, 50.603945886000119 ], [ -118.822200252999934, 50.604724843000021 ], [ -118.825219519999948, 50.604920031000063 ], [ -118.825593708000014, 50.602581526000044 ], [ -118.831218564999986, 50.602944936000036 ], [ -118.830728129999926, 50.606012280000115 ], [ -118.830403114999982, 50.606025892000062 ], [ -118.828066521999986, 50.605919102000051 ], [ -118.827205891999952, 50.605967501000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "86.2", "sL_BldgLoss": "86.2", "sL_StrLoss": "86.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B8F087CB4BA5DC0DA0B1E0928454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.914176622999932, 50.542361500000013 ], [ -118.914740790999971, 50.538785798000056 ], [ -118.920358399999913, 50.539144733000086 ], [ -118.919844991999966, 50.542401308000073 ], [ -118.919669092999982, 50.542133007000082 ], [ -118.91939111899994, 50.54186810000008 ], [ -118.918481002999954, 50.541352487000026 ], [ -118.917840581999968, 50.541237199000093 ], [ -118.915555695999899, 50.541257089000062 ], [ -118.915020723999959, 50.541643105000063 ], [ -118.914696787999929, 50.542386507000096 ], [ -118.914706990999946, 50.542395400000032 ], [ -118.914176622999932, 50.542361500000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "134.6", "sL_BldgLoss": "134.6", "sL_StrLoss": "134.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D24A2904BBF5DC0A749DF5A5C454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.986457097999931, 50.539915231000101 ], [ -118.992075415999949, 50.540270544000066 ], [ -118.991517365999982, 50.543846630000104 ], [ -118.985898607999985, 50.543491291000045 ], [ -118.986457097999931, 50.539915231000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "32514417", "BldgCostT": "21686667", "sL_LossRatio": "0.999295597152011", "sL_AssetLoss": "1817.142", "sL_BldgLoss": "1815.862", "sL_StrLoss": "1815.4", "sL_NStrLoss": "0.462", "sL_ContLoss": "1.28", "geom_point": "0101000020E6100000C202A95E48AF5DC0EA64FC3D294E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.73447004, 50.616613180000094 ], [ -118.734885747999925, 50.614048559000032 ], [ -118.734832285999943, 50.614049355000127 ], [ -118.73418729299999, 50.614058960000115 ], [ -118.734147623999917, 50.612980283000049 ], [ -118.730333205999955, 50.613037011000131 ], [ -118.730323311999925, 50.61276734100008 ], [ -118.73025502599998, 50.612768357000057 ], [ -118.730138942999972, 50.613484096000036 ], [ -118.728953025999942, 50.61340643300008 ], [ -118.728715958999928, 50.614867824000015 ], [ -118.723090444999983, 50.614499244000037 ], [ -118.723147927999932, 50.614145169000068 ], [ -118.722622553999912, 50.614110732000071 ], [ -118.723111727999964, 50.611097618000066 ], [ -118.72312996699992, 50.610985265000075 ], [ -118.723049333999938, 50.610986459000046 ], [ -118.723054438999938, 50.611126172000091 ], [ -118.723059187000032, 50.611256129000026 ], [ -118.722785571999978, 50.611260176000073 ], [ -118.722635375999914, 50.611262398000072 ], [ -118.722637981999981, 50.61133373600007 ], [ -118.722645226999973, 50.611532069000056 ], [ -118.722227650999926, 50.611538245000098 ], [ -118.721373786999919, 50.611550867000091 ], [ -118.721354921999961, 50.61103399400011 ], [ -118.721343008999938, 50.6107076770001 ], [ -118.721235990999915, 50.607775469000046 ], [ -118.720812209999963, 50.60778173100006 ], [ -118.72078269399999, 50.606972716000023 ], [ -118.720358919999981, 50.606978977000033 ], [ -118.720327487999924, 50.606117185000102 ], [ -118.718074754000014, 50.605969420000037 ], [ -118.718214466999882, 50.605109262000049 ], [ -118.7185487039999, 50.605104410000102 ], [ -118.720240585999974, 50.604611604000084 ], [ -118.720697999, 50.604397998000088 ], [ -118.721550807999961, 50.603772786000079 ], [ -118.72238569799994, 50.603401088000076 ], [ -118.723106507999915, 50.603418088000055 ], [ -118.724925103, 50.603255803000067 ], [ -118.726253209999982, 50.603281405000111 ], [ -118.728017603999945, 50.603173193000032 ], [ -118.734617101999959, 50.602401299000093 ], [ -118.73583251499997, 50.602409800000032 ], [ -118.736686486999986, 50.602621993000149 ], [ -118.738493009999928, 50.602882588000078 ], [ -118.739674898999937, 50.603530703000082 ], [ -118.740147882999949, 50.60408179100007 ], [ -118.740349177999974, 50.604554696000029 ], [ -118.740451811999961, 50.605434804 ], [ -118.740383901999948, 50.60592190200007 ], [ -118.740589, 50.606467406000085 ], [ -118.74015608199997, 50.608515400000115 ], [ -118.740217111999982, 50.609036689000114 ], [ -118.740499114999977, 50.60976008900014 ], [ -118.740863885999886, 50.610069191000058 ], [ -118.741558383999958, 50.611301195000117 ], [ -118.743093007, 50.612285299000078 ], [ -118.744520687999938, 50.612685504000069 ], [ -118.745374917999982, 50.612826495000036 ], [ -118.745978292999922, 50.612726807000087 ], [ -118.746422000999956, 50.612477492000068 ], [ -118.747281014999928, 50.612410601000114 ], [ -118.74894632099992, 50.612718197000071 ], [ -118.750256685999886, 50.613373402000079 ], [ -118.75095711099999, 50.613569903000069 ], [ -118.751663300999937, 50.613145488000043 ], [ -118.752031023999933, 50.613149804000095 ], [ -118.752345983999959, 50.613287900000053 ], [ -118.753365096, 50.613309287000099 ], [ -118.753938713999915, 50.613156896000106 ], [ -118.754577226999984, 50.613169890000066 ], [ -118.754566138999962, 50.613238491000054 ], [ -118.755485992999965, 50.613298518000079 ], [ -118.755498612999986, 50.613303593000118 ], [ -118.755552170999962, 50.613302837000035 ], [ -118.756154001999931, 50.61334210600009 ], [ -118.756160275999903, 50.613303282000111 ], [ -118.757300607999952, 50.613482990000115 ], [ -118.758033693999963, 50.613813491000037 ], [ -118.759401199999928, 50.613712309000057 ], [ -118.759843204999967, 50.6138233960001 ], [ -118.760353714999951, 50.613850499000129 ], [ -118.760578997, 50.613820597000029 ], [ -118.761463679999949, 50.613258001000077 ], [ -118.762077899, 50.612296693000076 ], [ -118.763009500999914, 50.611913586000099 ], [ -118.76321000199999, 50.611604492000019 ], [ -118.763466630000011, 50.611396166000091 ], [ -118.766940355, 50.611622542000084 ], [ -118.766775110999973, 50.612646624000121 ], [ -118.768065892999928, 50.612730714000094 ], [ -118.768040692999989, 50.612886906000043 ], [ -118.76748913899999, 50.616305344000089 ], [ -118.765090841999935, 50.616149093000111 ], [ -118.764998252999959, 50.616722698000032 ], [ -118.761331560999935, 50.616483708000068 ], [ -118.761215914, 50.617199783000068 ], [ -118.758675239999889, 50.617034114000084 ], [ -118.758661696999923, 50.617117942000036 ], [ -118.753035655999923, 50.616750874000097 ], [ -118.753193798, 50.615772773000053 ], [ -118.75309013199994, 50.615766005000054 ], [ -118.75298670799999, 50.616405672000099 ], [ -118.74736080299999, 50.616038317000083 ], [ -118.747427975, 50.615623183000068 ], [ -118.743322205999974, 50.61535490600005 ], [ -118.74344146199995, 50.61461828400013 ], [ -118.742819444999895, 50.614577626000084 ], [ -118.742753680999954, 50.614983806000026 ], [ -118.740814184999948, 50.614857012000122 ], [ -118.740839402999967, 50.614810394000088 ], [ -118.740785400999954, 50.614109714000072 ], [ -118.740608510999934, 50.614273487000048 ], [ -118.740346389999957, 50.615249100000014 ], [ -118.740236182999936, 50.615331700000127 ], [ -118.739744793999975, 50.615374408000029 ], [ -118.739130817999978, 50.615590901000068 ], [ -118.73892479199999, 50.615783088000065 ], [ -118.738710123999908, 50.616829903000081 ], [ -118.73842797199994, 50.617593350000035 ], [ -118.734643243, 50.617345757000074 ], [ -118.734354350999936, 50.617326852000112 ], [ -118.73447004, 50.616613180000094 ] ], [ [ -118.736039832999978, 50.61334475700005 ], [ -118.736103618, 50.612951145000082 ], [ -118.735842916, 50.612955029000041 ], [ -118.735856821999903, 50.613332783000054 ], [ -118.736039832999978, 50.61334475700005 ] ], [ [ -118.735666629999926, 50.610529304000124 ], [ -118.735678347999908, 50.610456987000113 ], [ -118.735444663999942, 50.610441696000095 ], [ -118.73560521899999, 50.609450951000028 ], [ -118.734442504999947, 50.609468271000033 ], [ -118.734402834999941, 50.608389593000041 ], [ -118.73482661599995, 50.608383281000094 ], [ -118.734796857999967, 50.607574273000054 ], [ -118.734373084000012, 50.607580584000061 ], [ -118.73435325, 50.60704124500004 ], [ -118.733929479999986, 50.607047555000037 ], [ -118.73390965399993, 50.606508216000044 ], [ -118.733485887999962, 50.606514524000033 ], [ -118.73350571099995, 50.607053863000019 ], [ -118.733081939, 50.607060169000107 ], [ -118.73325041699999, 50.611644552000051 ], [ -118.732826603999953, 50.611650858000061 ], [ -118.732836513999985, 50.611920529000017 ], [ -118.734955582999987, 50.611888982000089 ], [ -118.734935741, 50.611349645000089 ], [ -118.735359548999952, 50.611343330000047 ], [ -118.73532977899994, 50.610534323000039 ], [ -118.735666629999926, 50.610529304000124 ] ], [ [ -118.725009221999969, 50.610061819000052 ], [ -118.725082989999976, 50.609607272000069 ], [ -118.724695251999933, 50.609613014000054 ], [ -118.724710950999935, 50.61004227100004 ], [ -118.725009221999969, 50.610061819000052 ] ], [ [ -118.730217254999943, 50.609876815000035 ], [ -118.73020457899996, 50.609531303000097 ], [ -118.729780784999946, 50.609537598000017 ], [ -118.729770893999955, 50.609267927000126 ], [ -118.72807572899994, 50.609293091000048 ], [ -118.728065846999982, 50.60902342100011 ], [ -118.727218267999916, 50.609035992000031 ], [ -118.727103049999968, 50.605889655000034 ], [ -118.725403006999954, 50.605778251000046 ], [ -118.725424450999967, 50.606364411000108 ], [ -118.725848217999967, 50.606358132000075 ], [ -118.72589755599995, 50.607706487000065 ], [ -118.72547377799999, 50.607712764000048 ], [ -118.725503376999896, 50.608521777000128 ], [ -118.725079589999936, 50.608528054000026 ], [ -118.725116703999944, 50.609542672000082 ], [ -118.730217254999943, 50.609876815000035 ] ], [ [ -118.738590941999959, 50.606978065000121 ], [ -118.737880267999984, 50.606988671000082 ], [ -118.738593053999963, 50.607035301000103 ], [ -118.738590941999959, 50.606978065000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000033654C6661BD5DC0B57D3CB2C1454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.959789264999984, 50.543593868000109 ], [ -118.961570941, 50.543706998000097 ], [ -118.961258207999919, 50.545702218000052 ], [ -118.959657816999936, 50.545611092000037 ], [ -118.959119712999936, 50.545668087000138 ], [ -118.958576505999957, 50.545829329000121 ], [ -118.957929394999965, 50.546021397000082 ], [ -118.957340385999942, 50.546094998000079 ], [ -118.955518023999943, 50.546119425000029 ], [ -118.955615105999968, 50.545500574000123 ], [ -118.956835898999898, 50.545291907000035 ], [ -118.957102204999927, 50.545206385000071 ], [ -118.958431009, 50.544230887000069 ], [ -118.959264185999956, 50.543937500000027 ], [ -118.959789264999984, 50.543593868000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "69.9", "sL_BldgLoss": "69.9", "sL_StrLoss": "69.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D1638CF615BD5DC0F175A5A7C0434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.953210978999977, 50.52804740200002 ], [ -118.954736607999905, 50.528058609000055 ], [ -118.95580551099998, 50.528130871000073 ], [ -118.95586199499995, 50.528134704000095 ], [ -118.956170140999973, 50.528189289000132 ], [ -118.956259390999961, 50.528205090000071 ], [ -118.95636774399992, 50.528276492000103 ], [ -118.956762935999961, 50.528536902000056 ], [ -118.957069204999968, 50.528738701000094 ], [ -118.9573868199999, 50.528912517000087 ], [ -118.957119522999918, 50.530617444000058 ], [ -118.951502684999966, 50.530260361000074 ], [ -118.951810467999977, 50.528298747000079 ], [ -118.953210978999977, 50.52804740200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10956417", "BldgCostT": "7346667", "sL_LossRatio": "0.997288376881718", "sL_AssetLoss": "472.042", "sL_BldgLoss": "470.762", "sL_StrLoss": "470.3", "sL_NStrLoss": "0.462", "sL_ContLoss": "1.28", "geom_point": "0101000020E61000005A28F4550DB45DC0B8B9A593744D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.820913157999911, 50.60978827600006 ], [ -118.821149088999931, 50.608314900000067 ], [ -118.820209837999954, 50.608254160000122 ], [ -118.820341883999973, 50.607429605000085 ], [ -118.816127267999917, 50.607156949000071 ], [ -118.816231322999926, 50.606507544000081 ], [ -118.814353357999948, 50.606386 ], [ -118.814479370999891, 50.605599732000073 ], [ -118.812093042999919, 50.605445239000112 ], [ -118.81213437299999, 50.60518743100004 ], [ -118.811130329999983, 50.605122413000075 ], [ -118.811218287999935, 50.604573829000053 ], [ -118.809835627999988, 50.604484278000029 ], [ -118.809895647999937, 50.604109996000062 ], [ -118.809025009999942, 50.604053598000078 ], [ -118.807608742999903, 50.603961840000053 ], [ -118.807411764, 50.605189765000034 ], [ -118.802228819999939, 50.60485381400008 ], [ -118.802111952999951, 50.605581783000083 ], [ -118.79714371299994, 50.605259519000143 ], [ -118.796487, 50.605216905000134 ], [ -118.796740684999961, 50.603637907000085 ], [ -118.797226, 50.603655993000089 ], [ -118.799098606999962, 50.603482196000122 ], [ -118.800086700999927, 50.603062101000084 ], [ -118.801107991999956, 50.602785790000091 ], [ -118.801968120999945, 50.602727405000095 ], [ -118.801928504999978, 50.602808599000092 ], [ -118.801578779999943, 50.602922495000087 ], [ -118.801651292999949, 50.602975209000164 ], [ -118.802937807999939, 50.602938191000057 ], [ -118.80325879499999, 50.602834205000129 ], [ -118.804086304999942, 50.602344296000076 ], [ -118.805935387999938, 50.60189280800008 ], [ -118.806217966999967, 50.601500358000067 ], [ -118.807154261999955, 50.601561036000128 ], [ -118.807223434999955, 50.601129813000028 ], [ -118.807742885, 50.601099510000076 ], [ -118.808467507999964, 50.601196395000066 ], [ -118.809457681999987, 50.601158251000115 ], [ -118.810019593, 50.601136600000075 ], [ -118.810495810999953, 50.601390091000056 ], [ -118.811209320999964, 50.601612303000138 ], [ -118.81298358399999, 50.602143496000053 ], [ -118.814173302999976, 50.602619186000013 ], [ -118.818386800999974, 50.60413589200008 ], [ -118.81955578199991, 50.604773995000073 ], [ -118.821783110999917, 50.605711101000082 ], [ -118.822818497999947, 50.605820799000114 ], [ -118.823263390999927, 50.60594899700002 ], [ -118.825789597999957, 50.606215291000062 ], [ -118.826587392999983, 50.606381892000087 ], [ -118.826890054, 50.606412311000035 ], [ -118.826866240999905, 50.606561152000069 ], [ -118.827110861999969, 50.606576958000041 ], [ -118.827099144999934, 50.606650200000061 ], [ -118.82692162799999, 50.607759761000061 ], [ -118.826538879999973, 50.610151919000074 ], [ -118.820913157999911, 50.60978827600006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "97.3", "sL_BldgLoss": "97.3", "sL_StrLoss": "97.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021EEE2E41BB05DC04FD42D96FD4F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.74917820899999, 50.622955443000087 ], [ -118.754804994999944, 50.623322703000106 ], [ -118.754227050999958, 50.626897219000043 ], [ -118.74859982299995, 50.626529932000075 ], [ -118.74917820899999, 50.622955443000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "95.1", "sL_BldgLoss": "95.1", "sL_StrLoss": "95.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000285F125F54BA5DC0C77C270393444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.910286807999967, 50.533859380000116 ], [ -118.914490265999973, 50.534128187000078 ], [ -118.914207205000011, 50.535922428000028 ], [ -118.913926136000015, 50.537703909000101 ], [ -118.909722348999978, 50.537435081000091 ], [ -118.909136249, 50.537397588000076 ], [ -118.908308757999933, 50.537344647000026 ], [ -118.908873328999945, 50.533768953000106 ], [ -118.910286807999967, 50.533859380000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "98.3", "sL_BldgLoss": "98.3", "sL_StrLoss": "98.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EF79175272BC5DC08908835B0C434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.941540629999935, 50.525878293000069 ], [ -118.941645845999957, 50.5252086140001 ], [ -118.941373869999936, 50.525191290000066 ], [ -118.941935666999953, 50.521615374000099 ], [ -118.947551350999944, 50.521972944000062 ], [ -118.947503785, 50.522275966000088 ], [ -118.947844262999965, 50.522297637000094 ], [ -118.947388938999921, 50.525198285000066 ], [ -118.94630830199999, 50.525396105000091 ], [ -118.945996342999976, 50.525533478000071 ], [ -118.945896603999969, 50.525577399000042 ], [ -118.945584624999967, 50.525714804000096 ], [ -118.945336527999956, 50.526120012000042 ], [ -118.941540629999935, 50.525878293000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020918", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "106.8", "sL_BldgLoss": "106.8", "sL_StrLoss": "106.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063EBBE08FFBC5DC05394746249444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.951136633999937, 50.531791348000091 ], [ -118.951224421999953, 50.531231910000045 ], [ -118.956841378, 50.531589006000047 ], [ -118.95676143699994, 50.532098844000103 ], [ -118.956904011999924, 50.532107904000057 ], [ -118.956782270999952, 50.53288432100004 ], [ -118.956343272999902, 50.535683849000065 ], [ -118.95465237699996, 50.535576383000077 ], [ -118.954644596000023, 50.535625988000049 ], [ -118.949027153999936, 50.535268782000081 ], [ -118.949339922999954, 50.533276326000085 ], [ -118.949588467999902, 50.531692873000075 ], [ -118.951136633999937, 50.531791348000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9767220", "BldgCostT": "5240413", "sL_LossRatio": "0.994110604629719", "sL_AssetLoss": "134.479", "sL_BldgLoss": "133.687", "sL_StrLoss": "133.4", "sL_NStrLoss": "0.287", "sL_ContLoss": "0.792", "geom_point": "0101000020E6100000281564360EBF5DC07926C9AD28464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.986153467999927, 50.550039585000079 ], [ -118.986415866999948, 50.548359683000044 ], [ -118.981576539999963, 50.548053462000048 ], [ -118.981653667, 50.547560007000115 ], [ -118.980444038, 50.547483431000025 ], [ -118.98065189099998, 50.546153775000079 ], [ -118.980750676999932, 50.546144997000049 ], [ -118.981589784999954, 50.546158402000096 ], [ -118.982079385999981, 50.546220995000049 ], [ -118.98261191499995, 50.546381102000048 ], [ -118.983957225999958, 50.547025126000015 ], [ -118.984172111999911, 50.547128004000051 ], [ -118.984355135999976, 50.547183870000033 ], [ -118.984497109999921, 50.547227189000111 ], [ -118.984542021999943, 50.547232037000079 ], [ -118.98496449699995, 50.547277505000146 ], [ -118.986117412999974, 50.547234901000131 ], [ -118.986987915999919, 50.547265597000035 ], [ -118.987428198999964, 50.547398991000115 ], [ -118.987615179999949, 50.547514482000047 ], [ -118.987762005999983, 50.547605193000059 ], [ -118.988654075999989, 50.548714946000104 ], [ -118.9898136, 50.550157313000071 ], [ -118.989943612999966, 50.550260269000113 ], [ -118.9899696799999, 50.550280914000034 ], [ -118.986153467999927, 50.550039585000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73739750", "BldgCostT": "51350000", "sL_LossRatio": "0.996384449037786", "sL_AssetLoss": "439.767", "sL_BldgLoss": "438.177", "sL_StrLoss": "437.6", "sL_NStrLoss": "0.577", "sL_ContLoss": "1.59", "geom_point": "0101000020E6100000BED0F97C56BF5DC0593374E42F474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.992597676999964, 50.554193906000108 ], [ -118.992835742999958, 50.554208950000053 ], [ -118.992277580999883, 50.557784979000125 ], [ -118.992195949999882, 50.557779820000093 ], [ -118.992092210999914, 50.558444382000047 ], [ -118.991305833999931, 50.558394689000124 ], [ -118.986471626999958, 50.558089078000116 ], [ -118.987030252999929, 50.55451307900006 ], [ -118.987111877999965, 50.554518241000046 ], [ -118.987215681999913, 50.553853681000106 ], [ -118.992597676999964, 50.554193906000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9926417", "BldgCostT": "5371667", "sL_LossRatio": "1", "sL_AssetLoss": "33.8", "sL_BldgLoss": "33.8", "sL_StrLoss": "33.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BA2876F1BBD5DC0CD8667CF86434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.95580551099998, 50.528130871000073 ], [ -118.954736607999905, 50.528058609000055 ], [ -118.953210978999977, 50.52804740200002 ], [ -118.951810467999977, 50.528298747000079 ], [ -118.952063739999986, 50.526684417000091 ], [ -118.957680135999951, 50.527041472000107 ], [ -118.9573868199999, 50.528912517000087 ], [ -118.957069204999968, 50.528738701000094 ], [ -118.956762935999961, 50.528536902000056 ], [ -118.95636774399992, 50.528276492000103 ], [ -118.956259390999961, 50.528205090000071 ], [ -118.956170140999973, 50.528189289000132 ], [ -118.95586199499995, 50.528134704000095 ], [ -118.95580551099998, 50.528130871000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8298833", "BldgCostT": "4778333", "sL_LossRatio": "0.996973580301791", "sL_AssetLoss": "422.942", "sL_BldgLoss": "421.662", "sL_StrLoss": "421.2", "sL_NStrLoss": "0.462", "sL_ContLoss": "1.28", "geom_point": "0101000020E61000006666C11FD9B85DC0EB5EBC59E2494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.887504597999964, 50.575205557000068 ], [ -118.890668047999966, 50.575408330000045 ], [ -118.890101509999965, 50.578983751000074 ], [ -118.884479173, 50.578623304000097 ], [ -118.884492054999967, 50.578542072000047 ], [ -118.884790212, 50.578336381000085 ], [ -118.885136743999965, 50.578154207000075 ], [ -118.885708681999958, 50.577853491000056 ], [ -118.885775966999944, 50.577798639000015 ], [ -118.886057716, 50.577568911000121 ], [ -118.886255319999961, 50.577329050000152 ], [ -118.886418089999921, 50.577131490000049 ], [ -118.886831988999916, 50.576177506000064 ], [ -118.887198106999932, 50.575569800000061 ], [ -118.887368130999931, 50.57535344500009 ], [ -118.887425788999948, 50.575280099000089 ], [ -118.887504597999964, 50.575205557000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30151561", "BldgCostT": "16698190", "sL_LossRatio": "1", "sL_AssetLoss": "589.7", "sL_BldgLoss": "589.7", "sL_StrLoss": "589.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E0BA7F50CBE5DC0F9765C9E18444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.972334194999959, 50.53343299200003 ], [ -118.971854191999967, 50.533355598000064 ], [ -118.971597107999969, 50.533349530000059 ], [ -118.971126518999966, 50.533338400000098 ], [ -118.970768404999944, 50.533420451000055 ], [ -118.970682196999974, 50.533440203000062 ], [ -118.970626594999956, 50.533464373000072 ], [ -118.970503873000013, 50.533517722000063 ], [ -118.970491978999988, 50.533522894000058 ], [ -118.970155582999922, 50.53374180200008 ], [ -118.970092698999935, 50.53381536800007 ], [ -118.970062564, 50.53385061000008 ], [ -118.969617417999956, 50.534371291000099 ], [ -118.96939246299992, 50.534473276000085 ], [ -118.96931521899991, 50.534508303000102 ], [ -118.968898501999917, 50.534497204000047 ], [ -118.967660186999964, 50.533764090000048 ], [ -118.967282301999944, 50.53345119100004 ], [ -118.967180707999944, 50.533283713000081 ], [ -118.967118821999989, 50.533181681 ], [ -118.967209988, 50.533006893000106 ], [ -118.967194780999989, 50.53256979100005 ], [ -118.967007186999979, 50.532246411000095 ], [ -118.966639700999949, 50.531767088000123 ], [ -118.966346112999958, 50.531459594000069 ], [ -118.966078143999965, 50.531030883000042 ], [ -118.965893604999977, 50.530735587000073 ], [ -118.965704103999954, 50.530578197000104 ], [ -118.965074897999941, 50.530384782000112 ], [ -118.964381001999982, 50.530134002000089 ], [ -118.963060200999934, 50.529969017000091 ], [ -118.962955189, 50.529955906000062 ], [ -118.962638423999948, 50.53005566900007 ], [ -118.962275067999926, 50.53017013300007 ], [ -118.962438951, 50.529124059000097 ], [ -118.963047938999964, 50.529162729000056 ], [ -118.963074531999951, 50.528992973000129 ], [ -118.968691301999925, 50.52934947100006 ], [ -118.96856663799997, 50.530145922000052 ], [ -118.969100043999902, 50.530179762000081 ], [ -118.968930869999937, 50.531260611000064 ], [ -118.971155354999937, 50.531401708000061 ], [ -118.971072949999893, 50.531928339000061 ], [ -118.974182895999917, 50.532125524000101 ], [ -118.97416389199995, 50.5322470260001 ], [ -118.975087975999941, 50.532305600000015 ], [ -118.974922062999951, 50.533366475000058 ], [ -118.977449508999911, 50.533526641000023 ], [ -118.977363274999959, 50.533614501000031 ], [ -118.977201892999943, 50.533712611000063 ], [ -118.976834113999985, 50.533860888000014 ], [ -118.975720708000026, 50.534115401000101 ], [ -118.975402703999947, 50.534226090000104 ], [ -118.975226792999976, 50.534307122000079 ], [ -118.974806619999953, 50.534500705000035 ], [ -118.974028703999949, 50.534930906000106 ], [ -118.973898213999959, 50.534994790000042 ], [ -118.973750700999943, 50.535012594000079 ], [ -118.973408195, 50.534953798000053 ], [ -118.973153817999972, 50.534776086000051 ], [ -118.972472013999948, 50.533504006000037 ], [ -118.972334194999959, 50.53343299200003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16824744", "BldgCostT": "9684076", "sL_LossRatio": "1", "sL_AssetLoss": "233", "sL_BldgLoss": "233", "sL_StrLoss": "233", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029D604AC30C25DC07BE5304EB2484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.031874349999953, 50.56977201600003 ], [ -119.031901280999975, 50.569598544000087 ], [ -119.030950031999978, 50.569538790000124 ], [ -119.030977446999913, 50.569362230000074 ], [ -119.03063342899992, 50.569340619000066 ], [ -119.030405127, 50.569326276000062 ], [ -119.03096040399997, 50.56575010600006 ], [ -119.036582293999956, 50.566103159000072 ], [ -119.036554901999921, 50.566279721000107 ], [ -119.037127189, 50.566315644000042 ], [ -119.037100278999972, 50.566489118000057 ], [ -119.038051471999921, 50.566548819000047 ], [ -119.03749674899997, 50.570125021000116 ], [ -119.036727518999939, 50.570076742000076 ], [ -119.031874349999953, 50.56977201600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23723056", "BldgCostT": "13228607", "sL_LossRatio": "1", "sL_AssetLoss": "844.8", "sL_BldgLoss": "844.8", "sL_StrLoss": "844.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061D3D6CABCC35DC0E157934402484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.054139402999951, 50.564569043000105 ], [ -119.054195845, 50.564204276000083 ], [ -119.054011623999969, 50.564192740000102 ], [ -119.054564963999951, 50.56061643000006 ], [ -119.057220982999965, 50.560782715000101 ], [ -119.057299563999933, 50.560274593000067 ], [ -119.062920975999987, 50.560626318000061 ], [ -119.062368300999935, 50.564202669000061 ], [ -119.060411866999971, 50.564080290000064 ], [ -119.060296845999915, 50.56482431300013 ], [ -119.059781251999979, 50.564792056000073 ], [ -119.059761327999965, 50.564920927000109 ], [ -119.054139402999951, 50.564569043000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16911700", "BldgCostT": "9617213", "sL_LossRatio": "0.999605504425403", "sL_AssetLoss": "453.744", "sL_BldgLoss": "453.565", "sL_StrLoss": "453.5", "sL_NStrLoss": "0.065", "sL_ContLoss": "0.179", "geom_point": "0101000020E61000004EA89663E8BD5DC0EA121FE91D474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.96543822299999, 50.552237883000018 ], [ -118.971057910999946, 50.552594252000056 ], [ -118.970498039999939, 50.556170178000038 ], [ -118.969625916999988, 50.556114893 ], [ -118.969179940999965, 50.558962602000122 ], [ -118.963559472999989, 50.558606141000055 ], [ -118.964119924, 50.555030259000027 ], [ -118.9649920199999, 50.55508558800004 ], [ -118.96543822299999, 50.552237883000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020931", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "32.1", "sL_BldgLoss": "32.1", "sL_StrLoss": "32.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8A2E2A415BF5DC09B03A148B9434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.984619421999966, 50.529217504000087 ], [ -118.98329080099991, 50.528962806000024 ], [ -118.982774010999918, 50.528930111000072 ], [ -118.98264921699996, 50.528941588000038 ], [ -118.982681889999952, 50.528732418000075 ], [ -118.988298782999934, 50.529087926000123 ], [ -118.988249029999963, 50.529406690000044 ], [ -118.987925805999978, 50.529403292000076 ], [ -118.986695280000021, 50.529353093000033 ], [ -118.985678295999918, 50.529311610000065 ], [ -118.984619421999966, 50.529217504000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020932", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13646417", "BldgCostT": "8146667", "sL_LossRatio": "0.999546089009613", "sL_AssetLoss": "1672.134", "sL_BldgLoss": "1671.375", "sL_StrLoss": "1671.1", "sL_NStrLoss": "0.275", "sL_ContLoss": "0.759", "geom_point": "0101000020E61000007681585781C65DC079456416A9474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.105777285999963, 50.557415317000036 ], [ -119.106454732999964, 50.55741262500004 ], [ -119.10604947099992, 50.560051984000019 ], [ -119.105309642999941, 50.560005999000055 ], [ -119.105217866999965, 50.560603601000061 ], [ -119.103568141999943, 50.560501043000095 ], [ -119.10328418, 50.562349541000032 ], [ -119.10292377899998, 50.562327133000053 ], [ -119.102877577999934, 50.562627850000091 ], [ -119.09725560399994, 50.562278144000103 ], [ -119.097805485999942, 50.558701612000064 ], [ -119.09816585599998, 50.558724036000115 ], [ -119.098212082999908, 50.558423320000024 ], [ -119.09980790099999, 50.558522610000054 ], [ -119.099979420999944, 50.557406565000122 ], [ -119.105600089999925, 50.557433792000033 ], [ -119.105777285999963, 50.557415317000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62554303", "BldgCostT": "35253746", "sL_LossRatio": "0.999150155936137", "sL_AssetLoss": "2536.936", "sL_BldgLoss": "2534.78", "sL_StrLoss": "2534", "sL_NStrLoss": "0.78", "sL_ContLoss": "2.156", "geom_point": "0101000020E61000007E35CD5C5CC05DC05F3097D8A5444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.011268120999958, 50.542051900000033 ], [ -119.01065343499999, 50.54155115400004 ], [ -119.010403323999938, 50.541347409000124 ], [ -119.010016178999976, 50.540680995000038 ], [ -119.009640099999956, 50.540326893000078 ], [ -119.008528494999908, 50.539531811000074 ], [ -119.007873082999978, 50.539195308000025 ], [ -119.006557594999933, 50.538670810000021 ], [ -119.005241477999903, 50.537914292000039 ], [ -119.004726911999953, 50.537694009000049 ], [ -119.003384792999967, 50.53734118700006 ], [ -119.003015888999954, 50.537177902000032 ], [ -119.00272469799998, 50.536998911000097 ], [ -119.001573871999966, 50.536062365000099 ], [ -119.001230983999932, 50.535783267000085 ], [ -119.000968816999915, 50.535569908000113 ], [ -118.999979293999957, 50.534835767000054 ], [ -118.999099983999912, 50.534183396000138 ], [ -118.997902396999947, 50.533413255000013 ], [ -118.997312912, 50.533034156000085 ], [ -118.996434553999933, 50.532469271000103 ], [ -118.99591621, 50.532135904000015 ], [ -118.994790613999967, 50.531287403000071 ], [ -118.993881496999961, 50.530706289000086 ], [ -118.993077288999984, 50.530287410000064 ], [ -118.991959985999983, 50.529705392000025 ], [ -118.991391197999974, 50.529533993000044 ], [ -118.991080921, 50.529486267000074 ], [ -118.991362970999901, 50.527678414000029 ], [ -118.996979800999938, 50.528033484000083 ], [ -118.996663680999944, 50.530061327000077 ], [ -119.00022643899996, 50.530286397000083 ], [ -119.000223812999977, 50.530303248000074 ], [ -119.000634527999978, 50.530329187000078 ], [ -119.00047841099996, 50.531331131000087 ], [ -119.000479401999911, 50.531331193000042 ], [ -119.000366984999943, 50.532052648000047 ], [ -119.001220928999913, 50.532106574000061 ], [ -119.001166545999922, 50.532455619000118 ], [ -119.005864106, 50.532752146000064 ], [ -119.005780252999955, 50.533290690000101 ], [ -119.005866742999928, 50.533296147000087 ], [ -119.005658392999962, 50.534634240000059 ], [ -119.006392118999926, 50.534680536000053 ], [ -119.006299231, 50.5352771230001 ], [ -119.007687419999939, 50.535364701000091 ], [ -119.00766508399991, 50.535508187000048 ], [ -119.008337209999979, 50.53555058400007 ], [ -119.008149478999968, 50.536756606000033 ], [ -119.008299793999925, 50.536766087000046 ], [ -119.008297054999971, 50.536783682000078 ], [ -119.010646122999944, 50.536931821000081 ], [ -119.010494223999942, 50.537907951000058 ], [ -119.010696788999923, 50.537920723000084 ], [ -119.0106839199999, 50.538003416000038 ], [ -119.01446767500002, 50.538241919000043 ], [ -119.014175645999913, 50.540119494000116 ], [ -119.0158863609999, 50.540227282000117 ], [ -119.015734448999922, 50.541204160000099 ], [ -119.016366412999943, 50.541243972000103 ], [ -119.016329557999967, 50.541480986000082 ], [ -119.016378529999898, 50.541484071000092 ], [ -119.016280469999955, 50.542114677000022 ], [ -119.018951491999985, 50.542282901000064 ], [ -119.018395550999969, 50.545859113000084 ], [ -119.017706050999934, 50.545815694000041 ], [ -119.017246907999919, 50.545213593000014 ], [ -119.016689987999939, 50.544747809000064 ], [ -119.015930199999929, 50.54444590100011 ], [ -119.014759513999962, 50.544159600000036 ], [ -119.012479387999974, 50.543632704000068 ], [ -119.012300182, 50.543566594000062 ], [ -119.0123018459999, 50.543562951000069 ], [ -119.012355448000037, 50.543445546000058 ], [ -119.012388979999969, 50.543372095000052 ], [ -119.012362213999964, 50.543329595000102 ], [ -119.012298796999929, 50.54322893100008 ], [ -119.012261611999946, 50.543169898000095 ], [ -119.011268120999958, 50.542051900000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16667083", "BldgCostT": "9283333", "sL_LossRatio": "0.999182571667554", "sL_AssetLoss": "578.644", "sL_BldgLoss": "578.171", "sL_StrLoss": "578", "sL_NStrLoss": "0.171", "sL_ContLoss": "0.473", "geom_point": "0101000020E610000037ECEF5372BE5DC049DEEF0607474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.973197844999945, 50.552935961000067 ], [ -118.978817681999885, 50.553291937000054 ], [ -118.978258418999971, 50.556867900000086 ], [ -118.9726381399999, 50.556511897000121 ], [ -118.973197844999945, 50.552935961000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35877244", "BldgCostT": "20614076", "sL_LossRatio": "0.998725315844118", "sL_AssetLoss": "1945.58", "sL_BldgLoss": "1943.1", "sL_StrLoss": "1942.2", "sL_NStrLoss": "0.9", "sL_ContLoss": "2.48", "geom_point": "0101000020E6100000BFCF4C8BD5C65DC0D8B0F03FC3484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.099732303999986, 50.576105467000069 ], [ -119.100175264999976, 50.573224300000049 ], [ -119.103008365999969, 50.573400445000104 ], [ -119.103285220999936, 50.571598767000111 ], [ -119.103382877999962, 50.571604837000095 ], [ -119.10345784, 50.571116969000059 ], [ -119.104039425999972, 50.571153119000087 ], [ -119.104182359999953, 50.570222785000034 ], [ -119.104244217999934, 50.570226629000096 ], [ -119.104591167999928, 50.567968188000108 ], [ -119.107099475999959, 50.568124061000113 ], [ -119.107205241, 50.567435297000038 ], [ -119.106089671999939, 50.567365979000051 ], [ -119.106119654999986, 50.567170753000013 ], [ -119.104864446999926, 50.567092745000096 ], [ -119.105413782999975, 50.563516196000087 ], [ -119.106599498999984, 50.563589887000013 ], [ -119.106856809999954, 50.561914126000062 ], [ -119.112261266999965, 50.562249839000081 ], [ -119.112390797999979, 50.561405550000124 ], [ -119.1125516099999, 50.561415535000066 ], [ -119.112501432000016, 50.563158574000042 ], [ -119.11248780499993, 50.563631891000036 ], [ -119.112372401999906, 50.563782690000032 ], [ -119.111855878999918, 50.564243262000041 ], [ -119.111591599999969, 50.564478904000069 ], [ -119.111421899000035, 50.564687691000046 ], [ -119.111254277999933, 50.565040197000052 ], [ -119.111111505999972, 50.565693012000111 ], [ -119.111027085999964, 50.565937798000114 ], [ -119.110873474999948, 50.56621594000007 ], [ -119.110848252, 50.566261614000048 ], [ -119.110643929999938, 50.566631606 ], [ -119.110678596999946, 50.566849515000136 ], [ -119.111133766, 50.567708454000048 ], [ -119.111143015999986, 50.567725899000024 ], [ -119.111183395999916, 50.56790630800004 ], [ -119.111180980999961, 50.568587604000079 ], [ -119.111123803999959, 50.568821514000021 ], [ -119.110994299999945, 50.569018298000074 ], [ -119.110809293999978, 50.56916030300011 ], [ -119.10996190299997, 50.569558992000104 ], [ -119.108936007999915, 50.570140691000077 ], [ -119.108540868999953, 50.570538410000061 ], [ -119.108397101999955, 50.570683101000093 ], [ -119.108204075999978, 50.570851883000081 ], [ -119.107893898999976, 50.571123111000084 ], [ -119.10679599799991, 50.571775205000108 ], [ -119.1063402, 50.572109690000083 ], [ -119.106049867999957, 50.572685707000069 ], [ -119.105972714999965, 50.572838799000138 ], [ -119.10580528, 50.573051392000139 ], [ -119.10553760599997, 50.573278499000011 ], [ -119.105035286999922, 50.57355004700009 ], [ -119.105030828999986, 50.573552478000124 ], [ -119.104708016999922, 50.573726998000033 ], [ -119.104467696999933, 50.573914199000029 ], [ -119.104385514999976, 50.574190810000069 ], [ -119.104347497999967, 50.576147200000079 ], [ -119.104381608999958, 50.576147254 ], [ -119.103414068999911, 50.576159579000034 ], [ -119.103356278999939, 50.576142296000064 ], [ -119.103326928999962, 50.57612461700009 ], [ -119.099732303999986, 50.576105467000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.995611992692625", "sL_AssetLoss": "33.5004", "sL_BldgLoss": "33.3534", "sL_StrLoss": "33.3", "sL_NStrLoss": "0.0534", "sL_ContLoss": "0.147", "geom_point": "0101000020E6100000957528D839BE5DC0D1BFF25AE8454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.96894671099993, 50.54627031400004 ], [ -118.968991726999946, 50.545982814000091 ], [ -118.969307879999945, 50.546043796000028 ], [ -118.969840996999935, 50.546037007000045 ], [ -118.971931306999963, 50.545734294000056 ], [ -118.972421901999923, 50.545708498000046 ], [ -118.972800819000014, 50.545729728000026 ], [ -118.973032320999963, 50.545742706000098 ], [ -118.974675264999945, 50.545926079000076 ], [ -118.97456568299998, 50.54662650900007 ], [ -118.96894671099993, 50.54627031400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90361277", "BldgCostT": "60264622", "sL_LossRatio": "1", "sL_AssetLoss": "639.1", "sL_BldgLoss": "639.1", "sL_StrLoss": "639.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E96B886C0C55DC0F8B6EC529B474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.086552198999982, 50.557702175000081 ], [ -119.086564184999958, 50.557624344000025 ], [ -119.083043930000017, 50.557404860000048 ], [ -119.083057152999942, 50.557319023000105 ], [ -119.083070926999966, 50.557319091000103 ], [ -119.089393432999913, 50.557349903000024 ], [ -119.092566265999935, 50.557365172000068 ], [ -119.094388958999957, 50.55737643900008 ], [ -119.09427984200002, 50.558085875000131 ], [ -119.095221747999929, 50.558144517000066 ], [ -119.094671667999961, 50.561721039000055 ], [ -119.090124355999976, 50.561437858000033 ], [ -119.090109459999908, 50.561534643000087 ], [ -119.084487720999945, 50.561184292000057 ], [ -119.085038604, 50.557607818000093 ], [ -119.086552198999982, 50.557702175000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79609334", "BldgCostT": "54133334", "sL_LossRatio": "1", "sL_AssetLoss": "365.1", "sL_BldgLoss": "365.1", "sL_StrLoss": "365.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DE26A6C48BD5DC0CC1FFC59E6424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.957557929999922, 50.520673106000075 ], [ -118.960366616999949, 50.520851586000092 ], [ -118.959806291999939, 50.524427598000045 ], [ -118.954190204999961, 50.524070648000077 ], [ -118.954461546999951, 50.522340377000027 ], [ -118.954524828999951, 50.522330164000095 ], [ -118.954895600999976, 50.52227030500007 ], [ -118.954908084999914, 50.522261902000125 ], [ -118.955579869999895, 50.521809512000118 ], [ -118.956406275999925, 50.521253001000026 ], [ -118.957557929999922, 50.520673106000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "72724623", "BldgCostT": "50913706", "sL_LossRatio": "0.995880546436514", "sL_AssetLoss": "94.43", "sL_BldgLoss": "94.041", "sL_StrLoss": "93.9", "sL_NStrLoss": "0.141", "sL_ContLoss": "0.389", "geom_point": "0101000020E610000015DD82BE17C35DC038874AA79E464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.053611007999933, 50.552763288000079 ], [ -119.050420480999946, 50.552091094000055 ], [ -119.048822596999955, 50.552065399000135 ], [ -119.047296272999972, 50.552353093000107 ], [ -119.045896593999942, 50.552279098000064 ], [ -119.044361304999896, 50.55172079000009 ], [ -119.04365562, 50.551381807000027 ], [ -119.042372506, 50.551116911000086 ], [ -119.040507462999955, 50.550969046000041 ], [ -119.040634158999964, 50.55015158800007 ], [ -119.046254178999931, 50.55050416000006 ], [ -119.046238660999933, 50.550604367000112 ], [ -119.046796467999926, 50.550639345000079 ], [ -119.046581157999952, 50.552029761000057 ], [ -119.046988102999975, 50.552055277000058 ], [ -119.046998978999952, 50.551985038000055 ], [ -119.048279525999945, 50.552065321000107 ], [ -119.048341539999967, 50.551664768000101 ], [ -119.053961806999936, 50.552016949000055 ], [ -119.053947597999979, 50.552108801000067 ], [ -119.055547562999962, 50.552209006000098 ], [ -119.055540102999942, 50.552257243000049 ], [ -119.056564333999944, 50.552321378000094 ], [ -119.056306157, 50.553990891000069 ], [ -119.055611786999989, 50.553942490000033 ], [ -119.055317091999896, 50.553677609000061 ], [ -119.055392208999947, 50.553459685000064 ], [ -119.05511511, 50.553267508000026 ], [ -119.053611007999933, 50.552763288000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9266174", "BldgCostT": "4742521", "sL_LossRatio": "0.993996884252424", "sL_AssetLoss": "122.603", "sL_BldgLoss": "121.867", "sL_StrLoss": "121.6", "sL_NStrLoss": "0.267", "sL_ContLoss": "0.736", "geom_point": "0101000020E6100000A0341645F6C15DC0A93827597B464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.027416185, 50.552201645000075 ], [ -119.027889571999964, 50.549152996000025 ], [ -119.028462373999943, 50.549189011000109 ], [ -119.028477448999951, 50.549091909000062 ], [ -119.034097241999973, 50.54944509500006 ], [ -119.034035701, 50.549841796000052 ], [ -119.034245763999934, 50.54985499200005 ], [ -119.034036090999948, 50.551206567000115 ], [ -119.034104465999988, 50.551210862000126 ], [ -119.033803788999975, 50.551447302000035 ], [ -119.03349029, 50.551695104000054 ], [ -119.032007080999975, 50.55199989300008 ], [ -119.031442811999938, 50.55200989700009 ], [ -119.030528399999966, 50.551764886000051 ], [ -119.029992688, 50.551764901000112 ], [ -119.029725413999955, 50.551823288000065 ], [ -119.028623497999988, 50.552437202000057 ], [ -119.028357108999941, 50.552486984000083 ], [ -119.028045796999933, 50.552447106000074 ], [ -119.027416185, 50.552201645000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9374783", "BldgCostT": "5100546", "sL_LossRatio": "1", "sL_AssetLoss": "393", "sL_BldgLoss": "393", "sL_StrLoss": "393", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001530AADA68B75DC026BADBB3B64C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.864624454999927, 50.597302178000071 ], [ -118.868069577, 50.597523602000066 ], [ -118.867500962999941, 50.601098812000075 ], [ -118.86187604399997, 50.600737233000068 ], [ -118.861886737, 50.600670061000102 ], [ -118.862814163999957, 50.600302135000071 ], [ -118.863268181999942, 50.600121995000059 ], [ -118.86331714499994, 50.600094020000029 ], [ -118.863505204999953, 50.599986460000082 ], [ -118.863669907999935, 50.5998923060001 ], [ -118.863717734999952, 50.599845916000049 ], [ -118.863958800999981, 50.599611995000075 ], [ -118.864226708999965, 50.59916060200009 ], [ -118.864450587999954, 50.598574495000044 ], [ -118.864523823999946, 50.598141300000087 ], [ -118.864537210999913, 50.597956761000084 ], [ -118.864565582999916, 50.59756609800008 ], [ -118.864624454999927, 50.597302178000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12762661", "BldgCostT": "7065743", "sL_LossRatio": "0.995837331168352", "sL_AssetLoss": "338.725", "sL_BldgLoss": "337.315", "sL_StrLoss": "336.8", "sL_NStrLoss": "0.515", "sL_ContLoss": "1.41", "geom_point": "0101000020E610000051E2088C14B95DC00F6865D211494940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.890730114999926, 50.570100295000067 ], [ -118.89181001599999, 50.568905706000066 ], [ -118.892001478999987, 50.568693902000113 ], [ -118.892528193999951, 50.568182299000043 ], [ -118.893457492999929, 50.567378590000082 ], [ -118.893741563, 50.566992867000089 ], [ -118.894062349999956, 50.567013419000077 ], [ -118.893647680999933, 50.569632226000117 ], [ -118.893718043999968, 50.569636734000014 ], [ -118.893151818999954, 50.573212195000075 ], [ -118.888897033999982, 50.572939529000081 ], [ -118.889058306999914, 50.57226238600007 ], [ -118.889269004999903, 50.571783793000165 ], [ -118.889466081999956, 50.571498502000104 ], [ -118.890026905999918, 50.570878198000024 ], [ -118.890616584999933, 50.570225897000086 ], [ -118.890730114999926, 50.570100295000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5783834", "BldgCostT": "3253334", "sL_LossRatio": "1", "sL_AssetLoss": "331.8", "sL_BldgLoss": "331.8", "sL_StrLoss": "331.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B8DE3EC469B95DC02F35BE06AF474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.896386904999929, 50.558090307000093 ], [ -118.898636283999934, 50.558234375000083 ], [ -118.898070592999929, 50.561809911000118 ], [ -118.89512494899995, 50.561621239000054 ], [ -118.89568374, 50.56042039800009 ], [ -118.895738809999955, 50.560302106000094 ], [ -118.895873826999917, 50.55993699100005 ], [ -118.896086216999961, 50.559362797000048 ], [ -118.896314805999978, 50.558545808000098 ], [ -118.896386904999929, 50.558090307000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7230411", "BldgCostT": "4010743", "sL_LossRatio": "1", "sL_AssetLoss": "63.6", "sL_BldgLoss": "63.6", "sL_StrLoss": "63.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005721E884BB85DC01C2C397ABE4A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.881287940999982, 50.581602995 ], [ -118.88131610799995, 50.58160480200015 ], [ -118.880748747999945, 50.585180149000081 ], [ -118.876455998999944, 50.584904643000115 ], [ -118.877627092999916, 50.584346309000139 ], [ -118.878048497999899, 50.58411608500009 ], [ -118.878246596999929, 50.583986867000078 ], [ -118.878598088999979, 50.583757599000108 ], [ -118.880874009999928, 50.581944289000042 ], [ -118.881287940999982, 50.581602995 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2871667", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "330.4", "sL_BldgLoss": "330.4", "sL_StrLoss": "330.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084F4F32A5BBD5DC054EF3E01F3454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.959657816999936, 50.545611092000037 ], [ -118.961258207999919, 50.545702218000052 ], [ -118.961010427999938, 50.547282915000054 ], [ -118.955391480999964, 50.546926036000045 ], [ -118.955518023999943, 50.546119425000029 ], [ -118.957340385999942, 50.546094998000079 ], [ -118.957929394999965, 50.546021397000082 ], [ -118.958576505999957, 50.545829329000121 ], [ -118.959119712999936, 50.545668087000138 ], [ -118.959657816999936, 50.545611092000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "575227115", "BldgCostT": "364673791", "sL_LossRatio": "0.996442914921464", "sL_AssetLoss": "16946.46", "sL_BldgLoss": "16886.18", "sL_StrLoss": "16864.3", "sL_NStrLoss": "21.88", "sL_ContLoss": "60.28", "geom_point": "0101000020E610000085AD5E4D37C25DC03F237CB544474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.032415059999948, 50.564071041000105 ], [ -119.032416887999943, 50.564059273000098 ], [ -119.03186694299994, 50.56402472600012 ], [ -119.031919962999936, 50.563683170000076 ], [ -119.031357150999909, 50.563647813000117 ], [ -119.031912281999936, 50.560071614000016 ], [ -119.032889325999989, 50.560132992000064 ], [ -119.032954857999968, 50.559710737000032 ], [ -119.035643398999923, 50.55987958800003 ], [ -119.036022599999953, 50.557435079000072 ], [ -119.031874612999957, 50.557174540000055 ], [ -119.032008248999958, 50.55631350000003 ], [ -119.03033233099994, 50.556208189000152 ], [ -119.030153410999972, 50.557360718000069 ], [ -119.027098437999911, 50.557168685000136 ], [ -119.026980302999917, 50.557929289000171 ], [ -119.026709028999903, 50.557912233000081 ], [ -119.026706191999963, 50.557930496000012 ], [ -119.024024996999955, 50.557761880000093 ], [ -119.02399667499999, 50.557944158000097 ], [ -119.023385313999938, 50.557905701000067 ], [ -119.023374548999954, 50.557974972000046 ], [ -119.019106554999922, 50.557706406000143 ], [ -119.018989285000018, 50.558460570000129 ], [ -119.01895265, 50.558458264000151 ], [ -119.018843717999943, 50.55915877200006 ], [ -119.018779758, 50.559154745000079 ], [ -119.018737127999941, 50.559428873000073 ], [ -119.013116210999939, 50.559074915000053 ], [ -119.013148770999976, 50.558865707000081 ], [ -119.013072716999929, 50.55886091600015 ], [ -119.012635387999978, 50.561670707000069 ], [ -119.007014238999929, 50.561316442000049 ], [ -119.00733122699998, 50.559281494000039 ], [ -119.007301226999971, 50.559279603000029 ], [ -119.007157166999917, 50.560204434000084 ], [ -119.005389268999949, 50.560092955000115 ], [ -119.005283016999968, 50.560774877000036 ], [ -118.99966203799994, 50.560420240000141 ], [ -119.000218339999918, 50.556852558000031 ], [ -118.998484662999942, 50.556743119000075 ], [ -118.99808671999989, 50.559294644 ], [ -118.992465981999899, 50.558939643 ], [ -118.993024142999957, 50.555363618000108 ], [ -118.996824136, 50.555603655000048 ], [ -118.997647714999928, 50.555655661000074 ], [ -118.99800504199996, 50.553364519000034 ], [ -118.99998026899999, 50.554142495000043 ], [ -119.000551293999962, 50.554367404000097 ], [ -119.001810005, 50.554621099000038 ], [ -119.002937174999886, 50.554824058000108 ], [ -119.003586094999946, 50.554940904000063 ], [ -119.005861924999977, 50.555350661000077 ], [ -119.00626379699996, 50.555423008000041 ], [ -119.006941185999949, 50.555519901000054 ], [ -119.0070652199999, 50.555521180000035 ], [ -119.007368998999965, 50.555524289000076 ], [ -119.008334309999938, 50.555858702000087 ], [ -119.008751234999963, 50.555926342000113 ], [ -119.00927040099999, 50.556046605000127 ], [ -119.009655905999963, 50.556223061000068 ], [ -119.009849315999986, 50.556319542000068 ], [ -119.0100324799999, 50.556410902000039 ], [ -119.010244706999984, 50.556495547000047 ], [ -119.010365534999949, 50.556539949000069 ], [ -119.01029999, 50.556657009000091 ], [ -119.010894391999955, 50.556594316000044 ], [ -119.012923108999928, 50.556031502000103 ], [ -119.013404104999935, 50.555948917000066 ], [ -119.013766714999946, 50.555916718000077 ], [ -119.014099416999926, 50.555830206000103 ], [ -119.013731025999931, 50.555690493000085 ], [ -119.013378598999964, 50.555456194000037 ], [ -119.013225151999933, 50.555204720000113 ], [ -119.012874417999939, 50.55462998800003 ], [ -119.012876795999944, 50.554323099000086 ], [ -119.012885877999963, 50.55277275600011 ], [ -119.012893094999981, 50.551531769000064 ], [ -119.012919782999987, 50.546962582000084 ], [ -119.012926427999915, 50.546288509000057 ], [ -119.012933310999955, 50.545590304000065 ], [ -119.012896198999982, 50.545354090000075 ], [ -119.012755288999955, 50.545102407000059 ], [ -119.012207108000013, 50.544695888000064 ], [ -119.012068299999953, 50.544548988000081 ], [ -119.012004091, 50.544368897000034 ], [ -119.012028002999983, 50.544208704000049 ], [ -119.012035560999962, 50.544158364000054 ], [ -119.014572507999944, 50.544729299000025 ], [ -119.015218106999939, 50.544970008000092 ], [ -119.016641111999931, 50.545908589000071 ], [ -119.01711914899991, 50.546363871000082 ], [ -119.017110650999896, 50.546418514000038 ], [ -119.017130440999935, 50.546419761000074 ], [ -119.016574303999974, 50.549995945000084 ], [ -119.016403276999981, 50.549985174000085 ], [ -119.016013866999984, 50.552488835000133 ], [ -119.016754573999989, 50.552535483 ], [ -119.01668928699999, 50.552955247000043 ], [ -119.016876600999964, 50.552967043000109 ], [ -119.017413407999953, 50.549515259000039 ], [ -119.02193997399992, 50.549800214000058 ], [ -119.022394810999941, 50.550080089000097 ], [ -119.022923787999957, 50.550572930000101 ], [ -119.02283502799996, 50.551144156000127 ], [ -119.023778461999967, 50.551203513000068 ], [ -119.024046518999953, 50.55136470200005 ], [ -119.025032010999965, 50.551653803000129 ], [ -119.025649786999963, 50.552209302000058 ], [ -119.026486703999922, 50.552672103000113 ], [ -119.02715920899999, 50.552884395000049 ], [ -119.027317783999962, 50.553277396000034 ], [ -119.028059619999937, 50.553454006000074 ], [ -119.028370186999965, 50.553448294000106 ], [ -119.029487982999967, 50.552862993000183 ], [ -119.030296385999947, 50.552605209000021 ], [ -119.0328714, 50.552390089000085 ], [ -119.034564890999931, 50.552089592000051 ], [ -119.035402902999962, 50.551841787000029 ], [ -119.035782249999926, 50.551774844000079 ], [ -119.035733508999968, 50.552089103000071 ], [ -119.038545009999893, 50.552265636000087 ], [ -119.038507102999972, 50.55138699400009 ], [ -119.038930298999972, 50.551379582000052 ], [ -119.038918690999978, 50.551110549000093 ], [ -119.03893847099999, 50.551109611000079 ], [ -119.039120598999958, 50.551106421000071 ], [ -119.040193800999972, 50.551216296000099 ], [ -119.040199889999911, 50.551357339000113 ], [ -119.040447953999958, 50.55135299100003 ], [ -119.04046484099996, 50.551244044000036 ], [ -119.040586587999911, 50.551256507000033 ], [ -119.041401788999963, 50.551484406000071 ], [ -119.042209606999933, 50.551605391000095 ], [ -119.043399386999923, 50.551998501000071 ], [ -119.044207193999966, 50.552371587000053 ], [ -119.045675493999937, 50.552713406000116 ], [ -119.047495986999976, 50.553015391000081 ], [ -119.048384993999903, 50.553016786000022 ], [ -119.048732508999962, 50.552894300000062 ], [ -119.0491680169999, 50.55254400700008 ], [ -119.049448108999982, 50.552468499000071 ], [ -119.05066229599997, 50.552491304000064 ], [ -119.051387405999975, 50.552586696000027 ], [ -119.05185768099993, 50.552713395000126 ], [ -119.05220709, 50.552922801000065 ], [ -119.05268059199993, 50.553130712000076 ], [ -119.054661981999985, 50.554524995000129 ], [ -119.055775812999912, 50.555163097000055 ], [ -119.056462312999912, 50.555356795000101 ], [ -119.056971100999974, 50.555356802000048 ], [ -119.057447483999979, 50.555268503000065 ], [ -119.058368436999899, 50.554953856000047 ], [ -119.062697113999917, 50.555224714000069 ], [ -119.062663718999971, 50.555440846000117 ], [ -119.062807024999927, 50.555449811000059 ], [ -119.062795425999965, 50.555524892000058 ], [ -119.065543625999908, 50.555696761000057 ], [ -119.066224017999957, 50.555786895000033 ], [ -119.066374756, 50.55574872600004 ], [ -119.067496982999955, 50.555818880000089 ], [ -119.067458912999925, 50.556065439000086 ], [ -119.067433616999949, 50.55622927100007 ], [ -119.06744821199996, 50.556230184000086 ], [ -119.067419492999989, 50.556416190000036 ], [ -119.069077847999935, 50.556519839000053 ], [ -119.069169756999941, 50.555924456000049 ], [ -119.069414164999927, 50.554341095000076 ], [ -119.069881452999979, 50.555437866000034 ], [ -119.074320873999966, 50.555492779000083 ], [ -119.074528563999962, 50.556158126000071 ], [ -119.074788079999934, 50.557304019000114 ], [ -119.078506541999971, 50.557296631000071 ], [ -119.078928614999953, 50.557298696000018 ], [ -119.081422368999981, 50.557310987000086 ], [ -119.081569585999887, 50.557311715000068 ], [ -119.081238156999945, 50.559462451000073 ], [ -119.078951094999979, 50.559319763000062 ], [ -119.07895075, 50.559322002000087 ], [ -119.073329373999954, 50.558971086000135 ], [ -119.07356400899999, 50.557450240000044 ], [ -119.071746119999943, 50.55733669500006 ], [ -119.071293567999959, 50.560269175000045 ], [ -119.071074014999979, 50.560255460000072 ], [ -119.071012877999962, 50.560651580000084 ], [ -119.07068162199991, 50.560630886000126 ], [ -119.0706538699999, 50.560810688000053 ], [ -119.069617604999962, 50.560745945000079 ], [ -119.069569737999984, 50.561056012000115 ], [ -119.063948219999972, 50.560704623000092 ], [ -119.064013664999933, 50.56028102000009 ], [ -119.059108795999975, 50.559974190000084 ], [ -119.05918031899995, 50.559511572000098 ], [ -119.058646712999973, 50.559478179000052 ], [ -119.058689670999954, 50.559200340000089 ], [ -119.056700371, 50.559075825000058 ], [ -119.056761209999976, 50.558682438000098 ], [ -119.056633196999883, 50.558674424000081 ], [ -119.056666621999938, 50.55845829400004 ], [ -119.056523307999925, 50.558449322000051 ], [ -119.056615685999972, 50.557852008000062 ], [ -119.054831811999946, 50.557740316000057 ], [ -119.054502413999941, 50.559869558000109 ], [ -119.053592634, 50.559812583000074 ], [ -119.053381142999982, 50.561179381000038 ], [ -119.053638146999972, 50.561195476000123 ], [ -119.05308472699997, 50.564771779000068 ], [ -119.050066031999947, 50.564582688000058 ], [ -119.050053589999919, 50.564663048000163 ], [ -119.044431772999985, 50.564310675000122 ], [ -119.044706640999891, 50.56253670600006 ], [ -119.044715878999938, 50.56247709200003 ], [ -119.044533902999916, 50.562465681000091 ], [ -119.044598682999933, 50.562047584000027 ], [ -119.044546032999946, 50.562044283000063 ], [ -119.04462076499999, 50.561561948000126 ], [ -119.044547966, 50.561557383000093 ], [ -119.044631410999941, 50.561018815000082 ], [ -119.04454480299999, 50.561013384000077 ], [ -119.044687758999942, 50.560090696 ], [ -119.043304626999955, 50.560003952000052 ], [ -119.043498804999956, 50.558750845000063 ], [ -119.042690395999955, 50.558700137000116 ], [ -119.042779257999925, 50.55812671400011 ], [ -119.042521329999914, 50.55811053300009 ], [ -119.042697155999974, 50.556975938000107 ], [ -119.040244308999917, 50.556822039000075 ], [ -119.040220243999926, 50.556977278000033 ], [ -119.040217529999936, 50.556994790000083 ], [ -119.03971019699999, 50.556962952000077 ], [ -119.039676516999975, 50.557180202000026 ], [ -119.038134234999944, 50.557083399000113 ], [ -119.038094117999918, 50.557342105000046 ], [ -119.040209800999904, 50.557474893000084 ], [ -119.041677726999964, 50.557567001000031 ], [ -119.041566177, 50.558286714000097 ], [ -119.042149160999912, 50.558323290000018 ], [ -119.042038277999936, 50.559038736000048 ], [ -119.042665395999947, 50.559078077000017 ], [ -119.042111129999952, 50.562654334000058 ], [ -119.041674050999944, 50.562626915000102 ], [ -119.038347830999967, 50.562418202000082 ], [ -119.038168634999963, 50.5635736690001 ], [ -119.038036751999982, 50.564424022000061 ], [ -119.036642968999956, 50.56433653400012 ], [ -119.032415059999948, 50.564071041000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10251720", "BldgCostT": "5495413", "sL_LossRatio": "0.997157974300832", "sL_AssetLoss": "496.125", "sL_BldgLoss": "494.715", "sL_StrLoss": "494.2", "sL_NStrLoss": "0.515", "sL_ContLoss": "1.41", "geom_point": "0101000020E61000009F11F8056CB65DC059C59760A34D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.847657359999943, 50.607671824000079 ], [ -118.847685496999958, 50.607495440000044 ], [ -118.846556436999947, 50.607422693000132 ], [ -118.846889984999919, 50.605332046000058 ], [ -118.847335586999975, 50.605335746000023 ], [ -118.849005602999938, 50.605349607000093 ], [ -118.852911485, 50.605312997000077 ], [ -118.852958537999882, 50.605309933000072 ], [ -118.853510184999934, 50.60527388700006 ], [ -118.853805522999949, 50.605230606000077 ], [ -118.854037587999954, 50.605177407000092 ], [ -118.85379317899999, 50.606710909000086 ], [ -118.853496985999982, 50.606691842000039 ], [ -118.853283030999961, 50.608034118000035 ], [ -118.847657359999943, 50.607671824000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "127.4", "sL_BldgLoss": "127.4", "sL_StrLoss": "127.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003DB2564063D45DC09B15BCAE80194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.319694961999957, 50.196133606000039 ], [ -119.319681892999981, 50.195864015000076 ], [ -119.321688489999957, 50.195823912000023 ], [ -119.321781726999973, 50.195822048000082 ], [ -119.321794807999964, 50.196091639000073 ], [ -119.322214776999928, 50.196083240000128 ], [ -119.322280198999948, 50.19743119300005 ], [ -119.321860217999955, 50.197439592000087 ], [ -119.321886383, 50.197978773000081 ], [ -119.321466397999984, 50.19798717000004 ], [ -119.321492558, 50.198526351000062 ], [ -119.32107256799999, 50.198534747000018 ], [ -119.321111803999955, 50.199343519000074 ], [ -119.320691805999957, 50.199351913000022 ], [ -119.320717960999929, 50.199891095000076 ], [ -119.320297957999983, 50.199899489000089 ], [ -119.320337182999978, 50.200708260000091 ], [ -119.319917173999968, 50.200716652000082 ], [ -119.319930245999942, 50.200986242000049 ], [ -119.319510233999921, 50.200994634000097 ], [ -119.319523304999962, 50.201264224000049 ], [ -119.318683274999941, 50.201281001000105 ], [ -119.31869634, 50.201550592000046 ], [ -119.318073026999954, 50.201563036000032 ], [ -119.317016268999936, 50.201584127000032 ], [ -119.317029326999943, 50.201853718000059 ], [ -119.315349241999954, 50.2018872290001 ], [ -119.315362287999974, 50.20215682000002 ], [ -119.31326216699992, 50.202198676000123 ], [ -119.313251181999973, 50.201971526000122 ], [ -119.31322306, 50.201389900000038 ], [ -119.31364307599992, 50.201381532000056 ], [ -119.313630038999975, 50.201111940000075 ], [ -119.314470068999967, 50.201095200000047 ], [ -119.314457025999943, 50.200825608000045 ], [ -119.314877038999938, 50.200817236000027 ], [ -119.314863993999907, 50.200547645000093 ], [ -119.315704013999934, 50.20053089600006 ], [ -119.315690965999963, 50.200261303000083 ], [ -119.316110972, 50.20025292800009 ], [ -119.316097919999933, 50.199983336000038 ], [ -119.316517925999946, 50.199974958000034 ], [ -119.316504873, 50.199705366000053 ], [ -119.316924874999984, 50.199696988000099 ], [ -119.316898763999973, 50.199157805000013 ], [ -119.317318760999953, 50.199149423000108 ], [ -119.31729264499999, 50.19861024100009 ], [ -119.317712638999922, 50.198601858000117 ], [ -119.317686518999949, 50.198062676000092 ], [ -119.318106506999953, 50.198054293000034 ], [ -119.31808038299998, 50.197515110000076 ], [ -119.318500365999938, 50.197506725000061 ], [ -119.31848730199998, 50.197237134000048 ], [ -119.318907281999955, 50.197228747000104 ], [ -119.318881150999943, 50.196689565000135 ], [ -119.319301125999957, 50.19668117600007 ], [ -119.319274991999961, 50.196141996000051 ], [ -119.319694961999957, 50.196133606000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.3", "sL_BldgLoss": "43.3", "sL_StrLoss": "43.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B912473F96D35DC044BE4BA9CB1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.308449994999975, 50.208727594000045 ], [ -119.308767815999971, 50.208746921000071 ], [ -119.308777521999943, 50.208963699000094 ], [ -119.30748643, 50.210308404000088 ], [ -119.307303053999973, 50.210291875000053 ], [ -119.306026961999947, 50.210177038000126 ], [ -119.303668761999944, 50.209964739000043 ], [ -119.303892748999914, 50.208450353000082 ], [ -119.308449994999975, 50.208727594000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "104.6", "sL_BldgLoss": "104.6", "sL_StrLoss": "104.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E827E66A75D65DC03DD4F87DE6184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.349313229999936, 50.196322658000042 ], [ -119.349363430999944, 50.19598080700009 ], [ -119.347734720999966, 50.195882326000067 ], [ -119.348260433999883, 50.192302928000068 ], [ -119.352189620999951, 50.192540467000086 ], [ -119.35372094399996, 50.19263300500014 ], [ -119.35372590599998, 50.193327948000082 ], [ -119.353705646999913, 50.193887576000051 ], [ -119.353695731999935, 50.194197941000077 ], [ -119.35368504099992, 50.194546157000069 ], [ -119.353668122999949, 50.195238764000059 ], [ -119.35364906699999, 50.196858827000014 ], [ -119.352990602999952, 50.196819042000037 ], [ -119.34927333, 50.196594368000092 ], [ -119.349313229999936, 50.196322658000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "85.7", "sL_BldgLoss": "85.7", "sL_StrLoss": "85.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063184549A7D35DC0C19BA013631A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.308643852000031, 50.204358090000028 ], [ -119.308678782999934, 50.204360215000101 ], [ -119.3087990329999, 50.20456258500014 ], [ -119.309794265000036, 50.206299321000095 ], [ -119.309874916999917, 50.206440071000024 ], [ -119.309923402999971, 50.207215046000066 ], [ -119.30909013099992, 50.207836704000087 ], [ -119.308998814999953, 50.207990999000089 ], [ -119.308902753999945, 50.207985157000053 ], [ -119.304437080999946, 50.207713503000043 ], [ -119.304641149999938, 50.206333562000104 ], [ -119.304966341999958, 50.204134368000091 ], [ -119.308643852000031, 50.204358090000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "339.2", "sL_BldgLoss": "339.2", "sL_StrLoss": "339.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB5A9CAD13DA5DC0D3A81B83A9144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.404181090999941, 50.165281952 ], [ -119.404332360999916, 50.164242454000018 ], [ -119.404110657999965, 50.164229152000061 ], [ -119.404631566, 50.160649339000045 ], [ -119.404760493999959, 50.160657075000138 ], [ -119.40526433099997, 50.157193945000103 ], [ -119.409450194000016, 50.157445019000093 ], [ -119.410838516999902, 50.157528258000042 ], [ -119.410384348999969, 50.160652636000052 ], [ -119.410318134999955, 50.161108115000033 ], [ -119.410189203999948, 50.161100385000111 ], [ -119.410055043999961, 50.162023193000046 ], [ -119.410276737999979, 50.162036483000144 ], [ -119.40975625899992, 50.165616316000069 ], [ -119.407050553, 50.165454081000085 ], [ -119.404181090999941, 50.165281952 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6802917", "BldgCostT": "4691667", "sL_LossRatio": "1", "sL_AssetLoss": "620", "sL_BldgLoss": "620", "sL_StrLoss": "620", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F71D479CA3D95DC0289553AF99164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.396563462999964, 50.175781881000013 ], [ -119.396990015999904, 50.172854695000048 ], [ -119.401550419999978, 50.173128473000098 ], [ -119.401485911999956, 50.173885093000074 ], [ -119.401642987999949, 50.173936413000078 ], [ -119.402602890999944, 50.173520490000065 ], [ -119.402794502999953, 50.173445087000061 ], [ -119.402818261, 50.173343766000052 ], [ -119.40303179299994, 50.173356578000075 ], [ -119.403631824999934, 50.17339257700003 ], [ -119.403695221999982, 50.172957049000075 ], [ -119.409271329999925, 50.173291435000117 ], [ -119.408750642999934, 50.176871211000034 ], [ -119.40765127899999, 50.176805307000038 ], [ -119.407587913999947, 50.177240836000081 ], [ -119.40376668799999, 50.177011680000113 ], [ -119.403291896999988, 50.180272927000019 ], [ -119.398225031999957, 50.179968864000081 ], [ -119.39816881899999, 50.180354641000058 ], [ -119.392899456999956, 50.180331313000053 ], [ -119.392534909999966, 50.180410671000068 ], [ -119.392654697999916, 50.179589263000054 ], [ -119.393043160999952, 50.176925315000055 ], [ -119.394011168999924, 50.176983473000078 ], [ -119.394206980999968, 50.175640338000036 ], [ -119.396563462999964, 50.175781881000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "160", "sL_BldgLoss": "160", "sL_StrLoss": "160", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD11469A15D65DC02C184B476F194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.347699176, 50.197061980000115 ], [ -119.348120808999937, 50.197087475000032 ], [ -119.347595029999965, 50.200666851000051 ], [ -119.342016018, 50.200329358000062 ], [ -119.342036767999957, 50.200188225000055 ], [ -119.342542231999971, 50.196750008000016 ], [ -119.347699176, 50.197061980000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "108.5", "sL_BldgLoss": "108.5", "sL_StrLoss": "108.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C76847809D55DC06F5313AFF81A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.326372050999922, 50.212476988000049 ], [ -119.326382483, 50.212406217000073 ], [ -119.326050637999941, 50.21238609200006 ], [ -119.326578249999926, 50.208806874000082 ], [ -119.33135565299996, 50.20909651000008 ], [ -119.330970919999942, 50.212462449000071 ], [ -119.326372050999922, 50.212476988000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "176.9", "sL_BldgLoss": "176.9", "sL_StrLoss": "176.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015E1AADBAED15DC05F1734E3A31A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.275557352999911, 50.208097216000041 ], [ -119.275679532999945, 50.207274606000098 ], [ -119.276044863, 50.207296933000123 ], [ -119.276259685999946, 50.205850415000107 ], [ -119.276525641999982, 50.205866668000063 ], [ -119.276642411999902, 50.205080321000047 ], [ -119.276965115999943, 50.205100041000144 ], [ -119.276987003999977, 50.204952629000083 ], [ -119.277437933999963, 50.204980183000032 ], [ -119.277439084999983, 50.204972439000088 ], [ -119.279345153999955, 50.205088888000063 ], [ -119.279342262999947, 50.205028231000021 ], [ -119.280602440999985, 50.205003489000021 ], [ -119.280610197, 50.205166157000093 ], [ -119.283018184999918, 50.205313195000109 ], [ -119.283008514999935, 50.205378369000051 ], [ -119.283211397999935, 50.205390755000039 ], [ -119.283118696999964, 50.205570999000024 ], [ -119.283310904999965, 50.206348600000098 ], [ -119.284203278999925, 50.207141895000071 ], [ -119.2842445859999, 50.207359719000117 ], [ -119.279165205, 50.206457144000105 ], [ -119.278969329999939, 50.206422337000099 ], [ -119.278817584999942, 50.206713477000051 ], [ -119.278781224999975, 50.206753087000081 ], [ -119.278103994999981, 50.207491399000084 ], [ -119.277981987999937, 50.207659086000028 ], [ -119.277994298999943, 50.207832292000077 ], [ -119.278042426999946, 50.207934555000058 ], [ -119.278207816999966, 50.20805299400007 ], [ -119.277460489999967, 50.207887680000077 ], [ -119.277341184999941, 50.208200282000085 ], [ -119.278081397999983, 50.208212299000103 ], [ -119.277397642999958, 50.209069043000113 ], [ -119.277000617999974, 50.209566476000099 ], [ -119.276543537999913, 50.209924066000099 ], [ -119.27627218899994, 50.210092587000112 ], [ -119.27595833099997, 50.21024402700008 ], [ -119.273812790999955, 50.210938139000064 ], [ -119.273167503999971, 50.211074739000054 ], [ -119.27277015699994, 50.211115448000029 ], [ -119.272612126999945, 50.211110748000053 ], [ -119.272482856999957, 50.211106908000062 ], [ -119.272261309999934, 50.211129494000076 ], [ -119.271918243999977, 50.211211693000074 ], [ -119.27098055799992, 50.21134808100004 ], [ -119.270606904999951, 50.211402407000037 ], [ -119.269807752999924, 50.211532709000032 ], [ -119.268973183999918, 50.21181446200012 ], [ -119.269198944999971, 50.210296065000087 ], [ -119.26958267899991, 50.210319538000078 ], [ -119.269663251999987, 50.20977757400005 ], [ -119.271642533999952, 50.209898622000019 ], [ -119.271693376999963, 50.209556520000085 ], [ -119.271859068999959, 50.20956665100006 ], [ -119.271930392999963, 50.209086725000098 ], [ -119.272209428999957, 50.209103787000053 ], [ -119.27223068699999, 50.208960731000111 ], [ -119.27260883799994, 50.208983852000102 ], [ -119.272637979999914, 50.208787739000108 ], [ -119.27317882899996, 50.208820807000059 ], [ -119.273209963999975, 50.208611252000019 ], [ -119.273675319999967, 50.208639701000052 ], [ -119.273708753, 50.208414662000052 ], [ -119.27399418499999, 50.208432112000089 ], [ -119.274014247999943, 50.208297069000089 ], [ -119.27474132199994, 50.208341513000036 ], [ -119.27478462699996, 50.208049987000059 ], [ -119.275557352999911, 50.208097216000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "101", "sL_BldgLoss": "101", "sL_StrLoss": "101", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000782BC73B72D45DC02D095053CB184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.321827701999922, 50.191939785000081 ], [ -119.322005767999883, 50.191925845000071 ], [ -119.321523800999898, 50.195194462000082 ], [ -119.315945656999958, 50.194855649000061 ], [ -119.315983357999954, 50.194600197000085 ], [ -119.316544904999901, 50.193970804000074 ], [ -119.317258794999972, 50.193362615000133 ], [ -119.318632191999981, 50.192489605000027 ], [ -119.319248890999958, 50.192207591000077 ], [ -119.320707419999962, 50.191952703000041 ], [ -119.321827701999922, 50.191939785000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "1", "sL_AssetLoss": "398.7", "sL_BldgLoss": "398.7", "sL_StrLoss": "398.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000057C245B4FED15DC02ECCDF10EC174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.265729754999967, 50.191295614000111 ], [ -119.266107999, 50.188751612000125 ], [ -119.266115576999965, 50.188700639000075 ], [ -119.266189992999969, 50.188705195000061 ], [ -119.26982209699996, 50.188927524000079 ], [ -119.269955860999929, 50.188027283000075 ], [ -119.270812913999961, 50.187997838000101 ], [ -119.272576072999982, 50.187940689000115 ], [ -119.27258577399999, 50.18761522100003 ], [ -119.27258806599994, 50.187538671000048 ], [ -119.272590931999972, 50.187442686000061 ], [ -119.273671306999958, 50.187508770000079 ], [ -119.273672117999951, 50.187503309000107 ], [ -119.274177821999942, 50.187534238000055 ], [ -119.274189198999963, 50.187457620000011 ], [ -119.274696055999982, 50.187488618000032 ], [ -119.274698473999962, 50.187472332000041 ], [ -119.27509267799995, 50.1874964390001 ], [ -119.275095557999975, 50.187477041000101 ], [ -119.27546479699997, 50.18749962000004 ], [ -119.275466440999963, 50.187488550000054 ], [ -119.275917169999957, 50.187516109000065 ], [ -119.275918320999949, 50.187508360000031 ], [ -119.276693668999968, 50.187555764000059 ], [ -119.276701786000018, 50.187501078000018 ], [ -119.277669722999974, 50.187560248000132 ], [ -119.277655016999958, 50.187251187000129 ], [ -119.278074919999966, 50.187242950000091 ], [ -119.278062089999978, 50.186973350000102 ], [ -119.280161595999957, 50.186932140000096 ], [ -119.280148753999981, 50.186662541000025 ], [ -119.280568650999925, 50.186654294000149 ], [ -119.280555805999896, 50.186384696000061 ], [ -119.280975702999953, 50.186376449000065 ], [ -119.28096285599996, 50.186106850000087 ], [ -119.281310916999971, 50.186100011000086 ], [ -119.281314066999954, 50.186078780000081 ], [ -119.28143349, 50.186086076000059 ], [ -119.281475374999928, 50.185803683000096 ], [ -119.281744625999963, 50.185820132000096 ], [ -119.281790877999967, 50.185508289000062 ], [ -119.28202476499996, 50.185522578000104 ], [ -119.282054275999982, 50.185323595000114 ], [ -119.282392065999943, 50.18534422900008 ], [ -119.282440176999941, 50.185019803000031 ], [ -119.283010331999961, 50.185054630000145 ], [ -119.283053363999898, 50.184764417000089 ], [ -119.283486374999924, 50.184790865000132 ], [ -119.283525656999927, 50.184525927000053 ], [ -119.284027187999968, 50.184556557000114 ], [ -119.28406834799992, 50.184278938000013 ], [ -119.284533007999926, 50.184307315000112 ], [ -119.284569337999969, 50.184062250000053 ], [ -119.284921243999989, 50.184083739000066 ], [ -119.284958032999924, 50.183835557000101 ], [ -119.285140952999953, 50.183846727000066 ], [ -119.285162148, 50.183703736000034 ], [ -119.288325302999965, 50.183715257000102 ], [ -119.288341532999965, 50.182979878000019 ], [ -119.288502278999928, 50.182989688000092 ], [ -119.288523235999946, 50.182848237000087 ], [ -119.289171749999966, 50.182887815000115 ], [ -119.289191610999964, 50.182753752000089 ], [ -119.29087017799999, 50.182856177000119 ], [ -119.290912146999972, 50.182572790000037 ], [ -119.291380412999928, 50.182601359000081 ], [ -119.291389929, 50.182537101 ], [ -119.291875476999948, 50.182566723 ], [ -119.291896312999967, 50.182426013000047 ], [ -119.297472752999965, 50.18276604700003 ], [ -119.297419033, 50.183129130000061 ], [ -119.296156721999964, 50.183716507000049 ], [ -119.295592108000022, 50.184213497000066 ], [ -119.295166605999896, 50.184410089 ], [ -119.294162212999964, 50.184596076000048 ], [ -119.293805599999956, 50.184662089000085 ], [ -119.29253189699989, 50.184696296000013 ], [ -119.29213319099992, 50.184821595000052 ], [ -119.291380772999972, 50.184892874000106 ], [ -119.291185100999925, 50.184911395000036 ], [ -119.290829512999963, 50.185099409000095 ], [ -119.290552919999953, 50.185118456000062 ], [ -119.290321884999955, 50.185134356000148 ], [ -119.289678560999931, 50.185178623000134 ], [ -119.28947404799996, 50.185192709000098 ], [ -119.289195395999982, 50.185211906000092 ], [ -119.288655992999963, 50.185384193000075 ], [ -119.288397026999959, 50.185506683000057 ], [ -119.28808089599994, 50.185656191000078 ], [ -119.287784428999913, 50.185889461000023 ], [ -119.287528802999987, 50.186090591000024 ], [ -119.286732041, 50.186368685000033 ], [ -119.286398151999919, 50.1864852040001 ], [ -119.286382831999958, 50.186490553000048 ], [ -119.286371996999918, 50.186494321000048 ], [ -119.286080113999972, 50.186596191000049 ], [ -119.285016615999936, 50.187183002000062 ], [ -119.284665717999971, 50.187459306000029 ], [ -119.283819089999952, 50.188520288000099 ], [ -119.283568901999956, 50.188582517000107 ], [ -119.283389720999963, 50.188627100000083 ], [ -119.283281367999948, 50.188692148000058 ], [ -119.28307354699993, 50.188816920000079 ], [ -119.282723187000016, 50.189027311000075 ], [ -119.282338438999915, 50.189086381000095 ], [ -119.281108809, 50.189275187000057 ], [ -119.280322414999929, 50.189532904000068 ], [ -119.279475600999902, 50.189666801000072 ], [ -119.27700651, 50.189616994000041 ], [ -119.276694299999988, 50.189532889000063 ], [ -119.276347615999953, 50.189592795000088 ], [ -119.275426490999919, 50.189604247000048 ], [ -119.274971372999957, 50.189609882000092 ], [ -119.273825512999949, 50.189624097000035 ], [ -119.273162809999974, 50.189790686000066 ], [ -119.272914126999964, 50.189767732000099 ], [ -119.272515119000033, 50.189730898000029 ], [ -119.27211589499997, 50.189874698000104 ], [ -119.270863193999901, 50.190059914000059 ], [ -119.269727899999907, 50.190334809000056 ], [ -119.269220398999906, 50.190569805000059 ], [ -119.269006114999954, 50.190780491000076 ], [ -119.268467887999932, 50.190961392000098 ], [ -119.268230707999962, 50.19100269500008 ], [ -119.266915602999944, 50.191603705 ], [ -119.266588645999917, 50.191849433000094 ], [ -119.266239007, 50.192112202000011 ], [ -119.266003561999952, 50.19221982600007 ], [ -119.265838453999947, 50.19229527400006 ], [ -119.265583433999922, 50.192279660000096 ], [ -119.265729754999967, 50.191295614000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "95.8", "sL_BldgLoss": "95.8", "sL_StrLoss": "95.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B98633F2CD65DC02B2F3BBCCE164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.348697281999932, 50.176450093000014 ], [ -119.348884735999945, 50.176381226000061 ], [ -119.348405697999937, 50.179644386000113 ], [ -119.342925700999928, 50.17931276400008 ], [ -119.344023384999971, 50.178253210000051 ], [ -119.344335396999938, 50.177778894000063 ], [ -119.344794474999944, 50.177428594000098 ], [ -119.346159277999902, 50.176689399000054 ], [ -119.348697281999932, 50.176450093000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "51.3", "sL_BldgLoss": "51.3", "sL_StrLoss": "51.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D83857266D55DC089839DC57F174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.334578727999897, 50.181660596000093 ], [ -119.336173905999914, 50.181757273000109 ], [ -119.335647362999936, 50.185336663000037 ], [ -119.331986371999932, 50.1851147510001 ], [ -119.332240180999932, 50.184804599000174 ], [ -119.332985312999938, 50.183719305000068 ], [ -119.332940893999989, 50.183370391000075 ], [ -119.332644487999943, 50.182773611000087 ], [ -119.333217996999963, 50.182464598000116 ], [ -119.333539185999882, 50.182142691000116 ], [ -119.334431289999912, 50.181765298000123 ], [ -119.334578727999897, 50.181660596000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "206.6", "sL_BldgLoss": "206.6", "sL_StrLoss": "206.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B327C3C1BD95DC0B5B39E10F0154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.390319869999971, 50.17313975200004 ], [ -119.390338305999961, 50.173013351000108 ], [ -119.388156908999946, 50.172882192000095 ], [ -119.38867917099995, 50.169302495000068 ], [ -119.394254720999967, 50.169637642000083 ], [ -119.394236296000017, 50.169764045000143 ], [ -119.396417560999964, 50.169895083000043 ], [ -119.395895900999975, 50.173474814000031 ], [ -119.390319869999971, 50.17313975200004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41.4", "sL_BldgLoss": "41.4", "sL_StrLoss": "41.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A1887FB784D25DC036A94F0F5D1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.288884702999908, 50.223096041000069 ], [ -119.288877061, 50.222549358000066 ], [ -119.288462714999923, 50.221669116000086 ], [ -119.288024542999949, 50.221124807000123 ], [ -119.288210910999922, 50.2205051440001 ], [ -119.288491579999942, 50.220499613000044 ], [ -119.288478675999926, 50.220230018000052 ], [ -119.288898865999926, 50.22022173700001 ], [ -119.288885958999941, 50.219952141000078 ], [ -119.290086317999965, 50.219928478000021 ], [ -119.290146521999986, 50.219927290000101 ], [ -119.290185264999977, 50.220736077000034 ], [ -119.289765069999959, 50.220744362000104 ], [ -119.28979467, 50.221362347000074 ], [ -119.289803807999931, 50.221553149000044 ], [ -119.290224009999946, 50.221544864000066 ], [ -119.290288587999967, 50.222892841000075 ], [ -119.290708802999916, 50.222884553000036 ], [ -119.290725590999955, 50.223234883000032 ], [ -119.290051835999975, 50.223248450000071 ], [ -119.289560133999956, 50.223241067000103 ], [ -119.289387174999916, 50.223239537000055 ], [ -119.28902959199999, 50.223239406000076 ], [ -119.288884702999908, 50.223096041000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020971", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "242.5", "sL_BldgLoss": "242.5", "sL_StrLoss": "242.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E577812F98DA5DC0E8C0517623144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.4168810199999, 50.153780902000051 ], [ -119.419621096999919, 50.153944997000082 ], [ -119.419619959, 50.154378733000051 ], [ -119.419331120999956, 50.15463427000001 ], [ -119.419617661999922, 50.158450005000077 ], [ -119.417293317999935, 50.158310826000033 ], [ -119.416708282999963, 50.158275788000076 ], [ -119.416655848999966, 50.158636841000025 ], [ -119.416423746999968, 50.16023497700008 ], [ -119.413430351999978, 50.160055648000117 ], [ -119.41084918899999, 50.159900948000086 ], [ -119.411369514999961, 50.156321083000122 ], [ -119.415290670999966, 50.15655607000015 ], [ -119.415575231999981, 50.154596874000035 ], [ -119.41675229499999, 50.154667386000021 ], [ -119.4168810199999, 50.153780902000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020972", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "141.4", "sL_BldgLoss": "141.4", "sL_StrLoss": "141.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5758C2BEED55DC061AD770B66174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.342291568999912, 50.185425570000156 ], [ -119.342278376999928, 50.185155983000087 ], [ -119.34185850899992, 50.185164453000034 ], [ -119.341845319999962, 50.184894865000025 ], [ -119.341005589999924, 50.184911800000052 ], [ -119.34096603699993, 50.18410303700005 ], [ -119.340546180999979, 50.184111501000075 ], [ -119.340506636999962, 50.183302739000055 ], [ -119.33966693399999, 50.183319662000024 ], [ -119.339601056999967, 50.181971723000046 ], [ -119.340020894999924, 50.181963261000114 ], [ -119.339968187999943, 50.180884910000067 ], [ -119.340388016999924, 50.180876448000035 ], [ -119.340383458999966, 50.180783210000101 ], [ -119.340821409999975, 50.180682886000028 ], [ -119.34108299599994, 50.180592584000067 ], [ -119.341214493999928, 50.180589932000032 ], [ -119.341212437999971, 50.180547897000039 ], [ -119.34159280099999, 50.180416589000025 ], [ -119.341729002999926, 50.180309703000084 ], [ -119.342460783999925, 50.180294941000056 ], [ -119.342473973999972, 50.180564528000055 ], [ -119.344153277999965, 50.180530635000096 ], [ -119.344219279999976, 50.181878571000055 ], [ -119.344639117999961, 50.181870094000061 ], [ -119.34465232299999, 50.182139680000077 ], [ -119.345911839999957, 50.182114239000043 ], [ -119.345991106999975, 50.183731759000068 ], [ -119.345151400999924, 50.183748722000047 ], [ -119.345177814999985, 50.18428789600005 ], [ -119.344757956999928, 50.184296375000066 ], [ -119.344771161999972, 50.184565962000079 ], [ -119.344351301999964, 50.184574441000024 ], [ -119.344364504999959, 50.184844027000125 ], [ -119.343944639999918, 50.18485250400002 ], [ -119.343957842999941, 50.185122091000046 ], [ -119.343537974999919, 50.185130566000062 ], [ -119.343551174000012, 50.185400153000103 ], [ -119.342291568999912, 50.185425570000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.4", "sL_BldgLoss": "44.4", "sL_StrLoss": "44.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E4E27F5DD3CE5DC04356B77A4E1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.2315633799999, 50.215722747000093 ], [ -119.230402305, 50.210278352000024 ], [ -119.230603027999905, 50.210233950000031 ], [ -119.230695802999946, 50.210213431000042 ], [ -119.230613588999944, 50.210763225000022 ], [ -119.231892878999943, 50.210841923000039 ], [ -119.231532863999959, 50.213249772000054 ], [ -119.231594049999927, 50.213253536000096 ], [ -119.231536220999885, 50.213640293000061 ], [ -119.232903735999969, 50.213724401000036 ], [ -119.232599556, 50.215759003000066 ], [ -119.2315633799999, 50.215722747000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006BF99A485DD05DC0BE565B146A1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.252989991999939, 50.213037601000089 ], [ -119.258569898999937, 50.213379589000048 ], [ -119.258287986999932, 50.215272486000053 ], [ -119.25663422300002, 50.215335135000075 ], [ -119.256624534999958, 50.215334953000081 ], [ -119.252730222999958, 50.214780385000026 ], [ -119.252989991999939, 50.213037601000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020976", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43", "sL_BldgLoss": "43", "sL_StrLoss": "43", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063D3E7F6D4D05DC0AB4CA55D541B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262893935999969, 50.212536434000114 ], [ -119.262981920999948, 50.211945227000072 ], [ -119.26788354199999, 50.21224521900011 ], [ -119.267469765000016, 50.212418793000083 ], [ -119.267016470999963, 50.212701587000048 ], [ -119.266581767999938, 50.212627794000092 ], [ -119.26601451, 50.212613167000022 ], [ -119.26524611499994, 50.212634110000103 ], [ -119.264446509999971, 50.212681172000075 ], [ -119.263702713999962, 50.212804317000099 ], [ -119.26303242799996, 50.212975862000036 ], [ -119.262985027999932, 50.215094412000028 ], [ -119.260296785999955, 50.215196352000049 ], [ -119.260530431999925, 50.213627075000112 ], [ -119.262210002999922, 50.21372992700006 ], [ -119.262392214999977, 50.21250571500012 ], [ -119.262893935999969, 50.212536434000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020977", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129108000", "BldgCostT": "87150000", "sL_LossRatio": "0.997582259987643", "sL_AssetLoss": "9678.46", "sL_BldgLoss": "9655.06", "sL_StrLoss": "9646.6", "sL_NStrLoss": "8.46", "sL_ContLoss": "23.4", "geom_point": "0101000020E6100000415187B2C3D15DC0FCD7A83DDB1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.266548484999987, 50.238199922000049 ], [ -119.266585149999912, 50.237998157000042 ], [ -119.266621221999984, 50.23779988800009 ], [ -119.266804914999923, 50.23678910900005 ], [ -119.266933110999929, 50.236187906000033 ], [ -119.266996071000023, 50.235892454000101 ], [ -119.26701054399993, 50.235824715000021 ], [ -119.267103280999947, 50.235389765000086 ], [ -119.267107997999943, 50.235367613000122 ], [ -119.267123910999956, 50.235300898000055 ], [ -119.267212225999941, 50.234930410000111 ], [ -119.267257809999961, 50.234739307 ], [ -119.267459448999915, 50.234308605000187 ], [ -119.268005185, 50.23314279200018 ], [ -119.268147253999942, 50.232718201000047 ], [ -119.268398751999953, 50.232227839000124 ], [ -119.26852731799994, 50.232066060000058 ], [ -119.26893192699994, 50.231718900000018 ], [ -119.26964638599999, 50.231597128000026 ], [ -119.270160622999981, 50.231509502000065 ], [ -119.270619296999911, 50.231379497 ], [ -119.272469113999961, 50.230521995000061 ], [ -119.272892796999983, 50.230371901000055 ], [ -119.273801790999983, 50.230177305000034 ], [ -119.274408896999944, 50.230138604000047 ], [ -119.275857698, 50.230178290000026 ], [ -119.27643150499992, 50.230154707000082 ], [ -119.276526936999929, 50.230138178000068 ], [ -119.276836184999979, 50.230084607000066 ], [ -119.278041681999952, 50.229723962000087 ], [ -119.278774309999903, 50.229503278000024 ], [ -119.278829852999962, 50.229490276000078 ], [ -119.27932870399998, 50.22937367100004 ], [ -119.279869887999922, 50.229329156000034 ], [ -119.280109905999922, 50.229309397000044 ], [ -119.280363201999975, 50.229234597000072 ], [ -119.280573116999946, 50.22910119200003 ], [ -119.280928117, 50.228721097000054 ], [ -119.281104600999953, 50.228822092000051 ], [ -119.281109922, 50.228860769000107 ], [ -119.281121318999936, 50.228943805000064 ], [ -119.281181748999984, 50.229383870000063 ], [ -119.281220979999944, 50.229878302000031 ], [ -119.281239275999909, 50.230181888000125 ], [ -119.280871836999935, 50.231328639000033 ], [ -119.280730521999885, 50.231550219000106 ], [ -119.280293264999898, 50.231934322000065 ], [ -119.280216635999977, 50.232042497000073 ], [ -119.280193363999942, 50.2323697060001 ], [ -119.281199187999931, 50.232016713000064 ], [ -119.281142888, 50.231950102000027 ], [ -119.281689952999926, 50.231219136000043 ], [ -119.283452897999894, 50.228863407000041 ], [ -119.283765693999939, 50.228634203000112 ], [ -119.284116690999952, 50.228518383000079 ], [ -119.28462240199994, 50.228478792000047 ], [ -119.285149890999946, 50.228596797000144 ], [ -119.286358274999927, 50.228898907000072 ], [ -119.285181978999958, 50.230448604000053 ], [ -119.28528109799997, 50.230616305000126 ], [ -119.285279696000018, 50.23080579600007 ], [ -119.285034312999983, 50.231415593000079 ], [ -119.285016706999897, 50.23147799 ], [ -119.285162410999988, 50.231693868000043 ], [ -119.285256003999947, 50.231832555000111 ], [ -119.286262925999978, 50.230424261000088 ], [ -119.287706713999938, 50.228544392000067 ], [ -119.287802264999968, 50.228419968000047 ], [ -119.288296976999973, 50.227676396000113 ], [ -119.288315683999897, 50.227642160000116 ], [ -119.288727989, 50.226887425000051 ], [ -119.289269179999948, 50.225791875000048 ], [ -119.289453942999941, 50.225361636000045 ], [ -119.289501496999932, 50.225250806000041 ], [ -119.289643366999925, 50.224740319000027 ], [ -119.289691369999943, 50.224321637000074 ], [ -119.289620006999925, 50.223596810000053 ], [ -119.28960744199999, 50.223521984000058 ], [ -119.289589289999938, 50.223414241000079 ], [ -119.289560133999956, 50.223241067000103 ], [ -119.290051835999975, 50.223248450000071 ], [ -119.290123603999973, 50.223334094000101 ], [ -119.290096977999937, 50.223586728000022 ], [ -119.29001303499993, 50.224383664000058 ], [ -119.29001423599999, 50.224819467000067 ], [ -119.290016184999914, 50.225526327000097 ], [ -119.290016372999986, 50.225592593000073 ], [ -119.290025167999914, 50.228793830000036 ], [ -119.289922207999936, 50.229032209000117 ], [ -119.289585256999956, 50.229291549000045 ], [ -119.289251498999974, 50.229424686000044 ], [ -119.288497061999948, 50.229726287000055 ], [ -119.288289737999889, 50.229845998000073 ], [ -119.288030416999959, 50.229995765000098 ], [ -119.287168768999962, 50.23069708600012 ], [ -119.285674742, 50.232082093000024 ], [ -119.285555177999981, 50.232230665000067 ], [ -119.285092886000015, 50.232804988000048 ], [ -119.284775971999963, 50.233358091000071 ], [ -119.284775541000016, 50.233358417000034 ], [ -119.284696790999988, 50.233391305000104 ], [ -119.284614144999949, 50.233422529000052 ], [ -119.284531535000028, 50.233453744000059 ], [ -119.28444889, 50.233484968000049 ], [ -119.284345818999938, 50.233523894 ], [ -119.28365738799998, 50.23523509500005 ], [ -119.283300397999966, 50.236122379000022 ], [ -119.282968278999945, 50.236947821000093 ], [ -119.282909665999938, 50.235721050000038 ], [ -119.282489337999948, 50.235729311000057 ], [ -119.282476458999923, 50.235459715000133 ], [ -119.281635805999898, 50.235476232000053 ], [ -119.281622933999969, 50.235206636000079 ], [ -119.28120260799993, 50.235214891000062 ], [ -119.28117686799996, 50.234675698000096 ], [ -119.280756547999957, 50.234683952000097 ], [ -119.280743679999972, 50.234414356000073 ], [ -119.28032336199999, 50.234422609000035 ], [ -119.28041342399996, 50.236309786000071 ], [ -119.280071536999984, 50.236316497000089 ], [ -119.280012108999983, 50.236716609000034 ], [ -119.280044549999943, 50.237396424000053 ], [ -119.280464893, 50.237388172000053 ], [ -119.280477761999947, 50.237657769000052 ], [ -119.282579488999957, 50.237616485000032 ], [ -119.282553730999965, 50.237077292 ], [ -119.28291907299996, 50.237070112000033 ], [ -119.282526231999967, 50.238046422000046 ], [ -119.282284170999958, 50.238045188000036 ], [ -119.280721254999946, 50.238079811000034 ], [ -119.280344161999921, 50.238058609000099 ], [ -119.279954869999926, 50.237958126000059 ], [ -119.27977905299997, 50.237861631000037 ], [ -119.279531568999971, 50.238076739000043 ], [ -119.279232158999946, 50.238148817000109 ], [ -119.275993931999892, 50.238175274000042 ], [ -119.27462940599996, 50.238186405000114 ], [ -119.273992122999985, 50.238179836000015 ], [ -119.273564482999987, 50.238175445000095 ], [ -119.273172489999979, 50.238171419 ], [ -119.272045904999914, 50.2381703000001 ], [ -119.27185779199999, 50.23825438500004 ], [ -119.271756199999956, 50.238299785000038 ], [ -119.270970358999975, 50.238298492000126 ], [ -119.271345733999951, 50.2357745790001 ], [ -119.274489972, 50.235966692000019 ], [ -119.274512394999945, 50.235815850000044 ], [ -119.278719209999977, 50.236072745000051 ], [ -119.278629234999968, 50.234186008000101 ], [ -119.278208917999962, 50.234194252000115 ], [ -119.278183211999973, 50.233655058000082 ], [ -119.277762899999971, 50.233663302000075 ], [ -119.277750050999927, 50.233393704000072 ], [ -119.277329740999946, 50.233401946000114 ], [ -119.277316893999938, 50.233132349000115 ], [ -119.276896584999932, 50.233140589000072 ], [ -119.27688373899997, 50.232870992000109 ], [ -119.276463434999982, 50.232879229000098 ], [ -119.27645059199989, 50.232609633000045 ], [ -119.274304303999912, 50.232651681000029 ], [ -119.274302747999954, 50.232662147000084 ], [ -119.274173381, 50.232654244000081 ], [ -119.27400269099999, 50.232657586000109 ], [ -119.273984040999963, 50.232783054000045 ], [ -119.273747782999962, 50.232768620000044 ], [ -119.273733134999958, 50.232867159000087 ], [ -119.273417021999961, 50.232847845000023 ], [ -119.27339092899993, 50.233023367000015 ], [ -119.273192402999953, 50.233011237000049 ], [ -119.273176623999987, 50.233117372000059 ], [ -119.272847647, 50.233097270000066 ], [ -119.27282391699994, 50.233256879000074 ], [ -119.272537904999936, 50.233239402000066 ], [ -119.272520808999943, 50.233354386000023 ], [ -119.272233912000019, 50.233336854000079 ], [ -119.272222798999962, 50.233411593000078 ], [ -119.271786612999932, 50.233384936000022 ], [ -119.271721499999956, 50.23382280300013 ], [ -119.271350339999955, 50.233800119000072 ], [ -119.271313995999918, 50.234044512000082 ], [ -119.270606460999915, 50.234001267000046 ], [ -119.270232986999972, 50.236512230000123 ], [ -119.270057721999962, 50.236501517000157 ], [ -119.27003077399999, 50.236682677000019 ], [ -119.270677439999957, 50.23672220300007 ], [ -119.270623743999963, 50.23708321000003 ], [ -119.270725061999954, 50.237089403000127 ], [ -119.270545324999944, 50.238297791000065 ], [ -119.269545530999935, 50.23829613400008 ], [ -119.26954035299994, 50.238282978000036 ], [ -119.268227235999973, 50.238258247 ], [ -119.267134016999989, 50.23822534100001 ], [ -119.266548484999987, 50.238199922000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "68582584", "BldgCostT": "47298334", "sL_LossRatio": "1", "sL_AssetLoss": "4840.5", "sL_BldgLoss": "4840.5", "sL_StrLoss": "4840.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C65C6B52BED15DC099909C6DEA1A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.271140331999945, 50.214581067000054 ], [ -119.271202917999915, 50.214160029000084 ], [ -119.270580242999969, 50.214121952000035 ], [ -119.270599382999961, 50.21399320000009 ], [ -119.270521520999949, 50.213988439000133 ], [ -119.27060918799999, 50.21386346000002 ], [ -119.270761075999985, 50.213523350000067 ], [ -119.270850199999956, 50.213202378000069 ], [ -119.270936829999982, 50.212890348000094 ], [ -119.270982970999938, 50.212598836000041 ], [ -119.270918341999987, 50.212238246000041 ], [ -119.270778031999953, 50.211827907000114 ], [ -119.270775516999919, 50.211681122000073 ], [ -119.270774412, 50.211615509000076 ], [ -119.27086066699998, 50.211508821000031 ], [ -119.270904113999961, 50.211488111000037 ], [ -119.271045478999952, 50.211420799000059 ], [ -119.271918243999977, 50.211211693000074 ], [ -119.272261309999934, 50.211129494000076 ], [ -119.272482856999957, 50.211106908000062 ], [ -119.272612126999945, 50.211110748000053 ], [ -119.27277015699994, 50.211115448000029 ], [ -119.273167503999971, 50.211074739000054 ], [ -119.273812790999955, 50.210938139000064 ], [ -119.27595833099997, 50.21024402700008 ], [ -119.27627218899994, 50.210092587000112 ], [ -119.276543537999913, 50.209924066000099 ], [ -119.277000617999974, 50.209566476000099 ], [ -119.277397642999958, 50.209069043000113 ], [ -119.278081397999983, 50.208212299000103 ], [ -119.277341184999941, 50.208200282000085 ], [ -119.277460489999967, 50.207887680000077 ], [ -119.278207816999966, 50.20805299400007 ], [ -119.278042426999946, 50.207934555000058 ], [ -119.277994298999943, 50.207832292000077 ], [ -119.277981987999937, 50.207659086000028 ], [ -119.278103994999981, 50.207491399000084 ], [ -119.278781224999975, 50.206753087000081 ], [ -119.278817584999942, 50.206713477000051 ], [ -119.278969329999939, 50.206422337000099 ], [ -119.279165205, 50.206457144000105 ], [ -119.2842445859999, 50.207359719000117 ], [ -119.284336351000022, 50.207843608000125 ], [ -119.284408812999942, 50.208225703000039 ], [ -119.284345895999977, 50.208379487000023 ], [ -119.283423117999959, 50.208677197000043 ], [ -119.282769307999942, 50.208779699000033 ], [ -119.281880191999946, 50.209265401000089 ], [ -119.280921617000018, 50.210011593000033 ], [ -119.279452512999939, 50.210688087000079 ], [ -119.277971178999962, 50.211643797000079 ], [ -119.27755981099989, 50.211831794000027 ], [ -119.277222341999945, 50.211885958000089 ], [ -119.277045179999931, 50.211914392000054 ], [ -119.27612058699998, 50.212229090000086 ], [ -119.275224696999942, 50.212850108000048 ], [ -119.2737581899999, 50.213543705000042 ], [ -119.27213681299996, 50.214641994000075 ], [ -119.271140331999945, 50.214581067000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "273579250", "BldgCostT": "184990000", "sL_LossRatio": "0.999297110500259", "sL_AssetLoss": "22336.370092", "sL_BldgLoss": "22320.670092", "sL_StrLoss": "22315.000092", "sL_NStrLoss": "5.67", "sL_ContLoss": "15.7", "geom_point": "0101000020E6100000917D35AC8ED15DC06182433DB71C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.266592792999958, 50.231637096000071 ], [ -119.263913279999912, 50.230614030000041 ], [ -119.263677796999929, 50.230524098000053 ], [ -119.263554695999986, 50.23047709100004 ], [ -119.262687111999981, 50.230108906000126 ], [ -119.262112386999931, 50.22980740800007 ], [ -119.261786018999899, 50.229587792000046 ], [ -119.261279606999906, 50.229186702000014 ], [ -119.260452904999951, 50.228724397000079 ], [ -119.260596708999913, 50.228590488000073 ], [ -119.260589499999966, 50.228260506000034 ], [ -119.26033830099999, 50.227933687000139 ], [ -119.259933715999964, 50.227719290000103 ], [ -119.258779693999955, 50.227336190000052 ], [ -119.258568629999971, 50.227194448000041 ], [ -119.258485314999916, 50.227138497000034 ], [ -119.258480109999979, 50.226795095000071 ], [ -119.258755820999937, 50.226182705000063 ], [ -119.258839236999918, 50.225878129000108 ], [ -119.258845152, 50.225725002000104 ], [ -119.258805098999972, 50.225542233000105 ], [ -119.258775550999957, 50.225407452000098 ], [ -119.258715391999928, 50.225327215000078 ], [ -119.258564118999985, 50.225125430000062 ], [ -119.258080760999974, 50.224589324000078 ], [ -119.259272333999931, 50.223934597000095 ], [ -119.259458864999971, 50.223797950000105 ], [ -119.259572712999955, 50.223647825000093 ], [ -119.259582747999957, 50.223363114000065 ], [ -119.259610433999967, 50.222449302000022 ], [ -119.259614514999953, 50.220833390000038 ], [ -119.259613685999952, 50.220016301000072 ], [ -119.259613507999987, 50.218949987000094 ], [ -119.259675208999951, 50.21881920800007 ], [ -119.259871914999948, 50.218727403000038 ], [ -119.260075778999976, 50.218681194000112 ], [ -119.260349805999979, 50.218666407000143 ], [ -119.26120020499998, 50.218816901000054 ], [ -119.261556486999922, 50.218788113000102 ], [ -119.261866513999962, 50.21867260700008 ], [ -119.262312295999948, 50.218413684000097 ], [ -119.263137885, 50.217934193000083 ], [ -119.263381903999971, 50.217818235000081 ], [ -119.26362577699993, 50.217702261000092 ], [ -119.264766359999939, 50.217350435000114 ], [ -119.265651728999941, 50.216973064000058 ], [ -119.266812812999959, 50.21659718300004 ], [ -119.267029650999945, 50.216464179000084 ], [ -119.267184452999956, 50.216267115000093 ], [ -119.267225877999962, 50.216214347000104 ], [ -119.26744439099997, 50.216088628000087 ], [ -119.26745990699996, 50.216079707000119 ], [ -119.268012918999943, 50.216034080000014 ], [ -119.26822053799998, 50.215991710000026 ], [ -119.268429612, 50.215901570000035 ], [ -119.268646478999955, 50.215768551000032 ], [ -119.268844697999924, 50.215600110000018 ], [ -119.26932077099994, 50.215096557000059 ], [ -119.269374025000033, 50.215055861000103 ], [ -119.269824188999962, 50.214712015000046 ], [ -119.270230758999944, 50.21430613100005 ], [ -119.27021950399994, 50.214381833000061 ], [ -119.270956167999984, 50.214367429000056 ], [ -119.270972452999956, 50.214710345000057 ], [ -119.271947855999912, 50.214769985000075 ], [ -119.271815414999978, 50.214859693000086 ], [ -119.270840914999937, 50.215876497000131 ], [ -119.270062287999934, 50.216872092000109 ], [ -119.269576489999935, 50.217267990000039 ], [ -119.26895871699999, 50.218152400000065 ], [ -119.268767209999936, 50.218273509000021 ], [ -119.267990305999945, 50.218451492000042 ], [ -119.266838709999931, 50.218374590000039 ], [ -119.26605341199992, 50.218398787000062 ], [ -119.263744491, 50.219937008000073 ], [ -119.263693986999968, 50.220078401000094 ], [ -119.263433698999961, 50.220807087000026 ], [ -119.263245289999972, 50.222133095000054 ], [ -119.262862575999989, 50.222634393000142 ], [ -119.262660782999916, 50.223124298000094 ], [ -119.262995380999911, 50.223656991000084 ], [ -119.26351830599998, 50.224034408000065 ], [ -119.263787082999954, 50.224416096000049 ], [ -119.263524420999943, 50.224501506000095 ], [ -119.263304784999946, 50.224856191000093 ], [ -119.263312702999912, 50.225064085000042 ], [ -119.263929989999937, 50.225959894000077 ], [ -119.263976389999982, 50.226405301000099 ], [ -119.263956463999989, 50.226404082000037 ], [ -119.263967973999982, 50.226647089000032 ], [ -119.264001510999904, 50.226646435000099 ], [ -119.264010413999969, 50.226731894000032 ], [ -119.26489880299998, 50.228315601000048 ], [ -119.264846101999964, 50.228990601000135 ], [ -119.264526398999962, 50.229366609000074 ], [ -119.264484916999947, 50.229664296000117 ], [ -119.264745287999958, 50.230127199 ], [ -119.265380718999921, 50.230510303000074 ], [ -119.26786, 50.231658194000076 ], [ -119.268721187999986, 50.231470198000096 ], [ -119.270177701999941, 50.23114549600006 ], [ -119.272335011999957, 50.230212585000046 ], [ -119.27388849099998, 50.229839507000072 ], [ -119.275828092999987, 50.229927808000141 ], [ -119.276651396999938, 50.229839504000026 ], [ -119.277388203999976, 50.229447793000055 ], [ -119.279280089999986, 50.22882541000012 ], [ -119.279488404999924, 50.228470808000033 ], [ -119.279851316999967, 50.228463704000092 ], [ -119.280010458999968, 50.228428548000117 ], [ -119.280031989999912, 50.22842379100009 ], [ -119.28007611, 50.228171694000096 ], [ -119.280007417999954, 50.227291607000083 ], [ -119.280330604999932, 50.22674608600007 ], [ -119.280301596999919, 50.226439900000074 ], [ -119.280510912999944, 50.226112292000025 ], [ -119.280905798999967, 50.225861693000112 ], [ -119.280982807, 50.225428692000058 ], [ -119.28118979199995, 50.225037011000047 ], [ -119.281213382999923, 50.224938799000022 ], [ -119.281066008999957, 50.22481490600012 ], [ -119.281266293999948, 50.224587005000103 ], [ -119.281319808999925, 50.224252300000032 ], [ -119.281601100999922, 50.223994506000082 ], [ -119.282027199999931, 50.223815094 ], [ -119.282341009999968, 50.223323700000108 ], [ -119.282470179999933, 50.221899496000056 ], [ -119.28229560199992, 50.221786986000083 ], [ -119.28234329199995, 50.22161469200006 ], [ -119.282101583999989, 50.221250106000099 ], [ -119.282107784999951, 50.221062107000058 ], [ -119.282751861999927, 50.220912102000064 ], [ -119.28295189399995, 50.220865513000035 ], [ -119.28304760199994, 50.220495211000042 ], [ -119.283257799999916, 50.220201891000023 ], [ -119.283944713999986, 50.219640698000013 ], [ -119.284450910999965, 50.219639304000125 ], [ -119.284822613999964, 50.219496903000085 ], [ -119.285429481999955, 50.219491527000066 ], [ -119.285483042999942, 50.219526278000032 ], [ -119.285861944, 50.219772105000061 ], [ -119.285805985999957, 50.220149318000018 ], [ -119.285857282, 50.220152448000057 ], [ -119.285838059999932, 50.220282020000084 ], [ -119.286590975999957, 50.220267199 ], [ -119.286797912999972, 50.220263124000013 ], [ -119.286836597999923, 50.221071913000124 ], [ -119.287676995999973, 50.221055362000079 ], [ -119.287664094999968, 50.220785766000077 ], [ -119.288084290999933, 50.220777489000113 ], [ -119.288071386999903, 50.220507892000057 ], [ -119.288210910999922, 50.2205051440001 ], [ -119.288024542999949, 50.221124807000123 ], [ -119.288462714999923, 50.221669116000086 ], [ -119.288877061, 50.222549358000066 ], [ -119.288884702999908, 50.223096041000069 ], [ -119.28902959199999, 50.223239406000076 ], [ -119.289387174999916, 50.223239537000055 ], [ -119.289560133999956, 50.223241067000103 ], [ -119.289589289999938, 50.223414241000079 ], [ -119.28960744199999, 50.223521984000058 ], [ -119.289620006999925, 50.223596810000053 ], [ -119.289691369999943, 50.224321637000074 ], [ -119.289643366999925, 50.224740319000027 ], [ -119.289501496999932, 50.225250806000041 ], [ -119.289453942999941, 50.225361636000045 ], [ -119.289269179999948, 50.225791875000048 ], [ -119.288727989, 50.226887425000051 ], [ -119.288315683999897, 50.227642160000116 ], [ -119.288296976999973, 50.227676396000113 ], [ -119.287802264999968, 50.228419968000047 ], [ -119.287706713999938, 50.228544392000067 ], [ -119.286262925999978, 50.230424261000088 ], [ -119.285256003999947, 50.231832555000111 ], [ -119.285162410999988, 50.231693868000043 ], [ -119.285016706999897, 50.23147799 ], [ -119.285034312999983, 50.231415593000079 ], [ -119.285279696000018, 50.23080579600007 ], [ -119.28528109799997, 50.230616305000126 ], [ -119.285181978999958, 50.230448604000053 ], [ -119.286358274999927, 50.228898907000072 ], [ -119.285149890999946, 50.228596797000144 ], [ -119.28462240199994, 50.228478792000047 ], [ -119.284116690999952, 50.228518383000079 ], [ -119.283765693999939, 50.228634203000112 ], [ -119.283452897999894, 50.228863407000041 ], [ -119.281689952999926, 50.231219136000043 ], [ -119.281142888, 50.231950102000027 ], [ -119.281199187999931, 50.232016713000064 ], [ -119.280193363999942, 50.2323697060001 ], [ -119.280216635999977, 50.232042497000073 ], [ -119.280293264999898, 50.231934322000065 ], [ -119.280730521999885, 50.231550219000106 ], [ -119.280871836999935, 50.231328639000033 ], [ -119.281239275999909, 50.230181888000125 ], [ -119.281220979999944, 50.229878302000031 ], [ -119.281181748999984, 50.229383870000063 ], [ -119.281121318999936, 50.228943805000064 ], [ -119.281109922, 50.228860769000107 ], [ -119.281104600999953, 50.228822092000051 ], [ -119.280928117, 50.228721097000054 ], [ -119.280573116999946, 50.22910119200003 ], [ -119.280363201999975, 50.229234597000072 ], [ -119.280109905999922, 50.229309397000044 ], [ -119.279869887999922, 50.229329156000034 ], [ -119.27932870399998, 50.22937367100004 ], [ -119.278829852999962, 50.229490276000078 ], [ -119.278774309999903, 50.229503278000024 ], [ -119.278041681999952, 50.229723962000087 ], [ -119.276836184999979, 50.230084607000066 ], [ -119.276526936999929, 50.230138178000068 ], [ -119.27643150499992, 50.230154707000082 ], [ -119.275857698, 50.230178290000026 ], [ -119.274408896999944, 50.230138604000047 ], [ -119.273801790999983, 50.230177305000034 ], [ -119.272892796999983, 50.230371901000055 ], [ -119.272469113999961, 50.230521995000061 ], [ -119.270619296999911, 50.231379497 ], [ -119.270160622999981, 50.231509502000065 ], [ -119.26964638599999, 50.231597128000026 ], [ -119.26893192699994, 50.231718900000018 ], [ -119.268843693999926, 50.231733922000046 ], [ -119.268776395999978, 50.231745413000091 ], [ -119.268369412999931, 50.23187848700011 ], [ -119.26808398499999, 50.23205509900005 ], [ -119.266592792999958, 50.231637096000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "247.3", "sL_BldgLoss": "247.3", "sL_StrLoss": "247.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E36AFC99ED35DC000C974E8741C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.307642369999897, 50.223506184000023 ], [ -119.307441863999912, 50.223340905000079 ], [ -119.303483565999954, 50.223278445000055 ], [ -119.30383486, 50.220904085000036 ], [ -119.309416114999948, 50.221243498000057 ], [ -119.309102147999951, 50.223367342000046 ], [ -119.308917818999959, 50.224614153000076 ], [ -119.308856907999925, 50.224590230000047 ], [ -119.307642369999897, 50.223506184000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "107.4", "sL_BldgLoss": "107.4", "sL_StrLoss": "107.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F9B87D92CD55DC0314F19C5131B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.330970919999942, 50.212462449000071 ], [ -119.33135565299996, 50.20909651000008 ], [ -119.332158188999969, 50.209145144000125 ], [ -119.332114773999962, 50.209439929000055 ], [ -119.332446600999958, 50.209460036000095 ], [ -119.332306921999972, 50.210408468 ], [ -119.331919442999961, 50.213039279000036 ], [ -119.330782098999947, 50.212970357000081 ], [ -119.326339027999936, 50.21270099900007 ], [ -119.326372050999922, 50.212476988000049 ], [ -119.330970919999942, 50.212462449000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "1", "sL_AssetLoss": "311.2", "sL_BldgLoss": "311.2", "sL_StrLoss": "311.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065DC165D45D85DC016F71F998E174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.376706675999955, 50.18208155300006 ], [ -119.382283703999974, 50.182417300000083 ], [ -119.381760786999948, 50.185996906000128 ], [ -119.376183322999964, 50.185661134000028 ], [ -119.376706675999955, 50.18208155300006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.4", "sL_BldgLoss": "43.4", "sL_StrLoss": "43.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF4D9C9AD3D35DC0CD30BD16571A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.308678782999934, 50.204360215000101 ], [ -119.310545545999943, 50.204473732000118 ], [ -119.310344508999933, 50.20583444300005 ], [ -119.31001672, 50.208052893000108 ], [ -119.308998814999953, 50.207990999000089 ], [ -119.30909013099992, 50.207836704000087 ], [ -119.309923402999971, 50.207215046000066 ], [ -119.309874916999917, 50.206440071000024 ], [ -119.309794265000036, 50.206299321000095 ], [ -119.3087990329999, 50.20456258500014 ], [ -119.308678782999934, 50.204360215000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020987", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "173", "sL_BldgLoss": "173", "sL_StrLoss": "173", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FFF06FA79FD35DC076B3B3A6011B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.303363352999909, 50.212029464000103 ], [ -119.303668761999944, 50.209964739000043 ], [ -119.306026961999947, 50.210177038000126 ], [ -119.307303053999973, 50.210291875000053 ], [ -119.30748643, 50.210308404000088 ], [ -119.308777521999943, 50.208963699000094 ], [ -119.308767815999971, 50.208746921000071 ], [ -119.309472473999961, 50.208789770000067 ], [ -119.308943513999949, 50.212368905000105 ], [ -119.305636721000027, 50.21216778800008 ], [ -119.303363352999909, 50.212029464000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7612500", "BldgCostT": "5250000", "sL_LossRatio": "1", "sL_AssetLoss": "650.7", "sL_BldgLoss": "650.7", "sL_StrLoss": "650.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9AB15757FD75DC01BA910F26E184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.363937159000031, 50.193522879000056 ], [ -119.364105131999921, 50.192376399000075 ], [ -119.363687027999973, 50.192351175000084 ], [ -119.36371959899995, 50.192128872000112 ], [ -119.363383033999952, 50.192108566000059 ], [ -119.363827180999976, 50.189077124000043 ], [ -119.363907469999958, 50.188529077000048 ], [ -119.36541245699999, 50.188619870000103 ], [ -119.365488524999989, 50.188100512000119 ], [ -119.367572090999914, 50.188226177000082 ], [ -119.371066208999963, 50.188436823000124 ], [ -119.37054233899994, 50.192016348000031 ], [ -119.369791896999971, 50.191971117000044 ], [ -119.369515496999952, 50.193859266000082 ], [ -119.363937159000031, 50.193522879000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020990", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "1", "sL_AssetLoss": "514", "sL_BldgLoss": "514", "sL_StrLoss": "514", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D199230DFD45DC0E18CEDF7BC1B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.328725924999929, 50.215056619000059 ], [ -119.329176594999964, 50.21508393800012 ], [ -119.328649114999905, 50.218663139000093 ], [ -119.32651050599999, 50.218533485000073 ], [ -119.323068031999966, 50.218324696000096 ], [ -119.323595948999937, 50.214745520000072 ], [ -119.328725924999929, 50.215056619000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17837916", "BldgCostT": "11541666", "sL_LossRatio": "0.99413289873324", "sL_AssetLoss": "1349.9", "sL_BldgLoss": "1341.98", "sL_StrLoss": "1339.1", "sL_NStrLoss": "2.88", "sL_ContLoss": "7.92", "geom_point": "0101000020E610000041AC69A446D45DC047131880001D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.309124359999913, 50.231253619000043 ], [ -119.309884241999939, 50.230595317000052 ], [ -119.310414574999982, 50.230084368000085 ], [ -119.311090290999957, 50.228926242000078 ], [ -119.311120397999986, 50.228823644000045 ], [ -119.311771633999953, 50.228863211000025 ], [ -119.312004851, 50.227285187000092 ], [ -119.313343890999946, 50.227366533000122 ], [ -119.313859461000021, 50.223876921000034 ], [ -119.314584593999953, 50.223920966000044 ], [ -119.31465170099996, 50.2234666680001 ], [ -119.314735177, 50.222901538000045 ], [ -119.317754121999926, 50.223084857000103 ], [ -119.317859972999912, 50.222367909000091 ], [ -119.323102558999949, 50.222686052000086 ], [ -119.323441512999963, 50.222706613000071 ], [ -119.322913493, 50.226285751000084 ], [ -119.320431959999908, 50.226135200000051 ], [ -119.320155267999965, 50.228009810000088 ], [ -119.317553326999985, 50.227851893000043 ], [ -119.317083492000023, 50.231033450000012 ], [ -119.316835629999986, 50.231033427000064 ], [ -119.316452652999942, 50.23103340500009 ], [ -119.316405474999925, 50.231033392000072 ], [ -119.314661604999969, 50.231033227000069 ], [ -119.31425703099994, 50.231033183000086 ], [ -119.312996902999927, 50.230956649000071 ], [ -119.312985615999963, 50.231033035000053 ], [ -119.31058358599995, 50.23103270500004 ], [ -119.310215100999983, 50.23095338300007 ], [ -119.310016029999957, 50.231051857000075 ], [ -119.308987883999961, 50.231560440000116 ], [ -119.309124359999913, 50.231253619000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30258916", "BldgCostT": "20371666", "sL_LossRatio": "1", "sL_AssetLoss": "2052.9", "sL_BldgLoss": "2052.9", "sL_StrLoss": "2052.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000572CB8FE61D75DC0A692AE57601D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.350684223999963, 50.236609749000081 ], [ -119.354084695999958, 50.23574371400013 ], [ -119.354351920999946, 50.235675659000087 ], [ -119.356012040999985, 50.235254970000028 ], [ -119.356809288999969, 50.235052118000098 ], [ -119.357473769999956, 50.234871035000012 ], [ -119.35781164899997, 50.234744380000052 ], [ -119.358121631999964, 50.234628165000039 ], [ -119.358759822999986, 50.234388917000075 ], [ -119.361156452999936, 50.23374625800006 ], [ -119.361072776999933, 50.23363466700004 ], [ -119.360969376999918, 50.233581461000071 ], [ -119.360803353000023, 50.233580460000084 ], [ -119.360103775999974, 50.233693557000045 ], [ -119.359830474999953, 50.233704179000014 ], [ -119.359619251999931, 50.233685178000023 ], [ -119.359432574, 50.233633282000028 ], [ -119.359030892999925, 50.233443776000136 ], [ -119.35890618, 50.233429981000043 ], [ -119.35879617199997, 50.233459491000076 ], [ -119.358541384, 50.233612890000082 ], [ -119.358388982999926, 50.233624480000053 ], [ -119.358248089999933, 50.23357716400006 ], [ -119.358160207999944, 50.233504189000037 ], [ -119.358103978999964, 50.233378879000043 ], [ -119.358138371999942, 50.233250085000073 ], [ -119.358237092999957, 50.233105271000106 ], [ -119.358502571999978, 50.232850496000054 ], [ -119.358566160999914, 50.232724290000093 ], [ -119.358579584999944, 50.23258519000013 ], [ -119.358512773999962, 50.232320298000026 ], [ -119.358413864999974, 50.232178888000064 ], [ -119.358255551999946, 50.23208719600008 ], [ -119.357873872999917, 50.232068702000099 ], [ -119.357673766999937, 50.23202140299999 ], [ -119.356715887999968, 50.231515903000059 ], [ -119.356478397999979, 50.231339908000045 ], [ -119.356318977999976, 50.231149820000041 ], [ -119.356276678, 50.231016329000092 ], [ -119.354113812999969, 50.231016675000085 ], [ -119.353452964000013, 50.231017877000063 ], [ -119.35317016899999, 50.231018394000017 ], [ -119.353073736999988, 50.231018222000095 ], [ -119.352806647999955, 50.23101778500007 ], [ -119.348921731999937, 50.231011072000051 ], [ -119.348311211999913, 50.231010011000137 ], [ -119.348293010999939, 50.230639600000089 ], [ -119.348713274999952, 50.230631101000057 ], [ -119.348700025999975, 50.230361517000055 ], [ -119.349960809999985, 50.230336015000049 ], [ -119.349974066999948, 50.230605598000039 ], [ -119.35061435599998, 50.230592641000086 ], [ -119.35087218699999, 50.228837881000089 ], [ -119.352837652999938, 50.228956573000033 ], [ -119.35283627199999, 50.228928538000048 ], [ -119.354097014999951, 50.228902991000041 ], [ -119.354103419999902, 50.22903299200005 ], [ -119.356454768999967, 50.229174914000126 ], [ -119.356263439999935, 50.230478173000016 ], [ -119.358799554999962, 50.230426692000044 ], [ -119.358839960999916, 50.231245288000096 ], [ -119.359091994999972, 50.229527872000098 ], [ -119.36450246699999, 50.229854106000047 ], [ -119.364502643999955, 50.229852896000111 ], [ -119.364707091999932, 50.229865218000029 ], [ -119.364724439999975, 50.229746901000055 ], [ -119.364952530999986, 50.229760647000056 ], [ -119.364979938999937, 50.229573705000128 ], [ -119.36536518199999, 50.229596923000031 ], [ -119.365373144, 50.229542619000078 ], [ -119.36428625399999, 50.229477113000058 ], [ -119.364811049999943, 50.225897793000058 ], [ -119.366612970999924, 50.226006388000066 ], [ -119.366638173999945, 50.225834435000088 ], [ -119.367082327999967, 50.225861197000043 ], [ -119.367133571999929, 50.225511545000039 ], [ -119.369631469999931, 50.225662024000052 ], [ -119.36989790599999, 50.223843259000077 ], [ -119.375534860999892, 50.223804606000101 ], [ -119.375477694999958, 50.224195182000066 ], [ -119.375766398999929, 50.224212556000118 ], [ -119.375813586999982, 50.223890139000133 ], [ -119.376074312999918, 50.223905829000117 ], [ -119.376089686999975, 50.223800786000012 ], [ -119.381369765999949, 50.223764292000034 ], [ -119.382104720999948, 50.223831556000114 ], [ -119.382017997999952, 50.223967494000135 ], [ -119.381323989999899, 50.224673904000028 ], [ -119.380518293999927, 50.225131106000049 ], [ -119.379665011999975, 50.225435784000098 ], [ -119.378342495999959, 50.226200595000122 ], [ -119.376885620999971, 50.226805907000085 ], [ -119.375809013999984, 50.227422600000146 ], [ -119.374641297999972, 50.22791389000011 ], [ -119.374281672999942, 50.227983692000088 ], [ -119.372678303999919, 50.229041884000068 ], [ -119.370827787999943, 50.229889312000097 ], [ -119.370003608999951, 50.230518783000022 ], [ -119.368846517999941, 50.231225196000025 ], [ -119.367215220999938, 50.231960097000062 ], [ -119.365802407999951, 50.232880207000072 ], [ -119.364877698999948, 50.233177805000054 ], [ -119.3643325, 50.233502494000071 ], [ -119.363847483999947, 50.233926991000061 ], [ -119.363334789999925, 50.234063693000103 ], [ -119.362915492999946, 50.234332890000083 ], [ -119.361801789999944, 50.2347872060001 ], [ -119.361012600999942, 50.234731586000102 ], [ -119.359761622999926, 50.235520707000092 ], [ -119.35954078599994, 50.235589006000069 ], [ -119.358421282999927, 50.235620301000075 ], [ -119.35753850299993, 50.23594358499999 ], [ -119.356925901999944, 50.236019091000074 ], [ -119.356100901999966, 50.236342399000129 ], [ -119.355231595999967, 50.236351008000035 ], [ -119.354160888999957, 50.236247009000053 ], [ -119.353672977999977, 50.236336697000077 ], [ -119.353578280999955, 50.236368716000101 ], [ -119.352056336999965, 50.236883285000069 ], [ -119.350956009, 50.237255293000032 ], [ -119.349940932999942, 50.2377583950001 ], [ -119.349573703999951, 50.237940404000078 ], [ -119.348537923999956, 50.238359037000059 ], [ -119.344511699999913, 50.238295105000056 ], [ -119.345497303999977, 50.238028780000036 ], [ -119.34584633299994, 50.237932871000055 ], [ -119.348039199999931, 50.237330184000058 ], [ -119.349278707999972, 50.236993376000079 ], [ -119.350684223999963, 50.236609749000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15446084", "BldgCostT": "9178334", "sL_LossRatio": "1", "sL_AssetLoss": "740.6", "sL_BldgLoss": "740.6", "sL_StrLoss": "740.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000639B3326EDD65DC06640C58AFD184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.353859169999964, 50.196917793000033 ], [ -119.353865900999949, 50.196871928000057 ], [ -119.35364906699999, 50.196858827000014 ], [ -119.353668122999949, 50.195238764000059 ], [ -119.35368504099992, 50.194546157000069 ], [ -119.353695731999935, 50.194197941000077 ], [ -119.353705646999913, 50.193887576000051 ], [ -119.35372590599998, 50.193327948000082 ], [ -119.35372094399996, 50.19263300500014 ], [ -119.353838506999921, 50.192640108000063 ], [ -119.353748471999936, 50.193253675000086 ], [ -119.355377099999913, 50.193352067000035 ], [ -119.35537037099999, 50.19339793299999 ], [ -119.357436080999918, 50.19352269700007 ], [ -119.357471681999954, 50.193279941000085 ], [ -119.35841207799993, 50.193336725000087 ], [ -119.363049942999908, 50.193616656000124 ], [ -119.362525381999944, 50.19719611700004 ], [ -119.359473445999953, 50.197011933000098 ], [ -119.359437851999957, 50.197254688000065 ], [ -119.359292646999918, 50.197245923000068 ], [ -119.353859169999964, 50.196917793000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "1", "sL_AssetLoss": "351.6", "sL_BldgLoss": "351.6", "sL_StrLoss": "351.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000891EDF7B8BD45DC05F7888F32E1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.319556010999975, 50.236614087000085 ], [ -119.319542922999929, 50.236344498000136 ], [ -119.319122599, 50.236352891000102 ], [ -119.319083344999981, 50.235544124000022 ], [ -119.320344292999948, 50.235518940000127 ], [ -119.32033120199999, 50.235249350000039 ], [ -119.323273389999969, 50.235190537000108 ], [ -119.323310473000021, 50.235953230000035 ], [ -119.323097334999972, 50.235900890000011 ], [ -119.322928589999904, 50.235895372000059 ], [ -119.322503968000021, 50.235823199000045 ], [ -119.322098585999981, 50.235858556000046 ], [ -119.321876345999939, 50.235908132000063 ], [ -119.321562863999972, 50.236103592000084 ], [ -119.321401445999967, 50.23625094300008 ], [ -119.321364191999962, 50.236308112000074 ], [ -119.320803889999965, 50.236319310000042 ], [ -119.320816985999969, 50.236588898 ], [ -119.319556010999975, 50.236614087000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187395667", "BldgCostT": "125796667", "sL_LossRatio": "1", "sL_AssetLoss": "12590.8", "sL_BldgLoss": "12590.8", "sL_StrLoss": "12590.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C459647DFBD55DC082E51945201E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.328072603999914, 50.24034529900004 ], [ -119.328686489999896, 50.240116995000108 ], [ -119.328139117999953, 50.239493504000095 ], [ -119.328204187999972, 50.239354434000099 ], [ -119.328209017999882, 50.239344199000072 ], [ -119.32880438299999, 50.239059794000134 ], [ -119.329566818, 50.238808096000099 ], [ -119.329636368999928, 50.238785895000021 ], [ -119.329698212999944, 50.238765546000117 ], [ -119.329868080999944, 50.238281631000085 ], [ -119.330053889999974, 50.237752145000073 ], [ -119.330285349999926, 50.237334184000055 ], [ -119.330113193999964, 50.236978251000117 ], [ -119.329862764999987, 50.236740718000092 ], [ -119.329519593999947, 50.236612902000061 ], [ -119.329094456999925, 50.236531867000089 ], [ -119.328368280999911, 50.23660988400006 ], [ -119.327934005999907, 50.236627862000027 ], [ -119.32720170599994, 50.236580053000047 ], [ -119.326813920999939, 50.236482045000081 ], [ -119.326814201000019, 50.236480150000055 ], [ -119.327513356999958, 50.236522520000072 ], [ -119.32753557499997, 50.236371865000145 ], [ -119.328139118999943, 50.236408439000094 ], [ -119.328173057999948, 50.23617828000004 ], [ -119.328447061999981, 50.236194883000088 ], [ -119.328460449999966, 50.236104086000147 ], [ -119.328892447999962, 50.236130261000056 ], [ -119.328897131999938, 50.236098496000054 ], [ -119.329369114999977, 50.236127092000132 ], [ -119.329401119999943, 50.235910007000022 ], [ -119.329831097999886, 50.235936056000106 ], [ -119.329850606999955, 50.235803717000081 ], [ -119.330161533999899, 50.235822553000034 ], [ -119.330179697999981, 50.235699325000049 ], [ -119.33045372299992, 50.235715923000029 ], [ -119.330467089999942, 50.235625231000071 ], [ -119.330809830999954, 50.235645992000052 ], [ -119.3308250799999, 50.235542539000079 ], [ -119.331186702999943, 50.235564442000069 ], [ -119.331201367999924, 50.235464947000054 ], [ -119.331512382999932, 50.235483784000067 ], [ -119.33153056, 50.235360455000063 ], [ -119.331817071999964, 50.235377807000084 ], [ -119.33183105099998, 50.235282961000067 ], [ -119.332477063999946, 50.235322084000103 ], [ -119.332520534999958, 50.235027076000065 ], [ -119.33273703399999, 50.235040186000056 ], [ -119.332758031999944, 50.234897681000092 ], [ -119.336105009, 50.235100306000035 ], [ -119.336113276999981, 50.235044158000051 ], [ -119.336431514999958, 50.235063419000078 ], [ -119.336442567999953, 50.234988366000046 ], [ -119.336772837999973, 50.235008354000051 ], [ -119.336787456999986, 50.234909074000043 ], [ -119.337454833999971, 50.234949460000074 ], [ -119.337479934999962, 50.234778989000077 ], [ -119.337759970999954, 50.234795935000108 ], [ -119.337775127, 50.234692996000042 ], [ -119.338061187999969, 50.234710305000128 ], [ -119.338078118999931, 50.234595303000084 ], [ -119.338382692, 50.234613731000124 ], [ -119.338402010999957, 50.23448251000007 ], [ -119.338707763999977, 50.234501008000073 ], [ -119.338718199999946, 50.234430117000052 ], [ -119.339003085999963, 50.234447353000064 ], [ -119.339028894999956, 50.234272023000095 ], [ -119.339633103999972, 50.234308576000053 ], [ -119.339661077999907, 50.234118538000082 ], [ -119.341429715999936, 50.234225513000091 ], [ -119.341515923000017, 50.233639679000063 ], [ -119.3417959699999, 50.233656614000019 ], [ -119.34181111599996, 50.233553685000075 ], [ -119.342090709999951, 50.233570593000046 ], [ -119.342108808999981, 50.23344759200004 ], [ -119.342413395999955, 50.233466009999987 ], [ -119.34243270099995, 50.233334798000023 ], [ -119.342694235999929, 50.233350613000084 ], [ -119.34270699299995, 50.233263905000086 ], [ -119.34328470399997, 50.233298835000063 ], [ -119.343323278999947, 50.233036619000117 ], [ -119.343525689999964, 50.233048857000014 ], [ -119.343557880999981, 50.232830024000052 ], [ -119.343641785999949, 50.232835096000088 ], [ -119.343669686999974, 50.232645426000033 ], [ -119.343841080999951, 50.232655788000102 ], [ -119.343870287999962, 50.232457229000048 ], [ -119.344137500999963, 50.232473384000031 ], [ -119.344154982999939, 50.232354536000031 ], [ -119.344415716999961, 50.23237029800007 ], [ -119.344434375999967, 50.232243442000048 ], [ -119.344752177999965, 50.232262653000099 ], [ -119.344766165999886, 50.23216754900011 ], [ -119.345083954999922, 50.232186759000051 ], [ -119.345097954999915, 50.232091557000011 ], [ -119.345388796999899, 50.23210913700008 ], [ -119.345416352, 50.231921764000035 ], [ -119.345740152999909, 50.231941335000037 ], [ -119.345755941999982, 50.231833971000057 ], [ -119.346066818999972, 50.231852760000102 ], [ -119.346084932999958, 50.231729578000049 ], [ -119.34637703099996, 50.231747232000018 ], [ -119.346395726, 50.231620085000088 ], [ -119.346786565999977, 50.231643705000067 ], [ -119.346816017999942, 50.231443394000102 ], [ -119.350024798000021, 50.23163725700006 ], [ -119.350013836999935, 50.231414349000055 ], [ -119.348332750999973, 50.231448351000083 ], [ -119.348311211999913, 50.231010011000137 ], [ -119.348921731999937, 50.231011072000051 ], [ -119.352806647999955, 50.23101778500007 ], [ -119.353073736999988, 50.231018222000095 ], [ -119.35317016899999, 50.231018394000017 ], [ -119.353452964000013, 50.231017877000063 ], [ -119.354113812999969, 50.231016675000085 ], [ -119.356276678, 50.231016329000092 ], [ -119.356318977999976, 50.231149820000041 ], [ -119.356478397999979, 50.231339908000045 ], [ -119.356715887999968, 50.231515903000059 ], [ -119.357673766999937, 50.23202140299999 ], [ -119.357873872999917, 50.232068702000099 ], [ -119.358255551999946, 50.23208719600008 ], [ -119.358413864999974, 50.232178888000064 ], [ -119.358512773999962, 50.232320298000026 ], [ -119.358579584999944, 50.23258519000013 ], [ -119.358566160999914, 50.232724290000093 ], [ -119.358502571999978, 50.232850496000054 ], [ -119.358237092999957, 50.233105271000106 ], [ -119.358138371999942, 50.233250085000073 ], [ -119.358103978999964, 50.233378879000043 ], [ -119.358160207999944, 50.233504189000037 ], [ -119.358248089999933, 50.23357716400006 ], [ -119.358388982999926, 50.233624480000053 ], [ -119.358541384, 50.233612890000082 ], [ -119.35879617199997, 50.233459491000076 ], [ -119.35890618, 50.233429981000043 ], [ -119.359030892999925, 50.233443776000136 ], [ -119.359432574, 50.233633282000028 ], [ -119.359619251999931, 50.233685178000023 ], [ -119.359830474999953, 50.233704179000014 ], [ -119.360103775999974, 50.233693557000045 ], [ -119.360803353000023, 50.233580460000084 ], [ -119.360969376999918, 50.233581461000071 ], [ -119.361072776999933, 50.23363466700004 ], [ -119.361156452999936, 50.23374625800006 ], [ -119.358759822999986, 50.234388917000075 ], [ -119.358121631999964, 50.234628165000039 ], [ -119.35781164899997, 50.234744380000052 ], [ -119.357473769999956, 50.234871035000012 ], [ -119.356809288999969, 50.235052118000098 ], [ -119.356012040999985, 50.235254970000028 ], [ -119.354351920999946, 50.235675659000087 ], [ -119.354084695999958, 50.23574371400013 ], [ -119.350684223999963, 50.236609749000081 ], [ -119.349278707999972, 50.236993376000079 ], [ -119.348039199999931, 50.237330184000058 ], [ -119.348065688999938, 50.236939102000093 ], [ -119.347916320999957, 50.236298108000064 ], [ -119.34778795699998, 50.235983428000075 ], [ -119.347478702, 50.235471846000117 ], [ -119.34747170199995, 50.235327887000068 ], [ -119.347596394999954, 50.235227102000103 ], [ -119.349367507999943, 50.234674172000084 ], [ -119.349653619999955, 50.234547916000039 ], [ -119.34975739599993, 50.23435919800005 ], [ -119.349685592999947, 50.234129181000135 ], [ -119.349330740999932, 50.233774622000084 ], [ -119.346916197, 50.234508934000104 ], [ -119.346685241999964, 50.234643021000124 ], [ -119.346399033999916, 50.235028359000104 ], [ -119.346175167999917, 50.235190865000028 ], [ -119.345346149999898, 50.235465751000092 ], [ -119.342920585999948, 50.236158681000063 ], [ -119.340125083999936, 50.236991703000093 ], [ -119.338110499999956, 50.237455727000039 ], [ -119.335567852999944, 50.238196489000124 ], [ -119.335674032999989, 50.23873241200009 ], [ -119.335695473999976, 50.238840668000059 ], [ -119.335702930999943, 50.239057762000108 ], [ -119.335718932999939, 50.239618439000019 ], [ -119.33569294599998, 50.23998609500007 ], [ -119.335729025999953, 50.240190495000057 ], [ -119.334500887999965, 50.240668653000156 ], [ -119.334194322999963, 50.240474101000174 ], [ -119.331257887, 50.241113307000091 ], [ -119.330457603999932, 50.241221003000064 ], [ -119.329444210999952, 50.241292303000122 ], [ -119.329188110999937, 50.241281291000043 ], [ -119.328764298999957, 50.241213202000026 ], [ -119.328073106999966, 50.240933883000075 ], [ -119.327809701999939, 50.240886301000053 ], [ -119.327964504999926, 50.240457903000149 ], [ -119.328072603999914, 50.24034529900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "134772168", "BldgCostT": "87316668", "sL_LossRatio": "0.997374144635461", "sL_AssetLoss": "9558.79", "sL_BldgLoss": "9533.69", "sL_StrLoss": "9524.6", "sL_NStrLoss": "9.09", "sL_ContLoss": "25.1", "geom_point": "0101000020E6100000BD5E3F698DD55DC06FFD36BC071F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.32782149799999, 50.244244445000078 ], [ -119.328526269999884, 50.24386221300005 ], [ -119.329489401999979, 50.243339848000076 ], [ -119.330387138999967, 50.242852900000116 ], [ -119.333868573999922, 50.2409644170001 ], [ -119.334500887999965, 50.240668653000156 ], [ -119.335729025999953, 50.240190495000057 ], [ -119.33569294599998, 50.23998609500007 ], [ -119.335718932999939, 50.239618439000019 ], [ -119.335702930999943, 50.239057762000108 ], [ -119.335695473999976, 50.238840668000059 ], [ -119.335674032999989, 50.23873241200009 ], [ -119.335567852999944, 50.238196489000124 ], [ -119.338110499999956, 50.237455727000039 ], [ -119.340125083999936, 50.236991703000093 ], [ -119.342920585999948, 50.236158681000063 ], [ -119.345346149999898, 50.235465751000092 ], [ -119.346175167999917, 50.235190865000028 ], [ -119.346399033999916, 50.235028359000104 ], [ -119.346685241999964, 50.234643021000124 ], [ -119.346916197, 50.234508934000104 ], [ -119.349330740999932, 50.233774622000084 ], [ -119.349685592999947, 50.234129181000135 ], [ -119.34975739599993, 50.23435919800005 ], [ -119.349653619999955, 50.234547916000039 ], [ -119.349367507999943, 50.234674172000084 ], [ -119.347596394999954, 50.235227102000103 ], [ -119.34747170199995, 50.235327887000068 ], [ -119.347478702, 50.235471846000117 ], [ -119.34778795699998, 50.235983428000075 ], [ -119.347916320999957, 50.236298108000064 ], [ -119.348065688999938, 50.236939102000093 ], [ -119.348039199999931, 50.237330184000058 ], [ -119.34584633299994, 50.237932871000055 ], [ -119.345497303999977, 50.238028780000036 ], [ -119.344511699999913, 50.238295105000056 ], [ -119.344620248999931, 50.238363457000119 ], [ -119.344670376999943, 50.238395037000032 ], [ -119.34472872, 50.238431888000036 ], [ -119.344945709999976, 50.238568623000035 ], [ -119.34505422, 50.23863704400005 ], [ -119.345162662999911, 50.238705428000124 ], [ -119.345271192999988, 50.238773812000041 ], [ -119.345379688999984, 50.238842208000079 ], [ -119.345488166999942, 50.238910582000102 ], [ -119.345596676999961, 50.238979001000104 ], [ -119.345813637, 50.239115745000085 ], [ -119.345922149999964, 50.239184164000058 ], [ -119.346030629999973, 50.239252536 ], [ -119.346130712999951, 50.239315639000054 ], [ -119.344907194999934, 50.239738756000072 ], [ -119.344864896999979, 50.239753387000057 ], [ -119.344573380999918, 50.240092399000083 ], [ -119.34343382499992, 50.240573803000061 ], [ -119.343256288999939, 50.240676307000072 ], [ -119.343154700999932, 50.240885701000167 ], [ -119.343147734999931, 50.241180670000077 ], [ -119.343140689, 50.241479494000025 ], [ -119.343519214999958, 50.242344 ], [ -119.343579639999945, 50.2424301940001 ], [ -119.344303097999912, 50.243461994000015 ], [ -119.345055495999986, 50.244184088000054 ], [ -119.345476112000014, 50.244463295000038 ], [ -119.345642786, 50.244720998000112 ], [ -119.34564600399996, 50.244785803000127 ], [ -119.344808715999989, 50.245186491000069 ], [ -119.344026203999931, 50.245640567000066 ], [ -119.340901773999917, 50.245661650000038 ], [ -119.331509443999934, 50.245724418000073 ], [ -119.330662178999916, 50.24573004500013 ], [ -119.33083920599999, 50.248449740000062 ], [ -119.325862945999972, 50.249133407000095 ], [ -119.325849202999905, 50.249135308000071 ], [ -119.32532116, 50.249137605000037 ], [ -119.322709977999963, 50.249148997000063 ], [ -119.322717224999934, 50.247026894000065 ], [ -119.323787823999979, 50.246446483000078 ], [ -119.324798288999929, 50.245899274000109 ], [ -119.325115543999942, 50.245726851000121 ], [ -119.32518431799997, 50.245689487000078 ], [ -119.325420025999961, 50.245561383000116 ], [ -119.32654627600003, 50.24493541600004 ], [ -119.327110066, 50.244629942000117 ], [ -119.327526312999964, 50.244404394000135 ], [ -119.32782149799999, 50.244244445000078 ] ], [ [ -119.338818819999958, 50.243351382000078 ], [ -119.338812617999963, 50.243224689000108 ], [ -119.338807517999967, 50.243224380000044 ], [ -119.338811332999967, 50.243198471000042 ], [ -119.338810715999941, 50.243185848000095 ], [ -119.338592913999932, 50.243172673000061 ], [ -119.338637736999928, 50.242868276000081 ], [ -119.338487231999935, 50.242859172000131 ], [ -119.338534327000019, 50.242539335000103 ], [ -119.33582554499999, 50.242375443000057 ], [ -119.335857730999976, 50.243033664000116 ], [ -119.334596599999927, 50.243059018000025 ], [ -119.334583423999959, 50.242789432000059 ], [ -119.33416304799999, 50.242797880000126 ], [ -119.334136702999942, 50.242258708000051 ], [ -119.333788618999932, 50.242265702000083 ], [ -119.333589206999989, 50.243618963000074 ], [ -119.333782185999937, 50.243615086000077 ], [ -119.333795356999957, 50.243884673000089 ], [ -119.335476895999989, 50.24385087400001 ], [ -119.335503256999928, 50.244390046000063 ], [ -119.33718481299999, 50.244356222000086 ], [ -119.337158431999981, 50.243817052000111 ], [ -119.337999197, 50.243800131000086 ], [ -119.337986002999983, 50.243530545000063 ], [ -119.338794835999963, 50.243514263000073 ], [ -119.338818819999958, 50.243351382000078 ] ], [ [ -119.33370684499998, 50.242072956000101 ], [ -119.333703162999939, 50.241997569000034 ], [ -119.333282792999952, 50.24200601400004 ], [ -119.33327890899993, 50.241926471000063 ], [ -119.332542022999917, 50.241881858000063 ], [ -119.332536477999923, 50.241919491000047 ], [ -119.332530478999942, 50.241919128000056 ], [ -119.332518411999928, 50.242001006000095 ], [ -119.33370684499998, 50.242072956000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "236213085", "BldgCostT": "158278335", "sL_LossRatio": "0.999995126699311", "sL_AssetLoss": "24665.0079", "sL_BldgLoss": "24664.8877", "sL_StrLoss": "24663.9277", "sL_NStrLoss": "0.96", "sL_ContLoss": "0.1202", "geom_point": "0101000020E61000000FAA2E5C6DD45DC0614888D1771F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.325413180999988, 50.241159100000061 ], [ -119.326025411999979, 50.240904602000057 ], [ -119.326239801000028, 50.240854416000111 ], [ -119.32645418299991, 50.240843011000045 ], [ -119.327621697999959, 50.240880282000084 ], [ -119.327809701999939, 50.240886301000053 ], [ -119.328073106999966, 50.240933883000075 ], [ -119.328764298999957, 50.241213202000026 ], [ -119.329188110999937, 50.241281291000043 ], [ -119.329444210999952, 50.241292303000122 ], [ -119.330457603999932, 50.241221003000064 ], [ -119.331257887, 50.241113307000091 ], [ -119.334194322999963, 50.240474101000174 ], [ -119.334500887999965, 50.240668653000156 ], [ -119.333868573999922, 50.2409644170001 ], [ -119.330387138999967, 50.242852900000116 ], [ -119.329489401999979, 50.243339848000076 ], [ -119.328526269999884, 50.24386221300005 ], [ -119.32782149799999, 50.244244445000078 ], [ -119.327526312999964, 50.244404394000135 ], [ -119.327110066, 50.244629942000117 ], [ -119.32654627600003, 50.24493541600004 ], [ -119.325420025999961, 50.245561383000116 ], [ -119.32518431799997, 50.245689487000078 ], [ -119.325115543999942, 50.245726851000121 ], [ -119.324798288999929, 50.245899274000109 ], [ -119.323787823999979, 50.246446483000078 ], [ -119.322717224999934, 50.247026894000065 ], [ -119.322709977999963, 50.249148997000063 ], [ -119.319565231999931, 50.248960706000062 ], [ -119.319191146000023, 50.248938330000094 ], [ -119.31842797599991, 50.249351530000105 ], [ -119.317756389999957, 50.249715205000044 ], [ -119.317055711999927, 50.25009070000003 ], [ -119.316524751999978, 50.250380787000076 ], [ -119.31531417799998, 50.251042114000043 ], [ -119.314891825999979, 50.251272873000069 ], [ -119.314836688999947, 50.251302961000071 ], [ -119.314346912999966, 50.251566634000028 ], [ -119.314030229999915, 50.251326251000101 ], [ -119.313367061999912, 50.250823033000096 ], [ -119.311560271999937, 50.249451979000042 ], [ -119.311375632999926, 50.249327562000055 ], [ -119.311356995999986, 50.249314996000052 ], [ -119.310603316999959, 50.248807054000068 ], [ -119.309723198999933, 50.24832839700013 ], [ -119.308833895999939, 50.247864498000091 ], [ -119.307016593999947, 50.246932491000031 ], [ -119.307030831999953, 50.24691615800004 ], [ -119.307252698999946, 50.246661408000136 ], [ -119.307576574999956, 50.246289499000049 ], [ -119.30785820100003, 50.246080912000068 ], [ -119.3081041, 50.245928579000093 ], [ -119.308521887999959, 50.245669793000033 ], [ -119.30888038, 50.245483990000082 ], [ -119.309267425, 50.24537603400006 ], [ -119.309297700999977, 50.245367607000119 ], [ -119.310134888999954, 50.245230705000047 ], [ -119.310766647999941, 50.245150323000082 ], [ -119.313429586, 50.244811494000011 ], [ -119.313583820999938, 50.244794306000088 ], [ -119.31394325899997, 50.244754280000059 ], [ -119.314406230999978, 50.244702718000042 ], [ -119.315496273999884, 50.244581267000058 ], [ -119.315890001999946, 50.244537416000057 ], [ -119.316647990999982, 50.244371843000124 ], [ -119.31714178699994, 50.244264 ], [ -119.31748884299999, 50.244171507000011 ], [ -119.31784270299994, 50.244077200000092 ], [ -119.319075006999981, 50.24366810500009 ], [ -119.319803201999889, 50.243343988000035 ], [ -119.320594113999945, 50.242947809000086 ], [ -119.321249295999962, 50.242698597000064 ], [ -119.321718286999982, 50.242574498000039 ], [ -119.321883492999973, 50.242543538000049 ], [ -119.322442598999913, 50.242438813000092 ], [ -119.323350013999956, 50.24215978900007 ], [ -119.323995821999986, 50.241887495000057 ], [ -119.325413180999988, 50.241159100000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59020999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167595833", "BldgCostT": "115583333", "sL_LossRatio": "1", "sL_AssetLoss": "11664", "sL_BldgLoss": "11664", "sL_StrLoss": "11664", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E959615B3D55DC0195BDFF29E1F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.33083920599999, 50.248449740000062 ], [ -119.330662178999916, 50.24573004500013 ], [ -119.331509443999934, 50.245724418000073 ], [ -119.340901773999917, 50.245661650000038 ], [ -119.344026203999931, 50.245640567000066 ], [ -119.344808715999989, 50.245186491000069 ], [ -119.34564600399996, 50.244785803000127 ], [ -119.345675904999894, 50.245386096000047 ], [ -119.345813116999977, 50.245626794000067 ], [ -119.347227859999961, 50.247184374000092 ], [ -119.347577697999938, 50.24756950900008 ], [ -119.348450398999958, 50.248198997000046 ], [ -119.348541776999951, 50.248291133000166 ], [ -119.347922014999938, 50.248232722000125 ], [ -119.34779453899999, 50.248333329000019 ], [ -119.347701183999945, 50.248338537000095 ], [ -119.347304552999944, 50.248360612000084 ], [ -119.346943605999968, 50.248353237000096 ], [ -119.345372172999987, 50.2483619140001 ], [ -119.343506568999913, 50.248372166000088 ], [ -119.342459704999953, 50.248378091000077 ], [ -119.340743764999928, 50.248387754000099 ], [ -119.340141041999914, 50.248391151000071 ], [ -119.339340584999945, 50.248395647000081 ], [ -119.338825712999977, 50.248400604000054 ], [ -119.337818307999939, 50.248402006000113 ], [ -119.334839640999959, 50.248405585000036 ], [ -119.334277388999951, 50.248406250000109 ], [ -119.332098144999946, 50.248408781000116 ], [ -119.330975043999942, 50.248431085000036 ], [ -119.33083920599999, 50.248449740000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127657584", "BldgCostT": "83153334", "sL_LossRatio": "0.99775968343692", "sL_AssetLoss": "8976.41", "sL_BldgLoss": "8956.3", "sL_StrLoss": "8949", "sL_NStrLoss": "7.3", "sL_ContLoss": "20.11", "geom_point": "0101000020E61000007C4C8B97FAD55DC0A13FF2D612204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.34574681399998, 50.253539393000061 ], [ -119.346782605999948, 50.252867088000144 ], [ -119.34627831499995, 50.252656123000065 ], [ -119.345712936999988, 50.252486546000107 ], [ -119.345202110999949, 50.25240601300009 ], [ -119.34471328699999, 50.252358416000064 ], [ -119.344701993999948, 50.25145860800005 ], [ -119.344613316000022, 50.251295282000122 ], [ -119.34442577799993, 50.251181100000053 ], [ -119.344064688999964, 50.251136694000081 ], [ -119.342263915, 50.251216495000087 ], [ -119.341420888999934, 50.251067197000033 ], [ -119.341436193999954, 50.25090558900007 ], [ -119.341357705999968, 50.250673384000031 ], [ -119.34092760099999, 50.250006398000032 ], [ -119.340767595999949, 50.249849608000012 ], [ -119.340354784999931, 50.249543910000043 ], [ -119.340153599999937, 50.249455898000107 ], [ -119.339868197999948, 50.249576712000056 ], [ -119.339732098999917, 50.249764414000069 ], [ -119.339555800999975, 50.250358608000084 ], [ -119.339588077999906, 50.250828186000028 ], [ -119.33986510199999, 50.251396491000023 ], [ -119.339945287999925, 50.251654991000059 ], [ -119.339276088999952, 50.251798698000108 ], [ -119.339071818999983, 50.251798998000034 ], [ -119.338812300999976, 50.251753510000071 ], [ -119.338293582999896, 50.251611998000058 ], [ -119.337929897999928, 50.251451010000039 ], [ -119.337876787999903, 50.251304197000188 ], [ -119.337925196999919, 50.251071490000093 ], [ -119.338044101999941, 50.250933399000068 ], [ -119.338086708999938, 50.250721103999986 ], [ -119.338015298999949, 50.250536196000041 ], [ -119.337809, 50.250406413000114 ], [ -119.33755468899993, 50.250363904000039 ], [ -119.337339983999925, 50.250387092000096 ], [ -119.336625996999928, 50.250595707000123 ], [ -119.336299785999969, 50.250658096000045 ], [ -119.33586949499994, 50.250681794000073 ], [ -119.335421488999913, 50.250672705000056 ], [ -119.335114924999985, 50.250640601000036 ], [ -119.334902901999968, 50.250559192000011 ], [ -119.334857996999958, 50.250520946000094 ], [ -119.334799010999987, 50.250470692000114 ], [ -119.334613168999951, 50.250125500000102 ], [ -119.33379853400001, 50.250262139000071 ], [ -119.33346169899994, 50.24989058500006 ], [ -119.332886415999909, 50.249264803000067 ], [ -119.332596081999981, 50.248948985000048 ], [ -119.332098144999946, 50.248408781000116 ], [ -119.334277388999951, 50.248406250000109 ], [ -119.334839640999959, 50.248405585000036 ], [ -119.337818307999939, 50.248402006000113 ], [ -119.338825712999977, 50.248400604000054 ], [ -119.339340584999945, 50.248395647000081 ], [ -119.340141041999914, 50.248391151000071 ], [ -119.340743764999928, 50.248387754000099 ], [ -119.342459704999953, 50.248378091000077 ], [ -119.343506568999913, 50.248372166000088 ], [ -119.345372172999987, 50.2483619140001 ], [ -119.346943605999968, 50.248353237000096 ], [ -119.348150145999952, 50.249325235000121 ], [ -119.348695542999948, 50.249687683000026 ], [ -119.349208941999947, 50.2499705560001 ], [ -119.349644686999937, 50.250101567000129 ], [ -119.350078606999944, 50.25016840600005 ], [ -119.350683507999932, 50.250146126000082 ], [ -119.350729494999911, 50.251143158000026 ], [ -119.350767073999961, 50.251957621000038 ], [ -119.351634089999976, 50.252778762000041 ], [ -119.351225159999927, 50.25351765300011 ], [ -119.351046700999945, 50.253521264000021 ], [ -119.351023998999935, 50.253675690000129 ], [ -119.351134018999957, 50.25368233100005 ], [ -119.35109969799997, 50.253744340000047 ], [ -119.349638305999946, 50.253757234000034 ], [ -119.34935100599999, 50.253791137000071 ], [ -119.3470074499999, 50.254067784 ], [ -119.34541335199998, 50.254321745000077 ], [ -119.344741871999958, 50.254384998000113 ], [ -119.344112821999886, 50.254380404000131 ], [ -119.344141434999983, 50.254138388000072 ], [ -119.344242492999953, 50.25404520000005 ], [ -119.344408204999965, 50.254000992 ], [ -119.344992892000022, 50.253923499000116 ], [ -119.34532339899998, 50.253812613000051 ], [ -119.34574681399998, 50.253539393000061 ] ], [ [ -119.347198125999952, 50.251170436000059 ], [ -119.347190384999976, 50.251012926000037 ], [ -119.346542272999912, 50.250973777000119 ], [ -119.346557571999966, 50.250869775000105 ], [ -119.346016063999969, 50.250837063000112 ], [ -119.346169483999958, 50.249794149000124 ], [ -119.344978253999926, 50.249722178000106 ], [ -119.344967347999912, 50.249796298000057 ], [ -119.344991766999911, 50.249797774000079 ], [ -119.344862270999926, 50.250677912000107 ], [ -119.34591030499999, 50.250656750000047 ], [ -119.345936789999925, 50.251195917000125 ], [ -119.347198125999952, 50.251170436000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "123803833", "BldgCostT": "81223333", "sL_LossRatio": "0.997989431313694", "sL_AssetLoss": "9847.96", "sL_BldgLoss": "9828.16", "sL_StrLoss": "9821", "sL_NStrLoss": "7.16", "sL_ContLoss": "19.8", "geom_point": "0101000020E6100000267387A85DD55DC001FF633A57204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.331066599999957, 50.257755694000146 ], [ -119.331185101999921, 50.257592197000044 ], [ -119.331661578999942, 50.257723994000074 ], [ -119.332195111999937, 50.257785200000072 ], [ -119.333306307999976, 50.257797389000082 ], [ -119.333665972999938, 50.257756798000045 ], [ -119.333937805999938, 50.257681203000104 ], [ -119.33408217899995, 50.257617834000051 ], [ -119.333458211999968, 50.256167659000084 ], [ -119.333576388999958, 50.255739394000038 ], [ -119.33331559, 50.255268779000112 ], [ -119.333075559999912, 50.255048784000039 ], [ -119.333043684999964, 50.254867432000019 ], [ -119.334331476999978, 50.254945367000062 ], [ -119.334334246999958, 50.254926568 ], [ -119.335296059999948, 50.254984765000174 ], [ -119.335316491999933, 50.254846120000067 ], [ -119.333569554999926, 50.254740411000085 ], [ -119.33363633099998, 50.254287383000076 ], [ -119.333476482999956, 50.2542777090001 ], [ -119.333558053999951, 50.253724304000087 ], [ -119.332875501999922, 50.253682993000041 ], [ -119.332944149999918, 50.25321730400006 ], [ -119.332853132999944, 50.253211795000048 ], [ -119.332864210999986, 50.253136642000044 ], [ -119.331654172999947, 50.253063395000034 ], [ -119.331632329999948, 50.253211547000028 ], [ -119.33138528099991, 50.252911784000091 ], [ -119.330412015999954, 50.252093505000076 ], [ -119.330356055, 50.252127313000123 ], [ -119.3301062, 50.252278329000106 ], [ -119.329851912999956, 50.252474240000055 ], [ -119.329716203, 50.252697147000099 ], [ -119.329645510999924, 50.252918519000055 ], [ -119.329327397999975, 50.253155619000047 ], [ -119.327646880999964, 50.253545813000102 ], [ -119.327251291999957, 50.253572424000019 ], [ -119.326834197999915, 50.253515515000046 ], [ -119.326021516999944, 50.253361614000085 ], [ -119.324733687999981, 50.253257411000014 ], [ -119.324117408999925, 50.253071088000091 ], [ -119.32391558799992, 50.253054296000059 ], [ -119.323407529999912, 50.253171192000089 ], [ -119.323266592, 50.253203611000103 ], [ -119.323079773999936, 50.25320949000006 ], [ -119.323067661999957, 50.25320465700009 ], [ -119.322872180999966, 50.253126494000099 ], [ -119.322726185999954, 50.252932593000068 ], [ -119.322681514999914, 50.252681607000028 ], [ -119.322684222999939, 50.252343780000061 ], [ -119.322709977999963, 50.249148997000063 ], [ -119.32532116, 50.249137605000037 ], [ -119.325849202999905, 50.249135308000071 ], [ -119.325862945999972, 50.249133407000095 ], [ -119.33083920599999, 50.248449740000062 ], [ -119.330975043999942, 50.248431085000036 ], [ -119.332098144999946, 50.248408781000116 ], [ -119.332596081999981, 50.248948985000048 ], [ -119.332886415999909, 50.249264803000067 ], [ -119.33346169899994, 50.24989058500006 ], [ -119.33379853400001, 50.250262139000071 ], [ -119.334613168999951, 50.250125500000102 ], [ -119.334799010999987, 50.250470692000114 ], [ -119.334857996999958, 50.250520946000094 ], [ -119.334902901999968, 50.250559192000011 ], [ -119.335114924999985, 50.250640601000036 ], [ -119.335421488999913, 50.250672705000056 ], [ -119.33586949499994, 50.250681794000073 ], [ -119.336299785999969, 50.250658096000045 ], [ -119.336625996999928, 50.250595707000123 ], [ -119.337339983999925, 50.250387092000096 ], [ -119.33755468899993, 50.250363904000039 ], [ -119.337809, 50.250406413000114 ], [ -119.338015298999949, 50.250536196000041 ], [ -119.338086708999938, 50.250721103999986 ], [ -119.338044101999941, 50.250933399000068 ], [ -119.337925196999919, 50.251071490000093 ], [ -119.337876787999903, 50.251304197000188 ], [ -119.337929897999928, 50.251451010000039 ], [ -119.338293582999896, 50.251611998000058 ], [ -119.338812300999976, 50.251753510000071 ], [ -119.339071818999983, 50.251798998000034 ], [ -119.339276088999952, 50.251798698000108 ], [ -119.339945287999925, 50.251654991000059 ], [ -119.33986510199999, 50.251396491000023 ], [ -119.339588077999906, 50.250828186000028 ], [ -119.339555800999975, 50.250358608000084 ], [ -119.339732098999917, 50.249764414000069 ], [ -119.339868197999948, 50.249576712000056 ], [ -119.340153599999937, 50.249455898000107 ], [ -119.340354784999931, 50.249543910000043 ], [ -119.340767595999949, 50.249849608000012 ], [ -119.34092760099999, 50.250006398000032 ], [ -119.341357705999968, 50.250673384000031 ], [ -119.341436193999954, 50.25090558900007 ], [ -119.341420888999934, 50.251067197000033 ], [ -119.342263915, 50.251216495000087 ], [ -119.344064688999964, 50.251136694000081 ], [ -119.34442577799993, 50.251181100000053 ], [ -119.344613316000022, 50.251295282000122 ], [ -119.344701993999948, 50.25145860800005 ], [ -119.34471328699999, 50.252358416000064 ], [ -119.345202110999949, 50.25240601300009 ], [ -119.345712936999988, 50.252486546000107 ], [ -119.34627831499995, 50.252656123000065 ], [ -119.346782605999948, 50.252867088000144 ], [ -119.34574681399998, 50.253539393000061 ], [ -119.34532339899998, 50.253812613000051 ], [ -119.344992892000022, 50.253923499000116 ], [ -119.344408204999965, 50.254000992 ], [ -119.344242492999953, 50.25404520000005 ], [ -119.344141434999983, 50.254138388000072 ], [ -119.344112821999886, 50.254380404000131 ], [ -119.342221135000031, 50.254435799000092 ], [ -119.34109749699995, 50.254699217000095 ], [ -119.340604316999929, 50.254785812000094 ], [ -119.340530183999988, 50.254808460000078 ], [ -119.340416987999944, 50.254843108000081 ], [ -119.340232698999955, 50.254965600000084 ], [ -119.339794605999913, 50.255577297000052 ], [ -119.339706770999982, 50.255604561000105 ], [ -119.337028029999914, 50.256435567000018 ], [ -119.335812904999926, 50.256812489000033 ], [ -119.336007297999956, 50.257070691000152 ], [ -119.33616880199996, 50.257380184000027 ], [ -119.336187397999979, 50.257655692000071 ], [ -119.336136594999928, 50.257818692000072 ], [ -119.336078394999944, 50.257898288000078 ], [ -119.335879491999918, 50.258052394000075 ], [ -119.334971190999937, 50.258641997000076 ], [ -119.334683307999953, 50.258778883000048 ], [ -119.334391499999981, 50.258856912000098 ], [ -119.333042209999959, 50.258977495000153 ], [ -119.332260406999978, 50.259205499000089 ], [ -119.331356000999989, 50.259557885000035 ], [ -119.331074880999964, 50.259247495000096 ], [ -119.330950485999921, 50.259039590000107 ], [ -119.330954707999979, 50.258457602000099 ], [ -119.331066599999957, 50.257755694000146 ] ], [ [ -119.328645084999962, 50.251095322000054 ], [ -119.328648418999961, 50.251072715000099 ], [ -119.326878166999933, 50.250965477000101 ], [ -119.326874831999945, 50.25098808500006 ], [ -119.328645084999962, 50.251095322000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5594584", "BldgCostT": "3858334", "sL_LossRatio": "1", "sL_AssetLoss": "414", "sL_BldgLoss": "414", "sL_StrLoss": "414", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002AE109BD7EDC5DC0E0A50ED16C144940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.44369715, 50.157686227000028 ], [ -119.447204253999928, 50.157895364000083 ], [ -119.447112502999943, 50.158972205000047 ], [ -119.44725040699997, 50.159446491000075 ], [ -119.447053119999936, 50.160241201000126 ], [ -119.447137401999925, 50.160537497000107 ], [ -119.446570582999954, 50.160961893000064 ], [ -119.446468099999947, 50.161144213000107 ], [ -119.446462703999927, 50.161462035000049 ], [ -119.445920196999964, 50.161429690000055 ], [ -119.445121287999939, 50.161382054000093 ], [ -119.443179353999966, 50.161266238000046 ], [ -119.44369715, 50.157686227000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8772500", "BldgCostT": "6050000", "sL_LossRatio": "1", "sL_AssetLoss": "676", "sL_BldgLoss": "676", "sL_StrLoss": "676", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009AB03F81DEDB5DC0E0F5368983174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433445220999943, 50.181776228000039 ], [ -119.43850367499999, 50.182078145000069 ], [ -119.437985189999921, 50.185658018000076 ], [ -119.43396291, 50.185417966000045 ], [ -119.432407353999935, 50.185325089000067 ], [ -119.43292627299995, 50.181745241000058 ], [ -119.433445220999943, 50.181776228000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15696250", "BldgCostT": "10825000", "sL_LossRatio": "1", "sL_AssetLoss": "1254", "sL_BldgLoss": "1254", "sL_StrLoss": "1254", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000035DA05DE24DC5DC041779329B0164940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439498237999942, 50.179718874000081 ], [ -119.439638744, 50.178748444000043 ], [ -119.435230613999963, 50.178485382000119 ], [ -119.435288855999957, 50.178083380000039 ], [ -119.435280542999976, 50.17808288400002 ], [ -119.43579915399999, 50.174502988000015 ], [ -119.440490567000012, 50.174782953000097 ], [ -119.441096760999983, 50.174819113000105 ], [ -119.441375685999944, 50.174835750000092 ], [ -119.441323217999965, 50.175198266000045 ], [ -119.441709460999917, 50.17522130300005 ], [ -119.441725198999961, 50.175222242000096 ], [ -119.44171383299998, 50.175300770000035 ], [ -119.441671012, 50.175596649000035 ], [ -119.441596336999979, 50.176112605000114 ], [ -119.441547375, 50.176450893000052 ], [ -119.441775874999948, 50.176464521000121 ], [ -119.443488384999938, 50.176566642000061 ], [ -119.443180889999965, 50.177126614000059 ], [ -119.443233799999973, 50.177637892000057 ], [ -119.443528191999945, 50.177911408000149 ], [ -119.443670191, 50.177944107000073 ], [ -119.444441391999959, 50.177666390000105 ], [ -119.445052291999957, 50.177563891000048 ], [ -119.445223288999927, 50.177632205000094 ], [ -119.445278378999959, 50.177882902000121 ], [ -119.445259178999947, 50.178324392000079 ], [ -119.44391951599998, 50.179818399000048 ], [ -119.443512002999967, 50.180033503000068 ], [ -119.443200609999963, 50.180004987000132 ], [ -119.443064263999958, 50.179866521000058 ], [ -119.443009886999945, 50.179811297000093 ], [ -119.443062563999916, 50.179710689000082 ], [ -119.443117371999918, 50.179606035000127 ], [ -119.44314984899998, 50.179544041000035 ], [ -119.443162783000034, 50.179519300000024 ], [ -119.443158814999933, 50.179514594000054 ], [ -119.443043777999975, 50.179378295000085 ], [ -119.44255039199993, 50.179317110000085 ], [ -119.442049702999952, 50.179399703000072 ], [ -119.44194903199994, 50.179463090000098 ], [ -119.441208216999954, 50.17992949900011 ], [ -119.441193734999942, 50.179946866000108 ], [ -119.441169416999941, 50.179976031000052 ], [ -119.441119268999984, 50.180036178000059 ], [ -119.43946656899999, 50.179937596000059 ], [ -119.439498237999942, 50.179718874000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "239997978", "BldgCostT": "164884857", "sL_LossRatio": "0.99936359970873", "sL_AssetLoss": "6646.76", "sL_BldgLoss": "6642.53", "sL_StrLoss": "6641", "sL_NStrLoss": "1.53", "sL_ContLoss": "4.23", "geom_point": "0101000020E61000002C068A50D3D85DC0709C90AD191B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.36989790599999, 50.223843259000077 ], [ -119.370101113999951, 50.222456005000048 ], [ -119.373050657999954, 50.222633620000074 ], [ -119.373472317999969, 50.219753476000093 ], [ -119.373996114999954, 50.219785009000091 ], [ -119.374015600999911, 50.219651887000076 ], [ -119.37420301799996, 50.219663170000089 ], [ -119.374252109999986, 50.219327792000101 ], [ -119.375969036999948, 50.219431133000114 ], [ -119.375972329999939, 50.219408631000086 ], [ -119.377853735999977, 50.219521842000056 ], [ -119.378113729999939, 50.217744576000015 ], [ -119.379264928999973, 50.217813832000054 ], [ -119.379279281999985, 50.217715703000088 ], [ -119.379334354999941, 50.217719016000054 ], [ -119.379522041999934, 50.216435705000016 ], [ -119.38013086399998, 50.216472326000087 ], [ -119.380258057999967, 50.215602520000076 ], [ -119.38050892499993, 50.21561760900007 ], [ -119.380552159999965, 50.215321927000041 ], [ -119.380979812999954, 50.21534764700008 ], [ -119.381013850999963, 50.215114837000058 ], [ -119.381531744999947, 50.21514598300007 ], [ -119.381592348999959, 50.214731448000123 ], [ -119.382316150999912, 50.214774973000104 ], [ -119.382428152999978, 50.214008766000113 ], [ -119.382773789999945, 50.214029549000067 ], [ -119.382811249999946, 50.213773274000083 ], [ -119.38320469699994, 50.213796930000072 ], [ -119.383259248999963, 50.213423684000063 ], [ -119.383901180999956, 50.21346227800008 ], [ -119.384059472999951, 50.212379099000039 ], [ -119.386120759999983, 50.212502999000023 ], [ -119.386124479, 50.212477547000113 ], [ -119.386315178999951, 50.212489007000038 ], [ -119.38634067699995, 50.212314451000069 ], [ -119.386844478999976, 50.212344727000065 ], [ -119.386916179999929, 50.211853863000087 ], [ -119.387024443999934, 50.211860369000121 ], [ -119.387056285999947, 50.211642366000035 ], [ -119.387342616999973, 50.21165957200003 ], [ -119.387356476999983, 50.211564673000098 ], [ -119.387371084999984, 50.211565551000028 ], [ -119.387445700999976, 50.211054674000039 ], [ -119.387700945999924, 50.211070011000118 ], [ -119.387665054999943, 50.210351153000104 ], [ -119.386477136999972, 50.21027976700001 ], [ -119.386539849999963, 50.209850439000036 ], [ -119.384995720999896, 50.209757628 ], [ -119.385148977999933, 50.208708641000023 ], [ -119.385077293999942, 50.208704331000064 ], [ -119.385434196999881, 50.206261286000036 ], [ -119.385600211999957, 50.205124816000144 ], [ -119.38787464399995, 50.205261516000036 ], [ -119.388185709999959, 50.203131171000095 ], [ -119.393113143999969, 50.203427163000036 ], [ -119.3935375249999, 50.200518286000047 ], [ -119.394130072999957, 50.200553865000089 ], [ -119.394148404999967, 50.200428200000069 ], [ -119.396131269999927, 50.200547237000073 ], [ -119.399727813999988, 50.200763057000081 ], [ -119.399206061999948, 50.204342659000069 ], [ -119.398613458999989, 50.204307107000034 ], [ -119.398595139999941, 50.204432773000093 ], [ -119.396100213999915, 50.204283059000105 ], [ -119.39605872199995, 50.204567561000083 ], [ -119.396205741999935, 50.204564528000056 ], [ -119.396208526999914, 50.204620092000063 ], [ -119.397782048999943, 50.204714519000049 ], [ -119.397553117999976, 50.206284612000083 ], [ -119.403074587999981, 50.206615776000028 ], [ -119.403071201000017, 50.206639023000101 ], [ -119.402960318999988, 50.207400083000032 ], [ -119.40243350799993, 50.20754349200007 ], [ -119.401142585999963, 50.208083294000041 ], [ -119.399995805999964, 50.208395195000065 ], [ -119.399515593999951, 50.208630210000123 ], [ -119.398056009999891, 50.209693991 ], [ -119.39656778799997, 50.210210996000086 ], [ -119.395323008999981, 50.210515805000107 ], [ -119.394242087999956, 50.211068412000081 ], [ -119.392978500999959, 50.211571207000048 ], [ -119.392544206999943, 50.211885896000119 ], [ -119.391996288999962, 50.212122308000055 ], [ -119.391564314999982, 50.212437097000063 ], [ -119.39146690699999, 50.212541791000092 ], [ -119.391018426999963, 50.213023804000038 ], [ -119.389886803999929, 50.213686092000053 ], [ -119.389417591999987, 50.214117604000137 ], [ -119.3883678239999, 50.214705802 ], [ -119.386890797999968, 50.216265310000033 ], [ -119.384982398999952, 50.217645411000028 ], [ -119.38364428700001, 50.218338997000039 ], [ -119.383158975999891, 50.218753394000075 ], [ -119.382737578999965, 50.219283198000035 ], [ -119.382273218999956, 50.220364204000155 ], [ -119.382078005999972, 50.220691788000124 ], [ -119.381898112999949, 50.221559106000086 ], [ -119.382284589999969, 50.222882211000098 ], [ -119.382303290999943, 50.22352031300008 ], [ -119.382104720999948, 50.223831556000114 ], [ -119.381369765999949, 50.223764292000034 ], [ -119.376089686999975, 50.223800786000012 ], [ -119.37609288299997, 50.223778945000056 ], [ -119.37620283, 50.223785561000071 ], [ -119.37621752799997, 50.223685136000064 ], [ -119.375558153999989, 50.223645458000114 ], [ -119.375534860999892, 50.223804606000101 ], [ -119.36989790599999, 50.223843259000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021006", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5075000", "BldgCostT": "3500000", "sL_LossRatio": "1", "sL_AssetLoss": "504.6", "sL_BldgLoss": "504.6", "sL_StrLoss": "504.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A383DCE2EDDA5DC05F2BE3D7F6134940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.42103365, 50.154029563000059 ], [ -119.422454871999918, 50.154114630000031 ], [ -119.421935442999938, 50.157694557000134 ], [ -119.42075829399991, 50.15762410200005 ], [ -119.420629632999962, 50.158510585000052 ], [ -119.419617661999922, 50.158450005000077 ], [ -119.419331120999956, 50.15463427000001 ], [ -119.419619959, 50.154378733000051 ], [ -119.419621096999919, 50.153944997000082 ], [ -119.42103365, 50.154029563000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18209584", "BldgCostT": "12558334", "sL_LossRatio": "1", "sL_AssetLoss": "1324.4", "sL_BldgLoss": "1324.4", "sL_StrLoss": "1324.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D239F53757DC5DC071F8073EC4154940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.438767818999935, 50.17345447800011 ], [ -119.438630537999941, 50.170758788000121 ], [ -119.43905025, 50.170749971000106 ], [ -119.439036520999949, 50.170480402000052 ], [ -119.440295646, 50.170453942000044 ], [ -119.440281908999978, 50.170184373000033 ], [ -119.44070161499999, 50.170175550000053 ], [ -119.440674138999981, 50.169636413000127 ], [ -119.442772637999923, 50.169592275000092 ], [ -119.442760553999932, 50.169355338000045 ], [ -119.44125554799993, 50.169265569000125 ], [ -119.441321005999981, 50.168813239000045 ], [ -119.44063292599995, 50.168827707000034 ], [ -119.440550506999969, 50.167210294000064 ], [ -119.440970184999941, 50.167201471000048 ], [ -119.440956445999959, 50.166931902000108 ], [ -119.44137612499999, 50.166923077000035 ], [ -119.441362382999912, 50.166653508000081 ], [ -119.441634361999945, 50.166647788000084 ], [ -119.441773586999929, 50.165685604000039 ], [ -119.444504420999948, 50.165848478000051 ], [ -119.444388589999946, 50.16648640600004 ], [ -119.444846275999964, 50.167232693000109 ], [ -119.444686792999974, 50.167406401000058 ], [ -119.4446046, 50.167724005000096 ], [ -119.444700479999952, 50.167937600000101 ], [ -119.445020484999958, 50.168155592000048 ], [ -119.44554140399994, 50.168243902 ], [ -119.445844493999985, 50.168128498000058 ], [ -119.445991493999941, 50.167981812000065 ], [ -119.446218784999985, 50.168048693000067 ], [ -119.446232688999913, 50.167769613000111 ], [ -119.446500505999921, 50.167261108000112 ], [ -119.446779291999945, 50.167245493000067 ], [ -119.446838090999989, 50.167308093000031 ], [ -119.44668780899994, 50.167913393000106 ], [ -119.44655461399999, 50.168041590000051 ], [ -119.446622405999918, 50.168535810000094 ], [ -119.446286614, 50.169360400000159 ], [ -119.446165848999911, 50.169558381000058 ], [ -119.44613200699996, 50.169556363 ], [ -119.44613471599996, 50.169609415000139 ], [ -119.44602229799996, 50.169793709000068 ], [ -119.445724298999906, 50.16979998700004 ], [ -119.445751833000017, 50.170339122000058 ], [ -119.44577482199999, 50.170338638000082 ], [ -119.445776689999903, 50.170378689000081 ], [ -119.446023692999916, 50.170535409000081 ], [ -119.446179067999978, 50.17047771700004 ], [ -119.446235095999953, 50.171574598000056 ], [ -119.446164962999916, 50.171679706000113 ], [ -119.445400950999925, 50.171695802000059 ], [ -119.445483546999967, 50.173313207000128 ], [ -119.445063815999973, 50.173322047000042 ], [ -119.445077579999946, 50.173591616000124 ], [ -119.443818377999975, 50.17361812900004 ], [ -119.443790862999975, 50.173078993000068 ], [ -119.443371133999975, 50.173087827000117 ], [ -119.443357379999938, 50.172818259000074 ], [ -119.442937649999948, 50.172827093000059 ], [ -119.44295140399997, 50.173096660000049 ], [ -119.440852748999973, 50.173140803000109 ], [ -119.440839007999912, 50.172871235000059 ], [ -119.440419279999929, 50.172880059000079 ], [ -119.440433016999975, 50.173149628000019 ], [ -119.440013285999953, 50.173158450000095 ], [ -119.440027022999971, 50.173428019000092 ], [ -119.438767818999935, 50.17345447800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "120730167", "BldgCostT": "83966667", "sL_LossRatio": "1", "sL_AssetLoss": "4370.6", "sL_BldgLoss": "4370.6", "sL_StrLoss": "4370.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5EC9F86F3DA5DC0F6A03DEAF1184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.40619882699994, 50.206048721000059 ], [ -119.406239770999974, 50.20576754600004 ], [ -119.406202646999986, 50.205765322000062 ], [ -119.406232654999911, 50.205559243000017 ], [ -119.406723864999933, 50.202185692000064 ], [ -119.40691425199999, 50.202197101000102 ], [ -119.407162139999954, 50.200494398000053 ], [ -119.410357239999968, 50.200685812000067 ], [ -119.410534951, 50.199464473000042 ], [ -119.410841561, 50.199482836000087 ], [ -119.410888752999981, 50.199158481000083 ], [ -119.41095677299991, 50.199162554000075 ], [ -119.41100716699998, 50.198816183000126 ], [ -119.411292707999948, 50.198833284000045 ], [ -119.41135507599995, 50.19840458900007 ], [ -119.411708949999962, 50.198425781 ], [ -119.411776081999946, 50.197964298000059 ], [ -119.412183379999988, 50.197988688000123 ], [ -119.412226576999942, 50.197691707000097 ], [ -119.412317268999942, 50.197697138000116 ], [ -119.412429110999966, 50.196928210000074 ], [ -119.414143890999981, 50.19703087800012 ], [ -119.414155935999958, 50.196948050000145 ], [ -119.414555547999925, 50.196971972000028 ], [ -119.414696966999941, 50.195999360000037 ], [ -119.415334324999947, 50.196037511000057 ], [ -119.415390055999964, 50.195654175000087 ], [ -119.417011371999962, 50.195751206000082 ], [ -119.417020382, 50.195689213000087 ], [ -119.420287015000028, 50.195884638000067 ], [ -119.420619342999927, 50.19359689000003 ], [ -119.421145066999941, 50.193628332000067 ], [ -119.421192435999927, 50.193302202000083 ], [ -119.421598063999966, 50.193326459000083 ], [ -119.421741065999967, 50.192341812000038 ], [ -119.422822909999965, 50.192406502000068 ], [ -119.423011678999927, 50.191106438000105 ], [ -119.42314273599996, 50.191114275000153 ], [ -119.423190189999943, 50.190787441000069 ], [ -119.425814949999975, 50.190944344000094 ], [ -119.425874611999959, 50.19053325600003 ], [ -119.425334655, 50.190500983000028 ], [ -119.425854190999956, 50.186921192000057 ], [ -119.428947166999976, 50.187106019000048 ], [ -119.428955049999914, 50.187051664000087 ], [ -119.429412797999944, 50.187079010000033 ], [ -119.429452441999956, 50.186805675000123 ], [ -119.431496167999967, 50.186927745000062 ], [ -119.431570971999975, 50.186411822000075 ], [ -119.431733343999923, 50.18642151800006 ], [ -119.431780781999947, 50.186094327000077 ], [ -119.432492033999907, 50.186136799000067 ], [ -119.432511553999959, 50.186002143000096 ], [ -119.43350229, 50.186061297000094 ], [ -119.436981089999918, 50.186268934000026 ], [ -119.436445387999981, 50.18653350700005 ], [ -119.435985596999942, 50.18683979700004 ], [ -119.435792794999955, 50.187202900000031 ], [ -119.435950997999939, 50.187838087000046 ], [ -119.435613414999949, 50.188080198000065 ], [ -119.435490406999989, 50.188666999000063 ], [ -119.434992006999934, 50.188820795000076 ], [ -119.434564616999964, 50.188649894000029 ], [ -119.433889693999944, 50.188637111000034 ], [ -119.433426205999936, 50.189159798000041 ], [ -119.433328085999946, 50.189692400000048 ], [ -119.43357131199997, 50.1900841060001 ], [ -119.433728498, 50.190142511000083 ], [ -119.434355613999969, 50.190085497000076 ], [ -119.434978308, 50.19018950800011 ], [ -119.435555001999944, 50.190509889000069 ], [ -119.435573006999945, 50.19058118600006 ], [ -119.435236292999889, 50.190857404000091 ], [ -119.43487459499994, 50.191720495000062 ], [ -119.434646305999976, 50.191922789000095 ], [ -119.434279803999956, 50.192164894000022 ], [ -119.43407019199995, 50.192169112000023 ], [ -119.433438697999961, 50.191875800000098 ], [ -119.433509284999943, 50.191344495000116 ], [ -119.433269711999912, 50.190764892000061 ], [ -119.432870696999927, 50.19061960600002 ], [ -119.430480385999942, 50.190435896000103 ], [ -119.429512301999964, 50.190447300000073 ], [ -119.428679202999916, 50.190581184000045 ], [ -119.427838992999966, 50.191148 ], [ -119.427407195999947, 50.191723392000064 ], [ -119.426568414999934, 50.192334393000102 ], [ -119.426088783999944, 50.192840002 ], [ -119.425876303999985, 50.193598991000059 ], [ -119.425876379999934, 50.194148795000046 ], [ -119.42557360899994, 50.195117304000078 ], [ -119.424021779999919, 50.195454794000064 ], [ -119.422891117999939, 50.196091396000035 ], [ -119.421225311999962, 50.197240695000055 ], [ -119.41942679499999, 50.197952899000072 ], [ -119.418349188999926, 50.198271911000091 ], [ -119.416995594999932, 50.198948398000077 ], [ -119.415609621999948, 50.19949810100011 ], [ -119.414867489999978, 50.199792902000056 ], [ -119.414284, 50.200183197000079 ], [ -119.41349901, 50.201296894000059 ], [ -119.412522288999952, 50.202225511000044 ], [ -119.411953413999939, 50.202588700000064 ], [ -119.411148616999967, 50.203612694000043 ], [ -119.410440994999973, 50.204302006000027 ], [ -119.408764583000021, 50.204957104000066 ], [ -119.407763795999955, 50.205670708000106 ], [ -119.406946477999895, 50.206093521000085 ], [ -119.40619882699994, 50.206048721000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137344834", "BldgCostT": "94953334", "sL_LossRatio": "1", "sL_AssetLoss": "6740.3", "sL_BldgLoss": "6740.3", "sL_StrLoss": "6740.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B4F679B19D95DC082DD2C352D184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.392807120999962, 50.195459555000049 ], [ -119.392780159999944, 50.194920402000051 ], [ -119.39362003399999, 50.194903091000079 ], [ -119.393606548999955, 50.194633514000031 ], [ -119.394446416999955, 50.194616197000052 ], [ -119.394432926999954, 50.194346621000122 ], [ -119.396112652999989, 50.194311970000086 ], [ -119.396126150999962, 50.194581547000027 ], [ -119.396966016999954, 50.194564212000067 ], [ -119.396939009999954, 50.194025058000079 ], [ -119.393999507999965, 50.194085703000063 ], [ -119.3939590479999, 50.193276972000064 ], [ -119.394378970999924, 50.193268314000107 ], [ -119.394325017999961, 50.1921900070001 ], [ -119.393905104999988, 50.192198665000056 ], [ -119.393932075999942, 50.192737820000055 ], [ -119.39351215899994, 50.192746476000075 ], [ -119.393525640999925, 50.193016052000125 ], [ -119.393105721999945, 50.193024708000067 ], [ -119.393119202999969, 50.193294285000043 ], [ -119.39269928099999, 50.193302939000027 ], [ -119.392712759999966, 50.193572517000071 ], [ -119.392292834999935, 50.193581169000076 ], [ -119.392306310999942, 50.193850746000059 ], [ -119.391886382999985, 50.193859397000097 ], [ -119.391899858999963, 50.194128975000105 ], [ -119.391059996999971, 50.194146272000111 ], [ -119.391073468999963, 50.194415850000055 ], [ -119.39065353499997, 50.194424496000089 ], [ -119.390680472999975, 50.19496365100013 ], [ -119.390260533999978, 50.194972297000028 ], [ -119.390287466999951, 50.195511451000073 ], [ -119.388187748999925, 50.195554657000095 ], [ -119.38816083899998, 50.195015501000107 ], [ -119.38774089899999, 50.195024137000104 ], [ -119.387713995999931, 50.194484982000048 ], [ -119.387294061, 50.194493617000056 ], [ -119.387253712999936, 50.193684881000117 ], [ -119.385574, 50.193719405000088 ], [ -119.385493366, 50.19210193300011 ], [ -119.385913279999926, 50.192093306000039 ], [ -119.385872960999961, 50.19128457100004 ], [ -119.385033145999941, 50.191301824000064 ], [ -119.385019710999956, 50.191032245000073 ], [ -119.38459980499999, 50.191040870000087 ], [ -119.384586373, 50.190771291000054 ], [ -119.383326662999977, 50.190797156000038 ], [ -119.383447498999942, 50.193223366000055 ], [ -119.382187721999983, 50.193249218000084 ], [ -119.38213404399994, 50.192170901000097 ], [ -119.381714127999913, 50.192179515000092 ], [ -119.381633628999978, 50.190562039000092 ], [ -119.383313235999978, 50.190527577000069 ], [ -119.383232688999939, 50.188910101000104 ], [ -119.384492349999917, 50.188884239000046 ], [ -119.384478918999932, 50.188614661000024 ], [ -119.385738572, 50.188588784000075 ], [ -119.385752008999972, 50.188858363000094 ], [ -119.386171895999908, 50.18884973400003 ], [ -119.386145014999926, 50.188310577000067 ], [ -119.386984776999924, 50.18829331600007 ], [ -119.386944442999948, 50.187484581000049 ], [ -119.388204063999964, 50.187458679000045 ], [ -119.388177161999977, 50.186919523000029 ], [ -119.39027650099996, 50.186876322000032 ], [ -119.39023611499999, 50.186067589000054 ], [ -119.390655973999984, 50.18605894500007 ], [ -119.390642510999953, 50.185789368000023 ], [ -119.391062367999922, 50.185780722000082 ], [ -119.391008749, 50.184707330000087 ], [ -119.389808777999917, 50.184635213000057 ], [ -119.389913807999932, 50.183915384000017 ], [ -119.389288741999962, 50.183928248000036 ], [ -119.389261829999953, 50.183389092000091 ], [ -119.389099541999926, 50.183392431000087 ], [ -119.38871106000002, 50.183400425000059 ], [ -119.388002317999934, 50.183415004000111 ], [ -119.387990524999935, 50.183178594000019 ], [ -119.389669328999929, 50.181724013000071 ], [ -119.389969955999959, 50.181485532000089 ], [ -119.390007289999957, 50.181484764000096 ], [ -119.390005904999938, 50.181457015000078 ], [ -119.390563197999953, 50.18101491600008 ], [ -119.390720246999962, 50.180930374000077 ], [ -119.390820003999963, 50.180928321000124 ], [ -119.390817491999925, 50.180878026000073 ], [ -119.39110912699999, 50.180721031000097 ], [ -119.391456812999962, 50.180645350000134 ], [ -119.39217886299997, 50.180630475000036 ], [ -119.393745223999929, 50.180598191000072 ], [ -119.393778452, 50.18126271200007 ], [ -119.395567527, 50.181370171000026 ], [ -119.396304569, 50.181354961000046 ], [ -119.396345052999934, 50.18216369200011 ], [ -119.395793701999978, 50.182175070000056 ], [ -119.395635876999933, 50.183257748000095 ], [ -119.395979197999949, 50.183250664000063 ], [ -119.396006185, 50.183789818 ], [ -119.396426022999989, 50.18378115300002 ], [ -119.396493504999953, 50.185129037000081 ], [ -119.397333204999953, 50.18511170200005 ], [ -119.39731970299998, 50.184842125000081 ], [ -119.396899855999919, 50.184850793000066 ], [ -119.396859360999926, 50.184042063000035 ], [ -119.397279199999957, 50.184033395000071 ], [ -119.3972252, 50.182955089000103 ], [ -119.397645028999975, 50.182946420000114 ], [ -119.397618025, 50.182407266000055 ], [ -119.398037851999945, 50.182398596000063 ], [ -119.398010843999955, 50.181859443000079 ], [ -119.399270305999963, 50.18183342300005 ], [ -119.399310839999913, 50.182642151000074 ], [ -119.39940061499999, 50.182640296000017 ], [ -119.399730665999982, 50.182633475000046 ], [ -119.39974571399999, 50.182933653000077 ], [ -119.399757694999963, 50.183172627000069 ], [ -119.400050122999957, 50.183166582000077 ], [ -119.40017307, 50.183164041000076 ], [ -119.400177526999968, 50.183163949000061 ], [ -119.400177655999926, 50.183166513000089 ], [ -119.400191043999939, 50.183433525000076 ], [ -119.400610876999934, 50.18342484500009 ], [ -119.400619716999984, 50.18360109000006 ], [ -119.400651434999986, 50.184233573000043 ], [ -119.399385973999955, 50.184259732000037 ], [ -119.398552227999971, 50.184276959000108 ], [ -119.398565736999913, 50.18454653500001 ], [ -119.399219927999951, 50.184533018000117 ], [ -119.399405424999912, 50.184529186000042 ], [ -119.39945947799994, 50.185607489000084 ], [ -119.398619769999982, 50.185624840000038 ], [ -119.398633279, 50.185894416000039 ], [ -119.398213423999962, 50.18590309000006 ], [ -119.398226928999961, 50.186172665000129 ], [ -119.397807072, 50.186181338000026 ], [ -119.397820574999969, 50.186450914000041 ], [ -119.396980852999945, 50.186468253000058 ], [ -119.39699435299994, 50.18673782900008 ], [ -119.396154624999951, 50.186755163000036 ], [ -119.396168119999956, 50.18702473900008 ], [ -119.397427720999971, 50.186998737000053 ], [ -119.39752224599998, 50.188885772000063 ], [ -119.397102361999885, 50.188894441000073 ], [ -119.397115864999975, 50.189164017000103 ], [ -119.396695978999958, 50.189172685000131 ], [ -119.396736479999944, 50.189981414000023 ], [ -119.396316585999969, 50.189990081000062 ], [ -119.396357081999938, 50.190798811000072 ], [ -119.395937181999983, 50.190807475000049 ], [ -119.395950678999966, 50.191077053000079 ], [ -119.395530775999987, 50.191085717000135 ], [ -119.39554427099992, 50.191355293000065 ], [ -119.395964174999946, 50.19134662800009 ], [ -119.395991169999917, 50.191885782000114 ], [ -119.397670806999926, 50.191851110000123 ], [ -119.397684312999971, 50.192120686000088 ], [ -119.398104222999976, 50.19211201400006 ], [ -119.398117731999918, 50.192381590000068 ], [ -119.398537646999984, 50.192372917000107 ], [ -119.398564669999971, 50.192912069000059 ], [ -119.398984588999951, 50.192903394000076 ], [ -119.399065678999975, 50.19452084800011 ], [ -119.398645745999985, 50.19452952400006 ], [ -119.39865926, 50.194799100000104 ], [ -119.398239325999967, 50.194807775000079 ], [ -119.398252836999973, 50.195077349000037 ], [ -119.397832898999965, 50.195086022000055 ], [ -119.397900447999945, 50.196433902000088 ], [ -119.396797941000017, 50.196456666000088 ], [ -119.39580070199996, 50.196477245 ], [ -119.395760207999942, 50.195668516000083 ], [ -119.395340263999984, 50.195677180000061 ], [ -119.395326768999951, 50.19540760400011 ], [ -119.394906827999975, 50.195416267000098 ], [ -119.394920321999962, 50.195685842000088 ], [ -119.394080434999964, 50.195703163000076 ], [ -119.394093922999971, 50.195972740000094 ], [ -119.393673976999963, 50.195981397000047 ], [ -119.393700948999964, 50.19652055100007 ], [ -119.393280997999966, 50.196529207000083 ], [ -119.39329448399999, 50.196798785000091 ], [ -119.39203462099999, 50.196824745000093 ], [ -119.391980712999953, 50.195746437000061 ], [ -119.392400658999961, 50.19573778600013 ], [ -119.392387179999929, 50.195468208000079 ], [ -119.392807120999962, 50.195459555000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "54.7", "sL_BldgLoss": "54.7", "sL_StrLoss": "54.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000665E162C38D85DC0AF75EB2DCC184940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377568527, 50.193343895000098 ], [ -119.379248235999938, 50.193309488000068 ], [ -119.379288447999912, 50.19411822700004 ], [ -119.377608709999947, 50.194152635000144 ], [ -119.377568527, 50.193343895000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58", "sL_BldgLoss": "58", "sL_StrLoss": "58", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FE91DB854D95DC0A564FF5D1B174940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.392899456999956, 50.180331313000053 ], [ -119.39816881899999, 50.180354641000058 ], [ -119.398130397999964, 50.180618327000047 ], [ -119.398098104999946, 50.180839944000112 ], [ -119.392666221999932, 50.180513714000078 ], [ -119.392521153999965, 50.180504998000117 ], [ -119.392534909999966, 50.180410671000068 ], [ -119.392899456999956, 50.180331313000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021014", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "113", "sL_BldgLoss": "113", "sL_StrLoss": "113", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002453914C7FDF5DC0AEAC7EB69F2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.48960239299997, 50.370106914000125 ], [ -119.495203427999954, 50.37043687200002 ], [ -119.494687271999979, 50.374016146000059 ], [ -119.48908579799992, 50.373686163000102 ], [ -119.48960239299997, 50.370106914000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "150", "sL_BldgLoss": "150", "sL_StrLoss": "150", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B6E765AEDDC5DC0E59B4C6063284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.450327434999934, 50.31849780700005 ], [ -119.450795444, 50.315270352000049 ], [ -119.446135221999953, 50.31499359900009 ], [ -119.446236014999926, 50.314298943000054 ], [ -119.44865634599995, 50.314297267000029 ], [ -119.448692882999964, 50.311535359000047 ], [ -119.452248005999962, 50.31174643700011 ], [ -119.451780135999968, 50.314973913000124 ], [ -119.45644039099993, 50.315250429000066 ], [ -119.455921801, 50.318829772000043 ], [ -119.450327434999934, 50.31849780700005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "102", "sL_BldgLoss": "102", "sL_StrLoss": "102", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000072A4754C04D65DC0200FB722352F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.341843161999961, 50.367927506000107 ], [ -119.341864101999974, 50.36609750500007 ], [ -119.346172897999949, 50.366357182000129 ], [ -119.345946286999904, 50.367893433000042 ], [ -119.346506392999984, 50.367927176000066 ], [ -119.345978499999916, 50.371505760000083 ], [ -119.341797547999988, 50.37125381300006 ], [ -119.341832445999898, 50.368595900000074 ], [ -119.341843161999961, 50.367927506000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "101.4", "sL_BldgLoss": "101.4", "sL_StrLoss": "101.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D705B45B68DD5DC09B86F24F3A2B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.456955532, 50.335761581000099 ], [ -119.462552079999966, 50.336093203000104 ], [ -119.462033732999913, 50.339672480000061 ], [ -119.456436746999941, 50.339340833000051 ], [ -119.456955532, 50.335761581000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "101", "sL_BldgLoss": "101", "sL_StrLoss": "101", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E6B4E1497E45DC0F62BF8C841364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.568883265999972, 50.425424760000055 ], [ -119.569394132999918, 50.421845374000078 ], [ -119.572028689999939, 50.421998513000091 ], [ -119.572220102999921, 50.422094910000048 ], [ -119.573034403999969, 50.422301394000051 ], [ -119.573787615999919, 50.422195999000067 ], [ -119.57441388699999, 50.422290004000047 ], [ -119.574504613999963, 50.422422491000049 ], [ -119.574408215999952, 50.422703098000042 ], [ -119.573532310999937, 50.423190108000043 ], [ -119.57360780599997, 50.42352199100003 ], [ -119.57408941599999, 50.423862400000054 ], [ -119.574754508999959, 50.423908026000078 ], [ -119.574491734, 50.425750687000068 ], [ -119.568883265999972, 50.425424760000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.8", "sL_BldgLoss": "91.8", "sL_StrLoss": "91.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006FAE17369DF5DC0C8F47CB4D51F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.492473146999956, 50.2470023240001 ], [ -119.493861758999984, 50.247084353000027 ], [ -119.493346900999924, 50.250664183000033 ], [ -119.487760667999964, 50.250334082000073 ], [ -119.488275963999911, 50.246754276000068 ], [ -119.491815469999906, 50.246963467000064 ], [ -119.492473146999956, 50.2470023240001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "260", "sL_BldgLoss": "260", "sL_StrLoss": "260", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA07D2FF91DD5DC001B3EF48C4254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.459073393999958, 50.295228101000085 ], [ -119.45911507699999, 50.294940129000032 ], [ -119.458836486999942, 50.294923603000051 ], [ -119.457667592999954, 50.294854258000029 ], [ -119.457859984, 50.293525337000119 ], [ -119.457861927999915, 50.293511902000034 ], [ -119.45818577199995, 50.291274798000131 ], [ -119.463776834999948, 50.291606377000058 ], [ -119.463493800999942, 50.293563251000123 ], [ -119.467095361999952, 50.293776689 ], [ -119.466840865000037, 50.295537086000124 ], [ -119.466577858999983, 50.297356181000069 ], [ -119.464423582999984, 50.29722852600009 ], [ -119.464206233999988, 50.29873123100009 ], [ -119.45861428799995, 50.298399677000113 ], [ -119.459073393999958, 50.295228101000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "94.5", "sL_BldgLoss": "94.5", "sL_StrLoss": "94.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD8EB9BE11DF5DC0446ADAC5342F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.483735120999938, 50.370510123000052 ], [ -119.483737658999956, 50.370492548000136 ], [ -119.48106313699995, 50.370334749000044 ], [ -119.481580328999939, 50.366755521000094 ], [ -119.487180891999941, 50.367085886000027 ], [ -119.487178353999965, 50.367103461000085 ], [ -119.489852706999926, 50.36726111300014 ], [ -119.48933616299999, 50.370840377000064 ], [ -119.483735120999938, 50.370510123000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "99.5", "sL_BldgLoss": "99.5", "sL_StrLoss": "99.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B2C9F824FDE5DC072AD516A0A2D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.471062527999919, 50.349925239000115 ], [ -119.47666093, 50.350256142000035 ], [ -119.476143538, 50.353835420000081 ], [ -119.470544696, 50.353504493000067 ], [ -119.471062527999919, 50.349925239000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "44.1", "sL_BldgLoss": "44.1", "sL_StrLoss": "44.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C61218E3AADE5DC0C995D5CF762E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.476638861999945, 50.361045895000089 ], [ -119.482238680999956, 50.361376512000035 ], [ -119.481721601999979, 50.364955766000023 ], [ -119.476121343999964, 50.364625125000039 ], [ -119.476638861999945, 50.361045895000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.2", "sL_BldgLoss": "49.2", "sL_StrLoss": "49.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000048203558FED55DC0DD5B9198A0304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.341651483999911, 50.378014312000055 ], [ -119.345936812999966, 50.378272513000084 ], [ -119.345408756, 50.381851048000101 ], [ -119.34164832, 50.381624484000092 ], [ -119.341575891, 50.37921500800006 ], [ -119.341625416999975, 50.378976533000035 ], [ -119.341624533999962, 50.378936766000088 ], [ -119.341622444999942, 50.378844819000037 ], [ -119.34162088299999, 50.378776852000044 ], [ -119.341650766999962, 50.378618991000039 ], [ -119.341651483999911, 50.378014312000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021027", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "116.4", "sL_BldgLoss": "116.4", "sL_StrLoss": "116.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B7D740C249D65DC04762599B8C334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352217385999893, 50.406142877 ], [ -119.352199414999944, 50.405105853000052 ], [ -119.347037712999978, 50.404911419000022 ], [ -119.347194811999913, 50.403847156000097 ], [ -119.343854857999972, 50.403646090000116 ], [ -119.344383292999936, 50.400067660000111 ], [ -119.349986968999985, 50.400404946000045 ], [ -119.349695418999957, 50.402380975000028 ], [ -119.353035305999938, 50.402581866000034 ], [ -119.352507526999943, 50.40616032499999 ], [ -119.352217385999893, 50.406142877 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "78.2", "sL_BldgLoss": "78.2", "sL_StrLoss": "78.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FA2B018451D65DC08D5830960E2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.346189880999987, 50.35786219700001 ], [ -119.351788343999914, 50.358199409000051 ], [ -119.351260983999964, 50.36177806300006 ], [ -119.345662080999901, 50.361440825000074 ], [ -119.346189880999987, 50.35786219700001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "90", "sL_BldgLoss": "90", "sL_StrLoss": "90", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000018C0E7C9ADDF5DC0F43A3D4A00364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.492436966999975, 50.419929402000093 ], [ -119.498044199, 50.420259195000064 ], [ -119.497527698999988, 50.423838259000043 ], [ -119.491920025999917, 50.423508441000088 ], [ -119.492436966999975, 50.419929402000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "43.7", "sL_BldgLoss": "43.7", "sL_StrLoss": "43.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000096F273A6FDDC5DC0E0E9004E902A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.449949057999959, 50.334256963 ], [ -119.449968336999973, 50.334124078000123 ], [ -119.449512953999957, 50.334097052000033 ], [ -119.450032224999944, 50.330517808000081 ], [ -119.450854392999958, 50.330566602000097 ], [ -119.450862989999962, 50.330507328000039 ], [ -119.45645884399994, 50.330839261000044 ], [ -119.45594007499993, 50.334418533000111 ], [ -119.455573222999959, 50.334396781000066 ], [ -119.455545369999967, 50.334588941000057 ], [ -119.449949057999959, 50.334256963 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51", "sL_BldgLoss": "51", "sL_StrLoss": "51", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000EC237A898DD5DC0F699D44C4E214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.460536796, 50.261777874000124 ], [ -119.460522899999987, 50.261508314000096 ], [ -119.460102401, 50.26151722 ], [ -119.460032941999913, 50.260169418000061 ], [ -119.460453430999976, 50.260160512000034 ], [ -119.460439536999942, 50.25989095100006 ], [ -119.46086002399997, 50.259882044000051 ], [ -119.460846126999911, 50.259612484000101 ], [ -119.46126661299995, 50.259603575000064 ], [ -119.461238815999963, 50.259064455000065 ], [ -119.461659294999947, 50.259055543000045 ], [ -119.461603698, 50.257977303000132 ], [ -119.463285575999933, 50.257941648000106 ], [ -119.463355121999953, 50.259289448000033 ], [ -119.462934640999933, 50.259298364000074 ], [ -119.462962454999982, 50.259837484000101 ], [ -119.463803425999927, 50.259819650000097 ], [ -119.463817337999913, 50.260089209000029 ], [ -119.464237824999941, 50.260080290000118 ], [ -119.464251740999899, 50.2603498490001 ], [ -119.465513209999983, 50.260323080000056 ], [ -119.465554977999957, 50.261131758000069 ], [ -119.465134481999982, 50.261140683000072 ], [ -119.465148401999926, 50.261410243000043 ], [ -119.463466404999963, 50.261445927000061 ], [ -119.463438583, 50.260906807000048 ], [ -119.46301808699999, 50.260915723000018 ], [ -119.463031995999984, 50.261185284000099 ], [ -119.462611497999944, 50.261194199000073 ], [ -119.462625405999944, 50.261463759000073 ], [ -119.46220490499995, 50.261472673000071 ], [ -119.462218807999989, 50.261742233000106 ], [ -119.460536796, 50.261777874000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "163.4", "sL_BldgLoss": "163.4", "sL_StrLoss": "163.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F9937B9E5DC5DC05F06088BAF294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.449537607999972, 50.327366067000064 ], [ -119.449540223000028, 50.3273480450001 ], [ -119.447390340999945, 50.327220407000063 ], [ -119.447909701999947, 50.323641143000074 ], [ -119.45350468599996, 50.323973228000028 ], [ -119.453502073999985, 50.32399124900008 ], [ -119.455651818999954, 50.324118769000101 ], [ -119.455133065, 50.327698068000075 ], [ -119.449537607999972, 50.327366067000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021033", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F629432C8DE65DC0E1E0C1050F374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.599453988999954, 50.430972228000073 ], [ -119.599739585999956, 50.42896192000007 ], [ -119.600180806999973, 50.429254410000105 ], [ -119.600435984999947, 50.42927580300011 ], [ -119.60078180899994, 50.429160400000036 ], [ -119.602207709999973, 50.428975289000057 ], [ -119.602535299999957, 50.428805794000034 ], [ -119.602920011999956, 50.428878389000076 ], [ -119.603516502, 50.429476587000089 ], [ -119.603909583999894, 50.429728697000087 ], [ -119.604948289000021, 50.429912404000028 ], [ -119.605103403999919, 50.430439412000105 ], [ -119.605358614999943, 50.430460701000108 ], [ -119.60587541299995, 50.430143109000063 ], [ -119.606072541999978, 50.430082747000021 ], [ -119.606086984999976, 50.430318717000063 ], [ -119.606109964999959, 50.431007592000071 ], [ -119.600828280000016, 50.430985049000093 ], [ -119.599453988999954, 50.430972228000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "113", "sL_BldgLoss": "113", "sL_StrLoss": "113", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000962BB45AFDDC5DC09BF4087F50254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.45042740099997, 50.289563315000045 ], [ -119.45601819700002, 50.289895287000057 ], [ -119.455499862999943, 50.293474744000072 ], [ -119.454063023999964, 50.293389456000057 ], [ -119.44990863, 50.293142748 ], [ -119.449978181999924, 50.292662884000052 ], [ -119.45042740099997, 50.289563315000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "48.7", "sL_BldgLoss": "48.7", "sL_StrLoss": "48.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AA86AE552CF5DC0DB6265D147204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.239502320999947, 50.252907288000145 ], [ -119.239524859999946, 50.252756510000097 ], [ -119.238691398999975, 50.252772576 ], [ -119.238653482999922, 50.251963764000038 ], [ -119.239073967999943, 50.251955660000142 ], [ -119.239061325999955, 50.251686057000022 ], [ -119.239481807999965, 50.251677952000108 ], [ -119.239469164999903, 50.251408348000119 ], [ -119.239889644999963, 50.251400241000098 ], [ -119.239864354999966, 50.250861034000117 ], [ -119.239944910999938, 50.250859480000102 ], [ -119.240019084999986, 50.252907198000045 ], [ -119.239604075999964, 50.252907274000101 ], [ -119.239502320999947, 50.252907288000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135041083", "BldgCostT": "90658333", "sL_LossRatio": "1", "sL_AssetLoss": "8972", "sL_BldgLoss": "8972", "sL_StrLoss": "8972", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000274884D9ECE5DC0F813F83726204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.217820592999914, 50.26028822100011 ], [ -119.217957303999938, 50.259376768000045 ], [ -119.217954618999926, 50.259376819000096 ], [ -119.217854425999988, 50.257219962000079 ], [ -119.218274963999974, 50.257211932000075 ], [ -119.21824009099997, 50.256461304 ], [ -119.2172321, 50.256399236000092 ], [ -119.216997625999952, 50.253129096000094 ], [ -119.216870880999934, 50.251361113000073 ], [ -119.21646694599994, 50.24540630600012 ], [ -119.222800365999959, 50.245636931000014 ], [ -119.222639298, 50.246711893000075 ], [ -119.220785775999943, 50.246597804000011 ], [ -119.220766617, 50.246725635000061 ], [ -119.220469324999954, 50.24670733300011 ], [ -119.220395427999932, 50.24720034300006 ], [ -119.21714638499999, 50.247000270000086 ], [ -119.217087032999956, 50.247396034000076 ], [ -119.217224565999942, 50.247404506000116 ], [ -119.217066723999935, 50.248457018000074 ], [ -119.217188337999971, 50.24846450800004 ], [ -119.21715779699997, 50.248668167000098 ], [ -119.218315716999939, 50.248739478000061 ], [ -119.218311203999946, 50.248769572000086 ], [ -119.218556410999938, 50.248784671000102 ], [ -119.218356866999898, 50.250115469000022 ], [ -119.21953508199999, 50.250188015000056 ], [ -119.21969979499994, 50.249089320000024 ], [ -119.219581141999953, 50.249091586000077 ], [ -119.219543553999969, 50.248282765000063 ], [ -119.219821502999963, 50.248277454000089 ], [ -119.219906291999905, 50.247711833000068 ], [ -119.223708022000011, 50.247945830000042 ], [ -119.223928386999916, 50.246474922000068 ], [ -119.224938039999955, 50.246537044000043 ], [ -119.225069347999963, 50.245660407000052 ], [ -119.228853166, 50.245652615000026 ], [ -119.232322882999981, 50.245682956000103 ], [ -119.23511441399998, 50.245707265000107 ], [ -119.238311510999949, 50.245735037000017 ], [ -119.239274682999962, 50.245468132000084 ], [ -119.24588990899997, 50.245441121000077 ], [ -119.248191919999925, 50.245431634000035 ], [ -119.248127297999972, 50.246648030000088 ], [ -119.248213044, 50.248350206000048 ], [ -119.248358279999934, 50.24841492300007 ], [ -119.247907102999932, 50.249345296000065 ], [ -119.247262402999937, 50.249106305000076 ], [ -119.246599393999958, 50.248922992000089 ], [ -119.245855386999935, 50.248829405000066 ], [ -119.24519858599993, 50.248746826000115 ], [ -119.244810676999975, 50.248655329000051 ], [ -119.243809280999955, 50.248313937000027 ], [ -119.243165686999944, 50.248093546000106 ], [ -119.242861729999973, 50.247989455000045 ], [ -119.242368791999979, 50.247790390000048 ], [ -119.242013037999953, 50.247587966000033 ], [ -119.241668587999953, 50.24734745700006 ], [ -119.2413235099999, 50.247073713000105 ], [ -119.239826344, 50.247270151000052 ], [ -119.23987966199995, 50.248929197000081 ], [ -119.239645495999923, 50.248914823000085 ], [ -119.239659545999928, 50.248820825000116 ], [ -119.239362891999974, 50.248802616000027 ], [ -119.239389814999953, 50.248622494000067 ], [ -119.23733544199996, 50.248496360000061 ], [ -119.237385718999988, 50.248160098 ], [ -119.236720445999936, 50.248119244000044 ], [ -119.236771352999966, 50.247778789000066 ], [ -119.236607764, 50.247768742000048 ], [ -119.236694463, 50.247188938000178 ], [ -119.233860718, 50.247014867000082 ], [ -119.233961176999927, 50.246343304000057 ], [ -119.233483550999949, 50.246313958000037 ], [ -119.233518505999939, 50.246080297000056 ], [ -119.232604539999954, 50.246024134000088 ], [ -119.232635510999955, 50.245817132000049 ], [ -119.232340436999948, 50.245798997000101 ], [ -119.232193914, 50.246778274000057 ], [ -119.230956745999919, 50.246702235000114 ], [ -119.230937210999954, 50.246832775000073 ], [ -119.231484420999905, 50.246866410000102 ], [ -119.230982175999912, 50.250222418000064 ], [ -119.230996574999921, 50.250222142000084 ], [ -119.231003340999976, 50.25036694900011 ], [ -119.234913750999951, 50.250607222000085 ], [ -119.234786686999925, 50.251456671000064 ], [ -119.236133468999952, 50.251539391000037 ], [ -119.236087949999913, 50.251843756000014 ], [ -119.236238286999964, 50.251852988000081 ], [ -119.236165736999979, 50.252338095 ], [ -119.23635121699999, 50.252349486000057 ], [ -119.236292051999968, 50.252745086000047 ], [ -119.236594837, 50.252763680000072 ], [ -119.236366980999946, 50.254287228000074 ], [ -119.236699295999969, 50.254307635000018 ], [ -119.236698295999986, 50.254385294000016 ], [ -119.236745177, 50.256502690000104 ], [ -119.230918193999969, 50.256523991000094 ], [ -119.228241849999932, 50.25652125600007 ], [ -119.226019504999925, 50.256518900000046 ], [ -119.224911415999927, 50.256532100000086 ], [ -119.224581915, 50.256567798000034 ], [ -119.224283793999987, 50.256657808000035 ], [ -119.224053473999959, 50.256774496000027 ], [ -119.223840308999954, 50.256937501000017 ], [ -119.223259293999945, 50.25756989700006 ], [ -119.222991113999939, 50.257873892000134 ], [ -119.222847979999941, 50.257954485 ], [ -119.22266941399991, 50.257980481000047 ], [ -119.222506919999915, 50.257955100000054 ], [ -119.222369315999956, 50.257867204000071 ], [ -119.222076703999932, 50.257271388000014 ], [ -119.221875482999948, 50.256968306000054 ], [ -119.221651497999957, 50.25675218599999 ], [ -119.221133890999923, 50.256351097000064 ], [ -119.220965289999981, 50.256159205000039 ], [ -119.22091719399999, 50.255963106000081 ], [ -119.221094822999987, 50.25522009600008 ], [ -119.221036279999936, 50.255093705000064 ], [ -119.220879897999978, 50.255056109000101 ], [ -119.220604095999988, 50.255062603000056 ], [ -119.220327915, 50.255100695000088 ], [ -119.220013175999952, 50.255197793000093 ], [ -119.219204688, 50.255618409000114 ], [ -119.21875827799991, 50.255766997000059 ], [ -119.21893604199991, 50.256199764000044 ], [ -119.219337328999927, 50.257176603000126 ], [ -119.219388008999914, 50.257299997000068 ], [ -119.219460413999968, 50.257615999000045 ], [ -119.21946572499999, 50.258031598000066 ], [ -119.219277018999904, 50.25841458600005 ], [ -119.219155701999952, 50.258660811000027 ], [ -119.219121398999945, 50.258917793000094 ], [ -119.219163008999971, 50.259394351000068 ], [ -119.219205406999961, 50.259879993 ], [ -119.219192990999943, 50.260132101000067 ], [ -119.21911131199991, 50.260348189000055 ], [ -119.219055414999914, 50.260459113000053 ], [ -119.218595713999903, 50.261371104000062 ], [ -119.218460993999884, 50.261770895000083 ], [ -119.218373917999955, 50.261905350000063 ], [ -119.21825012499994, 50.262096510000084 ], [ -119.218186194999959, 50.262353515000015 ], [ -119.218246622999956, 50.263538520000047 ], [ -119.218249003000011, 50.263585490000061 ], [ -119.218265190999915, 50.263903094000071 ], [ -119.218227890999955, 50.264198806000095 ], [ -119.218068406999961, 50.264435493000029 ], [ -119.217864483999904, 50.264591807000045 ], [ -119.217869356000037, 50.263638701000019 ], [ -119.217563059999961, 50.260272365000056 ], [ -119.217820592999914, 50.26028822100011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "147159227", "BldgCostT": "98809856", "sL_LossRatio": "0.998251987645576", "sL_AssetLoss": "5915.29", "sL_BldgLoss": "5904.95", "sL_StrLoss": "5901.2", "sL_NStrLoss": "3.75", "sL_ContLoss": "10.34", "geom_point": "0101000020E61000007CABC7E015D25DC001BB71BDB3224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.28201774499999, 50.273271337000018 ], [ -119.281465508999972, 50.273100883000055 ], [ -119.279753575999933, 50.273067806000043 ], [ -119.278524101999963, 50.273061404000075 ], [ -119.278578998999976, 50.272199004000093 ], [ -119.28129441, 50.272231894000065 ], [ -119.281195482000015, 50.272091295000074 ], [ -119.281146399999955, 50.271568295000115 ], [ -119.281012794999967, 50.271442804000039 ], [ -119.280877892999953, 50.271260400000116 ], [ -119.280874925999981, 50.271160946000109 ], [ -119.28086211699997, 50.270731307000077 ], [ -119.282003587999952, 50.270732236000057 ], [ -119.281984360999942, 50.270595733000057 ], [ -119.282020280999959, 50.270240327000046 ], [ -119.282193373999959, 50.269805804000072 ], [ -119.282230596999966, 50.269460497000132 ], [ -119.282175483999978, 50.268864000000114 ], [ -119.282232310999959, 50.268813306000041 ], [ -119.282342804999971, 50.268781194000063 ], [ -119.283295704999958, 50.268789667000057 ], [ -119.283321203999918, 50.268457188000134 ], [ -119.283365578999963, 50.268319093000038 ], [ -119.283434908999979, 50.268260990000073 ], [ -119.283612614999981, 50.268222188000038 ], [ -119.284617802999961, 50.268191370000046 ], [ -119.284673582999986, 50.26961992400004 ], [ -119.284678807, 50.269754195000068 ], [ -119.284291960999951, 50.270764299000071 ], [ -119.284160232999952, 50.271049410000039 ], [ -119.284151482999931, 50.271068408000119 ], [ -119.284871724999945, 50.271018710000078 ], [ -119.285088966000032, 50.271004840000082 ], [ -119.285301174999944, 50.270989272000072 ], [ -119.28531480399991, 50.271991190000129 ], [ -119.28401152099994, 50.271997644000059 ], [ -119.283578835999947, 50.271921530000078 ], [ -119.283327394999972, 50.27229708700002 ], [ -119.282562554999942, 50.273439460000098 ], [ -119.28201774499999, 50.273271337000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021039", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "267509311", "BldgCostT": "184353190", "sL_LossRatio": "0.9959591034553", "sL_AssetLoss": "5988.77", "sL_BldgLoss": "5964.57", "sL_StrLoss": "5955.8", "sL_NStrLoss": "8.77", "sL_ContLoss": "24.2", "geom_point": "0101000020E61000005F672A61B9D15DC0821D3140C3224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.273828731999956, 50.272437275000087 ], [ -119.273846107999987, 50.270122664000063 ], [ -119.275099910999955, 50.270126957000109 ], [ -119.275381752000015, 50.27012705200012 ], [ -119.27688596899999, 50.270127583000068 ], [ -119.276960289999977, 50.270127583000068 ], [ -119.277472199999963, 50.270162106000093 ], [ -119.27766770199996, 50.270175281000057 ], [ -119.277967922999906, 50.270242385000095 ], [ -119.278233981999946, 50.270347989000086 ], [ -119.278912318999943, 50.27069628200006 ], [ -119.279131704999926, 50.270756586000061 ], [ -119.279382593999941, 50.270794509000119 ], [ -119.280176609999927, 50.270760572000036 ], [ -119.28086211699997, 50.270731307000077 ], [ -119.280874925999981, 50.271160946000109 ], [ -119.280877892999953, 50.271260400000116 ], [ -119.281012794999967, 50.271442804000039 ], [ -119.281146399999955, 50.271568295000115 ], [ -119.281195482000015, 50.272091295000074 ], [ -119.28129441, 50.272231894000065 ], [ -119.278578998999976, 50.272199004000093 ], [ -119.278524101999963, 50.273061404000075 ], [ -119.277386720999942, 50.273060601000083 ], [ -119.276114525999972, 50.273037189000092 ], [ -119.27471031099999, 50.273048991000017 ], [ -119.273833783999962, 50.273037930000051 ], [ -119.273828731999956, 50.272437275000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "363567689", "BldgCostT": "246070825", "sL_LossRatio": "0.994803962275343", "sL_AssetLoss": "8429.5", "sL_BldgLoss": "8385.7", "sL_StrLoss": "8369.8", "sL_NStrLoss": "15.9", "sL_ContLoss": "43.8", "geom_point": "0101000020E61000007DBE038FF1D15DC0623565C03C224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.277472199999963, 50.270162106000093 ], [ -119.276960289999977, 50.270127583000068 ], [ -119.27688596899999, 50.270127583000068 ], [ -119.275381752000015, 50.27012705200012 ], [ -119.275099910999955, 50.270126957000109 ], [ -119.275135526999961, 50.269555847000106 ], [ -119.275134766999955, 50.268840793000052 ], [ -119.27512976099996, 50.267386979000086 ], [ -119.275839112999932, 50.267385447000088 ], [ -119.276958307999948, 50.267383001000105 ], [ -119.279156390999944, 50.267386202000083 ], [ -119.27906749499999, 50.266751505000059 ], [ -119.279086412999973, 50.26603680300007 ], [ -119.279087361999984, 50.265319104000056 ], [ -119.279101036999947, 50.264842164000171 ], [ -119.279164998999974, 50.264759657000091 ], [ -119.279488238999974, 50.264547304000146 ], [ -119.279538138999953, 50.264543105000079 ], [ -119.279869457999908, 50.264418866000014 ], [ -119.280043151999905, 50.264293136000077 ], [ -119.280064743999944, 50.26424663600006 ], [ -119.280071886, 50.264231265000028 ], [ -119.280271117999987, 50.263802372000093 ], [ -119.280650211999941, 50.263801324000049 ], [ -119.28093205299993, 50.263800540000013 ], [ -119.284263715999927, 50.263791259000094 ], [ -119.284275223999941, 50.265137109000115 ], [ -119.284271557999958, 50.265617168000141 ], [ -119.284281444999976, 50.265676718000051 ], [ -119.284285069999939, 50.26569826100009 ], [ -119.28431200499989, 50.265860074000074 ], [ -119.284385255999922, 50.266299593000092 ], [ -119.284539789999911, 50.267226944000065 ], [ -119.284617802999961, 50.268191370000046 ], [ -119.283612614999981, 50.268222188000038 ], [ -119.283434908999979, 50.268260990000073 ], [ -119.283365578999963, 50.268319093000038 ], [ -119.283321203999918, 50.268457188000134 ], [ -119.283295704999958, 50.268789667000057 ], [ -119.282342804999971, 50.268781194000063 ], [ -119.282232310999959, 50.268813306000041 ], [ -119.282175483999978, 50.268864000000114 ], [ -119.282230596999966, 50.269460497000132 ], [ -119.282193373999959, 50.269805804000072 ], [ -119.282020280999959, 50.270240327000046 ], [ -119.281984360999942, 50.270595733000057 ], [ -119.282003587999952, 50.270732236000057 ], [ -119.28086211699997, 50.270731307000077 ], [ -119.280176609999927, 50.270760572000036 ], [ -119.279382593999941, 50.270794509000119 ], [ -119.279131704999926, 50.270756586000061 ], [ -119.278912318999943, 50.27069628200006 ], [ -119.278233981999946, 50.270347989000086 ], [ -119.277967922999906, 50.270242385000095 ], [ -119.27766770199996, 50.270175281000057 ], [ -119.277472199999963, 50.270162106000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "196638263", "BldgCostT": "108121361", "sL_LossRatio": "0.967886754147918", "sL_AssetLoss": "8051.8743322", "sL_BldgLoss": "7793.3025122", "sL_StrLoss": "7696.2959122", "sL_NStrLoss": "97.0066", "sL_ContLoss": "258.57182", "geom_point": "0101000020E61000007E774B0F56D15DC07F8E8F1667224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.273775996999959, 50.267391914 ], [ -119.27512976099996, 50.267386979000086 ], [ -119.275134766999955, 50.268840793000052 ], [ -119.275135526999961, 50.269555847000106 ], [ -119.275099910999955, 50.270126957000109 ], [ -119.273846107999987, 50.270122664000063 ], [ -119.273714892000015, 50.270123660000074 ], [ -119.272572879, 50.27012618100008 ], [ -119.272476678999936, 50.270128420000056 ], [ -119.271144632999977, 50.270129250000075 ], [ -119.269967023999968, 50.270134074000055 ], [ -119.26896600399999, 50.270136089000047 ], [ -119.26863461, 50.270137507000086 ], [ -119.267838085000037, 50.2701384920001 ], [ -119.266624671999978, 50.270146495000034 ], [ -119.266637197999984, 50.269542403000081 ], [ -119.266634308999926, 50.268833502000106 ], [ -119.266619286, 50.268110398000054 ], [ -119.266630599999957, 50.267410496000089 ], [ -119.267736633999959, 50.267408397000089 ], [ -119.268838282999951, 50.267406298000076 ], [ -119.269516493999973, 50.26740643000003 ], [ -119.269816316999979, 50.267406492000141 ], [ -119.270734486999984, 50.26743999100006 ], [ -119.272244373999982, 50.267427502000032 ], [ -119.273775996999959, 50.267391914 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "800475215", "BldgCostT": "495765673", "sL_LossRatio": "0.933589770381588", "sL_AssetLoss": "23736.471159", "sL_BldgLoss": "22160.126659", "sL_StrLoss": "21571.526659", "sL_NStrLoss": "588.6", "sL_ContLoss": "1576.3445", "geom_point": "0101000020E6100000BF81D96FB3D15DC02F6D06F2CB214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.273800631999976, 50.263768669000029 ], [ -119.27378575299997, 50.262968782000023 ], [ -119.273791456999945, 50.262598965000116 ], [ -119.273800223999956, 50.26246407900009 ], [ -119.27375436399997, 50.262393576000072 ], [ -119.273752902999945, 50.262194869000105 ], [ -119.273725642999977, 50.261711866000034 ], [ -119.273724686999969, 50.261695021000044 ], [ -119.273709436, 50.261425310000064 ], [ -119.273708944999967, 50.261416593000085 ], [ -119.27368194899995, 50.260938342000067 ], [ -119.273800505999958, 50.260927518000067 ], [ -119.275070042999943, 50.26085244800003 ], [ -119.276387764999981, 50.260775797000107 ], [ -119.277926003999966, 50.260684608000133 ], [ -119.279294892999985, 50.260604708000095 ], [ -119.279306872999911, 50.26092231400002 ], [ -119.279331485999933, 50.26159100100007 ], [ -119.279341458999937, 50.262187451000045 ], [ -119.279345392999943, 50.263206298000021 ], [ -119.279346071999967, 50.263386950000033 ], [ -119.279346630999939, 50.263527529000058 ], [ -119.279374762999979, 50.263783827000026 ], [ -119.279500964999926, 50.263786424000038 ], [ -119.280271117999987, 50.263802372000093 ], [ -119.280071886, 50.264231265000028 ], [ -119.280064743999944, 50.26424663600006 ], [ -119.280043151999905, 50.264293136000077 ], [ -119.279869457999908, 50.264418866000014 ], [ -119.279538138999953, 50.264543105000079 ], [ -119.279488238999974, 50.264547304000146 ], [ -119.279164998999974, 50.264759657000091 ], [ -119.279101036999947, 50.264842164000171 ], [ -119.279087361999984, 50.265319104000056 ], [ -119.279086412999973, 50.26603680300007 ], [ -119.27906749499999, 50.266751505000059 ], [ -119.279156390999944, 50.267386202000083 ], [ -119.276958307999948, 50.267383001000105 ], [ -119.275839112999932, 50.267385447000088 ], [ -119.27512976099996, 50.267386979000086 ], [ -119.273775996999959, 50.267391914 ], [ -119.273781195999931, 50.266760272000063 ], [ -119.273783652999938, 50.266042694000127 ], [ -119.273790332999965, 50.265325380000093 ], [ -119.27379562699997, 50.264579077000086 ], [ -119.273800631999976, 50.263768669000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "352494671", "BldgCostT": "191402579", "sL_LossRatio": "0.933382880858514", "sL_AssetLoss": "9189.83", "sL_BldgLoss": "8577.63", "sL_StrLoss": "8356.2", "sL_NStrLoss": "221.43", "sL_ContLoss": "612.2", "geom_point": "0101000020E610000091F50FE03CD15DC05443A873C1214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.265328173999961, 50.262226398000116 ], [ -119.265306500999898, 50.260129594000055 ], [ -119.266444002999918, 50.260127809000018 ], [ -119.266499319999966, 50.260127473000132 ], [ -119.26677965199994, 50.260125774000066 ], [ -119.266915880999989, 50.259750385000082 ], [ -119.267117056999979, 50.259345580000073 ], [ -119.267523204999975, 50.258794413000054 ], [ -119.267657716999935, 50.258534499000106 ], [ -119.267575672, 50.258300158000083 ], [ -119.267391054999933, 50.258073092000124 ], [ -119.266874579999964, 50.25777520800002 ], [ -119.267714441, 50.258007805000084 ], [ -119.267794819999935, 50.258030076000118 ], [ -119.268286497999938, 50.258352618000053 ], [ -119.268447362999936, 50.258560695000035 ], [ -119.268536893999951, 50.258676496000071 ], [ -119.269110288999912, 50.259418147000098 ], [ -119.269932432999951, 50.260481445000018 ], [ -119.27001994699999, 50.260594604000083 ], [ -119.270510295999941, 50.261134709000089 ], [ -119.270612337999978, 50.261253728000071 ], [ -119.270821641999973, 50.261201514000035 ], [ -119.27319343799995, 50.260982547 ], [ -119.27368194899995, 50.260938342000067 ], [ -119.273708944999967, 50.261416593000085 ], [ -119.273709436, 50.261425310000064 ], [ -119.273724686999969, 50.261695021000044 ], [ -119.273725642999977, 50.261711866000034 ], [ -119.273752902999945, 50.262194869000105 ], [ -119.27375436399997, 50.262393576000072 ], [ -119.273800223999956, 50.26246407900009 ], [ -119.273791456999945, 50.262598965000116 ], [ -119.27378575299997, 50.262968782000023 ], [ -119.273800631999976, 50.263768669000029 ], [ -119.27379562699997, 50.264579077000086 ], [ -119.273790332999965, 50.265325380000093 ], [ -119.273783652999938, 50.266042694000127 ], [ -119.273781195999931, 50.266760272000063 ], [ -119.273775996999959, 50.267391914 ], [ -119.272244373999982, 50.267427502000032 ], [ -119.270734486999984, 50.26743999100006 ], [ -119.269816316999979, 50.267406492000141 ], [ -119.269516493999973, 50.26740643000003 ], [ -119.268838282999951, 50.267406298000076 ], [ -119.267736633999959, 50.267408397000089 ], [ -119.266630599999957, 50.267410496000089 ], [ -119.265350305, 50.267423411000074 ], [ -119.265323794, 50.265349808000067 ], [ -119.265337591, 50.263752712000048 ], [ -119.265328173999961, 50.262226398000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "166438706", "BldgCostT": "105089714", "sL_LossRatio": "0.998478805796411", "sL_AssetLoss": "7559.85", "sL_BldgLoss": "7548.35", "sL_StrLoss": "7544.2", "sL_NStrLoss": "4.15", "sL_ContLoss": "11.5", "geom_point": "0101000020E6100000376C8C8413D25DC0ACB085C54D214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.279306872999911, 50.26092231400002 ], [ -119.279294892999985, 50.260604708000095 ], [ -119.277926003999966, 50.260684608000133 ], [ -119.277914225999922, 50.260033849000088 ], [ -119.277911101999976, 50.259315896 ], [ -119.278204808999988, 50.259292296000069 ], [ -119.281471177999919, 50.259264241000089 ], [ -119.282278091999927, 50.259257294000044 ], [ -119.287963980999947, 50.258952081000103 ], [ -119.288000790999945, 50.259957338000099 ], [ -119.285523641999987, 50.260222561000077 ], [ -119.284192044999912, 50.260317437000076 ], [ -119.284166659999968, 50.261123907000105 ], [ -119.284184969999927, 50.261616993000096 ], [ -119.280793083999967, 50.261621694000077 ], [ -119.279695895999964, 50.261623196000137 ], [ -119.279331485999933, 50.26159100100007 ], [ -119.279306872999911, 50.26092231400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230373251", "BldgCostT": "141775001", "sL_LossRatio": "0.997024374802153", "sL_AssetLoss": "6318", "sL_BldgLoss": "6299.2", "sL_StrLoss": "6292.4", "sL_NStrLoss": "6.8", "sL_ContLoss": "18.8", "geom_point": "0101000020E6100000968BEF93FCD15DC061528DA81A214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.281387589999937, 50.257350501000104 ], [ -119.282260913999934, 50.257305303000102 ], [ -119.283235823, 50.257410801000049 ], [ -119.284097624, 50.257395601000084 ], [ -119.285117893999967, 50.257214108000092 ], [ -119.286478111999983, 50.256944892000064 ], [ -119.287630202999978, 50.256663000000117 ], [ -119.288229805, 50.256544302000066 ], [ -119.288190293999946, 50.257446503000082 ], [ -119.288113508999942, 50.257631400000115 ], [ -119.288032429999959, 50.257878124000058 ], [ -119.288002988999935, 50.257967706000045 ], [ -119.287999894999984, 50.258045654000099 ], [ -119.287998979999927, 50.258069018000064 ], [ -119.287963980999947, 50.258952081000103 ], [ -119.282278091999927, 50.259257294000044 ], [ -119.281471177999919, 50.259264241000089 ], [ -119.278204808999988, 50.259292296000069 ], [ -119.277911101999976, 50.259315896 ], [ -119.277914225999922, 50.260033849000088 ], [ -119.277926003999966, 50.260684608000133 ], [ -119.276387764999981, 50.260775797000107 ], [ -119.275070042999943, 50.26085244800003 ], [ -119.273800505999958, 50.260927518000067 ], [ -119.27368194899995, 50.260938342000067 ], [ -119.273682035999954, 50.260606113000094 ], [ -119.273680543999944, 50.260113502000102 ], [ -119.273678446999966, 50.259412139000098 ], [ -119.27380252599994, 50.259417240000069 ], [ -119.274962445999932, 50.259415816000107 ], [ -119.275991302999984, 50.25943352200008 ], [ -119.276208793, 50.259401632000106 ], [ -119.276200488999947, 50.258263592000056 ], [ -119.276198699999924, 50.25811449100015 ], [ -119.278579309999955, 50.257455404000041 ], [ -119.279421801999959, 50.257304598000125 ], [ -119.279833594999914, 50.257292705000083 ], [ -119.281387589999937, 50.257350501000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "302725744", "BldgCostT": "173718091", "sL_LossRatio": "0.978043977590774", "sL_AssetLoss": "10679.53", "sL_BldgLoss": "10445.05", "sL_StrLoss": "10360.2", "sL_NStrLoss": "84.85", "sL_ContLoss": "234.48", "geom_point": "0101000020E6100000C6157BBBA7D15DC02AFDD7FB05244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.274500264999972, 50.294461708000014 ], [ -119.274625600999954, 50.293619675000102 ], [ -119.274521023999952, 50.293613296000032 ], [ -119.27478709199994, 50.291825723000024 ], [ -119.273061797999958, 50.291720460000064 ], [ -119.273594517999967, 50.288141862000032 ], [ -119.276282650999974, 50.28830585800003 ], [ -119.27641043599999, 50.287447024000116 ], [ -119.276817888999943, 50.287471876000041 ], [ -119.277005079999981, 50.286213635000088 ], [ -119.277174262999921, 50.286223954000072 ], [ -119.277268401999947, 50.285591140000022 ], [ -119.277771087999938, 50.285621797000047 ], [ -119.277781985999951, 50.285548530000128 ], [ -119.277763483999962, 50.285547402000063 ], [ -119.277933743999967, 50.284402755000016 ], [ -119.276812422999953, 50.284334365000113 ], [ -119.27685479799996, 50.285222116000078 ], [ -119.276434032999987, 50.28523036100006 ], [ -119.276446898999936, 50.285499956000102 ], [ -119.276026128999888, 50.285508199000084 ], [ -119.276038995999897, 50.285777795000065 ], [ -119.275197451999972, 50.28579427600009 ], [ -119.275210312999945, 50.286063872000057 ], [ -119.274789536999933, 50.28607211100006 ], [ -119.274815253999947, 50.286611301000022 ], [ -119.274394475999941, 50.286619538000053 ], [ -119.274420185999958, 50.28715872900014 ], [ -119.273999401999973, 50.287166966000015 ], [ -119.274012256999967, 50.28743656000011 ], [ -119.273591468999925, 50.287444795000056 ], [ -119.273604322999972, 50.287714392000062 ], [ -119.273183532999923, 50.287722624000018 ], [ -119.273209231999942, 50.288261816000038 ], [ -119.272117677999944, 50.288283166000063 ], [ -119.27257325, 50.287901232000095 ], [ -119.276555355999974, 50.283938140000032 ], [ -119.276899606999947, 50.283519491000114 ], [ -119.277156980999919, 50.283040447000069 ], [ -119.277269065999974, 50.282713255000019 ], [ -119.277389103999951, 50.282569834000057 ], [ -119.27744712400002, 50.282009136000049 ], [ -119.277284874999935, 50.282010066000048 ], [ -119.275800433999962, 50.282018811000071 ], [ -119.27421328199992, 50.282003933000048 ], [ -119.27370275, 50.281999138000103 ], [ -119.271783776999925, 50.281982969000097 ], [ -119.271306834999933, 50.281978949000127 ], [ -119.270527587999965, 50.281972356000054 ], [ -119.269971049, 50.281969957000072 ], [ -119.269964871999903, 50.280780608000015 ], [ -119.269908717999968, 50.280561420000112 ], [ -119.269603611999926, 50.280101316000128 ], [ -119.26953330000002, 50.27979730800012 ], [ -119.269625351999949, 50.27952938500006 ], [ -119.269903547999931, 50.279280035000099 ], [ -119.269920804999941, 50.279246377000113 ], [ -119.269990991999933, 50.279109334000111 ], [ -119.269995349999988, 50.278770695000098 ], [ -119.270007519999965, 50.277814832000075 ], [ -119.266636001000037, 50.277811999000072 ], [ -119.26429071099993, 50.27779958500011 ], [ -119.264286366999968, 50.277251325000144 ], [ -119.264277899999925, 50.276182807000033 ], [ -119.264305398999909, 50.274740003000055 ], [ -119.26430899199994, 50.273674902000032 ], [ -119.266623316, 50.273667393000068 ], [ -119.266618980999979, 50.274736937000121 ], [ -119.267877385999938, 50.274748841000076 ], [ -119.268049976999947, 50.274707011000054 ], [ -119.269063790999923, 50.274707547000098 ], [ -119.26998799899999, 50.27470802400012 ], [ -119.271431143999962, 50.274719404000045 ], [ -119.272513431999982, 50.274721379000034 ], [ -119.272784680999962, 50.274723049000087 ], [ -119.273072538999941, 50.274724825000114 ], [ -119.273438149999961, 50.274729086000079 ], [ -119.27354378699999, 50.274730348000048 ], [ -119.273712779999954, 50.274732314000055 ], [ -119.273853395999978, 50.274734575000132 ], [ -119.273833783999962, 50.273037930000051 ], [ -119.27471031099999, 50.273048991000017 ], [ -119.276114525999972, 50.273037189000092 ], [ -119.277386720999942, 50.273060601000083 ], [ -119.278524101999963, 50.273061404000075 ], [ -119.279753575999933, 50.273067806000043 ], [ -119.281465508999972, 50.273100883000055 ], [ -119.28201774499999, 50.273271337000018 ], [ -119.282562554999942, 50.273439460000098 ], [ -119.281921869999948, 50.274383542000031 ], [ -119.281709775999929, 50.274795812000015 ], [ -119.281647766999981, 50.274909417000075 ], [ -119.281481113999973, 50.275215207000045 ], [ -119.281471717999963, 50.275420484000087 ], [ -119.281733733999957, 50.276144724000041 ], [ -119.281768897999925, 50.276241851000115 ], [ -119.281843453999926, 50.276447926000124 ], [ -119.282433925999939, 50.278080062000058 ], [ -119.28251399199999, 50.278442430000027 ], [ -119.282506714999954, 50.278681231000043 ], [ -119.282407141999968, 50.279000151000062 ], [ -119.282089831999926, 50.279608243000069 ], [ -119.281859226999956, 50.280144937000046 ], [ -119.281791396999964, 50.280696016 ], [ -119.281948045999954, 50.281959272000115 ], [ -119.282178532999964, 50.28381755400008 ], [ -119.282235800999942, 50.284279113000096 ], [ -119.282279201000023, 50.284569998000137 ], [ -119.28235842199993, 50.285100997000015 ], [ -119.282399997999974, 50.285379580000047 ], [ -119.28247380599997, 50.285874308000075 ], [ -119.282479403999943, 50.285961860000079 ], [ -119.282502211999926, 50.286318384000033 ], [ -119.28244379399996, 50.286626290000065 ], [ -119.282291791999938, 50.286875410000064 ], [ -119.282261112999961, 50.286925697000065 ], [ -119.281971820999928, 50.287193391000066 ], [ -119.281477375999955, 50.287526385000085 ], [ -119.280608572999896, 50.288111498000049 ], [ -119.28030800399992, 50.28837838700008 ], [ -119.279950982999978, 50.288826098000079 ], [ -119.279736109999973, 50.289304086000115 ], [ -119.279731544999962, 50.28932781500005 ], [ -119.279643287999988, 50.289785887000058 ], [ -119.279579734999928, 50.290435988000091 ], [ -119.279496235999886, 50.291289737000092 ], [ -119.279475040999969, 50.291506649000048 ], [ -119.279418471999961, 50.292085126000103 ], [ -119.279332100999952, 50.292968186000074 ], [ -119.279303456999955, 50.293159283000058 ], [ -119.27906968799999, 50.294718882000012 ], [ -119.274500264999972, 50.294461708000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3699636", "BldgCostT": "1737079", "sL_LossRatio": "1", "sL_AssetLoss": "46.1", "sL_BldgLoss": "46.1", "sL_StrLoss": "46.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADE3957757D15DC0D2C98C9607254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.271485749999968, 50.288670816000028 ], [ -119.271952586999959, 50.288406945000055 ], [ -119.271972535999979, 50.288825698000075 ], [ -119.271620854999952, 50.288832573000072 ], [ -119.271468009999978, 50.289859067000094 ], [ -119.27002894, 50.289771222000091 ], [ -119.270061928999951, 50.289170716000093 ], [ -119.27084527099997, 50.288947683000096 ], [ -119.271485749999968, 50.288670816000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "500067174", "BldgCostT": "305119019", "sL_LossRatio": "0.969800001970101", "sL_AssetLoss": "12182.12", "sL_BldgLoss": "11814.22", "sL_StrLoss": "11681", "sL_NStrLoss": "133.22", "sL_ContLoss": "367.9", "geom_point": "0101000020E610000082180A3348D15DC01DD0C95ADC224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.266631982999968, 50.272444623000062 ], [ -119.266641911999926, 50.271479241000108 ], [ -119.265415391999952, 50.271480995000076 ], [ -119.265340922999954, 50.270135805000045 ], [ -119.266624671999978, 50.270146495000034 ], [ -119.267838085000037, 50.2701384920001 ], [ -119.26863461, 50.270137507000086 ], [ -119.26896600399999, 50.270136089000047 ], [ -119.269967023999968, 50.270134074000055 ], [ -119.271144632999977, 50.270129250000075 ], [ -119.272476678999936, 50.270128420000056 ], [ -119.272572879, 50.27012618100008 ], [ -119.273714892000015, 50.270123660000074 ], [ -119.273846107999987, 50.270122664000063 ], [ -119.273828731999956, 50.272437275000087 ], [ -119.273833783999962, 50.273037930000051 ], [ -119.273853395999978, 50.274734575000132 ], [ -119.273712779999954, 50.274732314000055 ], [ -119.27354378699999, 50.274730348000048 ], [ -119.273438149999961, 50.274729086000079 ], [ -119.273072538999941, 50.274724825000114 ], [ -119.272784680999962, 50.274723049000087 ], [ -119.272513431999982, 50.274721379000034 ], [ -119.271431143999962, 50.274719404000045 ], [ -119.26998799899999, 50.27470802400012 ], [ -119.269063790999923, 50.274707547000098 ], [ -119.268049976999947, 50.274707011000054 ], [ -119.267877385999938, 50.274748841000076 ], [ -119.266618980999979, 50.274736937000121 ], [ -119.266623316, 50.273667393000068 ], [ -119.266626776999942, 50.273338660000029 ], [ -119.266633739999975, 50.272688484000049 ], [ -119.266631982999968, 50.272444623000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021049", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126525784", "BldgCostT": "77799093", "sL_LossRatio": "0.993727723359588", "sL_AssetLoss": "7754.76", "sL_BldgLoss": "7706.12", "sL_StrLoss": "7688.6", "sL_NStrLoss": "17.52", "sL_ContLoss": "48.64", "geom_point": "0101000020E61000008CE5543AF1D05DC051767E7A81224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26425000099999, 50.271486714000112 ], [ -119.26423809399995, 50.270849296000158 ], [ -119.264268195999989, 50.270146111000081 ], [ -119.262340111999933, 50.270145503000037 ], [ -119.262417218999971, 50.27010149500007 ], [ -119.262456001999965, 50.270029805000085 ], [ -119.262426815999916, 50.269545090000086 ], [ -119.262422880999921, 50.268833395000144 ], [ -119.262417306999964, 50.268114402000066 ], [ -119.262419691000019, 50.267436494000052 ], [ -119.263142600999942, 50.267437393000129 ], [ -119.264267795999928, 50.267434005000048 ], [ -119.265350305, 50.267423411000074 ], [ -119.266630599999957, 50.267410496000089 ], [ -119.266619286, 50.268110398000054 ], [ -119.266634308999926, 50.268833502000106 ], [ -119.266637197999984, 50.269542403000081 ], [ -119.266624671999978, 50.270146495000034 ], [ -119.265340922999954, 50.270135805000045 ], [ -119.265415391999952, 50.271480995000076 ], [ -119.266641911999926, 50.271479241000108 ], [ -119.266631982999968, 50.272444623000062 ], [ -119.266633739999975, 50.272688484000049 ], [ -119.265452695999912, 50.272677686000058 ], [ -119.264868505999985, 50.272680713000042 ], [ -119.264267789999948, 50.272683804000081 ], [ -119.264255994999957, 50.271807400000114 ], [ -119.26425000099999, 50.271486714000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "312661063", "BldgCostT": "192157793", "sL_LossRatio": "0.992420355040983", "sL_AssetLoss": "13290.86", "sL_BldgLoss": "13190.12", "sL_StrLoss": "13153.7", "sL_NStrLoss": "36.42", "sL_ContLoss": "100.74", "geom_point": "0101000020E610000029BD052BB1D05DC001F9D00DE6214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262341402999979, 50.267044491000021 ], [ -119.262332208999965, 50.26535649300007 ], [ -119.260735486999963, 50.265365400000114 ], [ -119.259400581999941, 50.265357787000021 ], [ -119.258723610999979, 50.265361492000075 ], [ -119.258046600999975, 50.265365202000062 ], [ -119.256640100999945, 50.265364917000078 ], [ -119.255304291999977, 50.26535351100005 ], [ -119.2553154, 50.264231090000074 ], [ -119.255300296999962, 50.263841092000106 ], [ -119.255296914, 50.263296502000067 ], [ -119.255795114999927, 50.263263802000026 ], [ -119.256298305, 50.263168202000038 ], [ -119.257105321999987, 50.262935900000066 ], [ -119.257527608, 50.26286329200007 ], [ -119.25796132, 50.262818500000023 ], [ -119.25856480399996, 50.262853698000043 ], [ -119.25904568199995, 50.262946299000092 ], [ -119.259580679999956, 50.263109894000088 ], [ -119.260079386999962, 50.263196389000051 ], [ -119.260748302999943, 50.263199411000102 ], [ -119.26076648899999, 50.263805411000163 ], [ -119.261066436999968, 50.26380182 ], [ -119.262284218999923, 50.263787203000049 ], [ -119.263086246999976, 50.263776681000124 ], [ -119.26425999699994, 50.263768108000171 ], [ -119.264242317999958, 50.264000812000099 ], [ -119.264616121999907, 50.263761903000074 ], [ -119.265337591, 50.263752712000048 ], [ -119.265323794, 50.265349808000067 ], [ -119.265350305, 50.267423411000074 ], [ -119.264267795999928, 50.267434005000048 ], [ -119.263142600999942, 50.267437393000129 ], [ -119.262419691000019, 50.267436494000052 ], [ -119.261955203999946, 50.267432502000062 ], [ -119.262245581999935, 50.267233606000048 ], [ -119.262341402999979, 50.267044491000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "203645000", "BldgCostT": "138260000", "sL_LossRatio": "1", "sL_AssetLoss": "10097", "sL_BldgLoss": "10097", "sL_StrLoss": "10097", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000052A7B881ADD05DC0DA2049FF81214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26076648899999, 50.263805411000163 ], [ -119.260748302999943, 50.263199411000102 ], [ -119.260079386999962, 50.263196389000051 ], [ -119.259580679999956, 50.263109894000088 ], [ -119.25904568199995, 50.262946299000092 ], [ -119.25856480399996, 50.262853698000043 ], [ -119.25796132, 50.262818500000023 ], [ -119.257527608, 50.26286329200007 ], [ -119.257105321999987, 50.262935900000066 ], [ -119.256298305, 50.263168202000038 ], [ -119.255795114999927, 50.263263802000026 ], [ -119.255296914, 50.263296502000067 ], [ -119.255314992999971, 50.262259309000086 ], [ -119.255283497999969, 50.261289509000051 ], [ -119.255274683999957, 50.260138805000096 ], [ -119.257506106999983, 50.260134597000061 ], [ -119.258668077999957, 50.260128904000091 ], [ -119.260772695999933, 50.260124109000039 ], [ -119.262240613999964, 50.260127208000092 ], [ -119.263114845999922, 50.260122889000094 ], [ -119.264204307999947, 50.260121789000095 ], [ -119.265306500999898, 50.260129594000055 ], [ -119.265328173999961, 50.262226398000116 ], [ -119.265337591, 50.263752712000048 ], [ -119.264616121999907, 50.263761903000074 ], [ -119.264242317999958, 50.264000812000099 ], [ -119.26425999699994, 50.263768108000171 ], [ -119.263086246999976, 50.263776681000124 ], [ -119.262284218999923, 50.263787203000049 ], [ -119.261066436999968, 50.26380182 ], [ -119.26076648899999, 50.263805411000163 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "360615173", "BldgCostT": "241262103", "sL_LossRatio": "0.993102657283767", "sL_AssetLoss": "12729.54", "sL_BldgLoss": "12641.74", "sL_StrLoss": "12610", "sL_NStrLoss": "31.74", "sL_ContLoss": "87.8", "geom_point": "0101000020E61000001509F171BBD05DC0D46F0D09EB204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262461411999965, 50.259004100000013 ], [ -119.262451701000018, 50.2578876070001 ], [ -119.260430401999926, 50.257882187000099 ], [ -119.259140100999957, 50.257888995000037 ], [ -119.258713022999956, 50.257889993000042 ], [ -119.258689897999943, 50.257061509000025 ], [ -119.256388478999938, 50.257064200000073 ], [ -119.256371300999973, 50.25632920200011 ], [ -119.255282011999967, 50.256330194000057 ], [ -119.255281130999933, 50.256266585000134 ], [ -119.255266014999975, 50.255123920000102 ], [ -119.255627807999986, 50.254965514000105 ], [ -119.256091027999943, 50.25465940800008 ], [ -119.256102962999961, 50.254651520000039 ], [ -119.256321580999952, 50.254555669000034 ], [ -119.25656869699999, 50.254485927000054 ], [ -119.256830844999939, 50.254456826000116 ], [ -119.257613360999969, 50.254491204000047 ], [ -119.257894456999963, 50.254448797000059 ], [ -119.258366785999939, 50.25425742200008 ], [ -119.259385843999951, 50.253848516000168 ], [ -119.259850467999968, 50.25437081200004 ], [ -119.261222259999954, 50.255547158000091 ], [ -119.261765137999959, 50.255922555000012 ], [ -119.262194721999947, 50.256179046000071 ], [ -119.262851513999962, 50.256509016000109 ], [ -119.263758484999968, 50.256871448000055 ], [ -119.265092230999969, 50.257282529000086 ], [ -119.266874579999964, 50.25777520800002 ], [ -119.267391054999933, 50.258073092000124 ], [ -119.267575672, 50.258300158000083 ], [ -119.267657716999935, 50.258534499000106 ], [ -119.267523204999975, 50.258794413000054 ], [ -119.267117056999979, 50.259345580000073 ], [ -119.266915880999989, 50.259750385000082 ], [ -119.26677965199994, 50.260125774000066 ], [ -119.266499319999966, 50.260127473000132 ], [ -119.266444002999918, 50.260127809000018 ], [ -119.265306500999898, 50.260129594000055 ], [ -119.264204307999947, 50.260121789000095 ], [ -119.263114845999922, 50.260122889000094 ], [ -119.262240613999964, 50.260127208000092 ], [ -119.262277303999937, 50.259294314000094 ], [ -119.262357790999971, 50.25915121 ], [ -119.262461411999965, 50.259004100000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "122045083", "BldgCostT": "82018333", "sL_LossRatio": "1", "sL_AssetLoss": "9318", "sL_BldgLoss": "9318", "sL_StrLoss": "9318", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B97A08E60D05DC0991372AD0F214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.251087333999976, 50.259427934000023 ], [ -119.251058474999965, 50.256999914000112 ], [ -119.251057680999978, 50.256933695000086 ], [ -119.251057116999931, 50.256815300000014 ], [ -119.251061472999965, 50.256237791000117 ], [ -119.252168014999938, 50.255857786000114 ], [ -119.253520390999924, 50.255585815000082 ], [ -119.253658971999982, 50.255549126000055 ], [ -119.255266014999975, 50.255123920000102 ], [ -119.255281130999933, 50.256266585000134 ], [ -119.255282011999967, 50.256330194000057 ], [ -119.256371300999973, 50.25632920200011 ], [ -119.256388478999938, 50.257064200000073 ], [ -119.258689897999943, 50.257061509000025 ], [ -119.258713022999956, 50.257889993000042 ], [ -119.259140100999957, 50.257888995000037 ], [ -119.260430401999926, 50.257882187000099 ], [ -119.262451701000018, 50.2578876070001 ], [ -119.262461411999965, 50.259004100000013 ], [ -119.262357790999971, 50.25915121 ], [ -119.262277303999937, 50.259294314000094 ], [ -119.262240613999964, 50.260127208000092 ], [ -119.260772695999933, 50.260124109000039 ], [ -119.258668077999957, 50.260128904000091 ], [ -119.257506106999983, 50.260134597000061 ], [ -119.255274683999957, 50.260138805000096 ], [ -119.25393760899999, 50.260147200000084 ], [ -119.252544277999945, 50.260134997000122 ], [ -119.251274697, 50.260124903000104 ], [ -119.251094998999946, 50.260073303000091 ], [ -119.251093731999958, 50.259967096000061 ], [ -119.251093546999968, 50.259949032000073 ], [ -119.251087333999976, 50.259427934000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3364000", "BldgCostT": "2320000", "sL_LossRatio": "1", "sL_AssetLoss": "357", "sL_BldgLoss": "357", "sL_StrLoss": "357", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C61ACB4714C85DC0913FBDBEFB2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.123711179999972, 50.372907151000071 ], [ -119.12930982, 50.373255602000079 ], [ -119.128764684, 50.376833111000096 ], [ -119.123165605999986, 50.376484633000103 ], [ -119.123711179999972, 50.372907151000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "277", "sL_BldgLoss": "277", "sL_StrLoss": "277", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000093CFC8733FCD5DC065703192FF2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.204913584999957, 50.335529495000024 ], [ -119.204894091999961, 50.33542037900002 ], [ -119.204878303999948, 50.335332297000043 ], [ -119.205432709999968, 50.334509709000059 ], [ -119.20570781, 50.333975901000017 ], [ -119.20571438599994, 50.333951880000036 ], [ -119.20584948600002, 50.333456508000026 ], [ -119.20581971699994, 50.332651208000051 ], [ -119.205584008999935, 50.331610191000081 ], [ -119.205626086999942, 50.331330411000053 ], [ -119.205638891999968, 50.331245214000084 ], [ -119.205717194999963, 50.331032723000092 ], [ -119.208264148999945, 50.331189527000078 ], [ -119.207725758999942, 50.334767612000064 ], [ -119.207448032999963, 50.334750516000028 ], [ -119.207316813999938, 50.335622459000099 ], [ -119.209871600999946, 50.335779691000049 ], [ -119.209333283999968, 50.339357764000091 ], [ -119.206241083999913, 50.339167449000065 ], [ -119.20373822399992, 50.339013342000037 ], [ -119.203955986999944, 50.337567182000043 ], [ -119.204036503999973, 50.337566236000093 ], [ -119.206260422999918, 50.337549248000144 ], [ -119.20631201499999, 50.337483509000073 ], [ -119.206272679999984, 50.337328302000095 ], [ -119.206208383999979, 50.33707450200005 ], [ -119.205956288999985, 50.336808016000063 ], [ -119.205658408999966, 50.336554908000082 ], [ -119.20552935399995, 50.336345663000017 ], [ -119.205516605999961, 50.336325012000039 ], [ -119.205317191999882, 50.336008484000047 ], [ -119.205045701999964, 50.335729888000124 ], [ -119.204923911999956, 50.335545151000098 ], [ -119.204913584999957, 50.335529495000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021056", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "216", "sL_BldgLoss": "216", "sL_StrLoss": "216", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F703603492C55DC0E3B7D738D12E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.084524189, 50.36379603400006 ], [ -119.090121397999923, 50.364146470000037 ], [ -119.089573272999971, 50.367723826000073 ], [ -119.083975626, 50.367373364000052 ], [ -119.084524189, 50.36379603400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "140.1", "sL_BldgLoss": "140.1", "sL_StrLoss": "140.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3A9A1AA95C45DC06290AADCFA2D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.07251222, 50.360823698000075 ], [ -119.072500473999952, 50.360554069000088 ], [ -119.071657496999975, 50.36056909400002 ], [ -119.071645755999953, 50.360299466000122 ], [ -119.067852367999976, 50.360367 ], [ -119.067817211999966, 50.359558114000052 ], [ -119.068238693, 50.359550616000021 ], [ -119.068226971999962, 50.359280987000027 ], [ -119.071598793999982, 50.359220954000101 ], [ -119.071587052999931, 50.358951325000078 ], [ -119.070322628999975, 50.358973849000058 ], [ -119.07031089599991, 50.358704220000135 ], [ -119.06988942299995, 50.358711726000095 ], [ -119.069877692999938, 50.358442096000047 ], [ -119.069456222999975, 50.358449600000057 ], [ -119.069421039999895, 50.357640714000055 ], [ -119.071528356999977, 50.357603183000052 ], [ -119.071516617999933, 50.357333554000078 ], [ -119.072780998999988, 50.357311019000065 ], [ -119.072792743999926, 50.357580647000127 ], [ -119.07321420699995, 50.357573131000059 ], [ -119.073237703999894, 50.358112387000126 ], [ -119.073659171999964, 50.358104871000137 ], [ -119.073694425999975, 50.358913754000071 ], [ -119.07411589900002, 50.358906235000063 ], [ -119.074127654999927, 50.359175863000083 ], [ -119.07454912899999, 50.359168343000071 ], [ -119.074607914999987, 50.360516481000097 ], [ -119.074186426999987, 50.360524003000087 ], [ -119.074198183999982, 50.360793630000053 ], [ -119.07251222, 50.360823698000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "114.2", "sL_BldgLoss": "114.2", "sL_StrLoss": "114.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BCC24850B8CD5DC06BF769E40C294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.210762739999936, 50.321820172000123 ], [ -119.210834775999956, 50.321341096000047 ], [ -119.211521421999961, 50.321309283000105 ], [ -119.211602323999941, 50.321648298000085 ], [ -119.21204963299999, 50.321594736000087 ], [ -119.212262409999937, 50.319744353000083 ], [ -119.213254512, 50.319660384000066 ], [ -119.214589673999939, 50.319105219000093 ], [ -119.216806347000016, 50.319164804000089 ], [ -119.216355729999918, 50.322164246000064 ], [ -119.214787699999974, 50.322067812000121 ], [ -119.210762739999936, 50.321820172000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000055711DC2FCC85DC0D3D457FC4B2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.135236371999952, 50.330560864000113 ], [ -119.143872992999917, 50.329952176000099 ], [ -119.143769555999924, 50.330633183000081 ], [ -119.140863431999961, 50.330452549 ], [ -119.140794441999958, 50.330906549000119 ], [ -119.135236371999952, 50.330560864000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021060", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "139", "sL_BldgLoss": "139", "sL_StrLoss": "139", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A4454B583ACA5DC0D3842F44352A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.156273100999954, 50.330575644000049 ], [ -119.156338488999964, 50.330144359 ], [ -119.15546900599999, 50.33009042300003 ], [ -119.155601900999955, 50.329213952000067 ], [ -119.154927221999984, 50.329172095000054 ], [ -119.161720056999968, 50.328692172000089 ], [ -119.162849812, 50.329233901000123 ], [ -119.163608027999913, 50.328558689000062 ], [ -119.16375465499999, 50.328548297000061 ], [ -119.164073648999988, 50.328658581000113 ], [ -119.163859494999969, 50.330072725000072 ], [ -119.162858027999917, 50.330010669000089 ], [ -119.162781872999943, 50.330513449000065 ], [ -119.161936653999987, 50.330461068000062 ], [ -119.161866757, 50.330922469000072 ], [ -119.156273100999954, 50.330575644000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434584", "BldgCostT": "3058334", "sL_LossRatio": "1", "sL_AssetLoss": "273", "sL_BldgLoss": "273", "sL_StrLoss": "273", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D7B340FBFC65DC0C7B3910C352E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.102838972, 50.363358695000045 ], [ -119.103311179999963, 50.36027056300005 ], [ -119.102859113999969, 50.360278742000091 ], [ -119.102823360999963, 50.359469873000137 ], [ -119.103244831000012, 50.35946224900011 ], [ -119.103232911999939, 50.359192625000098 ], [ -119.103654379999924, 50.359185 ], [ -119.103642457999939, 50.358915378000042 ], [ -119.104063923999917, 50.358907750000064 ], [ -119.104040076999951, 50.358368504000083 ], [ -119.102354233, 50.358399003000059 ], [ -119.102342318999916, 50.358129380000072 ], [ -119.101499399999966, 50.358144622000054 ], [ -119.101463672999984, 50.357335751000093 ], [ -119.10314948199999, 50.357305265 ], [ -119.103161399999948, 50.357574888000087 ], [ -119.105268668999969, 50.357536746000051 ], [ -119.105364115999976, 50.35969372600006 ], [ -119.104942641999941, 50.359701358000052 ], [ -119.104950500999962, 50.359878976000118 ], [ -119.108982852999972, 50.360130738000031 ], [ -119.108436268999981, 50.363708206000048 ], [ -119.102838972, 50.363358695000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021062", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24931501", "BldgCostT": "15720001", "sL_LossRatio": "1", "sL_AssetLoss": "964.3", "sL_BldgLoss": "964.3", "sL_StrLoss": "964.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000052AFD7CBE1C35DC0813BD4DFE02D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.057374459999963, 50.363218934000052 ], [ -119.057548564999962, 50.362087877000086 ], [ -119.053678321999925, 50.361844435000094 ], [ -119.054229211999953, 50.358267230000052 ], [ -119.05487683799997, 50.358307976000077 ], [ -119.055021927999988, 50.357365646000069 ], [ -119.055459782999904, 50.357393193000078 ], [ -119.056265002999908, 50.357443845000041 ], [ -119.05632658899998, 50.357043774000054 ], [ -119.057165610999959, 50.357096548000115 ], [ -119.057128572999943, 50.356239855000105 ], [ -119.05755002699999, 50.356232396000031 ], [ -119.057526709999962, 50.355693135000124 ], [ -119.058369608999925, 50.355678213000054 ], [ -119.058334617999918, 50.354869322000148 ], [ -119.057913176999989, 50.354876783000094 ], [ -119.057831553999975, 50.352989366000067 ], [ -119.059517254999932, 50.352959515000073 ], [ -119.05950558699999, 50.352689885000125 ], [ -119.059927008999935, 50.352682418000057 ], [ -119.059915336999936, 50.352412787000084 ], [ -119.060336756999931, 50.352405319000098 ], [ -119.060255046999941, 50.350517905000068 ], [ -119.061973527999925, 50.350487437000019 ], [ -119.062362061999977, 50.350480545000046 ], [ -119.062373744999945, 50.350750175000073 ], [ -119.062795149999928, 50.350742698000062 ], [ -119.062806836999982, 50.351012327000042 ], [ -119.063228242999912, 50.351004849000077 ], [ -119.063255028999933, 50.351622666000083 ], [ -119.063286691999934, 50.3523530000001 ], [ -119.062865272999915, 50.35236047800003 ], [ -119.06288865, 50.352899739000044 ], [ -119.062467225999967, 50.352907216000062 ], [ -119.062478910999971, 50.353176846000068 ], [ -119.062057485999972, 50.353184322000118 ], [ -119.062069167999937, 50.353453952000088 ], [ -119.061647738999966, 50.353461427000092 ], [ -119.061802823999983, 50.357040712000057 ], [ -119.064340448999957, 50.357200177000067 ], [ -119.064340065999929, 50.357191373000092 ], [ -119.06804267099993, 50.357125567000033 ], [ -119.068133208999896, 50.357123956000102 ], [ -119.068144929999931, 50.357393585000061 ], [ -119.06898785199995, 50.357378587000078 ], [ -119.069046477999962, 50.358726730000065 ], [ -119.068625002999951, 50.358734231000085 ], [ -119.068636725999923, 50.359003859000055 ], [ -119.067793773999938, 50.359018856000013 ], [ -119.067805492, 50.359288484000054 ], [ -119.067384014999988, 50.359295981000052 ], [ -119.067395729999973, 50.359565610000118 ], [ -119.066355702999928, 50.359584100000042 ], [ -119.066124685999938, 50.361086876000037 ], [ -119.06492765199998, 50.361011688000097 ], [ -119.06496046099997, 50.361767588000063 ], [ -119.064582786999935, 50.361774296000135 ], [ -119.064569360999926, 50.361861610000062 ], [ -119.06454264199999, 50.361859931 ], [ -119.064550661999959, 50.362044703000045 ], [ -119.064234237999969, 50.362050322000066 ], [ -119.064130990999942, 50.362721718000088 ], [ -119.063707906999952, 50.362695139000053 ], [ -119.063673981999969, 50.362915728000068 ], [ -119.063343472999946, 50.362894963 ], [ -119.063273788999979, 50.363348036000062 ], [ -119.06300820899996, 50.363331350000131 ], [ -119.06297138799998, 50.36357074300011 ], [ -119.057374459999963, 50.363218934000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "134.7", "sL_BldgLoss": "134.7", "sL_StrLoss": "134.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A749428517C75DC0A3D0CB8BC02C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.109008618999894, 50.34766779200006 ], [ -119.113292872999935, 50.347935195000019 ], [ -119.112746774999977, 50.351512738000103 ], [ -119.10776670499996, 50.351201891000088 ], [ -119.107928306999952, 50.351057701000073 ], [ -119.10820442, 50.350713499000051 ], [ -119.108343513999941, 50.350540086000123 ], [ -119.108625061999959, 50.349632351000089 ], [ -119.108961101999938, 50.348548899000072 ], [ -119.109008618999894, 50.34766779200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021065", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13422553", "BldgCostT": "8178746", "sL_LossRatio": "1", "sL_AssetLoss": "761.1", "sL_BldgLoss": "761.1", "sL_StrLoss": "761.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE560184F0C35DC0382394081E2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.058017131, 50.371349236000057 ], [ -119.058475610999949, 50.368370927000058 ], [ -119.056246878999914, 50.368230793000059 ], [ -119.056797644999961, 50.364653605000044 ], [ -119.062394744999949, 50.365005441000086 ], [ -119.062280678999983, 50.365746944000122 ], [ -119.066596263999955, 50.366018027000045 ], [ -119.066428611000021, 50.367108492000071 ], [ -119.06686543, 50.36713592100007 ], [ -119.066315430999978, 50.370713149000032 ], [ -119.06379140699994, 50.370554634000015 ], [ -119.063615068999965, 50.371701007000055 ], [ -119.058017131, 50.371349236000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9594250", "BldgCostT": "6145000", "sL_LossRatio": "1", "sL_AssetLoss": "437.3", "sL_BldgLoss": "437.3", "sL_StrLoss": "437.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE681BC13EC95DC0208B23C536384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.14469201299994, 50.441003036000033 ], [ -119.144760207999965, 50.440555162000059 ], [ -119.14079089399992, 50.440309093000032 ], [ -119.14084833099993, 50.43993207700008 ], [ -119.139719386999943, 50.439862064000124 ], [ -119.14026441499999, 50.436284784000065 ], [ -119.145871036999935, 50.436632371000023 ], [ -119.145813645999951, 50.437009391000046 ], [ -119.146942528999944, 50.437079342000096 ], [ -119.146728851999953, 50.438483221000133 ], [ -119.147840246999976, 50.438552077000111 ], [ -119.147937889999966, 50.43791046200004 ], [ -119.148982096999958, 50.437975146000134 ], [ -119.14898802499998, 50.438174024000041 ], [ -119.149024429999955, 50.439377923000016 ], [ -119.149043020999926, 50.440013167000124 ], [ -119.149061608999915, 50.440634501000019 ], [ -119.149091335999941, 50.441757676000066 ], [ -119.146672211999913, 50.441807026000056 ], [ -119.141560535999986, 50.441996936000074 ], [ -119.141617554999925, 50.441622628000083 ], [ -119.141969707999962, 50.441644461000088 ], [ -119.141975042999917, 50.4416094360001 ], [ -119.142056506, 50.441614487000024 ], [ -119.1421546699999, 50.440970039000071 ], [ -119.143941442999918, 50.44108079900014 ], [ -119.143960191999909, 50.440957679000064 ], [ -119.14469201299994, 50.441003036000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021067", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18535917", "BldgCostT": "12311667", "sL_LossRatio": "1", "sL_AssetLoss": "1094", "sL_BldgLoss": "1094", "sL_StrLoss": "1094", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000493757071FCD5DC056C65CA5FD284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.206621218, 50.327363110000121 ], [ -119.206457412999939, 50.327007193000021 ], [ -119.206185304999948, 50.326724203 ], [ -119.205694503999936, 50.326346291000092 ], [ -119.20525630099999, 50.326098187000063 ], [ -119.205066478999953, 50.326084406000085 ], [ -119.204274794999918, 50.326026888000058 ], [ -119.203972637999954, 50.325980419000103 ], [ -119.203902393999911, 50.325969597000068 ], [ -119.20347469699999, 50.325810606000118 ], [ -119.20365389599999, 50.325276301000081 ], [ -119.203717386999969, 50.324761098000081 ], [ -119.203672555999944, 50.324335152000089 ], [ -119.203578608999948, 50.323442583000059 ], [ -119.203463187999887, 50.32293439400005 ], [ -119.203234192999929, 50.322252199000062 ], [ -119.203229797999882, 50.322236026000077 ], [ -119.202940306999949, 50.321169974000021 ], [ -119.202843730999973, 50.320814222000088 ], [ -119.202793726999957, 50.320630078000065 ], [ -119.202758525999954, 50.320500309000053 ], [ -119.202555483999902, 50.320056233000088 ], [ -119.202550392, 50.320045092000072 ], [ -119.202580558999927, 50.319609472000138 ], [ -119.20260930399999, 50.319194601000085 ], [ -119.20254901899996, 50.319011517000071 ], [ -119.202432104999943, 50.318656399000062 ], [ -119.202353802999966, 50.318563928000053 ], [ -119.202096694999909, 50.318260203000094 ], [ -119.201684718999942, 50.317978388000085 ], [ -119.200781492999937, 50.317501114000024 ], [ -119.20050394499999, 50.317233857000112 ], [ -119.199588311, 50.316352095000127 ], [ -119.199534401999927, 50.316300195000061 ], [ -119.199383594, 50.316224118000029 ], [ -119.199185515999915, 50.316181189000162 ], [ -119.198745995999943, 50.316147806000103 ], [ -119.19857060899993, 50.316066504000084 ], [ -119.199600693999969, 50.314801112000076 ], [ -119.199734979999974, 50.314452701000064 ], [ -119.19979841299994, 50.314135589000024 ], [ -119.199820635999941, 50.314024637000053 ], [ -119.199864571999925, 50.313832696000084 ], [ -119.199870140999906, 50.313808320000085 ], [ -119.199875877999915, 50.313550614000093 ], [ -119.199884082999944, 50.313181679000081 ], [ -119.199930930999955, 50.312882409000061 ], [ -119.199957587999933, 50.312712234000145 ], [ -119.199997684, 50.312611513000057 ], [ -119.200008628999953, 50.312583996000022 ], [ -119.200107356, 50.312335970000085 ], [ -119.200301959999962, 50.312074400000029 ], [ -119.200390819999924, 50.3120023540001 ], [ -119.200578332999939, 50.311850388000074 ], [ -119.200898589999952, 50.311691349000029 ], [ -119.201172692999961, 50.311604430000067 ], [ -119.203413704999917, 50.311069229000076 ], [ -119.203597616999943, 50.311025298000104 ], [ -119.204798809999929, 50.310852841000035 ], [ -119.204980987999988, 50.310805129000059 ], [ -119.205161592999929, 50.310757820000092 ], [ -119.205575300999982, 50.310596428000039 ], [ -119.20697166399999, 50.309867191000073 ], [ -119.207715406999952, 50.309452584000063 ], [ -119.208222029999916, 50.309104575000063 ], [ -119.208000786999904, 50.309497200000052 ], [ -119.20789, 50.309671017000049 ], [ -119.207259808999979, 50.31013679000008 ], [ -119.206853199999927, 50.310532492000021 ], [ -119.206642130999938, 50.310863234000053 ], [ -119.205483971999939, 50.310955335000109 ], [ -119.205330217999972, 50.314130302000095 ], [ -119.206530800999957, 50.314908508000116 ], [ -119.207331205999964, 50.315421904000083 ], [ -119.207724298999892, 50.316147601000097 ], [ -119.20553730200001, 50.316173491000029 ], [ -119.205619714999955, 50.31868086 ], [ -119.205714941999958, 50.321578165000048 ], [ -119.206577780999922, 50.321538229000055 ], [ -119.20649729799996, 50.322073131000138 ], [ -119.207151871999955, 50.322113439000049 ], [ -119.206948151999967, 50.323467477000108 ], [ -119.208577619999943, 50.323567802000071 ], [ -119.208492998999972, 50.324130356000126 ], [ -119.209057244999912, 50.324165091000154 ], [ -119.208880545999989, 50.325339810000045 ], [ -119.210808068999924, 50.325458444000084 ], [ -119.210530109999965, 50.327306750000069 ], [ -119.210755995999932, 50.32732065000009 ], [ -119.210217850999925, 50.330898765000093 ], [ -119.205995012999949, 50.330638824000069 ], [ -119.20604568099999, 50.330568266000057 ], [ -119.206199292999941, 50.33035429100002 ], [ -119.20635597899999, 50.33025109600004 ], [ -119.206450888999939, 50.330117016000052 ], [ -119.206674718999949, 50.329521407000129 ], [ -119.206735700999957, 50.329014504000057 ], [ -119.206787516999952, 50.328584005000017 ], [ -119.206737103999956, 50.32786859600008 ], [ -119.206621218, 50.327363110000121 ] ], [ [ -119.2052477189999, 50.317483275000079 ], [ -119.205398015999961, 50.316484438000032 ], [ -119.205001102999915, 50.31645998700003 ], [ -119.204967328999942, 50.316684421000076 ], [ -119.203727660999945, 50.316608044000077 ], [ -119.203611106, 50.317382445000071 ], [ -119.2052477189999, 50.317483275000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021068", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "177.2", "sL_BldgLoss": "177.2", "sL_StrLoss": "177.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000646C530243CE5DC0F81D6039842A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.223017716999962, 50.330365501000067 ], [ -119.225905573999981, 50.330542837000046 ], [ -119.225368585999917, 50.334121011000065 ], [ -119.220834624999938, 50.333842559000068 ], [ -119.219774051999963, 50.333777397000105 ], [ -119.220311476999939, 50.330199248000021 ], [ -119.223017716999962, 50.330365501000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39293167", "BldgCostT": "25866667", "sL_LossRatio": "0.999357852346904", "sL_AssetLoss": "2055.602", "sL_BldgLoss": "2054.282", "sL_StrLoss": "2053.8", "sL_NStrLoss": "0.482", "sL_ContLoss": "1.32", "geom_point": "0101000020E6100000E65EB39ED2CE5DC0A16706339E294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.232392233000013, 50.34024971100007 ], [ -119.231315366999979, 50.338966413000087 ], [ -119.234619705999975, 50.339169027000068 ], [ -119.234911571999959, 50.337221829000114 ], [ -119.233338725999957, 50.337125398000111 ], [ -119.233307809999957, 50.337331622000114 ], [ -119.230795442999977, 50.337177542000056 ], [ -119.227712817999944, 50.336988410000053 ], [ -119.228249653999967, 50.333410238000049 ], [ -119.229854259999954, 50.333508699000028 ], [ -119.229885188999972, 50.333302476000071 ], [ -119.230684922999941, 50.333351540000073 ], [ -119.230739591999935, 50.332986986000051 ], [ -119.227107382999932, 50.332764102000105 ], [ -119.227644216999963, 50.32918591400005 ], [ -119.231763682999926, 50.329438689000078 ], [ -119.231782631, 50.329312309000095 ], [ -119.23232533099997, 50.329345598000046 ], [ -119.232378566999984, 50.328990484000037 ], [ -119.232155274999982, 50.328994772000094 ], [ -119.232167911999909, 50.329264373000086 ], [ -119.230483237999977, 50.329296717000055 ], [ -119.230432731999898, 50.328218311000072 ], [ -119.2316962099999, 50.328194056000029 ], [ -119.23168519499994, 50.327959009000075 ], [ -119.230770842, 50.327902914000092 ], [ -119.231008427999924, 50.32631835300004 ], [ -119.2307655, 50.326323016000103 ], [ -119.230778126999923, 50.326592617000102 ], [ -119.22914142099998, 50.326624021000107 ], [ -119.22909354599993, 50.326624939000126 ], [ -119.229055694999971, 50.325816133000096 ], [ -119.229897970999929, 50.325799976000098 ], [ -119.229885348999915, 50.325530374000088 ], [ -119.230306483999968, 50.325522293000084 ], [ -119.230257681999944, 50.324480017000091 ], [ -119.230050448999975, 50.324467301000041 ], [ -119.230053376999976, 50.324447774000085 ], [ -119.229834862999923, 50.324451967000101 ], [ -119.229822242999902, 50.324182364000087 ], [ -119.229401118999931, 50.324190443000106 ], [ -119.229375883999964, 50.323651240000153 ], [ -119.22895476599993, 50.323659317000086 ], [ -119.228942147999987, 50.323389715000076 ], [ -119.228521031999932, 50.323397790000051 ], [ -119.22849580799999, 50.322858586000024 ], [ -119.228074693999986, 50.322866660000017 ], [ -119.22803686499995, 50.322057853000047 ], [ -119.229300178999935, 50.322033627000017 ], [ -119.229312795999959, 50.322303230000081 ], [ -119.229733902999982, 50.32229515100007 ], [ -119.229746521999942, 50.322564753000094 ], [ -119.230167632999937, 50.322556672000047 ], [ -119.230192876999922, 50.323095877000078 ], [ -119.230256264999952, 50.323094661 ], [ -119.230524775999953, 50.321303781000097 ], [ -119.230297171999908, 50.321289814000131 ], [ -119.23031245599999, 50.32118787800006 ], [ -119.226088745999988, 50.320928599000091 ], [ -119.226625521, 50.317350361000095 ], [ -119.229377487999955, 50.317519315000034 ], [ -119.229744512999929, 50.315071326000108 ], [ -119.230578023999939, 50.31512248500006 ], [ -119.230681858999944, 50.314429792000062 ], [ -119.230276738999962, 50.31440492800003 ], [ -119.230293616999958, 50.314292330000065 ], [ -119.228337883999956, 50.314172275000011 ], [ -119.228476394999944, 50.313248541000128 ], [ -119.22450775499999, 50.313004813000106 ], [ -119.224471798999943, 50.312604543000063 ], [ -119.224537454999961, 50.312166924000039 ], [ -119.224482882999922, 50.312163572000081 ], [ -119.224542176999933, 50.311768349000069 ], [ -119.224395877999967, 50.311759361000071 ], [ -119.224312851999983, 50.310835036000114 ], [ -119.224333156999961, 50.31069969600005 ], [ -119.228071618999948, 50.310783551000107 ], [ -119.228069397999946, 50.310556703 ], [ -119.224856489999979, 50.310626653000071 ], [ -119.224845223, 50.30894585300009 ], [ -119.227296315999979, 50.30907264400004 ], [ -119.22742621399999, 50.309073837000028 ], [ -119.22960906599999, 50.309135496000088 ], [ -119.22961481399993, 50.309133495000069 ], [ -119.230378885999968, 50.308656700000029 ], [ -119.230588293999958, 50.308577498000112 ], [ -119.230801705999966, 50.308556303000081 ], [ -119.232236185999952, 50.308585690000051 ], [ -119.23225906099999, 50.309128040000083 ], [ -119.232302667999974, 50.310161602000065 ], [ -119.232305289999914, 50.310223991000051 ], [ -119.23225657799992, 50.310473797000078 ], [ -119.232275070999961, 50.310890719000078 ], [ -119.232317806, 50.311854311000047 ], [ -119.232425182999989, 50.312639645000075 ], [ -119.232432187999947, 50.312691007000119 ], [ -119.232444522999941, 50.31271694500002 ], [ -119.232477140999933, 50.31278560300003 ], [ -119.232767889999977, 50.313397690000023 ], [ -119.233417984999917, 50.314991309000014 ], [ -119.233908604999968, 50.317150204000065 ], [ -119.234053817999921, 50.31879949800004 ], [ -119.234039829000011, 50.318892672000089 ], [ -119.234011070999927, 50.319084676000024 ], [ -119.233993609, 50.319201224000039 ], [ -119.23394349199998, 50.319535713000022 ], [ -119.23371027799999, 50.320931605000091 ], [ -119.233690401999979, 50.321318500000125 ], [ -119.23372449699994, 50.321548128000053 ], [ -119.233744272999942, 50.321681539000103 ], [ -119.233776115999973, 50.321895896000072 ], [ -119.233818202999885, 50.322179497 ], [ -119.233939465999953, 50.322528557000091 ], [ -119.234014173999981, 50.322743671000083 ], [ -119.234792321999947, 50.324983699 ], [ -119.234912109999968, 50.325427097000038 ], [ -119.234901785999952, 50.325608493000111 ], [ -119.234894889999907, 50.325730316000062 ], [ -119.23459218499994, 50.326479105000075 ], [ -119.234540012000011, 50.326714204000076 ], [ -119.23454425599999, 50.326729345000089 ], [ -119.234585910999968, 50.326878597000103 ], [ -119.234893909999954, 50.327535808000114 ], [ -119.234979602999942, 50.327595184000081 ], [ -119.235173892999953, 50.327664006000127 ], [ -119.236519216999952, 50.327897183000104 ], [ -119.236348074999967, 50.328362564000088 ], [ -119.236265368999909, 50.328587495000058 ], [ -119.236107209999957, 50.329017592000085 ], [ -119.235970106999915, 50.329244815000017 ], [ -119.235611020999968, 50.329701251000095 ], [ -119.235312915999899, 50.330080179000092 ], [ -119.234969095999972, 50.330650504000054 ], [ -119.234946480999895, 50.330736730000076 ], [ -119.23485380799994, 50.331090295000088 ], [ -119.23472651899999, 50.332486302000071 ], [ -119.234778294999956, 50.332677206000049 ], [ -119.234869899999964, 50.332866663000139 ], [ -119.234980596999918, 50.333095615000026 ], [ -119.23503469, 50.333207506000029 ], [ -119.235057044999948, 50.33327816500006 ], [ -119.235170706999952, 50.333637494000094 ], [ -119.235372785999957, 50.33455869400008 ], [ -119.235391286999956, 50.334643096000029 ], [ -119.236506286999941, 50.335321793000048 ], [ -119.23674299000001, 50.335494191000073 ], [ -119.23675922799994, 50.335512257000062 ], [ -119.236995906999937, 50.33577521100009 ], [ -119.237245904999895, 50.336141700000056 ], [ -119.237431114999936, 50.336497913000123 ], [ -119.237612599999977, 50.337104799000038 ], [ -119.237704592999989, 50.337276510000081 ], [ -119.237725086999944, 50.337314799000062 ], [ -119.237868083999928, 50.337453605000093 ], [ -119.238332308999958, 50.337764634000024 ], [ -119.23870451499999, 50.338013995000097 ], [ -119.238830196999942, 50.338145420000075 ], [ -119.239216635999966, 50.338855112000054 ], [ -119.239447013999921, 50.339107625000054 ], [ -119.23983574499999, 50.339433822000039 ], [ -119.240140910999969, 50.339573471000037 ], [ -119.240326141999958, 50.339609207000137 ], [ -119.240501424999977, 50.33956035100006 ], [ -119.240634839999956, 50.33945207700004 ], [ -119.24084011299999, 50.339090003000138 ], [ -119.240995675999955, 50.33902188800009 ], [ -119.241048211999953, 50.339025398000103 ], [ -119.24115923699999, 50.339032798000069 ], [ -119.241378850999965, 50.339170853000077 ], [ -119.241514031999913, 50.33925585800008 ], [ -119.241723929, 50.339324677000093 ], [ -119.242049954999956, 50.339334692000101 ], [ -119.242796849999962, 50.340238949000081 ], [ -119.242098842999923, 50.340247190000063 ], [ -119.239878451999942, 50.340273364000069 ], [ -119.239234282999959, 50.340275340000112 ], [ -119.234203806999943, 50.340253433000015 ], [ -119.23268397799994, 50.34025031500007 ], [ -119.232392233000013, 50.34024971100007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2916917", "BldgCostT": "2011667", "sL_LossRatio": "1", "sL_AssetLoss": "146.8", "sL_BldgLoss": "146.8", "sL_StrLoss": "146.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000049939C5D48D95DC05F18FA71C5254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.393251312999951, 50.293161698000063 ], [ -119.397575327999945, 50.293420710000078 ], [ -119.39705233699999, 50.296999875000076 ], [ -119.392752576999968, 50.296742318000035 ], [ -119.392721103999961, 50.296310202000015 ], [ -119.392473595999903, 50.295847291000037 ], [ -119.392454915999963, 50.295227792000034 ], [ -119.392718018999986, 50.294592600000065 ], [ -119.393033696999922, 50.294145413000095 ], [ -119.39322388799998, 50.293466006000124 ], [ -119.393251312999951, 50.293161698000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021071", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23241084", "BldgCostT": "16028334", "sL_LossRatio": "1", "sL_AssetLoss": "1246.7", "sL_BldgLoss": "1246.7", "sL_StrLoss": "1246.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000722F9355CFD65DC0A223FB18DA294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.330248497999918, 50.335115603000069 ], [ -119.330443803999955, 50.334805104000047 ], [ -119.33122741699998, 50.334718296000112 ], [ -119.332821602999928, 50.334856401000089 ], [ -119.333685295999942, 50.334705393000036 ], [ -119.333927302999911, 50.334484705000051 ], [ -119.334353466999971, 50.334287030000091 ], [ -119.335124888999928, 50.333929191000067 ], [ -119.335463106999953, 50.333661500000048 ], [ -119.335509416999969, 50.333472098000072 ], [ -119.33578990099997, 50.333178688000018 ], [ -119.336337985999947, 50.333194390000081 ], [ -119.337453402999984, 50.333855201000084 ], [ -119.338053884999965, 50.334077398000062 ], [ -119.339718819999959, 50.334493199000036 ], [ -119.340197599999954, 50.334501791000044 ], [ -119.340580605999918, 50.334592900000075 ], [ -119.340551315999988, 50.33428819500007 ], [ -119.341177884999951, 50.333879400000036 ], [ -119.341746508999904, 50.333732683000022 ], [ -119.342322802999931, 50.33343359 ], [ -119.342669985999919, 50.333345299 ], [ -119.343622787999934, 50.333291196000069 ], [ -119.344289190999987, 50.333141701000088 ], [ -119.344495285, 50.333057602000032 ], [ -119.345183291999945, 50.332449512000068 ], [ -119.345817699999941, 50.331924 ], [ -119.34594778899995, 50.331714604000112 ], [ -119.345779793999938, 50.331421209000098 ], [ -119.345794988999955, 50.331177700000033 ], [ -119.346131901999968, 50.330578102000061 ], [ -119.346774806999946, 50.330222011000068 ], [ -119.347339599999955, 50.330031205000132 ], [ -119.348107794999919, 50.329925811000095 ], [ -119.349195510999934, 50.329471487000077 ], [ -119.349907823999956, 50.328827703000044 ], [ -119.350483481999959, 50.327394995000041 ], [ -119.350787493999974, 50.327253996000152 ], [ -119.351333407999959, 50.327215487000096 ], [ -119.351761989999986, 50.327100216000048 ], [ -119.352989490999931, 50.326345305000082 ], [ -119.354788101999944, 50.32576990200004 ], [ -119.355267695999927, 50.32550790300013 ], [ -119.357143279999931, 50.324822892000064 ], [ -119.35771499899991, 50.324171997000057 ], [ -119.357763119999944, 50.324001098000117 ], [ -119.358074107999983, 50.323751887000078 ], [ -119.358593193999951, 50.322858895000067 ], [ -119.358915175999982, 50.322573994000081 ], [ -119.359293806999986, 50.322287797000122 ], [ -119.359866097999927, 50.322185202000114 ], [ -119.361093095999976, 50.321711012000037 ], [ -119.361948109, 50.321666798000059 ], [ -119.362431500999932, 50.321531485000058 ], [ -119.362715882, 50.321579894000131 ], [ -119.363246495999988, 50.321522988000019 ], [ -119.36345261799994, 50.321438901000079 ], [ -119.364089606, 50.321515787000081 ], [ -119.365604394999963, 50.321475994000082 ], [ -119.366872009999923, 50.32125238400009 ], [ -119.368496718999921, 50.32056160500013 ], [ -119.369785893999975, 50.319383792000046 ], [ -119.370234220999961, 50.318791305000104 ], [ -119.370614504999963, 50.318261510000085 ], [ -119.370622741999966, 50.318222925000093 ], [ -119.372567206, 50.318339753000075 ], [ -119.372123889999912, 50.321360412000075 ], [ -119.37227530899996, 50.321369508000075 ], [ -119.372239494999988, 50.321413365000112 ], [ -119.371970617999921, 50.321662316000136 ], [ -119.371253940999978, 50.322325951 ], [ -119.371189836, 50.322385291000046 ], [ -119.371001866999919, 50.322559357000024 ], [ -119.370016432999975, 50.323601350000025 ], [ -119.36996438099996, 50.323656160000048 ], [ -119.369732663999969, 50.323900204000083 ], [ -119.36917203, 50.324259139000034 ], [ -119.36911135299999, 50.324286221000101 ], [ -119.368631544999943, 50.324500164000071 ], [ -119.367696571999943, 50.324775232000093 ], [ -119.366937153999942, 50.324940798000057 ], [ -119.366480232999905, 50.324977422000089 ], [ -119.366070131999905, 50.324964476000034 ], [ -119.36526377499996, 50.324863648000083 ], [ -119.364229866999935, 50.324736475000108 ], [ -119.363525153999888, 50.324731120000074 ], [ -119.362987751999952, 50.324797157 ], [ -119.362720384999932, 50.324830731000112 ], [ -119.362279877999967, 50.324929547000103 ], [ -119.361793837000036, 50.325038570000117 ], [ -119.361022233999975, 50.325344162000114 ], [ -119.358824807999952, 50.326356470000064 ], [ -119.35857179099996, 50.326473006000128 ], [ -119.358519484999931, 50.326503576000029 ], [ -119.358409689999959, 50.32656775300007 ], [ -119.3563162899999, 50.327791362000077 ], [ -119.355032772999934, 50.328708660000103 ], [ -119.353182777999947, 50.330030755000088 ], [ -119.351352060999943, 50.331490138000056 ], [ -119.350200465999976, 50.33221868400009 ], [ -119.348819334999973, 50.332972205000068 ], [ -119.34810221199993, 50.333452487000066 ], [ -119.346053377999965, 50.335242362000052 ], [ -119.346052441999973, 50.335242306000097 ], [ -119.346052295, 50.33524330800001 ], [ -119.345887280999946, 50.335387457000081 ], [ -119.345866400999981, 50.335386198000094 ], [ -119.34586660299999, 50.335390314000101 ], [ -119.344788256999919, 50.335412075000093 ], [ -119.344774532000017, 50.335505176 ], [ -119.34452440299999, 50.335490093000054 ], [ -119.343673893999949, 50.334962778000083 ], [ -119.343465104999979, 50.33482834300009 ], [ -119.342733744999975, 50.334591062000129 ], [ -119.342532043999967, 50.334619310000107 ], [ -119.342370192999937, 50.334641969000117 ], [ -119.341405041999906, 50.33477717900012 ], [ -119.339786931999967, 50.334887154000093 ], [ -119.339431114999954, 50.334888242000055 ], [ -119.339079614999946, 50.334821885000053 ], [ -119.337938707999967, 50.334481339000078 ], [ -119.337218971999931, 50.334213114000093 ], [ -119.336963274999931, 50.334291558000096 ], [ -119.336429158000016, 50.334611334000016 ], [ -119.336082914999949, 50.334767364000093 ], [ -119.335713319999954, 50.334871415000073 ], [ -119.335148863999976, 50.334918543000107 ], [ -119.334952580999953, 50.334986133000086 ], [ -119.334757133999915, 50.335101881000142 ], [ -119.33461233199999, 50.335187626000092 ], [ -119.334359856, 50.335272586 ], [ -119.333953919999914, 50.335345538000091 ], [ -119.33364062499993, 50.335364530000035 ], [ -119.332929553999989, 50.335290179000069 ], [ -119.332107559999955, 50.335204227000077 ], [ -119.331891621999915, 50.335213743000061 ], [ -119.330957729999923, 50.335273110000095 ], [ -119.330763232999956, 50.33528544900004 ], [ -119.33025055, 50.335119375000026 ], [ -119.330248497999918, 50.335115603000069 ] ], [ [ -119.368609009999915, 50.3238266420001 ], [ -119.368697296999954, 50.323225461000085 ], [ -119.368596882999938, 50.323219426000023 ], [ -119.368563086, 50.323449562000079 ], [ -119.368439135999949, 50.323442112000095 ], [ -119.368384643, 50.323813157000082 ], [ -119.368609009999915, 50.3238266420001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6759417", "BldgCostT": "4661667", "sL_LossRatio": "1", "sL_AssetLoss": "332", "sL_BldgLoss": "332", "sL_StrLoss": "332", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE0DF7B229D85DC0B523EE149F274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.37702984399999, 50.309545419000123 ], [ -119.377168371999943, 50.308600592000076 ], [ -119.374006981999941, 50.308410718000076 ], [ -119.37406290699991, 50.308029455000117 ], [ -119.374067113999971, 50.308025687000075 ], [ -119.374370598999974, 50.307372006000094 ], [ -119.375295092999977, 50.306724006000096 ], [ -119.375680705999955, 50.306598687000154 ], [ -119.376041383999947, 50.306222689000087 ], [ -119.376830485999946, 50.306000499000049 ], [ -119.377062192999972, 50.305860890000091 ], [ -119.37754111299995, 50.305319689000029 ], [ -119.37765239399999, 50.305054720000058 ], [ -119.377666692999924, 50.305020612000042 ], [ -119.377666536999982, 50.305019981000029 ], [ -119.380124044999945, 50.305167517000072 ], [ -119.379799563999953, 50.30738173400006 ], [ -119.38269348599999, 50.307555399000101 ], [ -119.382553487999985, 50.307660115000047 ], [ -119.381721336999988, 50.30844961100005 ], [ -119.381307340999939, 50.308715376000052 ], [ -119.38113751500002, 50.308824388000076 ], [ -119.380950964999982, 50.308929786000064 ], [ -119.380936095999942, 50.308938164000011 ], [ -119.380109986999955, 50.309404844000035 ], [ -119.379519778999963, 50.309738224000078 ], [ -119.379211762999915, 50.309982418000111 ], [ -119.379094694999935, 50.310105817000071 ], [ -119.379087567999974, 50.310113297000022 ], [ -119.378928171999988, 50.310281309000032 ], [ -119.378756256999907, 50.310568843000034 ], [ -119.37855493699999, 50.311094356000083 ], [ -119.378452367999913, 50.311362068000072 ], [ -119.378446608000019, 50.311940296000067 ], [ -119.378448124999977, 50.312055641 ], [ -119.378457668999914, 50.31277578800006 ], [ -119.378461712999936, 50.31307850600011 ], [ -119.378263745999973, 50.313495392000107 ], [ -119.377551014999966, 50.314306932000093 ], [ -119.377301039, 50.314591548000053 ], [ -119.374427891000011, 50.314419017000077 ], [ -119.374952869999959, 50.310840038000116 ], [ -119.375152379999975, 50.310852021000052 ], [ -119.375208080999982, 50.310472244000081 ], [ -119.376323855999956, 50.310539252000126 ], [ -119.376474477999949, 50.309512070000096 ], [ -119.37702984399999, 50.309545419000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021073", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44609250", "BldgCostT": "30765000", "sL_LossRatio": "1", "sL_AssetLoss": "2964.4", "sL_BldgLoss": "2964.4", "sL_StrLoss": "2964.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D5FB76305DA5DC0590520A45D244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.399541189999965, 50.293680054000063 ], [ -119.399633338999962, 50.293049171000092 ], [ -119.39955123299994, 50.293044256000044 ], [ -119.399754327999972, 50.291653754000073 ], [ -119.399316043999988, 50.291662806000055 ], [ -119.39930248, 50.291393234000033 ], [ -119.397619342999946, 50.291427979000098 ], [ -119.39760578899994, 50.291158408000044 ], [ -119.396764223999952, 50.291175772000059 ], [ -119.396750675999954, 50.290906200000045 ], [ -119.396351747999972, 50.290914428000065 ], [ -119.396233089999939, 50.291726429000065 ], [ -119.397212110999959, 50.291706234000038 ], [ -119.397225662999972, 50.291975806000011 ], [ -119.398488028999964, 50.291949753000075 ], [ -119.398528709999965, 50.292758466000031 ], [ -119.396074871999957, 50.292809097000067 ], [ -119.396008083999945, 50.293266108000047 ], [ -119.393256755999943, 50.293101282000052 ], [ -119.393395224999935, 50.291564704000066 ], [ -119.39330899299992, 50.291251387000067 ], [ -119.392734799999985, 50.290435294000098 ], [ -119.392661920999899, 50.28981720400008 ], [ -119.392299200999972, 50.28900540100009 ], [ -119.391971083999962, 50.288643702000037 ], [ -119.391805296999962, 50.287593999000102 ], [ -119.392208001999933, 50.286372009000026 ], [ -119.391870707999885, 50.285253985000082 ], [ -119.391288407000019, 50.28453770500002 ], [ -119.391547089999989, 50.284379602000101 ], [ -119.392223204999951, 50.284446495000083 ], [ -119.392517011999956, 50.284153101000072 ], [ -119.39255309699999, 50.283747187000095 ], [ -119.392246583999963, 50.283214591000089 ], [ -119.392361212, 50.283005193000058 ], [ -119.39270038899997, 50.283015189000082 ], [ -119.392975402999923, 50.282902708000073 ], [ -119.393455981999949, 50.282434104000103 ], [ -119.394047201999953, 50.282160694000048 ], [ -119.394232600999899, 50.281941285000109 ], [ -119.394964918999946, 50.281727707000094 ], [ -119.395938892999936, 50.281257694000089 ], [ -119.396719918999963, 50.281152296000108 ], [ -119.397117497, 50.280964306000037 ], [ -119.397339790999922, 50.280635309000033 ], [ -119.39801878699997, 50.280181010000014 ], [ -119.39817420599995, 50.279934585 ], [ -119.398950499999955, 50.2800087090001 ], [ -119.399375312, 50.279802206000106 ], [ -119.399533503, 50.279601410000076 ], [ -119.399491809999972, 50.279349292000028 ], [ -119.399027283999942, 50.27874829600006 ], [ -119.399044807999928, 50.278558790000105 ], [ -119.40018380699992, 50.278013398000013 ], [ -119.400705286999965, 50.277507793000083 ], [ -119.400819616999954, 50.277262806000117 ], [ -119.402585095999953, 50.276379789000018 ], [ -119.403742417999965, 50.276238797000055 ], [ -119.404403899000016, 50.27624309100004 ], [ -119.405279992999965, 50.275830092000035 ], [ -119.405877689999926, 50.275431310000037 ], [ -119.408718395999969, 50.274714900000056 ], [ -119.40921339099998, 50.274488389000041 ], [ -119.41026630099995, 50.274225009000084 ], [ -119.411227422999957, 50.274069702000155 ], [ -119.412801206999944, 50.274108193000103 ], [ -119.413169710999981, 50.273884586000051 ], [ -119.415804004999984, 50.272994497000084 ], [ -119.416609385999934, 50.272635403000102 ], [ -119.418817971999928, 50.274542962000034 ], [ -119.418717355999917, 50.275234134000129 ], [ -119.415146331999935, 50.275020837000035 ], [ -119.414966750999895, 50.276253716000099 ], [ -119.413241319999955, 50.276150615000162 ], [ -119.413236272999939, 50.276185257000101 ], [ -119.412837202999967, 50.276161407000103 ], [ -119.412817961999977, 50.27629346599999 ], [ -119.412317585999958, 50.276263560000068 ], [ -119.412305241999917, 50.276348278000064 ], [ -119.411787610999937, 50.276317338000084 ], [ -119.411764126999941, 50.276478490000052 ], [ -119.411212809999881, 50.27644553300005 ], [ -119.41116111799991, 50.276800203000079 ], [ -119.410673997999965, 50.276771081000035 ], [ -119.410656401999972, 50.276891814000081 ], [ -119.409964646999953, 50.276850456000084 ], [ -119.40992978, 50.277089631000074 ], [ -119.409512284999948, 50.277064667000054 ], [ -119.4094906699999, 50.277212940000013 ], [ -119.40913384299995, 50.277191603000126 ], [ -119.409126953999959, 50.277238848000074 ], [ -119.408735666999988, 50.277215449000089 ], [ -119.408706444999936, 50.277415858000026 ], [ -119.408302221999975, 50.277391684000129 ], [ -119.40827533599996, 50.27757606700002 ], [ -119.408094723999966, 50.277565265000071 ], [ -119.408084531000029, 50.277635172000025 ], [ -119.407893595999965, 50.27762375200011 ], [ -119.407868131999933, 50.277798376000142 ], [ -119.407408859999961, 50.27777090600005 ], [ -119.407371921999939, 50.278024186000081 ], [ -119.407192612999921, 50.278013461000064 ], [ -119.407173619999966, 50.278143691000054 ], [ -119.40687522399999, 50.278125842000101 ], [ -119.406854912999904, 50.278265098000055 ], [ -119.406361684999965, 50.278235593000055 ], [ -119.40634229799997, 50.278368509000082 ], [ -119.406104218999957, 50.278354267000076 ], [ -119.406101585999949, 50.278372315000126 ], [ -119.40523147199994, 50.278320258000051 ], [ -119.405214552999951, 50.278436234000075 ], [ -119.405002916999976, 50.278423572000108 ], [ -119.404989746999945, 50.27851384000013 ], [ -119.404753649000014, 50.278499714000041 ], [ -119.404736341999964, 50.27861834600003 ], [ -119.404419087999884, 50.278599362000129 ], [ -119.404399333, 50.278734752000062 ], [ -119.404263790999963, 50.27872664200008 ], [ -119.404245433999961, 50.278852456000031 ], [ -119.403841674999939, 50.278828294000029 ], [ -119.403811824999963, 50.279032866000065 ], [ -119.403576938999919, 50.279018808000032 ], [ -119.403550822999989, 50.27919777200006 ], [ -119.403366362999947, 50.279186732000035 ], [ -119.403339723999963, 50.279369276000068 ], [ -119.403223925999924, 50.27936234500006 ], [ -119.403199126999937, 50.279532279000065 ], [ -119.403107443999914, 50.279526792000148 ], [ -119.403089727999941, 50.27964818100007 ], [ -119.40297437599996, 50.279641276000035 ], [ -119.402946631999981, 50.279831384000062 ], [ -119.402738045999968, 50.279818899000183 ], [ -119.402704332999988, 50.280049888000043 ], [ -119.402477130999927, 50.280036289000144 ], [ -119.402441035999942, 50.280283593000028 ], [ -119.40234899899994, 50.28027808400001 ], [ -119.402156895999909, 50.281594198000072 ], [ -119.401950303999911, 50.281581831000047 ], [ -119.401901902999924, 50.281913402000065 ], [ -119.401659346999963, 50.281898883000046 ], [ -119.401643198, 50.282009508000087 ], [ -119.40116082599998, 50.281980632000099 ], [ -119.401153777999966, 50.282028918000101 ], [ -119.40098645499998, 50.282018902000061 ], [ -119.400970975999911, 50.282124922000051 ], [ -119.400553084, 50.282099904000091 ], [ -119.40053436299999, 50.282228133 ], [ -119.400365827999948, 50.282218042000125 ], [ -119.400359156999912, 50.282263737000086 ], [ -119.400312562999972, 50.282260947000047 ], [ -119.400286662999946, 50.282438338000077 ], [ -119.400118993999939, 50.282428299000095 ], [ -119.40010646, 50.282514142000124 ], [ -119.39992083899989, 50.28250302800005 ], [ -119.399857172999987, 50.28293904700012 ], [ -119.399688191999971, 50.282928929 ], [ -119.399684464999964, 50.282954450000048 ], [ -119.399498613, 50.282943323000055 ], [ -119.399480762999985, 50.283065555000071 ], [ -119.399132402999925, 50.283044695000108 ], [ -119.399109653999943, 50.283200463000092 ], [ -119.398810422999986, 50.283182545000052 ], [ -119.398795944999918, 50.283281670000051 ], [ -119.398352179999975, 50.283255094000083 ], [ -119.398338130999974, 50.283351280000041 ], [ -119.398220706999936, 50.28334424800007 ], [ -119.398207628999941, 50.28343378300012 ], [ -119.397985263999956, 50.283420466000052 ], [ -119.397959727999961, 50.283595288000051 ], [ -119.397672111999938, 50.283578062000124 ], [ -119.397664116999934, 50.283632795000088 ], [ -119.39754020899997, 50.283625373000092 ], [ -119.397528315, 50.283706798000026 ], [ -119.397137321999978, 50.283683379000102 ], [ -119.397105106999973, 50.283903907000088 ], [ -119.396831636999977, 50.283887526000107 ], [ -119.396812500999943, 50.284018513000042 ], [ -119.396607805999977, 50.284006251000086 ], [ -119.396590496999949, 50.284124718000022 ], [ -119.396394244999954, 50.284112962000115 ], [ -119.3963611, 50.284339822000028 ], [ -119.396137858999907, 50.284326449000091 ], [ -119.396118195999975, 50.284461029000035 ], [ -119.395913051999983, 50.284448739000105 ], [ -119.395898690999928, 50.284547033000088 ], [ -119.395845745999949, 50.284543862000099 ], [ -119.395820997999962, 50.284713235000012 ], [ -119.395747334999967, 50.284708822000049 ], [ -119.395734897999944, 50.284793936000028 ], [ -119.395594228999968, 50.284785508 ], [ -119.395568199999985, 50.284963639000068 ], [ -119.395371774999958, 50.284951871000054 ], [ -119.39520681299993, 50.286080715000097 ], [ -119.396927565999974, 50.286045227000081 ], [ -119.396941113999929, 50.286314799000138 ], [ -119.397361853999925, 50.286306118 ], [ -119.397375402999941, 50.286575690000099 ], [ -119.398216886999975, 50.286558323000051 ], [ -119.398230441999928, 50.28682789500003 ], [ -119.399492671999937, 50.286801834000102 ], [ -119.399506234999976, 50.287071404000088 ], [ -119.400347723999943, 50.287054023000081 ], [ -119.400361291999957, 50.287323594000043 ], [ -119.401202786999988, 50.28730620500005 ], [ -119.40121636, 50.287575776000097 ], [ -119.40187538899994, 50.287562154000078 ], [ -119.401914521999927, 50.287294098000132 ], [ -119.405082511999936, 50.287483656000113 ], [ -119.405366971999953, 50.285534173000052 ], [ -119.408594088999919, 50.285727174000073 ], [ -119.408859111999945, 50.283909848000057 ], [ -119.41090857099999, 50.284032368000076 ], [ -119.411109283999963, 50.282655496000118 ], [ -119.413372048999932, 50.282790724000044 ], [ -119.413485617999982, 50.282011350000083 ], [ -119.415111731999929, 50.282108501000089 ], [ -119.41533171699993, 50.280598389000041 ], [ -119.420921148999952, 50.280932139000058 ], [ -119.42074457699999, 50.28214527500009 ], [ -119.421877823999964, 50.282212907000023 ], [ -119.422015792999915, 50.281264843000081 ], [ -119.422571411999954, 50.281297998000099 ], [ -119.422813248999958, 50.279635957000075 ], [ -119.424193045999942, 50.279718281000029 ], [ -119.424485589999961, 50.277707151000094 ], [ -119.42450432899993, 50.277697311000068 ], [ -119.424959142999938, 50.277646264000133 ], [ -119.425035008999942, 50.277661366000117 ], [ -119.426181113999945, 50.27814404500004 ], [ -119.426738233999956, 50.27852029000011 ], [ -119.426902384999948, 50.278631127000047 ], [ -119.428061216999978, 50.279307693000106 ], [ -119.428559059999927, 50.27952869800005 ], [ -119.428600969999962, 50.279554352000048 ], [ -119.42889431499998, 50.279733725000078 ], [ -119.429496832, 50.28025254500006 ], [ -119.429631874, 50.280409521000152 ], [ -119.428971896999911, 50.280460438000077 ], [ -119.42861721599995, 50.280534307000039 ], [ -119.427944269999941, 50.280674458000099 ], [ -119.42650500399999, 50.281053482000068 ], [ -119.425344027999984, 50.281399441000048 ], [ -119.423788920999954, 50.28198362200007 ], [ -119.42131466499994, 50.28314929099999 ], [ -119.419580366999952, 50.284410861000069 ], [ -119.418500520999899, 50.285196296000073 ], [ -119.417589659999962, 50.285788186000097 ], [ -119.417376517999926, 50.285898397000068 ], [ -119.417120928999935, 50.28603054000012 ], [ -119.41670546499995, 50.286245367000099 ], [ -119.415551707999967, 50.286772187000103 ], [ -119.414533657999954, 50.286648206000031 ], [ -119.413161915999964, 50.286290963000077 ], [ -119.412994715999972, 50.286266762000118 ], [ -119.41259282, 50.286208585000089 ], [ -119.412471640999954, 50.286191026000061 ], [ -119.411904859999979, 50.286201395000063 ], [ -119.411782956999929, 50.286244640000042 ], [ -119.413539944999968, 50.287410304000083 ], [ -119.413569680999956, 50.287430044000132 ], [ -119.41382498699997, 50.287806326000087 ], [ -119.413086786999955, 50.288276731000039 ], [ -119.412874839999986, 50.288376878000093 ], [ -119.412348331999965, 50.288584616000087 ], [ -119.41064058399995, 50.289093888000131 ], [ -119.410487189999941, 50.289139634000058 ], [ -119.409907620999931, 50.289312483000046 ], [ -119.40979976399997, 50.289348267000079 ], [ -119.407833484999941, 50.290000831000057 ], [ -119.407759440999911, 50.290025291000099 ], [ -119.407717588999958, 50.290039192000066 ], [ -119.407567395999976, 50.290089073000054 ], [ -119.405645161999928, 50.290727451000052 ], [ -119.404607126999935, 50.291145539000063 ], [ -119.404016639999952, 50.291453218000051 ], [ -119.403877762999969, 50.291560132000029 ], [ -119.403407446999978, 50.291922184000086 ], [ -119.403381280999952, 50.291942329000051 ], [ -119.40298867599999, 50.292362034000085 ], [ -119.402051919999934, 50.293565544000046 ], [ -119.401984374999955, 50.293652301000073 ], [ -119.401938767, 50.293710897000068 ], [ -119.40185544399999, 50.293818566000091 ], [ -119.399541189999965, 50.293680054000063 ] ], [ [ -119.401373697999958, 50.289191633000051 ], [ -119.401452737999975, 50.288650296000057 ], [ -119.400849892999986, 50.2886627560001 ], [ -119.400836321, 50.288393184000014 ], [ -119.399574050999917, 50.288419261000051 ], [ -119.399560487999935, 50.288149690000125 ], [ -119.398718977999948, 50.288167066000014 ], [ -119.39870541899991, 50.287897495000038 ], [ -119.397863912, 50.287914865000147 ], [ -119.39785035700001, 50.287645294000093 ], [ -119.396588103999989, 50.287671338000067 ], [ -119.396574556999951, 50.287401766000087 ], [ -119.39573305899998, 50.287419121000021 ], [ -119.395719517, 50.287149550000045 ], [ -119.395168936999966, 50.287160902000011 ], [ -119.39516741099996, 50.287171346000015 ], [ -119.395364585999971, 50.287183158000119 ], [ -119.395344694, 50.287319272000076 ], [ -119.395422893999978, 50.287323958000059 ], [ -119.395392988999916, 50.287528596000094 ], [ -119.395447406999921, 50.287531857000033 ], [ -119.395409025999982, 50.287794490000117 ], [ -119.395747214999957, 50.287814749000063 ], [ -119.395722694999961, 50.28798254000003 ], [ -119.395858022999946, 50.287990647000079 ], [ -119.39582693399997, 50.288203397000089 ], [ -119.395887835999943, 50.288207046000075 ], [ -119.39588513399994, 50.288225540000056 ], [ -119.39787746599994, 50.288184438000037 ], [ -119.39789102, 50.288454008000038 ], [ -119.398732534999937, 50.288436638000043 ], [ -119.398746093999975, 50.288706210000079 ], [ -119.399587614999945, 50.288688832000034 ], [ -119.399601177999969, 50.288958404000041 ], [ -119.400863462999965, 50.288932327000083 ], [ -119.400877034999979, 50.289201897000069 ], [ -119.401373697999958, 50.289191633000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5502750", "BldgCostT": "3795000", "sL_LossRatio": "1", "sL_AssetLoss": "238", "sL_BldgLoss": "238", "sL_StrLoss": "238", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002DBD0D9CF9D85DC0CBA4652897264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.387326748999953, 50.304592749000044 ], [ -119.387313247999927, 50.304323176000032 ], [ -119.38689234499999, 50.304331822000059 ], [ -119.386878847, 50.304062250000115 ], [ -119.386457945999922, 50.304070894000077 ], [ -119.386444449999956, 50.303801322000027 ], [ -119.386023551999969, 50.303809965000092 ], [ -119.385996563999925, 50.303270819000055 ], [ -119.385575671999945, 50.303279461000038 ], [ -119.385526606999946, 50.302299081000058 ], [ -119.385756717999982, 50.302227798000025 ], [ -119.385822445999963, 50.302194993000072 ], [ -119.38636347299996, 50.302183883000026 ], [ -119.386350300999979, 50.301920801000115 ], [ -119.386911673999975, 50.301448693000054 ], [ -119.388418203999947, 50.300671090000087 ], [ -119.38916658899997, 50.299900598000079 ], [ -119.390037492, 50.29937789800011 ], [ -119.391373304999959, 50.298559008000062 ], [ -119.392182794999954, 50.297876808000133 ], [ -119.392451848999912, 50.297495215000062 ], [ -119.393727145, 50.297571626000028 ], [ -119.393203803999953, 50.301150754000076 ], [ -119.392409297999947, 50.301103152000067 ], [ -119.392384810999914, 50.301270580000057 ], [ -119.395477691999957, 50.301455853000036 ], [ -119.393745357999961, 50.302179713000065 ], [ -119.393006845999963, 50.302513610000126 ], [ -119.392934477999972, 50.302546337000145 ], [ -119.391333743999937, 50.303337703000096 ], [ -119.3903929199999, 50.303735678000166 ], [ -119.390395196999961, 50.303720114000051 ], [ -119.390232513999976, 50.303723461000054 ], [ -119.390236444999957, 50.303801866000114 ], [ -119.389760914999925, 50.304003012000045 ], [ -119.389404235999947, 50.304010346000055 ], [ -119.389411283999962, 50.304150900000103 ], [ -119.389090341999974, 50.304286651000012 ], [ -119.388996850999931, 50.304288574000076 ], [ -119.388998697999966, 50.3043254150001 ], [ -119.38841976099998, 50.304570287000033 ], [ -119.387326748999953, 50.304592749000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107473333", "BldgCostT": "71413333", "sL_LossRatio": "1", "sL_AssetLoss": "8098", "sL_BldgLoss": "8098", "sL_StrLoss": "8098", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000002ACB8E5A1CF5DC071ADCD31E6224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.244205541999975, 50.275635939000018 ], [ -119.244207592999956, 50.274744786000092 ], [ -119.243839306999959, 50.274737484000077 ], [ -119.243674527999971, 50.274744251000079 ], [ -119.243459218999988, 50.274753105000023 ], [ -119.243124882999965, 50.274802092000073 ], [ -119.24288070399993, 50.27483219200014 ], [ -119.242715452999931, 50.274831002000141 ], [ -119.24129520299999, 50.274820790000021 ], [ -119.241618213, 50.272452596000065 ], [ -119.241297246999949, 50.272422190000079 ], [ -119.241291499999988, 50.272299821000061 ], [ -119.241099418999966, 50.272288040000106 ], [ -119.241106264999985, 50.272138977000019 ], [ -119.239999154999907, 50.272122317000061 ], [ -119.239809098999928, 50.270147689000083 ], [ -119.242619603999913, 50.270157583000092 ], [ -119.243111841999976, 50.270154842000132 ], [ -119.243474011999936, 50.270152803000045 ], [ -119.243614554999951, 50.270151998000095 ], [ -119.244961167999989, 50.270144411000068 ], [ -119.246273268999929, 50.270136995000051 ], [ -119.246878692999971, 50.270150594000036 ], [ -119.246945803999893, 50.270833594000045 ], [ -119.247028593999971, 50.271100487000048 ], [ -119.247025997999955, 50.271750388000036 ], [ -119.246810795999977, 50.272133606000118 ], [ -119.246733778999939, 50.272432194000025 ], [ -119.247622780999961, 50.272429763000034 ], [ -119.24808756499999, 50.272428468000079 ], [ -119.248098033999952, 50.27307555500002 ], [ -119.248069885999953, 50.27377351200014 ], [ -119.248951605999977, 50.273768848000081 ], [ -119.248901615999969, 50.274745334000087 ], [ -119.24745376499996, 50.274740040000083 ], [ -119.247020783000011, 50.274738440000121 ], [ -119.245264283999987, 50.274748200000047 ], [ -119.245284093999913, 50.275936594000065 ], [ -119.245142820999959, 50.276193399000071 ], [ -119.244608089999986, 50.276679198000053 ], [ -119.244457706999953, 50.276815800000037 ], [ -119.244203211999945, 50.276660310000089 ], [ -119.244205541999975, 50.275635939000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127462166", "BldgCostT": "82571666", "sL_LossRatio": "0.999022946576575", "sL_AssetLoss": "7758.02", "sL_BldgLoss": "7750.44", "sL_StrLoss": "7747.7", "sL_NStrLoss": "2.74", "sL_ContLoss": "7.58", "geom_point": "0101000020E6100000DCAB4D6BECCE5DC0FF710C126C214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.23754637899999, 50.268878495000102 ], [ -119.236748406999936, 50.267174607000072 ], [ -119.23589425499992, 50.267175581000082 ], [ -119.230916592999932, 50.2671812070001 ], [ -119.230921508999984, 50.266058783000041 ], [ -119.230924498, 50.265375547000097 ], [ -119.230927193999904, 50.264746235000054 ], [ -119.230932785999954, 50.263467906000066 ], [ -119.229716088999965, 50.263464042000081 ], [ -119.227947961999973, 50.263458431000053 ], [ -119.226262940999945, 50.263453050000123 ], [ -119.226241235999964, 50.26345298800004 ], [ -119.225703241999923, 50.263451266000061 ], [ -119.22512488299999, 50.263449399000102 ], [ -119.225143984999988, 50.265351746000086 ], [ -119.225156291999923, 50.266578909 ], [ -119.225100706999953, 50.266761500000037 ], [ -119.224988510999935, 50.266908011000069 ], [ -119.22483661699998, 50.267018804000038 ], [ -119.22462541099999, 50.26711140599999 ], [ -119.2243276899999, 50.267169905000117 ], [ -119.223950798999979, 50.267173797000069 ], [ -119.222738749999934, 50.267194258000075 ], [ -119.222443341999934, 50.267199229000063 ], [ -119.221311209999897, 50.26721838000001 ], [ -119.221173481999955, 50.267218555000071 ], [ -119.221035700999934, 50.267218717000041 ], [ -119.220897935999915, 50.267218902000096 ], [ -119.22076021, 50.267219077000071 ], [ -119.220622480999978, 50.267219252000082 ], [ -119.22034697399999, 50.267219587000056 ], [ -119.220209246, 50.267219761000035 ], [ -119.220071480999977, 50.267219944000026 ], [ -119.219933753999982, 50.267220119000079 ], [ -119.219903790999965, 50.267220153 ], [ -119.21776313, 50.26724640700013 ], [ -119.217766341999919, 50.267195861000111 ], [ -119.217864483999904, 50.264591807000045 ], [ -119.218068406999961, 50.264435493000029 ], [ -119.218227890999955, 50.264198806000095 ], [ -119.218265190999915, 50.263903094000071 ], [ -119.218249003000011, 50.263585490000061 ], [ -119.218246622999956, 50.263538520000047 ], [ -119.218186194999959, 50.262353515000015 ], [ -119.21825012499994, 50.262096510000084 ], [ -119.218373917999955, 50.261905350000063 ], [ -119.218460993999884, 50.261770895000083 ], [ -119.218595713999903, 50.261371104000062 ], [ -119.219055414999914, 50.260459113000053 ], [ -119.21911131199991, 50.260348189000055 ], [ -119.219192990999943, 50.260132101000067 ], [ -119.219205406999961, 50.259879993 ], [ -119.219163008999971, 50.259394351000068 ], [ -119.219121398999945, 50.258917793000094 ], [ -119.219155701999952, 50.258660811000027 ], [ -119.219277018999904, 50.25841458600005 ], [ -119.21946572499999, 50.258031598000066 ], [ -119.219460413999968, 50.257615999000045 ], [ -119.219388008999914, 50.257299997000068 ], [ -119.219337328999927, 50.257176603000126 ], [ -119.21893604199991, 50.256199764000044 ], [ -119.21875827799991, 50.255766997000059 ], [ -119.219204688, 50.255618409000114 ], [ -119.220013175999952, 50.255197793000093 ], [ -119.220327915, 50.255100695000088 ], [ -119.220604095999988, 50.255062603000056 ], [ -119.220879897999978, 50.255056109000101 ], [ -119.221036279999936, 50.255093705000064 ], [ -119.221094822999987, 50.25522009600008 ], [ -119.22091719399999, 50.255963106000081 ], [ -119.220965289999981, 50.256159205000039 ], [ -119.221133890999923, 50.256351097000064 ], [ -119.221651497999957, 50.25675218599999 ], [ -119.221875482999948, 50.256968306000054 ], [ -119.222076703999932, 50.257271388000014 ], [ -119.222369315999956, 50.257867204000071 ], [ -119.222506919999915, 50.257955100000054 ], [ -119.22266941399991, 50.257980481000047 ], [ -119.222847979999941, 50.257954485 ], [ -119.222991113999939, 50.257873892000134 ], [ -119.223259293999945, 50.25756989700006 ], [ -119.223840308999954, 50.256937501000017 ], [ -119.224053473999959, 50.256774496000027 ], [ -119.224283793999987, 50.256657808000035 ], [ -119.224581915, 50.256567798000034 ], [ -119.224911415999927, 50.256532100000086 ], [ -119.226019504999925, 50.256518900000046 ], [ -119.228241849999932, 50.25652125600007 ], [ -119.230918193999969, 50.256523991000094 ], [ -119.236745177, 50.256502690000104 ], [ -119.236698295999986, 50.254385294000016 ], [ -119.236699295999969, 50.254307635000018 ], [ -119.236938640999981, 50.254322331000068 ], [ -119.236955193999933, 50.254211639000061 ], [ -119.239285938999956, 50.254354728000102 ], [ -119.239502320999947, 50.252907288000145 ], [ -119.239604075999964, 50.252907274000101 ], [ -119.240019084999986, 50.252907198000045 ], [ -119.24007457299993, 50.252906201000016 ], [ -119.240217377999926, 50.252903695000029 ], [ -119.240284850999942, 50.252902492000075 ], [ -119.240360292999966, 50.252901159000061 ], [ -119.240503098, 50.252898653000017 ], [ -119.240645939999979, 50.252896136000118 ], [ -119.240788838999947, 50.252893574000034 ], [ -119.240931644999975, 50.252891068000061 ], [ -119.241074520999987, 50.252888539000068 ], [ -119.241217347999978, 50.252885999000078 ], [ -119.241360225999983, 50.252883470000036 ], [ -119.241503085999966, 50.252880976000071 ], [ -119.241645908999914, 50.252878434000145 ], [ -119.24178878799999, 50.252875905000074 ], [ -119.241931629999954, 50.252873387000086 ], [ -119.242074491999972, 50.252870835000067 ], [ -119.242223085999953, 50.252868184000114 ], [ -119.242273235999974, 50.252867279000071 ], [ -119.24237162699994, 50.252865521000061 ], [ -119.242520165999977, 50.252862857000096 ], [ -119.242668758999969, 50.252860206000037 ], [ -119.242817335999931, 50.252857532000093 ], [ -119.242965875999985, 50.252854869 ], [ -119.243114469999966, 50.252852217000068 ], [ -119.243263010999954, 50.25284955300004 ], [ -119.243411604999935, 50.252846901000062 ], [ -119.243560143999915, 50.252844235000097 ], [ -119.243708755999975, 50.252841548000099 ], [ -119.243857314999943, 50.252838907000026 ], [ -119.24400585599993, 50.252836241000125 ], [ -119.244154431999959, 50.252833564000113 ], [ -119.244302988999962, 50.252830923000062 ], [ -119.24445158199994, 50.252828269000062 ], [ -119.24460015899993, 50.252825592000079 ], [ -119.244748698999899, 50.252822925000039 ], [ -119.244897274999957, 50.252820247000102 ], [ -119.245045831999931, 50.252817604000029 ], [ -119.245194425999927, 50.252814948000029 ], [ -119.245343000999981, 50.25281227100006 ], [ -119.245491542999943, 50.25280960200007 ], [ -119.245640135999963, 50.252806948000035 ], [ -119.245788674999986, 50.252804280000134 ], [ -119.245937251999976, 50.252801600000026 ], [ -119.24608582499998, 50.252798979000012 ], [ -119.246234402999946, 50.252796298000135 ], [ -119.246382978999947, 50.252793619000073 ], [ -119.246517709000017, 50.252791210000062 ], [ -119.246534348999916, 50.252792984000067 ], [ -119.246618666999922, 50.252802123000059 ], [ -119.24671960299996, 50.25281307100002 ], [ -119.246820596999939, 50.25282397400013 ], [ -119.246921516999947, 50.252834896000067 ], [ -119.247022489999964, 50.252845833000094 ], [ -119.24712346499993, 50.252856770000108 ], [ -119.247224421999988, 50.252867682000037 ], [ -119.247325377, 50.252878595000034 ], [ -119.24742631699992, 50.252889542000048 ], [ -119.247527272999932, 50.252900455000045 ], [ -119.247628247999955, 50.252911391000069 ], [ -119.247672698999935, 50.252916193000054 ], [ -119.251062707999907, 50.252925291000111 ], [ -119.251070998999978, 50.253914019000028 ], [ -119.251076285999901, 50.254543321000021 ], [ -119.24198790599992, 50.254648723000088 ], [ -119.242154290999949, 50.256294917000062 ], [ -119.242331254999925, 50.256293148000076 ], [ -119.24433219899997, 50.256273101000069 ], [ -119.245056118999926, 50.256317507000055 ], [ -119.245062414999921, 50.256483509000063 ], [ -119.245194698999939, 50.259991619000083 ], [ -119.24275735499999, 50.259993147000053 ], [ -119.242207792999949, 50.25999348300013 ], [ -119.242197181999941, 50.261913017000033 ], [ -119.245377987999944, 50.261884309000045 ], [ -119.24538738699998, 50.262793104000167 ], [ -119.2453753879999, 50.263722310000063 ], [ -119.24529041299995, 50.263723724000116 ], [ -119.244827339999958, 50.263731460000017 ], [ -119.242726308999949, 50.26376661000004 ], [ -119.24258698, 50.263745822000018 ], [ -119.242253493999925, 50.263696099000107 ], [ -119.242218365999946, 50.263696101000093 ], [ -119.242468525999925, 50.265409882000093 ], [ -119.24251924, 50.267410232000081 ], [ -119.242498712999947, 50.268100509000078 ], [ -119.243127761999943, 50.268099530000072 ], [ -119.243111841999976, 50.270154842000132 ], [ -119.242619603999913, 50.270157583000092 ], [ -119.239809098999928, 50.270147689000083 ], [ -119.239386007999883, 50.270101898000057 ], [ -119.239078712999941, 50.270017099000036 ], [ -119.23881129199998, 50.269892397000078 ], [ -119.237950994999935, 50.269311402000035 ], [ -119.237709401999965, 50.269088999000125 ], [ -119.23754637899999, 50.268878495000102 ] ], [ [ -119.227290168999986, 50.259641420000072 ], [ -119.227424858999882, 50.258742155000071 ], [ -119.227049940999919, 50.258719104000079 ], [ -119.227024962999948, 50.258885862000106 ], [ -119.226890327999968, 50.258877583000043 ], [ -119.22686546599999, 50.259043565000063 ], [ -119.22667492, 50.259031849000067 ], [ -119.226645766999951, 50.259226469000033 ], [ -119.226437161999968, 50.25921364200007 ], [ -119.226402568999973, 50.259444574000049 ], [ -119.226103992999953, 50.259426213000026 ], [ -119.226082873999957, 50.259567186000083 ], [ -119.227290168999986, 50.259641420000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "126845333", "BldgCostT": "86798333", "sL_LossRatio": "0.998785629442414", "sL_AssetLoss": "10540.44", "sL_BldgLoss": "10527.64", "sL_StrLoss": "10523", "sL_NStrLoss": "4.64", "sL_ContLoss": "12.8", "geom_point": "0101000020E61000006F8DA59BC6CF5DC08107A3E502214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.245194698999939, 50.259991619000083 ], [ -119.245062414999921, 50.256483509000063 ], [ -119.245056118999926, 50.256317507000055 ], [ -119.24433219899997, 50.256273101000069 ], [ -119.242331254999925, 50.256293148000076 ], [ -119.242154290999949, 50.256294917000062 ], [ -119.24198790599992, 50.254648723000088 ], [ -119.251076285999901, 50.254543321000021 ], [ -119.251077786999986, 50.254722015000027 ], [ -119.251070590999973, 50.255391088000074 ], [ -119.251061472999965, 50.256237791000117 ], [ -119.251057116999931, 50.256815300000014 ], [ -119.251057680999978, 50.256933695000086 ], [ -119.249756609999949, 50.25709770600011 ], [ -119.248493584999935, 50.257214402000066 ], [ -119.248519995, 50.258141394000077 ], [ -119.248519569999957, 50.258142655000093 ], [ -119.248472679999978, 50.258280956000085 ], [ -119.248411909999959, 50.258459804000069 ], [ -119.248536397999956, 50.258503606000033 ], [ -119.248571926999944, 50.258596003000072 ], [ -119.248565801999959, 50.259514802000048 ], [ -119.24849440499996, 50.259587107000044 ], [ -119.248356105999946, 50.259616603000111 ], [ -119.247896815, 50.25960650000011 ], [ -119.247919893999935, 50.260008719000091 ], [ -119.24912814899993, 50.260019699000047 ], [ -119.249458099999956, 50.260022695000053 ], [ -119.249442887999976, 50.261068108000046 ], [ -119.248187886999972, 50.261044048000016 ], [ -119.24789429399999, 50.261872201000109 ], [ -119.247272108999937, 50.261874 ], [ -119.246066691999957, 50.261877795000018 ], [ -119.245377987999944, 50.261884309000045 ], [ -119.242197181999941, 50.261913017000033 ], [ -119.242207792999949, 50.25999348300013 ], [ -119.24275735499999, 50.259993147000053 ], [ -119.245194698999939, 50.259991619000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28268411", "BldgCostT": "18100743", "sL_LossRatio": "0.986660222329628", "sL_AssetLoss": "1448.3", "sL_BldgLoss": "1428.98", "sL_StrLoss": "1422", "sL_NStrLoss": "6.98", "sL_ContLoss": "19.32", "geom_point": "0101000020E61000003E908A39A7CE5DC0593D0E204F364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234501908999931, 50.430947311000033 ], [ -119.234531597999975, 50.430749678000133 ], [ -119.23131589799999, 50.4305529210001 ], [ -119.231673854999926, 50.42817103000003 ], [ -119.231708352999988, 50.427941462000071 ], [ -119.231455005999962, 50.427925956000088 ], [ -119.231420505999921, 50.428155525000072 ], [ -119.230934971999943, 50.431386144000058 ], [ -119.229591, 50.431303879000012 ], [ -119.229560919000036, 50.431503975000084 ], [ -119.223954291999988, 50.43116061500006 ], [ -119.224470423999932, 50.427729931000123 ], [ -119.224492545999979, 50.427582885000078 ], [ -119.225392431999921, 50.427638015000063 ], [ -119.225817744000025, 50.424810209000057 ], [ -119.227535123999971, 50.424915401000099 ], [ -119.22765360599999, 50.424127377000033 ], [ -119.224990718999976, 50.423964258000119 ], [ -119.225528803999964, 50.420386491000087 ], [ -119.227042269999984, 50.420479209000106 ], [ -119.227120357999922, 50.419959827000106 ], [ -119.227384423999979, 50.419976001000038 ], [ -119.227476219999943, 50.419365401000043 ], [ -119.227202411999912, 50.419348629000055 ], [ -119.227311226999916, 50.418624837000024 ], [ -119.226773847999979, 50.4185919190001 ], [ -119.226987121999983, 50.417173357000053 ], [ -119.226284429999978, 50.417130308000011 ], [ -119.22644493199999, 50.416062805000131 ], [ -119.224647450999896, 50.415952665000056 ], [ -119.225185467999921, 50.412374863000061 ], [ -119.226488717999985, 50.412454723000089 ], [ -119.226815113999976, 50.410283496000062 ], [ -119.228671094999982, 50.410397198000055 ], [ -119.228639387, 50.41250519400009 ], [ -119.228622139999985, 50.413743243000084 ], [ -119.228612472999927, 50.414435302000093 ], [ -119.228607603999933, 50.41478601600005 ], [ -119.228571, 50.41741070800007 ], [ -119.22849230199995, 50.419392703000085 ], [ -119.228532159999958, 50.419627696000092 ], [ -119.228539479999966, 50.419670891000116 ], [ -119.228582948999971, 50.419787949000082 ], [ -119.228632110999982, 50.419920300000037 ], [ -119.229338982999977, 50.420702892000051 ], [ -119.229723213999947, 50.421242706000072 ], [ -119.230098232, 50.422195208000048 ], [ -119.230127489999973, 50.422269501000102 ], [ -119.230812603999979, 50.423262784000038 ], [ -119.23094310099999, 50.423627412 ], [ -119.23105278099996, 50.42437520200005 ], [ -119.231028510999963, 50.424999474000096 ], [ -119.231027286999975, 50.425030770000021 ], [ -119.231019714999917, 50.425226210000098 ], [ -119.230802919999974, 50.426339409000057 ], [ -119.230682909999985, 50.426760883000071 ], [ -119.23075958799997, 50.426925518000104 ], [ -119.230773782999961, 50.42695599000011 ], [ -119.231135610999971, 50.427024196000076 ], [ -119.232224240999969, 50.427025712000102 ], [ -119.23222454899998, 50.427025707000084 ], [ -119.233942048999964, 50.42702806000004 ], [ -119.236044281000019, 50.427030914000085 ], [ -119.236014424999937, 50.427229725000103 ], [ -119.236524349999954, 50.427260912000044 ], [ -119.236558783999925, 50.427031607000096 ], [ -119.236645613999926, 50.427031723 ], [ -119.238138288999963, 50.427033696000102 ], [ -119.23701169399996, 50.428272808000024 ], [ -119.236245318, 50.429043693000075 ], [ -119.23611152499997, 50.429222959000121 ], [ -119.235639711999937, 50.429855194 ], [ -119.235343312999987, 50.430390739000124 ], [ -119.235284028999928, 50.430497842000122 ], [ -119.235086397999979, 50.43085489900006 ], [ -119.234835998999984, 50.431109486000011 ], [ -119.234674695999942, 50.431213398000068 ], [ -119.234309995999965, 50.431380600000047 ], [ -119.233934796999932, 50.431505702000088 ], [ -119.23307129, 50.431726637000047 ], [ -119.233055008999884, 50.431730785000084 ], [ -119.232541313999917, 50.431954351000051 ], [ -119.232378489999945, 50.432025205000102 ], [ -119.231346210999916, 50.432644795000023 ], [ -119.231627756999984, 50.430771456000059 ], [ -119.234501908999931, 50.430947311000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "114445812", "BldgCostT": "73044531", "sL_LossRatio": "0.986811100485028", "sL_AssetLoss": "9919.963364", "sL_BldgLoss": "9789.129964", "sL_StrLoss": "9739.937964", "sL_NStrLoss": "49.192", "sL_ContLoss": "130.8334", "geom_point": "0101000020E6100000C49DD2C1FACC5DC02178740A0F364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.202581543999955, 50.437225461000082 ], [ -119.202760852, 50.436037617000082 ], [ -119.202254585999938, 50.436006504000026 ], [ -119.202364907999964, 50.435275685000086 ], [ -119.202186233999953, 50.435264704000069 ], [ -119.202288113999941, 50.434589806000112 ], [ -119.20215467899996, 50.434581605000105 ], [ -119.202234166999929, 50.434055036000132 ], [ -119.201190385999922, 50.433990879000092 ], [ -119.201730474999977, 50.430413273000056 ], [ -119.202135466999906, 50.43043816700002 ], [ -119.202247148999902, 50.429698263000084 ], [ -119.201886703999918, 50.429676107000041 ], [ -119.202385018999905, 50.426374566000057 ], [ -119.202426686999956, 50.42609847700006 ], [ -119.202453632999948, 50.426100134000102 ], [ -119.202498263999956, 50.425804402000047 ], [ -119.202374760999959, 50.425796811000112 ], [ -119.20236972099994, 50.425830210000136 ], [ -119.197188466999975, 50.425511587000059 ], [ -119.197107144999961, 50.426050004000082 ], [ -119.196797405999959, 50.428100632000131 ], [ -119.195948095999924, 50.428048380000064 ], [ -119.195940967999945, 50.428095552000151 ], [ -119.190335021999914, 50.427750491000062 ], [ -119.190510147999959, 50.426592198000058 ], [ -119.190461405999926, 50.426589197000055 ], [ -119.190597802999974, 50.425687016000047 ], [ -119.186762850999941, 50.425450796000035 ], [ -119.186768493999949, 50.425413489000071 ], [ -119.186771592999918, 50.42539300100006 ], [ -119.186039071999929, 50.425347865000028 ], [ -119.186035971999914, 50.425368352000049 ], [ -119.186000596999961, 50.425602184000063 ], [ -119.183566373999938, 50.42545215800002 ], [ -119.184046670999948, 50.424583093000095 ], [ -119.184751695, 50.423822204 ], [ -119.185253612999986, 50.423374694000088 ], [ -119.190044979999954, 50.419513886000097 ], [ -119.191750610999961, 50.418139290000056 ], [ -119.191374350999936, 50.420628774000093 ], [ -119.190974336999972, 50.420604141000098 ], [ -119.190951339999984, 50.420756283000046 ], [ -119.188714924999928, 50.420618535000116 ], [ -119.188549136999924, 50.421714940000079 ], [ -119.189170643999944, 50.42175322500001 ], [ -119.189332357999945, 50.420683665000084 ], [ -119.194937421999967, 50.421028780000078 ], [ -119.194843782999925, 50.42164860400009 ], [ -119.197721549999955, 50.421825681000065 ], [ -119.197814060999988, 50.421213061000117 ], [ -119.199484241, 50.42131579700002 ], [ -119.199564202, 50.42078615300003 ], [ -119.195367293999979, 50.420527945000046 ], [ -119.195750601000015, 50.417990317000097 ], [ -119.192206175999928, 50.417772125000077 ], [ -119.19555386, 50.41507379000015 ], [ -119.199231387999987, 50.412109102000045 ], [ -119.199426710999958, 50.411945450000061 ], [ -119.199989135999957, 50.41147422300007 ], [ -119.201918385999974, 50.409857702000082 ], [ -119.204182372000034, 50.407592491000088 ], [ -119.204859923999976, 50.406914490000091 ], [ -119.204785205999954, 50.407409961000106 ], [ -119.205952629, 50.4074817240001 ], [ -119.207935643999974, 50.407603592000086 ], [ -119.207815689999919, 50.408399381000017 ], [ -119.21037522099999, 50.40855662600012 ], [ -119.209860120999949, 50.411974831000116 ], [ -119.214475424999989, 50.412258220000055 ], [ -119.213936562999919, 50.415835970000025 ], [ -119.21320253499999, 50.415790913000059 ], [ -119.213182833999937, 50.415921687000036 ], [ -119.211299827999966, 50.415806078000038 ], [ -119.210788213999962, 50.419201034000082 ], [ -119.209831198999908, 50.419142265000069 ], [ -119.209644803999979, 50.420378833000065 ], [ -119.209817944999941, 50.420389466000067 ], [ -119.209278616999939, 50.423967157000064 ], [ -119.20922454899997, 50.423963836000098 ], [ -119.209037740999932, 50.425202903000113 ], [ -119.209498284999981, 50.425231184000133 ], [ -119.209321624, 50.426402960000125 ], [ -119.209698159999931, 50.426426082000091 ], [ -119.209638739999917, 50.42682021600011 ], [ -119.209359766999967, 50.428670549000103 ], [ -119.209430521999934, 50.428674894000089 ], [ -119.20931539799993, 50.429438442000063 ], [ -119.209425375, 50.429445196000088 ], [ -119.209241450999954, 50.430665012000112 ], [ -119.212113472999974, 50.43084132300006 ], [ -119.211777196999932, 50.433072327000033 ], [ -119.215973903999895, 50.433329822000125 ], [ -119.21553629499995, 50.43623456200001 ], [ -119.205756950999941, 50.43608870700006 ], [ -119.205745866999933, 50.437052422000079 ], [ -119.205739151999936, 50.437638706000094 ], [ -119.205738062999927, 50.43774018000007 ], [ -119.203336458, 50.437769392000114 ], [ -119.200934681, 50.437798540000081 ], [ -119.200922069999962, 50.437526713000096 ], [ -119.20134420699992, 50.437518724000014 ], [ -119.201331697999962, 50.437249122000033 ], [ -119.202581543999955, 50.437225461000082 ] ], [ [ -119.210083263999948, 50.434868666000114 ], [ -119.21016411699999, 50.434332425000029 ], [ -119.209313456999979, 50.434280201000085 ], [ -119.209239509000028, 50.434770576000048 ], [ -119.209510334999948, 50.434787203000091 ], [ -119.209503418999944, 50.434833069000099 ], [ -119.210083263999948, 50.434868666000114 ] ], [ [ -119.20352990499994, 50.411647698000152 ], [ -119.203635123999945, 50.41095015300008 ], [ -119.202266581999979, 50.410866004000127 ], [ -119.202067841999934, 50.412183250000133 ], [ -119.201455794999958, 50.412145611000014 ], [ -119.201419224999896, 50.412387965000065 ], [ -119.200831710999935, 50.41235183100013 ], [ -119.200799409999959, 50.412565879000063 ], [ -119.200397543999941, 50.412541161000085 ], [ -119.200342408999987, 50.412906488000068 ], [ -119.198791469999918, 50.412811081000044 ], [ -119.198666877999983, 50.413636424000067 ], [ -119.198305349999941, 50.413614182000032 ], [ -119.19827816899999, 50.413794233000047 ], [ -119.197745960999924, 50.413761486000112 ], [ -119.197676665999921, 50.414220445000083 ], [ -119.197213889999929, 50.414191969000107 ], [ -119.197172374999951, 50.414466909000112 ], [ -119.19832405799994, 50.414537773000113 ], [ -119.198012393999974, 50.41660207000006 ], [ -119.198428996999979, 50.416627701000081 ], [ -119.198776003999953, 50.41432916600013 ], [ -119.201908530999944, 50.414521836000091 ], [ -119.20235310299995, 50.411575341000066 ], [ -119.20352990499994, 50.411647698000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "156.6", "sL_BldgLoss": "156.6", "sL_StrLoss": "156.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F27B220DECB5DC07F9A200BCD364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.18328660899999, 50.429745887000081 ], [ -119.183304307999961, 50.427002699000099 ], [ -119.18334231299994, 50.426340694000032 ], [ -119.183438497999973, 50.425863596000028 ], [ -119.183508430999936, 50.425636489000119 ], [ -119.18573377300001, 50.425773644000067 ], [ -119.185269437999949, 50.428842549000102 ], [ -119.185879578999931, 50.4288801470001 ], [ -119.185793810999911, 50.429447011000072 ], [ -119.189560750999988, 50.429376154000074 ], [ -119.189548311, 50.429106550000057 ], [ -119.191236569999916, 50.429074755000059 ], [ -119.191273916999975, 50.429883567000019 ], [ -119.19113175699999, 50.42988624500007 ], [ -119.191132092, 50.429782394000078 ], [ -119.190586846999977, 50.429779885000031 ], [ -119.188728686999966, 50.429771271000043 ], [ -119.187901975999978, 50.429767434000098 ], [ -119.18619489299999, 50.429759500000088 ], [ -119.185152524, 50.429754633000059 ], [ -119.18328660899999, 50.429745887000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35892417", "BldgCostT": "23336667", "sL_LossRatio": "0.998161538825086", "sL_AssetLoss": "2115.9", "sL_BldgLoss": "2112.01", "sL_StrLoss": "2110.6", "sL_NStrLoss": "1.41", "sL_ContLoss": "3.89", "geom_point": "0101000020E61000004855B01922CE5DC019B4C2BA92334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.214942700999984, 50.407172715000115 ], [ -119.215079839999959, 50.406261923000024 ], [ -119.214771757999941, 50.4062430110001 ], [ -119.21478080199995, 50.406182951000041 ], [ -119.214257045, 50.406150797000144 ], [ -119.214324765999947, 50.405701083000025 ], [ -119.214224879999946, 50.405702985000062 ], [ -119.214212312999962, 50.405433383000087 ], [ -119.212946768999942, 50.405457474000116 ], [ -119.212932789999911, 50.405157449000079 ], [ -119.212896524999948, 50.404379069000107 ], [ -119.213318363999932, 50.404371041000026 ], [ -119.213305799999887, 50.404101440000069 ], [ -119.212040291, 50.404125520000036 ], [ -119.212077958999942, 50.40493432400006 ], [ -119.210390582999949, 50.404966411000018 ], [ -119.210400187999966, 50.405172804000081 ], [ -119.210403129000014, 50.405236012000046 ], [ -119.209981282999976, 50.405244030000041 ], [ -119.209993826999948, 50.405513632000051 ], [ -119.20768935800001, 50.405557405000089 ], [ -119.207462726999978, 50.405561708000043 ], [ -119.207467413999922, 50.405662582000041 ], [ -119.207475256999913, 50.405831310000046 ], [ -119.207126751999937, 50.405837925000093 ], [ -119.207053402999989, 50.405839317000037 ], [ -119.207055556999975, 50.405885657000105 ], [ -119.207065932, 50.406108919000175 ], [ -119.206750088, 50.40611491300006 ], [ -119.206644076999964, 50.406116925000092 ], [ -119.206648471999983, 50.406211531000075 ], [ -119.206656602999942, 50.406386527000052 ], [ -119.206460503999892, 50.406390249000026 ], [ -119.205391026999948, 50.406410536000124 ], [ -119.205389805999928, 50.40638425300007 ], [ -119.205908109999953, 50.405865605000052 ], [ -119.206373486, 50.405470001000012 ], [ -119.20687860399994, 50.405148897000053 ], [ -119.207410995999965, 50.404871093000089 ], [ -119.208153469999942, 50.404569196000125 ], [ -119.209605855999911, 50.404094129000129 ], [ -119.212045122999953, 50.403296199000053 ], [ -119.212600905999977, 50.40305049800007 ], [ -119.213137419999953, 50.402726899000072 ], [ -119.213694292999918, 50.402267292000062 ], [ -119.214646871999918, 50.40109722200004 ], [ -119.215042259999919, 50.400611476000037 ], [ -119.215090577999931, 50.400552094000062 ], [ -119.215516443999931, 50.400022871000054 ], [ -119.216913582999922, 50.398286515000045 ], [ -119.217093373999944, 50.398063041000121 ], [ -119.227842738999982, 50.398087017000115 ], [ -119.227958167999958, 50.398087281000109 ], [ -119.228847491999957, 50.398089194000086 ], [ -119.228841151999973, 50.398529464000056 ], [ -119.228833508, 50.399060537000054 ], [ -119.228824446999937, 50.399690059000143 ], [ -119.228820033000019, 50.399996562000084 ], [ -119.228818597999975, 50.400094677000041 ], [ -119.228817816999936, 50.400149987000049 ], [ -119.228782391000024, 50.402737708000075 ], [ -119.228756616999988, 50.404648019000085 ], [ -119.228747888999962, 50.405291206000079 ], [ -119.228737002999978, 50.406014910000039 ], [ -119.22872754399998, 50.406644080000071 ], [ -119.228722782, 50.406960611000088 ], [ -119.226607630000032, 50.406831019000059 ], [ -119.226507040999962, 50.40750020399999 ], [ -119.220903415999928, 50.40715667900006 ], [ -119.220932516999966, 50.406963239000092 ], [ -119.220632296999966, 50.406944826000036 ], [ -119.22054628299999, 50.407516540000124 ], [ -119.214942700999984, 50.407172715000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5004167", "BldgCostT": "3241667", "sL_LossRatio": "0.97171211278056", "sL_AssetLoss": "323.46", "sL_BldgLoss": "314.31", "sL_StrLoss": "311", "sL_NStrLoss": "3.31", "sL_ContLoss": "9.15", "geom_point": "0101000020E61000009F9F568F83CE5DC0F469BA43AF374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.227866324, 50.432502775000088 ], [ -119.23123886499998, 50.432709224000085 ], [ -119.231184413999941, 50.432741906000039 ], [ -119.230440132999931, 50.433495370000038 ], [ -119.230013097000011, 50.433927706000119 ], [ -119.22990960099996, 50.434079297000068 ], [ -119.229662399999938, 50.43458501200007 ], [ -119.229392585999946, 50.434855490000125 ], [ -119.22833421899999, 50.435383793000057 ], [ -119.227950111999974, 50.435670795000043 ], [ -119.227800825999935, 50.435910804000073 ], [ -119.2276011099999, 50.436467310000062 ], [ -119.227400102999979, 50.436694090000067 ], [ -119.227098614999974, 50.436864284000094 ], [ -119.226042196999984, 50.43714360700006 ], [ -119.225527781999943, 50.437318795000067 ], [ -119.223316589999911, 50.438228968 ], [ -119.223844773999957, 50.434719089000076 ], [ -119.225798089999913, 50.434838737000078 ], [ -119.226074672999957, 50.433000035000063 ], [ -119.2277758809999, 50.433104213000064 ], [ -119.227866324, 50.432502775000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "185.3", "sL_BldgLoss": "185.3", "sL_StrLoss": "185.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FF8131906CE5DC0317D8E134F384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.218559311999911, 50.438105176000036 ], [ -119.222952795999916, 50.438374437000078 ], [ -119.221457799999882, 50.438961410000054 ], [ -119.221149325999988, 50.439150102000092 ], [ -119.221097703999959, 50.43919107700011 ], [ -119.220887385999987, 50.439358001000045 ], [ -119.22085258599995, 50.439394217000043 ], [ -119.220124001999977, 50.440152507000036 ], [ -119.219767284999975, 50.440482595000027 ], [ -119.219394798999971, 50.440766702000126 ], [ -119.218361901999941, 50.441424610000077 ], [ -119.217560474999971, 50.442403004000056 ], [ -119.216952689999985, 50.443144985000046 ], [ -119.216910802999948, 50.443196115000021 ], [ -119.217000009999978, 50.440301264000077 ], [ -119.218217316999969, 50.440375900000078 ], [ -119.218559311999911, 50.438105176000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "277.7", "sL_BldgLoss": "277.7", "sL_StrLoss": "277.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A567386D5FCC5DC00559262E8D374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.19396899899999, 50.438658277000066 ], [ -119.193668759999966, 50.438194640000056 ], [ -119.193597582999956, 50.437901944000046 ], [ -119.193353746999946, 50.43697490200001 ], [ -119.193324435999926, 50.43678556200009 ], [ -119.1933109, 50.436785916000112 ], [ -119.193099733999986, 50.434167806000055 ], [ -119.19125832, 50.434159308000091 ], [ -119.191187883999959, 50.433686388000091 ], [ -119.191117913000014, 50.433216287000022 ], [ -119.191119712, 50.432948234000044 ], [ -119.191124512999934, 50.43223729700005 ], [ -119.191126611999906, 50.431474608000073 ], [ -119.191129134999969, 50.430695811000106 ], [ -119.191311264999939, 50.430692379000014 ], [ -119.19132371399995, 50.430961982000071 ], [ -119.191745793999971, 50.430954030000052 ], [ -119.191767434999988, 50.431422547000061 ], [ -119.195032537999978, 50.4316234980001 ], [ -119.194631037999926, 50.434280422000072 ], [ -119.194955823000015, 50.434300406000055 ], [ -119.19488108899999, 50.434794944000011 ], [ -119.194916258999939, 50.434797108000055 ], [ -119.19437557699996, 50.438374662000051 ], [ -119.194274293999939, 50.438368431000072 ], [ -119.194260137999962, 50.438462098000116 ], [ -119.194513023999932, 50.438457327000037 ], [ -119.194553183999957, 50.439090980000117 ], [ -119.194317117999915, 50.438986109 ], [ -119.194110766999984, 50.438786451000105 ], [ -119.19396899899999, 50.438658277000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "141726870", "BldgCostT": "89668741", "sL_LossRatio": "0.99635944188328", "sL_AssetLoss": "10437.96", "sL_BldgLoss": "10399.96", "sL_StrLoss": "10386.2", "sL_NStrLoss": "13.76", "sL_ContLoss": "38", "geom_point": "0101000020E610000082374271CDCC5DC0FF1F71D932394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194322013999937, 50.450365424000054 ], [ -119.194290283999976, 50.449949112000084 ], [ -119.19417641299998, 50.449317405000031 ], [ -119.194055909, 50.448944393000069 ], [ -119.19377457, 50.448071299000105 ], [ -119.196825281999949, 50.447671321000072 ], [ -119.196666487999948, 50.447448500000121 ], [ -119.196387389, 50.446580088000069 ], [ -119.196814861999897, 50.446519548000026 ], [ -119.19700919899999, 50.446492 ], [ -119.197059384999974, 50.446477259000083 ], [ -119.197225410000016, 50.446428481000069 ], [ -119.19749018099999, 50.446286896000039 ], [ -119.19824562, 50.445782697000013 ], [ -119.19850750499999, 50.445575797000075 ], [ -119.198695202999943, 50.445307488 ], [ -119.198750807999971, 50.445032895000104 ], [ -119.198841905, 50.442257298000101 ], [ -119.197308009999958, 50.442266807000109 ], [ -119.197337683999962, 50.441470595000041 ], [ -119.19953684499994, 50.441455760000032 ], [ -119.199846489, 50.441453677000041 ], [ -119.200001593999929, 50.441452624000064 ], [ -119.20065780799996, 50.441448215000079 ], [ -119.202522471999956, 50.44144508800008 ], [ -119.203290176999971, 50.441443849000123 ], [ -119.20334655799999, 50.439523683000047 ], [ -119.203337741999974, 50.43809034300012 ], [ -119.203336320999952, 50.437857575000059 ], [ -119.203336458, 50.437769392000114 ], [ -119.205738062999927, 50.43774018000007 ], [ -119.205736874999957, 50.437850688000054 ], [ -119.205730988, 50.438452438000084 ], [ -119.205726954999975, 50.438704051000087 ], [ -119.205721747999959, 50.439282339000037 ], [ -119.205716056999961, 50.440088988000142 ], [ -119.205711813000036, 50.440539167000047 ], [ -119.205710025999906, 50.440732685000022 ], [ -119.205708784, 50.440868463000065 ], [ -119.205615540999986, 50.441270755000062 ], [ -119.205462655999895, 50.441487029000086 ], [ -119.207074193999944, 50.441502437000025 ], [ -119.20763849599993, 50.441507817000044 ], [ -119.207673884, 50.442492104000081 ], [ -119.205617684999964, 50.442456987000078 ], [ -119.205032118999938, 50.442380407000073 ], [ -119.204706132999931, 50.442234006000099 ], [ -119.204352886999928, 50.442380188000072 ], [ -119.203291267999973, 50.442608384000067 ], [ -119.20221962899997, 50.442817851000058 ], [ -119.201811180999968, 50.442866554000055 ], [ -119.201600020999933, 50.442891712000076 ], [ -119.20123147399994, 50.443018013000064 ], [ -119.200850287999955, 50.443293363000087 ], [ -119.200707333999929, 50.443537337000038 ], [ -119.20070218099994, 50.443578129000066 ], [ -119.200565151999939, 50.444665984000025 ], [ -119.200547033999968, 50.444926656000128 ], [ -119.200425389999964, 50.445329004000058 ], [ -119.200250006000019, 50.445693733000084 ], [ -119.200018607999979, 50.44603607700008 ], [ -119.200006217999913, 50.446049930000086 ], [ -119.199729180999938, 50.446359498000106 ], [ -119.199997006999965, 50.446440850000066 ], [ -119.200016026999904, 50.446446646000012 ], [ -119.201912800999963, 50.44646879800009 ], [ -119.202111213999927, 50.446471096000032 ], [ -119.202322789999954, 50.446473571000119 ], [ -119.204166217999926, 50.446495046000067 ], [ -119.204417546999935, 50.446497986000061 ], [ -119.204458671999987, 50.446498447000067 ], [ -119.204507501999942, 50.446578182000046 ], [ -119.204632405999973, 50.446612925000068 ], [ -119.204615593999961, 50.447013894000079 ], [ -119.204593702999944, 50.447534895000061 ], [ -119.2045826899999, 50.447833012000068 ], [ -119.204546819999948, 50.448661265000069 ], [ -119.202619580999951, 50.448650292000103 ], [ -119.202621516999898, 50.449369014000055 ], [ -119.202623198999959, 50.450276289000044 ], [ -119.202625717999979, 50.450915503000097 ], [ -119.202605471999917, 50.450977106000018 ], [ -119.202557490999979, 50.451123410000115 ], [ -119.202281722999928, 50.451337593000062 ], [ -119.201162, 50.451892509000103 ], [ -119.200934202999946, 50.45198598200006 ], [ -119.199987574999952, 50.45222658400008 ], [ -119.199675811999938, 50.452305789000071 ], [ -119.198405402999981, 50.452705191000149 ], [ -119.198327627999973, 50.452733827000024 ], [ -119.197625989999921, 50.4529921990001 ], [ -119.196846550999936, 50.453027868000042 ], [ -119.195176190999973, 50.453104303000011 ], [ -119.194841025999906, 50.453065605000063 ], [ -119.194551887999921, 50.452964814000076 ], [ -119.194360791999955, 50.452813101000082 ], [ -119.194349711999948, 50.452804296000053 ], [ -119.194349924999941, 50.452767024000089 ], [ -119.194355299999984, 50.451884941000102 ], [ -119.194361387999948, 50.450883209000047 ], [ -119.194322013999937, 50.450365424000054 ] ], [ [ -119.196600017999955, 50.450201629000112 ], [ -119.196600269000029, 50.450199961000095 ], [ -119.195166837999963, 50.450111812000038 ], [ -119.19516691699998, 50.450113499000082 ], [ -119.196600017999955, 50.450201629000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021086", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "423644561", "BldgCostT": "272991745", "sL_LossRatio": "0.983739363883285", "sL_AssetLoss": "12705.53", "sL_BldgLoss": "12498.93", "sL_StrLoss": "12424.2", "sL_NStrLoss": "74.73", "sL_ContLoss": "206.6", "geom_point": "0101000020E6100000EAB115B0B4CC5DC021FE48AE6E384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.197261481999988, 50.445993009000105 ], [ -119.197281108999945, 50.444861308000029 ], [ -119.19661027399999, 50.444864247000048 ], [ -119.195910393999966, 50.444867300000062 ], [ -119.195896711999978, 50.444424094000063 ], [ -119.195906897999976, 50.443233195000062 ], [ -119.195924423999926, 50.441478503000042 ], [ -119.194503494999964, 50.441490397000038 ], [ -119.193503202999977, 50.441508295000112 ], [ -119.193517882999942, 50.440035111000029 ], [ -119.194527791999974, 50.440018705000099 ], [ -119.194521074999926, 50.439810593000054 ], [ -119.194511861999956, 50.4395365190001 ], [ -119.194553183999957, 50.439090980000117 ], [ -119.194513023999932, 50.438457327000037 ], [ -119.194627416999964, 50.43845516800009 ], [ -119.194639888999959, 50.438724771000125 ], [ -119.195906333999986, 50.438700869000073 ], [ -119.195918813999981, 50.438970472000037 ], [ -119.196340964999976, 50.438962502000038 ], [ -119.196328481999927, 50.438692899000038 ], [ -119.197172778999985, 50.43867695300009 ], [ -119.197160291999936, 50.438407350000098 ], [ -119.198426726999969, 50.438383420000079 ], [ -119.198439220999958, 50.438653022000032 ], [ -119.199268893999943, 50.438637338000042 ], [ -119.19934424599991, 50.438138437000106 ], [ -119.200531322999936, 50.438211413000055 ], [ -119.200526691999983, 50.438111575 ], [ -119.200524945, 50.438073904000071 ], [ -119.200947085999985, 50.438065916000028 ], [ -119.200934681, 50.437798540000081 ], [ -119.203336458, 50.437769392000114 ], [ -119.203336320999952, 50.437857575000059 ], [ -119.203337741999974, 50.43809034300012 ], [ -119.20334655799999, 50.439523683000047 ], [ -119.203290176999971, 50.441443849000123 ], [ -119.202522471999956, 50.44144508800008 ], [ -119.20065780799996, 50.441448215000079 ], [ -119.200001593999929, 50.441452624000064 ], [ -119.199846489, 50.441453677000041 ], [ -119.19953684499994, 50.441455760000032 ], [ -119.197337683999962, 50.441470595000041 ], [ -119.197308009999958, 50.442266807000109 ], [ -119.198841905, 50.442257298000101 ], [ -119.198750807999971, 50.445032895000104 ], [ -119.198695202999943, 50.445307488 ], [ -119.19850750499999, 50.445575797000075 ], [ -119.19824562, 50.445782697000013 ], [ -119.19749018099999, 50.446286896000039 ], [ -119.197225410000016, 50.446428481000069 ], [ -119.197261481999988, 50.445993009000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "235.5", "sL_BldgLoss": "235.5", "sL_StrLoss": "235.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A05B9EBDE9C75DC04A71E182E4294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.12287131899997, 50.325439479000067 ], [ -119.126696484999968, 50.325677876000015 ], [ -119.126563863999962, 50.326548905000017 ], [ -119.126151715999967, 50.329255588000137 ], [ -119.120796910999957, 50.328921821000066 ], [ -119.120692984999977, 50.328229914000111 ], [ -119.120677467999897, 50.32812660300003 ], [ -119.120958590999976, 50.326281863000105 ], [ -119.121103747999925, 50.325329272000069 ], [ -119.12287131899997, 50.325439479000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "309", "sL_BldgLoss": "309", "sL_StrLoss": "309", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D6BFD296C6CA5DC05A3EDC1FB9284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.165845617999935, 50.316187371000098 ], [ -119.17143757, 50.316533717000084 ], [ -119.170896446, 50.320111689000093 ], [ -119.165304055999954, 50.31976531600003 ], [ -119.165845617999935, 50.316187371000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "199.3", "sL_BldgLoss": "199.3", "sL_StrLoss": "199.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039B57568FFCC5DC0D5B5EECD8C264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.202733617999954, 50.29997990800004 ], [ -119.206258917999918, 50.299957461000048 ], [ -119.205867580999922, 50.302559434000074 ], [ -119.205377757999955, 50.302529250000056 ], [ -119.200277091999951, 50.302214818000067 ], [ -119.199787275999967, 50.302184609000037 ], [ -119.200043459, 50.300482828000099 ], [ -119.200102998999967, 50.300314042000082 ], [ -119.200209574000027, 50.300011927000128 ], [ -119.200240483999892, 50.299924350000083 ], [ -119.202467803999923, 50.299981599000063 ], [ -119.202733617999954, 50.29997990800004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "165", "sL_BldgLoss": "165", "sL_StrLoss": "165", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E624DE158CD5DC01D126BAF8D264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.205981455999961, 50.302786879000053 ], [ -119.206116333999944, 50.301890112000137 ], [ -119.206104521999947, 50.301889384000098 ], [ -119.206395202999957, 50.299956591000068 ], [ -119.20861499899999, 50.299942397000045 ], [ -119.208616321999926, 50.299604606000095 ], [ -119.211497652999938, 50.2995919150001 ], [ -119.211417813999915, 50.300406197000029 ], [ -119.211035004999971, 50.300925994000124 ], [ -119.210895462999957, 50.301048380000033 ], [ -119.210521879999959, 50.301376099000066 ], [ -119.210423747999982, 50.301569774000036 ], [ -119.210148802999925, 50.302112403000059 ], [ -119.209729598999928, 50.302444286000068 ], [ -119.209147813999891, 50.302904290000072 ], [ -119.209091187999945, 50.302978442000047 ], [ -119.205981455999961, 50.302786879000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "197453834", "BldgCostT": "131968334", "sL_LossRatio": "0.999842346611947", "sL_AssetLoss": "12939.779", "sL_BldgLoss": "12937.739", "sL_StrLoss": "12937", "sL_NStrLoss": "0.739", "sL_ContLoss": "2.04", "geom_point": "0101000020E6100000E49415FD80CB5DC0DB50C5E814294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.203955986999944, 50.337567182000043 ], [ -119.203996720999953, 50.337296651000081 ], [ -119.2014418699999, 50.337139282000116 ], [ -119.201980783999971, 50.333561238000051 ], [ -119.202258500999946, 50.333578348000046 ], [ -119.202645108999917, 50.331011055000069 ], [ -119.198521182999983, 50.330756921000024 ], [ -119.198127164999946, 50.333371835000058 ], [ -119.197184683999964, 50.333313733000082 ], [ -119.197183519999896, 50.333321456000149 ], [ -119.191589298999972, 50.332976418000079 ], [ -119.191690210999965, 50.33230738300005 ], [ -119.187925428999961, 50.332075019000051 ], [ -119.18846535099999, 50.3284970180001 ], [ -119.19405899599991, 50.328842215000087 ], [ -119.193959290999913, 50.329503532000061 ], [ -119.197556199999937, 50.329725354000061 ], [ -119.197950217999932, 50.327110430000076 ], [ -119.198173147999924, 50.32712417500003 ], [ -119.198305044, 50.326248743000114 ], [ -119.198262330999952, 50.325323270000112 ], [ -119.198444993999914, 50.325319815000057 ], [ -119.198446856999979, 50.325307448000032 ], [ -119.192988191999959, 50.324970773000068 ], [ -119.193347060999955, 50.322590480000045 ], [ -119.193261261999908, 50.322585186 ], [ -119.193393319999984, 50.321709228000053 ], [ -119.192797707999929, 50.321672475000135 ], [ -119.192826584999949, 50.321480940000093 ], [ -119.191931485999973, 50.321425700000049 ], [ -119.191844857999953, 50.322000207000023 ], [ -119.190788214999955, 50.321934989000027 ], [ -119.190563082, 50.323427733000045 ], [ -119.187191010999967, 50.323219534000124 ], [ -119.187132842999958, 50.323605010000072 ], [ -119.18641501899998, 50.323560676000028 ], [ -119.186286052999961, 50.324415228000078 ], [ -119.185034741999942, 50.324337935000095 ], [ -119.184949420999914, 50.32490315700008 ], [ -119.18380065499997, 50.324832185000091 ], [ -119.18379377, 50.324877784000044 ], [ -119.183105247999919, 50.324835240000013 ], [ -119.18292559, 50.326025040000033 ], [ -119.183886172999976, 50.326084393 ], [ -119.183810431999959, 50.32658604300007 ], [ -119.185416357999941, 50.326685251000136 ], [ -119.184876217999957, 50.330263245000012 ], [ -119.179282467999954, 50.329917584000086 ], [ -119.179358263999958, 50.329415938000054 ], [ -119.17775225299998, 50.32931664200003 ], [ -119.177950292, 50.328006221000109 ], [ -119.177982644999972, 50.327792129000116 ], [ -119.177022033999918, 50.327732725000068 ], [ -119.177082871999986, 50.327330197000101 ], [ -119.173675756999927, 50.327119434000039 ], [ -119.173807726999954, 50.326246677000029 ], [ -119.17332530499999, 50.326216826000028 ], [ -119.173394875999975, 50.325756751000029 ], [ -119.168171174999912, 50.325433385000068 ], [ -119.168209005000023, 50.325183390000085 ], [ -119.168035306999968, 50.325172633000093 ], [ -119.167946532999963, 50.32575924300005 ], [ -119.167127532999956, 50.325708520000035 ], [ -119.16704982, 50.32622196300013 ], [ -119.165746543999944, 50.326141234000048 ], [ -119.16570836799994, 50.326393419000084 ], [ -119.16562619699999, 50.326936193000087 ], [ -119.164346469999956, 50.326856908000067 ], [ -119.164073648999988, 50.328658581000113 ], [ -119.16375465499999, 50.328548297000061 ], [ -119.163608027999913, 50.328558689000062 ], [ -119.162849812, 50.329233901000123 ], [ -119.161720056999968, 50.328692172000089 ], [ -119.154927221999984, 50.329172095000054 ], [ -119.153598906999918, 50.329089674000059 ], [ -119.153604393999956, 50.329053498000121 ], [ -119.15212096299993, 50.328961433000082 ], [ -119.152358001999986, 50.327398821000017 ], [ -119.15076955899994, 50.327300216000069 ], [ -119.150679203999971, 50.327895732000052 ], [ -119.147233708999963, 50.327681768000069 ], [ -119.147063997000018, 50.328799711000066 ], [ -119.144076226999957, 50.328614084000066 ], [ -119.143872992999917, 50.329952176000099 ], [ -119.135236371999952, 50.330560864000113 ], [ -119.135200950999945, 50.330558660000101 ], [ -119.135369324999914, 50.32945150400009 ], [ -119.135534570999937, 50.328364873000019 ], [ -119.135745020999963, 50.326980910000032 ], [ -119.135885837999965, 50.32698967200006 ], [ -119.136151399999932, 50.325243116000117 ], [ -119.136992832, 50.325295466000043 ], [ -119.137127562, 50.324409206000055 ], [ -119.148007045999961, 50.323847291000085 ], [ -119.14798628299998, 50.323286688000046 ], [ -119.149538381999903, 50.323383085000039 ], [ -119.149584838999914, 50.323076917000087 ], [ -119.149932168999953, 50.323098486000056 ], [ -119.14997674599999, 50.322804695000073 ], [ -119.147993640999957, 50.322681531000043 ], [ -119.148536605999951, 50.319103683000016 ], [ -119.150985380999913, 50.319255764000062 ], [ -119.151229370999914, 50.317647241000039 ], [ -119.154029922999939, 50.317821102000018 ], [ -119.154273016999937, 50.316217706000039 ], [ -119.156566337999934, 50.316360024000069 ], [ -119.156702654999947, 50.315460560000076 ], [ -119.162294446999923, 50.315807370000037 ], [ -119.161938301999953, 50.318159172000101 ], [ -119.1625383, 50.318196368000095 ], [ -119.162097950999936, 50.321104114000029 ], [ -119.1650586199999, 50.321287604000062 ], [ -119.165045247999984, 50.321375937000028 ], [ -119.16563878, 50.321412712000019 ], [ -119.165805290999941, 50.320312680000079 ], [ -119.171397750999944, 50.320659027000019 ], [ -119.171310765999934, 50.321234164000039 ], [ -119.172645625999976, 50.3213167910001 ], [ -119.172696153999979, 50.320982639000135 ], [ -119.173568581, 50.321036633000091 ], [ -119.173573913999959, 50.321001359000071 ], [ -119.17729284399995, 50.321231441000101 ], [ -119.177386772999967, 50.320609845000057 ], [ -119.178706754999979, 50.320691479000097 ], [ -119.178841452999933, 50.319799877000051 ], [ -119.180037934, 50.319873859000054 ], [ -119.180135857999986, 50.319225541 ], [ -119.177886850999982, 50.319086466000051 ], [ -119.17839907599999, 50.315696015000036 ], [ -119.176440035999974, 50.315574834000103 ], [ -119.176720513999953, 50.313718652000055 ], [ -119.177110326, 50.313890669000045 ], [ -119.177797149999932, 50.3141937400001 ], [ -119.178435506999946, 50.314475448000096 ], [ -119.178635414, 50.314539561000032 ], [ -119.178836585999946, 50.31460407100009 ], [ -119.17901611299996, 50.314636827000136 ], [ -119.179285599999929, 50.314686017000071 ], [ -119.179753959999957, 50.314724022000043 ], [ -119.181664687999941, 50.314674964000041 ], [ -119.181682371999969, 50.31467452100005 ], [ -119.182222230999926, 50.314660654000072 ], [ -119.182060312999937, 50.31573308500009 ], [ -119.18272618, 50.315774243000121 ], [ -119.182896910999929, 50.314643317000034 ], [ -119.183267838999924, 50.314633793000112 ], [ -119.184108293999884, 50.314612171000078 ], [ -119.184492299999988, 50.314479710000079 ], [ -119.184760890999911, 50.314261574000078 ], [ -119.184996370999897, 50.313869831000034 ], [ -119.185087386999925, 50.31350980900006 ], [ -119.18508668599992, 50.313461098000047 ], [ -119.185081851999897, 50.313125752000097 ], [ -119.18506417499998, 50.313030124000129 ], [ -119.184820723999934, 50.31171470200011 ], [ -119.184892013999928, 50.311457277000081 ], [ -119.185102076999939, 50.311121761000052 ], [ -119.185708978999969, 50.31070618800009 ], [ -119.185750350999939, 50.310677872000035 ], [ -119.187426099999968, 50.309875837000064 ], [ -119.187905389, 50.309560559 ], [ -119.188270904999911, 50.3092418580001 ], [ -119.18870894299998, 50.308666693000085 ], [ -119.188771278999951, 50.308602925000116 ], [ -119.189036447999982, 50.308331683000105 ], [ -119.189973341999973, 50.307373353000074 ], [ -119.190275807999953, 50.307210544000107 ], [ -119.19051206200001, 50.307150203000056 ], [ -119.190845886999938, 50.307125680000119 ], [ -119.191879272999955, 50.307148839000085 ], [ -119.191963250999976, 50.307174764000088 ], [ -119.192263469999929, 50.30726735800004 ], [ -119.192444880999972, 50.306915627000116 ], [ -119.193246223999907, 50.305951187000126 ], [ -119.194089854999973, 50.305542121000087 ], [ -119.19484222799997, 50.305177282000031 ], [ -119.196750755999972, 50.304251823000058 ], [ -119.197137602999987, 50.304064188000105 ], [ -119.197986059999963, 50.303704698000061 ], [ -119.19847865899996, 50.303495983000047 ], [ -119.198896912999928, 50.303135353000094 ], [ -119.199431790999938, 50.302477663000097 ], [ -119.199477249000012, 50.302363487000051 ], [ -119.201186056999987, 50.302468864000069 ], [ -119.200647449999948, 50.306047046000117 ], [ -119.200453142999947, 50.306035065000088 ], [ -119.20041653899996, 50.30627821100007 ], [ -119.201020921999913, 50.306315477000041 ], [ -119.200922014999946, 50.306972529000078 ], [ -119.201272177999925, 50.306994118000013 ], [ -119.201320911999971, 50.306670356000026 ], [ -119.202578547999934, 50.306747885000085 ], [ -119.202659378999925, 50.306210787000076 ], [ -119.203548327, 50.306265579000105 ], [ -119.20370979199997, 50.305192508000061 ], [ -119.205148297999955, 50.305281157000138 ], [ -119.205330982999982, 50.304066742 ], [ -119.208192345, 50.304243021000019 ], [ -119.20924870799999, 50.305448111 ], [ -119.209022478999898, 50.305589953000052 ], [ -119.208337487999984, 50.30601951000007 ], [ -119.208039306999936, 50.306285487000089 ], [ -119.207884680999911, 50.306488104000074 ], [ -119.207792304999941, 50.30669010500003 ], [ -119.207763397999926, 50.306838008000064 ], [ -119.20766407099994, 50.307345808000065 ], [ -119.20757079899991, 50.307525130000094 ], [ -119.207971130999937, 50.307649088000112 ], [ -119.20824437, 50.307661402000058 ], [ -119.208429726999981, 50.307582534000041 ], [ -119.208596023999917, 50.307461871000051 ], [ -119.208964384999945, 50.307010571000085 ], [ -119.209210888999962, 50.30687226100013 ], [ -119.209578974999928, 50.306854309000059 ], [ -119.209804256999959, 50.306895009000115 ], [ -119.209912691999975, 50.306914564000088 ], [ -119.209740862999951, 50.307396302000086 ], [ -119.209588383999957, 50.307823633000083 ], [ -119.209420428999948, 50.308058847000041 ], [ -119.209134233999976, 50.308339167000049 ], [ -119.208222029999916, 50.309104575000063 ], [ -119.207715406999952, 50.309452584000063 ], [ -119.20697166399999, 50.309867191000073 ], [ -119.205575300999982, 50.310596428000039 ], [ -119.205161592999929, 50.310757820000092 ], [ -119.204980987999988, 50.310805129000059 ], [ -119.204798809999929, 50.310852841000035 ], [ -119.203597616999943, 50.311025298000104 ], [ -119.203413704999917, 50.311069229000076 ], [ -119.201172692999961, 50.311604430000067 ], [ -119.200898589999952, 50.311691349000029 ], [ -119.200578332999939, 50.311850388000074 ], [ -119.200390819999924, 50.3120023540001 ], [ -119.200301959999962, 50.312074400000029 ], [ -119.200107356, 50.312335970000085 ], [ -119.200008628999953, 50.312583996000022 ], [ -119.199997684, 50.312611513000057 ], [ -119.199957587999933, 50.312712234000145 ], [ -119.199930930999955, 50.312882409000061 ], [ -119.199884082999944, 50.313181679000081 ], [ -119.199875877999915, 50.313550614000093 ], [ -119.199870140999906, 50.313808320000085 ], [ -119.199864571999925, 50.313832696000084 ], [ -119.199820635999941, 50.314024637000053 ], [ -119.19979841299994, 50.314135589000024 ], [ -119.199734979999974, 50.314452701000064 ], [ -119.199600693999969, 50.314801112000076 ], [ -119.19857060899993, 50.316066504000084 ], [ -119.198745995999943, 50.316147806000103 ], [ -119.199185515999915, 50.316181189000162 ], [ -119.199383594, 50.316224118000029 ], [ -119.199534401999927, 50.316300195000061 ], [ -119.199588311, 50.316352095000127 ], [ -119.20050394499999, 50.317233857000112 ], [ -119.200781492999937, 50.317501114000024 ], [ -119.201684718999942, 50.317978388000085 ], [ -119.202096694999909, 50.318260203000094 ], [ -119.202353802999966, 50.318563928000053 ], [ -119.202432104999943, 50.318656399000062 ], [ -119.20254901899996, 50.319011517000071 ], [ -119.20260930399999, 50.319194601000085 ], [ -119.202580558999927, 50.319609472000138 ], [ -119.202550392, 50.320045092000072 ], [ -119.202555483999902, 50.320056233000088 ], [ -119.202758525999954, 50.320500309000053 ], [ -119.202793726999957, 50.320630078000065 ], [ -119.202843730999973, 50.320814222000088 ], [ -119.202940306999949, 50.321169974000021 ], [ -119.203229797999882, 50.322236026000077 ], [ -119.203234192999929, 50.322252199000062 ], [ -119.203463187999887, 50.32293439400005 ], [ -119.203578608999948, 50.323442583000059 ], [ -119.203672555999944, 50.324335152000089 ], [ -119.203717386999969, 50.324761098000081 ], [ -119.20365389599999, 50.325276301000081 ], [ -119.20347469699999, 50.325810606000118 ], [ -119.203902393999911, 50.325969597000068 ], [ -119.203972637999954, 50.325980419000103 ], [ -119.204274794999918, 50.326026888000058 ], [ -119.205066478999953, 50.326084406000085 ], [ -119.20525630099999, 50.326098187000063 ], [ -119.205694503999936, 50.326346291000092 ], [ -119.206185304999948, 50.326724203 ], [ -119.206457412999939, 50.327007193000021 ], [ -119.206621218, 50.327363110000121 ], [ -119.206737103999956, 50.32786859600008 ], [ -119.206787516999952, 50.328584005000017 ], [ -119.206735700999957, 50.329014504000057 ], [ -119.206674718999949, 50.329521407000129 ], [ -119.206450888999939, 50.330117016000052 ], [ -119.20635597899999, 50.33025109600004 ], [ -119.206199292999941, 50.33035429100002 ], [ -119.20604568099999, 50.330568266000057 ], [ -119.205995012999949, 50.330638824000069 ], [ -119.204623828999956, 50.330554384000095 ], [ -119.204729106999977, 50.329855008000067 ], [ -119.204728019999948, 50.329854941000093 ], [ -119.204643081999919, 50.330419194000072 ], [ -119.20311170399998, 50.330324868000062 ], [ -119.20303004199999, 50.330867221000069 ], [ -119.205717194999963, 50.331032723000092 ], [ -119.205638891999968, 50.331245214000084 ], [ -119.205626086999942, 50.331330411000053 ], [ -119.205584008999935, 50.331610191000081 ], [ -119.20581971699994, 50.332651208000051 ], [ -119.20584948600002, 50.333456508000026 ], [ -119.20571438599994, 50.333951880000036 ], [ -119.20570781, 50.333975901000017 ], [ -119.205432709999968, 50.334509709000059 ], [ -119.204878303999948, 50.335332297000043 ], [ -119.204894091999961, 50.33542037900002 ], [ -119.204913584999957, 50.335529495000024 ], [ -119.204923911999956, 50.335545151000098 ], [ -119.205045701999964, 50.335729888000124 ], [ -119.205317191999882, 50.336008484000047 ], [ -119.205516605999961, 50.336325012000039 ], [ -119.20552935399995, 50.336345663000017 ], [ -119.205658408999966, 50.336554908000082 ], [ -119.205956288999985, 50.336808016000063 ], [ -119.206208383999979, 50.33707450200005 ], [ -119.206272679999984, 50.337328302000095 ], [ -119.20631201499999, 50.337483509000073 ], [ -119.206260422999918, 50.337549248000144 ], [ -119.204036503999973, 50.337566236000093 ], [ -119.203955986999944, 50.337567182000043 ] ], [ [ -119.20054736, 50.324470499000071 ], [ -119.200564487999941, 50.324356779000034 ], [ -119.199699476999967, 50.324303461000042 ], [ -119.200031202000019, 50.322100994000088 ], [ -119.199722709999918, 50.322081978000043 ], [ -119.199690216, 50.322297726000087 ], [ -119.19904209099991, 50.322257771000096 ], [ -119.198706112999901, 50.324488135000088 ], [ -119.199067825, 50.324510434000082 ], [ -119.199067274999905, 50.324498514000055 ], [ -119.20054736, 50.324470499000071 ] ], [ [ -119.187895725999937, 50.314649517000127 ], [ -119.188077762999981, 50.313442750000029 ], [ -119.186813333999908, 50.313364647000128 ], [ -119.186698897, 50.314123143000117 ], [ -119.186523435999959, 50.314112305 ], [ -119.186520787999953, 50.314129847000046 ], [ -119.185944777999936, 50.31409426200004 ], [ -119.185950641999909, 50.314222085000075 ], [ -119.18552959299997, 50.314230005000049 ], [ -119.18554216699998, 50.314504128000053 ], [ -119.187895725999937, 50.314649517000127 ] ], [ [ -119.191732562999931, 50.312752893000045 ], [ -119.191796442999959, 50.31232917300008 ], [ -119.188482616999963, 50.312124556000093 ], [ -119.188298953999947, 50.312113213000032 ], [ -119.188166184999901, 50.312993434000077 ], [ -119.191663739999939, 50.313209399000115 ], [ -119.191732562999931, 50.312752893000045 ] ], [ [ -119.194499222999951, 50.310707675000103 ], [ -119.194565873, 50.31026537400006 ], [ -119.192995893999949, 50.310168481000083 ], [ -119.19292922799994, 50.310610781000022 ], [ -119.194499222999951, 50.310707675000103 ] ], [ [ -119.196244481999912, 50.310025016000104 ], [ -119.196303102999948, 50.309635891000049 ], [ -119.195824439999981, 50.309606360000018 ], [ -119.19576581499993, 50.309995484000119 ], [ -119.196244481999912, 50.310025016000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11546833", "BldgCostT": "7963333", "sL_LossRatio": "1", "sL_AssetLoss": "784.6", "sL_BldgLoss": "784.6", "sL_StrLoss": "784.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD25702D8BCE5DC0DEC66647AA264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.228420738999915, 50.304536497000072 ], [ -119.228566422999947, 50.303564690000087 ], [ -119.225934426999942, 50.30340303 ], [ -119.226161294999883, 50.301890173000032 ], [ -119.226276951999935, 50.301118870000025 ], [ -119.226471004999965, 50.299824714000081 ], [ -119.226921254999979, 50.299852374000089 ], [ -119.226945673, 50.299689506000028 ], [ -119.226607901999941, 50.29966875700007 ], [ -119.226675983999954, 50.299214687000138 ], [ -119.226712576999915, 50.299222392000118 ], [ -119.226772572999948, 50.299288760000103 ], [ -119.226884445999985, 50.299398464000021 ], [ -119.227013168999932, 50.299666617000135 ], [ -119.22716741, 50.300064970000044 ], [ -119.227313141999957, 50.300419936000011 ], [ -119.227529800999932, 50.300677526000115 ], [ -119.227856609999947, 50.300856968000055 ], [ -119.227952429999959, 50.301075585 ], [ -119.228317515999933, 50.302465086000048 ], [ -119.228753293999887, 50.303085334000102 ], [ -119.228802875999932, 50.303501875000052 ], [ -119.228728702999902, 50.304555408000091 ], [ -119.228420738999915, 50.304536497000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021094", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10831500", "BldgCostT": "7470000", "sL_LossRatio": "1", "sL_AssetLoss": "821.4", "sL_BldgLoss": "821.4", "sL_StrLoss": "821.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C11B14C512CE5DC04D88145E5D264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.21635760099997, 50.300185772000077 ], [ -119.21637932699997, 50.300041099000055 ], [ -119.216451957999965, 50.300107906000051 ], [ -119.216657442999946, 50.300106863000039 ], [ -119.216782416999962, 50.300069782000058 ], [ -119.217244839000031, 50.299801877000085 ], [ -119.217655280999921, 50.299668669000013 ], [ -119.218594207, 50.299331477000074 ], [ -119.218989011999938, 50.299071439000031 ], [ -119.219479543999924, 50.298802017000057 ], [ -119.219795671999975, 50.298708601000058 ], [ -119.220202253999915, 50.298740952000038 ], [ -119.220544942999965, 50.29888353700008 ], [ -119.221033174999945, 50.298992134000081 ], [ -119.221833606, 50.299100437000043 ], [ -119.222155369999939, 50.299147230000052 ], [ -119.221947963000034, 50.30052957300007 ], [ -119.221787567999968, 50.300519713 ], [ -119.21635760099997, 50.300185772000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17114834", "BldgCostT": "11803334", "sL_LossRatio": "1", "sL_AssetLoss": "1079.4", "sL_BldgLoss": "1079.4", "sL_StrLoss": "1079.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7B4BBEE8ACE5DC0C0F1312F72274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.224333156999961, 50.31069969600005 ], [ -119.224713015999939, 50.308167595000015 ], [ -119.225305329999955, 50.308203983000084 ], [ -119.225430330999984, 50.30737060900001 ], [ -119.227479603999925, 50.307496480000026 ], [ -119.227650988999955, 50.306353458000089 ], [ -119.228149086, 50.30638404600009 ], [ -119.228273909999984, 50.305551470000076 ], [ -119.228698698999921, 50.305577554000081 ], [ -119.228721554999964, 50.305717774000094 ], [ -119.229003750999965, 50.306245469000025 ], [ -119.229118477999947, 50.306499120000119 ], [ -119.229242971999923, 50.308666266000152 ], [ -119.229321657999947, 50.308846706000111 ], [ -119.22960906599999, 50.309135496000088 ], [ -119.22742621399999, 50.309073837000028 ], [ -119.227296315999979, 50.30907264400004 ], [ -119.224845223, 50.30894585300009 ], [ -119.224856489999979, 50.310626653000071 ], [ -119.228069397999946, 50.310556703 ], [ -119.228071618999948, 50.310783551000107 ], [ -119.224333156999961, 50.31069969600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021097", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13110417", "BldgCostT": "9041667", "sL_LossRatio": "1", "sL_AssetLoss": "808", "sL_BldgLoss": "808", "sL_StrLoss": "808", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5A5F1EAA0CD5DC0EC52E1D7E1284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.211602323999941, 50.321648298000085 ], [ -119.211521421999961, 50.321309283000105 ], [ -119.210834775999956, 50.321341096000047 ], [ -119.211300735999913, 50.318242013000059 ], [ -119.214574080999952, 50.31844342100004 ], [ -119.21689328699992, 50.318586061000111 ], [ -119.216806347000016, 50.319164804000089 ], [ -119.214589673999939, 50.319105219000093 ], [ -119.213254512, 50.319660384000066 ], [ -119.212262409999937, 50.319744353000083 ], [ -119.21204963299999, 50.321594736000087 ], [ -119.211602323999941, 50.321648298000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021099", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "347400249", "BldgCostT": "231009999", "sL_LossRatio": "0.999880032149425", "sL_AssetLoss": "20422.138", "sL_BldgLoss": "20419.688", "sL_StrLoss": "20418.8", "sL_NStrLoss": "0.888", "sL_ContLoss": "2.45", "geom_point": "0101000020E6100000FD55B1DFB0CD5DC0C384A0BC72274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.205714941999958, 50.321578165000048 ], [ -119.205619714999955, 50.31868086 ], [ -119.20553730200001, 50.316173491000029 ], [ -119.207724298999892, 50.316147601000097 ], [ -119.207331205999964, 50.315421904000083 ], [ -119.206530800999957, 50.314908508000116 ], [ -119.205330217999972, 50.314130302000095 ], [ -119.205483971999939, 50.310955335000109 ], [ -119.206642130999938, 50.310863234000053 ], [ -119.206853199999927, 50.310532492000021 ], [ -119.207259808999979, 50.31013679000008 ], [ -119.20789, 50.309671017000049 ], [ -119.208000786999904, 50.309497200000052 ], [ -119.208222029999916, 50.309104575000063 ], [ -119.209134233999976, 50.308339167000049 ], [ -119.209420428999948, 50.308058847000041 ], [ -119.209588383999957, 50.307823633000083 ], [ -119.209740862999951, 50.307396302000086 ], [ -119.209912691999975, 50.306914564000088 ], [ -119.209804256999959, 50.306895009000115 ], [ -119.209578974999928, 50.306854309000059 ], [ -119.209210888999962, 50.30687226100013 ], [ -119.208964384999945, 50.307010571000085 ], [ -119.208596023999917, 50.307461871000051 ], [ -119.208429726999981, 50.307582534000041 ], [ -119.20824437, 50.307661402000058 ], [ -119.207971130999937, 50.307649088000112 ], [ -119.20757079899991, 50.307525130000094 ], [ -119.20766407099994, 50.307345808000065 ], [ -119.207763397999926, 50.306838008000064 ], [ -119.207792304999941, 50.30669010500003 ], [ -119.207884680999911, 50.306488104000074 ], [ -119.208039306999936, 50.306285487000089 ], [ -119.208337487999984, 50.30601951000007 ], [ -119.209022478999898, 50.305589953000052 ], [ -119.20924870799999, 50.305448111 ], [ -119.208192345, 50.304243021000019 ], [ -119.209089668999965, 50.304298286000041 ], [ -119.20906661199993, 50.303800757000104 ], [ -119.209908510999952, 50.303784750000034 ], [ -119.209896011999916, 50.303515144000073 ], [ -119.210737904999974, 50.30349913000002 ], [ -119.21071840499998, 50.303078645000028 ], [ -119.209091187999945, 50.302978442000047 ], [ -119.209147813999891, 50.302904290000072 ], [ -119.209729598999928, 50.302444286000068 ], [ -119.210148802999925, 50.302112403000059 ], [ -119.210423747999982, 50.301569774000036 ], [ -119.210521879999959, 50.301376099000066 ], [ -119.210895462999957, 50.301048380000033 ], [ -119.211035004999971, 50.300925994000124 ], [ -119.211417813999915, 50.300406197000029 ], [ -119.211497652999938, 50.2995919150001 ], [ -119.211982935, 50.299578243000056 ], [ -119.213535683999908, 50.299511100000075 ], [ -119.213471381999966, 50.299939118000083 ], [ -119.21394269299995, 50.299930140000157 ], [ -119.213922687000021, 50.299499349000079 ], [ -119.214780070999964, 50.299489779000034 ], [ -119.214801651999906, 50.299374083000032 ], [ -119.215601285999981, 50.299358838000074 ], [ -119.215626346999983, 50.29989805000006 ], [ -119.216047257999904, 50.299890024000014 ], [ -119.21607232400001, 50.300429235000117 ], [ -119.216493240999981, 50.300421207000099 ], [ -119.216543379999962, 50.301499628 ], [ -119.216964307999973, 50.301491598000084 ], [ -119.216976845999952, 50.301761204000044 ], [ -119.218660560999979, 50.301729070000135 ], [ -119.218685654999945, 50.302268280000135 ], [ -119.219527521999964, 50.302252203000101 ], [ -119.219502416999958, 50.301712994000084 ], [ -119.21992334499997, 50.301704953000076 ], [ -119.219910789999958, 50.301435348000041 ], [ -119.22132492599998, 50.301408325000061 ], [ -119.22285726399997, 50.301379022000106 ], [ -119.222907548999984, 50.30245744000009 ], [ -119.222486615999983, 50.302465491000049 ], [ -119.222499184999918, 50.302735094000106 ], [ -119.221657312999966, 50.302751194000066 ], [ -119.221669877999958, 50.303020798000091 ], [ -119.223353631999913, 50.302988595000031 ], [ -119.22336620599999, 50.303258199000012 ], [ -119.223787146999967, 50.303250144000046 ], [ -119.223799724999964, 50.303519748000099 ], [ -119.224220667999973, 50.303511693000139 ], [ -119.22427098699994, 50.304590107000088 ], [ -119.223850033999952, 50.304598164000055 ], [ -119.223862613999941, 50.304867768000058 ], [ -119.22428356799999, 50.30485971100002 ], [ -119.224308729999919, 50.305398919000076 ], [ -119.224729688999957, 50.305390860000045 ], [ -119.224830361999949, 50.307547690000064 ], [ -119.224409383999983, 50.307555749000073 ], [ -119.224421966999913, 50.307825352000101 ], [ -119.22358000599999, 50.307841466000077 ], [ -119.223592582999942, 50.308111069000077 ], [ -119.223171599999915, 50.308119123000026 ], [ -119.22319675199995, 50.308658332000078 ], [ -119.222775762999945, 50.308666386000013 ], [ -119.222863787000023, 50.310553613000145 ], [ -119.220758758999963, 50.310593858000061 ], [ -119.220746194999919, 50.310324254000072 ], [ -119.219062177999945, 50.31035642300003 ], [ -119.219049624999982, 50.310086819000027 ], [ -119.217365614999892, 50.31011896200004 ], [ -119.217315441000025, 50.309040542000041 ], [ -119.216052460999933, 50.309064634000052 ], [ -119.216039924999933, 50.308795028000098 ], [ -119.215618933, 50.308803056000073 ], [ -119.215606399999913, 50.308533451000066 ], [ -119.215185410999979, 50.308541477000105 ], [ -119.215210472999914, 50.309080686000058 ], [ -119.214789477999929, 50.309088711000058 ], [ -119.214889715, 50.311245553000099 ], [ -119.214404744999968, 50.3112547960001 ], [ -119.213205660999989, 50.311277638000028 ], [ -119.213193138999927, 50.311008032000075 ], [ -119.212351113999958, 50.311024065000026 ], [ -119.212363629999942, 50.311293671000065 ], [ -119.209481508999971, 50.311348503000055 ], [ -119.209323457999957, 50.312399626000087 ], [ -119.210551399999972, 50.312475225000142 ], [ -119.210013413999917, 50.316053406000016 ], [ -119.210000604999905, 50.316052618000057 ], [ -119.209955826999987, 50.316350408000091 ], [ -119.207426436999938, 50.316194669000041 ], [ -119.207379800999931, 50.316504702000024 ], [ -119.211005469999918, 50.316727922000034 ], [ -119.210467469999983, 50.320306086000066 ], [ -119.206343594999964, 50.320052185000044 ], [ -119.206286806999984, 50.320429614000027 ], [ -119.206740376999946, 50.320457547000053 ], [ -119.206577780999922, 50.321538229000055 ], [ -119.205714941999958, 50.321578165000048 ] ], [ [ -119.223121298, 50.307040709000077 ], [ -119.223108723999957, 50.306771105000053 ], [ -119.22268775199997, 50.306779157000072 ], [ -119.222675179999939, 50.306509553000097 ], [ -119.221833239999953, 50.306525654000083 ], [ -119.221820672999911, 50.306256049000105 ], [ -119.220978736999925, 50.306272143000101 ], [ -119.22096617499993, 50.306002540000073 ], [ -119.220545209, 50.306010585000131 ], [ -119.2205326499999, 50.305740979000092 ], [ -119.219690722999957, 50.305757064000048 ], [ -119.219678167000026, 50.305487460000052 ], [ -119.219257205999924, 50.305495500000049 ], [ -119.219219549999963, 50.304686686000082 ], [ -119.219640504000026, 50.304678646000049 ], [ -119.219615395999966, 50.304139436000078 ], [ -119.218773496000026, 50.304155514000087 ], [ -119.218760947999968, 50.303885909 ], [ -119.217077154999984, 50.303918046000028 ], [ -119.217089694999984, 50.304187652000017 ], [ -119.217510645999951, 50.304179620000063 ], [ -119.217548272999949, 50.304988435000013 ], [ -119.21796923, 50.30498040100008 ], [ -119.217981774999956, 50.305250007000041 ], [ -119.218402734999984, 50.305241971000079 ], [ -119.218440378999958, 50.30605078500011 ], [ -119.218019411999961, 50.306058821000114 ], [ -119.218031957999926, 50.306328426000022 ], [ -119.219715832999952, 50.306296274000054 ], [ -119.21972838899994, 50.306565878000086 ], [ -119.220149358999933, 50.306557836000088 ], [ -119.220161917999931, 50.30682744100006 ], [ -119.222266780999973, 50.306787208000081 ], [ -119.222279349999965, 50.307056812000042 ], [ -119.223121298, 50.307040709000077 ] ], [ [ -119.211938192000034, 50.302127068000118 ], [ -119.211895153999961, 50.301199478000079 ], [ -119.211862654999919, 50.301197477000116 ], [ -119.211722343999924, 50.302131177000099 ], [ -119.211938192000034, 50.302127068000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "67.9", "sL_BldgLoss": "67.9", "sL_StrLoss": "67.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D093475EAC65DC02C93A7CDB42C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.107697487999957, 50.347585922000121 ], [ -119.109008618999894, 50.34766779200006 ], [ -119.108961101999938, 50.348548899000072 ], [ -119.108625061999959, 50.349632351000089 ], [ -119.108343513999941, 50.350540086000123 ], [ -119.10820442, 50.350713499000051 ], [ -119.107928306999952, 50.351057701000073 ], [ -119.10776670499996, 50.351201891000088 ], [ -119.107150952999973, 50.351163441000068 ], [ -119.107697487999957, 50.347585922000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021101", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "261", "sL_BldgLoss": "261", "sL_StrLoss": "261", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A3179C12FC55DC0AB3E364DC8204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.079319652999956, 50.254924479000103 ], [ -119.079307944999954, 50.25381030900013 ], [ -119.082752899999917, 50.254026748000122 ], [ -119.08262796299995, 50.254843432000044 ], [ -119.083064346999947, 50.254870841000063 ], [ -119.082516985999959, 50.258448660000091 ], [ -119.079274348999931, 50.258244950000076 ], [ -119.079311084999958, 50.255553465000048 ], [ -119.079319652999956, 50.254924479000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "121147584", "BldgCostT": "81053334", "sL_LossRatio": "0.999601823579159", "sL_AssetLoss": "8714.73", "sL_BldgLoss": "8711.26", "sL_StrLoss": "8710", "sL_NStrLoss": "1.26", "sL_ContLoss": "3.47", "geom_point": "0101000020E61000006F58437783CD5DC00635C7E2CC244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.200127961999968, 50.299921454000071 ], [ -119.200325905999932, 50.298606415000052 ], [ -119.200815682999973, 50.298636622000096 ], [ -119.205006190999924, 50.29889496300008 ], [ -119.205139707999976, 50.298007288000079 ], [ -119.205090648999885, 50.298004264000056 ], [ -119.205587893999919, 50.294698091000036 ], [ -119.20466096, 50.294640959000141 ], [ -119.204827264999935, 50.293535245000101 ], [ -119.204298028999958, 50.293502622000048 ], [ -119.204162251999932, 50.294405294000029 ], [ -119.198572780999925, 50.294060591000061 ], [ -119.19874363699995, 50.292925626000063 ], [ -119.193943412999914, 50.292629367000117 ], [ -119.194482389999976, 50.289051157000088 ], [ -119.195931073999944, 50.289140589000048 ], [ -119.195940725999947, 50.289076490000078 ], [ -119.198633085999958, 50.289242648000069 ], [ -119.198917893, 50.28735045400007 ], [ -119.201151011999968, 50.287488219000103 ], [ -119.201126231999922, 50.286951244000086 ], [ -119.201547033999972, 50.286943273000126 ], [ -119.201509702999942, 50.286134445000101 ], [ -119.203192884999936, 50.286102542000123 ], [ -119.203220333, 50.286696780000064 ], [ -119.203285390999966, 50.286700792000019 ], [ -119.203375987999976, 50.286098454000076 ], [ -119.200618204999941, 50.285928365000117 ], [ -119.20115657599996, 50.282350092000044 ], [ -119.206744620999928, 50.282694669000108 ], [ -119.206612686999947, 50.283572341000117 ], [ -119.207229221, 50.283610341000063 ], [ -119.20775321399999, 50.280124037000093 ], [ -119.208979416999981, 50.28019960400006 ], [ -119.209148310999964, 50.279075566000067 ], [ -119.209911619999943, 50.279122599000061 ], [ -119.209975397999955, 50.278698084000034 ], [ -119.213556116999939, 50.278918647000083 ], [ -119.213995272999938, 50.275993769000081 ], [ -119.214125635999935, 50.276001797000063 ], [ -119.214601524000017, 50.272831774000068 ], [ -119.215535807999956, 50.27288930400006 ], [ -119.215773556999977, 50.2713051980001 ], [ -119.219578357999978, 50.271539398000073 ], [ -119.219792949999956, 50.270108687000047 ], [ -119.220570070999884, 50.270156505000038 ], [ -119.220630441, 50.269753947000019 ], [ -119.21983548599998, 50.269705032000047 ], [ -119.220067797999917, 50.268156051000055 ], [ -119.219672585999945, 50.268131730000043 ], [ -119.219759660999927, 50.267551146000045 ], [ -119.215061280999976, 50.267261904000073 ], [ -119.215598289, 50.26368347500005 ], [ -119.215747146999931, 50.263692641000134 ], [ -119.216272254999936, 50.260192882000062 ], [ -119.217563059999961, 50.260272365000056 ], [ -119.217869356000037, 50.263638701000019 ], [ -119.217864483999904, 50.264591807000045 ], [ -119.217766341999919, 50.267195861000111 ], [ -119.21776313, 50.26724640700013 ], [ -119.219903790999965, 50.267220153 ], [ -119.219933753999982, 50.267220119000079 ], [ -119.220071480999977, 50.267219944000026 ], [ -119.220209246, 50.267219761000035 ], [ -119.22034697399999, 50.267219587000056 ], [ -119.220622480999978, 50.267219252000082 ], [ -119.22076021, 50.267219077000071 ], [ -119.220897935999915, 50.267218902000096 ], [ -119.221035700999934, 50.267218717000041 ], [ -119.221173481999955, 50.267218555000071 ], [ -119.221311209999897, 50.26721838000001 ], [ -119.222443341999934, 50.267199229000063 ], [ -119.222738749999934, 50.267194258000075 ], [ -119.223950798999979, 50.267173797000069 ], [ -119.223814694999959, 50.267357716000021 ], [ -119.22361621099995, 50.268936300000099 ], [ -119.223383154999937, 50.269310710000056 ], [ -119.222900306999961, 50.270086366000051 ], [ -119.222752815999939, 50.270323290000114 ], [ -119.222768245999973, 50.271182006000046 ], [ -119.222636743999914, 50.27149543500007 ], [ -119.222233939, 50.271815311000054 ], [ -119.221541765999959, 50.272088423000106 ], [ -119.220951030999984, 50.272358738000094 ], [ -119.218484858999929, 50.273306714000064 ], [ -119.218257411999915, 50.273434556000069 ], [ -119.21800979599999, 50.273573779000088 ], [ -119.217750691, 50.273817171000076 ], [ -119.217577834999972, 50.274003725000107 ], [ -119.217460517999939, 50.274316855000066 ], [ -119.217439438999918, 50.274647526000123 ], [ -119.217423809999957, 50.274893318000082 ], [ -119.217462629999943, 50.275102834000094 ], [ -119.217402411999942, 50.275368972000102 ], [ -119.217096566999928, 50.276033254000026 ], [ -119.21699576899999, 50.276136020000131 ], [ -119.217163971999952, 50.276152513000063 ], [ -119.2175990099999, 50.275930756000065 ], [ -119.217923889999923, 50.275491626000054 ], [ -119.218117197, 50.275450710000058 ], [ -119.217858006, 50.275843816000062 ], [ -119.217550800999916, 50.276200492000072 ], [ -119.217476782999952, 50.276345813 ], [ -119.21749631599999, 50.276440897000107 ], [ -119.217501306999921, 50.276449481000043 ], [ -119.217701514999945, 50.276792999000122 ], [ -119.21769909299995, 50.276946495000082 ], [ -119.217694341999959, 50.277246304000052 ], [ -119.217692893999953, 50.277338696000065 ], [ -119.217821390000026, 50.277685206000093 ], [ -119.218285990999931, 50.278158918000024 ], [ -119.218345107999966, 50.278281692000064 ], [ -119.21834519399998, 50.278294815000024 ], [ -119.218345401999983, 50.278319370000105 ], [ -119.218351063999989, 50.279082005000099 ], [ -119.21835244299993, 50.279270956000047 ], [ -119.218358204, 50.28004580200006 ], [ -119.218330482999974, 50.281143587000045 ], [ -119.218317399999989, 50.281661190000072 ], [ -119.218247514999945, 50.281777756000096 ], [ -119.218236494999971, 50.281796100000058 ], [ -119.21804939799992, 50.281915509000036 ], [ -119.217977408999971, 50.281925933000046 ], [ -119.21780870799995, 50.281950382000012 ], [ -119.216907290999984, 50.281962607 ], [ -119.216866151, 50.283103371000038 ], [ -119.216836335999929, 50.283930099000038 ], [ -119.216833697999959, 50.284002996000048 ], [ -119.216863625999949, 50.285145429000053 ], [ -119.216868802999926, 50.285343289000046 ], [ -119.216869334999942, 50.285362668000069 ], [ -119.216877297999972, 50.285667011000029 ], [ -119.216941315999946, 50.286205006000095 ], [ -119.216947108999975, 50.286253590000051 ], [ -119.216948554999973, 50.286529637000129 ], [ -119.21694991599999, 50.286790520000082 ], [ -119.21695197299999, 50.28718839600004 ], [ -119.216961419999933, 50.287212737000061 ], [ -119.217020087999984, 50.287364103000094 ], [ -119.217161908999941, 50.287481184000114 ], [ -119.217685208999967, 50.287752595000022 ], [ -119.217860076999912, 50.287921409000042 ], [ -119.217951703999958, 50.288062410000045 ], [ -119.21799669899994, 50.288308090000029 ], [ -119.217982807999974, 50.288368733000027 ], [ -119.217637320999984, 50.289875888000033 ], [ -119.217669466999965, 50.289993167000034 ], [ -119.2176874099999, 50.290058597000098 ], [ -119.217800405999967, 50.290179295000044 ], [ -119.217990255999979, 50.290247737000129 ], [ -119.218081421999926, 50.290280609000099 ], [ -119.218250755999946, 50.290309932000056 ], [ -119.218331502999945, 50.290323914000084 ], [ -119.218603980999944, 50.290321796000036 ], [ -119.219611996999959, 50.290060496000059 ], [ -119.219805706999963, 50.289991195000056 ], [ -119.219961502999979, 50.289892400000099 ], [ -119.22032999299995, 50.289504312000112 ], [ -119.220437550999961, 50.289473842000035 ], [ -119.220518501999919, 50.289450905000095 ], [ -119.22071952499999, 50.289474092000049 ], [ -119.221433040999926, 50.289782852000101 ], [ -119.223146773999972, 50.290524390000058 ], [ -119.222753875999928, 50.290953401000067 ], [ -119.222682097999922, 50.291082627000073 ], [ -119.222666713999971, 50.291110290000049 ], [ -119.222644242999962, 50.291150713000079 ], [ -119.222545312999941, 50.291328807000099 ], [ -119.222429897999973, 50.291627799000061 ], [ -119.222338850999918, 50.292244276000055 ], [ -119.221773506999938, 50.292242876000103 ], [ -119.221467482999969, 50.292308979000076 ], [ -119.221268643999977, 50.292401030000072 ], [ -119.221112888999983, 50.292473092000058 ], [ -119.22073393099997, 50.29283290900004 ], [ -119.222252057999953, 50.293005117000092 ], [ -119.22199634699993, 50.295247143000054 ], [ -119.221881252999935, 50.296256279000097 ], [ -119.221846765999913, 50.296558437000051 ], [ -119.221846460999984, 50.296617251000058 ], [ -119.221842421999909, 50.297397738000022 ], [ -119.221833606, 50.299100437000043 ], [ -119.221033174999945, 50.298992134000081 ], [ -119.220544942999965, 50.29888353700008 ], [ -119.220202253999915, 50.298740952000038 ], [ -119.219795671999975, 50.298708601000058 ], [ -119.219479543999924, 50.298802017000057 ], [ -119.218989011999938, 50.299071439000031 ], [ -119.218594207, 50.299331477000074 ], [ -119.217655280999921, 50.299668669000013 ], [ -119.217244839000031, 50.299801877000085 ], [ -119.216782416999962, 50.300069782000058 ], [ -119.216657442999946, 50.300106863000039 ], [ -119.216451957999965, 50.300107906000051 ], [ -119.21637932699997, 50.300041099000055 ], [ -119.21654520099996, 50.298936464000121 ], [ -119.215107985999964, 50.298848030000059 ], [ -119.214932531999978, 50.298672515000099 ], [ -119.214902146000014, 50.29883536300013 ], [ -119.213648784, 50.298758224000039 ], [ -119.213535683999908, 50.299511100000075 ], [ -119.211982935, 50.299578243000056 ], [ -119.211497652999938, 50.2995919150001 ], [ -119.208616321999926, 50.299604606000095 ], [ -119.20861499899999, 50.299942397000045 ], [ -119.206395202999957, 50.299956591000068 ], [ -119.206427952999917, 50.299738825000041 ], [ -119.20644980499999, 50.299593514000037 ], [ -119.206314901999988, 50.299585202000102 ], [ -119.20629053099999, 50.299747251000021 ], [ -119.206258917999918, 50.299957461000048 ], [ -119.202733617999954, 50.29997990800004 ], [ -119.202467803999923, 50.299981599000063 ], [ -119.200240483999892, 50.299924350000083 ], [ -119.200209574000027, 50.300011927000128 ], [ -119.200102998999967, 50.300314042000082 ], [ -119.200043459, 50.300482828000099 ], [ -119.200127961999968, 50.299921454000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.1", "sL_BldgLoss": "39.1", "sL_StrLoss": "39.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8416D86E1CD5DC05DAF9FB4A6204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.216475867000014, 50.256352665000058 ], [ -119.216883329999987, 50.253636276000051 ], [ -119.216652757999981, 50.253622076000049 ], [ -119.216727055999925, 50.253126743000024 ], [ -119.216997625999952, 50.253129096000094 ], [ -119.2172321, 50.256399236000092 ], [ -119.216475867000014, 50.256352665000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026666", "BldgCostT": "3466666", "sL_LossRatio": "1", "sL_AssetLoss": "279.8", "sL_BldgLoss": "279.8", "sL_StrLoss": "279.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006070B4805CCB5DC03CFB253DE7254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.174996449999966, 50.294157325000072 ], [ -119.180585752999917, 50.294503219000035 ], [ -119.180045614999983, 50.298081336000102 ], [ -119.174455874000017, 50.297735416000116 ], [ -119.174996449999966, 50.294157325000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22730583", "BldgCostT": "14523333", "sL_LossRatio": "0.998238856506573", "sL_AssetLoss": "880.11", "sL_BldgLoss": "878.56", "sL_StrLoss": "878", "sL_NStrLoss": "0.56", "sL_ContLoss": "1.55", "geom_point": "0101000020E610000032CED713FACB5DC059D9800080274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.177110326, 50.313890669000045 ], [ -119.176720513999953, 50.313718652000055 ], [ -119.176980668999988, 50.311996814000089 ], [ -119.178978645999919, 50.312120404000034 ], [ -119.179172131999962, 50.310839357000063 ], [ -119.179255665999975, 50.31028626200002 ], [ -119.17953700399994, 50.310303662000081 ], [ -119.179546455999969, 50.310241068000096 ], [ -119.179690105999967, 50.310249952000099 ], [ -119.179695750999912, 50.310212571000122 ], [ -119.180499621999942, 50.310262283000057 ], [ -119.180500013999946, 50.31025969000008 ], [ -119.180693573000013, 50.310271660000062 ], [ -119.180701706999912, 50.310217795000106 ], [ -119.180901344999953, 50.310230139000026 ], [ -119.180911301999984, 50.310164199000013 ], [ -119.181174523999942, 50.31018047500006 ], [ -119.181178489999965, 50.310154205000039 ], [ -119.182934593999917, 50.310262773000041 ], [ -119.183046643999901, 50.309520446000086 ], [ -119.187409565999957, 50.309790054000118 ], [ -119.187592788999936, 50.308575386000037 ], [ -119.187014189999914, 50.308539641000017 ], [ -119.187553902999937, 50.30496153800005 ], [ -119.18884977099998, 50.305041590000059 ], [ -119.190562276999927, 50.305147355000017 ], [ -119.190652691999972, 50.304547607000075 ], [ -119.191915012999971, 50.304625552000111 ], [ -119.192054178999953, 50.303702238 ], [ -119.192280477999986, 50.303716209000065 ], [ -119.192428129999911, 50.302736524000103 ], [ -119.192560159999971, 50.301860445000045 ], [ -119.197940223999964, 50.302192474000101 ], [ -119.198150546999969, 50.302205448000059 ], [ -119.198139177999906, 50.302280952000075 ], [ -119.199477249000012, 50.302363487000051 ], [ -119.199431790999938, 50.302477663000097 ], [ -119.198896912999928, 50.303135353000094 ], [ -119.19847865899996, 50.303495983000047 ], [ -119.197986059999963, 50.303704698000061 ], [ -119.197137602999987, 50.304064188000105 ], [ -119.196750755999972, 50.304251823000058 ], [ -119.19484222799997, 50.305177282000031 ], [ -119.194089854999973, 50.305542121000087 ], [ -119.193246223999907, 50.305951187000126 ], [ -119.192444880999972, 50.306915627000116 ], [ -119.192263469999929, 50.30726735800004 ], [ -119.191963250999976, 50.307174764000088 ], [ -119.191879272999955, 50.307148839000085 ], [ -119.190845886999938, 50.307125680000119 ], [ -119.19051206200001, 50.307150203000056 ], [ -119.190275807999953, 50.307210544000107 ], [ -119.189973341999973, 50.307373353000074 ], [ -119.189036447999982, 50.308331683000105 ], [ -119.188771278999951, 50.308602925000116 ], [ -119.18870894299998, 50.308666693000085 ], [ -119.188270904999911, 50.3092418580001 ], [ -119.187905389, 50.309560559 ], [ -119.187426099999968, 50.309875837000064 ], [ -119.185750350999939, 50.310677872000035 ], [ -119.185708978999969, 50.31070618800009 ], [ -119.185102076999939, 50.311121761000052 ], [ -119.184892013999928, 50.311457277000081 ], [ -119.184820723999934, 50.31171470200011 ], [ -119.18506417499998, 50.313030124000129 ], [ -119.185081851999897, 50.313125752000097 ], [ -119.18508668599992, 50.313461098000047 ], [ -119.185087386999925, 50.31350980900006 ], [ -119.184996370999897, 50.313869831000034 ], [ -119.184760890999911, 50.314261574000078 ], [ -119.184492299999988, 50.314479710000079 ], [ -119.184108293999884, 50.314612171000078 ], [ -119.183267838999924, 50.314633793000112 ], [ -119.182896910999929, 50.314643317000034 ], [ -119.182942179999955, 50.314343456000039 ], [ -119.18342911499991, 50.314373552000042 ], [ -119.183424348999949, 50.314269576000079 ], [ -119.183845398999949, 50.314261664000107 ], [ -119.183843099999962, 50.314211505000053 ], [ -119.182304399999936, 50.314116401000014 ], [ -119.182222230999926, 50.314660654000072 ], [ -119.181682371999969, 50.31467452100005 ], [ -119.181664687999941, 50.314674964000041 ], [ -119.179753959999957, 50.314724022000043 ], [ -119.179285599999929, 50.314686017000071 ], [ -119.17901611299996, 50.314636827000136 ], [ -119.178836585999946, 50.31460407100009 ], [ -119.178635414, 50.314539561000032 ], [ -119.178435506999946, 50.314475448000096 ], [ -119.177797149999932, 50.3141937400001 ], [ -119.177110326, 50.313890669000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "157.7", "sL_BldgLoss": "157.7", "sL_StrLoss": "157.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000313B0F170EC95DC0690A112E6C294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.137127562, 50.324409206000055 ], [ -119.137376582999977, 50.322771037000109 ], [ -119.142969130999973, 50.323118821000037 ], [ -119.142940970999973, 50.323304218000089 ], [ -119.144370697999975, 50.323393082000081 ], [ -119.144313806999932, 50.323767727000075 ], [ -119.145411038999953, 50.323835912000085 ], [ -119.145517710999925, 50.323133325000057 ], [ -119.14798628299998, 50.323286688000046 ], [ -119.148007045999961, 50.323847291000085 ], [ -119.137127562, 50.324409206000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82999667", "BldgCostT": "55006667", "sL_LossRatio": "0.999199144194965", "sL_AssetLoss": "5132.01", "sL_BldgLoss": "5127.9", "sL_StrLoss": "5126.4", "sL_NStrLoss": "1.5", "sL_ContLoss": "4.11", "geom_point": "0101000020E61000007261495E82CE5DC0A7908E1FE8224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.226896810999946, 50.28010769100009 ], [ -119.226652199999975, 50.280065596000078 ], [ -119.22607889199999, 50.280061900000085 ], [ -119.224108007999959, 50.280070807000051 ], [ -119.221130591999952, 50.280057882000044 ], [ -119.218358204, 50.28004580200006 ], [ -119.21835244299993, 50.279270956000047 ], [ -119.218351063999989, 50.279082005000099 ], [ -119.218345401999983, 50.278319370000105 ], [ -119.21834519399998, 50.278294815000024 ], [ -119.218345107999966, 50.278281692000064 ], [ -119.218285990999931, 50.278158918000024 ], [ -119.217821390000026, 50.277685206000093 ], [ -119.217692893999953, 50.277338696000065 ], [ -119.217694341999959, 50.277246304000052 ], [ -119.21769909299995, 50.276946495000082 ], [ -119.217701514999945, 50.276792999000122 ], [ -119.217501306999921, 50.276449481000043 ], [ -119.21749631599999, 50.276440897000107 ], [ -119.217476782999952, 50.276345813 ], [ -119.217550800999916, 50.276200492000072 ], [ -119.217858006, 50.275843816000062 ], [ -119.218117197, 50.275450710000058 ], [ -119.217923889999923, 50.275491626000054 ], [ -119.2175990099999, 50.275930756000065 ], [ -119.217163971999952, 50.276152513000063 ], [ -119.21699576899999, 50.276136020000131 ], [ -119.217096566999928, 50.276033254000026 ], [ -119.217402411999942, 50.275368972000102 ], [ -119.217462629999943, 50.275102834000094 ], [ -119.217423809999957, 50.274893318000082 ], [ -119.217439438999918, 50.274647526000123 ], [ -119.217460517999939, 50.274316855000066 ], [ -119.217577834999972, 50.274003725000107 ], [ -119.217750691, 50.273817171000076 ], [ -119.21800979599999, 50.273573779000088 ], [ -119.218257411999915, 50.273434556000069 ], [ -119.218484858999929, 50.273306714000064 ], [ -119.220951030999984, 50.272358738000094 ], [ -119.221541765999959, 50.272088423000106 ], [ -119.222233939, 50.271815311000054 ], [ -119.222636743999914, 50.27149543500007 ], [ -119.222768245999973, 50.271182006000046 ], [ -119.222752815999939, 50.270323290000114 ], [ -119.222900306999961, 50.270086366000051 ], [ -119.223383154999937, 50.269310710000056 ], [ -119.22361621099995, 50.268936300000099 ], [ -119.223814694999959, 50.267357716000021 ], [ -119.223950798999979, 50.267173797000069 ], [ -119.2243276899999, 50.267169905000117 ], [ -119.22462541099999, 50.26711140599999 ], [ -119.22483661699998, 50.267018804000038 ], [ -119.224988510999935, 50.266908011000069 ], [ -119.225100706999953, 50.266761500000037 ], [ -119.225156291999923, 50.266578909 ], [ -119.225143984999988, 50.265351746000086 ], [ -119.22512488299999, 50.263449399000102 ], [ -119.225703241999923, 50.263451266000061 ], [ -119.226241235999964, 50.26345298800004 ], [ -119.226262940999945, 50.263453050000123 ], [ -119.227947961999973, 50.263458431000053 ], [ -119.229716088999965, 50.263464042000081 ], [ -119.230932785999954, 50.263467906000066 ], [ -119.230927193999904, 50.264746235000054 ], [ -119.230924498, 50.265375547000097 ], [ -119.230921508999984, 50.266058783000041 ], [ -119.230916592999932, 50.2671812070001 ], [ -119.23589425499992, 50.267175581000082 ], [ -119.236748406999936, 50.267174607000072 ], [ -119.23754637899999, 50.268878495000102 ], [ -119.237709401999965, 50.269088999000125 ], [ -119.237950994999935, 50.269311402000035 ], [ -119.23881129199998, 50.269892397000078 ], [ -119.239078712999941, 50.270017099000036 ], [ -119.239386007999883, 50.270101898000057 ], [ -119.239809098999928, 50.270147689000083 ], [ -119.239999154999907, 50.272122317000061 ], [ -119.241106264999985, 50.272138977000019 ], [ -119.241099418999966, 50.272288040000106 ], [ -119.236926538999967, 50.272032 ], [ -119.237000348999985, 50.271538654 ], [ -119.236839768999943, 50.271528799000123 ], [ -119.237022068, 50.270310274000089 ], [ -119.234587880999968, 50.270160839000013 ], [ -119.234634662999895, 50.269848241000069 ], [ -119.2345092, 50.269840537000114 ], [ -119.234565009999969, 50.269467622000029 ], [ -119.234438223999987, 50.269459836000109 ], [ -119.234447031999935, 50.269400986000072 ], [ -119.233695611999934, 50.269354844000077 ], [ -119.233694035999946, 50.269365382000061 ], [ -119.233193364, 50.269334635000085 ], [ -119.233183715999957, 50.269399094000129 ], [ -119.23203650399995, 50.269328631000036 ], [ -119.232029664, 50.269374320000082 ], [ -119.231126514999957, 50.269318840000082 ], [ -119.231077238999902, 50.269647942000134 ], [ -119.230776163999963, 50.269629445000049 ], [ -119.230682453999975, 50.270255249000058 ], [ -119.23032342499998, 50.270233191000031 ], [ -119.22982370099993, 50.273569961000121 ], [ -119.228537845999938, 50.273490950000095 ], [ -119.228348304999955, 50.274756191000066 ], [ -119.227709106999896, 50.274716909000091 ], [ -119.227704083999939, 50.274750438000112 ], [ -119.229721674999965, 50.274874416000031 ], [ -119.229692218999958, 50.275071076000124 ], [ -119.22974008599999, 50.275074016000055 ], [ -119.229676918999957, 50.275495737000057 ], [ -119.22974821499993, 50.275500117000036 ], [ -119.229665182999923, 50.276054461000065 ], [ -119.229732852999959, 50.276058618000135 ], [ -119.229697333999979, 50.276295748000095 ], [ -119.229714770000029, 50.276296820000042 ], [ -119.229513572999977, 50.27764001200007 ], [ -119.229521967999943, 50.277640528000099 ], [ -119.229462294999905, 50.278038892000097 ], [ -119.231378136, 50.278156578000093 ], [ -119.231329002999971, 50.2784846650001 ], [ -119.232509221999948, 50.278557147000086 ], [ -119.23241918899997, 50.279158441000085 ], [ -119.231587608, 50.279353083000039 ], [ -119.231172663999985, 50.279520790000078 ], [ -119.230957339000014, 50.279607789000067 ], [ -119.229968027999945, 50.280282861000039 ], [ -119.229104130999957, 50.280807599000049 ], [ -119.228679818999936, 50.280910631000026 ], [ -119.228075108, 50.280947523000044 ], [ -119.227351586999958, 50.280902152000053 ], [ -119.227195266999928, 50.280815842000045 ], [ -119.227085924, 50.280285416000083 ], [ -119.227016613999965, 50.280173698000091 ], [ -119.226896810999946, 50.28010769100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021111", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10239417", "BldgCostT": "7061667", "sL_LossRatio": "1", "sL_AssetLoss": "1009.2", "sL_BldgLoss": "1009.2", "sL_StrLoss": "1009.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000071606A3240CF5DC06936EA7C53234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.23383129099993, 50.278880214000075 ], [ -119.23401721499999, 50.277638231000061 ], [ -119.234939499999939, 50.277694851000049 ], [ -119.234988188999978, 50.277369552000117 ], [ -119.235471502999985, 50.277399221000039 ], [ -119.235748357999952, 50.275549265000066 ], [ -119.237563181999988, 50.275660649000045 ], [ -119.237970906999976, 50.272935210000114 ], [ -119.238396639999948, 50.272961334000037 ], [ -119.238449504999963, 50.272607918000062 ], [ -119.240891959999971, 50.272757767 ], [ -119.240889193999934, 50.272698867000045 ], [ -119.241309860999962, 50.272690753000127 ], [ -119.241297246999949, 50.272422190000079 ], [ -119.241618213, 50.272452596000065 ], [ -119.24129520299999, 50.274820790000021 ], [ -119.241290346, 50.274931665000111 ], [ -119.241245764999931, 50.275950721000072 ], [ -119.23998990699999, 50.275947150000015 ], [ -119.239976485999975, 50.277303912000029 ], [ -119.239870455999977, 50.278407862000066 ], [ -119.239753457999981, 50.278411752000089 ], [ -119.239268458999931, 50.27842787900002 ], [ -119.238543681999957, 50.278419517000032 ], [ -119.238274822999955, 50.278454472000135 ], [ -119.23666309399999, 50.278843119000065 ], [ -119.23626228699996, 50.27890248000007 ], [ -119.236167270999928, 50.278897088000093 ], [ -119.235863892999973, 50.278879826000022 ], [ -119.235065708999983, 50.278749592000025 ], [ -119.234828212999929, 50.278729026000072 ], [ -119.234671823999975, 50.278715472000044 ], [ -119.23447520399999, 50.278754016000043 ], [ -119.23383129099993, 50.278880214000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "100594834", "BldgCostT": "64953334", "sL_LossRatio": "1", "sL_AssetLoss": "6249", "sL_BldgLoss": "6249", "sL_StrLoss": "6249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7A401B494CF5DC014360BCD58234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.243096481999928, 50.277443804000058 ], [ -119.242237313999908, 50.277316210000109 ], [ -119.241287995000036, 50.277301290000054 ], [ -119.239976485999975, 50.277303912000029 ], [ -119.23998990699999, 50.275947150000015 ], [ -119.241245764999931, 50.275950721000072 ], [ -119.241290346, 50.274931665000111 ], [ -119.24129520299999, 50.274820790000021 ], [ -119.242715452999931, 50.274831002000141 ], [ -119.24288070399993, 50.27483219200014 ], [ -119.243124882999965, 50.274802092000073 ], [ -119.243459218999988, 50.274753105000023 ], [ -119.243674527999971, 50.274744251000079 ], [ -119.243839306999959, 50.274737484000077 ], [ -119.244207592999956, 50.274744786000092 ], [ -119.244205541999975, 50.275635939000018 ], [ -119.244203211999945, 50.276660310000089 ], [ -119.244457706999953, 50.276815800000037 ], [ -119.244608089999986, 50.276679198000053 ], [ -119.245142820999959, 50.276193399000071 ], [ -119.245284093999913, 50.275936594000065 ], [ -119.245264283999987, 50.274748200000047 ], [ -119.247020783000011, 50.274738440000121 ], [ -119.247017789, 50.275512912000075 ], [ -119.247004396999941, 50.27624429700009 ], [ -119.24693551199999, 50.27634749300011 ], [ -119.24668339899992, 50.276383483000096 ], [ -119.246406984999922, 50.276393597000016 ], [ -119.246079577999936, 50.276508996000082 ], [ -119.245685503999979, 50.276882105000013 ], [ -119.245046996999918, 50.277522802000071 ], [ -119.244863194999965, 50.277592785000088 ], [ -119.244615403999944, 50.277609209000111 ], [ -119.244091112999968, 50.277551699000085 ], [ -119.243096481999928, 50.277443804000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021113", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "115738166", "BldgCostT": "76661666", "sL_LossRatio": "0.999058048292661", "sL_AssetLoss": "7229.67", "sL_BldgLoss": "7222.86", "sL_StrLoss": "7220.4", "sL_NStrLoss": "2.46", "sL_ContLoss": "6.81", "geom_point": "0101000020E610000075DB2A2D08D05DC08F5E81A6AD244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.253829606999972, 50.290056264000086 ], [ -119.253799089999944, 50.289231110000081 ], [ -119.249351396999927, 50.289271205000013 ], [ -119.245817594999934, 50.289281306000063 ], [ -119.245823404999967, 50.287959103000063 ], [ -119.24581888599991, 50.286281877000064 ], [ -119.245816636999976, 50.285454569000123 ], [ -119.245814300999911, 50.284586506000039 ], [ -119.245812711999932, 50.283889391000052 ], [ -119.24634475, 50.283889428000066 ], [ -119.246342748999936, 50.283661256000087 ], [ -119.246715589999937, 50.283659764000049 ], [ -119.246756494999957, 50.283372222000125 ], [ -119.249855524999987, 50.283357669000061 ], [ -119.249994049999913, 50.28251979000003 ], [ -119.25071875799992, 50.282507522000074 ], [ -119.250781483999958, 50.281935821000097 ], [ -119.251282076999942, 50.281933120000126 ], [ -119.252051593999937, 50.281928953000069 ], [ -119.25211158499999, 50.282825066000065 ], [ -119.252598736999971, 50.282824245000079 ], [ -119.252565637999936, 50.281926150000096 ], [ -119.252975284999977, 50.281923938000034 ], [ -119.253767919999973, 50.281921898000057 ], [ -119.253668677999897, 50.282406489000039 ], [ -119.253481506999947, 50.283320911000082 ], [ -119.253515985999954, 50.283807786000118 ], [ -119.253575863999913, 50.28401498800006 ], [ -119.253776288999944, 50.284708498000086 ], [ -119.253868288999939, 50.285199861000066 ], [ -119.25392851099997, 50.28552130900006 ], [ -119.253986458999933, 50.285679067000068 ], [ -119.254014008999931, 50.285753977000063 ], [ -119.254038783999988, 50.285821496000089 ], [ -119.25392486199992, 50.287113527000066 ], [ -119.2538536, 50.287921793000038 ], [ -119.253835286999902, 50.288361927000103 ], [ -119.254454328999927, 50.288367692000044 ], [ -119.254419153999976, 50.289248420000064 ], [ -119.255684158999912, 50.289283719000125 ], [ -119.256667562999922, 50.289296676000049 ], [ -119.256665911999917, 50.289360841000089 ], [ -119.255775062999973, 50.289345581000106 ], [ -119.255783113999911, 50.289508853 ], [ -119.25578356699998, 50.289517895000159 ], [ -119.255816548999974, 50.290185668000078 ], [ -119.255827252999921, 50.290413231000102 ], [ -119.255087741999915, 50.290555591000043 ], [ -119.254416130999971, 50.293321557000077 ], [ -119.253442644999936, 50.293262318000117 ], [ -119.253514085999967, 50.292776921000083 ], [ -119.253846712999987, 50.290517791000113 ], [ -119.253829606999972, 50.290056264000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "417703665", "BldgCostT": "243071111", "sL_LossRatio": "0.958190069618124", "sL_AssetLoss": "12482.6804358", "sL_BldgLoss": "11960.7804358", "sL_StrLoss": "11771.9004358", "sL_NStrLoss": "188.88", "sL_ContLoss": "521.9", "geom_point": "0101000020E6100000CFD3EC26DDD05DC0937FCA84A1244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254545770999954, 50.294076434000075 ], [ -119.254571993999946, 50.293862886000049 ], [ -119.253364413999989, 50.293793650000111 ], [ -119.253442644999936, 50.293262318000117 ], [ -119.254416130999971, 50.293321557000077 ], [ -119.255087741999915, 50.290555591000043 ], [ -119.255827252999921, 50.290413231000102 ], [ -119.255816548999974, 50.290185668000078 ], [ -119.25578356699998, 50.289517895000159 ], [ -119.255783113999911, 50.289508853 ], [ -119.255775062999973, 50.289345581000106 ], [ -119.256665911999917, 50.289360841000089 ], [ -119.256667562999922, 50.289296676000049 ], [ -119.255684158999912, 50.289283719000125 ], [ -119.254419153999976, 50.289248420000064 ], [ -119.254454328999927, 50.288367692000044 ], [ -119.253835286999902, 50.288361927000103 ], [ -119.2538536, 50.287921793000038 ], [ -119.25392486199992, 50.287113527000066 ], [ -119.254038783999988, 50.285821496000089 ], [ -119.254014008999931, 50.285753977000063 ], [ -119.253986458999933, 50.285679067000068 ], [ -119.25392851099997, 50.28552130900006 ], [ -119.253868288999939, 50.285199861000066 ], [ -119.253776288999944, 50.284708498000086 ], [ -119.253575863999913, 50.28401498800006 ], [ -119.253515985999954, 50.283807786000118 ], [ -119.253481506999947, 50.283320911000082 ], [ -119.253668677999897, 50.282406489000039 ], [ -119.253767919999973, 50.281921898000057 ], [ -119.254933785, 50.281912899000076 ], [ -119.257785619999979, 50.281932196000106 ], [ -119.258450642999961, 50.281936670000078 ], [ -119.262375460999962, 50.281947369000086 ], [ -119.263264271999958, 50.281943012000077 ], [ -119.266524464999947, 50.281967084000037 ], [ -119.266721522999944, 50.281969216000064 ], [ -119.268303601999889, 50.281967441000049 ], [ -119.269442125999959, 50.281969163000099 ], [ -119.269971049, 50.281969957000072 ], [ -119.270527587999965, 50.281972356000054 ], [ -119.271306834999933, 50.281978949000127 ], [ -119.271783776999925, 50.281982969000097 ], [ -119.27370275, 50.281999138000103 ], [ -119.27421328199992, 50.282003933000048 ], [ -119.275800433999962, 50.282018811000071 ], [ -119.277284874999935, 50.282010066000048 ], [ -119.27744712400002, 50.282009136000049 ], [ -119.277389103999951, 50.282569834000057 ], [ -119.277269065999974, 50.282713255000019 ], [ -119.277156980999919, 50.283040447000069 ], [ -119.276899606999947, 50.283519491000114 ], [ -119.276555355999974, 50.283938140000032 ], [ -119.27257325, 50.287901232000095 ], [ -119.272117677999944, 50.288283166000063 ], [ -119.271946849999921, 50.288286507000073 ], [ -119.271952586999959, 50.288406945000055 ], [ -119.271485749999968, 50.288670816000028 ], [ -119.27084527099997, 50.288947683000096 ], [ -119.270061928999951, 50.289170716000093 ], [ -119.269173504999927, 50.289313279000069 ], [ -119.266534032, 50.289603815000106 ], [ -119.266531838999924, 50.289557669000047 ], [ -119.265878590999961, 50.289517765000042 ], [ -119.265883578999976, 50.289484293000029 ], [ -119.265686140999946, 50.289488143000057 ], [ -119.265696018, 50.289696046000053 ], [ -119.265295598999899, 50.289740113000057 ], [ -119.265014045999976, 50.289771094000102 ], [ -119.263174089999893, 50.289806947000088 ], [ -119.263182135999955, 50.289976501000048 ], [ -119.262717496999926, 50.290037629000075 ], [ -119.262212608999974, 50.290104081000031 ], [ -119.261640468999943, 50.290251649000069 ], [ -119.26161186, 50.290259049000042 ], [ -119.261207989999903, 50.290363189000054 ], [ -119.261020827, 50.29044018000004 ], [ -119.260934316999965, 50.290425509000066 ], [ -119.260407194999956, 50.290436916000083 ], [ -119.260242477, 50.290455008000045 ], [ -119.260138522999981, 50.290480494000093 ], [ -119.259908687999911, 50.290631648000073 ], [ -119.259686027999948, 50.290780008000034 ], [ -119.259339502999978, 50.2910718750001 ], [ -119.259257890999933, 50.291171733000105 ], [ -119.259174793999989, 50.291273418000102 ], [ -119.259122329, 50.291337629000097 ], [ -119.258978508999959, 50.29167216900003 ], [ -119.258820864, 50.291947184000094 ], [ -119.25888542899996, 50.292161485000037 ], [ -119.258673136999931, 50.292159803000096 ], [ -119.25848268499999, 50.292158281000098 ], [ -119.258073339999953, 50.292212887000098 ], [ -119.257979586999923, 50.292743326000029 ], [ -119.257857039999962, 50.292969181000082 ], [ -119.257652159999907, 50.29328944800011 ], [ -119.25756249799997, 50.293366903000063 ], [ -119.257465064999963, 50.293451077000022 ], [ -119.257315450999968, 50.293625221000056 ], [ -119.257349696999924, 50.293684787000139 ], [ -119.25745677399999, 50.293759417000018 ], [ -119.257624797999981, 50.293807620000038 ], [ -119.257655940999953, 50.293816548000123 ], [ -119.257588622999947, 50.293904696000062 ], [ -119.257481302999963, 50.294050828000096 ], [ -119.257425806999962, 50.294126465000076 ], [ -119.256969653999988, 50.294118545000046 ], [ -119.254545770999954, 50.294076434000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021116", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161869500", "BldgCostT": "101880000", "sL_LossRatio": "0.99768141081858", "sL_AssetLoss": "9316.01", "sL_BldgLoss": "9294.41", "sL_StrLoss": "9286.6", "sL_NStrLoss": "7.81", "sL_ContLoss": "21.6", "geom_point": "0101000020E6100000896D7B50CACF5DC0BF9C7EF55D274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.2420134, 50.338613426000094 ], [ -119.242421462999957, 50.338334238000073 ], [ -119.24195040499994, 50.336935414000031 ], [ -119.24114833499999, 50.332893344000077 ], [ -119.241029213999965, 50.332664706000052 ], [ -119.241024437999954, 50.332655571000018 ], [ -119.240982957, 50.332619758000043 ], [ -119.240876952999926, 50.332528262000061 ], [ -119.240606608999911, 50.332363658000077 ], [ -119.240863406999949, 50.332364037000033 ], [ -119.241107141999947, 50.332263416000096 ], [ -119.241315233999941, 50.332080247000135 ], [ -119.241462704999961, 50.331755265000012 ], [ -119.241738170999923, 50.331169104000068 ], [ -119.24196131299999, 50.330659159000113 ], [ -119.242477803, 50.329565944000066 ], [ -119.242735930999942, 50.328878501000069 ], [ -119.242835730999943, 50.328570790000086 ], [ -119.243784286999983, 50.325645774000066 ], [ -119.244870042999963, 50.322473123000087 ], [ -119.245375832999969, 50.320935635000104 ], [ -119.24592689, 50.319260600000057 ], [ -119.246274376999963, 50.318204266000045 ], [ -119.247372115999951, 50.314867012000022 ], [ -119.244689707999896, 50.31449892800002 ], [ -119.243260504999952, 50.314302803000054 ], [ -119.244025203999911, 50.31288799400005 ], [ -119.242518806999939, 50.312886005000102 ], [ -119.242335408999949, 50.312855511000095 ], [ -119.24226137799991, 50.31284319300007 ], [ -119.24224813499994, 50.312838765000095 ], [ -119.241482117999922, 50.312582406000047 ], [ -119.240043819999954, 50.312322702000067 ], [ -119.239971040999976, 50.312325370000089 ], [ -119.239987312999958, 50.312216653000057 ], [ -119.238962393999941, 50.31215382900006 ], [ -119.238932059000021, 50.312356455000028 ], [ -119.238755845999933, 50.312345654000104 ], [ -119.238714564999938, 50.312621392000068 ], [ -119.237826184999989, 50.312641789000068 ], [ -119.237341304999958, 50.312563292000064 ], [ -119.237018198999976, 50.312374197000047 ], [ -119.236988479999937, 50.312356804000039 ], [ -119.236988251999932, 50.312356672000135 ], [ -119.236963907999936, 50.312342384000061 ], [ -119.236859905999921, 50.312151002000128 ], [ -119.236858649999974, 50.311900140000063 ], [ -119.236858114999961, 50.311783314000145 ], [ -119.236853522, 50.310858610000118 ], [ -119.236852105999901, 50.310569284000081 ], [ -119.236834895999948, 50.30708020000008 ], [ -119.236830239999946, 50.30608989500012 ], [ -119.236819995999966, 50.303910488000085 ], [ -119.236822161, 50.303329417000079 ], [ -119.236825415999959, 50.30247428300008 ], [ -119.236826843999964, 50.302092285000093 ], [ -119.236827599999941, 50.301889034000055 ], [ -119.236831774999956, 50.300783178000032 ], [ -119.23683319299991, 50.300402094000034 ], [ -119.236828211999963, 50.300000826000037 ], [ -119.236813594999902, 50.29881820100011 ], [ -119.236810519999949, 50.298246718000044 ], [ -119.236807885999923, 50.297760927000105 ], [ -119.236802707999985, 50.296799805000049 ], [ -119.236915908999961, 50.296693905000055 ], [ -119.239693967999983, 50.296682467000082 ], [ -119.242779398999986, 50.296669705000035 ], [ -119.24336250099995, 50.29664680900008 ], [ -119.243346635999913, 50.29366845100003 ], [ -119.243340641999964, 50.292544293000013 ], [ -119.243331472999984, 50.290826947000056 ], [ -119.243327417999964, 50.290062538000015 ], [ -119.243324106999964, 50.289444481000082 ], [ -119.243396290999939, 50.289338789000041 ], [ -119.243562882, 50.28929029800004 ], [ -119.245604590999946, 50.289281797000093 ], [ -119.245817594999934, 50.289281306000063 ], [ -119.249351396999927, 50.289271205000013 ], [ -119.253799089999944, 50.289231110000081 ], [ -119.253829606999972, 50.290056264000086 ], [ -119.253846712999987, 50.290517791000113 ], [ -119.253514085999967, 50.292776921000083 ], [ -119.253442644999936, 50.293262318000117 ], [ -119.253364413999989, 50.293793650000111 ], [ -119.254571993999946, 50.293862886000049 ], [ -119.254545770999954, 50.294076434000075 ], [ -119.256969653999988, 50.294118545000046 ], [ -119.257425806999962, 50.294126465000076 ], [ -119.257481302999963, 50.294050828000096 ], [ -119.257588622999947, 50.293904696000062 ], [ -119.257655940999953, 50.293816548000123 ], [ -119.257624797999981, 50.293807620000038 ], [ -119.25745677399999, 50.293759417000018 ], [ -119.257349696999924, 50.293684787000139 ], [ -119.257315450999968, 50.293625221000056 ], [ -119.257465064999963, 50.293451077000022 ], [ -119.25756249799997, 50.293366903000063 ], [ -119.257652159999907, 50.29328944800011 ], [ -119.257857039999962, 50.292969181000082 ], [ -119.257979586999923, 50.292743326000029 ], [ -119.258073339999953, 50.292212887000098 ], [ -119.25848268499999, 50.292158281000098 ], [ -119.258673136999931, 50.292159803000096 ], [ -119.25888542899996, 50.292161485000037 ], [ -119.258820864, 50.291947184000094 ], [ -119.258978508999959, 50.29167216900003 ], [ -119.259122329, 50.291337629000097 ], [ -119.259174793999989, 50.291273418000102 ], [ -119.259257890999933, 50.291171733000105 ], [ -119.259339502999978, 50.2910718750001 ], [ -119.259686027999948, 50.290780008000034 ], [ -119.259908687999911, 50.290631648000073 ], [ -119.260138522999981, 50.290480494000093 ], [ -119.260242477, 50.290455008000045 ], [ -119.260407194999956, 50.290436916000083 ], [ -119.260934316999965, 50.290425509000066 ], [ -119.261020827, 50.29044018000004 ], [ -119.261207989999903, 50.290363189000054 ], [ -119.26161186, 50.290259049000042 ], [ -119.261640468999943, 50.290251649000069 ], [ -119.262212608999974, 50.290104081000031 ], [ -119.262717496999926, 50.290037629000075 ], [ -119.263182135999955, 50.289976501000048 ], [ -119.263186885, 50.290076543000097 ], [ -119.262766069999913, 50.290084740000104 ], [ -119.262791654999944, 50.290623934000038 ], [ -119.261950017999965, 50.290640321000048 ], [ -119.261962806, 50.290909919000043 ], [ -119.261541985999941, 50.290918110000128 ], [ -119.261554769999918, 50.291187708000088 ], [ -119.261133946999948, 50.291195898000062 ], [ -119.26114508199997, 50.291430728000151 ], [ -119.26114673, 50.291465496000114 ], [ -119.261086070999937, 50.29146667600007 ], [ -119.260725903999955, 50.291473684000024 ], [ -119.260730824999897, 50.291577482000108 ], [ -119.260738684999978, 50.291743282000077 ], [ -119.260317856999947, 50.291751469000097 ], [ -119.260356193999968, 50.292560263000084 ], [ -119.259935357999936, 50.29256844800009 ], [ -119.259948134999973, 50.292838046000021 ], [ -119.259652377999956, 50.292843798000078 ], [ -119.259458630999973, 50.294142532000073 ], [ -119.259428974999963, 50.29414071900004 ], [ -119.259370147999903, 50.294535033000017 ], [ -119.258782502999964, 50.294499103000085 ], [ -119.258630856999943, 50.295515454000054 ], [ -119.259494108999945, 50.295568234000037 ], [ -119.259401894999897, 50.296186324000089 ], [ -119.25955254899992, 50.29619553400007 ], [ -119.259483833999965, 50.296656116000072 ], [ -119.257896403999951, 50.298234306000033 ], [ -119.257662974999931, 50.298329694000053 ], [ -119.257074503999931, 50.298358197000056 ], [ -119.256105785999949, 50.29928541000006 ], [ -119.255681290999945, 50.299518894000109 ], [ -119.254276286999968, 50.30066572600002 ], [ -119.25399896, 50.300648759000076 ], [ -119.25400512, 50.300779016000043 ], [ -119.253584208999939, 50.300787180000036 ], [ -119.253609697999977, 50.30132637700013 ], [ -119.253308883999949, 50.301332210000112 ], [ -119.253238487999951, 50.301803555000042 ], [ -119.253106216999967, 50.301795461000097 ], [ -119.253063397999966, 50.302082159000129 ], [ -119.253049359, 50.302081299000072 ], [ -119.253013907999957, 50.302318658000047 ], [ -119.252737918999941, 50.302301771000074 ], [ -119.252689510999957, 50.302625865000024 ], [ -119.252406376999915, 50.302608540000065 ], [ -119.252436121999949, 50.303238051000051 ], [ -119.252252684999945, 50.303241607000096 ], [ -119.252182749999974, 50.303709774000026 ], [ -119.252036669999953, 50.303700835000086 ], [ -119.252040664999953, 50.303785407000092 ], [ -119.251891528999963, 50.303788298000086 ], [ -119.251744135999942, 50.304774921000053 ], [ -119.251725796999921, 50.304897682000039 ], [ -119.251671727, 50.30489437300006 ], [ -119.251683403999962, 50.305141558000059 ], [ -119.251612204999958, 50.305142938000067 ], [ -119.251564120999944, 50.305464784000065 ], [ -119.251276503999975, 50.30544718300014 ], [ -119.251300654999952, 50.30595851100005 ], [ -119.250879698999938, 50.305966666000103 ], [ -119.250903739999927, 50.306475749000114 ], [ -119.252218617999944, 50.306556212000068 ], [ -119.252210799999958, 50.306592987 ], [ -119.252348373999965, 50.307408994000085 ], [ -119.25221360399999, 50.30845439600008 ], [ -119.251679315999951, 50.309014106000049 ], [ -119.251620220999925, 50.309834506000101 ], [ -119.251337701999944, 50.310090803 ], [ -119.251717894999985, 50.31072179100007 ], [ -119.251845088999985, 50.31161900200005 ], [ -119.252139820999957, 50.311900998000105 ], [ -119.252290706999958, 50.312456395000076 ], [ -119.252446411999955, 50.31248919300009 ], [ -119.252469615999956, 50.31258402400006 ], [ -119.252421773999956, 50.31290424600013 ], [ -119.252181794999927, 50.312889564000045 ], [ -119.252053372999939, 50.313749062000113 ], [ -119.251676488999976, 50.314006013000139 ], [ -119.25150875, 50.314466251000034 ], [ -119.251287185999971, 50.314452694000046 ], [ -119.251184916999975, 50.315137038000039 ], [ -119.25095879, 50.315485702000089 ], [ -119.250495812999986, 50.316961203000112 ], [ -119.250405585999886, 50.317746003000082 ], [ -119.249661689999954, 50.318920901000084 ], [ -119.24983500899998, 50.31963730100005 ], [ -119.249335203999962, 50.320041796000076 ], [ -119.2489273, 50.321246701000071 ], [ -119.24868912, 50.321570807000036 ], [ -119.247266655999979, 50.32148374400002 ], [ -119.247195606999966, 50.321958825000067 ], [ -119.247420218999977, 50.321954481000034 ], [ -119.247458378999966, 50.32276327800011 ], [ -119.247074181999963, 50.322770708000036 ], [ -119.247013257999981, 50.323178057000121 ], [ -119.247565267999931, 50.323211845000145 ], [ -119.247094178999987, 50.324969500000087 ], [ -119.246566806999951, 50.325690192000145 ], [ -119.245851186999943, 50.326315413000081 ], [ -119.2450285199999, 50.327645599000064 ], [ -119.244348596999941, 50.328117009000046 ], [ -119.244287213999897, 50.328333507000075 ], [ -119.24436528299999, 50.328494504000098 ], [ -119.24433439699996, 50.329628086000056 ], [ -119.244429465999929, 50.329821003000085 ], [ -119.244390623999962, 50.330080560000034 ], [ -119.244562561999928, 50.330091087000035 ], [ -119.244902863999954, 50.330781623000036 ], [ -119.245159807999926, 50.331302992000126 ], [ -119.245722712999978, 50.332228702000116 ], [ -119.245703276, 50.33299349300006 ], [ -119.245840222, 50.333140670000084 ], [ -119.245861315999974, 50.333587930000107 ], [ -119.246249416999916, 50.333580429000079 ], [ -119.246284316999933, 50.333617937000035 ], [ -119.246358829999934, 50.335197381000043 ], [ -119.246780045999927, 50.335189238000034 ], [ -119.246805488999982, 50.335728436000103 ], [ -119.247226708999975, 50.335720291000023 ], [ -119.247239434, 50.335989890000057 ], [ -119.247515175999965, 50.335984558000078 ], [ -119.247669623999982, 50.336171718000038 ], [ -119.247698836999973, 50.336790539000077 ], [ -119.247956517999938, 50.336785556000088 ], [ -119.248040705999955, 50.336968497000036 ], [ -119.248132341999934, 50.337042321000098 ], [ -119.24818372, 50.338130381000056 ], [ -119.249026201999982, 50.338114083000036 ], [ -119.249038937999927, 50.338383681000018 ], [ -119.249124157999972, 50.338382032000041 ], [ -119.249881424999941, 50.338367376000107 ], [ -119.249906905999921, 50.33890657200002 ], [ -119.250328153999945, 50.338898416000042 ], [ -119.250379127999935, 50.339976807000063 ], [ -119.247636636, 50.340029871000048 ], [ -119.247430322999961, 50.340033861000052 ], [ -119.247439129999989, 50.340220412000086 ], [ -119.246970958999952, 50.340221809000077 ], [ -119.246062765999923, 50.340222623000038 ], [ -119.246034771, 50.34022264100004 ], [ -119.245048131999908, 50.340223543000086 ], [ -119.24492092, 50.340223658000092 ], [ -119.244135796999927, 50.340225245000035 ], [ -119.243465139999927, 50.340225715000059 ], [ -119.242796849999962, 50.340238949000081 ], [ -119.242049954999956, 50.339334692000101 ], [ -119.242049371999912, 50.339286179000112 ], [ -119.242048476999969, 50.339207592000022 ], [ -119.242044026999906, 50.338829049000047 ], [ -119.24204329, 50.338766464000081 ], [ -119.2420134, 50.338613426000094 ] ], [ [ -119.242461820999964, 50.310359642000023 ], [ -119.242524684, 50.309939497000059 ], [ -119.242370871999952, 50.309930073000054 ], [ -119.242906230999949, 50.306351706 ], [ -119.243050930999942, 50.306360572000067 ], [ -119.243141352999913, 50.30575611000009 ], [ -119.24328088099999, 50.305764660000065 ], [ -119.243363472999931, 50.305212513000107 ], [ -119.245126657999947, 50.305320531000035 ], [ -119.245599746999943, 50.302156757000056 ], [ -119.24640893599998, 50.302206321000057 ], [ -119.246507941999937, 50.301544077000081 ], [ -119.246536107999987, 50.301545802000078 ], [ -119.24657565299999, 50.301281281000037 ], [ -119.246293498999961, 50.301263999000128 ], [ -119.24664083099999, 50.298940646000077 ], [ -119.245925789999916, 50.29889684700003 ], [ -119.245449766999954, 50.302080632000091 ], [ -119.24541558699994, 50.302078538000046 ], [ -119.245389673999938, 50.302251833000064 ], [ -119.245312439999964, 50.302247101000056 ], [ -119.245279880999959, 50.302464835000066 ], [ -119.245127462999946, 50.302455498000029 ], [ -119.245094184999971, 50.302678038000096 ], [ -119.245067612999975, 50.302676411000036 ], [ -119.245031495999982, 50.302917939000075 ], [ -119.245014371999957, 50.302916890000041 ], [ -119.244956014999971, 50.303307140000065 ], [ -119.244693400999921, 50.303291052000048 ], [ -119.244592635999979, 50.303964846000106 ], [ -119.240026998999952, 50.303685053000081 ], [ -119.239982835999982, 50.303980152000108 ], [ -119.239291494999989, 50.303937768000061 ], [ -119.239280495999964, 50.30401124600008 ], [ -119.239486995, 50.304023907000058 ], [ -119.239457560999952, 50.304220567000044 ], [ -119.239505507000018, 50.304223506 ], [ -119.239472396999957, 50.304444730000071 ], [ -119.239476923999959, 50.304445007 ], [ -119.239445060999969, 50.304657900000109 ], [ -119.23947453800001, 50.304659707000042 ], [ -119.239463583999964, 50.304732899000079 ], [ -119.240344216000011, 50.304786885000013 ], [ -119.240242071999901, 50.305469434000045 ], [ -119.240381560999936, 50.305477985000088 ], [ -119.240134422999915, 50.307129357000107 ], [ -119.240343773999911, 50.307142189000047 ], [ -119.240123525999977, 50.308613830000105 ], [ -119.241152050000011, 50.308676869000124 ], [ -119.240914413999946, 50.310264818000071 ], [ -119.242461820999964, 50.310359642000023 ] ], [ [ -119.247696172999923, 50.297738720000048 ], [ -119.247819819999933, 50.296911413000089 ], [ -119.247509720999957, 50.296892421000088 ], [ -119.24738606799994, 50.297719727000107 ], [ -119.247696172999923, 50.297738720000048 ] ], [ [ -119.246699505999956, 50.294308413000067 ], [ -119.246709365999919, 50.29424244100003 ], [ -119.245792371999926, 50.294186266000118 ], [ -119.245782509999984, 50.294252237000123 ], [ -119.246699505999956, 50.294308413000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021117", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153098145", "BldgCostT": "100171524", "sL_LossRatio": "0.999534840627994", "sL_AssetLoss": "10469.53", "sL_BldgLoss": "10464.66", "sL_StrLoss": "10462.9", "sL_NStrLoss": "1.76", "sL_ContLoss": "4.87", "geom_point": "0101000020E61000001D01158E60D15DC00F607051D6274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262279221999961, 50.337400752000043 ], [ -119.262804731999935, 50.333880029000099 ], [ -119.264346356999951, 50.333974139000077 ], [ -119.264423885, 50.33345456600005 ], [ -119.264473134999974, 50.333457572000043 ], [ -119.264580504999984, 50.332737974000047 ], [ -119.262344652999957, 50.332601479000047 ], [ -119.262376267999969, 50.332389657000128 ], [ -119.260106056, 50.332251017 ], [ -119.260233195999973, 50.33122750600004 ], [ -119.260880008999933, 50.328578495000066 ], [ -119.261618875999915, 50.325785594000131 ], [ -119.261675692, 50.32568881400006 ], [ -119.264202775999962, 50.325843126000102 ], [ -119.264554104999903, 50.323488101000059 ], [ -119.263022457999952, 50.323394581000017 ], [ -119.263424704999977, 50.322709295000024 ], [ -119.263545586999953, 50.322293505000083 ], [ -119.263608822999927, 50.320930369000052 ], [ -119.263657509999959, 50.319880786000027 ], [ -119.263514078999933, 50.318668798000012 ], [ -119.263722105999975, 50.317694688000039 ], [ -119.263961003999967, 50.313866390000086 ], [ -119.264215815999989, 50.313303904000044 ], [ -119.264186003, 50.310039606000075 ], [ -119.263935305999937, 50.309207797000084 ], [ -119.263462099999984, 50.308407412000093 ], [ -119.26331060199999, 50.306980412000044 ], [ -119.262966105999965, 50.306546005000101 ], [ -119.262741387999966, 50.305912196000051 ], [ -119.262672814999974, 50.305067607000083 ], [ -119.26269653899999, 50.304873454000088 ], [ -119.263574784999918, 50.304927108000129 ], [ -119.263604823999955, 50.304725675000036 ], [ -119.264621134999956, 50.304787754000053 ], [ -119.264766326999933, 50.303813999000099 ], [ -119.265351712999987, 50.303849752000126 ], [ -119.265801546999938, 50.300832315000036 ], [ -119.266551826999958, 50.300878134000079 ], [ -119.266667250999944, 50.300103733000057 ], [ -119.267978093999957, 50.300183774000111 ], [ -119.268127137999954, 50.299183565000078 ], [ -119.268265125999932, 50.299191989000043 ], [ -119.268312648999967, 50.298873068000042 ], [ -119.270345750999951, 50.298997175000082 ], [ -119.270355458, 50.298932015000098 ], [ -119.271755930999959, 50.299017482000096 ], [ -119.271832078999964, 50.298506171000078 ], [ -119.26988363599996, 50.298387257000087 ], [ -119.27041668399994, 50.294808706000012 ], [ -119.271162379, 50.294854220000026 ], [ -119.274412318999964, 50.295052522000063 ], [ -119.274500264999972, 50.294461708000014 ], [ -119.27906968799999, 50.294718882000012 ], [ -119.279303456999955, 50.293159283000058 ], [ -119.279332100999952, 50.292968186000074 ], [ -119.279418471999961, 50.292085126000103 ], [ -119.279475040999969, 50.291506649000048 ], [ -119.279496235999886, 50.291289737000092 ], [ -119.279579734999928, 50.290435988000091 ], [ -119.279643287999988, 50.289785887000058 ], [ -119.279731544999962, 50.28932781500005 ], [ -119.279736109999973, 50.289304086000115 ], [ -119.279950982999978, 50.288826098000079 ], [ -119.28030800399992, 50.28837838700008 ], [ -119.280608572999896, 50.288111498000049 ], [ -119.281477375999955, 50.287526385000085 ], [ -119.281971820999928, 50.287193391000066 ], [ -119.282261112999961, 50.286925697000065 ], [ -119.282291791999938, 50.286875410000064 ], [ -119.28244379399996, 50.286626290000065 ], [ -119.282502211999926, 50.286318384000033 ], [ -119.282479403999943, 50.285961860000079 ], [ -119.28247380599997, 50.285874308000075 ], [ -119.282399997999974, 50.285379580000047 ], [ -119.28235842199993, 50.285100997000015 ], [ -119.282279201000023, 50.284569998000137 ], [ -119.282235800999942, 50.284279113000096 ], [ -119.282178532999964, 50.28381755400008 ], [ -119.281948045999954, 50.281959272000115 ], [ -119.281791396999964, 50.280696016 ], [ -119.281859226999956, 50.280144937000046 ], [ -119.282089831999926, 50.279608243000069 ], [ -119.282407141999968, 50.279000151000062 ], [ -119.282506714999954, 50.278681231000043 ], [ -119.28251399199999, 50.278442430000027 ], [ -119.282433925999939, 50.278080062000058 ], [ -119.281843453999926, 50.276447926000124 ], [ -119.281768897999925, 50.276241851000115 ], [ -119.285392661999978, 50.276482238000014 ], [ -119.285249333999943, 50.277827913000074 ], [ -119.285237675999909, 50.278253423000045 ], [ -119.28543381799993, 50.278611641000055 ], [ -119.285823191999967, 50.278903081000124 ], [ -119.286300435, 50.27918165200002 ], [ -119.286150007999964, 50.280194356000045 ], [ -119.285698697999948, 50.280166863000026 ], [ -119.285654865999973, 50.280461925000061 ], [ -119.286733414999958, 50.280440702000092 ], [ -119.286772180999947, 50.281249482000192 ], [ -119.285509997999952, 50.28127431800003 ], [ -119.285502238999939, 50.281112387000107 ], [ -119.285171098999953, 50.281092213000129 ], [ -119.285015265999931, 50.282141077000126 ], [ -119.284707076999922, 50.282122302000097 ], [ -119.284499892999975, 50.283516665000121 ], [ -119.286600852999982, 50.283644649000095 ], [ -119.2864643599999, 50.283904355000139 ], [ -119.286205625999912, 50.28424451500004 ], [ -119.285807516999952, 50.284277975000101 ], [ -119.285983235999964, 50.28660454400007 ], [ -119.285972755999978, 50.286614963000048 ], [ -119.285804524999918, 50.286930949000059 ], [ -119.285781434999976, 50.287912013000131 ], [ -119.285506097999985, 50.288906870000069 ], [ -119.285481616999931, 50.288941659000045 ], [ -119.285173125999975, 50.288922868000085 ], [ -119.285072184999962, 50.289602158000029 ], [ -119.284580804999976, 50.289572226000104 ], [ -119.28418209599991, 50.292254971000055 ], [ -119.283142336999916, 50.292191627000101 ], [ -119.283064908999975, 50.292712484000042 ], [ -119.283491359999985, 50.292738465000042 ], [ -119.283409662999986, 50.293288066000109 ], [ -119.285395631999947, 50.293409038000057 ], [ -119.285621736999957, 50.293662966000028 ], [ -119.286002943999932, 50.293997011000059 ], [ -119.286131495999953, 50.294336349000126 ], [ -119.286040509999964, 50.295075796000056 ], [ -119.28612371899996, 50.295343950000131 ], [ -119.285981165999971, 50.295301861000056 ], [ -119.285713808, 50.295270260000102 ], [ -119.285458691999906, 50.295240083000081 ], [ -119.285164132999981, 50.295246013000025 ], [ -119.28429149599998, 50.295072680000011 ], [ -119.284200268999925, 50.295057909000086 ], [ -119.28379256199996, 50.295047937000028 ], [ -119.283696627999987, 50.295094806000051 ], [ -119.28361927, 50.295240321000101 ], [ -119.283429236999936, 50.295379 ], [ -119.283124995999984, 50.295474849000094 ], [ -119.282806065999978, 50.295542579000021 ], [ -119.282711204999941, 50.29556512700001 ], [ -119.282220769999938, 50.295571989000074 ], [ -119.28201900799999, 50.295646025000103 ], [ -119.28206606, 50.296802303000028 ], [ -119.281963977999936, 50.297128560000033 ], [ -119.281268431999976, 50.297037284000069 ], [ -119.281187855999974, 50.2972764370001 ], [ -119.278129622999941, 50.29844788400009 ], [ -119.278190104999965, 50.298227608000076 ], [ -119.278169380999941, 50.29824155300004 ], [ -119.277422102999964, 50.298744996000089 ], [ -119.276930990999958, 50.298965105000043 ], [ -119.276391482999941, 50.29911179600002 ], [ -119.275105519999926, 50.299309698000116 ], [ -119.274814989999925, 50.29935814700012 ], [ -119.274649920999963, 50.299385704000017 ], [ -119.273713782999906, 50.299667094000029 ], [ -119.273236909999952, 50.299886306000111 ], [ -119.27303901799992, 50.300002722000059 ], [ -119.27276548199994, 50.30016359600009 ], [ -119.272506486999958, 50.300366177000107 ], [ -119.272229084999964, 50.300583095 ], [ -119.272149172999974, 50.300654915000074 ], [ -119.273831780999956, 50.30117036300004 ], [ -119.279122538999928, 50.300509825000084 ], [ -119.279131449999952, 50.300526377000033 ], [ -119.279197801999928, 50.300649700000072 ], [ -119.27938739399994, 50.300816499000128 ], [ -119.279483002999925, 50.300828339000134 ], [ -119.279601993999961, 50.300843095000062 ], [ -119.279861276999952, 50.300854401000045 ], [ -119.28020649799997, 50.300761704000152 ], [ -119.280891183999969, 50.300373062000084 ], [ -119.281032225999979, 50.300292998 ], [ -119.281283994999967, 50.30025961000009 ], [ -119.2826415, 50.300273707000066 ], [ -119.28279180599999, 50.300495909000027 ], [ -119.282827921999953, 50.300727401000124 ], [ -119.282831324000014, 50.301048186000116 ], [ -119.28421282299999, 50.300967276000044 ], [ -119.284112771999986, 50.300397740000101 ], [ -119.284196245999908, 50.300030622000065 ], [ -119.284356345999981, 50.299751329000088 ], [ -119.284406524999966, 50.299685440000118 ], [ -119.28441818, 50.299763570000096 ], [ -119.284753219999928, 50.303266985000029 ], [ -119.283175932999882, 50.303274498000036 ], [ -119.282747155999985, 50.303276555000089 ], [ -119.28275780200002, 50.303397454000041 ], [ -119.282782248999965, 50.303675397000106 ], [ -119.282820941999901, 50.304115082000052 ], [ -119.282841817999937, 50.30435197400007 ], [ -119.282868346, 50.30465351000008 ], [ -119.282884306999932, 50.304834691000039 ], [ -119.282897584999915, 50.305266818000099 ], [ -119.279394823999965, 50.305053407000067 ], [ -119.279771576999934, 50.302520989000122 ], [ -119.27941476899997, 50.302499243000106 ], [ -119.279319090999934, 50.303142355000062 ], [ -119.275160217999925, 50.302888809000123 ], [ -119.274667661999928, 50.306197254000033 ], [ -119.272711976999986, 50.306077971000057 ], [ -119.272638294999965, 50.306572700000054 ], [ -119.271741153999969, 50.306517969 ], [ -119.27155071599999, 50.307796421000063 ], [ -119.270466900999949, 50.307730292000066 ], [ -119.270362367999937, 50.308431902000038 ], [ -119.270409187999945, 50.308434760000125 ], [ -119.269933808999937, 50.311625164000127 ], [ -119.271305277999929, 50.311708842000073 ], [ -119.270772099999988, 50.315287321000092 ], [ -119.270527510999926, 50.315272399000087 ], [ -119.270426679999929, 50.31594905 ], [ -119.271210271999948, 50.315996853000065 ], [ -119.270677035999924, 50.319575312000033 ], [ -119.270234092999942, 50.319548291000046 ], [ -119.27005162799999, 50.320772578000096 ], [ -119.270969506999933, 50.32082856900012 ], [ -119.270735189999968, 50.322400871000042 ], [ -119.270786119999954, 50.322403978000089 ], [ -119.270657068999981, 50.323269889000066 ], [ -119.271007670999907, 50.323291273000031 ], [ -119.270787776999939, 50.324766725000131 ], [ -119.271377060999939, 50.324802666000011 ], [ -119.271249160999943, 50.325660883000047 ], [ -119.27156201299999, 50.325679962999985 ], [ -119.271402271999975, 50.326751838000071 ], [ -119.271650283999946, 50.326766963000068 ], [ -119.271589930999966, 50.327171944000028 ], [ -119.271742708999966, 50.327181261000078 ], [ -119.271209383999945, 50.330759671000102 ], [ -119.271207735999923, 50.330759571000065 ], [ -119.271144556999943, 50.331183439 ], [ -119.271165, 50.33118468600005 ], [ -119.270631582999911, 50.334763075000176 ], [ -119.26993709199995, 50.334720723000018 ], [ -119.269872473999911, 50.335154119000038 ], [ -119.270403697999896, 50.335186515000068 ], [ -119.269870172999944, 50.338764883000096 ], [ -119.26911747299998, 50.338718980000074 ], [ -119.269060755999973, 50.339099300000036 ], [ -119.269056871999979, 50.339099063000106 ], [ -119.268993275999932, 50.339525501000047 ], [ -119.268813901999934, 50.339514561000051 ], [ -119.268693576999951, 50.340321354000054 ], [ -119.265324482999972, 50.34030072900007 ], [ -119.262633612999977, 50.340265039000094 ], [ -119.262558945999942, 50.340264043000062 ], [ -119.261734225999959, 50.340262183000057 ], [ -119.262162462, 50.337393623000018 ], [ -119.262279221999961, 50.337400752000043 ] ], [ [ -119.265031309, 50.327556417000089 ], [ -119.265181571999946, 50.326549125000099 ], [ -119.264640032999949, 50.32651606700005 ], [ -119.264489758999957, 50.327523359000061 ], [ -119.265031309, 50.327556417000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021120", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "183209917", "BldgCostT": "126351667", "sL_LossRatio": "1", "sL_AssetLoss": "15294.9", "sL_BldgLoss": "15294.9", "sL_StrLoss": "15294.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000312BD2CCACDC5DC0AFC83BC94E1D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.447769884999929, 50.241939598000066 ], [ -119.447158891999948, 50.240962608000139 ], [ -119.446776489999962, 50.240592302000046 ], [ -119.445732179999979, 50.239940001000015 ], [ -119.445474486999956, 50.239541198000055 ], [ -119.44532942299999, 50.239462904000078 ], [ -119.445056106, 50.23961239000004 ], [ -119.444857405999983, 50.239581100000052 ], [ -119.445165112000012, 50.239250701000117 ], [ -119.445077078999958, 50.239180895000125 ], [ -119.444159008, 50.238794902000087 ], [ -119.44340611599992, 50.238560819000078 ], [ -119.442235020999945, 50.238196705000071 ], [ -119.441973900999969, 50.23804009 ], [ -119.44161841, 50.237669789000066 ], [ -119.441368904999976, 50.237189798000031 ], [ -119.44064007499999, 50.236758790000053 ], [ -119.440444092999954, 50.236642891000024 ], [ -119.439622390999943, 50.235912308000145 ], [ -119.439533204999961, 50.235536288000098 ], [ -119.439190695999969, 50.235148891000044 ], [ -119.438725013999914, 50.234834201000069 ], [ -119.438700610999945, 50.234619087000056 ], [ -119.438655103999935, 50.234556391000048 ], [ -119.438610679999925, 50.234495196000132 ], [ -119.43856559699999, 50.234428108000031 ], [ -119.43853319599998, 50.234379892000071 ], [ -119.438659408999939, 50.23381868600007 ], [ -119.438410991999959, 50.233365801000105 ], [ -119.438491391999918, 50.232455801000079 ], [ -119.437778760999933, 50.232101805000063 ], [ -119.437742898999943, 50.232083991000117 ], [ -119.437593092999975, 50.23189891500008 ], [ -119.437648917, 50.231322105000096 ], [ -119.43795251099999, 50.230937510000068 ], [ -119.438016095999942, 50.23001889100005 ], [ -119.436989601999954, 50.228583294000018 ], [ -119.43684641499999, 50.227965205000039 ], [ -119.436885189999956, 50.227344305000059 ], [ -119.436504912999951, 50.227046597000097 ], [ -119.436772799999986, 50.226501096000057 ], [ -119.436875496999917, 50.225770489000098 ], [ -119.437194483999946, 50.225440095000067 ], [ -119.438561216999972, 50.224484494000187 ], [ -119.440088086999964, 50.22387630700014 ], [ -119.441714887999964, 50.222276907000044 ], [ -119.442084187999967, 50.222080392000116 ], [ -119.442514279999969, 50.22197219100007 ], [ -119.443913501999944, 50.221952194000025 ], [ -119.44421820599996, 50.221873890000069 ], [ -119.444710586, 50.221611801000087 ], [ -119.444810885999985, 50.221375404000042 ], [ -119.445239586999946, 50.220979500000112 ], [ -119.446127089999933, 50.220529400000025 ], [ -119.446750290999915, 50.220389914000108 ], [ -119.448247685999959, 50.220322902000056 ], [ -119.450158100999957, 50.219580886000038 ], [ -119.450532709999891, 50.219501092 ], [ -119.451316492999979, 50.219475487000089 ], [ -119.452256787999943, 50.219230508000081 ], [ -119.45322309, 50.218660899000028 ], [ -119.453817619999953, 50.217965899000028 ], [ -119.454089412999977, 50.217500106000145 ], [ -119.454152608999948, 50.217094195000065 ], [ -119.454868805, 50.216575785000067 ], [ -119.455267997999925, 50.216162808000028 ], [ -119.45594, 50.215060494000056 ], [ -119.45660359699994, 50.214344105000038 ], [ -119.457605395999948, 50.213899699000095 ], [ -119.458412912999961, 50.213263097000031 ], [ -119.459575914999959, 50.211897305 ], [ -119.460260803999958, 50.211586784000062 ], [ -119.460757218999959, 50.211190385000123 ], [ -119.460141071999942, 50.215597562000028 ], [ -119.460151480999983, 50.215899940000064 ], [ -119.460161984999942, 50.216205647000017 ], [ -119.460175739999968, 50.216604744000101 ], [ -119.460185338999977, 50.216884643000043 ], [ -119.460189046999957, 50.216992171000051 ], [ -119.460193885999971, 50.217134228000056 ], [ -119.46019800599997, 50.21725337900007 ], [ -119.460203802999942, 50.217421625000071 ], [ -119.459999005999975, 50.217372647000062 ], [ -119.459781446999969, 50.218050251000122 ], [ -119.459652536999968, 50.218258196000122 ], [ -119.459463361999966, 50.218563338000067 ], [ -119.459185033999958, 50.219012222000053 ], [ -119.459017803, 50.219760490000098 ], [ -119.458984883999932, 50.220300120000076 ], [ -119.458801836999925, 50.221255052000103 ], [ -119.458709040999977, 50.221608128000106 ], [ -119.45846879199999, 50.221613215000083 ], [ -119.458399477999976, 50.220265402000059 ], [ -119.458819617999907, 50.220256506000119 ], [ -119.458782082999903, 50.219526732000105 ], [ -119.458327787999949, 50.219499734000053 ], [ -119.458708169999966, 50.216867301000057 ], [ -119.458704687, 50.216867094000122 ], [ -119.458675431999907, 50.217069564000099 ], [ -119.458624227999948, 50.217066521000028 ], [ -119.458588141999954, 50.217316265000093 ], [ -119.45841804399997, 50.21730615600012 ], [ -119.45838064699997, 50.217564969000051 ], [ -119.458272373999961, 50.21755853400002 ], [ -119.458240852999964, 50.21777667200007 ], [ -119.458169081999927, 50.217772407000083 ], [ -119.458145155999972, 50.217937973000055 ], [ -119.458005509999936, 50.217929674000032 ], [ -119.457973962999944, 50.218147978000083 ], [ -119.457815769999954, 50.218138576000072 ], [ -119.457781865999934, 50.218373181000096 ], [ -119.457711001999911, 50.218368968000107 ], [ -119.457681271999959, 50.218574683000028 ], [ -119.457528321, 50.218565592000104 ], [ -119.457501975999932, 50.218747886000074 ], [ -119.457369608999912, 50.218740018000055 ], [ -119.457331080999936, 50.219006589000124 ], [ -119.457128324999957, 50.218994537000128 ], [ -119.457099582999973, 50.219193394000037 ], [ -119.45704030499995, 50.219189871000026 ], [ -119.457016986999932, 50.219351196000083 ], [ -119.456871303999961, 50.219342536000099 ], [ -119.456837991999947, 50.219573 ], [ -119.45676582599998, 50.219568710000019 ], [ -119.456744795999938, 50.219714202000034 ], [ -119.45666214299996, 50.219709289000036 ], [ -119.456626004999919, 50.219959303000053 ], [ -119.456411752999941, 50.219946567000065 ], [ -119.456376605999964, 50.220189709000131 ], [ -119.456287093999947, 50.22018438800005 ], [ -119.456255013999964, 50.220406312000094 ], [ -119.456083624999962, 50.220396123000043 ], [ -119.456054915999971, 50.220594715000111 ], [ -119.455908013999945, 50.220585982000038 ], [ -119.455883417999971, 50.220756119000022 ], [ -119.455686304999972, 50.220744401000061 ], [ -119.455662215999908, 50.220911023000021 ], [ -119.45549595199999, 50.220901139000027 ], [ -119.455474816999939, 50.221047327000129 ], [ -119.455245923999911, 50.221033719000076 ], [ -119.455224711999932, 50.221180433 ], [ -119.455090407999947, 50.221172448000132 ], [ -119.454890774999981, 50.222553137000062 ], [ -119.451249015999977, 50.222336549000012 ], [ -119.451245706999913, 50.222359421000093 ], [ -119.450976964999924, 50.222343433000077 ], [ -119.450971395999943, 50.222381927000093 ], [ -119.450666064, 50.222363762000079 ], [ -119.450652886999961, 50.222454834000061 ], [ -119.450352768999949, 50.222436979000065 ], [ -119.45034717399993, 50.222475641000116 ], [ -119.449915258999923, 50.222449943000086 ], [ -119.449910655999957, 50.222481751000089 ], [ -119.449529485999946, 50.222459070000099 ], [ -119.449521439999927, 50.222514660000051 ], [ -119.449003638999969, 50.222483847000028 ], [ -119.448986122999955, 50.222604872000012 ], [ -119.448750794999967, 50.222590867000079 ], [ -119.448730718999968, 50.222729578000127 ], [ -119.448402131999956, 50.222710022000072 ], [ -119.44837611199992, 50.222889785000049 ], [ -119.448121924999924, 50.222874656000045 ], [ -119.448102407999954, 50.223009491000042 ], [ -119.447929722999959, 50.222999213000087 ], [ -119.447909706999923, 50.223137495000046 ], [ -119.447782513999982, 50.22312992500008 ], [ -119.44775151099999, 50.223344099000023 ], [ -119.447611004999928, 50.223335736000095 ], [ -119.44758521499989, 50.2235139020001 ], [ -119.447307783999975, 50.223497388000069 ], [ -119.447275411999954, 50.223721009000052 ], [ -119.447061425999962, 50.223708271000085 ], [ -119.447023314999953, 50.223971514000048 ], [ -119.44665618199997, 50.223949659000013 ], [ -119.446637104999965, 50.224081422000097 ], [ -119.446255418999939, 50.224058700000072 ], [ -119.44625028900002, 50.224094131000108 ], [ -119.445924867999977, 50.224074758000057 ], [ -119.445920974999979, 50.224101638000057 ], [ -119.44548260399992, 50.224075538000051 ], [ -119.445479155999962, 50.224099349000078 ], [ -119.44509060199999, 50.2240762140001 ], [ -119.445089537999976, 50.224083557000064 ], [ -119.444734825999916, 50.224062436000082 ], [ -119.44471632799997, 50.224190166000064 ], [ -119.444562600999973, 50.224181012000081 ], [ -119.444542027999915, 50.224323069000029 ], [ -119.444438427999955, 50.224316900000069 ], [ -119.444417329999936, 50.224462572000085 ], [ -119.444265253999987, 50.224453516000082 ], [ -119.444233033999978, 50.224675976000078 ], [ -119.443999371999922, 50.224662061000039 ], [ -119.443967633999975, 50.224881182000104 ], [ -119.443777750999928, 50.224869873000046 ], [ -119.443746635999901, 50.225084686000066 ], [ -119.443354513999978, 50.225061333000021 ], [ -119.443334223999926, 50.225201395000106 ], [ -119.443132353999928, 50.225189371000162 ], [ -119.443097726999952, 50.225428400000041 ], [ -119.442933158999892, 50.225418598000068 ], [ -119.44290033, 50.225645204000017 ], [ -119.442606027999901, 50.225627675000027 ], [ -119.442559632999988, 50.225947911000105 ], [ -119.442180015999966, 50.225925298000043 ], [ -119.442160320999946, 50.226061220000084 ], [ -119.44188843799995, 50.226045023000069 ], [ -119.441860718999934, 50.226236326000048 ], [ -119.441488300999964, 50.226214140000053 ], [ -119.441477399999982, 50.226289365000085 ], [ -119.443143504999938, 50.226254327000021 ], [ -119.443157284999955, 50.226523892000067 ], [ -119.44399768199996, 50.226506210000089 ], [ -119.444011466999967, 50.226775775000114 ], [ -119.444431666999932, 50.226766931000036 ], [ -119.444445453999947, 50.227036496000082 ], [ -119.44612626599999, 50.227001106000046 ], [ -119.446140061999927, 50.227270670000053 ], [ -119.447400674999983, 50.227244111000026 ], [ -119.44741447799997, 50.227513676000093 ], [ -119.448128109999942, 50.22749863400005 ], [ -119.448183688999933, 50.227114707000084 ], [ -119.450870186999921, 50.22727455100005 ], [ -119.45098735499991, 50.227546680000046 ], [ -119.451437048999964, 50.228593410000016 ], [ -119.451194564999923, 50.228615081000065 ], [ -119.450997410999932, 50.228634946000113 ], [ -119.450565586999957, 50.228612876000085 ], [ -119.450115759999946, 50.228501263000055 ], [ -119.448954947999951, 50.228214673000117 ], [ -119.448109686999942, 50.228140888000041 ], [ -119.447410869999928, 50.228028009000056 ], [ -119.44677042299999, 50.227832814000067 ], [ -119.445667412999981, 50.227584821000086 ], [ -119.44513338299997, 50.227568378000065 ], [ -119.444794818999952, 50.227524761000069 ], [ -119.443323146999901, 50.22707154800004 ], [ -119.443005106999962, 50.226954215000099 ], [ -119.442417903999939, 50.226828979000096 ], [ -119.437462413, 50.226130212000058 ], [ -119.437238002999948, 50.226658430000072 ], [ -119.437324273999977, 50.22710927800005 ], [ -119.43732701, 50.227585639000054 ], [ -119.437430330999959, 50.227733583000031 ], [ -119.437494117999918, 50.228250821000124 ], [ -119.437628434999965, 50.22888320400007 ], [ -119.437788403999946, 50.229146948000057 ], [ -119.438098253999925, 50.229466678000051 ], [ -119.438122743999884, 50.22955093700002 ], [ -119.438342511999977, 50.2298367920001 ], [ -119.438457061999927, 50.230077201000057 ], [ -119.438455262999966, 50.230808238000058 ], [ -119.438758279999931, 50.231155765000054 ], [ -119.43898210699993, 50.23125303700003 ], [ -119.440041494999889, 50.230889225000034 ], [ -119.440523346999925, 50.230673307000124 ], [ -119.441382994999941, 50.230133283000114 ], [ -119.44141249799999, 50.230122077000019 ], [ -119.441770403999953, 50.22998577500006 ], [ -119.442321892999985, 50.229901265000066 ], [ -119.443292113999945, 50.229880531000099 ], [ -119.443649634999957, 50.229919865000042 ], [ -119.444004161999956, 50.229902165000091 ], [ -119.444176990999921, 50.229916469000052 ], [ -119.44450917099999, 50.229943961000032 ], [ -119.445026086999974, 50.229913377000109 ], [ -119.44559632, 50.22974784000013 ], [ -119.445834482999913, 50.229726814000102 ], [ -119.446470160000032, 50.229818825000102 ], [ -119.447942621999943, 50.229829733000045 ], [ -119.448738623999986, 50.229971877000011 ], [ -119.449252324999961, 50.229943761000087 ], [ -119.449638417999921, 50.229902645000031 ], [ -119.450839857999981, 50.22980169700007 ], [ -119.451450974999915, 50.229839864000077 ], [ -119.451954184999934, 50.229932976000086 ], [ -119.452186886999954, 50.230533540000117 ], [ -119.45231083299997, 50.231103625000095 ], [ -119.452332699999914, 50.231204224000116 ], [ -119.452379271000012, 50.231418313000113 ], [ -119.452412113999983, 50.231569426000057 ], [ -119.452461095999965, 50.231794715000021 ], [ -119.452492029999917, 50.231937039000101 ], [ -119.452525870999949, 50.232092662000078 ], [ -119.452532905999945, 50.232494666000058 ], [ -119.452105697, 50.23329914300006 ], [ -119.452012837999973, 50.233611980000013 ], [ -119.451971785999945, 50.2337475080001 ], [ -119.451909319999942, 50.234429931000079 ], [ -119.451849107999934, 50.235671222000086 ], [ -119.451889568999917, 50.236670300000114 ], [ -119.451867173, 50.236985073000056 ], [ -119.451936076999928, 50.237376982000093 ], [ -119.452545091999951, 50.233682430000016 ], [ -119.452413083999943, 50.237834969000069 ], [ -119.452363579999954, 50.238237280000064 ], [ -119.452356858999934, 50.23829177300005 ], [ -119.452353844999934, 50.238419443000119 ], [ -119.452012992, 50.238485930000095 ], [ -119.450746320999954, 50.238540134000047 ], [ -119.447156328999938, 50.240123456000049 ], [ -119.44721776599999, 50.240249644000109 ], [ -119.447333481, 50.240338500000099 ], [ -119.44756126399993, 50.240434687000104 ], [ -119.447984327999961, 50.240528113000096 ], [ -119.448256037999911, 50.240668926000076 ], [ -119.448746479999954, 50.241014855000039 ], [ -119.449099339999975, 50.241100204000126 ], [ -119.449475622999941, 50.24109510400006 ], [ -119.450639336999956, 50.240266473000112 ], [ -119.45119075099997, 50.239788247000092 ], [ -119.451341370999955, 50.239623906000084 ], [ -119.451603965999979, 50.239417889000137 ], [ -119.451826212999961, 50.239278626000079 ], [ -119.45210622399999, 50.239164408000072 ], [ -119.452331276999956, 50.239098731000048 ], [ -119.452307768999972, 50.239335634000057 ], [ -119.45227827399998, 50.239632897000057 ], [ -119.452100909999956, 50.240303844000039 ], [ -119.451186134999901, 50.243133146000055 ], [ -119.451042891999947, 50.243576093000037 ], [ -119.450414661999972, 50.244498992000054 ], [ -119.450431189999975, 50.244068799000075 ], [ -119.450313501999943, 50.243917791000072 ], [ -119.449094899000016, 50.242882394000034 ], [ -119.448763332999974, 50.242646481000094 ], [ -119.448177318999939, 50.24222950700009 ], [ -119.447769884999929, 50.241939598000066 ] ], [ [ -119.443839378999897, 50.231636791000057 ], [ -119.443825594999936, 50.231367225000014 ], [ -119.445086318, 50.231340690000131 ], [ -119.445100109999984, 50.231610255000128 ], [ -119.445520352999964, 50.231601407000085 ], [ -119.44550655700003, 50.231331843000092 ], [ -119.446347038999974, 50.231314141000055 ], [ -119.446333237999937, 50.231044577000013 ], [ -119.44675347499998, 50.231035724000073 ], [ -119.446739673999929, 50.230766159000041 ], [ -119.44715990899999, 50.230757305000061 ], [ -119.4471323, 50.230218176000058 ], [ -119.445451378999934, 50.230253583000078 ], [ -119.445465173999963, 50.230523148000039 ], [ -119.443364002999942, 50.230567372000031 ], [ -119.443350220999946, 50.230297807000071 ], [ -119.442089523999982, 50.230324323000062 ], [ -119.442103298999925, 50.230593889000055 ], [ -119.441683064999964, 50.230602725 ], [ -119.44169117399997, 50.230761472000026 ], [ -119.441702729000014, 50.230762160000047 ], [ -119.44169421299992, 50.230820929000075 ], [ -119.441696838, 50.230872291000018 ], [ -119.44168673899999, 50.230872502000111 ], [ -119.441673708999957, 50.230962413000022 ], [ -119.441771840999934, 50.23096825800009 ], [ -119.44169436199995, 50.231502904000145 ], [ -119.441730578999952, 50.231505060000131 ], [ -119.441706190999966, 50.231673342000136 ], [ -119.44177868899996, 50.231677660000038 ], [ -119.441778328999973, 50.231680143000062 ], [ -119.443839378999897, 50.231636791000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021121", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2159750", "BldgCostT": "1280000", "sL_LossRatio": "0.849018698810076", "sL_AssetLoss": "64.71", "sL_BldgLoss": "54.94", "sL_StrLoss": "51.4", "sL_NStrLoss": "3.54", "sL_ContLoss": "9.77", "geom_point": "0101000020E6100000A539EC9D95DC5DC08BF468CBB5214940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.445931053999985, 50.261533142000083 ], [ -119.448409467999937, 50.261680540000114 ], [ -119.447890855999987, 50.265260090000027 ], [ -119.446044435999951, 50.26515028500009 ], [ -119.445082894999985, 50.265093090000093 ], [ -119.44514140299999, 50.264815188000092 ], [ -119.444945496999978, 50.263766996000058 ], [ -119.445112912, 50.26235990400005 ], [ -119.445552456999934, 50.261510621000099 ], [ -119.445931053999985, 50.261533142000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11337250", "BldgCostT": "7555000", "sL_LossRatio": "1", "sL_AssetLoss": "1167", "sL_BldgLoss": "1167", "sL_StrLoss": "1167", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5EACB90B2DC5DC0E0B10A61D61D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.451186134999901, 50.243133146000055 ], [ -119.452100909999956, 50.240303844000039 ], [ -119.45227827399998, 50.239632897000057 ], [ -119.452307768999972, 50.239335634000057 ], [ -119.452331276999956, 50.239098731000048 ], [ -119.45210622399999, 50.239164408000072 ], [ -119.451826212999961, 50.239278626000079 ], [ -119.451603965999979, 50.239417889000137 ], [ -119.451341370999955, 50.239623906000084 ], [ -119.45119075099997, 50.239788247000092 ], [ -119.450639336999956, 50.240266473000112 ], [ -119.449475622999941, 50.24109510400006 ], [ -119.449099339999975, 50.241100204000126 ], [ -119.448746479999954, 50.241014855000039 ], [ -119.448256037999911, 50.240668926000076 ], [ -119.447984327999961, 50.240528113000096 ], [ -119.44756126399993, 50.240434687000104 ], [ -119.447333481, 50.240338500000099 ], [ -119.44721776599999, 50.240249644000109 ], [ -119.447156328999938, 50.240123456000049 ], [ -119.450746320999954, 50.238540134000047 ], [ -119.452012992, 50.238485930000095 ], [ -119.452353844999934, 50.238419443000119 ], [ -119.452356858999934, 50.23829177300005 ], [ -119.452363579999954, 50.238237280000064 ], [ -119.452413083999943, 50.237834969000069 ], [ -119.452545091999951, 50.233682430000016 ], [ -119.451936076999928, 50.237376982000093 ], [ -119.451867173, 50.236985073000056 ], [ -119.451889568999917, 50.236670300000114 ], [ -119.451849107999934, 50.235671222000086 ], [ -119.451909319999942, 50.234429931000079 ], [ -119.451971785999945, 50.2337475080001 ], [ -119.452012837999973, 50.233611980000013 ], [ -119.452105697, 50.23329914300006 ], [ -119.452532905999945, 50.232494666000058 ], [ -119.452525870999949, 50.232092662000078 ], [ -119.452492029999917, 50.231937039000101 ], [ -119.452461095999965, 50.231794715000021 ], [ -119.452412113999983, 50.231569426000057 ], [ -119.452379271000012, 50.231418313000113 ], [ -119.452332699999914, 50.231204224000116 ], [ -119.45231083299997, 50.231103625000095 ], [ -119.452186886999954, 50.230533540000117 ], [ -119.451954184999934, 50.229932976000086 ], [ -119.451450974999915, 50.229839864000077 ], [ -119.450839857999981, 50.22980169700007 ], [ -119.449638417999921, 50.229902645000031 ], [ -119.449252324999961, 50.229943761000087 ], [ -119.448738623999986, 50.229971877000011 ], [ -119.447942621999943, 50.229829733000045 ], [ -119.446470160000032, 50.229818825000102 ], [ -119.445834482999913, 50.229726814000102 ], [ -119.44559632, 50.22974784000013 ], [ -119.445026086999974, 50.229913377000109 ], [ -119.44450917099999, 50.229943961000032 ], [ -119.444176990999921, 50.229916469000052 ], [ -119.444004161999956, 50.229902165000091 ], [ -119.443649634999957, 50.229919865000042 ], [ -119.443292113999945, 50.229880531000099 ], [ -119.442321892999985, 50.229901265000066 ], [ -119.441770403999953, 50.22998577500006 ], [ -119.44141249799999, 50.230122077000019 ], [ -119.441382994999941, 50.230133283000114 ], [ -119.440523346999925, 50.230673307000124 ], [ -119.440041494999889, 50.230889225000034 ], [ -119.43898210699993, 50.23125303700003 ], [ -119.438758279999931, 50.231155765000054 ], [ -119.438455262999966, 50.230808238000058 ], [ -119.438457061999927, 50.230077201000057 ], [ -119.438342511999977, 50.2298367920001 ], [ -119.438122743999884, 50.22955093700002 ], [ -119.438098253999925, 50.229466678000051 ], [ -119.437788403999946, 50.229146948000057 ], [ -119.437628434999965, 50.22888320400007 ], [ -119.437494117999918, 50.228250821000124 ], [ -119.437430330999959, 50.227733583000031 ], [ -119.43732701, 50.227585639000054 ], [ -119.437324273999977, 50.22710927800005 ], [ -119.437238002999948, 50.226658430000072 ], [ -119.437462413, 50.226130212000058 ], [ -119.442417903999939, 50.226828979000096 ], [ -119.443005106999962, 50.226954215000099 ], [ -119.443323146999901, 50.22707154800004 ], [ -119.444794818999952, 50.227524761000069 ], [ -119.44513338299997, 50.227568378000065 ], [ -119.445667412999981, 50.227584821000086 ], [ -119.44677042299999, 50.227832814000067 ], [ -119.447410869999928, 50.228028009000056 ], [ -119.448109686999942, 50.228140888000041 ], [ -119.448954947999951, 50.228214673000117 ], [ -119.450115759999946, 50.228501263000055 ], [ -119.450565586999957, 50.228612876000085 ], [ -119.450997410999932, 50.228634946000113 ], [ -119.451194564999923, 50.228615081000065 ], [ -119.451437048999964, 50.228593410000016 ], [ -119.45098735499991, 50.227546680000046 ], [ -119.450870186999921, 50.22727455100005 ], [ -119.453766774999963, 50.227446820000118 ], [ -119.453723722999939, 50.227744485000137 ], [ -119.454200081999929, 50.22777280800004 ], [ -119.454165580999941, 50.228011364000047 ], [ -119.454484087999944, 50.228030301000054 ], [ -119.454032591999962, 50.231151996000037 ], [ -119.45475179599994, 50.231136798000144 ], [ -119.454807186999972, 50.232215048000093 ], [ -119.454386943999964, 50.232223930000032 ], [ -119.45441463399996, 50.232763057000035 ], [ -119.454204859999962, 50.232767489000054 ], [ -119.454065839999956, 50.233728583000065 ], [ -119.454715565999976, 50.233767207000021 ], [ -119.454197770999926, 50.237346915000046 ], [ -119.453875308999955, 50.23732774700003 ], [ -119.453457097999944, 50.240218425000137 ], [ -119.452691463999926, 50.240172910000048 ], [ -119.452734640999935, 50.241013864000074 ], [ -119.452742343999944, 50.241163900000075 ], [ -119.452690621999963, 50.241164992000023 ], [ -119.452322019999912, 50.241172777000017 ], [ -119.452329633999909, 50.241321080000105 ], [ -119.45262020499996, 50.241338355000089 ], [ -119.452672747999955, 50.241341478000066 ], [ -119.452644583999955, 50.241536105000094 ], [ -119.452943452999975, 50.241553871000086 ], [ -119.452914703999951, 50.241752542000079 ], [ -119.453201057999976, 50.241769565000048 ], [ -119.453178019999939, 50.241928780000094 ], [ -119.453369464000019, 50.241940161000031 ], [ -119.452851468999938, 50.245519826000084 ], [ -119.451060407999947, 50.245413344000063 ], [ -119.4507529159999, 50.245395061000075 ], [ -119.450407991999896, 50.244672601000076 ], [ -119.450414661999972, 50.244498992000054 ], [ -119.451042891999947, 50.243576093000037 ], [ -119.451186134999901, 50.243133146000055 ] ], [ [ -119.444989771999985, 50.229453735000135 ], [ -119.444975979999967, 50.229184170000103 ], [ -119.447077085999979, 50.229139919000069 ], [ -119.447090890999974, 50.229409483000069 ], [ -119.447853810999931, 50.229393405000074 ], [ -119.447971370999966, 50.228581361000117 ], [ -119.447049481999969, 50.228600788000051 ], [ -119.447035678999939, 50.228331224000058 ], [ -119.446195250999935, 50.228348929000077 ], [ -119.446181453999927, 50.228079365000056 ], [ -119.444080391999961, 50.228123601000071 ], [ -119.444066606999954, 50.227854037000057 ], [ -119.443646396999924, 50.227862878000082 ], [ -119.443632613999938, 50.227593313000092 ], [ -119.443212404999954, 50.227602154000053 ], [ -119.44322618599989, 50.227871719000085 ], [ -119.442385764999955, 50.227889397000126 ], [ -119.442399539999911, 50.22815896200008 ], [ -119.441979325999952, 50.228167799000076 ], [ -119.441993099999962, 50.228437364000094 ], [ -119.441572884, 50.228446199000089 ], [ -119.44158665599997, 50.228715766000043 ], [ -119.441175563999963, 50.228724408000076 ], [ -119.441169691999946, 50.22876494100003 ], [ -119.441267511999911, 50.228770768000075 ], [ -119.441203404999925, 50.229213126000133 ], [ -119.441212542999949, 50.229213670000036 ], [ -119.441166093999954, 50.229534171000083 ], [ -119.442048195999988, 50.229515627000055 ], [ -119.442034423999971, 50.229246061000062 ], [ -119.443295091999957, 50.229219546000103 ], [ -119.443308873999939, 50.229489111000078 ], [ -119.444989771999985, 50.229453735000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021123", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040999020A6DB5DC0BFA3213E0B254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433883273999967, 50.287975445000058 ], [ -119.434089211999932, 50.287971130000081 ], [ -119.434144245999946, 50.289049388000116 ], [ -119.433723494, 50.289058202000085 ], [ -119.433737250999954, 50.289327766000071 ], [ -119.43331649699999, 50.28933657900005 ], [ -119.433330250999944, 50.289606143000086 ], [ -119.432067977999907, 50.289632574000066 ], [ -119.432081726999954, 50.289902139000091 ], [ -119.430398682999964, 50.289937358000017 ], [ -119.430412421999961, 50.290206923 ], [ -119.429553836999943, 50.29022488 ], [ -119.429549347999938, 50.290185096000073 ], [ -119.429530076999953, 50.290014151000094 ], [ -119.429513885999953, 50.289870702000044 ], [ -119.429605496999898, 50.289725386000086 ], [ -119.429798497999968, 50.289619607000091 ], [ -119.431634803999927, 50.289342706000106 ], [ -119.432271410999974, 50.289182084000124 ], [ -119.432829203999958, 50.288961695000111 ], [ -119.433644689999952, 50.288559794000079 ], [ -119.43386701899999, 50.288388002000048 ], [ -119.433932575999933, 50.288256602000033 ], [ -119.433940475, 50.288134304000017 ], [ -119.433883273999967, 50.287975445000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AFE5F81529DD5DC09A0E3A743C1E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.456043135999934, 50.234887473000114 ], [ -119.45662675199999, 50.23487513 ], [ -119.456696054999924, 50.236222941000051 ], [ -119.456275773999891, 50.236231831000062 ], [ -119.456317349999935, 50.237040518000107 ], [ -119.455897062999981, 50.237049406000018 ], [ -119.45592477699995, 50.237588531000043 ], [ -119.455431248999929, 50.237598966000064 ], [ -119.454663897999964, 50.237615187000081 ], [ -119.45459465099999, 50.23626737300004 ], [ -119.455014931999926, 50.236258489000107 ], [ -119.454959528999979, 50.235180238000076 ], [ -119.45537980099999, 50.235171354000059 ], [ -119.455365946999976, 50.234901792000095 ], [ -119.456043135999934, 50.234887473000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021125", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9201917", "BldgCostT": "6136667", "sL_LossRatio": "0.982986392718753", "sL_AssetLoss": "554.85", "sL_BldgLoss": "545.41", "sL_StrLoss": "542", "sL_NStrLoss": "3.41", "sL_ContLoss": "9.44", "geom_point": "0101000020E6100000884703F492DB5DC0D10CB98409244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.427455742999953, 50.285324234000058 ], [ -119.427514256999984, 50.284921855000078 ], [ -119.42731620099994, 50.284910047000061 ], [ -119.427325524999944, 50.284852708000081 ], [ -119.427778300999947, 50.283706302000091 ], [ -119.427949986, 50.283610992000014 ], [ -119.428188509, 50.283599890000083 ], [ -119.428528718999985, 50.28368339700004 ], [ -119.429202592999971, 50.284012398000051 ], [ -119.429369571999942, 50.284026797000124 ], [ -119.429542005, 50.283985688000051 ], [ -119.42961668699999, 50.283879090000035 ], [ -119.429579299999929, 50.283777589000131 ], [ -119.429471798999941, 50.283692694000095 ], [ -119.42841522399999, 50.283126002000081 ], [ -119.427904184999974, 50.282944864000036 ], [ -119.427833482999958, 50.282919782000107 ], [ -119.427440686999944, 50.282732200000062 ], [ -119.426416560999925, 50.282081210000086 ], [ -119.425344027999984, 50.281399441000048 ], [ -119.42650500399999, 50.281053482000068 ], [ -119.427944269999941, 50.280674458000099 ], [ -119.42861721599995, 50.280534307000039 ], [ -119.428971896999911, 50.280460438000077 ], [ -119.429631874, 50.280409521000152 ], [ -119.429496832, 50.28025254500006 ], [ -119.42889431499998, 50.279733725000078 ], [ -119.428600969999962, 50.279554352000048 ], [ -119.428559059999927, 50.27952869800005 ], [ -119.428061216999978, 50.279307693000106 ], [ -119.426902384999948, 50.278631127000047 ], [ -119.426738233999956, 50.27852029000011 ], [ -119.426181113999945, 50.27814404500004 ], [ -119.425035008999942, 50.277661366000117 ], [ -119.424959142999938, 50.277646264000133 ], [ -119.42450432899993, 50.277697311000068 ], [ -119.424485589999961, 50.277707151000094 ], [ -119.424554007000012, 50.277236791000099 ], [ -119.427390701999983, 50.277405984000012 ], [ -119.427394776999975, 50.277377957000049 ], [ -119.431224762999989, 50.277606276000064 ], [ -119.432393363999921, 50.277675914000092 ], [ -119.432983900999886, 50.277711100000026 ], [ -119.43279101499999, 50.279038862000036 ], [ -119.436089192999958, 50.279235315000058 ], [ -119.43593332599994, 50.280308731000083 ], [ -119.43556940799999, 50.282814728000126 ], [ -119.43469434599993, 50.282762615000124 ], [ -119.434666975999974, 50.282951049000069 ], [ -119.433839160999952, 50.282901744000135 ], [ -119.433789053999988, 50.283246668000103 ], [ -119.433399458999972, 50.283223461000041 ], [ -119.432962984999932, 50.286227680000138 ], [ -119.427784156999962, 50.285919063000087 ], [ -119.427715424999946, 50.285661204000064 ], [ -119.427455742999953, 50.285324234000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021126", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "161.1", "sL_BldgLoss": "161.1", "sL_StrLoss": "161.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008085E53262DD5DC0C06268D0AB1C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.45767281799999, 50.227610099000096 ], [ -119.45783785899998, 50.226468306000115 ], [ -119.457312584999983, 50.226437091000072 ], [ -119.457830009999938, 50.222857317000035 ], [ -119.458241713999911, 50.222881784000066 ], [ -119.458255595999944, 50.222785727 ], [ -119.459373752999923, 50.222852168000088 ], [ -119.459322961999973, 50.22186498500011 ], [ -119.458902808999937, 50.221873882000061 ], [ -119.458888943999952, 50.221604319000043 ], [ -119.458709040999977, 50.221608128000106 ], [ -119.458801836999925, 50.221255052000103 ], [ -119.458984883999932, 50.220300120000076 ], [ -119.459017803, 50.219760490000098 ], [ -119.459185033999958, 50.219012222000053 ], [ -119.459463361999966, 50.218563338000067 ], [ -119.459652536999968, 50.218258196000122 ], [ -119.459781446999969, 50.218050251000122 ], [ -119.459999005999975, 50.217372647000062 ], [ -119.46015121, 50.217488191000072 ], [ -119.460145281999957, 50.217530930000066 ], [ -119.460091702999989, 50.217919699000063 ], [ -119.460083000999958, 50.222003600000079 ], [ -119.460107473999969, 50.22208911900006 ], [ -119.460061594999985, 50.222803179000046 ], [ -119.46036703599998, 50.225058001000093 ], [ -119.460382169999889, 50.225169873000084 ], [ -119.46049381, 50.226350697000051 ], [ -119.46048630899999, 50.226401698000089 ], [ -119.459962256999958, 50.227458960000043 ], [ -119.45992470299997, 50.227743891000138 ], [ -119.45767281799999, 50.227610099000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021127", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12949167", "BldgCostT": "8666667", "sL_LossRatio": "1", "sL_AssetLoss": "1265", "sL_BldgLoss": "1265", "sL_StrLoss": "1265", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000531EA35DC1DB5DC0BC8475A9B2224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.420489130999968, 50.271557086000016 ], [ -119.421828600999959, 50.271123008000124 ], [ -119.424162006999936, 50.271201404000152 ], [ -119.425001206000033, 50.271120205000095 ], [ -119.42539689100002, 50.270913693000111 ], [ -119.42571692300001, 50.27055620600003 ], [ -119.426153914999972, 50.270322598000099 ], [ -119.426582498999963, 50.269926694000056 ], [ -119.427145210999967, 50.269698794000135 ], [ -119.427848381999951, 50.269693099000072 ], [ -119.429388590999935, 50.269903893000063 ], [ -119.430747211999957, 50.269858304000067 ], [ -119.431577319, 50.269651799000037 ], [ -119.432137308, 50.269621907000086 ], [ -119.432593908999962, 50.269765796000087 ], [ -119.43346571099994, 50.269782904000131 ], [ -119.434613384999977, 50.270019304000066 ], [ -119.43527479799999, 50.270023496000071 ], [ -119.436499400999963, 50.26984550200013 ], [ -119.437034786999945, 50.269869690000078 ], [ -119.437296378000013, 50.270061997000049 ], [ -119.437759908999922, 50.270331188000085 ], [ -119.438239094999943, 50.270366808000105 ], [ -119.439516776999938, 50.270358194000046 ], [ -119.440772497999959, 50.270241498000118 ], [ -119.441117788999961, 50.270144604000052 ], [ -119.442094498999964, 50.270025007000093 ], [ -119.443382913999926, 50.269683204000046 ], [ -119.443573388999937, 50.269552093000094 ], [ -119.444236212999954, 50.268531001000035 ], [ -119.444849908999942, 50.267384498000091 ], [ -119.444895330999941, 50.266342123000136 ], [ -119.445797525999978, 50.266395789000029 ], [ -119.447954511999939, 50.26652406200003 ], [ -119.447435809999917, 50.270103588000019 ], [ -119.447111721999988, 50.270084318000045 ], [ -119.44700812899994, 50.270799096000111 ], [ -119.446309671999941, 50.270757563000124 ], [ -119.446191037999967, 50.271576012000068 ], [ -119.445938989999959, 50.27156102300011 ], [ -119.445901938, 50.271816618000045 ], [ -119.445509430999891, 50.271793276000054 ], [ -119.445489126999988, 50.271933328000038 ], [ -119.445202796, 50.271916298000029 ], [ -119.445186119999931, 50.272031335000044 ], [ -119.444879677999964, 50.272013108000117 ], [ -119.444872307, 50.272063941000027 ], [ -119.444572656999966, 50.272046118000034 ], [ -119.44456119799996, 50.272125149000082 ], [ -119.444211143999951, 50.272104326000047 ], [ -119.444167854999961, 50.272101751000115 ], [ -119.444153383999932, 50.272201557000059 ], [ -119.443747558999945, 50.272177416000034 ], [ -119.443732469999958, 50.272281467000028 ], [ -119.443294444999978, 50.272255409000095 ], [ -119.44328515399998, 50.27231947700006 ], [ -119.442941628999961, 50.272299040000114 ], [ -119.442929540999941, 50.272382386000046 ], [ -119.442572776999953, 50.272361159000098 ], [ -119.442565926999947, 50.27240839400006 ], [ -119.442283563999951, 50.272391593000087 ], [ -119.442283214999946, 50.272394 ], [ -119.441895417999959, 50.272370925000111 ], [ -119.4418856, 50.272438609000055 ], [ -119.441434749999985, 50.272411779999985 ], [ -119.441427780999973, 50.272459820000051 ], [ -119.441015071999971, 50.272435259000197 ], [ -119.441004064999959, 50.272511130000112 ], [ -119.440716079999987, 50.272493990000058 ], [ -119.440711052999987, 50.272528636000061 ], [ -119.435122510999918, 50.272195882000048 ], [ -119.435126136999912, 50.27217091300011 ], [ -119.434953150999903, 50.27216060900011 ], [ -119.43474270199999, 50.272148072000086 ], [ -119.434747555999962, 50.272114647000109 ], [ -119.434420492999962, 50.27209516300006 ], [ -119.434436538999989, 50.271984676000017 ], [ -119.434189492999977, 50.271969957000088 ], [ -119.434196833, 50.271919421000085 ], [ -119.433182459999969, 50.271858983000115 ], [ -119.433175193999901, 50.271909011000069 ], [ -119.432857537999936, 50.271890082000013 ], [ -119.432840784999911, 50.27200541800007 ], [ -119.431580989999972, 50.271930341000015 ], [ -119.431568930999944, 50.27201334700009 ], [ -119.42939786, 50.271883928000115 ], [ -119.429393432999944, 50.271914398000106 ], [ -119.428841839999933, 50.271881509000131 ], [ -119.428793222999943, 50.272216010000093 ], [ -119.428545074999974, 50.272201214000063 ], [ -119.428541524999915, 50.272225638000059 ], [ -119.428524318999976, 50.272344015000094 ], [ -119.428271522999964, 50.272328941000097 ], [ -119.428240215999949, 50.272544322000044 ], [ -119.428200492000016, 50.272541953 ], [ -119.428170624999979, 50.272747423000105 ], [ -119.427944321999973, 50.272733928000015 ], [ -119.427902529999969, 50.273021429000075 ], [ -119.427225823, 50.272981073000032 ], [ -119.427174115999918, 50.273336745000087 ], [ -119.426854250999966, 50.273317667000043 ], [ -119.426852100999966, 50.273332452000034 ], [ -119.426520257999968, 50.27331266000008 ], [ -119.426514586999943, 50.273351659000085 ], [ -119.42626401299998, 50.273336714000081 ], [ -119.426260776999968, 50.273358965000114 ], [ -119.425658961999943, 50.273323067000092 ], [ -119.425653549999979, 50.27336027899999 ], [ -119.425245730999961, 50.273335951000043 ], [ -119.425245230999948, 50.273339389000071 ], [ -119.424410868999956, 50.273289611000109 ], [ -119.424407494999954, 50.273312808000092 ], [ -119.424015805999915, 50.273289437000095 ], [ -119.42398958499993, 50.27346971700009 ], [ -119.423488859999949, 50.273439839000055 ], [ -119.423479463999939, 50.273504429000127 ], [ -119.422944536999978, 50.27347250800009 ], [ -119.422909951999941, 50.273710241000046 ], [ -119.422328399999955, 50.273675534000112 ], [ -119.422313629999934, 50.273777055000039 ], [ -119.422039328999958, 50.273760684000095 ], [ -119.42202612199999, 50.273851461000085 ], [ -119.421644380999936, 50.273828676000065 ], [ -119.421636306999943, 50.27388417100012 ], [ -119.421342298999917, 50.273866620000064 ], [ -119.421335494999965, 50.27391337700012 ], [ -119.420897399999959, 50.273887226000042 ], [ -119.420888077999976, 50.273951287000038 ], [ -119.420633165999931, 50.273936070000097 ], [ -119.42061647099996, 50.274050793000086 ], [ -119.420431513000011, 50.274039751000068 ], [ -119.420407871999913, 50.274202198000076 ], [ -119.418880850000036, 50.27411102500011 ], [ -119.418817971999928, 50.274542962000034 ], [ -119.416609385999934, 50.272635403000102 ], [ -119.418343496999952, 50.271862191000075 ], [ -119.42046159, 50.271566015000069 ], [ -119.420489130999968, 50.271557086000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.9", "sL_BldgLoss": "52.9", "sL_StrLoss": "52.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000FBA6335C6DB5DC0464E365026254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.434578760999926, 50.289310136000033 ], [ -119.434564998999974, 50.289040572000019 ], [ -119.436248005999971, 50.289005293000038 ], [ -119.436263164999929, 50.289302047000056 ], [ -119.435966690999962, 50.289266698000141 ], [ -119.435623517999943, 50.289300505000057 ], [ -119.435342411999926, 50.289439903000101 ], [ -119.435180406999933, 50.289565602000089 ], [ -119.43498300499999, 50.29019649700011 ], [ -119.434574385999952, 50.290456510000112 ], [ -119.433222713999939, 50.291056500000089 ], [ -119.432917920999913, 50.291242409000077 ], [ -119.432793062999977, 50.291352197000016 ], [ -119.432730513999985, 50.291407199000069 ], [ -119.432486715999971, 50.291726604000054 ], [ -119.432250498999963, 50.291760396000072 ], [ -119.432176391999988, 50.29175821899999 ], [ -119.432122971999917, 50.290710833000112 ], [ -119.432964505999976, 50.290693214000072 ], [ -119.432950754000018, 50.29042364900004 ], [ -119.433371516999927, 50.290414837000078 ], [ -119.433357762999918, 50.290145273000036 ], [ -119.434199284999977, 50.290127645000069 ], [ -119.434158005999961, 50.289318953000176 ], [ -119.434578760999926, 50.289310136000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021129", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "1", "sL_AssetLoss": "313", "sL_BldgLoss": "313", "sL_StrLoss": "313", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000933D9D86C3DC5DC0185ADFB873204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.448779191999961, 50.249869597000078 ], [ -119.448930078999965, 50.249464619000086 ], [ -119.449274231999965, 50.24948508600005 ], [ -119.451891733999929, 50.249640717000027 ], [ -119.451841099999953, 50.2499905130001 ], [ -119.451854659999981, 50.249991320000092 ], [ -119.451336452999925, 50.253570940000088 ], [ -119.451327762999981, 50.253570423000028 ], [ -119.451300961999962, 50.253755541000075 ], [ -119.451151845999959, 50.253746676000048 ], [ -119.451141758999938, 50.253816344000036 ], [ -119.45108919099998, 50.253813219000094 ], [ -119.451061764999935, 50.254002645000114 ], [ -119.450984817999966, 50.253998070000129 ], [ -119.45095327199999, 50.25421594700002 ], [ -119.450822332, 50.254208163000037 ], [ -119.450335231999986, 50.257572053000096 ], [ -119.447497265999985, 50.257403301000089 ], [ -119.446990385999953, 50.25737315300011 ], [ -119.447366182999971, 50.256222998000077 ], [ -119.44742202299993, 50.255394105000022 ], [ -119.447204411999962, 50.253897209000115 ], [ -119.447383590999948, 50.252740814000106 ], [ -119.447749992999945, 50.252491500000076 ], [ -119.448347484999957, 50.251830697000074 ], [ -119.448779191999961, 50.249869597000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30856000", "BldgCostT": "21280000", "sL_LossRatio": "1", "sL_AssetLoss": "1361", "sL_BldgLoss": "1361", "sL_StrLoss": "1361", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000073865E5693DA5DC0892EE21A23254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.405450533999911, 50.296155813000027 ], [ -119.405545832999934, 50.295502815000098 ], [ -119.405224670999985, 50.295483608000048 ], [ -119.405271905999967, 50.295159965000018 ], [ -119.404536671999907, 50.295115989000109 ], [ -119.404701187999962, 50.293988822000138 ], [ -119.40185544399999, 50.293818566000091 ], [ -119.401938767, 50.293710897000068 ], [ -119.401984374999955, 50.293652301000073 ], [ -119.402051919999934, 50.293565544000046 ], [ -119.40298867599999, 50.292362034000085 ], [ -119.403381280999952, 50.291942329000051 ], [ -119.403407446999978, 50.291922184000086 ], [ -119.403877762999969, 50.291560132000029 ], [ -119.404016639999952, 50.291453218000051 ], [ -119.404607126999935, 50.291145539000063 ], [ -119.405645161999928, 50.290727451000052 ], [ -119.407567395999976, 50.290089073000054 ], [ -119.407717588999958, 50.290039192000066 ], [ -119.407759440999911, 50.290025291000099 ], [ -119.407833484999941, 50.290000831000057 ], [ -119.40979976399997, 50.289348267000079 ], [ -119.409907620999931, 50.289312483000046 ], [ -119.410487189999941, 50.289139634000058 ], [ -119.41064058399995, 50.289093888000131 ], [ -119.412348331999965, 50.288584616000087 ], [ -119.412874839999986, 50.288376878000093 ], [ -119.413086786999955, 50.288276731000039 ], [ -119.41382498699997, 50.287806326000087 ], [ -119.413569680999956, 50.287430044000132 ], [ -119.413539944999968, 50.287410304000083 ], [ -119.411782956999929, 50.286244640000042 ], [ -119.411904859999979, 50.286201395000063 ], [ -119.412471640999954, 50.286191026000061 ], [ -119.41259282, 50.286208585000089 ], [ -119.412994715999972, 50.286266762000118 ], [ -119.413161915999964, 50.286290963000077 ], [ -119.414533657999954, 50.286648206000031 ], [ -119.415551707999967, 50.286772187000103 ], [ -119.41670546499995, 50.286245367000099 ], [ -119.417120928999935, 50.28603054000012 ], [ -119.417376517999926, 50.285898397000068 ], [ -119.417589659999962, 50.285788186000097 ], [ -119.418500520999899, 50.285196296000073 ], [ -119.419580366999952, 50.284410861000069 ], [ -119.42131466499994, 50.28314929099999 ], [ -119.423788920999954, 50.28198362200007 ], [ -119.425344027999984, 50.281399441000048 ], [ -119.426416560999925, 50.282081210000086 ], [ -119.427440686999944, 50.282732200000062 ], [ -119.427833482999958, 50.282919782000107 ], [ -119.427904184999974, 50.282944864000036 ], [ -119.42841522399999, 50.283126002000081 ], [ -119.429471798999941, 50.283692694000095 ], [ -119.429579299999929, 50.283777589000131 ], [ -119.42961668699999, 50.283879090000035 ], [ -119.429542005, 50.283985688000051 ], [ -119.429369571999942, 50.284026797000124 ], [ -119.429202592999971, 50.284012398000051 ], [ -119.428528718999985, 50.28368339700004 ], [ -119.428188509, 50.283599890000083 ], [ -119.427949986, 50.283610992000014 ], [ -119.427778300999947, 50.283706302000091 ], [ -119.427325524999944, 50.284852708000081 ], [ -119.42731620099994, 50.284910047000061 ], [ -119.427125437999948, 50.284898673000022 ], [ -119.427084873999959, 50.285177617000059 ], [ -119.424373424999928, 50.285015918000063 ], [ -119.424235493999987, 50.285963981000123 ], [ -119.42322527599994, 50.285903718000057 ], [ -119.422780298999925, 50.288961506000085 ], [ -119.420626608999925, 50.288833002000104 ], [ -119.420362530999967, 50.290646905000081 ], [ -119.420750611999935, 50.290670064000054 ], [ -119.420709104999915, 50.290955170000124 ], [ -119.421255114999923, 50.290987751000053 ], [ -119.420734022999966, 50.294567040000075 ], [ -119.415366180999939, 50.294246618000074 ], [ -119.415179637999955, 50.295526764000023 ], [ -119.414588662999932, 50.295491470000087 ], [ -119.414549822999945, 50.29575797800009 ], [ -119.411177933999937, 50.295556547000032 ], [ -119.411041812999954, 50.296490056000074 ], [ -119.405450533999911, 50.296155813000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021137", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2965250", "BldgCostT": "2045000", "sL_LossRatio": "1", "sL_AssetLoss": "46.8", "sL_BldgLoss": "46.8", "sL_StrLoss": "46.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008DE4FA905AD85DC0758635D7E1274940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.379211762999915, 50.309982418000111 ], [ -119.379519778999963, 50.309738224000078 ], [ -119.380109986999955, 50.309404844000035 ], [ -119.380936095999942, 50.308938164000011 ], [ -119.380950964999982, 50.308929786000064 ], [ -119.38113751500002, 50.308824388000076 ], [ -119.381307340999939, 50.308715376000052 ], [ -119.381721336999988, 50.30844961100005 ], [ -119.382553487999985, 50.307660115000047 ], [ -119.38269348599999, 50.307555399000101 ], [ -119.382960905999965, 50.307571443000043 ], [ -119.382603951999926, 50.310008141000054 ], [ -119.38273588, 50.310016055000091 ], [ -119.382211524999931, 50.313595074000069 ], [ -119.380408311999958, 50.31348688000007 ], [ -119.380276385999977, 50.314387017000037 ], [ -119.380076858999956, 50.314375043 ], [ -119.380021194999941, 50.314754821000086 ], [ -119.377301039, 50.314591548000053 ], [ -119.377551014999966, 50.314306932000093 ], [ -119.378263745999973, 50.313495392000107 ], [ -119.378461712999936, 50.31307850600011 ], [ -119.378457668999914, 50.31277578800006 ], [ -119.378448124999977, 50.312055641 ], [ -119.378446608000019, 50.311940296000067 ], [ -119.378452367999913, 50.311362068000072 ], [ -119.37855493699999, 50.311094356000083 ], [ -119.378756256999907, 50.310568843000034 ], [ -119.378928171999988, 50.310281309000032 ], [ -119.379087567999974, 50.310113297000022 ], [ -119.379094694999935, 50.310105817000071 ], [ -119.379211762999915, 50.309982418000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021138", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5454417", "BldgCostT": "3761667", "sL_LossRatio": "1", "sL_AssetLoss": "358.1", "sL_BldgLoss": "358.1", "sL_StrLoss": "358.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002DB1197D58DB5DC0AF91C94E64264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.424223129999945, 50.30173362000005 ], [ -119.424273426999932, 50.301388047000046 ], [ -119.424215954999937, 50.301384621000047 ], [ -119.424736849999988, 50.297805347000107 ], [ -119.430328472999975, 50.298138615000063 ], [ -119.430278227999978, 50.298484191000128 ], [ -119.430335695999943, 50.298487615000063 ], [ -119.429815234999978, 50.302066912000015 ], [ -119.424223129999945, 50.30173362000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021139", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5123334", "BldgCostT": "3533334", "sL_LossRatio": "1", "sL_AssetLoss": "268.1", "sL_BldgLoss": "268.1", "sL_StrLoss": "268.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AA7201E8DD55DC0167EDBD9F82A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.329768482999953, 50.336753836000099 ], [ -119.329777585999963, 50.336692238000083 ], [ -119.329443176999973, 50.336672027000077 ], [ -119.329447352999978, 50.33664376300009 ], [ -119.329343885999918, 50.336637509000077 ], [ -119.329935792999919, 50.336444408000077 ], [ -119.330206083999911, 50.33623219300005 ], [ -119.330556585999915, 50.335937405000045 ], [ -119.330573784999956, 50.335712401000087 ], [ -119.33025055, 50.335119375000026 ], [ -119.330763232999956, 50.33528544900004 ], [ -119.330957729999923, 50.335273110000095 ], [ -119.331891621999915, 50.335213743000061 ], [ -119.332107559999955, 50.335204227000077 ], [ -119.332929553999989, 50.335290179000069 ], [ -119.33364062499993, 50.335364530000035 ], [ -119.333953919999914, 50.335345538000091 ], [ -119.334359856, 50.335272586 ], [ -119.33461233199999, 50.335187626000092 ], [ -119.334757133999915, 50.335101881000142 ], [ -119.334952580999953, 50.334986133000086 ], [ -119.335148863999976, 50.334918543000107 ], [ -119.335713319999954, 50.334871415000073 ], [ -119.336082914999949, 50.334767364000093 ], [ -119.336429158000016, 50.334611334000016 ], [ -119.336963274999931, 50.334291558000096 ], [ -119.337218971999931, 50.334213114000093 ], [ -119.337938707999967, 50.334481339000078 ], [ -119.339079614999946, 50.334821885000053 ], [ -119.339431114999954, 50.334888242000055 ], [ -119.339786931999967, 50.334887154000093 ], [ -119.341405041999906, 50.33477717900012 ], [ -119.342370192999937, 50.334641969000117 ], [ -119.342532043999967, 50.334619310000107 ], [ -119.342733744999975, 50.334591062000129 ], [ -119.343465104999979, 50.33482834300009 ], [ -119.343673893999949, 50.334962778000083 ], [ -119.34452440299999, 50.335490093000054 ], [ -119.344484266999984, 50.335487673000053 ], [ -119.344447731999963, 50.3357354850001 ], [ -119.341953011, 50.335585009000049 ], [ -119.341813460999958, 50.336531142000119 ], [ -119.33621775099999, 50.336193416000064 ], [ -119.33623038099995, 50.336107865000017 ], [ -119.335876646999949, 50.336086506000115 ], [ -119.33589784599998, 50.335942905000053 ], [ -119.335537066999962, 50.335921119000034 ], [ -119.33536421499997, 50.337091888000053 ], [ -119.329768482999953, 50.336753836000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021140", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7257250", "BldgCostT": "5005000", "sL_LossRatio": "1", "sL_AssetLoss": "310.2", "sL_BldgLoss": "310.2", "sL_StrLoss": "310.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9BBFB0C7DD45DC00FE4A8F5E1334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.320775167999969, 50.40875228699999 ], [ -119.320755147999975, 50.40834264100009 ], [ -119.318885761999937, 50.408229678000055 ], [ -119.319261431999976, 50.405319910000067 ], [ -119.319181964999984, 50.405113785000047 ], [ -119.317523173999945, 50.405056126000069 ], [ -119.317461353999974, 50.405107182000052 ], [ -119.317227336999906, 50.405169747000102 ], [ -119.314131844999935, 50.405150431000024 ], [ -119.314334985999935, 50.403781081000069 ], [ -119.314370154999963, 50.403783208000114 ], [ -119.314480018999987, 50.403042582000104 ], [ -119.317910839999954, 50.403250038000039 ], [ -119.317973243999973, 50.403253810000116 ], [ -119.317958022999946, 50.402941883000061 ], [ -119.317903563999934, 50.401825912000042 ], [ -119.317901988999949, 50.401793653000048 ], [ -119.319167342999975, 50.401768422000032 ], [ -119.319219993999923, 50.402846748000037 ], [ -119.319641787999942, 50.402838335000077 ], [ -119.319667077999938, 50.403356193000064 ], [ -119.320083841000013, 50.403381379000059 ], [ -119.320052652999976, 50.403591811000112 ], [ -119.321838701000033, 50.403699731000074 ], [ -119.321769193999941, 50.404168804000044 ], [ -119.324889035999959, 50.404357248000117 ], [ -119.324359006999941, 50.40793556600007 ], [ -119.321995024999978, 50.407792786000066 ], [ -119.322040704999949, 50.408727023000061 ], [ -119.321132856999981, 50.408745148000037 ], [ -119.320775167999969, 50.40875228699999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "76.3", "sL_BldgLoss": "76.3", "sL_StrLoss": "76.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000953D4B8860D65DC043860274E7334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.347037712999978, 50.404911419000022 ], [ -119.352199414999944, 50.405105853000052 ], [ -119.352217385999893, 50.406142877 ], [ -119.346903117999958, 50.40582316900008 ], [ -119.347037712999978, 50.404911419000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021143", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002770040CBFD35DC076734C71B0314940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.307837703999937, 50.391567760000051 ], [ -119.307270131999971, 50.384700285000086 ], [ -119.308344811, 50.384765379000044 ], [ -119.309422364999932, 50.384830636000075 ], [ -119.30919812399999, 50.386341767000012 ], [ -119.308948394999902, 50.3880245450001 ], [ -119.310008365999948, 50.388088726000035 ], [ -119.309477349999923, 50.391667046000094 ], [ -119.307837703999937, 50.391567760000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021144", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2276500", "BldgCostT": "1570000", "sL_LossRatio": "1", "sL_AssetLoss": "90.4", "sL_BldgLoss": "90.4", "sL_StrLoss": "90.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000048BD6DC790D35DC058D06A37B02A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.302211272999955, 50.335081838000065 ], [ -119.302669515999966, 50.334419073000063 ], [ -119.303385071999955, 50.33357246200012 ], [ -119.30408356099997, 50.332640844000061 ], [ -119.304875622999973, 50.331753710000079 ], [ -119.30534798799998, 50.331395105000055 ], [ -119.305402917, 50.331396481000056 ], [ -119.30552515699999, 50.331399537000024 ], [ -119.306872736999964, 50.33181980100008 ], [ -119.308319357999935, 50.332228888000031 ], [ -119.308526245999985, 50.332242349000069 ], [ -119.308677802999981, 50.332191040000012 ], [ -119.30874652699994, 50.332113756000055 ], [ -119.309621054, 50.331130725000051 ], [ -119.309771502999965, 50.331067633000082 ], [ -119.311032421999954, 50.331771165000113 ], [ -119.310489705999942, 50.332488004000098 ], [ -119.309611680999936, 50.332640294000072 ], [ -119.309099815999915, 50.332821193000058 ], [ -119.308883852999926, 50.333006634000121 ], [ -119.306795822999959, 50.332880008000089 ], [ -119.306908145999955, 50.332122423000094 ], [ -119.305235803999977, 50.332155605000068 ], [ -119.305261905999927, 50.332694779000107 ], [ -119.30484072899999, 50.332703132000063 ], [ -119.304853776999948, 50.332972720000029 ], [ -119.304432598999966, 50.332981072000052 ], [ -119.304458692999944, 50.333520247000138 ], [ -119.30403750899994, 50.333528597000047 ], [ -119.30406359899996, 50.334067773000115 ], [ -119.303642409999938, 50.334076122000049 ], [ -119.303668494999968, 50.33461529700002 ], [ -119.303247299999967, 50.334623645000093 ], [ -119.303260340999941, 50.334893233000081 ], [ -119.303681537999921, 50.334884884000104 ], [ -119.303694581999963, 50.335154473000038 ], [ -119.304958178999982, 50.335129420000072 ], [ -119.304997331999985, 50.335938182000042 ], [ -119.302470093999943, 50.335988275 ], [ -119.30248313099996, 50.3362578630001 ], [ -119.30206192299994, 50.336266206000055 ], [ -119.302074956999945, 50.336535794000042 ], [ -119.30123762499997, 50.336552376000085 ], [ -119.301282011999888, 50.336474253000063 ], [ -119.301863538999953, 50.335484998000034 ], [ -119.301898733999948, 50.33544416900012 ], [ -119.30200335499994, 50.335322873000074 ], [ -119.302211272999955, 50.335081838000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "1", "sL_AssetLoss": "51.8", "sL_BldgLoss": "51.8", "sL_StrLoss": "51.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7E44526A0DB5DC0FFAC3B0EEA244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.430357467999954, 50.289128663000014 ], [ -119.43034373099999, 50.288859098000096 ], [ -119.429502227999961, 50.288876697000099 ], [ -119.429463915999989, 50.288124649000039 ], [ -119.429465897999989, 50.288125808000061 ], [ -119.429498085999967, 50.288136883000071 ], [ -119.429780093999938, 50.288233900000073 ], [ -119.430208903999983, 50.288290184000068 ], [ -119.43040810499997, 50.288238785000026 ], [ -119.43072489599993, 50.288047391000077 ], [ -119.430941714999975, 50.287860406000135 ], [ -119.431373142999988, 50.287488297 ], [ -119.43153726299991, 50.287484862000071 ], [ -119.43153051799996, 50.287352557000055 ], [ -119.431693785999954, 50.287211734000067 ], [ -119.431944256999941, 50.287206491000092 ], [ -119.431934118999934, 50.287007717000073 ], [ -119.432070824999954, 50.286933989000076 ], [ -119.43319271199999, 50.286910498000054 ], [ -119.433206464999969, 50.287180064000054 ], [ -119.43352500899999, 50.287173391000081 ], [ -119.433633899, 50.287302494000095 ], [ -119.433668467999965, 50.287979944000107 ], [ -119.433883273999967, 50.287975445000058 ], [ -119.433940475, 50.288134304000017 ], [ -119.433932575999933, 50.288256602000033 ], [ -119.43386701899999, 50.288388002000048 ], [ -119.433644689999952, 50.288559794000079 ], [ -119.432829203999958, 50.288961695000111 ], [ -119.432271410999974, 50.289182084000124 ], [ -119.431634803999927, 50.289342706000106 ], [ -119.429798497999968, 50.289619607000091 ], [ -119.429605496999898, 50.289725386000086 ], [ -119.429513885999953, 50.289870702000044 ], [ -119.429530076999953, 50.290014151000094 ], [ -119.429549347999938, 50.290185096000073 ], [ -119.429553836999943, 50.29022488 ], [ -119.429150129999954, 50.290233321000095 ], [ -119.429095205999957, 50.289155060000049 ], [ -119.430357467999954, 50.289128663000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021146", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4649667", "BldgCostT": "3206667", "sL_LossRatio": "1", "sL_AssetLoss": "210.7", "sL_BldgLoss": "210.7", "sL_StrLoss": "210.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000487AA4038ADC5DC04F45854520264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.442880331999945, 50.29976764 ], [ -119.44296193299999, 50.299205341000025 ], [ -119.44285596899999, 50.299199040000097 ], [ -119.443375366999987, 50.295619669000075 ], [ -119.448966858999938, 50.295951996000042 ], [ -119.448885338999929, 50.296514300000105 ], [ -119.448991296999921, 50.296520595000111 ], [ -119.44847233199999, 50.300099989000081 ], [ -119.442880331999945, 50.29976764 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15701084", "BldgCostT": "10828334", "sL_LossRatio": "1", "sL_AssetLoss": "637", "sL_BldgLoss": "637", "sL_StrLoss": "637", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000476E130F24D75DC0B1506B9AF7294940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.358824807999952, 50.326356470000064 ], [ -119.361022233999975, 50.325344162000114 ], [ -119.361793837000036, 50.325038570000117 ], [ -119.362279877999967, 50.324929547000103 ], [ -119.362720384999932, 50.324830731000112 ], [ -119.362987751999952, 50.324797157 ], [ -119.363525153999888, 50.324731120000074 ], [ -119.364229866999935, 50.324736475000108 ], [ -119.36526377499996, 50.324863648000083 ], [ -119.366070131999905, 50.324964476000034 ], [ -119.366480232999905, 50.324977422000089 ], [ -119.366937153999942, 50.324940798000057 ], [ -119.367696571999943, 50.324775232000093 ], [ -119.368631544999943, 50.324500164000071 ], [ -119.36911135299999, 50.324286221000101 ], [ -119.36917203, 50.324259139000034 ], [ -119.369732663999969, 50.323900204000083 ], [ -119.36996438099996, 50.323656160000048 ], [ -119.370016432999975, 50.323601350000025 ], [ -119.371001866999919, 50.322559357000024 ], [ -119.371189836, 50.322385291000046 ], [ -119.371253940999978, 50.322325951 ], [ -119.371970617999921, 50.321662316000136 ], [ -119.372239494999988, 50.321413365000112 ], [ -119.37227530899996, 50.321369508000075 ], [ -119.374592846000013, 50.321508703000049 ], [ -119.374067713999949, 50.325087632000141 ], [ -119.370358265999982, 50.324864813 ], [ -119.369968574999973, 50.327518820000058 ], [ -119.368456569999978, 50.327427960000101 ], [ -119.368348940999937, 50.328160756000024 ], [ -119.362754066999969, 50.327824367000055 ], [ -119.363027135999928, 50.325966706000038 ], [ -119.362429582999965, 50.325930762000091 ], [ -119.362484569999964, 50.325556710000058 ], [ -119.362058215999966, 50.325531062000074 ], [ -119.361604873999951, 50.328614608000102 ], [ -119.359145447999964, 50.328466623000097 ], [ -119.358757789999913, 50.331102067000053 ], [ -119.355004878999949, 50.330876145000019 ], [ -119.354965328999953, 50.331144855000034 ], [ -119.354871291999984, 50.331139192000073 ], [ -119.354510545999972, 50.333589959000086 ], [ -119.351995038999917, 50.333438453000099 ], [ -119.35196054, 50.333672717000084 ], [ -119.351674595999924, 50.333655491000059 ], [ -119.351651733999987, 50.333810724000031 ], [ -119.35037692899999, 50.333733919000061 ], [ -119.350234322999896, 50.334702054000068 ], [ -119.347484633999969, 50.334536338000191 ], [ -119.347461102999915, 50.334696017000063 ], [ -119.347291655, 50.334685803000099 ], [ -119.34724461199994, 50.33500502200009 ], [ -119.346935362999929, 50.334986379000028 ], [ -119.346899408999946, 50.335230329000083 ], [ -119.346649309999918, 50.335215252000097 ], [ -119.34664010099999, 50.33527773500002 ], [ -119.346053377999965, 50.335242362000052 ], [ -119.34810221199993, 50.333452487000066 ], [ -119.348819334999973, 50.332972205000068 ], [ -119.350200465999976, 50.33221868400009 ], [ -119.351352060999943, 50.331490138000056 ], [ -119.353182777999947, 50.330030755000088 ], [ -119.355032772999934, 50.328708660000103 ], [ -119.3563162899999, 50.327791362000077 ], [ -119.358409689999959, 50.32656775300007 ], [ -119.358519484999931, 50.326503576000029 ], [ -119.35857179099996, 50.326473006000128 ], [ -119.358824807999952, 50.326356470000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14490333", "BldgCostT": "9993333", "sL_LossRatio": "1", "sL_AssetLoss": "962", "sL_BldgLoss": "962", "sL_StrLoss": "962", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EBDF9AE080D35DC04F6CD3128A2C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.303929398999969, 50.351425256000105 ], [ -119.302314111999948, 50.349732255000028 ], [ -119.302301709999981, 50.349736561000064 ], [ -119.300962335999955, 50.350202670000037 ], [ -119.300316514999935, 50.350425263000041 ], [ -119.299838151999964, 50.350119115000027 ], [ -119.299534972999936, 50.349926489000076 ], [ -119.298240393999933, 50.349217908000142 ], [ -119.297550236999939, 50.348840136000035 ], [ -119.297223323999972, 50.348617185000109 ], [ -119.296854194999966, 50.348250857000018 ], [ -119.29682608499995, 50.348211394000046 ], [ -119.296556594999984, 50.347833236000021 ], [ -119.296524759999926, 50.347788534000124 ], [ -119.296313102999989, 50.347188923000054 ], [ -119.296244605999959, 50.346851700000087 ], [ -119.296255787999911, 50.346653076000109 ], [ -119.296257491999938, 50.346622282000084 ], [ -119.296346428, 50.346422787000115 ], [ -119.296468311999959, 50.34626769500003 ], [ -119.296663770999928, 50.346139644000068 ], [ -119.297670021999934, 50.345799967000069 ], [ -119.297844846999965, 50.345696829000111 ], [ -119.297967224999951, 50.345557129000035 ], [ -119.298495962999965, 50.344513977000062 ], [ -119.299034008999953, 50.34454664200004 ], [ -119.298895108999915, 50.345482099000051 ], [ -119.301058108999925, 50.345613388000054 ], [ -119.301056827999972, 50.345622013000096 ], [ -119.302440064999971, 50.345705950000131 ], [ -119.302153849, 50.347634447000083 ], [ -119.305052830999969, 50.347810303000067 ], [ -119.305150471999923, 50.347808367000127 ], [ -119.305137413999944, 50.347538781000054 ], [ -119.305506975999975, 50.347531451000101 ], [ -119.305821024999943, 50.345414342000041 ], [ -119.306076016999953, 50.34542980500003 ], [ -119.306096019999984, 50.345294947000063 ], [ -119.306369882999917, 50.345311556000063 ], [ -119.306389312999912, 50.345180554000081 ], [ -119.306669763999963, 50.345197560000095 ], [ -119.306688004999927, 50.345074560000029 ], [ -119.306918020999944, 50.34508850800006 ], [ -119.306936800999978, 50.34496186600007 ], [ -119.307210276999967, 50.344978448000056 ], [ -119.307232696999918, 50.344827273000135 ], [ -119.307538032999929, 50.344845786000064 ], [ -119.30755749, 50.344714580000137 ], [ -119.3082485199999, 50.344756475000075 ], [ -119.308252357999919, 50.344730596000112 ], [ -119.310127046999952, 50.344844229000017 ], [ -119.31030731099996, 50.345245998000088 ], [ -119.310384988999886, 50.345415508000087 ], [ -119.31071211299999, 50.345499509000064 ], [ -119.310822203999962, 50.346000785000072 ], [ -119.311040834999972, 50.346240087000119 ], [ -119.311208688999926, 50.346423814000083 ], [ -119.31172989299999, 50.347610202000091 ], [ -119.312133685999967, 50.347836707000063 ], [ -119.31218557899993, 50.348033200000017 ], [ -119.312478803999966, 50.34827960300003 ], [ -119.313105915, 50.348437699000058 ], [ -119.313287468999988, 50.348524514000154 ], [ -119.313737286999981, 50.34873959100009 ], [ -119.314063863999962, 50.348813841000037 ], [ -119.314320109999983, 50.348872107 ], [ -119.314365881999919, 50.348883484000048 ], [ -119.314229111999964, 50.349806640000054 ], [ -119.308631966999911, 50.349467525000058 ], [ -119.308637661999953, 50.349429118000018 ], [ -119.306130441999954, 50.349277119000064 ], [ -119.305805638999985, 50.351466629000079 ], [ -119.304903282999987, 50.35141191000006 ], [ -119.30493807199997, 50.352130110000061 ], [ -119.304516723999939, 50.352138464000042 ], [ -119.304529779999953, 50.352408051000069 ], [ -119.304108428999925, 50.352416403000056 ], [ -119.304121482999918, 50.352685990000047 ], [ -119.303018496999968, 50.352707849000083 ], [ -119.30308431499999, 50.352676569000032 ], [ -119.303456875999927, 50.352402175000108 ], [ -119.303678414999922, 50.3521806910001 ], [ -119.303834853999973, 50.352024304000103 ], [ -119.303960611000022, 50.351814401000141 ], [ -119.303987018999948, 50.351636371000019 ], [ -119.303929398999969, 50.351425256000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021151", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "96.9", "sL_BldgLoss": "96.9", "sL_StrLoss": "96.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003CFB464BD0D55DC0552790A79F304940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.340335908999961, 50.377935013000048 ], [ -119.341651483999911, 50.378014312000055 ], [ -119.341650766999962, 50.378618991000039 ], [ -119.34162088299999, 50.378776852000044 ], [ -119.341622444999942, 50.378844819000037 ], [ -119.341624533999962, 50.378936766000088 ], [ -119.341625416999975, 50.378976533000035 ], [ -119.341575891, 50.37921500800006 ], [ -119.34164832, 50.381624484000092 ], [ -119.339807412, 50.381513522000034 ], [ -119.340335908999961, 50.377935013000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021152", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "45.3", "sL_BldgLoss": "45.3", "sL_StrLoss": "45.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000AA338CBD5D35DC0661EF112B9334940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.308569925999976, 50.405177809000108 ], [ -119.308501452999977, 50.403882142000036 ], [ -119.308416998999945, 50.402329467000172 ], [ -119.310067135999958, 50.402429354000027 ], [ -119.309800657999958, 50.404224536000065 ], [ -119.312645576999898, 50.40439668700003 ], [ -119.312534819999954, 50.405143098000117 ], [ -119.311364665999946, 50.405146819000066 ], [ -119.309695897999944, 50.405164877000139 ], [ -119.309575945999939, 50.405166175000019 ], [ -119.308569925999976, 50.405177809000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "74", "sL_BldgLoss": "74", "sL_StrLoss": "74", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D10CFBA01BD55DC0FE8516C031354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.328255800999955, 50.414715918000098 ], [ -119.33288157199999, 50.414994948000064 ], [ -119.332685602999945, 50.416319302000076 ], [ -119.330782677999963, 50.416333463000043 ], [ -119.330230994999965, 50.416342791000019 ], [ -119.326665353999914, 50.416286266000043 ], [ -119.326736072999935, 50.41580879500011 ], [ -119.327102334999907, 50.41583089900012 ], [ -119.32727621399998, 50.414656803000057 ], [ -119.328255800999955, 50.414715918000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021154", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62452167", "BldgCostT": "42806667", "sL_LossRatio": "1", "sL_AssetLoss": "3722", "sL_BldgLoss": "3722", "sL_StrLoss": "3722", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE801DC55AD45DC0B7C0FD04402D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.290545287, 50.369151809000122 ], [ -119.29056744899998, 50.367439356000055 ], [ -119.291096356999972, 50.359603443000054 ], [ -119.291730032999936, 50.359670802000011 ], [ -119.292387844999951, 50.359805562000112 ], [ -119.293151844999969, 50.36010019900008 ], [ -119.29366828, 50.360007910000022 ], [ -119.294657761999943, 50.359827795000065 ], [ -119.295913372999962, 50.359599199000115 ], [ -119.298308626999955, 50.359163102000082 ], [ -119.298982951999974, 50.358977466000098 ], [ -119.299379811999984, 50.358868279000014 ], [ -119.29939998499998, 50.358862728000062 ], [ -119.300204861999987, 50.358911569000064 ], [ -119.300191962000014, 50.358644806000079 ], [ -119.300431716999952, 50.358578832 ], [ -119.300949674999956, 50.358415571000123 ], [ -119.301867235999964, 50.35839740400008 ], [ -119.30188094099999, 50.358680644000088 ], [ -119.302129959999931, 50.358695750000059 ], [ -119.302231541999973, 50.358011506000032 ], [ -119.303061328, 50.357749932000068 ], [ -119.304788757999987, 50.357204790000033 ], [ -119.308015298999948, 50.356198646000017 ], [ -119.308259245, 50.356122565000071 ], [ -119.308137611999939, 50.355990628000058 ], [ -119.307446496999972, 50.355632802000159 ], [ -119.304629978999984, 50.354322221000068 ], [ -119.304786730999965, 50.353265838000048 ], [ -119.310384316999929, 50.353605146000078 ], [ -119.310364834999973, 50.353736548000015 ], [ -119.311543456999956, 50.353807955000079 ], [ -119.311579618999929, 50.353563994000098 ], [ -119.316600560999973, 50.353868048000081 ], [ -119.316669307999973, 50.353403910000097 ], [ -119.317542308999961, 50.353456753000032 ], [ -119.31764050000001, 50.352793731000098 ], [ -119.318203812999982, 50.352827825000077 ], [ -119.318222379999952, 50.352702444000101 ], [ -119.32204836499993, 50.352933928000056 ], [ -119.322344801000014, 50.350930834000017 ], [ -119.322870192999986, 50.350962611000057 ], [ -119.322889882999945, 50.350829546000107 ], [ -119.324972410999948, 50.35095548000006 ], [ -119.325062452999987, 50.350346762000122 ], [ -119.324346272999946, 50.350303458000049 ], [ -119.324875627999958, 50.346724881000064 ], [ -119.328595784999948, 50.346949771000048 ], [ -119.328925663999954, 50.344718169000046 ], [ -119.332239421999972, 50.344918385000014 ], [ -119.332686858999978, 50.341889648000056 ], [ -119.33628398399992, 50.342106871000048 ], [ -119.336499863999947, 50.34064463200005 ], [ -119.338474586999951, 50.340763831000096 ], [ -119.338874205999929, 50.338055980000064 ], [ -119.342663559999963, 50.33828461500017 ], [ -119.344470165999937, 50.338393571000047 ], [ -119.343942457999972, 50.341972280000078 ], [ -119.34196766799991, 50.341853179000054 ], [ -119.341568199999969, 50.344561027000097 ], [ -119.339350300999968, 50.344427222000064 ], [ -119.339070290999985, 50.346324481000089 ], [ -119.336631825999987, 50.34617731600013 ], [ -119.336128645999963, 50.349585040000044 ], [ -119.334520749999953, 50.349487972000098 ], [ -119.334508075999935, 50.349573777000074 ], [ -119.331480783999965, 50.349390956000072 ], [ -119.331186332999948, 50.351383449000132 ], [ -119.330562179999973, 50.351345745000124 ], [ -119.330528714999929, 50.351572163000093 ], [ -119.328446142999923, 50.351446334000038 ], [ -119.327958180999943, 50.354746514000112 ], [ -119.327432741999957, 50.354714761000068 ], [ -119.32741306299999, 50.354847826000061 ], [ -119.325105770999954, 50.354708362000054 ], [ -119.324739877999903, 50.357181582000088 ], [ -119.324419596, 50.357162219000031 ], [ -119.324370979999969, 50.35749078900006 ], [ -119.323953940999971, 50.357465575000063 ], [ -119.323923070999982, 50.35767419900008 ], [ -119.322880735999945, 50.357611172000091 ], [ -119.322868725999982, 50.357692324 ], [ -119.322414169999917, 50.357664835000044 ], [ -119.322291545999974, 50.358493335000041 ], [ -119.321462160999943, 50.358443174000051 ], [ -119.321411123999923, 50.358787954000029 ], [ -119.320696588999937, 50.358744734000055 ], [ -119.315812815999948, 50.358449206000024 ], [ -119.315830981999923, 50.358326583000057 ], [ -119.314608485999912, 50.35825257300008 ], [ -119.314739854999928, 50.357365998000056 ], [ -119.314407203, 50.35734585700002 ], [ -119.314371052999917, 50.357589817000068 ], [ -119.311902474999968, 50.35744031900002 ], [ -119.31188214399999, 50.357577475000042 ], [ -119.307979493999966, 50.357341014000049 ], [ -119.307687658999939, 50.359308466000087 ], [ -119.305956884999901, 50.359203554000025 ], [ -119.305466441999954, 50.362508709000032 ], [ -119.301127305999927, 50.36224557 ], [ -119.301078357000037, 50.362575210000038 ], [ -119.298488498999987, 50.362418070000111 ], [ -119.298478738999961, 50.362483769000086 ], [ -119.296152331999977, 50.362342561000062 ], [ -119.296175740999956, 50.362827486000079 ], [ -119.296597186, 50.362819161000083 ], [ -119.29663623499998, 50.363627924000106 ], [ -119.29621478299994, 50.363636250000077 ], [ -119.29622066099995, 50.363758008000069 ], [ -119.296240812999955, 50.364175425 ], [ -119.296507258999938, 50.364170161000139 ], [ -119.296662269999928, 50.36416710000001 ], [ -119.296673995, 50.36440993900009 ], [ -119.296714340999955, 50.365245450000138 ], [ -119.295871405999989, 50.365262100000123 ], [ -119.295884417999915, 50.365531688000083 ], [ -119.295462947999951, 50.365540011000107 ], [ -119.295475960999951, 50.365809599000045 ], [ -119.293790066999946, 50.365842876000045 ], [ -119.293777066999965, 50.365573288000064 ], [ -119.293303712999943, 50.36558262700003 ], [ -119.293262810999977, 50.365857727000069 ], [ -119.294724812999945, 50.365946504000064 ], [ -119.294307420999985, 50.368754207000066 ], [ -119.294358715999948, 50.368757320000071 ], [ -119.294293806, 50.369193924000115 ], [ -119.291439030999925, 50.369170433000136 ], [ -119.290545287, 50.369151809000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "97.5", "sL_BldgLoss": "97.5", "sL_StrLoss": "97.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005412239533D95DC04F390DEEDA264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.395477691999957, 50.301455853000036 ], [ -119.396359516999979, 50.301508661000106 ], [ -119.395836338, 50.305087783000033 ], [ -119.390244110999959, 50.304752775000061 ], [ -119.3903929199999, 50.303735678000166 ], [ -119.391333743999937, 50.303337703000096 ], [ -119.392934477999972, 50.302546337000145 ], [ -119.393006845999963, 50.302513610000126 ], [ -119.393745357999961, 50.302179713000065 ], [ -119.395477691999957, 50.301455853000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021157", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4862334", "BldgCostT": "3353334", "sL_LossRatio": "1", "sL_AssetLoss": "193.4", "sL_BldgLoss": "193.4", "sL_StrLoss": "193.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000055E408002BD35DC0CDE8E498EE2E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.297110444999987, 50.364285290000112 ], [ -119.302709335999964, 50.364624981000055 ], [ -119.302178018999939, 50.368203371000106 ], [ -119.302012719999979, 50.368193347000073 ], [ -119.30188885299998, 50.369027475000067 ], [ -119.301185138, 50.368984795000095 ], [ -119.296289422999948, 50.36868774400007 ], [ -119.296821211999912, 50.365109385000068 ], [ -119.296986498999914, 50.365119417000038 ], [ -119.29701834199993, 50.364905123000021 ], [ -119.297110444999987, 50.364285290000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021158", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1305000", "BldgCostT": "900000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E93837ECBD35DC0452F613C9C324940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.310154003999955, 50.393507242000084 ], [ -119.310883704999952, 50.393551413000033 ], [ -119.310812159999927, 50.394033565000022 ], [ -119.310352694999949, 50.397129712000044 ], [ -119.309861688999945, 50.397099991000111 ], [ -119.309771500999972, 50.397707625000088 ], [ -119.308162782999915, 50.397610231000051 ], [ -119.307936730999955, 50.393372993000085 ], [ -119.310154003999955, 50.393507242000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021159", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6459EA0A4DC5DC0C90499F00D284940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.446654541999976, 50.311414284000072 ], [ -119.448692882999964, 50.311535359000047 ], [ -119.44865634599995, 50.314297267000029 ], [ -119.446236014999926, 50.314298943000054 ], [ -119.446654541999976, 50.311414284000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021160", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "1", "sL_AssetLoss": "52.7", "sL_BldgLoss": "52.7", "sL_StrLoss": "52.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000AADB969D4D55DC03B43E51D2F2F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.340378433999973, 50.371168260000097 ], [ -119.340605249999925, 50.369632027000065 ], [ -119.340045128999918, 50.369598254000039 ], [ -119.340363914999926, 50.367439107000067 ], [ -119.34057346799996, 50.366019689000055 ], [ -119.341864101999974, 50.36609750500007 ], [ -119.341843161999961, 50.367927506000107 ], [ -119.341832445999898, 50.368595900000074 ], [ -119.341797547999988, 50.37125381300006 ], [ -119.340547290999922, 50.371178440000072 ], [ -119.340378433999973, 50.371168260000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "49.9", "sL_BldgLoss": "49.9", "sL_StrLoss": "49.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBBC52F9CBDB5DC0CEA896003E254940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.433047030999916, 50.292310600000107 ], [ -119.433033275999918, 50.292041036000086 ], [ -119.432612497, 50.292049848000083 ], [ -119.432598743999918, 50.291780283000051 ], [ -119.432177968999937, 50.291789092000073 ], [ -119.432176391999988, 50.29175821899999 ], [ -119.432250498999963, 50.291760396000072 ], [ -119.432486715999971, 50.291726604000054 ], [ -119.432730513999985, 50.291407199000069 ], [ -119.432793062999977, 50.291352197000016 ], [ -119.432917920999913, 50.291242409000077 ], [ -119.433222713999939, 50.291056500000089 ], [ -119.434574385999952, 50.290456510000112 ], [ -119.43498300499999, 50.29019649700011 ], [ -119.435180406999933, 50.289565602000089 ], [ -119.435342411999926, 50.289439903000101 ], [ -119.435623517999943, 50.289300505000057 ], [ -119.435966690999962, 50.289266698000141 ], [ -119.436263164999929, 50.289302047000056 ], [ -119.436289318999968, 50.289813984000055 ], [ -119.435868559999932, 50.289822807000085 ], [ -119.4358961, 50.290361935000085 ], [ -119.435475336999943, 50.290370756000115 ], [ -119.435489103999942, 50.290640320000122 ], [ -119.435068337999951, 50.290649139000074 ], [ -119.435082103, 50.290918703000038 ], [ -119.43466133599999, 50.290927521000079 ], [ -119.434675098999946, 50.291197086000047 ], [ -119.433833555999925, 50.291214717000067 ], [ -119.43384731499999, 50.291484282000084 ], [ -119.434268088999914, 50.291475466000065 ], [ -119.434309371999959, 50.292284159000047 ], [ -119.434308309999921, 50.292284181000099 ], [ -119.433047030999916, 50.292310600000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021163", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9913167", "BldgCostT": "6836667", "sL_LossRatio": "1", "sL_AssetLoss": "685.7", "sL_BldgLoss": "685.7", "sL_StrLoss": "685.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008FFA56B1D9D15DC081FA9EAA252C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.278009973999957, 50.345061582000042 ], [ -119.277870184, 50.343300189000082 ], [ -119.277856905999911, 50.341699929000072 ], [ -119.277794988000011, 50.341673256000099 ], [ -119.277877814999954, 50.340436145000098 ], [ -119.278906453999966, 50.340498790000034 ], [ -119.278802752, 50.341195166000034 ], [ -119.27923819099999, 50.341221682000047 ], [ -119.279152031999956, 50.341800274000093 ], [ -119.279239230999977, 50.341805584000049 ], [ -119.279160178999987, 50.342336440000061 ], [ -119.279177368999925, 50.342337487000059 ], [ -119.279073574, 50.343034482000078 ], [ -119.280395277999958, 50.343114955000075 ], [ -119.280177606999985, 50.344576865000086 ], [ -119.280471474999956, 50.34459475600007 ], [ -119.279938634999979, 50.348173129000052 ], [ -119.279142599999943, 50.348124666000039 ], [ -119.279079317999987, 50.348549548000122 ], [ -119.277753477999951, 50.348468818000065 ], [ -119.277815907000019, 50.345545885000021 ], [ -119.277954465999954, 50.345390079000047 ], [ -119.278009973999957, 50.345061582000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021164", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13941750", "BldgCostT": "9615000", "sL_LossRatio": "1", "sL_AssetLoss": "888", "sL_BldgLoss": "888", "sL_StrLoss": "888", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A240FE1EBD85DC0A6C123E046224940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.386864872, 50.265830700000059 ], [ -119.392452272999932, 50.266165895000029 ], [ -119.391929192999925, 50.269745162000042 ], [ -119.386341353999967, 50.269409940000109 ], [ -119.386864872, 50.265830700000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021165", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43864917", "BldgCostT": "30251667", "sL_LossRatio": "1", "sL_AssetLoss": "2611", "sL_BldgLoss": "2611", "sL_StrLoss": "2611", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A9DB41560D35DC03507CE3A5F2A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.30077223899994, 50.335752051000014 ], [ -119.300759210999971, 50.335482463000076 ], [ -119.30033800899993, 50.335490801000084 ], [ -119.300324982999911, 50.335221212000143 ], [ -119.299061381999948, 50.335246214000072 ], [ -119.299048364999962, 50.334976625000088 ], [ -119.298205965999912, 50.334993286000071 ], [ -119.298140905999944, 50.333645343000086 ], [ -119.298562093999962, 50.333637014000082 ], [ -119.29852305299994, 50.332828246000105 ], [ -119.298944232999986, 50.332819917000101 ], [ -119.298892171999981, 50.331741562000055 ], [ -119.298471001999957, 50.331749892000069 ], [ -119.298484013999911, 50.332019481000046 ], [ -119.298062840999961, 50.33202780900006 ], [ -119.298127895, 50.333375754000024 ], [ -119.297706709999957, 50.333384081000105 ], [ -119.297719719999975, 50.333653670000039 ], [ -119.296034967999958, 50.333686965000076 ], [ -119.295904982999929, 50.330991072000138 ], [ -119.296326146999959, 50.330982751000114 ], [ -119.296300146999926, 50.330443573000053 ], [ -119.295878986999952, 50.330451894000063 ], [ -119.295814002999975, 50.329103947000128 ], [ -119.297077446999964, 50.329078981000059 ], [ -119.29710345399991, 50.329618160000138 ], [ -119.297524605999982, 50.329609835000049 ], [ -119.297550616999914, 50.330149013000096 ], [ -119.297971773999961, 50.330140687000039 ], [ -119.297984781999929, 50.33041027600008 ], [ -119.298405941999988, 50.330401948000038 ], [ -119.298392929999977, 50.330132359000096 ], [ -119.298814085999965, 50.330124030000057 ], [ -119.298801071999975, 50.329854441000123 ], [ -119.299222225999969, 50.329846110000091 ], [ -119.299209209999944, 50.329576521 ], [ -119.299630361999974, 50.329568188000039 ], [ -119.299617341999948, 50.329298600000072 ], [ -119.30003849099991, 50.329290266000072 ], [ -119.300025471, 50.329020677000038 ], [ -119.30078799399999, 50.329005584000114 ], [ -119.301034142999924, 50.327346688000041 ], [ -119.306628495999973, 50.327686197000048 ], [ -119.306128505999979, 50.331058510000027 ], [ -119.306868247999972, 50.331043828000126 ], [ -119.30688131, 50.331313416000128 ], [ -119.307028519999946, 50.331310494000057 ], [ -119.30732636099998, 50.329301437000076 ], [ -119.312921003000014, 50.329640626000071 ], [ -119.312859040999967, 50.330058951000126 ], [ -119.31277688499992, 50.330130899000068 ], [ -119.312516778999935, 50.330531097000076 ], [ -119.31226990099999, 50.33068058599999 ], [ -119.311700713999983, 50.330817307000089 ], [ -119.311442705999966, 50.331002499000149 ], [ -119.31120250699999, 50.331546498000087 ], [ -119.311032421999954, 50.331771165000113 ], [ -119.309771502999965, 50.331067633000082 ], [ -119.309621054, 50.331130725000051 ], [ -119.30874652699994, 50.332113756000055 ], [ -119.308677802999981, 50.332191040000012 ], [ -119.308526245999985, 50.332242349000069 ], [ -119.308319357999935, 50.332228888000031 ], [ -119.306872736999964, 50.33181980100008 ], [ -119.30552515699999, 50.331399537000024 ], [ -119.305402917, 50.331396481000056 ], [ -119.30534798799998, 50.331395105000055 ], [ -119.304875622999973, 50.331753710000079 ], [ -119.30408356099997, 50.332640844000061 ], [ -119.303385071999955, 50.33357246200012 ], [ -119.302669515999966, 50.334419073000063 ], [ -119.302211272999955, 50.335081838000065 ], [ -119.30200335499994, 50.335322873000074 ], [ -119.301898733999948, 50.33544416900012 ], [ -119.301863538999953, 50.335484998000034 ], [ -119.301282011999888, 50.336474253000063 ], [ -119.30123762499997, 50.336552376000085 ], [ -119.300390109999967, 50.336569153000042 ], [ -119.300351033999902, 50.335760389000029 ], [ -119.30077223899994, 50.335752051000014 ] ], [ [ -119.304354320999892, 50.331363546000055 ], [ -119.304344393999955, 50.331158387000094 ], [ -119.303498775999955, 50.331107073000062 ], [ -119.303511990999979, 50.331380244000052 ], [ -119.303090824999941, 50.331388590000095 ], [ -119.303103864, 50.331658178000097 ], [ -119.302682695, 50.331666523000081 ], [ -119.302695731999933, 50.331936112000129 ], [ -119.302274560999962, 50.331944456 ], [ -119.302287595999985, 50.332214044000075 ], [ -119.301866421999975, 50.332222386000083 ], [ -119.301879453999916, 50.33249197400005 ], [ -119.301458278, 50.332500315000068 ], [ -119.301471307999947, 50.332769903000113 ], [ -119.301050127999957, 50.332778242000089 ], [ -119.301063155999941, 50.333047831000037 ], [ -119.300641975999952, 50.333056169000024 ], [ -119.300655001999985, 50.33332575700009 ], [ -119.300233816999963, 50.333334094000115 ], [ -119.300259862999923, 50.333873270000034 ], [ -119.299838675000018, 50.333881606000077 ], [ -119.29985169599999, 50.334151194000057 ], [ -119.300272886999949, 50.33414285900006 ], [ -119.300285911999978, 50.334412447000041 ], [ -119.301970682000018, 50.334379090000041 ], [ -119.301944616999933, 50.33383991400008 ], [ -119.302365803999948, 50.333831572000044 ], [ -119.30233973299994, 50.333292395000065 ], [ -119.302760916999901, 50.333284052000089 ], [ -119.30274787899998, 50.333014463000055 ], [ -119.303169058999941, 50.3330061180001 ], [ -119.303142979999905, 50.332466943 ], [ -119.303564155999979, 50.332458595000105 ], [ -119.303538071999952, 50.331919420000105 ], [ -119.303959242999966, 50.33191107200004 ], [ -119.303933155999943, 50.331371896000107 ], [ -119.304354320999892, 50.331363546000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "1", "sL_AssetLoss": "624", "sL_BldgLoss": "624", "sL_StrLoss": "624", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC30641281D35DC0E866E2CA972D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.304454930999896, 50.355501847000014 ], [ -119.304629978999984, 50.354322221000068 ], [ -119.307446496999972, 50.355632802000159 ], [ -119.308137611999939, 50.355990628000058 ], [ -119.308259245, 50.356122565000071 ], [ -119.308015298999948, 50.356198646000017 ], [ -119.304788757999987, 50.357204790000033 ], [ -119.303061328, 50.357749932000068 ], [ -119.302231541999973, 50.358011506000032 ], [ -119.302620604999959, 50.355390593000067 ], [ -119.304454930999896, 50.355501847000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021167", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21600167", "BldgCostT": "14896667", "sL_LossRatio": "1", "sL_AssetLoss": "1636", "sL_BldgLoss": "1636", "sL_StrLoss": "1636", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000054D40D92D85DC094B4EA8C52234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381275717000037, 50.279134479000099 ], [ -119.381684519999951, 50.276342375000119 ], [ -119.381281707999932, 50.276318185000079 ], [ -119.38180570499999, 50.272739 ], [ -119.387393920999941, 50.273074450000109 ], [ -119.387240728999956, 50.27412177100009 ], [ -119.386804603, 50.274330412000083 ], [ -119.386494889999966, 50.274885796000049 ], [ -119.386308202999956, 50.27564489400006 ], [ -119.385892484999928, 50.276005191000117 ], [ -119.38549889399999, 50.276003790000047 ], [ -119.384780484999936, 50.275686206000032 ], [ -119.384285495999976, 50.275615001000034 ], [ -119.384325195999935, 50.275848609000015 ], [ -119.384456829999962, 50.27596228 ], [ -119.384720991999956, 50.276190406000104 ], [ -119.38484668699999, 50.276737308000044 ], [ -119.385255509999979, 50.277610293000116 ], [ -119.385737106999912, 50.277986288000115 ], [ -119.386442209999942, 50.278296791000116 ], [ -119.386822204999959, 50.278900605000082 ], [ -119.38694273199998, 50.278936699000099 ], [ -119.386875691999961, 50.279394945000078 ], [ -119.386748981999943, 50.279387702000051 ], [ -119.386261904, 50.279199699000088 ], [ -119.385726007999935, 50.27916560900016 ], [ -119.385283504999933, 50.279375072000043 ], [ -119.381275717000037, 50.279134479000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16365500", "BldgCostT": "10790000", "sL_LossRatio": "0.995971156870811", "sL_AssetLoss": "826.54", "sL_BldgLoss": "823.21", "sL_StrLoss": "822", "sL_NStrLoss": "1.21", "sL_ContLoss": "3.33", "geom_point": "0101000020E6100000CED8C85CB6D75DC01739FA4E02234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.367973966999969, 50.271550281 ], [ -119.373561933999952, 50.271886429000055 ], [ -119.373037296999925, 50.275465579000056 ], [ -119.367448891999985, 50.275129406000076 ], [ -119.367973966999969, 50.271550281 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14321167", "BldgCostT": "9876667", "sL_LossRatio": "1", "sL_AssetLoss": "1034.4", "sL_BldgLoss": "1034.4", "sL_StrLoss": "1034.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D923E4AF8D75DC009AF134DD6234940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.37199733199995, 50.278019888000102 ], [ -119.377586126999958, 50.278355831000084 ], [ -119.377061731999916, 50.281934972000101 ], [ -119.371472499999967, 50.281599003000103 ], [ -119.37199733199995, 50.278019888000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "252.3", "sL_BldgLoss": "252.3", "sL_StrLoss": "252.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000845B881F2DD25DC054466D2CF2264940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.284753219999928, 50.303266985000029 ], [ -119.28530382799994, 50.30325768100009 ], [ -119.284986261999933, 50.305394020000101 ], [ -119.282897584999915, 50.305266818000099 ], [ -119.282884306999932, 50.304834691000039 ], [ -119.282868346, 50.30465351000008 ], [ -119.282841817999937, 50.30435197400007 ], [ -119.282820941999901, 50.304115082000052 ], [ -119.282782248999965, 50.303675397000106 ], [ -119.28275780200002, 50.303397454000041 ], [ -119.282747155999985, 50.303276555000089 ], [ -119.283175932999882, 50.303274498000036 ], [ -119.284753219999928, 50.303266985000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021173", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "42.7", "sL_BldgLoss": "42.7", "sL_StrLoss": "42.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007EC8B007EDA5DC0C722341F63204940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.413382615999978, 50.253322265000044 ], [ -119.413368990999942, 50.253052694000097 ], [ -119.411687222999916, 50.253087624000031 ], [ -119.411675385999956, 50.252853270000109 ], [ -119.416305096999949, 50.252853607000105 ], [ -119.416312076999958, 50.252991509000019 ], [ -119.415050755999985, 50.253017741000107 ], [ -119.415064388999923, 50.25328731100003 ], [ -119.413382615999978, 50.253322265000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98450167", "BldgCostT": "67896667", "sL_LossRatio": "1", "sL_AssetLoss": "7790", "sL_BldgLoss": "7790", "sL_StrLoss": "7790", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000865F0BF6B6D25DC046D919AE272D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.291096356999972, 50.359603443000054 ], [ -119.290937591999949, 50.359586570000047 ], [ -119.290915294999976, 50.359586880000066 ], [ -119.29095406299993, 50.35936189400006 ], [ -119.291008237999947, 50.358589483000102 ], [ -119.289964359999956, 50.358526363000109 ], [ -119.289962464999988, 50.358479437000014 ], [ -119.284205405999941, 50.358410417000137 ], [ -119.28415374399998, 50.354600615000088 ], [ -119.28218452699997, 50.354538664000145 ], [ -119.282844715999943, 50.354100293000094 ], [ -119.283562075999939, 50.353815493000063 ], [ -119.283592122999949, 50.353275705000016 ], [ -119.284275098999942, 50.353171697000086 ], [ -119.284400708999911, 50.352837096000073 ], [ -119.285142597999965, 50.35256094100005 ], [ -119.285269210999914, 50.352513798000068 ], [ -119.285360802999918, 50.352341391000074 ], [ -119.28534327199999, 50.351856543000032 ], [ -119.284256581999955, 50.351805143000085 ], [ -119.284252922999926, 50.35172890500008 ], [ -119.284674272999951, 50.351720624000073 ], [ -119.284648386999962, 50.351181443000058 ], [ -119.28422704, 50.351189724000093 ], [ -119.28418822, 50.350380952000094 ], [ -119.285873574999982, 50.350347821000085 ], [ -119.285912424999964, 50.351156592000073 ], [ -119.288019151999947, 50.351115142000019 ], [ -119.287954342999939, 50.349767193000048 ], [ -119.290061004999984, 50.349725708000022 ], [ -119.29008695099999, 50.350264887000066 ], [ -119.290929623999943, 50.350248282000067 ], [ -119.290955581999981, 50.350787460000078 ], [ -119.291798261999986, 50.350770849000106 ], [ -119.291811245999952, 50.351040438000048 ], [ -119.293075273999989, 50.35101550900005 ], [ -119.293101255999957, 50.351554687000053 ], [ -119.293943948999967, 50.35153805900007 ], [ -119.293956946999955, 50.351807648000054 ], [ -119.294378293999927, 50.351799332000056 ], [ -119.294365296999928, 50.351529744000096 ], [ -119.295207987999959, 50.351513107000088 ], [ -119.295191190999972, 50.351164851000071 ], [ -119.294166636999989, 50.351102622000013 ], [ -119.294383248999964, 50.349644993000062 ], [ -119.293096002999931, 50.349566795000058 ], [ -119.29318109399999, 50.348994287000053 ], [ -119.291880503999948, 50.348915262000041 ], [ -119.2924124099999, 50.345336834000051 ], [ -119.292611684999912, 50.345348944000108 ], [ -119.292671119999952, 50.344949040000067 ], [ -119.293321448999905, 50.344988555000064 ], [ -119.293437628999968, 50.344206756000077 ], [ -119.298495962999965, 50.344513977000062 ], [ -119.297967224999951, 50.345557129000035 ], [ -119.297844846999965, 50.345696829000111 ], [ -119.297670021999934, 50.345799967000069 ], [ -119.296663770999928, 50.346139644000068 ], [ -119.296468311999959, 50.34626769500003 ], [ -119.296346428, 50.346422787000115 ], [ -119.296257491999938, 50.346622282000084 ], [ -119.296255787999911, 50.346653076000109 ], [ -119.296244605999959, 50.346851700000087 ], [ -119.296313102999989, 50.347188923000054 ], [ -119.296524759999926, 50.347788534000124 ], [ -119.296556594999984, 50.347833236000021 ], [ -119.29682608499995, 50.348211394000046 ], [ -119.296854194999966, 50.348250857000018 ], [ -119.297223323999972, 50.348617185000109 ], [ -119.297550236999939, 50.348840136000035 ], [ -119.298240393999933, 50.349217908000142 ], [ -119.299534972999936, 50.349926489000076 ], [ -119.299838151999964, 50.350119115000027 ], [ -119.300316514999935, 50.350425263000041 ], [ -119.300962335999955, 50.350202670000037 ], [ -119.302301709999981, 50.349736561000064 ], [ -119.302314111999948, 50.349732255000028 ], [ -119.303929398999969, 50.351425256000105 ], [ -119.303987018999948, 50.351636371000019 ], [ -119.303960611000022, 50.351814401000141 ], [ -119.303834853999973, 50.352024304000103 ], [ -119.303678414999922, 50.3521806910001 ], [ -119.303456875999927, 50.352402175000108 ], [ -119.30308431499999, 50.352676569000032 ], [ -119.303018496999968, 50.352707849000083 ], [ -119.302857419999938, 50.352711040000031 ], [ -119.302860889999934, 50.352782748000081 ], [ -119.302696937999912, 50.352860663000087 ], [ -119.302815351, 50.352981718000045 ], [ -119.301606395999926, 50.353005663000033 ], [ -119.301591532999936, 50.352698409000013 ], [ -119.296875845999963, 50.352412194000067 ], [ -119.296937396999979, 50.351997860000054 ], [ -119.296495329999942, 50.351971020000065 ], [ -119.296524067999911, 50.352566494 ], [ -119.296102713999957, 50.352574818000079 ], [ -119.296141741000028, 50.353383583000081 ], [ -119.295720377999942, 50.353391905000066 ], [ -119.2957594, 50.354200670000083 ], [ -119.295338029999925, 50.354208991000085 ], [ -119.295364039999953, 50.354748168000121 ], [ -119.294942665999912, 50.354756488000099 ], [ -119.294981675999963, 50.355565253000094 ], [ -119.294560293999893, 50.355573571000086 ], [ -119.294586295999977, 50.356112748000072 ], [ -119.294164909999935, 50.356121066000043 ], [ -119.294190907999905, 50.356660243000057 ], [ -119.293769515999969, 50.356668559000113 ], [ -119.293780437999956, 50.356895073000047 ], [ -119.294408112000013, 50.356933194000106 ], [ -119.294158761999952, 50.358610837000107 ], [ -119.296001745999916, 50.358722750000076 ], [ -119.296011508999925, 50.358657050000012 ], [ -119.29939998499998, 50.358862728000062 ], [ -119.299379811999984, 50.358868279000014 ], [ -119.298982951999974, 50.358977466000098 ], [ -119.298308626999955, 50.359163102000082 ], [ -119.295913372999962, 50.359599199000115 ], [ -119.294657761999943, 50.359827795000065 ], [ -119.29366828, 50.360007910000022 ], [ -119.293151844999969, 50.36010019900008 ], [ -119.292387844999951, 50.359805562000112 ], [ -119.291730032999936, 50.359670802000011 ], [ -119.291096356999972, 50.359603443000054 ] ], [ [ -119.290819211999946, 50.356715175000048 ], [ -119.290806785999962, 50.35645713800011 ], [ -119.291228177, 50.356448833000059 ], [ -119.291215192999985, 50.356179244000032 ], [ -119.291636582999942, 50.356170937000094 ], [ -119.291597629999956, 50.355362171000102 ], [ -119.290333483999973, 50.355387085000046 ], [ -119.290372416999929, 50.356195853000052 ], [ -119.28868685799992, 50.356229051000142 ], [ -119.28859608599997, 50.354341924000074 ], [ -119.288174713, 50.354350220000086 ], [ -119.288294843999964, 50.356848050000082 ], [ -119.288768028999939, 50.356876813000049 ], [ -119.288810234999971, 50.356593081000092 ], [ -119.290819211999946, 50.356715175000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6735250", "BldgCostT": "4645000", "sL_LossRatio": "1", "sL_AssetLoss": "267.9", "sL_BldgLoss": "267.9", "sL_StrLoss": "267.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E9CB80392D45DC08F7FD1AB227D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.320362841999938, 50.985017626000058 ], [ -119.320523734999966, 50.983946715000059 ], [ -119.3198561, 50.98390691400003 ], [ -119.319872413999917, 50.983798334000042 ], [ -119.319831807999918, 50.983795914000048 ], [ -119.319959282999932, 50.98294749300009 ], [ -119.320058389999929, 50.982287847000073 ], [ -119.319995407999912, 50.982284092000057 ], [ -119.319611606999928, 50.982261210000033 ], [ -119.319648531999945, 50.982015452000056 ], [ -119.319126006999952, 50.981984298000043 ], [ -119.319655716999989, 50.978458750000115 ], [ -119.319421964999918, 50.978444812000106 ], [ -119.319428397999971, 50.978401997000056 ], [ -119.317754414999982, 50.97830216700001 ], [ -119.318096891999929, 50.97602310100006 ], [ -119.316778243000016, 50.975944444000042 ], [ -119.316800456999914, 50.975796643000066 ], [ -119.317315625999925, 50.972368570000064 ], [ -119.317340750999975, 50.972370068000068 ], [ -119.317389241999948, 50.972047371 ], [ -119.317482879999943, 50.972052956000084 ], [ -119.317498143999956, 50.971951373000117 ], [ -119.317964460999946, 50.971979190000134 ], [ -119.318008634999956, 50.971685185000048 ], [ -119.319523421999975, 50.971775532000017 ], [ -119.319649407, 50.970936820000048 ], [ -119.320765301999955, 50.971003363000051 ], [ -119.32077575699995, 50.970933745000124 ], [ -119.32408457799994, 50.971130990000098 ], [ -119.324085135999965, 50.972498158000086 ], [ -119.324085194999967, 50.972625110000074 ], [ -119.32408858899997, 50.972845479000092 ], [ -119.324090063999932, 50.972938696000064 ], [ -119.324092109999953, 50.973070594000021 ], [ -119.324097644999981, 50.973429669000055 ], [ -119.324098982999942, 50.973515465000077 ], [ -119.324101009999964, 50.973646970000082 ], [ -119.32413901799994, 50.976100885000108 ], [ -119.324142233999922, 50.976238655000053 ], [ -119.324152700999946, 50.976687839000121 ], [ -119.324169989999959, 50.977425894000113 ], [ -119.324175866999894, 50.977677243000073 ], [ -119.324191108999941, 50.978328286000114 ], [ -119.324185893, 50.978732790000102 ], [ -119.324185865999951, 50.978732997000051 ], [ -119.324174602, 50.979610120000068 ], [ -119.324174487999954, 50.979615592000094 ], [ -119.324173358999985, 50.979704870000084 ], [ -119.32417317, 50.979718397000042 ], [ -119.32417302099995, 50.979730744000015 ], [ -119.324150550999931, 50.981474071000058 ], [ -119.324149833999982, 50.981529165000104 ], [ -119.324128423999937, 50.983188942000069 ], [ -119.324124597000022, 50.983485241000103 ], [ -119.324124383999916, 50.98350250700004 ], [ -119.324038797999918, 50.98351995900002 ], [ -119.323820099999978, 50.983564610000087 ], [ -119.323291087999934, 50.98358809800007 ], [ -119.322895306999911, 50.983628327000069 ], [ -119.322847623999934, 50.983633162000032 ], [ -119.322742909999988, 50.983643815000065 ], [ -119.322580311999928, 50.983638030000115 ], [ -119.322393752999957, 50.983631379000073 ], [ -119.322363274999958, 50.983630300000073 ], [ -119.3212944429999, 50.983592333000061 ], [ -119.320579674999948, 50.983566909000039 ], [ -119.319926813999984, 50.983543704000049 ], [ -119.319925369999979, 50.983569985000052 ], [ -119.319911689999984, 50.983826419000124 ], [ -119.327210059, 50.983780371000094 ], [ -119.327152200999976, 50.984165868000055 ], [ -119.326226731999924, 50.984110751000152 ], [ -119.326039820999981, 50.985355891000012 ], [ -119.320362841999938, 50.985017626000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021176", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "86", "sL_BldgLoss": "86", "sL_StrLoss": "86", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000026DE64C8AFE55DC0E3F24851A1734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.587398970999971, 50.902607783000072 ], [ -119.587488187999952, 50.90198789100004 ], [ -119.58808861199995, 50.902228697000098 ], [ -119.588795092999959, 50.902351298000099 ], [ -119.589237613999927, 50.902428089000104 ], [ -119.589544337999939, 50.902451138000146 ], [ -119.592839206999884, 50.90269870700012 ], [ -119.593107068999984, 50.90265714000008 ], [ -119.592949002999973, 50.903756352000109 ], [ -119.59052837199998, 50.903617686000111 ], [ -119.589822208999948, 50.903633363000019 ], [ -119.589837169999896, 50.903902866000109 ], [ -119.58941095199999, 50.903912327000064 ], [ -119.589425912999928, 50.904181830000041 ], [ -119.58899969, 50.904191288000078 ], [ -119.589014646999942, 50.904460792000108 ], [ -119.585604847999932, 50.904536405000023 ], [ -119.585525831999959, 50.903110750000096 ], [ -119.585515223999948, 50.902919377000046 ], [ -119.585904202999927, 50.902910758000068 ], [ -119.587220066999976, 50.902881586000021 ], [ -119.587208979999957, 50.902681674000071 ], [ -119.58720512099994, 50.90261208200009 ], [ -119.587398970999971, 50.902607783000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021177", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "99552333", "BldgCostT": "69153333", "sL_LossRatio": "1", "sL_AssetLoss": "1478", "sL_BldgLoss": "1478", "sL_StrLoss": "1478", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001EA46D1D98E15DC08CEB298334754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.51836681199994, 50.924818105000028 ], [ -119.518422232999924, 50.924437353000059 ], [ -119.513692589999962, 50.924163331000045 ], [ -119.513671222, 50.924310027000026 ], [ -119.508000601999925, 50.923981220000087 ], [ -119.508084865999976, 50.92340322800009 ], [ -119.507772634999924, 50.923385114000034 ], [ -119.507854802999987, 50.92282150700003 ], [ -119.503693444999953, 50.92258001600004 ], [ -119.502433501999946, 50.922506868000049 ], [ -119.502768814999968, 50.920208671000125 ], [ -119.503688338999908, 50.920234623000098 ], [ -119.508219315999966, 50.920377008000116 ], [ -119.510113125999951, 50.920418931000064 ], [ -119.510910924999962, 50.920438021000095 ], [ -119.51094009099991, 50.919972940000086 ], [ -119.510943960999924, 50.919864335000092 ], [ -119.511208711999956, 50.919879687000055 ], [ -119.51422166899998, 50.920054359000055 ], [ -119.514293337999931, 50.919562237000079 ], [ -119.514549433, 50.917803668 ], [ -119.516541269999919, 50.917919096000126 ], [ -119.516572449999941, 50.917704913000094 ], [ -119.517316921, 50.917748047000025 ], [ -119.517333797999953, 50.917632100000027 ], [ -119.516752344999929, 50.917644641000052 ], [ -119.516746341999962, 50.917533400000089 ], [ -119.515580429999943, 50.917465841000123 ], [ -119.51559016899995, 50.917398953000045 ], [ -119.515587167999954, 50.917398779000081 ], [ -119.515552919999962, 50.917633998000092 ], [ -119.515038330999943, 50.917604177000015 ], [ -119.515024200999932, 50.917701210000047 ], [ -119.512153121999987, 50.917534778000061 ], [ -119.512072693999983, 50.918086878000125 ], [ -119.511303427999977, 50.918042272000079 ], [ -119.51124317899999, 50.918455796000096 ], [ -119.51099467, 50.918441384000104 ], [ -119.51110083, 50.91546205 ], [ -119.511096873999946, 50.914337520000103 ], [ -119.51111960599998, 50.914334383000011 ], [ -119.511381835999984, 50.914394866000102 ], [ -119.511441298999941, 50.914408582000071 ], [ -119.513584110999901, 50.914902698000041 ], [ -119.51474448, 50.914721440000022 ], [ -119.514744794999928, 50.914721376000017 ], [ -119.515854010999973, 50.914548103000079 ], [ -119.517019344999966, 50.914179178000147 ], [ -119.51743090899997, 50.91404887 ], [ -119.51823369099999, 50.913794705000036 ], [ -119.518365003999961, 50.913735083000084 ], [ -119.518644148999954, 50.913608366000112 ], [ -119.519024304999988, 50.913435798000137 ], [ -119.519708913999978, 50.912952990000122 ], [ -119.521075584999906, 50.91267240100013 ], [ -119.523718769999931, 50.912523428000014 ], [ -119.524209091999964, 50.912495800000038 ], [ -119.524976889999934, 50.912488697000065 ], [ -119.525275846999975, 50.912527782000076 ], [ -119.525565217999969, 50.912565603000111 ], [ -119.525770957999896, 50.912368530000037 ], [ -119.526152726999911, 50.912002844000021 ], [ -119.52615994199999, 50.911995963000074 ], [ -119.52662091599997, 50.911554398000114 ], [ -119.527188900999988, 50.910759696000106 ], [ -119.527614387999961, 50.909688697000078 ], [ -119.527599524999985, 50.90943660600005 ], [ -119.526993309999952, 50.908469596000025 ], [ -119.527014271999931, 50.908238752000031 ], [ -119.527064390999925, 50.907686199000111 ], [ -119.527010006999944, 50.907503579000021 ], [ -119.526906991999965, 50.907157896000072 ], [ -119.527553673999961, 50.905930193000138 ], [ -119.527594209999961, 50.905627413000012 ], [ -119.527614115999924, 50.905478695000113 ], [ -119.527764803999929, 50.905367591000058 ], [ -119.52973968, 50.905324900000096 ], [ -119.530386374000017, 50.905185294000098 ], [ -119.53130138799996, 50.904750890000095 ], [ -119.53173661299995, 50.904669801000104 ], [ -119.532180296999982, 50.904686892000086 ], [ -119.534722589999902, 50.905406094000071 ], [ -119.535932503999945, 50.905964396000059 ], [ -119.537361694999944, 50.90632040200007 ], [ -119.538506905999952, 50.906709192000029 ], [ -119.539100920999928, 50.907199201 ], [ -119.540123181999917, 50.907672001000087 ], [ -119.540962489999956, 50.907924113000128 ], [ -119.54164862, 50.907981098000057 ], [ -119.542509103999961, 50.9076107980001 ], [ -119.543548047999963, 50.906784705000113 ], [ -119.543816205999946, 50.90680018100003 ], [ -119.544155562999975, 50.906819765000087 ], [ -119.544131536999913, 50.906985563000013 ], [ -119.544555961999947, 50.90701005500005 ], [ -119.544395586999912, 50.90811677800005 ], [ -119.547531241999963, 50.9082976750001 ], [ -119.547132208000036, 50.911052431000016 ], [ -119.54710619, 50.91123203500009 ], [ -119.547013062999952, 50.911874890000085 ], [ -119.546952381, 50.911871390000044 ], [ -119.546931867999959, 50.912012990000036 ], [ -119.544036150999943, 50.911845938000091 ], [ -119.541262563999979, 50.911685859000045 ], [ -119.541350511999951, 50.911079300000075 ], [ -119.541443558999944, 50.910437545000129 ], [ -119.540962474999944, 50.910409772000037 ], [ -119.538368457999951, 50.910259982000142 ], [ -119.538384992999951, 50.9101459930001 ], [ -119.535627676999979, 50.909986707000044 ], [ -119.535644541999929, 50.909870491000021 ], [ -119.534602551, 50.909810278000087 ], [ -119.534610786, 50.909753538000139 ], [ -119.534515570999957, 50.909748035000078 ], [ -119.534373944999984, 50.91072378200009 ], [ -119.533824295999949, 50.910692016000098 ], [ -119.533732554999915, 50.911324004000029 ], [ -119.533792351999949, 50.911327460000109 ], [ -119.533748149999951, 50.911631955000075 ], [ -119.534462551999979, 50.911673242000091 ], [ -119.534423993999923, 50.911938890000087 ], [ -119.535443738, 50.911997816000067 ], [ -119.534924548999967, 50.915574959000068 ], [ -119.534271041999901, 50.915537198000038 ], [ -119.534247426, 50.915699873000079 ], [ -119.533291430999952, 50.915644627000027 ], [ -119.533307328999982, 50.915937253000074 ], [ -119.530322890999926, 50.916002006000028 ], [ -119.530331377999929, 50.916158399000054 ], [ -119.53033751599996, 50.916271521000084 ], [ -119.529911165999962, 50.916280765000074 ], [ -119.5299257879999, 50.916550281000092 ], [ -119.529499433999945, 50.916559525000061 ], [ -119.52952867499999, 50.917098555000067 ], [ -119.529102315999964, 50.917107797000057 ], [ -119.529116933999944, 50.91737731200007 ], [ -119.528564347000014, 50.917389288000074 ], [ -119.527837847999962, 50.917405029000165 ], [ -119.527793134999939, 50.916580251 ], [ -119.52631607099994, 50.916494804000102 ], [ -119.526205464999947, 50.917255755000049 ], [ -119.525113798999925, 50.917192590000106 ], [ -119.525104770999945, 50.91725468000007 ], [ -119.527327006999897, 50.917383249000117 ], [ -119.52727266, 50.917757193000028 ], [ -119.527185972999959, 50.918353663000048 ], [ -119.528686633999953, 50.918440459000095 ], [ -119.529745395999981, 50.918501684000042 ], [ -119.529741751999978, 50.918526772000064 ], [ -119.52934607399996, 50.921250148000077 ], [ -119.529225673999946, 50.922078774000063 ], [ -119.52815341799996, 50.922016768999988 ], [ -119.524526485999928, 50.921806958000055 ], [ -119.524472967999927, 50.922175009000107 ], [ -119.524383003999915, 50.922793685000052 ], [ -119.524379780999965, 50.922793498000082 ], [ -119.523969348999969, 50.925615788000073 ], [ -119.518298485999964, 50.925287501000064 ], [ -119.51836681199994, 50.924818105000028 ] ], [ [ -119.528205756999952, 50.916317727000063 ], [ -119.528193924999954, 50.916099474000056 ], [ -119.528190128999896, 50.916099254000059 ], [ -119.528158233999989, 50.916318757000042 ], [ -119.528205756999952, 50.916317727000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021178", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "121.1", "sL_BldgLoss": "121.1", "sL_StrLoss": "121.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B271F54AF6DA5DC04E582C8FFF7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.418708853999988, 50.974594195000073 ], [ -119.424385246999975, 50.974927494000077 ], [ -119.423856416999939, 50.978503867 ], [ -119.418179572999932, 50.978170541000033 ], [ -119.418708853999988, 50.974594195000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.3", "sL_BldgLoss": "40.3", "sL_StrLoss": "40.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F4F8B453CDD5DC0948DFFE9A37C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.456562273, 50.975229507000037 ], [ -119.456593961999971, 50.975014118000097 ], [ -119.455822963999964, 50.974969087000055 ], [ -119.45634918899998, 50.971392551000115 ], [ -119.457952995999932, 50.971486216000102 ], [ -119.456951811999943, 50.972053409000047 ], [ -119.456623216999986, 50.972294100000092 ], [ -119.456265595999952, 50.972822491000059 ], [ -119.456416696999938, 50.973242592000098 ], [ -119.457456395999941, 50.974030197000026 ], [ -119.457940477999912, 50.974595593000103 ], [ -119.45797769, 50.975017192000081 ], [ -119.457928339999967, 50.975309280000033 ], [ -119.456562273, 50.975229507000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021180", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9555500", "BldgCostT": "6590000", "sL_LossRatio": "1", "sL_AssetLoss": "517", "sL_BldgLoss": "517", "sL_StrLoss": "517", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1C75DE7D3D35DC09B7B61957F7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.302308983000017, 50.96926335600007 ], [ -119.302375747999989, 50.968820016000073 ], [ -119.30236641599997, 50.968819459000073 ], [ -119.302605324999917, 50.967232952000074 ], [ -119.300905880999977, 50.967131320000085 ], [ -119.301261770999972, 50.964768369000062 ], [ -119.300854745, 50.964744024 ], [ -119.300918059999944, 50.964323644000096 ], [ -119.300558165999973, 50.964302117000088 ], [ -119.300593723999953, 50.964066029000072 ], [ -119.300384476999952, 50.964053512000106 ], [ -119.300404480999973, 50.963920704000046 ], [ -119.300376183999944, 50.963919012000126 ], [ -119.300440205999934, 50.963493960000058 ], [ -119.300156807999926, 50.963477007000066 ], [ -119.300424469999911, 50.961699929000076 ], [ -119.301359499999975, 50.961712500000054 ], [ -119.302100182999979, 50.961688295000059 ], [ -119.302465926999972, 50.961585919000079 ], [ -119.303135698999952, 50.961398392 ], [ -119.303557001999962, 50.961423608000111 ], [ -119.303883389999939, 50.961498994000074 ], [ -119.304398297999953, 50.96161551600008 ], [ -119.305505900999947, 50.961987489000073 ], [ -119.305914542999972, 50.96215343500009 ], [ -119.305997817999966, 50.96218726300004 ], [ -119.306263917999928, 50.9622952900001 ], [ -119.306634409999944, 50.962401277000083 ], [ -119.306749498999949, 50.96241150300007 ], [ -119.306949394999933, 50.962429198000102 ], [ -119.307178095999973, 50.962421204000059 ], [ -119.308764379999957, 50.962342034000073 ], [ -119.309349886999911, 50.962312799000081 ], [ -119.310182006999938, 50.962175808000026 ], [ -119.310729344, 50.961975949000063 ], [ -119.310742211, 50.961971268000035 ], [ -119.311101203999954, 50.961840207000122 ], [ -119.311672311999956, 50.961716383000059 ], [ -119.311706866999955, 50.961716216000056 ], [ -119.311870588999952, 50.961715457000061 ], [ -119.312033136999929, 50.961714697000083 ], [ -119.313399024999939, 50.961708220000091 ], [ -119.31334692199998, 50.962054832000021 ], [ -119.312800274999987, 50.962022193000116 ], [ -119.312708192999978, 50.962634699000063 ], [ -119.312838993999961, 50.962642510000101 ], [ -119.312841783999957, 50.962623946000086 ], [ -119.316860362999975, 50.962863822000095 ], [ -119.317028620999949, 50.961743899000098 ], [ -119.31769450199999, 50.961871196000104 ], [ -119.318015585999945, 50.961960618000084 ], [ -119.318646517999966, 50.962136292000082 ], [ -119.319640805999924, 50.962376900000038 ], [ -119.320414593999928, 50.962418600000014 ], [ -119.320682967999943, 50.962371668000102 ], [ -119.321299403999916, 50.96226390300005 ], [ -119.322172786999957, 50.961937114000051 ], [ -119.323506083999931, 50.961673915000084 ], [ -119.323674308999955, 50.961656189000124 ], [ -119.323333068999958, 50.963929700000058 ], [ -119.323120068999927, 50.963917002000045 ], [ -119.323091367999936, 50.964108205000102 ], [ -119.319413055999931, 50.963888858000132 ], [ -119.318964745999949, 50.966873593000081 ], [ -119.313290171999881, 50.966534965000079 ], [ -119.31329078499999, 50.966530886000029 ], [ -119.311311609999933, 50.966412710000036 ], [ -119.311734248000036, 50.963602113000093 ], [ -119.30909755699993, 50.963444622000047 ], [ -119.309046419999959, 50.963784574000073 ], [ -119.309330647999985, 50.963801554000099 ], [ -119.309280587999922, 50.964134364000081 ], [ -119.309504666999928, 50.964147750000052 ], [ -119.308966756999936, 50.9677236200001 ], [ -119.308783077999976, 50.967712647000027 ], [ -119.308772550999919, 50.967782623000112 ], [ -119.308693382999962, 50.96777789500004 ], [ -119.308436133999962, 50.969487728000068 ], [ -119.308004972999953, 50.969461970000062 ], [ -119.307983821999954, 50.969602538000068 ], [ -119.302308983000017, 50.96926335600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9294500", "BldgCostT": "6410000", "sL_LossRatio": "1", "sL_AssetLoss": "517.3", "sL_BldgLoss": "517.3", "sL_StrLoss": "517.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083D151B32CD35DC03F29498DBF7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.299045274999969, 50.980600045000095 ], [ -119.299341242999901, 50.978636143000131 ], [ -119.298923308999946, 50.978611146000134 ], [ -119.299415234999969, 50.975346765000097 ], [ -119.296326555999926, 50.97516198000006 ], [ -119.29634770399997, 50.975021687 ], [ -119.296248962999982, 50.97501577800012 ], [ -119.296384148999891, 50.974119024000117 ], [ -119.291135962999974, 50.973804838000028 ], [ -119.291217340999978, 50.973265420000068 ], [ -119.290631384, 50.97323032600012 ], [ -119.29117083099996, 50.969654566000024 ], [ -119.292015233999933, 50.969705138000073 ], [ -119.29204910199995, 50.969480585000035 ], [ -119.297723888999954, 50.969820285000061 ], [ -119.297683986999971, 50.970085064000045 ], [ -119.29783640399998, 50.970094183000093 ], [ -119.297807350999975, 50.970286963000021 ], [ -119.300390836999938, 50.970441513000075 ], [ -119.300209577999965, 50.971644700000098 ], [ -119.302463052999954, 50.971779459000047 ], [ -119.302441924000036, 50.971919753000087 ], [ -119.30254066099999, 50.97192565600011 ], [ -119.302373556999953, 50.973035215000095 ], [ -119.30721759, 50.973324730000037 ], [ -119.306679384999896, 50.976900552000103 ], [ -119.30648439399999, 50.976888901000052 ], [ -119.306416797999987, 50.977337957000039 ], [ -119.305331605999953, 50.977273114000056 ], [ -119.305099624999954, 50.97881388400009 ], [ -119.305042097999888, 50.978810446000118 ], [ -119.30472153099997, 50.980939388000131 ], [ -119.299045274999969, 50.980600045000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "63", "sL_BldgLoss": "63", "sL_StrLoss": "63", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005FFC23C235DB5DC0DBA2ED1482774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.423246382999963, 50.932405449 ], [ -119.427189663999954, 50.932376504000061 ], [ -119.426791340999927, 50.935074195000041 ], [ -119.423282961999988, 50.934868111000078 ], [ -119.423271470999936, 50.93428257000005 ], [ -119.423243342999967, 50.932955918000033 ], [ -119.423246382999963, 50.932405449 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "148.1", "sL_BldgLoss": "148.1", "sL_StrLoss": "148.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D554FDE73CD25DC00CDF880F687C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.282367037999975, 50.973891196000089 ], [ -119.282398843999957, 50.973680641000101 ], [ -119.28201774199999, 50.973657786000018 ], [ -119.282057046999952, 50.973397609000102 ], [ -119.281828152999964, 50.973383882000107 ], [ -119.281850044999942, 50.973238974000012 ], [ -119.281329748999966, 50.973207768000037 ], [ -119.281869940999968, 50.969632053000119 ], [ -119.28651399499995, 50.969910497000065 ], [ -119.287544670000017, 50.969972267000088 ], [ -119.287522797999927, 50.970117178000116 ], [ -119.288043062999947, 50.970148354000088 ], [ -119.288003795999941, 50.97040853500009 ], [ -119.288232675999936, 50.970422249000094 ], [ -119.288200897999985, 50.970632806000054 ], [ -119.288581978999943, 50.970655640000111 ], [ -119.288042311999931, 50.974231383000131 ], [ -119.284389044999955, 50.974012432000038 ], [ -119.282367037999975, 50.973891196000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "146.7", "sL_BldgLoss": "146.7", "sL_StrLoss": "146.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005CCE00729DD45DC0493B246BC37B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.321424604999933, 50.970305082000067 ], [ -119.321738261999954, 50.968216266000091 ], [ -119.320334416999955, 50.968132557000011 ], [ -119.320392504999958, 50.967745770000093 ], [ -119.319867226999946, 50.967714444000102 ], [ -119.319882350999961, 50.967613754000112 ], [ -119.319382320999949, 50.96758393100005 ], [ -119.319919394999943, 50.964008011000026 ], [ -119.324030824999923, 50.964253158000091 ], [ -119.324081468999978, 50.963915720000045 ], [ -119.324081669999913, 50.964385902000117 ], [ -119.324081809999939, 50.964682427000099 ], [ -119.324082067999896, 50.965293682000052 ], [ -119.324082474999926, 50.966264662000107 ], [ -119.324082937999918, 50.967334456000039 ], [ -119.32408361099999, 50.96893606900003 ], [ -119.324083935999965, 50.969619513000076 ], [ -119.324083949999974, 50.969709365000043 ], [ -119.3240843, 50.970463626000047 ], [ -119.321424604999933, 50.970305082000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1162417", "BldgCostT": "801667", "sL_LossRatio": "1", "sL_AssetLoss": "37.7", "sL_BldgLoss": "37.7", "sL_StrLoss": "37.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000045779CE4BFCE5DC0B7465F9CD37D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.227896553, 50.981061145000119 ], [ -119.233572322999947, 50.981404082000083 ], [ -119.23302811500001, 50.984979517000106 ], [ -119.22735189499997, 50.984636555000122 ], [ -119.227896553, 50.981061145000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "129.3", "sL_BldgLoss": "129.3", "sL_StrLoss": "129.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000644B03FD4DE35DC0C347C494C8724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.549265608999946, 50.895365407000071 ], [ -119.549883387999927, 50.894948110000072 ], [ -119.550420710999973, 50.894899707000093 ], [ -119.550719886999971, 50.894894011000169 ], [ -119.551430993999929, 50.895156001000082 ], [ -119.55203148899993, 50.895197310000079 ], [ -119.552467287999946, 50.895376805000105 ], [ -119.55373438299992, 50.89540240200008 ], [ -119.55393531299994, 50.895443702000065 ], [ -119.554324505999901, 50.895812593000102 ], [ -119.554371118999939, 50.895823903000121 ], [ -119.553977301, 50.898546359000107 ], [ -119.54943037699995, 50.898284219000104 ], [ -119.549548698999956, 50.897652695000041 ], [ -119.549311398000029, 50.897245404000067 ], [ -119.54921638799999, 50.89652760900006 ], [ -119.548692798999923, 50.896044785000079 ], [ -119.548652303999944, 50.895852942000012 ], [ -119.548695484999911, 50.895554673000063 ], [ -119.549265608999946, 50.895365407000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2655917", "BldgCostT": "1831667", "sL_LossRatio": "1", "sL_AssetLoss": "134.3", "sL_BldgLoss": "134.3", "sL_StrLoss": "134.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001805662A29E85DC0B82A1E5180754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.624562121999958, 50.919995740000068 ], [ -119.624607841999989, 50.919676339000077 ], [ -119.62360779799999, 50.919619364000035 ], [ -119.623201319999978, 50.918282404000124 ], [ -119.623440696999936, 50.918222509000046 ], [ -119.623477409999964, 50.918131407000111 ], [ -119.62313452399998, 50.917608705000042 ], [ -119.62268238299994, 50.917376595000114 ], [ -119.622541597999913, 50.916912291000138 ], [ -119.622463943999989, 50.916854960000101 ], [ -119.622638133999914, 50.91563834600008 ], [ -119.62312116799994, 50.915665873000115 ], [ -119.628308531999949, 50.915961363000086 ], [ -119.628269775999968, 50.916232303000079 ], [ -119.632472916999987, 50.916471550000097 ], [ -119.632129012999897, 50.918877110000047 ], [ -119.632006241999989, 50.91973581400007 ], [ -119.631961446999966, 50.92004912000003 ], [ -119.631309583999936, 50.920012026000038 ], [ -119.630843128999956, 50.919985480000051 ], [ -119.630814104999928, 50.92018844600009 ], [ -119.630256250999963, 50.920156696000085 ], [ -119.630233086999965, 50.920318659000039 ], [ -119.624562121999958, 50.919995740000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "29.2", "sL_BldgLoss": "29.2", "sL_StrLoss": "29.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4C490BD9ADA5DC0F739A184D7784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.416059299, 50.943247795000055 ], [ -119.417339201999965, 50.943221295000107 ], [ -119.417395144999944, 50.944299444000052 ], [ -119.416115212999927, 50.944325945000053 ], [ -119.416129192999961, 50.944595483000128 ], [ -119.415702546, 50.944604314000088 ], [ -119.41571652199994, 50.944873851000089 ], [ -119.414009919999927, 50.944909159000133 ], [ -119.413968019999984, 50.944100545 ], [ -119.414394662999896, 50.944091721000071 ], [ -119.414380693999973, 50.943822184000098 ], [ -119.414807335999953, 50.943813357000103 ], [ -119.414793363999976, 50.943543819000098 ], [ -119.416073275999906, 50.943517333000109 ], [ -119.416059299, 50.943247795000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021192", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18733250", "BldgCostT": "12710000", "sL_LossRatio": "0.997702141604025", "sL_AssetLoss": "1000.932", "sL_BldgLoss": "998.632", "sL_StrLoss": "997.8", "sL_NStrLoss": "0.832", "sL_ContLoss": "2.3", "geom_point": "0101000020E6100000DF51088999D15DC04992CE5D9E7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.252201002999968, 50.971620866000151 ], [ -119.252201669999963, 50.9716164660001 ], [ -119.251748287999987, 50.971589153000131 ], [ -119.252290831999957, 50.968013574000082 ], [ -119.254109297999932, 50.968123115000019 ], [ -119.254226766999977, 50.967348666000085 ], [ -119.254710177000021, 50.96709949100012 ], [ -119.255327886999936, 50.966821005000057 ], [ -119.255536706999976, 50.966742929000098 ], [ -119.255878695999968, 50.966615095000094 ], [ -119.256627086000023, 50.966466188000069 ], [ -119.257746861, 50.96644618600002 ], [ -119.258902117999924, 50.966425499000088 ], [ -119.260659283999971, 50.966212809000041 ], [ -119.261553698999961, 50.966072707000123 ], [ -119.262002110999973, 50.966004096000098 ], [ -119.263083700999971, 50.96578140000004 ], [ -119.26648944599999, 50.96488505200012 ], [ -119.266599093999915, 50.964856193000045 ], [ -119.266928948, 50.964759414000099 ], [ -119.268339402999956, 50.964345578000092 ], [ -119.269954402999971, 50.963871691000065 ], [ -119.270937492, 50.963500964000062 ], [ -119.271832098999951, 50.963163594000058 ], [ -119.271849281999934, 50.96316093900009 ], [ -119.271944590999951, 50.963146142000049 ], [ -119.272670395999953, 50.963033587000069 ], [ -119.273158519999981, 50.962986295000057 ], [ -119.273589921999985, 50.962944506000049 ], [ -119.274405165999923, 50.962904336000115 ], [ -119.274580613999973, 50.962895708000069 ], [ -119.275312902999957, 50.962795400000118 ], [ -119.276033588999923, 50.962608059000075 ], [ -119.276567385999954, 50.962469308000074 ], [ -119.277605220999931, 50.962166042000071 ], [ -119.279005158999965, 50.961756963000013 ], [ -119.282841401999917, 50.960635808000099 ], [ -119.283298308999946, 50.960406107000061 ], [ -119.283416501999952, 50.960571081000097 ], [ -119.283520912999961, 50.960906758000128 ], [ -119.283538895999968, 50.960964515000072 ], [ -119.28353432899992, 50.961003624000064 ], [ -119.283453400000013, 50.961700796000066 ], [ -119.284815388999974, 50.961703635000077 ], [ -119.285655279999958, 50.961705376000054 ], [ -119.287097062999976, 50.961708356000059 ], [ -119.28710831399998, 50.961708391000037 ], [ -119.289306676999956, 50.961712889000097 ], [ -119.289952182999983, 50.961714201000106 ], [ -119.290185976999965, 50.961713366000048 ], [ -119.29379210499998, 50.961700365000048 ], [ -119.293407601999959, 50.964250610000121 ], [ -119.295929976999929, 50.96440162600004 ], [ -119.295390974999947, 50.96797743000014 ], [ -119.2897164399999, 50.967637611000065 ], [ -119.290155159999983, 50.964729591000065 ], [ -119.289717528999986, 50.96470337200001 ], [ -119.289573585999946, 50.965657467000042 ], [ -119.289300815000033, 50.965641124000079 ], [ -119.284528204999958, 50.965355059000096 ], [ -119.284267635999981, 50.967080786000039 ], [ -119.278593299999969, 50.966740404000085 ], [ -119.278596418999925, 50.966719765000036 ], [ -119.278161986999947, 50.966693692000035 ], [ -119.278561290999932, 50.964051471000055 ], [ -119.278526084999896, 50.964049358000054 ], [ -119.278466429999952, 50.964444124000096 ], [ -119.277790157999902, 50.964403534000041 ], [ -119.277787497999938, 50.964421139000095 ], [ -119.277355082999975, 50.964395184000153 ], [ -119.277342980999933, 50.96447525000012 ], [ -119.276998946999953, 50.964454598000017 ], [ -119.276994266999964, 50.964485557000025 ], [ -119.276664155999967, 50.964465741000026 ], [ -119.276650955999983, 50.964553065000118 ], [ -119.276471010999913, 50.964542262000172 ], [ -119.276340991000012, 50.965402371000032 ], [ -119.273424655999946, 50.965227253000094 ], [ -119.273325385999911, 50.965883638000065 ], [ -119.273100875999972, 50.965870154000079 ], [ -119.273062188999944, 50.966125943000108 ], [ -119.27290274399999, 50.966116366000108 ], [ -119.27276292699996, 50.967040749000041 ], [ -119.270293314999947, 50.966892387000023 ], [ -119.270348716999962, 50.968028319000027 ], [ -119.269921808999968, 50.968036620000149 ], [ -119.269948099999951, 50.968575748 ], [ -119.269094276999965, 50.968592346000079 ], [ -119.269107416999972, 50.96886191100004 ], [ -119.264411348999928, 50.968953086000077 ], [ -119.264398234999959, 50.968683521000116 ], [ -119.263544406999941, 50.968700077000022 ], [ -119.263557515999963, 50.968969643000058 ], [ -119.26270368099992, 50.968986194000088 ], [ -119.262716783999977, 50.969255760000074 ], [ -119.261009103000035, 50.969288843000101 ], [ -119.260996008999953, 50.969019277000086 ], [ -119.260569090999965, 50.969027545000138 ], [ -119.260503637999975, 50.967679713000052 ], [ -119.260930544999923, 50.967671446000089 ], [ -119.26090435899999, 50.96713231300005 ], [ -119.261331259999977, 50.967124045000077 ], [ -119.261318163999945, 50.966854480000087 ], [ -119.260464368999976, 50.966871013000024 ], [ -119.260477458999929, 50.967140580000027 ], [ -119.260183227999974, 50.967146276000115 ], [ -119.259955958999967, 50.968645938000101 ], [ -119.259834176999973, 50.968638609000017 ], [ -119.259791267999944, 50.968921741000024 ], [ -119.258349900999917, 50.968834994000098 ], [ -119.257875758999916, 50.971962578000081 ], [ -119.252201002999968, 50.971620866000151 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "117.5", "sL_BldgLoss": "117.5", "sL_StrLoss": "117.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000697D1D7A83E55DC00A4966F58E744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583572643999929, 50.908661533 ], [ -119.58924187299999, 50.90898652700011 ], [ -119.588727026999933, 50.912563931000115 ], [ -119.58355857799998, 50.912267656000061 ], [ -119.583057347999954, 50.912238911000017 ], [ -119.583085346999965, 50.9120445430001 ], [ -119.583572643999929, 50.908661533 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021194", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "100.2", "sL_BldgLoss": "100.2", "sL_StrLoss": "100.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E08C923ECACF5DC03E1D3460B57C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.244153140999941, 50.972326298000056 ], [ -119.249827923999973, 50.972668416000012 ], [ -119.24928512699999, 50.976243964000119 ], [ -119.24360989299997, 50.975901820000082 ], [ -119.244153140999941, 50.972326298000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "1", "sL_AssetLoss": "261.6", "sL_BldgLoss": "261.6", "sL_StrLoss": "261.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000009560F7739D25DC00E0E9B6D137D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.283395874999954, 50.979640415000112 ], [ -119.283530324999987, 50.978750357000067 ], [ -119.28293062399996, 50.978714403000055 ], [ -119.282989678999954, 50.978323478000092 ], [ -119.279488539999988, 50.978113509000089 ], [ -119.280028938999962, 50.974537822000123 ], [ -119.284390455999954, 50.974799374000085 ], [ -119.285704277999969, 50.974878127000082 ], [ -119.285645249999931, 50.975269056000101 ], [ -119.289146194999972, 50.97547883400005 ], [ -119.289011866999886, 50.976368901000072 ], [ -119.289611542999964, 50.976404823000102 ], [ -119.28907188899997, 50.979980548000071 ], [ -119.28428386799996, 50.979693646 ], [ -119.283395874999954, 50.979640415000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "166.1", "sL_BldgLoss": "166.1", "sL_StrLoss": "166.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000089754FC31CEB5DC05C23BC1CFA7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.674341198999983, 50.972507515000061 ], [ -119.674371079999929, 50.972297384000107 ], [ -119.672992969999882, 50.972219578000043 ], [ -119.673029577999941, 50.971962186000027 ], [ -119.671516438999959, 50.971876738000084 ], [ -119.672025331, 50.968299196000039 ], [ -119.672049057, 50.968300537000033 ], [ -119.672040962, 50.968159555000106 ], [ -119.671614183999935, 50.968169325000069 ], [ -119.671552307999946, 50.967091393000054 ], [ -119.67112553799997, 50.967101160000027 ], [ -119.671094608, 50.966562194000105 ], [ -119.670667842999933, 50.96657195900012 ], [ -119.670652379999964, 50.966302475000056 ], [ -119.670225618999922, 50.966312238000036 ], [ -119.670148318999949, 50.96496482200007 ], [ -119.669294819999934, 50.964984343000076 ], [ -119.66923300299996, 50.963906408000078 ], [ -119.668806263999954, 50.963916166000082 ], [ -119.66874446199995, 50.962838231000056 ], [ -119.668317730999902, 50.962847988000107 ], [ -119.668209604999944, 50.960961600000097 ], [ -119.669585534999925, 50.960930137000069 ], [ -119.669589156999933, 50.960944844000075 ], [ -119.669641691, 50.961158216000086 ], [ -119.669962202999983, 50.961720197000034 ], [ -119.669962823999981, 50.96173102000003 ], [ -119.669968305999987, 50.961730895000123 ], [ -119.67043200099998, 50.962543905000082 ], [ -119.670888718999947, 50.962974282000054 ], [ -119.670939963999899, 50.963867361000034 ], [ -119.671233784999956, 50.96386063799999 ], [ -119.671239097999916, 50.963928313000068 ], [ -119.67148711599998, 50.96429140700004 ], [ -119.671837894999896, 50.964622275000039 ], [ -119.671886253999944, 50.965464726000064 ], [ -119.672096948, 50.965459903000117 ], [ -119.67208489699999, 50.965761187000091 ], [ -119.672237007999968, 50.965956286000079 ], [ -119.672787930999945, 50.966284010000059 ], [ -119.672848087999938, 50.967331566000084 ], [ -119.673274858999918, 50.967321792000121 ], [ -119.67333525, 50.96837317000012 ], [ -119.67440859499996, 50.968433771000079 ], [ -119.674558603999955, 50.968934386000029 ], [ -119.675049507999972, 50.969500964000083 ], [ -119.675200295999957, 50.969674990000051 ], [ -119.675809184999963, 50.970119295000096 ], [ -119.677804590000022, 50.970605003000095 ], [ -119.680338750999951, 50.970578512 ], [ -119.680019199999961, 50.972827899000023 ], [ -119.674341198999983, 50.972507515000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021201", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "97.5", "sL_BldgLoss": "97.5", "sL_StrLoss": "97.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A13471FEE8DB5DC0BE9FBF75EA784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.43352334299999, 50.942700565000074 ], [ -119.439195789999957, 50.943033128000081 ], [ -119.438668525999987, 50.946609698000074 ], [ -119.432995627999944, 50.946277108000054 ], [ -119.43352334299999, 50.942700565000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "120.1", "sL_BldgLoss": "120.1", "sL_StrLoss": "120.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E1A847E070DD5DC0A5E00065997C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.45709291, 50.972284087000091 ], [ -119.458431565999945, 50.971514162000062 ], [ -119.462025453999928, 50.971723951000087 ], [ -119.461993791999987, 50.971939343000052 ], [ -119.462764743999969, 50.97198433100008 ], [ -119.462239027999928, 50.975560894000033 ], [ -119.458324202999989, 50.975332393 ], [ -119.458352605999934, 50.974812101000104 ], [ -119.458139296999917, 50.974285087000069 ], [ -119.457596191, 50.973712608000014 ], [ -119.456664195999963, 50.973057405000041 ], [ -119.456716117, 50.972705707000095 ], [ -119.45709291, 50.972284087000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "111.7", "sL_BldgLoss": "111.7", "sL_StrLoss": "111.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3DA9D9C3ED05DC07589EAAD017D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.25125519499997, 50.974655065000071 ], [ -119.25693033, 50.974996824000122 ], [ -119.256388073, 50.978572397000079 ], [ -119.25071248899998, 50.978230613000107 ], [ -119.25125519499997, 50.974655065000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "67", "sL_BldgLoss": "67", "sL_StrLoss": "67", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A713C3CD7EB5DC0D4A3801F9B7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.684441446999926, 50.975700318000072 ], [ -119.684425898999962, 50.975430838000136 ], [ -119.683572216999949, 50.975450466000083 ], [ -119.68351004799996, 50.974372547000087 ], [ -119.683936879, 50.974362733000078 ], [ -119.68392607399997, 50.97417539800005 ], [ -119.683073705999988, 50.974127353000029 ], [ -119.683111363999927, 50.973862163000021 ], [ -119.682990521999912, 50.973855351000061 ], [ -119.683370635999921, 50.971178429000055 ], [ -119.683635013999918, 50.97119029800011 ], [ -119.685226592999953, 50.971621802000058 ], [ -119.685967311999931, 50.971604796000058 ], [ -119.686416590999926, 50.972232788000056 ], [ -119.687049980000012, 50.972848094000035 ], [ -119.687196993999962, 50.973149999000078 ], [ -119.687265484999969, 50.974353493000102 ], [ -119.687262596999986, 50.97436340400003 ], [ -119.68649881599994, 50.974320376000065 ], [ -119.686560098999976, 50.975381740000103 ], [ -119.685706419999931, 50.975401383000076 ], [ -119.685721975999954, 50.975670863000104 ], [ -119.684441446999926, 50.975700318000072 ] ], [ [ -119.686071029999979, 50.974313644000134 ], [ -119.68628993399993, 50.974308608000086 ], [ -119.68607002499999, 50.974296217000038 ], [ -119.686071029999979, 50.974313644000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "226.6", "sL_BldgLoss": "226.6", "sL_StrLoss": "226.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F34749F6E5D95DC0B47977BFE57B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.401207663999941, 50.970858386000053 ], [ -119.40120838699994, 50.970853521000045 ], [ -119.400818850999954, 50.97083057600004 ], [ -119.400842314999949, 50.970672438000115 ], [ -119.400455750999967, 50.970649666000071 ], [ -119.400986362999944, 50.967073372000094 ], [ -119.402290817999983, 50.967150213000082 ], [ -119.402590203999949, 50.965131705000033 ], [ -119.402974812999958, 50.965154358000042 ], [ -119.403053614999948, 50.964623015000015 ], [ -119.40872862199997, 50.964957110000064 ], [ -119.40819865499995, 50.96853344700007 ], [ -119.407814014999957, 50.968510812000076 ], [ -119.407735263999939, 50.969042157000089 ], [ -119.407206817999963, 50.969011057000039 ], [ -119.40688345199996, 50.971192572000064 ], [ -119.401207663999941, 50.970858386000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "120", "sL_BldgLoss": "120", "sL_StrLoss": "120", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006E7C794392D95DC08C7ED9E23F7F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.39697849099997, 50.9921818360001 ], [ -119.402656958999984, 50.992516228000106 ], [ -119.402126179, 50.9960924270001 ], [ -119.396447256999963, 50.995758011000085 ], [ -119.39697849099997, 50.9921818360001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "66.8", "sL_BldgLoss": "66.8", "sL_StrLoss": "66.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5002B8F07CF5DC0DE31A791377B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234117088999938, 50.96383897900013 ], [ -119.234207142999963, 50.963246982000079 ], [ -119.230639519999926, 50.963031385000065 ], [ -119.230786137999957, 50.962068009000085 ], [ -119.229789559999929, 50.962007763000045 ], [ -119.229827525999951, 50.961758333000049 ], [ -119.232421297999949, 50.96176669700003 ], [ -119.232738466999976, 50.961765000000121 ], [ -119.234718479999941, 50.961754391000113 ], [ -119.235003108999976, 50.961752868000083 ], [ -119.235842119999944, 50.961748363000069 ], [ -119.235927515999947, 50.961747918000079 ], [ -119.236027434999968, 50.9617473610001 ], [ -119.236932300999925, 50.96174248600007 ], [ -119.237299109999967, 50.961740304000116 ], [ -119.238035909999923, 50.962110686000102 ], [ -119.239408582999886, 50.962800639000143 ], [ -119.239500667999934, 50.962846940000055 ], [ -119.239043275999961, 50.963142095000123 ], [ -119.238510915999925, 50.963295901000073 ], [ -119.235698984999942, 50.963791496000091 ], [ -119.235308758999977, 50.963910969000032 ], [ -119.234117088999938, 50.96383897900013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21175500", "BldgCostT": "14340000", "sL_LossRatio": "1", "sL_AssetLoss": "1550", "sL_BldgLoss": "1550", "sL_StrLoss": "1550", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008B55BA2E5E35DC01CFBC4C7C8734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.554255362999939, 50.908734745000125 ], [ -119.554211086999928, 50.907926213000081 ], [ -119.555124689999971, 50.907906211000075 ], [ -119.555210369999912, 50.907313960000117 ], [ -119.54982879899994, 50.907003804000091 ], [ -119.549875317999977, 50.906682517000014 ], [ -119.549850852999938, 50.906234947000051 ], [ -119.548705017999964, 50.906168875000041 ], [ -119.548706630999931, 50.906157742000119 ], [ -119.548566513999944, 50.906160801000063 ], [ -119.548581237999926, 50.906430313 ], [ -119.548154982999932, 50.906439624000065 ], [ -119.548169706999914, 50.90670913499999 ], [ -119.547743447999963, 50.906718443000166 ], [ -119.547758167999987, 50.906987956000123 ], [ -119.54733190799999, 50.906997263000086 ], [ -119.547346625999964, 50.907266776000078 ], [ -119.546067833999942, 50.907294686000093 ], [ -119.54605312299995, 50.907025173000136 ], [ -119.545626860999946, 50.907034474000064 ], [ -119.545568029999956, 50.905956423000077 ], [ -119.545994281, 50.905947122000043 ], [ -119.545979570999918, 50.905677610000062 ], [ -119.546405820999922, 50.905668309000085 ], [ -119.546391108999927, 50.905398796000064 ], [ -119.54511236699993, 50.905426696000077 ], [ -119.545103190999967, 50.905258511000099 ], [ -119.545087685999974, 50.904974302000021 ], [ -119.545137105999956, 50.904675508000075 ], [ -119.545107514999955, 50.904617300000062 ], [ -119.545494494999943, 50.904608858000053 ], [ -119.545487588, 50.904482277000106 ], [ -119.545025310999947, 50.904455604000063 ], [ -119.544802593999961, 50.904017500000045 ], [ -119.54457239599995, 50.903194302000067 ], [ -119.544911389999967, 50.902890905000106 ], [ -119.544930186999949, 50.902691499000071 ], [ -119.545152796999943, 50.902614596000085 ], [ -119.545443508999981, 50.900891301000058 ], [ -119.545639673, 50.900824392000047 ], [ -119.545906205999941, 50.90103381100009 ], [ -119.54640008299999, 50.901203203000087 ], [ -119.546596786999928, 50.90118039900009 ], [ -119.546576884999965, 50.901063698000094 ], [ -119.546213596999948, 50.900909791000075 ], [ -119.546202920000013, 50.900721900000093 ], [ -119.546303377999948, 50.900476896000065 ], [ -119.546973703999981, 50.899751999000031 ], [ -119.549087607999951, 50.898868983000085 ], [ -119.549328822999925, 50.898494122000081 ], [ -119.550387562999902, 50.898555178000045 ], [ -119.55015094599996, 50.900189834000102 ], [ -119.550373610999941, 50.90018496700003 ], [ -119.550415043999976, 50.900942924000091 ], [ -119.55103320799999, 50.900978565000109 ], [ -119.551020475999934, 50.901066528000051 ], [ -119.551589795999988, 50.901099350000024 ], [ -119.551440879000012, 50.902128281000046 ], [ -119.551550949999921, 50.902134627000088 ], [ -119.551560422999941, 50.902069182000091 ], [ -119.554423002999926, 50.902234168000071 ], [ -119.554467303, 50.901927948000086 ], [ -119.555300853999938, 50.901975976000038 ], [ -119.555312367999974, 50.901896368000088 ], [ -119.557113995999913, 50.902000153000088 ], [ -119.557133089999979, 50.901868110000073 ], [ -119.557844330999913, 50.90190907300007 ], [ -119.557863264, 50.901778127000057 ], [ -119.563531432999966, 50.902104423 ], [ -119.563526717999963, 50.902137059000076 ], [ -119.566149008999957, 50.902287917000066 ], [ -119.566228399999929, 50.901738119000079 ], [ -119.571896624999951, 50.902063992000095 ], [ -119.571875641999895, 50.902209431000102 ], [ -119.572032253999922, 50.902218431000065 ], [ -119.572200478999946, 50.901052354000051 ], [ -119.572257243999928, 50.901055616000093 ], [ -119.572261377999936, 50.901026955000063 ], [ -119.575062356999965, 50.901187874000058 ], [ -119.575190976, 50.901263093000075 ], [ -119.577861173999935, 50.90182695400005 ], [ -119.577639698, 50.903363468000059 ], [ -119.578710715999961, 50.903339801000122 ], [ -119.57869582, 50.903070295000099 ], [ -119.57997446199991, 50.903042028000137 ], [ -119.58000330199998, 50.903563508000047 ], [ -119.580004271999925, 50.903581040000049 ], [ -119.580122132999918, 50.903578433000099 ], [ -119.580430490999916, 50.903571614000029 ], [ -119.580433027999902, 50.903617484000044 ], [ -119.580482940999943, 50.904519803000014 ], [ -119.580490122999961, 50.904649637000084 ], [ -119.57750651799995, 50.904715585000119 ], [ -119.577491626999944, 50.904446080000078 ], [ -119.577483612999941, 50.90444625600005 ], [ -119.577413891999981, 50.904929907000053 ], [ -119.577357121999938, 50.904926648000142 ], [ -119.577352989999909, 50.904955309000037 ], [ -119.574556001999952, 50.904794691000085 ], [ -119.57440445599994, 50.905845451000033 ], [ -119.574370024999922, 50.906084175000103 ], [ -119.573399254999956, 50.906028411000108 ], [ -119.573168993999957, 50.906015182000026 ], [ -119.572804357999971, 50.905994234000026 ], [ -119.57279236, 50.906077392 ], [ -119.572613419999954, 50.907317712000122 ], [ -119.571380992999963, 50.907246899000029 ], [ -119.57122660499995, 50.908316778000021 ], [ -119.571221818, 50.908349941000068 ], [ -119.571147314999948, 50.908345660000037 ], [ -119.570338353999915, 50.908299171000067 ], [ -119.570265660999922, 50.908802832000077 ], [ -119.570233713999968, 50.909024162000101 ], [ -119.56998295899993, 50.909009751000056 ], [ -119.565919144999953, 50.908776115000116 ], [ -119.564564618999938, 50.908698207000036 ], [ -119.564595599999976, 50.908483755000098 ], [ -119.562767076999947, 50.908378558000074 ], [ -119.562788922999971, 50.908227369000045 ], [ -119.56286409399992, 50.907707140000134 ], [ -119.561210059999937, 50.907611955000064 ], [ -119.56118673899999, 50.907773304000102 ], [ -119.561883860999956, 50.907757999000104 ], [ -119.561904855999927, 50.908140251000063 ], [ -119.561928269999939, 50.908566527000062 ], [ -119.5616778, 50.908572027000062 ], [ -119.561502, 50.908575887000019 ], [ -119.561516798999975, 50.908845396000046 ], [ -119.559811705999948, 50.908882815000077 ], [ -119.55979691499999, 50.908613305000074 ], [ -119.554255362999939, 50.908734745000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "111.8", "sL_BldgLoss": "111.8", "sL_StrLoss": "111.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C1D3E861AD45DC0DF8D603E347C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.311550310999962, 50.968387029000027 ], [ -119.317225105999981, 50.968725745000071 ], [ -119.316687759999965, 50.972301633000065 ], [ -119.311012511999962, 50.97196289100004 ], [ -119.311550310999962, 50.968387029000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8E3F00FBCEA5DC0323A6225CD7A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.665771651999975, 50.960028503000082 ], [ -119.665792680999957, 50.959880772000091 ], [ -119.665623356999944, 50.959871197999988 ], [ -119.665710092999973, 50.959261877000117 ], [ -119.665351356999935, 50.959241592000041 ], [ -119.668155032999977, 50.958470422000097 ], [ -119.66904825599994, 50.95827693300005 ], [ -119.669264594999902, 50.958586088000089 ], [ -119.669416099, 50.960234516000064 ], [ -119.665771651999975, 50.960028503000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "110.3", "sL_BldgLoss": "110.3", "sL_StrLoss": "110.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000755FC6FB8ED15DC09BBD7D67457C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.271785123999976, 50.968909821000103 ], [ -119.27745968499994, 50.969250545000136 ], [ -119.276919142999986, 50.972826241000078 ], [ -119.271244132999925, 50.972485490000039 ], [ -119.271785123999976, 50.968909821000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "104.1", "sL_BldgLoss": "104.1", "sL_StrLoss": "104.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098B51C01BFCD5DC0F176EF6E867C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.213850313999927, 50.974513204000068 ], [ -119.213477193999893, 50.97183637200007 ], [ -119.213312112999944, 50.970651701000129 ], [ -119.213458334999984, 50.969235354000091 ], [ -119.215043851999923, 50.969203492000126 ], [ -119.215026294999973, 50.969318561000094 ], [ -119.216703098999986, 50.969420128000081 ], [ -119.216157684999985, 50.972995529000038 ], [ -119.215738035999948, 50.972970112000048 ], [ -119.215678484999955, 50.9733604380001 ], [ -119.215609635999954, 50.973356268000032 ], [ -119.215505615999959, 50.974038041000078 ], [ -119.214313309999952, 50.973965819000085 ], [ -119.21429514099999, 50.974084879000024 ], [ -119.215698166, 50.97416986300005 ], [ -119.215152612999987, 50.977745241000044 ], [ -119.21362190499994, 50.977652521000039 ], [ -119.213666024999924, 50.975797049000043 ], [ -119.213850313999927, 50.974513204000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11310000", "BldgCostT": "7800000", "sL_LossRatio": "1", "sL_AssetLoss": "613.7", "sL_BldgLoss": "613.7", "sL_StrLoss": "613.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC687C365DCF5DC059D10FB8687C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.237419429999989, 50.97589570700007 ], [ -119.237856157999943, 50.97302396200007 ], [ -119.234534278999917, 50.972823375000097 ], [ -119.235078217999913, 50.969247884000048 ], [ -119.237082951999966, 50.969368950000046 ], [ -119.237075325000021, 50.969210250000039 ], [ -119.238356104999951, 50.969185702000054 ], [ -119.238368650000012, 50.969446573000042 ], [ -119.238524771999934, 50.96945599900009 ], [ -119.238585381999926, 50.969057347000124 ], [ -119.238120472999967, 50.969029281000104 ], [ -119.238170429999954, 50.968700717000125 ], [ -119.237435772999916, 50.968656362000104 ], [ -119.237661535999976, 50.9671716390001 ], [ -119.237330674999953, 50.96715166200007 ], [ -119.237507049999948, 50.965991720000034 ], [ -119.237393557999937, 50.965984866000049 ], [ -119.237469529999956, 50.965485219000072 ], [ -119.236948478999963, 50.965453755000041 ], [ -119.237166011999975, 50.964023139000105 ], [ -119.236487729999936, 50.963982177000048 ], [ -119.238702601999989, 50.963463996000101 ], [ -119.23951450099996, 50.963177692000038 ], [ -119.239728933999942, 50.962961665000122 ], [ -119.239746779999962, 50.962970633000026 ], [ -119.240103601999962, 50.963149999000045 ], [ -119.240311391999981, 50.963314876000069 ], [ -119.24073971199999, 50.963654711000103 ], [ -119.240998317999967, 50.964166508000098 ], [ -119.241188303999934, 50.966259986000111 ], [ -119.239158281999977, 50.966261016 ], [ -119.239140291999931, 50.967133188000027 ], [ -119.239176721999968, 50.967326594000021 ], [ -119.240191214999953, 50.967946771000094 ], [ -119.241194482999973, 50.968560011000079 ], [ -119.242522108999964, 50.969371494 ], [ -119.24488465499995, 50.968970150000111 ], [ -119.24502857899995, 50.968945703000045 ], [ -119.245414108999967, 50.968880185000138 ], [ -119.245850103999956, 50.968865901000129 ], [ -119.251195143999894, 50.968093233000062 ], [ -119.250862552999976, 50.970284842000083 ], [ -119.249971825999978, 50.970231167000094 ], [ -119.249949318999882, 50.970379462000054 ], [ -119.248912935999954, 50.970317001000076 ], [ -119.2488816799999, 50.970522886 ], [ -119.248354809999967, 50.97049112900006 ], [ -119.248333361999954, 50.970632398000063 ], [ -119.248295638999963, 50.970630125000078 ], [ -119.248198292999987, 50.971271301000108 ], [ -119.246356329999983, 50.971160254000111 ], [ -119.24628672899999, 50.971618543000147 ], [ -119.243944094999975, 50.971477269000019 ], [ -119.243848148999945, 50.972108798000065 ], [ -119.24105263699991, 50.971940148000073 ], [ -119.241099362999947, 50.972910542000129 ], [ -119.240245390999959, 50.972926929000039 ], [ -119.240224771999962, 50.973062571000099 ], [ -119.243546694999964, 50.97326299100007 ], [ -119.243003384999938, 50.976838506000043 ], [ -119.238946962999989, 50.9765937600001 ], [ -119.238494544, 50.979568904000125 ], [ -119.232818968999965, 50.979226216000065 ], [ -119.233363122999947, 50.975650759000047 ], [ -119.237419429999989, 50.97589570700007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "65.1", "sL_BldgLoss": "65.1", "sL_StrLoss": "65.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F337E32C93EC5DC0769DF45BC77D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.696018348999971, 50.983711728000102 ], [ -119.696007751999971, 50.983528890000031 ], [ -119.69558084099999, 50.983538748000079 ], [ -119.695565223999964, 50.983269271000047 ], [ -119.695138315999912, 50.983279128000021 ], [ -119.695122703000024, 50.98300965100006 ], [ -119.694695794999944, 50.983019507000044 ], [ -119.69468018399999, 50.982750029000073 ], [ -119.694253279999913, 50.982759883000043 ], [ -119.694237671999986, 50.982490405000085 ], [ -119.693810769, 50.982500258000108 ], [ -119.693795162999947, 50.982230780000116 ], [ -119.693368264999975, 50.982240630000035 ], [ -119.693352660999906, 50.981971153000103 ], [ -119.692925764000023, 50.981981001000086 ], [ -119.692878961999924, 50.981172568000098 ], [ -119.69352083699999, 50.981157760000066 ], [ -119.694135406999933, 50.981310694000101 ], [ -119.694170188999948, 50.981325290000079 ], [ -119.69417524, 50.981412495 ], [ -119.69436741599999, 50.981408061000153 ], [ -119.694608300999974, 50.981509151000083 ], [ -119.69461774199999, 50.981672120000027 ], [ -119.69497688200002, 50.981663830000059 ], [ -119.695129809999983, 50.981728007000122 ], [ -119.69634901699996, 50.982041580000086 ], [ -119.696356558, 50.982171646000083 ], [ -119.696813688999953, 50.982161086000104 ], [ -119.697184305999883, 50.982256401000114 ], [ -119.697852209999922, 50.982259294000094 ], [ -119.698493091, 50.982157594000071 ], [ -119.698506677999973, 50.982391801000084 ], [ -119.699787373999982, 50.982362190000096 ], [ -119.699849938999989, 50.983440094000045 ], [ -119.699423028999931, 50.983449966000144 ], [ -119.699438061999928, 50.983709003000072 ], [ -119.696018348999971, 50.983711728000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.6", "sL_BldgLoss": "36.6", "sL_StrLoss": "36.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FF8947394E55DC0116F00AAF6734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.586165547999926, 50.906952498000095 ], [ -119.586150604999958, 50.906682993000061 ], [ -119.585724359999944, 50.906692440000135 ], [ -119.585694479999958, 50.906153431000071 ], [ -119.585268238999944, 50.906162876000032 ], [ -119.585223429999985, 50.90535436300005 ], [ -119.585649662999941, 50.905344918000019 ], [ -119.58563472500002, 50.905075413000112 ], [ -119.588192104999948, 50.905018713000054 ], [ -119.588207057999966, 50.905288217000084 ], [ -119.588633289999933, 50.905278761000041 ], [ -119.58864824600002, 50.905548265000014 ], [ -119.589074479999965, 50.905538807000013 ], [ -119.589134315999914, 50.906616822000096 ], [ -119.58828182799999, 50.90663573500008 ], [ -119.588296782999933, 50.906905240000043 ], [ -119.586165547999926, 50.906952498000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "103.7", "sL_BldgLoss": "103.7", "sL_StrLoss": "103.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009CD3976BF2E85DC0C5B9D961C4754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.63690746799989, 50.921269102000053 ], [ -119.63690342299999, 50.921197584000019 ], [ -119.63604618399998, 50.921216952000123 ], [ -119.635624338999946, 50.921226481000055 ], [ -119.635619618999925, 50.921143010000051 ], [ -119.63560910299995, 50.920956988000107 ], [ -119.635212626999959, 50.920965943000091 ], [ -119.634757001999958, 50.920976232000108 ], [ -119.634756384999946, 50.92097624500007 ], [ -119.634756377999906, 50.920976109000087 ], [ -119.634747222999934, 50.920814132000054 ], [ -119.634735456999962, 50.920605918000049 ], [ -119.634725088, 50.920422448000103 ], [ -119.634710694999967, 50.920167766000084 ], [ -119.635989750999912, 50.920138879000092 ], [ -119.636004985999961, 50.920408372000033 ], [ -119.637284044999902, 50.920379471000054 ], [ -119.637253556999951, 50.919840486000091 ], [ -119.637679904999942, 50.919830849000022 ], [ -119.637649411999973, 50.91929186400008 ], [ -119.638075754999974, 50.919282226000078 ], [ -119.638060505999974, 50.919012733000081 ], [ -119.638913186999972, 50.918993452000073 ], [ -119.638882679999966, 50.918454467000117 ], [ -119.640098912999989, 50.918426956000054 ], [ -119.64101435, 50.918406239000035 ], [ -119.641029614999951, 50.918675731000079 ], [ -119.64136076199999, 50.918668236000045 ], [ -119.642734957999949, 50.918637120000071 ], [ -119.642750233999948, 50.918906612000058 ], [ -119.643176571999959, 50.918896956000033 ], [ -119.643192318999951, 50.9191747200001 ], [ -119.643237686999925, 50.919974921000041 ], [ -119.643664032999979, 50.919965263000059 ], [ -119.64374044299997, 50.921312718000166 ], [ -119.643300022999981, 50.921322696000125 ], [ -119.642461363999956, 50.921341691000094 ], [ -119.642415538999927, 50.920533217000091 ], [ -119.641136480999961, 50.92056217400004 ], [ -119.641151747999984, 50.920831666000041 ], [ -119.640299035999988, 50.92085096400006 ], [ -119.640314298999954, 50.921120456000054 ], [ -119.639035220999943, 50.921149390000089 ], [ -119.639050477999916, 50.921418882000104 ], [ -119.636918663999936, 50.921467077000138 ], [ -119.63690746799989, 50.921269102000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6140750", "BldgCostT": "4235000", "sL_LossRatio": "1", "sL_AssetLoss": "330.8", "sL_BldgLoss": "330.8", "sL_StrLoss": "330.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002AB1CEA5F6D05DC0F14009D8B37C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.265116271999929, 50.975457869000138 ], [ -119.265225897000022, 50.974734063000049 ], [ -119.260020290999961, 50.974420977000058 ], [ -119.260036186999955, 50.974316091000063 ], [ -119.259548781999925, 50.974286765000045 ], [ -119.259662659999975, 50.973535487000042 ], [ -119.258357297999964, 50.973456933000094 ], [ -119.258380060999954, 50.973306786000066 ], [ -119.25800019699993, 50.973283923000089 ], [ -119.258542260999931, 50.969708321000034 ], [ -119.264216820999977, 50.970049714000041 ], [ -119.264194077999903, 50.970199863000062 ], [ -119.264573919999947, 50.970222704000065 ], [ -119.264532754999962, 50.970494502000136 ], [ -119.266313283000017, 50.97060155600014 ], [ -119.266224797999882, 50.971185930000033 ], [ -119.266236925999962, 50.971186659000111 ], [ -119.265945407999965, 50.973111815000046 ], [ -119.271150903999953, 50.973424627000021 ], [ -119.270877123999966, 50.975233880000083 ], [ -119.27095963899994, 50.975238836000102 ], [ -119.270418503999935, 50.9788144770001 ], [ -119.270334548999955, 50.978809433000038 ], [ -119.270249027999952, 50.979374479000036 ], [ -119.264573233999954, 50.979033394000041 ], [ -119.265114839999939, 50.975457783000103 ], [ -119.265116271999929, 50.975457869000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "63.4", "sL_BldgLoss": "63.4", "sL_StrLoss": "63.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063507D5233DC5DC0A479B6FD617D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.438152733000024, 50.977494547000063 ], [ -119.443829640999965, 50.9778268640001 ], [ -119.44330233499997, 50.98140331600014 ], [ -119.443297918, 50.981403057000108 ], [ -119.44328424099993, 50.981495815000102 ], [ -119.443127171999961, 50.981486624000119 ], [ -119.443109137999926, 50.981608919000102 ], [ -119.437431755999981, 50.981276568000105 ], [ -119.437959527999965, 50.977700143000114 ], [ -119.438116582999925, 50.977709341000057 ], [ -119.438134627999943, 50.977587046000053 ], [ -119.438139045999904, 50.97758730500005 ], [ -119.438152733000024, 50.977494547000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "156.4", "sL_BldgLoss": "156.4", "sL_StrLoss": "156.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CABC24D63E75DC00D92363CDA744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.612382157999946, 50.914745772000067 ], [ -119.612403524999962, 50.91459676900012 ], [ -119.612197046999952, 50.914584982000122 ], [ -119.612153473999982, 50.914547135000056 ], [ -119.612375059999934, 50.913001913000123 ], [ -119.61266143899995, 50.911004705000025 ], [ -119.618331175999941, 50.911328229 ], [ -119.618309369000016, 50.911480458000035 ], [ -119.618899468999956, 50.911514114000092 ], [ -119.618566817999962, 50.913836255000064 ], [ -119.618462091999945, 50.914567273000031 ], [ -119.617540912, 50.914523888000069 ], [ -119.614387796999935, 50.914620702000022 ], [ -119.613060703999935, 50.91482149899999 ], [ -119.61243490399994, 50.914791588000071 ], [ -119.612382157999946, 50.914745772000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9645001", "BldgCostT": "6180001", "sL_LossRatio": "1", "sL_AssetLoss": "407.1", "sL_BldgLoss": "407.1", "sL_StrLoss": "407.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7BFEE113DDD5DC0EF6405F9B8754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.453795886999956, 50.921744227000154 ], [ -119.453915937999938, 50.920927567000057 ], [ -119.453713540999928, 50.920915727000136 ], [ -119.454239295999912, 50.917338983000015 ], [ -119.458354068999952, 50.917579631000102 ], [ -119.459567318, 50.917650556000112 ], [ -119.459908676999987, 50.917670509000054 ], [ -119.459878488999934, 50.917876068000027 ], [ -119.45986334899996, 50.917979167000034 ], [ -119.45978874299999, 50.918487180000049 ], [ -119.459991131999956, 50.918499009000136 ], [ -119.45946582199997, 50.922075774000092 ], [ -119.453795886999956, 50.921744227000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4838167", "BldgCostT": "3336667", "sL_LossRatio": "1", "sL_AssetLoss": "200", "sL_BldgLoss": "200", "sL_StrLoss": "200", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D35B2CDA56DD5DC0B5641BD991764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.456958501999949, 50.928952901000073 ], [ -119.457075241999917, 50.928158517000035 ], [ -119.456618145999968, 50.928131794000095 ], [ -119.456626381999982, 50.928075754000147 ], [ -119.45608293399998, 50.928043980000098 ], [ -119.45660858399998, 50.924467254000128 ], [ -119.456625501999937, 50.924468243000014 ], [ -119.456772433999959, 50.923468355000104 ], [ -119.460319220999963, 50.923675682000052 ], [ -119.460317392999926, 50.925266079000053 ], [ -119.460316328999937, 50.926157027000031 ], [ -119.460316223999897, 50.92628370400007 ], [ -119.460479437999965, 50.929158686000072 ], [ -119.456958501999949, 50.928952901000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159166905", "BldgCostT": "105554819", "sL_LossRatio": "0.999717153927237", "sL_AssetLoss": "8732.665", "sL_BldgLoss": "8730.195", "sL_StrLoss": "8729.3", "sL_NStrLoss": "0.895", "sL_ContLoss": "2.47", "geom_point": "0101000020E6100000F322D94462DC5DC0AF1B9D90A9744940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.419919469999968, 50.927115801000085 ], [ -119.41991233399996, 50.926978334000083 ], [ -119.41948584899994, 50.926987176000061 ], [ -119.41945392, 50.926371967000115 ], [ -119.417215526999954, 50.926240321000066 ], [ -119.417200366999936, 50.926342865000017 ], [ -119.417158232999938, 50.92662783400003 ], [ -119.416067579999947, 50.926563674000072 ], [ -119.411488034999977, 50.92629415100005 ], [ -119.411498635999976, 50.926222513000056 ], [ -119.412328217999942, 50.925980204000091 ], [ -119.413731611999964, 50.925039987000083 ], [ -119.414226513999921, 50.924708408000086 ], [ -119.414382204999981, 50.924417908000052 ], [ -119.41453411099998, 50.923533389000035 ], [ -119.415043000999987, 50.922884005000064 ], [ -119.415315500999952, 50.922661803000061 ], [ -119.416107487999966, 50.922294409000088 ], [ -119.417253194999944, 50.921335889000048 ], [ -119.417898898999951, 50.920620894000074 ], [ -119.41883419, 50.920017005000055 ], [ -119.419474101999967, 50.919464399000049 ], [ -119.42069848700001, 50.918890493000035 ], [ -119.421879680999965, 50.918622701000089 ], [ -119.422626094999913, 50.918211095000082 ], [ -119.423205689, 50.918145590000094 ], [ -119.4244412799999, 50.917553204000079 ], [ -119.425289470999971, 50.917259836000042 ], [ -119.425796101999978, 50.917084600000045 ], [ -119.426662888999928, 50.916507799000108 ], [ -119.4271615899999, 50.915949492000045 ], [ -119.42762040799991, 50.915751508000042 ], [ -119.428267090999967, 50.915314312000064 ], [ -119.428487695999962, 50.914905602000019 ], [ -119.428300581000016, 50.913506999000077 ], [ -119.428540307999981, 50.912638194000095 ], [ -119.42858960599996, 50.91197170600001 ], [ -119.42848359, 50.911308015000031 ], [ -119.429107791999925, 50.909342610000067 ], [ -119.429188297999985, 50.909268908000087 ], [ -119.429487054999967, 50.909286457000078 ], [ -119.429536692999989, 50.908949949000032 ], [ -119.430112693999945, 50.908422607000013 ], [ -119.431808095999955, 50.907946897000066 ], [ -119.43276611, 50.907495408000045 ], [ -119.433380807999924, 50.90701400500015 ], [ -119.434435579999956, 50.906506994000075 ], [ -119.435655129999958, 50.90622716900004 ], [ -119.435627558999983, 50.90641426300003 ], [ -119.435915348999984, 50.906408256000141 ], [ -119.435902922999944, 50.906170312000022 ], [ -119.436054547999902, 50.906135520000085 ], [ -119.436327562999963, 50.906129820000061 ], [ -119.436324623999937, 50.906073548000052 ], [ -119.436334900999924, 50.906071190000091 ], [ -119.436687765999963, 50.905852470000042 ], [ -119.436739771999939, 50.905851384000101 ], [ -119.43673819699994, 50.905821211000102 ], [ -119.436844992999923, 50.905755013000039 ], [ -119.437008500000019, 50.90557594300008 ], [ -119.437578261999946, 50.905564041000041 ], [ -119.43757311399996, 50.905465512000077 ], [ -119.437132911999967, 50.905439685000061 ], [ -119.437288390999925, 50.905269403000062 ], [ -119.437673090999979, 50.904451893000044 ], [ -119.437759406999959, 50.903508271000092 ], [ -119.437781089999959, 50.903271213000068 ], [ -119.437710405999951, 50.90244510600008 ], [ -119.437819007999934, 50.902083401000027 ], [ -119.438129406999963, 50.90204069200005 ], [ -119.439189794999947, 50.90218019200011 ], [ -119.441365488999935, 50.902197315000102 ], [ -119.442919007999947, 50.901966610000024 ], [ -119.443720083999921, 50.901528 ], [ -119.44432470799994, 50.901379788000078 ], [ -119.445506305999956, 50.901382706000057 ], [ -119.447360503999931, 50.901244492000039 ], [ -119.449021511999916, 50.901443905000114 ], [ -119.449748605999957, 50.90145530700007 ], [ -119.45000160699999, 50.901395504000071 ], [ -119.45062942, 50.900888502000051 ], [ -119.450825202999951, 50.900830089000117 ], [ -119.451270214999937, 50.902026401000072 ], [ -119.453434699999974, 50.902061993000075 ], [ -119.453458004999945, 50.900882798000076 ], [ -119.45334740499996, 50.900677689000119 ], [ -119.451704210999978, 50.900803001000043 ], [ -119.451489898999966, 50.900761703000057 ], [ -119.451325310999948, 50.900630688000049 ], [ -119.451271811999945, 50.900398598000038 ], [ -119.451813797999961, 50.899891491000091 ], [ -119.45255478199999, 50.899633794000103 ], [ -119.45359991399999, 50.899504193000062 ], [ -119.454998112999988, 50.899059808000054 ], [ -119.457087325, 50.899007105000088 ], [ -119.458402694999947, 50.89836983599999 ], [ -119.458445491999939, 50.898349101000065 ], [ -119.459053490999949, 50.898273603000064 ], [ -119.461472191999945, 50.898564210000075 ], [ -119.462496409999986, 50.898830490000073 ], [ -119.463896478999942, 50.899494198000106 ], [ -119.465558684999948, 50.900538094000062 ], [ -119.466082687, 50.900743190000064 ], [ -119.467033712999978, 50.900973889000056 ], [ -119.468015699999967, 50.901556403000065 ], [ -119.468016903999967, 50.901556961000061 ], [ -119.46805199, 50.902540027000079 ], [ -119.468006636999945, 50.904125697000104 ], [ -119.465517043999952, 50.903980284000077 ], [ -119.465554941, 50.903721918000052 ], [ -119.46317778599996, 50.903583020000092 ], [ -119.46331933099999, 50.902618350000076 ], [ -119.462979947999941, 50.90259851600009 ], [ -119.463011583999958, 50.902382917000025 ], [ -119.462273839999938, 50.902339798000092 ], [ -119.462437997999984, 50.901221121000098 ], [ -119.462051575999965, 50.901198534000102 ], [ -119.461738642999961, 50.903330865000093 ], [ -119.459957731999964, 50.903226748000101 ], [ -119.459853138, 50.903939217000101 ], [ -119.46307062399994, 50.904127298000112 ], [ -119.462545730999977, 50.907704136000078 ], [ -119.459017677999938, 50.907497896000038 ], [ -119.459110439999961, 50.909257473000103 ], [ -119.46049087899992, 50.909338178000056 ], [ -119.460470264999955, 50.909478589000116 ], [ -119.46103437, 50.909511565000066 ], [ -119.461020378999976, 50.909606877000044 ], [ -119.461194571999926, 50.909617059000084 ], [ -119.461069721999962, 50.910467540000084 ], [ -119.462556771, 50.910436167000078 ], [ -119.46290675399996, 50.908051461000113 ], [ -119.467886016999898, 50.908342323000092 ], [ -119.467816164999959, 50.910783847000062 ], [ -119.467727249999882, 50.911940526000059 ], [ -119.466932009999979, 50.91189409000004 ], [ -119.46693563499997, 50.911962656000092 ], [ -119.467726834999937, 50.911945927000019 ], [ -119.467563761999941, 50.914067163000077 ], [ -119.467539838999954, 50.914378354000043 ], [ -119.46066860799999, 50.914523447000086 ], [ -119.460654387, 50.91425391700011 ], [ -119.45980167499998, 50.91427189500007 ], [ -119.459815890999934, 50.914541426000042 ], [ -119.458536814999903, 50.914568380000084 ], [ -119.458508396999946, 50.914029319000115 ], [ -119.458423531999955, 50.914031107000021 ], [ -119.458082043, 50.914038301000048 ], [ -119.45806783799999, 50.913768771000029 ], [ -119.45721513300002, 50.913786730000027 ], [ -119.457208175999966, 50.913654728000097 ], [ -119.454847896000018, 50.913516671000131 ], [ -119.454909469999976, 50.913097661000073 ], [ -119.451469815999985, 50.912896380000078 ], [ -119.451535178999947, 50.912451817000012 ], [ -119.450918316999946, 50.912415708000033 ], [ -119.45070776699994, 50.913847594000124 ], [ -119.449050411000016, 50.913750562000111 ], [ -119.44869321299997, 50.916178935000076 ], [ -119.448436628999957, 50.916163910000066 ], [ -119.448358626999934, 50.916694141000086 ], [ -119.446308963999968, 50.916574102000013 ], [ -119.446282138999933, 50.916756388000138 ], [ -119.444595846999931, 50.916657602000029 ], [ -119.444570068999923, 50.916832729000113 ], [ -119.443182092999933, 50.916751398000052 ], [ -119.443122823999886, 50.917153960000071 ], [ -119.440573151999956, 50.917004514 ], [ -119.440564106999929, 50.91706591900008 ], [ -119.434894948999954, 50.916733415000053 ], [ -119.434918397000018, 50.916574350000069 ], [ -119.434331922999903, 50.916539935000095 ], [ -119.434305013999932, 50.91672246300007 ], [ -119.434229690999985, 50.916718043000053 ], [ -119.434000188999946, 50.918274667000055 ], [ -119.429017035999948, 50.917982128000091 ], [ -119.428856308999983, 50.919071383000137 ], [ -119.427847162999953, 50.919012112000054 ], [ -119.42776859099996, 50.919544506000072 ], [ -119.427390169999953, 50.919522279000077 ], [ -119.427183243999949, 50.92092421800001 ], [ -119.42419674199995, 50.920748748000115 ], [ -119.424026134999963, 50.921904036000043 ], [ -119.427591559999925, 50.922113510000045 ], [ -119.427586378999962, 50.92214860600005 ], [ -119.429188009999962, 50.922242667000077 ], [ -119.42872154, 50.925403585000019 ], [ -119.428660189999974, 50.925819272000119 ], [ -119.428570488999952, 50.925814005000113 ], [ -119.428395445999982, 50.926999977000037 ], [ -119.422725115999953, 50.926666861000058 ], [ -119.42272759399998, 50.926650097000078 ], [ -119.422030749999919, 50.926664560000077 ], [ -119.422044754999931, 50.926934098000068 ], [ -119.421618270999915, 50.926942948000011 ], [ -119.421632275, 50.927212485000069 ], [ -119.421205787999909, 50.92722133400013 ], [ -119.421219786999956, 50.927490871000074 ], [ -119.420189935999971, 50.927512232000012 ], [ -119.419940319999981, 50.927517409000046 ], [ -119.419919469999968, 50.927115801000085 ] ], [ [ -119.441125320999973, 50.909456043000013 ], [ -119.441155635999962, 50.909250165000053 ], [ -119.442897632999959, 50.909352287000061 ], [ -119.442891256999971, 50.90923054400006 ], [ -119.442038623999963, 50.909248390000052 ], [ -119.442024513999968, 50.908978856000076 ], [ -119.441171885999935, 50.908996697000099 ], [ -119.441157779999983, 50.908727162000048 ], [ -119.440731467999939, 50.908736080000075 ], [ -119.440717364999983, 50.908466546000092 ], [ -119.440291057, 50.908475462000062 ], [ -119.440276953999941, 50.908205927000061 ], [ -119.439850648999965, 50.908214842000056 ], [ -119.439836549999896, 50.907945307000062 ], [ -119.438983939999957, 50.907963131000024 ], [ -119.438969847999914, 50.907693597000048 ], [ -119.438117241999947, 50.90771141500003 ], [ -119.438103153999919, 50.9074418800001 ], [ -119.437676854, 50.907450786000055 ], [ -119.43766276799991, 50.907181251000054 ], [ -119.43681017199998, 50.907199059000106 ], [ -119.436824251999965, 50.907468594000107 ], [ -119.436397950999918, 50.907477496000155 ], [ -119.436423710999946, 50.907970696000078 ], [ -119.438392293999968, 50.908086186000091 ], [ -119.438301649999957, 50.908701519000068 ], [ -119.440922455999953, 50.908855219000081 ], [ -119.440836475999959, 50.909439106000065 ], [ -119.441125320999973, 50.909456043000013 ] ], [ [ -119.441513550999957, 50.907370573000058 ], [ -119.44154176699999, 50.907909640000035 ], [ -119.442394372999956, 50.907891798000094 ], [ -119.442408485999962, 50.908161332000134 ], [ -119.443261098, 50.90814348300006 ], [ -119.443275216999936, 50.908413016000097 ], [ -119.444127830999918, 50.908395161000044 ], [ -119.444141953999932, 50.908664695000077 ], [ -119.444994571999985, 50.908646833000027 ], [ -119.44501939099996, 50.90912028000011 ], [ -119.445875584999953, 50.909170446000111 ], [ -119.445804793999955, 50.90782036500007 ], [ -119.445378490999957, 50.907829299000092 ], [ -119.445223074999944, 50.904864431000078 ], [ -119.444796798999974, 50.904873363000021 ], [ -119.444782673999953, 50.904603830000013 ], [ -119.444356401999968, 50.904612761000067 ], [ -119.44437052499994, 50.904882295000057 ], [ -119.443517973999946, 50.904900151000078 ], [ -119.443532090999938, 50.905169684000072 ], [ -119.443411609999913, 50.90517220800011 ], [ -119.443397350999959, 50.90526908000006 ], [ -119.443109667999977, 50.905252217000111 ], [ -119.443119929999952, 50.905448144000033 ], [ -119.442267368, 50.905465993000107 ], [ -119.442281477, 50.9057355260001 ], [ -119.441002626999989, 50.905762286000119 ], [ -119.441016730999962, 50.906031820000123 ], [ -119.440164156999955, 50.906049652000029 ], [ -119.440178254999921, 50.906319186000061 ], [ -119.438899385999932, 50.906345923000096 ], [ -119.438913477999961, 50.906615458000012 ], [ -119.439339769999961, 50.906606547000095 ], [ -119.439353865, 50.906876082000082 ], [ -119.440206453999963, 50.906858255000074 ], [ -119.440220554999925, 50.907127790000132 ], [ -119.441073147999987, 50.907109957000074 ], [ -119.441087252999949, 50.907379490000054 ], [ -119.441513550999957, 50.907370573000058 ] ], [ [ -119.452441375999967, 50.904173284000073 ], [ -119.452597246, 50.907138136000128 ], [ -119.451744658999985, 50.907156054000055 ], [ -119.451758827999981, 50.907425586000087 ], [ -119.451714691999925, 50.907426512000022 ], [ -119.451332530999963, 50.907434541000043 ], [ -119.451375023999944, 50.908243138000046 ], [ -119.4517167599999, 50.908235958000049 ], [ -119.451801325999952, 50.908234181000054 ], [ -119.451816907999941, 50.908530601000123 ], [ -119.453150893999918, 50.908608679000096 ], [ -119.453146958999952, 50.908635459000031 ], [ -119.453530711999946, 50.908657917 ], [ -119.453520715, 50.908467871000084 ], [ -119.453947019999973, 50.908458907000067 ], [ -119.453720172999965, 50.904146400000052 ], [ -119.452441375999967, 50.904173284000073 ] ], [ [ -119.45550253, 50.905579075000084 ], [ -119.45568061799996, 50.908962097 ], [ -119.456106926999965, 50.908953124000035 ], [ -119.456108987999983, 50.908992274000077 ], [ -119.456147012999949, 50.908994498000055 ], [ -119.456133951999945, 50.909083398000078 ], [ -119.45739803, 50.909157336000071 ], [ -119.457305331000029, 50.907397757000084 ], [ -119.456877595999956, 50.907372739000081 ], [ -119.457127091999951, 50.905674112000099 ], [ -119.45550253, 50.905579075000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5500334", "BldgCostT": "3793334", "sL_LossRatio": "1", "sL_AssetLoss": "256.7", "sL_BldgLoss": "256.7", "sL_StrLoss": "256.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DE13D2B7D8DB5DC0A4B041156D764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.432531107000031, 50.923249300000137 ], [ -119.438201076, 50.923581920000018 ], [ -119.437673960999973, 50.927158564000081 ], [ -119.437597430999986, 50.927154076000107 ], [ -119.432003541999933, 50.926825917000059 ], [ -119.432220069999943, 50.925358043000152 ], [ -119.432531107000031, 50.923249300000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C49C1C15EAD85DC0BD599C9476794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.388983328999956, 50.950343006000026 ], [ -119.38884, 50.950327981000086 ], [ -119.388697167999936, 50.950321960000082 ], [ -119.388553842999926, 50.950306934000089 ], [ -119.388411008999981, 50.95030091100007 ], [ -119.38837904199994, 50.950297104000079 ], [ -119.388376139999977, 50.94982671700005 ], [ -119.38835848899997, 50.947491651000114 ], [ -119.390186587999963, 50.947599590000046 ], [ -119.390100697999969, 50.948177837000067 ], [ -119.390381021999957, 50.948194386000054 ], [ -119.390058276999952, 50.950367186000108 ], [ -119.389940168999942, 50.950377130000071 ], [ -119.389641133999987, 50.950383320000086 ], [ -119.389326929999925, 50.950371854000096 ], [ -119.388983328999956, 50.950343006000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13608333", "BldgCostT": "8913333", "sL_LossRatio": "1", "sL_AssetLoss": "361.6", "sL_BldgLoss": "361.6", "sL_StrLoss": "361.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000092F9CB1749DA5DC00A57EEA23B774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.409142025999984, 50.926800071000052 ], [ -119.414812271999907, 50.927133872000056 ], [ -119.41478269199996, 50.927333861000044 ], [ -119.414283240999964, 50.930710391000048 ], [ -119.413901914999897, 50.930687952000049 ], [ -119.4135352499999, 50.933166303000093 ], [ -119.412608666000011, 50.933111773000071 ], [ -119.412485849999911, 50.933941725000125 ], [ -119.411843739999981, 50.933903932000092 ], [ -119.411605501999986, 50.935513642000053 ], [ -119.410765121999972, 50.935464173000078 ], [ -119.410574326999935, 50.936753063000026 ], [ -119.404902891999896, 50.936419051000044 ], [ -119.404926819999957, 50.9362575440001 ], [ -119.404968017999963, 50.935979487000139 ], [ -119.405647491999972, 50.935777313000081 ], [ -119.40730549899996, 50.935122200000137 ], [ -119.407688495999935, 50.934512612000049 ], [ -119.407812813999968, 50.933915892000108 ], [ -119.408304389999941, 50.933518498000062 ], [ -119.40845139000001, 50.93304859200002 ], [ -119.40883739599991, 50.931412102000081 ], [ -119.408901297999947, 50.929334209000075 ], [ -119.408863015999955, 50.9288940960001 ], [ -119.407819781999976, 50.928240397000103 ], [ -119.407559684999953, 50.927912903000099 ], [ -119.407562379999931, 50.927828176000027 ], [ -119.407954031999978, 50.927851246000074 ], [ -119.40800453599995, 50.927510146000031 ], [ -119.409027985999941, 50.927570427000063 ], [ -119.409142025999984, 50.926800071000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3533167", "BldgCostT": "2436667", "sL_LossRatio": "1", "sL_AssetLoss": "126", "sL_BldgLoss": "126", "sL_StrLoss": "126", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED19FCDC14DB5DC076FBAC3253774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.42111999699992, 50.934741002000109 ], [ -119.421225062999952, 50.934030068000034 ], [ -119.420600874999963, 50.933993380000089 ], [ -119.42041892499995, 50.93398268400005 ], [ -119.420721667999914, 50.931934292000086 ], [ -119.420947501999976, 50.930406150000117 ], [ -119.426618293999979, 50.930739353000057 ], [ -119.426513319999955, 50.931450294000101 ], [ -119.427319419999918, 50.931497635000071 ], [ -119.427189663999954, 50.932376504000061 ], [ -119.423246382999963, 50.932405449 ], [ -119.423243342999967, 50.932955918000033 ], [ -119.423271470999936, 50.93428257000005 ], [ -119.423282961999988, 50.934868111000078 ], [ -119.42111999699992, 50.934741002000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "190304421", "BldgCostT": "122311145", "sL_LossRatio": "0.999493121211942", "sL_AssetLoss": "10160.22", "sL_BldgLoss": "10155.07", "sL_StrLoss": "10153.2", "sL_NStrLoss": "1.87", "sL_ContLoss": "5.15", "geom_point": "0101000020E6100000BFE5247330E05DC095CB4E5845714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.509614018999969, 50.891106999000037 ], [ -119.508024712999926, 50.890386404000061 ], [ -119.507288305999936, 50.889897910000045 ], [ -119.506830314999959, 50.889845188000017 ], [ -119.506337795, 50.889927794000073 ], [ -119.505510997999949, 50.889648586000121 ], [ -119.504604491999956, 50.889191488000094 ], [ -119.503979702999942, 50.88868299800005 ], [ -119.502769183999973, 50.88809769100007 ], [ -119.501708712999985, 50.887697499000069 ], [ -119.500910603999941, 50.887643296000107 ], [ -119.500301200999957, 50.887710291000076 ], [ -119.499422823999964, 50.888016503000102 ], [ -119.497311788999951, 50.888430897000056 ], [ -119.496663106999975, 50.888264299000099 ], [ -119.49601209799999, 50.88833269700006 ], [ -119.493197872999971, 50.887324653000093 ], [ -119.492954285999957, 50.887237396000053 ], [ -119.492310803999928, 50.887170488000088 ], [ -119.491346509999985, 50.886704805000122 ], [ -119.489507396999969, 50.886088099000048 ], [ -119.488724891999965, 50.885538403000076 ], [ -119.487495598999928, 50.8848804100001 ], [ -119.486874406999959, 50.884407506000052 ], [ -119.48547259099999, 50.884015913000084 ], [ -119.483603898999988, 50.883082994000084 ], [ -119.482710722, 50.882869402000047 ], [ -119.481894801999928, 50.882472001000068 ], [ -119.481378876999912, 50.882429293000037 ], [ -119.480658206999948, 50.882516189000107 ], [ -119.479735420999972, 50.882519005000084 ], [ -119.478167305999975, 50.882722702000095 ], [ -119.477305308999945, 50.882543198000072 ], [ -119.475569590999939, 50.88173431200007 ], [ -119.474109812999941, 50.881792706000084 ], [ -119.473244895000022, 50.881603289000097 ], [ -119.472635095, 50.881626093000115 ], [ -119.470977115999986, 50.881165995000039 ], [ -119.470277413999924, 50.881136106000056 ], [ -119.469512211999984, 50.880882601000124 ], [ -119.468508017999952, 50.880733105000026 ], [ -119.467951864999947, 50.880533351000082 ], [ -119.467798008999978, 50.88047808900005 ], [ -119.465980897999927, 50.880012407000052 ], [ -119.464721014999924, 50.879823004000031 ], [ -119.46201970199999, 50.880105009 ], [ -119.461782879999987, 50.880208991000082 ], [ -119.461481894999949, 50.880683194 ], [ -119.460921291999966, 50.881090493000045 ], [ -119.460249388999969, 50.881294189000059 ], [ -119.459347375999968, 50.881717194000032 ], [ -119.458553122999916, 50.88174280300008 ], [ -119.458483559999962, 50.881733725000132 ], [ -119.4584839299999, 50.881711864000117 ], [ -119.458480499999965, 50.881173187000087 ], [ -119.458466576999939, 50.880548377000061 ], [ -119.458445288999911, 50.879592589000048 ], [ -119.458445080999979, 50.879584614000088 ], [ -119.460988393999983, 50.879159792000031 ], [ -119.461164322999949, 50.879061003000075 ], [ -119.461928950999962, 50.878841255000019 ], [ -119.463117580999921, 50.878499701000102 ], [ -119.463107684999954, 50.877904791000056 ], [ -119.463100608000019, 50.877719500000048 ], [ -119.463085988999978, 50.877127801000064 ], [ -119.463080121999937, 50.876924599000034 ], [ -119.463684548999936, 50.876923332000075 ], [ -119.465914514, 50.87691863000002 ], [ -119.466086213999944, 50.876918285000059 ], [ -119.466877392999933, 50.876916604000073 ], [ -119.468592514999926, 50.876908611000012 ], [ -119.469943074999975, 50.876901796000091 ], [ -119.47019160799999, 50.876911810000081 ], [ -119.470703878999956, 50.876919508000078 ], [ -119.471334516999988, 50.876929008000069 ], [ -119.471348674999945, 50.876930499000125 ], [ -119.471599194999968, 50.876957057 ], [ -119.47204660599999, 50.87700448800009 ], [ -119.472185284999981, 50.877019204000071 ], [ -119.472241340999972, 50.877029246000035 ], [ -119.473117688999977, 50.877186385000059 ], [ -119.473443304999975, 50.87725499200009 ], [ -119.473558149999974, 50.877284704000125 ], [ -119.474730649999955, 50.877587772000034 ], [ -119.476289348999956, 50.877990664000066 ], [ -119.477470905999979, 50.878296044000059 ], [ -119.477495425999976, 50.878302393000041 ], [ -119.47765633799996, 50.878343988000026 ], [ -119.478851594999938, 50.87865289500013 ], [ -119.481225458000011, 50.879264165000045 ], [ -119.481491598999966, 50.879332700000063 ], [ -119.48346669499989, 50.879841991000085 ], [ -119.485027166999913, 50.880233163000099 ], [ -119.485106981999962, 50.880253162000059 ], [ -119.485191712999921, 50.8802743970001 ], [ -119.487300295999958, 50.880759789000081 ], [ -119.487821692999916, 50.880846466000044 ], [ -119.490591264999964, 50.88130686000008 ], [ -119.491417951999935, 50.881444252000101 ], [ -119.492762395999975, 50.881667714000045 ], [ -119.492954413999925, 50.881699739000041 ], [ -119.494347710999961, 50.88193219500009 ], [ -119.496793644999968, 50.882334838000062 ], [ -119.496366717999948, 50.885260811000094 ], [ -119.495173418999983, 50.88519139300012 ], [ -119.495169931999953, 50.885215276000054 ], [ -119.49670779899995, 50.88530473500002 ], [ -119.496675796999966, 50.885524053000104 ], [ -119.497533533999928, 50.885573940000043 ], [ -119.4975246609999, 50.885408092000027 ], [ -119.499468676999967, 50.885366459000146 ], [ -119.499835402999949, 50.882851904000127 ], [ -119.500762914999939, 50.883044806000051 ], [ -119.50209621, 50.883451485000123 ], [ -119.50219000599995, 50.883489465000082 ], [ -119.503040258999974, 50.883833496000129 ], [ -119.503210296999939, 50.883902294 ], [ -119.504546116999947, 50.884576896000048 ], [ -119.50483419399994, 50.884756016000068 ], [ -119.504642900999926, 50.884892802000074 ], [ -119.504590895999968, 50.885082695000044 ], [ -119.504589389, 50.885436209000055 ], [ -119.504574636999905, 50.885943920000074 ], [ -119.50453710299999, 50.887235913000104 ], [ -119.504612998999932, 50.888097117000022 ], [ -119.504579583999927, 50.888885211000058 ], [ -119.504722992999945, 50.888947662000092 ], [ -119.504891209999982, 50.888973521000075 ], [ -119.505074994000012, 50.888981153 ], [ -119.505167388999951, 50.888989498000072 ], [ -119.505278066999935, 50.888997692000046 ], [ -119.5053705, 50.889006026000111 ], [ -119.505481193999984, 50.889014243000084 ], [ -119.505575242999925, 50.889031595000077 ], [ -119.505796563000018, 50.889047994000045 ], [ -119.505888994999935, 50.889056327000063 ], [ -119.506061502999955, 50.889100255000095 ], [ -119.506134893999928, 50.889122503000081 ], [ -119.506632682999964, 50.88927499200004 ], [ -119.506820249999961, 50.889304178000017 ], [ -119.507603505999953, 50.889426002000057 ], [ -119.508133883999932, 50.889540691000086 ], [ -119.509173737999944, 50.889048843000097 ], [ -119.509660491999981, 50.888818595000124 ], [ -119.508005684999944, 50.887478896000069 ], [ -119.508108313999983, 50.887294489000055 ], [ -119.507923351000017, 50.88714722100007 ], [ -119.507672412999938, 50.886947389000099 ], [ -119.506915731000021, 50.886344810000047 ], [ -119.507167735999985, 50.886213115000054 ], [ -119.507356621999961, 50.886158058000063 ], [ -119.507491260999984, 50.886114822000124 ], [ -119.507613485999954, 50.886090482000014 ], [ -119.507736767999944, 50.886084166000067 ], [ -119.50783349999989, 50.886097134000124 ], [ -119.508001418999967, 50.886211970000012 ], [ -119.508183010999971, 50.886317546000086 ], [ -119.508280704999962, 50.886365671000078 ], [ -119.508377960999951, 50.886396304000101 ], [ -119.508501243999888, 50.886389987000094 ], [ -119.508608417999966, 50.886348084000105 ], [ -119.508685623999952, 50.886279711000014 ], [ -119.508880721999972, 50.886132018000069 ], [ -119.508982164999935, 50.886025365000066 ], [ -119.509072348999922, 50.885947166000022 ], [ -119.509180862999983, 50.885923486000053 ], [ -119.509263017999956, 50.885919293000065 ], [ -119.509370850999943, 50.885886518000035 ], [ -119.509492486999989, 50.885853083000029 ], [ -119.509785761, 50.885719469000023 ], [ -119.509784257999968, 50.885717173000089 ], [ -119.508004350999926, 50.88297220500003 ], [ -119.507845892999967, 50.882727808000077 ], [ -119.507194411999961, 50.881722993000082 ], [ -119.507260350999928, 50.881722819000096 ], [ -119.509414598999939, 50.881716853000071 ], [ -119.509477760999957, 50.88171669500008 ], [ -119.514903105, 50.881701507000095 ], [ -119.515175288999956, 50.881665897000047 ], [ -119.515323626999972, 50.881619732000068 ], [ -119.515407191999941, 50.881593704000039 ], [ -119.515451998999978, 50.881558588000118 ], [ -119.515592602999931, 50.881448403000014 ], [ -119.515792187999963, 50.881009111000019 ], [ -119.515833868999962, 50.880967956000106 ], [ -119.51606399399995, 50.88074069000006 ], [ -119.516587855999973, 50.880380692000053 ], [ -119.516670202999975, 50.88032408500009 ], [ -119.516859934999971, 50.880344763000011 ], [ -119.517131394000018, 50.880374309000089 ], [ -119.51796277399994, 50.880648812000068 ], [ -119.518092080999935, 50.880691489000057 ], [ -119.518876793999965, 50.881012117000047 ], [ -119.519368313, 50.881324612000071 ], [ -119.51995279499998, 50.881813895000036 ], [ -119.523886222999977, 50.881808613 ], [ -119.523879763999929, 50.881853065000023 ], [ -119.526909073999946, 50.882028495000093 ], [ -119.526389548999987, 50.885605720000093 ], [ -119.522443812999938, 50.885377203000068 ], [ -119.522345240999968, 50.886055453000075 ], [ -119.522615709999954, 50.886071121000107 ], [ -119.522450089999964, 50.887210706000154 ], [ -119.525979880999927, 50.887415131000076 ], [ -119.525850562999977, 50.88830537300008 ], [ -119.530611315999963, 50.888580909000055 ], [ -119.530914121, 50.88649477400002 ], [ -119.536580153999978, 50.886822437000056 ], [ -119.53648350499995, 50.887488898000129 ], [ -119.536457074999973, 50.887671142000094 ], [ -119.535957314999962, 50.88783129300004 ], [ -119.534774082999945, 50.888567593000111 ], [ -119.534088293999943, 50.889265491000025 ], [ -119.533861990999966, 50.890272535000072 ], [ -119.533574352999949, 50.890255903000096 ], [ -119.53215935499999, 50.890174070000036 ], [ -119.531876097999898, 50.892125751000101 ], [ -119.531845444999988, 50.89233693900011 ], [ -119.53147520099999, 50.892479990000069 ], [ -119.530650389999934, 50.892488494000062 ], [ -119.529481589999975, 50.892180905000018 ], [ -119.529097083999886, 50.892170893000056 ], [ -119.528896893999928, 50.892175171000098 ], [ -119.528628193999964, 50.8921809120001 ], [ -119.52828092399993, 50.892333306000126 ], [ -119.52775279399999, 50.892280596000049 ], [ -119.525655505999936, 50.892580705000086 ], [ -119.525673457000025, 50.892457147000123 ], [ -119.525682074999921, 50.892397823000046 ], [ -119.520272656999907, 50.892084516000089 ], [ -119.520373245999977, 50.891392718000091 ], [ -119.518751350999977, 50.891427744000083 ], [ -119.518765895999962, 50.891697263000047 ], [ -119.517487502, 50.891724855000099 ], [ -119.51747296399999, 50.891455336000121 ], [ -119.517046835999963, 50.891464530000114 ], [ -119.517032299999983, 50.891195010000047 ], [ -119.516606172999943, 50.891204204000118 ], [ -119.516620705999927, 50.891473723000082 ], [ -119.515974361999895, 50.891487663000049 ], [ -119.51540731299994, 50.89149989000007 ], [ -119.515342316999963, 50.891501292000072 ], [ -119.515340682000016, 50.891470959000053 ], [ -119.515327790999947, 50.891231771000072 ], [ -119.51481527599999, 50.891242820000031 ], [ -119.514475534999946, 50.891250142000061 ], [ -119.514466994999935, 50.891091589000091 ], [ -119.51446101599997, 50.890980622000043 ], [ -119.514415301999918, 50.890981608000089 ], [ -119.514403320000014, 50.891063941000048 ], [ -119.51430834899999, 50.891716512000073 ], [ -119.513801612999913, 50.891746506000104 ], [ -119.512460703999949, 50.892198010000094 ], [ -119.512034978999964, 50.892233598000061 ], [ -119.511741191999988, 50.892069805000112 ], [ -119.510296418999957, 50.891632505000103 ], [ -119.509614018999969, 50.891106999000037 ] ], [ [ -119.519612239, 50.889520323000106 ], [ -119.519614534999931, 50.889504542000076 ], [ -119.519305482, 50.889486632000079 ], [ -119.518566993999983, 50.889443830000126 ], [ -119.518513173999921, 50.889813887000081 ], [ -119.518664083999951, 50.889810629000131 ], [ -119.518649540999903, 50.889541110000067 ], [ -119.519320324, 50.889526627000059 ], [ -119.519612239, 50.889520323000106 ] ], [ [ -119.515240131999974, 50.886858617000101 ], [ -119.51532171199996, 50.886297918000146 ], [ -119.513753326999932, 50.886206947000041 ], [ -119.513754389999974, 50.886199647000133 ], [ -119.513187010999957, 50.886166732000099 ], [ -119.513231345999927, 50.88586210700003 ], [ -119.513164054999919, 50.885858203000097 ], [ -119.513116143999952, 50.886187395000015 ], [ -119.515249193999978, 50.88631112500012 ], [ -119.515165509, 50.886886280000034 ], [ -119.515114147999952, 50.887239275000056 ], [ -119.515184154999986, 50.88724333600004 ], [ -119.515240131999974, 50.886858617000101 ] ], [ [ -119.512678769999923, 50.885053822000074 ], [ -119.512679302999942, 50.885050160000034 ], [ -119.512592880999975, 50.885045146000053 ], [ -119.512592347999899, 50.8850488080001 ], [ -119.512678769999923, 50.885053822000074 ] ], [ [ -119.520730297999961, 50.885232462000047 ], [ -119.521171274999958, 50.882198761000076 ], [ -119.518723052999931, 50.882056863000045 ], [ -119.518659768999967, 50.882492084000035 ], [ -119.518763901999932, 50.882498121000054 ], [ -119.518752730999935, 50.882574954000127 ], [ -119.519200493999918, 50.88260091000005 ], [ -119.519156201999948, 50.882905538000053 ], [ -119.519373009999981, 50.882918105000073 ], [ -119.519371947999943, 50.882925405000066 ], [ -119.519939291999947, 50.882958289000051 ], [ -119.519618027999911, 50.88516800200005 ], [ -119.520730297999961, 50.885232462000047 ] ], [ [ -119.512673535999923, 50.884368264000059 ], [ -119.512707441999964, 50.88413530400009 ], [ -119.511945280999967, 50.884091079000015 ], [ -119.511926637999935, 50.884219156000078 ], [ -119.5119116799999, 50.884218288000078 ], [ -119.511896411999928, 50.884323170000094 ], [ -119.512673535999923, 50.884368264000059 ] ], [ [ -119.518179980999946, 50.881761834000045 ], [ -119.518208548999979, 50.881565375000079 ], [ -119.516927901, 50.881491120000085 ], [ -119.516894231999942, 50.88148916800008 ], [ -119.516865658999961, 50.881685626000056 ], [ -119.516939686999962, 50.881689919000074 ], [ -119.518179980999946, 50.881761834000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9107667", "BldgCostT": "6071667", "sL_LossRatio": "0.994441951083225", "sL_AssetLoss": "336.449", "sL_BldgLoss": "334.579", "sL_StrLoss": "333.9", "sL_NStrLoss": "0.679", "sL_ContLoss": "1.87", "geom_point": "0101000020E6100000AE1266B9F0E25DC0CAA8AE5317714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.5411770649999, 50.885455231000037 ], [ -119.541567370999957, 50.882761610000117 ], [ -119.543427408999932, 50.882869039000084 ], [ -119.543475799999925, 50.882534953000082 ], [ -119.545052654999921, 50.882626002000087 ], [ -119.545119950999947, 50.88216129000007 ], [ -119.545793789999934, 50.882200191000045 ], [ -119.545847736999946, 50.881827606000037 ], [ -119.547067321, 50.881898003000082 ], [ -119.547248978999946, 50.88198911500011 ], [ -119.547365669999934, 50.882040180000054 ], [ -119.547569652999954, 50.8821250620001 ], [ -119.547642223999929, 50.882150261000035 ], [ -119.547757420000011, 50.882174445000082 ], [ -119.547944202999957, 50.882205865000081 ], [ -119.548058431999934, 50.882212051000053 ], [ -119.548172132999952, 50.882209298000106 ], [ -119.548214319999914, 50.882199285000098 ], [ -119.54841335899998, 50.882194444000099 ], [ -119.548541778999976, 50.882200307000105 ], [ -119.548684461, 50.882205826000124 ], [ -119.548826631999958, 50.882202367000033 ], [ -119.54905507499997, 50.882214773000101 ], [ -119.549169760000026, 50.88222997900003 ], [ -119.549273286999934, 50.882299318000079 ], [ -119.549338180999939, 50.882441223000086 ], [ -119.549353394999912, 50.882458793000104 ], [ -119.549415270999944, 50.882547027000058 ], [ -119.549463417999903, 50.882644491000086 ], [ -119.550148729999989, 50.882394803000118 ], [ -119.550659407999959, 50.882241195000042 ], [ -119.551398386999921, 50.88209899800006 ], [ -119.553126503999948, 50.881950699000164 ], [ -119.553703844999944, 50.881861107000098 ], [ -119.553673421999974, 50.882071477000046 ], [ -119.553659885999977, 50.882074712000076 ], [ -119.551564113999973, 50.882255589000081 ], [ -119.551085790999963, 50.88258030100009 ], [ -119.550531326999987, 50.883393504 ], [ -119.549331415, 50.884075696000096 ], [ -119.547955695999946, 50.884394697000111 ], [ -119.547635412999938, 50.884779304000098 ], [ -119.547443295999983, 50.884891788000019 ], [ -119.546619290999942, 50.884891792000083 ], [ -119.545657496999965, 50.885011393000092 ], [ -119.544719512999961, 50.88498720500013 ], [ -119.543671018999973, 50.884802006000015 ], [ -119.542467191999933, 50.884918795000033 ], [ -119.541735274999951, 50.885311896000147 ], [ -119.541129019999943, 50.885786783000057 ], [ -119.5411770649999, 50.885455231000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4128334", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "504.9", "sL_BldgLoss": "504.9", "sL_StrLoss": "504.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DB492F391DC5DC0D8F6342F206E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.445179938999985, 50.861615300000054 ], [ -119.445487431999979, 50.859523306000057 ], [ -119.44357083299991, 50.859410860000047 ], [ -119.443706452999919, 50.858488397000038 ], [ -119.44385669399999, 50.858566300000106 ], [ -119.44425561099996, 50.858698804000035 ], [ -119.444741783999959, 50.858790495000044 ], [ -119.445911700999943, 50.858922188000108 ], [ -119.446496824999912, 50.859069309000063 ], [ -119.44653404499995, 50.859085475000043 ], [ -119.446606558999974, 50.859117027000146 ], [ -119.446819722999948, 50.859209693000068 ], [ -119.446902109999925, 50.859245505000082 ], [ -119.447265195999975, 50.859475102000033 ], [ -119.447393368999911, 50.859596520000132 ], [ -119.447574792999944, 50.859768389000102 ], [ -119.447617120999894, 50.859836714000011 ], [ -119.448052191, 50.860538572000017 ], [ -119.44811291299996, 50.860636530000065 ], [ -119.448224594999957, 50.8608166980001 ], [ -119.448419199999975, 50.861066205000064 ], [ -119.448689277999904, 50.861322064000035 ], [ -119.448755092999988, 50.861384389000108 ], [ -119.449269102999963, 50.861743790000091 ], [ -119.449471574999976, 50.86186696700004 ], [ -119.445179938999985, 50.861615300000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12636084", "BldgCostT": "8033334", "sL_LossRatio": "0.995511776192994", "sL_AssetLoss": "463.435", "sL_BldgLoss": "461.355", "sL_StrLoss": "460.6", "sL_NStrLoss": "0.755", "sL_ContLoss": "2.08", "geom_point": "0101000020E6100000F5D3241DCADA5DC0571BCEC2BF6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.413476590999935, 50.874517798000106 ], [ -119.412976205999939, 50.874425089000084 ], [ -119.412539705999933, 50.874431012000059 ], [ -119.412208529999958, 50.874484699000057 ], [ -119.411927984999963, 50.874530212000138 ], [ -119.411771785999974, 50.874526644000063 ], [ -119.41174467799999, 50.874526026000041 ], [ -119.411654987999952, 50.874524001000076 ], [ -119.411330203999938, 50.874516613000047 ], [ -119.411092383999943, 50.874462903000065 ], [ -119.41143558099999, 50.874305504000027 ], [ -119.411882380999927, 50.873973893000056 ], [ -119.412277775999954, 50.873680394000054 ], [ -119.41263108699998, 50.873541597000035 ], [ -119.412923391999968, 50.873351414000098 ], [ -119.413422275999963, 50.873116491000097 ], [ -119.413803816999945, 50.872999202000038 ], [ -119.414268014999934, 50.8729218880001 ], [ -119.416283519, 50.872842187000067 ], [ -119.416549710999945, 50.872809205000067 ], [ -119.416876507, 50.872723787 ], [ -119.41770451299999, 50.872426183000108 ], [ -119.418168208999958, 50.872187506000081 ], [ -119.418602198, 50.871859393000136 ], [ -119.419397190999945, 50.871650093000028 ], [ -119.419799612999924, 50.871584499000043 ], [ -119.420329497999958, 50.871381197000119 ], [ -119.420616406999898, 50.871159108000079 ], [ -119.420654010999954, 50.871069295000027 ], [ -119.420641887, 50.870890012000068 ], [ -119.420504610999956, 50.870465205000116 ], [ -119.420512810999981, 50.870100393000016 ], [ -119.420571603999974, 50.869982100000044 ], [ -119.420624423999953, 50.869928864000038 ], [ -119.423439103999925, 50.870094529000063 ], [ -119.422911438999932, 50.873671319000032 ], [ -119.420805200999936, 50.873547359000092 ], [ -119.420733853999977, 50.874030777000044 ], [ -119.42065569199994, 50.874560369000051 ], [ -119.419590503999942, 50.874497663000014 ], [ -119.419510668999976, 50.875038494000172 ], [ -119.417910374999977, 50.874944269000082 ], [ -119.417875105999926, 50.875183132000132 ], [ -119.417021807999944, 50.875132880000102 ], [ -119.41701956699994, 50.875148051000053 ], [ -119.41516205399995, 50.875038637000038 ], [ -119.415144613999985, 50.875156695000086 ], [ -119.413476590999935, 50.874517798000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "113588698", "BldgCostT": "72590270", "sL_LossRatio": "0.998287218954086", "sL_AssetLoss": "5406.412", "sL_BldgLoss": "5397.152", "sL_StrLoss": "5393.8", "sL_NStrLoss": "3.352", "sL_ContLoss": "9.26", "geom_point": "0101000020E61000006CCEB9C2D8DB5DC00089ECA43A704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.413681734999955, 50.882380629000039 ], [ -119.413791032999967, 50.882316408000051 ], [ -119.413901275999962, 50.882270059000049 ], [ -119.413996406999942, 50.882206050000057 ], [ -119.414063252999981, 50.882142535000057 ], [ -119.414073408999926, 50.882080018000082 ], [ -119.414139733999917, 50.882007595000054 ], [ -119.41420660199999, 50.881944046000044 ], [ -119.414280251999983, 50.881764632000078 ], [ -119.414325622000021, 50.88158571300005 ], [ -119.4143499799999, 50.881522973000116 ], [ -119.414402136999954, 50.881450764000121 ], [ -119.414396978999932, 50.881370872000069 ], [ -119.414404341, 50.881263928000088 ], [ -119.414428699999988, 50.881201132000058 ], [ -119.414466687999933, 50.881129190000081 ], [ -119.414476316999966, 50.881057825000013 ], [ -119.414487080999962, 50.881004217000026 ], [ -119.414511997999952, 50.88095031600006 ], [ -119.41452276399994, 50.880896709000126 ], [ -119.414517610999923, 50.880816704000132 ], [ -119.414563509999965, 50.880744601000039 ], [ -119.417866057999944, 50.880939104000049 ], [ -119.417647092999943, 50.882421789000091 ], [ -119.417621517000015, 50.882594966000042 ], [ -119.417947324999915, 50.882614149000112 ], [ -119.417979142999954, 50.882398698000074 ], [ -119.418184263999947, 50.881009676000112 ], [ -119.418595951999976, 50.88103391500006 ], [ -119.418657766999985, 50.880615287000055 ], [ -119.421467396999944, 50.880780662000085 ], [ -119.421513048999913, 50.880471351000075 ], [ -119.422015274999978, 50.880500905000083 ], [ -119.422023027999956, 50.880448363000085 ], [ -119.422385231999925, 50.880469676000082 ], [ -119.422392212999981, 50.880422371000094 ], [ -119.423414185999917, 50.880482500000042 ], [ -119.423617635999932, 50.879103597000068 ], [ -119.423922116999975, 50.879121509000086 ], [ -119.424409238999957, 50.879150165000077 ], [ -119.424442910999929, 50.87892191500012 ], [ -119.429340956999937, 50.87920992600008 ], [ -119.429351082999958, 50.879141228000051 ], [ -119.429798145999897, 50.879167506000094 ], [ -119.429866477999965, 50.878703924000121 ], [ -119.42904876399993, 50.878655861000084 ], [ -119.429038797999965, 50.87872346800004 ], [ -119.423921347999965, 50.87842253400003 ], [ -119.423374587999888, 50.878390367000065 ], [ -119.423418439999949, 50.878093143000051 ], [ -119.423745878999952, 50.875873718000058 ], [ -119.423902269999971, 50.874813593000077 ], [ -119.42506895399994, 50.874882228000082 ], [ -119.425107228999977, 50.874622721000058 ], [ -119.425755257999967, 50.874660839000086 ], [ -119.425811916999947, 50.874276636000069 ], [ -119.431475625999965, 50.874609616000029 ], [ -119.431089928999924, 50.877227067000035 ], [ -119.430948550999958, 50.878186425000123 ], [ -119.430489265999938, 50.87815943500005 ], [ -119.430417370999947, 50.878647252000036 ], [ -119.432914907999958, 50.87879400400012 ], [ -119.433073001999944, 50.877720911000104 ], [ -119.433921766999958, 50.877770770000055 ], [ -119.43393959399999, 50.877649748000124 ], [ -119.4332926, 50.877611742000113 ], [ -119.43337201099996, 50.877072692000077 ], [ -119.433819480999958, 50.874034919000039 ], [ -119.438485072999953, 50.87430890300007 ], [ -119.438686279999899, 50.872941848000025 ], [ -119.43722847299999, 50.872856260000106 ], [ -119.43723332799999, 50.872823277000052 ], [ -119.436837762999943, 50.872800049000062 ], [ -119.436872396999917, 50.872564787000066 ], [ -119.436071054999914, 50.872517729 ], [ -119.436169861999929, 50.871846630000029 ], [ -119.435926296999966, 50.871832326000117 ], [ -119.436452897999956, 50.868255466000065 ], [ -119.438745599, 50.868390093000059 ], [ -119.438748391, 50.868371120000077 ], [ -119.440352709999971, 50.868465296000089 ], [ -119.440358217999943, 50.868427857 ], [ -119.441194985999985, 50.868476967000063 ], [ -119.441223286999929, 50.868284576000093 ], [ -119.443480786999956, 50.868417039000107 ], [ -119.443550506999927, 50.867942929000094 ], [ -119.449213543999974, 50.868275014000041 ], [ -119.449027872999935, 50.869538695000074 ], [ -119.449258529999966, 50.869552215000063 ], [ -119.449014585999961, 50.871212446000087 ], [ -119.449553136999938, 50.87124401000009 ], [ -119.449027549000022, 50.874820919000072 ], [ -119.448696647999967, 50.874801526000049 ], [ -119.448407402999976, 50.876769649000082 ], [ -119.449869113999924, 50.876855312000046 ], [ -119.449854907999978, 50.876951995000098 ], [ -119.449643473999956, 50.878390851000105 ], [ -119.449663426999933, 50.878392020000085 ], [ -119.44947115299999, 50.879700417000038 ], [ -119.449349862999924, 50.880525736000088 ], [ -119.448945897, 50.880488101000104 ], [ -119.448142303999987, 50.880342788000092 ], [ -119.447507747999936, 50.880290298000013 ], [ -119.445457718999961, 50.880120697000045 ], [ -119.440016010999926, 50.87989279800005 ], [ -119.438054918999939, 50.879925495000116 ], [ -119.435974698999971, 50.88009498800011 ], [ -119.433955496999928, 50.880379899000069 ], [ -119.433402482999895, 50.880696007000026 ], [ -119.432884596999941, 50.8811219070001 ], [ -119.432664306000021, 50.881503600000059 ], [ -119.432153289, 50.88180270000008 ], [ -119.431171010999961, 50.882056204 ], [ -119.43079738299997, 50.882262705000059 ], [ -119.428788814999947, 50.882727008000089 ], [ -119.42772878699999, 50.883108707000119 ], [ -119.42717400699992, 50.883111500000084 ], [ -119.426205488000022, 50.882825197000045 ], [ -119.42551221399999, 50.882866487000079 ], [ -119.424439897999889, 50.882781110000103 ], [ -119.423920725999963, 50.882847781000095 ], [ -119.423352908999959, 50.882920696000056 ], [ -119.422162088999983, 50.883242489000075 ], [ -119.421489106999928, 50.883715404000085 ], [ -119.420905478999899, 50.883970299000076 ], [ -119.41888248399998, 50.884443099000045 ], [ -119.418144809999916, 50.884494383000025 ], [ -119.417428709999939, 50.884644001000048 ], [ -119.415674481999929, 50.885652297000085 ], [ -119.415268584999978, 50.886038301000021 ], [ -119.414296682999961, 50.887308694000112 ], [ -119.413712392999969, 50.887622105000077 ], [ -119.413710435999946, 50.887580556000067 ], [ -119.413708242999959, 50.887535041000064 ], [ -119.413648977999955, 50.887483480000064 ], [ -119.413622346999944, 50.887418331000035 ], [ -119.413584664999945, 50.887325926000074 ], [ -119.413584076999939, 50.88731390500002 ], [ -119.41348938499999, 50.887113494000104 ], [ -119.413433696999917, 50.88681349600008 ], [ -119.413364681999951, 50.884187396000073 ], [ -119.413385658999971, 50.884071284000115 ], [ -119.413282490999933, 50.884020345000103 ], [ -119.413151214999971, 50.883979078000017 ], [ -119.413033744999964, 50.883928474000065 ], [ -119.412944824999926, 50.883877127000034 ], [ -119.41285479299998, 50.883807986000114 ], [ -119.412808706999911, 50.883755592000085 ], [ -119.412744971999985, 50.883650212000099 ], [ -119.412712504999931, 50.883588595000091 ], [ -119.412650463999952, 50.883509870000047 ], [ -119.412590130999916, 50.883457826000097 ], [ -119.412530304999962, 50.883414667000146 ], [ -119.412467147999948, 50.883318149000033 ], [ -119.41244719499997, 50.883229593000145 ], [ -119.41241532, 50.883176863000138 ], [ -119.412424397999956, 50.883096599000069 ], [ -119.412463504999948, 50.883042452000055 ], [ -119.412586344999937, 50.882969088000088 ], [ -119.41273792799997, 50.882904239 ], [ -119.412890030999975, 50.882848298000106 ], [ -119.413138839999959, 50.882755155000076 ], [ -119.413234490999926, 50.882700112000073 ], [ -119.413315472999983, 50.882636339000051 ], [ -119.413425217999986, 50.882581047000095 ], [ -119.413601868999976, 50.882462196000056 ], [ -119.413681734999955, 50.882380629000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7914667", "BldgCostT": "4986667", "sL_LossRatio": "1", "sL_AssetLoss": "330", "sL_BldgLoss": "330", "sL_StrLoss": "330", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B17EBFDA09DC5DC0C5AD9BB5886D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.435315093999947, 50.856871328000111 ], [ -119.435304632999973, 50.856299394000089 ], [ -119.435276103999968, 50.854737804000045 ], [ -119.435290935999916, 50.854233208000053 ], [ -119.435314975999987, 50.853415994 ], [ -119.438505577999962, 50.854540311000065 ], [ -119.438572823999962, 50.854564006000039 ], [ -119.440285010999915, 50.855167282000139 ], [ -119.440571897999959, 50.855303204000045 ], [ -119.440799403999932, 50.855474388000111 ], [ -119.441117759999912, 50.855797813000066 ], [ -119.441171093999969, 50.855851970000124 ], [ -119.442545103999976, 50.857247598000079 ], [ -119.442557012999956, 50.857259695000053 ], [ -119.442570404999941, 50.857278838000049 ], [ -119.437066667999943, 50.856955685000074 ], [ -119.437067881999951, 50.856947433000101 ], [ -119.436623098999959, 50.856921306000061 ], [ -119.436619179999923, 50.856947943000108 ], [ -119.435315093999947, 50.856871328000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66014000", "BldgCostT": "43055000", "sL_LossRatio": "0.999717552434002", "sL_AssetLoss": "4815.053", "sL_BldgLoss": "4813.693", "sL_StrLoss": "4813.2", "sL_NStrLoss": "0.493", "sL_ContLoss": "1.36", "geom_point": "0101000020E6100000DBE1D0D743DD5DC0CAE2A36AE06F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.455875886999962, 50.881664512000086 ], [ -119.45364649899993, 50.881190212000099 ], [ -119.452114481999971, 50.880727397000037 ], [ -119.450917991999987, 50.880671813000106 ], [ -119.449585848999945, 50.880547721000021 ], [ -119.449706367999923, 50.879727615000057 ], [ -119.449888821999949, 50.878485997 ], [ -119.44995061899999, 50.878489618000053 ], [ -119.450176753999983, 50.876950640000118 ], [ -119.450403776999963, 50.875405503000067 ], [ -119.451415593999954, 50.875464785000069 ], [ -119.451423931999983, 50.875408026000109 ], [ -119.454203110999913, 50.875570810000106 ], [ -119.454277710999961, 50.875062763000066 ], [ -119.452201671999916, 50.874941170000028 ], [ -119.452704389999923, 50.871518264000031 ], [ -119.45243240299996, 50.871523982000092 ], [ -119.452389946999929, 50.870715381000124 ], [ -119.45281590899999, 50.870706425000066 ], [ -119.452787599999908, 50.870167358000117 ], [ -119.453213555999966, 50.870158401000026 ], [ -119.45319940099999, 50.869888867000057 ], [ -119.454051305999926, 50.869870950000134 ], [ -119.454037144999944, 50.869601415000083 ], [ -119.45537811199992, 50.869573199000079 ], [ -119.454555831999969, 50.869525044000049 ], [ -119.454687983999946, 50.868624858000025 ], [ -119.449993448999948, 50.868349821000038 ], [ -119.450143009999948, 50.86733172300012 ], [ -119.450518882999972, 50.8647728810001 ], [ -119.452547461999984, 50.864891753000045 ], [ -119.452621730999965, 50.864385961000082 ], [ -119.451538182999926, 50.86432247100003 ], [ -119.451760274999927, 50.862810136000093 ], [ -119.451960191999902, 50.862882800000058 ], [ -119.452407406999967, 50.863094779000086 ], [ -119.452469072999932, 50.863129142000041 ], [ -119.452860101999988, 50.863346789000033 ], [ -119.452978182999971, 50.86342631400003 ], [ -119.455111203999948, 50.864862810000062 ], [ -119.455132340999924, 50.864877048000039 ], [ -119.455692699999972, 50.865254382000082 ], [ -119.457387021999949, 50.866679410000067 ], [ -119.457489975, 50.866745985000129 ], [ -119.457709079999958, 50.86688769300013 ], [ -119.458058988999952, 50.867033493000051 ], [ -119.458346405999961, 50.867102711000065 ], [ -119.458385816999922, 50.867112190000036 ], [ -119.458388879999973, 50.867306425000052 ], [ -119.458393467999954, 50.867593121 ], [ -119.458411047999959, 50.868695045000067 ], [ -119.458421483999928, 50.86935100300007 ], [ -119.458406106999945, 50.871789270000122 ], [ -119.458404674999912, 50.872020308000117 ], [ -119.458404491999971, 50.872045898000032 ], [ -119.458406822999905, 50.872055360000097 ], [ -119.45841511699993, 50.872088838000145 ], [ -119.458425812999934, 50.872132242000113 ], [ -119.45846089399997, 50.872274604 ], [ -119.45849776299994, 50.872286512000066 ], [ -119.45852182499999, 50.872294279000073 ], [ -119.458685903999964, 50.87234730400008 ], [ -119.458951225999954, 50.872348082000059 ], [ -119.462661312999899, 50.872359005000099 ], [ -119.46282598499999, 50.87227841300006 ], [ -119.462874409999955, 50.872123397000117 ], [ -119.462884126999938, 50.871492598000074 ], [ -119.463051393999962, 50.871451913000044 ], [ -119.463255806999925, 50.87169380700005 ], [ -119.463496196999969, 50.871875706000097 ], [ -119.463932292999942, 50.872144701000074 ], [ -119.464773092999948, 50.872604539000065 ], [ -119.46485830499995, 50.872651152000088 ], [ -119.466720593, 50.873669591000109 ], [ -119.467282381999951, 50.874007302000116 ], [ -119.467833506999938, 50.874388498000016 ], [ -119.468553215999918, 50.874886004000039 ], [ -119.46967735599999, 50.875468405000063 ], [ -119.469730592999937, 50.875496004000098 ], [ -119.469873904999972, 50.87563870500005 ], [ -119.46990776799997, 50.875700374000097 ], [ -119.469956198999952, 50.875788696000086 ], [ -119.469950035999943, 50.876311781000041 ], [ -119.469943074999975, 50.876901796000091 ], [ -119.468592514999926, 50.876908611000012 ], [ -119.466877392999933, 50.876916604000073 ], [ -119.466086213999944, 50.876918285000059 ], [ -119.465914514, 50.87691863000002 ], [ -119.463684548999936, 50.876923332000075 ], [ -119.463080121999937, 50.876924599000034 ], [ -119.463085988999978, 50.877127801000064 ], [ -119.463100608000019, 50.877719500000048 ], [ -119.463107684999954, 50.877904791000056 ], [ -119.463117580999921, 50.878499701000102 ], [ -119.461928950999962, 50.878841255000019 ], [ -119.461164322999949, 50.879061003000075 ], [ -119.460988393999983, 50.879159792000031 ], [ -119.458445080999979, 50.879584614000088 ], [ -119.458445288999911, 50.879592589000048 ], [ -119.458466576999939, 50.880548377000061 ], [ -119.458480499999965, 50.881173187000087 ], [ -119.4584839299999, 50.881711864000117 ], [ -119.458483559999962, 50.881733725000132 ], [ -119.457134788999937, 50.881557691000047 ], [ -119.456245293999956, 50.881684495000087 ], [ -119.455875886999962, 50.881664512000086 ] ], [ [ -119.455417359999927, 50.871521812000104 ], [ -119.45541417599999, 50.871461259000071 ], [ -119.454655824999961, 50.871477219000084 ], [ -119.455417359999927, 50.871521812000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021251", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10072750", "BldgCostT": "6475000", "sL_LossRatio": "1", "sL_AssetLoss": "312.5", "sL_BldgLoss": "312.5", "sL_StrLoss": "312.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DF91610F9D85DC031A492531E6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.385911284999949, 50.839208515000159 ], [ -119.38262253000002, 50.838013392000057 ], [ -119.383079642999959, 50.83493127000007 ], [ -119.383221009999914, 50.83493964600008 ], [ -119.383256449, 50.834700672000054 ], [ -119.383718831999971, 50.834728071000072 ], [ -119.383823961999937, 50.834019085000058 ], [ -119.38429331099999, 50.83404689300005 ], [ -119.384304045999926, 50.833974495000099 ], [ -119.388081097999986, 50.834198209000071 ], [ -119.38810985899994, 50.834199912000024 ], [ -119.38996234199999, 50.834309587000099 ], [ -119.389432423999921, 50.837886367000046 ], [ -119.388963032000021, 50.837858579000091 ], [ -119.388952303999972, 50.837930978000038 ], [ -119.388810140999979, 50.837922562000067 ], [ -119.388802174999967, 50.837976324000124 ], [ -119.390182562999939, 50.838058035000074 ], [ -119.390194596999891, 50.837976806000043 ], [ -119.390049574999978, 50.837968222000029 ], [ -119.390404115999942, 50.835575027000068 ], [ -119.390039781999931, 50.835582494000064 ], [ -119.389998457999951, 50.834773850000033 ], [ -119.390524395999961, 50.834763072000094 ], [ -119.390579445999919, 50.834391440000076 ], [ -119.396237842999966, 50.834726214000071 ], [ -119.396151670999942, 50.835308433000115 ], [ -119.396418477999958, 50.835324210000117 ], [ -119.39637114199999, 50.835644041000087 ], [ -119.397657060999961, 50.83572007700009 ], [ -119.39763723599998, 50.835854051000105 ], [ -119.398002859999949, 50.835875668000092 ], [ -119.397647250999967, 50.838278828000092 ], [ -119.397473564999956, 50.839452479000052 ], [ -119.39708961099997, 50.839429778000053 ], [ -119.397035830999968, 50.839793163000067 ], [ -119.39642480599997, 50.839643912000035 ], [ -119.395130505999973, 50.839334708000131 ], [ -119.394276524999924, 50.839193995000073 ], [ -119.393776386999946, 50.839149891000083 ], [ -119.393762180999914, 50.839149348000049 ], [ -119.392494994999964, 50.839100299000108 ], [ -119.391195718999981, 50.839201097000135 ], [ -119.389249706, 50.839504901000062 ], [ -119.388916583999929, 50.839556900000026 ], [ -119.387919418999957, 50.839592591000084 ], [ -119.387882201999957, 50.839589234000101 ], [ -119.387311010999937, 50.839537595000102 ], [ -119.386708907999903, 50.839430681000046 ], [ -119.385911284999949, 50.839208515000159 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021252", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "91.2", "sL_BldgLoss": "91.2", "sL_StrLoss": "91.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005D79B91D14D85DC0D4F04EBA046B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.372989229999916, 50.837504528000032 ], [ -119.373421083999972, 50.834596947000136 ], [ -119.379079378999961, 50.834932588000115 ], [ -119.378941598, 50.835861062000049 ], [ -119.379731122999928, 50.83590787300011 ], [ -119.379692534999919, 50.83616793300007 ], [ -119.379920835999911, 50.836181468000078 ], [ -119.379749108999974, 50.837338810000098 ], [ -119.379339895999948, 50.837280214000053 ], [ -119.378536101999941, 50.837215404000098 ], [ -119.377587877999986, 50.837180793000094 ], [ -119.377009490999967, 50.837183501000091 ], [ -119.37630802399994, 50.837239531000108 ], [ -119.376242009999942, 50.837244787000046 ], [ -119.372989229999916, 50.837504528000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4958250", "BldgCostT": "3210000", "sL_LossRatio": "0.984789446504859", "sL_AssetLoss": "106.505", "sL_BldgLoss": "104.885", "sL_StrLoss": "104.3", "sL_NStrLoss": "0.585", "sL_ContLoss": "1.62", "geom_point": "0101000020E61000008057152BB4DB5DC05984411DFF644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.424429501999924, 50.789241787 ], [ -119.424936607999925, 50.789108392000102 ], [ -119.42547898699999, 50.789006894000117 ], [ -119.426472396999884, 50.788852864000056 ], [ -119.428430001999985, 50.788549289000109 ], [ -119.42939939599999, 50.788374606000097 ], [ -119.43010747699999, 50.788192605000063 ], [ -119.431293611999962, 50.787814094000048 ], [ -119.432070293, 50.787640695000057 ], [ -119.433391660999973, 50.787412376000098 ], [ -119.434028665999932, 50.787302317000105 ], [ -119.437579690999982, 50.786688592000083 ], [ -119.437848923999951, 50.786674383000104 ], [ -119.437896650999932, 50.78667186000007 ], [ -119.438025008999986, 50.786665109000104 ], [ -119.438455254999951, 50.786711395000097 ], [ -119.438457850999924, 50.786711689000057 ], [ -119.439411384999971, 50.786814308000046 ], [ -119.439858518999984, 50.786827090000052 ], [ -119.440764966999936, 50.786771428000051 ], [ -119.440284404999957, 50.790044009000042 ], [ -119.440283397999934, 50.790043950000012 ], [ -119.440246116999973, 50.790297810000034 ], [ -119.434593004999982, 50.789965242000029 ], [ -119.434628, 50.78972715200009 ], [ -119.43241117, 50.789596659000019 ], [ -119.432197109999947, 50.791052493000059 ], [ -119.427043831999967, 50.790748973000071 ], [ -119.427026873999964, 50.790864212000052 ], [ -119.42148868299995, 50.79053775200007 ], [ -119.42166997899993, 50.790459208000058 ], [ -119.423349214999988, 50.789637205000133 ], [ -119.423742713999943, 50.789471899000063 ], [ -119.42382482, 50.789444378000042 ], [ -119.424429501999924, 50.789241787 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438916", "BldgCostT": "2371666", "sL_LossRatio": "1", "sL_AssetLoss": "193.5", "sL_BldgLoss": "193.5", "sL_StrLoss": "193.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B28D4F336AD65DC00C6E737C97684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.345889232, 50.818369537000073 ], [ -119.345910011999976, 50.81823015500008 ], [ -119.345220020999989, 50.81818902 ], [ -119.345224290999965, 50.818160380000108 ], [ -119.344288692999925, 50.818104594000054 ], [ -119.34434679499999, 50.817714947000063 ], [ -119.344205016999979, 50.817706493000067 ], [ -119.344511347999983, 50.815652093000047 ], [ -119.344691796999882, 50.815639509000029 ], [ -119.345554411999927, 50.815664856000126 ], [ -119.346420292999966, 50.815690295000074 ], [ -119.347205881999969, 50.815759596000099 ], [ -119.347722098999967, 50.815885086000016 ], [ -119.347854813999959, 50.815933868000066 ], [ -119.34831988699996, 50.816104791000043 ], [ -119.348650804999934, 50.81619130700004 ], [ -119.348909091999928, 50.816223477000051 ], [ -119.348982537999959, 50.816232628000073 ], [ -119.349024713999967, 50.816237903000093 ], [ -119.349632809999932, 50.816254292000075 ], [ -119.350102780999961, 50.816251638000033 ], [ -119.353973016999973, 50.816229596000063 ], [ -119.35447148799993, 50.816245386000041 ], [ -119.35474960199997, 50.816254210000103 ], [ -119.355054011999968, 50.816276248000037 ], [ -119.355794000999936, 50.816329914000036 ], [ -119.355928528, 50.816324799000014 ], [ -119.356303198999967, 50.816310614000074 ], [ -119.35662885, 50.81624990600006 ], [ -119.356780099000034, 50.816221708000072 ], [ -119.356997208999942, 50.816152483000089 ], [ -119.357931864999955, 50.815724356000011 ], [ -119.357613984999958, 50.817860540000048 ], [ -119.351958009999962, 50.817523807000086 ], [ -119.351966386, 50.817467571000094 ], [ -119.351731898999972, 50.817453603000097 ], [ -119.351545269, 50.81870657600011 ], [ -119.345889232, 50.818369537000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "35.9", "sL_BldgLoss": "35.9", "sL_StrLoss": "35.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094B14E5393D55DC021C13B964A6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.335981796999974, 50.829961406000109 ], [ -119.33598152399999, 50.829946823000071 ], [ -119.33598085099996, 50.829909326000099 ], [ -119.335977702999969, 50.829740191000049 ], [ -119.33593718, 50.829650467000072 ], [ -119.335889784999964, 50.829545494000065 ], [ -119.335258107999948, 50.828758985000071 ], [ -119.335159410999921, 50.828464403000119 ], [ -119.335136843, 50.82792137200007 ], [ -119.336768132999978, 50.828018746000154 ], [ -119.336698144999943, 50.828487456000062 ], [ -119.337528740999986, 50.82853702600007 ], [ -119.33752257299993, 50.828578338000064 ], [ -119.337892530999952, 50.828600415000054 ], [ -119.337708962999955, 50.829829935000099 ], [ -119.338631794999941, 50.829884998000104 ], [ -119.33859734, 50.830115799000076 ], [ -119.3389458, 50.830136589000119 ], [ -119.338559673999953, 50.832723051000045 ], [ -119.337646669999941, 50.83268806600006 ], [ -119.337157134999956, 50.83266929600007 ], [ -119.33691703299999, 50.832604512000103 ], [ -119.336770547999933, 50.832534383000095 ], [ -119.336632340999984, 50.832408910000048 ], [ -119.335843595999975, 50.83104922399999 ], [ -119.335868315999917, 50.830807127000099 ], [ -119.335981796999974, 50.829961406000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17047917", "BldgCostT": "11021667", "sL_LossRatio": "1", "sL_AssetLoss": "917", "sL_BldgLoss": "917", "sL_StrLoss": "917", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008E795E3BCE05DC0A13FC09CD1704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.505167388999951, 50.888989498000072 ], [ -119.505074994000012, 50.888981153 ], [ -119.504891209999982, 50.888973521000075 ], [ -119.504722992999945, 50.888947662000092 ], [ -119.504579583999927, 50.888885211000058 ], [ -119.504612998999932, 50.888097117000022 ], [ -119.50453710299999, 50.887235913000104 ], [ -119.504574636999905, 50.885943920000074 ], [ -119.504589389, 50.885436209000055 ], [ -119.504590895999968, 50.885082695000044 ], [ -119.504642900999926, 50.884892802000074 ], [ -119.50483419399994, 50.884756016000068 ], [ -119.504546116999947, 50.884576896000048 ], [ -119.503210296999939, 50.883902294 ], [ -119.503040258999974, 50.883833496000129 ], [ -119.50219000599995, 50.883489465000082 ], [ -119.50209621, 50.883451485000123 ], [ -119.500762914999939, 50.883044806000051 ], [ -119.499835402999949, 50.882851904000127 ], [ -119.499844991999964, 50.882786153000026 ], [ -119.502417346999906, 50.882935679000163 ], [ -119.50250517099991, 50.882333205000108 ], [ -119.502052631999973, 50.882342911000073 ], [ -119.502018051999968, 50.881697630000126 ], [ -119.502009300999958, 50.88153434200008 ], [ -119.50262354099999, 50.881521168000098 ], [ -119.5027795, 50.880451214000075 ], [ -119.50361761799999, 50.880499919000108 ], [ -119.503811328, 50.879170735000095 ], [ -119.506991406999944, 50.879355481000069 ], [ -119.50716203799999, 50.878184010000069 ], [ -119.507499054999982, 50.878203583000094 ], [ -119.507590453999939, 50.877576019000102 ], [ -119.51320020799993, 50.877901674000135 ], [ -119.513269214999966, 50.87742744800002 ], [ -119.513881887999943, 50.877462998000048 ], [ -119.513918396999927, 50.877212063000073 ], [ -119.514111808999971, 50.877223284000124 ], [ -119.514183013999912, 50.876733868000017 ], [ -119.516908353999924, 50.876891956000051 ], [ -119.519847685999949, 50.877062381000073 ], [ -119.519793327999935, 50.87743633500002 ], [ -119.521349663999956, 50.877526541000051 ], [ -119.521194704999928, 50.878592775000101 ], [ -119.524327042999957, 50.878774261000089 ], [ -119.523886222999977, 50.881808613 ], [ -119.51995279499998, 50.881813895000036 ], [ -119.519368313, 50.881324612000071 ], [ -119.518876793999965, 50.881012117000047 ], [ -119.518092080999935, 50.880691489000057 ], [ -119.51796277399994, 50.880648812000068 ], [ -119.517131394000018, 50.880374309000089 ], [ -119.516859934999971, 50.880344763000011 ], [ -119.516670202999975, 50.88032408500009 ], [ -119.516587855999973, 50.880380692000053 ], [ -119.51606399399995, 50.88074069000006 ], [ -119.515833868999962, 50.880967956000106 ], [ -119.515792187999963, 50.881009111000019 ], [ -119.515592602999931, 50.881448403000014 ], [ -119.515451998999978, 50.881558588000118 ], [ -119.515407191999941, 50.881593704000039 ], [ -119.515323626999972, 50.881619732000068 ], [ -119.515175288999956, 50.881665897000047 ], [ -119.514903105, 50.881701507000095 ], [ -119.509477760999957, 50.88171669500008 ], [ -119.509414598999939, 50.881716853000071 ], [ -119.507260350999928, 50.881722819000096 ], [ -119.507194411999961, 50.881722993000082 ], [ -119.507845892999967, 50.882727808000077 ], [ -119.508004350999926, 50.88297220500003 ], [ -119.509784257999968, 50.885717173000089 ], [ -119.509785761, 50.885719469000023 ], [ -119.509492486999989, 50.885853083000029 ], [ -119.509370850999943, 50.885886518000035 ], [ -119.509263017999956, 50.885919293000065 ], [ -119.509180862999983, 50.885923486000053 ], [ -119.509072348999922, 50.885947166000022 ], [ -119.508982164999935, 50.886025365000066 ], [ -119.508880721999972, 50.886132018000069 ], [ -119.508685623999952, 50.886279711000014 ], [ -119.508608417999966, 50.886348084000105 ], [ -119.508501243999888, 50.886389987000094 ], [ -119.508377960999951, 50.886396304000101 ], [ -119.508280704999962, 50.886365671000078 ], [ -119.508183010999971, 50.886317546000086 ], [ -119.508001418999967, 50.886211970000012 ], [ -119.50783349999989, 50.886097134000124 ], [ -119.507736767999944, 50.886084166000067 ], [ -119.507613485999954, 50.886090482000014 ], [ -119.507491260999984, 50.886114822000124 ], [ -119.507356621999961, 50.886158058000063 ], [ -119.507167735999985, 50.886213115000054 ], [ -119.506915731000021, 50.886344810000047 ], [ -119.507672412999938, 50.886947389000099 ], [ -119.507923351000017, 50.88714722100007 ], [ -119.508108313999983, 50.887294489000055 ], [ -119.508005684999944, 50.887478896000069 ], [ -119.509660491999981, 50.888818595000124 ], [ -119.509173737999944, 50.889048843000097 ], [ -119.508133883999932, 50.889540691000086 ], [ -119.507603505999953, 50.889426002000057 ], [ -119.506820249999961, 50.889304178000017 ], [ -119.506632682999964, 50.88927499200004 ], [ -119.506134893999928, 50.889122503000081 ], [ -119.506061502999955, 50.889100255000095 ], [ -119.505888994999935, 50.889056327000063 ], [ -119.505796563000018, 50.889047994000045 ], [ -119.505575242999925, 50.889031595000077 ], [ -119.505481193999984, 50.889014243000084 ], [ -119.5053705, 50.889006026000111 ], [ -119.505278066999935, 50.888997692000046 ], [ -119.505167388999951, 50.888989498000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021257", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "34.4", "sL_BldgLoss": "34.4", "sL_StrLoss": "34.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C41860383AE35DC0118B7BA0D3704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.549169760000026, 50.88222997900003 ], [ -119.54905507499997, 50.882214773000101 ], [ -119.548826631999958, 50.882202367000033 ], [ -119.548684461, 50.882205826000124 ], [ -119.548541778999976, 50.882200307000105 ], [ -119.54841335899998, 50.882194444000099 ], [ -119.548214319999914, 50.882199285000098 ], [ -119.548172132999952, 50.882209298000106 ], [ -119.548058431999934, 50.882212051000053 ], [ -119.547944202999957, 50.882205865000081 ], [ -119.547757420000011, 50.882174445000082 ], [ -119.547642223999929, 50.882150261000035 ], [ -119.547569652999954, 50.8821250620001 ], [ -119.547365669999934, 50.882040180000054 ], [ -119.547248978999946, 50.88198911500011 ], [ -119.547067321, 50.881898003000082 ], [ -119.547497528999926, 50.881922831000111 ], [ -119.547604611999972, 50.881183066000048 ], [ -119.547631407, 50.880997946000036 ], [ -119.547802494999985, 50.881007819000047 ], [ -119.547851717999933, 50.880667749000061 ], [ -119.548161154999931, 50.880685607000025 ], [ -119.548180208999952, 50.880553956000057 ], [ -119.553845614999943, 50.880880750000159 ], [ -119.553754074999929, 50.88151376600009 ], [ -119.553703844999944, 50.881861107000098 ], [ -119.553126503999948, 50.881950699000164 ], [ -119.551398386999921, 50.88209899800006 ], [ -119.550659407999959, 50.882241195000042 ], [ -119.550148729999989, 50.882394803000118 ], [ -119.549463417999903, 50.882644491000086 ], [ -119.549415270999944, 50.882547027000058 ], [ -119.549353394999912, 50.882458793000104 ], [ -119.549338180999939, 50.882441223000086 ], [ -119.549273286999934, 50.882299318000079 ], [ -119.549169760000026, 50.88222997900003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "73118750", "BldgCostT": "51395000", "sL_LossRatio": "1", "sL_AssetLoss": "302.7", "sL_BldgLoss": "302.7", "sL_StrLoss": "302.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2243E98D0D75DC070C6178AC7674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.370640450999971, 50.813701530000031 ], [ -119.37064128599998, 50.813695911000082 ], [ -119.370348541999988, 50.813678522000039 ], [ -119.370372187999948, 50.813519297000056 ], [ -119.36965013, 50.813476404000049 ], [ -119.369866912999967, 50.812016808000159 ], [ -119.367372193999984, 50.811868574000073 ], [ -119.367220220999954, 50.8128914320001 ], [ -119.366396464999951, 50.812842472000114 ], [ -119.366374488999938, 50.812990351000074 ], [ -119.366015313999981, 50.812969001000049 ], [ -119.365827458999931, 50.812957835000127 ], [ -119.365836690000023, 50.812948994000067 ], [ -119.365939146999921, 50.812799333000058 ], [ -119.365977013999967, 50.812744012000039 ], [ -119.365991499999922, 50.812722805000114 ], [ -119.366018084999922, 50.8126404570001 ], [ -119.366081512999983, 50.812444003000067 ], [ -119.366107690999968, 50.811864603000117 ], [ -119.366086213999964, 50.811395213 ], [ -119.366022848999989, 50.810011390000057 ], [ -119.366021244999956, 50.809976238000068 ], [ -119.366017979, 50.809905295000085 ], [ -119.366018963999949, 50.808923177000075 ], [ -119.366020255999942, 50.807572377000035 ], [ -119.369749319000022, 50.807794002000023 ], [ -119.369761183999955, 50.807714103000087 ], [ -119.375416053999956, 50.808049940000046 ], [ -119.375179437, 50.80964455900007 ], [ -119.378736359999948, 50.809855652000124 ], [ -119.378205831999935, 50.813432479000021 ], [ -119.377336163999956, 50.813380877000043 ], [ -119.377278910999948, 50.813766799000128 ], [ -119.376344451999898, 50.813711346000126 ], [ -119.376296082999943, 50.814037321000058 ], [ -119.370640450999971, 50.813701530000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11854500", "BldgCostT": "7440000", "sL_LossRatio": "1", "sL_AssetLoss": "574.8", "sL_BldgLoss": "574.8", "sL_StrLoss": "574.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006766A882B8D65DC07E6D0566686A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365185713999921, 50.836513202000049 ], [ -119.363766790999989, 50.83605450400011 ], [ -119.362990703999969, 50.835832499000041 ], [ -119.362729562999959, 50.83574127300011 ], [ -119.362672684999893, 50.835721412000041 ], [ -119.36187010499998, 50.835441109000065 ], [ -119.359117590999986, 50.834570993000092 ], [ -119.359129114999917, 50.834493563000095 ], [ -119.358813237999954, 50.8344747760001 ], [ -119.358759891999952, 50.834457910000104 ], [ -119.356870796999956, 50.833804208000068 ], [ -119.356797054999916, 50.83378137000004 ], [ -119.357079684999931, 50.831883027000089 ], [ -119.355556501999942, 50.831792393000072 ], [ -119.355383114999938, 50.832956742000114 ], [ -119.355324514999936, 50.832918403000107 ], [ -119.354835689999959, 50.832808107000112 ], [ -119.354470711999966, 50.832758391000105 ], [ -119.353863393999958, 50.832750670000095 ], [ -119.353795588999944, 50.832749803000063 ], [ -119.353692433999939, 50.832756270000118 ], [ -119.353631924999917, 50.832760049000065 ], [ -119.352923399999924, 50.832804435000099 ], [ -119.352865014, 50.832808104000073 ], [ -119.35263158699999, 50.83277528400005 ], [ -119.352467102999967, 50.832711308000121 ], [ -119.352237599999981, 50.832566010000086 ], [ -119.352122222999967, 50.83244221900005 ], [ -119.35190908, 50.832213496000037 ], [ -119.351600509999926, 50.832081495000068 ], [ -119.351191828999958, 50.832066202000064 ], [ -119.350952690000014, 50.832310899000085 ], [ -119.350970647999972, 50.832578147000078 ], [ -119.350987297999922, 50.832826187000087 ], [ -119.350957512999926, 50.833188898000024 ], [ -119.350886501, 50.833348788000116 ], [ -119.350743511999966, 50.83347559700011 ], [ -119.350662456999885, 50.833524698000147 ], [ -119.349599822999949, 50.833461412000091 ], [ -119.349621805999973, 50.833313923000112 ], [ -119.346971548999932, 50.833156040000034 ], [ -119.346974708999966, 50.833134851000111 ], [ -119.346605137999987, 50.833112830000076 ], [ -119.347138423999965, 50.829536234000059 ], [ -119.347333122999913, 50.829547836000138 ], [ -119.347397035999904, 50.829119139000071 ], [ -119.347644146999968, 50.829133864000084 ], [ -119.347967633999971, 50.82696384800002 ], [ -119.353624773, 50.827300778000101 ], [ -119.353624576999962, 50.827302090000053 ], [ -119.353961861999977, 50.827322169000077 ], [ -119.353905052999949, 50.827703624000073 ], [ -119.354072085, 50.827713567000046 ], [ -119.354015673, 50.828092345000059 ], [ -119.357942986999916, 50.828326061000084 ], [ -119.357575799999921, 50.830792854000073 ], [ -119.362902601999949, 50.831109629000103 ], [ -119.362371455999934, 50.834680251000059 ], [ -119.36478818799992, 50.834823884000102 ], [ -119.364695399999931, 50.835447821000123 ], [ -119.364772232999954, 50.835452386000036 ], [ -119.364647973999951, 50.836287920000068 ], [ -119.369877627999969, 50.836598547000094 ], [ -119.369863856, 50.836691225000095 ], [ -119.37035581899994, 50.836720434000036 ], [ -119.370249625999946, 50.83743508100013 ], [ -119.368863079000036, 50.837272893000012 ], [ -119.366941325999974, 50.836893385000103 ], [ -119.366054312999935, 50.836718189000102 ], [ -119.365185713999921, 50.836513202000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.6", "sL_BldgLoss": "35.6", "sL_StrLoss": "35.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B22DB3B1BDD5DC073B76FDECD644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.450876447999988, 50.787733496000065 ], [ -119.450916350999947, 50.787461319000109 ], [ -119.450694461999959, 50.7874482920001 ], [ -119.450721869999924, 50.787261354000087 ], [ -119.45107988099997, 50.787287994000039 ], [ -119.45237900799998, 50.787245207000119 ], [ -119.454337412999962, 50.787069877000121 ], [ -119.454353957999899, 50.787068409000057 ], [ -119.454405376999915, 50.787063797000037 ], [ -119.455258714999971, 50.787095807000107 ], [ -119.455901274, 50.78719721700007 ], [ -119.456259006, 50.787253699000118 ], [ -119.456619984, 50.787270396000118 ], [ -119.457007305999966, 50.787234510000175 ], [ -119.458214035999944, 50.786894754000087 ], [ -119.458073455999951, 50.787854707000058 ], [ -119.457517066999984, 50.787822076000147 ], [ -119.45749633699991, 50.787963620000042 ], [ -119.457159797999964, 50.787943881000054 ], [ -119.457157021999976, 50.787962828000047 ], [ -119.456549620999937, 50.787927199000109 ], [ -119.456529399999951, 50.788065242000073 ], [ -119.450876447999988, 50.787733496000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80860416", "BldgCostT": "53031666", "sL_LossRatio": "1", "sL_AssetLoss": "5837", "sL_BldgLoss": "5837", "sL_StrLoss": "5837", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034805416C7DB5DC091BBBEC5796C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.45092667599999, 50.854944386000028 ], [ -119.450932881999975, 50.854902119 ], [ -119.448816044999887, 50.854778013000093 ], [ -119.448836094999962, 50.854641508000043 ], [ -119.448291935999976, 50.854609600000089 ], [ -119.448334937999974, 50.854316857000072 ], [ -119.447139454999956, 50.854246745000125 ], [ -119.44713368499994, 50.854286008000017 ], [ -119.446726906999984, 50.854262148000053 ], [ -119.446722267999917, 50.8542937180001 ], [ -119.443934629999987, 50.854130169000086 ], [ -119.44379318599999, 50.855092383000112 ], [ -119.443463779999945, 50.855073052000087 ], [ -119.4434076899999, 50.855454591000054 ], [ -119.443001346999921, 50.855430745000021 ], [ -119.442728266999936, 50.857288103000108 ], [ -119.442570404999941, 50.857278838000049 ], [ -119.442557012999956, 50.857259695000053 ], [ -119.442545103999976, 50.857247598000079 ], [ -119.441171093999969, 50.855851970000124 ], [ -119.441117759999912, 50.855797813000066 ], [ -119.440799403999932, 50.855474388000111 ], [ -119.440571897999959, 50.855303204000045 ], [ -119.440285010999915, 50.855167282000139 ], [ -119.438572823999962, 50.854564006000039 ], [ -119.438505577999962, 50.854540311000065 ], [ -119.435314975999987, 50.853415994 ], [ -119.435290935999916, 50.854233208000053 ], [ -119.435276103999968, 50.854737804000045 ], [ -119.43481680099994, 50.854735182000063 ], [ -119.434160791999929, 50.854633492000062 ], [ -119.43303401899999, 50.854413912000055 ], [ -119.432052782999961, 50.854193892000119 ], [ -119.431470087999983, 50.854039746000112 ], [ -119.431176178999962, 50.853961997000035 ], [ -119.429757180999957, 50.85346809599999 ], [ -119.427685391999944, 50.852511910000096 ], [ -119.423827741999943, 50.850913761000072 ], [ -119.42302392000002, 50.85058069200003 ], [ -119.422623993999963, 50.850401865000052 ], [ -119.422491886, 50.850342785000166 ], [ -119.422586475999978, 50.850348354000104 ], [ -119.422591334999979, 50.850315409000096 ], [ -119.42292093899999, 50.850334815000068 ], [ -119.423063967999909, 50.849364818000076 ], [ -119.428724500999948, 50.849697945000052 ], [ -119.428693926999983, 50.849905476000053 ], [ -119.429424093999927, 50.849948426000033 ], [ -119.429310432999941, 50.850720007000056 ], [ -119.429587842999979, 50.850736324000103 ], [ -119.42932339, 50.852531501000087 ], [ -119.43099080699993, 50.852629559000057 ], [ -119.431300341999929, 50.850527808000031 ], [ -119.431461665999933, 50.850537294000056 ], [ -119.431756235999956, 50.848536915000146 ], [ -119.432244101999956, 50.848565600000022 ], [ -119.432260117999931, 50.848456826000131 ], [ -119.435335673999973, 50.848637611000058 ], [ -119.437920603999956, 50.848789489000076 ], [ -119.437787453999988, 50.849694567000085 ], [ -119.43945562, 50.849792549000078 ], [ -119.439374103999938, 50.850346766000087 ], [ -119.440098937999963, 50.850389332000105 ], [ -119.440075670999988, 50.850547533000096 ], [ -119.441044642999941, 50.850604429000093 ], [ -119.441143545999964, 50.849931833000028 ], [ -119.441150277999967, 50.849932229000082 ], [ -119.441192359999889, 50.849646033000028 ], [ -119.444540796999888, 50.849842580000015 ], [ -119.444543701999947, 50.849822811000053 ], [ -119.444748254999979, 50.849834814000104 ], [ -119.44478640599999, 50.849575216000069 ], [ -119.450447126999947, 50.849907246000051 ], [ -119.450390168999931, 50.85029515300009 ], [ -119.450754945999961, 50.850316538000122 ], [ -119.450634161999957, 50.851139139000104 ], [ -119.45251607499992, 50.851249452000026 ], [ -119.452651920999955, 50.850323997 ], [ -119.453026060999917, 50.850345925000106 ], [ -119.452975704999957, 50.849386370000062 ], [ -119.45254993699993, 50.849395324000071 ], [ -119.452507511999983, 50.848586719000146 ], [ -119.452081753999934, 50.848595672000073 ], [ -119.452025200999927, 50.847517531000022 ], [ -119.451599451000021, 50.847526482000056 ], [ -119.451557043999969, 50.846717878000071 ], [ -119.451131301999951, 50.846726825000133 ], [ -119.451091112999976, 50.845960337000058 ], [ -119.450094841999942, 50.845901922000031 ], [ -119.44997847399999, 50.84669446000003 ], [ -119.446174620999926, 50.846471344000129 ], [ -119.446152801999972, 50.846619847000106 ], [ -119.444939400999942, 50.846548648000066 ], [ -119.444921351999938, 50.846671476000076 ], [ -119.444159149999948, 50.846626744000027 ], [ -119.444103134999935, 50.847007894000058 ], [ -119.44231527599996, 50.846902949000054 ], [ -119.442308353999948, 50.846950035000127 ], [ -119.441802088999964, 50.846920312000066 ], [ -119.441780737999949, 50.847065547000042 ], [ -119.438610185999906, 50.846879354000045 ], [ -119.438523317999937, 50.847469920000037 ], [ -119.438513923999935, 50.847469369000052 ], [ -119.438446339999942, 50.847928822000064 ], [ -119.435335308, 50.84774603500005 ], [ -119.432785958999958, 50.84759618500005 ], [ -119.432838063999938, 50.847242259000012 ], [ -119.431780150999955, 50.847180058000035 ], [ -119.431865917, 50.846597586 ], [ -119.43163068799997, 50.846583754000086 ], [ -119.431671488999925, 50.84630666100005 ], [ -119.43155740499995, 50.846299953000063 ], [ -119.431566221999958, 50.846240082000101 ], [ -119.428089096999969, 50.846035557000086 ], [ -119.428191153999961, 50.845342811000094 ], [ -119.426680499999961, 50.845253920000019 ], [ -119.426716234999986, 50.845011412000083 ], [ -119.426310104999942, 50.844987511000085 ], [ -119.426364177999943, 50.844620559000077 ], [ -119.425904416999941, 50.844593500000073 ], [ -119.426022729999886, 50.843790652000052 ], [ -119.421414450999976, 50.843519322000134 ], [ -119.421298982999986, 50.844302322000061 ], [ -119.420015828999979, 50.844226738000046 ], [ -119.419952445999911, 50.844656453000049 ], [ -119.41953461699994, 50.844631837000087 ], [ -119.419340892999955, 50.845945064000063 ], [ -119.418879151999974, 50.84591785900006 ], [ -119.418858377999953, 50.846058673000073 ], [ -119.417066217999931, 50.845953067000018 ], [ -119.417047097, 50.846082634000084 ], [ -119.421928717999933, 50.846370227000151 ], [ -119.421858855000011, 50.84684398600006 ], [ -119.422085345999974, 50.846857323000066 ], [ -119.4216282899999, 50.849956569000071 ], [ -119.421483922999954, 50.849892004000075 ], [ -119.42067048399997, 50.849580690000039 ], [ -119.420410057999931, 50.84949870800007 ], [ -119.420254405999927, 50.849449695 ], [ -119.41986907899998, 50.84937200100007 ], [ -119.418178671999982, 50.849132390000072 ], [ -119.417988169999944, 50.849105399000052 ], [ -119.417321601999944, 50.849010891000084 ], [ -119.4167921909999, 50.848894006000073 ], [ -119.413421149999962, 50.847741952000064 ], [ -119.413092116999977, 50.847629504000068 ], [ -119.412335496999958, 50.847349499000096 ], [ -119.411624879999948, 50.84705859100012 ], [ -119.41090234, 50.846740860000111 ], [ -119.408975809999973, 50.845893603000093 ], [ -119.408898797999939, 50.845859739000041 ], [ -119.408834420999938, 50.845831406000094 ], [ -119.40808126599994, 50.845538097000031 ], [ -119.407417473999942, 50.845413196 ], [ -119.40626822900002, 50.845350390000064 ], [ -119.406635202999979, 50.842867581000078 ], [ -119.403951751999941, 50.842709134000081 ], [ -119.403578864999957, 50.845230929000124 ], [ -119.403166771999906, 50.845230798000109 ], [ -119.40266981399999, 50.845264801000077 ], [ -119.402543909999977, 50.845273411000036 ], [ -119.401583122999966, 50.84527628100011 ], [ -119.400617177999891, 50.845279169000079 ], [ -119.400006087999898, 50.845281005000075 ], [ -119.399972185999957, 50.845281096000058 ], [ -119.398430116, 50.845333391000054 ], [ -119.398111686999982, 50.845392106000105 ], [ -119.398056810999918, 50.845280605000049 ], [ -119.398042164999978, 50.845147110000021 ], [ -119.397999114999962, 50.844754001000126 ], [ -119.398005277999943, 50.843920599000022 ], [ -119.398063014999977, 50.843924012000066 ], [ -119.398305755999928, 50.842283734000034 ], [ -119.40266877199997, 50.842541543000046 ], [ -119.402688533999964, 50.842407913000031 ], [ -119.40256912199996, 50.842400859000065 ], [ -119.402576811999921, 50.842348860000101 ], [ -119.401557294999961, 50.842288632000106 ], [ -119.40162514099994, 50.841829914000066 ], [ -119.40153912699999, 50.841824831000011 ], [ -119.402010821999937, 50.838635487000076 ], [ -119.402068124, 50.838248011000061 ], [ -119.40772709399999, 50.838582204000048 ], [ -119.407659313999915, 50.839040928000053 ], [ -119.407745324999937, 50.839046004000068 ], [ -119.40773764199993, 50.839098005000025 ], [ -119.408757095999945, 50.839158177000044 ], [ -119.408723907999928, 50.839382828000055 ], [ -119.408750676999915, 50.839384408000093 ], [ -119.408769371999981, 50.839257867000136 ], [ -119.414428521000019, 50.839591721 ], [ -119.41442441399991, 50.839619543000062 ], [ -119.414959706, 50.839651107000115 ], [ -119.414947480999984, 50.839733932000051 ], [ -119.415655688999976, 50.83977568800001 ], [ -119.415623761999939, 50.839992018000032 ], [ -119.416379960999976, 50.840036598000069 ], [ -119.416592768999948, 50.838594445000041 ], [ -119.422251891999935, 50.838927904000023 ], [ -119.422235196999921, 50.839041137000024 ], [ -119.42231518499996, 50.839045848000048 ], [ -119.422345403999927, 50.838840878000042 ], [ -119.425310294, 50.839015463000031 ], [ -119.425318665999896, 50.838958646000023 ], [ -119.430977899999931, 50.839291664000079 ], [ -119.430961713000016, 50.839401605000027 ], [ -119.431307696999909, 50.83942195500007 ], [ -119.431237099999976, 50.839901459000046 ], [ -119.432221101, 50.839959330000056 ], [ -119.432172460999965, 50.840289746000046 ], [ -119.432185825999966, 50.840290532000026 ], [ -119.43211140599999, 50.840796057000013 ], [ -119.433357023999946, 50.84086930100009 ], [ -119.433309, 50.841195576000111 ], [ -119.433334946999963, 50.841197102000073 ], [ -119.43325245199999, 50.841757563000073 ], [ -119.438083033999973, 50.842041473000045 ], [ -119.437994673999981, 50.842642197000018 ], [ -119.43935220799996, 50.842721946000047 ], [ -119.439379746999947, 50.842534676000071 ], [ -119.44483358199993, 50.842854895000059 ], [ -119.444843793999922, 50.842785402000047 ], [ -119.446615732999945, 50.842889383000042 ], [ -119.446732151999939, 50.842096844000103 ], [ -119.448810199, 50.842218751000097 ], [ -119.448966606999932, 50.841153593000108 ], [ -119.454626294999954, 50.841485415000051 ], [ -119.454143691999946, 50.844774655 ], [ -119.456566795999947, 50.844723643000066 ], [ -119.456580958999922, 50.844993178000038 ], [ -119.45743240899999, 50.844975240000018 ], [ -119.457451372999984, 50.845336033000137 ], [ -119.457474912999942, 50.845783843000035 ], [ -119.453217578999954, 50.84587346600005 ], [ -119.45319009399999, 50.845349675000065 ], [ -119.453175147999914, 50.845064862000129 ], [ -119.453600875999939, 50.845055908000077 ], [ -119.453599676999929, 50.845033062000049 ], [ -119.452023266999973, 50.844940661000052 ], [ -119.451962657999971, 50.845353575000047 ], [ -119.451961683999983, 50.845360211000084 ], [ -119.452332918999943, 50.845352406000139 ], [ -119.452763562999962, 50.845343351000054 ], [ -119.452763964999946, 50.845351033000092 ], [ -119.452820128999974, 50.846421489000058 ], [ -119.455800299999979, 50.846358779000063 ], [ -119.455814458999953, 50.846628312000099 ], [ -119.457091678999944, 50.846601413 ], [ -119.45714834899999, 50.847679548000038 ], [ -119.457574097999967, 50.847670578000091 ], [ -119.45763078, 50.848748712000059 ], [ -119.457205019999932, 50.848757683000038 ], [ -119.457219187999968, 50.849027216000131 ], [ -119.454664613999967, 50.849081007000095 ], [ -119.454718908999908, 50.850114904000122 ], [ -119.45475435499999, 50.849873346000081 ], [ -119.455561188000019, 50.849920615 ], [ -119.455558616999966, 50.849871685000082 ], [ -119.457687466, 50.849826847000045 ], [ -119.457698978999957, 50.850045833000067 ], [ -119.460415187999928, 50.850204872000056 ], [ -119.460381311999924, 50.850435933000071 ], [ -119.461194778999968, 50.850483550000042 ], [ -119.461125662000015, 50.850955031000041 ], [ -119.462734725999923, 50.851049201000073 ], [ -119.463561634999934, 50.851097586 ], [ -119.463349603999944, 50.85254442800008 ], [ -119.463037401999898, 50.854674642000134 ], [ -119.462246688000036, 50.854628375000068 ], [ -119.462210278, 50.854876761000028 ], [ -119.456694085999985, 50.854553833000104 ], [ -119.456341389999949, 50.856957771000062 ], [ -119.456179397999932, 50.858061792000086 ], [ -119.453107661999937, 50.857881848000062 ], [ -119.452991492999942, 50.858673164000081 ], [ -119.452069285999968, 50.858619124000043 ], [ -119.451972883999971, 50.859275686000061 ], [ -119.451240832999929, 50.859232783000067 ], [ -119.450842186999964, 50.861947306000047 ], [ -119.449471574999976, 50.86186696700004 ], [ -119.449269102999963, 50.861743790000091 ], [ -119.448755092999988, 50.861384389000108 ], [ -119.448689277999904, 50.861322064000035 ], [ -119.448419199999975, 50.861066205000064 ], [ -119.448224594999957, 50.8608166980001 ], [ -119.44811291299996, 50.860636530000065 ], [ -119.448052191, 50.860538572000017 ], [ -119.447617120999894, 50.859836714000011 ], [ -119.447574792999944, 50.859768389000102 ], [ -119.447393368999911, 50.859596520000132 ], [ -119.447265195999975, 50.859475102000033 ], [ -119.446902109999925, 50.859245505000082 ], [ -119.446819722999948, 50.859209693000068 ], [ -119.446606558999974, 50.859117027000146 ], [ -119.44653404499995, 50.859085475000043 ], [ -119.446496824999912, 50.859069309000063 ], [ -119.445911700999943, 50.858922188000108 ], [ -119.444741783999959, 50.858790495000044 ], [ -119.44425561099996, 50.858698804000035 ], [ -119.44385669399999, 50.858566300000106 ], [ -119.443706452999919, 50.858488397000038 ], [ -119.444096678000022, 50.855833913000012 ], [ -119.446745115999974, 50.855989288000032 ], [ -119.446836584999943, 50.855366776000068 ], [ -119.44775871899995, 50.855420859000013 ], [ -119.44785517499993, 50.854764298000134 ], [ -119.45092667599999, 50.854944386000028 ] ], [ [ -119.455801091999945, 50.854431884000043 ], [ -119.455847003999978, 50.854118978000038 ], [ -119.455393952999927, 50.854092440000109 ], [ -119.455065466999898, 50.854073197000091 ], [ -119.455019549, 50.854386103000067 ], [ -119.455511622999964, 50.854414928000068 ], [ -119.455801091999945, 50.854431884000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021263", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "163.5", "sL_BldgLoss": "163.5", "sL_StrLoss": "163.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D724CB8B84DD5DC0583463F2026C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.458202087999936, 50.846057488 ], [ -119.45837368, 50.844887338000021 ], [ -119.458043263999954, 50.844867987000086 ], [ -119.458567780999942, 50.841290913000087 ], [ -119.462853458999973, 50.841541834000068 ], [ -119.46422755599994, 50.841622250000114 ], [ -119.464056127999982, 50.842792414000044 ], [ -119.464386531999978, 50.842811748000052 ], [ -119.463862464, 50.846388842000039 ], [ -119.462480014999969, 50.846307942000124 ], [ -119.458202087999936, 50.846057488 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021265", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.5", "sL_BldgLoss": "36.5", "sL_StrLoss": "36.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000954758D00BD75DC09ACD465B53684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.360119491999939, 50.814408707000069 ], [ -119.361227194999955, 50.814243017000095 ], [ -119.361014108999939, 50.815675767000073 ], [ -119.358374329999947, 50.815518715000096 ], [ -119.358697916999944, 50.815316408000086 ], [ -119.35905329799999, 50.814940708000051 ], [ -119.359064864999979, 50.814930978000113 ], [ -119.359333791999958, 50.814704802000072 ], [ -119.359693103999959, 50.814523192000081 ], [ -119.360119491999939, 50.814408707000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021267", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "111.2", "sL_BldgLoss": "111.2", "sL_StrLoss": "111.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000091706B1C3BD95DC0E55B8200D7664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.390886697999974, 50.804791506000086 ], [ -119.391218007999939, 50.802553106000055 ], [ -119.391667184999918, 50.802641800000032 ], [ -119.391742571999927, 50.80264490800004 ], [ -119.391804621999952, 50.802647477000093 ], [ -119.3920201, 50.80265639600006 ], [ -119.392347875999974, 50.802618996000014 ], [ -119.39244509699995, 50.802586093000095 ], [ -119.392676606999927, 50.802507697000117 ], [ -119.393244918000022, 50.80218500200008 ], [ -119.393552600999925, 50.802061604000087 ], [ -119.394179048999916, 50.801909475000123 ], [ -119.394502173999953, 50.801830994000085 ], [ -119.394902617999918, 50.801658904000114 ], [ -119.395160804999961, 50.801482293000113 ], [ -119.395222651999958, 50.801439975000164 ], [ -119.397070319999926, 50.80154932900011 ], [ -119.396541356999975, 50.805126278000046 ], [ -119.390886697999974, 50.804791506000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.7", "sL_BldgLoss": "34.7", "sL_StrLoss": "34.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F23ED2D42DA5DC05DA3275DE1654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.411973797999934, 50.794971007000051 ], [ -119.412024748999926, 50.794953692000036 ], [ -119.411795029999979, 50.796510947000101 ], [ -119.411096039999961, 50.796469669000047 ], [ -119.41104881399994, 50.796789764000067 ], [ -119.408296247999914, 50.796627170000114 ], [ -119.408592187999929, 50.795829295000011 ], [ -119.408733989999945, 50.795699684000063 ], [ -119.409070602999947, 50.795466996000123 ], [ -119.409467678999988, 50.795287511000041 ], [ -119.409690226999956, 50.795227946000068 ], [ -119.409901199999936, 50.795171487000069 ], [ -119.410834285999954, 50.795137312000122 ], [ -119.411526994000013, 50.795070912 ], [ -119.411973797999934, 50.794971007000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "60081578", "BldgCostT": "38512410", "sL_LossRatio": "0.999173185778795", "sL_AssetLoss": "2672.91", "sL_BldgLoss": "2670.7", "sL_StrLoss": "2669.9", "sL_NStrLoss": "0.8", "sL_ContLoss": "2.21", "geom_point": "0101000020E61000001F6E245C8ADE5DC047CEDB3B976F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.491417951999935, 50.881444252000101 ], [ -119.490591264999964, 50.88130686000008 ], [ -119.487821692999916, 50.880846466000044 ], [ -119.487300295999958, 50.880759789000081 ], [ -119.485191712999921, 50.8802743970001 ], [ -119.485106981999962, 50.880253162000059 ], [ -119.485027166999913, 50.880233163000099 ], [ -119.48346669499989, 50.879841991000085 ], [ -119.481491598999966, 50.879332700000063 ], [ -119.481225458000011, 50.879264165000045 ], [ -119.478851594999938, 50.87865289500013 ], [ -119.47765633799996, 50.878343988000026 ], [ -119.477495425999976, 50.878302393000041 ], [ -119.477470905999979, 50.878296044000059 ], [ -119.476289348999956, 50.877990664000066 ], [ -119.474730649999955, 50.877587772000034 ], [ -119.473558149999974, 50.877284704000125 ], [ -119.473443304999975, 50.87725499200009 ], [ -119.473117688999977, 50.877186385000059 ], [ -119.472241340999972, 50.877029246000035 ], [ -119.472185284999981, 50.877019204000071 ], [ -119.47204660599999, 50.87700448800009 ], [ -119.471599194999968, 50.876957057 ], [ -119.471348674999945, 50.876930499000125 ], [ -119.471334516999988, 50.876929008000069 ], [ -119.470703878999956, 50.876919508000078 ], [ -119.47019160799999, 50.876911810000081 ], [ -119.469943074999975, 50.876901796000091 ], [ -119.469950035999943, 50.876311781000041 ], [ -119.469956198999952, 50.875788696000086 ], [ -119.46990776799997, 50.875700374000097 ], [ -119.469873904999972, 50.87563870500005 ], [ -119.469730592999937, 50.875496004000098 ], [ -119.46967735599999, 50.875468405000063 ], [ -119.468553215999918, 50.874886004000039 ], [ -119.467833506999938, 50.874388498000016 ], [ -119.467282381999951, 50.874007302000116 ], [ -119.466720593, 50.873669591000109 ], [ -119.46485830499995, 50.872651152000088 ], [ -119.464773092999948, 50.872604539000065 ], [ -119.463932292999942, 50.872144701000074 ], [ -119.463496196999969, 50.871875706000097 ], [ -119.463255806999925, 50.87169380700005 ], [ -119.463051393999962, 50.871451913000044 ], [ -119.462884126999938, 50.871492598000074 ], [ -119.462874409999955, 50.872123397000117 ], [ -119.46282598499999, 50.87227841300006 ], [ -119.462661312999899, 50.872359005000099 ], [ -119.458951225999954, 50.872348082000059 ], [ -119.458685903999964, 50.87234730400008 ], [ -119.45852182499999, 50.872294279000073 ], [ -119.45849776299994, 50.872286512000066 ], [ -119.45846089399997, 50.872274604 ], [ -119.458425812999934, 50.872132242000113 ], [ -119.45841511699993, 50.872088838000145 ], [ -119.458406822999905, 50.872055360000097 ], [ -119.458404491999971, 50.872045898000032 ], [ -119.458404674999912, 50.872020308000117 ], [ -119.458406106999945, 50.871789270000122 ], [ -119.458421483999928, 50.86935100300007 ], [ -119.458411047999959, 50.868695045000067 ], [ -119.458393467999954, 50.867593121 ], [ -119.458388879999973, 50.867306425000052 ], [ -119.458385816999922, 50.867112190000036 ], [ -119.458346405999961, 50.867102711000065 ], [ -119.458058988999952, 50.867033493000051 ], [ -119.457709079999958, 50.86688769300013 ], [ -119.457489975, 50.866745985000129 ], [ -119.457387021999949, 50.866679410000067 ], [ -119.455692699999972, 50.865254382000082 ], [ -119.455132340999924, 50.864877048000039 ], [ -119.455111203999948, 50.864862810000062 ], [ -119.452978182999971, 50.86342631400003 ], [ -119.452860101999988, 50.863346789000033 ], [ -119.452469072999932, 50.863129142000041 ], [ -119.452407406999967, 50.863094779000086 ], [ -119.451960191999902, 50.862882800000058 ], [ -119.451760274999927, 50.862810136000093 ], [ -119.452063447999976, 50.860745507000061 ], [ -119.457249469999908, 50.86104928600011 ], [ -119.457725637999943, 50.861077166 ], [ -119.457538615999965, 50.86235191800008 ], [ -119.457456117, 50.862914214 ], [ -119.457666161999953, 50.862926512000037 ], [ -119.458539638999952, 50.862977648000054 ], [ -119.458518473999916, 50.863121925000058 ], [ -119.459101129999937, 50.86315603200007 ], [ -119.459081361999978, 50.863290799000076 ], [ -119.459351731999959, 50.863306625000106 ], [ -119.45932471499999, 50.863490818000052 ], [ -119.459475139999938, 50.863499622000091 ], [ -119.459449376999913, 50.863675268000122 ], [ -119.459656946999971, 50.863687417000108 ], [ -119.459633938999943, 50.863844283000091 ], [ -119.464522401999972, 50.864130284000069 ], [ -119.464413767999957, 50.864871469000057 ], [ -119.466894475999965, 50.86501652000004 ], [ -119.466805815000029, 50.865621646000115 ], [ -119.467716793999898, 50.865674899000027 ], [ -119.467708062999961, 50.86573448700004 ], [ -119.468301678, 50.865769182000108 ], [ -119.468276458999966, 50.865941342000042 ], [ -119.468897971, 50.865977666000099 ], [ -119.46889192899999, 50.866018914000072 ], [ -119.468895844999977, 50.86601914400007 ], [ -119.46939758299996, 50.862593409000063 ], [ -119.47506013499995, 50.862924191000033 ], [ -119.47501729299999, 50.863216976000132 ], [ -119.475673235999949, 50.863255274000068 ], [ -119.475421555000011, 50.864975392000169 ], [ -119.477959459999951, 50.865123536000105 ], [ -119.47845033599998, 50.861767215000093 ], [ -119.484112849999974, 50.862097539000047 ], [ -119.48405382599999, 50.86250148800012 ], [ -119.484431866999955, 50.862523531000072 ], [ -119.48390917099999, 50.866100639000074 ], [ -119.483808263999947, 50.866094755000091 ], [ -119.483757482999962, 50.866442241000101 ], [ -119.481579984999925, 50.866315257000117 ], [ -119.481608893999976, 50.866859471000026 ], [ -119.480331144999965, 50.866886647000044 ], [ -119.480296830999961, 50.866240407000078 ], [ -119.478800069999977, 50.8661530790001 ], [ -119.478655303999957, 50.867142912000112 ], [ -119.478419083999952, 50.868757958000103 ], [ -119.472755768999932, 50.868427350000047 ], [ -119.472940458999958, 50.867165721000056 ], [ -119.473007570999954, 50.866707244000047 ], [ -119.469486783999983, 50.866501562000039 ], [ -119.469529663999936, 50.866208781000068 ], [ -119.46924010099994, 50.866191859000025 ], [ -119.469097217999945, 50.867167381000037 ], [ -119.468994889999948, 50.867865981000094 ], [ -119.47197660099998, 50.868040185000083 ], [ -119.471967091999957, 50.868105136000132 ], [ -119.472388891999941, 50.868129774000053 ], [ -119.471896770999976, 50.871490965000064 ], [ -119.473904976999975, 50.871608239000125 ], [ -119.473881911999939, 50.871765810000056 ], [ -119.475293144999966, 50.871848200000052 ], [ -119.47516944099999, 50.872693451000067 ], [ -119.476046740999948, 50.872744660000095 ], [ -119.476049809999921, 50.872723685000075 ], [ -119.476174847999985, 50.872730982000093 ], [ -119.477518396000036, 50.872809392000136 ], [ -119.477539649000036, 50.872664118000053 ], [ -119.483203535999948, 50.872994485000028 ], [ -119.483143741999982, 50.873403538000069 ], [ -119.484375627999952, 50.873475353000067 ], [ -119.484324023999946, 50.87382843900005 ], [ -119.484516347999929, 50.873839650000093 ], [ -119.4844545, 50.874262829000038 ], [ -119.484463477999924, 50.874263352000085 ], [ -119.484432516999945, 50.874475202000092 ], [ -119.484254079999985, 50.875696070000053 ], [ -119.484110075999979, 50.876681298000058 ], [ -119.48515562499999, 50.876742238000126 ], [ -119.485064852999955, 50.877363346000088 ], [ -119.485989241999974, 50.877417215000079 ], [ -119.485937226999937, 50.877773179000044 ], [ -119.486501564999969, 50.877806062000104 ], [ -119.48669499499999, 50.87648221900016 ], [ -119.486701332999957, 50.876438837000087 ], [ -119.487363618999964, 50.876477424000051 ], [ -119.487365601999912, 50.876463852000022 ], [ -119.489373186999956, 50.876580796000042 ], [ -119.489412721999926, 50.876310099000086 ], [ -119.489465561999936, 50.876313177000121 ], [ -119.489496228999954, 50.876103200000031 ], [ -119.492596657999954, 50.8762837310001 ], [ -119.492787549999932, 50.874975973000055 ], [ -119.495044897999918, 50.875107359000033 ], [ -119.495140583999984, 50.874451585000038 ], [ -119.495466392999958, 50.872218529000079 ], [ -119.501130354999987, 50.87254798900004 ], [ -119.501111717999905, 50.872675847000068 ], [ -119.5012482599999, 50.87268378600006 ], [ -119.500983548999955, 50.874499708000052 ], [ -119.50072679099992, 50.876260931000083 ], [ -119.499069715999937, 50.876164575000139 ], [ -119.498954269999942, 50.876956226000075 ], [ -119.501679549999963, 50.877114683000066 ], [ -119.501602803999944, 50.877641154000052 ], [ -119.501792484999967, 50.877652180000076 ], [ -119.501271000999921, 50.881229307000069 ], [ -119.499476587999965, 50.881124984000081 ], [ -119.499459122999937, 50.881244749000054 ], [ -119.499343347999954, 50.881238017000094 ], [ -119.49927718699999, 50.881691666000066 ], [ -119.499263844999959, 50.88178315200004 ], [ -119.497911792999915, 50.881704527000082 ], [ -119.49569147299999, 50.881575374000057 ], [ -119.495685872999985, 50.881613754000071 ], [ -119.496888640999913, 50.881683724000077 ], [ -119.49688419499995, 50.881714194000068 ], [ -119.496793644999968, 50.882334838000062 ], [ -119.494347710999961, 50.88193219500009 ], [ -119.492954413999925, 50.881699739000041 ], [ -119.492762395999975, 50.881667714000045 ], [ -119.491417951999935, 50.881444252000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.5", "sL_BldgLoss": "37.5", "sL_StrLoss": "37.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083578110BFDA5DC05E32C83C76654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.419319998, 50.79121901000007 ], [ -119.419773545999959, 50.791125529000048 ], [ -119.419391701999984, 50.793717280000116 ], [ -119.41460759399996, 50.793434977000061 ], [ -119.415845877999942, 50.792853298000118 ], [ -119.41648050699996, 50.792493889000077 ], [ -119.4170938399999, 50.792104255000027 ], [ -119.417097830000017, 50.792101718000019 ], [ -119.417167897999946, 50.792057198000101 ], [ -119.417927003, 50.791646505000088 ], [ -119.418295011999959, 50.791499498000057 ], [ -119.419319998, 50.79121901000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021273", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "50", "sL_BldgLoss": "50", "sL_StrLoss": "50", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004BCB06A195D75DC0A4886FD5B3664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.369313897999987, 50.801697467000139 ], [ -119.3709269899999, 50.801691255000065 ], [ -119.370707216999961, 50.803171574000096 ], [ -119.366024736999975, 50.802893275000073 ], [ -119.366025257999965, 50.802356561000053 ], [ -119.366025752999946, 50.801826148000018 ], [ -119.366025787999916, 50.801800654000068 ], [ -119.36602589099999, 50.801684109000078 ], [ -119.366052058999941, 50.801684628000039 ], [ -119.367092079999964, 50.801706005 ], [ -119.369313897999987, 50.801697467000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6049583", "BldgCostT": "3908333", "sL_LossRatio": "0.999966014891584", "sL_AssetLoss": "753.2711", "sL_BldgLoss": "753.2455", "sL_StrLoss": "753.2", "sL_NStrLoss": "0.0455", "sL_ContLoss": "0.0256", "geom_point": "0101000020E6100000C5DA296739D85DC07BC46481E1664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.37486630699999, 50.806426761000097 ], [ -119.374949068, 50.805869012000052 ], [ -119.374670239999915, 50.805852457000093 ], [ -119.374876418, 50.804462961000098 ], [ -119.373823407999907, 50.804400437000048 ], [ -119.373904389999936, 50.803854741000066 ], [ -119.37166737699998, 50.803721878000026 ], [ -119.371969404999902, 50.801687226000084 ], [ -119.37215439699996, 50.801686513000085 ], [ -119.372679601999934, 50.801703312000043 ], [ -119.373080810999937, 50.801735932000014 ], [ -119.373296712999945, 50.801753505000086 ], [ -119.373785589999954, 50.801793399000083 ], [ -119.374030231999896, 50.801793053000047 ], [ -119.376855022999976, 50.801788897000051 ], [ -119.37753189599999, 50.80176015900004 ], [ -119.378992446999973, 50.801698163000026 ], [ -119.379363413999926, 50.801682399000065 ], [ -119.381022429999945, 50.801682702000072 ], [ -119.381135836999945, 50.801682750000097 ], [ -119.381873118000016, 50.801682867000061 ], [ -119.382469547999975, 50.801682960000115 ], [ -119.382527705999976, 50.80168297100002 ], [ -119.384968152999974, 50.801683352000111 ], [ -119.388392413999966, 50.801683807000082 ], [ -119.388744189999926, 50.801724487000108 ], [ -119.388875062999958, 50.801759839000091 ], [ -119.388795656999932, 50.802296161000072 ], [ -119.386445056, 50.80215686200011 ], [ -119.386430251999968, 50.802256815000085 ], [ -119.386017694999936, 50.802232362000055 ], [ -119.385967649999969, 50.802570225000089 ], [ -119.382759735999969, 50.802380027000048 ], [ -119.382467398999935, 50.804352601000062 ], [ -119.382235732999931, 50.804338862000101 ], [ -119.38189680399995, 50.806625509000163 ], [ -119.380553154, 50.806545814000089 ], [ -119.380521052999924, 50.806762341000073 ], [ -119.37486630699999, 50.806426761000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007032607F88D55DC02C1D205607694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.336578612999972, 50.819724693000055 ], [ -119.33765689699996, 50.819175366000081 ], [ -119.337405573999945, 50.820858996000084 ], [ -119.336956353999966, 50.820832181000121 ], [ -119.336938957999948, 50.820948706000109 ], [ -119.336535400999978, 50.82092461600007 ], [ -119.336509647999947, 50.821097115000029 ], [ -119.33634165699999, 50.821087086 ], [ -119.336269864999949, 50.821567920000142 ], [ -119.334811575999979, 50.82148085500004 ], [ -119.335160694999928, 50.821080697000099 ], [ -119.336372091999948, 50.819865700000079 ], [ -119.336578612999972, 50.819724693000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021276", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "75.7", "sL_BldgLoss": "75.7", "sL_StrLoss": "75.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D09CECF03D65DC0B1B5E7C7996A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.346424497999962, 50.833825388000058 ], [ -119.345975317999915, 50.833746386000058 ], [ -119.345412691999982, 50.833748880000044 ], [ -119.345187605999968, 50.833794070000124 ], [ -119.344623297999973, 50.833769489000055 ], [ -119.343955318999988, 50.833684575000092 ], [ -119.34309942199998, 50.833538780000076 ], [ -119.342994157999925, 50.833499670000037 ], [ -119.34228411699992, 50.833235782000067 ], [ -119.34187772599995, 50.833118676000019 ], [ -119.340673131999964, 50.832883420000037 ], [ -119.340833768999943, 50.831807095000045 ], [ -119.346491465000014, 50.832144384000117 ], [ -119.346251438999971, 50.833753986000062 ], [ -119.348989596999971, 50.833917119000056 ], [ -119.348976734999937, 50.834003408000036 ], [ -119.348648194999939, 50.834081480000087 ], [ -119.348279104999946, 50.834135273000072 ], [ -119.347957405999963, 50.834120587000022 ], [ -119.347077407999947, 50.833992392000013 ], [ -119.346424497999962, 50.833825388000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8252917", "BldgCostT": "5691667", "sL_LossRatio": "1", "sL_AssetLoss": "376", "sL_BldgLoss": "376", "sL_StrLoss": "376", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007154B0BEE8E55DC0099E6B2D866E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.58453289799999, 50.869067396000034 ], [ -119.58380744099999, 50.869025753000102 ], [ -119.582852386999917, 50.868970926000024 ], [ -119.582698326999903, 50.868962081000106 ], [ -119.582714306999975, 50.868851037000091 ], [ -119.58321315399999, 50.865384528000057 ], [ -119.583699615999976, 50.865412456000072 ], [ -119.58381157099997, 50.864634340000066 ], [ -119.586692928999966, 50.864799718000093 ], [ -119.586759296999944, 50.864338219000025 ], [ -119.582245005999937, 50.864079083000021 ], [ -119.581924337999951, 50.864060668000036 ], [ -119.582439169999958, 50.86048309900012 ], [ -119.587318477999958, 50.860763195000054 ], [ -119.587359755999913, 50.860476112000107 ], [ -119.590661096999909, 50.860665502000089 ], [ -119.593022902999934, 50.860800933000156 ], [ -119.592675733999926, 50.863217466000044 ], [ -119.592950872999921, 50.863233239000088 ], [ -119.592788327999969, 50.8643646270001 ], [ -119.592788119999966, 50.864366075000063 ], [ -119.593298665999967, 50.864395343000112 ], [ -119.593320996, 50.864239906000051 ], [ -119.593621785999972, 50.862146060000107 ], [ -119.593624393999931, 50.862146209000031 ], [ -119.593649294999977, 50.861972860000087 ], [ -119.595693055999931, 50.862089997000119 ], [ -119.596038220999944, 50.859686209000067 ], [ -119.596177830999977, 50.859694210000058 ], [ -119.596223731999942, 50.859374513 ], [ -119.596290464999953, 50.859378337000102 ], [ -119.59631253699996, 50.859224614000077 ], [ -119.59685732799997, 50.859255832000073 ], [ -119.596919333999935, 50.858823928000042 ], [ -119.597188100999958, 50.85883932800008 ], [ -119.597307062999946, 50.858010635000056 ], [ -119.597731926999984, 50.858034977000067 ], [ -119.597829077999961, 50.857358146000081 ], [ -119.597928064999948, 50.857363817000113 ], [ -119.597947279999971, 50.857229948000089 ], [ -119.597975605, 50.857231571000035 ], [ -119.597998787999941, 50.857070049000079 ], [ -119.600036600999914, 50.857186780000063 ], [ -119.60001090399993, 50.856724953000032 ], [ -119.600436688999977, 50.856715460000025 ], [ -119.600421690999951, 50.856445956000108 ], [ -119.600847472999988, 50.856436463000144 ], [ -119.600817473999882, 50.855897456000108 ], [ -119.602094802999929, 50.855868966000102 ], [ -119.602128894999979, 50.856481189000171 ], [ -119.602139825999956, 50.856677475000019 ], [ -119.601973843999986, 50.856681178000031 ], [ -119.601714040999951, 50.856686974000048 ], [ -119.601731147999985, 50.856994209000085 ], [ -119.601744051999916, 50.857225980000059 ], [ -119.601548060999946, 50.857230352000059 ], [ -119.601318263999971, 50.857235478000064 ], [ -119.601319642999925, 50.857260256000082 ], [ -119.601516151999959, 50.857271508000032 ], [ -119.601819103999972, 50.857288855000036 ], [ -119.601478300999972, 50.857650907000085 ], [ -119.601332805999945, 50.858093807000081 ], [ -119.600309904999961, 50.859627701000093 ], [ -119.600217402999974, 50.860016486000042 ], [ -119.600409990999978, 50.860912415 ], [ -119.600825021999967, 50.861981905000043 ], [ -119.601232203999984, 50.862675486000107 ], [ -119.602360709999957, 50.86380059700015 ], [ -119.602993147999925, 50.864096570000079 ], [ -119.603148985999908, 50.864169495000127 ], [ -119.603166711999933, 50.864173801000042 ], [ -119.603898699999917, 50.864351802000066 ], [ -119.604102879999942, 50.86469790000006 ], [ -119.603773108000013, 50.864911493000058 ], [ -119.603147711999952, 50.864646589000095 ], [ -119.60305159, 50.864693594000137 ], [ -119.603087694999914, 50.864854606000058 ], [ -119.602022893999944, 50.865196789000116 ], [ -119.600016706999924, 50.865841494000051 ], [ -119.599691288999949, 50.86585719300006 ], [ -119.599643261999958, 50.865906391000117 ], [ -119.599502206999944, 50.866050906000098 ], [ -119.599215181999924, 50.86624599400006 ], [ -119.598654494999934, 50.866419807000064 ], [ -119.598487480999978, 50.866545157000118 ], [ -119.59529446599997, 50.866362233000046 ], [ -119.595356838999948, 50.865927947000088 ], [ -119.595049552999967, 50.865910339000074 ], [ -119.594809414999972, 50.867582210000116 ], [ -119.59496954799999, 50.86759138700004 ], [ -119.594875499999915, 50.86772720400004 ], [ -119.594023081999964, 50.867449490000133 ], [ -119.593650508999986, 50.867412398000027 ], [ -119.593070787, 50.867479410000023 ], [ -119.592542103999961, 50.867428106000069 ], [ -119.591607303999965, 50.867485090000073 ], [ -119.590703187999964, 50.867334104000022 ], [ -119.589193001999917, 50.867241491000101 ], [ -119.588582511999931, 50.867247198000086 ], [ -119.587978493999941, 50.867376794000073 ], [ -119.586672401999962, 50.867918003000099 ], [ -119.58657328699995, 50.867971254000068 ], [ -119.586434434999916, 50.868045855000062 ], [ -119.58453289799999, 50.869067396000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38", "sL_BldgLoss": "38", "sL_StrLoss": "38", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DD00DEA2EE55DC0939E54C1496F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.580139509999938, 50.870810986000059 ], [ -119.580200575, 50.870386880000083 ], [ -119.579985635999961, 50.870391634000057 ], [ -119.579024508, 50.870412888000047 ], [ -119.579011312999938, 50.870173922000035 ], [ -119.578964983999953, 50.869334858000109 ], [ -119.5793908899999, 50.869325441000086 ], [ -119.579376005, 50.869055933000034 ], [ -119.579801910999961, 50.869046514000118 ], [ -119.579794143, 50.868905889000118 ], [ -119.57977479799996, 50.868555633000035 ], [ -119.579772137999925, 50.868507500000078 ], [ -119.579838106999929, 50.868506041000074 ], [ -119.580198038999967, 50.868498080000109 ], [ -119.580183531999964, 50.868235460000079 ], [ -119.580183149999954, 50.86822857300006 ], [ -119.580192590999914, 50.86822836400011 ], [ -119.581460838999988, 50.868200304000034 ], [ -119.581474428999982, 50.868446181000067 ], [ -119.58147573499997, 50.868469810000114 ], [ -119.581685558999951, 50.868465166000092 ], [ -119.581901631999955, 50.868460384000102 ], [ -119.581904034999951, 50.868503868000062 ], [ -119.581916529999958, 50.86872989000004 ], [ -119.58234243099993, 50.86872046300013 ], [ -119.58236544, 50.869136652000066 ], [ -119.583091209999935, 50.869178321000071 ], [ -119.583384447999919, 50.869195155000085 ], [ -119.58420715599999, 50.869242382000031 ], [ -119.583563804, 50.869587978000077 ], [ -119.583509590999938, 50.869617101000124 ], [ -119.583323762999953, 50.86966297300004 ], [ -119.58206689, 50.869973201000057 ], [ -119.581393106999926, 50.870266087000033 ], [ -119.580139509999938, 50.870810986000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28743667", "BldgCostT": "19326667", "sL_LossRatio": "0.995112604006867", "sL_AssetLoss": "1753.49", "sL_BldgLoss": "1744.92", "sL_StrLoss": "1741.8", "sL_NStrLoss": "3.12", "sL_ContLoss": "8.57", "geom_point": "0101000020E6100000F292BDADCDE75DC08053ED0D9D6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.623870018999966, 50.880633693000021 ], [ -119.623904145999958, 50.880395090000036 ], [ -119.623516524, 50.880372984000104 ], [ -119.623524165000035, 50.880319554000039 ], [ -119.623159815999912, 50.880298774000082 ], [ -119.623248242999978, 50.87968057900013 ], [ -119.623041996999959, 50.879685217000059 ], [ -119.623039372999926, 50.879638495000023 ], [ -119.619803451999971, 50.879453884000043 ], [ -119.619822103999937, 50.879323560000081 ], [ -119.61950695099992, 50.879305575000103 ], [ -119.619524677999948, 50.879181727000095 ], [ -119.618910240999966, 50.879146660000089 ], [ -119.618933575999947, 50.878983634000086 ], [ -119.6181908289999, 50.878941240000117 ], [ -119.618320983999965, 50.878031997000022 ], [ -119.615235996999957, 50.877855860000032 ], [ -119.615293140999924, 50.87745684100004 ], [ -119.614806510999983, 50.877429050000025 ], [ -119.614812578999988, 50.877386679000075 ], [ -119.614104389999923, 50.877346230000043 ], [ -119.61413520399999, 50.877131100000021 ], [ -119.613830997999969, 50.877113723 ], [ -119.613898304999964, 50.876643828000098 ], [ -119.612728392999912, 50.876576994000061 ], [ -119.612749457999925, 50.876429966000075 ], [ -119.612019781, 50.876388275000053 ], [ -119.612072396999935, 50.876021051000059 ], [ -119.611643895, 50.875996566 ], [ -119.611647731999966, 50.875969773000165 ], [ -119.609091913999933, 50.87582369600004 ], [ -119.609316270999912, 50.874258475000076 ], [ -119.608951017999942, 50.874237595000089 ], [ -119.609119412999959, 50.873062785000073 ], [ -119.608832695, 50.873046393000038 ], [ -119.608853159999953, 50.872903627000071 ], [ -119.608576097000011, 50.872887786000085 ], [ -119.608640382999937, 50.87243932100008 ], [ -119.607849984999959, 50.872394127000064 ], [ -119.607579041999941, 50.874283982000058 ], [ -119.606614282999942, 50.87422881000002 ], [ -119.606589404999966, 50.874402303000075 ], [ -119.600924434999939, 50.874078173000051 ], [ -119.601198685999961, 50.872167250000082 ], [ -119.60108107399995, 50.872160517000033 ], [ -119.601039351999972, 50.872451236000067 ], [ -119.599085444, 50.872339370000056 ], [ -119.599028679999932, 50.872734781000098 ], [ -119.598454426999979, 50.872701898000074 ], [ -119.593363976, 50.87241026800006 ], [ -119.593379593999956, 50.872301582000048 ], [ -119.592408854, 50.872245943000031 ], [ -119.592557712999934, 50.871210074000047 ], [ -119.591101781999924, 50.871126609000036 ], [ -119.591123146999948, 50.870977969000094 ], [ -119.590584676999981, 50.870947094000059 ], [ -119.590789998, 50.869518677000052 ], [ -119.590907886999929, 50.86869848700006 ], [ -119.590782185999913, 50.86869127900006 ], [ -119.590746898999924, 50.868936780000105 ], [ -119.589883060999966, 50.868887243000053 ], [ -119.589823480999925, 50.869301701000076 ], [ -119.588372387999982, 50.869218473000075 ], [ -119.588362515999961, 50.869287135000036 ], [ -119.586523577999969, 50.869181634 ], [ -119.586929805999944, 50.869001901000011 ], [ -119.587394640999918, 50.868882046000138 ], [ -119.588079008999927, 50.868705586000068 ], [ -119.58878939899999, 50.868672903000117 ], [ -119.590043997999928, 50.868744098000072 ], [ -119.590869008, 50.868517585000113 ], [ -119.591541701999972, 50.868584593000065 ], [ -119.591630493, 50.86865439000011 ], [ -119.5911186, 50.868907899000128 ], [ -119.592290205999987, 50.868783986000011 ], [ -119.59730260799995, 50.868689982000078 ], [ -119.600396404999955, 50.868342503000065 ], [ -119.601271030999982, 50.868177518000081 ], [ -119.601787895999948, 50.868207105000067 ], [ -119.601732839999912, 50.868590814000065 ], [ -119.602607595999956, 50.868640883000083 ], [ -119.602333427999952, 50.870551818000123 ], [ -119.602402534999953, 50.870555773000106 ], [ -119.602427427999885, 50.870382280000072 ], [ -119.60523600499999, 50.870542990000047 ], [ -119.605296959, 50.870117969000056 ], [ -119.604332237999984, 50.870062775000051 ], [ -119.60440674799996, 50.869543293000042 ], [ -119.60385395899999, 50.869511663000019 ], [ -119.603921006999911, 50.869044234000086 ], [ -119.603426777999985, 50.869015952000119 ], [ -119.603502229999918, 50.86848995600014 ], [ -119.603248707999981, 50.868475448000027 ], [ -119.603255738999934, 50.868426435000089 ], [ -119.602846898999957, 50.868403037000064 ], [ -119.602869790999961, 50.86824347000006 ], [ -119.60267520499994, 50.868232333000037 ], [ -119.602692600999958, 50.868111065000072 ], [ -119.602256798999974, 50.868086122000108 ], [ -119.602270744999885, 50.867988926000081 ], [ -119.60256348799993, 50.867933699000034 ], [ -119.602607785999936, 50.86791989800011 ], [ -119.603555590999989, 50.867624690000127 ], [ -119.604117579999979, 50.867243 ], [ -119.604188826999973, 50.867157176000042 ], [ -119.604422701999965, 50.866875486000062 ], [ -119.605388109999936, 50.86634140400006 ], [ -119.605964292999928, 50.866220406000096 ], [ -119.606242084999963, 50.866358500000082 ], [ -119.606487821999977, 50.866676086000027 ], [ -119.606674043999988, 50.866916763000042 ], [ -119.607084006999983, 50.867446595000089 ], [ -119.607676475999966, 50.868070388000028 ], [ -119.608110748999962, 50.868527607000075 ], [ -119.608171626999976, 50.868591706000061 ], [ -119.609575498999931, 50.869792310000101 ], [ -119.60996532499999, 50.870060160000072 ], [ -119.610052622999945, 50.870120147000108 ], [ -119.611349789999949, 50.871011403000097 ], [ -119.612405591999988, 50.871599606000117 ], [ -119.612625199999911, 50.871972790000051 ], [ -119.612623197999966, 50.872170706000077 ], [ -119.612446795999958, 50.872335893000098 ], [ -119.612464322999969, 50.872369783000075 ], [ -119.612522182999939, 50.872481481000101 ], [ -119.612524994999887, 50.872486899000094 ], [ -119.614592703999989, 50.873871201000064 ], [ -119.615399331999981, 50.874278259000064 ], [ -119.616144907999953, 50.874654485000086 ], [ -119.616469587999987, 50.874890998000076 ], [ -119.617182297999975, 50.87518010400003 ], [ -119.617685787999974, 50.87552051400008 ], [ -119.619096805, 50.87608159600007 ], [ -119.620819087999962, 50.876897694000021 ], [ -119.62342780599991, 50.877774991000123 ], [ -119.625191199999946, 50.878283400000115 ], [ -119.625995388999954, 50.878435800000041 ], [ -119.627541107999917, 50.878635204000041 ], [ -119.628195206, 50.878621008000032 ], [ -119.628345707999983, 50.878509904000033 ], [ -119.629044495999921, 50.87779209200005 ], [ -119.63041387699991, 50.877122697000075 ], [ -119.630905995999967, 50.876778009000105 ], [ -119.631312512999898, 50.875923507000024 ], [ -119.631270689999909, 50.875412190000105 ], [ -119.631367586999943, 50.875131704000061 ], [ -119.632252498999932, 50.874157496000109 ], [ -119.633054815999955, 50.873788591000057 ], [ -119.635774308999942, 50.87283729500006 ], [ -119.636156790999934, 50.87206388900011 ], [ -119.636766197999961, 50.871546914000042 ], [ -119.638532391999945, 50.870840513000097 ], [ -119.638905795999975, 50.870644013000117 ], [ -119.639160304999933, 50.870367700000045 ], [ -119.63915929699999, 50.870106997000093 ], [ -119.639058698999946, 50.869345089000056 ], [ -119.639152013999976, 50.868991899000029 ], [ -119.641208408999901, 50.868144491000074 ], [ -119.642234504, 50.867950796000081 ], [ -119.645843298999935, 50.867905202000074 ], [ -119.646146292999958, 50.867735706000097 ], [ -119.646371808999945, 50.867200205000067 ], [ -119.646610695999954, 50.865908514000083 ], [ -119.647107603999956, 50.865132307000074 ], [ -119.647456014999989, 50.86475629300007 ], [ -119.648880680999952, 50.863833394000075 ], [ -119.649436209999962, 50.86310990200009 ], [ -119.649528978, 50.862469 ], [ -119.649798498999928, 50.861969106000117 ], [ -119.649771212999966, 50.859980907000065 ], [ -119.649587276999966, 50.858986795000114 ], [ -119.651012806999972, 50.859538590000092 ], [ -119.653482914999927, 50.860316997000027 ], [ -119.653386985999987, 50.860311550000063 ], [ -119.653293069999975, 50.860971561000021 ], [ -119.65308133799999, 50.860959536000095 ], [ -119.653029846999928, 50.861321383000075 ], [ -119.653083638999959, 50.861324438000096 ], [ -119.653142452999958, 50.861327778000039 ], [ -119.652633266999899, 50.864905667000102 ], [ -119.652428267999966, 50.864894025000062 ], [ -119.652352283999974, 50.865427872000112 ], [ -119.652001070999987, 50.865407925000042 ], [ -119.651964481999983, 50.86566498100008 ], [ -119.651829282999969, 50.865657303000027 ], [ -119.651796986999969, 50.865884184000045 ], [ -119.651629459999981, 50.865874668000082 ], [ -119.651599989999909, 50.866081688000058 ], [ -119.65068387899997, 50.866029652000087 ], [ -119.650592080999985, 50.866674410000066 ], [ -119.650310662999971, 50.866658424000029 ], [ -119.650275879999967, 50.866902717000137 ], [ -119.65001261599997, 50.866887761000079 ], [ -119.64965059799998, 50.869430025000064 ], [ -119.64947037, 50.869419786000051 ], [ -119.649440299999981, 50.869630930000056 ], [ -119.649095163999931, 50.869611321000043 ], [ -119.649060295999931, 50.869856138000102 ], [ -119.648822987999964, 50.869842656000117 ], [ -119.648791696999979, 50.870062344000075 ], [ -119.648321820999925, 50.87003564600009 ], [ -119.648311478, 50.870108255000034 ], [ -119.647784306999966, 50.870078298000116 ], [ -119.647772757999974, 50.870159367000049 ], [ -119.647437232999962, 50.870140300000045 ], [ -119.647423046999947, 50.870239874000056 ], [ -119.64607961199999, 50.870163520000069 ], [ -119.646073387999962, 50.870207206000053 ], [ -119.645131828999951, 50.870153682000094 ], [ -119.645122645999933, 50.870218128000076 ], [ -119.643691068999971, 50.870136733000066 ], [ -119.643635898999918, 50.870523762000062 ], [ -119.642739720999941, 50.870472798000058 ], [ -119.642641493000013, 50.871161783000055 ], [ -119.642333890999979, 50.871144288000067 ], [ -119.642177733999958, 50.872239490000069 ], [ -119.642076159999988, 50.872233714000089 ], [ -119.642032344999961, 50.872540993000015 ], [ -119.641804075, 50.872528010000075 ], [ -119.641754351999978, 50.872876699000081 ], [ -119.64151528499994, 50.872863101000078 ], [ -119.64149544799993, 50.873002204 ], [ -119.640771509999965, 50.872961025000073 ], [ -119.640713134999899, 50.873370322000049 ], [ -119.64007218099999, 50.87333385900012 ], [ -119.640055310999927, 50.873452137000079 ], [ -119.639741146999924, 50.873434264000132 ], [ -119.639712006999943, 50.873638545000084 ], [ -119.639508222999936, 50.873626950000109 ], [ -119.639465413, 50.873927049000059 ], [ -119.639111991999982, 50.873906941000044 ], [ -119.639047719999979, 50.874357459000059 ], [ -119.638176744999953, 50.874307897000065 ], [ -119.63803762799995, 50.875282880000114 ], [ -119.637670261, 50.875261973000114 ], [ -119.637656017000026, 50.875361788000127 ], [ -119.637309908999967, 50.87534209100005 ], [ -119.63728071, 50.875546696000121 ], [ -119.636947401999947, 50.875527725000047 ], [ -119.636918805000036, 50.875728104000032 ], [ -119.636462302999988, 50.875702121000145 ], [ -119.636446789999965, 50.875810815000094 ], [ -119.636048797999933, 50.875788160000134 ], [ -119.63602588, 50.875948724000096 ], [ -119.635138334999937, 50.875898197000041 ], [ -119.635066463999948, 50.876401645000087 ], [ -119.634733032999989, 50.876382662000033 ], [ -119.634620386999956, 50.877171653000076 ], [ -119.634227338999963, 50.877149275000086 ], [ -119.634004650999941, 50.878708864000039 ], [ -119.633261479999959, 50.878666546000076 ], [ -119.633161549999954, 50.879366282000014 ], [ -119.632678401999968, 50.87933876800011 ], [ -119.632586261999961, 50.879983894000063 ], [ -119.631926363999952, 50.879946311000062 ], [ -119.63190713799996, 50.880080909000107 ], [ -119.631674994999941, 50.880067687000057 ], [ -119.631609050999927, 50.880529315000096 ], [ -119.631322384999962, 50.880512988000156 ], [ -119.631322036999947, 50.880515421000062 ], [ -119.630996446999944, 50.880496876000102 ], [ -119.630958035999953, 50.880765730000057 ], [ -119.630557380999974, 50.880742906000094 ], [ -119.630551718999939, 50.880782539000066 ], [ -119.629568868999968, 50.880726545000094 ], [ -119.629535984999961, 50.880956662000074 ], [ -119.623870018999966, 50.880633693000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "128.2", "sL_BldgLoss": "128.2", "sL_StrLoss": "128.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CC845EF73E45DC0D9AD2B8792704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.572275998999913, 50.877528586000039 ], [ -119.572431807999976, 50.877468692 ], [ -119.572283600999938, 50.878496625000125 ], [ -119.571917575, 50.881035086000026 ], [ -119.569749405999985, 50.880910408 ], [ -119.56709883, 50.880757932000115 ], [ -119.566252016999897, 50.880709205000144 ], [ -119.566492595999989, 50.879042240000075 ], [ -119.567860013, 50.878408786000115 ], [ -119.568909087999899, 50.878106795000065 ], [ -119.570538599999963, 50.877998597000079 ], [ -119.57120648099999, 50.877722292000087 ], [ -119.572275998999913, 50.877528586000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "220.8", "sL_BldgLoss": "220.8", "sL_StrLoss": "220.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001733FC868DE55DC0D2293C265A724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583844139999954, 50.895403263000013 ], [ -119.583887060999928, 50.895105166000093 ], [ -119.58386786199992, 50.895104065000069 ], [ -119.583917696999919, 50.894757934000033 ], [ -119.583361968999952, 50.89472605200006 ], [ -119.583877039999962, 50.891148600000101 ], [ -119.58438509399997, 50.891177748000146 ], [ -119.584397319999979, 50.891092812000117 ], [ -119.586291582999948, 50.891201465000087 ], [ -119.589466691999959, 50.891383515000044 ], [ -119.590064326999965, 50.8914177710001 ], [ -119.590016134999971, 50.891752832000059 ], [ -119.590021526, 50.891849943000068 ], [ -119.590049956999934, 50.891851573000061 ], [ -119.590029506999969, 50.891993760000091 ], [ -119.590106069999962, 50.893373296000107 ], [ -119.589849620999971, 50.893378990000066 ], [ -119.589790142999931, 50.893792487000056 ], [ -119.589511689999981, 50.895728249000157 ], [ -119.583844139999954, 50.895403263000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "1", "sL_AssetLoss": "414", "sL_BldgLoss": "414", "sL_StrLoss": "414", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002297CD563DE55DC098E9EAD0E16F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.576120597999974, 50.874816909000103 ], [ -119.577340220999986, 50.873989398000056 ], [ -119.577703316999973, 50.873819559000047 ], [ -119.577984201999939, 50.873835697000025 ], [ -119.578006982999966, 50.873677517000033 ], [ -119.578670612999957, 50.873367101000035 ], [ -119.579822296999936, 50.873089310000047 ], [ -119.580609905999907, 50.872442810000031 ], [ -119.581088003999966, 50.872129424000114 ], [ -119.581236814999926, 50.872031877000047 ], [ -119.582256905999941, 50.871363189000114 ], [ -119.583653780999924, 50.870675298000052 ], [ -119.583968394999914, 50.87043458600003 ], [ -119.584276090999978, 50.870354913000106 ], [ -119.584379765000023, 50.870294857000083 ], [ -119.585584295999936, 50.869597200000079 ], [ -119.586136067, 50.869353082000053 ], [ -119.586861720999934, 50.869394719000056 ], [ -119.586579191999988, 50.871359040000122 ], [ -119.586480762999926, 50.872043338000019 ], [ -119.586384357999975, 50.872713542000056 ], [ -119.586898511999962, 50.872743041000057 ], [ -119.587220540999979, 50.872761516000075 ], [ -119.587089589999948, 50.873671971000107 ], [ -119.586705948999921, 50.876339057000074 ], [ -119.581040878999929, 50.876013922000048 ], [ -119.581047547999916, 50.87596760600006 ], [ -119.578892813, 50.875843863000121 ], [ -119.578966606999984, 50.875331491000061 ], [ -119.579082384999964, 50.87452758200007 ], [ -119.578901402, 50.87451718700013 ], [ -119.57876953, 50.87543281100006 ], [ -119.578475955999977, 50.877471043000106 ], [ -119.576801988999975, 50.877374879000037 ], [ -119.573116756999951, 50.877163083 ], [ -119.573960110999934, 50.87659136700011 ], [ -119.574027193999925, 50.876545888000088 ], [ -119.574032419999966, 50.876538646000043 ], [ -119.574357393999961, 50.87608870800004 ], [ -119.574541289999956, 50.8759700620001 ], [ -119.574949004999922, 50.875707006000077 ], [ -119.57522751099998, 50.875376602000046 ], [ -119.575865003000033, 50.875083209000067 ], [ -119.576120597999974, 50.874816909000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4695583", "BldgCostT": "3238333", "sL_LossRatio": "1", "sL_AssetLoss": "313.9", "sL_BldgLoss": "313.9", "sL_StrLoss": "313.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8FF49CF76E65DC0577B96EF32734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.59694699799995, 50.898874927000037 ], [ -119.597082472999929, 50.897932118000028 ], [ -119.597204323999961, 50.897939094000073 ], [ -119.59732671099998, 50.897087323000051 ], [ -119.598980572999935, 50.897181984000085 ], [ -119.599005741999974, 50.897006760000089 ], [ -119.601649089, 50.897158004000104 ], [ -119.604673604999917, 50.897330980000085 ], [ -119.604477157999966, 50.898699740000069 ], [ -119.60532627799995, 50.898748287000103 ], [ -119.606158150999974, 50.898795841000016 ], [ -119.605658076999958, 50.902280688000111 ], [ -119.605092176999975, 50.902341775000046 ], [ -119.603607715999914, 50.902256903000108 ], [ -119.603584989999945, 50.902415211000083 ], [ -119.603326473999957, 50.902400428000099 ], [ -119.603307235, 50.902534435000049 ], [ -119.601450008000015, 50.902734866000081 ], [ -119.599511853999971, 50.902890864000042 ], [ -119.598810699999959, 50.902683006000089 ], [ -119.596072035999967, 50.902154395000132 ], [ -119.596327881, 50.900374247000116 ], [ -119.596546642999911, 50.898852008000048 ], [ -119.59694699799995, 50.898874927000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021288", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9665417", "BldgCostT": "5191667", "sL_LossRatio": "1", "sL_AssetLoss": "45", "sL_BldgLoss": "45", "sL_StrLoss": "45", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006EE1D462CBE55DC0337678BE55734940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590634632999979, 50.900016842000099 ], [ -119.59346340899999, 50.900178894000113 ], [ -119.593176902999915, 50.90217149100009 ], [ -119.593024485999962, 50.902200204000088 ], [ -119.591348382999925, 50.90224579300012 ], [ -119.589796805999939, 50.902113779000082 ], [ -119.589390904999931, 50.902079247000138 ], [ -119.589093340000019, 50.902053927000075 ], [ -119.589004815999957, 50.90204639100007 ], [ -119.58812388599992, 50.901814192000089 ], [ -119.58757495899998, 50.901384978000067 ], [ -119.58779526699999, 50.899854109000074 ], [ -119.590634632999979, 50.900016842000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.4", "sL_BldgLoss": "31.4", "sL_StrLoss": "31.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E438C7EB87D45DC011FB677A476A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.319897322999921, 50.827042566000031 ], [ -119.320081844999891, 50.827020223000012 ], [ -119.320141538999934, 50.827203984000064 ], [ -119.320182019999947, 50.827328502000043 ], [ -119.320399370999951, 50.827997292000084 ], [ -119.321687100999895, 50.830261969000034 ], [ -119.322149218999925, 50.831083499000094 ], [ -119.322616734999968, 50.831918175000069 ], [ -119.32287609399998, 50.832381185000017 ], [ -119.319917656999934, 50.832204223000119 ], [ -119.319916364999983, 50.831930639000106 ], [ -119.319910424999975, 50.830680818000133 ], [ -119.319909460999952, 50.830472066000013 ], [ -119.319907449999988, 50.830044311000066 ], [ -119.319905735999953, 50.82968285400004 ], [ -119.319903070999942, 50.829127188000058 ], [ -119.319901322999982, 50.828750542000094 ], [ -119.319847012999958, 50.82854371700008 ], [ -119.319799538999973, 50.828362853000023 ], [ -119.319666379999916, 50.828193774000049 ], [ -119.319582379999986, 50.828087102000055 ], [ -119.319328324999915, 50.827764499000068 ], [ -119.319253965999962, 50.827594067000057 ], [ -119.319254692999948, 50.827446171000148 ], [ -119.319335048999932, 50.827300297000072 ], [ -119.31939370799995, 50.82724751700006 ], [ -119.319577453999941, 50.827082072000096 ], [ -119.319897322999921, 50.827042566000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6813084", "BldgCostT": "3938334", "sL_LossRatio": "1", "sL_AssetLoss": "575", "sL_BldgLoss": "575", "sL_StrLoss": "575", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D0F003E3E2D75DC049E4EDCEFB6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.370519168, 50.849968286000042 ], [ -119.370662978999945, 50.849000716000063 ], [ -119.376323074999917, 50.849336492000056 ], [ -119.376303591999971, 50.849467690000026 ], [ -119.376522778, 50.849480687000039 ], [ -119.37606191399999, 50.852583954000082 ], [ -119.375991606, 50.85305734000012 ], [ -119.37572906299998, 50.853041773000029 ], [ -119.375604835999923, 50.853878147000067 ], [ -119.369944169999926, 50.853542337000093 ], [ -119.370086691999958, 50.852583618000068 ], [ -119.370475832999972, 50.849965714000056 ], [ -119.370519168, 50.849968286000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12277417", "BldgCostT": "7731667", "sL_LossRatio": "1", "sL_AssetLoss": "1052.1", "sL_BldgLoss": "1052.1", "sL_StrLoss": "1052.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000092D2D1B04DA5DC01FBA4505F36E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.402760346999912, 50.86961151400002 ], [ -119.402784666999963, 50.869447156000071 ], [ -119.401208008999973, 50.869354072000114 ], [ -119.401223643999941, 50.869248435000074 ], [ -119.399374255999987, 50.869139221000118 ], [ -119.399903749999964, 50.865562523000101 ], [ -119.400950621999954, 50.865624349 ], [ -119.401112356999988, 50.864531548000052 ], [ -119.401585642999976, 50.864559496000048 ], [ -119.40161604499994, 50.864354060000032 ], [ -119.40230825699993, 50.864394932000039 ], [ -119.402322218000023, 50.864300576000169 ], [ -119.402626380999919, 50.864318535000081 ], [ -119.402681622999964, 50.863945184000016 ], [ -119.40834385, 50.86427933500012 ], [ -119.408312249999938, 50.86449309300005 ], [ -119.408334711999913, 50.864494417000031 ], [ -119.408384561999966, 50.864157215000034 ], [ -119.414046857999935, 50.864491078000064 ], [ -119.413518507999967, 50.868067847000148 ], [ -119.412519304999989, 50.868008954000047 ], [ -119.412424592999912, 50.868649971000075 ], [ -119.408859233999948, 50.868439751000089 ], [ -119.408848929, 50.868509454000055 ], [ -119.408637473999931, 50.868496982000096 ], [ -119.408423291999938, 50.869945660000035 ], [ -119.402760346999912, 50.86961151400002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22644167", "BldgCostT": "13141667", "sL_LossRatio": "0.999026406958776", "sL_AssetLoss": "1283.904", "sL_BldgLoss": "1282.654", "sL_StrLoss": "1282.2", "sL_NStrLoss": "0.454", "sL_ContLoss": "1.25", "geom_point": "0101000020E6100000AF21481034DA5DC01F552C020C704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.398890230999967, 50.879044377000092 ], [ -119.399274453999936, 50.876449833000024 ], [ -119.399571193999961, 50.876467357000067 ], [ -119.399590045999972, 50.876340041000084 ], [ -119.404153953999966, 50.876609448000139 ], [ -119.404314585999913, 50.875523846000128 ], [ -119.404944991999983, 50.875561045000076 ], [ -119.40494695699999, 50.875547761000107 ], [ -119.40513859, 50.875559068 ], [ -119.405179362999917, 50.875283465000059 ], [ -119.407148724999928, 50.875399644000069 ], [ -119.407361105999925, 50.873963604000075 ], [ -119.407677452, 50.871824415000034 ], [ -119.409904816999969, 50.871955772000035 ], [ -119.409919450999965, 50.871856767000061 ], [ -119.411776820999961, 50.871966269000062 ], [ -119.411884501999964, 50.871237611000019 ], [ -119.412737719999882, 50.871287902000049 ], [ -119.412739962, 50.871272730000044 ], [ -119.414340113, 50.871367030000059 ], [ -119.414375396999986, 50.87112816700008 ], [ -119.41544049799991, 50.87119092300005 ], [ -119.415520375999975, 50.870650093000066 ], [ -119.417626463999937, 50.870774152000088 ], [ -119.417776027999935, 50.869761141000041 ], [ -119.420624423999953, 50.869928864000038 ], [ -119.420571603999974, 50.869982100000044 ], [ -119.420512810999981, 50.870100393000016 ], [ -119.420504610999956, 50.870465205000116 ], [ -119.420641887, 50.870890012000068 ], [ -119.420654010999954, 50.871069295000027 ], [ -119.420616406999898, 50.871159108000079 ], [ -119.420329497999958, 50.871381197000119 ], [ -119.419799612999924, 50.871584499000043 ], [ -119.419397190999945, 50.871650093000028 ], [ -119.418602198, 50.871859393000136 ], [ -119.418168208999958, 50.872187506000081 ], [ -119.41770451299999, 50.872426183000108 ], [ -119.416876507, 50.872723787 ], [ -119.416549710999945, 50.872809205000067 ], [ -119.416283519, 50.872842187000067 ], [ -119.414268014999934, 50.8729218880001 ], [ -119.413803816999945, 50.872999202000038 ], [ -119.413422275999963, 50.873116491000097 ], [ -119.412923391999968, 50.873351414000098 ], [ -119.41263108699998, 50.873541597000035 ], [ -119.412277775999954, 50.873680394000054 ], [ -119.411882380999927, 50.873973893000056 ], [ -119.41143558099999, 50.874305504000027 ], [ -119.411092383999943, 50.874462903000065 ], [ -119.411330203999938, 50.874516613000047 ], [ -119.411654987999952, 50.874524001000076 ], [ -119.41174467799999, 50.874526026000041 ], [ -119.411771785999974, 50.874526644000063 ], [ -119.411927984999963, 50.874530212000138 ], [ -119.412208529999958, 50.874484699000057 ], [ -119.412539705999933, 50.874431012000059 ], [ -119.412976205999939, 50.874425089000084 ], [ -119.413476590999935, 50.874517798000106 ], [ -119.415144613999985, 50.875156695000086 ], [ -119.415054417999926, 50.875767296000056 ], [ -119.414653347999959, 50.875743667000101 ], [ -119.414607013999955, 50.87605730500011 ], [ -119.413512838999935, 50.875992835000019 ], [ -119.413501965999927, 50.876066430000066 ], [ -119.41080022099996, 50.875907195000089 ], [ -119.410772722999951, 50.876093221000104 ], [ -119.413197301999944, 50.876236124000101 ], [ -119.412879760999928, 50.878384978000071 ], [ -119.412758223999944, 50.878403501000101 ], [ -119.412372218999934, 50.87848264900007 ], [ -119.411101107999968, 50.878743301000064 ], [ -119.408480514999965, 50.879319399000018 ], [ -119.408201760999987, 50.879359210000047 ], [ -119.40757288899999, 50.879449019000099 ], [ -119.407102575999929, 50.879464249000108 ], [ -119.407030308999964, 50.879466607000097 ], [ -119.406412386999961, 50.879443691000091 ], [ -119.405061499999974, 50.879189898000078 ], [ -119.403718923999989, 50.878919391000103 ], [ -119.403036621999959, 50.878848505000079 ], [ -119.402293325999921, 50.878832624999987 ], [ -119.400584609999953, 50.878938946000112 ], [ -119.400001418999949, 50.878975236000059 ], [ -119.399019852999928, 50.879036310000089 ], [ -119.398890230999967, 50.879044377000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5076667", "BldgCostT": "3291667", "sL_LossRatio": "0.984955752212389", "sL_AssetLoss": "248.6", "sL_BldgLoss": "244.86", "sL_StrLoss": "243.5", "sL_NStrLoss": "1.36", "sL_ContLoss": "3.74", "geom_point": "0101000020E61000005AFB7586EDD85DC066541155956B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.383031450999965, 50.841878320000077 ], [ -119.38344396699992, 50.839096991000055 ], [ -119.382551530999947, 50.839044112000082 ], [ -119.382630334999931, 50.838512823000023 ], [ -119.382549166999965, 50.838508014000126 ], [ -119.38262253000002, 50.838013392000057 ], [ -119.385911284999949, 50.839208515000159 ], [ -119.386708907999903, 50.839430681000046 ], [ -119.387311010999937, 50.839537595000102 ], [ -119.387882201999957, 50.839589234000101 ], [ -119.387919418999957, 50.839592591000084 ], [ -119.388916583999929, 50.839556900000026 ], [ -119.389249706, 50.839504901000062 ], [ -119.391195718999981, 50.839201097000135 ], [ -119.392494994999964, 50.839100299000108 ], [ -119.393762180999914, 50.839149348000049 ], [ -119.393776386999946, 50.839149891000083 ], [ -119.394276524999924, 50.839193995000073 ], [ -119.395130505999973, 50.839334708000131 ], [ -119.39642480599997, 50.839643912000035 ], [ -119.397035830999968, 50.839793163000067 ], [ -119.396746763999957, 50.841746191000048 ], [ -119.396023139999954, 50.841703405000032 ], [ -119.396009135999975, 50.841798007000058 ], [ -119.395513094999956, 50.841768675000083 ], [ -119.395510113999975, 50.84178881900008 ], [ -119.38996384, 50.841460699000024 ], [ -119.38993556199992, 50.841651546000072 ], [ -119.389821178999966, 50.841644777000077 ], [ -119.389775071999978, 50.84195595000007 ], [ -119.388738, 50.841894565000096 ], [ -119.388690738000022, 50.842213474000062 ], [ -119.383031450999965, 50.841878320000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4128333", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "475.6", "sL_BldgLoss": "475.6", "sL_StrLoss": "475.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000FCB0B5516D85DC0CEE5A318626B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.373143887999987, 50.84050914900007 ], [ -119.373252684999912, 50.839776708000073 ], [ -119.373135437999949, 50.839769751000077 ], [ -119.373192875999948, 50.839383068000089 ], [ -119.373165667999942, 50.839381453000094 ], [ -119.373341090999958, 50.838200425000096 ], [ -119.372889839999942, 50.838173647000161 ], [ -119.372989229999916, 50.837504528000032 ], [ -119.376242009999942, 50.837244787000046 ], [ -119.37630802399994, 50.837239531000108 ], [ -119.377009490999967, 50.837183501000091 ], [ -119.377587877999986, 50.837180793000094 ], [ -119.378536101999941, 50.837215404000098 ], [ -119.379339895999948, 50.837280214000053 ], [ -119.379749108999974, 50.837338810000098 ], [ -119.379390091999966, 50.839758192000041 ], [ -119.378967910999961, 50.839733163000041 ], [ -119.378802926999967, 50.84084480300006 ], [ -119.373143887999987, 50.84050914900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "84396084", "BldgCostT": "57698334", "sL_LossRatio": "1", "sL_AssetLoss": "548.6", "sL_BldgLoss": "548.6", "sL_StrLoss": "548.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A1904BB94ED45DC0418A4B9F676D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.31182281300002, 50.860067719000057 ], [ -119.311915816999914, 50.859447666000037 ], [ -119.311858257999958, 50.859444220000078 ], [ -119.312130365999948, 50.857629999000046 ], [ -119.310010466999955, 50.857503073000061 ], [ -119.310266586999902, 50.857237397000119 ], [ -119.310658489999938, 50.856994805000049 ], [ -119.31098481399998, 50.856754127000059 ], [ -119.311133710999954, 50.856644292000055 ], [ -119.311399009999931, 50.856389596000099 ], [ -119.311711296999974, 50.856045851000047 ], [ -119.311719892999946, 50.856036401000033 ], [ -119.3124763799999, 50.855203705000093 ], [ -119.312584462999936, 50.855043644000041 ], [ -119.31308762299993, 50.854298491000073 ], [ -119.313254189999952, 50.853825005000026 ], [ -119.313760925999944, 50.852826007000047 ], [ -119.313892333999917, 50.852554040000044 ], [ -119.313948790999945, 50.852437150000092 ], [ -119.314164589999905, 50.851990445000084 ], [ -119.314202355999953, 50.851924837000134 ], [ -119.31425016899999, 50.851841694000051 ], [ -119.314334984999988, 50.851694247000118 ], [ -119.314338495999962, 50.851688070000115 ], [ -119.31485977899996, 50.85078172300009 ], [ -119.315318687999977, 50.849777174000103 ], [ -119.315582342999946, 50.849034463000045 ], [ -119.318895346999952, 50.84923267900006 ], [ -119.318772315999979, 50.85005398300008 ], [ -119.318865904999939, 50.850059581000046 ], [ -119.318330114999952, 50.853635958000041 ], [ -119.318099729, 50.853622177000041 ], [ -119.318080116999909, 50.853753078000111 ], [ -119.318322398999911, 50.853767570000095 ], [ -119.318651108999973, 50.851573532000074 ], [ -119.319454385999961, 50.851621576000078 ], [ -119.319492181999919, 50.851369251000087 ], [ -119.325152191999933, 50.851707610000119 ], [ -119.324616885999959, 50.855284011000045 ], [ -119.324272208999901, 50.855263414000085 ], [ -119.324232582999969, 50.855528119000027 ], [ -119.31867500899989, 50.855195870000045 ], [ -119.318307145999938, 50.857651050000065 ], [ -119.318057158999963, 50.85763609800005 ], [ -119.318023644999982, 50.857859756000039 ], [ -119.317866919999943, 50.857850382000066 ], [ -119.317483865999989, 50.860406463000047 ], [ -119.31182281300002, 50.860067719000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "124578804", "BldgCostT": "82153747", "sL_LossRatio": "0.997910440508297", "sL_AssetLoss": "3292.56", "sL_BldgLoss": "3285.68", "sL_StrLoss": "3283.2", "sL_NStrLoss": "2.48", "sL_ContLoss": "6.88", "geom_point": "0101000020E610000051DB3CC4B5D55DC0ACC03D8D836C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.330255598999898, 50.855714209000048 ], [ -119.330534640999971, 50.85384842800007 ], [ -119.32663339699991, 50.853615440000056 ], [ -119.327168522999955, 50.850039024000097 ], [ -119.327593634, 50.850064419000027 ], [ -119.327694837999928, 50.849387935000031 ], [ -119.32856267899993, 50.849439772000103 ], [ -119.328911514, 50.847107557000122 ], [ -119.329261245999959, 50.847128445000067 ], [ -119.329473045, 50.845712221000078 ], [ -119.329185531999926, 50.845717963000027 ], [ -119.329172102999962, 50.845448404000102 ], [ -119.328746333999959, 50.845456905000091 ], [ -119.32873290699996, 50.845187346000074 ], [ -119.328307138999961, 50.845195846000081 ], [ -119.328286129999981, 50.844773954000111 ], [ -119.323483713999934, 50.844486970000055 ], [ -119.323614712999955, 50.843611748000022 ], [ -119.322335237999965, 50.843535252000052 ], [ -119.32202861699993, 50.845583391000027 ], [ -119.321236655999954, 50.845536036000091 ], [ -119.321164504999928, 50.846017911000047 ], [ -119.318627995999961, 50.845866201000042 ], [ -119.31864290399993, 50.845779446000023 ], [ -119.318628530999916, 50.845446604000067 ], [ -119.318579220999965, 50.845270645000063 ], [ -119.318494575999935, 50.844968596000065 ], [ -119.318294898999937, 50.844529057000045 ], [ -119.318142297999927, 50.844347147000036 ], [ -119.318082964, 50.844276396000083 ], [ -119.317739943999953, 50.844010544000064 ], [ -119.31757712199996, 50.843884366000019 ], [ -119.317169774999968, 50.84356863700004 ], [ -119.317151806, 50.843551044000073 ], [ -119.317001350999988, 50.843403782000088 ], [ -119.316649445999957, 50.843059361000023 ], [ -119.316335058999968, 50.842661673000087 ], [ -119.316252757999948, 50.842372583999989 ], [ -119.316252711999965, 50.842302112000041 ], [ -119.316251799999947, 50.841012853000059 ], [ -119.32049153899996, 50.841266521000087 ], [ -119.320442808999957, 50.841591961000049 ], [ -119.32056415800001, 50.841599220000042 ], [ -119.320521393999968, 50.84188481300005 ], [ -119.322456716999966, 50.842000549000034 ], [ -119.32276329299999, 50.839952400000065 ], [ -119.325497332999973, 50.840115842000046 ], [ -119.325430770999944, 50.838777374000159 ], [ -119.32644048499999, 50.838757237000031 ], [ -119.326905500999942, 50.838747962000127 ], [ -119.327985024999947, 50.838726420000071 ], [ -119.328011862999929, 50.839265539000039 ], [ -119.328437575999914, 50.839257041000089 ], [ -119.328450999, 50.83952660000007 ], [ -119.328876713999989, 50.839518101000039 ], [ -119.32890046599999, 50.839995033000093 ], [ -119.333268205999929, 50.840255865000081 ], [ -119.333252149999907, 50.840363302000071 ], [ -119.333916291999927, 50.840402948000076 ], [ -119.33365676599999, 50.842139674000087 ], [ -119.33563435899994, 50.842257703000023 ], [ -119.335596352999943, 50.84251209399999 ], [ -119.336524549000018, 50.842567479000103 ], [ -119.335993621999947, 50.846121469000096 ], [ -119.336450558999928, 50.84611231700012 ], [ -119.336477020999951, 50.84664180300009 ], [ -119.336490974999919, 50.846920990000058 ], [ -119.336474616999965, 50.846921317000124 ], [ -119.335915347, 50.84693251900012 ], [ -119.335829967999942, 50.847503975000045 ], [ -119.336081807999975, 50.847519 ], [ -119.336062777999942, 50.847646368000021 ], [ -119.336262710999961, 50.847658296000048 ], [ -119.336259745999882, 50.847678138000042 ], [ -119.336788492999972, 50.847709681000012 ], [ -119.336254163999939, 50.851286154000057 ], [ -119.335557476999924, 50.851244590000086 ], [ -119.335532540999935, 50.851411469000041 ], [ -119.335445702999891, 50.851406288000064 ], [ -119.335429343, 50.851515772000013 ], [ -119.334116987999948, 50.851437465000075 ], [ -119.333818129999926, 50.853436924000064 ], [ -119.334917173999912, 50.853502503000044 ], [ -119.335178372999906, 50.851754711000105 ], [ -119.335588525, 50.851779182000058 ], [ -119.335660078999965, 50.851300321000018 ], [ -119.340383018999916, 50.851581995000032 ], [ -119.340615036, 50.850028131000066 ], [ -119.342884594999987, 50.850163415000083 ], [ -119.343047068, 50.850173098000013 ], [ -119.343014837999945, 50.849530059000045 ], [ -119.343012752, 50.849488444000102 ], [ -119.343879663999942, 50.849471027000099 ], [ -119.344290154999953, 50.849462778000088 ], [ -119.344281536999986, 50.849290909000089 ], [ -119.344276636999965, 50.849193222000096 ], [ -119.345979830999966, 50.84915898000002 ], [ -119.345993357999987, 50.849428535000108 ], [ -119.346419156999985, 50.849419970000085 ], [ -119.346432688999968, 50.84968952600007 ], [ -119.347284292999959, 50.849672392000073 ], [ -119.347297828999928, 50.849941947000133 ], [ -119.348149436999904, 50.849924806000068 ], [ -119.348162977999948, 50.85019436200006 ], [ -119.349440394999988, 50.850168639000032 ], [ -119.349446453, 50.850289153000055 ], [ -119.350641782999972, 50.850360315000025 ], [ -119.350788427999959, 50.849376663000086 ], [ -119.350839530999934, 50.849379705000089 ], [ -119.350973570999955, 50.848480565000045 ], [ -119.351595778999979, 50.848517601000069 ], [ -119.351607944999941, 50.848435979000115 ], [ -119.35300662899999, 50.8485192220001 ], [ -119.353316980999963, 50.846436579000063 ], [ -119.352073218999976, 50.846362557000099 ], [ -119.352220175999946, 50.845376508000093 ], [ -119.351575670999964, 50.845338145000028 ], [ -119.35210870599991, 50.841761576000081 ], [ -119.357767746999968, 50.842098292000038 ], [ -119.357672076999989, 50.842740803000019 ], [ -119.358436669999961, 50.84278627400009 ], [ -119.358006625999934, 50.845674547000066 ], [ -119.359130249999922, 50.845741360000098 ], [ -119.358642900999925, 50.849014580000059 ], [ -119.361474501999922, 50.849182902000074 ], [ -119.360968475999968, 50.85258249500005 ], [ -119.36094212899998, 50.852759485000043 ], [ -119.357999400999944, 50.852584556000139 ], [ -119.357874897999963, 50.85342053800008 ], [ -119.357828948999909, 50.853729055000052 ], [ -119.356947914999949, 50.853676667000059 ], [ -119.356784163, 50.85477597600007 ], [ -119.356447970999938, 50.854755983000132 ], [ -119.356439150999961, 50.854815183000078 ], [ -119.354507704999932, 50.854700305000094 ], [ -119.354510739999938, 50.853965567000081 ], [ -119.354511007999946, 50.853901787000055 ], [ -119.354592984999911, 50.853638795000052 ], [ -119.35449343099998, 50.853625090000079 ], [ -119.354499486999927, 50.853620929000016 ], [ -119.354759202999986, 50.853443014000078 ], [ -119.354526895999953, 50.853325401000099 ], [ -119.354524391999959, 50.852805702000126 ], [ -119.354007894999924, 50.852631502000115 ], [ -119.353959328999949, 50.852627144000117 ], [ -119.353800805999924, 50.852612886000045 ], [ -119.353432286999933, 50.852642396000078 ], [ -119.353405900999959, 50.853202789000058 ], [ -119.353312713, 50.853320806000099 ], [ -119.352567901999961, 50.852810207000068 ], [ -119.352324296999925, 50.852700902000066 ], [ -119.352052003, 50.85263149700009 ], [ -119.351763695999921, 50.852595496000085 ], [ -119.351612712999895, 50.852593500000118 ], [ -119.35098529699998, 50.852585193000074 ], [ -119.343765913999945, 50.852583701000114 ], [ -119.343464915999959, 50.852629801000077 ], [ -119.343223011999925, 50.852719986000153 ], [ -119.34318807799994, 50.852748234000053 ], [ -119.343178780999963, 50.852755788000074 ], [ -119.343041188999933, 50.852867096000111 ], [ -119.342953195999954, 50.853054906000104 ], [ -119.342912858999981, 50.853281654000114 ], [ -119.342908911999956, 50.853303905000089 ], [ -119.342913184999986, 50.853722107000053 ], [ -119.342916903999935, 50.854081985000086 ], [ -119.342632409999965, 50.854295103000062 ], [ -119.342354107999967, 50.85433260700006 ], [ -119.341692441999953, 50.854369649000063 ], [ -119.341425520999906, 50.854384609000114 ], [ -119.340921311999978, 50.854490790000078 ], [ -119.340778395999948, 50.854558915000062 ], [ -119.340669607999985, 50.854647093000075 ], [ -119.340326914999977, 50.855057902000027 ], [ -119.340137229, 50.855133209000059 ], [ -119.339581083999974, 50.855243512000115 ], [ -119.339260879, 50.855264987000048 ], [ -119.338943709999981, 50.855256902000129 ], [ -119.338635093999955, 50.855220410000058 ], [ -119.337642697999968, 50.854886101000083 ], [ -119.337054609999939, 50.854837492000058 ], [ -119.336220904999962, 50.854894190000032 ], [ -119.335124394, 50.85479911400008 ], [ -119.335112156999983, 50.854799978000095 ], [ -119.335021388999948, 50.854806470000071 ], [ -119.333139170999985, 50.85494117000006 ], [ -119.333096701999949, 50.854944190000083 ], [ -119.332255306999926, 50.85510960900006 ], [ -119.331257079999943, 50.85540629200009 ], [ -119.331093590999942, 50.85547860500008 ], [ -119.330353709999926, 50.855671708000052 ], [ -119.330255598999898, 50.855714209000048 ] ], [ [ -119.33559901299995, 50.8461293720001 ], [ -119.335708749, 50.846127174000138 ], [ -119.335599254999963, 50.846120640000031 ], [ -119.335598745999945, 50.846124045000082 ], [ -119.33559901299995, 50.8461293720001 ] ], [ [ -119.32592474799999, 50.840141387000088 ], [ -119.325923517999968, 50.840116685000041 ], [ -119.325614514000023, 50.840122846000092 ], [ -119.32592474799999, 50.840141387000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "253.1", "sL_BldgLoss": "253.1", "sL_StrLoss": "253.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C3237D9C61D75DC0214FDC3B346D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.362768599, 50.851200142000074 ], [ -119.368428912999946, 50.851536315000018 ], [ -119.36827321199999, 50.852583451000044 ], [ -119.367897067999962, 50.855112921000114 ], [ -119.363258788999985, 50.854837470000056 ], [ -119.362236304999939, 50.854776723000107 ], [ -119.362266142999886, 50.85457625300014 ], [ -119.362562839999924, 50.85258274800001 ], [ -119.362768599, 50.851200142000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021302", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19312833", "BldgCostT": "12318333", "sL_LossRatio": "0.99806288589173", "sL_AssetLoss": "2204.31", "sL_BldgLoss": "2200.04", "sL_StrLoss": "2198.5", "sL_NStrLoss": "1.54", "sL_ContLoss": "4.27", "geom_point": "0101000020E6100000FF81D505BADA5DC001B8DDF4FC6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.42653401199999, 50.856594895000057 ], [ -119.426783964999956, 50.854899025000101 ], [ -119.425979815999952, 50.854851710000077 ], [ -119.425968497999946, 50.854928491000116 ], [ -119.425619390999898, 50.854907948000168 ], [ -119.425523312999971, 50.855559701000089 ], [ -119.41986206199999, 50.855226413000025 ], [ -119.419876581999929, 50.855128006000037 ], [ -119.419587961000019, 50.855111006000058 ], [ -119.420115672999898, 50.851534155000067 ], [ -119.420298696999964, 50.851544935000049 ], [ -119.420398797999951, 50.850866360000076 ], [ -119.421429303, 50.850927050000102 ], [ -119.421502473999936, 50.850430942000088 ], [ -119.420701365999932, 50.850383762000028 ], [ -119.420636129999949, 50.850826023000138 ], [ -119.416181113999954, 50.850563548000061 ], [ -119.416169721999907, 50.850640726000066 ], [ -119.415614431, 50.85060799700009 ], [ -119.415535225, 50.851144539000131 ], [ -119.41282435899997, 50.850984722000113 ], [ -119.412593076999912, 50.852550703000077 ], [ -119.412264115999946, 50.852531305000134 ], [ -119.412204781999918, 50.852933012000051 ], [ -119.40654396199993, 50.852599050000038 ], [ -119.406678416999952, 50.851689530000066 ], [ -119.406512723999967, 50.851679751000049 ], [ -119.406707376999989, 50.850362986000043 ], [ -119.403165208999951, 50.850153862000106 ], [ -119.403694174999927, 50.846577067000034 ], [ -119.406186301999966, 50.846724212000062 ], [ -119.406254281999935, 50.846264326000032 ], [ -119.40680824899998, 50.846297026000066 ], [ -119.406852469999976, 50.845997842000017 ], [ -119.406178407999931, 50.845958052000086 ], [ -119.40626822900002, 50.845350390000064 ], [ -119.407417473999942, 50.845413196 ], [ -119.40808126599994, 50.845538097000031 ], [ -119.408834420999938, 50.845831406000094 ], [ -119.408898797999939, 50.845859739000041 ], [ -119.408975809999973, 50.845893603000093 ], [ -119.41090234, 50.846740860000111 ], [ -119.411624879999948, 50.84705859100012 ], [ -119.412335496999958, 50.847349499000096 ], [ -119.413092116999977, 50.847629504000068 ], [ -119.413421149999962, 50.847741952000064 ], [ -119.4167921909999, 50.848894006000073 ], [ -119.417321601999944, 50.849010891000084 ], [ -119.417988169999944, 50.849105399000052 ], [ -119.418178671999982, 50.849132390000072 ], [ -119.41986907899998, 50.84937200100007 ], [ -119.420254405999927, 50.849449695 ], [ -119.420410057999931, 50.84949870800007 ], [ -119.42067048399997, 50.849580690000039 ], [ -119.421483922999954, 50.849892004000075 ], [ -119.4216282899999, 50.849956569000071 ], [ -119.421579253999951, 50.850289045000039 ], [ -119.422491886, 50.850342785000166 ], [ -119.422623993999963, 50.850401865000052 ], [ -119.42302392000002, 50.85058069200003 ], [ -119.423827741999943, 50.850913761000072 ], [ -119.427685391999944, 50.852511910000096 ], [ -119.429757180999957, 50.85346809599999 ], [ -119.431176178999962, 50.853961997000035 ], [ -119.431470087999983, 50.854039746000112 ], [ -119.432052782999961, 50.854193892000119 ], [ -119.43303401899999, 50.854413912000055 ], [ -119.434160791999929, 50.854633492000062 ], [ -119.43481680099994, 50.854735182000063 ], [ -119.435276103999968, 50.854737804000045 ], [ -119.435304632999973, 50.856299394000089 ], [ -119.435315093999947, 50.856871328000111 ], [ -119.432230504999964, 50.856690046000097 ], [ -119.432195484999937, 50.856927845000016 ], [ -119.42653401199999, 50.856594895000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117482416", "BldgCostT": "78601666", "sL_LossRatio": "0.996154933340561", "sL_AssetLoss": "2582.53", "sL_BldgLoss": "2572.6", "sL_StrLoss": "2569", "sL_NStrLoss": "3.6", "sL_ContLoss": "9.93", "geom_point": "0101000020E610000084FD1A2003D85DC0B5BB28F6A76E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.389512202999953, 50.875681785000026 ], [ -119.389144309999963, 50.875398448000155 ], [ -119.388872290000023, 50.875595247000071 ], [ -119.388877604999962, 50.875771444000073 ], [ -119.388984133999884, 50.875871544000134 ], [ -119.389662763999965, 50.876178668000065 ], [ -119.389871183999929, 50.87636239400009 ], [ -119.389715787999975, 50.876446975000071 ], [ -119.389444898999926, 50.876453474000066 ], [ -119.388433775999886, 50.875970707000079 ], [ -119.388250411999977, 50.875810992000034 ], [ -119.388083211999984, 50.875349197000034 ], [ -119.387909497999928, 50.875153108000056 ], [ -119.38649738399999, 50.874119805000099 ], [ -119.386189610999978, 50.873960899000032 ], [ -119.385925488999973, 50.873883009000082 ], [ -119.385371175999936, 50.873845704000068 ], [ -119.385072279999989, 50.873790109 ], [ -119.384822090999975, 50.873695897000061 ], [ -119.384495494999925, 50.873509703000096 ], [ -119.384115908999945, 50.87322838700004 ], [ -119.383986777999894, 50.87304929700008 ], [ -119.383951094999986, 50.872828005000081 ], [ -119.384011691999916, 50.872641303000123 ], [ -119.384446010999966, 50.872072605000056 ], [ -119.384533186999946, 50.871773796000063 ], [ -119.38453307499999, 50.871705240000082 ], [ -119.384532599999901, 50.871459903000108 ], [ -119.384455207, 50.871211690000116 ], [ -119.384325313999938, 50.871028097000099 ], [ -119.384148397999923, 50.870873398000043 ], [ -119.38390241599997, 50.870750503000103 ], [ -119.383618988999899, 50.870639091000065 ], [ -119.382846534999914, 50.870426466000062 ], [ -119.382672755, 50.870346673000064 ], [ -119.382567433999924, 50.870247563000177 ], [ -119.381614836999987, 50.87045999 ], [ -119.381243340999916, 50.870480292000096 ], [ -119.380916117999959, 50.870442881000031 ], [ -119.380336977999917, 50.87030310300009 ], [ -119.380086309999982, 50.870221505000124 ], [ -119.379336719999927, 50.869902891000017 ], [ -119.378990706999986, 50.869800298000023 ], [ -119.378534908999939, 50.869724597000101 ], [ -119.378278893999891, 50.86973035000004 ], [ -119.377983206999929, 50.869737009000062 ], [ -119.377667382999974, 50.869776896000083 ], [ -119.377469314999971, 50.869850908000117 ], [ -119.377318306999967, 50.869963694000077 ], [ -119.377237810999958, 50.870121306000016 ], [ -119.37717838599994, 50.870780689000156 ], [ -119.377109306999941, 50.87095709500008 ], [ -119.37694348, 50.87113120300004 ], [ -119.37654667599999, 50.871350395000036 ], [ -119.376375303999907, 50.871475505 ], [ -119.376245010999952, 50.871631996000104 ], [ -119.375984, 50.872157692000087 ], [ -119.375836384999943, 50.872295999000087 ], [ -119.375610375999955, 50.872365605000056 ], [ -119.375352880999927, 50.872368302000062 ], [ -119.374969502999974, 50.872305004000076 ], [ -119.374642520999913, 50.87219900100007 ], [ -119.374377792999951, 50.872058007000078 ], [ -119.37372688799995, 50.871536787000061 ], [ -119.373652951999958, 50.87150349800006 ], [ -119.373576998999908, 50.871469289000082 ], [ -119.373366416999914, 50.871425213000123 ], [ -119.373132164999944, 50.871415762000034 ], [ -119.371985091999974, 50.871369502000107 ], [ -119.371111693000017, 50.871163410000079 ], [ -119.370735191, 50.871150100000094 ], [ -119.369843804999931, 50.871237996000069 ], [ -119.369631499999954, 50.871224493000085 ], [ -119.369430321999957, 50.871146706000069 ], [ -119.369317404999947, 50.871031693000141 ], [ -119.36894141, 50.870007302000012 ], [ -119.368914495999931, 50.869707996000059 ], [ -119.368815512999959, 50.868913810000031 ], [ -119.368828491999935, 50.868634897000064 ], [ -119.369129899999919, 50.867971793000045 ], [ -119.36924751, 50.86762239100004 ], [ -119.369268993999981, 50.867276400000065 ], [ -119.36922491699994, 50.867122718000125 ], [ -119.369190005999883, 50.867001106000032 ], [ -119.369153273999942, 50.866941544000056 ], [ -119.369025490999903, 50.866734300000076 ], [ -119.368849211999986, 50.866546091000075 ], [ -119.368623809999988, 50.866362290000048 ], [ -119.368295893, 50.866185901000023 ], [ -119.367871421999951, 50.866025404000084 ], [ -119.36741718299993, 50.865929793000056 ], [ -119.366057283999908, 50.865884291000036 ], [ -119.365569759999943, 50.865831459000105 ], [ -119.365286985999987, 50.865800825000044 ], [ -119.365212605999972, 50.865792755000072 ], [ -119.363793176999977, 50.865638901000047 ], [ -119.363350509999947, 50.865543200000104 ], [ -119.363049974999953, 50.86543239600006 ], [ -119.362822412999975, 50.865301623000029 ], [ -119.36250823200001, 50.865088207000085 ], [ -119.362446205999959, 50.865054116000039 ], [ -119.362220168999954, 50.86474265600004 ], [ -119.362100001999977, 50.864571414000046 ], [ -119.362033303, 50.864203889000066 ], [ -119.36227109, 50.862770210000086 ], [ -119.362356784999989, 50.862482100000108 ], [ -119.362654497999969, 50.86201719700005 ], [ -119.362713981999917, 50.861694193000055 ], [ -119.362698613999967, 50.861509298000016 ], [ -119.362597695999966, 50.861209213000045 ], [ -119.362319491, 50.860842710000028 ], [ -119.361930219999962, 50.860576363000128 ], [ -119.3619139, 50.860565210000061 ], [ -119.361420305, 50.860360794000016 ], [ -119.360979810999979, 50.860269707000015 ], [ -119.359983567999933, 50.860152738000103 ], [ -119.35941469399998, 50.860085948000091 ], [ -119.358661493999961, 50.859997506000099 ], [ -119.358240103999933, 50.859998598000054 ], [ -119.357870287999916, 50.860037112000057 ], [ -119.357538700999967, 50.860125607000079 ], [ -119.357222990999915, 50.860260212000107 ], [ -119.357019344999927, 50.860385905000015 ], [ -119.35650837599999, 50.860701301000034 ], [ -119.356216592999928, 50.860881401000057 ], [ -119.355938314999946, 50.861148993000015 ], [ -119.35508579299993, 50.862370076000083 ], [ -119.355058745999926, 50.862408785000113 ], [ -119.354998017999904, 50.862495798000083 ], [ -119.35485268799998, 50.862607989000054 ], [ -119.354652276999957, 50.862678194000111 ], [ -119.354474695999926, 50.862672109000087 ], [ -119.354475038999979, 50.862591761000054 ], [ -119.354475482999987, 50.862483645000047 ], [ -119.354481076999917, 50.861129940000104 ], [ -119.35553280799999, 50.861108707000035 ], [ -119.355517095999943, 50.860797044000066 ], [ -119.354482708999981, 50.860735525000081 ], [ -119.354486299999948, 50.859866102000076 ], [ -119.354487660999965, 50.859542350000062 ], [ -119.354487939999927, 50.859475804000105 ], [ -119.354496758, 50.85733872800008 ], [ -119.354496872999945, 50.857314005000042 ], [ -119.354497641999927, 50.857128192000083 ], [ -119.356671035999938, 50.857257451000102 ], [ -119.35626025, 50.860014706000065 ], [ -119.356330242999945, 50.860013292000097 ], [ -119.356316649999954, 50.859743739000095 ], [ -119.36142732699993, 50.85964039400006 ], [ -119.361440947999967, 50.859909944000016 ], [ -119.362292730999968, 50.859892699000099 ], [ -119.362306355999934, 50.860162251000091 ], [ -119.362732248999919, 50.860153625000102 ], [ -119.362745877999956, 50.860423177 ], [ -119.364449458, 50.86038865900013 ], [ -119.36443581899999, 50.86011910800012 ], [ -119.366139384999911, 50.860084565000129 ], [ -119.366289537999975, 50.863049628000041 ], [ -119.365863619, 50.863058267000035 ], [ -119.365890917999977, 50.863597369000047 ], [ -119.368020530999928, 50.863554158000042 ], [ -119.368034191999982, 50.863823710000091 ], [ -119.369647803999953, 50.863790943000055 ], [ -119.3699924699999, 50.861473013000051 ], [ -119.366827021999924, 50.861285137000067 ], [ -119.366899821999965, 50.860795743000068 ], [ -119.366628448999933, 50.860779633000085 ], [ -119.366839102999975, 50.859363536000089 ], [ -119.365058198999961, 50.859257791000118 ], [ -119.365590318999963, 50.855681216000065 ], [ -119.366537667, 50.855737469000111 ], [ -119.371251221999927, 50.856017244000071 ], [ -119.37104072399994, 50.857433354000065 ], [ -119.371763941999944, 50.857476263000095 ], [ -119.372258913999971, 50.854145864000031 ], [ -119.377919672999965, 50.854481558000032 ], [ -119.377445015, 50.857678002000085 ], [ -119.378722174999936, 50.857753699000043 ], [ -119.37933345299993, 50.857789924000059 ], [ -119.379231744999942, 50.858474978000125 ], [ -119.379246101000021, 50.858475828000074 ], [ -119.378978713999956, 50.860276720000108 ], [ -119.378715039999918, 50.862052458000079 ], [ -119.378489179999988, 50.862039074000066 ], [ -119.377071618999935, 50.861955060000085 ], [ -119.376895421999933, 50.86314129700002 ], [ -119.376761217999928, 50.863133342000019 ], [ -119.376674846, 50.863714800000061 ], [ -119.375382354999914, 50.86363818100007 ], [ -119.375355699999915, 50.863817583000106 ], [ -119.37520054699999, 50.864861832000038 ], [ -119.370631293999949, 50.864590844000119 ], [ -119.37064444399999, 50.864850006000111 ], [ -119.371070376999938, 50.864841349000081 ], [ -119.371097737999918, 50.865380450000032 ], [ -119.376208974999926, 50.865276448000081 ], [ -119.376222684999959, 50.865545997000048 ], [ -119.37707456, 50.865528641000012 ], [ -119.377088274999934, 50.865798190000064 ], [ -119.377514213999973, 50.865789511000095 ], [ -119.377500495999982, 50.865519961000096 ], [ -119.377711788999989, 50.865515654000099 ], [ -119.377762450999938, 50.865174556000042 ], [ -119.377910192999963, 50.864179817000043 ], [ -119.383418078, 50.864506091000081 ], [ -119.383408590999949, 50.864320087000088 ], [ -119.38383451499999, 50.864311384000096 ], [ -119.383820760999967, 50.864041836000041 ], [ -119.386802206999917, 50.863980872000049 ], [ -119.38681597799993, 50.864250420000118 ], [ -119.3872419, 50.864241704000086 ], [ -119.387255673999931, 50.864511251000053 ], [ -119.387681597999972, 50.864502534000103 ], [ -119.387695374, 50.864772080000094 ], [ -119.387815042999975, 50.864769631000151 ], [ -119.388121299999952, 50.864763362000055 ], [ -119.388135078999952, 50.865032909 ], [ -119.388561008999915, 50.865024189000096 ], [ -119.388574788999961, 50.86529373500013 ], [ -119.38900072, 50.86528501300009 ], [ -119.389042073, 50.866093652000096 ], [ -119.388627284999984, 50.866102146000088 ], [ -119.388190194999979, 50.866111096000125 ], [ -119.388203973999936, 50.866380642000095 ], [ -119.388629914999967, 50.866371922000056 ], [ -119.388643697999981, 50.866641469000029 ], [ -119.389010145999933, 50.866633965000055 ], [ -119.389495584999977, 50.866624022000039 ], [ -119.389550734999887, 50.867702207000072 ], [ -119.389124780999964, 50.867710932000051 ], [ -119.389193710999933, 50.86905866200005 ], [ -119.388767743999921, 50.869067386000083 ], [ -119.38878153, 50.869336932000088 ], [ -119.388355560999941, 50.869345654000035 ], [ -119.38845203799994, 50.871232479000049 ], [ -119.388026051999972, 50.871241200000014 ], [ -119.38810874099994, 50.872858478000111 ], [ -119.388534741999976, 50.872849757000047 ], [ -119.388537954999933, 50.872912581000044 ], [ -119.388683559999919, 50.872921194000071 ], [ -119.388610986999964, 50.873410531000047 ], [ -119.39037304, 50.873514749000016 ], [ -119.390342259999969, 50.873722335000096 ], [ -119.391569716, 50.873794916000065 ], [ -119.39150349599997, 50.874241605000059 ], [ -119.391430300999971, 50.874735336000057 ], [ -119.391749577000027, 50.874754214000113 ], [ -119.391603256999971, 50.875741212000072 ], [ -119.392152832999955, 50.875773704000075 ], [ -119.391900621999966, 50.877475017000044 ], [ -119.391624137999955, 50.877303982000107 ], [ -119.389854009999937, 50.875944372000099 ], [ -119.389843437999929, 50.87593623900004 ], [ -119.389512202999953, 50.875681785000026 ] ], [ [ -119.387132752999918, 50.870449997000101 ], [ -119.387118977999961, 50.870180449000138 ], [ -119.386693001999944, 50.87018916600006 ], [ -119.38667922799999, 50.869919619000122 ], [ -119.386253254999971, 50.869928333000054 ], [ -119.386248451999947, 50.869834303000111 ], [ -119.38619429299996, 50.870199368000037 ], [ -119.38626702599997, 50.870197880000077 ], [ -119.386322107999973, 50.871276067000068 ], [ -119.386748093999984, 50.871267352000103 ], [ -119.38670677499999, 50.87045871200008 ], [ -119.387132752999918, 50.870449997000101 ] ], [ [ -119.375227786999972, 50.868101241000019 ], [ -119.375324096000014, 50.867453096000133 ], [ -119.37423393, 50.867475287000055 ], [ -119.374193707999964, 50.86774593300008 ], [ -119.374202581999967, 50.867745753000108 ], [ -119.374216281999949, 50.868015302000053 ], [ -119.375068202999969, 50.867997961000135 ], [ -119.375072986999967, 50.868092064000052 ], [ -119.375227786999972, 50.868101241000019 ] ], [ [ -119.383457871999909, 50.865286080000089 ], [ -119.383063765999978, 50.867941663000089 ], [ -119.384022660999946, 50.86799843500004 ], [ -119.383985814000013, 50.867276407000126 ], [ -119.383559861999942, 50.867285111000051 ], [ -119.383457871999909, 50.865286080000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.2", "sL_BldgLoss": "36.2", "sL_StrLoss": "36.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB841DCE95D65DC0AC8AB2AFA36A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.350742626999988, 50.833682883000044 ], [ -119.350734894999931, 50.833529012000035 ], [ -119.350662456999885, 50.833524698000147 ], [ -119.350743511999966, 50.83347559700011 ], [ -119.350886501, 50.833348788000116 ], [ -119.350957512999926, 50.833188898000024 ], [ -119.350987297999922, 50.832826187000087 ], [ -119.350970647999972, 50.832578147000078 ], [ -119.350952690000014, 50.832310899000085 ], [ -119.351191828999958, 50.832066202000064 ], [ -119.351600509999926, 50.832081495000068 ], [ -119.35190908, 50.832213496000037 ], [ -119.352122222999967, 50.83244221900005 ], [ -119.352237599999981, 50.832566010000086 ], [ -119.352467102999967, 50.832711308000121 ], [ -119.35263158699999, 50.83277528400005 ], [ -119.352865014, 50.832808104000073 ], [ -119.352923399999924, 50.832804435000099 ], [ -119.353631924999917, 50.832760049000065 ], [ -119.353692433999939, 50.832756270000118 ], [ -119.353795588999944, 50.832749803000063 ], [ -119.353863393999958, 50.832750670000095 ], [ -119.354470711999966, 50.832758391000105 ], [ -119.354835689999959, 50.832808107000112 ], [ -119.355324514999936, 50.832918403000107 ], [ -119.355383114999938, 50.832956742000114 ], [ -119.355257793999954, 50.833798258000051 ], [ -119.352016989, 50.833605353000053 ], [ -119.352019593999955, 50.833657137000031 ], [ -119.350742626999988, 50.833682883000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021307", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5061062", "BldgCostT": "3078191", "sL_LossRatio": "1", "sL_AssetLoss": "148.4", "sL_BldgLoss": "148.4", "sL_StrLoss": "148.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007813B67EBED35DC03797F28C436E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.309861977999915, 50.857657101000022 ], [ -119.311166415999978, 50.857735209000118 ], [ -119.310629917999933, 50.861311517000075 ], [ -119.310535382999916, 50.861305857000097 ], [ -119.310116853999901, 50.86409532199999 ], [ -119.30907373099997, 50.864032862000066 ], [ -119.309065208999954, 50.86408964700005 ], [ -119.307450773999918, 50.863992958000026 ], [ -119.307429439999936, 50.864135084000033 ], [ -119.304179400999928, 50.863940367000033 ], [ -119.305139412999964, 50.862760596 ], [ -119.305437503999912, 50.862440188000079 ], [ -119.30567441399991, 50.862260406000061 ], [ -119.305935416999944, 50.862110101000106 ], [ -119.306936397999905, 50.861701884000134 ], [ -119.307293477999963, 50.861482390000042 ], [ -119.307447310999947, 50.861294894000039 ], [ -119.307530296999985, 50.860979695000026 ], [ -119.307497085999969, 50.860773562000084 ], [ -119.307448034999965, 50.860468905000133 ], [ -119.307415694, 50.860268296000044 ], [ -119.307470713999948, 50.859740198000054 ], [ -119.307657685999956, 50.859340901000074 ], [ -119.308222824, 50.858811005000121 ], [ -119.308418059999923, 50.858644834000131 ], [ -119.308566529999936, 50.858518505000106 ], [ -119.308768346999912, 50.858379195000069 ], [ -119.308885093999919, 50.858298604000048 ], [ -119.308954179999944, 50.858258661000029 ], [ -119.309582397999947, 50.857895606000092 ], [ -119.309818491999977, 50.857702208000049 ], [ -119.309861977999915, 50.857657101000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5076666", "BldgCostT": "3291666", "sL_LossRatio": "0.980982567353407", "sL_AssetLoss": "271.33", "sL_BldgLoss": "266.17", "sL_StrLoss": "264.3", "sL_NStrLoss": "1.87", "sL_ContLoss": "5.16", "geom_point": "0101000020E61000001E7D7A0961D45DC0569800F4626E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.313385595999975, 50.867137998000118 ], [ -119.313530395999948, 50.86617254800008 ], [ -119.31353644299999, 50.866172910000024 ], [ -119.313629526999961, 50.865552249000075 ], [ -119.31418655600001, 50.865585580000079 ], [ -119.314210808000013, 50.865423862000057 ], [ -119.31530738399999, 50.865489470000078 ], [ -119.315344369999977, 50.865242787000064 ], [ -119.315621191999981, 50.865259348000059 ], [ -119.31614713399992, 50.861751098000092 ], [ -119.316916619999972, 50.861797127000045 ], [ -119.316969515999972, 50.861444216000095 ], [ -119.31736057799999, 50.861467606000097 ], [ -119.317706514999912, 50.859159328000032 ], [ -119.317841892999951, 50.859167425000109 ], [ -119.317967051, 50.858332231000119 ], [ -119.31882617699992, 50.858383613000015 ], [ -119.318874325999943, 50.858062252000124 ], [ -119.324535178999966, 50.858400640000092 ], [ -119.324425871999978, 50.859130791000034 ], [ -119.323896667999961, 50.859270598000059 ], [ -119.323074788999946, 50.859685993000056 ], [ -119.323034089, 50.859701333000032 ], [ -119.322564507999971, 50.859878035000101 ], [ -119.322185103999942, 50.860020787000046 ], [ -119.321278310999929, 50.860431106000142 ], [ -119.320847904999965, 50.86055879500006 ], [ -119.320685955999977, 50.860591230000104 ], [ -119.320223684999974, 50.860683792000096 ], [ -119.320023414, 50.860822058000068 ], [ -119.320007084999972, 50.860833310000018 ], [ -119.319908880999961, 50.861012313000039 ], [ -119.3198830799999, 50.861212802000068 ], [ -119.31987287199999, 50.862495073000154 ], [ -119.319861010999929, 50.863981790000125 ], [ -119.319680095999942, 50.8643310100001 ], [ -119.319623673999956, 50.86438768400005 ], [ -119.319403208999987, 50.864609126000055 ], [ -119.319182605999913, 50.864830694000062 ], [ -119.319074883999974, 50.864938903000059 ], [ -119.318944197999883, 50.865116012000044 ], [ -119.318883202999984, 50.865284595000055 ], [ -119.318894309999948, 50.865373543000018 ], [ -119.318901408999963, 50.865430094000082 ], [ -119.318630701999908, 50.865473405000046 ], [ -119.31826591399998, 50.865668095000039 ], [ -119.317498583999949, 50.866356496000044 ], [ -119.317189078999903, 50.867058797000034 ], [ -119.317046579999953, 50.867143343000087 ], [ -119.317013570999976, 50.867162898000089 ], [ -119.315868458999944, 50.867192376000084 ], [ -119.315802089999949, 50.867194093000165 ], [ -119.315252790000031, 50.86723800700004 ], [ -119.314915299999939, 50.867208040000058 ], [ -119.31460553099997, 50.867180556000044 ], [ -119.314315510999947, 50.867154805000084 ], [ -119.313946209999955, 50.867141706000083 ], [ -119.313493610999927, 50.86715979500007 ], [ -119.313385595999975, 50.867137998000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5814333", "BldgCostT": "3513333", "sL_LossRatio": "1", "sL_AssetLoss": "152.7", "sL_BldgLoss": "152.7", "sL_StrLoss": "152.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080FD08AA23D95DC0E8E036A6696F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.391138583999961, 50.86819122800005 ], [ -119.396801260999951, 50.868525961000103 ], [ -119.396271484999929, 50.872102633000075 ], [ -119.394558583, 50.872001410000038 ], [ -119.394465135999937, 50.872632074000059 ], [ -119.388801955999952, 50.872297224000128 ], [ -119.389332332, 50.868720588000023 ], [ -119.391045094999981, 50.868821891000067 ], [ -119.391138583999961, 50.86819122800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "76.8", "sL_BldgLoss": "76.8", "sL_StrLoss": "76.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF79B9BA69D55DC0CE535F8E856A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.332754019, 50.83337544600009 ], [ -119.332788507999936, 50.833144648000051 ], [ -119.332440025999958, 50.833123839000059 ], [ -119.33262375299995, 50.831894334000012 ], [ -119.331700887999887, 50.831839220000099 ], [ -119.331707060999918, 50.831797908000084 ], [ -119.3313370799999, 50.831775810000117 ], [ -119.331407128, 50.831307105000121 ], [ -119.330576486999931, 50.831257490000056 ], [ -119.330649358999977, 50.83076995400009 ], [ -119.331445950999964, 50.830768182000014 ], [ -119.333619272999925, 50.830763297 ], [ -119.334947780999954, 50.830760300000108 ], [ -119.335868315999917, 50.830807127000099 ], [ -119.335843595999975, 50.83104922399999 ], [ -119.336632340999984, 50.832408910000048 ], [ -119.336770547999933, 50.832534383000095 ], [ -119.33691703299999, 50.832604512000103 ], [ -119.337157134999956, 50.83266929600007 ], [ -119.337646669999941, 50.83268806600006 ], [ -119.338559673999953, 50.832723051000045 ], [ -119.338411853999929, 50.833713143000061 ], [ -119.332754019, 50.83337544600009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5214417", "BldgCostT": "3386667", "sL_LossRatio": "0.987682647023306", "sL_AssetLoss": "414.05", "sL_BldgLoss": "408.95", "sL_StrLoss": "407.1", "sL_NStrLoss": "1.85", "sL_ContLoss": "5.1", "geom_point": "0101000020E61000004BD52C86A1D45DC094C70D9E0D6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.320831285999972, 50.835857723000103 ], [ -119.321259056999963, 50.833000150000053 ], [ -119.323018369999915, 50.83310537200007 ], [ -119.322992745999926, 50.832589431000059 ], [ -119.323302740999921, 50.833142815000073 ], [ -119.324365628999914, 50.835040117000055 ], [ -119.324479664999942, 50.834802478000043 ], [ -119.324168354999983, 50.834117191000118 ], [ -119.324204300999952, 50.83392447900011 ], [ -119.324462403999945, 50.833534867000076 ], [ -119.32453090199999, 50.833429793000114 ], [ -119.32467722299999, 50.833204559000102 ], [ -119.326916757, 50.833338428000104 ], [ -119.326856193, 50.833743365000061 ], [ -119.327106478999966, 50.833758323000033 ], [ -119.326571542999957, 50.837334806000079 ], [ -119.326046675999947, 50.837303438000099 ], [ -119.325614518999956, 50.837277608000143 ], [ -119.32367079, 50.837161412000071 ], [ -119.322295492999942, 50.837079176000032 ], [ -119.322183729999963, 50.83782584300009 ], [ -119.321928365999938, 50.839531807000085 ], [ -119.317822785999965, 50.839286213000065 ], [ -119.31769161599999, 50.840161903000073 ], [ -119.317468540999954, 50.840148554000081 ], [ -119.317380135999912, 50.840738709000085 ], [ -119.316251557999948, 50.840671169000096 ], [ -119.316251554999937, 50.840665697000084 ], [ -119.316297508999966, 50.840359029000034 ], [ -119.316387673999941, 50.84006221500001 ], [ -119.316633688999929, 50.839639394000123 ], [ -119.317881512999961, 50.838065809000049 ], [ -119.317897164, 50.838046101000067 ], [ -119.317908680999921, 50.838036280000033 ], [ -119.318149160999951, 50.837831130000097 ], [ -119.318199342999932, 50.837801040000109 ], [ -119.318459623999971, 50.837644942000075 ], [ -119.318952179999911, 50.837405562000107 ], [ -119.319086229999968, 50.83731400300011 ], [ -119.319214522999985, 50.837226400000119 ], [ -119.319311190999926, 50.837123936000111 ], [ -119.319489106999967, 50.836774620000064 ], [ -119.319791821999971, 50.835795542000056 ], [ -119.320831285999972, 50.835857723000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91233803", "BldgCostT": "62128746", "sL_LossRatio": "0.998211601428198", "sL_AssetLoss": "1269.292", "sL_BldgLoss": "1267.022", "sL_StrLoss": "1266.2", "sL_NStrLoss": "0.822", "sL_ContLoss": "2.27", "geom_point": "0101000020E610000094CA0491FFD85DC01748B326D46C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.388014307, 50.848381277000065 ], [ -119.388330665999945, 50.846247015000081 ], [ -119.391759680999925, 50.846449938000056 ], [ -119.39222176199992, 50.843330598000072 ], [ -119.397881301999973, 50.843665286000082 ], [ -119.39784491799999, 50.843911120000108 ], [ -119.398005277999943, 50.843920599000022 ], [ -119.397999114999962, 50.844754001000126 ], [ -119.398042164999978, 50.845147110000021 ], [ -119.398056810999918, 50.845280605000049 ], [ -119.398111686999982, 50.845392106000105 ], [ -119.398430116, 50.845333391000054 ], [ -119.399972185999957, 50.845281096000058 ], [ -119.400006087999898, 50.845281005000075 ], [ -119.400617177999891, 50.845279169000079 ], [ -119.401583122999966, 50.84527628100011 ], [ -119.402543909999977, 50.845273411000036 ], [ -119.40266981399999, 50.845264801000077 ], [ -119.403166771999906, 50.845230798000109 ], [ -119.403578864999957, 50.845230929000124 ], [ -119.403436311999926, 50.846194928000024 ], [ -119.401955853999979, 50.846107484000086 ], [ -119.401713224999952, 50.84774776400009 ], [ -119.400248169999983, 50.847661210000055 ], [ -119.400165284999929, 50.848221397000039 ], [ -119.398442841999952, 50.848119615000051 ], [ -119.397976662999952, 50.851269241000097 ], [ -119.396299591999977, 50.851170113000137 ], [ -119.396095253999974, 50.852550181000076 ], [ -119.393985900999937, 50.852425466000099 ], [ -119.393641874999958, 50.854748033000099 ], [ -119.39243868699999, 50.854676876000028 ], [ -119.392392432999941, 50.85498906100009 ], [ -119.387723415999972, 50.854712812000109 ], [ -119.387558769999913, 50.855823269000048 ], [ -119.387127422999953, 50.855797738000099 ], [ -119.387115553999976, 50.855877779000117 ], [ -119.38401946, 50.855694473000078 ], [ -119.383941534, 50.856219751000026 ], [ -119.378886631999933, 50.85592028700011 ], [ -119.378280510999943, 50.855884363 ], [ -119.378770518999914, 50.852583980000141 ], [ -119.37881153299999, 50.852307710000019 ], [ -119.381838370999944, 50.852487072 ], [ -119.381998745999937, 50.851406281000067 ], [ -119.382358083999947, 50.851427570000055 ], [ -119.382383037999958, 50.851259390000045 ], [ -119.382429950999935, 50.851262168000083 ], [ -119.382502959999925, 50.850770091000108 ], [ -119.384854401999988, 50.85090936600016 ], [ -119.38524218399999, 50.848294649000138 ], [ -119.38575617099994, 50.848325085000077 ], [ -119.385767562999945, 50.848248261000073 ], [ -119.388014307, 50.848381277000065 ] ], [ [ -119.394568404999944, 50.8474596900001 ], [ -119.394624510999947, 50.847080812000073 ], [ -119.394234548999947, 50.84705775 ], [ -119.393922802999953, 50.847039314000071 ], [ -119.39389742799996, 50.847210655000076 ], [ -119.393866692999936, 50.847418192000113 ], [ -119.394568404999944, 50.8474596900001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021313", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6049584", "BldgCostT": "3908334", "sL_LossRatio": "1", "sL_AssetLoss": "580.5", "sL_BldgLoss": "580.5", "sL_StrLoss": "580.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007E6C711148D75DC0341D11BE3D6B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.364165400999937, 50.83996100300007 ], [ -119.364179185999944, 50.839868326000058 ], [ -119.363687191999986, 50.83983908900008 ], [ -119.36378857699999, 50.839157521000068 ], [ -119.363663618999965, 50.839150095 ], [ -119.363641475999927, 50.839298954000071 ], [ -119.357982744999944, 50.838962533000036 ], [ -119.35851519, 50.835385908000092 ], [ -119.358637985999977, 50.835393211000138 ], [ -119.358714912, 50.834876411000025 ], [ -119.359068997999927, 50.834897471000033 ], [ -119.359117590999986, 50.834570993000092 ], [ -119.36187010499998, 50.835441109000065 ], [ -119.362672684999893, 50.835721412000041 ], [ -119.362729562999959, 50.83574127300011 ], [ -119.362990703999969, 50.835832499000041 ], [ -119.363766790999989, 50.83605450400011 ], [ -119.365185713999921, 50.836513202000049 ], [ -119.366054312999935, 50.836718189000102 ], [ -119.366941325999974, 50.836893385000103 ], [ -119.368863079000036, 50.837272893000012 ], [ -119.370249625999946, 50.83743508100013 ], [ -119.369824303999977, 50.840297110000066 ], [ -119.364165400999937, 50.83996100300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12415584", "BldgCostT": "7088334", "sL_LossRatio": "1", "sL_AssetLoss": "185.3", "sL_BldgLoss": "185.3", "sL_StrLoss": "185.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001916C4BC1ED65DC0E7DAA379F86A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.344008604999928, 50.838018549000019 ], [ -119.344125406000032, 50.837235644000089 ], [ -119.34279802099995, 50.837156517000089 ], [ -119.343038188999913, 50.835546930000078 ], [ -119.340299951999953, 50.835383651000072 ], [ -119.340673131999964, 50.832883420000037 ], [ -119.34187772599995, 50.833118676000019 ], [ -119.34228411699992, 50.833235782000067 ], [ -119.342994157999925, 50.833499670000037 ], [ -119.34309942199998, 50.833538780000076 ], [ -119.343955318999988, 50.833684575000092 ], [ -119.344623297999973, 50.833769489000055 ], [ -119.345187605999968, 50.833794070000124 ], [ -119.345412691999982, 50.833748880000044 ], [ -119.345975317999915, 50.833746386000058 ], [ -119.346424497999962, 50.833825388000058 ], [ -119.347077407999947, 50.833992392000013 ], [ -119.347957405999963, 50.834120587000022 ], [ -119.348279104999946, 50.834135273000072 ], [ -119.348648194999939, 50.834081480000087 ], [ -119.348976734999937, 50.834003408000036 ], [ -119.348872890999971, 50.834700032000086 ], [ -119.35020021299999, 50.834779087000115 ], [ -119.349667110999945, 50.838355676000084 ], [ -119.344008604999928, 50.838018549000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8303500", "BldgCostT": "5230000", "sL_LossRatio": "0.991044686713789", "sL_AssetLoss": "333.88", "sL_BldgLoss": "330.89", "sL_StrLoss": "329.8", "sL_NStrLoss": "1.09", "sL_ContLoss": "2.99", "geom_point": "0101000020E61000008DF1063D80DA5DC0998786A41A6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.41405690699996, 50.863094139000069 ], [ -119.414112562999961, 50.862717320000108 ], [ -119.412410580999932, 50.862616994000049 ], [ -119.412443504999942, 50.862394140000049 ], [ -119.411604470999976, 50.862344672000049 ], [ -119.411681816999973, 50.861821179000032 ], [ -119.411142192999989, 50.861789361000049 ], [ -119.411316004999946, 50.860613020000116 ], [ -119.407839567999943, 50.860407971000043 ], [ -119.408368280999952, 50.856831197000126 ], [ -119.41402965099995, 50.857165065000068 ], [ -119.413855922999943, 50.858341413000097 ], [ -119.417332225999971, 50.858546276000034 ], [ -119.417254951999951, 50.85906977500008 ], [ -119.417794548999922, 50.859101565000053 ], [ -119.417761652999985, 50.859324421000061 ], [ -119.418600638999933, 50.859373843000121 ], [ -119.418545025999919, 50.859750666000132 ], [ -119.420246911000021, 50.859850898000047 ], [ -119.419719111999939, 50.863427716000054 ], [ -119.41405690699996, 50.863094139000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "290059005", "BldgCostT": "189575819", "sL_LossRatio": "0.999635125798598", "sL_AssetLoss": "12047.988", "sL_BldgLoss": "12043.592", "sL_StrLoss": "12042", "sL_NStrLoss": "1.592", "sL_ContLoss": "4.396", "geom_point": "0101000020E6100000C1D1027291D95DC0A408918800714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.390239888999972, 50.887631104 ], [ -119.389960770999963, 50.886594550000027 ], [ -119.389788497, 50.885954684000083 ], [ -119.389773687999948, 50.885717502000034 ], [ -119.389856001999974, 50.885470685000023 ], [ -119.390157990999967, 50.885100715000078 ], [ -119.390036589999966, 50.885004209000058 ], [ -119.390013598999971, 50.884870289000048 ], [ -119.390039607999896, 50.884280995000033 ], [ -119.390103501999974, 50.883907697 ], [ -119.390259503999985, 50.883578701000062 ], [ -119.390549918, 50.883181002000057 ], [ -119.390073515000012, 50.883166298000042 ], [ -119.389697989999931, 50.883193786000064 ], [ -119.38907010199992, 50.883353296000045 ], [ -119.388916853999916, 50.883409411000073 ], [ -119.387956692999921, 50.883760996000021 ], [ -119.387686516, 50.883800909000065 ], [ -119.386921409999957, 50.883758305000086 ], [ -119.386542298999942, 50.883597881000064 ], [ -119.386347596999926, 50.88343759100011 ], [ -119.386268302999923, 50.883278591000085 ], [ -119.386281892999989, 50.883090889000066 ], [ -119.38656759899996, 50.882647785000117 ], [ -119.386749694999978, 50.882460102000017 ], [ -119.386918106999971, 50.882365492000076 ], [ -119.387348609999933, 50.882197893000047 ], [ -119.388474408999969, 50.881687210000074 ], [ -119.389103298999899, 50.88150159700006 ], [ -119.389341593999973, 50.881484211000021 ], [ -119.389334181999985, 50.881116485000085 ], [ -119.389310788, 50.879958015000049 ], [ -119.389320182999938, 50.879844517000066 ], [ -119.389334210999948, 50.879675200000094 ], [ -119.388762916999937, 50.879597190000048 ], [ -119.388449897999948, 50.87944430800006 ], [ -119.388289593999943, 50.879369914000044 ], [ -119.387862125999931, 50.87924719600008 ], [ -119.387446996999927, 50.879204590000043 ], [ -119.386454298000018, 50.879204498000028 ], [ -119.386125584999931, 50.879157090000028 ], [ -119.385789182999943, 50.879037098000033 ], [ -119.386592298999943, 50.878639905000071 ], [ -119.386927529999966, 50.878441398000106 ], [ -119.387406019999972, 50.877960102000038 ], [ -119.388058097999973, 50.8772518930001 ], [ -119.388210196000031, 50.876534707000097 ], [ -119.388257148999941, 50.876362693000075 ], [ -119.388313393999937, 50.876156601000083 ], [ -119.388433775999886, 50.875970707000079 ], [ -119.389444898999926, 50.876453474000066 ], [ -119.389715787999975, 50.876446975000071 ], [ -119.389871183999929, 50.87636239400009 ], [ -119.389662763999965, 50.876178668000065 ], [ -119.388984133999884, 50.875871544000134 ], [ -119.388877604999962, 50.875771444000073 ], [ -119.388872290000023, 50.875595247000071 ], [ -119.389144309999963, 50.875398448000155 ], [ -119.389512202999953, 50.875681785000026 ], [ -119.389843437999929, 50.87593623900004 ], [ -119.389854009999937, 50.875944372000099 ], [ -119.391624137999955, 50.877303982000107 ], [ -119.391900621999966, 50.877475017000044 ], [ -119.391793676999939, 50.878196394000092 ], [ -119.391806620999887, 50.878449121000074 ], [ -119.391756056999938, 50.878450157000032 ], [ -119.391622597999984, 50.879350324000036 ], [ -119.391575758999963, 50.879347555000074 ], [ -119.391462505999968, 50.880111404000111 ], [ -119.392841655999973, 50.880192928000056 ], [ -119.392896137999969, 50.879825394000115 ], [ -119.397364025999977, 50.88008938300004 ], [ -119.397396938999947, 50.879867198000085 ], [ -119.398756479999946, 50.879947491000038 ], [ -119.398890230999967, 50.879044377000092 ], [ -119.399019852999928, 50.879036310000089 ], [ -119.400001418999949, 50.878975236000059 ], [ -119.400584609999953, 50.878938946000112 ], [ -119.402293325999921, 50.878832624999987 ], [ -119.403036621999959, 50.878848505000079 ], [ -119.403718923999989, 50.878919391000103 ], [ -119.405061499999974, 50.879189898000078 ], [ -119.406412386999961, 50.879443691000091 ], [ -119.407030308999964, 50.879466607000097 ], [ -119.407102575999929, 50.879464249000108 ], [ -119.40757288899999, 50.879449019000099 ], [ -119.408201760999987, 50.879359210000047 ], [ -119.408480514999965, 50.879319399000018 ], [ -119.411101107999968, 50.878743301000064 ], [ -119.412372218999934, 50.87848264900007 ], [ -119.412758223999944, 50.878403501000101 ], [ -119.412879760999928, 50.878384978000071 ], [ -119.412834820999976, 50.878689078000022 ], [ -119.412797622999975, 50.878703409000082 ], [ -119.412716055999951, 50.878758236000088 ], [ -119.412677509999966, 50.878821279000128 ], [ -119.412680966, 50.878874628000098 ], [ -119.41271283899998, 50.878927301000033 ], [ -119.412758788999938, 50.878979702000102 ], [ -119.412785914999958, 50.879020005000015 ], [ -119.41266874499992, 50.879812841000081 ], [ -119.411894514999986, 50.879767215000079 ], [ -119.411828629999931, 50.880212960000065 ], [ -119.410547042999937, 50.88013742100005 ], [ -119.410247423999962, 50.882164003000049 ], [ -119.410537392999942, 50.882181096000068 ], [ -119.410636165999918, 50.881513005000059 ], [ -119.41205514399995, 50.88159663600004 ], [ -119.412201649999986, 50.880605439000107 ], [ -119.414563509999965, 50.880744601000039 ], [ -119.414517610999923, 50.880816704000132 ], [ -119.41452276399994, 50.880896709000126 ], [ -119.414511997999952, 50.88095031600006 ], [ -119.414487080999962, 50.881004217000026 ], [ -119.414476316999966, 50.881057825000013 ], [ -119.414466687999933, 50.881129190000081 ], [ -119.414428699999988, 50.881201132000058 ], [ -119.414404341, 50.881263928000088 ], [ -119.414396978999932, 50.881370872000069 ], [ -119.414402136999954, 50.881450764000121 ], [ -119.4143499799999, 50.881522973000116 ], [ -119.414325622000021, 50.88158571300005 ], [ -119.414280251999983, 50.881764632000078 ], [ -119.41420660199999, 50.881944046000044 ], [ -119.414139733999917, 50.882007595000054 ], [ -119.414073408999926, 50.882080018000082 ], [ -119.414063252999981, 50.882142535000057 ], [ -119.413996406999942, 50.882206050000057 ], [ -119.413901275999962, 50.882270059000049 ], [ -119.413791032999967, 50.882316408000051 ], [ -119.413681734999955, 50.882380629000039 ], [ -119.413601868999976, 50.882462196000056 ], [ -119.413425217999986, 50.882581047000095 ], [ -119.413315472999983, 50.882636339000051 ], [ -119.413234490999926, 50.882700112000073 ], [ -119.413138839999959, 50.882755155000076 ], [ -119.412890030999975, 50.882848298000106 ], [ -119.41273792799997, 50.882904239 ], [ -119.412586344999937, 50.882969088000088 ], [ -119.412463504999948, 50.883042452000055 ], [ -119.412424397999956, 50.883096599000069 ], [ -119.41241532, 50.883176863000138 ], [ -119.41244719499997, 50.883229593000145 ], [ -119.412467147999948, 50.883318149000033 ], [ -119.412530304999962, 50.883414667000146 ], [ -119.412590130999916, 50.883457826000097 ], [ -119.412650463999952, 50.883509870000047 ], [ -119.412712504999931, 50.883588595000091 ], [ -119.412744971999985, 50.883650212000099 ], [ -119.412808706999911, 50.883755592000085 ], [ -119.41285479299998, 50.883807986000114 ], [ -119.412944824999926, 50.883877127000034 ], [ -119.413033744999964, 50.883928474000065 ], [ -119.413151214999971, 50.883979078000017 ], [ -119.413282490999933, 50.884020345000103 ], [ -119.413385658999971, 50.884071284000115 ], [ -119.413364681999951, 50.884187396000073 ], [ -119.412473580999944, 50.884871798000034 ], [ -119.41170819199999, 50.88521729800005 ], [ -119.40839160299997, 50.886227707000074 ], [ -119.408259169999951, 50.886259735000138 ], [ -119.407333608999977, 50.886483616000127 ], [ -119.40649072199993, 50.8866875000001 ], [ -119.405488281999965, 50.886877310000088 ], [ -119.405114890999954, 50.886909411000076 ], [ -119.404659174999921, 50.886909596000081 ], [ -119.403537709999966, 50.886658492000024 ], [ -119.40312909, 50.886629918000111 ], [ -119.40284650299995, 50.886676317000095 ], [ -119.402547786999961, 50.886744414000049 ], [ -119.401999905999972, 50.887009700000114 ], [ -119.401550398000012, 50.887401689000065 ], [ -119.401436013, 50.887489683000084 ], [ -119.400871195999969, 50.887714299000017 ], [ -119.400552894999947, 50.887770389000124 ], [ -119.400317812, 50.88778540200007 ], [ -119.400001601999946, 50.887779684000066 ], [ -119.399569790000015, 50.887771888000039 ], [ -119.3988678199999, 50.887716905000062 ], [ -119.397299112999974, 50.887544006000091 ], [ -119.396491403999931, 50.887527917000028 ], [ -119.395803512999976, 50.88757110100007 ], [ -119.394149483999968, 50.887780099000018 ], [ -119.39408465799994, 50.887784514000067 ], [ -119.393461079999938, 50.887826890000078 ], [ -119.393022507999916, 50.887831268000056 ], [ -119.39183, 50.887843203000081 ], [ -119.391302859999911, 50.88782459800003 ], [ -119.391024149999978, 50.887814760000026 ], [ -119.390880613999968, 50.887809697000115 ], [ -119.390239888999972, 50.887631104 ] ], [ [ -119.410008236999957, 50.883248373000065 ], [ -119.41016400299999, 50.882194883000082 ], [ -119.408924688999917, 50.882121822000016 ], [ -119.408870031999982, 50.882491422000037 ], [ -119.406357427999964, 50.882343254000041 ], [ -119.403612333999931, 50.882181310000071 ], [ -119.403484555999952, 50.883044647000084 ], [ -119.403566822999906, 50.883049502000055 ], [ -119.40339696800001, 50.884197095000069 ], [ -119.405330046999907, 50.884311140000079 ], [ -119.405526405, 50.882984090000036 ], [ -119.406372845999897, 50.883034017000121 ], [ -119.410008236999957, 50.883248373000065 ] ], [ [ -119.40342923, 50.880645633000022 ], [ -119.403479498999971, 50.88030598200001 ], [ -119.403049451999948, 50.880280604000056 ], [ -119.402982048999917, 50.880736004000021 ], [ -119.402922815999887, 50.881136192000085 ], [ -119.402980811999967, 50.88113961400007 ], [ -119.402943462999971, 50.881391955000062 ], [ -119.403315522999932, 50.881413911000038 ], [ -119.40342923, 50.880645633000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253656945", "BldgCostT": "170889623", "sL_LossRatio": "0.999749892109071", "sL_AssetLoss": "15673.236", "sL_BldgLoss": "15669.316", "sL_StrLoss": "15667.9", "sL_NStrLoss": "1.416", "sL_ContLoss": "3.92", "geom_point": "0101000020E61000007C464BB3B3D75DC065352C5F7A6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.382812708999921, 50.876715901000104 ], [ -119.382499406999941, 50.876661310000095 ], [ -119.382193503999986, 50.876701801000081 ], [ -119.382042636999984, 50.87676416300009 ], [ -119.381920291999947, 50.876814775000064 ], [ -119.38179471699999, 50.876866700000036 ], [ -119.381101091999966, 50.87725769900004 ], [ -119.380562533999949, 50.877489201000053 ], [ -119.379934205999945, 50.877680182000098 ], [ -119.379598372999951, 50.87772889300004 ], [ -119.379143179999957, 50.877716394000053 ], [ -119.378467809999975, 50.87765740400009 ], [ -119.378068713999966, 50.877574196000076 ], [ -119.377627213999915, 50.877450707000079 ], [ -119.377146703999969, 50.877271591000088 ], [ -119.37630658399999, 50.876888012000038 ], [ -119.375717867999953, 50.876543792000056 ], [ -119.375418009999976, 50.876331992000139 ], [ -119.375184903, 50.876151393000022 ], [ -119.372487690999975, 50.876442499000063 ], [ -119.372399525999953, 50.87645246700005 ], [ -119.371393811999951, 50.87656609800004 ], [ -119.371150182999955, 50.876619299000019 ], [ -119.370983384999988, 50.8767320910001 ], [ -119.370744891999919, 50.877020104000053 ], [ -119.370053678999966, 50.876788792000035 ], [ -119.36969739499996, 50.8766198020001 ], [ -119.369490981999917, 50.876471306000091 ], [ -119.369360596999925, 50.876320089000046 ], [ -119.369271007999913, 50.87610649300003 ], [ -119.369399894999944, 50.875835395000109 ], [ -119.36954529799999, 50.875722219000103 ], [ -119.36983717699998, 50.875613291000022 ], [ -119.370250320999972, 50.875515093000061 ], [ -119.37098790099999, 50.875405487000087 ], [ -119.370616409999911, 50.874829584000054 ], [ -119.370489515999935, 50.874722894000065 ], [ -119.370155206, 50.874675092000096 ], [ -119.368758287, 50.874656297000087 ], [ -119.368520018999902, 50.87467369400008 ], [ -119.368201607999964, 50.874740495000033 ], [ -119.367959687999985, 50.87482990200003 ], [ -119.367569103999926, 50.875103498000044 ], [ -119.367337411999927, 50.875460401000048 ], [ -119.36495111399995, 50.875476710000036 ], [ -119.364671092999984, 50.875409508000068 ], [ -119.364337500999966, 50.875232804000092 ], [ -119.363905792999958, 50.874908593000107 ], [ -119.363552103999922, 50.874626912000025 ], [ -119.363452305999942, 50.87446309200012 ], [ -119.363432898999974, 50.874209390000075 ], [ -119.363163489999963, 50.874196109000174 ], [ -119.362848402999958, 50.874106106000049 ], [ -119.362644010999958, 50.873982107000131 ], [ -119.36251321099995, 50.873805697000094 ], [ -119.362491807999902, 50.873642091000107 ], [ -119.362591693999974, 50.872923607000082 ], [ -119.362520187999934, 50.872684006000057 ], [ -119.362345395999938, 50.872467013000119 ], [ -119.36187769299994, 50.872126206000075 ], [ -119.361655714999955, 50.872015603000136 ], [ -119.361402297999931, 50.871990702000076 ], [ -119.361185313999968, 50.872028300000068 ], [ -119.361036182999939, 50.871866613000059 ], [ -119.360911383999962, 50.871731315000069 ], [ -119.360779507999979, 50.87158828499999 ], [ -119.358611491999937, 50.86924859500003 ], [ -119.356857447999957, 50.867765193000075 ], [ -119.356651620999969, 50.867593461000091 ], [ -119.356360059999957, 50.867350103000049 ], [ -119.35616698599992, 50.867188947000095 ], [ -119.355983505999944, 50.867035812000083 ], [ -119.3566837199999, 50.867021668000099 ], [ -119.356697318, 50.867291221000087 ], [ -119.357123276999985, 50.867282615000072 ], [ -119.357136877999963, 50.867552168000081 ], [ -119.357425771999928, 50.867546329000028 ], [ -119.35744179999989, 50.867438755000094 ], [ -119.35892431900001, 50.867526869000102 ], [ -119.358934534999946, 50.867458289000112 ], [ -119.363889726999929, 50.867752660000072 ], [ -119.364023545999899, 50.866853605000088 ], [ -119.365634274999962, 50.866949245000065 ], [ -119.365601474999949, 50.866301519000068 ], [ -119.364323630999962, 50.866327424000126 ], [ -119.364337271999943, 50.86659697500005 ], [ -119.362633467999927, 50.866631494000032 ], [ -119.362619834999961, 50.866361942000054 ], [ -119.360916037, 50.866396436000059 ], [ -119.36092965899995, 50.866665988000094 ], [ -119.360503706999936, 50.866674608000082 ], [ -119.360530944999979, 50.867213712000101 ], [ -119.358401153999978, 50.867256788000098 ], [ -119.358373939, 50.866717683000068 ], [ -119.357947985999942, 50.866726293000092 ], [ -119.357866358, 50.86510897800013 ], [ -119.358292295999917, 50.865100369000103 ], [ -119.35822426699994, 50.863752606000055 ], [ -119.35779834099999, 50.863761215000054 ], [ -119.357784738999968, 50.863491662000051 ], [ -119.35648588699999, 50.86351790700013 ], [ -119.356094684999931, 50.866143266000059 ], [ -119.354960718999934, 50.866075840000107 ], [ -119.354376703999904, 50.865399500000088 ], [ -119.354216740999945, 50.86516230000008 ], [ -119.354156810999896, 50.865073402000064 ], [ -119.354145089999989, 50.865032313000036 ], [ -119.354046214999926, 50.86468530200009 ], [ -119.354053612999962, 50.864405205000061 ], [ -119.354134917999957, 50.864150323000025 ], [ -119.354188036999957, 50.863983832000024 ], [ -119.354372491999968, 50.863405698000086 ], [ -119.354474695999926, 50.862672109000087 ], [ -119.354652276999957, 50.862678194000111 ], [ -119.35485268799998, 50.862607989000054 ], [ -119.354998017999904, 50.862495798000083 ], [ -119.355058745999926, 50.862408785000113 ], [ -119.35508579299993, 50.862370076000083 ], [ -119.355938314999946, 50.861148993000015 ], [ -119.356216592999928, 50.860881401000057 ], [ -119.35650837599999, 50.860701301000034 ], [ -119.357019344999927, 50.860385905000015 ], [ -119.357222990999915, 50.860260212000107 ], [ -119.357538700999967, 50.860125607000079 ], [ -119.357870287999916, 50.860037112000057 ], [ -119.358240103999933, 50.859998598000054 ], [ -119.358661493999961, 50.859997506000099 ], [ -119.35941469399998, 50.860085948000091 ], [ -119.359983567999933, 50.860152738000103 ], [ -119.360979810999979, 50.860269707000015 ], [ -119.361420305, 50.860360794000016 ], [ -119.3619139, 50.860565210000061 ], [ -119.361930219999962, 50.860576363000128 ], [ -119.362319491, 50.860842710000028 ], [ -119.362597695999966, 50.861209213000045 ], [ -119.362698613999967, 50.861509298000016 ], [ -119.362713981999917, 50.861694193000055 ], [ -119.362654497999969, 50.86201719700005 ], [ -119.362356784999989, 50.862482100000108 ], [ -119.36227109, 50.862770210000086 ], [ -119.362033303, 50.864203889000066 ], [ -119.362100001999977, 50.864571414000046 ], [ -119.362220168999954, 50.86474265600004 ], [ -119.362446205999959, 50.865054116000039 ], [ -119.36250823200001, 50.865088207000085 ], [ -119.362822412999975, 50.865301623000029 ], [ -119.363049974999953, 50.86543239600006 ], [ -119.363350509999947, 50.865543200000104 ], [ -119.363793176999977, 50.865638901000047 ], [ -119.365212605999972, 50.865792755000072 ], [ -119.365286985999987, 50.865800825000044 ], [ -119.365569759999943, 50.865831459000105 ], [ -119.366057283999908, 50.865884291000036 ], [ -119.36741718299993, 50.865929793000056 ], [ -119.367871421999951, 50.866025404000084 ], [ -119.368295893, 50.866185901000023 ], [ -119.368623809999988, 50.866362290000048 ], [ -119.368849211999986, 50.866546091000075 ], [ -119.369025490999903, 50.866734300000076 ], [ -119.369153273999942, 50.866941544000056 ], [ -119.369190005999883, 50.867001106000032 ], [ -119.36922491699994, 50.867122718000125 ], [ -119.369268993999981, 50.867276400000065 ], [ -119.36924751, 50.86762239100004 ], [ -119.369129899999919, 50.867971793000045 ], [ -119.368828491999935, 50.868634897000064 ], [ -119.368815512999959, 50.868913810000031 ], [ -119.368914495999931, 50.869707996000059 ], [ -119.36894141, 50.870007302000012 ], [ -119.369317404999947, 50.871031693000141 ], [ -119.369430321999957, 50.871146706000069 ], [ -119.369631499999954, 50.871224493000085 ], [ -119.369843804999931, 50.871237996000069 ], [ -119.370735191, 50.871150100000094 ], [ -119.371111693000017, 50.871163410000079 ], [ -119.371985091999974, 50.871369502000107 ], [ -119.373132164999944, 50.871415762000034 ], [ -119.373366416999914, 50.871425213000123 ], [ -119.373576998999908, 50.871469289000082 ], [ -119.373652951999958, 50.87150349800006 ], [ -119.37372688799995, 50.871536787000061 ], [ -119.374377792999951, 50.872058007000078 ], [ -119.374642520999913, 50.87219900100007 ], [ -119.374969502999974, 50.872305004000076 ], [ -119.375352880999927, 50.872368302000062 ], [ -119.375610375999955, 50.872365605000056 ], [ -119.375836384999943, 50.872295999000087 ], [ -119.375984, 50.872157692000087 ], [ -119.376245010999952, 50.871631996000104 ], [ -119.376375303999907, 50.871475505 ], [ -119.37654667599999, 50.871350395000036 ], [ -119.37694348, 50.87113120300004 ], [ -119.377109306999941, 50.87095709500008 ], [ -119.37717838599994, 50.870780689000156 ], [ -119.377237810999958, 50.870121306000016 ], [ -119.377318306999967, 50.869963694000077 ], [ -119.377469314999971, 50.869850908000117 ], [ -119.377667382999974, 50.869776896000083 ], [ -119.377983206999929, 50.869737009000062 ], [ -119.378278893999891, 50.86973035000004 ], [ -119.378534908999939, 50.869724597000101 ], [ -119.378990706999986, 50.869800298000023 ], [ -119.379336719999927, 50.869902891000017 ], [ -119.380086309999982, 50.870221505000124 ], [ -119.380336977999917, 50.87030310300009 ], [ -119.380916117999959, 50.870442881000031 ], [ -119.381243340999916, 50.870480292000096 ], [ -119.381614836999987, 50.87045999 ], [ -119.382567433999924, 50.870247563000177 ], [ -119.382672755, 50.870346673000064 ], [ -119.382846534999914, 50.870426466000062 ], [ -119.383618988999899, 50.870639091000065 ], [ -119.38390241599997, 50.870750503000103 ], [ -119.384148397999923, 50.870873398000043 ], [ -119.384325313999938, 50.871028097000099 ], [ -119.384455207, 50.871211690000116 ], [ -119.384532599999901, 50.871459903000108 ], [ -119.38453307499999, 50.871705240000082 ], [ -119.384533186999946, 50.871773796000063 ], [ -119.384446010999966, 50.872072605000056 ], [ -119.384011691999916, 50.872641303000123 ], [ -119.383951094999986, 50.872828005000081 ], [ -119.383986777999894, 50.87304929700008 ], [ -119.384115908999945, 50.87322838700004 ], [ -119.384495494999925, 50.873509703000096 ], [ -119.384822090999975, 50.873695897000061 ], [ -119.385072279999989, 50.873790109 ], [ -119.385371175999936, 50.873845704000068 ], [ -119.385925488999973, 50.873883009000082 ], [ -119.386189610999978, 50.873960899000032 ], [ -119.38649738399999, 50.874119805000099 ], [ -119.387909497999928, 50.875153108000056 ], [ -119.388083211999984, 50.875349197000034 ], [ -119.388250411999977, 50.875810992000034 ], [ -119.388433775999886, 50.875970707000079 ], [ -119.388313393999937, 50.876156601000083 ], [ -119.388257148999941, 50.876362693000075 ], [ -119.388210196000031, 50.876534707000097 ], [ -119.388058097999973, 50.8772518930001 ], [ -119.387406019999972, 50.877960102000038 ], [ -119.386927529999966, 50.878441398000106 ], [ -119.386592298999943, 50.878639905000071 ], [ -119.385789182999943, 50.879037098000033 ], [ -119.385517701999902, 50.879230303000043 ], [ -119.385186982999969, 50.879610297000099 ], [ -119.385057012999951, 50.87969729400006 ], [ -119.384825008999954, 50.879739498000127 ], [ -119.384499994999956, 50.879696787000078 ], [ -119.384273095999902, 50.879560692000055 ], [ -119.384241902, 50.879337910000046 ], [ -119.384406687999956, 50.878930003000058 ], [ -119.384414506999988, 50.878771707000112 ], [ -119.38431578899997, 50.878454688000076 ], [ -119.383720805999985, 50.877651894000039 ], [ -119.383238415999969, 50.876975695000091 ], [ -119.383142204999942, 50.876882489000117 ], [ -119.382812708999921, 50.876715901000104 ] ], [ [ -119.364541924999955, 50.870640242000022 ], [ -119.36453442499996, 50.870492076000119 ], [ -119.364198360999964, 50.87047212100007 ], [ -119.364172219999929, 50.870647734 ], [ -119.364541924999955, 50.870640242000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "184410083", "BldgCostT": "124448333", "sL_LossRatio": "0.999623402339513", "sL_AssetLoss": "9984.13", "sL_BldgLoss": "9980.37", "sL_StrLoss": "9979", "sL_NStrLoss": "1.37", "sL_ContLoss": "3.76", "geom_point": "0101000020E61000007AFF403575D85DC02F442496D6704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.389597993999971, 50.887364001000016 ], [ -119.388873015999948, 50.887185891000073 ], [ -119.388308181999918, 50.887188598000073 ], [ -119.387879911999974, 50.887215499000042 ], [ -119.387395021999936, 50.887190457000038 ], [ -119.387032077999919, 50.887171691000049 ], [ -119.386317990999899, 50.887102394000095 ], [ -119.38514817699999, 50.887090904000075 ], [ -119.384885208999961, 50.887062694000086 ], [ -119.384629117999964, 50.886998009000102 ], [ -119.384296995999975, 50.88688235100004 ], [ -119.383957988999924, 50.88676429200008 ], [ -119.383183785999961, 50.886551906000058 ], [ -119.382931217999939, 50.886482599000068 ], [ -119.382589512999914, 50.886349600000052 ], [ -119.382170797999933, 50.886136150000034 ], [ -119.381046180999945, 50.885562802000052 ], [ -119.380028998999947, 50.885082296000064 ], [ -119.379590618999913, 50.884859689000031 ], [ -119.379247719999924, 50.884590397000061 ], [ -119.379137497999977, 50.884399899000108 ], [ -119.378909925999963, 50.88338707100008 ], [ -119.37876941199994, 50.882761698000117 ], [ -119.378462169999935, 50.882329493000043 ], [ -119.378048345999915, 50.881967415000133 ], [ -119.37730548299993, 50.881317392000014 ], [ -119.376794682999972, 50.880928210000036 ], [ -119.376529322999971, 50.880759727000111 ], [ -119.375350213, 50.880011129000131 ], [ -119.374966964999956, 50.879767816 ], [ -119.374614915999956, 50.879544301000053 ], [ -119.374181419999957, 50.879366190000034 ], [ -119.373720782999953, 50.879264902000052 ], [ -119.372536675999953, 50.879090998000081 ], [ -119.372697684999935, 50.878613413000053 ], [ -119.372699412999978, 50.878380806000031 ], [ -119.372578602999937, 50.878165299000038 ], [ -119.372336497999953, 50.877939897000026 ], [ -119.372021166999943, 50.877740807000038 ], [ -119.371494309999889, 50.877408072000115 ], [ -119.371272292999919, 50.877267890000013 ], [ -119.370914621999987, 50.87707979800004 ], [ -119.370744891999919, 50.877020104000053 ], [ -119.370983384999988, 50.8767320910001 ], [ -119.371150182999955, 50.876619299000019 ], [ -119.371393811999951, 50.87656609800004 ], [ -119.372399525999953, 50.87645246700005 ], [ -119.372487690999975, 50.876442499000063 ], [ -119.375184903, 50.876151393000022 ], [ -119.375418009999976, 50.876331992000139 ], [ -119.375717867999953, 50.876543792000056 ], [ -119.37630658399999, 50.876888012000038 ], [ -119.377146703999969, 50.877271591000088 ], [ -119.377627213999915, 50.877450707000079 ], [ -119.378068713999966, 50.877574196000076 ], [ -119.378467809999975, 50.87765740400009 ], [ -119.379143179999957, 50.877716394000053 ], [ -119.379598372999951, 50.87772889300004 ], [ -119.379934205999945, 50.877680182000098 ], [ -119.380562533999949, 50.877489201000053 ], [ -119.381101091999966, 50.87725769900004 ], [ -119.38179471699999, 50.876866700000036 ], [ -119.381920291999947, 50.876814775000064 ], [ -119.382042636999984, 50.87676416300009 ], [ -119.382193503999986, 50.876701801000081 ], [ -119.382499406999941, 50.876661310000095 ], [ -119.382812708999921, 50.876715901000104 ], [ -119.383142204999942, 50.876882489000117 ], [ -119.383238415999969, 50.876975695000091 ], [ -119.383720805999985, 50.877651894000039 ], [ -119.38431578899997, 50.878454688000076 ], [ -119.384414506999988, 50.878771707000112 ], [ -119.384406687999956, 50.878930003000058 ], [ -119.384241902, 50.879337910000046 ], [ -119.384273095999902, 50.879560692000055 ], [ -119.384499994999956, 50.879696787000078 ], [ -119.384825008999954, 50.879739498000127 ], [ -119.385057012999951, 50.87969729400006 ], [ -119.385186982999969, 50.879610297000099 ], [ -119.385517701999902, 50.879230303000043 ], [ -119.385789182999943, 50.879037098000033 ], [ -119.386125584999931, 50.879157090000028 ], [ -119.386454298000018, 50.879204498000028 ], [ -119.387446996999927, 50.879204590000043 ], [ -119.387862125999931, 50.87924719600008 ], [ -119.388289593999943, 50.879369914000044 ], [ -119.388449897999948, 50.87944430800006 ], [ -119.388762916999937, 50.879597190000048 ], [ -119.389334210999948, 50.879675200000094 ], [ -119.389320182999938, 50.879844517000066 ], [ -119.389310788, 50.879958015000049 ], [ -119.389334181999985, 50.881116485000085 ], [ -119.389341593999973, 50.881484211000021 ], [ -119.389103298999899, 50.88150159700006 ], [ -119.388474408999969, 50.881687210000074 ], [ -119.387348609999933, 50.882197893000047 ], [ -119.386918106999971, 50.882365492000076 ], [ -119.386749694999978, 50.882460102000017 ], [ -119.38656759899996, 50.882647785000117 ], [ -119.386281892999989, 50.883090889000066 ], [ -119.386268302999923, 50.883278591000085 ], [ -119.386347596999926, 50.88343759100011 ], [ -119.386542298999942, 50.883597881000064 ], [ -119.386921409999957, 50.883758305000086 ], [ -119.387686516, 50.883800909000065 ], [ -119.387956692999921, 50.883760996000021 ], [ -119.388916853999916, 50.883409411000073 ], [ -119.38907010199992, 50.883353296000045 ], [ -119.389697989999931, 50.883193786000064 ], [ -119.390073515000012, 50.883166298000042 ], [ -119.390549918, 50.883181002000057 ], [ -119.390259503999985, 50.883578701000062 ], [ -119.390103501999974, 50.883907697 ], [ -119.390039607999896, 50.884280995000033 ], [ -119.390013598999971, 50.884870289000048 ], [ -119.390036589999966, 50.885004209000058 ], [ -119.390157990999967, 50.885100715000078 ], [ -119.389856001999974, 50.885470685000023 ], [ -119.389773687999948, 50.885717502000034 ], [ -119.389788497, 50.885954684000083 ], [ -119.389960770999963, 50.886594550000027 ], [ -119.390239888999972, 50.887631104 ], [ -119.389597993999971, 50.887364001000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "33.4", "sL_BldgLoss": "33.4", "sL_StrLoss": "33.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F088E9C664D35DC0B2A2E5C4C7764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.301048996999953, 50.927551407000088 ], [ -119.301147949999944, 50.927540051000108 ], [ -119.3012473799999, 50.927537639000079 ], [ -119.301416853999939, 50.927515537000069 ], [ -119.301572626999985, 50.927502772000111 ], [ -119.301657369999973, 50.92749176300007 ], [ -119.301998049999895, 50.927483529000014 ], [ -119.302097858999943, 50.927490115000076 ], [ -119.302197287999931, 50.927487703000125 ], [ -119.302283367000015, 50.927503581000089 ], [ -119.302368984999958, 50.92751053700006 ], [ -119.302455063999957, 50.927526415000081 ], [ -119.302569541999944, 50.927541633000068 ], [ -119.302655639999969, 50.927557534000094 ], [ -119.302755485999967, 50.927564111000031 ], [ -119.302841126999951, 50.927571032000067 ], [ -119.302927203999971, 50.927586909000048 ], [ -119.303013739999983, 50.927611764000076 ], [ -119.303172600999957, 50.927661821000115 ], [ -119.303259539999942, 50.927695642000089 ], [ -119.303360284999954, 50.92772015 ], [ -119.30346145099999, 50.927753649000081 ], [ -119.303547931, 50.927778491000019 ], [ -119.303648622999987, 50.927802986000081 ], [ -119.303748526999968, 50.927809575 ], [ -119.303863005999943, 50.927824792000067 ], [ -119.304118571999965, 50.92781864400007 ], [ -119.304261051999973, 50.927824179000062 ], [ -119.304403036999986, 50.927820745000119 ], [ -119.304544144, 50.927799345000068 ], [ -119.304656396999931, 50.927769624000057 ], [ -119.304782838999955, 50.927739533000057 ], [ -119.304908865999934, 50.92770045300005 ], [ -119.305021114999974, 50.927670733000106 ], [ -119.305147595999955, 50.927640631000031 ], [ -119.305258934999955, 50.927592895000068 ], [ -119.305356959000022, 50.927563497000065 ], [ -119.305609026999988, 50.927485301000026 ], [ -119.305735466, 50.927455266000067 ], [ -119.305818860000016, 50.927417168000019 ], [ -119.30590272799995, 50.927388128000075 ], [ -119.305999862, 50.927340681000025 ], [ -119.306053474999942, 50.927276167000102 ], [ -119.307243199999945, 50.927039587000067 ], [ -119.307749563999963, 50.926975895000055 ], [ -119.307884600999969, 50.926958902000088 ], [ -119.308436516999933, 50.926921504000113 ], [ -119.308987690999956, 50.926936396000038 ], [ -119.310037075999944, 50.927097444 ], [ -119.310133901999933, 50.927112295000057 ], [ -119.311153909999931, 50.927176896000056 ], [ -119.311488187999956, 50.927149777000103 ], [ -119.311449787999948, 50.927405366000073 ], [ -119.310946795999953, 50.927455701000028 ], [ -119.308210200999937, 50.927051187000089 ], [ -119.306572089999975, 50.927344594000019 ], [ -119.304876885999974, 50.927872990000068 ], [ -119.304340109999885, 50.927945595 ], [ -119.303626197999961, 50.927915714000022 ], [ -119.302245906999957, 50.92761800100007 ], [ -119.300854992999987, 50.927690714000029 ], [ -119.300446603999916, 50.927797506000054 ], [ -119.29989339899997, 50.928123595000059 ], [ -119.299116084, 50.92879589800004 ], [ -119.297854288999957, 50.9289013040001 ], [ -119.296135506999974, 50.929223111000091 ], [ -119.294105088999942, 50.929938109000076 ], [ -119.293432213999949, 50.929929854000093 ], [ -119.293444244999975, 50.929850001000091 ], [ -119.293731888999929, 50.929856004000087 ], [ -119.294047598999953, 50.929829808000115 ], [ -119.294332508999958, 50.929771084000087 ], [ -119.295381379, 50.929301689000042 ], [ -119.295948695999954, 50.929105693000075 ], [ -119.296446711, 50.928980410000065 ], [ -119.298774920999932, 50.92861111000007 ], [ -119.298946310999966, 50.928545606000093 ], [ -119.299162492999926, 50.928424369000062 ], [ -119.299240001, 50.928380900000015 ], [ -119.299942124999987, 50.927830740000054 ], [ -119.300037769999904, 50.927801043000088 ], [ -119.300177990999941, 50.92776159900005 ], [ -119.300303545999952, 50.927713524000062 ], [ -119.300414927999924, 50.927665783000059 ], [ -119.300555112000012, 50.927626349000036 ], [ -119.300654047999913, 50.927614970000029 ], [ -119.300738357999947, 50.927594948000063 ], [ -119.300836877999942, 50.927574522000079 ], [ -119.300935813999942, 50.927563143000093 ], [ -119.301048996999953, 50.927551407000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21356456", "BldgCostT": "12837039", "sL_LossRatio": "0.998267654725786", "sL_AssetLoss": "1151.618", "sL_BldgLoss": "1149.623", "sL_StrLoss": "1148.9", "sL_NStrLoss": "0.723", "sL_ContLoss": "1.995", "geom_point": "0101000020E6100000CF93105171C55DC055BCB2874D7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.079536702000013, 50.963372347000131 ], [ -119.07987189899994, 50.96121822700006 ], [ -119.080241618999963, 50.961241077000118 ], [ -119.080293499999968, 50.960907635000119 ], [ -119.085236045999949, 50.961212983000074 ], [ -119.085355501999942, 50.960444650000085 ], [ -119.087825744999975, 50.960597177000096 ], [ -119.087917714999918, 50.960005407000018 ], [ -119.090576947999949, 50.960169542000131 ], [ -119.091947374999933, 50.960254103000125 ], [ -119.092020549, 50.959783 ], [ -119.09659697799998, 50.960065263000097 ], [ -119.097692556999988, 50.960132807000079 ], [ -119.097571632999987, 50.96091197200009 ], [ -119.098417087999962, 50.960964089000107 ], [ -119.09826659099997, 50.961933891000108 ], [ -119.098167116, 50.961981407000081 ], [ -119.096490205999899, 50.962371607000094 ], [ -119.095034321999918, 50.962622306000092 ], [ -119.094080973999937, 50.962329660000073 ], [ -119.093912505999967, 50.96227795000005 ], [ -119.093400900999924, 50.96212090600006 ], [ -119.092122906999933, 50.962162189000097 ], [ -119.091446510999944, 50.962029788000031 ], [ -119.090833503999988, 50.962022701000102 ], [ -119.090066489999941, 50.962082500000129 ], [ -119.089419831999933, 50.962246025000034 ], [ -119.08941735799999, 50.962246652000019 ], [ -119.088996407999929, 50.962353109000055 ], [ -119.088532212999937, 50.962415843000109 ], [ -119.087921519999924, 50.96249839899999 ], [ -119.08760906399999, 50.962477324000076 ], [ -119.087040838999968, 50.96243897600008 ], [ -119.0860214, 50.962370188000108 ], [ -119.084711710999898, 50.962393009000074 ], [ -119.083445218999955, 50.962740504000081 ], [ -119.082784729999929, 50.963264907000067 ], [ -119.082124993999955, 50.963788689000069 ], [ -119.081666611999964, 50.964242134000102 ], [ -119.081631906, 50.964276494000089 ], [ -119.081115701999948, 50.96478710000008 ], [ -119.080943449999978, 50.965056615000037 ], [ -119.080550638999938, 50.965671217000065 ], [ -119.07982500599995, 50.966806603000066 ], [ -119.079167716999933, 50.967422802000044 ], [ -119.079008478999981, 50.967572083000078 ], [ -119.078826894999935, 50.96774229500005 ], [ -119.078810108999946, 50.968290603000085 ], [ -119.078844493999966, 50.968441590000033 ], [ -119.079121237999942, 50.96965629400006 ], [ -119.075350053999955, 50.969423171000081 ], [ -119.075906708999952, 50.965848446000081 ], [ -119.077300907999927, 50.965934647000068 ], [ -119.077717276999934, 50.963259882000074 ], [ -119.079536702000013, 50.963372347000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021323", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9767220", "BldgCostT": "5240413", "sL_LossRatio": "0.994397924283524", "sL_AssetLoss": "118.706", "sL_BldgLoss": "118.041", "sL_StrLoss": "117.8", "sL_NStrLoss": "0.241", "sL_ContLoss": "0.665", "geom_point": "0101000020E61000006140DDDDD6CB5DC075B977C3EC764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.182428846999983, 50.92714008900009 ], [ -119.188097412999937, 50.92748534300005 ], [ -119.187550220999952, 50.931060773000134 ], [ -119.181881204999982, 50.930715493000065 ], [ -119.182428846999983, 50.92714008900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31267130", "BldgCostT": "17621155", "sL_LossRatio": "0.999316199591571", "sL_AssetLoss": "972.506", "sL_BldgLoss": "971.841", "sL_StrLoss": "971.6", "sL_NStrLoss": "0.241", "sL_ContLoss": "0.665", "geom_point": "0101000020E61000004BC68390A0CA5DC0886D62B3E9774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.159951098999954, 50.940905892000039 ], [ -119.158476590999925, 50.940430209000034 ], [ -119.158151514999957, 50.940462990000064 ], [ -119.157732113999941, 50.940623898000112 ], [ -119.157168978999962, 50.940435898000075 ], [ -119.156611156999986, 50.940421658000069 ], [ -119.153623350999951, 50.940345338000029 ], [ -119.153760752999929, 50.939452259000063 ], [ -119.153941458999952, 50.938277664000033 ], [ -119.155983814999928, 50.938402581000034 ], [ -119.156022274999927, 50.938152511000091 ], [ -119.15651071399995, 50.938182380000072 ], [ -119.157529368999988, 50.938244665000077 ], [ -119.157562814999963, 50.938027146000053 ], [ -119.158399058999976, 50.938078272000077 ], [ -119.158489305, 50.937491266000066 ], [ -119.159656840999929, 50.937562634000088 ], [ -119.15989302699991, 50.93602599500008 ], [ -119.16007934, 50.936037383000084 ], [ -119.160116729999942, 50.935794100000066 ], [ -119.161669063999909, 50.935888968000043 ], [ -119.161745280999938, 50.935392936000056 ], [ -119.162190047999943, 50.935420113000092 ], [ -119.162202964999935, 50.935336045000078 ], [ -119.163062903999929, 50.935388587000091 ], [ -119.163118441999984, 50.9350270670001 ], [ -119.163703557999924, 50.935062812000076 ], [ -119.163810749999982, 50.934364980000048 ], [ -119.164890239999963, 50.934430920000118 ], [ -119.164925609999955, 50.934200606000047 ], [ -119.166109782, 50.934272928000041 ], [ -119.166125458999957, 50.934170833000103 ], [ -119.16749269, 50.93425431900009 ], [ -119.167522204999941, 50.93406206500002 ], [ -119.170961125999938, 50.934271979000115 ], [ -119.17099935399996, 50.934022843 ], [ -119.176668703999951, 50.93436867100008 ], [ -119.176666910999984, 50.934380369000017 ], [ -119.177719472999954, 50.934444542000044 ], [ -119.17771659099995, 50.934463338000107 ], [ -119.179400718999915, 50.934565996000075 ], [ -119.179095060999941, 50.936560394 ], [ -119.17906864699998, 50.936732731000085 ], [ -119.178871414999932, 50.936687401000022 ], [ -119.176735389999948, 50.936673213000084 ], [ -119.17583650099999, 50.936905293000088 ], [ -119.17551838899999, 50.937100410000042 ], [ -119.175137386999921, 50.937161697000043 ], [ -119.174592492999977, 50.937073395000013 ], [ -119.17392261899991, 50.936771394000061 ], [ -119.172085694999936, 50.93642680300011 ], [ -119.170077891999981, 50.93644670700013 ], [ -119.168826722999924, 50.936767200000133 ], [ -119.168214523999978, 50.937047705000083 ], [ -119.16634210499997, 50.937208688000112 ], [ -119.165324203999916, 50.937650205000097 ], [ -119.164494991999973, 50.938178602000043 ], [ -119.163791393999929, 50.938397912000042 ], [ -119.16248799399996, 50.939132791000134 ], [ -119.16127448899995, 50.93996450300012 ], [ -119.160817389999963, 50.940531392000089 ], [ -119.1604749, 50.940518500000088 ], [ -119.159951098999954, 50.940905892000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74000751", "BldgCostT": "51530001", "sL_LossRatio": "0.997216943127233", "sL_AssetLoss": "650.364", "sL_BldgLoss": "648.554", "sL_StrLoss": "647.9", "sL_NStrLoss": "0.654", "sL_ContLoss": "1.81", "geom_point": "0101000020E61000001262AA7076C55DC07746DFCDE86F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.084698316999933, 50.874856793000141 ], [ -119.084487218999968, 50.874267196000105 ], [ -119.08319637399994, 50.873399792000015 ], [ -119.082915304999943, 50.873126389000092 ], [ -119.08280369, 50.87286721100012 ], [ -119.082980489999969, 50.872072493000061 ], [ -119.08283858099999, 50.870437501000048 ], [ -119.083137895, 50.869505990000036 ], [ -119.083029261999911, 50.869283187000065 ], [ -119.086274555999935, 50.869484058000104 ], [ -119.085971162999968, 50.87143982900006 ], [ -119.086252894000012, 50.87145726200005 ], [ -119.086160489999926, 50.872052914000058 ], [ -119.087255003999957, 50.872120636000069 ], [ -119.086866666000034, 50.874624161000014 ], [ -119.088112810999959, 50.874701250000015 ], [ -119.08817205099993, 50.874704915000123 ], [ -119.088107122999929, 50.875123538000054 ], [ -119.087617511999952, 50.878280068000066 ], [ -119.086935952, 50.878237907000056 ], [ -119.08684011099993, 50.878855684000023 ], [ -119.086645798999953, 50.878843664000037 ], [ -119.086621808999951, 50.878998289000052 ], [ -119.086363878999961, 50.878982332000092 ], [ -119.086339804999938, 50.879137496000062 ], [ -119.084318377, 50.879012419000077 ], [ -119.08367147899996, 50.878310492000097 ], [ -119.083111906999989, 50.877880386000058 ], [ -119.083141212999962, 50.877582698000126 ], [ -119.083396001999972, 50.877226685000082 ], [ -119.084270408999956, 50.876743889000032 ], [ -119.084804314999957, 50.876275292000088 ], [ -119.084761282999978, 50.875628695000046 ], [ -119.084615202999942, 50.87524558500008 ], [ -119.084698316999933, 50.874856793000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10163917", "BldgCostT": "5856667", "sL_LossRatio": "0.995473295849046", "sL_AssetLoss": "146.906", "sL_BldgLoss": "146.241", "sL_StrLoss": "146", "sL_NStrLoss": "0.241", "sL_ContLoss": "0.665", "geom_point": "0101000020E6100000DD2361001DCB5DC0882F1345C8764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.170329146999961, 50.929840075000058 ], [ -119.170388473999978, 50.929453431000098 ], [ -119.170361374999942, 50.929451777000061 ], [ -119.170909923999915, 50.925876424000066 ], [ -119.171335300999942, 50.925902388000118 ], [ -119.171348808999966, 50.925814334000101 ], [ -119.177017120999935, 50.926160146000036 ], [ -119.176469056999963, 50.929735529000048 ], [ -119.176070738999925, 50.929711238000046 ], [ -119.175997962999986, 50.930185938000086 ], [ -119.170329146999961, 50.929840075000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "30", "sL_BldgLoss": "30", "sL_StrLoss": "30", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025D01E37D5C75DC004958EC5787A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.121598287999944, 50.957605143000073 ], [ -119.121524601999937, 50.95598759100006 ], [ -119.122599064999989, 50.955968062000082 ], [ -119.122805115999938, 50.955964316000049 ], [ -119.122817404, 50.956233907000097 ], [ -119.123244245999942, 50.956226145000059 ], [ -119.123305699999889, 50.957574103000105 ], [ -119.122239564999958, 50.957593488000022 ], [ -119.121598287999944, 50.957605143000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77568667", "BldgCostT": "53256667", "sL_LossRatio": "1", "sL_AssetLoss": "467", "sL_BldgLoss": "467", "sL_StrLoss": "467", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000438C19D9FCD25DC01F4FE4ACFC654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.294486214999964, 50.798959652000065 ], [ -119.294545204, 50.798566840000028 ], [ -119.294289135999975, 50.79855144800004 ], [ -119.294529260000019, 50.796952423000079 ], [ -119.292506190999987, 50.796830802000088 ], [ -119.292576126999919, 50.79636519800011 ], [ -119.292356618999946, 50.79635199900013 ], [ -119.292401250999916, 50.796054865000031 ], [ -119.292287036999966, 50.796047997000066 ], [ -119.292544540999955, 50.794333639000044 ], [ -119.295843372999968, 50.794332027000038 ], [ -119.29594434099999, 50.795145842000046 ], [ -119.296795833, 50.795162618000091 ], [ -119.298836767999944, 50.79502225400006 ], [ -119.298807960999966, 50.795214225000059 ], [ -119.300478883999972, 50.795314588000053 ], [ -119.300419950999938, 50.79570740500008 ], [ -119.300676003999982, 50.795722783 ], [ -119.300139411999965, 50.799299296000065 ], [ -119.294486214999964, 50.798959652000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4809250", "BldgCostT": "2845000", "sL_LossRatio": "1", "sL_AssetLoss": "90", "sL_BldgLoss": "90", "sL_StrLoss": "90", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000057026BCD3DC85DC05BCD9D0DB7794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.128290473999954, 50.949079957 ], [ -119.130844562999954, 50.949236717000119 ], [ -119.130400475999977, 50.951531893000059 ], [ -119.130110620999943, 50.952800617000058 ], [ -119.126770987999947, 50.952595627000058 ], [ -119.127112892999932, 50.950382640000043 ], [ -119.127323313999923, 50.949020581000099 ], [ -119.128290473999954, 50.949079957 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021331", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "316996843", "BldgCostT": "208688735", "sL_LossRatio": "0.998280921502103", "sL_AssetLoss": "4735.095", "sL_BldgLoss": "4726.955", "sL_StrLoss": "4724", "sL_NStrLoss": "2.955", "sL_ContLoss": "8.14", "geom_point": "0101000020E610000080C33C124CCE5DC03D629068C0774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.224377206999961, 50.941145204000087 ], [ -119.223861701999951, 50.941063999000036 ], [ -119.22088461599995, 50.941031297000073 ], [ -119.21991159599996, 50.940933007000098 ], [ -119.21718128599997, 50.941097152000033 ], [ -119.215979313999952, 50.941169393000017 ], [ -119.215209483999942, 50.940841794000065 ], [ -119.214132792999962, 50.94062819700008 ], [ -119.213771981999969, 50.940403417000027 ], [ -119.213653779999973, 50.940329788000057 ], [ -119.213174295999977, 50.940031090000105 ], [ -119.212914282999932, 50.939869103000085 ], [ -119.212208840999949, 50.939301662000062 ], [ -119.21170141199994, 50.93889348400009 ], [ -119.211320402999931, 50.938677003000123 ], [ -119.210859807999938, 50.938550306000124 ], [ -119.210246282999947, 50.937959201000062 ], [ -119.209921901999977, 50.937983400000078 ], [ -119.209814484999981, 50.938155794000096 ], [ -119.209688491999955, 50.93817709700005 ], [ -119.20954616299997, 50.938108238000034 ], [ -119.209294110999949, 50.937986285000065 ], [ -119.209082184999943, 50.938026193000042 ], [ -119.208933111999968, 50.938470496000072 ], [ -119.208421709999982, 50.938812293000055 ], [ -119.207740411999922, 50.938937138 ], [ -119.207434410999923, 50.938993193000094 ], [ -119.207004083999919, 50.938920595000042 ], [ -119.206786595999972, 50.938825102000081 ], [ -119.20614282299999, 50.938746804000111 ], [ -119.20578008399994, 50.9385929950001 ], [ -119.205508610999985, 50.938282494000084 ], [ -119.205024896999987, 50.938004812 ], [ -119.204009209999981, 50.937006409000041 ], [ -119.20233589599998, 50.936211704000129 ], [ -119.201511415999946, 50.935633492000115 ], [ -119.200709083999939, 50.935522399000085 ], [ -119.20017361099994, 50.935622099000057 ], [ -119.199599887999952, 50.935504248000022 ], [ -119.199887909000012, 50.933619202000067 ], [ -119.205557431000017, 50.933963571000106 ], [ -119.20553852099999, 50.934087442000056 ], [ -119.206987881999936, 50.934175430000067 ], [ -119.207047006999986, 50.933788045000078 ], [ -119.206790243999961, 50.933772459000089 ], [ -119.206769826999931, 50.933906228000076 ], [ -119.201100302999933, 50.933561920000045 ], [ -119.201236129, 50.932672741000061 ], [ -119.201646439999976, 50.929986434000078 ], [ -119.205757032999941, 50.930236098000073 ], [ -119.205777451999964, 50.930102328000068 ], [ -119.205990758000013, 50.930115280000102 ], [ -119.20601685099993, 50.929944334000119 ], [ -119.206957745999958, 50.930001457000053 ], [ -119.206979813999951, 50.929856855 ], [ -119.21036898899996, 50.930062553000027 ], [ -119.210980778999954, 50.93032931000004 ], [ -119.211903191, 50.930940099000097 ], [ -119.213318900999951, 50.931580780000012 ], [ -119.213550208999933, 50.931724687000035 ], [ -119.213596626999987, 50.931794239000041 ], [ -119.213670094999955, 50.931904295000052 ], [ -119.213678401999985, 50.932572393000108 ], [ -119.217418861999974, 50.932575564000054 ], [ -119.217430693999958, 50.932575550000131 ], [ -119.217601693999981, 50.932575703000069 ], [ -119.21790519399994, 50.932621114000085 ], [ -119.218015205999976, 50.932646682000026 ], [ -119.218102099999967, 50.932666886000092 ], [ -119.218155683999939, 50.932679355000033 ], [ -119.219159624999989, 50.932912797000036 ], [ -119.220168397999942, 50.933004598000068 ], [ -119.220827779999951, 50.932945769000099 ], [ -119.22115008399993, 50.932917 ], [ -119.222207102999931, 50.932768969000072 ], [ -119.223200802999955, 50.932629803000111 ], [ -119.223938505999982, 50.932576192000091 ], [ -119.226778713999963, 50.932571300000106 ], [ -119.227155440999979, 50.932572945000118 ], [ -119.229632229999936, 50.93258378200008 ], [ -119.229665151999939, 50.932583911000123 ], [ -119.231225486999946, 50.932590717000075 ], [ -119.231520308999933, 50.932591993000081 ], [ -119.231914514999971, 50.932642994000091 ], [ -119.232024036999974, 50.932662402000069 ], [ -119.232855170999983, 50.932809638 ], [ -119.233112397, 50.932855195000037 ], [ -119.233652604999946, 50.9328960080001 ], [ -119.234416585999924, 50.93282940200006 ], [ -119.234637527999965, 50.932780040000061 ], [ -119.235220596999952, 50.9326498100001 ], [ -119.235663798999923, 50.932604425000086 ], [ -119.235838208999937, 50.932586113000077 ], [ -119.236905179999923, 50.932580621000078 ], [ -119.238286187999947, 50.932573503000114 ], [ -119.242861096999945, 50.932561104000037 ], [ -119.243835413999989, 50.932560362000117 ], [ -119.245771020999939, 50.932558899000085 ], [ -119.246403184999906, 50.932558392000047 ], [ -119.248475323999912, 50.932556652000116 ], [ -119.250826612999973, 50.932554604000075 ], [ -119.25138660199994, 50.932587506000111 ], [ -119.25193821299996, 50.932675806000127 ], [ -119.252449405, 50.932729186000074 ], [ -119.252784593999962, 50.932706987000095 ], [ -119.253176394999983, 50.932631610000044 ], [ -119.253569896999963, 50.932555907000051 ], [ -119.255065831999985, 50.932559318000102 ], [ -119.255095607999976, 50.932559385000047 ], [ -119.25569597499999, 50.932514395000126 ], [ -119.25597601299998, 50.932441106000034 ], [ -119.256359792999902, 50.932287404000057 ], [ -119.25812750099999, 50.931192050000021 ], [ -119.259038515999961, 50.93062750000005 ], [ -119.259465520999981, 50.9303862 ], [ -119.260119811999985, 50.930145910000121 ], [ -119.261197078999928, 50.929813001000078 ], [ -119.262789266999974, 50.92951684800007 ], [ -119.262744323999968, 50.929813804000048 ], [ -119.261534693999948, 50.930051988000031 ], [ -119.259868785999942, 50.930902298000049 ], [ -119.258611311999942, 50.931412085000041 ], [ -119.257654994999911, 50.931943409000091 ], [ -119.256791181999986, 50.932634102000122 ], [ -119.25603849, 50.932964514000091 ], [ -119.255365117999986, 50.932842097000069 ], [ -119.254260193999954, 50.932953097000045 ], [ -119.253921367999936, 50.933090746000076 ], [ -119.252794598999941, 50.933548486000078 ], [ -119.251728696999962, 50.933595500000081 ], [ -119.250032792999946, 50.934123811000099 ], [ -119.248842594999971, 50.934244912000047 ], [ -119.248450677999983, 50.934405799000046 ], [ -119.248181293999963, 50.934384494000071 ], [ -119.247634892999955, 50.934565299000099 ], [ -119.245140704999955, 50.936006608000049 ], [ -119.243710306999915, 50.937033505000088 ], [ -119.242723499999926, 50.93751060400006 ], [ -119.240546392999988, 50.938145794000064 ], [ -119.239640904999931, 50.938837985000092 ], [ -119.239097601000012, 50.939110003000096 ], [ -119.23762359599999, 50.939236705000063 ], [ -119.237288782999926, 50.939081505000061 ], [ -119.236759691, 50.939037407000107 ], [ -119.23474779799993, 50.939238199000052 ], [ -119.233910590999983, 50.93957710400008 ], [ -119.233277506999983, 50.940300606000044 ], [ -119.232855958999906, 50.940597839000056 ], [ -119.231107906999966, 50.940492139000035 ], [ -119.231321913000016, 50.939085115000061 ], [ -119.226865569, 50.938815524000034 ], [ -119.227110556999889, 50.937205762000083 ], [ -119.222836464999929, 50.936947027000066 ], [ -119.222542325999896, 50.938878531000036 ], [ -119.225480763999954, 50.93905642900009 ], [ -119.22542337299997, 50.939433443000084 ], [ -119.228155106999907, 50.939598756000066 ], [ -119.228139568999921, 50.93970086200008 ], [ -119.228479802999942, 50.939721447000061 ], [ -119.228242412999975, 50.941281521000114 ], [ -119.227369692999957, 50.941519790000058 ], [ -119.225175978999985, 50.941758991000022 ], [ -119.224869920999936, 50.941612298000074 ], [ -119.224377206999961, 50.941145204000087 ] ], [ [ -119.214774154999944, 50.936217570000046 ], [ -119.21484889299991, 50.935727344000107 ], [ -119.214846659999978, 50.935727208000053 ], [ -119.214771921999983, 50.936217435000032 ], [ -119.214774154999944, 50.936217570000046 ] ], [ [ -119.209162023999966, 50.935270630000041 ], [ -119.209243526, 50.93473647000009 ], [ -119.208111125999963, 50.93466775000006 ], [ -119.208029610999986, 50.935201908000117 ], [ -119.209162023999966, 50.935270630000041 ] ], [ [ -119.215772472, 50.933936414000094 ], [ -119.215529263999954, 50.935531929000021 ], [ -119.216043558999957, 50.935563106000053 ], [ -119.216057891999967, 50.935469075000093 ], [ -119.216182894999946, 50.935476652000027 ], [ -119.216342138999906, 50.934431879000023 ], [ -119.221774277999927, 50.934761026000103 ], [ -119.221860548999985, 50.934194542000036 ], [ -119.22034356099999, 50.934102652000085 ], [ -119.220326840999988, 50.934212418000122 ], [ -119.215772472, 50.933936414000094 ] ], [ [ -119.221998176999961, 50.934865481000017 ], [ -119.221875188999931, 50.93567305400007 ], [ -119.222014955999924, 50.935681518000123 ], [ -119.221997489999964, 50.93579619700003 ], [ -119.222765339999924, 50.93584269800008 ], [ -119.222757034999972, 50.935897234000088 ], [ -119.222967523999941, 50.935909981000052 ], [ -119.223095647999941, 50.93506854800011 ], [ -119.222444372999959, 50.935029108000087 ], [ -119.222464984999931, 50.934893753000082 ], [ -119.221998176999961, 50.934865481000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17673583", "BldgCostT": "10483333", "sL_LossRatio": "0.995948719702174", "sL_AssetLoss": "965.127", "sL_BldgLoss": "961.217", "sL_StrLoss": "959.8", "sL_NStrLoss": "1.417", "sL_ContLoss": "3.91", "geom_point": "0101000020E61000008A01F9AFBFC45DC0FFA94C8C40694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.077211311999989, 50.815810499000158 ], [ -119.077471095999954, 50.815162101000141 ], [ -119.078057583999936, 50.815198485000046 ], [ -119.077969942999971, 50.815763509000121 ], [ -119.078846198999912, 50.815817864000117 ], [ -119.078291644999979, 50.819393213000097 ], [ -119.077738996999969, 50.819358933000096 ], [ -119.077685834999954, 50.819701626000025 ], [ -119.077506141999919, 50.819690480000105 ], [ -119.077421552999937, 50.820235731000082 ], [ -119.076718144, 50.820192094000049 ], [ -119.0765047899999, 50.821567149000032 ], [ -119.075930644999943, 50.821531528000087 ], [ -119.075409229999963, 50.824891367000092 ], [ -119.075169661999936, 50.824876502000059 ], [ -119.07471546499994, 50.827802676000054 ], [ -119.073597075999885, 50.827733278000061 ], [ -119.073395577999946, 50.829031103000013 ], [ -119.069965501, 50.828818192 ], [ -119.070373192999952, 50.828406200000046 ], [ -119.070713897999937, 50.827779508000077 ], [ -119.070667693999951, 50.827601296000111 ], [ -119.070542199999977, 50.827117294000033 ], [ -119.070946359999979, 50.826702842000067 ], [ -119.071086590999926, 50.826559008000068 ], [ -119.071119712999973, 50.826388100000031 ], [ -119.070895612999962, 50.826036201000086 ], [ -119.070886372999922, 50.826021679000057 ], [ -119.07086973599999, 50.825995508000091 ], [ -119.070735655999968, 50.825784958000085 ], [ -119.070524779999957, 50.825453794000097 ], [ -119.070762308999974, 50.825035109000119 ], [ -119.070474285999964, 50.824627788000036 ], [ -119.070684393, 50.824362195000049 ], [ -119.070850589999935, 50.824152100000035 ], [ -119.070949881999979, 50.823800292000094 ], [ -119.070861808999922, 50.823508293000096 ], [ -119.070849446999887, 50.823467365000049 ], [ -119.070840379999964, 50.823437248000047 ], [ -119.07081499899999, 50.823353109000031 ], [ -119.070816405999935, 50.822732197000107 ], [ -119.071142294999916, 50.822393189000103 ], [ -119.071296603999912, 50.822015862000043 ], [ -119.071360705999936, 50.821859086000089 ], [ -119.071628448999917, 50.821647059000043 ], [ -119.071743700999917, 50.82155581100011 ], [ -119.072250008, 50.82079950500006 ], [ -119.073292998999946, 50.81998058600005 ], [ -119.073265513999957, 50.819583121000029 ], [ -119.073261601999917, 50.819526453000023 ], [ -119.073244737999957, 50.819282804000053 ], [ -119.073241707999941, 50.819238951 ], [ -119.073215423999955, 50.818858303000063 ], [ -119.073255468999932, 50.818670734000072 ], [ -119.073268153999933, 50.818611320000045 ], [ -119.073344693999928, 50.818253006000063 ], [ -119.073885583999981, 50.817982397000051 ], [ -119.074463203999926, 50.817882694000055 ], [ -119.07461428499991, 50.81775449500001 ], [ -119.074340091999915, 50.817335789000019 ], [ -119.073697798999902, 50.817240404000124 ], [ -119.07397350699992, 50.817045297000107 ], [ -119.074336796999944, 50.816890306000104 ], [ -119.074421844999975, 50.816854037000105 ], [ -119.07480819199999, 50.816689202000063 ], [ -119.075429406999973, 50.816606590000099 ], [ -119.07558112399991, 50.816562428000076 ], [ -119.075686454000021, 50.81653178000002 ], [ -119.076481301999976, 50.81630040600006 ], [ -119.077000256999952, 50.815952135000082 ], [ -119.077211311999989, 50.815810499000158 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021333", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9723833", "BldgCostT": "5528333", "sL_LossRatio": "0.987321733770418", "sL_AssetLoss": "142.764", "sL_BldgLoss": "140.954", "sL_StrLoss": "140.3", "sL_NStrLoss": "0.654", "sL_ContLoss": "1.81", "geom_point": "0101000020E6100000DB854965C8C45DC075E789E76C6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.071426961999919, 50.83036223000007 ], [ -119.071582501999941, 50.829360743000102 ], [ -119.077237819999979, 50.829711634000112 ], [ -119.077143588999974, 50.830318867000123 ], [ -119.077270460999969, 50.830326735000092 ], [ -119.076715600999989, 50.833902016000124 ], [ -119.0722613719999, 50.833625678000047 ], [ -119.072358916999946, 50.833524798000056 ], [ -119.072897258999944, 50.833172057000127 ], [ -119.072950186999961, 50.833137368000045 ], [ -119.073208954999927, 50.832967808000042 ], [ -119.073587006999929, 50.832720102000053 ], [ -119.073925902999946, 50.832327009000053 ], [ -119.073648682999988, 50.831828596000037 ], [ -119.073235397999923, 50.831485295000093 ], [ -119.072313007, 50.831196196000121 ], [ -119.071967837999935, 50.830758495000062 ], [ -119.071816594999959, 50.83056670200007 ], [ -119.071426961999919, 50.83036223000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24302009", "BldgCostT": "14525785", "sL_LossRatio": "0.996341936631294", "sL_AssetLoss": "1484.392", "sL_BldgLoss": "1478.962", "sL_StrLoss": "1477", "sL_NStrLoss": "1.962", "sL_ContLoss": "5.43", "geom_point": "0101000020E61000009B94925080C85DC0699360FDE1674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.119947332999971, 50.811234825000042 ], [ -119.120625191999977, 50.810801507000114 ], [ -119.121299307999919, 50.810636310000064 ], [ -119.121898113999976, 50.810670500000114 ], [ -119.123018682999941, 50.810992406000103 ], [ -119.123531305999961, 50.810990988000064 ], [ -119.124881610999978, 50.810766425000097 ], [ -119.125501355999958, 50.810663323000057 ], [ -119.125624545999983, 50.810642844000022 ], [ -119.12674240399997, 50.810456911000117 ], [ -119.128370283999928, 50.810364304000075 ], [ -119.129104388999949, 50.810251805000043 ], [ -119.12932245799999, 50.810181420000056 ], [ -119.129607605999979, 50.810089398000088 ], [ -119.131427737999971, 50.809985334000039 ], [ -119.131674978999925, 50.80997119600007 ], [ -119.131754039, 50.809955780000031 ], [ -119.132492007999957, 50.80981168700005 ], [ -119.133551588999964, 50.80998334600006 ], [ -119.133730113999917, 50.810012269000126 ], [ -119.13413591599999, 50.810078 ], [ -119.134254867999928, 50.810088155000123 ], [ -119.134342943999968, 50.810095683000107 ], [ -119.135703497999955, 50.810211894000119 ], [ -119.135896122999966, 50.810168931000092 ], [ -119.136322595999971, 50.810073794000083 ], [ -119.136932610999949, 50.810108004000092 ], [ -119.13780637799999, 50.810263198000058 ], [ -119.138298505, 50.810452589000143 ], [ -119.138982242999944, 50.810222236000079 ], [ -119.139098937999918, 50.810182922000124 ], [ -119.139262218999974, 50.81012789800004 ], [ -119.140393379999978, 50.810018191000033 ], [ -119.142104706999973, 50.810174887000088 ], [ -119.143007585999953, 50.810392794000066 ], [ -119.143379180999943, 50.810448300000054 ], [ -119.144068213999958, 50.810287217000031 ], [ -119.144755702999959, 50.810126486000044 ], [ -119.145380871999919, 50.810064061000027 ], [ -119.146052528999988, 50.809996977000047 ], [ -119.146196403999923, 50.809982584000075 ], [ -119.147028452999962, 50.810041364000064 ], [ -119.14718256299993, 50.810052244000126 ], [ -119.146746674000028, 50.812891168000078 ], [ -119.146005822999939, 50.812845664000108 ], [ -119.145982646, 50.812996585000086 ], [ -119.140328901999951, 50.812649160000085 ], [ -119.140356493999931, 50.812469635000092 ], [ -119.13963439299999, 50.812425240000081 ], [ -119.139634579999921, 50.812424025000084 ], [ -119.134746918999909, 50.812123408000026 ], [ -119.134647037, 50.81277274400005 ], [ -119.131436365999889, 50.812575153000111 ], [ -119.131338815999968, 50.813209018000094 ], [ -119.127233637999922, 50.812956241000059 ], [ -119.127217426999962, 50.813061513000079 ], [ -119.124750717999959, 50.812909551000132 ], [ -119.12474831099999, 50.812925169000074 ], [ -119.124464370999959, 50.812907673000062 ], [ -119.12444850299994, 50.813010676000026 ], [ -119.123104148999985, 50.812927830000099 ], [ -119.123077048999974, 50.81310370700006 ], [ -119.122787268999957, 50.813085847000089 ], [ -119.122766441999943, 50.813221013000096 ], [ -119.117112850999945, 50.812872415000065 ], [ -119.117322940999941, 50.81151007600004 ], [ -119.11750498899994, 50.811507621000047 ], [ -119.118051570999967, 50.811500245000047 ], [ -119.119165711999983, 50.811485209000075 ], [ -119.119756183, 50.811356996000015 ], [ -119.119947332999971, 50.811234825000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "32", "sL_BldgLoss": "32", "sL_StrLoss": "32", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF3267642DD25DC09E3EC8D3EE634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.284194673999977, 50.782594398000079 ], [ -119.28436531399997, 50.781459381000069 ], [ -119.283744439, 50.781421989000087 ], [ -119.283793309999965, 50.781096936000047 ], [ -119.283144742999966, 50.78105787200009 ], [ -119.283335512999955, 50.779789109000056 ], [ -119.282813518999902, 50.779757666000179 ], [ -119.282817986999959, 50.779727957000041 ], [ -119.284660194999901, 50.779738576000071 ], [ -119.284535008999953, 50.782614894000034 ], [ -119.284194673999977, 50.782594398000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38287917", "BldgCostT": "21731667", "sL_LossRatio": "0.998580086182007", "sL_AssetLoss": "1478.963", "sL_BldgLoss": "1476.863", "sL_StrLoss": "1476.1", "sL_NStrLoss": "0.763", "sL_ContLoss": "2.1", "geom_point": "0101000020E610000020F553F307C55DC0C026C68D366C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.078154706999982, 50.850491411000029 ], [ -119.07890176399998, 50.848517945000069 ], [ -119.078910896999972, 50.848493853000043 ], [ -119.078956398999935, 50.848373605000099 ], [ -119.079002100999986, 50.847796802000083 ], [ -119.078701721999934, 50.8469631890001 ], [ -119.078690823999978, 50.84693291400005 ], [ -119.078688531999958, 50.846926613000043 ], [ -119.078628665999972, 50.846760479000089 ], [ -119.07859405799995, 50.846664438000111 ], [ -119.078586477999949, 50.846643380000089 ], [ -119.078557287999928, 50.846562343000073 ], [ -119.078483789, 50.846358397000103 ], [ -119.078428731999963, 50.846070919000027 ], [ -119.078315898999961, 50.845481970000044 ], [ -119.078229242999967, 50.84502952100005 ], [ -119.078223627999975, 50.84500022200011 ], [ -119.078168296999976, 50.844711490000066 ], [ -119.078075096999939, 50.844224896000064 ], [ -119.077591710999954, 50.842605592000027 ], [ -119.077397058999964, 50.842320711000127 ], [ -119.077348382999972, 50.842249507000076 ], [ -119.076235092999951, 50.84116280900011 ], [ -119.075711324999958, 50.840908886000051 ], [ -119.075348380999941, 50.840732949000078 ], [ -119.074941384999931, 50.840535656000057 ], [ -119.074184271, 50.840168612000141 ], [ -119.07415373099991, 50.840153813 ], [ -119.073999387999919, 50.840079013000029 ], [ -119.073544402, 50.839762806000095 ], [ -119.073338395999883, 50.839272909000101 ], [ -119.073599394000027, 50.838764487000091 ], [ -119.07359102, 50.838224703 ], [ -119.07171599599999, 50.83663960500013 ], [ -119.071365980999985, 50.836087 ], [ -119.071404097999917, 50.835909270000052 ], [ -119.07678758899999, 50.836243260000074 ], [ -119.076709919999956, 50.836743655000078 ], [ -119.077101713999951, 50.836767952000088 ], [ -119.076695424, 50.839385507000024 ], [ -119.079853209999968, 50.839581280000161 ], [ -119.07966925499997, 50.84076686 ], [ -119.081035756999924, 50.840851550000082 ], [ -119.080990532, 50.841143060000057 ], [ -119.081308166999989, 50.841162743000019 ], [ -119.081041917999983, 50.84287898400008 ], [ -119.081528580999972, 50.842909140000117 ], [ -119.081478945999905, 50.843229096000123 ], [ -119.081771694999929, 50.843247235000049 ], [ -119.081686825999967, 50.843794323000118 ], [ -119.081780631999948, 50.843800135000059 ], [ -119.081637318999952, 50.844723953000056 ], [ -119.081974291999941, 50.844744831000057 ], [ -119.081500074999923, 50.847801580000102 ], [ -119.082103003, 50.847838934000052 ], [ -119.081848944999976, 50.849476520000046 ], [ -119.082607700999972, 50.849523522 ], [ -119.082053029999955, 50.853098752000065 ], [ -119.0820056969999, 50.853095819000082 ], [ -119.08197813699995, 50.853273452000025 ], [ -119.081893349999916, 50.853268201000041 ], [ -119.081860742999964, 50.853478355000036 ], [ -119.081731433, 50.853470344000087 ], [ -119.081698147999958, 50.853684858000058 ], [ -119.081503253999969, 50.853672785000064 ], [ -119.08124172299992, 50.85535816500002 ], [ -119.078604566999957, 50.855194770000061 ], [ -119.078605189999948, 50.8551885030001 ], [ -119.078488787999973, 50.854155906000102 ], [ -119.076824990999953, 50.852862689000062 ], [ -119.076526381999955, 50.852526593000064 ], [ -119.076618388, 50.852039506000075 ], [ -119.07696140099992, 50.851778685000035 ], [ -119.077732802999918, 50.851192093000037 ], [ -119.078154706999982, 50.850491411000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2231250", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "284.7", "sL_BldgLoss": "284.7", "sL_StrLoss": "284.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB9EE5DC9AD35DC0367B1CDD73694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.304159159999983, 50.823439657000087 ], [ -119.308251092999939, 50.823276751000051 ], [ -119.308263315999952, 50.82445604300004 ], [ -119.304044614999981, 50.824203070000074 ], [ -119.304159159999983, 50.823439657000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021339", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27207000", "BldgCostT": "15795000", "sL_LossRatio": "0.999217307727585", "sL_AssetLoss": "1798.919", "sL_BldgLoss": "1797.511", "sL_StrLoss": "1797", "sL_NStrLoss": "0.511", "sL_ContLoss": "1.408", "geom_point": "0101000020E61000006B162ECCBEC85DC010E18883BE784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.13152595299999, 50.942916355000079 ], [ -119.131789364, 50.94120986500009 ], [ -119.137459322999931, 50.941557671000098 ], [ -119.13740078299999, 50.941937247000041 ], [ -119.138167969999969, 50.941984285000018 ], [ -119.138362403999935, 50.940723414000097 ], [ -119.138944876, 50.940759123000049 ], [ -119.138977285999928, 50.940548928000062 ], [ -119.13961943599999, 50.940588292000058 ], [ -119.13968297699995, 50.940176143000066 ], [ -119.139974822999989, 50.940194032000129 ], [ -119.139986366999949, 50.940119151000076 ], [ -119.140244746999954, 50.940134988000132 ], [ -119.140268661999968, 50.939979856000029 ], [ -119.140508134999934, 50.939994534000071 ], [ -119.14052955799994, 50.93985556200002 ], [ -119.140991446999976, 50.939883870000074 ], [ -119.141019344999961, 50.939702873000066 ], [ -119.144296898999968, 50.939903694000073 ], [ -119.14444744, 50.93892654900003 ], [ -119.15011720699999, 50.939273716000073 ], [ -119.150010607999974, 50.939966215000034 ], [ -119.149877028999938, 50.940833961000067 ], [ -119.148831587999936, 50.940841792000093 ], [ -119.144327210999933, 50.941643708000107 ], [ -119.142794806999945, 50.9423642960001 ], [ -119.140715210999957, 50.94299671000001 ], [ -119.138154907999962, 50.943043688000067 ], [ -119.137965691999938, 50.943227393000043 ], [ -119.137490201999967, 50.944359600000041 ], [ -119.136404303999939, 50.945503283000072 ], [ -119.133761013999973, 50.946883309000086 ], [ -119.131992001999947, 50.947391788000104 ], [ -119.131357198999964, 50.947853185000035 ], [ -119.131071337, 50.948351963000114 ], [ -119.129332046999949, 50.948245220000047 ], [ -119.126973707999952, 50.948100441000108 ], [ -119.127525961999964, 50.944525375000083 ], [ -119.127903233999945, 50.944548540000085 ], [ -119.127944157999963, 50.944283585000086 ], [ -119.131056780999955, 50.944474649000057 ], [ -119.131299488999943, 50.942902458000091 ], [ -119.13152595299999, 50.942916355000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021340", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18399500", "BldgCostT": "10745000", "sL_LossRatio": "0.998615640660087", "sL_AssetLoss": "1307.464", "sL_BldgLoss": "1305.654", "sL_StrLoss": "1305", "sL_NStrLoss": "0.654", "sL_ContLoss": "1.81", "geom_point": "0101000020E6100000C6339A22E1C55DC03DAC685AFF674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.082990979999977, 50.812954998000095 ], [ -119.083505818000035, 50.81274840800009 ], [ -119.084126682999923, 50.812879887000086 ], [ -119.084911612, 50.813046110000073 ], [ -119.085428558999951, 50.812827246000055 ], [ -119.085736032999947, 50.812697103000019 ], [ -119.085887219000014, 50.812633096000056 ], [ -119.086017623999922, 50.812612434000101 ], [ -119.086196636999986, 50.812584089000033 ], [ -119.086544065999959, 50.812529070000018 ], [ -119.086877548999965, 50.812476232000073 ], [ -119.08703590499999, 50.812451156000044 ], [ -119.087040932999912, 50.812450355000102 ], [ -119.087129952999973, 50.812436252000111 ], [ -119.087353204999914, 50.812400890000035 ], [ -119.087474871999916, 50.812454248000044 ], [ -119.088061418999985, 50.812711399000122 ], [ -119.088913205999972, 50.81272280100012 ], [ -119.089362281999954, 50.812652148000076 ], [ -119.089619512999946, 50.812611704000084 ], [ -119.089748580999981, 50.812339696000052 ], [ -119.089720104999913, 50.811997900000108 ], [ -119.089922606999977, 50.811797110000057 ], [ -119.09000481599999, 50.811756297000059 ], [ -119.091090889, 50.811217388000038 ], [ -119.091792922999929, 50.811043704000099 ], [ -119.092522708000018, 50.810553706000057 ], [ -119.093253909999959, 50.810424092000105 ], [ -119.093454476999966, 50.810345650000066 ], [ -119.093880401999925, 50.810179095000095 ], [ -119.093960147999923, 50.810147884000052 ], [ -119.09412120199994, 50.81008489900006 ], [ -119.09450249899993, 50.809935790000104 ], [ -119.094574905999977, 50.809907469000088 ], [ -119.09484510899992, 50.809801786000044 ], [ -119.095245824999949, 50.809542504000028 ], [ -119.095396675999936, 50.809143796000093 ], [ -119.095719109999962, 50.809048301000118 ], [ -119.095834794999959, 50.809091102000124 ], [ -119.095791298999941, 50.809388692000063 ], [ -119.096109708, 50.809526886000114 ], [ -119.09687441599999, 50.809485596000044 ], [ -119.097530906999978, 50.809213590000127 ], [ -119.098775003999961, 50.809136607000035 ], [ -119.099477198999963, 50.809259107000074 ], [ -119.10118161799997, 50.809902893000071 ], [ -119.102062509999911, 50.809932808000092 ], [ -119.10229681, 50.809992486000084 ], [ -119.102037043999957, 50.811673290000023 ], [ -119.097402034999973, 50.81138664100007 ], [ -119.097258671999924, 50.812313597000134 ], [ -119.093267188999974, 50.812066591000068 ], [ -119.092870811999958, 50.814627791000071 ], [ -119.092805657999946, 50.814623759000028 ], [ -119.092769419999939, 50.814857894000077 ], [ -119.088505732999963, 50.814593880000103 ], [ -119.08834017099997, 50.815662892000091 ], [ -119.088120160999949, 50.815649264000065 ], [ -119.088101167999952, 50.81577189800003 ], [ -119.082447524999935, 50.815421550000082 ], [ -119.082826934999929, 50.812973756000112 ], [ -119.082990979999977, 50.812954998000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14407123", "BldgCostT": "9043706", "sL_LossRatio": "0.99630807626776", "sL_AssetLoss": "541.723", "sL_BldgLoss": "539.723", "sL_StrLoss": "539", "sL_NStrLoss": "0.723", "sL_ContLoss": "2", "geom_point": "0101000020E61000006174ABAD79CC5DC0E78D93C2BC764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.192114375999935, 50.930939473000088 ], [ -119.192101698999977, 50.930669892000047 ], [ -119.190821936999967, 50.930693920000103 ], [ -119.190809267999938, 50.930424339000105 ], [ -119.19038268099996, 50.930432345000064 ], [ -119.190344679999924, 50.929623602000071 ], [ -119.191624413999946, 50.929599581000083 ], [ -119.191611738999953, 50.929329999000046 ], [ -119.192464887999932, 50.929313977000056 ], [ -119.192452208999967, 50.929044397000034 ], [ -119.193305352999943, 50.929028368000097 ], [ -119.193292668999931, 50.928758788000046 ], [ -119.19414580599998, 50.928742754000105 ], [ -119.194133118999915, 50.928473174000025 ], [ -119.194559683999969, 50.928465154000051 ], [ -119.19454699399995, 50.928195573000096 ], [ -119.194973555999951, 50.92818755200009 ], [ -119.194960864999942, 50.92791797200006 ], [ -119.195387425, 50.927909949000096 ], [ -119.195362034999945, 50.927370790000047 ], [ -119.1957885899999, 50.927362765000026 ], [ -119.195775892999919, 50.927093186000064 ], [ -119.196202445999987, 50.927085160000054 ], [ -119.196189745999902, 50.926815580000032 ], [ -119.195336644999941, 50.926831629000034 ], [ -119.195326757, 50.926621630000092 ], [ -119.194577846999948, 50.9265760810001 ], [ -119.194044304999977, 50.926586110000116 ], [ -119.194056990999968, 50.926855691000085 ], [ -119.193630439999964, 50.926863709000017 ], [ -119.193655809999896, 50.927402869000055 ], [ -119.193229253999974, 50.927410885000043 ], [ -119.193241934999932, 50.927680466000076 ], [ -119.192815375999928, 50.92768848 ], [ -119.192828057000014, 50.927958061000083 ], [ -119.191974933999944, 50.927974086000106 ], [ -119.19198761, 50.928243667000068 ], [ -119.190707913000011, 50.928267692000091 ], [ -119.190720581999969, 50.928537273000074 ], [ -119.18816117199999, 50.928585283000096 ], [ -119.188123210999962, 50.92777653800001 ], [ -119.188976333999989, 50.927760542000087 ], [ -119.188963675999958, 50.9274909600001 ], [ -119.190669909999912, 50.927458949000069 ], [ -119.19065724299999, 50.927189368000086 ], [ -119.191510350999962, 50.927173353000072 ], [ -119.191497679999955, 50.926903772000102 ], [ -119.191924231000016, 50.926895763000068 ], [ -119.191898882999936, 50.926356601000109 ], [ -119.190952395999943, 50.926374372000069 ], [ -119.19091121400001, 50.926643606000013 ], [ -119.185242732999981, 50.926298495000026 ], [ -119.185306200999918, 50.925883913000057 ], [ -119.180202802999958, 50.925572955000035 ], [ -119.18041055899999, 50.924216818000104 ], [ -119.180664811999989, 50.924322185000051 ], [ -119.181141383999915, 50.924428558000059 ], [ -119.181193093, 50.92444010400007 ], [ -119.181515687999976, 50.924631207000047 ], [ -119.181829304999923, 50.924974714000051 ], [ -119.181840901999948, 50.924987430000058 ], [ -119.181842700999951, 50.924989413000048 ], [ -119.182027214999891, 50.925063794000039 ], [ -119.182529395999964, 50.925053798000107 ], [ -119.183008381999912, 50.925009490000029 ], [ -119.184122400999982, 50.924906393000128 ], [ -119.184353910999974, 50.924907909000069 ], [ -119.185046012999962, 50.925039301000069 ], [ -119.186091588999929, 50.925169811000018 ], [ -119.186870885999951, 50.925330002000145 ], [ -119.18775429399993, 50.925361304000113 ], [ -119.18834518599999, 50.925444113000047 ], [ -119.188709300999989, 50.925448284000034 ], [ -119.193442493999981, 50.926217743000109 ], [ -119.193523460999984, 50.926230886 ], [ -119.193489288999928, 50.926131590000097 ], [ -119.193836108999946, 50.926155402000056 ], [ -119.194844282999966, 50.926137290000071 ], [ -119.195202205999948, 50.926148410000096 ], [ -119.195295592, 50.92615129600005 ], [ -119.195950493999987, 50.926218065000079 ], [ -119.196994995999901, 50.926421455000074 ], [ -119.198096016999955, 50.926451448000051 ], [ -119.19931449799995, 50.926480384000072 ], [ -119.199418747999928, 50.926495826000163 ], [ -119.199832015999959, 50.92655699200008 ], [ -119.200126282000014, 50.926625197000057 ], [ -119.20088189099999, 50.9268003030001 ], [ -119.202350298999974, 50.926850705000035 ], [ -119.202860577999971, 50.926908797000124 ], [ -119.203566189999918, 50.927046391000061 ], [ -119.205063195999955, 50.92747109900013 ], [ -119.205341924999942, 50.927585507000103 ], [ -119.205732577999925, 50.927799595000138 ], [ -119.20620710099999, 50.928176604000043 ], [ -119.206397708999958, 50.928305500000121 ], [ -119.206625881999983, 50.92840319900013 ], [ -119.206648563999963, 50.928410154000098 ], [ -119.206484760999956, 50.929483445000074 ], [ -119.20081579899994, 50.929139121000084 ], [ -119.200818194999954, 50.929123436000033 ], [ -119.199282718999939, 50.929030124000079 ], [ -119.199290053999974, 50.929185575000098 ], [ -119.198010337999946, 50.929209680000064 ], [ -119.197972205999989, 50.92840094200006 ], [ -119.199251898999975, 50.928376836000041 ], [ -119.199274702999958, 50.928860183000054 ], [ -119.199413926999952, 50.92794890600004 ], [ -119.198307494999966, 50.927881653000107 ], [ -119.198435621999977, 50.927043118000057 ], [ -119.198335209000021, 50.927045009000025 ], [ -119.198347920999979, 50.927314590000087 ], [ -119.19792136699999, 50.927322623000066 ], [ -119.197934075999953, 50.927592203000131 ], [ -119.197507518999942, 50.927600234000067 ], [ -119.197520225999966, 50.927869815000108 ], [ -119.19709366499994, 50.927877844000101 ], [ -119.197106372999926, 50.92814742400008 ], [ -119.19667981000002, 50.928155453000066 ], [ -119.196692511999956, 50.928425032000114 ], [ -119.196265946999986, 50.928433060000074 ], [ -119.196278647000014, 50.928702639000036 ], [ -119.195852079999909, 50.928710665000025 ], [ -119.195864777999958, 50.92898024600008 ], [ -119.195438208, 50.928988270000119 ], [ -119.195450903999955, 50.929257850000056 ], [ -119.195024329999967, 50.929265874000116 ], [ -119.195037024999976, 50.929535453000078 ], [ -119.194610448, 50.929543474000084 ], [ -119.194648523999916, 50.930352215000077 ], [ -119.194221939999977, 50.93036023500013 ], [ -119.194234630999972, 50.930629815000074 ], [ -119.193808044999969, 50.930637833000105 ], [ -119.193820730999974, 50.930907413000028 ], [ -119.192114375999935, 50.930939473000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21512585", "BldgCostT": "12653277", "sL_LossRatio": "1", "sL_AssetLoss": "480.8", "sL_BldgLoss": "480.8", "sL_StrLoss": "480.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004269A0E03FCC5DC053BF563295774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.184687610999916, 50.936866898000062 ], [ -119.183243760999957, 50.936629632000098 ], [ -119.183287123999946, 50.936346527000076 ], [ -119.183569173999956, 50.934505032000047 ], [ -119.185500758, 50.934622670000124 ], [ -119.185791277999954, 50.932725178000034 ], [ -119.191460578999937, 50.933070260000065 ], [ -119.191448185999917, 50.933151279000057 ], [ -119.193424615999973, 50.933271513000122 ], [ -119.193681797999915, 50.931589756000058 ], [ -119.199351015999966, 50.931934440000063 ], [ -119.199238923999971, 50.932668055000065 ], [ -119.198804669999973, 50.935509906000036 ], [ -119.198591487000016, 50.935496951000047 ], [ -119.198035204999883, 50.935249011000067 ], [ -119.19745598899999, 50.935350097000011 ], [ -119.196785094999967, 50.935308806000108 ], [ -119.196060295999956, 50.935033913000034 ], [ -119.195175098999954, 50.93498828600012 ], [ -119.19409960699997, 50.934791791000066 ], [ -119.193801608999976, 50.934824607000053 ], [ -119.192682003999906, 50.9352148030001 ], [ -119.191472596999944, 50.935237596000064 ], [ -119.190577696, 50.935577990000091 ], [ -119.189292594999969, 50.935817203000056 ], [ -119.188607797999978, 50.936379804000119 ], [ -119.188313720999972, 50.936780003000081 ], [ -119.188011698999958, 50.936741501000071 ], [ -119.187026778999964, 50.936966593000051 ], [ -119.186368709999911, 50.936889595000061 ], [ -119.185845197999953, 50.936943808000059 ], [ -119.184687610999916, 50.936866898000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112928000", "BldgCostT": "73625000", "sL_LossRatio": "0.993995603663654", "sL_AssetLoss": "1645.461", "sL_BldgLoss": "1635.581", "sL_StrLoss": "1632", "sL_NStrLoss": "3.581", "sL_ContLoss": "9.88", "geom_point": "0101000020E610000014DD93EA2FD85DC0E5FA257F83714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.376136271999883, 50.903121549000097 ], [ -119.376140195999966, 50.902970257000106 ], [ -119.376519171999931, 50.902612973000018 ], [ -119.377493849999922, 50.901923234000023 ], [ -119.377817690999933, 50.901694071000115 ], [ -119.378307177999943, 50.901256683000035 ], [ -119.378581593999982, 50.900900485000108 ], [ -119.378642, 50.900686697000069 ], [ -119.378639392999958, 50.900434789000037 ], [ -119.378448784999975, 50.900130410000024 ], [ -119.378312130999944, 50.900001729000103 ], [ -119.378226890999883, 50.899921504000083 ], [ -119.378213036999938, 50.899912274000023 ], [ -119.378032560999927, 50.899792116000093 ], [ -119.377345308999963, 50.899334492000023 ], [ -119.376979229, 50.899018704000071 ], [ -119.376803402999926, 50.898778291000042 ], [ -119.376443073999909, 50.898126498000117 ], [ -119.375983682999973, 50.897515706000036 ], [ -119.37558557899996, 50.8971366930001 ], [ -119.375081004999984, 50.896426697000059 ], [ -119.374694097000017, 50.896097117000089 ], [ -119.374339399999954, 50.895936302000067 ], [ -119.373319080999948, 50.895560767000049 ], [ -119.373313833999987, 50.895558825000094 ], [ -119.37254019099997, 50.895274090000093 ], [ -119.372161901999945, 50.895108197000077 ], [ -119.37007651299993, 50.893978894000099 ], [ -119.369420814999941, 50.893583704000037 ], [ -119.367499878999965, 50.892319694000065 ], [ -119.367223793, 50.892091412000092 ], [ -119.365776388999947, 50.890132208000033 ], [ -119.36547798099997, 50.889728304000101 ], [ -119.365287396999989, 50.889022407000084 ], [ -119.365037297999962, 50.888322012000067 ], [ -119.364732175999919, 50.88778079800008 ], [ -119.364339387, 50.887261299000066 ], [ -119.36405554199996, 50.887007180000062 ], [ -119.363799880999977, 50.886778301000078 ], [ -119.362117384999962, 50.88572166200008 ], [ -119.361888488999938, 50.885577906000044 ], [ -119.361519899999905, 50.885252 ], [ -119.361015310999932, 50.884514913000068 ], [ -119.360902583999973, 50.884264602 ], [ -119.360835391999927, 50.883871900000081 ], [ -119.360806492999956, 50.881984883000079 ], [ -119.360753606999964, 50.881620991000091 ], [ -119.36065671199999, 50.881283301000046 ], [ -119.360480338999949, 50.88089718100008 ], [ -119.360300471999935, 50.880503366000056 ], [ -119.360161205999958, 50.880198495000108 ], [ -119.360097009999919, 50.87995829100003 ], [ -119.36009749499999, 50.879743695000109 ], [ -119.360193183999982, 50.879502111000157 ], [ -119.360389541999936, 50.879006268000083 ], [ -119.360464001999944, 50.878818298000063 ], [ -119.360565603999987, 50.87856729700006 ], [ -119.360623579999952, 50.878149494000112 ], [ -119.360609565999951, 50.878051198000072 ], [ -119.360523834999967, 50.877545957000038 ], [ -119.360282495999968, 50.876124008000055 ], [ -119.360227205999962, 50.875248511000073 ], [ -119.360238251999988, 50.875223841000079 ], [ -119.360310439999935, 50.875062337000031 ], [ -119.360383595999934, 50.874898701000127 ], [ -119.360875501999971, 50.874233396000108 ], [ -119.361414980999896, 50.873506807000076 ], [ -119.361540596999973, 50.87324907800005 ], [ -119.361594790999973, 50.872999697000154 ], [ -119.361580792999931, 50.87275809100003 ], [ -119.361518221000011, 50.872526108000081 ], [ -119.361406591999966, 50.872316592000054 ], [ -119.361185313999968, 50.872028300000068 ], [ -119.361402297999931, 50.871990702000076 ], [ -119.361655714999955, 50.872015603000136 ], [ -119.36187769299994, 50.872126206000075 ], [ -119.362345395999938, 50.872467013000119 ], [ -119.362520187999934, 50.872684006000057 ], [ -119.362591693999974, 50.872923607000082 ], [ -119.362491807999902, 50.873642091000107 ], [ -119.36251321099995, 50.873805697000094 ], [ -119.362644010999958, 50.873982107000131 ], [ -119.362848402999958, 50.874106106000049 ], [ -119.363163489999963, 50.874196109000174 ], [ -119.363432898999974, 50.874209390000075 ], [ -119.363452305999942, 50.87446309200012 ], [ -119.363552103999922, 50.874626912000025 ], [ -119.363905792999958, 50.874908593000107 ], [ -119.364337500999966, 50.875232804000092 ], [ -119.364671092999984, 50.875409508000068 ], [ -119.36495111399995, 50.875476710000036 ], [ -119.367337411999927, 50.875460401000048 ], [ -119.367569103999926, 50.875103498000044 ], [ -119.367959687999985, 50.87482990200003 ], [ -119.368201607999964, 50.874740495000033 ], [ -119.368520018999902, 50.87467369400008 ], [ -119.368758287, 50.874656297000087 ], [ -119.370155206, 50.874675092000096 ], [ -119.370489515999935, 50.874722894000065 ], [ -119.370616409999911, 50.874829584000054 ], [ -119.37098790099999, 50.875405487000087 ], [ -119.370250320999972, 50.875515093000061 ], [ -119.36983717699998, 50.875613291000022 ], [ -119.36954529799999, 50.875722219000103 ], [ -119.369399894999944, 50.875835395000109 ], [ -119.369271007999913, 50.87610649300003 ], [ -119.369360596999925, 50.876320089000046 ], [ -119.369490981999917, 50.876471306000091 ], [ -119.36969739499996, 50.8766198020001 ], [ -119.370053678999966, 50.876788792000035 ], [ -119.370744891999919, 50.877020104000053 ], [ -119.370914621999987, 50.87707979800004 ], [ -119.371272292999919, 50.877267890000013 ], [ -119.371494309999889, 50.877408072000115 ], [ -119.372021166999943, 50.877740807000038 ], [ -119.372336497999953, 50.877939897000026 ], [ -119.372578602999937, 50.878165299000038 ], [ -119.372699412999978, 50.878380806000031 ], [ -119.372697684999935, 50.878613413000053 ], [ -119.372536675999953, 50.879090998000081 ], [ -119.373720782999953, 50.879264902000052 ], [ -119.374181419999957, 50.879366190000034 ], [ -119.374614915999956, 50.879544301000053 ], [ -119.374966964999956, 50.879767816 ], [ -119.375350213, 50.880011129000131 ], [ -119.376529322999971, 50.880759727000111 ], [ -119.376794682999972, 50.880928210000036 ], [ -119.37730548299993, 50.881317392000014 ], [ -119.378048345999915, 50.881967415000133 ], [ -119.378462169999935, 50.882329493000043 ], [ -119.37876941199994, 50.882761698000117 ], [ -119.378909925999963, 50.88338707100008 ], [ -119.379137497999977, 50.884399899000108 ], [ -119.379247719999924, 50.884590397000061 ], [ -119.379590618999913, 50.884859689000031 ], [ -119.380028998999947, 50.885082296000064 ], [ -119.381046180999945, 50.885562802000052 ], [ -119.382170797999933, 50.886136150000034 ], [ -119.382589512999914, 50.886349600000052 ], [ -119.382931217999939, 50.886482599000068 ], [ -119.383183785999961, 50.886551906000058 ], [ -119.383957988999924, 50.88676429200008 ], [ -119.384296995999975, 50.88688235100004 ], [ -119.384629117999964, 50.886998009000102 ], [ -119.384885208999961, 50.887062694000086 ], [ -119.38514817699999, 50.887090904000075 ], [ -119.386317990999899, 50.887102394000095 ], [ -119.387032077999919, 50.887171691000049 ], [ -119.387395021999936, 50.887190457000038 ], [ -119.387879911999974, 50.887215499000042 ], [ -119.388308181999918, 50.887188598000073 ], [ -119.388873015999948, 50.887185891000073 ], [ -119.389597993999971, 50.887364001000016 ], [ -119.390239888999972, 50.887631104 ], [ -119.390880613999968, 50.887809697000115 ], [ -119.391024149999978, 50.887814760000026 ], [ -119.391302859999911, 50.88782459800003 ], [ -119.39183, 50.887843203000081 ], [ -119.393022507999916, 50.887831268000056 ], [ -119.393461079999938, 50.887826890000078 ], [ -119.39408465799994, 50.887784514000067 ], [ -119.394149483999968, 50.887780099000018 ], [ -119.395803512999976, 50.88757110100007 ], [ -119.396491403999931, 50.887527917000028 ], [ -119.397299112999974, 50.887544006000091 ], [ -119.3988678199999, 50.887716905000062 ], [ -119.399569790000015, 50.887771888000039 ], [ -119.400001601999946, 50.887779684000066 ], [ -119.400317812, 50.88778540200007 ], [ -119.400552894999947, 50.887770389000124 ], [ -119.400871195999969, 50.887714299000017 ], [ -119.401436013, 50.887489683000084 ], [ -119.401550398000012, 50.887401689000065 ], [ -119.401999905999972, 50.887009700000114 ], [ -119.402547786999961, 50.886744414000049 ], [ -119.40284650299995, 50.886676317000095 ], [ -119.40312909, 50.886629918000111 ], [ -119.403537709999966, 50.886658492000024 ], [ -119.404659174999921, 50.886909596000081 ], [ -119.405114890999954, 50.886909411000076 ], [ -119.405488281999965, 50.886877310000088 ], [ -119.40649072199993, 50.8866875000001 ], [ -119.407333608999977, 50.886483616000127 ], [ -119.408259169999951, 50.886259735000138 ], [ -119.40839160299997, 50.886227707000074 ], [ -119.41170819199999, 50.88521729800005 ], [ -119.412473580999944, 50.884871798000034 ], [ -119.413364681999951, 50.884187396000073 ], [ -119.413433696999917, 50.88681349600008 ], [ -119.41348938499999, 50.887113494000104 ], [ -119.413584076999939, 50.88731390500002 ], [ -119.413584664999945, 50.887325926000074 ], [ -119.413622346999944, 50.887418331000035 ], [ -119.413648977999955, 50.887483480000064 ], [ -119.413708242999959, 50.887535041000064 ], [ -119.413710435999946, 50.887580556000067 ], [ -119.413712392999969, 50.887622105000077 ], [ -119.413617125999963, 50.887673206000052 ], [ -119.410373582999981, 50.88788399200007 ], [ -119.410229675999943, 50.887886897000051 ], [ -119.409444582999939, 50.887756857000035 ], [ -119.40825210899996, 50.887559287000059 ], [ -119.40777329300002, 50.887686097 ], [ -119.406163282999927, 50.88789110200004 ], [ -119.405928383999978, 50.88788991900006 ], [ -119.405862707999972, 50.88788960600008 ], [ -119.405795664, 50.887889265000084 ], [ -119.405624464999946, 50.887888405000091 ], [ -119.405452018999981, 50.887887568000053 ], [ -119.405307082999983, 50.887886835000074 ], [ -119.405103604999979, 50.887885812000057 ], [ -119.405038004999938, 50.88788547500009 ], [ -119.404740777000015, 50.887883995000067 ], [ -119.403016089999966, 50.888054889000038 ], [ -119.40241339, 50.887958089000101 ], [ -119.40114520799996, 50.887912484000047 ], [ -119.401012125999927, 50.887915831000065 ], [ -119.399534305999936, 50.887952908000031 ], [ -119.399215104999953, 50.887960911000086 ], [ -119.399100209999972, 50.887963810000109 ], [ -119.398170630999957, 50.887818034000126 ], [ -119.397982894999984, 50.887788606000086 ], [ -119.396956017999983, 50.887747293000118 ], [ -119.396123148999976, 50.887812992000065 ], [ -119.39603065099999, 50.887820282000035 ], [ -119.395953283999958, 50.887826397000026 ], [ -119.395602592999964, 50.887854047000118 ], [ -119.395422791999962, 50.887868218000058 ], [ -119.395258198999926, 50.887881194000073 ], [ -119.393337915999922, 50.888154594000156 ], [ -119.392143099999899, 50.888151791000048 ], [ -119.390487104999949, 50.888042096000056 ], [ -119.389511609999929, 50.887845596000055 ], [ -119.38747010699997, 50.887690304000081 ], [ -119.386399172000012, 50.887436120000096 ], [ -119.386144187999946, 50.887375614000057 ], [ -119.385873589999932, 50.887371313000052 ], [ -119.385301523999914, 50.887555005000046 ], [ -119.385044421999936, 50.887550806000036 ], [ -119.38460172299996, 50.887465854000084 ], [ -119.384467453999946, 50.887440100000056 ], [ -119.383982898999989, 50.887347092000034 ], [ -119.383834816, 50.887294580000095 ], [ -119.383710878, 50.887250652000056 ], [ -119.383215779999887, 50.887075093000121 ], [ -119.382488885, 50.886513900000068 ], [ -119.380522315999926, 50.885871594000022 ], [ -119.380128790999933, 50.885672203000098 ], [ -119.379959716999963, 50.885441497000052 ], [ -119.379254204999938, 50.885257799000058 ], [ -119.378902597999968, 50.885041293000079 ], [ -119.3786840019999, 50.884676704000064 ], [ -119.37870298799993, 50.884181089000045 ], [ -119.378469616999951, 50.883528801000054 ], [ -119.378422391999948, 50.882882192000118 ], [ -119.37758819199999, 50.88240510300006 ], [ -119.377422941999953, 50.882125918000149 ], [ -119.377261894999961, 50.881853908000089 ], [ -119.37668501499995, 50.881425202000059 ], [ -119.376372889999942, 50.881255451000087 ], [ -119.376372302999982, 50.881255139000082 ], [ -119.375582475999948, 50.880825562000055 ], [ -119.375363863999937, 50.880706632000049 ], [ -119.37509040499998, 50.880557887000087 ], [ -119.374151518999938, 50.880253102000047 ], [ -119.373401823999956, 50.879774605000108 ], [ -119.373242251999926, 50.879731143000093 ], [ -119.373151400999973, 50.879706404000032 ], [ -119.372999013999916, 50.879664888000065 ], [ -119.372660412999906, 50.879438495000116 ], [ -119.372588165999929, 50.879414447000059 ], [ -119.372429498999907, 50.879361606 ], [ -119.372253452999971, 50.87935807000008 ], [ -119.37222566399997, 50.879357499000044 ], [ -119.371787186999924, 50.87934871 ], [ -119.370577096999966, 50.879022588000105 ], [ -119.370169893999972, 50.878571110000109 ], [ -119.369616290999957, 50.87828630500006 ], [ -119.369323521999917, 50.87821969900012 ], [ -119.369313266999896, 50.878217366000108 ], [ -119.36830760299992, 50.877988592000094 ], [ -119.367648507999917, 50.877903193000094 ], [ -119.366953007999953, 50.877925995000048 ], [ -119.366681131999925, 50.87799016300005 ], [ -119.365492877999927, 50.878270593000067 ], [ -119.36505125, 50.878465995000091 ], [ -119.364810521999985, 50.878572499000065 ], [ -119.3641931, 50.878737787000034 ], [ -119.363335609999965, 50.879186410000067 ], [ -119.362344683999979, 50.879854307000144 ], [ -119.362171249999932, 50.880139523000111 ], [ -119.362055746999943, 50.880329479000089 ], [ -119.362036586999935, 50.880360988000085 ], [ -119.361990502999944, 50.880436811000045 ], [ -119.362049434999946, 50.880889594000045 ], [ -119.362082801999989, 50.881146089000069 ], [ -119.361945906999935, 50.881805495000052 ], [ -119.361827232999957, 50.882040805000045 ], [ -119.36164385899994, 50.882404450000131 ], [ -119.361299481999978, 50.883087299000103 ], [ -119.361505785999952, 50.884359095000086 ], [ -119.36196731199999, 50.885025586000012 ], [ -119.362534822, 50.885562605000118 ], [ -119.363281142999952, 50.886061966000142 ], [ -119.363385443999945, 50.88613174900005 ], [ -119.363403856999952, 50.886144091000062 ], [ -119.363564991999937, 50.886251912000091 ], [ -119.363942418999954, 50.886388601000071 ], [ -119.364142447999896, 50.886553998000103 ], [ -119.364420554999953, 50.886783956000066 ], [ -119.365024101999936, 50.8872830070001 ], [ -119.365680512999987, 50.888178791000065 ], [ -119.366103688999942, 50.88951050200005 ], [ -119.366273497999899, 50.889767264000085 ], [ -119.366396604999949, 50.88995340700005 ], [ -119.366732090999946, 50.890675488000056 ], [ -119.36699885099992, 50.891014695000116 ], [ -119.367051362, 50.891081481000086 ], [ -119.36708260099995, 50.891121210000087 ], [ -119.367233803999952, 50.891313511000071 ], [ -119.367399715999952, 50.891474118000062 ], [ -119.368579895000011, 50.892616696000083 ], [ -119.36893554699995, 50.892838958000027 ], [ -119.369011701999924, 50.892886540000049 ], [ -119.369057897999966, 50.892915411000075 ], [ -119.369309748999967, 50.893072809000088 ], [ -119.369692987999912, 50.89331231200007 ], [ -119.36969607499995, 50.893314259000107 ], [ -119.369960995999989, 50.893479806000101 ], [ -119.371521202999986, 50.89423030600009 ], [ -119.371727002999961, 50.894396902000096 ], [ -119.371944387999974, 50.894436812 ], [ -119.372501727999961, 50.894807502000084 ], [ -119.37316491, 50.895248584000086 ], [ -119.373351500999959, 50.89534422400007 ], [ -119.373587221999983, 50.895465029000071 ], [ -119.373752026999966, 50.89554951200008 ], [ -119.375224301999978, 50.896303996000086 ], [ -119.37580392299999, 50.896959211000095 ], [ -119.376369436999937, 50.89759846400009 ], [ -119.3771265029999, 50.898454173000054 ], [ -119.377262185999896, 50.898607576000117 ], [ -119.377577898999931, 50.898964386000038 ], [ -119.377782695999926, 50.899058388000064 ], [ -119.378480517999975, 50.899106804000056 ], [ -119.379257578999898, 50.899541191 ], [ -119.379716287999912, 50.899524052000089 ], [ -119.38081961499995, 50.899482799000076 ], [ -119.382029995999972, 50.899817512000041 ], [ -119.382436131999953, 50.900201276000097 ], [ -119.382598224, 50.90035440300003 ], [ -119.38277349699996, 50.900422808000066 ], [ -119.382880364999934, 50.90042048600008 ], [ -119.383370693999922, 50.900409910000057 ], [ -119.383576604999988, 50.900478255000053 ], [ -119.383896547999925, 50.900584432000102 ], [ -119.384036020999986, 50.900630703000054 ], [ -119.384559216999946, 50.90060220500002 ], [ -119.385091997999922, 50.900699095000022 ], [ -119.385337596999975, 50.900811598000097 ], [ -119.385550914999925, 50.901084993000033 ], [ -119.38554711099999, 50.901545004000063 ], [ -119.385660897999969, 50.901811402000135 ], [ -119.386007477999954, 50.902200198000088 ], [ -119.386225650999947, 50.90226803900007 ], [ -119.386497613999921, 50.902352588000021 ], [ -119.385938097999912, 50.902507811000056 ], [ -119.385605115999979, 50.902702906000073 ], [ -119.385165419999979, 50.902694398000087 ], [ -119.384756405999923, 50.902784097000051 ], [ -119.383570403999954, 50.902673006000072 ], [ -119.383060794999963, 50.902701511000082 ], [ -119.382483910999937, 50.902848193000111 ], [ -119.381911986999967, 50.902778406000017 ], [ -119.38068100299995, 50.903172888000064 ], [ -119.380309882999953, 50.903144392000101 ], [ -119.379262280999953, 50.903274001000099 ], [ -119.378520683999966, 50.903208493000086 ], [ -119.377604908999928, 50.903414992000052 ], [ -119.376604006999926, 50.904137107000047 ], [ -119.376127699999969, 50.905099887000077 ], [ -119.375515815999933, 50.905958698000092 ], [ -119.373962787000011, 50.907582304000073 ], [ -119.373338677999939, 50.907996737000062 ], [ -119.373257709999933, 50.907991941000084 ], [ -119.373248043999951, 50.908056922000071 ], [ -119.373012685999953, 50.908213205000038 ], [ -119.370509209999952, 50.909315504000084 ], [ -119.369986777999912, 50.909658796000016 ], [ -119.369224606, 50.910340989000119 ], [ -119.368650189999983, 50.910531806000044 ], [ -119.367901806999924, 50.91063719100007 ], [ -119.367588989999945, 50.910802460000049 ], [ -119.367389598000017, 50.910907805000058 ], [ -119.366970085999966, 50.911349307000073 ], [ -119.366478242999946, 50.912359984000027 ], [ -119.366344586999944, 50.912352059000057 ], [ -119.366370418999963, 50.912315831000079 ], [ -119.366702901999986, 50.911638295000103 ], [ -119.366990812000026, 50.910776567000092 ], [ -119.367076553999979, 50.910720960000035 ], [ -119.367155297999929, 50.910662551000051 ], [ -119.367219333999969, 50.910595416000085 ], [ -119.367432401999906, 50.91047648300016 ], [ -119.367525797, 50.910426733000044 ], [ -119.36763373799991, 50.910385611000081 ], [ -119.367742233999948, 50.91035358600007 ], [ -119.367823755999936, 50.910331824000082 ], [ -119.368250601999975, 50.910312818000158 ], [ -119.368359133999903, 50.910280781000075 ], [ -119.36849585, 50.910256614000069 ], [ -119.368630728999932, 50.910205183000038 ], [ -119.368751761999988, 50.910154287000054 ], [ -119.368872183999969, 50.910094284000095 ], [ -119.369055935999981, 50.909958034000056 ], [ -119.369148611, 50.909899091000057 ], [ -119.369306158999933, 50.909782310000047 ], [ -119.369384125999929, 50.909714697 ], [ -119.369448999, 50.909656800000064 ], [ -119.369569327999926, 50.909596794000144 ], [ -119.369646560999954, 50.9095199080001 ], [ -119.369737655, 50.909442568000067 ], [ -119.369815656999918, 50.909374945000089 ], [ -119.369864894999921, 50.909299023000138 ], [ -119.369943630999927, 50.909240612000104 ], [ -119.370037036999975, 50.909190883000051 ], [ -119.370116558999925, 50.909141699000017 ], [ -119.370196767999985, 50.909101660000033 ], [ -119.370261655999983, 50.909043787000073 ], [ -119.370434441999976, 50.908944858000041 ], [ -119.370496803999984, 50.908859208000067 ], [ -119.37061216799998, 50.908822155000081 ], [ -119.371752350999969, 50.908455963000065 ], [ -119.37290364799999, 50.907942401000064 ], [ -119.373387867999924, 50.907637351000091 ], [ -119.374227762999979, 50.906891565000052 ], [ -119.374927295999939, 50.906186135000056 ], [ -119.375713214999948, 50.905293740000012 ], [ -119.376091902999974, 50.904640582000091 ], [ -119.376396158, 50.904036238000096 ], [ -119.376431018999938, 50.903734314000076 ], [ -119.376136271999883, 50.903121549000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127609343", "BldgCostT": "79863763", "sL_LossRatio": "0.998561869871931", "sL_AssetLoss": "1849.624", "sL_BldgLoss": "1846.964", "sL_StrLoss": "1846", "sL_NStrLoss": "0.964", "sL_ContLoss": "2.66", "geom_point": "0101000020E6100000A2A0CA1F42C75DC005951348647A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.118483392999948, 50.959339507000074 ], [ -119.116860013999911, 50.959036091000023 ], [ -119.116134707999976, 50.959057495000103 ], [ -119.114889887999965, 50.959565910000073 ], [ -119.114212109999983, 50.959668484000076 ], [ -119.113480501, 50.959574496000066 ], [ -119.112060690999911, 50.959041797000047 ], [ -119.111448511999967, 50.959044705000046 ], [ -119.110743710999955, 50.959209901000087 ], [ -119.110005194999957, 50.959555912000049 ], [ -119.109482204999964, 50.95964569300002 ], [ -119.107803779999983, 50.959362199000047 ], [ -119.105784391999947, 50.958516299000038 ], [ -119.104601200000019, 50.958133212000043 ], [ -119.103816108999951, 50.958093287000068 ], [ -119.103292314999962, 50.95818440700004 ], [ -119.102971804999981, 50.958324005000073 ], [ -119.102200792999938, 50.958896493000069 ], [ -119.101855229999927, 50.959242772000046 ], [ -119.101831722, 50.959241324000118 ], [ -119.101988622999968, 50.95822966100009 ], [ -119.099840680999989, 50.958268313000119 ], [ -119.099792058999967, 50.957189930000041 ], [ -119.100218914999985, 50.95718225300002 ], [ -119.100145969999929, 50.955564679000126 ], [ -119.101853330999987, 50.955533954000089 ], [ -119.101841164999925, 50.955264357000019 ], [ -119.10260905199999, 50.955250531000054 ], [ -119.102610742999957, 50.955239631000012 ], [ -119.102694648999901, 50.955244800000052 ], [ -119.102682666999968, 50.954979392000055 ], [ -119.104816836999987, 50.954940934000042 ], [ -119.104804652999917, 50.954671338000026 ], [ -119.108219295999945, 50.954609728000015 ], [ -119.108228303999979, 50.954808743000029 ], [ -119.108656677999988, 50.95483511400014 ], [ -119.108646124999936, 50.954602019000035 ], [ -119.109145522999953, 50.954592998000066 ], [ -119.109255109999964, 50.953885574000076 ], [ -119.107730115999971, 50.953791697000064 ], [ -119.108283980999929, 50.950216749000077 ], [ -119.113954900999957, 50.95056573900002 ], [ -119.113904828999964, 50.950889220000079 ], [ -119.11630394899997, 50.95103677400008 ], [ -119.115924034999978, 50.953491835000094 ], [ -119.118877440999938, 50.953673408000121 ], [ -119.118736229999939, 50.954586254000091 ], [ -119.118423649999954, 50.956606760000092 ], [ -119.120002309999961, 50.956703783000123 ], [ -119.119955004999923, 50.957009613000075 ], [ -119.121537382999975, 50.95710684000003 ], [ -119.121483170999966, 50.957457404000095 ], [ -119.121496810999957, 50.957458242000058 ], [ -119.121393424999923, 50.958126759000017 ], [ -119.122111850999971, 50.958170894000091 ], [ -119.123790008999947, 50.9582739700001 ], [ -119.124016010999952, 50.956812023000019 ], [ -119.124839591999944, 50.956862600000079 ], [ -119.124932801999975, 50.956259542000055 ], [ -119.128916509999939, 50.956504099000099 ], [ -119.128529306999937, 50.957609109000039 ], [ -119.127981717999972, 50.958393799000085 ], [ -119.127421699999957, 50.958943490000117 ], [ -119.125758790999896, 50.959936205000041 ], [ -119.124755888999957, 50.960097089000087 ], [ -119.123688191999989, 50.960423315000114 ], [ -119.123206708999959, 50.960485984000037 ], [ -119.122211596999975, 50.960863394000036 ], [ -119.121872095999947, 50.960923201000107 ], [ -119.121358602999962, 50.960897606000039 ], [ -119.121247520999958, 50.960831318000082 ], [ -119.119105608999959, 50.959553088000099 ], [ -119.118483392999948, 50.959339507000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3504250", "BldgCostT": "1945000", "sL_LossRatio": "1", "sL_AssetLoss": "34", "sL_BldgLoss": "34", "sL_StrLoss": "34", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E523AD2146D15DC0EB7827FAD7764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26971249599994, 50.928189285000023 ], [ -119.270136598999983, 50.92796680400005 ], [ -119.270838295, 50.927601203000087 ], [ -119.270946841999958, 50.927569244000082 ], [ -119.271227519999982, 50.92748660000003 ], [ -119.271631897999896, 50.9274603920001 ], [ -119.271953605999968, 50.927489710000032 ], [ -119.272939700999984, 50.927702284000105 ], [ -119.27388360799992, 50.92784469800003 ], [ -119.275918322999956, 50.928307234000087 ], [ -119.275881141999946, 50.928553387000086 ], [ -119.274830518999963, 50.928390005000033 ], [ -119.27236141899999, 50.928240399000067 ], [ -119.271622180999941, 50.928263197000057 ], [ -119.270352700000018, 50.928755988000027 ], [ -119.269719499999937, 50.928912700000112 ], [ -119.265440208999948, 50.929282910000047 ], [ -119.26327311299994, 50.929709677000083 ], [ -119.263094815999963, 50.929698943000083 ], [ -119.263132153999948, 50.929452234000031 ], [ -119.265375292999948, 50.928979312000131 ], [ -119.26593950699997, 50.928832789000126 ], [ -119.266911697999916, 50.928645996000064 ], [ -119.267943610999964, 50.928541700000032 ], [ -119.268724285999937, 50.928462803000038 ], [ -119.26971249599994, 50.928189285000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3504250", "BldgCostT": "1945000", "sL_LossRatio": "1", "sL_AssetLoss": "33.4", "sL_BldgLoss": "33.4", "sL_StrLoss": "33.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C68F4A148ED45DC0786F98AA2C764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.323725498999977, 50.921953510000016 ], [ -119.324084798999962, 50.921941585000091 ], [ -119.324706813999981, 50.921989510000039 ], [ -119.324923412, 50.921975394000057 ], [ -119.325126202, 50.921928792000074 ], [ -119.325303623999901, 50.921851899000075 ], [ -119.325446503999927, 50.921747703 ], [ -119.325618009999957, 50.921538694000049 ], [ -119.325959602999944, 50.920575898000109 ], [ -119.326461893, 50.919848195000135 ], [ -119.326705906999933, 50.919622792000055 ], [ -119.327135306999963, 50.919333607000084 ], [ -119.327520705000012, 50.919175294000105 ], [ -119.328049383999925, 50.919052739000101 ], [ -119.32806390699993, 50.919049362000067 ], [ -119.329404702999952, 50.918738464000064 ], [ -119.329414209, 50.918736236000065 ], [ -119.329674511999912, 50.91867591500003 ], [ -119.330388809999988, 50.91857494500006 ], [ -119.331146894999932, 50.918467793000069 ], [ -119.331254277999975, 50.918458188000059 ], [ -119.331639426999971, 50.918423652000058 ], [ -119.331620927999907, 50.918547183000051 ], [ -119.331266305999975, 50.918551507000103 ], [ -119.329670492, 50.918790795000064 ], [ -119.32955730799992, 50.918825907000056 ], [ -119.327498717999902, 50.919464500000096 ], [ -119.326497397999958, 50.920230692000089 ], [ -119.32608510299994, 50.920804584000081 ], [ -119.325665599999951, 50.92178448700006 ], [ -119.325363301999971, 50.922025202000064 ], [ -119.325083874999962, 50.922102093000021 ], [ -119.323744799999986, 50.92209349000013 ], [ -119.323342211999886, 50.922317093000117 ], [ -119.322936720999948, 50.922720199000111 ], [ -119.321370312999989, 50.922985104000119 ], [ -119.32059650399998, 50.923180191000029 ], [ -119.319893, 50.9236088910001 ], [ -119.319513586999904, 50.923976302000014 ], [ -119.319201610999983, 50.92456740500009 ], [ -119.31870429599995, 50.92516979600007 ], [ -119.317849790999901, 50.925753789000048 ], [ -119.315865885999955, 50.926467290000048 ], [ -119.314767490999941, 50.926984316000116 ], [ -119.314077083999948, 50.927142408000073 ], [ -119.31145387399999, 50.927404957000086 ], [ -119.311492261999902, 50.927149446000151 ], [ -119.312113914999955, 50.927099009000152 ], [ -119.312420838999955, 50.927074105000031 ], [ -119.313836592999905, 50.926959195000101 ], [ -119.314611193999966, 50.926771903 ], [ -119.315064796999962, 50.92659379400007 ], [ -119.315586572999905, 50.926388921000047 ], [ -119.316196307000013, 50.92614950300004 ], [ -119.317131802999924, 50.92587158800012 ], [ -119.317832107999948, 50.925511997000086 ], [ -119.318239905999974, 50.925234206000113 ], [ -119.318837378999902, 50.924483296000062 ], [ -119.319226622999921, 50.923963417000053 ], [ -119.319289923999989, 50.923878899000023 ], [ -119.319575183999987, 50.923616295000038 ], [ -119.32001859599994, 50.923310809000078 ], [ -119.320608605999936, 50.92302850800008 ], [ -119.321331728999979, 50.922862670000036 ], [ -119.322119127999969, 50.922682100000074 ], [ -119.322517579999953, 50.922551601000123 ], [ -119.323312995999956, 50.922082213000067 ], [ -119.323725498999977, 50.921953510000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10363077", "BldgCostT": "5907409", "sL_LossRatio": "1", "sL_AssetLoss": "465.3", "sL_BldgLoss": "465.3", "sL_StrLoss": "465.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058C3870A3CCA5DC033B04456ED6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.157360509999947, 50.833406808000078 ], [ -119.163017007999926, 50.833753365000092 ], [ -119.162468957999948, 50.837329055000097 ], [ -119.156812011999961, 50.836982471000063 ], [ -119.157360509999947, 50.833406808000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3139811", "BldgCostT": "1753190", "sL_LossRatio": "1", "sL_AssetLoss": "28.9", "sL_BldgLoss": "28.9", "sL_StrLoss": "28.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D9B23A4134CF5DC0AD78763B73724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234616309999964, 50.8951588420001 ], [ -119.234750148999964, 50.894277508000087 ], [ -119.235312211999926, 50.894282989000068 ], [ -119.235945175999973, 50.894163395000085 ], [ -119.237235195999943, 50.893770310000079 ], [ -119.238041694999978, 50.89369200800008 ], [ -119.239956494999888, 50.893277505000071 ], [ -119.240621726999919, 50.893257283000068 ], [ -119.240588683999988, 50.893475068000065 ], [ -119.240524646999958, 50.893503229000054 ], [ -119.240428685999944, 50.893569820000096 ], [ -119.24033228699993, 50.893627317000025 ], [ -119.24008230199999, 50.893734869000106 ], [ -119.239749682999928, 50.893890427000031 ], [ -119.239611202999953, 50.893958262000147 ], [ -119.23948739899997, 50.894034784000077 ], [ -119.239348920999973, 50.89410261900008 ], [ -119.239211365999935, 50.894188652000132 ], [ -119.239059228999963, 50.894266001000091 ], [ -119.23893372, 50.894322698000067 ], [ -119.238779710999935, 50.894379986000096 ], [ -119.238640411999896, 50.894446008000038 ], [ -119.238486419999987, 50.894503262000065 ], [ -119.238359606999936, 50.894532991000062 ], [ -119.238218617999962, 50.894562966000073 ], [ -119.238048701999944, 50.894584575000096 ], [ -119.237949103999966, 50.894586711000059 ], [ -119.237864585999915, 50.894606524 ], [ -119.237765395999958, 50.894617590000081 ], [ -119.237580511000019, 50.894621548000039 ], [ -119.237409363999944, 50.894616169000123 ], [ -119.23733777299999, 50.894608723000097 ], [ -119.237238176999966, 50.894610857000032 ], [ -119.23698071099993, 50.894589332000052 ], [ -119.236411509999954, 50.894601439000049 ], [ -119.236325686999976, 50.894594283000096 ], [ -119.236069562999901, 50.894599710000129 ], [ -119.235971214999964, 50.894628799000053 ], [ -119.235889187999959, 50.89470263300008 ], [ -119.235791315999947, 50.894740747000029 ], [ -119.235679137999966, 50.89477911300007 ], [ -119.235581632999967, 50.894826227000074 ], [ -119.235469930999912, 50.894873617 ], [ -119.235357402999909, 50.894903007000046 ], [ -119.235287063, 50.894922515000104 ], [ -119.2351331, 50.894979810000059 ], [ -119.235063639999979, 50.895017272000096 ], [ -119.234979503999966, 50.895046104000038 ], [ -119.234881633000029, 50.895084159000142 ], [ -119.234783260999976, 50.895113280000054 ], [ -119.234698725, 50.895133067000124 ], [ -119.234616309999964, 50.8951588420001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16455750", "BldgCostT": "11085000", "sL_LossRatio": "1", "sL_AssetLoss": "1162", "sL_BldgLoss": "1162", "sL_StrLoss": "1162", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D572699A8D55DC0C987EAF78E6E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.337305901, 50.869238406000072 ], [ -119.33775642099998, 50.866223733000055 ], [ -119.336644435999972, 50.866157430000015 ], [ -119.336451199999942, 50.867450313000099 ], [ -119.330789111999977, 50.86711252900011 ], [ -119.330811714, 50.866961434000096 ], [ -119.330560214999963, 50.866946424000062 ], [ -119.330900754999945, 50.864669922000083 ], [ -119.330356268999964, 50.864637423000026 ], [ -119.33089122899996, 50.861061034000016 ], [ -119.331505346999975, 50.861097689000069 ], [ -119.331530808999915, 50.860927448000048 ], [ -119.337192117999976, 50.861265196000055 ], [ -119.337008696999987, 50.862492657000139 ], [ -119.337214284999973, 50.862504916000013 ], [ -119.337517470999956, 50.860475884000067 ], [ -119.339288848999956, 50.860581500000073 ], [ -119.339416231999977, 50.859728726000114 ], [ -119.339486619999931, 50.859732922000113 ], [ -119.339529442999947, 50.859446228000131 ], [ -119.342352063999925, 50.859614461000092 ], [ -119.342474651999908, 50.858793394000074 ], [ -119.344585644999938, 50.858919166000078 ], [ -119.344697689999975, 50.858168443000068 ], [ -119.34703311699991, 50.85830753900008 ], [ -119.347028912, 50.858368200000029 ], [ -119.347141194999907, 50.859213807000067 ], [ -119.347123817999972, 50.85939770300007 ], [ -119.347053327999944, 50.85951227200006 ], [ -119.34699107199999, 50.859613446000047 ], [ -119.346884824999961, 50.859786145000058 ], [ -119.346808998999961, 50.859909388000069 ], [ -119.346547108999943, 50.860439512000021 ], [ -119.346340587999975, 50.860770891000101 ], [ -119.346147133999963, 50.860991134000116 ], [ -119.346049902999965, 50.861101801000054 ], [ -119.345795209999935, 50.861313088000024 ], [ -119.3456897, 50.861400598000053 ], [ -119.345240011, 50.861859112000076 ], [ -119.34499228599995, 50.862351292000028 ], [ -119.344829295999915, 50.862937001000127 ], [ -119.344790287999899, 50.862984747000041 ], [ -119.344707000999961, 50.863086586000072 ], [ -119.344706644999917, 50.863086776000053 ], [ -119.344131589999947, 50.863353602000039 ], [ -119.343775819999976, 50.863460509000042 ], [ -119.343562193999958, 50.863465887000139 ], [ -119.342907629999942, 50.86340443600006 ], [ -119.34283185799994, 50.863397328000076 ], [ -119.342703436999955, 50.863468652000094 ], [ -119.342928338999968, 50.865502887000041 ], [ -119.342934965999959, 50.867156695000119 ], [ -119.342934957999887, 50.867157238000075 ], [ -119.34182793, 50.867160758000082 ], [ -119.34182002299994, 50.868486582000109 ], [ -119.341809455999979, 50.869506821000101 ], [ -119.337305901, 50.869238406000072 ] ], [ [ -119.339592451999948, 50.865323648000114 ], [ -119.33971042899999, 50.864533890000146 ], [ -119.339661611999929, 50.864530980000048 ], [ -119.339703538999984, 50.864250313000134 ], [ -119.339327654, 50.8642279070001 ], [ -119.339167739999965, 50.865298332000059 ], [ -119.339592451999948, 50.865323648000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "146.7", "sL_BldgLoss": "146.7", "sL_StrLoss": "146.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000806B1FD979D05DC0FE391625B2714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254875611000031, 50.886290252000052 ], [ -119.260539550999965, 50.886631863000055 ], [ -119.259998654999947, 50.890207810000049 ], [ -119.254334265999915, 50.889866173000087 ], [ -119.254875611000031, 50.886290252000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7776833", "BldgCostT": "5363333", "sL_LossRatio": "1", "sL_AssetLoss": "370.3", "sL_BldgLoss": "370.3", "sL_StrLoss": "370.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065CFB76835D45DC04582674A046B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.312689231999911, 50.836253945000067 ], [ -119.313152601999917, 50.833162365000135 ], [ -119.313218357, 50.833166303000084 ], [ -119.313294523999929, 50.832658067000089 ], [ -119.313583125999912, 50.832675351 ], [ -119.313703651999958, 50.831871074000048 ], [ -119.319361151999956, 50.832209734000102 ], [ -119.319339764999924, 50.832352579000052 ], [ -119.31961635499999, 50.83236912800006 ], [ -119.319581320999959, 50.832603113000062 ], [ -119.319919633999959, 50.832623355000074 ], [ -119.319923478999939, 50.833438193000092 ], [ -119.319822473, 50.834112811000068 ], [ -119.319572484999952, 50.835782420000044 ], [ -119.319791821999971, 50.835795542000056 ], [ -119.319489106999967, 50.836774620000064 ], [ -119.319311190999926, 50.837123936000111 ], [ -119.319214522999985, 50.837226400000119 ], [ -119.319086229999968, 50.83731400300011 ], [ -119.318952179999911, 50.837405562000107 ], [ -119.318459623999971, 50.837644942000075 ], [ -119.318199342999932, 50.837801040000109 ], [ -119.318149160999951, 50.837831130000097 ], [ -119.317908680999921, 50.838036280000033 ], [ -119.317897164, 50.838046101000067 ], [ -119.317881512999961, 50.838065809000049 ], [ -119.316633688999929, 50.839639394000123 ], [ -119.316387673999941, 50.84006221500001 ], [ -119.316297508999966, 50.840359029000034 ], [ -119.316251554999937, 50.840665697000084 ], [ -119.316251557999948, 50.840671169000096 ], [ -119.311721572999929, 50.840399952000027 ], [ -119.312064613999922, 50.838111801000053 ], [ -119.312257731999935, 50.836823553000016 ], [ -119.312480788999935, 50.836836912000138 ], [ -119.312569250999942, 50.836246759000097 ], [ -119.312689231999911, 50.836253945000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "31.7", "sL_BldgLoss": "31.7", "sL_StrLoss": "31.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029A215CE64D45DC07DFE2037686A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.318568221999939, 50.830430271000047 ], [ -119.318963355999969, 50.83043600400002 ], [ -119.31896366399998, 50.830441807000078 ], [ -119.319909460999952, 50.830472066000013 ], [ -119.319910424999975, 50.830680818000133 ], [ -119.319916364999983, 50.831930639000106 ], [ -119.319917656999934, 50.832204223000119 ], [ -119.317228848999932, 50.832043320000139 ], [ -119.317458952999957, 50.830506935000081 ], [ -119.318568221999939, 50.830430271000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22852083", "BldgCostT": "15288333", "sL_LossRatio": "1", "sL_AssetLoss": "1135.7", "sL_BldgLoss": "1135.7", "sL_StrLoss": "1135.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FDB14B099D35DC087E33B297A6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.301767991999967, 50.863795833000054 ], [ -119.301817191999973, 50.86346834600009 ], [ -119.300460372999979, 50.863386998000053 ], [ -119.300617372999966, 50.862342142000081 ], [ -119.297297242999988, 50.862143013000079 ], [ -119.297834817999927, 50.858566772000074 ], [ -119.301555919999942, 50.858789944000101 ], [ -119.301581651999967, 50.85861865800009 ], [ -119.305288847999975, 50.858840870000051 ], [ -119.305477119999949, 50.857586843000028 ], [ -119.303579193999937, 50.857473095000074 ], [ -119.304072095999985, 50.854190602000095 ], [ -119.300896837999971, 50.854000227000078 ], [ -119.301434026999942, 50.850423936000048 ], [ -119.302192479999945, 50.850469418000088 ], [ -119.302276918999922, 50.8499071540001 ], [ -119.302659499999905, 50.849930094000065 ], [ -119.302701115999966, 50.849652963000025 ], [ -119.303560949999962, 50.849704516000052 ], [ -119.303785849999926, 50.848206585000085 ], [ -119.309445340999986, 50.848545740000112 ], [ -119.30925330099997, 50.849825892000077 ], [ -119.310394000999949, 50.849894215000049 ], [ -119.31008884799995, 50.851928584000106 ], [ -119.310752698999949, 50.851968339000081 ], [ -119.31122328899994, 50.848830656000125 ], [ -119.313227206999954, 50.848950642000084 ], [ -119.313235697999929, 50.848894002000122 ], [ -119.315582342999946, 50.849034463000045 ], [ -119.315318687999977, 50.849777174000103 ], [ -119.31485977899996, 50.85078172300009 ], [ -119.314338495999962, 50.851688070000115 ], [ -119.314334984999988, 50.851694247000118 ], [ -119.31425016899999, 50.851841694000051 ], [ -119.314202355999953, 50.851924837000134 ], [ -119.314164589999905, 50.851990445000084 ], [ -119.313948790999945, 50.852437150000092 ], [ -119.313892333999917, 50.852554040000044 ], [ -119.313760925999944, 50.852826007000047 ], [ -119.313254189999952, 50.853825005000026 ], [ -119.31308762299993, 50.854298491000073 ], [ -119.312584462999936, 50.855043644000041 ], [ -119.3124763799999, 50.855203705000093 ], [ -119.311719892999946, 50.856036401000033 ], [ -119.311711296999974, 50.856045851000047 ], [ -119.311399009999931, 50.856389596000099 ], [ -119.311133710999954, 50.856644292000055 ], [ -119.31098481399998, 50.856754127000059 ], [ -119.310658489999938, 50.856994805000049 ], [ -119.310266586999902, 50.857237397000119 ], [ -119.310010466999955, 50.857503073000061 ], [ -119.309292697999965, 50.857460089000071 ], [ -119.309268468999946, 50.857621558000062 ], [ -119.309861977999915, 50.857657101000022 ], [ -119.309818491999977, 50.857702208000049 ], [ -119.309582397999947, 50.857895606000092 ], [ -119.308954179999944, 50.858258661000029 ], [ -119.308885093999919, 50.858298604000048 ], [ -119.308768346999912, 50.858379195000069 ], [ -119.308566529999936, 50.858518505000106 ], [ -119.308418059999923, 50.858644834000131 ], [ -119.308222824, 50.858811005000121 ], [ -119.307657685999956, 50.859340901000074 ], [ -119.307470713999948, 50.859740198000054 ], [ -119.307415694, 50.860268296000044 ], [ -119.307448034999965, 50.860468905000133 ], [ -119.307497085999969, 50.860773562000084 ], [ -119.307530296999985, 50.860979695000026 ], [ -119.307447310999947, 50.861294894000039 ], [ -119.307293477999963, 50.861482390000042 ], [ -119.306936397999905, 50.861701884000134 ], [ -119.305935416999944, 50.862110101000106 ], [ -119.30567441399991, 50.862260406000061 ], [ -119.305437503999912, 50.862440188000079 ], [ -119.305139412999964, 50.862760596 ], [ -119.304179400999928, 50.863940367000033 ], [ -119.301767991999967, 50.863795833000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.9", "sL_BldgLoss": "58.9", "sL_StrLoss": "58.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023A3039230CF5DC05B0A06DF4D724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.235094951999884, 50.892006813000073 ], [ -119.240759464999911, 50.892349420000158 ], [ -119.240621726999919, 50.893257283000068 ], [ -119.239956494999888, 50.893277505000071 ], [ -119.238041694999978, 50.89369200800008 ], [ -119.237235195999943, 50.893770310000079 ], [ -119.235945175999973, 50.894163395000085 ], [ -119.235312211999926, 50.894282989000068 ], [ -119.234750148999964, 50.894277508000087 ], [ -119.235094951999884, 50.892006813000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021358", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20623917", "BldgCostT": "13751667", "sL_LossRatio": "1", "sL_AssetLoss": "1058", "sL_BldgLoss": "1058", "sL_StrLoss": "1058", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006AD971124D35DC0D11464782A6F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.294285228999968, 50.872330811000069 ], [ -119.294446165999929, 50.871260969000083 ], [ -119.29318826799999, 50.871185483 ], [ -119.293355374999962, 50.870074779000049 ], [ -119.288218186999941, 50.869766348000034 ], [ -119.288276479999936, 50.869379178000031 ], [ -119.287816300999935, 50.869351538000039 ], [ -119.288354719999944, 50.865775372000058 ], [ -119.289109893999921, 50.865820730000038 ], [ -119.289174505999966, 50.865391489000061 ], [ -119.292094285999895, 50.865566812000139 ], [ -119.292208806999966, 50.864805657000062 ], [ -119.29787031099994, 50.865145390000123 ], [ -119.297858711999979, 50.865222549000038 ], [ -119.299267672999989, 50.865307052000055 ], [ -119.29908053099993, 50.866552155000093 ], [ -119.299523989999912, 50.866543415000137 ], [ -119.29951072199999, 50.866273851000123 ], [ -119.299694366999944, 50.866270232000069 ], [ -119.299787726999952, 50.865649033000103 ], [ -119.300788107999949, 50.865709015000078 ], [ -119.301613997999965, 50.865692723000116 ], [ -119.30160071799996, 50.865423161000066 ], [ -119.302026676999944, 50.865414756000078 ], [ -119.302013395999921, 50.865145193000032 ], [ -119.302439351999936, 50.865136786000058 ], [ -119.302426067999988, 50.864867223000033 ], [ -119.303441466, 50.864847178000055 ], [ -119.303272589999935, 50.865054695000033 ], [ -119.303505, 50.865104711000107 ], [ -119.303851091999931, 50.865101118000041 ], [ -119.304141942999934, 50.865078154000095 ], [ -119.304164641999989, 50.865538414000135 ], [ -119.307846991999938, 50.865759016000034 ], [ -119.307721431999965, 50.866595477000104 ], [ -119.309910484999989, 50.866726560000053 ], [ -119.309373778999955, 50.870302825000117 ], [ -119.308084763999958, 50.870225644000094 ], [ -119.307782518999971, 50.872238957000057 ], [ -119.302120042999945, 50.87189972800013 ], [ -119.302152862999918, 50.871681298000055 ], [ -119.301766147, 50.871658119000131 ], [ -119.301907963999938, 50.870714301000071 ], [ -119.301506103999927, 50.870690214000064 ], [ -119.301559255999933, 50.870336497000046 ], [ -119.300309749999911, 50.870261593000073 ], [ -119.29994770199994, 50.872670436000085 ], [ -119.295992112999954, 50.872433217 ], [ -119.294285228999968, 50.872330811000069 ] ], [ [ -119.299368967999968, 50.868435246000011 ], [ -119.299450321000023, 50.867893993000067 ], [ -119.298877139999945, 50.867905290000081 ], [ -119.298875199999927, 50.867918194000062 ], [ -119.299388149999984, 50.86794895400007 ], [ -119.299314896999974, 50.868436313000139 ], [ -119.299368967999968, 50.868435246000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "86767000", "BldgCostT": "58165000", "sL_LossRatio": "0.999104070453007", "sL_AssetLoss": "4978.07", "sL_BldgLoss": "4973.61", "sL_StrLoss": "4972", "sL_NStrLoss": "1.61", "sL_ContLoss": "4.46", "geom_point": "0101000020E6100000522BAF0927D35DC0426C55B71F704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.28618050599998, 50.888610957000076 ], [ -119.286215061999926, 50.888381609000128 ], [ -119.285178089999974, 50.888319330000066 ], [ -119.285213541999937, 50.888084072000041 ], [ -119.280933470999955, 50.887826914000101 ], [ -119.280965211999927, 50.887616418000064 ], [ -119.280087957999967, 50.887563690000022 ], [ -119.280150243999955, 50.887150670000054 ], [ -119.277593099999976, 50.886996929000148 ], [ -119.277408299999962, 50.886985817000017 ], [ -119.277414594999939, 50.886944095000054 ], [ -119.273658433999969, 50.887017350000072 ], [ -119.273619049, 50.886208646000107 ], [ -119.274897516999914, 50.886183727000031 ], [ -119.27487124799994, 50.885644593000073 ], [ -119.276149702999959, 50.885619660000032 ], [ -119.276136560999973, 50.885350092000081 ], [ -119.276988855999946, 50.885333462000091 ], [ -119.276962562999969, 50.884794329000144 ], [ -119.277070639999963, 50.884792219000111 ], [ -119.277378026999912, 50.882754659000085 ], [ -119.28304169099998, 50.883095134 ], [ -119.282991817, 50.883426027000048 ], [ -119.283019796999923, 50.883427708000028 ], [ -119.283096067999935, 50.882921689000028 ], [ -119.285902131999975, 50.883090269000029 ], [ -119.28597295899999, 50.882620155000055 ], [ -119.290180719999952, 50.88287281000008 ], [ -119.290250182999941, 50.882411452000035 ], [ -119.290624075999972, 50.882433895000105 ], [ -119.290637870999902, 50.882342261000076 ], [ -119.291406874999922, 50.882388416000047 ], [ -119.29146605399994, 50.881995280000062 ], [ -119.29198243799999, 50.882026269000093 ], [ -119.292026144999909, 50.88173589200008 ], [ -119.292761584999965, 50.881780023000033 ], [ -119.292832833999952, 50.881306609000077 ], [ -119.293747364999916, 50.881361481000106 ], [ -119.293767896999967, 50.881225030000095 ], [ -119.295478364999937, 50.881327637000112 ], [ -119.295547140999957, 50.880870470000033 ], [ -119.298619411999965, 50.881054703000096 ], [ -119.298701493999928, 50.880508828000131 ], [ -119.29627117699998, 50.880363097000071 ], [ -119.296260285999963, 50.880435502000083 ], [ -119.290596856999969, 50.880095694000019 ], [ -119.290701064999908, 50.879403480000079 ], [ -119.290584704999915, 50.879396495000073 ], [ -119.290991386999949, 50.876694901000121 ], [ -119.288208818000015, 50.876527835000068 ], [ -119.288550232999981, 50.874260476000046 ], [ -119.286882796999947, 50.874160330000031 ], [ -119.286855822999911, 50.874339431000081 ], [ -119.281193238999975, 50.873999146000116 ], [ -119.281206165999919, 50.873913385 ], [ -119.280847733999963, 50.87389183600007 ], [ -119.281386765, 50.8703157220001 ], [ -119.281670018999947, 50.870332752000053 ], [ -119.281679509999918, 50.870269778000051 ], [ -119.280643378999969, 50.870207480000033 ], [ -119.280430186999951, 50.871621784000084 ], [ -119.27888983299999, 50.871529152000086 ], [ -119.278745162999954, 50.872488621000088 ], [ -119.276782242999928, 50.872370546000077 ], [ -119.27665341299999, 50.873224668000056 ], [ -119.275428046999977, 50.873150940000066 ], [ -119.275307993999959, 50.873946696000132 ], [ -119.274651598999952, 50.873907197000051 ], [ -119.274515209999961, 50.874811112000046 ], [ -119.268852658999961, 50.874470203000044 ], [ -119.269001718999959, 50.873483143000072 ], [ -119.268981232999977, 50.873481909000098 ], [ -119.269521208999976, 50.869905850000066 ], [ -119.271423293999987, 50.870020397000111 ], [ -119.271530853999977, 50.869307795000026 ], [ -119.273493624999944, 50.869425962000044 ], [ -119.273622503999917, 50.868571840000065 ], [ -119.275162746, 50.868664545000058 ], [ -119.27530748099997, 50.867705078000036 ], [ -119.27727768499993, 50.867823630000075 ], [ -119.277454496999937, 50.86665113400008 ], [ -119.277490959999938, 50.866409325000127 ], [ -119.279269768999896, 50.866516330000088 ], [ -119.28315255499993, 50.866749801000026 ], [ -119.283134656999934, 50.866868590000074 ], [ -119.287862212000022, 50.867152671000106 ], [ -119.287416935999957, 50.870109917000086 ], [ -119.287491331999917, 50.8701143870001 ], [ -119.28747581499999, 50.87021743100005 ], [ -119.288681599999919, 50.870289853000052 ], [ -119.288673470999981, 50.870343851000023 ], [ -119.289470777999966, 50.870391732000073 ], [ -119.289423701999965, 50.87070444800009 ], [ -119.289614895999975, 50.870715928000081 ], [ -119.289273560999959, 50.872983299000047 ], [ -119.294225286999975, 50.873280530000045 ], [ -119.294409800999958, 50.873291601000084 ], [ -119.294342822999951, 50.87373682600002 ], [ -119.298071713, 50.873960501000084 ], [ -119.297953818999957, 50.874744594000106 ], [ -119.302632724, 50.875025077000039 ], [ -119.302602648999937, 50.875225239000024 ], [ -119.304256486999961, 50.875324333000016 ], [ -119.304093998, 50.876405969000096 ], [ -119.30488104199999, 50.876453117000025 ], [ -119.30484720699998, 50.876678365000096 ], [ -119.30639340799992, 50.876770976000067 ], [ -119.306137617999966, 50.878474167000078 ], [ -119.307000576999954, 50.878525845000141 ], [ -119.307049489999912, 50.878200127000092 ], [ -119.307959732999947, 50.878254629000054 ], [ -119.308010463999935, 50.877916748000082 ], [ -119.308848796999939, 50.877966938000057 ], [ -119.308912745999947, 50.877540967000101 ], [ -119.309231822999891, 50.877560068000101 ], [ -119.309273343999976, 50.877283475000091 ], [ -119.312394499000035, 50.877470270000074 ], [ -119.312395297999927, 50.87746494800011 ], [ -119.313475294999989, 50.877529563000088 ], [ -119.313633198999923, 50.876476974000049 ], [ -119.314724393999953, 50.876542248000099 ], [ -119.314756558999974, 50.876327798000055 ], [ -119.315417887999985, 50.876367353000049 ], [ -119.315699721999962, 50.874488016000107 ], [ -119.31630411699993, 50.874524162000107 ], [ -119.316355012999963, 50.874184731000064 ], [ -119.317463979999971, 50.87425104500015 ], [ -119.317701772999925, 50.872664839000095 ], [ -119.317586649999967, 50.872657955000058 ], [ -119.31762695499998, 50.872389087000052 ], [ -119.317487564999908, 50.872380752000012 ], [ -119.317561701999921, 50.871886203000031 ], [ -119.317430397999985, 50.871878352000117 ], [ -119.317464623999953, 50.871650039 ], [ -119.317294209999929, 50.871639848000072 ], [ -119.317463606999979, 50.870509839000064 ], [ -119.317166083999922, 50.870492047000049 ], [ -119.317239427999979, 50.870002795000097 ], [ -119.312993985999952, 50.869748833000138 ], [ -119.313385595999975, 50.867137998000118 ], [ -119.313493610999927, 50.86715979500007 ], [ -119.313946209999955, 50.867141706000083 ], [ -119.314315510999947, 50.867154805000084 ], [ -119.31460553099997, 50.867180556000044 ], [ -119.314915299999939, 50.867208040000058 ], [ -119.315252790000031, 50.86723800700004 ], [ -119.315802089999949, 50.867194093000165 ], [ -119.315868458999944, 50.867192376000084 ], [ -119.317013570999976, 50.867162898000089 ], [ -119.317046579999953, 50.867143343000087 ], [ -119.317189078999903, 50.867058797000034 ], [ -119.317498583999949, 50.866356496000044 ], [ -119.31826591399998, 50.865668095000039 ], [ -119.318630701999908, 50.865473405000046 ], [ -119.318901408999963, 50.865430094000082 ], [ -119.318894309999948, 50.865373543000018 ], [ -119.318883202999984, 50.865284595000055 ], [ -119.318944197999883, 50.865116012000044 ], [ -119.319074883999974, 50.864938903000059 ], [ -119.319182605999913, 50.864830694000062 ], [ -119.319403208999987, 50.864609126000055 ], [ -119.319623673999956, 50.86438768400005 ], [ -119.319680095999942, 50.8643310100001 ], [ -119.319861010999929, 50.863981790000125 ], [ -119.31987287199999, 50.862495073000154 ], [ -119.3198830799999, 50.861212802000068 ], [ -119.319908880999961, 50.861012313000039 ], [ -119.320007084999972, 50.860833310000018 ], [ -119.320023414, 50.860822058000068 ], [ -119.320223684999974, 50.860683792000096 ], [ -119.320685955999977, 50.860591230000104 ], [ -119.320847904999965, 50.86055879500006 ], [ -119.321278310999929, 50.860431106000142 ], [ -119.322185103999942, 50.860020787000046 ], [ -119.322564507999971, 50.859878035000101 ], [ -119.323034089, 50.859701333000032 ], [ -119.323074788999946, 50.859685993000056 ], [ -119.323896667999961, 50.859270598000059 ], [ -119.324425871999978, 50.859130791000034 ], [ -119.323999741999941, 50.861977010000075 ], [ -119.323417015999951, 50.86194219 ], [ -119.323180996999966, 50.863518323000029 ], [ -119.323483171999953, 50.863536379000053 ], [ -119.323364093999942, 50.864331570000111 ], [ -119.32518287399995, 50.864440233000067 ], [ -119.32464741699999, 50.868016581000063 ], [ -119.323771329999914, 50.86796424300011 ], [ -119.32368362699998, 50.868549884000075 ], [ -119.324175496999885, 50.868579270000048 ], [ -119.324144706999959, 50.868784881000117 ], [ -119.324633095999928, 50.868814057000066 ], [ -119.324534063999934, 50.869475427000125 ], [ -119.325955401, 50.86956032200009 ], [ -119.325939779999942, 50.869664667000052 ], [ -119.326489688999942, 50.869697507000048 ], [ -119.326415651999952, 50.870192083000099 ], [ -119.327043806999939, 50.870229593000026 ], [ -119.326933147999924, 50.870968843000071 ], [ -119.328209721999912, 50.871045063000068 ], [ -119.327674426999977, 50.87462139800013 ], [ -119.326943515, 50.874577760000058 ], [ -119.326886511999973, 50.874958515000102 ], [ -119.324951719999945, 50.87484297700005 ], [ -119.32489504099999, 50.875221460000098 ], [ -119.32403142599992, 50.875169878000079 ], [ -119.323875252999954, 50.87621258100009 ], [ -119.322603024, 50.876136580000065 ], [ -119.322428398999932, 50.877302195000048 ], [ -119.318963147999966, 50.877423877000105 ], [ -119.319689712999931, 50.881362938000073 ], [ -119.307312157999917, 50.881877367000079 ], [ -119.3074688499999, 50.883038233000093 ], [ -119.30460477099993, 50.883102385000015 ], [ -119.304593717999936, 50.882878442000063 ], [ -119.304064766999915, 50.882846759000145 ], [ -119.304024407999947, 50.883115374000084 ], [ -119.303336482999896, 50.883130768000107 ], [ -119.303157897999967, 50.881838261000027 ], [ -119.302762709, 50.881834811000026 ], [ -119.301702406999979, 50.881874098000061 ], [ -119.300250218999977, 50.882040589000063 ], [ -119.300030099999972, 50.882022000000127 ], [ -119.29985750899999, 50.881962902000062 ], [ -119.299616019999959, 50.882020593000092 ], [ -119.298594292999951, 50.882287714000036 ], [ -119.298177607999946, 50.882474687000105 ], [ -119.297856304999982, 50.882653904000072 ], [ -119.297701199999921, 50.882744801000044 ], [ -119.296858222999944, 50.883258 ], [ -119.295685793999922, 50.883957203000129 ], [ -119.29523628699999, 50.884207911 ], [ -119.295181995999926, 50.884238201000102 ], [ -119.295120659999924, 50.884278913000053 ], [ -119.295505897999973, 50.886760788000061 ], [ -119.295064023999942, 50.886734286000021 ], [ -119.294851265999966, 50.888148218000019 ], [ -119.293819940999967, 50.888086358000088 ], [ -119.293767733999957, 50.888433242000126 ], [ -119.291951003999884, 50.888324249000085 ], [ -119.291910561999927, 50.888592884000069 ], [ -119.291898994999897, 50.888592190000089 ], [ -119.291898420999956, 50.888596005000082 ], [ -119.289352247999929, 50.888801387000107 ], [ -119.28618050599998, 50.888610957000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "95.8", "sL_BldgLoss": "95.8", "sL_StrLoss": "95.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F4EDE533BD45DC0DBA63640026C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.315505243999937, 50.845679347000029 ], [ -119.315563432999923, 50.845291054000072 ], [ -119.31476604599996, 50.845243328000016 ], [ -119.31482287399993, 50.844864159000075 ], [ -119.314369460999927, 50.844837018000099 ], [ -119.31441823699997, 50.844511580000066 ], [ -119.314296881999951, 50.844504316000062 ], [ -119.314832883999941, 50.840927921000031 ], [ -119.316251799999947, 50.841012853000059 ], [ -119.316252711999965, 50.842302112000041 ], [ -119.316252757999948, 50.842372583999989 ], [ -119.316335058999968, 50.842661673000087 ], [ -119.316649445999957, 50.843059361000023 ], [ -119.317001350999988, 50.843403782000088 ], [ -119.317151806, 50.843551044000073 ], [ -119.317169774999968, 50.84356863700004 ], [ -119.31757712199996, 50.843884366000019 ], [ -119.317739943999953, 50.844010544000064 ], [ -119.318082964, 50.844276396000083 ], [ -119.318142297999927, 50.844347147000036 ], [ -119.318294898999937, 50.844529057000045 ], [ -119.318494575999935, 50.844968596000065 ], [ -119.318579220999965, 50.845270645000063 ], [ -119.318628530999916, 50.845446604000067 ], [ -119.31864290399993, 50.845779446000023 ], [ -119.318627995999961, 50.845866201000042 ], [ -119.315505243999937, 50.845679347000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3627417", "BldgCostT": "2501667", "sL_LossRatio": "1", "sL_AssetLoss": "185.3", "sL_BldgLoss": "185.3", "sL_StrLoss": "185.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000787D28C9A1D55DC01191163E8D6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.331332835999945, 50.856935464000045 ], [ -119.331338546999973, 50.856897277000051 ], [ -119.33008979899995, 50.856822729000086 ], [ -119.330255598999898, 50.855714209000048 ], [ -119.330353709999926, 50.855671708000052 ], [ -119.331093590999942, 50.85547860500008 ], [ -119.331257079999943, 50.85540629200009 ], [ -119.332255306999926, 50.85510960900006 ], [ -119.333096701999949, 50.854944190000083 ], [ -119.333139170999985, 50.85494117000006 ], [ -119.335021388999948, 50.854806470000071 ], [ -119.335112156999983, 50.854799978000095 ], [ -119.335124394, 50.85479911400008 ], [ -119.336220904999962, 50.854894190000032 ], [ -119.337054609999939, 50.854837492000058 ], [ -119.337642697999968, 50.854886101000083 ], [ -119.338635093999955, 50.855220410000058 ], [ -119.338943709999981, 50.855256902000129 ], [ -119.339260879, 50.855264987000048 ], [ -119.339581083999974, 50.855243512000115 ], [ -119.340137229, 50.855133209000059 ], [ -119.340326914999977, 50.855057902000027 ], [ -119.340669607999985, 50.854647093000075 ], [ -119.340778395999948, 50.854558915000062 ], [ -119.340921311999978, 50.854490790000078 ], [ -119.341425520999906, 50.854384609000114 ], [ -119.341692441999953, 50.854369649000063 ], [ -119.342354107999967, 50.85433260700006 ], [ -119.342632409999965, 50.854295103000062 ], [ -119.342916903999935, 50.854081985000086 ], [ -119.343173001999986, 50.854164883000102 ], [ -119.343930804999985, 50.85429120600007 ], [ -119.344140609999968, 50.854396695000077 ], [ -119.34616770199996, 50.856274617000047 ], [ -119.343913147, 50.856140313000068 ], [ -119.344063385999945, 50.855133713000072 ], [ -119.34386378399995, 50.855137724 ], [ -119.343583014999936, 50.857018774000039 ], [ -119.3432093, 50.856996506000058 ], [ -119.343195600999977, 50.857088281000124 ], [ -119.337534773999963, 50.856750835000106 ], [ -119.337667802999974, 50.85586042000007 ], [ -119.337208821999965, 50.855833046000114 ], [ -119.336993639999889, 50.857273222000053 ], [ -119.331332835999945, 50.856935464000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "231.9", "sL_BldgLoss": "231.9", "sL_StrLoss": "231.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1815F1BD8CB5DC03509DE90C6754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.182505058999979, 50.918161871000095 ], [ -119.188172485999985, 50.918507125000055 ], [ -119.187625408999978, 50.92208259100007 ], [ -119.181957532999917, 50.921737312000047 ], [ -119.182505058999979, 50.918161871000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20101917", "BldgCostT": "13391667", "sL_LossRatio": "1", "sL_AssetLoss": "894.5", "sL_BldgLoss": "894.5", "sL_StrLoss": "894.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FD089B14AD65DC0FFF75C7DA76E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.342934965999959, 50.867156695000119 ], [ -119.342928338999968, 50.865502887000041 ], [ -119.342703436999955, 50.863468652000094 ], [ -119.34283185799994, 50.863397328000076 ], [ -119.342907629999942, 50.86340443600006 ], [ -119.343562193999958, 50.863465887000139 ], [ -119.343775819999976, 50.863460509000042 ], [ -119.344131589999947, 50.863353602000039 ], [ -119.344706644999917, 50.863086776000053 ], [ -119.344707000999961, 50.863086586000072 ], [ -119.344790287999899, 50.862984747000041 ], [ -119.344829295999915, 50.862937001000127 ], [ -119.34499228599995, 50.862351292000028 ], [ -119.345240011, 50.861859112000076 ], [ -119.3456897, 50.861400598000053 ], [ -119.345795209999935, 50.861313088000024 ], [ -119.346049902999965, 50.861101801000054 ], [ -119.346147133999963, 50.860991134000116 ], [ -119.346340587999975, 50.860770891000101 ], [ -119.346547108999943, 50.860439512000021 ], [ -119.346808998999961, 50.859909388000069 ], [ -119.346884824999961, 50.859786145000058 ], [ -119.34699107199999, 50.859613446000047 ], [ -119.347053327999944, 50.85951227200006 ], [ -119.347123817999972, 50.85939770300007 ], [ -119.347141194999907, 50.859213807000067 ], [ -119.347028912, 50.858368200000029 ], [ -119.34703311699991, 50.85830753900008 ], [ -119.350358750999973, 50.858505527000069 ], [ -119.350322307999988, 50.858749904000064 ], [ -119.35050576399999, 50.858760823000097 ], [ -119.349972398999967, 50.862337315000033 ], [ -119.347677761999989, 50.862200722000075 ], [ -119.347602217, 50.86270706800012 ], [ -119.346442838999934, 50.862638036000099 ], [ -119.346438699999979, 50.862665773000074 ], [ -119.346935065999944, 50.862695329000054 ], [ -119.346643420999968, 50.864649795000119 ], [ -119.34772409699994, 50.864714137000107 ], [ -119.34789043899994, 50.863599228000048 ], [ -119.349805057, 50.863713196000042 ], [ -119.350046630999941, 50.862093474000098 ], [ -119.350796365999912, 50.862138093000056 ], [ -119.350808698999913, 50.862055391000062 ], [ -119.353884366999978, 50.862238380000043 ], [ -119.353829189999956, 50.861143095000052 ], [ -119.354481076999917, 50.861129940000104 ], [ -119.354475482999987, 50.862483645000047 ], [ -119.354475038999979, 50.862591761000054 ], [ -119.354474695999926, 50.862672109000087 ], [ -119.354372491999968, 50.863405698000086 ], [ -119.354188036999957, 50.863983832000024 ], [ -119.354134917999957, 50.864150323000025 ], [ -119.354053612999962, 50.864405205000061 ], [ -119.354046214999926, 50.86468530200009 ], [ -119.354145089999989, 50.865032313000036 ], [ -119.354156810999896, 50.865073402000064 ], [ -119.354216740999945, 50.86516230000008 ], [ -119.354376703999904, 50.865399500000088 ], [ -119.354960718999934, 50.866075840000107 ], [ -119.353248418999939, 50.865974002000023 ], [ -119.353019028999924, 50.86751263400005 ], [ -119.351220975, 50.867405667000099 ], [ -119.351054699999963, 50.868520576000066 ], [ -119.345392366999988, 50.868183531000071 ], [ -119.345564305999972, 50.867031607000037 ], [ -119.344307379999947, 50.866956750000035 ], [ -119.343973529, 50.869192937000022 ], [ -119.343945546999947, 50.86919127000003 ], [ -119.343918436999971, 50.869372838000089 ], [ -119.343006732999925, 50.869318532000072 ], [ -119.342968307999911, 50.869575859000086 ], [ -119.341809455999979, 50.869506821000101 ], [ -119.34182002299994, 50.868486582000109 ], [ -119.34182793, 50.867160758000082 ], [ -119.342934957999887, 50.867157238000075 ], [ -119.342934965999959, 50.867156695000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33677583", "BldgCostT": "22698333", "sL_LossRatio": "1", "sL_AssetLoss": "1936", "sL_BldgLoss": "1936", "sL_StrLoss": "1936", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000062D2D7DA18CF5DC0CCF5CF362B774940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.21790519399994, 50.932621114000085 ], [ -119.217601693999981, 50.932575703000069 ], [ -119.217430693999958, 50.932575550000131 ], [ -119.217418861999974, 50.932575564000054 ], [ -119.213678401999985, 50.932572393000108 ], [ -119.213670094999955, 50.931904295000052 ], [ -119.213596626999987, 50.931794239000041 ], [ -119.213550208999933, 50.931724687000035 ], [ -119.213318900999951, 50.931580780000012 ], [ -119.211903191, 50.930940099000097 ], [ -119.210980778999954, 50.93032931000004 ], [ -119.21036898899996, 50.930062553000027 ], [ -119.212648913999914, 50.93020086800005 ], [ -119.212605982999946, 50.930482404000017 ], [ -119.214925251999944, 50.930623057000048 ], [ -119.215034456999931, 50.929906639000116 ], [ -119.215551868999952, 50.929938011000068 ], [ -119.215593045999924, 50.92966785100004 ], [ -119.219521439999951, 50.929905963000053 ], [ -119.219521959999952, 50.929902542000079 ], [ -119.221232509999979, 50.93000618000012 ], [ -119.221269592999988, 50.929762682000067 ], [ -119.22673423400002, 50.930093591000109 ], [ -119.226741535999949, 50.930045607000096 ], [ -119.226935580999964, 50.930057353000095 ], [ -119.227243028999965, 50.928036714000058 ], [ -119.232912053999911, 50.928379704000093 ], [ -119.232891401999922, 50.928515549000103 ], [ -119.233034458999967, 50.92852420000002 ], [ -119.232999396999901, 50.928754847000107 ], [ -119.23338046399999, 50.928777891000031 ], [ -119.233125589999943, 50.930454512000061 ], [ -119.23476234599994, 50.930553477000096 ], [ -119.234804366999953, 50.930276992000103 ], [ -119.239383563999937, 50.930553741000068 ], [ -119.239430167999956, 50.930246897000082 ], [ -119.239823343999959, 50.930270650000089 ], [ -119.239839752999941, 50.930162607000113 ], [ -119.241302912999942, 50.930250989000072 ], [ -119.241376908999897, 50.92976364000004 ], [ -119.244345664000022, 50.929942910000086 ], [ -119.244369476999964, 50.929786008000043 ], [ -119.245334009999951, 50.929844235000061 ], [ -119.245369442999944, 50.929610731000068 ], [ -119.251038805999926, 50.92995280500007 ], [ -119.25099925399995, 50.930213678000065 ], [ -119.251132321999947, 50.930221703000093 ], [ -119.251000853, 50.931088809000101 ], [ -119.253642051999947, 50.931248068000045 ], [ -119.253910674999958, 50.929475626000105 ], [ -119.254843748999946, 50.929531874000062 ], [ -119.254876042999953, 50.929318748000057 ], [ -119.257078048999972, 50.92945145900007 ], [ -119.257205281, 50.928611500000045 ], [ -119.262874607999947, 50.928952976000119 ], [ -119.262789266999974, 50.92951684800007 ], [ -119.261197078999928, 50.929813001000078 ], [ -119.260119811999985, 50.930145910000121 ], [ -119.259465520999981, 50.9303862 ], [ -119.259038515999961, 50.93062750000005 ], [ -119.25812750099999, 50.931192050000021 ], [ -119.256359792999902, 50.932287404000057 ], [ -119.25597601299998, 50.932441106000034 ], [ -119.25569597499999, 50.932514395000126 ], [ -119.255095607999976, 50.932559385000047 ], [ -119.255065831999985, 50.932559318000102 ], [ -119.253569896999963, 50.932555907000051 ], [ -119.253176394999983, 50.932631610000044 ], [ -119.252784593999962, 50.932706987000095 ], [ -119.252449405, 50.932729186000074 ], [ -119.25193821299996, 50.932675806000127 ], [ -119.25138660199994, 50.932587506000111 ], [ -119.250826612999973, 50.932554604000075 ], [ -119.248475323999912, 50.932556652000116 ], [ -119.246403184999906, 50.932558392000047 ], [ -119.245771020999939, 50.932558899000085 ], [ -119.243835413999989, 50.932560362000117 ], [ -119.242861096999945, 50.932561104000037 ], [ -119.238286187999947, 50.932573503000114 ], [ -119.236905179999923, 50.932580621000078 ], [ -119.235838208999937, 50.932586113000077 ], [ -119.235663798999923, 50.932604425000086 ], [ -119.235220596999952, 50.9326498100001 ], [ -119.234637527999965, 50.932780040000061 ], [ -119.234416585999924, 50.93282940200006 ], [ -119.233652604999946, 50.9328960080001 ], [ -119.233112397, 50.932855195000037 ], [ -119.232855170999983, 50.932809638 ], [ -119.232024036999974, 50.932662402000069 ], [ -119.231914514999971, 50.932642994000091 ], [ -119.231520308999933, 50.932591993000081 ], [ -119.231225486999946, 50.932590717000075 ], [ -119.229665151999939, 50.932583911000123 ], [ -119.229632229999936, 50.93258378200008 ], [ -119.227155440999979, 50.932572945000118 ], [ -119.226778713999963, 50.932571300000106 ], [ -119.223938505999982, 50.932576192000091 ], [ -119.223200802999955, 50.932629803000111 ], [ -119.222207102999931, 50.932768969000072 ], [ -119.22115008399993, 50.932917 ], [ -119.220827779999951, 50.932945769000099 ], [ -119.220168397999942, 50.933004598000068 ], [ -119.219159624999989, 50.932912797000036 ], [ -119.218155683999939, 50.932679355000033 ], [ -119.218102099999967, 50.932666886000092 ], [ -119.218015205999976, 50.932646682000026 ], [ -119.21790519399994, 50.932621114000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050834", "BldgCostT": "3483334", "sL_LossRatio": "1", "sL_AssetLoss": "248.1", "sL_BldgLoss": "248.1", "sL_StrLoss": "248.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061C6D28F1FD35DC023DB5CA925714940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.296858222999944, 50.883258 ], [ -119.297701199999921, 50.882744801000044 ], [ -119.297856304999982, 50.882653904000072 ], [ -119.298177607999946, 50.882474687000105 ], [ -119.298594292999951, 50.882287714000036 ], [ -119.299616019999959, 50.882020593000092 ], [ -119.29985750899999, 50.881962902000062 ], [ -119.300030099999972, 50.882022000000127 ], [ -119.300250218999977, 50.882040589000063 ], [ -119.301702406999979, 50.881874098000061 ], [ -119.302762709, 50.881834811000026 ], [ -119.303157897999967, 50.881838261000027 ], [ -119.303336482999896, 50.883130768000107 ], [ -119.304024407999947, 50.883115374000084 ], [ -119.303962000999945, 50.883530720000095 ], [ -119.300889535999914, 50.88334663300008 ], [ -119.300673127999914, 50.884786192000078 ], [ -119.298962515999932, 50.884683664000057 ], [ -119.298893770999896, 50.885140832000047 ], [ -119.297979154999936, 50.88508600200003 ], [ -119.297958633999912, 50.885222454000115 ], [ -119.297719539999946, 50.885208119000055 ], [ -119.297468306999988, 50.886878461000052 ], [ -119.295505897999973, 50.886760788000061 ], [ -119.295120659999924, 50.884278913000053 ], [ -119.295181995999926, 50.884238201000102 ], [ -119.29523628699999, 50.884207911 ], [ -119.295685793999922, 50.883957203000129 ], [ -119.296858222999944, 50.883258 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14822084", "BldgCostT": "9958334", "sL_LossRatio": "1", "sL_AssetLoss": "891.8", "sL_BldgLoss": "891.8", "sL_StrLoss": "891.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5DF9E296CCD5DC0CAF4CFFCFF754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.209788152, 50.925479639000095 ], [ -119.209762596999951, 50.924940484000054 ], [ -119.208909537999929, 50.924956632000033 ], [ -119.208896764999935, 50.924687054000046 ], [ -119.20761718199995, 50.924711264000038 ], [ -119.207604417999931, 50.924441686000058 ], [ -119.206751367999942, 50.924457817000118 ], [ -119.20673860699992, 50.924188239000074 ], [ -119.205459035999965, 50.924212424000125 ], [ -119.205408031999937, 50.923134111000103 ], [ -119.20569319099998, 50.923128722000072 ], [ -119.206119695999973, 50.920333915000121 ], [ -119.206218750999966, 50.920339930000047 ], [ -119.20661672599999, 50.91773172000012 ], [ -119.212284282999946, 50.918075756000057 ], [ -119.212143134999934, 50.919001599000104 ], [ -119.2137818, 50.91910101600012 ], [ -119.213753337999961, 50.919287753000091 ], [ -119.214082303999959, 50.919307708000083 ], [ -119.213646222999913, 50.92216869400005 ], [ -119.214326377999939, 50.922155792000098 ], [ -119.21437758899999, 50.923234099000155 ], [ -119.213524562999936, 50.923250280000033 ], [ -119.213537360999979, 50.923519857000024 ], [ -119.213110845999907, 50.923527946000014 ], [ -119.213123640999981, 50.923797522000029 ], [ -119.21269712199999, 50.92380560900007 ], [ -119.212709915999966, 50.924075186000053 ], [ -119.212283395999975, 50.924083272000111 ], [ -119.2123089789999, 50.924622426000042 ], [ -119.211455925999985, 50.92463859300004 ], [ -119.2114815, 50.925177747000113 ], [ -119.211054969999978, 50.925185828000103 ], [ -119.211067752999938, 50.925455405000022 ], [ -119.210641219999943, 50.925463485000073 ], [ -119.210692351999981, 50.926541795000063 ], [ -119.210265806999971, 50.926549872000074 ], [ -119.210291367999943, 50.927089027000079 ], [ -119.209438269999964, 50.927105179000122 ], [ -119.209451046999931, 50.927374757000131 ], [ -119.208597943999948, 50.927390903000052 ], [ -119.208610713999988, 50.927660481000039 ], [ -119.207331048999947, 50.927684688000056 ], [ -119.207279994999965, 50.926606377000077 ], [ -119.208133084999929, 50.926590241000014 ], [ -119.208120315999949, 50.926320663000119 ], [ -119.208973400999952, 50.926304521000077 ], [ -119.208960627999915, 50.926034942000072 ], [ -119.209387166999974, 50.926026869000069 ], [ -119.209361616999928, 50.925487714000091 ], [ -119.209788152, 50.925479639000095 ] ], [ [ -119.211391995999961, 50.923290706000124 ], [ -119.211391330999959, 50.923276695 ], [ -119.211389186999938, 50.9232907580001 ], [ -119.211391995999961, 50.923290706000124 ] ], [ [ -119.211805720999962, 50.923013046000037 ], [ -119.211794551999958, 50.922777572000044 ], [ -119.211470438999953, 50.922757906000079 ], [ -119.211430448999948, 50.923020157000153 ], [ -119.211805720999962, 50.923013046000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8159333", "BldgCostT": "5363333", "sL_LossRatio": "1", "sL_AssetLoss": "875.7", "sL_BldgLoss": "875.7", "sL_StrLoss": "875.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FDB0D6374DD65DC094A573D1526D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.342916903999935, 50.854081985000086 ], [ -119.342913184999986, 50.853722107000053 ], [ -119.342908911999956, 50.853303905000089 ], [ -119.342912858999981, 50.853281654000114 ], [ -119.342953195999954, 50.853054906000104 ], [ -119.343041188999933, 50.852867096000111 ], [ -119.343178780999963, 50.852755788000074 ], [ -119.34318807799994, 50.852748234000053 ], [ -119.343223011999925, 50.852719986000153 ], [ -119.343464915999959, 50.852629801000077 ], [ -119.343765913999945, 50.852583701000114 ], [ -119.35098529699998, 50.852585193000074 ], [ -119.351612712999895, 50.852593500000118 ], [ -119.351763695999921, 50.852595496000085 ], [ -119.352052003, 50.85263149700009 ], [ -119.352324296999925, 50.852700902000066 ], [ -119.352567901999961, 50.852810207000068 ], [ -119.353312713, 50.853320806000099 ], [ -119.353405900999959, 50.853202789000058 ], [ -119.353432286999933, 50.852642396000078 ], [ -119.353800805999924, 50.852612886000045 ], [ -119.353959328999949, 50.852627144000117 ], [ -119.354007894999924, 50.852631502000115 ], [ -119.354524391999959, 50.852805702000126 ], [ -119.354526895999953, 50.853325401000099 ], [ -119.354759202999986, 50.853443014000078 ], [ -119.354499486999927, 50.853620929000016 ], [ -119.35449343099998, 50.853625090000079 ], [ -119.354592984999911, 50.853638795000052 ], [ -119.354511007999946, 50.853901787000055 ], [ -119.354510739999938, 50.853965567000081 ], [ -119.354507704999932, 50.854700305000094 ], [ -119.350778511999977, 50.854478406000098 ], [ -119.350822697999973, 50.854182046000091 ], [ -119.350772295999931, 50.854179046000112 ], [ -119.350638811999914, 50.855074316000099 ], [ -119.35001875, 50.855037408000037 ], [ -119.34990082299997, 50.855828231000054 ], [ -119.349672784999939, 50.855814657000039 ], [ -119.349573944999989, 50.856477438000042 ], [ -119.34616770199996, 50.856274617000047 ], [ -119.344140609999968, 50.854396695000077 ], [ -119.343930804999985, 50.85429120600007 ], [ -119.343173001999986, 50.854164883000102 ], [ -119.342916903999935, 50.854081985000086 ] ], [ [ -119.344224953999969, 50.854051157000072 ], [ -119.344234329999935, 50.853988344000086 ], [ -119.344037083999964, 50.853976592000066 ], [ -119.34402535599996, 50.854055168000052 ], [ -119.344224953999969, 50.854051157000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210833", "BldgCostT": "4283333", "sL_LossRatio": "1", "sL_AssetLoss": "340.3", "sL_BldgLoss": "340.3", "sL_StrLoss": "340.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DBF24D705D65DC0000129B95C754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.338310817999982, 50.918295253000068 ], [ -119.338747166999951, 50.915378334000145 ], [ -119.34441543399997, 50.915715697000088 ], [ -119.344398893999951, 50.915826368000111 ], [ -119.346639370999952, 50.915959636000117 ], [ -119.346624620999933, 50.916058351000032 ], [ -119.350331358999938, 50.91627873400008 ], [ -119.350060571999975, 50.918092071 ], [ -119.350029903999896, 50.918094435000057 ], [ -119.348851334999949, 50.918126282000088 ], [ -119.347232959999928, 50.918221283000079 ], [ -119.346527771999973, 50.9182235500001 ], [ -119.346141072999956, 50.918187189000044 ], [ -119.34564092899997, 50.91814014400007 ], [ -119.342857525999989, 50.917774317000116 ], [ -119.341748006, 50.91764060100008 ], [ -119.34149380299999, 50.917668511000045 ], [ -119.34139369699993, 50.917679512000106 ], [ -119.340224600999974, 50.917807893 ], [ -119.33922159699992, 50.918033305000094 ], [ -119.338541186999961, 50.918213697000091 ], [ -119.338310817999982, 50.918295253000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12276750", "BldgCostT": "7995000", "sL_LossRatio": "1", "sL_AssetLoss": "517.5", "sL_BldgLoss": "517.5", "sL_StrLoss": "517.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADB793A93ED15DC03EBA4BC19E764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.263132153999948, 50.929452234000031 ], [ -119.263635941999951, 50.926123141000055 ], [ -119.264271550999965, 50.926161405000059 ], [ -119.264379647999945, 50.925446957000048 ], [ -119.265396133999928, 50.925508142000126 ], [ -119.265424810999946, 50.925318580000045 ], [ -119.266754926999937, 50.925398630000096 ], [ -119.266820567999929, 50.924964611000114 ], [ -119.267642785999925, 50.925014086000076 ], [ -119.26769254599999, 50.92468503 ], [ -119.268072590999978, 50.924707897000054 ], [ -119.268091335999969, 50.924583940000097 ], [ -119.273760233999909, 50.924924867000108 ], [ -119.273725111999937, 50.92515732800004 ], [ -119.276370065999927, 50.925316296000069 ], [ -119.275918322999956, 50.928307234000087 ], [ -119.27388360799992, 50.92784469800003 ], [ -119.272939700999984, 50.927702284000105 ], [ -119.271953605999968, 50.927489710000032 ], [ -119.271631897999896, 50.9274603920001 ], [ -119.271227519999982, 50.92748660000003 ], [ -119.270946841999958, 50.927569244000082 ], [ -119.270838295, 50.927601203000087 ], [ -119.270136598999983, 50.92796680400005 ], [ -119.26971249599994, 50.928189285000023 ], [ -119.268724285999937, 50.928462803000038 ], [ -119.267943610999964, 50.928541700000032 ], [ -119.266911697999916, 50.928645996000064 ], [ -119.26593950699997, 50.928832789000126 ], [ -119.265375292999948, 50.928979312000131 ], [ -119.263132153999948, 50.929452234000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11905166", "BldgCostT": "7946666", "sL_LossRatio": "1", "sL_AssetLoss": "858.4", "sL_BldgLoss": "858.4", "sL_StrLoss": "858.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F48C3E756D35DC0CCAAD7469F764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.293444244999975, 50.929850001000091 ], [ -119.293906076999917, 50.926784334000075 ], [ -119.294307544, 50.926808393000066 ], [ -119.294310458999973, 50.926789043000063 ], [ -119.296161970999975, 50.926899983000069 ], [ -119.296285010999966, 50.926082887000156 ], [ -119.29696722599999, 50.926123756000059 ], [ -119.29706031099991, 50.925505504000057 ], [ -119.297451380999945, 50.925528930000077 ], [ -119.29748280299998, 50.925320213000127 ], [ -119.298789938999974, 50.925398504000057 ], [ -119.298791542999979, 50.925387842000163 ], [ -119.301074460999985, 50.925524540000026 ], [ -119.301076634999973, 50.925510095000064 ], [ -119.303350445999968, 50.92564620000006 ], [ -119.30346356699999, 50.924894148000071 ], [ -119.303878036999905, 50.924918952000056 ], [ -119.30387854699994, 50.924915558000045 ], [ -119.304869631999949, 50.924974863000095 ], [ -119.30489690899999, 50.924793481000023 ], [ -119.306111113999961, 50.924866126000033 ], [ -119.306138660999949, 50.924682909000076 ], [ -119.311807860999977, 50.925021915000102 ], [ -119.311488187999956, 50.927149777000103 ], [ -119.311153909999931, 50.927176896000056 ], [ -119.310133901999933, 50.927112295000057 ], [ -119.310037075999944, 50.927097444 ], [ -119.308987690999956, 50.926936396000038 ], [ -119.308436516999933, 50.926921504000113 ], [ -119.307884600999969, 50.926958902000088 ], [ -119.307749563999963, 50.926975895000055 ], [ -119.307243199999945, 50.927039587000067 ], [ -119.306053474999942, 50.927276167000102 ], [ -119.305999862, 50.927340681000025 ], [ -119.30590272799995, 50.927388128000075 ], [ -119.305818860000016, 50.927417168000019 ], [ -119.305735466, 50.927455266000067 ], [ -119.305609026999988, 50.927485301000026 ], [ -119.305356959000022, 50.927563497000065 ], [ -119.305258934999955, 50.927592895000068 ], [ -119.305147595999955, 50.927640631000031 ], [ -119.305021114999974, 50.927670733000106 ], [ -119.304908865999934, 50.92770045300005 ], [ -119.304782838999955, 50.927739533000057 ], [ -119.304656396999931, 50.927769624000057 ], [ -119.304544144, 50.927799345000068 ], [ -119.304403036999986, 50.927820745000119 ], [ -119.304261051999973, 50.927824179000062 ], [ -119.304118571999965, 50.92781864400007 ], [ -119.303863005999943, 50.927824792000067 ], [ -119.303748526999968, 50.927809575 ], [ -119.303648622999987, 50.927802986000081 ], [ -119.303547931, 50.927778491000019 ], [ -119.30346145099999, 50.927753649000081 ], [ -119.303360284999954, 50.92772015 ], [ -119.303259539999942, 50.927695642000089 ], [ -119.303172600999957, 50.927661821000115 ], [ -119.303013739999983, 50.927611764000076 ], [ -119.302927203999971, 50.927586909000048 ], [ -119.302841126999951, 50.927571032000067 ], [ -119.302755485999967, 50.927564111000031 ], [ -119.302655639999969, 50.927557534000094 ], [ -119.302569541999944, 50.927541633000068 ], [ -119.302455063999957, 50.927526415000081 ], [ -119.302368984999958, 50.92751053700006 ], [ -119.302283367000015, 50.927503581000089 ], [ -119.302197287999931, 50.927487703000125 ], [ -119.302097858999943, 50.927490115000076 ], [ -119.301998049999895, 50.927483529000014 ], [ -119.301657369999973, 50.92749176300007 ], [ -119.301572626999985, 50.927502772000111 ], [ -119.301416853999939, 50.927515537000069 ], [ -119.3012473799999, 50.927537639000079 ], [ -119.301147949999944, 50.927540051000108 ], [ -119.301048996999953, 50.927551407000088 ], [ -119.300935813999942, 50.927563143000093 ], [ -119.300836877999942, 50.927574522000079 ], [ -119.300738357999947, 50.927594948000063 ], [ -119.300654047999913, 50.927614970000029 ], [ -119.300555112000012, 50.927626349000036 ], [ -119.300414927999924, 50.927665783000059 ], [ -119.300303545999952, 50.927713524000062 ], [ -119.300177990999941, 50.92776159900005 ], [ -119.300037769999904, 50.927801043000088 ], [ -119.299942124999987, 50.927830740000054 ], [ -119.299240001, 50.928380900000015 ], [ -119.299162492999926, 50.928424369000062 ], [ -119.298946310999966, 50.928545606000093 ], [ -119.298774920999932, 50.92861111000007 ], [ -119.296446711, 50.928980410000065 ], [ -119.295948695999954, 50.929105693000075 ], [ -119.295381379, 50.929301689000042 ], [ -119.294332508999958, 50.929771084000087 ], [ -119.294047598999953, 50.929829808000115 ], [ -119.293731888999929, 50.929856004000087 ], [ -119.293444244999975, 50.929850001000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19371719", "BldgCostT": "12545412", "sL_LossRatio": "1", "sL_AssetLoss": "763", "sL_BldgLoss": "763", "sL_StrLoss": "763", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000661FB7A15ACC5DC06EABD52E58764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.202860577999971, 50.926908797000124 ], [ -119.202350298999974, 50.926850705000035 ], [ -119.20088189099999, 50.9268003030001 ], [ -119.200126282000014, 50.926625197000057 ], [ -119.199832015999959, 50.92655699200008 ], [ -119.199418747999928, 50.926495826000163 ], [ -119.19931449799995, 50.926480384000072 ], [ -119.198096016999955, 50.926451448000051 ], [ -119.196994995999901, 50.926421455000074 ], [ -119.195950493999987, 50.926218065000079 ], [ -119.195295592, 50.92615129600005 ], [ -119.195202205999948, 50.926148410000096 ], [ -119.194844282999966, 50.926137290000071 ], [ -119.193836108999946, 50.926155402000056 ], [ -119.193489288999928, 50.926131590000097 ], [ -119.193523460999984, 50.926230886 ], [ -119.193442493999981, 50.926217743000109 ], [ -119.188709300999989, 50.925448284000034 ], [ -119.18834518599999, 50.925444113000047 ], [ -119.18775429399993, 50.925361304000113 ], [ -119.186870885999951, 50.925330002000145 ], [ -119.186091588999929, 50.925169811000018 ], [ -119.185046012999962, 50.925039301000069 ], [ -119.184353910999974, 50.924907909000069 ], [ -119.184122400999982, 50.924906393000128 ], [ -119.183008381999912, 50.925009490000029 ], [ -119.182529395999964, 50.925053798000107 ], [ -119.182027214999891, 50.925063794000039 ], [ -119.181842700999951, 50.924989413000048 ], [ -119.181840901999948, 50.924987430000058 ], [ -119.181829304999923, 50.924974714000051 ], [ -119.181515687999976, 50.924631207000047 ], [ -119.181193093, 50.92444010400007 ], [ -119.181141383999915, 50.924428558000059 ], [ -119.180664811999989, 50.924322185000051 ], [ -119.18041055899999, 50.924216818000104 ], [ -119.180750516000018, 50.921997539000088 ], [ -119.185265237999928, 50.922272641000028 ], [ -119.185309016999952, 50.921986644000043 ], [ -119.190976950999953, 50.922331754000034 ], [ -119.190869796999891, 50.923032339000024 ], [ -119.191458082999958, 50.923068142000048 ], [ -119.191117955999943, 50.925291989000087 ], [ -119.192222470999951, 50.925271248000065 ], [ -119.192593245999944, 50.922846612000065 ], [ -119.198261344999963, 50.923191354000068 ], [ -119.197835998999921, 50.925975135000073 ], [ -119.198601001999933, 50.925960727000131 ], [ -119.198853786999919, 50.924306157000011 ], [ -119.204522120999968, 50.924650582000055 ], [ -119.20438169499991, 50.925570493000109 ], [ -119.206256329999974, 50.925684337000114 ], [ -119.206229628999921, 50.925859295000095 ], [ -119.207030417999974, 50.925907916000014 ], [ -119.206648563999963, 50.928410154000098 ], [ -119.206625881999983, 50.92840319900013 ], [ -119.206397708999958, 50.928305500000121 ], [ -119.20620710099999, 50.928176604000043 ], [ -119.205732577999925, 50.927799595000138 ], [ -119.205341924999942, 50.927585507000103 ], [ -119.205063195999955, 50.92747109900013 ], [ -119.203566189999918, 50.927046391000061 ], [ -119.202860577999971, 50.926908797000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021373", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6355833", "BldgCostT": "4383333", "sL_LossRatio": "1", "sL_AssetLoss": "304", "sL_BldgLoss": "304", "sL_StrLoss": "304", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9F073F04AD45DC02AAD5CFBC4704940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.318963147999966, 50.877423877000105 ], [ -119.322428398999932, 50.877302195000048 ], [ -119.322180634999938, 50.878955913000063 ], [ -119.322114988999942, 50.878951991000044 ], [ -119.321718166999972, 50.881600318000018 ], [ -119.320971319999941, 50.881555696000078 ], [ -119.320799489999928, 50.882702237000053 ], [ -119.32028675699999, 50.882671599000084 ], [ -119.320263173999962, 50.882828948000039 ], [ -119.319207712999955, 50.882765874000071 ], [ -119.319192527999959, 50.882867173000086 ], [ -119.317859538999969, 50.882787499000081 ], [ -119.317824675999958, 50.883020004000116 ], [ -119.31332339899997, 50.882750839000103 ], [ -119.313302172999954, 50.882892308000045 ], [ -119.311831441999928, 50.882804322000027 ], [ -119.311824804999929, 50.882848542000062 ], [ -119.307993166999921, 50.882619224000052 ], [ -119.308003848999959, 50.88283529800006 ], [ -119.30757773199997, 50.882843727000072 ], [ -119.307591054999961, 50.883113288000068 ], [ -119.304608218999959, 50.883172245000083 ], [ -119.30460477099993, 50.883102385000015 ], [ -119.3074688499999, 50.883038233000093 ], [ -119.307312157999917, 50.881877367000079 ], [ -119.319689712999931, 50.881362938000073 ], [ -119.318963147999966, 50.877423877000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "1", "sL_AssetLoss": "186.5", "sL_BldgLoss": "186.5", "sL_StrLoss": "186.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BFBCC3891D65DC0DFDD0C2FEF6D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.35101008499997, 50.85692068500002 ], [ -119.354497641999927, 50.857128192000083 ], [ -119.354496872999945, 50.857314005000042 ], [ -119.354496758, 50.85733872800008 ], [ -119.354487939999927, 50.859475804000105 ], [ -119.354487660999965, 50.859542350000062 ], [ -119.354486299999948, 50.859866102000076 ], [ -119.354482708999981, 50.860735525000081 ], [ -119.350476782999976, 50.860497186000067 ], [ -119.35101008499997, 50.85692068500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16924000", "BldgCostT": "11200000", "sL_LossRatio": "1", "sL_AssetLoss": "759.2", "sL_BldgLoss": "759.2", "sL_StrLoss": "759.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000068F6EDE285D45DC0310DBBD6FB754940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.317175081999949, 50.922151413000108 ], [ -119.317336375999972, 50.921076757000101 ], [ -119.317696852999958, 50.92109828700012 ], [ -119.317719068, 50.920950266000077 ], [ -119.318359772999926, 50.920988530000074 ], [ -119.318474876999943, 50.920221482000066 ], [ -119.318670525999948, 50.92023316500007 ], [ -119.318684672999964, 50.920138886000075 ], [ -119.32023386599991, 50.920231389000065 ], [ -119.320282316999965, 50.919908422000049 ], [ -119.320733899999979, 50.91993538200007 ], [ -119.321016190999927, 50.918053434000036 ], [ -119.32593177399994, 50.918346781000096 ], [ -119.32611902099994, 50.917097449000018 ], [ -119.331787410999979, 50.917435449000124 ], [ -119.331639426999971, 50.918423652000058 ], [ -119.331254277999975, 50.918458188000059 ], [ -119.331146894999932, 50.918467793000069 ], [ -119.330388809999988, 50.91857494500006 ], [ -119.329674511999912, 50.91867591500003 ], [ -119.329414209, 50.918736236000065 ], [ -119.329404702999952, 50.918738464000064 ], [ -119.32806390699993, 50.919049362000067 ], [ -119.328049383999925, 50.919052739000101 ], [ -119.327520705000012, 50.919175294000105 ], [ -119.327135306999963, 50.919333607000084 ], [ -119.326705906999933, 50.919622792000055 ], [ -119.326461893, 50.919848195000135 ], [ -119.325959602999944, 50.920575898000109 ], [ -119.325618009999957, 50.921538694000049 ], [ -119.325446503999927, 50.921747703 ], [ -119.325303623999901, 50.921851899000075 ], [ -119.325126202, 50.921928792000074 ], [ -119.324923412, 50.921975394000057 ], [ -119.324706813999981, 50.921989510000039 ], [ -119.324084798999962, 50.921941585000091 ], [ -119.323725498999977, 50.921953510000016 ], [ -119.323312995999956, 50.922082213000067 ], [ -119.322517579999953, 50.922551601000123 ], [ -119.322119127999969, 50.922682100000074 ], [ -119.321331728999979, 50.922862670000036 ], [ -119.320608605999936, 50.92302850800008 ], [ -119.32001859599994, 50.923310809000078 ], [ -119.319575183999987, 50.923616295000038 ], [ -119.319289923999989, 50.923878899000023 ], [ -119.319226622999921, 50.923963417000053 ], [ -119.318837378999902, 50.924483296000062 ], [ -119.318239905999974, 50.925234206000113 ], [ -119.317832107999948, 50.925511997000086 ], [ -119.317131802999924, 50.92587158800012 ], [ -119.316196307000013, 50.92614950300004 ], [ -119.315586572999905, 50.926388921000047 ], [ -119.315064796999962, 50.92659379400007 ], [ -119.314611193999966, 50.926771903 ], [ -119.313836592999905, 50.926959195000101 ], [ -119.312420838999955, 50.927074105000031 ], [ -119.312113914999955, 50.927099009000152 ], [ -119.311492261999902, 50.927149446000151 ], [ -119.311878115999974, 50.924581040000056 ], [ -119.312382741999912, 50.924611201000054 ], [ -119.31242270499996, 50.924345152000079 ], [ -119.31264581899994, 50.924358487000099 ], [ -119.312646093999959, 50.924356658000143 ], [ -119.313365622999981, 50.924399658000041 ], [ -119.313419179, 50.924043075000036 ], [ -119.314925736999925, 50.924133094000069 ], [ -119.315052850999905, 50.92328651000004 ], [ -119.315397561999987, 50.923307105000049 ], [ -119.315440348999971, 50.923022118000119 ], [ -119.315726211999959, 50.923039196000062 ], [ -119.315871183999946, 50.922073526000084 ], [ -119.317175081999949, 50.922151413000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021376", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127747500", "BldgCostT": "88125000", "sL_LossRatio": "0.99981704837594", "sL_AssetLoss": "2946.134", "sL_BldgLoss": "2945.595", "sL_StrLoss": "2945.4", "sL_NStrLoss": "0.195", "sL_ContLoss": "0.539", "geom_point": "0101000020E6100000957EBA6865D75DC01D59BFBA26724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.371600088999955, 50.907522725000028 ], [ -119.371608746999939, 50.907464546000092 ], [ -119.368004177999978, 50.907250885000067 ], [ -119.368116548999978, 50.906496161000064 ], [ -119.366264574999931, 50.906386338000104 ], [ -119.366797160999965, 50.902809948000012 ], [ -119.369359681999939, 50.902961898000072 ], [ -119.36940595899992, 50.902650990000048 ], [ -119.369151127999928, 50.902656165000046 ], [ -119.369110065999948, 50.901847518000125 ], [ -119.368683796999974, 50.901856172000059 ], [ -119.368670112999936, 50.901586623000114 ], [ -119.368243842999973, 50.901595275000076 ], [ -119.368202799999978, 50.900786628000034 ], [ -119.368629061999982, 50.900777976000072 ], [ -119.368546965999954, 50.899160683000126 ], [ -119.368120718999961, 50.899169334000071 ], [ -119.368066, 50.898091138000083 ], [ -119.3706234199999, 50.898039209000032 ], [ -119.370637114000019, 50.898308756000084 ], [ -119.371489589999953, 50.898291434000051 ], [ -119.371516986999922, 50.898830531000044 ], [ -119.371943229999928, 50.898821867000024 ], [ -119.371966695999987, 50.89928350200006 ], [ -119.371973738999941, 50.89923615900009 ], [ -119.37211945599995, 50.899244795000079 ], [ -119.372215564999976, 50.898598763000017 ], [ -119.372745230999968, 50.898630153000077 ], [ -119.37290511, 50.897555343000079 ], [ -119.37040354799997, 50.897407069000067 ], [ -119.370422067999968, 50.897282611 ], [ -119.369871238999963, 50.89724995500012 ], [ -119.369895146999937, 50.897089293000121 ], [ -119.369330931999983, 50.897055840000057 ], [ -119.369358951999942, 50.896867572000112 ], [ -119.368724026999956, 50.896829923000062 ], [ -119.368734212999954, 50.896761491000085 ], [ -119.368726333000012, 50.896761024000114 ], [ -119.368784611999914, 50.896369463000127 ], [ -119.367871329999957, 50.896315301000065 ], [ -119.367924846, 50.895955795000049 ], [ -119.36703773, 50.895903178000104 ], [ -119.367081290999948, 50.895610577000099 ], [ -119.366393229999943, 50.895569762000072 ], [ -119.366447873, 50.89520275400006 ], [ -119.365987642999954, 50.895175452000039 ], [ -119.366024136999982, 50.894930350000081 ], [ -119.365439040999959, 50.894895636000051 ], [ -119.365593858999887, 50.893855931000125 ], [ -119.364584086999969, 50.893796015000113 ], [ -119.364621306999965, 50.893546089000012 ], [ -119.363647373999967, 50.893488290000114 ], [ -119.363892520999968, 50.891842320000087 ], [ -119.360142576999948, 50.891619696000078 ], [ -119.360589205999972, 50.888622298000044 ], [ -119.359952680999982, 50.888584497000082 ], [ -119.360061138999953, 50.887856621000026 ], [ -119.358873296999917, 50.887786068000025 ], [ -119.358994458000026, 50.886973063000035 ], [ -119.35788142199999, 50.886906942000088 ], [ -119.357929659999968, 50.88658330300008 ], [ -119.357585134999965, 50.886562835000063 ], [ -119.357626021999948, 50.886288528000129 ], [ -119.357161439999942, 50.88626092300003 ], [ -119.357286344999949, 50.885422985000062 ], [ -119.357243300999954, 50.885420427000099 ], [ -119.357370976000013, 50.884563873000069 ], [ -119.357136257999954, 50.88454992700013 ], [ -119.35717383799999, 50.88429780500006 ], [ -119.356951969999955, 50.884284621000084 ], [ -119.357022859999958, 50.883809041000049 ], [ -119.357019204000011, 50.883808824 ], [ -119.357236034999957, 50.882354113000133 ], [ -119.356721196999942, 50.88232351900011 ], [ -119.356817240999959, 50.881679187000032 ], [ -119.355280995999948, 50.881587881000087 ], [ -119.355814164999913, 50.87801144200003 ], [ -119.356180008999971, 50.878033187000014 ], [ -119.356276394999924, 50.87738655000004 ], [ -119.355828109999919, 50.877359903000041 ], [ -119.356361184999955, 50.873783445000093 ], [ -119.356743505999987, 50.873806171000069 ], [ -119.356878511, 50.872900255000026 ], [ -119.357413188999942, 50.872932035000083 ], [ -119.35743222399995, 50.872804287000044 ], [ -119.355972437, 50.872717516000144 ], [ -119.356136040999971, 50.871619796000083 ], [ -119.354784917999922, 50.871647076000095 ], [ -119.354744151999938, 50.870838418000112 ], [ -119.354318158999959, 50.870847015000024 ], [ -119.354236645999961, 50.869229696000012 ], [ -119.354662623999943, 50.8692210990001 ], [ -119.354608275999965, 50.868142886000044 ], [ -119.355460210999951, 50.868125689000053 ], [ -119.355405846999986, 50.867047477000085 ], [ -119.355983505999944, 50.867035812000083 ], [ -119.35616698599992, 50.867188947000095 ], [ -119.356360059999957, 50.867350103000049 ], [ -119.356651620999969, 50.867593461000091 ], [ -119.356857447999957, 50.867765193000075 ], [ -119.358611491999937, 50.86924859500003 ], [ -119.360779507999979, 50.87158828499999 ], [ -119.360911383999962, 50.871731315000069 ], [ -119.361036182999939, 50.871866613000059 ], [ -119.361185313999968, 50.872028300000068 ], [ -119.361406591999966, 50.872316592000054 ], [ -119.361518221000011, 50.872526108000081 ], [ -119.361580792999931, 50.87275809100003 ], [ -119.361594790999973, 50.872999697000154 ], [ -119.361540596999973, 50.87324907800005 ], [ -119.361414980999896, 50.873506807000076 ], [ -119.360875501999971, 50.874233396000108 ], [ -119.360383595999934, 50.874898701000127 ], [ -119.360310439999935, 50.875062337000031 ], [ -119.360238251999988, 50.875223841000079 ], [ -119.360227205999962, 50.875248511000073 ], [ -119.360282495999968, 50.876124008000055 ], [ -119.360523834999967, 50.877545957000038 ], [ -119.360609565999951, 50.878051198000072 ], [ -119.360623579999952, 50.878149494000112 ], [ -119.360565603999987, 50.87856729700006 ], [ -119.360464001999944, 50.878818298000063 ], [ -119.360389541999936, 50.879006268000083 ], [ -119.360193183999982, 50.879502111000157 ], [ -119.36009749499999, 50.879743695000109 ], [ -119.360097009999919, 50.87995829100003 ], [ -119.360161205999958, 50.880198495000108 ], [ -119.360300471999935, 50.880503366000056 ], [ -119.360480338999949, 50.88089718100008 ], [ -119.36065671199999, 50.881283301000046 ], [ -119.360753606999964, 50.881620991000091 ], [ -119.360806492999956, 50.881984883000079 ], [ -119.360835391999927, 50.883871900000081 ], [ -119.360902583999973, 50.884264602 ], [ -119.361015310999932, 50.884514913000068 ], [ -119.361519899999905, 50.885252 ], [ -119.361888488999938, 50.885577906000044 ], [ -119.362117384999962, 50.88572166200008 ], [ -119.363799880999977, 50.886778301000078 ], [ -119.36405554199996, 50.887007180000062 ], [ -119.364339387, 50.887261299000066 ], [ -119.364732175999919, 50.88778079800008 ], [ -119.365037297999962, 50.888322012000067 ], [ -119.365287396999989, 50.889022407000084 ], [ -119.36547798099997, 50.889728304000101 ], [ -119.365776388999947, 50.890132208000033 ], [ -119.367223793, 50.892091412000092 ], [ -119.367499878999965, 50.892319694000065 ], [ -119.369420814999941, 50.893583704000037 ], [ -119.37007651299993, 50.893978894000099 ], [ -119.372161901999945, 50.895108197000077 ], [ -119.37254019099997, 50.895274090000093 ], [ -119.373313833999987, 50.895558825000094 ], [ -119.373319080999948, 50.895560767000049 ], [ -119.374339399999954, 50.895936302000067 ], [ -119.374694097000017, 50.896097117000089 ], [ -119.375081004999984, 50.896426697000059 ], [ -119.37558557899996, 50.8971366930001 ], [ -119.375983682999973, 50.897515706000036 ], [ -119.376443073999909, 50.898126498000117 ], [ -119.376803402999926, 50.898778291000042 ], [ -119.376979229, 50.899018704000071 ], [ -119.377345308999963, 50.899334492000023 ], [ -119.378032560999927, 50.899792116000093 ], [ -119.378213036999938, 50.899912274000023 ], [ -119.378226890999883, 50.899921504000083 ], [ -119.378312130999944, 50.900001729000103 ], [ -119.378448784999975, 50.900130410000024 ], [ -119.378639392999958, 50.900434789000037 ], [ -119.378642, 50.900686697000069 ], [ -119.378581593999982, 50.900900485000108 ], [ -119.378307177999943, 50.901256683000035 ], [ -119.377817690999933, 50.901694071000115 ], [ -119.377493849999922, 50.901923234000023 ], [ -119.376519171999931, 50.902612973000018 ], [ -119.376140195999966, 50.902970257000106 ], [ -119.376136271999883, 50.903121549000097 ], [ -119.376431018999938, 50.903734314000076 ], [ -119.376396158, 50.904036238000096 ], [ -119.376091902999974, 50.904640582000091 ], [ -119.375713214999948, 50.905293740000012 ], [ -119.374927295999939, 50.906186135000056 ], [ -119.374227762999979, 50.906891565000052 ], [ -119.373387867999924, 50.907637351000091 ], [ -119.37290364799999, 50.907942401000064 ], [ -119.371752350999969, 50.908455963000065 ], [ -119.37061216799998, 50.908822155000081 ], [ -119.370496803999984, 50.908859208000067 ], [ -119.370434441999976, 50.908944858000041 ], [ -119.370261655999983, 50.909043787000073 ], [ -119.370196767999985, 50.909101660000033 ], [ -119.370116558999925, 50.909141699000017 ], [ -119.370037036999975, 50.909190883000051 ], [ -119.369943630999927, 50.909240612000104 ], [ -119.369864894999921, 50.909299023000138 ], [ -119.369815656999918, 50.909374945000089 ], [ -119.369737655, 50.909442568000067 ], [ -119.369646560999954, 50.9095199080001 ], [ -119.369569327999926, 50.909596794000144 ], [ -119.369448999, 50.909656800000064 ], [ -119.369384125999929, 50.909714697 ], [ -119.369306158999933, 50.909782310000047 ], [ -119.369148611, 50.909899091000057 ], [ -119.369055935999981, 50.909958034000056 ], [ -119.368872183999969, 50.910094284000095 ], [ -119.368751761999988, 50.910154287000054 ], [ -119.368630728999932, 50.910205183000038 ], [ -119.36849585, 50.910256614000069 ], [ -119.368359133999903, 50.910280781000075 ], [ -119.368250601999975, 50.910312818000158 ], [ -119.367823755999936, 50.910331824000082 ], [ -119.367742233999948, 50.91035358600007 ], [ -119.36763373799991, 50.910385611000081 ], [ -119.367525797, 50.910426733000044 ], [ -119.367432401999906, 50.91047648300016 ], [ -119.367219333999969, 50.910595416000085 ], [ -119.367155297999929, 50.910662551000051 ], [ -119.367076553999979, 50.910720960000035 ], [ -119.366990812000026, 50.910776567000092 ], [ -119.366702901999986, 50.911638295000103 ], [ -119.366370418999963, 50.912315831000079 ], [ -119.366344586999944, 50.912352059000057 ], [ -119.364437901999935, 50.912238977000072 ], [ -119.364652517999971, 50.910798464000045 ], [ -119.364970703999973, 50.908662620000065 ], [ -119.365239744999926, 50.908678578000071 ], [ -119.365275502999964, 50.908438526000069 ], [ -119.366128214999918, 50.908489101000093 ], [ -119.366139467999929, 50.908413546000133 ], [ -119.36684017099995, 50.908455100000097 ], [ -119.366934666999896, 50.907820563 ], [ -119.367360134999942, 50.907845792000018 ], [ -119.36741706499997, 50.907463473000085 ], [ -119.367617113000023, 50.907475335000129 ], [ -119.367644965999929, 50.907288277000077 ], [ -119.371600088999955, 50.907522725000028 ] ], [ [ -119.371910188999962, 50.899647606000059 ], [ -119.37191251499992, 50.899631972000044 ], [ -119.371558084999947, 50.899639176000022 ], [ -119.371585485999958, 50.900178272000076 ], [ -119.371159228999943, 50.900186936000061 ], [ -119.371200323, 50.900995580000021 ], [ -119.370774061999938, 50.901004242000049 ], [ -119.370831438, 50.902133444000086 ], [ -119.37148775899999, 50.902172345000075 ], [ -119.371863819999945, 50.899644857000055 ], [ -119.371910188999962, 50.899647606000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021377", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "86.7", "sL_BldgLoss": "86.7", "sL_StrLoss": "86.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED4239F23CCF5DC0FDD98F1491724940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.236069562999901, 50.894599710000129 ], [ -119.236325686999976, 50.894594283000096 ], [ -119.236411509999954, 50.894601439000049 ], [ -119.23698071099993, 50.894589332000052 ], [ -119.237238176999966, 50.894610857000032 ], [ -119.23733777299999, 50.894608723000097 ], [ -119.237409363999944, 50.894616169000123 ], [ -119.237580511000019, 50.894621548000039 ], [ -119.237765395999958, 50.894617590000081 ], [ -119.237864585999915, 50.894606524 ], [ -119.237949103999966, 50.894586711000059 ], [ -119.238048701999944, 50.894584575000096 ], [ -119.238218617999962, 50.894562966000073 ], [ -119.238359606999936, 50.894532991000062 ], [ -119.238486419999987, 50.894503262000065 ], [ -119.238640411999896, 50.894446008000038 ], [ -119.238779710999935, 50.894379986000096 ], [ -119.23893372, 50.894322698000067 ], [ -119.239059228999963, 50.894266001000091 ], [ -119.239211365999935, 50.894188652000132 ], [ -119.239348920999973, 50.89410261900008 ], [ -119.23948739899997, 50.894034784000077 ], [ -119.239611202999953, 50.893958262000147 ], [ -119.239749682999928, 50.893890427000031 ], [ -119.24008230199999, 50.893734869000106 ], [ -119.24033228699993, 50.893627317000025 ], [ -119.240428685999944, 50.893569820000096 ], [ -119.240524646999958, 50.893503229000054 ], [ -119.240588683999988, 50.893475068000065 ], [ -119.240216916999941, 50.895925249000051 ], [ -119.234551953999969, 50.895582616000077 ], [ -119.234616309999964, 50.8951588420001 ], [ -119.234698725, 50.895133067000124 ], [ -119.234783260999976, 50.895113280000054 ], [ -119.234881633000029, 50.895084159000142 ], [ -119.234979503999966, 50.895046104000038 ], [ -119.235063639999979, 50.895017272000096 ], [ -119.2351331, 50.894979810000059 ], [ -119.235287063, 50.894922515000104 ], [ -119.235357402999909, 50.894903007000046 ], [ -119.235469930999912, 50.894873617 ], [ -119.235581632999967, 50.894826227000074 ], [ -119.235679137999966, 50.89477911300007 ], [ -119.235791315999947, 50.894740747000029 ], [ -119.235889187999959, 50.89470263300008 ], [ -119.235971214999964, 50.894628799000053 ], [ -119.236069562999901, 50.894599710000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021378", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "1", "sL_AssetLoss": "204", "sL_BldgLoss": "204", "sL_StrLoss": "204", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007D3B68FA15D25DC021F54B82BF764940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.280606725, 50.928433605000123 ], [ -119.280232485999989, 50.928402096000063 ], [ -119.2794908799999, 50.928431165000049 ], [ -119.279278608999974, 50.928439498000103 ], [ -119.27861702199999, 50.92838788900012 ], [ -119.278956469999954, 50.926139591000052 ], [ -119.284625648999949, 50.926479969000106 ], [ -119.28453072799995, 50.927109219000037 ], [ -119.286457233999968, 50.927224820000042 ], [ -119.286090025999954, 50.929659661000073 ], [ -119.285411512999985, 50.929433692000046 ], [ -119.284266314999954, 50.9292035080001 ], [ -119.283628350999891, 50.929104464000019 ], [ -119.283556389999944, 50.929093294000047 ], [ -119.282200891999977, 50.929005602000082 ], [ -119.281876382999982, 50.928928416000169 ], [ -119.281410899999969, 50.928717289000147 ], [ -119.281030396999952, 50.928544692000088 ], [ -119.280606725, 50.928433605000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D3EE666ACD45DC021C20996B4654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.32235788399997, 50.794047139000064 ], [ -119.3240591, 50.794013243000023 ], [ -119.324099224999983, 50.79482193000009 ], [ -119.32367391399994, 50.794830405000049 ], [ -119.323687287999945, 50.795099968000081 ], [ -119.321986032999931, 50.79513385900006 ], [ -119.321945942999918, 50.794325172000057 ], [ -119.322371249999932, 50.794316702000039 ], [ -119.32235788399997, 50.794047139000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "54565083", "BldgCostT": "36948333", "sL_LossRatio": "0.999033962545729", "sL_AssetLoss": "3001.954", "sL_BldgLoss": "2999.054", "sL_StrLoss": "2998", "sL_NStrLoss": "1.054", "sL_ContLoss": "2.9", "geom_point": "0101000020E6100000D223807A77D45DC0EF4FF39FFF664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.318872753999926, 50.816925794000092 ], [ -119.319245038999981, 50.814438532000061 ], [ -119.317921096999896, 50.814359272000068 ], [ -119.317954849999964, 50.814133799000039 ], [ -119.317931013999953, 50.814132372000024 ], [ -119.318022212999935, 50.813523132000022 ], [ -119.314180835999963, 50.813293070000093 ], [ -119.31471647599993, 50.80971654800004 ], [ -119.315218223999977, 50.809746606000026 ], [ -119.315223051999979, 50.809714360000044 ], [ -119.316374086999971, 50.80978330500011 ], [ -119.316374298999975, 50.80978188600016 ], [ -119.318460033999983, 50.809906787000031 ], [ -119.318454605999989, 50.809797161000056 ], [ -119.318175111999949, 50.809780427000078 ], [ -119.317602604999962, 50.809791806000135 ], [ -119.317600339999899, 50.809746010000069 ], [ -119.314698312999951, 50.809572192000061 ], [ -119.315233865999986, 50.805995652000028 ], [ -119.316526541999934, 50.806073086000012 ], [ -119.316832708999982, 50.804027783000102 ], [ -119.316985683000013, 50.804036946000089 ], [ -119.317119146000024, 50.803145288000103 ], [ -119.318928661999962, 50.803253655000034 ], [ -119.319084011999905, 50.802215431000043 ], [ -119.319610961999928, 50.802246983000096 ], [ -119.319820929999977, 50.800843567000086 ], [ -119.319714108999946, 50.800837171000111 ], [ -119.319727874999927, 50.801115039000138 ], [ -119.318026396999983, 50.801148876000134 ], [ -119.318013052999959, 50.800879313000046 ], [ -119.317162319, 50.800896222000119 ], [ -119.317151802999945, 50.800683722000024 ], [ -119.316354388999969, 50.800635955000132 ], [ -119.316468885999882, 50.79987102200004 ], [ -119.316389343999944, 50.799866257000069 ], [ -119.316460812999964, 50.799388778000051 ], [ -119.314579851999937, 50.799276080000027 ], [ -119.314558249999962, 50.799420366000092 ], [ -119.314189889999923, 50.799398292000014 ], [ -119.314187032999939, 50.799417375000054 ], [ -119.31249963, 50.799316241000028 ], [ -119.31212677699996, 50.801805665000089 ], [ -119.312523198999912, 50.801797803000056 ], [ -119.312549822999983, 50.802336931000127 ], [ -119.312975206999909, 50.802328495000019 ], [ -119.312988521999955, 50.802598059000111 ], [ -119.31341390599998, 50.802589620000035 ], [ -119.313453858999978, 50.80339831200007 ], [ -119.313879249999943, 50.803389872000118 ], [ -119.313932537, 50.80446812800006 ], [ -119.313507135999942, 50.80447656900003 ], [ -119.31352045499996, 50.804746132000098 ], [ -119.312669646999964, 50.804763009000041 ], [ -119.31268296099995, 50.805032573000055 ], [ -119.311406739999939, 50.805057878000092 ], [ -119.31134020599994, 50.803710056000092 ], [ -119.310914810999932, 50.803718488000058 ], [ -119.310901507, 50.803448922000086 ], [ -119.310476114, 50.803457353000077 ], [ -119.310462812999987, 50.803187788000074 ], [ -119.310037421999937, 50.803196216000089 ], [ -119.309999337, 50.802424215000038 ], [ -119.306362319999963, 50.802206075000043 ], [ -119.306380584999971, 50.802084246000028 ], [ -119.306009216999911, 50.802061966000046 ], [ -119.306545373999938, 50.798485436000114 ], [ -119.30860407199998, 50.798608933000033 ], [ -119.309069634999901, 50.795501887000029 ], [ -119.309437958999979, 50.795523977000116 ], [ -119.309440818000027, 50.795504895000064 ], [ -119.312298481999974, 50.795676248000042 ], [ -119.31232009099989, 50.795531961000087 ], [ -119.31606867499994, 50.795756624000063 ], [ -119.316129334, 50.795351348000111 ], [ -119.316413811999936, 50.795368392000114 ], [ -119.316470238999926, 50.79499135500005 ], [ -119.322123102, 50.795329889000122 ], [ -119.32206197499994, 50.795738668000091 ], [ -119.322331223999939, 50.795754785000035 ], [ -119.322203965999947, 50.796605810000138 ], [ -119.322577675999923, 50.796628179000088 ], [ -119.322463291999938, 50.79739312100007 ], [ -119.32254283, 50.797397881000109 ], [ -119.32216809499991, 50.799903769000139 ], [ -119.325436149999945, 50.80009932900002 ], [ -119.325634605999966, 50.800111201000064 ], [ -119.325628504999941, 50.800152015 ], [ -119.329997268999989, 50.800413281000061 ], [ -119.329925448999958, 50.800894070000041 ], [ -119.330253393999925, 50.800913675000103 ], [ -119.330187168999899, 50.801357023000044 ], [ -119.335092269999976, 50.801650142000071 ], [ -119.335082218999943, 50.801717481000033 ], [ -119.334885195999917, 50.801945140000086 ], [ -119.334871828999937, 50.801963449000027 ], [ -119.334788556999968, 50.802010228000043 ], [ -119.334662206999951, 50.80204892200004 ], [ -119.3345781399999, 50.802077744000037 ], [ -119.334452197999937, 50.802125457000031 ], [ -119.334353486999959, 50.802145573000061 ], [ -119.334101635999943, 50.802240987000076 ], [ -119.333946796999925, 50.802280285000059 ], [ -119.333806262999957, 50.802319303000054 ], [ -119.333679895999964, 50.802358029000104 ], [ -119.33356646799993, 50.802369460000108 ], [ -119.333153698999979, 50.802378324000124 ], [ -119.333010158999954, 50.80235439700003 ], [ -119.332893982999906, 50.802311947000113 ], [ -119.33273557899993, 50.802279378000051 ], [ -119.332478484999967, 50.802266892000041 ], [ -119.332350396999971, 50.802269651000096 ], [ -119.332238298999926, 50.802308050000136 ], [ -119.332155040999979, 50.802354851000125 ], [ -119.332043346999967, 50.802402270000087 ], [ -119.331849242999908, 50.802514461000058 ], [ -119.331767587999977, 50.802597259000024 ], [ -119.331655912999906, 50.802644643000043 ], [ -119.331559282999962, 50.802709752000055 ], [ -119.331462986999938, 50.802783845000079 ], [ -119.331196690999988, 50.802958989000103 ], [ -119.331051826999953, 50.803054265000107 ], [ -119.331018074, 50.803203808000049 ], [ -119.331427688999952, 50.804042024000069 ], [ -119.33165488399996, 50.804650123000037 ], [ -119.331647927999938, 50.804840036000073 ], [ -119.331523740999955, 50.80502207600005 ], [ -119.33149381799997, 50.805043691000051 ], [ -119.329899411, 50.804948392000021 ], [ -119.329703502999962, 50.806259704000063 ], [ -119.329663913, 50.806257338000094 ], [ -119.329480879999949, 50.807482399000087 ], [ -119.329234311999926, 50.807781606000084 ], [ -119.329071610999918, 50.807979097000057 ], [ -119.329059360999935, 50.807993961000136 ], [ -119.32613368899996, 50.807819022000047 ], [ -119.325808643999977, 50.809993285000083 ], [ -119.325412856999932, 50.809969614000053 ], [ -119.325332853999953, 50.810504696000073 ], [ -119.325223746999924, 50.810498170000116 ], [ -119.325185061999946, 50.810756898000136 ], [ -119.324092705999973, 50.81069155600008 ], [ -119.324062911999945, 50.810890776000186 ], [ -119.324121205999944, 50.810894263000058 ], [ -119.324087486999986, 50.811119738000095 ], [ -119.324111320999975, 50.811121164000056 ], [ -119.323739334999971, 50.813608451000043 ], [ -119.325063263999979, 50.813687643000129 ], [ -119.324612209999913, 50.816703843000035 ], [ -119.324406938999971, 50.816755592000057 ], [ -119.324220279999949, 50.816840068000019 ], [ -119.32410360599998, 50.816935206000053 ], [ -119.324082161999911, 50.816952680000043 ], [ -119.323980301999967, 50.817137832000071 ], [ -119.323965939999965, 50.817230556000027 ], [ -119.319907096999898, 50.816987706000077 ], [ -119.318872753999926, 50.816925794000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "180.5", "sL_BldgLoss": "180.5", "sL_StrLoss": "180.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D9C4B060EED45DC0E46765F31F664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.326643760999929, 50.796021490000051 ], [ -119.330143174999989, 50.796230769000047 ], [ -119.329608928999932, 50.799807421000011 ], [ -119.325429857999936, 50.799557485000037 ], [ -119.323955444999982, 50.799469267000127 ], [ -119.324490137999987, 50.795892640000012 ], [ -119.32559707399993, 50.79595887300011 ], [ -119.326643760999929, 50.796021490000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18662167", "BldgCostT": "12606667", "sL_LossRatio": "1", "sL_AssetLoss": "1376.1", "sL_BldgLoss": "1376.1", "sL_StrLoss": "1376.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F26AD5380D25DC0636FF7ACCA624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.286254258999975, 50.778693699000065 ], [ -119.285306315999918, 50.777935697000039 ], [ -119.285204699999966, 50.777852903000095 ], [ -119.285282704999972, 50.77771320600003 ], [ -119.285282663999979, 50.777595102000063 ], [ -119.285282455999919, 50.776797004000073 ], [ -119.285282302999946, 50.776311240000027 ], [ -119.285281779999963, 50.774541796000108 ], [ -119.28528277099997, 50.774512227000052 ], [ -119.285298622999974, 50.774036965000086 ], [ -119.285319201999982, 50.77342078500007 ], [ -119.285205976999919, 50.773292211000069 ], [ -119.285195907999963, 50.773290766000038 ], [ -119.284964595999909, 50.773257808000061 ], [ -119.284754287999974, 50.773258388000066 ], [ -119.282373798999913, 50.773265081000062 ], [ -119.282374637999965, 50.773195948000073 ], [ -119.282426882999957, 50.768902306 ], [ -119.283433505999966, 50.768917892000061 ], [ -119.283566353999973, 50.768904701000075 ], [ -119.28380680099994, 50.768880814000113 ], [ -119.284430828999945, 50.768756754000023 ], [ -119.285071729999956, 50.768629358000041 ], [ -119.285513695999924, 50.768541514000084 ], [ -119.286072782999923, 50.76837759300011 ], [ -119.286416880999965, 50.768240495000065 ], [ -119.286723402999897, 50.768078502000051 ], [ -119.287770499999965, 50.767397194000061 ], [ -119.289222114, 50.76659410500006 ], [ -119.289493797999938, 50.766303688000065 ], [ -119.28962221299993, 50.765685295000061 ], [ -119.289736273999935, 50.765463052000058 ], [ -119.289763285999967, 50.765410412000122 ], [ -119.28994899199995, 50.765245690000071 ], [ -119.28996315299996, 50.765237687000159 ], [ -119.290078288999894, 50.76517231400004 ], [ -119.290400716999969, 50.765065388000082 ], [ -119.290778892999967, 50.765014100000016 ], [ -119.290940305000021, 50.76501333300012 ], [ -119.29118109199996, 50.765012200000108 ], [ -119.291588110999982, 50.765072800000091 ], [ -119.292083812999977, 50.765216311000103 ], [ -119.293040898999934, 50.765675393000038 ], [ -119.293177441999958, 50.765768924000085 ], [ -119.293926017, 50.766281701000018 ], [ -119.294425998999913, 50.76664147400006 ], [ -119.295717169999961, 50.767570512000049 ], [ -119.297224359, 50.768654866000091 ], [ -119.297280498999967, 50.768695255000097 ], [ -119.297417990999918, 50.76879420100007 ], [ -119.297903607999928, 50.769233894000109 ], [ -119.298237195, 50.769717608000065 ], [ -119.298417598999947, 50.770224711000068 ], [ -119.298448384999972, 50.770386611000085 ], [ -119.298527373999931, 50.770802365000094 ], [ -119.294998991999975, 50.770590220000066 ], [ -119.295037652999937, 50.770332584000094 ], [ -119.293918314999956, 50.770265260000038 ], [ -119.293901588999958, 50.770376706000057 ], [ -119.28825208799999, 50.770036735000055 ], [ -119.288258987999967, 50.769990799000013 ], [ -119.287710297, 50.769957765000058 ], [ -119.287457978999925, 50.771637349000109 ], [ -119.28641785699989, 50.771574721000022 ], [ -119.286353660999907, 50.772001971000115 ], [ -119.286962264999929, 50.77203861800006 ], [ -119.286946356999977, 50.772144503000028 ], [ -119.287799943999985, 50.77219589500006 ], [ -119.287727218999947, 50.772679988000071 ], [ -119.288137468999935, 50.772704686000047 ], [ -119.287775803000031, 50.775112103000048 ], [ -119.287978339999952, 50.775124296000115 ], [ -119.287892654999936, 50.775694635000086 ], [ -119.289092644999954, 50.775766865000016 ], [ -119.289038190999946, 50.776129371000074 ], [ -119.289541356999962, 50.776159654000054 ], [ -119.289292093999933, 50.777819109000028 ], [ -119.289332878, 50.777821563000046 ], [ -119.289284050999967, 50.778146619000047 ], [ -119.289932581999921, 50.778185647000065 ], [ -119.289828302999965, 50.77887990200005 ], [ -119.290649707999975, 50.778929329000022 ], [ -119.290112514999961, 50.782505863000068 ], [ -119.289911939999968, 50.782493795000114 ], [ -119.28984572799996, 50.782934569000069 ], [ -119.28943720800001, 50.782909987000011 ], [ -119.289149711999968, 50.78261948600003 ], [ -119.289057215999918, 50.782466701000033 ], [ -119.288930410999981, 50.782257109000113 ], [ -119.288012393999978, 50.78030269900011 ], [ -119.28766017599996, 50.779836327000098 ], [ -119.28762481199999, 50.779789500000085 ], [ -119.286254258999975, 50.778693699000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33681456", "BldgCostT": "22732039", "sL_LossRatio": "1", "sL_AssetLoss": "1336", "sL_BldgLoss": "1336", "sL_StrLoss": "1336", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B7C1FD3EABD35DC0AEA966B544684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.308263315999952, 50.82445604300004 ], [ -119.308251092999939, 50.823276751000051 ], [ -119.304159159999983, 50.823439657000087 ], [ -119.304280584999916, 50.822630349000043 ], [ -119.303942521999915, 50.822610071000092 ], [ -119.304392172999954, 50.819613004000132 ], [ -119.303324609999933, 50.819548959 ], [ -119.303648468999938, 50.817390439000114 ], [ -119.302528536999915, 50.817323241000047 ], [ -119.302560041000021, 50.817113286000065 ], [ -119.301620720999892, 50.817056917000045 ], [ -119.302157407999943, 50.813480470000087 ], [ -119.302167469999929, 50.813481073000084 ], [ -119.30219839099999, 50.813274996000118 ], [ -119.301600685000011, 50.81323912200007 ], [ -119.30213732799993, 50.809662660000072 ], [ -119.302391660999916, 50.809677925000088 ], [ -119.302483246999969, 50.809067467000077 ], [ -119.302509816999972, 50.80906906200007 ], [ -119.302593275000021, 50.808512768000128 ], [ -119.303800677999959, 50.808585229000066 ], [ -119.30394356499994, 50.807632597000101 ], [ -119.305273100999912, 50.807712372000026 ], [ -119.305361131999973, 50.807125329000087 ], [ -119.311015443999921, 50.807464420000059 ], [ -119.311006975999987, 50.807520926000073 ], [ -119.312973083999964, 50.807638765000064 ], [ -119.312971225999931, 50.807651165000067 ], [ -119.313925352999945, 50.807708339000023 ], [ -119.313389675999971, 50.811284866000079 ], [ -119.313267115999963, 50.811277523000101 ], [ -119.313233781999969, 50.81150006900009 ], [ -119.312869012999897, 50.811478212000075 ], [ -119.31256556699995, 50.813503780000083 ], [ -119.312349091999977, 50.813490808000047 ], [ -119.31225948699992, 50.814088887000025 ], [ -119.310718953000034, 50.813996561000067 ], [ -119.31045500299993, 50.815757823000077 ], [ -119.31036629799999, 50.815752506000116 ], [ -119.310236155999945, 50.816620848000049 ], [ -119.310748285999964, 50.816651544000095 ], [ -119.310588642999903, 50.817716752000095 ], [ -119.310897155999939, 50.81773524200004 ], [ -119.310608501, 50.819661233000069 ], [ -119.310610501999946, 50.819661353000079 ], [ -119.310497249999955, 50.820416948000108 ], [ -119.310729249999966, 50.820430851000012 ], [ -119.310193163999912, 50.824007312000063 ], [ -119.30978493299996, 50.82398284500011 ], [ -119.309701072999985, 50.824542221000058 ], [ -119.308263315999952, 50.82445604300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17025136", "BldgCostT": "10927079", "sL_LossRatio": "1", "sL_AssetLoss": "824.9", "sL_BldgLoss": "824.9", "sL_StrLoss": "824.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EA357F44FAD25DC0A61AEE0A9A644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.296819482999922, 50.789657652000095 ], [ -119.296822038999977, 50.78906403200007 ], [ -119.296823098999951, 50.788814513000105 ], [ -119.296818156999933, 50.788640283000113 ], [ -119.296802890999942, 50.788100783000083 ], [ -119.296794477999967, 50.787804198000082 ], [ -119.296794108999947, 50.787791385000041 ], [ -119.296733717999984, 50.787576697000084 ], [ -119.296452799999912, 50.787310789000081 ], [ -119.296176209999913, 50.787187705000051 ], [ -119.296147638999969, 50.787183288000044 ], [ -119.295695428, 50.78711370300006 ], [ -119.29423532499996, 50.787106202000089 ], [ -119.294159959999888, 50.787096195000061 ], [ -119.29400595, 50.787075802000118 ], [ -119.29398641100002, 50.787073192000051 ], [ -119.293783775999884, 50.786998795000017 ], [ -119.293531112999972, 50.786811301000057 ], [ -119.293462639999973, 50.786747633000047 ], [ -119.291104286999939, 50.78455419400008 ], [ -119.290881936999966, 50.784337600000072 ], [ -119.29057520899994, 50.784038792000047 ], [ -119.29082362699998, 50.784053737000065 ], [ -119.291290341999982, 50.780946247000081 ], [ -119.293072167999952, 50.781053427000103 ], [ -119.293191698999948, 50.780257289000069 ], [ -119.298842524999955, 50.780597005000075 ], [ -119.298471103999987, 50.783072883000095 ], [ -119.300168555999946, 50.783174874000068 ], [ -119.300134735999976, 50.783400357000119 ], [ -119.300654154999904, 50.783431561000071 ], [ -119.300594757999932, 50.783827607000035 ], [ -119.300933473999933, 50.783847954000095 ], [ -119.300397045999929, 50.787424518000115 ], [ -119.299924924999942, 50.787396157000089 ], [ -119.299708596999963, 50.788838230000074 ], [ -119.298229118999942, 50.788749344000067 ], [ -119.29812756099993, 50.789426165000108 ], [ -119.297832313999947, 50.789408424000037 ], [ -119.297810155999926, 50.789556071000028 ], [ -119.298405362999972, 50.78959183500011 ], [ -119.298399367999934, 50.789631792000108 ], [ -119.300415001000019, 50.789752879000048 ], [ -119.299878458999984, 50.793329417000059 ], [ -119.299097819999943, 50.793282524000084 ], [ -119.298836767999944, 50.79502225400006 ], [ -119.296795833, 50.795162618000091 ], [ -119.296809040999932, 50.792086272000098 ], [ -119.296810747999942, 50.791690627000051 ], [ -119.296811215999981, 50.791583286000026 ], [ -119.296812490000022, 50.791285694000067 ], [ -119.296814650999963, 50.790782258000114 ], [ -119.296819482999922, 50.789657652000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "1", "sL_AssetLoss": "316.1", "sL_BldgLoss": "316.1", "sL_StrLoss": "316.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A248522D3DD55DC0FDFCB5C4E3644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.328886852, 50.791506526 ], [ -119.328486278999932, 50.789152268000031 ], [ -119.328540733999915, 50.787548169000075 ], [ -119.328569967999982, 50.786685719000104 ], [ -119.330455398999945, 50.786243186000092 ], [ -119.334583138999946, 50.786193945000015 ], [ -119.335166275999882, 50.787510504000046 ], [ -119.335039868999942, 50.788789950000094 ], [ -119.334921168999969, 50.79024332700007 ], [ -119.33519183199995, 50.79103806500008 ], [ -119.33434510599993, 50.790987470000047 ], [ -119.334491944999968, 50.790003566000067 ], [ -119.332138603999923, 50.789862911000078 ], [ -119.332157901999949, 50.789733650000073 ], [ -119.329362636999974, 50.789566516000029 ], [ -119.329071232999951, 50.791517553000055 ], [ -119.328886852, 50.791506526 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19421000", "BldgCostT": "13130000", "sL_LossRatio": "1", "sL_AssetLoss": "1256.4", "sL_BldgLoss": "1256.4", "sL_StrLoss": "1256.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037D717A642D45DC0B47426E971694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.317458952999957, 50.830506935000081 ], [ -119.317562454999987, 50.829815826000129 ], [ -119.316369255999945, 50.829744401000085 ], [ -119.316341071999943, 50.829932557000085 ], [ -119.310683882, 50.829593743000061 ], [ -119.311219995999949, 50.826017304000118 ], [ -119.312232263999988, 50.826077952000034 ], [ -119.312272761999978, 50.825807728000015 ], [ -119.313269829999953, 50.825867456000054 ], [ -119.313418965000025, 50.824872153000044 ], [ -119.314711959999912, 50.82494959300012 ], [ -119.31471602, 50.82492249400007 ], [ -119.314085730999963, 50.824884746000045 ], [ -119.314560414999974, 50.821716162 ], [ -119.312776709999966, 50.821609316000057 ], [ -119.312888342999983, 50.820864285000027 ], [ -119.311848631999965, 50.820801992000035 ], [ -119.312384546999951, 50.817225511000103 ], [ -119.318040186999937, 50.817564244000039 ], [ -119.31792864799999, 50.818309283000119 ], [ -119.318968308999942, 50.818371520000035 ], [ -119.318627370999977, 50.820649073000041 ], [ -119.319003340999942, 50.820671577000077 ], [ -119.319194826999961, 50.819392372000046 ], [ -119.319918064999968, 50.81943565800006 ], [ -119.324365697999966, 50.819701749000046 ], [ -119.324358618999923, 50.819997681000082 ], [ -119.324304427999891, 50.820159530000069 ], [ -119.323989238999985, 50.820607085000049 ], [ -119.323765200999972, 50.820769587000036 ], [ -119.32290226, 50.821213906000025 ], [ -119.322895433000014, 50.821217434000069 ], [ -119.322550241, 50.821395156000044 ], [ -119.321678677999984, 50.822023249000075 ], [ -119.321558516999914, 50.82212375200006 ], [ -119.321443448, 50.822219950000054 ], [ -119.321329769999963, 50.822315032000041 ], [ -119.320904215999988, 50.822670877000043 ], [ -119.320528941999925, 50.822984694000084 ], [ -119.320344324999908, 50.82321721000006 ], [ -119.32032223499999, 50.823278053000067 ], [ -119.32030514899995, 50.823325197000123 ], [ -119.32025937899999, 50.823451192000086 ], [ -119.320258292999952, 50.823796179000041 ], [ -119.320252625999942, 50.825593358000098 ], [ -119.319940473999978, 50.824437987000039 ], [ -119.319942218999955, 50.825010364000086 ], [ -119.319943056999975, 50.825278644000058 ], [ -119.31994481, 50.825841884000084 ], [ -119.319946372999979, 50.826354680000051 ], [ -119.319946758999933, 50.826481358000095 ], [ -119.319947043999946, 50.826567415000063 ], [ -119.320081844999891, 50.827020223000012 ], [ -119.319897322999921, 50.827042566000031 ], [ -119.319577453999941, 50.827082072000096 ], [ -119.31939370799995, 50.82724751700006 ], [ -119.319335048999932, 50.827300297000072 ], [ -119.319254692999948, 50.827446171000148 ], [ -119.319253965999962, 50.827594067000057 ], [ -119.319328324999915, 50.827764499000068 ], [ -119.319582379999986, 50.828087102000055 ], [ -119.319666379999916, 50.828193774000049 ], [ -119.319799538999973, 50.828362853000023 ], [ -119.319847012999958, 50.82854371700008 ], [ -119.319901322999982, 50.828750542000094 ], [ -119.319903070999942, 50.829127188000058 ], [ -119.319905735999953, 50.82968285400004 ], [ -119.319907449999988, 50.830044311000066 ], [ -119.319909460999952, 50.830472066000013 ], [ -119.31896366399998, 50.830441807000078 ], [ -119.318963355999969, 50.83043600400002 ], [ -119.318568221999939, 50.830430271000047 ], [ -119.317458952999957, 50.830506935000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10244251", "BldgCostT": "7065001", "sL_LossRatio": "1", "sL_AssetLoss": "567.6", "sL_BldgLoss": "567.6", "sL_StrLoss": "567.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F84D06EC4FD55DC0C524B78116644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.326415430999973, 50.787750047000024 ], [ -119.326481484999945, 50.787307951000109 ], [ -119.325734252999922, 50.787263239000033 ], [ -119.325813656999969, 50.786731840000108 ], [ -119.325268673999972, 50.786699227000106 ], [ -119.32580311, 50.783122541000047 ], [ -119.326309199999969, 50.783152827000087 ], [ -119.326371807999976, 50.78273375400007 ], [ -119.326906174999976, 50.782765729000069 ], [ -119.326899123999965, 50.782623766000029 ], [ -119.327324322999914, 50.782615279000019 ], [ -119.327297546999944, 50.782076155000041 ], [ -119.328147933999944, 50.782059176000139 ], [ -119.328134541999958, 50.78178961400004 ], [ -119.328813748999963, 50.781776050000083 ], [ -119.3289936689999, 50.780571224000049 ], [ -119.329261406999976, 50.778778210000077 ], [ -119.32941584199996, 50.778787449000063 ], [ -119.329493025999952, 50.778270514000042 ], [ -119.335143877999911, 50.778608398000081 ], [ -119.334862788999914, 50.780492497000097 ], [ -119.335518595999986, 50.78053169100005 ], [ -119.335296512999946, 50.78202031700004 ], [ -119.334984966999968, 50.784108435000086 ], [ -119.334454971999961, 50.784076760000076 ], [ -119.334428105999962, 50.784256802000073 ], [ -119.334291397999962, 50.785172948000096 ], [ -119.332865624999954, 50.785087726000071 ], [ -119.332732820999965, 50.785977473000067 ], [ -119.334056827999945, 50.786056612000088 ], [ -119.33412290499993, 50.785613837000106 ], [ -119.335233909999914, 50.78568023400009 ], [ -119.335288170999974, 50.78531656400002 ], [ -119.335816352, 50.785348124000073 ], [ -119.339116018999974, 50.785545237000044 ], [ -119.33918211299999, 50.785101999000041 ], [ -119.338683171999932, 50.785072201000055 ], [ -119.338807153999937, 50.784240793000016 ], [ -119.33800170799999, 50.784192684000047 ], [ -119.338203495999949, 50.782839620000097 ], [ -119.338124305999941, 50.782834889000121 ], [ -119.338182323999945, 50.782445838000065 ], [ -119.33748151199994, 50.782403973000044 ], [ -119.337926142999905, 50.779422562000022 ], [ -119.338014921999971, 50.778827211000078 ], [ -119.338215326999943, 50.778839183000038 ], [ -119.338454776999967, 50.77723331300011 ], [ -119.33794898799998, 50.777203096000051 ], [ -119.338083177999962, 50.776303168000062 ], [ -119.336310598999916, 50.77619725200001 ], [ -119.336357906999979, 50.775880059000073 ], [ -119.333765138999965, 50.775725083000061 ], [ -119.334298765999961, 50.772148310000013 ], [ -119.336982014999933, 50.772308694000053 ], [ -119.337021228999944, 50.772045725000041 ], [ -119.333895610999889, 50.771858893000051 ], [ -119.333925041999947, 50.771661609000027 ], [ -119.333952477999944, 50.77164009400007 ], [ -119.334399184999882, 50.771487690000107 ], [ -119.334492525999963, 50.771423726000066 ], [ -119.335898747999948, 50.771545221000075 ], [ -119.338330692999932, 50.771835589000077 ], [ -119.33953208399997, 50.771863995000061 ], [ -119.339542877000014, 50.771956655000061 ], [ -119.339784963999989, 50.774034172000107 ], [ -119.33983427699999, 50.774432142000059 ], [ -119.340053008000027, 50.775699222000092 ], [ -119.340234541999948, 50.776859728000012 ], [ -119.34125797499992, 50.785957082000088 ], [ -119.33868025699999, 50.786061671000027 ], [ -119.338679224999964, 50.786077175000059 ], [ -119.336992217999949, 50.786120719000081 ], [ -119.335275875999969, 50.786169104000045 ], [ -119.335020825999962, 50.786178260000028 ], [ -119.334583138999946, 50.786193945000015 ], [ -119.330455398999945, 50.786243186000092 ], [ -119.328569967999982, 50.786685719000104 ], [ -119.328540733999915, 50.787548169000075 ], [ -119.328486278999932, 50.789152268000031 ], [ -119.328886852, 50.791506526 ], [ -119.32749424, 50.791423230000085 ], [ -119.325615566999971, 50.791310835000132 ], [ -119.323418798999953, 50.79117936800003 ], [ -119.323871786999987, 50.788148966000037 ], [ -119.32395343599994, 50.787602709000097 ], [ -119.326415430999973, 50.787750047000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021388", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2300667", "BldgCostT": "1586667", "sL_LossRatio": "1", "sL_AssetLoss": "67.7", "sL_BldgLoss": "67.7", "sL_StrLoss": "67.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFC21D1CEAD35DC073BD8EB42B644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.310636147, 50.785240825000102 ], [ -119.310712736999989, 50.784729394000088 ], [ -119.30970425199996, 50.784668901000032 ], [ -119.309737504999958, 50.784446891000115 ], [ -119.309300754999938, 50.784420690000076 ], [ -119.309430080999945, 50.783557259000148 ], [ -119.308598591999967, 50.78350737300012 ], [ -119.308624424999934, 50.78333492200008 ], [ -119.30853190199997, 50.783329370000033 ], [ -119.308635760999948, 50.782636039000117 ], [ -119.308182839999958, 50.782608862000075 ], [ -119.308237854999931, 50.78224162100004 ], [ -119.305859789999928, 50.782098898000136 ], [ -119.30630146799993, 50.779151338000041 ], [ -119.306362027999953, 50.778747150000093 ], [ -119.306401977999926, 50.778772499000119 ], [ -119.307911401999945, 50.779434797000135 ], [ -119.30989178099999, 50.779890495000096 ], [ -119.311136182999974, 50.780091291000041 ], [ -119.312000508999972, 50.780685210000065 ], [ -119.312856709999934, 50.781918600000076 ], [ -119.313573583, 50.782650600000089 ], [ -119.314429491999988, 50.782750307000107 ], [ -119.315024401999906, 50.782738896000062 ], [ -119.316764676999981, 50.782392002000059 ], [ -119.316287733999971, 50.785579659000085 ], [ -119.31588598299993, 50.785555582000057 ], [ -119.310636147, 50.785240825000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680084", "BldgCostT": "1848334", "sL_LossRatio": "1", "sL_AssetLoss": "106.1", "sL_BldgLoss": "106.1", "sL_StrLoss": "106.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007629BF5613CF5DC0E17EE1116C634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.237925001999955, 50.774872991000024 ], [ -119.238290649999982, 50.774740799000078 ], [ -119.238260535999984, 50.774939764000123 ], [ -119.237772978999928, 50.778160870000043 ], [ -119.23212292299992, 50.777818067000112 ], [ -119.23233886499996, 50.776392667000025 ], [ -119.2323622299999, 50.776238430000049 ], [ -119.233266014999927, 50.77623030900002 ], [ -119.23380238499999, 50.776156209000142 ], [ -119.234676983999961, 50.775832242000035 ], [ -119.23474227299999, 50.77580803700009 ], [ -119.23523639299998, 50.775624991 ], [ -119.235716197999949, 50.775562304000047 ], [ -119.236379111999952, 50.775153601000085 ], [ -119.236811796999987, 50.775028301000141 ], [ -119.237925001999955, 50.774872991000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18992584", "BldgCostT": "13098334", "sL_LossRatio": "1", "sL_AssetLoss": "913.6", "sL_BldgLoss": "913.6", "sL_StrLoss": "913.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000087FDBF66D0CD5DC0076F9BEB2C644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.220284403999983, 50.777962100000138 ], [ -119.220855806999964, 50.777779799000015 ], [ -119.221764792999949, 50.777781312000101 ], [ -119.222407491999917, 50.777893798000022 ], [ -119.223176587999916, 50.777925093000086 ], [ -119.223613001999965, 50.777871 ], [ -119.2250341109999, 50.777628901000114 ], [ -119.228060912000018, 50.776527895000086 ], [ -119.23057101099991, 50.776254505000075 ], [ -119.231678725999984, 50.776244567000106 ], [ -119.231652464999982, 50.776417908000042 ], [ -119.231294130999913, 50.778782917000044 ], [ -119.230253065999946, 50.778719714000054 ], [ -119.230199899999917, 50.77907054000012 ], [ -119.225461950999971, 50.778782779000032 ], [ -119.225260642999942, 50.780110152000084 ], [ -119.224346495999939, 50.780054606000064 ], [ -119.224341100999965, 50.780090172000051 ], [ -119.220785165999956, 50.779874037000077 ], [ -119.220628585999975, 50.780905755000042 ], [ -119.21789488899995, 50.780739519000093 ], [ -119.217531275999988, 50.783134221000111 ], [ -119.216505291999937, 50.783071814000046 ], [ -119.216386567999962, 50.783853544000081 ], [ -119.213669045999922, 50.783688200000036 ], [ -119.213278268999943, 50.786260011000103 ], [ -119.211735873999913, 50.78616613500003 ], [ -119.211582145999941, 50.787177547000049 ], [ -119.211413667999921, 50.787167291000074 ], [ -119.211343663, 50.787627852000085 ], [ -119.210703414999941, 50.787588877000076 ], [ -119.21050359899999, 50.78890326800007 ], [ -119.208250074999967, 50.78876605500011 ], [ -119.208231998999921, 50.788884920000058 ], [ -119.207685777999927, 50.788851655000038 ], [ -119.207683271999954, 50.788868132000076 ], [ -119.207175338999946, 50.788837196000074 ], [ -119.207171649999935, 50.788861444000098 ], [ -119.205977288, 50.78878869200004 ], [ -119.201520479999942, 50.788517099000039 ], [ -119.201749827999919, 50.787010444000018 ], [ -119.202764700000017, 50.786748106000104 ], [ -119.203424191999929, 50.786674537000053 ], [ -119.203757637999971, 50.786637346000091 ], [ -119.204115495999943, 50.786597437000125 ], [ -119.205178185999941, 50.786478906000049 ], [ -119.20642740699995, 50.786473209000114 ], [ -119.20735038, 50.786202602000067 ], [ -119.207941279999972, 50.785761101000027 ], [ -119.208132076999945, 50.785325296000046 ], [ -119.208681687999942, 50.784631692000097 ], [ -119.20936980099999, 50.784185894000061 ], [ -119.210133714, 50.783227407000041 ], [ -119.21034660299992, 50.783142208000093 ], [ -119.210913101999935, 50.782915487000082 ], [ -119.21383541199998, 50.781412998000143 ], [ -119.214518301999988, 50.781148087000069 ], [ -119.214658678999939, 50.780497197000052 ], [ -119.214996585, 50.780166793000014 ], [ -119.215273183999955, 50.780112028000119 ], [ -119.215952991, 50.779977401000025 ], [ -119.216372608999961, 50.779668567000122 ], [ -119.216692288, 50.77943329900009 ], [ -119.216885317999981, 50.779016 ], [ -119.218228805999942, 50.778621504000114 ], [ -119.219969202999891, 50.778516111000066 ], [ -119.220254881999978, 50.77825979400005 ], [ -119.220284403999983, 50.777962100000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.2", "sL_BldgLoss": "38.2", "sL_StrLoss": "38.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B04D74A7C5D45DC079B4ED8B36604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.323827710999979, 50.751152211000054 ], [ -119.325454183999966, 50.751208725000076 ], [ -119.325431305999956, 50.75169110300002 ], [ -119.325311599999949, 50.75220618 ], [ -119.323680689999918, 50.75210848800009 ], [ -119.32373499699996, 50.751229708000032 ], [ -119.323701328999974, 50.751147819000039 ], [ -119.323827710999979, 50.751152211000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21365750", "BldgCostT": "14735000", "sL_LossRatio": "1", "sL_AssetLoss": "1018.3", "sL_BldgLoss": "1018.3", "sL_StrLoss": "1018.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EDB5A8680FCB5DC039973D64A5664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.159836508999945, 50.804064982000121 ], [ -119.16076339199999, 50.803858489000049 ], [ -119.161538697999987, 50.803939935000074 ], [ -119.161862096999954, 50.803973910000131 ], [ -119.162312313999962, 50.803919795000127 ], [ -119.163175431999917, 50.803266982000075 ], [ -119.163508801999939, 50.803014845000106 ], [ -119.164067310999954, 50.802592393000097 ], [ -119.164345817, 50.802121394000039 ], [ -119.164648407999906, 50.80160969000012 ], [ -119.164966185999944, 50.800839193000066 ], [ -119.165527048999977, 50.800657146000084 ], [ -119.166083021999953, 50.800476656000072 ], [ -119.168783011999963, 50.799600091000087 ], [ -119.169979691999956, 50.798741315000051 ], [ -119.17037078599995, 50.798328292000157 ], [ -119.171120189999939, 50.798278511000078 ], [ -119.171737315999948, 50.798429397000099 ], [ -119.172138201999971, 50.798466497000106 ], [ -119.172659393999936, 50.798718598000043 ], [ -119.172834170999977, 50.798754161000062 ], [ -119.175653810999975, 50.799328093000042 ], [ -119.177566717999923, 50.799867903000141 ], [ -119.178676207999928, 50.799910584000038 ], [ -119.180532577999941, 50.799533197000073 ], [ -119.182138607999946, 50.799156111000023 ], [ -119.18298909, 50.798956395000125 ], [ -119.183647085999951, 50.798791209000136 ], [ -119.18539311499994, 50.798795500000054 ], [ -119.186041816999975, 50.798711393000126 ], [ -119.186999498999981, 50.798215800000058 ], [ -119.188178694, 50.797868318000035 ], [ -119.188643298999949, 50.797896688000144 ], [ -119.188577612999921, 50.798327269000012 ], [ -119.188171450999945, 50.800989498000028 ], [ -119.181036073999948, 50.802057104000021 ], [ -119.181033770999974, 50.802074643000026 ], [ -119.180222552999922, 50.802025055000058 ], [ -119.180059974999921, 50.80308933000002 ], [ -119.174407217999914, 50.802743622000044 ], [ -119.174482561000033, 50.802250826000041 ], [ -119.172641595999977, 50.802138174000063 ], [ -119.17284156599996, 50.800830529000088 ], [ -119.172186301999929, 50.800790425000038 ], [ -119.172095627999937, 50.801383316000091 ], [ -119.171690281999943, 50.801358505000081 ], [ -119.171679311999966, 50.801430226000072 ], [ -119.171360317999969, 50.801410699000051 ], [ -119.171321109999937, 50.801667033000044 ], [ -119.170445686999983, 50.801613442000054 ], [ -119.170195650999929, 50.803247855000087 ], [ -119.167615460999954, 50.803089864000086 ], [ -119.167562346999929, 50.803436915000148 ], [ -119.167511016999981, 50.803433771000122 ], [ -119.166991813999942, 50.806825920000058 ], [ -119.164261050999968, 50.806658643000098 ], [ -119.164239191999968, 50.806801383000042 ], [ -119.158586089999929, 50.806454877000107 ], [ -119.158744236999937, 50.805422966000037 ], [ -119.158827292999959, 50.804881002000108 ], [ -119.159031189999922, 50.804799906000063 ], [ -119.159356424999956, 50.804740104000075 ], [ -119.159836508999945, 50.804064982000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11950417", "BldgCostT": "8241667", "sL_LossRatio": "1", "sL_AssetLoss": "513", "sL_BldgLoss": "513", "sL_StrLoss": "513", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000675A07ACC1D25DC06FED4CBA10654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.29594434099999, 50.795145842000046 ], [ -119.295843372999968, 50.794332027000038 ], [ -119.292544540999955, 50.794333639000044 ], [ -119.2925769499999, 50.794117862000078 ], [ -119.291627749, 50.794060783000084 ], [ -119.291664399999917, 50.793816804000109 ], [ -119.290953745999957, 50.793774064000019 ], [ -119.291491005999958, 50.790197572000082 ], [ -119.292601384999955, 50.790264351000076 ], [ -119.292730158999944, 50.789406883000062 ], [ -119.291908985999981, 50.789357500000087 ], [ -119.291930119999975, 50.789216788000047 ], [ -119.291895394999955, 50.789214699000063 ], [ -119.291925649999953, 50.789013257000086 ], [ -119.291425693999926, 50.788983187000049 ], [ -119.291490951999933, 50.788548725000055 ], [ -119.288945944999924, 50.788395620000124 ], [ -119.288958160999968, 50.788314322000069 ], [ -119.288060320999946, 50.788260295000036 ], [ -119.288597746999969, 50.784683794000024 ], [ -119.289052308999928, 50.784711148000049 ], [ -119.289166062999968, 50.78395400600008 ], [ -119.29057520899994, 50.784038792000047 ], [ -119.290881936999966, 50.784337600000072 ], [ -119.291104286999939, 50.78455419400008 ], [ -119.293462639999973, 50.786747633000047 ], [ -119.293531112999972, 50.786811301000057 ], [ -119.293783775999884, 50.786998795000017 ], [ -119.29398641100002, 50.787073192000051 ], [ -119.29400595, 50.787075802000118 ], [ -119.294159959999888, 50.787096195000061 ], [ -119.29423532499996, 50.787106202000089 ], [ -119.295695428, 50.78711370300006 ], [ -119.296147638999969, 50.787183288000044 ], [ -119.296176209999913, 50.787187705000051 ], [ -119.296452799999912, 50.787310789000081 ], [ -119.296733717999984, 50.787576697000084 ], [ -119.296794108999947, 50.787791385000041 ], [ -119.296794477999967, 50.787804198000082 ], [ -119.296802890999942, 50.788100783000083 ], [ -119.296818156999933, 50.788640283000113 ], [ -119.296823098999951, 50.788814513000105 ], [ -119.296822038999977, 50.78906403200007 ], [ -119.296819482999922, 50.789657652000095 ], [ -119.296814650999963, 50.790782258000114 ], [ -119.296812490000022, 50.791285694000067 ], [ -119.296811215999981, 50.791583286000026 ], [ -119.296810747999942, 50.791690627000051 ], [ -119.296809040999932, 50.792086272000098 ], [ -119.296795833, 50.795162618000091 ], [ -119.29594434099999, 50.795145842000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2987000", "BldgCostT": "2060000", "sL_LossRatio": "1", "sL_AssetLoss": "130.9", "sL_BldgLoss": "130.9", "sL_StrLoss": "130.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB869B9DD6CC5DC0F36B142731654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.198589611999978, 50.788715829000061 ], [ -119.20281737199997, 50.788973579000086 ], [ -119.202512181999964, 50.79097865800005 ], [ -119.202273045999945, 50.79254964800004 ], [ -119.200736751999969, 50.792456006000052 ], [ -119.198575492, 50.792324232000048 ], [ -119.198669919999986, 50.792285400000054 ], [ -119.198869390999931, 50.791993412000075 ], [ -119.198895887999967, 50.791660207000113 ], [ -119.198435578999963, 50.789411298000097 ], [ -119.198439391999955, 50.788898588000052 ], [ -119.198532416999967, 50.788761908000041 ], [ -119.198589611999978, 50.788715829000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9531333", "BldgCostT": "6573333", "sL_LossRatio": "1", "sL_AssetLoss": "530.8", "sL_BldgLoss": "530.8", "sL_StrLoss": "530.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2167B1661D55DC022B899230E624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.339542877000014, 50.771956655000061 ], [ -119.33953208399997, 50.771863995000061 ], [ -119.338330692999932, 50.771835589000077 ], [ -119.335898747999948, 50.771545221000075 ], [ -119.334492525999963, 50.771423726000066 ], [ -119.33531781, 50.770858186000055 ], [ -119.335289502999942, 50.77060609300009 ], [ -119.335498, 50.770224393000014 ], [ -119.335339879999964, 50.769606300000092 ], [ -119.335463513999983, 50.769253101000032 ], [ -119.335886613999918, 50.768642103000069 ], [ -119.335887318999966, 50.767797500000064 ], [ -119.335216485999979, 50.767145302000038 ], [ -119.334593510999952, 50.766860397000059 ], [ -119.333734293999953, 50.766715096000041 ], [ -119.332713298999977, 50.765269601000071 ], [ -119.331812317999976, 50.764820902000054 ], [ -119.331700983999923, 50.764733209000056 ], [ -119.330174110999963, 50.763530587000048 ], [ -119.329992692999937, 50.763057810000078 ], [ -119.329351805, 50.762582345000105 ], [ -119.328551725999958, 50.761988774000031 ], [ -119.328508196999934, 50.761956467000118 ], [ -119.32802110099999, 50.761595111000105 ], [ -119.327758489, 50.761177805000052 ], [ -119.327213393999969, 50.760747701000092 ], [ -119.326519837999911, 50.760347572000093 ], [ -119.325549180999985, 50.759787532000075 ], [ -119.325613774999923, 50.759354983000044 ], [ -119.327592431999932, 50.759473449000026 ], [ -119.327612074999976, 50.7594885930001 ], [ -119.32843779800001, 50.759941308000101 ], [ -119.32955405699991, 50.760408165000101 ], [ -119.330096709999964, 50.760635099000062 ], [ -119.330448672, 50.760807641000063 ], [ -119.330664899999974, 50.760913602000052 ], [ -119.331216695999927, 50.761226296000096 ], [ -119.331726598999978, 50.761580694000024 ], [ -119.333708801999947, 50.763364712000104 ], [ -119.33388638699995, 50.763578289000037 ], [ -119.334611702999936, 50.764189092000073 ], [ -119.33542879499997, 50.764748595000071 ], [ -119.337057678999926, 50.765788797000049 ], [ -119.337510601999952, 50.766238903000051 ], [ -119.337633285999971, 50.76647718500007 ], [ -119.337747370999949, 50.766875134000074 ], [ -119.337787197999972, 50.767013985000048 ], [ -119.337804040999941, 50.767072794000093 ], [ -119.337813293999957, 50.767105101000048 ], [ -119.337819703999983, 50.768179907000047 ], [ -119.337865824999966, 50.768346438000087 ], [ -119.338128189999964, 50.769293605000016 ], [ -119.33825391399999, 50.769521296000043 ], [ -119.339030654999931, 50.770905361000061 ], [ -119.339367287, 50.771505193000053 ], [ -119.339852784999962, 50.77237019600004 ], [ -119.33992873399994, 50.772507775000058 ], [ -119.340228701999933, 50.773051210000062 ], [ -119.340476313999929, 50.773732694000095 ], [ -119.340507283999969, 50.773971609000036 ], [ -119.340562495999961, 50.774397320000126 ], [ -119.340555286999958, 50.774630399000117 ], [ -119.340547155999985, 50.774892101000084 ], [ -119.340532339999967, 50.775370620000039 ], [ -119.340521998999947, 50.775704561000055 ], [ -119.34051909599998, 50.775797581000056 ], [ -119.340416793999978, 50.776359799000097 ], [ -119.340321448999944, 50.77662134400002 ], [ -119.340234541999948, 50.776859728000012 ], [ -119.340053008000027, 50.775699222000092 ], [ -119.33983427699999, 50.774432142000059 ], [ -119.339784963999989, 50.774034172000107 ], [ -119.339542877000014, 50.771956655000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45578719", "BldgCostT": "30355412", "sL_LossRatio": "1", "sL_AssetLoss": "2092.6", "sL_BldgLoss": "2092.6", "sL_StrLoss": "2092.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B5DEAB5D3D15DC040A77BF80D634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.284535008999953, 50.782614894000034 ], [ -119.284660194999901, 50.779738576000071 ], [ -119.282817986999959, 50.779727957000041 ], [ -119.282850270999958, 50.779513247000111 ], [ -119.282338053999936, 50.779482391000087 ], [ -119.282301574999934, 50.779724975000121 ], [ -119.276604702999975, 50.779691918000069 ], [ -119.276708547999945, 50.779001933000153 ], [ -119.273668853999979, 50.778818614000038 ], [ -119.274038024, 50.776366641000067 ], [ -119.268427757999973, 50.776028075000063 ], [ -119.26847622499993, 50.77570641000009 ], [ -119.26840608, 50.775702176000017 ], [ -119.268414875999923, 50.775643799000129 ], [ -119.267663858999938, 50.775598454 ], [ -119.267802866999943, 50.774675970000054 ], [ -119.267307311999943, 50.774646048000072 ], [ -119.26731855499996, 50.774571441000091 ], [ -119.266586394999976, 50.77452722700005 ], [ -119.266610605999986, 50.774366585000031 ], [ -119.266580834999957, 50.774364787000152 ], [ -119.266554530999912, 50.774539320000024 ], [ -119.260904711999942, 50.774197970000046 ], [ -119.260912726999919, 50.774144837000037 ], [ -119.26051770399999, 50.774120959000093 ], [ -119.260527319999966, 50.774057214000095 ], [ -119.259452373999977, 50.773992231000108 ], [ -119.259711834999933, 50.772272421000118 ], [ -119.259742279999941, 50.772070604000049 ], [ -119.259776842999955, 50.771841488000099 ], [ -119.260068207999907, 50.77192629200006 ], [ -119.26174468499994, 50.772020304000073 ], [ -119.264017727999956, 50.772012102000055 ], [ -119.268028390999959, 50.771997492000061 ], [ -119.268886615000028, 50.772169901000062 ], [ -119.269894386, 50.772473210000094 ], [ -119.271383903999961, 50.772453303000113 ], [ -119.272031423999977, 50.772328728000048 ], [ -119.272634901999965, 50.772212602000145 ], [ -119.273066001999936, 50.772034591000086 ], [ -119.273452792999962, 50.771531797000108 ], [ -119.273754017999948, 50.771319599000044 ], [ -119.27376689299993, 50.771293776000078 ], [ -119.273834644999937, 50.771297864000083 ], [ -119.273864832999934, 50.77109733300005 ], [ -119.273921586999961, 50.770983501000075 ], [ -119.274399298999924, 50.770586098000095 ], [ -119.274441898999953, 50.77030699800013 ], [ -119.274644603999931, 50.770104793000058 ], [ -119.27612360399992, 50.768988203000092 ], [ -119.27731642, 50.768452703000023 ], [ -119.278133974999932, 50.768345894000127 ], [ -119.281980302999941, 50.768397087000075 ], [ -119.282592088999962, 50.768348907000082 ], [ -119.282884091999946, 50.76832589200005 ], [ -119.283244584999963, 50.768156398000123 ], [ -119.283628605, 50.767897212000094 ], [ -119.283896107999979, 50.767569224000042 ], [ -119.283877770999965, 50.767691222000096 ], [ -119.285484008999944, 50.767787979000047 ], [ -119.285645916999911, 50.766710450000083 ], [ -119.284839004000034, 50.76672626800007 ], [ -119.284825866999952, 50.76645669800012 ], [ -119.284536813999949, 50.766462362000034 ], [ -119.284724306999948, 50.765906190000052 ], [ -119.285450877999892, 50.765396300000134 ], [ -119.285577431999954, 50.765362650000093 ], [ -119.286473541999953, 50.765345077000077 ], [ -119.28648293199997, 50.765537629000086 ], [ -119.287187139999986, 50.765580037000113 ], [ -119.287257631999978, 50.765110764000028 ], [ -119.288251897999956, 50.764930792000023 ], [ -119.289254300999943, 50.764749367000078 ], [ -119.290330200999946, 50.764554596000032 ], [ -119.292088702999962, 50.764529002000117 ], [ -119.292871904999984, 50.764621603000123 ], [ -119.29347404399995, 50.764812502000062 ], [ -119.2943408, 50.765087301000015 ], [ -119.294925075999984, 50.76540909600007 ], [ -119.29517960500003, 50.765997304000088 ], [ -119.295927107999916, 50.766773493000137 ], [ -119.298258784999973, 50.768320201000066 ], [ -119.299330704999974, 50.769935289000081 ], [ -119.299463211999949, 50.770275385000069 ], [ -119.299695935999964, 50.770872599000015 ], [ -119.298527373999931, 50.770802365000094 ], [ -119.298448384999972, 50.770386611000085 ], [ -119.298417598999947, 50.770224711000068 ], [ -119.298237195, 50.769717608000065 ], [ -119.297903607999928, 50.769233894000109 ], [ -119.297417990999918, 50.76879420100007 ], [ -119.297280498999967, 50.768695255000097 ], [ -119.297224359, 50.768654866000091 ], [ -119.295717169999961, 50.767570512000049 ], [ -119.294425998999913, 50.76664147400006 ], [ -119.293926017, 50.766281701000018 ], [ -119.293177441999958, 50.765768924000085 ], [ -119.293040898999934, 50.765675393000038 ], [ -119.292083812999977, 50.765216311000103 ], [ -119.291588110999982, 50.765072800000091 ], [ -119.29118109199996, 50.765012200000108 ], [ -119.290940305000021, 50.76501333300012 ], [ -119.290778892999967, 50.765014100000016 ], [ -119.290400716999969, 50.765065388000082 ], [ -119.290078288999894, 50.76517231400004 ], [ -119.28996315299996, 50.765237687000159 ], [ -119.28994899199995, 50.765245690000071 ], [ -119.289763285999967, 50.765410412000122 ], [ -119.289736273999935, 50.765463052000058 ], [ -119.28962221299993, 50.765685295000061 ], [ -119.289493797999938, 50.766303688000065 ], [ -119.289222114, 50.76659410500006 ], [ -119.287770499999965, 50.767397194000061 ], [ -119.286723402999897, 50.768078502000051 ], [ -119.286416880999965, 50.768240495000065 ], [ -119.286072782999923, 50.76837759300011 ], [ -119.285513695999924, 50.768541514000084 ], [ -119.285071729999956, 50.768629358000041 ], [ -119.284430828999945, 50.768756754000023 ], [ -119.28380680099994, 50.768880814000113 ], [ -119.283566353999973, 50.768904701000075 ], [ -119.283433505999966, 50.768917892000061 ], [ -119.282426882999957, 50.768902306 ], [ -119.282374637999965, 50.773195948000073 ], [ -119.282373798999913, 50.773265081000062 ], [ -119.284754287999974, 50.773258388000066 ], [ -119.284964595999909, 50.773257808000061 ], [ -119.285195907999963, 50.773290766000038 ], [ -119.285205976999919, 50.773292211000069 ], [ -119.285319201999982, 50.77342078500007 ], [ -119.285298622999974, 50.774036965000086 ], [ -119.28528277099997, 50.774512227000052 ], [ -119.285281779999963, 50.774541796000108 ], [ -119.285282302999946, 50.776311240000027 ], [ -119.285282455999919, 50.776797004000073 ], [ -119.285282663999979, 50.777595102000063 ], [ -119.285282704999972, 50.77771320600003 ], [ -119.285204699999966, 50.777852903000095 ], [ -119.285306315999918, 50.777935697000039 ], [ -119.286254258999975, 50.778693699000065 ], [ -119.28762481199999, 50.779789500000085 ], [ -119.28766017599996, 50.779836327000098 ], [ -119.288012393999978, 50.78030269900011 ], [ -119.288930410999981, 50.782257109000113 ], [ -119.289057215999918, 50.782466701000033 ], [ -119.289149711999968, 50.78261948600003 ], [ -119.28943720800001, 50.782909987000011 ], [ -119.284535008999953, 50.782614894000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021397", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16788583", "BldgCostT": "11578333", "sL_LossRatio": "1", "sL_AssetLoss": "855", "sL_BldgLoss": "855", "sL_StrLoss": "855", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000885A26054ECD5DC060B86BF05B614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.210798827999966, 50.757507747000041 ], [ -119.211473481999974, 50.756756852000123 ], [ -119.211923518999967, 50.756784266000075 ], [ -119.211921145999952, 50.756799890000075 ], [ -119.212465507, 50.756789560000115 ], [ -119.212478224999956, 50.757059145000014 ], [ -119.212903223999888, 50.757051078000053 ], [ -119.212911391999981, 50.757224166000114 ], [ -119.212893665999957, 50.757235638000076 ], [ -119.212535006999957, 50.757467784000092 ], [ -119.21293183200001, 50.757657420000051 ], [ -119.212936753999941, 50.75776171800004 ], [ -119.212898414, 50.757860648000076 ], [ -119.212516373999932, 50.757867900000072 ], [ -119.212548615999978, 50.758551364000027 ], [ -119.212089283999902, 50.758816503000055 ], [ -119.211701545999972, 50.758962666000059 ], [ -119.211592329999931, 50.758964739000106 ], [ -119.211586029999964, 50.759006212000074 ], [ -119.211488695999961, 50.759042903000065 ], [ -119.210886294999938, 50.759495792000109 ], [ -119.210027680999957, 50.75992589600007 ], [ -119.209251021999975, 50.760578200000019 ], [ -119.20895718099996, 50.760744635000087 ], [ -119.208939401999885, 50.760754706000093 ], [ -119.208823497999973, 50.760747643000144 ], [ -119.208826833999964, 50.760818473000029 ], [ -119.208215100999894, 50.761164998000062 ], [ -119.207144779999908, 50.761914092000055 ], [ -119.206628413999937, 50.762094995000027 ], [ -119.20580729199996, 50.762137688000095 ], [ -119.20451311699999, 50.763852500000056 ], [ -119.204049905, 50.764265502000114 ], [ -119.203403297999969, 50.764691289000027 ], [ -119.203073061999987, 50.76484390400006 ], [ -119.202905874999956, 50.764921167000075 ], [ -119.202306001999958, 50.765198396000109 ], [ -119.201731500999941, 50.765631300000052 ], [ -119.201449012999944, 50.765970306000021 ], [ -119.201350129999966, 50.766013019000056 ], [ -119.200529486999983, 50.766010365000085 ], [ -119.19979809499992, 50.766007964000039 ], [ -119.20002528299996, 50.765915687000053 ], [ -119.200222487999937, 50.765835593000091 ], [ -119.201281702999978, 50.765309190000025 ], [ -119.202095331999885, 50.764784230000046 ], [ -119.202342100999928, 50.764624999000027 ], [ -119.203116986999959, 50.764017985000095 ], [ -119.203177750999913, 50.763959430000071 ], [ -119.20347538299994, 50.763672372000066 ], [ -119.203853558999924, 50.763307670000046 ], [ -119.205830229999947, 50.761376554000037 ], [ -119.207789898999962, 50.759461847000075 ], [ -119.208305089999982, 50.759090796000081 ], [ -119.209639277999912, 50.758422250000081 ], [ -119.210111517, 50.758137013000095 ], [ -119.210236000999942, 50.758035575000065 ], [ -119.210566838999981, 50.757765918000075 ], [ -119.210798827999966, 50.757507747000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14773083", "BldgCostT": "10188333", "sL_LossRatio": "1", "sL_AssetLoss": "816", "sL_BldgLoss": "816", "sL_StrLoss": "816", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F9D3D9F9ACF5DC045DF3013BD604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.237504203999933, 50.757630342 ], [ -119.237508055999982, 50.757604877000098 ], [ -119.237263184999975, 50.757590019000084 ], [ -119.236728114999934, 50.757500498000041 ], [ -119.236577716999989, 50.757450167000059 ], [ -119.236698270999938, 50.75665351300011 ], [ -119.23709591199993, 50.756696360000028 ], [ -119.237427336999986, 50.75676608599999 ], [ -119.237797304999958, 50.756758886000036 ], [ -119.237995468999912, 50.756755002000048 ], [ -119.23820363699997, 50.756750937000142 ], [ -119.238226142999977, 50.756750498 ], [ -119.238915463999945, 50.756648858000091 ], [ -119.239038520999969, 50.7566136800001 ], [ -119.23977472499999, 50.756403208000101 ], [ -119.240685527999986, 50.756033488000099 ], [ -119.241362299999949, 50.755807452000063 ], [ -119.242755197999955, 50.755594153000054 ], [ -119.24363989299999, 50.755509756000073 ], [ -119.245737538999947, 50.755063931000102 ], [ -119.246897779999955, 50.754570303000044 ], [ -119.248202985999939, 50.753899597000064 ], [ -119.249843103999936, 50.753237424000069 ], [ -119.250296539000018, 50.753079923000058 ], [ -119.250287967999967, 50.75357449800002 ], [ -119.250275495999929, 50.754291685000062 ], [ -119.250275160999962, 50.754329946000077 ], [ -119.249941910999951, 50.754512490000096 ], [ -119.248655674999924, 50.754992177000091 ], [ -119.246584786999946, 50.755764392000032 ], [ -119.245518305999951, 50.75600940000006 ], [ -119.244597199999987, 50.756332713000077 ], [ -119.242274401999978, 50.756647397000023 ], [ -119.24154951899996, 50.756940807000042 ], [ -119.240373695999978, 50.757268412000016 ], [ -119.238961709999927, 50.757583725000053 ], [ -119.238479595999976, 50.757691390000033 ], [ -119.237885808000016, 50.757694185000034 ], [ -119.237504203999933, 50.757630342 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "80750583", "BldgCostT": "55218333", "sL_LossRatio": "1", "sL_AssetLoss": "5220", "sL_BldgLoss": "5220", "sL_StrLoss": "5220", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B33A83D04BCE5DC09A3391885F604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.212452790999976, 50.756519975000096 ], [ -119.212449170999903, 50.756443225000027 ], [ -119.211808102999967, 50.756404178000061 ], [ -119.212677858999925, 50.755612489000079 ], [ -119.213229665999961, 50.755191607000043 ], [ -119.213454574999972, 50.75502005700006 ], [ -119.213829809999964, 50.75473521700011 ], [ -119.215084606999952, 50.754004491000074 ], [ -119.216163657999957, 50.753376111000115 ], [ -119.21676027499997, 50.753028640000096 ], [ -119.217134462999937, 50.75282015700008 ], [ -119.219826123999937, 50.751320345000089 ], [ -119.220618046999931, 50.750795535000073 ], [ -119.220979622999948, 50.750548636000069 ], [ -119.221500090999911, 50.750193213000031 ], [ -119.221848733999948, 50.749985166000066 ], [ -119.222717098999979, 50.749467005000049 ], [ -119.223096826999964, 50.749240404000076 ], [ -119.224369799999977, 50.748480809000064 ], [ -119.225057228999944, 50.748070559000013 ], [ -119.225133923999948, 50.748024803000121 ], [ -119.225899713999979, 50.74746096900008 ], [ -119.225938790999962, 50.747432189000044 ], [ -119.226527419999982, 50.746819208000048 ], [ -119.226964976999938, 50.746159187000053 ], [ -119.22720831, 50.745474704000074 ], [ -119.227294494999953, 50.744689503000068 ], [ -119.227487294999932, 50.74509100300002 ], [ -119.227495692999952, 50.746398990000081 ], [ -119.227466566999965, 50.748800909000067 ], [ -119.227460988999965, 50.749260081000116 ], [ -119.227457521999924, 50.749546688000052 ], [ -119.227464743, 50.749889228000079 ], [ -119.227477157999942, 50.750473762000126 ], [ -119.227484124999961, 50.750800705000124 ], [ -119.227454915999928, 50.75113459400005 ], [ -119.227470713999963, 50.752506209000053 ], [ -119.227473770999964, 50.754018650000084 ], [ -119.228254724999914, 50.754066115000029 ], [ -119.228426738999971, 50.754076570000059 ], [ -119.228667236999954, 50.754113707000073 ], [ -119.229331646999981, 50.754216361000012 ], [ -119.230427261999921, 50.754432714000117 ], [ -119.230910752999961, 50.754588139000077 ], [ -119.231344309999926, 50.754727522000081 ], [ -119.234266709999972, 50.755875888000041 ], [ -119.234804419999989, 50.756087164000064 ], [ -119.235398536, 50.75630747500005 ], [ -119.236029413999916, 50.756541399000085 ], [ -119.236144332999942, 50.756566676000041 ], [ -119.236277537999911, 50.756595960000055 ], [ -119.236277969999918, 50.756605006000058 ], [ -119.235152585999955, 50.756626590000096 ], [ -119.235092316999896, 50.757024773000062 ], [ -119.234674101999971, 50.756973601000034 ], [ -119.233805105999963, 50.756603292000101 ], [ -119.232253392999965, 50.756453705000084 ], [ -119.22951529599996, 50.755812813000077 ], [ -119.229095874999985, 50.755615923000079 ], [ -119.228963094000036, 50.755553603000031 ], [ -119.227471193999932, 50.755290881000043 ], [ -119.22643169699991, 50.755107812000091 ], [ -119.225692988000034, 50.755067997000033 ], [ -119.224410424999959, 50.755126666000081 ], [ -119.223670919999961, 50.755160501000027 ], [ -119.223366885999951, 50.755058001000087 ], [ -119.22257400299999, 50.755055087000052 ], [ -119.222548579999966, 50.754821599000053 ], [ -119.221952597999945, 50.754805896000086 ], [ -119.221919087999964, 50.755318605000113 ], [ -119.222076096999928, 50.755334292000057 ], [ -119.222012979999988, 50.755506602000047 ], [ -119.221554608999909, 50.755677488000131 ], [ -119.221033267999971, 50.755940977000108 ], [ -119.22083321599996, 50.75604210000008 ], [ -119.220200004999981, 50.756134703000072 ], [ -119.219843019999971, 50.75635690400005 ], [ -119.21877942199994, 50.756376806000091 ], [ -119.21877290499998, 50.755918185000091 ], [ -119.218644695999956, 50.755606310000054 ], [ -119.216135015999896, 50.755627703000059 ], [ -119.21599239499993, 50.755584901000084 ], [ -119.215983213999891, 50.755423992000075 ], [ -119.215854706999934, 50.755416897 ], [ -119.21548719099998, 50.755432606000063 ], [ -119.21473181099999, 50.755617704 ], [ -119.214104403999968, 50.755922776000055 ], [ -119.213842189000019, 50.756050292000069 ], [ -119.2135954, 50.756170309 ], [ -119.213350984999977, 50.756399602000087 ], [ -119.213338229, 50.756503167000098 ], [ -119.212452790999976, 50.756519975000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "108.9", "sL_BldgLoss": "108.9", "sL_StrLoss": "108.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000433F6C4C7CD05DC001B5FF9E2B604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254522877999989, 50.751396665000073 ], [ -119.254601258999983, 50.750877240000079 ], [ -119.260248090999966, 50.751218918000085 ], [ -119.260238503999915, 50.751282507000063 ], [ -119.26298941, 50.751448853000156 ], [ -119.262716002999966, 50.751453003000073 ], [ -119.261983888999936, 50.751508892000068 ], [ -119.261473514999977, 50.751592937000048 ], [ -119.260480695999973, 50.751756379000085 ], [ -119.259860039999978, 50.751545615000097 ], [ -119.257846585999971, 50.751416589000058 ], [ -119.255538915999978, 50.751452887000092 ], [ -119.254514453999931, 50.751614647000089 ], [ -119.253077406999978, 50.752113896 ], [ -119.25307022699991, 50.751964407000052 ], [ -119.253495169999923, 50.751956193000076 ], [ -119.253482219999981, 50.751686616000072 ], [ -119.254332098999924, 50.751670182000069 ], [ -119.254319145999915, 50.75140060500005 ], [ -119.254522877999989, 50.751396665000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79548333", "BldgCostT": "54333333", "sL_LossRatio": "1", "sL_AssetLoss": "5004", "sL_BldgLoss": "5004", "sL_StrLoss": "5004", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001532BA30D0CE5DC0841796A2895F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.234266709999972, 50.755875888000041 ], [ -119.231344309999926, 50.754727522000081 ], [ -119.230910752999961, 50.754588139000077 ], [ -119.230427261999921, 50.754432714000117 ], [ -119.229331646999981, 50.754216361000012 ], [ -119.228667236999954, 50.754113707000073 ], [ -119.228426738999971, 50.754076570000059 ], [ -119.228254724999914, 50.754066115000029 ], [ -119.227473770999964, 50.754018650000084 ], [ -119.227470713999963, 50.752506209000053 ], [ -119.227454915999928, 50.75113459400005 ], [ -119.227484124999961, 50.750800705000124 ], [ -119.227477157999942, 50.750473762000126 ], [ -119.227464743, 50.749889228000079 ], [ -119.227457521999924, 50.749546688000052 ], [ -119.227460988999965, 50.749260081000116 ], [ -119.227466566999965, 50.748800909000067 ], [ -119.227495692999952, 50.746398990000081 ], [ -119.227487294999932, 50.74509100300002 ], [ -119.227294494999953, 50.744689503000068 ], [ -119.227292329999941, 50.74435141300016 ], [ -119.227287008999951, 50.743525904000045 ], [ -119.22731501899996, 50.738801505000026 ], [ -119.227316636999973, 50.73853162800004 ], [ -119.227318399999959, 50.738232019000044 ], [ -119.227317785999929, 50.737704421000082 ], [ -119.22731660699999, 50.736717299000048 ], [ -119.234709188999943, 50.736541546000076 ], [ -119.234313405999941, 50.739157337000059 ], [ -119.232881526999947, 50.73907036500006 ], [ -119.232815159999959, 50.739508872000094 ], [ -119.232371792999913, 50.7394819370001 ], [ -119.232365141999935, 50.739525881000063 ], [ -119.231756944999987, 50.739488931000025 ], [ -119.231745946999951, 50.739561586000043 ], [ -119.232848279999985, 50.739628554000049 ], [ -119.232826082999978, 50.739775227000031 ], [ -119.233121081999926, 50.73979314700005 ], [ -119.23257977, 50.743369568000105 ], [ -119.232389123999951, 50.743357987000088 ], [ -119.232271497999989, 50.744135035000106 ], [ -119.233529471999987, 50.744211444000079 ], [ -119.23351626500002, 50.744298702000044 ], [ -119.233683172999989, 50.74430883900007 ], [ -119.233545030999935, 50.745221570000062 ], [ -119.236731738999978, 50.745415057000052 ], [ -119.23671885399996, 50.74550023600009 ], [ -119.237634816, 50.745555833000033 ], [ -119.237629578999986, 50.745590456000059 ], [ -119.237833412999962, 50.745602828000052 ], [ -119.237292406999956, 50.749179247000065 ], [ -119.235936200999959, 50.749096928000078 ], [ -119.23545180399999, 50.752297982000115 ], [ -119.235286296999945, 50.752287935000091 ], [ -119.23524281, 50.752575286000088 ], [ -119.23395543099997, 50.752497127000034 ], [ -119.233973265, 50.752871616000022 ], [ -119.234823178999932, 50.752855325000056 ], [ -119.234871558999956, 50.753870851000073 ], [ -119.234961686999924, 50.753876322000103 ], [ -119.234939487999966, 50.754022995000085 ], [ -119.235234688000034, 50.754040915000104 ], [ -119.235222263999901, 50.754123007000054 ], [ -119.235528683999945, 50.754141607000093 ], [ -119.235357375999939, 50.75527352700005 ], [ -119.235788728999978, 50.755265255000069 ], [ -119.235814429999948, 50.755804415000085 ], [ -119.236239409999882, 50.75579626399999 ], [ -119.236277537999911, 50.756595960000055 ], [ -119.236144332999942, 50.756566676000041 ], [ -119.236029413999916, 50.756541399000085 ], [ -119.235398536, 50.75630747500005 ], [ -119.234804419999989, 50.756087164000064 ], [ -119.234266709999972, 50.755875888000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15104167", "BldgCostT": "10416667", "sL_LossRatio": "1", "sL_AssetLoss": "867.4", "sL_BldgLoss": "867.4", "sL_StrLoss": "867.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000067C8800593CF5DC045B1600B8F604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.236698270999938, 50.75665351300011 ], [ -119.237104148999947, 50.753971147000044 ], [ -119.238481596999975, 50.754054732000043 ], [ -119.242751235999961, 50.754313707000051 ], [ -119.242647687999977, 50.75499864600004 ], [ -119.24368692499999, 50.755061656000066 ], [ -119.24393138, 50.753444402000085 ], [ -119.244616945999908, 50.753485962000113 ], [ -119.244664663999984, 50.753170218000086 ], [ -119.244934491999985, 50.753186574000082 ], [ -119.244958557999922, 50.753027324000122 ], [ -119.245278686999953, 50.753046728000122 ], [ -119.245305251999952, 50.752870932000071 ], [ -119.245588086999973, 50.752888075000087 ], [ -119.245609744999953, 50.752744738000089 ], [ -119.246068711999982, 50.752772557000085 ], [ -119.246102137000022, 50.752551349000072 ], [ -119.246561104999913, 50.752579166000068 ], [ -119.246594525999981, 50.752357961000044 ], [ -119.246966036999979, 50.752380475000095 ], [ -119.246989016999947, 50.752228369000136 ], [ -119.247409269999977, 50.752253836000101 ], [ -119.247446908999976, 50.752004679000088 ], [ -119.250326171999944, 50.7521791140001 ], [ -119.252509128999918, 50.7523113150001 ], [ -119.250296539000018, 50.753079923000058 ], [ -119.249843103999936, 50.753237424000069 ], [ -119.248202985999939, 50.753899597000064 ], [ -119.246897779999955, 50.754570303000044 ], [ -119.245737538999947, 50.755063931000102 ], [ -119.24363989299999, 50.755509756000073 ], [ -119.242755197999955, 50.755594153000054 ], [ -119.241362299999949, 50.755807452000063 ], [ -119.240685527999986, 50.756033488000099 ], [ -119.23977472499999, 50.756403208000101 ], [ -119.239038520999969, 50.7566136800001 ], [ -119.238915463999945, 50.756648858000091 ], [ -119.238226142999977, 50.756750498 ], [ -119.23820363699997, 50.756750937000142 ], [ -119.237995468999912, 50.756755002000048 ], [ -119.237797304999958, 50.756758886000036 ], [ -119.237427336999986, 50.75676608599999 ], [ -119.23709591199993, 50.756696360000028 ], [ -119.236698270999938, 50.75665351300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81802417", "BldgCostT": "56151667", "sL_LossRatio": "1", "sL_AssetLoss": "4871.2", "sL_BldgLoss": "4871.2", "sL_StrLoss": "4871.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000FBA42275DD05DC0092AEC9A775F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.264305448999963, 50.750824109000035 ], [ -119.264502123999975, 50.74951881800007 ], [ -119.262049667, 50.749370549000034 ], [ -119.262158934999917, 50.748645593000099 ], [ -119.261648704999956, 50.748614740000107 ], [ -119.261870927999936, 50.747140408000092 ], [ -119.261777879999926, 50.747134781000064 ], [ -119.261370096999897, 50.749840095000131 ], [ -119.261085738999924, 50.749822899000073 ], [ -119.26107628699999, 50.749885601000109 ], [ -119.255429616999947, 50.749543965000086 ], [ -119.255514457999979, 50.748981631000042 ], [ -119.254321818999955, 50.748909436000126 ], [ -119.25435793299998, 50.748670116000049 ], [ -119.252086365999901, 50.748532575000063 ], [ -119.252099384999951, 50.748446327000053 ], [ -119.250815030999959, 50.748368540000094 ], [ -119.25082219599993, 50.748321083000093 ], [ -119.250453781999951, 50.748298767000115 ], [ -119.246757904999953, 50.748074828000057 ], [ -119.246979260999979, 50.746609486000104 ], [ -119.246872808999939, 50.74660303400001 ], [ -119.246955875999902, 50.746053132 ], [ -119.243447371999963, 50.745840426000065 ], [ -119.243249632999976, 50.745828435000121 ], [ -119.243525359999964, 50.744004002000061 ], [ -119.242008521999978, 50.743912005000041 ], [ -119.242104631999922, 50.743276169000119 ], [ -119.242034365999984, 50.743271906000068 ], [ -119.242133749999951, 50.742614396000086 ], [ -119.241263187999962, 50.742561586000072 ], [ -119.241314454999923, 50.742222440000084 ], [ -119.24043138499998, 50.742168865000096 ], [ -119.24048430699996, 50.741818813000044 ], [ -119.240439008999942, 50.741816065000094 ], [ -119.240735569999941, 50.739854409000053 ], [ -119.242491161999936, 50.739859450000033 ], [ -119.243328002999945, 50.739861854000075 ], [ -119.243652293999943, 50.739862774000116 ], [ -119.243668368999948, 50.739862812000098 ], [ -119.244746180999954, 50.7398658810001 ], [ -119.244753060999983, 50.740833728000027 ], [ -119.244762925999936, 50.742227755000108 ], [ -119.244767324999955, 50.742848244000044 ], [ -119.244771933999985, 50.74349472500009 ], [ -119.244905682999942, 50.743665246000063 ], [ -119.245169567999966, 50.743568459000109 ], [ -119.245587663999942, 50.743535168000079 ], [ -119.246521719999947, 50.743532769000105 ], [ -119.25051505799999, 50.743522490000039 ], [ -119.259109268999964, 50.743525556000037 ], [ -119.25985551399998, 50.743525807000012 ], [ -119.260278807999939, 50.743545782000083 ], [ -119.260332103999971, 50.743548308000079 ], [ -119.260583592, 50.743546540000054 ], [ -119.261405468999953, 50.743540834000044 ], [ -119.261849429, 50.743537766000017 ], [ -119.261972628999956, 50.743536895000048 ], [ -119.262270358999928, 50.743534840000059 ], [ -119.263305281999962, 50.743527626000066 ], [ -119.265644475999949, 50.743511296000065 ], [ -119.266259322999986, 50.743506999000054 ], [ -119.266961805999983, 50.74352886300003 ], [ -119.267088712000017, 50.743532793000064 ], [ -119.267401815, 50.743657300000109 ], [ -119.26770338299994, 50.743905591000022 ], [ -119.26791960599999, 50.743954710000061 ], [ -119.267865601, 50.744152696000057 ], [ -119.267859830999896, 50.745486354000022 ], [ -119.267859525999953, 50.745556785000069 ], [ -119.26780155499992, 50.745941757000097 ], [ -119.267749719999983, 50.745938626000061 ], [ -119.26772474799999, 50.746104461000094 ], [ -119.267857115999902, 50.746112459000074 ], [ -119.267856747999986, 50.746197353000063 ], [ -119.26784951899999, 50.747860791000107 ], [ -119.267847481999951, 50.748330900000077 ], [ -119.267681980999953, 50.748465298000028 ], [ -119.266764292999966, 50.748741912000128 ], [ -119.266421701999931, 50.748907001000113 ], [ -119.266267209999967, 50.749081795000087 ], [ -119.266227780999884, 50.749230100000034 ], [ -119.266325008999956, 50.749511100000134 ], [ -119.26682781699995, 50.75035360100005 ], [ -119.266874590999919, 50.750780490000039 ], [ -119.266774908999963, 50.750941383000061 ], [ -119.26670839399999, 50.75096933100005 ], [ -119.264305448999963, 50.750824109000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82798667", "BldgCostT": "55606667", "sL_LossRatio": "1", "sL_AssetLoss": "3808.1", "sL_BldgLoss": "3808.1", "sL_StrLoss": "3808.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041AD48D0C8CD5DC09A5F07AD0B5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.211140748999966, 50.756363527000069 ], [ -119.211582537999945, 50.753454849000043 ], [ -119.209167087999944, 50.75330767800007 ], [ -119.209185802999983, 50.753184499000028 ], [ -119.208973690999954, 50.753171572000078 ], [ -119.209004858999961, 50.752966432000107 ], [ -119.204492561999984, 50.752691350000092 ], [ -119.205036225999891, 50.749115104000083 ], [ -119.20659687600002, 50.749210267000066 ], [ -119.206685159999921, 50.748629341000047 ], [ -119.204453388, 50.748493248000123 ], [ -119.204058563999979, 50.751090301000033 ], [ -119.198412178999959, 50.750745784000046 ], [ -119.198488977999943, 50.750241052000035 ], [ -119.198142103999942, 50.750219878000102 ], [ -119.198686244999976, 50.746643653000035 ], [ -119.201919032999982, 50.746840950000035 ], [ -119.202237197999963, 50.744748629000071 ], [ -119.207882857999934, 50.745092955000118 ], [ -119.207353493999946, 50.748576931000095 ], [ -119.209602146999941, 50.748713993000059 ], [ -119.20991895499999, 50.746628309000087 ], [ -119.213462803999917, 50.746844225000096 ], [ -119.213686660999926, 50.745369593000106 ], [ -119.217304161999891, 50.745589878000104 ], [ -119.217551645999961, 50.743958624000079 ], [ -119.21729592, 50.743943056000084 ], [ -119.217291935999924, 50.743969316000097 ], [ -119.216360494999932, 50.743912605000105 ], [ -119.216254227999954, 50.744612938000017 ], [ -119.210608564999944, 50.744269034000062 ], [ -119.211151638000018, 50.740692724000013 ], [ -119.212083005999929, 50.740749478000076 ], [ -119.212189329999916, 50.740049146000054 ], [ -119.212950507999977, 50.740095524000097 ], [ -119.212954493999973, 50.740069263000095 ], [ -119.213173659999953, 50.740082616000045 ], [ -119.213523, 50.737781071000043 ], [ -119.219167868999961, 50.738124830000039 ], [ -119.218625465999978, 50.741701191000075 ], [ -119.218406289999947, 50.741687848000062 ], [ -119.218332267999955, 50.742175853000091 ], [ -119.219719618999932, 50.742260297000051 ], [ -119.219804403999916, 50.741701224000082 ], [ -119.219905174999965, 50.741707357000081 ], [ -119.219957814999987, 50.741360227000037 ], [ -119.22037964399999, 50.74138589800004 ], [ -119.220405204, 50.741217336000048 ], [ -119.22159071599999, 50.741289476000084 ], [ -119.221601952, 50.741215364000055 ], [ -119.221885305999962, 50.741232604000132 ], [ -119.221913633999961, 50.741045742000097 ], [ -119.221298874999917, 50.741008337000082 ], [ -119.221841056999907, 50.73743196100002 ], [ -119.222778789999921, 50.737489016000062 ], [ -119.223000681999977, 50.73602498200011 ], [ -119.22129912399997, 50.735921446000056 ], [ -119.221841245999912, 50.732345049000081 ], [ -119.222783474999986, 50.732402385000121 ], [ -119.222854825999903, 50.731931571000096 ], [ -119.223074676999929, 50.73194494800007 ], [ -119.223074899, 50.73194348600002 ], [ -119.221524813999935, 50.731849160000131 ], [ -119.222066867999956, 50.728272744000051 ], [ -119.222360435, 50.728290610000023 ], [ -119.22239496499995, 50.728062752000106 ], [ -119.222828650999958, 50.728089143000012 ], [ -119.22319447299995, 50.725674864000027 ], [ -119.222485177999886, 50.725631699000061 ], [ -119.222579847999953, 50.725006933000024 ], [ -119.22213551099999, 50.724979890000014 ], [ -119.222646694999966, 50.721606318000042 ], [ -119.222677432999944, 50.721403442000117 ], [ -119.222678877999968, 50.721403531000078 ], [ -119.222761858999945, 50.720855844000056 ], [ -119.223365509999923, 50.720892583000101 ], [ -119.22359200699999, 50.719397458000039 ], [ -119.225184428999967, 50.719494360000049 ], [ -119.22529288199992, 50.718778251000046 ], [ -119.225109344999922, 50.718767084000071 ], [ -119.225446248999944, 50.716542427000064 ], [ -119.220173141999965, 50.71622145200007 ], [ -119.220224860999949, 50.71588019000005 ], [ -119.220042972999948, 50.715869114000022 ], [ -119.219901705999959, 50.71680121800005 ], [ -119.21917433699997, 50.716756922000052 ], [ -119.219158177999986, 50.716863536000062 ], [ -119.215896598999961, 50.71666484900009 ], [ -119.213515982999979, 50.71651976800009 ], [ -119.213649674999957, 50.715638461000076 ], [ -119.212071097999967, 50.715542230000061 ], [ -119.212196541999944, 50.714715459000011 ], [ -119.211843347999931, 50.714693926000066 ], [ -119.21224248499999, 50.712063240000127 ], [ -119.211858530999947, 50.712039830000094 ], [ -119.212074173999952, 50.71061848800008 ], [ -119.20855652599991, 50.710403942000021 ], [ -119.209099353999974, 50.706827499000056 ], [ -119.210284227999963, 50.706899779000011 ], [ -119.210292399999972, 50.706845926000035 ], [ -119.211379381999961, 50.706912223000053 ], [ -119.211688650999974, 50.704873653000078 ], [ -119.212582217999966, 50.704928146000078 ], [ -119.212674676999896, 50.704318586000049 ], [ -119.210515623999981, 50.704186908000096 ], [ -119.210672167999945, 50.703155125000137 ], [ -119.207973530999979, 50.702990479000093 ], [ -119.207815852999929, 50.704029323000114 ], [ -119.202175358999938, 50.703684978000098 ], [ -119.202698791, 50.700239047000068 ], [ -119.202050993999961, 50.700199482000137 ], [ -119.202594217999916, 50.696623027000037 ], [ -119.202916370999944, 50.696642703000066 ], [ -119.202972420999956, 50.696273635000075 ], [ -119.20835684799998, 50.696602373000125 ], [ -119.208285250999964, 50.695078354000024 ], [ -119.207860807999964, 50.6950863960001 ], [ -119.207848145999961, 50.69481680800002 ], [ -119.20615038699998, 50.69484896400013 ], [ -119.206137734999942, 50.694579376000071 ], [ -119.205288856999985, 50.694595446000051 ], [ -119.20527621199993, 50.69432585600002 ], [ -119.204851774999895, 50.694333888000102 ], [ -119.204846687999947, 50.694225416000101 ], [ -119.201918812999949, 50.694046589000031 ], [ -119.201924977999923, 50.694006004000123 ], [ -119.200966784999977, 50.693947464000068 ], [ -119.201135507999979, 50.692836712000052 ], [ -119.201728184999965, 50.69264099400008 ], [ -119.201968980999965, 50.692625421000123 ], [ -119.202732594999986, 50.692575990000137 ], [ -119.2037046, 50.692576046000042 ], [ -119.204610808999959, 50.692576090000067 ], [ -119.205146268999954, 50.692577659000065 ], [ -119.206534425999962, 50.69258169700003 ], [ -119.209055139999947, 50.692589007000016 ], [ -119.210159465999965, 50.692592176000062 ], [ -119.210477392999934, 50.69259309800006 ], [ -119.211221211999927, 50.692596248 ], [ -119.211419238999909, 50.692597058000075 ], [ -119.21216229399991, 50.692600196000029 ], [ -119.212496217999941, 50.692601570000143 ], [ -119.214606264999929, 50.692610242000114 ], [ -119.214764478999953, 50.692610901000073 ], [ -119.215885714999942, 50.692591795000041 ], [ -119.215888609000032, 50.693581659000074 ], [ -119.215896293999933, 50.696162888000053 ], [ -119.215898580999962, 50.696936224000083 ], [ -119.215900891000018, 50.697719081000045 ], [ -119.215907292999958, 50.699884398000115 ], [ -119.215907424999955, 50.70000380900008 ], [ -119.21590834199999, 50.701064988000084 ], [ -119.215908879999986, 50.701676321000093 ], [ -119.215910224, 50.70320429100007 ], [ -119.215910532999928, 50.703546286000083 ], [ -119.215911799999915, 50.704985433000068 ], [ -119.215912213999971, 50.705444262000093 ], [ -119.215912580999941, 50.705866882000102 ], [ -119.215913232999966, 50.706595568000097 ], [ -119.21591366699991, 50.707136398000031 ], [ -119.215905304999978, 50.710792598000062 ], [ -119.215901345999939, 50.712522906000132 ], [ -119.215900746999949, 50.712792782000115 ], [ -119.215898612999979, 50.713728133000046 ], [ -119.215897031999972, 50.714427518000029 ], [ -119.21800042699999, 50.714422237000029 ], [ -119.219601482999963, 50.714418205000079 ], [ -119.220479820999984, 50.714415984000077 ], [ -119.22079163299999, 50.714415178000067 ], [ -119.221995919999983, 50.714412114000041 ], [ -119.224007419999964, 50.714406967000059 ], [ -119.224644797999986, 50.714405335000059 ], [ -119.225727256999946, 50.714402534000044 ], [ -119.225877374999968, 50.714402261000075 ], [ -119.226648482999934, 50.714400848000089 ], [ -119.22726478, 50.714401331000083 ], [ -119.227277358999956, 50.717189001000087 ], [ -119.227284657, 50.718817103000028 ], [ -119.227288546999944, 50.719680300000093 ], [ -119.227297812999936, 50.721734097000066 ], [ -119.227297431999972, 50.722396522000061 ], [ -119.227295612999967, 50.725625242000049 ], [ -119.227295418, 50.725922051000069 ], [ -119.227294837999978, 50.727001477000051 ], [ -119.22729367099997, 50.729020311000035 ], [ -119.227313687999981, 50.734247907000075 ], [ -119.22731456299999, 50.734960446000109 ], [ -119.22731660699999, 50.736717299000048 ], [ -119.227317785999929, 50.737704421000082 ], [ -119.227318399999959, 50.738232019000044 ], [ -119.227316636999973, 50.73853162800004 ], [ -119.22731501899996, 50.738801505000026 ], [ -119.227287008999951, 50.743525904000045 ], [ -119.227292329999941, 50.74435141300016 ], [ -119.227294494999953, 50.744689503000068 ], [ -119.22720831, 50.745474704000074 ], [ -119.226964976999938, 50.746159187000053 ], [ -119.226527419999982, 50.746819208000048 ], [ -119.225938790999962, 50.747432189000044 ], [ -119.225899713999979, 50.74746096900008 ], [ -119.225133923999948, 50.748024803000121 ], [ -119.225057228999944, 50.748070559000013 ], [ -119.224369799999977, 50.748480809000064 ], [ -119.223096826999964, 50.749240404000076 ], [ -119.222717098999979, 50.749467005000049 ], [ -119.221848733999948, 50.749985166000066 ], [ -119.221500090999911, 50.750193213000031 ], [ -119.220979622999948, 50.750548636000069 ], [ -119.220618046999931, 50.750795535000073 ], [ -119.219826123999937, 50.751320345000089 ], [ -119.217134462999937, 50.75282015700008 ], [ -119.21676027499997, 50.753028640000096 ], [ -119.216163657999957, 50.753376111000115 ], [ -119.215084606999952, 50.754004491000074 ], [ -119.213829809999964, 50.75473521700011 ], [ -119.213454574999972, 50.75502005700006 ], [ -119.213229665999961, 50.755191607000043 ], [ -119.212677858999925, 50.755612489000079 ], [ -119.211808102999967, 50.756404178000061 ], [ -119.211140748999966, 50.756363527000069 ] ], [ [ -119.211711481999913, 50.697614020000088 ], [ -119.211761810999974, 50.697282198000067 ], [ -119.210839414999924, 50.697225931000048 ], [ -119.210845101999922, 50.697188440000033 ], [ -119.208518725999951, 50.697232557000078 ], [ -119.208477859999945, 50.697501866000081 ], [ -119.208529509999934, 50.697505018000101 ], [ -119.208542311999977, 50.697420665000081 ], [ -119.211711481999913, 50.697614020000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "1", "sL_AssetLoss": "87.5", "sL_BldgLoss": "87.5", "sL_StrLoss": "87.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000413667794CC5DC0DA07B4CF3E614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194293712999979, 50.757609279000107 ], [ -119.199940930999986, 50.757954 ], [ -119.199396753999949, 50.761530184000044 ], [ -119.198883197999962, 50.761498848000095 ], [ -119.198829846999942, 50.761849396000081 ], [ -119.193182145999955, 50.761504620000082 ], [ -119.19372681899992, 50.757928466000081 ], [ -119.194240330999961, 50.757959827000022 ], [ -119.194293712999979, 50.757609279000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3557333", "BldgCostT": "2453333", "sL_LossRatio": "1", "sL_AssetLoss": "117.1", "sL_BldgLoss": "117.1", "sL_StrLoss": "117.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001736FBEA07CD5DC0FBDED72F75614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.205855688999961, 50.76096221300007 ], [ -119.205837034999931, 50.760565628000059 ], [ -119.204874436999944, 50.76050694500006 ], [ -119.205418165999959, 50.756930730000157 ], [ -119.205943526999974, 50.756962759000032 ], [ -119.206003558999953, 50.756567843000035 ], [ -119.206254618999978, 50.756583149000051 ], [ -119.206276355999989, 50.756440148000067 ], [ -119.211473481999974, 50.756756852000123 ], [ -119.210798827999966, 50.757507747000041 ], [ -119.210566838999981, 50.757765918000075 ], [ -119.210236000999942, 50.758035575000065 ], [ -119.210111517, 50.758137013000095 ], [ -119.209639277999912, 50.758422250000081 ], [ -119.208305089999982, 50.759090796000081 ], [ -119.207789898999962, 50.759461847000075 ], [ -119.205830229999947, 50.761376554000037 ], [ -119.203853558999924, 50.763307670000046 ], [ -119.20347538299994, 50.763672372000066 ], [ -119.203177750999913, 50.763959430000071 ], [ -119.203116986999959, 50.764017985000095 ], [ -119.202342100999928, 50.764624999000027 ], [ -119.202095331999885, 50.764784230000046 ], [ -119.201281702999978, 50.765309190000025 ], [ -119.200222487999937, 50.765835593000091 ], [ -119.20002528299996, 50.765915687000053 ], [ -119.19979809499992, 50.766007964000039 ], [ -119.196864573999946, 50.765977813000056 ], [ -119.19721443899995, 50.763679758000102 ], [ -119.19833072699997, 50.76374788400004 ], [ -119.198435721999914, 50.763058084000079 ], [ -119.198564942999923, 50.763065970000142 ], [ -119.198690155999927, 50.762243289000025 ], [ -119.201915163999971, 50.762440038000072 ], [ -119.202064953999979, 50.761455364000071 ], [ -119.205463207999969, 50.761662581000031 ], [ -119.205430650999958, 50.760970255000075 ], [ -119.205855688999961, 50.76096221300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117750834", "BldgCostT": "76943334", "sL_LossRatio": "1", "sL_AssetLoss": "7326.4", "sL_BldgLoss": "7326.4", "sL_StrLoss": "7326.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF3FD48571CF5DC08285EEEDF15C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.244753060999983, 50.740833728000027 ], [ -119.244746180999954, 50.7398658810001 ], [ -119.243668368999948, 50.739862812000098 ], [ -119.243652293999943, 50.739862774000116 ], [ -119.243328002999945, 50.739861854000075 ], [ -119.242491161999936, 50.739859450000033 ], [ -119.240735569999941, 50.739854409000053 ], [ -119.240979675999967, 50.73823959900011 ], [ -119.241405805999975, 50.738265454000079 ], [ -119.241492782999927, 50.737690010000065 ], [ -119.242637437999946, 50.737759451000088 ], [ -119.242662116999966, 50.73759614400003 ], [ -119.240773819999916, 50.737481583000104 ], [ -119.24114647099999, 50.735016209000072 ], [ -119.238970988999981, 50.734884184000073 ], [ -119.236728962999976, 50.734748075000041 ], [ -119.236833178999973, 50.734058998000108 ], [ -119.234388134999904, 50.733910512000122 ], [ -119.234414409999928, 50.733736847000038 ], [ -119.233985635999943, 50.733710801000072 ], [ -119.234526717999941, 50.730134333000052 ], [ -119.234980988999922, 50.730161927000069 ], [ -119.23511242799999, 50.729292986000139 ], [ -119.234522060999964, 50.729257125000117 ], [ -119.234538513999951, 50.729148362000039 ], [ -119.233539936999946, 50.729087698000058 ], [ -119.233689506999951, 50.728099085000068 ], [ -119.233642306, 50.728096217000086 ], [ -119.23329806299995, 50.730371481000141 ], [ -119.233250651999953, 50.730368601000059 ], [ -119.233227826999894, 50.730519459000071 ], [ -119.23405651199991, 50.730569804000076 ], [ -119.23351538599999, 50.734146268000067 ], [ -119.232553638999931, 50.734087839000068 ], [ -119.232438479999928, 50.734848791000033 ], [ -119.231670638999972, 50.734802136000049 ], [ -119.23162335899994, 50.735114508000045 ], [ -119.231588975999927, 50.735112419000053 ], [ -119.23154846599999, 50.735380052000039 ], [ -119.234854527999957, 50.735580890000016 ], [ -119.234709188999943, 50.736541546000076 ], [ -119.22731660699999, 50.736717299000048 ], [ -119.22731456299999, 50.734960446000109 ], [ -119.227313687999981, 50.734247907000075 ], [ -119.22729367099997, 50.729020311000035 ], [ -119.227294837999978, 50.727001477000051 ], [ -119.227295418, 50.725922051000069 ], [ -119.227295612999967, 50.725625242000049 ], [ -119.227297431999972, 50.722396522000061 ], [ -119.227297812999936, 50.721734097000066 ], [ -119.227288546999944, 50.719680300000093 ], [ -119.227284657, 50.718817103000028 ], [ -119.227277358999956, 50.717189001000087 ], [ -119.22726478, 50.714401331000083 ], [ -119.227273051999973, 50.713942535000029 ], [ -119.227354240999944, 50.713829280000013 ], [ -119.227450699999963, 50.713004065000106 ], [ -119.227515601999926, 50.712843542000066 ], [ -119.227486574999929, 50.712549940000045 ], [ -119.227485510999941, 50.712539358000065 ], [ -119.227445772999914, 50.712088011000063 ], [ -119.227344473999935, 50.711072868000059 ], [ -119.227344113999905, 50.710874285000038 ], [ -119.227342783999973, 50.710109669000104 ], [ -119.227341598999928, 50.709449318000097 ], [ -119.227341433999925, 50.709362691000102 ], [ -119.22727192499994, 50.709069713000119 ], [ -119.227124978999939, 50.708790052000026 ], [ -119.227611410999941, 50.708650899000041 ], [ -119.227446853999965, 50.70837469100006 ], [ -119.227481001999934, 50.708243206000063 ], [ -119.227444195999936, 50.707997346000077 ], [ -119.227431053999922, 50.707143817000045 ], [ -119.228099299999926, 50.707148351000107 ], [ -119.229982807999988, 50.707163662000013 ], [ -119.231279148999988, 50.707164910000095 ], [ -119.232588603999943, 50.707166131000058 ], [ -119.233310741999944, 50.707166812000011 ], [ -119.23379231899996, 50.707167265000116 ], [ -119.234429791999943, 50.707167843000029 ], [ -119.234498216999896, 50.70715811000013 ], [ -119.236087853999962, 50.707181544000036 ], [ -119.236172985999957, 50.70717001200007 ], [ -119.236859931999959, 50.707126009000042 ], [ -119.23771648899999, 50.707130651000085 ], [ -119.237971649999963, 50.707132038000076 ], [ -119.238994240999943, 50.707137558000056 ], [ -119.240854546999969, 50.70714757100005 ], [ -119.24133822099999, 50.707148970000119 ], [ -119.241340683999937, 50.707226716000015 ], [ -119.240843921999939, 50.707227226000029 ], [ -119.241148863999939, 50.707318837000066 ], [ -119.241349413999956, 50.707479897000034 ], [ -119.241350018999981, 50.707570185000051 ], [ -119.240051963999974, 50.707401119000153 ], [ -119.238994655999988, 50.707400070000112 ], [ -119.238995080999956, 50.707655411000133 ], [ -119.238995656999961, 50.707986669000086 ], [ -119.238995478000021, 50.708600260000033 ], [ -119.238995199999977, 50.708914478000096 ], [ -119.238993719999954, 50.710682083000101 ], [ -119.238341548999969, 50.710694611000129 ], [ -119.238336787999984, 50.710594681000067 ], [ -119.234670968000017, 50.710371965000043 ], [ -119.234672909000025, 50.710359126000078 ], [ -119.233784640999971, 50.710305140000095 ], [ -119.233810179999949, 50.710136264000077 ], [ -119.233768651999952, 50.710133741000078 ], [ -119.233790669999934, 50.709988145000089 ], [ -119.231838263999961, 50.709869461000089 ], [ -119.231640598999931, 50.711176164000094 ], [ -119.231321248999947, 50.711156748000057 ], [ -119.231104554999945, 50.712589073000103 ], [ -119.22934538, 50.712482100000067 ], [ -119.22926239899999, 50.713030436000061 ], [ -119.231388098999957, 50.713159694000083 ], [ -119.231443737999925, 50.71279192300004 ], [ -119.237085599999929, 50.713134786000126 ], [ -119.237078610999959, 50.713181020000015 ], [ -119.237339694999946, 50.71319688000014 ], [ -119.237156992999971, 50.714405563000064 ], [ -119.236832622999884, 50.716551302000056 ], [ -119.23856410799999, 50.716656463000035 ], [ -119.2388695099999, 50.714635697000055 ], [ -119.238955951999969, 50.714640946000088 ], [ -119.238990514999955, 50.714412237000076 ], [ -119.238975506999964, 50.715418240000098 ], [ -119.238975, 50.715451490000063 ], [ -119.238977298999941, 50.715562160000076 ], [ -119.239019795, 50.717623397000096 ], [ -119.239019390999943, 50.717702946000031 ], [ -119.239018333, 50.717918885000067 ], [ -119.239008434999946, 50.719896831000064 ], [ -119.239003186999966, 50.720940289000069 ], [ -119.238999217999904, 50.721734099000038 ], [ -119.241963872999932, 50.721714078000076 ], [ -119.242572957, 50.721709974000113 ], [ -119.2448850899999, 50.7216943130001 ], [ -119.245704210999975, 50.721693904000048 ], [ -119.246072687999956, 50.721693726000076 ], [ -119.247631526999911, 50.721692931000042 ], [ -119.250566008999982, 50.721691403000101 ], [ -119.252419013999926, 50.721686403000042 ], [ -119.256323110000025, 50.721683788000121 ], [ -119.256387049999944, 50.721683974000044 ], [ -119.256530889, 50.72168435400004 ], [ -119.256674690999972, 50.721684744000093 ], [ -119.256818510999949, 50.72168510100002 ], [ -119.256927808999933, 50.721685427000125 ], [ -119.256962345999938, 50.721685226000048 ], [ -119.257106182999976, 50.721684554000092 ], [ -119.257250004999918, 50.721683856000013 ], [ -119.257330864999972, 50.721683457000019 ], [ -119.257393844999925, 50.721681760000074 ], [ -119.257537613999943, 50.721677836000083 ], [ -119.25767587499999, 50.721674095000026 ], [ -119.257825216999976, 50.721674091000111 ], [ -119.257969017999983, 50.721674111000091 ], [ -119.258006985999927, 50.721674132000025 ], [ -119.258064530999931, 50.721672539000082 ], [ -119.25825669299995, 50.72167282000003 ], [ -119.258400505999958, 50.721672977000026 ], [ -119.25854435199993, 50.721673181000043 ], [ -119.258697986999962, 50.721673347000014 ], [ -119.25883201100001, 50.721673229000046 ], [ -119.258975860999968, 50.721673063000061 ], [ -119.259119670999951, 50.72167290600003 ], [ -119.259263483999959, 50.72167275000006 ], [ -119.259389019999929, 50.721672604000069 ], [ -119.259407348999929, 50.721672607000073 ], [ -119.25955116199999, 50.721672762000054 ], [ -119.259705724999947, 50.72167291100002 ], [ -119.259838749, 50.721669302000144 ], [ -119.259982572999945, 50.721665386000055 ], [ -119.260036411999948, 50.721663934000055 ], [ -119.260126341999964, 50.721664302000093 ], [ -119.260413960999955, 50.72166546700003 ], [ -119.260557822999942, 50.721666062000104 ], [ -119.260612249999937, 50.721666287000076 ], [ -119.26070164399999, 50.721665360000046 ], [ -119.260845451999941, 50.721663895000106 ], [ -119.26098929399997, 50.721662418000093 ], [ -119.26114469399991, 50.721660813000057 ], [ -119.261202630999918, 50.72166823700011 ], [ -119.261275607999934, 50.721666236000011 ], [ -119.261419396999941, 50.721662329000068 ], [ -119.261562087999948, 50.721658458000036 ], [ -119.261706952999972, 50.72165907100004 ], [ -119.261850799999976, 50.721659640000048 ], [ -119.261987558999976, 50.72166020000008 ], [ -119.261994607999952, 50.7216602210001 ], [ -119.262138416999946, 50.72166080100007 ], [ -119.262282227999947, 50.721661380000029 ], [ -119.262426051999967, 50.721661982000079 ], [ -119.262379713000016, 50.721693049000102 ], [ -119.262347585999976, 50.721714596000048 ], [ -119.262259511999929, 50.721893289000022 ], [ -119.262054984999935, 50.72271199700004 ], [ -119.262099519999964, 50.723598011000071 ], [ -119.262216983999949, 50.724377509000064 ], [ -119.262189390999978, 50.724957788000104 ], [ -119.2623316789999, 50.725695491000096 ], [ -119.262265376999963, 50.726088513000015 ], [ -119.262083719999978, 50.726443895000116 ], [ -119.262004685, 50.726854995000089 ], [ -119.262030408, 50.727298695000101 ], [ -119.262339684999958, 50.72816560200004 ], [ -119.262305084999966, 50.728452297000068 ], [ -119.262099254999924, 50.72901754500004 ], [ -119.262083591999925, 50.729060542000127 ], [ -119.262059789999924, 50.729125910000029 ], [ -119.262059219999969, 50.731190236000025 ], [ -119.262058802999917, 50.732610486000077 ], [ -119.261489948999952, 50.732613172000079 ], [ -119.259083387999937, 50.732624510000058 ], [ -119.256410495999887, 50.732606114000085 ], [ -119.256301740000012, 50.732605279000033 ], [ -119.25560769499999, 50.732600054000045 ], [ -119.255416828999927, 50.732598621000101 ], [ -119.255878519999953, 50.729537119000057 ], [ -119.26003693, 50.729788842000133 ], [ -119.260152858999916, 50.729019573000052 ], [ -119.256977099999943, 50.728827348000031 ], [ -119.257462780999987, 50.725605722000047 ], [ -119.25568013899999, 50.725497779000101 ], [ -119.255579396999977, 50.726165882000075 ], [ -119.254171834999966, 50.726080631000094 ], [ -119.254093787999963, 50.726598104000068 ], [ -119.25426601099997, 50.726608536000114 ], [ -119.254226957999919, 50.726867472000059 ], [ -119.255076301999964, 50.726918915000091 ], [ -119.254536896999937, 50.730495496000117 ], [ -119.254525874999928, 50.730494829000115 ], [ -119.254209916000022, 50.732589551000025 ], [ -119.253822162999953, 50.732586634000086 ], [ -119.253500305999978, 50.732584201000044 ], [ -119.251640135999963, 50.732604475000102 ], [ -119.251051238999977, 50.732610866000059 ], [ -119.250551633, 50.732599562000097 ], [ -119.250550589999989, 50.733166433000086 ], [ -119.250545284999987, 50.736144103000079 ], [ -119.250545093999975, 50.736247210000059 ], [ -119.25053763699999, 50.738059470000053 ], [ -119.250534985999977, 50.738698017000097 ], [ -119.25051505799999, 50.743522490000039 ], [ -119.246521719999947, 50.743532769000105 ], [ -119.245587663999942, 50.743535168000079 ], [ -119.245169567999966, 50.743568459000109 ], [ -119.244905682999942, 50.743665246000063 ], [ -119.244771933999985, 50.74349472500009 ], [ -119.244767324999955, 50.742848244000044 ], [ -119.244762925999936, 50.742227755000108 ], [ -119.244753060999983, 50.740833728000027 ] ], [ [ -119.246648490999974, 50.734228628000018 ], [ -119.246666821999909, 50.734107249000083 ], [ -119.24634015499997, 50.734087443000071 ], [ -119.246359566999971, 50.733958916000049 ], [ -119.246318762999962, 50.733956443000082 ], [ -119.246348277, 50.73376101700012 ], [ -119.246109468000014, 50.73374653700008 ], [ -119.246149779999925, 50.733479623000093 ], [ -119.24529376199996, 50.733427716000044 ], [ -119.245592277999961, 50.731451321000115 ], [ -119.245437305999957, 50.731441923000055 ], [ -119.245589003999967, 50.730437517000112 ], [ -119.244292638999966, 50.73035889300013 ], [ -119.24483285899997, 50.726782361000133 ], [ -119.245263837999957, 50.726808501000086 ], [ -119.24531425399999, 50.726474672000052 ], [ -119.245517295999917, 50.726486986000026 ], [ -119.245520375999945, 50.726466594000087 ], [ -119.245344543999963, 50.726455930000085 ], [ -119.245821631999959, 50.723296619000109 ], [ -119.244628977999952, 50.723224275000121 ], [ -119.244214587999963, 50.725967942000068 ], [ -119.243460705999937, 50.725922207000082 ], [ -119.242987010999954, 50.729057763000078 ], [ -119.24285225199999, 50.72904958700007 ], [ -119.242728096999926, 50.729871325000083 ], [ -119.243359731999988, 50.729909644 ], [ -119.243225695999953, 50.730796823000077 ], [ -119.243580385999977, 50.730818339000109 ], [ -119.243097669999898, 50.734013288000014 ], [ -119.246648490999974, 50.734228628000018 ] ], [ [ -119.234149767999952, 50.724517686000119 ], [ -119.23425610299995, 50.723814708000134 ], [ -119.233242744999956, 50.723753135000031 ], [ -119.233229588999961, 50.723840098000061 ], [ -119.231732405999963, 50.72374911100006 ], [ -119.231730705999894, 50.723760345000038 ], [ -119.231836122999965, 50.723766752000124 ], [ -119.231400299999947, 50.726646801000136 ], [ -119.23362486399999, 50.726781983000095 ], [ -119.233969061999986, 50.724506708000035 ], [ -119.234149767999952, 50.724517686000119 ] ], [ [ -119.259791621999966, 50.724297059000079 ], [ -119.259628639999988, 50.725378616000043 ], [ -119.259858885999932, 50.725392552000116 ], [ -119.259989824999977, 50.724523602000062 ], [ -119.260132061, 50.724532210000078 ], [ -119.260158927999953, 50.724353906000033 ], [ -119.260237731999965, 50.724358675000083 ], [ -119.260242899999952, 50.724324371000101 ], [ -119.259791621999966, 50.724297059000079 ] ], [ [ -119.233414835999952, 50.719361167000073 ], [ -119.233459008999958, 50.71906914100007 ], [ -119.232572622999953, 50.719015272000078 ], [ -119.232528443999968, 50.719307298000061 ], [ -119.233414835999952, 50.719361167000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "155682084", "BldgCostT": "102893334", "sL_LossRatio": "0.999713889865077", "sL_AssetLoss": "10869.94", "sL_BldgLoss": "10866.83", "sL_StrLoss": "10865.7", "sL_NStrLoss": "1.13", "sL_ContLoss": "3.11", "geom_point": "0101000020E6100000BC8BF699AFCF5DC09B2F274F765B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.239019795, 50.717623397000096 ], [ -119.238977298999941, 50.715562160000076 ], [ -119.238975, 50.715451490000063 ], [ -119.238975506999964, 50.715418240000098 ], [ -119.238990514999955, 50.714412237000076 ], [ -119.238991370999941, 50.714406572000044 ], [ -119.239093388999919, 50.713731493000083 ], [ -119.238991170999896, 50.713725286000063 ], [ -119.238991496999986, 50.71333727600009 ], [ -119.239034847999932, 50.713050404000036 ], [ -119.238991737999953, 50.713047787000029 ], [ -119.23899232399999, 50.712350043000058 ], [ -119.239245094999944, 50.710677253000071 ], [ -119.238993719999954, 50.710682083000101 ], [ -119.238995199999977, 50.708914478000096 ], [ -119.238995478000021, 50.708600260000033 ], [ -119.238995656999961, 50.707986669000086 ], [ -119.238995080999956, 50.707655411000133 ], [ -119.238994655999988, 50.707400070000112 ], [ -119.240051963999974, 50.707401119000153 ], [ -119.241350018999981, 50.707570185000051 ], [ -119.241349413999956, 50.707479897000034 ], [ -119.241148863999939, 50.707318837000066 ], [ -119.240843921999939, 50.707227226000029 ], [ -119.241340683999937, 50.707226716000015 ], [ -119.241840451999934, 50.707225468000054 ], [ -119.24526423599994, 50.707221780000033 ], [ -119.245857438999977, 50.707221143000055 ], [ -119.248321981999936, 50.707220732000046 ], [ -119.249788480999882, 50.707220444000086 ], [ -119.25052999799999, 50.707220299000078 ], [ -119.250533146999928, 50.707316678000076 ], [ -119.250543685999972, 50.707638915000089 ], [ -119.250563711999988, 50.708336738000099 ], [ -119.250563879999959, 50.710694563000061 ], [ -119.250561148999964, 50.711021924000121 ], [ -119.250556519999918, 50.711570602000037 ], [ -119.250554403999899, 50.711823695000128 ], [ -119.250557917999956, 50.712793980000072 ], [ -119.2505587799999, 50.713045864000037 ], [ -119.25056226599996, 50.713999209000065 ], [ -119.250563707999916, 50.714404000000101 ], [ -119.251257788999936, 50.714369423000079 ], [ -119.252766353999945, 50.714371521000075 ], [ -119.252683971999943, 50.716503208000056 ], [ -119.25272949899994, 50.718041785000061 ], [ -119.250568618999978, 50.718041606000043 ], [ -119.25055869000002, 50.719881301000072 ], [ -119.250557100999941, 50.720174890000102 ], [ -119.250566008999982, 50.721691403000101 ], [ -119.247631526999911, 50.721692931000042 ], [ -119.246072687999956, 50.721693726000076 ], [ -119.245704210999975, 50.721693904000048 ], [ -119.2448850899999, 50.7216943130001 ], [ -119.242572957, 50.721709974000113 ], [ -119.241963872999932, 50.721714078000076 ], [ -119.238999217999904, 50.721734099000038 ], [ -119.239003186999966, 50.720940289000069 ], [ -119.239008434999946, 50.719896831000064 ], [ -119.239018333, 50.717918885000067 ], [ -119.239019390999943, 50.717702946000031 ], [ -119.239019795, 50.717623397000096 ] ], [ [ -119.247769403999925, 50.716380208 ], [ -119.247859340999938, 50.715784325000072 ], [ -119.247083076999957, 50.715737247000099 ], [ -119.247025151999978, 50.716121 ], [ -119.246825416999954, 50.716108886000043 ], [ -119.246529902999939, 50.71806647300005 ], [ -119.246909987999956, 50.718089525000039 ], [ -119.24710322599999, 50.716809391000069 ], [ -119.247379100999964, 50.716826121000096 ], [ -119.247449336999949, 50.716360797000057 ], [ -119.247769403999925, 50.716380208 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "321850018", "BldgCostT": "214892904", "sL_LossRatio": "0.999864627208935", "sL_AssetLoss": "14256.927", "sL_BldgLoss": "14254.997", "sL_StrLoss": "14254.3", "sL_NStrLoss": "0.697", "sL_ContLoss": "1.93", "geom_point": "0101000020E6100000A8E6D6F7A3D05DC0097C5E54FF5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.263160381999967, 50.715136297000093 ], [ -119.263021112999965, 50.714387907000066 ], [ -119.262612895999951, 50.71438761299999 ], [ -119.261918462999972, 50.714387102000096 ], [ -119.261511007999943, 50.714386810000057 ], [ -119.261241014999911, 50.714383992000137 ], [ -119.260528649999955, 50.714379429000118 ], [ -119.259356765999911, 50.714371885000013 ], [ -119.259168710999973, 50.714371785000075 ], [ -119.258432451999965, 50.71437133200007 ], [ -119.258001807999932, 50.714371049000086 ], [ -119.257143287999924, 50.714371574000069 ], [ -119.256865797999978, 50.714371756000027 ], [ -119.25586664299999, 50.714371704000065 ], [ -119.255257307999969, 50.714371670000034 ], [ -119.253585626999936, 50.714371584000105 ], [ -119.252766353999945, 50.714371521000075 ], [ -119.251257788999936, 50.714369423000079 ], [ -119.250563707999916, 50.714404000000101 ], [ -119.25056226599996, 50.713999209000065 ], [ -119.2505587799999, 50.713045864000037 ], [ -119.250557917999956, 50.712793980000072 ], [ -119.250554403999899, 50.711823695000128 ], [ -119.250556519999918, 50.711570602000037 ], [ -119.250561148999964, 50.711021924000121 ], [ -119.250563879999959, 50.710694563000061 ], [ -119.250563711999988, 50.708336738000099 ], [ -119.250543685999972, 50.707638915000089 ], [ -119.250533146999928, 50.707316678000076 ], [ -119.25052999799999, 50.707220299000078 ], [ -119.251284206999969, 50.707220912000061 ], [ -119.251658583, 50.707221685000093 ], [ -119.252439512999942, 50.707223256000077 ], [ -119.252731911999987, 50.707222337000069 ], [ -119.255533339999985, 50.707213229000047 ], [ -119.25622193, 50.707210959000086 ], [ -119.25670918199999, 50.707209363000104 ], [ -119.259082485999897, 50.707201570000109 ], [ -119.259264278, 50.707200983000142 ], [ -119.259273385999933, 50.707200943000032 ], [ -119.260523034999963, 50.707196834000058 ], [ -119.260904821999986, 50.707195125000055 ], [ -119.26098032, 50.70719465800007 ], [ -119.261374889999928, 50.707191551000079 ], [ -119.261922822000017, 50.707188980000126 ], [ -119.262160315999921, 50.707187866000062 ], [ -119.262872051999977, 50.707184543000061 ], [ -119.263534109999981, 50.70711367800002 ], [ -119.26405611099996, 50.707059668000078 ], [ -119.264059034999917, 50.707890885000054 ], [ -119.264059824999933, 50.707972630000064 ], [ -119.264073338999964, 50.709465839000075 ], [ -119.26407599199996, 50.709762420000082 ], [ -119.264079409999937, 50.710137995000089 ], [ -119.264094387999947, 50.710345136000086 ], [ -119.264108506999932, 50.71054038200009 ], [ -119.264088287999954, 50.710703408000057 ], [ -119.264000982999946, 50.71082888900002 ], [ -119.263660094, 50.711155702000049 ], [ -119.26403729099998, 50.71122180600009 ], [ -119.265714687999889, 50.711216799000056 ], [ -119.265929201999924, 50.711049388000049 ], [ -119.267182989999952, 50.709356702000029 ], [ -119.267250199, 50.709193814000095 ], [ -119.267248179999982, 50.707991705000076 ], [ -119.267247797999943, 50.707772507000051 ], [ -119.267201290999978, 50.707674889000025 ], [ -119.267058906999978, 50.707580590000092 ], [ -119.267159021999973, 50.706981203000112 ], [ -119.267300421999934, 50.706637800000053 ], [ -119.267475209999986, 50.706346095000079 ], [ -119.26783779199998, 50.706017102000033 ], [ -119.26871371599999, 50.705397802000093 ], [ -119.269961485999886, 50.706394688000032 ], [ -119.270534296, 50.706852300000044 ], [ -119.270940891999899, 50.707129587000097 ], [ -119.271841910999953, 50.707620746000039 ], [ -119.271554754999968, 50.70777934400013 ], [ -119.271411495999985, 50.707927686000112 ], [ -119.271252344999979, 50.708086810000111 ], [ -119.27104033799999, 50.708379864000037 ], [ -119.271002419999959, 50.708415053000145 ], [ -119.270363858999985, 50.709007594000106 ], [ -119.269923053999946, 50.70954733300006 ], [ -119.26981259199998, 50.709682572000126 ], [ -119.268981074999957, 50.710384827000077 ], [ -119.268901286999963, 50.710487871000048 ], [ -119.268751427999945, 50.710681338000057 ], [ -119.268710047999932, 50.710771099000084 ], [ -119.268595517, 50.711019312000133 ], [ -119.268444382, 50.711346871000032 ], [ -119.268436750999939, 50.711363434000106 ], [ -119.268222846999933, 50.712255515 ], [ -119.26817841699993, 50.71248472000012 ], [ -119.268031715999939, 50.712908410000026 ], [ -119.267901477999928, 50.71328459900009 ], [ -119.267460067999977, 50.71399883100009 ], [ -119.267428140999968, 50.714050473000107 ], [ -119.267280603999922, 50.714289196000038 ], [ -119.267132619000023, 50.714392993000104 ], [ -119.267113899, 50.714734791000069 ], [ -119.266956370999978, 50.715090693000022 ], [ -119.266946269999934, 50.715121488000101 ], [ -119.266732081999976, 50.715772542000089 ], [ -119.266728192999921, 50.715784315000114 ], [ -119.266685567999929, 50.716024883000038 ], [ -119.266652317999899, 50.71621279400005 ], [ -119.266553107999954, 50.716333106000064 ], [ -119.26655252399999, 50.716333106000064 ], [ -119.266277163999987, 50.71633522000014 ], [ -119.26436979099999, 50.716350009000053 ], [ -119.263059717999965, 50.716324806000046 ], [ -119.263060458999917, 50.716315800000082 ], [ -119.26307366099999, 50.716159969000103 ], [ -119.263092624999956, 50.715936324000019 ], [ -119.263114705999939, 50.715675390000108 ], [ -119.263160381999967, 50.715136297000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "167964001", "BldgCostT": "106530001", "sL_LossRatio": "1", "sL_AssetLoss": "9388.1", "sL_BldgLoss": "9388.1", "sL_StrLoss": "9388.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008277565E34D05DC02275E18B1F5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.250516295999944, 50.703414289000108 ], [ -119.25049514600002, 50.702559045000037 ], [ -119.2504886299999, 50.702295509000116 ], [ -119.250441575999929, 50.701597846 ], [ -119.249130505999972, 50.701587315000054 ], [ -119.24874807199997, 50.701584233000077 ], [ -119.247112579999907, 50.70157105200007 ], [ -119.246977898999987, 50.701569971000012 ], [ -119.246116050999944, 50.701563006000136 ], [ -119.245986922, 50.701561982000044 ], [ -119.246082839999971, 50.701956085000063 ], [ -119.247038536999952, 50.701959918000085 ], [ -119.247037534999961, 50.702240030000013 ], [ -119.247033383999948, 50.703389818000076 ], [ -119.247027647999957, 50.70537752300006 ], [ -119.247033242, 50.705427625000027 ], [ -119.247027507, 50.705433135000057 ], [ -119.246450864999957, 50.705984538000052 ], [ -119.246227700999924, 50.706201393000107 ], [ -119.245490120999989, 50.706197265000071 ], [ -119.245164763999966, 50.706195432000115 ], [ -119.245162597, 50.706195410000063 ], [ -119.245162501999914, 50.70617217300002 ], [ -119.245156445999967, 50.70481994600005 ], [ -119.245152726999976, 50.703992921000072 ], [ -119.24514990099999, 50.703363608000068 ], [ -119.245149764999951, 50.70332966100009 ], [ -119.245098460999913, 50.703292462000043 ], [ -119.245034297999908, 50.703245959000064 ], [ -119.244957286, 50.703068029000057 ], [ -119.244936802999945, 50.702513827000132 ], [ -119.244926839999906, 50.702244111000049 ], [ -119.244906588999953, 50.701695930000028 ], [ -119.244901328999958, 50.701553190000048 ], [ -119.244902220999961, 50.700887334000086 ], [ -119.244944461, 50.700777099000099 ], [ -119.245140262999897, 50.700723986000057 ], [ -119.246290778999978, 50.700766792000117 ], [ -119.246863693999913, 50.700760889000044 ], [ -119.247170207999929, 50.700720675000042 ], [ -119.247277487999938, 50.700706595000035 ], [ -119.248051001999926, 50.700531581000085 ], [ -119.248957003999976, 50.700515209000088 ], [ -119.249123396999892, 50.700478399000083 ], [ -119.249253191999912, 50.700325702000065 ], [ -119.24926108199999, 50.700002255000037 ], [ -119.249263532999947, 50.699902653000031 ], [ -119.249263847999927, 50.699889650000031 ], [ -119.250399250999976, 50.699894632000081 ], [ -119.252029708999927, 50.699889500000062 ], [ -119.252621899999923, 50.699891844000057 ], [ -119.253586175999899, 50.699895657000056 ], [ -119.253617589999976, 50.700589387000065 ], [ -119.25361782, 50.70085200200009 ], [ -119.253627572999932, 50.702201935000097 ], [ -119.253632101999926, 50.702824502000077 ], [ -119.25363500899999, 50.703400305000088 ], [ -119.254249583999965, 50.703401444000079 ], [ -119.254901360999924, 50.703402677000021 ], [ -119.255255071999954, 50.703403340000129 ], [ -119.25679966200002, 50.7034062110001 ], [ -119.257110908999891, 50.703406797000099 ], [ -119.257444918999937, 50.703407396000102 ], [ -119.257479557999943, 50.703407730000031 ], [ -119.257861982999884, 50.703411298000042 ], [ -119.25869549, 50.703419105000087 ], [ -119.259929403999976, 50.703417994000091 ], [ -119.26189257799993, 50.702896387000081 ], [ -119.261802996999933, 50.703044206000072 ], [ -119.261682229999948, 50.703185820000101 ], [ -119.261113832999925, 50.703821800000107 ], [ -119.260919901999941, 50.704148364000041 ], [ -119.260901582999963, 50.70435209900009 ], [ -119.260872579999941, 50.704733904000115 ], [ -119.260896901999956, 50.70608433900005 ], [ -119.260905332000021, 50.706605917000111 ], [ -119.260900643999918, 50.706673786000088 ], [ -119.260908166999954, 50.706781380000024 ], [ -119.260906435999985, 50.707091433000087 ], [ -119.260904821999986, 50.707195125000055 ], [ -119.260523034999963, 50.707196834000058 ], [ -119.259273385999933, 50.707200943000032 ], [ -119.259264278, 50.707200983000142 ], [ -119.259082485999897, 50.707201570000109 ], [ -119.25670918199999, 50.707209363000104 ], [ -119.25622193, 50.707210959000086 ], [ -119.255533339999985, 50.707213229000047 ], [ -119.252731911999987, 50.707222337000069 ], [ -119.252439512999942, 50.707223256000077 ], [ -119.251658583, 50.707221685000093 ], [ -119.251284206999969, 50.707220912000061 ], [ -119.25052999799999, 50.707220299000078 ], [ -119.250528014999972, 50.707138967000027 ], [ -119.250523347999945, 50.706452907000049 ], [ -119.25052056299991, 50.706040697000134 ], [ -119.250518095999922, 50.705685592000151 ], [ -119.250517703999947, 50.705330137000054 ], [ -119.250517388999953, 50.705058391000073 ], [ -119.250516444999917, 50.704664334000029 ], [ -119.250514916999975, 50.704036805000051 ], [ -119.250516295999944, 50.703414289000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021413", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "153157083", "BldgCostT": "100053333", "sL_LossRatio": "0.999803065611974", "sL_AssetLoss": "7769.085", "sL_BldgLoss": "7767.555", "sL_StrLoss": "7767", "sL_NStrLoss": "0.555", "sL_ContLoss": "1.53", "geom_point": "0101000020E610000080CD62F717D15DC0DF399C12F3594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.261994444999985, 50.701558484000046 ], [ -119.262021464000014, 50.701204165 ], [ -119.262039450999907, 50.700968103000058 ], [ -119.262040720999948, 50.700923930000052 ], [ -119.262042911999984, 50.700850135000039 ], [ -119.262045119999968, 50.700776364000035 ], [ -119.262047364999887, 50.700702583000094 ], [ -119.262049554999976, 50.700628788000124 ], [ -119.262051760999924, 50.700555018000053 ], [ -119.26209688599999, 50.700430809000068 ], [ -119.262094969999922, 50.700005238000081 ], [ -119.26209447699992, 50.699892947000116 ], [ -119.263908606999976, 50.699878223000049 ], [ -119.264366181999918, 50.69988744400014 ], [ -119.265595088999959, 50.699895771000051 ], [ -119.266516944, 50.699890593000077 ], [ -119.267477622999962, 50.699878654000024 ], [ -119.268001558999956, 50.699878927000093 ], [ -119.26802987399999, 50.699878940000097 ], [ -119.268099392999943, 50.699879014000054 ], [ -119.268394295999968, 50.699904979000046 ], [ -119.268407746999955, 50.69990827800008 ], [ -119.268588987999976, 50.699952455000052 ], [ -119.268815964999959, 50.700007773000046 ], [ -119.269132782999989, 50.700084996000037 ], [ -119.269160201999981, 50.700089280000071 ], [ -119.269378914999933, 50.700123401000106 ], [ -119.269401194999944, 50.700123924000074 ], [ -119.269581945999946, 50.700128051000014 ], [ -119.26964551099995, 50.70012949300007 ], [ -119.270712557999957, 50.700007911000078 ], [ -119.271450787999953, 50.69992379400005 ], [ -119.272173309999943, 50.699881834000074 ], [ -119.273600355, 50.699877675000067 ], [ -119.274842767999957, 50.699880781000068 ], [ -119.274843865999983, 50.700000357000114 ], [ -119.274851234999971, 50.700818887000061 ], [ -119.27485370699999, 50.701094001000087 ], [ -119.275494873999975, 50.701096027000112 ], [ -119.277080821999974, 50.701101019000049 ], [ -119.278440426999921, 50.701105288000051 ], [ -119.278572987999937, 50.701105694000013 ], [ -119.278762390999958, 50.701407702000019 ], [ -119.279210800999962, 50.701880484000085 ], [ -119.279276697999975, 50.701939328000066 ], [ -119.279315001999962, 50.701973487000039 ], [ -119.278938905999937, 50.702108711000065 ], [ -119.278432209999963, 50.702213396000062 ], [ -119.277979795999926, 50.702270000000105 ], [ -119.27790590099994, 50.702273171000073 ], [ -119.277621683999911, 50.702285413000062 ], [ -119.277620594999945, 50.70221251000001 ], [ -119.277620004999974, 50.702173399000131 ], [ -119.275600071999961, 50.702168666000034 ], [ -119.272014495999926, 50.702184791000015 ], [ -119.271733593999926, 50.702202277000019 ], [ -119.271264683999931, 50.702231492000124 ], [ -119.270643152999952, 50.702342801000043 ], [ -119.270045274000012, 50.702505171000084 ], [ -119.269517458999957, 50.702712367000082 ], [ -119.269040875999977, 50.702966901000082 ], [ -119.268594430999912, 50.703290996000071 ], [ -119.26858080699995, 50.703300890000023 ], [ -119.268746517, 50.703410163000065 ], [ -119.268383412999967, 50.703761787000118 ], [ -119.26697126199997, 50.705486430000114 ], [ -119.266632860999948, 50.705853045000033 ], [ -119.266142858999928, 50.706243902000068 ], [ -119.265660568999962, 50.706516993000072 ], [ -119.26523935499992, 50.706715283000058 ], [ -119.264720879999942, 50.706897778000041 ], [ -119.26405611099996, 50.707059668000078 ], [ -119.263534109999981, 50.70711367800002 ], [ -119.262872051999977, 50.707184543000061 ], [ -119.262160315999921, 50.707187866000062 ], [ -119.261922822000017, 50.707188980000126 ], [ -119.261374889999928, 50.707191551000079 ], [ -119.26098032, 50.70719465800007 ], [ -119.260904821999986, 50.707195125000055 ], [ -119.260906435999985, 50.707091433000087 ], [ -119.260908166999954, 50.706781380000024 ], [ -119.260900643999918, 50.706673786000088 ], [ -119.260905332000021, 50.706605917000111 ], [ -119.260896901999956, 50.70608433900005 ], [ -119.260872579999941, 50.704733904000115 ], [ -119.260901582999963, 50.70435209900009 ], [ -119.260919901999941, 50.704148364000041 ], [ -119.261113832999925, 50.703821800000107 ], [ -119.261682229999948, 50.703185820000101 ], [ -119.261802996999933, 50.703044206000072 ], [ -119.26189257799993, 50.702896387000081 ], [ -119.261914830999956, 50.702604497000017 ], [ -119.26194389699999, 50.702222672000048 ], [ -119.261968245999938, 50.7019032910001 ], [ -119.261994444999985, 50.701558484000046 ] ], [ [ -119.27276475499994, 50.701933405000077 ], [ -119.272743636999905, 50.701496718000065 ], [ -119.272604162, 50.701488289000068 ], [ -119.272599537999909, 50.70151905000003 ], [ -119.27219089299993, 50.701494350000054 ], [ -119.272123008999984, 50.701945920000064 ], [ -119.27276475499994, 50.701933405000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142756333", "BldgCostT": "95923333", "sL_LossRatio": "1", "sL_AssetLoss": "9227", "sL_BldgLoss": "9227", "sL_StrLoss": "9227", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000073155AEF5AD05DC0C095ECD888594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.253617589999976, 50.700589387000065 ], [ -119.253586175999899, 50.699895657000056 ], [ -119.252621899999923, 50.699891844000057 ], [ -119.252029708999927, 50.699889500000062 ], [ -119.250399250999976, 50.699894632000081 ], [ -119.25039891599998, 50.699880794000073 ], [ -119.25039540599991, 50.699847207000047 ], [ -119.250245806999914, 50.698574793000049 ], [ -119.250217503999963, 50.69798839200012 ], [ -119.250485081999969, 50.696254900000056 ], [ -119.25052800899999, 50.695976890000097 ], [ -119.250529704999934, 50.695710906000031 ], [ -119.251739206999986, 50.695710208000037 ], [ -119.252784673999898, 50.695259301000092 ], [ -119.252792213999939, 50.694832001000059 ], [ -119.252439309999929, 50.694832283000039 ], [ -119.252356316999965, 50.693759694000086 ], [ -119.252410186999981, 50.69340209900006 ], [ -119.252534299999979, 50.693220107000073 ], [ -119.25480037600002, 50.694173897000105 ], [ -119.25490111, 50.694216291000018 ], [ -119.255921888000017, 50.694646297000084 ], [ -119.256088296999934, 50.694694302000066 ], [ -119.255820408999938, 50.694989411000016 ], [ -119.255749303999906, 50.695159188000034 ], [ -119.255751894999946, 50.695680013000064 ], [ -119.255750383999938, 50.696747396000013 ], [ -119.254565509999949, 50.697003658000021 ], [ -119.254016397999948, 50.697122384000103 ], [ -119.254013931999978, 50.697274580000062 ], [ -119.25400210399999, 50.698010299000138 ], [ -119.25402567899998, 50.698561291000033 ], [ -119.25412988199993, 50.698748098000095 ], [ -119.254404409999935, 50.699003788000063 ], [ -119.254232977999905, 50.699102602000018 ], [ -119.254086295999954, 50.699292292000109 ], [ -119.254043796999952, 50.69946108700006 ], [ -119.254051583999939, 50.699862196000055 ], [ -119.254802698999981, 50.699860801000121 ], [ -119.255987401999946, 50.699858592000083 ], [ -119.255988529999968, 50.69988064500005 ], [ -119.255989303999939, 50.699910568000071 ], [ -119.256341078999981, 50.699908965000098 ], [ -119.25694125399994, 50.699890185000044 ], [ -119.258003285999933, 50.699885713000121 ], [ -119.258292703999956, 50.699898005000087 ], [ -119.26209447699992, 50.699892947000116 ], [ -119.262094969999922, 50.700005238000081 ], [ -119.26209688599999, 50.700430809000068 ], [ -119.262051760999924, 50.700555018000053 ], [ -119.262049554999976, 50.700628788000124 ], [ -119.262047364999887, 50.700702583000094 ], [ -119.262045119999968, 50.700776364000035 ], [ -119.262042911999984, 50.700850135000039 ], [ -119.262040720999948, 50.700923930000052 ], [ -119.262039450999907, 50.700968103000058 ], [ -119.262021464000014, 50.701204165 ], [ -119.261994444999985, 50.701558484000046 ], [ -119.261968245999938, 50.7019032910001 ], [ -119.26194389699999, 50.702222672000048 ], [ -119.261914830999956, 50.702604497000017 ], [ -119.26189257799993, 50.702896387000081 ], [ -119.259929403999976, 50.703417994000091 ], [ -119.25869549, 50.703419105000087 ], [ -119.257861982999884, 50.703411298000042 ], [ -119.257479557999943, 50.703407730000031 ], [ -119.257444918999937, 50.703407396000102 ], [ -119.257110908999891, 50.703406797000099 ], [ -119.25679966200002, 50.7034062110001 ], [ -119.255255071999954, 50.703403340000129 ], [ -119.254901360999924, 50.703402677000021 ], [ -119.254249583999965, 50.703401444000079 ], [ -119.25363500899999, 50.703400305000088 ], [ -119.253632101999926, 50.702824502000077 ], [ -119.253627572999932, 50.702201935000097 ], [ -119.25361782, 50.70085200200009 ], [ -119.253617589999976, 50.700589387000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150858083", "BldgCostT": "98708333", "sL_LossRatio": "1", "sL_AssetLoss": "7494.1", "sL_BldgLoss": "7494.1", "sL_StrLoss": "7494.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F7DEC8989D05DC0FFE3084247594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.254051583999939, 50.699862196000055 ], [ -119.254043796999952, 50.69946108700006 ], [ -119.254086295999954, 50.699292292000109 ], [ -119.254232977999905, 50.699102602000018 ], [ -119.254404409999935, 50.699003788000063 ], [ -119.25412988199993, 50.698748098000095 ], [ -119.25402567899998, 50.698561291000033 ], [ -119.25400210399999, 50.698010299000138 ], [ -119.254013931999978, 50.697274580000062 ], [ -119.254016397999948, 50.697122384000103 ], [ -119.254565509999949, 50.697003658000021 ], [ -119.255750383999938, 50.696747396000013 ], [ -119.255751894999946, 50.695680013000064 ], [ -119.255749303999906, 50.695159188000034 ], [ -119.255820408999938, 50.694989411000016 ], [ -119.256088296999934, 50.694694302000066 ], [ -119.256539278999981, 50.694798296000066 ], [ -119.258002300999962, 50.6948148130001 ], [ -119.260281296999921, 50.694826504000105 ], [ -119.260923893000012, 50.694829313000056 ], [ -119.261542498999944, 50.69480359500006 ], [ -119.261622819999957, 50.694785872000082 ], [ -119.26209438799998, 50.69468181100013 ], [ -119.262093116999949, 50.697072514000133 ], [ -119.262092775, 50.697650395000046 ], [ -119.262092617999912, 50.697765008000076 ], [ -119.262093519999951, 50.698115756000043 ], [ -119.262094686999916, 50.69855471100005 ], [ -119.262094597999976, 50.698838908000077 ], [ -119.262096789999987, 50.699845198000091 ], [ -119.26209447699992, 50.699892947000116 ], [ -119.258292703999956, 50.699898005000087 ], [ -119.258003285999933, 50.699885713000121 ], [ -119.25694125399994, 50.699890185000044 ], [ -119.256341078999981, 50.699908965000098 ], [ -119.255989303999939, 50.699910568000071 ], [ -119.255988529999968, 50.69988064500005 ], [ -119.255987401999946, 50.699858592000083 ], [ -119.254802698999981, 50.699860801000121 ], [ -119.254051583999939, 50.699862196000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "133830144", "BldgCostT": "90146523", "sL_LossRatio": "1", "sL_AssetLoss": "7569.2", "sL_BldgLoss": "7569.2", "sL_StrLoss": "7569.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000094E42D1563D05DC0261674524A584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.250534, 50.694852103000095 ], [ -119.250537523999938, 50.694140304000058 ], [ -119.250541195999944, 50.693577517000037 ], [ -119.250546627999938, 50.692569875000061 ], [ -119.250544389999973, 50.692097319000077 ], [ -119.25054392199992, 50.691998456000064 ], [ -119.250539564999897, 50.691072338000033 ], [ -119.250538777999964, 50.690904547000081 ], [ -119.250537667999964, 50.690748568000068 ], [ -119.250536670999963, 50.690616586000019 ], [ -119.250536568999948, 50.690514888000088 ], [ -119.250535091999922, 50.689393977000066 ], [ -119.250534420999927, 50.688860366000071 ], [ -119.25053290799994, 50.687688196000053 ], [ -119.250667306999972, 50.6876647980001 ], [ -119.250796565999963, 50.687532298000129 ], [ -119.250874282999987, 50.687452604000086 ], [ -119.251178411999931, 50.68687909600002 ], [ -119.251201340999941, 50.686872918000077 ], [ -119.251134360999941, 50.686689857000133 ], [ -119.250575514999937, 50.686330419000036 ], [ -119.250590110999937, 50.685865304000124 ], [ -119.250786382999962, 50.685270797000051 ], [ -119.252615124999963, 50.68528853800013 ], [ -119.253860911999965, 50.685300601000044 ], [ -119.255078444, 50.685312388000071 ], [ -119.256353833999952, 50.685324682000051 ], [ -119.256835689999932, 50.685329361000086 ], [ -119.257213915999984, 50.685332997000046 ], [ -119.257388988999978, 50.685330936000085 ], [ -119.25813916099996, 50.685322146000082 ], [ -119.258774312999918, 50.685314698000127 ], [ -119.260542221999941, 50.68533520600009 ], [ -119.262108903999973, 50.685322700000043 ], [ -119.262103700999901, 50.686093902000074 ], [ -119.26209971, 50.686782100000073 ], [ -119.262095574999961, 50.687053076000055 ], [ -119.262088510999945, 50.687518707000017 ], [ -119.262081723999984, 50.688249592000041 ], [ -119.262079648999929, 50.688474517000074 ], [ -119.262070724999916, 50.689437118000086 ], [ -119.262069066999956, 50.689616813000015 ], [ -119.262059722999936, 50.690624335000066 ], [ -119.262057678999923, 50.690842001000107 ], [ -119.262074199999958, 50.69150570700009 ], [ -119.262085304999943, 50.691953501000107 ], [ -119.262096546999913, 50.692440732000115 ], [ -119.262099501999913, 50.692568001000069 ], [ -119.261714329, 50.692569917000093 ], [ -119.259552393999954, 50.692580706000143 ], [ -119.259556997999979, 50.693343389000091 ], [ -119.259517197999941, 50.693589107000072 ], [ -119.259356813999929, 50.693709403000121 ], [ -119.258871609999957, 50.693860405000123 ], [ -119.258036515999947, 50.693850504000046 ], [ -119.258002300999962, 50.6948148130001 ], [ -119.256539278999981, 50.694798296000066 ], [ -119.256088296999934, 50.694694302000066 ], [ -119.255921888000017, 50.694646297000084 ], [ -119.25490111, 50.694216291000018 ], [ -119.25480037600002, 50.694173897000105 ], [ -119.252534299999979, 50.693220107000073 ], [ -119.252410186999981, 50.69340209900006 ], [ -119.252356316999965, 50.693759694000086 ], [ -119.252439309999929, 50.694832283000039 ], [ -119.252792213999939, 50.694832001000059 ], [ -119.252784673999898, 50.695259301000092 ], [ -119.251739206999986, 50.695710208000037 ], [ -119.250529704999934, 50.695710906000031 ], [ -119.250534, 50.694852103000095 ] ], [ [ -119.256292634999937, 50.689118149000116 ], [ -119.256336080999972, 50.68882974400006 ], [ -119.255989141, 50.688808716999986 ], [ -119.25600314799999, 50.689100604000039 ], [ -119.256292634999937, 50.689118149000116 ] ], [ [ -119.254698496999978, 50.688792870000057 ], [ -119.255478572999948, 50.688777771000026 ], [ -119.254707810999918, 50.688731049000069 ], [ -119.254698496999978, 50.688792870000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021417", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "164662500", "BldgCostT": "104520000", "sL_LossRatio": "0.999717298461771", "sL_AssetLoss": "6614.75", "sL_BldgLoss": "6612.88", "sL_StrLoss": "6612.2", "sL_NStrLoss": "0.68", "sL_ContLoss": "1.87", "geom_point": "0101000020E61000004D987A2730D15DC093DAE621AE584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.271133790999968, 50.693555533000087 ], [ -119.270561879999931, 50.693391333000072 ], [ -119.270351595999969, 50.693419560000052 ], [ -119.270066127999968, 50.69344618500002 ], [ -119.269910597999967, 50.69346474000006 ], [ -119.269168040999944, 50.693482984000049 ], [ -119.268843467999886, 50.693462740000051 ], [ -119.268471480999963, 50.693427837000087 ], [ -119.268143463999976, 50.693410132000096 ], [ -119.26780311399996, 50.693382373000091 ], [ -119.266878933, 50.69333097300008 ], [ -119.266462602999923, 50.693403182000104 ], [ -119.266248752, 50.693493195000066 ], [ -119.266094997999957, 50.693557900000016 ], [ -119.265834485999932, 50.693708321000059 ], [ -119.265357993999956, 50.69398339 ], [ -119.265027921999888, 50.694125809000091 ], [ -119.264668498999939, 50.694216211000018 ], [ -119.264510295999983, 50.694256016000075 ], [ -119.263642632999961, 50.69436951900007 ], [ -119.263562582999924, 50.69438 ], [ -119.263049714999951, 50.694394099000156 ], [ -119.262519390999941, 50.694504589000118 ], [ -119.26209438799998, 50.69468181100013 ], [ -119.261622819999957, 50.694785872000082 ], [ -119.261542498999944, 50.69480359500006 ], [ -119.260923893000012, 50.694829313000056 ], [ -119.260281296999921, 50.694826504000105 ], [ -119.258002300999962, 50.6948148130001 ], [ -119.258036515999947, 50.693850504000046 ], [ -119.258871609999957, 50.693860405000123 ], [ -119.259356813999929, 50.693709403000121 ], [ -119.259517197999941, 50.693589107000072 ], [ -119.259556997999979, 50.693343389000091 ], [ -119.259552393999954, 50.692580706000143 ], [ -119.261714329, 50.692569917000093 ], [ -119.262099501999913, 50.692568001000069 ], [ -119.262096546999913, 50.692440732000115 ], [ -119.262085304999943, 50.691953501000107 ], [ -119.262074199999958, 50.69150570700009 ], [ -119.262057678999923, 50.690842001000107 ], [ -119.263389602999936, 50.690840259000012 ], [ -119.263662788999952, 50.6908399020001 ], [ -119.26466410099999, 50.690850909000062 ], [ -119.264948308999934, 50.690872590000019 ], [ -119.26561351299992, 50.691056305000139 ], [ -119.265904044999957, 50.691074656000076 ], [ -119.265960115, 50.691078198000099 ], [ -119.267326091999962, 50.691001103000097 ], [ -119.267829315999947, 50.691032508000092 ], [ -119.26920661199992, 50.691201502000055 ], [ -119.270589222999988, 50.691534187000066 ], [ -119.271332603999966, 50.690262899000111 ], [ -119.271367989999973, 50.690028942000062 ], [ -119.271263190999932, 50.690032008000053 ], [ -119.271264510999941, 50.688953691000087 ], [ -119.273577610999951, 50.688953689000066 ], [ -119.273576206999948, 50.68971159500007 ], [ -119.273562984999941, 50.690225092000055 ], [ -119.273517687999956, 50.690324305000054 ], [ -119.27348880800001, 50.690387608000066 ], [ -119.273235312999972, 50.690663698000087 ], [ -119.27316500799999, 50.69081919400012 ], [ -119.27316480199994, 50.690981586000106 ], [ -119.273230599999977, 50.691206596000058 ], [ -119.273519397999962, 50.691774467000123 ], [ -119.273532614999951, 50.692036961 ], [ -119.273458600999916, 50.692207565000054 ], [ -119.273971641999935, 50.692410014000082 ], [ -119.27461802299996, 50.692747752000095 ], [ -119.275007639999927, 50.692723894000032 ], [ -119.276166592999957, 50.693075023000063 ], [ -119.276825894999945, 50.693166429000051 ], [ -119.277078067999966, 50.693201390000112 ], [ -119.277446923999946, 50.693189362000062 ], [ -119.277783949999957, 50.69312401800002 ], [ -119.277870716999956, 50.693474841000089 ], [ -119.277841365, 50.693641798000073 ], [ -119.277771623999939, 50.693698946000104 ], [ -119.277829350999966, 50.694489939000078 ], [ -119.277839081999957, 50.694623407000051 ], [ -119.277824602999914, 50.694623512000106 ], [ -119.277679476999964, 50.694624590000025 ], [ -119.276516483999941, 50.694865590000084 ], [ -119.275795984999903, 50.694916805000084 ], [ -119.27561020499999, 50.694950686000034 ], [ -119.275375017999977, 50.695020385000134 ], [ -119.274976306999974, 50.695239978000075 ], [ -119.274856995999983, 50.695532329000052 ], [ -119.2747871399999, 50.695618348000039 ], [ -119.27436345199996, 50.69588146800006 ], [ -119.274100079, 50.696005416000048 ], [ -119.274050598999963, 50.69601340600012 ], [ -119.273965956, 50.696027084000058 ], [ -119.27310873299993, 50.695832720000077 ], [ -119.272819508999959, 50.695693418000054 ], [ -119.272321942999938, 50.695194762000028 ], [ -119.272028122999956, 50.694900273000059 ], [ -119.271899678999915, 50.694600139000023 ], [ -119.271797564999957, 50.694124753000082 ], [ -119.271618376999925, 50.693868477000109 ], [ -119.271310641999918, 50.693644159 ], [ -119.271133790999968, 50.693555533000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021418", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74992250", "BldgCostT": "51455000", "sL_LossRatio": "1", "sL_AssetLoss": "4226.5", "sL_BldgLoss": "4226.5", "sL_StrLoss": "4226.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BD8F0B2EED05DC0F931416818584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262057678999923, 50.690842001000107 ], [ -119.262059722999936, 50.690624335000066 ], [ -119.262069066999956, 50.689616813000015 ], [ -119.262070724999916, 50.689437118000086 ], [ -119.262079648999929, 50.688474517000074 ], [ -119.262081723999984, 50.688249592000041 ], [ -119.262088510999945, 50.687518707000017 ], [ -119.262095574999961, 50.687053076000055 ], [ -119.26209971, 50.686782100000073 ], [ -119.262103700999901, 50.686093902000074 ], [ -119.262108903999973, 50.685322700000043 ], [ -119.264280211999932, 50.685308893000077 ], [ -119.267280036999949, 50.685319907000114 ], [ -119.267249026999963, 50.68659491200011 ], [ -119.267160513999954, 50.686824089000062 ], [ -119.266959391999976, 50.686884115000069 ], [ -119.266233381999911, 50.686934886000095 ], [ -119.265861791999953, 50.686993709000035 ], [ -119.265496402999958, 50.687105980000062 ], [ -119.26528028199999, 50.687192992000085 ], [ -119.264921473999919, 50.687337385000042 ], [ -119.264865012999962, 50.687360096000106 ], [ -119.264063782999969, 50.687550813000037 ], [ -119.264547177999972, 50.687789406000057 ], [ -119.264808790999965, 50.688017312000149 ], [ -119.264847311, 50.688080899000084 ], [ -119.26485474099999, 50.688093151000025 ], [ -119.264936391, 50.688227995000048 ], [ -119.264971511999988, 50.688609109000041 ], [ -119.264974927999972, 50.688945893000039 ], [ -119.266556478999959, 50.688948669000112 ], [ -119.267135466, 50.688950043000077 ], [ -119.267829235999926, 50.68895169300005 ], [ -119.267834609999952, 50.690126898000095 ], [ -119.267832713999937, 50.6904492560001 ], [ -119.267829315999947, 50.691032508000092 ], [ -119.267326091999962, 50.691001103000097 ], [ -119.265960115, 50.691078198000099 ], [ -119.265904044999957, 50.691074656000076 ], [ -119.26561351299992, 50.691056305000139 ], [ -119.264948308999934, 50.690872590000019 ], [ -119.26466410099999, 50.690850909000062 ], [ -119.263662788999952, 50.6908399020001 ], [ -119.263389602999936, 50.690840259000012 ], [ -119.262057678999923, 50.690842001000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94308917", "BldgCostT": "63361667", "sL_LossRatio": "1", "sL_AssetLoss": "5127.7", "sL_BldgLoss": "5127.7", "sL_StrLoss": "5127.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AE3C26042D15DC051605C050C584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.267834609999952, 50.690126898000095 ], [ -119.267829235999926, 50.68895169300005 ], [ -119.267135466, 50.688950043000077 ], [ -119.266556478999959, 50.688948669000112 ], [ -119.264974927999972, 50.688945893000039 ], [ -119.264971511999988, 50.688609109000041 ], [ -119.264936391, 50.688227995000048 ], [ -119.26485474099999, 50.688093151000025 ], [ -119.264847311, 50.688080899000084 ], [ -119.264808790999965, 50.688017312000149 ], [ -119.264547177999972, 50.687789406000057 ], [ -119.264063782999969, 50.687550813000037 ], [ -119.264865012999962, 50.687360096000106 ], [ -119.264921473999919, 50.687337385000042 ], [ -119.26528028199999, 50.687192992000085 ], [ -119.265496402999958, 50.687105980000062 ], [ -119.265861791999953, 50.686993709000035 ], [ -119.266233381999911, 50.686934886000095 ], [ -119.266959391999976, 50.686884115000069 ], [ -119.267160513999954, 50.686824089000062 ], [ -119.267249026999963, 50.68659491200011 ], [ -119.267280036999949, 50.685319907000114 ], [ -119.269491707999947, 50.685303049000055 ], [ -119.272211682999966, 50.685282568000027 ], [ -119.273539543999945, 50.6852969850001 ], [ -119.273627278000021, 50.685328450000014 ], [ -119.273674807999953, 50.685390856 ], [ -119.27369429599996, 50.685999295000101 ], [ -119.273678118999939, 50.687092001000032 ], [ -119.27367105899998, 50.687222828000095 ], [ -119.273577610999951, 50.688953689000066 ], [ -119.271264510999941, 50.688953691000087 ], [ -119.271263190999932, 50.690032008000053 ], [ -119.271367989999973, 50.690028942000062 ], [ -119.271332603999966, 50.690262899000111 ], [ -119.270589222999988, 50.691534187000066 ], [ -119.26920661199992, 50.691201502000055 ], [ -119.267829315999947, 50.691032508000092 ], [ -119.267832713999937, 50.6904492560001 ], [ -119.267834609999952, 50.690126898000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021420", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24854334", "BldgCostT": "16613334", "sL_LossRatio": "1", "sL_AssetLoss": "2005.8", "sL_BldgLoss": "2005.8", "sL_StrLoss": "2005.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000573D601EB2D75DC0E9869E7BAC524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.364279602999943, 50.652712961000141 ], [ -119.364339037999983, 50.652311608000105 ], [ -119.36417232699992, 50.652301659000074 ], [ -119.364205652999928, 50.65207662300007 ], [ -119.3631620099999, 50.652014331000089 ], [ -119.363177672999953, 50.651908580000033 ], [ -119.360381828999962, 50.651741654000077 ], [ -119.360386706999989, 50.651708740000039 ], [ -119.35949910399998, 50.651655731000091 ], [ -119.360029208999947, 50.648078312000102 ], [ -119.36052434099993, 50.648107884000126 ], [ -119.360652029, 50.647246024 ], [ -119.36275524899996, 50.647371612000093 ], [ -119.362932589999943, 50.646174174000116 ], [ -119.365936586999979, 50.646353478000073 ], [ -119.366060091999927, 50.645519144000041 ], [ -119.371694526999988, 50.645855233000056 ], [ -119.371479451999974, 50.647309383000049 ], [ -119.371692227999972, 50.647322069000033 ], [ -119.372035361999963, 50.645001980000075 ], [ -119.372747019999935, 50.645044408000025 ], [ -119.373133758999984, 50.642428900000013 ], [ -119.37385845899999, 50.642472101000052 ], [ -119.37391196899992, 50.64211015000005 ], [ -119.371819309999964, 50.641985390000066 ], [ -119.371834677999971, 50.641881469000054 ], [ -119.371256199999948, 50.641846975000092 ], [ -119.371785254999949, 50.638269459000064 ], [ -119.37186694199994, 50.638274330000115 ], [ -119.371915866999984, 50.637943461000098 ], [ -119.377405590999928, 50.63827068900008 ], [ -119.377404688999917, 50.641569589 ], [ -119.377379545999986, 50.647301832000046 ], [ -119.377142820999936, 50.64890367800006 ], [ -119.37694327299999, 50.648903496000116 ], [ -119.376773200999949, 50.648893364000095 ], [ -119.376771726999934, 50.648903339000071 ], [ -119.366144184999939, 50.648893107000056 ], [ -119.365955683999985, 50.64895680700004 ], [ -119.36584869899994, 50.6491137000001 ], [ -119.365846842999957, 50.652806484000052 ], [ -119.364279602999943, 50.652712961000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93968417", "BldgCostT": "61756667", "sL_LossRatio": "1", "sL_AssetLoss": "5849.8", "sL_BldgLoss": "5849.8", "sL_StrLoss": "5849.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C44AEDC1BBD15DC0DBABB80670574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.276166592999957, 50.693075023000063 ], [ -119.275007639999927, 50.692723894000032 ], [ -119.27461802299996, 50.692747752000095 ], [ -119.273971641999935, 50.692410014000082 ], [ -119.273458600999916, 50.692207565000054 ], [ -119.273532614999951, 50.692036961 ], [ -119.273519397999962, 50.691774467000123 ], [ -119.273230599999977, 50.691206596000058 ], [ -119.27316480199994, 50.690981586000106 ], [ -119.27316500799999, 50.69081919400012 ], [ -119.273235312999972, 50.690663698000087 ], [ -119.27348880800001, 50.690387608000066 ], [ -119.273517687999956, 50.690324305000054 ], [ -119.273562984999941, 50.690225092000055 ], [ -119.273576206999948, 50.68971159500007 ], [ -119.273577610999951, 50.688953689000066 ], [ -119.27367105899998, 50.687222828000095 ], [ -119.273678118999939, 50.687092001000032 ], [ -119.27369429599996, 50.685999295000101 ], [ -119.273674807999953, 50.685390856 ], [ -119.273627278000021, 50.685328450000014 ], [ -119.273539543999945, 50.6852969850001 ], [ -119.272211682999966, 50.685282568000027 ], [ -119.269491707999947, 50.685303049000055 ], [ -119.267280036999949, 50.685319907000114 ], [ -119.264280211999932, 50.685308893000077 ], [ -119.262108903999973, 50.685322700000043 ], [ -119.260542221999941, 50.68533520600009 ], [ -119.258774312999918, 50.685314698000127 ], [ -119.25813916099996, 50.685322146000082 ], [ -119.257388988999978, 50.685330936000085 ], [ -119.257213915999984, 50.685332997000046 ], [ -119.256835689999932, 50.685329361000086 ], [ -119.256353833999952, 50.685324682000051 ], [ -119.255078444, 50.685312388000071 ], [ -119.253860911999965, 50.685300601000044 ], [ -119.252615124999963, 50.68528853800013 ], [ -119.250786382999962, 50.685270797000051 ], [ -119.250621218999967, 50.685278317000055 ], [ -119.250472129999977, 50.685285101000026 ], [ -119.250389535999929, 50.685291226000082 ], [ -119.250290815999989, 50.685296906000026 ], [ -119.250173710999931, 50.685303658000102 ], [ -119.250171305999942, 50.685302995000022 ], [ -119.24996824599999, 50.685303171000044 ], [ -119.246259332999955, 50.68530633200006 ], [ -119.245933543999925, 50.685306582000109 ], [ -119.239027201999932, 50.685312089000085 ], [ -119.239045363999978, 50.681731695000032 ], [ -119.239046309999964, 50.681546044000143 ], [ -119.23904864, 50.681087510000033 ], [ -119.239048757999953, 50.681064328000069 ], [ -119.240556175999984, 50.681155929000091 ], [ -119.24010808299991, 50.684123852000084 ], [ -119.240912974999929, 50.684172754000031 ], [ -119.241153730999955, 50.682577975000044 ], [ -119.245720211999952, 50.682855304000086 ], [ -119.24577826899997, 50.682470465000016 ], [ -119.244546749999955, 50.682395691000096 ], [ -119.244695977999953, 50.681406638000091 ], [ -119.243014967999954, 50.681304551000025 ], [ -119.243085536999942, 50.68083694200007 ], [ -119.242657491, 50.680810943000026 ], [ -119.242702602999927, 50.680512025000034 ], [ -119.241821784999914, 50.680458520000066 ], [ -119.242270788000013, 50.677483544000061 ], [ -119.242361600999971, 50.676881789000078 ], [ -119.24667696099999, 50.677143860000051 ], [ -119.246728415999939, 50.676802689000091 ], [ -119.246890743999955, 50.67681254300004 ], [ -119.246955328999945, 50.676384293000069 ], [ -119.252592735999954, 50.676726387000038 ], [ -119.252535279999933, 50.677107699000061 ], [ -119.252701560999952, 50.677117784000139 ], [ -119.25216256299997, 50.68069456500011 ], [ -119.251833924999957, 50.680674631000045 ], [ -119.251826850999933, 50.680721573000021 ], [ -119.251745371999931, 50.680716631000109 ], [ -119.251709543999937, 50.680954355000047 ], [ -119.252180243999973, 50.680982907000022 ], [ -119.251741403999986, 50.683894607000056 ], [ -119.252720629999928, 50.683953998000035 ], [ -119.252670021999961, 50.684289805000056 ], [ -119.252974844999969, 50.684308291000079 ], [ -119.252888058999957, 50.684884169000057 ], [ -119.253071230999936, 50.684895277000145 ], [ -119.253187616999966, 50.684122953000042 ], [ -119.255854533, 50.684284646000087 ], [ -119.255960327999958, 50.683582315000066 ], [ -119.256635780999943, 50.683623257000036 ], [ -119.256702718999932, 50.683178831000113 ], [ -119.257131614999977, 50.683204825000082 ], [ -119.257146702999989, 50.683104641000043 ], [ -119.257491588999969, 50.683125543000131 ], [ -119.257519295999941, 50.682941550000052 ], [ -119.25849103199999, 50.683000436000064 ], [ -119.258523761999982, 50.682783072000106 ], [ -119.261664131999922, 50.682973317000119 ], [ -119.261691022999941, 50.682794645000044 ], [ -119.262677837999917, 50.682854407000093 ], [ -119.262692980999972, 50.682753768000069 ], [ -119.265595658999956, 50.682929508000029 ], [ -119.265645860999911, 50.682595734000159 ], [ -119.269288838999941, 50.682816186000068 ], [ -119.269302394999926, 50.682726018000082 ], [ -119.272078006999905, 50.682893901000078 ], [ -119.272222411999905, 50.681932883000037 ], [ -119.272708268, 50.681962263000116 ], [ -119.272724594999943, 50.681853594000081 ], [ -119.278362884999979, 50.68219438400007 ], [ -119.277825871999966, 50.685771267000106 ], [ -119.277535754999931, 50.685753739000084 ], [ -119.277433192999965, 50.686436774000065 ], [ -119.277381994999985, 50.686433681000096 ], [ -119.27723178699992, 50.687433975000019 ], [ -119.278005260999961, 50.687480705000013 ], [ -119.277832334999971, 50.688632366000014 ], [ -119.278832513999973, 50.688692784000061 ], [ -119.278680836999911, 50.689703032000068 ], [ -119.278954339, 50.689719552000085 ], [ -119.278986285999977, 50.689506755000068 ], [ -119.280072303999972, 50.689572345000094 ], [ -119.28012036799997, 50.68925214500004 ], [ -119.279853950999936, 50.689236056000048 ], [ -119.280089833999966, 50.68766463500004 ], [ -119.27870062299999, 50.687580727000082 ], [ -119.27923758799993, 50.684003848000017 ], [ -119.280330637999953, 50.684069869000091 ], [ -119.280541108999941, 50.682667475000073 ], [ -119.280785152999925, 50.682682213000092 ], [ -119.280807802999959, 50.682531281000131 ], [ -119.286446239999975, 50.682871663000093 ], [ -119.286366556999894, 50.683403074000069 ], [ -119.287867332999923, 50.683493624000093 ], [ -119.287848326999949, 50.683620400000088 ], [ -119.287892584999895, 50.68362307000006 ], [ -119.288119609999939, 50.682108647000113 ], [ -119.292219777999932, 50.682355926000071 ], [ -119.292228419999972, 50.682298241000069 ], [ -119.29325417799997, 50.682360080000073 ], [ -119.293400219999953, 50.681385066000061 ], [ -119.294231550999896, 50.681435176000058 ], [ -119.294545585999941, 50.67933818800001 ], [ -119.297143164999966, 50.679494724000044 ], [ -119.297152367999914, 50.679433247000119 ], [ -119.29745017499998, 50.67945119000008 ], [ -119.297451152999898, 50.679444654000051 ], [ -119.297942859, 50.679474277000111 ], [ -119.29800795099996, 50.67903936600009 ], [ -119.298295390999954, 50.679056682000095 ], [ -119.298462694999927, 50.677938773000093 ], [ -119.298619659999943, 50.677948229000087 ], [ -119.298675906999932, 50.677572377000061 ], [ -119.30148005599996, 50.677741261000101 ], [ -119.301506983999943, 50.677561243000056 ], [ -119.303124424999965, 50.677658622000095 ], [ -119.303299265999911, 50.676489481000033 ], [ -119.30411267599996, 50.676538444000109 ], [ -119.304188953999954, 50.676028300000063 ], [ -119.305141318999972, 50.676085620000016 ], [ -119.30531226599993, 50.674942124000076 ], [ -119.307153575999976, 50.675052923000109 ], [ -119.307175687999944, 50.674904966000071 ], [ -119.310174262999951, 50.675085337000027 ], [ -119.310306089999955, 50.674202836000063 ], [ -119.312857654999974, 50.674356254000102 ], [ -119.313012922999974, 50.673316396000054 ], [ -119.313761002999968, 50.673361365000062 ], [ -119.313805201999969, 50.673065314000027 ], [ -119.314504556999935, 50.673107349000119 ], [ -119.314534279999975, 50.672908230000083 ], [ -119.316124396999939, 50.673003788000052 ], [ -119.316175021999967, 50.672664566000037 ], [ -119.316427589999989, 50.672679742000071 ], [ -119.316433912999955, 50.672637372000011 ], [ -119.320664016999956, 50.672891459 ], [ -119.320689621999975, 50.672719769000075 ], [ -119.321209825999972, 50.672751005000038 ], [ -119.321251911999951, 50.672468783000078 ], [ -119.322409940999989, 50.672538307000089 ], [ -119.32242276199996, 50.672452309000036 ], [ -119.323411966999956, 50.672511688000085 ], [ -119.321990983999925, 50.673140520000047 ], [ -119.321217985999951, 50.673482605000068 ], [ -119.32007788099996, 50.673781410000103 ], [ -119.319402820999969, 50.673958353000046 ], [ -119.315949500999977, 50.674863295000073 ], [ -119.31496357899999, 50.675152413000056 ], [ -119.314450995999977, 50.675258807000027 ], [ -119.313918710999957, 50.675369284000112 ], [ -119.313371914999934, 50.675602589000029 ], [ -119.312865371999948, 50.675860186000136 ], [ -119.312506984999942, 50.676042398000064 ], [ -119.312143183999979, 50.676259592000079 ], [ -119.311853782999904, 50.676530897000063 ], [ -119.311734101999946, 50.676695333000055 ], [ -119.311714776999935, 50.676721870000065 ], [ -119.311615924999955, 50.676857708000036 ], [ -119.311339077999961, 50.677377895000035 ], [ -119.311229003, 50.677524697000109 ], [ -119.310825496999954, 50.677750396000079 ], [ -119.308856177999957, 50.678508835000031 ], [ -119.308847010999941, 50.678512371000089 ], [ -119.308446263999926, 50.678666690000085 ], [ -119.308089689999946, 50.678803991000066 ], [ -119.307064921999924, 50.679236105000015 ], [ -119.306591520999987, 50.679435704000078 ], [ -119.303868292999979, 50.68033651100005 ], [ -119.302282685999927, 50.681067067000157 ], [ -119.302058182999957, 50.681170495000046 ], [ -119.301703383999921, 50.681374695000045 ], [ -119.301102115999939, 50.681857302000083 ], [ -119.301097480999942, 50.682843624000029 ], [ -119.301091188999962, 50.68419256600005 ], [ -119.30108621299999, 50.685262495000131 ], [ -119.300738657999915, 50.685265020000038 ], [ -119.299894307999978, 50.685271082000064 ], [ -119.299832550999966, 50.6852713850001 ], [ -119.298727097000011, 50.685276591000012 ], [ -119.298744722999956, 50.68403789200007 ], [ -119.298755090999947, 50.683683006000074 ], [ -119.29864650199994, 50.683467987000022 ], [ -119.298274017999987, 50.683599899000043 ], [ -119.296665996999977, 50.684060597000041 ], [ -119.295270292999987, 50.684428359000037 ], [ -119.29354440899999, 50.684883099000068 ], [ -119.292916791999986, 50.68511330700003 ], [ -119.292480796999925, 50.685307987000037 ], [ -119.292272435999962, 50.685414770000115 ], [ -119.291710413999951, 50.685702803000055 ], [ -119.290024892999938, 50.686584715000052 ], [ -119.289117828999977, 50.687031759 ], [ -119.288946714999923, 50.687116096000111 ], [ -119.288768093999948, 50.687254202000119 ], [ -119.288155808999974, 50.687599900000109 ], [ -119.287165593999987, 50.688103214000122 ], [ -119.286266765999954, 50.688426253000038 ], [ -119.285710229999921, 50.688626264000114 ], [ -119.285440626999986, 50.68883918500007 ], [ -119.285311527999937, 50.689017258000057 ], [ -119.285327902999967, 50.689040806000079 ], [ -119.285245114999938, 50.689157103000078 ], [ -119.285180082999943, 50.689248443000103 ], [ -119.285183661999966, 50.689341585000101 ], [ -119.285134090999975, 50.689555163000108 ], [ -119.285134136999957, 50.689564197000053 ], [ -119.28513697899993, 50.690426324000057 ], [ -119.285160858999944, 50.692589379000047 ], [ -119.285088658999882, 50.692589620000064 ], [ -119.283362206999954, 50.692594602000064 ], [ -119.28251903200001, 50.692600556000087 ], [ -119.282383741999936, 50.69254458000006 ], [ -119.282282221999964, 50.692443693000058 ], [ -119.282227961999965, 50.692047016000039 ], [ -119.282170018, 50.691930728000102 ], [ -119.282071826, 50.6919022330001 ], [ -119.281974052999956, 50.691937847000133 ], [ -119.281147861999955, 50.692532215000028 ], [ -119.280968013999939, 50.692602554000104 ], [ -119.280965402999954, 50.692602719000092 ], [ -119.280748499999959, 50.692615439000051 ], [ -119.280482894999949, 50.692631033000076 ], [ -119.280222006999935, 50.692634212000101 ], [ -119.280111206999933, 50.692643047000068 ], [ -119.279912711999884, 50.692658924000114 ], [ -119.279830300999933, 50.69266552700001 ], [ -119.279765584999979, 50.692670717000034 ], [ -119.279419728999983, 50.692766241000044 ], [ -119.277783949999957, 50.69312401800002 ], [ -119.277446923999946, 50.693189362000062 ], [ -119.277078067999966, 50.693201390000112 ], [ -119.276825894999945, 50.693166429000051 ], [ -119.276166592999957, 50.693075023000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "136.2", "sL_BldgLoss": "136.2", "sL_StrLoss": "136.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC6D30370CD85DC04A9AFD8963514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.375100806999939, 50.637945888000097 ], [ -119.375391597, 50.635978280000103 ], [ -119.373235382999951, 50.635849741000101 ], [ -119.373394052999942, 50.634776382000048 ], [ -119.373175353999954, 50.634763342000028 ], [ -119.373248709999928, 50.634267110000067 ], [ -119.37740670599996, 50.634266806 ], [ -119.377406168, 50.636148938000041 ], [ -119.377406166999961, 50.636160835000055 ], [ -119.377405641999971, 50.638083240000029 ], [ -119.375100806999939, 50.637945888000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34378583", "BldgCostT": "22238333", "sL_LossRatio": "1", "sL_AssetLoss": "2264", "sL_BldgLoss": "2264", "sL_StrLoss": "2264", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F10D720C2D55DC0871854C0E2544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.332451638999927, 50.665705880000132 ], [ -119.332496454999955, 50.665404805000094 ], [ -119.332136544999983, 50.665412011000072 ], [ -119.332043025999909, 50.663525042000096 ], [ -119.332778430999937, 50.663510317000032 ], [ -119.332818008999951, 50.663244402000025 ], [ -119.332759110999987, 50.663240870000038 ], [ -119.332029668999979, 50.66325547600011 ], [ -119.331976234999928, 50.66217720700007 ], [ -119.332254905999889, 50.662171628000138 ], [ -119.332364120999941, 50.661437851000088 ], [ -119.332360263999988, 50.66136001500012 ], [ -119.332375751999948, 50.661359705000109 ], [ -119.332634045999924, 50.659624212000033 ], [ -119.33482780599995, 50.659755723000082 ], [ -119.334824627999978, 50.65969163900008 ], [ -119.335248712999956, 50.659683138000013 ], [ -119.335235335999968, 50.659413571000094 ], [ -119.33650758499999, 50.659388059000044 ], [ -119.336530904999947, 50.659857789000036 ], [ -119.33826999800003, 50.659961985000109 ], [ -119.337900339999976, 50.662447801000035 ], [ -119.338894903, 50.662507376000065 ], [ -119.339016950999948, 50.661686564000064 ], [ -119.339407924999989, 50.661709981000051 ], [ -119.339601798999979, 50.660405974000049 ], [ -119.340828171999988, 50.660479418000136 ], [ -119.341029609999936, 50.659124203000097 ], [ -119.343490686999928, 50.659271550000085 ], [ -119.343786893999962, 50.657277863000054 ], [ -119.349422636000014, 50.657615072000098 ], [ -119.34900049499997, 50.660458729 ], [ -119.352379936999938, 50.660660795000119 ], [ -119.352145037999932, 50.662243788000104 ], [ -119.355042063000013, 50.662416926000098 ], [ -119.354885664, 50.663471296000075 ], [ -119.354252570999975, 50.663472195000082 ], [ -119.348840817999957, 50.663479737000067 ], [ -119.348776140999917, 50.663479825000074 ], [ -119.343273073999981, 50.663487221000054 ], [ -119.342827703999944, 50.663487792000048 ], [ -119.342595906, 50.663478510000061 ], [ -119.342419421, 50.663508510000085 ], [ -119.341787588999949, 50.663885689000054 ], [ -119.341463921999946, 50.664150603000067 ], [ -119.340957795999913, 50.664494697000073 ], [ -119.340483813999953, 50.664890405000094 ], [ -119.339701475999973, 50.665450688000057 ], [ -119.339521194000014, 50.665579794000053 ], [ -119.338773704999966, 50.666045796000091 ], [ -119.337125824999973, 50.666992797000098 ], [ -119.337086109999973, 50.667009836000105 ], [ -119.336255483999949, 50.66736650600005 ], [ -119.335737070999969, 50.667643866000056 ], [ -119.335663901999979, 50.667682998000039 ], [ -119.335184911999974, 50.668035907000089 ], [ -119.33406383199997, 50.668927003000057 ], [ -119.333467505999963, 50.669400992000078 ], [ -119.333209536999945, 50.669636030000042 ], [ -119.33304468099999, 50.669786204000069 ], [ -119.332403802999977, 50.670442504000079 ], [ -119.332124525999944, 50.670618899000075 ], [ -119.33195299499998, 50.670672686000053 ], [ -119.331683607999949, 50.670715208000026 ], [ -119.328172207999955, 50.670786995000093 ], [ -119.32782114199992, 50.670824646000014 ], [ -119.328063601999972, 50.669197030000035 ], [ -119.328834703999973, 50.669243283000093 ], [ -119.328985615999926, 50.668230049000101 ], [ -119.330627605999908, 50.668328521000056 ], [ -119.331030775999977, 50.665620690000083 ], [ -119.332451638999927, 50.665705880000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "25732250", "BldgCostT": "16955000", "sL_LossRatio": "1", "sL_AssetLoss": "1817.1", "sL_BldgLoss": "1817.1", "sL_StrLoss": "1817.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008134AD5E0FCF5DC060A0D6FAC3554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.227692869999942, 50.669584290000046 ], [ -119.227696366999965, 50.668101182000029 ], [ -119.227696868999942, 50.667885231000071 ], [ -119.227698165999968, 50.667327259000025 ], [ -119.227700807999923, 50.666212499000054 ], [ -119.227691690999947, 50.665153402000108 ], [ -119.227690376999988, 50.66514625000012 ], [ -119.22763590299995, 50.664854894000086 ], [ -119.227549191999969, 50.664699208000108 ], [ -119.227524097999989, 50.664654096000127 ], [ -119.22713848799998, 50.664251606000093 ], [ -119.226574307999925, 50.663835483000085 ], [ -119.22623722499999, 50.663610816000102 ], [ -119.226148084, 50.663551402000124 ], [ -119.226123484, 50.663532816000071 ], [ -119.227667717999964, 50.663520469000062 ], [ -119.230909847, 50.663491490000119 ], [ -119.230994072999962, 50.663559388000053 ], [ -119.231015704999948, 50.663558776000031 ], [ -119.230785439000016, 50.665082444000078 ], [ -119.232449468999945, 50.665183722000052 ], [ -119.23241393699999, 50.665418890000097 ], [ -119.235187597, 50.66558764800007 ], [ -119.235123514999927, 50.666011935000043 ], [ -119.235930603999975, 50.666061028000087 ], [ -119.235920775999944, 50.666126101000046 ], [ -119.236340295, 50.666151617000018 ], [ -119.236302106999958, 50.66640450400007 ], [ -119.236396011999958, 50.66641021600006 ], [ -119.236330610999985, 50.666843302000096 ], [ -119.23704912, 50.666886998000017 ], [ -119.236946006, 50.66756988200008 ], [ -119.237150163999971, 50.667582298000163 ], [ -119.236788078999922, 50.669980136000092 ], [ -119.23679565499998, 50.669979992000052 ], [ -119.23684655299995, 50.669642946000067 ], [ -119.238276886999969, 50.669729915000055 ], [ -119.238289589999908, 50.669645779000071 ], [ -119.243926086, 50.669988315000047 ], [ -119.243912578999968, 50.670077847000108 ], [ -119.24478256499998, 50.670130691000047 ], [ -119.244243021999964, 50.673707463000056 ], [ -119.242851282999965, 50.673622924000021 ], [ -119.242786977999941, 50.674049095000058 ], [ -119.24150207699995, 50.673971030000104 ], [ -119.24125799799999, 50.675588226000109 ], [ -119.23950087299994, 50.67548144700006 ], [ -119.239382012999954, 50.676268728000096 ], [ -119.239326672999965, 50.676635268000091 ], [ -119.239026777999982, 50.676617041000029 ], [ -119.239032415999958, 50.676121703000099 ], [ -119.23495198699996, 50.674389217000112 ], [ -119.233375921999979, 50.673214914000084 ], [ -119.232774471999903, 50.67274988500008 ], [ -119.230196291999931, 50.670756402000052 ], [ -119.22919580699994, 50.67001868800002 ], [ -119.22882991299997, 50.669851996000077 ], [ -119.228358607999951, 50.669715102000019 ], [ -119.227692869999942, 50.669584290000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7850000", "BldgCostT": "5150000", "sL_LossRatio": "1", "sL_AssetLoss": "748", "sL_BldgLoss": "748", "sL_StrLoss": "748", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000076C0F9FD30D75DC01A6E9FD99E544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.363624980999987, 50.661324084000057 ], [ -119.363704014999897, 50.660790549000062 ], [ -119.363294615999962, 50.660766118 ], [ -119.363441063999929, 50.659777516000148 ], [ -119.363179679999931, 50.659761917000019 ], [ -119.36370958699996, 50.656184517000106 ], [ -119.36584508, 50.656311944000073 ], [ -119.365843340999916, 50.659772673000077 ], [ -119.365841615999926, 50.663235207000071 ], [ -119.365841494999927, 50.663436603000022 ], [ -119.365460169999949, 50.663447775000115 ], [ -119.365173306999964, 50.663456204000042 ], [ -119.36190794699999, 50.663461086000062 ], [ -119.359219202999938, 50.663465044000141 ], [ -119.358271133999935, 50.663466430000014 ], [ -119.355227074999931, 50.663470810000035 ], [ -119.35547432599995, 50.661803840000054 ], [ -119.357265714, 50.661910858000034 ], [ -119.357279247999912, 50.661819582000113 ], [ -119.360272953999981, 50.661998360000069 ], [ -119.360387046999932, 50.661228551000114 ], [ -119.361235, 50.661279174000093 ], [ -119.361243208999952, 50.661223771000124 ], [ -119.362851789999922, 50.661319786000014 ], [ -119.362857935, 50.661278308000078 ], [ -119.363624980999987, 50.661324084000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "266092863", "BldgCostT": "174866935", "sL_LossRatio": "0.998378244279917", "sL_AssetLoss": "5530.426", "sL_BldgLoss": "5521.457", "sL_StrLoss": "5518.2", "sL_NStrLoss": "3.257", "sL_ContLoss": "8.969", "geom_point": "0101000020E610000042749D8005D25DC04857D19BE1584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.279373005999943, 50.696204882000096 ], [ -119.279375193999925, 50.696076008000048 ], [ -119.277886097999954, 50.696062710000099 ], [ -119.27785647499999, 50.695155809000056 ], [ -119.277840651999966, 50.694670368000068 ], [ -119.277839081999957, 50.694623407000051 ], [ -119.277829350999966, 50.694489939000078 ], [ -119.277771623999939, 50.693698946000104 ], [ -119.277841365, 50.693641798000073 ], [ -119.277870716999956, 50.693474841000089 ], [ -119.277783949999957, 50.69312401800002 ], [ -119.279419728999983, 50.692766241000044 ], [ -119.279765584999979, 50.692670717000034 ], [ -119.279830300999933, 50.69266552700001 ], [ -119.279912711999884, 50.692658924000114 ], [ -119.280111206999933, 50.692643047000068 ], [ -119.280222006999935, 50.692634212000101 ], [ -119.280482894999949, 50.692631033000076 ], [ -119.280748499999959, 50.692615439000051 ], [ -119.280965402999954, 50.692602719000092 ], [ -119.280968013999939, 50.692602554000104 ], [ -119.281147861999955, 50.692532215000028 ], [ -119.281974052999956, 50.691937847000133 ], [ -119.282071826, 50.6919022330001 ], [ -119.282170018, 50.691930728000102 ], [ -119.282227961999965, 50.692047016000039 ], [ -119.282282221999964, 50.692443693000058 ], [ -119.282383741999936, 50.69254458000006 ], [ -119.28251903200001, 50.692600556000087 ], [ -119.283362206999954, 50.692594602000064 ], [ -119.285088658999882, 50.692589620000064 ], [ -119.285160858999944, 50.692589379000047 ], [ -119.285164505999944, 50.693585918000032 ], [ -119.285165593999963, 50.694028434000124 ], [ -119.285093106999966, 50.69403001000007 ], [ -119.285107740999962, 50.696236984000038 ], [ -119.285107787999934, 50.696246017000121 ], [ -119.284994351999913, 50.696243622000026 ], [ -119.283733407999932, 50.696217186000126 ], [ -119.283205790999943, 50.696216548000059 ], [ -119.282527098999964, 50.696215712 ], [ -119.28135669299995, 50.696211787000081 ], [ -119.279373005999943, 50.696204882000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "129791001", "BldgCostT": "81965001", "sL_LossRatio": "0.999482141286103", "sL_AssetLoss": "5194.467", "sL_BldgLoss": "5191.777", "sL_StrLoss": "5190.8", "sL_NStrLoss": "0.977", "sL_ContLoss": "2.69", "geom_point": "0101000020E610000083508458A6D15DC05182D5C35D594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.272187302999896, 50.698772695000081 ], [ -119.272198920000022, 50.697928904000058 ], [ -119.273623523, 50.697993308000051 ], [ -119.273606047999934, 50.697172852000037 ], [ -119.273604096999961, 50.697080804000073 ], [ -119.27505938899999, 50.697054098000073 ], [ -119.276457883999925, 50.697026803 ], [ -119.276472578, 50.696531401000037 ], [ -119.27649940099991, 50.696059311000099 ], [ -119.27650244199998, 50.695848325000092 ], [ -119.276516483999941, 50.694865590000084 ], [ -119.277679476999964, 50.694624590000025 ], [ -119.277824602999914, 50.694623512000106 ], [ -119.277839081999957, 50.694623407000051 ], [ -119.277840651999966, 50.694670368000068 ], [ -119.27785647499999, 50.695155809000056 ], [ -119.277886097999954, 50.696062710000099 ], [ -119.277882102000021, 50.697037005000013 ], [ -119.277856736999922, 50.698934269000127 ], [ -119.277856005999951, 50.698991603000138 ], [ -119.279339898999979, 50.698992799000031 ], [ -119.279342953999958, 50.699453164000033 ], [ -119.279345596999946, 50.699845890000084 ], [ -119.279344010999978, 50.69989226500013 ], [ -119.278458565999955, 50.699888210000047 ], [ -119.277873137999961, 50.699889733000113 ], [ -119.27648523199997, 50.699884601000058 ], [ -119.274842767999957, 50.699880781000068 ], [ -119.273600355, 50.699877675000067 ], [ -119.272173309999943, 50.699881834000074 ], [ -119.272175691999934, 50.699835001000054 ], [ -119.272181869999955, 50.699268596000131 ], [ -119.272187302999896, 50.698772695000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021429", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "795117922", "BldgCostT": "502553805", "sL_LossRatio": "0.994060167997261", "sL_AssetLoss": "19072.93", "sL_BldgLoss": "18959.64", "sL_StrLoss": "18918.6", "sL_NStrLoss": "41.04", "sL_ContLoss": "113.29", "geom_point": "0101000020E61000000F1F0B7628D15DC0041535FB30594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.262096789999987, 50.699845198000091 ], [ -119.262094597999976, 50.698838908000077 ], [ -119.262094686999916, 50.69855471100005 ], [ -119.262093519999951, 50.698115756000043 ], [ -119.262092617999912, 50.697765008000076 ], [ -119.262092775, 50.697650395000046 ], [ -119.262093116999949, 50.697072514000133 ], [ -119.26209438799998, 50.69468181100013 ], [ -119.262519390999941, 50.694504589000118 ], [ -119.263049714999951, 50.694394099000156 ], [ -119.263562582999924, 50.69438 ], [ -119.263642632999961, 50.69436951900007 ], [ -119.264510295999983, 50.694256016000075 ], [ -119.264668498999939, 50.694216211000018 ], [ -119.265027921999888, 50.694125809000091 ], [ -119.265357993999956, 50.69398339 ], [ -119.265834485999932, 50.693708321000059 ], [ -119.266094997999957, 50.693557900000016 ], [ -119.266248752, 50.693493195000066 ], [ -119.266462602999923, 50.693403182000104 ], [ -119.266878933, 50.69333097300008 ], [ -119.26780311399996, 50.693382373000091 ], [ -119.268143463999976, 50.693410132000096 ], [ -119.268471480999963, 50.693427837000087 ], [ -119.268843467999886, 50.693462740000051 ], [ -119.269168040999944, 50.693482984000049 ], [ -119.269910597999967, 50.69346474000006 ], [ -119.270066127999968, 50.69344618500002 ], [ -119.270351595999969, 50.693419560000052 ], [ -119.270561879999931, 50.693391333000072 ], [ -119.271133790999968, 50.693555533000087 ], [ -119.271310641999918, 50.693644159 ], [ -119.271618376999925, 50.693868477000109 ], [ -119.271797564999957, 50.694124753000082 ], [ -119.271899678999915, 50.694600139000023 ], [ -119.272028122999956, 50.694900273000059 ], [ -119.272321942999938, 50.695194762000028 ], [ -119.272819508999959, 50.695693418000054 ], [ -119.27310873299993, 50.695832720000077 ], [ -119.273965956, 50.696027084000058 ], [ -119.274050598999963, 50.69601340600012 ], [ -119.274100079, 50.696005416000048 ], [ -119.27436345199996, 50.69588146800006 ], [ -119.2747871399999, 50.695618348000039 ], [ -119.274856995999983, 50.695532329000052 ], [ -119.274976306999974, 50.695239978000075 ], [ -119.275375017999977, 50.695020385000134 ], [ -119.27561020499999, 50.694950686000034 ], [ -119.275795984999903, 50.694916805000084 ], [ -119.276516483999941, 50.694865590000084 ], [ -119.27650244199998, 50.695848325000092 ], [ -119.27649940099991, 50.696059311000099 ], [ -119.276472578, 50.696531401000037 ], [ -119.276457883999925, 50.697026803 ], [ -119.27505938899999, 50.697054098000073 ], [ -119.273604096999961, 50.697080804000073 ], [ -119.273606047999934, 50.697172852000037 ], [ -119.273623523, 50.697993308000051 ], [ -119.272198920000022, 50.697928904000058 ], [ -119.272187302999896, 50.698772695000081 ], [ -119.272181869999955, 50.699268596000131 ], [ -119.272175691999934, 50.699835001000054 ], [ -119.272173309999943, 50.699881834000074 ], [ -119.271450787999953, 50.69992379400005 ], [ -119.270712557999957, 50.700007911000078 ], [ -119.26964551099995, 50.70012949300007 ], [ -119.269581945999946, 50.700128051000014 ], [ -119.269401194999944, 50.700123924000074 ], [ -119.269378914999933, 50.700123401000106 ], [ -119.269160201999981, 50.700089280000071 ], [ -119.269132782999989, 50.700084996000037 ], [ -119.268815964999959, 50.700007773000046 ], [ -119.268588987999976, 50.699952455000052 ], [ -119.268407746999955, 50.69990827800008 ], [ -119.268394295999968, 50.699904979000046 ], [ -119.268099392999943, 50.699879014000054 ], [ -119.26802987399999, 50.699878940000097 ], [ -119.268001558999956, 50.699878927000093 ], [ -119.267477622999962, 50.699878654000024 ], [ -119.266516944, 50.699890593000077 ], [ -119.265595088999959, 50.699895771000051 ], [ -119.264366181999918, 50.69988744400014 ], [ -119.263908606999976, 50.699878223000049 ], [ -119.26209447699992, 50.699892947000116 ], [ -119.262096789999987, 50.699845198000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021430", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "418645386", "BldgCostT": "286302079", "sL_LossRatio": "0.999760080373075", "sL_AssetLoss": "4668.23", "sL_BldgLoss": "4667.11", "sL_StrLoss": "4666.7", "sL_NStrLoss": "0.41", "sL_ContLoss": "1.12", "geom_point": "0101000020E610000042A4B63FDDD15DC071CE36D47B594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.278762390999958, 50.701407702000019 ], [ -119.278572987999937, 50.701105694000013 ], [ -119.278440426999921, 50.701105288000051 ], [ -119.277080821999974, 50.701101019000049 ], [ -119.275494873999975, 50.701096027000112 ], [ -119.27485370699999, 50.701094001000087 ], [ -119.274851234999971, 50.700818887000061 ], [ -119.274843865999983, 50.700000357000114 ], [ -119.274842767999957, 50.699880781000068 ], [ -119.27648523199997, 50.699884601000058 ], [ -119.277873137999961, 50.699889733000113 ], [ -119.278458565999955, 50.699888210000047 ], [ -119.279344010999978, 50.69989226500013 ], [ -119.279345596999946, 50.699845890000084 ], [ -119.279342953999958, 50.699453164000033 ], [ -119.279339898999979, 50.698992799000031 ], [ -119.277856005999951, 50.698991603000138 ], [ -119.277856736999922, 50.698934269000127 ], [ -119.277882102000021, 50.697037005000013 ], [ -119.277886097999954, 50.696062710000099 ], [ -119.279375193999925, 50.696076008000048 ], [ -119.279373005999943, 50.696204882000096 ], [ -119.28135669299995, 50.696211787000081 ], [ -119.281361099999941, 50.69718749400004 ], [ -119.281363498999951, 50.697515208 ], [ -119.281367226999947, 50.698018905000048 ], [ -119.281351886999971, 50.699827102000086 ], [ -119.28078399899999, 50.69984698800004 ], [ -119.2808243699999, 50.699884867000051 ], [ -119.281351059999977, 50.699872973000048 ], [ -119.281352843999969, 50.699998670000113 ], [ -119.281357103999966, 50.700294809000098 ], [ -119.281271806999968, 50.7003320930001 ], [ -119.281788795999944, 50.700850495000061 ], [ -119.281891182999956, 50.700955091000033 ], [ -119.280777396999923, 50.701397699000047 ], [ -119.279327101999925, 50.701968731000115 ], [ -119.279315001999962, 50.701973487000039 ], [ -119.279276697999975, 50.701939328000066 ], [ -119.279210800999962, 50.701880484000085 ], [ -119.278762390999958, 50.701407702000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "269752518", "BldgCostT": "152816754", "sL_LossRatio": "0.983743724311676", "sL_AssetLoss": "8303.87", "sL_BldgLoss": "8168.88", "sL_StrLoss": "8120", "sL_NStrLoss": "48.88", "sL_ContLoss": "134.99", "geom_point": "0101000020E61000001FDA53B4AAD15DC0A31A28B6235A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26697126199997, 50.705486430000114 ], [ -119.268383412999967, 50.703761787000118 ], [ -119.268746517, 50.703410163000065 ], [ -119.26858080699995, 50.703300890000023 ], [ -119.268594430999912, 50.703290996000071 ], [ -119.269040875999977, 50.702966901000082 ], [ -119.269517458999957, 50.702712367000082 ], [ -119.270045274000012, 50.702505171000084 ], [ -119.270643152999952, 50.702342801000043 ], [ -119.271264683999931, 50.702231492000124 ], [ -119.271733593999926, 50.702202277000019 ], [ -119.272014495999926, 50.702184791000015 ], [ -119.275600071999961, 50.702168666000034 ], [ -119.277620004999974, 50.702173399000131 ], [ -119.277620594999945, 50.70221251000001 ], [ -119.277621683999911, 50.702285413000062 ], [ -119.27790590099994, 50.702273171000073 ], [ -119.277979795999926, 50.702270000000105 ], [ -119.278432209999963, 50.702213396000062 ], [ -119.278938905999937, 50.702108711000065 ], [ -119.279315001999962, 50.701973487000039 ], [ -119.279327101999925, 50.701968731000115 ], [ -119.280777396999923, 50.701397699000047 ], [ -119.281891182999956, 50.700955091000033 ], [ -119.283799558999988, 50.70019277800008 ], [ -119.283910376999927, 50.700148491000057 ], [ -119.284451583999939, 50.700003533000064 ], [ -119.284589392999962, 50.699966581000126 ], [ -119.285097306999972, 50.699872703000047 ], [ -119.285175317999958, 50.699863770000036 ], [ -119.286174001999882, 50.699761694000081 ], [ -119.288285797999947, 50.6997699530001 ], [ -119.289140533999955, 50.699770488000077 ], [ -119.289314423999897, 50.69977061 ], [ -119.289305801999944, 50.69989557000013 ], [ -119.289301070999954, 50.6999641190001 ], [ -119.289299838999952, 50.699981777000112 ], [ -119.289321447999953, 50.700009942000108 ], [ -119.28951175099999, 50.700258150000067 ], [ -119.289684268999949, 50.70048316 ], [ -119.289815322999971, 50.700682959000069 ], [ -119.289827433999974, 50.700701413000047 ], [ -119.289918542999914, 50.700840310000075 ], [ -119.289924001999978, 50.700848587000074 ], [ -119.290526809999932, 50.701621191000093 ], [ -119.288971578999949, 50.702199700000051 ], [ -119.288440381000015, 50.701661496000064 ], [ -119.287994706999896, 50.70183398800004 ], [ -119.286880303999922, 50.702272106000137 ], [ -119.285868109999925, 50.70266866 ], [ -119.284884607999956, 50.703054001000112 ], [ -119.284842553999979, 50.703096695000077 ], [ -119.284825896999905, 50.703113593000062 ], [ -119.284842804999982, 50.703190385000077 ], [ -119.284924780999944, 50.70351660700009 ], [ -119.284928094999913, 50.703731615000073 ], [ -119.284835705999981, 50.703948886000077 ], [ -119.284682393, 50.704060514000076 ], [ -119.283776485999951, 50.704435405000019 ], [ -119.282912300999911, 50.704770305000075 ], [ -119.282729117999963, 50.704805310000026 ], [ -119.282475716999954, 50.704806199000075 ], [ -119.281988305999974, 50.704754210000054 ], [ -119.281809883, 50.704785886000067 ], [ -119.281481700999933, 50.704905901000089 ], [ -119.281176191999961, 50.704570796000056 ], [ -119.281086955999939, 50.704472739000096 ], [ -119.280846121999971, 50.704208071000046 ], [ -119.280658290999938, 50.704001690000041 ], [ -119.280365300999932, 50.704170793000095 ], [ -119.279722318999973, 50.704425393000108 ], [ -119.275500786999913, 50.70609679900015 ], [ -119.27191195499995, 50.707591512000086 ], [ -119.271841910999953, 50.707620746000039 ], [ -119.270940891999899, 50.707129587000097 ], [ -119.270534296, 50.706852300000044 ], [ -119.269961485999886, 50.706394688000032 ], [ -119.26871371599999, 50.705397802000093 ], [ -119.26783779199998, 50.706017102000033 ], [ -119.267475209999986, 50.706346095000079 ], [ -119.267300421999934, 50.706637800000053 ], [ -119.267159021999973, 50.706981203000112 ], [ -119.267058906999978, 50.707580590000092 ], [ -119.267201290999978, 50.707674889000025 ], [ -119.267247797999943, 50.707772507000051 ], [ -119.267248179999982, 50.707991705000076 ], [ -119.267250199, 50.709193814000095 ], [ -119.267182989999952, 50.709356702000029 ], [ -119.265929201999924, 50.711049388000049 ], [ -119.265714687999889, 50.711216799000056 ], [ -119.26403729099998, 50.71122180600009 ], [ -119.263660094, 50.711155702000049 ], [ -119.264000982999946, 50.71082888900002 ], [ -119.264088287999954, 50.710703408000057 ], [ -119.264108506999932, 50.71054038200009 ], [ -119.264094387999947, 50.710345136000086 ], [ -119.264079409999937, 50.710137995000089 ], [ -119.26407599199996, 50.709762420000082 ], [ -119.264073338999964, 50.709465839000075 ], [ -119.264059824999933, 50.707972630000064 ], [ -119.264059034999917, 50.707890885000054 ], [ -119.26405611099996, 50.707059668000078 ], [ -119.264720879999942, 50.706897778000041 ], [ -119.26523935499992, 50.706715283000058 ], [ -119.265660568999962, 50.706516993000072 ], [ -119.266142858999928, 50.706243902000068 ], [ -119.266632860999948, 50.705853045000033 ], [ -119.26697126199997, 50.705486430000114 ] ], [ [ -119.277538595999914, 50.703998840000061 ], [ -119.277512464999987, 50.703459689000098 ], [ -119.277936960999938, 50.70345139100003 ], [ -119.277923893999969, 50.70318181600009 ], [ -119.277074905999953, 50.70319841000002 ], [ -119.277061842999899, 50.702928834 ], [ -119.275788363999979, 50.702953713000056 ], [ -119.275814473999944, 50.703492864000097 ], [ -119.274651766, 50.70351556700011 ], [ -119.274611095999973, 50.703786192000052 ], [ -119.276252029999952, 50.703754150000066 ], [ -119.276278145999953, 50.704293300000103 ], [ -119.277127156999882, 50.70427671200008 ], [ -119.27711409199999, 50.704007136000044 ], [ -119.277538595999914, 50.703998840000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "338022636", "BldgCostT": "210874711", "sL_LossRatio": "0.967043829375662", "sL_AssetLoss": "14369.602749", "sL_BldgLoss": "13896.035669", "sL_StrLoss": "13722.855769", "sL_NStrLoss": "173.1799", "sL_ContLoss": "473.56708", "geom_point": "0101000020E6100000BEA672A068D25DC061D98A0557594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.281352843999969, 50.699998670000113 ], [ -119.281351059999977, 50.699872973000048 ], [ -119.2808243699999, 50.699884867000051 ], [ -119.28078399899999, 50.69984698800004 ], [ -119.281351886999971, 50.699827102000086 ], [ -119.281367226999947, 50.698018905000048 ], [ -119.281363498999951, 50.697515208 ], [ -119.281361099999941, 50.69718749400004 ], [ -119.28135669299995, 50.696211787000081 ], [ -119.282527098999964, 50.696215712 ], [ -119.283205790999943, 50.696216548000059 ], [ -119.283733407999932, 50.696217186000126 ], [ -119.284994351999913, 50.696243622000026 ], [ -119.285107787999934, 50.696246017000121 ], [ -119.285107740999962, 50.696236984000038 ], [ -119.285093106999966, 50.69403001000007 ], [ -119.285165593999963, 50.694028434000124 ], [ -119.285182387999924, 50.696247664000076 ], [ -119.28837598899996, 50.696274451000058 ], [ -119.291691288999957, 50.696273116000071 ], [ -119.293545493999886, 50.696271188000068 ], [ -119.294479338, 50.696269252000086 ], [ -119.29547266799996, 50.696267190000093 ], [ -119.296716412999942, 50.696264595000066 ], [ -119.296720504999882, 50.696750286000082 ], [ -119.296697532999971, 50.697236149000041 ], [ -119.296752316999942, 50.697392827000066 ], [ -119.296777223999968, 50.697422135000089 ], [ -119.294061411999934, 50.697425844000044 ], [ -119.294063962999971, 50.698636324000056 ], [ -119.29168098699995, 50.698689883000092 ], [ -119.291685149000017, 50.699541791000094 ], [ -119.291677397999962, 50.699669429000046 ], [ -119.290836190999954, 50.699775714000097 ], [ -119.289314423999897, 50.69977061 ], [ -119.289140533999955, 50.699770488000077 ], [ -119.288285797999947, 50.6997699530001 ], [ -119.286174001999882, 50.699761694000081 ], [ -119.285175317999958, 50.699863770000036 ], [ -119.285097306999972, 50.699872703000047 ], [ -119.284589392999962, 50.699966581000126 ], [ -119.284451583999939, 50.700003533000064 ], [ -119.283910376999927, 50.700148491000057 ], [ -119.283799558999988, 50.70019277800008 ], [ -119.281891182999956, 50.700955091000033 ], [ -119.281788795999944, 50.700850495000061 ], [ -119.281271806999968, 50.7003320930001 ], [ -119.281357103999966, 50.700294809000098 ], [ -119.281352843999969, 50.699998670000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127276084", "BldgCostT": "72543334", "sL_LossRatio": "0.998019726569938", "sL_AssetLoss": "5514.39", "sL_BldgLoss": "5503.47", "sL_StrLoss": "5499.5", "sL_NStrLoss": "3.97", "sL_ContLoss": "10.92", "geom_point": "0101000020E6100000372A0517CAD25DC01FD287B2E0584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.296720504999882, 50.696750286000082 ], [ -119.296716412999942, 50.696264595000066 ], [ -119.29547266799996, 50.696267190000093 ], [ -119.294479338, 50.696269252000086 ], [ -119.293545493999886, 50.696271188000068 ], [ -119.291691288999957, 50.696273116000071 ], [ -119.28837598899996, 50.696274451000058 ], [ -119.285182387999924, 50.696247664000076 ], [ -119.285165593999963, 50.694028434000124 ], [ -119.285164505999944, 50.693585918000032 ], [ -119.285160858999944, 50.692589379000047 ], [ -119.289388150999969, 50.692590085000099 ], [ -119.289855414999948, 50.692590163000048 ], [ -119.290110075999948, 50.692590172000088 ], [ -119.291849106999962, 50.692590388000056 ], [ -119.292545444999973, 50.692590565000096 ], [ -119.293182472999931, 50.69259071700008 ], [ -119.294396137999954, 50.692590990000042 ], [ -119.294555562999932, 50.692591027000027 ], [ -119.295852716999917, 50.692591350000043 ], [ -119.29670449399994, 50.692591533000083 ], [ -119.300304778999987, 50.692593728000077 ], [ -119.30244265099995, 50.692594980000059 ], [ -119.307483005, 50.692597804000073 ], [ -119.306065716999939, 50.693493604000118 ], [ -119.301873046999987, 50.693587326000035 ], [ -119.301872825000018, 50.69359598300008 ], [ -119.298617914999966, 50.693698447000102 ], [ -119.298749639999969, 50.696412415000118 ], [ -119.29876718699991, 50.696791078000061 ], [ -119.298775444999976, 50.696969464000134 ], [ -119.298779914999926, 50.697065713000029 ], [ -119.298810360999965, 50.697563198000076 ], [ -119.297635640999928, 50.697546146000036 ], [ -119.297415057999928, 50.697514281000117 ], [ -119.296777223999968, 50.697422135000089 ], [ -119.296752316999942, 50.697392827000066 ], [ -119.296697532999971, 50.697236149000041 ], [ -119.296720504999882, 50.696750286000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "52035974", "BldgCostT": "26496913", "sL_LossRatio": "0.932183672947613", "sL_AssetLoss": "156.452", "sL_BldgLoss": "145.842", "sL_StrLoss": "142", "sL_NStrLoss": "3.842", "sL_ContLoss": "10.61", "geom_point": "0101000020E6100000FAA3A83337D35DC01392502342594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.294241593999942, 50.700124412000044 ], [ -119.294155575999952, 50.700033501000114 ], [ -119.293127098999932, 50.700031994000057 ], [ -119.292536501999933, 50.70012720000004 ], [ -119.291962107999964, 50.700270073000063 ], [ -119.291763136999933, 50.700319557000093 ], [ -119.291768858999916, 50.700129752000059 ], [ -119.29177631499995, 50.699882913000117 ], [ -119.291677397999962, 50.699669429000046 ], [ -119.291685149000017, 50.699541791000094 ], [ -119.29168098699995, 50.698689883000092 ], [ -119.294063962999971, 50.698636324000056 ], [ -119.294061411999934, 50.697425844000044 ], [ -119.296777223999968, 50.697422135000089 ], [ -119.297415057999928, 50.697514281000117 ], [ -119.297635640999928, 50.697546146000036 ], [ -119.298810360999965, 50.697563198000076 ], [ -119.298779914999926, 50.697065713000029 ], [ -119.298775444999976, 50.696969464000134 ], [ -119.29876718699991, 50.696791078000061 ], [ -119.298749639999969, 50.696412415000118 ], [ -119.298617914999966, 50.693698447000102 ], [ -119.301872825000018, 50.69359598300008 ], [ -119.301873046999987, 50.693587326000035 ], [ -119.306065716999939, 50.693493604000118 ], [ -119.306797804999988, 50.693685639000087 ], [ -119.30831566199997, 50.693649303000072 ], [ -119.312091712, 50.693558679000077 ], [ -119.312301951999984, 50.695202278000068 ], [ -119.309712034999961, 50.695046616000056 ], [ -119.309689495999976, 50.695197416999989 ], [ -119.309323771999928, 50.695175431000067 ], [ -119.309308885999968, 50.695275025000022 ], [ -119.303863877999916, 50.694947546000051 ], [ -119.303872153999947, 50.69511636400005 ], [ -119.303303043999961, 50.695127616000043 ], [ -119.303023324999941, 50.695133145000057 ], [ -119.30302865099992, 50.695241882000111 ], [ -119.303032355999932, 50.695317482000085 ], [ -119.30312779399999, 50.695323225000081 ], [ -119.302592598, 50.698900171000091 ], [ -119.301390067999961, 50.698827804000096 ], [ -119.301235493999968, 50.699860599000054 ], [ -119.300513382999924, 50.699817137000181 ], [ -119.300370206999929, 50.70077361700006 ], [ -119.299703807999919, 50.700733503000087 ], [ -119.29966199099999, 50.70101283200006 ], [ -119.295651835999976, 50.700771359000065 ], [ -119.295660312999985, 50.700944913000093 ], [ -119.295235844999937, 50.700953276000064 ], [ -119.295275342999972, 50.701761993000112 ], [ -119.294109223999953, 50.701784957000086 ], [ -119.293890365999928, 50.703245559000024 ], [ -119.29167890399998, 50.703112304000058 ], [ -119.291708822999922, 50.70212020300005 ], [ -119.29264219199996, 50.702127707000059 ], [ -119.2928197049999, 50.70211129300003 ], [ -119.292925088999979, 50.702044600000129 ], [ -119.29295849599994, 50.701897714000097 ], [ -119.292953920999949, 50.70124420300008 ], [ -119.294362117999981, 50.701247801000093 ], [ -119.294382918999958, 50.700624710000078 ], [ -119.294393397999926, 50.700175105000021 ], [ -119.294241593999942, 50.700124412000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5377167", "BldgCostT": "3236667", "sL_LossRatio": "1", "sL_AssetLoss": "245.2", "sL_BldgLoss": "245.2", "sL_StrLoss": "245.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB7DDAD1CDD55DC0F9DA54596B564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.33961400699998, 50.678492852000048 ], [ -119.339791836999908, 50.677297186000011 ], [ -119.338572893999938, 50.677224203000023 ], [ -119.339104967, 50.673646993000027 ], [ -119.339240735999979, 50.673655123000117 ], [ -119.339312185999972, 50.6731746970001 ], [ -119.339647262999975, 50.673194760000094 ], [ -119.339653070999987, 50.673155705000099 ], [ -119.340683117999916, 50.673217374000046 ], [ -119.340704728999967, 50.67307202900006 ], [ -119.342804375999961, 50.673197705000092 ], [ -119.342806088999964, 50.67485402700003 ], [ -119.342806114999959, 50.674873199000075 ], [ -119.342818691999952, 50.675771264000097 ], [ -119.342819200999926, 50.675807579000079 ], [ -119.342437575999895, 50.675985893000096 ], [ -119.341579408999934, 50.676659487000101 ], [ -119.340634578999982, 50.67703839700004 ], [ -119.340193591999935, 50.677541114000086 ], [ -119.33961400699998, 50.678492852000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4792917", "BldgCostT": "3041667", "sL_LossRatio": "0.999712311191095", "sL_AssetLoss": "952.418", "sL_BldgLoss": "952.144", "sL_StrLoss": "951.3", "sL_NStrLoss": "0.844", "sL_ContLoss": "0.274", "geom_point": "0101000020E6100000C53071F56DD55DC023AAA6DADD574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.331750602999989, 50.688065394000084 ], [ -119.332283346999986, 50.684488262000102 ], [ -119.334908620999911, 50.684645552000084 ], [ -119.334647480999976, 50.685036693000022 ], [ -119.334780985999942, 50.685412699000061 ], [ -119.335138903999948, 50.684667893000054 ], [ -119.335145132, 50.684659719000123 ], [ -119.337922417999906, 50.68482604200009 ], [ -119.337390117999945, 50.688403198000053 ], [ -119.331750602999989, 50.688065394000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "151593917", "BldgCostT": "95176667", "sL_LossRatio": "0.99825108852635", "sL_AssetLoss": "9354.39", "sL_BldgLoss": "9338.03", "sL_StrLoss": "9332.1", "sL_NStrLoss": "5.93", "sL_ContLoss": "16.36", "geom_point": "0101000020E6100000BE1E85EB51D45DC0CCEDF35290574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.285160858999944, 50.692589379000047 ], [ -119.28513697899993, 50.690426324000057 ], [ -119.285134136999957, 50.689564197000053 ], [ -119.285134090999975, 50.689555163000108 ], [ -119.285183661999966, 50.689341585000101 ], [ -119.285180082999943, 50.689248443000103 ], [ -119.285245114999938, 50.689157103000078 ], [ -119.285327902999967, 50.689040806000079 ], [ -119.285311527999937, 50.689017258000057 ], [ -119.285440626999986, 50.68883918500007 ], [ -119.285710229999921, 50.688626264000114 ], [ -119.286266765999954, 50.688426253000038 ], [ -119.287165593999987, 50.688103214000122 ], [ -119.288155808999974, 50.687599900000109 ], [ -119.288768093999948, 50.687254202000119 ], [ -119.288946714999923, 50.687116096000111 ], [ -119.289117828999977, 50.687031759 ], [ -119.290024892999938, 50.686584715000052 ], [ -119.291710413999951, 50.685702803000055 ], [ -119.292272435999962, 50.685414770000115 ], [ -119.292480796999925, 50.685307987000037 ], [ -119.292916791999986, 50.68511330700003 ], [ -119.29354440899999, 50.684883099000068 ], [ -119.295270292999987, 50.684428359000037 ], [ -119.296665996999977, 50.684060597000041 ], [ -119.298274017999987, 50.683599899000043 ], [ -119.29864650199994, 50.683467987000022 ], [ -119.298755090999947, 50.683683006000074 ], [ -119.298744722999956, 50.68403789200007 ], [ -119.298727097000011, 50.685276591000012 ], [ -119.299832550999966, 50.6852713850001 ], [ -119.299894307999978, 50.685271082000064 ], [ -119.300738657999915, 50.685265020000038 ], [ -119.30108621299999, 50.685262495000131 ], [ -119.301091188999962, 50.68419256600005 ], [ -119.301097480999942, 50.682843624000029 ], [ -119.301102115999939, 50.681857302000083 ], [ -119.301703383999921, 50.681374695000045 ], [ -119.302058182999957, 50.681170495000046 ], [ -119.302282685999927, 50.681067067000157 ], [ -119.303868292999979, 50.68033651100005 ], [ -119.306591520999987, 50.679435704000078 ], [ -119.307064921999924, 50.679236105000015 ], [ -119.308089689999946, 50.678803991000066 ], [ -119.308446263999926, 50.678666690000085 ], [ -119.308847010999941, 50.678512371000089 ], [ -119.308856177999957, 50.678508835000031 ], [ -119.310825496999954, 50.677750396000079 ], [ -119.311229003, 50.677524697000109 ], [ -119.311339077999961, 50.677377895000035 ], [ -119.311615924999955, 50.676857708000036 ], [ -119.311714776999935, 50.676721870000065 ], [ -119.311734101999946, 50.676695333000055 ], [ -119.311853782999904, 50.676530897000063 ], [ -119.312143183999979, 50.676259592000079 ], [ -119.312506984999942, 50.676042398000064 ], [ -119.312865371999948, 50.675860186000136 ], [ -119.313371914999934, 50.675602589000029 ], [ -119.313918710999957, 50.675369284000112 ], [ -119.314450995999977, 50.675258807000027 ], [ -119.31496357899999, 50.675152413000056 ], [ -119.315949500999977, 50.674863295000073 ], [ -119.319402820999969, 50.673958353000046 ], [ -119.32007788099996, 50.673781410000103 ], [ -119.321217985999951, 50.673482605000068 ], [ -119.321990983999925, 50.673140520000047 ], [ -119.323411966999956, 50.672511688000085 ], [ -119.327532971999972, 50.672758964000074 ], [ -119.32782114199992, 50.670824646000014 ], [ -119.328172207999955, 50.670786995000093 ], [ -119.331683607999949, 50.670715208000026 ], [ -119.33195299499998, 50.670672686000053 ], [ -119.332124525999944, 50.670618899000075 ], [ -119.332403802999977, 50.670442504000079 ], [ -119.33304468099999, 50.669786204000069 ], [ -119.333209536999945, 50.669636030000042 ], [ -119.333467505999963, 50.669400992000078 ], [ -119.33406383199997, 50.668927003000057 ], [ -119.335184911999974, 50.668035907000089 ], [ -119.335663901999979, 50.667682998000039 ], [ -119.335737070999969, 50.667643866000056 ], [ -119.336255483999949, 50.66736650600005 ], [ -119.337086109999973, 50.667009836000105 ], [ -119.337125824999973, 50.666992797000098 ], [ -119.338773704999966, 50.666045796000091 ], [ -119.339521194000014, 50.665579794000053 ], [ -119.339701475999973, 50.665450688000057 ], [ -119.340483813999953, 50.664890405000094 ], [ -119.340957795999913, 50.664494697000073 ], [ -119.341463921999946, 50.664150603000067 ], [ -119.341787588999949, 50.663885689000054 ], [ -119.342419421, 50.663508510000085 ], [ -119.342595906, 50.663478510000061 ], [ -119.342827703999944, 50.663487792000048 ], [ -119.342794515, 50.663643695000147 ], [ -119.342796137999954, 50.665230728000019 ], [ -119.34279774, 50.666780119000123 ], [ -119.340238056999951, 50.666626878000052 ], [ -119.34004407, 50.667931586000115 ], [ -119.339375780999887, 50.667891567000076 ], [ -119.33912462399995, 50.66958050300012 ], [ -119.337429780999955, 50.669478995000084 ], [ -119.33740435299994, 50.669649942000028 ], [ -119.336980496999914, 50.669624552000045 ], [ -119.336929649999931, 50.669966352000095 ], [ -119.33656225299994, 50.669944343000111 ], [ -119.336334710999964, 50.671473762000055 ], [ -119.33621294799994, 50.671466468000126 ], [ -119.335995877999949, 50.672925367000111 ], [ -119.335301707999974, 50.672883778000042 ], [ -119.335189383999989, 50.673638583000049 ], [ -119.334638531999957, 50.673605578000085 ], [ -119.33463425799999, 50.673634296000046 ], [ -119.333579088999926, 50.673571066000108 ], [ -119.333556215999963, 50.673724720000074 ], [ -119.328702380999957, 50.673433727000081 ], [ -119.328217859999924, 50.676686158000109 ], [ -119.328783492999918, 50.676720079000056 ], [ -119.328763775999931, 50.676852431000029 ], [ -119.329317983999914, 50.676885665000071 ], [ -119.329304719999982, 50.676974715000014 ], [ -119.329743976999978, 50.677001054000094 ], [ -119.329677467999929, 50.677447561000058 ], [ -119.329737407999943, 50.677451155000078 ], [ -119.329204541999971, 50.68102830400008 ], [ -119.3247662429999, 50.680762100000045 ], [ -119.324591492999915, 50.681934307000041 ], [ -119.323954494999924, 50.681896085000112 ], [ -119.32343064, 50.685409325000073 ], [ -119.323140517999931, 50.685391916000079 ], [ -119.323038660999956, 50.686074933000043 ], [ -119.321945209999924, 50.68600931200011 ], [ -119.321925212999972, 50.686143382000068 ], [ -119.322303373999958, 50.686166077000102 ], [ -119.322188207999943, 50.68693822200008 ], [ -119.322337425999976, 50.686947177000064 ], [ -119.32207512699992, 50.688705721000112 ], [ -119.323233919, 50.688775256000042 ], [ -119.322875956999923, 50.691175353000077 ], [ -119.322917573999987, 50.691177850000031 ], [ -119.323047018999944, 50.690309964000093 ], [ -119.32502234899999, 50.690428468000064 ], [ -119.32513406399994, 50.689679211000112 ], [ -119.325492265999955, 50.689700696000102 ], [ -119.325561172, 50.68923852000011 ], [ -119.32561169, 50.689241550000084 ], [ -119.325657983999989, 50.688931021000037 ], [ -119.32617082799996, 50.688961780000042 ], [ -119.326176262, 50.688925333000036 ], [ -119.331273609999954, 50.689230926000107 ], [ -119.331321837999923, 50.688907151000102 ], [ -119.336961456999987, 50.689244977000115 ], [ -119.336921436999944, 50.689513867000095 ], [ -119.337028472999961, 50.689520276000039 ], [ -119.336996579999962, 50.689734566000077 ], [ -119.338188487999957, 50.689805925000051 ], [ -119.338517599999989, 50.687594112000077 ], [ -119.338997808999949, 50.687622859000115 ], [ -119.33900918099998, 50.687546423000079 ], [ -119.33983350699999, 50.687595765000054 ], [ -119.339878257999956, 50.687294942000108 ], [ -119.340638577999954, 50.687340448000086 ], [ -119.340947585, 50.685262857000062 ], [ -119.340183602999929, 50.685217133000073 ], [ -119.340233224999935, 50.684883521000103 ], [ -119.33819116199993, 50.684761278000067 ], [ -119.338267042999931, 50.684251276000133 ], [ -119.337597077999945, 50.684211162000054 ], [ -119.33760517099995, 50.684156771000069 ], [ -119.336380442999911, 50.684083429000061 ], [ -119.336491840999926, 50.683334906000056 ], [ -119.336425494999943, 50.683330932000075 ], [ -119.33660933099992, 50.682095634000078 ], [ -119.336820113999963, 50.68202599400005 ], [ -119.337581378999943, 50.681939094000022 ], [ -119.337878183999962, 50.681671308000062 ], [ -119.338046912999971, 50.681326688000048 ], [ -119.337944688999968, 50.679862593000124 ], [ -119.338010232999977, 50.679755819000057 ], [ -119.339413657999941, 50.679839848000036 ], [ -119.339446239999958, 50.679620801000056 ], [ -119.339890199999928, 50.679428190000074 ], [ -119.340010915999969, 50.679290105000057 ], [ -119.339947700999957, 50.678572297000102 ], [ -119.340097919999934, 50.678173500000057 ], [ -119.340677691999986, 50.677316114000064 ], [ -119.341843580999949, 50.67683329700003 ], [ -119.342464406999937, 50.676227999000062 ], [ -119.342822474999963, 50.676042106000125 ], [ -119.342822586999887, 50.676050084000053 ], [ -119.342823990999946, 50.676148931000064 ], [ -119.342843376999895, 50.677533788000105 ], [ -119.342850222999971, 50.678020196000055 ], [ -119.342825240999943, 50.681779412000033 ], [ -119.342822066999958, 50.682256213000066 ], [ -119.342821888999978, 50.682283499000022 ], [ -119.342804992999959, 50.684829511000046 ], [ -119.342834493999973, 50.687596705000011 ], [ -119.342812010999936, 50.690665700000153 ], [ -119.34280090799993, 50.692605790000052 ], [ -119.339230996999973, 50.692581600000068 ], [ -119.339132862999989, 50.692581762000067 ], [ -119.334035392999922, 50.692590478000099 ], [ -119.333681725999938, 50.69259107600007 ], [ -119.333271051999972, 50.69259176900006 ], [ -119.33265271099998, 50.692592805000068 ], [ -119.331209486999953, 50.692616390000083 ], [ -119.331725172999924, 50.692927015000137 ], [ -119.331544045, 50.693168782000058 ], [ -119.331491170999954, 50.693332545000025 ], [ -119.331507225999971, 50.693559083000139 ], [ -119.331600428999963, 50.693745113000084 ], [ -119.332080083999983, 50.6942881370001 ], [ -119.332102006999918, 50.694427476000122 ], [ -119.331992163999928, 50.694553533000018 ], [ -119.331817540999978, 50.694617961000148 ], [ -119.331523126999926, 50.694502886000095 ], [ -119.331321520999936, 50.694299523000012 ], [ -119.331299384999966, 50.693970669000109 ], [ -119.331149914, 50.693617962000054 ], [ -119.330849549, 50.69328506100004 ], [ -119.330521313999938, 50.69305337 ], [ -119.330376611999952, 50.692980559000063 ], [ -119.330191354999954, 50.692887291000062 ], [ -119.33018609399997, 50.692884643000149 ], [ -119.330498193999986, 50.692432705000094 ], [ -119.330571098999911, 50.691595187000118 ], [ -119.331240909999977, 50.691140897000125 ], [ -119.331345902999942, 50.69097710400009 ], [ -119.331152216999911, 50.690189503000063 ], [ -119.331372902999973, 50.689789296000122 ], [ -119.331265405999915, 50.689638385000087 ], [ -119.330963380999918, 50.689518692000057 ], [ -119.330992378999952, 50.690948601000066 ], [ -119.330692703999915, 50.691206398000084 ], [ -119.33029050899998, 50.691367398000125 ], [ -119.330161221999901, 50.691603805000057 ], [ -119.33032321799999, 50.692058100000033 ], [ -119.330113, 50.692639208000109 ], [ -119.329962025000015, 50.692776702000117 ], [ -119.329892044999923, 50.692760247000059 ], [ -119.32947011, 50.692661038 ], [ -119.32890905, 50.692607554000034 ], [ -119.320667162999939, 50.692593195000086 ], [ -119.319739855999927, 50.692591668000063 ], [ -119.31915259499999, 50.692590072000066 ], [ -119.318716, 50.692588872000037 ], [ -119.317169960999976, 50.69259526700008 ], [ -119.316768153999959, 50.692596939000104 ], [ -119.313245922999911, 50.692611432 ], [ -119.312404197999939, 50.692614881000104 ], [ -119.310647567, 50.692622077000102 ], [ -119.309862517999989, 50.692715625000098 ], [ -119.308712692999976, 50.69295603500013 ], [ -119.307907887999974, 50.693228812000065 ], [ -119.306797804999988, 50.693685639000087 ], [ -119.306065716999939, 50.693493604000118 ], [ -119.307483005, 50.692597804000073 ], [ -119.30244265099995, 50.692594980000059 ], [ -119.300304778999987, 50.692593728000077 ], [ -119.29670449399994, 50.692591533000083 ], [ -119.295852716999917, 50.692591350000043 ], [ -119.294555562999932, 50.692591027000027 ], [ -119.294396137999954, 50.692590990000042 ], [ -119.293182472999931, 50.69259071700008 ], [ -119.292545444999973, 50.692590565000096 ], [ -119.291849106999962, 50.692590388000056 ], [ -119.290110075999948, 50.692590172000088 ], [ -119.289855414999948, 50.692590163000048 ], [ -119.289388150999969, 50.692590085000099 ], [ -119.285160858999944, 50.692589379000047 ] ], [ [ -119.305472669999943, 50.690293568000087 ], [ -119.305512000999968, 50.690030563000043 ], [ -119.305606026999897, 50.690036220000053 ], [ -119.30588799, 50.688150567000029 ], [ -119.306209181999947, 50.688169889000093 ], [ -119.306270395999917, 50.687760474000086 ], [ -119.311909681000017, 50.688099568000048 ], [ -119.311759200999958, 50.689106846000094 ], [ -119.314630212999958, 50.689279370000087 ], [ -119.314614840999965, 50.688967134000087 ], [ -119.315039195999958, 50.688958703000033 ], [ -119.31502592399994, 50.68868913400005 ], [ -119.316198733999954, 50.688665826000054 ], [ -119.316328755999947, 50.687794906000093 ], [ -119.316370185999943, 50.68779739400005 ], [ -119.316387132999949, 50.687683875000111 ], [ -119.316008961999927, 50.687661159000044 ], [ -119.316028823999943, 50.687528125000028 ], [ -119.314086010999944, 50.687411407000099 ], [ -119.314620154999915, 50.683834357000094 ], [ -119.314660644999918, 50.683836790000043 ], [ -119.31468836199997, 50.683651159000092 ], [ -119.315052204999915, 50.683673019000068 ], [ -119.315216800999977, 50.68257056699999 ], [ -119.315274975999941, 50.682574063000082 ], [ -119.315345880999985, 50.682099122000039 ], [ -119.314848504999986, 50.682069238000061 ], [ -119.315382524999904, 50.678492162000076 ], [ -119.316077113999981, 50.678533895000015 ], [ -119.31609599799998, 50.678407378000017 ], [ -119.316233263999962, 50.678415625000085 ], [ -119.31623506699999, 50.678403553000081 ], [ -119.312376172999919, 50.678171645000134 ], [ -119.312279178999944, 50.678821095000103 ], [ -119.310552837000017, 50.678717303000028 ], [ -119.310157829999966, 50.681361338000052 ], [ -119.30947051899993, 50.681320008000057 ], [ -119.309444407999976, 50.681494754000056 ], [ -119.30837150399999, 50.68143022800006 ], [ -119.308246197999949, 50.682268681000075 ], [ -119.307972457999981, 50.682252215000105 ], [ -119.307934798999895, 50.682504186000138 ], [ -119.30699792199999, 50.682447830000058 ], [ -119.306988358999931, 50.682511808000044 ], [ -119.30549155199999, 50.682421754000103 ], [ -119.305406016999953, 50.682993843000077 ], [ -119.305055771999974, 50.682972768000056 ], [ -119.305037236999951, 50.683096728000052 ], [ -119.305908057999943, 50.683149125000099 ], [ -119.305373225999944, 50.686726136000033 ], [ -119.3051625799999, 50.686713462000121 ], [ -119.304990073999974, 50.687867041000075 ], [ -119.304638177999891, 50.687845868000124 ], [ -119.304614865999937, 50.688001749000087 ], [ -119.303342731999976, 50.687925196000052 ], [ -119.303327311999979, 50.688028279000072 ], [ -119.300802139000012, 50.687876278000026 ], [ -119.30079465099999, 50.687926313000105 ], [ -119.301562745999888, 50.687972554000034 ], [ -119.301302836, 50.689709602000086 ], [ -119.305092354999914, 50.689937660000055 ], [ -119.305036978, 50.690307948000047 ], [ -119.305313577999968, 50.69032458900012 ], [ -119.305319594999929, 50.690284359000024 ], [ -119.305472669999943, 50.690293568000087 ] ], [ [ -119.292054513999986, 50.688797714000053 ], [ -119.292160466999974, 50.68809058600003 ], [ -119.292035501999962, 50.688083052000067 ], [ -119.291929547999928, 50.688790181000059 ], [ -119.292054513999986, 50.688797714000053 ] ], [ [ -119.314635728999946, 50.689391420000042 ], [ -119.314548603999953, 50.689974839000065 ], [ -119.314664796000017, 50.689981819000096 ], [ -119.314635728999946, 50.689391420000042 ] ], [ [ -119.322926995999964, 50.677847365000041 ], [ -119.323113007999936, 50.67659981300006 ], [ -119.322364337999929, 50.676554875000079 ], [ -119.322178304999952, 50.677802427000046 ], [ -119.322926995999964, 50.677847365000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "91644166", "BldgCostT": "60676666", "sL_LossRatio": "1", "sL_AssetLoss": "6904", "sL_BldgLoss": "6904", "sL_StrLoss": "6904", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000711B478B37D65DC00B7AD236BC594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.342932610999952, 50.728487163000096 ], [ -119.342923405999926, 50.726553328000101 ], [ -119.342910042999918, 50.723738094000105 ], [ -119.342900199999974, 50.721668884000024 ], [ -119.342900028999964, 50.721314214000088 ], [ -119.342949463999986, 50.721317169000073 ], [ -119.343040877999954, 50.72070285200008 ], [ -119.342899728999939, 50.720694414000022 ], [ -119.34289953, 50.720281414 ], [ -119.34289888499994, 50.718979556000079 ], [ -119.342898838999957, 50.718878304000071 ], [ -119.342897067999914, 50.71538198200011 ], [ -119.34289703499995, 50.715290631000052 ], [ -119.34289638300001, 50.713960102000023 ], [ -119.343977034999952, 50.714024708000096 ], [ -119.34449213299996, 50.710561802 ], [ -119.344758449000011, 50.710577722000046 ], [ -119.3448335369999, 50.710072845000106 ], [ -119.344279043999947, 50.710039698000109 ], [ -119.344387641000012, 50.709309561000119 ], [ -119.342894033999954, 50.709220261000041 ], [ -119.342893225999987, 50.70757495700007 ], [ -119.342892993999968, 50.707110214000025 ], [ -119.342895137999946, 50.707101191000042 ], [ -119.342958783999961, 50.70683080000007 ], [ -119.343011958999966, 50.706687419000041 ], [ -119.343422194999931, 50.704643592000082 ], [ -119.343444891000019, 50.702605906000052 ], [ -119.343244061999911, 50.700840576000061 ], [ -119.347203914999952, 50.701077317000085 ], [ -119.34748068599994, 50.699215230000043 ], [ -119.345319634999925, 50.699086048000048 ], [ -119.345390679999966, 50.698608180000079 ], [ -119.34520946399999, 50.698597346000085 ], [ -119.345263548999981, 50.698233569000124 ], [ -119.344577103999924, 50.698192525000131 ], [ -119.34455359699993, 50.698350612000084 ], [ -119.344246819999952, 50.698332267000033 ], [ -119.344218293000011, 50.69852412000013 ], [ -119.343648457999947, 50.698490043000049 ], [ -119.343641767999941, 50.698535032000052 ], [ -119.342991350999966, 50.698496134000074 ], [ -119.342929491999939, 50.69891205100005 ], [ -119.34267176599991, 50.69891721500003 ], [ -119.341686433999925, 50.698858276000045 ], [ -119.341096392999958, 50.69882297800013 ], [ -119.341087133000016, 50.698885227000034 ], [ -119.340122778999955, 50.698787251000041 ], [ -119.339874598999941, 50.698840186000098 ], [ -119.339312496999966, 50.698888689000093 ], [ -119.338487487999913, 50.698915998000082 ], [ -119.334687719999962, 50.698893660000152 ], [ -119.333306007999937, 50.698885462000092 ], [ -119.331751036999918, 50.698865402000109 ], [ -119.331352988999953, 50.698863198 ], [ -119.331130942999934, 50.69887334400007 ], [ -119.324166400999957, 50.698987048000077 ], [ -119.32297833899996, 50.699006393000062 ], [ -119.321962831999912, 50.699022907000078 ], [ -119.318746864999923, 50.699018856000052 ], [ -119.319073021999927, 50.696833789000124 ], [ -119.319691900999956, 50.696870937000064 ], [ -119.319710098999906, 50.696749003000086 ], [ -119.320222228999938, 50.696779741000071 ], [ -119.320233679, 50.696703015 ], [ -119.320842340999945, 50.696739544000152 ], [ -119.320888764999921, 50.69642843 ], [ -119.322412392999979, 50.696519855000126 ], [ -119.322446106999948, 50.696293866000083 ], [ -119.32665999699995, 50.696546609000059 ], [ -119.326690583999962, 50.696341455000024 ], [ -119.325942827999924, 50.69629661700008 ], [ -119.326080346999944, 50.695374282000024 ], [ -119.322154868999974, 50.695138815000099 ], [ -119.322197994999911, 50.694849730000044 ], [ -119.321962900999949, 50.694835623000088 ], [ -119.321943817999966, 50.694963537000078 ], [ -119.321724782999979, 50.694950394000045 ], [ -119.321612745000024, 50.695701343000067 ], [ -119.321581678999948, 50.695699479000048 ], [ -119.321531761999921, 50.696034044000058 ], [ -119.320210160999977, 50.695954731000072 ], [ -119.320183307999926, 50.696134675000053 ], [ -119.319826400999915, 50.696113253000071 ], [ -119.319748417000014, 50.696635783000026 ], [ -119.314108, 50.696297089000055 ], [ -119.314254008999967, 50.695319562000073 ], [ -119.312301951999984, 50.695202278000068 ], [ -119.312091712, 50.693558679000077 ], [ -119.30831566199997, 50.693649303000072 ], [ -119.306797804999988, 50.693685639000087 ], [ -119.307907887999974, 50.693228812000065 ], [ -119.308712692999976, 50.69295603500013 ], [ -119.309862517999989, 50.692715625000098 ], [ -119.310647567, 50.692622077000102 ], [ -119.312404197999939, 50.692614881000104 ], [ -119.313245922999911, 50.692611432 ], [ -119.316768153999959, 50.692596939000104 ], [ -119.317169960999976, 50.69259526700008 ], [ -119.318716, 50.692588872000037 ], [ -119.31915259499999, 50.692590072000066 ], [ -119.319739855999927, 50.692591668000063 ], [ -119.320667162999939, 50.692593195000086 ], [ -119.32890905, 50.692607554000034 ], [ -119.32947011, 50.692661038 ], [ -119.329892044999923, 50.692760247000059 ], [ -119.329962025000015, 50.692776702000117 ], [ -119.329517203, 50.693181802000041 ], [ -119.329308297999958, 50.693265792000048 ], [ -119.328131303999925, 50.693227402000055 ], [ -119.327957210999983, 50.693419603000038 ], [ -119.328265203999976, 50.693368398000047 ], [ -119.329174118999944, 50.693404003000133 ], [ -119.330076315999989, 50.693043607000106 ], [ -119.33018609399997, 50.692884643000149 ], [ -119.330191354999954, 50.692887291000062 ], [ -119.330376611999952, 50.692980559000063 ], [ -119.330521313999938, 50.69305337 ], [ -119.330849549, 50.69328506100004 ], [ -119.331149914, 50.693617962000054 ], [ -119.331299384999966, 50.693970669000109 ], [ -119.331321520999936, 50.694299523000012 ], [ -119.331523126999926, 50.694502886000095 ], [ -119.331817540999978, 50.694617961000148 ], [ -119.331992163999928, 50.694553533000018 ], [ -119.332102006999918, 50.694427476000122 ], [ -119.332080083999983, 50.6942881370001 ], [ -119.331600428999963, 50.693745113000084 ], [ -119.331507225999971, 50.693559083000139 ], [ -119.331491170999954, 50.693332545000025 ], [ -119.331544045, 50.693168782000058 ], [ -119.331725172999924, 50.692927015000137 ], [ -119.331209486999953, 50.692616390000083 ], [ -119.33265271099998, 50.692592805000068 ], [ -119.333271051999972, 50.69259176900006 ], [ -119.333681725999938, 50.69259107600007 ], [ -119.334035392999922, 50.692590478000099 ], [ -119.339132862999989, 50.692581762000067 ], [ -119.339230996999973, 50.692581600000068 ], [ -119.34280090799993, 50.692605790000052 ], [ -119.342812010999936, 50.690665700000153 ], [ -119.342834493999973, 50.687596705000011 ], [ -119.342804992999959, 50.684829511000046 ], [ -119.342821888999978, 50.682283499000022 ], [ -119.342822066999958, 50.682256213000066 ], [ -119.342825240999943, 50.681779412000033 ], [ -119.342850222999971, 50.678020196000055 ], [ -119.342843376999895, 50.677533788000105 ], [ -119.342823990999946, 50.676148931000064 ], [ -119.342822586999887, 50.676050084000053 ], [ -119.342822474999963, 50.676042106000125 ], [ -119.343166695999969, 50.675863398000089 ], [ -119.343779320999886, 50.67563410300005 ], [ -119.344243875999936, 50.675598494000042 ], [ -119.345810805, 50.675773702000065 ], [ -119.346358510999963, 50.675987286000137 ], [ -119.346754703999977, 50.675997306000056 ], [ -119.347595908999921, 50.675809295000128 ], [ -119.3481943, 50.675914708000064 ], [ -119.349114299999925, 50.67588760600011 ], [ -119.350174308999925, 50.675595700000045 ], [ -119.351630380999936, 50.675530103000042 ], [ -119.351948098999955, 50.675649813000085 ], [ -119.351970916999903, 50.676144004000086 ], [ -119.352378408999982, 50.676333400000026 ], [ -119.352732479999972, 50.676353295000084 ], [ -119.353099059, 50.676273748000092 ], [ -119.352633964999924, 50.67940711100006 ], [ -119.357972943999982, 50.679725978000043 ], [ -119.357442302, 50.683303253000062 ], [ -119.355902301999961, 50.683211304000118 ], [ -119.355898031999985, 50.683240087000101 ], [ -119.350259024999929, 50.68290321500006 ], [ -119.350769316999944, 50.679466850000047 ], [ -119.346970256999896, 50.679239731000081 ], [ -119.347108816999963, 50.678307097000122 ], [ -119.346983349999931, 50.678299593000084 ], [ -119.346720450999939, 50.680069095000079 ], [ -119.347124861999987, 50.680093279000097 ], [ -119.347101014999978, 50.680253786000037 ], [ -119.347167771999963, 50.680257777000115 ], [ -119.346636261999961, 50.683834997000112 ], [ -119.346175187, 50.683807426000094 ], [ -119.34607287399993, 50.684495909000063 ], [ -119.345980964999967, 50.684490413000084 ], [ -119.345969907999958, 50.684564813000108 ], [ -119.346733885999953, 50.684610498000076 ], [ -119.346590584999944, 50.685574848000087 ], [ -119.347358832999987, 50.685620783000083 ], [ -119.347130056999944, 50.687160435000109 ], [ -119.348461904999937, 50.687240056000135 ], [ -119.348413125999954, 50.687568386000088 ], [ -119.35158382799996, 50.687757870000013 ], [ -119.351480638999959, 50.688452744000081 ], [ -119.352218817999955, 50.688496844000021 ], [ -119.352552864999936, 50.686247030000089 ], [ -119.354976757999935, 50.686391806000053 ], [ -119.355142906999959, 50.685272288000078 ], [ -119.358939888999899, 50.685498969000044 ], [ -119.358945730999949, 50.685459575000088 ], [ -119.364585124999962, 50.685796007000128 ], [ -119.364054935999889, 50.689373287000116 ], [ -119.362194939999966, 50.689262356000064 ], [ -119.361850465999979, 50.691585632000127 ], [ -119.361686736999971, 50.691575865000054 ], [ -119.361588590999958, 50.692237737000035 ], [ -119.360606557999986, 50.692179154000023 ], [ -119.360285155, 50.69434616100007 ], [ -119.359417751999928, 50.694294409000086 ], [ -119.359092822999969, 50.696484684000083 ], [ -119.3587451, 50.6964639360001 ], [ -119.35868540300001, 50.696866300000067 ], [ -119.359509471999957, 50.696915469000039 ], [ -119.358978747999984, 50.700492677000049 ], [ -119.356262049999927, 50.700330560000083 ], [ -119.356238354999945, 50.700490186000067 ], [ -119.356648320999938, 50.70051465500007 ], [ -119.356505523999928, 50.701476703000019 ], [ -119.35805414399999, 50.701569117000076 ], [ -119.357932931999969, 50.702385903000085 ], [ -119.358038800999964, 50.702392219000103 ], [ -119.357897705, 50.703342954000085 ], [ -119.358367955999938, 50.703371013000051 ], [ -119.358321767999939, 50.703682251 ], [ -119.359165551999936, 50.703732591000055 ], [ -119.35907297299994, 50.704356497000077 ], [ -119.359612480999971, 50.704388680000143 ], [ -119.359430061999944, 50.70561810400006 ], [ -119.361771095999941, 50.70575772300009 ], [ -119.361240447999975, 50.709334905000063 ], [ -119.35818121799997, 50.709152443000058 ], [ -119.358102363999961, 50.709683712000121 ], [ -119.358246795999975, 50.709692328000123 ], [ -119.358220505999924, 50.70986945000007 ], [ -119.358236907000034, 50.709870429000084 ], [ -119.35799031699996, 50.711531755000053 ], [ -119.35783402499996, 50.712584660000026 ], [ -119.357724031999936, 50.713325632000085 ], [ -119.359306212999954, 50.713420006000064 ], [ -119.359303966999946, 50.713435140000044 ], [ -119.360867961999929, 50.71340346300012 ], [ -119.360800224999963, 50.712055667000115 ], [ -119.361224773999979, 50.71204706400006 ], [ -119.361197676999922, 50.711507946000118 ], [ -119.361622220999934, 50.711499343000142 ], [ -119.361608670999914, 50.711229784000068 ], [ -119.363731378999887, 50.711186743000077 ], [ -119.363744940999979, 50.711456303000048 ], [ -119.364594028999988, 50.711439075000065 ], [ -119.36460759699996, 50.711708635000065 ], [ -119.365032141999961, 50.711700019000013 ], [ -119.365045713999905, 50.711969576000044 ], [ -119.365894808999911, 50.711952340000096 ], [ -119.365962692999986, 50.713300131000068 ], [ -119.365113572999917, 50.713317368000062 ], [ -119.365167861999964, 50.714395601000064 ], [ -119.360073011999972, 50.714498899000013 ], [ -119.360059466999985, 50.714229341000063 ], [ -119.359602194999965, 50.714238601000027 ], [ -119.359134016999974, 50.717393033000036 ], [ -119.354488655999972, 50.717115901000092 ], [ -119.353490694, 50.717056339000109 ], [ -119.35349932299998, 50.716998259000029 ], [ -119.352171947999963, 50.716919022000098 ], [ -119.352010539999981, 50.718005296000058 ], [ -119.350202186999965, 50.717897322000027 ], [ -119.350156270999918, 50.718206238000043 ], [ -119.350082666999967, 50.718201843000017 ], [ -119.349749081000013, 50.720446042000042 ], [ -119.349657649999955, 50.720440582000023 ], [ -119.349630585999961, 50.72062264400008 ], [ -119.348896198999924, 50.7205787850001 ], [ -119.348774519999949, 50.721397209000081 ], [ -119.352839638999953, 50.721639922000087 ], [ -119.352849346, 50.721574593000113 ], [ -119.352216138999921, 50.721536795000084 ], [ -119.352747650999987, 50.717959709000091 ], [ -119.354480280999937, 50.718063122000075 ], [ -119.35558000099995, 50.718128746000048 ], [ -119.355551404999943, 50.717558555000018 ], [ -119.358099008999915, 50.717507030000057 ], [ -119.35813788499992, 50.718281339000029 ], [ -119.358391079999961, 50.718296441000071 ], [ -119.358310527999905, 50.718839064000043 ], [ -119.358943702999937, 50.718876827000066 ], [ -119.358412673000018, 50.722453939000047 ], [ -119.355362757999927, 50.722272012000104 ], [ -119.355397183999941, 50.722958334000097 ], [ -119.357095781999945, 50.722923989000023 ], [ -119.357109313999956, 50.723193548000019 ], [ -119.358383267999955, 50.723167774000103 ], [ -119.358356190999984, 50.722628655000058 ], [ -119.358780836999927, 50.72262006000004 ], [ -119.358753755999913, 50.722080942000034 ], [ -119.360452318999975, 50.722046550000094 ], [ -119.360506519999973, 50.723124786000071 ], [ -119.360081870999934, 50.723133386 ], [ -119.36009541899989, 50.723402945000032 ], [ -119.35967076499999, 50.723411544000022 ], [ -119.359697857999947, 50.723950662000085 ], [ -119.359273198999986, 50.723959259000083 ], [ -119.359286744999949, 50.72422881799999 ], [ -119.3575881, 50.724263195000077 ], [ -119.357574566000011, 50.723993636000067 ], [ -119.35545126999989, 50.724036571000077 ], [ -119.355491837, 50.724845251000019 ], [ -119.354445674999965, 50.724866391000042 ], [ -119.35421783299995, 50.724870995000074 ], [ -119.354204319999894, 50.724601434000121 ], [ -119.353779652999947, 50.724610012 ], [ -119.353680878999981, 50.722639470000047 ], [ -119.353289208999982, 50.725275550000092 ], [ -119.347645393000036, 50.724938590000058 ], [ -119.347343146999933, 50.726970882000096 ], [ -119.346901951999925, 50.726944529000079 ], [ -119.346880434999974, 50.727089193000069 ], [ -119.346597591999966, 50.727072297000085 ], [ -119.346592647999969, 50.727105530000081 ], [ -119.347242793999925, 50.727144366000118 ], [ -119.347182914999962, 50.727546954000076 ], [ -119.349171459999965, 50.727665713000093 ], [ -119.34897589699996, 50.728980909000022 ], [ -119.348777483, 50.72898712900011 ], [ -119.348728121999955, 50.72898819900005 ], [ -119.348676207999944, 50.728987111000031 ], [ -119.346030168000013, 50.728969083000031 ], [ -119.345179365999968, 50.728963262000079 ], [ -119.344686693, 50.728959911000061 ], [ -119.344210787999913, 50.729001003000036 ], [ -119.34293501399999, 50.728992405000092 ], [ -119.342934143, 50.728810928000023 ], [ -119.342932610999952, 50.728487163000096 ] ], [ [ -119.347874658999913, 50.723393814000111 ], [ -119.347895577999964, 50.723253137000093 ], [ -119.347875825999949, 50.723251958000091 ], [ -119.347854906999942, 50.723392634000099 ], [ -119.347874658999913, 50.723393814000111 ] ], [ [ -119.353748824, 50.722182138000051 ], [ -119.353829366999918, 50.722180512000143 ], [ -119.353749771999958, 50.722175762000049 ], [ -119.353748824, 50.722182138000051 ] ], [ [ -119.350654312999907, 50.714252792000103 ], [ -119.35080650499998, 50.713228653000051 ], [ -119.353616876999965, 50.71339644600009 ], [ -119.353645274999963, 50.71320526100007 ], [ -119.352063112999986, 50.713110807000078 ], [ -119.35208942899996, 50.712933687000088 ], [ -119.352073026999946, 50.712932708000054 ], [ -119.352513271999968, 50.709969346000072 ], [ -119.352368841999947, 50.709960722000041 ], [ -119.35245746799994, 50.709364131000065 ], [ -119.351854612999972, 50.709328134000074 ], [ -119.351335216999956, 50.712823923000094 ], [ -119.350639211, 50.712782360000084 ], [ -119.350422744999946, 50.714238962000088 ], [ -119.350654312999907, 50.714252792000103 ] ], [ [ -119.325638589999983, 50.694949204000061 ], [ -119.324865296999974, 50.694758402000048 ], [ -119.324399590999988, 50.694245692000031 ], [ -119.32386828199995, 50.694382398000101 ], [ -119.324166996999963, 50.694412289000091 ], [ -119.324590578999917, 50.694934993000111 ], [ -119.325229307999948, 50.694993385000053 ], [ -119.325638589999983, 50.694949204000061 ] ], [ [ -119.350664223999914, 50.694299355000041 ], [ -119.350810636999938, 50.693313651000082 ], [ -119.349372620999929, 50.693227726000018 ], [ -119.349226175999888, 50.694213429000101 ], [ -119.350664223999914, 50.694299355000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021442", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039E08828C5D85DC0DD1C742A15524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.386255158999973, 50.643033087000092 ], [ -119.386262463999927, 50.642983591000132 ], [ -119.385919350999956, 50.642963178000102 ], [ -119.386127260999913, 50.641554248 ], [ -119.386447251999982, 50.63938559700005 ], [ -119.387189930999966, 50.639429783000068 ], [ -119.387222928999961, 50.63920611499999 ], [ -119.387892210999894, 50.639245929 ], [ -119.387900739999964, 50.64155104600006 ], [ -119.387796062999911, 50.642850342000095 ], [ -119.387790656, 50.643000922000112 ], [ -119.387654451999964, 50.643116330000055 ], [ -119.386255158999973, 50.643033087000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "228.8", "sL_BldgLoss": "228.8", "sL_StrLoss": "228.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B13A8B4154D65DC053FEDE3B24554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.34279774, 50.666780119000123 ], [ -119.342796137999954, 50.665230728000019 ], [ -119.342794515, 50.663643695000147 ], [ -119.342827703999944, 50.663487792000048 ], [ -119.343273073999981, 50.663487221000054 ], [ -119.348776140999917, 50.663479825000074 ], [ -119.348840817999957, 50.663479737000067 ], [ -119.354252570999975, 50.663472195000082 ], [ -119.354885664, 50.663471296000075 ], [ -119.354511390999974, 50.66599425900008 ], [ -119.354208044999893, 50.665976134000068 ], [ -119.354021839999945, 50.667231168000029 ], [ -119.353503609999976, 50.667200200000053 ], [ -119.353493418999946, 50.667268879000098 ], [ -119.347856435999958, 50.666931879000096 ], [ -119.347915491999956, 50.666534204000065 ], [ -119.344696420999966, 50.666341626000083 ], [ -119.344615110999968, 50.666888883000063 ], [ -119.34279774, 50.666780119000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA48C5183BD85DC0009E401A46524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377379545999986, 50.647301832000046 ], [ -119.377404688999917, 50.641569589 ], [ -119.377405590999928, 50.63827068900008 ], [ -119.377549395999978, 50.638279256000082 ], [ -119.377540335999981, 50.638340583000065 ], [ -119.377908988999963, 50.638362547000042 ], [ -119.377875311999944, 50.638590497000116 ], [ -119.380020636999973, 50.638718290000043 ], [ -119.379801249999929, 50.640203712000087 ], [ -119.379876542999938, 50.640208197000113 ], [ -119.379676044999911, 50.641565660000062 ], [ -119.379635632999964, 50.641839261000079 ], [ -119.37963806499999, 50.641839406000024 ], [ -119.379558399999922, 50.642378747000109 ], [ -119.380076386999946, 50.642409596000036 ], [ -119.38000444699999, 50.64289665900008 ], [ -119.380033622999989, 50.642898397000089 ], [ -119.379999761999969, 50.643127650000096 ], [ -119.380042537999927, 50.643130197000154 ], [ -119.37998550899999, 50.643516300000101 ], [ -119.380044264999981, 50.643519798000099 ], [ -119.379515804999969, 50.647097331000062 ], [ -119.377428140999911, 50.646972989000069 ], [ -119.377379545999986, 50.647301832000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021446", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "128.1", "sL_BldgLoss": "128.1", "sL_StrLoss": "128.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000819BBD1ABDD65DC0032A77FA1C564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352738635999941, 50.670802298000126 ], [ -119.358376141999912, 50.671139050000058 ], [ -119.357845631999965, 50.674716362000048 ], [ -119.352207680999967, 50.674379585000032 ], [ -119.352738635999941, 50.670802298000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "193", "sL_BldgLoss": "193", "sL_StrLoss": "193", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F537999FB8D75DC0DDC6B0D444534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365846842999957, 50.652806484000052 ], [ -119.36584869899994, 50.6491137000001 ], [ -119.365955683999985, 50.64895680700004 ], [ -119.366144184999939, 50.648893107000056 ], [ -119.376771726999934, 50.648903339000071 ], [ -119.37637332499996, 50.651598792000108 ], [ -119.370738134999939, 50.651262942000123 ], [ -119.370739538999956, 50.651253454000084 ], [ -119.370428924999942, 50.651234933000097 ], [ -119.370699654999967, 50.649404948000026 ], [ -119.370436957999942, 50.649389284000065 ], [ -119.370424938999975, 50.649470526000151 ], [ -119.370444217999932, 50.649471675000093 ], [ -119.369914926000021, 50.653049136000092 ], [ -119.365846842999957, 50.652806484000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19211417", "BldgCostT": "12721667", "sL_LossRatio": "1", "sL_AssetLoss": "2060", "sL_BldgLoss": "2060", "sL_StrLoss": "2060", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000083509FF9ED75DC0C594613F38554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.366708698999901, 50.674450786000115 ], [ -119.36677398099999, 50.674010020000011 ], [ -119.36601680699998, 50.67396486800007 ], [ -119.366367572999962, 50.671596699000133 ], [ -119.366460984999918, 50.671533796000048 ], [ -119.366510303999988, 50.671379986000076 ], [ -119.366419720999929, 50.671244593000097 ], [ -119.366531947999974, 50.67048682700004 ], [ -119.36674754699996, 50.670399494000087 ], [ -119.369025735999983, 50.670535328000014 ], [ -119.369037523999936, 50.670455700000055 ], [ -119.366885694999951, 50.670327402000026 ], [ -119.367152294999954, 50.670079691000076 ], [ -119.367735415999945, 50.669843301000114 ], [ -119.368689107, 50.66882641000015 ], [ -119.368709211999956, 50.668672597000111 ], [ -119.368355794999943, 50.668112894000096 ], [ -119.368219397999894, 50.667657096000106 ], [ -119.368853503999958, 50.6670589020001 ], [ -119.368895918999968, 50.666744197000128 ], [ -119.368759312999941, 50.666593201000055 ], [ -119.367818610999947, 50.666163100000048 ], [ -119.36754989899994, 50.665593391000165 ], [ -119.367188318999965, 50.665446707000086 ], [ -119.367440312999946, 50.666215793000077 ], [ -119.367979787999928, 50.666556209000056 ], [ -119.368338095999945, 50.666638791000111 ], [ -119.368559594999937, 50.666831088000038 ], [ -119.368512309, 50.667003405000052 ], [ -119.36798098, 50.667419296000027 ], [ -119.367893087999931, 50.667654296000087 ], [ -119.368298486999961, 50.668374900000067 ], [ -119.368346477000031, 50.668769393000069 ], [ -119.367405683999934, 50.669750705000133 ], [ -119.36656018799998, 50.67025069700005 ], [ -119.366613515, 50.669890623000114 ], [ -119.362478975999977, 50.669643978000053 ], [ -119.362908364999925, 50.66674620800007 ], [ -119.358272442, 50.666469468000031 ], [ -119.358333048999938, 50.666060706000039 ], [ -119.3576020499999, 50.666017050000136 ], [ -119.357623153999938, 50.665874735000067 ], [ -119.355338886999959, 50.665738289000039 ], [ -119.355387922999981, 50.665407719000072 ], [ -119.354943695999978, 50.665381179000036 ], [ -119.355227074999931, 50.663470810000035 ], [ -119.358271133999935, 50.663466430000014 ], [ -119.359219202999938, 50.663465044000141 ], [ -119.36190794699999, 50.663461086000062 ], [ -119.365173306999964, 50.663456204000042 ], [ -119.365460169999949, 50.663447775000115 ], [ -119.365841494999927, 50.663436603000022 ], [ -119.365841615999926, 50.663235207000071 ], [ -119.365843340999916, 50.659772673000077 ], [ -119.36584508, 50.656311944000073 ], [ -119.369345341999946, 50.656520719000056 ], [ -119.369276627000019, 50.65698503600008 ], [ -119.370116249999981, 50.65703509800008 ], [ -119.36987306499999, 50.658678463000086 ], [ -119.369579306999952, 50.658707407000122 ], [ -119.36918161199999, 50.658931006000024 ], [ -119.368695695999946, 50.659426611000107 ], [ -119.368660415999955, 50.660370909000086 ], [ -119.368429291000012, 50.660564504000057 ], [ -119.367791891999971, 50.660856500000058 ], [ -119.367547182999985, 50.661068706000066 ], [ -119.367464093999928, 50.661376293000096 ], [ -119.367981883999988, 50.660978990000039 ], [ -119.368599686999957, 50.660876402000035 ], [ -119.369134491999944, 50.660550288000096 ], [ -119.369275192999964, 50.66025121200007 ], [ -119.369140193999954, 50.659507794000142 ], [ -119.369566902999921, 50.658995088000026 ], [ -119.369760087, 50.658892506000036 ], [ -119.369841924999946, 50.658888898 ], [ -119.369762693999988, 50.659424282000039 ], [ -119.370142113999918, 50.659446902000056 ], [ -119.369936170999964, 50.660838543000096 ], [ -119.375515939999943, 50.661171058000079 ], [ -119.37550529899994, 50.661243013000067 ], [ -119.376058125999975, 50.661275943000128 ], [ -119.376003418, 50.6616459520001 ], [ -119.381422579999978, 50.661968596000072 ], [ -119.380894014999981, 50.665546057000029 ], [ -119.380138338999942, 50.665501081000102 ], [ -119.380104689999953, 50.665728773000076 ], [ -119.375524512999931, 50.665456068000076 ], [ -119.375423610999917, 50.666138381000074 ], [ -119.373199551999903, 50.666005890000129 ], [ -119.373018067999936, 50.667232632000108 ], [ -119.373016151999977, 50.667232518000056 ], [ -119.372984577, 50.667445933000053 ], [ -119.37266527, 50.667426908000053 ], [ -119.372350424999951, 50.669554811000076 ], [ -119.374836148999947, 50.669702893000114 ], [ -119.374306968, 50.673280289000033 ], [ -119.372584885999984, 50.673177706000047 ], [ -119.372346767999929, 50.67478683000008 ], [ -119.366708698999901, 50.674450786000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.4", "sL_BldgLoss": "91.4", "sL_StrLoss": "91.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D476D9D049D85DC00946B11E6F514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377406168, 50.636148938000041 ], [ -119.37740670599996, 50.634266806 ], [ -119.381542452999938, 50.634265687000081 ], [ -119.38147775799996, 50.634703887000093 ], [ -119.381827797999946, 50.634724732000038 ], [ -119.381616948999977, 50.636152883000058 ], [ -119.381299584999937, 50.638302310000057 ], [ -119.380736243999962, 50.63826876400006 ], [ -119.380734359999963, 50.638281523000046 ], [ -119.377405641999971, 50.638083240000029 ], [ -119.377406166999961, 50.636160835000055 ], [ -119.377406168, 50.636148938000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "293.3", "sL_BldgLoss": "293.3", "sL_StrLoss": "293.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D38E30B45D65DC08B8D37011F564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.342818691999952, 50.675771264000097 ], [ -119.342806114999959, 50.674873199000075 ], [ -119.342806088999964, 50.67485402700003 ], [ -119.342804375999961, 50.673197705000092 ], [ -119.344977789000012, 50.67332775400012 ], [ -119.345421078999976, 50.670344330000027 ], [ -119.345811176, 50.670367668000033 ], [ -119.345967214999959, 50.669317340000056 ], [ -119.35160448299996, 50.669654435000055 ], [ -119.35145589399994, 50.670655467000103 ], [ -119.351679549999972, 50.6706688350001 ], [ -119.351148513999973, 50.674246117000116 ], [ -119.35092184599992, 50.674232569000047 ], [ -119.350910806999963, 50.674306922000021 ], [ -119.346250485, 50.674028268 ], [ -119.346089149999912, 50.675114180000072 ], [ -119.346859715999983, 50.675160267000138 ], [ -119.346929967999984, 50.67468737500014 ], [ -119.3474841, 50.674720515000068 ], [ -119.34755476399999, 50.674244788000131 ], [ -119.353192663999948, 50.674581800000063 ], [ -119.352983633999884, 50.675990176000028 ], [ -119.353139762999959, 50.6759995050001 ], [ -119.35312988299998, 50.676066077000051 ], [ -119.352566017999948, 50.676141106000067 ], [ -119.352391487999981, 50.676037206000061 ], [ -119.352295191999957, 50.675534407000058 ], [ -119.351869294999972, 50.675246703000035 ], [ -119.349809787999945, 50.675369207000131 ], [ -119.349060991999949, 50.675699607000091 ], [ -119.348338512999931, 50.675686793000061 ], [ -119.34771022299995, 50.675564302000033 ], [ -119.347385211999949, 50.675588496000067 ], [ -119.346942997999918, 50.675796492000131 ], [ -119.346648696999964, 50.675829187000076 ], [ -119.345641386999915, 50.675525896000053 ], [ -119.34378590299994, 50.675473184000069 ], [ -119.343184298999972, 50.67563698600005 ], [ -119.342819200999926, 50.675807579000079 ], [ -119.342818691999952, 50.675771264000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021452", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "142.2", "sL_BldgLoss": "142.2", "sL_StrLoss": "142.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088D7161A9FD85DC08415232267514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381605970999956, 50.637516169000016 ], [ -119.381637855999941, 50.637300215000039 ], [ -119.38146237899997, 50.637289765000077 ], [ -119.38163026, 50.636152729000116 ], [ -119.381908869999933, 50.634265581000065 ], [ -119.38541378599993, 50.634264501000082 ], [ -119.38788734399999, 50.634297689000022 ], [ -119.387880796999923, 50.636159843 ], [ -119.387880831999937, 50.636169498000122 ], [ -119.387734012999914, 50.636160764000081 ], [ -119.387491058999927, 50.636146310000065 ], [ -119.387488895999951, 50.636160975000017 ], [ -119.387239517999916, 50.637851476000023 ], [ -119.381605970999956, 50.637516169000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "340", "sL_BldgLoss": "340", "sL_StrLoss": "340", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D8CBCAC89D85DC0D7233FA82C534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.38241762699991, 50.653135361000061 ], [ -119.382567066999968, 50.652123456000048 ], [ -119.377344835999949, 50.651812524000093 ], [ -119.377493035999947, 50.650809750000072 ], [ -119.377491009999957, 50.650809629000101 ], [ -119.37777270499997, 50.648903450000077 ], [ -119.378019673999972, 50.647232123000052 ], [ -119.383654411999899, 50.647567606000067 ], [ -119.383621963999985, 50.647787388000076 ], [ -119.383626871999965, 50.647787679000025 ], [ -119.38364540399999, 50.64766215300007 ], [ -119.384437243999926, 50.647709275000125 ], [ -119.384704557999953, 50.645898373000144 ], [ -119.387243008999974, 50.646049395000034 ], [ -119.387343572999953, 50.645367831000044 ], [ -119.387460984999962, 50.645374815000125 ], [ -119.387526489999985, 50.644930835000117 ], [ -119.387846506999949, 50.644949869000072 ], [ -119.38793656699994, 50.648891783000117 ], [ -119.387912281999959, 50.652331199000095 ], [ -119.387915038999935, 50.653301448000086 ], [ -119.387915494999959, 50.653462436000041 ], [ -119.38241762699991, 50.653135361000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "135.6", "sL_BldgLoss": "135.6", "sL_StrLoss": "135.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080BE670334D75DC070C8CC26BC564940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.35796514799999, 50.679322335000037 ], [ -119.358058190999955, 50.678695029000075 ], [ -119.357930990999961, 50.678687435000029 ], [ -119.358256525999963, 50.67649255200007 ], [ -119.359514403999924, 50.676648099000012 ], [ -119.36059219899991, 50.676418901000076 ], [ -119.360866279, 50.675945993000063 ], [ -119.360868117999956, 50.67545180100003 ], [ -119.360994275999971, 50.675261320000054 ], [ -119.364099630999974, 50.675446601000068 ], [ -119.364058940999954, 50.675721205000109 ], [ -119.366898059999968, 50.675890524000081 ], [ -119.366368172999955, 50.679467856000016 ], [ -119.363656032999941, 50.679306113000052 ], [ -119.363603762999986, 50.679658819000096 ], [ -119.35796514799999, 50.679322335000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "83.4", "sL_BldgLoss": "83.4", "sL_StrLoss": "83.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F0388CCE6D55DC03057F5A82E5A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.342564439999961, 50.709200553000095 ], [ -119.342767394999967, 50.707836326000063 ], [ -119.340651871999938, 50.707709802000096 ], [ -119.341128918999914, 50.704503861000042 ], [ -119.341106509999989, 50.704502521000101 ], [ -119.341208412999961, 50.703817641000036 ], [ -119.341638705999955, 50.700925414000061 ], [ -119.342370614999979, 50.700969194000059 ], [ -119.342397279999943, 50.700789932000056 ], [ -119.343244061999911, 50.700840576000061 ], [ -119.343444891000019, 50.702605906000052 ], [ -119.343422194999931, 50.704643592000082 ], [ -119.343011958999966, 50.706687419000041 ], [ -119.342958783999961, 50.70683080000007 ], [ -119.342895137999946, 50.707101191000042 ], [ -119.342892993999968, 50.707110214000025 ], [ -119.342893225999987, 50.70757495700007 ], [ -119.342894033999954, 50.709220261000041 ], [ -119.342564439999961, 50.709200553000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "96.5", "sL_BldgLoss": "96.5", "sL_StrLoss": "96.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008337DEFCCAD55DC0DA5548F9C95B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.336393945999987, 50.72032968200007 ], [ -119.336593896999929, 50.718987241000029 ], [ -119.342237335999982, 50.719324789000055 ], [ -119.342152431999978, 50.719895315 ], [ -119.342255021999989, 50.719901448 ], [ -119.342604711999968, 50.717551543000106 ], [ -119.338695041, 50.717317729000079 ], [ -119.339227580999946, 50.713740690000051 ], [ -119.34289638300001, 50.713960102000023 ], [ -119.34289703499995, 50.715290631000052 ], [ -119.342897067999914, 50.71538198200011 ], [ -119.342898838999957, 50.718878304000071 ], [ -119.34289888499994, 50.718979556000079 ], [ -119.34289953, 50.720281414 ], [ -119.336393945999987, 50.72032968200007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "12325083", "BldgCostT": "8028333", "sL_LossRatio": "1", "sL_AssetLoss": "659", "sL_BldgLoss": "659", "sL_StrLoss": "659", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1649656E6D45DC0953D11DD165A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.323367685999955, 50.711550417000076 ], [ -119.323477403999931, 50.710815091000065 ], [ -119.32228850199999, 50.710743789000048 ], [ -119.322299518999898, 50.710669959000057 ], [ -119.322770171999963, 50.70751595800003 ], [ -119.321485100999922, 50.707438872000083 ], [ -119.321686137999947, 50.706091769000096 ], [ -119.319551500000031, 50.705963689000065 ], [ -119.319457028, 50.705958020000025 ], [ -119.319488502999931, 50.705747184000074 ], [ -119.318183902999934, 50.705668884000012 ], [ -119.318717937999978, 50.702091893000016 ], [ -119.319648334999897, 50.702147735000032 ], [ -119.319843659999947, 50.700839116000047 ], [ -119.322574460999959, 50.701002971000072 ], [ -119.32260568399991, 50.700793697000087 ], [ -119.321375357999955, 50.700719882000058 ], [ -119.32139589499999, 50.700582255000015 ], [ -119.318539076999969, 50.700410804000086 ], [ -119.318746864999923, 50.699018856000052 ], [ -119.321962831999912, 50.699022907000078 ], [ -119.32297833899996, 50.699006393000062 ], [ -119.324166400999957, 50.698987048000077 ], [ -119.331130942999934, 50.69887334400007 ], [ -119.331352988999953, 50.698863198 ], [ -119.331751036999918, 50.698865402000109 ], [ -119.333306007999937, 50.698885462000092 ], [ -119.334687719999962, 50.698893660000152 ], [ -119.338487487999913, 50.698915998000082 ], [ -119.339312496999966, 50.698888689000093 ], [ -119.339874598999941, 50.698840186000098 ], [ -119.340122778999955, 50.698787251000041 ], [ -119.341087133000016, 50.698885227000034 ], [ -119.340980691999931, 50.699600686000061 ], [ -119.340850255999982, 50.700477392000053 ], [ -119.339839023999957, 50.700416890000071 ], [ -119.33747176899999, 50.700275219000062 ], [ -119.337321948999914, 50.701281671000082 ], [ -119.333259355999985, 50.701038422000181 ], [ -119.333193779999974, 50.701478665000153 ], [ -119.33119265499991, 50.701358792000072 ], [ -119.330989152999948, 50.702724512000117 ], [ -119.330295128, 50.70268293000008 ], [ -119.330223444999959, 50.703163929000063 ], [ -119.329912625999896, 50.703145305000056 ], [ -119.329776576999933, 50.704058137000118 ], [ -119.329510298999949, 50.704042181000055 ], [ -119.329509365999982, 50.704048443 ], [ -119.328983622999957, 50.704016937000048 ], [ -119.327826979999955, 50.703947616000043 ], [ -119.327793096999955, 50.704174882000103 ], [ -119.325436200999917, 50.704033588000136 ], [ -119.325431286999958, 50.704066533000102 ], [ -119.327660320999939, 50.704200163000067 ], [ -119.327461840999945, 50.705531391000086 ], [ -119.327430227999912, 50.705743413000057 ], [ -119.329802959999938, 50.705885607000063 ], [ -119.32944224699996, 50.708305562000106 ], [ -119.329543336000015, 50.708311619000064 ], [ -119.3290100899999, 50.711888636000019 ], [ -119.323367685999955, 50.711550417000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "109.5", "sL_BldgLoss": "109.5", "sL_StrLoss": "109.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A908A2B498D45DC0D30039BC7B5F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.322296691999924, 50.744489391000066 ], [ -119.322545154999929, 50.742825726000014 ], [ -119.321867580999978, 50.742785116000057 ], [ -119.322253227999909, 50.740202908000093 ], [ -119.322401763999963, 50.739208262000048 ], [ -119.322406461999947, 50.739208544000114 ], [ -119.322537392999905, 50.740088554000124 ], [ -119.322752157999929, 50.741844718000053 ], [ -119.322854223999954, 50.742289104000115 ], [ -119.322876383999969, 50.742556321000102 ], [ -119.32287682399999, 50.742561685000048 ], [ -119.322927985999968, 50.743177704000082 ], [ -119.32292984599998, 50.743529345000077 ], [ -119.322933055999926, 50.744149934000042 ], [ -119.322938047999955, 50.745112230000053 ], [ -119.322941495999927, 50.745776892000059 ], [ -119.322950345999942, 50.745856242000094 ], [ -119.32302540099991, 50.746530687000096 ], [ -119.323035145999924, 50.746555417000124 ], [ -119.323176891999964, 50.746914561000047 ], [ -119.322090696999965, 50.74843069000007 ], [ -119.322350108999984, 50.748841372000129 ], [ -119.322704803999969, 50.749400209000036 ], [ -119.323155739999933, 50.750110734000039 ], [ -119.323489017, 50.75063579200004 ], [ -119.322755383999933, 50.749755692000114 ], [ -119.32246330299995, 50.749581892000037 ], [ -119.321165486999973, 50.749157494000087 ], [ -119.31995670399999, 50.748525103000084 ], [ -119.319919412999951, 50.74832859 ], [ -119.320644804999972, 50.747504006000092 ], [ -119.320676114999955, 50.74728750100013 ], [ -119.320533882999939, 50.746975601000038 ], [ -119.320540960999921, 50.746415729000091 ], [ -119.320548194999944, 50.745841899000041 ], [ -119.320403098999947, 50.745494411000088 ], [ -119.319895883999962, 50.744838301000073 ], [ -119.321391447999972, 50.744927954000097 ], [ -119.321399184999905, 50.744876152000089 ], [ -119.321586876999959, 50.744887402000074 ], [ -119.321652097999944, 50.744450758 ], [ -119.322296691999924, 50.744489391000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23212083", "BldgCostT": "16008333", "sL_LossRatio": "1", "sL_AssetLoss": "1401", "sL_BldgLoss": "1401", "sL_StrLoss": "1401", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000004B3A0C5ED45DC080FB11F11C5E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.30974300299998, 50.734543704000053 ], [ -119.309720767999963, 50.734494774000048 ], [ -119.313465201999975, 50.73471959800009 ], [ -119.313518823999942, 50.73436095700005 ], [ -119.31324126599999, 50.734344297000064 ], [ -119.313211189999961, 50.734545445000037 ], [ -119.309646519999916, 50.734331407000049 ], [ -119.309058807999989, 50.733038309000044 ], [ -119.309113724, 50.732658717000049 ], [ -119.309164488999969, 50.732307710000057 ], [ -119.308972689999948, 50.7318790100001 ], [ -119.308148890999945, 50.731229504000112 ], [ -119.306466694999955, 50.730471888000075 ], [ -119.30559569199994, 50.730318111000066 ], [ -119.305445789999979, 50.730177007000044 ], [ -119.305605708999948, 50.729967696000053 ], [ -119.306091441, 50.729712108000065 ], [ -119.306103800999921, 50.729705600000088 ], [ -119.30815578399995, 50.728809801000061 ], [ -119.30889079799999, 50.728201701000025 ], [ -119.309034810999947, 50.728113117000106 ], [ -119.313617091999973, 50.728388298 ], [ -119.313259070999976, 50.730783081000027 ], [ -119.313499362, 50.730797506000066 ], [ -119.313476203999954, 50.730952405000018 ], [ -119.313479262, 50.73095258900004 ], [ -119.313509335, 50.730751440000105 ], [ -119.314551704999985, 50.730814009000021 ], [ -119.314550638999933, 50.730792359000105 ], [ -119.315740416999944, 50.730768723000068 ], [ -119.315824836999951, 50.730767046000032 ], [ -119.315830942, 50.73089078100007 ], [ -119.319154079999976, 50.731090149000039 ], [ -119.318944761999944, 50.732491375000073 ], [ -119.319989449999952, 50.732554029000049 ], [ -119.319916338999988, 50.73304350800008 ], [ -119.320155077999956, 50.73305782600012 ], [ -119.319941601999943, 50.734487043000158 ], [ -119.320201892999975, 50.734502651000092 ], [ -119.320307664999959, 50.73379450200008 ], [ -119.32308611299996, 50.733961076000078 ], [ -119.323097936999972, 50.733881867000051 ], [ -119.326263798999975, 50.734071581000059 ], [ -119.326274892999962, 50.733997240000051 ], [ -119.329720076999976, 50.734203588000106 ], [ -119.329867280999906, 50.733216619000139 ], [ -119.329879474999956, 50.733217350000118 ], [ -119.329973810999888, 50.732584821000103 ], [ -119.330907262999972, 50.732640711000101 ], [ -119.331002672999929, 50.732000865000032 ], [ -119.330470035999923, 50.731968975000079 ], [ -119.330583189999942, 50.731210184000098 ], [ -119.330268981999922, 50.73119137 ], [ -119.330802357999971, 50.727614428000116 ], [ -119.330937030999948, 50.727622492000059 ], [ -119.331352314999933, 50.734402521000071 ], [ -119.331464616999966, 50.736235803000042 ], [ -119.331477220999972, 50.736836333000035 ], [ -119.331496619999939, 50.737755973000084 ], [ -119.331500737999988, 50.737951262000124 ], [ -119.33148526799998, 50.73819949500006 ], [ -119.33148435299999, 50.738214048 ], [ -119.322284048999933, 50.738385742000027 ], [ -119.322308587999956, 50.738550677000063 ], [ -119.322046752999938, 50.738534982000026 ], [ -119.321983723999935, 50.738957034000073 ], [ -119.32184052599996, 50.738948450000038 ], [ -119.321789346999978, 50.739291135000038 ], [ -119.321729054999935, 50.739694839000038 ], [ -119.320798854999978, 50.739639076000074 ], [ -119.320732132999964, 50.740085761000067 ], [ -119.320442170999954, 50.740068377000121 ], [ -119.320017562999936, 50.742910670000079 ], [ -119.317924098999953, 50.74278513900002 ], [ -119.316993344999901, 50.741929664000061 ], [ -119.316696858999933, 50.741657160000052 ], [ -119.315910178999928, 50.740934091000021 ], [ -119.31500821, 50.740429887000047 ], [ -119.314291609999955, 50.740121518000095 ], [ -119.31299711299999, 50.739564416000128 ], [ -119.312606737999914, 50.739396379000098 ], [ -119.312211976999933, 50.73922649400005 ], [ -119.312030262999912, 50.738838846000057 ], [ -119.311848087999977, 50.738450311000051 ], [ -119.311101490999945, 50.737413508000017 ], [ -119.31073826899997, 50.73700892200003 ], [ -119.310173193000011, 50.736379490000033 ], [ -119.30945191099994, 50.735826887000094 ], [ -119.309416902999942, 50.73541388900005 ], [ -119.30974300299998, 50.734543704000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021462", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93987250", "BldgCostT": "63610000", "sL_LossRatio": "0.999600625335751", "sL_AssetLoss": "5884.199", "sL_BldgLoss": "5881.849", "sL_StrLoss": "5881", "sL_NStrLoss": "0.849", "sL_ContLoss": "2.35", "geom_point": "0101000020E6100000C001D2A38ED55DC04C773293835E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.32302540099991, 50.746530687000096 ], [ -119.322950345999942, 50.745856242000094 ], [ -119.322941495999927, 50.745776892000059 ], [ -119.322938047999955, 50.745112230000053 ], [ -119.322933055999926, 50.744149934000042 ], [ -119.32292984599998, 50.743529345000077 ], [ -119.322927985999968, 50.743177704000082 ], [ -119.32287682399999, 50.742561685000048 ], [ -119.322876383999969, 50.742556321000102 ], [ -119.322854223999954, 50.742289104000115 ], [ -119.322752157999929, 50.741844718000053 ], [ -119.322537392999905, 50.740088554000124 ], [ -119.322406461999947, 50.739208544000114 ], [ -119.327682958999958, 50.739524680000095 ], [ -119.327687016999931, 50.739497485000129 ], [ -119.32794308699999, 50.73951282000008 ], [ -119.327952548999974, 50.739449411000081 ], [ -119.326554086, 50.739365652000053 ], [ -119.326658586999912, 50.738665416000075 ], [ -119.325398645999925, 50.738589937000022 ], [ -119.32537706, 50.738734557000086 ], [ -119.322308587999956, 50.738550677000063 ], [ -119.322284048999933, 50.738385742000027 ], [ -119.33148435299999, 50.738214048 ], [ -119.33148526799998, 50.73819949500006 ], [ -119.331500737999988, 50.737951262000124 ], [ -119.331496619999939, 50.737755973000084 ], [ -119.331477220999972, 50.736836333000035 ], [ -119.331464616999966, 50.736235803000042 ], [ -119.331352314999933, 50.734402521000071 ], [ -119.330937030999948, 50.727622492000059 ], [ -119.333272299, 50.727762296000051 ], [ -119.333355169999948, 50.727206285000122 ], [ -119.336499713999956, 50.727394460000035 ], [ -119.336704590999886, 50.726019159000074 ], [ -119.34065415799995, 50.726255380000076 ], [ -119.34065551299993, 50.726246273000079 ], [ -119.337811506999913, 50.726076189000032 ], [ -119.338229494999979, 50.723269582000064 ], [ -119.336152947999906, 50.723145348000067 ], [ -119.336237935999961, 50.722574829000024 ], [ -119.336061085999916, 50.722564247000072 ], [ -119.336393945999987, 50.72032968200007 ], [ -119.34289953, 50.720281414 ], [ -119.342899728999939, 50.720694414000022 ], [ -119.342217988999963, 50.72065365800011 ], [ -119.342126563999969, 50.721267975000089 ], [ -119.342900028999964, 50.721314214000088 ], [ -119.342900199999974, 50.721668884000024 ], [ -119.342910042999918, 50.723738094000105 ], [ -119.342923405999926, 50.726553328000101 ], [ -119.342932610999952, 50.728487163000096 ], [ -119.342934143, 50.728810928000023 ], [ -119.34293501399999, 50.728992405000092 ], [ -119.344210787999913, 50.729001003000036 ], [ -119.344686693, 50.728959911000061 ], [ -119.345179365999968, 50.728963262000079 ], [ -119.346030168000013, 50.728969083000031 ], [ -119.348676207999944, 50.728987111000031 ], [ -119.348728121999955, 50.72898819900005 ], [ -119.348777483, 50.72898712900011 ], [ -119.34897589699996, 50.728980909000022 ], [ -119.348936145999957, 50.729248232000053 ], [ -119.34863954799999, 50.731242742000106 ], [ -119.348534079, 50.731236444000061 ], [ -119.34829072399998, 50.732872746000069 ], [ -119.347961858999923, 50.732853109000075 ], [ -119.347908128999961, 50.73321435500003 ], [ -119.347148073999961, 50.733168965000097 ], [ -119.347091410999951, 50.73354987200004 ], [ -119.346910306999916, 50.733539057000087 ], [ -119.346712795999977, 50.734866726000078 ], [ -119.349065769, 50.735007231000061 ], [ -119.348533761999974, 50.738584229000089 ], [ -119.348003895999966, 50.738552593000065 ], [ -119.348001373, 50.738569556000122 ], [ -119.348949121999937, 50.738626140000065 ], [ -119.348417062999957, 50.74220312300011 ], [ -119.348155958999968, 50.742187535000028 ], [ -119.348025593999964, 50.743063830000047 ], [ -119.347088391999947, 50.74300787400005 ], [ -119.347065139999955, 50.743164147000115 ], [ -119.347159799999972, 50.7431697990001 ], [ -119.347150498999923, 50.743232307000049 ], [ -119.347393095999962, 50.743246793000075 ], [ -119.347367914999936, 50.74341604200005 ], [ -119.34833647799995, 50.743473866000059 ], [ -119.347804310999948, 50.747050826000098 ], [ -119.347712667999929, 50.747045355000125 ], [ -119.347641830999976, 50.747521428000056 ], [ -119.345386149999953, 50.747386744000039 ], [ -119.34526106899996, 50.748227080000035 ], [ -119.339613969999974, 50.747889697000041 ], [ -119.339634772999958, 50.747750052000072 ], [ -119.339473174999981, 50.747740393000115 ], [ -119.339566834999971, 50.74711170900008 ], [ -119.336747941999931, 50.746943182000059 ], [ -119.336530997999887, 50.748398780000102 ], [ -119.335981020999952, 50.748365892000024 ], [ -119.335736552999975, 50.750005895000065 ], [ -119.334913907999962, 50.749956696000076 ], [ -119.33484803799999, 50.75039851400004 ], [ -119.334446359999973, 50.750374489000116 ], [ -119.334347561999934, 50.751037102000048 ], [ -119.332577390999987, 50.751021704000024 ], [ -119.331498203999971, 50.751012293000045 ], [ -119.325454183999966, 50.751208725000076 ], [ -119.323827710999979, 50.751152211000054 ], [ -119.323701328999974, 50.751147819000039 ], [ -119.323494174999951, 50.750643933000063 ], [ -119.323492598999962, 50.750640095000108 ], [ -119.323489017, 50.75063579200004 ], [ -119.323155739999933, 50.750110734000039 ], [ -119.322704803999969, 50.749400209000036 ], [ -119.322350108999984, 50.748841372000129 ], [ -119.322090696999965, 50.74843069000007 ], [ -119.323176891999964, 50.746914561000047 ], [ -119.323035145999924, 50.746555417000124 ], [ -119.32302540099991, 50.746530687000096 ] ], [ [ -119.338210588999971, 50.743421859000136 ], [ -119.338412901999931, 50.742063936000115 ], [ -119.33864703699993, 50.742077934000058 ], [ -119.338878969999911, 50.740521043000051 ], [ -119.339380235999926, 50.740551011000065 ], [ -119.339382046999972, 50.740538854000079 ], [ -119.339438956999942, 50.740542256000062 ], [ -119.339517319999942, 50.740016167000078 ], [ -119.338739883999963, 50.739969688000066 ], [ -119.338768567, 50.739777145000112 ], [ -119.338675595000012, 50.73977158600006 ], [ -119.338684124999972, 50.739714319000058 ], [ -119.338302085999914, 50.739691477000051 ], [ -119.338475339999931, 50.738528486000085 ], [ -119.337025801999943, 50.738441803000079 ], [ -119.336957543999944, 50.73889990800005 ], [ -119.3372059659999, 50.738914765000082 ], [ -119.337101950999937, 50.739612849000096 ], [ -119.337446606999961, 50.739633460000086 ], [ -119.337371686999987, 50.74013629100012 ], [ -119.338436009999981, 50.740199934000053 ], [ -119.337958234999988, 50.74340677100006 ], [ -119.338210588999971, 50.743421859000136 ] ], [ [ -119.334750437999944, 50.737806651000085 ], [ -119.334759772999945, 50.737744028000037 ], [ -119.334733894999943, 50.737742480000144 ], [ -119.334724561999977, 50.737805102000038 ], [ -119.334750437999944, 50.737806651000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.3", "sL_BldgLoss": "36.3", "sL_StrLoss": "36.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000060D1089127D15DC0B0430CA6275F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.267867671999952, 50.742336631000093 ], [ -119.268340089999938, 50.74236517700011 ], [ -119.267859525999953, 50.745556785000069 ], [ -119.267859830999896, 50.745486354000022 ], [ -119.267865601, 50.744152696000057 ], [ -119.26791960599999, 50.743954710000061 ], [ -119.268033896999953, 50.743621511000107 ], [ -119.268004546, 50.743489252000067 ], [ -119.26787098199999, 50.742887094000061 ], [ -119.267867671999952, 50.742336631000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "378312062", "BldgCostT": "238716178", "sL_LossRatio": "0.998121669620161", "sL_AssetLoss": "12990.26", "sL_BldgLoss": "12965.86", "sL_StrLoss": "12957", "sL_NStrLoss": "8.86", "sL_ContLoss": "24.4", "geom_point": "0101000020E6100000F9EC351469D15DC01847AA31995C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.27189911, 50.742301434000105 ], [ -119.272063311999915, 50.741210225000032 ], [ -119.269050794999941, 50.741028258000021 ], [ -119.269081725999939, 50.74082278600013 ], [ -119.267858129999965, 50.740748853000049 ], [ -119.267849498999979, 50.739312709000053 ], [ -119.267849526999981, 50.739303712000051 ], [ -119.26785116299996, 50.738174461000085 ], [ -119.267852174999959, 50.737445765000096 ], [ -119.26785299, 50.736876805000129 ], [ -119.267802787999955, 50.736614795000065 ], [ -119.267596122999961, 50.736265796000055 ], [ -119.267429719999967, 50.735980497000106 ], [ -119.267339593999935, 50.735605106000051 ], [ -119.26730269199993, 50.733031390000122 ], [ -119.267375120999986, 50.732881401000071 ], [ -119.267213991999924, 50.73237180400006 ], [ -119.267089597999956, 50.732233506000064 ], [ -119.265807288999952, 50.731283399000041 ], [ -119.265515125999983, 50.730887693000106 ], [ -119.265406397, 50.730399292000094 ], [ -119.265476593999921, 50.729725008000045 ], [ -119.265461294999938, 50.729590595000055 ], [ -119.265126602999914, 50.728947700000028 ], [ -119.265090613, 50.72874249000003 ], [ -119.265383969999945, 50.727815603000067 ], [ -119.265448186999919, 50.727473896000063 ], [ -119.265458614999901, 50.727149698000098 ], [ -119.265374, 50.726860306000063 ], [ -119.265215013999935, 50.726668501000091 ], [ -119.265095586999976, 50.726581786000054 ], [ -119.264935550999965, 50.726523783000097 ], [ -119.264477316999916, 50.72635770400008 ], [ -119.264026599999966, 50.726088592000103 ], [ -119.263917275999987, 50.725868990000023 ], [ -119.263970785999902, 50.724750007000054 ], [ -119.26397620599991, 50.724636408000052 ], [ -119.26384975099991, 50.723696219000018 ], [ -119.263819703999928, 50.72347289800009 ], [ -119.263652013, 50.723092797000064 ], [ -119.262767588999935, 50.721780593000091 ], [ -119.262767507999939, 50.72178041900009 ], [ -119.262632689999975, 50.721523403000063 ], [ -119.262504852999967, 50.721272003000081 ], [ -119.262409711999965, 50.721084909000055 ], [ -119.26212509599999, 50.720642777000094 ], [ -119.262041695999955, 50.720513189 ], [ -119.26204030599996, 50.720134995000031 ], [ -119.262262224999915, 50.719417600000035 ], [ -119.26244657899997, 50.71883589300009 ], [ -119.262853698999933, 50.717522403000046 ], [ -119.262892204999929, 50.717298519000124 ], [ -119.262928073999888, 50.717089995000052 ], [ -119.263059717999965, 50.716324806000046 ], [ -119.26436979099999, 50.716350009000053 ], [ -119.266277163999987, 50.71633522000014 ], [ -119.26655252399999, 50.716333106000064 ], [ -119.266553107999954, 50.716333106000064 ], [ -119.266652317999899, 50.71621279400005 ], [ -119.266685567999929, 50.716024883000038 ], [ -119.266728192999921, 50.715784315000114 ], [ -119.266732081999976, 50.715772542000089 ], [ -119.266946269999934, 50.715121488000101 ], [ -119.266956370999978, 50.715090693000022 ], [ -119.267113899, 50.714734791000069 ], [ -119.267132619000023, 50.714392993000104 ], [ -119.267280603999922, 50.714289196000038 ], [ -119.267428140999968, 50.714050473000107 ], [ -119.267460067999977, 50.71399883100009 ], [ -119.267901477999928, 50.71328459900009 ], [ -119.268031715999939, 50.712908410000026 ], [ -119.26817841699993, 50.71248472000012 ], [ -119.268222846999933, 50.712255515 ], [ -119.268436750999939, 50.711363434000106 ], [ -119.268444382, 50.711346871000032 ], [ -119.268595517, 50.711019312000133 ], [ -119.268710047999932, 50.710771099000084 ], [ -119.268751427999945, 50.710681338000057 ], [ -119.268901286999963, 50.710487871000048 ], [ -119.268981074999957, 50.710384827000077 ], [ -119.26981259199998, 50.709682572000126 ], [ -119.269923053999946, 50.70954733300006 ], [ -119.270363858999985, 50.709007594000106 ], [ -119.271002419999959, 50.708415053000145 ], [ -119.27104033799999, 50.708379864000037 ], [ -119.271252344999979, 50.708086810000111 ], [ -119.271411495999985, 50.707927686000112 ], [ -119.271554754999968, 50.70777934400013 ], [ -119.271841910999953, 50.707620746000039 ], [ -119.27191195499995, 50.707591512000086 ], [ -119.275500786999913, 50.70609679900015 ], [ -119.279722318999973, 50.704425393000108 ], [ -119.280365300999932, 50.704170793000095 ], [ -119.280658290999938, 50.704001690000041 ], [ -119.280846121999971, 50.704208071000046 ], [ -119.281086955999939, 50.704472739000096 ], [ -119.281176191999961, 50.704570796000056 ], [ -119.281481700999933, 50.704905901000089 ], [ -119.281809883, 50.704785886000067 ], [ -119.281988305999974, 50.704754210000054 ], [ -119.282475716999954, 50.704806199000075 ], [ -119.282729117999963, 50.704805310000026 ], [ -119.282912300999911, 50.704770305000075 ], [ -119.283776485999951, 50.704435405000019 ], [ -119.284682393, 50.704060514000076 ], [ -119.284835705999981, 50.703948886000077 ], [ -119.284928094999913, 50.703731615000073 ], [ -119.284924780999944, 50.70351660700009 ], [ -119.284842804999982, 50.703190385000077 ], [ -119.284825896999905, 50.703113593000062 ], [ -119.284842553999979, 50.703096695000077 ], [ -119.284884607999956, 50.703054001000112 ], [ -119.285868109999925, 50.70266866 ], [ -119.286880303999922, 50.702272106000137 ], [ -119.287994706999896, 50.70183398800004 ], [ -119.288440381000015, 50.701661496000064 ], [ -119.288971578999949, 50.702199700000051 ], [ -119.290526809999932, 50.701621191000093 ], [ -119.289924001999978, 50.700848587000074 ], [ -119.289918542999914, 50.700840310000075 ], [ -119.289827433999974, 50.700701413000047 ], [ -119.289815322999971, 50.700682959000069 ], [ -119.289684268999949, 50.70048316 ], [ -119.28951175099999, 50.700258150000067 ], [ -119.289321447999953, 50.700009942000108 ], [ -119.289299838999952, 50.699981777000112 ], [ -119.289301070999954, 50.6999641190001 ], [ -119.289305801999944, 50.69989557000013 ], [ -119.289314423999897, 50.69977061 ], [ -119.290836190999954, 50.699775714000097 ], [ -119.291677397999962, 50.699669429000046 ], [ -119.29177631499995, 50.699882913000117 ], [ -119.291768858999916, 50.700129752000059 ], [ -119.291763136999933, 50.700319557000093 ], [ -119.291962107999964, 50.700270073000063 ], [ -119.292536501999933, 50.70012720000004 ], [ -119.293127098999932, 50.700031994000057 ], [ -119.294155575999952, 50.700033501000114 ], [ -119.294241593999942, 50.700124412000044 ], [ -119.294393397999926, 50.700175105000021 ], [ -119.294382918999958, 50.700624710000078 ], [ -119.294362117999981, 50.701247801000093 ], [ -119.292953920999949, 50.70124420300008 ], [ -119.29295849599994, 50.701897714000097 ], [ -119.292925088999979, 50.702044600000129 ], [ -119.2928197049999, 50.70211129300003 ], [ -119.29264219199996, 50.702127707000059 ], [ -119.291708822999922, 50.70212020300005 ], [ -119.29167890399998, 50.703112304000058 ], [ -119.290664445999965, 50.703051162000129 ], [ -119.290684926999958, 50.703471313000087 ], [ -119.289835938999914, 50.703488 ], [ -119.289849073999932, 50.70375757300009 ], [ -119.289424577999966, 50.703765914000023 ], [ -119.28943771199998, 50.704035487000091 ], [ -119.289013212999947, 50.704043827000064 ], [ -119.28902634399999, 50.704313400000068 ], [ -119.288177340999937, 50.704330075 ], [ -119.288190467999968, 50.704599648000034 ], [ -119.286492448999979, 50.704632980000085 ], [ -119.286505565999988, 50.704902553000096 ], [ -119.285656548999924, 50.704919210000106 ], [ -119.285669662999965, 50.705188784000022 ], [ -119.285026911999964, 50.705201391000088 ], [ -119.284944416999949, 50.705751158000062 ], [ -119.283994550999978, 50.70569385500005 ], [ -119.283997825, 50.705761228000071 ], [ -119.283573309999952, 50.705769548000077 ], [ -119.283610214999911, 50.706528947000066 ], [ -119.282983211, 50.705677787000134 ], [ -119.282730713999968, 50.705719090000073 ], [ -119.283415579999925, 50.706851963000041 ], [ -119.283054545999946, 50.706859037000072 ], [ -119.281927606999929, 50.706881111000044 ], [ -119.281888333, 50.706072387000042 ], [ -119.281463812999974, 50.7060807 ], [ -119.281450724999928, 50.705811126000114 ], [ -119.278479096999945, 50.705869269000047 ], [ -119.27849216899989, 50.706138844000066 ], [ -119.27764312699999, 50.706155443000071 ], [ -119.277656193999974, 50.706425018000061 ], [ -119.277231669999949, 50.706433315000048 ], [ -119.277244735999929, 50.706702890000066 ], [ -119.276395681999929, 50.706719480000096 ], [ -119.276408740999941, 50.706989055000037 ], [ -119.275559682999955, 50.707005640000048 ], [ -119.275572737999966, 50.707275215000038 ], [ -119.275148204999965, 50.707283505000049 ], [ -119.275161259999919, 50.707553081000079 ], [ -119.27473672499994, 50.707561369000103 ], [ -119.274749774999975, 50.707830944000115 ], [ -119.274325237999932, 50.707839231000051 ], [ -119.274338286999964, 50.708108806000084 ], [ -119.274006626999892, 50.708115279000019 ], [ -119.273812491999976, 50.709406796000096 ], [ -119.273788047999972, 50.709569404000078 ], [ -119.273545891999959, 50.709554773000065 ], [ -119.273508049000029, 50.709806510000057 ], [ -119.273311829999912, 50.709794654000106 ], [ -119.273262556999939, 50.710122415000086 ], [ -119.272913058999947, 50.710101297000065 ], [ -119.272871453999969, 50.710378024000114 ], [ -119.272796364999977, 50.710373486000037 ], [ -119.272742368999928, 50.710732625000105 ], [ -119.272727036999981, 50.710731699000085 ], [ -119.27270037699995, 50.71090902600011 ], [ -119.27235824099999, 50.710888351000037 ], [ -119.272309376999956, 50.711213335000103 ], [ -119.271971605999951, 50.71119292300007 ], [ -119.271936672, 50.711425243000086 ], [ -119.271752301, 50.711414100000113 ], [ -119.27170967799999, 50.711697547000085 ], [ -119.271413404999976, 50.711679641000075 ], [ -119.271353083999941, 50.712080755000088 ], [ -119.271112723999977, 50.712066227000022 ], [ -119.271020922, 50.712676638000104 ], [ -119.271004020999911, 50.712711966 ], [ -119.270642976, 50.712690144000142 ], [ -119.270472624999982, 50.713822743000044 ], [ -119.270409208999951, 50.713955301000027 ], [ -119.270398434999947, 50.713970931000105 ], [ -119.27038238099999, 50.713994211000049 ], [ -119.270311511999964, 50.71398992600006 ], [ -119.270290925999959, 50.714126820000054 ], [ -119.269547809999921, 50.715204291000113 ], [ -119.269541595999939, 50.715219263000094 ], [ -119.269445821999909, 50.715213473000134 ], [ -119.269390003999931, 50.715584508000063 ], [ -119.269348930999939, 50.715683463000076 ], [ -119.26928981199994, 50.715825905000031 ], [ -119.269167697999947, 50.716120110000098 ], [ -119.269197936999944, 50.716344515000053 ], [ -119.269234661999946, 50.716617002000135 ], [ -119.269207258999984, 50.716799192000039 ], [ -119.269027221999949, 50.716788308000119 ], [ -119.268941101999928, 50.717360698000029 ], [ -119.26933813799991, 50.717384699000071 ], [ -119.269424468999915, 50.718025165 ], [ -119.269435932999954, 50.718110252000017 ], [ -119.269157817999925, 50.719958735000041 ], [ -119.269062706999946, 50.720079388000094 ], [ -119.269040001999912, 50.720493903 ], [ -119.269071330999978, 50.720533533000037 ], [ -119.269005087, 50.720973787000062 ], [ -119.268680192999938, 50.720954148000125 ], [ -119.26856530299996, 50.721717638000051 ], [ -119.26928259499999, 50.721760995000103 ], [ -119.268798330999914, 50.722475771000099 ], [ -119.268725462999939, 50.722583337000039 ], [ -119.268093487, 50.723515990000088 ], [ -119.268015909999974, 50.723997230000037 ], [ -119.267974084999935, 50.724256604000111 ], [ -119.268102794999933, 50.725298885000051 ], [ -119.267246969999931, 50.725247149000104 ], [ -119.267177232, 50.72571044700004 ], [ -119.267979657999902, 50.725758955000039 ], [ -119.267874825999982, 50.726455461000072 ], [ -119.268413436999964, 50.726488017000086 ], [ -119.268800910999943, 50.727604901000106 ], [ -119.269143744999923, 50.728247553000095 ], [ -119.268996501999979, 50.729225946000042 ], [ -119.270010225999982, 50.729287206000052 ], [ -119.269760601999948, 50.730946042000085 ], [ -119.26983294799993, 50.730950413000059 ], [ -119.269816013999957, 50.731062938000029 ], [ -119.269843754999926, 50.731064614000104 ], [ -119.269806257999932, 50.73131378700009 ], [ -119.269881170999952, 50.731318313000081 ], [ -119.269809100999964, 50.731797227000087 ], [ -119.269863505000032, 50.731800515000074 ], [ -119.269848247999903, 50.731901899000036 ], [ -119.270745184999967, 50.731956091000079 ], [ -119.270718567999921, 50.732132983000035 ], [ -119.270766695999924, 50.732135890000066 ], [ -119.270758029999911, 50.732193490000093 ], [ -119.27252715, 50.732159008000046 ], [ -119.27253767699996, 50.73237645100005 ], [ -119.272789833999951, 50.732391681000102 ], [ -119.272908001999909, 50.732498492000083 ], [ -119.274934407999979, 50.733978287000127 ], [ -119.275269615999932, 50.734143497000041 ], [ -119.275261586999946, 50.734295907000082 ], [ -119.275067669999899, 50.734526987000081 ], [ -119.274525404999963, 50.735173198000076 ], [ -119.27449021299995, 50.73533700200003 ], [ -119.274641, 50.73696199000009 ], [ -119.27492731399991, 50.737639901000115 ], [ -119.275349624999976, 50.737914017000044 ], [ -119.27520257899999, 50.738891781000106 ], [ -119.278082710999954, 50.739065601000014 ], [ -119.277679198999977, 50.741749625000075 ], [ -119.27732772199991, 50.742312744000046 ], [ -119.277137419999946, 50.742617649000039 ], [ -119.274114023999957, 50.7424351700001 ], [ -119.273491728999929, 50.742397600000082 ], [ -119.27189911, 50.742301434000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021465", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34808811", "BldgCostT": "21263190", "sL_LossRatio": "0.994316679535391", "sL_AssetLoss": "1138.419", "sL_BldgLoss": "1131.949", "sL_StrLoss": "1129.6", "sL_NStrLoss": "2.349", "sL_ContLoss": "6.47", "geom_point": "0101000020E610000075DAB7E690D05DC01FB3470353604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.250296539000018, 50.753079923000058 ], [ -119.252509128999918, 50.7523113150001 ], [ -119.253088572999943, 50.752346400000079 ], [ -119.253077406999978, 50.752113896 ], [ -119.254514453999931, 50.751614647000089 ], [ -119.255538915999978, 50.751452887000092 ], [ -119.257846585999971, 50.751416589000058 ], [ -119.259860039999978, 50.751545615000097 ], [ -119.260480695999973, 50.751756379000085 ], [ -119.261473514999977, 50.751592937000048 ], [ -119.261983888999936, 50.751508892000068 ], [ -119.262716002999966, 50.751453003000073 ], [ -119.26298941, 50.751448853000156 ], [ -119.265802117999954, 50.751618865000061 ], [ -119.265576658, 50.753115398000041 ], [ -119.265113652999958, 50.753143922000042 ], [ -119.263958781999918, 50.753215092000076 ], [ -119.262051403999934, 50.753675110000117 ], [ -119.261473310999961, 50.753722104000104 ], [ -119.26107355799995, 50.753656523000068 ], [ -119.26058760399999, 50.753576808000084 ], [ -119.259511455999984, 50.753538384000137 ], [ -119.258513149999928, 50.753502725000054 ], [ -119.258232438999968, 50.753492705000014 ], [ -119.256838294999966, 50.753442896000116 ], [ -119.25664767799995, 50.753338999000079 ], [ -119.256447301999955, 50.753001412000089 ], [ -119.256008616999978, 50.752703801000095 ], [ -119.254703079999942, 50.752710900000118 ], [ -119.254314122999958, 50.752779994000115 ], [ -119.25431868699998, 50.752749753000089 ], [ -119.253109068999962, 50.752773140000087 ], [ -119.253089853999938, 50.752373049000013 ], [ -119.252978887999987, 50.753108211000047 ], [ -119.251734583999934, 50.753784704000026 ], [ -119.25052169699994, 50.754194899000041 ], [ -119.250275160999962, 50.754329946000077 ], [ -119.250275495999929, 50.754291685000062 ], [ -119.250287967999967, 50.75357449800002 ], [ -119.250296539000018, 50.753079923000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23058584", "BldgCostT": "14068334", "sL_LossRatio": "0.995836667444216", "sL_AssetLoss": "677.342", "sL_BldgLoss": "674.522", "sL_StrLoss": "673.5", "sL_NStrLoss": "1.022", "sL_ContLoss": "2.82", "geom_point": "0101000020E6100000EEF4419E36D15DC019B65EBAE65F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.26784951899999, 50.747860791000107 ], [ -119.267856747999986, 50.746197353000063 ], [ -119.267857115999902, 50.746112459000074 ], [ -119.268234953999951, 50.746135287000065 ], [ -119.268061233999944, 50.747288958000055 ], [ -119.271316834999979, 50.747485604000104 ], [ -119.270827071999946, 50.750739359000107 ], [ -119.270778476999979, 50.751062178000026 ], [ -119.269975175999932, 50.751013665000123 ], [ -119.269952347999933, 50.751165296000089 ], [ -119.26670839399999, 50.75096933100005 ], [ -119.266774908999963, 50.750941383000061 ], [ -119.266874590999919, 50.750780490000039 ], [ -119.26682781699995, 50.75035360100005 ], [ -119.266325008999956, 50.749511100000134 ], [ -119.266227780999884, 50.749230100000034 ], [ -119.266267209999967, 50.749081795000087 ], [ -119.266421701999931, 50.748907001000113 ], [ -119.266764292999966, 50.748741912000128 ], [ -119.267681980999953, 50.748465298000028 ], [ -119.267847481999951, 50.748330900000077 ], [ -119.26784951899999, 50.747860791000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "228834083", "BldgCostT": "151718333", "sL_LossRatio": "1", "sL_AssetLoss": "11905.7", "sL_BldgLoss": "11905.7", "sL_StrLoss": "11905.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006CC3BC2293D05DC08566A6CD9B5D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.25051505799999, 50.743522490000039 ], [ -119.250534985999977, 50.738698017000097 ], [ -119.25053763699999, 50.738059470000053 ], [ -119.250545093999975, 50.736247210000059 ], [ -119.250545284999987, 50.736144103000079 ], [ -119.250550589999989, 50.733166433000086 ], [ -119.250551633, 50.732599562000097 ], [ -119.251051238999977, 50.732610866000059 ], [ -119.251640135999963, 50.732604475000102 ], [ -119.253500305999978, 50.732584201000044 ], [ -119.253822162999953, 50.732586634000086 ], [ -119.254209916000022, 50.732589551000025 ], [ -119.254118365999929, 50.733196459000069 ], [ -119.254271766000016, 50.733205749000085 ], [ -119.254092945999943, 50.73439117200013 ], [ -119.25591999599996, 50.734501806000019 ], [ -119.255878728999917, 50.734775430000091 ], [ -119.255909714999959, 50.734777306000055 ], [ -119.255820631999896, 50.735367979000031 ], [ -119.257644588999952, 50.735478394000054 ], [ -119.257952969999977, 50.733433012000077 ], [ -119.25600375599997, 50.73331501200007 ], [ -119.256027827999958, 50.733155392000086 ], [ -119.255339145999926, 50.733113693000156 ], [ -119.255416828999927, 50.732598621000101 ], [ -119.25560769499999, 50.732600054000045 ], [ -119.256301740000012, 50.732605279000033 ], [ -119.256410495999887, 50.732606114000085 ], [ -119.259083387999937, 50.732624510000058 ], [ -119.261489948999952, 50.732613172000079 ], [ -119.262058802999917, 50.732610486000077 ], [ -119.262059219999969, 50.731190236000025 ], [ -119.262059789999924, 50.729125910000029 ], [ -119.262083591999925, 50.729060542000127 ], [ -119.262099254999924, 50.72901754500004 ], [ -119.262305084999966, 50.728452297000068 ], [ -119.262339684999958, 50.72816560200004 ], [ -119.262030408, 50.727298695000101 ], [ -119.262004685, 50.726854995000089 ], [ -119.262083719999978, 50.726443895000116 ], [ -119.262265376999963, 50.726088513000015 ], [ -119.2623316789999, 50.725695491000096 ], [ -119.262189390999978, 50.724957788000104 ], [ -119.262216983999949, 50.724377509000064 ], [ -119.262099519999964, 50.723598011000071 ], [ -119.262054984999935, 50.72271199700004 ], [ -119.262259511999929, 50.721893289000022 ], [ -119.262347585999976, 50.721714596000048 ], [ -119.262379713000016, 50.721693049000102 ], [ -119.262426051999967, 50.721661982000079 ], [ -119.262282227999947, 50.721661380000029 ], [ -119.262138416999946, 50.72166080100007 ], [ -119.261994607999952, 50.7216602210001 ], [ -119.261987558999976, 50.72166020000008 ], [ -119.261850799999976, 50.721659640000048 ], [ -119.261706952999972, 50.72165907100004 ], [ -119.261562087999948, 50.721658458000036 ], [ -119.261419396999941, 50.721662329000068 ], [ -119.261275607999934, 50.721666236000011 ], [ -119.261202630999918, 50.72166823700011 ], [ -119.26114469399991, 50.721660813000057 ], [ -119.26098929399997, 50.721662418000093 ], [ -119.260845451999941, 50.721663895000106 ], [ -119.26070164399999, 50.721665360000046 ], [ -119.260612249999937, 50.721666287000076 ], [ -119.260557822999942, 50.721666062000104 ], [ -119.260413960999955, 50.72166546700003 ], [ -119.260126341999964, 50.721664302000093 ], [ -119.260036411999948, 50.721663934000055 ], [ -119.259982572999945, 50.721665386000055 ], [ -119.259838749, 50.721669302000144 ], [ -119.259705724999947, 50.72167291100002 ], [ -119.25955116199999, 50.721672762000054 ], [ -119.259407348999929, 50.721672607000073 ], [ -119.259389019999929, 50.721672604000069 ], [ -119.259263483999959, 50.72167275000006 ], [ -119.259119670999951, 50.72167290600003 ], [ -119.258975860999968, 50.721673063000061 ], [ -119.25883201100001, 50.721673229000046 ], [ -119.258697986999962, 50.721673347000014 ], [ -119.25854435199993, 50.721673181000043 ], [ -119.258400505999958, 50.721672977000026 ], [ -119.25825669299995, 50.72167282000003 ], [ -119.258064530999931, 50.721672539000082 ], [ -119.258006985999927, 50.721674132000025 ], [ -119.257969017999983, 50.721674111000091 ], [ -119.257825216999976, 50.721674091000111 ], [ -119.25767587499999, 50.721674095000026 ], [ -119.257537613999943, 50.721677836000083 ], [ -119.257393844999925, 50.721681760000074 ], [ -119.257330864999972, 50.721683457000019 ], [ -119.257250004999918, 50.721683856000013 ], [ -119.257106182999976, 50.721684554000092 ], [ -119.256962345999938, 50.721685226000048 ], [ -119.256927808999933, 50.721685427000125 ], [ -119.256818510999949, 50.72168510100002 ], [ -119.256674690999972, 50.721684744000093 ], [ -119.256530889, 50.72168435400004 ], [ -119.256387049999944, 50.721683974000044 ], [ -119.256323110000025, 50.721683788000121 ], [ -119.252419013999926, 50.721686403000042 ], [ -119.250566008999982, 50.721691403000101 ], [ -119.250557100999941, 50.720174890000102 ], [ -119.25055869000002, 50.719881301000072 ], [ -119.250568618999978, 50.718041606000043 ], [ -119.25272949899994, 50.718041785000061 ], [ -119.252683971999943, 50.716503208000056 ], [ -119.252766353999945, 50.714371521000075 ], [ -119.253585626999936, 50.714371584000105 ], [ -119.255257307999969, 50.714371670000034 ], [ -119.25586664299999, 50.714371704000065 ], [ -119.256865797999978, 50.714371756000027 ], [ -119.257143287999924, 50.714371574000069 ], [ -119.258001807999932, 50.714371049000086 ], [ -119.258432451999965, 50.71437133200007 ], [ -119.259168710999973, 50.714371785000075 ], [ -119.259356765999911, 50.714371885000013 ], [ -119.260528649999955, 50.714379429000118 ], [ -119.261241014999911, 50.714383992000137 ], [ -119.261511007999943, 50.714386810000057 ], [ -119.261918462999972, 50.714387102000096 ], [ -119.262612895999951, 50.71438761299999 ], [ -119.263021112999965, 50.714387907000066 ], [ -119.263160381999967, 50.715136297000093 ], [ -119.263114705999939, 50.715675390000108 ], [ -119.263092624999956, 50.715936324000019 ], [ -119.26307366099999, 50.716159969000103 ], [ -119.263060458999917, 50.716315800000082 ], [ -119.263059717999965, 50.716324806000046 ], [ -119.262928073999888, 50.717089995000052 ], [ -119.262892204999929, 50.717298519000124 ], [ -119.262853698999933, 50.717522403000046 ], [ -119.26244657899997, 50.71883589300009 ], [ -119.262262224999915, 50.719417600000035 ], [ -119.26204030599996, 50.720134995000031 ], [ -119.262041695999955, 50.720513189 ], [ -119.26212509599999, 50.720642777000094 ], [ -119.262409711999965, 50.721084909000055 ], [ -119.262504852999967, 50.721272003000081 ], [ -119.262632689999975, 50.721523403000063 ], [ -119.262767507999939, 50.72178041900009 ], [ -119.262767588999935, 50.721780593000091 ], [ -119.263652013, 50.723092797000064 ], [ -119.263819703999928, 50.72347289800009 ], [ -119.26384975099991, 50.723696219000018 ], [ -119.26397620599991, 50.724636408000052 ], [ -119.263970785999902, 50.724750007000054 ], [ -119.263917275999987, 50.725868990000023 ], [ -119.264026599999966, 50.726088592000103 ], [ -119.264477316999916, 50.72635770400008 ], [ -119.264935550999965, 50.726523783000097 ], [ -119.265095586999976, 50.726581786000054 ], [ -119.265215013999935, 50.726668501000091 ], [ -119.265374, 50.726860306000063 ], [ -119.265458614999901, 50.727149698000098 ], [ -119.265448186999919, 50.727473896000063 ], [ -119.265383969999945, 50.727815603000067 ], [ -119.265090613, 50.72874249000003 ], [ -119.265126602999914, 50.728947700000028 ], [ -119.265461294999938, 50.729590595000055 ], [ -119.265476593999921, 50.729725008000045 ], [ -119.265406397, 50.730399292000094 ], [ -119.265515125999983, 50.730887693000106 ], [ -119.265807288999952, 50.731283399000041 ], [ -119.267089597999956, 50.732233506000064 ], [ -119.267213991999924, 50.73237180400006 ], [ -119.267375120999986, 50.732881401000071 ], [ -119.26730269199993, 50.733031390000122 ], [ -119.267339593999935, 50.735605106000051 ], [ -119.267429719999967, 50.735980497000106 ], [ -119.267596122999961, 50.736265796000055 ], [ -119.267802787999955, 50.736614795000065 ], [ -119.26785299, 50.736876805000129 ], [ -119.267852174999959, 50.737445765000096 ], [ -119.26785116299996, 50.738174461000085 ], [ -119.267849526999981, 50.739303712000051 ], [ -119.267849498999979, 50.739312709000053 ], [ -119.267858129999965, 50.740748853000049 ], [ -119.267053522, 50.740700229000034 ], [ -119.266816662999943, 50.74227311800005 ], [ -119.267867671999952, 50.742336631000093 ], [ -119.26787098199999, 50.742887094000061 ], [ -119.268004546, 50.743489252000067 ], [ -119.268033896999953, 50.743621511000107 ], [ -119.26791960599999, 50.743954710000061 ], [ -119.26770338299994, 50.743905591000022 ], [ -119.267401815, 50.743657300000109 ], [ -119.267088712000017, 50.743532793000064 ], [ -119.266961805999983, 50.74352886300003 ], [ -119.266259322999986, 50.743506999000054 ], [ -119.265644475999949, 50.743511296000065 ], [ -119.263305281999962, 50.743527626000066 ], [ -119.262270358999928, 50.743534840000059 ], [ -119.261972628999956, 50.743536895000048 ], [ -119.261849429, 50.743537766000017 ], [ -119.261405468999953, 50.743540834000044 ], [ -119.260583592, 50.743546540000054 ], [ -119.260332103999971, 50.743548308000079 ], [ -119.260278807999939, 50.743545782000083 ], [ -119.25985551399998, 50.743525807000012 ], [ -119.259109268999964, 50.743525556000037 ], [ -119.25051505799999, 50.743522490000039 ] ], [ [ -119.258479062, 50.742059704000049 ], [ -119.25871198199998, 50.740514893000032 ], [ -119.256482766999966, 50.740379977000075 ], [ -119.256248724, 50.741931730000083 ], [ -119.255299296999937, 50.741874256000123 ], [ -119.255254508999968, 50.742171156000055 ], [ -119.256880695999925, 50.742269594000064 ], [ -119.256872714999972, 50.74232251500009 ], [ -119.256889659, 50.74232354100009 ], [ -119.256943464999907, 50.741966773000101 ], [ -119.258479062, 50.742059704000049 ] ], [ [ -119.26665351299999, 50.740414171000076 ], [ -119.266737828999965, 50.739854262000094 ], [ -119.265463951999891, 50.73977726100005 ], [ -119.265486104000018, 50.739630193000039 ], [ -119.264264322999935, 50.739556328000035 ], [ -119.26435836, 50.738932088000084 ], [ -119.26368936599998, 50.738891637000073 ], [ -119.263676179999948, 50.738979168000064 ], [ -119.260844664999951, 50.738807913000109 ], [ -119.260573825999984, 50.740604851000064 ], [ -119.26136369299995, 50.740652631000032 ], [ -119.26144707499995, 50.740099371000049 ], [ -119.26665351299999, 50.740414171000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.4", "sL_BldgLoss": "37.4", "sL_StrLoss": "37.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C55035170BD55DC074008AB233604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.332577390999987, 50.751021704000024 ], [ -119.334347561999934, 50.751037102000048 ], [ -119.334277075999964, 50.751509825000035 ], [ -119.333059314, 50.751436980000108 ], [ -119.333048224, 50.751511353000076 ], [ -119.332057121999966, 50.751452056000034 ], [ -119.329173163999954, 50.751279460000013 ], [ -119.329001897999916, 50.752427144000109 ], [ -119.325311599999949, 50.75220618 ], [ -119.325431305999956, 50.75169110300002 ], [ -119.325454183999966, 50.751208725000076 ], [ -119.331498203999971, 50.751012293000045 ], [ -119.332577390999987, 50.751021704000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "1", "sL_AssetLoss": "174.6", "sL_BldgLoss": "174.6", "sL_StrLoss": "174.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006862B29F22DD5DC00BE26ED681644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.450721869999924, 50.787261354000087 ], [ -119.451218892999975, 50.783871015000031 ], [ -119.452627773999893, 50.783953726000092 ], [ -119.452731062999973, 50.783248948000079 ], [ -119.453976617999942, 50.783322056000046 ], [ -119.454023018999976, 50.783005377000087 ], [ -119.459675396999927, 50.783336966000064 ], [ -119.459185900999955, 50.786680344000018 ], [ -119.459016991999988, 50.786707111000055 ], [ -119.458869904999943, 50.786730387000041 ], [ -119.458441895999925, 50.786830598000108 ], [ -119.458425346999917, 50.786835257000121 ], [ -119.458318247999955, 50.786865412000076 ], [ -119.458219183999972, 50.78685960200005 ], [ -119.458214035999944, 50.786894754000087 ], [ -119.457007305999966, 50.787234510000175 ], [ -119.456619984, 50.787270396000118 ], [ -119.456259006, 50.787253699000118 ], [ -119.455901274, 50.78719721700007 ], [ -119.455258714999971, 50.787095807000107 ], [ -119.454405376999915, 50.787063797000037 ], [ -119.454353957999899, 50.787068409000057 ], [ -119.454337412999962, 50.787069877000121 ], [ -119.45237900799998, 50.787245207000119 ], [ -119.45107988099997, 50.787287994000039 ], [ -119.450721869999924, 50.787261354000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "94.6", "sL_BldgLoss": "94.6", "sL_StrLoss": "94.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DCB5CC715D85DC0F5AD201766654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.373635329999928, 50.793843351000113 ], [ -119.373641530000029, 50.793801566000099 ], [ -119.372839606999918, 50.793753929000026 ], [ -119.373370328999982, 50.790177046000018 ], [ -119.379023011999962, 50.790512708000087 ], [ -119.379016818999986, 50.790554493000087 ], [ -119.379818690999983, 50.790602085000039 ], [ -119.37928847799995, 50.79417899700011 ], [ -119.373635329999928, 50.793843351000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.4", "sL_BldgLoss": "49.4", "sL_StrLoss": "49.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000085C917752D55DC0A0701341DE664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.332155040999979, 50.802354851000125 ], [ -119.332238298999926, 50.802308050000136 ], [ -119.332350396999971, 50.802269651000096 ], [ -119.332478484999967, 50.802266892000041 ], [ -119.33273557899993, 50.802279378000051 ], [ -119.332893982999906, 50.802311947000113 ], [ -119.333010158999954, 50.80235439700003 ], [ -119.333153698999979, 50.802378324000124 ], [ -119.33356646799993, 50.802369460000108 ], [ -119.333679895999964, 50.802358029000104 ], [ -119.333806262999957, 50.802319303000054 ], [ -119.333946796999925, 50.802280285000059 ], [ -119.334101635999943, 50.802240987000076 ], [ -119.334353486999959, 50.802145573000061 ], [ -119.334452197999937, 50.802125457000031 ], [ -119.3345781399999, 50.802077744000037 ], [ -119.334662206999951, 50.80204892200004 ], [ -119.334788556999968, 50.802010228000043 ], [ -119.334871828999937, 50.801963449000027 ], [ -119.334885195999917, 50.801945140000086 ], [ -119.335082218999943, 50.801717481000033 ], [ -119.334558355999931, 50.805226796000056 ], [ -119.33149381799997, 50.805043691000051 ], [ -119.331523740999955, 50.80502207600005 ], [ -119.331647927999938, 50.804840036000073 ], [ -119.33165488399996, 50.804650123000037 ], [ -119.331427688999952, 50.804042024000069 ], [ -119.331018074, 50.803203808000049 ], [ -119.331051826999953, 50.803054265000107 ], [ -119.331196690999988, 50.802958989000103 ], [ -119.331462986999938, 50.802783845000079 ], [ -119.331559282999962, 50.802709752000055 ], [ -119.331655912999906, 50.802644643000043 ], [ -119.331767587999977, 50.802597259000024 ], [ -119.331849242999908, 50.802514461000058 ], [ -119.332043346999967, 50.802402270000087 ], [ -119.332155040999979, 50.802354851000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3EDB43522D95DC0D60CFCEAA2664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.39141611, 50.801214584000022 ], [ -119.395222651999958, 50.801439975000164 ], [ -119.395160804999961, 50.801482293000113 ], [ -119.394902617999918, 50.801658904000114 ], [ -119.394502173999953, 50.801830994000085 ], [ -119.394179048999916, 50.801909475000123 ], [ -119.393552600999925, 50.802061604000087 ], [ -119.393244918000022, 50.80218500200008 ], [ -119.392676606999927, 50.802507697000117 ], [ -119.39244509699995, 50.802586093000095 ], [ -119.392347875999974, 50.802618996000014 ], [ -119.3920201, 50.80265639600006 ], [ -119.391804621999952, 50.802647477000093 ], [ -119.391742571999927, 50.80264490800004 ], [ -119.391667184999918, 50.802641800000032 ], [ -119.391218007999939, 50.802553106000055 ], [ -119.39141611, 50.801214584000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5646000", "BldgCostT": "3630000", "sL_LossRatio": "1", "sL_AssetLoss": "596.5", "sL_BldgLoss": "596.5", "sL_StrLoss": "596.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E104F7E64D85DC02C4AA6966F664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.371969404999902, 50.801687226000084 ], [ -119.372198310999977, 50.800145042000075 ], [ -119.372902708999945, 50.800186883000038 ], [ -119.373091941999959, 50.798911759000063 ], [ -119.378745725999977, 50.799247431000069 ], [ -119.378673595999913, 50.799733886000105 ], [ -119.379294241999972, 50.799770717000087 ], [ -119.379229885999976, 50.800204781000048 ], [ -119.38060227299998, 50.800286209000028 ], [ -119.380843617999943, 50.798658036000099 ], [ -119.381256139999962, 50.798682509000116 ], [ -119.38130621599997, 50.798344646000068 ], [ -119.3836566, 50.798484054000014 ], [ -119.383671409999948, 50.798384100000106 ], [ -119.389325205999953, 50.798719239000043 ], [ -119.388875062999958, 50.801759839000091 ], [ -119.388744189999926, 50.801724487000108 ], [ -119.388392413999966, 50.801683807000082 ], [ -119.384968152999974, 50.801683352000111 ], [ -119.382527705999976, 50.80168297100002 ], [ -119.382469547999975, 50.801682960000115 ], [ -119.381873118000016, 50.801682867000061 ], [ -119.381135836999945, 50.801682750000097 ], [ -119.381022429999945, 50.801682702000072 ], [ -119.379363413999926, 50.801682399000065 ], [ -119.378992446999973, 50.801698163000026 ], [ -119.37753189599999, 50.80176015900004 ], [ -119.376855022999976, 50.801788897000051 ], [ -119.374030231999896, 50.801793053000047 ], [ -119.373785589999954, 50.801793399000083 ], [ -119.373296712999945, 50.801753505000086 ], [ -119.373080810999937, 50.801735932000014 ], [ -119.372679601999934, 50.801703312000043 ], [ -119.37215439699996, 50.801686513000085 ], [ -119.371969404999902, 50.801687226000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "38.3", "sL_BldgLoss": "38.3", "sL_StrLoss": "38.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DE9EB7D53D55DC0F1B1A2A3286A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.331111030999949, 50.827680963000063 ], [ -119.335136843, 50.82792137200007 ], [ -119.335159410999921, 50.828464403000119 ], [ -119.335258107999948, 50.828758985000071 ], [ -119.335889784999964, 50.829545494000065 ], [ -119.33593718, 50.829650467000072 ], [ -119.335977702999969, 50.829740191000049 ], [ -119.33598085099996, 50.829909326000099 ], [ -119.33598152399999, 50.829946823000071 ], [ -119.335981796999974, 50.829961406000109 ], [ -119.335868315999917, 50.830807127000099 ], [ -119.334947780999954, 50.830760300000108 ], [ -119.333619272999925, 50.830763297 ], [ -119.331445950999964, 50.830768182000014 ], [ -119.330649358999977, 50.83076995400009 ], [ -119.331111030999949, 50.827680963000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21424917", "BldgCostT": "13301667", "sL_LossRatio": "1", "sL_AssetLoss": "710.2", "sL_BldgLoss": "710.2", "sL_StrLoss": "710.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000692309882ADA5DC06915A2E826654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.405395098999989, 50.796455723000115 ], [ -119.405805834999924, 50.793673985000048 ], [ -119.40451376599999, 50.793597604000112 ], [ -119.404631273999939, 50.792801857000086 ], [ -119.401454921999985, 50.792614021000084 ], [ -119.401461778999973, 50.792567612000028 ], [ -119.401231916999933, 50.792554015000086 ], [ -119.401234349999967, 50.792537547000052 ], [ -119.400789004999979, 50.79251120400005 ], [ -119.40085014499999, 50.792097409000043 ], [ -119.399728899999957, 50.792031075000054 ], [ -119.39974771, 50.791903786000034 ], [ -119.399548003999968, 50.791891970000073 ], [ -119.39984226699994, 50.789900644000092 ], [ -119.399450637999976, 50.789877471000068 ], [ -119.399536225999967, 50.789298287000079 ], [ -119.399415976999961, 50.789291171000066 ], [ -119.399944523999977, 50.785714144000053 ], [ -119.405596842999955, 50.786048465000114 ], [ -119.405511339000014, 50.786627656000057 ], [ -119.405631582999945, 50.786634764000041 ], [ -119.405337596999971, 50.788626113000092 ], [ -119.40572921799999, 50.788649265000124 ], [ -119.405710426999988, 50.788776556000144 ], [ -119.405910121999952, 50.788788361000059 ], [ -119.405849032999967, 50.789202160000137 ], [ -119.406970214999959, 50.789268433000167 ], [ -119.406967785999939, 50.789284901 ], [ -119.407413101999964, 50.789311220000066 ], [ -119.407406251999959, 50.78935763100003 ], [ -119.407636097999983, 50.789371215000052 ], [ -119.407518651999951, 50.790166968000065 ], [ -119.409441756999911, 50.790280605000099 ], [ -119.409705928999927, 50.788490160000094 ], [ -119.409248689999941, 50.788463145000044 ], [ -119.409713337999918, 50.785313825000109 ], [ -119.409776442999956, 50.784886068000034 ], [ -119.415428730999949, 50.785219892000057 ], [ -119.415077059999973, 50.787605602000021 ], [ -119.415534292999951, 50.78763259400008 ], [ -119.415422556999928, 50.78839060400005 ], [ -119.41632842099996, 50.788444072000061 ], [ -119.416319014999928, 50.788507889000073 ], [ -119.418354658999974, 50.788628018000061 ], [ -119.418218952999936, 50.789549011000105 ], [ -119.419401688999926, 50.789618790000091 ], [ -119.419329991999987, 50.790105449000038 ], [ -119.419918706999965, 50.790140176000101 ], [ -119.419773545999959, 50.791125529000048 ], [ -119.419319998, 50.79121901000007 ], [ -119.418295011999959, 50.791499498000057 ], [ -119.417927003, 50.791646505000088 ], [ -119.417167897999946, 50.792057198000101 ], [ -119.417097830000017, 50.792101718000019 ], [ -119.4170938399999, 50.792104255000027 ], [ -119.41648050699996, 50.792493889000077 ], [ -119.415845877999942, 50.792853298000118 ], [ -119.41460759399996, 50.793434977000061 ], [ -119.413738312999939, 50.79338366000006 ], [ -119.413802485999895, 50.792948480000113 ], [ -119.413522515999915, 50.792931951000085 ], [ -119.412839714999947, 50.792891636000057 ], [ -119.412952713999942, 50.792125448000021 ], [ -119.41058429499995, 50.791985575000083 ], [ -119.410624141999932, 50.791715489000069 ], [ -119.410495215999973, 50.791707874000032 ], [ -119.410377438999944, 50.792506162000052 ], [ -119.412355550999962, 50.792622990000041 ], [ -119.412309807999918, 50.792933132000023 ], [ -119.412322673999938, 50.792933891000118 ], [ -119.412024748999926, 50.794953692000036 ], [ -119.411973797999934, 50.794971007000051 ], [ -119.411526994000013, 50.795070912 ], [ -119.410834285999954, 50.795137312000122 ], [ -119.409901199999936, 50.795171487000069 ], [ -119.409690226999956, 50.795227946000068 ], [ -119.409467678999988, 50.795287511000041 ], [ -119.409070602999947, 50.795466996000123 ], [ -119.408733989999945, 50.795699684000063 ], [ -119.408592187999929, 50.795829295000011 ], [ -119.408296247999914, 50.796627170000114 ], [ -119.405395098999989, 50.796455723000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "132.8", "sL_BldgLoss": "132.8", "sL_StrLoss": "132.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B78A44D97D65DC0194E3EE27C664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.350424242999978, 50.798729340000072 ], [ -119.356077832, 50.799066157000084 ], [ -119.355545624999962, 50.802642922000054 ], [ -119.349891586999917, 50.802306078000065 ], [ -119.350424242999978, 50.798729340000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "146.6", "sL_BldgLoss": "146.6", "sL_StrLoss": "146.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000003C81A3F5ED55DC0A91EFED4D7684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.33061358199997, 50.821230110000087 ], [ -119.330628933999961, 50.821127375000067 ], [ -119.330385080999946, 50.821112805000055 ], [ -119.330919519999952, 50.81753623600008 ], [ -119.331331329999927, 50.81756084200002 ], [ -119.331387818999971, 50.817182746000078 ], [ -119.33179133799996, 50.817206854000119 ], [ -119.331817108999985, 50.817034355000025 ], [ -119.332266286999953, 50.817061190000082 ], [ -119.332283692999937, 50.816944666000047 ], [ -119.33793944699994, 50.817282393000056 ], [ -119.33765689699996, 50.819175366000081 ], [ -119.336578612999972, 50.819724693000055 ], [ -119.336372091999948, 50.819865700000079 ], [ -119.335160694999928, 50.821080697000099 ], [ -119.334811575999979, 50.82148085500004 ], [ -119.33061358199997, 50.821230110000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135123584", "BldgCostT": "92473334", "sL_LossRatio": "0.997379602437164", "sL_AssetLoss": "5151.89", "sL_BldgLoss": "5138.39", "sL_StrLoss": "5133.5", "sL_NStrLoss": "4.89", "sL_ContLoss": "13.5", "geom_point": "0101000020E6100000EB5D9B110ED65DC0D718F009C4644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.347722098999967, 50.815885086000016 ], [ -119.347205881999969, 50.815759596000099 ], [ -119.346420292999966, 50.815690295000074 ], [ -119.345554411999927, 50.815664856000126 ], [ -119.344691796999882, 50.815639509000029 ], [ -119.344511347999983, 50.815652093000047 ], [ -119.34469166599996, 50.814442702000079 ], [ -119.342946560000016, 50.814338625000069 ], [ -119.339293386999955, 50.814120664000029 ], [ -119.339327489999931, 50.813892114000062 ], [ -119.33918920099994, 50.813883861000065 ], [ -119.339234047, 50.813583320000099 ], [ -119.338540799, 50.81354194400005 ], [ -119.338596589999938, 50.813168084000019 ], [ -119.334066882999949, 50.812897621000012 ], [ -119.334279086999956, 50.811476521000024 ], [ -119.334128482999972, 50.811467526000087 ], [ -119.334662505999987, 50.807890900000132 ], [ -119.335770127999922, 50.807957054000042 ], [ -119.33580756799999, 50.807706225000061 ], [ -119.338177699999903, 50.807847746000085 ], [ -119.338368496000015, 50.806569063000026 ], [ -119.33698423099996, 50.806486414000119 ], [ -119.337517966999954, 50.802909755000044 ], [ -119.338043224999979, 50.802941117000053 ], [ -119.338559017999941, 50.799483869000021 ], [ -119.338944150999964, 50.79950686400008 ], [ -119.338973407999987, 50.799310739000042 ], [ -119.338797725999939, 50.799300250000094 ], [ -119.338801952999972, 50.799384868000168 ], [ -119.337525907999989, 50.799410456000089 ], [ -119.337485543999975, 50.798601777000115 ], [ -119.337910883999939, 50.79859324900012 ], [ -119.33783014699999, 50.796975892000013 ], [ -119.337404820999964, 50.796984419000097 ], [ -119.33733755799993, 50.795636621000071 ], [ -119.338613497999916, 50.795611035000022 ], [ -119.338640416999951, 50.796150155000063 ], [ -119.339065735999924, 50.796141623000082 ], [ -119.33910612399994, 50.796950302000056 ], [ -119.33912679799991, 50.796949886000093 ], [ -119.339222326999959, 50.796309412000049 ], [ -119.339217015999907, 50.796309094 ], [ -119.33975045199999, 50.792732382000132 ], [ -119.342916462999952, 50.792921367000105 ], [ -119.345006679999955, 50.793046086000075 ], [ -119.345420143999959, 50.790271207000075 ], [ -119.346755154999983, 50.790350843000127 ], [ -119.346844412999928, 50.789751638000027 ], [ -119.347136697999957, 50.789769071000123 ], [ -119.347345536999981, 50.788366973000088 ], [ -119.346434127999927, 50.788312610000069 ], [ -119.346607901999931, 50.787146027000048 ], [ -119.346741477999942, 50.786249252000054 ], [ -119.346323369999979, 50.786224310000122 ], [ -119.346524675999959, 50.784872838000091 ], [ -119.345263328, 50.784797583000099 ], [ -119.345441157999929, 50.783603882000101 ], [ -119.345110299999945, 50.783584139000084 ], [ -119.344675426999942, 50.786503007000071 ], [ -119.34114960699992, 50.78629256300006 ], [ -119.341024889999943, 50.787129144000062 ], [ -119.340984395999953, 50.78740076900003 ], [ -119.341163267999917, 50.78741144800005 ], [ -119.34114116799999, 50.787559689000048 ], [ -119.341245976, 50.787565946000072 ], [ -119.34071272099996, 50.791142687000026 ], [ -119.340030869999921, 50.791101979000061 ], [ -119.339997598999915, 50.791325103000062 ], [ -119.33519183199995, 50.79103806500008 ], [ -119.334921168999969, 50.79024332700007 ], [ -119.335039868999942, 50.788789950000094 ], [ -119.335166275999882, 50.787510504000046 ], [ -119.334583138999946, 50.786193945000015 ], [ -119.335020825999962, 50.786178260000028 ], [ -119.335275875999969, 50.786169104000045 ], [ -119.336992217999949, 50.786120719000081 ], [ -119.338679224999964, 50.786077175000059 ], [ -119.33868025699999, 50.786061671000027 ], [ -119.34125797499992, 50.785957082000088 ], [ -119.340234541999948, 50.776859728000012 ], [ -119.340321448999944, 50.77662134400002 ], [ -119.340416793999978, 50.776359799000097 ], [ -119.34051909599998, 50.775797581000056 ], [ -119.340521998999947, 50.775704561000055 ], [ -119.340532339999967, 50.775370620000039 ], [ -119.340547155999985, 50.774892101000084 ], [ -119.340555286999958, 50.774630399000117 ], [ -119.340562495999961, 50.774397320000126 ], [ -119.340507283999969, 50.773971609000036 ], [ -119.340476313999929, 50.773732694000095 ], [ -119.340228701999933, 50.773051210000062 ], [ -119.33992873399994, 50.772507775000058 ], [ -119.339852784999962, 50.77237019600004 ], [ -119.339367287, 50.771505193000053 ], [ -119.339030654999931, 50.770905361000061 ], [ -119.33825391399999, 50.769521296000043 ], [ -119.338128189999964, 50.769293605000016 ], [ -119.337865824999966, 50.768346438000087 ], [ -119.337819703999983, 50.768179907000047 ], [ -119.337813293999957, 50.767105101000048 ], [ -119.337804040999941, 50.767072794000093 ], [ -119.337787197999972, 50.767013985000048 ], [ -119.337747370999949, 50.766875134000074 ], [ -119.337633285999971, 50.76647718500007 ], [ -119.337510601999952, 50.766238903000051 ], [ -119.337057678999926, 50.765788797000049 ], [ -119.33542879499997, 50.764748595000071 ], [ -119.334611702999936, 50.764189092000073 ], [ -119.33388638699995, 50.763578289000037 ], [ -119.333708801999947, 50.763364712000104 ], [ -119.331726598999978, 50.761580694000024 ], [ -119.331216695999927, 50.761226296000096 ], [ -119.330664899999974, 50.760913602000052 ], [ -119.330448672, 50.760807641000063 ], [ -119.330096709999964, 50.760635099000062 ], [ -119.32955405699991, 50.760408165000101 ], [ -119.32843779800001, 50.759941308000101 ], [ -119.327612074999976, 50.7594885930001 ], [ -119.327592431999932, 50.759473449000026 ], [ -119.330018316999912, 50.759618642000063 ], [ -119.330315269, 50.757628686000018 ], [ -119.332996911999984, 50.757789124000119 ], [ -119.333110883999922, 50.757025011000088 ], [ -119.331672458999947, 50.756938960000078 ], [ -119.331862034999958, 50.755668189000112 ], [ -119.331594143999951, 50.755652161000079 ], [ -119.33212770499992, 50.752075315000091 ], [ -119.332909899, 50.752122113000084 ], [ -119.334931637999901, 50.7522430450001 ], [ -119.337775274999984, 50.752413076000018 ], [ -119.337585879999892, 50.75368386300007 ], [ -119.337853761999895, 50.753699876000084 ], [ -119.337685538999963, 50.754828586 ], [ -119.339563485, 50.754940830000081 ], [ -119.339442558999949, 50.755752396000098 ], [ -119.342165057999949, 50.755915061000024 ], [ -119.341950804999925, 50.757353480000035 ], [ -119.342419150999945, 50.757381456000125 ], [ -119.342329090999954, 50.757986098000075 ], [ -119.342773579999971, 50.758012648000069 ], [ -119.342557434999947, 50.759463836000073 ], [ -119.344906114999944, 50.759604092000053 ], [ -119.34437348299997, 50.763180966000043 ], [ -119.34298931299999, 50.763098315000022 ], [ -119.342985219999932, 50.763125799000086 ], [ -119.342756889999947, 50.763112162000056 ], [ -119.342573570999946, 50.764342806000094 ], [ -119.342024421999938, 50.764310008000095 ], [ -119.341999152999946, 50.764479618000109 ], [ -119.33958163699999, 50.764335204000062 ], [ -119.338963132999936, 50.76429824800006 ], [ -119.338960010999955, 50.764319188000073 ], [ -119.338484799999918, 50.764290792000118 ], [ -119.338302769999984, 50.765511959000058 ], [ -119.340413493999918, 50.765638070000129 ], [ -119.341247765999952, 50.765687905000043 ], [ -119.341164552999913, 50.766246364000054 ], [ -119.341347700999961, 50.766257303000039 ], [ -119.341094809999959, 50.767954483000061 ], [ -119.340814706999979, 50.769834133000082 ], [ -119.339905904999952, 50.769779849000081 ], [ -119.339673706999989, 50.771337703000036 ], [ -119.342799311999954, 50.77152437200008 ], [ -119.342778726999938, 50.771662543000041 ], [ -119.343109625999915, 50.77168230000008 ], [ -119.345577131999988, 50.771829596000039 ], [ -119.345466679999987, 50.772571252000056 ], [ -119.347382027000023, 50.772685549000094 ], [ -119.347013852999936, 50.775158244000096 ], [ -119.347637388999928, 50.775195446000041 ], [ -119.347581315999946, 50.775572062000066 ], [ -119.348319996000015, 50.775616128000138 ], [ -119.348248869999949, 50.776093863000057 ], [ -119.351404229999915, 50.77628204300003 ], [ -119.351336579999938, 50.776736643000078 ], [ -119.352394529999984, 50.77679971800012 ], [ -119.352296715999927, 50.777457103000067 ], [ -119.352704465999977, 50.7774814100001 ], [ -119.352436835999967, 50.779280114000123 ], [ -119.35369465899997, 50.779355086000052 ], [ -119.353619145999943, 50.77986266900011 ], [ -119.357055084999928, 50.780067395000096 ], [ -119.356662974999921, 50.782704243000119 ], [ -119.358396026999955, 50.782807464000022 ], [ -119.358258432999961, 50.783732906000132 ], [ -119.358900675999962, 50.783771151000046 ], [ -119.358805923999981, 50.784408480000067 ], [ -119.359213409999953, 50.784432743000082 ], [ -119.358681625999907, 50.788009583000061 ], [ -119.356464085999932, 50.78787752300007 ], [ -119.356413438999979, 50.788218035000043 ], [ -119.353513976999963, 50.788045298000029 ], [ -119.353253371999983, 50.789796570000121 ], [ -119.353505786999932, 50.789811611000061 ], [ -119.352973483999975, 50.793388401000058 ], [ -119.352014201999907, 50.793331237000125 ], [ -119.351964455999948, 50.793665425000071 ], [ -119.351010097, 50.793608545000041 ], [ -119.350889410999969, 50.794419170000069 ], [ -119.350880553999957, 50.794478647000069 ], [ -119.349915265999968, 50.794421108000094 ], [ -119.348818867999924, 50.794355744000057 ], [ -119.345569108999911, 50.794161939000091 ], [ -119.345393770999948, 50.795338646000033 ], [ -119.345413862000015, 50.795339845000051 ], [ -119.345206700999938, 50.796730043000089 ], [ -119.346659817999935, 50.796816713000077 ], [ -119.346559369999966, 50.797490901000089 ], [ -119.347380941999972, 50.797539894000074 ], [ -119.346848057999921, 50.801116624000016 ], [ -119.346453533, 50.801093097000027 ], [ -119.346288053999956, 50.802203620000071 ], [ -119.347511963999978, 50.80227660000002 ], [ -119.346979033999943, 50.805853310000074 ], [ -119.344371951999946, 50.805697838000086 ], [ -119.34419037299989, 50.806915871000072 ], [ -119.344023074999882, 50.806905893000092 ], [ -119.343629398999951, 50.809546379000054 ], [ -119.34295994899999, 50.809506445000096 ], [ -119.342736130999953, 50.809493094000025 ], [ -119.342634037999929, 50.81017771100008 ], [ -119.342962128999957, 50.810197282000111 ], [ -119.344729418999947, 50.810302693000025 ], [ -119.344684613999959, 50.810603236000084 ], [ -119.345377819999939, 50.810644575000019 ], [ -119.345343751999962, 50.810873127000093 ], [ -119.345482031999921, 50.810881373000058 ], [ -119.344995479999938, 50.814145180000089 ], [ -119.345273569999947, 50.81416176200009 ], [ -119.34535711299999, 50.813601357000081 ], [ -119.346655014999968, 50.813678739000046 ], [ -119.346742481999925, 50.813091888000073 ], [ -119.346876780999978, 50.813099894000047 ], [ -119.346916589, 50.81283279200008 ], [ -119.352571932999965, 50.81316978100007 ], [ -119.352464853999948, 50.813888847000051 ], [ -119.35554695299993, 50.81407238000002 ], [ -119.355890757999958, 50.811762494000092 ], [ -119.360143010999977, 50.812015567000067 ], [ -119.360567103999969, 50.809164096000046 ], [ -119.361232188, 50.809203663000062 ], [ -119.361250977999987, 50.809077312000099 ], [ -119.362074658999944, 50.809126309000099 ], [ -119.362096645999912, 50.808978430000074 ], [ -119.36389478199996, 50.809085372000069 ], [ -119.364086226999987, 50.807797374000067 ], [ -119.365859782999934, 50.807902825000063 ], [ -119.365909860000016, 50.807565815000039 ], [ -119.366020255999942, 50.807572377000035 ], [ -119.366018963999949, 50.808923177000075 ], [ -119.366017979, 50.809905295000085 ], [ -119.366021244999956, 50.809976238000068 ], [ -119.366022848999989, 50.810011390000057 ], [ -119.366086213999964, 50.811395213 ], [ -119.366107690999968, 50.811864603000117 ], [ -119.366081512999983, 50.812444003000067 ], [ -119.366018084999922, 50.8126404570001 ], [ -119.365991499999922, 50.812722805000114 ], [ -119.365977013999967, 50.812744012000039 ], [ -119.365939146999921, 50.812799333000058 ], [ -119.365836690000023, 50.812948994000067 ], [ -119.365827458999931, 50.812957835000127 ], [ -119.365709342999963, 50.812950814000025 ], [ -119.365690565999941, 50.813077166000085 ], [ -119.36143818, 50.812824305000021 ], [ -119.361227194999955, 50.814243017000095 ], [ -119.360119491999939, 50.814408707000069 ], [ -119.359693103999959, 50.814523192000081 ], [ -119.359333791999958, 50.814704802000072 ], [ -119.359064864999979, 50.814930978000113 ], [ -119.35905329799999, 50.814940708000051 ], [ -119.358697916999944, 50.815316408000086 ], [ -119.358374329999947, 50.815518715000096 ], [ -119.357966079999954, 50.815494421000032 ], [ -119.357931864999955, 50.815724356000011 ], [ -119.356997208999942, 50.816152483000089 ], [ -119.356780099000034, 50.816221708000072 ], [ -119.35662885, 50.81624990600006 ], [ -119.356303198999967, 50.816310614000074 ], [ -119.355928528, 50.816324799000014 ], [ -119.355794000999936, 50.816329914000036 ], [ -119.355054011999968, 50.816276248000037 ], [ -119.35474960199997, 50.816254210000103 ], [ -119.35447148799993, 50.816245386000041 ], [ -119.353973016999973, 50.816229596000063 ], [ -119.350102780999961, 50.816251638000033 ], [ -119.349632809999932, 50.816254292000075 ], [ -119.349024713999967, 50.816237903000093 ], [ -119.348982537999959, 50.816232628000073 ], [ -119.348909091999928, 50.816223477000051 ], [ -119.348650804999934, 50.81619130700004 ], [ -119.34831988699996, 50.816104791000043 ], [ -119.347854813999959, 50.815933868000066 ], [ -119.347722098999967, 50.815885086000016 ] ], [ [ -119.338792326999936, 50.79919215700005 ], [ -119.338844207999927, 50.798844361000135 ], [ -119.338775027999972, 50.798845749000066 ], [ -119.338792326999936, 50.79919215700005 ] ], [ [ -119.344923779999945, 50.781355264000105 ], [ -119.344936841, 50.781267584000062 ], [ -119.344249170999916, 50.781226544000056 ], [ -119.344236106999958, 50.781314225000045 ], [ -119.344923779999945, 50.781355264000105 ] ], [ [ -119.33361444599997, 50.761946765000033 ], [ -119.333690134999955, 50.761439325000097 ], [ -119.333298905999953, 50.761415927000016 ], [ -119.333291684999949, 50.761464338000096 ], [ -119.333516953999919, 50.761477810000017 ], [ -119.333448484999963, 50.761936840000068 ], [ -119.33361444599997, 50.761946765000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6166583", "BldgCostT": "4043333", "sL_LossRatio": "0.985760080985321", "sL_AssetLoss": "296.35", "sL_BldgLoss": "292.13", "sL_StrLoss": "290.6", "sL_NStrLoss": "1.53", "sL_ContLoss": "4.22", "geom_point": "0101000020E61000009AB40CE542DB5DC08A2E1CC6AC644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.421373786999979, 50.790530975000095 ], [ -119.421473996000017, 50.78985058300001 ], [ -119.420919219999988, 50.789817864000042 ], [ -119.421089565999935, 50.788661303000012 ], [ -119.420130674999911, 50.788604745000043 ], [ -119.420409744999944, 50.786710158000055 ], [ -119.418081440999956, 50.786572792000101 ], [ -119.418608464999934, 50.782995665000037 ], [ -119.424260579999981, 50.783329044000084 ], [ -119.42398169399992, 50.785223649000081 ], [ -119.426309945999947, 50.785360891000046 ], [ -119.426143310999919, 50.786493247000138 ], [ -119.430025704999963, 50.786721991000029 ], [ -119.429939019999978, 50.787311373000151 ], [ -119.43061847199999, 50.787351390000026 ], [ -119.430832565999964, 50.785895552000099 ], [ -119.431474336999898, 50.78593334700011 ], [ -119.431520150999972, 50.785621767000094 ], [ -119.432728256999908, 50.785692905000118 ], [ -119.432770008999938, 50.785408895000053 ], [ -119.433562303, 50.785455541000069 ], [ -119.433578077999954, 50.785348214000052 ], [ -119.439230600999963, 50.785680835000051 ], [ -119.439224052999961, 50.785725424000155 ], [ -119.439676288999976, 50.785752023000036 ], [ -119.439581923999981, 50.78639458800005 ], [ -119.440809696999949, 50.786466793000066 ], [ -119.440764966999936, 50.786771428000051 ], [ -119.439858518999984, 50.786827090000052 ], [ -119.439411384999971, 50.786814308000046 ], [ -119.438457850999924, 50.786711689000057 ], [ -119.438455254999951, 50.786711395000097 ], [ -119.438025008999986, 50.786665109000104 ], [ -119.437896650999932, 50.78667186000007 ], [ -119.437848923999951, 50.786674383000104 ], [ -119.437579690999982, 50.786688592000083 ], [ -119.434028665999932, 50.787302317000105 ], [ -119.433391660999973, 50.787412376000098 ], [ -119.432070293, 50.787640695000057 ], [ -119.431293611999962, 50.787814094000048 ], [ -119.43010747699999, 50.788192605000063 ], [ -119.42939939599999, 50.788374606000097 ], [ -119.428430001999985, 50.788549289000109 ], [ -119.426472396999884, 50.788852864000056 ], [ -119.42547898699999, 50.789006894000117 ], [ -119.424936607999925, 50.789108392000102 ], [ -119.424429501999924, 50.789241787 ], [ -119.42382482, 50.789444378000042 ], [ -119.423742713999943, 50.789471899000063 ], [ -119.423349214999988, 50.789637205000133 ], [ -119.42166997899993, 50.790459208000058 ], [ -119.42148868299995, 50.79053775200007 ], [ -119.421373786999979, 50.790530975000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20041290", "BldgCostT": "13140373", "sL_LossRatio": "0.998804468554067", "sL_AssetLoss": "636.537", "sL_BldgLoss": "635.776", "sL_StrLoss": "635.5", "sL_NStrLoss": "0.276", "sL_ContLoss": "0.761", "geom_point": "0101000020E6100000A2426D0269D75DC097E1E423CE654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365052998999971, 50.802835496000107 ], [ -119.365426908999922, 50.800319042000083 ], [ -119.363727332999986, 50.800217965000051 ], [ -119.363936676999984, 50.798809283000026 ], [ -119.363748129999976, 50.798798068000067 ], [ -119.363899433999975, 50.79777992400011 ], [ -119.363757301999954, 50.797771471000068 ], [ -119.363945439999952, 50.796505409000119 ], [ -119.35963385899997, 50.796248859000045 ], [ -119.359643357999943, 50.796184972000098 ], [ -119.358599428, 50.796122831000041 ], [ -119.358648666999954, 50.795791741000073 ], [ -119.353835498999956, 50.795505100000028 ], [ -119.353998033999972, 50.794412928000057 ], [ -119.354367758999928, 50.791928315000035 ], [ -119.357794273999957, 50.792132398000049 ], [ -119.358018374999972, 50.790625495000079 ], [ -119.36367099899995, 50.790961932000073 ], [ -119.363621281999912, 50.791296540000069 ], [ -119.365889849, 50.791431481000068 ], [ -119.365965009999925, 50.791435951000089 ], [ -119.366017899, 50.791079880000026 ], [ -119.366333767999919, 50.791098665000078 ], [ -119.366392803999986, 50.790701188000035 ], [ -119.366400402999915, 50.79070163900009 ], [ -119.366436916999959, 50.790455787000056 ], [ -119.37208958299999, 50.790791799000033 ], [ -119.371842442999963, 50.792457170000041 ], [ -119.372176196999959, 50.792477001000059 ], [ -119.371857455999987, 50.794624766000027 ], [ -119.374776060999949, 50.794798133000057 ], [ -119.374768417999945, 50.794849657000086 ], [ -119.375850331999914, 50.794913904000047 ], [ -119.375785831999949, 50.79534875500012 ], [ -119.375820361999956, 50.795350806000094 ], [ -119.375289774999928, 50.798927679000066 ], [ -119.371605651, 50.798708864000055 ], [ -119.371580210999952, 50.798880263000143 ], [ -119.369646805999963, 50.798765381000074 ], [ -119.369538658999929, 50.799493750000039 ], [ -119.371238220999885, 50.799594739000035 ], [ -119.3709269899999, 50.801691255000065 ], [ -119.369313897999987, 50.801697467000139 ], [ -119.367092079999964, 50.801706005 ], [ -119.366052058999941, 50.801684628000039 ], [ -119.36602589099999, 50.801684109000078 ], [ -119.366025787999916, 50.801800654000068 ], [ -119.366025752999946, 50.801826148000018 ], [ -119.366025257999965, 50.802356561000053 ], [ -119.366024736999975, 50.802893275000073 ], [ -119.365052998999971, 50.802835496000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10950000", "BldgCostT": "7080000", "sL_LossRatio": "1", "sL_AssetLoss": "495.6", "sL_BldgLoss": "495.6", "sL_StrLoss": "495.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D651578DFD45DC05D67C736BE694940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.321687100999895, 50.830261969000034 ], [ -119.320399370999951, 50.827997292000084 ], [ -119.320182019999947, 50.827328502000043 ], [ -119.320141538999934, 50.827203984000064 ], [ -119.320081844999891, 50.827020223000012 ], [ -119.319947043999946, 50.826567415000063 ], [ -119.319946758999933, 50.826481358000095 ], [ -119.319946372999979, 50.826354680000051 ], [ -119.31994481, 50.825841884000084 ], [ -119.319943056999975, 50.825278644000058 ], [ -119.319942218999955, 50.825010364000086 ], [ -119.319940473999978, 50.824437987000039 ], [ -119.320252625999942, 50.825593358000098 ], [ -119.320258292999952, 50.823796179000041 ], [ -119.32025937899999, 50.823451192000086 ], [ -119.32030514899995, 50.823325197000123 ], [ -119.32032223499999, 50.823278053000067 ], [ -119.320344324999908, 50.82321721000006 ], [ -119.320528941999925, 50.822984694000084 ], [ -119.320904215999988, 50.822670877000043 ], [ -119.321329769999963, 50.822315032000041 ], [ -119.321443448, 50.822219950000054 ], [ -119.321558516999914, 50.82212375200006 ], [ -119.321678677999984, 50.822023249000075 ], [ -119.322550241, 50.821395156000044 ], [ -119.322895433000014, 50.821217434000069 ], [ -119.32290226, 50.821213906000025 ], [ -119.323765200999972, 50.820769587000036 ], [ -119.323989238999985, 50.820607085000049 ], [ -119.324304427999891, 50.820159530000069 ], [ -119.324358618999923, 50.819997681000082 ], [ -119.324365697999966, 50.819701749000046 ], [ -119.324850789999985, 50.819730759000016 ], [ -119.324638698999962, 50.82114881400004 ], [ -119.324674695999988, 50.821150967000037 ], [ -119.32464620099995, 50.8213414780001 ], [ -119.324993696999968, 50.821362258000057 ], [ -119.324991160999929, 50.821379222000132 ], [ -119.325869371999929, 50.821431735000026 ], [ -119.325574328999949, 50.823404605000057 ], [ -119.325334482999949, 50.825008262000097 ], [ -119.324158601999926, 50.824937949000073 ], [ -119.324151130999937, 50.824987890000074 ], [ -119.322081562999969, 50.82486410700006 ], [ -119.321970327999949, 50.825607444000049 ], [ -119.326493618999947, 50.825877936000069 ], [ -119.326463161, 50.825265405000088 ], [ -119.327739918999953, 50.825239928000073 ], [ -119.327776043999961, 50.825966006000037 ], [ -119.327855529999951, 50.825970756000046 ], [ -119.328245938999927, 50.823359412000109 ], [ -119.328312824999912, 50.822911989 ], [ -119.333377295999981, 50.823214560000061 ], [ -119.333704596999979, 50.823234107000125 ], [ -119.333706150999944, 50.823238935000042 ], [ -119.333710974999946, 50.823253840000085 ], [ -119.333774835999989, 50.823451764 ], [ -119.333843578999947, 50.823664859000054 ], [ -119.333889111999895, 50.823805901000128 ], [ -119.333993312999908, 50.824254109000037 ], [ -119.333986581999923, 50.824344443000044 ], [ -119.333963704999974, 50.824652895000028 ], [ -119.333664023999944, 50.825847399000054 ], [ -119.333670974999947, 50.826070763000068 ], [ -119.333671597999952, 50.826089968000097 ], [ -119.333672396999958, 50.82611590000009 ], [ -119.333865987999943, 50.826351391000088 ], [ -119.333788058999943, 50.826873064000061 ], [ -119.333749990999976, 50.826870791000019 ], [ -119.333613304999972, 50.827785767000137 ], [ -119.329131354, 50.827518047000098 ], [ -119.32916429, 50.828179597000087 ], [ -119.329589902999913, 50.828171097000087 ], [ -119.329657020999932, 50.829518895000014 ], [ -119.328380147999951, 50.82954439400006 ], [ -119.328313067999929, 50.828196594000126 ], [ -119.328010676999938, 50.828202631000089 ], [ -119.327626111999962, 50.830774497000043 ], [ -119.32725685799997, 50.83075242900005 ], [ -119.327101562999928, 50.830678648000074 ], [ -119.326989501999989, 50.830502357000107 ], [ -119.327042698999932, 50.82999401899999 ], [ -119.327224700999949, 50.829492509000076 ], [ -119.327143723999896, 50.829450090000108 ], [ -119.327096328999986, 50.829425287000042 ], [ -119.326955847999926, 50.829458391000081 ], [ -119.326330676999973, 50.830697072000163 ], [ -119.323166810999922, 50.83050790900009 ], [ -119.323120475999929, 50.830817556000106 ], [ -119.322886397999952, 50.832381801000054 ], [ -119.32287609399998, 50.832381185000017 ], [ -119.322616734999968, 50.831918175000069 ], [ -119.322149218999925, 50.831083499000094 ], [ -119.321687100999895, 50.830261969000034 ] ], [ [ -119.328004757999977, 50.827123437000061 ], [ -119.32809683699999, 50.826507571000079 ], [ -119.328092374999954, 50.826507304000081 ], [ -119.32800024, 50.827123528000115 ], [ -119.328004757999977, 50.827123437000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "1", "sL_AssetLoss": "143.9", "sL_BldgLoss": "143.9", "sL_StrLoss": "143.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000824CF8C6CCE05DC05B05B508DA584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.509819094999926, 50.695939198000104 ], [ -119.509853853999942, 50.695699431000058 ], [ -119.509626805999972, 50.695686192000075 ], [ -119.509628353, 50.695675517000105 ], [ -119.508981085999949, 50.695637775000137 ], [ -119.509499798999968, 50.692059842000099 ], [ -119.515141135999926, 50.692388662000035 ], [ -119.515139589999976, 50.692399337000019 ], [ -119.515786815999959, 50.692437043000069 ], [ -119.515752091999957, 50.692676814000031 ], [ -119.515979125999962, 50.692690039000126 ], [ -119.515460920999899, 50.696268 ], [ -119.509819094999926, 50.695939198000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81639833", "BldgCostT": "56303333", "sL_LossRatio": "1", "sL_AssetLoss": "4325", "sL_BldgLoss": "4325", "sL_StrLoss": "4325", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A616A5DF59D75DC01EBB762F184C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377402900999954, 50.632454775000092 ], [ -119.377401735999982, 50.631887878000029 ], [ -119.377399118999946, 50.630646734000081 ], [ -119.377393096999924, 50.62775029000008 ], [ -119.377391894999931, 50.627183101000142 ], [ -119.377330378999943, 50.626714789000054 ], [ -119.377201498999952, 50.62640480400011 ], [ -119.377099014999942, 50.626252502000092 ], [ -119.376814504999956, 50.62596670500006 ], [ -119.375274905999945, 50.624850799000072 ], [ -119.374071898999929, 50.623797934000052 ], [ -119.373216104999983, 50.623048883000067 ], [ -119.372184739999952, 50.622190428000124 ], [ -119.369229888999925, 50.619730697000122 ], [ -119.368793094999901, 50.619397423000045 ], [ -119.368376081999912, 50.619079260000049 ], [ -119.367998308999915, 50.618791008000109 ], [ -119.36621318899995, 50.617696404000093 ], [ -119.36599247399991, 50.617496073000034 ], [ -119.365893900999978, 50.617406604000116 ], [ -119.365767189999985, 50.617169002000026 ], [ -119.365760185999946, 50.616582695000034 ], [ -119.365744919999941, 50.615305424000098 ], [ -119.365731283999935, 50.614166688000047 ], [ -119.365809723999959, 50.608441545000041 ], [ -119.365811347999909, 50.608324401000047 ], [ -119.365814559999976, 50.60809012300011 ], [ -119.365854500999959, 50.605173501000074 ], [ -119.362463566999978, 50.605150555000115 ], [ -119.362336541000019, 50.605149695000094 ], [ -119.362152492999911, 50.605148449000176 ], [ -119.360965848999967, 50.605140392000109 ], [ -119.361167972999965, 50.603774635000121 ], [ -119.361633817999959, 50.603802480000077 ], [ -119.361881086999986, 50.602131458000066 ], [ -119.359224296999926, 50.601972620000041 ], [ -119.359227340999936, 50.601952061000119 ], [ -119.35879668499993, 50.601926308000031 ], [ -119.359326259999946, 50.5983486800001 ], [ -119.360777146, 50.598435436000052 ], [ -119.360852217999962, 50.597928113000052 ], [ -119.361525904999922, 50.597968389000108 ], [ -119.361665543999933, 50.597024617000081 ], [ -119.36093560099999, 50.596980977000015 ], [ -119.361017985, 50.596424215000127 ], [ -119.359690598999947, 50.596344844 ], [ -119.359735581999956, 50.596040896000012 ], [ -119.359488813999988, 50.596026138000035 ], [ -119.359491697999957, 50.596006642000113 ], [ -119.358934597999948, 50.595973323000045 ], [ -119.35933851799993, 50.593244197000033 ], [ -119.355340869999978, 50.59300503000005 ], [ -119.355462347999932, 50.59218468500007 ], [ -119.35536747699993, 50.592179007000041 ], [ -119.35518650299997, 50.593401114000066 ], [ -119.349558758999947, 50.593064170000027 ], [ -119.349703291999958, 50.592088977000039 ], [ -119.348816400999937, 50.592035851000055 ], [ -119.348866678999983, 50.591696656000046 ], [ -119.348018300999939, 50.591645830000132 ], [ -119.34854861299999, 50.588068208000067 ], [ -119.349014308, 50.588096109000048 ], [ -119.349030994999978, 50.587983519000069 ], [ -119.3546581, 50.588320492000058 ], [ -119.354627760000014, 50.588525373000046 ], [ -119.354848688999965, 50.588538598000063 ], [ -119.354941642999918, 50.587910854000015 ], [ -119.355058100999941, 50.587917825000076 ], [ -119.355309821999981, 50.586217759000114 ], [ -119.359231746999953, 50.586452436000101 ], [ -119.359478812999953, 50.58478269600004 ], [ -119.35761702299996, 50.584671310000097 ], [ -119.35766990799999, 50.584313987000023 ], [ -119.357554944999976, 50.584307108000083 ], [ -119.357965373999917, 50.581533821000107 ], [ -119.357863447999961, 50.58152772200004 ], [ -119.358101423999926, 50.579919569000054 ], [ -119.35732174099995, 50.579872911000052 ], [ -119.35735840699995, 50.579625154000027 ], [ -119.35714379800001, 50.579612310000073 ], [ -119.357136309999987, 50.579662902000038 ], [ -119.351510268999945, 50.579326051000059 ], [ -119.351544780999959, 50.579093052000076 ], [ -119.351482982999926, 50.579089350000054 ], [ -119.351510962999924, 50.578900458000064 ], [ -119.351469094999956, 50.57889795100013 ], [ -119.351523818999951, 50.578528499000093 ], [ -119.350921803999938, 50.578492436000026 ], [ -119.350940856999927, 50.578363813000117 ], [ -119.347017787999974, 50.57812872900012 ], [ -119.347548019999962, 50.574551053000079 ], [ -119.350672837999966, 50.574738317000076 ], [ -119.350748281999969, 50.574228982000093 ], [ -119.350592283999973, 50.574219636000059 ], [ -119.350832946999944, 50.572594835000075 ], [ -119.347701303999912, 50.572407159000065 ], [ -119.347832572999963, 50.571521285000102 ], [ -119.345904807999887, 50.571405712000043 ], [ -119.345906863999915, 50.571391839000114 ], [ -119.345641099999966, 50.571375904000078 ], [ -119.345646688999963, 50.57133819900006 ], [ -119.345329793999937, 50.571319196 ], [ -119.345625832999957, 50.569321965000022 ], [ -119.345860078, 50.567741499000093 ], [ -119.346949848999913, 50.567806843000014 ], [ -119.34697302299999, 50.567650450000045 ], [ -119.346115375999943, 50.56759902500005 ], [ -119.346246711999939, 50.566712804000076 ], [ -119.346456200999953, 50.566731627000117 ], [ -119.346640978999972, 50.566762165000064 ], [ -119.346797268999978, 50.566784571000085 ], [ -119.346910378999965, 50.566790270000077 ], [ -119.347046172, 50.566686697000044 ], [ -119.34716317699997, 50.566492574000037 ], [ -119.347222817999949, 50.566281530000111 ], [ -119.347201603999963, 50.566145124000087 ], [ -119.347166293, 50.566008988000057 ], [ -119.347115939999952, 50.565854910000056 ], [ -119.347048195999918, 50.565637324000143 ], [ -119.346981378999942, 50.565437987000095 ], [ -119.346886301, 50.565239153000064 ], [ -119.346777145999937, 50.565040558000071 ], [ -119.34664068099994, 50.564860623000051 ], [ -119.346490538999916, 50.564690053000056 ], [ -119.346313579999986, 50.564547156000046 ], [ -119.34629857499999, 50.564529203000099 ], [ -119.346136184999963, 50.564395201000046 ], [ -119.345928654999938, 50.564207291000045 ], [ -119.345736164999963, 50.564037380000102 ], [ -119.345834115999963, 50.564017462000088 ], [ -119.34608509, 50.563949618000045 ], [ -119.346210199999973, 50.56391119700006 ], [ -119.34630724499999, 50.563873308000041 ], [ -119.34633569499999, 50.563865779000139 ], [ -119.346600099999989, 50.563795638000016 ], [ -119.34701914499999, 50.563697516000104 ], [ -119.347340666, 50.563628292000054 ], [ -119.347564773999977, 50.563587934000076 ], [ -119.34771817599993, 50.56372204200008 ], [ -119.348089199999933, 50.564046385000097 ], [ -119.348899310999954, 50.5650078110001 ], [ -119.349087363999971, 50.565230970000094 ], [ -119.349377685999926, 50.565575522000081 ], [ -119.35005101699997, 50.566069416000104 ], [ -119.350973277999984, 50.56674589200005 ], [ -119.35131711299999, 50.567135495000095 ], [ -119.351549386, 50.567511298000049 ], [ -119.35222693399993, 50.569216881000038 ], [ -119.352777079999953, 50.570601757000084 ], [ -119.353086220999927, 50.57137980000013 ], [ -119.353251509999922, 50.57160439300003 ], [ -119.353427915999973, 50.57171881000005 ], [ -119.353484509999973, 50.571755502000045 ], [ -119.353607392999947, 50.57181673500002 ], [ -119.35384970099993, 50.571937512000012 ], [ -119.35386110799999, 50.571943209000089 ], [ -119.354299092999966, 50.57207959800003 ], [ -119.355798402999966, 50.572110696000074 ], [ -119.357209289, 50.572086921000036 ], [ -119.357802699999951, 50.57210338500002 ], [ -119.35838279499994, 50.572229309000114 ], [ -119.358660399999962, 50.572376698000063 ], [ -119.359000592999934, 50.572618191000132 ], [ -119.359307596999969, 50.572911800000021 ], [ -119.359641510999964, 50.57341720200003 ], [ -119.359763307999941, 50.573859394000038 ], [ -119.359757792999972, 50.574779500000126 ], [ -119.359834997999926, 50.575149586000038 ], [ -119.359975206999977, 50.57541959400006 ], [ -119.360392980999961, 50.576048289 ], [ -119.360806810999961, 50.576655982000048 ], [ -119.361164507999931, 50.577336103000071 ], [ -119.361273571999959, 50.577321788000063 ], [ -119.36130629499999, 50.577317496000035 ], [ -119.36146520599999, 50.577241307000094 ], [ -119.361689000999988, 50.577051595000029 ], [ -119.361822883999963, 50.576788916000098 ], [ -119.361730903999899, 50.575953286000072 ], [ -119.361731177999957, 50.575951384000128 ], [ -119.361758607999931, 50.575765388000022 ], [ -119.36187982199999, 50.575397292000048 ], [ -119.362126408999956, 50.574861597000087 ], [ -119.362248493999957, 50.574323898000081 ], [ -119.362150119999967, 50.574026434000061 ], [ -119.362132803999941, 50.573974106999984 ], [ -119.361849604000014, 50.57345181100002 ], [ -119.36099542, 50.572167207000092 ], [ -119.360948689999972, 50.572012791000134 ], [ -119.360995688999964, 50.571685395000038 ], [ -119.361307488999955, 50.571073301000077 ], [ -119.361497992999986, 50.57083108700003 ], [ -119.362461898, 50.570326427000076 ], [ -119.362528970999918, 50.57029129900004 ], [ -119.362579010999966, 50.570265101000075 ], [ -119.363660392999975, 50.569859596000029 ], [ -119.363856686999952, 50.569750389000028 ], [ -119.364200696999958, 50.569486811000075 ], [ -119.364343282999982, 50.569337392000037 ], [ -119.364546882999988, 50.568996687 ], [ -119.364675784999946, 50.568443009000141 ], [ -119.364693679999959, 50.568366338 ], [ -119.364857695999916, 50.567661790000088 ], [ -119.364814980999938, 50.567550238000166 ], [ -119.364516896999959, 50.566771496000115 ], [ -119.36443821899999, 50.566324689000098 ], [ -119.364594052999919, 50.565932014000069 ], [ -119.364604971999938, 50.565904478000107 ], [ -119.364623598999941, 50.565857495000046 ], [ -119.364639457999985, 50.565838011000039 ], [ -119.36479870099997, 50.565915941000071 ], [ -119.364972058999925, 50.565993619000011 ], [ -119.36528738399997, 50.566086535000061 ], [ -119.365448470999965, 50.566200483000102 ], [ -119.36558352599998, 50.566359949000081 ], [ -119.365631714999921, 50.566476095000091 ], [ -119.365651244000034, 50.566583820000091 ], [ -119.365684422999948, 50.566682270000094 ], [ -119.365774453999919, 50.566788592000115 ], [ -119.365906867999982, 50.566894097000031 ], [ -119.36602330799991, 50.56696386600003 ], [ -119.366113395999932, 50.567070202000124 ], [ -119.366135604999954, 50.567231937000074 ], [ -119.366116398, 50.567412531000059 ], [ -119.36610632299994, 50.567493820000045 ], [ -119.366095813999976, 50.567566131000063 ], [ -119.366099424999945, 50.567638134000056 ], [ -119.366269625999905, 50.567652868000039 ], [ -119.366428449999887, 50.567721818000031 ], [ -119.366687404999979, 50.567815823000117 ], [ -119.36691224199997, 50.567793501000068 ], [ -119.366961439999969, 50.567648875000089 ], [ -119.366923774999989, 50.567461067000032 ], [ -119.366893031999922, 50.567129475000058 ], [ -119.366865894999989, 50.566869636000042 ], [ -119.366925223999942, 50.56664398800006 ], [ -119.36715022099996, 50.566343158000109 ], [ -119.367351470999907, 50.566132616000054 ], [ -119.367454899, 50.56594200300006 ], [ -119.367419008999903, 50.565790063000129 ], [ -119.36740311599999, 50.565754504000054 ], [ -119.367354474999971, 50.565629785000098 ], [ -119.367339639999983, 50.565333781000078 ], [ -119.367424018999913, 50.565044747000108 ], [ -119.367504627999949, 50.564683987000144 ], [ -119.367510184999972, 50.564513236000018 ], [ -119.367527147999979, 50.564288432000104 ], [ -119.367558256999985, 50.564063426000082 ], [ -119.367658989999882, 50.563818980000029 ], [ -119.367830666999978, 50.563582071000084 ], [ -119.36790720499998, 50.563418908000102 ], [ -119.36792195799994, 50.56314926000006 ], [ -119.368100047000027, 50.562759560000075 ], [ -119.368221204999955, 50.562640410000064 ], [ -119.368288596999932, 50.562576216000167 ], [ -119.368366457999954, 50.562439976000036 ], [ -119.368278686999957, 50.562378943000098 ], [ -119.368120827999959, 50.562328383000072 ], [ -119.36801714799999, 50.562231767000071 ], [ -119.36788567399995, 50.562144688000018 ], [ -119.367698241999946, 50.562067797000068 ], [ -119.367483029, 50.562000524000069 ], [ -119.367440273999961, 50.561992436000033 ], [ -119.367297410999925, 50.5619595470001 ], [ -119.367140880999926, 50.561935910000052 ], [ -119.367027121999982, 50.561920384000075 ], [ -119.366885173999961, 50.5619054040001 ], [ -119.366627637999954, 50.561839019000068 ], [ -119.366706034999979, 50.561688656000079 ], [ -119.366896289999943, 50.561323694000123 ], [ -119.36706954, 50.560459236000042 ], [ -119.371455708999946, 50.560721374000131 ], [ -119.37126170599997, 50.562035628000054 ], [ -119.370927538999979, 50.564299222000088 ], [ -119.369835343999952, 50.564233965000064 ], [ -119.36982569099996, 50.564299348000056 ], [ -119.368978392999907, 50.564248715000069 ], [ -119.368576587999925, 50.566969370000045 ], [ -119.368170591999942, 50.566945106000048 ], [ -119.368090996999982, 50.567483980000119 ], [ -119.368079956999964, 50.5674833200001 ], [ -119.36793424399994, 50.568469781000047 ], [ -119.367862023999962, 50.568465464999989 ], [ -119.367611527999941, 50.570161185000067 ], [ -119.366522717, 50.570096105000076 ], [ -119.366353032999925, 50.57124451100001 ], [ -119.362050494999949, 50.570987237000047 ], [ -119.361936342999968, 50.57175927300004 ], [ -119.363149365999931, 50.5718318240001 ], [ -119.36312969, 50.571964926000078 ], [ -119.363587660999912, 50.571992313000102 ], [ -119.363248621999958, 50.574285699000015 ], [ -119.364409192999986, 50.574355095000058 ], [ -119.364239732, 50.575501510000024 ], [ -119.365344742999952, 50.575567571000136 ], [ -119.365311190999975, 50.575794584000079 ], [ -119.369489126999895, 50.576044258000124 ], [ -119.369056945999901, 50.578970002000119 ], [ -119.368960621999946, 50.579622031000078 ], [ -119.365383052999945, 50.579408246000099 ], [ -119.364967993999954, 50.582216117000044 ], [ -119.364794692999965, 50.58220575700004 ], [ -119.364768295999951, 50.582384320000152 ], [ -119.364261008, 50.582353996000087 ], [ -119.364153404999939, 50.583081792000016 ], [ -119.365958240999987, 50.583189669000042 ], [ -119.365832201000032, 50.584042366000062 ], [ -119.365951100999936, 50.584049472000068 ], [ -119.365561883999973, 50.586682469000088 ], [ -119.366454270999952, 50.58673579599999 ], [ -119.366943075, 50.583428619000081 ], [ -119.366948507999922, 50.583428943000087 ], [ -119.366999691999922, 50.583082619000066 ], [ -119.371719003999928, 50.583364513000049 ], [ -119.37262631699997, 50.583418686000101 ], [ -119.37251802699997, 50.584152041000067 ], [ -119.373431342999979, 50.584206565000052 ], [ -119.372903053999892, 50.587784321000058 ], [ -119.36818918099999, 50.58750283200002 ], [ -119.367442247999975, 50.587458209000012 ], [ -119.36739958, 50.58774690500011 ], [ -119.367234202999924, 50.588865848000111 ], [ -119.37019949099999, 50.589042964000072 ], [ -119.370189775999961, 50.589108713000073 ], [ -119.370513682999942, 50.589128055000053 ], [ -119.369985105999888, 50.592705777000049 ], [ -119.369189726999977, 50.59265828000008 ], [ -119.369088204999912, 50.593345296000109 ], [ -119.368690050999959, 50.59332151800006 ], [ -119.368687185999988, 50.593340905000041 ], [ -119.368665895999982, 50.593339634000074 ], [ -119.368637893999932, 50.593529106000105 ], [ -119.368158908999987, 50.59350049800004 ], [ -119.368101192000012, 50.593891017000011 ], [ -119.367446495999985, 50.593851911000094 ], [ -119.367423668999976, 50.594006332000056 ], [ -119.367281992999949, 50.59399786900007 ], [ -119.367129961999964, 50.595026347000051 ], [ -119.369720924999967, 50.595181089000043 ], [ -119.36944259800002, 50.597064554000021 ], [ -119.37151269899999, 50.597188144000029 ], [ -119.370984105, 50.600765835000047 ], [ -119.370319262999914, 50.600726147000053 ], [ -119.370277989999963, 50.601005451000013 ], [ -119.368433713999934, 50.600895334000043 ], [ -119.368293133999941, 50.601846358000081 ], [ -119.370295069999941, 50.601965887000105 ], [ -119.370230185999901, 50.602404942000078 ], [ -119.375554232999917, 50.602722643000092 ], [ -119.375025896999958, 50.606300330000046 ], [ -119.374034667, 50.606241200000078 ], [ -119.373974570999962, 50.606648053000058 ], [ -119.373241138999902, 50.606604296000071 ], [ -119.373192053000011, 50.606936570000073 ], [ -119.368955983999982, 50.606683746 ], [ -119.368929962999971, 50.606859767000032 ], [ -119.368088703999973, 50.606809539000039 ], [ -119.367772130000034, 50.608950689000054 ], [ -119.367757710999967, 50.608949828000064 ], [ -119.367725541999945, 50.609167390000081 ], [ -119.367279749, 50.609140771000114 ], [ -119.367051782999965, 50.61068236200007 ], [ -119.372211518999933, 50.610990352 ], [ -119.371682818999886, 50.614567987000079 ], [ -119.371233735999937, 50.614541190000047 ], [ -119.371231398999939, 50.614556997000065 ], [ -119.370946879999948, 50.614540019000053 ], [ -119.370810231999911, 50.615464504000109 ], [ -119.370304770999951, 50.615434340000043 ], [ -119.370188079999963, 50.616223710000028 ], [ -119.370664781999935, 50.616252158000144 ], [ -119.370679055999943, 50.616155581000058 ], [ -119.376309846999945, 50.616491448000019 ], [ -119.376246623999961, 50.616919517000092 ], [ -119.377072052999921, 50.616968728000082 ], [ -119.377005433999969, 50.617419833000078 ], [ -119.377483269999956, 50.617448319000104 ], [ -119.377435556999941, 50.617771427000051 ], [ -119.377461665999945, 50.617772983000094 ], [ -119.37770005099999, 50.616158642000066 ], [ -119.380085724, 50.616300827000018 ], [ -119.380089240999936, 50.616276997000085 ], [ -119.385720116999906, 50.616612389000075 ], [ -119.38519242699995, 50.620190064000035 ], [ -119.383514253, 50.62009013700002 ], [ -119.383474759999984, 50.620357803000019 ], [ -119.383126768999929, 50.620337078000027 ], [ -119.382946904999969, 50.62155601200012 ], [ -119.379282530999987, 50.621337718000099 ], [ -119.379187064999954, 50.621984297000019 ], [ -119.378883790999964, 50.621966224000069 ], [ -119.378834667999968, 50.622298905000122 ], [ -119.376088796999966, 50.622135239000073 ], [ -119.376083739999956, 50.622169466000123 ], [ -119.376442533999978, 50.622190856000067 ], [ -119.37641070699999, 50.622406319000099 ], [ -119.376649441999959, 50.622420551000118 ], [ -119.376630717999959, 50.622547319000056 ], [ -119.376892842999922, 50.622562945000027 ], [ -119.376861103999971, 50.622777833000079 ], [ -119.377163148999983, 50.622795837000169 ], [ -119.377149848999963, 50.62288588700013 ], [ -119.381842704999926, 50.623165509000067 ], [ -119.381754610999948, 50.623762372000101 ], [ -119.382127837999946, 50.623784602000043 ], [ -119.381709395999934, 50.626619604000105 ], [ -119.381718048, 50.62662011900003 ], [ -119.381189919999912, 50.630197732000056 ], [ -119.380784888999969, 50.630173608000071 ], [ -119.380783201999918, 50.630185042000072 ], [ -119.380411155, 50.6301628800001 ], [ -119.380400587999986, 50.630234450000103 ], [ -119.379853433, 50.630201857000024 ], [ -119.37966792099995, 50.631458148000043 ], [ -119.381512792999942, 50.631568034000082 ], [ -119.381497555999914, 50.631671244000053 ], [ -119.381676994999935, 50.631681930000113 ], [ -119.381603576999922, 50.632179251000103 ], [ -119.381848324, 50.632193826000048 ], [ -119.381542452999938, 50.634265687000081 ], [ -119.37740670599996, 50.634266806 ], [ -119.377402900999954, 50.632454775000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "166.4", "sL_BldgLoss": "166.4", "sL_StrLoss": "166.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000000293D15E8DE5DC034C5D27682534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.480357437999913, 50.650464776000014 ], [ -119.48599333899999, 50.650795086000073 ], [ -119.485757637999939, 50.652416619000064 ], [ -119.48547323, 50.654373086000071 ], [ -119.479836883999965, 50.65404275100007 ], [ -119.480099451999962, 50.652238089000086 ], [ -119.480357437999913, 50.650464776000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3557334", "BldgCostT": "2453334", "sL_LossRatio": "1", "sL_AssetLoss": "143.6", "sL_BldgLoss": "143.6", "sL_StrLoss": "143.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A02DB1C02DA5DC069DD8AED035A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.407128176999919, 50.700803615000062 ], [ -119.410864797999977, 50.701024858000096 ], [ -119.410338119999977, 50.704602292000054 ], [ -119.408538678999903, 50.704495764000072 ], [ -119.407733940999918, 50.704448114000094 ], [ -119.407534965999929, 50.705798953000112 ], [ -119.401892738999919, 50.705464699000082 ], [ -119.402420100999919, 50.701887309000092 ], [ -119.405024111999978, 50.702041611000034 ], [ -119.405223146999987, 50.700690770000065 ], [ -119.407128176999919, 50.700803615000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419084", "BldgCostT": "1668334", "sL_LossRatio": "1", "sL_AssetLoss": "110.2", "sL_BldgLoss": "110.2", "sL_StrLoss": "110.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008FEDAD2FAFDB5DC074F7EFB0BF534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.430011821999955, 50.652332126000061 ], [ -119.435647585999916, 50.652664980000097 ], [ -119.435123447, 50.656242736000138 ], [ -119.429487237999979, 50.655909857000026 ], [ -119.430011821999955, 50.652332126000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3296334", "BldgCostT": "2273334", "sL_LossRatio": "1", "sL_AssetLoss": "194.2", "sL_BldgLoss": "194.2", "sL_StrLoss": "194.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056C9F06D34DE5DC0064278D57F534940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.46779185499993, 50.653952919000048 ], [ -119.467804530999956, 50.653865961000115 ], [ -119.467606254999978, 50.653854313000039 ], [ -119.467858906999979, 50.652121072000057 ], [ -119.468127779999946, 50.650276395000034 ], [ -119.470547855999911, 50.650418535000064 ], [ -119.470548466999929, 50.650414350000048 ], [ -119.47618428899996, 50.650745156000028 ], [ -119.476179183999946, 50.650780233000056 ], [ -119.476319288999974, 50.650788453000068 ], [ -119.476020150999943, 50.652843319000056 ], [ -119.475798407999918, 50.654366408000072 ], [ -119.473436266999926, 50.654227796000015 ], [ -119.473428100999953, 50.654283863000011 ], [ -119.46779185499993, 50.653952919000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4908250", "BldgCostT": "3385000", "sL_LossRatio": "1", "sL_AssetLoss": "307.5", "sL_BldgLoss": "307.5", "sL_StrLoss": "307.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D50F45DCB7DF5DC08F50B7DC2E544940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.492011167000015, 50.660714674000111 ], [ -119.492020308999969, 50.660651729000044 ], [ -119.491841564999973, 50.660641269000102 ], [ -119.492231872999938, 50.657954016000062 ], [ -119.492361239000033, 50.657063267000112 ], [ -119.493257867999944, 50.657115730000093 ], [ -119.493670140999953, 50.654276389000088 ], [ -119.499306618999967, 50.654606026000046 ], [ -119.498787525999887, 50.658184071000065 ], [ -119.498069604999941, 50.658142101000088 ], [ -119.497648440999967, 50.661044391000068 ], [ -119.496760401999936, 50.660992470000068 ], [ -119.492011167000015, 50.660714674000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2039667", "BldgCostT": "1406667", "sL_LossRatio": "1", "sL_AssetLoss": "88", "sL_BldgLoss": "88", "sL_StrLoss": "88", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000715D29B273DD5DC08D2ECAC7C9514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.457630490999946, 50.637015622000064 ], [ -119.463264538999937, 50.637347087000087 ], [ -119.462742774999981, 50.640925038000042 ], [ -119.45710828299994, 50.640593549000165 ], [ -119.457630490999946, 50.637015622000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2063833", "BldgCostT": "1423333", "sL_LossRatio": "1", "sL_AssetLoss": "74", "sL_BldgLoss": "74", "sL_StrLoss": "74", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB4F8691FBD95DC00381085057594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.406990032999914, 50.696232595000012 ], [ -119.409063541999984, 50.696355398000051 ], [ -119.408536773999984, 50.699932844000074 ], [ -119.40668061299999, 50.699822916000116 ], [ -119.402895277999946, 50.699598637000072 ], [ -119.403209991, 50.697463216000074 ], [ -119.403422490999958, 50.696021218000112 ], [ -119.406990032999914, 50.696232595000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3864250", "BldgCostT": "2665000", "sL_LossRatio": "1", "sL_AssetLoss": "182.4", "sL_BldgLoss": "182.4", "sL_StrLoss": "182.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005E4315A313D95DC07E4FEE6F37524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.38998766899999, 50.644855087000082 ], [ -119.39004384, 50.644474222000078 ], [ -119.389351775999955, 50.644433070000041 ], [ -119.389529537999977, 50.643227850000059 ], [ -119.387971270999969, 50.643135175000111 ], [ -119.38817992099996, 50.642945700000084 ], [ -119.38860519799999, 50.642380211000045 ], [ -119.38903671099996, 50.641965794000072 ], [ -119.388627706999941, 50.642028511000021 ], [ -119.388230103999945, 50.642252110000122 ], [ -119.388086207999947, 50.642750497000065 ], [ -119.387790656, 50.643000922000112 ], [ -119.387796062999911, 50.642850342000095 ], [ -119.387900739999964, 50.64155104600006 ], [ -119.387892210999894, 50.639245929 ], [ -119.392856729999949, 50.639541136000062 ], [ -119.392638802999912, 50.641019533000083 ], [ -119.394320348999941, 50.641119473000067 ], [ -119.395513447999946, 50.641190366000068 ], [ -119.39545732699996, 50.641571235000065 ], [ -119.396149352999956, 50.641612349000056 ], [ -119.395622198999916, 50.645189967000142 ], [ -119.394463232999954, 50.645121109000051 ], [ -119.38998766899999, 50.644855087000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "1", "sL_AssetLoss": "134.9", "sL_BldgLoss": "134.9", "sL_StrLoss": "134.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009C8E190BF7D85DC055D5F46EE6524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.387846506999949, 50.644949869000072 ], [ -119.393161010999947, 50.645265840000093 ], [ -119.392633575999966, 50.648843427000024 ], [ -119.392516154999939, 50.648836448000125 ], [ -119.392450692999915, 50.649280429000044 ], [ -119.390084039999962, 50.649139752000075 ], [ -119.389932034999958, 50.650170286000069 ], [ -119.389773504999965, 50.650160860000042 ], [ -119.389729941999974, 50.650456188000071 ], [ -119.388924574999962, 50.650408304000024 ], [ -119.388752464, 50.65157490900004 ], [ -119.388336504999984, 50.651550175000089 ], [ -119.388221729999913, 50.652328060000109 ], [ -119.38805313899995, 50.65347062100011 ], [ -119.387915494999959, 50.653462436000041 ], [ -119.387915038999935, 50.653301448000086 ], [ -119.387912281999959, 50.652331199000095 ], [ -119.38793656699994, 50.648891783000117 ], [ -119.387846506999949, 50.644949869000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11761917", "BldgCostT": "8111667", "sL_LossRatio": "1", "sL_AssetLoss": "386.3", "sL_BldgLoss": "386.3", "sL_StrLoss": "386.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5728EF0ECD85DC001316C41AD504940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.38907947899996, 50.636944977000091 ], [ -119.389118839999966, 50.636678091000071 ], [ -119.388758686999893, 50.636656669000047 ], [ -119.388809720999944, 50.636310635000022 ], [ -119.388783411999896, 50.63630907 ], [ -119.388795966999965, 50.636223936000079 ], [ -119.387880831999937, 50.636169498000122 ], [ -119.387880796999923, 50.636159843 ], [ -119.38788734399999, 50.634297689000022 ], [ -119.38541378599993, 50.634264501000082 ], [ -119.381908869999933, 50.634265581000065 ], [ -119.381990569, 50.63371218100005 ], [ -119.382098251999977, 50.633718594000094 ], [ -119.38214237699998, 50.633419685000064 ], [ -119.384071639999959, 50.633534548000057 ], [ -119.38447683599999, 50.630788745000061 ], [ -119.382637073999959, 50.630679211000079 ], [ -119.383165092999931, 50.627101593000113 ], [ -119.386598575999969, 50.627305988000039 ], [ -119.386633034999946, 50.627072365000132 ], [ -119.384373493999973, 50.62693786600002 ], [ -119.384547456999897, 50.625758821000097 ], [ -119.38443407699998, 50.625752071000136 ], [ -119.384961894999947, 50.622174423000082 ], [ -119.390320429999974, 50.622493319000043 ], [ -119.390593545999977, 50.622509566000133 ], [ -119.390574858999969, 50.622636339000096 ], [ -119.390419753999964, 50.623688626000018 ], [ -119.390533126999955, 50.623695370000085 ], [ -119.390180915999977, 50.626084742000067 ], [ -119.392440431999944, 50.626219122000045 ], [ -119.392434162999947, 50.626261664000026 ], [ -119.393137812999939, 50.626303503000059 ], [ -119.393097391999959, 50.62657783100012 ], [ -119.393527319999961, 50.626603392000064 ], [ -119.393058677999974, 50.629783781000071 ], [ -119.396582341999959, 50.629993215000056 ], [ -119.396165964999966, 50.632820024000111 ], [ -119.396199748999976, 50.632822031000039 ], [ -119.395672700999938, 50.636399686000061 ], [ -119.39547294099999, 50.63638781600006 ], [ -119.395408014999973, 50.636828491000124 ], [ -119.39478498299998, 50.636791468000091 ], [ -119.394713010999922, 50.637279906000103 ], [ -119.38907947899996, 50.636944977000091 ] ], [ [ -119.386700788000013, 50.632443503000083 ], [ -119.386013799999944, 50.632026192000112 ], [ -119.385713292999966, 50.631681612000087 ], [ -119.38574289799999, 50.631131801000016 ], [ -119.385996200999955, 50.630550805000041 ], [ -119.385943012, 50.630066497000065 ], [ -119.385734889, 50.629845806000063 ], [ -119.385152592999958, 50.629506791000082 ], [ -119.384645097999908, 50.628734908000084 ], [ -119.383753802999962, 50.62842008900008 ], [ -119.38360429, 50.628001398000038 ], [ -119.383275016999988, 50.628205100000095 ], [ -119.383292187999984, 50.628528412000058 ], [ -119.383656803999926, 50.628764811000089 ], [ -119.38443768599997, 50.628820310000094 ], [ -119.384754500999932, 50.629471200000097 ], [ -119.385463306999966, 50.630057984000047 ], [ -119.385660506999898, 50.630351390000051 ], [ -119.385406090999979, 50.631472203000101 ], [ -119.385541290999967, 50.631892405000073 ], [ -119.386566705999925, 50.632896386000056 ], [ -119.38708610499999, 50.633092992000115 ], [ -119.386700788000013, 50.632443503000083 ] ], [ [ -119.388432735999956, 50.629909424000111 ], [ -119.388308865999988, 50.63074939200007 ], [ -119.390474021999964, 50.630878185000014 ], [ -119.390456966999949, 50.630993869000115 ], [ -119.39075026499999, 50.631011312000048 ], [ -119.390891144999983, 50.630055657000092 ], [ -119.388432735999956, 50.629909424000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27079090", "BldgCostT": "17319590", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C27AF554FBD55DC0963F2133FE474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.346246711999939, 50.566712804000076 ], [ -119.346363467999979, 50.565924943000049 ], [ -119.343844518999973, 50.565773866000065 ], [ -119.344180659999921, 50.563506293000074 ], [ -119.341864312, 50.563367316000033 ], [ -119.34194163699999, 50.562845835000076 ], [ -119.34170964299993, 50.562831912000092 ], [ -119.341766188999969, 50.562450571000042 ], [ -119.341631865999943, 50.562442510000039 ], [ -119.341673913999927, 50.562158949000128 ], [ -119.340903163999926, 50.562112691000088 ], [ -119.341027587999974, 50.561273666000041 ], [ -119.340744715999946, 50.561256689000039 ], [ -119.341275245999967, 50.557678969000101 ], [ -119.341746751999935, 50.557707269000055 ], [ -119.341791315999956, 50.557406704000059 ], [ -119.341954815999927, 50.55740308200005 ], [ -119.342066898999946, 50.557382597000085 ], [ -119.342194401999961, 50.557388732000049 ], [ -119.342322787999976, 50.557412870000128 ], [ -119.342351370999964, 50.557425895000094 ], [ -119.34250687399998, 50.557498421000069 ], [ -119.342620887999914, 50.557594452000011 ], [ -119.342707210999933, 50.557700037000089 ], [ -119.342810579999977, 50.557948507000042 ], [ -119.342886192999941, 50.558215456000092 ], [ -119.342946872999946, 50.55843794700008 ], [ -119.342962858999954, 50.558536056 ], [ -119.342965265999936, 50.55866130800009 ], [ -119.342925679999937, 50.558805294000088 ], [ -119.342899463, 50.558913208000071 ], [ -119.342844569999926, 50.559003771000093 ], [ -119.342789277999941, 50.559076446000077 ], [ -119.342576301999912, 50.559142944000044 ], [ -119.342274996999919, 50.559157979000069 ], [ -119.342027556999966, 50.559168404000019 ], [ -119.341868810999955, 50.559205802000058 ], [ -119.341768834999982, 50.559287018000099 ], [ -119.341711978999953, 50.559411837000049 ], [ -119.341725693999962, 50.559623743000039 ], [ -119.341781693999962, 50.559799422000054 ], [ -119.341893448999912, 50.559947181000055 ], [ -119.341977120999985, 50.560024787000096 ], [ -119.342046979999921, 50.560111629000104 ], [ -119.34208872899994, 50.560145991000084 ], [ -119.342193113999912, 50.560269744000074 ], [ -119.342242613999971, 50.560327774000051 ], [ -119.342368622, 50.560438946000062 ], [ -119.342494138999925, 50.560514762000075 ], [ -119.342633255999928, 50.560581295000055 ], [ -119.342745382999951, 50.560692846000038 ], [ -119.342801849999972, 50.560832263000052 ], [ -119.342787951999924, 50.560938011000147 ], [ -119.342774111999987, 50.561026191000053 ], [ -119.342731778999962, 50.56110604000002 ], [ -119.34268075599995, 50.561215038000093 ], [ -119.342662683999933, 50.561257325000085 ], [ -119.342555345999955, 50.561419698000115 ], [ -119.342391375999952, 50.561583112000086 ], [ -119.342240861, 50.56172846500003 ], [ -119.342175269999984, 50.561872320000084 ], [ -119.34223511299993, 50.561969072000089 ], [ -119.34224984599993, 50.561986593000029 ], [ -119.342420087999983, 50.562036021000019 ], [ -119.342630690999954, 50.562048537000067 ], [ -119.342826825999964, 50.562052416000043 ], [ -119.343079737999943, 50.562072788000151 ], [ -119.343319561, 50.562111484000106 ], [ -119.343532183999983, 50.562168805000042 ], [ -119.343789061999956, 50.562278757000087 ], [ -119.34402011, 50.562442918000038 ], [ -119.344063587999969, 50.562477627000128 ], [ -119.344271685999942, 50.562655611000082 ], [ -119.34449597599999, 50.562869602000042 ], [ -119.344661160999976, 50.56303919500008 ], [ -119.34482535699999, 50.56319070200005 ], [ -119.344990028999987, 50.563351257000065 ], [ -119.345184005999897, 50.563529463000073 ], [ -119.345392659999931, 50.563716531000047 ], [ -119.345557356999905, 50.563877051000105 ], [ -119.345676080999951, 50.563974862000045 ], [ -119.345736164999963, 50.564037380000102 ], [ -119.345928654999938, 50.564207291000045 ], [ -119.346136184999963, 50.564395201000046 ], [ -119.34629857499999, 50.564529203000099 ], [ -119.346313579999986, 50.564547156000046 ], [ -119.346490538999916, 50.564690053000056 ], [ -119.34664068099994, 50.564860623000051 ], [ -119.346777145999937, 50.565040558000071 ], [ -119.346886301, 50.565239153000064 ], [ -119.346981378999942, 50.565437987000095 ], [ -119.347048195999918, 50.565637324000143 ], [ -119.347115939999952, 50.565854910000056 ], [ -119.347166293, 50.566008988000057 ], [ -119.347201603999963, 50.566145124000087 ], [ -119.347222817999949, 50.566281530000111 ], [ -119.34716317699997, 50.566492574000037 ], [ -119.347046172, 50.566686697000044 ], [ -119.346910378999965, 50.566790270000077 ], [ -119.346797268999978, 50.566784571000085 ], [ -119.346640978999972, 50.566762165000064 ], [ -119.346456200999953, 50.566731627000117 ], [ -119.346246711999939, 50.566712804000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "62487791", "BldgCostT": "32280018", "sL_LossRatio": "0.978708443494403", "sL_AssetLoss": "1066.62", "sL_BldgLoss": "1043.91", "sL_StrLoss": "1035.7", "sL_NStrLoss": "8.21", "sL_ContLoss": "22.71", "geom_point": "0101000020E610000021BEEA336DCC5DC01F84EB178D454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.194916205, 50.54769597900011 ], [ -119.195349461999911, 50.544836362000062 ], [ -119.193111943999924, 50.544699035000072 ], [ -119.193416225999925, 50.542691126000058 ], [ -119.191748422999964, 50.542588734000027 ], [ -119.191389337999979, 50.544957673000056 ], [ -119.185768886999952, 50.544612432000086 ], [ -119.18579976700002, 50.544408890000092 ], [ -119.185587194999982, 50.544395827000102 ], [ -119.186129845999943, 50.540818782000024 ], [ -119.18911110099998, 50.54100195100002 ], [ -119.189439413999963, 50.538836554000127 ], [ -119.195059171999958, 50.53918161200005 ], [ -119.194754988999975, 50.541189534000054 ], [ -119.199274077999974, 50.541466799 ], [ -119.198987293999949, 50.543360943000067 ], [ -119.202158917999967, 50.543555424000076 ], [ -119.201617504999945, 50.547132534000134 ], [ -119.200683278999975, 50.547075258000028 ], [ -119.20053711099996, 50.548040756000049 ], [ -119.194916205, 50.54769597900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7883333", "BldgCostT": "4493333", "sL_LossRatio": "1", "sL_AssetLoss": "185.6", "sL_BldgLoss": "185.6", "sL_StrLoss": "185.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070A0B8CAB0CB5DC09C738D222D4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.181659702999923, 50.603912285000042 ], [ -119.181898217999972, 50.598303670000078 ], [ -119.182531773999969, 50.598342575000046 ], [ -119.182355863999987, 50.599500019000075 ], [ -119.182594552999902, 50.599514676000091 ], [ -119.182487528999928, 50.600218856000048 ], [ -119.182533502999945, 50.600221679000107 ], [ -119.18246323599999, 50.600684009000069 ], [ -119.183029319999918, 50.600718766000078 ], [ -119.182927276000029, 50.601390208000055 ], [ -119.184028933999969, 50.601457840000158 ], [ -119.183876210999955, 50.602462879000036 ], [ -119.184054802999952, 50.602473841000091 ], [ -119.183511241999938, 50.606050607000036 ], [ -119.181690849999939, 50.60593885 ], [ -119.181659702999923, 50.603912285000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "63427878", "BldgCostT": "37006627", "sL_LossRatio": "0.991156104169803", "sL_AssetLoss": "1328.6", "sL_BldgLoss": "1316.85", "sL_StrLoss": "1312.6", "sL_NStrLoss": "4.25", "sL_ContLoss": "11.75", "geom_point": "0101000020E61000000E9CD8E881CC5DC0CC3059A2544D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.192548653999921, 50.608608573000033 ], [ -119.188713867999979, 50.607395689000093 ], [ -119.188333053999898, 50.607312793000041 ], [ -119.187657828999988, 50.607303634000075 ], [ -119.187464275999901, 50.607301027000055 ], [ -119.187159643999962, 50.607361743000084 ], [ -119.186829108999945, 50.607490399000064 ], [ -119.186390552999953, 50.607806443000079 ], [ -119.18629588599994, 50.607953205000079 ], [ -119.18597005599996, 50.607933213000095 ], [ -119.186513443999928, 50.604356443 ], [ -119.187111535999961, 50.604393140000091 ], [ -119.187321383999958, 50.603011559000045 ], [ -119.188864714999909, 50.603106237000162 ], [ -119.18896014399995, 50.602477794 ], [ -119.188995329999983, 50.602479952000067 ], [ -119.189015549999979, 50.602346796000056 ], [ -119.189022446999957, 50.602347219000073 ], [ -119.189065864, 50.602061296000066 ], [ -119.189714468999938, 50.602101079000086 ], [ -119.189736038999953, 50.601959011000083 ], [ -119.191591413999944, 50.602072792000087 ], [ -119.191952969999974, 50.599690657000082 ], [ -119.195955678999951, 50.599936015 ], [ -119.196058314999945, 50.599259350000146 ], [ -119.197307370999951, 50.59933588400007 ], [ -119.197520126999962, 50.597932879000091 ], [ -119.203147328999975, 50.598277504000045 ], [ -119.203035755, 50.599013886000073 ], [ -119.202960409999918, 50.599007385000107 ], [ -119.202355103999977, 50.599387602000064 ], [ -119.201756312999919, 50.59956139300008 ], [ -119.20136009, 50.600162402000102 ], [ -119.201019184999964, 50.600401701000116 ], [ -119.200811393, 50.600810410000072 ], [ -119.20045560599999, 50.601034009000045 ], [ -119.199779397, 50.60108240400006 ], [ -119.198689498999968, 50.601390086000031 ], [ -119.197023072999968, 50.602321493000012 ], [ -119.196089887999946, 50.602600709000036 ], [ -119.195442714999942, 50.60297240200002 ], [ -119.19506128099998, 50.602979500000018 ], [ -119.194037787999932, 50.603448095000104 ], [ -119.193459800999946, 50.60348649400003 ], [ -119.192857114, 50.60390239600008 ], [ -119.192498907999934, 50.60437660300007 ], [ -119.19221080599999, 50.604570302000113 ], [ -119.191686314999941, 50.604877992000127 ], [ -119.190904088999957, 50.60503610600005 ], [ -119.190159009999903, 50.605446202000074 ], [ -119.190125799999961, 50.605931905000119 ], [ -119.190614503999953, 50.606444584000037 ], [ -119.191403913999963, 50.606699507000037 ], [ -119.192337212999931, 50.606718004000086 ], [ -119.192964706999959, 50.606831987000078 ], [ -119.193371105999958, 50.607031404000054 ], [ -119.194179589, 50.607709302000089 ], [ -119.194834887999946, 50.60782179400006 ], [ -119.195060287999965, 50.607827494000105 ], [ -119.19580898399991, 50.607498494 ], [ -119.196940982999962, 50.607504202000101 ], [ -119.19795652399992, 50.607161001000065 ], [ -119.199189484999977, 50.606948807000094 ], [ -119.199636079999934, 50.606796397000039 ], [ -119.200258906999935, 50.606856195000013 ], [ -119.201545002, 50.607425896000031 ], [ -119.20265449799993, 50.607279195000075 ], [ -119.20311319899993, 50.607423003000058 ], [ -119.203521785999968, 50.60739739400006 ], [ -119.204056805999983, 50.607072709000086 ], [ -119.204385611999967, 50.606841908000064 ], [ -119.205345400999988, 50.605699908000126 ], [ -119.207672885999941, 50.605842293000116 ], [ -119.20755014799991, 50.606652752000038 ], [ -119.207452301999936, 50.606864800000089 ], [ -119.207250206, 50.607158387000062 ], [ -119.206804990999927, 50.607613109000106 ], [ -119.20632818099989, 50.607648003000065 ], [ -119.205865898999932, 50.607746900000095 ], [ -119.205306818999958, 50.607968990000074 ], [ -119.203791109999941, 50.608814894000027 ], [ -119.20375901599999, 50.60882633000007 ], [ -119.20361685599994, 50.608876946000038 ], [ -119.203152968999959, 50.609042090000045 ], [ -119.202785289999937, 50.609173003000102 ], [ -119.202466303999984, 50.609253702000061 ], [ -119.202290630999954, 50.609270006000017 ], [ -119.201851524999924, 50.609234105000084 ], [ -119.20163225899995, 50.609163959000064 ], [ -119.20153050299993, 50.609131392000101 ], [ -119.200986188999977, 50.608740857000079 ], [ -119.200969372999964, 50.60872879500009 ], [ -119.200611808999952, 50.608539989000093 ], [ -119.200337097000016, 50.608477997000143 ], [ -119.199998489999956, 50.608505209000036 ], [ -119.198679488999929, 50.608611213000074 ], [ -119.197899418999967, 50.608819702000098 ], [ -119.196851395999929, 50.608968501000071 ], [ -119.19502084899996, 50.609093017000049 ], [ -119.194931385999922, 50.609099093000033 ], [ -119.194696278999942, 50.609101137000103 ], [ -119.194376790999925, 50.609103910000087 ], [ -119.194008714999924, 50.609044596000018 ], [ -119.193843004999934, 50.609017908000112 ], [ -119.192548653999921, 50.608608573000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53183207", "BldgCostT": "26871684", "sL_LossRatio": "0.976404083584104", "sL_AssetLoss": "711.14", "sL_BldgLoss": "694.36", "sL_StrLoss": "688.3", "sL_NStrLoss": "6.06", "sL_ContLoss": "16.78", "geom_point": "0101000020E61000003023A3A067CE5DC01D7F60968F4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.221134061999976, 50.592737716000023 ], [ -119.221142050999973, 50.592684845000051 ], [ -119.220717251999957, 50.592658905000071 ], [ -119.221257694999977, 50.58908190100005 ], [ -119.22168929599998, 50.589108256000038 ], [ -119.221724485000024, 50.588875311000066 ], [ -119.222102134999915, 50.588898369000049 ], [ -119.222114770999923, 50.588814719000091 ], [ -119.222863350999972, 50.588860423000092 ], [ -119.223079507999955, 50.587429237000052 ], [ -119.223635566999988, 50.587463184000079 ], [ -119.223638683000019, 50.587442551 ], [ -119.229264771999937, 50.587785860000047 ], [ -119.228724982999921, 50.591362910000107 ], [ -119.228218523999942, 50.59133201700007 ], [ -119.228129187999954, 50.591923922000063 ], [ -119.228085277999966, 50.591921244000048 ], [ -119.227942433999914, 50.592867625000096 ], [ -119.227460585999921, 50.592838230000062 ], [ -119.227422921999931, 50.593087735000033 ], [ -119.227195507999966, 50.593073862000047 ], [ -119.227193411999906, 50.59308774100009 ], [ -119.226763755999968, 50.593061528000156 ], [ -119.226760793999986, 50.593081151000057 ], [ -119.221134061999976, 50.592737716000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2888000", "BldgCostT": "1520000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB984A3FE1CD5DC03EDE16F2A9434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.213993185000021, 50.528722945000027 ], [ -119.213997519999921, 50.528694246000093 ], [ -119.213561173999921, 50.528667533000032 ], [ -119.213619620999964, 50.528280547000094 ], [ -119.216188636999945, 50.528340540000094 ], [ -119.218668071999929, 50.528398347000113 ], [ -119.219715981999983, 50.528376824000048 ], [ -119.219611870999941, 50.529066766000064 ], [ -119.213993185000021, 50.528722945000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17765167", "BldgCostT": "9891667", "sL_LossRatio": "0.993033027466246", "sL_AssetLoss": "647.34", "sL_BldgLoss": "642.83", "sL_StrLoss": "641.2", "sL_NStrLoss": "1.63", "sL_ContLoss": "4.51", "geom_point": "0101000020E61000000225EC78DFCD5DC00CA2625AA3444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.213200304999972, 50.538263704000066 ], [ -119.213318898999944, 50.537478698 ], [ -119.212841847999968, 50.537449495000061 ], [ -119.213382250999985, 50.533872289000072 ], [ -119.219001574999965, 50.534216139000073 ], [ -119.218995917999948, 50.534253623000062 ], [ -119.220821818999951, 50.534365289000057 ], [ -119.220282, 50.537942530000095 ], [ -119.219865517999935, 50.537917062000133 ], [ -119.219863182999944, 50.537932540000035 ], [ -119.219631414999981, 50.537918367000046 ], [ -119.219523605999925, 50.538632645000035 ], [ -119.21882285699999, 50.538589791000128 ], [ -119.218820174999948, 50.538607561000049 ], [ -119.213200304999972, 50.538263704000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20546000", "BldgCostT": "11015000", "sL_LossRatio": "0.997685111505285", "sL_AssetLoss": "691.178", "sL_BldgLoss": "689.578", "sL_StrLoss": "689", "sL_NStrLoss": "0.578", "sL_ContLoss": "1.6", "geom_point": "0101000020E61000005F3B623EEACE5DC007DB80B6724C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.230350232999982, 50.595654408000016 ], [ -119.230456760999928, 50.594948424000066 ], [ -119.235791343999921, 50.595273566000103 ], [ -119.236083839999964, 50.595291386000063 ], [ -119.23607465799995, 50.595352302000087 ], [ -119.236505931999957, 50.595378575000062 ], [ -119.235966628, 50.59895562700013 ], [ -119.235360005999937, 50.598918671000064 ], [ -119.23526273100002, 50.599563742000029 ], [ -119.232117717999984, 50.599372089 ], [ -119.229635122999952, 50.599220740000078 ], [ -119.230174934, 50.595643719000073 ], [ -119.230350232999982, 50.595654408000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "74452500", "BldgCostT": "51345000", "sL_LossRatio": "0.994966809273737", "sL_AssetLoss": "600.017", "sL_BldgLoss": "596.997", "sL_StrLoss": "595.9", "sL_NStrLoss": "1.097", "sL_ContLoss": "3.02", "geom_point": "0101000020E6100000A99C936A61CD5DC0DC1ECE0D17474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.206530447999967, 50.553430379000076 ], [ -119.212152158999942, 50.553774568000094 ], [ -119.211611417999947, 50.557351682000032 ], [ -119.205989263999939, 50.557007468000094 ], [ -119.206530447999967, 50.553430379000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1922917", "BldgCostT": "1116667", "sL_LossRatio": "0.94065138721351", "sL_AssetLoss": "41.45", "sL_BldgLoss": "38.99", "sL_StrLoss": "38.1", "sL_NStrLoss": "0.89", "sL_ContLoss": "2.46", "geom_point": "0101000020E61000002E4655FAA6CE5DC0B50E3775D84E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.22818954399996, 50.614196380000052 ], [ -119.23003686299991, 50.614308991000037 ], [ -119.229496816999955, 50.617885930000085 ], [ -119.228016648, 50.617795703000084 ], [ -119.22818954399996, 50.614196380000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18959084", "BldgCostT": "10423334", "sL_LossRatio": "0.979523430673118", "sL_AssetLoss": "230.019", "sL_BldgLoss": "225.309", "sL_StrLoss": "223.6", "sL_NStrLoss": "1.709", "sL_ContLoss": "4.71", "geom_point": "0101000020E6100000FA6C0D3ADBD65DC01F80F534B74D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.353680223999959, 50.608872753000064 ], [ -119.353716479999946, 50.608628068000066 ], [ -119.353597538999949, 50.608620951000084 ], [ -119.354079780999939, 50.605366185000094 ], [ -119.357841588, 50.605201446000073 ], [ -119.359358236999981, 50.605292140000053 ], [ -119.360638151, 50.60536866000006 ], [ -119.360108595999975, 50.608946265000036 ], [ -119.359355609999923, 50.608901249000034 ], [ -119.359309975999935, 50.609209482000026 ], [ -119.35681110599991, 50.609060054000061 ], [ -119.353680223999959, 50.608872753000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "79324952", "BldgCostT": "42645165", "sL_LossRatio": "0.932211802662601", "sL_AssetLoss": "564.11", "sL_BldgLoss": "525.87", "sL_StrLoss": "512", "sL_NStrLoss": "13.87", "sL_ContLoss": "38.24", "geom_point": "0101000020E6100000231FDC193DCC5DC005651A4D2E444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.191983846999946, 50.53521625200009 ], [ -119.19204338499999, 50.534823365000122 ], [ -119.189094586999943, 50.534642243000114 ], [ -119.189509441, 50.531905625000029 ], [ -119.184319821999921, 50.531586672000074 ], [ -119.184178432999943, 50.53251868500007 ], [ -119.186365637999955, 50.532653140000022 ], [ -119.18582310499994, 50.536230221000032 ], [ -119.183306464999959, 50.536075511 ], [ -119.183217948999982, 50.533304118000061 ], [ -119.183272612999957, 50.531229662000094 ], [ -119.183284901999968, 50.530764628000099 ], [ -119.183292618999971, 50.530471302000144 ], [ -119.184193962999956, 50.530526726000133 ], [ -119.184314240999967, 50.529733831000044 ], [ -119.183313634999962, 50.529672303000126 ], [ -119.183313875999957, 50.529663130000166 ], [ -119.183371708999942, 50.52781477000012 ], [ -119.184782028999933, 50.527822572000076 ], [ -119.184754668999943, 50.528002953000069 ], [ -119.185496613999973, 50.528048569000113 ], [ -119.185530260999911, 50.527826704000091 ], [ -119.185836737999963, 50.527828394000032 ], [ -119.196735219999965, 50.527887741000036 ], [ -119.196899816999945, 50.527888648000072 ], [ -119.197948908999976, 50.527913308000031 ], [ -119.199399610999976, 50.527947398000038 ], [ -119.19928716599999, 50.528690332000053 ], [ -119.199228544, 50.528686735000036 ], [ -119.199194972999976, 50.528908533000042 ], [ -119.198898784999955, 50.528890360000112 ], [ -119.19889476099999, 50.528916940000066 ], [ -119.198211489999935, 50.528875016000022 ], [ -119.198080871999963, 50.529737857000043 ], [ -119.192462266999939, 50.529392947000098 ], [ -119.192543460999914, 50.52885704200007 ], [ -119.191664010999915, 50.528803028000034 ], [ -119.191493695999952, 50.529927006000086 ], [ -119.190888294999979, 50.529889820000051 ], [ -119.190835087000011, 50.530240920000033 ], [ -119.189916857999933, 50.53018451300008 ], [ -119.18978202699995, 50.531074060000073 ], [ -119.195255634999938, 50.531410191000106 ], [ -119.195170686999958, 50.531971066000082 ], [ -119.198453072999939, 50.532172504000073 ], [ -119.197911503999975, 50.535749646000113 ], [ -119.197577738999954, 50.535729168000096 ], [ -119.197524304999902, 50.53608205400009 ], [ -119.19685397799995, 50.53604092300008 ], [ -119.196391125999952, 50.539097172000019 ], [ -119.190771365999979, 50.538752182000067 ], [ -119.191313538999935, 50.535175087000049 ], [ -119.191983846999946, 50.53521625200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "55178453", "BldgCostT": "34152363", "sL_LossRatio": "0.982795739537695", "sL_AssetLoss": "1059.04", "sL_BldgLoss": "1040.82", "sL_StrLoss": "1034.2", "sL_NStrLoss": "6.62", "sL_ContLoss": "18.22", "geom_point": "0101000020E610000055BF675EADCD5DC0417CDC8E5B454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.212185186999974, 50.545310063000059 ], [ -119.212446588999967, 50.543580275000089 ], [ -119.210838461999941, 50.543481828000047 ], [ -119.210961787999921, 50.542665889000013 ], [ -119.208361640999925, 50.542506662000022 ], [ -119.20890246099998, 50.538929499000062 ], [ -119.211612013999968, 50.539095425000042 ], [ -119.211705364999915, 50.538477662000105 ], [ -119.217325249999945, 50.538821595000101 ], [ -119.216847568999953, 50.541985117000095 ], [ -119.218346036999918, 50.542076773000119 ], [ -119.217805927999962, 50.545653968000025 ], [ -119.212185186999974, 50.545310063000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "325078562", "BldgCostT": "180128853", "sL_LossRatio": "0.987305499178506", "sL_AssetLoss": "8277.6", "sL_BldgLoss": "8172.52", "sL_StrLoss": "8134.4", "sL_NStrLoss": "38.12", "sL_ContLoss": "105.08", "geom_point": "0101000020E610000031ED69C12ACD5DC029D61CFF094B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.207500604999922, 50.598174204000038 ], [ -119.207069601999976, 50.598047490000098 ], [ -119.206786506999933, 50.598044597000069 ], [ -119.20659438399997, 50.598453397000064 ], [ -119.206336205999904, 50.59866410000005 ], [ -119.205205595999956, 50.598685505000063 ], [ -119.20489590299999, 50.599015906000034 ], [ -119.204711308999919, 50.599594109000044 ], [ -119.204339320999978, 50.599782098000055 ], [ -119.204096180999926, 50.599750799000063 ], [ -119.203674309999982, 50.599453094000047 ], [ -119.203471587999957, 50.599051496000058 ], [ -119.203313072999919, 50.599037817000081 ], [ -119.203722647999953, 50.596334417000023 ], [ -119.207699705, 50.596577798000048 ], [ -119.207708862999965, 50.596517309000042 ], [ -119.210119977999938, 50.596664790000013 ], [ -119.210157062999912, 50.596419764000089 ], [ -119.210748474, 50.596455931000072 ], [ -119.210771741999963, 50.59630217800008 ], [ -119.21256571899994, 50.596411866000025 ], [ -119.212519690999954, 50.595430483000044 ], [ -119.21347565, 50.595412314000043 ], [ -119.213578109999986, 50.594734989000052 ], [ -119.212274803999946, 50.594655313000096 ], [ -119.212139395999927, 50.595550279000058 ], [ -119.206512466999939, 50.595206107000109 ], [ -119.206665581, 50.594194949000091 ], [ -119.205765812999985, 50.594139889000111 ], [ -119.205777691999984, 50.59406144200004 ], [ -119.205029795999948, 50.594015669000058 ], [ -119.205571500999966, 50.590438746000181 ], [ -119.205902233999936, 50.590458989000084 ], [ -119.206248289999962, 50.58817353600012 ], [ -119.203948690999965, 50.588032768000033 ], [ -119.203531253, 50.590788687 ], [ -119.201037495999941, 50.590635980000094 ], [ -119.200772122999979, 50.592387146000114 ], [ -119.195145676999942, 50.592042398000032 ], [ -119.19568814199998, 50.588465515000081 ], [ -119.198181761999962, 50.588618342000082 ], [ -119.198447212999952, 50.586867174000062 ], [ -119.202210189999903, 50.587097690000064 ], [ -119.202212166999942, 50.587084639000096 ], [ -119.197844729999986, 50.58681708400006 ], [ -119.198152307, 50.584788015000107 ], [ -119.193722740999931, 50.584516474000104 ], [ -119.193932480999976, 50.583133614000069 ], [ -119.193701934999964, 50.583119476000036 ], [ -119.193980888999974, 50.581280207000098 ], [ -119.188974012999921, 50.580973049000093 ], [ -119.189516835999925, 50.577396148000041 ], [ -119.192737442999942, 50.577593751000101 ], [ -119.192858024999936, 50.576798723000081 ], [ -119.19287210499995, 50.576799587000025 ], [ -119.192908134999954, 50.576562023000072 ], [ -119.19557541199994, 50.576725604000075 ], [ -119.195579309999957, 50.576699884000149 ], [ -119.200771913999972, 50.57701815300009 ], [ -119.201125637999922, 50.574683094000129 ], [ -119.200730567, 50.574658887000055 ], [ -119.200918855999959, 50.573415893000067 ], [ -119.200817655999955, 50.573409693000059 ], [ -119.201359446999959, 50.569832701000088 ], [ -119.201377293999926, 50.569833794000033 ], [ -119.201385849999951, 50.569777301000052 ], [ -119.207009561999882, 50.570121743000072 ], [ -119.206978634999928, 50.570326120000082 ], [ -119.207096572999887, 50.570333340000062 ], [ -119.20679983899997, 50.572294144000089 ], [ -119.20872355599991, 50.572411899000045 ], [ -119.208182319999977, 50.575988916000043 ], [ -119.206778928999938, 50.575903014000097 ], [ -119.206734892000028, 50.576193969000037 ], [ -119.20869772499999, 50.576314108000126 ], [ -119.208638505999943, 50.576705482000094 ], [ -119.209019541999979, 50.576728800000112 ], [ -119.208615547999941, 50.579398678000118 ], [ -119.209985095999954, 50.579482478000031 ], [ -119.209982952999951, 50.579496641000013 ], [ -119.210217189000019, 50.579510972000044 ], [ -119.210139867999914, 50.580022049 ], [ -119.210156626999947, 50.580023075000042 ], [ -119.209944875999938, 50.581422650000093 ], [ -119.210451058, 50.581453617000136 ], [ -119.210673367999945, 50.579984137000089 ], [ -119.216298426999955, 50.580328105000063 ], [ -119.21575769599994, 50.583905124000047 ], [ -119.212272282999919, 50.583692029000041 ], [ -119.212050005999984, 50.585161505000031 ], [ -119.210711819999943, 50.585079660000055 ], [ -119.210694348999965, 50.585195137000127 ], [ -119.210551056999947, 50.585186372000074 ], [ -119.210254239999969, 50.587148042000109 ], [ -119.207902360999967, 50.587004156000027 ], [ -119.207773308999933, 50.587856717000086 ], [ -119.211935816999954, 50.588111341000044 ], [ -119.211516697999926, 50.590881640000063 ], [ -119.211933807999941, 50.590907146000063 ], [ -119.211916227999922, 50.591023345000039 ], [ -119.214954120999892, 50.591209064000068 ], [ -119.214550280999987, 50.593879379000022 ], [ -119.21934206600001, 50.594172147000073 ], [ -119.219273972999957, 50.594622686000051 ], [ -119.220307766999923, 50.594685821000034 ], [ -119.219767182999959, 50.59826279800005 ], [ -119.21975653, 50.598262148000046 ], [ -119.219648816999921, 50.598974800000036 ], [ -119.218454895999926, 50.598901884000107 ], [ -119.218256227, 50.600216028000041 ], [ -119.218056159999932, 50.600203809000043 ], [ -119.217945152999945, 50.600938034000173 ], [ -119.216844935999944, 50.60087082800009 ], [ -119.216816913999963, 50.60105612600011 ], [ -119.218152286999924, 50.601137695000034 ], [ -119.218065986999974, 50.601708496000064 ], [ -119.218178923999972, 50.60171539400006 ], [ -119.217956014999956, 50.603189716000081 ], [ -119.218340420999965, 50.603213194000055 ], [ -119.218023826999953, 50.605307105000044 ], [ -119.214725011999974, 50.605294995000087 ], [ -119.214631015999956, 50.604771197000041 ], [ -119.214862596999964, 50.604010096000053 ], [ -119.214864085999977, 50.603793609000071 ], [ -119.214770103999967, 50.603570393000034 ], [ -119.214337949999916, 50.603206739 ], [ -119.214262419999926, 50.603143198000055 ], [ -119.214163821999989, 50.602997308000148 ], [ -119.214124696999988, 50.602814392000077 ], [ -119.214764007999989, 50.600278306000071 ], [ -119.214792387000031, 50.600165710000077 ], [ -119.214803780999929, 50.59999681500004 ], [ -119.214832386999959, 50.599572514000137 ], [ -119.214336895999921, 50.598567513000027 ], [ -119.212265119, 50.598634908000108 ], [ -119.211846181999974, 50.598783233000084 ], [ -119.211601990999938, 50.598869702000066 ], [ -119.211284694999932, 50.599080394000033 ], [ -119.211145410999933, 50.599297489000065 ], [ -119.211109694999948, 50.599796217000097 ], [ -119.211085652999941, 50.599838533000103 ], [ -119.210991401999962, 50.600004513000044 ], [ -119.210728284999959, 50.600467789000049 ], [ -119.210594090999962, 50.601153426000046 ], [ -119.210440277999922, 50.601939294000047 ], [ -119.210288607999985, 50.60233170300009 ], [ -119.21011749499992, 50.602646108000066 ], [ -119.209606018999978, 50.603323304000057 ], [ -119.208972613999975, 50.604317881000064 ], [ -119.208371007999943, 50.604867788000085 ], [ -119.208327761999925, 50.604962993000051 ], [ -119.207518837999928, 50.604913516000082 ], [ -119.207638558000014, 50.604122955000015 ], [ -119.208554706999976, 50.603497907000047 ], [ -119.208941692999971, 50.602123512000098 ], [ -119.209574004, 50.601427093000034 ], [ -119.209592400999938, 50.600293402000077 ], [ -119.209116211999984, 50.59980779500011 ], [ -119.208858506999931, 50.598805100000043 ], [ -119.208315200999934, 50.598366511000044 ], [ -119.207500604999922, 50.598174204000038 ] ], [ [ -119.199772195999927, 50.583325047000102 ], [ -119.199825807999957, 50.582971253000046 ], [ -119.19963642099999, 50.582959649000017 ], [ -119.199582807999903, 50.583313443000129 ], [ -119.199772195999927, 50.583325047000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90249497", "BldgCostT": "47767057", "sL_LossRatio": "0.995027920026859", "sL_AssetLoss": "1343.301", "sL_BldgLoss": "1336.622", "sL_StrLoss": "1334.2", "sL_NStrLoss": "2.422", "sL_ContLoss": "6.679", "geom_point": "0101000020E6100000FD3F87F9B2CE5DC0D34FD5907A4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.228198893999917, 50.614001686000044 ], [ -119.228265417, 50.612616613000093 ], [ -119.22823240699995, 50.612617239000109 ], [ -119.227672321999961, 50.612628009000069 ], [ -119.227390324999945, 50.612642393000044 ], [ -119.226966273999949, 50.612641504000088 ], [ -119.226987818999945, 50.612371807000066 ], [ -119.227087998999977, 50.612084584000087 ], [ -119.22756560199997, 50.611254481000053 ], [ -119.227675999, 50.610946307000148 ], [ -119.227723893999922, 50.610619795000041 ], [ -119.22772608799994, 50.609646202000107 ], [ -119.227662577999936, 50.608909491000134 ], [ -119.227656145999958, 50.608865005000069 ], [ -119.227596640999977, 50.608453981000103 ], [ -119.227439277999977, 50.607366711000033 ], [ -119.227366644999975, 50.606865232000111 ], [ -119.227268487999964, 50.606187087000059 ], [ -119.226855984999943, 50.605457994000027 ], [ -119.22660229899999, 50.605285490000057 ], [ -119.226254992999941, 50.605215594000107 ], [ -119.22462053799994, 50.605214295000053 ], [ -119.22473993700001, 50.604423860000104 ], [ -119.223812460999923, 50.604367269000079 ], [ -119.223991735999945, 50.603180546000047 ], [ -119.223872543999946, 50.603173273000067 ], [ -119.224412861999966, 50.599596298000094 ], [ -119.22451270499991, 50.599602390000015 ], [ -119.224615590999946, 50.598921201000067 ], [ -119.230243122999966, 50.599264456000085 ], [ -119.230161692999928, 50.599804048000088 ], [ -119.230503705999951, 50.599824901000012 ], [ -119.230504982999932, 50.599816438000097 ], [ -119.231632232999956, 50.59988515600002 ], [ -119.236132671999925, 50.60015939500007 ], [ -119.235593280999964, 50.60373642500015 ], [ -119.232829333999973, 50.603568023000058 ], [ -119.232452376999959, 50.606066490000067 ], [ -119.232016912999953, 50.606039952000032 ], [ -119.231881865999981, 50.606934911000096 ], [ -119.231934587999902, 50.606938124000081 ], [ -119.231811275999988, 50.607755296000036 ], [ -119.231821648999954, 50.607755928000081 ], [ -119.231654076999916, 50.608866359000046 ], [ -119.232746095999985, 50.608932905000088 ], [ -119.232519727999929, 50.610433098000065 ], [ -119.233195884999958, 50.610474296000106 ], [ -119.232938614999938, 50.612179329000064 ], [ -119.232656135999918, 50.61405126700005 ], [ -119.23183172099999, 50.614001034000076 ], [ -119.231798508999987, 50.614221086000015 ], [ -119.228198893999917, 50.614001686000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14929328", "BldgCostT": "8167410", "sL_LossRatio": "0.94145073759841", "sL_AssetLoss": "130.83", "sL_BldgLoss": "123.17", "sL_StrLoss": "120.4", "sL_NStrLoss": "2.77", "sL_ContLoss": "7.66", "geom_point": "0101000020E6100000AD6EBBF12ACF5DC0C9BF1A90D24B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.23800179599999, 50.590619661000126 ], [ -119.240078985999929, 50.590746167000084 ], [ -119.239540020999954, 50.594323257000077 ], [ -119.23624041799998, 50.594122284000058 ], [ -119.233913034999901, 50.593980469000044 ], [ -119.234452443999928, 50.59040340500006 ], [ -119.23800179599999, 50.590619661000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105253921", "BldgCostT": "56634203", "sL_LossRatio": "0.992449204429935", "sL_AssetLoss": "986.651", "sL_BldgLoss": "979.201", "sL_StrLoss": "976.5", "sL_NStrLoss": "2.701", "sL_ContLoss": "7.45", "geom_point": "0101000020E6100000A97BCF0E99D75DC0DD0539DE534F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.373248709999928, 50.634267110000067 ], [ -119.373592914999975, 50.631938511000065 ], [ -119.372843739, 50.631893838000096 ], [ -119.373372550999932, 50.628316271000088 ], [ -119.373629277999967, 50.628331581000161 ], [ -119.373651929999951, 50.628178313000014 ], [ -119.373121005999977, 50.628146653000037 ], [ -119.373243141, 50.627320315000063 ], [ -119.37236483799991, 50.627267933000063 ], [ -119.37239680099999, 50.627051705000028 ], [ -119.372253049999983, 50.627043131000036 ], [ -119.372267423999958, 50.626945889000069 ], [ -119.371853843999958, 50.626921221000039 ], [ -119.371932359999917, 50.626390092000108 ], [ -119.37138946499995, 50.626357709000054 ], [ -119.371408690999928, 50.626227659000044 ], [ -119.371064065, 50.626207100000073 ], [ -119.371088368999949, 50.626042711000053 ], [ -119.371002674, 50.626037598000018 ], [ -119.37103444399996, 50.625822713000069 ], [ -119.370732381, 50.625804692000074 ], [ -119.37074400799996, 50.625726048000033 ], [ -119.370027063999913, 50.625683272000032 ], [ -119.370096556999954, 50.625213290000083 ], [ -119.369953793999983, 50.625204771000028 ], [ -119.369976803, 50.625049162000067 ], [ -119.36980259799999, 50.625038768000081 ], [ -119.370285621999969, 50.621771976000041 ], [ -119.36699533499997, 50.621575597000053 ], [ -119.367179811999961, 50.620328420000064 ], [ -119.365876739999976, 50.620250618000121 ], [ -119.365577675999972, 50.620232760000121 ], [ -119.365599958999908, 50.620082145000076 ], [ -119.365636840999954, 50.619832852000052 ], [ -119.365311993999967, 50.619813453000063 ], [ -119.365329292999959, 50.619696539000074 ], [ -119.364852088999911, 50.619668040000086 ], [ -119.364983652999982, 50.618778845000115 ], [ -119.361490142999969, 50.618570150000096 ], [ -119.361601535999981, 50.617817648000063 ], [ -119.361054180999972, 50.617784939000103 ], [ -119.361583762999913, 50.61420736900002 ], [ -119.36414012299997, 50.614360104000077 ], [ -119.364162031999939, 50.614212036000133 ], [ -119.363167204999939, 50.614152605000051 ], [ -119.36356076, 50.611492948000063 ], [ -119.360891616999965, 50.611333447000064 ], [ -119.36142113599999, 50.607755850000053 ], [ -119.361801763999949, 50.607778599 ], [ -119.361826890000017, 50.607608805000091 ], [ -119.361747802999929, 50.607604079000076 ], [ -119.361775017999932, 50.607420182000041 ], [ -119.360638481, 50.607352248000055 ], [ -119.360965848999967, 50.605140392000109 ], [ -119.362152492999911, 50.605148449000176 ], [ -119.362336541000019, 50.605149695000094 ], [ -119.362463566999978, 50.605150555000115 ], [ -119.365854500999959, 50.605173501000074 ], [ -119.365814559999976, 50.60809012300011 ], [ -119.365811347999909, 50.608324401000047 ], [ -119.365809723999959, 50.608441545000041 ], [ -119.365731283999935, 50.614166688000047 ], [ -119.365744919999941, 50.615305424000098 ], [ -119.365760185999946, 50.616582695000034 ], [ -119.365767189999985, 50.617169002000026 ], [ -119.365893900999978, 50.617406604000116 ], [ -119.36599247399991, 50.617496073000034 ], [ -119.36621318899995, 50.617696404000093 ], [ -119.367998308999915, 50.618791008000109 ], [ -119.368376081999912, 50.619079260000049 ], [ -119.368793094999901, 50.619397423000045 ], [ -119.369229888999925, 50.619730697000122 ], [ -119.372184739999952, 50.622190428000124 ], [ -119.373216104999983, 50.623048883000067 ], [ -119.374071898999929, 50.623797934000052 ], [ -119.375274905999945, 50.624850799000072 ], [ -119.376814504999956, 50.62596670500006 ], [ -119.377099014999942, 50.626252502000092 ], [ -119.377201498999952, 50.62640480400011 ], [ -119.377330378999943, 50.626714789000054 ], [ -119.377391894999931, 50.627183101000142 ], [ -119.377393096999924, 50.62775029000008 ], [ -119.377399118999946, 50.630646734000081 ], [ -119.377401735999982, 50.631887878000029 ], [ -119.377402900999954, 50.632454775000092 ], [ -119.37740670599996, 50.634266806 ], [ -119.373248709999928, 50.634267110000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "230152469", "BldgCostT": "135785412", "sL_LossRatio": "0.989629923272923", "sL_AssetLoss": "3481.17", "sL_BldgLoss": "3445.07", "sL_StrLoss": "3432", "sL_NStrLoss": "13.07", "sL_ContLoss": "36.1", "geom_point": "0101000020E6100000410B1A44B5CE5DC0BFC43F09BF474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.22940777599996, 50.574975980000083 ], [ -119.229784565999964, 50.572477937 ], [ -119.225118811999934, 50.572193168000069 ], [ -119.225658658000015, 50.568616053000028 ], [ -119.22669492199999, 50.56867931700004 ], [ -119.22688387099997, 50.567426977000068 ], [ -119.227046587999951, 50.567436911000115 ], [ -119.227082556, 50.567198507000043 ], [ -119.22586208599995, 50.567123998000042 ], [ -119.225864927999979, 50.567105158000089 ], [ -119.225213466999918, 50.567065380000066 ], [ -119.225218913999981, 50.567029287000082 ], [ -119.224712552999961, 50.566998366000064 ], [ -119.224956325999983, 50.565383057000112 ], [ -119.222136082999938, 50.565210798000066 ], [ -119.222587129999965, 50.562222957000088 ], [ -119.22221639199995, 50.562200307000104 ], [ -119.222756348999894, 50.558623163000064 ], [ -119.225037634999964, 50.558762516000101 ], [ -119.225270017999947, 50.557222316000072 ], [ -119.229660709999976, 50.557490390000041 ], [ -119.229728014999935, 50.557044000000133 ], [ -119.227592945999945, 50.556913666000092 ], [ -119.22765418199999, 50.556507640000049 ], [ -119.227102457999933, 50.556473953000051 ], [ -119.227418221999955, 50.554380333000083 ], [ -119.225498751999936, 50.554263114000094 ], [ -119.22558565199995, 50.55368706900007 ], [ -119.224657765999964, 50.553630392000095 ], [ -119.225197425999937, 50.550053198000043 ], [ -119.226067574999917, 50.550106349 ], [ -119.226080188999944, 50.550022718000065 ], [ -119.226667050999978, 50.5500585610001 ], [ -119.226951254999946, 50.548174033000059 ], [ -119.229007659999979, 50.548299604000086 ], [ -119.22940279, 50.545678483000039 ], [ -119.232377528999976, 50.545860063000113 ], [ -119.235023707999943, 50.546021519000135 ], [ -119.234998332999908, 50.546189998000088 ], [ -119.23556400199999, 50.546224504000094 ], [ -119.235025209999918, 50.549801765000026 ], [ -119.232403009999942, 50.549641786000024 ], [ -119.23203341, 50.552094427000036 ], [ -119.231504183999974, 50.552062133000057 ], [ -119.231344635999932, 50.55312071500007 ], [ -119.234995208999962, 50.553343434000027 ], [ -119.234823042999935, 50.554486294000078 ], [ -119.235242328999945, 50.554511867 ], [ -119.23584486099999, 50.55454861300003 ], [ -119.235621293999941, 50.556032817000094 ], [ -119.235759065999929, 50.556041219000107 ], [ -119.235607139999942, 50.557049774000077 ], [ -119.236329217999952, 50.557093805000072 ], [ -119.235790356999971, 50.560671022000136 ], [ -119.235174253999929, 50.560633453000101 ], [ -119.235129582999917, 50.560630729000067 ], [ -119.23501596399997, 50.561384838000031 ], [ -119.234589761999956, 50.561358847000093 ], [ -119.234284744999925, 50.563383050000013 ], [ -119.233819380999975, 50.563354668000024 ], [ -119.23380242899999, 50.563467160000094 ], [ -119.232456409999912, 50.563385060000122 ], [ -119.23245536599994, 50.563391991000117 ], [ -119.231779801999934, 50.563350779000082 ], [ -119.231775335999913, 50.5633804060001 ], [ -119.229864512999924, 50.563263816000109 ], [ -119.228120910999948, 50.563157399000055 ], [ -119.228090604, 50.563358329000067 ], [ -119.229771560999922, 50.563460923 ], [ -119.231961419999934, 50.563594538000061 ], [ -119.23191785899995, 50.563883505000057 ], [ -119.232024936999963, 50.563890037000093 ], [ -119.231569861999972, 50.566908669000043 ], [ -119.234096679999965, 50.567062786000101 ], [ -119.234054418999932, 50.567343202000067 ], [ -119.234218094999932, 50.567353183000094 ], [ -119.233678943999948, 50.57093034600009 ], [ -119.233611869999933, 50.570926256000028 ], [ -119.233547462999979, 50.571353547000079 ], [ -119.232386103999943, 50.571282721000031 ], [ -119.232346529999973, 50.571545212000046 ], [ -119.235571447, 50.571741854000052 ], [ -119.23506493799999, 50.575102791000099 ], [ -119.235032351999962, 50.575319004000022 ], [ -119.22940777599996, 50.574975980000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "58353222", "BldgCostT": "31633933", "sL_LossRatio": "0.990486402628217", "sL_AssetLoss": "1314.96", "sL_BldgLoss": "1302.45", "sL_StrLoss": "1297.9", "sL_NStrLoss": "4.55", "sL_ContLoss": "12.51", "geom_point": "0101000020E610000022E5CC1B0CCF5DC09B5BCE631C454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.230241177999972, 50.544687064000072 ], [ -119.230309915999911, 50.54423098000008 ], [ -119.229972098999966, 50.544210357000111 ], [ -119.230511224999944, 50.540633096000093 ], [ -119.232255947999946, 50.54073960000003 ], [ -119.232292055999963, 50.540499937000078 ], [ -119.232553368999916, 50.540515885000055 ], [ -119.232797556999941, 50.538894943000031 ], [ -119.232758263000022, 50.538892545000074 ], [ -119.232785766999925, 50.538709969000067 ], [ -119.232478867999959, 50.538691237000045 ], [ -119.233017728999982, 50.535113940000024 ], [ -119.233107803999985, 50.535119438000024 ], [ -119.23318855, 50.534583343000108 ], [ -119.234031226999932, 50.534634773000107 ], [ -119.234057718999978, 50.534458863000104 ], [ -119.23530517599994, 50.53453498500005 ], [ -119.23967727299997, 50.534801668000078 ], [ -119.23913894399999, 50.53837899800007 ], [ -119.238683661999957, 50.53835123500005 ], [ -119.238595286999953, 50.538938406000071 ], [ -119.23873789, 50.53894710200008 ], [ -119.23819943899997, 50.542524409000059 ], [ -119.23806007499995, 50.542515912000077 ], [ -119.237737538999966, 50.544658415000093 ], [ -119.236141243999967, 50.544561062000049 ], [ -119.236127767999974, 50.544650552000121 ], [ -119.235921027, 50.544637941000097 ], [ -119.23586197799996, 50.545030058000037 ], [ -119.233183622999931, 50.544866654000053 ], [ -119.230241177999972, 50.544687064000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "105165240", "BldgCostT": "59186028", "sL_LossRatio": "0.968039792688675", "sL_AssetLoss": "1968.64305", "sL_BldgLoss": "1905.72481", "sL_StrLoss": "1882.61441", "sL_NStrLoss": "23.1104", "sL_ContLoss": "62.91824", "geom_point": "0101000020E6100000FDA256FB28CF5DC061B6CFF0874A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.229862024999974, 50.587639469000059 ], [ -119.230401678999954, 50.584062397000061 ], [ -119.234711317999938, 50.584325158000084 ], [ -119.234713829999961, 50.584308495000059 ], [ -119.234712426999963, 50.584308409000087 ], [ -119.235251655999946, 50.580731300000068 ], [ -119.235402359999966, 50.580740485000035 ], [ -119.235554764999947, 50.579729340000064 ], [ -119.230346904999948, 50.579411798000109 ], [ -119.2303917, 50.579114825000012 ], [ -119.230278124999941, 50.579107897000014 ], [ -119.23081764199999, 50.575530787000055 ], [ -119.231088158999938, 50.575547288000095 ], [ -119.231144347999972, 50.575174693000108 ], [ -119.235335559999896, 50.575430261000044 ], [ -119.236768960999925, 50.575517628000043 ], [ -119.236757987999937, 50.575590460000036 ], [ -119.23820092299999, 50.575678390000057 ], [ -119.237848328999959, 50.578018775000075 ], [ -119.239963560999939, 50.578147639000093 ], [ -119.24210055899999, 50.57827778700009 ], [ -119.241578499999932, 50.581744731000079 ], [ -119.24197210399997, 50.581768697000072 ], [ -119.241905312999947, 50.582212237000071 ], [ -119.242806007999917, 50.582267074000121 ], [ -119.242757909999952, 50.582586521000074 ], [ -119.243080620999976, 50.582606168000069 ], [ -119.243050284999981, 50.58280765900011 ], [ -119.24280747099999, 50.584420284000039 ], [ -119.243976518999901, 50.584491447000119 ], [ -119.243437937999886, 50.588068582000112 ], [ -119.239530131999956, 50.587830657000019 ], [ -119.237811704999956, 50.587725988000088 ], [ -119.237911593999925, 50.587063148000091 ], [ -119.235647566999958, 50.586925206000096 ], [ -119.235488185999913, 50.587982464000035 ], [ -119.229862024999974, 50.587639469000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30735014", "BldgCostT": "17080681", "sL_LossRatio": "0.994788271072367", "sL_AssetLoss": "1536.918", "sL_BldgLoss": "1528.908", "sL_StrLoss": "1526", "sL_NStrLoss": "2.908", "sL_ContLoss": "8.01", "geom_point": "0101000020E6100000FAA796A504CF5DC08719E0A3FA434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.232664906999958, 50.53383255199999 ], [ -119.232797635999958, 50.532951332000088 ], [ -119.230303991999932, 50.53279908800004 ], [ -119.230359796999892, 50.532428715000044 ], [ -119.228899772999966, 50.532339550000096 ], [ -119.229438841999922, 50.528762243000124 ], [ -119.230088026999937, 50.528801892000018 ], [ -119.230097312999931, 50.528740259000109 ], [ -119.23012672499999, 50.528742055000045 ], [ -119.230189232999933, 50.528327160000096 ], [ -119.230806431999923, 50.528364851000028 ], [ -119.23083066, 50.5282040190001 ], [ -119.230377089999962, 50.528176321000061 ], [ -119.230367491999971, 50.528240022000091 ], [ -119.229654028, 50.528196449000099 ], [ -119.229653757999984, 50.528198239000105 ], [ -119.229335065999948, 50.528178774000061 ], [ -119.23090943099993, 50.528146272000107 ], [ -119.236507936999956, 50.528158159000036 ], [ -119.236307654999962, 50.529488734000033 ], [ -119.240390769999948, 50.529737788000041 ], [ -119.240612894999984, 50.529751333000021 ], [ -119.240325252999966, 50.531663350000095 ], [ -119.240074700999926, 50.533328690000111 ], [ -119.238426924999928, 50.533228204000118 ], [ -119.238284371999939, 50.534175428 ], [ -119.235201592999914, 50.533987365000016 ], [ -119.232664906999958, 50.53383255199999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24276406", "BldgCostT": "15432694", "sL_LossRatio": "0.921114510379004", "sL_AssetLoss": "79.102", "sL_BldgLoss": "72.862", "sL_StrLoss": "70.6", "sL_NStrLoss": "2.262", "sL_ContLoss": "6.24", "geom_point": "0101000020E6100000576500246ACC5DC0DBE10A838D464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.191692335, 50.552860079000091 ], [ -119.191692819999957, 50.552856882000071 ], [ -119.190100684999962, 50.552759136000162 ], [ -119.190643078999955, 50.549182106000067 ], [ -119.196264136999972, 50.549527100000056 ], [ -119.196263653999921, 50.5495302960001 ], [ -119.197855687999933, 50.549627955000076 ], [ -119.197313860999913, 50.553205018000064 ], [ -119.191692335, 50.552860079000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11379333", "BldgCostT": "6198333", "sL_LossRatio": "0.971389017074296", "sL_AssetLoss": "86.68", "sL_BldgLoss": "84.2", "sL_StrLoss": "83.3", "sL_NStrLoss": "0.9", "sL_ContLoss": "2.48", "geom_point": "0101000020E6100000FE0AFC55FECC5DC032F3B260C1434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.200356737999954, 50.527969880000114 ], [ -119.206007275999966, 50.528102430000082 ], [ -119.205597758999943, 50.530810682000023 ], [ -119.199978962999978, 50.530466153000077 ], [ -119.200356737999954, 50.527969880000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007506E3335BD75DC0207C28D1923F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365998850999986, 50.499297310000031 ], [ -119.366057159999983, 50.498902040000097 ], [ -119.36421242099999, 50.498791561000061 ], [ -119.364449615999916, 50.497184032000057 ], [ -119.363179298999952, 50.497107937000031 ], [ -119.363707295999987, 50.493529830000021 ], [ -119.364464897999966, 50.493575215000106 ], [ -119.364625815999958, 50.493812993000091 ], [ -119.365176478999942, 50.494626696000076 ], [ -119.365676160999939, 50.495918946000096 ], [ -119.365884560999987, 50.496457904000046 ], [ -119.366005207999933, 50.49676996200003 ], [ -119.366201704, 50.497278093000048 ], [ -119.366290858999932, 50.497428324000062 ], [ -119.366789485999902, 50.498268434000103 ], [ -119.367183007, 50.498931492000075 ], [ -119.367503256999967, 50.499387384000066 ], [ -119.365998850999986, 50.499297310000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "220.9", "sL_BldgLoss": "220.9", "sL_StrLoss": "220.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000452A106628D75DC0E0AC5660273E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.36322271899995, 50.489485252000087 ], [ -119.363514388999988, 50.48750838200003 ], [ -119.36019896, 50.487309673 ], [ -119.360386878999947, 50.48603653400005 ], [ -119.357149248999988, 50.485842392000066 ], [ -119.357677591999959, 50.482264264000023 ], [ -119.357890843999911, 50.48227705500004 ], [ -119.358034330999885, 50.481305171000088 ], [ -119.360264161999979, 50.481438887000067 ], [ -119.360591524999933, 50.481771479000088 ], [ -119.360708569999986, 50.481890386000025 ], [ -119.360782683999957, 50.481965700000032 ], [ -119.360919775999932, 50.482231128000095 ], [ -119.361258372999899, 50.482886690000058 ], [ -119.361344624999958, 50.482944752000051 ], [ -119.361509638, 50.483055824000076 ], [ -119.361557951999913, 50.483088363000014 ], [ -119.36201670699991, 50.483397222000036 ], [ -119.362591491999979, 50.483784217000064 ], [ -119.362713691999915, 50.483909004000068 ], [ -119.363007399999901, 50.48420899900006 ], [ -119.363475713999946, 50.484797402000048 ], [ -119.363827164000014, 50.485067371000085 ], [ -119.364011121999937, 50.485208679000053 ], [ -119.364125615999939, 50.485296597000151 ], [ -119.364135723999965, 50.48530286600009 ], [ -119.364721364000033, 50.485665166000032 ], [ -119.365432296999955, 50.48610501100012 ], [ -119.365957092999977, 50.486598519000019 ], [ -119.365964156999937, 50.486613647000077 ], [ -119.366173180999908, 50.487062593000097 ], [ -119.366325877999927, 50.487563594000086 ], [ -119.366670507999942, 50.487809891000062 ], [ -119.36703419899996, 50.487917401000068 ], [ -119.36728820899999, 50.488134685000105 ], [ -119.367386698999937, 50.488552095000024 ], [ -119.367258679999949, 50.488815206000027 ], [ -119.367018197999982, 50.489130200000012 ], [ -119.366884414999944, 50.489470044000086 ], [ -119.366843025999955, 50.489575243000033 ], [ -119.366832516999949, 50.489601888000074 ], [ -119.366844128999929, 50.489702184000066 ], [ -119.36322271899995, 50.489485252000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "74.7", "sL_BldgLoss": "74.7", "sL_StrLoss": "74.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FF4AF9BC8D75DC06C1E2C088A464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.369942971999976, 50.549347506000075 ], [ -119.374960979999969, 50.549647338000057 ], [ -119.37486898, 50.549758099000051 ], [ -119.373723518999924, 50.550583105000065 ], [ -119.373524093999919, 50.551089100000056 ], [ -119.373424415999963, 50.55150527100006 ], [ -119.37342085099999, 50.551520262000118 ], [ -119.373413117, 50.551552609000062 ], [ -119.372618393999943, 50.552392995000069 ], [ -119.372152499999956, 50.553089006000071 ], [ -119.369414815999932, 50.55292539800007 ], [ -119.369942971999976, 50.549347506000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "247.5", "sL_BldgLoss": "247.5", "sL_StrLoss": "247.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002776E1C50AD85DC0ED97F49C99434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.375835826999918, 50.534178112000077 ], [ -119.375938446999982, 50.533482004000092 ], [ -119.373959514999925, 50.533363761000011 ], [ -119.374487080999984, 50.529785763000092 ], [ -119.375159217999951, 50.529825928000079 ], [ -119.3751736599999, 50.529727970000089 ], [ -119.375050301999977, 50.529720599000036 ], [ -119.37520172399995, 50.528693450000112 ], [ -119.373336119999976, 50.528581954000074 ], [ -119.373602109000018, 50.526778035000127 ], [ -119.372680421999959, 50.526722940000049 ], [ -119.373208009999985, 50.523144918000057 ], [ -119.373338693999955, 50.523152730000028 ], [ -119.373352509999989, 50.523059022000091 ], [ -119.375863850999906, 50.523209121 ], [ -119.375878196999963, 50.523111779000025 ], [ -119.376256547, 50.523134388000123 ], [ -119.376259979999986, 50.523111089000047 ], [ -119.377586261, 50.523190331000116 ], [ -119.377602687999939, 50.525180628000072 ], [ -119.377603541999989, 50.52528484500008 ], [ -119.377605196999966, 50.525486667000067 ], [ -119.377616306999926, 50.526834436000044 ], [ -119.377620686999947, 50.527364654000053 ], [ -119.377621441, 50.527454250000076 ], [ -119.377645638999979, 50.530387078000075 ], [ -119.377646161999962, 50.530452815000054 ], [ -119.377665212999972, 50.532761756000085 ], [ -119.377665592999918, 50.532808871000036 ], [ -119.377669972999939, 50.533337620000076 ], [ -119.377670868999957, 50.533445470000096 ], [ -119.37767121399996, 50.533487419000068 ], [ -119.377671403999969, 50.533510607000075 ], [ -119.377989004999918, 50.534306726000054 ], [ -119.375835826999918, 50.534178112000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "249", "sL_BldgLoss": "249", "sL_StrLoss": "249", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000602D0CCBFED75DC0F106E286A9454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.374161674999954, 50.548723437000042 ], [ -119.374330963999938, 50.547575742000092 ], [ -119.372430397999949, 50.54746219200004 ], [ -119.372856067000015, 50.544576935000073 ], [ -119.372694904999989, 50.544567305000058 ], [ -119.372715935999949, 50.5444247470001 ], [ -119.371948490999955, 50.544378885000064 ], [ -119.372476346, 50.540800944000111 ], [ -119.373407436999941, 50.540856585000036 ], [ -119.373434711999963, 50.540671665000019 ], [ -119.377556757999983, 50.540917899000064 ], [ -119.377611706999957, 50.542148101000045 ], [ -119.377635620999982, 50.542565848000038 ], [ -119.377758097999902, 50.544704187000079 ], [ -119.377534014999981, 50.54545508900005 ], [ -119.377491243999927, 50.545524120000081 ], [ -119.376353271999946, 50.54736061800002 ], [ -119.375762703999968, 50.54831359700006 ], [ -119.375564372999946, 50.548807221000061 ], [ -119.374161674999954, 50.548723437000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "1", "sL_AssetLoss": "257.7", "sL_BldgLoss": "257.7", "sL_StrLoss": "257.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000003D53717DCD75DC01A83356BFC414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.373950651999948, 50.522565784000108 ], [ -119.373998100999955, 50.522243915000033 ], [ -119.373498857999934, 50.5222140710001 ], [ -119.373864318999964, 50.519735068000024 ], [ -119.370377829999882, 50.519526590000041 ], [ -119.370632672999989, 50.517798671000051 ], [ -119.369788528999962, 50.517748178000033 ], [ -119.370316242999976, 50.514170130000132 ], [ -119.372398555999965, 50.514294675 ], [ -119.372847763999957, 50.511247499 ], [ -119.369226367999943, 50.511030876000078 ], [ -119.369233008999984, 50.510985851000044 ], [ -119.369754047999919, 50.50745280200006 ], [ -119.372246402999977, 50.507601902000083 ], [ -119.372274192999967, 50.5076638090001 ], [ -119.372356213999964, 50.507858483000092 ], [ -119.37241297199995, 50.507993230000061 ], [ -119.37278282199999, 50.508871148000075 ], [ -119.372862686999966, 50.509060739000041 ], [ -119.373640732999917, 50.510907438000032 ], [ -119.373656403999973, 50.510944614000081 ], [ -119.373661247999962, 50.510963757000091 ], [ -119.373661440999939, 50.510964639000051 ], [ -119.37367927799994, 50.511035317000093 ], [ -119.373722905999969, 50.511208551000081 ], [ -119.373957193999971, 50.512138370000088 ], [ -119.373998990999965, 50.512304266000129 ], [ -119.37442791799999, 50.514006494000114 ], [ -119.374675690999979, 50.51468010700011 ], [ -119.375084145999963, 50.51562112800007 ], [ -119.375214633999946, 50.515921715000047 ], [ -119.375262785999936, 50.516032715000016 ], [ -119.375268381999987, 50.51605949000011 ], [ -119.375326796999971, 50.516338789000031 ], [ -119.375284782999927, 50.517169910000057 ], [ -119.37525739299997, 50.517710817000072 ], [ -119.375251297999966, 50.517831385000065 ], [ -119.375187607999948, 50.519090900000016 ], [ -119.375233204, 50.51959900700006 ], [ -119.375352940999946, 50.519907716000056 ], [ -119.375392318999943, 50.520009183000106 ], [ -119.375604915999958, 50.520393691000066 ], [ -119.375822131999911, 50.520618607000088 ], [ -119.376000800999961, 50.520803602000051 ], [ -119.37689901899995, 50.521440206000108 ], [ -119.377411421999966, 50.521886809000087 ], [ -119.377578297999932, 50.52222520800013 ], [ -119.377582896999968, 50.522782842000041 ], [ -119.373950651999948, 50.522565784000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "1", "sL_AssetLoss": "232.5", "sL_BldgLoss": "232.5", "sL_StrLoss": "232.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006E733AFB50D75DC0F5980EBE2C454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.362347095999951, 50.543637520000068 ], [ -119.362714233999895, 50.541152597000035 ], [ -119.360413504999883, 50.541014872000041 ], [ -119.360463376999959, 50.540677420000122 ], [ -119.359887811999982, 50.540642958000063 ], [ -119.360416580999981, 50.537065059000014 ], [ -119.36070523699999, 50.537082343000073 ], [ -119.360719270999979, 50.536987366000062 ], [ -119.366340094999941, 50.537323769000061 ], [ -119.36627624899991, 50.537756201000022 ], [ -119.366563117999959, 50.537773363000078 ], [ -119.366261136999981, 50.539818652000072 ], [ -119.368666393, 50.539962510000066 ], [ -119.368138243999965, 50.543540436000065 ], [ -119.368033666999963, 50.543534182 ], [ -119.367968762, 50.543973838000042 ], [ -119.362347095999951, 50.543637520000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15933083", "BldgCostT": "10988333", "sL_LossRatio": "1", "sL_AssetLoss": "1131", "sL_BldgLoss": "1131", "sL_StrLoss": "1131", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006C280EB6BD65DC098604048F93F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352305869999952, 50.510591412000103 ], [ -119.352414467999949, 50.509856963000033 ], [ -119.352310239999952, 50.509850711000105 ], [ -119.35276376899999, 50.506783257000095 ], [ -119.350850704999971, 50.506668475000076 ], [ -119.351245470999942, 50.503998885000051 ], [ -119.349628417999938, 50.50390183800009 ], [ -119.349182596999938, 50.503612411000105 ], [ -119.349151703999937, 50.503270605000075 ], [ -119.350141108999949, 50.502737889000095 ], [ -119.350183516999948, 50.502458799000131 ], [ -119.350063201999959, 50.502316393000108 ], [ -119.349715910999947, 50.502414610000059 ], [ -119.349236678999915, 50.502414595000054 ], [ -119.34883449599999, 50.501981701000055 ], [ -119.348688798999945, 50.501963742000093 ], [ -119.348395403999973, 50.501927587000075 ], [ -119.348180697999908, 50.501869199000076 ], [ -119.34819601, 50.50132939400013 ], [ -119.348120759999958, 50.501059885000082 ], [ -119.348006318, 50.500649994000142 ], [ -119.347301705999925, 50.500627296000111 ], [ -119.347280336999958, 50.500612144000044 ], [ -119.347366367999925, 50.500030623000072 ], [ -119.345746342999959, 50.499933331000086 ], [ -119.346065196999959, 50.499609002000092 ], [ -119.346136200999979, 50.499435877000053 ], [ -119.34636671599999, 50.498874092000079 ], [ -119.346758566999981, 50.498478876 ], [ -119.346811586999962, 50.49842540100007 ], [ -119.346842508999927, 50.497911307000081 ], [ -119.346553592999911, 50.49751249500008 ], [ -119.346433992999977, 50.497435129000053 ], [ -119.34566400499989, 50.496937106000104 ], [ -119.345632604999977, 50.496299088000058 ], [ -119.344967656999984, 50.49607150500006 ], [ -119.344887811999953, 50.496044192000028 ], [ -119.344561592999966, 50.495709512000126 ], [ -119.344113986, 50.494646997000061 ], [ -119.343486908999978, 50.494219692000094 ], [ -119.342983098999952, 50.49401320600002 ], [ -119.342969199, 50.493771090000109 ], [ -119.343132122000014, 50.493641499000084 ], [ -119.343901910999932, 50.493779686000067 ], [ -119.344308792999982, 50.493762609000022 ], [ -119.344805383, 50.493527599000068 ], [ -119.345020392999956, 50.493186020000053 ], [ -119.345040293999958, 50.49315440000008 ], [ -119.345041499999951, 50.492902293000057 ], [ -119.344328890999947, 50.492718605000029 ], [ -119.344281292999966, 50.492671731000044 ], [ -119.344299486999972, 50.49254878000005 ], [ -119.344147149999969, 50.492539627000077 ], [ -119.344104778999977, 50.492497899000114 ], [ -119.343956181999971, 50.49206059600008 ], [ -119.343782302999941, 50.491965212000053 ], [ -119.343783273999961, 50.491952555000076 ], [ -119.343816307999987, 50.491515190000051 ], [ -119.343986604999941, 50.491250297000136 ], [ -119.343908901999924, 50.49110780200003 ], [ -119.34309212, 50.490810197000052 ], [ -119.341919895999979, 50.4907617920001 ], [ -119.34171568899994, 50.490639294000097 ], [ -119.341720012999929, 50.490172102000038 ], [ -119.342511488999918, 50.489633810000079 ], [ -119.3424456, 50.489428689000107 ], [ -119.34242866299995, 50.489421041000135 ], [ -119.341796404999954, 50.489135293000061 ], [ -119.341663289999943, 50.489002897000042 ], [ -119.341654756999915, 50.48804425 ], [ -119.341651606999932, 50.487692783000078 ], [ -119.342676423999976, 50.487754387000102 ], [ -119.34271806799994, 50.487473 ], [ -119.34343740099996, 50.48751878600013 ], [ -119.343569680999963, 50.487373601000066 ], [ -119.343567583999985, 50.487021798000114 ], [ -119.343274384999958, 50.486758488000092 ], [ -119.342725398999946, 50.486265488000058 ], [ -119.342971576999943, 50.485987751000103 ], [ -119.343220209999956, 50.485707185000102 ], [ -119.343444004999938, 50.485413902000076 ], [ -119.343745010999967, 50.485220196000064 ], [ -119.343748915999967, 50.48509920500009 ], [ -119.343762092999924, 50.484688904000095 ], [ -119.344177795999954, 50.484233655000025 ], [ -119.344063188999925, 50.485008241000067 ], [ -119.346396606999932, 50.485148453000107 ], [ -119.34870568299999, 50.485287153000094 ], [ -119.348350105999941, 50.487691872 ], [ -119.351043471999944, 50.487853593000089 ], [ -119.350514537999942, 50.491431664000118 ], [ -119.347598474999984, 50.491256569000043 ], [ -119.347562258, 50.491501432000042 ], [ -119.350096864999969, 50.491653627000041 ], [ -119.350057762999882, 50.491918105000131 ], [ -119.351653334999966, 50.492013884000123 ], [ -119.351124398999943, 50.495591940000054 ], [ -119.350253458999987, 50.495539662000077 ], [ -119.34980361, 50.498581863000091 ], [ -119.348940291999938, 50.498530036000091 ], [ -119.348715819999939, 50.500047732000063 ], [ -119.349085003999974, 50.500069896000113 ], [ -119.349091863999945, 50.500023510000105 ], [ -119.349385851999912, 50.500041159000055 ], [ -119.34940465499993, 50.499914018000041 ], [ -119.349642839999944, 50.499928315000055 ], [ -119.349654448999928, 50.499849823000041 ], [ -119.350067342000017, 50.499874606000084 ], [ -119.350093437999959, 50.499698132000105 ], [ -119.355709534999946, 50.500035088000118 ], [ -119.355223984999938, 50.50332108300006 ], [ -119.356996319999936, 50.503427359000085 ], [ -119.35658077899997, 50.506239917000066 ], [ -119.358652660999894, 50.506364120000107 ], [ -119.35812411299996, 50.509942146000071 ], [ -119.358069508999975, 50.50993887200007 ], [ -119.357923194999941, 50.510929240000074 ], [ -119.357604366999951, 50.513087149000114 ], [ -119.35507926399994, 50.512935773000088 ], [ -119.354853024999983, 50.514466309000071 ], [ -119.350932076999953, 50.51423113900006 ], [ -119.350754603000027, 50.515431001000053 ], [ -119.347827052999889, 50.515255321000041 ], [ -119.345136623999949, 50.515093801000042 ], [ -119.34515353299993, 50.514979593000071 ], [ -119.346414112999938, 50.514992510000134 ], [ -119.348071543999978, 50.51501805000008 ], [ -119.349056541999943, 50.51498941100003 ], [ -119.34902840899997, 50.514984685000044 ], [ -119.349021692999969, 50.514832298000051 ], [ -119.349690113999912, 50.514395106000102 ], [ -119.349871915999955, 50.514086002000049 ], [ -119.349903590999986, 50.512996502000114 ], [ -119.349902851999971, 50.512994927000108 ], [ -119.349381912999931, 50.511892802000013 ], [ -119.349343682999972, 50.511838453000081 ], [ -119.34899541899992, 50.511343136000086 ], [ -119.349134776999961, 50.510401137 ], [ -119.352305869999952, 50.510591412000103 ] ], [ [ -119.344608012999956, 50.495404808000082 ], [ -119.344677099999899, 50.494937954000108 ], [ -119.344595349999949, 50.494933042000056 ], [ -119.344526263, 50.495399896000031 ], [ -119.344608012999956, 50.495404808000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5478584", "BldgCostT": "3778334", "sL_LossRatio": "1", "sL_AssetLoss": "363.5", "sL_BldgLoss": "363.5", "sL_StrLoss": "363.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E6097C2C9AD65DC09A51FBC6BA3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.358590729999975, 50.480989141000109 ], [ -119.35899824, 50.47822848 ], [ -119.354588693, 50.477963937000027 ], [ -119.355081587999933, 50.474626572000076 ], [ -119.354533998999926, 50.47459370800015 ], [ -119.354029934, 50.478006416000042 ], [ -119.350646092999938, 50.477803270000067 ], [ -119.348416590999989, 50.477669367000054 ], [ -119.348591273999929, 50.476487754000082 ], [ -119.347412539999951, 50.476416941000096 ], [ -119.347941545999944, 50.472838819000039 ], [ -119.350039651999978, 50.47296485500005 ], [ -119.350205723, 50.471841100000077 ], [ -119.349388733999959, 50.471792026000109 ], [ -119.349356782999948, 50.47159619500006 ], [ -119.349687103999926, 50.471130497000075 ], [ -119.349687987999971, 50.471120312000032 ], [ -119.349722307999983, 50.470725999000059 ], [ -119.349625085999961, 50.470466809000044 ], [ -119.349278310999978, 50.470293008000112 ], [ -119.34936931299994, 50.4695809050001 ], [ -119.35079872399993, 50.468850301000018 ], [ -119.35110283599991, 50.468627923 ], [ -119.351380736999957, 50.468773442000085 ], [ -119.354053399999941, 50.470172890000057 ], [ -119.354567811000024, 50.470379810000125 ], [ -119.354858705999945, 50.470355694000041 ], [ -119.355025826999963, 50.470470399000064 ], [ -119.355018715999961, 50.470662188000098 ], [ -119.354609612, 50.472042799000057 ], [ -119.354661703999966, 50.472140713000037 ], [ -119.354786508999936, 50.472186992000097 ], [ -119.354907498, 50.472182492000059 ], [ -119.355045186000012, 50.472132094000067 ], [ -119.355562697999972, 50.471819409000076 ], [ -119.356169899999955, 50.471369398000093 ], [ -119.35714430699997, 50.471030698000085 ], [ -119.357397089999949, 50.47130311500004 ], [ -119.356865701999951, 50.471815401000121 ], [ -119.356861180999914, 50.471841019000088 ], [ -119.356839406999939, 50.47196460400005 ], [ -119.356865641999946, 50.472046896000037 ], [ -119.356887799999939, 50.472116395000079 ], [ -119.357028274999934, 50.472340495000054 ], [ -119.356994856999933, 50.472566861000097 ], [ -119.355771782, 50.472493470000067 ], [ -119.35548906299999, 50.474408106000062 ], [ -119.356187722999948, 50.474450030000071 ], [ -119.35633404699999, 50.473459012 ], [ -119.357637101999956, 50.47353719400013 ], [ -119.357647289999989, 50.473641326000063 ], [ -119.357659653000027, 50.473767435000056 ], [ -119.35766560899998, 50.473828081000072 ], [ -119.358063041999969, 50.474659593000098 ], [ -119.358147009999982, 50.474835186000099 ], [ -119.358335783, 50.475406999000079 ], [ -119.358362272999926, 50.475437910000046 ], [ -119.359032579999948, 50.476220390000073 ], [ -119.359085191999966, 50.476660306 ], [ -119.359013302999983, 50.477310313000068 ], [ -119.359109804999932, 50.477759212000088 ], [ -119.359706784999943, 50.478433913000039 ], [ -119.359859702999969, 50.478693081000067 ], [ -119.359875700999964, 50.479064091000055 ], [ -119.359438198999925, 50.480062093000107 ], [ -119.359405620999937, 50.480330903000045 ], [ -119.35957240299993, 50.480697404000061 ], [ -119.359819831999985, 50.480987405000029 ], [ -119.359898727999948, 50.481067578000072 ], [ -119.358590729999975, 50.480989141000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27813417", "BldgCostT": "19181667", "sL_LossRatio": "1", "sL_AssetLoss": "2195", "sL_BldgLoss": "2195", "sL_StrLoss": "2195", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3A7ED369AD65DC075A0FB30CA474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.35838279499994, 50.572229309000114 ], [ -119.357802699999951, 50.57210338500002 ], [ -119.357209289, 50.572086921000036 ], [ -119.355798402999966, 50.572110696000074 ], [ -119.354299092999966, 50.57207959800003 ], [ -119.35386110799999, 50.571943209000089 ], [ -119.35384970099993, 50.571937512000012 ], [ -119.353607392999947, 50.57181673500002 ], [ -119.353484509999973, 50.571755502000045 ], [ -119.353427915999973, 50.57171881000005 ], [ -119.353251509999922, 50.57160439300003 ], [ -119.353086220999927, 50.57137980000013 ], [ -119.352777079999953, 50.570601757000084 ], [ -119.35222693399993, 50.569216881000038 ], [ -119.351549386, 50.567511298000049 ], [ -119.35131711299999, 50.567135495000095 ], [ -119.350973277999984, 50.56674589200005 ], [ -119.35005101699997, 50.566069416000104 ], [ -119.349377685999926, 50.565575522000081 ], [ -119.349087363999971, 50.565230970000094 ], [ -119.348899310999954, 50.5650078110001 ], [ -119.348089199999933, 50.564046385000097 ], [ -119.34771817599993, 50.56372204200008 ], [ -119.347564773999977, 50.563587934000076 ], [ -119.347340666, 50.563628292000054 ], [ -119.34701914499999, 50.563697516000104 ], [ -119.346600099999989, 50.563795638000016 ], [ -119.34633569499999, 50.563865779000139 ], [ -119.34630724499999, 50.563873308000041 ], [ -119.346210199999973, 50.56391119700006 ], [ -119.34608509, 50.563949618000045 ], [ -119.345834115999963, 50.564017462000088 ], [ -119.345736164999963, 50.564037380000102 ], [ -119.345676080999951, 50.563974862000045 ], [ -119.345557356999905, 50.563877051000105 ], [ -119.345392659999931, 50.563716531000047 ], [ -119.345184005999897, 50.563529463000073 ], [ -119.344990028999987, 50.563351257000065 ], [ -119.34482535699999, 50.56319070200005 ], [ -119.344661160999976, 50.56303919500008 ], [ -119.34449597599999, 50.562869602000042 ], [ -119.344271685999942, 50.562655611000082 ], [ -119.344063587999969, 50.562477627000128 ], [ -119.34402011, 50.562442918000038 ], [ -119.343789061999956, 50.562278757000087 ], [ -119.343532183999983, 50.562168805000042 ], [ -119.343319561, 50.562111484000106 ], [ -119.343079737999943, 50.562072788000151 ], [ -119.342826825999964, 50.562052416000043 ], [ -119.342630690999954, 50.562048537000067 ], [ -119.342420087999983, 50.562036021000019 ], [ -119.34224984599993, 50.561986593000029 ], [ -119.34223511299993, 50.561969072000089 ], [ -119.342175269999984, 50.561872320000084 ], [ -119.342240861, 50.56172846500003 ], [ -119.342391375999952, 50.561583112000086 ], [ -119.342555345999955, 50.561419698000115 ], [ -119.342662683999933, 50.561257325000085 ], [ -119.34268075599995, 50.561215038000093 ], [ -119.342731778999962, 50.56110604000002 ], [ -119.342774111999987, 50.561026191000053 ], [ -119.342787951999924, 50.560938011000147 ], [ -119.342801849999972, 50.560832263000052 ], [ -119.342745382999951, 50.560692846000038 ], [ -119.342633255999928, 50.560581295000055 ], [ -119.342494138999925, 50.560514762000075 ], [ -119.342368622, 50.560438946000062 ], [ -119.342242613999971, 50.560327774000051 ], [ -119.342193113999912, 50.560269744000074 ], [ -119.34208872899994, 50.560145991000084 ], [ -119.342046979999921, 50.560111629000104 ], [ -119.341977120999985, 50.560024787000096 ], [ -119.341893448999912, 50.559947181000055 ], [ -119.341781693999962, 50.559799422000054 ], [ -119.341725693999962, 50.559623743000039 ], [ -119.341711978999953, 50.559411837000049 ], [ -119.341768834999982, 50.559287018000099 ], [ -119.341868810999955, 50.559205802000058 ], [ -119.342027556999966, 50.559168404000019 ], [ -119.342274996999919, 50.559157979000069 ], [ -119.342576301999912, 50.559142944000044 ], [ -119.342789277999941, 50.559076446000077 ], [ -119.342844569999926, 50.559003771000093 ], [ -119.342899463, 50.558913208000071 ], [ -119.342925679999937, 50.558805294000088 ], [ -119.342965265999936, 50.55866130800009 ], [ -119.342962858999954, 50.558536056 ], [ -119.342946872999946, 50.55843794700008 ], [ -119.342886192999941, 50.558215456000092 ], [ -119.342810579999977, 50.557948507000042 ], [ -119.342707210999933, 50.557700037000089 ], [ -119.342620887999914, 50.557594452000011 ], [ -119.34250687399998, 50.557498421000069 ], [ -119.342351370999964, 50.557425895000094 ], [ -119.342322787999976, 50.557412870000128 ], [ -119.342194401999961, 50.557388732000049 ], [ -119.342066898999946, 50.557382597000085 ], [ -119.341954815999927, 50.55740308200005 ], [ -119.341791315999956, 50.557406704000059 ], [ -119.34204889899992, 50.555669298000055 ], [ -119.341031111999911, 50.555608208000095 ], [ -119.341561553999924, 50.552030463000058 ], [ -119.342202673999935, 50.552068946000077 ], [ -119.342403610999938, 50.55071336900005 ], [ -119.342588354, 50.549466981000123 ], [ -119.342601391, 50.549467763000038 ], [ -119.342779213999961, 50.548267981000023 ], [ -119.345568815999911, 50.548435384000115 ], [ -119.348401309999957, 50.548605287000093 ], [ -119.348212569999959, 50.549879797000067 ], [ -119.349411316, 50.549951680000035 ], [ -119.349623301999898, 50.54851993900008 ], [ -119.355245480999955, 50.548856898000032 ], [ -119.354716162999964, 50.552434722000093 ], [ -119.35367739499992, 50.552372486000053 ], [ -119.353379415999967, 50.554386048000104 ], [ -119.353182305999937, 50.554374237000076 ], [ -119.353145718999926, 50.55462145200007 ], [ -119.351398259999982, 50.554516732000089 ], [ -119.3510611519999, 50.556793795000019 ], [ -119.350922664999956, 50.556785494000046 ], [ -119.350738906999979, 50.558026600000026 ], [ -119.348257470999954, 50.557877844000068 ], [ -119.348224176999906, 50.558102618000071 ], [ -119.351435563999956, 50.558295122000075 ], [ -119.351227114999944, 50.559703040000059 ], [ -119.354770453999947, 50.559915333000106 ], [ -119.354658964999942, 50.560668718000088 ], [ -119.354730402999976, 50.560672996000051 ], [ -119.354975175999968, 50.559018887000043 ], [ -119.360598705999934, 50.559355571000026 ], [ -119.360523427999951, 50.559864726000136 ], [ -119.360793135, 50.559880866000064 ], [ -119.360575049999966, 50.561355898000024 ], [ -119.361850902999919, 50.561432241000048 ], [ -119.361321962999966, 50.565010041000093 ], [ -119.355697720999956, 50.564673395000106 ], [ -119.355915981999885, 50.563198379000056 ], [ -119.355212184999971, 50.563156232000061 ], [ -119.355042748999935, 50.564301186000094 ], [ -119.35263418199996, 50.564156915000083 ], [ -119.352558309999935, 50.564669412000086 ], [ -119.354021511, 50.564757063000059 ], [ -119.353878816, 50.56572110600009 ], [ -119.356585497, 50.565883195000033 ], [ -119.356483261999969, 50.566574142000071 ], [ -119.36152958699999, 50.566876159000053 ], [ -119.361460631999933, 50.567342530000069 ], [ -119.362345767999955, 50.567395481000034 ], [ -119.362515539999919, 50.56624707700005 ], [ -119.362587756, 50.566251396000055 ], [ -119.362838420999978, 50.56455568000009 ], [ -119.362849459999964, 50.564556341000063 ], [ -119.362897600999986, 50.564230657000024 ], [ -119.362185787999977, 50.564188076000093 ], [ -119.362714648999898, 50.560610267000079 ], [ -119.364679567999957, 50.560727799000105 ], [ -119.364730173999959, 50.56038531400003 ], [ -119.365822268000031, 50.560450622000111 ], [ -119.365831925999956, 50.560385239000034 ], [ -119.366823775999961, 50.560444543000052 ], [ -119.36706954, 50.560459236000042 ], [ -119.366896289999943, 50.561323694000123 ], [ -119.366706034999979, 50.561688656000079 ], [ -119.366627637999954, 50.561839019000068 ], [ -119.366885173999961, 50.5619054040001 ], [ -119.367027121999982, 50.561920384000075 ], [ -119.367140880999926, 50.561935910000052 ], [ -119.367297410999925, 50.5619595470001 ], [ -119.367440273999961, 50.561992436000033 ], [ -119.367483029, 50.562000524000069 ], [ -119.367698241999946, 50.562067797000068 ], [ -119.36788567399995, 50.562144688000018 ], [ -119.36801714799999, 50.562231767000071 ], [ -119.368120827999959, 50.562328383000072 ], [ -119.368278686999957, 50.562378943000098 ], [ -119.368366457999954, 50.562439976000036 ], [ -119.368288596999932, 50.562576216000167 ], [ -119.368221204999955, 50.562640410000064 ], [ -119.368100047000027, 50.562759560000075 ], [ -119.36792195799994, 50.56314926000006 ], [ -119.36790720499998, 50.563418908000102 ], [ -119.367830666999978, 50.563582071000084 ], [ -119.367658989999882, 50.563818980000029 ], [ -119.367558256999985, 50.564063426000082 ], [ -119.367527147999979, 50.564288432000104 ], [ -119.367510184999972, 50.564513236000018 ], [ -119.367504627999949, 50.564683987000144 ], [ -119.367424018999913, 50.565044747000108 ], [ -119.367339639999983, 50.565333781000078 ], [ -119.367354474999971, 50.565629785000098 ], [ -119.36740311599999, 50.565754504000054 ], [ -119.367419008999903, 50.565790063000129 ], [ -119.367454899, 50.56594200300006 ], [ -119.367351470999907, 50.566132616000054 ], [ -119.36715022099996, 50.566343158000109 ], [ -119.366925223999942, 50.56664398800006 ], [ -119.366865894999989, 50.566869636000042 ], [ -119.366893031999922, 50.567129475000058 ], [ -119.366923774999989, 50.567461067000032 ], [ -119.366961439999969, 50.567648875000089 ], [ -119.36691224199997, 50.567793501000068 ], [ -119.366687404999979, 50.567815823000117 ], [ -119.366428449999887, 50.567721818000031 ], [ -119.366269625999905, 50.567652868000039 ], [ -119.366099424999945, 50.567638134000056 ], [ -119.366095813999976, 50.567566131000063 ], [ -119.36610632299994, 50.567493820000045 ], [ -119.366116398, 50.567412531000059 ], [ -119.366135604999954, 50.567231937000074 ], [ -119.366113395999932, 50.567070202000124 ], [ -119.36602330799991, 50.56696386600003 ], [ -119.365906867999982, 50.566894097000031 ], [ -119.365774453999919, 50.566788592000115 ], [ -119.365684422999948, 50.566682270000094 ], [ -119.365651244000034, 50.566583820000091 ], [ -119.365631714999921, 50.566476095000091 ], [ -119.36558352599998, 50.566359949000081 ], [ -119.365448470999965, 50.566200483000102 ], [ -119.36528738399997, 50.566086535000061 ], [ -119.364972058999925, 50.565993619000011 ], [ -119.36479870099997, 50.565915941000071 ], [ -119.364639457999985, 50.565838011000039 ], [ -119.364623598999941, 50.565857495000046 ], [ -119.364604971999938, 50.565904478000107 ], [ -119.364594052999919, 50.565932014000069 ], [ -119.36443821899999, 50.566324689000098 ], [ -119.364516896999959, 50.566771496000115 ], [ -119.364814980999938, 50.567550238000166 ], [ -119.364857695999916, 50.567661790000088 ], [ -119.364693679999959, 50.568366338 ], [ -119.364675784999946, 50.568443009000141 ], [ -119.364546882999988, 50.568996687 ], [ -119.364343282999982, 50.569337392000037 ], [ -119.364200696999958, 50.569486811000075 ], [ -119.363856686999952, 50.569750389000028 ], [ -119.363660392999975, 50.569859596000029 ], [ -119.362579010999966, 50.570265101000075 ], [ -119.362528970999918, 50.57029129900004 ], [ -119.362461898, 50.570326427000076 ], [ -119.361497992999986, 50.57083108700003 ], [ -119.361307488999955, 50.571073301000077 ], [ -119.360995688999964, 50.571685395000038 ], [ -119.360948689999972, 50.572012791000134 ], [ -119.36099542, 50.572167207000092 ], [ -119.361849604000014, 50.57345181100002 ], [ -119.362132803999941, 50.573974106999984 ], [ -119.362150119999967, 50.574026434000061 ], [ -119.362248493999957, 50.574323898000081 ], [ -119.362126408999956, 50.574861597000087 ], [ -119.36187982199999, 50.575397292000048 ], [ -119.361758607999931, 50.575765388000022 ], [ -119.361731177999957, 50.575951384000128 ], [ -119.361730903999899, 50.575953286000072 ], [ -119.361822883999963, 50.576788916000098 ], [ -119.361689000999988, 50.577051595000029 ], [ -119.36146520599999, 50.577241307000094 ], [ -119.36130629499999, 50.577317496000035 ], [ -119.361273571999959, 50.577321788000063 ], [ -119.361164507999931, 50.577336103000071 ], [ -119.360806810999961, 50.576655982000048 ], [ -119.360392980999961, 50.576048289 ], [ -119.359975206999977, 50.57541959400006 ], [ -119.359834997999926, 50.575149586000038 ], [ -119.359757792999972, 50.574779500000126 ], [ -119.359763307999941, 50.573859394000038 ], [ -119.359641510999964, 50.57341720200003 ], [ -119.359307596999969, 50.572911800000021 ], [ -119.359000592999934, 50.572618191000132 ], [ -119.358660399999962, 50.572376698000063 ], [ -119.35838279499994, 50.572229309000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14439584", "BldgCostT": "9958334", "sL_LossRatio": "1", "sL_AssetLoss": "986.8", "sL_BldgLoss": "986.8", "sL_StrLoss": "986.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C4C307B858D65DC0791CCC474E434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.341690677999935, 50.532859540000089 ], [ -119.34192336299999, 50.531289198000088 ], [ -119.342146676999917, 50.53141652500004 ], [ -119.342430983999932, 50.531474520000103 ], [ -119.342479261999983, 50.531475068000113 ], [ -119.342498566999936, 50.529490398000114 ], [ -119.34625699799993, 50.52971603000006 ], [ -119.346728069999983, 50.526534320000046 ], [ -119.347996571999929, 50.526610444000028 ], [ -119.348086105000021, 50.526005555000047 ], [ -119.34490578499999, 50.525814673000113 ], [ -119.345186506999966, 50.523918895000087 ], [ -119.342728745999949, 50.523771317000097 ], [ -119.343258677999955, 50.520193425000045 ], [ -119.343328097999972, 50.520197595000091 ], [ -119.345713067999981, 50.520340802000099 ], [ -119.345816197999966, 50.519644182000029 ], [ -119.346001481999949, 50.519655306000061 ], [ -119.346298704999967, 50.51764745600012 ], [ -119.346391421999925, 50.51702108900006 ], [ -119.34648069699989, 50.517026449000099 ], [ -119.346519530999927, 50.516764092000088 ], [ -119.352137725999953, 50.517101221000054 ], [ -119.351608533999965, 50.520679168000086 ], [ -119.35151925199996, 50.520673813000066 ], [ -119.351480443999918, 50.520936171000081 ], [ -119.351295153999956, 50.520925057000028 ], [ -119.351224976999973, 50.521399467000087 ], [ -119.353994863999986, 50.521565578 ], [ -119.35388903899999, 50.522281248000077 ], [ -119.354484796999927, 50.522316966000048 ], [ -119.354195244999943, 50.524275205000087 ], [ -119.354463233, 50.524291271000088 ], [ -119.354264587999936, 50.525634668000102 ], [ -119.354399827999956, 50.525642775000087 ], [ -119.354177813999954, 50.527144130000067 ], [ -119.35614147599992, 50.527261831000033 ], [ -119.355612482999959, 50.530839753000059 ], [ -119.355387834999988, 50.530826289000046 ], [ -119.3551881399999, 50.53217676 ], [ -119.353705100999932, 50.532087868000112 ], [ -119.353650887999933, 50.532454394000112 ], [ -119.352715994999969, 50.532398347000083 ], [ -119.352671960999942, 50.532696016000109 ], [ -119.348648282999989, 50.532454706000095 ], [ -119.347431536999963, 50.532381705 ], [ -119.347282664999938, 50.533387238000053 ], [ -119.342469642999987, 50.533098341000027 ], [ -119.341928911999986, 50.533065870000051 ], [ -119.341917173999931, 50.533056820000049 ], [ -119.341828743999883, 50.532977562000077 ], [ -119.341690677999935, 50.532859540000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10884667", "BldgCostT": "7506667", "sL_LossRatio": "1", "sL_AssetLoss": "613.7", "sL_BldgLoss": "613.7", "sL_StrLoss": "613.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7D9B18D4FD65DC023D3A9443C454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.346612715999953, 50.544803898000062 ], [ -119.346822511999903, 50.543387381000123 ], [ -119.345737483999955, 50.543322282000069 ], [ -119.343573249999963, 50.543192402000024 ], [ -119.344103344999951, 50.539614591000017 ], [ -119.344350590999966, 50.539629431000016 ], [ -119.344389646999971, 50.539365798000055 ], [ -119.344596321999958, 50.539378202000073 ], [ -119.344834517999928, 50.537770204000054 ], [ -119.346361264999942, 50.537861826000018 ], [ -119.346427183999978, 50.537416699000083 ], [ -119.342625026999912, 50.537188488000069 ], [ -119.342635229999971, 50.537119637000089 ], [ -119.342865911000032, 50.537115619000119 ], [ -119.343016943999899, 50.537041151000103 ], [ -119.343039392999955, 50.536933237000049 ], [ -119.343003464, 50.536790651000032 ], [ -119.342939358999942, 50.536648663000044 ], [ -119.342856793999957, 50.536426427000087 ], [ -119.342817095999948, 50.536212303000092 ], [ -119.342797446999967, 50.536024827000098 ], [ -119.343155125999928, 50.533610655000103 ], [ -119.34877539699994, 50.533947947000087 ], [ -119.348284227999955, 50.537265845000022 ], [ -119.351118877999937, 50.537435852000073 ], [ -119.352086417999928, 50.537493863000094 ], [ -119.352069371999903, 50.537609072000116 ], [ -119.352259122999925, 50.537598462000048 ], [ -119.352219824999906, 50.537418253000112 ], [ -119.351077388999911, 50.537349755000044 ], [ -119.348581239999987, 50.537200053000099 ], [ -119.349025922999942, 50.534196064000099 ], [ -119.349110865999975, 50.533622192000067 ], [ -119.354731182999913, 50.533959183000015 ], [ -119.354202000999976, 50.53753707000007 ], [ -119.352522062999967, 50.537436372000087 ], [ -119.352587077999985, 50.537743469000098 ], [ -119.352993605000037, 50.537767839000033 ], [ -119.352683062000011, 50.539866805000095 ], [ -119.35298565, 50.539884943000118 ], [ -119.352618170999932, 50.54236858300002 ], [ -119.35264443299998, 50.542370158000061 ], [ -119.352519156999932, 50.54321678400003 ], [ -119.354318335999963, 50.54332461300006 ], [ -119.353789009999943, 50.546902456000041 ], [ -119.353326115999948, 50.546874717000087 ], [ -119.353158145999927, 50.548009868000094 ], [ -119.352798162999974, 50.547988294000035 ], [ -119.352797129999985, 50.547995276000108 ], [ -119.348295572999959, 50.547725398000082 ], [ -119.348179757999944, 50.548507481000037 ], [ -119.345572329999982, 50.548351075000056 ], [ -119.342557674999952, 50.548170164000091 ], [ -119.343087906999955, 50.544592380000097 ], [ -119.34562262799993, 50.544744496000071 ], [ -119.346612715999953, 50.544803898000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "211.5", "sL_BldgLoss": "211.5", "sL_StrLoss": "211.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008FB12CFBE2D75DC0DE88D5BCB6444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.374813613999947, 50.53969487300003 ], [ -119.37482307499999, 50.539630714000083 ], [ -119.37431000199993, 50.539600060000062 ], [ -119.37445235699991, 50.538634748000092 ], [ -119.369504814999971, 50.538339029000042 ], [ -119.369568498999968, 50.53790749299999 ], [ -119.368694119999986, 50.537855208000046 ], [ -119.369222155999978, 50.534277254000109 ], [ -119.374842705999953, 50.534613228000104 ], [ -119.374779075999967, 50.535044769000088 ], [ -119.375653406999902, 50.535097007000054 ], [ -119.375577924999973, 50.535609002000101 ], [ -119.377872075999946, 50.535746036000099 ], [ -119.3778271, 50.535993289000032 ], [ -119.377709631999934, 50.53631575 ], [ -119.377415285999987, 50.537123704000066 ], [ -119.376853293999943, 50.53817570400011 ], [ -119.37677959899996, 50.538483490000097 ], [ -119.376898199999971, 50.538708100000044 ], [ -119.377304588999948, 50.539269202000121 ], [ -119.377502587999956, 50.5397052060001 ], [ -119.377509328999906, 50.539855891000052 ], [ -119.374813613999947, 50.53969487300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "80.6", "sL_BldgLoss": "80.6", "sL_StrLoss": "80.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F866827E32D75DC02DDED968CA464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.359910009999979, 50.551094881000047 ], [ -119.36553258699999, 50.551431319000095 ], [ -119.36538112199996, 50.552456713000034 ], [ -119.365071504999932, 50.554552624000038 ], [ -119.365004056999908, 50.555009181000059 ], [ -119.359381037, 50.554672717000081 ], [ -119.359910009999979, 50.551094881000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "93.4", "sL_BldgLoss": "93.4", "sL_StrLoss": "93.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED9B3DC899D65DC07CFB6B6048384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.353636802999915, 50.437933823000073 ], [ -119.356204403, 50.438088050000012 ], [ -119.35567646, 50.44166636700006 ], [ -119.355083266999912, 50.441630741000083 ], [ -119.350067621999983, 50.441329385000074 ], [ -119.350596006, 50.437751094000049 ], [ -119.353636802999915, 50.437933823000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000504C078064D45DC0FD44AF50B5354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.317807318999925, 50.417832303000097 ], [ -119.319724042999937, 50.417948119000066 ], [ -119.319193446, 50.421526351000054 ], [ -119.317783193999944, 50.421441142000063 ], [ -119.317807318999925, 50.417832303000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.6", "sL_BldgLoss": "49.6", "sL_StrLoss": "49.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B4FFCFFD5D55DC08A91678FFE3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.33862455099991, 50.483485531000106 ], [ -119.34423854299996, 50.48382307300006 ], [ -119.344177795999954, 50.484233655000025 ], [ -119.343762092999924, 50.484688904000095 ], [ -119.343748915999967, 50.48509920500009 ], [ -119.34211481399997, 50.485058846000065 ], [ -119.338405152999925, 50.484967121000039 ], [ -119.33862455099991, 50.483485531000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3202083", "BldgCostT": "2208333", "sL_LossRatio": "1", "sL_AssetLoss": "229", "sL_BldgLoss": "229", "sL_StrLoss": "229", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000015BD20FB2D75DC0B922E7B3F2394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.36590801, 50.457220391000106 ], [ -119.366302920999928, 50.454540628000053 ], [ -119.366435324999941, 50.453642095000092 ], [ -119.367472354, 50.453704250000079 ], [ -119.36749438399994, 50.453554720000056 ], [ -119.367528195999952, 50.453556746000103 ], [ -119.367646221999948, 50.45275562100003 ], [ -119.368226833, 50.45279041600007 ], [ -119.368401254999952, 50.451606335000136 ], [ -119.369738355999957, 50.451686453000036 ], [ -119.370048322999978, 50.45170502400002 ], [ -119.373756842999953, 50.451927138000073 ], [ -119.37399876299996, 50.450283408000054 ], [ -119.374064528999952, 50.449836537000095 ], [ -119.370955251999973, 50.449650322000068 ], [ -119.370962913999961, 50.449803535000072 ], [ -119.370964514, 50.449835567000036 ], [ -119.370749566999962, 50.449839949000086 ], [ -119.370643409999914, 50.450560902000106 ], [ -119.370222063999947, 50.450535660000128 ], [ -119.369048606999982, 50.450465352000037 ], [ -119.36503335499998, 50.450224680000119 ], [ -119.365293077000032, 50.448462250000134 ], [ -119.366060895999937, 50.448459353000011 ], [ -119.369199493999986, 50.448399685 ], [ -119.374653421999966, 50.448408 ], [ -119.374699111999988, 50.450000576000036 ], [ -119.374722310999985, 50.450340364000098 ], [ -119.374814594999989, 50.451689318000078 ], [ -119.374906093999982, 50.453027227000085 ], [ -119.373861046999977, 50.45296466000007 ], [ -119.373615477, 50.454633050000027 ], [ -119.375021677999925, 50.454717235000082 ], [ -119.375111796999988, 50.456034799000044 ], [ -119.375027833999965, 50.456021516000042 ], [ -119.374508063999983, 50.456005346000026 ], [ -119.373386301999957, 50.456145126000095 ], [ -119.373175287999956, 50.456171416000089 ], [ -119.372424000999956, 50.456138073000062 ], [ -119.372293914999943, 50.456100123000034 ], [ -119.371934309999986, 50.456080799000041 ], [ -119.37080870199999, 50.455824490000069 ], [ -119.370067802999927, 50.455948398000032 ], [ -119.369688711999956, 50.456243203000028 ], [ -119.36938699800001, 50.456698912000064 ], [ -119.368617800999985, 50.457074886000029 ], [ -119.368590397999952, 50.457272893000074 ], [ -119.368575525999944, 50.457380249000025 ], [ -119.36590801, 50.457220391000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "91.6", "sL_BldgLoss": "91.6", "sL_StrLoss": "91.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE6DC3E66BD65DC0B91C2B08D03B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.347253557999977, 50.471663747000065 ], [ -119.347427550999939, 50.470486839000067 ], [ -119.345681488999901, 50.470381906000092 ], [ -119.346034766999963, 50.467992729000059 ], [ -119.34621056099995, 50.466803765000108 ], [ -119.347507065999935, 50.466881684000064 ], [ -119.347525305999937, 50.466758295000069 ], [ -119.348980734999927, 50.466845746000061 ], [ -119.349741729999963, 50.466891464000106 ], [ -119.34977646, 50.46665644200003 ], [ -119.350214861999945, 50.463689448000089 ], [ -119.355826479999919, 50.464026413000042 ], [ -119.355632551999989, 50.46534001800012 ], [ -119.355686533999986, 50.465343258000082 ], [ -119.355603801999933, 50.465397997000125 ], [ -119.355137406999944, 50.465939209000069 ], [ -119.354452320999954, 50.466330901000042 ], [ -119.353591793999939, 50.46632949500006 ], [ -119.353500309999944, 50.46639157800012 ], [ -119.353495289999955, 50.466394989000044 ], [ -119.353381906999942, 50.467233801000113 ], [ -119.353006306999973, 50.467609792000047 ], [ -119.352337503999962, 50.468018590000057 ], [ -119.35148038899996, 50.468351790000071 ], [ -119.351161403999981, 50.468585089000079 ], [ -119.35110283599991, 50.468627923 ], [ -119.35079872399993, 50.468850301000018 ], [ -119.34936931299994, 50.4695809050001 ], [ -119.349278310999978, 50.470293008000112 ], [ -119.349625085999961, 50.470466809000044 ], [ -119.349722307999983, 50.470725999000059 ], [ -119.349687987999971, 50.471120312000032 ], [ -119.349687103999926, 50.471130497000075 ], [ -119.349356782999948, 50.47159619500006 ], [ -119.349388733999959, 50.471792026000109 ], [ -119.347253557999977, 50.471663747000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021557", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5903917", "BldgCostT": "4071667", "sL_LossRatio": "1", "sL_AssetLoss": "465", "sL_BldgLoss": "465", "sL_StrLoss": "465", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009FBC7E77E1D55DC0D49F37F41A374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.344875420999941, 50.435040311000101 ], [ -119.34487260899999, 50.434983430000052 ], [ -119.344166571999921, 50.434997663000033 ], [ -119.344028463999933, 50.435000446000068 ], [ -119.344027913999966, 50.434989319000067 ], [ -119.344015145999961, 50.434730871000077 ], [ -119.343593076, 50.434739377000085 ], [ -119.343579758999951, 50.434469803000042 ], [ -119.341469418999949, 50.434512308000087 ], [ -119.341456114999971, 50.434242733000055 ], [ -119.341034048999958, 50.434251229000026 ], [ -119.341024310999941, 50.434053870000128 ], [ -119.34039247099993, 50.434015832000071 ], [ -119.340435684999974, 50.433723584000134 ], [ -119.34016332099999, 50.433729066000147 ], [ -119.34011325299997, 50.432713903000042 ], [ -119.339867741999967, 50.43269912100002 ], [ -119.339874191999982, 50.432655508000011 ], [ -119.339751466999971, 50.432657977000126 ], [ -119.339669191999974, 50.433214353000096 ], [ -119.336122879999962, 50.433000764000091 ], [ -119.335902874999988, 50.433005184000081 ], [ -119.33590200299993, 50.432987458000063 ], [ -119.334061522999917, 50.4328765590001 ], [ -119.33415711, 50.432230704000112 ], [ -119.333330759999967, 50.432247287000081 ], [ -119.333317501999915, 50.431977709000144 ], [ -119.332895453999981, 50.431986175000134 ], [ -119.332882198999954, 50.431716597000104 ], [ -119.332460153999975, 50.431725063000044 ], [ -119.332458133999978, 50.431683990000039 ], [ -119.332446900999983, 50.431455486000097 ], [ -119.33169918199999, 50.431470478000044 ], [ -119.330758723999949, 50.431489330000034 ], [ -119.33073506599996, 50.431007686000079 ], [ -119.330711214999937, 50.430522120000049 ], [ -119.330705758999912, 50.430411019000104 ], [ -119.333237966999945, 50.430360244000013 ], [ -119.33325122199993, 50.430629821000103 ], [ -119.333673258, 50.430621353000085 ], [ -119.333660000999913, 50.430351776000059 ], [ -119.334437488, 50.430336172000082 ], [ -119.33459107499999, 50.42929830700011 ], [ -119.337581987999911, 50.429478510000088 ], [ -119.33786423, 50.427570278000125 ], [ -119.338367889999944, 50.427600615000067 ], [ -119.33841492199997, 50.427282590000068 ], [ -119.340273361999962, 50.427394512000077 ], [ -119.34026627099999, 50.427250743000073 ], [ -119.340688275999966, 50.427242250000099 ], [ -119.34067498099995, 50.426972674000126 ], [ -119.341705700999981, 50.426951925000061 ], [ -119.341985492999967, 50.425058966000023 ], [ -119.34446311, 50.425208097000088 ], [ -119.347592249999977, 50.425396363000083 ], [ -119.347402481999893, 50.426681352000124 ], [ -119.347063772999945, 50.428974695000122 ], [ -119.34626305099998, 50.428926528000062 ], [ -119.346320926999979, 50.430097030000105 ], [ -119.346742954999968, 50.430088515000065 ], [ -119.34679628499994, 50.431166814000079 ], [ -119.347218321999961, 50.431158297000074 ], [ -119.347244994000022, 50.431697447000012 ], [ -119.347667034999958, 50.431688928000128 ], [ -119.347680371999928, 50.431958503000018 ], [ -119.348102416999907, 50.431949983000067 ], [ -119.34811575699996, 50.432219558000035 ], [ -119.348959849999943, 50.432202511000114 ], [ -119.348973195, 50.432472086000047 ], [ -119.349395242999933, 50.432463561000084 ], [ -119.349408590999971, 50.432733135000078 ], [ -119.349830641999944, 50.432724609000054 ], [ -119.349884045999914, 50.433802905000142 ], [ -119.34974208099996, 50.433805774000106 ], [ -119.348617867, 50.433828482000123 ], [ -119.34863121099994, 50.434098056000039 ], [ -119.348209147999938, 50.43410657900008 ], [ -119.348249175999968, 50.434915303000118 ], [ -119.347827104999922, 50.434923824000045 ], [ -119.347840446999925, 50.435193399000092 ], [ -119.347526030999916, 50.435199745000055 ], [ -119.344885931999954, 50.435253006000096 ], [ -119.344875420999941, 50.435040311000101 ] ], [ [ -119.346889618999981, 50.433053838000042 ], [ -119.346876284999937, 50.432784263 ], [ -119.346454234999939, 50.432792780000057 ], [ -119.346440902999987, 50.432523205000017 ], [ -119.346270192999967, 50.43252664900011 ], [ -119.346081693999935, 50.433802587000031 ], [ -119.3460855, 50.433879594000061 ], [ -119.346507561999957, 50.433871079000014 ], [ -119.346467564999926, 50.433062355000082 ], [ -119.346889618999981, 50.433053838000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.7", "sL_BldgLoss": "51.7", "sL_StrLoss": "51.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004F665112F1D65DC0B331A7B2453B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.35776165099999, 50.461642015000059 ], [ -119.360135544999963, 50.461784442000024 ], [ -119.359717688999922, 50.462014115000073 ], [ -119.359505797999986, 50.462251904000055 ], [ -119.359409724, 50.46372880400002 ], [ -119.358830306999948, 50.464289991000086 ], [ -119.35780690199999, 50.464678787000018 ], [ -119.35730966199999, 50.464704593000071 ], [ -119.35776165099999, 50.461642015000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "77.3", "sL_BldgLoss": "77.3", "sL_StrLoss": "77.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B152414515D55DC0EF46B4577E354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.330782677999963, 50.416333463000043 ], [ -119.332685602999945, 50.416319302000076 ], [ -119.33241575299995, 50.418142816000042 ], [ -119.332352050999987, 50.418573256000052 ], [ -119.331985764999928, 50.418551168000064 ], [ -119.331811991999984, 50.419725266000071 ], [ -119.326206056999979, 50.419387070000049 ], [ -119.326665353999914, 50.416286266000043 ], [ -119.330230994999965, 50.416342791000019 ], [ -119.330782677999963, 50.416333463000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "71.1", "sL_BldgLoss": "71.1", "sL_StrLoss": "71.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000107B3E56B2D65DC0C506A8FCAD374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.352094905999977, 50.433039516000065 ], [ -119.357702728999982, 50.433376399000075 ], [ -119.357346771999971, 50.435789902000089 ], [ -119.357174959999924, 50.436954743000101 ], [ -119.353019214999932, 50.436705121000038 ], [ -119.351566695999949, 50.436617835000092 ], [ -119.351738652000023, 50.435453002000031 ], [ -119.351791410999965, 50.435095587000042 ], [ -119.352094905999977, 50.433039516000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "48.8", "sL_BldgLoss": "48.8", "sL_StrLoss": "48.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FA4F2FDF97D55DC08A3F8A3AF3354940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.334856110999951, 50.41952718900005 ], [ -119.340462130999953, 50.419864948000082 ], [ -119.33993315299989, 50.423443271000046 ], [ -119.339713557999971, 50.423430046000064 ], [ -119.334326694999959, 50.423105486000075 ], [ -119.334773556999934, 50.420085213000064 ], [ -119.334856110999951, 50.41952718900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "141.6", "sL_BldgLoss": "141.6", "sL_StrLoss": "141.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029C8748DBBD45DC03DA1114BCE364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.320956607, 50.430593802000075 ], [ -119.321154588999946, 50.429258651000119 ], [ -119.321057801999984, 50.429252807000069 ], [ -119.321074552999946, 50.429139830000082 ], [ -119.320618594999928, 50.429112295000046 ], [ -119.320624778999957, 50.429070597000106 ], [ -119.320321589999949, 50.429052287000069 ], [ -119.320852184999964, 50.425474083000033 ], [ -119.326458836999933, 50.425812548000081 ], [ -119.326452657999965, 50.425854246000064 ], [ -119.326755830999957, 50.425872540000086 ], [ -119.326739093999933, 50.425985518000097 ], [ -119.327195022999945, 50.426013028000149 ], [ -119.327072806999979, 50.426838049000082 ], [ -119.327549667999975, 50.4268668200001 ], [ -119.32723387599998, 50.428998592000042 ], [ -119.327195768999971, 50.429255827000148 ], [ -119.32701958699991, 50.430445050000074 ], [ -119.326639479, 50.430422117000084 ], [ -119.326563896, 50.430932259000016 ], [ -119.320956607, 50.430593802000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73.7", "sL_BldgLoss": "73.7", "sL_StrLoss": "73.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001D767C0741D75DC0938D4977BE384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.363578654999969, 50.447967946000048 ], [ -119.363593332999969, 50.447868364000094 ], [ -119.362021812999942, 50.447774102000082 ], [ -119.362549323999986, 50.444195784000037 ], [ -119.364378188, 50.444305479000086 ], [ -119.364378873999925, 50.444300822000045 ], [ -119.362204763999969, 50.444170415000052 ], [ -119.362532761999958, 50.441945292000064 ], [ -119.362001409999934, 50.441913414000048 ], [ -119.362528853999947, 50.438335069000104 ], [ -119.363156658999984, 50.438372734000033 ], [ -119.364251777999925, 50.438438426000118 ], [ -119.364275956999961, 50.440080430000066 ], [ -119.36435532899999, 50.442468890000015 ], [ -119.364469769999943, 50.444726965000015 ], [ -119.364521328999956, 50.448024478000022 ], [ -119.363578654999969, 50.447967946000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "122", "sL_BldgLoss": "122", "sL_StrLoss": "122", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099DC414F37D85DC0E46EAD82DA454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377534014999981, 50.54545508900005 ], [ -119.377758097999902, 50.544704187000079 ], [ -119.377635620999982, 50.542565848000038 ], [ -119.377611706999957, 50.542148101000045 ], [ -119.377556757999983, 50.540917899000064 ], [ -119.379056089999935, 50.541007424000071 ], [ -119.378928861999981, 50.541870725000102 ], [ -119.379692428999959, 50.54191630900003 ], [ -119.379440069999973, 50.54362876800004 ], [ -119.379747344999927, 50.543647110000023 ], [ -119.379484327999961, 50.545431834000048 ], [ -119.380311348999939, 50.545481199000115 ], [ -119.37978406299996, 50.549059156000062 ], [ -119.377463951, 50.54892065500011 ], [ -119.375564372999946, 50.548807221000061 ], [ -119.375762703999968, 50.54831359700006 ], [ -119.376353271999946, 50.54736061800002 ], [ -119.377491243999927, 50.545524120000081 ], [ -119.377534014999981, 50.54545508900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "88.2", "sL_BldgLoss": "88.2", "sL_StrLoss": "88.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051169DB0ADD85DC0EED34C52F43A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.389326052999962, 50.459747010000093 ], [ -119.390703188999922, 50.45968235400008 ], [ -119.390470970999942, 50.461263822000078 ], [ -119.38616980399999, 50.461006910000052 ], [ -119.386132581999988, 50.461260222000135 ], [ -119.385715256999973, 50.461235285000029 ], [ -119.385678674999895, 50.461484232000039 ], [ -119.380067151999967, 50.461148775000055 ], [ -119.380215768999946, 50.460138256000086 ], [ -119.380394453999941, 50.460139308000066 ], [ -119.38089910199993, 50.460142287000117 ], [ -119.382193699999959, 50.460081633000051 ], [ -119.388425586999929, 50.459789298000061 ], [ -119.389326052999962, 50.459747010000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8344751", "BldgCostT": "5755001", "sL_LossRatio": "1", "sL_AssetLoss": "495.7", "sL_BldgLoss": "495.7", "sL_StrLoss": "495.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051B1BD5850D75DC0BCB355CD9C3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.362713691999915, 50.483909004000068 ], [ -119.362591491999979, 50.483784217000064 ], [ -119.36201670699991, 50.483397222000036 ], [ -119.361557951999913, 50.483088363000014 ], [ -119.361509638, 50.483055824000076 ], [ -119.361344624999958, 50.482944752000051 ], [ -119.361258372999899, 50.482886690000058 ], [ -119.360919775999932, 50.482231128000095 ], [ -119.360782683999957, 50.481965700000032 ], [ -119.360708569999986, 50.481890386000025 ], [ -119.360591524999933, 50.481771479000088 ], [ -119.360264161999979, 50.481438887000067 ], [ -119.361483421999978, 50.481511984000143 ], [ -119.361534526999932, 50.481165649000033 ], [ -119.359898727999948, 50.481067578000072 ], [ -119.359819831999985, 50.480987405000029 ], [ -119.35957240299993, 50.480697404000061 ], [ -119.359405620999937, 50.480330903000045 ], [ -119.359438198999925, 50.480062093000107 ], [ -119.359875700999964, 50.479064091000055 ], [ -119.359859702999969, 50.478693081000067 ], [ -119.359706784999943, 50.478433913000039 ], [ -119.359109804999932, 50.477759212000088 ], [ -119.359013302999983, 50.477310313000068 ], [ -119.359085191999966, 50.476660306 ], [ -119.359032579999948, 50.476220390000073 ], [ -119.358362272999926, 50.475437910000046 ], [ -119.358335783, 50.475406999000079 ], [ -119.358147009999982, 50.474835186000099 ], [ -119.358063041999969, 50.474659593000098 ], [ -119.35766560899998, 50.473828081000072 ], [ -119.357659653000027, 50.473767435000056 ], [ -119.357647289999989, 50.473641326000063 ], [ -119.357637101999956, 50.47353719400013 ], [ -119.361946924, 50.473795664000079 ], [ -119.361605581999925, 50.476109383000043 ], [ -119.365065884999979, 50.476316782000055 ], [ -119.364644342999924, 50.479175252000083 ], [ -119.367466503999964, 50.479344322000024 ], [ -119.366938970999968, 50.482922508000044 ], [ -119.364033946999925, 50.482748475000029 ], [ -119.36386122499999, 50.483919384000032 ], [ -119.365672088999972, 50.484027878000127 ], [ -119.365679348999947, 50.483978651 ], [ -119.37129360499992, 50.48431482500007 ], [ -119.370766316999934, 50.487893009000061 ], [ -119.369136324999886, 50.487795438000035 ], [ -119.368837641999917, 50.489821549000126 ], [ -119.366844128999929, 50.489702184000066 ], [ -119.366832516999949, 50.489601888000074 ], [ -119.366843025999955, 50.489575243000033 ], [ -119.366884414999944, 50.489470044000086 ], [ -119.367018197999982, 50.489130200000012 ], [ -119.367258679999949, 50.488815206000027 ], [ -119.367386698999937, 50.488552095000024 ], [ -119.36728820899999, 50.488134685000105 ], [ -119.36703419899996, 50.487917401000068 ], [ -119.366670507999942, 50.487809891000062 ], [ -119.366325877999927, 50.487563594000086 ], [ -119.366173180999908, 50.487062593000097 ], [ -119.365964156999937, 50.486613647000077 ], [ -119.365957092999977, 50.486598519000019 ], [ -119.365432296999955, 50.48610501100012 ], [ -119.364721364000033, 50.485665166000032 ], [ -119.364135723999965, 50.48530286600009 ], [ -119.364125615999939, 50.485296597000151 ], [ -119.364011121999937, 50.485208679000053 ], [ -119.363827164000014, 50.485067371000085 ], [ -119.363475713999946, 50.484797402000048 ], [ -119.363007399999901, 50.48420899900006 ], [ -119.362713691999915, 50.483909004000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "1", "sL_AssetLoss": "210.4", "sL_BldgLoss": "210.4", "sL_StrLoss": "210.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001AEB8FEE6FDA5DC0E8A6AC2A243B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.409350067999981, 50.463148280000084 ], [ -119.40940703099993, 50.462759251000108 ], [ -119.406838714999978, 50.462606312000041 ], [ -119.407226142999946, 50.459961240000048 ], [ -119.407566446999965, 50.46003255400008 ], [ -119.408180350999885, 50.460161225000022 ], [ -119.40854151399999, 50.460236902000098 ], [ -119.41140618799993, 50.460872206000047 ], [ -119.412683303999941, 50.461128701000106 ], [ -119.413428218999911, 50.461240704000041 ], [ -119.414404195999936, 50.461389006000033 ], [ -119.416452187999937, 50.461610098000087 ], [ -119.416999390999962, 50.461641708000116 ], [ -119.417638288999981, 50.461676094000083 ], [ -119.421112202999893, 50.461755401000097 ], [ -119.421750466, 50.461750348000095 ], [ -119.42159780599999, 50.462794906000084 ], [ -119.420090139999957, 50.462705301000057 ], [ -119.420050048999926, 50.462979540000099 ], [ -119.419133140999946, 50.462925035000126 ], [ -119.419106716999949, 50.463105762000076 ], [ -119.415052410999976, 50.462864665000026 ], [ -119.414962057999958, 50.463482256000077 ], [ -119.409350067999981, 50.463148280000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "161.1", "sL_BldgLoss": "161.1", "sL_StrLoss": "161.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BBEE318170D75DC0E36FFFBAE83A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.367385666999951, 50.45826977300004 ], [ -119.36909572, 50.458372235000105 ], [ -119.368701879999918, 50.461045627000018 ], [ -119.368568560999961, 50.461950522000066 ], [ -119.365849037999951, 50.461787565000101 ], [ -119.362957105999968, 50.461614201000053 ], [ -119.363282262999974, 50.459409004000079 ], [ -119.363417590999958, 50.459339397000093 ], [ -119.364983803999962, 50.459100185000096 ], [ -119.365922007, 50.458704194000042 ], [ -119.367385666999951, 50.45826977300004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11571000", "BldgCostT": "7980000", "sL_LossRatio": "1", "sL_AssetLoss": "759.9", "sL_BldgLoss": "759.9", "sL_StrLoss": "759.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000033BEB36679E15DC08610C269623D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.523667005999968, 50.486322390000083 ], [ -119.523844546999968, 50.485089006000116 ], [ -119.523067572999963, 50.485043576000109 ], [ -119.523363105999934, 50.482990584000042 ], [ -119.52049283099997, 50.482822710000107 ], [ -119.520568397999952, 50.482297971000094 ], [ -119.520254458999943, 50.482279605000038 ], [ -119.520371453999942, 50.481467192000089 ], [ -119.519332084999974, 50.481406381000028 ], [ -119.519435425999959, 50.480688873000084 ], [ -119.517647379999985, 50.48058423600007 ], [ -119.51772332099992, 50.480057100000025 ], [ -119.517693216999987, 50.480055338000021 ], [ -119.517825538999944, 50.479136813000125 ], [ -119.516954355999985, 50.479085820000101 ], [ -119.51709285799997, 50.478124488000091 ], [ -119.516044193999917, 50.478063097000067 ], [ -119.516559845999936, 50.474484188000133 ], [ -119.516611508999944, 50.474487213000089 ], [ -119.516689871000025, 50.473943290000072 ], [ -119.517721449999954, 50.474003681000028 ], [ -119.517913490999902, 50.472670414000056 ], [ -119.518606120999962, 50.472710957000118 ], [ -119.52265094399999, 50.472947630000064 ], [ -119.522699594999978, 50.473005159000117 ], [ -119.522730641999956, 50.473037703000074 ], [ -119.52279799799993, 50.473082434000112 ], [ -119.522887747999917, 50.473142055000011 ], [ -119.52295510499998, 50.473186784000092 ], [ -119.523000697999947, 50.473248758000146 ], [ -119.52307586199997, 50.473337078000029 ], [ -119.523151062999986, 50.473425386 ], [ -119.523196140999957, 50.47347837100007 ], [ -119.523241735999989, 50.473540344000057 ], [ -119.523287347999968, 50.473602342000071 ], [ -119.523333405999963, 50.473673291000075 ], [ -119.523393062999972, 50.473734968000038 ], [ -119.523423615999931, 50.473779276000087 ], [ -119.523512878999966, 50.473867288000065 ], [ -119.523559419999927, 50.473947234000036 ], [ -119.523618598999946, 50.473999913000078 ], [ -119.523664194999967, 50.474061886000079 ], [ -119.523739841999912, 50.474159204000038 ], [ -119.523785437999962, 50.474221177000068 ], [ -119.523830517999912, 50.474274163000125 ], [ -119.523906665999903, 50.474380444000097 ], [ -119.52396586299993, 50.474433148000038 ], [ -119.524025505999973, 50.474494801000056 ], [ -119.524056574000028, 50.474548096000049 ], [ -119.524130299000021, 50.474609478000097 ], [ -119.52416085199999, 50.474653785000079 ], [ -119.524206449999951, 50.474715758000052 ], [ -119.524266574999956, 50.474786410000107 ], [ -119.524340336999927, 50.474847781000044 ], [ -119.524400015999916, 50.474909424000082 ], [ -119.524460621999978, 50.474989075000039 ], [ -119.524506238999962, 50.475051071000031 ], [ -119.524551356999908, 50.475104047000094 ], [ -119.524611480999951, 50.475174698000053 ], [ -119.524656561999976, 50.475227684000039 ], [ -119.524731305999964, 50.475307017000098 ], [ -119.524777349999951, 50.475377999000045 ], [ -119.524837513999913, 50.475448640000096 ], [ -119.524868531999942, 50.475501922000056 ], [ -119.524958765999941, 50.475607930000137 ], [ -119.524989318999971, 50.475652237000077 ], [ -119.525064493999977, 50.47574055500008 ], [ -119.525169276999975, 50.475855208000105 ], [ -119.525227994999952, 50.475898911000108 ], [ -119.525273595999948, 50.475960884000067 ], [ -119.525318714999941, 50.47601386000008 ], [ -119.525363333999977, 50.476057871000059 ], [ -119.525422535999979, 50.476110573000057 ], [ -119.525468118999981, 50.476172523000081 ], [ -119.525527783999948, 50.476234199000032 ], [ -119.525573347999952, 50.476296183000045 ], [ -119.525649039999976, 50.476393489 ], [ -119.525709689999971, 50.476473128000045 ], [ -119.525755253999961, 50.476535112000079 ], [ -119.525830465999988, 50.476623419000113 ], [ -119.525875552999977, 50.476676404000088 ], [ -119.525965309999933, 50.476773414000029 ], [ -119.526040486999975, 50.476861732000053 ], [ -119.52608560799996, 50.47691470600008 ], [ -119.526146721999936, 50.477003320000094 ], [ -119.526177078999979, 50.477038989000064 ], [ -119.523809439999965, 50.476900560000047 ], [ -119.523747342999954, 50.477332040000107 ], [ -119.523777444999894, 50.477333800000089 ], [ -119.523674181000018, 50.478051314000048 ], [ -119.525462140999977, 50.478155856000029 ], [ -119.525345245999929, 50.478968277000085 ], [ -119.52638456699998, 50.479029032000049 ], [ -119.526363164999935, 50.47917779100009 ], [ -119.528026652999984, 50.479275012000137 ], [ -119.528059990999907, 50.479309438000044 ], [ -119.528105098999916, 50.479362447000042 ], [ -119.528149760999924, 50.479406447000017 ], [ -119.528195834999934, 50.479477394000071 ], [ -119.528255509999951, 50.479539070000065 ], [ -119.528316130999954, 50.479618719000058 ], [ -119.528361737999958, 50.479680692000095 ], [ -119.528422860999981, 50.479769305000026 ], [ -119.52848205399999, 50.479821983000065 ], [ -119.528542210999916, 50.479892658000011 ], [ -119.528632467999927, 50.479998606000095 ], [ -119.528765402999966, 50.480112663000092 ], [ -119.528855639999989, 50.480218645000086 ], [ -119.528930400999968, 50.480297975000077 ], [ -119.529005072999936, 50.480377305000012 ], [ -119.529066197999953, 50.480465918000078 ], [ -119.529140923999961, 50.48054525900011 ], [ -119.529201101999917, 50.480615899000021 ], [ -119.529261763999926, 50.480695537000024 ], [ -119.529336436000023, 50.480774866000047 ], [ -119.529411162999921, 50.480854208000025 ], [ -119.529457759999943, 50.480934142000123 ], [ -119.529548946999938, 50.481058098000105 ], [ -119.5296241409999, 50.481146415000083 ], [ -119.529685267000033, 50.481235026 ], [ -119.529745447999986, 50.481305666 ], [ -119.529791024999952, 50.481367650000053 ], [ -119.529865270999949, 50.481437993000064 ], [ -119.529884372999945, 50.481481045000038 ], [ -119.529668827999913, 50.482979977000106 ], [ -119.529620363, 50.482977146000074 ], [ -119.529608361, 50.483060601000048 ], [ -119.529797417999958, 50.483071645000052 ], [ -119.529503854999959, 50.485112990000076 ], [ -119.529282716999958, 50.486650577000084 ], [ -119.523667005999968, 50.486322390000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "41.3", "sL_BldgLoss": "41.3", "sL_StrLoss": "41.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000070B80BA436E05DC0B0400D42ED3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.501073549999958, 50.459852251000065 ], [ -119.501315737999931, 50.458174592000049 ], [ -119.501603412999913, 50.458333600000024 ], [ -119.502877785999971, 50.458964298000083 ], [ -119.503671409, 50.459332205000059 ], [ -119.50477419399999, 50.459843395000057 ], [ -119.505749403999943, 50.460293104000122 ], [ -119.506612369, 50.460690693000089 ], [ -119.506546073999957, 50.461150286000098 ], [ -119.506469018999951, 50.461684462000044 ], [ -119.504997734, 50.461598151000054 ], [ -119.500856580999965, 50.46135511100006 ], [ -119.501073549999958, 50.459852251000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "48.4", "sL_BldgLoss": "48.4", "sL_StrLoss": "48.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019BCB73BCEE55DC0996EA7E73C444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.589847994999943, 50.534832120000068 ], [ -119.590090332999964, 50.533133022000086 ], [ -119.588431072999953, 50.533037104000137 ], [ -119.588171157999966, 50.533022076000123 ], [ -119.588188148999933, 50.532902978000095 ], [ -119.587996060999942, 50.532891872000036 ], [ -119.588106521999919, 50.532117608000078 ], [ -119.587287590999964, 50.532070254000054 ], [ -119.587324355999968, 50.531812575000039 ], [ -119.587685813999897, 50.529279069000083 ], [ -119.587847074999956, 50.529469894000087 ], [ -119.588587704999924, 50.530346302000098 ], [ -119.588607515999968, 50.530379658000079 ], [ -119.588705415999968, 50.530544302000095 ], [ -119.588724537999965, 50.530566437000061 ], [ -119.588914844999962, 50.530786398000039 ], [ -119.588946826999987, 50.530823378000044 ], [ -119.590368315999967, 50.532466311000093 ], [ -119.590677983999981, 50.532759408000047 ], [ -119.590822604999957, 50.532859123000044 ], [ -119.591212095999978, 50.533127701000105 ], [ -119.591621190999959, 50.533320018000019 ], [ -119.591853298, 50.533401115000103 ], [ -119.592359298999938, 50.533509696000046 ], [ -119.59367582299997, 50.533718400000048 ], [ -119.593938303999977, 50.533785803000029 ], [ -119.594419482999982, 50.533968796000096 ], [ -119.594827099, 50.53421158600004 ], [ -119.595061018999957, 50.534420487000013 ], [ -119.595509685999986, 50.534821097000048 ], [ -119.5956655049999, 50.535005722000079 ], [ -119.595493197999971, 50.534995772000059 ], [ -119.595470228999957, 50.535156941000096 ], [ -119.589847994999943, 50.534832120000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5903916", "BldgCostT": "4071666", "sL_LossRatio": "1", "sL_AssetLoss": "323.8", "sL_BldgLoss": "323.8", "sL_StrLoss": "323.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000296D16D41CD85DC05C086ADFF9414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.375187607999948, 50.519090900000016 ], [ -119.375251297999966, 50.517831385000065 ], [ -119.37525739299997, 50.517710817000072 ], [ -119.375284782999927, 50.517169910000057 ], [ -119.375326796999971, 50.516338789000031 ], [ -119.375268381999987, 50.51605949000011 ], [ -119.375262785999936, 50.516032715000016 ], [ -119.375214633999946, 50.515921715000047 ], [ -119.375084145999963, 50.51562112800007 ], [ -119.374675690999979, 50.51468010700011 ], [ -119.37442791799999, 50.514006494000114 ], [ -119.373998990999965, 50.512304266000129 ], [ -119.373957193999971, 50.512138370000088 ], [ -119.373722905999969, 50.511208551000081 ], [ -119.37367927799994, 50.511035317000093 ], [ -119.373661440999939, 50.510964639000051 ], [ -119.373661247999962, 50.510963757000091 ], [ -119.373656403999973, 50.510944614000081 ], [ -119.373640732999917, 50.510907438000032 ], [ -119.372862686999966, 50.509060739000041 ], [ -119.37278282199999, 50.508871148000075 ], [ -119.37241297199995, 50.507993230000061 ], [ -119.372356213999964, 50.507858483000092 ], [ -119.372274192999967, 50.5076638090001 ], [ -119.372246402999977, 50.507601902000083 ], [ -119.375371258, 50.507788760000025 ], [ -119.374904759999964, 50.510954679000072 ], [ -119.37489465499999, 50.511023241000018 ], [ -119.378516078999922, 50.511239680000074 ], [ -119.378343549999897, 50.512411074000056 ], [ -119.379801017999938, 50.512498148000091 ], [ -119.379274075999973, 50.5160762470001 ], [ -119.37661955599998, 50.515917644000048 ], [ -119.376607161999971, 50.516001769000034 ], [ -119.378908598999899, 50.516139279000072 ], [ -119.37850601199996, 50.518872422000044 ], [ -119.379989852, 50.518961055000069 ], [ -119.379937876999918, 50.519313963000094 ], [ -119.380096773, 50.519323453000062 ], [ -119.379569774999936, 50.522901524000083 ], [ -119.377582896999968, 50.522782842000041 ], [ -119.377578297999932, 50.52222520800013 ], [ -119.377411421999966, 50.521886809000087 ], [ -119.37689901899995, 50.521440206000108 ], [ -119.376000800999961, 50.520803602000051 ], [ -119.375822131999911, 50.520618607000088 ], [ -119.375604915999958, 50.520393691000066 ], [ -119.375392318999943, 50.520009183000106 ], [ -119.375352940999946, 50.519907716000056 ], [ -119.375233204, 50.51959900700006 ], [ -119.375187607999948, 50.519090900000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "159.7", "sL_BldgLoss": "159.7", "sL_StrLoss": "159.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000DEE397631DD5DC09331C20483394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.460740749999957, 50.448156090000111 ], [ -119.461158241999954, 50.448176165000056 ], [ -119.46086259799992, 50.450211936000059 ], [ -119.457842903999932, 50.450033470000079 ], [ -119.456763046999939, 50.449969630000098 ], [ -119.456644548999989, 50.450785031000123 ], [ -119.451033828999982, 50.450453157000055 ], [ -119.451188853999938, 50.449387313000081 ], [ -119.452078692, 50.44886110000008 ], [ -119.452202883999931, 50.448799249000082 ], [ -119.452336841999966, 50.448732547000098 ], [ -119.452704026999967, 50.448549695000118 ], [ -119.45338868099995, 50.448315907000065 ], [ -119.454126410999962, 50.448155606000071 ], [ -119.454957113999939, 50.448065785000097 ], [ -119.457084015999968, 50.44802279400006 ], [ -119.459686319999918, 50.44810540700005 ], [ -119.459796503999939, 50.448110694000064 ], [ -119.460740749999957, 50.448156090000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "174", "sL_BldgLoss": "174", "sL_StrLoss": "174", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D26BF5CDE4E45DC01B395EC304434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.578221190999969, 50.521880287000037 ], [ -119.579531068000023, 50.521956152000044 ], [ -119.579101238999982, 50.524965512000101 ], [ -119.579019871999989, 50.525535142000109 ], [ -119.573398955999892, 50.525209486000051 ], [ -119.573910594999958, 50.521630519000091 ], [ -119.578221190999969, 50.521880287000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "116.1", "sL_BldgLoss": "116.1", "sL_StrLoss": "116.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000210F7506E3DF5DC0D169068666424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.49859524799993, 50.521911539000051 ], [ -119.498552526999944, 50.521102917000043 ], [ -119.497284153, 50.521130146000054 ], [ -119.497198761, 50.519512900000052 ], [ -119.496353204999963, 50.519531044000061 ], [ -119.496338976999979, 50.51926150200012 ], [ -119.49591620299995, 50.519270572000011 ], [ -119.495773974999935, 50.516575160000031 ], [ -119.496196725999965, 50.516566091000044 ], [ -119.496182502999929, 50.516296551000067 ], [ -119.496605249999931, 50.516287481000091 ], [ -119.496591023999883, 50.516017939000086 ], [ -119.497013771999946, 50.516008869000089 ], [ -119.496999540999951, 50.515739327000077 ], [ -119.497428944999953, 50.515730111000011 ], [ -119.498267772999966, 50.515712104000045 ], [ -119.498282007999961, 50.515981645000096 ], [ -119.498704754999977, 50.515972568000095 ], [ -119.498718992999983, 50.516242108000036 ], [ -119.49914174, 50.516233030000087 ], [ -119.499184463999924, 50.517041651000049 ], [ -119.498761707999932, 50.517050730000037 ], [ -119.498804425999978, 50.517859352000087 ], [ -119.500072712999952, 50.517832109000061 ], [ -119.500086959999933, 50.518101649000059 ], [ -119.50050972499993, 50.518092564000064 ], [ -119.500623726999905, 50.520248886000033 ], [ -119.500200941999964, 50.520257971000056 ], [ -119.500286439999982, 50.521875212000026 ], [ -119.499681902999939, 50.52188820100011 ], [ -119.49859524799993, 50.521911539000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "412", "sL_BldgLoss": "412", "sL_StrLoss": "412", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095907A15BADD5DC0E8B476F4224A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.461164907999887, 50.582439975000042 ], [ -119.46160960499995, 50.579387083000093 ], [ -119.460723202999958, 50.579334868000103 ], [ -119.461244411999928, 50.575756661000078 ], [ -119.466870820999972, 50.576087968000053 ], [ -119.466837492999957, 50.576316987000091 ], [ -119.468328389999925, 50.576404728000043 ], [ -119.467807735999898, 50.579982966000031 ], [ -119.467720322999952, 50.579977822000046 ], [ -119.467319370999959, 50.582732970000094 ], [ -119.466802156999933, 50.582702533000081 ], [ -119.466792150999979, 50.58277128200006 ], [ -119.461164907999887, 50.582439975000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "201.5", "sL_BldgLoss": "201.5", "sL_StrLoss": "201.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027F0F384CAE05DC011917968C83B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.509741595999955, 50.467975173000113 ], [ -119.509782253999958, 50.467693213000068 ], [ -119.509391959999959, 50.467670334000061 ], [ -119.509908020999887, 50.464091411000055 ], [ -119.51040914, 50.464120786000144 ], [ -119.513645395999959, 50.464310439000023 ], [ -119.513811177999969, 50.464460694000131 ], [ -119.51425078199999, 50.464944800000112 ], [ -119.514595809999975, 50.465447710000085 ], [ -119.515207499, 50.466486011000022 ], [ -119.515544593999948, 50.466987543000108 ], [ -119.515449805999978, 50.467645482000115 ], [ -119.515164533999922, 50.46962547300005 ], [ -119.515142550999954, 50.469778043000069 ], [ -119.509529044000018, 50.469449134000037 ], [ -119.509741595999955, 50.467975173000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "43.2", "sL_BldgLoss": "43.2", "sL_StrLoss": "43.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6DF748141D85DC00E60DBECD9444940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377709631999934, 50.53631575 ], [ -119.3778271, 50.535993289000032 ], [ -119.377872075999946, 50.535746036000099 ], [ -119.380825278999964, 50.535922365000083 ], [ -119.380749044999931, 50.536439849000075 ], [ -119.380962009999934, 50.536452562000093 ], [ -119.3804348799999, 50.540030562000013 ], [ -119.377509328999906, 50.539855891000052 ], [ -119.377502587999956, 50.5397052060001 ], [ -119.377304588999948, 50.539269202000121 ], [ -119.376898199999971, 50.538708100000044 ], [ -119.37677959899996, 50.538483490000097 ], [ -119.376853293999943, 50.53817570400011 ], [ -119.377415285999987, 50.537123704000066 ], [ -119.377709631999934, 50.53631575 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "186.1", "sL_BldgLoss": "186.1", "sL_StrLoss": "186.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B0D869D96D75DC03A4668BA8D3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.365676160999939, 50.495918946000096 ], [ -119.365176478999942, 50.494626696000076 ], [ -119.364625815999958, 50.493812993000091 ], [ -119.364464897999966, 50.493575215000106 ], [ -119.364537055999961, 50.493579537000087 ], [ -119.364559464999957, 50.493427648000093 ], [ -119.370174888999927, 50.493763876000031 ], [ -119.36991552399995, 50.495523313000049 ], [ -119.370356002999969, 50.495549674000038 ], [ -119.370297734999937, 50.495944949000027 ], [ -119.372142373999978, 50.496055326000047 ], [ -119.371615016999939, 50.499633462000084 ], [ -119.367503256999967, 50.499387384000066 ], [ -119.367183007, 50.498931492000075 ], [ -119.366789485999902, 50.498268434000103 ], [ -119.366290858999932, 50.497428324000062 ], [ -119.366201704, 50.497278093000048 ], [ -119.366005207999933, 50.49676996200003 ], [ -119.365884560999987, 50.496457904000046 ], [ -119.365676160999939, 50.495918946000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "153.4", "sL_BldgLoss": "153.4", "sL_StrLoss": "153.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001116FCD319D75DC0E863E3665D3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.360135544999963, 50.461784442000024 ], [ -119.363373068999934, 50.461978600000087 ], [ -119.363236358, 50.462905757000016 ], [ -119.36284541500001, 50.465556844000112 ], [ -119.358084708999968, 50.465271307000116 ], [ -119.357233555, 50.465220235000047 ], [ -119.35730966199999, 50.464704593000071 ], [ -119.35780690199999, 50.464678787000018 ], [ -119.358830306999948, 50.464289991000086 ], [ -119.359409724, 50.46372880400002 ], [ -119.359505797999986, 50.462251904000055 ], [ -119.359717688999922, 50.462014115000073 ], [ -119.360135544999963, 50.461784442000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021583", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029CD288EAAD95DC071E18264E83A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.404176710999948, 50.459574397000068 ], [ -119.404996284999953, 50.459601603000124 ], [ -119.405523864, 50.459664575000069 ], [ -119.405690876999969, 50.4596844860001 ], [ -119.405976549999963, 50.459718568 ], [ -119.405920574999939, 50.460100671000063 ], [ -119.402745435999975, 50.459911475000112 ], [ -119.402593478999961, 50.460948245000111 ], [ -119.396981895999943, 50.46061364300008 ], [ -119.39706903599992, 50.460019611000085 ], [ -119.39723640299998, 50.460021581000014 ], [ -119.397397850999937, 50.460013874000019 ], [ -119.39756728499999, 50.460005746000057 ], [ -119.398487700999951, 50.459961701000076 ], [ -119.398523543999957, 50.459959007000059 ], [ -119.399996267999938, 50.459847931000027 ], [ -119.400782583999927, 50.45978860000011 ], [ -119.40293801899999, 50.459625999000103 ], [ -119.404176710999948, 50.459574397000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "175", "sL_BldgLoss": "175", "sL_StrLoss": "175", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000727322A8B7D85DC02F72AA106A3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.383666594999923, 50.462217512000088 ], [ -119.389278278999939, 50.46255278600006 ], [ -119.388752670999949, 50.466131150000074 ], [ -119.38314054599999, 50.465795851000038 ], [ -119.383666594999923, 50.462217512000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513334", "BldgCostT": "1733334", "sL_LossRatio": "1", "sL_AssetLoss": "169.9", "sL_BldgLoss": "169.9", "sL_StrLoss": "169.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD9C65583DE05DC09B7F9123DF3F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.506070192999985, 50.497328984000049 ], [ -119.506811118999977, 50.497372408000018 ], [ -119.506460487999931, 50.499801067000121 ], [ -119.50629443, 50.500951171000096 ], [ -119.502920988999961, 50.50075342100012 ], [ -119.500677106999944, 50.500621828000149 ], [ -119.501194236999979, 50.497043090000048 ], [ -119.506070192999985, 50.497328984000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9926417", "BldgCostT": "5371667", "sL_LossRatio": "1", "sL_AssetLoss": "43.5", "sL_BldgLoss": "43.5", "sL_StrLoss": "43.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000130CE71A66E55DC0F56A57539F434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.583716287999948, 50.526271517000076 ], [ -119.585217854999954, 50.526358398000049 ], [ -119.586683568999916, 50.528093034000115 ], [ -119.58746878799991, 50.52902225200009 ], [ -119.587316689999923, 50.53008834000007 ], [ -119.583713987999943, 50.529879938000121 ], [ -119.581695145999959, 50.529763105 ], [ -119.582206176999961, 50.526184120000039 ], [ -119.583716287999948, 50.526271517000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "269", "sL_BldgLoss": "269", "sL_StrLoss": "269", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C7E9852D1D65DC06DBDC715EE3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.357397089999949, 50.47130311500004 ], [ -119.35714430699997, 50.471030698000085 ], [ -119.356169899999955, 50.471369398000093 ], [ -119.355562697999972, 50.471819409000076 ], [ -119.355045186000012, 50.472132094000067 ], [ -119.354907498, 50.472182492000059 ], [ -119.354786508999936, 50.472186992000097 ], [ -119.354661703999966, 50.472140713000037 ], [ -119.354609612, 50.472042799000057 ], [ -119.355018715999961, 50.470662188000098 ], [ -119.355025826999963, 50.470470399000064 ], [ -119.354858705999945, 50.470355694000041 ], [ -119.354567811000024, 50.470379810000125 ], [ -119.354053399999941, 50.470172890000057 ], [ -119.351380736999957, 50.468773442000085 ], [ -119.35110283599991, 50.468627923 ], [ -119.351161403999981, 50.468585089000079 ], [ -119.35148038899996, 50.468351790000071 ], [ -119.352337503999962, 50.468018590000057 ], [ -119.353006306999973, 50.467609792000047 ], [ -119.353381906999942, 50.467233801000113 ], [ -119.353495289999955, 50.466394989000044 ], [ -119.353500309999944, 50.46639157800012 ], [ -119.353591793999939, 50.46632949500006 ], [ -119.354452320999954, 50.466330901000042 ], [ -119.355137406999944, 50.465939209000069 ], [ -119.355603801999933, 50.465397997000125 ], [ -119.355686533999986, 50.465343258000082 ], [ -119.357901096999953, 50.465476157000083 ], [ -119.360773712999958, 50.465648479000052 ], [ -119.360245809999952, 50.469226695000025 ], [ -119.360108242999928, 50.469218444000028 ], [ -119.36005522, 50.469577799000042 ], [ -119.358900217999988, 50.469508521000066 ], [ -119.358861979999972, 50.469767625000031 ], [ -119.358795733999955, 50.469763651000022 ], [ -119.358773083999907, 50.469917127000045 ], [ -119.357687107999951, 50.46985197700009 ], [ -119.357471306999969, 50.471313953000063 ], [ -119.357419772999933, 50.471310861000099 ], [ -119.357293145999961, 50.472168655000075 ], [ -119.357055745999929, 50.472154412000094 ], [ -119.357028274999934, 50.472340495000054 ], [ -119.356887799999939, 50.472116395000079 ], [ -119.356865641999946, 50.472046896000037 ], [ -119.356839406999939, 50.47196460400005 ], [ -119.356861180999914, 50.471841019000088 ], [ -119.356865701999951, 50.471815401000121 ], [ -119.357397089999949, 50.47130311500004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "172.1", "sL_BldgLoss": "172.1", "sL_StrLoss": "172.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B9B5FC590D85DC033C005D9323C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381292952999956, 50.468344871000134 ], [ -119.386905379999988, 50.468680263000095 ], [ -119.38637951399997, 50.472258589000035 ], [ -119.380766643999891, 50.47192317200011 ], [ -119.381292952999956, 50.468344871000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "193.8", "sL_BldgLoss": "193.8", "sL_StrLoss": "193.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F04F2781CE25DC04D00D5AAA33E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.530940206999958, 50.491648380000122 ], [ -119.53103450899998, 50.49099260600007 ], [ -119.530503038999939, 50.490961570000131 ], [ -119.530630496999962, 50.49007527100013 ], [ -119.529753473999932, 50.490024051000013 ], [ -119.530268176000021, 50.486445132000021 ], [ -119.533941186999954, 50.486659598000074 ], [ -119.534265661999953, 50.487147153000066 ], [ -119.534317865, 50.487225572000071 ], [ -119.534408766999917, 50.487362206000093 ], [ -119.534745273999974, 50.487867798000089 ], [ -119.535135911999959, 50.488454742000037 ], [ -119.536720528999979, 50.490835482000058 ], [ -119.53655663399995, 50.491976198000046 ], [ -119.530940206999958, 50.491648380000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "200.9", "sL_BldgLoss": "200.9", "sL_StrLoss": "200.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD4C985959E05DC0D646866668414940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.502803847999957, 50.513455850000121 ], [ -119.502789586999924, 50.513186310000016 ], [ -119.502366866999964, 50.513195402000058 ], [ -119.502309837999945, 50.512117241000084 ], [ -119.503155257999978, 50.512099056000089 ], [ -119.503140996999946, 50.511829517000088 ], [ -119.503986410000024, 50.511811327 ], [ -119.50395787799998, 50.511272247000129 ], [ -119.503535175999971, 50.511281342000082 ], [ -119.503520913, 50.511011803000017 ], [ -119.502675513999947, 50.511029989000093 ], [ -119.502661254999964, 50.510760449000024 ], [ -119.502238556999941, 50.510769540000076 ], [ -119.502195791999924, 50.509960919000079 ], [ -119.502618481999903, 50.509951829000059 ], [ -119.502604225999903, 50.509682288000086 ], [ -119.502938160999975, 50.509675106000024 ], [ -119.504294974999979, 50.50964591000011 ], [ -119.504280708999914, 50.509376371000087 ], [ -119.504703393999975, 50.509367273000109 ], [ -119.504689124, 50.509097732000029 ], [ -119.505111804999942, 50.509088632000058 ], [ -119.505083263999978, 50.508549553000144 ], [ -119.504660586999989, 50.508558653000115 ], [ -119.504603515999946, 50.507480493000052 ], [ -119.50482652799991, 50.507475693000032 ], [ -119.506716852999901, 50.507434981000081 ], [ -119.506731131999956, 50.507704521000036 ], [ -119.507576468, 50.507686306000075 ], [ -119.507590752999974, 50.507955844000065 ], [ -119.508013424999945, 50.507946734000022 ], [ -119.508027710999926, 50.508216274000063 ], [ -119.508450384999961, 50.508207162000076 ], [ -119.508464673, 50.508476701000106 ], [ -119.508887349999938, 50.508467588000016 ], [ -119.508930226999937, 50.509276204000052 ], [ -119.508084862999922, 50.509294430000047 ], [ -119.508099151999943, 50.509563969000077 ], [ -119.50640840899996, 50.509600402000082 ], [ -119.506422686999912, 50.509869942000151 ], [ -119.505999998999968, 50.509879047000076 ], [ -119.506014275999974, 50.510148586000113 ], [ -119.50728234799999, 50.510121267 ], [ -119.507295635999981, 50.510372006000061 ], [ -119.507296630999974, 50.510390807000093 ], [ -119.508141904999945, 50.510372588000017 ], [ -119.508142017999901, 50.510372588000017 ], [ -119.508199174999973, 50.511450742000044 ], [ -119.506508364999931, 50.511487178000081 ], [ -119.506522645999922, 50.51175671700009 ], [ -119.50694535, 50.511747610000036 ], [ -119.506959633999898, 50.512017149 ], [ -119.507805047999952, 50.511998932000083 ], [ -119.507819336999916, 50.512268471000027 ], [ -119.508242045999978, 50.512259359000083 ], [ -119.50828492, 50.513067976000066 ], [ -119.50800492899999, 50.513074012000104 ], [ -119.507862200999952, 50.513077087000084 ], [ -119.50786419399999, 50.51311466300011 ], [ -119.507876489999944, 50.513346626000029 ], [ -119.506608331999985, 50.513373953000062 ], [ -119.506622613999966, 50.513643493000053 ], [ -119.505354446999931, 50.513670805000096 ], [ -119.505368722999947, 50.513940345000037 ], [ -119.504523272999933, 50.513958546000062 ], [ -119.50453754199998, 50.514228085000063 ], [ -119.502569469999955, 50.514270431000099 ], [ -119.50242389899995, 50.514273562000078 ], [ -119.502381124999943, 50.513464942000084 ], [ -119.502803847999957, 50.513455850000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "81.7", "sL_BldgLoss": "81.7", "sL_StrLoss": "81.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BB8C55FC7DF5DC09EBB76CC6D3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.495659330999956, 50.457862675000094 ], [ -119.495808490999977, 50.456830256000124 ], [ -119.493655438999923, 50.456703721000068 ], [ -119.494070524, 50.453831378000146 ], [ -119.494115217999962, 50.453853203000108 ], [ -119.494877395999964, 50.45427700500003 ], [ -119.495341066999984, 50.454600423000045 ], [ -119.496516100999955, 50.455420003 ], [ -119.500108270999988, 50.457500148000065 ], [ -119.500374309999941, 50.457654188000092 ], [ -119.500562057999915, 50.457757999000151 ], [ -119.50127694699998, 50.458153151000054 ], [ -119.501271296999931, 50.458192289000131 ], [ -119.495659330999956, 50.457862675000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "206", "sL_BldgLoss": "206", "sL_StrLoss": "206", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000825D663B53DF5DC043E08ABC133A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.488222456999949, 50.455027675000046 ], [ -119.488253124999957, 50.454815630000049 ], [ -119.487145234999943, 50.454750446000062 ], [ -119.48720326099999, 50.454349322000105 ], [ -119.485133099999942, 50.454227491000047 ], [ -119.485479759, 50.451831699000081 ], [ -119.48560310299996, 50.451853970000037 ], [ -119.485705218999897, 50.451872411000117 ], [ -119.486268324999969, 50.451950317000104 ], [ -119.48700927199999, 50.45205281800002 ], [ -119.48810402799991, 50.452204264000073 ], [ -119.489078548999885, 50.452339071 ], [ -119.489359890999978, 50.452377994000138 ], [ -119.490409991999982, 50.452570598000079 ], [ -119.491235187999962, 50.452753592000128 ], [ -119.491689206999979, 50.45289387 ], [ -119.491882268999944, 50.452953521000026 ], [ -119.49212231300001, 50.453027698 ], [ -119.492506587999941, 50.453162922000047 ], [ -119.49279950599994, 50.453265990000013 ], [ -119.493470299999942, 50.453538286000054 ], [ -119.494055626999923, 50.453824104000056 ], [ -119.493834015999965, 50.455357667000037 ], [ -119.488222456999949, 50.455027675000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "150.1", "sL_BldgLoss": "150.1", "sL_StrLoss": "150.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B4B7929CCD75DC062AD6F9A9D3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.370204918999903, 50.459359905000078 ], [ -119.370322899999934, 50.458558876000048 ], [ -119.369373146999962, 50.458501984000122 ], [ -119.369441489999971, 50.458038022000025 ], [ -119.368605955999968, 50.457987964000047 ], [ -119.36869443199997, 50.457387374000092 ], [ -119.368575525999944, 50.457380249000025 ], [ -119.368590397999952, 50.457272893000074 ], [ -119.368617800999985, 50.457074886000029 ], [ -119.36938699800001, 50.456698912000064 ], [ -119.369688711999956, 50.456243203000028 ], [ -119.370067802999927, 50.455948398000032 ], [ -119.37080870199999, 50.455824490000069 ], [ -119.371934309999986, 50.456080799000041 ], [ -119.372293914999943, 50.456100123000034 ], [ -119.372305390999898, 50.456113038000126 ], [ -119.372474979999978, 50.456303602000034 ], [ -119.373366793999963, 50.457301891000021 ], [ -119.373775422999955, 50.457746007000026 ], [ -119.374230808999968, 50.458161300000057 ], [ -119.374966084999969, 50.458742310000083 ], [ -119.375541417999926, 50.459073592000045 ], [ -119.375885469000011, 50.459224812000066 ], [ -119.375816148999931, 50.459695861000064 ], [ -119.371217796999957, 50.459420570000127 ], [ -119.370204918999903, 50.459359905000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "109", "sL_BldgLoss": "109", "sL_StrLoss": "109", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E43B6E251E65DC0D11A8BBF50454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.598896753999895, 50.544623350000052 ], [ -119.598965684999953, 50.544139500000071 ], [ -119.598663181999882, 50.544122043000165 ], [ -119.598960402999964, 50.542035697000046 ], [ -119.598976794999913, 50.541920627000096 ], [ -119.598744478999919, 50.541907220000091 ], [ -119.598596927999935, 50.541898706000033 ], [ -119.596474189999967, 50.541776179000131 ], [ -119.596458761999941, 50.541775288000032 ], [ -119.59679760599991, 50.539397437000098 ], [ -119.596873721999955, 50.538863261000067 ], [ -119.596928996999935, 50.538475324000046 ], [ -119.597063810999927, 50.538564404000041 ], [ -119.597703263999946, 50.538870572000043 ], [ -119.598098689999972, 50.539059885 ], [ -119.598377997999961, 50.539258196000098 ], [ -119.598733495999966, 50.539647702000089 ], [ -119.598878831999954, 50.539853960000073 ], [ -119.598893932999928, 50.539875407000054 ], [ -119.599134297999939, 50.540216599000068 ], [ -119.599607913999989, 50.540722987000066 ], [ -119.599996298999955, 50.541097432000065 ], [ -119.600364308999957, 50.541452194000072 ], [ -119.600568193999962, 50.541663584000048 ], [ -119.60065823199993, 50.54175694000002 ], [ -119.600971380999951, 50.542418247000072 ], [ -119.601012849999975, 50.542505848000083 ], [ -119.601031974999955, 50.542546193000135 ], [ -119.601037603999956, 50.542599581000069 ], [ -119.601055984999917, 50.542773832000066 ], [ -119.601096500999986, 50.54315792500006 ], [ -119.601024850999963, 50.543342751000083 ], [ -119.600973316999955, 50.543475578000042 ], [ -119.600746447999924, 50.543725011000049 ], [ -119.600413100999958, 50.543925893000029 ], [ -119.600031286000018, 50.54408459100005 ], [ -119.599964500999988, 50.544112342000048 ], [ -119.599542863999957, 50.544287593000035 ], [ -119.59950308, 50.544304134000114 ], [ -119.599233422999973, 50.544416223000106 ], [ -119.598896753999895, 50.544623350000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4695584", "BldgCostT": "3238334", "sL_LossRatio": "1", "sL_AssetLoss": "266.6", "sL_BldgLoss": "266.6", "sL_StrLoss": "266.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000133DB6864ED85DC0782A7D74AC434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.377665212999972, 50.532761756000085 ], [ -119.377646161999962, 50.530452815000054 ], [ -119.377645638999979, 50.530387078000075 ], [ -119.377621441, 50.527454250000076 ], [ -119.377620686999947, 50.527364654000053 ], [ -119.377616306999926, 50.526834436000044 ], [ -119.377605196999966, 50.525486667000067 ], [ -119.377603541999989, 50.52528484500008 ], [ -119.377602687999939, 50.525180628000072 ], [ -119.377586261, 50.523190331000116 ], [ -119.381879189999978, 50.523446712000109 ], [ -119.38186110599996, 50.523569522000052 ], [ -119.382103690999926, 50.523584005000075 ], [ -119.382061984999979, 50.523867251000048 ], [ -119.382371001999928, 50.523885699000061 ], [ -119.38184413099999, 50.527463760000018 ], [ -119.381778993999916, 50.527459872000065 ], [ -119.381718989999968, 50.527867322000048 ], [ -119.381705317999931, 50.527960168000028 ], [ -119.382215287999927, 50.527990611000064 ], [ -119.381878920999966, 50.530274721000055 ], [ -119.381783331999941, 50.530923781000119 ], [ -119.38198339799996, 50.53093572299999 ], [ -119.381456413999913, 50.534513753000041 ], [ -119.377989004999918, 50.534306726000054 ], [ -119.377671403999969, 50.533510607000075 ], [ -119.37767121399996, 50.533487419000068 ], [ -119.377670868999957, 50.533445470000096 ], [ -119.377669972999939, 50.533337620000076 ], [ -119.377665592999918, 50.532808871000036 ], [ -119.377665212999972, 50.532761756000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.6", "sL_BldgLoss": "43.6", "sL_StrLoss": "43.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D788FDF120E55DC0B115342DB1424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.581391382, 50.523195109 ], [ -119.581474100999984, 50.522615780000152 ], [ -119.580463792999979, 50.522557285000069 ], [ -119.580676860999986, 50.521065180000051 ], [ -119.578216719999915, 50.520922705000075 ], [ -119.577638502999932, 50.520889210000036 ], [ -119.577668465, 50.520679480000105 ], [ -119.577980746999984, 50.518493414000048 ], [ -119.578279190999979, 50.518791209000099 ], [ -119.578331199999923, 50.518843098000097 ], [ -119.578554413999925, 50.519025606000106 ], [ -119.579128119999922, 50.519385842000077 ], [ -119.579341013999922, 50.519519503000076 ], [ -119.58009092099995, 50.520061897000112 ], [ -119.58030294699995, 50.520186584000065 ], [ -119.580941697999947, 50.52056221700014 ], [ -119.581198799999925, 50.520745809000097 ], [ -119.581516297999883, 50.521036211000116 ], [ -119.581606938999926, 50.521119145000092 ], [ -119.581639911999972, 50.521149304000112 ], [ -119.582016302999989, 50.521568990000105 ], [ -119.582113062999923, 50.52172663700005 ], [ -119.583074154999963, 50.523292516000026 ], [ -119.581391382, 50.523195109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "261", "sL_BldgLoss": "261", "sL_StrLoss": "261", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D91D37489DF5DC0672A0640C3434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.489574913999903, 50.531360260000035 ], [ -119.489586921999944, 50.531277366000019 ], [ -119.488915499999976, 50.531237942000125 ], [ -119.488932284, 50.531122086000067 ], [ -119.488822504999945, 50.531115640000088 ], [ -119.489089166999946, 50.529275001000016 ], [ -119.489340924999965, 50.527537091000085 ], [ -119.49011925399995, 50.527582793000157 ], [ -119.490196015, 50.527052809000082 ], [ -119.493990618999987, 50.527275541000066 ], [ -119.495816555999937, 50.527382671000041 ], [ -119.495780754999942, 50.527630067000068 ], [ -119.496044965999957, 50.527645567000029 ], [ -119.496039953999983, 50.527680201000088 ], [ -119.496703946999943, 50.527719149000148 ], [ -119.496206066999946, 50.531159822000063 ], [ -119.496186108999979, 50.531297731000087 ], [ -119.495769406999969, 50.531273288000079 ], [ -119.495724605999925, 50.531582839000066 ], [ -119.49521584, 50.531552995000084 ], [ -119.495195987999949, 50.53169015200006 ], [ -119.489574913999903, 50.531360260000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21837000", "BldgCostT": "15060000", "sL_LossRatio": "1", "sL_AssetLoss": "1715", "sL_BldgLoss": "1715", "sL_StrLoss": "1715", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000017EB6A332E35DC08DF43F4C84404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.571614077000021, 50.516605653000092 ], [ -119.571659005, 50.516291426000095 ], [ -119.570736570999941, 50.516237930000116 ], [ -119.57079158699996, 50.515853188000079 ], [ -119.570574992999951, 50.515840626000099 ], [ -119.570779013000021, 50.514413868000048 ], [ -119.57046448499996, 50.514395625000112 ], [ -119.57051095199999, 50.514070678000074 ], [ -119.569897789999985, 50.514035110000052 ], [ -119.569968624999959, 50.513539794000081 ], [ -119.569503311999952, 50.51351280100009 ], [ -119.569527324999953, 50.51334489700011 ], [ -119.56843758899997, 50.513281673000101 ], [ -119.56857234899995, 50.512339541000038 ], [ -119.568571256999974, 50.512339477000111 ], [ -119.5685847929999, 50.512244845000055 ], [ -119.568349156999943, 50.512231172000106 ], [ -119.568422988999956, 50.51171499800008 ], [ -119.567098551999933, 50.511638138000073 ], [ -119.567099117999973, 50.511634182000087 ], [ -119.566667425999924, 50.511609128 ], [ -119.566619137999979, 50.511606325000109 ], [ -119.566668417999949, 50.511261880000063 ], [ -119.566800424999983, 50.510339196000075 ], [ -119.565232678999976, 50.510248189000016 ], [ -119.56547035899996, 50.508587210000044 ], [ -119.564298461999982, 50.50851916600007 ], [ -119.564377833999956, 50.507964570000077 ], [ -119.560003063999972, 50.50771045000004 ], [ -119.560267715999885, 50.505862367000113 ], [ -119.558372236999915, 50.505752209000036 ], [ -119.55837610199994, 50.505725225000027 ], [ -119.555875357999952, 50.505579841000035 ], [ -119.555927806999946, 50.505213823000048 ], [ -119.555408569999898, 50.505183629000065 ], [ -119.555502806000035, 50.504526024000029 ], [ -119.551874192999918, 50.50431495000003 ], [ -119.551678563999985, 50.505679317000059 ], [ -119.551614907999976, 50.505675614000062 ], [ -119.55157557499993, 50.505949919000059 ], [ -119.551346015999968, 50.505936562000045 ], [ -119.551105548999899, 50.507613426000091 ], [ -119.551052276999954, 50.507610326000083 ], [ -119.551027953999906, 50.507779927000072 ], [ -119.548992250999959, 50.507661453000026 ], [ -119.54540945399999, 50.507452848000078 ], [ -119.545560729999934, 50.506398897000089 ], [ -119.545616248, 50.506012081000094 ], [ -119.545187562999956, 50.505987114000085 ], [ -119.545184901999974, 50.506005666000078 ], [ -119.540954994999964, 50.50575921600003 ], [ -119.540910519999926, 50.506068864000092 ], [ -119.540752642999976, 50.506059663000023 ], [ -119.540710226999963, 50.50635496700005 ], [ -119.535091979999933, 50.506027366000112 ], [ -119.535606440999942, 50.502448492000084 ], [ -119.535764301999933, 50.502457702000079 ], [ -119.53580674799997, 50.50216239700007 ], [ -119.537447741999969, 50.502258112000035 ], [ -119.537741016999988, 50.500217068000026 ], [ -119.535071984999917, 50.500061377000051 ], [ -119.535186794999959, 50.499262632000082 ], [ -119.534904732999962, 50.499246175000117 ], [ -119.534918667999989, 50.499149233000104 ], [ -119.535419131999944, 50.495667272000091 ], [ -119.535946315999979, 50.495698031000096 ], [ -119.536309133999936, 50.493173187000096 ], [ -119.538527154999954, 50.493302569000093 ], [ -119.538633985999951, 50.493421610000034 ], [ -119.539014287999976, 50.493790212000079 ], [ -119.539493764999932, 50.494176831000104 ], [ -119.539647488999947, 50.494300802000097 ], [ -119.540115914999902, 50.49463271200009 ], [ -119.540328693999953, 50.494783492000053 ], [ -119.54190305099992, 50.49575804100003 ], [ -119.541814641999963, 50.496373800000072 ], [ -119.541567796999985, 50.498092968000066 ], [ -119.541023771999932, 50.498061256000028 ], [ -119.540784034999987, 50.499730650000046 ], [ -119.543453068999952, 50.499886203000074 ], [ -119.543262, 50.501217157000056 ], [ -119.54713495399993, 50.501442760000032 ], [ -119.547152720999975, 50.501318925000092 ], [ -119.546702319999909, 50.501292696000036 ], [ -119.546853533999979, 50.500238809000074 ], [ -119.544362916999901, 50.500093734000103 ], [ -119.544741704000018, 50.497454572000059 ], [ -119.544944631999954, 50.497547201 ], [ -119.545702204999927, 50.49779340500001 ], [ -119.546290267999908, 50.497954123000099 ], [ -119.547709998999935, 50.498342139000016 ], [ -119.548462973999932, 50.498547911000109 ], [ -119.549439953999965, 50.498814938000073 ], [ -119.5494124, 50.500034500000083 ], [ -119.54937411899995, 50.501725029000063 ], [ -119.549345471999956, 50.502992977000076 ], [ -119.549344819999988, 50.503021426000032 ], [ -119.549502451999928, 50.503005530000117 ], [ -119.549573070999912, 50.502975159000108 ], [ -119.549658013999945, 50.502944218000074 ], [ -119.549813293999961, 50.502873760000071 ], [ -119.549926952999968, 50.502841592999985 ], [ -119.550025916999985, 50.502800911000065 ], [ -119.55012523399995, 50.502769350000065 ], [ -119.550210548999956, 50.502747498000083 ], [ -119.550366515999926, 50.502695322000051 ], [ -119.550494513, 50.50266254700005 ], [ -119.550594258999979, 50.502640089000074 ], [ -119.550708306999951, 50.502617035000071 ], [ -119.550794519999926, 50.502613259000036 ], [ -119.550981825999926, 50.502614052000112 ], [ -119.551098938999928, 50.502644634000063 ], [ -119.551187461999945, 50.502676432000101 ], [ -119.551305907999932, 50.50272465000009 ], [ -119.551395034999985, 50.502765239000084 ], [ -119.551499181999958, 50.50281399600005 ], [ -119.55158898799999, 50.502863358000042 ], [ -119.551678137999957, 50.502903913000111 ], [ -119.551798583999968, 50.502978455000118 ], [ -119.551902748999979, 50.503027233000111 ], [ -119.5521015899999, 50.503186566000132 ], [ -119.552103537, 50.5031814600001 ], [ -119.552097412999927, 50.502989783000018 ], [ -119.552075636999973, 50.502309205000053 ], [ -119.552128862999936, 50.50216524200011 ], [ -119.554256465999941, 50.502158540000067 ], [ -119.555733214000028, 50.502153888000095 ], [ -119.556258092999911, 50.502153412000027 ], [ -119.558403095999921, 50.502151316000088 ], [ -119.558633892, 50.502151100000034 ], [ -119.558415584, 50.502343589000127 ], [ -119.558406018999975, 50.502468943000046 ], [ -119.558395160999936, 50.502558531000091 ], [ -119.558386946000013, 50.502719603000131 ], [ -119.558391471999954, 50.502844622000083 ], [ -119.558423873999985, 50.502960089000076 ], [ -119.558468306999956, 50.503021625000031 ], [ -119.558513410999964, 50.503101050000026 ], [ -119.558557497999914, 50.503153660000088 ], [ -119.558616678, 50.503232784000041 ], [ -119.558689441999974, 50.503302608000048 ], [ -119.558733910999962, 50.503364135 ], [ -119.558793037999976, 50.503443246000053 ], [ -119.558824418999961, 50.503531899000059 ], [ -119.558841086999919, 50.503603011000088 ], [ -119.558912803999988, 50.503655229000053 ], [ -119.55899698199994, 50.50367119100013 ], [ -119.559191291999952, 50.503666561000074 ], [ -119.559274015999975, 50.503655608000017 ], [ -119.559412808999966, 50.503652264000053 ], [ -119.559496549999977, 50.503659298000052 ], [ -119.559747266, 50.503671318000031 ], [ -119.560052099999893, 50.503936901000024 ], [ -119.560900199999963, 50.504344295000102 ], [ -119.561459090999932, 50.504674519000048 ], [ -119.562024385999962, 50.505147608000094 ], [ -119.562360487999968, 50.505352102000089 ], [ -119.562984780999969, 50.505581990000096 ], [ -119.563238985999959, 50.505675611000086 ], [ -119.563371838999927, 50.505748062000073 ], [ -119.563736926999965, 50.505947202000065 ], [ -119.564124998999944, 50.506214215000064 ], [ -119.564874201999928, 50.506887503000087 ], [ -119.566657185999986, 50.507917506000105 ], [ -119.567042789999917, 50.508232199000069 ], [ -119.56733704399997, 50.508507397000116 ], [ -119.568014693999928, 50.509141188000072 ], [ -119.568107912, 50.509213778000081 ], [ -119.568641699999901, 50.509629510000103 ], [ -119.569171635999965, 50.509957844000063 ], [ -119.570304484999951, 50.510659804000049 ], [ -119.570896887999979, 50.510895303000012 ], [ -119.570990669999958, 50.510918696000083 ], [ -119.571981508999954, 50.511165694000098 ], [ -119.572450805999921, 50.511321000000109 ], [ -119.572575277999945, 50.511380440000046 ], [ -119.572855213999915, 50.511514111000039 ], [ -119.57316018799996, 50.511768210000071 ], [ -119.574070504999924, 50.512723099 ], [ -119.574186714999925, 50.513050088000028 ], [ -119.574177608, 50.513638710000073 ], [ -119.574337087999979, 50.514504990000098 ], [ -119.574393489999977, 50.515131696000033 ], [ -119.574594687999976, 50.51552759700008 ], [ -119.574889500999973, 50.515912786000051 ], [ -119.574966312999948, 50.515993894000047 ], [ -119.575244010999924, 50.516287012000134 ], [ -119.576049315999938, 50.516862763000056 ], [ -119.571614077000021, 50.516605653000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021601", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8CA381DF3D75DC08BD252379F464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.374960979999969, 50.549647338000057 ], [ -119.375565406999982, 50.549683438000102 ], [ -119.375037693999928, 50.553261355000132 ], [ -119.372152499999956, 50.553089006000071 ], [ -119.372618393999943, 50.552392995000069 ], [ -119.373413117, 50.551552609000062 ], [ -119.37342085099999, 50.551520262000118 ], [ -119.373424415999963, 50.55150527100006 ], [ -119.373524093999919, 50.551089100000056 ], [ -119.373723518999924, 50.550583105000065 ], [ -119.37486898, 50.549758099000051 ], [ -119.374960979999969, 50.549647338000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021602", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "84.1", "sL_BldgLoss": "84.1", "sL_StrLoss": "84.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007479D6E2D1E15DC010DD1E4AD53F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.529108355999981, 50.498854963000078 ], [ -119.529093952999972, 50.498585428000105 ], [ -119.528671371999977, 50.498594613000087 ], [ -119.528656971999979, 50.498325078000036 ], [ -119.526121499999988, 50.498380158000025 ], [ -119.526107113999927, 50.498110623000052 ], [ -119.525261958999963, 50.498128971000057 ], [ -119.525231784999946, 50.497563380000059 ], [ -119.525218819999964, 50.497320361000043 ], [ -119.52902194399999, 50.497237752000089 ], [ -119.529036346999959, 50.49750728700014 ], [ -119.529881486999926, 50.497488912000037 ], [ -119.529907760999933, 50.497980482000067 ], [ -119.529910298999951, 50.498027982000082 ], [ -119.530496529999965, 50.498015233000082 ], [ -119.530755449999944, 50.498009601000049 ], [ -119.530756570999984, 50.498030580000048 ], [ -119.530758297999952, 50.498062887000025 ], [ -119.530813095999932, 50.4990877400001 ], [ -119.530390513, 50.499096933000061 ], [ -119.530404923999981, 50.499366467000129 ], [ -119.529982336, 50.499375657000044 ], [ -119.530011151999972, 50.499914728000093 ], [ -119.52958856, 50.499923916000036 ], [ -119.529631777999938, 50.500732521000046 ], [ -119.527615404999935, 50.500776346000087 ], [ -119.52751878, 50.500778445000023 ], [ -119.527475595999974, 50.499969839000137 ], [ -119.527898188999941, 50.499960657000059 ], [ -119.527883794, 50.499691121000055 ], [ -119.528306384999951, 50.499681939000034 ], [ -119.52827758699999, 50.499142869000082 ], [ -119.528700171999944, 50.499133685000032 ], [ -119.528685770999928, 50.498864149000021 ], [ -119.529108355999981, 50.498854963000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "241", "sL_BldgLoss": "241", "sL_StrLoss": "241", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C30723B46DD95DC06B9526C6AE3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.394191889999917, 50.465003427000084 ], [ -119.394373141999921, 50.463768460000104 ], [ -119.399985098999977, 50.464103192000096 ], [ -119.399978282999953, 50.464149670000062 ], [ -119.401650349999983, 50.464249346000045 ], [ -119.40112570299999, 50.467827762000063 ], [ -119.399056688999906, 50.467704419 ], [ -119.398882365999953, 50.468892911000083 ], [ -119.393269822999983, 50.468558125000094 ], [ -119.3937951, 50.464979749000037 ], [ -119.394191889999917, 50.465003427000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4956583", "BldgCostT": "3418333", "sL_LossRatio": "1", "sL_AssetLoss": "276.8", "sL_BldgLoss": "276.8", "sL_StrLoss": "276.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AF6402B30DE5DC029E4CE75AF394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.476301966999969, 50.45297155 ], [ -119.476304189999937, 50.452956200000095 ], [ -119.475736449999943, 50.45292273400004 ], [ -119.475933742999985, 50.451561184000099 ], [ -119.476054494999943, 50.450727817000086 ], [ -119.474593677999934, 50.45064169500008 ], [ -119.474466820999965, 50.451516990000094 ], [ -119.474436671999939, 50.451725021000051 ], [ -119.47200067799993, 50.451581364000099 ], [ -119.47197376699998, 50.451766977000034 ], [ -119.466362812999989, 50.451435878000069 ], [ -119.466386419999964, 50.451273201000078 ], [ -119.46639765599997, 50.451195769000059 ], [ -119.46383934899994, 50.451044710000076 ], [ -119.463868693999984, 50.450842560000055 ], [ -119.461594890999919, 50.450708249000058 ], [ -119.46195386499997, 50.448236122000061 ], [ -119.462144166999906, 50.448251150000125 ], [ -119.462756210999913, 50.448299398000096 ], [ -119.464429162999977, 50.448464139000102 ], [ -119.46691635800002, 50.448708992000022 ], [ -119.470147551, 50.449026992000036 ], [ -119.470703400999966, 50.449081694000064 ], [ -119.472075914999948, 50.449275518000057 ], [ -119.472862957999936, 50.449386657000026 ], [ -119.473446806999959, 50.44946909500004 ], [ -119.475093699999945, 50.449751208000094 ], [ -119.475771139999921, 50.449888051000052 ], [ -119.477273022999896, 50.450191453000038 ], [ -119.47889482699992, 50.450519058000054 ], [ -119.482218882999987, 50.451190446000041 ], [ -119.481913182999961, 50.453302146000084 ], [ -119.480272733, 50.453205525000058 ], [ -119.476301966999969, 50.45297155 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "203.4", "sL_BldgLoss": "203.4", "sL_StrLoss": "203.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000060B6985D0DF5DC0951F9F2DF3374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.495463994999938, 50.438453893000087 ], [ -119.495461716999955, 50.438410604000062 ], [ -119.492724155999923, 50.438249633000048 ], [ -119.493241201999965, 50.434670656000073 ], [ -119.498850269999934, 50.435000402000043 ], [ -119.498733948999956, 50.435806312000132 ], [ -119.501479840999949, 50.435967632000057 ], [ -119.500963433, 50.439546642000053 ], [ -119.495353784999949, 50.439217004000092 ], [ -119.495463994999938, 50.438453893000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14043789", "BldgCostT": "9685372", "sL_LossRatio": "1", "sL_AssetLoss": "1035", "sL_BldgLoss": "1035", "sL_StrLoss": "1035", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E63135CFF2E35DC0D24D6A81A03F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.552238183000014, 50.49976270300008 ], [ -119.550560976000014, 50.499144514000044 ], [ -119.549439953999965, 50.498814938000073 ], [ -119.548462973999932, 50.498547911000109 ], [ -119.547709998999935, 50.498342139000016 ], [ -119.546290267999908, 50.497954123000099 ], [ -119.545702204999927, 50.49779340500001 ], [ -119.544944631999954, 50.497547201 ], [ -119.544741704000018, 50.497454572000059 ], [ -119.54487657599999, 50.496514792000049 ], [ -119.548927790999983, 50.496750741000042 ], [ -119.548936188999946, 50.496692185 ], [ -119.553654860999984, 50.496966819000079 ], [ -119.553716588999976, 50.496536095000074 ], [ -119.5593337899999, 50.496862758000091 ], [ -119.559281199999973, 50.497230037000101 ], [ -119.560662442999956, 50.497310318000103 ], [ -119.560940842999955, 50.495365558000067 ], [ -119.561536559999965, 50.495400177000114 ], [ -119.561559655999943, 50.495238808000138 ], [ -119.561427261999953, 50.495231114000013 ], [ -119.561939509999931, 50.491652072000058 ], [ -119.562301394999935, 50.491673100000114 ], [ -119.562372118999946, 50.491178881000025 ], [ -119.562906402999943, 50.491209926000096 ], [ -119.562963513999932, 50.490810794000069 ], [ -119.568580067999932, 50.491136992000079 ], [ -119.568520787999915, 50.491551649000058 ], [ -119.568523298999949, 50.491551794000046 ], [ -119.568272808, 50.493303841000092 ], [ -119.568011574999971, 50.495130868 ], [ -119.567112814999987, 50.495078689000096 ], [ -119.567047921999972, 50.495532453000081 ], [ -119.567180317999913, 50.49554013900007 ], [ -119.566773193999978, 50.498386807000053 ], [ -119.569604934999973, 50.498551178000078 ], [ -119.569529129, 50.499081412000081 ], [ -119.571485116999952, 50.499194905000053 ], [ -119.5716150169999, 50.498286010000101 ], [ -119.571865331000012, 50.498300532000101 ], [ -119.571880009999958, 50.498197816000072 ], [ -119.577497548999958, 50.498523561000077 ], [ -119.57734276799998, 50.499607527000073 ], [ -119.577183995, 50.499632609000081 ], [ -119.576220687999964, 50.49973471000002 ], [ -119.573765102999943, 50.499844894000091 ], [ -119.573253107999932, 50.499909905000067 ], [ -119.572616884999988, 50.500033354000038 ], [ -119.572322397, 50.500090514000121 ], [ -119.571221491999964, 50.500282914000124 ], [ -119.570534088999949, 50.500356727000039 ], [ -119.569350194999956, 50.500396200000083 ], [ -119.567978608999979, 50.500402282000131 ], [ -119.562787807999911, 50.500407692000124 ], [ -119.562426471999984, 50.500408225000108 ], [ -119.562182979999989, 50.500408601000103 ], [ -119.561595086999915, 50.500410493000082 ], [ -119.5585414009999, 50.500404503000084 ], [ -119.558541614999939, 50.50025469300008 ], [ -119.558511246999927, 50.49999748000004 ], [ -119.558502615999927, 50.499924099000047 ], [ -119.556717951999957, 50.499942909000019 ], [ -119.555691582999955, 50.499953691000087 ], [ -119.555704618999968, 50.500406488000131 ], [ -119.555289505999951, 50.500407594000073 ], [ -119.554434009999966, 50.500359587000091 ], [ -119.553895000999972, 50.500286803000044 ], [ -119.552941638000021, 50.500025042000104 ], [ -119.552868989999951, 50.500005090000109 ], [ -119.552703973999925, 50.499941691000053 ], [ -119.552238183000014, 50.49976270300008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "151.3", "sL_BldgLoss": "151.3", "sL_StrLoss": "151.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B967440645DC5DC005EE8A2A8D394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.439168410999969, 50.447664948000046 ], [ -119.444778695999958, 50.4479974220001 ], [ -119.444257656999966, 50.451576113000108 ], [ -119.438646929999962, 50.451243614000106 ], [ -119.439168410999969, 50.447664948000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "136", "sL_BldgLoss": "136", "sL_StrLoss": "136", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6DF5373D8E75DC0CD6BD375343D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.620276942999951, 50.476518576000046 ], [ -119.625892131999947, 50.476841883000077 ], [ -119.625592016999974, 50.478960719000042 ], [ -119.62551978499998, 50.478968197000029 ], [ -119.624300672999965, 50.479141596000041 ], [ -119.623527023999955, 50.479293777000102 ], [ -119.623488294999945, 50.479301400000104 ], [ -119.623093495999953, 50.479410394000112 ], [ -119.622926341999957, 50.479467716000066 ], [ -119.621937706999944, 50.479806705000072 ], [ -119.620994011999983, 50.480168483000099 ], [ -119.619769493999982, 50.480097954000051 ], [ -119.620276942999951, 50.476518576000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.9", "sL_BldgLoss": "48.9", "sL_StrLoss": "48.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A10896B4AE25DC00B49C1AE813E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.535135911999959, 50.488454742000037 ], [ -119.534745273999974, 50.487867798000089 ], [ -119.534408766999917, 50.487362206000093 ], [ -119.534317865, 50.487225572000071 ], [ -119.534265661999953, 50.487147153000066 ], [ -119.533941186999954, 50.486659598000074 ], [ -119.535883949999985, 50.486772985000123 ], [ -119.535756604999946, 50.487659294000082 ], [ -119.536633586999955, 50.487710466000074 ], [ -119.536539372999954, 50.488366249000073 ], [ -119.537070817999947, 50.488397255000081 ], [ -119.536720528999979, 50.490835482000058 ], [ -119.535135911999959, 50.488454742000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021611", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "275.5", "sL_BldgLoss": "275.5", "sL_StrLoss": "275.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD33BF58A7D85DC094AA06C4983A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381956169999967, 50.457400788000029 ], [ -119.382350174999956, 50.454720662000085 ], [ -119.387960917, 50.455056006000078 ], [ -119.38760445199992, 50.457482839000129 ], [ -119.390996385999969, 50.457685428000062 ], [ -119.390703188999922, 50.45968235400008 ], [ -119.389326052999962, 50.459747010000093 ], [ -119.388425586999929, 50.459789298000061 ], [ -119.382193699999959, 50.460081633000051 ], [ -119.38089910199993, 50.460142287000117 ], [ -119.380394453999941, 50.460139308000066 ], [ -119.380215768999946, 50.460138256000086 ], [ -119.380593389999959, 50.457570429000029 ], [ -119.381010676999921, 50.457595384000058 ], [ -119.38104728199994, 50.457346439000091 ], [ -119.381956169999967, 50.457400788000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021612", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.9", "sL_BldgLoss": "61.9", "sL_StrLoss": "61.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2B3CD4B4DE05DC0643C4A25BC3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.501373245999929, 50.457776199000072 ], [ -119.506985242999932, 50.458105525000057 ], [ -119.506925622999958, 50.458518905000126 ], [ -119.506612369, 50.460690693000089 ], [ -119.505749403999943, 50.460293104000122 ], [ -119.50477419399999, 50.459843395000057 ], [ -119.503671409, 50.459332205000059 ], [ -119.502877785999971, 50.458964298000083 ], [ -119.501603412999913, 50.458333600000024 ], [ -119.501315737999931, 50.458174592000049 ], [ -119.501373245999929, 50.457776199000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021614", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "219.8", "sL_BldgLoss": "219.8", "sL_StrLoss": "219.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A3DA338D9ED95DC03D36B863A03A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.39706903599992, 50.460019611000085 ], [ -119.397105600999907, 50.459770347000045 ], [ -119.394471372999988, 50.459613176000126 ], [ -119.394996452000015, 50.456034756000044 ], [ -119.400607450999971, 50.456369460000069 ], [ -119.400483821999941, 50.457212763000058 ], [ -119.40068170399995, 50.45722456200005 ], [ -119.400833689999956, 50.456187790000051 ], [ -119.406444750999967, 50.456522199000069 ], [ -119.405976549999963, 50.459718568 ], [ -119.405690876999969, 50.4596844860001 ], [ -119.405523864, 50.459664575000069 ], [ -119.404996284999953, 50.459601603000124 ], [ -119.404176710999948, 50.459574397000068 ], [ -119.40293801899999, 50.459625999000103 ], [ -119.400782583999927, 50.45978860000011 ], [ -119.399996267999938, 50.459847931000027 ], [ -119.398523543999957, 50.459959007000059 ], [ -119.398487700999951, 50.459961701000076 ], [ -119.39756728499999, 50.460005746000057 ], [ -119.397397850999937, 50.460013874000019 ], [ -119.39723640299998, 50.460021581000014 ], [ -119.39706903599992, 50.460019611000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21333083", "BldgCostT": "13238333", "sL_LossRatio": "1", "sL_AssetLoss": "721.9", "sL_BldgLoss": "721.9", "sL_StrLoss": "721.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E08B92015D85DC0DD1F528066394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.381983708999968, 50.453960143000074 ], [ -119.381994809, 50.453884637000051 ], [ -119.381394295999939, 50.453848726000032 ], [ -119.38148865799991, 50.453206881 ], [ -119.379248060999913, 50.453072862000113 ], [ -119.379216833999962, 50.453285199000057 ], [ -119.374906093999982, 50.453027227000085 ], [ -119.374814594999989, 50.451689318000078 ], [ -119.374722310999985, 50.450340364000098 ], [ -119.374699111999988, 50.450000576000036 ], [ -119.374653421999966, 50.448408 ], [ -119.369199493999986, 50.448399685 ], [ -119.366060895999937, 50.448459353000011 ], [ -119.365293077000032, 50.448462250000134 ], [ -119.36535026199999, 50.448074181000031 ], [ -119.364521328999956, 50.448024478000022 ], [ -119.364469769999943, 50.444726965000015 ], [ -119.36435532899999, 50.442468890000015 ], [ -119.364275956999961, 50.440080430000066 ], [ -119.364251777999925, 50.438438426000118 ], [ -119.365853290999937, 50.438534475000047 ], [ -119.3681374129999, 50.438671422000034 ], [ -119.367976653999975, 50.439763044000053 ], [ -119.367809715999954, 50.440896570000049 ], [ -119.368341059999921, 50.440928420000084 ], [ -119.368009245999971, 50.443181467000073 ], [ -119.370513845999938, 50.44333156500003 ], [ -119.369986974999932, 50.446909927000021 ], [ -119.369656426999896, 50.44689012000007 ], [ -119.369656174999989, 50.446891839000095 ], [ -119.370810838999972, 50.446961021000071 ], [ -119.370946458000034, 50.446039881000054 ], [ -119.371927745999983, 50.446098665000072 ], [ -119.376556034999965, 50.446375804000063 ], [ -119.376485006999985, 50.446858657000128 ], [ -119.37609809099996, 50.449488704000082 ], [ -119.377387455999923, 50.44956587500009 ], [ -119.377418689999942, 50.4493535370001 ], [ -119.383028727999928, 50.449689133000085 ], [ -119.382934394999978, 50.450330981000079 ], [ -119.387108951999934, 50.450580519000077 ], [ -119.387149013999988, 50.450307762000115 ], [ -119.392759242999944, 50.450642865000063 ], [ -119.392234050999946, 50.454221299000082 ], [ -119.387645505999913, 50.453947244000069 ], [ -119.387594352999955, 50.454295505000069 ], [ -119.381983708999968, 50.453960143000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "203.2", "sL_BldgLoss": "203.2", "sL_StrLoss": "203.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000717C0CE2CDD5DC0560428DBFA374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.453673764999962, 50.439534052000077 ], [ -119.453822368999909, 50.438511682000041 ], [ -119.451916578999942, 50.438398906000032 ], [ -119.452004505999952, 50.437794130000043 ], [ -119.452436859, 50.434820121000044 ], [ -119.457329908999981, 50.435109604000061 ], [ -119.458045645999974, 50.43515193000016 ], [ -119.45789715, 50.436174310000077 ], [ -119.459802860999929, 50.436286984000041 ], [ -119.459565417999983, 50.437922122000025 ], [ -119.459283147999926, 50.43986579700011 ], [ -119.457485666999958, 50.439759524000095 ], [ -119.453673764999962, 50.439534052000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "173.5", "sL_BldgLoss": "173.5", "sL_StrLoss": "173.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000235C1A225BE55DC05518B6C1E43E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.582186734999965, 50.493406790000037 ], [ -119.582281033999948, 50.49274580600003 ], [ -119.579060478999949, 50.49255920600006 ], [ -119.579183112999914, 50.491700010000052 ], [ -119.579571298999923, 50.488980070000075 ], [ -119.585187745000013, 50.489305430000066 ], [ -119.585093495999928, 50.489966418000066 ], [ -119.585622871999988, 50.489997070000094 ], [ -119.588313889999966, 50.490152845000097 ], [ -119.588114589999932, 50.49155121400004 ], [ -119.58780375100001, 50.493732016000152 ], [ -119.582186734999965, 50.493406790000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "146.2", "sL_BldgLoss": "146.2", "sL_StrLoss": "146.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D567BDCE3CE25DC0ABC486B8033E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.532084410999971, 50.482667365000076 ], [ -119.537699728999954, 50.482995127000066 ], [ -119.537185654999973, 50.486574096000027 ], [ -119.533750886999954, 50.4863736450001 ], [ -119.533448394999965, 50.485919103000107 ], [ -119.533082411999885, 50.485432199000073 ], [ -119.532674601999958, 50.484890486000069 ], [ -119.531898078999959, 50.483963547 ], [ -119.532084410999971, 50.482667365000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "108.5", "sL_BldgLoss": "108.5", "sL_StrLoss": "108.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013A8518A4ED85DC082AB3C8130394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.37725205199996, 50.444835722000015 ], [ -119.382861527000017, 50.445171328000129 ], [ -119.38260063599995, 50.44694655800005 ], [ -119.382335612999938, 50.448749739000085 ], [ -119.376725697999959, 50.44841410800008 ], [ -119.376953510999968, 50.446865403000054 ], [ -119.37725205199996, 50.444835722000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46.2", "sL_BldgLoss": "46.2", "sL_StrLoss": "46.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BC2429449BE25DC0AEFFE7EE423F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.540115914999902, 50.49463271200009 ], [ -119.539647488999947, 50.494300802000097 ], [ -119.539493764999932, 50.494176831000104 ], [ -119.539014287999976, 50.493790212000079 ], [ -119.538633985999951, 50.493421610000034 ], [ -119.538527154999954, 50.493302569000093 ], [ -119.541925788999947, 50.493500732000079 ], [ -119.541782811999923, 50.494496610000049 ], [ -119.542081653, 50.494514029000122 ], [ -119.54190305099992, 50.49575804100003 ], [ -119.540328693999953, 50.494783492000053 ], [ -119.540115914999902, 50.49463271200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6331667", "BldgCostT": "4366667", "sL_LossRatio": "1", "sL_AssetLoss": "528.4", "sL_BldgLoss": "528.4", "sL_StrLoss": "528.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000064A61F9A5AE75DC0D121B24022374940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.611312849999948, 50.433467814000046 ], [ -119.611455892999984, 50.432459132000098 ], [ -119.607720748999952, 50.432243391000029 ], [ -119.607689046999965, 50.432466807000104 ], [ -119.602079506999956, 50.432142563000085 ], [ -119.602113279999955, 50.431904751000026 ], [ -119.601206994, 50.431852338000063 ], [ -119.601272187999953, 50.431393339000103 ], [ -119.599409469999927, 50.43128559000008 ], [ -119.599453988999954, 50.430972228000073 ], [ -119.600828280000016, 50.430985049000093 ], [ -119.606109964999959, 50.431007592000071 ], [ -119.606086984999976, 50.430318717000063 ], [ -119.606072541999978, 50.430082747000021 ], [ -119.606638013999969, 50.429909594000016 ], [ -119.606990199999942, 50.429929499000146 ], [ -119.607208787999966, 50.430050598000051 ], [ -119.608585478999956, 50.43026279500004 ], [ -119.609040210999964, 50.43007188800005 ], [ -119.609562397999952, 50.42932279100004 ], [ -119.609769188999977, 50.429218803000076 ], [ -119.609952005999986, 50.429241604000069 ], [ -119.611254576999983, 50.42986969400004 ], [ -119.611950492999966, 50.429970792000084 ], [ -119.612239293999949, 50.430090407000101 ], [ -119.612539809999959, 50.430460693000093 ], [ -119.612759801999971, 50.431104497000135 ], [ -119.612919612999988, 50.431208392000066 ], [ -119.615115992999975, 50.431969012000145 ], [ -119.615786482, 50.431863593000031 ], [ -119.61618300799995, 50.431665591000097 ], [ -119.616713891999964, 50.431554501000036 ], [ -119.617112098999954, 50.430898006000056 ], [ -119.617463497999935, 50.430620299000104 ], [ -119.617786111999962, 50.430604588000087 ], [ -119.618361210999979, 50.43078969900003 ], [ -119.618729214999945, 50.430816794000116 ], [ -119.618808695999931, 50.430752693000109 ], [ -119.618867404999932, 50.429752892000074 ], [ -119.618992396999957, 50.429497993000027 ], [ -119.618683103999956, 50.429226001000082 ], [ -119.618803711999973, 50.428854199000057 ], [ -119.618498900999981, 50.428465401000075 ], [ -119.618215578999965, 50.428416992000066 ], [ -119.617614811, 50.428485383000044 ], [ -119.616922809999934, 50.428465386000084 ], [ -119.616271239999946, 50.428291089000055 ], [ -119.616435000999957, 50.427135269000075 ], [ -119.616906346999912, 50.427162466000063 ], [ -119.616915482999929, 50.427097979000052 ], [ -119.617398361000014, 50.427125840000073 ], [ -119.61741376599997, 50.427017090000049 ], [ -119.623022780999932, 50.427340562000062 ], [ -119.623018556999952, 50.427370403000026 ], [ -119.623756559999919, 50.427412942000082 ], [ -119.623634276999965, 50.428276996000079 ], [ -119.623810315999933, 50.428287142000052 ], [ -119.623303689999915, 50.431866749000115 ], [ -119.622837481999966, 50.431839878000055 ], [ -119.622794183999943, 50.432145761000108 ], [ -119.622034491999969, 50.432101969000051 ], [ -119.622014754999952, 50.432241378000079 ], [ -119.621876209, 50.432233391000118 ], [ -119.62183386399991, 50.432532482000092 ], [ -119.617139379999969, 50.432261753000063 ], [ -119.616922621999947, 50.433791591000102 ], [ -119.611312849999948, 50.433467814000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "85.6", "sL_BldgLoss": "85.6", "sL_StrLoss": "85.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000339F390C22E75DC033D5594EBE3D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.608786461999969, 50.484297468000058 ], [ -119.609248264999948, 50.48104603400003 ], [ -119.614863935999921, 50.481369896000061 ], [ -119.614719135999962, 50.482390342000031 ], [ -119.615106400999963, 50.482381636000099 ], [ -119.614939600999932, 50.482443685000135 ], [ -119.613918810999976, 50.482774596000056 ], [ -119.612116757999956, 50.483309341000115 ], [ -119.610397167999963, 50.483819574000087 ], [ -119.608786461999969, 50.484297468000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3011167", "BldgCostT": "2076667", "sL_LossRatio": "1", "sL_AssetLoss": "211.4", "sL_BldgLoss": "211.4", "sL_StrLoss": "211.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDCD97EEA0DA5DC0E9EBBFEFDB3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.410500281999958, 50.459214668000087 ], [ -119.410607237999926, 50.458484019000132 ], [ -119.416032599999951, 50.458806866000053 ], [ -119.41614462299998, 50.458040944000047 ], [ -119.41638400699992, 50.458055183000035 ], [ -119.416429625999953, 50.45774325100011 ], [ -119.422040996999925, 50.458076871000081 ], [ -119.421876601999912, 50.459201861000061 ], [ -119.422120770999982, 50.459216371000096 ], [ -119.421750466, 50.461750348000095 ], [ -119.421112202999893, 50.461755401000097 ], [ -119.417638288999981, 50.461676094000083 ], [ -119.416999390999962, 50.461641708000116 ], [ -119.416452187999937, 50.461610098000087 ], [ -119.414404195999936, 50.461389006000033 ], [ -119.413428218999911, 50.461240704000041 ], [ -119.412683303999941, 50.461128701000106 ], [ -119.41140618799993, 50.460872206000047 ], [ -119.40854151399999, 50.460236902000098 ], [ -119.408180350999885, 50.460161225000022 ], [ -119.407566446999965, 50.46003255400008 ], [ -119.407226142999946, 50.459961240000048 ], [ -119.407362846999931, 50.459027846000033 ], [ -119.410500281999958, 50.459214668000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "123.6", "sL_BldgLoss": "123.6", "sL_StrLoss": "123.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D6021103BDB5DC06E36B11B913A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.422935665999915, 50.45559739500009 ], [ -119.428546816999955, 50.455930687000041 ], [ -119.428024399999941, 50.459509266000104 ], [ -119.422412807999962, 50.459175949000091 ], [ -119.422935665999915, 50.45559739500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "124.9", "sL_BldgLoss": "124.9", "sL_StrLoss": "124.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D3A1151041E15DC05372354F013B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.519486407999977, 50.459166462000077 ], [ -119.522659863999976, 50.459352195000086 ], [ -119.522144868999973, 50.462931199000117 ], [ -119.516532161999947, 50.462602641000082 ], [ -119.51672235599996, 50.461282069000077 ], [ -119.516963255999912, 50.459609343000125 ], [ -119.517047597999976, 50.459023663000103 ], [ -119.519486407999977, 50.459166462000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "124.9", "sL_BldgLoss": "124.9", "sL_StrLoss": "124.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD010394C8E05DC05254EC1E0F384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.509695415999943, 50.436007437000086 ], [ -119.515304768999911, 50.436336352000062 ], [ -119.514789451999903, 50.439915424000041 ], [ -119.509179658, 50.439586485000099 ], [ -119.509695415999943, 50.436007437000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3035333", "BldgCostT": "2093333", "sL_LossRatio": "1", "sL_AssetLoss": "163.9", "sL_BldgLoss": "163.9", "sL_StrLoss": "163.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F72D04E9BDC5DC0ED61D45ABD384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.447267841999931, 50.440854716000082 ], [ -119.452877341999908, 50.441186785000092 ], [ -119.45283443799994, 50.441481893000038 ], [ -119.452357021999958, 50.444765544000056 ], [ -119.446874341999916, 50.444440987000085 ], [ -119.446690731, 50.445702672000102 ], [ -119.441080717999938, 50.445370293000067 ], [ -119.441601935999984, 50.441791589000111 ], [ -119.447084257999919, 50.442116406000132 ], [ -119.447224903999938, 50.441149822000085 ], [ -119.447267841999931, 50.440854716000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.4", "sL_BldgLoss": "50.4", "sL_StrLoss": "50.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB8D593801D85DC0032BA0B3793A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.372474979999978, 50.456303602000034 ], [ -119.372305390999898, 50.456113038000126 ], [ -119.372293914999943, 50.456100123000034 ], [ -119.372424000999956, 50.456138073000062 ], [ -119.373175287999956, 50.456171416000089 ], [ -119.373386301999957, 50.456145126000095 ], [ -119.374508063999983, 50.456005346000026 ], [ -119.375027833999965, 50.456021516000042 ], [ -119.375111796999988, 50.456034799000044 ], [ -119.375021677999925, 50.454717235000082 ], [ -119.376728903999961, 50.454819417000074 ], [ -119.37620239099999, 50.458397756000117 ], [ -119.376008879999986, 50.458386175000037 ], [ -119.375885469000011, 50.459224812000066 ], [ -119.375541417999926, 50.459073592000045 ], [ -119.374966084999969, 50.458742310000083 ], [ -119.374230808999968, 50.458161300000057 ], [ -119.373775422999955, 50.457746007000026 ], [ -119.373366793999963, 50.457301891000021 ], [ -119.372474979999978, 50.456303602000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "129.7", "sL_BldgLoss": "129.7", "sL_StrLoss": "129.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDE71E0A4DE05DC0F54FCB6A95394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.502154867999948, 50.447918192000046 ], [ -119.507765646999971, 50.44824748300006 ], [ -119.507249597999959, 50.451826467000068 ], [ -119.501638376999935, 50.451497152000073 ], [ -119.502154867999948, 50.447918192000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021638", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390584", "BldgCostT": "2338334", "sL_LossRatio": "1", "sL_AssetLoss": "208", "sL_BldgLoss": "208", "sL_StrLoss": "208", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006B042C0398DF5DC029F4343F02394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.489880600999982, 50.447869635000139 ], [ -119.48990614899999, 50.44769292700007 ], [ -119.488906380999964, 50.447634110000131 ], [ -119.488940505999892, 50.447398114000102 ], [ -119.488765293999919, 50.447387805000062 ], [ -119.489282757999973, 50.443808888000092 ], [ -119.490907428999975, 50.443904466000049 ], [ -119.490932706999928, 50.443729577000084 ], [ -119.491005417999972, 50.443226526000117 ], [ -119.492970233999984, 50.443342083000054 ], [ -119.49306976, 50.442653272000037 ], [ -119.498679815999964, 50.442983024000085 ], [ -119.498507750999948, 50.444174896000099 ], [ -119.498163107999972, 50.446561989000031 ], [ -119.496198136999951, 50.446446524000038 ], [ -119.496098649999951, 50.447135335000048 ], [ -119.49564882599999, 50.447108897000092 ], [ -119.495491283999954, 50.448199546000154 ], [ -119.489880600999982, 50.447869635000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "84", "sL_BldgLoss": "84", "sL_StrLoss": "84", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE5E2CA966E15DC0E89326EFAD3B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.519342000999956, 50.464291827000089 ], [ -119.524954939999944, 50.464620242000088 ], [ -119.524440064999951, 50.468199233000092 ], [ -119.518826684999937, 50.467870794000092 ], [ -119.519342000999956, 50.464291827000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "323.8", "sL_BldgLoss": "323.8", "sL_StrLoss": "323.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000685AA481C6E15DC06869FA2E9D3C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.52307586199997, 50.473337078000029 ], [ -119.523000697999947, 50.473248758000146 ], [ -119.52295510499998, 50.473186784000092 ], [ -119.522887747999917, 50.473142055000011 ], [ -119.52279799799993, 50.473082434000112 ], [ -119.522730641999956, 50.473037703000074 ], [ -119.522699594999978, 50.473005159000117 ], [ -119.52265094399999, 50.472947630000064 ], [ -119.523527459999954, 50.472998898000043 ], [ -119.52347667399999, 50.473351802000096 ], [ -119.52354592699993, 50.473355853000079 ], [ -119.52355731199998, 50.473276745000121 ], [ -119.524353625999979, 50.473323315000073 ], [ -119.524601360999952, 50.471601566000047 ], [ -119.525442412999951, 50.47165074600008 ], [ -119.525600377, 50.470552686000097 ], [ -119.525922259999973, 50.470571507000052 ], [ -119.525963775999941, 50.470282894000036 ], [ -119.53157750699998, 50.470610972000046 ], [ -119.53106309099999, 50.474189967000044 ], [ -119.530741177999971, 50.474171161000093 ], [ -119.530699689999977, 50.474459774000131 ], [ -119.530589244999987, 50.474453322000116 ], [ -119.530267897999977, 50.476688579000083 ], [ -119.528740819999925, 50.476599356000108 ], [ -119.528656755999933, 50.477183915000047 ], [ -119.526177078999979, 50.477038989000064 ], [ -119.526146721999936, 50.477003320000094 ], [ -119.52608560799996, 50.47691470600008 ], [ -119.526040486999975, 50.476861732000053 ], [ -119.525965309999933, 50.476773414000029 ], [ -119.525875552999977, 50.476676404000088 ], [ -119.525830465999988, 50.476623419000113 ], [ -119.525755253999961, 50.476535112000079 ], [ -119.525709689999971, 50.476473128000045 ], [ -119.525649039999976, 50.476393489 ], [ -119.525573347999952, 50.476296183000045 ], [ -119.525527783999948, 50.476234199000032 ], [ -119.525468118999981, 50.476172523000081 ], [ -119.525422535999979, 50.476110573000057 ], [ -119.525363333999977, 50.476057871000059 ], [ -119.525318714999941, 50.47601386000008 ], [ -119.525273595999948, 50.475960884000067 ], [ -119.525227994999952, 50.475898911000108 ], [ -119.525169276999975, 50.475855208000105 ], [ -119.525064493999977, 50.47574055500008 ], [ -119.524989318999971, 50.475652237000077 ], [ -119.524958765999941, 50.475607930000137 ], [ -119.524868531999942, 50.475501922000056 ], [ -119.524837513999913, 50.475448640000096 ], [ -119.524777349999951, 50.475377999000045 ], [ -119.524731305999964, 50.475307017000098 ], [ -119.524656561999976, 50.475227684000039 ], [ -119.524611480999951, 50.475174698000053 ], [ -119.524551356999908, 50.475104047000094 ], [ -119.524506238999962, 50.475051071000031 ], [ -119.524460621999978, 50.474989075000039 ], [ -119.524400015999916, 50.474909424000082 ], [ -119.524340336999927, 50.474847781000044 ], [ -119.524266574999956, 50.474786410000107 ], [ -119.524206449999951, 50.474715758000052 ], [ -119.52416085199999, 50.474653785000079 ], [ -119.524130299000021, 50.474609478000097 ], [ -119.524056574000028, 50.474548096000049 ], [ -119.524025505999973, 50.474494801000056 ], [ -119.52396586299993, 50.474433148000038 ], [ -119.523906665999903, 50.474380444000097 ], [ -119.523830517999912, 50.474274163000125 ], [ -119.523785437999962, 50.474221177000068 ], [ -119.523739841999912, 50.474159204000038 ], [ -119.523664194999967, 50.474061886000079 ], [ -119.523618598999946, 50.473999913000078 ], [ -119.523559419999927, 50.473947234000036 ], [ -119.523512878999966, 50.473867288000065 ], [ -119.523423615999931, 50.473779276000087 ], [ -119.523393062999972, 50.473734968000038 ], [ -119.523333405999963, 50.473673291000075 ], [ -119.523287347999968, 50.473602342000071 ], [ -119.523241735999989, 50.473540344000057 ], [ -119.523196140999957, 50.47347837100007 ], [ -119.523151062999986, 50.473425386 ], [ -119.52307586199997, 50.473337078000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021644", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "125.5", "sL_BldgLoss": "125.5", "sL_StrLoss": "125.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000033809EA3E1E05DC07BBFD18E9B3A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.51122382599999, 50.455918321000048 ], [ -119.51683566399997, 50.456247150000102 ], [ -119.516413121999975, 50.45918124100006 ], [ -119.516320241999964, 50.45982614000004 ], [ -119.510707962999987, 50.459497287000048 ], [ -119.510846767, 50.458534348000072 ], [ -119.51122382599999, 50.455918321000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021645", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "31373834", "BldgCostT": "21373334", "sL_LossRatio": "1", "sL_AssetLoss": "2536.6", "sL_BldgLoss": "2536.6", "sL_StrLoss": "2536.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BF01FA075DE5DC0218DAFE2F9384940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.494877395999964, 50.45427700500003 ], [ -119.494115217999962, 50.453853203000108 ], [ -119.494070524, 50.453831378000146 ], [ -119.494124430999989, 50.453458318000095 ], [ -119.494108617, 50.453457389000071 ], [ -119.494055626999923, 50.453824104000056 ], [ -119.493470299999942, 50.453538286000054 ], [ -119.49279950599994, 50.453265990000013 ], [ -119.492506587999941, 50.453162922000047 ], [ -119.49212231300001, 50.453027698 ], [ -119.491882268999944, 50.452953521000026 ], [ -119.491689206999979, 50.45289387 ], [ -119.491235187999962, 50.452753592000128 ], [ -119.490409991999982, 50.452570598000079 ], [ -119.489359890999978, 50.452377994000138 ], [ -119.489078548999885, 50.452339071 ], [ -119.48810402799991, 50.452204264000073 ], [ -119.48700927199999, 50.45205281800002 ], [ -119.486268324999969, 50.451950317000104 ], [ -119.485705218999897, 50.451872411000117 ], [ -119.48560310299996, 50.451853970000037 ], [ -119.485479759, 50.451831699000081 ], [ -119.485650929999935, 50.450648621000084 ], [ -119.486149572000031, 50.450677970000079 ], [ -119.486385710999954, 50.449045621000039 ], [ -119.481906751999944, 50.448781914000037 ], [ -119.481939315999966, 50.448556959000058 ], [ -119.480265929999916, 50.448458388000034 ], [ -119.480104860999916, 50.44957077500009 ], [ -119.481865774999974, 50.449674501000032 ], [ -119.481863552999926, 50.44968985200007 ], [ -119.482431257999977, 50.44972328600003 ], [ -119.482218882999987, 50.451190446000041 ], [ -119.47889482699992, 50.450519058000054 ], [ -119.477273022999896, 50.450191453000038 ], [ -119.475771139999921, 50.449888051000052 ], [ -119.475093699999945, 50.449751208000094 ], [ -119.473446806999959, 50.44946909500004 ], [ -119.472862957999936, 50.449386657000026 ], [ -119.472075914999948, 50.449275518000057 ], [ -119.470703400999966, 50.449081694000064 ], [ -119.470147551, 50.449026992000036 ], [ -119.46691635800002, 50.448708992000022 ], [ -119.464429162999977, 50.448464139000102 ], [ -119.462756210999913, 50.448299398000096 ], [ -119.462144166999906, 50.448251150000125 ], [ -119.46195386499997, 50.448236122000061 ], [ -119.462114546999942, 50.447129472000057 ], [ -119.464959467999932, 50.447297512000034 ], [ -119.465345837999962, 50.444635124000044 ], [ -119.464940888999934, 50.444643707000075 ], [ -119.464909603999956, 50.444041806 ], [ -119.464898858999959, 50.443835055000079 ], [ -119.466196026999953, 50.443807555000056 ], [ -119.464338769999969, 50.443697874000087 ], [ -119.464296428999916, 50.443989612000109 ], [ -119.463852148999962, 50.447050574000031 ], [ -119.46134321599996, 50.446902358000088 ], [ -119.461158241999954, 50.448176165000056 ], [ -119.460740749999957, 50.448156090000111 ], [ -119.459796503999939, 50.448110694000064 ], [ -119.459686319999918, 50.44810540700005 ], [ -119.457084015999968, 50.44802279400006 ], [ -119.454957113999939, 50.448065785000097 ], [ -119.454126410999962, 50.448155606000071 ], [ -119.45338868099995, 50.448315907000065 ], [ -119.452704026999967, 50.448549695000118 ], [ -119.452336841999966, 50.448732547000098 ], [ -119.452202883999931, 50.448799249000082 ], [ -119.452078692, 50.44886110000008 ], [ -119.451188853999938, 50.449387313000081 ], [ -119.451554317999964, 50.446874429000054 ], [ -119.452275280999956, 50.446917091000053 ], [ -119.452521969, 50.445220548000087 ], [ -119.458132048999971, 50.445552348000035 ], [ -119.458004035999934, 50.446433498000026 ], [ -119.458280949999974, 50.446449867000133 ], [ -119.458658823999954, 50.443848644000127 ], [ -119.458761716999902, 50.443140286000116 ], [ -119.462076218999982, 50.443336174000123 ], [ -119.462264468999976, 50.442039476000048 ], [ -119.462562930999965, 50.439983465000054 ], [ -119.468172433999939, 50.440314760000021 ], [ -119.467935429999898, 50.441948818000071 ], [ -119.468182077999984, 50.441963378000018 ], [ -119.468163532999981, 50.441607033000082 ], [ -119.469143623999969, 50.441586228000034 ], [ -119.46985190099997, 50.44157118900003 ], [ -119.469877534999981, 50.442063450000042 ], [ -119.469942107999955, 50.44206726100002 ], [ -119.470280184999922, 50.439735578000054 ], [ -119.469142832999978, 50.439668450000106 ], [ -119.46527828799999, 50.439440273000066 ], [ -119.465481329999946, 50.43804086900014 ], [ -119.465797522999978, 50.435861430000074 ], [ -119.471406536999922, 50.436192564000066 ], [ -119.470987893999904, 50.439080596000103 ], [ -119.475938347999957, 50.439372610000142 ], [ -119.476249492999898, 50.437224573000101 ], [ -119.477184039999912, 50.437279674000088 ], [ -119.47738862199999, 50.435866995000076 ], [ -119.482997720999961, 50.436197543000091 ], [ -119.482983898999947, 50.436293070000019 ], [ -119.484536277999965, 50.436384501000084 ], [ -119.484102196999984, 50.43938508200003 ], [ -119.485785042999979, 50.439484173000032 ], [ -119.485267350999948, 50.443063094000102 ], [ -119.47965738100001, 50.442732663000079 ], [ -119.479901104999925, 50.441049263000131 ], [ -119.4786112, 50.440973246000063 ], [ -119.478319599999935, 50.442986915000027 ], [ -119.47822258, 50.443656854000125 ], [ -119.478123986999933, 50.443651043000067 ], [ -119.477673231999972, 50.446763258000111 ], [ -119.47300549699996, 50.446488048000028 ], [ -119.47297541599994, 50.44669556900002 ], [ -119.473505377, 50.44672682600001 ], [ -119.473313683999933, 50.448049383000125 ], [ -119.474655211999931, 50.448128494000109 ], [ -119.474812200999949, 50.447045164000066 ], [ -119.478743634999915, 50.447276907000067 ], [ -119.479150058999892, 50.444470357000057 ], [ -119.479375135999959, 50.444483620000071 ], [ -119.479431367999908, 50.444095262000097 ], [ -119.485041506, 50.444425703000093 ], [ -119.484980209999932, 50.444849393000055 ], [ -119.486766678999956, 50.444954556000027 ], [ -119.486694380999893, 50.445454420000011 ], [ -119.48803507199996, 50.445533323000056 ], [ -119.487580676999968, 50.448675340000094 ], [ -119.487821820999926, 50.448689531000113 ], [ -119.487831648999986, 50.448621567000089 ], [ -119.493442409999901, 50.448951580000035 ], [ -119.493319567999933, 50.449801689000033 ], [ -119.496086184999982, 50.449964310000105 ], [ -119.495617367999941, 50.453209735000073 ], [ -119.499783987999947, 50.45345451400005 ], [ -119.499634929999942, 50.454486943000042 ], [ -119.501787893999946, 50.454613362000025 ], [ -119.50127694699998, 50.458153151000054 ], [ -119.500562057999915, 50.457757999000151 ], [ -119.500374309999941, 50.457654188000092 ], [ -119.500108270999988, 50.457500148000065 ], [ -119.496516100999955, 50.455420003 ], [ -119.495341066999984, 50.454600423000045 ], [ -119.494877395999964, 50.45427700500003 ] ], [ [ -119.467085562999927, 50.44405853600005 ], [ -119.467114108999965, 50.4438617610001 ], [ -119.467012825999944, 50.443855782000085 ], [ -119.467023443999921, 50.444059854000059 ], [ -119.467085562999927, 50.44405853600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "1", "sL_AssetLoss": "221", "sL_BldgLoss": "221", "sL_StrLoss": "221", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025E58B4981D95DC03485CE6BEC394940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.395121801999892, 50.451317404000079 ], [ -119.395373396999972, 50.449602348000028 ], [ -119.40098360099995, 50.449937037000026 ], [ -119.400972283999948, 50.450014248000045 ], [ -119.401843777999915, 50.450066213000113 ], [ -119.401736309999961, 50.450799526000047 ], [ -119.403567072999948, 50.450908667000071 ], [ -119.403042732999936, 50.454487150000034 ], [ -119.401251830999968, 50.454380387000128 ], [ -119.40112219599996, 50.455264793000048 ], [ -119.399187157999933, 50.455149403000036 ], [ -119.399184205999987, 50.455169538000085 ], [ -119.393573366999959, 50.454834761000015 ], [ -119.394098460999956, 50.451256323000116 ], [ -119.395121801999892, 50.451317404000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21406917", "BldgCostT": "14291667", "sL_LossRatio": "1", "sL_AssetLoss": "1612", "sL_BldgLoss": "1612", "sL_StrLoss": "1612", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000215C1A229BE75DC070B3BACD82464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.621750592999987, 50.554325830000053 ], [ -119.621911359999956, 50.553193513000089 ], [ -119.619981546999924, 50.5530825620001 ], [ -119.618082779999952, 50.552973361000092 ], [ -119.618088012999962, 50.552936530000053 ], [ -119.61767636899999, 50.552912851000038 ], [ -119.61771508399994, 50.552640345000064 ], [ -119.617096069999917, 50.552604735000067 ], [ -119.61717819899998, 50.55202669100003 ], [ -119.616028628999985, 50.551960551000043 ], [ -119.615162998999935, 50.551910739000085 ], [ -119.612254153999942, 50.55174330300008 ], [ -119.612255069999932, 50.551736850000104 ], [ -119.611597433000028, 50.55169898500003 ], [ -119.611743204999968, 50.550673867000107 ], [ -119.610115756999946, 50.550580147000105 ], [ -119.610274542999974, 50.54946372600002 ], [ -119.610336575999895, 50.54902755500013 ], [ -119.610462286999962, 50.548143632000048 ], [ -119.610624765999944, 50.547001123000022 ], [ -119.613072140999975, 50.547142053000051 ], [ -119.616248668999916, 50.547324889000038 ], [ -119.616133875999964, 50.548132797000058 ], [ -119.616217643999946, 50.548137617000116 ], [ -119.618666846999957, 50.548278525000065 ], [ -119.61864085699996, 50.548461505000013 ], [ -119.619378035999901, 50.548503905000111 ], [ -119.619290162999945, 50.549122648000065 ], [ -119.623228754999928, 50.549349101000075 ], [ -119.623190075999915, 50.54962161 ], [ -119.623809052999931, 50.549657186000097 ], [ -119.623803826999961, 50.549694019000107 ], [ -119.624215443999958, 50.549717674000057 ], [ -119.624021773999971, 50.551082330000042 ], [ -119.625137140999968, 50.551146423000048 ], [ -119.627850219999942, 50.55130227800008 ], [ -119.627681517999918, 50.552491652000072 ], [ -119.627342530999954, 50.554881361000092 ], [ -119.622237720999948, 50.554588056000092 ], [ -119.62171760399994, 50.554558159000109 ], [ -119.621750592999987, 50.554325830000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021649", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8344750", "BldgCostT": "5755000", "sL_LossRatio": "1", "sL_AssetLoss": "617.2", "sL_BldgLoss": "617.2", "sL_StrLoss": "617.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E86D094CE9E55DC0F47EAB8EFF434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.590368315999967, 50.532466311000093 ], [ -119.588946826999987, 50.530823378000044 ], [ -119.588914844999962, 50.530786398000039 ], [ -119.588724537999965, 50.530566437000061 ], [ -119.588705415999968, 50.530544302000095 ], [ -119.588607515999968, 50.530379658000079 ], [ -119.588587704999924, 50.530346302000098 ], [ -119.587847074999956, 50.529469894000087 ], [ -119.587685813999897, 50.529279069000083 ], [ -119.58779820399999, 50.528491254000116 ], [ -119.593419632999939, 50.52881618200005 ], [ -119.593372198999973, 50.529148971000041 ], [ -119.594315670999919, 50.529203477000095 ], [ -119.594484922999953, 50.529213254000084 ], [ -119.594426833999975, 50.529620864000037 ], [ -119.594185845999988, 50.531311782000053 ], [ -119.596492501999961, 50.531445003000123 ], [ -119.595982545999931, 50.535024030000024 ], [ -119.5956655049999, 50.535005722000079 ], [ -119.595509685999986, 50.534821097000048 ], [ -119.595061018999957, 50.534420487000013 ], [ -119.594827099, 50.53421158600004 ], [ -119.594419482999982, 50.533968796000096 ], [ -119.593938303999977, 50.533785803000029 ], [ -119.59367582299997, 50.533718400000048 ], [ -119.592359298999938, 50.533509696000046 ], [ -119.591853298, 50.533401115000103 ], [ -119.591621190999959, 50.533320018000019 ], [ -119.591212095999978, 50.533127701000105 ], [ -119.590822604999957, 50.532859123000044 ], [ -119.590677983999981, 50.532759408000047 ], [ -119.590368315999967, 50.532466311000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021650", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "341", "sL_BldgLoss": "341", "sL_StrLoss": "341", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A3FFABAFAAE55DC06F9D5EAD833F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.586954370999976, 50.49429529800009 ], [ -119.591587371999978, 50.494563364000058 ], [ -119.591077443999907, 50.498142530000074 ], [ -119.58545985399995, 50.497817472000065 ], [ -119.585920908999981, 50.494584203000059 ], [ -119.586954370999976, 50.49429529800009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021651", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "132.2", "sL_BldgLoss": "132.2", "sL_StrLoss": "132.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E06A9CAEDE75DC00B3575E4693D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.62551978499998, 50.478968197000029 ], [ -119.625592016999974, 50.478960719000042 ], [ -119.625385124999951, 50.480421285000062 ], [ -119.620994011999983, 50.480168483000099 ], [ -119.621937706999944, 50.479806705000072 ], [ -119.622926341999957, 50.479467716000066 ], [ -119.623093495999953, 50.479410394000112 ], [ -119.623488294999945, 50.479301400000104 ], [ -119.623527023999955, 50.479293777000102 ], [ -119.624300672999965, 50.479141596000041 ], [ -119.62551978499998, 50.478968197000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10387500", "BldgCostT": "6900000", "sL_LossRatio": "1", "sL_AssetLoss": "952.8", "sL_BldgLoss": "952.8", "sL_StrLoss": "952.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000839A215554E55DC0EEA5BE6698424940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.579341013999922, 50.519519503000076 ], [ -119.579128119999922, 50.519385842000077 ], [ -119.578554413999925, 50.519025606000106 ], [ -119.578331199999923, 50.518843098000097 ], [ -119.578279190999979, 50.518791209000099 ], [ -119.577980746999984, 50.518493414000048 ], [ -119.578149755999959, 50.517310205000072 ], [ -119.58354831199992, 50.517622810000049 ], [ -119.583769720999925, 50.517635626000093 ], [ -119.583745036999971, 50.517808593000083 ], [ -119.583557023999973, 50.519125971000065 ], [ -119.585911519999954, 50.519262221000062 ], [ -119.58727731, 50.519341233000091 ], [ -119.58719442099999, 50.519922342000058 ], [ -119.587522642999957, 50.51994132700009 ], [ -119.58735414, 50.521122657000021 ], [ -119.587012104999971, 50.523520363000053 ], [ -119.583074154999963, 50.523292516000026 ], [ -119.582113062999923, 50.52172663700005 ], [ -119.582016302999989, 50.521568990000105 ], [ -119.581639911999972, 50.521149304000112 ], [ -119.581606938999926, 50.521119145000092 ], [ -119.581516297999883, 50.521036211000116 ], [ -119.581198799999925, 50.520745809000097 ], [ -119.580941697999947, 50.52056221700014 ], [ -119.58030294699995, 50.520186584000065 ], [ -119.58009092099995, 50.520061897000112 ], [ -119.579341013999922, 50.519519503000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4978333", "BldgCostT": "3433333", "sL_LossRatio": "1", "sL_AssetLoss": "423.4", "sL_BldgLoss": "423.4", "sL_StrLoss": "423.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B540694527E95DC0B85C589217484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.640462261999957, 50.561268644000087 ], [ -119.646088160999966, 50.56159089600007 ], [ -119.645799179999941, 50.563633600000045 ], [ -119.64558180599991, 50.565170018000074 ], [ -119.639955463999968, 50.564847741000037 ], [ -119.640157133999949, 50.563423578000027 ], [ -119.640462261999957, 50.561268644000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18188500", "BldgCostT": "12280000", "sL_LossRatio": "1", "sL_AssetLoss": "1681.9", "sL_BldgLoss": "1681.9", "sL_StrLoss": "1681.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8084B0275E85DC0A00491A0D3474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.632487789999942, 50.564893635000018 ], [ -119.63251391199999, 50.564709393000079 ], [ -119.632396099999966, 50.56470263300006 ], [ -119.632459876000013, 50.564252805000088 ], [ -119.632317427999936, 50.564244632000104 ], [ -119.632383419999925, 50.563779174000068 ], [ -119.630093508999934, 50.563647766000066 ], [ -119.62982517899998, 50.563632364000036 ], [ -119.629844120999962, 50.563498811000059 ], [ -119.628987561999949, 50.563449641000076 ], [ -119.629018641999949, 50.563230541000038 ], [ -119.628729367999981, 50.563213935000128 ], [ -119.628770248999942, 50.562925755000045 ], [ -119.62913032199999, 50.56038729400013 ], [ -119.624352919999936, 50.560112921000062 ], [ -119.624787766999987, 50.557049220000067 ], [ -119.624860907999931, 50.556533873000035 ], [ -119.630486101999963, 50.556856916000143 ], [ -119.630085264999963, 50.559683575000051 ], [ -119.634862656999957, 50.559957702000077 ], [ -119.634831606999938, 50.560176805 ], [ -119.635120862999955, 50.56019339500002 ], [ -119.635111284999937, 50.560260983000077 ], [ -119.639431329000018, 50.560508676000062 ], [ -119.639071073999958, 50.56305254700009 ], [ -119.63892445599997, 50.56408777300004 ], [ -119.638722639999912, 50.564076205000028 ], [ -119.638698649999967, 50.564245583000044 ], [ -119.638635677999972, 50.564690179000081 ], [ -119.638192208999939, 50.56466475900006 ], [ -119.638114083999966, 50.56521628900002 ], [ -119.633530672999953, 50.56495346400007 ], [ -119.632487789999942, 50.564893635000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3342250", "BldgCostT": "2305000", "sL_LossRatio": "1", "sL_AssetLoss": "275", "sL_BldgLoss": "275", "sL_StrLoss": "275", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D1DD9EB555E75DC068DF26EDD73D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.619714898999945, 50.480658823000049 ], [ -119.620330983999906, 50.480644946000041 ], [ -119.620375721999935, 50.481453498000079 ], [ -119.619953323999979, 50.481463011000052 ], [ -119.619968234999959, 50.481732529000077 ], [ -119.619123433999931, 50.481751554000013 ], [ -119.619138339999964, 50.48202107000003 ], [ -119.618715936999976, 50.482030580000121 ], [ -119.618730839999969, 50.482300098000088 ], [ -119.617886028999962, 50.482319113000059 ], [ -119.617900928999973, 50.482588630000109 ], [ -119.61747851899996, 50.482598135000018 ], [ -119.617493417000034, 50.482867653 ], [ -119.61622618399997, 50.48289616100007 ], [ -119.616241072999955, 50.483165679000088 ], [ -119.614603888999937, 50.483202488000082 ], [ -119.614356003999958, 50.484949227000044 ], [ -119.608739889999953, 50.484625340000036 ], [ -119.608786461999969, 50.484297468000058 ], [ -119.610397167999963, 50.483819574000087 ], [ -119.612116757999956, 50.483309341000115 ], [ -119.613918810999976, 50.482774596000056 ], [ -119.614939600999932, 50.482443685000135 ], [ -119.615106400999963, 50.482381636000099 ], [ -119.615351589999989, 50.482376124000034 ], [ -119.615346951999953, 50.482292151000088 ], [ -119.615878475999963, 50.482094423000085 ], [ -119.616181515000022, 50.482087608000029 ], [ -119.616175781999956, 50.481983823000114 ], [ -119.616650536999941, 50.481807206000056 ], [ -119.61701142899993, 50.481799087000148 ], [ -119.617004598999941, 50.481675487000082 ], [ -119.617419103999978, 50.481521280000045 ], [ -119.618194631999984, 50.481232757000058 ], [ -119.618248831999978, 50.481231538000031 ], [ -119.618247804999953, 50.481212974000108 ], [ -119.618966663999913, 50.480945525000038 ], [ -119.619078718, 50.480943002000117 ], [ -119.619076534999962, 50.480903527000052 ], [ -119.619714898999945, 50.480658823000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.3", "sL_BldgLoss": "41.3", "sL_StrLoss": "41.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DE4CD8C08EE55DC0487810757E434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.585217854999954, 50.526358398000049 ], [ -119.587827276999931, 50.526509332000067 ], [ -119.58746878799991, 50.52902225200009 ], [ -119.586683568999916, 50.528093034000115 ], [ -119.585217854999954, 50.526358398000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "1", "sL_AssetLoss": "273.8", "sL_BldgLoss": "273.8", "sL_StrLoss": "273.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7F51009B6E85DC035BC8BBD383D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.634269733999957, 50.480330118000033 ], [ -119.634164800999912, 50.478443521000038 ], [ -119.633320069, 50.478462648000097 ], [ -119.633305084999918, 50.478193134000044 ], [ -119.632460355999939, 50.478212254000084 ], [ -119.632416969999923, 50.477431625000072 ], [ -119.632510726999982, 50.477401555000078 ], [ -119.63283777499997, 50.477394152000038 ], [ -119.632832451999917, 50.477298368000106 ], [ -119.633415977999931, 50.477111211000128 ], [ -119.633667502999955, 50.477105516000051 ], [ -119.633663405999982, 50.477031850000039 ], [ -119.634321216999979, 50.47682085900005 ], [ -119.63449722, 50.476816873000111 ], [ -119.634494351999976, 50.476765325000024 ], [ -119.635063337999952, 50.476582818000111 ], [ -119.635181091999982, 50.476545050000063 ], [ -119.635226451999969, 50.47653050100007 ], [ -119.636171622999882, 50.47650908400005 ], [ -119.636186622999944, 50.476778597000134 ], [ -119.637031322999988, 50.476759449000077 ], [ -119.637016316999947, 50.476489937000082 ], [ -119.63870570399996, 50.476451624000063 ], [ -119.638765765999921, 50.477529676000053 ], [ -119.638343408999916, 50.477539257000075 ], [ -119.638373433999931, 50.478078283000073 ], [ -119.638795794999979, 50.478068702000051 ], [ -119.638825825999945, 50.478607728000028 ], [ -119.639248193999961, 50.478598146000067 ], [ -119.63929325, 50.479406683000043 ], [ -119.638448503999939, 50.479425848000076 ], [ -119.638463517999966, 50.479695360000015 ], [ -119.63761876699995, 50.479714518000065 ], [ -119.637633775999944, 50.479984032000033 ], [ -119.636789018999963, 50.480003184000054 ], [ -119.63680402499989, 50.480272697000075 ], [ -119.634269733999957, 50.480330118000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "40837391", "BldgCostT": "26826975", "sL_LossRatio": "1", "sL_AssetLoss": "3039", "sL_BldgLoss": "3039", "sL_StrLoss": "3039", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000097DDF6B140E45DC04C4AE6FDA4404940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.574177608, 50.513638710000073 ], [ -119.574186714999925, 50.513050088000028 ], [ -119.574070504999924, 50.512723099 ], [ -119.57316018799996, 50.511768210000071 ], [ -119.572855213999915, 50.511514111000039 ], [ -119.572575277999945, 50.511380440000046 ], [ -119.572450805999921, 50.511321000000109 ], [ -119.571981508999954, 50.511165694000098 ], [ -119.570990669999958, 50.510918696000083 ], [ -119.570896887999979, 50.510895303000012 ], [ -119.570304484999951, 50.510659804000049 ], [ -119.569171635999965, 50.509957844000063 ], [ -119.568641699999901, 50.509629510000103 ], [ -119.568107912, 50.509213778000081 ], [ -119.568014693999928, 50.509141188000072 ], [ -119.56733704399997, 50.508507397000116 ], [ -119.567042789999917, 50.508232199000069 ], [ -119.566657185999986, 50.507917506000105 ], [ -119.564874201999928, 50.506887503000087 ], [ -119.564124998999944, 50.506214215000064 ], [ -119.563736926999965, 50.505947202000065 ], [ -119.563371838999927, 50.505748062000073 ], [ -119.563238985999959, 50.505675611000086 ], [ -119.562984780999969, 50.505581990000096 ], [ -119.562360487999968, 50.505352102000089 ], [ -119.562024385999962, 50.505147608000094 ], [ -119.561459090999932, 50.504674519000048 ], [ -119.560900199999963, 50.504344295000102 ], [ -119.560052099999893, 50.503936901000024 ], [ -119.559747266, 50.503671318000031 ], [ -119.559496549999977, 50.503659298000052 ], [ -119.559412808999966, 50.503652264000053 ], [ -119.559274015999975, 50.503655608000017 ], [ -119.559191291999952, 50.503666561000074 ], [ -119.55899698199994, 50.50367119100013 ], [ -119.558912803999988, 50.503655229000053 ], [ -119.558841086999919, 50.503603011000088 ], [ -119.558824418999961, 50.503531899000059 ], [ -119.558793037999976, 50.503443246000053 ], [ -119.558733910999962, 50.503364135 ], [ -119.558689441999974, 50.503302608000048 ], [ -119.558616678, 50.503232784000041 ], [ -119.558557497999914, 50.503153660000088 ], [ -119.558513410999964, 50.503101050000026 ], [ -119.558468306999956, 50.503021625000031 ], [ -119.558423873999985, 50.502960089000076 ], [ -119.558391471999954, 50.502844622000083 ], [ -119.558386946000013, 50.502719603000131 ], [ -119.558395160999936, 50.502558531000091 ], [ -119.558406018999975, 50.502468943000046 ], [ -119.558415584, 50.502343589000127 ], [ -119.558633892, 50.502151100000034 ], [ -119.558403095999921, 50.502151316000088 ], [ -119.556258092999911, 50.502153412000027 ], [ -119.555733214000028, 50.502153888000095 ], [ -119.554256465999941, 50.502158540000067 ], [ -119.552128862999936, 50.50216524200011 ], [ -119.552075636999973, 50.502309205000053 ], [ -119.552097412999927, 50.502989783000018 ], [ -119.552103537, 50.5031814600001 ], [ -119.5521015899999, 50.503186566000132 ], [ -119.551902748999979, 50.503027233000111 ], [ -119.551798583999968, 50.502978455000118 ], [ -119.551678137999957, 50.502903913000111 ], [ -119.55158898799999, 50.502863358000042 ], [ -119.551499181999958, 50.50281399600005 ], [ -119.551395034999985, 50.502765239000084 ], [ -119.551305907999932, 50.50272465000009 ], [ -119.551187461999945, 50.502676432000101 ], [ -119.551098938999928, 50.502644634000063 ], [ -119.550981825999926, 50.502614052000112 ], [ -119.550794519999926, 50.502613259000036 ], [ -119.550708306999951, 50.502617035000071 ], [ -119.550594258999979, 50.502640089000074 ], [ -119.550494513, 50.50266254700005 ], [ -119.550366515999926, 50.502695322000051 ], [ -119.550210548999956, 50.502747498000083 ], [ -119.55012523399995, 50.502769350000065 ], [ -119.550025916999985, 50.502800911000065 ], [ -119.549926952999968, 50.502841592999985 ], [ -119.549813293999961, 50.502873760000071 ], [ -119.549658013999945, 50.502944218000074 ], [ -119.549573070999912, 50.502975159000108 ], [ -119.549502451999928, 50.503005530000117 ], [ -119.549344819999988, 50.503021426000032 ], [ -119.549345471999956, 50.502992977000076 ], [ -119.54937411899995, 50.501725029000063 ], [ -119.5494124, 50.500034500000083 ], [ -119.549439953999965, 50.498814938000073 ], [ -119.550560976000014, 50.499144514000044 ], [ -119.552238183000014, 50.49976270300008 ], [ -119.552703973999925, 50.499941691000053 ], [ -119.552868989999951, 50.500005090000109 ], [ -119.552941638000021, 50.500025042000104 ], [ -119.553895000999972, 50.500286803000044 ], [ -119.554434009999966, 50.500359587000091 ], [ -119.555289505999951, 50.500407594000073 ], [ -119.555704618999968, 50.500406488000131 ], [ -119.555691582999955, 50.499953691000087 ], [ -119.556717951999957, 50.499942909000019 ], [ -119.558502615999927, 50.499924099000047 ], [ -119.558511246999927, 50.49999748000004 ], [ -119.558541614999939, 50.50025469300008 ], [ -119.5585414009999, 50.500404503000084 ], [ -119.561595086999915, 50.500410493000082 ], [ -119.562182979999989, 50.500408601000103 ], [ -119.562426471999984, 50.500408225000108 ], [ -119.562787807999911, 50.500407692000124 ], [ -119.567978608999979, 50.500402282000131 ], [ -119.569350194999956, 50.500396200000083 ], [ -119.570534088999949, 50.500356727000039 ], [ -119.571221491999964, 50.500282914000124 ], [ -119.572322397, 50.500090514000121 ], [ -119.572616884999988, 50.500033354000038 ], [ -119.573253107999932, 50.499909905000067 ], [ -119.573765102999943, 50.499844894000091 ], [ -119.576220687999964, 50.49973471000002 ], [ -119.577183995, 50.499632609000081 ], [ -119.57734276799998, 50.499607527000073 ], [ -119.576986456999961, 50.502102645000029 ], [ -119.576736120999939, 50.502088135000058 ], [ -119.576721450999955, 50.502190851000123 ], [ -119.574552008999959, 50.502065081000076 ], [ -119.574572687999989, 50.50244518600006 ], [ -119.572459684999899, 50.502491926000062 ], [ -119.572429793999959, 50.501942007000054 ], [ -119.57239609, 50.501940052000045 ], [ -119.571658670999923, 50.501897277000097 ], [ -119.571528760999954, 50.502806169000088 ], [ -119.566238153999947, 50.502499134000089 ], [ -119.566153942999932, 50.503087791000098 ], [ -119.565781108999929, 50.503066144000094 ], [ -119.56574034099998, 50.503351100000096 ], [ -119.565686663999927, 50.503347984000101 ], [ -119.565628777999962, 50.503752585000065 ], [ -119.567402374999944, 50.503855550000011 ], [ -119.567227167999974, 50.50508046500007 ], [ -119.570428960999919, 50.505266269000046 ], [ -119.57019148199997, 50.506927265000094 ], [ -119.571363347, 50.506995247000113 ], [ -119.57120377699998, 50.508111445000104 ], [ -119.573475453999919, 50.508243191000133 ], [ -119.573429313999895, 50.508566046000034 ], [ -119.574492654, 50.508627698000055 ], [ -119.574755834999948, 50.508642956000095 ], [ -119.57469471499999, 50.509070721000079 ], [ -119.575057454999964, 50.509091750000053 ], [ -119.574970017999959, 50.509703713000093 ], [ -119.574955375999977, 50.509806193000081 ], [ -119.575063404000019, 50.509812455000024 ], [ -119.575216798999946, 50.509821347000063 ], [ -119.575192757999929, 50.509989608000069 ], [ -119.57516207799992, 50.51020434300009 ], [ -119.57527626199996, 50.510210962 ], [ -119.576060597999941, 50.510256424000012 ], [ -119.576022227999914, 50.510525006000101 ], [ -119.576160513999952, 50.510533022000082 ], [ -119.576148842999913, 50.510614712000049 ], [ -119.576485308999935, 50.510634212000085 ], [ -119.576435256999929, 50.51098458900001 ], [ -119.576414211, 50.511131913000057 ], [ -119.576595338999965, 50.511142411000016 ], [ -119.576440379999966, 50.512227155000112 ], [ -119.577669578999945, 50.512298383000072 ], [ -119.577621438999984, 50.512635419000077 ], [ -119.577767498, 50.512643882000077 ], [ -119.577666949999923, 50.513347852000074 ], [ -119.577745146999931, 50.513352383000075 ], [ -119.577233906999965, 50.516931403000093 ], [ -119.576049315999938, 50.516862763000056 ], [ -119.575244010999924, 50.516287012000134 ], [ -119.574966312999948, 50.515993894000047 ], [ -119.574889500999973, 50.515912786000051 ], [ -119.574594687999976, 50.51552759700008 ], [ -119.574393489999977, 50.515131696000033 ], [ -119.574337087999979, 50.514504990000098 ], [ -119.574177608, 50.513638710000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021659", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13826417", "BldgCostT": "9271667", "sL_LossRatio": "1", "sL_AssetLoss": "1545", "sL_BldgLoss": "1545", "sL_StrLoss": "1545", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008954FFBDA7E65DC0F957878A8E454940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.603995201999936, 50.546341159000058 ], [ -119.604186924999951, 50.544994326000044 ], [ -119.602862930999919, 50.544917981 ], [ -119.601074062999885, 50.544814805000016 ], [ -119.598887451999985, 50.544688648000033 ], [ -119.598896753999895, 50.544623350000052 ], [ -119.599233422999973, 50.544416223000106 ], [ -119.59950308, 50.544304134000114 ], [ -119.599542863999957, 50.544287593000035 ], [ -119.599964500999988, 50.544112342000048 ], [ -119.600031286000018, 50.54408459100005 ], [ -119.600413100999958, 50.543925893000029 ], [ -119.600746447999924, 50.543725011000049 ], [ -119.600973316999955, 50.543475578000042 ], [ -119.601024850999963, 50.543342751000083 ], [ -119.601096500999986, 50.54315792500006 ], [ -119.601055984999917, 50.542773832000066 ], [ -119.601037603999956, 50.542599581000069 ], [ -119.601031974999955, 50.542546193000135 ], [ -119.601012849999975, 50.542505848000083 ], [ -119.600971380999951, 50.542418247000072 ], [ -119.60065823199993, 50.54175694000002 ], [ -119.600568193999962, 50.541663584000048 ], [ -119.600364308999957, 50.541452194000072 ], [ -119.599996298999955, 50.541097432000065 ], [ -119.599607913999989, 50.540722987000066 ], [ -119.599134297999939, 50.540216599000068 ], [ -119.598893932999928, 50.539875407000054 ], [ -119.598878831999954, 50.539853960000073 ], [ -119.598733495999966, 50.539647702000089 ], [ -119.598377997999961, 50.539258196000098 ], [ -119.598098689999972, 50.539059885 ], [ -119.597703263999946, 50.538870572000043 ], [ -119.597063810999927, 50.538564404000041 ], [ -119.596928996999935, 50.538475324000046 ], [ -119.596968756999971, 50.538196289000062 ], [ -119.60259146199995, 50.538520749000085 ], [ -119.602278048999949, 50.540722184000103 ], [ -119.604796042999979, 50.540867393000013 ], [ -119.604754064999966, 50.541162342000163 ], [ -119.605581937999943, 50.541210071000101 ], [ -119.60518828, 50.54397624500011 ], [ -119.60996228599997, 50.544251357000043 ], [ -119.609496303999947, 50.547527730000049 ], [ -119.609453253999902, 50.54783038900004 ], [ -119.607486306999988, 50.547717066000118 ], [ -119.605853026999966, 50.547622939000121 ], [ -119.603829336999965, 50.547506279000103 ], [ -119.603917488999983, 50.546887064000039 ], [ -119.603995201999936, 50.546341159000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11493750", "BldgCostT": "7455000", "sL_LossRatio": "1", "sL_AssetLoss": "731", "sL_BldgLoss": "731", "sL_StrLoss": "731", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6037D3B6CE65DC0A78AD273453F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.599651952999935, 50.492109939000031 ], [ -119.605268931999902, 50.492434282000026 ], [ -119.604760115, 50.496013521000094 ], [ -119.602957834999984, 50.495909483000112 ], [ -119.602894951999971, 50.496351664000038 ], [ -119.60104989, 50.496245126000105 ], [ -119.601019577999963, 50.496458205000081 ], [ -119.5954021269999, 50.496133650000068 ], [ -119.595911690999941, 50.492554454000093 ], [ -119.597756588999928, 50.49266107800004 ], [ -119.597786913999954, 50.492447998000038 ], [ -119.599589042999952, 50.492552120000035 ], [ -119.599651952999935, 50.492109939000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438916", "BldgCostT": "2371666", "sL_LossRatio": "1", "sL_AssetLoss": "211.4", "sL_BldgLoss": "211.4", "sL_StrLoss": "211.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F04759D876CE5DC0C0CF3438FC4D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.226169092999982, 50.613877915000032 ], [ -119.22647501299997, 50.611852572000032 ], [ -119.224035365999924, 50.611703760000104 ], [ -119.22426350399995, 50.610193792000125 ], [ -119.223802362999947, 50.610165657000046 ], [ -119.224342770999954, 50.606588713000086 ], [ -119.224424316999929, 50.606593687000014 ], [ -119.224490402999976, 50.60615621800013 ], [ -119.224478361999928, 50.606155483000094 ], [ -119.22462053799994, 50.605214295000053 ], [ -119.226254992999941, 50.605215594000107 ], [ -119.22660229899999, 50.605285490000057 ], [ -119.226855984999943, 50.605457994000027 ], [ -119.227268487999964, 50.606187087000059 ], [ -119.227366644999975, 50.606865232000111 ], [ -119.227439277999977, 50.607366711000033 ], [ -119.227596640999977, 50.608453981000103 ], [ -119.227656145999958, 50.608865005000069 ], [ -119.227662577999936, 50.608909491000134 ], [ -119.22772608799994, 50.609646202000107 ], [ -119.227723893999922, 50.610619795000041 ], [ -119.227675999, 50.610946307000148 ], [ -119.22756560199997, 50.611254481000053 ], [ -119.227087998999977, 50.612084584000087 ], [ -119.226987818999945, 50.612371807000066 ], [ -119.226966273999949, 50.612641504000088 ], [ -119.227390324999945, 50.612642393000044 ], [ -119.227672321999961, 50.612628009000069 ], [ -119.22823240699995, 50.612617239000109 ], [ -119.228265417, 50.612616613000093 ], [ -119.228198893999917, 50.614001686000044 ], [ -119.2268566609999, 50.613919846000108 ], [ -119.226169092999982, 50.613877915000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "128227425", "BldgCostT": "81307451", "sL_LossRatio": "0.998495005162059", "sL_AssetLoss": "6877.1", "sL_BldgLoss": "6866.75", "sL_StrLoss": "6863", "sL_NStrLoss": "3.75", "sL_ContLoss": "10.35", "geom_point": "0101000020E61000009EB368AE11CD5DC09492274166514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.208633551999952, 50.663483429000081 ], [ -119.208323406999952, 50.663371989000062 ], [ -119.208054407999953, 50.663251800000097 ], [ -119.207813588999969, 50.663108047000073 ], [ -119.207621489999909, 50.662993396000068 ], [ -119.207165009000022, 50.662646994000077 ], [ -119.207129841999986, 50.66261553800009 ], [ -119.20690253399999, 50.662412244000109 ], [ -119.206286838999958, 50.661861500000079 ], [ -119.205914187999952, 50.661528170000068 ], [ -119.205546093999928, 50.661198916000046 ], [ -119.204542793999963, 50.660290723000038 ], [ -119.20404016399999, 50.659835707000113 ], [ -119.203848411999985, 50.659662140000073 ], [ -119.20224590399998, 50.658211387000051 ], [ -119.201658416, 50.657687350000103 ], [ -119.200991398999932, 50.657092363000082 ], [ -119.200730713999945, 50.656859801000046 ], [ -119.200018410999959, 50.656262123 ], [ -119.199601992999973, 50.655912705000048 ], [ -119.198655612999943, 50.655064201000108 ], [ -119.197589272999934, 50.654108153000045 ], [ -119.197355624999972, 50.653898645000041 ], [ -119.197206991999948, 50.65376539600009 ], [ -119.197104064999962, 50.65366149700008 ], [ -119.196626402999954, 50.653179387000044 ], [ -119.19650550199998, 50.653023564000101 ], [ -119.196347011999947, 50.65281930900008 ], [ -119.196161982999939, 50.652492998000071 ], [ -119.19519130399999, 50.651031201000073 ], [ -119.194327825999949, 50.649575004000063 ], [ -119.193994801999949, 50.649006806000031 ], [ -119.193896536999944, 50.648843653 ], [ -119.192074217999973, 50.64581810100006 ], [ -119.191783883999932, 50.645267811000032 ], [ -119.19153981299992, 50.644601300000026 ], [ -119.190947193999932, 50.642355708000082 ], [ -119.190923955999963, 50.642118838000059 ], [ -119.190878925999968, 50.64166087800011 ], [ -119.190866310999979, 50.641532188000035 ], [ -119.190860263999966, 50.640934145000067 ], [ -119.190859894999946, 50.640900999000102 ], [ -119.19085521599996, 50.640260125000097 ], [ -119.190853684999965, 50.640053199000072 ], [ -119.190761091999931, 50.639577295000024 ], [ -119.190674746999917, 50.63934309400004 ], [ -119.189757785999973, 50.636855631000046 ], [ -119.189581657999938, 50.636377895000031 ], [ -119.189085198999962, 50.634922409000083 ], [ -119.1890468199999, 50.634749504000084 ], [ -119.189002503999944, 50.634549990000018 ], [ -119.188996091999982, 50.634375985000084 ], [ -119.188959127999951, 50.633369177000091 ], [ -119.188907981999989, 50.631976306000055 ], [ -119.188880235999974, 50.631221107000052 ], [ -119.188865373999931, 50.630816540000048 ], [ -119.188864182999964, 50.630784486000039 ], [ -119.188888696999982, 50.629716493000096 ], [ -119.189188610999935, 50.628836898000031 ], [ -119.189770898999939, 50.627622583000083 ], [ -119.189890279999972, 50.627079400000113 ], [ -119.189884792999976, 50.626573711000049 ], [ -119.189809864999987, 50.626363457000103 ], [ -119.18965269, 50.625922292000027 ], [ -119.188640783, 50.624043735000093 ], [ -119.188459219999942, 50.623706598000098 ], [ -119.188061603999969, 50.623172287000074 ], [ -119.187583909999944, 50.622660203000095 ], [ -119.187068386999925, 50.622247701000077 ], [ -119.186496496999965, 50.621869700000147 ], [ -119.186446933999918, 50.621842931000131 ], [ -119.185883416999957, 50.621538714000039 ], [ -119.181548721999917, 50.619681618000115 ], [ -119.181626031999954, 50.619555309000148 ], [ -119.181637608, 50.619536392000015 ], [ -119.181677284999964, 50.619473168000049 ], [ -119.181740695999949, 50.61937210800005 ], [ -119.181738346999964, 50.619059306000068 ], [ -119.181734415999941, 50.618529278000025 ], [ -119.181731185999979, 50.618098085000057 ], [ -119.181723136999963, 50.617018906000034 ], [ -119.181722115999918, 50.616879101000102 ], [ -119.181682746999954, 50.616759307000038 ], [ -119.181639486999927, 50.616627715000021 ], [ -119.181510181999926, 50.616441366000089 ], [ -119.181975972999908, 50.61492900800004 ], [ -119.181942529999901, 50.614086177000097 ], [ -119.186112739999928, 50.614007970000046 ], [ -119.186209047999981, 50.613374157000088 ], [ -119.19183809499999, 50.613719347000057 ], [ -119.191295016999931, 50.617296103000051 ], [ -119.185665527999959, 50.616950887000023 ], [ -119.185866018999945, 50.615631583000038 ], [ -119.185477252999988, 50.615638880000056 ], [ -119.185502249999928, 50.61617807200011 ], [ -119.185308093999978, 50.616181716000021 ], [ -119.184966809999935, 50.618427213000082 ], [ -119.188423753999984, 50.618639251000097 ], [ -119.188368161999918, 50.619005189000077 ], [ -119.188426278999941, 50.619008753000124 ], [ -119.188014252999949, 50.62172074700004 ], [ -119.190676995999951, 50.62188399600003 ], [ -119.19064994699994, 50.622062089000117 ], [ -119.19103329699999, 50.62208558600004 ], [ -119.190699105999983, 50.624285983000085 ], [ -119.193408672999936, 50.624452025000075 ], [ -119.193279004999965, 50.625306071000111 ], [ -119.193057507999967, 50.625224201000037 ], [ -119.192603992999963, 50.624907994000061 ], [ -119.192052287999928, 50.624594711000036 ], [ -119.191419890999953, 50.624651710000101 ], [ -119.191210000999902, 50.624737091000071 ], [ -119.190684600999973, 50.624980695000083 ], [ -119.190692292999984, 50.62512451000002 ], [ -119.19125089899994, 50.625590201000101 ], [ -119.192079886999977, 50.626087290000058 ], [ -119.192382179, 50.626208292000072 ], [ -119.193016100999927, 50.626159886000075 ], [ -119.19371188799991, 50.625625793000083 ], [ -119.193589385999957, 50.625420793000075 ], [ -119.193469604999933, 50.625376519000035 ], [ -119.19364951099999, 50.624191553000095 ], [ -119.196065683999947, 50.624339555000049 ], [ -119.19621834799996, 50.623333609000021 ], [ -119.196308745999914, 50.623339146 ], [ -119.19634245499995, 50.623117012000087 ], [ -119.201932747999976, 50.623459235000013 ], [ -119.20224789599996, 50.621380743000081 ], [ -119.203190580999916, 50.621438423 ], [ -119.203227105999972, 50.621197484000085 ], [ -119.200427979, 50.621026189000126 ], [ -119.200970373999951, 50.617449404000112 ], [ -119.206437001999959, 50.617783876000047 ], [ -119.206438378999934, 50.617774785 ], [ -119.205783696999958, 50.617734743000042 ], [ -119.20603189499991, 50.616096664000047 ], [ -119.204479668, 50.616001711000052 ], [ -119.205021679999973, 50.612424885000088 ], [ -119.208113431999919, 50.612613994000071 ], [ -119.208130641999944, 50.612500356000076 ], [ -119.212352777999939, 50.612758464000088 ], [ -119.213759747999973, 50.61284443900005 ], [ -119.21372709799995, 50.613060190000105 ], [ -119.213934055999971, 50.613072834 ], [ -119.213392743999975, 50.616649700999986 ], [ -119.213241675999882, 50.616640471000082 ], [ -119.213195982999963, 50.61694236500005 ], [ -119.214616103999958, 50.61702912300008 ], [ -119.214566867999935, 50.617354489000014 ], [ -119.214655823000029, 50.617359923000045 ], [ -119.21411451799996, 50.620936774000086 ], [ -119.213667166999969, 50.620909447000074 ], [ -119.21365260099995, 50.621005684000117 ], [ -119.211649624999936, 50.620883306000067 ], [ -119.211625214999984, 50.621044531000067 ], [ -119.209259043999964, 50.620899914000056 ], [ -119.208785360999968, 50.624027188000106 ], [ -119.207540833999971, 50.623951104000085 ], [ -119.207336169999977, 50.625301918000076 ], [ -119.202797379999978, 50.625024322000058 ], [ -119.20272897699995, 50.625475479000031 ], [ -119.205058937, 50.625618005000035 ], [ -119.205024026, 50.625848331000057 ], [ -119.20718984200002, 50.625980771000094 ], [ -119.207234934999917, 50.625683167000069 ], [ -119.212223297999941, 50.625988045000021 ], [ -119.212311729999968, 50.625403982000115 ], [ -119.21316361599996, 50.625456025000119 ], [ -119.213370057999938, 50.624092304000072 ], [ -119.215049959999973, 50.624194911000032 ], [ -119.215357278999988, 50.62216414300012 ], [ -119.215880842999965, 50.622196117000072 ], [ -119.21594057399993, 50.621801356000084 ], [ -119.220191680999974, 50.622060877000145 ], [ -119.221570903999961, 50.622145040000106 ], [ -119.221030088999953, 50.625721905000077 ], [ -119.220506481999962, 50.625689955000063 ], [ -119.22044678499995, 50.62608471699999 ], [ -119.218766799999983, 50.625982190000101 ], [ -119.218650743999945, 50.626749430000082 ], [ -119.218634215999955, 50.626858692000035 ], [ -119.218459608, 50.628012958000021 ], [ -119.217607667, 50.627960956000017 ], [ -119.217401335999952, 50.629324679000042 ], [ -119.212907184999949, 50.629050249000088 ], [ -119.212812656999944, 50.629674583000082 ], [ -119.20789312699999, 50.62937396600006 ], [ -119.207854136999984, 50.629631296000085 ], [ -119.20503204699996, 50.629458747000029 ], [ -119.205023706999981, 50.629513762000101 ], [ -119.199392581999987, 50.629169245000071 ], [ -119.199435870999977, 50.628883907000045 ], [ -119.198885685999954, 50.628850231000101 ], [ -119.19898483299994, 50.628196723000059 ], [ -119.196654758999927, 50.628054070000097 ], [ -119.196665054999968, 50.627986234000041 ], [ -119.195220468999977, 50.627897768000103 ], [ -119.195014455999967, 50.629254890000013 ], [ -119.194370655999961, 50.629215458000026 ], [ -119.194357031, 50.629305206000076 ], [ -119.191286702999918, 50.629117099000062 ], [ -119.190971774999952, 50.631190397000118 ], [ -119.192878963999988, 50.631307254000077 ], [ -119.192852638999966, 50.63148060300005 ], [ -119.193311960999921, 50.631508741000097 ], [ -119.192991325, 50.633620137000023 ], [ -119.193781394999959, 50.633668532000087 ], [ -119.193757564999956, 50.633825457000071 ], [ -119.193773505999971, 50.633826433000046 ], [ -119.193589529999912, 50.63503795900008 ], [ -119.193633292999934, 50.635040640000042 ], [ -119.193617779999954, 50.635142795000021 ], [ -119.19392369099999, 50.63516153100008 ], [ -119.19376606299997, 50.636199544000135 ], [ -119.196344985999957, 50.636357467000046 ], [ -119.19580199499994, 50.639934147000055 ], [ -119.194592881999981, 50.639860114000037 ], [ -119.194309530999945, 50.641725977000085 ], [ -119.193130875999927, 50.641653797000082 ], [ -119.193041642999972, 50.642241260000048 ], [ -119.193108706999936, 50.642245367000044 ], [ -119.193063525999918, 50.642542813000063 ], [ -119.196108931999916, 50.642729285000023 ], [ -119.195768085999987, 50.644974092000048 ], [ -119.196491575999943, 50.645018379000085 ], [ -119.196403090999965, 50.645601167000073 ], [ -119.198023466999956, 50.645700338000054 ], [ -119.197913597999928, 50.64642411200002 ], [ -119.200524737999956, 50.646583871000068 ], [ -119.200394797999962, 50.647440173000057 ], [ -119.201058281, 50.647480758000086 ], [ -119.200515528999944, 50.651057414000022 ], [ -119.199837722999987, 50.651015953000091 ], [ -119.199708891999947, 50.651864769000106 ], [ -119.200825594999969, 50.65193307300013 ], [ -119.200552575999907, 50.653732064000067 ], [ -119.20065912599992, 50.653738581000084 ], [ -119.200620885, 50.653990551000106 ], [ -119.204299626999912, 50.654215481000044 ], [ -119.20420392599999, 50.654846388000053 ], [ -119.207839958999955, 50.655068585000031 ], [ -119.207404255999919, 50.65794222900017 ], [ -119.208064849999971, 50.657982584000067 ], [ -119.208032405999958, 50.658196577000048 ], [ -119.208461251999935, 50.658222774000144 ], [ -119.208400687999983, 50.658622248000064 ], [ -119.208788969999944, 50.658645965000069 ], [ -119.208723499999948, 50.659077814000042 ], [ -119.209987390999984, 50.65915500400012 ], [ -119.210050338999963, 50.658739708000091 ], [ -119.214535379, 50.659013507000125 ], [ -119.214581745, 50.658707412000155 ], [ -119.215112740999984, 50.65873981600005 ], [ -119.21512072199999, 50.658687125000064 ], [ -119.215719397, 50.658723655000145 ], [ -119.216163439999931, 50.655791441000069 ], [ -119.216698829999956, 50.655824108000054 ], [ -119.216720822999946, 50.65567885400003 ], [ -119.217303963999925, 50.655714431000071 ], [ -119.222355401999934, 50.656022484000104 ], [ -119.222053498999941, 50.658017949000104 ], [ -119.222765926999969, 50.658061376000042 ], [ -119.222528134999948, 50.659633131000128 ], [ -119.225829237999974, 50.65983429500006 ], [ -119.225795244999958, 50.660059080000103 ], [ -119.226376337999952, 50.660094481000051 ], [ -119.226331870999942, 50.66038854500006 ], [ -119.229790548999944, 50.660599187000059 ], [ -119.229774549999973, 50.660705043000085 ], [ -119.230131544999949, 50.660726778000026 ], [ -119.230002083999949, 50.661583383000071 ], [ -119.230140003999949, 50.661591779000048 ], [ -119.2299940799999, 50.662557292000059 ], [ -119.231097340999938, 50.662624455000135 ], [ -119.231035955999971, 50.663030664000118 ], [ -119.231094969999987, 50.663034256000081 ], [ -119.231015704999948, 50.663558776000031 ], [ -119.230994072999962, 50.663559388000053 ], [ -119.230909847, 50.663491490000119 ], [ -119.227667717999964, 50.663520469000062 ], [ -119.226123484, 50.663532816000071 ], [ -119.222261796999973, 50.663507206000141 ], [ -119.217477986999938, 50.663475301000041 ], [ -119.217126020999956, 50.663507248000023 ], [ -119.21638089599999, 50.663494898000124 ], [ -119.216038, 50.663462420000059 ], [ -119.215477449999952, 50.663378611000041 ], [ -119.215140739999967, 50.663335483000061 ], [ -119.214927962999951, 50.663406344000116 ], [ -119.214648322999949, 50.663504310000071 ], [ -119.214352509999955, 50.663463987000057 ], [ -119.211935594999929, 50.663461717000089 ], [ -119.211099902999933, 50.663487406000044 ], [ -119.210276173999915, 50.66346977500011 ], [ -119.209618903999953, 50.663455712000108 ], [ -119.209435244999923, 50.663468663000089 ], [ -119.209264306999913, 50.663472334000097 ], [ -119.209257093999895, 50.663470769000085 ], [ -119.208633551999952, 50.663483429000081 ] ], [ [ -119.185892834999962, 50.615455123000061 ], [ -119.185948262999915, 50.615090377000044 ], [ -119.185875985999957, 50.615091734000018 ], [ -119.185892834999962, 50.615455123000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30158078", "BldgCostT": "19087410", "sL_LossRatio": "1", "sL_AssetLoss": "1822.2", "sL_BldgLoss": "1822.2", "sL_StrLoss": "1822.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BDD9F8355CD5DC00159BA48C24D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.190716620999936, 50.610933040000063 ], [ -119.190936981, 50.6094817090001 ], [ -119.190205006999975, 50.609436827000117 ], [ -119.190392128999974, 50.608204457000078 ], [ -119.18629588599994, 50.607953205000079 ], [ -119.186390552999953, 50.607806443000079 ], [ -119.186829108999945, 50.607490399000064 ], [ -119.187159643999962, 50.607361743000084 ], [ -119.187464275999901, 50.607301027000055 ], [ -119.187657828999988, 50.607303634000075 ], [ -119.188333053999898, 50.607312793000041 ], [ -119.188713867999979, 50.607395689000093 ], [ -119.192548653999921, 50.608608573000033 ], [ -119.193843004999934, 50.609017908000112 ], [ -119.194008714999924, 50.609044596000018 ], [ -119.194376790999925, 50.609103910000087 ], [ -119.194696278999942, 50.609101137000103 ], [ -119.194931385999922, 50.609099093000033 ], [ -119.19502084899996, 50.609093017000049 ], [ -119.196851395999929, 50.608968501000071 ], [ -119.197899418999967, 50.608819702000098 ], [ -119.198679488999929, 50.608611213000074 ], [ -119.199998489999956, 50.608505209000036 ], [ -119.200337097000016, 50.608477997000143 ], [ -119.200611808999952, 50.608539989000093 ], [ -119.200969372999964, 50.60872879500009 ], [ -119.200986188999977, 50.608740857000079 ], [ -119.20153050299993, 50.609131392000101 ], [ -119.20163225899995, 50.609163959000064 ], [ -119.201851524999924, 50.609234105000084 ], [ -119.202290630999954, 50.609270006000017 ], [ -119.202466303999984, 50.609253702000061 ], [ -119.202785289999937, 50.609173003000102 ], [ -119.203152968999959, 50.609042090000045 ], [ -119.20361685599994, 50.608876946000038 ], [ -119.20375901599999, 50.60882633000007 ], [ -119.203791109999941, 50.608814894000027 ], [ -119.205306818999958, 50.607968990000074 ], [ -119.205865898999932, 50.607746900000095 ], [ -119.20632818099989, 50.607648003000065 ], [ -119.206804990999927, 50.607613109000106 ], [ -119.207250206, 50.607158387000062 ], [ -119.207452301999936, 50.606864800000089 ], [ -119.20755014799991, 50.606652752000038 ], [ -119.207446057000013, 50.607340054000112 ], [ -119.210356521999955, 50.607518034000066 ], [ -119.210388511999966, 50.607306716000046 ], [ -119.210242473, 50.607297787000036 ], [ -119.210566505999907, 50.605157245000051 ], [ -119.20894107899997, 50.605057854000052 ], [ -119.208949682999929, 50.605001028000061 ], [ -119.208327761999925, 50.604962993000051 ], [ -119.208371007999943, 50.604867788000085 ], [ -119.208972613999975, 50.604317881000064 ], [ -119.209606018999978, 50.603323304000057 ], [ -119.21011749499992, 50.602646108000066 ], [ -119.210288607999985, 50.60233170300009 ], [ -119.210440277999922, 50.601939294000047 ], [ -119.210594090999962, 50.601153426000046 ], [ -119.210728284999959, 50.600467789000049 ], [ -119.210991401999962, 50.600004513000044 ], [ -119.211085652999941, 50.599838533000103 ], [ -119.211109694999948, 50.599796217000097 ], [ -119.211145410999933, 50.599297489000065 ], [ -119.211284694999932, 50.599080394000033 ], [ -119.211601990999938, 50.598869702000066 ], [ -119.211846181999974, 50.598783233000084 ], [ -119.212265119, 50.598634908000108 ], [ -119.214336895999921, 50.598567513000027 ], [ -119.214832386999959, 50.599572514000137 ], [ -119.214803780999929, 50.59999681500004 ], [ -119.214792387000031, 50.600165710000077 ], [ -119.214764007999989, 50.600278306000071 ], [ -119.214124696999988, 50.602814392000077 ], [ -119.214163821999989, 50.602997308000148 ], [ -119.214262419999926, 50.603143198000055 ], [ -119.214337949999916, 50.603206739 ], [ -119.214770103999967, 50.603570393000034 ], [ -119.214864085999977, 50.603793609000071 ], [ -119.214862596999964, 50.604010096000053 ], [ -119.214631015999956, 50.604771197000041 ], [ -119.214725011999974, 50.605294995000087 ], [ -119.218023826999953, 50.605307105000044 ], [ -119.217984056999953, 50.605570123000085 ], [ -119.218766170999942, 50.605617886000047 ], [ -119.218225333999939, 50.609194807000065 ], [ -119.218161858999977, 50.609190932000033 ], [ -119.218069860999975, 50.609799309000074 ], [ -119.21736318799999, 50.609756154000074 ], [ -119.217302046999976, 50.610160427000039 ], [ -119.21729092899993, 50.610159747000083 ], [ -119.217186183, 50.610852328000114 ], [ -119.214772988, 50.610704923000114 ], [ -119.214558037999922, 50.612125585000094 ], [ -119.213492897999984, 50.612060506000041 ], [ -119.208929017999964, 50.611781542000088 ], [ -119.209002498999936, 50.611296293000052 ], [ -119.206284567999916, 50.611130070000051 ], [ -119.206322251999921, 50.610881311000092 ], [ -119.204735335999914, 50.610784228000064 ], [ -119.204841004999977, 50.61008683200005 ], [ -119.204504232999938, 50.610066226000079 ], [ -119.2044869899999, 50.610180019000062 ], [ -119.201943892999921, 50.610024383000088 ], [ -119.201800417999934, 50.610970879000078 ], [ -119.20163421399999, 50.610960705000089 ], [ -119.201599819999927, 50.611187582000078 ], [ -119.196407353999945, 50.610869616000059 ], [ -119.196345396999959, 50.611278002000077 ], [ -119.190716620999936, 50.610933040000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1802834", "BldgCostT": "1243334", "sL_LossRatio": "1", "sL_AssetLoss": "77.3", "sL_BldgLoss": "77.3", "sL_StrLoss": "77.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7C612B578CE5DC021A87DE7D54E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.226831553999929, 50.61411357900009 ], [ -119.22818954399996, 50.614196380000052 ], [ -119.228016648, 50.617795703000084 ], [ -119.225682571999968, 50.617653384000072 ], [ -119.223866959999938, 50.617542644000139 ], [ -119.224407449999944, 50.613965731000086 ], [ -119.226831553999929, 50.61411357900009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9315584", "BldgCostT": "5743334", "sL_LossRatio": "0.987026379694621", "sL_AssetLoss": "300.61", "sL_BldgLoss": "296.71", "sL_StrLoss": "295.3", "sL_NStrLoss": "1.41", "sL_ContLoss": "3.9", "geom_point": "0101000020E6100000291066A8C4CC5DC08143030C26514940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.197142180999961, 50.636744867000104 ], [ -119.197194087999932, 50.636402895000103 ], [ -119.195673956999926, 50.636309827000055 ], [ -119.195712309999976, 50.636057206000018 ], [ -119.195586872999968, 50.636049526000065 ], [ -119.196129834999979, 50.632472830000054 ], [ -119.196711856999968, 50.632508466000111 ], [ -119.196996100999939, 50.630635645000069 ], [ -119.202627390999936, 50.630980282000117 ], [ -119.202253204, 50.633447718000077 ], [ -119.203316639999969, 50.633512768000053 ], [ -119.202774237999932, 50.637089495000048 ], [ -119.197142180999961, 50.636744867000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "253651062", "BldgCostT": "166573191", "sL_LossRatio": "0.999678583158951", "sL_AssetLoss": "11231.521", "sL_BldgLoss": "11227.911", "sL_StrLoss": "11226.6", "sL_NStrLoss": "1.311", "sL_ContLoss": "3.61", "geom_point": "0101000020E6100000D5CA20EB27CC5DC04110AD36FB524940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.18083074799992, 50.663403932000065 ], [ -119.180935391999981, 50.658474984000101 ], [ -119.185455416999943, 50.658752112000059 ], [ -119.185394786999964, 50.659150656000122 ], [ -119.186897897999984, 50.659242773000095 ], [ -119.186884389999975, 50.659331593000097 ], [ -119.188749538999929, 50.659445867000066 ], [ -119.188760488999918, 50.659373860000144 ], [ -119.18828251, 50.659344578000137 ], [ -119.18839761199996, 50.658587642000057 ], [ -119.188388465999964, 50.658587082000082 ], [ -119.188932273, 50.655010518000019 ], [ -119.189670070999966, 50.655055716000049 ], [ -119.189685438999973, 50.654954633000102 ], [ -119.187155981999965, 50.65479965600008 ], [ -119.18719546799997, 50.654540003000108 ], [ -119.186936793999948, 50.654524150000107 ], [ -119.186958448999974, 50.654381754000035 ], [ -119.186651493999989, 50.654362942000056 ], [ -119.186784191999934, 50.653490388000058 ], [ -119.186633353, 50.6534811430001 ], [ -119.186761567999952, 50.652638066000087 ], [ -119.186459306999922, 50.652619541000078 ], [ -119.18652284299999, 50.652201762000047 ], [ -119.18640663399999, 50.652194640000111 ], [ -119.186472841999958, 50.651759282000064 ], [ -119.186039651999948, 50.651732731000045 ], [ -119.18658356199991, 50.648156148000062 ], [ -119.186832608999921, 50.648171413000085 ], [ -119.186911276999936, 50.647654054000085 ], [ -119.18754807099999, 50.647693083000036 ], [ -119.18756905399999, 50.647555069000099 ], [ -119.187702884999936, 50.647563271000074 ], [ -119.187743461999972, 50.647296372000014 ], [ -119.188423318000019, 50.647338036000107 ], [ -119.188454139999962, 50.647135288000058 ], [ -119.189105951999977, 50.647175229000034 ], [ -119.189109208999923, 50.647153804000069 ], [ -119.190009541, 50.647208967000068 ], [ -119.19014221099998, 50.646336025000018 ], [ -119.190601648999973, 50.646364172000077 ], [ -119.190624971999966, 50.646210694000061 ], [ -119.18989297399996, 50.646165848000052 ], [ -119.189915454999934, 50.646017927000059 ], [ -119.18928556399996, 50.645979332000081 ], [ -119.18933951299995, 50.645624393000048 ], [ -119.187991552000014, 50.645541789000127 ], [ -119.187863512999968, 50.646384013000059 ], [ -119.182230405999974, 50.646038636000064 ], [ -119.182647863999946, 50.643294789000073 ], [ -119.181120312999937, 50.643201082000068 ], [ -119.181118053999953, 50.640896018000078 ], [ -119.181120340999911, 50.640800825000113 ], [ -119.181227565999947, 50.638057801000045 ], [ -119.181377826999963, 50.634214541000048 ], [ -119.181419759999983, 50.630649576000067 ], [ -119.183877952999936, 50.630800401000037 ], [ -119.183825558999942, 50.631144952000106 ], [ -119.184041470999929, 50.631158197000083 ], [ -119.183762724999909, 50.632991266000033 ], [ -119.184103995999948, 50.633012199000092 ], [ -119.183778176999922, 50.635154733000078 ], [ -119.183563866999975, 50.636563882000068 ], [ -119.184628032999925, 50.636629152000054 ], [ -119.184793244999923, 50.635542672000021 ], [ -119.185041637999987, 50.633909079000013 ], [ -119.185434030999929, 50.633933144000096 ], [ -119.185435118999948, 50.63392598800008 ], [ -119.18554208299993, 50.633932548000089 ], [ -119.185851496999931, 50.63189731100006 ], [ -119.18518678699995, 50.63185654500009 ], [ -119.185224811999916, 50.631606439000102 ], [ -119.184782891999944, 50.631579335000019 ], [ -119.184833651999966, 50.631245477000064 ], [ -119.184307799999928, 50.631213223000081 ], [ -119.18485160099999, 50.627636561000095 ], [ -119.185012576999952, 50.627646435000059 ], [ -119.185039100999958, 50.627471964000044 ], [ -119.18533079299999, 50.627489856000096 ], [ -119.185374602, 50.627201672000083 ], [ -119.185617407999985, 50.627216564000037 ], [ -119.185655125999943, 50.626968432000098 ], [ -119.183035507999989, 50.627017564 ], [ -119.182998040999962, 50.626208775000102 ], [ -119.183421868999929, 50.626200830000087 ], [ -119.183409378999912, 50.625931234000042 ], [ -119.183833202999921, 50.625923288000095 ], [ -119.1838207119999, 50.625653692000121 ], [ -119.184244533999973, 50.625645743000057 ], [ -119.184232037999948, 50.625376148000036 ], [ -119.184940565999966, 50.625362857000013 ], [ -119.184328904999916, 50.62532533500007 ], [ -119.184774407999967, 50.62239481400011 ], [ -119.182252740999971, 50.622240083000079 ], [ -119.182278585999896, 50.62207012700005 ], [ -119.181531743, 50.622024290000127 ], [ -119.181564307999949, 50.622727844000117 ], [ -119.181512899999973, 50.622728807000037 ], [ -119.181548721999917, 50.619681618000115 ], [ -119.185883416999957, 50.621538714000039 ], [ -119.186446933999918, 50.621842931000131 ], [ -119.186496496999965, 50.621869700000147 ], [ -119.187068386999925, 50.622247701000077 ], [ -119.187583909999944, 50.622660203000095 ], [ -119.188061603999969, 50.623172287000074 ], [ -119.188459219999942, 50.623706598000098 ], [ -119.188640783, 50.624043735000093 ], [ -119.18965269, 50.625922292000027 ], [ -119.189809864999987, 50.626363457000103 ], [ -119.189884792999976, 50.626573711000049 ], [ -119.189890279999972, 50.627079400000113 ], [ -119.189770898999939, 50.627622583000083 ], [ -119.189188610999935, 50.628836898000031 ], [ -119.188888696999982, 50.629716493000096 ], [ -119.188864182999964, 50.630784486000039 ], [ -119.188865373999931, 50.630816540000048 ], [ -119.188880235999974, 50.631221107000052 ], [ -119.188907981999989, 50.631976306000055 ], [ -119.188959127999951, 50.633369177000091 ], [ -119.188996091999982, 50.634375985000084 ], [ -119.189002503999944, 50.634549990000018 ], [ -119.1890468199999, 50.634749504000084 ], [ -119.189085198999962, 50.634922409000083 ], [ -119.189581657999938, 50.636377895000031 ], [ -119.189757785999973, 50.636855631000046 ], [ -119.190674746999917, 50.63934309400004 ], [ -119.190761091999931, 50.639577295000024 ], [ -119.190853684999965, 50.640053199000072 ], [ -119.19085521599996, 50.640260125000097 ], [ -119.190859894999946, 50.640900999000102 ], [ -119.190860263999966, 50.640934145000067 ], [ -119.190866310999979, 50.641532188000035 ], [ -119.190878925999968, 50.64166087800011 ], [ -119.190923955999963, 50.642118838000059 ], [ -119.190947193999932, 50.642355708000082 ], [ -119.19153981299992, 50.644601300000026 ], [ -119.191783883999932, 50.645267811000032 ], [ -119.192074217999973, 50.64581810100006 ], [ -119.193896536999944, 50.648843653 ], [ -119.193994801999949, 50.649006806000031 ], [ -119.194327825999949, 50.649575004000063 ], [ -119.19519130399999, 50.651031201000073 ], [ -119.196161982999939, 50.652492998000071 ], [ -119.196347011999947, 50.65281930900008 ], [ -119.19650550199998, 50.653023564000101 ], [ -119.196626402999954, 50.653179387000044 ], [ -119.197104064999962, 50.65366149700008 ], [ -119.197206991999948, 50.65376539600009 ], [ -119.197355624999972, 50.653898645000041 ], [ -119.197589272999934, 50.654108153000045 ], [ -119.198655612999943, 50.655064201000108 ], [ -119.199601992999973, 50.655912705000048 ], [ -119.200018410999959, 50.656262123 ], [ -119.200730713999945, 50.656859801000046 ], [ -119.200991398999932, 50.657092363000082 ], [ -119.201658416, 50.657687350000103 ], [ -119.20224590399998, 50.658211387000051 ], [ -119.203848411999985, 50.659662140000073 ], [ -119.20404016399999, 50.659835707000113 ], [ -119.204542793999963, 50.660290723000038 ], [ -119.205546093999928, 50.661198916000046 ], [ -119.205914187999952, 50.661528170000068 ], [ -119.206286838999958, 50.661861500000079 ], [ -119.20690253399999, 50.662412244000109 ], [ -119.207129841999986, 50.66261553800009 ], [ -119.207165009000022, 50.662646994000077 ], [ -119.207621489999909, 50.662993396000068 ], [ -119.207813588999969, 50.663108047000073 ], [ -119.208054407999953, 50.663251800000097 ], [ -119.208323406999952, 50.663371989000062 ], [ -119.208633551999952, 50.663483429000081 ], [ -119.208455661999949, 50.663458053000099 ], [ -119.208352297999951, 50.6634499930001 ], [ -119.208232911999986, 50.663434974000012 ], [ -119.208218976999959, 50.663433206000072 ], [ -119.20788893799994, 50.663392407000131 ], [ -119.207847834999953, 50.663387325000024 ], [ -119.207838996999968, 50.663387599000046 ], [ -119.207831425000023, 50.663385284000093 ], [ -119.18658781299996, 50.66395656600011 ], [ -119.18532146599992, 50.66393734400004 ], [ -119.181735953999947, 50.664007046000094 ], [ -119.18082643299995, 50.66403054400012 ], [ -119.18083074799992, 50.663403932000065 ] ], [ [ -119.186311631999942, 50.626749145000048 ], [ -119.186444600999948, 50.62587429200002 ], [ -119.185952331999957, 50.62588353200006 ], [ -119.185991573999956, 50.626729515000058 ], [ -119.186311631999942, 50.626749145000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70560084", "BldgCostT": "47453334", "sL_LossRatio": "0.99882220796496", "sL_AssetLoss": "5315.03", "sL_BldgLoss": "5308.77", "sL_StrLoss": "5306.5", "sL_NStrLoss": "2.27", "sL_ContLoss": "6.26", "geom_point": "0101000020E610000024734DFDD3CD5DC06F609B22FA584940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.215912580999941, 50.705866882000102 ], [ -119.215912213999971, 50.705444262000093 ], [ -119.215911799999915, 50.704985433000068 ], [ -119.215910532999928, 50.703546286000083 ], [ -119.215910224, 50.70320429100007 ], [ -119.215908879999986, 50.701676321000093 ], [ -119.21590834199999, 50.701064988000084 ], [ -119.215907424999955, 50.70000380900008 ], [ -119.215907292999958, 50.699884398000115 ], [ -119.215900891000018, 50.697719081000045 ], [ -119.215898580999962, 50.696936224000083 ], [ -119.215896293999933, 50.696162888000053 ], [ -119.215888609000032, 50.693581659000074 ], [ -119.215885714999942, 50.692591795000041 ], [ -119.214764478999953, 50.692610901000073 ], [ -119.214606264999929, 50.692610242000114 ], [ -119.212496217999941, 50.692601570000143 ], [ -119.21216229399991, 50.692600196000029 ], [ -119.211419238999909, 50.692597058000075 ], [ -119.211221211999927, 50.692596248 ], [ -119.210477392999934, 50.69259309800006 ], [ -119.210159465999965, 50.692592176000062 ], [ -119.209055139999947, 50.692589007000016 ], [ -119.206534425999962, 50.69258169700003 ], [ -119.205146268999954, 50.692577659000065 ], [ -119.204610808999959, 50.692576090000067 ], [ -119.2037046, 50.692576046000042 ], [ -119.202732594999986, 50.692575990000137 ], [ -119.201968980999965, 50.692625421000123 ], [ -119.201728184999965, 50.69264099400008 ], [ -119.201135507999979, 50.692836712000052 ], [ -119.201211656999973, 50.692335380000081 ], [ -119.200379777999927, 50.692284551000043 ], [ -119.20047084, 50.691685096000114 ], [ -119.197910043, 50.691528582000053 ], [ -119.197995614999968, 50.690965465000048 ], [ -119.197920681999932, 50.690960884000049 ], [ -119.198464120999958, 50.687384411000032 ], [ -119.202069947999945, 50.687604781000076 ], [ -119.202238276999964, 50.686496271000074 ], [ -119.20182633099995, 50.686471101000095 ], [ -119.201953427999939, 50.685634134000054 ], [ -119.201879290999926, 50.685629604000049 ], [ -119.20200930299994, 50.684773417000066 ], [ -119.200324599999959, 50.684670464000078 ], [ -119.200614539999975, 50.682761436000078 ], [ -119.199669111999981, 50.682703649000089 ], [ -119.200212312999895, 50.679127132000126 ], [ -119.204151149999959, 50.679367832000054 ], [ -119.204174934999983, 50.679211122000041 ], [ -119.209812370999913, 50.679555377000106 ], [ -119.209269929999934, 50.683131939000077 ], [ -119.209132365999949, 50.683123542000089 ], [ -119.209132193999963, 50.683124672000055 ], [ -119.211029180999958, 50.683240450000071 ], [ -119.210713287999951, 50.685323540000084 ], [ -119.210486792, 50.686817002000055 ], [ -119.210388522999921, 50.686811006000092 ], [ -119.210365195999913, 50.686964805000102 ], [ -119.208377196999948, 50.686843470000092 ], [ -119.208268091999969, 50.687562616000072 ], [ -119.209393442999925, 50.687631304 ], [ -119.20931945299999, 50.688119069000102 ], [ -119.20949766, 50.688129945000085 ], [ -119.209638043999959, 50.687204465000093 ], [ -119.21239389699997, 50.687372622000112 ], [ -119.212593879999957, 50.68605363100005 ], [ -119.212963922999947, 50.686076205000099 ], [ -119.212993071999961, 50.685883940000032 ], [ -119.21821907799989, 50.686202613000034 ], [ -119.218242270999966, 50.686049512000125 ], [ -119.215582966999946, 50.685887383000093 ], [ -119.215641169999969, 50.685503315000034 ], [ -119.215328984999957, 50.685484278000104 ], [ -119.215353492999924, 50.68532256600011 ], [ -119.215579024999968, 50.683834324000038 ], [ -119.214461270999948, 50.683766156000047 ], [ -119.214540259, 50.683245002000042 ], [ -119.214244301999898, 50.683226951000044 ], [ -119.214786347999947, 50.679650366000054 ], [ -119.21509094399994, 50.67966894400017 ], [ -119.215135247999925, 50.679376573000106 ], [ -119.217321835999954, 50.679509916 ], [ -119.217283206999952, 50.678690505000105 ], [ -119.217606996999933, 50.679521047000037 ], [ -119.217528812999916, 50.679522536000107 ], [ -119.217609494999948, 50.679527455000056 ], [ -119.218205475999966, 50.681056097000031 ], [ -119.218286012999926, 50.681240694000074 ], [ -119.218816668999978, 50.682456778000102 ], [ -119.219342660999956, 50.683662149000035 ], [ -119.219516989999974, 50.684061637000056 ], [ -119.220109076999975, 50.685327688000044 ], [ -119.220641091999937, 50.686313988000109 ], [ -119.220923026999927, 50.686669506000051 ], [ -119.221342178999919, 50.687114693000098 ], [ -119.221853492999983, 50.687542893000057 ], [ -119.221957061999916, 50.68761442000001 ], [ -119.222690712999963, 50.688120909000105 ], [ -119.224236597999919, 50.688873821000044 ], [ -119.224859275999933, 50.689177103000084 ], [ -119.22557260399999, 50.689524510000076 ], [ -119.226038617999933, 50.689801110000118 ], [ -119.226098229999934, 50.689844105000141 ], [ -119.22623112399998, 50.689940039000057 ], [ -119.22646189699995, 50.69010660100011 ], [ -119.227044500999909, 50.69076920200007 ], [ -119.22728239099996, 50.691171688000068 ], [ -119.227364923999986, 50.691425643000088 ], [ -119.227409602999913, 50.691562986000086 ], [ -119.227445962999965, 50.691971292000069 ], [ -119.227421672999967, 50.69258338300007 ], [ -119.227418459, 50.694088961 ], [ -119.227416664999964, 50.694917629000081 ], [ -119.227415448999949, 50.695484015000062 ], [ -119.227409289, 50.698345162000066 ], [ -119.227406429, 50.699675929000136 ], [ -119.227405979999972, 50.699880882000102 ], [ -119.227410479999946, 50.700979635000067 ], [ -119.227411375999907, 50.701204301000075 ], [ -119.227413314999964, 50.70167187600007 ], [ -119.227416357999928, 50.702418512000079 ], [ -119.227418460999985, 50.702930998000106 ], [ -119.227420347999967, 50.70338579400007 ], [ -119.227420853999945, 50.703515656000086 ], [ -119.227421969999938, 50.703892849000098 ], [ -119.227423662999939, 50.704467986000097 ], [ -119.227424143999926, 50.704630069000096 ], [ -119.226902012000011, 50.704598299000082 ], [ -119.226835699999981, 50.70503641300013 ], [ -119.226884010999967, 50.705039354000078 ], [ -119.226815199999962, 50.705493966000049 ], [ -119.227426811999919, 50.70553118100004 ], [ -119.227428139999915, 50.705979744000082 ], [ -119.227430678999937, 50.706836074000108 ], [ -119.227554167999969, 50.706969919000173 ], [ -119.227764032999929, 50.707078340000123 ], [ -119.228099299999926, 50.707148351000107 ], [ -119.227431053999922, 50.707143817000045 ], [ -119.227444195999936, 50.707997346000077 ], [ -119.227481001999934, 50.708243206000063 ], [ -119.227446853999965, 50.70837469100006 ], [ -119.227611410999941, 50.708650899000041 ], [ -119.227124978999939, 50.708790052000026 ], [ -119.22727192499994, 50.709069713000119 ], [ -119.227341433999925, 50.709362691000102 ], [ -119.227341598999928, 50.709449318000097 ], [ -119.227342783999973, 50.710109669000104 ], [ -119.227344113999905, 50.710874285000038 ], [ -119.227344473999935, 50.711072868000059 ], [ -119.227445772999914, 50.712088011000063 ], [ -119.227485510999941, 50.712539358000065 ], [ -119.227486574999929, 50.712549940000045 ], [ -119.227515601999926, 50.712843542000066 ], [ -119.227450699999963, 50.713004065000106 ], [ -119.227354240999944, 50.713829280000013 ], [ -119.227273051999973, 50.713942535000029 ], [ -119.22726478, 50.714401331000083 ], [ -119.226648482999934, 50.714400848000089 ], [ -119.225877374999968, 50.714402261000075 ], [ -119.225727256999946, 50.714402534000044 ], [ -119.224644797999986, 50.714405335000059 ], [ -119.224007419999964, 50.714406967000059 ], [ -119.221995919999983, 50.714412114000041 ], [ -119.22079163299999, 50.714415178000067 ], [ -119.220479820999984, 50.714415984000077 ], [ -119.219601482999963, 50.714418205000079 ], [ -119.21800042699999, 50.714422237000029 ], [ -119.215897031999972, 50.714427518000029 ], [ -119.215898612999979, 50.713728133000046 ], [ -119.215900746999949, 50.712792782000115 ], [ -119.215901345999939, 50.712522906000132 ], [ -119.215905304999978, 50.710792598000062 ], [ -119.21591366699991, 50.707136398000031 ], [ -119.215913232999966, 50.706595568000097 ], [ -119.215912580999941, 50.705866882000102 ] ], [ [ -119.220030307999963, 50.705748483 ], [ -119.220096766999987, 50.705309861000082 ], [ -119.21992062799994, 50.705299132000057 ], [ -119.219854168999987, 50.705737754000054 ], [ -119.220030307999963, 50.705748483 ] ], [ [ -119.223606114999953, 50.70372248700005 ], [ -119.223698822999921, 50.703110264000038 ], [ -119.223500166999941, 50.703098170000011 ], [ -119.22380908199996, 50.701058071000062 ], [ -119.223602211999932, 50.701045477000079 ], [ -119.223750688999957, 50.700064887000046 ], [ -119.223001359999927, 50.700019261000101 ], [ -119.223260429999982, 50.698308374000099 ], [ -119.220937841999955, 50.698166923000031 ], [ -119.220635195999932, 50.700164902000061 ], [ -119.220953789999953, 50.700184308000068 ], [ -119.220751645999968, 50.70151876900011 ], [ -119.22107078, 50.701538207000084 ], [ -119.221037538999937, 50.701757638000075 ], [ -119.22179037099994, 50.701803489000028 ], [ -119.221518951999954, 50.703595398000061 ], [ -119.223606114999953, 50.70372248700005 ] ], [ [ -119.220247081999972, 50.690104738000038 ], [ -119.22039897399992, 50.68910183400007 ], [ -119.219921637999931, 50.689072748000051 ], [ -119.219769733999925, 50.690075652000068 ], [ -119.220247081999972, 50.690104738000038 ] ], [ [ -119.218907727999948, 50.686876796000035 ], [ -119.218941463999926, 50.686654076000075 ], [ -119.218838030999947, 50.686647772000107 ], [ -119.218851825999977, 50.686556708000118 ], [ -119.218584054999951, 50.686540387000043 ], [ -119.218536520999947, 50.686854171000121 ], [ -119.218907727999948, 50.686876796000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15461834", "BldgCostT": "10663334", "sL_LossRatio": "1", "sL_AssetLoss": "832.7", "sL_BldgLoss": "832.7", "sL_StrLoss": "832.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016ED01254BCD5DC040F16B3DA6554940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.216847490999925, 50.67845618300003 ], [ -119.216834784999918, 50.678186596000074 ], [ -119.216410497999945, 50.678194668000124 ], [ -119.216397792999928, 50.677925080000087 ], [ -119.213852082999963, 50.67797348100008 ], [ -119.213839393999962, 50.677703893000107 ], [ -119.212142258999904, 50.677736130000049 ], [ -119.212104222999969, 50.676927363000097 ], [ -119.212528499999976, 50.676919307000048 ], [ -119.21250905299999, 50.676505862000099 ], [ -119.20865157799993, 50.676270410000022 ], [ -119.209036408999964, 50.673732930000078 ], [ -119.208616853999956, 50.673707314000076 ], [ -119.208768361999944, 50.672708283000091 ], [ -119.208323313999983, 50.672681107000052 ], [ -119.20886570499999, 50.66910450600006 ], [ -119.209586050999917, 50.669148490000111 ], [ -119.20960037499998, 50.669054022000076 ], [ -119.213309849999945, 50.66928044900002 ], [ -119.213593058999948, 50.667411475000101 ], [ -119.212553531999944, 50.667348035000046 ], [ -119.212657490999916, 50.666662053000032 ], [ -119.212339273999973, 50.666642630000105 ], [ -119.212461091999955, 50.665838804000018 ], [ -119.212286228, 50.665828131000104 ], [ -119.212333493, 50.665516241000041 ], [ -119.211059908999943, 50.665438497000032 ], [ -119.211061269999945, 50.665429519000014 ], [ -119.210687297999939, 50.665406687000079 ], [ -119.210792144999957, 50.664715001000076 ], [ -119.21018243, 50.664677774000083 ], [ -119.210196703999955, 50.664583617000083 ], [ -119.2092182199999, 50.664523869000092 ], [ -119.209108508999947, 50.665247484000105 ], [ -119.203472872999981, 50.664903189000015 ], [ -119.203476095999974, 50.664881955000055 ], [ -119.202614047999958, 50.664829265000144 ], [ -119.20266171499992, 50.664515166000086 ], [ -119.202167455, 50.664484953000063 ], [ -119.202187486999932, 50.664352967000085 ], [ -119.201121169999979, 50.664287777000041 ], [ -119.201093514999926, 50.66446997 ], [ -119.20089133299993, 50.664457608000085 ], [ -119.20088740599995, 50.664483474000079 ], [ -119.199050364999948, 50.664371138000064 ], [ -119.199048120999947, 50.664385916000093 ], [ -119.197464485999888, 50.664289051000083 ], [ -119.197322493999948, 50.665223953000094 ], [ -119.196749126999961, 50.665188876000094 ], [ -119.19672517399999, 50.665346566000039 ], [ -119.193327801999928, 50.665138667000043 ], [ -119.193292425999985, 50.665371445000154 ], [ -119.187656896999982, 50.665026351000073 ], [ -119.187685114999951, 50.664840828000131 ], [ -119.187231495999924, 50.664813039000151 ], [ -119.187253809999973, 50.664666340000039 ], [ -119.186494627999977, 50.664619825000067 ], [ -119.186095853999916, 50.664595391000056 ], [ -119.184982733999902, 50.664527177000068 ], [ -119.18498872899994, 50.66448778900007 ], [ -119.183692451999931, 50.66440833700009 ], [ -119.183503913999942, 50.665647168000085 ], [ -119.18327422199998, 50.665633088000121 ], [ -119.18323961399993, 50.665860473000045 ], [ -119.180851570999963, 50.66571406000007 ], [ -119.18082643299995, 50.66403054400012 ], [ -119.181735953999947, 50.664007046000094 ], [ -119.18532146599992, 50.66393734400004 ], [ -119.18658781299996, 50.66395656600011 ], [ -119.207831425000023, 50.663385284000093 ], [ -119.207838996999968, 50.663387599000046 ], [ -119.207847834999953, 50.663387325000024 ], [ -119.20788893799994, 50.663392407000131 ], [ -119.208218976999959, 50.663433206000072 ], [ -119.208232911999986, 50.663434974000012 ], [ -119.208352297999951, 50.6634499930001 ], [ -119.208455661999949, 50.663458053000099 ], [ -119.208633551999952, 50.663483429000081 ], [ -119.209257093999895, 50.663470769000085 ], [ -119.209264306999913, 50.663472334000097 ], [ -119.209435244999923, 50.663468663000089 ], [ -119.209618903999953, 50.663455712000108 ], [ -119.210276173999915, 50.66346977500011 ], [ -119.211099902999933, 50.663487406000044 ], [ -119.211935594999929, 50.663461717000089 ], [ -119.214352509999955, 50.663463987000057 ], [ -119.214648322999949, 50.663504310000071 ], [ -119.21484430299995, 50.663530997000109 ], [ -119.214993535999966, 50.663587433000089 ], [ -119.215285401999893, 50.663697789000061 ], [ -119.216365113999984, 50.664305092000099 ], [ -119.216120502999928, 50.664559109000024 ], [ -119.216043800999969, 50.66469879900005 ], [ -119.216045721999976, 50.664840388000087 ], [ -119.216051552999929, 50.66526320500008 ], [ -119.216057462999956, 50.665694815000073 ], [ -119.216069993999923, 50.666609912000084 ], [ -119.216064518999957, 50.666619866000062 ], [ -119.21601567299993, 50.666688065000102 ], [ -119.21598012199992, 50.66675980800008 ], [ -119.215957755, 50.666787024 ], [ -119.215892608, 50.666861706000155 ], [ -119.215964968999941, 50.667120568000051 ], [ -119.215994, 50.667224406000045 ], [ -119.216034805999968, 50.667799910000063 ], [ -119.216034619999931, 50.668151223000102 ], [ -119.21603415899996, 50.669159045000136 ], [ -119.216033340999914, 50.670886012000103 ], [ -119.216032599999934, 50.672576518000014 ], [ -119.216031907999962, 50.674062516000028 ], [ -119.216026761999942, 50.674565736000019 ], [ -119.216215178999974, 50.67595072000006 ], [ -119.217189321999939, 50.678449679000082 ], [ -119.216847490999925, 50.67845618300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "179505668", "BldgCostT": "115971668", "sL_LossRatio": "0.999409453182145", "sL_AssetLoss": "12632.36", "sL_BldgLoss": "12624.9", "sL_StrLoss": "12622.2", "sL_NStrLoss": "2.7", "sL_ContLoss": "7.46", "geom_point": "0101000020E6100000B5164593B4CE5DC07B91F05A15574940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.246804449999914, 50.693520085000067 ], [ -119.246842046999916, 50.692568017000085 ], [ -119.246280858999938, 50.692570846000059 ], [ -119.24570004, 50.692573767000098 ], [ -119.244413057999935, 50.692580235000058 ], [ -119.24388938499996, 50.692582860000115 ], [ -119.242476566999954, 50.692589944000062 ], [ -119.242147769999946, 50.69258981900002 ], [ -119.242020001999919, 50.692589768000083 ], [ -119.241283066999955, 50.69258950300015 ], [ -119.240730486, 50.692589278000085 ], [ -119.239668213999934, 50.692588885000056 ], [ -119.239245911999916, 50.69258871600001 ], [ -119.239130180999908, 50.692588649000072 ], [ -119.238946226999971, 50.692588595000132 ], [ -119.236274782999928, 50.69258750600013 ], [ -119.234853928999939, 50.692586900000045 ], [ -119.232686895999933, 50.692585910000076 ], [ -119.231553859999948, 50.692585384000068 ], [ -119.227421672999967, 50.69258338300007 ], [ -119.227445962999965, 50.691971292000069 ], [ -119.227409602999913, 50.691562986000086 ], [ -119.227364923999986, 50.691425643000088 ], [ -119.22728239099996, 50.691171688000068 ], [ -119.227044500999909, 50.69076920200007 ], [ -119.22646189699995, 50.69010660100011 ], [ -119.22623112399998, 50.689940039000057 ], [ -119.226098229999934, 50.689844105000141 ], [ -119.226038617999933, 50.689801110000118 ], [ -119.22557260399999, 50.689524510000076 ], [ -119.224859275999933, 50.689177103000084 ], [ -119.224236597999919, 50.688873821000044 ], [ -119.222690712999963, 50.688120909000105 ], [ -119.221957061999916, 50.68761442000001 ], [ -119.221853492999983, 50.687542893000057 ], [ -119.221342178999919, 50.687114693000098 ], [ -119.220923026999927, 50.686669506000051 ], [ -119.220641091999937, 50.686313988000109 ], [ -119.220109076999975, 50.685327688000044 ], [ -119.219516989999974, 50.684061637000056 ], [ -119.219342660999956, 50.683662149000035 ], [ -119.218816668999978, 50.682456778000102 ], [ -119.218286012999926, 50.681240694000074 ], [ -119.218205475999966, 50.681056097000031 ], [ -119.217609494999948, 50.679527455000056 ], [ -119.217747738999989, 50.679535883000042 ], [ -119.217746912999985, 50.679518384000062 ], [ -119.217606996999933, 50.679521047000037 ], [ -119.217283206999952, 50.678690505000105 ], [ -119.217271778999958, 50.678448109000101 ], [ -119.217189321999939, 50.678449679000082 ], [ -119.216215178999974, 50.67595072000006 ], [ -119.216026761999942, 50.674565736000019 ], [ -119.216031907999962, 50.674062516000028 ], [ -119.216032599999934, 50.672576518000014 ], [ -119.216033340999914, 50.670886012000103 ], [ -119.21603415899996, 50.669159045000136 ], [ -119.216034619999931, 50.668151223000102 ], [ -119.216034805999968, 50.667799910000063 ], [ -119.215994, 50.667224406000045 ], [ -119.215964968999941, 50.667120568000051 ], [ -119.215892608, 50.666861706000155 ], [ -119.215957755, 50.666787024 ], [ -119.21598012199992, 50.66675980800008 ], [ -119.21601567299993, 50.666688065000102 ], [ -119.216064518999957, 50.666619866000062 ], [ -119.216069993999923, 50.666609912000084 ], [ -119.216057462999956, 50.665694815000073 ], [ -119.216051552999929, 50.66526320500008 ], [ -119.216045721999976, 50.664840388000087 ], [ -119.216043800999969, 50.66469879900005 ], [ -119.216120502999928, 50.664559109000024 ], [ -119.216365113999984, 50.664305092000099 ], [ -119.215285401999893, 50.663697789000061 ], [ -119.214993535999966, 50.663587433000089 ], [ -119.21484430299995, 50.663530997000109 ], [ -119.214648322999949, 50.663504310000071 ], [ -119.214927962999951, 50.663406344000116 ], [ -119.215140739999967, 50.663335483000061 ], [ -119.215477449999952, 50.663378611000041 ], [ -119.216038, 50.663462420000059 ], [ -119.21638089599999, 50.663494898000124 ], [ -119.217126020999956, 50.663507248000023 ], [ -119.217477986999938, 50.663475301000041 ], [ -119.222261796999973, 50.663507206000141 ], [ -119.226123484, 50.663532816000071 ], [ -119.226148084, 50.663551402000124 ], [ -119.22623722499999, 50.663610816000102 ], [ -119.226574307999925, 50.663835483000085 ], [ -119.22713848799998, 50.664251606000093 ], [ -119.227524097999989, 50.664654096000127 ], [ -119.227549191999969, 50.664699208000108 ], [ -119.22763590299995, 50.664854894000086 ], [ -119.227690376999988, 50.66514625000012 ], [ -119.227691690999947, 50.665153402000108 ], [ -119.227700807999923, 50.666212499000054 ], [ -119.227698165999968, 50.667327259000025 ], [ -119.227696868999942, 50.667885231000071 ], [ -119.227696366999965, 50.668101182000029 ], [ -119.227692869999942, 50.669584290000046 ], [ -119.228358607999951, 50.669715102000019 ], [ -119.22882991299997, 50.669851996000077 ], [ -119.22919580699994, 50.67001868800002 ], [ -119.230196291999931, 50.670756402000052 ], [ -119.232774471999903, 50.67274988500008 ], [ -119.233375921999979, 50.673214914000084 ], [ -119.23495198699996, 50.674389217000112 ], [ -119.239032415999958, 50.676121703000099 ], [ -119.239026777999982, 50.676617041000029 ], [ -119.238544485999952, 50.676587726000079 ], [ -119.238331307999928, 50.677999487000122 ], [ -119.232693848999986, 50.677656672000097 ], [ -119.232707540999968, 50.677566076000048 ], [ -119.231964231999925, 50.677520852000043 ], [ -119.232070710999949, 50.676816374000111 ], [ -119.23163354799999, 50.676824748000072 ], [ -119.23162075799992, 50.676555163000103 ], [ -119.231196488999956, 50.676563289000036 ], [ -119.231183700999964, 50.676293704000109 ], [ -119.229486636999951, 50.676326193000079 ], [ -119.22947386, 50.67605660600006 ], [ -119.229049595000021, 50.676064725000131 ], [ -119.229036819999962, 50.67579513800009 ], [ -119.228612559999974, 50.675803255000119 ], [ -119.228599786999936, 50.675533670000071 ], [ -119.228175527999937, 50.67554178500005 ], [ -119.228149987, 50.67500261300011 ], [ -119.227725732999943, 50.67501072600006 ], [ -119.227712966999945, 50.674741140000016 ], [ -119.227288712999936, 50.674749252000069 ], [ -119.22723765899994, 50.673670908000133 ], [ -119.228036975999899, 50.673655623000045 ], [ -119.228090927999943, 50.673298852000087 ], [ -119.227643377, 50.673271602000099 ], [ -119.227649135999982, 50.673393210000071 ], [ -119.226800652999941, 50.673409431000046 ], [ -119.226889983999939, 50.675296534000069 ], [ -119.226041469000023, 50.67531275000006 ], [ -119.226066981999949, 50.675851923000089 ], [ -119.226491246999927, 50.675843815000086 ], [ -119.226567809999935, 50.677461331000139 ], [ -119.227416364999925, 50.677445112000058 ], [ -119.227505732999987, 50.679332213000123 ], [ -119.227930026999957, 50.679324099000034 ], [ -119.227955567999942, 50.67986327200007 ], [ -119.228379865999941, 50.67985515600008 ], [ -119.228430958999965, 50.680933500000087 ], [ -119.228855267999933, 50.68092538200009 ], [ -119.228868043999938, 50.68119496900006 ], [ -119.23056528299999, 50.681162487000087 ], [ -119.230526926999971, 50.680353731000089 ], [ -119.230951229999931, 50.680345607000049 ], [ -119.23092565499995, 50.67980643700006 ], [ -119.232198546999967, 50.679782056000136 ], [ -119.23223693099996, 50.680590810000091 ], [ -119.23308553899993, 50.680574549000028 ], [ -119.233098339999941, 50.680844133000051 ], [ -119.23352264499999, 50.68083599900006 ], [ -119.23354825200002, 50.681375168000045 ], [ -119.233972561999934, 50.681367034000068 ], [ -119.23398536799999, 50.68163661800002 ], [ -119.23440968099996, 50.681628482000079 ], [ -119.234422489999957, 50.681898066000045 ], [ -119.234755351999937, 50.681891682000064 ], [ -119.234918302999944, 50.680813228000055 ], [ -119.239048757999953, 50.681064328000069 ], [ -119.23904864, 50.681087510000033 ], [ -119.239046309999964, 50.681546044000143 ], [ -119.239045363999978, 50.681731695000032 ], [ -119.239027201999932, 50.685312089000085 ], [ -119.245933543999925, 50.685306582000109 ], [ -119.246259332999955, 50.68530633200006 ], [ -119.24996824599999, 50.685303171000044 ], [ -119.250171305999942, 50.685302995000022 ], [ -119.250173710999931, 50.685303658000102 ], [ -119.250290815999989, 50.685296906000026 ], [ -119.250389535999929, 50.685291226000082 ], [ -119.250472129999977, 50.685285101000026 ], [ -119.250621218999967, 50.685278317000055 ], [ -119.250786382999962, 50.685270797000051 ], [ -119.250590110999937, 50.685865304000124 ], [ -119.250575514999937, 50.686330419000036 ], [ -119.251134360999941, 50.686689857000133 ], [ -119.251201340999941, 50.686872918000077 ], [ -119.251178411999931, 50.68687909600002 ], [ -119.250874282999987, 50.687452604000086 ], [ -119.250796565999963, 50.687532298000129 ], [ -119.250667306999972, 50.6876647980001 ], [ -119.25053290799994, 50.687688196000053 ], [ -119.250534420999927, 50.688860366000071 ], [ -119.250535091999922, 50.689393977000066 ], [ -119.250536568999948, 50.690514888000088 ], [ -119.250536670999963, 50.690616586000019 ], [ -119.250537667999964, 50.690748568000068 ], [ -119.250538777999964, 50.690904547000081 ], [ -119.250539564999897, 50.691072338000033 ], [ -119.25054392199992, 50.691998456000064 ], [ -119.250544389999973, 50.692097319000077 ], [ -119.250546627999938, 50.692569875000061 ], [ -119.250541195999944, 50.693577517000037 ], [ -119.250537523999938, 50.694140304000058 ], [ -119.246840692999953, 50.694123600000125 ], [ -119.246789114999984, 50.693909311000063 ], [ -119.246804449999914, 50.693520085000067 ] ], [ [ -119.234159976999962, 50.689267442000144 ], [ -119.23441733599995, 50.687564593000047 ], [ -119.234267139999986, 50.687567474000083 ], [ -119.234279949999973, 50.687837059000024 ], [ -119.233006841999938, 50.687861465 ], [ -119.233032448999921, 50.688400633000143 ], [ -119.231334949999948, 50.68843315500007 ], [ -119.23134575499995, 50.688660828000145 ], [ -119.232686180999977, 50.688742361000038 ], [ -119.232650626999927, 50.688977549000121 ], [ -119.233447971999979, 50.689026040000051 ], [ -119.233418299999954, 50.689222341000082 ], [ -119.234159976999962, 50.689267442000144 ] ], [ [ -119.240392459999924, 50.687750632000125 ], [ -119.240201621999958, 50.689014462000046 ], [ -119.243348027999971, 50.689205567000094 ], [ -119.243319451999952, 50.689394888000024 ], [ -119.244852937999937, 50.689487994000089 ], [ -119.245163760999944, 50.68742811700011 ], [ -119.242136015999961, 50.68724426300011 ], [ -119.242044428999961, 50.687850980000107 ], [ -119.240392459999924, 50.687750632000125 ] ], [ [ -119.221735125999942, 50.683034470000045 ], [ -119.221731147999947, 50.682950260000105 ], [ -119.221718031999956, 50.682950510000076 ], [ -119.221705593999943, 50.683032671 ], [ -119.221735125999942, 50.683034470000045 ] ], [ [ -119.22168428499999, 50.672967452000073 ], [ -119.222532761999915, 50.672951269000109 ], [ -119.222456348999955, 50.671333746000109 ], [ -119.22330479599999, 50.671317558000091 ], [ -119.223279316999964, 50.670778383000076 ], [ -119.222855097999968, 50.670786479000114 ], [ -119.222843970999946, 50.670550994000102 ], [ -119.222418146999985, 50.670525046000108 ], [ -119.222430877999955, 50.670794572000027 ], [ -119.222006658999973, 50.670802664000092 ], [ -119.222019391999964, 50.671072251000055 ], [ -119.220746725999931, 50.671096518000056 ], [ -119.220734001999944, 50.670826930000047 ], [ -119.220262055999925, 50.670835926000088 ], [ -119.220259945, 50.67084987500013 ], [ -119.220594385999945, 50.670870262000065 ], [ -119.220354760999911, 50.672453138000037 ], [ -119.220386119999944, 50.672452541000027 ], [ -119.220398844999963, 50.672722129000064 ], [ -119.22167155299995, 50.672697865000053 ], [ -119.22168428499999, 50.672967452000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021673", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "189032118", "BldgCostT": "125390457", "sL_LossRatio": "0.999594200107493", "sL_AssetLoss": "10177.43", "sL_BldgLoss": "10173.3", "sL_StrLoss": "10171.8", "sL_NStrLoss": "1.5", "sL_ContLoss": "4.13", "geom_point": "0101000020E61000000CCA55A845CF5DC05C4F94219A594940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.227430678999937, 50.706836074000108 ], [ -119.227428139999915, 50.705979744000082 ], [ -119.227426811999919, 50.70553118100004 ], [ -119.230097923999921, 50.705693668000045 ], [ -119.23028452299999, 50.70446025500005 ], [ -119.229417979999937, 50.704407549000067 ], [ -119.229366432999953, 50.704748230000092 ], [ -119.227424143999926, 50.704630069000096 ], [ -119.227423662999939, 50.704467986000097 ], [ -119.227421969999938, 50.703892849000098 ], [ -119.227420853999945, 50.703515656000086 ], [ -119.227420347999967, 50.70338579400007 ], [ -119.227418460999985, 50.702930998000106 ], [ -119.227416357999928, 50.702418512000079 ], [ -119.227413314999964, 50.70167187600007 ], [ -119.227411375999907, 50.701204301000075 ], [ -119.227410479999946, 50.700979635000067 ], [ -119.227405979999972, 50.699880882000102 ], [ -119.227406429, 50.699675929000136 ], [ -119.227409289, 50.698345162000066 ], [ -119.227415448999949, 50.695484015000062 ], [ -119.227416664999964, 50.694917629000081 ], [ -119.227418459, 50.694088961 ], [ -119.227421672999967, 50.69258338300007 ], [ -119.231553859999948, 50.692585384000068 ], [ -119.232686895999933, 50.692585910000076 ], [ -119.234853928999939, 50.692586900000045 ], [ -119.236274782999928, 50.69258750600013 ], [ -119.238946226999971, 50.692588595000132 ], [ -119.239130180999908, 50.692588649000072 ], [ -119.239245911999916, 50.69258871600001 ], [ -119.239668213999934, 50.692588885000056 ], [ -119.240730486, 50.692589278000085 ], [ -119.241283066999955, 50.69258950300015 ], [ -119.242020001999919, 50.692589768000083 ], [ -119.242147769999946, 50.69258981900002 ], [ -119.242476566999954, 50.692589944000062 ], [ -119.24388938499996, 50.692582860000115 ], [ -119.244413057999935, 50.692580235000058 ], [ -119.24570004, 50.692573767000098 ], [ -119.246280858999938, 50.692570846000059 ], [ -119.246842046999916, 50.692568017000085 ], [ -119.246804449999914, 50.693520085000067 ], [ -119.246789114999984, 50.693909311000063 ], [ -119.246840692999953, 50.694123600000125 ], [ -119.250537523999938, 50.694140304000058 ], [ -119.250534, 50.694852103000095 ], [ -119.250529704999934, 50.695710906000031 ], [ -119.25052800899999, 50.695976890000097 ], [ -119.250485081999969, 50.696254900000056 ], [ -119.250217503999963, 50.69798839200012 ], [ -119.250245806999914, 50.698574793000049 ], [ -119.25039540599991, 50.699847207000047 ], [ -119.25039891599998, 50.699880794000073 ], [ -119.250399250999976, 50.699894632000081 ], [ -119.249263847999927, 50.699889650000031 ], [ -119.249263532999947, 50.699902653000031 ], [ -119.24926108199999, 50.700002255000037 ], [ -119.249253191999912, 50.700325702000065 ], [ -119.249123396999892, 50.700478399000083 ], [ -119.248957003999976, 50.700515209000088 ], [ -119.248051001999926, 50.700531581000085 ], [ -119.247277487999938, 50.700706595000035 ], [ -119.247170207999929, 50.700720675000042 ], [ -119.246863693999913, 50.700760889000044 ], [ -119.246290778999978, 50.700766792000117 ], [ -119.245140262999897, 50.700723986000057 ], [ -119.244944461, 50.700777099000099 ], [ -119.244902220999961, 50.700887334000086 ], [ -119.244901328999958, 50.701553190000048 ], [ -119.244906588999953, 50.701695930000028 ], [ -119.244926839999906, 50.702244111000049 ], [ -119.244936802999945, 50.702513827000132 ], [ -119.244957286, 50.703068029000057 ], [ -119.245034297999908, 50.703245959000064 ], [ -119.245098460999913, 50.703292462000043 ], [ -119.245149764999951, 50.70332966100009 ], [ -119.24514990099999, 50.703363608000068 ], [ -119.245152726999976, 50.703992921000072 ], [ -119.245156445999967, 50.70481994600005 ], [ -119.245162501999914, 50.70617217300002 ], [ -119.245162597, 50.706195410000063 ], [ -119.245164763999966, 50.706195432000115 ], [ -119.245490120999989, 50.706197265000071 ], [ -119.246227700999924, 50.706201393000107 ], [ -119.246450864999957, 50.705984538000052 ], [ -119.247027507, 50.705433135000057 ], [ -119.247033242, 50.705427625000027 ], [ -119.247027647999957, 50.70537752300006 ], [ -119.247033383999948, 50.703389818000076 ], [ -119.247037534999961, 50.702240030000013 ], [ -119.247038536999952, 50.701959918000085 ], [ -119.246082839999971, 50.701956085000063 ], [ -119.245986922, 50.701561982000044 ], [ -119.246116050999944, 50.701563006000136 ], [ -119.246977898999987, 50.701569971000012 ], [ -119.247112579999907, 50.70157105200007 ], [ -119.24874807199997, 50.701584233000077 ], [ -119.249130505999972, 50.701587315000054 ], [ -119.250441575999929, 50.701597846 ], [ -119.2504886299999, 50.702295509000116 ], [ -119.25049514600002, 50.702559045000037 ], [ -119.250516295999944, 50.703414289000108 ], [ -119.250514916999975, 50.704036805000051 ], [ -119.250516444999917, 50.704664334000029 ], [ -119.250517388999953, 50.705058391000073 ], [ -119.250517703999947, 50.705330137000054 ], [ -119.250518095999922, 50.705685592000151 ], [ -119.25052056299991, 50.706040697000134 ], [ -119.250523347999945, 50.706452907000049 ], [ -119.250528014999972, 50.707138967000027 ], [ -119.25052999799999, 50.707220299000078 ], [ -119.249788480999882, 50.707220444000086 ], [ -119.248321981999936, 50.707220732000046 ], [ -119.245857438999977, 50.707221143000055 ], [ -119.24526423599994, 50.707221780000033 ], [ -119.241840451999934, 50.707225468000054 ], [ -119.241340683999937, 50.707226716000015 ], [ -119.24133822099999, 50.707148970000119 ], [ -119.240854546999969, 50.70714757100005 ], [ -119.238994240999943, 50.707137558000056 ], [ -119.237971649999963, 50.707132038000076 ], [ -119.23771648899999, 50.707130651000085 ], [ -119.236859931999959, 50.707126009000042 ], [ -119.236172985999957, 50.70717001200007 ], [ -119.236087853999962, 50.707181544000036 ], [ -119.234498216999896, 50.70715811000013 ], [ -119.234429791999943, 50.707167843000029 ], [ -119.23379231899996, 50.707167265000116 ], [ -119.233310741999944, 50.707166812000011 ], [ -119.232588603999943, 50.707166131000058 ], [ -119.231279148999988, 50.707164910000095 ], [ -119.229982807999988, 50.707163662000013 ], [ -119.228099299999926, 50.707148351000107 ], [ -119.227764032999929, 50.707078340000123 ], [ -119.227554167999969, 50.706969919000173 ], [ -119.227430678999937, 50.706836074000108 ] ], [ [ -119.241270255999893, 50.70360730900007 ], [ -119.241308784999916, 50.703352187000021 ], [ -119.240966389999969, 50.703358772000101 ], [ -119.240953533999985, 50.703089190000107 ], [ -119.240529030999966, 50.703097354000093 ], [ -119.24051617799999, 50.70282777000007 ], [ -119.240091674999974, 50.70283593199999 ], [ -119.240040275999974, 50.701757602000065 ], [ -119.240889258999943, 50.701741279000011 ], [ -119.240876406999945, 50.701471696000127 ], [ -119.241177741999977, 50.701465901000041 ], [ -119.241658115999925, 50.698284922000113 ], [ -119.245316601999903, 50.698507024000044 ], [ -119.245369197999977, 50.698158524000078 ], [ -119.242524002999915, 50.697985806000112 ], [ -119.24268934399997, 50.696890690000089 ], [ -119.242165768999897, 50.696858898000059 ], [ -119.242191496999936, 50.696688496000036 ], [ -119.241845569999981, 50.696667489000092 ], [ -119.241945683999958, 50.696004445 ], [ -119.241773513999973, 50.695993990000055 ], [ -119.241886468999922, 50.695245892000081 ], [ -119.239315326999957, 50.695089722000041 ], [ -119.239293227999937, 50.695236025000071 ], [ -119.238454723999951, 50.695185082000094 ], [ -119.238234060999943, 50.696645747000048 ], [ -119.232594261999964, 50.696302935000098 ], [ -119.232721308999928, 50.69546266300005 ], [ -119.232409480999962, 50.695443701000094 ], [ -119.2321253329999, 50.697322885000126 ], [ -119.231992162999944, 50.697314786000085 ], [ -119.23176247899994, 50.698833631000056 ], [ -119.231778507999977, 50.698834605000059 ], [ -119.231736853999962, 50.6991100380001 ], [ -119.232535202999927, 50.699158585000077 ], [ -119.232442019999937, 50.699774816000108 ], [ -119.237394590999941, 50.700075853000037 ], [ -119.236914546000023, 50.703252493000043 ], [ -119.237024421999934, 50.703259169000049 ], [ -119.236861292999919, 50.704338572000061 ], [ -119.237340087999954, 50.704367663 ], [ -119.237315184999972, 50.70453245200008 ], [ -119.237556547999944, 50.704547116000036 ], [ -119.237558840999981, 50.704531943000063 ], [ -119.23777042199994, 50.704544797000047 ], [ -119.237846756999971, 50.704039648000098 ], [ -119.238678552999886, 50.704090178000087 ], [ -119.238764144999948, 50.703523668000095 ], [ -119.241166373999988, 50.703669563000055 ], [ -119.241176634999988, 50.703601624000051 ], [ -119.241270255999893, 50.70360730900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BC79893585C15DC0B04280C20F604940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.02549838399996, 50.750025960000045 ], [ -119.025547673999938, 50.750026019000046 ], [ -119.026425110999966, 50.750751192000088 ], [ -119.026626457999924, 50.750998724000112 ], [ -119.026615095999958, 50.751071545000094 ], [ -119.026269909999925, 50.751049939000062 ], [ -119.020970093999935, 50.750718065000058 ], [ -119.021079686999911, 50.750016247000069 ], [ -119.025085480999977, 50.750024841000062 ], [ -119.02549838399996, 50.750025960000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021686", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "36.4", "sL_BldgLoss": "36.4", "sL_StrLoss": "36.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004417929BBAC25DC029CDA455C6684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.04122433400002, 50.81733748400012 ], [ -119.046143900999937, 50.817644175000048 ], [ -119.04596406499995, 50.818798155000096 ], [ -119.045436423999917, 50.818891678000043 ], [ -119.04539946299991, 50.818898221000076 ], [ -119.043700487999914, 50.819199356000055 ], [ -119.042739879999928, 50.819369599000055 ], [ -119.041679, 50.81977409400011 ], [ -119.041404646999965, 50.819950092000113 ], [ -119.041015211999962, 50.820199904000042 ], [ -119.039960702999977, 50.820687448000058 ], [ -119.040421037999934, 50.817736131000096 ], [ -119.040490351999949, 50.817291708000077 ], [ -119.04122433400002, 50.81733748400012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021690", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "213.6", "sL_BldgLoss": "213.6", "sL_StrLoss": "213.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CC06F2AEFBF5DC0B5B1A757A9634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.995935329999938, 50.781987412000063 ], [ -118.995935599999953, 50.78198568900013 ], [ -118.99581618799999, 50.781978187000085 ], [ -118.994607987, 50.781902275000078 ], [ -118.994613382999901, 50.781867880000064 ], [ -118.994377682999954, 50.781853069000107 ], [ -118.994938467999958, 50.778277983000066 ], [ -118.996513147999949, 50.778376922000128 ], [ -118.99661612599995, 50.777720220000077 ], [ -118.99709305199994, 50.777750182000034 ], [ -118.9972874649999, 50.776510232000078 ], [ -118.997670160000013, 50.776534272000056 ], [ -118.997707257999977, 50.776297642000031 ], [ -118.9980587579999, 50.776319721000092 ], [ -118.998046889999941, 50.776041318000104 ], [ -118.998499414999941, 50.776033563000141 ], [ -118.998660103999967, 50.776030808000037 ], [ -118.998706446999932, 50.77573516300005 ], [ -118.999738764999947, 50.775799996000089 ], [ -118.999724810999979, 50.775472916000069 ], [ -119.001425713999964, 50.775443733000081 ], [ -119.0014455, 50.77590716400011 ], [ -119.00239444, 50.775966738000065 ], [ -119.00314965599992, 50.775953764000057 ], [ -119.003152242999974, 50.776014305000082 ], [ -119.00425846899995, 50.776083735 ], [ -119.004354424000013, 50.776089757000122 ], [ -119.004241109999938, 50.776813214000086 ], [ -119.003612902999961, 50.777291299000069 ], [ -119.003189812999949, 50.777972095000067 ], [ -119.002734801999964, 50.778285396000072 ], [ -119.001953499999956, 50.779279495000019 ], [ -119.000833398999987, 50.779929010000082 ], [ -118.999958680999981, 50.7807536010001 ], [ -118.99920729, 50.781098205000063 ], [ -118.998799309999924, 50.781142407000175 ], [ -118.997387573999973, 50.781525126000098 ], [ -118.997102497999919, 50.781602407000079 ], [ -118.996504607999924, 50.781909997000056 ], [ -118.996392124999929, 50.782016109000025 ], [ -118.995935329999938, 50.781987412000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006270E6BADDBD5DC0E21D437446674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.967601248999955, 50.804983323000108 ], [ -118.968752896999888, 50.80505592300009 ], [ -118.968784510999953, 50.806449296000046 ], [ -118.968785920999949, 50.806512008000027 ], [ -118.96660765199999, 50.806548696000043 ], [ -118.966071607999936, 50.806555326000101 ], [ -118.966000943999973, 50.808167983000061 ], [ -118.965995853999971, 50.808863050000113 ], [ -118.965990011999949, 50.809662117000101 ], [ -118.96495260099999, 50.809596700000085 ], [ -118.96551608299994, 50.80602187700007 ], [ -118.966049113999958, 50.806055490000034 ], [ -118.966156391000013, 50.805374791000119 ], [ -118.967525962999943, 50.805461145000045 ], [ -118.967601248999955, 50.804983323000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "126.9", "sL_BldgLoss": "126.9", "sL_StrLoss": "126.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ACD956F56AC25DC0C17DD3AACC624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.035233076999987, 50.769906881000068 ], [ -119.040880606999977, 50.770259632000091 ], [ -119.040323587999964, 50.773834981000071 ], [ -119.03467561099994, 50.773482203000114 ], [ -119.035233076999987, 50.769906881000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "41.7", "sL_BldgLoss": "41.7", "sL_StrLoss": "41.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000130E5A9B88BF5DC0D6F4C91FC6644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.994530059999946, 50.785715356000061 ], [ -118.994901730999956, 50.78573870700005 ], [ -118.994766607999964, 50.786706802 ], [ -118.994898709999958, 50.787837608000068 ], [ -118.994219695999959, 50.788549689000099 ], [ -118.993858807, 50.788736297000085 ], [ -118.99204561, 50.78913649600004 ], [ -118.991986490999977, 50.789165818000107 ], [ -118.991400428999953, 50.789128983000097 ], [ -118.990571045999928, 50.789076851000047 ], [ -118.991132224999916, 50.785501813000089 ], [ -118.994530059999946, 50.785715356000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.3", "sL_BldgLoss": "34.3", "sL_StrLoss": "34.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DA60768909C55DC0540750BEE6644940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.07907019000001, 50.789464848000115 ], [ -119.079058225999944, 50.78919524100008 ], [ -119.078632896, 50.789202824000036 ], [ -119.078620934999961, 50.788933217000107 ], [ -119.078195606999941, 50.788940798000063 ], [ -119.07818364799999, 50.788671191000063 ], [ -119.077332997999932, 50.788686348000056 ], [ -119.077273233999946, 50.787338312000053 ], [ -119.077698545999951, 50.787330734000136 ], [ -119.077686591999935, 50.787061127000094 ], [ -119.078962520999966, 50.78703838400002 ], [ -119.079010371999942, 50.788116813000087 ], [ -119.079435691999919, 50.788109229000099 ], [ -119.07944765699996, 50.788378836000028 ], [ -119.080298300999971, 50.788363663000098 ], [ -119.080339742999982, 50.789297061000063 ], [ -119.080346182999975, 50.789442090000094 ], [ -119.07985549199999, 50.789450845 ], [ -119.07907019000001, 50.789464848000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "126.9", "sL_BldgLoss": "126.9", "sL_StrLoss": "126.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A875D8893C25DC0EB2D5018B5614940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.037191609, 50.764700890000029 ], [ -119.037723170999953, 50.761289773000087 ], [ -119.038022499999926, 50.761216293000096 ], [ -119.038409017999967, 50.761290308000078 ], [ -119.039262788999949, 50.76200390300005 ], [ -119.039493716999985, 50.762089297000017 ], [ -119.040148014999957, 50.762149102000095 ], [ -119.042061817999965, 50.762116408000026 ], [ -119.042884433999944, 50.761446259000095 ], [ -119.04339520900001, 50.761478145000133 ], [ -119.042838500999935, 50.765053544000118 ], [ -119.037191609, 50.764700890000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.4", "sL_BldgLoss": "43.4", "sL_StrLoss": "43.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B06DEC136C15DC0546ABC95A1634940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.01669772299999, 50.778054704000063 ], [ -119.016704892999911, 50.777281406000071 ], [ -119.016753738999938, 50.77718200000011 ], [ -119.019961951999932, 50.777382926000051 ], [ -119.019932110999889, 50.777573875 ], [ -119.022770851999923, 50.777751583000075 ], [ -119.021791218999979, 50.778424999000045 ], [ -119.019767989999977, 50.779548698000077 ], [ -119.01806048899999, 50.779443302000097 ], [ -119.017335309999964, 50.77969820000007 ], [ -119.016381912999947, 50.778977608000048 ], [ -119.01630348899999, 50.778816700000078 ], [ -119.01669772299999, 50.778054704000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.7", "sL_BldgLoss": "41.7", "sL_StrLoss": "41.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000053F5E10FF5BD5DC00A0519BFF8684940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.968103535999902, 50.823000666000048 ], [ -118.968079104999973, 50.822419746000016 ], [ -118.967653444999939, 50.822426927000045 ], [ -118.967472085999987, 50.818112941000038 ], [ -118.967897706999906, 50.818105761000055 ], [ -118.96788637099999, 50.817836137000093 ], [ -118.968200476999982, 50.817830836000091 ], [ -118.968492651, 50.815976794000079 ], [ -118.968541569999942, 50.823011647000065 ], [ -118.968103535999902, 50.823000666000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "1", "sL_AssetLoss": "336", "sL_BldgLoss": "336", "sL_StrLoss": "336", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B51781A7AC55DC0ED7D68EE3A654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.078065919999972, 50.790846318000028 ], [ -119.078141036, 50.790361749000013 ], [ -119.078210256999924, 50.789915205000071 ], [ -119.078647191999949, 50.789942325000077 ], [ -119.078658338999958, 50.789870415000074 ], [ -119.078889566999976, 50.789884766000057 ], [ -119.082170035999965, 50.790088315000077 ], [ -119.082349113999953, 50.788932369000101 ], [ -119.08242955599998, 50.788413098000042 ], [ -119.087002453999929, 50.788696677000054 ], [ -119.087066060999959, 50.788285803000072 ], [ -119.092716314999976, 50.788635929000094 ], [ -119.092656237999933, 50.789024317000063 ], [ -119.097512289999983, 50.789324996000083 ], [ -119.097499829999919, 50.78940560700007 ], [ -119.097997079999942, 50.789436384000041 ], [ -119.097961323, 50.789667718000068 ], [ -119.097575992999936, 50.792160560000099 ], [ -119.097312302999953, 50.792154305000054 ], [ -119.097135306999974, 50.792150086000099 ], [ -119.096888263999958, 50.792066380000037 ], [ -119.095219213999897, 50.791500690000163 ], [ -119.094687611999944, 50.791527444000046 ], [ -119.093803311999949, 50.791571885000074 ], [ -119.092876408999985, 50.79148931000001 ], [ -119.092477058999947, 50.791500481000057 ], [ -119.091147806999956, 50.791537685 ], [ -119.090162522999933, 50.791385301000034 ], [ -119.089228292999977, 50.791131789000097 ], [ -119.088322009999942, 50.791147502000086 ], [ -119.08749193599999, 50.79133257900002 ], [ -119.086916811, 50.791460788000052 ], [ -119.085914987999942, 50.791587499000102 ], [ -119.085189084999953, 50.791888007000139 ], [ -119.084513684999962, 50.792026205000063 ], [ -119.084229280999978, 50.792151302000022 ], [ -119.083428914999928, 50.792503296000085 ], [ -119.082500412999977, 50.792682702000022 ], [ -119.081226809, 50.792749706000116 ], [ -119.0795217899999, 50.793004606000146 ], [ -119.078953718999912, 50.793334814000055 ], [ -119.077541909999923, 50.794155407000112 ], [ -119.076344324999965, 50.794547839000074 ], [ -119.074434591999974, 50.794429267000098 ], [ -119.074813821999925, 50.791984274000072 ], [ -119.07498914300001, 50.790853833000064 ], [ -119.07714215799993, 50.790987509000075 ], [ -119.078014738999983, 50.791041674000105 ], [ -119.078035436999954, 50.791042959000052 ], [ -119.078065919999972, 50.790846318000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "67.3", "sL_BldgLoss": "67.3", "sL_StrLoss": "67.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EC6F6479F2C85DC01D87EA7B47654940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.139193766999981, 50.789891976000092 ], [ -119.143345795999949, 50.790147328000074 ], [ -119.143111333999968, 50.791674264000072 ], [ -119.14259509099999, 50.791764096000115 ], [ -119.14150735299999, 50.792045850000086 ], [ -119.14057994700002, 50.792286074000046 ], [ -119.136986114999914, 50.793216803000057 ], [ -119.136894195999929, 50.793269009 ], [ -119.137367715999943, 50.790188016000045 ], [ -119.137416564999967, 50.789870154000035 ], [ -119.137681631999968, 50.78988646600007 ], [ -119.137694955999962, 50.789799760000058 ], [ -119.139193766999981, 50.789891976000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16602333", "BldgCostT": "10953333", "sL_LossRatio": "0.993963076491097", "sL_AssetLoss": "854.74", "sL_BldgLoss": "849.58", "sL_StrLoss": "847.7", "sL_NStrLoss": "1.88", "sL_ContLoss": "5.16", "geom_point": "0101000020E6100000E759E600C3BF5DC0BC2A481A79674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.991753002999957, 50.814279495000065 ], [ -118.99018819399997, 50.813900609000051 ], [ -118.989822802, 50.813970392000058 ], [ -118.989267709999979, 50.814285208000065 ], [ -118.988904702999932, 50.81410289300004 ], [ -118.988742380999952, 50.813628599000083 ], [ -118.988770381000023, 50.813251199000028 ], [ -118.988928287999926, 50.812608890000085 ], [ -118.989493591999988, 50.811547795000088 ], [ -118.989557923999925, 50.8110608040001 ], [ -118.98923271299995, 50.810751704000054 ], [ -118.988176405000019, 50.8103016990001 ], [ -118.987404586999958, 50.808840406000094 ], [ -118.986787997999969, 50.808364686000047 ], [ -118.986562485999968, 50.808013343000013 ], [ -118.987173210999956, 50.808051738000131 ], [ -118.98734381599999, 50.806965958000063 ], [ -118.988449993999978, 50.807050196000048 ], [ -118.989169187999934, 50.806947594000079 ], [ -118.989777617999906, 50.806550301000115 ], [ -118.989823756, 50.806401470000047 ], [ -118.989973979999931, 50.806398908000119 ], [ -118.989966951999989, 50.80623352300006 ], [ -118.990081416999942, 50.806127257000085 ], [ -118.990388027999956, 50.806122026000025 ], [ -118.990376601999955, 50.80585321500007 ], [ -118.990673567999934, 50.805577518000099 ], [ -118.990790608999987, 50.80557552000009 ], [ -118.990783465999925, 50.805407500000108 ], [ -118.991085941999955, 50.804761029000097 ], [ -118.991181716999932, 50.804759394000016 ], [ -118.9911738, 50.804573246000125 ], [ -118.991340454999914, 50.804217050000027 ], [ -118.992061302999957, 50.804204739000049 ], [ -118.99215925199999, 50.803580878000091 ], [ -118.996679007999916, 50.803864743000084 ], [ -118.996678632999974, 50.803855961000103 ], [ -118.997104117999953, 50.803848675000069 ], [ -118.997069623999963, 50.803039815000133 ], [ -118.996644146999941, 50.803047100000057 ], [ -118.996609662, 50.802238240000094 ], [ -118.997035130999961, 50.802230954000066 ], [ -118.997002496999968, 50.801465612000072 ], [ -118.999092184999895, 50.801300602000069 ], [ -119.001102886999888, 50.80086199700002 ], [ -119.00117913099993, 50.800810833000135 ], [ -119.001232210999916, 50.800809922000028 ], [ -119.00123076899996, 50.800776181000096 ], [ -119.001557100999918, 50.800557193000067 ], [ -119.001579410999966, 50.800534146000061 ], [ -119.001646141999984, 50.800533001000112 ], [ -119.001643367999989, 50.800468072000065 ], [ -119.002291875999944, 50.799798094000032 ], [ -119.00240796599995, 50.799710470000051 ], [ -119.002462463999976, 50.799709534000066 ], [ -119.002460800000023, 50.79967059200002 ], [ -119.00277375899999, 50.79943437200005 ], [ -119.002876379999975, 50.799432609000142 ], [ -119.002873846999975, 50.799373380000063 ], [ -119.003585275999967, 50.799150615000045 ], [ -119.005842924999982, 50.799111805000109 ], [ -119.00586601899991, 50.799651042000107 ], [ -119.006291462999954, 50.799643724000056 ], [ -119.006303013999954, 50.79991334300005 ], [ -119.006728458999987, 50.799906023000112 ], [ -119.006740010999948, 50.800175641000109 ], [ -119.007165460999914, 50.800168319000043 ], [ -119.007200124999926, 50.800977175000121 ], [ -119.006774668999981, 50.800984497000087 ], [ -119.00678622199996, 50.801254115000056 ], [ -119.006360761999943, 50.801261436000097 ], [ -119.006383864999989, 50.801800674000049 ], [ -119.005958402999937, 50.801807992000128 ], [ -119.005969949999951, 50.802077611000108 ], [ -119.005544483999955, 50.802084928000077 ], [ -119.005556029999966, 50.802354548000025 ], [ -119.003854156999964, 50.802383802000087 ], [ -119.003888766999935, 50.803192659000054 ], [ -119.003037811999917, 50.803207278000031 ], [ -119.00307241099992, 50.804016136000065 ], [ -119.002221440999975, 50.804030748000066 ], [ -119.002244497999953, 50.804569987000029 ], [ -119.001819007999984, 50.804577290000054 ], [ -119.001842058999912, 50.805116530000042 ], [ -118.999714584999978, 50.805153028000113 ], [ -118.999749129999884, 50.80596188700013 ], [ -118.999323624999988, 50.805969182000055 ], [ -118.999381186999969, 50.807317280000085 ], [ -118.999806701999944, 50.807309984000064 ], [ -118.999827893999935, 50.8078061860001 ], [ -119.00157483000001, 50.807915794000031 ], [ -119.001543320999971, 50.808116735000027 ], [ -119.002106727999944, 50.808152079000067 ], [ -119.002074697999959, 50.808356345000036 ], [ -119.002225037999921, 50.808365776000102 ], [ -119.001664458999954, 50.811940774000092 ], [ -119.001025978999962, 50.811900722000139 ], [ -119.000998037999977, 50.81207888800003 ], [ -118.99947969199998, 50.811983627000082 ], [ -118.999223846999911, 50.81361452600008 ], [ -118.997592754999943, 50.813512166000109 ], [ -118.997521540999955, 50.813965997000075 ], [ -118.998979248999945, 50.814057477000091 ], [ -118.99841833899994, 50.817632435000121 ], [ -118.994196722999973, 50.817367452000028 ], [ -118.994062804999956, 50.816857310000039 ], [ -118.994169914999986, 50.816351702000084 ], [ -118.994249375999914, 50.81592729500008 ], [ -118.99387172299997, 50.815349006000098 ], [ -118.993459300999973, 50.815005789000104 ], [ -118.992763992999969, 50.81467539000009 ], [ -118.991753002999957, 50.814279495000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.6", "sL_BldgLoss": "35.6", "sL_StrLoss": "35.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003AAD3ECBB1CC5DC09E87EA181D624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.197707933999936, 50.767401959000061 ], [ -119.197720408999899, 50.767320011000102 ], [ -119.196669974999921, 50.767255905000106 ], [ -119.196671849999944, 50.767243593000074 ], [ -119.196864573999946, 50.765977813000056 ], [ -119.19979809499992, 50.766007964000039 ], [ -119.200529486999983, 50.766010365000085 ], [ -119.201350129999966, 50.766013019000056 ], [ -119.200298646999954, 50.766467209000034 ], [ -119.200143300999983, 50.766534312000026 ], [ -119.199629910999946, 50.766508584000043 ], [ -119.198962197999919, 50.766745099000083 ], [ -119.198384108999932, 50.767082188000103 ], [ -119.198021891999971, 50.767293406000128 ], [ -119.197707933999936, 50.767401959000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19250911", "BldgCostT": "12300743", "sL_LossRatio": "1", "sL_AssetLoss": "846.5", "sL_BldgLoss": "846.5", "sL_StrLoss": "846.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED376E8C78C05DC0361F956A38624940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.001777062999977, 50.774436688000051 ], [ -119.00188323399999, 50.773759037000033 ], [ -119.00048516899993, 50.773671254000135 ], [ -119.001032343999924, 50.77017920100009 ], [ -119.000619317999934, 50.770153264000072 ], [ -119.000786659999903, 50.769085239000042 ], [ -119.000396884999972, 50.769060760000023 ], [ -119.000547417999925, 50.768100031000053 ], [ -119.000324951999971, 50.76808606000003 ], [ -119.000376642999981, 50.767756148000025 ], [ -118.998368892999977, 50.767630033000046 ], [ -118.997264976999958, 50.767560676000102 ], [ -118.997825352999939, 50.763985516000083 ], [ -119.00078671199995, 50.764171548000057 ], [ -119.000816220999951, 50.763983184000082 ], [ -119.002122166999925, 50.764065198000019 ], [ -119.002187478999986, 50.763648215000082 ], [ -119.003412870999952, 50.763725156000071 ], [ -119.003462937999927, 50.763405444000036 ], [ -119.005531533999957, 50.76353529700004 ], [ -119.005689790999938, 50.762524392000103 ], [ -119.007423403999951, 50.762633188000052 ], [ -119.009692369000021, 50.762775538000028 ], [ -119.009997185999978, 50.762794659000065 ], [ -119.01002579499999, 50.762611790000115 ], [ -119.010110961999956, 50.762617132000095 ], [ -119.010189815999965, 50.762113093000032 ], [ -119.01050526099999, 50.762132879000056 ], [ -119.010570522999942, 50.761715700000067 ], [ -119.011284651999958, 50.761760491000089 ], [ -119.011310096999964, 50.76159781700003 ], [ -119.011851813999968, 50.761631790000081 ], [ -119.011902841999955, 50.761305536000066 ], [ -119.011934997999958, 50.761099930000057 ], [ -119.01322503899992, 50.76118082100006 ], [ -119.01349612099996, 50.761197818000078 ], [ -119.013930709999954, 50.761225064000079 ], [ -119.013996083999956, 50.761417098000081 ], [ -119.015480199999942, 50.762308596000075 ], [ -119.015770181999926, 50.762789994000066 ], [ -119.015524299999981, 50.763297004000059 ], [ -119.015695292999951, 50.763996294000059 ], [ -119.015685020999967, 50.764734097000023 ], [ -119.016389317999952, 50.765306607000113 ], [ -119.01659119299994, 50.76573391200008 ], [ -119.016579915999941, 50.767092589000065 ], [ -119.01631357699992, 50.767708365000047 ], [ -119.01612899699991, 50.768135105000077 ], [ -119.016199914999973, 50.768494003000058 ], [ -119.016609010999943, 50.769070798000087 ], [ -119.016633815999953, 50.769646196000132 ], [ -119.015256706999978, 50.769651910000064 ], [ -119.012920904999959, 50.770060610000051 ], [ -119.012471996999977, 50.77016739700008 ], [ -119.012084714999943, 50.770389598000115 ], [ -119.011676702999921, 50.770838204000022 ], [ -119.01140108599995, 50.770996311000083 ], [ -119.00958209099997, 50.771261197000079 ], [ -119.009437142, 50.771299678000112 ], [ -119.008965096999958, 50.771424999000089 ], [ -119.008342395999961, 50.771470606000094 ], [ -119.007659302999926, 50.771734104000103 ], [ -119.005728916999942, 50.773045793000101 ], [ -119.005502607999944, 50.773346300000057 ], [ -119.005294107999958, 50.774455683000077 ], [ -119.00519598799994, 50.774651284000093 ], [ -119.004872080999959, 50.774630957000085 ], [ -119.001777062999977, 50.774436688000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021722", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "27412917", "BldgCostT": "18641667", "sL_LossRatio": "1", "sL_AssetLoss": "2017.5", "sL_BldgLoss": "2017.5", "sL_StrLoss": "2017.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000776AEC1A06BE5DC07018791777674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.966450933999965, 50.814082930000048 ], [ -118.966439608999934, 50.813813306000014 ], [ -118.965959655999896, 50.813821397000034 ], [ -118.965969501999922, 50.812472153000037 ], [ -118.96638298, 50.812465182000082 ], [ -118.96633768399991, 50.811386684000055 ], [ -118.966763241999914, 50.811379509000055 ], [ -118.966751914999946, 50.811109883 ], [ -118.968028588999971, 50.811088347000094 ], [ -118.968018355999945, 50.81084491200005 ], [ -118.966150065999969, 50.810727131000093 ], [ -118.966174493000011, 50.810572151 ], [ -118.965983451999975, 50.810560106000018 ], [ -118.965985809999907, 50.810236481000082 ], [ -118.965987323999968, 50.810029453000027 ], [ -118.966044678999964, 50.809665564000042 ], [ -118.965990011999949, 50.809662117000101 ], [ -118.965995853999971, 50.808863050000113 ], [ -118.966000943999973, 50.808167983000061 ], [ -118.966071607999936, 50.806555326000101 ], [ -118.96660765199999, 50.806548696000043 ], [ -118.968785920999949, 50.806512008000027 ], [ -118.968784510999953, 50.806449296000046 ], [ -118.968752896999888, 50.80505592300009 ], [ -118.969147865999972, 50.805080819000075 ], [ -118.969430165999938, 50.803288661000117 ], [ -118.970059099999986, 50.803328301000086 ], [ -118.970061135999956, 50.803315374000128 ], [ -118.970536539999955, 50.803345336000085 ], [ -118.970760914999943, 50.801920585000055 ], [ -118.974457525999981, 50.801830962000103 ], [ -118.972455800999967, 50.803027070000098 ], [ -118.97191449599994, 50.803392899000116 ], [ -118.971540890999961, 50.803717695000095 ], [ -118.97122808599994, 50.804145698000127 ], [ -118.971074297999962, 50.804488006000028 ], [ -118.971003179999954, 50.804984505000036 ], [ -118.971031983999936, 50.8055539960001 ], [ -118.971118996999948, 50.806061314000075 ], [ -118.971208587999953, 50.806552588000081 ], [ -118.971319085999966, 50.807445894000054 ], [ -118.971387141999983, 50.807840866000099 ], [ -118.971388970999925, 50.807851300000031 ], [ -118.971399702999946, 50.807913632000115 ], [ -118.971400600999942, 50.807918825000158 ], [ -118.971422947999955, 50.808048715000091 ], [ -118.971541014999943, 50.808836299000035 ], [ -118.971545636, 50.808867708000058 ], [ -118.971753297999953, 50.810279403000038 ], [ -118.97193710099999, 50.810652903000111 ], [ -118.972217803999939, 50.811027094000053 ], [ -118.972696408999923, 50.811454355000151 ], [ -118.970543983999974, 50.811318752000027 ], [ -118.97057415499999, 50.811127204000073 ], [ -118.969304435999959, 50.811047192000053 ], [ -118.969316600999946, 50.811336422000124 ], [ -118.968891041999939, 50.811343606999984 ], [ -118.968925059999947, 50.812152480000059 ], [ -118.968499493999957, 50.812159664000077 ], [ -118.968567517999986, 50.813777409000089 ], [ -118.968141936999984, 50.813784592000104 ], [ -118.968153271999952, 50.814054215000027 ], [ -118.966450933999965, 50.814082930000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "142582917", "BldgCostT": "95651667", "sL_LossRatio": "1", "sL_AssetLoss": "7095.1", "sL_BldgLoss": "7095.1", "sL_StrLoss": "7095.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CB8BAFEAEABD5DC019835EEA2D6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.95496468099995, 50.837217919000111 ], [ -118.955450787999951, 50.836293184000041 ], [ -118.955523989999989, 50.835825874000093 ], [ -118.955108454999944, 50.835416781000077 ], [ -118.956241823999946, 50.835488306000045 ], [ -118.95628983, 50.83518433400009 ], [ -118.958891103000028, 50.835348451000108 ], [ -118.958964484999939, 50.834883619000067 ], [ -118.956352347999939, 50.834718815000059 ], [ -118.956782908999955, 50.831992281000083 ], [ -118.961800355999941, 50.831412530000058 ], [ -118.961921576999941, 50.830797508000074 ], [ -118.962860377, 50.830856703000066 ], [ -118.964347052999969, 50.83095042900004 ], [ -118.964497218999895, 50.829998370000126 ], [ -118.964841473999911, 50.827815612000052 ], [ -118.965234766999941, 50.827840403000089 ], [ -118.965291771999944, 50.827478921000093 ], [ -118.96537559699999, 50.827484205000054 ], [ -118.965817709999953, 50.824680427000075 ], [ -118.966636004999913, 50.824732003000086 ], [ -118.966650975000022, 50.824637045000088 ], [ -118.968603515000027, 50.82476008700008 ], [ -118.968595499999978, 50.824569553000032 ], [ -118.969446857999941, 50.824555182000147 ], [ -118.969435511999905, 50.824285558000092 ], [ -118.969861187999982, 50.824278370000087 ], [ -118.969838488999926, 50.82373912200007 ], [ -118.968135798999981, 50.82376786500005 ], [ -118.968103535999902, 50.823000666000048 ], [ -118.968541569999942, 50.823011647000065 ], [ -118.968492651, 50.815976794000079 ], [ -118.968662840000022, 50.814896769 ], [ -118.968756652, 50.81490268 ], [ -118.968818954999932, 50.814507271000053 ], [ -118.968896830999952, 50.81451217900004 ], [ -118.968934362999974, 50.814273974000045 ], [ -118.9695426899999, 50.814312309000059 ], [ -118.969558039, 50.814214888000059 ], [ -118.973456342999896, 50.814460469000068 ], [ -118.973429610999972, 50.814524205000033 ], [ -118.97276210199999, 50.816061581000085 ], [ -118.972539399999988, 50.816859889000057 ], [ -118.972384408999986, 50.817617284000072 ], [ -118.972285114999963, 50.818184202000069 ], [ -118.972212995999911, 50.818977509000042 ], [ -118.972210285999921, 50.819456599000056 ], [ -118.972238291999929, 50.820085698000106 ], [ -118.972354004999957, 50.820963904000067 ], [ -118.972536, 50.822228193000086 ], [ -118.972611108999942, 50.82254878600007 ], [ -118.972740835999915, 50.822830305000089 ], [ -118.972763210999972, 50.822878787000029 ], [ -118.97302866499993, 50.823204504000053 ], [ -118.973085003999955, 50.823273603000089 ], [ -118.973422658999965, 50.82350546800005 ], [ -118.973613213999897, 50.823636294000096 ], [ -118.974180707999935, 50.823894095000092 ], [ -118.975332312999939, 50.824367293000101 ], [ -118.97533282699996, 50.824658147000065 ], [ -118.975337993999958, 50.827458906000047 ], [ -118.975129207999885, 50.827452100000073 ], [ -118.975071426999975, 50.828707501000068 ], [ -118.973654292999953, 50.828658885 ], [ -118.973653594999945, 50.8286679180001 ], [ -118.973590791999953, 50.82944290000011 ], [ -118.973543983999946, 50.830283792000031 ], [ -118.973481600999932, 50.831096709000057 ], [ -118.973419989999968, 50.831914090000154 ], [ -118.973407044999959, 50.832300594000053 ], [ -118.973388306999951, 50.832858972000103 ], [ -118.97335942, 50.833721697000115 ], [ -118.973419596999975, 50.833973707000048 ], [ -118.973889620999898, 50.834804401000028 ], [ -118.973953256999948, 50.834916873000111 ], [ -118.974033902999949, 50.835059382000146 ], [ -118.97416120299999, 50.835202790000082 ], [ -118.974272293999974, 50.835385702000103 ], [ -118.974264177999913, 50.835980904000095 ], [ -118.974271313999978, 50.836679006000068 ], [ -118.970351991999934, 50.836677797000121 ], [ -118.970380291999959, 50.837721116000125 ], [ -118.970438585999929, 50.837882006 ], [ -118.968680155999891, 50.837890209000086 ], [ -118.967760478999978, 50.837945113000053 ], [ -118.966939095000029, 50.838082901000085 ], [ -118.966794200999956, 50.837788594000067 ], [ -118.966779945999974, 50.837789540000095 ], [ -118.966436336999948, 50.83781247400006 ], [ -118.965639697999933, 50.837865590000099 ], [ -118.963454616999954, 50.837858793000045 ], [ -118.962685113999925, 50.83785808800004 ], [ -118.962180002999943, 50.837864207000095 ], [ -118.957361003999921, 50.837880718000115 ], [ -118.956739589999984, 50.837936206000023 ], [ -118.956636757999959, 50.837927613000069 ], [ -118.956477499999934, 50.83791430500002 ], [ -118.955231297999916, 50.837567796000066 ], [ -118.95496468099995, 50.837217919000111 ] ], [ [ -118.967831796999988, 50.83679731000008 ], [ -118.967823337, 50.83659619600008 ], [ -118.966110573999956, 50.836488283000044 ], [ -118.966186730999979, 50.836005401000079 ], [ -118.966145210999954, 50.836002785000048 ], [ -118.966481742999974, 50.833868795000051 ], [ -118.966407168999964, 50.833864096000141 ], [ -118.966433673999944, 50.83369602000009 ], [ -118.966296777999901, 50.833687394000059 ], [ -118.966561207999973, 50.832010500000088 ], [ -118.965707176999928, 50.831956680000125 ], [ -118.965720540999882, 50.831871933000102 ], [ -118.96548358299998, 50.831856998000056 ], [ -118.965230865999899, 50.833459373000089 ], [ -118.965240009999931, 50.833459950000076 ], [ -118.96511496899997, 50.834252738000032 ], [ -118.965200866999979, 50.834258152000089 ], [ -118.965175116999916, 50.834421408000033 ], [ -118.965420071, 50.834436846000088 ], [ -118.96538204699999, 50.834677933000123 ], [ -118.965450487999988, 50.834682247000067 ], [ -118.965366260999957, 50.835216264000096 ], [ -118.96608930499994, 50.835261829000011 ], [ -118.966015118999948, 50.835732227000065 ], [ -118.966126236999955, 50.835739229000097 ], [ -118.966090735999913, 50.835964337000071 ], [ -118.966146151999908, 50.835967829 ], [ -118.965936729999953, 50.837295693000058 ], [ -118.966901265999951, 50.837279434000067 ], [ -118.967421288999972, 50.837167812000054 ], [ -118.967414269999921, 50.837000967000101 ], [ -118.967800713999935, 50.836994449000052 ], [ -118.967831796999988, 50.83679731000008 ] ], [ [ -118.972719462999976, 50.8314512950001 ], [ -118.972459799999967, 50.833099424000068 ], [ -118.973217032999912, 50.833147097000086 ], [ -118.973182004999956, 50.832316696000113 ], [ -118.972756256999901, 50.832323896000105 ], [ -118.972719462999976, 50.8314512950001 ] ], [ [ -118.97270466, 50.831100265000032 ], [ -118.972631200999942, 50.829358045000063 ], [ -118.97220547900001, 50.829365244000073 ], [ -118.972194112999944, 50.8290956210001 ], [ -118.97186805299998, 50.829101134000062 ], [ -118.971661030999911, 50.830415067000011 ], [ -118.972515041999912, 50.83046884200008 ], [ -118.972488560999963, 50.830636921000114 ], [ -118.972625448999921, 50.830645539000081 ], [ -118.972555290999964, 50.831090860000089 ], [ -118.97270466, 50.831100265000032 ] ], [ [ -118.971752566999982, 50.828727281000027 ], [ -118.971744976999972, 50.828547155000095 ], [ -118.971741689999959, 50.828568017000066 ], [ -118.970923318999979, 50.828516478000033 ], [ -118.970911929999957, 50.828588751000076 ], [ -118.971453649999916, 50.828622868000082 ], [ -118.971440296999972, 50.828707616000059 ], [ -118.971752566999982, 50.828727281000027 ] ], [ [ -118.97258573199997, 50.828279554000098 ], [ -118.972574363999939, 50.828009930000135 ], [ -118.972148653999923, 50.828017129000131 ], [ -118.972137290999953, 50.827747506000058 ], [ -118.971870251999945, 50.827752020000077 ], [ -118.971785005999919, 50.828293092000088 ], [ -118.97258573199997, 50.828279554000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "150220000", "BldgCostT": "103600000", "sL_LossRatio": "1", "sL_AssetLoss": "8308.4", "sL_BldgLoss": "8308.4", "sL_StrLoss": "8308.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005EB7521990BE5DC0C706C1994E6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.974033902999949, 50.835059382000146 ], [ -118.973953256999948, 50.834916873000111 ], [ -118.973889620999898, 50.834804401000028 ], [ -118.973419596999975, 50.833973707000048 ], [ -118.97335942, 50.833721697000115 ], [ -118.973388306999951, 50.832858972000103 ], [ -118.973407044999959, 50.832300594000053 ], [ -118.973419989999968, 50.831914090000154 ], [ -118.973481600999932, 50.831096709000057 ], [ -118.973543983999946, 50.830283792000031 ], [ -118.973590791999953, 50.82944290000011 ], [ -118.973653594999945, 50.8286679180001 ], [ -118.973654292999953, 50.828658885 ], [ -118.975071426999975, 50.828707501000068 ], [ -118.975129207999885, 50.827452100000073 ], [ -118.975337993999958, 50.827458906000047 ], [ -118.97533282699996, 50.824658147000065 ], [ -118.975332312999939, 50.824367293000101 ], [ -118.976401590999927, 50.82478388600002 ], [ -118.977372914999947, 50.825169924000107 ], [ -118.98088929, 50.82656451600009 ], [ -118.980971886999967, 50.826614365000083 ], [ -118.981223002999982, 50.826765992000048 ], [ -118.981439713, 50.826949295000134 ], [ -118.981590179999955, 50.827217792000106 ], [ -118.98162993499993, 50.827391793000047 ], [ -118.981625816999937, 50.827599087000102 ], [ -118.981617883999888, 50.827744976000091 ], [ -118.981601200999961, 50.828051554000076 ], [ -118.981537410999948, 50.829224890000063 ], [ -118.981509971999969, 50.829729203000056 ], [ -118.981467397999936, 50.830512617000061 ], [ -118.981444835999952, 50.830927127000116 ], [ -118.981425370999943, 50.831187936000056 ], [ -118.981348879999985, 50.832211585000067 ], [ -118.981277727999952, 50.833163956000128 ], [ -118.981277088999946, 50.83317294400009 ], [ -118.980985929999974, 50.8337800830001 ], [ -118.980921899999942, 50.833871450000046 ], [ -118.980842309999957, 50.83398495700002 ], [ -118.980790271000018, 50.83405828000015 ], [ -118.980532390999926, 50.834421307000078 ], [ -118.979960921999947, 50.834922304 ], [ -118.979343900999979, 50.835427022000069 ], [ -118.979042971999988, 50.835311363000081 ], [ -118.97416120299999, 50.835202790000082 ], [ -118.974033902999949, 50.835059382000146 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "81465916", "BldgCostT": "55711666", "sL_LossRatio": "1", "sL_AssetLoss": "4052.6", "sL_BldgLoss": "4052.6", "sL_StrLoss": "4052.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2C1310DFBBE5DC0E740830B816A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.979343900999979, 50.835427022000069 ], [ -118.979960921999947, 50.834922304 ], [ -118.980532390999926, 50.834421307000078 ], [ -118.980790271000018, 50.83405828000015 ], [ -118.980842309999957, 50.83398495700002 ], [ -118.980921899999942, 50.833871450000046 ], [ -118.980985929999974, 50.8337800830001 ], [ -118.981277088999946, 50.83317294400009 ], [ -118.981277727999952, 50.833163956000128 ], [ -118.981348879999985, 50.832211585000067 ], [ -118.981425370999943, 50.831187936000056 ], [ -118.981444835999952, 50.830927127000116 ], [ -118.981467397999936, 50.830512617000061 ], [ -118.981509971999969, 50.829729203000056 ], [ -118.981537410999948, 50.829224890000063 ], [ -118.981601200999961, 50.828051554000076 ], [ -118.981617883999888, 50.827744976000091 ], [ -118.981625816999937, 50.827599087000102 ], [ -118.984289098999966, 50.827648295000067 ], [ -118.987121908999896, 50.827699098000103 ], [ -118.988473254999946, 50.83070007400012 ], [ -118.989460315999963, 50.832985937000075 ], [ -118.986933532999942, 50.833483341000054 ], [ -118.985783850999923, 50.833712553000083 ], [ -118.985072039, 50.833853742000088 ], [ -118.985666168999927, 50.83502376200007 ], [ -118.986011896999912, 50.835712451000092 ], [ -118.982687411999962, 50.83637807200008 ], [ -118.98205800799991, 50.835541565000035 ], [ -118.98194018399991, 50.835473699000069 ], [ -118.981807264999944, 50.835456321000031 ], [ -118.981147575999941, 50.835583617000061 ], [ -118.981105386, 50.836695587000065 ], [ -118.978463394, 50.837215395000051 ], [ -118.976984693999924, 50.837402105000066 ], [ -118.97752230399999, 50.836980196000049 ], [ -118.97806641199999, 50.83647198700006 ], [ -118.978871006999967, 50.835813870000017 ], [ -118.979343900999979, 50.835427022000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51599219", "BldgCostT": "32825412", "sL_LossRatio": "1", "sL_AssetLoss": "2130.4", "sL_BldgLoss": "2130.4", "sL_StrLoss": "2130.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000255AD16AF1BE5DC0C3EAD14C5E6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.981162452999939, 50.839671798000019 ], [ -118.981153761999948, 50.839466583000139 ], [ -118.980302136999953, 50.839481043000063 ], [ -118.980302774999956, 50.839496106000126 ], [ -118.979418607999889, 50.839247505000067 ], [ -118.979365158999912, 50.839225133000085 ], [ -118.978325950999988, 50.838789961000039 ], [ -118.977232355999945, 50.838331999000026 ], [ -118.976792436, 50.838211650000027 ], [ -118.976341153999925, 50.838088205000076 ], [ -118.976984693999924, 50.837402105000066 ], [ -118.978463394, 50.837215395000051 ], [ -118.981105386, 50.836695587000065 ], [ -118.981147575999941, 50.835583617000061 ], [ -118.981807264999944, 50.835456321000031 ], [ -118.98194018399991, 50.835473699000069 ], [ -118.98205800799991, 50.835541565000035 ], [ -118.982687411999962, 50.83637807200008 ], [ -118.986011896999912, 50.835712451000092 ], [ -118.985666168999927, 50.83502376200007 ], [ -118.985072039, 50.833853742000088 ], [ -118.985783850999923, 50.833712553000083 ], [ -118.986933532999942, 50.833483341000054 ], [ -118.989460315999963, 50.832985937000075 ], [ -118.988473254999946, 50.83070007400012 ], [ -118.987121908999896, 50.827699098000103 ], [ -118.984289098999966, 50.827648295000067 ], [ -118.981625816999937, 50.827599087000102 ], [ -118.98162993499993, 50.827391793000047 ], [ -118.981590179999955, 50.827217792000106 ], [ -118.981439713, 50.826949295000134 ], [ -118.981223002999982, 50.826765992000048 ], [ -118.980971886999967, 50.826614365000083 ], [ -118.98088929, 50.82656451600009 ], [ -118.977372914999947, 50.825169924000107 ], [ -118.976401590999927, 50.82478388600002 ], [ -118.975332312999939, 50.824367293000101 ], [ -118.974180707999935, 50.823894095000092 ], [ -118.973613213999897, 50.823636294000096 ], [ -118.973422658999965, 50.82350546800005 ], [ -118.973085003999955, 50.823273603000089 ], [ -118.97302866499993, 50.823204504000053 ], [ -118.972763210999972, 50.822878787000029 ], [ -118.972740835999915, 50.822830305000089 ], [ -118.972611108999942, 50.82254878600007 ], [ -118.972536, 50.822228193000086 ], [ -118.972354004999957, 50.820963904000067 ], [ -118.972238291999929, 50.820085698000106 ], [ -118.972210285999921, 50.819456599000056 ], [ -118.972212995999911, 50.818977509000042 ], [ -118.972285114999963, 50.818184202000069 ], [ -118.972384408999986, 50.817617284000072 ], [ -118.972539399999988, 50.816859889000057 ], [ -118.97276210199999, 50.816061581000085 ], [ -118.973429610999972, 50.814524205000033 ], [ -118.973456342999896, 50.814460469000068 ], [ -118.973665909999937, 50.81447366600009 ], [ -118.973220422999972, 50.815511400000076 ], [ -118.973255402999897, 50.816005602000061 ], [ -118.973866200999964, 50.816687797000043 ], [ -118.975272397999973, 50.817374295000057 ], [ -118.975414621999946, 50.817713205000054 ], [ -118.974802992999969, 50.819333986000061 ], [ -118.974052986999979, 50.820416397000045 ], [ -118.973751687999979, 50.821024498000028 ], [ -118.973754215999975, 50.821429002000038 ], [ -118.974216596999938, 50.821592790000111 ], [ -118.974239907999959, 50.821843406000035 ], [ -118.975764107999908, 50.822591210000034 ], [ -118.976884708999989, 50.823598090000054 ], [ -118.977882408999946, 50.823993991000101 ], [ -118.983612888999957, 50.825228793000072 ], [ -118.986230007999936, 50.825660306000032 ], [ -118.986503402, 50.825754311000026 ], [ -118.98674330599999, 50.826037685000067 ], [ -118.987760093999952, 50.826264214000062 ], [ -118.988207994999954, 50.826732797000041 ], [ -118.988283023999912, 50.826742576000072 ], [ -118.988283159, 50.826745703000036 ], [ -118.988402220999944, 50.826769763000051 ], [ -118.988489120999958, 50.826884162000042 ], [ -118.988548924999961, 50.826929242000034 ], [ -118.988563122999963, 50.826929 ], [ -118.988629302, 50.826996184000059 ], [ -118.989006000999964, 50.827178491000076 ], [ -118.989484987999973, 50.827753888000075 ], [ -118.989659596999942, 50.828497292000065 ], [ -118.990016898999926, 50.828879008000115 ], [ -118.990222256999957, 50.829241170000067 ], [ -118.990207511999955, 50.829240244000118 ], [ -118.990237160999953, 50.829267455000107 ], [ -118.990241403999946, 50.829274938 ], [ -118.990256035999934, 50.829300774000075 ], [ -118.99025928099995, 50.829306486000078 ], [ -118.990263200999934, 50.829313399000078 ], [ -118.990269871999928, 50.829328232000101 ], [ -118.990271593999935, 50.82932820300006 ], [ -118.990431344999934, 50.829609927000043 ], [ -118.990860012, 50.830365895000043 ], [ -118.990852940999957, 50.830472498000056 ], [ -118.990849893999936, 50.83051813400008 ], [ -118.990800348000022, 50.831265016 ], [ -118.990800324999981, 50.831265420000101 ], [ -118.99080027899997, 50.831266172000063 ], [ -118.990791293999948, 50.831401299000085 ], [ -118.991050654, 50.831715466000048 ], [ -118.991051499999926, 50.831735362000096 ], [ -118.99112982099993, 50.831818663000092 ], [ -118.99112681899993, 50.831887128000112 ], [ -118.991106438999921, 50.832042374000089 ], [ -118.991093196999941, 50.832143313000081 ], [ -118.991210721999963, 50.832350700000056 ], [ -118.991219795999925, 50.832366661000059 ], [ -118.991461301999962, 50.832792812000015 ], [ -118.991456709999966, 50.832987878000047 ], [ -118.991456483999983, 50.832996379000093 ], [ -118.991455039999934, 50.833059501000058 ], [ -118.991451085, 50.833225700000078 ], [ -118.991592517999962, 50.833519106000075 ], [ -118.99153226699994, 50.833671596000023 ], [ -118.991424307999964, 50.833944997000081 ], [ -118.991461703999931, 50.83405738000009 ], [ -118.99155075699997, 50.834324905000081 ], [ -118.991593225000017, 50.834452557000127 ], [ -118.99159392199995, 50.8344689 ], [ -118.9916170199999, 50.834538762000129 ], [ -118.991760747999962, 50.834699097000112 ], [ -118.991767387999957, 50.834698983000067 ], [ -118.991828886999883, 50.834767449 ], [ -118.991848438999966, 50.834789202000096 ], [ -118.992163471999945, 50.835139903000012 ], [ -118.99233608399993, 50.835332099000091 ], [ -118.993350816999964, 50.836125214000042 ], [ -118.99337071699992, 50.83614076 ], [ -118.993496878999977, 50.836239392000081 ], [ -118.993497773999948, 50.836240584000087 ], [ -118.992999019999971, 50.836497828000105 ], [ -118.991654908999934, 50.837119240000078 ], [ -118.989837500999926, 50.837844486000044 ], [ -118.989509778999974, 50.837975396000097 ], [ -118.986459709999949, 50.83919372400009 ], [ -118.985834917999981, 50.839416221000072 ], [ -118.985107036, 50.839596113000042 ], [ -118.984543615999968, 50.839691528000081 ], [ -118.98389894099995, 50.83976833 ], [ -118.983424395999975, 50.83980688300008 ], [ -118.983410018999948, 50.839808034000022 ], [ -118.982688707999912, 50.839809631000072 ], [ -118.981949931999978, 50.839767739000123 ], [ -118.98117222499998, 50.839673621000131 ], [ -118.981162452999939, 50.839671798000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8439000", "BldgCostT": "5820000", "sL_LossRatio": "1", "sL_AssetLoss": "702.4", "sL_BldgLoss": "702.4", "sL_StrLoss": "702.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E2D2F8E44BE5DC0A9E5DE2E41674940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.972455800999967, 50.803027070000098 ], [ -118.974457525999981, 50.801830962000103 ], [ -118.974500558999921, 50.801934515000042 ], [ -118.974479892, 50.801945796000076 ], [ -118.973236717999967, 50.80273909700005 ], [ -118.97358740899999, 50.803327292000098 ], [ -118.974281699999921, 50.803953894000081 ], [ -118.974387716999942, 50.804788500000072 ], [ -118.97499940299997, 50.806846489000058 ], [ -118.974767073999956, 50.808388892000018 ], [ -118.974135280999988, 50.809217801000045 ], [ -118.974144700999958, 50.809461412000061 ], [ -118.974519108999957, 50.809931394000103 ], [ -118.974466704999955, 50.810012487000122 ], [ -118.973304390999928, 50.81009511000007 ], [ -118.972130801999967, 50.810502494000062 ], [ -118.972460206999969, 50.810946782 ], [ -118.973064379000022, 50.81147753300008 ], [ -118.972696408999923, 50.811454355000151 ], [ -118.972217803999939, 50.811027094000053 ], [ -118.97193710099999, 50.810652903000111 ], [ -118.971753297999953, 50.810279403000038 ], [ -118.971545636, 50.808867708000058 ], [ -118.971541014999943, 50.808836299000035 ], [ -118.971422947999955, 50.808048715000091 ], [ -118.971400600999942, 50.807918825000158 ], [ -118.971399702999946, 50.807913632000115 ], [ -118.971388970999925, 50.807851300000031 ], [ -118.971387141999983, 50.807840866000099 ], [ -118.971319085999966, 50.807445894000054 ], [ -118.971208587999953, 50.806552588000081 ], [ -118.971118996999948, 50.806061314000075 ], [ -118.971031983999936, 50.8055539960001 ], [ -118.971003179999954, 50.804984505000036 ], [ -118.971074297999962, 50.804488006000028 ], [ -118.97122808599994, 50.804145698000127 ], [ -118.971540890999961, 50.803717695000095 ], [ -118.97191449599994, 50.803392899000116 ], [ -118.972455800999967, 50.803027070000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021728", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "34370719", "BldgCostT": "21415412", "sL_LossRatio": "1", "sL_AssetLoss": "1279.5", "sL_BldgLoss": "1279.5", "sL_StrLoss": "1279.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082480A55BFBF5DC08337F7992B6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.993090493999944, 50.833368097000097 ], [ -118.993302899999932, 50.832836441000119 ], [ -118.993420791999966, 50.832541463000062 ], [ -118.993578699999887, 50.832146189000035 ], [ -118.99363336299993, 50.831908226000024 ], [ -118.993637097999965, 50.831891929000022 ], [ -118.99364902399999, 50.831839989000088 ], [ -118.993661252999942, 50.831786713000071 ], [ -118.993685506999924, 50.831681071000034 ], [ -118.993691320999915, 50.831655797000089 ], [ -118.993829905999959, 50.831052398000054 ], [ -118.993873213999976, 50.830072508000072 ], [ -118.993653264999949, 50.829432102000091 ], [ -118.993630612999965, 50.829366085000082 ], [ -118.993005984, 50.828719505000066 ], [ -118.992056876999953, 50.828105693000076 ], [ -118.991681386999986, 50.827968994000081 ], [ -118.99128110299992, 50.827580196000085 ], [ -118.990920510999956, 50.827108698000096 ], [ -118.990731790999973, 50.826329709000106 ], [ -118.991115194999963, 50.825307113000072 ], [ -118.992256791, 50.824469706000045 ], [ -118.992672013999965, 50.823895705000076 ], [ -118.993467986000013, 50.8232164100001 ], [ -118.993743652999981, 50.822776173000094 ], [ -118.994230149999936, 50.822806716000073 ], [ -118.996297262000013, 50.822936467000069 ], [ -118.996113180999956, 50.824109073000074 ], [ -118.99758020299997, 50.824201135000123 ], [ -118.997019054999953, 50.827776044000075 ], [ -118.99630701699999, 50.827731364000087 ], [ -118.996254691999951, 50.828064653000098 ], [ -118.997814670999901, 50.828162535000097 ], [ -118.997253490999967, 50.831737430000061 ], [ -118.995734054999943, 50.831642092000038 ], [ -118.995734954999975, 50.83166319700009 ], [ -118.995309218999921, 50.831670481000046 ], [ -118.995366717999943, 50.833018576000065 ], [ -118.99579246699993, 50.833011292000052 ], [ -118.995780965000023, 50.832741673000037 ], [ -118.997909697999958, 50.832705232000109 ], [ -118.99793687899998, 50.833341628000021 ], [ -118.998157076999917, 50.831938879000113 ], [ -118.998473795999928, 50.831958746000062 ], [ -118.99853298, 50.83158168600005 ], [ -118.998877926999981, 50.831603324000071 ], [ -118.998916275999974, 50.831358994 ], [ -118.999224449999957, 50.831378324000063 ], [ -118.999251369999953, 50.831206802000018 ], [ -119.000077640999962, 50.83125862300011 ], [ -119.00008183199999, 50.831231920000072 ], [ -119.001149381999952, 50.831298865000043 ], [ -119.00115638399997, 50.831254246000114 ], [ -119.006594539999966, 50.831595106000108 ], [ -119.005863779, 50.83194460100006 ], [ -119.004953099999938, 50.832243985000048 ], [ -119.002306882999946, 50.832787247000091 ], [ -119.002204776999989, 50.832808202000081 ], [ -119.00134769099999, 50.833056812000095 ], [ -119.000848278999939, 50.833264690000114 ], [ -119.000039509999937, 50.833697622000095 ], [ -118.999437040999979, 50.834020073000019 ], [ -118.99884854, 50.834335061000083 ], [ -118.998522235999943, 50.834467142000037 ], [ -118.998205004999988, 50.834596184000098 ], [ -118.997538829999925, 50.834810707000038 ], [ -118.99565243, 50.835258237000097 ], [ -118.994898447999958, 50.835572979000105 ], [ -118.994712716, 50.835650536000081 ], [ -118.994490881999965, 50.83575634200011 ], [ -118.99448697199999, 50.835758205000097 ], [ -118.993875407999965, 50.835468883 ], [ -118.99380988799993, 50.83523530900009 ], [ -118.993326602999957, 50.834578693 ], [ -118.993233602999979, 50.834322754000034 ], [ -118.993232263999971, 50.834319135000079 ], [ -118.993161581999971, 50.834124679000077 ], [ -118.993053312999933, 50.833826699000078 ], [ -118.993090493999944, 50.833368097000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "70.1", "sL_BldgLoss": "70.1", "sL_StrLoss": "70.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000947FD2F5A9BF5DC0C4373DBD8C6C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.994486257999966, 50.847263872000056 ], [ -118.996962167999953, 50.847419184000074 ], [ -118.996942199000031, 50.847430795000022 ], [ -118.996406989999954, 50.847826704000106 ], [ -118.995958587999937, 50.848337996000048 ], [ -118.995403404999948, 50.848645599000129 ], [ -118.99443239799993, 50.848877802000111 ], [ -118.994051992999971, 50.848901992000094 ], [ -118.993520798999924, 50.84881229300008 ], [ -118.993013900999955, 50.848577286000044 ], [ -118.992786818999903, 50.848239696000036 ], [ -118.992784442999891, 50.848211794000058 ], [ -118.993278556999968, 50.848242801 ], [ -118.993367889999973, 50.847674305000076 ], [ -118.993956409999939, 50.847711233000012 ], [ -118.994020151999976, 50.847305548000037 ], [ -118.994139506999886, 50.847308289000068 ], [ -118.994486257999966, 50.847263872000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20513333", "BldgCostT": "13883333", "sL_LossRatio": "1", "sL_AssetLoss": "1162", "sL_BldgLoss": "1162", "sL_StrLoss": "1162", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000520E6794DBE5DC0232B2237016C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.964886798999956, 50.847836141000101 ], [ -118.964875466999928, 50.847566517000104 ], [ -118.964023687999912, 50.847580860000015 ], [ -118.963992107999914, 50.846829053000128 ], [ -118.963972493999975, 50.846953351000174 ], [ -118.96141736, 50.846792307000065 ], [ -118.962136574999988, 50.846412492000042 ], [ -118.963712710999943, 50.845018194000033 ], [ -118.965007728000018, 50.84438580600002 ], [ -118.96523499099996, 50.844039812000055 ], [ -118.96572759799993, 50.843618199000076 ], [ -118.966101418999969, 50.843071301000059 ], [ -118.966787808999982, 50.842493103000095 ], [ -118.967306888999985, 50.842313608000097 ], [ -118.968097406999917, 50.842184001000071 ], [ -118.968996306999941, 50.842320690000086 ], [ -118.970176317999929, 50.842652596000079 ], [ -118.97140720599999, 50.84253290000003 ], [ -118.971671905999983, 50.842447504000042 ], [ -118.972061105999941, 50.842215293000095 ], [ -118.972227788999973, 50.841781013000102 ], [ -118.972056685999959, 50.841433403000103 ], [ -118.970861711999987, 50.840742692000035 ], [ -118.970731079999922, 50.840304 ], [ -118.970915888999983, 50.839986397000104 ], [ -118.971767409999956, 50.839611895000075 ], [ -118.972543591999965, 50.839490814000079 ], [ -118.973935162999936, 50.839428878000064 ], [ -118.974143716999947, 50.839419594000056 ], [ -118.975884200999957, 50.838931105 ], [ -118.97638120199997, 50.838922597000071 ], [ -118.976788711, 50.839131894000062 ], [ -118.977817079999923, 50.840257001000104 ], [ -118.978602603999946, 50.84071989100002 ], [ -118.97900490899994, 50.840802497000048 ], [ -118.979484790999948, 50.840741308000126 ], [ -118.97991432399999, 50.84080540300004 ], [ -118.981389383999939, 50.840779697000116 ], [ -118.982433414999974, 50.84093349200004 ], [ -118.98300520399999, 50.841373598000075 ], [ -118.983907307, 50.842328162000065 ], [ -118.983574211999965, 50.8444452110001 ], [ -118.98321660799995, 50.844422738000098 ], [ -118.983177508, 50.84467122000018 ], [ -118.977632402999916, 50.84432259000004 ], [ -118.977163792999974, 50.847298051000088 ], [ -118.977134000999939, 50.847296177000068 ], [ -118.977118096999931, 50.847397152000021 ], [ -118.976620153999988, 50.847365832000023 ], [ -118.976583384999969, 50.847599264000081 ], [ -118.970926600999974, 50.847243297000034 ], [ -118.970933904, 50.847196972000084 ], [ -118.970672095999944, 50.847180490000056 ], [ -118.970850435999978, 50.846049199000063 ], [ -118.971114096999926, 50.844376589000042 ], [ -118.97088420599998, 50.844362116000113 ], [ -118.970734916999973, 50.84530916700006 ], [ -118.970746997999967, 50.845308963000029 ], [ -118.970779375999939, 50.84607721900003 ], [ -118.970781087999953, 50.846117830000104 ], [ -118.970671696999915, 50.846119679000047 ], [ -118.970606972999974, 50.846120772000113 ], [ -118.97060573899995, 50.8461286020001 ], [ -118.970507927999961, 50.846122445000098 ], [ -118.970393348999963, 50.84612438000002 ], [ -118.970375689999969, 50.846236394000073 ], [ -118.970302458, 50.846700908000038 ], [ -118.969798317999945, 50.846669166 ], [ -118.969710063999969, 50.847228920000084 ], [ -118.968113388999953, 50.847128375000132 ], [ -118.967839642999976, 50.847111135000027 ], [ -118.967844823999897, 50.847234259000096 ], [ -118.967845345999933, 50.847246645000048 ], [ -118.967811982999962, 50.84724720800007 ], [ -118.966993571999978, 50.847261010000175 ], [ -118.967004915999922, 50.847530633000048 ], [ -118.966579026999966, 50.847537813000052 ], [ -118.966587114000035, 50.847730110000064 ], [ -118.966590366999938, 50.847807436000053 ], [ -118.966382067999973, 50.847810947000049 ], [ -118.964886798999956, 50.847836141000101 ] ], [ [ -118.964112158999953, 50.846500115000033 ], [ -118.964125696999986, 50.846414311000032 ], [ -118.96405822399997, 50.846410059000092 ], [ -118.96404383199993, 50.846501264000018 ], [ -118.964112158999953, 50.846500115000033 ] ], [ [ -118.977615414999931, 50.843716318000077 ], [ -118.977682411, 50.843290887000123 ], [ -118.977586786999964, 50.843284873000094 ], [ -118.977519789999945, 50.843710303000073 ], [ -118.977615414999931, 50.843716318000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18687334", "BldgCostT": "12678334", "sL_LossRatio": "0.99765107116346", "sL_AssetLoss": "770.564", "sL_BldgLoss": "768.754", "sL_StrLoss": "768.1", "sL_NStrLoss": "0.654", "sL_ContLoss": "1.81", "geom_point": "0101000020E610000052596F2F44BF5DC0EFF520CAB86C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.988928075999951, 50.852620687000119 ], [ -118.98906966, 50.851720319000059 ], [ -118.98574283799999, 50.851511400000078 ], [ -118.985745575999957, 50.851493998000102 ], [ -118.985395227999959, 50.851471991000025 ], [ -118.985440959999963, 50.851181308000051 ], [ -118.980898405999966, 50.850895867000077 ], [ -118.980941709999939, 50.850620802000087 ], [ -118.980573514999904, 50.850597658000048 ], [ -118.9808417939999, 50.84889355200005 ], [ -118.977276430999936, 50.848669370000074 ], [ -118.977839419999967, 50.845094646000078 ], [ -118.983495987999902, 50.845450265000082 ], [ -118.983360297, 50.846312585000064 ], [ -118.987952005999915, 50.846601043000085 ], [ -118.987887807000021, 50.84700928899999 ], [ -118.990797244999953, 50.847191965000043 ], [ -118.99077747199999, 50.847317747000027 ], [ -118.990353893999952, 50.847517697000129 ], [ -118.990012016999941, 50.847819603000062 ], [ -118.989880403999948, 50.848047490000091 ], [ -118.989843288, 50.848524596000054 ], [ -118.990006895999969, 50.849034405000062 ], [ -118.990624287999964, 50.849481612000027 ], [ -118.991301313999941, 50.849740891000081 ], [ -118.991707411999982, 50.849579898000094 ], [ -118.99306269, 50.849719492000112 ], [ -118.99370972299991, 50.8495557050001 ], [ -118.994744504, 50.849520089000038 ], [ -118.99597850699999, 50.849121286000042 ], [ -118.996586096999962, 50.848713992000121 ], [ -118.996893786, 50.848609995000047 ], [ -118.998055202999936, 50.847539008000091 ], [ -118.998153705000021, 50.847493909000022 ], [ -118.999688152999937, 50.847590120000071 ], [ -118.999425962, 50.849260123000121 ], [ -119.000146756000035, 50.84930530900003 ], [ -118.999585498, 50.852880129000049 ], [ -118.998004273999982, 50.852780996000064 ], [ -118.997978928999899, 50.852942365000033 ], [ -118.997791261999922, 50.852930598000079 ], [ -118.997765727999976, 50.853093169000012 ], [ -118.997081636999923, 50.853050273000107 ], [ -118.99712724699998, 50.852859041000045 ], [ -118.991217555, 50.852764403000016 ], [ -118.988928075999951, 50.852620687000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "174.5", "sL_BldgLoss": "174.5", "sL_StrLoss": "174.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000816453111BC05DC041F782A2BB6A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.99464879599995, 50.835958788000042 ], [ -118.994562421999888, 50.835846606000089 ], [ -118.994498581999963, 50.835763698000065 ], [ -118.99448697199999, 50.835758205000097 ], [ -118.994490881999965, 50.83575634200011 ], [ -118.994712716, 50.835650536000081 ], [ -118.994898447999958, 50.835572979000105 ], [ -118.99565243, 50.835258237000097 ], [ -118.997538829999925, 50.834810707000038 ], [ -118.998205004999988, 50.834596184000098 ], [ -118.998522235999943, 50.834467142000037 ], [ -118.99884854, 50.834335061000083 ], [ -118.999437040999979, 50.834020073000019 ], [ -119.000039509999937, 50.833697622000095 ], [ -119.000848278999939, 50.833264690000114 ], [ -119.00134769099999, 50.833056812000095 ], [ -119.002204776999989, 50.832808202000081 ], [ -119.002306882999946, 50.832787247000091 ], [ -119.004953099999938, 50.832243985000048 ], [ -119.005863779, 50.83194460100006 ], [ -119.006594539999966, 50.831595106000108 ], [ -119.006811386, 50.831608692000017 ], [ -119.00673141299994, 50.832118802000096 ], [ -119.006919494999963, 50.832130586000098 ], [ -119.006911360999979, 50.83226502400008 ], [ -119.006889924999967, 50.832638447000129 ], [ -119.006870114999913, 50.832985272 ], [ -119.006981184999944, 50.8331672320001 ], [ -119.006155995999919, 50.833342511000048 ], [ -119.003642500999931, 50.834050294000086 ], [ -119.001636384000022, 50.834301005000071 ], [ -118.998228217999937, 50.835303604000032 ], [ -118.997875346999933, 50.835531290000105 ], [ -118.997603589999954, 50.835514243000084 ], [ -118.997610596999934, 50.835678328000014 ], [ -118.996759050999984, 50.83569290700008 ], [ -118.996774153999965, 50.836046737000039 ], [ -118.996270003999953, 50.836002911000065 ], [ -118.99573890799999, 50.836209387000096 ], [ -118.995286209999932, 50.836244988 ], [ -118.995209276999915, 50.836210465000072 ], [ -118.99517379299999, 50.836194518000099 ], [ -118.99464879599995, 50.835958788000042 ] ], [ [ -118.997601924999941, 50.835475235000075 ], [ -118.997612404999956, 50.83540848200002 ], [ -118.997599083999944, 50.835408709000021 ], [ -118.997601924999941, 50.835475235000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "107", "sL_BldgLoss": "107", "sL_StrLoss": "107", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065C1274A80BF5DC00CE0B1C8C46B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -118.994268595, 50.843610551000047 ], [ -118.994298816999972, 50.843418175000096 ], [ -118.994174103999953, 50.843410350000042 ], [ -118.994187866999965, 50.843322745000123 ], [ -118.992004040999959, 50.843185690000112 ], [ -118.992055732999987, 50.842856756000089 ], [ -118.990859427999936, 50.842781659000053 ], [ -118.990906481999929, 50.84248229000012 ], [ -118.99055063899999, 50.84245995 ], [ -118.990575068999959, 50.842304525000017 ], [ -118.99036834499999, 50.842291545000094 ], [ -118.990385836999963, 50.842180262000035 ], [ -118.990199146999899, 50.84216854099999 ], [ -118.990289473999951, 50.841593895000088 ], [ -118.989597168000017, 50.841550426000055 ], [ -118.989654229999985, 50.841187435000073 ], [ -118.989214381999929, 50.841159815000019 ], [ -118.98923181399999, 50.841048931000032 ], [ -118.988981482999947, 50.84103321000007 ], [ -118.98899043099999, 50.840976295000083 ], [ -118.98886054399999, 50.840968138000086 ], [ -118.989243882999958, 50.840781201000063 ], [ -118.989960689999961, 50.840230004000063 ], [ -118.990957292999923, 50.839996398000089 ], [ -118.991458904999959, 50.840078991000034 ], [ -118.991734487999949, 50.840217205 ], [ -118.992619809999923, 50.841308095000045 ], [ -118.993135902999882, 50.841776695000121 ], [ -118.994890207999987, 50.842574200000108 ], [ -118.995989613999924, 50.843373206000074 ], [ -118.996305160999952, 50.843738323000096 ], [ -118.994268595, 50.843610551000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021850", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8820834", "BldgCostT": "6083334", "sL_LossRatio": "1", "sL_AssetLoss": "413", "sL_BldgLoss": "413", "sL_StrLoss": "413", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C9E581C0B1C65DC06579AA858A7D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.108479206999945, 50.976797395000084 ], [ -119.110702302999968, 50.976077712000055 ], [ -119.110609653999987, 50.976675606000114 ], [ -119.11133242199999, 50.976720059000115 ], [ -119.111304474999955, 50.976900424000107 ], [ -119.110778470999932, 50.980294915000123 ], [ -119.109962896999946, 50.980244755000079 ], [ -119.109950035999987, 50.980327733000131 ], [ -119.108892450999974, 50.980262679000163 ], [ -119.108779323999897, 50.980992459000042 ], [ -119.107956521999938, 50.980941840000064 ], [ -119.107804932999926, 50.98191958000006 ], [ -119.10705287499998, 50.981873307000043 ], [ -119.107043200999925, 50.981935697000054 ], [ -119.106792381000034, 50.981920263000099 ], [ -119.10675770099999, 50.982143902000061 ], [ -119.10661303699996, 50.982135001000067 ], [ -119.106402860999964, 50.983490307000039 ], [ -119.10617039499999, 50.983476002 ], [ -119.10614136, 50.983663214000096 ], [ -119.104183009999986, 50.983542686000071 ], [ -119.103975533999986, 50.984880060000116 ], [ -119.101996906999943, 50.98475825 ], [ -119.101991342999924, 50.984794105000077 ], [ -119.096316162999955, 50.984444525000065 ], [ -119.096407529999937, 50.983856238000065 ], [ -119.096479254999977, 50.983394419000057 ], [ -119.096894001999956, 50.983391506 ], [ -119.099093893999978, 50.982561191000052 ], [ -119.099243905999941, 50.98242299900015 ], [ -119.09954978699993, 50.981608401000095 ], [ -119.099954519, 50.981105696000064 ], [ -119.100906201999976, 50.980396409000086 ], [ -119.102071015999982, 50.979701394000131 ], [ -119.102723713999922, 50.979014896000052 ], [ -119.102880412999951, 50.978374005000028 ], [ -119.104293819999924, 50.977808607000071 ], [ -119.104602701999966, 50.977388509000015 ], [ -119.104864414999966, 50.977204689000146 ], [ -119.106812695999977, 50.9768187990001 ], [ -119.108039891999951, 50.976868593000084 ], [ -119.108479206999945, 50.976797395000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "118.9", "sL_BldgLoss": "118.9", "sL_StrLoss": "118.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000534255F12BC95DC09774104BB57C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.146070951999917, 50.972206399000072 ], [ -119.146644851999923, 50.972011811000122 ], [ -119.146604532999945, 50.972273399000052 ], [ -119.146344742999929, 50.97395886200011 ], [ -119.146112247999923, 50.975467120000062 ], [ -119.144843085999966, 50.975389453000034 ], [ -119.14478560699996, 50.975762250000074 ], [ -119.139111242999945, 50.975414827000158 ], [ -119.139210574999964, 50.97477109700003 ], [ -119.139326167999982, 50.974021971000056 ], [ -119.140030299999921, 50.973947586000079 ], [ -119.140649676999914, 50.973748193000063 ], [ -119.143031482999973, 50.973236895000063 ], [ -119.146070951999917, 50.972206399000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "86.7", "sL_BldgLoss": "86.7", "sL_StrLoss": "86.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DBCFD67FA5C95DC0C8116380617C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.152627894999966, 50.969714795000051 ], [ -119.153680220999945, 50.969453007000077 ], [ -119.15363705299994, 50.969733390000101 ], [ -119.153137813999976, 50.972975766000062 ], [ -119.152423108999926, 50.972932074000028 ], [ -119.152373196999932, 50.973256182000071 ], [ -119.146699090999988, 50.972909143000024 ], [ -119.146805957999945, 50.972215780000099 ], [ -119.146848011999978, 50.971942925000043 ], [ -119.148025998999955, 50.971543495000105 ], [ -119.150511084999948, 50.970436900000038 ], [ -119.152627894999966, 50.969714795000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "90246449", "BldgCostT": "59662212", "sL_LossRatio": "0.999823743289655", "sL_AssetLoss": "3772.906", "sL_BldgLoss": "3772.241", "sL_StrLoss": "3772", "sL_NStrLoss": "0.241", "sL_ContLoss": "0.665", "geom_point": "0101000020E61000001EB7EBE705CC5DC019ECD9B5357C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.173438361999942, 50.978589573000122 ], [ -119.173987268999952, 50.975014402000035 ], [ -119.17420415299992, 50.975027618000084 ], [ -119.174205659000023, 50.975017807000064 ], [ -119.176126726999939, 50.975134856000061 ], [ -119.17632083299999, 50.97387005300007 ], [ -119.176562003999948, 50.973884745000127 ], [ -119.176648606999947, 50.97332039300008 ], [ -119.17658838199999, 50.973321516000077 ], [ -119.176550562999978, 50.972512772000066 ], [ -119.176773173999962, 50.97250862300006 ], [ -119.176857318999978, 50.971960261000042 ], [ -119.177914266999949, 50.97202464300009 ], [ -119.177935844, 50.971884002000074 ], [ -119.177855490999974, 50.971879107000142 ], [ -119.178093178999973, 50.97032979500009 ], [ -119.17375866899998, 50.970065696000034 ], [ -119.173796505000013, 50.969819218000069 ], [ -119.17344796699993, 50.96979797500012 ], [ -119.173431228999931, 50.969907010000028 ], [ -119.172978719999932, 50.969879427000116 ], [ -119.172973208999963, 50.969915320000077 ], [ -119.171976128999958, 50.969854537000067 ], [ -119.171843706999979, 50.970716944000053 ], [ -119.17142919299999, 50.970691672000093 ], [ -119.171425586999987, 50.970715153000121 ], [ -119.167408509999987, 50.970470164000083 ], [ -119.165751656999987, 50.970369074000082 ], [ -119.165791084999952, 50.970112530000058 ], [ -119.161566442999941, 50.969854660000124 ], [ -119.161976994999961, 50.967184801000059 ], [ -119.161871949999963, 50.967178386000064 ], [ -119.161475994999989, 50.969753283000081 ], [ -119.155802264999963, 50.96940670100004 ], [ -119.155946018999941, 50.968472671000036 ], [ -119.156022918, 50.967973016000037 ], [ -119.156216496999903, 50.967867592000069 ], [ -119.156357508999932, 50.967810702000094 ], [ -119.156482797999942, 50.967753688000059 ], [ -119.156623002999979, 50.967698112000043 ], [ -119.157592601999937, 50.9674546050001 ], [ -119.158472704999895, 50.967357810000046 ], [ -119.159876614000012, 50.966917689000113 ], [ -119.160266398, 50.966712596000065 ], [ -119.160413894999948, 50.966530309000106 ], [ -119.160482739999935, 50.965618609000032 ], [ -119.160492724999969, 50.965486406000103 ], [ -119.160629557999982, 50.964988308000095 ], [ -119.160724015999932, 50.964644602000071 ], [ -119.161004476999935, 50.964244395 ], [ -119.160974725999921, 50.963837639000104 ], [ -119.160967692999961, 50.963741701000025 ], [ -119.161075392999948, 50.963613493000054 ], [ -119.163035597999965, 50.963469691000121 ], [ -119.164749716999921, 50.963617800000108 ], [ -119.16519140599992, 50.963590690000089 ], [ -119.166561794999907, 50.963079403000101 ], [ -119.16773988099996, 50.962949798000089 ], [ -119.169528121999974, 50.963132102000053 ], [ -119.170494290999926, 50.963394206000068 ], [ -119.171957206999963, 50.963609207000012 ], [ -119.173027106999939, 50.963949585000101 ], [ -119.174535590999966, 50.963956791000022 ], [ -119.177267418999989, 50.963285998000103 ], [ -119.178229584999912, 50.96313209000008 ], [ -119.179023597999901, 50.963072288000063 ], [ -119.17953699199991, 50.963368513000034 ], [ -119.179950902999934, 50.963676208000059 ], [ -119.180485095999984, 50.963845702000057 ], [ -119.181474580999961, 50.964025104000093 ], [ -119.182394878999972, 50.964081057000016 ], [ -119.182833113999905, 50.964107702000064 ], [ -119.183217323999941, 50.964100605000077 ], [ -119.184020912000022, 50.963932498000084 ], [ -119.185485296999943, 50.963859912000082 ], [ -119.18683848199997, 50.963871535000045 ], [ -119.186860833999958, 50.963871728000044 ], [ -119.18713640199999, 50.963874104000112 ], [ -119.188268976999922, 50.964033198000031 ], [ -119.188829808999984, 50.964111988000049 ], [ -119.189104028999978, 50.964070760000027 ], [ -119.192039103999932, 50.963629186000098 ], [ -119.193547398999925, 50.963592200000029 ], [ -119.197300809999959, 50.963755909000014 ], [ -119.197316193999924, 50.963808592000056 ], [ -119.197699481999933, 50.963784404000094 ], [ -119.199062880999932, 50.963973793000058 ], [ -119.199296468999961, 50.96397354500003 ], [ -119.199566974999982, 50.963973255000042 ], [ -119.200143272999952, 50.963972619000032 ], [ -119.201610917999986, 50.963971008000051 ], [ -119.202318219999924, 50.964146198000108 ], [ -119.202954296999962, 50.964227467000093 ], [ -119.203089849999969, 50.964244801000078 ], [ -119.203171100999924, 50.964255175000041 ], [ -119.203421707999922, 50.964287183000089 ], [ -119.203465264999977, 50.964298921000093 ], [ -119.203413875999942, 50.964635193000063 ], [ -119.203120141999975, 50.966557240000036 ], [ -119.202572778999979, 50.966524019000097 ], [ -119.202561019999948, 50.966600952000114 ], [ -119.196887371999964, 50.966256444000059 ], [ -119.196895245999926, 50.96620497300006 ], [ -119.19591231899993, 50.966145259000058 ], [ -119.195896906999977, 50.966246005000102 ], [ -119.195428176999926, 50.966217526000072 ], [ -119.195401693999898, 50.966390616000069 ], [ -119.192973080999963, 50.966243028000051 ], [ -119.192853518999982, 50.967024173000027 ], [ -119.192710390999963, 50.967015474000085 ], [ -119.192592640999948, 50.967784731000023 ], [ -119.193530929999923, 50.967841759000038 ], [ -119.193562231999948, 50.967637232000094 ], [ -119.194348782999953, 50.967685032000148 ], [ -119.194433022999959, 50.967134551000058 ], [ -119.196321871999956, 50.967249315000075 ], [ -119.196326035999945, 50.9672220940001 ], [ -119.201999802, 50.967566631000047 ], [ -119.201936666000023, 50.967979659000086 ], [ -119.203719875999965, 50.96808788400007 ], [ -119.203675329999939, 50.968379368000051 ], [ -119.203935802999965, 50.968395174000058 ], [ -119.203996852999921, 50.967995672000036 ], [ -119.209451179999988, 50.968326506000047 ], [ -119.209524319999943, 50.967847497000029 ], [ -119.210948226999946, 50.967933820000042 ], [ -119.210942787999954, 50.967819315000128 ], [ -119.211771081999956, 50.967803626000034 ], [ -119.212223551999926, 50.967795054000078 ], [ -119.212233848999958, 50.968011744000101 ], [ -119.215198267999952, 50.968191366000042 ], [ -119.215043851999923, 50.969203492000126 ], [ -119.213458334999984, 50.969235354000091 ], [ -119.213312112999944, 50.970651701000129 ], [ -119.213477193999893, 50.97183637200007 ], [ -119.213850313999927, 50.974513204000068 ], [ -119.213666024999924, 50.975797049000043 ], [ -119.21362190499994, 50.977652521000039 ], [ -119.209477451999931, 50.977401373000056 ], [ -119.209559444999982, 50.976864498000104 ], [ -119.208156345999924, 50.976779437000083 ], [ -119.208283837999915, 50.975944797000075 ], [ -119.208003422999965, 50.975927796000079 ], [ -119.207911125999914, 50.976532008000028 ], [ -119.202236173999935, 50.976187774000046 ], [ -119.202309215999946, 50.975710010000107 ], [ -119.202309420999882, 50.975708671000113 ], [ -119.200484877999983, 50.975597934000049 ], [ -119.200469910999985, 50.975695806000019 ], [ -119.200252021999987, 50.977120582000076 ], [ -119.199709362999926, 50.977087642000114 ], [ -119.199708696999934, 50.97709199400002 ], [ -119.1995491099999, 50.977082306000028 ], [ -119.199407736999945, 50.978006599000132 ], [ -119.196665551999956, 50.977840095000076 ], [ -119.196640613999961, 50.97800306200002 ], [ -119.193636132999956, 50.977820554000118 ], [ -119.19361517899992, 50.977957432000025 ], [ -119.187940155999939, 50.977612476000026 ], [ -119.188038487999933, 50.976970672000064 ], [ -119.187663490999952, 50.976947868000096 ], [ -119.187639266999923, 50.977105970000096 ], [ -119.181964398999952, 50.976760712 ], [ -119.181964702999963, 50.976758729000061 ], [ -119.181608635999936, 50.976737056000104 ], [ -119.181447034999906, 50.977790810000073 ], [ -119.179525839999911, 50.977673853000056 ], [ -119.179331807, 50.978938655000029 ], [ -119.179114903000013, 50.97892544900003 ], [ -119.179113396999981, 50.978935260000121 ], [ -119.173438361999942, 50.978589573000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "116.6", "sL_BldgLoss": "116.6", "sL_StrLoss": "116.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C9E39B168C75DC0B3295778177D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.112889264999964, 50.977139098000045 ], [ -119.11310809299999, 50.975726450000067 ], [ -119.113286613, 50.975712192000067 ], [ -119.113383919999961, 50.9756380970001 ], [ -119.113423912999963, 50.975287786000138 ], [ -119.113646481999965, 50.975156703000046 ], [ -119.113800073999982, 50.975133265000089 ], [ -119.114434494999969, 50.975172267000112 ], [ -119.114377414999922, 50.975548407000133 ], [ -119.114527317999958, 50.975743504000064 ], [ -119.115510456999957, 50.976301745000107 ], [ -119.115524569999977, 50.976309734000104 ], [ -119.115741303999954, 50.976432808000084 ], [ -119.116529089999958, 50.976535389000048 ], [ -119.116781985999978, 50.976458490000056 ], [ -119.116988586000019, 50.976283289000051 ], [ -119.117226594999948, 50.975568304000049 ], [ -119.117634730999967, 50.975368953000036 ], [ -119.118879758999924, 50.975445448000116 ], [ -119.118648830999945, 50.976937487000043 ], [ -119.118326429999968, 50.979020346000041 ], [ -119.112651857999964, 50.978671588000054 ], [ -119.112889264999964, 50.977139098000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "88.9", "sL_BldgLoss": "88.9", "sL_StrLoss": "88.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ACC397AAF0C75DC0511D8215ED7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.121820673999977, 50.974468792000025 ], [ -119.1221204799999, 50.974463096000065 ], [ -119.122681685999936, 50.974588509000043 ], [ -119.124499692999962, 50.974770805000041 ], [ -119.127144727999962, 50.975464291000065 ], [ -119.127092939999955, 50.975799311000095 ], [ -119.126857507, 50.977322256000043 ], [ -119.121183083999966, 50.976973928000056 ], [ -119.121375893999968, 50.975727732000088 ], [ -119.121557014999922, 50.974557017000052 ], [ -119.121820673999977, 50.974468792000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "86.6", "sL_BldgLoss": "86.6", "sL_StrLoss": "86.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B02193E795C85DC076BB660BEB7C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.136831210999986, 50.974393384000095 ], [ -119.13685419799998, 50.974389346000073 ], [ -119.136743417999966, 50.975107020000067 ], [ -119.136413123999887, 50.977246638000047 ], [ -119.130738634999972, 50.976898793000025 ], [ -119.130892038999917, 50.975905902000051 ], [ -119.130953174999917, 50.975510190000072 ], [ -119.132391182000021, 50.975400303000086 ], [ -119.132856117999964, 50.975301993000038 ], [ -119.133275517999934, 50.975096907000093 ], [ -119.133726896999974, 50.974683894000052 ], [ -119.135492305999904, 50.974381990000026 ], [ -119.136831210999986, 50.974393384000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9388750", "BldgCostT": "6475000", "sL_LossRatio": "1", "sL_AssetLoss": "508.8", "sL_BldgLoss": "508.8", "sL_StrLoss": "508.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000296164D1CDCD5DC015836ECC3E7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.213037919999934, 50.966788990000083 ], [ -119.213096271999959, 50.966406622000136 ], [ -119.210624967999948, 50.966256831000116 ], [ -119.209009416999919, 50.966158880000094 ], [ -119.209028592, 50.966033310000043 ], [ -119.209090736999912, 50.965626316000034 ], [ -119.209309213999987, 50.965624499000093 ], [ -119.209561887999911, 50.965529094000047 ], [ -119.209963749999929, 50.96521978300013 ], [ -119.210111393999938, 50.965106093000081 ], [ -119.210267935999966, 50.964868857000035 ], [ -119.210412011999949, 50.964650454000079 ], [ -119.210572299999981, 50.964407522000037 ], [ -119.210616001999966, 50.964341284000064 ], [ -119.21112387399991, 50.963963194000016 ], [ -119.211373596999962, 50.963777288000117 ], [ -119.211636911999975, 50.963341490000118 ], [ -119.211622298999913, 50.963035311000048 ], [ -119.211493035999979, 50.962837230000048 ], [ -119.211356484999968, 50.962628055000067 ], [ -119.211253158999938, 50.96246973000013 ], [ -119.21110080499993, 50.962236304000065 ], [ -119.211093522999988, 50.962073903000089 ], [ -119.211366704999961, 50.961826111000114 ], [ -119.211825591, 50.961611107000046 ], [ -119.212054885, 50.961327700000055 ], [ -119.212796919, 50.959568802000085 ], [ -119.212770718999934, 50.95871420200006 ], [ -119.213004100999953, 50.95853910500005 ], [ -119.214199785999966, 50.958543306000145 ], [ -119.215846983999938, 50.958745604000121 ], [ -119.217657805999949, 50.958504893000097 ], [ -119.218944746999924, 50.958487040000058 ], [ -119.218949811999948, 50.958553875000128 ], [ -119.218811395999964, 50.959140110000128 ], [ -119.220195491999917, 50.959102104000038 ], [ -119.220106115999926, 50.961726402000039 ], [ -119.221471833999942, 50.961730952000082 ], [ -119.221622886999953, 50.961731449000048 ], [ -119.22181188499998, 50.961732073000057 ], [ -119.22155617199995, 50.963410026000091 ], [ -119.218674212999929, 50.963235546000092 ], [ -119.218651641999941, 50.963383592000092 ], [ -119.217169752999922, 50.96329384700006 ], [ -119.217149051999968, 50.963429597000115 ], [ -119.219256897, 50.9635572460001 ], [ -119.218711759999962, 50.967132682000042 ], [ -119.213037919999934, 50.966788990000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15739833", "BldgCostT": "10383333", "sL_LossRatio": "1", "sL_AssetLoss": "683.1", "sL_BldgLoss": "683.1", "sL_StrLoss": "683.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000177342AE75D25DC026B4A340387A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.256865801999979, 50.966198502000083 ], [ -119.257786301999943, 50.966064590000073 ], [ -119.258121700999965, 50.966100775000029 ], [ -119.258630896999946, 50.966155687000089 ], [ -119.259708710999945, 50.96607168300006 ], [ -119.259893066999979, 50.966026911000014 ], [ -119.2601891139999, 50.965954971000016 ], [ -119.260306652999958, 50.965926423000013 ], [ -119.260473241999989, 50.965885919000108 ], [ -119.260833894999962, 50.965798308000061 ], [ -119.260970402999973, 50.96578193600007 ], [ -119.261704123999934, 50.965767724000067 ], [ -119.26171551199999, 50.965692553000018 ], [ -119.262297951999969, 50.965622708000105 ], [ -119.262448779999971, 50.965604595000094 ], [ -119.263249484999918, 50.96535530200002 ], [ -119.263420722999967, 50.965325029000056 ], [ -119.263519827999914, 50.96530751800001 ], [ -119.263666144999917, 50.965281658000045 ], [ -119.263723198999983, 50.965271594000072 ], [ -119.264413991000012, 50.96514949100002 ], [ -119.264676003999966, 50.965103210000024 ], [ -119.265376281999963, 50.964873897000167 ], [ -119.26702904299998, 50.964523229000122 ], [ -119.26747687799994, 50.96442819300011 ], [ -119.268708489999966, 50.963990892000076 ], [ -119.269092880999935, 50.963882772000026 ], [ -119.269421318999932, 50.963790379000095 ], [ -119.269458893999939, 50.96377981500008 ], [ -119.269580952999931, 50.963745470000049 ], [ -119.269746350999938, 50.963698944000015 ], [ -119.269897204999921, 50.963656525000076 ], [ -119.270323498999957, 50.963536608000027 ], [ -119.271588795999975, 50.962891388000052 ], [ -119.272017028999969, 50.962647427000093 ], [ -119.272128690999935, 50.962583810000105 ], [ -119.272522210999966, 50.962468494000056 ], [ -119.273957903999928, 50.962412911000051 ], [ -119.27406806099998, 50.962382411000043 ], [ -119.275110684999987, 50.962093900000106 ], [ -119.276297400999979, 50.961908707000084 ], [ -119.277236031999962, 50.961648594000046 ], [ -119.277240383999953, 50.961647388000053 ], [ -119.277432597999962, 50.961594112000036 ], [ -119.277501695999916, 50.961574960000043 ], [ -119.277537398999968, 50.961565050000054 ], [ -119.277689894, 50.961522793000022 ], [ -119.277867605999987, 50.961510282000049 ], [ -119.277924979999952, 50.961506236000076 ], [ -119.277966994999971, 50.961503261000111 ], [ -119.278923100999947, 50.961435895000129 ], [ -119.279755811999976, 50.961256503000101 ], [ -119.280492393999964, 50.960918901000092 ], [ -119.280736217999944, 50.960860168000117 ], [ -119.280923678999969, 50.960814982000038 ], [ -119.281183923999919, 50.960752304000039 ], [ -119.281288391999951, 50.960741980000087 ], [ -119.281977721, 50.960673899000106 ], [ -119.282519213999947, 50.960411894000067 ], [ -119.282661095999984, 50.960278683000098 ], [ -119.282940887999928, 50.960015989000041 ], [ -119.283480816999955, 50.959021801000048 ], [ -119.283489791999955, 50.959005215000083 ], [ -119.283564177999921, 50.958868272000082 ], [ -119.283621510999978, 50.958762703000076 ], [ -119.28396834099999, 50.957577233000073 ], [ -119.283993997999914, 50.957489578000093 ], [ -119.284005213999976, 50.957451243000044 ], [ -119.284049803, 50.957298895000051 ], [ -119.284084900999972, 50.957178887000033 ], [ -119.284413894999901, 50.955778909000117 ], [ -119.284218700999972, 50.954720701000049 ], [ -119.283992185999949, 50.95442018900011 ], [ -119.283593103999962, 50.954139710000021 ], [ -119.282537606999952, 50.954403193000076 ], [ -119.281639009999978, 50.954348996000085 ], [ -119.28158281799989, 50.954323516000045 ], [ -119.281902041999942, 50.952209516000025 ], [ -119.282037096999915, 50.952217620000098 ], [ -119.282079283999906, 50.951938229000071 ], [ -119.282130264999978, 50.951927890000036 ], [ -119.283401821999973, 50.951670106000094 ], [ -119.28369530499999, 50.951348944000124 ], [ -119.28375321499999, 50.951285600000077 ], [ -119.284079711999965, 50.950406809000086 ], [ -119.284563798999955, 50.950127696000067 ], [ -119.2854783169999, 50.949921204000077 ], [ -119.286009403999984, 50.949676200000091 ], [ -119.28612768399995, 50.949534273000026 ], [ -119.286131394000023, 50.949529834000082 ], [ -119.286135844999947, 50.949524498000116 ], [ -119.286344119999939, 50.949274597000105 ], [ -119.286485502999966, 50.94867779200009 ], [ -119.286526677999944, 50.948613697000162 ], [ -119.286646094999966, 50.94847699000006 ], [ -119.286782086999963, 50.948338910000089 ], [ -119.288179407999962, 50.948059689000104 ], [ -119.289722792999896, 50.947885995000078 ], [ -119.291044224999936, 50.947850402000014 ], [ -119.292219422999963, 50.948025505000025 ], [ -119.294269602999989, 50.949182010000087 ], [ -119.295110250999969, 50.949375352000033 ], [ -119.295279111999946, 50.949414188000056 ], [ -119.296337008999984, 50.949797296000042 ], [ -119.29686442299996, 50.950075001000108 ], [ -119.29886847599991, 50.951474993000012 ], [ -119.299701792999954, 50.951926507000074 ], [ -119.300451417999952, 50.952073100000099 ], [ -119.301172497999914, 50.951969211000119 ], [ -119.301713182999947, 50.951662794000157 ], [ -119.301379125999958, 50.953881623000058 ], [ -119.301223138999916, 50.953872291000089 ], [ -119.301133782999926, 50.954465751000058 ], [ -119.301059674999962, 50.954957929000031 ], [ -119.295386751999956, 50.954618391000089 ], [ -119.295472794999966, 50.954047433000063 ], [ -119.295132646999988, 50.954027064000108 ], [ -119.294797173999925, 50.954006976000095 ], [ -119.294818911999968, 50.95386274 ], [ -119.294917802999947, 50.953206567000066 ], [ -119.294980331999938, 50.952791663000056 ], [ -119.294725056999937, 50.952776377000042 ], [ -119.294770023999945, 50.952478002000056 ], [ -119.294285163999959, 50.95244896400007 ], [ -119.294286792999969, 50.952438146000091 ], [ -119.293635641999927, 50.952399147000101 ], [ -119.293797048999963, 50.951328304000143 ], [ -119.291636854999979, 50.951198894000051 ], [ -119.291689439999985, 50.950850121000045 ], [ -119.290456840999965, 50.950776262000041 ], [ -119.290535327999962, 50.950255780000056 ], [ -119.289839160999989, 50.950214057000089 ], [ -119.289667767999958, 50.95135049700005 ], [ -119.28899397099994, 50.951310111000083 ], [ -119.288836888999953, 50.952351513000032 ], [ -119.287892491999955, 50.952294902000112 ], [ -119.287891943999966, 50.952298535000089 ], [ -119.287750014999972, 50.952290026000114 ], [ -119.287687898999962, 50.952701753000099 ], [ -119.287702560999932, 50.952702633000079 ], [ -119.287683351999931, 50.952829952000044 ], [ -119.289377216999952, 50.952931486000089 ], [ -119.289348729000011, 50.95312035900011 ], [ -119.292907416999981, 50.953333590000057 ], [ -119.292857441999942, 50.953665089000076 ], [ -119.292811360999934, 50.953970751000035 ], [ -119.292368305999958, 50.956909423000077 ], [ -119.291548625999923, 50.956860319000086 ], [ -119.29143030699997, 50.957644943000055 ], [ -119.289139513999885, 50.957507679000045 ], [ -119.289135498999926, 50.957534295000151 ], [ -119.288784867999979, 50.957513281000075 ], [ -119.288597745999979, 50.958753605000041 ], [ -119.287276802999884, 50.958674429000091 ], [ -119.286936633999971, 50.960928596000031 ], [ -119.287588200999949, 50.960967652000129 ], [ -119.28763950499993, 50.960627665000068 ], [ -119.288223667999944, 50.960662678000048 ], [ -119.288246284999957, 50.960512779000076 ], [ -119.293919901999971, 50.960852675000076 ], [ -119.29379210499998, 50.961700365000048 ], [ -119.290185976999965, 50.961713366000048 ], [ -119.289952182999983, 50.961714201000106 ], [ -119.289306676999956, 50.961712889000097 ], [ -119.28710831399998, 50.961708391000037 ], [ -119.287097062999976, 50.961708356000059 ], [ -119.285655279999958, 50.961705376000054 ], [ -119.284815388999974, 50.961703635000077 ], [ -119.283453400000013, 50.961700796000066 ], [ -119.28353432899992, 50.961003624000064 ], [ -119.283538895999968, 50.960964515000072 ], [ -119.283520912999961, 50.960906758000128 ], [ -119.283416501999952, 50.960571081000097 ], [ -119.283298308999946, 50.960406107000061 ], [ -119.282841401999917, 50.960635808000099 ], [ -119.279005158999965, 50.961756963000013 ], [ -119.277605220999931, 50.962166042000071 ], [ -119.276567385999954, 50.962469308000074 ], [ -119.276033588999923, 50.962608059000075 ], [ -119.275312902999957, 50.962795400000118 ], [ -119.274580613999973, 50.962895708000069 ], [ -119.274405165999923, 50.962904336000115 ], [ -119.273589921999985, 50.962944506000049 ], [ -119.273158519999981, 50.962986295000057 ], [ -119.272670395999953, 50.963033587000069 ], [ -119.271944590999951, 50.963146142000049 ], [ -119.271849281999934, 50.96316093900009 ], [ -119.271832098999951, 50.963163594000058 ], [ -119.270937492, 50.963500964000062 ], [ -119.269954402999971, 50.963871691000065 ], [ -119.268339402999956, 50.964345578000092 ], [ -119.266928948, 50.964759414000099 ], [ -119.266599093999915, 50.964856193000045 ], [ -119.26648944599999, 50.96488505200012 ], [ -119.263083700999971, 50.96578140000004 ], [ -119.262002110999973, 50.966004096000098 ], [ -119.261553698999961, 50.966072707000123 ], [ -119.260659283999971, 50.966212809000041 ], [ -119.258902117999924, 50.966425499000088 ], [ -119.257746861, 50.96644618600002 ], [ -119.256627086000023, 50.966466188000069 ], [ -119.255878695999968, 50.966615095000094 ], [ -119.255536706999976, 50.966742929000098 ], [ -119.255327886999936, 50.966821005000057 ], [ -119.254710177000021, 50.96709949100012 ], [ -119.254226766999977, 50.967348666000085 ], [ -119.254285563999957, 50.966961014000077 ], [ -119.254754092, 50.966706900000119 ], [ -119.255337958999959, 50.966566328000056 ], [ -119.256457134999906, 50.966296891000113 ], [ -119.256458247999916, 50.966296625000084 ], [ -119.256865801999979, 50.966198502000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "99.5", "sL_BldgLoss": "99.5", "sL_StrLoss": "99.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0BE4CB176D85DC090E0A183097C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.379672896999963, 50.967084585000045 ], [ -119.385348041999947, 50.967419860000099 ], [ -119.384816171999958, 50.970996078000034 ], [ -119.379140575999941, 50.97066077700012 ], [ -119.379672896999963, 50.967084585000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "94.7", "sL_BldgLoss": "94.7", "sL_StrLoss": "94.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FED881AB7D85DC0001A4A928C794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.384078791999968, 50.95138700400004 ], [ -119.384120939999946, 50.951103524000054 ], [ -119.383669301999987, 50.951076838000056 ], [ -119.384201025999971, 50.947500545000054 ], [ -119.38447642499996, 50.947516819000022 ], [ -119.38451392799999, 50.947264552000036 ], [ -119.38835848899997, 50.947491651000114 ], [ -119.388376139999977, 50.94982671700005 ], [ -119.38837904199994, 50.950297104000079 ], [ -119.388390080999926, 50.951892784000073 ], [ -119.384041776999965, 50.951635947000035 ], [ -119.384078791999968, 50.95138700400004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "92664500", "BldgCostT": "62465000", "sL_LossRatio": "0.999057887614837", "sL_AssetLoss": "5201.078", "sL_BldgLoss": "5196.178", "sL_StrLoss": "5194.4", "sL_NStrLoss": "1.778", "sL_ContLoss": "4.9", "geom_point": "0101000020E6100000A6172952A9D65DC040D07E626C7A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.351954675999977, 50.975156817000048 ], [ -119.351961693999954, 50.975109866000068 ], [ -119.351296656999949, 50.975070400000064 ], [ -119.351348918999918, 50.974720841000099 ], [ -119.35070936299995, 50.974682884000053 ], [ -119.35124401199991, 50.971106842000083 ], [ -119.35312354899996, 50.971218383000107 ], [ -119.353328324999978, 50.971230534000036 ], [ -119.353348062999899, 50.971098459000132 ], [ -119.353145801999972, 50.971086457000112 ], [ -119.353149430999906, 50.971062174000089 ], [ -119.353122981999931, 50.971060604000051 ], [ -119.352663587999956, 50.971033344000055 ], [ -119.352673211999942, 50.9709689580001 ], [ -119.348700365999946, 50.970733135000025 ], [ -119.349235126999972, 50.967157088000079 ], [ -119.349243415000018, 50.967157580000048 ], [ -119.349444115, 50.965815306000117 ], [ -119.347965886999987, 50.965727524000052 ], [ -119.348013949999938, 50.965406136000063 ], [ -119.345071162999929, 50.965231324000044 ], [ -119.345059600999917, 50.965308599000068 ], [ -119.339385028999956, 50.964971289000033 ], [ -119.339573210999959, 50.963714540000133 ], [ -119.339444617999987, 50.963706893000094 ], [ -119.339749171999969, 50.961672872000065 ], [ -119.33989389499996, 50.960706246000072 ], [ -119.339077416999956, 50.960657688000047 ], [ -119.339612829999965, 50.957081646000063 ], [ -119.339858760999903, 50.957096273000083 ], [ -119.339925441, 50.956650852000024 ], [ -119.345598958999929, 50.956988139000032 ], [ -119.345540840999931, 50.95737670000009 ], [ -119.34634056199998, 50.95742421900006 ], [ -119.345888042999903, 50.960449700000048 ], [ -119.349583969999927, 50.960669236000072 ], [ -119.349432100999962, 50.961685088000067 ], [ -119.349354790999897, 50.962202185000095 ], [ -119.35065633399995, 50.962279466000012 ], [ -119.350719952999924, 50.961853852000061 ], [ -119.350987358999987, 50.960064814000134 ], [ -119.351483630999908, 50.960094276000028 ], [ -119.351721616999967, 50.95850182700007 ], [ -119.351951774999989, 50.958515490000131 ], [ -119.351994819999973, 50.958227432000044 ], [ -119.352788158999942, 50.958274526000125 ], [ -119.352871160999911, 50.95771901100008 ], [ -119.351026862999916, 50.957609523000031 ], [ -119.351277354999937, 50.955933408000085 ], [ -119.349697436999975, 50.955839591000014 ], [ -119.349722627999967, 50.955671064000057 ], [ -119.349616946999973, 50.955664789000146 ], [ -119.34964671399996, 50.955465645000068 ], [ -119.348857436999964, 50.955418768000129 ], [ -119.349340305999988, 50.952188522 ], [ -119.348512751999962, 50.952139364000068 ], [ -119.349047304999957, 50.948563243000081 ], [ -119.350735736999923, 50.948663531000058 ], [ -119.351212182, 50.948691825000083 ], [ -119.351225501999934, 50.948602688000079 ], [ -119.350655376999896, 50.948568830000042 ], [ -119.350939584999963, 50.946666809000085 ], [ -119.348905554999973, 50.946545989000136 ], [ -119.346917944999973, 50.946427891000056 ], [ -119.346820628999978, 50.947078799000053 ], [ -119.343601856999896, 50.946887472000093 ], [ -119.343438731, 50.947977975000093 ], [ -119.338754577999921, 50.947699375000113 ], [ -119.338574471999934, 50.94890248400003 ], [ -119.337790424999966, 50.948855832000056 ], [ -119.337784037999938, 50.948898501000045 ], [ -119.335788983999976, 50.948779768000094 ], [ -119.335772046999949, 50.948892848000057 ], [ -119.33504616499998, 50.948849639000045 ], [ -119.335035017999971, 50.948924065000021 ], [ -119.33406976500001, 50.948866599000077 ], [ -119.333990698, 50.949394387000112 ], [ -119.333626000999928, 50.94937267300002 ], [ -119.333586895999971, 50.949633697000102 ], [ -119.332153193999943, 50.949548322000027 ], [ -119.332092247999938, 50.949955030000048 ], [ -119.329958973999979, 50.949827963000132 ], [ -119.329804412999977, 50.949818754000027 ], [ -119.32950854099991, 50.951792385000033 ], [ -119.328502010999927, 50.951732416 ], [ -119.328489296999948, 50.951817208000065 ], [ -119.327793777999887, 50.951775763000065 ], [ -119.327747581, 50.952083824000077 ], [ -119.327243415999988, 50.95205378 ], [ -119.327197471999924, 50.952360137000042 ], [ -119.321846924999988, 50.952041139000087 ], [ -119.32168247599995, 50.953136761000025 ], [ -119.321488240999926, 50.953125176000057 ], [ -119.321461973999973, 50.953300166000091 ], [ -119.319486404999964, 50.953182314000095 ], [ -119.319283049999967, 50.954536612000055 ], [ -119.314515607999951, 50.95425206700007 ], [ -119.314515225999983, 50.954254623000011 ], [ -119.314479748999972, 50.954252504000102 ], [ -119.314459729999982, 50.954385723000087 ], [ -119.31284019499995, 50.954289013000057 ], [ -119.312426245000012, 50.957042892000068 ], [ -119.312417696999958, 50.95709976400007 ], [ -119.311545584999962, 50.95704767600008 ], [ -119.31152876099999, 50.957159584000117 ], [ -119.308189217999953, 50.95696006500004 ], [ -119.308153614999981, 50.957196761 ], [ -119.302480352999964, 50.956857583000051 ], [ -119.30263740399991, 50.95581437100001 ], [ -119.302539028999917, 50.955808486000045 ], [ -119.302744838999971, 50.954441334000123 ], [ -119.303077310999967, 50.952232600000087 ], [ -119.308749989999924, 50.952571750000075 ], [ -119.308734663999957, 50.952673655000055 ], [ -119.308694602999978, 50.952940028000043 ], [ -119.308814491999897, 50.952947192000046 ], [ -119.308849991999949, 50.952711134000026 ], [ -119.309239279999929, 50.950122459000063 ], [ -119.310096706999929, 50.95020028600009 ], [ -119.310645504999911, 50.950361211000022 ], [ -119.311396900999952, 50.950858295000032 ], [ -119.311948308999945, 50.95108190500013 ], [ -119.313084908999954, 50.951328302000029 ], [ -119.314689014999928, 50.951207191000073 ], [ -119.315527515999989, 50.950883899000083 ], [ -119.316289094999931, 50.950742902000101 ], [ -119.317383314999944, 50.950694508 ], [ -119.319045986999953, 50.950930907000071 ], [ -119.320791901999925, 50.950806992000068 ], [ -119.32312968599993, 50.950274397000094 ], [ -119.324325190999957, 50.949701799000081 ], [ -119.325250504999971, 50.949432705000078 ], [ -119.325803603999958, 50.948827386000069 ], [ -119.326148713999942, 50.948605203000049 ], [ -119.326766584999973, 50.948403003000067 ], [ -119.327345106999957, 50.948328900000057 ], [ -119.327673405999988, 50.948052591000064 ], [ -119.328147894000011, 50.947844691000029 ], [ -119.328127485999957, 50.947729306000042 ], [ -119.327608191999943, 50.947586908000076 ], [ -119.327602298999935, 50.947470092000088 ], [ -119.327982316999922, 50.947119691000061 ], [ -119.32847960499997, 50.946822102000098 ], [ -119.330768998999957, 50.946443303000109 ], [ -119.332060091999949, 50.946390604000065 ], [ -119.332458286999923, 50.946356396000034 ], [ -119.333634590999964, 50.945990398000092 ], [ -119.334693924999925, 50.945798104000048 ], [ -119.3363224899999, 50.945639996000061 ], [ -119.338389303999989, 50.945698388000103 ], [ -119.339322897999949, 50.945553105000023 ], [ -119.34126648099999, 50.945441996000078 ], [ -119.342212019, 50.945269705000037 ], [ -119.343418801999945, 50.944886591000113 ], [ -119.34375990299999, 50.944600284000053 ], [ -119.344104490999939, 50.943235894000097 ], [ -119.34419548799994, 50.942226203000125 ], [ -119.344549077999972, 50.941904293000064 ], [ -119.348463286999959, 50.940773492000091 ], [ -119.34958949699994, 50.940813292000016 ], [ -119.351624700999935, 50.941061200000036 ], [ -119.351997092999966, 50.941125192000122 ], [ -119.353749989999983, 50.941979805000059 ], [ -119.354643589999938, 50.942510994000074 ], [ -119.356548284000013, 50.94298529800006 ], [ -119.360559294, 50.942931106000024 ], [ -119.363675703, 50.943200297000082 ], [ -119.36593790799999, 50.943137697000097 ], [ -119.367563084999929, 50.942932605000095 ], [ -119.373812903999962, 50.942932599000116 ], [ -119.374421459999908, 50.942912269000033 ], [ -119.374374947999968, 50.943224696000101 ], [ -119.374110103999968, 50.945003579000051 ], [ -119.373345811999954, 50.944958342000071 ], [ -119.37333587199997, 50.94502509700002 ], [ -119.372258641999977, 50.944961330000105 ], [ -119.372250124999965, 50.945018521000094 ], [ -119.371549147999957, 50.944977021000078 ], [ -119.371542293999966, 50.945023039000077 ], [ -119.36708966399999, 50.944759321000099 ], [ -119.366944232999941, 50.945735041000034 ], [ -119.364963479999957, 50.945617669000043 ], [ -119.364665940999927, 50.947613190000069 ], [ -119.361344586999962, 50.947416298000107 ], [ -119.361320692, 50.947576467000033 ], [ -119.360776105999918, 50.947544174000015 ], [ -119.36051122799999, 50.949319443000086 ], [ -119.360430184999942, 50.949862582000023 ], [ -119.35985717599999, 50.949828601000057 ], [ -119.359847460999958, 50.949893695000128 ], [ -119.357859146999886, 50.94977575900004 ], [ -119.357703312999973, 50.950819688000074 ], [ -119.360644195999939, 50.950994113000057 ], [ -119.360521760999973, 50.951814643 ], [ -119.360819248, 50.951832283000094 ], [ -119.36119148, 50.949337484000054 ], [ -119.36132607499998, 50.948435324000059 ], [ -119.36153581799995, 50.948447760000064 ], [ -119.361632297999932, 50.947801030000043 ], [ -119.367304855999933, 50.948137224000035 ], [ -119.36713517799997, 50.949275568000111 ], [ -119.367439931999982, 50.949293621000031 ], [ -119.367050087999985, 50.951908935000155 ], [ -119.366906842999953, 50.952869826000075 ], [ -119.361764485999984, 50.952565084000106 ], [ -119.361677665999977, 50.953147001000104 ], [ -119.36265707599992, 50.953205061000077 ], [ -119.362123556999933, 50.956781228000061 ], [ -119.35764818499996, 50.956515857000078 ], [ -119.357558083999919, 50.957119345000073 ], [ -119.358674797999981, 50.957185578000043 ], [ -119.358526350999966, 50.958179980000104 ], [ -119.363628408999944, 50.958482444000026 ], [ -119.363573174999985, 50.958852718000109 ], [ -119.363651232999942, 50.958857344000066 ], [ -119.363636290999949, 50.958957518000076 ], [ -119.364200123999922, 50.95899092900008 ], [ -119.364168054999979, 50.95920592700007 ], [ -119.366168660999946, 50.95932445200004 ], [ -119.366324289999952, 50.958280760000058 ], [ -119.371998214999962, 50.95861671300004 ], [ -119.37194463099992, 50.95897637200008 ], [ -119.37246954299999, 50.959007438000043 ], [ -119.372724994999956, 50.957292620000061 ], [ -119.368611540999893, 50.95704911000005 ], [ -119.369144543999937, 50.953472914000066 ], [ -119.369216011999967, 50.953477145000065 ], [ -119.369252751999966, 50.953230616000077 ], [ -119.36976110399992, 50.95326071700002 ], [ -119.369763789, 50.953242697000086 ], [ -119.36977673399997, 50.95315582800005 ], [ -119.372726635, 50.953330457000035 ], [ -119.372842801000019, 50.952550530000046 ], [ -119.372848732999969, 50.952510713000024 ], [ -119.372853338, 50.952479796000027 ], [ -119.375176858999978, 50.952617290000042 ], [ -119.37523395499997, 50.952620668000122 ], [ -119.378526572999988, 50.952815422000057 ], [ -119.378406117999987, 50.953624840000025 ], [ -119.38245710399994, 50.953864315000068 ], [ -119.382407112999928, 50.954200426000114 ], [ -119.383212101999945, 50.954247995000053 ], [ -119.382680217999962, 50.957824256 ], [ -119.382140693999972, 50.957792374000071 ], [ -119.38176124899995, 50.960343104000053 ], [ -119.387313900999956, 50.960671093 ], [ -119.386817778999941, 50.964008485000086 ], [ -119.386782268999966, 50.96424734700004 ], [ -119.386427934999944, 50.964226425000099 ], [ -119.386001898999936, 50.967091759000077 ], [ -119.380326790999931, 50.96675651700015 ], [ -119.380458142999942, 50.965873895000122 ], [ -119.379928738999965, 50.965842608000116 ], [ -119.379943846999964, 50.965741100000066 ], [ -119.379539433999952, 50.96571719700006 ], [ -119.380071663999956, 50.96214098300009 ], [ -119.380482218999973, 50.962165249000066 ], [ -119.380695519999961, 50.962177856000039 ], [ -119.380912299, 50.960720952000059 ], [ -119.379864594999972, 50.960659026000052 ], [ -119.379731756999931, 50.961551669000059 ], [ -119.379906530999932, 50.96156199900004 ], [ -119.37987748499998, 50.961757177000045 ], [ -119.379374293999945, 50.96513821500006 ], [ -119.379349657999967, 50.965136759000082 ], [ -119.379298611999971, 50.96547971600004 ], [ -119.37362375899994, 50.965144135000038 ], [ -119.373917245999976, 50.963173925000085 ], [ -119.373767102, 50.963165043000103 ], [ -119.37380179899999, 50.962932118000062 ], [ -119.37286959399998, 50.962876963000113 ], [ -119.372513902, 50.965264371000032 ], [ -119.366839127999967, 50.964928447 ], [ -119.366860590999963, 50.964784519000034 ], [ -119.366710734999955, 50.964775644000049 ], [ -119.366743395999919, 50.964556617000085 ], [ -119.36641954000001, 50.964537436000064 ], [ -119.366654626999946, 50.962960983000052 ], [ -119.364074430999977, 50.962808139000089 ], [ -119.363569363999929, 50.96619357400008 ], [ -119.357964023999926, 50.965861318000108 ], [ -119.357691091, 50.967689006000114 ], [ -119.356823631999973, 50.967637561000103 ], [ -119.356818478999969, 50.967672060000034 ], [ -119.358873029999984, 50.967793892000017 ], [ -119.358869402999929, 50.967818176000058 ], [ -119.359355216, 50.967846979000093 ], [ -119.35933490099994, 50.967983036000092 ], [ -119.35994430599996, 50.968019163000029 ], [ -119.359410392999905, 50.971595258000036 ], [ -119.359003205999926, 50.971571119000011 ], [ -119.358992475999941, 50.971642967000051 ], [ -119.358166995999937, 50.971594027000059 ], [ -119.35814395099996, 50.971748340000097 ], [ -119.358824707999986, 50.971788701000044 ], [ -119.35829066, 50.975364775000052 ], [ -119.357655489999942, 50.975327117000099 ], [ -119.357630639999968, 50.975493490000126 ], [ -119.353138060999953, 50.975227035000046 ], [ -119.351954675999977, 50.975156817000048 ] ], [ [ -119.381596792, 50.960623651000041 ], [ -119.38163817600001, 50.960345482 ], [ -119.381328126999975, 50.960327159000059 ], [ -119.381286740999926, 50.960605328000021 ], [ -119.381596792, 50.960623651000041 ] ], [ [ -119.361258155999934, 50.952369615000094 ], [ -119.361307036, 50.952042011000039 ], [ -119.36121439399993, 50.95203651800005 ], [ -119.36116551299996, 50.95236412100013 ], [ -119.361258155999934, 50.952369615000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "222", "sL_BldgLoss": "222", "sL_StrLoss": "222", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9E3CD4CB6D35DC0B73F5929EB7A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.303557001999962, 50.961423608000111 ], [ -119.303135698999952, 50.961398392 ], [ -119.302465926999972, 50.961585919000079 ], [ -119.302100182999979, 50.961688295000059 ], [ -119.301359499999975, 50.961712500000054 ], [ -119.300424469999911, 50.961699929000076 ], [ -119.300695374999975, 50.959901163000048 ], [ -119.303363534999932, 50.960060748000075 ], [ -119.303546409999939, 50.958845925000027 ], [ -119.307983866999948, 50.959111190000044 ], [ -119.308157259999959, 50.957958529000059 ], [ -119.313358557999905, 50.958269228000042 ], [ -119.313830702999951, 50.958297419000097 ], [ -119.313804143999931, 50.958474126000098 ], [ -119.313884412999954, 50.958478919000065 ], [ -119.313810712999967, 50.958969282000048 ], [ -119.313399024999939, 50.961708220000091 ], [ -119.312033136999929, 50.961714697000083 ], [ -119.311870588999952, 50.961715457000061 ], [ -119.311706866999955, 50.961716216000056 ], [ -119.311672311999956, 50.961716383000059 ], [ -119.311101203999954, 50.961840207000122 ], [ -119.310742211, 50.961971268000035 ], [ -119.310729344, 50.961975949000063 ], [ -119.310182006999938, 50.962175808000026 ], [ -119.309349886999911, 50.962312799000081 ], [ -119.308764379999957, 50.962342034000073 ], [ -119.307178095999973, 50.962421204000059 ], [ -119.306949394999933, 50.962429198000102 ], [ -119.306749498999949, 50.96241150300007 ], [ -119.306634409999944, 50.962401277000083 ], [ -119.306263917999928, 50.9622952900001 ], [ -119.305997817999966, 50.96218726300004 ], [ -119.305914542999972, 50.96215343500009 ], [ -119.305505900999947, 50.961987489000073 ], [ -119.304398297999953, 50.96161551600008 ], [ -119.303883389999939, 50.961498994000074 ], [ -119.303557001999962, 50.961423608000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD63A72785CF5DC0D20AC2CBC27B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.241194482999973, 50.968560011000079 ], [ -119.240191214999953, 50.967946771000094 ], [ -119.239176721999968, 50.967326594000021 ], [ -119.239140291999931, 50.967133188000027 ], [ -119.239158281999977, 50.966261016 ], [ -119.241188303999934, 50.966259986000111 ], [ -119.240998317999967, 50.964166508000098 ], [ -119.24073971199999, 50.963654711000103 ], [ -119.240311391999981, 50.963314876000069 ], [ -119.240103601999962, 50.963149999000045 ], [ -119.239746779999962, 50.962970633000026 ], [ -119.239728933999942, 50.962961665000122 ], [ -119.240942223999951, 50.961739302000062 ], [ -119.241382580999939, 50.961424491000045 ], [ -119.241244902999981, 50.962434313000102 ], [ -119.241311712999931, 50.962648853000069 ], [ -119.241558803999936, 50.963442157000046 ], [ -119.241868599999975, 50.964436712000058 ], [ -119.241877604999971, 50.96461401800007 ], [ -119.241888309999936, 50.964824105000098 ], [ -119.241478403999963, 50.966073107000113 ], [ -119.241837086999979, 50.966434903000113 ], [ -119.243624921000034, 50.967766499000035 ], [ -119.244702888999953, 50.968250694000112 ], [ -119.245476799999921, 50.968387506000113 ], [ -119.24637601499991, 50.9683888960001 ], [ -119.24671714599998, 50.96835537200009 ], [ -119.248138639999965, 50.9682156450001 ], [ -119.248302802999945, 50.96819950000004 ], [ -119.250742134999939, 50.96787321200005 ], [ -119.251238608999984, 50.96780679700008 ], [ -119.251195143999894, 50.968093233000062 ], [ -119.245850103999956, 50.968865901000129 ], [ -119.245414108999967, 50.968880185000138 ], [ -119.24502857899995, 50.968945703000045 ], [ -119.24488465499995, 50.968970150000111 ], [ -119.242522108999964, 50.969371494 ], [ -119.241194482999973, 50.968560011000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021899", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "85.7", "sL_BldgLoss": "85.7", "sL_StrLoss": "85.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F82AE03B3DD85DC06FEC7EBAA67C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.376165774999919, 50.97188231600007 ], [ -119.38184150299999, 50.972217765000018 ], [ -119.381309294999966, 50.975793948000096 ], [ -119.375633114999943, 50.975458472000064 ], [ -119.376165774999919, 50.97188231600007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "1", "sL_AssetLoss": "102.8", "sL_BldgLoss": "102.8", "sL_StrLoss": "102.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003710BB84FDCE5DC024A63CA1F47A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.238035909999923, 50.962110686000102 ], [ -119.237299109999967, 50.961740304000116 ], [ -119.236932300999925, 50.96174248600007 ], [ -119.236027434999968, 50.9617473610001 ], [ -119.235927515999947, 50.961747918000079 ], [ -119.235842119999944, 50.961748363000069 ], [ -119.235003108999976, 50.961752868000083 ], [ -119.234718479999941, 50.961754391000113 ], [ -119.232738466999976, 50.961765000000121 ], [ -119.232421297999949, 50.96176669700003 ], [ -119.229827525999951, 50.961758333000049 ], [ -119.230317290999963, 50.958540387000014 ], [ -119.230333746999932, 50.958432252000122 ], [ -119.230794342999943, 50.958460098000025 ], [ -119.230847647999923, 50.958109807 ], [ -119.231510602999919, 50.958402287000048 ], [ -119.232664195, 50.958582459000098 ], [ -119.232746298999956, 50.95859529200002 ], [ -119.23356290599996, 50.958722794000074 ], [ -119.23449909299994, 50.958974901000097 ], [ -119.234775532, 50.959174350000133 ], [ -119.234984429999898, 50.959325070000013 ], [ -119.235494719999934, 50.959693252000051 ], [ -119.235692287999939, 50.959835813000069 ], [ -119.236164668999962, 50.960176618000084 ], [ -119.236592444999957, 50.960485240000033 ], [ -119.236888831, 50.960699076000076 ], [ -119.237183694999942, 50.960911811000123 ], [ -119.237591395999956, 50.961092709000049 ], [ -119.2398662899999, 50.960990274000075 ], [ -119.240376591999976, 50.960967313000054 ], [ -119.240638640999975, 50.961061947000061 ], [ -119.24108649799993, 50.961223708 ], [ -119.240771305999957, 50.961463009000077 ], [ -119.240507989999969, 50.961891604000058 ], [ -119.239747292999951, 50.962687792000082 ], [ -119.239500667999934, 50.962846940000055 ], [ -119.239408582999886, 50.962800639000143 ], [ -119.238035909999923, 50.962110686000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "110.3", "sL_BldgLoss": "110.3", "sL_StrLoss": "110.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF180157EAD45DC0DC0F7860807A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.324404714999929, 50.955013194000109 ], [ -119.330077908999911, 50.955351266000058 ], [ -119.329541751999969, 50.958927269000121 ], [ -119.32922601099996, 50.958908461000107 ], [ -119.329201445999956, 50.959072276000065 ], [ -119.323527787, 50.958734161000038 ], [ -119.324064423999943, 50.955158186000055 ], [ -119.324380134999942, 50.955177008000078 ], [ -119.324404714999929, 50.955013194000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18632583", "BldgCostT": "12378333", "sL_LossRatio": "1", "sL_AssetLoss": "929", "sL_BldgLoss": "929", "sL_StrLoss": "929", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066ECCF6E02D55DC06F511CF6317C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.324174602, 50.979610120000068 ], [ -119.324185865999951, 50.978732997000051 ], [ -119.324185893, 50.978732790000102 ], [ -119.324191108999941, 50.978328286000114 ], [ -119.324175866999894, 50.977677243000073 ], [ -119.324169989999959, 50.977425894000113 ], [ -119.324152700999946, 50.976687839000121 ], [ -119.324142233999922, 50.976238655000053 ], [ -119.32413901799994, 50.976100885000108 ], [ -119.324101009999964, 50.973646970000082 ], [ -119.324098982999942, 50.973515465000077 ], [ -119.324097644999981, 50.973429669000055 ], [ -119.324092109999953, 50.973070594000021 ], [ -119.324090063999932, 50.972938696000064 ], [ -119.32408858899997, 50.972845479000092 ], [ -119.324085194999967, 50.972625110000074 ], [ -119.324085135999965, 50.972498158000086 ], [ -119.32408457799994, 50.971130990000098 ], [ -119.324841533000011, 50.971176100000037 ], [ -119.324940807999923, 50.970514670000057 ], [ -119.3240843, 50.970463626000047 ], [ -119.324083949999974, 50.969709365000043 ], [ -119.324083935999965, 50.969619513000076 ], [ -119.32408361099999, 50.96893606900003 ], [ -119.324082937999918, 50.967334456000039 ], [ -119.324082474999926, 50.966264662000107 ], [ -119.324082067999896, 50.965293682000052 ], [ -119.324081809999939, 50.964682427000099 ], [ -119.324081669999913, 50.964385902000117 ], [ -119.324081468999978, 50.963915720000045 ], [ -119.324089425999929, 50.963862712000093 ], [ -119.324081444999962, 50.963862236000111 ], [ -119.324080486999932, 50.961613387000028 ], [ -119.323737084999919, 50.961649574000042 ], [ -119.324092884, 50.959278796000035 ], [ -119.329766615999958, 50.959616882000027 ], [ -119.329664078999912, 50.960300718000063 ], [ -119.329838061999922, 50.960311081000057 ], [ -119.329795524999952, 50.960594771000039 ], [ -119.32994908799995, 50.960603917000064 ], [ -119.33010787399999, 50.960613374000033 ], [ -119.329966665999933, 50.961555135000026 ], [ -119.330158737999952, 50.961566574000038 ], [ -119.330142677999973, 50.961673687000072 ], [ -119.330141064999978, 50.961684450000057 ], [ -119.334478007999934, 50.96194265500003 ], [ -119.334425196999945, 50.962295089000108 ], [ -119.334713525999945, 50.96231225000011 ], [ -119.334177656999941, 50.965888247000052 ], [ -119.333925126999986, 50.96587321700008 ], [ -119.333859566999948, 50.966310654000068 ], [ -119.33352435899999, 50.966290703000034 ], [ -119.333456273999928, 50.966744962000071 ], [ -119.327781606999963, 50.966407065000034 ], [ -119.327957581999954, 50.965233948000048 ], [ -119.326507886999977, 50.965147580000028 ], [ -119.326232391999952, 50.966983718000066 ], [ -119.327636211999945, 50.967067354000037 ], [ -119.32743246099993, 50.968425514000025 ], [ -119.331451385999941, 50.968664851000092 ], [ -119.331357333999946, 50.969292126 ], [ -119.33154922599999, 50.96930355000007 ], [ -119.331446162999967, 50.969990924000122 ], [ -119.335655542999973, 50.970241437000055 ], [ -119.335119653999953, 50.973817409000056 ], [ -119.334845912999981, 50.973801122000062 ], [ -119.334840145, 50.973839614000049 ], [ -119.334575863999973, 50.973823890000048 ], [ -119.334547739999934, 50.974011521000101 ], [ -119.329538277999987, 50.973713349000064 ], [ -119.329243102999968, 50.975681139000095 ], [ -119.325816007999933, 50.975477022000106 ], [ -119.325550261999936, 50.977247571000099 ], [ -119.325896884999935, 50.977268220000035 ], [ -119.325895680999977, 50.977276249000056 ], [ -119.326400270999969, 50.977306307000099 ], [ -119.326123225999979, 50.979152201000083 ], [ -119.33063886399998, 50.979421094000017 ], [ -119.330102462999932, 50.982997003000065 ], [ -119.327352201999972, 50.982833256000063 ], [ -119.327210059, 50.983780371000094 ], [ -119.319911689999984, 50.983826419000124 ], [ -119.319925369999979, 50.983569985000052 ], [ -119.319926813999984, 50.983543704000049 ], [ -119.320579674999948, 50.983566909000039 ], [ -119.3212944429999, 50.983592333000061 ], [ -119.322363274999958, 50.983630300000073 ], [ -119.322393752999957, 50.983631379000073 ], [ -119.322580311999928, 50.983638030000115 ], [ -119.322742909999988, 50.983643815000065 ], [ -119.322847623999934, 50.983633162000032 ], [ -119.322895306999911, 50.983628327000069 ], [ -119.323291087999934, 50.98358809800007 ], [ -119.323820099999978, 50.983564610000087 ], [ -119.324038797999918, 50.98351995900002 ], [ -119.324124383999916, 50.98350250700004 ], [ -119.324124597000022, 50.983485241000103 ], [ -119.324128423999937, 50.983188942000069 ], [ -119.324149833999982, 50.981529165000104 ], [ -119.324150550999931, 50.981474071000058 ], [ -119.32417302099995, 50.979730744000015 ], [ -119.32417317, 50.979718397000042 ], [ -119.324173358999985, 50.979704870000084 ], [ -119.324174487999954, 50.979615592000094 ], [ -119.324174602, 50.979610120000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "68.8", "sL_BldgLoss": "68.8", "sL_StrLoss": "68.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008216755A35D85DC09E827834C0784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.380805701999975, 50.942150685000115 ], [ -119.381074293999973, 50.942162940000053 ], [ -119.38102535799996, 50.942491984000071 ], [ -119.380720767999946, 50.944539929000058 ], [ -119.37504856699999, 50.944204412000083 ], [ -119.375202688999963, 50.943169075000071 ], [ -119.375258762999962, 50.942792359000101 ], [ -119.375782121999933, 50.94271180600002 ], [ -119.376932610999987, 50.942409895000011 ], [ -119.380805701999975, 50.942150685000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "90.4", "sL_BldgLoss": "90.4", "sL_StrLoss": "90.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AD99C7BF6D55DC096CCB1BC2B7D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.340707701, 50.975844612000117 ], [ -119.346383665999966, 50.97618185300005 ], [ -119.345848566999948, 50.97975785000007 ], [ -119.345661168999968, 50.979746720000072 ], [ -119.3456307699999, 50.979949855000037 ], [ -119.339954329999927, 50.979612579000083 ], [ -119.340489899999966, 50.976036608000037 ], [ -119.340677280999927, 50.976047747000059 ], [ -119.340707701, 50.975844612000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "72.6", "sL_BldgLoss": "72.6", "sL_StrLoss": "72.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DF3D1987FD45DC06E9C1C57067B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.318196, 50.960015363000068 ], [ -119.323869781999917, 50.960353746000074 ], [ -119.323674308999955, 50.961656189000124 ], [ -119.323506083999931, 50.961673915000084 ], [ -119.322172786999957, 50.961937114000051 ], [ -119.321299403999916, 50.96226390300005 ], [ -119.320682967999943, 50.962371668000102 ], [ -119.320414593999928, 50.962418600000014 ], [ -119.319640805999924, 50.962376900000038 ], [ -119.318646517999966, 50.962136292000082 ], [ -119.318015585999945, 50.961960618000084 ], [ -119.31769450199999, 50.961871196000104 ], [ -119.317028620999949, 50.961743899000098 ], [ -119.31729344199999, 50.959981142000068 ], [ -119.318193076999989, 50.960034823000122 ], [ -119.318196, 50.960015363000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "116", "sL_BldgLoss": "116", "sL_StrLoss": "116", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE718D6C3AD75DC0F1564C5B927C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.360782783999952, 50.971277261000026 ], [ -119.366458320999968, 50.971613489000028 ], [ -119.365924885999931, 50.975189601000075 ], [ -119.36510145199999, 50.97514083699999 ], [ -119.365099246999961, 50.975155620000081 ], [ -119.359423269999979, 50.974819325000055 ], [ -119.359957222, 50.971243243000103 ], [ -119.360780577999918, 50.971292044000052 ], [ -119.360782783999952, 50.971277261000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "118.2", "sL_BldgLoss": "118.2", "sL_StrLoss": "118.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041C228EF80D55DC098FCAAB7617D4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.333386773999933, 50.981290894 ], [ -119.333415754000029, 50.981097617000046 ], [ -119.33238975499998, 50.981036567000068 ], [ -119.332925947999939, 50.977460638000068 ], [ -119.338602060999932, 50.977798270000108 ], [ -119.338573106999959, 50.977991549000102 ], [ -119.339599043, 50.978052543000011 ], [ -119.339063378999981, 50.981628501000039 ], [ -119.333386773999933, 50.981290894 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "100", "sL_BldgLoss": "100", "sL_StrLoss": "100", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C1A24D022D85DC060AE450B50794940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.374554747000033, 50.945799321000138 ], [ -119.380227146999957, 50.946134863000154 ], [ -119.379695120999898, 50.949711142000119 ], [ -119.374022269999969, 50.949375574000065 ], [ -119.374554747000033, 50.945799321000138 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59021909", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "170.9", "sL_BldgLoss": "170.9", "sL_StrLoss": "170.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000470E09C65ECE5DC036832AFBCF7A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.220106115999926, 50.961726402000039 ], [ -119.220195491999917, 50.959102104000038 ], [ -119.218811395999964, 50.959140110000128 ], [ -119.218949811999948, 50.958553875000128 ], [ -119.218944746999924, 50.958487040000058 ], [ -119.221144475999935, 50.958456493000021 ], [ -119.222956896999932, 50.95820579100004 ], [ -119.223934594999918, 50.957818394000107 ], [ -119.224627919999961, 50.957697396000043 ], [ -119.225935008999954, 50.9576374950001 ], [ -119.22724928599996, 50.957432399000055 ], [ -119.229088412999957, 50.9574866 ], [ -119.229315222999944, 50.957541205000091 ], [ -119.229227068999961, 50.958120365000127 ], [ -119.228976187999976, 50.959768564000051 ], [ -119.22891277799999, 50.959764730000103 ], [ -119.228769132999943, 50.960708368000013 ], [ -119.228079927999929, 50.960666690000075 ], [ -119.228079700999928, 50.960668183000074 ], [ -119.22789166499993, 50.960656812000074 ], [ -119.227819014999923, 50.96113398800005 ], [ -119.2225730319999, 50.960816607000027 ], [ -119.222613371999955, 50.961661720000038 ], [ -119.221820305999955, 50.961676816000129 ], [ -119.22181188499998, 50.961732073000057 ], [ -119.221622886999953, 50.961731449000048 ], [ -119.221471833999942, 50.961730952000082 ], [ -119.220106115999926, 50.961726402000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.1", "sL_BldgLoss": "40.1", "sL_StrLoss": "40.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000955C5AF337A5EC0800A0DE5C0164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.910733576999974, 52.17610123700004 ], [ -121.911855456999916, 52.17553956600009 ], [ -121.911605014999964, 52.178192095000078 ], [ -121.910377537, 52.178148633000035 ], [ -121.910310400999961, 52.178859425000049 ], [ -121.909750715999934, 52.178839603000064 ], [ -121.909724091, 52.179121439000056 ], [ -121.905529809999933, 52.178972810000104 ], [ -121.906790388999951, 52.178179597000032 ], [ -121.908585959, 52.177184728000043 ], [ -121.908741166999945, 52.177098688000079 ], [ -121.910733576999974, 52.17610123700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "78.7", "sL_BldgLoss": "78.7", "sL_StrLoss": "78.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F2336056497B5EC087CDB689C9164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.923345528999945, 52.179244734000029 ], [ -121.923429636999956, 52.178351406000097 ], [ -121.923087483999907, 52.178339328000092 ], [ -121.92325241599994, 52.176587576000031 ], [ -121.924688731999964, 52.176844860000102 ], [ -121.927750356, 52.176776633000031 ], [ -121.929473553999955, 52.176489841000041 ], [ -121.929195163000017, 52.179451074000035 ], [ -121.923345528999945, 52.179244734000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "117.3", "sL_BldgLoss": "117.3", "sL_StrLoss": "117.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E30B0700D67A5EC02A2B97D7DB164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.916555677999924, 52.176689822000071 ], [ -121.922404936999925, 52.176896506000077 ], [ -121.922067617999971, 52.180478242000063 ], [ -121.916217877999927, 52.180271541000117 ], [ -121.916555677999924, 52.176689822000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.1", "sL_BldgLoss": "40.1", "sL_StrLoss": "40.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004A7F8A3E3A765EC06B28F733230D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.843153584999953, 52.102689106000113 ], [ -121.84297812199992, 52.102103700000029 ], [ -121.842779708999913, 52.101867291000147 ], [ -121.842017483999911, 52.101401597000077 ], [ -121.84174185099999, 52.101143747000044 ], [ -121.845730127999957, 52.101287554000095 ], [ -121.845649373999919, 52.102130736000078 ], [ -121.845656582999979, 52.102130806000062 ], [ -121.845651787999884, 52.10231643700012 ], [ -121.850937612999957, 52.102506816000087 ], [ -121.85091440099994, 52.102749469000045 ], [ -121.852548470999977, 52.10280827400004 ], [ -121.852423398, 52.104116298000115 ], [ -121.850058945999933, 52.103727287000041 ], [ -121.843153584999953, 52.102689106000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "72.8", "sL_BldgLoss": "72.8", "sL_StrLoss": "72.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A34F924B6F4C5EC019A5F045A0FF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.19158026, 51.995166949000023 ], [ -121.197401381999953, 51.995410340000056 ], [ -121.197005828999963, 51.998990315000064 ], [ -121.191184229999976, 51.998746905000061 ], [ -121.19158026, 51.995166949000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "78.7", "sL_BldgLoss": "78.7", "sL_StrLoss": "78.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D32507C69745EC0AB370FCCF60F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.816190281999965, 52.122822448000065 ], [ -121.822031796999923, 52.123034220000079 ], [ -121.821686613999958, 52.126615816000012 ], [ -121.815844617999957, 52.126404029000078 ], [ -121.816190281999965, 52.122822448000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "197.2", "sL_BldgLoss": "197.2", "sL_StrLoss": "197.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EA3823EF01765EC0E4B8B664930D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.848113490999978, 52.109262417000075 ], [ -121.848160864999969, 52.108767565000029 ], [ -121.847376000999972, 52.108739298000046 ], [ -121.847437408999937, 52.108097947000054 ], [ -121.84395352199999, 52.107972407000069 ], [ -121.844009371999945, 52.107389586000053 ], [ -121.840757848999928, 52.107272323000068 ], [ -121.840769333, 52.107152561000106 ], [ -121.838624679999924, 52.107075166000122 ], [ -121.83871000699996, 52.106185839000084 ], [ -121.837624204999926, 52.106146640000141 ], [ -121.837967911999968, 52.102564935000025 ], [ -121.839584292, 52.102623285000028 ], [ -121.839598745999965, 52.102472573000057 ], [ -121.83967248299993, 52.102475235000043 ], [ -121.841214474999958, 52.103221015000024 ], [ -121.842080700999958, 52.103332810000047 ], [ -121.842511300999945, 52.103424690000068 ], [ -121.842795731999971, 52.103519753000057 ], [ -121.842902982999945, 52.103555587000074 ], [ -121.843253121999936, 52.103723702000103 ], [ -121.843423695999945, 52.103828910000125 ], [ -121.84407470299999, 52.104230395000101 ], [ -121.844216255, 52.104293897000062 ], [ -121.844458123999956, 52.104402402000062 ], [ -121.845123644999902, 52.104608022000022 ], [ -121.846229416999961, 52.104949598000125 ], [ -121.846726034999975, 52.105150352000081 ], [ -121.846927493999971, 52.105231794000112 ], [ -121.847445985999968, 52.105507385000102 ], [ -121.847909697999981, 52.105789213000108 ], [ -121.848336304999947, 52.106123507000099 ], [ -121.849065485999944, 52.106768904000049 ], [ -121.849516877999974, 52.107073598000063 ], [ -121.850507712999928, 52.107588101000069 ], [ -121.851011086999961, 52.107900111000042 ], [ -121.851211986999914, 52.108055040000067 ], [ -121.852427183999936, 52.10899241100001 ], [ -121.852905795999959, 52.109319218000039 ], [ -121.853084614999901, 52.109441332000138 ], [ -121.848113490999978, 52.109262417000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023393", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.8", "sL_BldgLoss": "37.8", "sL_StrLoss": "37.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ECD69543C94C5EC0C461E5A723FF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.197007609999943, 51.993747270000085 ], [ -121.197031695999954, 51.993529259000091 ], [ -121.196119794999959, 51.993491146000054 ], [ -121.19620531299999, 51.992717251000045 ], [ -121.201206925999927, 51.992746021000059 ], [ -121.201886441999974, 51.992732878 ], [ -121.20265874899998, 51.992582854000091 ], [ -121.202884199999971, 51.992539044000146 ], [ -121.202991017, 51.992518288000099 ], [ -121.202935508999985, 51.993021330000126 ], [ -121.20282857399998, 51.993990386000121 ], [ -121.20139835, 51.993930680000048 ], [ -121.197007609999943, 51.993747270000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "72.8", "sL_BldgLoss": "72.8", "sL_StrLoss": "72.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005885178EF14C5EC0ACAF2AD22F014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.198998105, 52.010308900000091 ], [ -121.199235926999933, 52.008156231 ], [ -121.199640103999954, 52.008268189000063 ], [ -121.200119083999979, 52.008302406000062 ], [ -121.200435411999976, 52.008431998000042 ], [ -121.20122429499996, 52.008363698000124 ], [ -121.201969320999964, 52.00830379800005 ], [ -121.20424492199993, 52.00792499900011 ], [ -121.204802109999918, 52.007429401000081 ], [ -121.204963826999986, 52.007148019000105 ], [ -121.20507575699996, 52.008245816000056 ], [ -121.204821292999924, 52.010551912000061 ], [ -121.198998105, 52.010308900000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8678250", "BldgCostT": "5985000", "sL_LossRatio": "1", "sL_AssetLoss": "511.7", "sL_BldgLoss": "511.7", "sL_StrLoss": "511.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000712E720DBB775EC0BFACDC4D680F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.88006346, 52.125875868000058 ], [ -121.880083955999908, 52.125660187000094 ], [ -121.879670096999945, 52.125656256000127 ], [ -121.879676859999975, 52.125386585000115 ], [ -121.879238722999943, 52.12538242100009 ], [ -121.879272551999946, 52.124034064000078 ], [ -121.87734332399998, 52.124015712000123 ], [ -121.877271824000019, 52.124767596000019 ], [ -121.871429806999927, 52.124558620000059 ], [ -121.87171491, 52.121564592000077 ], [ -121.870500167999978, 52.12152110100007 ], [ -121.870471940999934, 52.12181746300007 ], [ -121.86749926899995, 52.121710981000049 ], [ -121.867497933, 52.121763674000057 ], [ -121.865948924999913, 52.121748786000055 ], [ -121.865820618999948, 52.123094372000018 ], [ -121.859978881999922, 52.122884815000106 ], [ -121.860320877999925, 52.119303093000092 ], [ -121.862555803999953, 52.119383301000013 ], [ -121.862710169999943, 52.117765548000094 ], [ -121.86405371799999, 52.11781374400006 ], [ -121.864066034999922, 52.117684618000034 ], [ -121.862781803999951, 52.117672239000036 ], [ -121.862802392999967, 52.11686322900011 ], [ -121.864116546999952, 52.116875896000053 ], [ -121.86410687099999, 52.11725649400006 ], [ -121.864188622999976, 52.116399378000054 ], [ -121.859890052999972, 52.116245122000066 ], [ -121.860123867999917, 52.113796086000065 ], [ -121.860232002000018, 52.112663381000083 ], [ -121.860355824999957, 52.112667826000106 ], [ -121.860494712999952, 52.112754185000014 ], [ -121.862011332999913, 52.113294600000117 ], [ -121.862170340999967, 52.113351248000107 ], [ -121.8630352, 52.113659395000077 ], [ -121.863474498999921, 52.113738982000051 ], [ -121.863849316, 52.113756895000108 ], [ -121.863960497999969, 52.114250592000076 ], [ -121.864247805999966, 52.114924895000065 ], [ -121.864354524999925, 52.115047035000103 ], [ -121.864512012999924, 52.115227200000092 ], [ -121.864767706999956, 52.115434084000064 ], [ -121.865339403999926, 52.115692706000054 ], [ -121.866252283000023, 52.116030016000082 ], [ -121.867028997, 52.116382188000081 ], [ -121.86752508099994, 52.116772905000069 ], [ -121.867762393999897, 52.117127315000126 ], [ -121.86783832, 52.117422009000109 ], [ -121.86785919099998, 52.117694997000079 ], [ -121.867833029999986, 52.117874368000066 ], [ -121.867761820999988, 52.118362697000101 ], [ -121.867764322999946, 52.118690706000116 ], [ -121.867816296999962, 52.118836393000052 ], [ -121.868097603999914, 52.119160006000094 ], [ -121.868305387999953, 52.119247650000048 ], [ -121.868553988999949, 52.119352494000104 ], [ -121.86882999599996, 52.119393797000029 ], [ -121.869287819999954, 52.119386897000091 ], [ -121.869620585999925, 52.119323296000083 ], [ -121.869998309, 52.119188598000051 ], [ -121.870140267999943, 52.119088589000121 ], [ -121.870398806000011, 52.11890638900006 ], [ -121.87132349299999, 52.118166814000126 ], [ -121.87181589799998, 52.117842997000089 ], [ -121.872107979999953, 52.117698896000022 ], [ -121.872453724999971, 52.117608004000026 ], [ -121.87276130099994, 52.117562410000055 ], [ -121.87321028199996, 52.117555990000035 ], [ -121.87385922499999, 52.117638724000123 ], [ -121.873994889999935, 52.117656007000043 ], [ -121.87568879899996, 52.117916889000107 ], [ -121.876116499999952, 52.118026612000051 ], [ -121.87674859699996, 52.11828279200008 ], [ -121.87759530299995, 52.118809006000056 ], [ -121.87800719399992, 52.118961203000012 ], [ -121.878365546999987, 52.119058632000097 ], [ -121.878391481999984, 52.1190657000001 ], [ -121.878741491999918, 52.11912850000008 ], [ -121.879170199999976, 52.119166290000116 ], [ -121.8832093, 52.119189195000118 ], [ -121.883431604999927, 52.119240312000059 ], [ -121.882625199999922, 52.120309510000105 ], [ -121.882531996999916, 52.120535299000053 ], [ -121.88245381099992, 52.121574699000128 ], [ -121.8823503, 52.12193940300012 ], [ -121.882170299, 52.12221420100007 ], [ -121.881928622999922, 52.122444600000058 ], [ -121.881625499999984, 52.122627787000063 ], [ -121.880421574999929, 52.123083499000082 ], [ -121.880244127999944, 52.12319770600007 ], [ -121.880170289999967, 52.123245207000167 ], [ -121.879988379999958, 52.123463294000047 ], [ -121.879907586999934, 52.123665299000038 ], [ -121.879918684, 52.123887611000086 ], [ -121.880034181999946, 52.124119277000034 ], [ -121.88004178199999, 52.124134611000031 ], [ -121.880307092999942, 52.124395614000093 ], [ -121.881026793999965, 52.124949692000044 ], [ -121.881228107999974, 52.125237212000108 ], [ -121.881279895999938, 52.125494198000112 ], [ -121.881237211999988, 52.125711896000048 ], [ -121.88106039399996, 52.125999416000091 ], [ -121.880832388000016, 52.126193391000086 ], [ -121.88058780199998, 52.126331103000041 ], [ -121.880267901999957, 52.126427501000094 ], [ -121.879906507000015, 52.12648379500007 ], [ -121.87943180399999, 52.126487099000045 ], [ -121.879001596999927, 52.126490096000083 ], [ -121.874017753999937, 52.126478122000051 ], [ -121.873952204999981, 52.126477960000031 ], [ -121.87395389299995, 52.126411013000087 ], [ -121.874392038999929, 52.126415196000139 ], [ -121.874398833999976, 52.126145525 ], [ -121.87459666299999, 52.126147414000016 ], [ -121.874640948999911, 52.125682044000058 ], [ -121.88006346, 52.125875868000058 ] ], [ [ -121.87842541699996, 52.122137858000023 ], [ -121.878466514999957, 52.121705517000137 ], [ -121.878208775999937, 52.12169630600004 ], [ -121.878249480999941, 52.121268116000095 ], [ -121.877606765999957, 52.121245143000053 ], [ -121.877522701999922, 52.122129269000013 ], [ -121.87842541699996, 52.122137858000023 ] ], [ [ -121.875349443999966, 52.121104915000075 ], [ -121.87539578799999, 52.120617756000115 ], [ -121.873719380999972, 52.120557786000035 ], [ -121.873965876999989, 52.117967526 ], [ -121.873501407999953, 52.117950906000061 ], [ -121.873315442999981, 52.119904898000094 ], [ -121.87302091, 52.119894358000096 ], [ -121.872913975999936, 52.121017782000123 ], [ -121.875349443999966, 52.121104915000075 ] ], [ [ -121.865880235999953, 52.116440373000081 ], [ -121.865889286999902, 52.116083751000119 ], [ -121.865766372999957, 52.116082569000106 ], [ -121.865732762999926, 52.116435087000049 ], [ -121.865880235999953, 52.116440373000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "72.2", "sL_BldgLoss": "72.2", "sL_StrLoss": "72.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EA449B46C7735EC0C75E9445860C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.806291915, 52.095950671 ], [ -121.812129767999934, 52.096162947000053 ], [ -121.811783980999934, 52.099744595000068 ], [ -121.805945648999923, 52.099532301000046 ], [ -121.806291915, 52.095950671 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "74.2", "sL_BldgLoss": "74.2", "sL_StrLoss": "74.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E862FCC9124C5EC02D703F0190004A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.18679162799999, 52.0022658480001 ], [ -121.189498162999939, 52.002379143000091 ], [ -121.189456791999945, 52.002429006000114 ], [ -121.189473117999952, 52.002770799000118 ], [ -121.189656817999946, 52.003294894000085 ], [ -121.189955312999956, 52.003461489000088 ], [ -121.190550095999953, 52.004226304000078 ], [ -121.190559411000024, 52.004397196000077 ], [ -121.190126105999951, 52.004650809000047 ], [ -121.190102300999982, 52.004865788000089 ], [ -121.190775592999927, 52.005173387000113 ], [ -121.191755185999938, 52.005458311000076 ], [ -121.19228216, 52.005506403000076 ], [ -121.192217661999948, 52.006089416000108 ], [ -121.186395138999927, 52.005845766000064 ], [ -121.18679162799999, 52.0022658480001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "1", "sL_AssetLoss": "154.6", "sL_BldgLoss": "154.6", "sL_StrLoss": "154.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B41E7C3082795EC08F86193BDD104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.897318375999959, 52.134927999000112 ], [ -121.897583741999981, 52.132124319000049 ], [ -121.893693543999987, 52.131985905000114 ], [ -121.894032827999979, 52.128404110000098 ], [ -121.899875470000026, 52.128611943000074 ], [ -121.899610273999969, 52.131415636000042 ], [ -121.903500439999917, 52.13155385000006 ], [ -121.903229749999952, 52.134417952000057 ], [ -121.903009259000015, 52.134626598000118 ], [ -121.902496260999925, 52.135112023000026 ], [ -121.897318375999959, 52.134927999000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023426", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "36.4", "sL_BldgLoss": "36.4", "sL_StrLoss": "36.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CC945A18F74C5EC05FD46A1F5D004A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.200101807999985, 52.001369706000084 ], [ -121.204496400999915, 52.001553125000072 ], [ -121.204586962999883, 52.002833269000085 ], [ -121.204351990999925, 52.004962775000138 ], [ -121.203329599999918, 52.004898610000133 ], [ -121.202869912999944, 52.004764693000077 ], [ -121.20226881499994, 52.004126597000017 ], [ -121.202015490999884, 52.003546998000033 ], [ -121.201856584, 52.00348149600007 ], [ -121.201483296999967, 52.003341889000048 ], [ -121.200846982999963, 52.003269302000042 ], [ -121.200231506999927, 52.002953096000034 ], [ -121.20012191299999, 52.00282630400006 ], [ -121.200131808999956, 52.002538604000023 ], [ -121.199739119999947, 52.002191106000048 ], [ -121.19970049299999, 52.002018790000129 ], [ -121.200103503999955, 52.001423491000011 ], [ -121.200101807999985, 52.001369706000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "80.2", "sL_BldgLoss": "80.2", "sL_StrLoss": "80.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EFFB794B607A5EC02B82C5025B104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.913673165999981, 52.129950044000054 ], [ -121.913698357999948, 52.12968280900003 ], [ -121.91232663599996, 52.129634207000045 ], [ -121.912331956999978, 52.129577781000123 ], [ -121.909574541999945, 52.129480034000103 ], [ -121.909912494999929, 52.12589818500004 ], [ -121.914599786999972, 52.126064306000075 ], [ -121.914606617999979, 52.126417328000052 ], [ -121.914548821000011, 52.128723091000069 ], [ -121.913839988999911, 52.129752901000089 ], [ -121.913673165999981, 52.129950044000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "78.7", "sL_BldgLoss": "78.7", "sL_StrLoss": "78.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FF4AF9BC87A5EC0F18C6C9DEE114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.917422641999963, 52.141114029000093 ], [ -121.91742918099996, 52.140844355000084 ], [ -121.916552592999921, 52.140836305000086 ], [ -121.916565680999966, 52.140296957000039 ], [ -121.916127391999979, 52.140292930000072 ], [ -121.916133937999945, 52.140023255000102 ], [ -121.91514356899999, 52.140014149000088 ], [ -121.914819079999958, 52.14001116400005 ], [ -121.91484529799996, 52.138932468000114 ], [ -121.915283573999915, 52.138936500000071 ], [ -121.915290125999945, 52.138666827000051 ], [ -121.917481490999947, 52.138686962000072 ], [ -121.917474951999978, 52.138956636000117 ], [ -121.917913227999989, 52.138960659000077 ], [ -121.917906691999988, 52.1392303330001 ], [ -121.918344969999964, 52.139234353000084 ], [ -121.918338439, 52.139504027000086 ], [ -121.9187767199999, 52.139508046000053 ], [ -121.918773195999961, 52.13965351100012 ], [ -121.918770189999989, 52.139777721000037 ], [ -121.92096161099991, 52.139797793000106 ], [ -121.92095509399995, 52.14006746600009 ], [ -121.922708245999942, 52.140083494000081 ], [ -121.922682215999941, 52.141162192000095 ], [ -121.917422641999963, 52.141114029000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023437", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "196.2", "sL_BldgLoss": "196.2", "sL_StrLoss": "196.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F44B067879795EC07D4EAC193A164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.895519517999958, 52.171648914000059 ], [ -121.899549670999988, 52.171792104000112 ], [ -121.899619290999965, 52.171877095000056 ], [ -121.899912920999967, 52.172401297000114 ], [ -121.900666876999978, 52.173262899000065 ], [ -121.901195914999946, 52.173674755 ], [ -121.901028977999928, 52.175438352000072 ], [ -121.895180019999884, 52.17523058600009 ], [ -121.895519517999958, 52.171648914000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023438", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "77.2", "sL_BldgLoss": "77.2", "sL_StrLoss": "77.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A12555FCDB7B5EC007ECAC0EE7114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.934516310999953, 52.141269703000013 ], [ -121.934522745999928, 52.141000027000075 ], [ -121.934084448999968, 52.140996066000113 ], [ -121.934090886999968, 52.140726392000047 ], [ -121.933652591999987, 52.140722428000039 ], [ -121.933697676999927, 52.13883470000011 ], [ -121.934135951999977, 52.138838662000055 ], [ -121.934142390999952, 52.138568986000067 ], [ -121.935895491999972, 52.138584818000062 ], [ -121.935889063000019, 52.138854494000022 ], [ -121.936765618999971, 52.138862400000058 ], [ -121.936759195999954, 52.139132075000063 ], [ -121.937197477999916, 52.139136026000109 ], [ -121.937171799999959, 52.140214729000057 ], [ -121.936733506999985, 52.14021077900005 ], [ -121.936720662999917, 52.140750130000107 ], [ -121.936282367999922, 52.140746178000043 ], [ -121.93627594099992, 52.141015853000042 ], [ -121.935837641999953, 52.141011899000034 ], [ -121.93583121599994, 52.14128157500005 ], [ -121.934516310999953, 52.141269703000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "48822250", "BldgCostT": "32935000", "sL_LossRatio": "1", "sL_AssetLoss": "2849.2", "sL_BldgLoss": "2849.2", "sL_StrLoss": "2849.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000791E4739797B5EC0369C1129F6144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.903874593999888, 52.178914114000122 ], [ -121.904213402999986, 52.175332426000033 ], [ -121.904683736999928, 52.175349108000042 ], [ -121.905131787999935, 52.175471807000065 ], [ -121.90571370799999, 52.176178288000131 ], [ -121.906509711999945, 52.176491590000069 ], [ -121.907591820999954, 52.176518602000051 ], [ -121.908222992, 52.176426093000067 ], [ -121.90888719799996, 52.176154003000093 ], [ -121.90913990199999, 52.175967505000116 ], [ -121.909351622999949, 52.175743902000065 ], [ -121.90940117599996, 52.175510294000134 ], [ -121.90926421199994, 52.175104400000045 ], [ -121.909341415999947, 52.174889400000048 ], [ -121.909269699, 52.17422421100008 ], [ -121.909398781999982, 52.173740001000056 ], [ -121.909884890999976, 52.173060688000064 ], [ -121.909714790999971, 52.172861293000061 ], [ -121.909917994999944, 52.172881203000024 ], [ -121.91052168899995, 52.172671914000098 ], [ -121.910793594999987, 52.17234139800005 ], [ -121.911016096999973, 52.172253103000052 ], [ -121.910829690999932, 52.172089389000035 ], [ -121.911079581999942, 52.171984004000073 ], [ -121.911249409999982, 52.171689197000028 ], [ -121.911369107999946, 52.170914838000058 ], [ -121.911422889000022, 52.170566904000083 ], [ -121.91167888599999, 52.170253507000012 ], [ -121.911758310999957, 52.169931698000056 ], [ -121.911648407999934, 52.169112802 ], [ -121.911950682999972, 52.168719697000029 ], [ -121.912045083999914, 52.167829501000014 ], [ -121.91199924299994, 52.167697446000041 ], [ -121.915057521999927, 52.167805692000059 ], [ -121.915077821999958, 52.167590473000139 ], [ -121.915270647999947, 52.167597296000039 ], [ -121.915441519999916, 52.165785479000114 ], [ -121.917006264999912, 52.165840828000057 ], [ -121.917091200999934, 52.164939817000025 ], [ -121.917913438999975, 52.164968894000062 ], [ -121.917944083999942, 52.164643737000112 ], [ -121.918384695999961, 52.164659316000076 ], [ -121.918433693999972, 52.164139348000106 ], [ -121.919044947999978, 52.164160957000057 ], [ -121.919074985999941, 52.163842163000062 ], [ -121.919702128000011, 52.163864331000099 ], [ -121.919745181999971, 52.16340727900004 ], [ -121.92049343799998, 52.163433722000043 ], [ -121.92052857099999, 52.163060697000041 ], [ -121.921946766999937, 52.163110804000048 ], [ -121.921970319999929, 52.162860631000108 ], [ -121.922486520999954, 52.162878864000085 ], [ -121.92252522099993, 52.162467743000022 ], [ -121.922929415999988, 52.162482018000063 ], [ -121.92296762799999, 52.162076053000142 ], [ -121.923741982999928, 52.162103398000063 ], [ -121.923800027999917, 52.161486572000037 ], [ -121.924609754999949, 52.161515161000118 ], [ -121.924615894999974, 52.16144989200005 ], [ -121.92517021499998, 52.161469460000042 ], [ -121.925213896999978, 52.161005105000136 ], [ -121.926070179999982, 52.161035327 ], [ -121.926096973999975, 52.160750426000099 ], [ -121.92657903099996, 52.160767437000047 ], [ -121.926621478999934, 52.160316037000072 ], [ -121.92709729099991, 52.160332826000079 ], [ -121.927138583, 52.159893648000022 ], [ -121.927857275999926, 52.159919004000038 ], [ -121.927880865999938, 52.159668066000087 ], [ -121.928583015999962, 52.159692833000108 ], [ -121.928617655000025, 52.159324283000103 ], [ -121.929692126999953, 52.159362175000069 ], [ -121.929738934999961, 52.158864009000062 ], [ -121.930564819999987, 52.158893128000102 ], [ -121.930648350999945, 52.158003930000042 ], [ -121.93189753799993, 52.158047962000111 ], [ -121.931912101999927, 52.157892860000089 ], [ -121.932681249999959, 52.157919965000133 ], [ -121.932734200999903, 52.157355979000066 ], [ -121.934278082999924, 52.157410369000054 ], [ -121.934386997999951, 52.15624981600007 ], [ -121.935139734999922, 52.156276328000018 ], [ -121.935181589999942, 52.155830234000113 ], [ -121.936435618999937, 52.155874390000086 ], [ -121.93649927199999, 52.155195765000123 ], [ -121.937013003999979, 52.155213850000045 ], [ -121.937059179999949, 52.154721478000042 ], [ -121.938230855999933, 52.15476271600005 ], [ -121.938283358999968, 52.154202706000042 ], [ -121.939508326999942, 52.154245807000102 ], [ -121.939580648999979, 52.153474136000114 ], [ -121.94142126199992, 52.153538875000024 ], [ -121.941508218999971, 52.152610581000054 ], [ -121.94337549699999, 52.152676227000036 ], [ -121.94346128799998, 52.151759925000064 ], [ -121.949307311999945, 52.151965252000103 ], [ -121.949296122999954, 52.152084929000075 ], [ -121.949515628999919, 52.152092632000119 ], [ -121.949339815999963, 52.152661311000074 ], [ -121.949783516999929, 52.153044331000046 ], [ -121.950191756999914, 52.153299333000035 ], [ -121.952101437999943, 52.154492115000039 ], [ -121.952333731999943, 52.154615956000086 ], [ -121.952729974999926, 52.154827208000064 ], [ -121.952639483999945, 52.155795851000065 ], [ -121.951407419999924, 52.155752643000056 ], [ -121.951380044999922, 52.156045581000107 ], [ -121.950245792999965, 52.156005791000048 ], [ -121.950092190999925, 52.157648909000073 ], [ -121.949794904999962, 52.157638478000074 ], [ -121.949644371999952, 52.159248517000066 ], [ -121.943797365999941, 52.159043208000064 ], [ -121.943799608999925, 52.159019244000056 ], [ -121.94221541, 52.158963566000089 ], [ -121.942259014999976, 52.158498052000091 ], [ -121.942056344999941, 52.158490927000102 ], [ -121.942010220999961, 52.158983300000052 ], [ -121.940756096999962, 52.158939204000063 ], [ -121.940692504999959, 52.15961783100007 ], [ -121.939939707999912, 52.159591355000032 ], [ -121.939897897999941, 52.160037449000122 ], [ -121.939092072000022, 52.160009104000025 ], [ -121.938833722999945, 52.162764770000116 ], [ -121.937978529999967, 52.162734682000099 ], [ -121.937948002999946, 52.16306019000006 ], [ -121.934145883999989, 52.162926345000066 ], [ -121.93412844099997, 52.163112181000038 ], [ -121.933968800999963, 52.163106558000081 ], [ -121.933776653999942, 52.165153387000025 ], [ -121.93267569799994, 52.165114605000056 ], [ -121.932658023000016, 52.165302821000111 ], [ -121.933747169999947, 52.165341187000081 ], [ -121.93341087899995, 52.168922989000059 ], [ -121.930225974999956, 52.168810770000078 ], [ -121.930173265999912, 52.16937166600006 ], [ -121.92892103299999, 52.169327519000014 ], [ -121.928871738999931, 52.169851897000044 ], [ -121.926192842999967, 52.169757409000049 ], [ -121.926168831999988, 52.170012660000069 ], [ -121.925484112000035, 52.169988500000045 ], [ -121.925456716999946, 52.170279677000124 ], [ -121.925257534999929, 52.170272648000072 ], [ -121.925130186999979, 52.171626083000021 ], [ -121.92045998599994, 52.171461175000076 ], [ -121.920407606999959, 52.172017194000084 ], [ -121.920309460999974, 52.172013727000035 ], [ -121.920218759999926, 52.172976498000118 ], [ -121.91772912499999, 52.172888508000092 ], [ -121.917711756999964, 52.173072758000032 ], [ -121.91740480699994, 52.173061906000065 ], [ -121.917350175999971, 52.173641365000059 ], [ -121.91655504799995, 52.173613250000074 ], [ -121.916521361999983, 52.173970485000055 ], [ -121.913913904999973, 52.173878247000069 ], [ -121.91382340299999, 52.173875045000052 ], [ -121.912734494999981, 52.173836507000054 ], [ -121.91261319699997, 52.175121591000071 ], [ -121.912367906999975, 52.175283007000111 ], [ -121.91220576799995, 52.175364178000038 ], [ -121.911917656999933, 52.175508425000068 ], [ -121.911858594999941, 52.175506334000055 ], [ -121.911855456999916, 52.17553956600009 ], [ -121.910733576999974, 52.17610123700004 ], [ -121.908741166999945, 52.177098688000079 ], [ -121.908585959, 52.177184728000043 ], [ -121.906790388999951, 52.178179597000032 ], [ -121.905529809999933, 52.178972810000104 ], [ -121.903874593999888, 52.178914114000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDF24F78A27C5EC0AEA3A298D9114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.947731656999963, 52.141663537000071 ], [ -121.94776607499989, 52.141295451000055 ], [ -121.946489338999982, 52.141250606000057 ], [ -121.946824335999963, 52.13766868400004 ], [ -121.947343074999978, 52.137686906000063 ], [ -121.947394043999964, 52.137141797000012 ], [ -121.948116737999925, 52.137167180000063 ], [ -121.948089015999969, 52.13989852100012 ], [ -121.948110897999953, 52.14086941200005 ], [ -121.948120951999954, 52.141315605000017 ], [ -121.948121475, 52.141338918000031 ], [ -121.94816195199999, 52.141678649000063 ], [ -121.947731656999963, 52.141663537000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "1", "sL_AssetLoss": "157.4", "sL_BldgLoss": "157.4", "sL_StrLoss": "157.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE19914111795EC093E4147802164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.888924006999957, 52.170055454000085 ], [ -121.89477223899992, 52.170263537000039 ], [ -121.894432687999952, 52.173845211000049 ], [ -121.888583975999921, 52.17363711200003 ], [ -121.888924006999957, 52.170055454000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "118.8", "sL_BldgLoss": "118.8", "sL_StrLoss": "118.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009160ECB5477B5EC0E8578C1D81164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.92325241599994, 52.176587576000031 ], [ -121.923424701999949, 52.174757584000083 ], [ -121.929273731999956, 52.174963920000025 ], [ -121.929189749999978, 52.175857254000078 ], [ -121.929531884999946, 52.175869315000099 ], [ -121.929473553999955, 52.176489841000041 ], [ -121.927750356, 52.176776633000031 ], [ -121.924688731999964, 52.176844860000102 ], [ -121.92325241599994, 52.176587576000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "78.7", "sL_BldgLoss": "78.7", "sL_StrLoss": "78.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085575020C57B5EC090CFB74767114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.93415526699999, 52.138029635000109 ], [ -121.934161704999937, 52.137759959000078 ], [ -121.933723437999944, 52.137755997000049 ], [ -121.933729876999976, 52.137486321000104 ], [ -121.93329161299999, 52.137482358000064 ], [ -121.933298054999966, 52.13721268200004 ], [ -121.931983271999968, 52.137200782000129 ], [ -121.931989722999944, 52.136931107000045 ], [ -121.93155146399998, 52.136927137000058 ], [ -121.931557916999921, 52.136657462000095 ], [ -121.931119661999958, 52.136653490000057 ], [ -121.931151937999971, 52.135305113000058 ], [ -121.931590178999983, 52.135309084000042 ], [ -121.931603083000013, 52.134769732000052 ], [ -121.932041319999911, 52.134773702000089 ], [ -121.932047769999926, 52.134504027000098 ], [ -121.932486004999944, 52.134507995000064 ], [ -121.932492451999934, 52.134238319000055 ], [ -121.935121842999976, 52.134262091000068 ], [ -121.935115414000023, 52.134531767000091 ], [ -121.936430119999912, 52.134543632 ], [ -121.936398003999926, 52.135892012000056 ], [ -121.935959754999942, 52.135888059000095 ], [ -121.935914769999926, 52.137775790000042 ], [ -121.935476502999933, 52.137771835000073 ], [ -121.93547007399998, 52.138041511000054 ], [ -121.93415526699999, 52.138029635000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "276.1", "sL_BldgLoss": "276.1", "sL_StrLoss": "276.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A92845C80C795EC05C6643C46E154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.889568604999937, 52.169578043000044 ], [ -121.889642195999969, 52.168802679000052 ], [ -121.888310576999956, 52.168755264000069 ], [ -121.887336878999946, 52.168720584000027 ], [ -121.887556545999956, 52.166407268000079 ], [ -121.887676973999959, 52.165138917000057 ], [ -121.893524535999973, 52.165347064000144 ], [ -121.893451020999962, 52.166122433000034 ], [ -121.895756209999902, 52.16620440500003 ], [ -121.895703998999949, 52.166755382000076 ], [ -121.895264609999927, 52.167026292000116 ], [ -121.894896390000014, 52.167661516000109 ], [ -121.895052489999969, 52.167896491000072 ], [ -121.89510435699999, 52.16855639700006 ], [ -121.895152898999982, 52.169174007000038 ], [ -121.895454055999934, 52.169392731000094 ], [ -121.895416773999983, 52.169786093000063 ], [ -121.890350535, 52.169605877000116 ], [ -121.889568604999937, 52.169578043000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023451", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98771750", "BldgCostT": "68615000", "sL_LossRatio": "1", "sL_AssetLoss": "1696", "sL_BldgLoss": "1696", "sL_StrLoss": "1696", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000765D326D437C5EC0815D8FBA04104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.946586658999976, 52.136807714000049 ], [ -121.946786948999943, 52.134665936000054 ], [ -121.946855561999897, 52.133932166000072 ], [ -121.946731668999988, 52.13392781200011 ], [ -121.944711503999926, 52.133856818000019 ], [ -121.943252741999956, 52.133805529000064 ], [ -121.94330769199999, 52.133218394 ], [ -121.943192081999939, 52.133214328000115 ], [ -121.943243540999958, 52.132664506000026 ], [ -121.942660901999915, 52.132644015000068 ], [ -121.942718380999949, 52.132029915000054 ], [ -121.94208112499993, 52.132007500000071 ], [ -121.942268047999946, 52.130010662000082 ], [ -121.94223577799994, 52.130010373000033 ], [ -121.94225389599994, 52.129245315000041 ], [ -121.94079737499996, 52.129194070000054 ], [ -121.940846462999914, 52.128669828000106 ], [ -121.940534903999918, 52.128658864000037 ], [ -121.940610616999919, 52.12785029700008 ], [ -121.939941539999936, 52.127826749000072 ], [ -121.939996203999939, 52.127243057000037 ], [ -121.939168752999976, 52.127213929000057 ], [ -121.939209931999955, 52.126774308000122 ], [ -121.93857106199999, 52.126751814000023 ], [ -121.938625097999974, 52.126175012000083 ], [ -121.93790338, 52.126149597000079 ], [ -121.937956657999933, 52.125580962000129 ], [ -121.937241694999926, 52.125555780000035 ], [ -121.937370687999987, 52.124179252000026 ], [ -121.934630168999902, 52.124082686000108 ], [ -121.934521952999887, 52.12523673100003 ], [ -121.928768295999959, 52.125033782000045 ], [ -121.92876337499996, 52.125238963000101 ], [ -121.929369284999964, 52.125260349000072 ], [ -121.9291507, 52.127588259000021 ], [ -121.929146540999909, 52.12763255300009 ], [ -121.929279757999936, 52.127637254000035 ], [ -121.928943389999958, 52.131219154000071 ], [ -121.928908974999914, 52.131217940000035 ], [ -121.92882624, 52.132098856000034 ], [ -121.927759126999945, 52.132061191000041 ], [ -121.927755793999935, 52.13209668100005 ], [ -121.92741488799993, 52.132084646000067 ], [ -121.927325326999963, 52.131334011000035 ], [ -121.927325301999957, 52.131333582000046 ], [ -121.927295101, 52.130147890000025 ], [ -121.927282670999901, 52.130142966000058 ], [ -121.926984309999966, 52.13002459800007 ], [ -121.926105632999935, 52.129892902000059 ], [ -121.925601403999949, 52.129876889000045 ], [ -121.92427711099999, 52.12996398500006 ], [ -121.9238130049999, 52.129881108000106 ], [ -121.923450877000022, 52.129711098000023 ], [ -121.92315389599996, 52.129534412000055 ], [ -121.922605205999986, 52.129041487000066 ], [ -121.926275495999946, 52.126836997000048 ], [ -121.926646098999953, 52.126558095000057 ], [ -121.926858475999921, 52.126246694000073 ], [ -121.927171890999915, 52.125609909000083 ], [ -121.92770560699999, 52.124919895000133 ], [ -121.928148315, 52.124481800000062 ], [ -121.928574662999907, 52.124167846000034 ], [ -121.928586008, 52.124159493000136 ], [ -121.929008884999945, 52.123900394000046 ], [ -121.929418303999952, 52.123722504000035 ], [ -121.929859624999935, 52.123579998000068 ], [ -121.931900270999932, 52.12319469200002 ], [ -121.932244084999965, 52.123045103000031 ], [ -121.932999517999974, 52.122599980000103 ], [ -121.933375183999928, 52.122409711000081 ], [ -121.933847420999967, 52.122170555000103 ], [ -121.9341039829999, 52.122040604000112 ], [ -121.934559691999979, 52.121837495000079 ], [ -121.934782734999899, 52.121765390000064 ], [ -121.93494810599999, 52.121711904000072 ], [ -121.935055400999914, 52.121694284000078 ], [ -121.935285888999928, 52.121656398000056 ], [ -121.93584109299999, 52.121642783000041 ], [ -121.936616793999988, 52.121683594000068 ], [ -121.937317395999969, 52.12175949900012 ], [ -121.938158892999979, 52.121767221000042 ], [ -121.938352503999923, 52.121768989000074 ], [ -121.939936593999931, 52.12187769000014 ], [ -121.940092884999927, 52.121820404000111 ], [ -121.938278609999941, 52.119976699000098 ], [ -121.938129081999946, 52.119816859000146 ], [ -121.937233099999972, 52.118858994000092 ], [ -121.936652902999953, 52.118113665000095 ], [ -121.936559808999959, 52.117994029000016 ], [ -121.936493075999962, 52.117908286000109 ], [ -121.935683493999989, 52.116868216000071 ], [ -121.935524706999956, 52.116498785000054 ], [ -121.93549269099999, 52.116136506000025 ], [ -121.935543704999958, 52.115779811000039 ], [ -121.935683016999945, 52.115466697000059 ], [ -121.935838917999916, 52.115256510000101 ], [ -121.935861554, 52.115242822000063 ], [ -121.936309479999977, 52.11497212300003 ], [ -121.937883382999956, 52.115906265000071 ], [ -121.93957599499997, 52.116699892000078 ], [ -121.940560224999942, 52.117044088000057 ], [ -121.94164730599999, 52.117424185000132 ], [ -121.942092776999971, 52.117542773000096 ], [ -121.94208500699996, 52.117870976000091 ], [ -121.94077079, 52.117859177000049 ], [ -121.940777182999952, 52.117589500000072 ], [ -121.940339112999979, 52.117585564000073 ], [ -121.940345506999975, 52.11731588600005 ], [ -121.940181546999966, 52.117314414000099 ], [ -121.940108443999932, 52.118095209000018 ], [ -121.93939327399994, 52.118070029000123 ], [ -121.939382316999982, 52.11818702700004 ], [ -121.939377911999912, 52.11818687100007 ], [ -121.939374813999933, 52.118219949000085 ], [ -121.940167265999918, 52.118247850000074 ], [ -121.940153665999929, 52.118393101000045 ], [ -121.941196081, 52.118402467000053 ], [ -121.941189691999909, 52.118672143000055 ], [ -121.942503931999923, 52.118683938000054 ], [ -121.942497549999956, 52.118953616000056 ], [ -121.943373717999989, 52.118961470000052 ], [ -121.943367338999934, 52.119231148000075 ], [ -121.947310119999926, 52.119266414000059 ], [ -121.947303765999948, 52.119536092000089 ], [ -121.951684667999956, 52.119575123000075 ], [ -121.951678341999923, 52.119844801000113 ], [ -121.952116435, 52.119848695000044 ], [ -121.95211011, 52.120118373000125 ], [ -121.954300593, 52.120137820000153 ], [ -121.954295846999941, 52.120340585000115 ], [ -121.954287967999932, 52.120677176000108 ], [ -121.95458663399998, 52.120679825000074 ], [ -121.954726070000021, 52.120681060000074 ], [ -121.954719761999939, 52.120950739000051 ], [ -121.956910286999914, 52.120970137 ], [ -121.956904657999985, 52.121211200000062 ], [ -121.956682931999936, 52.121113008000101 ], [ -121.956335670999948, 52.121170591000102 ], [ -121.956007502999981, 52.121771350000124 ], [ -121.955138946999938, 52.121763657000074 ], [ -121.955107808, 52.123094999000081 ], [ -121.955101102999933, 52.123381726000055 ], [ -121.952910459999913, 52.123362293000135 ], [ -121.952916782, 52.123092615000104 ], [ -121.952478655999968, 52.123088724000056 ], [ -121.952503948999933, 52.122010012000047 ], [ -121.952065833999924, 52.122006119000048 ], [ -121.952059508999966, 52.122275797000057 ], [ -121.949062267999949, 52.122249121000024 ], [ -121.948862524999967, 52.124386891000057 ], [ -121.945306769999959, 52.12426194300005 ], [ -121.945291873999963, 52.124421215000055 ], [ -121.946119276999923, 52.12445029900011 ], [ -121.946089007999916, 52.124774013000085 ], [ -121.947726540999923, 52.124831556000068 ], [ -121.947698136999961, 52.125135455000063 ], [ -121.94812204699997, 52.12515034700008 ], [ -121.948097070999964, 52.125417586000033 ], [ -121.948539750999942, 52.125433135000065 ], [ -121.948460575999974, 52.126280370000096 ], [ -121.948530811999944, 52.126282837000069 ], [ -121.948507536999941, 52.1265319070001 ], [ -121.949134309, 52.12655392100006 ], [ -121.948829226999976, 52.129818718000045 ], [ -121.949370333999966, 52.129837721000087 ], [ -121.949315468999941, 52.130424860000041 ], [ -121.949431072999957, 52.130428919000053 ], [ -121.949162360999949, 52.133304483000067 ], [ -121.949695239999983, 52.133323193000074 ], [ -121.94956097299999, 52.133568836000087 ], [ -121.948316363999965, 52.134789968000057 ], [ -121.948140962999943, 52.134780218000103 ], [ -121.948119839999919, 52.136861569000096 ], [ -121.946586658999976, 52.136807714000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "37464577", "BldgCostT": "24652409", "sL_LossRatio": "0.998233830321179", "sL_AssetLoss": "1896.76", "sL_BldgLoss": "1893.41", "sL_StrLoss": "1892.2", "sL_NStrLoss": "1.21", "sL_ContLoss": "3.35", "geom_point": "0101000020E610000048F6CE89B9785EC03055DDE17E0F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.87430008599992, 52.129263789000049 ], [ -121.874494080999966, 52.127225377000045 ], [ -121.873933497999985, 52.127220025000071 ], [ -121.873952204999981, 52.126477960000031 ], [ -121.874017753999937, 52.126478122000051 ], [ -121.879001596999927, 52.126490096000083 ], [ -121.87943180399999, 52.126487099000045 ], [ -121.879906507000015, 52.12648379500007 ], [ -121.880267901999957, 52.126427501000094 ], [ -121.88058780199998, 52.126331103000041 ], [ -121.880832388000016, 52.126193391000086 ], [ -121.88106039399996, 52.125999416000091 ], [ -121.881237211999988, 52.125711896000048 ], [ -121.881279895999938, 52.125494198000112 ], [ -121.881228107999974, 52.125237212000108 ], [ -121.881026793999965, 52.124949692000044 ], [ -121.880307092999942, 52.124395614000093 ], [ -121.88004178199999, 52.124134611000031 ], [ -121.880034181999946, 52.124119277000034 ], [ -121.879918684, 52.123887611000086 ], [ -121.879907586999934, 52.123665299000038 ], [ -121.879988379999958, 52.123463294000047 ], [ -121.880170289999967, 52.123245207000167 ], [ -121.880244127999944, 52.12319770600007 ], [ -121.880421574999929, 52.123083499000082 ], [ -121.881625499999984, 52.122627787000063 ], [ -121.881928622999922, 52.122444600000058 ], [ -121.882170299, 52.12221420100007 ], [ -121.8823503, 52.12193940300012 ], [ -121.88245381099992, 52.121574699000128 ], [ -121.882531996999916, 52.120535299000053 ], [ -121.882625199999922, 52.120309510000105 ], [ -121.883431604999927, 52.119240312000059 ], [ -121.883643607999957, 52.11885879900013 ], [ -121.88373840599999, 52.118430897000081 ], [ -121.88373649499999, 52.115796509000049 ], [ -121.883775514999954, 52.115570603000066 ], [ -121.883850208999988, 52.115401604000034 ], [ -121.884010005999954, 52.115215104000058 ], [ -121.884239303999934, 52.115084003000078 ], [ -121.884356094999987, 52.115044363000045 ], [ -121.884514786999929, 52.114990505000087 ], [ -121.884833389999969, 52.114952503000083 ], [ -121.886444991999952, 52.114935371000065 ], [ -121.886678377999914, 52.114932887000087 ], [ -121.88705768899996, 52.114872799000096 ], [ -121.887411393999926, 52.114728212000038 ], [ -121.887662410999951, 52.11455290700011 ], [ -121.888697722999936, 52.113677901000088 ], [ -121.891410584999932, 52.113883295000115 ], [ -121.892342303999939, 52.114023407000111 ], [ -121.893596483999914, 52.114317002000085 ], [ -121.894172082999916, 52.114395902000119 ], [ -121.895079211, 52.114457621000057 ], [ -121.895555107999911, 52.114489998000089 ], [ -121.89713790199994, 52.114514889000077 ], [ -121.897645396999962, 52.114485477000095 ], [ -121.897354244000013, 52.117562928000154 ], [ -121.89353533799995, 52.117426998000049 ], [ -121.893390160999957, 52.118959921000076 ], [ -121.893368942, 52.118959165000085 ], [ -121.893241338999943, 52.120306423000017 ], [ -121.891900557999932, 52.120258669000087 ], [ -121.891758066999941, 52.121762514000061 ], [ -121.887551265999974, 52.121529529000014 ], [ -121.887533802999968, 52.121643706000071 ], [ -121.88591338400002, 52.121585911000082 ], [ -121.885972193999919, 52.120966106000033 ], [ -121.884403484999922, 52.120910134000049 ], [ -121.884281670999897, 52.12219341800008 ], [ -121.885015286999959, 52.122200358000079 ], [ -121.885002395999962, 52.122716946000089 ], [ -121.88735679699991, 52.122800928000103 ], [ -121.886810006999951, 52.12637533700012 ], [ -121.885881228999935, 52.126342212000047 ], [ -121.885663935999943, 52.128631790000071 ], [ -121.882666053999955, 52.128524818000074 ], [ -121.882662879999913, 52.128651743000027 ], [ -121.881348369999969, 52.128639279000062 ], [ -121.881352410999952, 52.128477919000069 ], [ -121.880241053999924, 52.128438230000036 ], [ -121.880142748999944, 52.129472619000047 ], [ -121.87430008599992, 52.129263789000049 ] ], [ [ -121.891707224999948, 52.115306061000062 ], [ -121.891738033999957, 52.114980874000132 ], [ -121.890891438999972, 52.114972913000059 ], [ -121.890898131999933, 52.114703239000114 ], [ -121.89084401099997, 52.114702730000026 ], [ -121.890789936, 52.1152733750001 ], [ -121.891707224999948, 52.115306061000062 ] ], [ [ -121.89046365899999, 52.11455566000005 ], [ -121.890466791999984, 52.114429446000038 ], [ -121.889590730999913, 52.114421199000034 ], [ -121.889597430999984, 52.114151525000139 ], [ -121.889272817999966, 52.114148468000096 ], [ -121.889238357999915, 52.11451198400006 ], [ -121.89046365899999, 52.11455566000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "163083591", "BldgCostT": "112704201", "sL_LossRatio": "1", "sL_AssetLoss": "5942", "sL_BldgLoss": "5942", "sL_StrLoss": "5942", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001ABF7CF4FE7A5EC006F88F01300F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.916241655999983, 52.132904108000091 ], [ -121.916269640999943, 52.132607059000094 ], [ -121.914804126, 52.132555170000074 ], [ -121.914901448999984, 52.131522477000075 ], [ -121.914520330999935, 52.131508980000071 ], [ -121.914548821000011, 52.128723091000069 ], [ -121.914606617999979, 52.126417328000052 ], [ -121.914599786999972, 52.126064306000075 ], [ -121.915754874999962, 52.126105214000056 ], [ -121.915749558999948, 52.12616164000012 ], [ -121.91708859, 52.126209047000032 ], [ -121.91850677799998, 52.126259241000064 ], [ -121.918461527999952, 52.126739877000034 ], [ -121.918818843999958, 52.12675252100005 ], [ -121.918832758999926, 52.126604699000019 ], [ -121.919435471999989, 52.126626023000078 ], [ -121.919470053999959, 52.126258613000068 ], [ -121.92048627299999, 52.126294560000083 ], [ -121.920548746999941, 52.125630638000118 ], [ -121.921119017999956, 52.12565080700012 ], [ -121.921151641, 52.125304052000068 ], [ -121.92157813399993, 52.125319134000094 ], [ -121.921621332999948, 52.124859926000042 ], [ -121.919596917999968, 52.12478832500009 ], [ -121.919536910999966, 52.125425888000066 ], [ -121.91748245799999, 52.12535318700008 ], [ -121.914584036999955, 52.125250558000083 ], [ -121.914540904999981, 52.123021591000075 ], [ -121.909772961999948, 52.122758472000065 ], [ -121.909778322999927, 52.122701651000035 ], [ -121.909542855999959, 52.122699475000076 ], [ -121.909567543999927, 52.121687993000073 ], [ -121.907977935999938, 52.121631602000029 ], [ -121.908315960999971, 52.118049735000049 ], [ -121.911844129999949, 52.118174865000043 ], [ -121.911845094999961, 52.118135246000072 ], [ -121.911407023999942, 52.118131202000029 ], [ -121.911413593999953, 52.117861528000077 ], [ -121.910537457999965, 52.117853436000132 ], [ -121.910542869999972, 52.117631454000026 ], [ -121.906019556, 52.11747095500008 ], [ -121.906114643999942, 52.116463809000024 ], [ -121.905751735999942, 52.116460442000104 ], [ -121.905758340999938, 52.11619076700007 ], [ -121.905320289999963, 52.116186701000053 ], [ -121.905333500999944, 52.11564735300005 ], [ -121.904457409999978, 52.115639216000069 ], [ -121.904514578, 52.113307236000068 ], [ -121.904516907999962, 52.113212149000084 ], [ -121.906707018999953, 52.113232477000032 ], [ -121.906726809999938, 52.112423454000073 ], [ -121.909354895999982, 52.112447795000051 ], [ -121.909335152999944, 52.113256819000092 ], [ -121.90758306399999, 52.113240598000104 ], [ -121.907569879, 52.113779946000058 ], [ -121.908007905999966, 52.113784004000102 ], [ -121.90800391099998, 52.113947514000117 ], [ -121.91019266, 52.114025167000115 ], [ -121.91019804599992, 52.11380426900007 ], [ -121.911074102999947, 52.113812363000164 ], [ -121.911080673999919, 52.113542688000045 ], [ -121.912832777999981, 52.1135588570001 ], [ -121.912799974999956, 52.114907232000057 ], [ -121.914536520999889, 52.114923232000059 ], [ -121.914592722999885, 52.11432667800009 ], [ -121.920433568999911, 52.114533472000105 ], [ -121.920096571999977, 52.118115386000085 ], [ -121.918419551999975, 52.118056041000052 ], [ -121.918416170999976, 52.118195706000101 ], [ -121.91929231599994, 52.118203740000105 ], [ -121.919279271999969, 52.118743090000059 ], [ -121.921469662999982, 52.118763146000056 ], [ -121.921450132999965, 52.11957217300008 ], [ -121.92101204799999, 52.119568166000107 ], [ -121.921005534999907, 52.119837840000109 ], [ -121.919253179999956, 52.119821791000106 ], [ -121.919246656999945, 52.120091466000083 ], [ -121.916180020999889, 52.120063319000067 ], [ -121.91621272799992, 52.118714943000072 ], [ -121.914460418999965, 52.118698824000035 ], [ -121.9144342109999, 52.119777523000067 ], [ -121.914281359999961, 52.119776116000111 ], [ -121.915909921999955, 52.119833802000095 ], [ -121.915827565999948, 52.120708129000079 ], [ -121.921072795999933, 52.120893765000119 ], [ -121.921039702999977, 52.121245545000065 ], [ -121.923482033999946, 52.121331900000079 ], [ -121.923429487999911, 52.121890786000073 ], [ -121.923206361999974, 52.12426376500013 ], [ -121.927468458999954, 52.124414338000065 ], [ -121.927473302999957, 52.124212604000036 ], [ -121.927525044999967, 52.124213075000057 ], [ -121.927550358999952, 52.123943570000044 ], [ -121.927479777999935, 52.123942929000052 ], [ -121.927514511999988, 52.122496048000109 ], [ -121.923681095999953, 52.122360621000063 ], [ -121.923749420999954, 52.121633881000122 ], [ -121.9240178299999, 52.118778711000054 ], [ -121.92618141299999, 52.118855161000099 ], [ -121.92621975499992, 52.118447062000087 ], [ -121.928974677999975, 52.118544349000054 ], [ -121.92903795, 52.117870419000077 ], [ -121.926248021, 52.117771896000157 ], [ -121.926450395999936, 52.115617673000067 ], [ -121.921782513999972, 52.115452680000061 ], [ -121.922119350999964, 52.111870754000073 ], [ -121.922733087999958, 52.111892459000032 ], [ -121.922773747999926, 52.11145996900008 ], [ -121.925080812999965, 52.11154152800006 ], [ -121.925110327999946, 52.111227411000094 ], [ -121.924452418999977, 52.111204158000099 ], [ -121.924546660999951, 52.110201309000125 ], [ -121.923846067999975, 52.110176542000033 ], [ -121.923980627, 52.10874482400002 ], [ -121.922767131999962, 52.108701916000079 ], [ -121.922926696999923, 52.107004497000027 ], [ -121.921521207999945, 52.106954785000077 ], [ -121.921528709999961, 52.106874995000119 ], [ -121.918950637999956, 52.106783763000131 ], [ -121.91873593899993, 52.109065433000062 ], [ -121.91804435499995, 52.109040950000093 ], [ -121.918021521999975, 52.109283549000082 ], [ -121.91218139299994, 52.109076632000018 ], [ -121.912293286999926, 52.107889434000107 ], [ -121.912094582999913, 52.107887601000137 ], [ -121.91208802, 52.108157277000053 ], [ -121.910336126999979, 52.108141097000022 ], [ -121.910329553999986, 52.10841077200007 ], [ -121.909453602999989, 52.108402674000033 ], [ -121.909440442999966, 52.108942022000129 ], [ -121.908126501999945, 52.108929861000043 ], [ -121.908119912999922, 52.109199536000041 ], [ -121.90762614399992, 52.109194962000046 ], [ -121.907960089999946, 52.108947095000055 ], [ -121.908793810999953, 52.10849512000005 ], [ -121.910428530999951, 52.107781330000073 ], [ -121.911115281999912, 52.10756583400007 ], [ -121.91158561, 52.107472033000072 ], [ -121.912136811999957, 52.107405230000062 ], [ -121.913731487999954, 52.107193140000106 ], [ -121.914423113999987, 52.107019985000107 ], [ -121.915030796999972, 52.106789045000085 ], [ -121.915597769999962, 52.106508137000098 ], [ -121.916413069999976, 52.105985360000069 ], [ -121.91652981699994, 52.105936231000065 ], [ -121.91686607199992, 52.10579476300007 ], [ -121.918195595000014, 52.105208418000082 ], [ -121.91871612099996, 52.105047171000074 ], [ -121.919156845999936, 52.104971121000041 ], [ -121.919594981, 52.10493809800009 ], [ -121.920344863999929, 52.104938590000096 ], [ -121.920402106999958, 52.104945267000048 ], [ -121.921396779999938, 52.105061156000019 ], [ -121.921891860999963, 52.105076877000066 ], [ -121.92226001099999, 52.105055754000041 ], [ -121.922653645999929, 52.104997804000071 ], [ -121.923969914999972, 52.104675993000107 ], [ -121.924214204999927, 52.104627435000047 ], [ -121.924756475, 52.104519595000021 ], [ -121.925392306999981, 52.104456704000022 ], [ -121.926371785999919, 52.104445486000017 ], [ -121.926840905999924, 52.104472009000055 ], [ -121.928407585999935, 52.104572310000023 ], [ -121.92837953599998, 52.106749697000033 ], [ -121.928365189999951, 52.107863615000028 ], [ -121.928382240999923, 52.107940381000098 ], [ -121.928452689999972, 52.108257497000089 ], [ -121.928616793999979, 52.108694587000038 ], [ -121.92890330699997, 52.109153003000081 ], [ -121.929292194999931, 52.10953601000007 ], [ -121.930218238999956, 52.11028728200003 ], [ -121.930438881999947, 52.110466298000077 ], [ -121.930483002999921, 52.110502091000093 ], [ -121.93054651199999, 52.110553591000084 ], [ -121.930699812999947, 52.110677969000065 ], [ -121.930780079999934, 52.110743088000028 ], [ -121.931168384999978, 52.111247608000042 ], [ -121.93147034699993, 52.111639941000128 ], [ -121.931661509999955, 52.11188830400004 ], [ -121.93172006399999, 52.111948713000046 ], [ -121.93208892199999, 52.11232920100008 ], [ -121.932363920999933, 52.112521287000106 ], [ -121.93273792199993, 52.11278250600003 ], [ -121.934466598999961, 52.113842339000044 ], [ -121.935586090999948, 52.114528647000071 ], [ -121.936309479999977, 52.11497212300003 ], [ -121.935861554, 52.115242822000063 ], [ -121.935838917999916, 52.115256510000101 ], [ -121.935683016999945, 52.115466697000059 ], [ -121.935543704999958, 52.115779811000039 ], [ -121.93549269099999, 52.116136506000025 ], [ -121.935524706999956, 52.116498785000054 ], [ -121.935683493999989, 52.116868216000071 ], [ -121.936493075999962, 52.117908286000109 ], [ -121.936559808999959, 52.117994029000016 ], [ -121.936652902999953, 52.118113665000095 ], [ -121.937233099999972, 52.118858994000092 ], [ -121.938129081999946, 52.119816859000146 ], [ -121.938278609999941, 52.119976699000098 ], [ -121.940092884999927, 52.121820404000111 ], [ -121.939936593999931, 52.12187769000014 ], [ -121.938352503999923, 52.121768989000074 ], [ -121.938158892999979, 52.121767221000042 ], [ -121.937317395999969, 52.12175949900012 ], [ -121.936616793999988, 52.121683594000068 ], [ -121.93584109299999, 52.121642783000041 ], [ -121.935285888999928, 52.121656398000056 ], [ -121.935055400999914, 52.121694284000078 ], [ -121.93494810599999, 52.121711904000072 ], [ -121.934782734999899, 52.121765390000064 ], [ -121.934559691999979, 52.121837495000079 ], [ -121.9341039829999, 52.122040604000112 ], [ -121.933847420999967, 52.122170555000103 ], [ -121.933375183999928, 52.122409711000081 ], [ -121.932999517999974, 52.122599980000103 ], [ -121.932244084999965, 52.123045103000031 ], [ -121.931900270999932, 52.12319469200002 ], [ -121.929859624999935, 52.123579998000068 ], [ -121.929418303999952, 52.123722504000035 ], [ -121.929008884999945, 52.123900394000046 ], [ -121.928586008, 52.124159493000136 ], [ -121.928574662999907, 52.124167846000034 ], [ -121.928148315, 52.124481800000062 ], [ -121.92770560699999, 52.124919895000133 ], [ -121.927171890999915, 52.125609909000083 ], [ -121.926858475999921, 52.126246694000073 ], [ -121.926646098999953, 52.126558095000057 ], [ -121.926275495999946, 52.126836997000048 ], [ -121.922605205999986, 52.129041487000066 ], [ -121.92315389599996, 52.129534412000055 ], [ -121.923450877000022, 52.129711098000023 ], [ -121.9238130049999, 52.129881108000106 ], [ -121.92427711099999, 52.12996398500006 ], [ -121.925601403999949, 52.129876889000045 ], [ -121.926105632999935, 52.129892902000059 ], [ -121.926984309999966, 52.13002459800007 ], [ -121.927282670999901, 52.130142966000058 ], [ -121.927295101, 52.130147890000025 ], [ -121.927325301999957, 52.131333582000046 ], [ -121.927325326999963, 52.131334011000035 ], [ -121.92741488799993, 52.132084646000067 ], [ -121.923090860999977, 52.13193191000007 ], [ -121.923014527999953, 52.132743494000088 ], [ -121.92212253299999, 52.132711966000073 ], [ -121.922085009999989, 52.133110815000045 ], [ -121.916241655999983, 52.132904108000091 ] ], [ [ -121.933281105999967, 52.116823292000085 ], [ -121.93336973699995, 52.115878213000059 ], [ -121.932289946999944, 52.115840128000031 ], [ -121.932201291999959, 52.116785207000099 ], [ -121.933281105999967, 52.116823292000085 ] ], [ [ -121.930820935999975, 52.114339543000014 ], [ -121.930828012999939, 52.114264118000065 ], [ -121.929855613999962, 52.114229798000046 ], [ -121.929884197000021, 52.11392524300004 ], [ -121.92840706899996, 52.113873094000049 ], [ -121.928371391999946, 52.114253073000043 ], [ -121.930820935999975, 52.114339543000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "214.1", "sL_BldgLoss": "214.1", "sL_StrLoss": "214.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D4420B0127735EC0D2C26515B6014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.796515470999964, 52.011471902000011 ], [ -121.802341942999959, 52.011684689000091 ], [ -121.801996021999983, 52.015266563000118 ], [ -121.796169071999913, 52.015053759000089 ], [ -121.796515470999964, 52.011471902000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023458", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38.6", "sL_BldgLoss": "38.6", "sL_StrLoss": "38.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005774907C4A775EC0F2DA5B806C0C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.862441111999914, 52.096629480000082 ], [ -121.862447970999938, 52.096359809000056 ], [ -121.865512925999937, 52.096389345 ], [ -121.86550608499999, 52.096659017000043 ], [ -121.865943938999962, 52.09666323000004 ], [ -121.865923419999945, 52.097472244000123 ], [ -121.865485558999978, 52.097468031000105 ], [ -121.86547871599997, 52.097737702000117 ], [ -121.86197580599999, 52.097703938000095 ], [ -121.862003257999945, 52.096625254000102 ], [ -121.862441111999914, 52.096629480000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023459", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "154.9", "sL_BldgLoss": "154.9", "sL_StrLoss": "154.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F1B1C9945775EC057C502FCA6014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.860879994999934, 52.011012633000085 ], [ -121.866706717999989, 52.011222163000049 ], [ -121.86656139899999, 52.012750459000074 ], [ -121.866366097999915, 52.014804231000078 ], [ -121.864106042999936, 52.01472299400006 ], [ -121.860538897999916, 52.014594684000024 ], [ -121.860879994999934, 52.011012633000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5831417", "BldgCostT": "4021667", "sL_LossRatio": "1", "sL_AssetLoss": "320.7", "sL_BldgLoss": "320.7", "sL_StrLoss": "320.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005984C55523745EC0DF2B0483B5024A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.814805981999967, 52.01930384900006 ], [ -121.820633590999975, 52.019515709000082 ], [ -121.820289113999962, 52.023097615000033 ], [ -121.814520546999972, 52.022887902 ], [ -121.814507355999936, 52.023024853000081 ], [ -121.808679305999988, 52.022812683000105 ], [ -121.809024736999973, 52.019230812000025 ], [ -121.814792792999981, 52.01944079900003 ], [ -121.814805981999967, 52.01930384900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023461", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "36894250", "BldgCostT": "24445000", "sL_LossRatio": "1", "sL_AssetLoss": "2508", "sL_BldgLoss": "2508", "sL_StrLoss": "2508", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082BB9268327B5EC049B1CCF0590D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.940560224999942, 52.117044088000057 ], [ -121.93957599499997, 52.116699892000078 ], [ -121.937883382999956, 52.115906265000071 ], [ -121.936309479999977, 52.11497212300003 ], [ -121.935586090999948, 52.114528647000071 ], [ -121.934466598999961, 52.113842339000044 ], [ -121.93273792199993, 52.11278250600003 ], [ -121.932363920999933, 52.112521287000106 ], [ -121.93208892199999, 52.11232920100008 ], [ -121.93172006399999, 52.111948713000046 ], [ -121.931661509999955, 52.11188830400004 ], [ -121.93147034699993, 52.111639941000128 ], [ -121.931168384999978, 52.111247608000042 ], [ -121.930780079999934, 52.110743088000028 ], [ -121.930699812999947, 52.110677969000065 ], [ -121.93054651199999, 52.110553591000084 ], [ -121.930483002999921, 52.110502091000093 ], [ -121.930438881999947, 52.110466298000077 ], [ -121.930218238999956, 52.11028728200003 ], [ -121.929292194999931, 52.10953601000007 ], [ -121.92890330699997, 52.109153003000081 ], [ -121.928616793999979, 52.108694587000038 ], [ -121.928452689999972, 52.108257497000089 ], [ -121.928382240999923, 52.107940381000098 ], [ -121.928365189999951, 52.107863615000028 ], [ -121.92837953599998, 52.106749697000033 ], [ -121.928407585999935, 52.104572310000023 ], [ -121.926840905999924, 52.104472009000055 ], [ -121.926371785999919, 52.104445486000017 ], [ -121.925392306999981, 52.104456704000022 ], [ -121.924756475, 52.104519595000021 ], [ -121.924214204999927, 52.104627435000047 ], [ -121.923969914999972, 52.104675993000107 ], [ -121.922653645999929, 52.104997804000071 ], [ -121.92226001099999, 52.105055754000041 ], [ -121.921891860999963, 52.105076877000066 ], [ -121.921396779999938, 52.105061156000019 ], [ -121.920402106999958, 52.104945267000048 ], [ -121.920344863999929, 52.104938590000096 ], [ -121.919594981, 52.10493809800009 ], [ -121.919156845999936, 52.104971121000041 ], [ -121.91871612099996, 52.105047171000074 ], [ -121.918195595000014, 52.105208418000082 ], [ -121.91686607199992, 52.10579476300007 ], [ -121.91652981699994, 52.105936231000065 ], [ -121.916413069999976, 52.105985360000069 ], [ -121.915597769999962, 52.106508137000098 ], [ -121.915030796999972, 52.106789045000085 ], [ -121.914423113999987, 52.107019985000107 ], [ -121.913731487999954, 52.107193140000106 ], [ -121.912136811999957, 52.107405230000062 ], [ -121.91158561, 52.107472033000072 ], [ -121.911115281999912, 52.10756583400007 ], [ -121.910428530999951, 52.107781330000073 ], [ -121.908793810999953, 52.10849512000005 ], [ -121.907960089999946, 52.108947095000055 ], [ -121.90762614399992, 52.109194962000046 ], [ -121.907243948000016, 52.109191421000055 ], [ -121.907235735000015, 52.10952742900006 ], [ -121.906253780999975, 52.110530917000105 ], [ -121.905458998999933, 52.110523542000109 ], [ -121.905452393999951, 52.110793216000047 ], [ -121.905890394, 52.110797282000071 ], [ -121.905889602999963, 52.110829591000019 ], [ -121.90570378299995, 52.110967602000045 ], [ -121.905203299999954, 52.111225696000083 ], [ -121.904481010999916, 52.111505500000071 ], [ -121.903676144999963, 52.111765915000035 ], [ -121.903700402999945, 52.110776938000079 ], [ -121.904138400999955, 52.11078100900005 ], [ -121.904151624999969, 52.110241661000018 ], [ -121.904589616999957, 52.110245732000102 ], [ -121.904602834999977, 52.109706384000077 ], [ -121.904164850000015, 52.109702313000085 ], [ -121.904191294999933, 52.10862361500007 ], [ -121.902877365999984, 52.108611396000072 ], [ -121.902902559999987, 52.107584914000022 ], [ -121.90290384199993, 52.107532699000075 ], [ -121.90334180799999, 52.107536774000067 ], [ -121.903355039999965, 52.106997425000031 ], [ -121.903745566999973, 52.107001057000119 ], [ -121.905106882999974, 52.107013708000075 ], [ -121.905113487999955, 52.106744032000051 ], [ -121.906865323, 52.106760289000135 ], [ -121.90687191799995, 52.106490614000087 ], [ -121.908623742999936, 52.106506844000087 ], [ -121.908630327999973, 52.106237169000046 ], [ -121.909944188999944, 52.106249324000053 ], [ -121.90996391699997, 52.105440299000115 ], [ -121.910401862999933, 52.105444347000045 ], [ -121.910408436999973, 52.105174672000061 ], [ -121.911098473999942, 52.105181048000098 ], [ -121.912134507999937, 52.105190612000115 ], [ -121.912293409999918, 52.10350450600005 ], [ -121.916646092999926, 52.103658767000098 ], [ -121.916697741999911, 52.103110111000056 ], [ -121.917555251999929, 52.103140482000121 ], [ -121.917611420999961, 52.102543665000027 ], [ -121.917042934999955, 52.102538445000064 ], [ -121.91704946599999, 52.102268769000027 ], [ -121.916611549999942, 52.102264745000078 ], [ -121.916618084999925, 52.101995070000065 ], [ -121.916180170999937, 52.101991044000052 ], [ -121.916206319999972, 52.100912341000026 ], [ -121.915768416999981, 52.100908315000048 ], [ -121.915785120999928, 52.100219446000104 ], [ -121.915788035999967, 52.100099287000042 ], [ -121.91753961699996, 52.100115383000073 ], [ -121.917534899999978, 52.100310182000079 ], [ -121.917533087, 52.100385060000114 ], [ -121.91781432099998, 52.100387641000097 ], [ -121.917820217000013, 52.100324975000078 ], [ -121.917858493999944, 52.099918234000015 ], [ -121.91885750599999, 52.099953608000128 ], [ -121.91886634299999, 52.099588086000047 ], [ -121.920180014999971, 52.099600126000112 ], [ -121.920170355999957, 52.100000083000062 ], [ -121.920242561999899, 52.100002638000099 ], [ -121.920551279000023, 52.096719793000034 ], [ -121.92188585000001, 52.096767020000051 ], [ -121.921938649999944, 52.096205326000103 ], [ -121.925076820999962, 52.096316316000049 ], [ -121.925091569999907, 52.095702696000068 ], [ -121.92509406299996, 52.095598997000117 ], [ -121.926407618999946, 52.095610967000042 ], [ -121.926401146000018, 52.09588064400004 ], [ -121.926839, 52.095884631000054 ], [ -121.926827154999955, 52.096378185000084 ], [ -121.927777093999936, 52.096411751000048 ], [ -121.927708226, 52.097145436000069 ], [ -121.928927905999913, 52.097188521000128 ], [ -121.928892365999957, 52.097567246000054 ], [ -121.934179940999911, 52.097753882000092 ], [ -121.934037123999985, 52.099277709000063 ], [ -121.936524465999952, 52.09936542100013 ], [ -121.936188913999985, 52.102947426000071 ], [ -121.932948272999965, 52.10283314 ], [ -121.932850463999941, 52.10282969000005 ], [ -121.932778706, 52.103595006000049 ], [ -121.932048330999976, 52.103569236000112 ], [ -121.931858622999968, 52.105592012000052 ], [ -121.932825063999957, 52.105626111000042 ], [ -121.933584726999968, 52.105652908000117 ], [ -121.933321838999944, 52.1084568160001 ], [ -121.93324888299999, 52.109234886000081 ], [ -121.931784071999971, 52.109183209000093 ], [ -121.93174522000001, 52.109597419000139 ], [ -121.934786267, 52.109704682 ], [ -121.934760307999966, 52.109981642000051 ], [ -121.935044877999957, 52.109991675000089 ], [ -121.935008429999982, 52.110380543000083 ], [ -121.935454389999933, 52.110396265000077 ], [ -121.935413549999964, 52.110832043000102 ], [ -121.936032200999989, 52.110853851000094 ], [ -121.935889816999946, 52.112373262000105 ], [ -121.936862178999917, 52.112407530000091 ], [ -121.936768816, 52.113404004000088 ], [ -121.940804007999986, 52.113546126000067 ], [ -121.940526720999927, 52.116508312000136 ], [ -121.941678869999961, 52.116518658000061 ], [ -121.941672484, 52.116788336000134 ], [ -121.94211054499999, 52.116792267000051 ], [ -121.942092776999971, 52.117542773000096 ], [ -121.94164730599999, 52.117424185000132 ], [ -121.940560224999942, 52.117044088000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21783917", "BldgCostT": "14551667", "sL_LossRatio": "1", "sL_AssetLoss": "1126.5", "sL_BldgLoss": "1126.5", "sL_StrLoss": "1126.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099F4396F0A785EC097722103B70E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.86783832, 52.117422009000109 ], [ -121.867762393999897, 52.117127315000126 ], [ -121.86752508099994, 52.116772905000069 ], [ -121.867028997, 52.116382188000081 ], [ -121.866252283000023, 52.116030016000082 ], [ -121.865339403999926, 52.115692706000054 ], [ -121.864767706999956, 52.115434084000064 ], [ -121.864512012999924, 52.115227200000092 ], [ -121.864354524999925, 52.115047035000103 ], [ -121.864247805999966, 52.114924895000065 ], [ -121.863960497999969, 52.114250592000076 ], [ -121.863849316, 52.113756895000108 ], [ -121.863474498999921, 52.113738982000051 ], [ -121.8630352, 52.113659395000077 ], [ -121.862170340999967, 52.113351248000107 ], [ -121.862011332999913, 52.113294600000117 ], [ -121.860494712999952, 52.112754185000014 ], [ -121.860355824999957, 52.112667826000106 ], [ -121.861834113, 52.11272089200002 ], [ -121.861876353999918, 52.112278220000064 ], [ -121.866466314, 52.112442863000098 ], [ -121.866477049999943, 52.112330229000072 ], [ -121.86793817799996, 52.112382601 ], [ -121.867966299999949, 52.112087464000098 ], [ -121.869712963999973, 52.112150047000121 ], [ -121.869845301999945, 52.110760507000052 ], [ -121.875685454999939, 52.110969565000097 ], [ -121.875553167999954, 52.11236052400006 ], [ -121.875618754999891, 52.11236287 ], [ -121.875603739000013, 52.112520762000059 ], [ -121.878655686999963, 52.112629892000029 ], [ -121.878745054999953, 52.112633086000088 ], [ -121.878501026999956, 52.115200714000089 ], [ -121.879081040999949, 52.115221444000071 ], [ -121.879119338999914, 52.114818435000046 ], [ -121.879829389999927, 52.114843808000032 ], [ -121.880012421999965, 52.112917353000093 ], [ -121.881189678999974, 52.112959413000041 ], [ -121.881242099999952, 52.112407481000048 ], [ -121.882757332999944, 52.112461597000028 ], [ -121.882758830999975, 52.112445817000044 ], [ -121.886268630999936, 52.112571093000071 ], [ -121.88859927099999, 52.112654222000018 ], [ -121.888534983999989, 52.113332307000071 ], [ -121.891807637999975, 52.113363113000034 ], [ -121.891800949999919, 52.113632786000025 ], [ -121.892238974999955, 52.11363690100012 ], [ -121.892235259999921, 52.113786773000101 ], [ -121.89769311299996, 52.113981081000105 ], [ -121.897645396999962, 52.114485477000095 ], [ -121.89713790199994, 52.114514889000077 ], [ -121.895555107999911, 52.114489998000089 ], [ -121.895079211, 52.114457621000057 ], [ -121.894172082999916, 52.114395902000119 ], [ -121.893596483999914, 52.114317002000085 ], [ -121.892342303999939, 52.114023407000111 ], [ -121.891410584999932, 52.113883295000115 ], [ -121.888697722999936, 52.113677901000088 ], [ -121.887662410999951, 52.11455290700011 ], [ -121.887411393999926, 52.114728212000038 ], [ -121.88705768899996, 52.114872799000096 ], [ -121.886678377999914, 52.114932887000087 ], [ -121.886444991999952, 52.114935371000065 ], [ -121.884833389999969, 52.114952503000083 ], [ -121.884514786999929, 52.114990505000087 ], [ -121.884356094999987, 52.115044363000045 ], [ -121.884239303999934, 52.115084003000078 ], [ -121.884010005999954, 52.115215104000058 ], [ -121.883850208999988, 52.115401604000034 ], [ -121.883775514999954, 52.115570603000066 ], [ -121.88373649499999, 52.115796509000049 ], [ -121.88373840599999, 52.118430897000081 ], [ -121.883643607999957, 52.11885879900013 ], [ -121.883431604999927, 52.119240312000059 ], [ -121.8832093, 52.119189195000118 ], [ -121.879170199999976, 52.119166290000116 ], [ -121.878741491999918, 52.11912850000008 ], [ -121.878391481999984, 52.1190657000001 ], [ -121.878365546999987, 52.119058632000097 ], [ -121.87800719399992, 52.118961203000012 ], [ -121.87759530299995, 52.118809006000056 ], [ -121.87674859699996, 52.11828279200008 ], [ -121.876116499999952, 52.118026612000051 ], [ -121.87568879899996, 52.117916889000107 ], [ -121.873994889999935, 52.117656007000043 ], [ -121.87385922499999, 52.117638724000123 ], [ -121.87321028199996, 52.117555990000035 ], [ -121.87276130099994, 52.117562410000055 ], [ -121.872453724999971, 52.117608004000026 ], [ -121.872107979999953, 52.117698896000022 ], [ -121.87181589799998, 52.117842997000089 ], [ -121.87132349299999, 52.118166814000126 ], [ -121.870398806000011, 52.11890638900006 ], [ -121.870140267999943, 52.119088589000121 ], [ -121.869998309, 52.119188598000051 ], [ -121.869620585999925, 52.119323296000083 ], [ -121.869287819999954, 52.119386897000091 ], [ -121.86882999599996, 52.119393797000029 ], [ -121.868553988999949, 52.119352494000104 ], [ -121.868305387999953, 52.119247650000048 ], [ -121.868097603999914, 52.119160006000094 ], [ -121.867816296999962, 52.118836393000052 ], [ -121.867764322999946, 52.118690706000116 ], [ -121.867761820999988, 52.118362697000101 ], [ -121.867833029999986, 52.117874368000066 ], [ -121.86785919099998, 52.117694997000079 ], [ -121.86783832, 52.117422009000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11265750", "BldgCostT": "7560000", "sL_LossRatio": "0.994393868398153", "sL_AssetLoss": "597.56", "sL_BldgLoss": "594.21", "sL_StrLoss": "593", "sL_NStrLoss": "1.21", "sL_ContLoss": "3.35", "geom_point": "0101000020E6100000BFB6C016627A5EC017945808E1064A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.90926389599997, 52.058173126000064 ], [ -121.909576719999919, 52.054852256000075 ], [ -121.905172686999961, 52.054695721000037 ], [ -121.905510420999931, 52.051113662000034 ], [ -121.91125253300001, 52.051317723000111 ], [ -121.911281381999913, 52.051011288000083 ], [ -121.911412856999931, 52.049614700000078 ], [ -121.917244995999951, 52.049821666000092 ], [ -121.917024484999942, 52.052167300000058 ], [ -121.918097532000019, 52.052205347000076 ], [ -121.917760824999959, 52.055787440000103 ], [ -121.915349108999976, 52.05570191400011 ], [ -121.91509717299999, 52.058380199000041 ], [ -121.914772624999955, 52.058368686000087 ], [ -121.90926389599997, 52.058173126000064 ] ], [ [ -121.912012965, 52.054676711000106 ], [ -121.912148686999927, 52.053234884000091 ], [ -121.911165822999976, 52.05319998500002 ], [ -121.91103006899999, 52.054641811000089 ], [ -121.912012965, 52.054676711000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "1", "sL_AssetLoss": "236", "sL_BldgLoss": "236", "sL_StrLoss": "236", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BCB05785C765EC065747ABD7F0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.847909697999981, 52.105789213000108 ], [ -121.847445985999968, 52.105507385000102 ], [ -121.846927493999971, 52.105231794000112 ], [ -121.846726034999975, 52.105150352000081 ], [ -121.846229416999961, 52.104949598000125 ], [ -121.845123644999902, 52.104608022000022 ], [ -121.844458123999956, 52.104402402000062 ], [ -121.844216255, 52.104293897000062 ], [ -121.84407470299999, 52.104230395000101 ], [ -121.843423695999945, 52.103828910000125 ], [ -121.843253121999936, 52.103723702000103 ], [ -121.842902982999945, 52.103555587000074 ], [ -121.842795731999971, 52.103519753000057 ], [ -121.842511300999945, 52.103424690000068 ], [ -121.842080700999958, 52.103332810000047 ], [ -121.841214474999958, 52.103221015000024 ], [ -121.83967248299993, 52.102475235000043 ], [ -121.839757024999955, 52.102478286000078 ], [ -121.839769897999957, 52.102344069000111 ], [ -121.841615410999978, 52.102845690000066 ], [ -121.84208451399995, 52.102804399000043 ], [ -121.842570220999988, 52.102656299000039 ], [ -121.843108808999887, 52.102734597000094 ], [ -121.843153584999953, 52.102689106000113 ], [ -121.850058945999933, 52.103727287000041 ], [ -121.852423398, 52.104116298000115 ], [ -121.852308027999968, 52.105322776000079 ], [ -121.853558213999989, 52.105367750000077 ], [ -121.853510906999958, 52.105862605000084 ], [ -121.854295721999975, 52.105890831000103 ], [ -121.853953337999926, 52.109472575000041 ], [ -121.853084614999901, 52.109441332000138 ], [ -121.852905795999959, 52.109319218000039 ], [ -121.852427183999936, 52.10899241100001 ], [ -121.851211986999914, 52.108055040000067 ], [ -121.851011086999961, 52.107900111000042 ], [ -121.850507712999928, 52.107588101000069 ], [ -121.849516877999974, 52.107073598000063 ], [ -121.849065485999944, 52.106768904000049 ], [ -121.848336304999947, 52.106123507000099 ], [ -121.847909697999981, 52.105789213000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "78.7", "sL_BldgLoss": "78.7", "sL_StrLoss": "78.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084A4EC80ED775EC041E0377469064A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.872347126999927, 52.051138921000124 ], [ -121.87236070499992, 52.05059957400006 ], [ -121.87192330000002, 52.050595387000094 ], [ -121.871930092999932, 52.050325713000063 ], [ -121.871492691999947, 52.050321525000093 ], [ -121.871519867999908, 52.049242828000061 ], [ -121.87633117499999, 52.049288807000082 ], [ -121.876304115000025, 52.050367506000079 ], [ -121.875866710999958, 52.050363332000131 ], [ -121.875859944, 52.050633007000073 ], [ -121.875422538999942, 52.050628834000072 ], [ -121.875415767999954, 52.050898508000017 ], [ -121.874540952999951, 52.05089015700004 ], [ -121.874534177, 52.051159830000067 ], [ -121.872347126999927, 52.051138921000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22815666", "BldgCostT": "15261666", "sL_LossRatio": "0.996381908274088", "sL_AssetLoss": "1578.18", "sL_BldgLoss": "1572.47", "sL_StrLoss": "1570.4", "sL_NStrLoss": "2.07", "sL_ContLoss": "5.71", "geom_point": "0101000020E610000092C81DBA89765EC06E0702E8A0FF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.854855832999959, 52.005326045000039 ], [ -121.854921765999919, 52.004634505000119 ], [ -121.854337164999933, 52.004613432000028 ], [ -121.854461632999985, 52.003308041000068 ], [ -121.85130354799999, 52.003194154000042 ], [ -121.85164531599996, 51.999612096000078 ], [ -121.85205967899995, 51.999627043000025 ], [ -121.852169964999987, 51.998470905000104 ], [ -121.852282526999943, 51.998474966000096 ], [ -121.85236891299995, 51.997569309000028 ], [ -121.852375008999957, 51.997569529000025 ], [ -121.852421039999939, 51.997086909000096 ], [ -121.853677626999954, 51.997132229000073 ], [ -121.853692098999929, 51.996980456000074 ], [ -121.853007308999949, 51.996955760000077 ], [ -121.852997198000011, 51.997061778000088 ], [ -121.847172435999937, 51.99685155100012 ], [ -121.847201256999938, 51.996549768000115 ], [ -121.846200723999985, 51.996513627000098 ], [ -121.84622809399994, 51.996227088000104 ], [ -121.845306812, 51.996193803000018 ], [ -121.845318275999929, 51.996073820000049 ], [ -121.844769500999959, 51.996053988000078 ], [ -121.844826585999925, 51.995456561000012 ], [ -121.842615465, 51.995376632000045 ], [ -121.842633354999961, 51.99518950099999 ], [ -121.841911952999979, 51.995163413000128 ], [ -121.841935841999941, 51.994913584000066 ], [ -121.84099593799999, 51.994879589000107 ], [ -121.841021989999902, 51.994607180000109 ], [ -121.840311331999942, 51.994581472000064 ], [ -121.840652079999941, 51.991018819000061 ], [ -121.840653935999953, 51.99099941900004 ], [ -121.841190645999944, 51.991018836000102 ], [ -121.84126485799996, 51.990242732000041 ], [ -121.847088707999916, 51.990453259000077 ], [ -121.847070005999967, 51.990649116000014 ], [ -121.84773239699993, 51.990673042000047 ], [ -121.847690457999974, 51.991112318000091 ], [ -121.849121778, 51.991164005000016 ], [ -121.849101135999945, 51.991380289000041 ], [ -121.850145156999957, 51.991417978000094 ], [ -121.850096547999954, 51.991927383000117 ], [ -121.851023960999896, 51.99196085500008 ], [ -121.850943624999928, 51.99280293500005 ], [ -121.851473205999966, 51.992822045000054 ], [ -121.851445870999925, 51.993108585000058 ], [ -121.852367094, 51.993141822000077 ], [ -121.852348421999963, 51.993337590000117 ], [ -121.855743883999978, 51.993460032000094 ], [ -121.855717060999922, 51.993741502000091 ], [ -121.859831156999959, 51.993889723000073 ], [ -121.859490107999974, 51.997471824000051 ], [ -121.858233506, 51.997426567000041 ], [ -121.858194807999951, 51.997832853000034 ], [ -121.859294059999982, 51.997872443000077 ], [ -121.859198896999942, 51.998871796000131 ], [ -121.859430624999945, 51.998880141000015 ], [ -121.859210221999902, 52.001194634000058 ], [ -121.86050405, 52.001241215000029 ], [ -121.860438212999895, 52.001932761000063 ], [ -121.86102278099996, 52.001953803000049 ], [ -121.86084639799995, 52.003806635000075 ], [ -121.860681765999985, 52.005535882000125 ], [ -121.854855832999959, 52.005326045000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "159.7", "sL_BldgLoss": "159.7", "sL_StrLoss": "159.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000093B7AF4583725EC0CB01710DA2014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.786522544999968, 52.010860363000063 ], [ -121.792348886999932, 52.011073656000086 ], [ -121.792002147999966, 52.014655501000036 ], [ -121.78617532899996, 52.014442192000061 ], [ -121.786522544999968, 52.010860363000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023470", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "77.2", "sL_BldgLoss": "77.2", "sL_StrLoss": "77.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B601AF01D77C5EC0639876DE04084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949835001999958, 52.06482020200005 ], [ -121.949881087999984, 52.064326156000021 ], [ -121.949412921999965, 52.064309692000073 ], [ -121.949452882999964, 52.063881340000108 ], [ -121.949289347999965, 52.063875588000023 ], [ -121.949623517999953, 52.060293428000094 ], [ -121.951045697999987, 52.060343439000107 ], [ -121.951078266999971, 52.059994174000046 ], [ -121.951130306999971, 52.059436063000113 ], [ -121.951223426999903, 52.0594393370001 ], [ -121.951355572999887, 52.060134747000127 ], [ -121.951445268999976, 52.060606714000102 ], [ -121.951563227999941, 52.061227479000095 ], [ -121.951539680999986, 52.061328971000066 ], [ -121.951489844999983, 52.061543866000115 ], [ -121.951484504999883, 52.061836576000069 ], [ -121.951645219999975, 52.062419951000066 ], [ -121.951746374999942, 52.062596204000094 ], [ -121.952054419999953, 52.064898227000107 ], [ -121.949835001999958, 52.06482020200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023471", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "155.9", "sL_BldgLoss": "155.9", "sL_StrLoss": "155.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDF33337D77A5EC03DB067F864094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.920295128999953, 52.07162909300007 ], [ -121.922471645999934, 52.071706157000065 ], [ -121.922135149, 52.075288205000028 ], [ -121.921406611999927, 52.075262414000044 ], [ -121.9162995699999, 52.075081490000052 ], [ -121.916636545999921, 52.071499459000101 ], [ -121.920295128999953, 52.07162909300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "198.7", "sL_BldgLoss": "198.7", "sL_StrLoss": "198.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009C02912CFD795EC0FD714E2EBE054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.907480568999944, 52.043119209000075 ], [ -121.909161937999912, 52.043178973000103 ], [ -121.908899025999986, 52.04597052900003 ], [ -121.908824565999907, 52.046761068000038 ], [ -121.902992878999925, 52.046553674000094 ], [ -121.903330728999919, 52.042971597000118 ], [ -121.907480568999944, 52.043119209000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38.6", "sL_BldgLoss": "38.6", "sL_StrLoss": "38.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C9DD090D6775EC00DD5200E8A0C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.872026283999944, 52.098609745000047 ], [ -121.872033087999938, 52.098340073000081 ], [ -121.871595216999935, 52.098335882000065 ], [ -121.871602021999948, 52.09806621000007 ], [ -121.871164154000013, 52.098062018000078 ], [ -121.871184576999951, 52.097253002000102 ], [ -121.87249816, 52.097265573000122 ], [ -121.87249136, 52.097535245000124 ], [ -121.873367085999973, 52.097543617000063 ], [ -121.87336029199993, 52.097813290000019 ], [ -121.873798157999886, 52.097817474000138 ], [ -121.873777781999976, 52.098626490000143 ], [ -121.872026283999944, 52.098609745000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023474", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "197.5", "sL_BldgLoss": "197.5", "sL_StrLoss": "197.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DAEEEBB567E5EC005D781180D094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.971292433999963, 52.068819058000024 ], [ -121.977127431999946, 52.069022991000061 ], [ -121.976812518999978, 52.072421157000086 ], [ -121.97679546099999, 52.072605206000041 ], [ -121.970959985999912, 52.072401256000056 ], [ -121.971084343, 52.071061350000036 ], [ -121.971292433999963, 52.068819058000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.8", "sL_BldgLoss": "36.8", "sL_StrLoss": "36.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000256AD40989735EC04493BC212A094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.803959369999973, 52.072583322000099 ], [ -121.803966577999958, 52.072313655000102 ], [ -121.803528970999949, 52.07230921400005 ], [ -121.80353618, 52.072039548000049 ], [ -121.803098576999915, 52.072035104000108 ], [ -121.803120209999946, 52.071226104000047 ], [ -121.803557806999919, 52.07123054700012 ], [ -121.803565014999961, 52.070960881000055 ], [ -121.804002607000015, 52.070965322000063 ], [ -121.804009812999979, 52.070695656000062 ], [ -121.80663535599993, 52.070722270000026 ], [ -121.806628165999925, 52.070991937000031 ], [ -121.807503353999934, 52.071000796000071 ], [ -121.807481798999902, 52.071809796000068 ], [ -121.80704419599999, 52.07180536700011 ], [ -121.807037009999988, 52.072075035000097 ], [ -121.806599403999954, 52.072070604000025 ], [ -121.806592214999966, 52.07234027100003 ], [ -121.805717, 52.07233140600006 ], [ -121.805709805999967, 52.072601073000051 ], [ -121.803959369999973, 52.072583322000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "196.2", "sL_BldgLoss": "196.2", "sL_StrLoss": "196.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000591203D191785EC0717CA30C8B0A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.881151726999917, 52.080473228000095 ], [ -121.886987860999938, 52.080681720000044 ], [ -121.886648368999914, 52.084263637000042 ], [ -121.880811754999968, 52.084055128000067 ], [ -121.881151726999917, 52.080473228000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023478", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.4", "sL_BldgLoss": "34.4", "sL_StrLoss": "34.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000050A43D56D7815EC0766C670CB10D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.029081492, 52.108359651000065 ], [ -122.02872411, 52.108212103000021 ], [ -122.028257196, 52.108213853000066 ], [ -122.028491829999922, 52.105651345000126 ], [ -122.029221258999939, 52.105605786000105 ], [ -122.029217047999964, 52.105732911000132 ], [ -122.029220554999981, 52.105732912000093 ], [ -122.029165934999952, 52.106764442000049 ], [ -122.029081492, 52.108359651000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14667917", "BldgCostT": "8641667", "sL_LossRatio": "1", "sL_AssetLoss": "315.4", "sL_BldgLoss": "315.4", "sL_StrLoss": "315.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C45C31A7B4815EC00B6DADED750F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.028267238999916, 52.124150515000046 ], [ -122.028302443999962, 52.123766198000055 ], [ -122.028192562999948, 52.123762414000055 ], [ -122.028201075, 52.123669496000126 ], [ -122.02626375299991, 52.123602767000094 ], [ -122.023168286999976, 52.123496080000052 ], [ -122.023169606999915, 52.123481679000058 ], [ -122.02222645199997, 52.12344915500006 ], [ -122.022555062999913, 52.119866964000046 ], [ -122.023144133999935, 52.11988727800005 ], [ -122.023242200999931, 52.118817978000038 ], [ -122.026424602999938, 52.118927671000094 ], [ -122.027648074999931, 52.118969818000096 ], [ -122.027700990999961, 52.118392173000061 ], [ -122.027832970999953, 52.116951371000027 ], [ -122.02860320399995, 52.117049407000131 ], [ -122.02897859299999, 52.117268711000108 ], [ -122.029924487999935, 52.117483708000108 ], [ -122.030953800999924, 52.117824085000052 ], [ -122.032298191999985, 52.117754311000091 ], [ -122.033151493999952, 52.118138915000046 ], [ -122.033697064999956, 52.118160568000086 ], [ -122.030449156999978, 52.118920356000068 ], [ -122.02910661699994, 52.119453575000051 ], [ -122.029315710999953, 52.121161323000095 ], [ -122.02927871199995, 52.122617374000086 ], [ -122.029341821999964, 52.124187513000081 ], [ -122.028267238999916, 52.124150515000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6210833", "BldgCostT": "4283333", "sL_LossRatio": "1", "sL_AssetLoss": "389.4", "sL_BldgLoss": "389.4", "sL_StrLoss": "389.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D0EEF38CFB7D5EC0510DA084BE0E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.967209385999951, 52.111831629000072 ], [ -121.973050144999959, 52.112035762000055 ], [ -121.972793527999954, 52.114799243000107 ], [ -121.972717508999949, 52.115617835000151 ], [ -121.970028787999965, 52.115523902000056 ], [ -121.96974786599999, 52.118546602000073 ], [ -121.963906246999969, 52.118342303000098 ], [ -121.964113778999931, 52.116112548000025 ], [ -121.964239628999948, 52.114760263000072 ], [ -121.966928289999927, 52.114854331000139 ], [ -121.967209385999951, 52.111831629000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "143.1", "sL_BldgLoss": "143.1", "sL_StrLoss": "143.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000020F03CC8DD7F5EC06CE2CBE1660B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.995970671999942, 52.09049370000011 ], [ -121.996127692999934, 52.088791997000037 ], [ -121.995302849999945, 52.088763336000028 ], [ -121.992825378999953, 52.088677218000043 ], [ -121.992909590999957, 52.087765267000101 ], [ -121.995408459999965, 52.087755768000086 ], [ -122.000328915999972, 52.087783219000073 ], [ -122.000757299999975, 52.088099411000066 ], [ -122.000688598999929, 52.08849401100008 ], [ -122.000860177999925, 52.088747496000082 ], [ -122.000843988999961, 52.08876582400012 ], [ -122.000544196999897, 52.089104908000088 ], [ -122.000628611999929, 52.089258791000049 ], [ -122.000729919999941, 52.089331406000078 ], [ -122.00156061099996, 52.089409690000132 ], [ -122.001915339999954, 52.089538967000117 ], [ -122.001867170999944, 52.090061758000097 ], [ -122.001496080999985, 52.09024569200011 ], [ -122.001432902999937, 52.090469296000101 ], [ -122.001766101, 52.090653101000036 ], [ -122.001778451999925, 52.090695332000053 ], [ -121.995970671999942, 52.09049370000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21770000", "BldgCostT": "14750000", "sL_LossRatio": "1", "sL_AssetLoss": "1454", "sL_BldgLoss": "1454", "sL_StrLoss": "1454", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B65A3710987F5EC08698098EE40D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.99387543399996, 52.114008541000025 ], [ -121.993881929999958, 52.113719934000102 ], [ -121.993460724999949, 52.113705299000074 ], [ -121.993474507999935, 52.113556125000088 ], [ -121.990306721999914, 52.113446016000125 ], [ -121.990362174999945, 52.11284623700007 ], [ -121.989521334999949, 52.112816996000078 ], [ -121.989571025999922, 52.11227964700003 ], [ -121.98665587, 52.11217822000004 ], [ -121.986772414999976, 52.110918768 ], [ -121.986987328999973, 52.108596097000081 ], [ -121.987102867, 52.108600118000076 ], [ -121.987206697999966, 52.107477830000121 ], [ -121.98657549899994, 52.107472407000131 ], [ -121.986593840999916, 52.106663362000077 ], [ -121.985717902999909, 52.106655830000108 ], [ -121.98573626, 52.10584678500004 ], [ -121.987050142, 52.105858081000036 ], [ -121.987037919999949, 52.106397444000066 ], [ -121.987306434999937, 52.106399751000012 ], [ -121.987369495999971, 52.105718100000082 ], [ -121.987491263999928, 52.105722339000039 ], [ -121.987494210999969, 52.105592161000104 ], [ -121.98837013, 52.105599681000029 ], [ -121.98837623299994, 52.105329998000066 ], [ -121.988484819999982, 52.105330930000058 ], [ -121.988567423999896, 52.104437728000072 ], [ -121.989942246999988, 52.104485557000054 ], [ -121.989949966, 52.104402060000083 ], [ -121.990703387999957, 52.104428264000056 ], [ -121.990717241999988, 52.104278378000046 ], [ -121.991635457999948, 52.104310308000024 ], [ -121.991841430999969, 52.10208120300009 ], [ -121.993117458, 52.102125562000026 ], [ -121.997680993999936, 52.102284089000086 ], [ -121.997493145999925, 52.104320002000094 ], [ -121.999119486999945, 52.104376455000114 ], [ -121.998998291999939, 52.105690398000078 ], [ -121.999757093999975, 52.105696838000057 ], [ -121.999738988999965, 52.106505885000068 ], [ -121.99892370799995, 52.106498967000071 ], [ -121.998789060999968, 52.107958625000094 ], [ -121.998232069000025, 52.107939294000111 ], [ -121.998200454999932, 52.108281939000065 ], [ -121.997973525999925, 52.108274062000049 ], [ -121.997940365999952, 52.108633444000098 ], [ -121.997929466999949, 52.10863306600006 ], [ -121.997780923999954, 52.110242857000038 ], [ -122.001030636999957, 52.11035561100006 ], [ -122.00094678, 52.111265080000102 ], [ -122.000937442999927, 52.111682716000068 ], [ -122.000926319999976, 52.112180361000107 ], [ -122.000862432999938, 52.112179820000065 ], [ -122.000700322999947, 52.113937769000067 ], [ -121.999303592999979, 52.113889319000108 ], [ -121.999301858999985, 52.113908103000064 ], [ -121.998697538999963, 52.113887135000034 ], [ -121.998693901999957, 52.114049560000083 ], [ -121.996941729999961, 52.114034666000066 ], [ -121.996946403999956, 52.113826358000054 ], [ -121.99607083899997, 52.113795959000086 ], [ -121.996067818999947, 52.113930401000111 ], [ -121.996065644999987, 52.114027210000117 ], [ -121.99387543399996, 52.114008541000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "1", "sL_AssetLoss": "351.4", "sL_BldgLoss": "351.4", "sL_StrLoss": "351.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FBAF52C5BD805EC0E4471D991E0F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.009229122999983, 52.120974311000047 ], [ -122.009448434000021, 52.118591336000094 ], [ -122.007244720999978, 52.118515061000032 ], [ -122.007339126999966, 52.117489746000082 ], [ -122.007574528999953, 52.114932898000049 ], [ -122.009617048999957, 52.115003595000061 ], [ -122.013415894999952, 52.115134987000047 ], [ -122.013260255999924, 52.116827971000092 ], [ -122.013207134999945, 52.117405780000126 ], [ -122.016046960999972, 52.117503919000093 ], [ -122.016043339999968, 52.117543334000096 ], [ -122.01571783299994, 52.121086100000106 ], [ -122.01508162099995, 52.121064119000103 ], [ -122.015071309999911, 52.121176315000078 ], [ -122.009229122999983, 52.120974311000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023485", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "194.7", "sL_BldgLoss": "194.7", "sL_StrLoss": "194.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB1A51F3787E5EC083767FA3BA0E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.975949197999938, 52.113267540000102 ], [ -121.979218900999982, 52.113381599000022 ], [ -121.97888676299999, 52.116963686000091 ], [ -121.973045314999979, 52.11675984900004 ], [ -121.973242285999973, 52.114638666000111 ], [ -121.973377931999934, 52.113177779000061 ], [ -121.975949197999938, 52.113267540000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "80.7", "sL_BldgLoss": "80.7", "sL_StrLoss": "80.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005735941C68805EC03FB1CA5CCBFE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.005745810999883, 51.988525751000104 ], [ -122.006658192999964, 51.988557446000073 ], [ -122.006856888999948, 51.989387328000113 ], [ -122.007210498999953, 51.990864145000025 ], [ -122.007525988999973, 51.992181551000108 ], [ -122.005416806999904, 51.992108293000037 ], [ -122.005745810999883, 51.988525751000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "158.5", "sL_BldgLoss": "158.5", "sL_StrLoss": "158.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F0264BEF537F5EC02D0CEC8C4AF94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.989557151999946, 51.950209930000064 ], [ -121.989653906999948, 51.949159536000096 ], [ -121.98850178699999, 51.949119304000128 ], [ -121.98862815299999, 51.947747773000096 ], [ -121.987932962999963, 51.947723491000069 ], [ -121.988263067999952, 51.944140861000079 ], [ -121.988736861999939, 51.944157411000106 ], [ -121.98909851, 51.944833488000015 ], [ -121.989664376999883, 51.945851585000113 ], [ -121.990201673999962, 51.946832293000099 ], [ -121.990838776999965, 51.94799515100005 ], [ -121.991105502999957, 51.948632549000116 ], [ -121.991225681999964, 51.949189850000067 ], [ -121.991451198999982, 51.950235913000064 ], [ -121.991465107999915, 51.950276531000014 ], [ -121.989557151999946, 51.950209930000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7588333", "BldgCostT": "5233333", "sL_LossRatio": "1", "sL_AssetLoss": "475.8", "sL_BldgLoss": "475.8", "sL_StrLoss": "475.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075873D82157D5EC0023D3F52E5074A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.951757530999942, 52.058613877000056 ], [ -121.957591066999925, 52.058818800000033 ], [ -121.957257563999946, 52.062400988000078 ], [ -121.957197146999974, 52.062398868000074 ], [ -121.956984797999922, 52.064679390000066 ], [ -121.955705757999922, 52.064634485000106 ], [ -121.955669360999977, 52.065025221000084 ], [ -121.953936707999958, 52.064964367000087 ], [ -121.952054419999953, 52.064898227000107 ], [ -121.951746374999942, 52.062596204000094 ], [ -121.951645219999975, 52.062419951000066 ], [ -121.951484504999883, 52.061836576000069 ], [ -121.951489844999983, 52.061543866000115 ], [ -121.951539680999986, 52.061328971000066 ], [ -121.951563227999941, 52.061227479000095 ], [ -121.951445268999976, 52.060606714000102 ], [ -121.951355572999887, 52.060134747000127 ], [ -121.951223426999903, 52.0594393370001 ], [ -121.951679080999938, 52.059455356000122 ], [ -121.951757530999942, 52.058613877000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8107917", "BldgCostT": "5591667", "sL_LossRatio": "1", "sL_AssetLoss": "466", "sL_BldgLoss": "466", "sL_StrLoss": "466", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075D21464B87F5EC0FC706F02FC0A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.000757299999975, 52.088099411000066 ], [ -122.000328915999972, 52.087783219000073 ], [ -121.995408459999965, 52.087755768000086 ], [ -121.992909590999957, 52.087765267000101 ], [ -121.992951952999945, 52.08730652000002 ], [ -121.991740535999952, 52.087264392000044 ], [ -121.991796767, 52.086655607000068 ], [ -121.991048355999936, 52.086629574000092 ], [ -121.991365042999973, 52.083201261000049 ], [ -121.991379257999981, 52.08304736200008 ], [ -121.997216259999945, 52.083250275000047 ], [ -121.997160109999982, 52.08385906300002 ], [ -121.997908477999957, 52.083885058000057 ], [ -121.99778207199995, 52.085255764000138 ], [ -121.998993436999982, 52.085297830000059 ], [ -121.998836540999932, 52.086999542000072 ], [ -122.002138741999943, 52.087114149000087 ], [ -122.001915339999954, 52.089538967000117 ], [ -122.00156061099996, 52.089409690000132 ], [ -122.000729919999941, 52.089331406000078 ], [ -122.000628611999929, 52.089258791000049 ], [ -122.000544196999897, 52.089104908000088 ], [ -122.000843988999961, 52.08876582400012 ], [ -122.000860177999925, 52.088747496000082 ], [ -122.000688598999929, 52.08849401100008 ], [ -122.000757299999975, 52.088099411000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.8", "sL_BldgLoss": "36.8", "sL_StrLoss": "36.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000468802E83D7F5EC0085E25069E084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.987473231999971, 52.067829077000063 ], [ -121.987479332999982, 52.067559394000021 ], [ -121.987153431999971, 52.067556593000077 ], [ -121.987159946999967, 52.06688125400008 ], [ -121.98705701199999, 52.066880999000034 ], [ -121.98706005299999, 52.06674658300004 ], [ -121.98837278799999, 52.066757858000081 ], [ -121.98836669399995, 52.067027542000091 ], [ -121.989241858999961, 52.067035050000122 ], [ -121.98922359, 52.067844101000048 ], [ -121.987473231999971, 52.067829077000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21648500", "BldgCostT": "14930000", "sL_LossRatio": "1", "sL_AssetLoss": "1195", "sL_BldgLoss": "1195", "sL_StrLoss": "1195", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000062989F5D76825EC0DBD9BA485F0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.029165934999952, 52.106764442000049 ], [ -122.029220554999981, 52.105732912000093 ], [ -122.029217047999964, 52.105732911000132 ], [ -122.029221258999939, 52.105605786000105 ], [ -122.028491829999922, 52.105651345000126 ], [ -122.028507216999955, 52.105483284000073 ], [ -122.028937461999988, 52.105498103000102 ], [ -122.029226485999942, 52.102340795000082 ], [ -122.03136737799997, 52.102414515000071 ], [ -122.031372361999942, 52.102184554000125 ], [ -122.034875813999932, 52.10221328700009 ], [ -122.034881635, 52.101943601000073 ], [ -122.03623298399998, 52.101954655000043 ], [ -122.036266726999926, 52.101585363000027 ], [ -122.036904404, 52.101607286000039 ], [ -122.0369091, 52.101555877000116 ], [ -122.037605227999961, 52.101579807000078 ], [ -122.037612572999961, 52.101499394 ], [ -122.040310288999976, 52.101592087 ], [ -122.040322158, 52.101462058000081 ], [ -122.041022831999967, 52.101486123000015 ], [ -122.041036834999915, 52.101332675000059 ], [ -122.04176982199999, 52.101357845000095 ], [ -122.04178571199999, 52.101183693000095 ], [ -122.047625384999947, 52.101384053000082 ], [ -122.047299242999898, 52.104963523000038 ], [ -122.049154584999911, 52.105027118000123 ], [ -122.049026671999968, 52.106431483000101 ], [ -122.048668709999973, 52.106181191000083 ], [ -122.048322507999899, 52.106052982000072 ], [ -122.047897886999976, 52.106040193000055 ], [ -122.047001198999936, 52.106302285000048 ], [ -122.04661928599991, 52.106497405000056 ], [ -122.04639120899995, 52.106891905000019 ], [ -122.046185888999958, 52.106970205000067 ], [ -122.044957377999964, 52.106960298000075 ], [ -122.044591915999931, 52.107065598000069 ], [ -122.044213385999939, 52.106973108000027 ], [ -122.043120516999934, 52.106952472000089 ], [ -122.043268989999916, 52.105324821000103 ], [ -122.043232662999955, 52.105323574000067 ], [ -122.043084135999962, 52.106951785000064 ], [ -122.042550800999919, 52.106941710000072 ], [ -122.04082291899999, 52.107161099000017 ], [ -122.03893858, 52.107101295000078 ], [ -122.036978096999974, 52.106617006000114 ], [ -122.036585905999985, 52.106604190000091 ], [ -122.035935786999957, 52.106904701000133 ], [ -122.035162003999986, 52.106898994000062 ], [ -122.033489318999941, 52.106561503000044 ], [ -122.033198214999942, 52.106577096000123 ], [ -122.032814803999955, 52.106708212000086 ], [ -122.032084679999912, 52.10739459600007 ], [ -122.031815083999973, 52.107770594000066 ], [ -122.031803798999988, 52.108256285000031 ], [ -122.031238709999982, 52.108754799000074 ], [ -122.03103289799995, 52.108780395000096 ], [ -122.029634816999987, 52.108588107000074 ], [ -122.029081492, 52.108359651000065 ], [ -122.029165934999952, 52.106764442000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "67.6", "sL_BldgLoss": "67.6", "sL_StrLoss": "67.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007A5C0AFEAD825EC06515FC57D2034A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.040873752999943, 52.028597156000103 ], [ -122.043392451000031, 52.028683779000033 ], [ -122.043434912999885, 52.028765405000101 ], [ -122.043501298999942, 52.029047112000029 ], [ -122.043489010999934, 52.029310909000088 ], [ -122.043380508999959, 52.029699689000104 ], [ -122.043207179999982, 52.029981296000088 ], [ -122.042958877999965, 52.030267394000127 ], [ -122.042639583, 52.030514302000093 ], [ -122.0413819, 52.031255401000067 ], [ -122.040854182999965, 52.031735900000072 ], [ -122.040588609999986, 52.032083386000068 ], [ -122.040548406999932, 52.032167970000067 ], [ -122.040873752999943, 52.028597156000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "1", "sL_AssetLoss": "290.1", "sL_BldgLoss": "290.1", "sL_StrLoss": "290.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000097FD1DFE98795EC0B5D6619607F34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.89722559799992, 51.89677391000005 ], [ -121.903037239999918, 51.896981623000102 ], [ -121.902700493999973, 51.900564153000069 ], [ -121.902519594999944, 51.900557693000088 ], [ -121.896888376999954, 51.900356425000069 ], [ -121.8969537, 51.899662505000052 ], [ -121.89722559799992, 51.89677391000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "38.6", "sL_BldgLoss": "38.6", "sL_StrLoss": "38.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E1560761AA7F5EC0ADAF226167FA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.994626741000019, 51.957385155000104 ], [ -121.994664981999932, 51.956969567000044 ], [ -121.99408205099995, 51.956949241000125 ], [ -121.994119976999954, 51.956537122000036 ], [ -121.99358966299999, 51.956518628000083 ], [ -121.993790100999931, 51.95434071600004 ], [ -121.994316272999924, 51.95491468500007 ], [ -121.994838846999968, 51.95548468200014 ], [ -121.996284307999957, 51.957035595 ], [ -121.996713076999953, 51.957427901000095 ], [ -121.99674713499995, 51.957459064000062 ], [ -121.994626741000019, 51.957385155000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043C3071B83805EC015928ACECB0B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.007525733999941, 52.091196849000013 ], [ -122.008839194999922, 52.091207900000036 ], [ -122.008809313999976, 52.092556320000064 ], [ -122.008371478999919, 52.092552638000086 ], [ -122.008359519999942, 52.093092007000052 ], [ -122.007046003999932, 52.093080950000029 ], [ -122.00706396599999, 52.092271898000071 ], [ -122.007501796, 52.092275585000024 ], [ -122.007525733999941, 52.091196849000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.1", "sL_BldgLoss": "40.1", "sL_StrLoss": "40.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A270EAC12C7E5EC0E5C1ED3BCC074A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.97098749, 52.061482356000077 ], [ -121.970993689999943, 52.061212673000078 ], [ -121.970556167000012, 52.061208853000039 ], [ -121.970574767999963, 52.060399806000106 ], [ -121.972324824999959, 52.060415080000105 ], [ -121.972300065999931, 52.061493810000073 ], [ -121.97098749, 52.061482356000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8702417", "BldgCostT": "6001667", "sL_LossRatio": "1", "sL_AssetLoss": "476.5", "sL_BldgLoss": "476.5", "sL_StrLoss": "476.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BC03AAFAD835EC07FC596F5CD0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.051003255999959, 52.107661319000073 ], [ -122.051231648999988, 52.10515252500003 ], [ -122.052858660999988, 52.105208239000014 ], [ -122.057071900999958, 52.105352407000119 ], [ -122.057065326, 52.105424744000132 ], [ -122.057891174999938, 52.10545298500007 ], [ -122.057886463000017, 52.105504825000118 ], [ -122.058744547999964, 52.105534162000062 ], [ -122.058681480999951, 52.106228266000095 ], [ -122.060184144999965, 52.106279625000084 ], [ -122.060143169999932, 52.106730749000121 ], [ -122.060841452999981, 52.106754608000045 ], [ -122.060829819999981, 52.106882701000082 ], [ -122.06074912599999, 52.107771243000094 ], [ -122.063223238, 52.107855746000041 ], [ -122.062898073999975, 52.111438088000064 ], [ -122.061752824999957, 52.111398980000011 ], [ -122.061512596999975, 52.111328286000081 ], [ -122.059805510999979, 52.110569206000079 ], [ -122.056225318999935, 52.109344398000061 ], [ -122.054900518999887, 52.108434296000048 ], [ -122.054217798, 52.108230692000106 ], [ -122.051003255999959, 52.107661319000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "70.9", "sL_BldgLoss": "70.9", "sL_StrLoss": "70.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC9B8477DE7E5EC0EAFF03492B084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.984914966999952, 52.064839976000087 ], [ -121.982727170999965, 52.064821111000107 ], [ -121.982739425999938, 52.064281744000034 ], [ -121.981426764, 52.064270407000102 ], [ -121.981432902000023, 52.064000724000024 ], [ -121.980557797999964, 52.063993158000066 ], [ -121.980570079999922, 52.063453791000079 ], [ -121.98013253499991, 52.063450006000075 ], [ -121.980150963999947, 52.062640956000081 ], [ -121.981463577999989, 52.062652308000061 ], [ -121.981457442999982, 52.062921991000039 ], [ -121.981894982999947, 52.062925771000032 ], [ -121.981888849999905, 52.063195455000042 ], [ -121.982763936999959, 52.06320301100002 ], [ -121.982745554999937, 52.064012061000064 ], [ -121.984933310999963, 52.064030925000075 ], [ -121.984914966999952, 52.064839976000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17545000", "BldgCostT": "12100000", "sL_LossRatio": "1", "sL_AssetLoss": "1105", "sL_BldgLoss": "1105", "sL_StrLoss": "1105", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009481EABC597C5EC06512DCE52EF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.963804925999924, 51.92791267500008 ], [ -121.963863478999883, 51.927280751000062 ], [ -121.963793070999941, 51.927278275000056 ], [ -121.963825588999953, 51.926927320000054 ], [ -121.962503848999987, 51.926880841000113 ], [ -121.96254094699999, 51.926480576000124 ], [ -121.961276831999925, 51.926436109000029 ], [ -121.961305558999953, 51.926126252000117 ], [ -121.959919304999957, 51.926077473000127 ], [ -121.959939916999986, 51.92585521400013 ], [ -121.956411493, 51.925730981000086 ], [ -121.956427908999927, 51.925554127000098 ], [ -121.95589818699996, 51.925535466000056 ], [ -121.955932682999958, 51.925163881000088 ], [ -121.955403995999944, 51.92514525400005 ], [ -121.955573936999912, 51.923314831000084 ], [ -121.9526560259999, 51.923211984000062 ], [ -121.952698435999949, 51.922755491000039 ], [ -121.951767424999929, 51.92272266100008 ], [ -121.951786160999973, 51.922521042000049 ], [ -121.94936695299999, 51.922435696000015 ], [ -121.94970003399996, 51.918853099000096 ], [ -121.949907936999949, 51.918860435000049 ], [ -121.949976086999982, 51.918127297000098 ], [ -121.94796080799992, 51.918056165000088 ], [ -121.948010967999977, 51.917516811000056 ], [ -121.947241618999968, 51.917489647000068 ], [ -121.947410368999897, 51.915675391000093 ], [ -121.945267375999919, 51.915599697000104 ], [ -121.945339237999974, 51.914827463000066 ], [ -121.943199455999974, 51.914751844000143 ], [ -121.943346683999962, 51.913170467000029 ], [ -121.939118819999962, 51.913020936000102 ], [ -121.939154588999941, 51.912637106000048 ], [ -121.938632328999944, 51.912618624000118 ], [ -121.93874680199994, 51.91139039600008 ], [ -121.936404235999987, 51.911307466000096 ], [ -121.936459105999944, 51.91071905600004 ], [ -121.934193595999929, 51.910638808000023 ], [ -121.934289106999955, 51.909615129000066 ], [ -121.930234725999952, 51.909471403000076 ], [ -121.930258074, 51.909221392000042 ], [ -121.929352810999973, 51.909189281000081 ], [ -121.929387099999957, 51.908822199000035 ], [ -121.928052490999946, 51.90877484700011 ], [ -121.928081205999945, 51.908467535000092 ], [ -121.926846567999945, 51.908423715000069 ], [ -121.926912937999973, 51.907713612000045 ], [ -121.924644237999985, 51.907633057000027 ], [ -121.924704957999936, 51.906983748000144 ], [ -121.921297362999894, 51.906862668000031 ], [ -121.921312417999914, 51.906701802000093 ], [ -121.920416342999914, 51.906669946000122 ], [ -121.920437815999904, 51.906440554000071 ], [ -121.919500425999971, 51.906407222000077 ], [ -121.919528151999913, 51.906111111000044 ], [ -121.918765921000016, 51.906084001000103 ], [ -121.918795777999946, 51.905765182000067 ], [ -121.917882110999983, 51.905732679000067 ], [ -121.917903654999975, 51.905502675000037 ], [ -121.917031896999973, 51.905471657000099 ], [ -121.917205047999957, 51.903623362000125 ], [ -121.918212078999971, 51.903914925000052 ], [ -121.91832558599999, 51.903947804000019 ], [ -121.919901599999946, 51.904525106000079 ], [ -121.921415780999936, 51.905046194000079 ], [ -121.923855804999945, 51.905693594000063 ], [ -121.92494181099994, 51.906018369000058 ], [ -121.928462904, 51.907071211000122 ], [ -121.93008650199998, 51.907515184000054 ], [ -121.932326006999958, 51.908376404000101 ], [ -121.932440155999927, 51.908410528000083 ], [ -121.933116832999971, 51.908612690000083 ], [ -121.93612487899999, 51.90951144900005 ], [ -121.937594792, 51.909950592000023 ], [ -121.938173301999953, 51.910158785000093 ], [ -121.938550893999917, 51.91032166400008 ], [ -121.939151798999916, 51.910580794000047 ], [ -121.939162601999982, 51.910586848000072 ], [ -121.941365780999931, 51.911820647000091 ], [ -121.942789893999958, 51.912618110000032 ], [ -121.943851222999967, 51.913219944000019 ], [ -121.94405730899993, 51.913336800000074 ], [ -121.945522284999967, 51.913969991000023 ], [ -121.946289592000014, 51.914374497000033 ], [ -121.94677270399994, 51.914706270000053 ], [ -121.948516561999924, 51.915903752000062 ], [ -121.949157779, 51.916344077000105 ], [ -121.949565876999927, 51.91662431000006 ], [ -121.949713652999947, 51.916733183000041 ], [ -121.950151519999963, 51.917055875000052 ], [ -121.950481688999957, 51.917299215000064 ], [ -121.950532021999933, 51.917380486000134 ], [ -121.950588893999964, 51.917472395000033 ], [ -121.950822809999949, 51.917850299000087 ], [ -121.951099680999931, 51.919108290000061 ], [ -121.951126006, 51.919294505000025 ], [ -121.951279964999955, 51.92038516499999 ], [ -121.951396934999948, 51.920633749000096 ], [ -121.951528565, 51.92097448800007 ], [ -121.951803704999975, 51.921269294000062 ], [ -121.951971815999954, 51.921449410000044 ], [ -121.952019389999933, 51.921500400000063 ], [ -121.954281996999981, 51.922689892000022 ], [ -121.955032992999975, 51.923017889000072 ], [ -121.955624902999958, 51.923276406000127 ], [ -121.956003121999942, 51.923391056000092 ], [ -121.956417940999955, 51.923516772000106 ], [ -121.957788493999942, 51.923932209000064 ], [ -121.958246872999922, 51.924110240000097 ], [ -121.95911720399998, 51.924448292000093 ], [ -121.959910215999983, 51.924756305000081 ], [ -121.960007415999911, 51.924797917000092 ], [ -121.960972394999956, 51.925210942000028 ], [ -121.961041992999981, 51.925240737000053 ], [ -121.961774800999962, 51.925554396000102 ], [ -121.96182248799991, 51.925574805000096 ], [ -121.962390388999935, 51.925793543000047 ], [ -121.962502727999947, 51.925836803000088 ], [ -121.963581013999914, 51.9261479050001 ], [ -121.964691221999942, 51.926367600000034 ], [ -121.965441406999943, 51.926456780000095 ], [ -121.96621762699999, 51.926503608000118 ], [ -121.966333593999963, 51.926510591000081 ], [ -121.967190911, 51.926527806000117 ], [ -121.96806335899997, 51.926545293000096 ], [ -121.969730397999982, 51.926578692000099 ], [ -121.969763133999919, 51.926581152000033 ], [ -121.969621032999939, 51.928117012000051 ], [ -121.963804925999924, 51.92791267500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E0455A317845EC0255389DB360E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.063219830999955, 52.109798319000049 ], [ -122.064651328999972, 52.109847185000056 ], [ -122.064663086999957, 52.110354919000073 ], [ -122.064727818999955, 52.111989761000075 ], [ -122.06475472899993, 52.112490860000094 ], [ -122.064223016999932, 52.112339492000046 ], [ -122.063035482999979, 52.111829260000036 ], [ -122.063219830999955, 52.109798319000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "401.1", "sL_BldgLoss": "401.1", "sL_StrLoss": "401.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F36BB1FC357B5EC05479F1344FF34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.925524305999929, 51.900364407000048 ], [ -121.925075102999969, 51.900314594000072 ], [ -121.924638387999948, 51.900337402000062 ], [ -121.92441560899999, 51.900479793000109 ], [ -121.923966593000031, 51.901698900000092 ], [ -121.923367379999959, 51.901837096000072 ], [ -121.922480423999929, 51.901847102000062 ], [ -121.921609385999957, 51.901721709000135 ], [ -121.920023292999957, 51.901275910000059 ], [ -121.919037595999924, 51.901149198000027 ], [ -121.918527198999982, 51.900954133000042 ], [ -121.918675203999939, 51.899373526000019 ], [ -121.924487294999963, 51.899580152000048 ], [ -121.92447411699996, 51.899721087000074 ], [ -121.925336772999984, 51.899751730000105 ], [ -121.925325031999947, 51.899877329000077 ], [ -121.931116271999954, 51.900082876000099 ], [ -121.930849337000012, 51.902942205000087 ], [ -121.929546397999943, 51.902945086000067 ], [ -121.928214892999975, 51.902681587000131 ], [ -121.927942916999953, 51.9025891000001 ], [ -121.927413585999915, 51.902178898000017 ], [ -121.927318401, 51.901899699000055 ], [ -121.927473094999939, 51.901488210000075 ], [ -121.927397500999973, 51.90100109400008 ], [ -121.926908595999976, 51.900790296000068 ], [ -121.9261406899999, 51.900666392000048 ], [ -121.925524305999929, 51.900364407000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11950417", "BldgCostT": "8241667", "sL_LossRatio": "1", "sL_AssetLoss": "686.4", "sL_BldgLoss": "686.4", "sL_StrLoss": "686.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E0E7E66797F5EC00B8D2FF3000A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.989596051999953, 52.081670141000096 ], [ -121.989750011999931, 52.080003900000129 ], [ -121.987337319999952, 52.079919898000064 ], [ -121.987330207999975, 52.079867333000031 ], [ -121.987419333999938, 52.078903301000068 ], [ -121.987198749999962, 52.078895619000058 ], [ -121.98705431599997, 52.077827932000019 ], [ -121.98706978199999, 52.07622573400009 ], [ -121.987155332999976, 52.075300347000095 ], [ -121.990160760999984, 52.075404993000127 ], [ -121.990215029999945, 52.074817520000082 ], [ -121.994683806999888, 52.074972972000054 ], [ -121.996050920999934, 52.075020495000047 ], [ -121.995749278999966, 52.078290417000083 ], [ -121.99576336599992, 52.078290906000099 ], [ -121.995432861, 52.081873146000099 ], [ -121.98993471599999, 52.081681928000073 ], [ -121.989596051999953, 52.081670141000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410416", "BldgCostT": "3041666", "sL_LossRatio": "1", "sL_AssetLoss": "271.3", "sL_BldgLoss": "271.3", "sL_StrLoss": "271.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8978C2148795EC0FA8B8F05BB004A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.892283681999942, 52.003812370000055 ], [ -121.898109591999955, 52.004020312000073 ], [ -121.897771613, 52.007602494000125 ], [ -121.891945225999962, 52.00739453500006 ], [ -121.892283681999942, 52.003812370000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6899584", "BldgCostT": "4758334", "sL_LossRatio": "1", "sL_AssetLoss": "412.4", "sL_BldgLoss": "412.4", "sL_StrLoss": "412.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000470D3BC634805EC063D22168B3FD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.001521431, 51.978411534000045 ], [ -122.006626585000021, 51.978589014000093 ], [ -122.005634280999928, 51.980204795000112 ], [ -122.005397279999968, 51.980718608000103 ], [ -122.005232028999984, 51.981286922000059 ], [ -122.005220110999957, 51.981327907000072 ], [ -122.005176891999952, 51.981798117000132 ], [ -122.005198037999961, 51.982201606000032 ], [ -122.005206096999984, 51.982355311000049 ], [ -122.005666815, 51.984416304000106 ], [ -122.005908141999925, 51.985424439000049 ], [ -122.000216892999944, 51.985226564000065 ], [ -122.000546270999962, 51.981644017000114 ], [ -122.001222175999928, 51.981667531000078 ], [ -122.001521431, 51.978411534000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023511", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3296333", "BldgCostT": "2273333", "sL_LossRatio": "1", "sL_AssetLoss": "179.7", "sL_BldgLoss": "179.7", "sL_StrLoss": "179.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5E5179043865EC08D4A5E5BC7074A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.097819657999963, 52.061983861000087 ], [ -122.09782458799999, 52.061929014000029 ], [ -122.096499913999949, 52.061884126000095 ], [ -122.09675433699999, 52.059053669000036 ], [ -122.097142092999931, 52.059205685000087 ], [ -122.098347514999915, 52.059792794000032 ], [ -122.098616606999911, 52.059975328000071 ], [ -122.098726687999914, 52.060049995000057 ], [ -122.099137290999977, 52.060414315000074 ], [ -122.099288974999951, 52.060590424000061 ], [ -122.099610486999893, 52.060963684000093 ], [ -122.09980596299998, 52.06119059000013 ], [ -122.09994550199994, 52.061352599000074 ], [ -122.098120947000012, 52.061994068000033 ], [ -122.097819657999963, 52.061983861000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10362667", "BldgCostT": "7146667", "sL_LossRatio": "1", "sL_AssetLoss": "418.4", "sL_BldgLoss": "418.4", "sL_StrLoss": "418.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CEDB3B1744855EC075FA8BEA3E084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.079525222999948, 52.062529534000085 ], [ -122.085359876000012, 52.062727991000024 ], [ -122.085036874999986, 52.066310531000077 ], [ -122.079201741999938, 52.066112058000101 ], [ -122.079525222999948, 52.062529534000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "139261917", "BldgCostT": "94571667", "sL_LossRatio": "1", "sL_AssetLoss": "6623.4", "sL_BldgLoss": "6623.4", "sL_StrLoss": "6623.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A49849F599865EC09896E4C2F90A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.122854286999925, 52.105328258000071 ], [ -122.12286848799999, 52.104604362000082 ], [ -122.122401496999927, 52.104588656000033 ], [ -122.122402760999989, 52.10457450800007 ], [ -122.119726701000019, 52.104484475000049 ], [ -122.119698753999941, 52.103432 ], [ -122.118623939999921, 52.103412997000085 ], [ -122.11883712499997, 52.101030143000024 ], [ -122.118088781999987, 52.101004947000028 ], [ -122.118093530999943, 52.100951889 ], [ -122.117609427999938, 52.100935587000059 ], [ -122.11764104699995, 52.099877922000076 ], [ -122.117649259999936, 52.099764881000034 ], [ -122.116544084999973, 52.099737415000028 ], [ -122.116547477, 52.099699527000041 ], [ -122.115911191999913, 52.09967809100003 ], [ -122.115917101999983, 52.099612073000081 ], [ -122.113769136999949, 52.099595946000079 ], [ -122.113784148, 52.098838536000173 ], [ -122.110146234999888, 52.098715838 ], [ -122.110222573999948, 52.097864364000074 ], [ -122.109782980999952, 52.097849529 ], [ -122.109811798999914, 52.097528140000037 ], [ -122.109506095999947, 52.097517823 ], [ -122.109545351999941, 52.097080028000057 ], [ -122.109124212999973, 52.097065814000054 ], [ -122.109445455999946, 52.093483298000095 ], [ -122.109570550999948, 52.093487521000071 ], [ -122.109583290999979, 52.093345424000034 ], [ -122.109423387999954, 52.093340026000128 ], [ -122.109545805999957, 52.091974665000095 ], [ -122.106693584, 52.091878355000041 ], [ -122.10671190299999, 52.091674199000089 ], [ -122.105804493999969, 52.091643545000125 ], [ -122.105691563999969, 52.091639729000093 ], [ -122.105741967999904, 52.091078096000054 ], [ -122.104750869, 52.091044604000068 ], [ -122.104831310999941, 52.090148452000058 ], [ -122.104403618999982, 52.090133997000102 ], [ -122.104556455999926, 52.088431428000035 ], [ -122.102498471999951, 52.088361848 ], [ -122.102585117999965, 52.087397075000084 ], [ -122.100205855999945, 52.087316589000082 ], [ -122.100318374999958, 52.08606443400005 ], [ -122.100331435999948, 52.085919078000067 ], [ -122.100030939999968, 52.085908910000079 ], [ -122.097452353999955, 52.085821617000072 ], [ -122.097564512999938, 52.084574300000028 ], [ -122.097657831999939, 52.083536450000061 ], [ -122.096584485999969, 52.083500097000119 ], [ -122.096670626000034, 52.082542304000064 ], [ -122.096307142999962, 52.082529991000015 ], [ -122.09644091399997, 52.081042636000049 ], [ -122.09285502299997, 52.080921102000055 ], [ -122.09290534299997, 52.08036209200003 ], [ -122.090872834999928, 52.08029315600001 ], [ -122.090801060999979, 52.08109007000008 ], [ -122.089689768999932, 52.081052363000062 ], [ -122.089684314999914, 52.081112896000086 ], [ -122.087822757000012, 52.08104970800008 ], [ -122.083847172999953, 52.080914661000051 ], [ -122.08399595599991, 52.079265593000031 ], [ -122.084001313, 52.079206219000135 ], [ -122.083649386999966, 52.079194258 ], [ -122.083972598999964, 52.075611760000058 ], [ -122.089809029999984, 52.075809990000046 ], [ -122.089798195999933, 52.075930259000167 ], [ -122.090697204999927, 52.075960767000012 ], [ -122.09063139600002, 52.076691504000046 ], [ -122.09258879399998, 52.07675790400004 ], [ -122.092737885999938, 52.075101553000131 ], [ -122.092597824999984, 52.075096803000072 ], [ -122.092793050999958, 52.072927813000092 ], [ -122.092250066999938, 52.072909396000121 ], [ -122.092360381, 52.071683868000072 ], [ -122.090856902999946, 52.071632862000101 ], [ -122.091103597999947, 52.068892989000098 ], [ -122.09117946399999, 52.068050321000058 ], [ -122.093427418999966, 52.068126579000101 ], [ -122.093806747999977, 52.068828921000012 ], [ -122.09611836599997, 52.068217807000053 ], [ -122.097014911999949, 52.068248187000073 ], [ -122.096981567999975, 52.068619104000028 ], [ -122.099578888999972, 52.068707078000081 ], [ -122.09986933499999, 52.068716911000102 ], [ -122.099834408999982, 52.069105714000017 ], [ -122.100280046999927, 52.069120802000086 ], [ -122.10022144, 52.069773282 ], [ -122.100250016999951, 52.06977425000008 ], [ -122.099684414, 52.071937435000038 ], [ -122.09712450799999, 52.072455662000039 ], [ -122.096591095999926, 52.072563631000037 ], [ -122.096550720999957, 52.074102206000099 ], [ -122.096521131999936, 52.076473668000069 ], [ -122.096509672999929, 52.077389797000102 ], [ -122.096497200999963, 52.078390998000074 ], [ -122.096671485999977, 52.07894310800004 ], [ -122.096929191999948, 52.07931661100011 ], [ -122.097779225999901, 52.080118905000099 ], [ -122.098226111999949, 52.080650508000076 ], [ -122.098613394999987, 52.081260217000072 ], [ -122.099048397999965, 52.082136410000032 ], [ -122.099308482999945, 52.082483888000056 ], [ -122.099744508999962, 52.082844509000033 ], [ -122.100961397999953, 52.083604397000038 ], [ -122.103323803999928, 52.08505879100003 ], [ -122.105992808999957, 52.086294414000086 ], [ -122.106679194999941, 52.086639206000036 ], [ -122.107212412999971, 52.086944691000035 ], [ -122.109488987999953, 52.088575719000062 ], [ -122.109758383999946, 52.088802135000059 ], [ -122.114011908999927, 52.092377285000076 ], [ -122.11484788599999, 52.093097205000085 ], [ -122.115939890999968, 52.094032407000078 ], [ -122.117058513999936, 52.094998010000083 ], [ -122.118524505999943, 52.096237702000025 ], [ -122.11887830799995, 52.096538887000051 ], [ -122.120166900999934, 52.097651289000034 ], [ -122.120939687999964, 52.098490307000048 ], [ -122.121424526999988, 52.098767099000035 ], [ -122.122044459999955, 52.098965205000106 ], [ -122.122382723999976, 52.099073310000044 ], [ -122.122476279, 52.099095084000027 ], [ -122.123076910999956, 52.099235007000104 ], [ -122.123817477999935, 52.099410078000091 ], [ -122.124024815000013, 52.099459092000131 ], [ -122.124100574999929, 52.09947801 ], [ -122.123812161, 52.099499634000075 ], [ -122.123517495999948, 52.101902891000087 ], [ -122.123810728999942, 52.105335369000031 ], [ -122.122854286999925, 52.105328258000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2726000", "BldgCostT": "1880000", "sL_LossRatio": "1", "sL_AssetLoss": "144", "sL_BldgLoss": "144", "sL_StrLoss": "144", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D242769CEA855EC0D7D6577022084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.093027797999966, 52.064103152000058 ], [ -122.093033260999931, 52.063833460000055 ], [ -122.090845444999928, 52.06381660300017 ], [ -122.090872825999924, 52.062468143000061 ], [ -122.092623028, 52.062481632000107 ], [ -122.092612095999968, 52.063021016000029 ], [ -122.093487205999935, 52.063027751000071 ], [ -122.093481746999942, 52.06329744300011 ], [ -122.094746558999972, 52.063307165000055 ], [ -122.094420905000021, 52.063484104000096 ], [ -122.093761613999916, 52.063980998000048 ], [ -122.093281600999944, 52.06451899400011 ], [ -122.092976723, 52.065029703000029 ], [ -122.092948025999988, 52.065102324000108 ], [ -122.092800400999948, 52.065476493000041 ], [ -122.092754034999984, 52.065719449000014 ], [ -122.092557433999943, 52.065717935000087 ], [ -122.092590231999935, 52.064099784000049 ], [ -122.093027797999966, 52.064103152000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "127908751", "BldgCostT": "87060001", "sL_LossRatio": "0.999760100779989", "sL_AssetLoss": "5377.258", "sL_BldgLoss": "5375.968", "sL_StrLoss": "5375.5", "sL_NStrLoss": "0.468", "sL_ContLoss": "1.29", "geom_point": "0101000020E6100000EB232A33A9875EC01A7C69A39D0B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.142531897999945, 52.105574890000106 ], [ -122.141143280999941, 52.105034293000102 ], [ -122.139369487999943, 52.105103395000079 ], [ -122.138490193999957, 52.105109909000099 ], [ -122.138499015999955, 52.103086314000137 ], [ -122.139785196, 52.103097886000064 ], [ -122.13980550899997, 52.101026182000069 ], [ -122.137342492999949, 52.101025396000082 ], [ -122.132897091999951, 52.10102099500002 ], [ -122.129749187999948, 52.101038588000087 ], [ -122.12773257399999, 52.101049793000136 ], [ -122.127491097999922, 52.100555703000055 ], [ -122.127291413999913, 52.100332496000142 ], [ -122.126913889999955, 52.100132103000114 ], [ -122.126287279999971, 52.099991675000048 ], [ -122.125027497999923, 52.099709301000097 ], [ -122.124100574999929, 52.09947801 ], [ -122.124024815000013, 52.099459092000131 ], [ -122.123817477999935, 52.099410078000091 ], [ -122.123076910999956, 52.099235007000104 ], [ -122.122476279, 52.099095084000027 ], [ -122.122382723999976, 52.099073310000044 ], [ -122.122044459999955, 52.098965205000106 ], [ -122.121424526999988, 52.098767099000035 ], [ -122.120939687999964, 52.098490307000048 ], [ -122.120166900999934, 52.097651289000034 ], [ -122.11887830799995, 52.096538887000051 ], [ -122.118524505999943, 52.096237702000025 ], [ -122.117058513999936, 52.094998010000083 ], [ -122.115939890999968, 52.094032407000078 ], [ -122.11484788599999, 52.093097205000085 ], [ -122.114011908999927, 52.092377285000076 ], [ -122.109758383999946, 52.088802135000059 ], [ -122.109488987999953, 52.088575719000062 ], [ -122.107212412999971, 52.086944691000035 ], [ -122.106679194999941, 52.086639206000036 ], [ -122.105992808999957, 52.086294414000086 ], [ -122.103323803999928, 52.08505879100003 ], [ -122.100961397999953, 52.083604397000038 ], [ -122.099744508999962, 52.082844509000033 ], [ -122.099308482999945, 52.082483888000056 ], [ -122.099048397999965, 52.082136410000032 ], [ -122.098613394999987, 52.081260217000072 ], [ -122.098226111999949, 52.080650508000076 ], [ -122.097779225999901, 52.080118905000099 ], [ -122.096929191999948, 52.07931661100011 ], [ -122.096671485999977, 52.07894310800004 ], [ -122.096497200999963, 52.078390998000074 ], [ -122.096509672999929, 52.077389797000102 ], [ -122.096521131999936, 52.076473668000069 ], [ -122.096550720999957, 52.074102206000099 ], [ -122.096591095999926, 52.072563631000037 ], [ -122.09712450799999, 52.072455662000039 ], [ -122.099684414, 52.071937435000038 ], [ -122.100250016999951, 52.06977425000008 ], [ -122.100292893999921, 52.069775702000065 ], [ -122.100249045999988, 52.070263851000043 ], [ -122.100513319999891, 52.070272796000019 ], [ -122.100473842999932, 52.070712320000034 ], [ -122.100730042999928, 52.070720992000133 ], [ -122.100679478999965, 52.071283968000039 ], [ -122.100774680999905, 52.071287191000067 ], [ -122.10072666399995, 52.071821821000086 ], [ -122.100814417999942, 52.071824791000083 ], [ -122.100492623999969, 52.075407346000098 ], [ -122.10034770799993, 52.075402442000033 ], [ -122.100328277999935, 52.075618738000102 ], [ -122.100371705, 52.075620208000032 ], [ -122.100312568000021, 52.076278482000106 ], [ -122.105935446999965, 52.076468661000085 ], [ -122.105831774999928, 52.077624327000116 ], [ -122.105897931999948, 52.077626563000123 ], [ -122.105804607999957, 52.078666817000105 ], [ -122.106802571999978, 52.078700541000082 ], [ -122.106734487999958, 52.079459621000069 ], [ -122.109752718999985, 52.07956156300007 ], [ -122.109712229999928, 52.080013304000047 ], [ -122.110726314000019, 52.080047538000024 ], [ -122.110642155999955, 52.080986743000039 ], [ -122.111986334999969, 52.081032105000155 ], [ -122.111665393999942, 52.084614664000064 ], [ -122.110339292999981, 52.08456991200007 ], [ -122.110324379999952, 52.084736314000089 ], [ -122.111672812999984, 52.084781820000025 ], [ -122.11165514399994, 52.084979043000061 ], [ -122.112951779999889, 52.085022786000067 ], [ -122.112838029999978, 52.086292800000138 ], [ -122.113599147999935, 52.086318470000073 ], [ -122.11349543799993, 52.087476552000034 ], [ -122.11485928399999, 52.087522538 ], [ -122.114801079999921, 52.088172665000052 ], [ -122.115485106999984, 52.088195722000087 ], [ -122.115365506999964, 52.089531814000019 ], [ -122.11716284, 52.089592380000049 ], [ -122.117139943999931, 52.089848284000063 ], [ -122.117489846999931, 52.089860071000061 ], [ -122.11745949899999, 52.090199278000057 ], [ -122.117996251999955, 52.090217358000082 ], [ -122.117952015999919, 52.090711848000133 ], [ -122.118005786999944, 52.090713658000027 ], [ -122.117961177999931, 52.091212308000053 ], [ -122.118384009999957, 52.091226549000041 ], [ -122.11837954899994, 52.091276420000078 ], [ -122.119784060999962, 52.091323712000069 ], [ -122.11975725799995, 52.091623466000108 ], [ -122.119812081999925, 52.091625312000126 ], [ -122.119808580000011, 52.09166446300005 ], [ -122.120323564999964, 52.09168179900005 ], [ -122.12020460199993, 52.093012337000097 ], [ -122.120236263, 52.093013402000089 ], [ -122.120203739999965, 52.093377139000069 ], [ -122.12046100399999, 52.093385799000046 ], [ -122.12047580499997, 52.092633136000067 ], [ -122.120913654999981, 52.092636402000018 ], [ -122.120924254999949, 52.092097017000086 ], [ -122.122675629999918, 52.092110064000082 ], [ -122.122672987999962, 52.09224475600012 ], [ -122.122659757999941, 52.092919142000028 ], [ -122.122221907, 52.092915883000067 ], [ -122.122216614999985, 52.093185575000113 ], [ -122.122654468999912, 52.093188835000078 ], [ -122.122649177999946, 52.093458528000127 ], [ -122.123524893, 52.093465041000073 ], [ -122.123535462999925, 52.092925656000034 ], [ -122.126162574999938, 52.092945158000063 ], [ -122.126157304999978, 52.093214852000123 ], [ -122.127033014999967, 52.093221340000127 ], [ -122.127027751999933, 52.093491033000106 ], [ -122.127465608999984, 52.093494275000033 ], [ -122.127444562999969, 52.094573047000104 ], [ -122.128320300999988, 52.094579526000103 ], [ -122.12828350099997, 52.09646737700006 ], [ -122.128721387999974, 52.096470615000094 ], [ -122.128716134999962, 52.096740308000093 ], [ -122.129154023999931, 52.096743543000045 ], [ -122.129138268999952, 52.097552622000123 ], [ -122.13001406299999, 52.097559087000036 ], [ -122.130004932999938, 52.098028344000049 ], [ -122.130659914999981, 52.098050331000096 ], [ -122.130653292, 52.098124594000055 ], [ -122.134338584999966, 52.098248234000017 ], [ -122.134311699999913, 52.098549985000069 ], [ -122.1390732699999, 52.098709558000053 ], [ -122.13914198099998, 52.097937416000065 ], [ -122.144981660999989, 52.098132850000077 ], [ -122.144965233999969, 52.098317735000059 ], [ -122.146268626999984, 52.098361315 ], [ -122.146250497000011, 52.098565434000108 ], [ -122.148382080999951, 52.098636673000058 ], [ -122.148234590999934, 52.099252857000067 ], [ -122.148240174999941, 52.099303482000103 ], [ -122.14815895199996, 52.100099857000075 ], [ -122.147666428999955, 52.104927485000076 ], [ -122.146983539999951, 52.104904666000046 ], [ -122.146976822999989, 52.10498028800005 ], [ -122.146952964, 52.10497949100003 ], [ -122.146942935999974, 52.105505010000073 ], [ -122.147620102999937, 52.105509906000101 ], [ -122.147726420999945, 52.106938899000056 ], [ -122.147082590999986, 52.106674700000056 ], [ -122.146515280999921, 52.106350396000025 ], [ -122.145971603999939, 52.106157004000167 ], [ -122.145409578999974, 52.106021397000049 ], [ -122.142531897999945, 52.105574890000106 ] ], [ [ -122.128695114999942, 52.097819080000058 ], [ -122.128700369999962, 52.097549386000033 ], [ -122.128623163999976, 52.097548816000057 ], [ -122.128599112999936, 52.097818370000013 ], [ -122.128695114999942, 52.097819080000058 ] ], [ [ -122.125696585999918, 52.094381184000078 ], [ -122.125703633999933, 52.094020684000036 ], [ -122.124827909999937, 52.094014187000063 ], [ -122.124821302999962, 52.094351761000034 ], [ -122.125696585999918, 52.094381184000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023516", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4055167", "BldgCostT": "2796667", "sL_LossRatio": "1", "sL_AssetLoss": "145.2", "sL_BldgLoss": "145.2", "sL_StrLoss": "145.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3B281CFAA885EC09E1FEB4E9C0B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.134930069999953, 52.092470357000074 ], [ -122.134935285999916, 52.09220066400011 ], [ -122.134529828999959, 52.092197688000027 ], [ -122.134497439999976, 52.092197450000086 ], [ -122.134498192999942, 52.092158568000087 ], [ -122.134502657999974, 52.091927757000029 ], [ -122.134310392999978, 52.09192634500004 ], [ -122.134064815000016, 52.091924541000026 ], [ -122.134070904999959, 52.09161 ], [ -122.134075258999971, 52.091385154000108 ], [ -122.133913206999978, 52.091383963000077 ], [ -122.133637419999971, 52.091381937000051 ], [ -122.133644832999963, 52.090999285000031 ], [ -122.133647869999919, 52.090842549000044 ], [ -122.13350796799989, 52.090841522000126 ], [ -122.13321003599999, 52.090839331000076 ], [ -122.133215260999933, 52.090569637000087 ], [ -122.13277743299993, 52.09056641800008 ], [ -122.132783022999931, 52.090278023000053 ], [ -122.132798347999938, 52.089487643000041 ], [ -122.13454962499999, 52.089500512 ], [ -122.134554842999961, 52.089230818000075 ], [ -122.135430476999929, 52.089237244000088 ], [ -122.135435688999948, 52.088967550000092 ], [ -122.13718694799995, 52.088980380000102 ], [ -122.137160936999962, 52.09032885200002 ], [ -122.136723107999941, 52.090325645000064 ], [ -122.136712698999958, 52.090865033000064 ], [ -122.137588364999942, 52.090871443000069 ], [ -122.13756236499998, 52.092219913000065 ], [ -122.137124516999961, 52.092216708000073 ], [ -122.137119312999985, 52.092486402000041 ], [ -122.134930069999953, 52.092470357000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.2", "sL_BldgLoss": "37.2", "sL_StrLoss": "37.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000405A10885F885EC050EAE46F6F0B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.130181922999981, 52.088928901000067 ], [ -122.131495362999956, 52.088938585000086 ], [ -122.131479653999961, 52.089747666000029 ], [ -122.130166189999926, 52.089737982000081 ], [ -122.130181922999981, 52.088928901000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3960917", "BldgCostT": "2731667", "sL_LossRatio": "1", "sL_AssetLoss": "185", "sL_BldgLoss": "185", "sL_StrLoss": "185", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003644EC7EDB885EC0863DE57F0F0C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.137499953, 52.09545623900005 ], [ -122.137505155000028, 52.095186545000061 ], [ -122.1370672799999, 52.095183341000116 ], [ -122.13707248299994, 52.094913647000055 ], [ -122.136196737999938, 52.094907233000043 ], [ -122.136207155999969, 52.094367846000111 ], [ -122.135769287999935, 52.094364637000083 ], [ -122.135789569999957, 52.093315075000071 ], [ -122.135790134999965, 52.093285861000084 ], [ -122.137979419999965, 52.093301891000081 ], [ -122.137984616999958, 52.093032197000078 ], [ -122.140173890999932, 52.093048185000036 ], [ -122.140168705999969, 52.093317879000068 ], [ -122.140606562999949, 52.093321072000073 ], [ -122.14058015199997, 52.094695536000081 ], [ -122.140570285999956, 52.095208930000069 ], [ -122.140132409999964, 52.095205737000072 ], [ -122.140127224000011, 52.095475431000075 ], [ -122.137499953, 52.09545623900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93029144", "BldgCostT": "62746523", "sL_LossRatio": "1", "sL_AssetLoss": "5232", "sL_BldgLoss": "5232", "sL_StrLoss": "5232", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CFC1F9F57F885EC08602AE12490D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.137930786999931, 52.106655396000086 ], [ -122.137399004999963, 52.106591490000021 ], [ -122.137295696999914, 52.106592618000086 ], [ -122.13708684, 52.106594915000073 ], [ -122.133452587999926, 52.106634413000037 ], [ -122.133452326999972, 52.106634416000091 ], [ -122.133465587999979, 52.106485651000078 ], [ -122.132906766999923, 52.106481542000033 ], [ -122.132908145000016, 52.10641049700012 ], [ -122.128382310999882, 52.106258614000076 ], [ -122.128398590999964, 52.106076201000121 ], [ -122.126864367999971, 52.106024674000103 ], [ -122.126907734999975, 52.105538957000086 ], [ -122.125648258999945, 52.105496642000091 ], [ -122.125661435999959, 52.10534910800007 ], [ -122.123810728999942, 52.105335369000031 ], [ -122.123517495999948, 52.101902891000087 ], [ -122.123812161, 52.099499634000075 ], [ -122.124100574999929, 52.09947801 ], [ -122.125027497999923, 52.099709301000097 ], [ -122.126287279999971, 52.099991675000048 ], [ -122.126913889999955, 52.100132103000114 ], [ -122.127291413999913, 52.100332496000142 ], [ -122.127491097999922, 52.100555703000055 ], [ -122.12773257399999, 52.101049793000136 ], [ -122.129749187999948, 52.101038588000087 ], [ -122.132897091999951, 52.10102099500002 ], [ -122.137342492999949, 52.101025396000082 ], [ -122.13980550899997, 52.101026182000069 ], [ -122.139785196, 52.103097886000064 ], [ -122.138499015999955, 52.103086314000137 ], [ -122.138490193999957, 52.105109909000099 ], [ -122.139369487999943, 52.105103395000079 ], [ -122.141143280999941, 52.105034293000102 ], [ -122.142531897999945, 52.105574890000106 ], [ -122.145409578999974, 52.106021397000049 ], [ -122.145971603999939, 52.106157004000167 ], [ -122.146515280999921, 52.106350396000025 ], [ -122.147082590999986, 52.106674700000056 ], [ -122.147726420999945, 52.106938899000056 ], [ -122.147725861999959, 52.107163395000065 ], [ -122.145296692999949, 52.107281229000037 ], [ -122.145359674999966, 52.106572468000095 ], [ -122.145190076999981, 52.106571239000033 ], [ -122.145126248999958, 52.107289494000021 ], [ -122.145010786999933, 52.107295093000047 ], [ -122.139529567999929, 52.106847500000114 ], [ -122.137930786999931, 52.106655396000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "187524228", "BldgCostT": "117394857", "sL_LossRatio": "1", "sL_AssetLoss": "7787.1", "sL_BldgLoss": "7787.1", "sL_StrLoss": "7787.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD8C152D27875EC0632D89DC210E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.127517507999968, 52.115271888000095 ], [ -122.12643089799991, 52.115104310000049 ], [ -122.125279425999977, 52.115089001000044 ], [ -122.124858608999943, 52.11509595800009 ], [ -122.124025080999942, 52.115109693000122 ], [ -122.12294918399999, 52.115065515000055 ], [ -122.12286107599999, 52.115061918000038 ], [ -122.122812187999983, 52.115059900000105 ], [ -122.122387642999954, 52.114991754000123 ], [ -122.122220527999971, 52.11496867700005 ], [ -122.121836932999912, 52.114909501000035 ], [ -122.118308323999912, 52.114120606000085 ], [ -122.117322899999962, 52.113837704000083 ], [ -122.116516743999952, 52.113529465000056 ], [ -122.115583684999976, 52.113172689000066 ], [ -122.11508464799999, 52.113041560000042 ], [ -122.114936797999988, 52.113002702000117 ], [ -122.114105088999978, 52.112884887000078 ], [ -122.113186088999953, 52.112875510000094 ], [ -122.1114368409999, 52.113031242000055 ], [ -122.110727490999949, 52.113094400000044 ], [ -122.110093913999947, 52.11310360500002 ], [ -122.109365516999915, 52.113010705000079 ], [ -122.108624203999952, 52.112798906000073 ], [ -122.106756488999935, 52.112017214000048 ], [ -122.105474813999948, 52.111559810000124 ], [ -122.10534480699999, 52.111528252000063 ], [ -122.104103021999919, 52.111226787000064 ], [ -122.10469231299993, 52.110617900000108 ], [ -122.104709979999939, 52.110290595000066 ], [ -122.104628798999983, 52.110101894000131 ], [ -122.10386531599994, 52.109013411 ], [ -122.10255910799999, 52.109011916000092 ], [ -122.101849863999959, 52.109011084000066 ], [ -122.101252616999901, 52.10901040600006 ], [ -122.101246498999956, 52.108296107000093 ], [ -122.101224777999931, 52.107853297000062 ], [ -122.101162313999978, 52.107799107000034 ], [ -122.100993488999976, 52.10777010000006 ], [ -122.098214994999964, 52.107591590000069 ], [ -122.094924011, 52.107712062000054 ], [ -122.093097395999948, 52.107778854000045 ], [ -122.092757405, 52.107791307000156 ], [ -122.090748112999918, 52.107854388000106 ], [ -122.090611270999943, 52.107842241000085 ], [ -122.090417595999952, 52.107825002 ], [ -122.089946007999941, 52.107783112000064 ], [ -122.089470796999933, 52.107806510000017 ], [ -122.089389777999898, 52.107844201000027 ], [ -122.089273720999955, 52.10791310800002 ], [ -122.0892414, 52.10815719400005 ], [ -122.089306081999965, 52.109746806000068 ], [ -122.092756012999942, 52.109823297000091 ], [ -122.092748785999987, 52.110878605000046 ], [ -122.091117745999895, 52.110854777000071 ], [ -122.089069665999986, 52.110825750000117 ], [ -122.088596438999943, 52.110854399000111 ], [ -122.088318564999923, 52.110871239000041 ], [ -122.08590794499996, 52.111207081000067 ], [ -122.08377630499993, 52.111504020000055 ], [ -122.082618461999985, 52.111543746000066 ], [ -122.080330737999944, 52.111508216000047 ], [ -122.079135868999956, 52.111714636000102 ], [ -122.07823780699999, 52.111926670000116 ], [ -122.076802740999966, 52.1124887 ], [ -122.076200113999931, 52.112592201000034 ], [ -122.074651631999984, 52.112998539000017 ], [ -122.0734249599999, 52.113150833000127 ], [ -122.072087131999936, 52.11328493400007 ], [ -122.071235654999953, 52.11346704700005 ], [ -122.070844685999973, 52.113449220000113 ], [ -122.069532781999925, 52.113215863000086 ], [ -122.065143749999905, 52.112095913000118 ], [ -122.064727818999955, 52.111989761000075 ], [ -122.064663086999957, 52.110354919000073 ], [ -122.064651328999972, 52.109847185000056 ], [ -122.069060762, 52.109997593000109 ], [ -122.069035474999936, 52.110276604000106 ], [ -122.070269337999974, 52.110318661000072 ], [ -122.070256697999938, 52.110458185000084 ], [ -122.071255911999955, 52.110492235000052 ], [ -122.071226195999955, 52.110820291000074 ], [ -122.072817379999904, 52.110874494000058 ], [ -122.072812658000018, 52.110926629000105 ], [ -122.074233084999946, 52.110974997000042 ], [ -122.074346150999986, 52.109725785000123 ], [ -122.07581302899996, 52.109775716000087 ], [ -122.075842703999967, 52.109447720000063 ], [ -122.079745562999989, 52.109580479000051 ], [ -122.079783049999946, 52.109165714000028 ], [ -122.080815543999947, 52.109200813000079 ], [ -122.08082240799996, 52.10912483800012 ], [ -122.081143876999974, 52.109135765000104 ], [ -122.081210535999972, 52.108397946000053 ], [ -122.081847201999949, 52.108419584000053 ], [ -122.081855513999969, 52.108327562000042 ], [ -122.083004202000012, 52.108366591000056 ], [ -122.083039383999946, 52.107976990000047 ], [ -122.084810843999932, 52.108037155000055 ], [ -122.084815105999951, 52.10798993300007 ], [ -122.085650713999911, 52.108018303000073 ], [ -122.085841193999954, 52.105907453000057 ], [ -122.086074895999971, 52.105915387000081 ], [ -122.086106603999937, 52.105563959000072 ], [ -122.087753546999977, 52.105619856000047 ], [ -122.0877551299999, 52.105602299000054 ], [ -122.088360532999914, 52.105622840000123 ], [ -122.088363303999984, 52.105592113000064 ], [ -122.089120312999938, 52.105617793000114 ], [ -122.089122869999969, 52.105589431000062 ], [ -122.089962722999985, 52.105617917000089 ], [ -122.089974140999956, 52.105491251000025 ], [ -122.090954999999894, 52.105524511000041 ], [ -122.090958497999964, 52.105485674000121 ], [ -122.09228910099992, 52.105530780000059 ], [ -122.092290738999964, 52.105512607 ], [ -122.093192542999958, 52.105543168000089 ], [ -122.093195599999916, 52.105509229000106 ], [ -122.094286505999975, 52.105546189000059 ], [ -122.094295953999918, 52.105441255000066 ], [ -122.095013801999954, 52.105465570000092 ], [ -122.095015224999941, 52.10544977200005 ], [ -122.095771718999913, 52.10547539100007 ], [ -122.095776092999955, 52.105426790000095 ], [ -122.101616583999956, 52.105624417000101 ], [ -122.101596890999986, 52.105843544000017 ], [ -122.104641188999921, 52.105946438000068 ], [ -122.104612772999985, 52.106262869000112 ], [ -122.106144155999928, 52.106314597000051 ], [ -122.106095838999934, 52.106852842000102 ], [ -122.106236590999941, 52.106857595000058 ], [ -122.106223513999936, 52.107003278000093 ], [ -122.108676513999967, 52.107086091000021 ], [ -122.108761581999957, 52.106137802000099 ], [ -122.114602227999967, 52.106334772000075 ], [ -122.11433138, 52.109358409000059 ], [ -122.115051227, 52.109382664000037 ], [ -122.115023884999957, 52.109687926000063 ], [ -122.115698324999968, 52.109710648000068 ], [ -122.115672830999983, 52.109995323000085 ], [ -122.116379619999975, 52.11001913000014 ], [ -122.116362280999979, 52.110212783000065 ], [ -122.117606989999942, 52.110254698000077 ], [ -122.117463032, 52.111862914000042 ], [ -122.121536557999946, 52.111999995000076 ], [ -122.12151927099994, 52.112193326000074 ], [ -122.122032355999949, 52.112210582000024 ], [ -122.121804300999955, 52.114761041000072 ], [ -122.122669031999976, 52.114767479000129 ], [ -122.12267962, 52.114228095000037 ], [ -122.122241558000013, 52.114224835000108 ], [ -122.122273339999936, 52.112606684000077 ], [ -122.122711382999952, 52.112609944000042 ], [ -122.122721970999962, 52.112070559000074 ], [ -122.123160010999953, 52.112073818000091 ], [ -122.123165300999972, 52.111804126000045 ], [ -122.124917448999938, 52.111817143000067 ], [ -122.124900468999954, 52.112684358000109 ], [ -122.12904056299999, 52.112823407000107 ], [ -122.129061787999944, 52.112585598000031 ], [ -122.134537223, 52.112769266000036 ], [ -122.13454906, 52.112157965000108 ], [ -122.135863184999948, 52.112167604000014 ], [ -122.135868399999978, 52.111897910000046 ], [ -122.134992321999974, 52.111891487000058 ], [ -122.135007979999926, 52.111082409000062 ], [ -122.135446010999928, 52.111085621000051 ], [ -122.135451227999965, 52.110815928000093 ], [ -122.135889255999984, 52.110819139000057 ], [ -122.135894469999968, 52.110549446000064 ], [ -122.136332495999952, 52.110552655000099 ], [ -122.136337706999882, 52.110282962000021 ], [ -122.137628275999958, 52.110292408000113 ], [ -122.137740116999964, 52.109036389000046 ], [ -122.135997714999945, 52.108978013000069 ], [ -122.136013318, 52.108802859000072 ], [ -122.134933987999901, 52.108766686000038 ], [ -122.135008527999958, 52.107930155000112 ], [ -122.134681138999952, 52.107919181000085 ], [ -122.134695458999943, 52.107758468000092 ], [ -122.133412303999975, 52.107715446000064 ], [ -122.13346361399999, 52.107139830000094 ], [ -122.133407444999946, 52.107137947000048 ], [ -122.133452326999972, 52.106634416000091 ], [ -122.133452587999926, 52.106634413000037 ], [ -122.13708684, 52.106594915000073 ], [ -122.137295696999914, 52.106592618000086 ], [ -122.137399004999963, 52.106591490000021 ], [ -122.137930786999931, 52.106655396000086 ], [ -122.139529567999929, 52.106847500000114 ], [ -122.145010786999933, 52.107295093000047 ], [ -122.145126248999958, 52.107289494000021 ], [ -122.14511292, 52.107439472000046 ], [ -122.145282128999952, 52.107445129000091 ], [ -122.145296692999949, 52.107281229000037 ], [ -122.147725861999959, 52.107163395000065 ], [ -122.147697724999944, 52.108159503000124 ], [ -122.14784282899997, 52.108953842000062 ], [ -122.148533122999979, 52.110601279000079 ], [ -122.14957797699995, 52.110818440000081 ], [ -122.14994650299991, 52.1109565450001 ], [ -122.150174386999979, 52.111112343000102 ], [ -122.150356401999915, 52.111338554000049 ], [ -122.150449880999943, 52.111605755000021 ], [ -122.150461671999963, 52.111836036000049 ], [ -122.150463436999928, 52.111898976000134 ], [ -122.150458957999973, 52.112213258000047 ], [ -122.149864311999977, 52.112130495000066 ], [ -122.14931121699999, 52.112058138000073 ], [ -122.148497898999963, 52.112013015000102 ], [ -122.147170126, 52.112004584000076 ], [ -122.146939481999951, 52.11201649500007 ], [ -122.146166596999976, 52.112056395000074 ], [ -122.145166768999943, 52.112164909000043 ], [ -122.144142118, 52.112339065000064 ], [ -122.142955776999884, 52.112617394000075 ], [ -122.142621078000019, 52.112727802000087 ], [ -122.141642901999958, 52.113050501000011 ], [ -122.140236104999929, 52.113583866000091 ], [ -122.138398789999925, 52.114280397000144 ], [ -122.137220432999982, 52.114702273000056 ], [ -122.135679802999931, 52.115253795000108 ], [ -122.135312286999977, 52.11543281700007 ], [ -122.134536081999954, 52.115907100000072 ], [ -122.133673600999927, 52.11670921100005 ], [ -122.133284001999954, 52.117234212000035 ], [ -122.133088500000028, 52.117569891000095 ], [ -122.132455730999979, 52.117416544000079 ], [ -122.132120584999896, 52.117335307000097 ], [ -122.131837563999923, 52.117256604000048 ], [ -122.131152375999989, 52.116858176000022 ], [ -122.129927944999977, 52.116174245000103 ], [ -122.129854989999956, 52.116130100000085 ], [ -122.129296594999971, 52.115821208000142 ], [ -122.12861628899999, 52.115564799000047 ], [ -122.127517507999968, 52.115271888000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023522", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B9F98890A1875EC00240FC994D0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.118784464999962, 52.104452760000065 ], [ -122.118853202999929, 52.103684466000118 ], [ -122.118600412999939, 52.103675957000085 ], [ -122.118623939999921, 52.103412997000085 ], [ -122.119698753999941, 52.103432 ], [ -122.119726701000019, 52.104484475000049 ], [ -122.118784464999962, 52.104452760000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "178584015", "BldgCostT": "110042673", "sL_LossRatio": "0.993876970485163", "sL_AssetLoss": "2397.506", "sL_BldgLoss": "2382.826", "sL_StrLoss": "2377.5", "sL_NStrLoss": "5.326", "sL_ContLoss": "14.68", "geom_point": "0101000020E6100000B555BC702B875EC0416646C3D20E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.123500745999976, 52.117038563000065 ], [ -122.123502844999933, 52.116931529000141 ], [ -122.123352257999969, 52.116930410000066 ], [ -122.123279400999962, 52.116821492000021 ], [ -122.1230681709999, 52.116754359000048 ], [ -122.123075344, 52.116388888000039 ], [ -122.121890541999903, 52.116380070000055 ], [ -122.121827373999963, 52.116359994000057 ], [ -122.121762470999926, 52.116309356000087 ], [ -122.121766400999931, 52.116109415000018 ], [ -122.121503692999909, 52.11610745800003 ], [ -122.121409418999974, 52.116033904000112 ], [ -122.120895309999923, 52.115845298000096 ], [ -122.120896875999961, 52.115765660000079 ], [ -122.120656167000021, 52.11575756400007 ], [ -122.12048151599997, 52.115693490000076 ], [ -122.119972807999915, 52.115600887000049 ], [ -122.119772292999968, 52.115374492000079 ], [ -122.116974183999986, 52.114381797000135 ], [ -122.115745693999912, 52.113735216000052 ], [ -122.114902996999959, 52.113486006000095 ], [ -122.113119387999973, 52.113634113000096 ], [ -122.112257503999984, 52.113574289000049 ], [ -122.111522594999954, 52.113802211000056 ], [ -122.110120091999988, 52.113827812000096 ], [ -122.109783191999952, 52.113985908000117 ], [ -122.109272085999947, 52.113982998 ], [ -122.109159982999984, 52.11367540800012 ], [ -122.108931114999962, 52.113486005000013 ], [ -122.107619178999954, 52.113332200000094 ], [ -122.10734249799999, 52.11323959200012 ], [ -122.106597720999929, 52.112541697000069 ], [ -122.104681500999902, 52.111960710000098 ], [ -122.102762690999981, 52.111577494000102 ], [ -122.100924377999945, 52.111419494000074 ], [ -122.099041513999936, 52.111459291000116 ], [ -122.097239106999908, 52.111724211000102 ], [ -122.096092115999923, 52.111355407000062 ], [ -122.094818523999905, 52.111588906000101 ], [ -122.093230121999937, 52.111405205000018 ], [ -122.092280192999951, 52.111443699000041 ], [ -122.09158040299999, 52.111339707000091 ], [ -122.091251997999962, 52.111660102000037 ], [ -122.09031030899996, 52.111338298000085 ], [ -122.089357889999974, 52.111466509000095 ], [ -122.088614209999946, 52.111460803000085 ], [ -122.088307222999916, 52.111457901000094 ], [ -122.087088998999931, 52.11180830800005 ], [ -122.086576094999927, 52.111858092000084 ], [ -122.084853595999917, 52.112545988000115 ], [ -122.083242612999967, 52.11280380200003 ], [ -122.082321522, 52.112786698000072 ], [ -122.08113089599999, 52.11316411500011 ], [ -122.080760111, 52.112792394000081 ], [ -122.080367903999942, 52.112654197000104 ], [ -122.078861794999938, 52.112678495000075 ], [ -122.078669806999969, 52.112793783000022 ], [ -122.077717305999911, 52.113011684000064 ], [ -122.075893372999985, 52.113608495000072 ], [ -122.073347197999951, 52.113840596000081 ], [ -122.073111400999977, 52.113937507000081 ], [ -122.072910773999965, 52.114529894000029 ], [ -122.072543417999967, 52.11455410300006 ], [ -122.070572793999943, 52.113881912000089 ], [ -122.068828003999954, 52.113525905000124 ], [ -122.067301996999959, 52.113110009000124 ], [ -122.066399286999953, 52.112959010000054 ], [ -122.06475472899993, 52.112490860000094 ], [ -122.064727818999955, 52.111989761000075 ], [ -122.065143749999905, 52.112095913000118 ], [ -122.069532781999925, 52.113215863000086 ], [ -122.070844685999973, 52.113449220000113 ], [ -122.071235654999953, 52.11346704700005 ], [ -122.072087131999936, 52.11328493400007 ], [ -122.0734249599999, 52.113150833000127 ], [ -122.074651631999984, 52.112998539000017 ], [ -122.076200113999931, 52.112592201000034 ], [ -122.076802740999966, 52.1124887 ], [ -122.07823780699999, 52.111926670000116 ], [ -122.079135868999956, 52.111714636000102 ], [ -122.080330737999944, 52.111508216000047 ], [ -122.082618461999985, 52.111543746000066 ], [ -122.08377630499993, 52.111504020000055 ], [ -122.08590794499996, 52.111207081000067 ], [ -122.088318564999923, 52.110871239000041 ], [ -122.088596438999943, 52.110854399000111 ], [ -122.089069665999986, 52.110825750000117 ], [ -122.091117745999895, 52.110854777000071 ], [ -122.092748785999987, 52.110878605000046 ], [ -122.098768216999957, 52.110971792000036 ], [ -122.10167855099999, 52.111016700000064 ], [ -122.102132102999917, 52.111023684000067 ], [ -122.10224159199997, 52.111031672000095 ], [ -122.10255910799999, 52.109011916000092 ], [ -122.10386531599994, 52.109013411 ], [ -122.104628798999983, 52.110101894000131 ], [ -122.104709979999939, 52.110290595000066 ], [ -122.10469231299993, 52.110617900000108 ], [ -122.104103021999919, 52.111226787000064 ], [ -122.10534480699999, 52.111528252000063 ], [ -122.105474813999948, 52.111559810000124 ], [ -122.106756488999935, 52.112017214000048 ], [ -122.108624203999952, 52.112798906000073 ], [ -122.109365516999915, 52.113010705000079 ], [ -122.110093913999947, 52.11310360500002 ], [ -122.110727490999949, 52.113094400000044 ], [ -122.1114368409999, 52.113031242000055 ], [ -122.113186088999953, 52.112875510000094 ], [ -122.114105088999978, 52.112884887000078 ], [ -122.114936797999988, 52.113002702000117 ], [ -122.11508464799999, 52.113041560000042 ], [ -122.115583684999976, 52.113172689000066 ], [ -122.116516743999952, 52.113529465000056 ], [ -122.117322899999962, 52.113837704000083 ], [ -122.118308323999912, 52.114120606000085 ], [ -122.121836932999912, 52.114909501000035 ], [ -122.122220527999971, 52.11496867700005 ], [ -122.122387642999954, 52.114991754000123 ], [ -122.122812187999983, 52.115059900000105 ], [ -122.12286107599999, 52.115061918000038 ], [ -122.12294918399999, 52.115065515000055 ], [ -122.124025080999942, 52.115109693000122 ], [ -122.124858608999943, 52.11509595800009 ], [ -122.125279425999977, 52.115089001000044 ], [ -122.12643089799991, 52.115104310000049 ], [ -122.127517507999968, 52.115271888000095 ], [ -122.12861628899999, 52.115564799000047 ], [ -122.129296594999971, 52.115821208000142 ], [ -122.129854989999956, 52.116130100000085 ], [ -122.129927944999977, 52.116174245000103 ], [ -122.131152375999989, 52.116858176000022 ], [ -122.131837563999923, 52.117256604000048 ], [ -122.132120584999896, 52.117335307000097 ], [ -122.132455730999979, 52.117416544000079 ], [ -122.133088500000028, 52.117569891000095 ], [ -122.132777798999882, 52.118097515000088 ], [ -122.13193022199998, 52.11938849200007 ], [ -122.131770681999939, 52.11963147600008 ], [ -122.13162529399996, 52.119852884000089 ], [ -122.131363189999931, 52.120252085000061 ], [ -122.13062808599993, 52.121371638000056 ], [ -122.130277943999943, 52.121929419000011 ], [ -122.130129843999967, 52.122029546000142 ], [ -122.129919288999929, 52.122357795000049 ], [ -122.129421200999928, 52.122368790000081 ], [ -122.12792599, 52.122734797000049 ], [ -122.127094022000023, 52.122675 ], [ -122.126107494999971, 52.122317497000083 ], [ -122.125262095999958, 52.122158010000064 ], [ -122.124379393999931, 52.121837608000085 ], [ -122.123338307, 52.121218006000078 ], [ -122.123389719999949, 52.120840601000062 ], [ -122.124010400999978, 52.119775293000075 ], [ -122.124189390999916, 52.118761299000035 ], [ -122.124428004999942, 52.1186002950001 ], [ -122.124182900999955, 52.118356785000095 ], [ -122.123973899999982, 52.117859703000107 ], [ -122.123422851999919, 52.117035945000097 ], [ -122.123500745999976, 52.117038563000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "232011657", "BldgCostT": "131799513", "sL_LossRatio": "0.995265084571185", "sL_AssetLoss": "3324.241", "sL_BldgLoss": "3308.501", "sL_StrLoss": "3302.8", "sL_NStrLoss": "5.701", "sL_ContLoss": "15.74", "geom_point": "0101000020E610000082044A129D875EC0C1970D5BC80F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.119579932999912, 52.124875796 ], [ -122.118121529999939, 52.124423359000041 ], [ -122.116775458999953, 52.124091507000074 ], [ -122.115900765999967, 52.123923240000131 ], [ -122.114726366999946, 52.123697273000104 ], [ -122.114370076999975, 52.123628717000074 ], [ -122.113602366999913, 52.123432223000108 ], [ -122.112194364999979, 52.123006518000068 ], [ -122.111397176999972, 52.122796406000106 ], [ -122.110350301999972, 52.122625505000052 ], [ -122.108392806999916, 52.122502924000109 ], [ -122.108357205999951, 52.122500686000066 ], [ -122.107612201999984, 52.122461569000066 ], [ -122.103333512999896, 52.122236795000106 ], [ -122.100545288999967, 52.122091401000034 ], [ -122.099367757999971, 52.122125431000029 ], [ -122.099185034999934, 52.122130702000057 ], [ -122.098819258, 52.122141698000064 ], [ -122.098141845999933, 52.122163706000087 ], [ -122.097458500999949, 52.122186390000131 ], [ -122.09521765, 52.122258796000025 ], [ -122.094585789999911, 52.122280919000083 ], [ -122.0930659, 52.122334084000073 ], [ -122.092349140999957, 52.122354614000074 ], [ -122.091561435999949, 52.122377143000037 ], [ -122.090119185999981, 52.122418403000061 ], [ -122.088202293, 52.122370833000033 ], [ -122.087645700999943, 52.122356990000092 ], [ -122.086714292999943, 52.122401802000113 ], [ -122.085854491999982, 52.122561295000054 ], [ -122.085332410999953, 52.122696295000075 ], [ -122.084809892, 52.122885205000031 ], [ -122.083190667999972, 52.123618913000023 ], [ -122.082993404, 52.123708310000097 ], [ -122.082329407, 52.123922899000057 ], [ -122.082210250999935, 52.123951775000059 ], [ -122.081878917999973, 52.124032055000086 ], [ -122.081694552999963, 52.123478048000024 ], [ -122.081670046999974, 52.123382775000088 ], [ -122.081878007999975, 52.12335805600005 ], [ -122.08237712, 52.123361941000056 ], [ -122.082410306999932, 52.12299463600008 ], [ -122.083185111999967, 52.122674985000067 ], [ -122.084131792999955, 52.122061190000068 ], [ -122.086339826999961, 52.121206604000058 ], [ -122.087338395999964, 52.121034307000031 ], [ -122.088430902999946, 52.121096994000077 ], [ -122.089821616, 52.120991600000075 ], [ -122.091053588999927, 52.120695303000055 ], [ -122.091525615999899, 52.120491708 ], [ -122.092024704999943, 52.120414804000092 ], [ -122.094494786, 52.120343606000091 ], [ -122.094714291999978, 52.120246691000041 ], [ -122.097278180999965, 52.120679697000099 ], [ -122.099745590999959, 52.120716701000084 ], [ -122.10031621, 52.120685384000069 ], [ -122.101365087999937, 52.120827806000136 ], [ -122.102249402999945, 52.121095503000028 ], [ -122.10325719699999, 52.121111213000098 ], [ -122.104412399999944, 52.121048494000021 ], [ -122.104941505999946, 52.12084629400006 ], [ -122.105364188999914, 52.120957395000069 ], [ -122.10577858399995, 52.120681106000092 ], [ -122.106406903000035, 52.120605598000097 ], [ -122.106755709, 52.12073379800011 ], [ -122.107266404999962, 52.120719506000064 ], [ -122.107494401999958, 52.120991604000089 ], [ -122.107930772999964, 52.121094095000046 ], [ -122.10848081799999, 52.121349108000125 ], [ -122.10900501799992, 52.121470103000078 ], [ -122.109663984999926, 52.121357592000024 ], [ -122.110467409999941, 52.12139181100013 ], [ -122.111006018999916, 52.121529900000027 ], [ -122.111283493999963, 52.121495714000098 ], [ -122.111572121999984, 52.121596899000032 ], [ -122.113120007999896, 52.121716494000083 ], [ -122.115740639999927, 52.122223143000028 ], [ -122.11592661, 52.122259094000086 ], [ -122.116931301999941, 52.122420099000074 ], [ -122.117296605999925, 52.122404397000096 ], [ -122.11761500199998, 52.122551095000048 ], [ -122.118770915999932, 52.122487004000085 ], [ -122.118957789999953, 52.122659306000081 ], [ -122.11899620199992, 52.122921400000045 ], [ -122.119344977999987, 52.123013900000025 ], [ -122.119652489999979, 52.123006791000066 ], [ -122.119651483999945, 52.122241997000074 ], [ -122.119348695999946, 52.120585691000052 ], [ -122.118436495999987, 52.120228186000062 ], [ -122.117734387999946, 52.120195409000083 ], [ -122.117193179999958, 52.120255204000067 ], [ -122.116729309999968, 52.120134190000044 ], [ -122.116648398999985, 52.119721200000093 ], [ -122.116859194999975, 52.119434890000022 ], [ -122.116482807999944, 52.119288188000027 ], [ -122.116467958999962, 52.119287448000065 ], [ -122.116533793999949, 52.118552311000023 ], [ -122.116542199999941, 52.118550500000019 ], [ -122.117461806999955, 52.118503485000133 ], [ -122.117886883999986, 52.11840810800004 ], [ -122.118817795999988, 52.118621688000118 ], [ -122.119506021999911, 52.118564701000075 ], [ -122.119838498999954, 52.118747014000093 ], [ -122.120338112999917, 52.118633104000146 ], [ -122.120728182999969, 52.118771192000096 ], [ -122.121417213999948, 52.118685786000079 ], [ -122.122350287999907, 52.118711406000116 ], [ -122.122775898999961, 52.118633096000089 ], [ -122.123665285999934, 52.118765511000092 ], [ -122.123469411999935, 52.119816600000014 ], [ -122.123078274999969, 52.120334995000064 ], [ -122.122587813999985, 52.12074520100002 ], [ -122.122786201999958, 52.121097009000053 ], [ -122.122751211999955, 52.121420290000046 ], [ -122.12289381, 52.121557011000078 ], [ -122.123363399999945, 52.121505705000054 ], [ -122.124429811999931, 52.122143710000081 ], [ -122.124938100999941, 52.122336012000119 ], [ -122.125668097999892, 52.122368788000067 ], [ -122.126160094999975, 52.122561114000113 ], [ -122.126331287999975, 52.122813091000047 ], [ -122.125886793999911, 52.123089411000052 ], [ -122.126046190999972, 52.123180591000057 ], [ -122.126425573999938, 52.123200492000066 ], [ -122.126633400999964, 52.123103688000114 ], [ -122.128222790000024, 52.12324179100009 ], [ -122.129011094999953, 52.123166312000087 ], [ -122.129232976999944, 52.123015393000031 ], [ -122.129355685999954, 52.12276470900008 ], [ -122.129727109999948, 52.122657391000075 ], [ -122.129232935999937, 52.123427752000076 ], [ -122.12937620699995, 52.123464001000094 ], [ -122.129920108999968, 52.123558608000067 ], [ -122.130056191999984, 52.123546084000104 ], [ -122.130471086999961, 52.123507893000088 ], [ -122.130626312999979, 52.12344256800003 ], [ -122.130955223999976, 52.123304105000052 ], [ -122.131433095999952, 52.122907791000024 ], [ -122.13185151, 52.122486990000084 ], [ -122.132348309999941, 52.122174003000126 ], [ -122.132832725999933, 52.121949491000073 ], [ -122.133412499999949, 52.121789295000049 ], [ -122.134119699999971, 52.121745595000057 ], [ -122.134910200999954, 52.121834991000092 ], [ -122.136429393999975, 52.122164394000137 ], [ -122.137777391999933, 52.12252429400008 ], [ -122.138368515999929, 52.122682095000066 ], [ -122.13904458, 52.122864992000096 ], [ -122.139963684999969, 52.123113598000067 ], [ -122.139630715999928, 52.124502451000041 ], [ -122.139513902, 52.124989487000043 ], [ -122.139406293999969, 52.125506897000051 ], [ -122.138149323999968, 52.125394459000056 ], [ -122.137405248999954, 52.125327867000067 ], [ -122.135716988999903, 52.125176807000074 ], [ -122.135496023999949, 52.126144017000087 ], [ -122.13538879499994, 52.126558128000063 ], [ -122.135423550999988, 52.126759613000075 ], [ -122.135763210000022, 52.127256074000051 ], [ -122.135761404000021, 52.127576027000082 ], [ -122.135756909999969, 52.128362566000071 ], [ -122.134515856999897, 52.128427872000017 ], [ -122.134319174999959, 52.128431638000031 ], [ -122.133730617999973, 52.128442901000042 ], [ -122.133176688, 52.128442297000028 ], [ -122.132882501999958, 52.128433615000041 ], [ -122.132511807999904, 52.128422705000105 ], [ -122.132347818999932, 52.128454008000134 ], [ -122.131232261999941, 52.128327687000095 ], [ -122.130114561999946, 52.128110534000015 ], [ -122.128992015999941, 52.12776745700009 ], [ -122.127953444999932, 52.127452328000039 ], [ -122.12776522199999, 52.127393910000173 ], [ -122.125712916999973, 52.126797701000037 ], [ -122.124771009999918, 52.126516333000076 ], [ -122.122871783999955, 52.125962034000047 ], [ -122.122713219999966, 52.125834544000078 ], [ -122.120314012999955, 52.125104392000054 ], [ -122.119579932999912, 52.124875796 ] ], [ [ -122.123581290999937, 52.123588488000031 ], [ -122.123608470999898, 52.123284453000096 ], [ -122.12287029, 52.12325964300009 ], [ -122.122910184999981, 52.122813459000071 ], [ -122.122130828999957, 52.122787260000095 ], [ -122.122070181999945, 52.123465391000131 ], [ -122.123000718999947, 52.12349667200008 ], [ -122.122984678999956, 52.123676058000036 ], [ -122.123321444999974, 52.123687376000063 ], [ -122.123331036999957, 52.123580077 ], [ -122.123581290999937, 52.123588488000031 ] ], [ [ -122.121412210999935, 52.122264736000034 ], [ -122.12142694, 52.122100062000143 ], [ -122.120772674999927, 52.122078059000067 ], [ -122.12076942799996, 52.122243119000053 ], [ -122.121412210999935, 52.122264736000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "59730250", "BldgCostT": "40720000", "sL_LossRatio": "0.999670582496835", "sL_AssetLoss": "3460.654", "sL_BldgLoss": "3459.514", "sL_StrLoss": "3459.1", "sL_NStrLoss": "0.414", "sL_ContLoss": "1.14", "geom_point": "0101000020E6100000F2FC278728865EC09E838850FC0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.092748785999987, 52.110878605000046 ], [ -122.092756012999942, 52.109823297000091 ], [ -122.089306081999965, 52.109746806000068 ], [ -122.0892414, 52.10815719400005 ], [ -122.089273720999955, 52.10791310800002 ], [ -122.089389777999898, 52.107844201000027 ], [ -122.089470796999933, 52.107806510000017 ], [ -122.089946007999941, 52.107783112000064 ], [ -122.090417595999952, 52.107825002 ], [ -122.090611270999943, 52.107842241000085 ], [ -122.090748112999918, 52.107854388000106 ], [ -122.092757405, 52.107791307000156 ], [ -122.093097395999948, 52.107778854000045 ], [ -122.094924011, 52.107712062000054 ], [ -122.098214994999964, 52.107591590000069 ], [ -122.100993488999976, 52.10777010000006 ], [ -122.101162313999978, 52.107799107000034 ], [ -122.101224777999931, 52.107853297000062 ], [ -122.101246498999956, 52.108296107000093 ], [ -122.101252616999901, 52.10901040600006 ], [ -122.101849863999959, 52.109011084000066 ], [ -122.10255910799999, 52.109011916000092 ], [ -122.10224159199997, 52.111031672000095 ], [ -122.102132102999917, 52.111023684000067 ], [ -122.10167855099999, 52.111016700000064 ], [ -122.098768216999957, 52.110971792000036 ], [ -122.092748785999987, 52.110878605000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023526", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97506083", "BldgCostT": "64508333", "sL_LossRatio": "1", "sL_AssetLoss": "4182.2", "sL_BldgLoss": "4182.2", "sL_StrLoss": "4182.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007B86DB6776865EC0D1B76004E80F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115432883999972, 52.128222703000077 ], [ -122.115438734999913, 52.12815739800007 ], [ -122.113380877999973, 52.128088083000044 ], [ -122.11342593799999, 52.127585418000116 ], [ -122.109191458999959, 52.127442673000139 ], [ -122.109233921999959, 52.126969501000062 ], [ -122.109081788999987, 52.126964370000103 ], [ -122.109155200999936, 52.12614633200009 ], [ -122.108993244999908, 52.126140869000096 ], [ -122.109023468999951, 52.125804068000072 ], [ -122.108637854999984, 52.125791059000065 ], [ -122.108663322999973, 52.125507300000045 ], [ -122.108382756999902, 52.125497835000054 ], [ -122.108312096999953, 52.126285081000063 ], [ -122.106321769999965, 52.126217915000012 ], [ -122.106413507999946, 52.125174335000054 ], [ -122.106479911999941, 52.124419035000066 ], [ -122.101022776, 52.124478288000041 ], [ -122.092238863999953, 52.124573055000042 ], [ -122.092267398000033, 52.123168760000105 ], [ -122.090952965, 52.123158634000042 ], [ -122.09094747799999, 52.123428323000041 ], [ -122.09138562399994, 52.123431700000047 ], [ -122.091380138999938, 52.123701389000061 ], [ -122.09181828899996, 52.123704764000095 ], [ -122.09180054199993, 52.124577766000058 ], [ -122.091013025999942, 52.124586227000087 ], [ -122.091006171999965, 52.12477743100002 ], [ -122.090481878999981, 52.12477339000003 ], [ -122.090487369999963, 52.124503700000034 ], [ -122.090049213000015, 52.12450032000006 ], [ -122.090054705999989, 52.124230631000067 ], [ -122.089178396999941, 52.124223866000051 ], [ -122.089167398999976, 52.124763243000061 ], [ -122.088112165999974, 52.124755088000029 ], [ -122.087999693, 52.12600166500004 ], [ -122.083260186999951, 52.12584083300009 ], [ -122.082951995999935, 52.124856405000024 ], [ -122.082178284999941, 52.124931664000037 ], [ -122.082112425999981, 52.124733762000062 ], [ -122.081878917999973, 52.124032055000086 ], [ -122.082210250999935, 52.123951775000059 ], [ -122.082329407, 52.123922899000057 ], [ -122.082993404, 52.123708310000097 ], [ -122.083190667999972, 52.123618913000023 ], [ -122.084809892, 52.122885205000031 ], [ -122.085332410999953, 52.122696295000075 ], [ -122.085854491999982, 52.122561295000054 ], [ -122.086714292999943, 52.122401802000113 ], [ -122.087645700999943, 52.122356990000092 ], [ -122.088202293, 52.122370833000033 ], [ -122.090119185999981, 52.122418403000061 ], [ -122.091561435999949, 52.122377143000037 ], [ -122.092349140999957, 52.122354614000074 ], [ -122.0930659, 52.122334084000073 ], [ -122.094585789999911, 52.122280919000083 ], [ -122.09521765, 52.122258796000025 ], [ -122.097458500999949, 52.122186390000131 ], [ -122.098141845999933, 52.122163706000087 ], [ -122.098819258, 52.122141698000064 ], [ -122.099185034999934, 52.122130702000057 ], [ -122.099367757999971, 52.122125431000029 ], [ -122.100545288999967, 52.122091401000034 ], [ -122.103333512999896, 52.122236795000106 ], [ -122.107612201999984, 52.122461569000066 ], [ -122.108357205999951, 52.122500686000066 ], [ -122.108392806999916, 52.122502924000109 ], [ -122.110350301999972, 52.122625505000052 ], [ -122.111397176999972, 52.122796406000106 ], [ -122.112194364999979, 52.123006518000068 ], [ -122.113602366999913, 52.123432223000108 ], [ -122.114370076999975, 52.123628717000074 ], [ -122.114726366999946, 52.123697273000104 ], [ -122.115900765999967, 52.123923240000131 ], [ -122.115863921999946, 52.124158694000087 ], [ -122.115858915999979, 52.124568350000033 ], [ -122.114882944999977, 52.124638546000078 ], [ -122.114963209999956, 52.125707941000059 ], [ -122.115845442999941, 52.125674474000085 ], [ -122.11583389499999, 52.12661999199999 ], [ -122.115818538000028, 52.126768974000043 ], [ -122.115668874999983, 52.128219172000115 ], [ -122.115432883999972, 52.128222703000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "159951083", "BldgCostT": "95527348", "sL_LossRatio": "0.998031728320972", "sL_AssetLoss": "5492.128", "sL_BldgLoss": "5481.318", "sL_StrLoss": "5477.4", "sL_NStrLoss": "3.918", "sL_ContLoss": "10.81", "geom_point": "0101000020E6100000EA5C6276E0875EC0E11A44108C104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.124977535999946, 52.135316603000078 ], [ -122.124989110999977, 52.135187107000078 ], [ -122.12491092199997, 52.135184481000046 ], [ -122.124939152999943, 52.13486868100005 ], [ -122.124870643999941, 52.134866380000126 ], [ -122.124900650999976, 52.134530704000042 ], [ -122.124798664999943, 52.134527279000096 ], [ -122.12482620699997, 52.134219179000091 ], [ -122.124415073999941, 52.134205368000096 ], [ -122.124442996999974, 52.133893033000035 ], [ -122.124044881999978, 52.133879660000019 ], [ -122.124118150999891, 52.133060181000126 ], [ -122.124087840999948, 52.13305916200008 ], [ -122.124117913999925, 52.132722815000044 ], [ -122.123699350999971, 52.132708752000028 ], [ -122.123729055999945, 52.132376543000113 ], [ -122.123297461999982, 52.132362042000047 ], [ -122.123330054999911, 52.131997554000094 ], [ -122.122871069999974, 52.131982131000015 ], [ -122.122901214999928, 52.131645074000105 ], [ -122.12254858199999, 52.131633223000101 ], [ -122.122574008999919, 52.131348931000069 ], [ -122.121451362999963, 52.131311195000144 ], [ -122.121472920999921, 52.131070233000067 ], [ -122.120852658000018, 52.131049378000107 ], [ -122.120877966999942, 52.130766527000034 ], [ -122.120388460999891, 52.130750066000061 ], [ -122.120419723999987, 52.130400714000125 ], [ -122.11930844599999, 52.130363338000066 ], [ -122.119356491999937, 52.129826580000028 ], [ -122.117936435, 52.12977880300005 ], [ -122.117936688999919, 52.129775955000056 ], [ -122.11770398699997, 52.129768124000059 ], [ -122.117635910999965, 52.128173986000014 ], [ -122.11674571399999, 52.12820039700005 ], [ -122.115668874999983, 52.128219172000115 ], [ -122.115818538000028, 52.126768974000043 ], [ -122.11583389499999, 52.12661999199999 ], [ -122.115845442999941, 52.125674474000085 ], [ -122.114963209999956, 52.125707941000059 ], [ -122.114882944999977, 52.124638546000078 ], [ -122.115858915999979, 52.124568350000033 ], [ -122.115863921999946, 52.124158694000087 ], [ -122.115900765999967, 52.123923240000131 ], [ -122.116775458999953, 52.124091507000074 ], [ -122.118121529999939, 52.124423359000041 ], [ -122.119579932999912, 52.124875796 ], [ -122.120314012999955, 52.125104392000054 ], [ -122.122713219999966, 52.125834544000078 ], [ -122.122871783999955, 52.125962034000047 ], [ -122.124771009999918, 52.126516333000076 ], [ -122.125712916999973, 52.126797701000037 ], [ -122.12776522199999, 52.127393910000173 ], [ -122.127759030999954, 52.127676680000036 ], [ -122.127854402999972, 52.127953851 ], [ -122.128069587999946, 52.12828447 ], [ -122.129108387999963, 52.129697313000094 ], [ -122.129292618999941, 52.129816696000027 ], [ -122.129628347999954, 52.130327876000116 ], [ -122.129898938999958, 52.130739825000099 ], [ -122.130575376999971, 52.131615902000171 ], [ -122.130183154999955, 52.131692555 ], [ -122.129073006999931, 52.131668791000045 ], [ -122.129090417999976, 52.132032285000022 ], [ -122.12893709799999, 52.13235409300006 ], [ -122.128437790999939, 52.132660809000086 ], [ -122.128346809999982, 52.13294161400006 ], [ -122.128423605999927, 52.133919695000081 ], [ -122.128426511, 52.134871995000033 ], [ -122.129079212999955, 52.135375864000132 ], [ -122.127900023, 52.135261587000052 ], [ -122.127889327999981, 52.135255049000072 ], [ -122.124977535999946, 52.135316603000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023528", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.9", "sL_BldgLoss": "37.9", "sL_StrLoss": "37.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F39C25AFAB875EC03401B7D549114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.119209182999938, 52.134701765000088 ], [ -122.120523965999951, 52.134711578000115 ], [ -122.120510192999973, 52.135410895000113 ], [ -122.119194648999894, 52.135438629000106 ], [ -122.119209182999938, 52.134701765000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "82649917", "BldgCostT": "53376667", "sL_LossRatio": "0.998186361332385", "sL_AssetLoss": "3815.534", "sL_BldgLoss": "3808.614", "sL_StrLoss": "3806.1", "sL_NStrLoss": "2.514", "sL_ContLoss": "6.92", "geom_point": "0101000020E6100000C2629A0A6D885EC0E28EA294B1114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.133462492999953, 52.145596552000057 ], [ -122.133465524999906, 52.145440297000036 ], [ -122.130846631999972, 52.145352526000053 ], [ -122.130883131999951, 52.144943695000023 ], [ -122.130785558999932, 52.14494042400004 ], [ -122.130787680999958, 52.14491665500011 ], [ -122.129968930999937, 52.144889203000062 ], [ -122.130017514999949, 52.144345126000125 ], [ -122.129760860999951, 52.144336519000056 ], [ -122.129506647999975, 52.14363831000005 ], [ -122.129139918999911, 52.142563863000092 ], [ -122.129124525999913, 52.142563222000064 ], [ -122.129564399999978, 52.135769380000092 ], [ -122.129185441999951, 52.135398490000107 ], [ -122.129079212999955, 52.135375864000132 ], [ -122.128426511, 52.134871995000033 ], [ -122.128423605999927, 52.133919695000081 ], [ -122.128346809999982, 52.13294161400006 ], [ -122.128437790999939, 52.132660809000086 ], [ -122.12893709799999, 52.13235409300006 ], [ -122.129090417999976, 52.132032285000022 ], [ -122.129073006999931, 52.131668791000045 ], [ -122.130183154999955, 52.131692555 ], [ -122.130575376999971, 52.131615902000171 ], [ -122.130796672999935, 52.131858204000089 ], [ -122.131403048999971, 52.132522183000042 ], [ -122.133474978999985, 52.134479866000113 ], [ -122.134349397999983, 52.135340069000101 ], [ -122.134810495999886, 52.136020293000094 ], [ -122.135092898999986, 52.136748401000034 ], [ -122.135165018999899, 52.137097810000121 ], [ -122.135205522999968, 52.137293801000077 ], [ -122.13518299799999, 52.13812130300002 ], [ -122.13516680299989, 52.13896061600007 ], [ -122.13526629699993, 52.13976791500005 ], [ -122.135372615999984, 52.140219696000067 ], [ -122.13541540099996, 52.14039630200007 ], [ -122.134758943999941, 52.140460589000043 ], [ -122.13402992099995, 52.140483798000119 ], [ -122.132979478999914, 52.140477309000048 ], [ -122.130621690999959, 52.140488095000087 ], [ -122.130565506999957, 52.14122264700007 ], [ -122.130525494000011, 52.141746104000099 ], [ -122.130628501999951, 52.142135781000086 ], [ -122.131124807, 52.142979803000024 ], [ -122.131679666999986, 52.143201315000091 ], [ -122.132925199999988, 52.144207892000054 ], [ -122.133148396999985, 52.144170394000106 ], [ -122.134583395999968, 52.144187092000031 ], [ -122.13456689899999, 52.144503594000085 ], [ -122.134566537999959, 52.144520619000041 ], [ -122.134565352999957, 52.144573045000065 ], [ -122.134563075999921, 52.144677894000033 ], [ -122.134561982999969, 52.144730318000072 ], [ -122.13456081699999, 52.14478276800012 ], [ -122.134559668999955, 52.144835181000097 ], [ -122.134558538999926, 52.144887616000048 ], [ -122.134556223999965, 52.144992478000106 ], [ -122.134555074999952, 52.145044891000104 ], [ -122.134553947, 52.145097328000112 ], [ -122.134551667, 52.145202177000051 ], [ -122.134550481999952, 52.145254602000058 ], [ -122.134549351999937, 52.145307039000052 ], [ -122.134548240999919, 52.14535944100006 ], [ -122.134547074999944, 52.145411888000041 ], [ -122.134545924999969, 52.145464303000082 ], [ -122.134544777, 52.145516715 ], [ -122.134543648999951, 52.145569153000061 ], [ -122.134541332999959, 52.145674013000139 ], [ -122.134540181999938, 52.145726427000113 ], [ -122.134539054999948, 52.145778864000079 ], [ -122.132580221999902, 52.146097395000076 ], [ -122.132575899999892, 52.146097272000119 ], [ -122.132580512999965, 52.145859798000117 ], [ -122.133018886999949, 52.145863022000079 ], [ -122.133024124999949, 52.145593330000096 ], [ -122.133462492999953, 52.145596552000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023530", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "61954500", "BldgCostT": "34860000", "sL_LossRatio": "0.998185352750206", "sL_AssetLoss": "2264.903", "sL_BldgLoss": "2260.793", "sL_StrLoss": "2259.3", "sL_NStrLoss": "1.493", "sL_ContLoss": "4.11", "geom_point": "0101000020E61000006156627DC7885EC0E4C5CBCB48114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.137503370999951, 52.137715477000093 ], [ -122.136806699999966, 52.13721901600006 ], [ -122.136377648999954, 52.137584603000072 ], [ -122.135934374000016, 52.137962293000037 ], [ -122.135720303999975, 52.138094292000126 ], [ -122.135587976999958, 52.138098898000109 ], [ -122.13518299799999, 52.13812130300002 ], [ -122.135205522999968, 52.137293801000077 ], [ -122.135165018999899, 52.137097810000121 ], [ -122.135092898999986, 52.136748401000034 ], [ -122.134810495999886, 52.136020293000094 ], [ -122.134349397999983, 52.135340069000101 ], [ -122.133474978999985, 52.134479866000113 ], [ -122.133676200999957, 52.134392279000082 ], [ -122.133754775999989, 52.134388681000075 ], [ -122.13384549099996, 52.134384505000071 ], [ -122.133886729999958, 52.134395436000055 ], [ -122.13403774799994, 52.134529855000089 ], [ -122.135245111999936, 52.133793509000071 ], [ -122.137973414999976, 52.132603371000108 ], [ -122.138678703999972, 52.132525169000068 ], [ -122.138892429999927, 52.132429012000088 ], [ -122.13894881499999, 52.13241603400008 ], [ -122.139280614999933, 52.132339641000108 ], [ -122.13947144199993, 52.132295699000032 ], [ -122.140117602999922, 52.132164591000112 ], [ -122.14063521599995, 52.133379299000055 ], [ -122.140436637000022, 52.133579048000101 ], [ -122.140282521999922, 52.133734080000075 ], [ -122.140201245999947, 52.133815825000099 ], [ -122.140066143999931, 52.133951740000022 ], [ -122.139114116999949, 52.134909398000026 ], [ -122.138253087999942, 52.135774352000141 ], [ -122.137911405999915, 52.136117559000084 ], [ -122.137573691999933, 52.136456788000025 ], [ -122.138834477999964, 52.137390098000012 ], [ -122.138946279999971, 52.137582493000089 ], [ -122.138955418999913, 52.13789180700013 ], [ -122.138874891999961, 52.138005908000082 ], [ -122.13828132499998, 52.13826990399999 ], [ -122.137503370999951, 52.137715477000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "221199617", "BldgCostT": "129440081", "sL_LossRatio": "0.997477409207711", "sL_AssetLoss": "7864.93", "sL_BldgLoss": "7845.09", "sL_StrLoss": "7837.9", "sL_NStrLoss": "7.19", "sL_ContLoss": "19.84", "geom_point": "0101000020E6100000184417B3E9885EC0A8EEDCA4B7114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.135871794999971, 52.14045559400008 ], [ -122.135853672999957, 52.140347195000047 ], [ -122.13541540099996, 52.14039630200007 ], [ -122.135372615999984, 52.140219696000067 ], [ -122.13526629699993, 52.13976791500005 ], [ -122.13516680299989, 52.13896061600007 ], [ -122.13518299799999, 52.13812130300002 ], [ -122.135587976999958, 52.138098898000109 ], [ -122.135720303999975, 52.138094292000126 ], [ -122.135934374000016, 52.137962293000037 ], [ -122.136377648999954, 52.137584603000072 ], [ -122.136806699999966, 52.13721901600006 ], [ -122.137503370999951, 52.137715477000093 ], [ -122.13828132499998, 52.13826990399999 ], [ -122.138874891999961, 52.138005908000082 ], [ -122.138955418999913, 52.13789180700013 ], [ -122.138946279999971, 52.137582493000089 ], [ -122.138834477999964, 52.137390098000012 ], [ -122.137573691999933, 52.136456788000025 ], [ -122.137911405999915, 52.136117559000084 ], [ -122.138253087999942, 52.135774352000141 ], [ -122.139114116999949, 52.134909398000026 ], [ -122.140066143999931, 52.133951740000022 ], [ -122.140201245999947, 52.133815825000099 ], [ -122.140727106999975, 52.134561786000084 ], [ -122.140727617999929, 52.134563699000047 ], [ -122.140728159999981, 52.134563498000027 ], [ -122.141317007999959, 52.134363298000096 ], [ -122.143208009999967, 52.136416203000081 ], [ -122.14239102599997, 52.136645052000084 ], [ -122.141772587, 52.136818300000122 ], [ -122.141396861999965, 52.136900389000125 ], [ -122.141383971999986, 52.136903193000094 ], [ -122.141361102999923, 52.136962585000042 ], [ -122.1413337, 52.137023707000026 ], [ -122.141334864999976, 52.137025383000015 ], [ -122.141444298999943, 52.137180998000083 ], [ -122.142446009999901, 52.137897198000132 ], [ -122.142665408999932, 52.13805537800004 ], [ -122.142980396999974, 52.138282491000069 ], [ -122.143456989999947, 52.138558909000068 ], [ -122.140454496999936, 52.139820296000075 ], [ -122.141794003, 52.140776892000062 ], [ -122.14116266299996, 52.141110422000011 ], [ -122.140626614, 52.141393598000057 ], [ -122.139939858999981, 52.141756140000012 ], [ -122.13935622299999, 52.142064300000101 ], [ -122.138719567999928, 52.14239928400012 ], [ -122.13858416099994, 52.14247055900006 ], [ -122.136541002999977, 52.141054725000053 ], [ -122.136024397999975, 52.140651205999987 ], [ -122.135871794999971, 52.14045559400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023532", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "413600058", "BldgCostT": "238789725", "sL_LossRatio": "0.994216010504216", "sL_AssetLoss": "7975.464", "sL_BldgLoss": "7929.334", "sL_StrLoss": "7912.6", "sL_NStrLoss": "16.734", "sL_ContLoss": "46.13", "geom_point": "0101000020E6100000C51DA276E4885EC0EC7B378AEA104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.145504880999923, 52.137033935000048 ], [ -122.144530638999953, 52.135963689000043 ], [ -122.143833131999884, 52.13620232300012 ], [ -122.143208009999967, 52.136416203000081 ], [ -122.141317007999959, 52.134363298000096 ], [ -122.140728159999981, 52.134563498000027 ], [ -122.140727617999929, 52.134563699000047 ], [ -122.140727106999975, 52.134561786000084 ], [ -122.140201245999947, 52.133815825000099 ], [ -122.140282521999922, 52.133734080000075 ], [ -122.140436637000022, 52.133579048000101 ], [ -122.14063521599995, 52.133379299000055 ], [ -122.140117602999922, 52.132164591000112 ], [ -122.13947144199993, 52.132295699000032 ], [ -122.139280614999933, 52.132339641000108 ], [ -122.13894881499999, 52.13241603400008 ], [ -122.138892429999927, 52.132429012000088 ], [ -122.138678703999972, 52.132525169000068 ], [ -122.137973414999976, 52.132603371000108 ], [ -122.135245111999936, 52.133793509000071 ], [ -122.13403774799994, 52.134529855000089 ], [ -122.133886729999958, 52.134395436000055 ], [ -122.13384549099996, 52.134384505000071 ], [ -122.133754775999989, 52.134388681000075 ], [ -122.133676200999957, 52.134392279000082 ], [ -122.133474978999985, 52.134479866000113 ], [ -122.131403048999971, 52.132522183000042 ], [ -122.130796672999935, 52.131858204000089 ], [ -122.130575376999971, 52.131615902000171 ], [ -122.129898938999958, 52.130739825000099 ], [ -122.129628347999954, 52.130327876000116 ], [ -122.129292618999941, 52.129816696000027 ], [ -122.129108387999963, 52.129697313000094 ], [ -122.128069587999946, 52.12828447 ], [ -122.127854402999972, 52.127953851 ], [ -122.127759030999954, 52.127676680000036 ], [ -122.12776522199999, 52.127393910000173 ], [ -122.127953444999932, 52.127452328000039 ], [ -122.128992015999941, 52.12776745700009 ], [ -122.130114561999946, 52.128110534000015 ], [ -122.131232261999941, 52.128327687000095 ], [ -122.132347818999932, 52.128454008000134 ], [ -122.132511807999904, 52.128422705000105 ], [ -122.132882501999958, 52.128433615000041 ], [ -122.133176688, 52.128442297000028 ], [ -122.133730617999973, 52.128442901000042 ], [ -122.134319174999959, 52.128431638000031 ], [ -122.134515856999897, 52.128427872000017 ], [ -122.135756909999969, 52.128362566000071 ], [ -122.135999815999966, 52.128514413000062 ], [ -122.136180662999919, 52.128770208000027 ], [ -122.136230437999956, 52.129000957000109 ], [ -122.13623237099992, 52.129287802000071 ], [ -122.136233552999968, 52.129464716000072 ], [ -122.136236749999952, 52.12994977000006 ], [ -122.140672498999919, 52.129882601000084 ], [ -122.14240391, 52.129856101000072 ], [ -122.143123918999976, 52.129845939000063 ], [ -122.143915111999888, 52.129834802000062 ], [ -122.144657973999969, 52.129826754000064 ], [ -122.14553878, 52.129817197000115 ], [ -122.145541970999929, 52.129945700000114 ], [ -122.14606671199999, 52.13118129 ], [ -122.146528873999912, 52.132212707000065 ], [ -122.1467812019999, 52.132490700000076 ], [ -122.14600550699997, 52.132756834000084 ], [ -122.14536180099999, 52.132977695000086 ], [ -122.146361083999977, 52.134069432000061 ], [ -122.146514915999973, 52.134237508000083 ], [ -122.146652753999959, 52.134388080000086 ], [ -122.14724392299992, 52.135033908000068 ], [ -122.147937956999968, 52.135776299000021 ], [ -122.14815298399999, 52.136006284000047 ], [ -122.148580383999942, 52.136463415000065 ], [ -122.149016260999971, 52.136929631000058 ], [ -122.149077403999982, 52.136995001000038 ], [ -122.149449405999988, 52.137443894000114 ], [ -122.148739015999979, 52.137674497000027 ], [ -122.148094181999966, 52.137883798000054 ], [ -122.146580104999927, 52.138214991000055 ], [ -122.146174472999931, 52.137769433000123 ], [ -122.145504880999923, 52.137033935000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104619636", "BldgCostT": "63867079", "sL_LossRatio": "0.998688335233044", "sL_AssetLoss": "3933.932", "sL_BldgLoss": "3928.772", "sL_StrLoss": "3926.9", "sL_NStrLoss": "1.872", "sL_ContLoss": "5.16", "geom_point": "0101000020E61000006FEB7E803B895EC054A19AF5D6114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.143833131999884, 52.13620232300012 ], [ -122.144530638999953, 52.135963689000043 ], [ -122.145504880999923, 52.137033935000048 ], [ -122.146174472999931, 52.137769433000123 ], [ -122.146580104999927, 52.138214991000055 ], [ -122.14761347599989, 52.139367888000038 ], [ -122.147631078999922, 52.139664900000071 ], [ -122.147557803999916, 52.140011015000084 ], [ -122.146685465999965, 52.140503341000098 ], [ -122.146187487999924, 52.140784386000107 ], [ -122.145885795999916, 52.141128295000094 ], [ -122.145723694999973, 52.141500099000083 ], [ -122.14560837499999, 52.142220298000083 ], [ -122.144815406999953, 52.142862996000098 ], [ -122.144640204999945, 52.142937997000061 ], [ -122.144261089999972, 52.142668410000041 ], [ -122.142517113999943, 52.141429782000024 ], [ -122.142317510999959, 52.141152800000043 ], [ -122.141794003, 52.140776892000062 ], [ -122.140454496999936, 52.139820296000075 ], [ -122.143456989999947, 52.138558909000068 ], [ -122.142980396999974, 52.138282491000069 ], [ -122.142665408999932, 52.13805537800004 ], [ -122.142446009999901, 52.137897198000132 ], [ -122.141444298999943, 52.137180998000083 ], [ -122.141334864999976, 52.137025383000015 ], [ -122.1413337, 52.137023707000026 ], [ -122.141361102999923, 52.136962585000042 ], [ -122.141383971999986, 52.136903193000094 ], [ -122.141396861999965, 52.136900389000125 ], [ -122.141772587, 52.136818300000122 ], [ -122.14239102599997, 52.136645052000084 ], [ -122.143208009999967, 52.136416203000081 ], [ -122.143833131999884, 52.13620232300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023534", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "137063000", "BldgCostT": "94340000", "sL_LossRatio": "0.99894768027493", "sL_AssetLoss": "4219.25", "sL_BldgLoss": "4214.81", "sL_StrLoss": "4213.2", "sL_NStrLoss": "1.61", "sL_ContLoss": "4.44", "geom_point": "0101000020E61000007D9A596C8F895EC01C750006FA114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.148739015999979, 52.137674497000027 ], [ -122.149449405999988, 52.137443894000114 ], [ -122.152310006, 52.140583589000094 ], [ -122.151663779999936, 52.140796499000011 ], [ -122.151054380999966, 52.143218585000042 ], [ -122.149755795999923, 52.14310249800009 ], [ -122.14903767, 52.143037805000034 ], [ -122.148362696999925, 52.142977004000024 ], [ -122.148531203999966, 52.142334994000066 ], [ -122.147075796999928, 52.142201889000049 ], [ -122.147557803999916, 52.140011015000084 ], [ -122.147631078999922, 52.139664900000071 ], [ -122.14761347599989, 52.139367888000038 ], [ -122.146580104999927, 52.138214991000055 ], [ -122.148094181999966, 52.137883798000054 ], [ -122.148739015999979, 52.137674497000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112803541", "BldgCostT": "73818048", "sL_LossRatio": "1", "sL_AssetLoss": "5877.4", "sL_BldgLoss": "5877.4", "sL_StrLoss": "5877.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000011F70E6D36895EC0213F0BD75D124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.138989416999934, 52.142758443000069 ], [ -122.13858416099994, 52.14247055900006 ], [ -122.138719567999928, 52.14239928400012 ], [ -122.13935622299999, 52.142064300000101 ], [ -122.139939858999981, 52.141756140000012 ], [ -122.140626614, 52.141393598000057 ], [ -122.14116266299996, 52.141110422000011 ], [ -122.141794003, 52.140776892000062 ], [ -122.142317510999959, 52.141152800000043 ], [ -122.142517113999943, 52.141429782000024 ], [ -122.144261089999972, 52.142668410000041 ], [ -122.144640204999945, 52.142937997000061 ], [ -122.144815406999953, 52.142862996000098 ], [ -122.14560837499999, 52.142220298000083 ], [ -122.145723694999973, 52.141500099000083 ], [ -122.145885795999916, 52.141128295000094 ], [ -122.146187487999924, 52.140784386000107 ], [ -122.146685465999965, 52.140503341000098 ], [ -122.147557803999916, 52.140011015000084 ], [ -122.147075796999928, 52.142201889000049 ], [ -122.148531203999966, 52.142334994000066 ], [ -122.148362696999925, 52.142977004000024 ], [ -122.148261484999963, 52.143373292000099 ], [ -122.148086024999927, 52.143632498000031 ], [ -122.147732890999976, 52.143845305000049 ], [ -122.146686603999967, 52.144403192000063 ], [ -122.145966495, 52.144786086000082 ], [ -122.145820020999949, 52.144917699000132 ], [ -122.145644182999945, 52.145279197000114 ], [ -122.145483389999953, 52.145735588000065 ], [ -122.145451472, 52.145879994000047 ], [ -122.14547689299999, 52.146055990000107 ], [ -122.145679098999921, 52.14628740800007 ], [ -122.146486719, 52.146848797000146 ], [ -122.145434563999942, 52.147437980000099 ], [ -122.145023566999896, 52.147139755000062 ], [ -122.142935331999951, 52.145624400000017 ], [ -122.14253809399996, 52.145311096000043 ], [ -122.141967945999937, 52.144882427000056 ], [ -122.141645663999924, 52.144651472000092 ], [ -122.141278955999979, 52.144388688000078 ], [ -122.14112705399998, 52.144283892000033 ], [ -122.140672288999923, 52.143958778000083 ], [ -122.140004094999966, 52.143479215000113 ], [ -122.138989416999934, 52.142758443000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "93501250", "BldgCostT": "62800000", "sL_LossRatio": "0.99955051857401", "sL_AssetLoss": "4939.025", "sL_BldgLoss": "4936.805", "sL_StrLoss": "4936", "sL_NStrLoss": "0.805", "sL_ContLoss": "2.22", "geom_point": "0101000020E610000028C819D488895EC017D2E992D4124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.148261484999963, 52.143373292000099 ], [ -122.148362696999925, 52.142977004000024 ], [ -122.14903767, 52.143037805000034 ], [ -122.149755795999923, 52.14310249800009 ], [ -122.149552281999959, 52.143775691000066 ], [ -122.14929808899997, 52.144079804000064 ], [ -122.148876809999976, 52.144367604000095 ], [ -122.14757818599999, 52.145042007000015 ], [ -122.148027969999958, 52.145363611000022 ], [ -122.148898595999967, 52.145986088000086 ], [ -122.149734057999964, 52.146583792000101 ], [ -122.15082819, 52.147366496000117 ], [ -122.15151245399997, 52.147855975000013 ], [ -122.153106693999987, 52.148996416000081 ], [ -122.152053086999956, 52.149536191000088 ], [ -122.15149369699999, 52.149851566000066 ], [ -122.15115798, 52.150040797000067 ], [ -122.15014417799992, 52.150577404000018 ], [ -122.150128687999967, 52.150581471000045 ], [ -122.149521295999975, 52.150740811000105 ], [ -122.148888402999958, 52.14986179900005 ], [ -122.148520701999956, 52.149611502000056 ], [ -122.149015483999918, 52.14932260300003 ], [ -122.149179582999963, 52.149125102000063 ], [ -122.149186311999941, 52.148802803000109 ], [ -122.148913809999968, 52.148569199000086 ], [ -122.148494681999964, 52.148270398000072 ], [ -122.146486719, 52.146848797000146 ], [ -122.145679098999921, 52.14628740800007 ], [ -122.14547689299999, 52.146055990000107 ], [ -122.145451472, 52.145879994000047 ], [ -122.145483389999953, 52.145735588000065 ], [ -122.145644182999945, 52.145279197000114 ], [ -122.145820020999949, 52.144917699000132 ], [ -122.145966495, 52.144786086000082 ], [ -122.146686603999967, 52.144403192000063 ], [ -122.147732890999976, 52.143845305000049 ], [ -122.148086024999927, 52.143632498000031 ], [ -122.148261484999963, 52.143373292000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108428228", "BldgCostT": "68034857", "sL_LossRatio": "1", "sL_AssetLoss": "4780", "sL_BldgLoss": "4780", "sL_StrLoss": "4780", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000515DFA76D6895EC01F589601CA124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.14757818599999, 52.145042007000015 ], [ -122.148876809999976, 52.144367604000095 ], [ -122.14929808899997, 52.144079804000064 ], [ -122.149552281999959, 52.143775691000066 ], [ -122.149755795999923, 52.14310249800009 ], [ -122.151054380999966, 52.143218585000042 ], [ -122.152116873999887, 52.143357396000056 ], [ -122.152430914999954, 52.143398411000099 ], [ -122.152291609999935, 52.143795204000078 ], [ -122.152299091999978, 52.143925689000149 ], [ -122.153653703999979, 52.144963487000076 ], [ -122.154469811999903, 52.144653790000127 ], [ -122.154797319999957, 52.14459739800008 ], [ -122.156608211999981, 52.144756503000089 ], [ -122.157207190999927, 52.144662389000125 ], [ -122.15767478399998, 52.145241216000024 ], [ -122.157703261999956, 52.145581634000045 ], [ -122.157663993999932, 52.146487572000154 ], [ -122.157625417999952, 52.147336061 ], [ -122.157558518999963, 52.149826517000051 ], [ -122.15754636199992, 52.150244719000092 ], [ -122.157524471999977, 52.150871854000052 ], [ -122.157385116999961, 52.151037894000062 ], [ -122.156540564999929, 52.151468794000088 ], [ -122.154831015999918, 52.150237952000047 ], [ -122.154278161999983, 52.14983990000006 ], [ -122.153106693999987, 52.148996416000081 ], [ -122.15151245399997, 52.147855975000013 ], [ -122.15082819, 52.147366496000117 ], [ -122.149734057999964, 52.146583792000101 ], [ -122.148898595999967, 52.145986088000086 ], [ -122.148027969999958, 52.145363611000022 ], [ -122.14757818599999, 52.145042007000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023538", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "76209750", "BldgCostT": "48195000", "sL_LossRatio": "1", "sL_AssetLoss": "3215", "sL_BldgLoss": "3215", "sL_StrLoss": "3215", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E24B84FD6895EC0A85515964F124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.153653703999979, 52.144963487000076 ], [ -122.152299091999978, 52.143925689000149 ], [ -122.152291609999935, 52.143795204000078 ], [ -122.152430914999954, 52.143398411000099 ], [ -122.152116873999887, 52.143357396000056 ], [ -122.151054380999966, 52.143218585000042 ], [ -122.151663779999936, 52.140796499000011 ], [ -122.152310006, 52.140583589000094 ], [ -122.152777219999962, 52.14101689200006 ], [ -122.153210807999955, 52.141283808000047 ], [ -122.153955147999937, 52.141745789000026 ], [ -122.154090210999954, 52.141829597000026 ], [ -122.155476183999937, 52.142809994000089 ], [ -122.15584883299999, 52.143105659000121 ], [ -122.155958296999927, 52.143192507000052 ], [ -122.156537409999885, 52.143851388000016 ], [ -122.157207190999927, 52.144662389000125 ], [ -122.156608211999981, 52.144756503000089 ], [ -122.154797319999957, 52.14459739800008 ], [ -122.154469811999903, 52.144653790000127 ], [ -122.153653703999979, 52.144963487000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023539", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "98835250", "BldgCostT": "63535000", "sL_LossRatio": "1", "sL_AssetLoss": "4549.2", "sL_BldgLoss": "4549.2", "sL_StrLoss": "4549.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002059A7674D8A5EC0C1E790CCD1124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.157625417999952, 52.147336061 ], [ -122.157663993999932, 52.146487572000154 ], [ -122.157703261999956, 52.145581634000045 ], [ -122.15767478399998, 52.145241216000024 ], [ -122.157207190999927, 52.144662389000125 ], [ -122.156537409999885, 52.143851388000016 ], [ -122.157031509000021, 52.143701687000046 ], [ -122.157334385999931, 52.143559001000035 ], [ -122.159859199, 52.145370377000098 ], [ -122.161881974999972, 52.146777853000081 ], [ -122.16295758099993, 52.147047263000104 ], [ -122.163539018999984, 52.146159297000068 ], [ -122.163879504999954, 52.146237090000064 ], [ -122.164008751999944, 52.146255021000066 ], [ -122.165074180999937, 52.146402595000026 ], [ -122.167077193999944, 52.146760189000105 ], [ -122.166335204999953, 52.147840393000131 ], [ -122.165982138999979, 52.148351440000098 ], [ -122.165729797999958, 52.148718498000051 ], [ -122.165238809999963, 52.148600709000078 ], [ -122.163422094999959, 52.148174811000075 ], [ -122.163027197999909, 52.148081705000081 ], [ -122.162361945999947, 52.147896981000024 ], [ -122.160957611999947, 52.147469131000044 ], [ -122.16093879, 52.147463390000091 ], [ -122.159903156999974, 52.146743553000128 ], [ -122.15914465799996, 52.146982399000102 ], [ -122.158945823999957, 52.147075502000057 ], [ -122.158925329999988, 52.147104237000114 ], [ -122.158873860999947, 52.14717639800007 ], [ -122.158890120999956, 52.147257802000063 ], [ -122.159373308999974, 52.147991585000078 ], [ -122.159436256999953, 52.148191301000068 ], [ -122.159575956999959, 52.14889748700007 ], [ -122.159624433999937, 52.149177580000085 ], [ -122.15956909099998, 52.149355384000053 ], [ -122.159368468999972, 52.149685077000058 ], [ -122.159306543999946, 52.14978679100011 ], [ -122.159232909999901, 52.14982385800004 ], [ -122.159114311999986, 52.149838794000082 ], [ -122.158162863999962, 52.149831303000028 ], [ -122.157558518999963, 52.149826517000051 ], [ -122.157625417999952, 52.147336061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "19664539", "BldgCostT": "11465372", "sL_LossRatio": "0.994371553527287", "sL_AssetLoss": "394.425", "sL_BldgLoss": "392.205", "sL_StrLoss": "391.4", "sL_NStrLoss": "0.805", "sL_ContLoss": "2.22", "geom_point": "0101000020E6100000EE4B263C9B8C5EC016042C45B4144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.198325991, 52.162540008000093 ], [ -122.194476994999917, 52.161986507 ], [ -122.193788155999968, 52.161818877000066 ], [ -122.193665781999968, 52.161789105000061 ], [ -122.193131922999967, 52.161573906000072 ], [ -122.192998706999958, 52.161503273000086 ], [ -122.191223637999911, 52.16056198200004 ], [ -122.197040974999965, 52.160753749000058 ], [ -122.19703564699995, 52.16081443700007 ], [ -122.19818583599999, 52.160852318000117 ], [ -122.19817577699996, 52.160966947000105 ], [ -122.199221906999924, 52.161001390000109 ], [ -122.199136501999945, 52.161974866000094 ], [ -122.199580561999937, 52.16198948300012 ], [ -122.199558897999964, 52.162236454000016 ], [ -122.201598793999921, 52.16230358200005 ], [ -122.201476208999935, 52.163458648000102 ], [ -122.201424296999974, 52.16394778100009 ], [ -122.200696684999912, 52.163539548000038 ], [ -122.200414112999979, 52.163381004000023 ], [ -122.200048910999953, 52.163176089000054 ], [ -122.199739886999978, 52.163004206000011 ], [ -122.199083198999972, 52.162734702000108 ], [ -122.198591290999929, 52.162608212000073 ], [ -122.198325991, 52.162540008000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "404317443", "BldgCostT": "234225137", "sL_LossRatio": "0.989609837304991", "sL_AssetLoss": "5502.32", "sL_BldgLoss": "5445.15", "sL_StrLoss": "5424.4", "sL_NStrLoss": "20.75", "sL_ContLoss": "57.17", "geom_point": "0101000020E6100000FB506FA1C68A5EC07A2FFF3A9A124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.184921616999958, 52.157529411000013 ], [ -122.181548850999974, 52.155907443000075 ], [ -122.180115958999963, 52.155218264000027 ], [ -122.179299281999974, 52.154825456000054 ], [ -122.180399617, 52.154833106000126 ], [ -122.182397352999942, 52.154846970000108 ], [ -122.182392409, 52.155116666000076 ], [ -122.182830877999962, 52.155119704000114 ], [ -122.182823301999932, 52.155533429000066 ], [ -122.182811123999926, 52.156198479000089 ], [ -122.183688081999946, 52.156204552000133 ], [ -122.183698016999983, 52.155661420000087 ], [ -122.183702882999924, 52.15539547 ], [ -122.183264411, 52.155392434000106 ], [ -122.183289090999935, 52.154043964000124 ], [ -122.182850630999923, 52.154040927000032 ], [ -122.182855570999948, 52.153771232000103 ], [ -122.181978659999942, 52.15376515400002 ], [ -122.181983603, 52.153495460000094 ], [ -122.181545149999963, 52.153492418000013 ], [ -122.181550097999946, 52.153222724000067 ], [ -122.179796297999971, 52.15321054200011 ], [ -122.179806212999893, 52.152671154000068 ], [ -122.17892932499997, 52.152665053000078 ], [ -122.17893087, 52.152581046000108 ], [ -122.178492637999952, 52.15256653900007 ], [ -122.178475987999931, 52.153471082000124 ], [ -122.178037534999987, 52.153468028000106 ], [ -122.178033842999952, 52.153668502000095 ], [ -122.178032568999924, 52.153737721000077 ], [ -122.177910652, 52.15373687200006 ], [ -122.176754617999961, 52.153728809000029 ], [ -122.176568432999957, 52.153692413000016 ], [ -122.175759390999971, 52.153672795000034 ], [ -122.175771143999953, 52.153257283000094 ], [ -122.175790505999913, 52.1525393390001 ], [ -122.175705937999979, 52.152451185000068 ], [ -122.175640537999953, 52.151789257000118 ], [ -122.175578219, 52.151157997000091 ], [ -122.175398102999949, 52.150126479000058 ], [ -122.175360189999964, 52.149909214000132 ], [ -122.175298707, 52.149556992000086 ], [ -122.175055805999961, 52.149203092000064 ], [ -122.174742915999985, 52.148911592000054 ], [ -122.174341209999966, 52.148646805000062 ], [ -122.173863692999959, 52.148459381000073 ], [ -122.171667209999953, 52.147884390000051 ], [ -122.169204875999966, 52.147270566000053 ], [ -122.169028098999959, 52.147226504000066 ], [ -122.168899088, 52.147193018000024 ], [ -122.168084437999951, 52.146981576000059 ], [ -122.16788999299996, 52.146931114000054 ], [ -122.167559313999931, 52.146845279000047 ], [ -122.167077193999944, 52.146760189000105 ], [ -122.165074180999937, 52.146402595000026 ], [ -122.164008751999944, 52.146255021000066 ], [ -122.163879504999954, 52.146237090000064 ], [ -122.163539018999984, 52.146159297000068 ], [ -122.16295758099993, 52.147047263000104 ], [ -122.161881974999972, 52.146777853000081 ], [ -122.159859199, 52.145370377000098 ], [ -122.157334385999931, 52.143559001000035 ], [ -122.157031509000021, 52.143701687000046 ], [ -122.156537409999885, 52.143851388000016 ], [ -122.155958296999927, 52.143192507000052 ], [ -122.15584883299999, 52.143105659000121 ], [ -122.155476183999937, 52.142809994000089 ], [ -122.154090210999954, 52.141829597000026 ], [ -122.153955147999937, 52.141745789000026 ], [ -122.153210807999955, 52.141283808000047 ], [ -122.152777219999962, 52.14101689200006 ], [ -122.152310006, 52.140583589000094 ], [ -122.149449405999988, 52.137443894000114 ], [ -122.149077403999982, 52.136995001000038 ], [ -122.149016260999971, 52.136929631000058 ], [ -122.148580383999942, 52.136463415000065 ], [ -122.14815298399999, 52.136006284000047 ], [ -122.147937956999968, 52.135776299000021 ], [ -122.14724392299992, 52.135033908000068 ], [ -122.146652753999959, 52.134388080000086 ], [ -122.146514915999973, 52.134237508000083 ], [ -122.146361083999977, 52.134069432000061 ], [ -122.14536180099999, 52.132977695000086 ], [ -122.14600550699997, 52.132756834000084 ], [ -122.1467812019999, 52.132490700000076 ], [ -122.146528873999912, 52.132212707000065 ], [ -122.14606671199999, 52.13118129 ], [ -122.145541970999929, 52.129945700000114 ], [ -122.14553878, 52.129817197000115 ], [ -122.145520310999956, 52.128871588000059 ], [ -122.147031319999883, 52.128851985000075 ], [ -122.147306707999988, 52.128724314000124 ], [ -122.148028362999966, 52.128656630000101 ], [ -122.14842060499997, 52.128308724000071 ], [ -122.148667411999952, 52.128107014000165 ], [ -122.149131099999977, 52.127959156000067 ], [ -122.14946248499993, 52.127980700000109 ], [ -122.148861140999927, 52.128744796000049 ], [ -122.148922381999952, 52.129043459000115 ], [ -122.149435630999974, 52.129283008000087 ], [ -122.151177427, 52.129463082000072 ], [ -122.15156329899996, 52.129611193000116 ], [ -122.151697765999984, 52.129885811000094 ], [ -122.151570099999986, 52.131324037000049 ], [ -122.150164046999976, 52.131277127000054 ], [ -122.150107573999918, 52.131913072000053 ], [ -122.149069069999953, 52.131878412000084 ], [ -122.149067632999902, 52.131953959000057 ], [ -122.149505868999938, 52.131957120000052 ], [ -122.149500733999957, 52.132226812000027 ], [ -122.14993897399998, 52.13222997400004 ], [ -122.149933840999907, 52.132499666000058 ], [ -122.150372083999983, 52.132502824000042 ], [ -122.150351559999976, 52.133581596000063 ], [ -122.15078981399995, 52.133584752000104 ], [ -122.150779693999937, 52.134116942000034 ], [ -122.151054785999918, 52.134126120000133 ], [ -122.15165607499992, 52.134130447000047 ], [ -122.151655775999984, 52.134146167000083 ], [ -122.152472666999941, 52.134173410000102 ], [ -122.152799265999974, 52.135152690000062 ], [ -122.153089628999965, 52.135552612000041 ], [ -122.153329112999941, 52.135753450000053 ], [ -122.154214538999952, 52.136122824000068 ], [ -122.1548328639999, 52.136688178000028 ], [ -122.155805735999976, 52.137166015000062 ], [ -122.155713545999944, 52.138205509000045 ], [ -122.155962208999966, 52.138207290000125 ], [ -122.155957109999946, 52.138476983000032 ], [ -122.156395411999981, 52.138480118000039 ], [ -122.156390317999978, 52.138749812000079 ], [ -122.157266925999934, 52.13875608000005 ], [ -122.157256745999945, 52.139295465000039 ], [ -122.158133366999905, 52.139301726000078 ], [ -122.158132607999974, 52.139341973000029 ], [ -122.160422689999962, 52.139418196000122 ], [ -122.16039378499994, 52.139744495000087 ], [ -122.161003490999917, 52.139764781000054 ], [ -122.160956068999923, 52.140300210000106 ], [ -122.161360715999948, 52.140313672000019 ], [ -122.161281709999969, 52.14120575000004 ], [ -122.163253409999953, 52.14127132300009 ], [ -122.163099316999961, 52.14301199600002 ], [ -122.164638531999941, 52.143063161000107 ], [ -122.164642436999884, 52.142854491000129 ], [ -122.165080782999965, 52.142857596000056 ], [ -122.165090868999982, 52.142318208000106 ], [ -122.166405891999958, 52.142327510000115 ], [ -122.166400856999971, 52.142597203000051 ], [ -122.166839200999959, 52.14260030100008 ], [ -122.16683416699999, 52.14286999400008 ], [ -122.167272514000018, 52.142873091000062 ], [ -122.167267483000018, 52.143142784000126 ], [ -122.167705832999928, 52.143145878000055 ], [ -122.167695776999949, 52.143685265000066 ], [ -122.168134132, 52.143688358000084 ], [ -122.168124080999974, 52.144227745000109 ], [ -122.168562439999945, 52.144230836000133 ], [ -122.168552394999892, 52.144770224000069 ], [ -122.16857756899999, 52.144770401000088 ], [ -122.168634757999939, 52.144123493000045 ], [ -122.174480788000011, 52.144317427000018 ], [ -122.174469967, 52.144440028000091 ], [ -122.175161811999899, 52.144462960000055 ], [ -122.175165785999965, 52.145486545000068 ], [ -122.175151813999918, 52.145886388000058 ], [ -122.17785363299997, 52.145978400000097 ], [ -122.177843744999947, 52.145968654000036 ], [ -122.177875837999949, 52.145683527000074 ], [ -122.17854302899994, 52.145705620000058 ], [ -122.17849522799996, 52.146247713000079 ], [ -122.179038748999957, 52.146265709000076 ], [ -122.178999530999988, 52.146710536000036 ], [ -122.179526962999915, 52.146727997000085 ], [ -122.179484042999931, 52.147214851000079 ], [ -122.179880884999989, 52.147227987000086 ], [ -122.179838185999955, 52.147712376000079 ], [ -122.180083111999977, 52.147720483000079 ], [ -122.180050762999926, 52.148087467000018 ], [ -122.18032886, 52.148089400000046 ], [ -122.180323907999977, 52.148359094000057 ], [ -122.180762308999959, 52.148362141000064 ], [ -122.180757359999959, 52.148631835000046 ], [ -122.181634168999949, 52.148637921 ], [ -122.181629222999945, 52.148907616000045 ], [ -122.182067630999981, 52.14891065700003 ], [ -122.182062689999952, 52.149180352000016 ], [ -122.18250109899995, 52.149183391000051 ], [ -122.182491219999974, 52.149722780000083 ], [ -122.182929634999965, 52.149725817000082 ], [ -122.182919759999919, 52.150265207000125 ], [ -122.183358181999949, 52.150268243000056 ], [ -122.183353247999918, 52.150537937000088 ], [ -122.184230094999947, 52.150544005000036 ], [ -122.184225164999972, 52.150813699000068 ], [ -122.184663589999943, 52.150816731000106 ], [ -122.184658664999915, 52.151086426000063 ], [ -122.185097093999957, 52.151089455000047 ], [ -122.18509216899993, 52.151359150000069 ], [ -122.1855306, 52.151362178000035 ], [ -122.185525678999923, 52.151631873000049 ], [ -122.185964113999944, 52.151634898000097 ], [ -122.185959193999977, 52.151904594000101 ], [ -122.186397630999977, 52.151907619000063 ], [ -122.186387797999913, 52.15244700800006 ], [ -122.18726468399997, 52.15245305400007 ], [ -122.18725977299998, 52.152722748000052 ], [ -122.18769821799999, 52.152725769000014 ], [ -122.187688400999988, 52.15326515800006 ], [ -122.188126849999989, 52.153268176000061 ], [ -122.188121945, 52.153537871000047 ], [ -122.188560399999986, 52.153540888000123 ], [ -122.188555494999918, 52.153810582000041 ], [ -122.188993950999972, 52.153813598000077 ], [ -122.188989050999965, 52.154083293000035 ], [ -122.189427509, 52.154086307000043 ], [ -122.189422609999923, 52.154356001000089 ], [ -122.189861071999971, 52.154359013000096 ], [ -122.189833033999932, 52.155903369 ], [ -122.189819264999983, 52.156661766000084 ], [ -122.189817004999924, 52.156786265000029 ], [ -122.189451549999959, 52.156783755000056 ], [ -122.189378519999948, 52.156783253000079 ], [ -122.189377617000019, 52.156832931000054 ], [ -122.189583838999951, 52.156839738000073 ], [ -122.190043913999943, 52.156854923000026 ], [ -122.192491180999951, 52.156935665000034 ], [ -122.19217632799996, 52.16051822000005 ], [ -122.191072452999933, 52.160481807000082 ], [ -122.191033202999947, 52.160460991000086 ], [ -122.190875052999928, 52.160385158000118 ], [ -122.189056108999964, 52.159512716000101 ], [ -122.187616041999959, 52.158821969000037 ], [ -122.184921616999958, 52.157529411000013 ] ], [ [ -122.165043987999979, 52.144824971000048 ], [ -122.16494471799993, 52.144744736000121 ], [ -122.164607109999977, 52.144742344000065 ], [ -122.164612157999954, 52.144472651000108 ], [ -122.164535761999971, 52.14447211100007 ], [ -122.164488049999946, 52.145011231000097 ], [ -122.164602064999883, 52.145012039000022 ], [ -122.164597016999963, 52.145281732000029 ], [ -122.165035386999946, 52.145284836000059 ], [ -122.165043987999979, 52.144824971000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65303167", "BldgCostT": "42561667", "sL_LossRatio": "0.999340272360532", "sL_AssetLoss": "3365.025", "sL_BldgLoss": "3362.805", "sL_StrLoss": "3362", "sL_NStrLoss": "0.805", "sL_ContLoss": "2.22", "geom_point": "0101000020E61000000F9A8EE7D08A5EC0F1861CD796134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.173553691, 52.158801055 ], [ -122.173558385999939, 52.158547633000083 ], [ -122.169738020999944, 52.158420944000078 ], [ -122.16983354499996, 52.157340426000083 ], [ -122.167650921999936, 52.157267990000051 ], [ -122.167674182999974, 52.157005025000053 ], [ -122.167100869999942, 52.156985991000077 ], [ -122.166957707999984, 52.158604228000115 ], [ -122.164653022999971, 52.15852768400007 ], [ -122.164637989999932, 52.158697498000031 ], [ -122.164154264999951, 52.158344798000044 ], [ -122.163404609999958, 52.157798228000047 ], [ -122.163276097999955, 52.157549387000117 ], [ -122.163274562999959, 52.157546368000098 ], [ -122.163243177999959, 52.15748556600002 ], [ -122.163247933999955, 52.157439590000102 ], [ -122.163255513999928, 52.157366628000055 ], [ -122.163257930999947, 52.157342897000042 ], [ -122.163368901999931, 52.15626925400003 ], [ -122.163149769999947, 52.156106380000082 ], [ -122.162920286999949, 52.155935979000027 ], [ -122.162618344999942, 52.155742441000065 ], [ -122.162397771999935, 52.154931200000107 ], [ -122.162425600999939, 52.154754867000108 ], [ -122.165395030999917, 52.15485354500003 ], [ -122.165649487999985, 52.151978134000068 ], [ -122.170630474999896, 52.152143489000053 ], [ -122.170713016999969, 52.151209454000117 ], [ -122.173992688999959, 52.151318212000028 ], [ -122.17401086299999, 52.151112368000064 ], [ -122.173920305, 52.151109366000064 ], [ -122.173963073, 52.150624981000121 ], [ -122.173718131999948, 52.150616861000074 ], [ -122.173747107999972, 52.150288693000036 ], [ -122.173425527999981, 52.150306767000089 ], [ -122.173216427999975, 52.150265467000025 ], [ -122.173130266999976, 52.150196985000015 ], [ -122.171959266999949, 52.150188770000092 ], [ -122.171964269999975, 52.149919075000113 ], [ -122.171525851999917, 52.149915997 ], [ -122.171520847999929, 52.150185690000121 ], [ -122.16976717299994, 52.150173359000028 ], [ -122.169777172999929, 52.149635783000086 ], [ -122.169766599999903, 52.149633898000104 ], [ -122.168900378999965, 52.149627798000033 ], [ -122.168903131999969, 52.149479994000039 ], [ -122.168546728999956, 52.149416466000069 ], [ -122.168177682999954, 52.149352974000109 ], [ -122.167151760999957, 52.149345734000079 ], [ -122.167141695999987, 52.149885121000125 ], [ -122.166703281999943, 52.149882024000092 ], [ -122.1666982469999, 52.150151718000082 ], [ -122.165821408999946, 52.15014552000013 ], [ -122.165811327999904, 52.150684906000038 ], [ -122.162742368999972, 52.150663162000058 ], [ -122.16274742899999, 52.150393468000097 ], [ -122.162309009999944, 52.150390355000027 ], [ -122.162314070999983, 52.150120662000063 ], [ -122.161437236999959, 52.150114431000127 ], [ -122.161437735999939, 52.15008783800004 ], [ -122.160902169999943, 52.150070025000055 ], [ -122.160775584999925, 52.15149878600004 ], [ -122.15984106199997, 52.151467699000108 ], [ -122.159820702999951, 52.151697422000105 ], [ -122.159482879999942, 52.15128739000005 ], [ -122.15924629899996, 52.150573054000049 ], [ -122.159232909999901, 52.14982385800004 ], [ -122.159306543999946, 52.14978679100011 ], [ -122.159368468999972, 52.149685077000058 ], [ -122.15956909099998, 52.149355384000053 ], [ -122.159624433999937, 52.149177580000085 ], [ -122.159575956999959, 52.14889748700007 ], [ -122.159436256999953, 52.148191301000068 ], [ -122.159373308999974, 52.147991585000078 ], [ -122.158890120999956, 52.147257802000063 ], [ -122.158873860999947, 52.14717639800007 ], [ -122.158925329999988, 52.147104237000114 ], [ -122.158945823999957, 52.147075502000057 ], [ -122.15914465799996, 52.146982399000102 ], [ -122.159903156999974, 52.146743553000128 ], [ -122.16093879, 52.147463390000091 ], [ -122.160957611999947, 52.147469131000044 ], [ -122.162361945999947, 52.147896981000024 ], [ -122.163027197999909, 52.148081705000081 ], [ -122.163422094999959, 52.148174811000075 ], [ -122.165238809999963, 52.148600709000078 ], [ -122.165729797999958, 52.148718498000051 ], [ -122.165982138999979, 52.148351440000098 ], [ -122.166335204999953, 52.147840393000131 ], [ -122.167077193999944, 52.146760189000105 ], [ -122.167559313999931, 52.146845279000047 ], [ -122.16788999299996, 52.146931114000054 ], [ -122.168084437999951, 52.146981576000059 ], [ -122.168899088, 52.147193018000024 ], [ -122.169028098999959, 52.147226504000066 ], [ -122.169204875999966, 52.147270566000053 ], [ -122.171667209999953, 52.147884390000051 ], [ -122.173863692999959, 52.148459381000073 ], [ -122.174341209999966, 52.148646805000062 ], [ -122.174742915999985, 52.148911592000054 ], [ -122.175055805999961, 52.149203092000064 ], [ -122.175298707, 52.149556992000086 ], [ -122.175360189999964, 52.149909214000132 ], [ -122.175398102999949, 52.150126479000058 ], [ -122.175578219, 52.151157997000091 ], [ -122.175640537999953, 52.151789257000118 ], [ -122.175705937999979, 52.152451185000068 ], [ -122.175790505999913, 52.1525393390001 ], [ -122.175771143999953, 52.153257283000094 ], [ -122.175759390999971, 52.153672795000034 ], [ -122.176568432999957, 52.153692413000016 ], [ -122.176754617999961, 52.153728809000029 ], [ -122.176355054999988, 52.153726019000068 ], [ -122.176243881999966, 52.154985811000095 ], [ -122.175577586999964, 52.154963738000056 ], [ -122.175420670999983, 52.154958539000091 ], [ -122.174940716999942, 52.154942636 ], [ -122.17493964899991, 52.155000413000103 ], [ -122.17541547899998, 52.155016179000057 ], [ -122.175569401999937, 52.155021279000046 ], [ -122.17590219399996, 52.155032304000024 ], [ -122.175793322999979, 52.156265829000063 ], [ -122.175785504999951, 52.156689054000026 ], [ -122.175755985999928, 52.156688847000098 ], [ -122.175708398999987, 52.157227973000026 ], [ -122.175775544, 52.157228441000086 ], [ -122.17576059699995, 52.158037522000065 ], [ -122.17563701899995, 52.158036658000078 ], [ -122.17558598299999, 52.158614820000118 ], [ -122.174873252999987, 52.158591207000057 ], [ -122.17486365699996, 52.159110165000115 ], [ -122.173548136999941, 52.159100955000113 ], [ -122.173553691, 52.158801055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2680083", "BldgCostT": "1848333", "sL_LossRatio": "1", "sL_AssetLoss": "110.2", "sL_BldgLoss": "110.2", "sL_StrLoss": "110.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025919E9E4E8C5EC049E92508CF144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.191192628999971, 52.160560959000073 ], [ -122.191223637999911, 52.16056198200004 ], [ -122.192998706999958, 52.161503273000086 ], [ -122.193131922999967, 52.161573906000072 ], [ -122.193665781999968, 52.161789105000061 ], [ -122.193788155999968, 52.161818877000066 ], [ -122.193770951999937, 52.163926998000115 ], [ -122.19314654899992, 52.163955549 ], [ -122.192379504999977, 52.163940215000068 ], [ -122.192364770999959, 52.163939926000069 ], [ -122.190897746999923, 52.16391483900005 ], [ -122.191192628999971, 52.160560959000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "38513250", "BldgCostT": "23670000", "sL_LossRatio": "0.998544954038244", "sL_AssetLoss": "1525.725", "sL_BldgLoss": "1523.505", "sL_StrLoss": "1522.7", "sL_NStrLoss": "0.805", "sL_ContLoss": "2.22", "geom_point": "0101000020E610000071533D78B18B5EC0F548BD8664144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.180943348999946, 52.162389274000112 ], [ -122.180948298999937, 52.162119580000066 ], [ -122.180509762, 52.162116534000063 ], [ -122.18051471699998, 52.161846841000106 ], [ -122.179637647999968, 52.16184074500007 ], [ -122.17964260699992, 52.161571050000084 ], [ -122.179204075999934, 52.161568 ], [ -122.179209037999925, 52.161298306000063 ], [ -122.178770508999918, 52.161295254 ], [ -122.178775471999984, 52.161025561000017 ], [ -122.178336946999949, 52.161022506000023 ], [ -122.178341913999958, 52.160752814000027 ], [ -122.177464867999944, 52.160746701000093 ], [ -122.177469838999926, 52.160477007000061 ], [ -122.177031318999937, 52.160473949000064 ], [ -122.177056190999934, 52.159125481000096 ], [ -122.177494698999965, 52.159128540000033 ], [ -122.177499668999943, 52.158858846000022 ], [ -122.178815183999973, 52.158868011000067 ], [ -122.178810218999928, 52.159137705 ], [ -122.17968723499996, 52.159143807000113 ], [ -122.17969219299999, 52.158874113000103 ], [ -122.180130698999932, 52.158877162000074 ], [ -122.180140608999935, 52.158337775000099 ], [ -122.180579109999954, 52.158340822000113 ], [ -122.180598919999952, 52.157262045000039 ], [ -122.180160431000019, 52.157258999000085 ], [ -122.180165385999928, 52.156989306000078 ], [ -122.179726897999984, 52.156986257 ], [ -122.179731856, 52.156716563000067 ], [ -122.1788548899999, 52.156710462000071 ], [ -122.178889627999922, 52.154822605000071 ], [ -122.179299281999974, 52.154825456000054 ], [ -122.180115958999963, 52.155218264000027 ], [ -122.181548850999974, 52.155907443000075 ], [ -122.184921616999958, 52.157529411000013 ], [ -122.187616041999959, 52.158821969000037 ], [ -122.189056108999964, 52.159512716000101 ], [ -122.190875052999928, 52.160385158000118 ], [ -122.191033202999947, 52.160460991000086 ], [ -122.191072452999933, 52.160481807000082 ], [ -122.187120815999947, 52.160351369000082 ], [ -122.187112395, 52.160813579000028 ], [ -122.186673870999968, 52.16081055700009 ], [ -122.186668953999941, 52.161080250000076 ], [ -122.185791899999955, 52.161074200000058 ], [ -122.185786977999939, 52.161343894000048 ], [ -122.185348447999942, 52.161340866000032 ], [ -122.185343522999943, 52.161610560000092 ], [ -122.184904989999922, 52.161607531000129 ], [ -122.184900063999933, 52.161877225000104 ], [ -122.184022993, 52.161871161000093 ], [ -122.184018061999964, 52.162140855000132 ], [ -122.183579523999953, 52.162137821 ], [ -122.183574587999956, 52.162407515000069 ], [ -122.181457681999944, 52.162392844000102 ], [ -122.180943348999946, 52.162389274000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023546", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "39254750", "BldgCostT": "22760000", "sL_LossRatio": "0.992633354533639", "sL_AssetLoss": "904.075", "sL_BldgLoss": "897.415", "sL_StrLoss": "895", "sL_NStrLoss": "2.415", "sL_ContLoss": "6.66", "geom_point": "0101000020E6100000E1807E5B478A5EC00F6513262D144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.157303072999952, 52.1600649330001 ], [ -122.15730816599995, 52.159795240000172 ], [ -122.156431144999928, 52.159788971000076 ], [ -122.156446440999957, 52.158979895000073 ], [ -122.157761950999927, 52.158989295000019 ], [ -122.157777223999929, 52.158180219 ], [ -122.158818030999939, 52.158187645000083 ], [ -122.159087070999945, 52.155152883000035 ], [ -122.159870781999928, 52.155178956000022 ], [ -122.159915765999941, 52.154671401000087 ], [ -122.162425600999939, 52.154754867000108 ], [ -122.162397771999935, 52.154931200000107 ], [ -122.162618344999942, 52.155742441000065 ], [ -122.162920286999949, 52.155935979000027 ], [ -122.163149769999947, 52.156106380000082 ], [ -122.163368901999931, 52.15626925400003 ], [ -122.163257930999947, 52.157342897000042 ], [ -122.163255513999928, 52.157366628000055 ], [ -122.163247933999955, 52.157439590000102 ], [ -122.163243177999959, 52.15748556600002 ], [ -122.163274562999959, 52.157546368000098 ], [ -122.163276097999955, 52.157549387000117 ], [ -122.163404609999958, 52.157798228000047 ], [ -122.164154264999951, 52.158344798000044 ], [ -122.164637989999932, 52.158697498000031 ], [ -122.164617425999921, 52.158929783000126 ], [ -122.161273660999981, 52.158818647000011 ], [ -122.16124970499996, 52.160093061000126 ], [ -122.157303072999952, 52.1600649330001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023547", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "83462661", "BldgCostT": "50945743", "sL_LossRatio": "0.994722955145119", "sL_AssetLoss": "2156.51", "sL_BldgLoss": "2145.13", "sL_StrLoss": "2141", "sL_NStrLoss": "4.13", "sL_ContLoss": "11.38", "geom_point": "0101000020E61000007E5AFBF1CD895EC00C251FFDA7134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.153382035999982, 52.158688212000058 ], [ -122.15338715299994, 52.158418519000101 ], [ -122.150756168999933, 52.158399607000028 ], [ -122.150758606999887, 52.158271476000095 ], [ -122.150637229, 52.158272467000117 ], [ -122.150516026999966, 52.158128149000099 ], [ -122.149007323999953, 52.158117274000126 ], [ -122.149017611999938, 52.157577891000116 ], [ -122.14857912399999, 52.15757472600005 ], [ -122.148589916999953, 52.157008995000105 ], [ -122.148926811999942, 52.156258806000018 ], [ -122.148982405999973, 52.155765682000045 ], [ -122.148921885000021, 52.155176203000067 ], [ -122.148621993999953, 52.154591309000118 ], [ -122.14833504799995, 52.154257630000075 ], [ -122.148073198999981, 52.153953208000139 ], [ -122.147057133999979, 52.153210772000115 ], [ -122.14655192399999, 52.152841597000091 ], [ -122.145647891999943, 52.151994902000084 ], [ -122.145051711999969, 52.151247405000092 ], [ -122.14424453399999, 52.149799836000049 ], [ -122.144065586999915, 52.149478892000047 ], [ -122.143778641, 52.149040069000087 ], [ -122.145164072999961, 52.149052447000045 ], [ -122.145878326999977, 52.148827162000032 ], [ -122.14564319099992, 52.149954691000048 ], [ -122.145717002999945, 52.150245479000041 ], [ -122.14602130599999, 52.150730914000121 ], [ -122.146858207999955, 52.151738782000059 ], [ -122.148335904999911, 52.152762801000094 ], [ -122.149109619999976, 52.153295201000041 ], [ -122.150056979999988, 52.15426548900011 ], [ -122.150551504999953, 52.155019515000049 ], [ -122.150583306, 52.155289085000064 ], [ -122.150556406999925, 52.156070592000063 ], [ -122.15037645599989, 52.157184275000091 ], [ -122.150364793, 52.157256361000066 ], [ -122.150321816999949, 52.157522510000078 ], [ -122.150343114999913, 52.157613005000059 ], [ -122.150746670999951, 52.157608493000019 ], [ -122.151296003999988, 52.157483103000082 ], [ -122.15161521399996, 52.157273706000097 ], [ -122.151847089999961, 52.15690679700004 ], [ -122.151967515999914, 52.156377289000034 ], [ -122.151998188999954, 52.155404600000047 ], [ -122.151941083999944, 52.154594196000041 ], [ -122.151787319999983, 52.154279209000016 ], [ -122.151509585, 52.153845418000117 ], [ -122.150399409999949, 52.152111193000067 ], [ -122.149521295999975, 52.150740811000105 ], [ -122.150128687999967, 52.150581471000045 ], [ -122.15014417799992, 52.150577404000018 ], [ -122.15115798, 52.150040797000067 ], [ -122.15149369699999, 52.149851566000066 ], [ -122.152053086999956, 52.149536191000088 ], [ -122.153106693999987, 52.148996416000081 ], [ -122.154278161999983, 52.14983990000006 ], [ -122.154831015999918, 52.150237952000047 ], [ -122.156540564999929, 52.151468794000088 ], [ -122.157385116999961, 52.151037894000062 ], [ -122.157524471999977, 52.150871854000052 ], [ -122.15754636199992, 52.150244719000092 ], [ -122.157558518999963, 52.149826517000051 ], [ -122.158162863999962, 52.149831303000028 ], [ -122.159114311999986, 52.149838794000082 ], [ -122.159232909999901, 52.14982385800004 ], [ -122.15924629899996, 52.150573054000049 ], [ -122.159482879999942, 52.15128739000005 ], [ -122.159820702999951, 52.151697422000105 ], [ -122.159813561999954, 52.151778008000079 ], [ -122.158337462999953, 52.151728890000093 ], [ -122.158332721999983, 52.151980422000101 ], [ -122.160064039999966, 52.151992763000045 ], [ -122.160590822999922, 52.152632115000124 ], [ -122.160945190999968, 52.152964057000055 ], [ -122.160943049999972, 52.153077934000073 ], [ -122.15918926699996, 52.153065446000078 ], [ -122.159179104999978, 52.15360483100006 ], [ -122.158740653999971, 52.153601706000039 ], [ -122.158730485, 52.154141090000095 ], [ -122.158292027999948, 52.1541379620001 ], [ -122.158286941999947, 52.15440765400006 ], [ -122.157848482999981, 52.154404525000075 ], [ -122.15784339399994, 52.154674217000029 ], [ -122.157404931999977, 52.154671086000107 ], [ -122.157394749, 52.155210471 ], [ -122.156517815999962, 52.155204203000061 ], [ -122.156507619999942, 52.155743588000121 ], [ -122.156069148, 52.155740452000039 ], [ -122.156064047999962, 52.156010144000099 ], [ -122.155625573999913, 52.15600700500007 ], [ -122.155574537999925, 52.158703928000051 ], [ -122.153382035999982, 52.158688212000058 ] ], [ [ -122.154315261999926, 52.155727889000048 ], [ -122.15433059599998, 52.154918813000037 ], [ -122.153892131999939, 52.15491566900009 ], [ -122.153917697999972, 52.153567208000034 ], [ -122.15435614799999, 52.153570352000031 ], [ -122.15437658899998, 52.15249158299999 ], [ -122.153938149999959, 52.152488439000074 ], [ -122.153943261999956, 52.152218747000092 ], [ -122.15262795299999, 52.152209305000071 ], [ -122.152633072999947, 52.151939612000028 ], [ -122.151756205999973, 52.151933309000079 ], [ -122.151747358999941, 52.152398777000037 ], [ -122.151871227999919, 52.152566267000068 ], [ -122.152014716999986, 52.153014084000077 ], [ -122.152174144999947, 52.153015231000047 ], [ -122.152166095000013, 52.15343903900002 ], [ -122.152288702999911, 52.153555511000079 ], [ -122.152602347999945, 52.153557766000105 ], [ -122.152592258999931, 52.154089157000094 ], [ -122.152592817999988, 52.154097155000073 ], [ -122.153030562999945, 52.154100300000039 ], [ -122.153010085999966, 52.155179067000056 ], [ -122.153448552999919, 52.15518221500011 ], [ -122.153438319999978, 52.155721599000081 ], [ -122.154315261999926, 52.155727889000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "169155241", "BldgCostT": "107438543", "sL_LossRatio": "0.99720285522109", "sL_AssetLoss": "3374.87", "sL_BldgLoss": "3365.43", "sL_StrLoss": "3362", "sL_NStrLoss": "3.43", "sL_ContLoss": "9.44", "geom_point": "0101000020E6100000DE7A6562E3895EC05566834C32154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.157659527999925, 52.17150256700009 ], [ -122.157649126, 52.169598415000067 ], [ -122.157816638999947, 52.167530737000078 ], [ -122.156819858999967, 52.1673342220001 ], [ -122.156511162999919, 52.167420243000095 ], [ -122.147075385999969, 52.167385109000087 ], [ -122.147102633999921, 52.165898521000038 ], [ -122.147119480999933, 52.16589872800008 ], [ -122.147105783999976, 52.165301605000103 ], [ -122.146956141999951, 52.164501497000089 ], [ -122.146908197999963, 52.164335989000072 ], [ -122.14658740299997, 52.163229700000095 ], [ -122.14656679499997, 52.162873675000078 ], [ -122.146900597999888, 52.162473688000063 ], [ -122.147132124999985, 52.161849 ], [ -122.147184795999934, 52.161388206000019 ], [ -122.14713142, 52.160043502000107 ], [ -122.147270502999945, 52.159386080000075 ], [ -122.14741194599999, 52.159106369000014 ], [ -122.149056136999889, 52.159161227000048 ], [ -122.14902081799994, 52.159558564000079 ], [ -122.149058664999984, 52.159559826000127 ], [ -122.149016161999967, 52.160037984000056 ], [ -122.149089396999941, 52.160040427000119 ], [ -122.148919034999935, 52.161956947000178 ], [ -122.148918866999949, 52.161958826000067 ], [ -122.149095269999947, 52.161964710000071 ], [ -122.150947664999975, 52.162026480000094 ], [ -122.150916256999977, 52.162379988000069 ], [ -122.150629343000034, 52.165608907000099 ], [ -122.14985421199999, 52.165583063000021 ], [ -122.149843015999949, 52.16570902500014 ], [ -122.149266916000016, 52.165689814000118 ], [ -122.149252298999954, 52.16585424000008 ], [ -122.148838086999916, 52.165840424000102 ], [ -122.148815693999936, 52.166092286000058 ], [ -122.148802972999974, 52.166235378000088 ], [ -122.149233334, 52.166249731000072 ], [ -122.149220663999955, 52.16639225100009 ], [ -122.149888394999934, 52.166414517000057 ], [ -122.152591189999953, 52.166504608000103 ], [ -122.152628453999981, 52.166085045000017 ], [ -122.153127117999986, 52.166101659000056 ], [ -122.153419528999976, 52.162808759000022 ], [ -122.153928087999958, 52.162825701000038 ], [ -122.155724494999944, 52.162885529000079 ], [ -122.156817850999971, 52.162921928000038 ], [ -122.159268009999934, 52.163003460000063 ], [ -122.159238518999956, 52.163336078000086 ], [ -122.159637519999976, 52.163349350000097 ], [ -122.15955302199994, 52.164302478000081 ], [ -122.159406985999922, 52.165949653000091 ], [ -122.159823433, 52.165963504000089 ], [ -122.159837664999912, 52.165207853 ], [ -122.160276231999944, 52.165210975000022 ], [ -122.160286147999926, 52.164684044000062 ], [ -122.160291460999986, 52.164401898000044 ], [ -122.161607132999933, 52.164411256000058 ], [ -122.161602062999975, 52.164680948000104 ], [ -122.162040622999939, 52.164684064000028 ], [ -122.162025424999939, 52.165493141000077 ], [ -122.161734154999948, 52.165491072000066 ], [ -122.16158685799999, 52.165490025000125 ], [ -122.16157165099996, 52.166299101000085 ], [ -122.1618096699999, 52.166300794000051 ], [ -122.162010226999968, 52.166302218000055 ], [ -122.162003769999984, 52.166645903000131 ], [ -122.161996175999931, 52.167050057000033 ], [ -122.161995026999989, 52.167111295000076 ], [ -122.161728580999963, 52.167109402000094 ], [ -122.159817792999931, 52.167095808000099 ], [ -122.159804357999946, 52.167247338000038 ], [ -122.159733726999917, 52.168044030000019 ], [ -122.159800547999964, 52.16804625200006 ], [ -122.159617692999987, 52.170108648000081 ], [ -122.162984577999964, 52.170220570000019 ], [ -122.162929993999938, 52.170836729000037 ], [ -122.162869212999965, 52.171522805000052 ], [ -122.162288456999988, 52.171521109000082 ], [ -122.161880386999883, 52.171507828000109 ], [ -122.161679630999942, 52.171496569000112 ], [ -122.159957779999914, 52.171472918000056 ], [ -122.157659527999925, 52.17150256700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023549", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "97387750", "BldgCostT": "65485000", "sL_LossRatio": "1", "sL_AssetLoss": "5312", "sL_BldgLoss": "5312", "sL_StrLoss": "5312", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000099C114A84895EC0BF0B9DCF67134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.145434563999942, 52.147437980000099 ], [ -122.146486719, 52.146848797000146 ], [ -122.148494681999964, 52.148270398000072 ], [ -122.148913809999968, 52.148569199000086 ], [ -122.149186311999941, 52.148802803000109 ], [ -122.149179582999963, 52.149125102000063 ], [ -122.149015483999918, 52.14932260300003 ], [ -122.148520701999956, 52.149611502000056 ], [ -122.148888402999958, 52.14986179900005 ], [ -122.149521295999975, 52.150740811000105 ], [ -122.150399409999949, 52.152111193000067 ], [ -122.151509585, 52.153845418000117 ], [ -122.151787319999983, 52.154279209000016 ], [ -122.151941083999944, 52.154594196000041 ], [ -122.151998188999954, 52.155404600000047 ], [ -122.151967515999914, 52.156377289000034 ], [ -122.151847089999961, 52.15690679700004 ], [ -122.15161521399996, 52.157273706000097 ], [ -122.151296003999988, 52.157483103000082 ], [ -122.150746670999951, 52.157608493000019 ], [ -122.150343114999913, 52.157613005000059 ], [ -122.150321816999949, 52.157522510000078 ], [ -122.150364793, 52.157256361000066 ], [ -122.15037645599989, 52.157184275000091 ], [ -122.150556406999925, 52.156070592000063 ], [ -122.150583306, 52.155289085000064 ], [ -122.150551504999953, 52.155019515000049 ], [ -122.150056979999988, 52.15426548900011 ], [ -122.149109619999976, 52.153295201000041 ], [ -122.148335904999911, 52.152762801000094 ], [ -122.146858207999955, 52.151738782000059 ], [ -122.14602130599999, 52.150730914000121 ], [ -122.145717002999945, 52.150245479000041 ], [ -122.14564319099992, 52.149954691000048 ], [ -122.145878326999977, 52.148827162000032 ], [ -122.145822544999959, 52.148631263000091 ], [ -122.145507529999946, 52.148216477000098 ], [ -122.145480300999935, 52.148077304000047 ], [ -122.145645204999965, 52.147838488000048 ], [ -122.145822786999986, 52.147720410000048 ], [ -122.145434563999942, 52.147437980000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "104011561", "BldgCostT": "66123190", "sL_LossRatio": "0.998849780091031", "sL_AssetLoss": "3364.574", "sL_BldgLoss": "3360.704", "sL_StrLoss": "3359.3", "sL_NStrLoss": "1.404", "sL_ContLoss": "3.87", "geom_point": "0101000020E610000096B36FD5D2885EC0D33539008B124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.141293929999918, 52.148732972000111 ], [ -122.141296086999915, 52.148620870000059 ], [ -122.140857688, 52.148617677000082 ], [ -122.140862878999883, 52.14834798600004 ], [ -122.140424480999968, 52.148344791000071 ], [ -122.140434867999915, 52.147805408000053 ], [ -122.138681299999959, 52.14779261500005 ], [ -122.138691166999962, 52.147281302000039 ], [ -122.138696912999976, 52.146983541000047 ], [ -122.13913529699991, 52.146986741000035 ], [ -122.139145697999965, 52.14644735800006 ], [ -122.138268941999925, 52.146440956000113 ], [ -122.138258528999955, 52.146980339000052 ], [ -122.137266785999927, 52.146973089000085 ], [ -122.136943378999973, 52.146970723000017 ], [ -122.13694516599999, 52.146878314000055 ], [ -122.136959021999942, 52.146161648000046 ], [ -122.138274147999965, 52.146171265000085 ], [ -122.138287926999965, 52.145457483000023 ], [ -122.136705480999922, 52.145404520000092 ], [ -122.13669265799993, 52.145548372000043 ], [ -122.136532551999935, 52.145543011000029 ], [ -122.136520647999973, 52.146158440000058 ], [ -122.136082271999925, 52.14615522900008 ], [ -122.136075106999954, 52.146525397000062 ], [ -122.136066612999954, 52.146964304000036 ], [ -122.134751464999965, 52.146954664000077 ], [ -122.134756690999922, 52.14668497100007 ], [ -122.134318310999944, 52.14668175500006 ], [ -122.13430785099996, 52.147221137000045 ], [ -122.132992695999945, 52.147211477000113 ], [ -122.133003172, 52.146672094000081 ], [ -122.132564791000021, 52.146668871000074 ], [ -122.132575899999892, 52.146097272000119 ], [ -122.132580221999902, 52.146097395000076 ], [ -122.134539054999948, 52.145778864000079 ], [ -122.134540181999938, 52.145726427000113 ], [ -122.134541332999959, 52.145674013000139 ], [ -122.134543648999951, 52.145569153000061 ], [ -122.134544777, 52.145516715 ], [ -122.134545924999969, 52.145464303000082 ], [ -122.134547074999944, 52.145411888000041 ], [ -122.134548240999919, 52.14535944100006 ], [ -122.134549351999937, 52.145307039000052 ], [ -122.134550481999952, 52.145254602000058 ], [ -122.134551667, 52.145202177000051 ], [ -122.134553947, 52.145097328000112 ], [ -122.134555074999952, 52.145044891000104 ], [ -122.134556223999965, 52.144992478000106 ], [ -122.134558538999926, 52.144887616000048 ], [ -122.134559668999955, 52.144835181000097 ], [ -122.13456081699999, 52.14478276800012 ], [ -122.134561982999969, 52.144730318000072 ], [ -122.134563075999921, 52.144677894000033 ], [ -122.134565352999957, 52.144573045000065 ], [ -122.134566537999959, 52.144520619000041 ], [ -122.13456689899999, 52.144503594000085 ], [ -122.134583395999968, 52.144187092000031 ], [ -122.133148396999985, 52.144170394000106 ], [ -122.132925199999988, 52.144207892000054 ], [ -122.131679666999986, 52.143201315000091 ], [ -122.131124807, 52.142979803000024 ], [ -122.130628501999951, 52.142135781000086 ], [ -122.130525494000011, 52.141746104000099 ], [ -122.130565506999957, 52.14122264700007 ], [ -122.130621690999959, 52.140488095000087 ], [ -122.132979478999914, 52.140477309000048 ], [ -122.13402992099995, 52.140483798000119 ], [ -122.134758943999941, 52.140460589000043 ], [ -122.13541540099996, 52.14039630200007 ], [ -122.135853672999957, 52.140347195000047 ], [ -122.135871794999971, 52.14045559400008 ], [ -122.136024397999975, 52.140651205999987 ], [ -122.136541002999977, 52.141054725000053 ], [ -122.13858416099994, 52.14247055900006 ], [ -122.138989416999934, 52.142758443000069 ], [ -122.140004094999966, 52.143479215000113 ], [ -122.140672288999923, 52.143958778000083 ], [ -122.14112705399998, 52.144283892000033 ], [ -122.141278955999979, 52.144388688000078 ], [ -122.141645663999924, 52.144651472000092 ], [ -122.141967945999937, 52.144882427000056 ], [ -122.14253809399996, 52.145311096000043 ], [ -122.142935331999951, 52.145624400000017 ], [ -122.145023566999896, 52.147139755000062 ], [ -122.145434563999942, 52.147437980000099 ], [ -122.145822786999986, 52.147720410000048 ], [ -122.145645204999965, 52.147838488000048 ], [ -122.145480300999935, 52.148077304000047 ], [ -122.145507529999946, 52.148216477000098 ], [ -122.145822544999959, 52.148631263000091 ], [ -122.145878326999977, 52.148827162000032 ], [ -122.145164072999961, 52.149052447000045 ], [ -122.143778641, 52.149040069000087 ], [ -122.144065586999915, 52.149478892000047 ], [ -122.14424453399999, 52.149799836000049 ], [ -122.143583270999983, 52.149807733000031 ], [ -122.141026634999946, 52.149838265000092 ], [ -122.141125562999918, 52.148727342000072 ], [ -122.141293929999918, 52.148732972000111 ] ], [ [ -122.134779962999957, 52.145484327000069 ], [ -122.134772372999933, 52.14587589800005 ], [ -122.135210746999988, 52.145879113000056 ], [ -122.135218110999915, 52.145499002000044 ], [ -122.134779962999957, 52.145484327000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5928084", "BldgCostT": "4088334", "sL_LossRatio": "1", "sL_AssetLoss": "329", "sL_BldgLoss": "329", "sL_StrLoss": "329", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D6C675DF73835EC02D7215ACED154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.051805738000013, 52.17358477500003 ], [ -122.051814123999918, 52.173492796000097 ], [ -122.050537499999947, 52.173449142000095 ], [ -122.050587643999933, 52.172899287000092 ], [ -122.050004118999979, 52.172879328000079 ], [ -122.050330808999931, 52.169297204000017 ], [ -122.05089469, 52.169316490000043 ], [ -122.050948518, 52.168726118000109 ], [ -122.056797329999952, 52.168926003000081 ], [ -122.05669351899995, 52.170066237000057 ], [ -122.056713116999958, 52.170066907000056 ], [ -122.056704740999919, 52.170158887000106 ], [ -122.057981275999936, 52.170202472000028 ], [ -122.057655210999911, 52.173784616000056 ], [ -122.051805738000013, 52.17358477500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3794167", "BldgCostT": "2616667", "sL_LossRatio": "1", "sL_AssetLoss": "221.5", "sL_BldgLoss": "221.5", "sL_StrLoss": "221.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D9C642F44845EC045C4E64685154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.067138726999985, 52.17233336800011 ], [ -122.067150009999963, 52.171793998000034 ], [ -122.066711391999917, 52.171790528000038 ], [ -122.066715373999926, 52.171600204000065 ], [ -122.066739607999949, 52.170442104000067 ], [ -122.065862397999965, 52.170435160000089 ], [ -122.065890639999935, 52.169086734000111 ], [ -122.066329230999955, 52.169090207000117 ], [ -122.066346167999924, 52.168281152000091 ], [ -122.065030414999981, 52.16827073100005 ], [ -122.065036067999955, 52.168001045000061 ], [ -122.063720324999963, 52.167990610000096 ], [ -122.06372598599998, 52.167720925000076 ], [ -122.062848828999932, 52.167713959000089 ], [ -122.062865827999957, 52.166904905000052 ], [ -122.063304397999957, 52.16690838800011 ], [ -122.063310061999971, 52.166638702000071 ], [ -122.064187196999981, 52.166645665000097 ], [ -122.064198512999937, 52.166106295000056 ], [ -122.064637074999908, 52.166109773000102 ], [ -122.064642728999956, 52.165840088000053 ], [ -122.065081290999913, 52.165843564000099 ], [ -122.06508694199999, 52.165573879000057 ], [ -122.065964058999981, 52.165580827000042 ], [ -122.065975350999935, 52.165041457000015 ], [ -122.06685245499996, 52.16504839900005 ], [ -122.066858096999979, 52.164778714000121 ], [ -122.067786381999923, 52.164786053000071 ], [ -122.068173748999953, 52.164789113000019 ], [ -122.068156847999944, 52.165598170000067 ], [ -122.067782548999915, 52.165595213000081 ], [ -122.067718289999945, 52.165594705000089 ], [ -122.067695742999945, 52.166673446000097 ], [ -122.067777407999955, 52.16667409100009 ], [ -122.068134310999966, 52.166676911000067 ], [ -122.068111773999973, 52.167755653000029 ], [ -122.06855035199996, 52.16775911600007 ], [ -122.06854472199997, 52.168028801000055 ], [ -122.068983302999939, 52.168032265000107 ], [ -122.068966414999963, 52.168841321000031 ], [ -122.069405004999908, 52.168844781000125 ], [ -122.069388123999914, 52.169653837000091 ], [ -122.068072330999925, 52.169643450000066 ], [ -122.068066696999935, 52.169913135000051 ], [ -122.06776205700001, 52.169910728000048 ], [ -122.06762809599995, 52.169909669000084 ], [ -122.067622457999903, 52.170179354000069 ], [ -122.06776078199999, 52.170180447000099 ], [ -122.068061059999948, 52.170182820000051 ], [ -122.068055424999926, 52.170452505000121 ], [ -122.068494031999961, 52.170455969000088 ], [ -122.068454599999924, 52.172343765000051 ], [ -122.067750081, 52.172338199000087 ], [ -122.067138726999985, 52.17233336800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "219", "sL_BldgLoss": "219", "sL_StrLoss": "219", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007ABB9F5BD845EC01821C0125D164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.075223789999924, 52.172957151000062 ], [ -122.077181326999934, 52.173023664000041 ], [ -122.07703115899993, 52.174681467000021 ], [ -122.076856828999922, 52.176605855000069 ], [ -122.074399940999982, 52.17652236900004 ], [ -122.073174480999967, 52.176480707000024 ], [ -122.071006887999928, 52.176406985000071 ], [ -122.071118640999885, 52.175175223000068 ], [ -122.07133186899992, 52.172824811000062 ], [ -122.075223789999924, 52.172957151000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3272167", "BldgCostT": "2256667", "sL_LossRatio": "1", "sL_AssetLoss": "145.2", "sL_BldgLoss": "145.2", "sL_StrLoss": "145.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D04EBCB92E885EC030785E4BC4114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.1289068299999, 52.144307874000077 ], [ -122.128933450999952, 52.144009840000109 ], [ -122.128713744999985, 52.144002470000103 ], [ -122.128744141999945, 52.143662173000088 ], [ -122.128317521999961, 52.143647861000055 ], [ -122.128305553999937, 52.143647459000064 ], [ -122.1283067299999, 52.143634289000069 ], [ -122.128400588999966, 52.142583609000035 ], [ -122.127195525999966, 52.142543173000057 ], [ -122.126931878999983, 52.142534325000057 ], [ -122.126947032999979, 52.142364762000057 ], [ -122.126975977999933, 52.142040853000054 ], [ -122.126823109999961, 52.142035722000067 ], [ -122.126901399999937, 52.141159635000079 ], [ -122.126856374999988, 52.141158124000093 ], [ -122.126999199999972, 52.139559782000042 ], [ -122.126174764, 52.13953210800004 ], [ -122.126420239999931, 52.136785328000052 ], [ -122.125984751999979, 52.136770708000064 ], [ -122.126011444999975, 52.136472037000082 ], [ -122.125092640999952, 52.136441185000066 ], [ -122.12512331399995, 52.136098050000058 ], [ -122.124948559999893, 52.136092181000052 ], [ -122.124991329999958, 52.135613732000103 ], [ -122.124951094, 52.135612381000044 ], [ -122.124977535999946, 52.135316603000078 ], [ -122.127889327999981, 52.135255049000072 ], [ -122.127900023, 52.135261587000052 ], [ -122.129079212999955, 52.135375864000132 ], [ -122.129185441999951, 52.135398490000107 ], [ -122.129564399999978, 52.135769380000092 ], [ -122.129124525999913, 52.142563222000064 ], [ -122.129139918999911, 52.142563863000092 ], [ -122.129506647999975, 52.14363831000005 ], [ -122.129760860999951, 52.144336519000056 ], [ -122.1289068299999, 52.144307874000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "74.5", "sL_BldgLoss": "74.5", "sL_StrLoss": "74.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D3C9296C8C865EC04573F08E04104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.102468792999971, 52.126087795000082 ], [ -122.102495222999892, 52.125793779000098 ], [ -122.101148264999892, 52.125748260000073 ], [ -122.101186030999941, 52.125328283000073 ], [ -122.100995889999936, 52.125321856 ], [ -122.101033442999892, 52.124904252000114 ], [ -122.100995119999965, 52.124902957000103 ], [ -122.101023757999911, 52.12458449700005 ], [ -122.09837421499995, 52.124564267000096 ], [ -122.09836332899999, 52.125103647000039 ], [ -122.097048835999942, 52.125093588000084 ], [ -122.097054286999963, 52.124823899000042 ], [ -122.092234519999948, 52.124786895000042 ], [ -122.092238863999953, 52.124573055000042 ], [ -122.101022776, 52.124478288000041 ], [ -122.106479911999941, 52.124419035000066 ], [ -122.106413507999946, 52.125174335000054 ], [ -122.106321769999965, 52.126217915000012 ], [ -122.102468792999971, 52.126087795000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73", "sL_BldgLoss": "73", "sL_StrLoss": "73", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000883B287292875EC0D466184E04154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115562139999952, 52.163418254000128 ], [ -122.121410531999928, 52.163614869000057 ], [ -122.121303045999952, 52.164815311000055 ], [ -122.11542655699995, 52.164930202000036 ], [ -122.115562139999952, 52.163418254000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "78457083", "BldgCostT": "54108333", "sL_LossRatio": "1", "sL_AssetLoss": "4406.2", "sL_BldgLoss": "4406.2", "sL_StrLoss": "4406.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000927CA9C8B6845EC0AAA0585D3D134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.058205942999933, 52.164389260000114 ], [ -122.058531891999976, 52.160807087000109 ], [ -122.060799371999963, 52.160884479000117 ], [ -122.060803575999969, 52.160684710000041 ], [ -122.06036506699995, 52.160681218000114 ], [ -122.060382105999977, 52.159872163000017 ], [ -122.060820606999954, 52.159875655000064 ], [ -122.060826283999944, 52.159605970000037 ], [ -122.061481037999982, 52.159611181000059 ], [ -122.061737406999953, 52.156791057000092 ], [ -122.062806872999914, 52.156827539000055 ], [ -122.062812331999979, 52.156767471000052 ], [ -122.062311246999968, 52.156750379000144 ], [ -122.062453335999976, 52.155186977000028 ], [ -122.058330811999937, 52.155046275000089 ], [ -122.05846849199996, 52.153532877 ], [ -122.056900968999926, 52.153479340000061 ], [ -122.056910836, 52.153370927000047 ], [ -122.056134022999942, 52.153364713000023 ], [ -122.056135378999954, 52.153300562000084 ], [ -122.054040474999951, 52.153228964000078 ], [ -122.054056975999941, 52.153047786000087 ], [ -122.051241185999942, 52.152951490000127 ], [ -122.051567622999954, 52.149369303000114 ], [ -122.052639813999988, 52.149405979000079 ], [ -122.052733635, 52.148376029000119 ], [ -122.058579711999982, 52.148575827000066 ], [ -122.058469548999966, 52.149786960000064 ], [ -122.06021294, 52.149846485000111 ], [ -122.060203589999915, 52.149949332000091 ], [ -122.062178261999946, 52.150016722000025 ], [ -122.062344128999882, 52.148191458000021 ], [ -122.065277064999947, 52.148291488000076 ], [ -122.065598606999913, 52.144750030000139 ], [ -122.066668476999965, 52.144786500000059 ], [ -122.066889267999954, 52.142353719000063 ], [ -122.06552129799999, 52.142307086000102 ], [ -122.065570076, 52.141769783000044 ], [ -122.068903457999923, 52.141813318000075 ], [ -122.068901519999926, 52.141785556000038 ], [ -122.068696637999935, 52.138821970000052 ], [ -122.07169131499991, 52.138923963000067 ], [ -122.071471553999928, 52.14134857200002 ], [ -122.072170081999957, 52.14135406900008 ], [ -122.072160914999969, 52.141795143000081 ], [ -122.072801277999972, 52.141816938000112 ], [ -122.072476649999942, 52.145399207000146 ], [ -122.07140675899997, 52.145362791000068 ], [ -122.071382268999955, 52.14563294400007 ], [ -122.071465828999976, 52.145635790000085 ], [ -122.071468395999915, 52.145607472000059 ], [ -122.073441900999953, 52.145674636000109 ], [ -122.073479829999897, 52.145256019000051 ], [ -122.073865393999938, 52.14526913800006 ], [ -122.073918347999964, 52.144684630000036 ], [ -122.076483301999957, 52.144771863000052 ], [ -122.076497505999924, 52.144085342000025 ], [ -122.07781254799994, 52.144095632000059 ], [ -122.077823689999917, 52.143556257000057 ], [ -122.079138717999982, 52.143566533000069 ], [ -122.079133156999958, 52.143836220000018 ], [ -122.080009846999985, 52.143843062000037 ], [ -122.079993172999949, 52.1446521230001 ], [ -122.07955481899991, 52.144648703000051 ], [ -122.079550131999952, 52.144876090000139 ], [ -122.079764024999974, 52.144883357000012 ], [ -122.079726528999984, 52.145297855000081 ], [ -122.082170309999952, 52.145380845000069 ], [ -122.082190486999963, 52.144399512000085 ], [ -122.082979262999956, 52.144405648 ], [ -122.083246046999975, 52.141453747000057 ], [ -122.086580516999931, 52.141566879000059 ], [ -122.086652240999953, 52.140772527000095 ], [ -122.092497449999925, 52.140970611000085 ], [ -122.092424738999981, 52.141777098000063 ], [ -122.094057350999933, 52.141832371000142 ], [ -122.093734478999949, 52.145414699000057 ], [ -122.093148480999957, 52.14539486300005 ], [ -122.093088055999914, 52.146065123000021 ], [ -122.093341281, 52.146073695000034 ], [ -122.093222575999903, 52.147390425000012 ], [ -122.096318934999928, 52.147495199000019 ], [ -122.097634315999954, 52.147539683000097 ], [ -122.097311696999896, 52.151122005000055 ], [ -122.095974441999928, 52.151076780000082 ], [ -122.095968039999946, 52.151147837000146 ], [ -122.093450527999977, 52.151062656000143 ], [ -122.093421044999943, 52.151389697000099 ], [ -122.089459514999987, 52.151255545000026 ], [ -122.089344738999941, 52.152527292000038 ], [ -122.08349798799992, 52.152329051000031 ], [ -122.083725869999924, 52.149807753000111 ], [ -122.083661159999949, 52.149805557000079 ], [ -122.081641173, 52.149789847000086 ], [ -122.08164672099997, 52.14952015900009 ], [ -122.080724579999924, 52.149512976000068 ], [ -122.080556883999932, 52.151367004000043 ], [ -122.076243126999955, 52.151220436000116 ], [ -122.076240087, 52.151254008000109 ], [ -122.076237941, 52.151253934000074 ], [ -122.076140550999952, 52.152329409000068 ], [ -122.075069677, 52.152292999000103 ], [ -122.075034824999975, 52.152677735000111 ], [ -122.071733557999949, 52.152565428000067 ], [ -122.071691276999957, 52.153031784000049 ], [ -122.071574339999984, 52.154321114000034 ], [ -122.071366415999933, 52.156614016000049 ], [ -122.070976003999974, 52.156600728000093 ], [ -122.07096230599997, 52.1572586670001 ], [ -122.070604868999936, 52.157255851000059 ], [ -122.070523829999985, 52.157255213000056 ], [ -122.070518211999953, 52.157524898000091 ], [ -122.070606428999923, 52.157525593000059 ], [ -122.07095669099999, 52.157528352000021 ], [ -122.070951075999943, 52.157798038000074 ], [ -122.071389556999918, 52.157801491000043 ], [ -122.07138394499998, 52.158071177000068 ], [ -122.071822429999898, 52.158074628000065 ], [ -122.071805597999983, 52.158883687000078 ], [ -122.071367105999968, 52.158880235000019 ], [ -122.071361493, 52.159149921000044 ], [ -122.070922997999944, 52.15914646800006 ], [ -122.070917383000037, 52.15941615400007 ], [ -122.070617357999964, 52.159413790000031 ], [ -122.070478884999915, 52.159412699000015 ], [ -122.070473266999954, 52.159682385000039 ], [ -122.070618922999984, 52.159683534000052 ], [ -122.070911767999917, 52.159685840000094 ], [ -122.070906150999946, 52.159955526000083 ], [ -122.071344654999933, 52.159958979000073 ], [ -122.071327813999972, 52.160768037000047 ], [ -122.070889301999927, 52.160764583000052 ], [ -122.070883685999945, 52.16103427000013 ], [ -122.070445170999974, 52.161030814000121 ], [ -122.070439552999957, 52.161300501000099 ], [ -122.069124006999957, 52.161290126000011 ], [ -122.069129632999974, 52.161020440000122 ], [ -122.067814092999953, 52.161010051000027 ], [ -122.067818761999931, 52.160786676000079 ], [ -122.0643126, 52.160667199000081 ], [ -122.064305535999921, 52.161004062000075 ], [ -122.064379671, 52.161006589000117 ], [ -122.064308362999967, 52.161791485000073 ], [ -122.064727545999972, 52.161794809000121 ], [ -122.064710582999936, 52.162603865000065 ], [ -122.065149111999972, 52.162607342000051 ], [ -122.065143460999977, 52.16287702700005 ], [ -122.06558199199999, 52.162880502000128 ], [ -122.065593288999978, 52.162341131000041 ], [ -122.066908867999942, 52.162351544000117 ], [ -122.066885280999927, 52.163479210000084 ], [ -122.066875021999977, 52.163969657000031 ], [ -122.064112447999946, 52.163947772000014 ], [ -122.06405420399993, 52.164588778000095 ], [ -122.061886198999971, 52.164514849000071 ], [ -122.058205942999933, 52.164389260000114 ] ], [ [ -122.084398665999927, 52.145638842000025 ], [ -122.084411598999949, 52.14549569900003 ], [ -122.084360118999925, 52.1454952980001 ], [ -122.084357203999929, 52.14563743499999 ], [ -122.084398665999927, 52.145638842000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "216.2", "sL_BldgLoss": "216.2", "sL_StrLoss": "216.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CECD503F5C855EC0885EEBF7E9144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.080993268, 52.161499824000018 ], [ -122.086841244999945, 52.16169819100007 ], [ -122.086517627999967, 52.165280440000096 ], [ -122.080669168999975, 52.165082058000074 ], [ -122.080993268, 52.161499824000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "108", "sL_BldgLoss": "108", "sL_StrLoss": "108", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8ECED3B2B895EC0F9215FD769134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.141626033999984, 52.153199058000048 ], [ -122.141636281999922, 52.153083977000058 ], [ -122.141355591999954, 52.15307459500012 ], [ -122.141385828999915, 52.152735056000033 ], [ -122.140881100999977, 52.15271818300009 ], [ -122.140917144999932, 52.152313480000096 ], [ -122.14080652599992, 52.152309782000032 ], [ -122.141026634999946, 52.149838265000092 ], [ -122.143583270999983, 52.149807733000031 ], [ -122.14424453399999, 52.149799836000049 ], [ -122.145051711999969, 52.151247405000092 ], [ -122.145647891999943, 52.151994902000084 ], [ -122.14655192399999, 52.152841597000091 ], [ -122.147057133999979, 52.153210772000115 ], [ -122.141626033999984, 52.153199058000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11167417", "BldgCostT": "7701667", "sL_LossRatio": "1", "sL_AssetLoss": "619.7", "sL_BldgLoss": "619.7", "sL_StrLoss": "619.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001518F4D667855EC08E11DC8AF5184A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.090035812999972, 52.206613398000059 ], [ -122.089717785999937, 52.205632504000029 ], [ -122.08792978199989, 52.205842885000024 ], [ -122.086547424999964, 52.205628363000073 ], [ -122.085439046, 52.205348649000022 ], [ -122.085969197999958, 52.20039364200008 ], [ -122.086623059999937, 52.195197628000088 ], [ -122.086392839999931, 52.193501224000023 ], [ -122.086337569999941, 52.192722149000048 ], [ -122.078574183999976, 52.191385515000022 ], [ -122.078678572999976, 52.19023312000008 ], [ -122.078095103999956, 52.190213314000118 ], [ -122.07766514799998, 52.187335864000062 ], [ -122.077731109999945, 52.186607786000096 ], [ -122.080953173999916, 52.186717142000099 ], [ -122.08097537699993, 52.186471862000133 ], [ -122.081324187999925, 52.186483695000021 ], [ -122.08132446, 52.186470601000103 ], [ -122.081846978000016, 52.186474668000109 ], [ -122.083332593, 52.186486220000084 ], [ -122.08351828399995, 52.186487662000104 ], [ -122.083516838999941, 52.186558055 ], [ -122.084322424999968, 52.186585365000049 ], [ -122.08398375799996, 52.187033940000049 ], [ -122.083866382999958, 52.187189396000093 ], [ -122.083459921999975, 52.187724473000024 ], [ -122.08322818, 52.188161273000077 ], [ -122.083141563999916, 52.188323004000083 ], [ -122.083074577, 52.188448015000134 ], [ -122.083037037999958, 52.188976719000017 ], [ -122.08307613, 52.189371497000067 ], [ -122.083246925999944, 52.189819248000028 ], [ -122.083632404999946, 52.19034344300011 ], [ -122.08396160300002, 52.190642838000052 ], [ -122.084100186999962, 52.190768915000028 ], [ -122.084441821999945, 52.190988924000052 ], [ -122.084740276999952, 52.191181121000049 ], [ -122.086198298999975, 52.192120077000027 ], [ -122.087299596999983, 52.193108127000073 ], [ -122.087379259999963, 52.193179627000035 ], [ -122.088242168999926, 52.194300259000073 ], [ -122.088275133999915, 52.194367280000051 ], [ -122.088444967999948, 52.194712803000137 ], [ -122.08868845899994, 52.195208237000017 ], [ -122.088936667999945, 52.195920903000051 ], [ -122.089036063999956, 52.196477608000045 ], [ -122.089046618999944, 52.196585296000144 ], [ -122.089056695999915, 52.196688378000061 ], [ -122.089095475999954, 52.197084128 ], [ -122.08909984899995, 52.197128914000096 ], [ -122.089103253999966, 52.197163465000088 ], [ -122.089090462999962, 52.197710987000036 ], [ -122.088934691999967, 52.198460263000079 ], [ -122.088754201000015, 52.198995828000079 ], [ -122.088670407999942, 52.199192389000125 ], [ -122.088345170999958, 52.200003059000096 ], [ -122.088266867999891, 52.200198293000014 ], [ -122.088134992000036, 52.200845077000039 ], [ -122.088146174999935, 52.201071188000064 ], [ -122.08817082299997, 52.201569674000098 ], [ -122.088181725999917, 52.201789830000067 ], [ -122.088320132999939, 52.202372527000058 ], [ -122.088368843999959, 52.202577668000096 ], [ -122.088675861999931, 52.203244178000013 ], [ -122.088749234999938, 52.2034035000001 ], [ -122.089885519999939, 52.205108238000058 ], [ -122.090280170999932, 52.206069263000089 ], [ -122.090401103999966, 52.206598804000073 ], [ -122.090035812999972, 52.206613398000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "13301333", "BldgCostT": "9173333", "sL_LossRatio": "1", "sL_AssetLoss": "727.8", "sL_BldgLoss": "727.8", "sL_StrLoss": "727.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000A43D3C81D875EC0DA652A8A78124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.1114904499999, 52.148130375000051 ], [ -122.111506552999984, 52.147321305000069 ], [ -122.111068170999943, 52.14731800200007 ], [ -122.111078912999957, 52.146778623000102 ], [ -122.110202154, 52.146772012000078 ], [ -122.110207530999958, 52.146502322000053 ], [ -122.108892403999945, 52.146492393000138 ], [ -122.108870868999972, 52.147571150000118 ], [ -122.109309255000014, 52.147574462000129 ], [ -122.109293110999943, 52.148383530000046 ], [ -122.108854715999968, 52.148380219000089 ], [ -122.108849331999977, 52.148649907000078 ], [ -122.10621895599995, 52.148630004000033 ], [ -122.106251354999969, 52.14701187 ], [ -122.106689734999946, 52.147015191000058 ], [ -122.106700529999941, 52.146475813000023 ], [ -122.107138904999928, 52.146479132000046 ], [ -122.107160479999976, 52.145400375000051 ], [ -122.108913938999962, 52.145413636000043 ], [ -122.108924706, 52.144874257000048 ], [ -122.108486346999968, 52.144870945000079 ], [ -122.10849173299999, 52.144601255000055 ], [ -122.1076150199999, 52.14459462400005 ], [ -122.107620410999971, 52.144324935000071 ], [ -122.106743703999939, 52.144318299000055 ], [ -122.106738306999929, 52.144587988000097 ], [ -122.106299950999926, 52.144584668000107 ], [ -122.106294550999948, 52.144854356000103 ], [ -122.104102758999886, 52.144837728000049 ], [ -122.104108168999943, 52.144568038000116 ], [ -122.103231458999957, 52.144561376000077 ], [ -122.103242293999969, 52.144021998000042 ], [ -122.101927241999988, 52.144011992000046 ], [ -122.101943518999974, 52.143202924000065 ], [ -122.100628492999974, 52.14319290400001 ], [ -122.100675509999945, 52.140858880000039 ], [ -122.100677384999983, 52.140765703000078 ], [ -122.101115704999984, 52.140769045000063 ], [ -122.101121133999968, 52.140499356000085 ], [ -122.102817963999954, 52.140512277000077 ], [ -122.102874395999947, 52.140512706000081 ], [ -122.10285272099999, 52.141591462000036 ], [ -122.102414393999979, 52.141588126000059 ], [ -122.102409156999968, 52.141848609000093 ], [ -122.102408972999967, 52.141857816000048 ], [ -122.10241873199999, 52.141857890000097 ], [ -122.103723959999954, 52.14186781700009 ], [ -122.103718545999953, 52.142137505000122 ], [ -122.105033541999887, 52.142147491000081 ], [ -122.105028134999912, 52.142417181000042 ], [ -122.105466470999886, 52.142420507000104 ], [ -122.105455661999912, 52.142959886000035 ], [ -122.106332342999906, 52.142966532000067 ], [ -122.106326944999964, 52.143236220000063 ], [ -122.10808031599997, 52.14324949300002 ], [ -122.10807493, 52.143519183000052 ], [ -122.10895162199995, 52.143525810000078 ], [ -122.108946237999959, 52.14379549900007 ], [ -122.109384585999962, 52.143798810000071 ], [ -122.109379206999961, 52.144068499000085 ], [ -122.109817557999946, 52.14407180900011 ], [ -122.109812179999963, 52.144341499000106 ], [ -122.110250534, 52.14434480600007 ], [ -122.110245159999977, 52.14461449600001 ], [ -122.110683516999941, 52.144617802000084 ], [ -122.110688889999921, 52.144348113 ], [ -122.11112724399996, 52.144351417000038 ], [ -122.111137982999963, 52.143812038000092 ], [ -122.11157633299996, 52.143815341000085 ], [ -122.111581699999988, 52.143545651000096 ], [ -122.112458392999926, 52.143552251000067 ], [ -122.112463754999951, 52.143282561000092 ], [ -122.112902098999967, 52.143285860000056 ], [ -122.112912814999959, 52.142746480000014 ], [ -122.114666173000032, 52.142759655000134 ], [ -122.114682217, 52.141950586000057 ], [ -122.113805553999953, 52.141944001000077 ], [ -122.113832319999986, 52.140595551000068 ], [ -122.111640730999937, 52.140579064000121 ], [ -122.111646096999934, 52.140309374000068 ], [ -122.110769466999926, 52.140302767000087 ], [ -122.110780208999969, 52.139763387000102 ], [ -122.109903590999963, 52.139756775000123 ], [ -122.109913157999955, 52.139276829000046 ], [ -122.109919718999961, 52.138947706000103 ], [ -122.110358019999964, 52.138951013000089 ], [ -122.110363392999915, 52.138681323000078 ], [ -122.113022929999914, 52.13870135500013 ], [ -122.113431486999986, 52.138704427000057 ], [ -122.113426132999948, 52.138974117000039 ], [ -122.11386443399999, 52.138977412000017 ], [ -122.113837672999949, 52.140325861000115 ], [ -122.115152617999939, 52.140335734000061 ], [ -122.115147273999966, 52.140605424000121 ], [ -122.116462228999978, 52.140615284000077 ], [ -122.11645689199996, 52.140884973000084 ], [ -122.117333534999887, 52.140891538000083 ], [ -122.117306876, 52.142239989000089 ], [ -122.117745208999949, 52.142243269000126 ], [ -122.117734548999948, 52.142782649000033 ], [ -122.11861123099996, 52.142789204000096 ], [ -122.11860590699996, 52.143058894 ], [ -122.119044247999938, 52.143062169000103 ], [ -122.119028282999963, 52.143871239000084 ], [ -122.118589931999949, 52.143867965000069 ], [ -122.118563306999945, 52.145216416000132 ], [ -122.117248216999982, 52.14520658000005 ], [ -122.117226883999948, 52.146285339000045 ], [ -122.117665258000017, 52.146288619000117 ], [ -122.117643935999965, 52.147367379000052 ], [ -122.118082317999907, 52.147370659000046 ], [ -122.118055675999955, 52.148719108000115 ], [ -122.116302084, 52.148705983000127 ], [ -122.11632344099999, 52.147627223000079 ], [ -122.115885052999928, 52.147623938000052 ], [ -122.11589039499998, 52.147354248000035 ], [ -122.114575241999916, 52.147344382000028 ], [ -122.114607338999988, 52.145726243000091 ], [ -122.113730600999958, 52.145719659000065 ], [ -122.113735957, 52.145449969000083 ], [ -122.113297588999913, 52.145446674000056 ], [ -122.113313659999932, 52.144637605000057 ], [ -122.112436945999917, 52.144631011000094 ], [ -122.112431583, 52.144900701000068 ], [ -122.11199322299997, 52.144897400000062 ], [ -122.111971763999961, 52.145976159000014 ], [ -122.112848505000031, 52.145982757000041 ], [ -122.112816345999974, 52.147600895000089 ], [ -122.114131506999911, 52.147610780000072 ], [ -122.11410474299997, 52.148959229000077 ], [ -122.111912743999966, 52.148942743000049 ], [ -122.111907376999952, 52.149212433000052 ], [ -122.110592170999908, 52.149202524000053 ], [ -122.11060829299997, 52.148393455000068 ], [ -122.111046686999913, 52.148396760000054 ], [ -122.111052057999984, 52.148127071000054 ], [ -122.1114904499999, 52.148130375000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73", "sL_BldgLoss": "73", "sL_StrLoss": "73", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012F5824FB3855EC0A4AB325BCB134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.088096020999927, 52.15577399200005 ], [ -122.088101532999957, 52.155504304000068 ], [ -122.087224609999936, 52.155497521000029 ], [ -122.087230126999913, 52.155227834000101 ], [ -122.08679167, 52.155224441000072 ], [ -122.086808224999984, 52.154415378000095 ], [ -122.087246674999918, 52.154418772000099 ], [ -122.087252190999948, 52.154149085000022 ], [ -122.088129087, 52.154155867000064 ], [ -122.088134598999915, 52.153886180000072 ], [ -122.089011488999944, 52.153892956000071 ], [ -122.089016993999948, 52.153623269000015 ], [ -122.091209209999946, 52.153640179000092 ], [ -122.091181747999983, 52.154988617000065 ], [ -122.089866378999957, 52.154978476000096 ], [ -122.089855378999985, 52.155517851000084 ], [ -122.089416916999937, 52.155514466000078 ], [ -122.089411414999915, 52.155784154000052 ], [ -122.088096020999927, 52.15577399200005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4884083", "BldgCostT": "3368333", "sL_LossRatio": "1", "sL_AssetLoss": "253.2", "sL_BldgLoss": "253.2", "sL_StrLoss": "253.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000333055DD21845EC0F9A53CC282164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.063501619999968, 52.178041725000078 ], [ -122.062641657999976, 52.177912391000099 ], [ -122.060390619999936, 52.177907357000038 ], [ -122.060420556999972, 52.177578298000036 ], [ -122.060583246999954, 52.175789959000035 ], [ -122.061362354999957, 52.175816533000109 ], [ -122.061391213999983, 52.174445616000121 ], [ -122.061829857999967, 52.174449105000072 ], [ -122.06185822499998, 52.173100682000019 ], [ -122.061419593, 52.173097193000039 ], [ -122.061436620999956, 52.172288140000013 ], [ -122.063191114999967, 52.172302085000098 ], [ -122.063179783999928, 52.172841455000054 ], [ -122.063618411999968, 52.172844937000036 ], [ -122.063584434999967, 52.174463045000017 ], [ -122.064461723999912, 52.174470005000103 ], [ -122.064447371999961, 52.175154084000134 ], [ -122.065324195999978, 52.175183962000105 ], [ -122.065339014999964, 52.174476959000046 ], [ -122.067093595, 52.174490847000101 ], [ -122.067104878999913, 52.173951478000056 ], [ -122.067741428999952, 52.173956510000018 ], [ -122.068420799999956, 52.173961876000128 ], [ -122.06840389599995, 52.174770931000104 ], [ -122.070597138999915, 52.174788231000051 ], [ -122.070590345999932, 52.175114219000122 ], [ -122.070580276999976, 52.175597286000034 ], [ -122.070141619999958, 52.175593830000125 ], [ -122.070135996999966, 52.175863514000113 ], [ -122.06838136099995, 52.175849671000115 ], [ -122.06838699499994, 52.175579986000088 ], [ -122.067455351999953, 52.175572626000061 ], [ -122.067158648, 52.178839683000021 ], [ -122.067091285999965, 52.178837388000019 ], [ -122.066943210999966, 52.178759693000124 ], [ -122.06651151199992, 52.178586901000088 ], [ -122.066208573999958, 52.178498756000074 ], [ -122.066025507999953, 52.178445486000058 ], [ -122.065453080999973, 52.178335204000028 ], [ -122.063501619999968, 52.178041725000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023572", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "217.4", "sL_BldgLoss": "217.4", "sL_StrLoss": "217.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001605F2D3D5845EC042906A75C5154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078313222999952, 52.168385697000069 ], [ -122.078637741999941, 52.168396719000036 ], [ -122.078313396999974, 52.171978925000062 ], [ -122.0759607909999, 52.171899006000068 ], [ -122.072464072999978, 52.171780130000073 ], [ -122.072788898999988, 52.168197938000063 ], [ -122.078313222999952, 52.168385697000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5ECC094DC865EC00C339F390C124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.107219809999961, 52.142433792000134 ], [ -122.107252167999917, 52.140815655000033 ], [ -122.10374561399999, 52.140789060000039 ], [ -122.103754271999918, 52.140357771000019 ], [ -122.103761855999934, 52.139979992000036 ], [ -122.105943087999947, 52.139996548000127 ], [ -122.107706655999962, 52.140009904000074 ], [ -122.10770126599999, 52.140279594000056 ], [ -122.108577894999954, 52.140286222000029 ], [ -122.108572510999963, 52.14055591300005 ], [ -122.109010826999935, 52.14055922500004 ], [ -122.109000063999943, 52.141098604000064 ], [ -122.109876707999931, 52.14110522300011 ], [ -122.109860576999893, 52.141914292000124 ], [ -122.108983916999961, 52.141907673000084 ], [ -122.108973151999976, 52.142447052000065 ], [ -122.107219809999961, 52.142433792000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023574", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000570504EB6835EC0C429EFBA69164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.058286533999976, 52.176039251000063 ], [ -122.058297924999977, 52.175499883000064 ], [ -122.056543307999959, 52.175485865000049 ], [ -122.056571838999986, 52.174137444000095 ], [ -122.057887759999986, 52.17414796 ], [ -122.05788206199999, 52.17441764400008 ], [ -122.058320705999975, 52.174421147000032 ], [ -122.058309316999924, 52.174960515000123 ], [ -122.059625262999973, 52.174971012000093 ], [ -122.05960528899999, 52.175918113000087 ], [ -122.059602511999941, 52.176049749000128 ], [ -122.059543966999954, 52.176049282000065 ], [ -122.058286533999976, 52.176039251000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2297B64D6875EC025E99AC937144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.121979328999913, 52.156066095000028 ], [ -122.123110292999939, 52.156104084000098 ], [ -122.123106928999903, 52.159697105000085 ], [ -122.121658656999927, 52.159648460000014 ], [ -122.121979328999913, 52.156066095000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.2", "sL_BldgLoss": "37.2", "sL_StrLoss": "37.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004AC14B574D855EC0AB9A5A9548164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.085645695000025, 52.173593854000053 ], [ -122.086498882999948, 52.17362277000008 ], [ -122.086139433999961, 52.174238038000098 ], [ -122.07937231199999, 52.174611778000035 ], [ -122.079160104, 52.174647021000055 ], [ -122.079214146999959, 52.17405010100002 ], [ -122.07995026599994, 52.174075091000091 ], [ -122.079960519999958, 52.173961818000059 ], [ -122.080616943999956, 52.173984099000087 ], [ -122.080628596999958, 52.173855335000027 ], [ -122.081510341, 52.173885258000034 ], [ -122.081519262999961, 52.173786656000061 ], [ -122.082420312999957, 52.173817226000068 ], [ -122.082430728999952, 52.173702078000126 ], [ -122.083266914999939, 52.173730441000039 ], [ -122.083273593999962, 52.173656597000075 ], [ -122.084011525999983, 52.173681623000121 ], [ -122.084016263999899, 52.173629216000059 ], [ -122.084635772999889, 52.173650221000024 ], [ -122.084638936999966, 52.173615231000078 ], [ -122.085640694999981, 52.173649190000035 ], [ -122.085645695000025, 52.173593854000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6568500", "BldgCostT": "4530000", "sL_LossRatio": "1", "sL_AssetLoss": "366", "sL_BldgLoss": "366", "sL_StrLoss": "366", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000025BFF2DEE0855EC048F542A6A1154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.089087258999882, 52.167105526000128 ], [ -122.094936028999925, 52.167303482000129 ], [ -122.094613038999952, 52.170885738000052 ], [ -122.088763787999966, 52.170687767000089 ], [ -122.089087258999882, 52.167105526000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6851250", "BldgCostT": "4725000", "sL_LossRatio": "1", "sL_AssetLoss": "399", "sL_BldgLoss": "399", "sL_StrLoss": "399", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CB2A560B0885EC0562DE92887144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.133001093999937, 52.158485664000089 ], [ -122.13884890099996, 52.158681399000038 ], [ -122.138529603, 52.162263802000048 ], [ -122.132681314999942, 52.162068051000091 ], [ -122.133001093999937, 52.158485664000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "71.6", "sL_BldgLoss": "71.6", "sL_StrLoss": "71.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD5A28784E895EC08B634DFAB5134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.148589916999953, 52.157008995000105 ], [ -122.14862028899995, 52.155417193000076 ], [ -122.148181820999952, 52.155414027000077 ], [ -122.148192116999923, 52.154874643000063 ], [ -122.147753654000013, 52.154871477000036 ], [ -122.147763954999959, 52.154332092000082 ], [ -122.146448585999906, 52.154322582000113 ], [ -122.146449326999942, 52.15428386000012 ], [ -122.141544026999966, 52.154119999000095 ], [ -122.141626033999984, 52.153199058000048 ], [ -122.147057133999979, 52.153210772000115 ], [ -122.148073198999981, 52.153953208000139 ], [ -122.14833504799995, 52.154257630000075 ], [ -122.148621993999953, 52.154591309000118 ], [ -122.148921885000021, 52.155176203000067 ], [ -122.148982405999973, 52.155765682000045 ], [ -122.148926811999942, 52.156258806000018 ], [ -122.148589916999953, 52.157008995000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4197750", "BldgCostT": "2895000", "sL_LossRatio": "1", "sL_AssetLoss": "184.3", "sL_BldgLoss": "184.3", "sL_StrLoss": "184.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DDCC75D06885EC0CDD290E937144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.123110292999939, 52.156104084000098 ], [ -122.127826758999944, 52.156262388000059 ], [ -122.127506569, 52.159844768000042 ], [ -122.123106928999903, 52.159697105000085 ], [ -122.123110292999939, 52.156104084000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023581", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28453833", "BldgCostT": "19623333", "sL_LossRatio": "1", "sL_AssetLoss": "1458.3", "sL_BldgLoss": "1458.3", "sL_StrLoss": "1458.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7108732B5855EC0CA3D8F1773164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078882125999939, 52.178405067000014 ], [ -122.078951910999962, 52.177634402000088 ], [ -122.078889806999925, 52.177632293000052 ], [ -122.079160104, 52.174647021000055 ], [ -122.07937231199999, 52.174611778000035 ], [ -122.086139433999961, 52.174238038000098 ], [ -122.086498882999948, 52.17362277000008 ], [ -122.086500140999959, 52.173622813000073 ], [ -122.086500373999939, 52.173620217000071 ], [ -122.086574066, 52.173494080000083 ], [ -122.087425523999983, 52.17352293000009 ], [ -122.087438128999977, 52.173383396000077 ], [ -122.088026218, 52.173403319000087 ], [ -122.088045114999943, 52.173194110000118 ], [ -122.088447792999915, 52.173207751000099 ], [ -122.088530653999953, 52.172290322000059 ], [ -122.089569381, 52.172325501000032 ], [ -122.089706694999919, 52.170804647000061 ], [ -122.095555965999893, 52.171002570000049 ], [ -122.095530613999969, 52.17128380700008 ], [ -122.096185663999961, 52.171305954000097 ], [ -122.09592261499999, 52.174224118000062 ], [ -122.09701075299995, 52.174260898000071 ], [ -122.097452425999975, 52.174275824000105 ], [ -122.09742763899996, 52.174550876000104 ], [ -122.097012718999963, 52.174700336000036 ], [ -122.096960085999939, 52.178387637000107 ], [ -122.09573671199999, 52.178377115000039 ], [ -122.095762307999976, 52.178093225000026 ], [ -122.095635072999968, 52.178088925000111 ], [ -122.095609558999968, 52.178371903000063 ], [ -122.094666965, 52.178340034000023 ], [ -122.094664453999911, 52.178367881000099 ], [ -122.08082109, 52.178247787000046 ], [ -122.079806587999897, 52.178395913000031 ], [ -122.079516817999945, 52.178438209000049 ], [ -122.079291337, 52.178441989000085 ], [ -122.078899326999959, 52.178410384000117 ], [ -122.078882125999939, 52.178405067000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "50406917", "BldgCostT": "34291667", "sL_LossRatio": "1", "sL_AssetLoss": "2371.1", "sL_BldgLoss": "2371.1", "sL_StrLoss": "2371.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FBF54BF14885EC0112A82493B154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.102250653999988, 52.171526877000126 ], [ -122.102256081999897, 52.171257189000066 ], [ -122.101378847999968, 52.171250511000061 ], [ -122.101384280999966, 52.170980822000033 ], [ -122.099629821999955, 52.170967445000059 ], [ -122.099662486999947, 52.169349320000045 ], [ -122.100101084999977, 52.169352667000119 ], [ -122.100106526999951, 52.169082978000041 ], [ -122.101422314999979, 52.16909300800009 ], [ -122.101427749999942, 52.168823321000076 ], [ -122.101866343999959, 52.168826661 ], [ -122.101871773999974, 52.168556972000069 ], [ -122.10202555199993, 52.16855814400008 ], [ -122.102032027999925, 52.168519667000041 ], [ -122.102718370999952, 52.168525729000102 ], [ -122.103175727999925, 52.168529767000088 ], [ -122.10317510899992, 52.168566888000093 ], [ -122.103187548999969, 52.168566984000059 ], [ -122.103165856999937, 52.169645735000081 ], [ -122.103604458999911, 52.169649069000023 ], [ -122.103593618999952, 52.170188445000115 ], [ -122.103671909999917, 52.170189039000029 ], [ -122.103886269999975, 52.167806081000023 ], [ -122.104976805999954, 52.167842873000019 ], [ -122.105034056999912, 52.167206208000039 ], [ -122.110882912999941, 52.167403357000097 ], [ -122.110870084999988, 52.167546221000116 ], [ -122.11110291599999, 52.16754797600003 ], [ -122.111334524999961, 52.16496815400005 ], [ -122.115410848999971, 52.165105372000092 ], [ -122.11542655699995, 52.164930202000036 ], [ -122.121303045999952, 52.164815311000055 ], [ -122.12125609499995, 52.16533966700004 ], [ -122.122602867999959, 52.165384902000092 ], [ -122.122630427, 52.16507702500008 ], [ -122.128479073999927, 52.165273284000087 ], [ -122.128435938999971, 52.165755900000107 ], [ -122.129994351999969, 52.165808145000078 ], [ -122.129970933999957, 52.166070269000087 ], [ -122.129994388999961, 52.166070443000102 ], [ -122.129999650999963, 52.165800753000013 ], [ -122.13087678499997, 52.165807218000083 ], [ -122.130882040999936, 52.165537528000073 ], [ -122.131759169999953, 52.165543987000078 ], [ -122.131764418999978, 52.165274297000046 ], [ -122.133866736999892, 52.165289752000028 ], [ -122.133888536999933, 52.165045494000047 ], [ -122.134782609999945, 52.165075428000065 ], [ -122.134793605, 52.164952216000074 ], [ -122.136132525999983, 52.164997030000087 ], [ -122.136135245999967, 52.164966547000084 ], [ -122.13666190099994, 52.164984171000121 ], [ -122.136666023999936, 52.164937961000064 ], [ -122.137607918999947, 52.164969473000092 ], [ -122.137613883999975, 52.164902583000128 ], [ -122.138352789999914, 52.164927299000105 ], [ -122.13835385099999, 52.164915401000037 ], [ -122.139044329999976, 52.164938492000068 ], [ -122.139052224999944, 52.164849918000101 ], [ -122.139837117999932, 52.164876161000031 ], [ -122.139838589999925, 52.164859637000035 ], [ -122.140420674999973, 52.164879095000082 ], [ -122.140457386999955, 52.164467051000045 ], [ -122.140648663999983, 52.164473445000112 ], [ -122.140664331999957, 52.164297585000021 ], [ -122.138945405999948, 52.164240116000023 ], [ -122.138992752999982, 52.163708905000128 ], [ -122.138374120999927, 52.163704388000014 ], [ -122.138384826999967, 52.163149994000058 ], [ -122.138389745999945, 52.162895316000046 ], [ -122.138885746999989, 52.162898938000083 ], [ -122.138888756999947, 52.162865168000053 ], [ -122.138803397999936, 52.162862313000083 ], [ -122.139122676999975, 52.159279911000056 ], [ -122.139360986999975, 52.159287881000061 ], [ -122.139419804999974, 52.158627817000124 ], [ -122.145267659999959, 52.158823227000042 ], [ -122.145248891000023, 52.15903416500003 ], [ -122.14741194599999, 52.159106369000014 ], [ -122.147270502999945, 52.159386080000075 ], [ -122.14713142, 52.160043502000107 ], [ -122.147184795999934, 52.161388206000019 ], [ -122.147132124999985, 52.161849 ], [ -122.146900597999888, 52.162473688000063 ], [ -122.14656679499997, 52.162873675000078 ], [ -122.146429509999976, 52.163038204000038 ], [ -122.14604311, 52.163299776000017 ], [ -122.145920121999936, 52.163383057000033 ], [ -122.145816207999957, 52.163453398000165 ], [ -122.145028180999972, 52.163838506000047 ], [ -122.143664496999989, 52.164413706000111 ], [ -122.142057382999909, 52.165037304000066 ], [ -122.140143502999962, 52.165778988000064 ], [ -122.139229824999973, 52.16600510000012 ], [ -122.138576287999939, 52.166166795000024 ], [ -122.137774099999959, 52.166282800000076 ], [ -122.137860265999905, 52.166585426000083 ], [ -122.138053308999986, 52.16726310400005 ], [ -122.138229907999971, 52.167996589 ], [ -122.138337585999977, 52.168646996000078 ], [ -122.13817729499999, 52.168832989000101 ], [ -122.137958714999968, 52.168948709000063 ], [ -122.137603486999936, 52.169017711000031 ], [ -122.136652699999914, 52.169021787000062 ], [ -122.136218115999981, 52.168999118000045 ], [ -122.135089794999928, 52.168940264000078 ], [ -122.134671602999973, 52.168918438000013 ], [ -122.131613291999884, 52.168758784000055 ], [ -122.129413921999912, 52.168554800000088 ], [ -122.129177655999982, 52.168565980000054 ], [ -122.12887142699999, 52.168580458000122 ], [ -122.12883850299994, 52.16858203900005 ], [ -122.128025001999973, 52.168620501000063 ], [ -122.127655410000017, 52.168624438000094 ], [ -122.126520198999941, 52.16863649500003 ], [ -122.125934390999959, 52.168577397000099 ], [ -122.125501312999972, 52.168419092000072 ], [ -122.12457670400002, 52.168015293000053 ], [ -122.124267285999949, 52.167834198000051 ], [ -122.124216111999971, 52.167751687000091 ], [ -122.124117610999974, 52.167540904000077 ], [ -122.121159478999971, 52.167806315000078 ], [ -122.120912211999951, 52.167828497000073 ], [ -122.120454094999957, 52.167887798000059 ], [ -122.119870050999978, 52.167883441000079 ], [ -122.11986846799999, 52.167963599000096 ], [ -122.119094398999962, 52.168063805000017 ], [ -122.11863869699998, 52.16814397600006 ], [ -122.118110371999961, 52.168140028000039 ], [ -122.118108449999951, 52.168237262000048 ], [ -122.117167977999941, 52.168402709000084 ], [ -122.116893050999977, 52.168400651000084 ], [ -122.116888457999949, 52.168451880000077 ], [ -122.114631389999971, 52.1688488980001 ], [ -122.114000526999973, 52.168962941000096 ], [ -122.112475036999982, 52.169238659000051 ], [ -122.112401524999953, 52.169251946000038 ], [ -122.110741935999954, 52.169551867000102 ], [ -122.10889505399993, 52.169885635000107 ], [ -122.106734011999947, 52.17027611300005 ], [ -122.105450523999934, 52.170603822000089 ], [ -122.104369036999941, 52.17100030400011 ], [ -122.103630776999978, 52.17139061300005 ], [ -122.103569495999949, 52.171388546000088 ], [ -122.10356948299993, 52.171389273000038 ], [ -122.103568730999939, 52.171426678000046 ], [ -122.103400720999957, 52.171535623000054 ], [ -122.102374558999927, 52.171527820000072 ], [ -122.102250653999988, 52.171526877000126 ] ], [ [ -122.103571079999966, 52.171309843000088 ], [ -122.103574914999953, 52.171267218000104 ], [ -122.103571935999952, 52.171267196000038 ], [ -122.103571079999966, 52.171309843000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.2", "sL_BldgLoss": "37.2", "sL_StrLoss": "37.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C32CB4735A875EC07DCE597673164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.114335996999955, 52.17485497200002 ], [ -122.115783763999929, 52.174865831000083 ], [ -122.115762373999971, 52.175944586000121 ], [ -122.114671786999921, 52.175936406000112 ], [ -122.114007712999978, 52.175931421000072 ], [ -122.114029145999922, 52.174852668000014 ], [ -122.114335996999955, 52.17485497200002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44266084", "BldgCostT": "30528334", "sL_LossRatio": "1", "sL_AssetLoss": "2510.2", "sL_BldgLoss": "2510.2", "sL_StrLoss": "2510.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006777D4DA2C895EC0100554B4C9154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.139445230999982, 52.176389443000048 ], [ -122.139455640999969, 52.175850062000094 ], [ -122.13901697199999, 52.17584686100011 ], [ -122.139037799999983, 52.174768100000087 ], [ -122.137283173999933, 52.174755283000096 ], [ -122.137304043999961, 52.173676523000069 ], [ -122.138181335999903, 52.173682934000034 ], [ -122.138196969999939, 52.172873864000103 ], [ -122.141267437999943, 52.172896254000115 ], [ -122.14127782599995, 52.172356874000045 ], [ -122.142593725, 52.172366445000087 ], [ -122.142599200999896, 52.172081589000108 ], [ -122.139287268999979, 52.171970914000028 ], [ -122.13931566499997, 52.171652352000145 ], [ -122.137979643, 52.171607678000015 ], [ -122.138084900999942, 52.170427224000072 ], [ -122.137758695999963, 52.17041631300004 ], [ -122.137745996999953, 52.170558707000104 ], [ -122.136815320999986, 52.170527576000083 ], [ -122.136815155999912, 52.170529430000066 ], [ -122.136096641000023, 52.170505390000045 ], [ -122.136093424999927, 52.17054144700009 ], [ -122.136051828999925, 52.17054005500011 ], [ -122.135996758999966, 52.171157348000108 ], [ -122.130147282999985, 52.170961471000084 ], [ -122.13014749499996, 52.170959099000065 ], [ -122.129978801, 52.170953445000087 ], [ -122.129972489999943, 52.171024093000092 ], [ -122.124123057999938, 52.170827911000096 ], [ -122.12412803399998, 52.170772314000068 ], [ -122.123248428999958, 52.170742788000055 ], [ -122.12326488699992, 52.170558917000022 ], [ -122.121860191999943, 52.170511751000063 ], [ -122.121871274999975, 52.17038797200015 ], [ -122.120917165999913, 52.170355925000095 ], [ -122.121045254999927, 52.168925696 ], [ -122.120429650999981, 52.168905015000099 ], [ -122.120520715999987, 52.167888294000107 ], [ -122.120454094999957, 52.167887798000059 ], [ -122.120912211999951, 52.167828497000073 ], [ -122.121159478999971, 52.167806315000078 ], [ -122.124117610999974, 52.167540904000077 ], [ -122.124216111999971, 52.167751687000091 ], [ -122.124267285999949, 52.167834198000051 ], [ -122.12457670400002, 52.168015293000053 ], [ -122.125501312999972, 52.168419092000072 ], [ -122.125934390999959, 52.168577397000099 ], [ -122.126520198999941, 52.16863649500003 ], [ -122.127655410000017, 52.168624438000094 ], [ -122.128025001999973, 52.168620501000063 ], [ -122.12883850299994, 52.16858203900005 ], [ -122.12887142699999, 52.168580458000122 ], [ -122.129177655999982, 52.168565980000054 ], [ -122.129413921999912, 52.168554800000088 ], [ -122.131613291999884, 52.168758784000055 ], [ -122.134671602999973, 52.168918438000013 ], [ -122.135089794999928, 52.168940264000078 ], [ -122.136218115999981, 52.168999118000045 ], [ -122.136652699999914, 52.169021787000062 ], [ -122.137603486999936, 52.169017711000031 ], [ -122.137958714999968, 52.168948709000063 ], [ -122.13817729499999, 52.168832989000101 ], [ -122.138337585999977, 52.168646996000078 ], [ -122.138229907999971, 52.167996589 ], [ -122.138053308999986, 52.16726310400005 ], [ -122.137860265999905, 52.166585426000083 ], [ -122.137774099999959, 52.166282800000076 ], [ -122.138576287999939, 52.166166795000024 ], [ -122.139229824999973, 52.16600510000012 ], [ -122.140143502999962, 52.165778988000064 ], [ -122.142057382999909, 52.165037304000066 ], [ -122.143664496999989, 52.164413706000111 ], [ -122.145028180999972, 52.163838506000047 ], [ -122.145816207999957, 52.163453398000165 ], [ -122.145920121999936, 52.163383057000033 ], [ -122.14604311, 52.163299776000017 ], [ -122.146429509999976, 52.163038204000038 ], [ -122.14656679499997, 52.162873675000078 ], [ -122.14658740299997, 52.163229700000095 ], [ -122.146908197999963, 52.164335989000072 ], [ -122.146956141999951, 52.164501497000089 ], [ -122.147105783999976, 52.165301605000103 ], [ -122.147119480999933, 52.16589872800008 ], [ -122.147102633999921, 52.165898521000038 ], [ -122.147075385999969, 52.167385109000087 ], [ -122.156511162999919, 52.167420243000095 ], [ -122.156819858999967, 52.1673342220001 ], [ -122.157816638999947, 52.167530737000078 ], [ -122.157649126, 52.169598415000067 ], [ -122.157659527999925, 52.17150256700009 ], [ -122.159957779999914, 52.171472918000056 ], [ -122.161679630999942, 52.171496569000112 ], [ -122.161880386999883, 52.171507828000109 ], [ -122.161837305999896, 52.171563801000048 ], [ -122.161793178999986, 52.171601259000028 ], [ -122.161456610999934, 52.171887091000045 ], [ -122.161459278, 52.171952509000079 ], [ -122.161463505999933, 52.172057108000082 ], [ -122.161455817999951, 52.172326299000105 ], [ -122.162028787999972, 52.173136678000041 ], [ -122.162670465999895, 52.173766038000053 ], [ -122.162667190999969, 52.17380300700006 ], [ -122.156817238000016, 52.173608480000077 ], [ -122.157000239999931, 52.171546094000114 ], [ -122.156694776999956, 52.171535928000075 ], [ -122.156681693999971, 52.171683352000088 ], [ -122.156093770999917, 52.171663785000064 ], [ -122.156014321999962, 52.17255896700005 ], [ -122.152237765999956, 52.172433198000164 ], [ -122.15217828899992, 52.173102659000051 ], [ -122.150320354999977, 52.173040739000029 ], [ -122.15030921, 52.173166103000092 ], [ -122.146557493999964, 52.173040978000103 ], [ -122.146090665000017, 52.173025400000057 ], [ -122.146051152999988, 52.175088803000065 ], [ -122.145612493999977, 52.175085628000019 ], [ -122.145607325999947, 52.175355318000094 ], [ -122.145168661999904, 52.175352140000037 ], [ -122.14516349299997, 52.175621831000107 ], [ -122.142531499999961, 52.175602730000037 ], [ -122.142510755999979, 52.176681492000036 ], [ -122.140317376999988, 52.176665529000068 ], [ -122.140306975999948, 52.177204910000029 ], [ -122.139429616999948, 52.17719851300005 ], [ -122.139424411, 52.177468203000068 ], [ -122.138108360999965, 52.177458596000044 ], [ -122.138129212, 52.176379836000066 ], [ -122.139445230999982, 52.176389443000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023590", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5594583", "BldgCostT": "3858333", "sL_LossRatio": "1", "sL_AssetLoss": "325.3", "sL_BldgLoss": "325.3", "sL_StrLoss": "325.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095E7240855875EC0EFBBB75CDC164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.114765678999973, 52.176584672000061 ], [ -122.118004395999904, 52.17669357900008 ], [ -122.117869755999962, 52.178195488000036 ], [ -122.117683242999988, 52.180275872000045 ], [ -122.117016152999966, 52.180253447 ], [ -122.116975840999913, 52.180702988000071 ], [ -122.111125161999936, 52.180506150000028 ], [ -122.111446857999951, 52.176923876000068 ], [ -122.112113894999965, 52.176946333000068 ], [ -122.112154253999961, 52.176496792000073 ], [ -122.114765678999973, 52.176584672000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "182", "sL_BldgLoss": "182", "sL_StrLoss": "182", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000088E1B8C606875EC0FCD3BACBCD154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.106631460999949, 52.171829862000052 ], [ -122.106638227999952, 52.171492050000055 ], [ -122.103630776999978, 52.17139061300005 ], [ -122.104369036999941, 52.17100030400011 ], [ -122.105450523999934, 52.170603822000089 ], [ -122.106734011999947, 52.17027611300005 ], [ -122.10889505399993, 52.169885635000107 ], [ -122.110741935999954, 52.169551867000102 ], [ -122.112401524999953, 52.169251946000038 ], [ -122.112475036999982, 52.169238659000051 ], [ -122.114000526999973, 52.168962941000096 ], [ -122.114631389999971, 52.1688488980001 ], [ -122.116888457999949, 52.168451880000077 ], [ -122.116861972999942, 52.168747310000072 ], [ -122.116344070999943, 52.168729892000059 ], [ -122.116339988999925, 52.168935967000053 ], [ -122.115901391999941, 52.168932680000069 ], [ -122.115896044999957, 52.169202369000097 ], [ -122.115457446999983, 52.169199082000056 ], [ -122.115452096999945, 52.169468770000023 ], [ -122.115013495999932, 52.169465481 ], [ -122.115008144999976, 52.169735170000124 ], [ -122.113692330999925, 52.169725291000084 ], [ -122.113686972999929, 52.169994980000091 ], [ -122.112809759999934, 52.169988386000156 ], [ -122.112804394999941, 52.170258074000117 ], [ -122.111049957999981, 52.170244867000058 ], [ -122.111052825999977, 52.170100936000026 ], [ -122.111055332999911, 52.16997517900009 ], [ -122.110652253999959, 52.169972141000109 ], [ -122.110624186999956, 52.170284692000052 ], [ -122.110561239999967, 52.17098565700006 ], [ -122.109470618999964, 52.170948918000065 ], [ -122.109413428999986, 52.171585583000109 ], [ -122.108391793999942, 52.17155115900006 ], [ -122.108385956999939, 52.17184313600012 ], [ -122.106807256999971, 52.171831194000021 ], [ -122.106631460999949, 52.171829862000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "183.7", "sL_BldgLoss": "183.7", "sL_StrLoss": "183.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B2889B327B855EC074B89026E2164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.079806587999897, 52.178395913000031 ], [ -122.08082109, 52.178247787000046 ], [ -122.094664453999911, 52.178367881000099 ], [ -122.094641532999944, 52.17862202600007 ], [ -122.09371592899997, 52.178590724000038 ], [ -122.093699301999933, 52.178775048000055 ], [ -122.092748720999978, 52.178742893000035 ], [ -122.092727671999938, 52.178976171000045 ], [ -122.091728581999988, 52.17894236700004 ], [ -122.091714435999947, 52.179099095000026 ], [ -122.09063575499998, 52.179062588000122 ], [ -122.090622995000018, 52.179203921000088 ], [ -122.084772639, 52.179005749000098 ], [ -122.084812859999886, 52.178560914000087 ], [ -122.084736462999928, 52.178558324000058 ], [ -122.084648355999889, 52.17953276300004 ], [ -122.078854067999913, 52.179336193000061 ], [ -122.078921547999983, 52.179054680000057 ], [ -122.079230322999976, 52.178512698000063 ], [ -122.079291337, 52.178441989000085 ], [ -122.079516817999945, 52.178438209000049 ], [ -122.079806587999897, 52.178395913000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3958500", "BldgCostT": "2730000", "sL_LossRatio": "1", "sL_AssetLoss": "214.7", "sL_BldgLoss": "214.7", "sL_StrLoss": "214.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD44C8ED55865EC041F184DAC6164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.096960085999939, 52.178387637000107 ], [ -122.097012718999963, 52.174700336000036 ], [ -122.09742763899996, 52.174550876000104 ], [ -122.097345412999957, 52.175463335000082 ], [ -122.097343955999975, 52.17553537000002 ], [ -122.097338923999985, 52.175535331000049 ], [ -122.097290328999946, 52.176074559000071 ], [ -122.10179839599999, 52.176226811000085 ], [ -122.101475907999941, 52.17980906000011 ], [ -122.095625420999937, 52.179611438000066 ], [ -122.09573671199999, 52.178377115000039 ], [ -122.096960085999939, 52.178387637000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "1", "sL_AssetLoss": "185", "sL_BldgLoss": "185", "sL_StrLoss": "185", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000047A64B18F0815EC06BE7E20C51154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.032348953999957, 52.164810427000077 ], [ -122.033367454999947, 52.164845423000045 ], [ -122.033243319999954, 52.166200940000039 ], [ -122.033039397999957, 52.16842751300009 ], [ -122.027190762000018, 52.168226426000111 ], [ -122.0275193, 52.164644351000099 ], [ -122.032348953999957, 52.164810427000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "108.8", "sL_BldgLoss": "108.8", "sL_StrLoss": "108.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9305ACB4D845EC01176E50EF6114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.065846477999912, 52.138724827000097 ], [ -122.068696637999935, 52.138821970000052 ], [ -122.068901519999926, 52.141785556000038 ], [ -122.068903457999923, 52.141813318000075 ], [ -122.065570076, 52.141769783000044 ], [ -122.065846477999912, 52.138724827000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "181.4", "sL_BldgLoss": "181.4", "sL_StrLoss": "181.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D0D7EA7ABB835EC002A599D5D8104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.056117623999981, 52.133404478000031 ], [ -122.056140422999974, 52.132325734000126 ], [ -122.05570219399999, 52.132322225000109 ], [ -122.055725000999971, 52.131243481000084 ], [ -122.056163220999935, 52.131246990000065 ], [ -122.056168919999976, 52.130977303000058 ], [ -122.056607136999915, 52.130980809000064 ], [ -122.056635491999899, 52.129638280000066 ], [ -122.056641311999968, 52.129362693000125 ], [ -122.05883231699994, 52.129380200000099 ], [ -122.058827820999952, 52.12959361200005 ], [ -122.058820951999977, 52.129919572000048 ], [ -122.059259159999925, 52.129923070000096 ], [ -122.059253478999892, 52.130192755000103 ], [ -122.059691688999962, 52.130196251000079 ], [ -122.059686009999908, 52.130465938000043 ], [ -122.06012422199997, 52.130469430000041 ], [ -122.060118547999977, 52.130739117000175 ], [ -122.060556763, 52.130742609000038 ], [ -122.060534070999921, 52.131821354000131 ], [ -122.060972294999928, 52.131824845000097 ], [ -122.06093827299992, 52.133442963000064 ], [ -122.059185309, 52.133428991000088 ], [ -122.059190990999966, 52.133159305000078 ], [ -122.05743803799993, 52.133145307000056 ], [ -122.057432345, 52.133414993 ], [ -122.056117623999981, 52.133404478000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16827250", "BldgCostT": "11605000", "sL_LossRatio": "1", "sL_AssetLoss": "1107.4", "sL_BldgLoss": "1107.4", "sL_StrLoss": "1107.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082B91FE80F7E5EC0C662480C0A174A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.965248561999928, 52.183440949000044 ], [ -121.965250346999952, 52.18342180100008 ], [ -121.962820175, 52.18333688400002 ], [ -121.962838215999938, 52.183143413000046 ], [ -121.96215069899992, 52.183119379000075 ], [ -121.962172097999954, 52.182770415000043 ], [ -121.961815781999974, 52.180250555000107 ], [ -121.961706200999913, 52.179852353000101 ], [ -121.961535598999959, 52.179495118000077 ], [ -121.960937857999951, 52.178698904000051 ], [ -121.960928641999899, 52.178688122000089 ], [ -121.959961371999981, 52.177554869000062 ], [ -121.965699111999982, 52.177755449000095 ], [ -121.965683881999951, 52.177918916000046 ], [ -121.965911129999967, 52.177926854000113 ], [ -121.966001101999922, 52.17696110300011 ], [ -121.967321428999966, 52.177007215000081 ], [ -121.967342753999944, 52.176778233000086 ], [ -121.96825750899994, 52.176810173000035 ], [ -121.968266719, 52.176711256000011 ], [ -121.969395424999931, 52.176750656000124 ], [ -121.969395765999977, 52.176746983000058 ], [ -121.97077255, 52.176795027000033 ], [ -121.97078220899995, 52.176691216000037 ], [ -121.976631724999919, 52.176895157000018 ], [ -121.976617575999981, 52.177047437000084 ], [ -121.977579099999943, 52.177080931000084 ], [ -121.97750268399993, 52.177903550000046 ], [ -121.978001443999986, 52.177920921000108 ], [ -121.977982587, 52.178123935000016 ], [ -121.978754131999921, 52.178150801000129 ], [ -121.978646237999925, 52.179312554000084 ], [ -121.978421458999975, 52.181732697000015 ], [ -121.976529916999979, 52.18166681900005 ], [ -121.976476406999907, 52.182242642000105 ], [ -121.97296712799999, 52.182120339000058 ], [ -121.97291388, 52.182692826000057 ], [ -121.972160894, 52.182666570000038 ], [ -121.972097485999939, 52.183348145000146 ], [ -121.971129742999921, 52.183314393000089 ], [ -121.971098961999971, 52.183645168000076 ], [ -121.965248561999928, 52.183440949000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "120", "sL_BldgLoss": "120", "sL_StrLoss": "120", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000346EE667D57C5EC0A80183A44F114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.948119839999919, 52.136861569000096 ], [ -121.948140962999943, 52.134780218000103 ], [ -121.948316363999965, 52.134789968000057 ], [ -121.94956097299999, 52.133568836000087 ], [ -121.949695239999983, 52.133323193000074 ], [ -121.952765156999973, 52.133430934000081 ], [ -121.952430682999989, 52.137012886000093 ], [ -121.948119839999919, 52.136861569000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "1", "sL_AssetLoss": "209.5", "sL_BldgLoss": "209.5", "sL_StrLoss": "209.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0AAC1A822805EC0B4EB3944B7144A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.998961879999968, 52.163738977000079 ], [ -121.998995704999928, 52.163372767000091 ], [ -121.998701497999946, 52.163362571000086 ], [ -121.999032353999937, 52.159780564000116 ], [ -121.999718103999939, 52.159804330000057 ], [ -121.999719522999953, 52.15978898 ], [ -122.005566890999916, 52.159991459000132 ], [ -122.005236574999969, 52.163573484000089 ], [ -122.004844970999926, 52.163559934000062 ], [ -122.004809778999956, 52.163941494000078 ], [ -121.998961879999968, 52.163738977000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "275.8", "sL_BldgLoss": "275.8", "sL_StrLoss": "275.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C0997720DB7C5EC02BB9166FDC114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.948089015999969, 52.13989852100012 ], [ -121.948116737999925, 52.137167180000063 ], [ -121.953238117999959, 52.137346927000053 ], [ -121.953152851999931, 52.138260129000045 ], [ -121.953910756999989, 52.138286711000035 ], [ -121.953576339999984, 52.141868650000042 ], [ -121.94816195199999, 52.141678649000063 ], [ -121.948121475, 52.141338918000031 ], [ -121.948120951999954, 52.141315605000017 ], [ -121.948110897999953, 52.14086941200005 ], [ -121.948089015999969, 52.13989852100012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023629", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "144.2", "sL_BldgLoss": "144.2", "sL_StrLoss": "144.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066E3B9A5B2835EC0FBA9750B72194A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.054964418999987, 52.197850498000051 ], [ -122.054767398999957, 52.197579800000014 ], [ -122.054630782999979, 52.197713696000093 ], [ -122.054485611999951, 52.197729401000068 ], [ -122.054357892999974, 52.19753141300005 ], [ -122.053917448999982, 52.197471055000072 ], [ -122.053944472999945, 52.197174633000039 ], [ -122.058985876999941, 52.197346694000053 ], [ -122.05979714199999, 52.197374361000094 ], [ -122.059616960999961, 52.19935353500005 ], [ -122.059471021999954, 52.200956432000091 ], [ -122.05738887699998, 52.200885410000105 ], [ -122.056812997999955, 52.19979019600008 ], [ -122.056739289999939, 52.199042496000096 ], [ -122.056669992999957, 52.198942808000012 ], [ -122.056072790999934, 52.198713500000054 ], [ -122.05625331, 52.198571084000015 ], [ -122.05596819699997, 52.198138112000038 ], [ -122.055651380999961, 52.197937290000041 ], [ -122.054964418999987, 52.197850498000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11546833", "BldgCostT": "7963333", "sL_LossRatio": "1", "sL_AssetLoss": "630.9", "sL_BldgLoss": "630.9", "sL_StrLoss": "630.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002075647A3C825EC016AC27A9820F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.035695114, 52.125147284000015 ], [ -122.035700935999984, 52.124877599000065 ], [ -122.035262780999972, 52.124874016000057 ], [ -122.035280253999986, 52.124064961000023 ], [ -122.035718397999943, 52.124068546000082 ], [ -122.03573004199994, 52.123529176000041 ], [ -122.036168182000026, 52.123532759000092 ], [ -122.036175284999942, 52.123203581000084 ], [ -122.035522602999961, 52.123181149000068 ], [ -122.035507736999946, 52.123343724000058 ], [ -122.034206216999962, 52.123298981000033 ], [ -122.034109939999965, 52.124351556000107 ], [ -122.029341821999964, 52.124187513000081 ], [ -122.02927871199995, 52.122617374000086 ], [ -122.029315710999953, 52.121161323000095 ], [ -122.02910661699994, 52.119453575000051 ], [ -122.030449156999978, 52.118920356000068 ], [ -122.033697064999956, 52.118160568000086 ], [ -122.03401281, 52.118173103000082 ], [ -122.035752, 52.118124604000037 ], [ -122.037323895999947, 52.117670313000083 ], [ -122.039282397999941, 52.117677390000118 ], [ -122.040805067999969, 52.117516461000022 ], [ -122.040716161, 52.11849021900008 ], [ -122.040603927999911, 52.11971940800008 ], [ -122.040299201999957, 52.119708946000095 ], [ -122.040156608999965, 52.121270417000069 ], [ -122.03930881499997, 52.121241306000115 ], [ -122.039258700999966, 52.121789937000059 ], [ -122.038835299999931, 52.121775397000114 ], [ -122.038826039999961, 52.122205791000063 ], [ -122.039264169, 52.122209361000081 ], [ -122.03924677, 52.123018416 ], [ -122.038808633999977, 52.123014846000025 ], [ -122.038797030999973, 52.123554216000038 ], [ -122.039673311999948, 52.123561355000106 ], [ -122.039655921999923, 52.124370411 ], [ -122.038341471999928, 52.124359699000081 ], [ -122.038335666999899, 52.12462938300007 ], [ -122.03789751599993, 52.124625810000047 ], [ -122.037885898999889, 52.125165179000106 ], [ -122.035695114, 52.125147284000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "80.2", "sL_BldgLoss": "80.2", "sL_StrLoss": "80.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000494FAAE0E47C5EC0CADFFFBF98134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.949515628999919, 52.152092632000119 ], [ -121.952974085999983, 52.1522139550001 ], [ -121.952729974999926, 52.154827208000064 ], [ -121.952333731999943, 52.154615956000086 ], [ -121.952101437999943, 52.154492115000039 ], [ -121.950191756999914, 52.153299333000035 ], [ -121.949783516999929, 52.153044331000046 ], [ -121.949339815999963, 52.152661311000074 ], [ -121.949515628999919, 52.152092632000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "20532000", "BldgCostT": "14160000", "sL_LossRatio": "1", "sL_AssetLoss": "1163", "sL_BldgLoss": "1163", "sL_StrLoss": "1163", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3A25D226A845EC07D8FC0400C104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.059796905999974, 52.129228251 ], [ -122.059806903999956, 52.129118243000057 ], [ -122.059470343999948, 52.129115558000059 ], [ -122.058399803, 52.12910701600002 ], [ -122.058405487999948, 52.128837330000124 ], [ -122.057529096999957, 52.128830328 ], [ -122.057551856999979, 52.127751583000133 ], [ -122.057981277999943, 52.127755014000073 ], [ -122.059304598000011, 52.12776557800003 ], [ -122.059298916999978, 52.128035264000054 ], [ -122.059737105999886, 52.128038759000034 ], [ -122.059731427999935, 52.128308445000116 ], [ -122.059880393999919, 52.128309633000057 ], [ -122.060102615999966, 52.125864331000116 ], [ -122.060091856999975, 52.125863963000015 ], [ -122.060119733999969, 52.125557195000113 ], [ -122.059576859999964, 52.125538650000102 ], [ -122.059653863999941, 52.124691358000078 ], [ -122.059583419999981, 52.124688951000103 ], [ -122.059695743999967, 52.123452988000089 ], [ -122.059395458000012, 52.123450592000047 ], [ -122.059401135999977, 52.123180906000101 ], [ -122.05896299599999, 52.123177410000046 ], [ -122.058968675999964, 52.122907724000051 ], [ -122.058530538999932, 52.122904227000028 ], [ -122.058536221999972, 52.122634540000099 ], [ -122.058098085999987, 52.12263104000008 ], [ -122.058115142999924, 52.121821980000064 ], [ -122.058324650999936, 52.121823654000117 ], [ -122.05922205399996, 52.121830817000074 ], [ -122.059429524999985, 52.121832472000023 ], [ -122.059424789999966, 52.122057387000041 ], [ -122.059423848000023, 52.12210215900005 ], [ -122.059471256, 52.122102538000036 ], [ -122.059818211999982, 52.122105304000087 ], [ -122.059908958000022, 52.12110665800013 ], [ -122.059944317999978, 52.121107865000056 ], [ -122.059973892999949, 52.120782381000012 ], [ -122.060502587999949, 52.121840411000051 ], [ -122.060950194999961, 52.122157990000026 ], [ -122.06144667599996, 52.122162296000056 ], [ -122.06276111599999, 52.122190801000109 ], [ -122.063595516999939, 52.122035508000124 ], [ -122.063760289999919, 52.121910201000077 ], [ -122.064287308, 52.12177058700005 ], [ -122.064495104999963, 52.121602594000066 ], [ -122.064711915999965, 52.121712204000048 ], [ -122.064976008999949, 52.121668086000049 ], [ -122.066012709999896, 52.121722185000046 ], [ -122.06667378899999, 52.121502894000045 ], [ -122.066967696999939, 52.121504301000066 ], [ -122.067680111999948, 52.121482130000061 ], [ -122.068339886999965, 52.121461592000045 ], [ -122.068584499999957, 52.121633888000098 ], [ -122.068634088999914, 52.122048291000119 ], [ -122.068974485999959, 52.122563892000116 ], [ -122.069737699999934, 52.123136411000111 ], [ -122.070114492999906, 52.123237488000029 ], [ -122.071465116999946, 52.123248154000088 ], [ -122.071774488999964, 52.123258692000022 ], [ -122.072534616, 52.123518106000084 ], [ -122.073808402999973, 52.123374305000084 ], [ -122.074771502999937, 52.123391403 ], [ -122.078005390999976, 52.12377590800002 ], [ -122.079176598999979, 52.123641997000036 ], [ -122.08002220399996, 52.123720385000063 ], [ -122.08096308899999, 52.123466800000081 ], [ -122.081670046999974, 52.123382775000088 ], [ -122.081694552999963, 52.123478048000024 ], [ -122.081878917999973, 52.124032055000086 ], [ -122.082112425999981, 52.124733762000062 ], [ -122.082178284999941, 52.124931664000037 ], [ -122.082951995999935, 52.124856405000024 ], [ -122.083260186999951, 52.12584083300009 ], [ -122.082890910999936, 52.125828294000073 ], [ -122.082783093999964, 52.127021649000021 ], [ -122.082742657999958, 52.12746919000007 ], [ -122.081219817999909, 52.12741746600009 ], [ -122.081219088999916, 52.127425525000092 ], [ -122.077517727999975, 52.127299724000096 ], [ -122.077504626999939, 52.127444514000082 ], [ -122.071661309999982, 52.127245670000036 ], [ -122.071697210999943, 52.126849434000093 ], [ -122.067789420999972, 52.126716288000125 ], [ -122.066944656999965, 52.12668748800013 ], [ -122.066701179999924, 52.129371269000053 ], [ -122.065648813999957, 52.129335383000061 ], [ -122.065640435999981, 52.129427695000068 ], [ -122.059796905999974, 52.129228251 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023647", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1399250", "BldgCostT": "965000", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FF900727C8C5EC0B48872B389164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.192561201999965, 52.17474366300015 ], [ -122.192660730999975, 52.173611514000136 ], [ -122.198510844999959, 52.173804227000105 ], [ -122.198468637999937, 52.174285071000078 ], [ -122.199426745999915, 52.174316604000097 ], [ -122.199112339999928, 52.177899128000035 ], [ -122.196668468999974, 52.177818679000055 ], [ -122.196611265999934, 52.178469987 ], [ -122.190760530999952, 52.178277177000069 ], [ -122.191075630999975, 52.174694678000058 ], [ -122.192561201999965, 52.17474366300015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023671", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.4", "sL_BldgLoss": "36.4", "sL_StrLoss": "36.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000310BCC8EFD8F5EC04A84FC22D7164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249074977999967, 52.179565710000077 ], [ -122.249079519999952, 52.179296012000123 ], [ -122.248640805999983, 52.179293220000076 ], [ -122.248645352000011, 52.179023521000047 ], [ -122.248206641999957, 52.179020727000065 ], [ -122.248211188999989, 52.178751030000065 ], [ -122.247772480999942, 52.178748233000142 ], [ -122.247781581999945, 52.178208838000089 ], [ -122.247342878999973, 52.178206041000045 ], [ -122.247356535999955, 52.177396949000098 ], [ -122.251304787, 52.177422070000034 ], [ -122.25130026, 52.177691769000042 ], [ -122.25173895599994, 52.177694551000037 ], [ -122.251720850999931, 52.178773342000078 ], [ -122.252159558999907, 52.178776123000091 ], [ -122.252145988999956, 52.179585216000106 ], [ -122.249074977999967, 52.179565710000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2015500", "BldgCostT": "1390000", "sL_LossRatio": "1", "sL_AssetLoss": "70", "sL_BldgLoss": "70", "sL_StrLoss": "70", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000017C03157888E5EC049F60835C3154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.225611125999961, 52.172214015000108 ], [ -122.225620320999937, 52.172108494000042 ], [ -122.224864705, 52.172083796000081 ], [ -122.22488707, 52.171827206000032 ], [ -122.224219400999957, 52.171805378000073 ], [ -122.224243691999931, 52.171526734000054 ], [ -122.22335748899998, 52.1714977560001 ], [ -122.223379186999978, 52.171248900000087 ], [ -122.22198565599993, 52.17120332000006 ], [ -122.22218548799998, 52.168912210000052 ], [ -122.222298122999945, 52.167620714000087 ], [ -122.228147559999968, 52.167811929000059 ], [ -122.228125891, 52.168060786000062 ], [ -122.229519326999963, 52.168106293000029 ], [ -122.229495071999921, 52.168384939000084 ], [ -122.230381214999966, 52.168413871000077 ], [ -122.230358885999962, 52.168670462000087 ], [ -122.23102651, 52.168692254000057 ], [ -122.23101732799995, 52.168797776000098 ], [ -122.231772888999927, 52.168822434000027 ], [ -122.23169275, 52.169743633000046 ], [ -122.232570934999941, 52.16974934900005 ], [ -122.232566293999966, 52.170019046000093 ], [ -122.233004914999967, 52.170021899000091 ], [ -122.232991000999988, 52.170830988000013 ], [ -122.232233687999965, 52.170826063000028 ], [ -122.231675115999963, 52.170822427000083 ], [ -122.231678185999925, 52.170644263000028 ], [ -122.231679761999914, 52.170552729000121 ], [ -122.231622390999945, 52.170552356000023 ], [ -122.231614952999934, 52.170637849000059 ], [ -122.23146119700003, 52.172405061000056 ], [ -122.225611125999961, 52.172214015000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544333", "BldgCostT": "4513333", "sL_LossRatio": "1", "sL_AssetLoss": "282.7", "sL_BldgLoss": "282.7", "sL_StrLoss": "282.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D9D6E8F548D5EC086B8286934154A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.211531681999986, 52.168801425000062 ], [ -122.211536449999969, 52.168531730000097 ], [ -122.210659241999949, 52.168525864000074 ], [ -122.210664014999963, 52.168256168000049 ], [ -122.209786814999987, 52.168250296000011 ], [ -122.209790619, 52.168035567000082 ], [ -122.204864421999972, 52.167873769000053 ], [ -122.204895635999918, 52.167517511000028 ], [ -122.204060118999976, 52.167490047000101 ], [ -122.204086067999981, 52.167193932000067 ], [ -122.199905786999949, 52.167056437000028 ], [ -122.199945334999953, 52.166605633000103 ], [ -122.199212692999964, 52.166581520000136 ], [ -122.199229130999981, 52.166394173000114 ], [ -122.198154367999933, 52.166358791000079 ], [ -122.198204746999934, 52.165784781000092 ], [ -122.195719518999965, 52.16570292800003 ], [ -122.195741208999962, 52.165455957000049 ], [ -122.193417252999978, 52.165379367000128 ], [ -122.193502792999951, 52.16440589900003 ], [ -122.193058709999917, 52.164391258000087 ], [ -122.193068782999944, 52.164276630000074 ], [ -122.192022577999978, 52.164242131000094 ], [ -122.192027913999979, 52.164181442000022 ], [ -122.19087764199999, 52.16414350000008 ], [ -122.190897746999923, 52.16391483900005 ], [ -122.192364770999959, 52.163939926000069 ], [ -122.192379504999977, 52.163940215000068 ], [ -122.19314654899992, 52.163955549 ], [ -122.193770951999937, 52.163926998000115 ], [ -122.193788155999968, 52.161818877000066 ], [ -122.194476994999917, 52.161986507 ], [ -122.198325991, 52.162540008000093 ], [ -122.198591290999929, 52.162608212000073 ], [ -122.199083198999972, 52.162734702000108 ], [ -122.199739886999978, 52.163004206000011 ], [ -122.200048910999953, 52.163176089000054 ], [ -122.200414112999979, 52.163381004000023 ], [ -122.200696684999912, 52.163539548000038 ], [ -122.201424296999974, 52.16394778100009 ], [ -122.201476208999935, 52.163458648000102 ], [ -122.201598793999921, 52.16230358200005 ], [ -122.201882695999984, 52.162312922000055 ], [ -122.201832370999966, 52.162886935000095 ], [ -122.204317447999983, 52.162968658000082 ], [ -122.204301031999961, 52.163156005000126 ], [ -122.205375720999925, 52.163191330000103 ], [ -122.205350586999913, 52.163478280000071 ], [ -122.205485209999907, 52.163482704000046 ], [ -122.205496887999956, 52.162826932000051 ], [ -122.207251075, 52.162838733000036 ], [ -122.207241492000023, 52.163378123000022 ], [ -122.207680042999968, 52.163381070000113 ], [ -122.207674588, 52.163688268000058 ], [ -122.207793263999989, 52.16369216600004 ], [ -122.207764663, 52.164018890000143 ], [ -122.210222897999969, 52.164099602000078 ], [ -122.210191730999952, 52.1644558630001 ], [ -122.21102719199996, 52.164483281000088 ], [ -122.210956532999944, 52.165291124000085 ], [ -122.211593652999937, 52.165295384000089 ], [ -122.211588886999962, 52.165565079000068 ], [ -122.212027459999916, 52.165568010000115 ], [ -122.212022696999924, 52.165837706000055 ], [ -122.212446638999964, 52.165840536000111 ], [ -122.212630291999986, 52.163739977000041 ], [ -122.218479161999952, 52.163931681000086 ], [ -122.21846674799994, 52.164073890000047 ], [ -122.219586331999963, 52.164110553000071 ], [ -122.21955572899995, 52.164461229000018 ], [ -122.220536220999961, 52.164493327000031 ], [ -122.220499131999986, 52.164918444000087 ], [ -122.22172600799999, 52.16495859700008 ], [ -122.221681398999962, 52.165470044000045 ], [ -122.221683046999942, 52.165470098000085 ], [ -122.221387663999948, 52.168856455000125 ], [ -122.221370543999939, 52.169052708000073 ], [ -122.215520969999915, 52.168861151000087 ], [ -122.215523862999959, 52.168828040000051 ], [ -122.211531681999986, 52.168801425000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "112", "sL_BldgLoss": "112", "sL_StrLoss": "112", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB27F4B8F78C5EC0EB36EA19A9184A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.200324805999955, 52.190700224000132 ], [ -122.206177258999944, 52.190892546000057 ], [ -122.205863291999947, 52.19447504000005 ], [ -122.204930428999916, 52.194444405000141 ], [ -122.2049149599999, 52.194620862000065 ], [ -122.199062006999952, 52.194428476000056 ], [ -122.199376536999949, 52.190846001000104 ], [ -122.200309317999981, 52.190876682000095 ], [ -122.200324805999955, 52.190700224000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023942", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "52.7", "sL_BldgLoss": "52.7", "sL_StrLoss": "52.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3D13A683EA95EC06E8487616EFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.645218982999893, 51.97815781200012 ], [ -122.647485065999959, 51.978223910000047 ], [ -122.647208946999939, 51.9818081700001 ], [ -122.641382755999956, 51.98163814100014 ], [ -122.64141535099999, 51.981215772000034 ], [ -122.641659353999941, 51.978053894000013 ], [ -122.645218982999893, 51.97815781200012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.6", "sL_BldgLoss": "42.6", "sL_StrLoss": "42.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002AB2CEDF21AD5EC0F97C9C825FFA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.70125835499999, 51.959453561 ], [ -122.701513553, 51.95608476200006 ], [ -122.7012279899999, 51.956076565000025 ], [ -122.701417071999984, 51.953580409000025 ], [ -122.701499503999983, 51.952492095000089 ], [ -122.703593613999885, 51.952552188000041 ], [ -122.707322031, 51.952659085000057 ], [ -122.707209571999911, 51.954146441000042 ], [ -122.710242626999985, 51.954233311000088 ], [ -122.709971820999925, 51.957817796000057 ], [ -122.709107771999967, 51.95779305600005 ], [ -122.709100587999941, 51.957888115000046 ], [ -122.708168345000018, 51.957861417000082 ], [ -122.70816724599996, 51.957875938000036 ], [ -122.707605976999986, 51.957859860000084 ], [ -122.70727568299999, 51.957850397000058 ], [ -122.707274780999938, 51.957989057000141 ], [ -122.707205203999976, 51.957988884000024 ], [ -122.707081811999927, 51.959620562000069 ], [ -122.70125835499999, 51.959453561 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023947", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "45.5", "sL_BldgLoss": "45.5", "sL_StrLoss": "45.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000311D63BC60C65EC09738D1327BF84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096093397999979, 51.943475420000041 ], [ -123.096132506999979, 51.942888679000092 ], [ -123.095286708999978, 51.942867300000017 ], [ -123.095352706999947, 51.941877372000107 ], [ -123.095477500999962, 51.940005479000035 ], [ -123.095525735999942, 51.939281914000027 ], [ -123.096930237999942, 51.939317412000065 ], [ -123.096931874999939, 51.939292848000022 ], [ -123.097442700999963, 51.939305754000067 ], [ -123.097459866999927, 51.939048061000058 ], [ -123.098018899999985, 51.939062183000047 ], [ -123.098030953999924, 51.938881174000088 ], [ -123.103853089999973, 51.939028086000064 ], [ -123.103699575999983, 51.941337485000091 ], [ -123.103614748, 51.942613489000045 ], [ -123.103397416999925, 51.942608011000104 ], [ -123.103328701999899, 51.943641495000115 ], [ -123.101917239999949, 51.943605903000041 ], [ -123.101916139999943, 51.943622428 ], [ -123.096093397999979, 51.943475420000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61.1", "sL_BldgLoss": "61.1", "sL_StrLoss": "61.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AC0DC29A92C65EC098B2C2E311D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.09992226199995, 51.686179391000124 ], [ -123.10571085499997, 51.686326241000039 ], [ -123.105493109999927, 51.689623673000128 ], [ -123.105474038999986, 51.689912471000056 ], [ -123.099684973999956, 51.689765609000091 ], [ -123.099706147999953, 51.689445621000026 ], [ -123.09992226199995, 51.686179391000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "30.5", "sL_BldgLoss": "30.5", "sL_StrLoss": "30.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3C541B6EAC45EC0BE9C7EF5DDF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.075075424999937, 51.918739983000137 ], [ -123.076830579999935, 51.918784676000094 ], [ -123.07780631899999, 51.919098506000068 ], [ -123.079349199999939, 51.920166710000068 ], [ -123.079946303999961, 51.920670794000053 ], [ -123.080411946999959, 51.920909162000044 ], [ -123.080747926999891, 51.92108115000012 ], [ -123.08065467599999, 51.922473479000068 ], [ -123.079476194999955, 51.922443516000094 ], [ -123.079469828999933, 51.922538508000102 ], [ -123.076362911999951, 51.922459456000077 ], [ -123.073649978999953, 51.922390360000087 ], [ -123.073890671999905, 51.91880495500002 ], [ -123.075069051999947, 51.918834976000021 ], [ -123.075075424999937, 51.918739983000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023950", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.3", "sL_BldgLoss": "45.3", "sL_StrLoss": "45.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0168387A9A15EC0B79F848019FD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.522870093999956, 51.979051700000049 ], [ -122.523156428999954, 51.975467734000048 ], [ -122.528981324999918, 51.97564375000006 ], [ -122.528695468999956, 51.979227730000083 ], [ -122.522870093999956, 51.979051700000049 ] ], [ [ -122.525095098999913, 51.977228987000039 ], [ -122.524686812999974, 51.977209102000117 ], [ -122.524045308999973, 51.977278909000056 ], [ -122.52385620099993, 51.977322988000054 ], [ -122.523824701999942, 51.977402807000061 ], [ -122.52418510699999, 51.977737504000075 ], [ -122.525058022999971, 51.977992406000084 ], [ -122.525235213999963, 51.9777503030001 ], [ -122.525091391999922, 51.977498189000073 ], [ -122.525095098999913, 51.977228987000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35", "sL_BldgLoss": "35", "sL_StrLoss": "35", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000738DE80160D15EC0034C32D540134A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.268975966999932, 52.152330468000066 ], [ -123.268988425, 52.15213269500002 ], [ -123.267853037999913, 52.152105839000043 ], [ -123.26786495, 52.151916808000131 ], [ -123.268078955999925, 52.148520741000048 ], [ -123.268925529999962, 52.148540767000092 ], [ -123.268935627999966, 52.148380462000091 ], [ -123.272463436999928, 52.148463844000055 ], [ -123.27478644099989, 52.148518692000046 ], [ -123.27476393299996, 52.148876771000111 ], [ -123.275052656999947, 52.148883584000089 ], [ -123.27482731299996, 52.152468695000117 ], [ -123.268975966999932, 52.152330468000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999985811889209", "sL_AssetLoss": "74.71044", "sL_BldgLoss": "74.70938", "sL_StrLoss": "74.7", "sL_NStrLoss": "0.00938", "sL_ContLoss": "0.00106", "geom_point": "0101000020E61000003CDAF6459BC15EC03E970403E3C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.022337143999934, 51.56755919600004 ], [ -123.028109859999986, 51.567709994000097 ], [ -123.027867353999952, 51.571296467000117 ], [ -123.022094168999928, 51.571145657000095 ], [ -123.022337143999934, 51.56755919600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023955", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5046083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "159.9", "sL_BldgLoss": "159.9", "sL_StrLoss": "159.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2D43B81D5A35EC0AA3032D83F0E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556430438999939, 52.117914890000065 ], [ -122.556436583, 52.11783750200005 ], [ -122.555722116999931, 52.117816172000047 ], [ -122.55600665499999, 52.114232546000061 ], [ -122.556861001999948, 52.114258053000142 ], [ -122.556919778999912, 52.114259807000025 ], [ -122.556975356999914, 52.11355955600007 ], [ -122.556986165999973, 52.113423372000035 ], [ -122.556712074999965, 52.113415190000126 ], [ -122.556577889999943, 52.113411184000029 ], [ -122.555294614, 52.113372866000113 ], [ -122.55533411499998, 52.112875431000091 ], [ -122.555481163999957, 52.11102346600007 ], [ -122.555397684999988, 52.111020972000091 ], [ -122.555437027999957, 52.110525459 ], [ -122.55509910699999, 52.110515366000094 ], [ -122.555383648999936, 52.10693172000002 ], [ -122.555580511999949, 52.10693760000003 ], [ -122.555618067999944, 52.106464525000014 ], [ -122.556069592999961, 52.106478010000053 ], [ -122.556095769999956, 52.106148236000138 ], [ -122.556422293999972, 52.10615798700011 ], [ -122.556470545, 52.10615942800009 ], [ -122.556484459999936, 52.105984106000108 ], [ -122.556735353999954, 52.102822646000085 ], [ -122.557605380999973, 52.102848622000053 ], [ -122.562577466999969, 52.102996943000058 ], [ -122.562293545999964, 52.106580617000056 ], [ -122.561918763999984, 52.106569445000034 ], [ -122.561837276999981, 52.107597770000098 ], [ -122.561177324000013, 52.107656702000014 ], [ -122.561016178999921, 52.107736495000076 ], [ -122.560454086, 52.10837309100004 ], [ -122.560332391000017, 52.109028199000065 ], [ -122.560417312999945, 52.109290302000048 ], [ -122.560995507999976, 52.109777305000094 ], [ -122.56102189799995, 52.110200310000025 ], [ -122.561598414999963, 52.110814204000121 ], [ -122.562715783999963, 52.111573300000046 ], [ -122.56395351399999, 52.112081705000072 ], [ -122.564155987999925, 52.112235497000029 ], [ -122.564399306000027, 52.112756799000046 ], [ -122.565283304999937, 52.113317885000143 ], [ -122.565531985999883, 52.113399094000059 ], [ -122.565881507999933, 52.113400500000076 ], [ -122.566161983999905, 52.11322250400012 ], [ -122.566366117999962, 52.113222506000035 ], [ -122.567223297999959, 52.113612693000107 ], [ -122.567290028999977, 52.113614321000085 ], [ -122.56723889899996, 52.114260449000021 ], [ -122.567149420999925, 52.115391145000082 ], [ -122.567117580999977, 52.115393 ], [ -122.567137106999922, 52.115546740000092 ], [ -122.567043401999939, 52.116730788000019 ], [ -122.564195657999903, 52.11664600200006 ], [ -122.56417578699994, 52.116896856000068 ], [ -122.562373334999918, 52.116843155000026 ], [ -122.562274582, 52.11808920000005 ], [ -122.557268987999976, 52.117939919000079 ], [ -122.556430438999939, 52.117914890000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38.8", "sL_BldgLoss": "38.8", "sL_StrLoss": "38.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000813EF45184A95EC0A3A27FBCB6FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.645802696999951, 51.976365766000093 ], [ -122.645853055, 51.975712311000045 ], [ -122.645498231999952, 51.975701959000084 ], [ -122.645774453999962, 51.972117683000064 ], [ -122.651599389999916, 51.97228749200012 ], [ -122.651549120999945, 51.972940950000115 ], [ -122.651903922999963, 51.972951285000121 ], [ -122.651810789999899, 51.974162053000022 ], [ -122.651628199999976, 51.976535572000088 ], [ -122.647749505999968, 51.97642254600003 ], [ -122.645802696999951, 51.976365766000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023959", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "69.9", "sL_BldgLoss": "69.9", "sL_StrLoss": "69.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000301BB69034E65EC088F98FD830E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.594156043999988, 51.77307379300003 ], [ -123.599957643, 51.773195592000036 ], [ -123.599760859999932, 51.776782470000086 ], [ -123.594106436999965, 51.77666376500008 ], [ -123.593958785999973, 51.776660661000072 ], [ -123.594030637999964, 51.775354206000088 ], [ -123.594130112999935, 51.773545339000101 ], [ -123.594156043999988, 51.77307379300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.5", "sL_BldgLoss": "39.5", "sL_StrLoss": "39.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002719F7EEE8DD5EC04BC4002EED0C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.464524344999958, 52.099131154000126 ], [ -123.470369121999937, 52.099259484000072 ], [ -123.470160160999953, 52.102845108000039 ], [ -123.464314901999927, 52.102716769000061 ], [ -123.464524344999958, 52.099131154000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.2", "sL_BldgLoss": "39.2", "sL_StrLoss": "39.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000101F3B1C5BAB5EC0F5E2BCE6F2FA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.674661066999974, 51.95866135800005 ], [ -122.68048431499993, 51.958829706000124 ], [ -122.680304943999914, 51.961182418000043 ], [ -122.68021103199996, 51.962414106000089 ], [ -122.677728298999952, 51.96234236700009 ], [ -122.674387305, 51.962245745000075 ], [ -122.674661066999974, 51.95866135800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999936849439016", "sL_AssetLoss": "97.54466", "sL_BldgLoss": "97.5385", "sL_StrLoss": "97.5", "sL_NStrLoss": "0.0385", "sL_ContLoss": "0.00616", "geom_point": "0101000020E610000071F4424BE8E75EC0318D70A4FDB04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.621330764999982, 51.384951533000063 ], [ -123.621336125999946, 51.384852007000127 ], [ -123.620860054000033, 51.384842021000097 ], [ -123.620870844999942, 51.384641742000042 ], [ -123.620359246999939, 51.384631008000028 ], [ -123.620374792999911, 51.384342569000069 ], [ -123.620099957999969, 51.384336802000078 ], [ -123.620115662999979, 51.384045429000068 ], [ -123.61975666399999, 51.384037894000095 ], [ -123.619950072999984, 51.380449619000096 ], [ -123.624322880999941, 51.380541313000052 ], [ -123.625700170999934, 51.380570159000094 ], [ -123.625693954999946, 51.380685778000029 ], [ -123.627148323999961, 51.380716221000071 ], [ -123.627107270999986, 51.381480223000068 ], [ -123.627274270999976, 51.381483718000041 ], [ -123.627081451999956, 51.385072002000058 ], [ -123.624083644999985, 51.385009238000102 ], [ -123.621330764999982, 51.384951533000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999994323125378", "sL_AssetLoss": "73.103605", "sL_BldgLoss": "73.10319", "sL_StrLoss": "73.1", "sL_NStrLoss": "0.00319", "sL_ContLoss": "0.000415", "geom_point": "0101000020E610000055329D2936E55EC07778F80017DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.578278180000012, 51.737035714000051 ], [ -123.578396364999918, 51.734898669000081 ], [ -123.578476542999923, 51.733448742000085 ], [ -123.579146184999942, 51.733462920000065 ], [ -123.579152019999967, 51.733357357000045 ], [ -123.582892084999955, 51.733436475000097 ], [ -123.584948317999988, 51.733479921000054 ], [ -123.584778304999986, 51.736562525000089 ], [ -123.584495687999919, 51.736425109 ], [ -123.584377202999917, 51.736255589000045 ], [ -123.583900890999971, 51.736321203000102 ], [ -123.58370908899991, 51.736016412000076 ], [ -123.583260007999954, 51.736036292000072 ], [ -123.582869082999949, 51.73609189900008 ], [ -123.582418385999944, 51.736022091000088 ], [ -123.581609214999943, 51.736170199000092 ], [ -123.580987086999954, 51.736056300000037 ], [ -123.580756208999929, 51.736174509000044 ], [ -123.5808598, 51.736443602000058 ], [ -123.581439185999926, 51.736457895000036 ], [ -123.58135679499999, 51.736801114000066 ], [ -123.581460189, 51.73688940100007 ], [ -123.582142595999969, 51.737048915000095 ], [ -123.582331809999957, 51.737029 ], [ -123.582762304999932, 51.736739902000082 ], [ -123.583369405999974, 51.736791201000095 ], [ -123.583532404999971, 51.736996189000131 ], [ -123.583569672999957, 51.737147646000025 ], [ -123.578278180000012, 51.737035714000051 ] ], [ [ -123.581753897999974, 51.734892687000062 ], [ -123.581419202999925, 51.734741704000037 ], [ -123.581288616999956, 51.7347873000001 ], [ -123.580913198999951, 51.734932585000074 ], [ -123.581077683999951, 51.735245900000081 ], [ -123.581628116999951, 51.735244493000046 ], [ -123.58184339099995, 51.735153289000024 ], [ -123.581753897999974, 51.734892687000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023966", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.3", "sL_BldgLoss": "43.3", "sL_StrLoss": "43.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C1118BB58BC95EC0047CAF081BFE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.147175816999919, 51.987296005000097 ], [ -123.147226881, 51.986516963000064 ], [ -123.14505784, 51.986463146000069 ], [ -123.14529301, 51.982877794000089 ], [ -123.149222370999951, 51.982975256 ], [ -123.151121184999937, 51.983022306000102 ], [ -123.151024401999948, 51.984500921000063 ], [ -123.153707089999983, 51.98456734000009 ], [ -123.153533359999983, 51.987223790000051 ], [ -123.14966451399999, 51.987281464000127 ], [ -123.147175816999919, 51.987296005000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023969", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999984369289673", "sL_AssetLoss": "80.61054", "sL_BldgLoss": "80.60928", "sL_StrLoss": "80.6", "sL_NStrLoss": "0.00928", "sL_ContLoss": "0.00126", "geom_point": "0101000020E6100000B60E501279CF5EC0CD7EB46A1DD44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.239114942999933, 51.659184433000085 ], [ -123.23914139, 51.658764236000046 ], [ -123.238326141999949, 51.658744512000105 ], [ -123.23848445299997, 51.656229884000084 ], [ -123.238551934000029, 51.655157908000042 ], [ -123.239146407999954, 51.655172290000053 ], [ -123.23915731799994, 51.654998923000036 ], [ -123.242915105999941, 51.655089768000046 ], [ -123.244942250999927, 51.655138723000086 ], [ -123.244904973999951, 51.655732291000092 ], [ -123.245125684999934, 51.655737619000064 ], [ -123.24490042799999, 51.659324235000049 ], [ -123.239114942999933, 51.659184433000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "65.2", "sL_BldgLoss": "65.2", "sL_StrLoss": "65.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A953377AE9D25EC02C4AA6966FD44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.292627773999982, 51.66168813600008 ], [ -123.292665350999926, 51.661079336000093 ], [ -123.292365805999935, 51.661072230000073 ], [ -123.292417979999968, 51.660227006000078 ], [ -123.292587192999946, 51.657485528000116 ], [ -123.29837262299999, 51.657622620000076 ], [ -123.29833512799992, 51.658231425000082 ], [ -123.298634653999912, 51.658238515000022 ], [ -123.298598564999907, 51.658824564000042 ], [ -123.298413756999977, 51.66182522700008 ], [ -123.292627773999982, 51.66168813600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.99998670329084", "sL_AssetLoss": "58.510718", "sL_BldgLoss": "58.50994", "sL_StrLoss": "58.5", "sL_NStrLoss": "0.00994", "sL_ContLoss": "0.000778", "geom_point": "0101000020E61000002C88793D75C05EC046F01A4FDFDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.004567530999964, 51.723699466000028 ], [ -123.0101726799999, 51.723846222000077 ], [ -123.009927842, 51.727432125000064 ], [ -123.004134146999888, 51.727280429000139 ], [ -123.004366988, 51.723876845000063 ], [ -123.004567530999964, 51.723699466000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F7442A6C4C35EC08643CAAAE3F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.05608881199997, 51.919143123000033 ], [ -123.06190817099997, 51.919292161000058 ], [ -123.061666488999947, 51.922877540000066 ], [ -123.055846652999946, 51.922728490000083 ], [ -123.05608881199997, 51.919143123000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023982", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.5", "sL_BldgLoss": "44.5", "sL_StrLoss": "44.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019490E1AF2D15EC06AC3BC2253094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.281933838999976, 52.07514914100009 ], [ -123.281940099999971, 52.075049086000021 ], [ -123.281725362999978, 52.075044022000085 ], [ -123.281560913999925, 52.074961102000024 ], [ -123.280596076999942, 52.074647799000111 ], [ -123.279661302999941, 52.074550899000045 ], [ -123.278903198999913, 52.074589396000107 ], [ -123.278209351000015, 52.074461294000059 ], [ -123.278235659999964, 52.074041468000111 ], [ -123.273893769999958, 52.073938863000073 ], [ -123.273397411999937, 52.073837390000094 ], [ -123.272735362999953, 52.073653650000033 ], [ -123.272944308999968, 52.070325739000104 ], [ -123.278784625999918, 52.070463774000125 ], [ -123.27873122699999, 52.071316130000078 ], [ -123.284247376999971, 52.071446231000046 ], [ -123.284243220999983, 52.07151273 ], [ -123.284798761, 52.071525818000062 ], [ -123.284791745999939, 52.071638051000058 ], [ -123.287997947999983, 52.071713534000104 ], [ -123.28777407199999, 52.075298899000046 ], [ -123.281959210999958, 52.075161935 ], [ -123.281933838999976, 52.07514914100009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000091EF31DCA9975EC025F93A3E140D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.367748938999966, 52.105191594000075 ], [ -122.367879599, 52.103630896000013 ], [ -122.365856378999979, 52.103567146000046 ], [ -122.365948136999961, 52.102471666000049 ], [ -122.365915859999959, 52.102470649000061 ], [ -122.366215958999973, 52.098887459000089 ], [ -122.372056757999957, 52.099071400000113 ], [ -122.371965161999981, 52.100166888000061 ], [ -122.371997436999948, 52.100167904000031 ], [ -122.371866934999915, 52.10172861100007 ], [ -122.373890077999988, 52.10179225500012 ], [ -122.373590591999942, 52.105375457 ], [ -122.367748938999966, 52.105191594000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999998385122657", "sL_AssetLoss": "80.50147", "sL_BldgLoss": "80.50134", "sL_StrLoss": "80.5", "sL_NStrLoss": "0.00134", "sL_ContLoss": "0.00013", "geom_point": "0101000020E6100000758FCFD895C45EC0A9DCE10212C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.073745019999961, 51.561307264000121 ], [ -123.074651405999987, 51.561330555000055 ], [ -123.074584778, 51.562331853 ], [ -123.074412732, 51.564917149000109 ], [ -123.068640223999921, 51.564768696000066 ], [ -123.068879368999944, 51.561182114000076 ], [ -123.073745019999961, 51.561307264000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B22B2D2375B45EC0A4EA0DAD04EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.822906444999916, 51.86503090500009 ], [ -122.824539930999961, 51.865076149000053 ], [ -122.824279059999981, 51.868661181000093 ], [ -122.822892545999977, 51.868622778000031 ], [ -122.822166244999949, 51.868602655000089 ], [ -122.821993974999913, 51.868597882000074 ], [ -122.821910226999961, 51.86974783600003 ], [ -122.820645634999977, 51.869712786000029 ], [ -122.820644870999956, 51.869723266000058 ], [ -122.81483297699998, 51.869562003000077 ], [ -122.81509462799994, 51.865976996000072 ], [ -122.815493348999937, 51.865988069000075 ], [ -122.815527438999965, 51.865520907000111 ], [ -122.81864809299995, 51.865607522000047 ], [ -122.818678104999947, 51.865608354000095 ], [ -122.818728640999979, 51.864915082000046 ], [ -122.822906444999916, 51.86503090500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000991CEBA0DA955EC016ABFEEF250E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.343343803999957, 52.108795887000063 ], [ -122.344541125, 52.108833847000064 ], [ -122.34433726899999, 52.111252938000064 ], [ -122.344239168999962, 52.112416951000107 ], [ -122.338396692999979, 52.11223160400008 ], [ -122.338575512999924, 52.110113124000073 ], [ -122.338699128999934, 52.108648514000095 ], [ -122.343343803999957, 52.108795887000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F2C48F1B9965EC0C446B4788C104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.352327340999921, 52.127402970000048 ], [ -122.358171917999954, 52.127587611000067 ], [ -122.357870956999975, 52.131170694000041 ], [ -122.352025897999908, 52.130986039000049 ], [ -122.352327340999921, 52.127402970000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59023998", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7825083", "BldgCostT": "4428333", "sL_LossRatio": "1", "sL_AssetLoss": "103.6", "sL_BldgLoss": "103.6", "sL_StrLoss": "103.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D4A8F203F8CE5EC09D4C58F2630F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.230837726999965, 52.124120004000133 ], [ -123.230857809999975, 52.123805407000056 ], [ -123.230765006999903, 52.12380317900007 ], [ -123.230761965999974, 52.123850811000111 ], [ -123.224914620999925, 52.123710349000135 ], [ -123.225143937999931, 52.12012525200003 ], [ -123.230215974999979, 52.120247107000061 ], [ -123.230219015999964, 52.120199476000082 ], [ -123.230372862999985, 52.120203169000064 ], [ -123.230664811999986, 52.120210176000064 ], [ -123.230683813999974, 52.119912487000178 ], [ -123.231650609000013, 52.119935685000051 ], [ -123.231652784999937, 52.119901587000093 ], [ -123.230389631999955, 52.11987127600004 ], [ -123.228335028999965, 52.119821945000069 ], [ -123.228381172999917, 52.119099630000036 ], [ -123.228331879999971, 52.119098446000066 ], [ -123.228351936999971, 52.118784458000057 ], [ -123.227768078999958, 52.118770432000133 ], [ -123.227883075999955, 52.116970615000092 ], [ -123.230771451999942, 52.116868226000086 ], [ -123.230843328999981, 52.116865667000077 ], [ -123.231176028999954, 52.116936387000138 ], [ -123.231252049999952, 52.116850937000088 ], [ -123.235052615999948, 52.116710722000043 ], [ -123.238428270999961, 52.116586073000057 ], [ -123.238420091999913, 52.116714583000046 ], [ -123.243559263999927, 52.116837468000071 ], [ -123.243501410999926, 52.117748106000114 ], [ -123.243243706, 52.117815600000078 ], [ -123.24238739799992, 52.118617406000126 ], [ -123.242201508999983, 52.119282484000102 ], [ -123.242597094999894, 52.119614387000048 ], [ -123.243363222999946, 52.119923098000058 ], [ -123.243331485999988, 52.120422611000016 ], [ -123.241241813000016, 52.120372672000038 ], [ -123.24122500699994, 52.120636961000024 ], [ -123.240911142999963, 52.120629457000071 ], [ -123.240892311999957, 52.120925569000079 ], [ -123.240438349, 52.120914714000058 ], [ -123.240422506999892, 52.121163781000106 ], [ -123.240220121, 52.12115894 ], [ -123.240189228999938, 52.121644586000095 ], [ -123.239067538999976, 52.121617754000027 ], [ -123.239054290999931, 52.121825913000059 ], [ -123.237403919999949, 52.12178641600007 ], [ -123.237259659999921, 52.124051753000096 ], [ -123.236699279, 52.12403833700013 ], [ -123.236685148, 52.124260166000091 ], [ -123.231010604999966, 52.124124152000036 ], [ -123.230837726999965, 52.124120004000133 ] ], [ [ -123.237695995999943, 52.116961943000064 ], [ -123.237710564999986, 52.116733106000041 ], [ -123.237656037999955, 52.116731800000053 ], [ -123.237641469999929, 52.116960638000087 ], [ -123.237695995999943, 52.116961943000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024000", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.2", "sL_BldgLoss": "50.2", "sL_StrLoss": "50.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D195544D5A55EC0C78EBE30B6014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.588773735999936, 52.015226996000088 ], [ -122.588793847999938, 52.014970634000065 ], [ -122.587398403999913, 52.014929259000056 ], [ -122.58767966, 52.011345246000154 ], [ -122.591442089999987, 52.011456762000044 ], [ -122.593509617, 52.011517990000108 ], [ -122.593489533999957, 52.011774353000085 ], [ -122.594884883999967, 52.011815654000038 ], [ -122.594639541999925, 52.014948622000134 ], [ -122.594604217999944, 52.01539968400003 ], [ -122.588773735999936, 52.015226996000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999943549819404", "sL_AssetLoss": "89.63656", "sL_BldgLoss": "89.6315", "sL_StrLoss": "89.6", "sL_NStrLoss": "0.0315", "sL_ContLoss": "0.00506", "geom_point": "0101000020E61000005FF5BA24D2E05EC050D9D92564CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.511534379999915, 51.602794708000019 ], [ -123.515817133999917, 51.60288812000006 ], [ -123.515755589, 51.60397635900005 ], [ -123.51561424499999, 51.606475424000116 ], [ -123.514710674999961, 51.606455730000036 ], [ -123.509834897999951, 51.60634933300004 ], [ -123.509961565999987, 51.604114954000131 ], [ -123.510038257999952, 51.602762038000044 ], [ -123.511534379999915, 51.602794708000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024005", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.4", "sL_BldgLoss": "43.4", "sL_StrLoss": "43.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EF33368D50A15EC08ED08DB819FB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.518606538999947, 51.964621208000089 ], [ -122.518682457999944, 51.96367186700008 ], [ -122.518674008999966, 51.963671611000073 ], [ -122.518777053999898, 51.962382994000073 ], [ -122.515349676999932, 51.962279124000098 ], [ -122.515636519999958, 51.958695125000077 ], [ -122.518498049999948, 51.958781854000101 ], [ -122.521459144999966, 51.958871524000067 ], [ -122.521356187999942, 51.960160148000057 ], [ -122.52478341199999, 51.960263839000092 ], [ -122.524736125999979, 51.960856243000144 ], [ -122.525469627999939, 51.96087842200005 ], [ -122.52522623699997, 51.963928014000075 ], [ -122.52518358, 51.964462438000048 ], [ -122.524458464999952, 51.964440513000071 ], [ -122.52442996799995, 51.964797457000024 ], [ -122.518606538999947, 51.964621208000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.2", "sL_BldgLoss": "43.2", "sL_StrLoss": "43.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C1AC0E8829CB5EC0AB828BF4A6FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.171373517999982, 51.97585455500009 ], [ -123.171410956, 51.975278364000133 ], [ -123.171386258999959, 51.975277757000065 ], [ -123.171522920999948, 51.973174323000165 ], [ -123.171619199999952, 51.971692316000087 ], [ -123.17434416499998, 51.971759313000085 ], [ -123.177445966999969, 51.971835496000026 ], [ -123.177408610999976, 51.972411691000033 ], [ -123.177433306999959, 51.972412297000055 ], [ -123.177200838999966, 51.975997747000086 ], [ -123.171373517999982, 51.97585455500009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "84", "sL_BldgLoss": "84", "sL_StrLoss": "84", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9E30F6948A25EC0639897EC6DFC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.52985209699996, 51.977209887000107 ], [ -122.530012609999972, 51.975196728000107 ], [ -122.529335120000013, 51.975176277000074 ], [ -122.529620896999958, 51.971592283000099 ], [ -122.530228319999978, 51.971610620000057 ], [ -122.53083278699998, 51.971628864000067 ], [ -122.53084194899999, 51.971513913000067 ], [ -122.531168241000017, 51.971523760000082 ], [ -122.531262304999942, 51.970343421000059 ], [ -122.532713221999941, 51.970387195000058 ], [ -122.53276848199998, 51.969693456000087 ], [ -122.535166499999946, 51.969765764000122 ], [ -122.535235414999974, 51.968899957000126 ], [ -122.535341405999958, 51.967568314000061 ], [ -122.54116529599996, 51.96774371500009 ], [ -122.541156018, 51.967860475000066 ], [ -122.543425818999978, 51.967928755000067 ], [ -122.54326879499996, 51.969906163000118 ], [ -122.543141201999944, 51.97151279400002 ], [ -122.54197257099996, 51.971477645000107 ], [ -122.541953164999981, 51.971721923000089 ], [ -122.538453667999974, 51.971616597000065 ], [ -122.538307617000015, 51.973453008000142 ], [ -122.536856593999957, 51.973409304000064 ], [ -122.536801392999934, 51.974103043000085 ], [ -122.536475080999963, 51.974093212000128 ], [ -122.536381149999954, 51.975273551000079 ], [ -122.535846647999975, 51.975257446000036 ], [ -122.53567725399995, 51.977385564000045 ], [ -122.530682664999972, 51.977234954000018 ], [ -122.52985209699996, 51.977209887000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024011", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.9", "sL_BldgLoss": "53.9", "sL_StrLoss": "53.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A21E6826D4A35EC0FB682739960F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.556792753999972, 52.123548192000094 ], [ -122.557077243, 52.119964582000136 ], [ -122.562921664999976, 52.120138858000111 ], [ -122.562637659999936, 52.123722483000059 ], [ -122.56205942499993, 52.123705254000051 ], [ -122.561606983999951, 52.123418407000038 ], [ -122.56102582299999, 52.123210500000035 ], [ -122.560734109999956, 52.123181997000096 ], [ -122.559019392999943, 52.123562307000014 ], [ -122.55891873299997, 52.123611622000034 ], [ -122.556792753999972, 52.123548192000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024012", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "70.3", "sL_BldgLoss": "70.3", "sL_StrLoss": "70.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B2007469AA75EC068071A3BFAD14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.615421286999933, 51.642953876000043 ], [ -122.615448018, 51.64260739100007 ], [ -122.615255304999977, 51.64260167300003 ], [ -122.615531901999958, 51.639016383000104 ], [ -122.616471507999947, 51.639044263000081 ], [ -122.616569234999943, 51.637777006000093 ], [ -122.622349695999944, 51.637948347000119 ], [ -122.62207366299999, 51.641533656000128 ], [ -122.621326708999973, 51.641511532000067 ], [ -122.621280249, 51.642114807000013 ], [ -122.62120242499999, 51.643125274000042 ], [ -122.618340806999981, 51.643040470000095 ], [ -122.615421286999933, 51.642953876000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35", "sL_BldgLoss": "35", "sL_StrLoss": "35", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3E94AFCF8CF5EC022895E46B10A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.24717949099994, 52.085285991000092 ], [ -123.247181100999953, 52.085260571000127 ], [ -123.245894943999943, 52.08522985600009 ], [ -123.246122326999952, 52.081644603000072 ], [ -123.251964078999961, 52.08178399500008 ], [ -123.251962469999938, 52.08180941500008 ], [ -123.25324853299999, 52.08184006199999 ], [ -123.25302173599999, 52.085425330000064 ], [ -123.24717949099994, 52.085285991000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024016", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35", "sL_BldgLoss": "35", "sL_StrLoss": "35", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1BC5065FDCD5EC0611F19824E0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.215775519999909, 52.105670334000095 ], [ -123.215809026999978, 52.105148036000081 ], [ -123.215680452999933, 52.105144932000059 ], [ -123.21569523, 52.104914603000068 ], [ -123.215872966999953, 52.102143921000106 ], [ -123.21722946099996, 52.102134514000056 ], [ -123.221179194999962, 52.102107007 ], [ -123.221535154999913, 52.105809208000039 ], [ -123.216817275999915, 52.105695474000122 ], [ -123.215775519999909, 52.105670334000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024024", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FA33D5F6E3945EC030F7240B730C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.323645428999939, 52.095376232000049 ], [ -122.329485574999964, 52.09556232900011 ], [ -122.329182469999978, 52.099145433000075 ], [ -122.323341842999966, 52.098959321000102 ], [ -122.323645428999939, 52.095376232000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024025", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "75.2", "sL_BldgLoss": "75.2", "sL_StrLoss": "75.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B583196CCDA65EC029C6E0FE2FC64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.60363982, 51.546117729000066 ], [ -122.609408188999964, 51.546289740000077 ], [ -122.609131676999979, 51.549875334000028 ], [ -122.608989670999946, 51.549871103000072 ], [ -122.608936410999945, 51.550561637000101 ], [ -122.60316748299999, 51.550389603000077 ], [ -122.603444484999898, 51.546804026000103 ], [ -122.603586479999962, 51.546808263000116 ], [ -122.60363982, 51.546117729000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.5", "sL_BldgLoss": "39.5", "sL_StrLoss": "39.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AAE8D52173D85EC0A8778E54210B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.379125705999968, 52.088485354000106 ], [ -123.379127779999962, 52.088451012000093 ], [ -123.377583950999963, 52.088415913000063 ], [ -123.377637407999927, 52.087530778000023 ], [ -123.377748229999966, 52.085695710000039 ], [ -123.377835487999988, 52.085705408000109 ], [ -123.379529199999979, 52.085753801000124 ], [ -123.381147387999931, 52.085568597000133 ], [ -123.382735079999918, 52.085275192000047 ], [ -123.384062819999912, 52.085181207000041 ], [ -123.386444040999933, 52.085561216000031 ], [ -123.386327368999957, 52.087499593000054 ], [ -123.386312994999969, 52.087738378000061 ], [ -123.38502353, 52.087709143000033 ], [ -123.384968794999907, 52.088618010000097 ], [ -123.379125705999968, 52.088485354000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024028", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "63.4", "sL_BldgLoss": "63.4", "sL_StrLoss": "63.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F573B7A949C45EC07F2CC8BFE4E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.069003595999973, 51.775082365000088 ], [ -123.069046654999966, 51.774439761000082 ], [ -123.068503621999952, 51.774425852000057 ], [ -123.068526057999961, 51.774091075000094 ], [ -123.068477492999961, 51.774089832000129 ], [ -123.068475199999924, 51.774124023000063 ], [ -123.065933172999934, 51.774058878000062 ], [ -123.062675122999963, 51.773975299 ], [ -123.062709262999945, 51.773466902000116 ], [ -123.061438111999948, 51.773434268000138 ], [ -123.061501433999979, 51.772491676000129 ], [ -123.060936058999971, 51.772477156000036 ], [ -123.061176969999934, 51.768891294000063 ], [ -123.061914222999945, 51.768910227000106 ], [ -123.063671017999923, 51.768955322000053 ], [ -123.063766480999945, 51.769483899000058 ], [ -123.064141994999929, 51.769492406000062 ], [ -123.064823908999955, 51.769905394000027 ], [ -123.064867595999928, 51.769996613000103 ], [ -123.064549995999982, 51.770274297000078 ], [ -123.064811189999944, 51.770886713000046 ], [ -123.065216682999989, 51.770876792000138 ], [ -123.065885195999925, 51.771343914000028 ], [ -123.066565614999945, 51.771595997000148 ], [ -123.067130494999958, 51.771694197000066 ], [ -123.069073519999932, 51.771684303000029 ], [ -123.069625192999979, 51.771917911000138 ], [ -123.071000784999967, 51.772078807000057 ], [ -123.071698003999941, 51.772348003000083 ], [ -123.072263020999969, 51.772427705000069 ], [ -123.07271287499999, 51.772894894000082 ], [ -123.074133115999928, 51.773263691000082 ], [ -123.074897830999987, 51.773825303000123 ], [ -123.074803841999938, 51.775230769000082 ], [ -123.069003595999973, 51.775082365000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "38.8", "sL_BldgLoss": "38.8", "sL_StrLoss": "38.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DEFEB973AC65EC0FB185A3AF2F44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.096321430999978, 51.917220466000039 ], [ -123.096342390999922, 51.916905794000115 ], [ -123.096175046999946, 51.916901562000113 ], [ -123.096249048999979, 51.915790575000059 ], [ -123.095472897999954, 51.915770946000087 ], [ -123.095603650999976, 51.913808339000056 ], [ -123.094871316999928, 51.913808931000041 ], [ -123.094871169999934, 51.91373903700002 ], [ -123.092177913999976, 51.913670862000053 ], [ -123.092251810999969, 51.912562895000057 ], [ -123.092251605999962, 51.912462350000055 ], [ -123.091379315999944, 51.912463029000079 ], [ -123.091378557000013, 51.912089676000079 ], [ -123.091376030999953, 51.910844635000018 ], [ -123.092366455999937, 51.910843862000029 ], [ -123.0923990899999, 51.910354516000027 ], [ -123.092417036999976, 51.910085391000031 ], [ -123.098235309999936, 51.910232590000092 ], [ -123.09810614499996, 51.912173282000033 ], [ -123.098101311999969, 51.91224589300009 ], [ -123.098177732999915, 51.91224782400014 ], [ -123.10153032599996, 51.91233250600007 ], [ -123.101456463999938, 51.913443500000064 ], [ -123.102232577999985, 51.913463089000089 ], [ -123.102211661999931, 51.913777763000013 ], [ -123.10237899399999, 51.913781986000082 ], [ -123.102168003999964, 51.916956265000074 ], [ -123.102140668999979, 51.917367466000044 ], [ -123.096321430999978, 51.917220466000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.4", "sL_BldgLoss": "36.4", "sL_StrLoss": "36.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009DE90C2992945EC07E51C41A950E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.31968901799992, 52.115670100000081 ], [ -122.319689637999929, 52.115662790000066 ], [ -122.31700611799999, 52.115577129000037 ], [ -122.317310344999953, 52.111994106000061 ], [ -122.323152698999934, 52.112180520000109 ], [ -122.323152079999929, 52.112187831000043 ], [ -122.323567971999964, 52.112201089000081 ], [ -122.325835400999921, 52.112273349000112 ], [ -122.32553187799999, 52.115856394000041 ], [ -122.320547102999953, 52.115697478000094 ], [ -122.31968901799992, 52.115670100000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999970291350441", "sL_AssetLoss": "87.5166", "sL_BldgLoss": "87.514", "sL_StrLoss": "87.5", "sL_NStrLoss": "0.014", "sL_ContLoss": "0.0026", "geom_point": "0101000020E610000071A5C784D2C35EC0DECC851D08CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.059183080999986, 51.583941381000066 ], [ -123.062850919999974, 51.584036004000055 ], [ -123.062701847999975, 51.586265975000074 ], [ -123.062611158999943, 51.587622494000094 ], [ -123.06235704, 51.587615942000127 ], [ -123.062302799999955, 51.587614543000029 ], [ -123.062251590999935, 51.588380401000052 ], [ -123.056476043999936, 51.588231336000014 ], [ -123.056636332999958, 51.58583874600005 ], [ -123.056854486999924, 51.585540098000109 ], [ -123.05687638399999, 51.584648997000023 ], [ -123.057024645999903, 51.584652826000081 ], [ -123.057046229999983, 51.58433056000009 ], [ -123.05716907799993, 51.584272598000041 ], [ -123.058022077, 51.584227003000137 ], [ -123.058799502999946, 51.584064595000029 ], [ -123.059183080999986, 51.583941381000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999944139799462", "sL_AssetLoss": "98.81812", "sL_BldgLoss": "98.8126", "sL_StrLoss": "98.8", "sL_NStrLoss": "0.0126", "sL_ContLoss": "0.00552", "geom_point": "0101000020E6100000F6ED874C77C25EC04235B10274DC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.035856330999977, 51.720277595000027 ], [ -123.041649209999946, 51.720427686000029 ], [ -123.041461908999935, 51.723200401 ], [ -123.041406968, 51.724013667000108 ], [ -123.041226646999959, 51.72400899900002 ], [ -123.041206777999918, 51.724303072000033 ], [ -123.040172330999937, 51.724276290000041 ], [ -123.035413387999967, 51.724152960000048 ], [ -123.035656121999949, 51.720566991000048 ], [ -123.035836428999957, 51.720571668000041 ], [ -123.035856330999977, 51.720277595000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008BA9B2F73B975EC05F45E3DC680F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.360063818999919, 52.122418465000088 ], [ -122.360118769999957, 52.121763762000057 ], [ -122.359862058999937, 52.121755661000101 ], [ -122.360162789999919, 52.118172544000103 ], [ -122.366006157999962, 52.11835678900006 ], [ -122.365951299999978, 52.11901149700001 ], [ -122.366207998, 52.119019585000075 ], [ -122.36590776, 52.122602715 ], [ -122.360063818999919, 52.122418465000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41.7", "sL_BldgLoss": "41.7", "sL_StrLoss": "41.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D15BFA9F55A05EC0FCAB6453F0094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.50245123299996, 52.075766297000015 ], [ -122.508289487999946, 52.075943346000017 ], [ -122.508001265999937, 52.079526967000099 ], [ -122.502769914999959, 52.079368338000052 ], [ -122.502162527999971, 52.079349905000136 ], [ -122.502411769999952, 52.076256175000047 ], [ -122.50245123299996, 52.075766297000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024041", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD6C201B50ED5EC0A9184229B5CC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.709735397999935, 51.600961385000097 ], [ -123.709731193999957, 51.600691659000105 ], [ -123.70929807499999, 51.600694276000105 ], [ -123.709293871999975, 51.600424550000106 ], [ -123.707561404999964, 51.600435005000065 ], [ -123.707565596999984, 51.600704732000096 ], [ -123.705399997999962, 51.60071776500007 ], [ -123.7053958199999, 51.600448038000117 ], [ -123.703230231999925, 51.600461031000052 ], [ -123.703226064999981, 51.600191304000127 ], [ -123.701493604999939, 51.600201670000104 ], [ -123.701489447999933, 51.599931942000083 ], [ -123.700623222999965, 51.599937116000085 ], [ -123.70061907199999, 51.599667389000047 ], [ -123.699752850999971, 51.599672556000073 ], [ -123.699748705999951, 51.599402828000102 ], [ -123.699315596999938, 51.599405410000038 ], [ -123.699294883999983, 51.598056774000071 ], [ -123.701460358999952, 51.598043854000117 ], [ -123.701468670999986, 51.598583308000059 ], [ -123.70276796899999, 51.598575537000052 ], [ -123.702772132999911, 51.598845263000051 ], [ -123.704071437999943, 51.598837477000131 ], [ -123.704075610999922, 51.599107205000095 ], [ -123.708406654, 51.599081148000067 ], [ -123.708394063999961, 51.598271967000102 ], [ -123.709260256999954, 51.598266738000056 ], [ -123.709256053999965, 51.597997011000068 ], [ -123.710122240999951, 51.597991774000043 ], [ -123.710118033999919, 51.597722048000094 ], [ -123.71228348899993, 51.597708928000024 ], [ -123.712287707999977, 51.597978655000105 ], [ -123.71272080199995, 51.597976026000069 ], [ -123.712716578999945, 51.597706300000048 ], [ -123.715315120999946, 51.597690494000055 ], [ -123.715340546000036, 51.599308852000028 ], [ -123.714474334999963, 51.599314127000099 ], [ -123.71447856899999, 51.599583852000087 ], [ -123.714045460999898, 51.59958648800005 ], [ -123.714049690999957, 51.599856214000049 ], [ -123.712317246999987, 51.599866739000078 ], [ -123.712325686999989, 51.600406192000086 ], [ -123.711892569999947, 51.600408819000066 ], [ -123.7118967899999, 51.600678546000069 ], [ -123.711030550999965, 51.600683795000052 ], [ -123.71103476299993, 51.600953522000133 ], [ -123.709735397999935, 51.600961385000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024042", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.2", "sL_BldgLoss": "46.2", "sL_StrLoss": "46.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004878EF66559F5EC01118EB1B180A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.486813230999985, 52.076980022000058 ], [ -122.492651587999944, 52.077157863000089 ], [ -122.492362066999974, 52.080741441000065 ], [ -122.486523229999989, 52.08056358700005 ], [ -122.486813230999985, 52.076980022000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.7", "sL_BldgLoss": "60.7", "sL_StrLoss": "60.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4A747C753C55EC0B3EAF7ED39D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.080721118000014, 51.687134426000114 ], [ -123.086509771999928, 51.687282249000063 ], [ -123.086277694999964, 51.69077345500007 ], [ -123.086271379999971, 51.690868436000109 ], [ -123.086059388999942, 51.690863028000116 ], [ -123.085792233999953, 51.690856211000053 ], [ -123.08578427499999, 51.690975909000095 ], [ -123.085755991999974, 51.691401248 ], [ -123.084806655999941, 51.691377021000044 ], [ -123.079966798, 51.691253387000096 ], [ -123.079982013999967, 51.691025 ], [ -123.08020570799999, 51.687667215000012 ], [ -123.080461860999932, 51.68767376300012 ], [ -123.08068481899997, 51.687679463000045 ], [ -123.080721118000014, 51.687134426000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024046", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.5", "sL_BldgLoss": "39.5", "sL_StrLoss": "39.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AAA7E2080ADB5EC044575CFB860D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.425794040999932, 52.102649486000118 ], [ -123.426150918999952, 52.102657450000095 ], [ -123.42610026499996, 52.103511667000063 ], [ -123.425938290999937, 52.106242983000101 ], [ -123.425666302999957, 52.106236914000142 ], [ -123.42557167799994, 52.107832190000096 ], [ -123.424184348999958, 52.107801223000124 ], [ -123.424163837999984, 52.108146823000048 ], [ -123.418318001000017, 52.10801615400009 ], [ -123.418499680999943, 52.104961719000059 ], [ -123.41851621499994, 52.10468373200009 ], [ -123.419693872999915, 52.104524895000083 ], [ -123.42063979299995, 52.104207312000078 ], [ -123.422382987999967, 52.103211692000066 ], [ -123.422658193999979, 52.103085013000104 ], [ -123.423881798999901, 52.102801606000064 ], [ -123.425574688999987, 52.102706114000043 ], [ -123.425794040999932, 52.102649486000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024047", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000047386F94E3A35EC04EE5FE34FFFB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.56001396799995, 51.971287246000074 ], [ -122.560016608999931, 51.971017524000018 ], [ -122.559579907999989, 51.971015891000043 ], [ -122.559582552000037, 51.97074616900008 ], [ -122.558709155999935, 51.970742899000115 ], [ -122.558711805, 51.970473178000127 ], [ -122.558275108999936, 51.970471540000034 ], [ -122.558277761999975, 51.970201818000078 ], [ -122.55784106899992, 51.970200180000099 ], [ -122.557851685999978, 51.96912129100005 ], [ -122.558725051999915, 51.969124567000023 ], [ -122.558727700999967, 51.968854845000081 ], [ -122.559601060999938, 51.968858114000149 ], [ -122.559608992999969, 51.968048948000096 ], [ -122.560045663, 51.968050579000071 ], [ -122.560053587999974, 51.967241413000082 ], [ -122.559616922999936, 51.967239780000064 ], [ -122.559627495999962, 51.966160891000136 ], [ -122.560064150999949, 51.96616252400004 ], [ -122.560066791999986, 51.965892801000066 ], [ -122.561376743999944, 51.965897687000059 ], [ -122.561374111999953, 51.966167409000029 ], [ -122.561810765999951, 51.966169035000092 ], [ -122.561808135999939, 51.966438758000031 ], [ -122.562244792999962, 51.966440382000073 ], [ -122.56224216599999, 51.966710104000043 ], [ -122.562678822999914, 51.966711727000124 ], [ -122.562676198999952, 51.966981449000059 ], [ -122.56311286099999, 51.96698307 ], [ -122.563094501999927, 51.968871127000092 ], [ -122.562657819999984, 51.968869506000075 ], [ -122.562655194999962, 51.969139228000067 ], [ -122.562218512999934, 51.969137606000039 ], [ -122.562215884999944, 51.969407328000045 ], [ -122.561779198999929, 51.969405704000053 ], [ -122.561773936999927, 51.9699451480001 ], [ -122.562210627999931, 51.969946772000085 ], [ -122.562200114999939, 51.971025661000091 ], [ -122.561326712999985, 51.971022411000071 ], [ -122.561324078999945, 51.971292132000066 ], [ -122.56001396799995, 51.971287246000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024050", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5678978", "BldgCostT": "3294857", "sL_LossRatio": "0.839360937475661", "sL_AssetLoss": "287.60128", "sL_BldgLoss": "241.40128", "sL_StrLoss": "224.70128", "sL_NStrLoss": "16.7", "sL_ContLoss": "46.2", "geom_point": "0101000020E610000012128A29A8BF5EC0AF205191D8D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.994736850999985, 51.700085925000067 ], [ -122.994773333999902, 51.699553979000065 ], [ -122.994143566999924, 51.699537410000083 ], [ -122.994179852999977, 51.699008431000024 ], [ -122.993289071999953, 51.69898498800007 ], [ -122.99343489799999, 51.696859676000038 ], [ -122.993108610999954, 51.696851087000077 ], [ -122.99320631399999, 51.695427170000094 ], [ -122.991511648999975, 51.695382547000051 ], [ -122.99158184, 51.69436011100008 ], [ -122.987458868999965, 51.69425144200008 ], [ -122.987705357999971, 51.690665475000053 ], [ -122.988271939999947, 51.690680418000106 ], [ -122.988318374999935, 51.690004689000055 ], [ -122.989236376999941, 51.69002889300004 ], [ -122.989240737000017, 51.689965412000035 ], [ -122.990703054, 51.690003952000062 ], [ -122.990789146999973, 51.688750047000049 ], [ -122.991521306999957, 51.68876933600005 ], [ -122.99193545899999, 51.688780246000057 ], [ -122.991940000999961, 51.688714074000124 ], [ -122.997728559, 51.688866394000044 ], [ -122.99767404, 51.689662275000032 ], [ -122.997933306000022, 51.689669090000038 ], [ -122.997687656999972, 51.693255082000078 ], [ -122.997457705999963, 51.693249037000015 ], [ -122.997449223999979, 51.693372829000069 ], [ -122.99914381799999, 51.693417365000109 ], [ -122.99902187499994, 51.695198127000076 ], [ -122.998998278999977, 51.695542692000139 ], [ -122.999324556999966, 51.695551263000041 ], [ -122.99928833499996, 51.696080246000115 ], [ -123.000179062, 51.696103642000068 ], [ -123.000142646, 51.696635590000035 ], [ -123.000772374999954, 51.69665212700005 ], [ -123.000526919999942, 51.700238101000053 ], [ -122.994736850999985, 51.700085925000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024052", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.9", "sL_BldgLoss": "51.9", "sL_StrLoss": "51.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ECF82F1084A45EC05211024DDF114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.567428936999974, 52.142456448000118 ], [ -122.567597792999962, 52.140323845000054 ], [ -122.567349084999975, 52.140316448000114 ], [ -122.567447583999979, 52.139072422000055 ], [ -122.56650644199999, 52.139044428000048 ], [ -122.566526357999962, 52.138792951000013 ], [ -122.566512159999903, 52.138792528000096 ], [ -122.566795943999963, 52.135208939000023 ], [ -122.567765680999941, 52.135237784000012 ], [ -122.567817993999981, 52.135265016000069 ], [ -122.56766189199999, 52.136145205000062 ], [ -122.567965910999973, 52.136488394000089 ], [ -122.568519484999939, 52.136741909000101 ], [ -122.568839610999945, 52.136778908000068 ], [ -122.569712918, 52.137079395000121 ], [ -122.570529494999988, 52.137226113000089 ], [ -122.570849794999901, 52.137505313000077 ], [ -122.571419178999989, 52.137508092000054 ], [ -122.571915408, 52.137518103000069 ], [ -122.572491579999962, 52.136962690000104 ], [ -122.57254189299999, 52.136834903000057 ], [ -122.572538433999938, 52.136878656000107 ], [ -122.573479532999926, 52.136906601000156 ], [ -122.573338798999941, 52.138687252000032 ], [ -122.574936104999892, 52.138734666000047 ], [ -122.57465297, 52.142318264000075 ], [ -122.573304252999918, 52.142278231000034 ], [ -122.573276429999936, 52.142630197000081 ], [ -122.567428936999974, 52.142456448000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024058", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.7", "sL_BldgLoss": "46.7", "sL_StrLoss": "46.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000806AD1399A05EC0D5E8382B60FA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.506947113, 51.953940532000054 ], [ -122.506981572999962, 51.953510950000116 ], [ -122.506993030999979, 51.953368109000067 ], [ -122.512814907999967, 51.953544946000129 ], [ -122.512781280999931, 51.953964845000044 ], [ -122.513700005999965, 51.953992724000052 ], [ -122.513573158999947, 51.955577001000094 ], [ -122.513413033999896, 51.957576733000103 ], [ -122.512778998999963, 51.957557494000156 ], [ -122.512735537999973, 51.958100148000071 ], [ -122.511901444999978, 51.958074833000083 ], [ -122.511865927999935, 51.958518168000076 ], [ -122.510787552999915, 51.958485430000088 ], [ -122.510773587999893, 51.958659695000016 ], [ -122.504951035999937, 51.958482755000077 ], [ -122.505167160999974, 51.955790211000128 ], [ -122.505238708999968, 51.95489876900006 ], [ -122.506108372999975, 51.954925216000099 ], [ -122.506189229999933, 51.95391749 ], [ -122.506214077999957, 51.953918246000086 ], [ -122.506947113, 51.953940532000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024059", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999976889195247", "sL_AssetLoss": "79.61644", "sL_BldgLoss": "79.6146", "sL_StrLoss": "79.6", "sL_NStrLoss": "0.0146", "sL_ContLoss": "0.00184", "geom_point": "0101000020E6100000FD711483F49B5EC07B7AD76684C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.434816593000022, 51.54557263800011 ], [ -122.434868619999932, 51.544931018000042 ], [ -122.432822364999979, 51.544866887000083 ], [ -122.433113208999913, 51.541281714000029 ], [ -122.43325519299999, 51.541286165000031 ], [ -122.433330256999938, 51.540360717000034 ], [ -122.439097190999973, 51.540541355000123 ], [ -122.439023214999978, 51.541454837000089 ], [ -122.439953020999937, 51.541483934 ], [ -122.439900103999889, 51.54213752800004 ], [ -122.44087443299999, 51.542168010000076 ], [ -122.440584214999916, 51.5457532 ], [ -122.434816593000022, 51.54557263800011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024061", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.3", "sL_BldgLoss": "51.3", "sL_StrLoss": "51.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AEA1B3505BAC5EC0DFAD667C63FA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.691038422999966, 51.958061584000042 ], [ -122.69111535899998, 51.957049147000077 ], [ -122.688330221999962, 51.95696892200008 ], [ -122.688602802999952, 51.953384486000068 ], [ -122.68897525299991, 51.953395218000082 ], [ -122.689013216999953, 51.952895895000061 ], [ -122.694835748999978, 51.953063517000025 ], [ -122.694684798999916, 51.955052353000049 ], [ -122.697877475999988, 51.955144140000087 ], [ -122.69787031099996, 51.955238613000041 ], [ -122.697605646999961, 51.958728592000114 ], [ -122.696825464999961, 51.958706171000088 ], [ -122.696772153999973, 51.959408911000104 ], [ -122.690948764999973, 51.959241388000081 ], [ -122.691038422999966, 51.958061584000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024064", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999935378971066", "sL_AssetLoss": "95.944", "sL_BldgLoss": "95.9378", "sL_StrLoss": "95.9", "sL_NStrLoss": "0.0378", "sL_ContLoss": "0.0062", "geom_point": "0101000020E6100000B174BA0327E15EC02E24580331CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.515291255999927, 51.582186416000113 ], [ -123.515294199999985, 51.582134351000093 ], [ -123.514576532999953, 51.582118698000073 ], [ -123.514732185999947, 51.579366202000074 ], [ -123.514779393999959, 51.578531310000088 ], [ -123.515257794, 51.578541746000084 ], [ -123.515355778999904, 51.576808422000092 ], [ -123.521131258999944, 51.576934237000103 ], [ -123.521030563999972, 51.578719631000105 ], [ -123.521269775999883, 51.578724836000028 ], [ -123.521067442999964, 51.582312234 ], [ -123.519470996999971, 51.582277489 ], [ -123.515291255999927, 51.582186416000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "62.1", "sL_BldgLoss": "62.1", "sL_StrLoss": "62.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8BB3C00169B5EC0A03647A9C6CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.42055957800001, 51.617550941000061 ], [ -122.420624600999972, 51.616753600000081 ], [ -122.419807005999971, 51.616727922000102 ], [ -122.420099388999986, 51.613143031000071 ], [ -122.425875820999963, 51.613324326000026 ], [ -122.425810897999909, 51.614121673000085 ], [ -122.426628447999946, 51.614147308000078 ], [ -122.426336590999966, 51.617732212000114 ], [ -122.42055957800001, 51.617550941000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35", "sL_BldgLoss": "35", "sL_StrLoss": "35", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008FDB3710B5D05EC0DF7D7EAD050B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.26052758900002, 52.084303002000063 ], [ -123.264085380999958, 52.084387481000114 ], [ -123.263859464999953, 52.08797276100011 ], [ -123.260663806999943, 52.087896886000038 ], [ -123.258016841999932, 52.087833972000084 ], [ -123.258243238999967, 52.08424870200016 ], [ -123.26052758900002, 52.084303002000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024075", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B55C4FD747965EC05AAAA0DC950F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.347520739999979, 52.119907351000059 ], [ -122.35150294599994, 52.120033377000055 ], [ -122.351201486999983, 52.123616466000087 ], [ -122.350616808999973, 52.123597971000045 ], [ -122.350610463999942, 52.123673379000124 ], [ -122.349394214999961, 52.12363489800007 ], [ -122.344766444999948, 52.123488357000042 ], [ -122.345068433999984, 52.119905284000041 ], [ -122.345653058999986, 52.119923807000092 ], [ -122.345659413999968, 52.11984839800008 ], [ -122.347520739999979, 52.119907351000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "34.3", "sL_BldgLoss": "34.3", "sL_StrLoss": "34.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F79EA1EA1DCF5EC074CFBA46CB084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.234967078999929, 52.071349689000037 ], [ -123.235007489999987, 52.070714878000089 ], [ -123.23030904699999, 52.070602068000085 ], [ -123.230537638999976, 52.067016802000047 ], [ -123.232547529, 52.067065083000053 ], [ -123.232639838999944, 52.065616050000138 ], [ -123.234586098999969, 52.065662770000124 ], [ -123.238479394999942, 52.065756128000025 ], [ -123.238384088999979, 52.067255337000084 ], [ -123.24208816299992, 52.067344034000037 ], [ -123.241860521999982, 52.070929323000023 ], [ -123.241399636999944, 52.070918293000062 ], [ -123.240844550999981, 52.070905007000079 ], [ -123.24080741299997, 52.07148964900005 ], [ -123.234967078999929, 52.071349689000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024077", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "80.5", "sL_BldgLoss": "80.5", "sL_StrLoss": "80.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F6C5AD9B35D45EC0D4EE780F270C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.308926214999971, 52.098556495000153 ], [ -123.308934274999942, 52.098426467000138 ], [ -123.308257597999898, 52.098410678000029 ], [ -123.308290228999979, 52.097884446000123 ], [ -123.308141530999976, 52.097880976000113 ], [ -123.30836384199992, 52.094295639000052 ], [ -123.308954984999929, 52.094309434000102 ], [ -123.308997958999953, 52.093616153000035 ], [ -123.314523441999967, 52.093744953000098 ], [ -123.314535396999972, 52.09355167899999 ], [ -123.314560704999977, 52.093142539000098 ], [ -123.314571018999942, 52.092975799000051 ], [ -123.314676967999915, 52.09126288700007 ], [ -123.320520229999914, 52.091398807000061 ], [ -123.320471272999896, 52.092192076000075 ], [ -123.321379953999937, 52.092213186000031 ], [ -123.32136989899999, 52.092376149000103 ], [ -123.322008039999972, 52.092390969000085 ], [ -123.321976883999952, 52.092896059000068 ], [ -123.323905102999987, 52.092940821000077 ], [ -123.323684081999943, 52.096526191000073 ], [ -123.323173163999925, 52.096514334000119 ], [ -123.317840119999985, 52.096390432000121 ], [ -123.317871325999974, 52.095885344000102 ], [ -123.315942982999957, 52.095840483000131 ], [ -123.315953058999966, 52.095677521000027 ], [ -123.315314868999934, 52.095662667000084 ], [ -123.315363924999957, 52.094869402000057 ], [ -123.314920212999965, 52.094859072000126 ], [ -123.314904981999916, 52.095105328000066 ], [ -123.314992208999954, 52.095107358000043 ], [ -123.314770440999936, 52.098692705000062 ], [ -123.308926214999971, 52.098556495000153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999982884195328", "sL_AssetLoss": "81.21149", "sL_BldgLoss": "81.2101", "sL_StrLoss": "81.2", "sL_NStrLoss": "0.0101", "sL_ContLoss": "0.00139", "geom_point": "0101000020E6100000272A7E00D0C15EC0C60AC8A8FCDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.025545397999949, 51.724592253000033 ], [ -123.031338812999977, 51.724742865000096 ], [ -123.031095701999973, 51.728328810000065 ], [ -123.025301813999974, 51.728178186000029 ], [ -123.025545397999949, 51.724592253000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024081", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999690129237199", "sL_AssetLoss": "123.2772", "sL_BldgLoss": "123.239", "sL_StrLoss": "123", "sL_NStrLoss": "0.239", "sL_ContLoss": "0.0382", "geom_point": "0101000020E6100000F94B28D069E25EC0312F55A3B6944940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.538259732999933, 51.165193852000058 ], [ -123.538338304999968, 51.163777173000042 ], [ -123.535008605999977, 51.163704470000098 ], [ -123.5350297049999, 51.163324517000078 ], [ -123.534972628, 51.163323270000028 ], [ -123.535171928999915, 51.159734315000087 ], [ -123.535370397999941, 51.159738652000023 ], [ -123.535395045999934, 51.159294719000044 ], [ -123.541116269999975, 51.159419574000097 ], [ -123.541075156999966, 51.16016179000011 ], [ -123.540007286999952, 51.160571690000062 ], [ -123.539026902, 51.161196910000093 ], [ -123.538703676999987, 51.161567193000081 ], [ -123.53837140499995, 51.162683798000103 ], [ -123.53844548499994, 51.162863293000044 ], [ -123.538766000999971, 51.163284787000052 ], [ -123.539385195999984, 51.163686503000072 ], [ -123.540094019999984, 51.164321595000033 ], [ -123.540452308999974, 51.16448260900011 ], [ -123.540510700999931, 51.16463500600004 ], [ -123.540329100999941, 51.164932604000072 ], [ -123.540401894999931, 51.165012400000073 ], [ -123.54057317199999, 51.164912695000055 ], [ -123.540902893999956, 51.164965388000041 ], [ -123.541345000999968, 51.16492689800004 ], [ -123.541532606999937, 51.165070803000091 ], [ -123.541660413999978, 51.165025199000091 ], [ -123.541800909999949, 51.16482579000003 ], [ -123.541822607999976, 51.164187811000033 ], [ -123.541688613999938, 51.163783309000017 ], [ -123.541387695999987, 51.16373199800006 ], [ -123.541657892999979, 51.16350560600003 ], [ -123.541858002999916, 51.163593911000163 ], [ -123.541999104999945, 51.164708983000025 ], [ -123.541817411999929, 51.165077891000081 ], [ -123.541538045999957, 51.165265338000026 ], [ -123.538259732999933, 51.165193852000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.9", "sL_BldgLoss": "45.9", "sL_StrLoss": "45.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006A6F09236A955EC07E7C3A0516FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.337145609999965, 51.967548299000036 ], [ -122.338009116999956, 51.967575817000061 ], [ -122.337919450999948, 51.96864158100005 ], [ -122.337707602999956, 51.971159333000053 ], [ -122.33704685099994, 51.971138278000033 ], [ -122.337020291999977, 51.971453849000049 ], [ -122.331196753999976, 51.971268115000107 ], [ -122.331383804999945, 51.969049036000051 ], [ -122.331498803999963, 51.96768461500011 ], [ -122.332159501000021, 51.967705702000075 ], [ -122.332186092999947, 51.96739013100008 ], [ -122.337145609999965, 51.967548299000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.9", "sL_BldgLoss": "49.9", "sL_StrLoss": "49.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C678EB4ADA05EC0325F560FB50B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.50857819, 52.089494166000101 ], [ -122.514418316999965, 52.08967090200008 ], [ -122.514324438999964, 52.090839882000118 ], [ -122.514130508999955, 52.093254498000036 ], [ -122.513357252999953, 52.093231114000083 ], [ -122.513345482999952, 52.09337761700003 ], [ -122.512622689999915, 52.093355755000118 ], [ -122.512617154999987, 52.093424634000073 ], [ -122.506776529999982, 52.093247807000068 ], [ -122.507064945999971, 52.089664230000047 ], [ -122.507613107999973, 52.089680839000096 ], [ -122.507787673999957, 52.089686127000036 ], [ -122.507793216999971, 52.089617248000081 ], [ -122.508566404999968, 52.089640669000076 ], [ -122.50857819, 52.089494166000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.7", "sL_BldgLoss": "45.7", "sL_StrLoss": "45.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000023F0EAC9BAD05EC00DC2FDFCCE084A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.258349215999942, 52.07074478100003 ], [ -123.258425384999939, 52.069537972000106 ], [ -123.25821652800002, 52.069533003000096 ], [ -123.258442811999927, 52.06594767899999 ], [ -123.264282495999979, 52.06608645000005 ], [ -123.264129210999968, 52.06852039300005 ], [ -123.264338062999968, 52.068525351000119 ], [ -123.264112251999919, 52.07211068 ], [ -123.262883506999955, 52.072081508000039 ], [ -123.261479104999964, 52.07172530000004 ], [ -123.258349215999942, 52.07074478100003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8702333", "BldgCostT": "5033333", "sL_LossRatio": "0.967412476967623", "sL_AssetLoss": "189.95", "sL_BldgLoss": "183.76", "sL_StrLoss": "181.5", "sL_NStrLoss": "2.26", "sL_ContLoss": "6.19", "geom_point": "0101000020E6100000305173A895D15EC0A1A8C711C60A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.269458668999988, 52.08966056900011 ], [ -123.269483722999937, 52.089262196000064 ], [ -123.266431980999982, 52.089189891000061 ], [ -123.26646, 52.088744847000093 ], [ -123.26631410799996, 52.088741388000081 ], [ -123.266344754000016, 52.088254648000074 ], [ -123.266348653999913, 52.088192717000041 ], [ -123.266047735999962, 52.088185582000037 ], [ -123.266273472999941, 52.084600299000051 ], [ -123.266791246999986, 52.08461257400004 ], [ -123.266797255999947, 52.084517111000117 ], [ -123.2676076199999, 52.084536318000083 ], [ -123.267804712000029, 52.081403931000118 ], [ -123.267862059999985, 52.081405290000092 ], [ -123.267885049999975, 52.08103987500008 ], [ -123.265046301999945, 52.080972566000078 ], [ -123.265234062999966, 52.077991012000041 ], [ -123.265239148999981, 52.077910267000036 ], [ -123.265272081999939, 52.077387262000052 ], [ -123.271113323999884, 52.077525686000037 ], [ -123.271100638999911, 52.077727558000035 ], [ -123.271038889999929, 52.078710254000015 ], [ -123.2738775, 52.078777416000072 ], [ -123.273716409999906, 52.081343518000082 ], [ -123.274359284999917, 52.081358718000061 ], [ -123.274391866999949, 52.08083959000006 ], [ -123.278316229999959, 52.0809323020001 ], [ -123.278337214000018, 52.080597486000038 ], [ -123.284178928999921, 52.080735247000078 ], [ -123.284096326999986, 52.082056034000097 ], [ -123.284355714999947, 52.082062145000073 ], [ -123.284340761999943, 52.082301249000075 ], [ -123.285409490999882, 52.082326417000083 ], [ -123.285352635999928, 52.083235905000059 ], [ -123.285361755999972, 52.083236119000034 ], [ -123.28532865499993, 52.083765608000135 ], [ -123.285962432999909, 52.083780529000052 ], [ -123.286228760999933, 52.083786798000084 ], [ -123.286103574999984, 52.085789821000041 ], [ -123.286093931999957, 52.085944106000099 ], [ -123.286004674999944, 52.087372123000087 ], [ -123.284960136000024, 52.087347532000052 ], [ -123.28494235, 52.087631969000029 ], [ -123.284926862999953, 52.087879648000069 ], [ -123.27994139299993, 52.087762150000124 ], [ -123.279918863999939, 52.08812177 ], [ -123.279346118999968, 52.088108258000091 ], [ -123.27931846499996, 52.088549585000102 ], [ -123.277939404999984, 52.088517037000067 ], [ -123.276831112999915, 52.088490869000033 ], [ -123.27675692899993, 52.089673645000033 ], [ -123.27531157, 52.089639502000061 ], [ -123.275301574999915, 52.08979878000013 ], [ -123.269458668999988, 52.08966056900011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "57.3", "sL_BldgLoss": "57.3", "sL_StrLoss": "57.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFBFBB8D34C45EC0726BD26D09E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.063669572999956, 51.817242458000081 ], [ -123.063846757999912, 51.814605552000039 ], [ -123.063136635999911, 51.814587347000113 ], [ -123.06331992599992, 51.811859883000096 ], [ -123.061343956999949, 51.811809205000039 ], [ -123.061585050999923, 51.808223471000069 ], [ -123.065694483999948, 51.8083288280001 ], [ -123.067389668999965, 51.808372246000054 ], [ -123.067206646000017, 51.81109972600003 ], [ -123.0691825899999, 51.811150302000016 ], [ -123.06900574, 51.81378722500002 ], [ -123.069715853, 51.813805393000052 ], [ -123.069475394, 51.817391126000111 ], [ -123.06908174199998, 51.817381055000119 ], [ -123.063669572999956, 51.817242458000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46", "sL_BldgLoss": "46", "sL_StrLoss": "46", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EFC40F42BEA15EC0409C6E76F7FB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.52915952699999, 51.966751202000097 ], [ -122.530292253999932, 51.966785402 ], [ -122.530240578999951, 51.967433711000083 ], [ -122.530006562999972, 51.970369412000068 ], [ -122.524182367999956, 51.970193448000011 ], [ -122.524468535999972, 51.966609451000132 ], [ -122.52915952699999, 51.966751202000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024095", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "51.7", "sL_BldgLoss": "51.7", "sL_StrLoss": "51.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099DBF78771A35EC09E53981056FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.552084705999974, 51.973794683000037 ], [ -122.552136738999977, 51.973137845000075 ], [ -122.551000312999989, 51.973103756000071 ], [ -122.551021461999966, 51.972836860000058 ], [ -122.549850587999941, 51.972801725000103 ], [ -122.549946909999946, 51.971586531000078 ], [ -122.55013466299999, 51.969217673000102 ], [ -122.555958831999931, 51.969392324000054 ], [ -122.555937714999985, 51.969659221000022 ], [ -122.557108507999942, 51.96969429500006 ], [ -122.557056553999985, 51.970351137000094 ], [ -122.558192912999957, 51.970385167000117 ], [ -122.55798884799999, 51.972965814000098 ], [ -122.556584885999925, 51.97288229100004 ], [ -122.555698110999927, 51.972681503000103 ], [ -122.555218504999985, 51.97272418900009 ], [ -122.555054887999944, 51.973003411000022 ], [ -122.554921789, 51.973218507000126 ], [ -122.554966565999962, 51.973881081000059 ], [ -122.554209106999934, 51.973858380000081 ], [ -122.552084705999974, 51.973794683000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024098", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.9", "sL_BldgLoss": "51.9", "sL_StrLoss": "51.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000C9EF8203AA15EC095BE290F7F0B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.516204806999937, 52.091737460000154 ], [ -122.516211232999979, 52.091657407000049 ], [ -122.515378481999932, 52.091632238000045 ], [ -122.515431669999955, 52.090969748000106 ], [ -122.515666175999968, 52.088048635000099 ], [ -122.516266015999946, 52.088066765000093 ], [ -122.516283160999961, 52.087853149000139 ], [ -122.517096084999977, 52.087877714000051 ], [ -122.517107233, 52.087738768000058 ], [ -122.522947157999937, 52.087915074000122 ], [ -122.522660065999943, 52.091498696000087 ], [ -122.522079933999947, 52.091481195000057 ], [ -122.522045266999939, 52.091913810000058 ], [ -122.517870267999982, 52.091787778000175 ], [ -122.516204806999937, 52.091737460000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.5", "sL_BldgLoss": "39.5", "sL_StrLoss": "39.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007AC4A69D73D35EC0ECA39573900C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.300937681999983, 52.100208183000092 ], [ -123.30097799299989, 52.099559877000047 ], [ -123.300858524999938, 52.099557082000061 ], [ -123.301081445999941, 52.095971764000041 ], [ -123.306925298999943, 52.096108371000106 ], [ -123.30688508, 52.096756681000109 ], [ -123.307004540999912, 52.096759470000045 ], [ -123.306782104999968, 52.100344797000069 ], [ -123.300937681999983, 52.100208183000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.2", "sL_BldgLoss": "43.2", "sL_StrLoss": "43.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8CA536FB0A15EC06F1C678904FA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.523625838999962, 51.951383406000019 ], [ -122.529447517999955, 51.951559402000044 ], [ -122.529161857999938, 51.955143458000087 ], [ -122.523339700999884, 51.954967448000069 ], [ -122.523625838999962, 51.951383406000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.960440515867266", "sL_AssetLoss": "0.20703", "sL_BldgLoss": "0.19884", "sL_StrLoss": "0.00784", "sL_NStrLoss": "0.191", "sL_ContLoss": "0.00819", "geom_point": "0101000020E6100000AD1E079067CB5EC044F1CFB128904940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.182397544999958, 51.120906655000105 ], [ -123.182395419000017, 51.120367118000068 ], [ -123.18368134899994, 51.120365106000051 ], [ -123.183682418999965, 51.120634874000132 ], [ -123.184111065999957, 51.120634200000019 ], [ -123.184115354999932, 51.121713272000058 ], [ -123.183686699999924, 51.121713946000057 ], [ -123.183687768000013, 51.12198371400013 ], [ -123.18325911, 51.121984385000111 ], [ -123.183261244999969, 51.12252392200007 ], [ -123.182832581999961, 51.122524593000065 ], [ -123.182834710999899, 51.123064129000063 ], [ -123.182406041999982, 51.123064799000062 ], [ -123.182407105999943, 51.123334566000047 ], [ -123.181978433999973, 51.123335234000137 ], [ -123.181980553999949, 51.123874770000057 ], [ -123.181551878999969, 51.123875436000077 ], [ -123.181552934999928, 51.12414520500004 ], [ -123.181124257999969, 51.124145869000102 ], [ -123.181126367999937, 51.124685404000104 ], [ -123.180697684999927, 51.124686068000123 ], [ -123.180698737999961, 51.12495583500008 ], [ -123.180270050999965, 51.12495649700007 ], [ -123.180271100999988, 51.125226265000052 ], [ -123.179842411999971, 51.12522692600006 ], [ -123.17984450799996, 51.125766461000033 ], [ -123.179415814, 51.125767119000102 ], [ -123.179416859999961, 51.126036887000105 ], [ -123.178988161999911, 51.12603754400007 ], [ -123.178991291999978, 51.126846848000106 ], [ -123.178562587999963, 51.126847503000121 ], [ -123.178564668999925, 51.127387039000055 ], [ -123.178135958999931, 51.127387692000084 ], [ -123.178136996999939, 51.127657460000151 ], [ -123.177708286000026, 51.127658112000063 ], [ -123.177710357999928, 51.128197648000075 ], [ -123.177281640999965, 51.128198298000086 ], [ -123.177283706999972, 51.128737834000056 ], [ -123.176854985999967, 51.128738482000074 ], [ -123.176856014999942, 51.129008250000041 ], [ -123.176427292, 51.129008898000059 ], [ -123.176429347999957, 51.129548434000114 ], [ -123.176000619999954, 51.129549079000121 ], [ -123.176001644999985, 51.12981884700006 ], [ -123.175572913999986, 51.129819491000035 ], [ -123.175573936999982, 51.130089259000073 ], [ -123.175145202999929, 51.13008990200003 ], [ -123.175146223999917, 51.130359670000054 ], [ -123.174717489, 51.130360311000082 ], [ -123.174719523999926, 51.13089984600002 ], [ -123.174290782999933, 51.130900486000044 ], [ -123.174293827999932, 51.131709789000055 ], [ -123.173436332, 51.131711064000051 ], [ -123.173438351999977, 51.132250599000095 ], [ -123.171723336999918, 51.132253129000077 ], [ -123.171720335999936, 51.131443827000076 ], [ -123.172149081, 51.131443196000113 ], [ -123.172147075999973, 51.130903661000055 ], [ -123.172575817999984, 51.130903029000095 ], [ -123.172574811999979, 51.130633261000064 ], [ -123.173003550999937, 51.130632628000079 ], [ -123.173001534999969, 51.130093093000028 ], [ -123.173430267999947, 51.130092458000021 ], [ -123.173429257999942, 51.129822690000069 ], [ -123.173857989999988, 51.129822054000059 ], [ -123.173856976999915, 51.129552285000045 ], [ -123.174285705999978, 51.129551648000088 ], [ -123.174283674, 51.129012112000069 ], [ -123.17471239799994, 51.129011472000123 ], [ -123.17471137899993, 51.128741705000088 ], [ -123.175140100999954, 51.128741064000032 ], [ -123.17513806, 51.128201528000041 ], [ -123.175566775999968, 51.128200886000066 ], [ -123.175564731999884, 51.127661349000071 ], [ -123.175993441999935, 51.127660705000039 ], [ -123.175992416999975, 51.127390937000072 ], [ -123.17642112499999, 51.127390292000044 ], [ -123.176419069999952, 51.126850755000135 ], [ -123.176847772999949, 51.126850108000056 ], [ -123.176845712999963, 51.126310573000048 ], [ -123.17727441299995, 51.126309923000107 ], [ -123.177273379999974, 51.126040156000101 ], [ -123.177702073999981, 51.126039506000048 ], [ -123.177700004999977, 51.125499969000039 ], [ -123.178128695999945, 51.125499317000042 ], [ -123.178126620999961, 51.124959782000047 ], [ -123.17898399299996, 51.124958472000081 ], [ -123.178979821999988, 51.123879401000067 ], [ -123.179408499999965, 51.123878744000073 ], [ -123.179407452999939, 51.123608976000085 ], [ -123.179836126999959, 51.123608318000066 ], [ -123.17983403299999, 51.123068782000068 ], [ -123.180262699999929, 51.123068122000106 ], [ -123.180261651999956, 51.122798353000071 ], [ -123.180690316999929, 51.122797692000056 ], [ -123.18068821199995, 51.122258156000093 ], [ -123.181116872999951, 51.122257493000099 ], [ -123.181114763999943, 51.121717957000023 ], [ -123.181543419999969, 51.12171729300006 ], [ -123.181542360999913, 51.1214475250001 ], [ -123.181971014999959, 51.121446858000098 ], [ -123.18196889599993, 51.120907323000019 ], [ -123.182397544999958, 51.120906655000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "41", "sL_BldgLoss": "41", "sL_StrLoss": "41", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000607072648AD65EC07075E726BD0A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.352239090999902, 52.08513814500003 ], [ -123.352237674999955, 52.08495848900008 ], [ -123.34740129799998, 52.08484732600008 ], [ -123.347423119000027, 52.084490128000127 ], [ -123.347544539999944, 52.082502313000106 ], [ -123.349221711999974, 52.082718789000076 ], [ -123.351324472999934, 52.082882593000086 ], [ -123.353377672999912, 52.082785138000091 ], [ -123.353365980999968, 52.0829769650001 ], [ -123.355724481999985, 52.08296987100006 ], [ -123.355726625999964, 52.083239591000044 ], [ -123.35660222599995, 52.083236945000074 ], [ -123.35660437599995, 52.083506664000048 ], [ -123.357180217999925, 52.083504921000092 ], [ -123.35728319899998, 52.083557593000059 ], [ -123.357480954999986, 52.083625941000093 ], [ -123.357482134999913, 52.08377373200009 ], [ -123.357904861999955, 52.083772449999984 ], [ -123.357919982999945, 52.083777676000082 ], [ -123.357926806999956, 52.084630723 ], [ -123.35792857099996, 52.084851282000081 ], [ -123.355739492999973, 52.084857909000036 ], [ -123.355737349999913, 52.084588188000041 ], [ -123.355299535999919, 52.084589509000104 ], [ -123.355298663999946, 52.08447982000007 ], [ -123.355297393999976, 52.084319790000059 ], [ -123.35485958299999, 52.084321109000015 ], [ -123.354861012999919, 52.084501341000106 ], [ -123.354861723999988, 52.084590828000074 ], [ -123.354423909999937, 52.084592145000094 ], [ -123.354426045999929, 52.084861865000043 ], [ -123.353550414999972, 52.08486449400008 ], [ -123.35355254599996, 52.085134214000036 ], [ -123.352239090999902, 52.08513814500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024106", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.4", "sL_BldgLoss": "49.4", "sL_StrLoss": "49.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A42F8C0D80C25EC0A5F8F8846CF44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.036278592999935, 51.907694024000072 ], [ -123.042096356999934, 51.907844067000106 ], [ -123.041853108999973, 51.911429440000049 ], [ -123.036034868999977, 51.911279386000068 ], [ -123.036278592999935, 51.907694024000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024107", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.9", "sL_BldgLoss": "51.9", "sL_StrLoss": "51.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000024C7C651F3A15EC0E3B732F2C30C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.527440912999936, 52.09827137500011 ], [ -122.527513166999952, 52.097368434000046 ], [ -122.533354429999989, 52.097544211000042 ], [ -122.53330253599999, 52.098193809000058 ], [ -122.534020550999927, 52.098215395000068 ], [ -122.53381471699997, 52.10079234400007 ], [ -122.533734302999918, 52.101799013000104 ], [ -122.533151655999944, 52.101781497000097 ], [ -122.532852021999958, 52.101772488000115 ], [ -122.532831779999981, 52.102025834000159 ], [ -122.526989915999962, 52.101850031000069 ], [ -122.527097773999969, 52.100502422000083 ], [ -122.52727672, 52.098266430000088 ], [ -122.527440912999936, 52.09827137500011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024112", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "78.5", "sL_BldgLoss": "78.5", "sL_StrLoss": "78.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001CE392FCABE45EC0D2979471C2DC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.570199170999928, 51.722828920000033 ], [ -123.575994050999924, 51.722951939000026 ], [ -123.57579553299999, 51.726538942000062 ], [ -123.570000178999962, 51.726415914000043 ], [ -123.570199170999928, 51.722828920000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024114", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15025906", "BldgCostT": "10362694", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A8D56BD55C95EC070DD83C682D74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.143080803, 51.681812933000124 ], [ -123.14886896299997, 51.681957597000057 ], [ -123.148750972999906, 51.683771693000075 ], [ -123.148635698999968, 51.685543930000044 ], [ -123.142847066999977, 51.685399255000036 ], [ -123.142937729999929, 51.684008241000107 ], [ -123.143080803, 51.681812933000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024115", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.971660244059088", "sL_AssetLoss": "0.024912", "sL_BldgLoss": "0.024206", "sL_StrLoss": "0.000606", "sL_NStrLoss": "0.0236", "sL_ContLoss": "0.000706", "geom_point": "0101000020E610000006B47C7623C35EC062C19A56CCDB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.046527501999932, 51.715163145000098 ], [ -123.05231974, 51.715312696000112 ], [ -123.052292102999957, 51.715723398000108 ], [ -123.052078399999942, 51.71889871700003 ], [ -123.051571753999966, 51.718885648000061 ], [ -123.05155169499993, 51.719183629000035 ], [ -123.049730380999947, 51.719136629000033 ], [ -123.045758946999982, 51.719034040000075 ], [ -123.046000805999981, 51.715448033000023 ], [ -123.046507408999958, 51.71546112700004 ], [ -123.046527501999932, 51.715163145000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024118", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "36.9", "sL_BldgLoss": "36.9", "sL_StrLoss": "36.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041FC1595C1935EC05A27152A8BFC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.308427836999897, 51.971191939000057 ], [ -122.31175400299999, 51.97129872000005 ], [ -122.311579978999987, 51.973352153000043 ], [ -122.311450302999901, 51.97488215700006 ], [ -122.305626414999949, 51.97469512800005 ], [ -122.305930593999946, 51.971111706000087 ], [ -122.307592598, 51.971165110000072 ], [ -122.308427836999897, 51.971191939000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024122", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004969F472F1A75EC0A6221D37DFFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.621701474999952, 51.982143031000085 ], [ -122.62179312399995, 51.980962420000054 ], [ -122.627619147999965, 51.981133441000118 ], [ -122.627610332999978, 51.981247201000073 ], [ -122.628684916999958, 51.981278712000083 ], [ -122.628478998999952, 51.983936625000077 ], [ -122.62840723, 51.98486291800004 ], [ -122.625547499999968, 51.984779036000134 ], [ -122.62546476599999, 51.985845887000096 ], [ -122.619638118999916, 51.985674758000108 ], [ -122.619860271999926, 51.982814903000083 ], [ -122.619916533999941, 51.982090576000047 ], [ -122.621701474999952, 51.982143031000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024124", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "63.6", "sL_BldgLoss": "63.6", "sL_StrLoss": "63.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A1F8EFC99CC35EC00818654FE5E14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.055118392999987, 51.768680708000026 ], [ -123.055261864999949, 51.766549281 ], [ -123.053692285999929, 51.766508874000046 ], [ -123.053854065999971, 51.764106482000052 ], [ -123.053243834999961, 51.764090767000027 ], [ -123.053269394, 51.76371127000008 ], [ -123.053113856999971, 51.763707264000075 ], [ -123.05335535899998, 51.760121389000076 ], [ -123.056346671999947, 51.760198397000089 ], [ -123.056802862, 51.760210135000129 ], [ -123.056797597999932, 51.760424512000085 ], [ -123.05710349899999, 51.760774797000124 ], [ -123.057363594999956, 51.761502610000029 ], [ -123.057422695999961, 51.762509497000096 ], [ -123.057686483999959, 51.763138996000087 ], [ -123.05833919, 51.763723002000106 ], [ -123.05823871299999, 51.764981995000042 ], [ -123.05864429799999, 51.76583649500008 ], [ -123.059340407999969, 51.766312183000089 ], [ -123.061042886999985, 51.766967012000073 ], [ -123.061008050999988, 51.767485563000115 ], [ -123.060917741999916, 51.768829816000071 ], [ -123.055118392999987, 51.768680708000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024128", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005AEB30CB83CA5EC0F18F8C0F92FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.164357153999916, 51.970281595000095 ], [ -123.167175367999974, 51.970351064000077 ], [ -123.166973293999959, 51.973456644000073 ], [ -123.16694206799994, 51.973936499000054 ], [ -123.166828835999937, 51.97393370900005 ], [ -123.166709075999933, 51.975773902000071 ], [ -123.160881819999972, 51.975630179000042 ], [ -123.1610735779999, 51.972689631000016 ], [ -123.161910316999979, 51.972634504000027 ], [ -123.162243492999963, 51.972499216000081 ], [ -123.162592085999933, 51.972184494000018 ], [ -123.162723023999931, 51.971968001000015 ], [ -123.162793713, 51.971338502000044 ], [ -123.163221158999988, 51.970253573000065 ], [ -123.164357153999916, 51.970281595000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024135", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.5", "sL_BldgLoss": "39.5", "sL_StrLoss": "39.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E16CE7B94DDA5EC0ADEB82870A164A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.410259758999956, 52.170073839000104 ], [ -123.416113936999963, 52.170204909000105 ], [ -123.415900147999935, 52.173790224000037 ], [ -123.414885865999963, 52.173767537000117 ], [ -123.414879809999917, 52.173869050000064 ], [ -123.411758866999961, 52.173799184000053 ], [ -123.411726304999917, 52.174344325000057 ], [ -123.405871579999939, 52.17421303400004 ], [ -123.406086202000012, 52.170627738000078 ], [ -123.409206908000016, 52.170697757000063 ], [ -123.409239497999963, 52.17015261500012 ], [ -123.410253691999969, 52.170175351000083 ], [ -123.410259758999956, 52.170073839000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024136", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.6", "sL_BldgLoss": "34.6", "sL_StrLoss": "34.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDB9CAC93A935EC049D3E28470FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.297145527999973, 51.974075904000088 ], [ -122.297184468999916, 51.973618243000054 ], [ -122.295620904999979, 51.97356786400006 ], [ -122.295925897999936, 51.96998446500001 ], [ -122.301749113999932, 51.970171986000096 ], [ -122.301716685999935, 51.970553613000043 ], [ -122.305419205999954, 51.970672688000064 ], [ -122.305114988999932, 51.974256110000056 ], [ -122.302975754999949, 51.974187326000028 ], [ -122.302969296999976, 51.974263361000062 ], [ -122.297145527999973, 51.974075904000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024142", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "43.9", "sL_BldgLoss": "43.9", "sL_StrLoss": "43.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A5633000ECA5EC01ED48F97FFFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.154333846999933, 51.98248361300007 ], [ -123.159553397, 51.982612638000063 ], [ -123.159954086999946, 51.98308539300006 ], [ -123.160123116999955, 51.98322362400009 ], [ -123.159928055999913, 51.986213050000089 ], [ -123.154099423999952, 51.986068985000031 ], [ -123.154333846999933, 51.98248361300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024145", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999993618506372", "sL_AssetLoss": "79.605188", "sL_BldgLoss": "79.60468", "sL_StrLoss": "79.6", "sL_NStrLoss": "0.00468", "sL_ContLoss": "0.000508", "geom_point": "0101000020E6100000154FC10A85D95EC00663A7CC8BCD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.396801962999959, 51.607615864000046 ], [ -123.396850994, 51.606788610000116 ], [ -123.395183558999989, 51.606750523000052 ], [ -123.39519089199996, 51.606626890000015 ], [ -123.39434683599994, 51.606607601000086 ], [ -123.394352846999965, 51.606506276000111 ], [ -123.393346703999939, 51.606483275000059 ], [ -123.393507269999972, 51.603777634000025 ], [ -123.395105606999948, 51.60385258200008 ], [ -123.396278501999973, 51.60406479300012 ], [ -123.39739270799997, 51.604393794000032 ], [ -123.398144595999966, 51.604453611000046 ], [ -123.399996393999984, 51.604825300000073 ], [ -123.401065524999964, 51.604883703000013 ], [ -123.401496495999965, 51.604838194000131 ], [ -123.402518388, 51.604456492000047 ], [ -123.402949787999916, 51.604131704000039 ], [ -123.403725878999978, 51.603805596000015 ], [ -123.40374129599999, 51.603779331000084 ], [ -123.403891798999965, 51.603782759000133 ], [ -123.403679767999947, 51.607369857000073 ], [ -123.402604936999964, 51.607345373000051 ], [ -123.402581144999942, 51.60774768300012 ], [ -123.396801962999959, 51.607615864000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024147", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.2", "sL_BldgLoss": "44.2", "sL_StrLoss": "44.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D995F9BBF5A15EC0CD2080CCB5FD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.532145131000021, 51.980360176000026 ], [ -122.53367907699996, 51.98040643200008 ], [ -122.533521937999964, 51.982379104000103 ], [ -122.533393574999977, 51.983990409000057 ], [ -122.527567544999968, 51.983814617000064 ], [ -122.52785352399999, 51.980230655000064 ], [ -122.532145131000021, 51.980360176000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024148", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.97949146250928", "sL_AssetLoss": "0.010776", "sL_BldgLoss": "0.010555", "sL_StrLoss": "0.000255", "sL_NStrLoss": "0.0103", "sL_ContLoss": "0.000221", "geom_point": "0101000020E610000051069A1116975EC0DD66646F2DC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.358225732999969, 51.553851337000019 ], [ -122.363994122999927, 51.554035776000049 ], [ -122.363697560999981, 51.557620725000099 ], [ -122.363275532999921, 51.557607242000131 ], [ -122.363218483, 51.558296736000109 ], [ -122.361658534999947, 51.558246882000084 ], [ -122.359294684999981, 51.558171295000122 ], [ -122.35744953699998, 51.558112260000037 ], [ -122.357746612, 51.554527327000102 ], [ -122.358168608999947, 51.554540832000086 ], [ -122.358225732999969, 51.553851337000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024149", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999993669854794", "sL_AssetLoss": "85.3061", "sL_BldgLoss": "85.30556", "sL_StrLoss": "85.3", "sL_NStrLoss": "0.00556", "sL_ContLoss": "0.00054", "geom_point": "0101000020E61000009D32B3A664955EC087D7BB606CC64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.330971682999973, 51.548445125000036 ], [ -122.331068504999976, 51.54728497200005 ], [ -122.336835918999924, 51.547470788000048 ], [ -122.33680558699993, 51.547834819000101 ], [ -122.337602416999957, 51.547860468000103 ], [ -122.337583412999919, 51.548088580000055 ], [ -122.338200910999944, 51.548108452000086 ], [ -122.338160467999913, 51.548593981000089 ], [ -122.338960817999947, 51.548619733000109 ], [ -122.338666072999956, 51.552158770000077 ], [ -122.338662251999949, 51.552204637000088 ], [ -122.33793956199996, 51.552181384000072 ], [ -122.335653396999945, 51.552107792000051 ], [ -122.335639774999919, 51.552271213000076 ], [ -122.335577669999935, 51.55301620900012 ], [ -122.33352015, 51.552949939000072 ], [ -122.329809533999978, 51.552830331000081 ], [ -122.330108824999925, 51.549245453000033 ], [ -122.330902749999936, 51.549271054000037 ], [ -122.330971682999973, 51.548445125000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024153", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009AE5BA42C2C25EC0254774AEACF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.040349532999983, 51.921446883000058 ], [ -123.040369411999933, 51.921154110000053 ], [ -123.039723727999984, 51.921137467000044 ], [ -123.039967203999964, 51.917552129000043 ], [ -123.040358095000016, 51.91756220500011 ], [ -123.040393117999912, 51.917046339000073 ], [ -123.046212143999952, 51.917196172000097 ], [ -123.046157348999969, 51.918004816000114 ], [ -123.046412092999944, 51.91801136900007 ], [ -123.046266312999961, 51.920162809000047 ], [ -123.046214779999943, 51.920923278000032 ], [ -123.046273631999924, 51.920923467000115 ], [ -123.04628603099998, 51.921301467000049 ], [ -123.046189173999949, 51.921301157000045 ], [ -123.046169143999961, 51.921596718000046 ], [ -123.045805616999957, 51.921587367000015 ], [ -123.040349532999983, 51.921446883000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024155", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999994092287681", "sL_AssetLoss": "89.205427", "sL_BldgLoss": "89.2049", "sL_StrLoss": "89.2", "sL_NStrLoss": "0.0049", "sL_ContLoss": "0.000527", "geom_point": "0101000020E610000074B061FADCDB5EC0322DA00642CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.432576909999909, 51.617343871000095 ], [ -123.438357476999968, 51.617473876000105 ], [ -123.43814819399995, 51.621060991000064 ], [ -123.432367155999955, 51.620930976000061 ], [ -123.432576909999909, 51.617343871000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024156", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999999668540572", "sL_AssetLoss": "71.2002676", "sL_BldgLoss": "71.200244", "sL_StrLoss": "71.2", "sL_NStrLoss": "0.000244", "sL_ContLoss": "0.0000236", "geom_point": "0101000020E6100000782B0958C4E55EC0C3301EAD83E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.583330858999886, 51.795713452000022 ], [ -123.583529072999966, 51.792126665000062 ], [ -123.587702270999941, 51.792214655000045 ], [ -123.58835445599999, 51.79222839300008 ], [ -123.588062304999966, 51.792496291000063 ], [ -123.588109680999963, 51.792810995000139 ], [ -123.588357603, 51.792961991000091 ], [ -123.589619408999937, 51.79302749300011 ], [ -123.591193797999935, 51.792561793000047 ], [ -123.59260791299999, 51.791879608000059 ], [ -123.593983801999912, 51.790667588000076 ], [ -123.59527649199994, 51.789815893000089 ], [ -123.5963418899999, 51.789298911000081 ], [ -123.596957705999955, 51.788862860000094 ], [ -123.597449618, 51.788873182000039 ], [ -123.597252558999955, 51.792460005000088 ], [ -123.594598746999964, 51.792404290000086 ], [ -123.594493162, 51.794323769000037 ], [ -123.589224899999962, 51.794212983000087 ], [ -123.589135429999956, 51.795835797000116 ], [ -123.586678405000015, 51.795784046000065 ], [ -123.583330858999886, 51.795713452000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024161", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999972150848251", "sL_AssetLoss": "85.81949", "sL_BldgLoss": "85.8171", "sL_StrLoss": "85.8", "sL_NStrLoss": "0.0171", "sL_ContLoss": "0.00239", "geom_point": "0101000020E6100000DADF1B3B8FE75EC05F02BF5FAFAE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.616230633999962, 51.366086133000039 ], [ -123.616242803999938, 51.365860598000076 ], [ -123.615154407999938, 51.365837706000079 ], [ -123.61534811099996, 51.362249372000093 ], [ -123.615776270999959, 51.362258379000075 ], [ -123.616338915999975, 51.362735398000048 ], [ -123.617320989999939, 51.363162602000067 ], [ -123.619008094999984, 51.363567099000129 ], [ -123.619716290999989, 51.363985799000034 ], [ -123.620641895999952, 51.364348987000085 ], [ -123.622049370999974, 51.364896838000071 ], [ -123.621978852999959, 51.366206863000059 ], [ -123.616230633999962, 51.366086133000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024166", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F154131ECC35EC0BD9C6558BDD94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.058530364999939, 51.699223673000077 ], [ -123.064306372999937, 51.699372254000089 ], [ -123.064066100999966, 51.702958354000103 ], [ -123.058275452999936, 51.702809397000117 ], [ -123.058515492999931, 51.699233837000058 ], [ -123.058530364999939, 51.699223673000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024168", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999979219742907", "sL_AssetLoss": "84.21455", "sL_BldgLoss": "84.2128", "sL_StrLoss": "84.2", "sL_NStrLoss": "0.0128", "sL_ContLoss": "0.00175", "geom_point": "0101000020E6100000A993E0CBCCBE5EC0DABE707C27D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.978315849999944, 51.690788006000062 ], [ -122.978365994999976, 51.690060670000051 ], [ -122.97814799299999, 51.690054903000068 ], [ -122.978395219999953, 51.686468943000072 ], [ -122.984183435999967, 51.686621948000024 ], [ -122.98413338899995, 51.687349289000082 ], [ -122.984351378999946, 51.687355046000093 ], [ -122.984186885999989, 51.689745706000082 ], [ -122.984104633999948, 51.690941015000128 ], [ -122.980050497999926, 51.690833887000046 ], [ -122.978315849999944, 51.690788006000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024169", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.2", "sL_BldgLoss": "42.2", "sL_StrLoss": "42.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D342558E019B5EC02A9674F7ADF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.419453171999962, 51.921746136000046 ], [ -122.41953812599999, 51.920712206000125 ], [ -122.418018392999969, 51.920664800000019 ], [ -122.41831296, 51.917080916000089 ], [ -122.419864129999922, 51.917129302000021 ], [ -122.419874195999952, 51.91700675400002 ], [ -122.425690862999929, 51.917188008000068 ], [ -122.425396902, 51.920771910000077 ], [ -122.425365337999949, 51.920770927000028 ], [ -122.425270468999926, 51.921927411000091 ], [ -122.419453171999962, 51.921746136000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024171", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.3", "sL_BldgLoss": "45.3", "sL_StrLoss": "45.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E130EABDA5A85EC06D216517CEFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.63301065499995, 51.98074278900004 ], [ -122.638836692999945, 51.980913243000082 ], [ -122.63872324499998, 51.98238208800008 ], [ -122.638559843999957, 51.984497475000111 ], [ -122.637260472999941, 51.984459484000055 ], [ -122.637221715999914, 51.984961006000063 ], [ -122.631395141999988, 51.984790472000036 ], [ -122.63143988899999, 51.98421243700006 ], [ -122.631672583999915, 51.981206258000029 ], [ -122.632971852999958, 51.981244311000111 ], [ -122.63301065499995, 51.98074278900004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024172", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.9", "sL_BldgLoss": "43.9", "sL_StrLoss": "43.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CEB689496EA35EC0AF20729FC1004A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.54941585899995, 52.008620461000085 ], [ -122.549467919999941, 52.00796430400009 ], [ -122.547534834999936, 52.007906312000017 ], [ -122.54781932799996, 52.004322375000108 ], [ -122.551851463999952, 52.004443300000034 ], [ -122.551882369999973, 52.00405347100012 ], [ -122.551918598999976, 52.004054558000085 ], [ -122.551944686999946, 52.00372547300006 ], [ -122.55372216899994, 52.003778734000086 ], [ -122.553781080999926, 52.003035225000119 ], [ -122.555516621999971, 52.003066883000038 ], [ -122.556659846999963, 52.00308771300012 ], [ -122.559694584999946, 52.003152892000031 ], [ -122.559460608999956, 52.006110746000047 ], [ -122.557602907999936, 52.006055175000029 ], [ -122.557489811, 52.007483990000026 ], [ -122.557453578999926, 52.007482907000075 ], [ -122.557427528999966, 52.007811991000096 ], [ -122.557426603999915, 52.007811964000098 ], [ -122.557394153999923, 52.008221892000087 ], [ -122.555295678999954, 52.008159083000066 ], [ -122.555245296999956, 52.008795142000054 ], [ -122.54941585899995, 52.008620461000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024174", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "67.7", "sL_BldgLoss": "67.7", "sL_StrLoss": "67.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003930D2EEC4E45EC0EB53120207DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.571866517999936, 51.712354607000073 ], [ -123.571665084999935, 51.712283407000044 ], [ -123.571516092999971, 51.712335726000113 ], [ -123.571683372, 51.709317534000057 ], [ -123.577476469999965, 51.709440479000115 ], [ -123.577409330999927, 51.710654807000047 ], [ -123.577278133, 51.71302752900008 ], [ -123.576384225999931, 51.713008577000089 ], [ -123.572145611999971, 51.712918619000071 ], [ -123.571866517999936, 51.712354607000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024175", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DB2C669D14955EC0F099362D420E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.326613798999958, 52.109510025000112 ], [ -122.33245585799996, 52.109695969000015 ], [ -122.332365903999957, 52.110759917000152 ], [ -122.332152898999951, 52.113279039000133 ], [ -122.326310357999915, 52.113093080000077 ], [ -122.326503232999968, 52.110815672000051 ], [ -122.326613798999958, 52.109510025000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024179", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.7", "sL_BldgLoss": "45.7", "sL_StrLoss": "45.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000387AE34146A65EC0D034387C98FD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.598629247999966, 51.983498804000071 ], [ -122.598644416999974, 51.983304751000084 ], [ -122.596772194999971, 51.983249355000055 ], [ -122.596833332999964, 51.982467595000045 ], [ -122.591263445, 51.982302611000151 ], [ -122.591268558999943, 51.982237314000052 ], [ -122.591544172999974, 51.978718487000087 ], [ -122.597369776999983, 51.978891040000136 ], [ -122.597308653999903, 51.979672802000024 ], [ -122.602878227999938, 51.979837495 ], [ -122.602863079999935, 51.980031549000053 ], [ -122.60473517299999, 51.980086846000098 ], [ -122.604631011999956, 51.981421879000102 ], [ -122.604455520999963, 51.983670997000075 ], [ -122.598629247999966, 51.983498804000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024181", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.5", "sL_BldgLoss": "34.5", "sL_StrLoss": "34.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E563356500965EC05D463D86BF0E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.345016593999944, 52.11346291600011 ], [ -122.346846466999949, 52.113520892000061 ], [ -122.346544668999925, 52.117103988000096 ], [ -122.3462985199999, 52.117096191000066 ], [ -122.340701551000024, 52.116918758000047 ], [ -122.34100383, 52.113335677000101 ], [ -122.345016593999944, 52.11346291600011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024182", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "48.3", "sL_BldgLoss": "48.3", "sL_StrLoss": "48.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000019EC9F0AECB15EC0D9AA0B156FF64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.777751198999965, 51.923082389000037 ], [ -122.783570088, 51.923245522000109 ], [ -122.783305499999969, 51.926830275000079 ], [ -122.782360227999902, 51.926803794000136 ], [ -122.782312698999974, 51.92744749800007 ], [ -122.776493252999913, 51.927284301000043 ], [ -122.776758401999928, 51.923699566000074 ], [ -122.777703603999981, 51.923726092000024 ], [ -122.777751198999965, 51.923082389000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024183", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "196.9", "sL_BldgLoss": "196.9", "sL_StrLoss": "196.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DFA164A64CB5EC0A1F2F101E8054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.17550077099996, 52.044178926000043 ], [ -123.181337262999975, 52.044321900000099 ], [ -123.181104732999984, 52.047907137000024 ], [ -123.180505714999953, 52.04789247800008 ], [ -123.18049181899994, 52.048106652000072 ], [ -123.174654823999973, 52.047963636000077 ], [ -123.174887885999951, 52.044378411000075 ], [ -123.175486853000024, 52.044393101000026 ], [ -123.17550077099996, 52.044178926000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024184", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "166.5", "sL_BldgLoss": "166.5", "sL_StrLoss": "166.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DB309EE4FCB5EC07F1D932037054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.173952079999978, 52.038880680000034 ], [ -123.179787853999969, 52.039023734000061 ], [ -123.179555224999916, 52.042608983000044 ], [ -123.173718970999957, 52.042465919000058 ], [ -123.173952079999978, 52.038880680000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024185", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47231334", "BldgCostT": "32573334", "sL_LossRatio": "1", "sL_AssetLoss": "2776.5", "sL_BldgLoss": "2776.5", "sL_StrLoss": "2776.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099541B395ECA5EC06A0DC6048C004A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.169265591999974, 52.019548635000056 ], [ -123.169278845999926, 52.019345014000081 ], [ -123.168640681999989, 52.019329319000036 ], [ -123.168674666999948, 52.018807331000083 ], [ -123.166802649999937, 52.01876127200007 ], [ -123.166835510999974, 52.018256855000118 ], [ -123.165543136999986, 52.018225039000143 ], [ -123.165574370999977, 52.017745797000032 ], [ -123.164901345999908, 52.017729222000121 ], [ -123.164951253999917, 52.016963615000051 ], [ -123.163769155999944, 52.016934494000026 ], [ -123.163783628999951, 52.016712565000027 ], [ -123.162980540999939, 52.016692774000063 ], [ -123.163060052999981, 52.015473831000101 ], [ -123.161758479999904, 52.01544174400005 ], [ -123.161770965999921, 52.015250423000062 ], [ -123.161475482999904, 52.015243136000031 ], [ -123.161488196999969, 52.015048315000051 ], [ -123.161139984999977, 52.015039728000019 ], [ -123.161155853999958, 52.014796619000016 ], [ -123.160766586999969, 52.014787018000085 ], [ -123.161000615999967, 52.011201721000077 ], [ -123.161722988999898, 52.011219538000084 ], [ -123.161783015999973, 52.010299593000113 ], [ -123.161513886999941, 52.01029996300008 ], [ -123.16151097299999, 52.009490781000089 ], [ -123.160636801999914, 52.009491976000035 ], [ -123.160635834999937, 52.009222248000071 ], [ -123.160198752000014, 52.009222844000057 ], [ -123.16019586199999, 52.008413662000066 ], [ -123.159758786999944, 52.008414256000044 ], [ -123.159756865999952, 52.007874801000064 ], [ -123.15931979500003, 52.00787539300007 ], [ -123.159318836999901, 52.007605665000121 ], [ -123.15669642899995, 52.007609183000106 ], [ -123.156695484999915, 52.007339455000078 ], [ -123.15625842099999, 52.007340036000123 ], [ -123.156255602, 52.006530854000076 ], [ -123.158877947999898, 52.006527346000027 ], [ -123.158874127999923, 52.005448437000055 ], [ -123.158437079999928, 52.005449025000068 ], [ -123.158436407999943, 52.005258670000082 ], [ -123.158331055999938, 52.005256068000051 ], [ -123.158371303, 52.004639928000088 ], [ -123.1579971849999, 52.004640429000055 ], [ -123.157993384999884, 52.003561519000073 ], [ -123.158441781999912, 52.003560918000062 ], [ -123.158565233999923, 52.001670747000141 ], [ -123.159130010999931, 52.001684692000012 ], [ -123.159161954999959, 52.001195491000068 ], [ -123.15848914499999, 52.001178879000115 ], [ -123.158524073999914, 52.000644080000079 ], [ -123.157737754999943, 52.000624660000035 ], [ -123.157754347999955, 52.00037067500007 ], [ -123.152425572000013, 52.000238920000136 ], [ -123.152660208999976, 51.996653595000083 ], [ -123.155312245999966, 51.996719198000115 ], [ -123.155340528999972, 51.996286589000086 ], [ -123.15364109799998, 51.996244558000136 ], [ -123.153703005999915, 51.995298136000024 ], [ -123.150990262999983, 51.995230989000056 ], [ -123.151108133999983, 51.9934306540001 ], [ -123.146093502999989, 51.99330636300008 ], [ -123.146094170999945, 51.993296200000081 ], [ -123.144890458999939, 51.993266332000118 ], [ -123.144900141, 51.993118766000109 ], [ -123.142600583000018, 51.99306167200011 ], [ -123.142655242, 51.992229257000076 ], [ -123.139558325999985, 51.992152293000053 ], [ -123.139793978999961, 51.988566970000072 ], [ -123.141846833999978, 51.988617995 ], [ -123.141871610999942, 51.988240719000068 ], [ -123.147105371999942, 51.988370645000053 ], [ -123.147175816999919, 51.987296005000097 ], [ -123.14966451399999, 51.987281464000127 ], [ -123.153533359999983, 51.987223790000051 ], [ -123.153472604999962, 51.988152704000051 ], [ -123.15295882499997, 51.988139989000032 ], [ -123.152933205999915, 51.988531617000064 ], [ -123.149428394, 51.988444816000047 ], [ -123.147699407999966, 51.988401955000015 ], [ -123.147693209999929, 51.988496502000025 ], [ -123.149398592999958, 51.988538777000016 ], [ -123.15172064799998, 51.988596298000054 ], [ -123.151638423999884, 51.989852631000062 ], [ -123.152157720000034, 51.989865489000096 ], [ -123.152039900999938, 51.991665830000095 ], [ -123.157054358999972, 51.991789862000111 ], [ -123.156992528999965, 51.992736289000113 ], [ -123.159705124999974, 51.992803294000112 ], [ -123.15964469, 51.993729209000065 ], [ -123.161344028999963, 51.993771153000104 ], [ -123.161321856999933, 51.994111033000053 ], [ -123.161759936999943, 51.994121841000045 ], [ -123.161737411999965, 51.994467179000068 ], [ -123.162063948999943, 51.994475234000028 ], [ -123.162006754999979, 51.995352183000065 ], [ -123.162685286999974, 51.995368919000072 ], [ -123.162568963999973, 51.997152789000026 ], [ -123.163802069999932, 51.997183193000133 ], [ -123.163767208999928, 51.997717994000091 ], [ -123.164553477999945, 51.997737374000089 ], [ -123.164531804999967, 51.998069958000038 ], [ -123.16524597599999, 51.998087556000023 ], [ -123.165221188, 51.998468025000058 ], [ -123.166009173999953, 51.998487437000044 ], [ -123.165989756999963, 51.998785534000092 ], [ -123.166525272999962, 51.998798723000093 ], [ -123.166327200999916, 52.001840025000035 ], [ -123.166968468999954, 52.001855816000088 ], [ -123.16694232499998, 52.002257313000072 ], [ -123.168013856999949, 52.00228369000012 ], [ -123.16795614199999, 52.003170330000053 ], [ -123.168161613999956, 52.003175387000063 ], [ -123.168134702999936, 52.003588808000117 ], [ -123.168535728999984, 52.003598677000106 ], [ -123.168467822999972, 52.004642025000059 ], [ -123.170533126999928, 52.004692826000067 ], [ -123.170486518999951, 52.005409416000084 ], [ -123.171344344999952, 52.00543050699999 ], [ -123.171154809999933, 52.008345251 ], [ -123.173930350999981, 52.008413442000098 ], [ -123.173738811999954, 52.011361482000083 ], [ -123.173756702999981, 52.011361456000067 ], [ -123.173761151999912, 52.012509973000157 ], [ -123.174187526999958, 52.012520442000088 ], [ -123.174183761999956, 52.012578400000095 ], [ -123.176159455999937, 52.012626890000021 ], [ -123.176145786999925, 52.012837433000072 ], [ -123.176889244, 52.012855671000054 ], [ -123.176831602999968, 52.013743719000075 ], [ -123.178300350999919, 52.013779736000082 ], [ -123.178227451999987, 52.01490340400008 ], [ -123.178302230999947, 52.01490523700005 ], [ -123.178200084999943, 52.016479658000094 ], [ -123.179022407, 52.016478412 ], [ -123.179024560999935, 52.017017865000049 ], [ -123.179461719999978, 52.017017200000048 ], [ -123.179467115999913, 52.018365832000065 ], [ -123.178592771999931, 52.018367161000107 ], [ -123.178595994999938, 52.019176341000069 ], [ -123.177763345999949, 52.019177600000056 ], [ -123.177721633000019, 52.019177664000047 ], [ -123.177721855999906, 52.019233791000026 ], [ -123.177723769999943, 52.019717116000038 ], [ -123.17741909599999, 52.019717576000076 ], [ -123.17641221199996, 52.019719088000045 ], [ -123.176411151999986, 52.019449361000092 ], [ -123.175973968999955, 52.019450015000125 ], [ -123.17597291, 52.019180288000072 ], [ -123.17513191099999, 52.019181542000041 ], [ -123.175098756999958, 52.019691928000043 ], [ -123.169265591999974, 52.019548635000056 ] ], [ [ -123.166317084999932, 52.008987866000083 ], [ -123.166316752999975, 52.008897890000071 ], [ -123.165279478999963, 52.008872346000047 ], [ -123.165309829999941, 52.008406597000061 ], [ -123.165003698999953, 52.008407026000043 ], [ -123.165002743999963, 52.008147792000074 ], [ -123.16446829799996, 52.008134625000061 ], [ -123.16448665800003, 52.00785296500009 ], [ -123.16237903499993, 52.007801015000084 ], [ -123.162379288999915, 52.007871215000065 ], [ -123.161942219999929, 52.007871817000058 ], [ -123.161946587, 52.009081709000071 ], [ -123.163783821999957, 52.009127002000113 ], [ -123.163796942999923, 52.008925786000063 ], [ -123.166317084999932, 52.008987866000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024186", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "134.8", "sL_BldgLoss": "134.8", "sL_StrLoss": "134.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CED6C93267CB5EC07D699B2C7F044A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.175372579999959, 52.033266906000023 ], [ -123.181207606000029, 52.03340988700004 ], [ -123.180975123999971, 52.036995158000082 ], [ -123.175139616999942, 52.036852164000052 ], [ -123.175372579999959, 52.033266906000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024187", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "291.8", "sL_BldgLoss": "291.8", "sL_StrLoss": "291.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000045E35830D4CB5EC003CEB5DCD7034A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.18152544899999, 52.032861938000075 ], [ -123.181569159999952, 52.032187662000105 ], [ -123.18124518599997, 52.032179732000031 ], [ -123.181477618999963, 52.028594447000032 ], [ -123.18165667699995, 52.028598830000099 ], [ -123.181776023999959, 52.026757551000046 ], [ -123.183216952999942, 52.026792812000032 ], [ -123.187610197999973, 52.026900210000051 ], [ -123.187448036999939, 52.029407153000129 ], [ -123.188665533999981, 52.029436886000035 ], [ -123.188504855999923, 52.031921696000019 ], [ -123.188433687, 52.03302218300005 ], [ -123.18736099799996, 52.032995987 ], [ -123.187360439999964, 52.033004609000038 ], [ -123.18152544899999, 52.032861938000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024188", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3315667", "BldgCostT": "2286667", "sL_LossRatio": "1", "sL_AssetLoss": "290.1", "sL_BldgLoss": "290.1", "sL_StrLoss": "290.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F315AC8A53CD5EC0D8C94BC47C054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.205193338999905, 52.045008444000075 ], [ -123.205246809999949, 52.044176879000091 ], [ -123.205187695999882, 52.044175445000086 ], [ -123.205418219999927, 52.040590148000042 ], [ -123.207956727999914, 52.040651715000088 ], [ -123.211254326999963, 52.040731607000055 ], [ -123.211200973999922, 52.041563178000054 ], [ -123.211260084999935, 52.041564609000041 ], [ -123.211155149999954, 52.043200119000133 ], [ -123.211030036999929, 52.045149914000071 ], [ -123.205193338999905, 52.045008444000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024190", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10763833", "BldgCostT": "7423333", "sL_LossRatio": "1", "sL_AssetLoss": "708", "sL_BldgLoss": "708", "sL_StrLoss": "708", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F828D0E5D5C75EC060D1E782FEF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.118009498999982, 51.924247027000064 ], [ -123.118033457999928, 51.923884667000067 ], [ -123.116400761999927, 51.923843685000065 ], [ -123.11642957, 51.923408248000086 ], [ -123.116637949999941, 51.920258196000105 ], [ -123.11835559599993, 51.920301309000074 ], [ -123.118359877999978, 51.920236538000047 ], [ -123.119370111999899, 51.920261883000123 ], [ -123.11937143599998, 51.92024186200014 ], [ -123.12181268799999, 51.920303072000117 ], [ -123.121868978999956, 51.919450520000105 ], [ -123.122544809999908, 51.919467458000042 ], [ -123.12255926200001, 51.919248537000101 ], [ -123.12837885799999, 51.919394209000039 ], [ -123.128240404999985, 51.921495838000062 ], [ -123.12814264099994, 51.922979725000083 ], [ -123.127466750999929, 51.922962822000088 ], [ -123.127452324, 51.923181742000097 ], [ -123.125010902999946, 51.923120651000026 ], [ -123.124954668999976, 51.923973201000074 ], [ -123.123944344999984, 51.923947905000041 ], [ -123.123943023999971, 51.923967926000088 ], [ -123.123857931999936, 51.923965796000118 ], [ -123.123829746999903, 51.924392928000046 ], [ -123.118009498999982, 51.924247027000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024191", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17545000", "BldgCostT": "12100000", "sL_LossRatio": "1", "sL_AssetLoss": "1250", "sL_BldgLoss": "1250", "sL_StrLoss": "1250", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2917472ABC85EC0F44972E92DF64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.134909443999959, 51.927428367000104 ], [ -123.134996971999982, 51.9260968500001 ], [ -123.134331714999945, 51.926080254000084 ], [ -123.134347910999978, 51.92583392300007 ], [ -123.132167349000014, 51.925779498000139 ], [ -123.13218646099989, 51.925489041000034 ], [ -123.131691651999944, 51.925476685000021 ], [ -123.131715981999932, 51.925106990000046 ], [ -123.131054552999927, 51.925090469000047 ], [ -123.131063689999976, 51.924951682 ], [ -123.129753014999949, 51.924918936000047 ], [ -123.129767250999961, 51.924702755000105 ], [ -123.129169706999917, 51.92468782 ], [ -123.129202877999958, 51.924184192000048 ], [ -123.128891731999943, 51.924176413000069 ], [ -123.128900355999974, 51.924045497000073 ], [ -123.128292417999958, 51.924030298000076 ], [ -123.128458789999925, 51.921504968000136 ], [ -123.128528630999966, 51.920444785000079 ], [ -123.129934204999969, 51.92047992100008 ], [ -123.12994597799991, 51.920301119000044 ], [ -123.130879649999898, 51.920324449000091 ], [ -123.130917772999965, 51.919745241000108 ], [ -123.133657334, 51.919813652000123 ], [ -123.133665858999919, 51.919684008000026 ], [ -123.139485550999922, 51.919829118000095 ], [ -123.139437726000011, 51.92055788100005 ], [ -123.139591696999943, 51.920561716000044 ], [ -123.139581702999934, 51.920714024000027 ], [ -123.140439776, 51.920735393000051 ], [ -123.140406293999973, 51.92124578100006 ], [ -123.141518370999947, 51.921273466000045 ], [ -123.141457249999931, 51.922205489000149 ], [ -123.141584832999968, 51.922208665 ], [ -123.141349684999938, 51.92579420000002 ], [ -123.140847712999914, 51.92578170500007 ], [ -123.140782558999931, 51.926774908000041 ], [ -123.14073017399997, 51.927573412000072 ], [ -123.134909443999959, 51.927428367000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024193", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21979583", "BldgCostT": "15158333", "sL_LossRatio": "1", "sL_AssetLoss": "1652", "sL_BldgLoss": "1652", "sL_StrLoss": "1652", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001103FAD047A05EC06B0E31DA3AF74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.507555311999965, 51.939654545000096 ], [ -122.507572357999905, 51.9394419220001 ], [ -122.507530717999956, 51.939440656000059 ], [ -122.506237122999963, 51.939401316000037 ], [ -122.506438391999936, 51.936891804000027 ], [ -122.501533126999931, 51.936742496000107 ], [ -122.501680240999988, 51.934910589000069 ], [ -122.50146036699999, 51.934909658000045 ], [ -122.501466343999979, 51.934370215000044 ], [ -122.501030003999986, 51.934368367000047 ], [ -122.501035987999927, 51.933828870000106 ], [ -122.500924807999965, 51.933825484000117 ], [ -122.500946065999955, 51.93356080300002 ], [ -122.500308201999943, 51.933541367000068 ], [ -122.50038598899999, 51.932573021000039 ], [ -122.49916932899994, 51.932535939000019 ], [ -122.499314828999928, 51.930725170000073 ], [ -122.498709939999927, 51.930706730000097 ], [ -122.498907170999971, 51.928252342000121 ], [ -122.497443264999959, 51.928207700000023 ], [ -122.497452371999955, 51.928094404000028 ], [ -122.49669434499998, 51.928071280000026 ], [ -122.4966973, 51.928034517000079 ], [ -122.495987520999918, 51.928012861000056 ], [ -122.495997217999957, 51.927892283000062 ], [ -122.495166798999918, 51.927866940000079 ], [ -122.495333070999962, 51.925799797000089 ], [ -122.490422667999965, 51.925649817000071 ], [ -122.490711318999914, 51.922065765000063 ], [ -122.496528951999963, 51.922243432000151 ], [ -122.496411792999936, 51.923700629000052 ], [ -122.501815659999977, 51.923865395000121 ], [ -122.501810886999948, 51.923924833000072 ], [ -122.502672231999952, 51.923951072000094 ], [ -122.502668671999942, 51.923995430000083 ], [ -122.503418007999954, 51.924018252000089 ], [ -122.503355673999963, 51.924795052000071 ], [ -122.503549357999958, 51.924800951000059 ], [ -122.503513035999973, 51.925253602000062 ], [ -122.503870114999955, 51.92526447500007 ], [ -122.503904775999956, 51.924832487000067 ], [ -122.509722830999948, 51.925009486000043 ], [ -122.509435722999939, 51.92859357600004 ], [ -122.506705561999951, 51.928510555000088 ], [ -122.506670926999945, 51.928942542000122 ], [ -122.505580304999938, 51.928909359000052 ], [ -122.505512626999916, 51.929753169000037 ], [ -122.505226535, 51.929744463000041 ], [ -122.505222034999974, 51.929800577000059 ], [ -122.50544382899993, 51.929801508000025 ], [ -122.50544049299999, 51.930104837000087 ], [ -122.506414817999939, 51.930134482000071 ], [ -122.506393593999988, 51.930399164000043 ], [ -122.507031414999972, 51.930418566000043 ], [ -122.507013941999958, 51.930636503000073 ], [ -122.510740910999985, 51.930749803000062 ], [ -122.511502764999989, 51.93077294800009 ], [ -122.511215765999964, 51.934357024000064 ], [ -122.510904545999921, 51.934347570000071 ], [ -122.510899443999946, 51.934411275000045 ], [ -122.513353552999959, 51.934485804000104 ], [ -122.513298662999929, 51.935171620000091 ], [ -122.51364708899996, 51.935182198000071 ], [ -122.513608260999916, 51.935667370000047 ], [ -122.51375401899999, 51.935671795000111 ], [ -122.513523366999976, 51.938553792000043 ], [ -122.51448839499993, 51.938583080000086 ], [ -122.514214100999979, 51.942010800000048 ], [ -122.511411663999965, 51.941948570000115 ], [ -122.506109196999915, 51.941830603000071 ], [ -122.50615124399998, 51.94130642200011 ], [ -122.506196352999908, 51.940744030000076 ], [ -122.506200962999955, 51.940324318000101 ], [ -122.50623000899995, 51.940324440000147 ], [ -122.50628683399999, 51.939615969000094 ], [ -122.507376601999937, 51.939649111000087 ], [ -122.507555311999965, 51.939654545000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024195", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "236.8", "sL_BldgLoss": "236.8", "sL_StrLoss": "236.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C6B5B1852875EC0A0B358CC80F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.111063317999964, 51.91775444000011 ], [ -122.111265136999975, 51.915493052000045 ], [ -122.117080264999942, 51.915689928000077 ], [ -122.116920267999944, 51.917485394000025 ], [ -122.117030792999941, 51.917489133000089 ], [ -122.116711468999966, 51.921072210000077 ], [ -122.113579909999913, 51.920966229000065 ], [ -122.113385772999933, 51.920365609000058 ], [ -122.113095990999938, 51.919788906000086 ], [ -122.112711370999989, 51.919228717000109 ], [ -122.112244904999926, 51.918703521000104 ], [ -122.111776383999981, 51.91826623900004 ], [ -122.111063317999964, 51.91775444000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024196", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "48", "sL_BldgLoss": "48", "sL_StrLoss": "48", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7E2EDF73A895EC061103F9C13FB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.143214437, 51.960751133000066 ], [ -122.145175649999928, 51.960816946000094 ], [ -122.14501542499994, 51.962626170000085 ], [ -122.143211693999888, 51.961925092000051 ], [ -122.143214437, 51.960751133000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024197", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.1", "sL_BldgLoss": "45.1", "sL_StrLoss": "45.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF8592874D885EC02B3FDB30ABF74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.12700316899999, 51.934140844000062 ], [ -122.131243222999956, 51.934283778000115 ], [ -122.13106964499994, 51.936237929000107 ], [ -122.13031360799999, 51.935919290000086 ], [ -122.12984555599995, 51.935694808000058 ], [ -122.128949414999923, 51.935264989000061 ], [ -122.12700316899999, 51.934140844000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024199", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CA65069468F5EC06D08A76859CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.239217975999935, 51.579579001000099 ], [ -122.239483259999986, 51.579541085000074 ], [ -122.239276167999918, 51.581960057000074 ], [ -122.23875232599994, 51.581916280000101 ], [ -122.238422737999954, 51.5818214600001 ], [ -122.237520911999951, 51.581561968000109 ], [ -122.238049312, 51.58041027900002 ], [ -122.23824009399999, 51.580125412000058 ], [ -122.238811522999967, 51.579703940000115 ], [ -122.238929532999961, 51.579659299000113 ], [ -122.239095642, 51.579596495000047 ], [ -122.239217975999935, 51.579579001000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024200", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "101.5", "sL_BldgLoss": "101.5", "sL_StrLoss": "101.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056803153C1895EC06A6391CB24EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.154027044999935, 51.866106469000052 ], [ -122.15492661799999, 51.866136644000065 ], [ -122.154610777999949, 51.869719989000025 ], [ -122.148801603, 51.869525005000099 ], [ -122.148882096999941, 51.868613190000119 ], [ -122.152278769999981, 51.867125595000104 ], [ -122.153234086999944, 51.866681445000054 ], [ -122.15379361699992, 51.866331840000065 ], [ -122.154027044999935, 51.866106469000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024203", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.9", "sL_BldgLoss": "49.9", "sL_StrLoss": "49.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000965863239895EC031F9767DACFA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.143224065999988, 51.956613962000112 ], [ -122.145166157999981, 51.956679140000091 ], [ -122.144848859999968, 51.960262172000078 ], [ -122.143215708999918, 51.960207365000059 ], [ -122.14321768399995, 51.959361167000068 ], [ -122.143224065999988, 51.956613962000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024204", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45645667", "BldgCostT": "30216667", "sL_LossRatio": "1", "sL_AssetLoss": "3001", "sL_BldgLoss": "3001", "sL_StrLoss": "3001", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000776750E1C68B5EC00649A7C7190D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.190570181999959, 52.115253155000083 ], [ -122.190571532999925, 52.115178532000051 ], [ -122.189654471999972, 52.115148236000032 ], [ -122.189669495999965, 52.114977238000044 ], [ -122.189260839999974, 52.114974429000057 ], [ -122.189264982999958, 52.11474606000008 ], [ -122.18788346299999, 52.114700402000075 ], [ -122.187881957999963, 52.114688832000084 ], [ -122.186534278999986, 52.114641045000084 ], [ -122.186733696999951, 52.112372914000026 ], [ -122.184281363999972, 52.112291797000083 ], [ -122.184312756999958, 52.111934944000019 ], [ -122.18013663899994, 52.111796686000041 ], [ -122.180243644999933, 52.110581618000062 ], [ -122.17822413499999, 52.110514705000107 ], [ -122.177584768999978, 52.110050126000012 ], [ -122.177447633999932, 52.109578415000087 ], [ -122.177465586999944, 52.109374690000088 ], [ -122.177387655999894, 52.109372107000056 ], [ -122.176374023999955, 52.105885122000089 ], [ -122.174177835999927, 52.098928287000064 ], [ -122.173661938999899, 52.097293677000081 ], [ -122.174957285999966, 52.097336665000043 ], [ -122.175004279999897, 52.096803584000078 ], [ -122.174699982999954, 52.096801453000083 ], [ -122.174714914999953, 52.095992365000093 ], [ -122.17427702699996, 52.095989299000124 ], [ -122.174299787999971, 52.094756523000065 ], [ -122.172846045999947, 52.094708266000076 ], [ -122.172535721999935, 52.093724828000106 ], [ -122.172371455999965, 52.093731659000099 ], [ -122.172602961999971, 52.091107005000055 ], [ -122.178441873999972, 52.091300746000101 ], [ -122.178126336999981, 52.094883459000094 ], [ -122.177801109999933, 52.094872675000083 ], [ -122.177799963999945, 52.094934997000095 ], [ -122.178675718999969, 52.09494110100006 ], [ -122.178690577999987, 52.094132011000042 ], [ -122.178252709, 52.094128960000056 ], [ -122.178267573999946, 52.09331987000008 ], [ -122.178705435999973, 52.093322921000095 ], [ -122.178710387999956, 52.093053225000055 ], [ -122.18002396699994, 52.093062368000034 ], [ -122.180019021999954, 52.093332066000066 ], [ -122.180894746999968, 52.093338153000019 ], [ -122.180889806999943, 52.093607850000041 ], [ -122.181243928999962, 52.093610310000066 ], [ -122.181457423999987, 52.091184211000069 ], [ -122.180496417999962, 52.091177535000128 ], [ -122.180491476, 52.091447231000117 ], [ -122.178740101999949, 52.091435044000029 ], [ -122.178754956999967, 52.090625954000103 ], [ -122.178317121999967, 52.09062290100006 ], [ -122.178331983999954, 52.089813813000134 ], [ -122.180958949999962, 52.089832093000084 ], [ -122.180954012999933, 52.09010179000007 ], [ -122.181829674999946, 52.090107871000022 ], [ -122.181834607999974, 52.089838173000025 ], [ -122.18227243599999, 52.089841212000088 ], [ -122.182277366999955, 52.089571514000056 ], [ -122.181401713999918, 52.089565437000047 ], [ -122.181421455999924, 52.08848664800005 ], [ -122.183610530999928, 52.088501829000087 ], [ -122.183595764999964, 52.089310921000035 ], [ -122.18490923499999, 52.089320010000058 ], [ -122.184928892999935, 52.088241221000033 ], [ -122.185215919999905, 52.088243204000086 ], [ -122.186242329999956, 52.088250295000094 ], [ -122.186232519999976, 52.088789690000056 ], [ -122.186670336999939, 52.088792712000014 ], [ -122.186650721999953, 52.089871501000097 ], [ -122.187088550999945, 52.089874520000095 ], [ -122.187077502999941, 52.090482393000038 ], [ -122.187374166999959, 52.09049220700004 ], [ -122.187168606999961, 52.092831807000046 ], [ -122.187166651999945, 52.092854058000043 ], [ -122.187059372999968, 52.094074946000099 ], [ -122.184823926999982, 52.094000979 ], [ -122.184815847999943, 52.094444257000106 ], [ -122.185253720999981, 52.094447283000115 ], [ -122.185234067999914, 52.09552607200002 ], [ -122.187423489, 52.095541183000073 ], [ -122.18742839, 52.095271486000094 ], [ -122.188037959999974, 52.09527568500004 ], [ -122.189179919999958, 52.095283546000147 ], [ -122.18916036, 52.096362334000077 ], [ -122.188392983999947, 52.09635705500007 ], [ -122.185219326999928, 52.096335163000099 ], [ -122.18521275099998, 52.096696064000042 ], [ -122.188534214999933, 52.096805932000066 ], [ -122.189871820999926, 52.09685015000013 ], [ -122.189816981999911, 52.097474637000118 ], [ -122.19061263699993, 52.097500932000109 ], [ -122.190403760999914, 52.099879894000061 ], [ -122.191823561999954, 52.099926802000013 ], [ -122.191725753999933, 52.101041082000066 ], [ -122.191889838999913, 52.101046502000059 ], [ -122.191834680999989, 52.101674879000051 ], [ -122.192268069999912, 52.101689194000087 ], [ -122.192174306999945, 52.102757482000136 ], [ -122.192831324999972, 52.102779179000031 ], [ -122.192768932999982, 52.103490135000101 ], [ -122.193072966999964, 52.103500174000047 ], [ -122.192978815999979, 52.104573059000053 ], [ -122.193972109999933, 52.10460585200007 ], [ -122.193657756999968, 52.10818856600013 ], [ -122.192355606999968, 52.108145574000041 ], [ -122.192230451999976, 52.109571335000091 ], [ -122.193842670999956, 52.109624561000039 ], [ -122.193765086999989, 52.110508719000059 ], [ -122.194199420999922, 52.11052305400009 ], [ -122.194095991, 52.1117018260001 ], [ -122.195810943999959, 52.111758413000089 ], [ -122.195496692999924, 52.115341111000085 ], [ -122.191885143999954, 52.115221915000056 ], [ -122.191884416999983, 52.11526216900009 ], [ -122.190795416999947, 52.115254701000055 ], [ -122.190570181999959, 52.115253155000083 ] ], [ [ -122.177768844999932, 52.096627590000089 ], [ -122.177770213999977, 52.096553176000022 ], [ -122.176894425999976, 52.096547064000085 ], [ -122.176893477999897, 52.096598562000032 ], [ -122.177768844999932, 52.096627590000089 ] ], [ [ -122.18084040799999, 52.096304818000057 ], [ -122.180833033999974, 52.096707407000046 ], [ -122.182146093999961, 52.09675077800005 ], [ -122.18214915099999, 52.096583635000044 ], [ -122.181273361999928, 52.096577556000042 ], [ -122.181278300999963, 52.096307859 ], [ -122.18084040799999, 52.096304818000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024205", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "205", "sL_BldgLoss": "205", "sL_StrLoss": "205", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FC7D733D19925EC07B01AC440FCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.280056662999982, 51.576704403000051 ], [ -122.285827720000015, 51.576892796000102 ], [ -122.285524631999962, 51.580477460000104 ], [ -122.279753104999926, 51.580289052000111 ], [ -122.280056662999982, 51.576704403000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024206", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.2", "sL_BldgLoss": "37.2", "sL_StrLoss": "37.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000079D29D7488B5EC0D44BA5029B124A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.175151813999918, 52.145886388000058 ], [ -122.175165785999965, 52.145486545000068 ], [ -122.175161811999899, 52.144462960000055 ], [ -122.175641236999951, 52.144478847000123 ], [ -122.175905043999975, 52.144487589000015 ], [ -122.175894529999951, 52.144606749000047 ], [ -122.175874409999935, 52.144834768000081 ], [ -122.176589282999913, 52.144858454000051 ], [ -122.177184022999953, 52.144878156000068 ], [ -122.177172833999961, 52.145005 ], [ -122.177152410999952, 52.145236539000102 ], [ -122.17778952499998, 52.145257640000146 ], [ -122.177752324999943, 52.145679436000108 ], [ -122.177875837999949, 52.145683527000074 ], [ -122.177843744999947, 52.145968654000036 ], [ -122.17785363299997, 52.145978400000097 ], [ -122.175151813999918, 52.145886388000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024209", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "130.1", "sL_BldgLoss": "130.1", "sL_StrLoss": "130.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084D537B431915EC0F9096F285FFE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.265068328999931, 51.988986427000015 ], [ -122.265375944999931, 51.985403158000082 ], [ -122.271201089999948, 51.98559222100004 ], [ -122.271162891999964, 51.986037906000064 ], [ -122.272798875999968, 51.986048018000112 ], [ -122.272848669999945, 51.986048325000077 ], [ -122.272831196999974, 51.987127157000018 ], [ -122.272699676999963, 51.987126344000025 ], [ -122.272394360999954, 51.987124459000079 ], [ -122.272389990999955, 51.987394166000058 ], [ -122.271953152999956, 51.987391466000126 ], [ -122.271931283999976, 51.988740004000135 ], [ -122.271057583999976, 51.988734600000029 ], [ -122.271053203999955, 51.989004307000059 ], [ -122.270908704999954, 51.989003413000077 ], [ -122.270893953999945, 51.989175506000038 ], [ -122.265068328999931, 51.988986427000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "92.9", "sL_BldgLoss": "92.9", "sL_StrLoss": "92.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009227A4903F8A5EC03BCF124376EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.159947832999976, 51.860881661000029 ], [ -122.162353865999975, 51.860962237000123 ], [ -122.162038673999973, 51.864545620000101 ], [ -122.157935809999941, 51.864408188000034 ], [ -122.157903708999953, 51.864772719000122 ], [ -122.155979330999955, 51.864708207000078 ], [ -122.156497888999937, 51.864408664000074 ], [ -122.15754839799996, 51.863801818000077 ], [ -122.157988133999964, 51.86347311300009 ], [ -122.158070663999936, 51.863411409000065 ], [ -122.158451250999974, 51.863009063000092 ], [ -122.159112803999989, 51.861993616000071 ], [ -122.159564275999969, 51.861300604000071 ], [ -122.159947832999976, 51.860881661000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024211", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "163.9", "sL_BldgLoss": "163.9", "sL_StrLoss": "163.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000709249BA64915EC0CBD01D6995E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.269026591999989, 51.78392320600004 ], [ -122.27482492899999, 51.78411212000006 ], [ -122.274519502999922, 51.787696056000136 ], [ -122.268720692, 51.787507128000115 ], [ -122.269026591999989, 51.78392320600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "128.1", "sL_BldgLoss": "128.1", "sL_StrLoss": "128.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF0BDFEB39895EC0547655FBCFF94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.143230790999965, 51.953732783000113 ], [ -122.143233405000018, 51.952600033000095 ], [ -122.143236315999914, 51.951341308000082 ], [ -122.143238920999977, 51.950235223000078 ], [ -122.143241711999934, 51.949030554000089 ], [ -122.143242517999923, 51.948694197000137 ], [ -122.14318270899993, 51.948250190000088 ], [ -122.143001810999962, 51.947837084000092 ], [ -122.14288733799999, 51.947673085000083 ], [ -122.142825956999957, 51.947585122000113 ], [ -122.142708649999946, 51.947417055000109 ], [ -122.145391602999922, 51.9475071210001 ], [ -122.145074391999955, 51.951090182000044 ], [ -122.145053293999979, 51.951089474000064 ], [ -122.144911457999939, 51.952691377000036 ], [ -122.14519327699999, 51.952700833000044 ], [ -122.14493058499994, 51.955667591000037 ], [ -122.144876009999976, 51.956283878000093 ], [ -122.143224961999962, 51.956228464000098 ], [ -122.143226313999946, 51.955646129000023 ], [ -122.143226971000033, 51.955360377000034 ], [ -122.143230790999965, 51.953732783000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024213", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "239.6", "sL_BldgLoss": "239.6", "sL_StrLoss": "239.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003225AB85C6875EC0C27793C685F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.11984602199999, 51.91617495800007 ], [ -122.125661280999921, 51.916371400000067 ], [ -122.125342672999935, 51.919954505000128 ], [ -122.12315863399999, 51.919880762000027 ], [ -122.123137787999951, 51.9201150580001 ], [ -122.117322041999913, 51.919918489000068 ], [ -122.117641307999946, 51.916335407000091 ], [ -122.119825157999941, 51.916409254000094 ], [ -122.11984602199999, 51.91617495800007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.5", "sL_BldgLoss": "44.5", "sL_StrLoss": "44.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056B1DFB0408F5EC0773516A02FE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.241448261999949, 51.790062955000053 ], [ -122.242886790999989, 51.789957358000095 ], [ -122.24284680800001, 51.790422512000085 ], [ -122.242312125999902, 51.790404956000039 ], [ -122.242307786999959, 51.790455424000079 ], [ -122.241583759999955, 51.790431649000077 ], [ -122.241578557999901, 51.790492142000105 ], [ -122.240730650999936, 51.790464292000081 ], [ -122.240724623999981, 51.790534363000056 ], [ -122.240136450999941, 51.790515040000088 ], [ -122.240135896999902, 51.790521476000016 ], [ -122.239491351999902, 51.79050029800009 ], [ -122.239483074999924, 51.790596491000059 ], [ -122.238672493999957, 51.790569853000115 ], [ -122.238652549999955, 51.790801612000131 ], [ -122.236823131999955, 51.790741469000068 ], [ -122.236819671999953, 51.790781655000067 ], [ -122.23607367399994, 51.790757122000123 ], [ -122.235978002999957, 51.791868073000082 ], [ -122.235343711999974, 51.791847210000078 ], [ -122.23545130799998, 51.790162198000061 ], [ -122.241448261999949, 51.790062955000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024215", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16956000", "BldgCostT": "11430000", "sL_LossRatio": "1", "sL_AssetLoss": "1182", "sL_BldgLoss": "1182", "sL_StrLoss": "1182", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000035F1EDE17B8B5EC0F995D6F82F0F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.175507018999923, 52.121701838000014 ], [ -122.175452224999901, 52.121031214000034 ], [ -122.173309193999955, 52.121135326000065 ], [ -122.173320604999958, 52.121006015000034 ], [ -122.170515516999941, 52.120912917000048 ], [ -122.17058464199998, 52.12013014800003 ], [ -122.17053557199992, 52.120128519000041 ], [ -122.17058344099999, 52.119586454000121 ], [ -122.170422705999954, 52.119581116000049 ], [ -122.170494698999946, 52.118765861000085 ], [ -122.170451264999883, 52.118764419000101 ], [ -122.170548706999938, 52.117660940000071 ], [ -122.170364646999928, 52.117654829000081 ], [ -122.170495756999927, 52.114513571000032 ], [ -122.169824888, 52.11451319400004 ], [ -122.170366225999913, 52.114052799 ], [ -122.170395084999882, 52.114000392000079 ], [ -122.170662705999916, 52.113514692000109 ], [ -122.170770509999954, 52.113073603000046 ], [ -122.170754113999948, 52.112644606000067 ], [ -122.170575824999929, 52.112176105000081 ], [ -122.171112618, 52.112068088000022 ], [ -122.17156041299998, 52.112056096000039 ], [ -122.17200801499996, 52.112129293000109 ], [ -122.173480090999973, 52.112627289000088 ], [ -122.173952708999977, 52.112715699000084 ], [ -122.174235599999946, 52.112729602000101 ], [ -122.174962076999947, 52.112763601000054 ], [ -122.175355000999957, 52.112875404000071 ], [ -122.175509561999931, 52.112968972000033 ], [ -122.175622024999925, 52.113037003000017 ], [ -122.176264127999943, 52.113812008000117 ], [ -122.176464825999943, 52.113943502000041 ], [ -122.176704006999941, 52.114104984000065 ], [ -122.176956193999928, 52.114234605000021 ], [ -122.17781768099999, 52.114681804000092 ], [ -122.17808159399999, 52.114878313000112 ], [ -122.178537702999961, 52.115437696000086 ], [ -122.180345119999942, 52.116620507000029 ], [ -122.180353496999913, 52.116627895000114 ], [ -122.181376856999947, 52.117527319000054 ], [ -122.181470809999922, 52.117609913000067 ], [ -122.183322306999969, 52.118410034000121 ], [ -122.18351711299999, 52.118494202000136 ], [ -122.183971804999928, 52.118620610000036 ], [ -122.18446089900003, 52.118672709000094 ], [ -122.185138893999948, 52.118575703000054 ], [ -122.186229418999972, 52.118301798000076 ], [ -122.18646720299995, 52.118296187000105 ], [ -122.186663304999939, 52.118365591000057 ], [ -122.186874789999976, 52.118826191000068 ], [ -122.187284192999954, 52.119050785000113 ], [ -122.187411117999929, 52.119073023000098 ], [ -122.18777770399997, 52.119137202000054 ], [ -122.188462865999966, 52.119157458000046 ], [ -122.188052212999978, 52.115998614000027 ], [ -122.190065517999955, 52.116065141000057 ], [ -122.191724311999977, 52.116119928000032 ], [ -122.191651466999943, 52.116949502000097 ], [ -122.191873266999892, 52.116956825000038 ], [ -122.191558651999955, 52.120539497000053 ], [ -122.191522245999948, 52.120538295000095 ], [ -122.191433110999981, 52.121553199000047 ], [ -122.188591292, 52.121459330000064 ], [ -122.186712842999952, 52.121397243000033 ], [ -122.186665590999979, 52.121934586000066 ], [ -122.186631652999935, 52.122320513000098 ], [ -122.186478324999911, 52.122315443000069 ], [ -122.186423581999946, 52.122937916000069 ], [ -122.18366149799999, 52.122846565000025 ], [ -122.183659956999946, 52.122864083000053 ], [ -122.18352289799999, 52.122859547000132 ], [ -122.183478481999956, 52.123364186000089 ], [ -122.18204151899999, 52.123316634000055 ], [ -122.182040516, 52.123328021000049 ], [ -122.18094667699998, 52.12329181000009 ], [ -122.180944568999962, 52.123315747000035 ], [ -122.175327784999979, 52.123129646000116 ], [ -122.175390216999958, 52.121963679000032 ], [ -122.175507018999923, 52.121701838000014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024216", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22418917", "BldgCostT": "13251667", "sL_LossRatio": "1", "sL_AssetLoss": "758", "sL_BldgLoss": "758", "sL_StrLoss": "758", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EF41E7B96E8B5EC030AA3DD3E80A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.172317672999981, 52.088785953000091 ], [ -122.172308803999954, 52.086387166000051 ], [ -122.172620771999945, 52.086397526000063 ], [ -122.17263136599999, 52.086277399000089 ], [ -122.175455556999935, 52.086371156000041 ], [ -122.175457879999897, 52.086344789000066 ], [ -122.173543589999937, 52.086281247000024 ], [ -122.17385944099999, 52.082698522000094 ], [ -122.17432936599999, 52.082714123000081 ], [ -122.174365345999945, 52.08230591000008 ], [ -122.174842924999979, 52.082007363000038 ], [ -122.175997190999979, 52.081285791000042 ], [ -122.176717555999971, 52.080841541000041 ], [ -122.176888709999915, 52.080735984000057 ], [ -122.177985306999943, 52.080150789000044 ], [ -122.178640214999945, 52.079859901000106 ], [ -122.179942197999964, 52.079388361000056 ], [ -122.180629315999965, 52.079139498000096 ], [ -122.181446896999987, 52.078843370000136 ], [ -122.181977590999978, 52.078651148000056 ], [ -122.182039574, 52.078628698000038 ], [ -122.182026937000018, 52.0793199780001 ], [ -122.181861835999925, 52.079318832000084 ], [ -122.181855966999962, 52.079385551000037 ], [ -122.181696485999979, 52.081198567000044 ], [ -122.182283908999963, 52.08121803000008 ], [ -122.182069712999976, 52.083653189000117 ], [ -122.184300708999928, 52.083727081000063 ], [ -122.184276497999974, 52.08400247300002 ], [ -122.184335272999959, 52.084004419000053 ], [ -122.185456883999962, 52.084041550000066 ], [ -122.18542142499993, 52.084445011000057 ], [ -122.186394778999954, 52.084477225000057 ], [ -122.186346816999929, 52.085023077000102 ], [ -122.186079947999971, 52.088059980000082 ], [ -122.185009158999947, 52.088024540000035 ], [ -122.180241436999964, 52.087866623000053 ], [ -122.180248594999952, 52.087785308000036 ], [ -122.178359422999932, 52.087722680000056 ], [ -122.178154129999939, 52.090053867000016 ], [ -122.176411842999983, 52.089996080000056 ], [ -122.176401257999927, 52.090116208000069 ], [ -122.170562514999986, 52.089922362000074 ], [ -122.1706623099999, 52.088791419000081 ], [ -122.172317672999981, 52.088785953000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024218", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "0.999996319598561", "sL_AssetLoss": "288.01206", "sL_BldgLoss": "288.011", "sL_StrLoss": "288", "sL_NStrLoss": "0.011", "sL_ContLoss": "0.00106", "geom_point": "0101000020E6100000BC589C5A8B905EC0FF75F212B1D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.255974537999919, 51.632579772000042 ], [ -122.255978950999975, 51.63231004900009 ], [ -122.254245283999936, 51.632299052000114 ], [ -122.254249706999971, 51.632029329000041 ], [ -122.253816293999975, 51.632026575000054 ], [ -122.253825144999951, 51.631487130000039 ], [ -122.252958327999963, 51.631481618000109 ], [ -122.252971619999968, 51.630672450000112 ], [ -122.253405018999985, 51.630675207000138 ], [ -122.253413875999968, 51.630135761000076 ], [ -122.25514746, 51.630146770000046 ], [ -122.25513862499993, 51.630686216000107 ], [ -122.255572026999985, 51.63068896500004 ], [ -122.255567610999961, 51.630958689000082 ], [ -122.256434419999948, 51.630964180000049 ], [ -122.256430009999946, 51.631233903000037 ], [ -122.258163637999971, 51.631244869000106 ], [ -122.258176836999922, 51.630435700000071 ], [ -122.259043634999941, 51.63044117200009 ], [ -122.259056817999948, 51.629632003000026 ], [ -122.2594902099999, 51.629634737000103 ], [ -122.259498993999955, 51.629095290000095 ], [ -122.259932379999938, 51.629098022000058 ], [ -122.259941157999933, 51.628558576000046 ], [ -122.260374539999972, 51.628561306000101 ], [ -122.260392085999939, 51.627482413000038 ], [ -122.261258827999924, 51.627487869000113 ], [ -122.261263208999964, 51.627218145000107 ], [ -122.26299668399993, 51.627229039000049 ], [ -122.262979201999926, 51.628307933000094 ], [ -122.262545822999982, 51.628305212000022 ], [ -122.262532701999987, 51.629114383000058 ], [ -122.262099314999929, 51.629111660000063 ], [ -122.262094937999962, 51.629381384000077 ], [ -122.261661549999971, 51.629378660000057 ], [ -122.261644032999953, 51.630457553000014 ], [ -122.26077723499999, 51.630452099000081 ], [ -122.260764081999966, 51.631261269000014 ], [ -122.260330673999974, 51.631258540000069 ], [ -122.260321899999909, 51.631797986000073 ], [ -122.259888485999966, 51.631795255000078 ], [ -122.259884097999944, 51.632064978000088 ], [ -122.259017265999972, 51.63205951200009 ], [ -122.259012872999932, 51.632329234000032 ], [ -122.258579454999989, 51.632326499000079 ], [ -122.258575056999959, 51.632596222000103 ], [ -122.255974537999919, 51.632579772000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024219", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "150.7", "sL_BldgLoss": "150.7", "sL_StrLoss": "150.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AAF7D01517915EC0062D03528BCF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.267443324999931, 51.620243337000048 ], [ -122.271776359999961, 51.620270291000061 ], [ -122.271763406999966, 51.621079465000058 ], [ -122.270896783999973, 51.6210740860001 ], [ -122.270892461999964, 51.621343811000095 ], [ -122.270025833999938, 51.621338425000133 ], [ -122.270021506, 51.621608150000029 ], [ -122.269154872999962, 51.621602759000105 ], [ -122.269150539999913, 51.621872483000104 ], [ -122.268283901999922, 51.621867085000105 ], [ -122.26827956299995, 51.62213681 ], [ -122.266979598999967, 51.622128701000037 ], [ -122.266975254999949, 51.622398425000029 ], [ -122.264808637000016, 51.622384877000052 ], [ -122.264804276999925, 51.622654603000058 ], [ -122.261770998999964, 51.622635570000064 ], [ -122.261784129, 51.621826398000032 ], [ -122.263517399999955, 51.621837284000044 ], [ -122.263521767999947, 51.621567559 ], [ -122.264821712999932, 51.62157570600008 ], [ -122.264826072999966, 51.621305983000113 ], [ -122.266126010999983, 51.621314115000082 ], [ -122.266134714999922, 51.620774667000028 ], [ -122.266568020999927, 51.62077737500006 ], [ -122.266572368999974, 51.620507651000082 ], [ -122.26743898299999, 51.6205130600001 ], [ -122.267443324999931, 51.620243337000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024220", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "191.1", "sL_BldgLoss": "191.1", "sL_StrLoss": "191.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2D7B861C88C5EC000D4C386DDFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.196974659999952, 51.981435112000071 ], [ -122.202798974999936, 51.981627639000052 ], [ -122.202486237999949, 51.985210752000036 ], [ -122.196661443999943, 51.985018209000081 ], [ -122.196974659999952, 51.981435112000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024221", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6143833", "BldgCostT": "3973333", "sL_LossRatio": "1", "sL_AssetLoss": "663.2", "sL_BldgLoss": "663.2", "sL_StrLoss": "663.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000078D85D030F905EC06E273A6011E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.250864384999943, 51.792037645000093 ], [ -122.250905290999967, 51.791560756000109 ], [ -122.245556322999917, 51.791385404000103 ], [ -122.245658231999926, 51.79019899700009 ], [ -122.244773977999927, 51.790169985000013 ], [ -122.244819097999965, 51.789644813000102 ], [ -122.244566844999937, 51.789636536000025 ], [ -122.244551942999976, 51.789809972000107 ], [ -122.243358131999969, 51.789770789000038 ], [ -122.24335039599994, 51.789860801000039 ], [ -122.243194864999978, 51.789855695000021 ], [ -122.247804242999948, 51.787271529000044 ], [ -122.247870756999987, 51.787254294000043 ], [ -122.249185503999939, 51.786756499000028 ], [ -122.249440881999973, 51.786637423000094 ], [ -122.249579008999945, 51.786573015000066 ], [ -122.24999566299999, 51.786378738000103 ], [ -122.250498307999962, 51.786145433000122 ], [ -122.250739776999936, 51.786062446000095 ], [ -122.251097419999951, 51.785939530000057 ], [ -122.2520729299999, 51.785687258000088 ], [ -122.251877979999961, 51.787960923000085 ], [ -122.253266737999965, 51.788006401000089 ], [ -122.253222630999986, 51.788520951000109 ], [ -122.25697063799997, 51.788643603000033 ], [ -122.256663718, 51.792227477000026 ], [ -122.250864384999943, 51.792037645000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "192.4", "sL_BldgLoss": "192.4", "sL_StrLoss": "192.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FC22BACAC7905EC05F14F36297E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.259448401000014, 51.783983277000097 ], [ -122.265246704999981, 51.784172675000079 ], [ -122.264940493999987, 51.787756586000121 ], [ -122.259141716999935, 51.78756717300012 ], [ -122.259448401000014, 51.783983277000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024223", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "73.8", "sL_BldgLoss": "73.8", "sL_StrLoss": "73.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B60E9194E905EC07D59B99BD0CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.257004423999931, 51.622605504000049 ], [ -122.258737722999925, 51.62261645800001 ], [ -122.258724536999964, 51.623425629000081 ], [ -122.256991206999956, 51.623414673000077 ], [ -122.256986800999968, 51.623684397000041 ], [ -122.25612013199999, 51.623678909000056 ], [ -122.256115720999958, 51.62394863300004 ], [ -122.254382372999927, 51.623937638000058 ], [ -122.254377952, 51.62420736100006 ], [ -122.253077931999911, 51.624199098000126 ], [ -122.253073503999971, 51.624468821000022 ], [ -122.250906794999977, 51.62445501800007 ], [ -122.250920119999989, 51.623645849000113 ], [ -122.252220122, 51.623654135000045 ], [ -122.252224554999884, 51.62338441200005 ], [ -122.25395788199998, 51.623395439000021 ], [ -122.253962306999981, 51.623125716000089 ], [ -122.255262292999973, 51.62313396800009 ], [ -122.255266711, 51.622864245000137 ], [ -122.257000018999975, 51.622875226000154 ], [ -122.257004423999931, 51.622605504000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "189.8", "sL_BldgLoss": "189.8", "sL_StrLoss": "189.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ED900F385A885EC0AD70260145F64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.127757606999921, 51.922091258000073 ], [ -122.133573688999917, 51.922287299000097 ], [ -122.13325569, 51.925870407000026 ], [ -122.12743913099996, 51.925674350000108 ], [ -122.127757606999921, 51.922091258000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "185.3", "sL_BldgLoss": "185.3", "sL_StrLoss": "185.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B375DB4BBB8F5EC02DCA8D9E32CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.243904341999922, 51.577871538000117 ], [ -122.249675396999962, 51.578061761000043 ], [ -122.249506075999975, 51.580045010000035 ], [ -122.249390304999906, 51.580052866000059 ], [ -122.248981477999934, 51.580147216000036 ], [ -122.248126725999896, 51.580532468000037 ], [ -122.247206423, 51.581042889000038 ], [ -122.247025532999913, 51.58114322100004 ], [ -122.246481649999964, 51.581336529000126 ], [ -122.245672034999984, 51.581624305000076 ], [ -122.245351769999971, 51.581793210000036 ], [ -122.242560970999989, 51.58170115900009 ], [ -122.24286241399993, 51.578176908000039 ], [ -122.24303341699999, 51.578166392000085 ], [ -122.243167990999964, 51.578126526000055 ], [ -122.243880530999917, 51.578150032000053 ], [ -122.243904341999922, 51.577871538000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024228", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "237.8", "sL_BldgLoss": "237.8", "sL_StrLoss": "237.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1D07F283B905EC0DFAEF25FFBC94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.250878153999935, 51.576096602000042 ], [ -122.256649003999925, 51.576286472000085 ], [ -122.25634354099995, 51.579871062000066 ], [ -122.250572219999981, 51.579681176000115 ], [ -122.250878153999935, 51.576096602000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.8", "sL_BldgLoss": "35.8", "sL_StrLoss": "35.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004136C11E30915EC0293EC2595F074A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.267322354999948, 52.056953878000051 ], [ -122.269947449999933, 52.056970170000035 ], [ -122.269929861999984, 52.058048986000102 ], [ -122.269054811, 52.058043562000051 ], [ -122.269050406999924, 52.05831326600002 ], [ -122.267300292999963, 52.058302399000084 ], [ -122.267322354999948, 52.056953878000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024230", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "108.8", "sL_BldgLoss": "108.8", "sL_StrLoss": "108.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000172464BD248C5EC02818639A480B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.190759232999937, 52.08639019900005 ], [ -122.192818867999961, 52.086458257000061 ], [ -122.19250455300002, 52.090041022000072 ], [ -122.19074941699995, 52.089983029000059 ], [ -122.186665747999953, 52.089847992000031 ], [ -122.186980542999947, 52.086265242000138 ], [ -122.190759232999937, 52.08639019900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "67.4", "sL_BldgLoss": "67.4", "sL_StrLoss": "67.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008B6FA44352905EC001497DFEA0054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.253944709999985, 52.04209600700004 ], [ -122.256723544999929, 52.042186390000019 ], [ -122.256414815999932, 52.045769462000052 ], [ -122.253338428999925, 52.045669398000058 ], [ -122.253140822999953, 52.045027744000066 ], [ -122.253944709999985, 52.04209600700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024232", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "135.3", "sL_BldgLoss": "135.3", "sL_StrLoss": "135.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B71DBC6F88A5EC078C773C72CEE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.168687415999898, 51.858852831 ], [ -122.174495260999933, 51.859046811000105 ], [ -122.174181077999947, 51.862630232000079 ], [ -122.168372759999968, 51.86243623700009 ], [ -122.168687415999898, 51.858852831 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "130.3", "sL_BldgLoss": "130.3", "sL_StrLoss": "130.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F2001E6A7E905EC0D384ED27E3FE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.254957040999955, 51.989420814000063 ], [ -122.26078268, 51.989610405000064 ], [ -122.260474656999975, 51.993193649000048 ], [ -122.254648539999948, 51.993004044000045 ], [ -122.254957040999955, 51.989420814000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "143", "sL_BldgLoss": "143", "sL_StrLoss": "143", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C376629CE08F5EC0884A44745FD04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.24822204499999, 51.629563132000079 ], [ -122.248226504999963, 51.629293410000116 ], [ -122.247793116999986, 51.629290633000039 ], [ -122.24779757899995, 51.629020912000051 ], [ -122.247364193999928, 51.629018134000084 ], [ -122.247368655999963, 51.62874841200005 ], [ -122.246935274999913, 51.628745633000065 ], [ -122.246939741999981, 51.62847591000007 ], [ -122.246506361999948, 51.62847313000001 ], [ -122.246515298, 51.627933686000063 ], [ -122.245648549999927, 51.627928119000018 ], [ -122.245653023999978, 51.627658397000083 ], [ -122.245219651999946, 51.627655612000076 ], [ -122.24522412899999, 51.62738589000007 ], [ -122.244790758999955, 51.627383103000049 ], [ -122.244804194999972, 51.626573936000064 ], [ -122.245237555999935, 51.626576722000081 ], [ -122.245242031999965, 51.626307 ], [ -122.245675390999907, 51.626309784000078 ], [ -122.245679862999964, 51.626040062000079 ], [ -122.247413289999983, 51.626051185000136 ], [ -122.247404362999987, 51.626590631000049 ], [ -122.24827108700002, 51.626596183000082 ], [ -122.248266628999914, 51.626865905000045 ], [ -122.24869999299996, 51.626868680000037 ], [ -122.248686626999941, 51.627677848000104 ], [ -122.248253254999923, 51.627675074000187 ], [ -122.248244337999921, 51.628214519000032 ], [ -122.248677714999928, 51.628217294000123 ], [ -122.248673259000014, 51.628487016000072 ], [ -122.249540019999955, 51.628492559000087 ], [ -122.249548921999974, 51.627953113000018 ], [ -122.250849046999974, 51.627961416000097 ], [ -122.250844601999958, 51.628231138000046 ], [ -122.251277980999973, 51.62823390300013 ], [ -122.251273540999989, 51.62850362600004 ], [ -122.252140300999955, 51.62850914900006 ], [ -122.252126994999955, 51.629318318000045 ], [ -122.249526666999941, 51.629301728000101 ], [ -122.249522217, 51.629571449000075 ], [ -122.24822204499999, 51.629563132000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "197.8", "sL_BldgLoss": "197.8", "sL_StrLoss": "197.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B60517491875EC08E2A581D98F64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115949049, 51.924769780000076 ], [ -122.121765434999972, 51.924966418000054 ], [ -122.121446444999961, 51.928549484000023 ], [ -122.118710142999959, 51.928457014000045 ], [ -122.118691634999905, 51.928664749000056 ], [ -122.117695245999982, 51.928631061 ], [ -122.117690156999984, 51.928627927000015 ], [ -122.11597089199995, 51.927568993000087 ], [ -122.115247624999952, 51.927093498000048 ], [ -122.114933955999959, 51.926828121000064 ], [ -122.114779688999974, 51.926697606000111 ], [ -122.114453019999956, 51.926354099000108 ], [ -122.114370657999984, 51.926246773000109 ], [ -122.114162887999953, 51.925975904000076 ], [ -122.113920596999975, 51.925487106000077 ], [ -122.113759094999949, 51.924927207000096 ], [ -122.113757391999911, 51.92490397100002 ], [ -122.115930529000011, 51.924977515000073 ], [ -122.115949049, 51.924769780000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024237", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "72.8", "sL_BldgLoss": "72.8", "sL_StrLoss": "72.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E6658F7558F5EC0633BA5A483094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.241815630999923, 52.072009559000051 ], [ -122.241946428999967, 52.07201382600006 ], [ -122.241636268999983, 52.075596768000047 ], [ -122.235799186999927, 52.075406222000019 ], [ -122.23584683199999, 52.074856715000095 ], [ -122.236607943999957, 52.074614308000072 ], [ -122.237083722999898, 52.074462765000114 ], [ -122.237102952999948, 52.074456633000075 ], [ -122.238181813999958, 52.074013080000022 ], [ -122.239491452999971, 52.073291070000039 ], [ -122.240166796999958, 52.072918686000094 ], [ -122.241815630999923, 52.072009559000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024238", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "293", "sL_BldgLoss": "293", "sL_StrLoss": "293", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000613D6A2389875EC0759DBAB03D044A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115110867999974, 52.036043059000058 ], [ -122.115301758999962, 52.033907923000086 ], [ -122.113891872999901, 52.033860330000032 ], [ -122.11421225799991, 52.030277611000066 ], [ -122.115216674999886, 52.030311518000111 ], [ -122.115222715999948, 52.030243935000016 ], [ -122.121053202999974, 52.03044059100008 ], [ -122.12085657599999, 52.032643327000066 ], [ -122.12126195, 52.032656988000035 ], [ -122.120942129999946, 52.036239720000083 ], [ -122.115110867999974, 52.036043059000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024239", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "187", "sL_BldgLoss": "187", "sL_StrLoss": "187", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DF265082C68A5EC096AA590C43024A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.165609543999935, 52.015782618000024 ], [ -122.171438317999943, 52.015976726000062 ], [ -122.17112275199996, 52.019559647000079 ], [ -122.165293499999962, 52.019365523000019 ], [ -122.165609543999935, 52.015782618000024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "144.1", "sL_BldgLoss": "144.1", "sL_StrLoss": "144.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DA96463928F5EC0A90881A6EF024A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.240549759999965, 52.02105182100005 ], [ -122.246379571, 52.021242136000033 ], [ -122.246070136999933, 52.024825244000027 ], [ -122.240239848999948, 52.024634914000046 ], [ -122.240549759999965, 52.02105182100005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024241", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.3", "sL_BldgLoss": "49.3", "sL_StrLoss": "49.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F541C83E5855EC0338022DC05014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.091086805, 52.008792464000088 ], [ -122.09111958799997, 52.007174298000095 ], [ -122.092867632, 52.00718777200013 ], [ -122.092862178999923, 52.00745746700003 ], [ -122.093299191999932, 52.007460831000124 ], [ -122.09327739, 52.008539610000177 ], [ -122.092840365, 52.00853624500008 ], [ -122.09283491099994, 52.008805939000055 ], [ -122.091086805, 52.008792464000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "128", "sL_BldgLoss": "128", "sL_StrLoss": "128", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D63AED007A865EC09284F1919C074A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.099143143999953, 52.058200895000041 ], [ -122.104977306999956, 52.058398360000069 ], [ -122.104785591999956, 52.060535766000051 ], [ -122.10404272599996, 52.060530902000046 ], [ -122.103178399999976, 52.060591505000062 ], [ -122.102039515999948, 52.060762299000039 ], [ -122.101093611999929, 52.060982702000082 ], [ -122.09994550199994, 52.061352599000074 ], [ -122.09980596299998, 52.06119059000013 ], [ -122.099610486999893, 52.060963684000093 ], [ -122.099288974999951, 52.060590424000061 ], [ -122.099137290999977, 52.060414315000074 ], [ -122.098726687999914, 52.060049995000057 ], [ -122.098616606999911, 52.059975328000071 ], [ -122.098347514999915, 52.059792794000032 ], [ -122.097142092999931, 52.059205685000087 ], [ -122.09675433699999, 52.059053669000036 ], [ -122.096821939, 52.058301539000098 ], [ -122.09912708799996, 52.058379643000109 ], [ -122.099143143999953, 52.058200895000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024243", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5594583", "BldgCostT": "3858333", "sL_LossRatio": "1", "sL_AssetLoss": "407.2", "sL_BldgLoss": "407.2", "sL_StrLoss": "407.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7FA1FC3D78A5EC0A0C48424F5FE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.168518965999922, 51.994707545000026 ], [ -122.168536866999915, 51.994504323000072 ], [ -122.166453593, 51.994434892000108 ], [ -122.16605724799993, 51.994421679000034 ], [ -122.16615801799999, 51.993917899000046 ], [ -122.165965116999971, 51.993341095000083 ], [ -122.165809289, 51.993124610000102 ], [ -122.16511841, 51.992660294000125 ], [ -122.164584656999978, 51.992080080000072 ], [ -122.164743721999969, 51.992079728000107 ], [ -122.16482790699996, 51.992079428000054 ], [ -122.165098553999925, 51.992073349000066 ], [ -122.164857726, 51.991856346000112 ], [ -122.163942414999937, 51.991305626000049 ], [ -122.163990598999973, 51.990759238000081 ], [ -122.165191102999955, 51.990799282000054 ], [ -122.165197249999949, 51.990729567000074 ], [ -122.165490694999988, 51.990739353000059 ], [ -122.165698375999924, 51.988383275000054 ], [ -122.171523481999884, 51.988577384000024 ], [ -122.171292091999959, 51.991206410000061 ], [ -122.17201976299998, 51.991230637000079 ], [ -122.172751591999926, 51.991254998000031 ], [ -122.174660053999929, 51.991318504000034 ], [ -122.17464570099996, 51.991481719 ], [ -122.174344930999922, 51.994901510000126 ], [ -122.168518965999922, 51.994707545000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "65.9", "sL_BldgLoss": "65.9", "sL_StrLoss": "65.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A1D3B9C322905EC01C5E10919A054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.252606628999956, 52.042052462000079 ], [ -122.253944709999985, 52.04209600700004 ], [ -122.253140822999953, 52.045027744000066 ], [ -122.253338428999925, 52.045669398000058 ], [ -122.252757833999951, 52.045650504000022 ], [ -122.250581672999914, 52.045579659000111 ], [ -122.25089088199999, 52.041996602000097 ], [ -122.252606628999956, 52.042052462000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024245", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "203.6", "sL_BldgLoss": "203.6", "sL_StrLoss": "203.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD40A15C22905EC01A253B789E014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.250037027999923, 52.014734990000079 ], [ -122.250098420999933, 52.014023206000076 ], [ -122.248019704999976, 52.013955437000064 ], [ -122.248328900999979, 52.010372289 ], [ -122.254157313999912, 52.010562212000075 ], [ -122.254095991999975, 52.011273999000075 ], [ -122.256174589999929, 52.011341660000021 ], [ -122.255866033999965, 52.01492482500008 ], [ -122.250037027999923, 52.014734990000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "403", "sL_BldgLoss": "403", "sL_StrLoss": "403", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FAE029A2EE895EC03DF716BD70024A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.153208271999944, 52.021600297000141 ], [ -122.153236903999954, 52.021276776000036 ], [ -122.153178854999979, 52.02127483500005 ], [ -122.150873308999948, 52.021197735000086 ], [ -122.150942935999964, 52.020411434000081 ], [ -122.150874265999917, 52.020409137000037 ], [ -122.151191504999986, 52.016826274000074 ], [ -122.153028092999946, 52.016887697000101 ], [ -122.153082256999966, 52.016275618000066 ], [ -122.158693863999972, 52.016463110000068 ], [ -122.158911040999953, 52.016470360000028 ], [ -122.158758889999973, 52.018192273000118 ], [ -122.159354347999908, 52.018212151000156 ], [ -122.159037769999941, 52.021795032000085 ], [ -122.153208271999944, 52.021600297000141 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024247", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47", "sL_BldgLoss": "47", "sL_StrLoss": "47", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FE6C20E848B5EC0CDC332CBD8024A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.178678933999961, 52.023192209000051 ], [ -122.178683873999901, 52.022922510000065 ], [ -122.178246698999914, 52.02291946100005 ], [ -122.17827635499999, 52.021301261000083 ], [ -122.180899304999983, 52.021319527000117 ], [ -122.18089437899999, 52.021589227000085 ], [ -122.181768701999914, 52.02159530200003 ], [ -122.181744094999914, 52.022943803000089 ], [ -122.180869744999882, 52.022937727000048 ], [ -122.180864817999947, 52.023207427000088 ], [ -122.178678933999961, 52.023192209000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.6", "sL_BldgLoss": "47.6", "sL_StrLoss": "47.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E41A1F937895EC02C76453A4DFB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.143219091999924, 51.962526124000085 ], [ -122.143211693999888, 51.961925092000051 ], [ -122.14501542499994, 51.962626170000085 ], [ -122.144858323000022, 51.964399966000109 ], [ -122.14323876499995, 51.964345619000042 ], [ -122.143239507999937, 51.964181103000044 ], [ -122.143224745999973, 51.962984572000032 ], [ -122.143223078999952, 51.962849554000066 ], [ -122.14321977599991, 51.96258006199999 ], [ -122.143219091999924, 51.962526124000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "165.8", "sL_BldgLoss": "165.8", "sL_StrLoss": "165.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000944BA65A8895EC05B6E3845AAFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.148947784999976, 51.982421522000045 ], [ -122.146078252, 51.979608647000077 ], [ -122.14565606599993, 51.979131197000079 ], [ -122.145595121999946, 51.979062025000061 ], [ -122.14561361399997, 51.979062645000091 ], [ -122.151071319999971, 51.979245515000088 ], [ -122.151011362999952, 51.979923287000126 ], [ -122.152495714999972, 51.979972979000088 ], [ -122.152421809999936, 51.980808730000021 ], [ -122.153543036999977, 51.98084625200007 ], [ -122.153501351000017, 51.981317765000014 ], [ -122.154546333999988, 51.981352726000139 ], [ -122.154229627999925, 51.984935708000116 ], [ -122.152045457999961, 51.984862623000033 ], [ -122.151781340999946, 51.984853784000123 ], [ -122.150253579999969, 51.983542446000087 ], [ -122.148947784999976, 51.982421522000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "205.9", "sL_BldgLoss": "205.9", "sL_StrLoss": "205.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000030EBAE7AD8B5EC06B4B789DE8014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.179732406999946, 52.013023151000013 ], [ -122.185560873999947, 52.013216546000066 ], [ -122.185246489999884, 52.016799513000102 ], [ -122.179417544999964, 52.016606104000076 ], [ -122.179732406999946, 52.013023151000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30445833", "BldgCostT": "20733333", "sL_LossRatio": "1", "sL_AssetLoss": "2215", "sL_BldgLoss": "2215", "sL_StrLoss": "2215", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B248FAF16885EC01DED2C388B054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.127951452999937, 52.050375982000062 ], [ -122.128007987, 52.049741784000034 ], [ -122.127371177999947, 52.049720367000091 ], [ -122.127398694999954, 52.049411708000051 ], [ -122.126290758999929, 52.049374439000111 ], [ -122.126383423999982, 52.04833532200005 ], [ -122.12490588299994, 52.048285604000107 ], [ -122.124911422999944, 52.04822351100006 ], [ -122.122369593999977, 52.048137936000039 ], [ -122.122412746999942, 52.047654512000051 ], [ -122.120978819999934, 52.047606212000126 ], [ -122.12095767799994, 52.04760550000006 ], [ -122.120959487999968, 52.04758522200008 ], [ -122.120991766999964, 52.047223747000039 ], [ -122.120930166999955, 52.047221673000088 ], [ -122.12092379399995, 52.047546465000075 ], [ -122.120917627999958, 52.047860714000102 ], [ -122.118730573999926, 52.04784437800005 ], [ -122.118741184, 52.047304990000079 ], [ -122.116991564999964, 52.047291891000071 ], [ -122.11700482699996, 52.046618976000076 ], [ -122.11369217, 52.046507207000097 ], [ -122.113748788999914, 52.045874352000077 ], [ -122.113362104999936, 52.04586129900008 ], [ -122.113404301999964, 52.045389660000048 ], [ -122.113120928999933, 52.045380093000041 ], [ -122.113156184999937, 52.044986054000042 ], [ -122.112822446999971, 52.04497478600009 ], [ -122.113143000999969, 52.041392104000074 ], [ -122.114212610999971, 52.04142821199999 ], [ -122.11424157, 52.041104429000058 ], [ -122.114786330999976, 52.041122816000055 ], [ -122.11481116299997, 52.040845142000101 ], [ -122.116516735999951, 52.040902692000053 ], [ -122.116573122999966, 52.040271884000084 ], [ -122.119026226999935, 52.040354611000112 ], [ -122.119049226999977, 52.040097143000125 ], [ -122.121158964999893, 52.040168250000114 ], [ -122.121288115999931, 52.038721594000052 ], [ -122.121938375999918, 52.038743503000056 ], [ -122.122002727999927, 52.038022510000118 ], [ -122.12259093499992, 52.038042324000052 ], [ -122.122616021999974, 52.037761208000056 ], [ -122.121791606999977, 52.037733435000085 ], [ -122.122111368999981, 52.034150706000084 ], [ -122.123061009999972, 52.034182697000084 ], [ -122.12311476299999, 52.033580229000115 ], [ -122.125132434999955, 52.03364817199999 ], [ -122.125133449999936, 52.033596160000094 ], [ -122.12469617899994, 52.033592913000106 ], [ -122.124717243999953, 52.032514129000035 ], [ -122.12602902899998, 52.032523867000101 ], [ -122.126023769999932, 52.032793564000045 ], [ -122.126461035999952, 52.032796807000118 ], [ -122.126455779999958, 52.033066502000054 ], [ -122.126893045999978, 52.03306974300007 ], [ -122.126882539999883, 52.033609134000073 ], [ -122.127319811999911, 52.033612374000064 ], [ -122.127317681999969, 52.033721719000056 ], [ -122.128945731, 52.03377648500004 ], [ -122.128935255999949, 52.033894063000034 ], [ -122.129938213999949, 52.033901473000107 ], [ -122.129935040999925, 52.034064881000091 ], [ -122.129917270999968, 52.034980258000097 ], [ -122.129675263999928, 52.034978470000055 ], [ -122.129383423999982, 52.038254715000036 ], [ -122.128423938999958, 52.038222449000088 ], [ -122.128380009999887, 52.03871543900005 ], [ -122.127791791999954, 52.038695653000069 ], [ -122.127514966999939, 52.041801554000081 ], [ -122.126864657999974, 52.041779677000136 ], [ -122.126800380999924, 52.042500670000024 ], [ -122.126349487999931, 52.042485500000055 ], [ -122.12630541899992, 52.042979760000023 ], [ -122.12716808, 52.043008783000047 ], [ -122.127185199999971, 52.042816742000063 ], [ -122.130174087999961, 52.042917250000052 ], [ -122.130229699999987, 52.042292914000107 ], [ -122.131213998999939, 52.042325996000038 ], [ -122.131222161999958, 52.042234337000046 ], [ -122.132390733999927, 52.042273601000076 ], [ -122.132398712999958, 52.042183965000071 ], [ -122.133681709999934, 52.04222706000008 ], [ -122.133702068999966, 52.04199829600001 ], [ -122.13953421399998, 52.042194014000081 ], [ -122.139521808999987, 52.042333617000111 ], [ -122.139835116999933, 52.042335905000087 ], [ -122.139809228999979, 52.043684386000109 ], [ -122.139402040999983, 52.043681413000087 ], [ -122.139363528, 52.044114788000059 ], [ -122.139330410999989, 52.045838762000123 ], [ -122.138893017000029, 52.04583556700009 ], [ -122.138867097999977, 52.047184048000105 ], [ -122.138600057999923, 52.047182096000043 ], [ -122.138490462999954, 52.048414981000079 ], [ -122.137778747999945, 52.04839111000009 ], [ -122.137660108999924, 52.049725399000081 ], [ -122.13387136599999, 52.049598249000049 ], [ -122.133784696999939, 52.050571990000101 ], [ -122.127951452999937, 52.050375982000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024254", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "242.9", "sL_BldgLoss": "242.9", "sL_StrLoss": "242.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9A5977BB5895EC0C2672DFD32034A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.151511217999925, 52.023190464000031 ], [ -122.154775284999943, 52.023299581000089 ], [ -122.154458292999948, 52.026882434000093 ], [ -122.148628132999931, 52.026687468 ], [ -122.148680155999955, 52.026100404000069 ], [ -122.148945603999934, 52.023104631000088 ], [ -122.151511217999925, 52.023190464000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024255", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5691250", "BldgCostT": "3925000", "sL_LossRatio": "1", "sL_AssetLoss": "339", "sL_BldgLoss": "339", "sL_StrLoss": "339", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7A1785B8A875EC08933750DE9064A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.115032740999936, 52.05786830800011 ], [ -122.115047826999955, 52.057104919000018 ], [ -122.114659461999906, 52.057091817000114 ], [ -122.11469189499995, 52.056729281000067 ], [ -122.114180467000011, 52.056712026000142 ], [ -122.114164472999946, 52.057520571000104 ], [ -122.112851961999951, 52.05751069800008 ], [ -122.112857302999956, 52.057241004000076 ], [ -122.111107297999951, 52.057227818000058 ], [ -122.111128708999985, 52.05614904400008 ], [ -122.11200369099997, 52.0561556400001 ], [ -122.11200903799994, 52.055885946000096 ], [ -122.112446527999907, 52.055889242000021 ], [ -122.112457215999925, 52.055349854000106 ], [ -122.113807045000016, 52.055360012000044 ], [ -122.114008119999966, 52.053112743000113 ], [ -122.115462402999924, 52.053161811000031 ], [ -122.115524394999952, 52.052468678000047 ], [ -122.117763063999959, 52.052544175 ], [ -122.117792018999936, 52.051074166000035 ], [ -122.118229459999938, 52.051077440000022 ], [ -122.118234768999955, 52.050807746000032 ], [ -122.118342423999962, 52.050808551000074 ], [ -122.118442744999982, 52.049685943000021 ], [ -122.121080418999966, 52.04977483100005 ], [ -122.124275850999965, 52.049882433000072 ], [ -122.12418443699994, 52.050906922000088 ], [ -122.124371919999959, 52.050913233000053 ], [ -122.124317868999981, 52.051518992000112 ], [ -122.120498470999948, 52.051594234000071 ], [ -122.120519099, 52.052853601000045 ], [ -122.120592013999953, 52.053134504000127 ], [ -122.120640250999955, 52.053226191000086 ], [ -122.121032193999937, 52.053970487000107 ], [ -122.121070185999926, 52.05429880400002 ], [ -122.120614201999956, 52.055866285000064 ], [ -122.12044867099999, 52.056179694000036 ], [ -122.120170396999981, 52.056462301000089 ], [ -122.119788911999976, 52.056687488000172 ], [ -122.119335211999896, 52.056886901000077 ], [ -122.118766185999931, 52.057066196000022 ], [ -122.117374777999942, 52.057378701000125 ], [ -122.115613004999929, 52.057775705000061 ], [ -122.115032740999936, 52.05786830800011 ] ], [ [ -122.113743197999909, 52.056697270000029 ], [ -122.113742981999948, 52.056708201000085 ], [ -122.11416004199998, 52.056711337000067 ], [ -122.113743197999909, 52.056697270000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "186.4", "sL_BldgLoss": "186.4", "sL_StrLoss": "186.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000020DD2128EB8F5EC06B9AB9B874034A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.246086677999983, 52.028859863000022 ], [ -122.246112486999962, 52.028561065000126 ], [ -122.245228867999984, 52.028532242000061 ], [ -122.245538396999933, 52.024949147 ], [ -122.251368750999916, 52.025139208000084 ], [ -122.25134298099999, 52.025438009000034 ], [ -122.252226539999967, 52.025466786000109 ], [ -122.25191755899999, 52.02904989600011 ], [ -122.246086677999983, 52.028859863000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024258", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002FFAC8B53A8F5EC0AA219A0E57094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.23584683199999, 52.074856715000095 ], [ -122.236109826999922, 52.071823295000058 ], [ -122.241815630999923, 52.072009559000051 ], [ -122.240166796999958, 52.072918686000094 ], [ -122.239491452999971, 52.073291070000039 ], [ -122.238181813999958, 52.074013080000022 ], [ -122.237102952999948, 52.074456633000075 ], [ -122.237083722999898, 52.074462765000114 ], [ -122.236607943999957, 52.074614308000072 ], [ -122.23584683199999, 52.074856715000095 ] ], [ [ -122.2390587, 52.072715107000079 ], [ -122.238855306999966, 52.072705200000051 ], [ -122.238675692999919, 52.072864706000061 ], [ -122.238338407999905, 52.072961494000062 ], [ -122.238497501000026, 52.073106791000065 ], [ -122.238760388999964, 52.073118189000049 ], [ -122.239141591999967, 52.072958701000097 ], [ -122.239215812999987, 52.072841889000081 ], [ -122.2390587, 52.072715107000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.3", "sL_BldgLoss": "39.3", "sL_StrLoss": "39.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000232C8D0CF08B5EC0D485B3B604094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.183765807999976, 52.068568337000038 ], [ -122.189601742, 52.068761518000073 ], [ -122.189287288999964, 52.072344328000099 ], [ -122.183450873999931, 52.072151132000066 ], [ -122.183765807999976, 52.068568337000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024262", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "70", "sL_BldgLoss": "70", "sL_StrLoss": "70", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001BFA8271CB8C5EC026E4839E4D094A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.194808353999917, 52.07455281000005 ], [ -122.194813205999949, 52.074283111000042 ], [ -122.194375527999938, 52.074280120000076 ], [ -122.194379773999913, 52.074044256000086 ], [ -122.194394946999978, 52.07320132500012 ], [ -122.19614561399996, 52.073213277000079 ], [ -122.196135926999986, 52.073752676000034 ], [ -122.197011270999923, 52.07375864199999 ], [ -122.19701611, 52.073488943000058 ], [ -122.19758928499995, 52.073492846000079 ], [ -122.197845669999936, 52.070565378000069 ], [ -122.203681934999935, 52.070757845000038 ], [ -122.203368628999939, 52.074340688000099 ], [ -122.201107197999988, 52.074266146000078 ], [ -122.200504367999912, 52.074246267000063 ], [ -122.200503017999935, 52.07432184200011 ], [ -122.199189982999926, 52.074312929000065 ], [ -122.199191950999989, 52.074202980000109 ], [ -122.198317006999943, 52.074174113000034 ], [ -122.198314626999931, 52.074306978000052 ], [ -122.197439271999954, 52.07430102100011 ], [ -122.197434434999977, 52.0745707190001 ], [ -122.194808353999917, 52.07455281000005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024268", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17168000", "BldgCostT": "11840000", "sL_LossRatio": "1", "sL_AssetLoss": "946", "sL_BldgLoss": "946", "sL_StrLoss": "946", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000692DB3A59A895EC04D422B28F3074A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.174833136999965, 52.072173602000142 ], [ -122.175067822999921, 52.069509807000038 ], [ -122.174121599999978, 52.069478386000092 ], [ -122.17412990899993, 52.069384104000086 ], [ -122.174012435999941, 52.069380202000048 ], [ -122.17394808099999, 52.070110499000108 ], [ -122.168112035999954, 52.069916526000043 ], [ -122.168217299999981, 52.068723807000019 ], [ -122.167438795999942, 52.068697909000058 ], [ -122.167468228999937, 52.068364457000015 ], [ -122.16640508199994, 52.068329083000052 ], [ -122.166440980999965, 52.067922487000011 ], [ -122.16576428799999, 52.067899966000077 ], [ -122.165867760999944, 52.066728198000099 ], [ -122.162002131999898, 52.066599468000049 ], [ -122.162025023999959, 52.0663404800001 ], [ -122.161207721000011, 52.066313246000057 ], [ -122.161231364999963, 52.066045813000152 ], [ -122.160058396999943, 52.066006717000093 ], [ -122.160095584999937, 52.065586211000088 ], [ -122.157943389999957, 52.065514445000083 ], [ -122.157787069999955, 52.067281045000122 ], [ -122.158175391000015, 52.0672838200001 ], [ -122.158180461999905, 52.067014124000103 ], [ -122.160368474999956, 52.06702973100009 ], [ -122.160348239999934, 52.068108518000066 ], [ -122.157284949999934, 52.068086655000073 ], [ -122.157292586000011, 52.067681022000031 ], [ -122.151914674999958, 52.067501497000094 ], [ -122.152035374999926, 52.066139566000047 ], [ -122.151146744999934, 52.066109878000105 ], [ -122.151185545999908, 52.06567212900012 ], [ -122.150764760999948, 52.065658068000104 ], [ -122.150780976999954, 52.065475145000057 ], [ -122.150291592999977, 52.065458790000086 ], [ -122.150188426999961, 52.066622372000047 ], [ -122.146904419999942, 52.066512571000068 ], [ -122.146900578999976, 52.066555851000047 ], [ -122.141065132999927, 52.06636050900002 ], [ -122.141383517999955, 52.062777813000061 ], [ -122.14177321499993, 52.062790868000086 ], [ -122.141861046999935, 52.061802291000056 ], [ -122.137929641999932, 52.061670532000036 ], [ -122.137943597999978, 52.061513616000106 ], [ -122.136825453999961, 52.061476118000016 ], [ -122.136816425999953, 52.061577601000103 ], [ -122.136029471999976, 52.061551203000043 ], [ -122.135979622999969, 52.062111420000065 ], [ -122.131625439999951, 52.061965262000093 ], [ -122.1315125, 52.06323302400012 ], [ -122.125677568999933, 52.063036904000064 ], [ -122.125682204, 52.062984950000015 ], [ -122.124476027999975, 52.062944371000071 ], [ -122.124481549999985, 52.062882510000087 ], [ -122.12266946699998, 52.062821524000071 ], [ -122.122872036999951, 52.060552772000051 ], [ -122.121981400999985, 52.060546140000064 ], [ -122.121960246999947, 52.061624917000117 ], [ -122.119334975999948, 52.061605329000045 ], [ -122.119340279999903, 52.061335634000081 ], [ -122.117152569999973, 52.061319267000073 ], [ -122.117168521999972, 52.060510186000073 ], [ -122.11979372799999, 52.06052982200012 ], [ -122.119809631999956, 52.059720739000042 ], [ -122.119928050999974, 52.059721624000083 ], [ -122.120684685999919, 52.059727270000117 ], [ -122.120689980999941, 52.059457577000032 ], [ -122.122440078999958, 52.059470622000049 ], [ -122.122434792999982, 52.059740316000081 ], [ -122.122944234, 52.059744109000107 ], [ -122.122989340999965, 52.059238868000129 ], [ -122.12357535699999, 52.059258594000049 ], [ -122.123638872999891, 52.058547021000045 ], [ -122.118650825, 52.058379022000061 ], [ -122.118700401999931, 52.057824313000069 ], [ -122.117221691999958, 52.057813245000077 ], [ -122.117216374999941, 52.058082939000016 ], [ -122.115028824999953, 52.058066533000151 ], [ -122.115032740999936, 52.05786830800011 ], [ -122.115613004999929, 52.057775705000061 ], [ -122.117374777999942, 52.057378701000125 ], [ -122.118766185999931, 52.057066196000022 ], [ -122.119335211999896, 52.056886901000077 ], [ -122.119788911999976, 52.056687488000172 ], [ -122.120170396999981, 52.056462301000089 ], [ -122.12044867099999, 52.056179694000036 ], [ -122.120614201999956, 52.055866285000064 ], [ -122.121070185999926, 52.05429880400002 ], [ -122.121032193999937, 52.053970487000107 ], [ -122.120640250999955, 52.053226191000086 ], [ -122.120592013999953, 52.053134504000127 ], [ -122.120519099, 52.052853601000045 ], [ -122.120498470999948, 52.051594234000071 ], [ -122.124317868999981, 52.051518992000112 ], [ -122.124185851999982, 52.052998479000031 ], [ -122.124956647999966, 52.053024420000071 ], [ -122.124785628999959, 52.054941190000058 ], [ -122.126143938999974, 52.054986891000084 ], [ -122.125943847999949, 52.057230083000022 ], [ -122.128250953999967, 52.057307669000068 ], [ -122.128371514999969, 52.055955291 ], [ -122.128677471999978, 52.05596557700013 ], [ -122.128769262, 52.054935799000113 ], [ -122.134603119999952, 52.055131766 ], [ -122.134498524999955, 52.056306969000033 ], [ -122.135394674999958, 52.056337045000113 ], [ -122.135374628, 52.056562335000116 ], [ -122.138204688999934, 52.056657271000077 ], [ -122.138184041999921, 52.056889469000062 ], [ -122.138680414999897, 52.056893098000053 ], [ -122.138678431999978, 52.056996337000108 ], [ -122.140673320999923, 52.057063206000109 ], [ -122.140667636, 52.057127170000122 ], [ -122.14151859499998, 52.057155684000058 ], [ -122.141499992999968, 52.057365050000051 ], [ -122.14240777699996, 52.057395460000066 ], [ -122.14240112099999, 52.057470409000125 ], [ -122.144494740999946, 52.057540518000039 ], [ -122.144512525999971, 52.057340179000015 ], [ -122.146333683999899, 52.057401133000035 ], [ -122.146360260000037, 52.057101624000055 ], [ -122.15219448799999, 52.05729670000003 ], [ -122.152194408999932, 52.057297588 ], [ -122.15400452099999, 52.057358051000094 ], [ -122.153959046999887, 52.057871560000059 ], [ -122.154122297999933, 52.057877012000077 ], [ -122.154123875999971, 52.057859210000032 ], [ -122.154908510999974, 52.057885410000061 ], [ -122.154944463999939, 52.057479330000056 ], [ -122.160778780999948, 52.057673971000057 ], [ -122.16073266799999, 52.058195599000094 ], [ -122.161274400999986, 52.058213658000135 ], [ -122.16124563699999, 52.058539064000037 ], [ -122.166468232999961, 52.058713020000056 ], [ -122.166321048999947, 52.060380341000041 ], [ -122.169759330999938, 52.060494735000091 ], [ -122.169550955999938, 52.062857121000071 ], [ -122.169843094999933, 52.06286683600009 ], [ -122.169786096999971, 52.0635130390001 ], [ -122.173089821999937, 52.063622850000108 ], [ -122.173036364999973, 52.064229414000096 ], [ -122.174364016999945, 52.064273517000075 ], [ -122.174303831, 52.06495664800007 ], [ -122.179083493999883, 52.06511529300009 ], [ -122.179070517999961, 52.065262762000039 ], [ -122.180457353999941, 52.065308757000139 ], [ -122.180154018999929, 52.068756907000136 ], [ -122.180984678999934, 52.068784448000059 ], [ -122.180770500999984, 52.071219293000055 ], [ -122.182174801999949, 52.071229044000056 ], [ -122.182160018999966, 52.072038138000018 ], [ -122.181722364, 52.072035100000058 ], [ -122.181720456, 52.072139473000071 ], [ -122.181717434999968, 52.072304798000097 ], [ -122.180675644999909, 52.072297562000088 ], [ -122.180669515999924, 52.072367234000097 ], [ -122.174833136999965, 52.072173602000142 ] ], [ [ -122.147619578999965, 52.062943147000041 ], [ -122.147694863999945, 52.062094531000064 ], [ -122.14768730900002, 52.062094278000046 ], [ -122.147612024999901, 52.062942894000059 ], [ -122.147619578999965, 52.062943147000041 ] ], [ [ -122.160663406999944, 52.061006708000072 ], [ -122.160227680999952, 52.060931203000059 ], [ -122.160167078, 52.061012393000048 ], [ -122.160515292999932, 52.061203288000087 ], [ -122.160616499999946, 52.06120469500005 ], [ -122.160677204999942, 52.061096397000014 ], [ -122.160663406999944, 52.061006708000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "37.8", "sL_BldgLoss": "37.8", "sL_StrLoss": "37.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006EF5413B4C8B5EC0ADD1BC2D220A4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.174365345999945, 52.08230591000008 ], [ -122.174371914999981, 52.082231395000065 ], [ -122.172540826999935, 52.082170591000143 ], [ -122.171966419999976, 52.082151512000046 ], [ -122.172282370999966, 52.078568779000122 ], [ -122.175472113999902, 52.078674695000039 ], [ -122.17551075899992, 52.076577259000032 ], [ -122.176823850999966, 52.076586437000131 ], [ -122.17681889, 52.076856134000074 ], [ -122.178131992999937, 52.076865297000076 ], [ -122.178136945999981, 52.076595599000086 ], [ -122.181200833999981, 52.076616924000099 ], [ -122.181195900999953, 52.07688662100005 ], [ -122.181633602999966, 52.076889660000084 ], [ -122.181608940999951, 52.078238149000065 ], [ -122.18204665599994, 52.07824118700006 ], [ -122.182039574, 52.078628698000038 ], [ -122.181977590999978, 52.078651148000056 ], [ -122.181446896999987, 52.078843370000136 ], [ -122.180629315999965, 52.079139498000096 ], [ -122.179942197999964, 52.079388361000056 ], [ -122.178640214999945, 52.079859901000106 ], [ -122.177985306999943, 52.080150789000044 ], [ -122.176888709999915, 52.080735984000057 ], [ -122.176717555999971, 52.080841541000041 ], [ -122.175997190999979, 52.081285791000042 ], [ -122.174842924999979, 52.082007363000038 ], [ -122.174365345999945, 52.08230591000008 ] ], [ [ -122.179409838999931, 52.078797183000063 ], [ -122.179415423999927, 52.078492631000131 ], [ -122.178102272999965, 52.078483482000109 ], [ -122.178107225999938, 52.07821378400007 ], [ -122.17723179799998, 52.078207676000019 ], [ -122.177226839999975, 52.078477374000109 ], [ -122.17678912299999, 52.078474318000097 ], [ -122.176784785999956, 52.078710113000099 ], [ -122.179409838999931, 52.078797183000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024271", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "107", "sL_BldgLoss": "107", "sL_StrLoss": "107", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000050750279FA8A5EC0D27AAEA5360B4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.170878637999976, 52.086339656000078 ], [ -122.172308803999954, 52.086387166000051 ], [ -122.172317672999981, 52.088785953000091 ], [ -122.1706623099999, 52.088791419000081 ], [ -122.170878637999976, 52.086339656000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024272", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "85076417", "BldgCostT": "58201667", "sL_LossRatio": "1", "sL_AssetLoss": "3836.8", "sL_BldgLoss": "3836.8", "sL_StrLoss": "3836.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000046B50C618A8A5EC081ACE972310E4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.186663304999939, 52.118365591000057 ], [ -122.18646720299995, 52.118296187000105 ], [ -122.186229418999972, 52.118301798000076 ], [ -122.185138893999948, 52.118575703000054 ], [ -122.18446089900003, 52.118672709000094 ], [ -122.183971804999928, 52.118620610000036 ], [ -122.18351711299999, 52.118494202000136 ], [ -122.183322306999969, 52.118410034000121 ], [ -122.181470809999922, 52.117609913000067 ], [ -122.181376856999947, 52.117527319000054 ], [ -122.180353496999913, 52.116627895000114 ], [ -122.180345119999942, 52.116620507000029 ], [ -122.178537702999961, 52.115437696000086 ], [ -122.17808159399999, 52.114878313000112 ], [ -122.17781768099999, 52.114681804000092 ], [ -122.176956193999928, 52.114234605000021 ], [ -122.176704006999941, 52.114104984000065 ], [ -122.176464825999943, 52.113943502000041 ], [ -122.176264127999943, 52.113812008000117 ], [ -122.175622024999925, 52.113037003000017 ], [ -122.175509561999931, 52.112968972000033 ], [ -122.175355000999957, 52.112875404000071 ], [ -122.174962076999947, 52.112763601000054 ], [ -122.174235599999946, 52.112729602000101 ], [ -122.173952708999977, 52.112715699000084 ], [ -122.173480090999973, 52.112627289000088 ], [ -122.17200801499996, 52.112129293000109 ], [ -122.17156041299998, 52.112056096000039 ], [ -122.171112618, 52.112068088000022 ], [ -122.170575824999929, 52.112176105000081 ], [ -122.170754113999948, 52.112644606000067 ], [ -122.170770509999954, 52.113073603000046 ], [ -122.170662705999916, 52.113514692000109 ], [ -122.170395084999882, 52.114000392000079 ], [ -122.170366225999913, 52.114052799 ], [ -122.169824888, 52.11451319400004 ], [ -122.161057778999947, 52.114330809000109 ], [ -122.159596883999924, 52.114038734000061 ], [ -122.159160748999909, 52.113951704000094 ], [ -122.157829026999963, 52.11368598100011 ], [ -122.155041408999935, 52.113129665000081 ], [ -122.151332712999988, 52.112386132000061 ], [ -122.150458957999973, 52.112213258000047 ], [ -122.150463436999928, 52.111898976000134 ], [ -122.150461671999963, 52.111836036000049 ], [ -122.150449880999943, 52.111605755000021 ], [ -122.150356401999915, 52.111338554000049 ], [ -122.150174386999979, 52.111112343000102 ], [ -122.14994650299991, 52.1109565450001 ], [ -122.14957797699995, 52.110818440000081 ], [ -122.148533122999979, 52.110601279000079 ], [ -122.14784282899997, 52.108953842000062 ], [ -122.147697724999944, 52.108159503000124 ], [ -122.147725861999959, 52.107163395000065 ], [ -122.147726420999945, 52.106938899000056 ], [ -122.147620102999937, 52.105509906000101 ], [ -122.148256868999965, 52.105514509000052 ], [ -122.14824750299999, 52.106006123000064 ], [ -122.148497418999966, 52.106014472000055 ], [ -122.148533485999963, 52.105608252000103 ], [ -122.154374239999953, 52.105803210000062 ], [ -122.154370394999944, 52.105846581000037 ], [ -122.1582798, 52.105976906000109 ], [ -122.158269467999901, 52.106093569000024 ], [ -122.158792343999977, 52.106110990000047 ], [ -122.158830632000019, 52.105678599000044 ], [ -122.160240025999911, 52.105725543000027 ], [ -122.161094556999942, 52.105753999000051 ], [ -122.161100945999948, 52.105681805000074 ], [ -122.16114446399996, 52.105190053000051 ], [ -122.166985218999969, 52.105384373000078 ], [ -122.166940206999953, 52.105893785000042 ], [ -122.166842813999935, 52.106995968000014 ], [ -122.16706486899993, 52.106997535000104 ], [ -122.167061478999969, 52.107179585000019 ], [ -122.16741283, 52.107191264000043 ], [ -122.167378352999933, 52.107581477000103 ], [ -122.168457318999927, 52.107617336000025 ], [ -122.168412075999981, 52.10812953900011 ], [ -122.1694616179999, 52.108164410000029 ], [ -122.169425602999937, 52.108572251000083 ], [ -122.172647129999916, 52.108679226000078 ], [ -122.17254192099989, 52.109871568000123 ], [ -122.174501047999939, 52.10993657800001 ], [ -122.174499856999915, 52.109950088000048 ], [ -122.175508711, 52.109983552000095 ], [ -122.175418805, 52.111003213000039 ], [ -122.175695338999986, 52.111104149000063 ], [ -122.176188219999958, 52.111107594000046 ], [ -122.176184926999923, 52.111286283000013 ], [ -122.176331660999949, 52.111378326000064 ], [ -122.176621287999964, 52.111380350000083 ], [ -122.176617022999906, 52.111611890000077 ], [ -122.176856780999955, 52.111921455000086 ], [ -122.177487437999957, 52.111925856000063 ], [ -122.17748540799991, 52.112036196000091 ], [ -122.178278451999972, 52.112062480000091 ], [ -122.178218738999988, 52.112740146000121 ], [ -122.178348651999912, 52.112741052000025 ], [ -122.178348188999919, 52.112766198000024 ], [ -122.179608151999943, 52.112807946000039 ], [ -122.179604392999963, 52.112850620000103 ], [ -122.181526804999976, 52.112914290000099 ], [ -122.182741807999903, 52.113796968000024 ], [ -122.182671882999927, 52.114591434000083 ], [ -122.183892612999941, 52.114631835000061 ], [ -122.183839599, 52.115234344000015 ], [ -122.184799723999944, 52.115266111000082 ], [ -122.184745741999919, 52.115879763000102 ], [ -122.185798531, 52.115914586000045 ], [ -122.185754565999972, 52.116414488000046 ], [ -122.185838872999966, 52.116417276000078 ], [ -122.185882002999932, 52.115926862000059 ], [ -122.188052212999978, 52.115998614000027 ], [ -122.188462865999966, 52.119157458000046 ], [ -122.18777770399997, 52.119137202000054 ], [ -122.187411117999929, 52.119073023000098 ], [ -122.187284192999954, 52.119050785000113 ], [ -122.186874789999976, 52.118826191000068 ], [ -122.186663304999939, 52.118365591000057 ] ], [ [ -122.156755484999962, 52.110161024 ], [ -122.156791169999934, 52.109758267000139 ], [ -122.155725330999971, 52.109722739000105 ], [ -122.155725908999912, 52.109716227000021 ], [ -122.154822799999948, 52.109686115000095 ], [ -122.154832896999935, 52.109572207000049 ], [ -122.152999565999949, 52.109511058000116 ], [ -122.152997983999953, 52.109594629000057 ], [ -122.153436000999974, 52.109597775000097 ], [ -122.153430893999882, 52.109867470000083 ], [ -122.155182978999989, 52.109880037000025 ], [ -122.155181331999955, 52.109967162000025 ], [ -122.155347096999947, 52.109972689000074 ], [ -122.155336930999965, 52.110087387000078 ], [ -122.155999380999987, 52.110109472000026 ], [ -122.155995294999926, 52.110155585000051 ], [ -122.156755484999962, 52.110161024 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3557333", "BldgCostT": "2453333", "sL_LossRatio": "1", "sL_AssetLoss": "146.2", "sL_BldgLoss": "146.2", "sL_StrLoss": "146.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BBFD74A87895EC090E91A77140D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.147666428999955, 52.104927485000076 ], [ -122.14815895199996, 52.100099857000075 ], [ -122.148240174999941, 52.099303482000103 ], [ -122.148234590999934, 52.099252857000067 ], [ -122.148382080999951, 52.098636673000058 ], [ -122.148417563999914, 52.098637858000075 ], [ -122.148359238999944, 52.099294851000053 ], [ -122.149149184999914, 52.099321240000066 ], [ -122.149145805, 52.09935932000014 ], [ -122.14975966499999, 52.099379824000096 ], [ -122.149716925999954, 52.099861416000067 ], [ -122.14984289599991, 52.099865623000021 ], [ -122.149808851000017, 52.100249248000118 ], [ -122.149984616999973, 52.10025511900006 ], [ -122.149943652999951, 52.100716733000127 ], [ -122.15003604799989, 52.100719819000084 ], [ -122.149718099999987, 52.104302425000057 ], [ -122.149583524999954, 52.104297931000083 ], [ -122.149531529999933, 52.104883727000079 ], [ -122.148921629999961, 52.104863357000042 ], [ -122.148912407999958, 52.104967242000036 ], [ -122.147983230999969, 52.10493620300015 ], [ -122.147983064999906, 52.104938064000095 ], [ -122.147666428999955, 52.104927485000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024275", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8559833", "BldgCostT": "5903333", "sL_LossRatio": "1", "sL_AssetLoss": "462", "sL_BldgLoss": "462", "sL_StrLoss": "462", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F89751EADA895EC0AD21691E5D0C4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.154372329999902, 52.094808023000091 ], [ -122.157064961999964, 52.094897823000018 ], [ -122.156747634999974, 52.098480465000073 ], [ -122.150907854999929, 52.098285627000095 ], [ -122.150968586999909, 52.097601035000075 ], [ -122.151225660999941, 52.094703 ], [ -122.154372329999902, 52.094808023000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024277", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6805333", "BldgCostT": "4693333", "sL_LossRatio": "1", "sL_AssetLoss": "289.4", "sL_BldgLoss": "289.4", "sL_StrLoss": "289.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D5E07942E8B5EC0AB5D970A3F0D4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.175964054999909, 52.108869799000111 ], [ -122.176022786999965, 52.1082035640001 ], [ -122.175272004999954, 52.108178662000078 ], [ -122.175340678999959, 52.107399803000114 ], [ -122.17492924699998, 52.107386154000061 ], [ -122.175003252999943, 52.106546873000042 ], [ -122.174939407999929, 52.106544756000091 ], [ -122.174990505999958, 52.105965253000115 ], [ -122.174532132999929, 52.105950046000032 ], [ -122.17463646, 52.104766974 ], [ -122.1744638159999, 52.104761246000116 ], [ -122.174504768999938, 52.10429684700005 ], [ -122.174293642999956, 52.104289842000085 ], [ -122.17434813199999, 52.103671960000113 ], [ -122.174073176999983, 52.103662836000055 ], [ -122.174120393999928, 52.103127445000062 ], [ -122.173716102999919, 52.103114028000086 ], [ -122.173767816999941, 52.102527686000037 ], [ -122.172439496999942, 52.102483594000056 ], [ -122.172755559, 52.09890092100003 ], [ -122.173248547999961, 52.098917287000106 ], [ -122.17339253399993, 52.097284734000063 ], [ -122.173661938999899, 52.097293677000081 ], [ -122.174177835999927, 52.098928287000064 ], [ -122.176374023999955, 52.105885122000089 ], [ -122.177387655999894, 52.109372107000056 ], [ -122.176618759999926, 52.109346615000014 ], [ -122.175924047999942, 52.10932357800008 ], [ -122.175964054999909, 52.108869799000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024279", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "1", "sL_AssetLoss": "146", "sL_BldgLoss": "146", "sL_StrLoss": "146", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C69E03ECDF895EC081DA7FCF55114A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.153329112999941, 52.135753450000053 ], [ -122.153089628999965, 52.135552612000041 ], [ -122.152799265999974, 52.135152690000062 ], [ -122.152472666999941, 52.134173410000102 ], [ -122.154585350000019, 52.134243843000078 ], [ -122.154545758999959, 52.134690157000058 ], [ -122.154941168999969, 52.134703335000033 ], [ -122.15489665599992, 52.135205158000041 ], [ -122.15540578699995, 52.135222124000087 ], [ -122.155354853999953, 52.135796397000036 ], [ -122.155925508999971, 52.135815410000177 ], [ -122.155805735999976, 52.137166015000062 ], [ -122.1548328639999, 52.136688178000028 ], [ -122.154214538999952, 52.136122824000068 ], [ -122.153329112999941, 52.135753450000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024280", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "73", "sL_BldgLoss": "73", "sL_StrLoss": "73", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021617369178B5EC03E2AF67EC00F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.172474202, 52.122410257000077 ], [ -122.174226786999967, 52.122422543000049 ], [ -122.174206847, 52.123501324000053 ], [ -122.17376869, 52.123498253000051 ], [ -122.173763700999984, 52.123767950000087 ], [ -122.172449222999958, 52.123758731000066 ], [ -122.172474202, 52.122410257000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024281", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "265093304", "BldgCostT": "175413747", "sL_LossRatio": "0.999552294458644", "sL_AssetLoss": "15501.26", "sL_BldgLoss": "15494.32", "sL_StrLoss": "15491.8", "sL_NStrLoss": "2.52", "sL_ContLoss": "6.94", "geom_point": "0101000020E6100000F74F5714C2895EC04A542580510F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.14946248499993, 52.127980700000109 ], [ -122.149131099999977, 52.127959156000067 ], [ -122.148667411999952, 52.128107014000165 ], [ -122.14842060499997, 52.128308724000071 ], [ -122.148028362999966, 52.128656630000101 ], [ -122.147306707999988, 52.128724314000124 ], [ -122.147031319999883, 52.128851985000075 ], [ -122.147052989999935, 52.128245403000079 ], [ -122.147006105999978, 52.127866591000043 ], [ -122.146832910999976, 52.127457500000048 ], [ -122.146540606999977, 52.127118892000098 ], [ -122.146440405999954, 52.126977303000061 ], [ -122.145660319999962, 52.126307999000048 ], [ -122.145253734, 52.125971456000052 ], [ -122.144472981999954, 52.1253250930001 ], [ -122.143808218999979, 52.124776495000049 ], [ -122.143058909, 52.124223299000107 ], [ -122.14264909299996, 52.123922105000133 ], [ -122.142154471999973, 52.123731944000049 ], [ -122.141881197000018, 52.123626906000048 ], [ -122.141509602999932, 52.123522890000054 ], [ -122.139963684999969, 52.123113598000067 ], [ -122.13904458, 52.122864992000096 ], [ -122.138368515999929, 52.122682095000066 ], [ -122.137777391999933, 52.12252429400008 ], [ -122.136429393999975, 52.122164394000137 ], [ -122.134910200999954, 52.121834991000092 ], [ -122.134119699999971, 52.121745595000057 ], [ -122.133412499999949, 52.121789295000049 ], [ -122.132832725999933, 52.121949491000073 ], [ -122.132348309999941, 52.122174003000126 ], [ -122.13185151, 52.122486990000084 ], [ -122.131433095999952, 52.122907791000024 ], [ -122.130955223999976, 52.123304105000052 ], [ -122.130626312999979, 52.12344256800003 ], [ -122.130471086999961, 52.123507893000088 ], [ -122.130056191999984, 52.123546084000104 ], [ -122.129920108999968, 52.123558608000067 ], [ -122.12937620699995, 52.123464001000094 ], [ -122.129232935999937, 52.123427752000076 ], [ -122.129727109999948, 52.122657391000075 ], [ -122.129936051999948, 52.122597018000093 ], [ -122.130149298000021, 52.122535403 ], [ -122.131087508999897, 52.122398687000079 ], [ -122.132120689999965, 52.121777716000089 ], [ -122.132696306999918, 52.121548398000151 ], [ -122.133311378999963, 52.12141739500008 ], [ -122.134085395999961, 52.121387488000018 ], [ -122.135397883999985, 52.121549902000019 ], [ -122.135954699999928, 52.121464406000037 ], [ -122.13564977599998, 52.121336195000048 ], [ -122.134060311999974, 52.121225086000052 ], [ -122.133182383999937, 52.121272098000127 ], [ -122.132375602999957, 52.121437306000118 ], [ -122.131226299999966, 52.121995611000067 ], [ -122.130884309999914, 52.122253385000114 ], [ -122.13032687299993, 52.122348796000054 ], [ -122.130092985999937, 52.122353960000041 ], [ -122.129919288999929, 52.122357795000049 ], [ -122.130129843999967, 52.122029546000142 ], [ -122.130277943999943, 52.121929419000011 ], [ -122.13062808599993, 52.121371638000056 ], [ -122.131363189999931, 52.120252085000061 ], [ -122.13162529399996, 52.119852884000089 ], [ -122.131770681999939, 52.11963147600008 ], [ -122.13193022199998, 52.11938849200007 ], [ -122.132777798999882, 52.118097515000088 ], [ -122.133088500000028, 52.117569891000095 ], [ -122.133284001999954, 52.117234212000035 ], [ -122.133673600999927, 52.11670921100005 ], [ -122.134536081999954, 52.115907100000072 ], [ -122.135312286999977, 52.11543281700007 ], [ -122.135679802999931, 52.115253795000108 ], [ -122.137220432999982, 52.114702273000056 ], [ -122.138398789999925, 52.114280397000144 ], [ -122.140236104999929, 52.113583866000091 ], [ -122.141642901999958, 52.113050501000011 ], [ -122.142621078000019, 52.112727802000087 ], [ -122.142955776999884, 52.112617394000075 ], [ -122.144142118, 52.112339065000064 ], [ -122.145166768999943, 52.112164909000043 ], [ -122.146166596999976, 52.112056395000074 ], [ -122.146939481999951, 52.11201649500007 ], [ -122.147170126, 52.112004584000076 ], [ -122.148497898999963, 52.112013015000102 ], [ -122.14931121699999, 52.112058138000073 ], [ -122.149864311999977, 52.112130495000066 ], [ -122.150458957999973, 52.112213258000047 ], [ -122.151332712999988, 52.112386132000061 ], [ -122.155041408999935, 52.113129665000081 ], [ -122.157829026999963, 52.11368598100011 ], [ -122.159160748999909, 52.113951704000094 ], [ -122.159596883999924, 52.114038734000061 ], [ -122.161057778999947, 52.114330809000109 ], [ -122.169824888, 52.11451319400004 ], [ -122.170495756999927, 52.114513571000032 ], [ -122.170364646999928, 52.117654829000081 ], [ -122.169057822999946, 52.117611428000025 ], [ -122.169054301999935, 52.117800794000054 ], [ -122.169492404, 52.11780388100005 ], [ -122.169462325999959, 52.11942205 ], [ -122.168586093000016, 52.119415876000083 ], [ -122.168571037999953, 52.12022496000003 ], [ -122.169447286999926, 52.120231135000083 ], [ -122.169432247999936, 52.121040219000129 ], [ -122.170223094999983, 52.121045787000035 ], [ -122.170213079999911, 52.121285668000098 ], [ -122.170304150999982, 52.121281246000081 ], [ -122.170303504999978, 52.121316083000089 ], [ -122.172056045999952, 52.121328402000117 ], [ -122.172041051999926, 52.122137486000092 ], [ -122.171602909999976, 52.122134409000104 ], [ -122.17157790499995, 52.123482884000133 ], [ -122.170701592999976, 52.123476724000064 ], [ -122.170696585999963, 52.123746418000039 ], [ -122.170258425999975, 52.123743337000086 ], [ -122.1702484099999, 52.124282726000047 ], [ -122.170686573999888, 52.12428580800011 ], [ -122.170681566999974, 52.124555503000131 ], [ -122.172872402999957, 52.124570891000118 ], [ -122.172867409999981, 52.124840585000079 ], [ -122.173305578999958, 52.124843658000017 ], [ -122.17328561599993, 52.125922437000042 ], [ -122.172409254999977, 52.12591628900001 ], [ -122.172369281999948, 52.128073848000042 ], [ -122.171054676999944, 52.128064615000063 ], [ -122.171044665999943, 52.12860400300012 ], [ -122.172359288999957, 52.128613238000099 ], [ -122.172339298999972, 52.129692016000064 ], [ -122.171462862999988, 52.129685862000024 ], [ -122.171457860999965, 52.12995555600007 ], [ -122.168828541000011, 52.129937053000049 ], [ -122.168823521999968, 52.130206747000038 ], [ -122.167508854999966, 52.130197474000084 ], [ -122.167513883999987, 52.129927780000088 ], [ -122.167075663, 52.129924686000031 ], [ -122.167095778999951, 52.128845908000073 ], [ -122.16753398899999, 52.128849003 ], [ -122.167539014999974, 52.128579309000067 ], [ -122.16797722099993, 52.128582400000028 ], [ -122.16799731499998, 52.127503624000049 ], [ -122.169750097999952, 52.127515977000023 ], [ -122.169745085999949, 52.127785671000041 ], [ -122.171059681999949, 52.127794920000078 ], [ -122.171079700999925, 52.126716141000081 ], [ -122.167574196999979, 52.126691448000081 ], [ -122.167554091999961, 52.127770225000063 ], [ -122.16711589499999, 52.127767131000041 ], [ -122.16711086699992, 52.128036826000077 ], [ -122.165796263999951, 52.12802753400004 ], [ -122.165821445999967, 52.126679061000111 ], [ -122.166697820999943, 52.126685258000059 ], [ -122.166717944999974, 52.125606481000034 ], [ -122.16715612199998, 52.125609577000027 ], [ -122.16717120600002, 52.124800493000045 ], [ -122.166733035999954, 52.124797398000105 ], [ -122.166753156999931, 52.123718619000059 ], [ -122.16719131499994, 52.123721714000062 ], [ -122.167201368999969, 52.123182326000112 ], [ -122.165448758999958, 52.123169935000092 ], [ -122.165463871, 52.122360852000078 ], [ -122.165025725999953, 52.122357750000035 ], [ -122.165086203999962, 52.11912141600007 ], [ -122.165524316999921, 52.119124518000071 ], [ -122.165534389999934, 52.11858512800012 ], [ -122.165096281999951, 52.118582026000063 ], [ -122.16511643799997, 52.117503248000041 ], [ -122.16599263199997, 52.117509448000071 ], [ -122.166002699000018, 52.116970059000089 ], [ -122.165564606999936, 52.11696696100006 ], [ -122.165574678999945, 52.11642757000007 ], [ -122.164698506999969, 52.11642136600009 ], [ -122.164703547999977, 52.116151672000093 ], [ -122.164265463000021, 52.116148568000057 ], [ -122.164270506999955, 52.115878873000028 ], [ -122.163832424999981, 52.115875768000123 ], [ -122.163837470999908, 52.115606073000087 ], [ -122.163399391999974, 52.115602965000065 ], [ -122.163384246999897, 52.116412049000139 ], [ -122.163822332999956, 52.116415157000063 ], [ -122.163812239999942, 52.116954546000073 ], [ -122.164688423, 52.116960756000104 ], [ -122.164673298999986, 52.11776984000003 ], [ -122.164235198999918, 52.117766736000064 ], [ -122.164220066999945, 52.118575820000068 ], [ -122.163781957999959, 52.118572713000098 ], [ -122.163776910999971, 52.11884240800007 ], [ -122.164215020999919, 52.118845514000014 ], [ -122.164199887, 52.119654597000093 ], [ -122.163761768999947, 52.119651492000045 ], [ -122.163756722999921, 52.119921186000042 ], [ -122.16288047899998, 52.119914968000053 ], [ -122.162845107999971, 52.121802828000085 ], [ -122.16328324899996, 52.121805939000083 ], [ -122.163263044999923, 52.122884716000044 ], [ -122.16501564499994, 52.122897140000106 ], [ -122.164995483999988, 52.123975917000067 ], [ -122.164557321999908, 52.123972813000115 ], [ -122.164501838999939, 52.126939450000037 ], [ -122.16231089299994, 52.126923907000076 ], [ -122.16233112299993, 52.125845131000126 ], [ -122.161892941999895, 52.125842017000103 ], [ -122.161903062999968, 52.125302629000075 ], [ -122.160150368999908, 52.125290159000059 ], [ -122.16016557899998, 52.124481078000017 ], [ -122.159727413999974, 52.124477955000096 ], [ -122.159732487999946, 52.124208262000089 ], [ -122.159294323999973, 52.124205139000033 ], [ -122.159304474999914, 52.12366575100004 ], [ -122.15886631799998, 52.123662626000062 ], [ -122.158962778999921, 52.11853843800003 ], [ -122.158524671999913, 52.118535312000155 ], [ -122.158544985999967, 52.117456536000113 ], [ -122.158983083, 52.117459661000069 ], [ -122.158987585999952, 52.117220410000087 ], [ -122.157619874999938, 52.117174851000136 ], [ -122.157542699, 52.11804588400009 ], [ -122.157850372999945, 52.118056134000085 ], [ -122.15753294199996, 52.121638710000092 ], [ -122.157488, 52.121637213000071 ], [ -122.157383310999975, 52.122818612000096 ], [ -122.157234431999896, 52.12281365200009 ], [ -122.157185736999935, 52.12336311500011 ], [ -122.156468279999942, 52.123339211000044 ], [ -122.156444220999916, 52.123610633000062 ], [ -122.152296688999982, 52.123472357000033 ], [ -122.152293970999949, 52.123615562000062 ], [ -122.151855816999941, 52.123612411000053 ], [ -122.15185069599994, 52.123882105000085 ], [ -122.151412538, 52.123878952000048 ], [ -122.151407413999905, 52.124148645000076 ], [ -122.150092931999936, 52.124139179000046 ], [ -122.150098061999969, 52.123869486000089 ], [ -122.149659904, 52.123866327000108 ], [ -122.149670170999954, 52.12332694000002 ], [ -122.149232018999967, 52.123323781000089 ], [ -122.149237154999952, 52.123054086000131 ], [ -122.148799002999922, 52.123050924000069 ], [ -122.148809279999966, 52.122511538000047 ], [ -122.148371136999927, 52.122508374000034 ], [ -122.148381417999971, 52.12196898800007 ], [ -122.147067, 52.121959487 ], [ -122.147051554999948, 52.122768567000051 ], [ -122.146879882999926, 52.122767325000019 ], [ -122.146859652000032, 52.122994983000048 ], [ -122.147321836999964, 52.123010422000078 ], [ -122.147293927999954, 52.123324528000111 ], [ -122.147527150999963, 52.12333231700012 ], [ -122.147505099999989, 52.123580502000074 ], [ -122.148962816, 52.123629179000069 ], [ -122.148866155999983, 52.124717482000072 ], [ -122.149174484999932, 52.124727776000086 ], [ -122.149158952999969, 52.124902652000095 ], [ -122.149506886000012, 52.124914266000097 ], [ -122.149450020999922, 52.125554593000096 ], [ -122.149910315999946, 52.125569956000056 ], [ -122.149888140999948, 52.12581968900011 ], [ -122.15006682799999, 52.125825653000042 ], [ -122.150043326999977, 52.126090331000078 ], [ -122.150334437999945, 52.126100046000069 ], [ -122.15029674, 52.126524631000059 ], [ -122.150440964999959, 52.126529444000049 ], [ -122.15033794, 52.127689788000069 ], [ -122.151888092, 52.127741507000025 ], [ -122.151697765999984, 52.129885811000094 ], [ -122.15156329899996, 52.129611193000116 ], [ -122.151177427, 52.129463082000072 ], [ -122.149435630999974, 52.129283008000087 ], [ -122.148922381999952, 52.129043459000115 ], [ -122.148861140999927, 52.128744796000049 ], [ -122.14946248499993, 52.127980700000109 ] ], [ [ -122.145738127999948, 52.122706019000134 ], [ -122.14574227, 52.122489359000028 ], [ -122.144865983, 52.122483008000053 ], [ -122.144881469999973, 52.121673928000057 ], [ -122.145757740999954, 52.121680279000067 ], [ -122.145768053, 52.12114089300011 ], [ -122.143577398999923, 52.121125003000039 ], [ -122.143572649999925, 52.121372835000095 ], [ -122.144247640999964, 52.12139540200014 ], [ -122.144233374999942, 52.121555841000053 ], [ -122.144785233000036, 52.121574287000101 ], [ -122.144687733999959, 52.122670916000061 ], [ -122.145738127999948, 52.122706019000134 ] ], [ [ -122.166808482999954, 52.12075197900004 ], [ -122.166793394999956, 52.121561064000069 ], [ -122.167231531999988, 52.121564158000055 ], [ -122.16722650499996, 52.121833853000034 ], [ -122.167664645999977, 52.121836946 ], [ -122.167639523999981, 52.123185419000073 ], [ -122.168515831999969, 52.123191602000091 ], [ -122.168525868999964, 52.122652212000041 ], [ -122.16896401799994, 52.122655301000101 ], [ -122.168979065999906, 52.121846217000062 ], [ -122.168540925999977, 52.121843129000077 ], [ -122.16854594599999, 52.121573434000027 ], [ -122.167669669999924, 52.121567252000077 ], [ -122.167684740999945, 52.120758167000112 ], [ -122.166808482999954, 52.12075197900004 ] ], [ [ -122.16746162599992, 52.1150922570001 ], [ -122.16780472, 52.115094679000016 ], [ -122.167462417999971, 52.115083304000038 ], [ -122.16746162599992, 52.1150922570001 ] ], [ [ -122.168292920999932, 52.115098123000095 ], [ -122.168356551, 52.115098572000058 ], [ -122.168293067999983, 52.11509646200011 ], [ -122.168292920999932, 52.115098123000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024282", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "71.6", "sL_BldgLoss": "71.6", "sL_StrLoss": "71.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4224994268B5EC04470F99B920F4A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.175101339999927, 52.123122137000095 ], [ -122.175232647999962, 52.121633455000087 ], [ -122.174241977999969, 52.121600602000086 ], [ -122.174231770999967, 52.122152848000084 ], [ -122.17291733899999, 52.122143635000029 ], [ -122.172932316999933, 52.121334551000068 ], [ -122.173291389999946, 52.121337070000081 ], [ -122.173309193999955, 52.121135326000065 ], [ -122.175452224999901, 52.121031214000034 ], [ -122.175507018999923, 52.121701838000014 ], [ -122.175390216999958, 52.121963679000032 ], [ -122.175327784999979, 52.123129646000116 ], [ -122.175101339999927, 52.123122137000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "426190934", "BldgCostT": "241101919", "sL_LossRatio": "0.989071858327394", "sL_AssetLoss": "5650.549", "sL_BldgLoss": "5588.799", "sL_StrLoss": "5566.4", "sL_NStrLoss": "22.399", "sL_ContLoss": "61.75", "geom_point": "0101000020E61000008EFFD15006895EC0116C9F6548104A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.135496023999949, 52.126144017000087 ], [ -122.135716988999903, 52.125176807000074 ], [ -122.137405248999954, 52.125327867000067 ], [ -122.138149323999968, 52.125394459000056 ], [ -122.139406293999969, 52.125506897000051 ], [ -122.139513902, 52.124989487000043 ], [ -122.139630715999928, 52.124502451000041 ], [ -122.139963684999969, 52.123113598000067 ], [ -122.141509602999932, 52.123522890000054 ], [ -122.141881197000018, 52.123626906000048 ], [ -122.142154471999973, 52.123731944000049 ], [ -122.14264909299996, 52.123922105000133 ], [ -122.143058909, 52.124223299000107 ], [ -122.143808218999979, 52.124776495000049 ], [ -122.144472981999954, 52.1253250930001 ], [ -122.145253734, 52.125971456000052 ], [ -122.145660319999962, 52.126307999000048 ], [ -122.146440405999954, 52.126977303000061 ], [ -122.146540606999977, 52.127118892000098 ], [ -122.146832910999976, 52.127457500000048 ], [ -122.147006105999978, 52.127866591000043 ], [ -122.147052989999935, 52.128245403000079 ], [ -122.147031319999883, 52.128851985000075 ], [ -122.145520310999956, 52.128871588000059 ], [ -122.14553878, 52.129817197000115 ], [ -122.144657973999969, 52.129826754000064 ], [ -122.143915111999888, 52.129834802000062 ], [ -122.143123918999976, 52.129845939000063 ], [ -122.14240391, 52.129856101000072 ], [ -122.140672498999919, 52.129882601000084 ], [ -122.136236749999952, 52.12994977000006 ], [ -122.136233552999968, 52.129464716000072 ], [ -122.13623237099992, 52.129287802000071 ], [ -122.136230437999956, 52.129000957000109 ], [ -122.136180662999919, 52.128770208000027 ], [ -122.135999815999966, 52.128514413000062 ], [ -122.135756909999969, 52.128362566000071 ], [ -122.135761404000021, 52.127576027000082 ], [ -122.135763210000022, 52.127256074000051 ], [ -122.135423550999988, 52.126759613000075 ], [ -122.13538879499994, 52.126558128000063 ], [ -122.135496023999949, 52.126144017000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024284", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "57.8", "sL_BldgLoss": "57.8", "sL_StrLoss": "57.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000708E63B9DF8F5EC06229791264CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.249390304999906, 51.580052866000059 ], [ -122.249506075999975, 51.580045010000035 ], [ -122.24936935199996, 51.581646325000079 ], [ -122.24835630699998, 51.581612955000033 ], [ -122.248332521999941, 51.581891449000139 ], [ -122.245351769999971, 51.581793210000036 ], [ -122.245672034999984, 51.581624305000076 ], [ -122.246481649999964, 51.581336529000126 ], [ -122.247025532999913, 51.58114322100004 ], [ -122.247206423, 51.581042889000038 ], [ -122.248126725999896, 51.580532468000037 ], [ -122.248981477999934, 51.580147216000036 ], [ -122.249390304999906, 51.580052866000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "253.7", "sL_BldgLoss": "253.7", "sL_StrLoss": "253.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000756771EF2F885EC051CEC43205F84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.125042801999939, 51.940371865000031 ], [ -122.125282603999963, 51.93767660200006 ], [ -122.125106794999951, 51.937670670000102 ], [ -122.125425551999911, 51.934087622000078 ], [ -122.12700316899999, 51.934140844000062 ], [ -122.128949414999923, 51.935264989000061 ], [ -122.12984555599995, 51.935694808000058 ], [ -122.13031360799999, 51.935919290000086 ], [ -122.13106964499994, 51.936237929000107 ], [ -122.131003810999971, 51.936979061000045 ], [ -122.131179615999955, 51.936984984000077 ], [ -122.130861311999951, 51.940568040000059 ], [ -122.125042801999939, 51.940371865000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024287", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "1", "sL_AssetLoss": "450", "sL_BldgLoss": "450", "sL_StrLoss": "450", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5CBEE0BA07E5EC04F81C45D5AF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.979808346999917, 51.923898326000035 ], [ -121.979830679999949, 51.922913188000116 ], [ -121.979394502999952, 51.922909407000034 ], [ -121.979409970999939, 51.922227437000068 ], [ -121.979437814, 51.922100555000071 ], [ -121.979849023, 51.922104120000093 ], [ -121.9798527199999, 51.921941006000075 ], [ -121.979475723999897, 51.921927802000077 ], [ -121.97966248699997, 51.921076695000032 ], [ -121.979348986, 51.92080329000003 ], [ -121.978375299999954, 51.920696500000055 ], [ -121.976352574999964, 51.918934696000044 ], [ -121.976131088999978, 51.918420602000047 ], [ -121.97587681899995, 51.917402296000049 ], [ -121.97584790099998, 51.916789901000115 ], [ -121.975534000999957, 51.915906803000105 ], [ -121.975817488999951, 51.914919896000129 ], [ -121.975766503999949, 51.914586588000049 ], [ -121.974862112999958, 51.914102408000133 ], [ -121.973015189999956, 51.912890399000098 ], [ -121.972555104999984, 51.911987406000087 ], [ -121.971880965999929, 51.911732438000072 ], [ -121.971918340999963, 51.91132811700006 ], [ -121.977732273999905, 51.911532046000033 ], [ -121.977701688999986, 51.911863399 ], [ -121.97819628099991, 51.911880734000086 ], [ -121.978169761999951, 51.912168071000089 ], [ -121.978610686999914, 51.912183523000074 ], [ -121.978609422999924, 51.91219723200004 ], [ -121.979613049999912, 51.912232397000075 ], [ -121.979513659999938, 51.913309643000041 ], [ -121.981563756999975, 51.913381446000038 ], [ -121.981538456999957, 51.913655786000064 ], [ -121.982051058999986, 51.913673734000064 ], [ -121.981720675999952, 51.917256442000046 ], [ -121.980030238999973, 51.917197245000089 ], [ -121.979950741999943, 51.918058862000109 ], [ -121.980376849999942, 51.918062554000066 ], [ -121.980375398999954, 51.918126595000032 ], [ -121.981265404999988, 51.918157761000089 ], [ -121.981243480999936, 51.918395445000066 ], [ -121.981774802999951, 51.918414048000095 ], [ -121.981582354999915, 51.920500675000014 ], [ -121.981630320999926, 51.920501090000094 ], [ -121.981624217999951, 51.920770780000055 ], [ -121.982060374999918, 51.92077455200004 ], [ -121.982029873999963, 51.922123001000081 ], [ -121.982466043999978, 51.922126772000098 ], [ -121.982447747999927, 51.922935842000115 ], [ -121.982011569999941, 51.922932070000108 ], [ -121.982005468999915, 51.923201760000026 ], [ -121.98156928799996, 51.923197986000055 ], [ -121.981563185000013, 51.923467677000083 ], [ -121.981999368999979, 51.923471449000075 ], [ -121.981981063999953, 51.924280518000046 ], [ -121.98154487199993, 51.924276745000036 ], [ -121.981526558999946, 51.925085813000052 ], [ -121.979781764999956, 51.925070703000102 ], [ -121.979806222999954, 51.923991942000093 ], [ -121.979815611999967, 51.923909509000069 ], [ -121.979808346999917, 51.923898326000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024290", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "72.9", "sL_BldgLoss": "72.9", "sL_StrLoss": "72.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E32F144D73845EC02BCC310F4FEF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.070810501, 51.868639184000102 ], [ -122.07082089299999, 51.868639267000042 ], [ -122.070798660999941, 51.869718064000075 ], [ -122.070362986999953, 51.869714623000128 ], [ -122.070357424999941, 51.869984322000036 ], [ -122.069921747999956, 51.869980879000096 ], [ -122.069910619999945, 51.870520276000022 ], [ -122.068746638999968, 51.870511069000024 ], [ -122.068167891999963, 51.870506487000064 ], [ -122.06818461499995, 51.869697391000052 ], [ -122.068620288999981, 51.86970083900006 ], [ -122.068631430999957, 51.869161441000095 ], [ -122.069067099999984, 51.86916488900011 ], [ -122.069072668999965, 51.868895191000057 ], [ -122.069508335999956, 51.868898637000065 ], [ -122.06951390199994, 51.868628938000015 ], [ -122.070810501, 51.868639184000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "87.7", "sL_BldgLoss": "87.7", "sL_StrLoss": "87.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E30A838DC68E5EC0897106985CE44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.22303180499992, 51.785113494000043 ], [ -122.223120061999978, 51.78409200600003 ], [ -122.224413551999945, 51.784134694000045 ], [ -122.22445503099999, 51.783654438000021 ], [ -122.230253138999942, 51.783845608000028 ], [ -122.230192279, 51.784551346000093 ], [ -122.230858445999957, 51.784555705000059 ], [ -122.230924543999961, 51.783789093000117 ], [ -122.231612534999925, 51.783811753000116 ], [ -122.231646736, 51.783415010000077 ], [ -122.23235006500002, 51.783438171000093 ], [ -122.232377623000019, 51.783118427000034 ], [ -122.238175693999949, 51.783309197000086 ], [ -122.23815897899999, 51.783503439000128 ], [ -122.239674553999947, 51.783553256000076 ], [ -122.239633111999979, 51.784035023000108 ], [ -122.238946153999947, 51.784047762000057 ], [ -122.238885521999961, 51.784052006000067 ], [ -122.238818412999976, 51.784056724000081 ], [ -122.224787383999953, 51.785039479000041 ], [ -122.223224647999956, 51.78507328500006 ], [ -122.22303180499992, 51.785113494000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000037695C301F835EC00303AD6557034A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.045685042999978, 52.027902917000105 ], [ -122.046011, 52.024320372 ], [ -122.051840374999955, 52.024520531000086 ], [ -122.051514896999905, 52.028103093000048 ], [ -122.049646437999954, 52.028038970000047 ], [ -122.049596085999951, 52.02757909000011 ], [ -122.049437895999972, 52.027389694000071 ], [ -122.048683106999988, 52.027265795000062 ], [ -122.047910404999953, 52.027287095000105 ], [ -122.047176881999917, 52.027954170000051 ], [ -122.045685042999978, 52.027902917000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024293", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "1", "sL_AssetLoss": "416", "sL_BldgLoss": "416", "sL_StrLoss": "416", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054C3239639895EC02D6AC571BFFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.14012534699999, 51.984852189000044 ], [ -122.140196119999956, 51.98405448000009 ], [ -122.140125311999924, 51.984052103000046 ], [ -122.14014121299999, 51.983872879000089 ], [ -122.139459400999939, 51.983849985000091 ], [ -122.139510773999945, 51.983271033000079 ], [ -122.139402139999945, 51.98326738500004 ], [ -122.139462501999944, 51.982587134000042 ], [ -122.139350884999942, 51.982583384000023 ], [ -122.139668796999956, 51.97900043700011 ], [ -122.145235425999928, 51.979187243000069 ], [ -122.145247553, 51.979050370000024 ], [ -122.145595121999946, 51.979062025000061 ], [ -122.14565606599993, 51.979131197000079 ], [ -122.146078252, 51.979608647000077 ], [ -122.148947784999976, 51.982421522000045 ], [ -122.150253579999969, 51.983542446000087 ], [ -122.151781340999946, 51.984853784000123 ], [ -122.148405086999958, 51.984740722000019 ], [ -122.148446829999969, 51.984269212000058 ], [ -122.147401781999946, 51.984234196000038 ], [ -122.147475789999959, 51.983398451 ], [ -122.147352664999957, 51.983394325000084 ], [ -122.147243905, 51.984622475000052 ], [ -122.146674027999936, 51.984603376000095 ], [ -122.146648695999929, 51.984889389000053 ], [ -122.146311000999944, 51.984878070000065 ], [ -122.146278701999918, 51.985242697000075 ], [ -122.145933605999943, 51.985231128000045 ], [ -122.145903804999961, 51.985567505000041 ], [ -122.142455029999908, 51.985451840000032 ], [ -122.141039289, 51.985168989000087 ], [ -122.14012534699999, 51.984852189000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024294", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "67.3", "sL_BldgLoss": "67.3", "sL_StrLoss": "67.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B5A329E33865EC0E5E8D8DE7ACB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.094115070999948, 51.589269573000117 ], [ -122.099886960999967, 51.589467377000091 ], [ -122.099834271999939, 51.590060627000064 ], [ -122.094053772, 51.589958741000046 ], [ -122.094115070999948, 51.589269573000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024295", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "185", "sL_BldgLoss": "185", "sL_StrLoss": "185", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000DFF0A15F3895EC05241A8FF6AEE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.156545820999924, 51.860767643000059 ], [ -122.159947832999976, 51.860881661000029 ], [ -122.159564275999969, 51.861300604000071 ], [ -122.159112803999989, 51.861993616000071 ], [ -122.158451250999974, 51.863009063000092 ], [ -122.158070663999936, 51.863411409000065 ], [ -122.157988133999964, 51.86347311300009 ], [ -122.15754839799996, 51.863801818000077 ], [ -122.156497888999937, 51.864408664000074 ], [ -122.155979330999955, 51.864708207000078 ], [ -122.152095177999939, 51.864577900000043 ], [ -122.15241118499992, 51.860994545000075 ], [ -122.156513710999903, 51.861132176000055 ], [ -122.156545820999924, 51.860767643000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "37.6", "sL_BldgLoss": "37.6", "sL_StrLoss": "37.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000044C6FE0D757F5EC03E2D37FF4CF94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.98909851, 51.944833488000015 ], [ -121.988736861999939, 51.944157411000106 ], [ -121.989609453999989, 51.94418788400003 ], [ -121.98972239299999, 51.944459411000132 ], [ -121.990137392999955, 51.944787015000067 ], [ -121.990311076999902, 51.944860994000074 ], [ -121.990836102999964, 51.944802584000087 ], [ -121.990994504999975, 51.944883794000106 ], [ -121.991790909999978, 51.946994494000087 ], [ -121.991930018999938, 51.947266498000062 ], [ -121.992774589999911, 51.947911713000032 ], [ -121.993207285, 51.948716397000105 ], [ -121.993924991999975, 51.949180610000013 ], [ -121.993982903999935, 51.950364370000088 ], [ -121.991465107999915, 51.950276531000014 ], [ -121.991451198999982, 51.950235913000064 ], [ -121.991225681999964, 51.949189850000067 ], [ -121.991105502999957, 51.948632549000116 ], [ -121.990838776999965, 51.94799515100005 ], [ -121.990201673999962, 51.946832293000099 ], [ -121.989664376999883, 51.945851585000113 ], [ -121.98909851, 51.944833488000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024297", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "45356750", "BldgCostT": "30545000", "sL_LossRatio": "1", "sL_AssetLoss": "3590.5", "sL_BldgLoss": "3590.5", "sL_StrLoss": "3590.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6CAA4441A885EC0F24CB3693AFA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.139036569, 51.96420450300014 ], [ -122.139260435, 51.961680648000019 ], [ -122.139196661999947, 51.961680181000105 ], [ -122.139201829999976, 51.961410481 ], [ -122.139094699999973, 51.961409697000136 ], [ -122.138956775999958, 51.962964608000071 ], [ -122.13371467099995, 51.96278834500005 ], [ -122.133701747, 51.962933834000047 ], [ -122.13175069099999, 51.962868170000021 ], [ -122.131732970999977, 51.963067581000125 ], [ -122.130717302999969, 51.963033384000092 ], [ -122.13071092899996, 51.963105106000071 ], [ -122.12488941, 51.962908928000047 ], [ -122.124913129999982, 51.962642504000058 ], [ -122.123564834999954, 51.962597026000047 ], [ -122.123499228999918, 51.963333678000026 ], [ -122.117677713999939, 51.963137135000089 ], [ -122.117997265999946, 51.95955418600002 ], [ -122.11814237699997, 51.959559090000056 ], [ -122.118303465999958, 51.957752591000059 ], [ -122.12392510399999, 51.957942385000067 ], [ -122.1239543, 51.957614486000033 ], [ -122.118784957999978, 51.957439972000039 ], [ -122.119021574999977, 51.954785860000065 ], [ -122.11763900499993, 51.954739145000097 ], [ -122.117731463999974, 51.953702314000097 ], [ -122.117707876999972, 51.953701517000042 ], [ -122.117517596999946, 51.955835233000101 ], [ -122.116914301999955, 51.955814844000017 ], [ -122.11687139699994, 51.956295847000092 ], [ -122.116647907999976, 51.956288294000053 ], [ -122.116587626999902, 51.956964053000057 ], [ -122.110766992999942, 51.956767160000055 ], [ -122.111030443999951, 51.953818109000096 ], [ -122.110892217999947, 51.953813429000057 ], [ -122.110887583999968, 51.953865294000131 ], [ -122.10506739099999, 51.953668111000063 ], [ -122.105387910000019, 51.950085169000033 ], [ -122.10611820499993, 51.95010992600006 ], [ -122.106256367999961, 51.948564987000076 ], [ -122.107874421, 51.948619825 ], [ -122.107904615999985, 51.948282026000065 ], [ -122.113724103999971, 51.948479066000118 ], [ -122.11370788399995, 51.948660789000037 ], [ -122.114540184999939, 51.948688945000072 ], [ -122.114434884999966, 51.949868943000105 ], [ -122.115147193000013, 51.949893035000095 ], [ -122.11524966799999, 51.948744503000086 ], [ -122.115895549999948, 51.948766345000138 ], [ -122.116091167999983, 51.946573319000059 ], [ -122.117062656999977, 51.946606166 ], [ -122.117164491999972, 51.945464143000066 ], [ -122.122983645999966, 51.945660715000066 ], [ -122.12286293699999, 51.947016415000135 ], [ -122.124147793999924, 51.947059778000089 ], [ -122.12376989299996, 51.947863295000083 ], [ -122.125214894999942, 51.949358574000044 ], [ -122.125191369999939, 51.949622913000063 ], [ -122.125479758999958, 51.949632640000118 ], [ -122.126079406999935, 51.950253107000087 ], [ -122.127158888999958, 51.950836996000135 ], [ -122.127668389999926, 51.951614606000085 ], [ -122.127917197999977, 51.952254104000154 ], [ -122.128429686999965, 51.952942008000022 ], [ -122.128963342999924, 51.953450503000106 ], [ -122.128907322, 51.954080555000075 ], [ -122.129118167999962, 51.95408766000007 ], [ -122.129141680999936, 51.954465896000066 ], [ -122.129195344999914, 51.95449244200006 ], [ -122.129194171999956, 51.954505640000107 ], [ -122.129224063, 51.954506647000059 ], [ -122.130247477999916, 51.955012896000049 ], [ -122.130000371999984, 51.957792672000018 ], [ -122.134129904999938, 51.957931696000095 ], [ -122.134223166999945, 51.956881488000107 ], [ -122.134571009999931, 51.956592208000096 ], [ -122.136093187999947, 51.956199089000052 ], [ -122.136359704999961, 51.956002590000075 ], [ -122.136541896999972, 51.955590997000066 ], [ -122.136488206999957, 51.955366005000059 ], [ -122.135560594999959, 51.954414608000064 ], [ -122.13551858699999, 51.95435354100011 ], [ -122.139198224999959, 51.9544772590001 ], [ -122.139236007999926, 51.95405118700004 ], [ -122.138954180999974, 51.954041715000116 ], [ -122.138960810999933, 51.953966972000089 ], [ -122.135164864000018, 51.953839332000079 ], [ -122.134895390999986, 51.953447589000049 ], [ -122.134645830999972, 51.953227607000038 ], [ -122.1346881, 51.952751497000094 ], [ -122.134480098999973, 51.952744499000062 ], [ -122.134514819999964, 51.952353427000091 ], [ -122.134016616999958, 51.95233666200005 ], [ -122.133619589999967, 51.951657294000029 ], [ -122.133608257999981, 51.951536083000093 ], [ -122.13385676099999, 51.948737548000075 ], [ -122.133908058999964, 51.948739274000047 ], [ -122.134053956999978, 51.947096050000063 ], [ -122.139873402999953, 51.94729176700006 ], [ -122.139870748999925, 51.947321719000044 ], [ -122.142708649999946, 51.947417055000109 ], [ -122.142825956999957, 51.947585122000113 ], [ -122.14288733799999, 51.947673085000083 ], [ -122.143001810999962, 51.947837084000092 ], [ -122.14318270899993, 51.948250190000088 ], [ -122.143242517999923, 51.948694197000137 ], [ -122.143241711999934, 51.949030554000089 ], [ -122.143238920999977, 51.950235223000078 ], [ -122.143236315999914, 51.951341308000082 ], [ -122.143233405000018, 51.952600033000095 ], [ -122.143230790999965, 51.953732783000113 ], [ -122.143226971000033, 51.955360377000034 ], [ -122.143226313999946, 51.955646129000023 ], [ -122.143224961999962, 51.956228464000098 ], [ -122.140284651999963, 51.956129721000082 ], [ -122.140250571999971, 51.956514105000046 ], [ -122.143224065999988, 51.956613962000112 ], [ -122.14321768399995, 51.959361167000068 ], [ -122.143215708999918, 51.960207365000059 ], [ -122.141511102999985, 51.960150134000024 ], [ -122.141463043, 51.960692331000061 ], [ -122.143214437, 51.960751133000066 ], [ -122.143211693999888, 51.961925092000051 ], [ -122.143219091999924, 51.962526124000085 ], [ -122.14321977599991, 51.96258006199999 ], [ -122.143223078999952, 51.962849554000066 ], [ -122.143224745999973, 51.962984572000032 ], [ -122.143239507999937, 51.964181103000044 ], [ -122.14323876499995, 51.964345619000042 ], [ -122.139036569, 51.96420450300014 ] ], [ [ -122.124038997999889, 51.958964447000035 ], [ -122.12406925699996, 51.958624599000125 ], [ -122.12406413799999, 51.958624426000036 ], [ -122.12403387900001, 51.958964274000053 ], [ -122.124038997999889, 51.958964447000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024298", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "173.5", "sL_BldgLoss": "173.5", "sL_StrLoss": "173.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D4D3AA0A0B815EC09C22765CC3FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.013551761999977, 51.972819712000081 ], [ -122.019374095999964, 51.973021524000067 ], [ -122.01904633299992, 51.976604153000046 ], [ -122.013223520999958, 51.976402325000066 ], [ -122.013551761999977, 51.972819712000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024299", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.2", "sL_BldgLoss": "53.2", "sL_StrLoss": "53.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061BC8B9C2A875EC0891F4A51BAF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.110895623999937, 51.92087531600005 ], [ -122.111055881999931, 51.919079864000146 ], [ -122.110945352999977, 51.919076120000042 ], [ -122.111063317999964, 51.91775444000011 ], [ -122.111776383999981, 51.91826623900004 ], [ -122.112244904999926, 51.918703521000104 ], [ -122.112711370999989, 51.919228717000109 ], [ -122.113095990999938, 51.919788906000086 ], [ -122.113385772999933, 51.920365609000058 ], [ -122.113579909999913, 51.920966229000065 ], [ -122.110895623999937, 51.92087531600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.1", "sL_BldgLoss": "49.1", "sL_StrLoss": "49.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059FB5CE98C8B5EC0390134E7ECE84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.182483308, 51.817677585000062 ], [ -122.182856158999954, 51.817680177000035 ], [ -122.18283664199997, 51.81875901500009 ], [ -122.182401446999918, 51.818755991000046 ], [ -122.182391683999981, 51.819295410000045 ], [ -122.181956482999936, 51.81929238300004 ], [ -122.181946711999927, 51.81983180200011 ], [ -122.18151150599999, 51.819828774000023 ], [ -122.181506618999961, 51.820098484000063 ], [ -122.181071409999973, 51.820095454000054 ], [ -122.181066518999941, 51.82036516400003 ], [ -122.180631307999931, 51.82036213200012 ], [ -122.180626415999896, 51.820631842000068 ], [ -122.180191200999957, 51.820628808000031 ], [ -122.180186305999925, 51.82089851900011 ], [ -122.179751090999957, 51.820895484000062 ], [ -122.179736396999971, 51.821704612000055 ], [ -122.178656514999929, 51.821697075000039 ], [ -122.177995499999952, 51.821692456000051 ], [ -122.178015134999967, 51.820613620000053 ], [ -122.178450347999942, 51.820616661000059 ], [ -122.178455252999953, 51.820346952000143 ], [ -122.178890464999967, 51.82034999200004 ], [ -122.178900269999971, 51.819810573000098 ], [ -122.179335475999906, 51.81981361000004 ], [ -122.179340376999988, 51.819543901000031 ], [ -122.179775579999927, 51.81954693700002 ], [ -122.179780477999941, 51.819277228000018 ], [ -122.180215677999954, 51.819280262000099 ], [ -122.180220572999986, 51.819010553000055 ], [ -122.180655770999948, 51.819013585000114 ], [ -122.180665554999933, 51.818474167000069 ], [ -122.181100748999967, 51.818477197000085 ], [ -122.181110527999934, 51.817937778000051 ], [ -122.181545715, 51.817940808000024 ], [ -122.18155060299992, 51.817671098000055 ], [ -122.182483308, 51.817677585000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "152.7", "sL_BldgLoss": "152.7", "sL_StrLoss": "152.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034ED6A0BF2805EC0263F3D119F004A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.012024225999966, 52.002962125000117 ], [ -122.017850583999959, 52.003164009000052 ], [ -122.017522468999985, 52.006746540000073 ], [ -122.011695630999967, 52.006544640000051 ], [ -122.012024225999966, 52.002962125000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024303", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "132.5", "sL_BldgLoss": "132.5", "sL_StrLoss": "132.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A924CDAD6865EC021446C8FE2CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.10565597199998, 51.590994848000058 ], [ -122.10829504799996, 51.591085055000086 ], [ -122.108131587999978, 51.59292940900005 ], [ -122.107977383999952, 51.594669187000093 ], [ -122.106514365999956, 51.594619187000092 ], [ -122.106492131999971, 51.594869923000047 ], [ -122.10558453499999, 51.594838895000066 ], [ -122.10562457499999, 51.593385665 ], [ -122.105646547999953, 51.591710992000095 ], [ -122.105654528999963, 51.591104749000117 ], [ -122.10565597199998, 51.590994848000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024304", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "213.3", "sL_BldgLoss": "213.3", "sL_StrLoss": "213.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000906288B51B8E5EC0A383CBB615D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.217706625999966, 51.631587208000049 ], [ -122.223484624999955, 51.631778747000084 ], [ -122.223254692999888, 51.63444979100008 ], [ -122.223176068, 51.635363055000028 ], [ -122.218633217999965, 51.63521248600005 ], [ -122.21739759899999, 51.635171501000116 ], [ -122.217706625999966, 51.631587208000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "161.9", "sL_BldgLoss": "161.9", "sL_StrLoss": "161.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059BA69D0A3805EC00F43AB93B3FE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.007466589999964, 51.987656691000076 ], [ -122.013290878999953, 51.987858808000055 ], [ -122.012962503999958, 51.991441373 ], [ -122.01132659299999, 51.991384633000102 ], [ -122.011241683999955, 51.992310513000042 ], [ -122.007525988999973, 51.992181551000108 ], [ -122.007210498999953, 51.990864145000025 ], [ -122.006856888999948, 51.989387328000113 ], [ -122.006658192999964, 51.988557446000073 ], [ -122.007381605999953, 51.98858257100008 ], [ -122.007466589999964, 51.987656691000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024306", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2CE818ACF7F5EC013036E275BFA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.999975991, 51.95869191400007 ], [ -121.999981992999935, 51.958422225000092 ], [ -121.999545468999941, 51.958418517000048 ], [ -121.999557474999989, 51.957879137000077 ], [ -121.999120955999956, 51.957875428000101 ], [ -121.999126960999945, 51.957605738000012 ], [ -121.998690444999966, 51.9576020270001 ], [ -121.998692120999962, 51.95752682300013 ], [ -121.99674713499995, 51.957459064000062 ], [ -121.996713076999953, 51.957427901000095 ], [ -121.996284307999957, 51.957035595 ], [ -121.994838846999968, 51.95548468200014 ], [ -121.994316272999924, 51.95491468500007 ], [ -121.993790100999931, 51.95434071600004 ], [ -121.993919367999965, 51.95293601 ], [ -121.995145233999935, 51.952978756000029 ], [ -121.995401604999969, 51.953427610000084 ], [ -121.997013301999942, 51.954888892000064 ], [ -121.997557084, 51.955217902000086 ], [ -121.99794170899996, 51.955643690000088 ], [ -122.001301574999928, 51.957982998000027 ], [ -122.001285574999955, 51.958703030000095 ], [ -121.999975991, 51.95869191400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4031000", "BldgCostT": "2780000", "sL_LossRatio": "1", "sL_AssetLoss": "353", "sL_BldgLoss": "353", "sL_StrLoss": "353", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A3180FA52C8C5EC0BF6CD0D189CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.189652401999979, 51.587055155000016 ], [ -122.194028058999962, 51.587201467000042 ], [ -122.194195002999962, 51.589252539000064 ], [ -122.194142491, 51.589730369000087 ], [ -122.194100345, 51.590114134000082 ], [ -122.194062285999948, 51.590460411000073 ], [ -122.19406054199996, 51.590461701000081 ], [ -122.194061840999964, 51.591227348000089 ], [ -122.193975866999949, 51.591224475000097 ], [ -122.193968173999949, 51.591313238000076 ], [ -122.193899619000021, 51.592104235000086 ], [ -122.193387483999956, 51.592087120000024 ], [ -122.193362411999914, 51.592376348000116 ], [ -122.19186806099998, 51.592326396000047 ], [ -122.191750196000015, 51.592322455000037 ], [ -122.191746197999947, 51.592368543000042 ], [ -122.191687881999911, 51.593040987000109 ], [ -122.18915829, 51.592956383000093 ], [ -122.185915114999915, 51.592847830000011 ], [ -122.18622641199994, 51.589263477000053 ], [ -122.186981961999962, 51.589288774000096 ], [ -122.187097353999945, 51.587959694000119 ], [ -122.187941318999918, 51.587987947000052 ], [ -122.187966033999899, 51.587703215000019 ], [ -122.189591456999921, 51.587757608000075 ], [ -122.189652401999979, 51.587055155000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "69.8", "sL_BldgLoss": "69.8", "sL_StrLoss": "69.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C4CAAA00C6825EC05E870720F7034A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.040676096999945, 52.032861676000088 ], [ -122.040737641999925, 52.032186221000075 ], [ -122.040547339999961, 52.032179674000133 ], [ -122.040548406999932, 52.032167970000067 ], [ -122.040588609999986, 52.032083386000068 ], [ -122.040854182999965, 52.031735900000072 ], [ -122.0413819, 52.031255401000067 ], [ -122.042639583, 52.030514302000093 ], [ -122.042958877999965, 52.030267394000127 ], [ -122.043207179999982, 52.029981296000088 ], [ -122.043380508999959, 52.029699689000104 ], [ -122.043489010999934, 52.029310909000088 ], [ -122.043501298999942, 52.029047112000029 ], [ -122.043434912999885, 52.028765405000101 ], [ -122.043392451000031, 52.028683779000033 ], [ -122.045645556999929, 52.02876122100016 ], [ -122.045528293999936, 52.028903612000107 ], [ -122.045264786999951, 52.02971969700009 ], [ -122.045342886999933, 52.030142709000096 ], [ -122.04569672199996, 52.030578506000055 ], [ -122.045575016, 52.030856198000023 ], [ -122.044658692999931, 52.031477196000033 ], [ -122.043849108999922, 52.03184889500006 ], [ -122.043475614999963, 52.032187809000114 ], [ -122.04331628499996, 52.032952472000055 ], [ -122.040676096999945, 52.032861676000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "310.8", "sL_BldgLoss": "310.8", "sL_StrLoss": "310.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000FE8333DB4865EC0BF986F7567F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.102020591999988, 51.919287782000019 ], [ -122.102026742999925, 51.919219025000118 ], [ -122.10011622799999, 51.919154131000063 ], [ -122.100436900999952, 51.915571093000047 ], [ -122.103370706999954, 51.915670734000059 ], [ -122.103445316999952, 51.914836364000074 ], [ -122.108690190999965, 51.91501430800011 ], [ -122.108702502999961, 51.915081173000019 ], [ -122.108869601999942, 51.91554504600002 ], [ -122.108975705999967, 51.915745041000051 ], [ -122.109096761000018, 51.915973252000093 ], [ -122.109167944999939, 51.916068227000075 ], [ -122.108940377999915, 51.918616699000097 ], [ -122.107916857999953, 51.918581998000022 ], [ -122.107836184999925, 51.91948512500008 ], [ -122.102020591999988, 51.919287782000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024315", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.2", "sL_BldgLoss": "40.2", "sL_StrLoss": "40.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C37E91C865805EC067FC6FE39EFD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.006626585000021, 51.978589014000093 ], [ -122.007344456999959, 51.978613953000043 ], [ -122.007015662999947, 51.982196530000095 ], [ -122.00633974499999, 51.982173049000068 ], [ -122.006040823999953, 51.985429048000128 ], [ -122.005908141999925, 51.985424439000049 ], [ -122.005666815, 51.984416304000106 ], [ -122.005206096999984, 51.982355311000049 ], [ -122.005198037999961, 51.982201606000032 ], [ -122.005176891999952, 51.981798117000132 ], [ -122.005220110999957, 51.981327907000072 ], [ -122.005232028999984, 51.981286922000059 ], [ -122.005397279999968, 51.980718608000103 ], [ -122.005634280999928, 51.980204795000112 ], [ -122.006626585000021, 51.978589014000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024316", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "104.2", "sL_BldgLoss": "104.2", "sL_StrLoss": "104.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CEF4F4E198D5EC05E6A6370BDCB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.200795827999983, 51.592273328000012 ], [ -122.200806243000017, 51.592152948 ], [ -122.199950605999945, 51.592124406000082 ], [ -122.199989448999943, 51.591675526000103 ], [ -122.199170008999928, 51.591648185000025 ], [ -122.199204129999941, 51.591253955000099 ], [ -122.211523383999946, 51.591243429000087 ], [ -122.211495640999928, 51.591565015000064 ], [ -122.21080460899995, 51.591542028000113 ], [ -122.210789620999918, 51.591715732000097 ], [ -122.209021706000016, 51.591656904000068 ], [ -122.208997656999941, 51.591935474000074 ], [ -122.206621225999967, 51.591856354000079 ], [ -122.206568586999964, 51.592465731000097 ], [ -122.200795827999983, 51.592273328000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024318", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58.8", "sL_BldgLoss": "58.8", "sL_StrLoss": "58.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C9AB70358845EC0425DE66CE8EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.067782286999915, 51.872931121000072 ], [ -122.068553424999934, 51.87293722800004 ], [ -122.068534354999898, 51.873860267000147 ], [ -122.068497696999927, 51.875634216000073 ], [ -122.06719050299999, 51.87562386000009 ], [ -122.067246309999973, 51.87292687300009 ], [ -122.067782286999915, 51.872931121000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024319", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "0.999982807029267", "sL_AssetLoss": "164.02052", "sL_BldgLoss": "164.0177", "sL_StrLoss": "164", "sL_NStrLoss": "0.0177", "sL_ContLoss": "0.00282", "geom_point": "0101000020E610000064F45099EA8D5EC0160B8D710FCB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.218362075999934, 51.584240251000047 ], [ -122.219251499999984, 51.584269782000071 ], [ -122.218942931999948, 51.587854243000081 ], [ -122.218598040999979, 51.587842792000039 ], [ -122.218559341999963, 51.588292251000034 ], [ -122.21818689199992, 51.588279885000048 ], [ -122.21811397499998, 51.589126661000115 ], [ -122.216757891999976, 51.58908162400008 ], [ -122.216708446999959, 51.589655593000053 ], [ -122.216236086999928, 51.589639902000052 ], [ -122.216284666999968, 51.585241805000095 ], [ -122.21442139399997, 51.584109325000071 ], [ -122.218362075999934, 51.584240251000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.2", "sL_BldgLoss": "49.2", "sL_StrLoss": "49.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000072C81F6FA6895EC04021AFC5F6EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.149117917999916, 51.865941674000048 ], [ -122.154027044999935, 51.866106469000052 ], [ -122.15379361699992, 51.866331840000065 ], [ -122.153234086999944, 51.866681445000054 ], [ -122.152278769999981, 51.867125595000104 ], [ -122.148882096999941, 51.868613190000119 ], [ -122.149117917999916, 51.865941674000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000760A24EE52875EC0874005F2B2F64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.113194461999967, 51.924884914000131 ], [ -122.113757391999911, 51.92490397100002 ], [ -122.113759094999949, 51.924927207000096 ], [ -122.113920596999975, 51.925487106000077 ], [ -122.114162887999953, 51.925975904000076 ], [ -122.114370657999984, 51.926246773000109 ], [ -122.114453019999956, 51.926354099000108 ], [ -122.114779688999974, 51.926697606000111 ], [ -122.114933955999959, 51.926828121000064 ], [ -122.115247624999952, 51.927093498000048 ], [ -122.11597089199995, 51.927568993000087 ], [ -122.117690156999984, 51.928627927000015 ], [ -122.117695245999982, 51.928631061 ], [ -122.112874769000015, 51.928467956000091 ], [ -122.113194461999967, 51.924884914000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024324", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.7", "sL_BldgLoss": "49.7", "sL_StrLoss": "49.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000181EA0A0F98F5EC0E38385308AE44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.247721008999974, 51.784326989000121 ], [ -122.252177032999938, 51.784473025000082 ], [ -122.2520729299999, 51.785687258000088 ], [ -122.251097419999951, 51.785939530000057 ], [ -122.250739776999936, 51.786062446000095 ], [ -122.250498307999962, 51.786145433000122 ], [ -122.24999566299999, 51.786378738000103 ], [ -122.249579008999945, 51.786573015000066 ], [ -122.249440881999973, 51.786637423000094 ], [ -122.249185503999939, 51.786756499000028 ], [ -122.247870756999987, 51.787254294000043 ], [ -122.247804242999948, 51.787271529000044 ], [ -122.247721008999974, 51.784326989000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "369", "sL_BldgLoss": "369", "sL_StrLoss": "369", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000334D1A9B048F5EC0EE6489315DCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.231024209999973, 51.583366449000088 ], [ -122.231028780999978, 51.583313183000023 ], [ -122.230344389999914, 51.583290531000053 ], [ -122.230651995999892, 51.579706024000046 ], [ -122.230925652999957, 51.579715082000035 ], [ -122.230963109999934, 51.579278530000124 ], [ -122.233404353, 51.579359308000086 ], [ -122.233454933999951, 51.578769389000023 ], [ -122.233760996999962, 51.578779513000057 ], [ -122.23379844699997, 51.578342697000068 ], [ -122.239569518999986, 51.578533431000039 ], [ -122.239483259999986, 51.579541085000074 ], [ -122.239217975999935, 51.579579001000099 ], [ -122.239095642, 51.579596495000047 ], [ -122.238929532999961, 51.579659299000113 ], [ -122.238811522999967, 51.579703940000115 ], [ -122.23824009399999, 51.580125412000058 ], [ -122.238049312, 51.58041027900002 ], [ -122.237520911999951, 51.581561968000109 ], [ -122.238422737999954, 51.5818214600001 ], [ -122.23875232599994, 51.581916280000101 ], [ -122.239276167999918, 51.581960057000074 ], [ -122.239262646999947, 51.582117967000123 ], [ -122.238956560999952, 51.582107858 ], [ -122.238919158999977, 51.582544674000104 ], [ -122.236888435999944, 51.582477586000081 ], [ -122.23679593, 51.583557323000015 ], [ -122.231941273999922, 51.58339679700002 ], [ -122.231024209999973, 51.583366449000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "165.7", "sL_BldgLoss": "165.7", "sL_StrLoss": "165.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B562874A46815EC0752EB57354D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.016929828999963, 51.629941857000077 ], [ -122.01705133899999, 51.628603482000059 ], [ -122.016798717999947, 51.628594655000029 ], [ -122.016933441999981, 51.627110722000062 ], [ -122.017124067999944, 51.625010897000024 ], [ -122.022900304999965, 51.625212592000082 ], [ -122.022778981999963, 51.626550977000136 ], [ -122.023031592999956, 51.626559791000062 ], [ -122.022998224999981, 51.626927905000066 ], [ -122.02270671299999, 51.630143561000068 ], [ -122.016929828999963, 51.629941857000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024328", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160584", "BldgCostT": "4938334", "sL_LossRatio": "1", "sL_AssetLoss": "446.2", "sL_BldgLoss": "446.2", "sL_StrLoss": "446.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3073973B87C5EC033BF16CB5FF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.965441406999943, 51.926456780000095 ], [ -121.964691221999942, 51.926367600000034 ], [ -121.963581013999914, 51.9261479050001 ], [ -121.962502727999947, 51.925836803000088 ], [ -121.962390388999935, 51.925793543000047 ], [ -121.96182248799991, 51.925574805000096 ], [ -121.961774800999962, 51.925554396000102 ], [ -121.961041992999981, 51.925240737000053 ], [ -121.960972394999956, 51.925210942000028 ], [ -121.960007415999911, 51.924797917000092 ], [ -121.959910215999983, 51.924756305000081 ], [ -121.95911720399998, 51.924448292000093 ], [ -121.958246872999922, 51.924110240000097 ], [ -121.957788493999942, 51.923932209000064 ], [ -121.956417940999955, 51.923516772000106 ], [ -121.956003121999942, 51.923391056000092 ], [ -121.955624902999958, 51.923276406000127 ], [ -121.955032992999975, 51.923017889000072 ], [ -121.954281996999981, 51.922689892000022 ], [ -121.952019389999933, 51.921500400000063 ], [ -121.951971815999954, 51.921449410000044 ], [ -121.951803704999975, 51.921269294000062 ], [ -121.951528565, 51.92097448800007 ], [ -121.951396934999948, 51.920633749000096 ], [ -121.951279964999955, 51.92038516499999 ], [ -121.951126006, 51.919294505000025 ], [ -121.951099680999931, 51.919108290000061 ], [ -121.950822809999949, 51.917850299000087 ], [ -121.950588893999964, 51.917472395000033 ], [ -121.950532021999933, 51.917380486000134 ], [ -121.950481688999957, 51.917299215000064 ], [ -121.950151519999963, 51.917055875000052 ], [ -121.949713652999947, 51.916733183000041 ], [ -121.949565876999927, 51.91662431000006 ], [ -121.949157779, 51.916344077000105 ], [ -121.948516561999924, 51.915903752000062 ], [ -121.94677270399994, 51.914706270000053 ], [ -121.946289592000014, 51.914374497000033 ], [ -121.945522284999967, 51.913969991000023 ], [ -121.94405730899993, 51.913336800000074 ], [ -121.943851222999967, 51.913219944000019 ], [ -121.942789893999958, 51.912618110000032 ], [ -121.941365780999931, 51.911820647000091 ], [ -121.939162601999982, 51.910586848000072 ], [ -121.939151798999916, 51.910580794000047 ], [ -121.938550893999917, 51.91032166400008 ], [ -121.938173301999953, 51.910158785000093 ], [ -121.937594792, 51.909950592000023 ], [ -121.93612487899999, 51.90951144900005 ], [ -121.933116832999971, 51.908612690000083 ], [ -121.932440155999927, 51.908410528000083 ], [ -121.932326006999958, 51.908376404000101 ], [ -121.93008650199998, 51.907515184000054 ], [ -121.928462904, 51.907071211000122 ], [ -121.92494181099994, 51.906018369000058 ], [ -121.923855804999945, 51.905693594000063 ], [ -121.921415780999936, 51.905046194000079 ], [ -121.919901599999946, 51.904525106000079 ], [ -121.91832558599999, 51.903947804000019 ], [ -121.918212078999971, 51.903914925000052 ], [ -121.917205047999957, 51.903623362000125 ], [ -121.917257096999919, 51.903067743000058 ], [ -121.91728960099999, 51.903084693 ], [ -121.918484495999948, 51.903563200000086 ], [ -121.919646292999971, 51.903618791000071 ], [ -121.92058442299998, 51.903870900000079 ], [ -121.921333703999949, 51.90421840200009 ], [ -121.92173369699999, 51.904501807000024 ], [ -121.923520391999986, 51.905101396000092 ], [ -121.924227690999956, 51.905287896000111 ], [ -121.92464967799999, 51.905310701000118 ], [ -121.925339817999955, 51.905595602000091 ], [ -121.92574589500002, 51.905644006000131 ], [ -121.926757315999964, 51.905958696000027 ], [ -121.927539708999973, 51.906064092000072 ], [ -121.927822997999954, 51.9063105050001 ], [ -121.928594910999948, 51.906317603000062 ], [ -121.929255205999951, 51.906611 ], [ -121.93025099, 51.9069073040001 ], [ -121.930673105, 51.906938589000099 ], [ -121.932055693999985, 51.907508296000088 ], [ -121.933832513999917, 51.907965489000063 ], [ -121.934566798, 51.90821469400008 ], [ -121.934968087999948, 51.908469592000081 ], [ -121.936098702999942, 51.908597801000056 ], [ -121.937206583999938, 51.909093404000053 ], [ -121.938350598999932, 51.909301402000089 ], [ -121.939372216999971, 51.90973289700004 ], [ -121.940528503999928, 51.91004910700012 ], [ -121.941545115999972, 51.91067 ], [ -121.94259659799998, 51.911145691000101 ], [ -121.943469386999965, 51.911711111000066 ], [ -121.944138801999912, 51.91232070900007 ], [ -121.944886496999942, 51.912632588000079 ], [ -121.947122500999953, 51.913380297000046 ], [ -121.948050596999963, 51.913542699000111 ], [ -121.948533184000027, 51.913376005000039 ], [ -121.94869067799999, 51.913467196000063 ], [ -121.949154410999967, 51.914217689000075 ], [ -121.949254515999911, 51.9148827940001 ], [ -121.94938390599998, 51.915001010000047 ], [ -121.949930608999935, 51.915186199000104 ], [ -121.950357297, 51.915594901000055 ], [ -121.950945824999948, 51.915959502000057 ], [ -121.952280586999947, 51.917284104000032 ], [ -121.952884905999952, 51.918215491000105 ], [ -121.953348410999979, 51.919532886000056 ], [ -121.953758717999932, 51.920021404000089 ], [ -121.95463120099997, 51.920640902000088 ], [ -121.956461001999955, 51.921402888000081 ], [ -121.957506988999953, 51.92209651200006 ], [ -121.958281308999915, 51.922516588000065 ], [ -121.959496976999972, 51.922742996000068 ], [ -121.960291796999954, 51.922983704000053 ], [ -121.961945093999972, 51.923870992000069 ], [ -121.963420504999988, 51.924117412000065 ], [ -121.964272811999976, 51.924385208000061 ], [ -121.966036298999924, 51.924905007000071 ], [ -121.967301100999919, 51.925481810000079 ], [ -121.969810266999943, 51.926071708000151 ], [ -121.969763133999919, 51.926581152000033 ], [ -121.969730397999982, 51.926578692000099 ], [ -121.96806335899997, 51.926545293000096 ], [ -121.967190911, 51.926527806000117 ], [ -121.966333593999963, 51.926510591000081 ], [ -121.96621762699999, 51.926503608000118 ], [ -121.965441406999943, 51.926456780000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024335", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "24745417", "BldgCostT": "15591667", "sL_LossRatio": "1", "sL_AssetLoss": "1305", "sL_BldgLoss": "1305", "sL_StrLoss": "1305", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D4A6010248D5EC09BBC75BC51CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.194062285999948, 51.590460411000073 ], [ -122.194100345, 51.590114134000082 ], [ -122.194142491, 51.589730369000087 ], [ -122.194195002999962, 51.589252539000064 ], [ -122.194028058999962, 51.587201467000042 ], [ -122.194412103999966, 51.587214301000095 ], [ -122.194455916999928, 51.586708669000117 ], [ -122.194886476999983, 51.586723056000032 ], [ -122.194980959999981, 51.585632480000051 ], [ -122.195532672999917, 51.585650912000077 ], [ -122.19557566499995, 51.585154593000098 ], [ -122.201347464999955, 51.585347262 ], [ -122.201132014999956, 51.58783820000005 ], [ -122.204631727999981, 51.587954880000019 ], [ -122.204719861999976, 51.586935015000023 ], [ -122.208244951999944, 51.587052433000018 ], [ -122.20826541699995, 51.586815400000056 ], [ -122.209677581999983, 51.586862407000119 ], [ -122.209714576999914, 51.586433734000082 ], [ -122.210362733999929, 51.586455304 ], [ -122.210388866999978, 51.586152449000046 ], [ -122.211219297999904, 51.586180079000016 ], [ -122.211245246999965, 51.585879269000031 ], [ -122.211925818999958, 51.585901909000043 ], [ -122.211928991999969, 51.585929398000069 ], [ -122.211962048999908, 51.585903114000125 ], [ -122.212034460999931, 51.585905523000093 ], [ -122.212040014999928, 51.58584112400009 ], [ -122.212175002999956, 51.585733793000088 ], [ -122.212648742999932, 51.585515971000106 ], [ -122.213543993999977, 51.585104314000056 ], [ -122.213912301999954, 51.584594410000086 ], [ -122.214130034999968, 51.584099639000101 ], [ -122.21442139399997, 51.584109325000071 ], [ -122.216284666999968, 51.585241805000095 ], [ -122.216236086999928, 51.589639902000052 ], [ -122.215877946999939, 51.589628003 ], [ -122.215852026999968, 51.589928813000071 ], [ -122.215203815999971, 51.589907275000058 ], [ -122.21517771500001, 51.590210129000077 ], [ -122.213765435999903, 51.590163190000105 ], [ -122.213728475999915, 51.590591863000057 ], [ -122.213339872999924, 51.59057894400005 ], [ -122.213295489999922, 51.591093673000032 ], [ -122.211541335999968, 51.591035340000118 ], [ -122.211523383999946, 51.591243429000087 ], [ -122.199204129999941, 51.591253955000099 ], [ -122.199272475999962, 51.590464262000076 ], [ -122.196154178999905, 51.590360162000103 ], [ -122.195349042999965, 51.59033327 ], [ -122.195222074999947, 51.590329029000102 ], [ -122.195178227999946, 51.590835115000075 ], [ -122.195141663999948, 51.591257133000042 ], [ -122.194957532, 51.591257274000107 ], [ -122.194110995999935, 51.591228990000083 ], [ -122.194061840999964, 51.591227348000089 ], [ -122.19406054199996, 51.590461701000081 ], [ -122.194062285999948, 51.590460411000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024336", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "358", "sL_BldgLoss": "358", "sL_StrLoss": "358", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F13790E4288E5EC080A82CF11DE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.223787488999946, 51.791252842000077 ], [ -122.223792119, 51.790983129000018 ], [ -122.22294125399999, 51.790977508000019 ], [ -122.221617455999976, 51.79096875200004 ], [ -122.221622097999898, 51.790699039000067 ], [ -122.219882377999966, 51.790687508000126 ], [ -122.219887031999988, 51.790417795000046 ], [ -122.219452104999959, 51.790414908000102 ], [ -122.219456545999904, 51.790157584000028 ], [ -122.219456759999943, 51.790145194000054 ], [ -122.219376747999959, 51.790144663000056 ], [ -122.21858691199995, 51.790139417000034 ], [ -122.218588668999985, 51.790037763000043 ], [ -122.21859157199999, 51.789869704000047 ], [ -122.21772173, 51.78986392000008 ], [ -122.217726395999946, 51.789594207000057 ], [ -122.217291475999957, 51.789591313000074 ], [ -122.21730458899998, 51.788833898000071 ], [ -122.217310149999946, 51.788512459000096 ], [ -122.21861487699999, 51.78852113700006 ], [ -122.21861021699999, 51.788790850000105 ], [ -122.22034986099996, 51.788802399000126 ], [ -122.220345212000026, 51.789072113000067 ], [ -122.221649954999947, 51.789080758000097 ], [ -122.221645311999964, 51.789350471 ], [ -122.222080228999943, 51.789353349000116 ], [ -122.222075588999971, 51.789623063000093 ], [ -122.222510508999974, 51.789625940000064 ], [ -122.222505870999896, 51.789895653000144 ], [ -122.22337571599999, 51.789901402000083 ], [ -122.223371082999961, 51.790171115000106 ], [ -122.22467586, 51.79017972700013 ], [ -122.22467123499996, 51.79044944000006 ], [ -122.225976017999955, 51.790458037000057 ], [ -122.225962165999988, 51.791267178000055 ], [ -122.225709017999989, 51.791265512000059 ], [ -122.223787488999946, 51.791252842000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024337", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53233250", "BldgCostT": "36185000", "sL_LossRatio": "1", "sL_AssetLoss": "4276.5", "sL_BldgLoss": "4276.5", "sL_StrLoss": "4276.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A998D6E80D8F5EC0D2A4EBF4C9E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.230303866999975, 51.791745788000114 ], [ -122.230304965999963, 51.791681350000012 ], [ -122.230178805999927, 51.791677195000076 ], [ -122.230224530999934, 51.791147057000067 ], [ -122.228640086999974, 51.791094854000072 ], [ -122.22864200099994, 51.791072678000099 ], [ -122.227699954999977, 51.79104162900007 ], [ -122.227765687999948, 51.790280009000099 ], [ -122.227338295999942, 51.790265921000078 ], [ -122.227483831999933, 51.788579744000089 ], [ -122.227313066999955, 51.78857862200006 ], [ -122.227316448999929, 51.788380590000074 ], [ -122.226576797999925, 51.788356204000095 ], [ -122.226581299999935, 51.788304067000063 ], [ -122.224708229999948, 51.788291731000122 ], [ -122.224712853999932, 51.788022017000067 ], [ -122.223843044999953, 51.788016278000086 ], [ -122.223848300999933, 51.787710057000034 ], [ -122.222978892999905, 51.787681365 ], [ -122.222977872999962, 51.787740819000135 ], [ -122.222176445999978, 51.787735520000091 ], [ -122.22123826499994, 51.787729310000032 ], [ -122.221252198999977, 51.786920169000076 ], [ -122.222792504999973, 51.786930360000049 ], [ -122.22287476799994, 51.786930904000073 ], [ -122.222952349999971, 51.786033044000064 ], [ -122.22303180499992, 51.785113494000043 ], [ -122.223224647999956, 51.78507328500006 ], [ -122.224787383999953, 51.785039479000041 ], [ -122.238818412999976, 51.784056724000081 ], [ -122.238885521999961, 51.784052006000067 ], [ -122.238946153999947, 51.784047762000057 ], [ -122.239633111999979, 51.784035023000108 ], [ -122.239629822, 51.784073270000057 ], [ -122.242176892, 51.784089715000029 ], [ -122.242170555999948, 51.784467826000068 ], [ -122.242163332999937, 51.784898861000016 ], [ -122.242598209999983, 51.784901662000038 ], [ -122.242597090999936, 51.784968478000103 ], [ -122.244677983999949, 51.78503678800012 ], [ -122.244700187999953, 51.784778324000101 ], [ -122.24633161499996, 51.784831854000046 ], [ -122.246377716999973, 51.784294960000096 ], [ -122.246744350999961, 51.784346737000106 ], [ -122.247245505999942, 51.784311394000078 ], [ -122.247721008999974, 51.784326989000121 ], [ -122.247804242999948, 51.787271529000044 ], [ -122.243194864999978, 51.789855695000021 ], [ -122.242896372999908, 51.789845895000042 ], [ -122.242886790999989, 51.789957358000095 ], [ -122.241448261999949, 51.790062955000053 ], [ -122.23545130799998, 51.790162198000061 ], [ -122.235343711999974, 51.791847210000078 ], [ -122.232043947999912, 51.791738617000043 ], [ -122.232042112999949, 51.791846534000065 ], [ -122.230302346999963, 51.791835159000101 ], [ -122.230303866999975, 51.791745788000114 ] ], [ [ -122.240858354999915, 51.784911370000032 ], [ -122.24085870499998, 51.784890444000062 ], [ -122.240065473999934, 51.78488531900004 ], [ -122.240858354999915, 51.784911370000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024338", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4241250", "BldgCostT": "2925000", "sL_LossRatio": "1", "sL_AssetLoss": "474.4", "sL_BldgLoss": "474.4", "sL_StrLoss": "474.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000004E2B719958D5EC042B83CB5FEE44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.212928207999965, 51.790371418000021 ], [ -122.212932902999952, 51.790101705000048 ], [ -122.211193210999951, 51.790090047000021 ], [ -122.211197915999932, 51.789820334000062 ], [ -122.208588393, 51.789802798000046 ], [ -122.20860255599996, 51.788993660000102 ], [ -122.208756692999884, 51.788994697000142 ], [ -122.209037466999973, 51.788996587000042 ], [ -122.209042184999944, 51.788726874000126 ], [ -122.210346913999942, 51.788735643000059 ], [ -122.210358994, 51.788043838000071 ], [ -122.210361042999963, 51.787926505000037 ], [ -122.210795945999934, 51.787929425000087 ], [ -122.21080065299995, 51.787659712000121 ], [ -122.213410052999976, 51.787677198000068 ], [ -122.213405360999943, 51.787946912000031 ], [ -122.214275166, 51.787952728000015 ], [ -122.214270478999978, 51.788222441000052 ], [ -122.214705384999945, 51.788225346000026 ], [ -122.214700701999959, 51.788495059000063 ], [ -122.21504756299997, 51.788497375000134 ], [ -122.21513561099998, 51.788497963000033 ], [ -122.215129092999987, 51.788873452000054 ], [ -122.215112797999964, 51.789812192000056 ], [ -122.215112201999943, 51.789846529000073 ], [ -122.214677279999961, 51.78984362500006 ], [ -122.214672596999918, 51.790113338000054 ], [ -122.214237672999943, 51.790110432000063 ], [ -122.214232984999967, 51.79038014500005 ], [ -122.212928207999965, 51.790371418000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024342", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9176083", "BldgCostT": "6328333", "sL_LossRatio": "1", "sL_AssetLoss": "517.4", "sL_BldgLoss": "517.4", "sL_StrLoss": "517.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F5E74FD9F8735EC02411B7968BFC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.805779569999984, 51.974370863000082 ], [ -121.806106000999989, 51.970984463000036 ], [ -121.807246713999973, 51.97102609100007 ], [ -121.807343207999963, 51.970024691000091 ], [ -121.807579747999952, 51.970033322000084 ], [ -121.807624523999948, 51.969568597000055 ], [ -121.808806597999975, 51.969611720000032 ], [ -121.808828481999939, 51.969384525000123 ], [ -121.810095859999976, 51.96943074600005 ], [ -121.81011743799999, 51.969206656000075 ], [ -121.810643673999891, 51.969225844000078 ], [ -121.810654934999945, 51.968800471000094 ], [ -121.811964731, 51.968813693000136 ], [ -121.811957598999982, 51.96908336500011 ], [ -121.812394199999957, 51.969087770000023 ], [ -121.812388867999914, 51.969289460000041 ], [ -121.815938322999926, 51.969418762000053 ], [ -121.815873832999969, 51.970089424000079 ], [ -121.821191179999957, 51.97028292300007 ], [ -121.821189012, 51.970305498000059 ], [ -121.822135047999964, 51.970339898000063 ], [ -121.821791083999983, 51.973921959000094 ], [ -121.820288687999934, 51.973867325000079 ], [ -121.820194070999889, 51.974852196000043 ], [ -121.814372439999957, 51.974640305 ], [ -121.814379126999967, 51.974570788000101 ], [ -121.811612022999952, 51.974469970000094 ], [ -121.811582292999944, 51.974778801000063 ], [ -121.808814011999957, 51.974677873000061 ], [ -121.808575017999942, 51.977158656000015 ], [ -121.80848776499991, 51.978064268000011 ], [ -121.802665759999968, 51.977851787000077 ], [ -121.803011328999958, 51.974269795000041 ], [ -121.804944770999953, 51.974340391000055 ], [ -121.805779569999984, 51.974370863000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024343", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "83.6", "sL_BldgLoss": "83.6", "sL_StrLoss": "83.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002C9908C024615EC0E6EBAEC383E94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.515955612999946, 51.825050515000044 ], [ -121.515966125999938, 51.824948156000048 ], [ -121.515270194999957, 51.824920897000041 ], [ -121.515482201999973, 51.822857089000088 ], [ -121.516715328999979, 51.823139200000057 ], [ -121.517648799999918, 51.823405007000112 ], [ -121.519346492999929, 51.82401185800007 ], [ -121.521433492999904, 51.824757793000082 ], [ -121.521792176, 51.82492316600009 ], [ -121.521755823999982, 51.825277534000115 ], [ -121.515955612999946, 51.825050515000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024344", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.9", "sL_BldgLoss": "46.9", "sL_StrLoss": "46.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009226BDF3345C5EC03BA17CE6D1F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.43859112799997, 51.919241297000021 ], [ -121.442062186000015, 51.919379231000114 ], [ -121.44172148, 51.922634752000079 ], [ -121.441712929999966, 51.922627180000049 ], [ -121.440896114999987, 51.921903882000038 ], [ -121.439992901, 51.921104077000081 ], [ -121.43919814399996, 51.9200479470001 ], [ -121.438781466999927, 51.919494246000077 ], [ -121.43859112799997, 51.919241297000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "26703416", "BldgCostT": "18206666", "sL_LossRatio": "0.997641246000302", "sL_AssetLoss": "1521.99", "sL_BldgLoss": "1518.4", "sL_StrLoss": "1517.1", "sL_NStrLoss": "1.3", "sL_ContLoss": "3.59", "geom_point": "0101000020E6100000E7D1E8691B645EC0D159C93BC5EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.573961857999976, 51.853142833000042 ], [ -121.574089237999914, 51.851887200000114 ], [ -121.572026177999987, 51.851807482000034 ], [ -121.572055662999929, 51.851516951000072 ], [ -121.570738852999938, 51.851466049000109 ], [ -121.570761878999946, 51.851239241000087 ], [ -121.569944239999984, 51.851207627000115 ], [ -121.569972219999968, 51.850932070000098 ], [ -121.569179331999948, 51.850901407000045 ], [ -121.569234442999971, 51.850358732000068 ], [ -121.568002427999943, 51.850311077000107 ], [ -121.568114785999938, 51.849204974000074 ], [ -121.56609523799996, 51.849126827000106 ], [ -121.566171042999926, 51.848380866000049 ], [ -121.564999053999912, 51.848335499000058 ], [ -121.565044103999952, 51.847892283000114 ], [ -121.564390663000012, 51.84786698300006 ], [ -121.564451143999932, 51.847272038000028 ], [ -121.563571174999936, 51.847237962000065 ], [ -121.563622274999915, 51.846735378000076 ], [ -121.562836484999977, 51.846704943000091 ], [ -121.562896453999954, 51.846115212000022 ], [ -121.561905393999936, 51.84607681900011 ], [ -121.561948446999978, 51.845653529000096 ], [ -121.561328402999948, 51.845629504000044 ], [ -121.561425685999922, 51.844673138000054 ], [ -121.559829217999933, 51.844611266000079 ], [ -121.559888115999982, 51.844032432000041 ], [ -121.559021728999966, 51.843998844000048 ], [ -121.559108960999978, 51.84314169600006 ], [ -121.55771164199993, 51.843087512000047 ], [ -121.557746790999971, 51.842742238000049 ], [ -121.556631628999966, 51.842698982000087 ], [ -121.556674279999953, 51.842280113000136 ], [ -121.556420751999951, 51.842270277000132 ], [ -121.556442868999952, 51.84205306900008 ], [ -121.555880846999941, 51.842031264000092 ], [ -121.555908203999962, 51.841762634000133 ], [ -121.555220443999957, 51.841735947000082 ], [ -121.555279534999983, 51.841155782000108 ], [ -121.553752330999913, 51.84109650700001 ], [ -121.554006208999951, 51.838604587000091 ], [ -121.55324935099992, 51.838595279000103 ], [ -121.553266639999919, 51.838055978000071 ], [ -121.552831352999988, 51.838050624000104 ], [ -121.55284, 51.8377809730001 ], [ -121.551969429999971, 51.837770257000074 ], [ -121.55198673299995, 51.837230957000038 ], [ -121.551116174999933, 51.837220235000046 ], [ -121.551124830999953, 51.836950585000103 ], [ -121.55068955599999, 51.836945222000033 ], [ -121.550731572999965, 51.835636678000114 ], [ -121.55073284799991, 51.835596973000072 ], [ -121.550681333999989, 51.835596338000094 ], [ -121.548121270999928, 51.835564761000093 ], [ -121.548156498999958, 51.834469537000153 ], [ -121.54258518599994, 51.83425281800001 ], [ -121.542626917999883, 51.833844178000049 ], [ -121.541771985999972, 51.833810897000056 ], [ -121.542013853999919, 51.831442849000048 ], [ -121.541287803999978, 51.831433846000017 ], [ -121.54132857899998, 51.830171962000108 ], [ -121.543152616999919, 51.831013366000022 ], [ -121.544585347999913, 51.831674199000055 ], [ -121.545513488999973, 51.832102301000127 ], [ -121.545610600999964, 51.832007198000042 ], [ -121.546157497999971, 51.831970096000077 ], [ -121.547007783999931, 51.831956396000088 ], [ -121.547268009999954, 51.831931498000081 ], [ -121.547869012999982, 51.831820891000092 ], [ -121.549004675999981, 51.831846595000066 ], [ -121.549252016999958, 51.831852201000132 ], [ -121.550191098999974, 51.8320100030001 ], [ -121.551028765999916, 51.832004274000056 ], [ -121.55229510499997, 51.831995604000028 ], [ -121.552765401, 51.831924807000057 ], [ -121.555098877999953, 51.831243196000102 ], [ -121.555375003, 51.831105609000076 ], [ -121.555615884999938, 51.83088479900006 ], [ -121.555883496999968, 51.830759512000064 ], [ -121.556421993999962, 51.830718404000066 ], [ -121.558359917999908, 51.830704503000099 ], [ -121.558951113999953, 51.83076160100012 ], [ -121.559310300999982, 51.830880713000084 ], [ -121.560276986999924, 51.831367706000059 ], [ -121.56049678399998, 51.831569498000128 ], [ -121.560609895999974, 51.831788713000094 ], [ -121.560658006999972, 51.832317388000092 ], [ -121.560695082999985, 51.834772998000069 ], [ -121.562508097999952, 51.835660388000086 ], [ -121.562704009999919, 51.835781196000084 ], [ -121.562890674999906, 51.836093207000033 ], [ -121.563081492999942, 51.838972798000036 ], [ -121.563796734999968, 51.838976885000079 ], [ -121.563871811999974, 51.838977292000067 ], [ -121.564676822999928, 51.83894785100005 ], [ -121.56637860499994, 51.838885603000072 ], [ -121.568833491999968, 51.838832309000097 ], [ -121.569048913999907, 51.838862202000016 ], [ -121.569202409999932, 51.838927381000083 ], [ -121.569552782999949, 51.839219707 ], [ -121.570067662999989, 51.839433204000137 ], [ -121.570222206999944, 51.839497301000058 ], [ -121.570435968, 51.839621655000045 ], [ -121.57060038500002, 51.839717297000064 ], [ -121.570677405999945, 51.839762088000036 ], [ -121.571297442999949, 51.840239919000076 ], [ -121.572273876999972, 51.840992401000051 ], [ -121.572466374999962, 51.84120479700006 ], [ -121.572556416999959, 51.841365588000059 ], [ -121.572528589999934, 51.841568597000112 ], [ -121.572393198999947, 51.841725197000059 ], [ -121.572103002999967, 51.841916203000032 ], [ -121.571335797999936, 51.842300110000046 ], [ -121.571049616999943, 51.842480502000107 ], [ -121.570866084999977, 51.842695389000056 ], [ -121.570765604999963, 51.842992781000042 ], [ -121.570674507999939, 51.843262405000111 ], [ -121.570522392999948, 51.84397210700007 ], [ -121.570542015999976, 51.844238091000129 ], [ -121.570699404999985, 51.844495797000057 ], [ -121.570953500999948, 51.844747501000121 ], [ -121.57142569399997, 51.844973392000057 ], [ -121.571735394999962, 51.845051003000066 ], [ -121.572513590999947, 51.845333697000036 ], [ -121.572727298999936, 51.845495612000036 ], [ -121.572761, 51.845534415000017 ], [ -121.572899384999971, 51.845693796000049 ], [ -121.573452599999911, 51.846557498000067 ], [ -121.573743091999944, 51.846752985000137 ], [ -121.575119178999941, 51.847358999000043 ], [ -121.575602486999955, 51.847620288000037 ], [ -121.574568104999969, 51.849432210000046 ], [ -121.574531492999938, 51.849501427000042 ], [ -121.574472577999956, 51.84961279100002 ], [ -121.575480380999977, 51.849844100000098 ], [ -121.576261496999962, 51.849955999000102 ], [ -121.57636966499993, 51.849964747000094 ], [ -121.577219421999928, 51.850033501000034 ], [ -121.577994421999918, 51.850038499000071 ], [ -121.577834253999967, 51.85039125300009 ], [ -121.580550881999955, 51.850425319000131 ], [ -121.580278135999961, 51.849926785000072 ], [ -121.581479001999952, 51.84985630900006 ], [ -121.581761810999936, 51.84983928700003 ], [ -121.582255708999966, 51.849809810000139 ], [ -121.584189177999946, 51.849696025000085 ], [ -121.585341512999904, 51.84962819800004 ], [ -121.585472365999962, 51.849620495000046 ], [ -121.585781313999959, 51.849602326000053 ], [ -121.587002989999988, 51.849525567000065 ], [ -121.587261073999954, 51.849509341000036 ], [ -121.587714866999988, 51.849480831000022 ], [ -121.588767079999911, 51.849417980000105 ], [ -121.589592394999912, 51.84932020300004 ], [ -121.589860966999964, 51.849288400000042 ], [ -121.590641512000033, 51.849146989000054 ], [ -121.590458015999943, 51.850962662000072 ], [ -121.589497924999947, 51.850925704000097 ], [ -121.589490375999944, 51.851000384000095 ], [ -121.589149953999978, 51.850987278000069 ], [ -121.589077900999911, 51.851699993000103 ], [ -121.583273832999978, 51.851476386000087 ], [ -121.583344498999935, 51.850778330000082 ], [ -121.582479236999944, 51.850744969000075 ], [ -121.582468391999939, 51.851090075000101 ], [ -121.582903811999984, 51.851095321000109 ], [ -121.58286145699999, 51.852443587000025 ], [ -121.581808872999915, 51.85243089900009 ], [ -121.581719181000025, 51.853316566000096 ], [ -121.579778781999963, 51.853241720000049 ], [ -121.579766098999968, 51.853366911000109 ], [ -121.573961857999976, 51.853142833000042 ] ], [ [ -121.569018087999893, 51.841856817000043 ], [ -121.569025392999976, 51.841784875 ], [ -121.568584153999936, 51.841767805000131 ], [ -121.568623513999924, 51.841380207000036 ], [ -121.568082963999984, 51.841359292000064 ], [ -121.56811853399995, 51.841009046000053 ], [ -121.567493966999947, 51.840984877000032 ], [ -121.56752663799989, 51.840663216000081 ], [ -121.56687666699996, 51.840638061000035 ], [ -121.566908562999942, 51.840324077000098 ], [ -121.566298069999945, 51.840300446000072 ], [ -121.566388098999965, 51.839414281000117 ], [ -121.564347476999927, 51.839335269000095 ], [ -121.56421847899999, 51.840604431000017 ], [ -121.565188686999988, 51.840642001000028 ], [ -121.565129863999914, 51.841220839000073 ], [ -121.565996199999987, 51.841254380000073 ], [ -121.565899024999936, 51.842210753000046 ], [ -121.567495413999893, 51.842272542000082 ], [ -121.567452417999974, 51.842695836000097 ], [ -121.568072424999968, 51.842719827000074 ], [ -121.568012528999972, 51.84330956200003 ], [ -121.568217939999926, 51.843317510000126 ], [ -121.568368831999976, 51.841831698000135 ], [ -121.569018087999893, 51.841856817000043 ] ], [ [ -121.554572364999956, 51.837532520000103 ], [ -121.555460339999925, 51.837543431000014 ], [ -121.555503491999957, 51.836195179000086 ], [ -121.554632951999949, 51.836184483000075 ], [ -121.554658855999946, 51.835375532000114 ], [ -121.555529379999953, 51.835386227000065 ], [ -121.55553800899996, 51.835116576000118 ], [ -121.555973267999931, 51.835121921000024 ], [ -121.555990521999931, 51.834582620000106 ], [ -121.555555267999949, 51.834577275000036 ], [ -121.55556389799996, 51.834307624000097 ], [ -121.553822889999978, 51.834286228000074 ], [ -121.553831529999954, 51.834016578000075 ], [ -121.553396280999962, 51.834011225000026 ], [ -121.553404923999906, 51.833741574000044 ], [ -121.552969677999968, 51.833736219000066 ], [ -121.552978321999959, 51.833466570000091 ], [ -121.552543078999946, 51.833461213000113 ], [ -121.552548422999919, 51.833294565000081 ], [ -121.550992979999933, 51.833234145000063 ], [ -121.551008047999957, 51.833086327000075 ], [ -121.550378829999957, 51.833061879000063 ], [ -121.550349546999939, 51.833973708000094 ], [ -121.549914298999965, 51.833968342000084 ], [ -121.54990563699999, 51.834237992000105 ], [ -121.550776136999986, 51.834248722000027 ], [ -121.55075882099996, 51.834788022000069 ], [ -121.55119407699999, 51.834793386000101 ], [ -121.551176764999951, 51.835332686000122 ], [ -121.552047288999987, 51.835343407000011 ], [ -121.552038637999914, 51.835613057000089 ], [ -121.552909164999946, 51.835623772000119 ], [ -121.552874582999962, 51.836702373000044 ], [ -121.553309858999938, 51.836707727000075 ], [ -121.553301215999966, 51.836977378000086 ], [ -121.553736489999935, 51.836982732000131 ], [ -121.553727849999987, 51.837252381000091 ], [ -121.554163129999921, 51.837257734000076 ], [ -121.554154845999975, 51.837516313000044 ], [ -121.554572364999956, 51.837532520000103 ] ], [ [ -121.556027405999956, 51.833429626000097 ], [ -121.556025027999979, 51.833504018000063 ], [ -121.556460269999931, 51.833509361000054 ], [ -121.556451646999946, 51.833779011000075 ], [ -121.556886893999931, 51.833784353000055 ], [ -121.55687827399997, 51.834054004000087 ], [ -121.55697739499999, 51.834055221000035 ], [ -121.557018468999928, 51.833651728000099 ], [ -121.556899278999964, 51.833647103000082 ], [ -121.556973799999938, 51.832915026000116 ], [ -121.556850360999988, 51.832910236000131 ], [ -121.55679446000002, 51.833459391000119 ], [ -121.556027405999956, 51.833429626000097 ] ], [ [ -121.558092389999956, 51.836938482000029 ], [ -121.558080654999955, 51.83730582900003 ], [ -121.558515934999932, 51.837311165000067 ], [ -121.558503993999977, 51.837685061000066 ], [ -121.558689502, 51.837692254000068 ], [ -121.558737764999947, 51.837217986000027 ], [ -121.558470986999936, 51.837207640000059 ], [ -121.558496781999949, 51.836954166000062 ], [ -121.558092389999956, 51.836938482000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "121", "sL_BldgLoss": "121", "sL_StrLoss": "121", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002864E76D6C5F5EC0694393FE3DE94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.489424443999923, 51.824355003000029 ], [ -121.489706457, 51.821625387000083 ], [ -121.485944613999919, 51.821477114000068 ], [ -121.486227248999924, 51.818743418000075 ], [ -121.488006408999979, 51.819604652000088 ], [ -121.488225939999964, 51.819710916000069 ], [ -121.489266247999979, 51.820214462000138 ], [ -121.490493409999956, 51.820808409000115 ], [ -121.491873878999982, 51.821255694000044 ], [ -121.49280600099992, 51.821463207000122 ], [ -121.493932163999929, 51.821632012000109 ], [ -121.495319089999938, 51.821839907000047 ], [ -121.49550499899999, 51.821864195000089 ], [ -121.495224423999943, 51.824583364000098 ], [ -121.489424443999923, 51.824355003000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024348", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "18134750", "BldgCostT": "12035000", "sL_LossRatio": "1", "sL_AssetLoss": "1062.3", "sL_BldgLoss": "1062.3", "sL_StrLoss": "1062.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B778BAEB93685EC01B4AED45B4ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.640747591999911, 51.86496441000007 ], [ -121.64080182399999, 51.864421771000089 ], [ -121.639569188999943, 51.864374879000103 ], [ -121.639708635999952, 51.862979941000098 ], [ -121.639375780999927, 51.862967276000091 ], [ -121.639441579000021, 51.862309083000099 ], [ -121.637616663999907, 51.862239630000055 ], [ -121.637778940999965, 51.860616949000146 ], [ -121.637518374999985, 51.860607029000121 ], [ -121.637781139999944, 51.857979429000068 ], [ -121.6343313469999, 51.857848048000101 ], [ -121.634438813999921, 51.856774171000069 ], [ -121.62927754299993, 51.856577414000057 ], [ -121.629371254999981, 51.855642029000144 ], [ -121.625456920999923, 51.855492652000116 ], [ -121.625444013999982, 51.85591620499999 ], [ -121.624137594, 51.855900931000029 ], [ -121.624145820999956, 51.855631274000061 ], [ -121.623710349999953, 51.855626180000066 ], [ -121.623735034999939, 51.854817207000096 ], [ -121.624604453999936, 51.85482737700007 ], [ -121.624606616999955, 51.854805817000027 ], [ -121.624614182999949, 51.854557736000061 ], [ -121.624178721999954, 51.854552644000087 ], [ -121.62421776, 51.853272744000016 ], [ -121.623959371999945, 51.853262876000066 ], [ -121.624045068999948, 51.852408474000129 ], [ -121.623404834, 51.852384019000056 ], [ -121.62338325099995, 51.852599178000105 ], [ -121.61774413299996, 51.852383627000094 ], [ -121.617578889999947, 51.852377306000044 ], [ -121.617586996999961, 51.852296593000055 ], [ -121.615968236999919, 51.852234663000033 ], [ -121.616122075999968, 51.850703625000101 ], [ -121.616021247, 51.850699767000037 ], [ -121.616034016999919, 51.850572677000038 ], [ -121.615382633999943, 51.850547750000089 ], [ -121.615400021999974, 51.850374707000078 ], [ -121.614891327999914, 51.850355237000059 ], [ -121.614909897999937, 51.850170460000072 ], [ -121.61434202199996, 51.850148722000021 ], [ -121.614344192, 51.850127131000058 ], [ -121.61289077099994, 51.850071483000114 ], [ -121.612923865999903, 51.849742351000081 ], [ -121.612613783999933, 51.849730477000087 ], [ -121.61276624199995, 51.848214256000084 ], [ -121.611741317999957, 51.848202163000082 ], [ -121.61176621099996, 51.84739319400007 ], [ -121.611965632999926, 51.847395548000101 ], [ -121.611969796999972, 51.847396606000068 ], [ -121.612901805999968, 51.847687571000044 ], [ -121.614961480999938, 51.848485526000026 ], [ -121.615453315999972, 51.848676076000025 ], [ -121.615634952999955, 51.848739017000085 ], [ -121.616511775000021, 51.849042875000073 ], [ -121.616810914, 51.849131017000069 ], [ -121.617325228, 51.849282534000096 ], [ -121.617504147999938, 51.848921389000054 ], [ -121.617607108999977, 51.848713649000061 ], [ -121.617854700999928, 51.848213885000078 ], [ -121.617990689999942, 51.848221313000082 ], [ -121.618459508999976, 51.848594410000011 ], [ -121.620485080999956, 51.849293702000125 ], [ -121.62135209399996, 51.849879106000046 ], [ -121.621975516999939, 51.849894695000074 ], [ -121.622608495999941, 51.849668308000084 ], [ -121.623088597999967, 51.849611291000073 ], [ -121.623823803000022, 51.850257897000049 ], [ -121.62431057699996, 51.850515692000087 ], [ -121.626483598, 51.851125287000023 ], [ -121.628464597999979, 51.851391599000067 ], [ -121.630088692999976, 51.851949899000033 ], [ -121.630046213999947, 51.85240849100007 ], [ -121.630294586999923, 51.852788701000094 ], [ -121.631307389999961, 51.853421101000052 ], [ -121.633105904, 51.854908003000077 ], [ -121.634451010999967, 51.855570192000066 ], [ -121.635077113999927, 51.855981789000154 ], [ -121.635394008999953, 51.856031711000057 ], [ -121.635616988999956, 51.855899191000084 ], [ -121.635909005999949, 51.855874990000075 ], [ -121.637645391999953, 51.856038797000046 ], [ -121.638353219999956, 51.856668298000081 ], [ -121.639838976999954, 51.856973092000054 ], [ -121.642500914999957, 51.858234904000042 ], [ -121.643767526, 51.859113605000111 ], [ -121.644054700999988, 51.85921478900007 ], [ -121.644533114999902, 51.859256100000039 ], [ -121.645520309999981, 51.8592944970001 ], [ -121.645735986999981, 51.859387108000057 ], [ -121.647494216999931, 51.860765696000058 ], [ -121.648568907999973, 51.861218598000036 ], [ -121.649566916999945, 51.861841004000098 ], [ -121.65048522499994, 51.862211299000094 ], [ -121.651083311999969, 51.862641405000041 ], [ -121.65209940599999, 51.863174106000081 ], [ -121.652833705999981, 51.863345008000096 ], [ -121.65303100299991, 51.863580006000099 ], [ -121.653758114, 51.863984388000077 ], [ -121.653899106999958, 51.863973222000055 ], [ -121.653815437999967, 51.864812935000046 ], [ -121.652141140999944, 51.864749429000014 ], [ -121.648009298999938, 51.864592605000048 ], [ -121.648122067999921, 51.863462355000095 ], [ -121.64787051799999, 51.863459463000019 ], [ -121.647878603, 51.863189804000051 ], [ -121.64675417899997, 51.863176874000047 ], [ -121.646553743999959, 51.865185107000094 ], [ -121.640747591999911, 51.86496441000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "84.2", "sL_BldgLoss": "84.2", "sL_StrLoss": "84.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD565B14AA715EC08B42812DE5F74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.773271502999933, 51.934783422000145 ], [ -121.779087612999916, 51.934997400000071 ], [ -121.778740389999939, 51.938579442000083 ], [ -121.772923803999944, 51.938365447000137 ], [ -121.773271502999933, 51.934783422000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024350", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "166.5", "sL_BldgLoss": "166.5", "sL_StrLoss": "166.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004AC552663B6A5EC009C535C24BEC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.656925912999938, 51.847980269000104 ], [ -121.656971990999978, 51.847517309000068 ], [ -121.656664836999937, 51.847505664000117 ], [ -121.657021343999958, 51.843923706000091 ], [ -121.658623784999975, 51.843984448000057 ], [ -121.662824780999969, 51.844143584000022 ], [ -121.662778767999924, 51.844606549000083 ], [ -121.663085904999917, 51.844618177000058 ], [ -121.66272988899999, 51.848200152000089 ], [ -121.658548558999939, 51.848041773 ], [ -121.656925912999938, 51.847980269000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024351", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "234", "sL_BldgLoss": "234", "sL_StrLoss": "234", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000910E8B2818705EC0C425647397F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.748838631999902, 51.920563828000049 ], [ -121.748863987000021, 51.920304025000107 ], [ -121.748115823999981, 51.92027630900013 ], [ -121.748356399999935, 51.917811364000045 ], [ -121.748465416999977, 51.91669430200011 ], [ -121.754278991999968, 51.91690953800002 ], [ -121.754253673, 51.917169343000062 ], [ -121.75500178499999, 51.917197020000103 ], [ -121.754711914999973, 51.920171696000104 ], [ -121.754340925999941, 51.919977204000126 ], [ -121.753934806999922, 51.919928795000025 ], [ -121.753407183999911, 51.920048404000077 ], [ -121.753317706999923, 51.920182304000065 ], [ -121.753788318999938, 51.920457199000033 ], [ -121.754015074999984, 51.920755455000055 ], [ -121.751599015999943, 51.920666044000072 ], [ -121.748838631999902, 51.920563828000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024352", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1778667", "BldgCostT": "1226667", "sL_LossRatio": "1", "sL_AssetLoss": "87.7", "sL_BldgLoss": "87.7", "sL_StrLoss": "87.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDBBD7418C5C5EC0C360A351A6F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.443341789, 51.917232265000052 ], [ -121.449153877999976, 51.917462938000092 ], [ -121.448779700999964, 51.921044000000144 ], [ -121.44296713599999, 51.920813308000056 ], [ -121.443341789, 51.917232265000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "92.4", "sL_BldgLoss": "92.4", "sL_StrLoss": "92.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007827024996545EC0A6FF1795F5D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.318743949999956, 51.693302614000075 ], [ -121.323738264999974, 51.693507376000078 ], [ -121.323355754999938, 51.697088753000109 ], [ -121.321101725999966, 51.696996367000096 ], [ -121.319955423999915, 51.695200613000104 ], [ -121.319033033999986, 51.693755543000115 ], [ -121.318743949999956, 51.693302614000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "102.8", "sL_BldgLoss": "102.8", "sL_StrLoss": "102.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB389BAF8E6E5EC0F715732991F34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.725003896, 51.90198908800005 ], [ -121.725132734999974, 51.900675620000094 ], [ -121.727438961999937, 51.900761542000076 ], [ -121.728178122, 51.901042401000069 ], [ -121.726909678999903, 51.90117909800005 ], [ -121.727645719999884, 51.901861302000043 ], [ -121.72783360399994, 51.901881209000052 ], [ -121.727969319999971, 51.901738807000072 ], [ -121.72820138699997, 51.901706098000041 ], [ -121.729204725999963, 51.902237305 ], [ -121.730778157999964, 51.90258564900013 ], [ -121.730623195999954, 51.904167432000122 ], [ -121.730593156999973, 51.904474044000061 ], [ -121.724781354999905, 51.904257606000073 ], [ -121.725003896, 51.90198908800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544333", "BldgCostT": "4513333", "sL_LossRatio": "1", "sL_AssetLoss": "479", "sL_BldgLoss": "479", "sL_StrLoss": "479", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007049277536585EC0CCDC95C05ADA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.370328950000015, 51.710222645000052 ], [ -121.370434178, 51.709227764000076 ], [ -121.368981247999955, 51.70916883600011 ], [ -121.369360135999926, 51.705587348000087 ], [ -121.375143768999948, 51.705821809000021 ], [ -121.375042431999958, 51.706780965000078 ], [ -121.375159280999966, 51.706782581 ], [ -121.375233150999975, 51.706083387000056 ], [ -121.375806498999964, 51.706106614000142 ], [ -121.375833637999918, 51.705849701000012 ], [ -121.376491933999901, 51.705876365000066 ], [ -121.376518722999961, 51.70562271700004 ], [ -121.37786646399995, 51.705677294000076 ], [ -121.378079575999948, 51.703658850000082 ], [ -121.382687042000015, 51.703845311000109 ], [ -121.382795723999905, 51.702814861000064 ], [ -121.384374810999972, 51.702878722000058 ], [ -121.384471702000027, 51.701959699000042 ], [ -121.389748932999964, 51.702172961000095 ], [ -121.389724612999913, 51.702193215000129 ], [ -121.389414871, 51.702451217000061 ], [ -121.389157007000023, 51.702666000000157 ], [ -121.388778740999967, 51.703196623000032 ], [ -121.388705702999957, 51.703299020000074 ], [ -121.388593108999913, 51.703456986000113 ], [ -121.388123594999911, 51.703999195000087 ], [ -121.387766187999944, 51.704290512000057 ], [ -121.387333591999948, 51.704592193000146 ], [ -121.387108707999943, 51.704720737000045 ], [ -121.386854590999974, 51.704865998000074 ], [ -121.386323688999965, 51.705123292000103 ], [ -121.385867702999988, 51.705289202000053 ], [ -121.385164084999957, 51.705475608000071 ], [ -121.383702003999929, 51.705777107000124 ], [ -121.381590422999935, 51.706247398000102 ], [ -121.381060094999967, 51.706429202000102 ], [ -121.380066959999965, 51.706876008000037 ], [ -121.37923373199996, 51.707250902000069 ], [ -121.378737134999966, 51.70738810100007 ], [ -121.377968906999968, 51.707539581000056 ], [ -121.377639215999949, 51.707635903000067 ], [ -121.377252591999977, 51.707831596000062 ], [ -121.376895707999907, 51.708089600000029 ], [ -121.376322685, 51.7086616980001 ], [ -121.375996102999977, 51.708893893000074 ], [ -121.375679994999942, 51.709013293000027 ], [ -121.375264505999979, 51.709072514000091 ], [ -121.375174209999955, 51.70908539000002 ], [ -121.374700924999971, 51.709085366000046 ], [ -121.373991416999914, 51.709085297000094 ], [ -121.373906528999939, 51.709085299000016 ], [ -121.373269701000012, 51.709177272000019 ], [ -121.37325023299999, 51.709180104000033 ], [ -121.372016087999938, 51.709534699000088 ], [ -121.371430372999939, 51.709737033000103 ], [ -121.37094439, 51.709904888000104 ], [ -121.370435087999908, 51.710189086000064 ], [ -121.369742683999974, 51.710707965000061 ], [ -121.369760416999981, 51.710214756000042 ], [ -121.370328950000015, 51.710222645000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024356", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "138", "sL_BldgLoss": "138", "sL_StrLoss": "138", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BA80C4E4A665EC0B768F9688EEC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.593111937999979, 51.849693853000112 ], [ -121.593208834999928, 51.848734478000033 ], [ -121.59247796399994, 51.848706362000101 ], [ -121.594582655999901, 51.84806724400007 ], [ -121.595381898, 51.847824518000046 ], [ -121.597119096999947, 51.847296927000073 ], [ -121.597719736999963, 51.847132325000089 ], [ -121.599447559999959, 51.846658835000035 ], [ -121.599595895999983, 51.846618185000032 ], [ -121.599993579999989, 51.846509197000017 ], [ -121.600234717999967, 51.846443108000088 ], [ -121.601285272999974, 51.846207490000054 ], [ -121.601826397999972, 51.846113213000081 ], [ -121.603055297999916, 51.84603004100007 ], [ -121.603438415999932, 51.846046568000055 ], [ -121.60324868399999, 51.847929564000019 ], [ -121.602596056999971, 51.847904514000064 ], [ -121.602589257999938, 51.847971979000064 ], [ -121.602043275999961, 51.847951020000053 ], [ -121.602029640999902, 51.848086292000076 ], [ -121.601456612999954, 51.848064293000078 ], [ -121.601446218999982, 51.84816740600013 ], [ -121.599114092999983, 51.848077839000041 ], [ -121.599106508999938, 51.848322111000058 ], [ -121.599076720999989, 51.848321757000036 ], [ -121.59891581799999, 51.849916963000098 ], [ -121.593111937999979, 51.849693853000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024357", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "231.9", "sL_BldgLoss": "231.9", "sL_StrLoss": "231.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A16C67EBE25E5EC0DFB46CEFCBF94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.480375253999938, 51.953507367000043 ], [ -121.480406816999974, 51.95320343900007 ], [ -121.47757087699992, 51.953091792000045 ], [ -121.47794296399999, 51.949510738000114 ], [ -121.481671849999927, 51.949657525000077 ], [ -121.481687098999927, 51.949510626000119 ], [ -121.487503693999912, 51.949739353000027 ], [ -121.487132389999957, 51.953320437000073 ], [ -121.48623913299997, 51.95328533200005 ], [ -121.486192374999945, 51.953736160000048 ], [ -121.480375253999938, 51.953507367000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8323000", "BldgCostT": "5740000", "sL_LossRatio": "1", "sL_AssetLoss": "553", "sL_BldgLoss": "553", "sL_StrLoss": "553", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000097EEC750025E5EC0888961E2EAF94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.460198623999943, 51.95237165200006 ], [ -121.459723837999931, 51.952040935000099 ], [ -121.45966364899999, 51.95199901100014 ], [ -121.459540523, 51.951838436000067 ], [ -121.459355154999955, 51.951596680000122 ], [ -121.459058271999979, 51.950663523000109 ], [ -121.459058952999925, 51.950622082000059 ], [ -121.459070832999899, 51.949913398000056 ], [ -121.459180597999989, 51.949717966000101 ], [ -121.464780181999942, 51.94993926500004 ], [ -121.464613345999979, 51.951540322000021 ], [ -121.465037186999922, 51.951557061000102 ], [ -121.464957192, 51.952324774000068 ], [ -121.466414693999951, 51.952382325000059 ], [ -121.466413313999951, 51.952395569000053 ], [ -121.467515954999939, 51.95243909600007 ], [ -121.467505820999975, 51.952536396 ], [ -121.467705504999984, 51.952544277000136 ], [ -121.467789468, 51.95173800100013 ], [ -121.468143516999987, 51.951751974000047 ], [ -121.468220293999977, 51.951014610000051 ], [ -121.468228141999958, 51.951014920000013 ], [ -121.468298634999897, 51.950337910000094 ], [ -121.468809651999919, 51.950358076000029 ], [ -121.468862939999966, 51.949846223000073 ], [ -121.469584226999984, 51.949874683000083 ], [ -121.469636035999955, 51.949376941000118 ], [ -121.4705101699999, 51.949411425000065 ], [ -121.470528804999944, 51.949232362000096 ], [ -121.47208819799999, 51.94929386300003 ], [ -121.472095735999929, 51.949221399000116 ], [ -121.477912242999963, 51.949450611000096 ], [ -121.477540153999911, 51.953031666000108 ], [ -121.47598061799999, 51.95297023800002 ], [ -121.475973085999939, 51.953042702000054 ], [ -121.475098873999968, 51.953008259000043 ], [ -121.475080255999956, 51.953187324000119 ], [ -121.474358910999968, 51.953158898000034 ], [ -121.474307150999948, 51.953656641000102 ], [ -121.473796091999986, 51.953636499000027 ], [ -121.473742858999969, 51.954148354000083 ], [ -121.473735010000013, 51.954148044000135 ], [ -121.473664595999978, 51.954825054000175 ], [ -121.473310522999938, 51.954811098000064 ], [ -121.473233822999958, 51.955548464000096 ], [ -121.470854272999972, 51.955454644000049 ], [ -121.470770358999943, 51.956260920000069 ], [ -121.46873076199995, 51.956180465000109 ], [ -121.468727366999957, 51.95621306900015 ], [ -121.464383127999952, 51.956041582000083 ], [ -121.46376456099992, 51.955520859000082 ], [ -121.463476108999927, 51.95527797400004 ], [ -121.46300471099994, 51.954616621000071 ], [ -121.462144700999957, 51.953719652000125 ], [ -121.46108084799999, 51.95290996500006 ], [ -121.460806720999969, 51.952701315000112 ], [ -121.460631359999965, 51.952606242000066 ], [ -121.460198623999943, 51.95237165200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "44.3", "sL_BldgLoss": "44.3", "sL_StrLoss": "44.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085EF9AE39E5C5EC0F27D2F8DF8EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.44393432399994, 51.836760459000075 ], [ -121.44409629799992, 51.83520891200007 ], [ -121.443779437999922, 51.835196305000167 ], [ -121.443952845999917, 51.835121570000076 ], [ -121.444592995999955, 51.834932177000077 ], [ -121.445332466999915, 51.834781788000065 ], [ -121.445998136999961, 51.834696211000107 ], [ -121.446074977999928, 51.834686342000055 ], [ -121.447134658999985, 51.834657629000063 ], [ -121.44762155599993, 51.83464444100008 ], [ -121.448218784999952, 51.834545036000115 ], [ -121.448646395999972, 51.834424467000176 ], [ -121.450064152999971, 51.833840863000042 ], [ -121.449735711999963, 51.836991119000075 ], [ -121.44393432399994, 51.836760459000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024361", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005254CB10E6695EC07C1E0ED8F6ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.65291038699992, 51.860305693000093 ], [ -121.65280008099991, 51.860097793000122 ], [ -121.65284701399996, 51.859505289000069 ], [ -121.652428683999986, 51.858907104000117 ], [ -121.652405373999954, 51.858709196000106 ], [ -121.65268668, 51.85854969600009 ], [ -121.653035485999951, 51.858526906000087 ], [ -121.653489607999944, 51.858928495000022 ], [ -121.653984309999984, 51.858870096 ], [ -121.654510707999961, 51.858247704000064 ], [ -121.654499303999899, 51.857699397000026 ], [ -121.654651681999965, 51.857448697000073 ], [ -121.654661194999932, 51.85729760200006 ], [ -121.656282664999964, 51.857359079000034 ], [ -121.656225409999962, 51.857934092000029 ], [ -121.656280506999977, 51.85793618000011 ], [ -121.656023141999952, 51.860520776000044 ], [ -121.655653277999974, 51.860346994000089 ], [ -121.655336185999928, 51.860271508000082 ], [ -121.654840607999972, 51.860310009000024 ], [ -121.654183404999941, 51.860465208000051 ], [ -121.65371179899995, 51.860674601000071 ], [ -121.65291038699992, 51.860305693000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024362", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "198.3", "sL_BldgLoss": "198.3", "sL_StrLoss": "198.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6FFF964E2655EC0654B3DA817F34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.589300661999971, 51.901054373000093 ], [ -121.589340735999926, 51.900658449000083 ], [ -121.588412457999979, 51.900622750000082 ], [ -121.588775002999938, 51.897041177000084 ], [ -121.594585157999916, 51.897264496000091 ], [ -121.594545135999937, 51.897660423000019 ], [ -121.59547335399999, 51.897696073000084 ], [ -121.595111354999958, 51.90127766600002 ], [ -121.589300661999971, 51.901054373000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024363", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "136.1", "sL_BldgLoss": "136.1", "sL_StrLoss": "136.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000540947772D695EC0679F64FE13FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.640458562999981, 51.971223545000093 ], [ -121.640493978999956, 51.970870112000085 ], [ -121.640162579999966, 51.970857537000072 ], [ -121.640521452999963, 51.96727602200005 ], [ -121.64634123799999, 51.967496709000052 ], [ -121.646305872999932, 51.967850146000032 ], [ -121.646637251999948, 51.96786270300003 ], [ -121.646278875999982, 51.971444235000021 ], [ -121.640458562999981, 51.971223545000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "49", "sL_BldgLoss": "49", "sL_StrLoss": "49", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7E26B74B3565EC0EB3E9D7E92DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.353987205999942, 51.708433808000088 ], [ -121.352067598999938, 51.707850937000096 ], [ -121.352062991999958, 51.707116305000113 ], [ -121.35171468399993, 51.70676030000002 ], [ -121.351148026999979, 51.706570086000063 ], [ -121.35693003599999, 51.706805401000103 ], [ -121.356764149999961, 51.708369273000081 ], [ -121.35833779499994, 51.708433266000085 ], [ -121.358300359999959, 51.708786284000055 ], [ -121.358133082000023, 51.708769214 ], [ -121.353987205999942, 51.708433808000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024365", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "170", "sL_BldgLoss": "170", "sL_StrLoss": "170", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B464E12D08645EC088EEFE1D76F34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.56027635099997, 51.900139006000053 ], [ -121.566086772999967, 51.900363767000066 ], [ -121.565722339999979, 51.903945258000064 ], [ -121.559911442999976, 51.903720479000086 ], [ -121.56027635099997, 51.900139006000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10481084", "BldgCostT": "7228334", "sL_LossRatio": "1", "sL_AssetLoss": "623.3", "sL_BldgLoss": "623.3", "sL_StrLoss": "623.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E5D0012345E5EC046AAF76D6BE94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.472604254999965, 51.823311903000054 ], [ -121.473483175999945, 51.821819136 ], [ -121.473487775999928, 51.821811289000081 ], [ -121.473645922999935, 51.82147949600008 ], [ -121.473721688999987, 51.82114176600011 ], [ -121.473726662999937, 51.820936863000085 ], [ -121.473733219999957, 51.820665723000083 ], [ -121.473872588999939, 51.819472224000037 ], [ -121.473928063999949, 51.818996726000108 ], [ -121.474030897999981, 51.818636696000048 ], [ -121.474566624999952, 51.817708289000073 ], [ -121.474675051999924, 51.817520379000072 ], [ -121.474706610999959, 51.817313963000068 ], [ -121.474659862999928, 51.81713320299999 ], [ -121.474547662999953, 51.816951658000043 ], [ -121.47368673699998, 51.81605902900003 ], [ -121.472552331000017, 51.81394367500009 ], [ -121.472346134999938, 51.813236965000073 ], [ -121.472348628999953, 51.813212998000047 ], [ -121.475841331999931, 51.815074632000119 ], [ -121.476179251999966, 51.815254719000023 ], [ -121.476281414999946, 51.814048323000108 ], [ -121.476699584999963, 51.814206495000064 ], [ -121.478272302999926, 51.814875501000074 ], [ -121.479771605999971, 51.815577608000048 ], [ -121.482400970999933, 51.816875227000011 ], [ -121.482395213999908, 51.816930873000025 ], [ -121.482516914999962, 51.816932444000038 ], [ -121.4825605, 51.816953952000077 ], [ -121.482534024999921, 51.81774194300008 ], [ -121.482969101999913, 51.817747558000136 ], [ -121.482978158999941, 51.817477914000079 ], [ -121.483639580999977, 51.817486446000075 ], [ -121.484098098999979, 51.817712704000051 ], [ -121.484405245999966, 51.817861380000167 ], [ -121.485129848999989, 51.818212171000077 ], [ -121.485099270999967, 51.819123817000047 ], [ -121.484664179999925, 51.819118211000031 ], [ -121.484655131999943, 51.819387853000087 ], [ -121.482479663999982, 51.819359798000043 ], [ -121.482504320999951, 51.818625954000048 ], [ -121.482494625999919, 51.818633666000046 ], [ -121.482341955999971, 51.818548743000072 ], [ -121.482071758999965, 51.818545254000064 ], [ -121.482086032999959, 51.818120568000097 ], [ -121.480503571999947, 51.818058099000027 ], [ -121.480487887999914, 51.818209624000076 ], [ -121.48010275899999, 51.818194417 ], [ -121.480075085999957, 51.818461733000063 ], [ -121.479240837999924, 51.818428789000059 ], [ -121.479205565999948, 51.818769454000062 ], [ -121.477683295999924, 51.818709325000064 ], [ -121.477578453999968, 51.819721490000099 ], [ -121.477181595000033, 51.819705811000112 ], [ -121.477098482000017, 51.820508100000069 ], [ -121.474343322, 51.820399210000097 ], [ -121.474202291999958, 51.821759660000033 ], [ -121.475920484999932, 51.821827574000075 ], [ -121.475903551999949, 51.821990986000081 ], [ -121.476568372999978, 51.822017257000034 ], [ -121.476523458999935, 51.822450737000075 ], [ -121.476541706999939, 51.822451459 ], [ -121.476513051, 51.82272801900006 ], [ -121.47720710099999, 51.822755441000034 ], [ -121.476836032999969, 51.826336897000083 ], [ -121.473388165999907, 51.826200630000088 ], [ -121.473343798999935, 51.826628479000114 ], [ -121.473154422999983, 51.826620991000077 ], [ -121.470546917000021, 51.826517864000053 ], [ -121.470509371999967, 51.826879698000084 ], [ -121.470312300999979, 51.828778847000081 ], [ -121.469436724000033, 51.828744204 ], [ -121.469408473999948, 51.829016367000065 ], [ -121.46703714299997, 51.828922511000016 ], [ -121.466825082999904, 51.830964426000065 ], [ -121.466071682999939, 51.830934596000098 ], [ -121.466026272999898, 51.831371744000144 ], [ -121.463334332999963, 51.83126512100003 ], [ -121.46314745399998, 51.833063009000035 ], [ -121.457346514999955, 51.832833026000067 ], [ -121.457397994999951, 51.832338415000059 ], [ -121.45755862399993, 51.832229574000131 ], [ -121.457911069999952, 51.831899300000067 ], [ -121.457990827999978, 51.831824574000059 ], [ -121.458107210999984, 51.831715501000076 ], [ -121.459381744999945, 51.830760022000057 ], [ -121.459571476999926, 51.830657880000068 ], [ -121.459648309999949, 51.830634534000097 ], [ -121.459885731000014, 51.830562458000031 ], [ -121.460698985999954, 51.830443648000013 ], [ -121.461843493999979, 51.830093446000056 ], [ -121.462273736999975, 51.829876749000078 ], [ -121.462416331999975, 51.829774139000051 ], [ -121.46262313299998, 51.829625377000063 ], [ -121.464124162999966, 51.828183179000092 ], [ -121.4642407, 51.828071199000128 ], [ -121.464957894999898, 51.827446895000051 ], [ -121.465761601999958, 51.826866600000109 ], [ -121.467197740999936, 51.825829562000088 ], [ -121.467411823999953, 51.825674973000076 ], [ -121.46777315599995, 51.825439966000033 ], [ -121.468333041999983, 51.825075836000089 ], [ -121.468607123999945, 51.82492477600011 ], [ -121.468855, 51.824788138000017 ], [ -121.46932989699999, 51.824589358000033 ], [ -121.469905462999961, 51.824416134000053 ], [ -121.471002146999965, 51.824188035000105 ], [ -121.471478828999949, 51.824055849000089 ], [ -121.471899163999964, 51.823891765000027 ], [ -121.472174337999888, 51.823737216000033 ], [ -121.472396359999976, 51.823561706000113 ], [ -121.472604254999965, 51.823311903000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "192", "sL_BldgLoss": "192", "sL_StrLoss": "192", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000087BB8286216E5EC0D39CA32B64F34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.718718350999964, 51.899619381000065 ], [ -121.723877656999932, 51.899811828000054 ], [ -121.723713130999954, 51.901488649000051 ], [ -121.723526181999944, 51.903393814000047 ], [ -121.717714559999962, 51.903177018000029 ], [ -121.718066510999975, 51.89959505000013 ], [ -121.718718350999964, 51.899619381000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "226.1", "sL_BldgLoss": "226.1", "sL_StrLoss": "226.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004C25F213FD535EC09BFE918E97D74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.318041401999949, 51.692201834000073 ], [ -121.317172779999922, 51.69084082400007 ], [ -121.31590017399999, 51.688861564000021 ], [ -121.315353153999965, 51.688010768000076 ], [ -121.314940962999955, 51.687481264000013 ], [ -121.31453374199999, 51.687094936000094 ], [ -121.313981373999979, 51.686695454000123 ], [ -121.31282914799999, 51.685987147000098 ], [ -121.312090852999944, 51.685426256000028 ], [ -121.311991808999963, 51.685323457000081 ], [ -121.311300500999891, 51.684606007000077 ], [ -121.310882192999912, 51.684106787000104 ], [ -121.310704324999961, 51.684005958000093 ], [ -121.31018647800002, 51.683429423000099 ], [ -121.309932710999945, 51.683146902000054 ], [ -121.309683922999952, 51.682867793000071 ], [ -121.309159657999885, 51.682544967000112 ], [ -121.308923270999955, 51.682399098000111 ], [ -121.307859962999899, 51.681742998000047 ], [ -121.306635814999979, 51.68098762500005 ], [ -121.305894652999925, 51.680530273000024 ], [ -121.304326525999954, 51.679562526000055 ], [ -121.304537153999945, 51.679571196000069 ], [ -121.308984362999979, 51.679754152000093 ], [ -121.308942872999978, 51.680141535000082 ], [ -121.309891256999904, 51.680180528000079 ], [ -121.309858095999942, 51.680490202000087 ], [ -121.310478657999965, 51.680515713000055 ], [ -121.310447317999916, 51.680808425000109 ], [ -121.311152155999963, 51.680837395000054 ], [ -121.311064962, 51.68165187000006 ], [ -121.31182918799999, 51.68168327700004 ], [ -121.311775669999989, 51.682183262000095 ], [ -121.311997416999972, 51.68219237400006 ], [ -121.311952777999977, 51.682609415000023 ], [ -121.312367735999956, 51.682626466000052 ], [ -121.31226962, 51.683543155000102 ], [ -121.312938879999962, 51.683570651000139 ], [ -121.312870855999947, 51.684206257000092 ], [ -121.315734825999982, 51.68432387800005 ], [ -121.315611338999972, 51.685478397000082 ], [ -121.31560127199999, 51.685572521000047 ], [ -121.315875408999901, 51.685583775000154 ], [ -121.31583781199997, 51.685935287000049 ], [ -121.316329317999973, 51.685955464000166 ], [ -121.316248629999961, 51.686709913000065 ], [ -121.316946249999944, 51.686738548000072 ], [ -121.316852281999971, 51.687617263000099 ], [ -121.31718738899994, 51.687622065000035 ], [ -121.317167388999962, 51.68816131799999 ], [ -121.317601187999955, 51.688167533000083 ], [ -121.31758222, 51.688679112000038 ], [ -121.317551198999951, 51.68951566700008 ], [ -121.31711738599999, 51.689509451000042 ], [ -121.317101534999935, 51.689936769000084 ], [ -121.317544251999919, 51.689954937000095 ], [ -121.317504755999977, 51.690324311000076 ], [ -121.317955022999953, 51.690330760000037 ], [ -121.317915036, 51.691409267000047 ], [ -121.318348866999884, 51.691415479000078 ], [ -121.318308887999962, 51.692493986000052 ], [ -121.318227108999949, 51.692492815 ], [ -121.318041401999949, 51.692201834000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024372", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.2", "sL_BldgLoss": "40.2", "sL_StrLoss": "40.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009534B9F734625EC0C6A829D12BEA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.531417361999971, 51.829911624 ], [ -121.531524507999947, 51.828864963000079 ], [ -121.532533912999938, 51.828931201000024 ], [ -121.532840863999951, 51.82892527200007 ], [ -121.536309398999933, 51.828858192000048 ], [ -121.537121198999941, 51.828921294000061 ], [ -121.537339080999956, 51.828956471000055 ], [ -121.537218299999964, 51.830137860000022 ], [ -121.531417361999971, 51.829911624 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024374", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "1", "sL_AssetLoss": "147.5", "sL_BldgLoss": "147.5", "sL_StrLoss": "147.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9C02BD5C76B5EC055CECDED94FC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.681339212999902, 51.971394798000134 ], [ -121.687159754999968, 51.971613420000097 ], [ -121.686804679999938, 51.975195067000072 ], [ -121.680983661999946, 51.974976428000083 ], [ -121.681339212999902, 51.971394798000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024375", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "135.1", "sL_BldgLoss": "135.1", "sL_StrLoss": "135.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADE2C7772D5B5EC0ED3399B78BF44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.422629805999932, 51.910192 ], [ -121.421344190999918, 51.909945619000034 ], [ -121.420160207, 51.909787783000084 ], [ -121.419652659999926, 51.909758515000057 ], [ -121.41893167399995, 51.909764525000057 ], [ -121.419146038999969, 51.907725876000114 ], [ -121.424956732999931, 51.907957776000075 ], [ -121.42471508200002, 51.910258820000116 ], [ -121.429279244, 51.910440763000068 ], [ -121.428903495, 51.914021782000106 ], [ -121.426713822999957, 51.913934517000015 ], [ -121.425765680999945, 51.913018595000089 ], [ -121.424607947999974, 51.911498061000025 ], [ -121.423743186999971, 51.910833567000068 ], [ -121.423386311999948, 51.910559319000122 ], [ -121.422629805999932, 51.910192 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024379", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3272167", "BldgCostT": "2256667", "sL_LossRatio": "1", "sL_AssetLoss": "191", "sL_BldgLoss": "191", "sL_StrLoss": "191", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000056AB6521705D5EC01BD9115EEDF84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.457450989999955, 51.941008138000022 ], [ -121.463266322999928, 51.941238093000045 ], [ -121.462893099999988, 51.944819126000041 ], [ -121.461989599, 51.944783418000071 ], [ -121.461755788999938, 51.947026049000087 ], [ -121.461422357999979, 51.947012869000048 ], [ -121.461165014999978, 51.949480759000082 ], [ -121.459354039999951, 51.949409160000059 ], [ -121.459434858999913, 51.949265264000054 ], [ -121.459461846999943, 51.949034406000067 ], [ -121.459397126999988, 51.948843059000026 ], [ -121.45919824899994, 51.948650010000094 ], [ -121.458790595999972, 51.948401061000027 ], [ -121.458322817999914, 51.94822435800009 ], [ -121.457662396999979, 51.947906966000069 ], [ -121.457113182999962, 51.947573310000102 ], [ -121.456786947999916, 51.947216101000024 ], [ -121.456720462999968, 51.946943779000087 ], [ -121.456719959999987, 51.946416986000031 ], [ -121.456795813999918, 51.946250091000103 ], [ -121.45744823099993, 51.945552262000078 ], [ -121.457619322, 51.94528393500007 ], [ -121.457674672999971, 51.945061384000113 ], [ -121.457628798999977, 51.944633470000078 ], [ -121.457768517999952, 51.944301887000037 ], [ -121.457987679999931, 51.943964471000072 ], [ -121.458207959999982, 51.943420338000109 ], [ -121.458206373999928, 51.943372752000101 ], [ -121.458201922999962, 51.943240318000065 ], [ -121.458094531999933, 51.943038293000079 ], [ -121.457802462999922, 51.942828964000078 ], [ -121.457298546999965, 51.942469010000131 ], [ -121.457450989999955, 51.941008138000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024380", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "136.3", "sL_BldgLoss": "136.3", "sL_StrLoss": "136.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E81D3C4DC56A5EC003E9A4EF1CF04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.665747249999939, 51.877771562000085 ], [ -121.66575022899994, 51.877741595000032 ], [ -121.665114128999917, 51.877717545000031 ], [ -121.665151168999913, 51.877344974000096 ], [ -121.664721742, 51.877328735000091 ], [ -121.665077831999938, 51.873746848000046 ], [ -121.666518847999981, 51.873801332000099 ], [ -121.670885275, 51.873966312000071 ], [ -121.670848287999902, 51.874338887000079 ], [ -121.671277686999986, 51.874355101000099 ], [ -121.671274711999928, 51.874385068000024 ], [ -121.671910765999939, 51.874409085000067 ], [ -121.671555231999946, 51.877990991000097 ], [ -121.670037723999897, 51.877933687000059 ], [ -121.665747249999939, 51.877771562000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024381", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "83.2", "sL_BldgLoss": "83.2", "sL_StrLoss": "83.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF7EC74BD26D5EC07D0249547FF24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.718833668999963, 51.896084238000064 ], [ -121.718841339999983, 51.895814572000155 ], [ -121.717969588999921, 51.895805078000116 ], [ -121.71797726599999, 51.895535412000093 ], [ -121.717105520999965, 51.895525911000064 ], [ -121.717113200999961, 51.89525624500012 ], [ -121.716241461999957, 51.895246737000058 ], [ -121.716249147999946, 51.89497707200011 ], [ -121.715377414999949, 51.894967559000087 ], [ -121.715385105999985, 51.89469789200006 ], [ -121.714077515000014, 51.89468361100009 ], [ -121.714085213999937, 51.894413945000053 ], [ -121.712777631999955, 51.894399648000075 ], [ -121.71278533899999, 51.894129982000059 ], [ -121.711477764999984, 51.894115672000048 ], [ -121.711500905999969, 51.893306675000126 ], [ -121.714551857999979, 51.893340044000077 ], [ -121.714544161999967, 51.893609710000057 ], [ -121.716287575999942, 51.893628742000075 ], [ -121.7162798909999, 51.893898408000076 ], [ -121.717151603999952, 51.893907914000103 ], [ -121.717143922999952, 51.894177581000093 ], [ -121.717579782999977, 51.894182332000057 ], [ -121.717572104999988, 51.894451999000083 ], [ -121.718443829999956, 51.89446149500003 ], [ -121.718436156999928, 51.89473116100006 ], [ -121.718872022, 51.894735908 ], [ -121.718864351999969, 51.895005574000052 ], [ -121.719736085999969, 51.895015061000045 ], [ -121.719728421999946, 51.895284728000078 ], [ -121.720164290999918, 51.895289468000094 ], [ -121.720141302999977, 51.896098467000058 ], [ -121.718833668999963, 51.896084238000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024382", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "140.6", "sL_BldgLoss": "140.6", "sL_StrLoss": "140.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5C6D52B196B5EC0E1F767ED53F14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.671483548999973, 51.883503359000038 ], [ -121.676493444999949, 51.883692376000077 ], [ -121.676267447999919, 51.885971211000097 ], [ -121.676138209999948, 51.887274267000059 ], [ -121.670328970999975, 51.887055071000098 ], [ -121.670684679999937, 51.883473197000065 ], [ -121.671483548999973, 51.883503359000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "82.1", "sL_BldgLoss": "82.1", "sL_StrLoss": "82.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041E357E68C655EC005E1C80B82ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.58574039299999, 51.857873333000065 ], [ -121.585748847999952, 51.857603681000029 ], [ -121.58531336599999, 51.857598443000114 ], [ -121.585338738999909, 51.856789485000057 ], [ -121.584903266999973, 51.856784247000107 ], [ -121.584928646, 51.855975288000096 ], [ -121.584493181999989, 51.855970048000117 ], [ -121.584510105999968, 51.85543074100007 ], [ -121.584074646000019, 51.855425500000045 ], [ -121.584100038999935, 51.854616542000052 ], [ -121.583664585999927, 51.854611299000062 ], [ -121.583698455000018, 51.853532688000072 ], [ -121.584133896999901, 51.853537930000073 ], [ -121.58414236199998, 51.853268276000144 ], [ -121.585884121999925, 51.85328923000003 ], [ -121.585875668999947, 51.853558883000083 ], [ -121.586311111, 51.853564117000076 ], [ -121.586302661000019, 51.853833770000094 ], [ -121.587173551999939, 51.853844235000075 ], [ -121.587165106999919, 51.854113887000068 ], [ -121.587600555999941, 51.854119117000096 ], [ -121.587592112, 51.854388771000067 ], [ -121.588463014999945, 51.854399224000097 ], [ -121.588454575999947, 51.854668878000084 ], [ -121.589325484999932, 51.854679326000024 ], [ -121.589317050999952, 51.854948979000056 ], [ -121.58975250899999, 51.854954202000044 ], [ -121.589744077999967, 51.855223855000105 ], [ -121.590179537999944, 51.855229075000068 ], [ -121.590145822999901, 51.856307690000108 ], [ -121.589710353999948, 51.85630247000006 ], [ -121.589701921999932, 51.856572123000021 ], [ -121.589266448, 51.856566901000129 ], [ -121.589258013999967, 51.856836555000037 ], [ -121.588822536999928, 51.856831331000073 ], [ -121.588814100999954, 51.857100984000056 ], [ -121.588378623999986, 51.857095760000028 ], [ -121.588370183999956, 51.857365413000096 ], [ -121.587499222999938, 51.857354957000048 ], [ -121.587490777999946, 51.857624611000048 ], [ -121.587055294999914, 51.857619380000088 ], [ -121.587046846999954, 51.857889034000124 ], [ -121.58574039299999, 51.857873333000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "93.2", "sL_BldgLoss": "93.2", "sL_StrLoss": "93.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003FFED2A23E5A5EC059D0A4E239ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.408065726999951, 51.851799260000057 ], [ -121.411858869999918, 51.851951244000098 ], [ -121.411482193999959, 51.85553239200005 ], [ -121.410569733999978, 51.855495843000014 ], [ -121.4101144199999, 51.854970241000053 ], [ -121.409659624999961, 51.854584302000085 ], [ -121.40939198699995, 51.854394287000048 ], [ -121.408473411000031, 51.853742011000044 ], [ -121.408213011999962, 51.853475332000116 ], [ -121.40801781299993, 51.853156451000103 ], [ -121.407893204999979, 51.852720796000021 ], [ -121.407851952999962, 51.852310054000064 ], [ -121.407892010999902, 51.852109388000024 ], [ -121.407945062999914, 51.851979340000085 ], [ -121.408065726999951, 51.851799260000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024385", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11334167", "BldgCostT": "7816667", "sL_LossRatio": "1", "sL_AssetLoss": "703", "sL_BldgLoss": "703", "sL_StrLoss": "703", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000289621AF836A5EC0197DDCE914EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.656985433999921, 51.87322993400003 ], [ -121.657018404999974, 51.8728988680001 ], [ -121.656491938999977, 51.87287892000009 ], [ -121.656848668999956, 51.86929704500001 ], [ -121.661089420999943, 51.869457655000062 ], [ -121.661579246999963, 51.869476195000097 ], [ -121.661660159999983, 51.86866279000003 ], [ -121.660226784, 51.868608527000063 ], [ -121.660423367999954, 51.86663282300001 ], [ -121.660615120999978, 51.866885597000071 ], [ -121.661581676999944, 51.867580593000156 ], [ -121.663066891999947, 51.867956589000116 ], [ -121.663537607999956, 51.86825000500005 ], [ -121.663706787999971, 51.870347804000048 ], [ -121.663896899999926, 51.870376287000049 ], [ -121.664101505999938, 51.870783600000031 ], [ -121.66488680399999, 51.871736392000095 ], [ -121.665688710999959, 51.872105290000043 ], [ -121.666049793999946, 51.872180811000071 ], [ -121.666519701999931, 51.87206111000004 ], [ -121.667068216999937, 51.872623705000095 ], [ -121.667372803999982, 51.87264510800005 ], [ -121.667350522, 51.87239300200013 ], [ -121.666727703, 51.871874591000029 ], [ -121.665857000999964, 51.87183750600007 ], [ -121.665628601999956, 51.87169079300007 ], [ -121.665363380999963, 51.87131909400005 ], [ -121.665258817999984, 51.870940301000061 ], [ -121.664390896999976, 51.870319288000069 ], [ -121.664280604999959, 51.870119908000099 ], [ -121.66398788699999, 51.870171190000086 ], [ -121.66412019399999, 51.869659909000077 ], [ -121.663904994999896, 51.869540289000035 ], [ -121.664280196999968, 51.869148614000096 ], [ -121.664346381999906, 51.86838530200005 ], [ -121.663857497999928, 51.86773299300004 ], [ -121.663173894999957, 51.867311389000072 ], [ -121.662504890999941, 51.867294305000101 ], [ -121.662224221999949, 51.867020902000021 ], [ -121.662089800999922, 51.86663351000005 ], [ -121.661635788999931, 51.866295908000026 ], [ -121.661142313999932, 51.865777506000029 ], [ -121.661102213, 51.865615195 ], [ -121.660257986999966, 51.865200707000049 ], [ -121.65880229699998, 51.864311993000079 ], [ -121.65837521, 51.86397329200009 ], [ -121.658537729999978, 51.862340473000089 ], [ -121.662315399999926, 51.862483520000119 ], [ -121.662362382999945, 51.862011063000061 ], [ -121.662513196999925, 51.862016772000075 ], [ -121.662559702999943, 51.861549067000105 ], [ -121.663372167999967, 51.861579816000102 ], [ -121.663462102, 51.861583219000089 ], [ -121.66351339199997, 51.861067289000061 ], [ -121.66931914099996, 51.861286835000065 ], [ -121.668963500999936, 51.864868775000097 ], [ -121.668591446999955, 51.86485471500005 ], [ -121.668374509999936, 51.86703918500011 ], [ -121.668366233999933, 51.867038873000077 ], [ -121.66827766199998, 51.867930686000115 ], [ -121.667659301999919, 51.86790731500006 ], [ -121.667588946999942, 51.868615570000067 ], [ -121.669228964999945, 51.868677549000054 ], [ -121.669190032999978, 51.869069623000044 ], [ -121.67127002, 51.869148194000104 ], [ -121.671230893999947, 51.869542399000089 ], [ -121.671529838999945, 51.869553688000067 ], [ -121.67117431199992, 51.873135608000027 ], [ -121.669486794999941, 51.873071870000068 ], [ -121.669479438999971, 51.873145949000047 ], [ -121.667351873999934, 51.87306555400005 ], [ -121.66539854499996, 51.872991709000061 ], [ -121.663672112999947, 51.872926414000069 ], [ -121.663718350999886, 51.872461411000074 ], [ -121.663607343999942, 51.87245721200005 ], [ -121.663646654999951, 51.872061864000031 ], [ -121.663066051999934, 51.872039899000072 ], [ -121.663146645999959, 51.871229460000059 ], [ -121.663195376999951, 51.870739424000099 ], [ -121.663062816999954, 51.870734408000082 ], [ -121.663024082000035, 51.871123906000044 ], [ -121.662792765999939, 51.873449807000028 ], [ -121.656985433999921, 51.87322993400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024386", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5454417", "BldgCostT": "3761667", "sL_LossRatio": "1", "sL_AssetLoss": "310", "sL_BldgLoss": "310", "sL_StrLoss": "310", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B8ACC266805E5EC0557477DFA9F84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.476168870999956, 51.946752464000056 ], [ -121.47632133899999, 51.945285385000048 ], [ -121.474274309999942, 51.945204715000045 ], [ -121.47433649099996, 51.944606636000074 ], [ -121.47374963299994, 51.944583501000047 ], [ -121.473911002, 51.943031530000077 ], [ -121.471842174999907, 51.942949952000049 ], [ -121.471941913999956, 51.941991085000019 ], [ -121.470951811999925, 51.941952030000039 ], [ -121.471324348999971, 51.938370962000079 ], [ -121.477139403999971, 51.938600215000086 ], [ -121.47703978599999, 51.939559091000035 ], [ -121.478029838999959, 51.939598094000111 ], [ -121.477868630000017, 51.941150075000103 ], [ -121.479937381999946, 51.941231544000082 ], [ -121.479875282999942, 51.94182962900004 ], [ -121.480462105999919, 51.941852731000061 ], [ -121.48030979, 51.943319819000131 ], [ -121.482356741999951, 51.943400383000082 ], [ -121.481985069999922, 51.946981471000065 ], [ -121.476168870999956, 51.946752464000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "148.2", "sL_BldgLoss": "148.2", "sL_StrLoss": "148.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006AB93B8414745EC06B7BA28898FD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.811766878999919, 51.979347852000082 ], [ -121.816835703999956, 51.979532454000015 ], [ -121.816538771999888, 51.982620153000042 ], [ -121.816491230999972, 51.98311447 ], [ -121.810668512999939, 51.98290239400005 ], [ -121.811013461999934, 51.979320394000062 ], [ -121.811766878999919, 51.979347852000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "167.2", "sL_BldgLoss": "167.2", "sL_StrLoss": "167.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004762177F3A615EC0E534554156E94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.515595808999976, 51.821751073000073 ], [ -121.518608919999963, 51.821806502000072 ], [ -121.522067522999961, 51.822238812000087 ], [ -121.521792176, 51.82492316600009 ], [ -121.521433492999904, 51.824757793000082 ], [ -121.519346492999929, 51.82401185800007 ], [ -121.517648799999918, 51.823405007000112 ], [ -121.516715328999979, 51.823139200000057 ], [ -121.515482201999973, 51.822857089000088 ], [ -121.515595808999976, 51.821751073000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024390", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "132.1", "sL_BldgLoss": "132.1", "sL_StrLoss": "132.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C06205A670655EC0609CAEDDACEC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.580278135999961, 51.849926785000072 ], [ -121.579988492, 51.848441991000101 ], [ -121.580789689999975, 51.848362308000098 ], [ -121.581381178999919, 51.848046095000065 ], [ -121.581781601999964, 51.848275392000062 ], [ -121.582413884999966, 51.848471999000076 ], [ -121.585014993999948, 51.848845114000078 ], [ -121.586240910999948, 51.848644309000115 ], [ -121.587016308, 51.848419288000102 ], [ -121.587642492999947, 51.848382203000085 ], [ -121.588088804999984, 51.848530410000109 ], [ -121.588625090999969, 51.848510400000052 ], [ -121.590368604999938, 51.848010507000012 ], [ -121.590771622999966, 51.847859457000034 ], [ -121.590641512000033, 51.849146989000054 ], [ -121.589860966999964, 51.849288400000042 ], [ -121.589592394999912, 51.84932020300004 ], [ -121.588767079999911, 51.849417980000105 ], [ -121.587714866999988, 51.849480831000022 ], [ -121.587261073999954, 51.849509341000036 ], [ -121.587002989999988, 51.849525567000065 ], [ -121.585781313999959, 51.849602326000053 ], [ -121.585472365999962, 51.849620495000046 ], [ -121.585341512999904, 51.84962819800004 ], [ -121.584189177999946, 51.849696025000085 ], [ -121.582255708999966, 51.849809810000139 ], [ -121.581761810999936, 51.84983928700003 ], [ -121.581479001999952, 51.84985630900006 ], [ -121.580278135999961, 51.849926785000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024391", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "332", "sL_BldgLoss": "332", "sL_StrLoss": "332", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D82A03FF425D5EC05A52A4B12CE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.454502801999936, 51.788520609000031 ], [ -121.460297849999932, 51.788750744000076 ], [ -121.459925685999963, 51.792332256000094 ], [ -121.454130164999953, 51.792102102000072 ], [ -121.454502801999936, 51.788520609000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "1", "sL_AssetLoss": "315.4", "sL_BldgLoss": "315.4", "sL_StrLoss": "315.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC1F7BFF975B5EC0828472EC6ADE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.428445303999979, 51.735731499000067 ], [ -121.434233231999912, 51.735962964000066 ], [ -121.433859383999959, 51.739544565000053 ], [ -121.428070985999952, 51.739313081000013 ], [ -121.428445303999979, 51.735731499000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "1", "sL_AssetLoss": "138", "sL_BldgLoss": "138", "sL_StrLoss": "138", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E5F8C92615F5EC0D745D974E7E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.490493409999956, 51.820808409000115 ], [ -121.489266247999979, 51.820214462000138 ], [ -121.488225939999964, 51.819710916000069 ], [ -121.488006408999979, 51.819604652000088 ], [ -121.486227248999924, 51.818743418000075 ], [ -121.48631489499995, 51.817895613000132 ], [ -121.491133425000015, 51.818085513000057 ], [ -121.49202365099994, 51.818999247000114 ], [ -121.491832161999938, 51.820853764000034 ], [ -121.495593972, 51.821001844000129 ], [ -121.49550499899999, 51.821864195000089 ], [ -121.495319089999938, 51.821839907000047 ], [ -121.493932163999929, 51.821632012000109 ], [ -121.49280600099992, 51.821463207000122 ], [ -121.491873878999982, 51.821255694000044 ], [ -121.490493409999956, 51.820808409000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024395", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "1", "sL_AssetLoss": "568", "sL_BldgLoss": "568", "sL_StrLoss": "568", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C96D249E665B5EC014FAECC207DF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.426176656999928, 51.744405022000059 ], [ -121.426210693999963, 51.744079538000094 ], [ -121.423930997999918, 51.743988263000055 ], [ -121.424305695999976, 51.740406710000045 ], [ -121.424939128999981, 51.740432075000079 ], [ -121.424962679999979, 51.740206924000063 ], [ -121.4307511799999, 51.740438565000062 ], [ -121.430693658999985, 51.740989204000066 ], [ -121.432339763, 51.741055023000079 ], [ -121.431965716999954, 51.744636601000067 ], [ -121.426176656999928, 51.744405022000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024396", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11713583", "BldgCostT": "8078333", "sL_LossRatio": "1", "sL_AssetLoss": "776", "sL_BldgLoss": "776", "sL_StrLoss": "776", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7D77E74A2615EC05EFB9F4F26E74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.529483591999934, 51.809066889000029 ], [ -121.527735088999961, 51.807570109000061 ], [ -121.527465507999977, 51.807369285000107 ], [ -121.526835798999969, 51.807118600000095 ], [ -121.522829814999923, 51.806268401000061 ], [ -121.521558880999933, 51.805685899000075 ], [ -121.519658503999949, 51.805220104000071 ], [ -121.516036014999926, 51.803825794000012 ], [ -121.514669894999926, 51.803400332000081 ], [ -121.514825547999976, 51.801884560000047 ], [ -121.520622680999978, 51.802111641000089 ], [ -121.52053259899999, 51.802990026000039 ], [ -121.52262177199999, 51.803071788000111 ], [ -121.522602039999967, 51.803264280000064 ], [ -121.523999535999934, 51.803318952000062 ], [ -121.52398334699997, 51.80347692000003 ], [ -121.526785148999934, 51.803586478000071 ], [ -121.526699316999952, 51.80442455300004 ], [ -121.527172993999912, 51.804443068000062 ], [ -121.527147580999923, 51.80469121800008 ], [ -121.528245872999946, 51.804734140000029 ], [ -121.52822572799991, 51.804930893000034 ], [ -121.530401211999902, 51.805015883000074 ], [ -121.530313426999911, 51.805873679000094 ], [ -121.531232241999973, 51.805909562000089 ], [ -121.531150236999963, 51.806711025000091 ], [ -121.532433554999926, 51.806761131000059 ], [ -121.532333053999977, 51.807743610000088 ], [ -121.533752077999921, 51.807798997000077 ], [ -121.533691672999936, 51.808389668000046 ], [ -121.534583690999938, 51.808424476000077 ], [ -121.534389237999932, 51.810326178000075 ], [ -121.53424755899999, 51.811711669000012 ], [ -121.533727901999967, 51.811529390000082 ], [ -121.531845150999956, 51.810584422000048 ], [ -121.531486301999976, 51.810404305000098 ], [ -121.529483591999934, 51.809066889000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "227.2", "sL_BldgLoss": "227.2", "sL_StrLoss": "227.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006BA1C79C25665EC0876FBC966BEC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.599566894999953, 51.845934010000079 ], [ -121.600052085999906, 51.845866148000034 ], [ -121.601695197999945, 51.845636402000139 ], [ -121.602885046999944, 51.845645897000075 ], [ -121.602941705999953, 51.845646342000094 ], [ -121.603276797999968, 51.845649021 ], [ -121.603478308999954, 51.845650625000047 ], [ -121.603438415999932, 51.846046568000055 ], [ -121.603055297999916, 51.84603004100007 ], [ -121.601826397999972, 51.846113213000081 ], [ -121.601285272999974, 51.846207490000054 ], [ -121.600234717999967, 51.846443108000088 ], [ -121.599993579999989, 51.846509197000017 ], [ -121.599595895999983, 51.846618185000032 ], [ -121.599447559999959, 51.846658835000035 ], [ -121.597719736999963, 51.847132325000089 ], [ -121.597119096999947, 51.847296927000073 ], [ -121.595381898, 51.847824518000046 ], [ -121.594582655999901, 51.84806724400007 ], [ -121.59247796399994, 51.848706362000101 ], [ -121.591114632999947, 51.848653901 ], [ -121.591211567999892, 51.847694563000061 ], [ -121.593161499999965, 51.846963690000088 ], [ -121.595505181999926, 51.846264401000035 ], [ -121.596450131999973, 51.846134960000015 ], [ -121.597137378999932, 51.846040796000082 ], [ -121.599566894999953, 51.845934010000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "90.1", "sL_BldgLoss": "90.1", "sL_StrLoss": "90.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C632FD12B15B5EC004C6FA06A6E64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.428982262999938, 51.801085526000108 ], [ -121.434643618999971, 51.80131155400008 ], [ -121.434422371999943, 51.803428169000064 ], [ -121.428982262999938, 51.801085526000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "100", "sL_BldgLoss": "100", "sL_StrLoss": "100", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD69236CF2595EC04A1FC21187E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.404143078999937, 51.784693535 ], [ -121.403730565999979, 51.783889730000098 ], [ -121.405982293999941, 51.783980200000052 ], [ -121.405975209999951, 51.784047575000038 ], [ -121.406525678999984, 51.784069685000098 ], [ -121.406149152999944, 51.787651037000039 ], [ -121.405650708999943, 51.787631016000041 ], [ -121.405419576999961, 51.787180712000122 ], [ -121.404696524999935, 51.785771901000047 ], [ -121.404143078999937, 51.784693535 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "50.6", "sL_BldgLoss": "50.6", "sL_StrLoss": "50.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000382BC33463675EC05C6DAC6192EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.614961480999938, 51.848485526000026 ], [ -121.612901805999968, 51.847687571000044 ], [ -121.611969796999972, 51.847396606000068 ], [ -121.611965632999926, 51.847395548000101 ], [ -121.612847513999952, 51.847405951000042 ], [ -121.612854737999953, 51.847334100000083 ], [ -121.612361426999911, 51.847249966000085 ], [ -121.61246179599999, 51.847038694000098 ], [ -121.612617054999973, 51.847049397000049 ], [ -121.61267936299997, 51.847061276000026 ], [ -121.614779184000014, 51.847859507000067 ], [ -121.615369904999937, 51.847983407000079 ], [ -121.61670568699995, 51.848016192000031 ], [ -121.61733878599992, 51.848185704000102 ], [ -121.617854700999928, 51.848213885000078 ], [ -121.617607108999977, 51.848713649000061 ], [ -121.617504147999938, 51.848921389000054 ], [ -121.617325228, 51.849282534000096 ], [ -121.616810914, 51.849131017000069 ], [ -121.616511775000021, 51.849042875000073 ], [ -121.615634952999955, 51.848739017000085 ], [ -121.615453315999972, 51.848676076000025 ], [ -121.614961480999938, 51.848485526000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024402", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10266000", "BldgCostT": "7080000", "sL_LossRatio": "1", "sL_AssetLoss": "625", "sL_BldgLoss": "625", "sL_StrLoss": "625", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000067A8401C5A645EC01C14E6A0F8E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.56373249399995, 51.821880509000081 ], [ -121.562390513999929, 51.820895073000045 ], [ -121.562546884999932, 51.819356522000049 ], [ -121.563250570999941, 51.81938379600011 ], [ -121.563406539999974, 51.817848840000039 ], [ -121.566408145999972, 51.817965131000101 ], [ -121.566431815999962, 51.817732011000075 ], [ -121.566584775999928, 51.817737934000021 ], [ -121.566624029999957, 51.81735131500006 ], [ -121.57242348299998, 51.817575772000083 ], [ -121.572344499999971, 51.818354678000098 ], [ -121.573065313999933, 51.81838255600011 ], [ -121.572702135999947, 51.821964333000018 ], [ -121.572293931999951, 51.821948546000101 ], [ -121.572267059999945, 51.822213497000043 ], [ -121.572154010999952, 51.822181087000054 ], [ -121.571516401999986, 51.822136890000074 ], [ -121.570988315999898, 51.822274995000022 ], [ -121.569860787999957, 51.823044095000071 ], [ -121.569596891999964, 51.823166601000111 ], [ -121.569205181, 51.823170901 ], [ -121.568251698999973, 51.823032690000076 ], [ -121.567393699999982, 51.822618293000055 ], [ -121.565470106999939, 51.822441705000038 ], [ -121.564189202999941, 51.822119810000075 ], [ -121.56373249399995, 51.821880509000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024403", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30918833", "BldgCostT": "21323333", "sL_LossRatio": "1", "sL_AssetLoss": "2241.5", "sL_BldgLoss": "2241.5", "sL_StrLoss": "2241.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD9BF7A4B85D5EC081DC6E1754E74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.472251298999979, 51.81256522000011 ], [ -121.470676401999953, 51.811962605000126 ], [ -121.469359119999979, 51.81144380500011 ], [ -121.468482114999986, 51.811157394000105 ], [ -121.468036414999986, 51.811048006000085 ], [ -121.46682568099996, 51.810849099000073 ], [ -121.465207, 51.810823586000041 ], [ -121.464869838999931, 51.810833881000129 ], [ -121.460578368999961, 51.810964644000144 ], [ -121.459432971999917, 51.810978547000083 ], [ -121.458920150999973, 51.810968720000048 ], [ -121.458863558999951, 51.810967640000122 ], [ -121.458717388999972, 51.810952553000099 ], [ -121.458984775999951, 51.808381249000043 ], [ -121.459709622, 51.808410009000113 ], [ -121.463370331999926, 51.808555184000113 ], [ -121.463377417999936, 51.808486979000072 ], [ -121.462893947999987, 51.808467813000057 ], [ -121.462927660999966, 51.808143305000037 ], [ -121.462160645999987, 51.808112893000072 ], [ -121.462392589999965, 51.805880596000101 ], [ -121.461329178999947, 51.805866683000019 ], [ -121.461231041999923, 51.806811 ], [ -121.460718453999974, 51.806790669000051 ], [ -121.46057809499996, 51.80814101300011 ], [ -121.459588375999914, 51.808101750000041 ], [ -121.454780477, 51.807910895000134 ], [ -121.455123873999966, 51.804611226000112 ], [ -121.454871512999915, 51.804601203000054 ], [ -121.45493507, 51.803990474000074 ], [ -121.454421939999989, 51.803970091000089 ], [ -121.454574964999949, 51.802499727000061 ], [ -121.451313233999898, 51.802370111000087 ], [ -121.45168619, 51.798788660000092 ], [ -121.454098984999945, 51.798884550000061 ], [ -121.457482582999916, 51.799018936000024 ], [ -121.457329666999925, 51.800489309000049 ], [ -121.459087010999909, 51.800559066000062 ], [ -121.459780097999968, 51.801484400000071 ], [ -121.460393888999974, 51.801806309000035 ], [ -121.460969601, 51.801921686000128 ], [ -121.4609711199999, 51.801921360000044 ], [ -121.460838322999962, 51.803199192000065 ], [ -121.461603221999894, 51.803229531000099 ], [ -121.46146915599995, 51.804519713000083 ], [ -121.462526084999965, 51.804533539000047 ], [ -121.462535257999932, 51.804263898000059 ], [ -121.462970202999912, 51.804269585000036 ], [ -121.462979374999961, 51.803999945000051 ], [ -121.463138174999983, 51.804002021000052 ], [ -121.463159778999952, 51.803794040000064 ], [ -121.463889345999959, 51.803822963000073 ], [ -121.46397618099995, 51.803885696000116 ], [ -121.466110193999938, 51.805146095000055 ], [ -121.468020602999914, 51.805728584000086 ], [ -121.468769526, 51.806295405000085 ], [ -121.468935185999939, 51.806504811000138 ], [ -121.469021612999882, 51.806954790000049 ], [ -121.46864840799995, 51.808119793000088 ], [ -121.468611504999984, 51.80923359700008 ], [ -121.468902816999957, 51.810055301000048 ], [ -121.46992571599999, 51.811139201000032 ], [ -121.470739406999925, 51.811517989000038 ], [ -121.472406989999982, 51.81194531300013 ], [ -121.473519587999974, 51.812103297000128 ], [ -121.475559786999966, 51.812220107000066 ], [ -121.477104804999968, 51.812050603000039 ], [ -121.479836180999939, 51.811906799000077 ], [ -121.480517245999934, 51.811911709000064 ], [ -121.481417292999978, 51.811918195000047 ], [ -121.482675789999988, 51.812032103000078 ], [ -121.483874031999974, 51.811946824000103 ], [ -121.483562918999894, 51.814954857000082 ], [ -121.482603570999984, 51.814916998000058 ], [ -121.482400970999933, 51.816875227000011 ], [ -121.479771605999971, 51.815577608000048 ], [ -121.478272302999926, 51.814875501000074 ], [ -121.476699584999963, 51.814206495000064 ], [ -121.476281414999946, 51.814048323000108 ], [ -121.475890113999967, 51.813900301000082 ], [ -121.474176143999941, 51.813275174000104 ], [ -121.473777116999941, 51.813128453000026 ], [ -121.472559517999983, 51.812680800000066 ], [ -121.472251298999979, 51.81256522000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024404", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "300.2", "sL_BldgLoss": "300.2", "sL_StrLoss": "300.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006C57CFE6C45C5EC0D7C39789A2E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.446806713999948, 51.792116733000036 ], [ -121.452602197999951, 51.792347257000067 ], [ -121.452229373999955, 51.795928732000057 ], [ -121.44643341799997, 51.79569818900007 ], [ -121.446806713999948, 51.792116733000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "158.5", "sL_BldgLoss": "158.5", "sL_StrLoss": "158.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059386290E8595EC0D9B6625ECBDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.40281560899993, 51.723891801000036 ], [ -121.402806697999964, 51.723854175000064 ], [ -121.403942055999948, 51.723963865000059 ], [ -121.407078050999971, 51.724266769000039 ], [ -121.406901571999953, 51.725948026000083 ], [ -121.40268866599996, 51.725778525000116 ], [ -121.402719786999981, 51.725018050000081 ], [ -121.402723110999915, 51.724937407000027 ], [ -121.402741341999942, 51.724731195000089 ], [ -121.402756419999946, 51.724560734000107 ], [ -121.402803204999955, 51.7240319940001 ], [ -121.40281560899993, 51.723891801000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14011833", "BldgCostT": "9663333", "sL_LossRatio": "1", "sL_AssetLoss": "950", "sL_BldgLoss": "950", "sL_StrLoss": "950", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005592866412645EC069162ECC3EEB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.574568104999969, 51.849432210000046 ], [ -121.575602486999955, 51.847620288000037 ], [ -121.575119178999941, 51.847358999000043 ], [ -121.573743091999944, 51.846752985000137 ], [ -121.573452599999911, 51.846557498000067 ], [ -121.572899384999971, 51.845693796000049 ], [ -121.572761, 51.845534415000017 ], [ -121.572727298999936, 51.845495612000036 ], [ -121.572513590999947, 51.845333697000036 ], [ -121.571735394999962, 51.845051003000066 ], [ -121.57142569399997, 51.844973392000057 ], [ -121.570953500999948, 51.844747501000121 ], [ -121.570699404999985, 51.844495797000057 ], [ -121.570542015999976, 51.844238091000129 ], [ -121.570522392999948, 51.84397210700007 ], [ -121.570674507999939, 51.843262405000111 ], [ -121.570765604999963, 51.842992781000042 ], [ -121.570866084999977, 51.842695389000056 ], [ -121.571049616999943, 51.842480502000107 ], [ -121.571335797999936, 51.842300110000046 ], [ -121.572103002999967, 51.841916203000032 ], [ -121.572393198999947, 51.841725197000059 ], [ -121.572528589999934, 51.841568597000112 ], [ -121.572556416999959, 51.841365588000059 ], [ -121.572466374999962, 51.84120479700006 ], [ -121.572273876999972, 51.840992401000051 ], [ -121.571297442999949, 51.840239919000076 ], [ -121.570677405999945, 51.839762088000036 ], [ -121.57060038500002, 51.839717297000064 ], [ -121.570435968, 51.839621655000045 ], [ -121.570222206999944, 51.839497301000058 ], [ -121.570067662999989, 51.839433204000137 ], [ -121.569552782999949, 51.839219707 ], [ -121.569202409999932, 51.838927381000083 ], [ -121.569048913999907, 51.838862202000016 ], [ -121.568833491999968, 51.838832309000097 ], [ -121.56637860499994, 51.838885603000072 ], [ -121.564676822999928, 51.83894785100005 ], [ -121.563871811999974, 51.838977292000067 ], [ -121.563796734999968, 51.838976885000079 ], [ -121.563081492999942, 51.838972798000036 ], [ -121.562890674999906, 51.836093207000033 ], [ -121.562704009999919, 51.835781196000084 ], [ -121.562508097999952, 51.835660388000086 ], [ -121.560695082999985, 51.834772998000069 ], [ -121.560658006999972, 51.832317388000092 ], [ -121.560609895999974, 51.831788713000094 ], [ -121.56049678399998, 51.831569498000128 ], [ -121.560276986999924, 51.831367706000059 ], [ -121.559310300999982, 51.830880713000084 ], [ -121.558951113999953, 51.83076160100012 ], [ -121.558359917999908, 51.830704503000099 ], [ -121.556421993999962, 51.830718404000066 ], [ -121.555883496999968, 51.830759512000064 ], [ -121.555615884999938, 51.83088479900006 ], [ -121.555375003, 51.831105609000076 ], [ -121.555098877999953, 51.831243196000102 ], [ -121.552765401, 51.831924807000057 ], [ -121.55229510499997, 51.831995604000028 ], [ -121.551028765999916, 51.832004274000056 ], [ -121.550191098999974, 51.8320100030001 ], [ -121.549252016999958, 51.831852201000132 ], [ -121.549004675999981, 51.831846595000066 ], [ -121.547869012999982, 51.831820891000092 ], [ -121.547268009999954, 51.831931498000081 ], [ -121.547007783999931, 51.831956396000088 ], [ -121.546157497999971, 51.831970096000077 ], [ -121.545610600999964, 51.832007198000042 ], [ -121.545513488999973, 51.832102301000127 ], [ -121.544585347999913, 51.831674199000055 ], [ -121.543152616999919, 51.831013366000022 ], [ -121.54132857899998, 51.830171962000108 ], [ -121.54134008199992, 51.829815950000082 ], [ -121.543080905999901, 51.829837530000077 ], [ -121.543067095999945, 51.830265432000068 ], [ -121.544591466, 51.83032475500012 ], [ -121.54467827499991, 51.829474261000058 ], [ -121.546637905999944, 51.830032689000028 ], [ -121.547241986999936, 51.830229298000035 ], [ -121.547833681999961, 51.830506518000071 ], [ -121.549786294999947, 51.831421311000085 ], [ -121.550405000999888, 51.831590813000055 ], [ -121.550912812999968, 51.831614994000077 ], [ -121.551727788999955, 51.831535305000045 ], [ -121.554321783, 51.830271997000075 ], [ -121.554908298999962, 51.830081105000033 ], [ -121.555915688999974, 51.829887390000088 ], [ -121.559249891999954, 51.830008493000093 ], [ -121.55956731399999, 51.830056902000102 ], [ -121.560771985999963, 51.83050410800012 ], [ -121.561989704999974, 51.830545399000101 ], [ -121.562074393, 51.830636593000101 ], [ -121.561485294999954, 51.83139429000002 ], [ -121.561340294999965, 51.83182290200007 ], [ -121.561378704000035, 51.832866910000078 ], [ -121.561660797999963, 51.833590399000066 ], [ -121.562312293, 51.834587312000089 ], [ -121.563510415999971, 51.835708205000053 ], [ -121.564516997999988, 51.836421709000078 ], [ -121.565061511999943, 51.836635310000084 ], [ -121.56569928, 51.836687993000083 ], [ -121.566721785999974, 51.836960101000045 ], [ -121.568699210999966, 51.837767589000151 ], [ -121.569597213999941, 51.838254694000085 ], [ -121.57027628699997, 51.838793009000014 ], [ -121.571209196999959, 51.839137703000063 ], [ -121.572168202999961, 51.840030700000035 ], [ -121.573426319999982, 51.840692895000103 ], [ -121.574441393999962, 51.840695791000066 ], [ -121.575557380999953, 51.840286993000035 ], [ -121.575929505999966, 51.839563494000032 ], [ -121.575741809999982, 51.839479488000094 ], [ -121.575432016999912, 51.839683199000014 ], [ -121.575510488999953, 51.839451002000047 ], [ -121.575445683999931, 51.839116233000055 ], [ -121.575530782999977, 51.839119521000015 ], [ -121.575517581999961, 51.83924973000012 ], [ -121.576666050999904, 51.839294090000053 ], [ -121.576648286999941, 51.839469354000059 ], [ -121.575159507999956, 51.841406506000062 ], [ -121.574924477999971, 51.841457698000085 ], [ -121.574974087, 51.84130531200006 ], [ -121.574728712999942, 51.841229791000039 ], [ -121.574109501, 51.841546005000048 ], [ -121.573916086999986, 51.842146995000093 ], [ -121.573711130999982, 51.842458263 ], [ -121.573305593999919, 51.843074200000046 ], [ -121.573127110999948, 51.84325219200008 ], [ -121.57203519, 51.843804797000075 ], [ -121.571672883999895, 51.844204997000119 ], [ -121.572215479999926, 51.844499795000083 ], [ -121.572891589999969, 51.84469639000006 ], [ -121.573136943999955, 51.84485062699999 ], [ -121.573610237999958, 51.845148128000091 ], [ -121.574044782999948, 51.845421301000023 ], [ -121.574185079999936, 51.84607070000007 ], [ -121.574681101999943, 51.846426790000073 ], [ -121.57553918, 51.846754163000064 ], [ -121.577335524999953, 51.847439404000113 ], [ -121.577635379999961, 51.847733908000116 ], [ -121.57806779500001, 51.848158587000086 ], [ -121.578463906999943, 51.848954799000111 ], [ -121.578952889999954, 51.848942015 ], [ -121.578460843999935, 51.848956280000031 ], [ -121.577994421999918, 51.850038499000071 ], [ -121.577219421999928, 51.850033501000034 ], [ -121.57636966499993, 51.849964747000094 ], [ -121.576261496999962, 51.849955999000102 ], [ -121.575480380999977, 51.849844100000098 ], [ -121.574472577999956, 51.84961279100002 ], [ -121.574531492999938, 51.849501427000042 ], [ -121.574568104999969, 51.849432210000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "182.2", "sL_BldgLoss": "182.2", "sL_StrLoss": "182.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BF1A148BA75C5EC0EFF89BF54EE74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.447987327999954, 51.806032747000096 ], [ -121.450431254999927, 51.806129937000129 ], [ -121.450147266999934, 51.808855864000108 ], [ -121.44746033199999, 51.808125641000046 ], [ -121.44448605499997, 51.807317213000076 ], [ -121.444633955999905, 51.805899305000104 ], [ -121.447987327999954, 51.806032747000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024408", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5928083", "BldgCostT": "4088333", "sL_LossRatio": "1", "sL_AssetLoss": "405", "sL_BldgLoss": "405", "sL_StrLoss": "405", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FBA61BEE04625EC09091A284CFE94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.531524507999947, 51.828864963000079 ], [ -121.531543103999951, 51.828683316000131 ], [ -121.530147486999965, 51.828628843000054 ], [ -121.529682491999935, 51.828509792000062 ], [ -121.529093599999939, 51.828289009000144 ], [ -121.528836973999944, 51.82817072500012 ], [ -121.529123471999981, 51.825373452000079 ], [ -121.526446798999984, 51.825268897000029 ], [ -121.52669610599996, 51.822835902000115 ], [ -121.528081200999949, 51.823210792000062 ], [ -121.52989020499993, 51.823360308000069 ], [ -121.529754710999939, 51.824382899000064 ], [ -121.529845809999941, 51.824744594000038 ], [ -121.531620197999985, 51.825943789000057 ], [ -121.53232631199991, 51.82608770300007 ], [ -121.532992195999924, 51.826096207000028 ], [ -121.533294978999947, 51.826171692000059 ], [ -121.533987891, 51.826747102000098 ], [ -121.535886793999921, 51.826798303000061 ], [ -121.536744608999967, 51.827212807000123 ], [ -121.537489983999976, 51.827480357000077 ], [ -121.537339080999956, 51.828956471000055 ], [ -121.537121198999941, 51.828921294000061 ], [ -121.536309398999933, 51.828858192000048 ], [ -121.532840863999951, 51.82892527200007 ], [ -121.532533912999938, 51.828931201000024 ], [ -121.531524507999947, 51.828864963000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28664083", "BldgCostT": "19768333", "sL_LossRatio": "1", "sL_AssetLoss": "1918.5", "sL_BldgLoss": "1918.5", "sL_StrLoss": "1918.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000065451ED2395F5EC05D493CEAF9E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.491666095999932, 51.801925556000072 ], [ -121.491689974999986, 51.801694212 ], [ -121.489795805999933, 51.801619567000103 ], [ -121.488960604999988, 51.801052884000086 ], [ -121.487751098, 51.800417687000042 ], [ -121.48697459399996, 51.799778197000052 ], [ -121.485105207999965, 51.798863884000049 ], [ -121.483824003, 51.797687485000019 ], [ -121.483269303, 51.797392696 ], [ -121.482603825999888, 51.79730300300011 ], [ -121.481965077, 51.797329994000037 ], [ -121.480637703999932, 51.797574987000075 ], [ -121.47845590499999, 51.797725909000086 ], [ -121.477333887999961, 51.797505212000068 ], [ -121.476359286999923, 51.79717761000007 ], [ -121.476215079999932, 51.797128564000026 ], [ -121.476248476999942, 51.794328834000069 ], [ -121.471366827999972, 51.794553916000019 ], [ -121.471596120999976, 51.792341919000094 ], [ -121.471928628999976, 51.792355082000029 ], [ -121.472031863999959, 51.79135902800008 ], [ -121.47587437699994, 51.791511057000079 ], [ -121.47599755399996, 51.790321521000109 ], [ -121.476542794999915, 51.790343083000103 ], [ -121.476631879999957, 51.789482634000102 ], [ -121.482427171999973, 51.789711650000065 ], [ -121.482056809999918, 51.793293231000128 ], [ -121.481511530999967, 51.79327169500003 ], [ -121.481422533999961, 51.794132144000059 ], [ -121.481151908999934, 51.794121455000031 ], [ -121.481147424999975, 51.794254928000093 ], [ -121.481582275999983, 51.794260545000014 ], [ -121.481549674999926, 51.795230978000056 ], [ -121.484592184999912, 51.795351100000083 ], [ -121.484535778999941, 51.795896803000055 ], [ -121.487876706999927, 51.796028613000018 ], [ -121.487833886999965, 51.796443171000107 ], [ -121.488511615, 51.796469897000129 ], [ -121.488435377999934, 51.797208078000047 ], [ -121.489566328999928, 51.797252669000066 ], [ -121.489487997999973, 51.798011279000029 ], [ -121.493403444999956, 51.798165567000098 ], [ -121.493245058999989, 51.79970075400005 ], [ -121.494818925999965, 51.799762735000087 ], [ -121.494982441999966, 51.798177283000022 ], [ -121.499152498999976, 51.798341400000048 ], [ -121.499299630999971, 51.796913383000081 ], [ -121.505096025999961, 51.797141250000053 ], [ -121.505032265999915, 51.797760882000048 ], [ -121.505865942999918, 51.797793631000047 ], [ -121.50584079399999, 51.798038077000072 ], [ -121.507709992999963, 51.798111482000131 ], [ -121.507646542999922, 51.798728470000114 ], [ -121.508741500999932, 51.798771455000036 ], [ -121.508462474999988, 51.801485109000048 ], [ -121.505388488999955, 51.800796508000133 ], [ -121.505188900999926, 51.800649801000141 ], [ -121.504929580999942, 51.800178396000042 ], [ -121.500283808999882, 51.799444998000105 ], [ -121.499893098999934, 51.799413609000112 ], [ -121.499469318999928, 51.799524701000031 ], [ -121.4985540159999, 51.80003460100005 ], [ -121.497494275999969, 51.800901895000067 ], [ -121.497296804999905, 51.801592689000096 ], [ -121.497117898999988, 51.801779202 ], [ -121.495768099999935, 51.802202203000036 ], [ -121.495406499999945, 51.802215102000034 ], [ -121.49484848899999, 51.801947308000088 ], [ -121.494286409999958, 51.802263508000095 ], [ -121.493879292999949, 51.80275339100011 ], [ -121.493252806999934, 51.802817506000046 ], [ -121.49263798799997, 51.802556898000077 ], [ -121.492030877, 51.802064098000116 ], [ -121.491746190999947, 51.801934492000051 ], [ -121.491666095999932, 51.801925556000072 ] ], [ [ -121.479811787999893, 51.795162327000057 ], [ -121.479824733999934, 51.794777352000047 ], [ -121.479389877999935, 51.794771728000079 ], [ -121.479398949, 51.794502085000076 ], [ -121.478964095999984, 51.794496459000058 ], [ -121.478973167999968, 51.794226817000023 ], [ -121.478538317999949, 51.794221190000044 ], [ -121.478545140999969, 51.794018460000139 ], [ -121.4775797699999, 51.79398030300009 ], [ -121.47747630299996, 51.794979768000083 ], [ -121.479469361999989, 51.795058538000013 ], [ -121.479460058999976, 51.795148431000065 ], [ -121.479811787999893, 51.795162327000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024410", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.7", "sL_BldgLoss": "46.7", "sL_StrLoss": "46.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F6C4C6FE2A595EC0799728CE13E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.391540213999974, 51.773532083000084 ], [ -121.394173916999989, 51.773638202000051 ], [ -121.394035165999981, 51.774954788000038 ], [ -121.39273051399999, 51.774212421000087 ], [ -121.391985528999925, 51.773786608000073 ], [ -121.391540213999974, 51.773532083000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024411", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.8", "sL_BldgLoss": "91.8", "sL_StrLoss": "91.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F8BE63B175A5EC036A7585616E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.406056883999938, 51.788422325000106 ], [ -121.40871951099993, 51.788529232000045 ], [ -121.408357630999916, 51.791972569000087 ], [ -121.407924123999976, 51.791623706000038 ], [ -121.407891096999904, 51.791582477000084 ], [ -121.407422606999944, 51.790997485000055 ], [ -121.407094459999897, 51.790379078000107 ], [ -121.406077197999977, 51.788461901000083 ], [ -121.406056883999938, 51.788422325000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024412", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3651583", "BldgCostT": "2518333", "sL_LossRatio": "1", "sL_AssetLoss": "221.6", "sL_BldgLoss": "221.6", "sL_StrLoss": "221.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0AEE6E7A35C5EC04FC87322E6E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.444793259000022, 51.78636707500003 ], [ -121.450587970999976, 51.786597703000055 ], [ -121.450215029999967, 51.790179189000114 ], [ -121.444419846999921, 51.78994854400004 ], [ -121.444793259000022, 51.78636707500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024414", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "89.9", "sL_BldgLoss": "89.9", "sL_StrLoss": "89.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD1CD62B975B5EC015A2E826D6E64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.428847041999987, 51.801080123000084 ], [ -121.428982262999938, 51.801085526000108 ], [ -121.434422371999943, 51.803428169000064 ], [ -121.434269247, 51.80489294200008 ], [ -121.428472196999934, 51.804661492000044 ], [ -121.428847041999987, 51.801080123000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024415", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "167.2", "sL_BldgLoss": "167.2", "sL_StrLoss": "167.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000790DF261935A5EC05B029596B6DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.412541082999908, 51.706790171000051 ], [ -121.418325103999962, 51.70702244800006 ], [ -121.417950203999951, 51.710604093000036 ], [ -121.412165711999933, 51.710371798000061 ], [ -121.412541082999908, 51.706790171000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024416", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "127.4", "sL_BldgLoss": "127.4", "sL_StrLoss": "127.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DBB6D6B45E545EC0CDB8800235EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.315311813999969, 51.83936429000007 ], [ -121.315337518999925, 51.839124858000098 ], [ -121.31497141899996, 51.839109881000084 ], [ -121.315355858999979, 51.835529 ], [ -121.315793837999976, 51.835546918000027 ], [ -121.315794739999959, 51.835538510000056 ], [ -121.321595280999972, 51.835775652000095 ], [ -121.321211348999967, 51.839356554000048 ], [ -121.321139434999949, 51.839353615000078 ], [ -121.321112859999957, 51.839601456000118 ], [ -121.315311813999969, 51.83936429000007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024419", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "363.3", "sL_BldgLoss": "363.3", "sL_StrLoss": "363.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0D449AE49585EC0DFD6C49FB4DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.372281137999934, 51.71252022000003 ], [ -121.372442843999949, 51.710990783000021 ], [ -121.371037297, 51.710933804000064 ], [ -121.371033418999957, 51.7110417170001 ], [ -121.369731329999937, 51.71102365400008 ], [ -121.369742683999974, 51.710707965000061 ], [ -121.370435087999908, 51.710189086000064 ], [ -121.37094439, 51.709904888000104 ], [ -121.371430372999939, 51.709737033000103 ], [ -121.372016087999938, 51.709534699000088 ], [ -121.37325023299999, 51.709180104000033 ], [ -121.373269701000012, 51.709177272000019 ], [ -121.373906528999939, 51.709085299000016 ], [ -121.373991416999914, 51.709085297000094 ], [ -121.374700924999971, 51.709085366000046 ], [ -121.375174209999955, 51.70908539000002 ], [ -121.375264505999979, 51.709072514000091 ], [ -121.375679994999942, 51.709013293000027 ], [ -121.375996102999977, 51.708893893000074 ], [ -121.376322685, 51.7086616980001 ], [ -121.376895707999907, 51.708089600000029 ], [ -121.377252591999977, 51.707831596000062 ], [ -121.377639215999949, 51.707635903000067 ], [ -121.377968906999968, 51.707539581000056 ], [ -121.378737134999966, 51.70738810100007 ], [ -121.37923373199996, 51.707250902000069 ], [ -121.380066959999965, 51.706876008000037 ], [ -121.381060094999967, 51.706429202000102 ], [ -121.381590422999935, 51.706247398000102 ], [ -121.383702003999929, 51.705777107000124 ], [ -121.385164084999957, 51.705475608000071 ], [ -121.385867702999988, 51.705289202000053 ], [ -121.386323688999965, 51.705123292000103 ], [ -121.386854590999974, 51.704865998000074 ], [ -121.387108707999943, 51.704720737000045 ], [ -121.387333591999948, 51.704592193000146 ], [ -121.387766187999944, 51.704290512000057 ], [ -121.388123594999911, 51.703999195000087 ], [ -121.388593108999913, 51.703456986000113 ], [ -121.388705702999957, 51.703299020000074 ], [ -121.388778740999967, 51.703196623000032 ], [ -121.389157007000023, 51.702666000000157 ], [ -121.389414871, 51.702451217000061 ], [ -121.389724612999913, 51.702193215000129 ], [ -121.389748932999964, 51.702172961000095 ], [ -121.390254936999924, 51.702193396000084 ], [ -121.389877785999943, 51.705774965000032 ], [ -121.38829858599992, 51.705711180000051 ], [ -121.388201764999934, 51.706630204000142 ], [ -121.383593984999962, 51.706443966000094 ], [ -121.383485311999962, 51.707474414000046 ], [ -121.382137509999936, 51.707419903000137 ], [ -121.381924565999938, 51.709438347000095 ], [ -121.381266213999965, 51.70941171500003 ], [ -121.381239448999963, 51.709665363000035 ], [ -121.380666051, 51.709642163000041 ], [ -121.380638937999962, 51.709899076000056 ], [ -121.378786744, 51.709824119000046 ], [ -121.378735305999939, 51.710311314000094 ], [ -121.378659920999937, 51.711025321000079 ], [ -121.378362361999933, 51.711013276000102 ], [ -121.378275653999935, 51.711834429000078 ], [ -121.378163343999987, 51.711829882000082 ], [ -121.378065702999905, 51.712754532000119 ], [ -121.372281137999934, 51.71252022000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024421", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "83", "sL_BldgLoss": "83", "sL_StrLoss": "83", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000801386D80B5C5EC06F3EBF39EDF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.436249880999966, 51.919148200000116 ], [ -121.43859112799997, 51.919241297000021 ], [ -121.438781466999927, 51.919494246000077 ], [ -121.43919814399996, 51.9200479470001 ], [ -121.439992901, 51.921104077000081 ], [ -121.440896114999987, 51.921903882000038 ], [ -121.441712929999966, 51.922627180000049 ], [ -121.44172148, 51.922634752000079 ], [ -121.44168741, 51.922960264000018 ], [ -121.435874628999926, 51.922729214000064 ], [ -121.436249880999966, 51.919148200000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024422", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "144.1", "sL_BldgLoss": "144.1", "sL_StrLoss": "144.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A47D94BA84F5EC06DCBDB6C07EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.24457565799996, 51.858111699000112 ], [ -121.24469196299999, 51.857045018000029 ], [ -121.244795792999938, 51.857280696000082 ], [ -121.245008102, 51.857463005000056 ], [ -121.24558239199996, 51.857615397000082 ], [ -121.246279508999976, 51.857643893000038 ], [ -121.246733599000024, 51.857903110000045 ], [ -121.247375904999956, 51.858172202000105 ], [ -121.249363611999925, 51.858202203000118 ], [ -121.25039612799992, 51.858193401000058 ], [ -121.250138255999943, 51.860561196000042 ], [ -121.24578358499997, 51.86038057300005 ], [ -121.245634032999959, 51.861752399000068 ], [ -121.239830457999986, 51.861511420000042 ], [ -121.240221255, 51.857930865000114 ], [ -121.24457565799996, 51.858111699000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024423", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "85.5", "sL_BldgLoss": "85.5", "sL_StrLoss": "85.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFF7F396C0595EC0DD65D88B95E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.400354537999959, 51.787418161000055 ], [ -121.400361629999935, 51.7873507850001 ], [ -121.399811122999935, 51.787328646000041 ], [ -121.400188164999989, 51.783747314000088 ], [ -121.403730565999979, 51.783889730000098 ], [ -121.404143078999937, 51.784693535 ], [ -121.404696524999935, 51.785771901000047 ], [ -121.405419576999961, 51.787180712000122 ], [ -121.405650708999943, 51.787631016000041 ], [ -121.400354537999959, 51.787418161000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024424", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46", "sL_BldgLoss": "46", "sL_StrLoss": "46", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007CFD9CC4985C5EC0E5CBD10486E74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.444260363999959, 51.809480710000116 ], [ -121.44448605499997, 51.807317213000076 ], [ -121.44746033199999, 51.808125641000046 ], [ -121.450147266999934, 51.808855864000108 ], [ -121.450058133999974, 51.809711359000048 ], [ -121.447649500999944, 51.809615573000031 ], [ -121.444260363999959, 51.809480710000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024425", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "85.5", "sL_BldgLoss": "85.5", "sL_StrLoss": "85.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE1C0F4B7D5D5EC0EB7C0DFB1CFA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.462910006999905, 51.955983394000093 ], [ -121.462923550999932, 51.955853489000056 ], [ -121.461325659999957, 51.955790351000125 ], [ -121.461327040999947, 51.955777107000117 ], [ -121.46022432099997, 51.955733522000088 ], [ -121.46030440699991, 51.954965813000015 ], [ -121.458846826999931, 51.954908186000097 ], [ -121.459013888, 51.953307142000078 ], [ -121.458590031999947, 51.953290380000098 ], [ -121.4589636799999, 51.949709388000031 ], [ -121.459180597999989, 51.949717966000101 ], [ -121.459070832999899, 51.949913398000056 ], [ -121.459058952999925, 51.950622082000059 ], [ -121.459058271999979, 51.950663523000109 ], [ -121.459355154999955, 51.951596680000122 ], [ -121.459540523, 51.951838436000067 ], [ -121.45966364899999, 51.95199901100014 ], [ -121.459723837999931, 51.952040935000099 ], [ -121.460198623999943, 51.95237165200006 ], [ -121.460631359999965, 51.952606242000066 ], [ -121.460806720999969, 51.952701315000112 ], [ -121.46108084799999, 51.95290996500006 ], [ -121.462144700999957, 51.953719652000125 ], [ -121.46300471099994, 51.954616621000071 ], [ -121.463476108999927, 51.95527797400004 ], [ -121.46376456099992, 51.955520859000082 ], [ -121.464383127999952, 51.956041582000083 ], [ -121.462910006999905, 51.955983394000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024427", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5026667", "BldgCostT": "3466667", "sL_LossRatio": "1", "sL_AssetLoss": "434.3", "sL_BldgLoss": "434.3", "sL_StrLoss": "434.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039205388D14E5EC057704751CAE94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.223741021999942, 51.830761132000085 ], [ -121.223793192999906, 51.83028444000005 ], [ -121.223656352999981, 51.83027873000006 ], [ -121.223689986999958, 51.829971406000077 ], [ -121.222805644999966, 51.829934507000083 ], [ -121.222829458999982, 51.829716962000099 ], [ -121.222300641999979, 51.829694895000095 ], [ -121.222692592999948, 51.826114297000039 ], [ -121.224230253999934, 51.826178457 ], [ -121.224523571999924, 51.823497635000116 ], [ -121.225199222999919, 51.823525821000068 ], [ -121.225244265999933, 51.823114052000037 ], [ -121.230795542999942, 51.823345482000043 ], [ -121.230819221, 51.823128783000065 ], [ -121.236617649999985, 51.823370227000026 ], [ -121.236572299999963, 51.823785788000102 ], [ -121.23715206199995, 51.823809912000087 ], [ -121.237042905999985, 51.824810247000066 ], [ -121.237899705999936, 51.82484589400012 ], [ -121.237725793999985, 51.826439853000032 ], [ -121.242887344999957, 51.826654462000086 ], [ -121.242497045000036, 51.83023512800002 ], [ -121.240748222999926, 51.83016244100002 ], [ -121.240907313, 51.830047005000061 ], [ -121.240942892999968, 51.829841911000074 ], [ -121.240242410999912, 51.829210883000066 ], [ -121.240060612999955, 51.82868539200004 ], [ -121.239387486999945, 51.828414794000075 ], [ -121.239040791999983, 51.828031710000062 ], [ -121.237530796999948, 51.827685600000052 ], [ -121.23654069299999, 51.827375113000087 ], [ -121.236359707999938, 51.827182887000049 ], [ -121.236122309999985, 51.82658610200005 ], [ -121.235776100999942, 51.826553410000081 ], [ -121.235336721999928, 51.826996307000066 ], [ -121.235132293, 51.827020516000083 ], [ -121.234688178999988, 51.826888094000012 ], [ -121.234080803999944, 51.826852508000044 ], [ -121.233851804999944, 51.826722800000034 ], [ -121.233551111999986, 51.825908204000044 ], [ -121.233029195999961, 51.825550702000051 ], [ -121.23112562199999, 51.824874204000061 ], [ -121.230435114999977, 51.824720395000078 ], [ -121.230041786999962, 51.824723306000031 ], [ -121.227855375, 51.825374093000065 ], [ -121.22607960699996, 51.826201587000064 ], [ -121.225184887999959, 51.826456494000126 ], [ -121.224962007999977, 51.826616007000091 ], [ -121.224741780999963, 51.826999100000087 ], [ -121.224696495999979, 51.827420689000071 ], [ -121.224987787999964, 51.82781239000014 ], [ -121.226126597999922, 51.82832369699999 ], [ -121.22660800599999, 51.828636989000138 ], [ -121.22720960499997, 51.829203812000102 ], [ -121.22782168, 51.829510003000081 ], [ -121.228016505999946, 51.829719410000045 ], [ -121.2280710799999, 51.830592394000071 ], [ -121.228012553999974, 51.830939257000125 ], [ -121.223741021999942, 51.830761132000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024428", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "187.7", "sL_BldgLoss": "187.7", "sL_StrLoss": "187.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095B26F9BA7615EC0D22CB751F0054A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.52324395299992, 52.048417084000029 ], [ -121.523310596, 52.047770655000093 ], [ -121.522266963999968, 52.047730059000074 ], [ -121.52263618099991, 52.044149152000095 ], [ -121.528465647999937, 52.044375789000078 ], [ -121.528399088, 52.045022223000053 ], [ -121.5294426599999, 52.045062763000075 ], [ -121.529073995999951, 52.048643688000055 ], [ -121.52324395299992, 52.048417084000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024431", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "92.1", "sL_BldgLoss": "92.1", "sL_StrLoss": "92.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C44AFDA30C5B5EC0E1779982B1F44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.423091971999938, 51.913790083000045 ], [ -121.42333372799996, 51.911489051000089 ], [ -121.418769481999931, 51.911306871000079 ], [ -121.41893167399995, 51.909764525000057 ], [ -121.419652659999926, 51.909758515000057 ], [ -121.420160207, 51.909787783000084 ], [ -121.421344190999918, 51.909945619000034 ], [ -121.422629805999932, 51.910192 ], [ -121.423386311999948, 51.910559319000122 ], [ -121.423743186999971, 51.910833567000068 ], [ -121.424607947999974, 51.911498061000025 ], [ -121.425765680999945, 51.913018595000089 ], [ -121.426713822999957, 51.913934517000015 ], [ -121.423091971999938, 51.913790083000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024432", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "112.1", "sL_BldgLoss": "112.1", "sL_StrLoss": "112.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7FA7C31A7505EC0E9418345ACF34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.257240198999966, 51.905521725000057 ], [ -121.257272965999974, 51.905220742000054 ], [ -121.256970112999966, 51.905208218000013 ], [ -121.25735989599994, 51.901627744000038 ], [ -121.263168902999951, 51.901867828000022 ], [ -121.263136179999933, 51.902168813000038 ], [ -121.263439014999932, 51.902181321000029 ], [ -121.263049724, 51.905761814000094 ], [ -121.257240198999966, 51.905521725000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024433", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.9", "sL_BldgLoss": "45.9", "sL_StrLoss": "45.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A38171D3135A5EC09DBFA65A4DED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.406055693999988, 51.851718671000114 ], [ -121.408065726999951, 51.851799260000057 ], [ -121.407945062999914, 51.851979340000085 ], [ -121.407892010999902, 51.852109388000024 ], [ -121.407851952999962, 51.852310054000064 ], [ -121.407893204999979, 51.852720796000021 ], [ -121.40801781299993, 51.853156451000103 ], [ -121.408213011999962, 51.853475332000116 ], [ -121.408473411000031, 51.853742011000044 ], [ -121.40939198699995, 51.854394287000048 ], [ -121.409659624999961, 51.854584302000085 ], [ -121.4101144199999, 51.854970241000053 ], [ -121.410569733999978, 51.855495843000014 ], [ -121.405678546999951, 51.855299801000037 ], [ -121.406055693999988, 51.851718671000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024434", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "142.8", "sL_BldgLoss": "142.8", "sL_StrLoss": "142.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0206A2E795B5EC0743392F334D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.426567, 51.695021782 ], [ -121.432349543, 51.695253351000069 ], [ -121.43197589, 51.698835082000137 ], [ -121.42619287499997, 51.698603494000096 ], [ -121.426567, 51.695021782 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024435", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "183.6", "sL_BldgLoss": "183.6", "sL_StrLoss": "183.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000598C57AC23585EC06A2EDC5EF7E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.374470075999909, 51.779078898000087 ], [ -121.380263448999983, 51.779313085000112 ], [ -121.379884813999979, 51.782894365000068 ], [ -121.374090967999933, 51.78266016000002 ], [ -121.374470075999909, 51.779078898000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024436", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "173.9", "sL_BldgLoss": "173.9", "sL_StrLoss": "173.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AABEEB1A8A545EC0BE531A945DEE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.316198684999989, 51.864259277000073 ], [ -121.316583245999936, 51.860678472000089 ], [ -121.319202249999933, 51.860785499000016 ], [ -121.319276363999947, 51.860094934000109 ], [ -121.319822450999979, 51.860117243000026 ], [ -121.319836948000017, 51.85998214800005 ], [ -121.325640756999974, 51.860219081000061 ], [ -121.325256942999943, 51.863799917000115 ], [ -121.324710807999921, 51.863777635000062 ], [ -121.32469632399993, 51.863912729000106 ], [ -121.322077118999971, 51.863805828000103 ], [ -121.322003042999967, 51.864496392000014 ], [ -121.316198684999989, 51.864259277000073 ] ], [ [ -121.32139500199996, 51.863299389000126 ], [ -121.321377177999977, 51.862957600000065 ], [ -121.32114341099998, 51.862971786000067 ], [ -121.32074410099996, 51.862776686000096 ], [ -121.320598711999949, 51.862819395000017 ], [ -121.32062059699993, 51.863000313000029 ], [ -121.320748791999961, 51.863091510000125 ], [ -121.32139500199996, 51.863299389000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024439", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "215.9", "sL_BldgLoss": "215.9", "sL_StrLoss": "215.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000850022F5C55A5EC06DFBFDE66ED94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.415823893, 51.696210829000016 ], [ -121.42160653699996, 51.696442942000026 ], [ -121.421231994999985, 51.700024634000016 ], [ -121.420963433999944, 51.700013860000091 ], [ -121.420841149999944, 51.701183041000043 ], [ -121.415057885999886, 51.700950891000083 ], [ -121.41543293899997, 51.697369223000123 ], [ -121.415701483999925, 51.697380009000014 ], [ -121.415823893, 51.696210829000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024440", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "169.4", "sL_BldgLoss": "169.4", "sL_StrLoss": "169.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FF5F962CE5C5EC010B1E2D032014A40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.447064685999962, 52.010983288000048 ], [ -121.44707273899995, 52.010906414000011 ], [ -121.44543463299999, 52.010841544000051 ], [ -121.445686630999958, 52.008436804000098 ], [ -121.445897507999959, 52.008349385000045 ], [ -121.446064508999925, 52.00817139800003 ], [ -121.445743275999973, 52.00789621400007 ], [ -121.445809858999922, 52.007260773000084 ], [ -121.44616985499998, 52.007275031000113 ], [ -121.446931100999947, 52.007507710000034 ], [ -121.447417081999959, 52.007766896000078 ], [ -121.447732320999989, 52.007977705000016 ], [ -121.448174383999955, 52.008629997000078 ], [ -121.448620012999967, 52.008852203000089 ], [ -121.448952699999921, 52.008892101000093 ], [ -121.450110579999958, 52.008682699000062 ], [ -121.450913888999963, 52.008630013000058 ], [ -121.452285202999974, 52.008998909000056 ], [ -121.452232702999979, 52.008863593000036 ], [ -121.451628679999942, 52.008612892000038 ], [ -121.450644487999909, 52.007979095000096 ], [ -121.450505416999988, 52.007815305000122 ], [ -121.45030458399998, 52.007127694000047 ], [ -121.453044209999945, 52.007236064000082 ], [ -121.45303947799998, 52.007281280000022 ], [ -121.453789685999965, 52.007310944000061 ], [ -121.453775474999958, 52.007446806000068 ], [ -121.454370474999919, 52.007470329000064 ], [ -121.453995951999957, 52.011051128000105 ], [ -121.452910817999964, 52.011008224000122 ], [ -121.452889313999904, 52.011213754000018 ], [ -121.447064685999962, 52.010983288000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024441", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "93", "sL_BldgLoss": "93", "sL_StrLoss": "93", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043E4B2D9EA595EC0CD4CFE612AE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.402924765999913, 51.788296487000125 ], [ -121.406056883999938, 51.788422325000106 ], [ -121.406077197999977, 51.788461901000083 ], [ -121.407094459999897, 51.790379078000107 ], [ -121.407422606999944, 51.790997485000055 ], [ -121.407891096999904, 51.791582477000084 ], [ -121.407924123999976, 51.791623706000038 ], [ -121.408357630999916, 51.791972569000087 ], [ -121.408343125999977, 51.792110576000049 ], [ -121.40254790699997, 51.791877812000095 ], [ -121.402924765999913, 51.788296487000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024443", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "190.3", "sL_BldgLoss": "190.3", "sL_StrLoss": "190.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AEE04C8682555EC0F1F8516834ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.331342289999924, 51.854022299000064 ], [ -121.331343510999929, 51.854010892000161 ], [ -121.330459857999983, 51.853974876000024 ], [ -121.330462638999975, 51.853948895000094 ], [ -121.329814137999961, 51.853922458000064 ], [ -121.329819603999965, 51.853871411000092 ], [ -121.329248921999962, 51.85384814400004 ], [ -121.329255556999925, 51.85378617500006 ], [ -121.328560300999953, 51.853757825000038 ], [ -121.328837103999959, 51.851172976000043 ], [ -121.329782809999969, 51.851665009000101 ], [ -121.332554694999928, 51.852127908000085 ], [ -121.333638888999957, 51.852250402000053 ], [ -121.33565630899993, 51.852288809000079 ], [ -121.336635091999966, 51.852086613000047 ], [ -121.339928219999933, 51.852213307000056 ], [ -121.34282611299993, 51.852775892000118 ], [ -121.344369383999933, 51.852978837000116 ], [ -121.344216987999914, 51.854406685000122 ], [ -121.338976750999933, 51.854193595000012 ], [ -121.338972048999921, 51.854237609000108 ], [ -121.337862133999977, 51.854192444000056 ], [ -121.337852300999927, 51.854284436000036 ], [ -121.33714568799995, 51.854255676000037 ], [ -121.337145369999945, 51.854258652000027 ], [ -121.331342289999924, 51.854022299000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024444", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "161", "sL_BldgLoss": "161", "sL_StrLoss": "161", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000050608DF5855C5EC0E51DF175E3DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.442970374999959, 51.708160293000084 ], [ -121.448754737999963, 51.708391030000023 ], [ -121.448382312999954, 51.711972770000088 ], [ -121.442597478999943, 51.711742016000088 ], [ -121.442970374999959, 51.708160293000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024445", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752667", "BldgCostT": "5346667", "sL_LossRatio": "1", "sL_AssetLoss": "485", "sL_BldgLoss": "485", "sL_StrLoss": "485", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008896651D48585EC005BB0622B0EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.367182375999946, 51.850225844000128 ], [ -121.368931403999937, 51.849984495000029 ], [ -121.36926387699998, 51.849621296000052 ], [ -121.369050202, 51.849159785000055 ], [ -121.368491013999957, 51.848953297000087 ], [ -121.367321421999961, 51.848916472000077 ], [ -121.367391497999932, 51.848256552000088 ], [ -121.368946882999936, 51.848319447000044 ], [ -121.369135627999952, 51.846541290000104 ], [ -121.374937917999972, 51.846775732000012 ], [ -121.374849219999987, 51.847612415000114 ], [ -121.380315530999923, 51.847833012000081 ], [ -121.380446929999948, 51.846592057000059 ], [ -121.38150372099993, 51.846634674000057 ], [ -121.381515988999965, 51.846518782000068 ], [ -121.384032034999919, 51.846620207000065 ], [ -121.384043277999965, 51.846513942000037 ], [ -121.385481651999896, 51.846571899000011 ], [ -121.385485314999968, 51.846537276000021 ], [ -121.391287692, 51.846770891000098 ], [ -121.39090937499995, 51.850351988000043 ], [ -121.390041579999917, 51.850317068000052 ], [ -121.389928895999958, 51.851383409000086 ], [ -121.38831704899998, 51.851318531000103 ], [ -121.388299931999953, 51.851480448000103 ], [ -121.382496944999929, 51.851246683000056 ], [ -121.382599770999917, 51.850275212000042 ], [ -121.380086982999956, 51.850173896000115 ], [ -121.379955562999911, 51.851414846000061 ], [ -121.374152629999926, 51.851180659000136 ], [ -121.374241348999959, 51.850343978000069 ], [ -121.373002796999984, 51.850293955000076 ], [ -121.372814190999961, 51.852072113000055 ], [ -121.367011208999912, 51.851837565000075 ], [ -121.367182375999946, 51.850225844000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024447", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "285.6", "sL_BldgLoss": "285.6", "sL_StrLoss": "285.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000448702AE92505EC08B9F6B0407E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.25583342699997, 51.814961309000076 ], [ -121.255923568999961, 51.814131745000068 ], [ -121.252069691999978, 51.813971921000075 ], [ -121.252459062999904, 51.810391171000035 ], [ -121.258255922999936, 51.810631523000062 ], [ -121.258177610999937, 51.811352630000016 ], [ -121.259677991, 51.811414791000097 ], [ -121.259796646999988, 51.810321845000011 ], [ -121.265593537999905, 51.81056182600004 ], [ -121.265348240999927, 51.812823972000082 ], [ -121.265205240999975, 51.814142620000062 ], [ -121.263240591999974, 51.814061320000093 ], [ -121.263122013999961, 51.815154267000104 ], [ -121.261642681999916, 51.815093028000014 ], [ -121.261597567999942, 51.81550870300002 ], [ -121.255800043, 51.815268521000107 ], [ -121.25583342699997, 51.814961309000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024449", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "139.2", "sL_BldgLoss": "139.2", "sL_StrLoss": "139.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7A47EA4E9565EC0D0D0A2EB80E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.35519623, 51.818290797000017 ], [ -121.355211955999934, 51.818142979000115 ], [ -121.354593519000019, 51.818117881000106 ], [ -121.354974530999954, 51.814536800000049 ], [ -121.355446301999947, 51.814555945000102 ], [ -121.355467920999956, 51.814352711000026 ], [ -121.361265865999925, 51.814587851000049 ], [ -121.361228568999962, 51.814938906000059 ], [ -121.361375185999989, 51.814944848000081 ], [ -121.360994694999974, 51.818525950000044 ], [ -121.35519623, 51.818290797000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024450", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4908250", "BldgCostT": "3385000", "sL_LossRatio": "1", "sL_AssetLoss": "321.8", "sL_BldgLoss": "321.8", "sL_StrLoss": "321.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007A5CF1608D5C5EC03E87648E86EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.437451352999915, 51.835665386000059 ], [ -121.437825728999911, 51.832084089000055 ], [ -121.44274446799993, 51.832279960000086 ], [ -121.442819442999948, 51.831561907000079 ], [ -121.445878264999962, 51.831683606000112 ], [ -121.446114431999945, 51.829420080000055 ], [ -121.447886631999964, 51.829490552000081 ], [ -121.448038934999929, 51.828030124000087 ], [ -121.453839185999968, 51.828260578000098 ], [ -121.45346615599999, 51.831841940000125 ], [ -121.451693852999966, 51.831771556000035 ], [ -121.451541658999972, 51.833231983000054 ], [ -121.448482712, 51.83311043600002 ], [ -121.448458335999973, 51.833344183000044 ], [ -121.45010909299998, 51.833409786000061 ], [ -121.450064152999971, 51.833840863000042 ], [ -121.448646395999972, 51.834424467000176 ], [ -121.448218784999952, 51.834545036000115 ], [ -121.44762155599993, 51.83464444100008 ], [ -121.447134658999985, 51.834657629000063 ], [ -121.446074977999928, 51.834686342000055 ], [ -121.445998136999961, 51.834696211000107 ], [ -121.445332466999915, 51.834781788000065 ], [ -121.444592995999955, 51.834932177000077 ], [ -121.443952845999917, 51.835121570000076 ], [ -121.443779437999922, 51.835196305000167 ], [ -121.44332753399999, 51.835178324000076 ], [ -121.443303675999942, 51.83540682700005 ], [ -121.442708653999972, 51.835712191000034 ], [ -121.442455807999963, 51.835864668000092 ], [ -121.437451352999915, 51.835665386000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024453", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "127", "sL_BldgLoss": "127", "sL_StrLoss": "127", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002305815BD8595EC0576065C09BDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.401307750999962, 51.723882260000011 ], [ -121.40139385, 51.723063015000044 ], [ -121.401491517999915, 51.722133636000116 ], [ -121.407277505999971, 51.722366469000043 ], [ -121.407078050999971, 51.724266769000039 ], [ -121.403942055999948, 51.723963865000059 ], [ -121.402806697999964, 51.723854175000064 ], [ -121.40281560899993, 51.723891801000036 ], [ -121.402803204999955, 51.7240319940001 ], [ -121.402756419999946, 51.724560734000107 ], [ -121.402741341999942, 51.724731195000089 ], [ -121.402723110999915, 51.724937407000027 ], [ -121.402719786999981, 51.725018050000081 ], [ -121.40268866599996, 51.725778525000116 ], [ -121.401115111999957, 51.725715176000065 ], [ -121.401307750999962, 51.723882260000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024454", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "145.7", "sL_BldgLoss": "145.7", "sL_StrLoss": "145.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000992EA3DCA6535EC063695C0F11EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.301985501999951, 51.861672621000046 ], [ -121.301995653999938, 51.861403005000092 ], [ -121.301560193999947, 51.861396718000087 ], [ -121.301587585999982, 51.860669536000088 ], [ -121.301413173999961, 51.860662383000012 ], [ -121.301643045999953, 51.858528590000056 ], [ -121.305314309999972, 51.858716298000026 ], [ -121.307738696999976, 51.858723394000016 ], [ -121.308397882999898, 51.858570996000047 ], [ -121.308859016999961, 51.858290505000078 ], [ -121.309389319999966, 51.857669497000089 ], [ -121.309634809, 51.857171327000117 ], [ -121.31002244099993, 51.857187197 ], [ -121.310007824999943, 51.857323123000121 ], [ -121.310600428999948, 51.857347381000082 ], [ -121.31059183399999, 51.857427325000053 ], [ -121.311928887999954, 51.857482046000051 ], [ -121.311637483999931, 51.860192986000087 ], [ -121.312061745999955, 51.860199076000086 ], [ -121.312051653999958, 51.860468693000065 ], [ -121.312922559999947, 51.860481189000083 ], [ -121.312892296999919, 51.861290043000054 ], [ -121.309531803, 51.861241795000097 ], [ -121.309511905999969, 51.861426793000078 ], [ -121.307226637, 51.861333215000094 ], [ -121.307221188999975, 51.861478326000046 ], [ -121.306785727999937, 51.861472058000068 ], [ -121.306775601999931, 51.861741675000111 ], [ -121.301985501999951, 51.861672621000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024455", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "86.8", "sL_BldgLoss": "86.8", "sL_StrLoss": "86.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000531286BFEE565EC086DA3EFD4AED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.353977273999959, 51.855180008000055 ], [ -121.354135803999952, 51.853691581000099 ], [ -121.35578338099999, 51.853829795000081 ], [ -121.356088607999951, 51.85379849000001 ], [ -121.357513515000022, 51.853342690000034 ], [ -121.35814781299996, 51.852686195000054 ], [ -121.359502907999939, 51.852137901000098 ], [ -121.359523110999987, 51.851985500000112 ], [ -121.359021392999921, 51.851843097000064 ], [ -121.358821791999944, 51.851696408000102 ], [ -121.358816818999969, 51.851471296000028 ], [ -121.359138881999954, 51.851412892000077 ], [ -121.359485508, 51.851445693000088 ], [ -121.359791612999928, 51.851791797000089 ], [ -121.360008313999941, 51.851830201999988 ], [ -121.360338381999952, 51.851573896000069 ], [ -121.361353954999984, 51.85135826500008 ], [ -121.360976150999988, 51.854910988 ], [ -121.360459804999934, 51.854890077000015 ], [ -121.360431242999979, 51.855158601 ], [ -121.359810601999939, 51.855133463000065 ], [ -121.359780629999975, 51.855415215000022 ], [ -121.353977273999959, 51.855180008000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024456", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11216417", "BldgCostT": "7471667", "sL_LossRatio": "1", "sL_AssetLoss": "1015.3", "sL_BldgLoss": "1015.3", "sL_StrLoss": "1015.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000936976D5EA5D5EC065F48A44F4E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.471433978999968, 51.818978827000052 ], [ -121.471590219999911, 51.817472446000068 ], [ -121.471422938999922, 51.817465829000106 ], [ -121.471501925999974, 51.816704272000074 ], [ -121.471075980999956, 51.8166874200001 ], [ -121.471088877999989, 51.816563093000134 ], [ -121.470555971999914, 51.816542007000052 ], [ -121.470595777, 51.816158284000011 ], [ -121.470075481999956, 51.816137695000101 ], [ -121.470079283999951, 51.816101040000078 ], [ -121.468894942, 51.816054163000096 ], [ -121.468970299999938, 51.815327981000038 ], [ -121.468656485999986, 51.815315558000044 ], [ -121.468689443999921, 51.814997971000061 ], [ -121.468438899999938, 51.814988052000025 ], [ -121.468440696999949, 51.814970727000059 ], [ -121.46574020599995, 51.81486378000001 ], [ -121.465772693999952, 51.814550921000091 ], [ -121.464652789999917, 51.814506551000065 ], [ -121.464888811999955, 51.812234091000064 ], [ -121.45999648499999, 51.812040129000103 ], [ -121.45999689699994, 51.812036171000052 ], [ -121.459186155999987, 51.812004008000038 ], [ -121.459188077999926, 51.811985537000048 ], [ -121.458612335999959, 51.811962693000069 ], [ -121.458717388999972, 51.810952553000099 ], [ -121.458863558999951, 51.810967640000122 ], [ -121.458920150999973, 51.810968720000048 ], [ -121.459432971999917, 51.810978547000083 ], [ -121.460578368999961, 51.810964644000144 ], [ -121.464869838999931, 51.810833881000129 ], [ -121.465207, 51.810823586000041 ], [ -121.46682568099996, 51.810849099000073 ], [ -121.468036414999986, 51.811048006000085 ], [ -121.468482114999986, 51.811157394000105 ], [ -121.469359119999979, 51.81144380500011 ], [ -121.470676401999953, 51.811962605000126 ], [ -121.472251298999979, 51.81256522000011 ], [ -121.472559517999983, 51.812680800000066 ], [ -121.473777116999941, 51.813128453000026 ], [ -121.474176143999941, 51.813275174000104 ], [ -121.475890113999967, 51.813900301000082 ], [ -121.476281414999946, 51.814048323000108 ], [ -121.476179251999966, 51.815254719000023 ], [ -121.475841331999931, 51.815074632000119 ], [ -121.472348628999953, 51.813212998000047 ], [ -121.472346134999938, 51.813236965000073 ], [ -121.472552331000017, 51.81394367500009 ], [ -121.47368673699998, 51.81605902900003 ], [ -121.474547662999953, 51.816951658000043 ], [ -121.474659862999928, 51.81713320299999 ], [ -121.474706610999959, 51.817313963000068 ], [ -121.474675051999924, 51.817520379000072 ], [ -121.474566624999952, 51.817708289000073 ], [ -121.474030897999981, 51.818636696000048 ], [ -121.473928063999949, 51.818996726000108 ], [ -121.473872588999939, 51.819472224000037 ], [ -121.473733219999957, 51.820665723000083 ], [ -121.473726662999937, 51.820936863000085 ], [ -121.473721688999987, 51.82114176600011 ], [ -121.473645922999935, 51.82147949600008 ], [ -121.473487775999928, 51.821811289000081 ], [ -121.473483175999945, 51.821819136 ], [ -121.472604254999965, 51.823311903000054 ], [ -121.472396359999976, 51.823561706000113 ], [ -121.472174337999888, 51.823737216000033 ], [ -121.471899163999964, 51.823891765000027 ], [ -121.471478828999949, 51.824055849000089 ], [ -121.471002146999965, 51.824188035000105 ], [ -121.469905462999961, 51.824416134000053 ], [ -121.46932989699999, 51.824589358000033 ], [ -121.468855, 51.824788138000017 ], [ -121.468607123999945, 51.82492477600011 ], [ -121.468333041999983, 51.825075836000089 ], [ -121.46777315599995, 51.825439966000033 ], [ -121.467411823999953, 51.825674973000076 ], [ -121.467197740999936, 51.825829562000088 ], [ -121.465761601999958, 51.826866600000109 ], [ -121.464957894999898, 51.827446895000051 ], [ -121.4642407, 51.828071199000128 ], [ -121.464124162999966, 51.828183179000092 ], [ -121.46262313299998, 51.829625377000063 ], [ -121.462416331999975, 51.829774139000051 ], [ -121.462273736999975, 51.829876749000078 ], [ -121.461843493999979, 51.830093446000056 ], [ -121.460698985999954, 51.830443648000013 ], [ -121.459885731000014, 51.830562458000031 ], [ -121.459648309999949, 51.830634534000097 ], [ -121.459571476999926, 51.830657880000068 ], [ -121.459381744999945, 51.830760022000057 ], [ -121.458107210999984, 51.831715501000076 ], [ -121.457990827999978, 51.831824574000059 ], [ -121.457911069999952, 51.831899300000067 ], [ -121.45755862399993, 51.832229574000131 ], [ -121.457397994999951, 51.832338415000059 ], [ -121.45771923699999, 51.829251654000075 ], [ -121.460013244999942, 51.829342639000068 ], [ -121.460142803999986, 51.828096974000083 ], [ -121.460347315999968, 51.826130512000091 ], [ -121.461433582999973, 51.82617357900012 ], [ -121.461531619999931, 51.825230639000104 ], [ -121.46257712499991, 51.825272079000072 ], [ -121.462655714999983, 51.824515964000042 ], [ -121.463167865999964, 51.824536261000056 ], [ -121.463210514999943, 51.82412587600011 ], [ -121.46321730399994, 51.824126145000086 ], [ -121.463291854999952, 51.823408776000086 ], [ -121.465052099999951, 51.82347851800008 ], [ -121.465148227999975, 51.822553120000094 ], [ -121.466239993, 51.82259636200012 ], [ -121.466542845999953, 51.819679947000061 ], [ -121.468513023999932, 51.819757955000064 ], [ -121.468605506999936, 51.818866894000031 ], [ -121.471433978999968, 51.818978827000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024457", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "93.6", "sL_BldgLoss": "93.6", "sL_StrLoss": "93.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDFBA75D04595EC05CD9B23A41E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.388381219999971, 51.773404718000045 ], [ -121.391540213999974, 51.773532083000084 ], [ -121.391985528999925, 51.773786608000073 ], [ -121.39273051399999, 51.774212421000087 ], [ -121.394035165999981, 51.774954788000038 ], [ -121.39379646899999, 51.777219547000094 ], [ -121.388003300999955, 51.776986044000125 ], [ -121.388035983999927, 51.776676351000106 ], [ -121.388381219999971, 51.773404718000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024460", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "148.8", "sL_BldgLoss": "148.8", "sL_StrLoss": "148.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E35749B7674F5EC0F5F3A62295E74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.238002283999919, 51.807327825000066 ], [ -121.243798658999964, 51.807568909000096 ], [ -121.243408602999963, 51.811149639000085 ], [ -121.23761175599999, 51.810908536000071 ], [ -121.238002283999919, 51.807327825000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024463", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "133.9", "sL_BldgLoss": "133.9", "sL_StrLoss": "133.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085BFB21481515EC0D2A1BA564EE74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.270930897999918, 51.804879498000069 ], [ -121.276727128999966, 51.805118916000048 ], [ -121.276339791999959, 51.808699767000071 ], [ -121.276139643999926, 51.808691504000095 ], [ -121.276076315999987, 51.809276872000062 ], [ -121.270279537999954, 51.809037420000038 ], [ -121.270667373999984, 51.805456592000013 ], [ -121.270867505999917, 51.805464864000015 ], [ -121.270930897999918, 51.804879498000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024464", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "125.6", "sL_BldgLoss": "125.6", "sL_StrLoss": "125.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C60E63BF8535EC0939AB0DC56E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.312607998, 51.813600209000128 ], [ -121.313575089999972, 51.813325314000075 ], [ -121.313651405999963, 51.813293512000079 ], [ -121.314933349999947, 51.813345999000077 ], [ -121.31490923099993, 51.813570775000102 ], [ -121.31554540399999, 51.813579891000082 ], [ -121.315543090999967, 51.813641908000051 ], [ -121.315515237999946, 51.814388753000053 ], [ -121.314822521999957, 51.814378826000095 ], [ -121.31454907, 51.816926950000024 ], [ -121.308751065999957, 51.81668944700008 ], [ -121.308893735999902, 51.815361687000077 ], [ -121.309071912999983, 51.813703349000036 ], [ -121.3118781, 51.813697009000172 ], [ -121.312607998, 51.813600209000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024466", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "1", "sL_AssetLoss": "324", "sL_BldgLoss": "324", "sL_StrLoss": "324", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000010DAFED731515EC05A9C94F6C4ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.258906702999923, 51.860233539000049 ], [ -121.258935442, 51.859489202000098 ], [ -121.256794455999952, 51.85940058100006 ], [ -121.256979328999989, 51.857700654000027 ], [ -121.259679906999963, 51.857303512000072 ], [ -121.26271, 51.857078486000091 ], [ -121.26456658099994, 51.85676369599999 ], [ -121.265156092000012, 51.85655720700008 ], [ -121.269067783999944, 51.855617202000097 ], [ -121.273655798999954, 51.854883694000087 ], [ -121.275024201999912, 51.854805395000042 ], [ -121.277562546999903, 51.854897617000042 ], [ -121.277503539999955, 51.855442620000105 ], [ -121.27788054699991, 51.855458162000076 ], [ -121.277492859999938, 51.859038852000033 ], [ -121.27228149699999, 51.858823916000084 ], [ -121.27221135399999, 51.859470976000047 ], [ -121.26678700099994, 51.859247002000075 ], [ -121.266786084999964, 51.859270856000073 ], [ -121.265479791999923, 51.859251598000107 ], [ -121.265489967999926, 51.858986994000134 ], [ -121.26535544299999, 51.858981433000089 ], [ -121.265335434999926, 51.859165738000073 ], [ -121.264528149999947, 51.859132373000136 ], [ -121.264511005999935, 51.859290258000129 ], [ -121.263613995999989, 51.85925317800006 ], [ -121.263589277999955, 51.859480780000055 ], [ -121.262619569999941, 51.859440685000067 ], [ -121.26259784299999, 51.859640703000117 ], [ -121.260240401999965, 51.859543197000079 ], [ -121.260213021999988, 51.860252869000121 ], [ -121.258906702999923, 51.860233539000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024467", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "93", "sL_BldgLoss": "93", "sL_StrLoss": "93", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000086018DCA744E5EC0EE6EAF16E9E74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.223054073999933, 51.810483771000051 ], [ -121.223805114999905, 51.810268991000036 ], [ -121.224883892999969, 51.810140791000045 ], [ -121.22517228699995, 51.810199208000036 ], [ -121.225810589999952, 51.810532408000057 ], [ -121.226112898999972, 51.810582301000053 ], [ -121.227431687999911, 51.810250407000105 ], [ -121.228652784999952, 51.81022480500009 ], [ -121.22893734899999, 51.810160886000098 ], [ -121.228668550999942, 51.812620684000102 ], [ -121.228643803999944, 51.812619652000059 ], [ -121.228556994999948, 51.813413985000118 ], [ -121.222759928999935, 51.813172132000069 ], [ -121.223054073999933, 51.810483771000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024468", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "164.4", "sL_BldgLoss": "164.4", "sL_StrLoss": "164.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE098D7980525EC0CFDA0AEDDEED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.288341230999961, 51.859840732000087 ], [ -121.288375515999959, 51.859523379000024 ], [ -121.288125093999923, 51.859513080000056 ], [ -121.288122426999962, 51.859583329000031 ], [ -121.286816107999982, 51.859564309000049 ], [ -121.28682009399995, 51.85945940200002 ], [ -121.285239044, 51.859394349000091 ], [ -121.285266883999924, 51.859136815000056 ], [ -121.284258727999912, 51.859095323000091 ], [ -121.284294733, 51.858762336 ], [ -121.283553026, 51.858731804000094 ], [ -121.283587122999961, 51.858416498000082 ], [ -121.282695318999941, 51.858379782000036 ], [ -121.282723129999951, 51.858122647000073 ], [ -121.282094614999892, 51.858096766000052 ], [ -121.282343292999911, 51.855797749000033 ], [ -121.283441993999986, 51.856051611000034 ], [ -121.284706318999937, 51.856080102000064 ], [ -121.286365501999938, 51.856706684000059 ], [ -121.287408605999957, 51.857189492000053 ], [ -121.288669611999978, 51.857585510000078 ], [ -121.289335008999956, 51.857685200000056 ], [ -121.29092638399996, 51.857833299000099 ], [ -121.292872683999988, 51.857816200000052 ], [ -121.295526588999934, 51.857935806000079 ], [ -121.29673738799994, 51.858177912000023 ], [ -121.297009148999976, 51.858210182000086 ], [ -121.296819661, 51.859967394000122 ], [ -121.294168666999951, 51.859858538000047 ], [ -121.294144850999928, 51.860079258000034 ], [ -121.288341230999961, 51.859840732000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024469", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "299", "sL_BldgLoss": "299", "sL_StrLoss": "299", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F8F5012565A5EC08306CD7450EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.411024148999957, 51.841180067000074 ], [ -121.411235322, 51.839171975000049 ], [ -121.405804305999979, 51.838954230000077 ], [ -121.406181303999958, 51.835373046000051 ], [ -121.411982307999963, 51.835605617000098 ], [ -121.411771186999914, 51.837613716000178 ], [ -121.415968297999953, 51.837781799 ], [ -121.417202065999959, 51.837831180000137 ], [ -121.416825949999975, 51.841412390000038 ], [ -121.416093716999953, 51.841383086000057 ], [ -121.411024148999957, 51.841180067000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024472", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "85.2", "sL_BldgLoss": "85.2", "sL_StrLoss": "85.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002ECBD765385D5EC02D62542928F94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.455348593999958, 51.949250700000036 ], [ -121.455415069999958, 51.948614044000067 ], [ -121.454630312999925, 51.948582981000101 ], [ -121.455004246999962, 51.945001987000083 ], [ -121.455188837999941, 51.945009295000034 ], [ -121.455286792999956, 51.944071093000034 ], [ -121.455859742999948, 51.944093770000102 ], [ -121.455901390999912, 51.943694807000043 ], [ -121.456261932, 51.94370907600004 ], [ -121.456313502999961, 51.943215015000064 ], [ -121.457216966000018, 51.943250767000066 ], [ -121.457298546999965, 51.942469010000131 ], [ -121.457802462999922, 51.942828964000078 ], [ -121.458094531999933, 51.943038293000079 ], [ -121.458201922999962, 51.943240318000065 ], [ -121.458206373999928, 51.943372752000101 ], [ -121.458207959999982, 51.943420338000109 ], [ -121.457987679999931, 51.943964471000072 ], [ -121.457768517999952, 51.944301887000037 ], [ -121.457628798999977, 51.944633470000078 ], [ -121.457674672999971, 51.945061384000113 ], [ -121.457619322, 51.94528393500007 ], [ -121.45744823099993, 51.945552262000078 ], [ -121.456795813999918, 51.946250091000103 ], [ -121.456719959999987, 51.946416986000031 ], [ -121.456720462999968, 51.946943779000087 ], [ -121.456786947999916, 51.947216101000024 ], [ -121.457113182999962, 51.947573310000102 ], [ -121.457662396999979, 51.947906966000069 ], [ -121.458322817999914, 51.94822435800009 ], [ -121.458790595999972, 51.948401061000027 ], [ -121.45919824899994, 51.948650010000094 ], [ -121.459397126999988, 51.948843059000026 ], [ -121.459461846999943, 51.949034406000067 ], [ -121.459434858999913, 51.949265264000054 ], [ -121.459354039999951, 51.949409160000059 ], [ -121.455348593999958, 51.949250700000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024473", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "81.2", "sL_BldgLoss": "81.2", "sL_StrLoss": "81.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000069739CDB444F5EC0F1223C6F9DEA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.236942288999941, 51.831966809000058 ], [ -121.237010413999897, 51.831706200000092 ], [ -121.237677110999954, 51.831734600000111 ], [ -121.238444692999963, 51.831395715000028 ], [ -121.239261873999936, 51.830960635000046 ], [ -121.240709635999949, 51.831020828000099 ], [ -121.240319119999967, 51.834601472000031 ], [ -121.236871639999947, 51.834458107000088 ], [ -121.23692651199994, 51.834222696000019 ], [ -121.236644896999906, 51.834003388000063 ], [ -121.23565358799999, 51.833737106000079 ], [ -121.23552600499994, 51.833294187000014 ], [ -121.236981079999964, 51.832488094000034 ], [ -121.237089608999895, 51.832301483000052 ], [ -121.236942288999941, 51.831966809000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024475", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "185.1", "sL_BldgLoss": "185.1", "sL_StrLoss": "185.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B938C70CD64E5EC03DA6A43D94EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.230551906999978, 51.84279649700008 ], [ -121.230517796999933, 51.842211105000054 ], [ -121.23030572199994, 51.842054504 ], [ -121.229333111999921, 51.84170698500003 ], [ -121.22865367899999, 51.841256896000104 ], [ -121.228338607999959, 51.840793991000062 ], [ -121.22827399899991, 51.840171686000097 ], [ -121.22798528, 51.839808497000014 ], [ -121.227936395999947, 51.838818713000094 ], [ -121.228777295, 51.837337504000097 ], [ -121.228683598999922, 51.837175110000061 ], [ -121.227998924999937, 51.83721790000007 ], [ -121.226829609999953, 51.837803198000124 ], [ -121.226537412999946, 51.837852997000063 ], [ -121.226074275999949, 51.837810296000036 ], [ -121.225576775999983, 51.837683507000058 ], [ -121.225663294999904, 51.836892785000011 ], [ -121.23146352299996, 51.837134487000078 ], [ -121.231399656999898, 51.837718884000061 ], [ -121.231709355999925, 51.837731781000109 ], [ -121.231499318999951, 51.839653737000077 ], [ -121.233394433999948, 51.839732638000044 ], [ -121.233287953999962, 51.84070731 ], [ -121.23367495199993, 51.840723418000117 ], [ -121.233699119999955, 51.840502181000041 ], [ -121.23700047599999, 51.840639544000091 ], [ -121.237187991999974, 51.841276810000082 ], [ -121.237466088999952, 51.841604395000068 ], [ -121.237433107999948, 51.842440403000076 ], [ -121.237945903999957, 51.842718101000052 ], [ -121.237981120999976, 51.842907601000036 ], [ -121.237847685999952, 51.843004392000083 ], [ -121.237442322999982, 51.842944605000092 ], [ -121.236963586999963, 51.842595705000043 ], [ -121.23661230499998, 51.842644095000026 ], [ -121.236262086999915, 51.843088399000038 ], [ -121.235518802999962, 51.843158200000047 ], [ -121.23306369, 51.843158213000024 ], [ -121.230551906999978, 51.84279649700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024476", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15055834", "BldgCostT": "10383334", "sL_LossRatio": "1", "sL_AssetLoss": "1168.3", "sL_BldgLoss": "1168.3", "sL_StrLoss": "1168.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002B242E3AB8565EC08CBB62C23FDE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.351763174999974, 51.736822495000126 ], [ -121.351721286, 51.736776906000074 ], [ -121.351616413, 51.736802295000089 ], [ -121.351678383999968, 51.736219122000087 ], [ -121.352146615, 51.736684294000035 ], [ -121.352903205999908, 51.736164486000114 ], [ -121.35334529, 51.736332599000022 ], [ -121.354326780999926, 51.736426602000058 ], [ -121.355135811, 51.736114592000021 ], [ -121.357135213999939, 51.736493494000072 ], [ -121.357312000999983, 51.73639660400007 ], [ -121.357304792, 51.736190103000055 ], [ -121.356552097999952, 51.735388304000061 ], [ -121.356099178999969, 51.73472459900006 ], [ -121.355753806999928, 51.734657692000091 ], [ -121.355415785999966, 51.734391393000109 ], [ -121.355270987999958, 51.733993998000095 ], [ -121.354850208999949, 51.733600897000017 ], [ -121.354759184, 51.73331179200003 ], [ -121.354364819999915, 51.733001294000069 ], [ -121.353838901999964, 51.732750709000101 ], [ -121.352269978999971, 51.732468695000073 ], [ -121.351085783999906, 51.731957406000127 ], [ -121.350583804999971, 51.731823490000082 ], [ -121.350470899999934, 51.731363506000044 ], [ -121.350348885999907, 51.731272558000065 ], [ -121.350350705999986, 51.731255427000121 ], [ -121.350325427999962, 51.731255072000089 ], [ -121.35000469699996, 51.731015996000124 ], [ -121.349897666999951, 51.730989765000125 ], [ -121.349898048999947, 51.730979303000026 ], [ -121.349852363999943, 51.730978661000044 ], [ -121.349574607999926, 51.730910586000014 ], [ -121.349465691999981, 51.730922183000054 ], [ -121.349493301999971, 51.730164317000074 ], [ -121.349059093999955, 51.73015821600012 ], [ -121.3490916599999, 51.729264495000095 ], [ -121.349747889999932, 51.729500794000039 ], [ -121.351501120999941, 51.730188094000049 ], [ -121.351849811999926, 51.730366885000109 ], [ -121.35229232399999, 51.730714002000049 ], [ -121.352815391999968, 51.731219914000079 ], [ -121.35335831399999, 51.731826493000021 ], [ -121.353684523999945, 51.732188121000071 ], [ -121.353700189999984, 51.732205492000077 ], [ -121.353797803999967, 51.732270657000065 ], [ -121.35405303099995, 51.732441008000102 ], [ -121.355572602, 51.733141296000085 ], [ -121.355948079999976, 51.73336789800004 ], [ -121.356098506999928, 51.733634679000069 ], [ -121.356169988999966, 51.734015293000013 ], [ -121.35642471, 51.734380798000082 ], [ -121.356923783999946, 51.734949605000054 ], [ -121.357716986999918, 51.735690493000092 ], [ -121.35889668899992, 51.736638513000067 ], [ -121.359196294999947, 51.736918279000058 ], [ -121.359424194999932, 51.737131099000109 ], [ -121.359789883999966, 51.737588396000085 ], [ -121.36009899599992, 51.73789310500009 ], [ -121.360403415999883, 51.738106002000059 ], [ -121.360784160999941, 51.738234808000122 ], [ -121.360705022999966, 51.738980943000051 ], [ -121.358044690999947, 51.738960202000051 ], [ -121.356820084999953, 51.73954560700011 ], [ -121.356951188999943, 51.739942891000013 ], [ -121.355296906999982, 51.740451390000047 ], [ -121.354790086999969, 51.740461304000078 ], [ -121.354647420999953, 51.740351699000044 ], [ -121.354502417999967, 51.739971399000048 ], [ -121.353384989999967, 51.739641014000078 ], [ -121.352595806999943, 51.739028598000104 ], [ -121.351813905999933, 51.737451991000093 ], [ -121.351763174999974, 51.736822495000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024477", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "112174333", "BldgCostT": "76888333", "sL_LossRatio": "0.999204003269527", "sL_AssetLoss": "8417.12", "sL_BldgLoss": "8410.42", "sL_StrLoss": "8408", "sL_NStrLoss": "2.42", "sL_ContLoss": "6.7", "geom_point": "0101000020E6100000528EEAF0E7555EC02E01212706DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.344884270999927, 51.749975444000043 ], [ -121.345002981000022, 51.749652142000095 ], [ -121.346594894999953, 51.748119913000068 ], [ -121.346976180999903, 51.747637305000083 ], [ -121.347676285999938, 51.746549 ], [ -121.348544023999978, 51.745538606000125 ], [ -121.348565088999948, 51.745408106000113 ], [ -121.348525703999883, 51.745259081000057 ], [ -121.34837238899999, 51.745143086000091 ], [ -121.348175778999945, 51.745064093000032 ], [ -121.346928689999913, 51.744914405000046 ], [ -121.346371290999954, 51.744744184000083 ], [ -121.346008400999963, 51.744603600000033 ], [ -121.34486791199997, 51.744052598000081 ], [ -121.344171414999963, 51.743768894000041 ], [ -121.343079006, 51.743313391000122 ], [ -121.34273702099992, 51.74308549900006 ], [ -121.342548187999952, 51.742906889000096 ], [ -121.342353701999969, 51.742658896000073 ], [ -121.342056593999956, 51.742350988000069 ], [ -121.341669887999913, 51.74216079800005 ], [ -121.341347102, 51.742080184000052 ], [ -121.340936601999886, 51.742072405000052 ], [ -121.339677021999975, 51.742177494000025 ], [ -121.339224588999969, 51.742113203 ], [ -121.338898097999973, 51.741944306000022 ], [ -121.33858820099999, 51.741606999000062 ], [ -121.337941897999926, 51.740784892000057 ], [ -121.337842662999961, 51.740574552000076 ], [ -121.3375163219999, 51.739882704000095 ], [ -121.33728310099994, 51.73953510300003 ], [ -121.335903895999976, 51.73851300400004 ], [ -121.335801295999943, 51.738167098000105 ], [ -121.335812486999885, 51.737857292000029 ], [ -121.335955998999935, 51.737642888000096 ], [ -121.336589488999962, 51.737016807000018 ], [ -121.33667290599999, 51.736875391000069 ], [ -121.336802496999951, 51.736476999000111 ], [ -121.336798294999952, 51.73644352000008 ], [ -121.33676948399993, 51.736214908000058 ], [ -121.336650676999938, 51.735924991000061 ], [ -121.336292151999928, 51.735348284000025 ], [ -121.335823974999954, 51.734723997000103 ], [ -121.335537944999942, 51.734204292000115 ], [ -121.335501111000013, 51.734045422000079 ], [ -121.335604336999907, 51.733199867000138 ], [ -121.335622718999957, 51.732687162000069 ], [ -121.335398244999936, 51.731698765 ], [ -121.33525154199998, 51.731412206000101 ], [ -121.334801202999955, 51.730952989000109 ], [ -121.334769288999922, 51.730920396000037 ], [ -121.334470975999977, 51.730720290000164 ], [ -121.333606289, 51.730272213000077 ], [ -121.333309039999946, 51.729966935000071 ], [ -121.332664246999983, 51.729064739000073 ], [ -121.332431674999967, 51.728888881000081 ], [ -121.33071125, 51.727822110000069 ], [ -121.330436599, 51.727651827000102 ], [ -121.331028680999964, 51.727604088000085 ], [ -121.331390235999919, 51.727551416000011 ], [ -121.33231279099995, 51.727224932000091 ], [ -121.334386946999956, 51.726427534000059 ], [ -121.335160910999917, 51.726130005000066 ], [ -121.335610419999981, 51.725934401000067 ], [ -121.335888077999954, 51.725741591000094 ], [ -121.336094274999951, 51.725374194000075 ], [ -121.336359376999937, 51.724454281000135 ], [ -121.33652684799999, 51.724137390000109 ], [ -121.336837111999898, 51.723475608000079 ], [ -121.336871698999943, 51.723355687000065 ], [ -121.336977580999957, 51.721815976000087 ], [ -121.337066581999935, 51.721389778000095 ], [ -121.337187368999977, 51.721088094000038 ], [ -121.33770434199999, 51.720449177000077 ], [ -121.338101243000011, 51.720622686000056 ], [ -121.338455470999946, 51.720938364000055 ], [ -121.339401566999953, 51.722352873000034 ], [ -121.339647869999965, 51.722659670000027 ], [ -121.339830474999985, 51.722827186000139 ], [ -121.344822399999956, 51.725910096000078 ], [ -121.346092810999977, 51.726805286000086 ], [ -121.347582479999957, 51.726021703000079 ], [ -121.349175803999955, 51.726982172000106 ], [ -121.348995818999938, 51.727213075000094 ], [ -121.348825298999913, 51.727354595000051 ], [ -121.348619979999953, 51.727454373000079 ], [ -121.348288975999978, 51.727449721000063 ], [ -121.34829880499997, 51.72718009000004 ], [ -121.347864626000018, 51.727173986000132 ], [ -121.347874456999989, 51.726904357000109 ], [ -121.347440278999954, 51.726898251000051 ], [ -121.34742061299994, 51.727437509000076 ], [ -121.346986429999944, 51.727431400000071 ], [ -121.34697659499993, 51.727701030000084 ], [ -121.347410777999954, 51.727707138000042 ], [ -121.34740249599993, 51.727934205000032 ], [ -121.345941399999958, 51.728365585000063 ], [ -121.345390493999929, 51.728558996000075 ], [ -121.345976900999972, 51.728874533000088 ], [ -121.346062145999937, 51.728951130000056 ], [ -121.346059011999898, 51.729036952000122 ], [ -121.345760997999903, 51.729032758000109 ], [ -121.345738607999976, 51.729243227000069 ], [ -121.345719221999971, 51.72942546700007 ], [ -121.34561056699998, 51.729421040000055 ], [ -121.345575585999939, 51.730378984000026 ], [ -121.34427295799992, 51.730360633000032 ], [ -121.344253249999952, 51.730899890000089 ], [ -121.344687463999946, 51.73090600900013 ], [ -121.344677612999931, 51.731175637000092 ], [ -121.346414480999911, 51.731200094 ], [ -121.346394797999949, 51.731739352000019 ], [ -121.346829020999976, 51.731745463000074 ], [ -121.346819183, 51.732015091000072 ], [ -121.347687633999968, 51.73202730700006 ], [ -121.347677798999925, 51.732296936000083 ], [ -121.34811202899999, 51.732303042000083 ], [ -121.348102194999939, 51.732572671000071 ], [ -121.348419998999972, 51.732577138000124 ], [ -121.348455517999923, 51.733016992000053 ], [ -121.348516588999971, 51.733122944000037 ], [ -121.348506938999947, 51.733387662000027 ], [ -121.348827220999979, 51.733392163000133 ], [ -121.348938381, 51.733470471000054 ], [ -121.348921522999916, 51.733933022000038 ], [ -121.349355765999931, 51.733939124000159 ], [ -121.349316465999891, 51.735017639000084 ], [ -121.34975072099995, 51.735023740000081 ], [ -121.349711427000017, 51.736102255000084 ], [ -121.350145691999899, 51.736108354000123 ], [ -121.350116228999951, 51.736917240000082 ], [ -121.349681955999955, 51.736911142000046 ], [ -121.349662306999932, 51.73745039900006 ], [ -121.350096585999978, 51.737456498000064 ], [ -121.350067118999988, 51.738265385000048 ], [ -121.350501404999932, 51.738271482000172 ], [ -121.350442482999952, 51.739889256000083 ], [ -121.350008181999925, 51.739883159000037 ], [ -121.349998358999969, 51.740152787000028 ], [ -121.349564053999927, 51.740146688000067 ], [ -121.34955422899999, 51.740416316000086 ], [ -121.348685615999955, 51.740404112000085 ], [ -121.348675783999965, 51.74067374100013 ], [ -121.348241474999966, 51.740667636000133 ], [ -121.348231641999959, 51.740937265000177 ], [ -121.347966325999934, 51.740933534000078 ], [ -121.347869111999955, 51.741847515000103 ], [ -121.348490434999974, 51.741872812000047 ], [ -121.348533617000015, 51.742000895000061 ], [ -121.349906200999953, 51.742488007000091 ], [ -121.350103791999956, 51.742653196000035 ], [ -121.35010490399999, 51.742668296000019 ], [ -121.350219807999906, 51.744228383000056 ], [ -121.350523288999966, 51.744655613000113 ], [ -121.351499689, 51.745270896000122 ], [ -121.351634586, 51.745551505000151 ], [ -121.348408081999963, 51.747448501000079 ], [ -121.348187627999948, 51.747647751000095 ], [ -121.347987137999951, 51.747639589000073 ], [ -121.347985738, 51.747677972000098 ], [ -121.347895467999976, 51.747676704000057 ], [ -121.347867796999978, 51.747936815000031 ], [ -121.347104909999956, 51.748626296000097 ], [ -121.346292285999965, 51.749811299000136 ], [ -121.346275704999982, 51.749909502000037 ], [ -121.346416202999976, 51.750002086000073 ], [ -121.346850216999954, 51.750007791000051 ], [ -121.350411487999935, 51.749698804000047 ], [ -121.350529900999916, 51.749697126000086 ], [ -121.350433785999911, 51.750601072000073 ], [ -121.350409590999931, 51.750828631000033 ], [ -121.349935541999955, 51.750904971000033 ], [ -121.349299531999961, 51.75100766000007 ], [ -121.348807377999918, 51.751083837000124 ], [ -121.347909765999972, 51.751227144000104 ], [ -121.34678921499993, 51.751307403000112 ], [ -121.345915949999892, 51.751276355000087 ], [ -121.344994344999961, 51.751139898000105 ], [ -121.343950532999898, 51.750885983000032 ], [ -121.344884270999927, 51.749975444000043 ] ], [ [ -121.339664061999926, 51.737579310000065 ], [ -121.339666300999923, 51.737518219000101 ], [ -121.339659798999946, 51.737579251000099 ], [ -121.339664061999926, 51.737579310000065 ] ], [ [ -121.340108219999962, 51.737315819000067 ], [ -121.340118101999977, 51.737046192000051 ], [ -121.34098664699999, 51.737058457000074 ], [ -121.340993735999959, 51.736864941000121 ], [ -121.339591520999988, 51.736807745000064 ], [ -121.339563696999974, 51.737068901000079 ], [ -121.339713521999926, 51.737075013000052 ], [ -121.339688497999958, 51.737309889000073 ], [ -121.340108219999962, 51.737315819000067 ] ], [ [ -121.342773064999932, 51.735734832000091 ], [ -121.342851977999942, 51.733577807000081 ], [ -121.342794277999985, 51.733576994000032 ], [ -121.342564851999938, 51.735731894000018 ], [ -121.342773064999932, 51.735734832000091 ] ], [ [ -121.34242670899999, 51.733326519000045 ], [ -121.342427604999941, 51.733302054000085 ], [ -121.341993367999947, 51.733295928000096 ], [ -121.342003236999957, 51.733026299000095 ], [ -121.341569002999961, 51.733020171000049 ], [ -121.341578875000025, 51.732750543000087 ], [ -121.34145038299999, 51.732748729000022 ], [ -121.341393340999957, 51.733284380000093 ], [ -121.34242670899999, 51.733326519000045 ] ], [ [ -121.3407236689999, 51.732376336000122 ], [ -121.340730161999943, 51.732199026000046 ], [ -121.339861711999959, 51.732186757000086 ], [ -121.339856060999963, 51.732340942000043 ], [ -121.3407236689999, 51.732376336000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024479", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "412", "sL_BldgLoss": "412", "sL_StrLoss": "412", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7FD9DCCC3575EC0A9DDD010E5DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.369007297999957, 51.74141561400009 ], [ -121.36587078699992, 51.740014092000109 ], [ -121.3642175909999, 51.739666598000028 ], [ -121.362831103999952, 51.739585386000044 ], [ -121.36270822299997, 51.73936750000005 ], [ -121.362735502999953, 51.739008590000012 ], [ -121.362263316999957, 51.738866193000064 ], [ -121.361517852999953, 51.738933487000047 ], [ -121.361543064999978, 51.738695735000064 ], [ -121.361348858000014, 51.73869302700006 ], [ -121.361358611999918, 51.738423397000098 ], [ -121.360924322999935, 51.73841734000009 ], [ -121.360930004999958, 51.738260330000038 ], [ -121.362460514999952, 51.738454788000048 ], [ -121.362962285999942, 51.738614612000056 ], [ -121.364033703999951, 51.739063600000115 ], [ -121.36510048299999, 51.739350500000072 ], [ -121.365643506999987, 51.739533491000024 ], [ -121.366735188999925, 51.739969798000111 ], [ -121.368446795999915, 51.740727113000098 ], [ -121.36898229, 51.740913391000106 ], [ -121.369685103, 51.741096506000162 ], [ -121.371499581999956, 51.741500994000084 ], [ -121.372690911999939, 51.741546491000044 ], [ -121.373347494999962, 51.741618107000058 ], [ -121.374753104999982, 51.741821487000017 ], [ -121.375379179999982, 51.741947601000035 ], [ -121.376943708999988, 51.742339104000088 ], [ -121.379216907999947, 51.742529985000054 ], [ -121.37910477299998, 51.743460895000091 ], [ -121.379057478999954, 51.743853418000064 ], [ -121.377378696999955, 51.743785511000077 ], [ -121.377901078999969, 51.743435095000045 ], [ -121.377964688999938, 51.743292706000112 ], [ -121.377981196999912, 51.7432114900001 ], [ -121.377712194999958, 51.743037706000116 ], [ -121.376714297999982, 51.742969394000092 ], [ -121.374343093999968, 51.742486602000035 ], [ -121.372699097999956, 51.74224019300005 ], [ -121.369007297999957, 51.74141561400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024480", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "21290834", "BldgCostT": "14683334", "sL_LossRatio": "1", "sL_AssetLoss": "2034.2", "sL_BldgLoss": "2034.2", "sL_StrLoss": "2034.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E0C93C2C73575EC06B0E31DABADF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.35701200199999, 51.750442106000044 ], [ -121.357018483999937, 51.750263500000123 ], [ -121.35632277500001, 51.75023523100009 ], [ -121.35633728199997, 51.750098623000092 ], [ -121.356490447999974, 51.748656230000044 ], [ -121.356708106999989, 51.748653401000055 ], [ -121.356957181000013, 51.748562240000055 ], [ -121.357015489999981, 51.748540899000062 ], [ -121.357289598999941, 51.748176310000098 ], [ -121.357271106999974, 51.747482687000065 ], [ -121.357689099999902, 51.747183609000075 ], [ -121.357745799999975, 51.746779104000119 ], [ -121.357716705999977, 51.746695108000019 ], [ -121.359225160999983, 51.746756382000058 ], [ -121.359595155999926, 51.746761547000084 ], [ -121.359619535, 51.746531791000045 ], [ -121.361063061, 51.74659040300007 ], [ -121.361065889999949, 51.746512303000017 ], [ -121.361873576999955, 51.746523566000043 ], [ -121.361941178000023, 51.745886158000062 ], [ -121.361965617999928, 51.745867606000033 ], [ -121.362258191999942, 51.745782204000037 ], [ -121.362721105, 51.74581489600007 ], [ -121.36348078899999, 51.746850298000048 ], [ -121.363737005999923, 51.746979891000095 ], [ -121.367244392, 51.746938599000089 ], [ -121.367851762999962, 51.746876518000079 ], [ -121.368006072999947, 51.746878661000061 ], [ -121.367996353999928, 51.747148292000055 ], [ -121.368430729999957, 51.747154324000078 ], [ -121.368411297999941, 51.747693585000057 ], [ -121.368845676999939, 51.747699616000013 ], [ -121.368855391999958, 51.747429984000092 ], [ -121.372447036, 51.747479785000102 ], [ -121.372478130999937, 51.747185917000138 ], [ -121.372563502999952, 51.747254787000031 ], [ -121.37289427799999, 51.747331696000032 ], [ -121.37351948499996, 51.747286198000069 ], [ -121.374132395999979, 51.747546803000048 ], [ -121.374482514999968, 51.747452797000037 ], [ -121.375236901999969, 51.74700418700008 ], [ -121.375879192999903, 51.746914394000086 ], [ -121.376245777999927, 51.746739294000086 ], [ -121.376307110999988, 51.746300601 ], [ -121.376037814, 51.745729495000027 ], [ -121.376051995999902, 51.745334997000086 ], [ -121.376281803999987, 51.744941897000018 ], [ -121.376924958999936, 51.744253974000124 ], [ -121.378822269999944, 51.744330724000051 ], [ -121.37896265399992, 51.744332662000069 ], [ -121.378885434999987, 51.744665379000047 ], [ -121.378879620999967, 51.7446904990001 ], [ -121.378167009999984, 51.746551805000102 ], [ -121.377975492999937, 51.74694690900008 ], [ -121.377812816999921, 51.747152488000019 ], [ -121.377382616999938, 51.747399404000049 ], [ -121.37373090899996, 51.749121894 ], [ -121.373220177999968, 51.749237007000033 ], [ -121.372835119999976, 51.749235812000094 ], [ -121.37082979199999, 51.749161802000081 ], [ -121.36880441299995, 51.749113001000097 ], [ -121.368360971999962, 51.749090059000089 ], [ -121.368362713999943, 51.74904174000006 ], [ -121.367567743999942, 51.749030699000052 ], [ -121.366738391999959, 51.748952796000054 ], [ -121.36479059599999, 51.74876150700009 ], [ -121.36332119299999, 51.748705391000065 ], [ -121.363066408999913, 51.748736497000031 ], [ -121.362365520999944, 51.749124723000065 ], [ -121.362260281999951, 51.749182992000051 ], [ -121.361692351999963, 51.749566442000052 ], [ -121.361554193999936, 51.74965968900004 ], [ -121.361026021, 51.749953001000101 ], [ -121.36055169899997, 51.750137191000128 ], [ -121.360187569999965, 51.750278594000051 ], [ -121.359463372999983, 51.750473096000043 ], [ -121.359121299999941, 51.750505098000062 ], [ -121.358048866000033, 51.750447134000055 ], [ -121.357769202999989, 51.750512768000107 ], [ -121.357320880999978, 51.750506502000071 ], [ -121.35701200199999, 51.750442106000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024481", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "135637636", "BldgCostT": "92257079", "sL_LossRatio": "0.999998817920278", "sL_AssetLoss": "11082.16287", "sL_BldgLoss": "11082.14977", "sL_StrLoss": "11082.00177", "sL_NStrLoss": "0.148", "sL_ContLoss": "0.0131", "geom_point": "0101000020E610000006C723C082575EC019BB2B5836DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.373347494999962, 51.741618107000058 ], [ -121.372690911999939, 51.741546491000044 ], [ -121.371499581999956, 51.741500994000084 ], [ -121.369685103, 51.741096506000162 ], [ -121.36898229, 51.740913391000106 ], [ -121.368446795999915, 51.740727113000098 ], [ -121.366735188999925, 51.739969798000111 ], [ -121.365643506999987, 51.739533491000024 ], [ -121.36510048299999, 51.739350500000072 ], [ -121.364033703999951, 51.739063600000115 ], [ -121.362962285999942, 51.738614612000056 ], [ -121.362460514999952, 51.738454788000048 ], [ -121.360930004999958, 51.738260330000038 ], [ -121.360931437999909, 51.738220687000101 ], [ -121.360786283999985, 51.738214792000051 ], [ -121.360784160999941, 51.738234808000122 ], [ -121.360403415999883, 51.738106002000059 ], [ -121.36009899599992, 51.73789310500009 ], [ -121.359789883999966, 51.737588396000085 ], [ -121.359424194999932, 51.737131099000109 ], [ -121.359196294999947, 51.736918279000058 ], [ -121.35889668899992, 51.736638513000067 ], [ -121.357716986999918, 51.735690493000092 ], [ -121.356923783999946, 51.734949605000054 ], [ -121.35642471, 51.734380798000082 ], [ -121.356169988999966, 51.734015293000013 ], [ -121.356098506999928, 51.733634679000069 ], [ -121.355948079999976, 51.73336789800004 ], [ -121.355572602, 51.733141296000085 ], [ -121.35405303099995, 51.732441008000102 ], [ -121.353797803999967, 51.732270657000065 ], [ -121.353700189999984, 51.732205492000077 ], [ -121.353684523999945, 51.732188121000071 ], [ -121.35335831399999, 51.731826493000021 ], [ -121.355050413999933, 51.731928597000021 ], [ -121.356491169999913, 51.731879301000056 ], [ -121.356954195999947, 51.731898102000059 ], [ -121.358024013999966, 51.732045008000057 ], [ -121.359517901999951, 51.732344007000087 ], [ -121.359880514999958, 51.732349703000104 ], [ -121.36098270599993, 51.732095893000071 ], [ -121.36078799799999, 51.731739098000055 ], [ -121.360615700999972, 51.731048694000052 ], [ -121.360482497999982, 51.730688197000063 ], [ -121.360275186999957, 51.730410003000102 ], [ -121.359763214999958, 51.730141001000021 ], [ -121.359277304999978, 51.729927890000084 ], [ -121.358617981999913, 51.729568411000109 ], [ -121.358331603999986, 51.729282502000046 ], [ -121.358210215, 51.7290573000001 ], [ -121.358197697999984, 51.728778 ], [ -121.358391386999955, 51.728007198000043 ], [ -121.358312218999941, 51.727479702000068 ], [ -121.358494119999975, 51.727559100000093 ], [ -121.359291001, 51.728045512000079 ], [ -121.359931597999918, 51.72851220700003 ], [ -121.362886708999937, 51.730514210000067 ], [ -121.363283612999965, 51.730676005000078 ], [ -121.364636089999919, 51.731116691000111 ], [ -121.365150522999926, 51.731335399000045 ], [ -121.365690019999974, 51.7310704000001 ], [ -121.366523507999943, 51.730787700000064 ], [ -121.366553068999963, 51.730779649000084 ], [ -121.366707708, 51.730737622000021 ], [ -121.367012707999976, 51.730654691000041 ], [ -121.367413602999974, 51.730641306000059 ], [ -121.367889601999977, 51.730674088000107 ], [ -121.368241797999971, 51.730751296000093 ], [ -121.368520293999921, 51.73086510900005 ], [ -121.374578997999933, 51.735153293000067 ], [ -121.373629903999984, 51.735629060000036 ], [ -121.371939791999964, 51.736476195000179 ], [ -121.37281611, 51.737464792000047 ], [ -121.373169490999928, 51.737901704000087 ], [ -121.373326387999967, 51.738176906000049 ], [ -121.373379473999961, 51.738457795000024 ], [ -121.373361989999921, 51.738870700000021 ], [ -121.375662483999974, 51.738855995000101 ], [ -121.376045098999953, 51.738879596000082 ], [ -121.376413496999959, 51.738941189000045 ], [ -121.376724407000012, 51.739093188000098 ], [ -121.377062722999966, 51.739357705000025 ], [ -121.377560786999965, 51.739841915000106 ], [ -121.378771413999914, 51.739621087000096 ], [ -121.379114248999912, 51.739544326000043 ], [ -121.379713611999989, 51.739410104000122 ], [ -121.380323909999987, 51.73930081 ], [ -121.380839808999923, 51.73930009 ], [ -121.381300090999929, 51.73934480700008 ], [ -121.384797797999937, 51.739842202000041 ], [ -121.38445309299999, 51.740726586000086 ], [ -121.384303792999987, 51.740874300000044 ], [ -121.384091310999949, 51.740960102000052 ], [ -121.383835099999928, 51.740994218000019 ], [ -121.383811190999907, 51.740997412000169 ], [ -121.381063530999953, 51.740897990000029 ], [ -121.380853488999918, 51.740890406000055 ], [ -121.38030590399994, 51.740888001 ], [ -121.379883905999961, 51.740920403000125 ], [ -121.378884996999929, 51.741269393000017 ], [ -121.379215212999966, 51.741926587000073 ], [ -121.379250116999984, 51.742215691000112 ], [ -121.379216907999947, 51.742529985000054 ], [ -121.376943708999988, 51.742339104000088 ], [ -121.375379179999982, 51.741947601000035 ], [ -121.374753104999982, 51.741821487000017 ], [ -121.373347494999962, 51.741618107000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024482", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "103.2", "sL_BldgLoss": "103.2", "sL_StrLoss": "103.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000055B761B119575EC0D46319EA49DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.362686808999953, 51.712154202000178 ], [ -121.362797746999931, 51.712140787000131 ], [ -121.362605303999942, 51.71395709500009 ], [ -121.361079562999961, 51.713895116000103 ], [ -121.361079232999955, 51.713898232000076 ], [ -121.358171316999986, 51.713780049000022 ], [ -121.358369913999937, 51.713652212000028 ], [ -121.358687841999981, 51.713318062 ], [ -121.358778502999954, 51.713222789000078 ], [ -121.35907739, 51.713006511000117 ], [ -121.359102364999941, 51.712995854000098 ], [ -121.359178727999975, 51.712963350000045 ], [ -121.359424190999931, 51.712858809000075 ], [ -121.36001789299999, 51.712697695000045 ], [ -121.361002217999953, 51.712454396000091 ], [ -121.361726982999983, 51.712303113000061 ], [ -121.362686808999953, 51.712154202000178 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024483", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "186659772", "BldgCostT": "121674158", "sL_LossRatio": "0.99181655803454", "sL_AssetLoss": "15956.7942867", "sL_BldgLoss": "15826.2127867", "sL_StrLoss": "15777.8117867", "sL_NStrLoss": "48.401", "sL_ContLoss": "130.5815", "geom_point": "0101000020E61000007F7A3BDB86565EC0A17F9B28B6DC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.332137519999947, 51.717779664000069 ], [ -121.332571605999959, 51.717785826000139 ], [ -121.332591443999959, 51.717246571000032 ], [ -121.333025524999954, 51.717252731000031 ], [ -121.333035441999925, 51.7169831040001 ], [ -121.333362498999975, 51.716987744000043 ], [ -121.333439644999942, 51.716988838000077 ], [ -121.333468365999948, 51.716719478000094 ], [ -121.333404245999986, 51.716718567000022 ], [ -121.33217720499999, 51.716701154000113 ], [ -121.332137519999947, 51.717779664000069 ], [ -121.329967091999919, 51.717748830000062 ], [ -121.329996895999955, 51.716939949000043 ], [ -121.330865051999922, 51.716952287000012 ], [ -121.330874978999958, 51.716682660000117 ], [ -121.330440904999989, 51.716676491000079 ], [ -121.330470697999942, 51.715867610000089 ], [ -121.330904764999929, 51.715873777000056 ], [ -121.330914692999954, 51.715604150000118 ], [ -121.330480629, 51.71559798300008 ], [ -121.330508125, 51.714851417000055 ], [ -121.330594183999963, 51.71479029100005 ], [ -121.331897052999977, 51.714808799000132 ], [ -121.332673269999972, 51.715022146000109 ], [ -121.332670790999913, 51.715089550000123 ], [ -121.333640696999936, 51.71510331200006 ], [ -121.333671591999916, 51.71481354100009 ], [ -121.333732016999974, 51.714771499000079 ], [ -121.333920884999884, 51.714386907000041 ], [ -121.33376370699996, 51.71394960100011 ], [ -121.333804593999901, 51.713566121000021 ], [ -121.339589087999954, 51.713802380000075 ], [ -121.339544908, 51.714217269000031 ], [ -121.342209724999947, 51.714326010000022 ], [ -121.342187610999929, 51.714533807000059 ], [ -121.342871214999917, 51.714561694000089 ], [ -121.34284342399998, 51.714822860000041 ], [ -121.34345681399995, 51.714847877000125 ], [ -121.343408446999916, 51.715302448000095 ], [ -121.347782792999908, 51.715480762000013 ], [ -121.347782241999951, 51.715485952000066 ], [ -121.347736761999954, 51.715913790000037 ], [ -121.348987181999959, 51.715964730000046 ], [ -121.348779178999905, 51.717921854000103 ], [ -121.349105114999929, 51.717935130000065 ], [ -121.348906453999916, 51.719804320000037 ], [ -121.349019169999906, 51.719808911000094 ], [ -121.349024348999947, 51.719760192000066 ], [ -121.350049144999957, 51.719801927000049 ], [ -121.350076719999947, 51.719542429000029 ], [ -121.34956267799997, 51.71952149600007 ], [ -121.349943243000013, 51.715940107000073 ], [ -121.349971013999934, 51.715941238000021 ], [ -121.350009980999971, 51.715574496000094 ], [ -121.350042480999889, 51.715268608000045 ], [ -121.351190557999956, 51.715315357000136 ], [ -121.351292882999971, 51.714352036000065 ], [ -121.353461066999913, 51.71444029200007 ], [ -121.353473689999987, 51.714321388000023 ], [ -121.359258390999912, 51.714556652000049 ], [ -121.359112144999941, 51.715935821000059 ], [ -121.358953495999955, 51.717431853000065 ], [ -121.360640743999923, 51.7175004180001 ], [ -121.36033203, 51.720412297000045 ], [ -121.360768245999964, 51.720430019000062 ], [ -121.360722218999982, 51.720864162000055 ], [ -121.361464152999972, 51.720894301000072 ], [ -121.361269460999935, 51.722730915000113 ], [ -121.36359959899994, 51.722825538000023 ], [ -121.36352029699998, 51.722922197000074 ], [ -121.363839204999977, 51.723269704000082 ], [ -121.363879372999961, 51.723290192000057 ], [ -121.363547712999889, 51.726420250000103 ], [ -121.359831481999933, 51.72626932900009 ], [ -121.359689354999929, 51.727609438000108 ], [ -121.360880325, 51.727626059000038 ], [ -121.360870570999964, 51.727895690000096 ], [ -121.361304758999964, 51.727901746000057 ], [ -121.361295006999981, 51.728171377000109 ], [ -121.361729200999918, 51.728177432000074 ], [ -121.361702923999957, 51.72890410600008 ], [ -121.36508676499993, 51.729041470000048 ], [ -121.365179424999937, 51.728166789000078 ], [ -121.36949215599995, 51.728341714000067 ], [ -121.369489781999974, 51.728409696000021 ], [ -121.370033389999961, 51.729020703000067 ], [ -121.3705574049999, 51.729342496000051 ], [ -121.370678799999951, 51.729550510000074 ], [ -121.370562986999971, 51.729962106000045 ], [ -121.370776986999928, 51.730188010000084 ], [ -121.370634089999925, 51.731538461000049 ], [ -121.371165139999988, 51.731545825000076 ], [ -121.371145752, 51.732085088000126 ], [ -121.371579982999904, 51.732091108000056 ], [ -121.371570289999923, 51.732360740000075 ], [ -121.372004524999937, 51.732366758000083 ], [ -121.371994835999942, 51.732636389000071 ], [ -121.372429072999978, 51.732642406000117 ], [ -121.372409697999942, 51.733181670000086 ], [ -121.372843938999921, 51.733187684 ], [ -121.372834255, 51.733457316000056 ], [ -121.373268501000013, 51.733463329000095 ], [ -121.373258817999925, 51.733732961000051 ], [ -121.374127314999967, 51.733744982000118 ], [ -121.374107957999982, 51.734284248000066 ], [ -121.374542210999962, 51.734290255000104 ], [ -121.374532534999943, 51.734559888000064 ], [ -121.374966791999952, 51.73456589500006 ], [ -121.374918425999965, 51.73591405700008 ], [ -121.374484157000012, 51.735908049000052 ], [ -121.374474480999979, 51.736177682000083 ], [ -121.374908751999939, 51.736183689000079 ], [ -121.374899077999885, 51.736453322000067 ], [ -121.375333351999956, 51.736459326000087 ], [ -121.375323680999927, 51.736728959000082 ], [ -121.37575795799999, 51.736734963000082 ], [ -121.375730021999971, 51.737513970000073 ], [ -121.375847872999941, 51.737518740000077 ], [ -121.375757744999973, 51.738371276000109 ], [ -121.376374213999924, 51.738396227000102 ], [ -121.376372981999964, 51.738407891000101 ], [ -121.376992667999943, 51.738432969000023 ], [ -121.377172774999949, 51.736728788000072 ], [ -121.378617413999962, 51.736787237000101 ], [ -121.378632215, 51.736647122000072 ], [ -121.38442, 51.736881107000031 ], [ -121.384402817999927, 51.737043943000053 ], [ -121.385542371999946, 51.737089978000022 ], [ -121.38542287099996, 51.738222767000067 ], [ -121.38704542, 51.738288294000043 ], [ -121.387022168999962, 51.738949315000113 ], [ -121.387914296999895, 51.738993611000062 ], [ -121.387607015999961, 51.741907654000073 ], [ -121.386806155999977, 51.741875322000091 ], [ -121.386684077999945, 51.743032716000059 ], [ -121.386516036999922, 51.744625776000134 ], [ -121.38072721899999, 51.744391898000082 ], [ -121.380732870999907, 51.744338383000077 ], [ -121.380776749999882, 51.743922936000054 ], [ -121.379057478999954, 51.743853418000064 ], [ -121.37910477299998, 51.743460895000091 ], [ -121.379216907999947, 51.742529985000054 ], [ -121.379250116999984, 51.742215691000112 ], [ -121.379215212999966, 51.741926587000073 ], [ -121.378884996999929, 51.741269393000017 ], [ -121.379883905999961, 51.740920403000125 ], [ -121.38030590399994, 51.740888001 ], [ -121.380853488999918, 51.740890406000055 ], [ -121.381063530999953, 51.740897990000029 ], [ -121.383811190999907, 51.740997412000169 ], [ -121.383835099999928, 51.740994218000019 ], [ -121.384091310999949, 51.740960102000052 ], [ -121.384303792999987, 51.740874300000044 ], [ -121.38445309299999, 51.740726586000086 ], [ -121.384797797999937, 51.739842202000041 ], [ -121.381300090999929, 51.73934480700008 ], [ -121.380839808999923, 51.73930009 ], [ -121.380323909999987, 51.73930081 ], [ -121.379713611999989, 51.739410104000122 ], [ -121.379114248999912, 51.739544326000043 ], [ -121.378771413999914, 51.739621087000096 ], [ -121.377560786999965, 51.739841915000106 ], [ -121.377062722999966, 51.739357705000025 ], [ -121.376724407000012, 51.739093188000098 ], [ -121.376413496999959, 51.738941189000045 ], [ -121.376045098999953, 51.738879596000082 ], [ -121.375662483999974, 51.738855995000101 ], [ -121.373361989999921, 51.738870700000021 ], [ -121.373379473999961, 51.738457795000024 ], [ -121.373326387999967, 51.738176906000049 ], [ -121.373169490999928, 51.737901704000087 ], [ -121.37281611, 51.737464792000047 ], [ -121.371939791999964, 51.736476195000179 ], [ -121.373629903999984, 51.735629060000036 ], [ -121.374578997999933, 51.735153293000067 ], [ -121.368520293999921, 51.73086510900005 ], [ -121.368241797999971, 51.730751296000093 ], [ -121.367889601999977, 51.730674088000107 ], [ -121.367413602999974, 51.730641306000059 ], [ -121.367012707999976, 51.730654691000041 ], [ -121.366707708, 51.730737622000021 ], [ -121.366553068999963, 51.730779649000084 ], [ -121.366523507999943, 51.730787700000064 ], [ -121.365690019999974, 51.7310704000001 ], [ -121.365150522999926, 51.731335399000045 ], [ -121.364636089999919, 51.731116691000111 ], [ -121.363283612999965, 51.730676005000078 ], [ -121.362886708999937, 51.730514210000067 ], [ -121.359931597999918, 51.72851220700003 ], [ -121.359291001, 51.728045512000079 ], [ -121.358494119999975, 51.727559100000093 ], [ -121.358312218999941, 51.727479702000068 ], [ -121.358039426999966, 51.726942606000051 ], [ -121.357848788999974, 51.726482429000072 ], [ -121.357775698999959, 51.726306014000059 ], [ -121.357618994999925, 51.726002899000058 ], [ -121.357374007999937, 51.725751084000073 ], [ -121.357080492999984, 51.725532284000053 ], [ -121.35589398499998, 51.724803411000082 ], [ -121.355184908999959, 51.724407710000015 ], [ -121.353953699999977, 51.72385398800003 ], [ -121.353744291999988, 51.723677405000082 ], [ -121.353104404999968, 51.722905013000045 ], [ -121.352830521, 51.722679801000069 ], [ -121.351771392999964, 51.722146694000081 ], [ -121.351367990999975, 51.721869510000076 ], [ -121.350965707999976, 51.721417003000127 ], [ -121.350592613999964, 51.721073593000078 ], [ -121.350289601999975, 51.720917292000074 ], [ -121.3499799, 51.72079680800001 ], [ -121.34967181, 51.720743803000062 ], [ -121.349229416999947, 51.720737506000056 ], [ -121.348708088999928, 51.720790004000044 ], [ -121.348212212999954, 51.720918203000089 ], [ -121.347579106999945, 51.721162103000097 ], [ -121.347213503999967, 51.721293798000062 ], [ -121.346829199999931, 51.72138340900009 ], [ -121.34629895899991, 51.721424716000051 ], [ -121.345782167999971, 51.721435118000066 ], [ -121.345298080999939, 51.72123373000003 ], [ -121.34492007199999, 51.721004312000076 ], [ -121.344563186999935, 51.72071372500006 ], [ -121.343963204999966, 51.720304409000079 ], [ -121.343149111999963, 51.719941201000069 ], [ -121.344667083, 51.718835913000113 ], [ -121.343944430999898, 51.718433205000061 ], [ -121.34321230099999, 51.718050888000036 ], [ -121.342866320999946, 51.717917195000069 ], [ -121.34207932399994, 51.717968705000061 ], [ -121.340850024999966, 51.718887013000092 ], [ -121.340374390999955, 51.718606820000034 ], [ -121.339908007999938, 51.718443932000078 ], [ -121.339455448999971, 51.71843803200013 ], [ -121.339236270999947, 51.718518111000073 ], [ -121.338930854999887, 51.718685502000049 ], [ -121.338543645999948, 51.719088743000036 ], [ -121.337992716999906, 51.718833329000113 ], [ -121.337624268999917, 51.719401002000048 ], [ -121.337410961999936, 51.719630585000097 ], [ -121.33747458699996, 51.719783366000108 ], [ -121.337651450999971, 51.719964136000073 ], [ -121.33798473399996, 51.720108108000019 ], [ -121.33770434199999, 51.720449177000077 ], [ -121.337187368999977, 51.721088094000038 ], [ -121.337066581999935, 51.721389778000095 ], [ -121.336977580999957, 51.721815976000087 ], [ -121.336871698999943, 51.723355687000065 ], [ -121.336837111999898, 51.723475608000079 ], [ -121.33652684799999, 51.724137390000109 ], [ -121.336359376999937, 51.724454281000135 ], [ -121.336094274999951, 51.725374194000075 ], [ -121.335888077999954, 51.725741591000094 ], [ -121.335610419999981, 51.725934401000067 ], [ -121.335160910999917, 51.726130005000066 ], [ -121.334386946999956, 51.726427534000059 ], [ -121.33231279099995, 51.727224932000091 ], [ -121.331390235999919, 51.727551416000011 ], [ -121.331028680999964, 51.727604088000085 ], [ -121.330436599, 51.727651827000102 ], [ -121.33032689399991, 51.727650579000063 ], [ -121.328461614999966, 51.727629507000046 ], [ -121.327829943000012, 51.727626148000077 ], [ -121.327123075999978, 51.727619703000094 ], [ -121.326904399999975, 51.727218704000045 ], [ -121.325218869999929, 51.724120197000012 ], [ -121.324683545999946, 51.723351916000084 ], [ -121.324142240999947, 51.722816285000093 ], [ -121.323156101, 51.722120350000054 ], [ -121.322267075999932, 51.721549288000126 ], [ -121.32233994299996, 51.720867664000089 ], [ -121.328106085999934, 51.721103713000097 ], [ -121.328138820000021, 51.720216425000068 ], [ -121.328220806999951, 51.71799376000012 ], [ -121.329523067999929, 51.718012286000025 ], [ -121.329513132, 51.718281912000108 ], [ -121.329947222, 51.718288084000058 ], [ -121.329937289, 51.718557711000095 ], [ -121.330371380999964, 51.718563880000012 ], [ -121.33036144799999, 51.718833508000138 ], [ -121.331663735999939, 51.718852010000148 ], [ -121.331673660999982, 51.718582382000086 ], [ -121.33210775399999, 51.718588545000074 ], [ -121.332137519999947, 51.717779664000069 ] ], [ [ -121.329473380999957, 51.719360419000097 ], [ -121.329463442999895, 51.719630047000066 ], [ -121.32989754499999, 51.719636219000023 ], [ -121.329907480999964, 51.719366592000029 ], [ -121.329473380999957, 51.719360419000097 ] ], [ [ -121.331574403999952, 51.721278654000038 ], [ -121.331564477999947, 51.721548281000061 ], [ -121.329827991999977, 51.721523607000016 ], [ -121.329815648999954, 51.721858530000112 ], [ -121.331566266999971, 51.721930109000056 ], [ -121.331549608999964, 51.72208623299999 ], [ -121.332140656999954, 51.722110394 ], [ -121.332051293999925, 51.722948081 ], [ -121.33252360299997, 51.722967385000054 ], [ -121.332372143999947, 51.724387214000096 ], [ -121.332970686999914, 51.724411675000113 ], [ -121.332885158999915, 51.725213516000053 ], [ -121.333831459999956, 51.725252184000084 ], [ -121.333941590999984, 51.724219485000077 ], [ -121.332971416999953, 51.724179843000044 ], [ -121.333306991999919, 51.721033479000027 ], [ -121.332018447999957, 51.721015191000099 ], [ -121.332008525, 51.721284818000044 ], [ -121.331574403999952, 51.721278654000038 ] ], [ [ -121.328080857999936, 51.721787571000036 ], [ -121.328095876999924, 51.721380452000105 ], [ -121.328052532999948, 51.721786412000014 ], [ -121.328080857999936, 51.721787571000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024484", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11636333", "BldgCostT": "7553333", "sL_LossRatio": "1", "sL_AssetLoss": "759.5", "sL_BldgLoss": "759.5", "sL_StrLoss": "759.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008CE1C18116585EC0D4981073C9DF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.372151177999982, 51.750275558000055 ], [ -121.372218992999962, 51.749634752000134 ], [ -121.371818471999958, 51.749629203000119 ], [ -121.371808776999927, 51.749898835000117 ], [ -121.368767963, 51.749856663000074 ], [ -121.368787392999963, 51.749317401000091 ], [ -121.368352995999913, 51.749311370000044 ], [ -121.368360971999962, 51.749090059000089 ], [ -121.36880441299995, 51.749113001000097 ], [ -121.37082979199999, 51.749161802000081 ], [ -121.372835119999976, 51.749235812000094 ], [ -121.373220177999968, 51.749237007000033 ], [ -121.37373090899996, 51.749121894 ], [ -121.377382616999938, 51.747399404000049 ], [ -121.377812816999921, 51.747152488000019 ], [ -121.377975492999937, 51.74694690900008 ], [ -121.378167009999984, 51.746551805000102 ], [ -121.378879620999967, 51.7446904990001 ], [ -121.378885434999987, 51.744665379000047 ], [ -121.37896265399992, 51.744332662000069 ], [ -121.37939632099993, 51.74433864400001 ], [ -121.379395773999974, 51.744353918000073 ], [ -121.380437181999966, 51.744396026000118 ], [ -121.380058862999988, 51.747977422000041 ], [ -121.379078953999951, 51.747937800000066 ], [ -121.378953784999936, 51.749122346000043 ], [ -121.37809106899999, 51.749087457000037 ], [ -121.377940726999952, 51.750509868000059 ], [ -121.372151177999982, 51.750275558000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024486", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "47754053", "BldgCostT": "31228746", "sL_LossRatio": "0.991573018088051", "sL_AssetLoss": "3465.060244", "sL_BldgLoss": "3435.860244", "sL_StrLoss": "3425.300244", "sL_NStrLoss": "10.56", "sL_ContLoss": "29.2", "geom_point": "0101000020E610000056D9B1F0F9545EC0EE898DFDD5DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.318305064999947, 51.713122435000031 ], [ -121.318066066999933, 51.71045534100007 ], [ -121.317836658999965, 51.707692657000095 ], [ -121.321919644, 51.707860047000047 ], [ -121.321791212999983, 51.709061723000033 ], [ -121.32225210899999, 51.709080609000047 ], [ -121.322424487999967, 51.707467575000102 ], [ -121.318140739999947, 51.707291968000092 ], [ -121.318164371999941, 51.707071013000075 ], [ -121.317848645999973, 51.707058065000062 ], [ -121.317957901999932, 51.706442899000066 ], [ -121.318356195999925, 51.705621027000028 ], [ -121.318386511999933, 51.705558504000109 ], [ -121.31845691299999, 51.705460073000033 ], [ -121.318750215999941, 51.705050083000117 ], [ -121.319875909999951, 51.705658297000042 ], [ -121.321604111999974, 51.706540288000021 ], [ -121.32212101399989, 51.706759301000041 ], [ -121.323673385999953, 51.707180806000046 ], [ -121.324698606999988, 51.70757528700009 ], [ -121.325051191999947, 51.70764640000008 ], [ -121.325487792, 51.707637308000102 ], [ -121.325899614999969, 51.707547998000116 ], [ -121.32677940399995, 51.707237793000047 ], [ -121.328163492, 51.706583207000051 ], [ -121.328511685, 51.706476904000048 ], [ -121.328902082999946, 51.706438888000072 ], [ -121.329292494999919, 51.706481899000082 ], [ -121.329941071999926, 51.706667071000012 ], [ -121.329940304000019, 51.706687938000087 ], [ -121.330018032999988, 51.706689044000036 ], [ -121.330560797999937, 51.706844002000139 ], [ -121.331008594999957, 51.706934299000032 ], [ -121.331887501999958, 51.70704039000006 ], [ -121.332232494999985, 51.707116996000124 ], [ -121.332344295, 51.70714180300012 ], [ -121.333008777999979, 51.707365991000103 ], [ -121.333087281999909, 51.707392494000054 ], [ -121.333802288999905, 51.707632102000034 ], [ -121.336170411999944, 51.708277377000094 ], [ -121.33652869499997, 51.708417991000061 ], [ -121.338109684999949, 51.709090401000019 ], [ -121.339442704999968, 51.70975989300009 ], [ -121.342374788999948, 51.711411884000036 ], [ -121.342924410999927, 51.711665391000054 ], [ -121.34344280599997, 51.711816904000067 ], [ -121.343730343999965, 51.711860543000078 ], [ -121.344010210999926, 51.711902998000042 ], [ -121.344652418999914, 51.711933539 ], [ -121.344629807999965, 51.712146124000121 ], [ -121.338845503999949, 51.71191012000002 ], [ -121.338970982999953, 51.710731852000094 ], [ -121.338476983999925, 51.710711684000032 ], [ -121.338471715999972, 51.710855448000054 ], [ -121.337169651999929, 51.710837024000085 ], [ -121.337159763, 51.711106652000034 ], [ -121.335857693999969, 51.711088215000146 ], [ -121.3358675899999, 51.710818586000066 ], [ -121.335700144999961, 51.710816213000065 ], [ -121.335662887999931, 51.710706808000069 ], [ -121.335441255, 51.710603135000092 ], [ -121.335453368999964, 51.710273180000094 ], [ -121.334151325, 51.71025472300007 ], [ -121.33414141899999, 51.710524351000075 ], [ -121.333056388999964, 51.710508959000066 ], [ -121.333013473999983, 51.710911440000054 ], [ -121.332728975999956, 51.710953096000011 ], [ -121.332339082999937, 51.710956004000103 ], [ -121.331394482999954, 51.710618493000084 ], [ -121.330980091999933, 51.710919006000047 ], [ -121.330785206999977, 51.711491499000033 ], [ -121.330998210999937, 51.711594003000144 ], [ -121.331616720999961, 51.711665196000119 ], [ -121.331770125, 51.711856102000098 ], [ -121.331824886999954, 51.712324703000021 ], [ -121.331506502999929, 51.712706289000032 ], [ -121.331241118999927, 51.712847296000099 ], [ -121.330725697999981, 51.712704893000122 ], [ -121.330348617999903, 51.712726304000071 ], [ -121.33002231599994, 51.712928495000071 ], [ -121.330156694999971, 51.713200489 ], [ -121.330130686999979, 51.713505291000089 ], [ -121.32992278799999, 51.713646310000108 ], [ -121.329631408999944, 51.713679095000018 ], [ -121.328035401999927, 51.713043912000074 ], [ -121.326795505999954, 51.712864393000075 ], [ -121.325841704999945, 51.712851590000113 ], [ -121.325526005999961, 51.712747605000104 ], [ -121.32491428099992, 51.712478493000127 ], [ -121.324434790999987, 51.712148101000103 ], [ -121.324397824999977, 51.711975706 ], [ -121.32456388599995, 51.71178919400004 ], [ -121.324311200999915, 51.711569789000031 ], [ -121.323746283999967, 51.71159829200009 ], [ -121.323147500999966, 51.711356205000094 ], [ -121.322491614999947, 51.711463 ], [ -121.321844801999987, 51.711688003000063 ], [ -121.320822005999958, 51.711169598000026 ], [ -121.320206307999939, 51.711430294000124 ], [ -121.320051258999953, 51.711807525000062 ], [ -121.31965118, 51.711791125000062 ], [ -121.319493283000014, 51.713267616000117 ], [ -121.31831637399992, 51.713219362000039 ], [ -121.318305064999947, 51.713122435000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024487", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9130833", "BldgCostT": "6033333", "sL_LossRatio": "1", "sL_AssetLoss": "1195", "sL_BldgLoss": "1195", "sL_StrLoss": "1195", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B18CECCE43575EC0E362FB7F0BE04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.360008414999953, 51.751710865000092 ], [ -121.36002089599998, 51.751366343000043 ], [ -121.359419641999921, 51.751341929000056 ], [ -121.359118076999906, 51.751179326000056 ], [ -121.358638745999954, 51.750954822000054 ], [ -121.358655718999941, 51.750794920000068 ], [ -121.358280826999945, 51.750789683000058 ], [ -121.357873446, 51.750657324000045 ], [ -121.357878634999949, 51.750514297000031 ], [ -121.357769202999989, 51.750512768000107 ], [ -121.358048866000033, 51.750447134000055 ], [ -121.359121299999941, 51.750505098000062 ], [ -121.359463372999983, 51.750473096000043 ], [ -121.360187569999965, 51.750278594000051 ], [ -121.36055169899997, 51.750137191000128 ], [ -121.361026021, 51.749953001000101 ], [ -121.361554193999936, 51.74965968900004 ], [ -121.361692351999963, 51.749566442000052 ], [ -121.362260281999951, 51.749182992000051 ], [ -121.362365520999944, 51.749124723000065 ], [ -121.363066408999913, 51.748736497000031 ], [ -121.36332119299999, 51.748705391000065 ], [ -121.36479059599999, 51.74876150700009 ], [ -121.366738391999959, 51.748952796000054 ], [ -121.367567743999942, 51.749030699000052 ], [ -121.367493925, 51.749029674000084 ], [ -121.367484203999965, 51.749299305000065 ], [ -121.367393549999974, 51.749298045000039 ], [ -121.367381898999923, 51.74940802000004 ], [ -121.367275535999966, 51.749403708000017 ], [ -121.367050115999959, 51.751531424000049 ], [ -121.364403477999957, 51.751424097000019 ], [ -121.364390800999942, 51.75154368600009 ], [ -121.361322882999985, 51.751419199000075 ], [ -121.361295320999886, 51.752180588000094 ], [ -121.360581847999967, 51.752170636000109 ], [ -121.360008414999953, 51.751710865000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024488", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117288917", "BldgCostT": "79681667", "sL_LossRatio": "0.999997645405421", "sL_AssetLoss": "11449.95416", "sL_BldgLoss": "11449.9272", "sL_StrLoss": "11449.8", "sL_NStrLoss": "0.1272", "sL_ContLoss": "0.02696", "geom_point": "0101000020E6100000722D7B8E5F565EC0814D428ED2DC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.358024013999966, 51.732045008000057 ], [ -121.356954195999947, 51.731898102000059 ], [ -121.356491169999913, 51.731879301000056 ], [ -121.355050413999933, 51.731928597000021 ], [ -121.35335831399999, 51.731826493000021 ], [ -121.352815391999968, 51.731219914000079 ], [ -121.35229232399999, 51.730714002000049 ], [ -121.351849811999926, 51.730366885000109 ], [ -121.351501120999941, 51.730188094000049 ], [ -121.349747889999932, 51.729500794000039 ], [ -121.3490916599999, 51.729264495000095 ], [ -121.349098394999913, 51.729079699000096 ], [ -121.350782913999964, 51.729103357000049 ], [ -121.35086000699999, 51.728377872000053 ], [ -121.350194983, 51.728350800000065 ], [ -121.350287760999919, 51.727477804000038 ], [ -121.348619979999953, 51.727454373000079 ], [ -121.348825298999913, 51.727354595000051 ], [ -121.348995818999938, 51.727213075000094 ], [ -121.349175803999955, 51.726982172000106 ], [ -121.347582479999957, 51.726021703000079 ], [ -121.346092810999977, 51.726805286000086 ], [ -121.344822399999956, 51.725910096000078 ], [ -121.339830474999985, 51.722827186000139 ], [ -121.339647869999965, 51.722659670000027 ], [ -121.339401566999953, 51.722352873000034 ], [ -121.338455470999946, 51.720938364000055 ], [ -121.338101243000011, 51.720622686000056 ], [ -121.33770434199999, 51.720449177000077 ], [ -121.33798473399996, 51.720108108000019 ], [ -121.337651450999971, 51.719964136000073 ], [ -121.33747458699996, 51.719783366000108 ], [ -121.337410961999936, 51.719630585000097 ], [ -121.337624268999917, 51.719401002000048 ], [ -121.337992716999906, 51.718833329000113 ], [ -121.338543645999948, 51.719088743000036 ], [ -121.338930854999887, 51.718685502000049 ], [ -121.339236270999947, 51.718518111000073 ], [ -121.339455448999971, 51.71843803200013 ], [ -121.339908007999938, 51.718443932000078 ], [ -121.340374390999955, 51.718606820000034 ], [ -121.340850024999966, 51.718887013000092 ], [ -121.34207932399994, 51.717968705000061 ], [ -121.342866320999946, 51.717917195000069 ], [ -121.34321230099999, 51.718050888000036 ], [ -121.343944430999898, 51.718433205000061 ], [ -121.344667083, 51.718835913000113 ], [ -121.343149111999963, 51.719941201000069 ], [ -121.343963204999966, 51.720304409000079 ], [ -121.344563186999935, 51.72071372500006 ], [ -121.34492007199999, 51.721004312000076 ], [ -121.345298080999939, 51.72123373000003 ], [ -121.345782167999971, 51.721435118000066 ], [ -121.34629895899991, 51.721424716000051 ], [ -121.346829199999931, 51.72138340900009 ], [ -121.347213503999967, 51.721293798000062 ], [ -121.347579106999945, 51.721162103000097 ], [ -121.348212212999954, 51.720918203000089 ], [ -121.348708088999928, 51.720790004000044 ], [ -121.349229416999947, 51.720737506000056 ], [ -121.34967181, 51.720743803000062 ], [ -121.3499799, 51.72079680800001 ], [ -121.350289601999975, 51.720917292000074 ], [ -121.350592613999964, 51.721073593000078 ], [ -121.350965707999976, 51.721417003000127 ], [ -121.351367990999975, 51.721869510000076 ], [ -121.351771392999964, 51.722146694000081 ], [ -121.352830521, 51.722679801000069 ], [ -121.353104404999968, 51.722905013000045 ], [ -121.353744291999988, 51.723677405000082 ], [ -121.353953699999977, 51.72385398800003 ], [ -121.355184908999959, 51.724407710000015 ], [ -121.35589398499998, 51.724803411000082 ], [ -121.357080492999984, 51.725532284000053 ], [ -121.357374007999937, 51.725751084000073 ], [ -121.357618994999925, 51.726002899000058 ], [ -121.357775698999959, 51.726306014000059 ], [ -121.357848788999974, 51.726482429000072 ], [ -121.358039426999966, 51.726942606000051 ], [ -121.358312218999941, 51.727479702000068 ], [ -121.358391386999955, 51.728007198000043 ], [ -121.358197697999984, 51.728778 ], [ -121.358210215, 51.7290573000001 ], [ -121.358331603999986, 51.729282502000046 ], [ -121.358617981999913, 51.729568411000109 ], [ -121.359277304999978, 51.729927890000084 ], [ -121.359763214999958, 51.730141001000021 ], [ -121.360275186999957, 51.730410003000102 ], [ -121.360482497999982, 51.730688197000063 ], [ -121.360615700999972, 51.731048694000052 ], [ -121.36078799799999, 51.731739098000055 ], [ -121.36098270599993, 51.732095893000071 ], [ -121.359880514999958, 51.732349703000104 ], [ -121.359517901999951, 51.732344007000087 ], [ -121.358024013999966, 51.732045008000057 ] ], [ [ -121.350430889999984, 51.726130976 ], [ -121.350545385999951, 51.725053514000095 ], [ -121.350114068999972, 51.725047458000063 ], [ -121.350104253000012, 51.72531708700015 ], [ -121.34995122499997, 51.725314938000047 ], [ -121.349670090999922, 51.725310989000029 ], [ -121.349650449999913, 51.725850248000043 ], [ -121.34984213599995, 51.725852940000074 ], [ -121.350084616999979, 51.725856346000057 ], [ -121.350074798999955, 51.726125975000059 ], [ -121.350430889999984, 51.726130976 ] ], [ [ -121.35054971299995, 51.725012784000072 ], [ -121.350574008999942, 51.724784149000122 ], [ -121.350558043999968, 51.72478392500004 ], [ -121.35054971299995, 51.725012784000072 ] ], [ [ -121.345385592999918, 51.723685737000096 ], [ -121.345407240999975, 51.723092892000075 ], [ -121.345339046999953, 51.723091931000056 ], [ -121.345276353999935, 51.723681284000072 ], [ -121.345385592999918, 51.723685737000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024489", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "59.9", "sL_BldgLoss": "59.9", "sL_StrLoss": "59.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015BD19562D565EC05EB6630B3DDD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.345941399999958, 51.728365585000063 ], [ -121.34740249599993, 51.727934205000032 ], [ -121.347381275, 51.728516024000058 ], [ -121.346512891000017, 51.728503806000042 ], [ -121.346503049999967, 51.728773436000061 ], [ -121.346068855999988, 51.72876732300012 ], [ -121.346062145999937, 51.728951130000056 ], [ -121.345976900999972, 51.728874533000088 ], [ -121.345390493999929, 51.728558996000075 ], [ -121.345941399999958, 51.728365585000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024490", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6686917", "BldgCostT": "4611667", "sL_LossRatio": "1", "sL_AssetLoss": "452.2", "sL_BldgLoss": "452.2", "sL_StrLoss": "452.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013F194DDE5565EC0DF2E03E7EFDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.353862179999965, 51.710154204000091 ], [ -121.352262215999957, 51.709205603000051 ], [ -121.352073495999932, 51.708788402000131 ], [ -121.352067598999938, 51.707850937000096 ], [ -121.353987205999942, 51.708433808000088 ], [ -121.358133082000023, 51.708769214 ], [ -121.358300359999959, 51.708786284000055 ], [ -121.358165998999965, 51.710053281000064 ], [ -121.358475900999935, 51.710057612000135 ], [ -121.358471025999989, 51.710192225000085 ], [ -121.362984755999904, 51.710375644000088 ], [ -121.362797746999931, 51.712140787000131 ], [ -121.362686808999953, 51.712154202000178 ], [ -121.361726982999983, 51.712303113000061 ], [ -121.361002217999953, 51.712454396000091 ], [ -121.36001789299999, 51.712697695000045 ], [ -121.359424190999931, 51.712858809000075 ], [ -121.359178727999975, 51.712963350000045 ], [ -121.359102364999941, 51.712995854000098 ], [ -121.35907739, 51.713006511000117 ], [ -121.358778502999954, 51.713222789000078 ], [ -121.358687841999981, 51.713318062 ], [ -121.358369913999937, 51.713652212000028 ], [ -121.358171316999986, 51.713780049000022 ], [ -121.357859466999969, 51.713767370000035 ], [ -121.358257984999938, 51.713515300000047 ], [ -121.358483493999955, 51.713257487000085 ], [ -121.358435204999978, 51.712565308000109 ], [ -121.358251813999956, 51.712041201000069 ], [ -121.358455304999964, 51.71162959400003 ], [ -121.358303208999956, 51.711465910000051 ], [ -121.353862179999965, 51.710154204000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024491", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57973417", "BldgCostT": "39036667", "sL_LossRatio": "0.997790900926132", "sL_AssetLoss": "4141.96", "sL_BldgLoss": "4132.81", "sL_StrLoss": "4129.5", "sL_NStrLoss": "3.31", "sL_ContLoss": "9.15", "geom_point": "0101000020E61000001C04CA6480555EC03FC7998996DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.343595474999958, 51.751864686 ], [ -121.34370644799999, 51.75082254000003 ], [ -121.343753434999925, 51.750381280000035 ], [ -121.342081323999963, 51.750313137000056 ], [ -121.341801714999946, 51.750301740000076 ], [ -121.341809574999942, 51.750227952000031 ], [ -121.341847882999929, 51.749868350000021 ], [ -121.34104011899997, 51.7498354190001 ], [ -121.341081120999931, 51.749450585000083 ], [ -121.339067959999909, 51.74936849000008 ], [ -121.339047774999941, 51.749367667000065 ], [ -121.339048342999931, 51.74936234000009 ], [ -121.339126169999972, 51.748632152000027 ], [ -121.33882430599999, 51.748627886000058 ], [ -121.338844088999934, 51.748088631 ], [ -121.337975334999925, 51.748076348000083 ], [ -121.337982133999944, 51.747891111000051 ], [ -121.335650956999984, 51.747795977000102 ], [ -121.335911888999973, 51.745349475000076 ], [ -121.335902547, 51.745349343000044 ], [ -121.335952091999971, 51.744001210000121 ], [ -121.335083414999957, 51.743988905000094 ], [ -121.335093327999942, 51.743719278000071 ], [ -121.334658992999934, 51.743713124000124 ], [ -121.334708571999968, 51.742364991000102 ], [ -121.334274249999964, 51.742358835000076 ], [ -121.334304001999968, 51.741549955000046 ], [ -121.333869687999979, 51.741543798000045 ], [ -121.333879606999929, 51.741274171000072 ], [ -121.333010985, 51.741261852000051 ], [ -121.333018446999972, 51.741059092000079 ], [ -121.332923526999963, 51.741055215000046 ], [ -121.332960700999934, 51.740706842000087 ], [ -121.33255344, 51.740690205000078 ], [ -121.332601484999927, 51.740239982000062 ], [ -121.332256758999961, 51.740225898000091 ], [ -121.332492449999933, 51.738017287000083 ], [ -121.332261512999949, 51.738014009000025 ], [ -121.332296422999917, 51.737065912000027 ], [ -121.332254582999965, 51.73706420300006 ], [ -121.332268366999955, 51.736935036000084 ], [ -121.331866953999963, 51.736929338000074 ], [ -121.331896743999934, 51.736120459000034 ], [ -121.331028220999897, 51.736108126000069 ], [ -121.331038156999952, 51.73583849800012 ], [ -121.330880743999941, 51.735836263000088 ], [ -121.330603896999932, 51.735832330000079 ], [ -121.33064849, 51.734622352000052 ], [ -121.33066351899997, 51.734214571000081 ], [ -121.330546868999988, 51.734212914000054 ], [ -121.330229275999955, 51.734208401000053 ], [ -121.330249153999887, 51.733669148000104 ], [ -121.329814915, 51.733662976000069 ], [ -121.329860404999962, 51.732429169000078 ], [ -121.329864617999974, 51.73231484500009 ], [ -121.329794763999985, 51.73231385200004 ], [ -121.329430394999946, 51.732308671000041 ], [ -121.329440338999945, 51.732039045000086 ], [ -121.329006114999956, 51.73203287000009 ], [ -121.329044377999963, 51.730995537000076 ], [ -121.329053905999942, 51.730737233000085 ], [ -121.328893629999982, 51.730730679000061 ], [ -121.32767385799994, 51.730680789000111 ], [ -121.327711501999943, 51.730328308000061 ], [ -121.326906356, 51.730295370000071 ], [ -121.327097631999962, 51.728504595000103 ], [ -121.324297588999954, 51.72839000200004 ], [ -121.324339653999971, 51.727996406000095 ], [ -121.324009607999983, 51.727982895000132 ], [ -121.324168803999953, 51.726493322000103 ], [ -121.324070515999964, 51.726489299000065 ], [ -121.324090902999956, 51.726298533000033 ], [ -121.323322701, 51.726267079000117 ], [ -121.323510233999912, 51.724512555000089 ], [ -121.32195707899993, 51.72444894500012 ], [ -121.322267075999932, 51.721549288000126 ], [ -121.323156101, 51.722120350000054 ], [ -121.324142240999947, 51.722816285000093 ], [ -121.324683545999946, 51.723351916000084 ], [ -121.325218869999929, 51.724120197000012 ], [ -121.326904399999975, 51.727218704000045 ], [ -121.327123075999978, 51.727619703000094 ], [ -121.327829943000012, 51.727626148000077 ], [ -121.328461614999966, 51.727629507000046 ], [ -121.33032689399991, 51.727650579000063 ], [ -121.330436599, 51.727651827000102 ], [ -121.33071125, 51.727822110000069 ], [ -121.332431674999967, 51.728888881000081 ], [ -121.332664246999983, 51.729064739000073 ], [ -121.333309039999946, 51.729966935000071 ], [ -121.333606289, 51.730272213000077 ], [ -121.334470975999977, 51.730720290000164 ], [ -121.334769288999922, 51.730920396000037 ], [ -121.334801202999955, 51.730952989000109 ], [ -121.33525154199998, 51.731412206000101 ], [ -121.335398244999936, 51.731698765 ], [ -121.335622718999957, 51.732687162000069 ], [ -121.335604336999907, 51.733199867000138 ], [ -121.335501111000013, 51.734045422000079 ], [ -121.335537944999942, 51.734204292000115 ], [ -121.335823974999954, 51.734723997000103 ], [ -121.336292151999928, 51.735348284000025 ], [ -121.336650676999938, 51.735924991000061 ], [ -121.33676948399993, 51.736214908000058 ], [ -121.336798294999952, 51.73644352000008 ], [ -121.336802496999951, 51.736476999000111 ], [ -121.33667290599999, 51.736875391000069 ], [ -121.336589488999962, 51.737016807000018 ], [ -121.335955998999935, 51.737642888000096 ], [ -121.335812486999885, 51.737857292000029 ], [ -121.335801295999943, 51.738167098000105 ], [ -121.335903895999976, 51.73851300400004 ], [ -121.33728310099994, 51.73953510300003 ], [ -121.3375163219999, 51.739882704000095 ], [ -121.337842662999961, 51.740574552000076 ], [ -121.337941897999926, 51.740784892000057 ], [ -121.33858820099999, 51.741606999000062 ], [ -121.338898097999973, 51.741944306000022 ], [ -121.339224588999969, 51.742113203 ], [ -121.339677021999975, 51.742177494000025 ], [ -121.340936601999886, 51.742072405000052 ], [ -121.341347102, 51.742080184000052 ], [ -121.341669887999913, 51.74216079800005 ], [ -121.342056593999956, 51.742350988000069 ], [ -121.342353701999969, 51.742658896000073 ], [ -121.342548187999952, 51.742906889000096 ], [ -121.34273702099992, 51.74308549900006 ], [ -121.343079006, 51.743313391000122 ], [ -121.344171414999963, 51.743768894000041 ], [ -121.34486791199997, 51.744052598000081 ], [ -121.346008400999963, 51.744603600000033 ], [ -121.346371290999954, 51.744744184000083 ], [ -121.346928689999913, 51.744914405000046 ], [ -121.348175778999945, 51.745064093000032 ], [ -121.34837238899999, 51.745143086000091 ], [ -121.348525703999883, 51.745259081000057 ], [ -121.348565088999948, 51.745408106000113 ], [ -121.348544023999978, 51.745538606000125 ], [ -121.347676285999938, 51.746549 ], [ -121.346976180999903, 51.747637305000083 ], [ -121.346594894999953, 51.748119913000068 ], [ -121.345002981000022, 51.749652142000095 ], [ -121.344884270999927, 51.749975444000043 ], [ -121.343950532999898, 51.750885983000032 ], [ -121.344994344999961, 51.751139898000105 ], [ -121.345915949999892, 51.751276355000087 ], [ -121.34678921499993, 51.751307403000112 ], [ -121.346829633999931, 51.751565260000035 ], [ -121.346862500999976, 51.75177493000011 ], [ -121.34689766199989, 51.751999187000095 ], [ -121.343595474999958, 51.751864686 ] ], [ [ -121.338535419999971, 51.744316853000079 ], [ -121.338561690999953, 51.744070378000067 ], [ -121.33807811299998, 51.744050648000048 ], [ -121.338085127999989, 51.743984834000045 ], [ -121.337257623999974, 51.743951068000044 ], [ -121.337246124999936, 51.744264245000068 ], [ -121.338535419999971, 51.744316853000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024492", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "46.2", "sL_BldgLoss": "46.2", "sL_StrLoss": "46.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C7DA9447E535EC0131A140F20DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.303710165999945, 51.711437711000031 ], [ -121.303720254999945, 51.711168086000058 ], [ -121.305456322999987, 51.711193143000088 ], [ -121.305446242999949, 51.711462767000079 ], [ -121.306314282999949, 51.711475285000056 ], [ -121.306284062999964, 51.712284158000031 ], [ -121.304547954, 51.712259113000059 ], [ -121.30452778599999, 51.712798361000111 ], [ -121.30322569, 51.71277956100009 ], [ -121.303276147999895, 51.711431443000144 ], [ -121.303710165999945, 51.711437711000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024493", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "142.2", "sL_BldgLoss": "142.2", "sL_StrLoss": "142.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BCAD781351535EC040BB85A653D74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.30209457, 51.679502011000061 ], [ -121.302402941999915, 51.679514710000063 ], [ -121.302417909999946, 51.682182320000031 ], [ -121.302431013, 51.684520286000044 ], [ -121.300977167, 51.68411111700005 ], [ -121.301347732999943, 51.680657096000104 ], [ -121.301376559999966, 51.680658283000113 ], [ -121.301444366999974, 51.680026197000096 ], [ -121.302035734999947, 51.680050552000047 ], [ -121.30209457, 51.679502011000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024494", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "43484706", "BldgCostT": "27547039", "sL_LossRatio": "1", "sL_AssetLoss": "1961.6", "sL_BldgLoss": "1961.6", "sL_StrLoss": "1961.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082F057B7B0545EC047E059CC19DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.321604111999974, 51.706540288000021 ], [ -121.319875909999951, 51.705658297000042 ], [ -121.318750215999941, 51.705050083000117 ], [ -121.31845691299999, 51.705460073000033 ], [ -121.318386511999933, 51.705558504000109 ], [ -121.318356195999925, 51.705621027000028 ], [ -121.317957901999932, 51.706442899000066 ], [ -121.317848645999973, 51.707058065000062 ], [ -121.317529101, 51.70704495800004 ], [ -121.314331819999964, 51.706913766000127 ], [ -121.314390126999967, 51.706369082000052 ], [ -121.31418015399997, 51.70636046300006 ], [ -121.314277201, 51.70545386400002 ], [ -121.314563494999945, 51.70277914800009 ], [ -121.316591061999944, 51.70286235800004 ], [ -121.318556272999942, 51.702942975000084 ], [ -121.318673573999945, 51.70184604300006 ], [ -121.319899816999936, 51.701896329000078 ], [ -121.319948742999898, 51.701438673000069 ], [ -121.321764601, 51.701513113000026 ], [ -121.323357900999923, 51.701578406000039 ], [ -121.323541083999942, 51.699863555000029 ], [ -121.32527463199996, 51.699934569000106 ], [ -121.325319183999952, 51.69951731900003 ], [ -121.326908163999988, 51.699791652000044 ], [ -121.327797776999915, 51.699753653000073 ], [ -121.327798500999904, 51.699831489000047 ], [ -121.327722705999975, 51.700324284 ], [ -121.327360514999953, 51.700697399000028 ], [ -121.327793006999954, 51.700738701000084 ], [ -121.328604005999935, 51.70115598600011 ], [ -121.33039900199999, 51.701917997000109 ], [ -121.330578905999985, 51.7021272960001 ], [ -121.330632699, 51.702605797000025 ], [ -121.330788308999914, 51.702693230000129 ], [ -121.330763814999955, 51.702922881000077 ], [ -121.331231434999921, 51.702929526000105 ], [ -121.331745010999981, 51.703107205000023 ], [ -121.331807372, 51.703147736000112 ], [ -121.331795256999939, 51.703477071000087 ], [ -121.332325694999938, 51.703484603000106 ], [ -121.332655451999969, 51.703698914000064 ], [ -121.332633414, 51.704298277000113 ], [ -121.331331543999937, 51.704279791000047 ], [ -121.331311699999944, 51.704819047000086 ], [ -121.330443777999918, 51.704806715000103 ], [ -121.330433849999977, 51.705076342000027 ], [ -121.329999884999935, 51.705070173000095 ], [ -121.329941071999926, 51.706667071000012 ], [ -121.329292494999919, 51.706481899000082 ], [ -121.328902082999946, 51.706438888000072 ], [ -121.328511685, 51.706476904000048 ], [ -121.328163492, 51.706583207000051 ], [ -121.32677940399995, 51.707237793000047 ], [ -121.325899614999969, 51.707547998000116 ], [ -121.325487792, 51.707637308000102 ], [ -121.325051191999947, 51.70764640000008 ], [ -121.324698606999988, 51.70757528700009 ], [ -121.323673385999953, 51.707180806000046 ], [ -121.32212101399989, 51.706759301000041 ], [ -121.321604111999974, 51.706540288000021 ] ], [ [ -121.328707931999986, 51.704782030000054 ], [ -121.328717867999956, 51.704512402000049 ], [ -121.328283911999947, 51.704506226000056 ], [ -121.328303790999897, 51.703966972000075 ], [ -121.327435885999989, 51.703954617000058 ], [ -121.32742593899998, 51.704224245000034 ], [ -121.325791581999908, 51.704200962000094 ], [ -121.325599068999963, 51.706003833000096 ], [ -121.327357642999985, 51.706075830000024 ], [ -121.327386159999918, 51.705302754000094 ], [ -121.327820124999917, 51.705308933000047 ], [ -121.327840010999978, 51.704769678000076 ], [ -121.328707931999986, 51.704782030000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024495", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.9", "sL_BldgLoss": "51.9", "sL_StrLoss": "51.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006D30FDE076535EC0EFEC65BA5BDB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.303599182999946, 51.71440357000003 ], [ -121.303609272999921, 51.71413394700005 ], [ -121.30317522899999, 51.714127679000057 ], [ -121.303205505999955, 51.713318807000114 ], [ -121.303639542999989, 51.713325076000032 ], [ -121.303649631999974, 51.713055453000038 ], [ -121.3049517379999, 51.713074248000034 ], [ -121.30490132599999, 51.714422367000076 ], [ -121.303599182999946, 51.71440357000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024496", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4006833", "BldgCostT": "2763333", "sL_LossRatio": "1", "sL_AssetLoss": "243.5", "sL_BldgLoss": "243.5", "sL_StrLoss": "243.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E6CD0269564E5EC038B6C7A0CDE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.221181649999934, 51.762995357000108 ], [ -121.226998265999924, 51.762997330000061 ], [ -121.226747045999957, 51.765297912000058 ], [ -121.220956362999971, 51.765055956000019 ], [ -121.221181649999934, 51.762995357000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024497", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1754500", "BldgCostT": "1210000", "sL_LossRatio": "1", "sL_AssetLoss": "106", "sL_BldgLoss": "106", "sL_StrLoss": "106", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000855D6FF622535EC04F375851E6DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.298642510999954, 51.719187737000055 ], [ -121.298652630999968, 51.71891811400009 ], [ -121.298218542999976, 51.718911827000056 ], [ -121.298228667, 51.718642204000069 ], [ -121.297360493999946, 51.718629625000091 ], [ -121.297411136999983, 51.717281512000092 ], [ -121.296977061999968, 51.71727522000004 ], [ -121.297007453999967, 51.71646635200004 ], [ -121.298743716999951, 51.71649151000009 ], [ -121.298723475999907, 51.717030754000056 ], [ -121.299157549999947, 51.717037040000022 ], [ -121.299137311999957, 51.717576285000106 ], [ -121.300873622000012, 51.717601412000121 ], [ -121.300863512999967, 51.717871034000083 ], [ -121.30129759499998, 51.717877313000017 ], [ -121.301257172999954, 51.718955805000121 ], [ -121.300388990999963, 51.71894324800013 ], [ -121.300378880999958, 51.719212870000035 ], [ -121.298642510999954, 51.719187737000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024498", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "142.5", "sL_BldgLoss": "142.5", "sL_StrLoss": "142.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001281B074FA525EC078DB5C6709DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.295453696999985, 51.711587966000096 ], [ -121.295524655999913, 51.709700607000066 ], [ -121.29682665899999, 51.709719493000087 ], [ -121.296806400999984, 51.710258738000064 ], [ -121.297240406999904, 51.710265029000048 ], [ -121.297230279999951, 51.710534652000092 ], [ -121.298098298999975, 51.710547232000081 ], [ -121.29808129299991, 51.71100022600006 ], [ -121.298047687999883, 51.711895346000063 ], [ -121.297613665999947, 51.711889058000061 ], [ -121.297593416, 51.71242830300011 ], [ -121.294989255999965, 51.712390535000083 ], [ -121.295012238999917, 51.711779467000056 ], [ -121.295019676999956, 51.711581667000061 ], [ -121.295453696999985, 51.711587966000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024499", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6259167", "BldgCostT": "4316667", "sL_LossRatio": "1", "sL_AssetLoss": "615.6", "sL_BldgLoss": "615.6", "sL_StrLoss": "615.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB9E8590B5555EC0046FABCDBDDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.33652869499997, 51.708417991000061 ], [ -121.336170411999944, 51.708277377000094 ], [ -121.333802288999905, 51.707632102000034 ], [ -121.333087281999909, 51.707392494000054 ], [ -121.333008777999979, 51.707365991000103 ], [ -121.332344295, 51.70714180300012 ], [ -121.332232494999985, 51.707116996000124 ], [ -121.331887501999958, 51.70704039000006 ], [ -121.331008594999957, 51.706934299000032 ], [ -121.330560797999937, 51.706844002000139 ], [ -121.330018032999988, 51.706689044000036 ], [ -121.333412141999943, 51.706737247000078 ], [ -121.333402232999958, 51.707006875000062 ], [ -121.3342702, 51.707019187000078 ], [ -121.334260294, 51.70728881500002 ], [ -121.335128266999959, 51.707301120000096 ], [ -121.335118365999932, 51.70757074800008 ], [ -121.336420333999925, 51.707589193000096 ], [ -121.336430225999919, 51.707319565000056 ], [ -121.338075975999956, 51.707342860000061 ], [ -121.338101903999956, 51.707099412000012 ], [ -121.339027076999955, 51.707137190000033 ], [ -121.340412194999942, 51.707859801000076 ], [ -121.341573700999945, 51.708587491000095 ], [ -121.342509696999969, 51.709472002000027 ], [ -121.342988684999966, 51.710629790000112 ], [ -121.343185993999953, 51.710795094000083 ], [ -121.343656621999969, 51.710981607000036 ], [ -121.344214688999926, 51.711159698000081 ], [ -121.344705462999954, 51.711434828000066 ], [ -121.344652418999914, 51.711933539 ], [ -121.344010210999926, 51.711902998000042 ], [ -121.343730343999965, 51.711860543000078 ], [ -121.34344280599997, 51.711816904000067 ], [ -121.342924410999927, 51.711665391000054 ], [ -121.342374788999948, 51.711411884000036 ], [ -121.339442704999968, 51.70975989300009 ], [ -121.338109684999949, 51.709090401000019 ], [ -121.33652869499997, 51.708417991000061 ] ], [ [ -121.337961220999915, 51.708420311000047 ], [ -121.337989910999966, 51.708150948000061 ], [ -121.337702532999955, 51.708146882000044 ], [ -121.337692647999944, 51.708416511000081 ], [ -121.337961220999915, 51.708420311000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024500", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "191", "sL_BldgLoss": "191", "sL_StrLoss": "191", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B4B16DACDF525EC08230E0FA6ADB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.293182092, 51.714252679000062 ], [ -121.293222699999916, 51.713174191000043 ], [ -121.296694971, 51.713224588000024 ], [ -121.29668483899998, 51.713494210000086 ], [ -121.297118876999903, 51.713500504000102 ], [ -121.297058103000012, 51.715118240000074 ], [ -121.292283531999914, 51.715048929000019 ], [ -121.29231400499998, 51.714240063000048 ], [ -121.293182092, 51.714252679000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024501", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7936D9E72525EC02AAFF08950DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.289300915999945, 51.712847375000116 ], [ -121.289326579999965, 51.712847749000055 ], [ -121.289296056999916, 51.713656614000072 ], [ -121.288862019999954, 51.713650293000093 ], [ -121.288851841999943, 51.713919914000051 ], [ -121.287115684999932, 51.713894612000054 ], [ -121.287145715999927, 51.7130998680001 ], [ -121.287146249, 51.713085748000033 ], [ -121.287242869999915, 51.713087156000078 ], [ -121.288014311999973, 51.713098401000089 ], [ -121.288018568999973, 51.712985662000065 ], [ -121.288024493999941, 51.712828780000095 ], [ -121.289300915999945, 51.712847375000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024502", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6923750", "BldgCostT": "4775000", "sL_LossRatio": "1", "sL_AssetLoss": "553.5", "sL_BldgLoss": "553.5", "sL_StrLoss": "553.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D14FD883C545EC044BC1A45FBDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.317490244999973, 51.707678449000049 ], [ -121.317836658999965, 51.707692657000095 ], [ -121.318066066999933, 51.71045534100007 ], [ -121.318305064999947, 51.713122435000031 ], [ -121.31831637399992, 51.713219362000039 ], [ -121.317433267999888, 51.713183147000137 ], [ -121.31370896699994, 51.713030341000092 ], [ -121.31398151800002, 51.710484789000084 ], [ -121.314092405999958, 51.709449049000142 ], [ -121.315533106, 51.709508175000046 ], [ -121.315691121999961, 51.708031684000069 ], [ -121.316090531999976, 51.708048073000022 ], [ -121.316136028999921, 51.707622893000085 ], [ -121.317490244999973, 51.707678449000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024503", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5976417", "BldgCostT": "4121667", "sL_LossRatio": "1", "sL_AssetLoss": "330.6", "sL_BldgLoss": "330.6", "sL_StrLoss": "330.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041BAB7A669545EC0092B3ED305D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.317956532999972, 51.693270310000038 ], [ -121.318743949999956, 51.693302614000075 ], [ -121.319033033999986, 51.693755543000115 ], [ -121.319955423999915, 51.695200613000104 ], [ -121.321101725999966, 51.696996367000096 ], [ -121.317573551999928, 51.696851669000097 ], [ -121.317956532999972, 51.693270310000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024504", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "117883500", "BldgCostT": "79935000", "sL_LossRatio": "0.995084057361427", "sL_AssetLoss": "7607.9", "sL_BldgLoss": "7570.5", "sL_StrLoss": "7557", "sL_NStrLoss": "13.5", "sL_ContLoss": "37.4", "geom_point": "0101000020E61000005A9A08D9C1535EC07A00A4991BD84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.30453469299999, 51.69345162300003 ], [ -121.304577177999988, 51.693055450000074 ], [ -121.304097505999948, 51.693035712000032 ], [ -121.30411815599993, 51.692843169000092 ], [ -121.3006723, 51.69270132000004 ], [ -121.300696442999964, 51.692476362000065 ], [ -121.30105662499993, 51.689120004000046 ], [ -121.301505716999927, 51.68913849700003 ], [ -121.301510339999979, 51.68901501900006 ], [ -121.303306001999943, 51.689040973000047 ], [ -121.303382887999959, 51.688324102000088 ], [ -121.303464406999979, 51.688395084000057 ], [ -121.304025191999983, 51.688537499000084 ], [ -121.304963921999942, 51.688551806000106 ], [ -121.305532998999936, 51.688452101000031 ], [ -121.306650994999984, 51.687936490000027 ], [ -121.307277590999917, 51.687029309000074 ], [ -121.308141704999912, 51.686385493000095 ], [ -121.308163483, 51.686169096000107 ], [ -121.307785100000032, 51.685831513000025 ], [ -121.306510310999926, 51.685120804000071 ], [ -121.305623606999958, 51.684855902000074 ], [ -121.303583103000037, 51.6848445050001 ], [ -121.302431013, 51.684520286000044 ], [ -121.302417909999946, 51.682182320000031 ], [ -121.302402941999915, 51.679514710000063 ], [ -121.303201171999945, 51.679547576000104 ], [ -121.303204522, 51.679516338000049 ], [ -121.304326525999954, 51.679562526000055 ], [ -121.305894652999925, 51.680530273000024 ], [ -121.306635814999979, 51.68098762500005 ], [ -121.307859962999899, 51.681742998000047 ], [ -121.308923270999955, 51.682399098000111 ], [ -121.309159657999885, 51.682544967000112 ], [ -121.309683922999952, 51.682867793000071 ], [ -121.309932710999945, 51.683146902000054 ], [ -121.31018647800002, 51.683429423000099 ], [ -121.310704324999961, 51.684005958000093 ], [ -121.310882192999912, 51.684106787000104 ], [ -121.311300500999891, 51.684606007000077 ], [ -121.311991808999963, 51.685323457000081 ], [ -121.312090852999944, 51.685426256000028 ], [ -121.31282914799999, 51.685987147000098 ], [ -121.313981373999979, 51.686695454000123 ], [ -121.31453374199999, 51.687094936000094 ], [ -121.314940962999955, 51.687481264000013 ], [ -121.315353153999965, 51.688010768000076 ], [ -121.31590017399999, 51.688861564000021 ], [ -121.317172779999922, 51.69084082400007 ], [ -121.318041401999949, 51.692201834000073 ], [ -121.318227108999949, 51.692492815 ], [ -121.317274321999918, 51.692479168000048 ], [ -121.317161265999943, 51.693536305000109 ], [ -121.316468542999957, 51.693507878000077 ], [ -121.316450044999954, 51.69368082200009 ], [ -121.310668328999938, 51.693443388000055 ], [ -121.310671418999902, 51.693414532000119 ], [ -121.310347239999913, 51.693401211 ], [ -121.310341163999951, 51.693457940000037 ], [ -121.31031637699999, 51.693689367000054 ], [ -121.30453469299999, 51.69345162300003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024505", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "161747782", "BldgCostT": "87476137", "sL_LossRatio": "0.978585292361149", "sL_AssetLoss": "2947.04", "sL_BldgLoss": "2883.93", "sL_StrLoss": "2861.1", "sL_NStrLoss": "22.83", "sL_ContLoss": "63.11", "geom_point": "0101000020E6100000B97A35DDBE515EC0A8CB84BA23D24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.274580107999967, 51.639804990000052 ], [ -121.280354564999953, 51.640044261000092 ], [ -121.279968980999968, 51.643625674000099 ], [ -121.274194053999949, 51.643386384000053 ], [ -121.274580107999967, 51.639804990000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024506", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1027509437", "BldgCostT": "597701874", "sL_LossRatio": "0.952911711090282", "sL_AssetLoss": "18382.49", "sL_BldgLoss": "17516.89", "sL_StrLoss": "17203", "sL_NStrLoss": "313.89", "sL_ContLoss": "865.6", "geom_point": "0101000020E6100000C9907B3E73525EC074B8B0EA03D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.281591538999976, 51.65338516300006 ], [ -121.281601737999964, 51.653115539000098 ], [ -121.27856754500003, 51.653071093000108 ], [ -121.278577761999927, 51.652801470000057 ], [ -121.277277402999971, 51.652782399000074 ], [ -121.277308073999961, 51.651973529000038 ], [ -121.276874628999977, 51.651967169000038 ], [ -121.276905308999986, 51.651158302000049 ], [ -121.277772181999978, 51.651171020000099 ], [ -121.277782402999918, 51.650901397000013 ], [ -121.278649273, 51.650914109000034 ], [ -121.278659486999913, 51.650644487000058 ], [ -121.282444725999952, 51.650699920000136 ], [ -121.282560386999975, 51.650701612000056 ], [ -121.282553093999979, 51.650894569000037 ], [ -121.28250942499993, 51.652049730000037 ], [ -121.282859549999955, 51.652054851000088 ], [ -121.282914551999951, 51.651543801000045 ], [ -121.283226574999958, 51.648644420000046 ], [ -121.283226889000019, 51.648641510000047 ], [ -121.283230753999959, 51.648641670000082 ], [ -121.283672221999922, 51.648659936000037 ], [ -121.283707981999981, 51.648327602000101 ], [ -121.283714089999947, 51.648270821000061 ], [ -121.28378951699996, 51.648273942000081 ], [ -121.285251767999952, 51.64833442900008 ], [ -121.285252576999966, 51.64831300900002 ], [ -121.287419637999946, 51.648344638000019 ], [ -121.287429800000012, 51.648075015000096 ], [ -121.287927931999931, 51.648082279000064 ], [ -121.288217466999967, 51.645388775000114 ], [ -121.288174011999899, 51.645388140000065 ], [ -121.287964799999941, 51.64538509000009 ], [ -121.287999971999938, 51.644451457000073 ], [ -121.287034170999945, 51.644411529000124 ], [ -121.28741918599999, 51.64083009500014 ], [ -121.290040388999898, 51.64093844500006 ], [ -121.290604644, 51.64198168100004 ], [ -121.290607540999986, 51.643089738000121 ], [ -121.290571697999937, 51.643161954000078 ], [ -121.290093685999977, 51.644124469000097 ], [ -121.290745984999958, 51.644021449000043 ], [ -121.291951709999978, 51.643831009000088 ], [ -121.29260340899999, 51.64390649200007 ], [ -121.292445510999968, 51.644444997000065 ], [ -121.291904296999974, 51.645960516000059 ], [ -121.293259084999946, 51.64614680100005 ], [ -121.29469380899998, 51.646358938000098 ], [ -121.295599623999962, 51.646472805000073 ], [ -121.296227415999965, 51.646555323000022 ], [ -121.29614606799997, 51.647110452000028 ], [ -121.296142659999958, 51.647277593000048 ], [ -121.296217417999955, 51.647608029 ], [ -121.296267499999942, 51.647843919000096 ], [ -121.296320613999967, 51.648107633000102 ], [ -121.296346024999963, 51.648233879000031 ], [ -121.296283085999931, 51.648333801000021 ], [ -121.296315392999972, 51.648640678000092 ], [ -121.296408770999918, 51.649527910000131 ], [ -121.296354500999925, 51.650033762000064 ], [ -121.296227480999946, 51.650484318000025 ], [ -121.296190582999955, 51.650615154000064 ], [ -121.295938551999953, 51.651152473000117 ], [ -121.295494929, 51.651945085000044 ], [ -121.295539522999931, 51.651529631000102 ], [ -121.29555451399996, 51.651130027000093 ], [ -121.292723623999962, 51.651013172000035 ], [ -121.292765713999955, 51.650621263000033 ], [ -121.292827920999926, 51.650042036000059 ], [ -121.29255980799995, 51.650038137000081 ], [ -121.292580072999897, 51.649498887000057 ], [ -121.291713222999974, 51.649486278000033 ], [ -121.291682809999955, 51.650295152000098 ], [ -121.291249378999922, 51.650288846000095 ], [ -121.291239238999978, 51.650558471000089 ], [ -121.290805804999962, 51.650552162000018 ], [ -121.290795660999919, 51.650821786000051 ], [ -121.29036222299996, 51.650815476000083 ], [ -121.290352077999984, 51.651085100000074 ], [ -121.2894852, 51.651072474000109 ], [ -121.289475048999975, 51.651342100000093 ], [ -121.289185747999966, 51.651337884000107 ], [ -121.289165521999934, 51.651526071000042 ], [ -121.28910479699999, 51.652091043000048 ], [ -121.288659426999928, 51.652072638000028 ], [ -121.288617597999973, 51.652461753000061 ], [ -121.286634071999984, 51.652379765000092 ], [ -121.286400282999949, 51.652376353000044 ], [ -121.28637994199994, 51.652915602000107 ], [ -121.285946485999915, 51.652909275000063 ], [ -121.285936313999954, 51.653178899000039 ], [ -121.28420248299993, 51.653153574000093 ], [ -121.28421266399999, 51.652883950000032 ], [ -121.283786245999949, 51.652877718000056 ], [ -121.283656185999973, 51.652875817000044 ], [ -121.2829123, 51.65286494100009 ], [ -121.282891917999933, 51.653404188000074 ], [ -121.281591538999976, 51.65338516300006 ] ], [ [ -121.291028913999952, 51.64462041400003 ], [ -121.291030556999914, 51.644576698000016 ], [ -121.290597614999967, 51.644558812000078 ], [ -121.290595535999955, 51.644614105000109 ], [ -121.291028913999952, 51.64462041400003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024507", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "779754304", "BldgCostT": "456090459", "sL_LossRatio": "0.959864567052784", "sL_AssetLoss": "9424.59", "sL_BldgLoss": "9046.33", "sL_StrLoss": "8909.3", "sL_NStrLoss": "137.03", "sL_ContLoss": "378.26", "geom_point": "0101000020E61000000C91920529525EC010BA23AD42D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.282323093999977, 51.64009930800006 ], [ -121.282526109999964, 51.638212608000146 ], [ -121.280471961999922, 51.638127561000026 ], [ -121.280510276999948, 51.637771627000049 ], [ -121.280474886999983, 51.637770161000056 ], [ -121.280528420999957, 51.637272831000111 ], [ -121.28045672099995, 51.637269862000075 ], [ -121.280499845999884, 51.636869240000131 ], [ -121.280476250999968, 51.636868263000039 ], [ -121.280575079999906, 51.635950131000108 ], [ -121.280479314999965, 51.635946165000099 ], [ -121.280864790999928, 51.632364725000102 ], [ -121.281726087999957, 51.632400392000072 ], [ -121.281769273999942, 51.631999045000057 ], [ -121.282112645999987, 51.632013263000083 ], [ -121.282238555, 51.630842997000087 ], [ -121.279264935999919, 51.630719840000047 ], [ -121.279333062999967, 51.630087 ], [ -121.274573515, 51.629889715000118 ], [ -121.274655728999917, 51.629126769000031 ], [ -121.274017548999936, 51.629100301000044 ], [ -121.274030460999953, 51.6289804970001 ], [ -121.283021864999967, 51.628949057000071 ], [ -121.283800492999916, 51.629621614 ], [ -121.28484777599999, 51.630640753000115 ], [ -121.28492574899991, 51.630743834000064 ], [ -121.285118156999957, 51.630998180000091 ], [ -121.285177855999962, 51.63110226900006 ], [ -121.285342806999921, 51.631389728000094 ], [ -121.286383873999952, 51.633573229000078 ], [ -121.28663233099995, 51.63395942600004 ], [ -121.286926613000034, 51.634256702000101 ], [ -121.289165406999984, 51.635866019000083 ], [ -121.289426857999928, 51.63605396800007 ], [ -121.289522221999917, 51.636122488000062 ], [ -121.288799553, 51.638769 ], [ -121.28925454699997, 51.639045710000097 ], [ -121.289546243999936, 51.639223086000136 ], [ -121.289545526999987, 51.639229756000077 ], [ -121.28822263699999, 51.639175072000072 ], [ -121.288097631999975, 51.640338188000072 ], [ -121.282323093999977, 51.64009930800006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024508", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "57686552", "BldgCostT": "30567718", "sL_LossRatio": "0.95585234968368", "sL_AssetLoss": "1166.54", "sL_BldgLoss": "1115.04", "sL_StrLoss": "1096.4", "sL_NStrLoss": "18.64", "sL_ContLoss": "51.5", "geom_point": "0101000020E610000061E0880737525EC0EFA8FFE624D44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.283141957999987, 51.658263747000071 ], [ -121.283213294999953, 51.656376384000069 ], [ -121.28581422699996, 51.65641438400008 ], [ -121.285783701999918, 51.657223255000126 ], [ -121.28621719899995, 51.657229584000035 ], [ -121.286176505999919, 51.658308078000061 ], [ -121.283141957999987, 51.658263747000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024509", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "119.7", "sL_BldgLoss": "119.7", "sL_StrLoss": "119.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F39EBB638535EC0787EEE5743D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.300127546999974, 51.627945826000023 ], [ -121.299599393999969, 51.625622775000089 ], [ -121.29969833299999, 51.625699356000062 ], [ -121.299743392999957, 51.625734204000125 ], [ -121.300044693999965, 51.626007512000079 ], [ -121.300434502999963, 51.626427294000088 ], [ -121.30076510399995, 51.626954485000027 ], [ -121.300935599999903, 51.62729790100007 ], [ -121.301083807999959, 51.62780849400005 ], [ -121.301096437999959, 51.627985787000078 ], [ -121.300127546999974, 51.627945826000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024510", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "201616834", "BldgCostT": "133413334", "sL_LossRatio": "0.995392459031382", "sL_AssetLoss": "8312.46", "sL_BldgLoss": "8274.16", "sL_StrLoss": "8260.3", "sL_NStrLoss": "13.86", "sL_ContLoss": "38.3", "geom_point": "0101000020E61000001DCAECA0D0525EC0EE2212A624D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.293969634999911, 51.639815745000135 ], [ -121.293820158999949, 51.639659932 ], [ -121.293688537999955, 51.639522736000082 ], [ -121.293681077999906, 51.639514942000105 ], [ -121.293448941999927, 51.639272961000081 ], [ -121.293167369999978, 51.638829669000103 ], [ -121.293032402999927, 51.638439172000076 ], [ -121.293039097999952, 51.638093212000058 ], [ -121.293106032999987, 51.637685858000069 ], [ -121.292575182999926, 51.637633365000049 ], [ -121.292128637999937, 51.637538457000119 ], [ -121.291848062999961, 51.637442449000069 ], [ -121.291769428999913, 51.637415548000028 ], [ -121.291495091999963, 51.637321630000031 ], [ -121.290797519999941, 51.636961812000095 ], [ -121.290747277999984, 51.636935892000061 ], [ -121.290416625999924, 51.636765362000112 ], [ -121.28982889599996, 51.63634292600004 ], [ -121.289708, 51.636256026000126 ], [ -121.289522221999917, 51.636122488000062 ], [ -121.289426857999928, 51.63605396800007 ], [ -121.289165406999984, 51.635866019000083 ], [ -121.286926613000034, 51.634256702000101 ], [ -121.28663233099995, 51.63395942600004 ], [ -121.286383873999952, 51.633573229000078 ], [ -121.285342806999921, 51.631389728000094 ], [ -121.285177855999962, 51.63110226900006 ], [ -121.285118156999957, 51.630998180000091 ], [ -121.28492574899991, 51.630743834000064 ], [ -121.28484777599999, 51.630640753000115 ], [ -121.283800492999916, 51.629621614 ], [ -121.283021864999967, 51.628949057000071 ], [ -121.286950359999977, 51.629503433000082 ], [ -121.288190853999978, 51.629416209000034 ], [ -121.28809830599999, 51.630277531000047 ], [ -121.289251342999947, 51.630325206000059 ], [ -121.289167720999913, 51.631103619000015 ], [ -121.28947449099995, 51.631116301000091 ], [ -121.289343629999976, 51.632334459000106 ], [ -121.29021515, 51.632370483000066 ], [ -121.290115257999943, 51.633300482000067 ], [ -121.291467171999983, 51.633356352000121 ], [ -121.291300059999983, 51.634912539000048 ], [ -121.291827123999965, 51.634920209000079 ], [ -121.291830093, 51.634841184000074 ], [ -121.291572825999964, 51.634396265000106 ], [ -121.291846813999925, 51.634396198000047 ], [ -121.291847386999962, 51.634380958000094 ], [ -121.292280666999943, 51.634387262000089 ], [ -121.292290794999985, 51.634117636000084 ], [ -121.294023908999975, 51.634142833000112 ], [ -121.294014421999975, 51.634395640000079 ], [ -121.29444794299998, 51.634395523000087 ], [ -121.29446730299999, 51.633879503000031 ], [ -121.294900578999929, 51.633885798000101 ], [ -121.294910691999959, 51.633616171000078 ], [ -121.296210512999949, 51.633635044000094 ], [ -121.296220617999921, 51.633365418000068 ], [ -121.296568161999929, 51.633370461 ], [ -121.296597054999921, 51.633101108000105 ], [ -121.294930914999952, 51.633076919000118 ], [ -121.294961253999972, 51.632268040000078 ], [ -121.295394513999923, 51.632274333000048 ], [ -121.295404622999953, 51.632004707000064 ], [ -121.294971364, 51.631998415000041 ], [ -121.295082583999942, 51.629032525000085 ], [ -121.29551581299999, 51.629038818000062 ], [ -121.295520998999947, 51.628900513000097 ], [ -121.298128657999939, 51.628716940000061 ], [ -121.298125290999948, 51.628806904000051 ], [ -121.298558520999961, 51.628813185000098 ], [ -121.298563265999945, 51.62868633900014 ], [ -121.300245780999973, 51.628567855000057 ], [ -121.301119485999962, 51.628580503000066 ], [ -121.301071536999942, 51.629008646000095 ], [ -121.301064084999965, 51.629074895000066 ], [ -121.300533109999918, 51.630918206000061 ], [ -121.300350814999902, 51.631537502000121 ], [ -121.300008200999955, 51.63270510300007 ], [ -121.29933, 51.635150316000058 ], [ -121.298876602999911, 51.636796311000069 ], [ -121.29851215099994, 51.638044811000029 ], [ -121.29792798699999, 51.64007119700009 ], [ -121.297619215999973, 51.640043158000047 ], [ -121.296475759999964, 51.63991594200013 ], [ -121.296216775999966, 51.639937629000052 ], [ -121.295800504999974, 51.640059837000074 ], [ -121.294929607999961, 51.640379131000032 ], [ -121.29448978799995, 51.640531846000023 ], [ -121.294407454999956, 51.640272140000022 ], [ -121.293969634999911, 51.639815745000135 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024512", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "107425316", "BldgCostT": "68936092", "sL_LossRatio": "0.995987074647411", "sL_AssetLoss": "8572.3", "sL_BldgLoss": "8537.9", "sL_StrLoss": "8525.5", "sL_NStrLoss": "12.4", "sL_ContLoss": "34.4", "geom_point": "0101000020E6100000D41E0E961A545EC03423E60601D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.321261221999976, 51.659624239000053 ], [ -121.321301081999962, 51.658545724000071 ], [ -121.320867564999972, 51.658539526000062 ], [ -121.320907434, 51.657461012000077 ], [ -121.32047392599992, 51.657454811000029 ], [ -121.320543709999981, 51.65556741200006 ], [ -121.320977197999966, 51.655573611000079 ], [ -121.321017060999949, 51.654495097000094 ], [ -121.319283147999968, 51.654470290000056 ], [ -121.319293122999952, 51.654200661000097 ], [ -121.318859647999929, 51.654194455000052 ], [ -121.318879602999971, 51.653655199000099 ], [ -121.31801266199993, 51.653642782000091 ], [ -121.318032627999926, 51.653103525000098 ], [ -121.317599163999944, 51.653097315000082 ], [ -121.31760914799996, 51.652827687000041 ], [ -121.314574917999963, 51.652784171000114 ], [ -121.314604924999927, 51.65197528700002 ], [ -121.314171472999973, 51.65196906500011 ], [ -121.314181026999904, 51.651711560000074 ], [ -121.313727467999911, 51.651692917000041 ], [ -121.312447676999909, 51.651674529000061 ], [ -121.312427645999932, 51.652213784000061 ], [ -121.311994189999965, 51.652207554 ], [ -121.31198417199991, 51.652477182000048 ], [ -121.311550714999953, 51.652470949000111 ], [ -121.311540694999962, 51.652740577000074 ], [ -121.311107233999962, 51.65273434300007 ], [ -121.311097211999979, 51.653003970000078 ], [ -121.308929899999924, 51.65297277600007 ], [ -121.308909828000012, 51.653512030000094 ], [ -121.306742495999956, 51.653480794000068 ], [ -121.306722395999969, 51.654020048000135 ], [ -121.305421984999938, 51.65400128700005 ], [ -121.30543204099996, 51.653731660000091 ], [ -121.305422997, 51.653731529 ], [ -121.305406615999942, 51.653884454000035 ], [ -121.301741922999923, 51.653733495000061 ], [ -121.301713262999925, 51.654000842000094 ], [ -121.298981178999966, 51.653888222000063 ], [ -121.295936854, 51.653762654000047 ], [ -121.296106543999898, 51.652181613000053 ], [ -121.2954723499999, 51.652155444000101 ], [ -121.295494929, 51.651945085000044 ], [ -121.295938551999953, 51.651152473000117 ], [ -121.296190582999955, 51.650615154000064 ], [ -121.296227480999946, 51.650484318000025 ], [ -121.296354500999925, 51.650033762000064 ], [ -121.296408770999918, 51.649527910000131 ], [ -121.296315392999972, 51.648640678000092 ], [ -121.296283085999931, 51.648333801000021 ], [ -121.296346024999963, 51.648233879000031 ], [ -121.296320613999967, 51.648107633000102 ], [ -121.296267499999942, 51.647843919000096 ], [ -121.296217417999955, 51.647608029 ], [ -121.296142659999958, 51.647277593000048 ], [ -121.29614606799997, 51.647110452000028 ], [ -121.296227415999965, 51.646555323000022 ], [ -121.295599623999962, 51.646472805000073 ], [ -121.29469380899998, 51.646358938000098 ], [ -121.293259084999946, 51.64614680100005 ], [ -121.291904296999974, 51.645960516000059 ], [ -121.292445510999968, 51.644444997000065 ], [ -121.29260340899999, 51.64390649200007 ], [ -121.291951709999978, 51.643831009000088 ], [ -121.290745984999958, 51.644021449000043 ], [ -121.290093685999977, 51.644124469000097 ], [ -121.290571697999937, 51.643161954000078 ], [ -121.290607540999986, 51.643089738000121 ], [ -121.290604644, 51.64198168100004 ], [ -121.290040388999898, 51.64093844500006 ], [ -121.292143864999943, 51.641025351000081 ], [ -121.292182172999929, 51.640668616000021 ], [ -121.29136240099993, 51.640634751000078 ], [ -121.291415885999925, 51.640136757000057 ], [ -121.290999222999957, 51.640119542000015 ], [ -121.291036318999957, 51.63977417600011 ], [ -121.290747337999946, 51.639762235000028 ], [ -121.290805397999947, 51.639221705000075 ], [ -121.290798346999907, 51.639221603000124 ], [ -121.290838903999912, 51.638143102000136 ], [ -121.289985076999955, 51.638130667000105 ], [ -121.289940301999962, 51.638547447000086 ], [ -121.28962025499996, 51.638534220000075 ], [ -121.289546243999936, 51.639223086000136 ], [ -121.28925454699997, 51.639045710000097 ], [ -121.288799553, 51.638769 ], [ -121.289522221999917, 51.636122488000062 ], [ -121.289708, 51.636256026000126 ], [ -121.28982889599996, 51.63634292600004 ], [ -121.290416625999924, 51.636765362000112 ], [ -121.290747277999984, 51.636935892000061 ], [ -121.290797519999941, 51.636961812000095 ], [ -121.291495091999963, 51.637321630000031 ], [ -121.291769428999913, 51.637415548000028 ], [ -121.291848062999961, 51.637442449000069 ], [ -121.292128637999937, 51.637538457000119 ], [ -121.292575182999926, 51.637633365000049 ], [ -121.293106032999987, 51.637685858000069 ], [ -121.293039097999952, 51.638093212000058 ], [ -121.293032402999927, 51.638439172000076 ], [ -121.293167369999978, 51.638829669000103 ], [ -121.293448941999927, 51.639272961000081 ], [ -121.293681077999906, 51.639514942000105 ], [ -121.293688537999955, 51.639522736000082 ], [ -121.293820158999949, 51.639659932 ], [ -121.293969634999911, 51.639815745000135 ], [ -121.294407454999956, 51.640272140000022 ], [ -121.29448978799995, 51.640531846000023 ], [ -121.294929607999961, 51.640379131000032 ], [ -121.295800504999974, 51.640059837000074 ], [ -121.296216775999966, 51.639937629000052 ], [ -121.296475759999964, 51.63991594200013 ], [ -121.297619215999973, 51.640043158000047 ], [ -121.29792798699999, 51.64007119700009 ], [ -121.29851215099994, 51.638044811000029 ], [ -121.298876602999911, 51.636796311000069 ], [ -121.29933, 51.635150316000058 ], [ -121.300008200999955, 51.63270510300007 ], [ -121.300350814999902, 51.631537502000121 ], [ -121.300533109999918, 51.630918206000061 ], [ -121.301064084999965, 51.629074895000066 ], [ -121.301071536999942, 51.629008646000095 ], [ -121.301119485999962, 51.628580503000066 ], [ -121.302034425999949, 51.62859373900006 ], [ -121.302014286999963, 51.62913299500012 ], [ -121.30331398699991, 51.629151787000097 ], [ -121.303303923999962, 51.629421414000078 ], [ -121.303737160999958, 51.629427675000038 ], [ -121.303733543999954, 51.629524628000119 ], [ -121.303812126999901, 51.629558465000045 ], [ -121.303874926999981, 51.629670165000078 ], [ -121.303831619000036, 51.629968585000078 ], [ -121.30415028500002, 51.629973190000051 ], [ -121.304120113999957, 51.630782071000048 ], [ -121.303714409999927, 51.630776210000107 ], [ -121.303677313999984, 51.631031820000103 ], [ -121.303676805999956, 51.631045440000051 ], [ -121.304543308999925, 51.631057958000063 ], [ -121.304533253999978, 51.631327585000058 ], [ -121.305833017999959, 51.631346350000094 ], [ -121.305802876, 51.63215523300007 ], [ -121.305369613999943, 51.632148979000142 ], [ -121.305359562999911, 51.632418607000076 ], [ -121.304926297999955, 51.632412352000081 ], [ -121.304896139999954, 51.633221235000086 ], [ -121.304462867999959, 51.633214978000098 ], [ -121.304392471999932, 51.635102369000016 ], [ -121.304825762999911, 51.635108627000079 ], [ -121.30481570799999, 51.635378254000088 ], [ -121.30568229499994, 51.635390765000047 ], [ -121.305652144999954, 51.636199647000097 ], [ -121.305218844999956, 51.636193393000056 ], [ -121.30521188699997, 51.636380010000103 ], [ -121.305208792999935, 51.636463019000125 ], [ -121.304342184999967, 51.636450506000124 ], [ -121.304322070999959, 51.636989761000095 ], [ -121.304154839999967, 51.636987345000072 ], [ -121.304002004999944, 51.638414317000063 ], [ -121.300372522999965, 51.638264708000122 ], [ -121.300371894999927, 51.638281502000048 ], [ -121.300093740999955, 51.638277474000105 ], [ -121.300082887999935, 51.63837871800007 ], [ -121.300136394999967, 51.63838092500005 ], [ -121.299913689999968, 51.640458354000081 ], [ -121.303964406999953, 51.640625325000038 ], [ -121.303944190999957, 51.640814058000046 ], [ -121.304091226999986, 51.640678566000098 ], [ -121.304387825999981, 51.640805665000073 ], [ -121.304015225999976, 51.641135266000035 ], [ -121.303914200999984, 51.64109402900008 ], [ -121.303863294999971, 51.641569265000015 ], [ -121.305017764999917, 51.641585938000105 ], [ -121.304977540999985, 51.642664446000026 ], [ -121.303747878999971, 51.642646687000067 ], [ -121.303580742999884, 51.644206815000082 ], [ -121.303194506999958, 51.64419090100013 ], [ -121.30311256499999, 51.644955683000077 ], [ -121.304167004999954, 51.644999127000048 ], [ -121.304062013999953, 51.645979226000065 ], [ -121.303783319999965, 51.648580602000038 ], [ -121.301857862999924, 51.648501264000103 ], [ -121.301852334, 51.648552849000069 ], [ -121.301671803999952, 51.648545408000054 ], [ -121.30159347199999, 51.64927618100009 ], [ -121.302222986999979, 51.649302124000059 ], [ -121.302255638999924, 51.648997460000068 ], [ -121.303118091, 51.649032997000056 ], [ -121.303131605999937, 51.648906881000102 ], [ -121.306474167999966, 51.649044551000031 ], [ -121.306489943999949, 51.648621259000059 ], [ -121.306976232999943, 51.648628271000092 ], [ -121.308223624, 51.648646252000034 ], [ -121.308206137999932, 51.649115846000029 ], [ -121.308907414999965, 51.649144706000072 ], [ -121.30884431599999, 51.649734281000043 ], [ -121.30905032699999, 51.64973724900009 ], [ -121.309060361999954, 51.649467621000063 ], [ -121.309493789999976, 51.649473862000043 ], [ -121.30950382199994, 51.64920423500007 ], [ -121.310804099999984, 51.649222950000102 ], [ -121.310794075999965, 51.649492576000029 ], [ -121.313538473999955, 51.649532030000088 ], [ -121.313692196999952, 51.648094228000097 ], [ -121.31450589399999, 51.648127677000126 ], [ -121.314531871999975, 51.64788464800003 ], [ -121.315388080999966, 51.647919837000053 ], [ -121.315400239999946, 51.647806069000055 ], [ -121.316329354999979, 51.647844246000076 ], [ -121.316336400999958, 51.647778291000051 ], [ -121.32211213399999, 51.648015448000116 ], [ -121.322111813000021, 51.648018459000092 ], [ -121.323426787999921, 51.648072412000083 ], [ -121.32327953699992, 51.649452557000103 ], [ -121.323449895999914, 51.649459546000124 ], [ -121.323558545999958, 51.648441162000069 ], [ -121.329334404999969, 51.648677954000043 ], [ -121.329162098999959, 51.65029494600001 ], [ -121.331254724999965, 51.650324707000067 ], [ -121.331372458999979, 51.649219348000024 ], [ -121.337148461000012, 51.649455745000054 ], [ -121.337090533999969, 51.650000280000071 ], [ -121.337710379999962, 51.650025630000094 ], [ -121.337707784999978, 51.650050017000119 ], [ -121.340533780999962, 51.650165554000061 ], [ -121.340442609999954, 51.651023200000068 ], [ -121.340536941999986, 51.651027056000032 ], [ -121.340531971999923, 51.651073809000088 ], [ -121.341112625999983, 51.651097540000087 ], [ -121.341070079999923, 51.651497806000066 ], [ -121.34194652399999, 51.651533619000126 ], [ -121.341829717999985, 51.652632695000094 ], [ -121.343203347999989, 51.652652085000078 ], [ -121.343193514999925, 51.652921718000108 ], [ -121.345360859999928, 51.652952280000058 ], [ -121.345351040999972, 51.653221912000078 ], [ -121.346217984999939, 51.653234125000033 ], [ -121.346188538, 51.65404302400006 ], [ -121.345352988999963, 51.654031251000013 ], [ -121.344888098999931, 51.654024700000029 ], [ -121.34487827399991, 51.654294331000116 ], [ -121.345311758, 51.654300441000046 ], [ -121.345301935999913, 51.654570073000052 ], [ -121.346168907999981, 51.654582288000114 ], [ -121.346159089999944, 51.654851920000141 ], [ -121.346592577999928, 51.654858025000102 ], [ -121.346582763999947, 51.655127657000058 ], [ -121.347016253999954, 51.655133760000098 ], [ -121.347005537999934, 51.65542828000013 ], [ -121.346986819999969, 51.655942657000011 ], [ -121.34568632499996, 51.655924342000056 ], [ -121.345696145999909, 51.655654709000096 ], [ -121.342228187999936, 51.65560579800011 ], [ -121.34221834799996, 51.655875429000091 ], [ -121.341784850999943, 51.655869309000046 ], [ -121.341765166999949, 51.656408571000057 ], [ -121.339597659999953, 51.65637794000007 ], [ -121.339607515999916, 51.656108309000096 ], [ -121.339174018000037, 51.656102179000101 ], [ -121.339183874999947, 51.655832547000088 ], [ -121.338750378999961, 51.655826415000014 ], [ -121.338760240999989, 51.655556785000037 ], [ -121.338326747999957, 51.655550650000073 ], [ -121.338336610999974, 51.655281020000103 ], [ -121.337903120999968, 51.655274884000022 ], [ -121.337910009, 51.655086620000098 ], [ -121.33791298599999, 51.655005253000105 ], [ -121.336612524999936, 51.654986837000067 ], [ -121.336607391999934, 51.655126991000046 ], [ -121.336602650999964, 51.655256468000047 ], [ -121.336169160999958, 51.655250326000029 ], [ -121.336159285999912, 51.655519957000067 ], [ -121.335725794999945, 51.655513814000066 ], [ -121.335706038999916, 51.656053075000067 ], [ -121.333972051999979, 51.656028484000075 ], [ -121.333932494999885, 51.657107006000111 ], [ -121.333065481999952, 51.657094701000098 ], [ -121.333055586999976, 51.657364331000089 ], [ -121.330888044999966, 51.657333539000071 ], [ -121.330868229999965, 51.657872799000053 ], [ -121.32783364099997, 51.657829623000119 ], [ -121.327843566999931, 51.657559994000074 ], [ -121.326976546999944, 51.657547644000047 ], [ -121.326966616999925, 51.657817272000059 ], [ -121.326533104999953, 51.657811095000028 ], [ -121.326503302999967, 51.65861998300003 ], [ -121.32476922799998, 51.658595256000069 ], [ -121.32477917099996, 51.658325627000039 ], [ -121.324345655999977, 51.658319441000089 ], [ -121.324315813999988, 51.659128328000094 ], [ -121.323882290999904, 51.659122141000076 ], [ -121.32387234, 51.659391769000067 ], [ -121.323005289999955, 51.659379390000041 ], [ -121.32299533299998, 51.65964901800006 ], [ -121.321261221999976, 51.659624239000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024513", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4603000", "BldgCostT": "2965000", "sL_LossRatio": "0.968868122637547", "sL_AssetLoss": "190.48", "sL_BldgLoss": "184.55", "sL_StrLoss": "182.4", "sL_NStrLoss": "2.15", "sL_ContLoss": "5.93", "geom_point": "0101000020E610000064F369FCDF565EC0603FC4068BD44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.354722066999912, 51.658584317000056 ], [ -121.360499427999969, 51.658819530000166 ], [ -121.360120219999914, 51.662401147000054 ], [ -121.354342389999942, 51.662165916000077 ], [ -121.354722066999912, 51.658584317000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024514", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "1", "sL_AssetLoss": "215", "sL_BldgLoss": "215", "sL_StrLoss": "215", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000927606BA34585EC025EEEB9F2BD34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.377592075999971, 51.649085748000047 ], [ -121.378892395, 51.64910370899999 ], [ -121.378844293999975, 51.650451892000078 ], [ -121.377543937, 51.650433931000094 ], [ -121.377592075999971, 51.649085748000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024515", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23161417", "BldgCostT": "13971667", "sL_LossRatio": "1", "sL_AssetLoss": "1643.3", "sL_BldgLoss": "1643.3", "sL_StrLoss": "1643.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE6A65C2EF575EC0F7ABC63364D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.362905204999919, 51.653766560000093 ], [ -121.363061327999944, 51.652290871000133 ], [ -121.363284111999974, 51.650184904000035 ], [ -121.364721064999955, 51.650243337000127 ], [ -121.364728149999948, 51.650176339000062 ], [ -121.36930684099994, 51.650362408000042 ], [ -121.369308368999981, 51.650319841000105 ], [ -121.370175266999951, 51.650331877000077 ], [ -121.370184939999902, 51.650062241000086 ], [ -121.370618387999968, 51.650068258000054 ], [ -121.370628055999944, 51.649798621000045 ], [ -121.371061501999947, 51.649804636000106 ], [ -121.371071166999954, 51.649535001000054 ], [ -121.37150461, 51.649541013000068 ], [ -121.371514273999935, 51.649271377000105 ], [ -121.371947713999944, 51.649277389000048 ], [ -121.37195737499998, 51.649007752000095 ], [ -121.373257688999956, 51.649025774000073 ], [ -121.373199765999985, 51.650643592000044 ], [ -121.374500126999976, 51.650661601000095 ], [ -121.374471186, 51.651470510000074 ], [ -121.375338108999969, 51.651482509000061 ], [ -121.37532846799995, 51.651752144000064 ], [ -121.37619539699989, 51.651764137000022 ], [ -121.37617612299999, 51.652303410000087 ], [ -121.37704306199997, 51.652315396000084 ], [ -121.377052694999932, 51.652045760000114 ], [ -121.380520441999977, 51.652093640000047 ], [ -121.380530052999958, 51.651824003000044 ], [ -121.380963517999973, 51.651829981000105 ], [ -121.381107631999939, 51.647785424000062 ], [ -121.383274772, 51.647815286000082 ], [ -121.383265177999959, 51.648084923000098 ], [ -121.384565472999967, 51.648102820000048 ], [ -121.38455588799998, 51.648372458000061 ], [ -121.38498932100002, 51.648378421000118 ], [ -121.384979737999956, 51.648648058000049 ], [ -121.385413174999911, 51.648654020000016 ], [ -121.385374848999916, 51.649732571000094 ], [ -121.384941402999942, 51.649726609000034 ], [ -121.384922232999912, 51.65026588500011 ], [ -121.384488780999931, 51.650259921000014 ], [ -121.384479191999944, 51.650529559000063 ], [ -121.385346102999947, 51.650541484000073 ], [ -121.385326937999949, 51.651080759000102 ], [ -121.385760397999917, 51.651086719000048 ], [ -121.385718151999953, 51.652275755000055 ], [ -121.385702915999957, 51.652704545000056 ], [ -121.383535539999926, 51.652674727000068 ], [ -121.383525944999974, 51.652944364000071 ], [ -121.383523568999976, 51.652944331000064 ], [ -121.379624653999954, 51.652890591000109 ], [ -121.379615035999947, 51.653160227000086 ], [ -121.378350368999961, 51.653142768000059 ], [ -121.374846778999981, 51.65309432700009 ], [ -121.374856422999983, 51.652824690000067 ], [ -121.373989474999973, 51.65281268800009 ], [ -121.37397982499999, 51.653082324000081 ], [ -121.373546346999973, 51.65307632100005 ], [ -121.373536694, 51.653345956000088 ], [ -121.371802776999971, 51.653321925000093 ], [ -121.371812441999978, 51.653052290000112 ], [ -121.370945490999958, 51.653040265000115 ], [ -121.37093582199999, 51.653309900000046 ], [ -121.370199346, 51.653299680000082 ], [ -121.370126137999961, 51.653992725000101 ], [ -121.368689054999919, 51.6539343600001 ], [ -121.36868197499993, 51.654001359000048 ], [ -121.362905204999919, 51.653766560000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024517", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "79.9", "sL_BldgLoss": "79.9", "sL_StrLoss": "79.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D53200F146535EC060D1C67415D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.299599393999969, 51.625622775000089 ], [ -121.30005124099992, 51.623781380000061 ], [ -121.300069652999937, 51.623706340000055 ], [ -121.301517616999931, 51.623766064000094 ], [ -121.301475017999977, 51.624163705000115 ], [ -121.302201121999929, 51.62419364700007 ], [ -121.302175492999979, 51.624432924000132 ], [ -121.302539625999955, 51.624447937000085 ], [ -121.302155988999957, 51.62802947800008 ], [ -121.301096437999959, 51.627985787000078 ], [ -121.301083807999959, 51.62780849400005 ], [ -121.300935599999903, 51.62729790100007 ], [ -121.30076510399995, 51.626954485000027 ], [ -121.300434502999963, 51.626427294000088 ], [ -121.300044693999965, 51.626007512000079 ], [ -121.299743392999957, 51.625734204000125 ], [ -121.29969833299999, 51.625699356000062 ], [ -121.299599393999969, 51.625622775000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024518", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "95.8", "sL_BldgLoss": "95.8", "sL_StrLoss": "95.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000096711958C3565EC061B17E1A94D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.357980264999952, 51.651780586000044 ], [ -121.359280648999928, 51.65179876400002 ], [ -121.359253530999965, 51.652549632000024 ], [ -121.359251437, 51.652607667000098 ], [ -121.358765369999944, 51.652600873000026 ], [ -121.357951029999953, 51.652589487000071 ], [ -121.357945809999975, 51.652733908000094 ], [ -121.357941284, 51.652859121000091 ], [ -121.357490571999946, 51.652852817000081 ], [ -121.357074341999947, 51.652846993000026 ], [ -121.357069584999977, 51.652978540000056 ], [ -121.357064591000011, 51.653116627000038 ], [ -121.356627658999969, 51.653110514000076 ], [ -121.356197644999909, 51.653104494000083 ], [ -121.356192725999961, 51.653240396000029 ], [ -121.356187887999951, 51.653374127000099 ], [ -121.35576473399999, 51.653368202000081 ], [ -121.355320936999959, 51.653361987000082 ], [ -121.355315859999905, 51.653502244000045 ], [ -121.355311174999969, 51.653631620000105 ], [ -121.3549018, 51.653625886000043 ], [ -121.354444218999973, 51.65361947300007 ], [ -121.354438980999959, 51.653764086000088 ], [ -121.354434452999953, 51.653889107000097 ], [ -121.354038854999956, 51.653883562000033 ], [ -121.354000972, 51.65388303100012 ], [ -121.354000538999955, 51.653895004000056 ], [ -121.353991202999936, 51.654152664000037 ], [ -121.35317589899995, 51.654141232000043 ], [ -121.352257273999953, 51.654128345000089 ], [ -121.352286611999929, 51.653319445000079 ], [ -121.353153560999928, 51.653331607000069 ], [ -121.353163335999952, 51.653061975000071 ], [ -121.354030279999989, 51.653074131000032 ], [ -121.354040049999981, 51.652804498000094 ], [ -121.354906989000014, 51.65281664700008 ], [ -121.354916750999962, 51.652547014000078 ], [ -121.355783688, 51.652559158000066 ], [ -121.355793446999982, 51.652289523000064 ], [ -121.356660375999965, 51.652301660000049 ], [ -121.356670128999937, 51.652032027000068 ], [ -121.357970518999977, 51.652050220000049 ], [ -121.357980264999952, 51.651780586000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024519", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "94.5", "sL_BldgLoss": "94.5", "sL_StrLoss": "94.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000457D378239545EC0AF5A3E3759CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.317053647999941, 51.620986615000028 ], [ -121.317063624999932, 51.620716985000058 ], [ -121.316630468999932, 51.620710774000102 ], [ -121.316640448999976, 51.620441145 ], [ -121.315774141999896, 51.620428717000074 ], [ -121.315784125, 51.620159088000086 ], [ -121.313618377, 51.620127994 ], [ -121.31365836199997, 51.619049477000075 ], [ -121.316257199999939, 51.6190867830001 ], [ -121.31624722, 51.619356413000048 ], [ -121.317113505999885, 51.619368836000064 ], [ -121.317103528999965, 51.619638466000069 ], [ -121.317536675999918, 51.619644676000121 ], [ -121.317526701999924, 51.61991430500008 ], [ -121.317959849999966, 51.619920513000125 ], [ -121.31794987899994, 51.620190142000119 ], [ -121.318383029999964, 51.620196349000146 ], [ -121.318353124999959, 51.621005239000041 ], [ -121.317053647999941, 51.620986615000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024520", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5313500", "BldgCostT": "3455000", "sL_LossRatio": "0.966487755786649", "sL_AssetLoss": "298.1", "sL_BldgLoss": "288.11", "sL_StrLoss": "284.5", "sL_NStrLoss": "3.61", "sL_ContLoss": "9.99", "geom_point": "0101000020E610000093584A7D76525EC08E5CF5886ACD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.289610902999954, 51.601495874000108 ], [ -121.290263222999926, 51.601522857000084 ], [ -121.290509780999955, 51.604427363000092 ], [ -121.290538234999943, 51.604762481000137 ], [ -121.290931212999965, 51.605471623000057 ], [ -121.290957361999958, 51.607178572000102 ], [ -121.287472956999963, 51.607034439000053 ], [ -121.285733646999972, 51.606962453000072 ], [ -121.286118439999925, 51.603380895000036 ], [ -121.286687118999964, 51.603404435000137 ], [ -121.286727735999975, 51.603026309000072 ], [ -121.287279941999941, 51.603049165000058 ], [ -121.287307924999979, 51.60278862200007 ], [ -121.287731317999899, 51.602806145000073 ], [ -121.287754815999918, 51.602587333000066 ], [ -121.288137849999956, 51.602603184000124 ], [ -121.28816651399994, 51.602336242000064 ], [ -121.2886779789999, 51.60235740500012 ], [ -121.288713308999931, 51.602028355000073 ], [ -121.289167568, 51.602047149000057 ], [ -121.289197603999966, 51.601767365000079 ], [ -121.289580060999967, 51.60178318700013 ], [ -121.289610902999954, 51.601495874000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024521", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.4", "sL_BldgLoss": "50.4", "sL_StrLoss": "50.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7F230FE47565EC0B0B1E829B4D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.347075119999957, 51.653515966000107 ], [ -121.349242496999949, 51.653546458000037 ], [ -121.349213103999887, 51.654355356000039 ], [ -121.347624404999948, 51.654333010000059 ], [ -121.34704568799998, 51.654324864000046 ], [ -121.347046628999934, 51.654298976000106 ], [ -121.347075119999957, 51.653515966000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024523", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4954167", "BldgCostT": "3416667", "sL_LossRatio": "1", "sL_AssetLoss": "324.3", "sL_BldgLoss": "324.3", "sL_StrLoss": "324.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000946F32810D535EC00B60A9B218D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.296382992, 51.627791307000045 ], [ -121.29639962100002, 51.627636275000079 ], [ -121.295302464999935, 51.627590978000043 ], [ -121.295686658999941, 51.624009459000078 ], [ -121.295693498999981, 51.624009742000055 ], [ -121.29574518599999, 51.623527860000074 ], [ -121.296197827999947, 51.62354654900011 ], [ -121.300069652999937, 51.623706340000055 ], [ -121.30005124099992, 51.623781380000061 ], [ -121.299599393999969, 51.625622775000089 ], [ -121.300127546999974, 51.627945826000023 ], [ -121.296382992, 51.627791307000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024524", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16135866", "BldgCostT": "10498879", "sL_LossRatio": "1", "sL_AssetLoss": "1012.2", "sL_BldgLoss": "1012.2", "sL_StrLoss": "1012.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D07C2802B4C5EC038E497A87BCC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.1917109769999, 51.599850397000068 ], [ -121.191767210999942, 51.599337201000033 ], [ -121.191655256999965, 51.599332472000157 ], [ -121.191640028999956, 51.599471437000084 ], [ -121.191000515, 51.599444428000027 ], [ -121.190173398999946, 51.598971784000085 ], [ -121.189629775999947, 51.598460495000033 ], [ -121.188365903999937, 51.59755900400004 ], [ -121.184564296999937, 51.59623310400012 ], [ -121.182092091999976, 51.59561069300009 ], [ -121.181423104999979, 51.595414252000076 ], [ -121.181591766999972, 51.593878112 ], [ -121.18450294199998, 51.594001294000073 ], [ -121.184587375999968, 51.593231782000018 ], [ -121.187159172999912, 51.593340541000046 ], [ -121.187342194999971, 51.593535107000015 ], [ -121.187729809999894, 51.593844704000041 ], [ -121.188257612999976, 51.594144098000129 ], [ -121.188724819999933, 51.594336494000054 ], [ -121.189270896999943, 51.594507988000025 ], [ -121.190985914999956, 51.594827785000071 ], [ -121.191502925999927, 51.594962104000032 ], [ -121.191888007999935, 51.595105318000073 ], [ -121.191920507999924, 51.59511740300006 ], [ -121.192350989999937, 51.595353190000033 ], [ -121.19262620799995, 51.595551899000064 ], [ -121.192880699999961, 51.595807293000114 ], [ -121.193146719999987, 51.596169300000035 ], [ -121.193178508999949, 51.59622831800003 ], [ -121.194128055999926, 51.597989907000091 ], [ -121.19479200899994, 51.599289920000089 ], [ -121.194837873999973, 51.599379807000084 ], [ -121.195240580999936, 51.599923002000054 ], [ -121.195314168999985, 51.599993516000097 ], [ -121.195381823999938, 51.600058341000114 ], [ -121.195551974999916, 51.600221407000063 ], [ -121.197155093999982, 51.601757714000023 ], [ -121.197456494999983, 51.602177594000068 ], [ -121.197561189999973, 51.602323491000092 ], [ -121.197745408999978, 51.602824203000075 ], [ -121.19780840699994, 51.603308011000081 ], [ -121.197773121999887, 51.604053284000031 ], [ -121.197771451999927, 51.60408922900006 ], [ -121.197771113999963, 51.604096384000087 ], [ -121.197220207999948, 51.604080505000113 ], [ -121.196835397999934, 51.604316900000079 ], [ -121.19679641299993, 51.604533389000053 ], [ -121.196584191999975, 51.604781216000099 ], [ -121.196147782999986, 51.604890790000098 ], [ -121.19582738299998, 51.604922363000092 ], [ -121.195742799999962, 51.604930698000075 ], [ -121.195122315999953, 51.604866596000107 ], [ -121.194888896999942, 51.604566107000053 ], [ -121.19494996099999, 51.604461738000097 ], [ -121.19547799499999, 51.603559213000047 ], [ -121.19575039199999, 51.602898394000071 ], [ -121.195814113999944, 51.602350093000076 ], [ -121.195559081999988, 51.601897197000078 ], [ -121.194772413999942, 51.601327492000053 ], [ -121.192018183999963, 51.600142494000153 ], [ -121.191711310999892, 51.599850588000045 ], [ -121.1917109769999, 51.599850397000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024525", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "107", "sL_BldgLoss": "107", "sL_StrLoss": "107", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039BDE6B0964B5EC088AEB8F60DCB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.18100088499996, 51.587662831000102 ], [ -121.181011656999956, 51.587393219000056 ], [ -121.180578848999986, 51.587386509000112 ], [ -121.180589622999932, 51.587116899000137 ], [ -121.18015681699994, 51.587110187000107 ], [ -121.180253785, 51.584683682000062 ], [ -121.179821003999947, 51.584676970000082 ], [ -121.17984819599998, 51.583996628000115 ], [ -121.18003542299999, 51.584128700000129 ], [ -121.180418986999982, 51.584486690000077 ], [ -121.180906704999956, 51.585123492 ], [ -121.18100629499996, 51.585255492000094 ], [ -121.181503772000013, 51.585914835000075 ], [ -121.181498300999976, 51.586051869000066 ], [ -121.181608455999964, 51.58605357600004 ], [ -121.182737696999965, 51.587550145000115 ], [ -121.182732127999898, 51.587689655000084 ], [ -121.18100088499996, 51.587662831000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024527", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6996250", "BldgCostT": "4825000", "sL_LossRatio": "1", "sL_AssetLoss": "657", "sL_BldgLoss": "657", "sL_StrLoss": "657", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E3B22D7744C5EC0F38304D63BD34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.191959317999931, 51.652043150000075 ], [ -121.191979723, 51.651857149000108 ], [ -121.191135201999927, 51.651821527000052 ], [ -121.191528104999932, 51.648240446000059 ], [ -121.197303215999952, 51.648483917000085 ], [ -121.197282833999964, 51.648669918000081 ], [ -121.198127299999939, 51.648705496000126 ], [ -121.197734930999943, 51.652286598000032 ], [ -121.191959317999931, 51.652043150000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024529", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "33268500", "BldgCostT": "22680000", "sL_LossRatio": "1", "sL_AssetLoss": "2459.7", "sL_BldgLoss": "2459.7", "sL_StrLoss": "2459.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027FCCE060B4F5EC0A0308BFDA3CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.221371907999952, 51.618250597000056 ], [ -121.221762046999956, 51.614669297000049 ], [ -121.222084893999934, 51.61468284100004 ], [ -121.222224022999967, 51.613405472000125 ], [ -121.222935299999932, 51.613428405000064 ], [ -121.223709909999954, 51.613514903000116 ], [ -121.224683394999943, 51.613681932000048 ], [ -121.225244706999916, 51.61377825100007 ], [ -121.227039015999978, 51.614086107000034 ], [ -121.227616503999954, 51.61415980500005 ], [ -121.227746438999986, 51.614163599000072 ], [ -121.228321487999978, 51.614180407000084 ], [ -121.23224337399995, 51.613925494000078 ], [ -121.233000881999899, 51.613930199000102 ], [ -121.233710778999949, 51.613999504000056 ], [ -121.234745289999921, 51.614174996000038 ], [ -121.234924694999989, 51.614205003000066 ], [ -121.235099496999936, 51.613182492000121 ], [ -121.235248885999965, 51.612873899000078 ], [ -121.235733110999917, 51.612152208000111 ], [ -121.236354513999956, 51.611274198000132 ], [ -121.236407115999924, 51.610749399000035 ], [ -121.23637572200002, 51.610452197000029 ], [ -121.236403094999986, 51.609756838000052 ], [ -121.236417787999954, 51.609383598000093 ], [ -121.236526117000011, 51.608893506000058 ], [ -121.237098093999961, 51.608322899000086 ], [ -121.237209326999974, 51.608165702000072 ], [ -121.237400694999963, 51.607711401000145 ], [ -121.237393904999976, 51.607346786000036 ], [ -121.237025501999952, 51.60692218600007 ], [ -121.236980502, 51.606776397000012 ], [ -121.23700683899996, 51.606680308000108 ], [ -121.237037580999967, 51.606568144000029 ], [ -121.237057308999951, 51.60649630800004 ], [ -121.239269818999929, 51.607219039000029 ], [ -121.240058426999937, 51.607761148000066 ], [ -121.240844341999946, 51.609299291000099 ], [ -121.242324573999966, 51.609915404000041 ], [ -121.242351020999948, 51.60994880700013 ], [ -121.242143586999987, 51.611861524000027 ], [ -121.239872267999885, 51.611766617000072 ], [ -121.23981178799994, 51.6123239940001 ], [ -121.24279005799994, 51.612448432000072 ], [ -121.242774033, 51.612596205000116 ], [ -121.243798832999943, 51.612639004000108 ], [ -121.24375463599992, 51.613046647000061 ], [ -121.244292143999985, 51.61306909200006 ], [ -121.244280727999978, 51.613174390000097 ], [ -121.245089823999976, 51.613208171000096 ], [ -121.245003606999958, 51.614003577000076 ], [ -121.245226174999942, 51.614012868000017 ], [ -121.245192888999924, 51.614319963000113 ], [ -121.245252894999908, 51.614322467000079 ], [ -121.245090026999918, 51.615825023000127 ], [ -121.244864674999945, 51.617903848000012 ], [ -121.23909332199996, 51.617662776000046 ], [ -121.23910960299996, 51.617512787000109 ], [ -121.238390706999965, 51.617482738000078 ], [ -121.238372278000014, 51.617652502000027 ], [ -121.23260099399999, 51.617411103000066 ], [ -121.232613067999949, 51.617300014000079 ], [ -121.231979279999962, 51.617273486000101 ], [ -121.23201206600001, 51.616971865000032 ], [ -121.23098956699998, 51.616929060000068 ], [ -121.231037895999961, 51.61648453700014 ], [ -121.230984059999983, 51.616483725000073 ], [ -121.230989397999934, 51.616345325000012 ], [ -121.230983677999973, 51.61639707900008 ], [ -121.229846458999958, 51.616349460000059 ], [ -121.22984302899998, 51.616381006000054 ], [ -121.227384206999915, 51.616278007000048 ], [ -121.227143239999961, 51.6184925660001 ], [ -121.221371907999952, 51.618250597000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024531", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "53715706", "BldgCostT": "36572039", "sL_LossRatio": "0.998841315046439", "sL_AssetLoss": "3279.58", "sL_BldgLoss": "3275.78", "sL_StrLoss": "3274.4", "sL_NStrLoss": "1.38", "sL_ContLoss": "3.8", "geom_point": "0101000020E6100000D16A16A222515EC041C25A29C2CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.274030460999953, 51.6289804970001 ], [ -121.274311609, 51.626371562000088 ], [ -121.27111740399998, 51.626239029000075 ], [ -121.271072450999966, 51.626655915000121 ], [ -121.265299805, 51.626416171000088 ], [ -121.265379573999937, 51.625677317000097 ], [ -121.265171454999972, 51.625668669000035 ], [ -121.265197495999956, 51.625427459000051 ], [ -121.26379902299999, 51.625369332000055 ], [ -121.263807765999957, 51.625288378000029 ], [ -121.262985898999901, 51.625254209000083 ], [ -121.263086007999959, 51.624327361000063 ], [ -121.258163394999912, 51.624122581000108 ], [ -121.258193811999931, 51.623841253000087 ], [ -121.256761865999934, 51.623781645000086 ], [ -121.256775966999896, 51.623651274000082 ], [ -121.254814506999978, 51.623569593000092 ], [ -121.254877792999949, 51.622984659000082 ], [ -121.254667242999972, 51.622975889000067 ], [ -121.254698032999897, 51.622691302000106 ], [ -121.254001139999929, 51.622662272000049 ], [ -121.254041081999929, 51.622293152000076 ], [ -121.253289839999979, 51.622261853000104 ], [ -121.253340596999948, 51.621792865000032 ], [ -121.25245664599997, 51.621756031000075 ], [ -121.252524372999972, 51.621130328000049 ], [ -121.251525755999978, 51.621088707000077 ], [ -121.251584734999952, 51.620543923000142 ], [ -121.250588260999905, 51.620502382000055 ], [ -121.250637095999963, 51.620051390000128 ], [ -121.249571457999977, 51.62000695600004 ], [ -121.249924438999926, 51.616747608000097 ], [ -121.249959311999973, 51.616425566000075 ], [ -121.255730560999922, 51.616666088000017 ], [ -121.255681782999957, 51.617117085000054 ], [ -121.256747356999966, 51.617161462000134 ], [ -121.256688446999931, 51.617706249000065 ], [ -121.257684862999923, 51.617747737000059 ], [ -121.25764698099999, 51.618098123000081 ], [ -121.260283795999982, 51.618207868000077 ], [ -121.260233994999936, 51.618668751000016 ], [ -121.261111199999931, 51.618705247000037 ], [ -121.26106170499996, 51.619163359000012 ], [ -121.262231490999966, 51.619212017000059 ], [ -121.262193777, 51.61956118400014 ], [ -121.263321677999983, 51.619608088000049 ], [ -121.26329792699994, 51.619828029000111 ], [ -121.264383456999951, 51.619873161000037 ], [ -121.264285574999946, 51.620779731000034 ], [ -121.264322422999967, 51.620781263000012 ], [ -121.264222347999919, 51.621708115000089 ], [ -121.267302753999985, 51.621836128000069 ], [ -121.267324437999932, 51.621635185000052 ], [ -121.26977691, 51.621737043000032 ], [ -121.269989136, 51.619769145000106 ], [ -121.27576093299993, 51.620008653000085 ], [ -121.275726992, 51.620323773000067 ], [ -121.276613424999965, 51.620360531000109 ], [ -121.276514142999972, 51.621282456000095 ], [ -121.278678518999968, 51.621372177000097 ], [ -121.27833007299999, 51.62460894500002 ], [ -121.281824134999908, 51.624753697000074 ], [ -121.281796406999931, 51.62501144200008 ], [ -121.283962878999958, 51.625101140000034 ], [ -121.283811432, 51.626509467000041 ], [ -121.285923908999933, 51.626596890000052 ], [ -121.28570466799999, 51.628636397000015 ], [ -121.288263269999916, 51.628742230000043 ], [ -121.288190853999978, 51.629416209000034 ], [ -121.286950359999977, 51.629503433000082 ], [ -121.283021864999967, 51.628949057000071 ], [ -121.274030460999953, 51.6289804970001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024533", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5618750", "BldgCostT": "3875000", "sL_LossRatio": "1", "sL_AssetLoss": "407.4", "sL_BldgLoss": "407.4", "sL_StrLoss": "407.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000691DF22255485EC0D590B8C752D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.127507845999972, 51.649049940000076 ], [ -121.133282704999942, 51.649296649000057 ], [ -121.132885039999934, 51.652877525000086 ], [ -121.127109710999932, 51.652630796000011 ], [ -121.127507845999972, 51.649049940000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024535", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5524500", "BldgCostT": "3810000", "sL_LossRatio": "1", "sL_AssetLoss": "498.4", "sL_BldgLoss": "498.4", "sL_StrLoss": "498.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BE33988E12485EC0E27E1BBDF5CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.123827119999959, 51.622704204000044 ], [ -121.12959849399999, 51.622951106000137 ], [ -121.129200766999986, 51.626532059000041 ], [ -121.128457139999924, 51.626500263000089 ], [ -121.128438341999981, 51.626669477000057 ], [ -121.122666484999939, 51.626422517000066 ], [ -121.123064742999972, 51.622841587000053 ], [ -121.123808303999979, 51.622873418000033 ], [ -121.123827119999959, 51.622704204000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024536", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7919417", "BldgCostT": "5461667", "sL_LossRatio": "1", "sL_AssetLoss": "595", "sL_BldgLoss": "595", "sL_StrLoss": "595", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008D0D59B42B495EC0D9CC63C557D04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.142404647999982, 51.625326347000048 ], [ -121.148176472, 51.625572308000059 ], [ -121.147780236999921, 51.62915331700006 ], [ -121.14429415499994, 51.629004797000043 ], [ -121.144180533999972, 51.630030800000064 ], [ -121.138408146999936, 51.629784637000093 ], [ -121.138805151999989, 51.626203663000112 ], [ -121.142290993999964, 51.62635235200004 ], [ -121.142404647999982, 51.625326347000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024537", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "141", "sL_BldgLoss": "141", "sL_StrLoss": "141", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001F584403674C5EC0E19C8D6C19CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.191220411999922, 51.610733803000137 ], [ -121.191280692999925, 51.609519767000059 ], [ -121.190820048999967, 51.609285586000034 ], [ -121.194985565999943, 51.60946141700007 ], [ -121.194923635999913, 51.610026839000128 ], [ -121.196569220999962, 51.610096259000024 ], [ -121.196572046999975, 51.610024939000084 ], [ -121.197126962999945, 51.610033464000026 ], [ -121.197097210999942, 51.610268497000085 ], [ -121.197165908000017, 51.610541289000103 ], [ -121.197414983999934, 51.610767600000095 ], [ -121.197010183999978, 51.61079820500003 ], [ -121.193941580999962, 51.610764103000086 ], [ -121.191220411999922, 51.610733803000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024540", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "42.3", "sL_BldgLoss": "42.3", "sL_StrLoss": "42.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013343D93434D5EC02BEB483F2BCF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.203340517999933, 51.618363406000121 ], [ -121.211764220999953, 51.618416932000123 ], [ -121.21174817399999, 51.618563928000093 ], [ -121.209128424999918, 51.618453775000091 ], [ -121.209095970999968, 51.618750891000033 ], [ -121.203324704999957, 51.618508009000038 ], [ -121.203340517999933, 51.618363406000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024541", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "65516416", "BldgCostT": "43951666", "sL_LossRatio": "0.997936406377269", "sL_AssetLoss": "4579.39", "sL_BldgLoss": "4569.94", "sL_StrLoss": "4566.5", "sL_NStrLoss": "3.44", "sL_ContLoss": "9.45", "geom_point": "0101000020E6100000AFC7F97291495EC031A4E59BC8CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.168458190999942, 51.592115704000086 ], [ -121.168189108000021, 51.591976106000111 ], [ -121.167886704999972, 51.59196330400006 ], [ -121.167472777999961, 51.592189695000059 ], [ -121.166760906999983, 51.592674008000131 ], [ -121.166446973999953, 51.592561493000062 ], [ -121.16489598899993, 51.592393399000144 ], [ -121.164580579999935, 51.592333595000085 ], [ -121.164371622999923, 51.592105704000055 ], [ -121.16355580599999, 51.591750385000068 ], [ -121.163321882999966, 51.591648501000051 ], [ -121.162663287999962, 51.591890703000061 ], [ -121.161891094999959, 51.591321009000076 ], [ -121.161593322999963, 51.591208500000057 ], [ -121.160538897999956, 51.591199911000146 ], [ -121.16033109899999, 51.590999091000086 ], [ -121.160236001999976, 51.590872410000038 ], [ -121.159992295999984, 51.590823914000111 ], [ -121.159659719999965, 51.59083670600004 ], [ -121.15947970499991, 51.591013394000072 ], [ -121.159378501999981, 51.590984890000158 ], [ -121.15928428699999, 51.590802611000107 ], [ -121.15931082900002, 51.590561952000066 ], [ -121.159229798999945, 51.590560682000088 ], [ -121.159262499999969, 51.589751856000134 ], [ -121.15852887399997, 51.589740347000081 ], [ -121.158477919999925, 51.589684602000055 ], [ -121.158399528999951, 51.589672060000048 ], [ -121.158429563999917, 51.588929449000069 ], [ -121.15799674699997, 51.588922656000086 ], [ -121.158007654999977, 51.588653047000122 ], [ -121.157574841999917, 51.588646253000057 ], [ -121.157618475999953, 51.587567821000079 ], [ -121.16021530099999, 51.587608564000043 ], [ -121.160182619999958, 51.588417389000064 ], [ -121.160464277999921, 51.588421805000088 ], [ -121.16070297899995, 51.586256827000028 ], [ -121.160735226999961, 51.585458480000078 ], [ -121.161168010999972, 51.585465262000092 ], [ -121.161178897999946, 51.585195653000078 ], [ -121.16161168, 51.585202434000067 ], [ -121.16168786199998, 51.583315172000077 ], [ -121.16192636599996, 51.583318908000116 ], [ -121.162986156000017, 51.58333550400004 ], [ -121.162964405999958, 51.583874723000072 ], [ -121.16339717399994, 51.583881497000071 ], [ -121.163331934999988, 51.585499152000146 ], [ -121.162899148999941, 51.585492377000072 ], [ -121.162892824999986, 51.585649125000032 ], [ -121.165447081999929, 51.585757650000055 ], [ -121.165679493, 51.583647418000069 ], [ -121.165571886999942, 51.583645737000019 ], [ -121.165587895999963, 51.583248309000048 ], [ -121.161961030999962, 51.583094189000072 ], [ -121.160312658999914, 51.583024104000103 ], [ -121.160362449999965, 51.58257248400006 ], [ -121.159363057999926, 51.582529980000068 ], [ -121.15938525699994, 51.582328653000033 ], [ -121.154464947999926, 51.582119268000042 ], [ -121.154325223999948, 51.583385047000071 ], [ -121.148558903999941, 51.583139387000131 ], [ -121.148695348999951, 51.581904782000031 ], [ -121.146218542999947, 51.581799174000075 ], [ -121.146107848999989, 51.582800271000039 ], [ -121.146984947999897, 51.582814124000045 ], [ -121.146963008999975, 51.583353339000098 ], [ -121.147395769999918, 51.583360172000042 ], [ -121.147373834999939, 51.583899385000059 ], [ -121.147806601999918, 51.583906217000028 ], [ -121.147784671999901, 51.584445431000098 ], [ -121.148650213999986, 51.58445909100007 ], [ -121.148617332999976, 51.585267912000099 ], [ -121.148184551999961, 51.58526108300007 ], [ -121.148173588999967, 51.58553068900008 ], [ -121.146442463000014, 51.585503356000089 ], [ -121.146453436999963, 51.585233750000079 ], [ -121.146020658999973, 51.585226913000078 ], [ -121.146031634999929, 51.584957306000071 ], [ -121.145869605999962, 51.584954746000079 ], [ -121.145851060999959, 51.585122443000039 ], [ -121.145796778999909, 51.585120128000078 ], [ -121.14450427499996, 51.5847339930001 ], [ -121.143298780999942, 51.584534605000044 ], [ -121.142043809999933, 51.584516107000049 ], [ -121.141440902999946, 51.584425000000103 ], [ -121.139210986999956, 51.583561910000086 ], [ -121.138215890999945, 51.58353769700004 ], [ -121.136569104, 51.583187301000102 ], [ -121.135258585999949, 51.582780003000032 ], [ -121.133968291, 51.582589105000075 ], [ -121.133369090999949, 51.582416810000041 ], [ -121.12816042199999, 51.581983901000079 ], [ -121.126132293999916, 51.581142197000091 ], [ -121.125545822999982, 51.580988302000051 ], [ -121.122457486999963, 51.580642302000058 ], [ -121.120321884999939, 51.580170793 ], [ -121.118509485999951, 51.579770602000067 ], [ -121.117672881999979, 51.579729300000068 ], [ -121.115410893999965, 51.579998509000099 ], [ -121.113346915999927, 51.579984297000117 ], [ -121.112331489999946, 51.580129489000143 ], [ -121.110234393999946, 51.580895790000099 ], [ -121.109330391999919, 51.581133593000096 ], [ -121.108666122999978, 51.58115780100006 ], [ -121.107434409999911, 51.581614985000101 ], [ -121.106782986999974, 51.582001010000049 ], [ -121.105999891999943, 51.582770006000047 ], [ -121.10563352099993, 51.582566408000048 ], [ -121.105209781999989, 51.582010893000067 ], [ -121.105134974999942, 51.581694696000106 ], [ -121.105090808999961, 51.581662306000041 ], [ -121.105395295999955, 51.581604198000058 ], [ -121.107675429999915, 51.58086680600006 ], [ -121.108500978, 51.580599803000048 ], [ -121.108726908999955, 51.580496184 ], [ -121.108842212999917, 51.58035808900005 ], [ -121.1089059699999, 51.579687950000071 ], [ -121.108927200999915, 51.579464896000047 ], [ -121.108992989999962, 51.578980268000095 ], [ -121.109008284999931, 51.578867500000115 ], [ -121.109012090999926, 51.578681577000069 ], [ -121.109022476999954, 51.578170931000024 ], [ -121.109424392999927, 51.578188205000075 ], [ -121.109463385999959, 51.577838183000033 ], [ -121.110316449999971, 51.577874843000117 ], [ -121.110335855999935, 51.577700603000075 ], [ -121.113917173999937, 51.577854438000074 ], [ -121.113937301999897, 51.577673588000039 ], [ -121.115004787999965, 51.57771941900009 ], [ -121.115023961999924, 51.577547114000055 ], [ -121.115949651999955, 51.577586850000031 ], [ -121.115963725999919, 51.577460336000051 ], [ -121.116690504999937, 51.577491528000031 ], [ -121.116693993999974, 51.577460153000054 ], [ -121.11690805299996, 51.577469339000075 ], [ -121.116992927999945, 51.576706258000051 ], [ -121.120382873999972, 51.576851680000068 ], [ -121.120398068999933, 51.576483452000012 ], [ -121.120526312999985, 51.576483457000037 ], [ -121.120516799999962, 51.576764610000055 ], [ -121.12061286699992, 51.576851465000104 ], [ -121.1207664399999, 51.57690304100003 ], [ -121.122208920999967, 51.576933754000024 ], [ -121.12268366099994, 51.576943843000052 ], [ -121.12298196299993, 51.576996213000044 ], [ -121.123817805999963, 51.577267726000045 ], [ -121.124095052999934, 51.577405529000075 ], [ -121.124563495999922, 51.577816888000036 ], [ -121.124831060999924, 51.577963290000113 ], [ -121.125341804999891, 51.578111104000051 ], [ -121.12693783099995, 51.578384573000044 ], [ -121.127177555999964, 51.578403823000023 ], [ -121.127191946999943, 51.579970522000075 ], [ -121.127035351999908, 51.580441466000075 ], [ -121.127659689999973, 51.580558206000035 ], [ -121.12793526199999, 51.58060283800004 ], [ -121.130187866999975, 51.580967691000048 ], [ -121.130477632999941, 51.581049358 ], [ -121.130848757999942, 51.581153982000082 ], [ -121.131241187999933, 51.581264609000065 ], [ -121.132682371999962, 51.58149137600001 ], [ -121.133086034999948, 51.581554938000053 ], [ -121.135469890999943, 51.582052661000084 ], [ -121.136366787000014, 51.582166544000053 ], [ -121.138275759999928, 51.582388460000033 ], [ -121.140260317999974, 51.583039910000089 ], [ -121.141524584999971, 51.582976048000063 ], [ -121.141967189999917, 51.583034904000016 ], [ -121.142062679, 51.583047590000042 ], [ -121.14230521899999, 51.582568478000049 ], [ -121.142529774999929, 51.582124833000108 ], [ -121.142696765999972, 51.581937662000094 ], [ -121.1428673299999, 51.581836088000053 ], [ -121.14309803499998, 51.581766794000039 ], [ -121.143358700999968, 51.581741040000132 ], [ -121.143591386999972, 51.581739002000091 ], [ -121.143779101999911, 51.581737400000058 ], [ -121.14461578399991, 51.581793789000187 ], [ -121.145027000999988, 51.581781640000017 ], [ -121.14538330799999, 51.581729375000094 ], [ -121.145746442999908, 51.581627929000028 ], [ -121.146559184999973, 51.581285088000058 ], [ -121.146782496999961, 51.581190872000072 ], [ -121.147450234999909, 51.580823555000066 ], [ -121.147875655999954, 51.580466494000113 ], [ -121.148037693999981, 51.58033048000005 ], [ -121.148821467999966, 51.580183996000081 ], [ -121.149601507999975, 51.580123715000056 ], [ -121.150273772999924, 51.580134366000038 ], [ -121.151303111999965, 51.580295145000107 ], [ -121.151839805999927, 51.580353116000062 ], [ -121.15203937899993, 51.580277040000084 ], [ -121.152473621999889, 51.579557952000066 ], [ -121.152561423999941, 51.579592068000125 ], [ -121.152742229999959, 51.579662228000117 ], [ -121.152739905999965, 51.579719512000047 ], [ -121.152908341999975, 51.579726686000086 ], [ -121.153949939999976, 51.580130854000053 ], [ -121.15460323399995, 51.580384321000039 ], [ -121.155424312000022, 51.580702933000047 ], [ -121.155764975999929, 51.580835096000058 ], [ -121.156228418999959, 51.580984692000108 ], [ -121.15677610099999, 51.581161514000094 ], [ -121.157227437999907, 51.581267138000022 ], [ -121.157555389999914, 51.581343890000042 ], [ -121.158437406999937, 51.581462393999978 ], [ -121.162178479999909, 51.581684497000047 ], [ -121.162192932999957, 51.58168526700009 ], [ -121.162866774999912, 51.58172186000008 ], [ -121.16447479199995, 51.58180911199999 ], [ -121.16557480100002, 51.581815324000083 ], [ -121.1668755419999, 51.581748237000106 ], [ -121.167854417999976, 51.581680420000104 ], [ -121.16815541299999, 51.581659604 ], [ -121.169177717999943, 51.581687692000067 ], [ -121.170228579999957, 51.581837493000066 ], [ -121.171170128999933, 51.582006941000067 ], [ -121.17152647199994, 51.582071087000031 ], [ -121.172114629999953, 51.582176933000028 ], [ -121.172017472999954, 51.583060330000066 ], [ -121.167642589999929, 51.582874657000012 ], [ -121.167623581999962, 51.583047333000074 ], [ -121.167328635000018, 51.583034810000051 ], [ -121.167324659999949, 51.583133567000068 ], [ -121.167099923999942, 51.583130056000094 ], [ -121.171509222999973, 51.583317210000082 ], [ -121.171115269000012, 51.586898445000081 ], [ -121.169701373999885, 51.586838450000066 ], [ -121.169600471999985, 51.587755335000011 ], [ -121.169737042999984, 51.587757465000031 ], [ -121.169715368999945, 51.58829668500011 ], [ -121.170148181999963, 51.588303435000078 ], [ -121.170134094999952, 51.588653978000153 ], [ -121.173144443999917, 51.588781675000064 ], [ -121.173067511999946, 51.589481219000099 ], [ -121.173144292999964, 51.589484475000113 ], [ -121.173129943999982, 51.589614951000094 ], [ -121.173861177, 51.589645956000041 ], [ -121.173848218999964, 51.589763795000117 ], [ -121.17461816, 51.589796437000054 ], [ -121.17450133299991, 51.590859035000101 ], [ -121.174224400999918, 51.593377660000044 ], [ -121.173983218999965, 51.593367436000079 ], [ -121.171414608999953, 51.592811488000045 ], [ -121.169700294999956, 51.592440403000047 ], [ -121.168458190999942, 51.592115704000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024543", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.4", "sL_BldgLoss": "46.4", "sL_StrLoss": "46.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A75D4C339D4A5EC0D5ADBFA147CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.165601095999989, 51.604419170000057 ], [ -121.165611963999964, 51.604149561000021 ], [ -121.165179001999945, 51.604142793000086 ], [ -121.165189872999974, 51.603873184000044 ], [ -121.164756910999969, 51.603866415000134 ], [ -121.164778253999941, 51.603337179000079 ], [ -121.164789527999943, 51.603057588000084 ], [ -121.166088386999888, 51.603077893000062 ], [ -121.166077521999966, 51.60334750100003 ], [ -121.166510478999939, 51.603354266000018 ], [ -121.166499615999953, 51.603623876000015 ], [ -121.166932573999972, 51.603630639000052 ], [ -121.16689999399992, 51.604439465000027 ], [ -121.16622682299996, 51.604428949000123 ], [ -121.165601095999989, 51.604419170000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024544", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.8", "sL_BldgLoss": "41.8", "sL_StrLoss": "41.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000064FCA0D3984D5EC01261EC52DDCE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.21242390299993, 51.614382503000108 ], [ -121.212826933999935, 51.614399444000121 ], [ -121.212436068000017, 51.617980714000062 ], [ -121.212089982999942, 51.617966167000134 ], [ -121.212162249999935, 51.617332069000064 ], [ -121.21242390299993, 51.614382503000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024545", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4719750", "BldgCostT": "3255000", "sL_LossRatio": "1", "sL_AssetLoss": "315.6", "sL_BldgLoss": "315.6", "sL_StrLoss": "315.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B33707AF64A5EC081F7027126CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.16890062, 51.612481789000057 ], [ -121.169213958999975, 51.609636474000133 ], [ -121.169146228999963, 51.609633600000116 ], [ -121.169236033999979, 51.608818052000061 ], [ -121.169013180999954, 51.608808598000053 ], [ -121.169070540999911, 51.608287702000055 ], [ -121.169119113999926, 51.607846601000077 ], [ -121.168970547999919, 51.607840298000049 ], [ -121.169279870999958, 51.605031091000072 ], [ -121.169898866999944, 51.608671414000071 ], [ -121.172772545999962, 51.608650151000063 ], [ -121.172861599999976, 51.610813417000024 ], [ -121.174614144999936, 51.610867968000022 ], [ -121.174641903999941, 51.612725185000038 ], [ -121.16890062, 51.612481789000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024548", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "94.8", "sL_BldgLoss": "94.8", "sL_StrLoss": "94.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E45CB68C14B5EC037CB7E4094CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.184312858999931, 51.59149102300011 ], [ -121.184323611999957, 51.591221411000049 ], [ -121.183890767999941, 51.591214714000017 ], [ -121.183901520999925, 51.590945101000074 ], [ -121.181737312999985, 51.590911587000093 ], [ -121.181769614999936, 51.590102753000068 ], [ -121.182202446999938, 51.590109458000093 ], [ -121.182213210999947, 51.589839846000032 ], [ -121.18351170599999, 51.589859954000133 ], [ -121.18354397499999, 51.589051117000082 ], [ -121.183874234999934, 51.589056230000068 ], [ -121.184100459999954, 51.589355984000115 ], [ -121.185014006999921, 51.590566487000082 ], [ -121.185220588, 51.590835852000147 ], [ -121.185617679999936, 51.591353621000039 ], [ -121.185611402999911, 51.591511108000091 ], [ -121.184312858999931, 51.59149102300011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024550", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.5", "sL_BldgLoss": "46.5", "sL_StrLoss": "46.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BE9DAEED04A5EC0D35B8F0412CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.168622065999983, 51.604529995000028 ], [ -121.168758793999956, 51.603288307000135 ], [ -121.168654854999957, 51.603283897000047 ], [ -121.16872527799994, 51.6026443310001 ], [ -121.168715101999908, 51.602643900000032 ], [ -121.16904056199995, 51.599687925000119 ], [ -121.169048896999954, 51.599688193000048 ], [ -121.169458545999959, 51.599750071000109 ], [ -121.169038668, 51.602902016000087 ], [ -121.168917640999922, 51.602900529000067 ], [ -121.169198833999957, 51.604554465000028 ], [ -121.168622065999983, 51.604529995000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024551", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "172", "sL_BldgLoss": "172", "sL_StrLoss": "172", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C7FDC5D2B4C5EC09D7D486C35CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.186165644999974, 51.618252348000048 ], [ -121.196626307999964, 51.618320297000146 ], [ -121.196574827999967, 51.618790386000079 ], [ -121.191926022999937, 51.61859425300009 ], [ -121.191811371999918, 51.619640097000058 ], [ -121.186040084999902, 51.619396342000094 ], [ -121.186165644999974, 51.618252348000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024552", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "116282855", "BldgCostT": "78302491", "sL_LossRatio": "1", "sL_AssetLoss": "8042", "sL_BldgLoss": "8042", "sL_StrLoss": "8042", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AE3673060E4C5EC05225B14132CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.186165644999974, 51.618252348000048 ], [ -121.186257746, 51.617413150000061 ], [ -121.185386502999961, 51.617376327000059 ], [ -121.185756147999911, 51.614008537000117 ], [ -121.182826449999965, 51.613884663000071 ], [ -121.182829023999943, 51.613861221 ], [ -121.182673804999951, 51.613854656000051 ], [ -121.182651032999928, 51.614062023000031 ], [ -121.176880527999955, 51.613817803000082 ], [ -121.17695537900002, 51.613137040000069 ], [ -121.174960707999986, 51.613052553000095 ], [ -121.175043395999964, 51.612300804000043 ], [ -121.174719230999969, 51.612287070000093 ], [ -121.174670903999981, 51.612726413000104 ], [ -121.174641903999941, 51.612725185000038 ], [ -121.174614144999936, 51.610867968000022 ], [ -121.172861599999976, 51.610813417000024 ], [ -121.172772545999962, 51.608650151000063 ], [ -121.169898866999944, 51.608671414000071 ], [ -121.169279870999958, 51.605031091000072 ], [ -121.16933172899995, 51.604560103000019 ], [ -121.169198833999957, 51.604554465000028 ], [ -121.168917640999922, 51.602900529000067 ], [ -121.169038668, 51.602902016000087 ], [ -121.169458545999959, 51.599750071000109 ], [ -121.170039390999989, 51.599837801000042 ], [ -121.170605490999961, 51.600108396000039 ], [ -121.171476196999919, 51.600354689000035 ], [ -121.174421778999942, 51.600356198000028 ], [ -121.175818902999978, 51.600458708000048 ], [ -121.176987907999958, 51.600846106000063 ], [ -121.177589682999923, 51.600927302000116 ], [ -121.179117493999954, 51.601400102000078 ], [ -121.180593286, 51.602033906000088 ], [ -121.180915403999933, 51.602273187000044 ], [ -121.181387023999932, 51.602424106000093 ], [ -121.183697806999959, 51.602774489000119 ], [ -121.184114449999939, 51.60299402100005 ], [ -121.183909623999952, 51.604860110000089 ], [ -121.182341083999958, 51.604793758000021 ], [ -121.1823078299999, 51.605096612000068 ], [ -121.182469433999984, 51.605103448000072 ], [ -121.182433702999987, 51.605428859000021 ], [ -121.183508419999924, 51.60547432200007 ], [ -121.183472270999985, 51.605803611000077 ], [ -121.184087747, 51.605829642000046 ], [ -121.18408679799991, 51.605862053000045 ], [ -121.184539977999989, 51.60609250300012 ], [ -121.184534035999974, 51.606146651000103 ], [ -121.184656659999931, 51.606151836000024 ], [ -121.185586727999976, 51.606624776000096 ], [ -121.185539688999938, 51.607053440000072 ], [ -121.185750745999968, 51.607062363000047 ], [ -121.185702231999983, 51.60750447300007 ], [ -121.187463196999957, 51.607578906000072 ], [ -121.189399138999946, 51.608563200000049 ], [ -121.189391481999962, 51.608633032000064 ], [ -121.189549629999988, 51.608639712000063 ], [ -121.189949267999964, 51.60884288900013 ], [ -121.189904966999933, 51.609246940000041 ], [ -121.190820048999967, 51.609285586000034 ], [ -121.191280692999925, 51.609519767000059 ], [ -121.191220411999922, 51.610733803000137 ], [ -121.193941580999962, 51.610764103000086 ], [ -121.197010183999978, 51.61079820500003 ], [ -121.197414983999934, 51.610767600000095 ], [ -121.197777004999963, 51.610836885000033 ], [ -121.198272891999949, 51.610873990000073 ], [ -121.199997841999931, 51.610873151000085 ], [ -121.202171347999965, 51.610872029000085 ], [ -121.202152404999978, 51.611351426000077 ], [ -121.204900228999946, 51.611467153000028 ], [ -121.204865563999974, 51.611784276000037 ], [ -121.20728891, 51.611886281000118 ], [ -121.207295369999912, 51.611827141000113 ], [ -121.207490509999943, 51.611862210000034 ], [ -121.21050802399995, 51.612231903000094 ], [ -121.21106807699999, 51.612261283000109 ], [ -121.212604900999935, 51.61234189500005 ], [ -121.212488734999937, 51.613651588000096 ], [ -121.211714106999935, 51.613619025000105 ], [ -121.211634390999933, 51.614349314000052 ], [ -121.21242390299993, 51.614382503000108 ], [ -121.212162249999935, 51.617332069000064 ], [ -121.212089982999942, 51.617966167000134 ], [ -121.211814691999962, 51.617954595000079 ], [ -121.211764220999953, 51.618416932000123 ], [ -121.203340517999933, 51.618363406000121 ], [ -121.203386773999966, 51.617940429000079 ], [ -121.20180055799996, 51.617873622000047 ], [ -121.201800498999958, 51.61787416500006 ], [ -121.198000661999941, 51.617714036000102 ], [ -121.197983788999977, 51.618139933000094 ], [ -121.196684477999924, 51.61811997800006 ], [ -121.196702740999982, 51.617659311000097 ], [ -121.196698714, 51.61765914100009 ], [ -121.196626307999964, 51.618320297000146 ], [ -121.186165644999974, 51.618252348000048 ] ], [ [ -121.19493594099994, 51.615123506000074 ], [ -121.19500350099996, 51.614506765000073 ], [ -121.194789374999971, 51.614497731000057 ], [ -121.194721812999916, 51.615114473000112 ], [ -121.19493594099994, 51.615123506000074 ] ], [ [ -121.194571072999935, 51.614044476000053 ], [ -121.194600974999943, 51.61377151700006 ], [ -121.193390987, 51.613752899000133 ], [ -121.193398635999969, 51.613560265000089 ], [ -121.190544373999927, 51.613439773 ], [ -121.190544428999942, 51.613439272000079 ], [ -121.188675761999932, 51.613410448000081 ], [ -121.188620400000019, 51.613915192000022 ], [ -121.189053910000013, 51.613933505000034 ], [ -121.189067222999981, 51.613812125000067 ], [ -121.194571072999935, 51.614044476000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024553", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46.5", "sL_BldgLoss": "46.5", "sL_StrLoss": "46.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001CC6AC30E04B5EC08F7317388BCB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.185014006999921, 51.590566487000082 ], [ -121.184100459999954, 51.589355984000115 ], [ -121.183874234999934, 51.589056230000068 ], [ -121.185708095999971, 51.589084598000042 ], [ -121.185665121999946, 51.590163047000104 ], [ -121.186963628999976, 51.590183116000091 ], [ -121.186920683999944, 51.591261565000089 ], [ -121.185622146999961, 51.591241495000112 ], [ -121.185617679999936, 51.591353621000039 ], [ -121.185220588, 51.590835852000147 ], [ -121.185014006999921, 51.590566487000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024554", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B8690B1A24B5EC0635EEC62BFCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.180718879999944, 51.583881557000026 ], [ -121.180751189999938, 51.583072722000026 ], [ -121.18031842399995, 51.583066011000028 ], [ -121.180350739999966, 51.58225717600002 ], [ -121.182514535999957, 51.582290710000073 ], [ -121.182482256999947, 51.583099547000096 ], [ -121.182915024999915, 51.583106250000057 ], [ -121.182882752999973, 51.583915086000054 ], [ -121.183748302999945, 51.583928487000016 ], [ -121.183716044, 51.584737324000066 ], [ -121.183283261, 51.584730624000031 ], [ -121.183261748999925, 51.585269849000085 ], [ -121.182396173999962, 51.585256444000066 ], [ -121.182385413999967, 51.585526056000042 ], [ -121.181952622999987, 51.585519352000077 ], [ -121.18194185899992, 51.585788963000034 ], [ -121.181509066000032, 51.585782256000073 ], [ -121.181503772000013, 51.585914835000075 ], [ -121.18100629499996, 51.585255492000094 ], [ -121.180906704999956, 51.585123492 ], [ -121.180418986999982, 51.584486690000077 ], [ -121.18003542299999, 51.584128700000129 ], [ -121.17984819599998, 51.583996628000115 ], [ -121.179853330999919, 51.583868134000106 ], [ -121.180718879999944, 51.583881557000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024555", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "77477062", "BldgCostT": "49448191", "sL_LossRatio": "0.991386435995607", "sL_AssetLoss": "5830.756", "sL_BldgLoss": "5780.53241", "sL_StrLoss": "5762.20521", "sL_NStrLoss": "18.3272", "sL_ContLoss": "50.22359", "geom_point": "0101000020E61000001D66AA58634D5EC0AF1287C759C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.191873183999974, 51.565493185000037 ], [ -121.191944247999956, 51.564844096000016 ], [ -121.190862193999962, 51.564798359000051 ], [ -121.191163616999916, 51.562045595000036 ], [ -121.191254341999951, 51.561216980000083 ], [ -121.191587014999968, 51.561231043000134 ], [ -121.191746755999958, 51.559771912000045 ], [ -121.191636096999943, 51.559770207000021 ], [ -121.191646794999912, 51.559500592000084 ], [ -121.190349159999968, 51.55948058300001 ], [ -121.19032775099997, 51.560019811000089 ], [ -121.189030101999933, 51.559999788000056 ], [ -121.189019388999967, 51.560269401000021 ], [ -121.18805057899999, 51.560254443000105 ], [ -121.187289182999962, 51.560242680000037 ], [ -121.187310627999949, 51.559703452000129 ], [ -121.186878080999932, 51.55969676800003 ], [ -121.186910256, 51.558887927000121 ], [ -121.18647771699996, 51.558881241000073 ], [ -121.186509895999947, 51.558072399000089 ], [ -121.18780748799999, 51.558092451000029 ], [ -121.187796769999977, 51.558362065000033 ], [ -121.188661836999984, 51.558375424000111 ], [ -121.188672550999939, 51.558105810000043 ], [ -121.189105081999926, 51.558112488000035 ], [ -121.189107474999958, 51.558052267000051 ], [ -121.185733981999959, 51.557909532000053 ], [ -121.186126485999949, 51.554328146000103 ], [ -121.187699149999943, 51.554394700000095 ], [ -121.187983096000011, 51.551802637000073 ], [ -121.189383725999946, 51.552178697000073 ], [ -121.190195830999983, 51.552441493000096 ], [ -121.190836701999984, 51.552721400000109 ], [ -121.19132693, 51.553002901000085 ], [ -121.192314201999963, 51.553714819000092 ], [ -121.192837730999955, 51.554010403000056 ], [ -121.193263898999987, 51.554189393000101 ], [ -121.193392731999921, 51.554227454000042 ], [ -121.193960678999986, 51.55439520700002 ], [ -121.194532900999917, 51.554496725000106 ], [ -121.194934272999944, 51.554531638000064 ], [ -121.195082615999951, 51.554533067000108 ], [ -121.195137683, 51.554533607000032 ], [ -121.195500383999899, 51.554537231000047 ], [ -121.196653631999965, 51.554548700000105 ], [ -121.199999394, 51.554581898000066 ], [ -121.201060096999953, 51.554592407000015 ], [ -121.201416390999938, 51.554608415000111 ], [ -121.202051017999963, 51.554636910000099 ], [ -121.20217274399999, 51.554650656000064 ], [ -121.203283422999959, 51.554776124000099 ], [ -121.203333873999952, 51.554782922000143 ], [ -121.204074743999954, 51.554883287000116 ], [ -121.205298674999966, 51.555049098000069 ], [ -121.206368815999937, 51.555084300000019 ], [ -121.206856305999949, 51.555060798000078 ], [ -121.207123917999951, 51.55500910500011 ], [ -121.208220773, 51.554758490000069 ], [ -121.208943414999936, 51.554675598000074 ], [ -121.20983219299994, 51.554647401000068 ], [ -121.211868232999933, 51.554652379000053 ], [ -121.215186011999947, 51.554660388000165 ], [ -121.217245635, 51.554799540000069 ], [ -121.21871369099992, 51.554898709000071 ], [ -121.21888990599993, 51.554910597000074 ], [ -121.219453234999932, 51.554894693000094 ], [ -121.219897620999959, 51.554827989000046 ], [ -121.220346420999931, 51.554693892000095 ], [ -121.220774202, 51.554486074000074 ], [ -121.221345822, 51.55412786800008 ], [ -121.222623400999936, 51.553327179000107 ], [ -121.222870991999912, 51.553172001000085 ], [ -121.223296799999929, 51.552982982000096 ], [ -121.224831777999938, 51.552602168000114 ], [ -121.226940782999975, 51.552119554000043 ], [ -121.229849544999951, 51.551454544000109 ], [ -121.230697323999919, 51.551337197000095 ], [ -121.231377378999952, 51.551311753000071 ], [ -121.231767619999928, 51.551339843000044 ], [ -121.23209535399999, 51.551363438000095 ], [ -121.23322843699998, 51.551524269000041 ], [ -121.233652505999899, 51.551537545000016 ], [ -121.234321544999958, 51.551480126000065 ], [ -121.234835047000018, 51.551375716000067 ], [ -121.237068004999955, 51.550718068000073 ], [ -121.237123769999968, 51.550701663999988 ], [ -121.237873552999986, 51.550580144000065 ], [ -121.238477631999984, 51.550547854000094 ], [ -121.238932479999946, 51.550566928000144 ], [ -121.23930621, 51.550582567000099 ], [ -121.240184773999914, 51.550619337000093 ], [ -121.240635544999989, 51.550653593000071 ], [ -121.240816331999952, 51.550667349000037 ], [ -121.242252082999954, 51.550879431000105 ], [ -121.242435900999951, 51.550906517000136 ], [ -121.247042555999883, 51.551585234000122 ], [ -121.247464322999974, 51.551686512000074 ], [ -121.24788517799999, 51.551822812000118 ], [ -121.24795999499996, 51.55185350900004 ], [ -121.247945977, 51.551983098000079 ], [ -121.242670775999969, 51.551762560000043 ], [ -121.242548496999973, 51.552891723000137 ], [ -121.239578141, 51.552767435000135 ], [ -121.23953678399999, 51.553149094000112 ], [ -121.236546166000011, 51.553023879000072 ], [ -121.236454291999976, 51.553871165000068 ], [ -121.234644432999985, 51.55379534900009 ], [ -121.234637213, 51.553861908000052 ], [ -121.232189563999938, 51.553759329000108 ], [ -121.232161015999964, 51.554022367000066 ], [ -121.232094441999934, 51.554019576 ], [ -121.231805262999913, 51.556683770000113 ], [ -121.226042013999958, 51.55644202400007 ], [ -121.226329045999989, 51.553800803000051 ], [ -121.224320350999932, 51.553716477000116 ], [ -121.224088719999926, 51.555847045000057 ], [ -121.223975533999976, 51.556888053000122 ], [ -121.223238285999983, 51.556857095000041 ], [ -121.223225607999936, 51.556973672000062 ], [ -121.218977126999974, 51.556795172000108 ], [ -121.218957122999981, 51.556978972000074 ], [ -121.21588574699993, 51.556849829000072 ], [ -121.215885081999971, 51.556855946000056 ], [ -121.21525648299999, 51.556829504000127 ], [ -121.215250954999973, 51.556880260000099 ], [ -121.214712569999946, 51.556857610000122 ], [ -121.214710231999931, 51.556879073000111 ], [ -121.214184695999961, 51.55685696200009 ], [ -121.21418280799999, 51.556874286000046 ], [ -121.213632096999916, 51.556851112000054 ], [ -121.213627085999946, 51.556897099000089 ], [ -121.213101550999966, 51.556874982000089 ], [ -121.213099661999976, 51.556892310000102 ], [ -121.211938862999901, 51.556843452000031 ], [ -121.211932312, 51.556903538000078 ], [ -121.211172839999932, 51.556871565000115 ], [ -121.211171576999931, 51.556883156 ], [ -121.210634209999938, 51.556860531000098 ], [ -121.210627456999958, 51.556922469000014 ], [ -121.210468462999941, 51.556915774000032 ], [ -121.210286541999935, 51.558584143000118 ], [ -121.210459313999962, 51.558591417000052 ], [ -121.210410355999954, 51.55904040500009 ], [ -121.210441545999956, 51.559041719000064 ], [ -121.210441048999968, 51.559046275000085 ], [ -121.21047474, 51.559047694000078 ], [ -121.210511057999909, 51.558714629000036 ], [ -121.216274518999953, 51.558957161000087 ], [ -121.215884426999978, 51.562538634000056 ], [ -121.214951390999914, 51.562499391000117 ], [ -121.214915103999957, 51.56283245700007 ], [ -121.21359166399999, 51.562776780000014 ], [ -121.213558878999891, 51.563613200000077 ], [ -121.213991467999961, 51.563619786000046 ], [ -121.213949203999945, 51.564698258000085 ], [ -121.214381803999942, 51.564704843000101 ], [ -121.214339546999938, 51.565783313000033 ], [ -121.212176496999959, 51.565750372000082 ], [ -121.212187074000013, 51.565480754000156 ], [ -121.211754467999981, 51.565474162000086 ], [ -121.21181794499995, 51.563856458 ], [ -121.211385351999951, 51.563849863000044 ], [ -121.21140651499995, 51.563310628000096 ], [ -121.210541341999956, 51.563297435000088 ], [ -121.210551927999958, 51.563027818000144 ], [ -121.210052025999957, 51.563020193000085 ], [ -121.210046606999953, 51.563069871000096 ], [ -121.20771201699992, 51.56297154700011 ], [ -121.204282641999953, 51.562827026000079 ], [ -121.204322934999979, 51.562458020000051 ], [ -121.204331215, 51.562382187000026 ], [ -121.204287071999943, 51.562380326000088 ], [ -121.204336096999938, 51.561931342000072 ], [ -121.204304905999948, 51.561930027000059 ], [ -121.204592868999939, 51.55929261900009 ], [ -121.204420093999914, 51.559285335000119 ], [ -121.20445936499999, 51.558925648000077 ], [ -121.204404519, 51.55892333500006 ], [ -121.204442461999975, 51.558575808000093 ], [ -121.204381441999885, 51.558573235000068 ], [ -121.20441896100003, 51.558229585000092 ], [ -121.204377465999983, 51.558227835000153 ], [ -121.204386335999942, 51.558146601000061 ], [ -121.20114385899997, 51.558009848000104 ], [ -121.201150139999982, 51.557952354000086 ], [ -121.200414836999983, 51.557921329000067 ], [ -121.200419408, 51.55787950600007 ], [ -121.199729916999928, 51.557850410000043 ], [ -121.199939266999962, 51.555934690000107 ], [ -121.198012691999921, 51.555853367000061 ], [ -121.198104481999934, 51.555013705000057 ], [ -121.196586140999969, 51.55499037400007 ], [ -121.19657547599999, 51.555259989000064 ], [ -121.196466647999969, 51.555258316000071 ], [ -121.19642226199997, 51.55566420600006 ], [ -121.19583745199995, 51.555639506000034 ], [ -121.195757575999963, 51.556369820000043 ], [ -121.195423052, 51.556355690000053 ], [ -121.19535539599994, 51.556974229000055 ], [ -121.193049235999965, 51.55687678900005 ], [ -121.193029935999974, 51.557363668000043 ], [ -121.192164885999915, 51.557350340000077 ], [ -121.192154191999975, 51.557619955000106 ], [ -121.19172166599999, 51.557613289000116 ], [ -121.191689579999974, 51.558422133000164 ], [ -121.19298718499999, 51.558442126000095 ], [ -121.19298097799998, 51.55859871100018 ], [ -121.197643614999947, 51.558795663000119 ], [ -121.197279723999912, 51.562123626000123 ], [ -121.19802903599999, 51.562155259000086 ], [ -121.198013033, 51.562301631000089 ], [ -121.197637430999976, 51.565736659000088 ], [ -121.191873183999974, 51.565493185000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024556", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000084C55523434F5EC0F509877BB8C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.238029112999953, 51.568839246000145 ], [ -121.238039537999953, 51.56856962500013 ], [ -121.237174252999978, 51.56855662700012 ], [ -121.23721597499997, 51.567478143000166 ], [ -121.23761880099994, 51.567484195000112 ], [ -121.239379134999922, 51.567510624000043 ], [ -121.239368717999952, 51.567780245000108 ], [ -121.239801352999962, 51.567786736000116 ], [ -121.23977010699997, 51.568595601 ], [ -121.239337465999981, 51.568589108000069 ], [ -121.239327046999946, 51.568858730000088 ], [ -121.238330792999989, 51.568843775000062 ], [ -121.238029112999953, 51.568839246000145 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024558", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "51.5", "sL_BldgLoss": "51.5", "sL_StrLoss": "51.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000477A6A58C04C5EC015067EB76DCD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.197720088999944, 51.60517466200011 ], [ -121.197753583999926, 51.604466623000114 ], [ -121.197754026999945, 51.604457137000054 ], [ -121.197810304999962, 51.604457903000103 ], [ -121.198128914999927, 51.604841005000061 ], [ -121.198387793999956, 51.604862414000088 ], [ -121.198896975999943, 51.604745594000079 ], [ -121.199578491, 51.604332607000053 ], [ -121.19987908, 51.604373898000105 ], [ -121.200076626999959, 51.604510606000133 ], [ -121.200676578999904, 51.60529930600007 ], [ -121.197720088999944, 51.60517466200011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024559", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.9", "sL_BldgLoss": "49.9", "sL_StrLoss": "49.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006A698F93994B5EC08D89C5566DCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.180837344999958, 51.580915826000087 ], [ -121.182135581999916, 51.580935947000043 ], [ -121.182103298999934, 51.581744783000083 ], [ -121.181670543999971, 51.5817380780001 ], [ -121.181659780999922, 51.582007689000065 ], [ -121.18036151299998, 51.581987563000055 ], [ -121.180393825999943, 51.581178727000129 ], [ -121.180826574999941, 51.581185438000048 ], [ -121.180837344999958, 51.580915826000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024560", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.1", "sL_BldgLoss": "52.1", "sL_StrLoss": "52.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003191B9CFBD4C5EC04AB935C828CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.197414983999934, 51.610767600000095 ], [ -121.197165908000017, 51.610541289000103 ], [ -121.197097210999942, 51.610268497000085 ], [ -121.197126962999945, 51.610033464000026 ], [ -121.197871128999964, 51.610044894000055 ], [ -121.197860448999947, 51.610314507000069 ], [ -121.198293478999943, 51.610321155000044 ], [ -121.198282801999937, 51.610590768000137 ], [ -121.20218009899996, 51.610650531000033 ], [ -121.202171347999965, 51.610872029000085 ], [ -121.199997841999931, 51.610873151000085 ], [ -121.198272891999949, 51.610873990000073 ], [ -121.197777004999963, 51.610836885000033 ], [ -121.197414983999934, 51.610767600000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024561", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58.9", "sL_BldgLoss": "58.9", "sL_StrLoss": "58.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F852CE2A64B5EC095DDE585E8C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.181016114999949, 51.554749988000047 ], [ -121.181026871999961, 51.554480375 ], [ -121.180594376999977, 51.55447366700011 ], [ -121.180648175999977, 51.553125602000122 ], [ -121.183243069999961, 51.55316581600006 ], [ -121.18321083799999, 51.553974658000072 ], [ -121.183643330999985, 51.553981354000065 ], [ -121.183611103999965, 51.554790195000088 ], [ -121.181016114999949, 51.554749988000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024562", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "70201833", "BldgCostT": "49383333", "sL_LossRatio": "1", "sL_AssetLoss": "400", "sL_BldgLoss": "400", "sL_StrLoss": "400", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000018C0E7C92D4E5EC03408BD4832C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.218857586999917, 51.562122732000027 ], [ -121.224621540999934, 51.56236484100004 ], [ -121.22423209899999, 51.565946331000085 ], [ -121.218467677999968, 51.565704204000042 ], [ -121.218857586999917, 51.562122732000027 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024563", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "177.7", "sL_BldgLoss": "177.7", "sL_StrLoss": "177.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009445487AA44A5EC01C5B5349B2C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.161676000999975, 51.553162189000084 ], [ -121.161969706999955, 51.55049541500005 ], [ -121.161510781999965, 51.55047588900009 ], [ -121.161531987999965, 51.550283357000026 ], [ -121.16197014799998, 51.550366305000082 ], [ -121.162665607999898, 51.550609091000105 ], [ -121.16286013899996, 51.550718653000118 ], [ -121.163156211999933, 51.550885419000068 ], [ -121.163617046999889, 51.551262928000071 ], [ -121.164182418999985, 51.551726051000088 ], [ -121.164666325999988, 51.552023662000117 ], [ -121.16535299099999, 51.552333510000075 ], [ -121.165959194999985, 51.552506810000061 ], [ -121.166531315000015, 51.552593441000035 ], [ -121.166661024999897, 51.552613085000083 ], [ -121.167083969000018, 51.552634158000103 ], [ -121.167269446999967, 51.552643405000019 ], [ -121.167397995, 51.552649811000059 ], [ -121.16823070099997, 51.552579952000031 ], [ -121.168970981999962, 51.552428796000051 ], [ -121.169500674999966, 51.552257904000072 ], [ -121.172626548, 51.551035958000071 ], [ -121.172634583999965, 51.551033405000091 ], [ -121.172417056999933, 51.553012877000064 ], [ -121.167504793999981, 51.552804253000041 ], [ -121.167438464999961, 51.553407193000126 ], [ -121.161676000999975, 51.553162189000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024564", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8015803", "BldgCostT": "4713746", "sL_LossRatio": "1", "sL_AssetLoss": "372", "sL_BldgLoss": "372", "sL_StrLoss": "372", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE42D1348F4D5EC0C3D1FA00C9CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.211276565999952, 51.609106739000026 ], [ -121.211307904999984, 51.608819619000073 ], [ -121.20554598399994, 51.608577186000105 ], [ -121.205753651999942, 51.606676839000066 ], [ -121.205853917999974, 51.605759261000081 ], [ -121.205988892999969, 51.605833687000036 ], [ -121.206633485999959, 51.605978904000061 ], [ -121.206997998999981, 51.606208199000051 ], [ -121.208109798999942, 51.606621292000078 ], [ -121.209068719999948, 51.606816404000057 ], [ -121.209906475999958, 51.606810698000082 ], [ -121.210870309999962, 51.606547208000023 ], [ -121.212062386999946, 51.606735197000049 ], [ -121.212709493999981, 51.60676370500007 ], [ -121.213395607999985, 51.606954484000077 ], [ -121.213773818, 51.60696625700011 ], [ -121.213900717999962, 51.606970207000167 ], [ -121.214205686999946, 51.606911806000021 ], [ -121.214695102999954, 51.606622701000028 ], [ -121.214892648999964, 51.606391269000071 ], [ -121.21513401499999, 51.606108497000079 ], [ -121.215383588999927, 51.605967516000106 ], [ -121.215838499999961, 51.605795206000018 ], [ -121.216274793000011, 51.605748213000012 ], [ -121.216648708999983, 51.60579811100007 ], [ -121.217391055999911, 51.606189868000101 ], [ -121.217379266999941, 51.606298017000043 ], [ -121.217046641, 51.609349220000126 ], [ -121.211276565999952, 51.609106739000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024565", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "50.4", "sL_BldgLoss": "50.4", "sL_StrLoss": "50.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066AD5747C44A5EC0338AE59656C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.166865639999955, 51.57368411300012 ], [ -121.166870745999972, 51.572280079000151 ], [ -121.16687153, 51.572065526000131 ], [ -121.169067322999979, 51.572099813000086 ], [ -121.169045652999941, 51.572639034000062 ], [ -121.169478318999936, 51.572645784000052 ], [ -121.169467484999956, 51.572915395000109 ], [ -121.169900152999929, 51.572922145000028 ], [ -121.169867660999955, 51.573730977000068 ], [ -121.166865639999955, 51.57368411300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024566", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5108616", "BldgCostT": "2893879", "sL_LossRatio": "1", "sL_AssetLoss": "195", "sL_BldgLoss": "195", "sL_StrLoss": "195", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1847B862C4B5EC0C44F4E7A80C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.170523112999945, 51.567798204000077 ], [ -121.170611770999983, 51.566992041000084 ], [ -121.169985131999951, 51.566965439000114 ], [ -121.170173383999966, 51.566897085000051 ], [ -121.172296397999943, 51.566126160000053 ], [ -121.17230889899993, 51.566121628000126 ], [ -121.173695347999953, 51.565585889000019 ], [ -121.174044369999933, 51.565460202000033 ], [ -121.175326381999966, 51.564998435000078 ], [ -121.17544561699998, 51.564960271000061 ], [ -121.177991940999988, 51.564145356000033 ], [ -121.178909152999921, 51.564159596000145 ], [ -121.178876832999919, 51.564968433000082 ], [ -121.178444239999976, 51.564961717000173 ], [ -121.178433460999912, 51.565231330000096 ], [ -121.176599477999915, 51.565202841000023 ], [ -121.17654031699999, 51.565741481000096 ], [ -121.177114102999923, 51.565750397000073 ], [ -121.177081748999939, 51.566559234000053 ], [ -121.176451573999927, 51.566549441000028 ], [ -121.176287542999916, 51.568042758000047 ], [ -121.170523112999945, 51.567798204000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024567", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.9", "sL_BldgLoss": "61.9", "sL_StrLoss": "61.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D6E0E9D7F4E5EC0A221EBC272C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.225902341999955, 51.557865380000102 ], [ -121.225912834, 51.557595759000037 ], [ -121.226575883999942, 51.557605785000099 ], [ -121.227210440999912, 51.557615375000118 ], [ -121.227199955999964, 51.557884995000052 ], [ -121.227632492999959, 51.55789153000007 ], [ -121.227605132999912, 51.55859523400003 ], [ -121.227601043999968, 51.558700390000041 ], [ -121.225438314999934, 51.558667696000057 ], [ -121.225469803999886, 51.557858838000094 ], [ -121.225902341999955, 51.557865380000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024568", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7874167", "BldgCostT": "5166667", "sL_LossRatio": "1", "sL_AssetLoss": "1088", "sL_BldgLoss": "1088", "sL_StrLoss": "1088", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E4F51E36EA4E5EC01399FBDC37C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.236814639999977, 51.56666278000003 ], [ -121.236825071999974, 51.566393159000086 ], [ -121.235959828999938, 51.566380152000093 ], [ -121.235970265999981, 51.566110532000025 ], [ -121.235875243999899, 51.566109103000038 ], [ -121.235863120999966, 51.566220857000076 ], [ -121.23009860099998, 51.565979317000057 ], [ -121.230135471999958, 51.565639841000099 ], [ -121.228853481, 51.565586085000092 ], [ -121.229188591999943, 51.562501258000061 ], [ -121.229184587999924, 51.562501196000063 ], [ -121.229195062999977, 51.562231577000027 ], [ -121.22876248399993, 51.562225047000034 ], [ -121.228793915999972, 51.561416187000106 ], [ -121.230283346999954, 51.561438665000026 ], [ -121.230524207999963, 51.561442297000141 ], [ -121.230508044999979, 51.56185857600007 ], [ -121.230503271999936, 51.561981537000072 ], [ -121.230623268999977, 51.561983347000059 ], [ -121.23093585099997, 51.561988061000122 ], [ -121.230932458999973, 51.562075436 ], [ -121.235006537999979, 51.562246161000097 ], [ -121.234969707999966, 51.562585640000073 ], [ -121.236251618999987, 51.562639328000081 ], [ -121.236167407999957, 51.563415719000091 ], [ -121.236939811999989, 51.56342732800011 ], [ -121.23690852199999, 51.564236191000134 ], [ -121.236475919999947, 51.564229690000047 ], [ -121.236455055999969, 51.564768932000092 ], [ -121.236887659999979, 51.564775433000094 ], [ -121.236877228999944, 51.56504505500007 ], [ -121.238175056000031, 51.56506455100002 ], [ -121.238112510999926, 51.566682278000016 ], [ -121.23716237, 51.566668005000054 ], [ -121.236814639999977, 51.56666278000003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024569", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "159.7", "sL_BldgLoss": "159.7", "sL_StrLoss": "159.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD523142764D5EC031D4DD4C37CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.207511961999984, 51.60984455199999 ], [ -121.213282113999981, 51.610087224000083 ], [ -121.213033638999917, 51.612364378000102 ], [ -121.212604900999935, 51.61234189500005 ], [ -121.21106807699999, 51.612261283000109 ], [ -121.21050802399995, 51.612231903000094 ], [ -121.207490509999943, 51.611862210000034 ], [ -121.207295369999912, 51.611827141000113 ], [ -121.207390478999955, 51.610956575000102 ], [ -121.207511961999984, 51.60984455199999 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024570", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6454750", "BldgCostT": "3955000", "sL_LossRatio": "0.944865364777861", "sL_AssetLoss": "281.13", "sL_BldgLoss": "265.63", "sL_StrLoss": "260", "sL_NStrLoss": "5.63", "sL_ContLoss": "15.5", "geom_point": "0101000020E61000005D1E63D5BD4B5EC0C1752046E3C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.180775711999914, 51.567523144000113 ], [ -121.186540162999975, 51.567767178000075 ], [ -121.186147572999928, 51.571348519 ], [ -121.180382653999956, 51.571104466000023 ], [ -121.180775711999914, 51.567523144000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024571", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "69230333", "BldgCostT": "48713333", "sL_LossRatio": "1", "sL_AssetLoss": "190.1", "sL_BldgLoss": "190.1", "sL_StrLoss": "190.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D83816BD74A5EC0FA9662DC47CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.170228579999957, 51.581837493000066 ], [ -121.169177717999943, 51.581687692000067 ], [ -121.16815541299999, 51.581659604 ], [ -121.167854417999976, 51.581680420000104 ], [ -121.1668755419999, 51.581748237000106 ], [ -121.166868201999961, 51.578317907000049 ], [ -121.169500055999947, 51.57842965600009 ], [ -121.169398653999934, 51.579351236000043 ], [ -121.172411320000023, 51.579479079000095 ], [ -121.172114629999953, 51.582176933000028 ], [ -121.17152647199994, 51.582071087000031 ], [ -121.171170128999933, 51.582006941000067 ], [ -121.170228579999957, 51.581837493000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024573", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6406417", "BldgCostT": "3921667", "sL_LossRatio": "0.972459436379163", "sL_AssetLoss": "234.2", "sL_BldgLoss": "227.75", "sL_StrLoss": "225.4", "sL_NStrLoss": "2.35", "sL_ContLoss": "6.45", "geom_point": "0101000020E61000004E3968A7CD4E5EC0B3194C68B7CC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.228612403999961, 51.597435627000088 ], [ -121.234381041999924, 51.597677235000013 ], [ -121.233992083, 51.601258636000125 ], [ -121.228222975999984, 51.601017010000078 ], [ -121.228612403999961, 51.597435627000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024575", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.1", "sL_BldgLoss": "61.1", "sL_StrLoss": "61.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000217E5935634D5EC00E4B033F2AC84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.208378416999892, 51.563264426000053 ], [ -121.210108757999976, 51.563290837000082 ], [ -121.21007699099999, 51.564099689000066 ], [ -121.209644397, 51.564093088000085 ], [ -121.209633804999982, 51.564362705000107 ], [ -121.208336018999944, 51.564342893000095 ], [ -121.208378416999892, 51.563264426000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024576", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28248720", "BldgCostT": "17930413", "sL_LossRatio": "0.997176589026678", "sL_AssetLoss": "2185.3", "sL_BldgLoss": "2179.13", "sL_StrLoss": "2176.9", "sL_NStrLoss": "2.23", "sL_ContLoss": "6.17", "geom_point": "0101000020E61000009610621DBD4C5EC0A6AE63F946CC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.200621585999954, 51.604241397000088 ], [ -121.199858791999986, 51.603806995000063 ], [ -121.199656177999955, 51.60381269900008 ], [ -121.199565282000023, 51.603919494000124 ], [ -121.198524203999952, 51.604298410000105 ], [ -121.197910892999957, 51.604100413000062 ], [ -121.197771113999963, 51.604096384000087 ], [ -121.197771451999927, 51.60408922900006 ], [ -121.197773121999887, 51.604053284000031 ], [ -121.19780840699994, 51.603308011000081 ], [ -121.197745408999978, 51.602824203000075 ], [ -121.197561189999973, 51.602323491000092 ], [ -121.197456494999983, 51.602177594000068 ], [ -121.197155093999982, 51.601757714000023 ], [ -121.195551974999916, 51.600221407000063 ], [ -121.195381823999938, 51.600058341000114 ], [ -121.195314168999985, 51.599993516000097 ], [ -121.195240580999936, 51.599923002000054 ], [ -121.194837873999973, 51.599379807000084 ], [ -121.19479200899994, 51.599289920000089 ], [ -121.194128055999926, 51.597989907000091 ], [ -121.193178508999949, 51.59622831800003 ], [ -121.193146719999987, 51.596169300000035 ], [ -121.192880699999961, 51.595807293000114 ], [ -121.19262620799995, 51.595551899000064 ], [ -121.192350989999937, 51.595353190000033 ], [ -121.191920507999924, 51.59511740300006 ], [ -121.191888007999935, 51.595105318000073 ], [ -121.191502925999927, 51.594962104000032 ], [ -121.190985914999956, 51.594827785000071 ], [ -121.189270896999943, 51.594507988000025 ], [ -121.188724819999933, 51.594336494000054 ], [ -121.188257612999976, 51.594144098000129 ], [ -121.187729809999894, 51.593844704000041 ], [ -121.187342194999971, 51.593535107000015 ], [ -121.187159172999912, 51.593340541000046 ], [ -121.18981639399999, 51.59345285100008 ], [ -121.189856656, 51.593085505000076 ], [ -121.195624509999931, 51.593329074000088 ], [ -121.195568241000018, 51.593843077000038 ], [ -121.197226089999972, 51.593913031000078 ], [ -121.197142682999967, 51.594675168000066 ], [ -121.197435635999952, 51.594687527000126 ], [ -121.197383320999947, 51.595165566000091 ], [ -121.19746771299998, 51.595169126000016 ], [ -121.197781058, 51.592305591000098 ], [ -121.198806077000015, 51.592348826000027 ], [ -121.199167197999941, 51.589047518000029 ], [ -121.204934573999978, 51.589290616000014 ], [ -121.204638173999967, 51.592003555000126 ], [ -121.204988662999952, 51.592018319000019 ], [ -121.20493342599994, 51.592523896000017 ], [ -121.204979098, 51.592525820000056 ], [ -121.204698094999983, 51.595097659000096 ], [ -121.204979778999984, 51.595109524000129 ], [ -121.204588447999967, 51.59869083300007 ], [ -121.202142727999956, 51.598587796000032 ], [ -121.20204048799998, 51.599522893000035 ], [ -121.198533793999928, 51.599375065000089 ], [ -121.19851893399999, 51.599510875000114 ], [ -121.198258662999976, 51.599499899000129 ], [ -121.198243774999952, 51.599635952000057 ], [ -121.198809232999977, 51.599659799000058 ], [ -121.198763653999961, 51.600076365000078 ], [ -121.199210046999966, 51.600095189000029 ], [ -121.199169379999915, 51.600466883000124 ], [ -121.201298400999946, 51.600556633000075 ], [ -121.20117091399996, 51.601722358000082 ], [ -121.201604370999974, 51.601740626000073 ], [ -121.20127468599999, 51.604755207000025 ], [ -121.200867583999923, 51.604577502000062 ], [ -121.200621585999954, 51.604241397000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024577", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2561667", "BldgCostT": "1766667", "sL_LossRatio": "1", "sL_AssetLoss": "247.9", "sL_BldgLoss": "247.9", "sL_StrLoss": "247.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F99186099515EC0D305065A4BC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.273018088999919, 51.554690797000077 ], [ -121.273575314999931, 51.554713954000114 ], [ -121.273941129999955, 51.554949912000055 ], [ -121.274655546999909, 51.555410730000048 ], [ -121.275354619999916, 51.555800447000095 ], [ -121.275522828999911, 51.55587255800004 ], [ -121.276353514999968, 51.556228683000079 ], [ -121.277728864999943, 51.556731878000072 ], [ -121.277894902999932, 51.55849105 ], [ -121.272632653999921, 51.558272478000085 ], [ -121.273018088999919, 51.554690797000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024578", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "28125834", "BldgCostT": "18188334", "sL_LossRatio": "0.995591127992946", "sL_AssetLoss": "2653.74", "sL_BldgLoss": "2642.04", "sL_StrLoss": "2637.8", "sL_NStrLoss": "4.24", "sL_ContLoss": "11.7", "geom_point": "0101000020E6100000EB8C52B6C64E5EC009D659A9F7CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.224683394999943, 51.613681932000048 ], [ -121.223709909999954, 51.613514903000116 ], [ -121.222935299999932, 51.613428405000064 ], [ -121.222224022999967, 51.613405472000125 ], [ -121.22233746199997, 51.612363907000052 ], [ -121.223330709999985, 51.612405568000057 ], [ -121.223419063999984, 51.611594131000089 ], [ -121.225269023999971, 51.611671703000091 ], [ -121.22530979899993, 51.611297075000046 ], [ -121.227632140999958, 51.611394412000095 ], [ -121.227853819999893, 51.609356562000094 ], [ -121.222243581999962, 51.609121336000058 ], [ -121.222474311999946, 51.607002553000015 ], [ -121.222722289, 51.607049901000103 ], [ -121.223572108999917, 51.606730904000059 ], [ -121.226584081999988, 51.60727919600005 ], [ -121.227159798999949, 51.607333406000087 ], [ -121.227639715999956, 51.607223695000087 ], [ -121.226590994999981, 51.607108302000036 ], [ -121.224603282999979, 51.606637379000055 ], [ -121.224000290999953, 51.606494511000093 ], [ -121.223349794999976, 51.606493091000083 ], [ -121.222704213999975, 51.606753700000127 ], [ -121.222501125999941, 51.606756319000048 ], [ -121.222633568999981, 51.605540002000041 ], [ -121.227119648999974, 51.605728117000041 ], [ -121.227282144999919, 51.604234308000095 ], [ -121.233051667999931, 51.604475981000128 ], [ -121.233000085999933, 51.604950769000034 ], [ -121.236575477999978, 51.605100387000078 ], [ -121.236466857999929, 51.60610088400005 ], [ -121.23967904, 51.606235205000111 ], [ -121.239677027, 51.60625376200008 ], [ -121.24147857899996, 51.606329057000075 ], [ -121.241322698999966, 51.607766266000134 ], [ -121.242556842999988, 51.607817830000037 ], [ -121.242506825999982, 51.608279081000013 ], [ -121.242531975999938, 51.608280131000093 ], [ -121.242351020999948, 51.60994880700013 ], [ -121.242324573999966, 51.609915404000041 ], [ -121.240844341999946, 51.609299291000099 ], [ -121.240058426999937, 51.607761148000066 ], [ -121.239269818999929, 51.607219039000029 ], [ -121.237057308999951, 51.60649630800004 ], [ -121.237037580999967, 51.606568144000029 ], [ -121.23700683899996, 51.606680308000108 ], [ -121.236980502, 51.606776397000012 ], [ -121.237025501999952, 51.60692218600007 ], [ -121.237393904999976, 51.607346786000036 ], [ -121.237400694999963, 51.607711401000145 ], [ -121.237209326999974, 51.608165702000072 ], [ -121.237098093999961, 51.608322899000086 ], [ -121.236526117000011, 51.608893506000058 ], [ -121.236417787999954, 51.609383598000093 ], [ -121.236403094999986, 51.609756838000052 ], [ -121.23637572200002, 51.610452197000029 ], [ -121.236407115999924, 51.610749399000035 ], [ -121.236354513999956, 51.611274198000132 ], [ -121.235733110999917, 51.612152208000111 ], [ -121.235248885999965, 51.612873899000078 ], [ -121.235099496999936, 51.613182492000121 ], [ -121.234924694999989, 51.614205003000066 ], [ -121.234745289999921, 51.614174996000038 ], [ -121.233710778999949, 51.613999504000056 ], [ -121.233000881999899, 51.613930199000102 ], [ -121.23224337399995, 51.613925494000078 ], [ -121.228321487999978, 51.614180407000084 ], [ -121.227746438999986, 51.614163599000072 ], [ -121.227616503999954, 51.61415980500005 ], [ -121.227039015999978, 51.614086107000034 ], [ -121.225244706999916, 51.61377825100007 ], [ -121.224683394999943, 51.613681932000048 ] ], [ [ -121.228975472999963, 51.60799915700003 ], [ -121.228985887999954, 51.607903382000089 ], [ -121.228176197999943, 51.607869457000042 ], [ -121.228165780999973, 51.607965233000101 ], [ -121.228975472999963, 51.60799915700003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024579", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "69", "sL_BldgLoss": "69", "sL_StrLoss": "69", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000053FBBEC940515EC0B3B0E939D0C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.268325082, 51.554111269000089 ], [ -121.268356697999977, 51.553817729000066 ], [ -121.26775158199996, 51.553792554000012 ], [ -121.267925905999931, 51.552174215000058 ], [ -121.26662365599995, 51.552120025000065 ], [ -121.266650226999957, 51.55187340800007 ], [ -121.267067630999961, 51.55184919700006 ], [ -121.267633325999952, 51.551877213000132 ], [ -121.267817200999943, 51.551896800000122 ], [ -121.268576237999966, 51.551977621000098 ], [ -121.26883042799993, 51.552028757000095 ], [ -121.26937087, 51.552137488000049 ], [ -121.269946095999984, 51.55237277600007 ], [ -121.270561059999935, 51.552769508000047 ], [ -121.272169560999913, 51.553807174000127 ], [ -121.272938358, 51.554303093000087 ], [ -121.268325082, 51.554111269000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024580", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "212.4", "sL_BldgLoss": "212.4", "sL_StrLoss": "212.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB47BE96804D5EC0AF8BAA7886CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.20810179599998, 51.606423287000084 ], [ -121.207395215999966, 51.606061496000031 ], [ -121.206358596999934, 51.605632892000138 ], [ -121.206013103999965, 51.605573006000142 ], [ -121.205884698, 51.605477561000079 ], [ -121.205937326999958, 51.604995907000045 ], [ -121.206723008, 51.605028982000121 ], [ -121.20672739299999, 51.604988826000096 ], [ -121.207337098999957, 51.605014488000059 ], [ -121.207343066999911, 51.604959840000056 ], [ -121.209519508999946, 51.605051421000027 ], [ -121.209526270999945, 51.60498949100004 ], [ -121.215295795999978, 51.605232062000042 ], [ -121.215292365999971, 51.605263512000086 ], [ -121.217432222999946, 51.605353404000049 ], [ -121.217387268999985, 51.605765814000051 ], [ -121.217437051999966, 51.605767905000015 ], [ -121.217422540999934, 51.605901023000058 ], [ -121.216914779999968, 51.605622893000039 ], [ -121.216345115999957, 51.605416407000064 ], [ -121.215382788999975, 51.605635703000075 ], [ -121.21483689199999, 51.605923399000098 ], [ -121.21421171899999, 51.606417597000068 ], [ -121.213644222999932, 51.6065529030001 ], [ -121.211129314999951, 51.606226804000066 ], [ -121.210477589000021, 51.606252402000067 ], [ -121.209459999, 51.606434689000118 ], [ -121.208422890999941, 51.606364891000034 ], [ -121.20810179599998, 51.606423287000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024582", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.4", "sL_BldgLoss": "53.4", "sL_StrLoss": "53.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BBEC327BC4A5EC01E108D93E7C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.166882198999986, 51.569132609000114 ], [ -121.166886000999966, 51.568090668000096 ], [ -121.166976853999969, 51.568057683000134 ], [ -121.166921658999925, 51.568559171000082 ], [ -121.168775535999941, 51.568588122000072 ], [ -121.168721356999967, 51.569936175000102 ], [ -121.168288718999946, 51.569929421000097 ], [ -121.168256202999913, 51.570738254000119 ], [ -121.16687645899998, 51.570716704000056 ], [ -121.166877220999964, 51.570508318000044 ], [ -121.166882198999986, 51.569132609000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024584", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "48.8", "sL_BldgLoss": "48.8", "sL_StrLoss": "48.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A8CAE5E87475EC0391E7DDDB3C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.114763099999948, 51.576635440000125 ], [ -121.114796572999964, 51.575826634000101 ], [ -121.115229253999971, 51.575833585000048 ], [ -121.115240407999977, 51.575563982000112 ], [ -121.116971125999925, 51.575591772000088 ], [ -121.117004557999934, 51.5747829640001 ], [ -121.11916792199996, 51.57481766300009 ], [ -121.11915679099998, 51.575087266000068 ], [ -121.120022142999986, 51.575101135000089 ], [ -121.119966509, 51.576449151000077 ], [ -121.11823575499993, 51.576421405000048 ], [ -121.11823319799997, 51.576483305000089 ], [ -121.117820789999939, 51.576483271000072 ], [ -121.117732781999962, 51.576483275000072 ], [ -121.117263548, 51.576523296000055 ], [ -121.116931447999931, 51.57655163600004 ], [ -121.116937691999951, 51.576400579000087 ], [ -121.116505004999979, 51.57639363400007 ], [ -121.116496938999958, 51.576588714000088 ], [ -121.116334722999923, 51.576602556000076 ], [ -121.115761335999977, 51.57665147500007 ], [ -121.114763099999948, 51.576635440000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024585", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160583", "BldgCostT": "4938333", "sL_LossRatio": "1", "sL_AssetLoss": "512.9", "sL_BldgLoss": "512.9", "sL_StrLoss": "512.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1E9F7B34E4A5EC086C5EA873FCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.154184275999938, 51.579781026000049 ], [ -121.154323990999941, 51.578515241000069 ], [ -121.160089736999922, 51.578760611000035 ], [ -121.160067540999961, 51.578961939000088 ], [ -121.163631991999949, 51.579113482000082 ], [ -121.16373430199998, 51.578184763000159 ], [ -121.166868201999961, 51.578317907000049 ], [ -121.1668755419999, 51.581748237000106 ], [ -121.16557480100002, 51.581815324000083 ], [ -121.16447479199995, 51.58180911199999 ], [ -121.162866774999912, 51.58172186000008 ], [ -121.162192932999957, 51.58168526700009 ], [ -121.162178479999909, 51.581684497000047 ], [ -121.158437406999937, 51.581462393999978 ], [ -121.157555389999914, 51.581343890000042 ], [ -121.157227437999907, 51.581267138000022 ], [ -121.15677610099999, 51.581161514000094 ], [ -121.156228418999959, 51.580984692000108 ], [ -121.155764975999929, 51.580835096000058 ], [ -121.155424312000022, 51.580702933000047 ], [ -121.15460323399995, 51.580384321000039 ], [ -121.153949939999976, 51.580130854000053 ], [ -121.152908341999975, 51.579726686000086 ], [ -121.154184275999938, 51.579781026000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024586", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "103196477", "BldgCostT": "69019856", "sL_LossRatio": "1", "sL_AssetLoss": "6597", "sL_BldgLoss": "6597", "sL_StrLoss": "6597", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E35C1E444495EC0561BCEC23FC94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.140260317999974, 51.583039910000089 ], [ -121.138275759999928, 51.582388460000033 ], [ -121.136366787000014, 51.582166544000053 ], [ -121.135469890999943, 51.582052661000084 ], [ -121.133086034999948, 51.581554938000053 ], [ -121.132682371999962, 51.58149137600001 ], [ -121.131241187999933, 51.581264609000065 ], [ -121.130848757999942, 51.581153982000082 ], [ -121.130477632999941, 51.581049358 ], [ -121.130187866999975, 51.580967691000048 ], [ -121.12793526199999, 51.58060283800004 ], [ -121.127659689999973, 51.580558206000035 ], [ -121.127035351999908, 51.580441466000075 ], [ -121.127191946999943, 51.579970522000075 ], [ -121.127177555999964, 51.578403823000023 ], [ -121.12693783099995, 51.578384573000044 ], [ -121.125341804999891, 51.578111104000051 ], [ -121.124831060999924, 51.577963290000113 ], [ -121.124563495999922, 51.577816888000036 ], [ -121.124095052999934, 51.577405529000075 ], [ -121.123817805999963, 51.577267726000045 ], [ -121.12298196299993, 51.576996213000044 ], [ -121.12268366099994, 51.576943843000052 ], [ -121.122208920999967, 51.576933754000024 ], [ -121.1207664399999, 51.57690304100003 ], [ -121.12061286699992, 51.576851465000104 ], [ -121.120516799999962, 51.576764610000055 ], [ -121.120526312999985, 51.576483457000037 ], [ -121.120398068999933, 51.576483452000012 ], [ -121.120410323, 51.576186480000075 ], [ -121.120484007999963, 51.57618765900007 ], [ -121.120632881999896, 51.574848141000061 ], [ -121.122089056999954, 51.574910576000029 ], [ -121.122195867999963, 51.573949176000106 ], [ -121.123206034999896, 51.57399247700004 ], [ -121.123219727999967, 51.573869200000061 ], [ -121.123536024999936, 51.573882756000096 ], [ -121.12356129199999, 51.573269321000033 ], [ -121.124859269999931, 51.573290073000088 ], [ -121.124832587999947, 51.573938317000078 ], [ -121.128984690999957, 51.574116144000072 ], [ -121.128799976, 51.575781017000033 ], [ -121.129539919999928, 51.575792816000096 ], [ -121.12958265899999, 51.575407553000048 ], [ -121.129675549999945, 51.575411528000053 ], [ -121.129750190999943, 51.57473865500004 ], [ -121.134046180999988, 51.57492245200006 ], [ -121.134093017999959, 51.574499858000074 ], [ -121.13591975699994, 51.574577962000063 ], [ -121.135920890999955, 51.574567725000158 ], [ -121.132961522999935, 51.57444117900009 ], [ -121.133358472999973, 51.570860033000066 ], [ -121.134588594999968, 51.570912644000039 ], [ -121.134605622999985, 51.57075896300006 ], [ -121.134920908999916, 51.570772445000102 ], [ -121.135048849, 51.569617699000105 ], [ -121.133922100999953, 51.569569513000026 ], [ -121.134106508999935, 51.567905399000061 ], [ -121.131277023999942, 51.567784344000067 ], [ -121.131674050999933, 51.564203181000011 ], [ -121.134994960999933, 51.564345254000102 ], [ -121.135151477999955, 51.562932360000062 ], [ -121.136969120999979, 51.563010081000144 ], [ -121.136993145999966, 51.562422348000034 ], [ -121.137425705999959, 51.562429217000023 ], [ -121.13743672599999, 51.562159610000016 ], [ -121.13916695599994, 51.562187066000028 ], [ -121.139129580999949, 51.563102421000039 ], [ -121.140915073999963, 51.56317870400008 ], [ -121.140842753999948, 51.563832321000042 ], [ -121.141613060999973, 51.563844526000132 ], [ -121.141717493999977, 51.562900516000134 ], [ -121.147481120999942, 51.563146527000058 ], [ -121.147271991, 51.565039159000079 ], [ -121.14708539099999, 51.566727748000055 ], [ -121.141321296999976, 51.566481718000034 ], [ -121.141434295999943, 51.565460380000061 ], [ -121.141197795999958, 51.565456634000057 ], [ -121.141208791999986, 51.565187027000043 ], [ -121.140693760999966, 51.565178865000057 ], [ -121.140664933, 51.565439397000027 ], [ -121.140866535, 51.565448009000065 ], [ -121.140510185999986, 51.568668278000082 ], [ -121.140502532, 51.568737448000071 ], [ -121.14060398399999, 51.568741781000028 ], [ -121.14269240099999, 51.568830965000068 ], [ -121.142664251000014, 51.569085451000078 ], [ -121.143956875999919, 51.569140631000067 ], [ -121.143560804999964, 51.572721821000108 ], [ -121.142888857999978, 51.572693138000055 ], [ -121.142794367999926, 51.573547282000071 ], [ -121.143530867999942, 51.573578719000054 ], [ -121.143567980999961, 51.573243178000034 ], [ -121.145604932999959, 51.573330101000103 ], [ -121.14569933699994, 51.572476227000067 ], [ -121.151228940999943, 51.572712007000121 ], [ -121.151239426999965, 51.572617044000026 ], [ -121.151305119999947, 51.572022159000042 ], [ -121.151895111999934, 51.572047299000097 ], [ -121.152120107, 51.570009474000123 ], [ -121.152592971999965, 51.570029621000096 ], [ -121.152685748999943, 51.56918918100007 ], [ -121.150322872999965, 51.56908848400009 ], [ -121.150053014999983, 51.571531770000021 ], [ -121.150474067999966, 51.571538408000109 ], [ -121.150444465999954, 51.572267598000046 ], [ -121.150441232999967, 51.572347231000023 ], [ -121.148277949999937, 51.572313109000049 ], [ -121.148287748999962, 51.572071995000066 ], [ -121.144220527999934, 51.571898488000045 ], [ -121.144616537000019, 51.568317294000082 ], [ -121.148001570999952, 51.568461709000076 ], [ -121.148003646999953, 51.568410607000082 ], [ -121.14723618799999, 51.56837787400007 ], [ -121.147613925999948, 51.564959506000065 ], [ -121.147631920999956, 51.564796658000041 ], [ -121.147717505999935, 51.564800309000063 ], [ -121.14774145200002, 51.564211223000058 ], [ -121.149039189999911, 51.564231704000072 ], [ -121.149020860999912, 51.564682953000045 ], [ -121.149013849999946, 51.564855596000029 ], [ -121.149368258999914, 51.5648707080001 ], [ -121.14939291799999, 51.564647464000124 ], [ -121.14944167699997, 51.564206 ], [ -121.155205519999967, 51.564451619000074 ], [ -121.155177006999978, 51.564710075000043 ], [ -121.154862177999959, 51.5675636550001 ], [ -121.158638818999961, 51.567724432000027 ], [ -121.158588848999955, 51.568177672000033 ], [ -121.160243893999947, 51.568248090000104 ], [ -121.160153644999966, 51.569066927000044 ], [ -121.161069964999911, 51.569105903000057 ], [ -121.161365023999949, 51.566428185000056 ], [ -121.163234103999969, 51.566507666000071 ], [ -121.163358618999951, 51.565377130000108 ], [ -121.162334573999885, 51.565333587000076 ], [ -121.162504300999927, 51.563792790000051 ], [ -121.162729050999957, 51.561752308000131 ], [ -121.168492644999958, 51.561997256000083 ], [ -121.168349929999977, 51.563294523000053 ], [ -121.169383904999961, 51.563338435000112 ], [ -121.168989956, 51.566919731000056 ], [ -121.168979983999989, 51.566919308000095 ], [ -121.168932875999943, 51.567347507000051 ], [ -121.168469307999956, 51.56751582000004 ], [ -121.167953735999944, 51.567493924000111 ], [ -121.167945203999977, 51.567706110000053 ], [ -121.167787529999941, 51.567763356000107 ], [ -121.167010582999978, 51.567751221000037 ], [ -121.166976853999969, 51.568057683000134 ], [ -121.166886000999966, 51.568090668000096 ], [ -121.166882198999986, 51.569132609000114 ], [ -121.166877220999964, 51.570508318000044 ], [ -121.16687645899998, 51.570716704000056 ], [ -121.166525618999955, 51.570711222000043 ], [ -121.166544322999954, 51.570246375000131 ], [ -121.163634913999928, 51.570122739000098 ], [ -121.163339969999981, 51.572800454000131 ], [ -121.158189877999945, 51.57258141500003 ], [ -121.158074490999951, 51.573627776000073 ], [ -121.15751538799995, 51.573603983000048 ], [ -121.157489777999899, 51.573836189000097 ], [ -121.156899758999913, 51.573811078000077 ], [ -121.156770912999917, 51.574979140000082 ], [ -121.156674965, 51.575848906000061 ], [ -121.155496701999965, 51.575798748000061 ], [ -121.155491229999939, 51.575933871000046 ], [ -121.153760462999983, 51.575906650000078 ], [ -121.153767818999981, 51.575725129000027 ], [ -121.152830685999959, 51.575685213000092 ], [ -121.152713447999972, 51.576747097000116 ], [ -121.150334709000035, 51.576645742000053 ], [ -121.150280876999929, 51.577133067000069 ], [ -121.152603013999965, 51.577232011000071 ], [ -121.15245374700001, 51.578583882000046 ], [ -121.153218466999945, 51.578595920000112 ], [ -121.153185672999939, 51.579404745000055 ], [ -121.152752947999986, 51.579397933000031 ], [ -121.152742229999959, 51.579662228000117 ], [ -121.152561423999941, 51.579592068000125 ], [ -121.152473621999889, 51.579557952000066 ], [ -121.15203937899993, 51.580277040000084 ], [ -121.151839805999927, 51.580353116000062 ], [ -121.151303111999965, 51.580295145000107 ], [ -121.150273772999924, 51.580134366000038 ], [ -121.149601507999975, 51.580123715000056 ], [ -121.148821467999966, 51.580183996000081 ], [ -121.148037693999981, 51.58033048000005 ], [ -121.147875655999954, 51.580466494000113 ], [ -121.147450234999909, 51.580823555000066 ], [ -121.146782496999961, 51.581190872000072 ], [ -121.146559184999973, 51.581285088000058 ], [ -121.145746442999908, 51.581627929000028 ], [ -121.14538330799999, 51.581729375000094 ], [ -121.145027000999988, 51.581781640000017 ], [ -121.14461578399991, 51.581793789000187 ], [ -121.143779101999911, 51.581737400000058 ], [ -121.143591386999972, 51.581739002000091 ], [ -121.143358700999968, 51.581741040000132 ], [ -121.14309803499998, 51.581766794000039 ], [ -121.1428673299999, 51.581836088000053 ], [ -121.142696765999972, 51.581937662000094 ], [ -121.142529774999929, 51.582124833000108 ], [ -121.14230521899999, 51.582568478000049 ], [ -121.142062679, 51.583047590000042 ], [ -121.141967189999917, 51.583034904000016 ], [ -121.141524584999971, 51.582976048000063 ], [ -121.140260317999974, 51.583039910000089 ] ], [ [ -121.135880056999952, 51.579051741000072 ], [ -121.135898879999928, 51.578591821000082 ], [ -121.135466166999962, 51.578584946000113 ], [ -121.135477201999933, 51.578315342000145 ], [ -121.13514689699997, 51.578310092000095 ], [ -121.13511849299995, 51.578566408000029 ], [ -121.135025594999917, 51.578562436000013 ], [ -121.134975656, 51.579013080000074 ], [ -121.135880056999952, 51.579051741000072 ] ], [ [ -121.140226018999925, 51.578660488000075 ], [ -121.14020503899998, 51.57917428400004 ], [ -121.141779364999977, 51.579241506000045 ], [ -121.141774866999938, 51.579282158000083 ], [ -121.143598178000019, 51.57935998400005 ], [ -121.14362738, 51.579096012000079 ], [ -121.141767135999913, 51.579016609000085 ], [ -121.141803779, 51.578685485000051 ], [ -121.140226018999925, 51.578660488000075 ] ], [ [ -121.142042186999959, 51.576531016000068 ], [ -121.142093673999952, 51.576065704000094 ], [ -121.142003037, 51.57606183500009 ], [ -121.141951279999986, 51.576529577 ], [ -121.142042186999959, 51.576531016000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024587", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "186.5", "sL_BldgLoss": "186.5", "sL_StrLoss": "186.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D1760AC183485EC062E38FDC79C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.134897401999922, 51.54929317400007 ], [ -121.135318864999988, 51.549245602000042 ], [ -121.135108920999983, 51.551141460000046 ], [ -121.134167039999937, 51.551101162000045 ], [ -121.134114002999951, 51.55157998100006 ], [ -121.129921541999963, 51.551400518000058 ], [ -121.130438006999967, 51.551094203000083 ], [ -121.13043443, 51.550361515000127 ], [ -121.13045144199998, 51.550361438000024 ], [ -121.130581612999933, 51.550360787000123 ], [ -121.130697787999935, 51.550360212000058 ], [ -121.131243570999914, 51.550293576000065 ], [ -121.131733359999942, 51.550184160000157 ], [ -121.132207566, 51.550039151000107 ], [ -121.134029846999951, 51.549481853000032 ], [ -121.134897401999922, 51.54929317400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024588", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "97.5", "sL_BldgLoss": "97.5", "sL_StrLoss": "97.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CF5C9DD29475EC0CBDCD7DCACC94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.111756629999917, 51.576047531000064 ], [ -121.111767805999946, 51.575777930000058 ], [ -121.111335125999972, 51.575770966000022 ], [ -121.111368657999932, 51.574962160000091 ], [ -121.110503313999956, 51.574948228000039 ], [ -121.110536860000011, 51.574139424000037 ], [ -121.111834854000023, 51.574160319000065 ], [ -121.11181250599995, 51.57469952300012 ], [ -121.11311051699991, 51.574720404000068 ], [ -121.113021175999947, 51.576877220000021 ], [ -121.11085772199999, 51.576842406000068 ], [ -121.110891266999914, 51.57603360100007 ], [ -121.111756629999917, 51.576047531000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024589", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "249.3", "sL_BldgLoss": "249.3", "sL_StrLoss": "249.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EB57F8020C4B5EC0B0515AA84AC84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.169856745999979, 51.566959988000058 ], [ -121.170250623999934, 51.563378688000057 ], [ -121.176014472999967, 51.563623256 ], [ -121.175931007999949, 51.564383111000076 ], [ -121.177168024999943, 51.564402337000097 ], [ -121.177178809999987, 51.564132724000011 ], [ -121.177991940999988, 51.564145356000033 ], [ -121.17544561699998, 51.564960271000061 ], [ -121.175326381999966, 51.564998435000078 ], [ -121.174044369999933, 51.565460202000033 ], [ -121.173695347999953, 51.565585889000019 ], [ -121.17230889899993, 51.566121628000126 ], [ -121.172296397999943, 51.566126160000053 ], [ -121.170173383999966, 51.566897085000051 ], [ -121.169985131999951, 51.566965439000114 ], [ -121.169856745999979, 51.566959988000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024591", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "188", "sL_BldgLoss": "188", "sL_StrLoss": "188", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005AECDDBC44475EC0FFC5D8AEF5C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.11089142499992, 51.50558318200008 ], [ -121.116647379999947, 51.505830766000038 ], [ -121.116249657999973, 51.509412082000019 ], [ -121.110493236999943, 51.509164478000052 ], [ -121.11089142499992, 51.50558318200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024592", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "177.6", "sL_BldgLoss": "177.6", "sL_StrLoss": "177.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8E053AD03405EC0A49DC34A3FC44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.997130152999972, 51.534846368000061 ], [ -120.997537795999904, 51.531265563000041 ], [ -121.003296464999949, 51.531518876000113 ], [ -121.003192503999969, 51.532433194000063 ], [ -121.003259300999972, 51.532434332000079 ], [ -121.003223903999952, 51.533243091000017 ], [ -121.003100650999954, 51.533240993000021 ], [ -121.002889287999949, 51.535099699000085 ], [ -120.997130152999972, 51.534846368000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024593", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "182.9", "sL_BldgLoss": "182.9", "sL_StrLoss": "182.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013B4347DD73E5EC0631EBFD8F7C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.979226626999917, 51.529084229000013 ], [ -120.984984903999973, 51.529338468000063 ], [ -120.984576259, 51.532919234000119 ], [ -120.981973660999969, 51.532804361000018 ], [ -120.978961052999949, 51.532671316000048 ], [ -120.978829216999969, 51.532562557000091 ], [ -120.97906053899996, 51.530537989000088 ], [ -120.979226626999917, 51.529084229000013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024594", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999985541409515", "sL_AssetLoss": "156.031807", "sL_BldgLoss": "156.029551", "sL_StrLoss": "156.000401", "sL_NStrLoss": "0.02915", "sL_ContLoss": "0.002256", "geom_point": "0101000020E610000043B1B209724D5EC081655BBC8EB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.207405651999949, 51.447756147000064 ], [ -121.213154596, 51.447998862000112 ], [ -121.212765232999914, 51.451580717000098 ], [ -121.207015823999939, 51.451337982000062 ], [ -121.207405651999949, 51.447756147000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024595", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "0.999994193929929", "sL_AssetLoss": "217.01426", "sL_BldgLoss": "217.013", "sL_StrLoss": "217", "sL_NStrLoss": "0.013", "sL_ContLoss": "0.00126", "geom_point": "0101000020E6100000E25B58371E4A5EC0B3EE1F0B51C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.15500769099998, 51.535392439000063 ], [ -121.155402494999962, 51.531811080000061 ], [ -121.16116212799993, 51.532056406000017 ], [ -121.160767790999927, 51.535637784000109 ], [ -121.15500769099998, 51.535392439000063 ] ], [ [ -121.156045685999928, 51.533909700000102 ], [ -121.155802312999981, 51.533861297000044 ], [ -121.155667213999948, 51.533993694000124 ], [ -121.155703292999974, 51.534156098000032 ], [ -121.156022813999968, 51.534124709000139 ], [ -121.156045685999928, 51.533909700000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024596", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49", "sL_BldgLoss": "49", "sL_StrLoss": "49", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000018461727C0415EC0BE6060EB0CC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.024637870999953, 51.538581214000082 ], [ -121.03039765199999, 51.53883315400001 ], [ -121.03024176299995, 51.540211425000088 ], [ -121.029778408999903, 51.540211187000068 ], [ -121.028321370999933, 51.540210411000018 ], [ -121.027369880999942, 51.540209887000081 ], [ -121.027023649999975, 51.540209716000035 ], [ -121.025870374999954, 51.54020905600003 ], [ -121.024453628999964, 51.5402082680001 ], [ -121.024637870999953, 51.538581214000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024597", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "292.7", "sL_BldgLoss": "292.7", "sL_StrLoss": "292.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000558C889CDD465EC09FD7AFA678BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.104948074999939, 51.498485045000081 ], [ -121.10515112399996, 51.496660500000097 ], [ -121.103450851, 51.496587208000065 ], [ -121.103849497999988, 51.493005892000106 ], [ -121.104980441999928, 51.493054646000125 ], [ -121.1096037699999, 51.493253835000118 ], [ -121.109400919999956, 51.49507839400006 ], [ -121.111101143999946, 51.49515159800012 ], [ -121.110814571999953, 51.497729840000083 ], [ -121.110703068999925, 51.498732932000067 ], [ -121.104948074999939, 51.498485045000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024598", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "110.7", "sL_BldgLoss": "110.7", "sL_StrLoss": "110.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DCDCF4778435EC088F9B0E619C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.050923554999912, 51.540534215000037 ], [ -121.051232361999936, 51.537792438000096 ], [ -121.055151298999988, 51.537962973000127 ], [ -121.055232902999961, 51.538487103000044 ], [ -121.056476502999956, 51.539442704000109 ], [ -121.057393082999937, 51.539915600000057 ], [ -121.057699442999962, 51.539912518000065 ], [ -121.057454290999928, 51.54209190400006 ], [ -121.056750861999959, 51.542061321000091 ], [ -121.056555701999912, 51.542008835000075 ], [ -121.052714081999937, 51.540975589000041 ], [ -121.050923554999912, 51.540534215000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024599", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "69.3", "sL_BldgLoss": "69.3", "sL_StrLoss": "69.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E97B91F915475EC07AC023C7A9BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.111849383999981, 51.459698395000018 ], [ -121.111257782999957, 51.459356603000053 ], [ -121.109710116999935, 51.459582997000012 ], [ -121.109245480999959, 51.459288198000117 ], [ -121.108854026999921, 51.459162054000082 ], [ -121.108890736, 51.45883163700011 ], [ -121.109070691999932, 51.458628809000039 ], [ -121.109193099999914, 51.458145986000076 ], [ -121.10970591200001, 51.457577701000055 ], [ -121.109760700999971, 51.456941086000022 ], [ -121.109682742999908, 51.456856710000089 ], [ -121.112530542999977, 51.456979413000049 ], [ -121.112391116999973, 51.457028003000119 ], [ -121.112035599, 51.457264384000077 ], [ -121.111871786999956, 51.457406796000072 ], [ -121.111817784, 51.457684597000124 ], [ -121.112278796999973, 51.458717102000072 ], [ -121.112307613, 51.459400699000113 ], [ -121.112212696999947, 51.459632902000116 ], [ -121.111849383999981, 51.459698395000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024600", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7ACADD06E495EC01E6A807717BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.145143565999931, 51.455892203000111 ], [ -121.145538459999926, 51.452310597000114 ], [ -121.151287653999972, 51.452556441000056 ], [ -121.151284122, 51.45258852400007 ], [ -121.150074712999938, 51.453186902000027 ], [ -121.148896396999945, 51.453464599000107 ], [ -121.148685921999913, 51.453695401000154 ], [ -121.148760689999975, 51.453947400000082 ], [ -121.149336593000015, 51.453947398000075 ], [ -121.14993630699999, 51.453723785000086 ], [ -121.149987792999966, 51.453886206000064 ], [ -121.14924999499999, 51.454341905000078 ], [ -121.148692410999971, 51.454962905000045 ], [ -121.147854207999941, 51.455373086000073 ], [ -121.146307104999963, 51.455545403000038 ], [ -121.145524961999939, 51.455908521000012 ], [ -121.145143565999931, 51.455892203000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024603", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "56.1", "sL_BldgLoss": "56.1", "sL_StrLoss": "56.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B138187F53F5EC0946315E3BAC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.998575613999918, 51.530735774000057 ], [ -120.998717509999906, 51.527500745000111 ], [ -121.000014091999944, 51.52752286300003 ], [ -120.999955009999951, 51.52887079300011 ], [ -121.00038721699994, 51.528878163000044 ], [ -121.00035177299992, 51.52968692200011 ], [ -120.999919558999949, 51.5296795510001 ], [ -120.999872286999931, 51.530757895000114 ], [ -120.998575613999918, 51.530735774000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024604", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.5", "sL_BldgLoss": "53.5", "sL_StrLoss": "53.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005705AC4D4A3D5EC0BD521A5A32C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.953968346999915, 51.52498647600008 ], [ -120.953764029999917, 51.524623826000052 ], [ -120.953777616999929, 51.524473486000026 ], [ -120.953793527999935, 51.524297425000078 ], [ -120.954311323999931, 51.524306458000098 ], [ -120.954299237999976, 51.524576038000085 ], [ -120.955163546999955, 51.524591111000092 ], [ -120.955154025999889, 51.524803593000058 ], [ -120.955815645999962, 51.524832964000055 ], [ -120.955864327999933, 51.524408772000108 ], [ -120.96162185899999, 51.524664193000071 ], [ -120.96153363, 51.525433832000068 ], [ -120.960999799999939, 51.525285889000052 ], [ -120.960442623999924, 51.525224314000127 ], [ -120.959895130999953, 51.525242311000049 ], [ -120.959311191999916, 51.525313578000109 ], [ -120.958528074999961, 51.525468665000083 ], [ -120.958102160999914, 51.525565808000053 ], [ -120.957966520999904, 51.525596707000076 ], [ -120.957505789999956, 51.525640157000026 ], [ -120.956548109999943, 51.525602161000123 ], [ -120.955872423999921, 51.525474209000137 ], [ -120.955601561999984, 51.525422914000011 ], [ -120.955542722999937, 51.525411776000063 ], [ -120.953968346999915, 51.52498647600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024605", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "134.5", "sL_BldgLoss": "134.5", "sL_StrLoss": "134.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CC919DD0CE4F5EC05AC2F3B55BB44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.243491069999962, 51.410132136000129 ], [ -121.24368335099993, 51.408350159000058 ], [ -121.244118605999958, 51.408572101000068 ], [ -121.246389697999987, 51.408606303000035 ], [ -121.24744779599996, 51.408369908000083 ], [ -121.248143697999978, 51.407831510000051 ], [ -121.248352008999959, 51.406908690000115 ], [ -121.248475312999986, 51.406742869000055 ], [ -121.24889814, 51.40676059400004 ], [ -121.249621352999966, 51.40679090800009 ], [ -121.249235311999882, 51.410373036000131 ], [ -121.245260416999955, 51.410206370000054 ], [ -121.243491069999962, 51.410132136000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024606", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "128", "sL_BldgLoss": "128", "sL_StrLoss": "128", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004CA00C7EF0435EC05BFA8678DABB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.061447530999885, 51.465800542000082 ], [ -121.064628161999906, 51.465938908000048 ], [ -121.06422657499995, 51.469520182000053 ], [ -121.060676314999981, 51.469365731000053 ], [ -121.05847565599997, 51.469269937000028 ], [ -121.058703955999974, 51.467236446000037 ], [ -121.058857503999945, 51.467178308000044 ], [ -121.05872056699998, 51.467088483000055 ], [ -121.058877708999901, 51.465688682000078 ], [ -121.061447530999885, 51.465800542000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024607", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "179.5", "sL_BldgLoss": "179.5", "sL_StrLoss": "179.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041DD3810EF455EC060679646C4C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.089792597999946, 51.515713407000113 ], [ -121.08984552899993, 51.515239462000103 ], [ -121.089483119999926, 51.515223800000058 ], [ -121.089883070999974, 51.511642599000027 ], [ -121.095639700999939, 51.511891245000122 ], [ -121.095586833999931, 51.512365194000026 ], [ -121.095949221999931, 51.512380837000059 ], [ -121.09554975699993, 51.515962056000042 ], [ -121.089792597999946, 51.515713407000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024608", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "131.6", "sL_BldgLoss": "131.6", "sL_StrLoss": "131.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003BDF709B804A5EC07DE71725E8B94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.162406582999935, 51.452175691000029 ], [ -121.163573011999958, 51.451429386000044 ], [ -121.164829321999918, 51.451718606000036 ], [ -121.165081895999919, 51.451848192000064 ], [ -121.165185578999939, 51.451805402000033 ], [ -121.164832601999962, 51.451260009000059 ], [ -121.164422886999901, 51.449993797000047 ], [ -121.164412603999921, 51.449986565000053 ], [ -121.166774697000022, 51.450087218000064 ], [ -121.166381548999979, 51.453668906000082 ], [ -121.165702895, 51.453639992000014 ], [ -121.165669733999977, 51.453942022000049 ], [ -121.159920278999977, 51.453696906000033 ], [ -121.159961535999969, 51.453321563000088 ], [ -121.160505805999918, 51.452882109000029 ], [ -121.16084319199993, 51.452402210000081 ], [ -121.162406582999935, 51.452175691000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024609", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "103.8", "sL_BldgLoss": "103.8", "sL_StrLoss": "103.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016DD3831BD455EC0D019285BEAC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.086989877999912, 51.54481829300007 ], [ -121.092750829999929, 51.545067076000073 ], [ -121.092488389, 51.547416586000082 ], [ -121.091808602, 51.547464891000082 ], [ -121.091128051999988, 51.547485475 ], [ -121.090644006999923, 51.547500110000122 ], [ -121.086690463999943, 51.547495640000072 ], [ -121.086989877999912, 51.54481829300007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024610", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "198.5", "sL_BldgLoss": "198.5", "sL_StrLoss": "198.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027380E1F45475EC0F9769EBAEABF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.110915321000036, 51.497436367000041 ], [ -121.116670211999988, 51.497683953000021 ], [ -121.116272564999989, 51.501265296000064 ], [ -121.115223051999976, 51.501220166000103 ], [ -121.11051720899998, 51.501017692000048 ], [ -121.110877188999936, 51.497779421000068 ], [ -121.110915321000036, 51.497436367000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024613", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "132.4", "sL_BldgLoss": "132.4", "sL_StrLoss": "132.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006BA77BD7BF495EC092E613A291BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.149281730999959, 51.45862311000009 ], [ -121.149290617999924, 51.458542452000046 ], [ -121.148440008999941, 51.458506088000021 ], [ -121.148572598999962, 51.457302837000057 ], [ -121.150014286999948, 51.456800096000066 ], [ -121.150638212, 51.456693287000078 ], [ -121.152230110999966, 51.456790186000092 ], [ -121.152930487999967, 51.456595005000054 ], [ -121.153801787999967, 51.45605099800008 ], [ -121.155405903999963, 51.455468753000012 ], [ -121.155031770999955, 51.458868764 ], [ -121.149281730999959, 51.45862311000009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024616", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "194.6", "sL_BldgLoss": "194.6", "sL_StrLoss": "194.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB4B3A88E54A5EC0C6A86BEDFDB84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.167581847999941, 51.44333599900007 ], [ -121.173329996999911, 51.443580731000068 ], [ -121.173287878999986, 51.443965041000084 ], [ -121.17293743899998, 51.447162465000098 ], [ -121.167188824999982, 51.446917714000101 ], [ -121.16745784799997, 51.444466104000064 ], [ -121.167581847999941, 51.44333599900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024617", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14202750", "BldgCostT": "9795000", "sL_LossRatio": "1", "sL_AssetLoss": "1274.7", "sL_BldgLoss": "1274.7", "sL_StrLoss": "1274.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000026B8C3EC064E5EC00B92040299C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.201416390999938, 51.554608415000111 ], [ -121.201060096999953, 51.554592407000015 ], [ -121.199999394, 51.554581898000066 ], [ -121.196653631999965, 51.554548700000105 ], [ -121.195500383999899, 51.554537231000047 ], [ -121.195137683, 51.554533607000032 ], [ -121.195082615999951, 51.554533067000108 ], [ -121.194934272999944, 51.554531638000064 ], [ -121.194532900999917, 51.554496725000106 ], [ -121.193960678999986, 51.55439520700002 ], [ -121.193392731999921, 51.554227454000042 ], [ -121.193263898999987, 51.554189393000101 ], [ -121.192837730999955, 51.554010403000056 ], [ -121.192314201999963, 51.553714819000092 ], [ -121.19132693, 51.553002901000085 ], [ -121.190836701999984, 51.552721400000109 ], [ -121.190195830999983, 51.552441493000096 ], [ -121.189383725999946, 51.552178697000073 ], [ -121.187983096000011, 51.551802637000073 ], [ -121.188020978999944, 51.551456785 ], [ -121.188071157999957, 51.55145890900009 ], [ -121.18808611599998, 51.551082480000069 ], [ -121.18981597599992, 51.551109186000105 ], [ -121.189837383999958, 51.55056995700005 ], [ -121.190269842999925, 51.550576628000094 ], [ -121.190291244999983, 51.550037399000054 ], [ -121.192021068999921, 51.550064071000051 ], [ -121.192010376999946, 51.550333687 ], [ -121.193307753999974, 51.550353675000139 ], [ -121.193275703999973, 51.551162521000059 ], [ -121.191545837999954, 51.55113586600001 ], [ -121.19152722799997, 51.551605087000056 ], [ -121.193783364999916, 51.551700457000024 ], [ -121.193755672999927, 51.551953574000059 ], [ -121.196813875999979, 51.552082776000105 ], [ -121.196761145999943, 51.552565048000091 ], [ -121.198369438999961, 51.55258975900005 ], [ -121.19840417799999, 51.552271932000103 ], [ -121.203990826999984, 51.552507660000117 ], [ -121.204141798999913, 51.551124764000107 ], [ -121.209904230999911, 51.551367620000079 ], [ -121.209897998999921, 51.551424767000128 ], [ -121.21066570899994, 51.551457100000064 ], [ -121.210651668999986, 51.551585882000012 ], [ -121.210775496999943, 51.55159109600001 ], [ -121.21088193599995, 51.550614723000081 ], [ -121.216644337, 51.550857238000049 ], [ -121.216456268999963, 51.552584460000055 ], [ -121.219845347999978, 51.552726954000029 ], [ -121.219803135999911, 51.55311489300005 ], [ -121.222499456999984, 51.553228187000109 ], [ -121.222612189, 51.552191576000055 ], [ -121.220308298999967, 51.55209477500005 ], [ -121.220697937999901, 51.548513250000056 ], [ -121.221035852999989, 51.548527451000012 ], [ -121.221115463999979, 51.547795559000107 ], [ -121.226877551999948, 51.548037557000093 ], [ -121.226667778999939, 51.549968375000084 ], [ -121.227742332999952, 51.550013472000025 ], [ -121.227843793999938, 51.549079420000069 ], [ -121.228666430999979, 51.549113938000104 ], [ -121.228674358999953, 51.54904094000004 ], [ -121.230556152999966, 51.549119876000056 ], [ -121.230560374999953, 51.549080984000092 ], [ -121.234010154999979, 51.549225613000026 ], [ -121.234108266999939, 51.548321166000058 ], [ -121.239870496999927, 51.548562507000085 ], [ -121.239803695999939, 51.54917904400007 ], [ -121.241814615999914, 51.549263198000098 ], [ -121.24183775599991, 51.548663042000051 ], [ -121.241946814999935, 51.548664677000041 ], [ -121.242515599999976, 51.548673200000131 ], [ -121.24257111, 51.548160566000028 ], [ -121.242800899999921, 51.548170178000106 ], [ -121.242870835999938, 51.547524272000075 ], [ -121.248633008999903, 51.547765169000101 ], [ -121.248245650999976, 51.551346792000089 ], [ -121.248015843999951, 51.55133719 ], [ -121.24795999499996, 51.55185350900004 ], [ -121.24788517799999, 51.551822812000118 ], [ -121.247464322999974, 51.551686512000074 ], [ -121.247042555999883, 51.551585234000122 ], [ -121.242435900999951, 51.550906517000136 ], [ -121.242252082999954, 51.550879431000105 ], [ -121.240816331999952, 51.550667349000037 ], [ -121.240635544999989, 51.550653593000071 ], [ -121.240184773999914, 51.550619337000093 ], [ -121.23930621, 51.550582567000099 ], [ -121.238932479999946, 51.550566928000144 ], [ -121.238477631999984, 51.550547854000094 ], [ -121.237873552999986, 51.550580144000065 ], [ -121.237123769999968, 51.550701663999988 ], [ -121.237068004999955, 51.550718068000073 ], [ -121.234835047000018, 51.551375716000067 ], [ -121.234321544999958, 51.551480126000065 ], [ -121.233652505999899, 51.551537545000016 ], [ -121.23322843699998, 51.551524269000041 ], [ -121.23209535399999, 51.551363438000095 ], [ -121.231767619999928, 51.551339843000044 ], [ -121.231377378999952, 51.551311753000071 ], [ -121.230697323999919, 51.551337197000095 ], [ -121.229849544999951, 51.551454544000109 ], [ -121.226940782999975, 51.552119554000043 ], [ -121.224831777999938, 51.552602168000114 ], [ -121.223296799999929, 51.552982982000096 ], [ -121.222870991999912, 51.553172001000085 ], [ -121.222623400999936, 51.553327179000107 ], [ -121.221345822, 51.55412786800008 ], [ -121.220774202, 51.554486074000074 ], [ -121.220346420999931, 51.554693892000095 ], [ -121.219897620999959, 51.554827989000046 ], [ -121.219453234999932, 51.554894693000094 ], [ -121.21888990599993, 51.554910597000074 ], [ -121.21871369099992, 51.554898709000071 ], [ -121.217245635, 51.554799540000069 ], [ -121.215186011999947, 51.554660388000165 ], [ -121.211868232999933, 51.554652379000053 ], [ -121.20983219299994, 51.554647401000068 ], [ -121.208943414999936, 51.554675598000074 ], [ -121.208220773, 51.554758490000069 ], [ -121.207123917999951, 51.55500910500011 ], [ -121.206856305999949, 51.555060798000078 ], [ -121.206368815999937, 51.555084300000019 ], [ -121.205298674999966, 51.555049098000069 ], [ -121.204074743999954, 51.554883287000116 ], [ -121.203333873999952, 51.554782922000143 ], [ -121.203283422999959, 51.554776124000099 ], [ -121.20217274399999, 51.554650656000064 ], [ -121.202051017999963, 51.554636910000099 ], [ -121.201416390999938, 51.554608415000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024618", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "153.5", "sL_BldgLoss": "153.5", "sL_StrLoss": "153.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C31548375F445EC0F877110162BD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.065636190999911, 51.477637764000058 ], [ -121.071388241999983, 51.477887645000067 ], [ -121.070987093999975, 51.48146890000001 ], [ -121.065234578999963, 51.481219 ], [ -121.065636190999911, 51.477637764000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024619", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "0.999988910439336", "sL_AssetLoss": "233.913685", "sL_BldgLoss": "233.911091", "sL_StrLoss": "233.9", "sL_NStrLoss": "0.011091", "sL_ContLoss": "0.002594", "geom_point": "0101000020E6100000B27A2C222F455EC0F3E49A0219BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.077897673999971, 51.470950759000033 ], [ -121.07824985799999, 51.467801441000063 ], [ -121.078439394999947, 51.467879115000095 ], [ -121.078683781999956, 51.467891904000055 ], [ -121.07927210099993, 51.46757849400008 ], [ -121.079621200999938, 51.467817806000049 ], [ -121.079861697, 51.468289213000062 ], [ -121.080147008999973, 51.46834760200003 ], [ -121.080912408999936, 51.468262200000034 ], [ -121.082223916999951, 51.467914698000115 ], [ -121.083324808999976, 51.467752285000039 ], [ -121.083613096999954, 51.467739504000093 ], [ -121.084020536999958, 51.467873036000064 ], [ -121.083648919999945, 51.471200021000115 ], [ -121.077897673999971, 51.470950759000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024620", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "125.8", "sL_BldgLoss": "125.8", "sL_StrLoss": "125.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006F4651902D4B5EC07DD4B2F75AB84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.171763527999929, 51.442178045000077 ], [ -121.171835493999936, 51.441521546000111 ], [ -121.171125651999915, 51.441491329000023 ], [ -121.171500671999979, 51.438070445000072 ], [ -121.171931200999936, 51.438933395000085 ], [ -121.172165603999986, 51.439198296000015 ], [ -121.172262820999919, 51.439245303000114 ], [ -121.172843889999982, 51.439137092000102 ], [ -121.173238396999963, 51.438990410000073 ], [ -121.173288023999973, 51.438802401000025 ], [ -121.172892766999908, 51.437968087000066 ], [ -121.177265768999945, 51.438154115000096 ], [ -121.177193888999952, 51.438810619000058 ], [ -121.177903692999962, 51.438840799000069 ], [ -121.177511547999984, 51.442422565000044 ], [ -121.171763527999929, 51.442178045000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024621", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.4", "sL_BldgLoss": "168.4", "sL_StrLoss": "168.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000020D954C486405EC04DDFC6C180C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.005549425999945, 51.533262455000028 ], [ -121.011308399999947, 51.533515362000081 ], [ -121.01090185799994, 51.537096207000033 ], [ -121.00514241599997, 51.536843281000095 ], [ -121.005549425999945, 51.533262455000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024622", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3982667", "BldgCostT": "2746667", "sL_LossRatio": "1", "sL_AssetLoss": "380.4", "sL_BldgLoss": "380.4", "sL_StrLoss": "380.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059E30910074C5EC0A71CF6EFB8C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.186283618999965, 51.533352887000049 ], [ -121.186630939999958, 51.530181598000141 ], [ -121.183985160999981, 51.530069530000084 ], [ -121.184293301000011, 51.527257145000135 ], [ -121.184464600999917, 51.527006506000099 ], [ -121.184662304999961, 51.525291794000104 ], [ -121.184708206999943, 51.525237705000073 ], [ -121.18509660799999, 51.525280396000035 ], [ -121.18529009099997, 51.525120897000072 ], [ -121.185661914999969, 51.524452902000078 ], [ -121.185882380999942, 51.523619797000016 ], [ -121.18597307499999, 51.523455851000065 ], [ -121.188570695999957, 51.523565851000036 ], [ -121.188232962000015, 51.52665133700004 ], [ -121.190136656999954, 51.526731914000102 ], [ -121.189789615999985, 51.529903224000066 ], [ -121.192435399999965, 51.530015157000044 ], [ -121.192043624999911, 51.533596650000071 ], [ -121.186283618999965, 51.533352887000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024624", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "171", "sL_BldgLoss": "171", "sL_StrLoss": "171", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5824E4A39475EC0AF7B2B1293C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.110191513999894, 51.526011304000114 ], [ -121.115950135999967, 51.526258919000014 ], [ -121.115552172, 51.529840159000024 ], [ -121.109793083999975, 51.529592525000091 ], [ -121.110191513999894, 51.526011304000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024625", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745833", "BldgCostT": "2583333", "sL_LossRatio": "1", "sL_AssetLoss": "398", "sL_BldgLoss": "398", "sL_StrLoss": "398", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000023F70B6F5495EC034FB55E399B84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.148618223999961, 51.444035116000101 ], [ -121.14864623699998, 51.443780803000017 ], [ -121.147357595999921, 51.443725683000132 ], [ -121.147605230999957, 51.441478074000088 ], [ -121.147631514999929, 51.441239504000031 ], [ -121.148420603999938, 51.44137879100002 ], [ -121.151575582999911, 51.44133039700008 ], [ -121.153858611999979, 51.441420092000023 ], [ -121.154236595999976, 51.441336095000096 ], [ -121.154899120999985, 51.440978605000076 ], [ -121.155394386999944, 51.440823397000081 ], [ -121.155868505999962, 51.440804794000059 ], [ -121.156322498999955, 51.440982889000104 ], [ -121.156868397999986, 51.440991393000132 ], [ -121.157403397999985, 51.440612596000058 ], [ -121.157725606999989, 51.439745202000061 ], [ -121.157828611999918, 51.439666909000053 ], [ -121.158175011999987, 51.439635598000081 ], [ -121.158462132999929, 51.439667314000125 ], [ -121.160740917999959, 51.439919005000093 ], [ -121.161288015000011, 51.440233696000043 ], [ -121.16194718299991, 51.441017001000034 ], [ -121.162353409999966, 51.44129329800009 ], [ -121.163506105999943, 51.44127478500014 ], [ -121.16382999699999, 51.441082609000077 ], [ -121.164136825999933, 51.440784882000081 ], [ -121.163875700999952, 51.44316308500008 ], [ -121.158294086999945, 51.442924979000118 ], [ -121.158283159999939, 51.443024375000057 ], [ -121.158268457999895, 51.443158117000046 ], [ -121.157653637999928, 51.443131873 ], [ -121.157624945999956, 51.443392832000065 ], [ -121.15722175099998, 51.443375619000037 ], [ -121.15720173599999, 51.443557643000084 ], [ -121.154458808999919, 51.443440505000098 ], [ -121.154366356999972, 51.444280807000069 ], [ -121.148618223999961, 51.444035116000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024626", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8368917", "BldgCostT": "5771667", "sL_LossRatio": "0.999996567301987", "sL_AssetLoss": "968.043209", "sL_BldgLoss": "968.039886", "sL_StrLoss": "968.000216", "sL_NStrLoss": "0.03967", "sL_ContLoss": "0.003323", "geom_point": "0101000020E61000006B78E540F0505EC0B3F480FD00B34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.257422497, 51.399454309000085 ], [ -121.257536187999904, 51.397944705000022 ], [ -121.257884486999956, 51.397473303000019 ], [ -121.258237601999966, 51.397280988000084 ], [ -121.259678785999981, 51.396798190000055 ], [ -121.261507991999935, 51.396681413000032 ], [ -121.26426570599989, 51.396372313 ], [ -121.264817605, 51.3962456080001 ], [ -121.265739185999919, 51.395826891000048 ], [ -121.267467520999944, 51.394611996000023 ], [ -121.26822781599995, 51.393850093000047 ], [ -121.26937760899996, 51.393093782000065 ], [ -121.27056959, 51.3923561040001 ], [ -121.272002123000036, 51.391765003000039 ], [ -121.273628200999951, 51.391339211000123 ], [ -121.274635108999973, 51.391330647000053 ], [ -121.272525261999974, 51.394356720000069 ], [ -121.27275283099999, 51.394891144000034 ], [ -121.272745808999957, 51.395077544000053 ], [ -121.271883786, 51.395064833000085 ], [ -121.271873622999962, 51.395334466000094 ], [ -121.271443995999903, 51.395328129000077 ], [ -121.271441856999957, 51.395348082000119 ], [ -121.271432444999931, 51.395597742000056 ], [ -121.271863461999942, 51.395604101000025 ], [ -121.271853298999957, 51.395873733000037 ], [ -121.272284317, 51.395880091000045 ], [ -121.27225383699998, 51.396688992000072 ], [ -121.271651485999953, 51.396680108000091 ], [ -121.270540511999926, 51.396663715000038 ], [ -121.270523710999939, 51.396820359000088 ], [ -121.27045379799992, 51.396817441000046 ], [ -121.270381722999915, 51.397489390000047 ], [ -121.271789097999957, 51.397548121000064 ], [ -121.273922205999924, 51.397637105000072 ], [ -121.274553605999941, 51.399119624000029 ], [ -121.274325043999937, 51.401252161000073 ], [ -121.273304058999926, 51.401209582000057 ], [ -121.268581850999951, 51.401012529000056 ], [ -121.268801148999941, 51.398968918000072 ], [ -121.26514301899999, 51.398816132000036 ], [ -121.265120710999923, 51.399023883000055 ], [ -121.264223619999953, 51.398986396000083 ], [ -121.26421527399999, 51.399064103000086 ], [ -121.263670398999977, 51.399041331000042 ], [ -121.263650259999963, 51.3992288170001 ], [ -121.261393517999977, 51.399134473000089 ], [ -121.261044937999927, 51.402377672000078 ], [ -121.260844129999953, 51.402369275000076 ], [ -121.260792155000019, 51.402852777000092 ], [ -121.258330017999953, 51.402749791000126 ], [ -121.258319547999932, 51.402847136000062 ], [ -121.257495401999904, 51.402812651000083 ], [ -121.257479718999932, 51.402958456000142 ], [ -121.256700112999965, 51.402925829000061 ], [ -121.25668709, 51.403046873000072 ], [ -121.255899293999974, 51.403013898000083 ], [ -121.255893655999927, 51.403066293000045 ], [ -121.25526453599997, 51.403039955000068 ], [ -121.255164580999917, 51.40396870800005 ], [ -121.250845762999973, 51.403787815000022 ], [ -121.249717313999923, 51.403740521000088 ], [ -121.250315902999915, 51.403330990000072 ], [ -121.251327086999979, 51.402816904000048 ], [ -121.252096688999956, 51.402207308000087 ], [ -121.252249914999965, 51.401597793000064 ], [ -121.252449194999912, 51.401304399000047 ], [ -121.253076299999989, 51.401079388000063 ], [ -121.255215222999965, 51.400787406000084 ], [ -121.256233815999934, 51.400469792000059 ], [ -121.256912111999938, 51.400004094000025 ], [ -121.257422497, 51.399454309000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024627", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "198.3", "sL_BldgLoss": "198.3", "sL_StrLoss": "198.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F01B1F88F4A5EC0CA13EF9D24C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.165561552999989, 51.53059068300005 ], [ -121.168114069999987, 51.530699216000052 ], [ -121.167743994999967, 51.534065218000094 ], [ -121.167720310999968, 51.534280622000118 ], [ -121.161960348999955, 51.534035628000026 ], [ -121.16235457599997, 51.530454241000072 ], [ -121.165561552999989, 51.53059068300005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024628", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "116", "sL_BldgLoss": "116", "sL_StrLoss": "116", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E16CC6AB24475EC068FA15009DBD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.112137833999938, 51.479577090000092 ], [ -121.1146884299999, 51.479686876000116 ], [ -121.114290784999966, 51.483268277000079 ], [ -121.109910726999942, 51.483079709000044 ], [ -121.108537789999929, 51.483020567000075 ], [ -121.108935901999956, 51.479439186000029 ], [ -121.112137833999938, 51.479577090000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024630", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541833", "BldgCostT": "1063333", "sL_LossRatio": "1", "sL_AssetLoss": "125", "sL_BldgLoss": "125", "sL_StrLoss": "125", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E800B9ABF4475EC0F741F1BE05C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.121628078999933, 51.521698665000038 ], [ -121.12738620199994, 51.52194570299999 ], [ -121.126989205999919, 51.525526998000089 ], [ -121.121230618999903, 51.525279942000054 ], [ -121.121628078999933, 51.521698665000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024631", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "182.4", "sL_BldgLoss": "182.4", "sL_StrLoss": "182.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DE82B6E6184B5EC06B2E92D1DCC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.174105678, 51.546331595000062 ], [ -121.173564108999969, 51.546126499000131 ], [ -121.173247577999973, 51.546156500000052 ], [ -121.172994101999961, 51.546341598000048 ], [ -121.172731798999976, 51.546409990000043 ], [ -121.171743807, 51.546556686000024 ], [ -121.171417515999963, 51.546442696000049 ], [ -121.169578886999915, 51.546280392000078 ], [ -121.169225404999963, 51.546058187000064 ], [ -121.16843361299999, 51.546028293000113 ], [ -121.168326, 51.545845994000054 ], [ -121.168122400999934, 51.545924345000145 ], [ -121.168319681999947, 51.54413040700004 ], [ -121.169104037, 51.544163734000058 ], [ -121.16910844799996, 51.544123625000054 ], [ -121.174869769999958, 51.544368255000037 ], [ -121.174772418, 51.545254727000092 ], [ -121.178047819999932, 51.54539367100012 ], [ -121.177862067999939, 51.54708614300008 ], [ -121.177670348999939, 51.548832842000117 ], [ -121.177458190000024, 51.548677299000097 ], [ -121.176806207999959, 51.548406703000069 ], [ -121.17643539, 51.547933893000099 ], [ -121.175843308999958, 51.547600602000095 ], [ -121.175138786999966, 51.547499498000086 ], [ -121.174895958999969, 51.546946113000075 ], [ -121.17487629599999, 51.546901301000041 ], [ -121.174666721999984, 51.546700501000039 ], [ -121.174256907999919, 51.546513910000051 ], [ -121.174105678, 51.546331595000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024632", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8963416", "BldgCostT": "6181666", "sL_LossRatio": "0.999999725211759", "sL_AssetLoss": "964.0150499", "sL_BldgLoss": "964.014785", "sL_StrLoss": "964.000278", "sL_NStrLoss": "0.014507", "sL_ContLoss": "0.0002649", "geom_point": "0101000020E6100000527DC6097C4E5EC085C9D8F9CCB54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.211470819999974, 51.426509944000053 ], [ -121.211653666999936, 51.424827420000078 ], [ -121.211590441999974, 51.424824750000056 ], [ -121.211622222999907, 51.424532291000041 ], [ -121.211329853, 51.424519943000035 ], [ -121.211356748999933, 51.424272447000064 ], [ -121.211020258999923, 51.424258236000114 ], [ -121.211172376999968, 51.422858538000135 ], [ -121.211191624, 51.42268143200004 ], [ -121.211391301999953, 51.422582102000042 ], [ -121.211840598999956, 51.422463891000021 ], [ -121.21332859099995, 51.422297201000077 ], [ -121.215145416000013, 51.421838591000103 ], [ -121.216729607000019, 51.421395698000055 ], [ -121.220004015999976, 51.421166407000079 ], [ -121.220920494999945, 51.420910088000035 ], [ -121.22149541099995, 51.420532586000078 ], [ -121.221301395999944, 51.419594115000038 ], [ -121.22140331899999, 51.419389758000079 ], [ -121.223216755999943, 51.419466179000075 ], [ -121.223267431999943, 51.418998656000092 ], [ -121.223455309999949, 51.418980303000041 ], [ -121.225889405999965, 51.418890499000028 ], [ -121.227140401999975, 51.418504594000062 ], [ -121.230012699999975, 51.417900706000069 ], [ -121.232126026999964, 51.41714160400003 ], [ -121.233533207, 51.416856792000068 ], [ -121.234014604999956, 51.416692986000029 ], [ -121.23502991, 51.416060597000055 ], [ -121.235783901999923, 51.415928193000077 ], [ -121.236569711999948, 51.415688888 ], [ -121.237758305999947, 51.415032306000057 ], [ -121.238694507, 51.414246196000086 ], [ -121.23906571, 51.413585296000051 ], [ -121.239365011999951, 51.413276289000066 ], [ -121.240041122999941, 51.412925906000083 ], [ -121.24112549199999, 51.412753608000102 ], [ -121.24159051299992, 51.412606905000153 ], [ -121.24209401499995, 51.412246594000109 ], [ -121.242221185999981, 51.411943200000046 ], [ -121.242115195999986, 51.411689692000053 ], [ -121.241336131999972, 51.411264543000073 ], [ -121.243348006999938, 51.411348985000124 ], [ -121.243295876999952, 51.41183205300004 ], [ -121.242961416999918, 51.414931075 ], [ -121.241988988999978, 51.414890265000025 ], [ -121.241916308999961, 51.415563498000068 ], [ -121.241329604999947, 51.41553887200007 ], [ -121.241240728999941, 51.416362012000015 ], [ -121.240054761999943, 51.416312223000034 ], [ -121.239954725999965, 51.417238442000034 ], [ -121.239141689999911, 51.417204301000062 ], [ -121.239105407999944, 51.417540161000012 ], [ -121.238531821999942, 51.417516072000112 ], [ -121.238388254999933, 51.418844875000048 ], [ -121.237670664999925, 51.418814734000094 ], [ -121.237641037999964, 51.419088893000037 ], [ -121.236975234999974, 51.419060923000139 ], [ -121.236945221999946, 51.419338608000025 ], [ -121.235897417999951, 51.419294583000074 ], [ -121.235868289999985, 51.419564033000064 ], [ -121.234813507999945, 51.419519705000063 ], [ -121.234759868999959, 51.42001575900013 ], [ -121.230490193999941, 51.419836221000068 ], [ -121.230349846999928, 51.421132960000094 ], [ -121.228814830999937, 51.421068374000029 ], [ -121.228766300999951, 51.421516596000103 ], [ -121.224974806999938, 51.421356979000045 ], [ -121.224782626999968, 51.423130488000076 ], [ -121.221439776999929, 51.422989652000098 ], [ -121.2213462199999, 51.42385236700008 ], [ -121.220708857999909, 51.423825504000057 ], [ -121.220641026999914, 51.424450883000105 ], [ -121.219024962999924, 51.424382752000071 ], [ -121.218774282999959, 51.426693023000084 ], [ -121.217230536999921, 51.426627919000062 ], [ -121.217217018999932, 51.426752460000081 ], [ -121.211470819999974, 51.426509944000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024633", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "115", "sL_BldgLoss": "115", "sL_StrLoss": "115", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002483791B5D495EC05EFB9F4F26C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.143454885, 51.542085415 ], [ -121.143493713999959, 51.541734110000036 ], [ -121.143004294999969, 51.541713203000022 ], [ -121.14340013099995, 51.538131908000061 ], [ -121.149160525999932, 51.538377841000035 ], [ -121.149121744999931, 51.538729149000069 ], [ -121.149611133999912, 51.538750029000049 ], [ -121.149215796999897, 51.5423313430001 ], [ -121.143454885, 51.542085415 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024634", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "221.8", "sL_BldgLoss": "221.8", "sL_StrLoss": "221.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FB3F03C14E465EC04915A49DC3BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.10016128, 51.472374885000121 ], [ -121.10240679099995, 51.47247179700004 ], [ -121.10200821200003, 51.476053180000072 ], [ -121.100594762, 51.475992184000049 ], [ -121.100458517, 51.477215913000116 ], [ -121.094706389999956, 51.476967503000083 ], [ -121.094927455999979, 51.474984216000074 ], [ -121.095105568999912, 51.47338614900012 ], [ -121.096518929, 51.473447213000028 ], [ -121.096655271999921, 51.472223484000061 ], [ -121.10016128, 51.472374885000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024635", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "198", "sL_BldgLoss": "198", "sL_StrLoss": "198", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C6662E0D4F4E5EC05CC0159AB5B64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.220896019999913, 51.425505021000042 ], [ -121.226642137999931, 51.425747061000052 ], [ -121.22625406799996, 51.429329041000052 ], [ -121.220507482999963, 51.429086983000062 ], [ -121.220896019999913, 51.425505021000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024636", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "187.5", "sL_BldgLoss": "187.5", "sL_StrLoss": "187.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A57376191B465EC0964627A6E6BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.09272821699993, 51.466061380000028 ], [ -121.098478909000022, 51.466309893000044 ], [ -121.098080067999945, 51.469891284000063 ], [ -121.09232891, 51.46964275200002 ], [ -121.09272821699993, 51.466061380000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024637", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "279", "sL_BldgLoss": "279", "sL_StrLoss": "279", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000186BEA023F485EC0D1A79F8122C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.12849340599999, 51.550057838000093 ], [ -121.128563117999988, 51.549429190000104 ], [ -121.128539966999966, 51.549428199000062 ], [ -121.128525836999955, 51.549555618000092 ], [ -121.127182415999968, 51.549498059000101 ], [ -121.126082464999968, 51.549015553000068 ], [ -121.125054132999963, 51.548581742000074 ], [ -121.124516017999952, 51.548354706000048 ], [ -121.123714967999888, 51.548111420000083 ], [ -121.123526177999921, 51.548054103000062 ], [ -121.122916231999966, 51.547938247000033 ], [ -121.12316164799995, 51.545727446000043 ], [ -121.124183966999922, 51.545771289000122 ], [ -121.124198107999959, 51.54564387100001 ], [ -121.12995937699999, 51.545890772000114 ], [ -121.129801383999947, 51.547316064000057 ], [ -121.135505484999968, 51.547560225000055 ], [ -121.135318864999988, 51.549245602000042 ], [ -121.134897401999922, 51.54929317400007 ], [ -121.134029846999951, 51.549481853000032 ], [ -121.132207566, 51.550039151000107 ], [ -121.131733359999942, 51.550184160000157 ], [ -121.131243570999914, 51.550293576000065 ], [ -121.130697787999935, 51.550360212000058 ], [ -121.130581612999933, 51.550360787000123 ], [ -121.13045144199998, 51.550361438000024 ], [ -121.13043443, 51.550361515000127 ], [ -121.130038889999952, 51.550363509000135 ], [ -121.129874875999974, 51.550349304000108 ], [ -121.129504184, 51.550317183000082 ], [ -121.12898729199999, 51.550214996000115 ], [ -121.12849340599999, 51.550057838000093 ] ], [ [ -121.131162605999975, 51.54892938600009 ], [ -121.130851510999932, 51.548779798000048 ], [ -121.130747512999932, 51.549219896000089 ], [ -121.130386512999934, 51.549214201000062 ], [ -121.130673207999919, 51.549622994000082 ], [ -121.130466822999978, 51.549726902000074 ], [ -121.130233206999918, 51.549768189000119 ], [ -121.13043189199999, 51.549843700000068 ], [ -121.130976397999945, 51.549960487000035 ], [ -121.131196905999957, 51.549496192000092 ], [ -121.131159605999983, 51.549360899000092 ], [ -121.131262198999977, 51.54929969900013 ], [ -121.131114909999923, 51.549036186000109 ], [ -121.131162605999975, 51.54892938600009 ] ], [ [ -121.129539901999919, 51.548741398000111 ], [ -121.129759984999936, 51.548637394000082 ], [ -121.129736321999957, 51.548556200000036 ], [ -121.129135600999959, 51.548421004000076 ], [ -121.129017913999974, 51.548472200000063 ], [ -121.129324905999979, 51.54872001000011 ], [ -121.129389708999938, 51.548900889000087 ], [ -121.129547177999939, 51.548930796 ], [ -121.129579710999934, 51.548859601000018 ], [ -121.129539901999919, 51.548741398000111 ] ], [ [ -121.129647695999893, 51.548257211000077 ], [ -121.129326086999981, 51.547965213000055 ], [ -121.128908794999958, 51.547949491000111 ], [ -121.128547807999894, 51.547943789000037 ], [ -121.128385092999949, 51.548076315000181 ], [ -121.128842097999964, 51.548181697000039 ], [ -121.129109200999949, 51.548356910000045 ], [ -121.129647695999893, 51.548257211000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024639", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "161.3", "sL_BldgLoss": "161.3", "sL_StrLoss": "161.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000618CE5E91E3E5EC03804D891B4C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.967963215999958, 51.519217746000074 ], [ -120.973720137999976, 51.519472557000071 ], [ -120.973310667999954, 51.523053318000116 ], [ -120.967553281000022, 51.522798486000035 ], [ -120.967963215999958, 51.519217746000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024640", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "182.4", "sL_BldgLoss": "182.4", "sL_StrLoss": "182.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008E9AA721C74A5EC0BC2429449BC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.165721384999983, 51.526262712000104 ], [ -121.17148034899995, 51.526507518000074 ], [ -121.171086900999967, 51.530088951000025 ], [ -121.165407954999964, 51.529847550000063 ], [ -121.165327469999951, 51.529844127000075 ], [ -121.165355177999942, 51.529592226000041 ], [ -121.165721384999983, 51.526262712000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024642", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "182.3", "sL_BldgLoss": "182.3", "sL_StrLoss": "182.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000013030BFD9F4A5EC035FD86476AC64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.164182418999985, 51.551726051000088 ], [ -121.163617046999889, 51.551262928000071 ], [ -121.163156211999933, 51.550885419000068 ], [ -121.16286013899996, 51.550718653000118 ], [ -121.162665607999898, 51.550609091000105 ], [ -121.16197014799998, 51.550366305000082 ], [ -121.161531987999965, 51.550283357000026 ], [ -121.161905192999953, 51.546894561000087 ], [ -121.16535994799996, 51.54704149800007 ], [ -121.165357095999966, 51.547238896000096 ], [ -121.165451294999983, 51.548480789000074 ], [ -121.165225318999916, 51.548711501000085 ], [ -121.164691902999948, 51.548740002000081 ], [ -121.164074488999972, 51.548999203000079 ], [ -121.16323138599995, 51.54914870000006 ], [ -121.163153704999942, 51.549272601000077 ], [ -121.163810525999949, 51.549480605000042 ], [ -121.164489190999959, 51.549437812000129 ], [ -121.165208493999913, 51.54983519200006 ], [ -121.166248603999975, 51.550903304000123 ], [ -121.166543614999981, 51.551069990000066 ], [ -121.166767302999958, 51.551613995000096 ], [ -121.167148180999931, 51.551844701000114 ], [ -121.167464207999942, 51.551848999000043 ], [ -121.167754192999951, 51.551494405000085 ], [ -121.16794280199997, 51.551443112000079 ], [ -121.168376497999972, 51.551035805000019 ], [ -121.169668504999933, 51.550157092000113 ], [ -121.17098529, 51.550033200000044 ], [ -121.171526510999954, 51.54985368500013 ], [ -121.172759399999904, 51.549897504000057 ], [ -121.172634583999965, 51.551033405000091 ], [ -121.172626548, 51.551035958000071 ], [ -121.169500674999966, 51.552257904000072 ], [ -121.168970981999962, 51.552428796000051 ], [ -121.16823070099997, 51.552579952000031 ], [ -121.167397995, 51.552649811000059 ], [ -121.167269446999967, 51.552643405000019 ], [ -121.167083969000018, 51.552634158000103 ], [ -121.166661024999897, 51.552613085000083 ], [ -121.166531315000015, 51.552593441000035 ], [ -121.165959194999985, 51.552506810000061 ], [ -121.16535299099999, 51.552333510000075 ], [ -121.164666325999988, 51.552023662000117 ], [ -121.164182418999985, 51.551726051000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024643", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "211.7", "sL_BldgLoss": "211.7", "sL_StrLoss": "211.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BF697DD53515EC0193D128A88C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.267633325999952, 51.551877213000132 ], [ -121.267067630999961, 51.55184919700006 ], [ -121.266650226999957, 51.55187340800007 ], [ -121.267009524999978, 51.548538343000097 ], [ -121.272771962999954, 51.5487780180001 ], [ -121.272597830999956, 51.550396370000087 ], [ -121.273900037999937, 51.550450492000088 ], [ -121.273868459999946, 51.550744034000033 ], [ -121.274473536999906, 51.550769176000124 ], [ -121.274088255999942, 51.554350876000065 ], [ -121.272938358, 51.554303093000087 ], [ -121.272169560999913, 51.553807174000127 ], [ -121.270561059999935, 51.552769508000047 ], [ -121.269946095999984, 51.55237277600007 ], [ -121.26937087, 51.552137488000049 ], [ -121.26883042799993, 51.552028757000095 ], [ -121.268576237999966, 51.551977621000098 ], [ -121.267817200999943, 51.551896800000122 ], [ -121.267633325999952, 51.551877213000132 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024646", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "214.8", "sL_BldgLoss": "214.8", "sL_StrLoss": "214.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007AAB4B197A505EC0D1EF56F121C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.254766042999933, 51.522562305000086 ], [ -121.260525015000013, 51.522802606000127 ], [ -121.260138842999964, 51.526384357000069 ], [ -121.254379405999941, 51.526144037000066 ], [ -121.254766042999933, 51.522562305000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024648", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434584", "BldgCostT": "3058334", "sL_LossRatio": "0.999996293131002", "sL_AssetLoss": "561.12045", "sL_BldgLoss": "561.11837", "sL_StrLoss": "561.1", "sL_NStrLoss": "0.01837", "sL_ContLoss": "0.00208", "geom_point": "0101000020E610000075CA9BAA184F5EC0E5032B1C7BBF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.233981406999987, 51.499262031000079 ], [ -121.234017480999967, 51.498929090000033 ], [ -121.233315007999977, 51.498899614000059 ], [ -121.233340092999967, 51.498668128000062 ], [ -121.232607798999979, 51.498637394000106 ], [ -121.232636335999985, 51.498374096000077 ], [ -121.23184489099998, 51.498340875000089 ], [ -121.232233116000018, 51.494759122000076 ], [ -121.23225028399996, 51.494759842000107 ], [ -121.232366975999952, 51.493683123000054 ], [ -121.232513972999953, 51.493689293000045 ], [ -121.232683855999966, 51.492121627000131 ], [ -121.23843872899999, 51.492363053000119 ], [ -121.238405643999982, 51.492668735000038 ], [ -121.239412116, 51.492710928000044 ], [ -121.239378172999963, 51.493024607000038 ], [ -121.23924480399991, 51.493111799000118 ], [ -121.238168796999929, 51.493382398000023 ], [ -121.238004092999958, 51.493514806000086 ], [ -121.237952609999965, 51.49375689900004 ], [ -121.238125912999934, 51.494093097000118 ], [ -121.239013417999928, 51.494627098000102 ], [ -121.239181833999922, 51.494838897000108 ], [ -121.239105476999939, 51.495544437000021 ], [ -121.239458412999966, 51.495559231000072 ], [ -121.239422382, 51.495892174000033 ], [ -121.24012481199999, 51.495921613000107 ], [ -121.239737218999934, 51.49950338900004 ], [ -121.233981406999987, 51.499262031000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024652", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "171.7", "sL_BldgLoss": "171.7", "sL_StrLoss": "171.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC3E377601435EC00072C28451C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.044286526999926, 51.531821763000032 ], [ -121.050045536999946, 51.532072710000101 ], [ -121.049642158999958, 51.535653699000058 ], [ -121.043882683, 51.535402733000133 ], [ -121.044286526999926, 51.531821763000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024653", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "62.1", "sL_BldgLoss": "62.1", "sL_StrLoss": "62.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000050B0F7C9AE515EC0B72D04181AC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.273575314999931, 51.554713954000114 ], [ -121.27787206, 51.554892420000058 ], [ -121.277728864999943, 51.556731878000072 ], [ -121.276353514999968, 51.556228683000079 ], [ -121.275522828999911, 51.55587255800004 ], [ -121.275354619999916, 51.555800447000095 ], [ -121.274655546999909, 51.555410730000048 ], [ -121.273941129999955, 51.554949912000055 ], [ -121.273575314999931, 51.554713954000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024654", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3724083", "BldgCostT": "2568333", "sL_LossRatio": "1", "sL_AssetLoss": "332", "sL_BldgLoss": "332", "sL_StrLoss": "332", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADA966B504495EC0A8E717045AC24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.138330493999916, 51.522038109000022 ], [ -121.138687857999969, 51.518806520000069 ], [ -121.138493825999973, 51.518798219000097 ], [ -121.13852210899995, 51.518542439000043 ], [ -121.136543375999949, 51.518457767000029 ], [ -121.13692892, 51.514972325000038 ], [ -121.136939528999989, 51.51487641300011 ], [ -121.142696843999929, 51.51512267700015 ], [ -121.142668586999946, 51.515378460000079 ], [ -121.144647193999987, 51.515463025000024 ], [ -121.144290291999965, 51.518694643000025 ], [ -121.144484326999972, 51.518702934 ], [ -121.144150799999977, 51.521722593000106 ], [ -121.144088752999963, 51.522284302000088 ], [ -121.138330493999916, 51.522038109000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024655", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "35049584", "BldgCostT": "23908334", "sL_LossRatio": "0.999976332790716", "sL_AssetLoss": "4436.518", "sL_BldgLoss": "4436.413", "sL_StrLoss": "4436", "sL_NStrLoss": "0.413", "sL_ContLoss": "0.105", "geom_point": "0101000020E6100000C28D2121C6475EC03FED8DADA9B94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.118054381999954, 51.46534105500006 ], [ -121.118077114999906, 51.465136083000104 ], [ -121.116290335999935, 51.465059207000124 ], [ -121.116300648999967, 51.46496624400006 ], [ -121.116451589999926, 51.463605719000093 ], [ -121.112321551999983, 51.46342791600005 ], [ -121.112639791, 51.463192001000095 ], [ -121.112867390999952, 51.462556808000052 ], [ -121.11370919499997, 51.462066905000029 ], [ -121.115064981999964, 51.461297796000082 ], [ -121.115728272999917, 51.461280695000063 ], [ -121.115782897999935, 51.461363312000039 ], [ -121.11602570299999, 51.461411707000089 ], [ -121.116786314999914, 51.461478695000061 ], [ -121.117758789999954, 51.461250793000055 ], [ -121.119286795999983, 51.46120381500004 ], [ -121.119845100999981, 51.460960313000065 ], [ -121.120231077999975, 51.460652597000077 ], [ -121.120109374999942, 51.459778193000012 ], [ -121.120212583999887, 51.459329502000017 ], [ -121.120554002999981, 51.459110195000044 ], [ -121.122341490999929, 51.458321191000053 ], [ -121.124718614999949, 51.456919807000112 ], [ -121.125097688000011, 51.456431309000052 ], [ -121.126739616999956, 51.454991405000129 ], [ -121.12677522199999, 51.454857498000059 ], [ -121.126858598999902, 51.454193787000065 ], [ -121.127281908999947, 51.453346399000061 ], [ -121.128149175999965, 51.452900699000018 ], [ -121.128557082999947, 51.452422096000106 ], [ -121.129216597999928, 51.452144412000067 ], [ -121.130052005999971, 51.452121590000054 ], [ -121.130578598999989, 51.452292485000072 ], [ -121.131238718999967, 51.452671397000103 ], [ -121.132506902999936, 51.452647107000146 ], [ -121.13304720499994, 51.452780989000118 ], [ -121.133768805999964, 51.453098611000065 ], [ -121.134673509999985, 51.453185491000063 ], [ -121.135153889999984, 51.453057293000086 ], [ -121.135768997999918, 51.452752507000092 ], [ -121.13636320699996, 51.452645697000079 ], [ -121.137197283, 51.452362292000018 ], [ -121.138119308999961, 51.451953494000058 ], [ -121.138182690999912, 51.451802613000055 ], [ -121.137883391999978, 51.451761311000084 ], [ -121.136786582999932, 51.452184302000035 ], [ -121.134948782999942, 51.452739698000059 ], [ -121.134458580999976, 51.452758195000065 ], [ -121.133657789999972, 51.452332405000092 ], [ -121.132573286999943, 51.451343992000105 ], [ -121.129830488999986, 51.45085979100002 ], [ -121.128876608999974, 51.45061911000009 ], [ -121.127005522000019, 51.450589204000082 ], [ -121.126322403999964, 51.450794205000058 ], [ -121.12569509799998, 51.451342593000049 ], [ -121.125326123999969, 51.451533405000049 ], [ -121.123035595999951, 51.451596098000081 ], [ -121.121157008999944, 51.451809696000097 ], [ -121.119936592, 51.451735598000035 ], [ -121.119599187999981, 51.451873791000082 ], [ -121.119134500999962, 51.452298196000044 ], [ -121.118781909999939, 51.452471990000056 ], [ -121.118264618999959, 51.452473405000035 ], [ -121.117578297999927, 51.452363688000027 ], [ -121.116694393, 51.452510407000076 ], [ -121.116087917999963, 51.452906297000034 ], [ -121.11606671199992, 51.453075803000075 ], [ -121.116092085999981, 51.453490292 ], [ -121.116750679999939, 51.453933196000094 ], [ -121.116796283999918, 51.454220895000049 ], [ -121.116640094000019, 51.454505695000123 ], [ -121.117273403999917, 51.455244912000055 ], [ -121.117275815999946, 51.455524005000029 ], [ -121.1166407799999, 51.455576694000058 ], [ -121.114759196999927, 51.456526690000018 ], [ -121.114524410999977, 51.456603610000101 ], [ -121.11342900399994, 51.456666293000104 ], [ -121.112840385999931, 51.456871431000081 ], [ -121.112424460999961, 51.456853516000052 ], [ -121.112654933999963, 51.454777335000102 ], [ -121.112297002, 51.454761916000088 ], [ -121.112694552999983, 51.451180421000068 ], [ -121.113458259999945, 51.4512133180001 ], [ -121.113515830999944, 51.449816881000075 ], [ -121.113947319999937, 51.449823825000159 ], [ -121.113958431999961, 51.44955421700007 ], [ -121.114389917999929, 51.449561159000062 ], [ -121.11441213699996, 51.449021943000027 ], [ -121.115275100999924, 51.449035823000052 ], [ -121.115286204999961, 51.448766216000116 ], [ -121.115584477999903, 51.448771011000112 ], [ -121.115720041999978, 51.447548785000031 ], [ -121.11662999399995, 51.447587960000099 ], [ -121.116636124999957, 51.447438981000047 ], [ -121.117067591999927, 51.447445913000116 ], [ -121.117089776999975, 51.446906696000042 ], [ -121.116658314999981, 51.446899764000072 ], [ -121.116662809999951, 51.446790513000082 ], [ -121.115280775999906, 51.446731010000029 ], [ -121.115288228999987, 51.446663818000076 ], [ -121.110598616999965, 51.446461784000107 ], [ -121.110604442999943, 51.446409307000046 ], [ -121.109761290999984, 51.446372962000069 ], [ -121.109806125999938, 51.445969211000069 ], [ -121.109807259999968, 51.44595899100009 ], [ -121.107593843999908, 51.445863550000126 ], [ -121.107472139999956, 51.445858301000079 ], [ -121.107474192, 51.445839837000037 ], [ -121.107597574999943, 51.444729213000052 ], [ -121.107212311999916, 51.444712595000119 ], [ -121.107231863000024, 51.44453661000005 ], [ -121.106695091999967, 51.444513456000031 ], [ -121.106687605999937, 51.444580827000046 ], [ -121.106823947999928, 51.444583030000075 ], [ -121.106812794999882, 51.444852637000082 ], [ -121.107244234999953, 51.444859605000069 ], [ -121.107210785999982, 51.445668427000093 ], [ -121.107068007999914, 51.445666120000098 ], [ -121.105916441999938, 51.445647516000029 ], [ -121.105922564999943, 51.445499565000063 ], [ -121.105211833999974, 51.445468899000062 ], [ -121.105174813999895, 51.445801963000065 ], [ -121.099426756999918, 51.445553783000101 ], [ -121.099574615999956, 51.444225025000023 ], [ -121.098925332999926, 51.444196972000036 ], [ -121.09893348699994, 51.444123707000095 ], [ -121.098154611999973, 51.444090051000074 ], [ -121.098192609999955, 51.443748653000029 ], [ -121.097412075999941, 51.443714920000041 ], [ -121.097215149999926, 51.445483851000041 ], [ -121.091467179999981, 51.445235268 ], [ -121.091816334, 51.44210248800016 ], [ -121.089469729999962, 51.442000920000076 ], [ -121.089780718999975, 51.439211514000093 ], [ -121.089811397999952, 51.439323714000089 ], [ -121.090115195999928, 51.439598512000089 ], [ -121.090312582, 51.439691104000062 ], [ -121.091430093999918, 51.439817910000102 ], [ -121.092773897999948, 51.440379007000146 ], [ -121.093658183999977, 51.441256299000052 ], [ -121.09407771299999, 51.441569598000115 ], [ -121.094685499999969, 51.442488296000121 ], [ -121.095106021999939, 51.442791606000078 ], [ -121.09544698099999, 51.443245899000068 ], [ -121.095755497999932, 51.443413998000032 ], [ -121.096184691999966, 51.44350089700005 ], [ -121.097611197999981, 51.44347100700007 ], [ -121.098053294999914, 51.443522200000096 ], [ -121.09813150799999, 51.443398311000074 ], [ -121.097773680999964, 51.442978198000041 ], [ -121.097700808999974, 51.442662010000056 ], [ -121.097793901999964, 51.442519586000053 ], [ -121.098677199999898, 51.442049595000064 ], [ -121.099402590999915, 51.441215010000079 ], [ -121.100531015999962, 51.441027007000116 ], [ -121.102003022999952, 51.441616601000106 ], [ -121.102446393999941, 51.441714898000022 ], [ -121.10434580699993, 51.441717797000095 ], [ -121.105463489, 51.4418075130001 ], [ -121.106553614999925, 51.441934191000065 ], [ -121.107609692999972, 51.442122214000094 ], [ -121.108618823999976, 51.442398502000032 ], [ -121.109637500999938, 51.442522400000065 ], [ -121.11125400899995, 51.443062208000107 ], [ -121.11228229699995, 51.443267299000112 ], [ -121.11268288399998, 51.443651802000055 ], [ -121.113009798999926, 51.443782897000055 ], [ -121.113466600999942, 51.443861192000021 ], [ -121.114119505999938, 51.443718808000028 ], [ -121.115289686000025, 51.443980807000095 ], [ -121.115579310999976, 51.443940897000076 ], [ -121.115899088999981, 51.443838400000097 ], [ -121.116357688, 51.443872590000069 ], [ -121.117302101999968, 51.44436389000002 ], [ -121.117675684999966, 51.444415194000065 ], [ -121.118457990999957, 51.44427418700009 ], [ -121.119770187999947, 51.444178789000055 ], [ -121.125051403999976, 51.444227193000096 ], [ -121.126180397, 51.444074800000095 ], [ -121.127347507999971, 51.444030697000073 ], [ -121.128128589999918, 51.443908198000067 ], [ -121.131057891999944, 51.442992390000036 ], [ -121.133395014999962, 51.442516690000033 ], [ -121.135302976999981, 51.441945598000125 ], [ -121.13841579399994, 51.441841699000101 ], [ -121.138879672999963, 51.441767595000101 ], [ -121.139716727999954, 51.441463760000012 ], [ -121.139634775, 51.442206401000099 ], [ -121.139330445999946, 51.444963961000042 ], [ -121.137315669, 51.444877611000088 ], [ -121.137264778999949, 51.445338508000091 ], [ -121.136641689999934, 51.445311796000034 ], [ -121.136620460999936, 51.445504023000069 ], [ -121.135771351999921, 51.445467616000023 ], [ -121.135747634000012, 51.445682343000044 ], [ -121.134886117999883, 51.445645398000096 ], [ -121.134859707999965, 51.445884464000066 ], [ -121.132563494999928, 51.445785960000066 ], [ -121.132497935999965, 51.446379118000053 ], [ -121.131342118999953, 51.446329518000049 ], [ -121.131300602999929, 51.446705045000058 ], [ -121.130206399999963, 51.446658079000038 ], [ -121.130178367999989, 51.446911572000033 ], [ -121.128737428999926, 51.446849705000034 ], [ -121.128696920999971, 51.447215906000046 ], [ -121.124424335999919, 51.447032355000054 ], [ -121.124402565999901, 51.447563520000109 ], [ -121.122676685, 51.447535889000086 ], [ -121.122709863999916, 51.446727061000075 ], [ -121.122974862999953, 51.446731305000078 ], [ -121.122978858999929, 51.446695224000045 ], [ -121.121184605999986, 51.446618070000042 ], [ -121.121248984999951, 51.446036947000096 ], [ -121.12113392399999, 51.446031998000073 ], [ -121.12102907499991, 51.446978387000108 ], [ -121.118386746999931, 51.446864711000067 ], [ -121.118384165999942, 51.446927483000138 ], [ -121.118815628999968, 51.44693440900005 ], [ -121.118784950999938, 51.447680705000074 ], [ -121.121468448999948, 51.447796140000086 ], [ -121.121435748999914, 51.44809132200006 ], [ -121.122016674999969, 51.448116304000088 ], [ -121.122036544999929, 51.447936934000069 ], [ -121.127785037999914, 51.448183970000045 ], [ -121.127775488999958, 51.448270278000102 ], [ -121.12777651399999, 51.448270322000035 ], [ -121.127843808999955, 51.447662071000089 ], [ -121.133592299999975, 51.447908813000048 ], [ -121.133584876999933, 51.447975986000081 ], [ -121.134978855999975, 51.448035775000029 ], [ -121.134906556999965, 51.448690193000061 ], [ -121.136360840999913, 51.448752551000013 ], [ -121.13639758, 51.449003996000066 ], [ -121.136632207999938, 51.449223291000074 ], [ -121.136717986999926, 51.449233303000021 ], [ -121.13673839399999, 51.449135001000045 ], [ -121.136733755999941, 51.448943166000021 ], [ -121.137487635999932, 51.448975481000019 ], [ -121.137894012999965, 51.448992898000036 ], [ -121.137866111999983, 51.449245600000019 ], [ -121.139316680999983, 51.44930775900017 ], [ -121.139285191999946, 51.449593036000053 ], [ -121.141138136999942, 51.449672411000073 ], [ -121.141060868999972, 51.450372674000029 ], [ -121.142672133999952, 51.450441671000071 ], [ -121.14227702499997, 51.4540232740001 ], [ -121.142044874999968, 51.454013334000095 ], [ -121.14201293, 51.454302879000117 ], [ -121.141859957999927, 51.454296330000091 ], [ -121.141821840999924, 51.45464178300012 ], [ -121.137937421999965, 51.45447539500006 ], [ -121.137935445999943, 51.454523941000055 ], [ -121.137503907999985, 51.454517084000059 ], [ -121.137492931999958, 51.45478669600007 ], [ -121.137061389999943, 51.454779838000057 ], [ -121.13703943299997, 51.455319060000122 ], [ -121.136607885999979, 51.455312200000073 ], [ -121.136596906999941, 51.455581812000084 ], [ -121.13702845499995, 51.455588672000033 ], [ -121.137017475999968, 51.455858282000101 ], [ -121.13744902799999, 51.455865140000078 ], [ -121.137416098999964, 51.456673974000054 ], [ -121.135689861999978, 51.456646532000036 ], [ -121.135700849999921, 51.456376921000043 ], [ -121.135269291999975, 51.456370056000026 ], [ -121.135280280999908, 51.456100445000047 ], [ -121.134848726999948, 51.456093579000033 ], [ -121.134859718999934, 51.455823968000097 ], [ -121.134428168999975, 51.455817101000058 ], [ -121.134417173999935, 51.456086711000061 ], [ -121.132690961999955, 51.456059225000089 ], [ -121.132679958, 51.456328834000026 ], [ -121.132248402999892, 51.456321959000093 ], [ -121.132237395999965, 51.4565915700001 ], [ -121.131805837999963, 51.456584692000057 ], [ -121.131794828999972, 51.456854303000078 ], [ -121.131677708999973, 51.456852436000091 ], [ -121.131452548999903, 51.458888618000074 ], [ -121.129322408999911, 51.45879720500006 ], [ -121.127877690999924, 51.458735182000055 ], [ -121.127875586999934, 51.458754203000098 ], [ -121.12735464599993, 51.458731835000037 ], [ -121.127311084999974, 51.459125417000045 ], [ -121.126712569999981, 51.459099713000072 ], [ -121.126668476999896, 51.459498031000052 ], [ -121.125840749, 51.459462480000063 ], [ -121.12577937199994, 51.460016850000088 ], [ -121.125097599999961, 51.459987563000034 ], [ -121.125049363999949, 51.460423167000087 ], [ -121.124283781999964, 51.460390275000044 ], [ -121.124251629999932, 51.460680577000083 ], [ -121.125059014999977, 51.460715264000051 ], [ -121.125024235999973, 51.461029338000102 ], [ -121.125187731999958, 51.461036361000026 ], [ -121.125020648999921, 51.462545192000071 ], [ -121.124791107999968, 51.46461786600004 ], [ -121.123916781999966, 51.464580302000051 ], [ -121.123805122999968, 51.465588287000074 ], [ -121.12242217699999, 51.465528859000123 ], [ -121.118054381999954, 51.46534105500006 ] ], [ [ -121.131849876999951, 51.455506251000081 ], [ -121.131860883999934, 51.455236640000088 ], [ -121.132292428999932, 51.45524351800006 ], [ -121.132302811999949, 51.454989160000075 ], [ -121.130788973000023, 51.45492420500004 ], [ -121.130780983999955, 51.454996442000066 ], [ -121.130512876999944, 51.454984936000081 ], [ -121.130483726999969, 51.45524850300005 ], [ -121.131848580999986, 51.455307071000043 ], [ -121.131826598999936, 51.455505879000064 ], [ -121.131849876999951, 51.455506251000081 ] ], [ [ -121.135777750999964, 51.454489644000034 ], [ -121.13578873699997, 51.454220033000048 ], [ -121.135758322999948, 51.454219549000094 ], [ -121.135728569999955, 51.454488862000069 ], [ -121.135777750999964, 51.454489644000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024656", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "220.2", "sL_BldgLoss": "220.2", "sL_StrLoss": "220.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AFF068C2BA465EC0227AE78AB1BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.10398354199999, 51.492289281000048 ], [ -121.103998501999925, 51.491928752000049 ], [ -121.100886686999957, 51.491794546000044 ], [ -121.101285499999932, 51.488213222000049 ], [ -121.102454716999958, 51.488263658000108 ], [ -121.102459815999907, 51.488217849000065 ], [ -121.101560247999942, 51.488203288000072 ], [ -121.101593847999965, 51.487394475000087 ], [ -121.102549751999973, 51.487409949000082 ], [ -121.102555997999971, 51.487353851000108 ], [ -121.107004044999925, 51.487545614000055 ], [ -121.108309524, 51.487601862000048 ], [ -121.108227721000034, 51.488337574000056 ], [ -121.109543031999962, 51.48839423000004 ], [ -121.109144889999953, 51.491975582000101 ], [ -121.106660150999986, 51.491868541000102 ], [ -121.106640785, 51.492042640000108 ], [ -121.105292709999944, 51.491984543000058 ], [ -121.105279205999977, 51.492310226000072 ], [ -121.104627396999916, 51.49229969 ], [ -121.10398354199999, 51.492289281000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024657", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63.7", "sL_BldgLoss": "63.7", "sL_StrLoss": "63.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059E57C90A9535EC052F0147225C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.306589398999932, 51.564453286000102 ], [ -121.306599417999976, 51.564183655000043 ], [ -121.305734185999967, 51.564171163000019 ], [ -121.305744207999936, 51.563901533 ], [ -121.305311594, 51.563895285000065 ], [ -121.305341672999958, 51.563086392000081 ], [ -121.306816972999911, 51.563107692000123 ], [ -121.30707209699996, 51.563111374000066 ], [ -121.307082111999975, 51.562841743000043 ], [ -121.308812527, 51.562866699000068 ], [ -121.308774158999952, 51.563900679000028 ], [ -121.308762501999979, 51.56421485400007 ], [ -121.308329884999964, 51.564208618000109 ], [ -121.308319874999967, 51.564478249000089 ], [ -121.306589398999932, 51.564453286000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024658", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "194.5", "sL_BldgLoss": "194.5", "sL_StrLoss": "194.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021C8832585575EC0D857472359C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.366444828999946, 51.555566031000069 ], [ -121.37057243199996, 51.555734092000101 ], [ -121.370194931999904, 51.559316097000121 ], [ -121.367381307999935, 51.559201554000076 ], [ -121.364430590000012, 51.559081353000117 ], [ -121.364808554999954, 51.555499367000081 ], [ -121.366444828999946, 51.555566031000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024660", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15841917", "BldgCostT": "10661667", "sL_LossRatio": "0.99998859649419", "sL_AssetLoss": "2043.2313", "sL_BldgLoss": "2043.208", "sL_StrLoss": "2043.1", "sL_NStrLoss": "0.108", "sL_ContLoss": "0.0233", "geom_point": "0101000020E61000000553CDAC25575EC0A830BE81ACBA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.355596597999977, 51.462245974000041 ], [ -121.35561432499999, 51.462077932000057 ], [ -121.354216862, 51.462020737000095 ], [ -121.354237039999973, 51.4618295060001 ], [ -121.353130537999959, 51.461784208000097 ], [ -121.353468044999914, 51.458586108000077 ], [ -121.347928677999974, 51.458359174000101 ], [ -121.348267268999962, 51.45515415800007 ], [ -121.348307120999905, 51.454776887 ], [ -121.349140779999914, 51.454811058000082 ], [ -121.349355796999959, 51.452775108000075 ], [ -121.355106164999967, 51.453010640000095 ], [ -121.354728288999937, 51.456592955000112 ], [ -121.353894592999936, 51.456558826000112 ], [ -121.353873631999988, 51.456757484000079 ], [ -121.353720305999929, 51.458210584000035 ], [ -121.354199607999973, 51.458230206000067 ], [ -121.354234074999923, 51.457903533000056 ], [ -121.354823187999941, 51.457927648000087 ], [ -121.358621191999958, 51.458083042000062 ], [ -121.35864248499999, 51.457881037000057 ], [ -121.360447662999945, 51.457954851000039 ], [ -121.360508433999954, 51.457378080000069 ], [ -121.364816407999967, 51.457554116000082 ], [ -121.36486826499997, 51.457061483000103 ], [ -121.367967143999977, 51.45718801000011 ], [ -121.368087088, 51.456047757000057 ], [ -121.370456995, 51.456144463000037 ], [ -121.373837981999912, 51.456282340000058 ], [ -121.373832694999976, 51.456332661000033 ], [ -121.376470693999948, 51.456440169000082 ], [ -121.37637126599995, 51.457387105000073 ], [ -121.376785047999988, 51.45740396300009 ], [ -121.376408894999926, 51.460986335000037 ], [ -121.370657372999972, 51.460751883000114 ], [ -121.370685238999926, 51.460486847000077 ], [ -121.370285524999971, 51.460470542000039 ], [ -121.370242620999946, 51.46087858000007 ], [ -121.369680668999976, 51.460855655000032 ], [ -121.365934300999967, 51.460702751000071 ], [ -121.365882451999937, 51.461195383000131 ], [ -121.364077131999963, 51.461121656000081 ], [ -121.364016401999962, 51.461698426000076 ], [ -121.363284575999941, 51.461668531000093 ], [ -121.363257383999951, 51.461926743000035 ], [ -121.362386165999965, 51.461891149000074 ], [ -121.362372449999938, 51.462021365000091 ], [ -121.361491824, 51.461985378000101 ], [ -121.361489610999939, 51.462006385000066 ], [ -121.361398649999927, 51.462002668000068 ], [ -121.361348234999966, 51.462481188000091 ], [ -121.355596597999977, 51.462245974000041 ] ], [ [ -121.374261503999975, 51.457310011000082 ], [ -121.37396228199999, 51.457243101000095 ], [ -121.3714000799999, 51.457243100000028 ], [ -121.370615105999946, 51.457448103000054 ], [ -121.370480589999943, 51.457572096000028 ], [ -121.371159893999959, 51.457492303000066 ], [ -121.371624406999928, 51.457416800000054 ], [ -121.373811787999969, 51.457412510000069 ], [ -121.374261503999975, 51.457310011000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024661", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "71886250", "BldgCostT": "50545000", "sL_LossRatio": "0.999979524648526", "sL_AssetLoss": "489.9110041", "sL_BldgLoss": "489.900973", "sL_StrLoss": "486.529803", "sL_NStrLoss": "3.37117", "sL_ContLoss": "0.0100311", "geom_point": "0101000020E610000073735C5301575EC0B384087A20C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.355992957999931, 51.536265463000156 ], [ -121.35629223399998, 51.533432911000055 ], [ -121.353763779999923, 51.533329607000027 ], [ -121.354142393999965, 51.529747566000083 ], [ -121.356272588999943, 51.52983460300004 ], [ -121.356292807, 51.529643217000036 ], [ -121.35864064499998, 51.529739099000082 ], [ -121.358724343999967, 51.528946374000078 ], [ -121.358787355999937, 51.528948946000057 ], [ -121.35882075799999, 51.528632574000028 ], [ -121.361442294999975, 51.528739576000099 ], [ -121.36442359599998, 51.528861187000075 ], [ -121.364581085999987, 51.528867609000024 ], [ -121.364524914999919, 51.529400292000133 ], [ -121.365084204999917, 51.529423097000041 ], [ -121.364706483999939, 51.533005175000014 ], [ -121.364377597, 51.53299176600008 ], [ -121.361736106999913, 51.532884029000016 ], [ -121.361734176000013, 51.532902342000042 ], [ -121.362132259999925, 51.5329185820001 ], [ -121.361754268999945, 51.536500639000032 ], [ -121.359253168999956, 51.536398580000132 ], [ -121.355992957999931, 51.536265463000156 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024662", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999968222152481", "sL_AssetLoss": "83.70611", "sL_BldgLoss": "83.70345", "sL_StrLoss": "83.7", "sL_NStrLoss": "0.00345", "sL_ContLoss": "0.00266", "geom_point": "0101000020E61000005BB4006DEB515EC0B48728ECC3B44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.279405168999972, 51.41298121500008 ], [ -121.27941529499995, 51.412711580000114 ], [ -121.278984114, 51.412705249000048 ], [ -121.279034746, 51.411357078000073 ], [ -121.28032824499995, 51.411376069000021 ], [ -121.280318125999884, 51.411645703000019 ], [ -121.280749296999943, 51.411652029000017 ], [ -121.280729063999928, 51.412191298000081 ], [ -121.281160239999963, 51.412197624000065 ], [ -121.281129897999918, 51.413006526000103 ], [ -121.279405168999972, 51.41298121500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024663", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "0.999999343992419", "sL_AssetLoss": "156.4006316", "sL_BldgLoss": "156.400529", "sL_StrLoss": "156.4", "sL_NStrLoss": "0.000529", "sL_ContLoss": "0.0001026", "geom_point": "0101000020E6100000A380A3D3295A5EC004ECDDFE60BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.406179146999975, 51.496376280000042 ], [ -121.40655318099999, 51.492793936000069 ], [ -121.409161036999976, 51.492899371000107 ], [ -121.408655401999951, 51.493104600000088 ], [ -121.408033299999957, 51.493654411000129 ], [ -121.407997493, 51.494211300000124 ], [ -121.406905610999928, 51.494995995000082 ], [ -121.406821979999989, 51.495310801000095 ], [ -121.407091697999959, 51.49544039700001 ], [ -121.407465700999978, 51.495471710000032 ], [ -121.408178508, 51.495256598000076 ], [ -121.408621411999917, 51.495324989000054 ], [ -121.408738802999935, 51.495273700000055 ], [ -121.409002809999933, 51.494359390000056 ], [ -121.409379283999968, 51.494256807000113 ], [ -121.41039960599997, 51.494765308000076 ], [ -121.412094302999961, 51.495086210000103 ], [ -121.411935505999963, 51.496608927000118 ], [ -121.406179146999975, 51.496376280000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024664", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "0.999990791917384", "sL_AssetLoss": "151.714538", "sL_BldgLoss": "151.713141", "sL_StrLoss": "151.700171", "sL_NStrLoss": "0.01297", "sL_ContLoss": "0.001397", "geom_point": "0101000020E6100000507FE641345A5EC06B3AD07D98BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.407887063999979, 51.491307635000091 ], [ -121.407903026999946, 51.491154679000047 ], [ -121.406615129999935, 51.491102601000129 ], [ -121.406989084999921, 51.487520237000076 ], [ -121.408362758999928, 51.487575784000121 ], [ -121.408391235999915, 51.487302869000068 ], [ -121.41414642399991, 51.487535406000077 ], [ -121.414082179999966, 51.488151854000122 ], [ -121.41385718399999, 51.488121297000106 ], [ -121.413301607999927, 51.488329301000121 ], [ -121.413071199999976, 51.488336403000055 ], [ -121.412514586, 51.488175496000117 ], [ -121.412035922999962, 51.488276602000056 ], [ -121.41178439399999, 51.488488804000085 ], [ -121.411763720999943, 51.488668206000042 ], [ -121.411748709999969, 51.489541283000051 ], [ -121.411459107000013, 51.489977104000076 ], [ -121.411099006999962, 51.489991292000084 ], [ -121.410615906999965, 51.489804795000026 ], [ -121.409807799999967, 51.489793395000071 ], [ -121.409502494999927, 51.489878802000064 ], [ -121.409462309999924, 51.490247698000097 ], [ -121.409875092999954, 51.490783193000041 ], [ -121.409876528000012, 51.491388053000101 ], [ -121.407887063999979, 51.491307635000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024665", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6544333", "BldgCostT": "4513333", "sL_LossRatio": "1", "sL_AssetLoss": "661", "sL_BldgLoss": "661", "sL_StrLoss": "661", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058D0CD616B575EC0959EC8175DC64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.364360369999957, 51.550599420000069 ], [ -121.364532060999949, 51.548972076000041 ], [ -121.362546681999959, 51.548891138000101 ], [ -121.360453353999958, 51.548805762000043 ], [ -121.36083155599998, 51.545223753000052 ], [ -121.362567446999918, 51.545294554000058 ], [ -121.363667839999962, 51.545339422000083 ], [ -121.366594064999958, 51.545458683000092 ], [ -121.366510996999949, 51.546246458000056 ], [ -121.366436054999951, 51.54695715700008 ], [ -121.366516721999986, 51.546958281000038 ], [ -121.366488901999958, 51.547734944000091 ], [ -121.37080417599995, 51.547910673000075 ], [ -121.370426761999951, 51.551492706000076 ], [ -121.370055796999978, 51.551477606000034 ], [ -121.369956, 51.552424615000071 ], [ -121.369573704999965, 51.552409053000105 ], [ -121.369363794999927, 51.554400626000124 ], [ -121.366110519999978, 51.554268138000033 ], [ -121.363600099999985, 51.554165839000099 ], [ -121.363978091999968, 51.550583838000058 ], [ -121.364360369999957, 51.550599420000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024666", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "135.6", "sL_BldgLoss": "135.6", "sL_StrLoss": "135.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000047EBE2158C625EC01DB2BB1FBBD04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.540693310999941, 51.63217189100002 ], [ -121.540116975999922, 51.632095388000053 ], [ -121.539889406999976, 51.632089970000031 ], [ -121.539890279999952, 51.632062799000089 ], [ -121.539023658999938, 51.632052018000124 ], [ -121.539032323999962, 51.63178236100007 ], [ -121.538599015999921, 51.6317769670001 ], [ -121.538607683999928, 51.631507309 ], [ -121.538174379999958, 51.631501915000072 ], [ -121.538183047999951, 51.631232257000057 ], [ -121.537749746999964, 51.631226860000041 ], [ -121.537801776999913, 51.629608913000041 ], [ -121.538235062, 51.629614310000115 ], [ -121.538243731999927, 51.629344651000061 ], [ -121.540843438999929, 51.629376992000118 ], [ -121.540834783999941, 51.629646649000037 ], [ -121.541268071999951, 51.629652034000109 ], [ -121.541259421999953, 51.629921692000025 ], [ -121.541692711999957, 51.629927075000083 ], [ -121.541623522999927, 51.632084342000056 ], [ -121.541190211999918, 51.632078959000125 ], [ -121.541183643999958, 51.632283652000105 ], [ -121.540693310999941, 51.63217189100002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024667", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999994824150654", "sL_AssetLoss": "73.804312", "sL_BldgLoss": "73.80393", "sL_StrLoss": "73.8", "sL_NStrLoss": "0.00393", "sL_ContLoss": "0.000382", "geom_point": "0101000020E6100000D5ED68F32A535EC07082CA53B1B04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.297169308999912, 51.379311130000055 ], [ -121.301555692999969, 51.379493160000074 ], [ -121.301409363999937, 51.380866988000037 ], [ -121.301250818999947, 51.380969499000081 ], [ -121.300083791999924, 51.381016491000103 ], [ -121.299474302999968, 51.381556288000056 ], [ -121.298832103, 51.381833991000043 ], [ -121.298601895999937, 51.381858206000068 ], [ -121.298346106999972, 51.381755692000134 ], [ -121.298099291999989, 51.381472298000105 ], [ -121.297775392999966, 51.381278589000011 ], [ -121.297836701999969, 51.380389913000052 ], [ -121.298198292000023, 51.37991851300005 ], [ -121.298153401999954, 51.379620806000041 ], [ -121.297299590999899, 51.379374414000075 ], [ -121.297169308999912, 51.379311130000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024668", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.1", "sL_BldgLoss": "52.1", "sL_StrLoss": "52.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095A37C188C595EC04B08D29CA7D24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.398492381999986, 51.646674994000058 ], [ -121.398501884999931, 51.646405356000031 ], [ -121.398068466999973, 51.646399443000035 ], [ -121.398115992999948, 51.645051245000069 ], [ -121.39854939699994, 51.645057157000075 ], [ -121.398558898999937, 51.644787517000061 ], [ -121.399859109, 51.644805245000093 ], [ -121.399849614999965, 51.645074885000078 ], [ -121.400283020999964, 51.645080791000133 ], [ -121.400235558999938, 51.646428990000075 ], [ -121.399802140999924, 51.64642308300003 ], [ -121.39979264599999, 51.646692724000083 ], [ -121.398492381999986, 51.646674994000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024669", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "108037250", "BldgCostT": "75005000", "sL_LossRatio": "1", "sL_AssetLoss": "2979", "sL_BldgLoss": "2979", "sL_StrLoss": "2979", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F7C77BD5CA535EC0B9C2D4F9E4CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.297485465999927, 51.598175209000011 ], [ -121.297585772999952, 51.597239097000021 ], [ -121.293546034999906, 51.597072179000087 ], [ -121.293580099999971, 51.59675454100006 ], [ -121.292954137999956, 51.5967286650001 ], [ -121.293014774999932, 51.596163295000032 ], [ -121.29205084499992, 51.596123440000063 ], [ -121.292435027999943, 51.592541824000094 ], [ -121.29307091599992, 51.592568117000042 ], [ -121.293128029999977, 51.592035541000016 ], [ -121.298896311999926, 51.592273884000072 ], [ -121.298843547, 51.592766511000093 ], [ -121.29977961499992, 51.592805161000101 ], [ -121.299749342999988, 51.593087852000046 ], [ -121.300231318999977, 51.59310775000003 ], [ -121.30019596699999, 51.59343789400004 ], [ -121.300783222999911, 51.593462135000046 ], [ -121.300472630999977, 51.596362818000102 ], [ -121.301593742999984, 51.596409088000051 ], [ -121.30172266199996, 51.595204849000019 ], [ -121.302196129999956, 51.595224386000091 ], [ -121.302252969999955, 51.594693361000068 ], [ -121.302731137999942, 51.594713089000031 ], [ -121.302795782999937, 51.594109073000013 ], [ -121.303197585999953, 51.594125650000137 ], [ -121.303307622999966, 51.593097383000099 ], [ -121.303433187999943, 51.593102562000077 ], [ -121.303530366999951, 51.59219438700012 ], [ -121.304668207999924, 51.592241321000131 ], [ -121.30477207099996, 51.591270414000093 ], [ -121.306506734999914, 51.591341944000114 ], [ -121.306720705000018, 51.589340857000103 ], [ -121.307221591, 51.58936150600006 ], [ -121.307325135000013, 51.588392969000132 ], [ -121.307767698999953, 51.588411212000089 ], [ -121.307817942999947, 51.587941180000058 ], [ -121.308286783999961, 51.587960504000108 ], [ -121.308335746999944, 51.587502391000079 ], [ -121.308775860999944, 51.587520529000123 ], [ -121.308809644999911, 51.58720440200004 ], [ -121.309346128999934, 51.587226510000065 ], [ -121.309384340999927, 51.586868915000103 ], [ -121.310130248999911, 51.58689964900006 ], [ -121.31016262199995, 51.586596633000106 ], [ -121.313513975, 51.586734661000023 ], [ -121.313523172999979, 51.586648511000121 ], [ -121.31489329799993, 51.586704912000087 ], [ -121.314898213999953, 51.586658844000091 ], [ -121.315560538999961, 51.586686103000012 ], [ -121.315588896999927, 51.586420361000073 ], [ -121.316119791999952, 51.586442207000047 ], [ -121.316598087, 51.586449069000111 ], [ -121.316608052999953, 51.58617943900002 ], [ -121.31704088199993, 51.586185646000068 ], [ -121.317050845999958, 51.585916015000109 ], [ -121.317483668999969, 51.585922221000068 ], [ -121.317493630999934, 51.585652590000095 ], [ -121.317868197999971, 51.585657960000098 ], [ -121.317916070999942, 51.585209113000118 ], [ -121.318048019999935, 51.585214540000095 ], [ -121.318223457999977, 51.583569518000061 ], [ -121.319733455999966, 51.583631617000037 ], [ -121.319737332999935, 51.583526544000051 ], [ -121.32017013599993, 51.583532741000056 ], [ -121.320180079999915, 51.583263108000033 ], [ -121.320612880999974, 51.583269303000066 ], [ -121.320622822999951, 51.582999671000074 ], [ -121.321122668999976, 51.583006824000101 ], [ -121.321155584999985, 51.582697985000053 ], [ -121.321580003999912, 51.582715432000043 ], [ -121.321860012999977, 51.580087697000103 ], [ -121.325993936999978, 51.580257541000023 ], [ -121.326068163999949, 51.579560295000086 ], [ -121.326810420999891, 51.579590775000021 ], [ -121.326810780999949, 51.579581001000051 ], [ -121.328541848999961, 51.579605672000085 ], [ -121.328539790999969, 51.579661771000062 ], [ -121.328757803999977, 51.579670719000021 ], [ -121.329165450999952, 51.579687450000058 ], [ -121.32940447799993, 51.57969726000006 ], [ -121.329410394, 51.579535951000082 ], [ -121.329420403999947, 51.579263001000136 ], [ -121.329437051999903, 51.578809098000079 ], [ -121.32986981099999, 51.578815258000056 ], [ -121.329879696999953, 51.578545625000032 ], [ -121.330312453999952, 51.57855178300008 ], [ -121.330322337999974, 51.578282149000124 ], [ -121.33075509299999, 51.578288307000065 ], [ -121.330764972999972, 51.57801867300001 ], [ -121.331851081999972, 51.578034118000105 ], [ -121.332267592999983, 51.578040039000037 ], [ -121.332495987999948, 51.578043284000117 ], [ -121.332466375999942, 51.578852186000063 ], [ -121.332033613999954, 51.578846035000026 ], [ -121.332023741999961, 51.579115669000061 ], [ -121.331590976999976, 51.579109517000084 ], [ -121.33156620299999, 51.579785951000147 ], [ -121.331834987000022, 51.579796975000072 ], [ -121.331454125, 51.583378768000109 ], [ -121.329150505999976, 51.583284259000102 ], [ -121.32890165099991, 51.585623124000065 ], [ -121.328376648999921, 51.585601578000038 ], [ -121.328318357999976, 51.586149337000059 ], [ -121.327536499999979, 51.586117246000093 ], [ -121.327492145999912, 51.586533955000085 ], [ -121.326824441000014, 51.586506546000116 ], [ -121.326529771999958, 51.589274374000098 ], [ -121.32552176899999, 51.589232987000088 ], [ -121.325497838999965, 51.58945769700005 ], [ -121.322736634999899, 51.589344281000059 ], [ -121.322679340999954, 51.589881963000018 ], [ -121.321020148999978, 51.589813780000028 ], [ -121.32097478899999, 51.590239303000061 ], [ -121.320312405999971, 51.590212077000146 ], [ -121.320284074, 51.590477819000036 ], [ -121.319523535999934, 51.590446552000024 ], [ -121.31949725299998, 51.590693037000129 ], [ -121.316959764999936, 51.590588682000053 ], [ -121.316917757999946, 51.590982398000044 ], [ -121.314973277999982, 51.590902391000057 ], [ -121.314819948999968, 51.592338844000025 ], [ -121.314549937999956, 51.592327732000108 ], [ -121.314458885999926, 51.593180651000054 ], [ -121.313927932999931, 51.593158798000054 ], [ -121.313840908999964, 51.59397386400012 ], [ -121.312783342999978, 51.593930329000088 ], [ -121.312512403999932, 51.596467191000059 ], [ -121.311772978, 51.59643674600008 ], [ -121.31168741399992, 51.597237709000083 ], [ -121.311264912999945, 51.597220311000036 ], [ -121.311212122999962, 51.597714420000067 ], [ -121.3105551099999, 51.597687362000038 ], [ -121.310477833, 51.598410536000088 ], [ -121.310169171, 51.598397823000028 ], [ -121.310129039999936, 51.598773343000026 ], [ -121.309303324999973, 51.598739330000079 ], [ -121.309224543999903, 51.599476363000065 ], [ -121.30864920499999, 51.599452661000079 ], [ -121.308609637999936, 51.59982277800006 ], [ -121.30785329299999, 51.599791613000107 ], [ -121.307809627999987, 51.600199996000079 ], [ -121.307219287999942, 51.60017566800007 ], [ -121.307187917999968, 51.600469010000012 ], [ -121.306213971, 51.60042886600008 ], [ -121.306156203999961, 51.600968933000097 ], [ -121.305431216999949, 51.600939045000096 ], [ -121.305391890999914, 51.601306651000066 ], [ -121.301889407999951, 51.601162195000079 ], [ -121.301802874999936, 51.601970434000094 ], [ -121.300796212999913, 51.601928895000079 ], [ -121.300633414999965, 51.603449059000113 ], [ -121.29971546199999, 51.603411174000129 ], [ -121.299614724999969, 51.604351582000064 ], [ -121.298819274999943, 51.604318746000082 ], [ -121.298749027000014, 51.604974400000053 ], [ -121.298633690999907, 51.604969639000053 ], [ -121.298547666, 51.60577250299999 ], [ -121.298216900999975, 51.605758848000072 ], [ -121.298160581999966, 51.606284412000043 ], [ -121.29667804899999, 51.606223193000048 ], [ -121.296651727, 51.606468747000058 ], [ -121.293672404999924, 51.606345662000123 ], [ -121.293598429, 51.607035319000019 ], [ -121.291530818, 51.606949853000074 ], [ -121.291503848, 51.607201168000117 ], [ -121.290957361999958, 51.607178572000102 ], [ -121.290931212999965, 51.605471623000057 ], [ -121.290538234999943, 51.604762481000137 ], [ -121.290509780999955, 51.604427363000092 ], [ -121.290263222999926, 51.601522857000084 ], [ -121.292938510999974, 51.60163347900005 ], [ -121.293154863, 51.599616455000046 ], [ -121.293388343999965, 51.599626106000123 ], [ -121.293469795999954, 51.598866661000024 ], [ -121.294553547999925, 51.598911453000042 ], [ -121.294614178999922, 51.598345987000116 ], [ -121.295094182999932, 51.598365822000069 ], [ -121.295125072999937, 51.598077699000022 ], [ -121.297485465999927, 51.598175209000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024670", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058175C18CE515EC0B149230B3DC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.27787206, 51.554892420000058 ], [ -121.278781365, 51.554930166000076 ], [ -121.27855522599998, 51.557034215000058 ], [ -121.278396397999941, 51.558511867000092 ], [ -121.277894902999932, 51.55849105 ], [ -121.277728864999943, 51.556731878000072 ], [ -121.27787206, 51.554892420000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024672", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "0.999998019275196", "sL_AssetLoss": "312.006998", "sL_BldgLoss": "312.00638", "sL_StrLoss": "312", "sL_NStrLoss": "0.00638", "sL_ContLoss": "0.000618", "geom_point": "0101000020E6100000D212F1F707535EC044AC38B44CB14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.296526403999948, 51.383923311000096 ], [ -121.297082703999976, 51.383265409000096 ], [ -121.297541709, 51.382947795000128 ], [ -121.2981713839999, 51.382993294000066 ], [ -121.299920115999925, 51.383486107000053 ], [ -121.300564678999962, 51.383550194000122 ], [ -121.301759305, 51.383531684000026 ], [ -121.302048204999949, 51.38340515900012 ], [ -121.302023196999968, 51.383639962000089 ], [ -121.301869554999925, 51.385082442000062 ], [ -121.299234699999914, 51.384973141000074 ], [ -121.29914218199994, 51.385841205000091 ], [ -121.29874641499994, 51.385824782000036 ], [ -121.29869899, 51.38626971500009 ], [ -121.298341795999988, 51.386254891000092 ], [ -121.298295697999933, 51.386687322000107 ], [ -121.297972725999927, 51.386673919000017 ], [ -121.297945196999947, 51.386932131000044 ], [ -121.29725215499991, 51.386903365000123 ], [ -121.297230275999965, 51.387108547000103 ], [ -121.293510990999977, 51.386954098000032 ], [ -121.291522418999989, 51.386871468000074 ], [ -121.292614712999978, 51.386320306000108 ], [ -121.293338492999979, 51.386187793000076 ], [ -121.293805907999939, 51.385978508000107 ], [ -121.29430412, 51.385338998000123 ], [ -121.295899287999973, 51.384165500000115 ], [ -121.296526403999948, 51.383923311000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024674", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "94076166", "BldgCostT": "65376666", "sL_LossRatio": "0.999999480107521", "sL_AssetLoss": "2481.28229", "sL_BldgLoss": "2481.281", "sL_StrLoss": "2475.471", "sL_NStrLoss": "5.81", "sL_ContLoss": "0.00129", "geom_point": "0101000020E6100000211741086D565EC0B9113723DAC84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.337148015999929, 51.581076814000077 ], [ -121.337157858999916, 51.580807179000089 ], [ -121.335859515999985, 51.580788775000059 ], [ -121.335869367999962, 51.580519140000064 ], [ -121.335436590999961, 51.580513002000053 ], [ -121.335446442999938, 51.580243367000023 ], [ -121.333715343999955, 51.580218799000143 ], [ -121.333774521999914, 51.578600994000055 ], [ -121.333341764999972, 51.578594849000098 ], [ -121.333361494999949, 51.578055581000108 ], [ -121.332928739999929, 51.578049433000025 ], [ -121.332938607999921, 51.577779800000016 ], [ -121.332697353999919, 51.577776373000098 ], [ -121.332280019999928, 51.577770442000066 ], [ -121.33207310599991, 51.577767500000064 ], [ -121.332128558, 51.576252940000082 ], [ -121.332132337999937, 51.576149697000169 ], [ -121.334296017999961, 51.576180432000108 ], [ -121.334315734999933, 51.5756411630001 ], [ -121.335682423999984, 51.575660556000031 ], [ -121.336046661999887, 51.575665722000039 ], [ -121.336055343999973, 51.575428013000064 ], [ -121.336056508999974, 51.575396087000129 ], [ -121.336105427999897, 51.575396781000045 ], [ -121.336145081999945, 51.575397343000112 ], [ -121.336147958999916, 51.575370260000092 ], [ -121.336195389999929, 51.574923701000088 ], [ -121.33556948599994, 51.574898048000129 ], [ -121.335949938999988, 51.571316213000095 ], [ -121.337495191999963, 51.571379540000109 ], [ -121.337681666999956, 51.569623152000062 ], [ -121.339013935999986, 51.569677733000091 ], [ -121.339038118999937, 51.569449883000146 ], [ -121.33971826799997, 51.56947774100005 ], [ -121.33975250599994, 51.569155099000099 ], [ -121.342880221999962, 51.569283157000058 ], [ -121.343050553999944, 51.567676875000053 ], [ -121.345643588999963, 51.567782976000089 ], [ -121.345665646999976, 51.567574836000091 ], [ -121.346363181999948, 51.567603368000121 ], [ -121.346405535999935, 51.567203653000085 ], [ -121.347210074999964, 51.567236556000054 ], [ -121.347265828999937, 51.566710273000069 ], [ -121.34743897499996, 51.566717353000058 ], [ -121.347500054999955, 51.566140777000093 ], [ -121.349055962999969, 51.566204389000092 ], [ -121.349120217999939, 51.565597614000112 ], [ -121.350318024, 51.565646571000045 ], [ -121.350519764999916, 51.565654816000063 ], [ -121.350541217999989, 51.565452156000127 ], [ -121.350612101999943, 51.564782548000061 ], [ -121.351265466999948, 51.564809247000071 ], [ -121.351366146999908, 51.564813360000123 ], [ -121.351378015999956, 51.564701217000099 ], [ -121.351415793999962, 51.564344266000099 ], [ -121.351736260999957, 51.564357359000084 ], [ -121.352387847000017, 51.564383978000137 ], [ -121.352449281999967, 51.563803389000071 ], [ -121.356560031999933, 51.563971239000068 ], [ -121.35666755299998, 51.562954187000045 ], [ -121.356810657, 51.562960028000056 ], [ -121.356939613999941, 51.561740092000043 ], [ -121.36270426599998, 51.561975214000078 ], [ -121.362692410999969, 51.562087508000104 ], [ -121.362964193999943, 51.562098586000097 ], [ -121.362993145999937, 51.561824336 ], [ -121.363068256999938, 51.561827397000116 ], [ -121.363337987, 51.559272138000082 ], [ -121.367442566999927, 51.559439360000056 ], [ -121.369102350999981, 51.559506938000055 ], [ -121.368871879999986, 51.561692999000044 ], [ -121.369683283999947, 51.561726026000052 ], [ -121.369622434999926, 51.562303253000032 ], [ -121.369793719999947, 51.562310223000054 ], [ -121.369416100999928, 51.565892203000026 ], [ -121.36524740399993, 51.565722466000082 ], [ -121.365240413999913, 51.565788702000063 ], [ -121.363798184999951, 51.565729943000065 ], [ -121.363643229999965, 51.567197837000087 ], [ -121.357905026999973, 51.566963870000095 ], [ -121.357835603999945, 51.567620673000079 ], [ -121.356863474999955, 51.567581007000086 ], [ -121.356802092999942, 51.568161596000017 ], [ -121.356047987999943, 51.568130821000089 ], [ -121.355998384999978, 51.568599916000039 ], [ -121.355942217999939, 51.568597623000116 ], [ -121.355829142999951, 51.569666917000085 ], [ -121.354487792999976, 51.569612163000052 ], [ -121.354396429999937, 51.570475849000076 ], [ -121.353507805000021, 51.570439567000101 ], [ -121.353450319000032, 51.570982872000073 ], [ -121.352626541999939, 51.570949230000096 ], [ -121.352569112999959, 51.571491891000058 ], [ -121.350896760999902, 51.571423578000079 ], [ -121.350803685999921, 51.572302732 ], [ -121.350000317999928, 51.572269906000059 ], [ -121.349965167999969, 51.572601850000069 ], [ -121.349249831999884, 51.572572616000045 ], [ -121.34922634699997, 51.572794367000057 ], [ -121.348587814999988, 51.572768269000044 ], [ -121.348569127999923, 51.572944683000102 ], [ -121.347814133999947, 51.572913820000082 ], [ -121.347793605, 51.573107601000046 ], [ -121.34700550899997, 51.573075379000066 ], [ -121.346987076999966, 51.573249319000098 ], [ -121.346381803999947, 51.573224568000072 ], [ -121.346230130999942, 51.5746557350001 ], [ -121.342033351999987, 51.574484033000026 ], [ -121.341900909999936, 51.57573253500005 ], [ -121.340376060999958, 51.575670110000054 ], [ -121.340354341999941, 51.57626627700008 ], [ -121.340787079999956, 51.576272395000146 ], [ -121.340757616999923, 51.577081301000085 ], [ -121.340324871999954, 51.577075181000048 ], [ -121.340315047999951, 51.577344816000057 ], [ -121.339882298999981, 51.577338694000062 ], [ -121.339862646999933, 51.577877965000013 ], [ -121.338997141, 51.577865717000066 ], [ -121.338987307999957, 51.578135351000107 ], [ -121.338554551999934, 51.578129224000072 ], [ -121.338544717999966, 51.578398859000103 ], [ -121.338977476, 51.578404986000066 ], [ -121.338947979999929, 51.579213890000069 ], [ -121.339813512999967, 51.57922613900012 ], [ -121.339774203999966, 51.58030467800004 ], [ -121.339341425999933, 51.580298554000095 ], [ -121.339331594999933, 51.580568188000065 ], [ -121.338898816999972, 51.580562063000094 ], [ -121.338879148999965, 51.581101333000063 ], [ -121.337148015999929, 51.581076814000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024675", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3842500", "BldgCostT": "2650000", "sL_LossRatio": "0.999989239234749", "sL_AssetLoss": "487.233006", "sL_BldgLoss": "487.227763", "sL_StrLoss": "487.2", "sL_NStrLoss": "0.027763", "sL_ContLoss": "0.005243", "geom_point": "0101000020E61000002F34F877CD555EC0942F892FEAB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.338474688999924, 51.454477425000043 ], [ -121.338495920999904, 51.454276847000116 ], [ -121.337920581999981, 51.454253211000065 ], [ -121.337943481999957, 51.454036910000063 ], [ -121.337322477999976, 51.454011395000116 ], [ -121.337343241999946, 51.453815280000057 ], [ -121.336722668999954, 51.453789779000083 ], [ -121.336979659999898, 51.451362809000067 ], [ -121.337101983999958, 51.45020751300008 ], [ -121.342851950999957, 51.450443665000073 ], [ -121.342831211999936, 51.450639782000032 ], [ -121.343451744999967, 51.450665249000025 ], [ -121.343428873999969, 51.450881551000073 ], [ -121.344049836999972, 51.450907034000124 ], [ -121.344028633, 51.451107614000108 ], [ -121.34460393399992, 51.451131220000057 ], [ -121.344312548999952, 51.453887511000119 ], [ -121.344225219999927, 51.454713507000072 ], [ -121.338474688999924, 51.454477425000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024676", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "323", "sL_BldgLoss": "323", "sL_StrLoss": "323", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B1AAFB53EC535EC088FAB8918DB34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.308618117999941, 51.40084784500003 ], [ -121.31436150399999, 51.401085450000039 ], [ -121.313980766999975, 51.404667817000082 ], [ -121.308236915999913, 51.404430193000046 ], [ -121.308618117999941, 51.40084784500003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024677", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "0.999986880314829", "sL_AssetLoss": "303.132274", "sL_BldgLoss": "303.128297", "sL_StrLoss": "303.100397", "sL_NStrLoss": "0.0279", "sL_ContLoss": "0.003977", "geom_point": "0101000020E610000016CC4EF5DA515EC02F35634D3CB24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.272525261999974, 51.394356720000069 ], [ -121.274635108999973, 51.391330647000053 ], [ -121.27480691099997, 51.391329184 ], [ -121.274992081999926, 51.39138620100006 ], [ -121.275116504000025, 51.39147880300002 ], [ -121.275096894999976, 51.391621203000099 ], [ -121.274723186999935, 51.392002890000072 ], [ -121.274784097999884, 51.392300493000064 ], [ -121.274467519999973, 51.392719296000031 ], [ -121.274475794999901, 51.392836014000082 ], [ -121.27459129799999, 51.392845990000104 ], [ -121.274846693999947, 51.392554101000059 ], [ -121.27534951399997, 51.392561193000098 ], [ -121.275364017999962, 51.391769303000068 ], [ -121.275563004999938, 51.391484492000082 ], [ -121.27572009, 51.391468794000055 ], [ -121.276173385999968, 51.391700890000074 ], [ -121.276647589999982, 51.391689602000035 ], [ -121.277451088999939, 51.391306406000119 ], [ -121.278189714999911, 51.391164001000043 ], [ -121.28095852300001, 51.390961801000053 ], [ -121.283401188999932, 51.390557306000083 ], [ -121.284784398999975, 51.39010009200009 ], [ -121.284976803999939, 51.39008633600011 ], [ -121.284900038000018, 51.390804350000067 ], [ -121.284675984999922, 51.392899833000094 ], [ -121.282878665999974, 51.392825022000132 ], [ -121.28284991799994, 51.393093775000068 ], [ -121.282479746, 51.393078363000015 ], [ -121.282433026999925, 51.393515085000047 ], [ -121.28189070699996, 51.393492504000029 ], [ -121.281887100999938, 51.393526197000014 ], [ -121.277291004999967, 51.393334723000066 ], [ -121.277255311999966, 51.393668006000091 ], [ -121.276895396999933, 51.393653004000093 ], [ -121.276859911999921, 51.393984315000111 ], [ -121.276614813999984, 51.393974098000115 ], [ -121.276585516999944, 51.394247621 ], [ -121.276470823999944, 51.394242840000068 ], [ -121.276437329999979, 51.394555524000076 ], [ -121.274149120999965, 51.394460112000054 ], [ -121.27414362699993, 51.394511378000097 ], [ -121.27363043299999, 51.394489973000105 ], [ -121.273617984999987, 51.3948206150001 ], [ -121.272755965999963, 51.39480791000009 ], [ -121.27275283099999, 51.394891144000034 ], [ -121.272525261999974, 51.394356720000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024679", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "10248917", "BldgCostT": "6571667", "sL_LossRatio": "0.999139144506705", "sL_AssetLoss": "848.144672", "sL_BldgLoss": "847.414542", "sL_StrLoss": "842.869322", "sL_NStrLoss": "4.54522", "sL_ContLoss": "0.73013", "geom_point": "0101000020E610000082F20C54E5525EC02E1DD6C86CC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.297172561999972, 51.561619234000041 ], [ -121.297192215999971, 51.561093170000063 ], [ -121.296700012999935, 51.561072822000042 ], [ -121.296327538999918, 51.561067414000028 ], [ -121.296327911999981, 51.561057437000052 ], [ -121.293808672999958, 51.560953245000114 ], [ -121.29384483299999, 51.560615750000125 ], [ -121.289536444999968, 51.560437432000093 ], [ -121.289597780999912, 51.559865481 ], [ -121.288088934999934, 51.559802993000069 ], [ -121.288200794999938, 51.558760195000076 ], [ -121.288473122999974, 51.556221264000079 ], [ -121.294236683999927, 51.556459851000071 ], [ -121.29417541399998, 51.55703180600004 ], [ -121.295230091999912, 51.557075434000154 ], [ -121.295531437999912, 51.55426162800007 ], [ -121.301294779999978, 51.554499859000067 ], [ -121.300911650000018, 51.558081636000132 ], [ -121.299910090999958, 51.558040258000105 ], [ -121.299700372999951, 51.560000178000074 ], [ -121.29969641299999, 51.560037182000023 ], [ -121.299789249999932, 51.560038528000057 ], [ -121.299828447999928, 51.560039095000093 ], [ -121.299827848999925, 51.560055182000028 ], [ -121.299798277, 51.560847986000084 ], [ -121.299609941, 51.56084525600005 ], [ -121.299572881999921, 51.561191561000079 ], [ -121.299352979999981, 51.56118247600007 ], [ -121.299345572999968, 51.561380976000073 ], [ -121.298480399000013, 51.561368432000087 ], [ -121.298470331999951, 51.561638061000046 ], [ -121.297172561999972, 51.561619234000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024680", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "0.999933033484863", "sL_AssetLoss": "411.10098", "sL_BldgLoss": "411.07345", "sL_StrLoss": "410.90145", "sL_NStrLoss": "0.172", "sL_ContLoss": "0.02753", "geom_point": "0101000020E6100000B1434651B1575EC0C26C7ED326C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.368203437999966, 51.50335916900007 ], [ -121.368323665, 51.502217399000088 ], [ -121.36608212099999, 51.502125991000064 ], [ -121.36645946599999, 51.498543799000082 ], [ -121.369797559999981, 51.498679908000064 ], [ -121.37017276099999, 51.498695201000011 ], [ -121.370444477999925, 51.498706275000124 ], [ -121.372215899, 51.498778454000039 ], [ -121.372071365999943, 51.500152310000033 ], [ -121.374312821000018, 51.500243601000079 ], [ -121.373936100999941, 51.503825812000095 ], [ -121.370573920999973, 51.503688859000093 ], [ -121.370312718999983, 51.503678216000019 ], [ -121.368178999999884, 51.503591245000052 ], [ -121.368203437999966, 51.50335916900007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024681", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "0.999995641007065", "sL_AssetLoss": "280.110571", "sL_BldgLoss": "280.10935", "sL_StrLoss": "280.1", "sL_NStrLoss": "0.00935", "sL_ContLoss": "0.001221", "geom_point": "0101000020E610000016A7F7E0B7575EC03B4E97E6D2C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.367520597999928, 51.516167806000091 ], [ -121.367572163999938, 51.515678329000139 ], [ -121.367539732999944, 51.515677007000079 ], [ -121.367718030999967, 51.513984478000083 ], [ -121.367917074000019, 51.512094859000122 ], [ -121.368452714999961, 51.512116692000063 ], [ -121.371880647999916, 51.512256359000098 ], [ -121.373675285999965, 51.512329437000076 ], [ -121.373623791999975, 51.512818918000015 ], [ -121.37365622199998, 51.512820239000128 ], [ -121.373279340999929, 51.516402404000068 ], [ -121.370480738999973, 51.516288432000103 ], [ -121.367520597999928, 51.516167806000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024682", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4623083", "BldgCostT": "3188333", "sL_LossRatio": "1", "sL_AssetLoss": "442", "sL_BldgLoss": "442", "sL_StrLoss": "442", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007DF7125377545EC0E5AA1ED555C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.315499844999948, 51.567402720000047 ], [ -121.315570451999946, 51.566740768000031 ], [ -121.31472942, 51.566728691000094 ], [ -121.314739391999979, 51.566459059000096 ], [ -121.313874114, 51.566446628000101 ], [ -121.313884088999913, 51.56617699600006 ], [ -121.313451451999967, 51.566170777000124 ], [ -121.313489490999956, 51.565142931000103 ], [ -121.31349136399993, 51.565092250000049 ], [ -121.31392399299996, 51.565098469000063 ], [ -121.313933967999944, 51.564828836000018 ], [ -121.315771558999941, 51.564855229000067 ], [ -121.315881867999977, 51.563820925000115 ], [ -121.317970991999914, 51.563906921000061 ], [ -121.318111746999961, 51.562586476000057 ], [ -121.31906145399995, 51.562625556000086 ], [ -121.319082315999935, 51.562429798000089 ], [ -121.324846854999947, 51.562666836000091 ], [ -121.324465571999923, 51.566248664000092 ], [ -121.32371084499999, 51.56621764700008 ], [ -121.323610889999927, 51.567156383000089 ], [ -121.321326536999948, 51.567062470000096 ], [ -121.32131595, 51.56716185300013 ], [ -121.321265017999934, 51.567639938000106 ], [ -121.315499844999948, 51.567402720000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024683", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "201.9", "sL_BldgLoss": "201.9", "sL_StrLoss": "201.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000092FA5F6C29425EC06D0CF09359CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.027522984999948, 51.60497903900005 ], [ -121.02762144899998, 51.604110307000049 ], [ -121.028105586999985, 51.604131449000086 ], [ -121.028206575999889, 51.603240319000101 ], [ -121.033974853, 51.603492062000051 ], [ -121.033872616999972, 51.604395240000066 ], [ -121.035836558999961, 51.604480884000097 ], [ -121.035951823999966, 51.603462201000063 ], [ -121.036403543999938, 51.603481895000066 ], [ -121.036446624999954, 51.603101112000026 ], [ -121.036943247999929, 51.603122762000098 ], [ -121.03698912399993, 51.602717224000052 ], [ -121.041918869999947, 51.602932011000121 ], [ -121.041380279999913, 51.603189309000086 ], [ -121.040041504000015, 51.603733368000078 ], [ -121.038213206999927, 51.604476299000048 ], [ -121.037274400999976, 51.604922103000014 ], [ -121.036021009999914, 51.605599714000093 ], [ -121.035743369999949, 51.605709 ], [ -121.035436351999948, 51.605770514000064 ], [ -121.035425983999957, 51.605772602000052 ], [ -121.035061996999914, 51.605788205000067 ], [ -121.031658087, 51.605605202000056 ], [ -121.031063128999946, 51.605573210000081 ], [ -121.029801197999973, 51.605454314000063 ], [ -121.028768908999922, 51.605292288000022 ], [ -121.027894393999929, 51.605093099000065 ], [ -121.027522984999948, 51.60497903900005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024684", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "94.3", "sL_BldgLoss": "94.3", "sL_StrLoss": "94.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007082EB619A2D5EC00D49F3E842BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.71124198099993, 51.484550261000066 ], [ -120.714433867999929, 51.484698935000019 ], [ -120.714003652999907, 51.48827886100004 ], [ -120.711074518999936, 51.488142429000064 ], [ -120.710628713999981, 51.487362188000077 ], [ -120.710560981999947, 51.486991999000033 ], [ -120.711053912999887, 51.485490794000093 ], [ -120.71124198099993, 51.484550261000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024685", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "55", "sL_BldgLoss": "55", "sL_StrLoss": "55", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5466F7E64435EC00EEB19044EC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.051693928999896, 51.54184133400009 ], [ -121.051742149999939, 51.541413158000118 ], [ -121.050829026999935, 51.541373411000052 ], [ -121.050923554999912, 51.540534215000037 ], [ -121.052714081999937, 51.540975589000041 ], [ -121.056555701999912, 51.542008835000075 ], [ -121.056750861999959, 51.542061321000091 ], [ -121.051693928999896, 51.54184133400009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024687", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "54.1", "sL_BldgLoss": "54.1", "sL_StrLoss": "54.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BC3D6B2B343A5EC0FDEB685E86C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.90796525899998, 51.543783837000056 ], [ -120.90799412199999, 51.54353482700008 ], [ -120.907377855999925, 51.543507222000059 ], [ -120.907515240999928, 51.542322066000018 ], [ -120.90754595699994, 51.542319934000062 ], [ -120.90826219099992, 51.542270216000155 ], [ -120.908767191999985, 51.54228380900004 ], [ -120.908927258999967, 51.542297204000128 ], [ -120.909276101999978, 51.542326404000043 ], [ -120.90957584399996, 51.54238473100007 ], [ -120.909846508999976, 51.542437414000119 ], [ -120.91038899699997, 51.542614605000061 ], [ -120.910850079999975, 51.542819706000017 ], [ -120.911236012999908, 51.543061888000082 ], [ -120.911686785999962, 51.543469001000084 ], [ -120.912106650999974, 51.543969258000104 ], [ -120.90796525899998, 51.543783837000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024688", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9980833", "BldgCostT": "6883333", "sL_LossRatio": "1", "sL_AssetLoss": "807.9", "sL_BldgLoss": "807.9", "sL_StrLoss": "807.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C2234A35B2C5EC0B10C791DD4BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.677252381999963, 51.500624404000035 ], [ -120.677432877999976, 51.50000577800008 ], [ -120.677435443999968, 51.499996930000094 ], [ -120.677344145999911, 51.499377037000059 ], [ -120.677357058999988, 51.499234557000122 ], [ -120.677438965999968, 51.499035904000053 ], [ -120.677552285, 51.498888196000109 ], [ -120.678610176999896, 51.497938758000025 ], [ -120.679252673999912, 51.497589069000135 ], [ -120.681268505, 51.496789806000038 ], [ -120.681751127999974, 51.496542414000068 ], [ -120.681940135999938, 51.496378470000103 ], [ -120.68208579, 51.496202569000047 ], [ -120.68222337899999, 51.495948426000083 ], [ -120.682411684999977, 51.49560042500007 ], [ -120.682549828999981, 51.495139799000057 ], [ -120.682717262999944, 51.494927132000058 ], [ -120.683283672999949, 51.494476652000046 ], [ -120.68360016299998, 51.494131481000068 ], [ -120.68401327399999, 51.493192268 ], [ -120.684517460999956, 51.49204588700006 ], [ -120.684521688999936, 51.491866501000061 ], [ -120.684529307999981, 51.491543 ], [ -120.684532826999927, 51.491392303000055 ], [ -120.684804111999966, 51.491109794000117 ], [ -120.685675191999934, 51.490722193000039 ], [ -120.686009286999948, 51.490482230000055 ], [ -120.686393150999947, 51.490081690000096 ], [ -120.68670734399997, 51.489599581000022 ], [ -120.686811071999983, 51.488920428000021 ], [ -120.687085999000018, 51.48844007900005 ], [ -120.688245444999907, 51.487058441000016 ], [ -120.688310546999972, 51.486980867000071 ], [ -120.688895863000013, 51.486515950000054 ], [ -120.689787520999943, 51.486100436000129 ], [ -120.689999454999921, 51.485925855000112 ], [ -120.690084474999964, 51.485736341000099 ], [ -120.69007744299995, 51.485555101000045 ], [ -120.68961509799999, 51.484917855000113 ], [ -120.689637391999895, 51.48431411400005 ], [ -120.691799762999921, 51.484173344000048 ], [ -120.692155486, 51.484150175000096 ], [ -120.695654310999942, 51.483670234000051 ], [ -120.697145431, 51.483414101000093 ], [ -120.697345107, 51.483391130000022 ], [ -120.697607225999931, 51.483360983000082 ], [ -120.698127093999943, 51.48338975100004 ], [ -120.698477404999934, 51.483458326000076 ], [ -120.698905949999968, 51.48341713100006 ], [ -120.699227464, 51.483292655000106 ], [ -120.699719517999981, 51.482964618 ], [ -120.700463122999963, 51.482360332000042 ], [ -120.700755361999981, 51.482356841000083 ], [ -120.700800450999964, 51.482356298000127 ], [ -120.702771594999916, 51.482279095000088 ], [ -120.702915010999902, 51.482266250000045 ], [ -120.705521843999975, 51.482032735000082 ], [ -120.706517279999971, 51.481943546000096 ], [ -120.708889997999904, 51.481804709000102 ], [ -120.71069811299995, 51.481698865000041 ], [ -120.71092803699996, 51.481685421000059 ], [ -120.711550431999953, 51.481648962000101 ], [ -120.711566024999982, 51.48155521000011 ], [ -120.711669706999928, 51.481474541000047 ], [ -120.711845404999963, 51.481419719000058 ], [ -120.712429266999948, 51.481433430000081 ], [ -120.713555600999939, 51.481323899000081 ], [ -120.71378458199996, 51.481275381000067 ], [ -120.71375751, 51.481500667000084 ], [ -120.713381706999911, 51.484627682000038 ], [ -120.711246388999911, 51.484528212000072 ], [ -120.711304799999965, 51.48423609499999 ], [ -120.710967486999948, 51.48349269300008 ], [ -120.710225607, 51.483028395000069 ], [ -120.709401509999935, 51.482823305000117 ], [ -120.708624792999942, 51.482817608000126 ], [ -120.708289021999974, 51.482910202000113 ], [ -120.707947603999955, 51.483684885000052 ], [ -120.70726102099999, 51.484427005000043 ], [ -120.706783690999899, 51.484741707000104 ], [ -120.705699185999947, 51.484576491000041 ], [ -120.70455229, 51.484716107000075 ], [ -120.703281114999953, 51.483666403000043 ], [ -120.70269019399997, 51.483384397000052 ], [ -120.702245094999952, 51.483330314000099 ], [ -120.701505592999965, 51.483432793000127 ], [ -120.700945001999983, 51.483700612000071 ], [ -120.700732386, 51.483931295000048 ], [ -120.700946809999948, 51.484519493000107 ], [ -120.7015674149999, 51.484801505000078 ], [ -120.702366885999965, 51.485536407000041 ], [ -120.702400905999951, 51.485986495000034 ], [ -120.701529699999952, 51.486707106000047 ], [ -120.700673884999944, 51.486825308000071 ], [ -120.700395815999968, 51.487080977000097 ], [ -120.698499792999925, 51.48699244200003 ], [ -120.698286095999947, 51.486436509000079 ], [ -120.697978822999971, 51.48597220500006 ], [ -120.697378825, 51.485609 ], [ -120.697316723, 51.485131903000095 ], [ -120.697864703999983, 51.484801492000024 ], [ -120.697910091999972, 51.484478207000073 ], [ -120.697677192999905, 51.484230391000054 ], [ -120.697085821999906, 51.483994006000046 ], [ -120.69650689599996, 51.484055214000065 ], [ -120.695115875999988, 51.48476449900005 ], [ -120.69430750199993, 51.484802894000083 ], [ -120.694001703999973, 51.484599290000048 ], [ -120.693473288999925, 51.484498193000015 ], [ -120.692803393999981, 51.484647703000093 ], [ -120.692197502999946, 51.484922597000065 ], [ -120.691430385999979, 51.485033698000095 ], [ -120.69136174, 51.485061863000041 ], [ -120.691031387999942, 51.485197404000104 ], [ -120.690702893, 51.485450915000065 ], [ -120.690632415999943, 51.485693102000027 ], [ -120.690699914999954, 51.485784199000058 ], [ -120.691312522999979, 51.485922399000081 ], [ -120.69145081899994, 51.486042003000072 ], [ -120.691663404999986, 51.486378109000043 ], [ -120.692134, 51.486783994000035 ], [ -120.692110879999987, 51.487205600000088 ], [ -120.691448715000021, 51.487219792000047 ], [ -120.690598184999956, 51.48749039000009 ], [ -120.689961214999954, 51.487864995000059 ], [ -120.688768994999961, 51.488372014000042 ], [ -120.688437908999916, 51.488662494000117 ], [ -120.687712115999929, 51.489331893000056 ], [ -120.687440002999949, 51.49015370700004 ], [ -120.68691802699999, 51.490790303000033 ], [ -120.686560486999952, 51.491018202000099 ], [ -120.68557649199991, 51.491367102000062 ], [ -120.685175885999968, 51.491610704000038 ], [ -120.685108110000016, 51.491815687000042 ], [ -120.685539897999945, 51.492399688000035 ], [ -120.685511610999953, 51.493514798000078 ], [ -120.68513129199999, 51.493920706000068 ], [ -120.684495407, 51.493944900000017 ], [ -120.684291109999933, 51.493994795000084 ], [ -120.683421484999954, 51.494938990000044 ], [ -120.68292339499996, 51.495666810000102 ], [ -120.682612899999981, 51.496398805000133 ], [ -120.682079985999962, 51.496989902000088 ], [ -120.681039920999979, 51.497607996000021 ], [ -120.680297384999946, 51.497756104000075 ], [ -120.679868587999977, 51.497972605000015 ], [ -120.679669704999981, 51.499029397000086 ], [ -120.679380497999944, 51.499346999000082 ], [ -120.678801302999929, 51.49969589600007 ], [ -120.678771006999938, 51.500000689000025 ], [ -120.67905220499992, 51.500681402000048 ], [ -120.679397491999936, 51.500714201000093 ], [ -120.680120679999987, 51.500081902000055 ], [ -120.680566706999983, 51.499515009000092 ], [ -120.680774426999932, 51.499402505000063 ], [ -120.682023015999931, 51.499237305000086 ], [ -120.68281337799999, 51.498992292000111 ], [ -120.683808487999897, 51.498113597000021 ], [ -120.684122288999973, 51.497606589000078 ], [ -120.684324518999958, 51.497600902000052 ], [ -120.685071293999968, 51.497931316000084 ], [ -120.686774386999943, 51.498468194000097 ], [ -120.687693982999932, 51.499331302 ], [ -120.68809359, 51.49943808900008 ], [ -120.68843310599999, 51.499274297000056 ], [ -120.688559912999906, 51.498745985000014 ], [ -120.68886199799999, 51.498482492000065 ], [ -120.689095305999928, 51.498405590000061 ], [ -120.68957981599999, 51.498369127000053 ], [ -120.689274636, 51.500895916000111 ], [ -120.685950379999909, 51.500740394000026 ], [ -120.685916295999931, 51.501022394000081 ], [ -120.685897279999935, 51.501021504000036 ], [ -120.684998628999949, 51.50097944500007 ], [ -120.684954073999947, 51.501348016000101 ], [ -120.683452296999945, 51.501277713000036 ], [ -120.683348563999957, 51.502135567000103 ], [ -120.683317065999958, 51.502396052000094 ], [ -120.683031651999912, 51.5023826890001 ], [ -120.682863637999958, 51.502374822000057 ], [ -120.681082039000017, 51.502291385000078 ], [ -120.681077063999965, 51.502332505000034 ], [ -120.67629978799999, 51.502108635000084 ], [ -120.676300976999983, 51.50205609100005 ], [ -120.676339583999948, 51.501880592000099 ], [ -120.67646224399999, 51.501717255000052 ], [ -120.67649823499994, 51.50166932000009 ], [ -120.676925112999967, 51.501368937000031 ], [ -120.677081917999942, 51.501208886000022 ], [ -120.677252381999963, 51.500624404000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024689", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.3", "sL_BldgLoss": "49.3", "sL_StrLoss": "49.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002A52C4965C2B5EC0F715B545E3C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.676566510000015, 51.505146326000023 ], [ -120.678685553999969, 51.505245641 ], [ -120.67825223299991, 51.508825358000138 ], [ -120.67657909199994, 51.508746946000102 ], [ -120.676524015999917, 51.507169809000075 ], [ -120.676519074999973, 51.507028052000081 ], [ -120.676525420999951, 51.506979699000041 ], [ -120.676624461999921, 51.506227197000044 ], [ -120.676645964999977, 51.506063808000114 ], [ -120.676622821999928, 51.505490320000042 ], [ -120.676566510000015, 51.505146326000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024691", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "110.3", "sL_BldgLoss": "110.3", "sL_StrLoss": "110.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005F69AE0DB4305EC0E3B929AB8AC14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.758910725999982, 51.513720195000076 ], [ -120.758923958999944, 51.513450650000017 ], [ -120.758491965999951, 51.513442393000076 ], [ -120.758531669999968, 51.512633758000071 ], [ -120.759827628999972, 51.512658526000067 ], [ -120.759840855999983, 51.512388981000072 ], [ -120.759958577999896, 51.512391230000027 ], [ -120.760272839999942, 51.512397233000108 ], [ -120.760291490999961, 51.512017084000128 ], [ -120.760299287999914, 51.511858143999987 ], [ -120.759867307999954, 51.511849891000082 ], [ -120.75988053499999, 51.511580346000045 ], [ -120.759448559999939, 51.511572093000048 ], [ -120.759488246, 51.510763457000046 ], [ -120.759920214999966, 51.5107717120001 ], [ -120.75995989099999, 51.509963076000119 ], [ -120.761255775, 51.50998782700001 ], [ -120.761189682999941, 51.511335554000048 ], [ -120.76205363299999, 51.511352046000056 ], [ -120.762066845999954, 51.5110825000001 ], [ -120.763362763999979, 51.511107230000043 ], [ -120.763341276999952, 51.511545762000075 ], [ -120.763283524999963, 51.512724502000069 ], [ -120.762419549999962, 51.512708017000094 ], [ -120.762393125999949, 51.513247108000016 ], [ -120.76066515699992, 51.513214120000093 ], [ -120.76065193299992, 51.513483664000013 ], [ -120.760288650999939, 51.513476726000064 ], [ -120.760219939999985, 51.513475413000059 ], [ -120.760206713999963, 51.513744958000117 ], [ -120.758910725999982, 51.513720195000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024692", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49", "sL_BldgLoss": "49", "sL_StrLoss": "49", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000436F12FF87345EC083A924BA00C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.819291357999987, 51.508944989000085 ], [ -120.81967610199996, 51.505679754000084 ], [ -120.819758930999953, 51.505715878000061 ], [ -120.819863492999957, 51.505761487000058 ], [ -120.820379057999915, 51.506050484000063 ], [ -120.820717253999987, 51.506334951000071 ], [ -120.822407694999939, 51.508145768000063 ], [ -120.822484620999901, 51.508228152000115 ], [ -120.822699835999941, 51.508458648000058 ], [ -120.823231955999944, 51.509028623000056 ], [ -120.823338983, 51.509129534000103 ], [ -120.819291357999987, 51.508944989000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024693", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "826500", "BldgCostT": "570000", "sL_LossRatio": "0.999988341738808", "sL_AssetLoss": "253.03945", "sL_BldgLoss": "253.0365", "sL_StrLoss": "253", "sL_NStrLoss": "0.0365", "sL_ContLoss": "0.00295", "geom_point": "0101000020E6100000BD1C76DF31405EC024B2B4F839C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.002016996999942, 51.541046363000092 ], [ -121.002040614999927, 51.540507191000131 ], [ -121.001608298999955, 51.540499826000087 ], [ -121.00164373299998, 51.539691069000121 ], [ -121.001939163999978, 51.539696102000057 ], [ -121.002612113999987, 51.539845791000083 ], [ -121.003172723999967, 51.539904634000024 ], [ -121.00422964099999, 51.539917033000052 ], [ -121.004225799999972, 51.540004820000114 ], [ -121.004658113999966, 51.540012176000054 ], [ -121.004615683999972, 51.540982003000124 ], [ -121.004610936999953, 51.541090521000086 ], [ -121.004412372999951, 51.541087142000023 ], [ -121.00417861399994, 51.541083165000082 ], [ -121.004173386999966, 51.54120257500005 ], [ -121.00414322, 51.541891923000016 ], [ -121.003364929, 51.541878677000085 ], [ -121.00154923599996, 51.541847755000049 ], [ -121.001584674999918, 51.541038998000047 ], [ -121.002016996999942, 51.541046363000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024694", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "197.4", "sL_BldgLoss": "197.4", "sL_StrLoss": "197.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A76B50519415EC03EB3E2237BC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.01452086799992, 51.561148796000062 ], [ -121.014751163999946, 51.559120091000068 ], [ -121.013614778999951, 51.559070275000067 ], [ -121.01402130399994, 51.555489496000071 ], [ -121.014425893999928, 51.555507234000103 ], [ -121.019783237999945, 51.55574196900006 ], [ -121.019553192999965, 51.557770691000037 ], [ -121.020689548999982, 51.55782044800003 ], [ -121.020407117000019, 51.560311461000055 ], [ -121.020283544999927, 51.561401242000095 ], [ -121.01452086799992, 51.561148796000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024696", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "100.3", "sL_BldgLoss": "100.3", "sL_StrLoss": "100.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008908DE14BF415EC0D5592DB047C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.029778408999903, 51.540211187000068 ], [ -121.03024176299995, 51.540211425000088 ], [ -121.029992613999923, 51.542414049000051 ], [ -121.024232365999964, 51.542162090000076 ], [ -121.024453628999964, 51.5402082680001 ], [ -121.025870374999954, 51.54020905600003 ], [ -121.027023649999975, 51.540209716000035 ], [ -121.027369880999942, 51.540209887000081 ], [ -121.028321370999933, 51.540210411000018 ], [ -121.029778408999903, 51.540211187000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024697", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4647250", "BldgCostT": "3205000", "sL_LossRatio": "1", "sL_AssetLoss": "354", "sL_BldgLoss": "354", "sL_StrLoss": "354", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B58AD5511B3F5EC033B27D2B06C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.991313657, 51.558129917000016 ], [ -120.991325536999952, 51.557860334000047 ], [ -120.989595621999939, 51.557830700000096 ], [ -120.989617724999945, 51.557329551000059 ], [ -120.985984566999932, 51.557169429000041 ], [ -120.986040851, 51.556676417000105 ], [ -120.982619885999952, 51.556525540000059 ], [ -120.982657398999905, 51.556197175000094 ], [ -120.981876482999922, 51.556162720000025 ], [ -120.981928753999966, 51.555705228000129 ], [ -120.979437128999933, 51.555595255000043 ], [ -120.979846403999943, 51.552014587000102 ], [ -120.985607685999966, 51.552268789000081 ], [ -120.985555457999965, 51.552726285000141 ], [ -120.988046935999961, 51.552836124000095 ], [ -120.988009466, 51.553164490000022 ], [ -120.988790331999894, 51.553198905000066 ], [ -120.988734083999987, 51.55369192000007 ], [ -120.992154850999952, 51.553842614000089 ], [ -120.991818821999942, 51.556789633000044 ], [ -120.992237995, 51.556796808000122 ], [ -120.992226120999987, 51.557066391000056 ], [ -120.993091063999927, 51.557081193000037 ], [ -120.993055455999965, 51.557889943000134 ], [ -120.992622975999936, 51.557882543000048 ], [ -120.992611102999916, 51.558152126000074 ], [ -120.991313657, 51.558129917000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024698", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "299.6", "sL_BldgLoss": "299.6", "sL_StrLoss": "299.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000454D4FB3DB345EC09BA829F239C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.820492425999987, 51.52666709600004 ], [ -120.820804358999965, 51.524020332000063 ], [ -120.820849212999974, 51.524049897000062 ], [ -120.821233613999979, 51.5241481 ], [ -120.821537092, 51.524153787000039 ], [ -120.821916584999911, 51.524052705000074 ], [ -120.821935629999984, 51.524026821000071 ], [ -120.825984859999963, 51.524211279000099 ], [ -120.826091480999978, 51.523305610000065 ], [ -120.827109805999939, 51.523653905000089 ], [ -120.828074101999945, 51.523689512000068 ], [ -120.82852612399995, 51.523589906000069 ], [ -120.829204718999932, 51.523575599000068 ], [ -120.829811291999988, 51.523245209000024 ], [ -120.82998749299999, 51.522853505000093 ], [ -120.829891816999961, 51.522473296000115 ], [ -120.829606295999909, 51.522117205000079 ], [ -120.829608294999957, 51.522024534000082 ], [ -120.831672737999938, 51.52211845900009 ], [ -120.831976240999964, 51.522477936000087 ], [ -120.831595649999926, 51.525714337000061 ], [ -120.826420225000021, 51.525478816000067 ], [ -120.82614484, 51.527817961000054 ], [ -120.82109007299999, 51.527587701000066 ], [ -120.820387692999986, 51.527555688000035 ], [ -120.820492425999987, 51.52666709600004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024699", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.7", "sL_BldgLoss": "168.7", "sL_StrLoss": "168.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F13E4D23E355EC02CA2A2C1D8C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.832122563999988, 51.519952930000109 ], [ -120.832135368999928, 51.519683373000127 ], [ -120.831271220999952, 51.519667393000113 ], [ -120.831298394000029, 51.519095549000021 ], [ -120.830453924999986, 51.519057127000025 ], [ -120.830769409999959, 51.518550988000108 ], [ -120.830599983999917, 51.51726209800006 ], [ -120.83106639199994, 51.516263688000052 ], [ -120.831721482999981, 51.515222597000061 ], [ -120.83250288799999, 51.514527603 ], [ -120.83245789899992, 51.514256998000107 ], [ -120.832447278999936, 51.513925194000095 ], [ -120.832373788999973, 51.513607611000104 ], [ -120.831771204999924, 51.513245800000043 ], [ -120.831469188999961, 51.513213090000086 ], [ -120.829053396999925, 51.514112771000015 ], [ -120.829089296999911, 51.513807577000108 ], [ -120.829762448999958, 51.513838217000021 ], [ -120.829857163999947, 51.513032901000066 ], [ -120.829190346999965, 51.513002550000095 ], [ -120.82942410199999, 51.511015169000089 ], [ -120.830814484999934, 51.511275352000084 ], [ -120.831369561999978, 51.511401398000061 ], [ -120.831704563999963, 51.511521403000103 ], [ -120.832702057999924, 51.511878665000054 ], [ -120.832817475999946, 51.511931456000092 ], [ -120.833045988999984, 51.512036016000081 ], [ -120.833422710999983, 51.512208394000041 ], [ -120.833958198999966, 51.512489189000149 ], [ -120.83451584699999, 51.512851995000084 ], [ -120.835343091999903, 51.513530314000093 ], [ -120.835657250999972, 51.513873034 ], [ -120.835039951999974, 51.51411018500005 ], [ -120.833730283999927, 51.51461329100006 ], [ -120.833015146999955, 51.515196267000064 ], [ -120.832244012999951, 51.516021430000052 ], [ -120.832021539999985, 51.516436950000077 ], [ -120.831898285999969, 51.516784093000098 ], [ -120.831859729999906, 51.517505821000071 ], [ -120.831968041999943, 51.51815953500008 ], [ -120.832406238999965, 51.519194499000044 ], [ -120.832804892999945, 51.51971655200002 ], [ -120.83308569399999, 51.519970732000097 ], [ -120.832122563999988, 51.519952930000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024700", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "52.1", "sL_BldgLoss": "52.1", "sL_StrLoss": "52.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7BFEE11BD455EC0A651792225C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.091808602, 51.547464891000082 ], [ -121.092488389, 51.547416586000082 ], [ -121.09235080799999, 51.548648170000021 ], [ -121.086589389999972, 51.548399367000073 ], [ -121.086690463999943, 51.547495640000072 ], [ -121.090644006999923, 51.547500110000122 ], [ -121.091128051999988, 51.547485475 ], [ -121.091808602, 51.547464891000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024701", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4458750", "BldgCostT": "3075000", "sL_LossRatio": "1", "sL_AssetLoss": "373.7", "sL_BldgLoss": "373.7", "sL_StrLoss": "373.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003B8EDD0DBB395EC0AFE94141A9C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.90135623299993, 51.579050402000071 ], [ -120.901690058999947, 51.576176349000086 ], [ -120.897557905000014, 51.575991103000064 ], [ -120.897582038999985, 51.575783470000012 ], [ -120.896868894999969, 51.575751485000147 ], [ -120.896898473999926, 51.575497048000031 ], [ -120.897285080999964, 51.572171186000091 ], [ -120.903048521999921, 51.57242955800011 ], [ -120.903024413999944, 51.572637192000037 ], [ -120.903737511999978, 51.572669140000073 ], [ -120.903449471999949, 51.575150236000049 ], [ -120.907630051999917, 51.575337439000101 ], [ -120.907292988999984, 51.578242820000121 ], [ -120.906778414999934, 51.577502489000075 ], [ -120.906503300999958, 51.577202290000038 ], [ -120.90565479199995, 51.576651939000037 ], [ -120.905682814999921, 51.579244201000101 ], [ -120.90135623299993, 51.579050402000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024702", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "245", "sL_BldgLoss": "245", "sL_StrLoss": "245", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002CE374CCD8335EC0922B2FD811C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.806819900999955, 51.52587142300009 ], [ -120.807242935999966, 51.522291281000101 ], [ -120.807606955999972, 51.522307918000124 ], [ -120.807664245999916, 51.521822990000025 ], [ -120.81342056699998, 51.522085908000093 ], [ -120.813283777999985, 51.523245010000103 ], [ -120.812834003999939, 51.523118402000122 ], [ -120.812432797, 51.523111310000097 ], [ -120.813167486999987, 51.523413293000075 ], [ -120.813260682999953, 51.523440709000042 ], [ -120.812998036999943, 51.525666073000068 ], [ -120.812633986999955, 51.525649454000082 ], [ -120.812576744999916, 51.52613438300007 ], [ -120.806819900999955, 51.52587142300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024703", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "251.7", "sL_BldgLoss": "251.7", "sL_StrLoss": "251.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000027ECEC755C2D5EC0074DBF0220C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.705995829999949, 51.517483966000043 ], [ -120.705727732999918, 51.517333075000082 ], [ -120.70541185799999, 51.517155254000038 ], [ -120.704658115999919, 51.516902336000058 ], [ -120.703285100999949, 51.516663843000103 ], [ -120.702189222999905, 51.516473479000048 ], [ -120.702461600999968, 51.514213613000031 ], [ -120.706295771000015, 51.514392366000031 ], [ -120.705615694999963, 51.514909309000082 ], [ -120.704164702999933, 51.515664094000044 ], [ -120.704174409999922, 51.515780884000058 ], [ -120.7060755, 51.516078612000079 ], [ -120.707604704999966, 51.516037299000089 ], [ -120.70958400399995, 51.515400708000051 ], [ -120.710811025999959, 51.515335104000044 ], [ -120.712670123999956, 51.515362202000063 ], [ -120.713393384999947, 51.515601504000109 ], [ -120.714424315999977, 51.515729597000082 ], [ -120.714804806999908, 51.515899103000059 ], [ -120.71516840399994, 51.516427494000091 ], [ -120.715076081999939, 51.517378900000075 ], [ -120.714100497999979, 51.518106507000049 ], [ -120.711636970999933, 51.517991850000044 ], [ -120.711672428999975, 51.517697154000068 ], [ -120.709753113999923, 51.517607789000088 ], [ -120.709580419999924, 51.519042507000037 ], [ -120.707475635999941, 51.518944468000065 ], [ -120.707475297999977, 51.51894335500004 ], [ -120.707035377999901, 51.518447615000085 ], [ -120.706712181999961, 51.518083439000094 ], [ -120.705995829999949, 51.517483966000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024704", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "153", "sL_BldgLoss": "153", "sL_StrLoss": "153", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040E2F48166345EC0C9C607661AC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.818717872999983, 51.537621602000073 ], [ -120.822290235999972, 51.537784393000024 ], [ -120.821868274999972, 51.541364536000039 ], [ -120.821085964999966, 51.541328896000039 ], [ -120.820981587999967, 51.542214256000101 ], [ -120.820298291999933, 51.542183122000019 ], [ -120.815222588999958, 51.54195172500004 ], [ -120.815645095999955, 51.538371609000059 ], [ -120.816427349999927, 51.53840728600008 ], [ -120.816531807999979, 51.537521928000068 ], [ -120.818717872999983, 51.537621602000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024705", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "188.9", "sL_BldgLoss": "188.9", "sL_StrLoss": "188.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000608BC4A18A345EC048AACEEE39C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.822700070999986, 51.531297488000035 ], [ -120.824051217999951, 51.531359035000065 ], [ -120.823629461999957, 51.534939206000097 ], [ -120.820441736999967, 51.534793977000049 ], [ -120.817871398999941, 51.534676808 ], [ -120.818293620999953, 51.531096656000102 ], [ -120.822700070999986, 51.531297488000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024706", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "334", "sL_BldgLoss": "334", "sL_StrLoss": "334", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000718BE01CC1455EC023E68A39A5C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.087531965999986, 51.578622777000099 ], [ -121.087753444999976, 51.576643469000096 ], [ -121.084057524999977, 51.576483853000056 ], [ -121.084320464999976, 51.574135552000065 ], [ -121.084458474999934, 51.572902886000094 ], [ -121.089797249999933, 51.573133414000054 ], [ -121.089814385999929, 51.572724746000077 ], [ -121.09111232399999, 51.572745871000045 ], [ -121.091078433999925, 51.573554666000035 ], [ -121.09017967399997, 51.573540039000079 ], [ -121.089971380999927, 51.57540257700002 ], [ -121.091527132999971, 51.575469701000046 ], [ -121.091723409999929, 51.573714058000093 ], [ -121.097488174999967, 51.573962596000051 ], [ -121.09723734399995, 51.57620880200011 ], [ -121.097074499999977, 51.576208503000046 ], [ -121.096316470999938, 51.57616000400003 ], [ -121.096211727999943, 51.576153292000122 ], [ -121.094659384999915, 51.575982999000082 ], [ -121.094324589999971, 51.575998201000047 ], [ -121.093878204999925, 51.576079704000094 ], [ -121.093028783999955, 51.576357907000073 ], [ -121.091938723999974, 51.576808403000079 ], [ -121.091415638999976, 51.577112256000049 ], [ -121.090234881999933, 51.577798193000049 ], [ -121.089564684999928, 51.578105710000031 ], [ -121.089301889999945, 51.578279687000119 ], [ -121.089090078999959, 51.578489995000034 ], [ -121.088630737999935, 51.579450028000139 ], [ -121.087368186999925, 51.579429454000042 ], [ -121.087402147999967, 51.578620661000102 ], [ -121.087531965999986, 51.578622777000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024707", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "1", "sL_AssetLoss": "491", "sL_BldgLoss": "491", "sL_StrLoss": "491", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002072440819325EC0430199A5B6C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.77717060699996, 51.539771595000083 ], [ -120.777234757999935, 51.53923200400002 ], [ -120.776540023999956, 51.539200079000047 ], [ -120.776724644999945, 51.537647295000028 ], [ -120.775862573, 51.537607674000085 ], [ -120.775871224999946, 51.536925570000093 ], [ -120.776041662999972, 51.535492178000091 ], [ -120.776212444999928, 51.534055799000043 ], [ -120.776347791999953, 51.534070601000074 ], [ -120.77673751199994, 51.534346899000113 ], [ -120.777137108999923, 51.534418109000114 ], [ -120.777675112999972, 51.534328393000102 ], [ -120.77862712299995, 51.534643101000022 ], [ -120.779306108999947, 51.534620389000096 ], [ -120.779954784999987, 51.534623207000038 ], [ -120.781272184, 51.534792698000039 ], [ -120.783032813999966, 51.535652890000023 ], [ -120.783391379999912, 51.535687094000131 ], [ -120.783592880999933, 51.535598673000031 ], [ -120.783572224999972, 51.535772652000027 ], [ -120.784425343999928, 51.53578877200006 ], [ -120.784537811999925, 51.535835206000044 ], [ -120.785798595999935, 51.535714107000047 ], [ -120.786844288999987, 51.535266902000032 ], [ -120.787656217999981, 51.535182895000041 ], [ -120.788081307999917, 51.535037602000095 ], [ -120.78910489899998, 51.534140412000028 ], [ -120.790408407999948, 51.534020806000051 ], [ -120.791649676999938, 51.534007998000057 ], [ -120.79166354299997, 51.534004881000051 ], [ -120.791288669999943, 51.537167054000051 ], [ -120.791263297999961, 51.537381060000023 ], [ -120.790468984999933, 51.537344656000116 ], [ -120.790251593999983, 51.537334691000098 ], [ -120.790246708999987, 51.537375885000102 ], [ -120.790188579999949, 51.537866085000083 ], [ -120.786070643999906, 51.537677255000091 ], [ -120.784430333999978, 51.537601996000092 ], [ -120.784485311999916, 51.537138883000054 ], [ -120.784150511999911, 51.537132558000074 ], [ -120.784163605999979, 51.536863010000062 ], [ -120.783444377, 51.53684941800006 ], [ -120.78343482799994, 51.536929845000067 ], [ -120.783298692999949, 51.536923597000083 ], [ -120.783156281999965, 51.538122910000048 ], [ -120.782929092999922, 51.540036050000047 ], [ -120.77717060699996, 51.539771595000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024708", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "180.7", "sL_BldgLoss": "180.7", "sL_StrLoss": "180.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A1E545E82385EC02922054730C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.881139034999961, 51.538421344000071 ], [ -120.883426122999978, 51.538524316000057 ], [ -120.883553857, 51.538679154000114 ], [ -120.883581503999935, 51.538704642000027 ], [ -120.884255598999914, 51.53932707800012 ], [ -120.884396122999973, 51.539425467000051 ], [ -120.884714381999956, 51.539648358000129 ], [ -120.884931159999937, 51.539800171000103 ], [ -120.884964816999968, 51.539823761000044 ], [ -120.88509867, 51.539917496000044 ], [ -120.88605264399996, 51.540438207000079 ], [ -120.886664856999928, 51.540683437000091 ], [ -120.886481249000013, 51.542260919000057 ], [ -120.885677050999988, 51.542224742000052 ], [ -120.885675212999971, 51.542240539000055 ], [ -120.87991582799999, 51.541981280000059 ], [ -120.880333072, 51.538400925000069 ], [ -120.881137194999965, 51.53843714100006 ], [ -120.881139034999961, 51.538421344000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024709", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.3", "sL_BldgLoss": "43.3", "sL_StrLoss": "43.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FA3ABA5BE3305EC083AB973A23C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.763125026999944, 51.515959047000045 ], [ -120.76528512299997, 51.51600023600006 ], [ -120.765219138999953, 51.517347964000066 ], [ -120.76243294799994, 51.517294829000029 ], [ -120.76219491699996, 51.517290287000037 ], [ -120.762216211999956, 51.516855930000169 ], [ -120.762234560999943, 51.51648165100007 ], [ -120.763098609999957, 51.516498138000046 ], [ -120.763125026999944, 51.515959047000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024712", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11759500", "BldgCostT": "8110000", "sL_LossRatio": "1", "sL_AssetLoss": "843.3", "sL_BldgLoss": "843.3", "sL_StrLoss": "843.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5511E69F2305EC0A6EDC28324C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.76712296599996, 51.529303639000084 ], [ -120.767143226999949, 51.529133496000036 ], [ -120.764174775999933, 51.528996759000016 ], [ -120.764201401999941, 51.528773305000072 ], [ -120.762593737999978, 51.52869921700006 ], [ -120.762599377999933, 51.528651890000084 ], [ -120.761612305999932, 51.528606391000046 ], [ -120.761721361999932, 51.527691560000115 ], [ -120.757495728999942, 51.527496681000059 ], [ -120.757503249999985, 51.527433639000058 ], [ -120.756077776999945, 51.527367862000069 ], [ -120.756061679999931, 51.527695172000023 ], [ -120.75583285099998, 51.527690793000026 ], [ -120.754177595, 51.526576455000061 ], [ -120.753776282999922, 51.526422951000058 ], [ -120.75301908499992, 51.52639832100013 ], [ -120.751145658999988, 51.52633733900003 ], [ -120.751155828000023, 51.526252207000013 ], [ -120.75094259799998, 51.526248116000019 ], [ -120.75093853199995, 51.52633059500009 ], [ -120.750285142999957, 51.526309318000138 ], [ -120.749884299999934, 51.526296267000077 ], [ -120.749645736000019, 51.526233902000108 ], [ -120.749646261999914, 51.526223247000075 ], [ -120.749601707999915, 51.526222392000065 ], [ -120.749466145000014, 51.526186952000089 ], [ -120.749127739999949, 51.526064228000102 ], [ -120.748870153999945, 51.525906544000073 ], [ -120.747991491999969, 51.5246973160001 ], [ -120.747997636999955, 51.524572812000024 ], [ -120.747899660999948, 51.524570931 ], [ -120.747586500999944, 51.524139933000114 ], [ -120.747605456999949, 51.52375588600006 ], [ -120.748037544999974, 51.523764186000058 ], [ -120.748050845999927, 51.523494643000078 ], [ -120.749347102999934, 51.523519530000094 ], [ -120.749293924999932, 51.524597699000026 ], [ -120.74972602099993, 51.524605992000019 ], [ -120.749712728999953, 51.524875534000032 ], [ -120.750144827999961, 51.524883826000071 ], [ -120.750131537, 51.525153369000044 ], [ -120.751284432999938, 51.525175483000055 ], [ -120.751440282999965, 51.523870583000139 ], [ -120.75152460799994, 51.523974394000106 ], [ -120.752355995999935, 51.524071214000081 ], [ -120.752777016999943, 51.524303405000111 ], [ -120.753022696999963, 51.524586803000012 ], [ -120.7537584949999, 51.52486169800008 ], [ -120.755707800999943, 51.525384405000089 ], [ -120.756282197999965, 51.52570198800008 ], [ -120.756770781999975, 51.525720502000063 ], [ -120.757106503999978, 51.525636392000102 ], [ -120.759572602, 51.525639294000023 ], [ -120.760416105999965, 51.52551109500007 ], [ -120.761657601999929, 51.525481201000019 ], [ -120.762912992999986, 51.526016691000081 ], [ -120.763446709999982, 51.526036595000029 ], [ -120.764287391999986, 51.526267997000076 ], [ -120.764642016999971, 51.526365606000084 ], [ -120.765741098999953, 51.526556508000056 ], [ -120.7663466, 51.526855591000079 ], [ -120.766430909999954, 51.527190291000075 ], [ -120.766832610999955, 51.527261508000066 ], [ -120.767454397999956, 51.527210208000106 ], [ -120.7681612799999, 51.526881197000073 ], [ -120.768301786999984, 51.526704595000112 ], [ -120.768296583999941, 51.526498095000164 ], [ -120.768068678999938, 51.52614199600005 ], [ -120.767428303999964, 51.525689102000051 ], [ -120.767031186999986, 51.52555671000006 ], [ -120.76605189799993, 51.525511108000053 ], [ -120.765259785999916, 51.525174858000057 ], [ -120.76554009299997, 51.525187771000056 ], [ -120.765576798999973, 51.524879610000028 ], [ -120.76571498899996, 51.524885977000089 ], [ -120.765729433999965, 51.524590949000093 ], [ -120.763957980999919, 51.524509328000107 ], [ -120.763896602999964, 51.524471409000085 ], [ -120.763429407, 51.523706605000015 ], [ -120.763241196999928, 51.523153998000097 ], [ -120.762931801999954, 51.522996001000088 ], [ -120.762428885999938, 51.522941808000084 ], [ -120.761920976999988, 51.522733892000097 ], [ -120.761521815999927, 51.522654200000083 ], [ -120.76083090799996, 51.522641292000046 ], [ -120.760447111999937, 51.522526003000095 ], [ -120.760092593999943, 51.522375 ], [ -120.759584394999962, 51.521862292000087 ], [ -120.759674985999965, 51.521188606000095 ], [ -120.761718106999979, 51.519546510000062 ], [ -120.761985311999979, 51.519083684000059 ], [ -120.761778200999942, 51.518585186000088 ], [ -120.761758918999973, 51.51780190100007 ], [ -120.761747956999983, 51.517754939000049 ], [ -120.762639986999957, 51.517796068000045 ], [ -120.766645740999934, 51.517980671000046 ], [ -120.766306140999987, 51.520832664000075 ], [ -120.768452678999978, 51.520931527000087 ], [ -120.768430751999944, 51.521115735000137 ], [ -120.769057871, 51.521144611000068 ], [ -120.768845455999951, 51.52292923800011 ], [ -120.769323317999962, 51.522951239000086 ], [ -120.76940358799996, 51.522276795000039 ], [ -120.775159738999932, 51.522541648000079 ], [ -120.774734091999946, 51.526121669000119 ], [ -120.773297881999952, 51.526055613000011 ], [ -120.772995953999896, 51.528594008000027 ], [ -120.772936280999915, 51.528600196000092 ], [ -120.7721924, 51.52953697300012 ], [ -120.769685797999941, 51.529421629000097 ], [ -120.767791573999929, 51.529334427000023 ], [ -120.76712296599996, 51.529303639000084 ] ], [ [ -120.767511086999903, 51.524841737000038 ], [ -120.767531067999926, 51.524673932000098 ], [ -120.767455559999945, 51.524670454000066 ], [ -120.767449405999955, 51.524796246000058 ], [ -120.76744112599999, 51.524965482 ], [ -120.767496052999888, 51.524968012000045 ], [ -120.767511086999903, 51.524841737000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024713", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "80.6", "sL_BldgLoss": "80.6", "sL_StrLoss": "80.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000091666645D8435EC0FFD81CCE99CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.064149585999971, 51.588875936000086 ], [ -121.065712810999941, 51.588943718000102 ], [ -121.064633758999932, 51.589427688000043 ], [ -121.063971338999977, 51.589724755000127 ], [ -121.06374450599999, 51.589826480000127 ], [ -121.0634571, 51.589998402000035 ], [ -121.062848216999924, 51.59054320100006 ], [ -121.062605485999953, 51.590717092000034 ], [ -121.062226304999982, 51.59089410200005 ], [ -121.05978709599998, 51.591777788000051 ], [ -121.058432535999884, 51.592160828000033 ], [ -121.05780138399993, 51.592339298000098 ], [ -121.056947846999918, 51.592587811000023 ], [ -121.057253824999989, 51.589871177000113 ], [ -121.057891607999977, 51.589898871000088 ], [ -121.057916007999921, 51.589682192000048 ], [ -121.063095830999885, 51.589906984000066 ], [ -121.063205323999981, 51.588933615000059 ], [ -121.064138546999942, 51.588974089000011 ], [ -121.064149585999971, 51.588875936000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024716", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "174.3", "sL_BldgLoss": "174.3", "sL_StrLoss": "174.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B612FC67B4395EC085B01A4BD8C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.89896403299997, 51.543743872000071 ], [ -120.904723761999946, 51.544002167000073 ], [ -120.90430844899997, 51.547582591000044 ], [ -120.898548253999977, 51.547324276000019 ], [ -120.89896403299997, 51.543743872000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024718", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.5", "sL_BldgLoss": "50.5", "sL_StrLoss": "50.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000012688F9B4A2E5EC0A90262D091BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.723023401999967, 51.487667605000119 ], [ -120.724750359999987, 51.487701136000084 ], [ -120.724683245000023, 51.489048834000116 ], [ -120.724251492999912, 51.489040453000044 ], [ -120.724238066999945, 51.48930999300007 ], [ -120.72380631099999, 51.489301610000041 ], [ -120.72377945399991, 51.489840689000097 ], [ -120.721620657999964, 51.489798751000059 ], [ -120.721674421999964, 51.488720596000093 ], [ -120.722969669999927, 51.488745761000104 ], [ -120.723023401999967, 51.487667605000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024719", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "163.9", "sL_BldgLoss": "163.9", "sL_StrLoss": "163.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001DD476FADE375EC08FADC2C1B9C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.870313739999972, 51.542811298000032 ], [ -120.87607318, 51.543071042000122 ], [ -120.875655543, 51.546651365000045 ], [ -120.869895639, 51.546391600000071 ], [ -120.870313739999972, 51.542811298000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024720", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "138.3", "sL_BldgLoss": "138.3", "sL_StrLoss": "138.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000089DFA0FF96365EC00C6B11EE21C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.850857472999976, 51.569452956000106 ], [ -120.856057503999978, 51.569688229000107 ], [ -120.856031149, 51.569913159000059 ], [ -120.855637985999948, 51.57326838500007 ], [ -120.849874713999952, 51.573007615000058 ], [ -120.850294697999985, 51.569427479000133 ], [ -120.850857472999976, 51.569452956000106 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024721", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "51.9", "sL_BldgLoss": "51.9", "sL_StrLoss": "51.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7F54D92D53E5EC06AB0DB2D6AC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.982195775999955, 51.558782795000063 ], [ -120.982219645999976, 51.558243632000028 ], [ -120.980489723999952, 51.558213863000063 ], [ -120.980501667999988, 51.557944281000047 ], [ -120.980069190999941, 51.557936836000081 ], [ -120.980105029999947, 51.55712809100006 ], [ -120.981402438999908, 51.557150425000138 ], [ -120.981390501999982, 51.557420006000065 ], [ -120.982687919999961, 51.557442325000103 ], [ -120.98266405699998, 51.55798148900007 ], [ -120.983529012999938, 51.557996360000125 ], [ -120.983493232999962, 51.558805106000101 ], [ -120.982195775999955, 51.558782795000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024723", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "188.4", "sL_BldgLoss": "188.4", "sL_StrLoss": "188.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF496D98D73C5EC08CE86C3BCCC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.95151341099999, 51.544062748000023 ], [ -120.955783801999971, 51.543516031000131 ], [ -120.955672900999915, 51.544481892000071 ], [ -120.952945203999931, 51.544360833000013 ], [ -120.952660911999928, 51.546835257000048 ], [ -120.946900532999962, 51.546579388000048 ], [ -120.947125411999977, 51.544624331000065 ], [ -120.95151341099999, 51.544062748000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024724", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "167.4", "sL_BldgLoss": "167.4", "sL_StrLoss": "167.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B5F7EB4686375EC069FB99726CC84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.864898795999963, 51.563889412000101 ], [ -120.870660961999931, 51.564149424000043 ], [ -120.870284977999944, 51.567367686000075 ], [ -120.870242685999955, 51.567729653000029 ], [ -120.86597513699995, 51.567537112000103 ], [ -120.864480053999912, 51.567469620000068 ], [ -120.864898795999963, 51.563889412000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024725", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "165", "sL_BldgLoss": "165", "sL_StrLoss": "165", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F6E3DD2E073C5EC09269238D40C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.935264557, 51.546926429000102 ], [ -120.941024914999943, 51.547182887000055 ], [ -120.94061252599991, 51.55076343300005 ], [ -120.934851701999918, 51.550506955000095 ], [ -120.935264557, 51.546926429000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024726", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "168.6", "sL_BldgLoss": "168.6", "sL_StrLoss": "168.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005092C736DD425EC0C2C3B46F6EC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.042072742999935, 51.556141757 ], [ -121.047834923999943, 51.55639281100013 ], [ -121.047764972999985, 51.557013194000035 ], [ -121.047431142999969, 51.559973706000044 ], [ -121.041668495999929, 51.559722633000064 ], [ -121.041884257999982, 51.557811459000078 ], [ -121.042072742999935, 51.556141757 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024727", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3438917", "BldgCostT": "2371667", "sL_LossRatio": "1", "sL_AssetLoss": "232", "sL_BldgLoss": "232", "sL_StrLoss": "232", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009928C622DB315EC0BD3DA5D63DC14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.779254107999932, 51.513297867000041 ], [ -120.77928033399999, 51.51275877000009 ], [ -120.778848340999957, 51.51275058700007 ], [ -120.778854412999934, 51.51262580700012 ], [ -120.778883498999946, 51.512028005000047 ], [ -120.77758924299998, 51.511968508000038 ], [ -120.777581689999963, 51.512123640000091 ], [ -120.777552363, 51.512726031000099 ], [ -120.776256388999954, 51.512701458000052 ], [ -120.77624325699999, 51.512971007000111 ], [ -120.774947276999967, 51.512946421000052 ], [ -120.77498553299999, 51.512161538000079 ], [ -120.77499982799999, 51.511868230000061 ], [ -120.775695703999972, 51.51188143300007 ], [ -120.774151572999955, 51.511810403000069 ], [ -120.773145923999948, 51.511764131000056 ], [ -120.773278616999903, 51.510648106000104 ], [ -120.773652591999962, 51.510690790000069 ], [ -120.773717439999956, 51.510684243000085 ], [ -120.774710391999946, 51.510583989000111 ], [ -120.775365590999968, 51.510444388000082 ], [ -120.776434100999921, 51.510078396000054 ], [ -120.778036091999923, 51.510045610000141 ], [ -120.778642508999909, 51.509732293000091 ], [ -120.779148711999966, 51.509715186000065 ], [ -120.779735902999946, 51.509493006000035 ], [ -120.779750694999976, 51.509169710000087 ], [ -120.779740407999938, 51.509069999000161 ], [ -120.779542602999953, 51.508994592000043 ], [ -120.778663288999951, 51.508987388 ], [ -120.77777987599994, 51.508511693000052 ], [ -120.77772029199997, 51.508231214000091 ], [ -120.778061380999972, 51.507177297000062 ], [ -120.778258380999887, 51.506973594000073 ], [ -120.778351405999928, 51.506552009000131 ], [ -120.77855408399995, 51.506529194000066 ], [ -120.778433706999962, 51.506015100000113 ], [ -120.777996972999972, 51.50543282600011 ], [ -120.781571910999943, 51.505597146000092 ], [ -120.781504816999956, 51.50616242600006 ], [ -120.781616247999963, 51.506167546000043 ], [ -120.78155390799995, 51.506692764 ], [ -120.781631884999982, 51.506696346000155 ], [ -120.781510813999901, 51.507716349000063 ], [ -120.782735618999979, 51.507772618000054 ], [ -120.782727703999939, 51.507839314000115 ], [ -120.782310729999963, 51.511352719000037 ], [ -120.781828048999927, 51.511330546000089 ], [ -120.781471518999965, 51.511314166 ], [ -120.781423514999986, 51.511718539000107 ], [ -120.778951065999934, 51.51160492000006 ], [ -120.778910985999943, 51.511942384000079 ], [ -120.78061562799995, 51.5119746620001 ], [ -120.78058261799994, 51.512653608000093 ], [ -120.780550103999971, 51.513322406000043 ], [ -120.779254107999932, 51.513297867000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024729", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "137.4", "sL_BldgLoss": "137.4", "sL_StrLoss": "137.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000014756A57363B5EC02F1CC6AC30C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.924013389999914, 51.548755602000035 ], [ -120.923357993999957, 51.548600415000095 ], [ -120.922209737999978, 51.548631454000017 ], [ -120.922338707999984, 51.547515755000106 ], [ -120.919213431999964, 51.547376136000075 ], [ -120.919245421999989, 51.547099550000034 ], [ -120.921875387999975, 51.547203643000024 ], [ -120.924077547999957, 51.547290758000024 ], [ -120.926194450999958, 51.547374475000012 ], [ -120.927309205999904, 51.547372912000085 ], [ -120.928154618999969, 51.54729174200007 ], [ -120.927847419999978, 51.549952234000074 ], [ -120.924434310999942, 51.549799927000102 ], [ -120.924474607999983, 51.549402209000085 ], [ -120.924580605999935, 51.549269811000059 ], [ -120.924475312999903, 51.549060404000116 ], [ -120.924013389999914, 51.548755602000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024730", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "161", "sL_BldgLoss": "161", "sL_StrLoss": "161", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000194AF5B63C385EC0D1F213398AC44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.877333138999987, 51.537579016000031 ], [ -120.877523580999977, 51.535945572000088 ], [ -120.875704497999948, 51.535863576000047 ], [ -120.876122025999962, 51.532283215000049 ], [ -120.876163847999948, 51.532285101000106 ], [ -120.876431573, 51.532338699000036 ], [ -120.876769421999924, 51.532450371000067 ], [ -120.8775031099999, 51.532692888000021 ], [ -120.878482390999949, 51.533204994000172 ], [ -120.878852719999927, 51.533467304000091 ], [ -120.879300948999955, 51.53386246000008 ], [ -120.879640092999963, 51.53416142 ], [ -120.88011622, 51.534608488000053 ], [ -120.881189987999932, 51.53562501900003 ], [ -120.881218890999946, 51.535652401000029 ], [ -120.881953261999953, 51.536491696000013 ], [ -120.882190082999983, 51.536838802000055 ], [ -120.882865101, 51.53782819500001 ], [ -120.877333138999987, 51.537579016000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024731", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "110.5", "sL_BldgLoss": "110.5", "sL_StrLoss": "110.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD0AC2AA74375EC0092BDBA8CAC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.864189193999934, 51.531135570000117 ], [ -120.864449128000018, 51.528911449000077 ], [ -120.864328055999948, 51.528905977000086 ], [ -120.864581781999988, 51.526734791000123 ], [ -120.86493667799995, 51.52683406000007 ], [ -120.865458127999915, 51.527051993 ], [ -120.865753952999967, 51.527225942000094 ], [ -120.86593879699997, 51.527334637000074 ], [ -120.866326400999966, 51.527608605000061 ], [ -120.867595738999967, 51.528798826000099 ], [ -120.867681388999955, 51.528879159000013 ], [ -120.86918517099997, 51.530140204000077 ], [ -120.869808354999918, 51.530528251000106 ], [ -120.870033818999914, 51.530652539000137 ], [ -120.869947068999949, 51.531395627000038 ], [ -120.864189193999934, 51.531135570000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024732", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "131.9", "sL_BldgLoss": "131.9", "sL_StrLoss": "131.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007E0A788044315EC0E3C87F5821C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.769262962999946, 51.534140839 ], [ -120.768267438999914, 51.533664866000038 ], [ -120.767497317000021, 51.533456599000147 ], [ -120.76755475899995, 51.532974264000067 ], [ -120.767345716999898, 51.532964639000085 ], [ -120.767772029999946, 51.52938467000007 ], [ -120.767853267999953, 51.529388411000113 ], [ -120.769708578999939, 51.529473820000135 ], [ -120.772153218999975, 51.529586313000081 ], [ -120.77141620699993, 51.530514395000118 ], [ -120.77076970399996, 51.531041305000045 ], [ -120.770622714999931, 51.531119606000111 ], [ -120.770565612999945, 51.531693587000106 ], [ -120.770196784999911, 51.532459801000122 ], [ -120.769688124999959, 51.532855804000107 ], [ -120.76966128, 51.533062296000033 ], [ -120.769834279999955, 51.533361397000107 ], [ -120.771690096999976, 51.534072011000028 ], [ -120.772492477999947, 51.534176000000123 ], [ -120.773214911999958, 51.534057854000139 ], [ -120.773028092999965, 51.535628190000104 ], [ -120.771321264999955, 51.535549678000038 ], [ -120.770958833999956, 51.535408543000131 ], [ -120.769520480999944, 51.534333349000093 ], [ -120.769262962999946, 51.534140839 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024733", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "167.2", "sL_BldgLoss": "167.2", "sL_StrLoss": "167.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7EABFB570355EC00C44264BF3C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.83185898, 51.532486291000076 ], [ -120.832280042999955, 51.528906081000045 ], [ -120.833949783999913, 51.528982000000106 ], [ -120.833957903999959, 51.529104401000048 ], [ -120.83382489199991, 51.529174207000075 ], [ -120.83364120799996, 51.529134287000076 ], [ -120.833487686999931, 51.529293806000119 ], [ -120.833511691999973, 51.529402096000084 ], [ -120.834407988999956, 51.529383494000143 ], [ -120.834619391, 51.529476091000042 ], [ -120.834291591999914, 51.529676904000041 ], [ -120.833800509999932, 51.529695396000058 ], [ -120.832762803, 51.530027296000071 ], [ -120.832309111999962, 51.530468799000097 ], [ -120.832377010999934, 51.530837689000101 ], [ -120.832761506999972, 51.530935909000057 ], [ -120.83256178, 51.530589798000086 ], [ -120.832752285999931, 51.530233793000093 ], [ -120.834639491999965, 51.52964839200007 ], [ -120.834739304999928, 51.529380709000115 ], [ -120.834586417999972, 51.529269602000056 ], [ -120.833705288999965, 51.52928948900005 ], [ -120.833722113999954, 51.52922689800004 ], [ -120.834073900999911, 51.529134295000048 ], [ -120.834154101999928, 51.528991288000071 ], [ -120.838037436999983, 51.529167751000102 ], [ -120.837616839999939, 51.532747983000064 ], [ -120.83185898, 51.532486291000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024735", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "53.7", "sL_BldgLoss": "53.7", "sL_StrLoss": "53.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AF624C55F5475EC06D9C7F8141C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.12276409499998, 51.549308644000078 ], [ -121.122916231999966, 51.547938247000033 ], [ -121.123526177999921, 51.548054103000062 ], [ -121.123714967999888, 51.548111420000083 ], [ -121.124516017999952, 51.548354706000048 ], [ -121.125054132999963, 51.548581742000074 ], [ -121.126082464999968, 51.549015553000068 ], [ -121.127182415999968, 51.549498059000101 ], [ -121.12276409499998, 51.549308644000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024736", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "160", "sL_BldgLoss": "160", "sL_StrLoss": "160", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B53EB9A9C375EC0AF833930EFC84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.866261293999926, 51.567879350000034 ], [ -120.87202399100002, 51.568139293000115 ], [ -120.871605788999915, 51.571719513000048 ], [ -120.865842624999914, 51.57145955 ], [ -120.866261293999926, 51.567879350000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024737", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "201.9", "sL_BldgLoss": "201.9", "sL_StrLoss": "201.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000806EFD2ECB325EC0A201825A88C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.791134326999952, 51.505585787000101 ], [ -120.791390066999924, 51.503427038000055 ], [ -120.78993514499993, 51.503360300000054 ], [ -120.790324766999916, 51.500071928000061 ], [ -120.790530697999898, 51.500244255000034 ], [ -120.791755479999907, 51.501600795000037 ], [ -120.792369721999975, 51.502177914000065 ], [ -120.79264153199999, 51.502327536000024 ], [ -120.79284762499999, 51.502440996000054 ], [ -120.793464068, 51.502645647000044 ], [ -120.794086194999977, 51.502729063000082 ], [ -120.794539433999944, 51.502748928000067 ], [ -120.796273753999941, 51.502752130000061 ], [ -120.796994587999947, 51.502753455000047 ], [ -120.797422350999938, 51.502753197000104 ], [ -120.797121809999936, 51.505293083000048 ], [ -120.796955182999923, 51.505285450000024 ], [ -120.796793178, 51.506654388000115 ], [ -120.791038973999932, 51.506390626000098 ], [ -120.791134326999952, 51.505585787000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024738", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "56.2", "sL_BldgLoss": "56.2", "sL_StrLoss": "56.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A016C5A37B355EC06E011DBDCCC24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.833139033999942, 51.522427842000099 ], [ -120.833398124999988, 51.520223846000128 ], [ -120.834232263999965, 51.520804591000115 ], [ -120.834668499999907, 51.521034872000044 ], [ -120.834838470999983, 51.521124587000116 ], [ -120.83525752099996, 51.521263917000056 ], [ -120.836421630999922, 51.521650978000068 ], [ -120.837355992999917, 51.521702443 ], [ -120.838896038999962, 51.521659909000071 ], [ -120.839015845999953, 51.521665351000081 ], [ -120.83889558599995, 51.522689472000089 ], [ -120.835854834999935, 51.52255131000004 ], [ -120.833139033999942, 51.522427842000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024740", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.3", "sL_BldgLoss": "55.3", "sL_StrLoss": "55.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040A77BF80D365EC098E525DE05C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.842447951999986, 51.524313692000064 ], [ -120.842547533999948, 51.523465115000114 ], [ -120.842020297999966, 51.523441182000035 ], [ -120.842175762999915, 51.522116459000067 ], [ -120.842353499999945, 51.522032871000057 ], [ -120.843606536999943, 51.52256217700009 ], [ -120.844223458999934, 51.522786792000062 ], [ -120.84425591199998, 51.522798602000087 ], [ -120.848265048999934, 51.524060925000057 ], [ -120.848204805999941, 51.524574850000114 ], [ -120.842447951999986, 51.524313692000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024741", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "60", "sL_BldgLoss": "60", "sL_StrLoss": "60", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B28D4F332A3F5EC0A77F62C7F3C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.987377610999914, 51.53944713900006 ], [ -120.987389506999989, 51.539177555000094 ], [ -120.98522800299996, 51.539140444000097 ], [ -120.985273498999987, 51.538110457000116 ], [ -120.985454786999952, 51.53808169400007 ], [ -120.985589995999959, 51.538067512000097 ], [ -120.986140214000017, 51.538076960000083 ], [ -120.986143192999947, 51.538009484000042 ], [ -120.987161014999927, 51.537902711000115 ], [ -120.987447080999956, 51.537872711000077 ], [ -120.9874370859999, 51.538099220000028 ], [ -120.987869377999942, 51.538106638000073 ], [ -120.987857484999935, 51.538376221000128 ], [ -120.988289778999984, 51.538383637000017 ], [ -120.98827788899996, 51.538653221000054 ], [ -120.988710185999949, 51.538660634000074 ], [ -120.988674522999958, 51.539469386000043 ], [ -120.987377610999914, 51.53944713900006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024742", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "53.8", "sL_BldgLoss": "53.8", "sL_StrLoss": "53.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F79739748395EC0089D84907BC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.892276297999942, 51.543340813000015 ], [ -120.892447130999969, 51.541871456000145 ], [ -120.893466716, 51.541998074000027 ], [ -120.894131602999948, 51.542080639000083 ], [ -120.896198018999939, 51.542337208000077 ], [ -120.898154317999939, 51.542580074000099 ], [ -120.898035933999964, 51.54359944600003 ], [ -120.892276297999942, 51.543340813000015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024743", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6283333", "BldgCostT": "4333333", "sL_LossRatio": "1", "sL_AssetLoss": "459", "sL_BldgLoss": "459", "sL_StrLoss": "459", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A4AD2F3362E5EC050E2B543AABD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.716205053999971, 51.485068128000087 ], [ -120.716569856999968, 51.482031054000046 ], [ -120.716507278999984, 51.482028142000068 ], [ -120.716525399999938, 51.481877270000098 ], [ -120.71579616599999, 51.481843322000081 ], [ -120.715854526, 51.481357483000124 ], [ -120.715856852999977, 51.481338106000081 ], [ -120.714963271999977, 51.481296500000049 ], [ -120.71499666599999, 51.481018549000055 ], [ -120.71503900799999, 51.481009577000073 ], [ -120.716607366999966, 51.480609354000116 ], [ -120.71687036599999, 51.480542245000095 ], [ -120.717818161999944, 51.480257839000039 ], [ -120.718199262999988, 51.480093781000072 ], [ -120.718794358999958, 51.47975521500009 ], [ -120.719088335999956, 51.479587954000074 ], [ -120.720364452999931, 51.479156839000026 ], [ -120.720997567999959, 51.478880299000089 ], [ -120.72204082599994, 51.478257412000104 ], [ -120.722480785999949, 51.478084400000043 ], [ -120.722546269999924, 51.478071900000046 ], [ -120.722803292999956, 51.478022874000018 ], [ -120.725655033999942, 51.477470570000015 ], [ -120.726819215999981, 51.479371421000117 ], [ -120.726956040999966, 51.479773781000063 ], [ -120.727228265999912, 51.480324623000094 ], [ -120.727651672, 51.480989568000041 ], [ -120.727894011000032, 51.481162823000105 ], [ -120.728108079999956, 51.481293029000078 ], [ -120.728513909999918, 51.481539879000103 ], [ -120.728499079999949, 51.48183823600008 ], [ -120.728255994999984, 51.481833526000081 ], [ -120.72797221799999, 51.484201342000098 ], [ -120.724409658999946, 51.484035821000056 ], [ -120.722221359999963, 51.483934094000041 ], [ -120.72233016200002, 51.483027277000062 ], [ -120.722504923999963, 51.481570624000057 ], [ -120.722345731999937, 51.48156322200002 ], [ -120.722322986, 51.481752805000013 ], [ -120.72238556399999, 51.481755715000126 ], [ -120.722238521999927, 51.482981293000115 ], [ -120.72195602499994, 51.485335681000095 ], [ -120.716205053999971, 51.485068128000087 ] ], [ [ -120.725972636999941, 51.480508524000072 ], [ -120.726002852999926, 51.479901237000036 ], [ -120.725573000999958, 51.479892896000059 ], [ -120.725528072999964, 51.480267607 ], [ -120.722985641999941, 51.480149428000118 ], [ -120.72295936799999, 51.480368465000026 ], [ -120.725972636999941, 51.480508524000072 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024745", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "281", "sL_BldgLoss": "281", "sL_StrLoss": "281", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9C2DD93263B5EC04A5C2AE39DCA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.918349451999916, 51.585110915000023 ], [ -120.918748364999914, 51.581665407000145 ], [ -120.922606083999966, 51.581837611000033 ], [ -120.923939171999976, 51.581897088000034 ], [ -120.924024965999962, 51.581155230000014 ], [ -120.929789741999969, 51.581412248000035 ], [ -120.92946227499999, 51.584246892000117 ], [ -120.930125531999977, 51.584276444000075 ], [ -120.930096345, 51.584529116000049 ], [ -120.929732688999962, 51.584564697000033 ], [ -120.928881307999944, 51.584536483000086 ], [ -120.92873691699999, 51.584531692000063 ], [ -120.928171271999972, 51.584512948000054 ], [ -120.927834892999925, 51.584501796000076 ], [ -120.927556452999923, 51.584437577000074 ], [ -120.927302904, 51.584379109000054 ], [ -120.926747012999968, 51.584175189000085 ], [ -120.926663408999943, 51.584121110000105 ], [ -120.924179611999989, 51.584076994000029 ], [ -120.924101416999918, 51.58406760900003 ], [ -120.923368004999958, 51.583979609000025 ], [ -120.922916384999922, 51.583976493000058 ], [ -120.922484883999971, 51.584012096000059 ], [ -120.921758314999963, 51.584119210000011 ], [ -120.921192713999957, 51.584249610000086 ], [ -120.920878435999953, 51.584375749000074 ], [ -120.92021430799997, 51.584642295000044 ], [ -120.918834372999939, 51.58503590000003 ], [ -120.918349451999916, 51.585110915000023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024746", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "156.7", "sL_BldgLoss": "156.7", "sL_StrLoss": "156.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006DCDF333B7335EC0F905470BC8C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.809962962999947, 51.535642211000066 ], [ -120.811147408999915, 51.535696292000111 ], [ -120.810724562999908, 51.539276401000052 ], [ -120.804966008999941, 51.539013352000097 ], [ -120.80525375900001, 51.536579821 ], [ -120.805389321999925, 51.535433263000066 ], [ -120.809962962999947, 51.535642211000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024747", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "125", "sL_BldgLoss": "125", "sL_StrLoss": "125", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000696913CCBD345EC0403B751FDFC14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.821671297999913, 51.516786540000091 ], [ -120.822093038999981, 51.513206311000019 ], [ -120.823779736999938, 51.513283182000066 ], [ -120.827848319999958, 51.513468502000094 ], [ -120.827763557999916, 51.514188895000061 ], [ -120.827662411999981, 51.514177289000102 ], [ -120.826393973999942, 51.514198594000064 ], [ -120.825959992, 51.514523296000071 ], [ -120.82583669899995, 51.514987597000065 ], [ -120.82546718, 51.515503193000015 ], [ -120.824971805999908, 51.515872085000048 ], [ -120.824374194999976, 51.516031605000073 ], [ -120.823159987999958, 51.516107090000077 ], [ -120.822732307999914, 51.516306499000052 ], [ -120.822436306999961, 51.516454608000025 ], [ -120.822070312999969, 51.516804727000093 ], [ -120.821707471999929, 51.516788189000131 ], [ -120.821671297999913, 51.516786540000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024748", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "155.2", "sL_BldgLoss": "155.2", "sL_StrLoss": "155.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003845CBAADD2B5EC06418A0021AC24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.682052150999979, 51.517790267000059 ], [ -120.68093409799999, 51.516806418000058 ], [ -120.680702535999984, 51.516531880000059 ], [ -120.680607698999921, 51.51627544800008 ], [ -120.680619325999913, 51.51605997500009 ], [ -120.680791958999976, 51.515649568000121 ], [ -120.681183274999938, 51.515368608000117 ], [ -120.681391386999948, 51.515219198000061 ], [ -120.681834558999967, 51.514900983000068 ], [ -120.681865614999964, 51.514847542000055 ], [ -120.68188017899999, 51.514332537 ], [ -120.681809332999961, 51.513973714000052 ], [ -120.681371495999926, 51.513395214000063 ], [ -120.681028262, 51.513063245000048 ], [ -120.680520327999943, 51.512693860000077 ], [ -120.679642881999939, 51.51243676100011 ], [ -120.679594935999944, 51.512415167000057 ], [ -120.683448790999975, 51.512595624000078 ], [ -120.683061036999987, 51.515801254000067 ], [ -120.68214508299999, 51.515823598000047 ], [ -120.681936594999954, 51.515702614000091 ], [ -120.681538693999983, 51.515847903000079 ], [ -120.681415181999981, 51.515738203000069 ], [ -120.681114418999968, 51.515695505000053 ], [ -120.681461911999961, 51.515971807000014 ], [ -120.682360976999959, 51.516142695000028 ], [ -120.682925405999953, 51.516357230000025 ], [ -120.682841082999943, 51.517054246000079 ], [ -120.683333831999946, 51.517077309000051 ], [ -120.684900965999987, 51.51715064600009 ], [ -120.685007944999924, 51.516266 ], [ -120.685663321999968, 51.515830806000089 ], [ -120.686538582999916, 51.515901993000107 ], [ -120.68721230599999, 51.515619514000093 ], [ -120.690852837999913, 51.51578972700004 ], [ -120.690604698999906, 51.517843901000042 ], [ -120.690294766999969, 51.517917907000019 ], [ -120.690239933999962, 51.517930992000039 ], [ -120.687241335999957, 51.518646860000096 ], [ -120.686642461999924, 51.518693544000037 ], [ -120.68535508299999, 51.518594620000052 ], [ -120.684061882, 51.518437473000077 ], [ -120.683729476999929, 51.51839706700018 ], [ -120.683196000999885, 51.518285700000078 ], [ -120.682829271999935, 51.51815553400008 ], [ -120.682448252999961, 51.518020311000015 ], [ -120.682052150999979, 51.517790267000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024750", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "154.7", "sL_BldgLoss": "154.7", "sL_StrLoss": "154.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009BC3BD4B4C465EC0B557BCE441C64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.096068379999949, 51.54698503200008 ], [ -121.101485848999957, 51.547218544000032 ], [ -121.101086517999988, 51.550799661000056 ], [ -121.095324768999916, 51.550551300000109 ], [ -121.09571778099999, 51.547030985000013 ], [ -121.096068379999949, 51.54698503200008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024751", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.3", "sL_BldgLoss": "58.3", "sL_StrLoss": "58.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000090B1037CF13F5EC0CD0BEA3A58C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.998102433999946, 51.541519190000031 ], [ -120.998126097999915, 51.540980019000074 ], [ -120.999855384999975, 51.541009521000092 ], [ -120.999831739999962, 51.541548692000106 ], [ -121.000696393999974, 51.541563434000054 ], [ -121.000660938999943, 51.542372190000052 ], [ -120.997634598999952, 51.542320566000058 ], [ -120.997670105999958, 51.541511810000053 ], [ -120.998102433999946, 51.541519190000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024752", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390583", "BldgCostT": "2338333", "sL_LossRatio": "1", "sL_AssetLoss": "264.2", "sL_BldgLoss": "264.2", "sL_StrLoss": "264.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005EEA31DBDF3F5EC0C440D7BE80C74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.996855221000018, 51.556003594000074 ], [ -121.002617123999983, 51.556256935000114 ], [ -121.002209663999935, 51.55983767 ], [ -121.001241163999964, 51.559795108000117 ], [ -121.001188043999917, 51.560261793000066 ], [ -120.999339297999924, 51.560180523000078 ], [ -120.999216519999933, 51.561258737000053 ], [ -120.993453980999945, 51.561005226000113 ], [ -120.993862165999971, 51.557424527000109 ], [ -120.995710785999961, 51.557505885000083 ], [ -120.99583363899994, 51.556427671000058 ], [ -120.996802058999961, 51.556470280000021 ], [ -120.996855221000018, 51.556003594000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024753", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "365.1", "sL_BldgLoss": "365.1", "sL_StrLoss": "365.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081632A583E2E5EC0D5E4311CB2C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.710501209999904, 51.522414163000057 ], [ -120.710163952999963, 51.522366938000097 ], [ -120.709817550999915, 51.522359825000109 ], [ -120.709126595999976, 51.522425747000085 ], [ -120.708794985999958, 51.522379713000106 ], [ -120.708587346999977, 51.522265636000071 ], [ -120.708429272999979, 51.522088179000093 ], [ -120.708105134999954, 51.521019625000129 ], [ -120.710472400999961, 51.521129868000102 ], [ -120.710742055999958, 51.518889315000088 ], [ -120.713424303999929, 51.519014168000076 ], [ -120.713348099999919, 51.519072304000112 ], [ -120.7135202, 51.519408395000042 ], [ -120.713734803999898, 51.519429707000072 ], [ -120.713903997999935, 51.519190503000068 ], [ -120.714153107999891, 51.519150586000116 ], [ -120.714456086000013, 51.519416899000063 ], [ -120.71444848699997, 51.519552193000074 ], [ -120.714220917999953, 51.519781504000044 ], [ -120.713644777999932, 51.520084896000064 ], [ -120.713547004999967, 51.520307110000076 ], [ -120.713628015999959, 51.520687307000095 ], [ -120.715472286999955, 51.52128120600004 ], [ -120.71550998799998, 51.521288271000067 ], [ -120.718201001999915, 51.521792497000064 ], [ -120.719657693999949, 51.521758298000051 ], [ -120.719922715999957, 51.521637305000105 ], [ -120.7217143929999, 51.521573207000117 ], [ -120.722298884999972, 51.521709898000033 ], [ -120.722748722999896, 51.52194350500006 ], [ -120.723107384999977, 51.521969102000035 ], [ -120.723740788999947, 51.521990495000068 ], [ -120.724719293999968, 51.521756901000074 ], [ -120.726006712999961, 51.521665700000014 ], [ -120.727188110999933, 51.52195769700009 ], [ -120.72850559799997, 51.522406294000156 ], [ -120.728909016999978, 51.52241349800007 ], [ -120.729124610999961, 51.522148593000075 ], [ -120.729072388999938, 51.522021795000065 ], [ -120.728370394999942, 51.521081807000044 ], [ -120.727572219999942, 51.520588995000089 ], [ -120.727371488999935, 51.52031559900005 ], [ -120.727307417999981, 51.519567901000059 ], [ -120.727447111999979, 51.519372799000081 ], [ -120.728355584, 51.519048099000074 ], [ -120.728761390999978, 51.51899390600007 ], [ -120.729803513999954, 51.51866349400013 ], [ -120.730638282999976, 51.518660690000125 ], [ -120.732784520999985, 51.51895517600007 ], [ -120.732721382999941, 51.519482001000021 ], [ -120.735614823, 51.519616118000073 ], [ -120.735527720999954, 51.520343285000109 ], [ -120.736492645999988, 51.520387994000068 ], [ -120.736316439999953, 51.521859237000058 ], [ -120.735650446999955, 51.521696871000053 ], [ -120.734826967999979, 51.521589406000032 ], [ -120.733550583999957, 51.521554540000082 ], [ -120.733101590999979, 51.521582330000051 ], [ -120.732631420999965, 51.521678435000084 ], [ -120.730428887999935, 51.522346263000088 ], [ -120.730314529999958, 51.522380941000051 ], [ -120.72953696399999, 51.522626548000062 ], [ -120.729359989000031, 51.52265928800005 ], [ -120.72887550199999, 51.522748856000078 ], [ -120.728098320999905, 51.522822581000121 ], [ -120.727419110999932, 51.522837288000076 ], [ -120.727304760999914, 51.522839757000028 ], [ -120.727065921999952, 51.522795074000058 ], [ -120.726812246999955, 51.522747611000064 ], [ -120.72545772699999, 51.522254558000043 ], [ -120.725103632999975, 51.522214721000111 ], [ -120.724670801999977, 51.522240523000086 ], [ -120.72388083099996, 51.522396409000038 ], [ -120.723389445999914, 51.522427591000046 ], [ -120.723109869999973, 51.522389008000047 ], [ -120.722760312999981, 51.522340775000075 ], [ -120.722402624999958, 51.522234357000116 ], [ -120.721359064999959, 51.52192380000006 ], [ -120.72105968799994, 51.521886479000067 ], [ -120.72066001, 51.521901228000054 ], [ -120.720298524, 51.521983411000051 ], [ -120.719758332999987, 51.522264291000091 ], [ -120.719368615999954, 51.522412656000057 ], [ -120.717027103999968, 51.522848276000076 ], [ -120.71463161399997, 51.522817856000081 ], [ -120.71441992599999, 51.522834426000053 ], [ -120.71405460299998, 51.522863031000099 ], [ -120.71266754, 51.52308646600013 ], [ -120.712326355999949, 51.523059784000054 ], [ -120.711692395999975, 51.522892589000094 ], [ -120.710501209999904, 51.522414163000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024754", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "240.6", "sL_BldgLoss": "240.6", "sL_StrLoss": "240.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C7B3879B8335EC01E409670AEC04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.807799593999945, 51.507969278000118 ], [ -120.808140870999949, 51.505079327000026 ], [ -120.803187038999937, 51.504852758000041 ], [ -120.803331782000015, 51.503628109000068 ], [ -120.799813609999944, 51.50346706900006 ], [ -120.79989821299999, 51.502751702000111 ], [ -120.800005219999946, 51.502751636000013 ], [ -120.8035103, 51.502749414000043 ], [ -120.805434240999944, 51.502708737000077 ], [ -120.806355850999978, 51.502754505000048 ], [ -120.80696362499998, 51.50283718500004 ], [ -120.807497393999952, 51.502995680000026 ], [ -120.807840811999938, 51.503172197000012 ], [ -120.807995041999916, 51.503251485000149 ], [ -120.8084947, 51.503649586000094 ], [ -120.809045324999929, 51.5042332310001 ], [ -120.809022608999982, 51.504425649000027 ], [ -120.80924811899996, 51.50443595600008 ], [ -120.809617057999915, 51.504776259000046 ], [ -120.809986843000033, 51.505012722000046 ], [ -120.810721242999989, 51.505334244000046 ], [ -120.811305037999929, 51.505473392000034 ], [ -120.81154163399999, 51.505500642000094 ], [ -120.81196569299999, 51.505549488000085 ], [ -120.812262870999945, 51.505543755000069 ], [ -120.812755698999965, 51.505534268000119 ], [ -120.813884050999917, 51.505435101000039 ], [ -120.813554104999923, 51.508232193000069 ], [ -120.807799593999945, 51.507969278000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024755", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "143.6", "sL_BldgLoss": "143.6", "sL_StrLoss": "143.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000007582FAF31455EC0EE47C4733AC94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.078210043999917, 51.572586696000066 ], [ -121.078479801999933, 51.570180140000033 ], [ -121.084244028999976, 51.570429348000104 ], [ -121.083852431000011, 51.573926844000034 ], [ -121.083843083999923, 51.574010323000046 ], [ -121.07807839099992, 51.573761096000055 ], [ -121.078210043999917, 51.572586696000066 ] ], [ [ -121.082776196999959, 51.57179929300009 ], [ -121.082700717999927, 51.571493101000058 ], [ -121.082626616999931, 51.571535893000075 ], [ -121.08245869299999, 51.571785109000089 ], [ -121.082776196999959, 51.57179929300009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024756", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6853667", "BldgCostT": "4726667", "sL_LossRatio": "1", "sL_AssetLoss": "466.2", "sL_BldgLoss": "466.2", "sL_StrLoss": "466.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001AD6E0BFB12F5EC0CB7E40140ABF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.74935418099993, 51.495450303000077 ], [ -120.74838308899993, 51.49443341500006 ], [ -120.747978411999966, 51.494128710000112 ], [ -120.747216485999928, 51.493808200000075 ], [ -120.746392288, 51.493289809000082 ], [ -120.745435809999918, 51.492839800000034 ], [ -120.744424606999956, 51.492576284000037 ], [ -120.743181396999915, 51.492103392000089 ], [ -120.742480983999911, 51.491982391000107 ], [ -120.742413001000017, 51.491908301000102 ], [ -120.74156728299999, 51.491830000000107 ], [ -120.74087412199999, 51.491834302000015 ], [ -120.740564703999937, 51.491989498000045 ], [ -120.740419094999936, 51.492284306000052 ], [ -120.74060508399999, 51.492908104000037 ], [ -120.740423214999936, 51.493380890000047 ], [ -120.74055599799999, 51.494184198000056 ], [ -120.740039597999925, 51.494731108000089 ], [ -120.739219785999978, 51.495300790000051 ], [ -120.739024899999933, 51.495719496000014 ], [ -120.738605815999932, 51.495765102000085 ], [ -120.73777859899991, 51.495597011000037 ], [ -120.737245204999951, 51.495585596000076 ], [ -120.736828344999978, 51.495335878000091 ], [ -120.737175701999945, 51.492433383000026 ], [ -120.73812809399999, 51.492477528000087 ], [ -120.73825397899995, 51.491425353000075 ], [ -120.738229435999941, 51.491424216000055 ], [ -120.738657713999928, 51.487844209000059 ], [ -120.743804680999958, 51.48808263899999 ], [ -120.74438162699991, 51.488341227000127 ], [ -120.744303304, 51.488996685000075 ], [ -120.745563004999894, 51.489054997000117 ], [ -120.745525177999951, 51.489371627000025 ], [ -120.746813796999973, 51.489431264000054 ], [ -120.747112704999964, 51.489565219000063 ], [ -120.74701177899999, 51.490410256000054 ], [ -120.74853269299993, 51.490480619000046 ], [ -120.748507287999985, 51.490693386 ], [ -120.749108688999982, 51.490721203000071 ], [ -120.749000290999945, 51.49162911100008 ], [ -120.750947488999898, 51.491719155000077 ], [ -120.750907500999929, 51.492054190000069 ], [ -120.751414795999921, 51.492077643000052 ], [ -120.751372785999948, 51.492429655000137 ], [ -120.751796307999896, 51.492449233000059 ], [ -120.751744274999965, 51.492885255000083 ], [ -120.752254122999943, 51.4929088210001 ], [ -120.752204644999964, 51.493323474000107 ], [ -120.752843631999923, 51.493353006000063 ], [ -120.752755697999973, 51.494090001000117 ], [ -120.753532260999975, 51.494125889000117 ], [ -120.753378893999965, 51.495411417000106 ], [ -120.75346925299999, 51.495415592000057 ], [ -120.753451754999972, 51.495562267000089 ], [ -120.754041589999986, 51.495589520000081 ], [ -120.75376271399999, 51.49721629900003 ], [ -120.753575594999958, 51.497528188000082 ], [ -120.753251796999905, 51.497656408000097 ], [ -120.750613411999979, 51.497677801000044 ], [ -120.750186588999895, 51.497562408000107 ], [ -120.749587898999948, 51.49715510300009 ], [ -120.748910496999926, 51.496863094000055 ], [ -120.748410198999977, 51.49648428700003 ], [ -120.748364383999956, 51.49624079200003 ], [ -120.748537585999955, 51.49596589100004 ], [ -120.749263389999896, 51.495834896000126 ], [ -120.74935418099993, 51.495450303000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024757", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.1", "sL_BldgLoss": "45.1", "sL_StrLoss": "45.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C946F7DEA5445EC0DEBDCC4536C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.069912865999981, 51.572399039000103 ], [ -121.069924285999932, 51.572129444000062 ], [ -121.069491649999989, 51.57212232600007 ], [ -121.069525921999954, 51.571313541000109 ], [ -121.070274140999985, 51.571325849000068 ], [ -121.070823804000028, 51.571334890000095 ], [ -121.070812387999965, 51.571604485000066 ], [ -121.071677649999955, 51.571618709000077 ], [ -121.071689060000011, 51.571349114000093 ], [ -121.072986945999943, 51.571370438000081 ], [ -121.072975543999974, 51.571640033000115 ], [ -121.076003965999945, 51.571689737000028 ], [ -121.075969808999943, 51.572498525000071 ], [ -121.072471096999919, 51.572441097000102 ], [ -121.069912865999981, 51.572399039000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024758", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "157.9", "sL_BldgLoss": "157.9", "sL_StrLoss": "157.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C38345C914335EC0A31C0E4312C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.795475988999954, 51.529885520000079 ], [ -120.801233291999893, 51.530149052000063 ], [ -120.800809691999987, 51.533729143000045 ], [ -120.795051923999949, 51.533465591000102 ], [ -120.795225952999928, 51.531996459000048 ], [ -120.795308883999951, 51.531964203000044 ], [ -120.795299319999941, 51.531891598000094 ], [ -120.7952406199999, 51.53187264300005 ], [ -120.795475988999954, 51.529885520000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024761", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "211.4", "sL_BldgLoss": "211.4", "sL_StrLoss": "211.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003F22BFE1723B5EC0471761AB00C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.930891895999977, 51.524640911000112 ], [ -120.930719914999941, 51.524592501000022 ], [ -120.93009709599994, 51.524662313000114 ], [ -120.929782020999937, 51.524333304000038 ], [ -120.929318418999969, 51.524351801000066 ], [ -120.928675208999934, 51.524548389000124 ], [ -120.928267986999927, 51.524306197000051 ], [ -120.927894709999933, 51.524282003000017 ], [ -120.927390094999907, 51.52462379900004 ], [ -120.92612878199999, 51.524754902000026 ], [ -120.925848880999965, 51.52455119300005 ], [ -120.925920886999975, 51.524274895000097 ], [ -120.926271608999969, 51.524155282000024 ], [ -120.926417800999971, 51.523770707000089 ], [ -120.926072293999965, 51.52346740200008 ], [ -120.925478293, 51.523223807000058 ], [ -120.924892791999966, 51.522772390000078 ], [ -120.92438122199998, 51.522295302000074 ], [ -120.924171784999942, 51.521850890000088 ], [ -120.924059092999954, 51.520824011000087 ], [ -120.92442730399992, 51.520345495000107 ], [ -120.924750592999956, 51.520188813000054 ], [ -120.925251378999917, 51.5193257950001 ], [ -120.924727083999954, 51.518515403000094 ], [ -120.92453163499999, 51.518338503000109 ], [ -120.928342684, 51.518508686000132 ], [ -120.928083957999945, 51.52075101400002 ], [ -120.92843283800002, 51.520766586 ], [ -120.928392485999936, 51.521116317000079 ], [ -120.929043441999966, 51.52114537000007 ], [ -120.928933242999932, 51.522100532000081 ], [ -120.93017047099994, 51.522155742000017 ], [ -120.930149849999964, 51.52233451300004 ], [ -120.932178012999913, 51.522424987000136 ], [ -120.931936218999979, 51.524521984000046 ], [ -120.933929, 51.524610844000051 ], [ -120.933516246999957, 51.528191442000029 ], [ -120.927758417999925, 51.527934600000059 ], [ -120.927842175999942, 51.52720887800011 ], [ -120.92811078599999, 51.527127594000042 ], [ -120.928790395999982, 51.526771495000048 ], [ -120.929487007999981, 51.526676097000049 ], [ -120.929842578999924, 51.52614199700006 ], [ -120.930550681999975, 51.525813090000064 ], [ -120.930736814999932, 51.525815897 ], [ -120.931096412999949, 51.52550830200007 ], [ -120.93101329299995, 51.524804689000113 ], [ -120.930891895999977, 51.524640911000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024762", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "149.6", "sL_BldgLoss": "149.6", "sL_StrLoss": "149.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000051B5068410375EC02908BBB4A3B94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.857015640000014, 51.452374905000084 ], [ -120.857102028999947, 51.451635395000089 ], [ -120.857025090999954, 51.451631907000092 ], [ -120.857443339999946, 51.448051316000075 ], [ -120.858154750999944, 51.448083569000048 ], [ -120.858157907999924, 51.448056533000077 ], [ -120.863904899999937, 51.448316916000103 ], [ -120.86348717499996, 51.451897530000075 ], [ -120.862852636999989, 51.451868795000053 ], [ -120.862763188999949, 51.452635345000054 ], [ -120.857015640000014, 51.452374905000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024763", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "149.9", "sL_BldgLoss": "149.9", "sL_StrLoss": "149.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000092B5FE16E2E5EC0CCF9397014BD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.716558386, 51.479402290000095 ], [ -120.717089991999956, 51.479133188000084 ], [ -120.717520580999945, 51.479160195000084 ], [ -120.717889510999925, 51.479292703000048 ], [ -120.718407523999929, 51.479302606000076 ], [ -120.718945804999962, 51.479195792000034 ], [ -120.72020678, 51.478744294000116 ], [ -120.721216317999989, 51.478134798000042 ], [ -120.721983890999979, 51.477483908000117 ], [ -120.72263170399999, 51.477199095000074 ], [ -120.724438683999949, 51.476165101000042 ], [ -120.724611691999911, 51.475907292000059 ], [ -120.724611984999939, 51.47558259000003 ], [ -120.724308911999969, 51.475001498000061 ], [ -120.724279281999912, 51.474191197000032 ], [ -120.724347377999933, 51.473640614000033 ], [ -120.725094097999957, 51.473675327000059 ], [ -120.72920455399999, 51.473866316000056 ], [ -120.729132211999953, 51.474470178000068 ], [ -120.729438688999934, 51.474484411000056 ], [ -120.729286737999956, 51.47575283000004 ], [ -120.729460777999961, 51.475760913000087 ], [ -120.729380288999963, 51.476432784000103 ], [ -120.729759713999925, 51.476450406000033 ], [ -120.729330824999977, 51.480030419000045 ], [ -120.728159552999955, 51.479976021000027 ], [ -120.728128102999946, 51.480608663000034 ], [ -120.728401258999938, 51.480621350000057 ], [ -120.728385024999952, 51.480756826000118 ], [ -120.728552665999985, 51.480760074000074 ], [ -120.728513909999918, 51.481539879000103 ], [ -120.728108079999956, 51.481293029000078 ], [ -120.727894011000032, 51.481162823000105 ], [ -120.727651672, 51.480989568000041 ], [ -120.727228265999912, 51.480324623000094 ], [ -120.726956040999966, 51.479773781000063 ], [ -120.726819215999981, 51.479371421000117 ], [ -120.725655033999942, 51.477470570000015 ], [ -120.722803292999956, 51.478022874000018 ], [ -120.722546269999924, 51.478071900000046 ], [ -120.722480785999949, 51.478084400000043 ], [ -120.72204082599994, 51.478257412000104 ], [ -120.720997567999959, 51.478880299000089 ], [ -120.720364452999931, 51.479156839000026 ], [ -120.719088335999956, 51.479587954000074 ], [ -120.718794358999958, 51.47975521500009 ], [ -120.718199262999988, 51.480093781000072 ], [ -120.717818161999944, 51.480257839000039 ], [ -120.71687036599999, 51.480542245000095 ], [ -120.716607366999966, 51.480609354000116 ], [ -120.71503900799999, 51.481009577000073 ], [ -120.71499666599999, 51.481018549000055 ], [ -120.71511050299992, 51.480070998 ], [ -120.715216718999969, 51.480004795000042 ], [ -120.716063299999973, 51.4798054030001 ], [ -120.716558386, 51.479402290000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024764", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "105.7", "sL_BldgLoss": "105.7", "sL_StrLoss": "105.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F775E1199365EC0A5AFD63FBEB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.85042827599996, 51.449197754000053 ], [ -120.856175371999939, 51.449458528000044 ], [ -120.855757007999983, 51.453039109000038 ], [ -120.85000944899997, 51.452778315000053 ], [ -120.85042827599996, 51.449197754000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024766", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "124.2", "sL_BldgLoss": "124.2", "sL_StrLoss": "124.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD248AB9F9325EC01FE61E545ABD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.798374808999981, 51.477684686000011 ], [ -120.798794808999972, 51.477629190000115 ], [ -120.799440175999933, 51.477721792000089 ], [ -120.799729100999954, 51.477691902000082 ], [ -120.800056673999975, 51.477556476000089 ], [ -120.799715021999958, 51.480446970000045 ], [ -120.798891443999977, 51.480409234000049 ], [ -120.798864693999931, 51.480635490000054 ], [ -120.79792043899999, 51.480592217000058 ], [ -120.797913153999943, 51.480653812000114 ], [ -120.792162337999983, 51.480390099000076 ], [ -120.79232137299999, 51.47904661300003 ], [ -120.792899700999953, 51.478920989000095 ], [ -120.79323419499994, 51.47859479100002 ], [ -120.79346577299998, 51.478544994000075 ], [ -120.794821920999965, 51.478516502000105 ], [ -120.798374808999981, 51.477684686000011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024768", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "96.7", "sL_BldgLoss": "96.7", "sL_StrLoss": "96.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000083DB7F09012A5EC01F3030A75BBD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.654422262999944, 51.481778453000054 ], [ -120.654593328999937, 51.48037075000007 ], [ -120.652019380999917, 51.480249491000095 ], [ -120.652446735999931, 51.476734064000063 ], [ -120.652454550999934, 51.476669772000079 ], [ -120.658204036999919, 51.476940551000069 ], [ -120.658033098999908, 51.478348265000058 ], [ -120.660606951999966, 51.478469388000164 ], [ -120.660172425999932, 51.482049132000071 ], [ -120.658261117999942, 51.481959193000051 ], [ -120.654422262999944, 51.481778453000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024770", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11856167", "BldgCostT": "8176667", "sL_LossRatio": "1", "sL_AssetLoss": "1171.9", "sL_BldgLoss": "1171.9", "sL_StrLoss": "1171.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007FE68B41D03C5EC001B3AD2CF2C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.943870510999915, 51.53813732000004 ], [ -120.944087248999963, 51.53625380200009 ], [ -120.944722309, 51.536061693000093 ], [ -120.945328916999983, 51.536037502000077 ], [ -120.945643112999974, 51.536114394000094 ], [ -120.946107677999976, 51.536364995000028 ], [ -120.946648293999971, 51.536491789000117 ], [ -120.946674009999981, 51.536572998000068 ], [ -120.947486289999958, 51.536766593000024 ], [ -120.948903687999973, 51.536692612000103 ], [ -120.949234411999981, 51.536374988000034 ], [ -120.949275577999956, 51.536132892000055 ], [ -120.949549602999966, 51.536101492000135 ], [ -120.949700008999969, 51.535996105000045 ], [ -120.948636409999949, 51.535600183000042 ], [ -120.947371704999938, 51.535191505000071 ], [ -120.946369399999938, 51.535030487000014 ], [ -120.946200017999956, 51.534928 ], [ -120.94611470699999, 51.534576212000076 ], [ -120.945809793999956, 51.534318397000028 ], [ -120.94426122099999, 51.533778604000126 ], [ -120.944399603999983, 51.533629090000076 ], [ -120.944302594999968, 51.533527995000043 ], [ -120.944895499999959, 51.533466698000062 ], [ -120.944827399999951, 51.533096494000041 ], [ -120.945918773999935, 51.532207694000093 ], [ -120.946252810999923, 51.531502784000033 ], [ -120.946676090999944, 51.53110541400013 ], [ -120.947369383999956, 51.530712295000107 ], [ -120.948301613999988, 51.53052290000003 ], [ -120.948594285999931, 51.52978939200009 ], [ -120.949117819, 51.529376400000025 ], [ -120.949452, 51.529310901000052 ], [ -120.949734104999933, 51.529154204000108 ], [ -120.950097913999954, 51.528719894000076 ], [ -120.950608603999953, 51.528575987000067 ], [ -120.950790486999963, 51.528389393000076 ], [ -120.951289012999965, 51.528209994000129 ], [ -120.952620493000012, 51.528080388000035 ], [ -120.953263286999984, 51.527929390000075 ], [ -120.953498988999939, 51.527798413000099 ], [ -120.9535953099999, 51.527584784000034 ], [ -120.953443505999971, 51.527446593000015 ], [ -120.953376708999912, 51.527328407000013 ], [ -120.95297752499999, 51.527231605000068 ], [ -120.951800896999984, 51.527399589000076 ], [ -120.951444415999958, 51.527304204000053 ], [ -120.950779584999935, 51.527346891000043 ], [ -120.949702884, 51.527245796000074 ], [ -120.94905440899997, 51.527271409000051 ], [ -120.947466694999918, 51.526990890000071 ], [ -120.946526609, 51.526723111000109 ], [ -120.946132496999965, 51.526805695000085 ], [ -120.94524220299995, 51.526764411000059 ], [ -120.944814517999987, 51.526980898000019 ], [ -120.94480489399993, 51.527170300000044 ], [ -120.945244998999968, 51.527312705000064 ], [ -120.945228402999959, 51.527375384000109 ], [ -120.944840175999929, 51.52733269400003 ], [ -120.944549201999905, 51.527714384000078 ], [ -120.943640511999945, 51.528353786000139 ], [ -120.942704299999932, 51.528652897000079 ], [ -120.941690301999955, 51.529120111000132 ], [ -120.940620390999982, 51.529793705000046 ], [ -120.938629200999969, 51.530145504000068 ], [ -120.937173714999972, 51.530119906000031 ], [ -120.936418001999982, 51.530296484000068 ], [ -120.935571590999984, 51.531143902000103 ], [ -120.93430918899999, 51.531625214000066 ], [ -120.934344617999898, 51.531779096000058 ], [ -120.93497770399992, 51.53182609800006 ], [ -120.935016090999966, 51.531917188000044 ], [ -120.93478569299999, 51.531948488000033 ], [ -120.934385794999969, 51.532184995000172 ], [ -120.933976395999977, 51.532303213000091 ], [ -120.93352979399998, 51.532610813000083 ], [ -120.932898413999951, 51.532859993000024 ], [ -120.93260137599999, 51.533033134000036 ], [ -120.931622707999935, 51.532989497000088 ], [ -120.932035661999961, 51.529408921000034 ], [ -120.932673456999979, 51.529437362000053 ], [ -120.932723156999927, 51.529006337000069 ], [ -120.932976964000019, 51.529017653000103 ], [ -120.933061684999984, 51.528282843000092 ], [ -120.93416318199999, 51.528331949000098 ], [ -120.934198452999965, 51.528025969000105 ], [ -120.935152777, 51.528068506000047 ], [ -120.935179019999964, 51.527840792000056 ], [ -120.937292452999955, 51.527934963000092 ], [ -120.937357253999906, 51.52737244300009 ], [ -120.938148956999939, 51.527407709000101 ], [ -120.93817733099999, 51.527161362000072 ], [ -120.938795976999984, 51.527188915000053 ], [ -120.938843725999945, 51.526774277000079 ], [ -120.939421221999979, 51.526799994000022 ], [ -120.939449812999925, 51.526551691000066 ], [ -120.93992748, 51.526572961000056 ], [ -120.939967610999958, 51.526224402000054 ], [ -120.940585318999979, 51.526251905000052 ], [ -120.940637707999926, 51.525796816000046 ], [ -120.941426159999963, 51.525831916000087 ], [ -120.94146849099999, 51.525464135000099 ], [ -120.94213505, 51.525493805000039 ], [ -120.94223030699996, 51.524666051000025 ], [ -120.944091366999913, 51.524748870000089 ], [ -120.944152549999927, 51.524216996000057 ], [ -120.949115551, 51.524437702000093 ], [ -120.949125518999949, 51.52421588400005 ], [ -120.94782907199999, 51.524193204000014 ], [ -120.947865439999987, 51.523384471000021 ], [ -120.950890431999952, 51.52343736600006 ], [ -120.950878326999899, 51.523706945000058 ], [ -120.951742616999951, 51.523722043000134 ], [ -120.95173051899999, 51.523991621000071 ], [ -120.953026961999967, 51.524014258000122 ], [ -120.953014869999933, 51.524283836000109 ], [ -120.953793527999935, 51.524297425000078 ], [ -120.953777616999929, 51.524473486000026 ], [ -120.953764029999917, 51.524623826000052 ], [ -120.953968346999915, 51.52498647600008 ], [ -120.955542722999937, 51.525411776000063 ], [ -120.955601561999984, 51.525422914000011 ], [ -120.955872423999921, 51.525474209000137 ], [ -120.956548109999943, 51.525602161000123 ], [ -120.957505789999956, 51.525640157000026 ], [ -120.957966520999904, 51.525596707000076 ], [ -120.958102160999914, 51.525565808000053 ], [ -120.958528074999961, 51.525468665000083 ], [ -120.959311191999916, 51.525313578000109 ], [ -120.959895130999953, 51.525242311000049 ], [ -120.960442623999924, 51.525224314000127 ], [ -120.960999799999939, 51.525285889000052 ], [ -120.96153363, 51.525433832000068 ], [ -120.96121135599995, 51.528244892 ], [ -120.959760476999975, 51.528180554000059 ], [ -120.959736462999942, 51.528717594000064 ], [ -120.958439879999915, 51.528695030000065 ], [ -120.95845194199994, 51.528425452000135 ], [ -120.958019750999938, 51.528417926000095 ], [ -120.95803380199996, 51.528103963000078 ], [ -120.957654630999954, 51.528087140000061 ], [ -120.957399514999949, 51.530310577000094 ], [ -120.956696354999977, 51.530279377000063 ], [ -120.95667839199993, 51.530435895000018 ], [ -120.952987478999916, 51.530272049000111 ], [ -120.952896964, 51.531060182000019 ], [ -120.95256805199989, 51.531045575000057 ], [ -120.952459029999943, 51.531994749000042 ], [ -120.952591913999939, 51.532000650000079 ], [ -120.952469062999967, 51.533070190000039 ], [ -120.954014538999957, 51.533138814000054 ], [ -120.953937646999933, 51.533808428000079 ], [ -120.957934164999955, 51.533985786000073 ], [ -120.957995785999969, 51.533448739000093 ], [ -120.958509494999973, 51.533471526000071 ], [ -120.958621016000023, 51.532499452000124 ], [ -120.964379621999925, 51.5327547320001 ], [ -120.963969267999957, 51.536335412000057 ], [ -120.963455522999979, 51.536312650000127 ], [ -120.963344098999954, 51.537284724000102 ], [ -120.958004506999941, 51.537048005000017 ], [ -120.957942879999948, 51.537585050000054 ], [ -120.952183680999923, 51.537329446000065 ], [ -120.952260605999953, 51.536659835000087 ], [ -120.949841369999945, 51.536552377000071 ], [ -120.949629768999941, 51.53839334500006 ], [ -120.943870510999915, 51.53813732000004 ] ], [ [ -120.95040153799999, 51.524693424000091 ], [ -120.950409859999922, 51.524508126000093 ], [ -120.949906962999947, 51.524499336000069 ], [ -120.949887287999928, 51.524670572000048 ], [ -120.95040153799999, 51.524693424000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024772", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1541834", "BldgCostT": "1063334", "sL_LossRatio": "1", "sL_AssetLoss": "100.4", "sL_BldgLoss": "100.4", "sL_StrLoss": "100.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000010479194382E5EC05C8D4F7506BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.720208145999905, 51.471638959000117 ], [ -120.720250023999981, 51.471289960000036 ], [ -120.718654617999903, 51.471215717000106 ], [ -120.718695675999953, 51.470873635000011 ], [ -120.718084819999945, 51.47084520200012 ], [ -120.718514534999912, 51.467265199000067 ], [ -120.718766588999955, 51.46727693200004 ], [ -120.718925595999963, 51.465952006000066 ], [ -120.723653175999956, 51.466171955000036 ], [ -120.724572707999954, 51.466214713000063 ], [ -120.724319407999957, 51.466422097000105 ], [ -120.723119993999944, 51.466497610000012 ], [ -120.722834991999974, 51.46672689000011 ], [ -120.72255428499993, 51.467171191000062 ], [ -120.722229692999974, 51.4673534900001 ], [ -120.722458107999955, 51.467924596000032 ], [ -120.723836794999926, 51.469183601000047 ], [ -120.723962991999926, 51.469247702000132 ], [ -120.72428039499998, 51.46923630400007 ], [ -120.724471382, 51.469140896000091 ], [ -120.725190687999969, 51.468292100000077 ], [ -120.726343011999944, 51.468008702000077 ], [ -120.727649990999936, 51.467179800000103 ], [ -120.727873154999969, 51.466987082000117 ], [ -120.728372529999945, 51.466996762000136 ], [ -120.728362763999925, 51.467193357000042 ], [ -120.728359139999952, 51.467266303000059 ], [ -120.728790687999933, 51.467274667 ], [ -120.728750520999981, 51.468083290000024 ], [ -120.727887408999962, 51.468066562000075 ], [ -120.727874014999912, 51.468336103000105 ], [ -120.727442456999967, 51.468327735000102 ], [ -120.727429059999977, 51.468597277000057 ], [ -120.726997499, 51.468588908000143 ], [ -120.726984098999964, 51.468858449000059 ], [ -120.726552535999971, 51.468850079000063 ], [ -120.72653913399995, 51.469119620000143 ], [ -120.72630457299999, 51.469115070000015 ], [ -120.726033957999931, 51.471372912000035 ], [ -120.72602139299994, 51.471372329000069 ], [ -120.725957386999966, 51.471906313000034 ], [ -120.725802744999967, 51.471899126000054 ], [ -120.724806482999924, 51.471852816000137 ], [ -120.724814200999916, 51.471809909000115 ], [ -120.724757891999928, 51.470901198000092 ], [ -120.724680687999978, 51.470754494000069 ], [ -120.724313184999943, 51.47060360900015 ], [ -120.72375339599995, 51.470566510000062 ], [ -120.72312539399995, 51.471030791000025 ], [ -120.721782689999941, 51.471076406000122 ], [ -120.721196689999914, 51.471308601000025 ], [ -120.721102012999921, 51.47146809500002 ], [ -120.721110932999977, 51.471680960000121 ], [ -120.720208145999905, 51.471638959000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024773", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "177.4", "sL_BldgLoss": "177.4", "sL_StrLoss": "177.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DF3B23FB3345EC04DB5588273B94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.820079250999953, 51.450930605000103 ], [ -120.820164887999923, 51.45020274300002 ], [ -120.820146602999927, 51.45020190900005 ], [ -120.820146898999951, 51.450199397000119 ], [ -120.819557783999954, 51.45017249200005 ], [ -120.819979057999888, 51.446592036000069 ], [ -120.821143903999953, 51.446645231000012 ], [ -120.82114520599994, 51.44663416300007 ], [ -120.821714813999947, 51.446660171000097 ], [ -120.82171497899995, 51.446658777000039 ], [ -120.827461573999969, 51.446921004000096 ], [ -120.827131278, 51.449732319000105 ], [ -120.827040901999951, 51.450501487000047 ], [ -120.82647124099995, 51.450475506 ], [ -120.826471076999937, 51.450476900000076 ], [ -120.825913532999962, 51.45045146800009 ], [ -120.8258263929999, 51.451192915000028 ], [ -120.821340224999972, 51.450988184000096 ], [ -120.820079250999953, 51.450930605000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024774", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3202084", "BldgCostT": "2208334", "sL_LossRatio": "1", "sL_AssetLoss": "288.7", "sL_BldgLoss": "288.7", "sL_StrLoss": "288.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000047938B3170355EC004ECBCF0F7C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.833398124999988, 51.520223846000128 ], [ -120.83351888, 51.519196547000021 ], [ -120.833455973999946, 51.519193686000079 ], [ -120.833418795999989, 51.519976887000041 ], [ -120.83308569399999, 51.519970732000097 ], [ -120.832804892999945, 51.51971655200002 ], [ -120.832406238999965, 51.519194499000044 ], [ -120.831968041999943, 51.51815953500008 ], [ -120.831859729999906, 51.517505821000071 ], [ -120.831898285999969, 51.516784093000098 ], [ -120.832021539999985, 51.516436950000077 ], [ -120.832244012999951, 51.516021430000052 ], [ -120.833015146999955, 51.515196267000064 ], [ -120.833730283999927, 51.51461329100006 ], [ -120.835039951999974, 51.51411018500005 ], [ -120.835657250999972, 51.513873034 ], [ -120.835343091999903, 51.513530314000093 ], [ -120.83451584699999, 51.512851995000084 ], [ -120.833958198999966, 51.512489189000149 ], [ -120.833422710999983, 51.512208394000041 ], [ -120.833045988999984, 51.512036016000081 ], [ -120.832817475999946, 51.511931456000092 ], [ -120.832702057999924, 51.511878665000054 ], [ -120.831704563999963, 51.511521403000103 ], [ -120.831369561999978, 51.511401398000061 ], [ -120.830814484999934, 51.511275352000084 ], [ -120.82942410199999, 51.511015169000089 ], [ -120.829611440999969, 51.509422281000077 ], [ -120.835366271999973, 51.509684092000064 ], [ -120.835165673999924, 51.511391609000057 ], [ -120.838956268999979, 51.511563898000119 ], [ -120.838535913999948, 51.515144195000076 ], [ -120.83645373, 51.515049572000045 ], [ -120.835856140999937, 51.515022408000078 ], [ -120.83574334199993, 51.515982559000115 ], [ -120.835604407999938, 51.515976243000082 ], [ -120.835375142999922, 51.51792756400009 ], [ -120.835248848999939, 51.517921822000105 ], [ -120.835172173999965, 51.518574367 ], [ -120.834982113999928, 51.518565726000134 ], [ -120.834941609999944, 51.518910417000043 ], [ -120.838752957999986, 51.519083625000114 ], [ -120.83931598399991, 51.519109201000134 ], [ -120.839244482999931, 51.519718160000096 ], [ -120.839015845999953, 51.521665351000081 ], [ -120.838896038999962, 51.521659909000071 ], [ -120.837355992999917, 51.521702443 ], [ -120.836421630999922, 51.521650978000068 ], [ -120.83525752099996, 51.521263917000056 ], [ -120.834838470999983, 51.521124587000116 ], [ -120.834668499999907, 51.521034872000044 ], [ -120.834232263999965, 51.520804591000115 ], [ -120.833398124999988, 51.520223846000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024775", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "146", "sL_BldgLoss": "146", "sL_StrLoss": "146", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8D7397ABA295EC06A92CCA801BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.649688211999916, 51.467027394000048 ], [ -120.650510883999942, 51.46645059600008 ], [ -120.650727012999965, 51.466436302000027 ], [ -120.651543496999963, 51.466524586000048 ], [ -120.652587385999979, 51.466941894000037 ], [ -120.653117209999948, 51.466987496000058 ], [ -120.653824301999961, 51.46696609300006 ], [ -120.654467304999955, 51.46679950000005 ], [ -120.655217078999939, 51.46675109100002 ], [ -120.656351235999935, 51.46673864800006 ], [ -120.655958813999973, 51.469969853000038 ], [ -120.65384663599994, 51.469870354000136 ], [ -120.653692885999959, 51.471135704000076 ], [ -120.64891902699999, 51.470910672000073 ], [ -120.647944186999908, 51.470864695000053 ], [ -120.648083502999938, 51.469719360000113 ], [ -120.648379596999916, 51.467284959000011 ], [ -120.64963675499996, 51.46734425000011 ], [ -120.649675105999933, 51.467028839000093 ], [ -120.649688211999916, 51.467027394000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024776", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61.4", "sL_BldgLoss": "61.4", "sL_StrLoss": "61.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C66E3C2BAB305EC084B32120DBBA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.757744112999973, 51.460827896000062 ], [ -120.75803941599996, 51.458348488000084 ], [ -120.758115119999928, 51.457712817000044 ], [ -120.75840650899994, 51.457788502000071 ], [ -120.759128701999927, 51.458315504000026 ], [ -120.760168990999915, 51.458829607000055 ], [ -120.76048320299999, 51.458872411000073 ], [ -120.760919307000023, 51.458808283000053 ], [ -120.761275092999952, 51.45888661 ], [ -120.761868384999985, 51.458843896000076 ], [ -120.762474119999936, 51.459107396000036 ], [ -120.76300201399999, 51.459504701000064 ], [ -120.76321341299996, 51.459571600000061 ], [ -120.76367125099992, 51.459588171000107 ], [ -120.763492172, 51.461093355000095 ], [ -120.761659207999969, 51.461008737000036 ], [ -120.757744112999973, 51.460827896000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024777", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50", "sL_BldgLoss": "50", "sL_StrLoss": "50", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000946F32818D2E5EC093CB1C1E84BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.728329311999971, 51.459171700000049 ], [ -120.728356086999909, 51.458632618000109 ], [ -120.727924618999964, 51.458624254000064 ], [ -120.727938009999932, 51.458354711000048 ], [ -120.727506544999954, 51.458346346000035 ], [ -120.72751993699994, 51.458076805000132 ], [ -120.727088475999892, 51.458068438000119 ], [ -120.727115263999977, 51.457529355000062 ], [ -120.726683808999923, 51.457520986000063 ], [ -120.726723996999965, 51.456712363000122 ], [ -120.726292549999982, 51.456703994000044 ], [ -120.726279148999964, 51.456973535000046 ], [ -120.724553348999933, 51.456940041000081 ], [ -120.724593574999972, 51.456131418000076 ], [ -120.725025017999968, 51.456139793000062 ], [ -120.72503842299993, 51.455870252000061 ], [ -120.725901302999915, 51.455886999000072 ], [ -120.725914703999976, 51.455617458000056 ], [ -120.72720901799994, 51.455642566000066 ], [ -120.727200431999933, 51.455815348 ], [ -120.727195622999957, 51.455912107000046 ], [ -120.72819323, 51.455931450000023 ], [ -120.7284899469999, 51.455937201000033 ], [ -120.728485917999947, 51.456018340000092 ], [ -120.72842302, 51.457284909000045 ], [ -120.728854473999974, 51.457293271000026 ], [ -120.728827705999919, 51.457832355000079 ], [ -120.729259165999935, 51.45784071500006 ], [ -120.7292457839999, 51.458110257000108 ], [ -120.729677245999937, 51.458118615000075 ], [ -120.729628712999911, 51.459096370000033 ], [ -120.729623728999911, 51.459196782000042 ], [ -120.728329311999971, 51.459171700000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024778", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "85.7", "sL_BldgLoss": "85.7", "sL_StrLoss": "85.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000066010B47AD285EC0C49B903152BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.63292004799996, 51.469332602000058 ], [ -120.638668455999948, 51.469604371000052 ], [ -120.638232234999947, 51.473184062000058 ], [ -120.632483362999935, 51.472912272000052 ], [ -120.63292004799996, 51.469332602000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024780", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "115.4", "sL_BldgLoss": "115.4", "sL_StrLoss": "115.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D800B6CD1E365EC0A197F672C4C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.843606536999943, 51.52256217700009 ], [ -120.842353499999945, 51.522032871000057 ], [ -120.842175762999915, 51.522116459000067 ], [ -120.842196155999943, 51.521942682000066 ], [ -120.842440446999959, 51.519860901000072 ], [ -120.84819671799994, 51.520122061000052 ], [ -120.848097253999981, 51.520970646000116 ], [ -120.848624464999915, 51.520994551000108 ], [ -120.848265048999934, 51.524060925000057 ], [ -120.84425591199998, 51.522798602000087 ], [ -120.844223458999934, 51.522786792000062 ], [ -120.843606536999943, 51.52256217700009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024781", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "102", "sL_BldgLoss": "102", "sL_StrLoss": "102", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D54BDFAD24295EC0DDF50CC08ABB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.639823342999989, 51.467132581000037 ], [ -120.639897033999929, 51.466527634000052 ], [ -120.639720181999948, 51.466519279000124 ], [ -120.640156215999951, 51.462939559000056 ], [ -120.644590001999916, 51.463148949000107 ], [ -120.645903833999967, 51.46321096300008 ], [ -120.645830231999966, 51.463815916000094 ], [ -120.64600707399994, 51.463824261000092 ], [ -120.64557150499995, 51.467404001000105 ], [ -120.64433015699997, 51.467345411000053 ], [ -120.639823342999989, 51.467132581000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024782", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "100.9", "sL_BldgLoss": "100.9", "sL_StrLoss": "100.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006C5A6B2004285EC0148696AF2AC04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.621598826999929, 51.503204425000064 ], [ -120.622036696999942, 51.499624905000111 ], [ -120.627788989999942, 51.499897216000058 ], [ -120.627743486999933, 51.500269614000047 ], [ -120.629456958, 51.50035067200006 ], [ -120.629173289000022, 51.50267287500003 ], [ -120.628505954999966, 51.50253503800009 ], [ -120.62783054, 51.502463474000137 ], [ -120.62677857599999, 51.50243081300011 ], [ -120.62584310299998, 51.502545925000042 ], [ -120.624667406999919, 51.502736867000031 ], [ -120.62260372199998, 51.503072031000059 ], [ -120.621764849000016, 51.503212290000057 ], [ -120.621598826999929, 51.503204425000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024783", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "89.8", "sL_BldgLoss": "89.8", "sL_StrLoss": "89.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E3FCB4EDA275EC0EE1F4DEDF3BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.620600547999942, 51.469608654000069 ], [ -120.62060961600001, 51.469534493000019 ], [ -120.619895528999919, 51.469500635000031 ], [ -120.619904678999958, 51.469425811000114 ], [ -120.619255312999954, 51.469395017000096 ], [ -120.619693036999962, 51.465815386000067 ], [ -120.620301261999941, 51.465844229000034 ], [ -120.620332807999958, 51.465859503000011 ], [ -120.62070308599999, 51.466504699000055 ], [ -120.621391987999985, 51.467104296000052 ], [ -120.622191597999944, 51.467480301000137 ], [ -120.623302485999957, 51.46772668800002 ], [ -120.624069885999958, 51.468183807000067 ], [ -120.624457689999986, 51.468209497000089 ], [ -120.624825789999989, 51.468064192000099 ], [ -120.625343115999925, 51.467542895000065 ], [ -120.626730394999953, 51.466757314000048 ], [ -120.626348916000012, 51.469881046000076 ], [ -120.620600547999942, 51.469608654000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024784", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "95.6", "sL_BldgLoss": "95.6", "sL_StrLoss": "95.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F2395E1EBE2A5EC0193499967DBD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.665195986999962, 51.478470173000041 ], [ -120.67094578499993, 51.478740307000066 ], [ -120.670512096, 51.482320090000087 ], [ -120.664761833999975, 51.48204993400001 ], [ -120.665195986999962, 51.478470173000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024785", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "116.4", "sL_BldgLoss": "116.4", "sL_StrLoss": "116.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000085B4A5926A3A5EC0EBC5D48658C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.908927258999967, 51.542297204000128 ], [ -120.908767191999985, 51.54228380900004 ], [ -120.90826219099992, 51.542270216000155 ], [ -120.90754595699994, 51.542319934000062 ], [ -120.907515240999928, 51.542322066000018 ], [ -120.907527854999941, 51.542213251000057 ], [ -120.907792880999935, 51.539926773000062 ], [ -120.907941132999923, 51.53993341400011 ], [ -120.907942445999936, 51.539922082000075 ], [ -120.908458471999964, 51.540097894000063 ], [ -120.909006187, 51.540080809000074 ], [ -120.909937801999931, 51.540196107 ], [ -120.910805908999976, 51.540453882000151 ], [ -120.912693094999966, 51.540838513000075 ], [ -120.913248193999948, 51.541000792000048 ], [ -120.91369790899995, 51.541261391000056 ], [ -120.913999317999938, 51.541267106000099 ], [ -120.914484292999987, 51.541050696000113 ], [ -120.914312595999959, 51.540112104000031 ], [ -120.914431900999915, 51.540033801000035 ], [ -120.914602984999988, 51.540063704000076 ], [ -120.915274886999939, 51.540488109000108 ], [ -120.915493217999952, 51.540790001000104 ], [ -120.915662395999902, 51.540532289000062 ], [ -120.916005592000019, 51.540582105000105 ], [ -120.916141083999889, 51.540495199000084 ], [ -120.916471087999966, 51.540519402 ], [ -120.91685160899999, 51.540399803000071 ], [ -120.917062204999979, 51.540502287 ], [ -120.917221398999942, 51.540819901000134 ], [ -120.91748650199996, 51.541013588000055 ], [ -120.917393494999942, 51.541479313000124 ], [ -120.917818602999944, 51.541648806000048 ], [ -120.918020998999936, 51.541643095000047 ], [ -120.918302578999942, 51.541442295000145 ], [ -120.91850640699991, 51.541409609000041 ], [ -120.919025614999939, 51.541742804000101 ], [ -120.918410998999917, 51.542252692000091 ], [ -120.918369000999959, 51.542557491000139 ], [ -120.918157830999959, 51.542723537000022 ], [ -120.913899701999924, 51.542533109000082 ], [ -120.913725045999968, 51.544041677000095 ], [ -120.912106650999974, 51.543969258000104 ], [ -120.911686785999962, 51.543469001000084 ], [ -120.911236012999908, 51.543061888000082 ], [ -120.910850079999975, 51.542819706000017 ], [ -120.91038899699997, 51.542614605000061 ], [ -120.909846508999976, 51.542437414000119 ], [ -120.90957584399996, 51.54238473100007 ], [ -120.909276101999978, 51.542326404000043 ], [ -120.908927258999967, 51.542297204000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024786", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "195", "sL_BldgLoss": "195", "sL_StrLoss": "195", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E76EB63D6A295EC076A49F153DBD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.646318046999923, 51.475024893000111 ], [ -120.64632854499996, 51.474821016000071 ], [ -120.645896949999937, 51.474812349000054 ], [ -120.645938592999983, 51.474003773000028 ], [ -120.647664941999921, 51.474038433000082 ], [ -120.647651071000013, 51.474307958000082 ], [ -120.648945842, 51.474333937000054 ], [ -120.648931979999986, 51.474603463000093 ], [ -120.64979516699999, 51.474620774000115 ], [ -120.649781309999966, 51.474890300000027 ], [ -120.651076098999965, 51.474916255000018 ], [ -120.651059026999974, 51.475248462000117 ], [ -120.651476469, 51.475268138000054 ], [ -120.651993754, 51.47529251800006 ], [ -120.651846243999941, 51.476505950000089 ], [ -120.65155855899999, 51.47887223900009 ], [ -120.64992275499992, 51.478795136000031 ], [ -120.64968479, 51.48075168000004 ], [ -120.648003460999945, 51.480672406000068 ], [ -120.64779830599997, 51.482358520000048 ], [ -120.64204817699999, 51.482087217000078 ], [ -120.642484176999986, 51.478507542000052 ], [ -120.644165414999975, 51.478586898000039 ], [ -120.644370691999953, 51.476900784000087 ], [ -120.646006415, 51.476977967000039 ], [ -120.646244522999936, 51.475021424000033 ], [ -120.646318046999923, 51.475024893000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024787", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "156.8", "sL_BldgLoss": "156.8", "sL_StrLoss": "156.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD33595016325EC0D187DB5FC5BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.777387354999973, 51.461011615000103 ], [ -120.777482374999948, 51.460210839000133 ], [ -120.777506489999951, 51.460212515000094 ], [ -120.778165875999917, 51.45966709300005 ], [ -120.779005187999971, 51.459601601000038 ], [ -120.779666492, 51.459336590000056 ], [ -120.780331386999976, 51.459268302000055 ], [ -120.781122579999973, 51.458671502000065 ], [ -120.781149097999943, 51.458437986000035 ], [ -120.780816385999941, 51.458188705000055 ], [ -120.78061669899995, 51.45811330100009 ], [ -120.779542194999976, 51.458012111000066 ], [ -120.778991487, 51.457821307000096 ], [ -120.778332373999916, 51.45752750700013 ], [ -120.77843550099999, 51.457532253000061 ], [ -120.77844771499997, 51.457429283000089 ], [ -120.778830589000023, 51.45744690599999 ], [ -120.778857409999958, 51.457220793000019 ], [ -120.78124843099998, 51.457330814000038 ], [ -120.78130052299997, 51.456891448000107 ], [ -120.787048209999938, 51.457155717000049 ], [ -120.786987391999972, 51.457669240000051 ], [ -120.786814270999969, 51.459130963000064 ], [ -120.786066990999956, 51.459753910000074 ], [ -120.785669325999947, 51.460528703000108 ], [ -120.78545464499993, 51.460682266000035 ], [ -120.784232940000024, 51.460626106000056 ], [ -120.784180872999954, 51.461065471000047 ], [ -120.783797965999923, 51.461047866000037 ], [ -120.783771168, 51.461273980000044 ], [ -120.783139248999987, 51.461244924000056 ], [ -120.783127042999965, 51.461347895000138 ], [ -120.779375843999944, 51.461175341000043 ], [ -120.777897048999961, 51.461107284000079 ], [ -120.777378832999943, 51.461083429000084 ], [ -120.777387354999973, 51.461011615000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024788", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "62.2", "sL_BldgLoss": "62.2", "sL_StrLoss": "62.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000011EA1A146A3A5EC0DD365B92E6C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.909492314999937, 51.508606118000067 ], [ -120.909600457999929, 51.507672053000121 ], [ -120.910035242, 51.507691538000081 ], [ -120.910092865999943, 51.507193764000078 ], [ -120.910457184, 51.507210090000079 ], [ -120.910510974999966, 51.506745374000118 ], [ -120.912699896999925, 51.506843433 ], [ -120.912770207999984, 51.506235725000046 ], [ -120.913433902999927, 51.506265449000097 ], [ -120.913452885999959, 51.506101341000011 ], [ -120.914170536999947, 51.506133478000045 ], [ -120.914179756999943, 51.506053758000057 ], [ -120.915000775999914, 51.506090517000075 ], [ -120.915011523999951, 51.505997577000045 ], [ -120.915757979999967, 51.506030993000138 ], [ -120.915783601999948, 51.505809395000043 ], [ -120.91684386299994, 51.505856850000072 ], [ -120.916558611999903, 51.506392507000037 ], [ -120.91622880599999, 51.50669160800004 ], [ -120.915914689999951, 51.506623300000037 ], [ -120.915529400000011, 51.506849708000054 ], [ -120.915208393999961, 51.506908089000049 ], [ -120.914262292999936, 51.506828305000084 ], [ -120.91347242399992, 51.506436704000087 ], [ -120.913269905, 51.506450898000082 ], [ -120.912973603999916, 51.506624689000027 ], [ -120.912614095999942, 51.507238504000071 ], [ -120.911596299999957, 51.507761205000051 ], [ -120.911477194000014, 51.508145696000092 ], [ -120.911162885999914, 51.508085890000174 ], [ -120.910557117999971, 51.508407802000121 ], [ -120.909492314999937, 51.508606118000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024789", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "126.6", "sL_BldgLoss": "126.6", "sL_StrLoss": "126.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C12FFD64EF3C5EC0E3C8C17473C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.950324382999924, 51.540645572000088 ], [ -120.956084006999959, 51.540901270000113 ], [ -120.955783801999971, 51.543516031000131 ], [ -120.95151341099999, 51.544062748000023 ], [ -120.947125411999977, 51.544624331000065 ], [ -120.947312371999899, 51.54299880500011 ], [ -120.95003996899996, 51.543119999000105 ], [ -120.950324382999924, 51.540645572000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024791", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3770000", "BldgCostT": "2600000", "sL_LossRatio": "1", "sL_AssetLoss": "308.8", "sL_BldgLoss": "308.8", "sL_StrLoss": "308.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000296EA2B7B42C5EC0F64C69DC9FBD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.687699868, 51.483154281000104 ], [ -120.687773254999954, 51.48254660900006 ], [ -120.689651144999985, 51.482634484000066 ], [ -120.68968648399999, 51.48234175300005 ], [ -120.691146326999956, 51.48241004500003 ], [ -120.691166523999954, 51.482242688000035 ], [ -120.691747879999951, 51.482269878000061 ], [ -120.691850544999909, 51.481419103000057 ], [ -120.69247514599999, 51.481448313000016 ], [ -120.692493423999977, 51.481296817000064 ], [ -120.693099537, 51.481325159000086 ], [ -120.69311340199999, 51.481210232000144 ], [ -120.693726191999986, 51.481238882000042 ], [ -120.69373907899994, 51.481132046000042 ], [ -120.694339944, 51.481160136000071 ], [ -120.694347454999942, 51.481097861000066 ], [ -120.698408891999989, 51.481287644000112 ], [ -120.698413264, 51.481251367000027 ], [ -120.69828158599995, 51.481248781000062 ], [ -120.698300933999946, 51.480864647000097 ], [ -120.698204572999956, 51.480860146000055 ], [ -120.698635997999958, 51.477280254000107 ], [ -120.704385845999965, 51.477548697000053 ], [ -120.704276341, 51.478458382000042 ], [ -120.704714912, 51.47847884600003 ], [ -120.704417307999933, 51.47851650000014 ], [ -120.701926426999975, 51.478513605000089 ], [ -120.701574495999964, 51.478658912000085 ], [ -120.70159008899999, 51.478902408000039 ], [ -120.702361084999936, 51.479610300000068 ], [ -120.702401789999939, 51.479935016000084 ], [ -120.702169798999947, 51.480281097000123 ], [ -120.702193198999964, 51.480389294000105 ], [ -120.702362307999934, 51.48044630600004 ], [ -120.703028608999929, 51.480108695000098 ], [ -120.703820704999885, 51.480078786000036 ], [ -120.704570440999987, 51.479883601000012 ], [ -120.704388996999967, 51.481390875000052 ], [ -120.705737236999965, 51.481453772000044 ], [ -120.705841983999946, 51.480583428000074 ], [ -120.711592305999901, 51.480851506000121 ], [ -120.711581207, 51.480943829000061 ], [ -120.713811938, 51.481047746000051 ], [ -120.71378458199996, 51.481275381000067 ], [ -120.713555600999939, 51.481323899000081 ], [ -120.712429266999948, 51.481433430000081 ], [ -120.711845404999963, 51.481419719000058 ], [ -120.711669706999928, 51.481474541000047 ], [ -120.711566024999982, 51.48155521000011 ], [ -120.711550431999953, 51.481648962000101 ], [ -120.71092803699996, 51.481685421000059 ], [ -120.71069811299995, 51.481698865000041 ], [ -120.708889997999904, 51.481804709000102 ], [ -120.706517279999971, 51.481943546000096 ], [ -120.705521843999975, 51.482032735000082 ], [ -120.702915010999902, 51.482266250000045 ], [ -120.702771594999916, 51.482279095000088 ], [ -120.700800450999964, 51.482356298000127 ], [ -120.700755361999981, 51.482356841000083 ], [ -120.700463122999963, 51.482360332000042 ], [ -120.699719517999981, 51.482964618 ], [ -120.699227464, 51.483292655000106 ], [ -120.698905949999968, 51.48341713100006 ], [ -120.698477404999934, 51.483458326000076 ], [ -120.698127093999943, 51.48338975100004 ], [ -120.697607225999931, 51.483360983000082 ], [ -120.697345107, 51.483391130000022 ], [ -120.697145431, 51.483414101000093 ], [ -120.695654310999942, 51.483670234000051 ], [ -120.692155486, 51.484150175000096 ], [ -120.691799762999921, 51.484173344000048 ], [ -120.689637391999895, 51.48431411400005 ], [ -120.687438847999914, 51.484441621000052 ], [ -120.686910556999976, 51.48442230400007 ], [ -120.686514497999937, 51.484349760000065 ], [ -120.68615779799994, 51.484234127000065 ], [ -120.68629309, 51.483114202000067 ], [ -120.68629618699994, 51.483088576000078 ], [ -120.687699868, 51.483154281000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024792", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "107", "sL_BldgLoss": "107", "sL_StrLoss": "107", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009F00AB9F8E375EC04FC16DAF7DC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.867595738999967, 51.528798826000099 ], [ -120.866326400999966, 51.527608605000061 ], [ -120.86593879699997, 51.527334637000074 ], [ -120.865753952999967, 51.527225942000094 ], [ -120.865458127999915, 51.527051993 ], [ -120.86493667799995, 51.52683406000007 ], [ -120.864581781999988, 51.526734791000123 ], [ -120.86474644499998, 51.525325635000073 ], [ -120.870503561999911, 51.525585665000101 ], [ -120.870243954, 51.527809807000025 ], [ -120.87036502299999, 51.527815272000034 ], [ -120.870033818999914, 51.530652539000137 ], [ -120.869808354999918, 51.530528251000106 ], [ -120.86918517099997, 51.530140204000077 ], [ -120.867681388999955, 51.528879159000013 ], [ -120.867595738999967, 51.528798826000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024793", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9649750", "BldgCostT": "6655000", "sL_LossRatio": "1", "sL_AssetLoss": "826.3", "sL_BldgLoss": "826.3", "sL_StrLoss": "826.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000624279DDEA355EC0D3CA311740C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.843624180999967, 51.515990637000044 ], [ -120.843915214999981, 51.513509451000111 ], [ -120.841913896999927, 51.513418595000068 ], [ -120.842047810999929, 51.512277267000059 ], [ -120.839120779999959, 51.512144322000076 ], [ -120.839191946999918, 51.511538108000124 ], [ -120.838703409999965, 51.511515912000029 ], [ -120.839123716999978, 51.507935602000011 ], [ -120.839713817999964, 51.507962412000033 ], [ -120.839790639999933, 51.507307884000092 ], [ -120.836980348999958, 51.507180171000137 ], [ -120.837400752999926, 51.503599852000022 ], [ -120.840501969999977, 51.503740782000072 ], [ -120.840550531999938, 51.503326926000028 ], [ -120.84061081399993, 51.50332966400007 ], [ -120.840662152999982, 51.502892128000049 ], [ -120.840686380999927, 51.502893228000048 ], [ -120.840965983999965, 51.500510130000045 ], [ -120.842273640999906, 51.500569528000064 ], [ -120.842372371999943, 51.49972776200012 ], [ -120.842637879999955, 51.499739821000048 ], [ -120.842673890999933, 51.499432760000062 ], [ -120.841098351999904, 51.499361197000084 ], [ -120.841518346999976, 51.49578083500009 ], [ -120.841585412999962, 51.495783881000058 ], [ -120.841665681999956, 51.49509953600009 ], [ -120.842197037999966, 51.495123674000126 ], [ -120.842205910999922, 51.495048028000078 ], [ -120.841517462999946, 51.495035355000027 ], [ -120.841491988999948, 51.495574476000101 ], [ -120.841060140999957, 51.495566524000061 ], [ -120.841047399999923, 51.495836085000107 ], [ -120.839751846999931, 51.49581222000004 ], [ -120.839764594999977, 51.495542660000069 ], [ -120.839332746999901, 51.49553470200005 ], [ -120.839345497999972, 51.495265142000029 ], [ -120.839015795999927, 51.495259065000063 ], [ -120.838763248999982, 51.497411023000055 ], [ -120.833010000999977, 51.497149380000067 ], [ -120.83343063299999, 51.493569041000079 ], [ -120.83811901199999, 51.493782278000026 ], [ -120.83817753199996, 51.492545660000111 ], [ -120.838609350999945, 51.492553622000152 ], [ -120.838622102999963, 51.492284061000078 ], [ -120.840781188999983, 51.492323847000144 ], [ -120.840768447999935, 51.492593407000079 ], [ -120.843359373999988, 51.492641098000043 ], [ -120.843372098999964, 51.492371536000078 ], [ -120.84294028, 51.492363593000029 ], [ -120.842978461999934, 51.491554910000083 ], [ -120.843410272999975, 51.491562854000037 ], [ -120.843422996999934, 51.491293292000101 ], [ -120.844286614999987, 51.491309176000144 ], [ -120.844337488999912, 51.490230931000099 ], [ -120.845632887, 51.490254743000058 ], [ -120.845620175999954, 51.490524305000115 ], [ -120.84605197899999, 51.490532239000039 ], [ -120.846039268999917, 51.490801801000032 ], [ -120.846471074999954, 51.49080973300007 ], [ -120.846439877999984, 51.491471562000179 ], [ -120.850135848999955, 51.491639262000064 ], [ -120.849935901999928, 51.493346867000099 ], [ -120.849740196999974, 51.493422300000141 ], [ -120.848064710999964, 51.494434892000051 ], [ -120.847411497999957, 51.49483651 ], [ -120.84737771499999, 51.495259501000092 ], [ -120.847544017999951, 51.495729501000035 ], [ -120.847420604999968, 51.495871907 ], [ -120.845656517999927, 51.496944296000073 ], [ -120.844981015999934, 51.497499801000039 ], [ -120.844766817999968, 51.497791703000061 ], [ -120.844689016999951, 51.498501003000065 ], [ -120.844842887999945, 51.498593604000114 ], [ -120.845175206999926, 51.498572191000072 ], [ -120.845302119999943, 51.498647702000063 ], [ -120.845057307, 51.499271509000017 ], [ -120.845056993999961, 51.499577701000149 ], [ -120.845646811999984, 51.500218603000071 ], [ -120.846101413999975, 51.500333908000094 ], [ -120.846176906999958, 51.500570405000097 ], [ -120.84585928199999, 51.500879396000073 ], [ -120.845389115999964, 51.501994593000077 ], [ -120.845257586999978, 51.502037298000069 ], [ -120.844596607999918, 51.501674088000136 ], [ -120.844279188999977, 51.501676999 ], [ -120.844192805999967, 51.501981808000053 ], [ -120.843368911999903, 51.502973003000143 ], [ -120.843003885999948, 51.504593707000012 ], [ -120.843094388999958, 51.504811707000087 ], [ -120.843335784999979, 51.504915589000106 ], [ -120.843815089999964, 51.504815899000086 ], [ -120.843852612999939, 51.504007009000112 ], [ -120.843943314999976, 51.503918708000114 ], [ -120.843985120999946, 51.503982796000045 ], [ -120.844122206999941, 51.50443569000003 ], [ -120.844317981999936, 51.504563792000056 ], [ -120.84424248, 51.504922698000016 ], [ -120.843838094999967, 51.505553707000111 ], [ -120.844033711999941, 51.506285689000066 ], [ -120.843917188999939, 51.506338399000086 ], [ -120.84373181299999, 51.506252994000057 ], [ -120.843724316999939, 51.506127601000109 ], [ -120.843514093999914, 51.506025092000115 ], [ -120.843400492999962, 51.506561997000048 ], [ -120.843005477999952, 51.506707297000119 ], [ -120.84312810899992, 51.507789708000125 ], [ -120.842553876999929, 51.508021797000055 ], [ -120.842188885999988, 51.508427705000088 ], [ -120.841665887999966, 51.50853600100001 ], [ -120.84170341, 51.50865270500006 ], [ -120.84206760299999, 51.508876288000103 ], [ -120.84225409599992, 51.509490191000054 ], [ -120.842670388, 51.510155296000072 ], [ -120.843813810999947, 51.510939994000069 ], [ -120.844691488, 51.511280412000126 ], [ -120.845673492999978, 51.511540999000061 ], [ -120.847190819, 51.511749004000094 ], [ -120.84686368499996, 51.511985404 ], [ -120.846828986999952, 51.512389906000102 ], [ -120.847046309999925, 51.512394101000062 ], [ -120.847194706999943, 51.512288792000035 ], [ -120.847408083999966, 51.511753302000081 ], [ -120.84886000599991, 51.511832988000144 ], [ -120.848863427999959, 51.511832389000077 ], [ -120.848770581999972, 51.51262475500009 ], [ -120.849799435999941, 51.512671406000045 ], [ -120.849379953999943, 51.516251738000072 ], [ -120.843624180999967, 51.515990637000044 ] ], [ [ -120.844111404999964, 51.493697529000038 ], [ -120.844138686999926, 51.493464815000053 ], [ -120.843753026999948, 51.493457723000041 ], [ -120.843742498999944, 51.493680777000073 ], [ -120.844111404999964, 51.493697529000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024795", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "54.9", "sL_BldgLoss": "54.9", "sL_StrLoss": "54.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CE588F5650395EC0E42BA2A241C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.892692548999946, 51.539760417000053 ], [ -120.898451718999979, 51.540019030000082 ], [ -120.898154317999939, 51.542580074000099 ], [ -120.896198018999939, 51.542337208000077 ], [ -120.894131602999948, 51.542080639000083 ], [ -120.893466716, 51.541998074000027 ], [ -120.892447130999969, 51.541871456000145 ], [ -120.892692548999946, 51.539760417000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "102.3", "sL_BldgLoss": "102.3", "sL_StrLoss": "102.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008EABB26B12375EC0E33DDE16F2BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.857119942999958, 51.462387192000072 ], [ -120.857538284999933, 51.458806639000095 ], [ -120.858083482999973, 51.458831350000054 ], [ -120.858137484999986, 51.45836905200008 ], [ -120.863885822000015, 51.458629434000045 ], [ -120.863467997000015, 51.462210010000042 ], [ -120.862922753999939, 51.462185325000114 ], [ -120.862868797999951, 51.462647624000063 ], [ -120.857119942999958, 51.462387192000072 ] ], [ [ -120.85877251299992, 51.461176694000137 ], [ -120.858679610999957, 51.461004402000086 ], [ -120.858434678999956, 51.461017199000125 ], [ -120.858301985999958, 51.461078494000084 ], [ -120.858319800999936, 51.461294900000077 ], [ -120.85856080799999, 51.461370390000077 ], [ -120.85877251299992, 51.461176694000137 ] ], [ [ -120.861191117999965, 51.459638599000087 ], [ -120.861047490999965, 51.459625802000041 ], [ -120.860929491999926, 51.459705513000081 ], [ -120.860873511999941, 51.459947584000105 ], [ -120.860967612999929, 51.46010150300004 ], [ -120.861337417999948, 51.460521599000067 ], [ -120.861524376999938, 51.46053439800005 ], [ -120.861639400999962, 51.460195411000015 ], [ -120.861566004999958, 51.459923394000093 ], [ -120.861191117999965, 51.459638599000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024797", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "164.4", "sL_BldgLoss": "164.4", "sL_StrLoss": "164.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000040C3F6EEAA395EC0B1DEC9230FC44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.895081695, 51.530901687000032 ], [ -120.895394702999951, 51.530636812000047 ], [ -120.896718808999978, 51.530696684000098 ], [ -120.897770901999962, 51.530383297000093 ], [ -120.898422094999944, 51.530340603000042 ], [ -120.899357886999894, 51.53036620600006 ], [ -120.900833185999929, 51.530618302000065 ], [ -120.901451204999958, 51.53065538400012 ], [ -120.90609742099997, 51.529920498000095 ], [ -120.906856578999978, 51.530024396000016 ], [ -120.907278624999918, 51.530579905000081 ], [ -120.907918789999911, 51.531076909000056 ], [ -120.908449303999973, 51.531168103000049 ], [ -120.909588466999963, 51.531226250000081 ], [ -120.909459747999932, 51.532337399000042 ], [ -120.907402772999944, 51.532245248000045 ], [ -120.907375166999941, 51.532483448000079 ], [ -120.905966680999896, 51.532420327000096 ], [ -120.905910229999918, 51.532907281000057 ], [ -120.901198017999917, 51.532695978000092 ], [ -120.90117822, 51.532866592000097 ], [ -120.89849368699997, 51.532746125000081 ], [ -120.898428225999936, 51.533309956000025 ], [ -120.89266993399994, 51.533051340000043 ], [ -120.892809601999943, 51.531849662000049 ], [ -120.893623013999928, 51.531855994000097 ], [ -120.89468911299997, 51.53159529500001 ], [ -120.895005103999921, 51.531304797000054 ], [ -120.895081695, 51.530901687000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5263500", "BldgCostT": "3630000", "sL_LossRatio": "1", "sL_AssetLoss": "452.9", "sL_BldgLoss": "452.9", "sL_StrLoss": "452.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3B3C78F61385EC07823B91D96C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.8775031099999, 51.532692888000021 ], [ -120.876769421999924, 51.532450371000067 ], [ -120.876431573, 51.532338699000036 ], [ -120.876163847999948, 51.532285101000106 ], [ -120.881020447999958, 51.532503951000123 ], [ -120.881065347999964, 51.532118525000065 ], [ -120.880036925999917, 51.532072200000123 ], [ -120.880074914999938, 51.531746153000014 ], [ -120.879476330999978, 51.531719184000082 ], [ -120.879536184999921, 51.531205536000073 ], [ -120.87866683799993, 51.531166364000107 ], [ -120.878706471999948, 51.530826282000099 ], [ -120.878308649999923, 51.530808354000101 ], [ -120.878383539999973, 51.530165802000099 ], [ -120.87788078, 51.530143143000018 ], [ -120.877935074999968, 51.529677335000095 ], [ -120.877138386999945, 51.529641424000019 ], [ -120.877555739999977, 51.526061037 ], [ -120.877572937999986, 51.526061812000108 ], [ -120.87776253, 51.524435138000108 ], [ -120.878130848999888, 51.524451740000067 ], [ -120.878175393999967, 51.524069511000107 ], [ -120.872479119999952, 51.52381260700011 ], [ -120.872709214999986, 51.521840283000124 ], [ -120.87275129699999, 51.521838094000074 ], [ -120.873711394999958, 51.521640097000052 ], [ -120.875323996999924, 51.521057587 ], [ -120.876327315999959, 51.520868207000042 ], [ -120.877193373999958, 51.520514993000056 ], [ -120.878492600999962, 51.520520688000026 ], [ -120.878805788999912, 51.5205989950001 ], [ -120.879326291999973, 51.520842599000055 ], [ -120.879765992000017, 51.521308312000059 ], [ -120.880080384999985, 51.522312294000074 ], [ -120.880808695999974, 51.522487502000082 ], [ -120.881153603999948, 51.522484687 ], [ -120.881406079999977, 51.522327997000119 ], [ -120.881857287999964, 51.522253902000017 ], [ -120.88257129, 51.522385015000033 ], [ -120.883435888999927, 51.522382096000122 ], [ -120.884209402999957, 51.522513195000045 ], [ -120.88580567299999, 51.523206692000016 ], [ -120.885922576, 51.523488692000093 ], [ -120.886028206000034, 51.525226302000114 ], [ -120.885756312999931, 51.525491195 ], [ -120.885509188999919, 51.525261903000107 ], [ -120.885179722999936, 51.525192104000027 ], [ -120.885016481999983, 51.525316003000071 ], [ -120.884844707999946, 51.525897100000044 ], [ -120.884938797999951, 51.526257820000055 ], [ -120.884083726999989, 51.526219328000089 ], [ -120.884037093999964, 51.525270398000025 ], [ -120.884082593999906, 51.524903005000056 ], [ -120.884526207999926, 51.524380285000042 ], [ -120.884520103999989, 51.524190886000056 ], [ -120.884341786999968, 51.524304794000038 ], [ -120.883282198999936, 51.524169490000126 ], [ -120.883281204999932, 51.524465699000046 ], [ -120.882927405999951, 51.524648011000068 ], [ -120.882389188999952, 51.524116808000052 ], [ -120.881719500999978, 51.523951597000099 ], [ -120.881568209, 51.524119690000063 ], [ -120.881457789999928, 51.524962789000085 ], [ -120.880793997999916, 51.526201913000101 ], [ -120.880445196999958, 51.526555094000059 ], [ -120.878877881999969, 51.527408199000078 ], [ -120.87899091, 51.52747229800007 ], [ -120.880149196999938, 51.527664492000078 ], [ -120.880416905999965, 51.527795501000121 ], [ -120.881018495999967, 51.528516203000059 ], [ -120.881414009999929, 51.529306593000094 ], [ -120.88194942299999, 51.52989200000011 ], [ -120.882468386999918, 51.530179697000086 ], [ -120.882732288999961, 51.530121297000115 ], [ -120.883298075, 51.530329193000107 ], [ -120.88343160699999, 51.530557098000038 ], [ -120.883923109, 51.530844799000057 ], [ -120.884206990999985, 51.530938788000135 ], [ -120.88456857599999, 51.530910297000105 ], [ -120.885184787999961, 51.530705201000032 ], [ -120.884673676999967, 51.530534296000049 ], [ -120.884864511999922, 51.530438907000104 ], [ -120.886379178999931, 51.53041179500012 ], [ -120.886691697999979, 51.530552811000042 ], [ -120.887448525999929, 51.531303405000109 ], [ -120.888346781999985, 51.531527003000086 ], [ -120.889614807999962, 51.531539794000054 ], [ -120.889884390999953, 51.531626689000056 ], [ -120.890640402999963, 51.532125112000067 ], [ -120.890697464999946, 51.532138116000063 ], [ -120.890551488999961, 51.533393540000063 ], [ -120.884793230999932, 51.533134527000065 ], [ -120.884830603999902, 51.53281348200008 ], [ -120.883800124999951, 51.5327670980001 ], [ -120.883386752999954, 51.53631710300008 ], [ -120.883269715999973, 51.536311835000056 ], [ -120.883091934, 51.53783840700001 ], [ -120.882865101, 51.53782819500001 ], [ -120.882190082999983, 51.536838802000055 ], [ -120.881953261999953, 51.536491696000013 ], [ -120.881218890999946, 51.535652401000029 ], [ -120.881189987999932, 51.53562501900003 ], [ -120.88011622, 51.534608488000053 ], [ -120.879640092999963, 51.53416142 ], [ -120.879300948999955, 51.53386246000008 ], [ -120.878852719999927, 51.533467304000091 ], [ -120.878482390999949, 51.533204994000172 ], [ -120.8775031099999, 51.532692888000021 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024799", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8702417", "BldgCostT": "6001667", "sL_LossRatio": "1", "sL_AssetLoss": "789.8", "sL_BldgLoss": "789.8", "sL_StrLoss": "789.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B51D8D222F3B5EC04AAD83C559C14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.915862300999947, 51.51846700300014 ], [ -120.915107609999936, 51.518281804000075 ], [ -120.91495961699998, 51.518378708000057 ], [ -120.914947795, 51.518620788000057 ], [ -120.914345001999948, 51.518556712000077 ], [ -120.91351422299999, 51.518749001000039 ], [ -120.912909294999949, 51.518746086000121 ], [ -120.912455691000034, 51.518603705000075 ], [ -120.912263602999971, 51.518402907000088 ], [ -120.912243780999958, 51.518176392000065 ], [ -120.913284915999924, 51.517800394000076 ], [ -120.914372598999961, 51.517324794000068 ], [ -120.914478314999897, 51.517209409000067 ], [ -120.914476994999973, 51.516327799000074 ], [ -120.914607023999963, 51.516312105000097 ], [ -120.91462681199999, 51.516186797000124 ], [ -120.914371301999964, 51.516119896000035 ], [ -120.914238003999941, 51.515560192000123 ], [ -120.914310399999948, 51.515209810000044 ], [ -120.91452901699995, 51.514872293000046 ], [ -120.914466585999961, 51.51467289900009 ], [ -120.914295101999983, 51.51459880700007 ], [ -120.914077096999947, 51.514657207000084 ], [ -120.913662784999971, 51.514595999000072 ], [ -120.913336589999957, 51.514454999000058 ], [ -120.911950883999964, 51.513540598000127 ], [ -120.91173148899999, 51.513302794 ], [ -120.911637402999986, 51.512832800000098 ], [ -120.910783499, 51.512620600000055 ], [ -120.910562792999883, 51.512409791000046 ], [ -120.910799390999955, 51.511315991000032 ], [ -120.910973390999956, 51.51128329600003 ], [ -120.91101099299999, 51.511113789000071 ], [ -120.911548298999918, 51.510717796000101 ], [ -120.911808294999943, 51.510371789000025 ], [ -120.912176816999988, 51.510208003000116 ], [ -120.912622909999968, 51.51021649900008 ], [ -120.913199618999954, 51.509893207000061 ], [ -120.913130378999981, 51.509820602000033 ], [ -120.912122794999945, 51.510108301000059 ], [ -120.91171518499999, 51.510182299000093 ], [ -120.911617895999925, 51.510135414000047 ], [ -120.911682392999964, 51.509353509000086 ], [ -120.912764209, 51.508356500000033 ], [ -120.913611513999967, 51.508138592000087 ], [ -120.914534698999915, 51.507776903000043 ], [ -120.91493808599995, 51.507784008000066 ], [ -120.915179590999941, 51.507887896000071 ], [ -120.915698219999953, 51.507860907000072 ], [ -120.917586281999917, 51.507561799000058 ], [ -120.917864492999982, 51.507440715000051 ], [ -120.91852910399993, 51.507397988000072 ], [ -120.918806989999908, 51.507322503000076 ], [ -120.919655914999936, 51.506717201000129 ], [ -120.919904615999926, 51.506648899000055 ], [ -120.920521883000021, 51.506993506000079 ], [ -120.92080641199999, 51.50679990900003 ], [ -120.92221150499995, 51.506312786000102 ], [ -120.922420086000017, 51.506136206000114 ], [ -120.922493602999964, 51.505804284000071 ], [ -120.923010509999983, 51.505369302000112 ], [ -120.92313042499994, 51.505374662000087 ], [ -120.923218412999972, 51.505412690000107 ], [ -120.923339897999981, 51.505882699000068 ], [ -120.923504590999954, 51.506074891000026 ], [ -120.923926378, 51.506298494000106 ], [ -120.924373187999933, 51.506305608000048 ], [ -120.924493891999987, 51.506523595000019 ], [ -120.92451379499991, 51.506712991000065 ], [ -120.924185099999988, 51.507255603000011 ], [ -120.924200682999967, 51.50884790500011 ], [ -120.926962415, 51.507989095000084 ], [ -120.927698990999914, 51.50796488900005 ], [ -120.928562105999916, 51.507657206000033 ], [ -120.929856794999921, 51.507707112000048 ], [ -120.930316786999967, 51.507445003000058 ], [ -120.930893824999913, 51.50742790500005 ], [ -120.931362006999976, 51.507274098000067 ], [ -120.931680494999938, 51.507252785000055 ], [ -120.932049301999925, 51.507043389000088 ], [ -120.932642804999915, 51.507009186000118 ], [ -120.93299802599995, 51.506791305000029 ], [ -120.9336456, 51.506819796000087 ], [ -120.934055684, 51.506638897000052 ], [ -120.934274088999942, 51.506624692000031 ], [ -120.934556312999945, 51.506107700000086 ], [ -120.934781508999947, 51.505905508000083 ], [ -120.935046985999946, 51.505774405000047 ], [ -120.935463006999896, 51.50579149600005 ], [ -120.935714498999985, 51.505669014000055 ], [ -120.936790003999931, 51.504825890000049 ], [ -120.93863379299999, 51.504515400000038 ], [ -120.939611215999932, 51.504596604 ], [ -120.940210707999938, 51.504400097000051 ], [ -120.94037440699995, 51.504250485000085 ], [ -120.940410001999936, 51.50377340200005 ], [ -120.939852199999933, 51.503044213000109 ], [ -120.939887890999941, 51.502595605000067 ], [ -120.940123197999952, 51.502158407000046 ], [ -120.939903995999941, 51.501912008000033 ], [ -120.939329681999979, 51.501560201000053 ], [ -120.939315036999943, 51.501393215000171 ], [ -120.944160702999909, 51.501609030000076 ], [ -120.944122388999958, 51.501942291000049 ], [ -120.944383718999944, 51.501953923000123 ], [ -120.943972027, 51.505534639000096 ], [ -120.941789291999939, 51.50543745700007 ], [ -120.941632800999955, 51.50679779200005 ], [ -120.941131188999989, 51.506775452000063 ], [ -120.941112486999941, 51.506938004000069 ], [ -120.940446800999936, 51.506908354000075 ], [ -120.94040787599999, 51.507246620000068 ], [ -120.93973546, 51.507216667000129 ], [ -120.939697462999987, 51.507546836000074 ], [ -120.938781188999911, 51.507506013000125 ], [ -120.93873174399998, 51.507935559000046 ], [ -120.93816220299999, 51.507910180000103 ], [ -120.938128035999952, 51.508206972000046 ], [ -120.937138702999974, 51.50816288000005 ], [ -120.937067721999966, 51.508779295000124 ], [ -120.93654295099995, 51.508755904000026 ], [ -120.936511615, 51.509028008000023 ], [ -120.935830486999976, 51.508997644000033 ], [ -120.935802694999893, 51.509238924000059 ], [ -120.935055138999957, 51.509205594000015 ], [ -120.935034270999935, 51.509386742000046 ], [ -120.934086566999966, 51.50934448200011 ], [ -120.934061739999947, 51.509559965000051 ], [ -120.933275633000036, 51.509524904000067 ], [ -120.933253312999938, 51.509718583000065 ], [ -120.932115720999946, 51.509667836000069 ], [ -120.932099068999932, 51.509812310000072 ], [ -120.930912128, 51.509759350000195 ], [ -120.930884227999968, 51.510001339000077 ], [ -120.92980432799996, 51.509953143000082 ], [ -120.929761598999946, 51.51032366400009 ], [ -120.928325656999903, 51.510259563000091 ], [ -120.928221381999933, 51.511163499000062 ], [ -120.922465811999942, 51.510906384000052 ], [ -120.922474563999941, 51.510830596000083 ], [ -120.921104468999914, 51.510769346000124 ], [ -120.921163751, 51.510256173000123 ], [ -120.920670891000015, 51.510234136000051 ], [ -120.920724009999944, 51.509774337000096 ], [ -120.920569619000034, 51.509767434000132 ], [ -120.920586262000015, 51.509623384000044 ], [ -120.920378359999944, 51.509614088000049 ], [ -120.920352757999979, 51.509835686000066 ], [ -120.919531664999951, 51.509798965000087 ], [ -120.919520925999961, 51.509891905000124 ], [ -120.918803210999968, 51.509859803000083 ], [ -120.91879399699998, 51.509939522000124 ], [ -120.918130243999911, 51.509909830000069 ], [ -120.918111274999958, 51.510073938000112 ], [ -120.91592218299995, 51.50997598300011 ], [ -120.915851907999951, 51.510583690000033 ], [ -120.915487559999988, 51.510567383000087 ], [ -120.915444144000034, 51.510942797000098 ], [ -120.915493837999975, 51.51094502100014 ], [ -120.915446487999972, 51.511354448000056 ], [ -120.91578755700003, 51.511369714000097 ], [ -120.915744788999945, 51.511739543000047 ], [ -120.915987577, 51.511750409000058 ], [ -120.915944908999933, 51.512119382000037 ], [ -120.916284991999973, 51.512134602000074 ], [ -120.916208394999956, 51.512796996000112 ], [ -120.91759339399999, 51.512858967000035 ], [ -120.917503485999987, 51.513636661000106 ], [ -120.91784104, 51.513651762000059 ], [ -120.917718587999929, 51.51471098600009 ], [ -120.918225301999911, 51.514733653000071 ], [ -120.918174010999948, 51.51517734800013 ], [ -120.918314928999962, 51.515183652000118 ], [ -120.917986904999978, 51.518021137000098 ], [ -120.917997363000012, 51.518021604000062 ], [ -120.918112419999929, 51.51702637100005 ], [ -120.923868767000016, 51.517283705000104 ], [ -120.923750986999934, 51.518303628000126 ], [ -120.924221122999924, 51.518324632000073 ], [ -120.924216483999956, 51.51832739000006 ], [ -120.9243785, 51.51886859600009 ], [ -120.923812492999971, 51.518931309000024 ], [ -120.923418194999925, 51.519059407000071 ], [ -120.923217296999894, 51.519361387000039 ], [ -120.923154224999976, 51.519810000000113 ], [ -120.922511810999964, 51.519681798000065 ], [ -120.922063990999945, 51.519385591000095 ], [ -120.922064512999938, 51.519331495000074 ], [ -120.922313404999926, 51.519291590000108 ], [ -120.922420181999954, 51.519157704000065 ], [ -120.922426717999926, 51.518978298000057 ], [ -120.922208813999958, 51.518704802000094 ], [ -120.921520888999964, 51.518629304000072 ], [ -120.921120692999978, 51.518874289000038 ], [ -120.920262408999918, 51.519983785000093 ], [ -120.919948406999964, 51.520230111000025 ], [ -120.918643195999962, 51.520386797000057 ], [ -120.918319621999984, 51.520551998 ], [ -120.917150094999926, 51.520908095000053 ], [ -120.916648391, 51.521187198000042 ], [ -120.916588798999896, 51.521842405000079 ], [ -120.916470080999915, 51.52189499300006 ], [ -120.916043183999989, 51.52145500200006 ], [ -120.915602506999932, 51.520691589000073 ], [ -120.915599522999941, 51.520431004000081 ], [ -120.915829995999943, 51.520166101000079 ], [ -120.915959594999933, 51.519520912000075 ], [ -120.915998421999973, 51.518649298000113 ], [ -120.915862300999947, 51.51846700300014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "121.6", "sL_BldgLoss": "121.6", "sL_StrLoss": "121.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E9533B8178335EC00863FA1436C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.806355850999978, 51.502754505000048 ], [ -120.805434240999944, 51.502708737000077 ], [ -120.8035103, 51.502749414000043 ], [ -120.800005219999946, 51.502751636000013 ], [ -120.79989821299999, 51.502751702000111 ], [ -120.80023699899999, 51.49988687400004 ], [ -120.805990408999961, 51.500150175000051 ], [ -120.805845749999961, 51.501374830000032 ], [ -120.809363778999938, 51.501535684000018 ], [ -120.809045324999929, 51.5042332310001 ], [ -120.8084947, 51.503649586000094 ], [ -120.807995041999916, 51.503251485000149 ], [ -120.807840811999938, 51.503172197000012 ], [ -120.807497393999952, 51.502995680000026 ], [ -120.80696362499998, 51.50283718500004 ], [ -120.806355850999978, 51.502754505000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "59", "sL_BldgLoss": "59", "sL_StrLoss": "59", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0F9DED7AF345EC0FC9A5909E5C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.819713216999929, 51.505364742000076 ], [ -120.825467459999984, 51.505627055000062 ], [ -120.825046064999952, 51.509207322000087 ], [ -120.823338983, 51.509129534000103 ], [ -120.823231955999944, 51.509028623000056 ], [ -120.822699835999941, 51.508458648000058 ], [ -120.822484620999901, 51.508228152000115 ], [ -120.822407694999939, 51.508145768000063 ], [ -120.820717253999987, 51.506334951000071 ], [ -120.820379057999915, 51.506050484000063 ], [ -120.819863492999957, 51.505761487000058 ], [ -120.819758930999953, 51.505715878000061 ], [ -120.81967610199996, 51.505679754000084 ], [ -120.819713216999929, 51.505364742000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024803", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "102", "sL_BldgLoss": "102", "sL_StrLoss": "102", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDD4BE6F722D5EC067672CF587BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.707080427, 51.459158822000113 ], [ -120.707150789999943, 51.458573728000061 ], [ -120.705718421999904, 51.458506887000055 ], [ -120.70585072899992, 51.457406940000062 ], [ -120.706323689999934, 51.457752908000053 ], [ -120.706858095999976, 51.457745804000083 ], [ -120.708139591999938, 51.457140510000109 ], [ -120.708943801999965, 51.456599310000087 ], [ -120.70934230499995, 51.456120807000055 ], [ -120.71003150899999, 51.455855894000067 ], [ -120.710424702999958, 51.455225005000038 ], [ -120.710353009999906, 51.454927292000065 ], [ -120.710013901999915, 51.454803401000106 ], [ -120.709239705999948, 51.454733586000025 ], [ -120.7092253819999, 51.454588072000071 ], [ -120.712647335999961, 51.454747634000135 ], [ -120.712519433999972, 51.455812395000116 ], [ -120.713257990999949, 51.455846820000076 ], [ -120.713030643999957, 51.457739577000034 ], [ -120.712399991, 51.457727316000089 ], [ -120.7116587, 51.457902496000038 ], [ -120.711475705999959, 51.458383909000069 ], [ -120.711501707999929, 51.459365024000107 ], [ -120.707080427, 51.459158822000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024806", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.4", "sL_BldgLoss": "45.4", "sL_StrLoss": "45.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A2B6CB860E2A5EC0CA2E20CD3BBF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.655062490999981, 51.492362263000075 ], [ -120.660814038999931, 51.492632906000011 ], [ -120.660773039999953, 51.492970591000095 ], [ -120.658861461999919, 51.494608530000107 ], [ -120.658823781999899, 51.494640801000052 ], [ -120.658460948999959, 51.494936768000073 ], [ -120.65711092, 51.49603807900013 ], [ -120.6570873899999, 51.496057729000022 ], [ -120.654627375999979, 51.495941937000055 ], [ -120.655062490999981, 51.492362263000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024807", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C2C9701BD1325EC0FC1852C929C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.791755479999907, 51.501600795000037 ], [ -120.790530697999898, 51.500244255000034 ], [ -120.790324766999916, 51.500071928000061 ], [ -120.79035933599999, 51.499780143000066 ], [ -120.796112672999968, 51.500043942000062 ], [ -120.795923946999963, 51.501638611000104 ], [ -120.797545435999908, 51.501712905 ], [ -120.797422350999938, 51.502753197000104 ], [ -120.796994587999947, 51.502753455000047 ], [ -120.796273753999941, 51.502752130000061 ], [ -120.794539433999944, 51.502748928000067 ], [ -120.794086194999977, 51.502729063000082 ], [ -120.793464068, 51.502645647000044 ], [ -120.79284762499999, 51.502440996000054 ], [ -120.79264153199999, 51.502327536000024 ], [ -120.792369721999975, 51.502177914000065 ], [ -120.791755479999907, 51.501600795000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "185.8", "sL_BldgLoss": "185.8", "sL_StrLoss": "185.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B80329DC83B5EC058BC05D0F7C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.934135252999965, 51.540849052000041 ], [ -120.93425154599997, 51.539840473000012 ], [ -120.930157285999954, 51.539657946000062 ], [ -120.930215227999938, 51.539155816000026 ], [ -120.925627764999959, 51.538951124000135 ], [ -120.92572919, 51.538072922 ], [ -120.925957119999964, 51.538052703000062 ], [ -120.926685389999975, 51.537876094000055 ], [ -120.926966180999912, 51.537746501000086 ], [ -120.927291304999983, 51.537275101000077 ], [ -120.927995508, 51.536981682000039 ], [ -120.928663405999913, 51.536913309000077 ], [ -120.929683697999934, 51.536984513000078 ], [ -120.929906909999943, 51.537105601000064 ], [ -120.930591019999923, 51.536991699000069 ], [ -120.930367514999958, 51.53715829500004 ], [ -120.93037408, 51.537339192000097 ], [ -120.93064080399995, 51.537460194000076 ], [ -120.930886987999926, 51.537474494000016 ], [ -120.931728882999934, 51.537336291000024 ], [ -120.93316798399999, 51.537387605000028 ], [ -120.93347438399995, 51.537339194000026 ], [ -120.935775208999971, 51.537487301000027 ], [ -120.936230394999939, 51.537270808000052 ], [ -120.93650661399991, 51.537239497000023 ], [ -120.93763240499996, 51.537511503000161 ], [ -120.938280384999985, 51.537361534000105 ], [ -120.938271994000019, 51.537434384000036 ], [ -120.940307164999922, 51.537524992000066 ], [ -120.939894808999938, 51.541105569000102 ], [ -120.934135252999965, 51.540849052000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024810", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.5", "sL_BldgLoss": "91.5", "sL_StrLoss": "91.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FBE0634D382B5EC0724FDBAFD0BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.672349086999972, 51.46109467500002 ], [ -120.672782419000029, 51.457514810000049 ], [ -120.677967058999954, 51.457758179000074 ], [ -120.677899307999894, 51.457876787000089 ], [ -120.677344486999942, 51.45832400200004 ], [ -120.677515204999921, 51.458668696000089 ], [ -120.67790119699994, 51.459000493000097 ], [ -120.678281490999936, 51.45887379700013 ], [ -120.678419823999917, 51.45869191700006 ], [ -120.678096661999945, 51.461364452000076 ], [ -120.672349086999972, 51.46109467500002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4362083", "BldgCostT": "3008333", "sL_LossRatio": "1", "sL_AssetLoss": "281.7", "sL_BldgLoss": "281.7", "sL_StrLoss": "281.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000CD284D48A255EC09C9B5F6266BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.595919592999948, 51.499074466000152 ], [ -120.595934719999931, 51.498951385000034 ], [ -120.595100366999972, 51.498911669000073 ], [ -120.594593252999914, 51.498822939000043 ], [ -120.593442161999945, 51.498621555000092 ], [ -120.592369508999951, 51.498434632000034 ], [ -120.591505087, 51.49828396000003 ], [ -120.590287394000015, 51.498071725000038 ], [ -120.589633048999957, 51.497957663000072 ], [ -120.589247257, 51.497890550000136 ], [ -120.58929899499995, 51.497470113000062 ], [ -120.585899049999966, 51.497308031000053 ], [ -120.585734440999914, 51.497279390000102 ], [ -120.585762954999936, 51.497047838000157 ], [ -120.583890485999945, 51.496958527000068 ], [ -120.583080961999926, 51.49681765200004 ], [ -120.582876109000011, 51.49678200200001 ], [ -120.582931009999967, 51.496336383 ], [ -120.580610177999944, 51.496225622000097 ], [ -120.580610638999971, 51.496221896000051 ], [ -120.579709948999934, 51.496178897000078 ], [ -120.579714451999962, 51.496142363000082 ], [ -120.579007020999896, 51.496108586000076 ], [ -120.578854188999955, 51.496081981000025 ], [ -120.57909206799998, 51.494152497000101 ], [ -120.577275405999913, 51.494065735000035 ], [ -120.577321881999922, 51.493688862000042 ], [ -120.576975721999986, 51.493672327000056 ], [ -120.577016716999964, 51.493339920000025 ], [ -120.576658734999981, 51.493322819000092 ], [ -120.57670475099998, 51.492949716000084 ], [ -120.576378150999972, 51.492934112000064 ], [ -120.576474169, 51.492155616000105 ], [ -120.57494555699995, 51.492082575000055 ], [ -120.575387105999965, 51.488503195000114 ], [ -120.576931765, 51.488577004000092 ], [ -120.576941405999932, 51.488830584000013 ], [ -120.577078793999988, 51.488967304000077 ], [ -120.577883082999918, 51.489541307000138 ], [ -120.578401291999953, 51.490361590000077 ], [ -120.578581598999918, 51.490491198 ], [ -120.57927841899999, 51.490686300000078 ], [ -120.579834593999976, 51.491056599000061 ], [ -120.58039738, 51.491580797000033 ], [ -120.580667710999975, 51.492188904000038 ], [ -120.581410197999972, 51.492843999000087 ], [ -120.58139889200001, 51.493077588000041 ], [ -120.581976596999937, 51.493853801000064 ], [ -120.582310402999923, 51.494075984000084 ], [ -120.58256972299999, 51.494098806000103 ], [ -120.583997396999976, 51.494065987000027 ], [ -120.585547705999943, 51.493917899000095 ], [ -120.5862944199999, 51.493960603000119 ], [ -120.587157397999988, 51.494229792000048 ], [ -120.588221424999986, 51.495088602000052 ], [ -120.589172801999908, 51.495629807000043 ], [ -120.591391701999953, 51.495900391000049 ], [ -120.592045998999964, 51.496065594000129 ], [ -120.592573012999978, 51.496185209000025 ], [ -120.594465879999973, 51.496349001000048 ], [ -120.595190320999961, 51.496544099000076 ], [ -120.598040903999987, 51.497439894000095 ], [ -120.599525000999918, 51.497703385000079 ], [ -120.60109800399999, 51.498221812000104 ], [ -120.602068790999922, 51.498394202000028 ], [ -120.602440195, 51.498407892000095 ], [ -120.602259969999977, 51.499875951000035 ], [ -120.597850164999898, 51.499666223000169 ], [ -120.597540878999951, 51.499519640000116 ], [ -120.596907793999975, 51.499307358000095 ], [ -120.596658712999897, 51.499223832000069 ], [ -120.595919592999948, 51.499074466000152 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024813", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "197.3", "sL_BldgLoss": "197.3", "sL_StrLoss": "197.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C75D786C8285EC0A7AEBEB239C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.633639380999952, 51.503569803000154 ], [ -120.633679461999932, 51.503241441000121 ], [ -120.63140583800002, 51.503133971000082 ], [ -120.631391771, 51.503131065000041 ], [ -120.631828572999936, 51.499553734000123 ], [ -120.637580916999966, 51.499825550000054 ], [ -120.637515944999947, 51.500358265000045 ], [ -120.639803778999962, 51.500466290000155 ], [ -120.639802834999941, 51.500474038000021 ], [ -120.644183928999922, 51.500680772000059 ], [ -120.643998547999942, 51.502202566000022 ], [ -120.641467320999979, 51.503381444000091 ], [ -120.640846913999951, 51.503605979000056 ], [ -120.640242484999945, 51.503734966000103 ], [ -120.63961653399997, 51.50379090399999 ], [ -120.638836144999971, 51.503761263000058 ], [ -120.637979093999917, 51.503674719000124 ], [ -120.63702859199995, 51.503578709000102 ], [ -120.636720508999929, 51.503583578000104 ], [ -120.636361865999945, 51.503589257 ], [ -120.634415481999909, 51.503620002000083 ], [ -120.63421807099995, 51.503608704000058 ], [ -120.633684307999943, 51.503578225000091 ], [ -120.633639380999952, 51.503569803000154 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "183.1", "sL_BldgLoss": "183.1", "sL_StrLoss": "183.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006C6F22C0CA2E5EC0570F6F089BB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.729296809999965, 51.452755937000063 ], [ -120.72970601499999, 51.449338060000059 ], [ -120.72717427799999, 51.449220385000061 ], [ -120.727509787999978, 51.446418989000037 ], [ -120.728282604999919, 51.446345010000066 ], [ -120.729087494999959, 51.446352102000084 ], [ -120.730202703999907, 51.446804992000111 ], [ -120.730881289999971, 51.447339095000061 ], [ -120.732415177999926, 51.449194893000033 ], [ -120.73342449099998, 51.450033698000048 ], [ -120.733891592999953, 51.450230293000089 ], [ -120.735357176999969, 51.450401267000046 ], [ -120.735043643999973, 51.453022836000045 ], [ -120.729296809999965, 51.452755937000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024815", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "52", "sL_BldgLoss": "52", "sL_StrLoss": "52", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E0DB0668F2D5EC01827199444B94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.708644256999918, 51.448138783000047 ], [ -120.708669252999968, 51.447930816000081 ], [ -120.707990948999978, 51.447899166000042 ], [ -120.708026130999954, 51.447606486000048 ], [ -120.70845729199999, 51.44764099000016 ], [ -120.709022075999911, 51.447579796000127 ], [ -120.709673375999955, 51.447232294000038 ], [ -120.71013359899996, 51.446656899000068 ], [ -120.710639391999933, 51.446308015000092 ], [ -120.71117550299995, 51.446236801000076 ], [ -120.711777888999947, 51.446266705000028 ], [ -120.712672810999948, 51.4465188080001 ], [ -120.714620445999969, 51.446490300000065 ], [ -120.714390365999961, 51.448406728000123 ], [ -120.708644256999918, 51.448138783000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024816", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "42.3", "sL_BldgLoss": "42.3", "sL_StrLoss": "42.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AB77B81DDA235EC09551D96E8ABC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.560841225999965, 51.470730510000109 ], [ -120.561371222999938, 51.470755916000023 ], [ -120.561226112999989, 51.471515088000139 ], [ -120.56136288799992, 51.471688796000116 ], [ -120.561798789999955, 51.471851204000146 ], [ -120.56203650199997, 51.471866180000077 ], [ -120.561726560999929, 51.47437354500007 ], [ -120.561054499999969, 51.474341334000037 ], [ -120.561047733999956, 51.474396061000093 ], [ -120.558297221999908, 51.474264188000113 ], [ -120.558069363999962, 51.472198711000019 ], [ -120.559391704999939, 51.47216018400011 ], [ -120.560065114999958, 51.47198510200009 ], [ -120.560336887999966, 51.471740102000091 ], [ -120.560841225999965, 51.470730510000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "168", "sL_BldgLoss": "168", "sL_StrLoss": "168", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000029B3BDED34345EC0C53D963E74C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.809986843000033, 51.505012722000046 ], [ -120.809617057999915, 51.504776259000046 ], [ -120.80924811899996, 51.50443595600008 ], [ -120.812769276999958, 51.504596836000097 ], [ -120.813152345999981, 51.501349580000038 ], [ -120.818906023999915, 51.50161222600012 ], [ -120.818885135999963, 51.501789514000123 ], [ -120.819816507000013, 51.501832001000089 ], [ -120.819394688000017, 51.505412261000103 ], [ -120.818903958999968, 51.505389876000024 ], [ -120.818299148999941, 51.505253700000061 ], [ -120.817933896999961, 51.50519923400006 ], [ -120.81712834699999, 51.505149863000071 ], [ -120.81593798099999, 51.505254533000013 ], [ -120.813916236999958, 51.505162232000039 ], [ -120.813884050999917, 51.505435101000039 ], [ -120.812755698999965, 51.505534268000119 ], [ -120.812262870999945, 51.505543755000069 ], [ -120.81196569299999, 51.505549488000085 ], [ -120.81154163399999, 51.505500642000094 ], [ -120.811305037999929, 51.505473392000034 ], [ -120.810721242999989, 51.505334244000046 ], [ -120.809986843000033, 51.505012722000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "92.8", "sL_BldgLoss": "92.8", "sL_StrLoss": "92.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A41DB83B3285EC09A390B1830B84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.637347290999912, 51.436677495000069 ], [ -120.637818563999971, 51.436529762000106 ], [ -120.637806400999963, 51.436629646000036 ], [ -120.638381055999943, 51.436656824000103 ], [ -120.637945136999988, 51.440236632000108 ], [ -120.637892324999953, 51.440234134000086 ], [ -120.637833161999964, 51.440719934000079 ], [ -120.6368134, 51.44067170200001 ], [ -120.636800420999961, 51.440778257000034 ], [ -120.633111600999939, 51.440603714000062 ], [ -120.633403607999966, 51.440330591000127 ], [ -120.633160306999969, 51.439732408000054 ], [ -120.633206592999983, 51.438825208000061 ], [ -120.633367293999953, 51.438521795000078 ], [ -120.633940480999954, 51.438272599000094 ], [ -120.634312195999883, 51.437758499000033 ], [ -120.635232509999966, 51.437795484000056 ], [ -120.635580697999984, 51.437721402000115 ], [ -120.636016922999943, 51.437073407000092 ], [ -120.636871394999957, 51.437000812000115 ], [ -120.637347290999912, 51.436677495000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "157", "sL_BldgLoss": "157", "sL_StrLoss": "157", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE8DC924DB2F5EC042469B3E16BA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.749860925999926, 51.45642709 ], [ -120.74989046799999, 51.45617941000009 ], [ -120.745721400999983, 51.455986378000048 ], [ -120.74591022099996, 51.454404507000113 ], [ -120.742964117999961, 51.454268006000042 ], [ -120.7433916499999, 51.450687849000055 ], [ -120.749138299999913, 51.450954037000024 ], [ -120.748954538999953, 51.452494612000031 ], [ -120.74953824, 51.45252163400005 ], [ -120.749508597999963, 51.452555995000097 ], [ -120.749242216999932, 51.452675604000042 ], [ -120.748019603999978, 51.452671386000034 ], [ -120.747655404999961, 51.452466304000097 ], [ -120.747399083999966, 51.452118805000048 ], [ -120.74706039299997, 51.451977788000079 ], [ -120.746787086999959, 51.451972106000014 ], [ -120.746580803999962, 51.452094512000066 ], [ -120.746522920999922, 51.453253907000054 ], [ -120.746756300999948, 51.45406710600011 ], [ -120.74723972, 51.454210903000032 ], [ -120.747500087999953, 51.454162501000084 ], [ -120.747740193999931, 51.453951710000091 ], [ -120.747914118999958, 51.453919 ], [ -120.748388018999961, 51.453945995000041 ], [ -120.749556186999925, 51.454192389000134 ], [ -120.750592014999953, 51.454203807000077 ], [ -120.751038807999976, 51.453906099000037 ], [ -120.751776911999954, 51.453857691000103 ], [ -120.752320577999967, 51.453894701000145 ], [ -120.752928919999945, 51.454141098000072 ], [ -120.753246102999981, 51.454417397000022 ], [ -120.753482822999914, 51.455176503000104 ], [ -120.75323800399994, 51.455756200000067 ], [ -120.753349632999956, 51.456588502000052 ], [ -120.749860925999926, 51.45642709 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024821", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "109.8", "sL_BldgLoss": "109.8", "sL_StrLoss": "109.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005FC4EBB8A93E5EC0E13433E9A5C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.976478223999948, 51.534372275000038 ], [ -120.981280198999954, 51.534584401000089 ], [ -120.982159206999953, 51.535309448000056 ], [ -120.981871048999963, 51.537832729000073 ], [ -120.98182826, 51.538207389000071 ], [ -120.979537099999973, 51.53810622200011 ], [ -120.976068839999968, 51.537952992000022 ], [ -120.976478223999948, 51.534372275000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024822", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "103", "sL_BldgLoss": "103", "sL_StrLoss": "103", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000287C5B55DB325EC0E8A02A2A8BBF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.793475045999969, 51.494426175000086 ], [ -120.797400243999959, 51.494606098000048 ], [ -120.796976672999946, 51.498186300000086 ], [ -120.791223573999943, 51.497922545000101 ], [ -120.79141967599999, 51.496266895000069 ], [ -120.791874894999921, 51.496286299000062 ], [ -120.792444779000022, 51.496135392000028 ], [ -120.792813988999967, 51.49593459400014 ], [ -120.793333187999963, 51.495035899000094 ], [ -120.793473794999926, 51.494517503000125 ], [ -120.793475045999969, 51.494426175000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024823", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "86.3", "sL_BldgLoss": "86.3", "sL_StrLoss": "86.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000F6B010C91285EC00183E66BFDB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.63675480799999, 51.451012598000105 ], [ -120.639005944999951, 51.451119030000015 ], [ -120.638777116999933, 51.452997850000102 ], [ -120.638569934999964, 51.454698789000098 ], [ -120.634535972999913, 51.454508034000078 ], [ -120.63444608699993, 51.455245385000076 ], [ -120.628699577999939, 51.454973399000046 ], [ -120.629136392999939, 51.45139367900002 ], [ -120.633170045999975, 51.451584626000063 ], [ -120.633259945999953, 51.450847274000097 ], [ -120.63675480799999, 51.451012598000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024824", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "57.2", "sL_BldgLoss": "57.2", "sL_StrLoss": "57.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6DF775FD7355EC00E5E05427CB94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.83847584599998, 51.450874005000088 ], [ -120.838498413999929, 51.450681511000056 ], [ -120.837898039999956, 51.450654189000062 ], [ -120.838317829999966, 51.447073666000087 ], [ -120.844064577999973, 51.447335054000071 ], [ -120.844042035999934, 51.447527550000089 ], [ -120.844642372999957, 51.447554838000137 ], [ -120.844223088999925, 51.451135383000057 ], [ -120.83847584599998, 51.450874005000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024825", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "56.7", "sL_BldgLoss": "56.7", "sL_StrLoss": "56.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FED2C34CF22E5EC0618A515B93BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.734033477999986, 51.46332862700006 ], [ -120.73608676399999, 51.46342391200006 ], [ -120.736056109999936, 51.463680196000062 ], [ -120.735658513999979, 51.467003995000034 ], [ -120.729909852999953, 51.466737131000073 ], [ -120.729976070999939, 51.466184206000072 ], [ -120.730014988, 51.465859234000085 ], [ -120.730339807999925, 51.465792595000032 ], [ -120.731106013999977, 51.465160208000057 ], [ -120.732556805999963, 51.464675995000071 ], [ -120.733087580999921, 51.464092103000048 ], [ -120.73384278599994, 51.463701889000077 ], [ -120.734032094999975, 51.463354292000055 ], [ -120.734033477999986, 51.46332862700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024826", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "122.4", "sL_BldgLoss": "122.4", "sL_StrLoss": "122.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E625DE85163B5EC0A20CF206DAC54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.919245421999989, 51.547099550000034 ], [ -120.919567987999926, 51.54431051500007 ], [ -120.920537593999924, 51.544017306000043 ], [ -120.920782494999983, 51.544021612000037 ], [ -120.921554111999924, 51.544809108000059 ], [ -120.921696388999933, 51.544829095000054 ], [ -120.921554707999945, 51.544475896000051 ], [ -120.921620810999968, 51.5442878980001 ], [ -120.921843017999947, 51.544148306000089 ], [ -120.922212838999954, 51.543704880000043 ], [ -120.926139244999945, 51.543880186000131 ], [ -120.925863818999971, 51.546264778000094 ], [ -120.928260839999936, 51.546371733000122 ], [ -120.928154618999969, 51.54729174200007 ], [ -120.927309205999904, 51.547372912000085 ], [ -120.926194450999958, 51.547374475000012 ], [ -120.924077547999957, 51.547290758000024 ], [ -120.921875387999975, 51.547203643000024 ], [ -120.919245421999989, 51.547099550000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "161.5", "sL_BldgLoss": "161.5", "sL_StrLoss": "161.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B0A704617A2B5EC07F349C32B7C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.676683047999973, 51.52710363500006 ], [ -120.682439267999925, 51.527373175000093 ], [ -120.682006033999969, 51.530952829000086 ], [ -120.676249348999974, 51.530683268000054 ], [ -120.676683047999973, 51.52710363500006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024829", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46.7", "sL_BldgLoss": "46.7", "sL_StrLoss": "46.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C154F14E172D5EC0054C01E546C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.703825121999927, 51.51877433700006 ], [ -120.70393263699999, 51.517882102000058 ], [ -120.702030123999961, 51.517793389000104 ], [ -120.702189222999905, 51.516473479000048 ], [ -120.703285100999949, 51.516663843000103 ], [ -120.704658115999919, 51.516902336000058 ], [ -120.70541185799999, 51.517155254000038 ], [ -120.705727732999918, 51.517333075000082 ], [ -120.705995829999949, 51.517483966000043 ], [ -120.706712181999961, 51.518083439000094 ], [ -120.707035377999901, 51.518447615000085 ], [ -120.707475297999977, 51.51894335500004 ], [ -120.707475635999941, 51.518944468000065 ], [ -120.703825121999927, 51.51877433700006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024830", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "128.1", "sL_BldgLoss": "128.1", "sL_StrLoss": "128.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001C681568FD335EC03417340432D24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.815393326000034, 51.643477254000111 ], [ -120.815406285999927, 51.643207706000069 ], [ -120.814973045, 51.643199642000134 ], [ -120.814986006999902, 51.642930093000068 ], [ -120.814552767999913, 51.642922028000044 ], [ -120.814565731999949, 51.64265247800013 ], [ -120.814132495999942, 51.642644412000053 ], [ -120.814142106999924, 51.642444630000085 ], [ -120.813709430999893, 51.642424937000072 ], [ -120.81369926, 51.642636343000085 ], [ -120.814132495999942, 51.642644412000053 ], [ -120.814119527999978, 51.642913960000037 ], [ -120.814552767999913, 51.642922028000044 ], [ -120.81453980299996, 51.64319157500006 ], [ -120.814973045, 51.643199642000134 ], [ -120.814960081999985, 51.64346919000009 ], [ -120.815393326000034, 51.643477254000111 ], [ -120.815354445999944, 51.644285901000046 ], [ -120.814997815999959, 51.644279263000072 ], [ -120.813621438999988, 51.64425363500002 ], [ -120.81363440899996, 51.643984087000078 ], [ -120.8132011599999, 51.643976015000121 ], [ -120.813214132999988, 51.643706467000101 ], [ -120.812780886999946, 51.643698395000094 ], [ -120.812793861999921, 51.643428846000141 ], [ -120.812360619999964, 51.643420773000059 ], [ -120.812373596999947, 51.643151224000036 ], [ -120.811940355999951, 51.643143150000064 ], [ -120.81195333699992, 51.642873602000066 ], [ -120.810220385999926, 51.642841286000099 ], [ -120.810207396999914, 51.643110833000023 ], [ -120.808907678999944, 51.643086579000055 ], [ -120.808894680999927, 51.643356127000111 ], [ -120.806728475999989, 51.643315671000053 ], [ -120.806739696999955, 51.643083176000147 ], [ -120.806793157999934, 51.64197561800006 ], [ -120.806832558999972, 51.641159292000069 ], [ -120.808132219999948, 51.641183568000081 ], [ -120.808145220999933, 51.64091402100005 ], [ -120.81068750499999, 51.640961466000128 ], [ -120.810796790999945, 51.640038460000021 ], [ -120.811423487999932, 51.639913605000061 ], [ -120.812493093999947, 51.639942095000016 ], [ -120.813407984999955, 51.640120109000087 ], [ -120.814203617999965, 51.640404907000061 ], [ -120.815216899999911, 51.640990284000118 ], [ -120.815572498999956, 51.641393312000098 ], [ -120.816375837999914, 51.641931225000057 ], [ -120.816318580999976, 51.642415310000025 ], [ -120.816744867999901, 51.642423241000117 ], [ -120.816731916999956, 51.642692789000129 ], [ -120.817165154999913, 51.642700846000096 ], [ -120.817152204999957, 51.642970395000077 ], [ -120.818885167999909, 51.643002610000096 ], [ -120.81885469599996, 51.643637405000092 ], [ -120.818846350999962, 51.643811258000042 ], [ -120.81581361399995, 51.643754866000073 ], [ -120.815826570999917, 51.643485317000064 ], [ -120.815393326000034, 51.643477254000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024831", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "152.6", "sL_BldgLoss": "152.6", "sL_StrLoss": "152.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FF984AA202A5EC09CA0D146C3BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.656898382999955, 51.496215570000089 ], [ -120.661222889999962, 51.496419001000085 ], [ -120.660788235999917, 51.499998683000051 ], [ -120.655035726999955, 51.499728041 ], [ -120.655300492999942, 51.497549909000021 ], [ -120.656898382999955, 51.496215570000089 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024832", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2822667", "BldgCostT": "1946667", "sL_LossRatio": "1", "sL_AssetLoss": "198.8", "sL_BldgLoss": "198.8", "sL_StrLoss": "198.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000759B051449405EC074A67D3163CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.002197014999965, 51.603145417000093 ], [ -121.002295064999927, 51.602284707000088 ], [ -121.008063065999977, 51.60253776100005 ], [ -121.008055488999943, 51.602604354000071 ], [ -121.008700749999917, 51.602632645000014 ], [ -121.008293353999989, 51.606213241000034 ], [ -121.0061231, 51.606118075000083 ], [ -121.006032696999952, 51.606912192000017 ], [ -121.000264132999945, 51.606659037000092 ], [ -121.000672185999974, 51.603078471000039 ], [ -121.002197014999965, 51.603145417000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024833", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006CC228CE32315EC0A80ADB8971C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.767270243999974, 51.535363233000048 ], [ -120.767497317000021, 51.533456599000147 ], [ -120.768267438999914, 51.533664866000038 ], [ -120.769262962999946, 51.534140839 ], [ -120.769520480999944, 51.534333349000093 ], [ -120.770958833999956, 51.535408543000131 ], [ -120.771321264999955, 51.535549678000038 ], [ -120.767270243999974, 51.535363233000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "86", "sL_BldgLoss": "86", "sL_StrLoss": "86", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000363003DF3E425EC0ED0C535B6ACE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.038734897999959, 51.611269896000081 ], [ -121.039217632999964, 51.611091196000118 ], [ -121.038924146999975, 51.613686107000049 ], [ -121.0381395199999, 51.613651923000099 ], [ -121.038130412999948, 51.613732425000087 ], [ -121.036189630999928, 51.613647849000067 ], [ -121.036175132999972, 51.613775971000052 ], [ -121.030405492999975, 51.613524342000083 ], [ -121.03058481799998, 51.611941568000098 ], [ -121.031613605999965, 51.611932108000104 ], [ -121.03250500899999, 51.611714205000084 ], [ -121.034889991999961, 51.611681493000027 ], [ -121.03547339499994, 51.611547586000029 ], [ -121.036773902, 51.611497796000052 ], [ -121.037763781999971, 51.611325391 ], [ -121.038734897999959, 51.611269896000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3745834", "BldgCostT": "2583334", "sL_LossRatio": "1", "sL_AssetLoss": "247", "sL_BldgLoss": "247", "sL_StrLoss": "247", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F91972C7B62B5EC0815BB90F27C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.679474898999942, 51.534538349000108 ], [ -120.679536458999962, 51.534030030000075 ], [ -120.677884274999954, 51.533997326000119 ], [ -120.677925438999964, 51.533188740000078 ], [ -120.677493282999961, 51.533180182000102 ], [ -120.677507004999953, 51.532910653000094 ], [ -120.677074852, 51.5329020940001 ], [ -120.677129751999985, 51.531823980000127 ], [ -120.677994038999898, 51.531841096000072 ], [ -120.678007758999968, 51.531571568000075 ], [ -120.679304181999967, 51.531597232000124 ], [ -120.679290470999931, 51.53186676100006 ], [ -120.679722613999914, 51.531875312000039 ], [ -120.679708904999956, 51.532144840000022 ], [ -120.679764614999954, 51.532145943000096 ], [ -120.679908374999911, 51.530958717000097 ], [ -120.68211265399998, 51.53106189700005 ], [ -120.682243431999922, 51.529981371000105 ], [ -120.688000060999968, 51.530250629000065 ], [ -120.687567251999894, 51.533830294000104 ], [ -120.685362821999931, 51.533727220000031 ], [ -120.68523210799998, 51.534807746000084 ], [ -120.679474898999942, 51.534538349000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44", "sL_BldgLoss": "44", "sL_StrLoss": "44", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007F775D85F5335EC0B789C5355FCE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.81127999099999, 51.611835089000046 ], [ -120.811292958999942, 51.611565539000011 ], [ -120.812591778999959, 51.611589756000086 ], [ -120.812578817999977, 51.611859306000092 ], [ -120.813444702999931, 51.611875443000017 ], [ -120.813405831999901, 51.612684092000059 ], [ -120.81210697899999, 51.612659885 ], [ -120.812094014999985, 51.612929434000094 ], [ -120.810362205, 51.612897133000025 ], [ -120.810401132, 51.612088485000072 ], [ -120.81083407599999, 51.612096562000026 ], [ -120.810847047999971, 51.611827014000063 ], [ -120.81127999099999, 51.611835089000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024837", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "195.9", "sL_BldgLoss": "195.9", "sL_StrLoss": "195.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002DD3EDF45C295EC04CA38F1A0FC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.645011828999941, 51.525517524000051 ], [ -120.645015592999954, 51.525444571000108 ], [ -120.642480555999896, 51.525325058000114 ], [ -120.642594589999973, 51.524389743000079 ], [ -120.642475097999949, 51.524387340000068 ], [ -120.642516872999948, 51.523578774000022 ], [ -120.642084819, 51.523570087000039 ], [ -120.642070890999946, 51.523839609000042 ], [ -120.640774721999946, 51.523813536000048 ], [ -120.640788657999963, 51.523544015000027 ], [ -120.640356603999962, 51.523535320000043 ], [ -120.64037054299996, 51.523265799000065 ], [ -120.639074391999912, 51.523239708000155 ], [ -120.639116227999963, 51.522431143000041 ], [ -120.640844397, 51.522465927000091 ], [ -120.640858329999958, 51.522196405000095 ], [ -120.641722411999936, 51.522213787000048 ], [ -120.641736153999929, 51.521947918000123 ], [ -120.643079373999967, 51.522041693000091 ], [ -120.644022776999918, 51.522186994000045 ], [ -120.644465202999967, 51.522295301000064 ], [ -120.64485591499999, 51.522527392000065 ], [ -120.645297001999964, 51.52291339900011 ], [ -120.645415209999925, 51.523149810000092 ], [ -120.645989401999941, 51.523503006000041 ], [ -120.646201497, 51.523552792000061 ], [ -120.646635209999886, 51.523542894000066 ], [ -120.647423423999967, 51.523334904000102 ], [ -120.649203084999954, 51.523243797000113 ], [ -120.650723700999905, 51.52282509000004 ], [ -120.651663807999952, 51.522457602000046 ], [ -120.652192419999949, 51.522279602000019 ], [ -120.652525542999953, 51.522328415000089 ], [ -120.652179979999957, 51.525168037000029 ], [ -120.651645205999969, 51.52514286400006 ], [ -120.651627863999963, 51.525285350000047 ], [ -120.651118421000021, 51.525261367000091 ], [ -120.651104544999924, 51.525375362000027 ], [ -120.648279447999968, 51.52524232300005 ], [ -120.648236332999957, 51.525596328000049 ], [ -120.646741480999978, 51.525525904000077 ], [ -120.646740122999944, 51.525552221000048 ], [ -120.645011828999941, 51.525517524000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024838", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "122", "sL_BldgLoss": "122", "sL_StrLoss": "122", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000017C08C10FB2C5EC0E42651CC4DC44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.700852731999987, 51.53138250800005 ], [ -120.70660965899999, 51.531650825000042 ], [ -120.706178349999988, 51.535230556000059 ], [ -120.704878899, 51.535170017000034 ], [ -120.70479502799995, 51.53586588600006 ], [ -120.699037558999947, 51.535597479000089 ], [ -120.699469454999956, 51.532017776000089 ], [ -120.700768803999935, 51.532078377000055 ], [ -120.700852731999987, 51.53138250800005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024840", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5287667", "BldgCostT": "3646667", "sL_LossRatio": "1", "sL_AssetLoss": "402.7", "sL_BldgLoss": "402.7", "sL_StrLoss": "402.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D1B0A44F42A5EC0F07AFEEEFCC04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.666938064999954, 51.512670343000075 ], [ -120.667148302, 51.510937487000021 ], [ -120.666457169999944, 51.510905033000057 ], [ -120.666891471, 51.507325368000075 ], [ -120.672614996999954, 51.507593999000072 ], [ -120.672678092999931, 51.507073324000061 ], [ -120.668130017999943, 51.506859886000051 ], [ -120.668564142999955, 51.503280200000091 ], [ -120.674317198999944, 51.503550157000092 ], [ -120.674137638, 51.505032442000079 ], [ -120.676566510000015, 51.505146326000023 ], [ -120.676622821999928, 51.505490320000042 ], [ -120.676645964999977, 51.506063808000114 ], [ -120.676624461999921, 51.506227197000044 ], [ -120.676525420999951, 51.506979699000041 ], [ -120.676519074999973, 51.507028052000081 ], [ -120.676524015999917, 51.507169809000075 ], [ -120.67657909199994, 51.508746946000102 ], [ -120.672528513, 51.508557011000079 ], [ -120.672435042, 51.509328282000077 ], [ -120.673126152999913, 51.509360699000091 ], [ -120.673020471999948, 51.510232797000114 ], [ -120.672853698999972, 51.510351804000059 ], [ -120.672685474000033, 51.511095294000036 ], [ -120.672531407999941, 51.51130748900006 ], [ -120.672087411999925, 51.511542502000083 ], [ -120.671046823999959, 51.511890005000026 ], [ -120.670716197, 51.512134907000082 ], [ -120.66989149399997, 51.512505200000057 ], [ -120.669174703999914, 51.512392710000022 ], [ -120.667905184999981, 51.512448298000052 ], [ -120.66762301299994, 51.512603494000068 ], [ -120.66758066899996, 51.512700514000123 ], [ -120.666938064999954, 51.512670343000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17641666", "BldgCostT": "12166666", "sL_LossRatio": "1", "sL_AssetLoss": "1255", "sL_BldgLoss": "1255", "sL_StrLoss": "1255", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A163835C14365EC02289FB1B76D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.839313001999983, 51.644278812000046 ], [ -120.838150397999982, 51.64260250899999 ], [ -120.83777478599994, 51.642272092000049 ], [ -120.837166681999989, 51.642008603000136 ], [ -120.836708612999956, 51.641928791000041 ], [ -120.83650109499996, 51.642049908000054 ], [ -120.835933598999958, 51.643038312000058 ], [ -120.83594351899994, 51.643740399000158 ], [ -120.835882572999964, 51.643849622000069 ], [ -120.83539468, 51.643827510000023 ], [ -120.835396531999962, 51.643811794000037 ], [ -120.834498449999927, 51.643771085000026 ], [ -120.834801945999985, 51.641196057000037 ], [ -120.830209383999971, 51.640987773000106 ], [ -120.83022077499993, 51.640891207000081 ], [ -120.829730474999977, 51.640868960000077 ], [ -120.829732732999972, 51.640849816000085 ], [ -120.8257837399999, 51.640670553000035 ], [ -120.825845993999948, 51.64014323200005 ], [ -120.82511065300001, 51.640109836000114 ], [ -120.825385718999911, 51.63778009300011 ], [ -120.827101493, 51.636975387000099 ], [ -120.828622794999902, 51.636580894000062 ], [ -120.829395193999986, 51.63615510400011 ], [ -120.830515397999974, 51.636606610000108 ], [ -120.83123409299999, 51.636404297000126 ], [ -120.831640394999965, 51.636071103000063 ], [ -120.831904004999942, 51.635977091000051 ], [ -120.832548187999976, 51.636113795000064 ], [ -120.832659495999962, 51.636494112000065 ], [ -120.832419379999962, 51.637290201000027 ], [ -120.831440198999957, 51.63751520600006 ], [ -120.831360083999925, 51.637683304000106 ], [ -120.831516687999937, 51.638019397000051 ], [ -120.83193339499995, 51.638395386000077 ], [ -120.832741209999952, 51.639049090000086 ], [ -120.833029508999928, 51.639054790000024 ], [ -120.833406786999959, 51.639007801000098 ], [ -120.834199590999958, 51.639067615000016 ], [ -120.834813886999925, 51.63891660900002 ], [ -120.835571191999975, 51.63848081599999 ], [ -120.836745587999971, 51.638395390000028 ], [ -120.836967483999942, 51.638318496000139 ], [ -120.83726238199999, 51.638188897000106 ], [ -120.838015308999942, 51.638472304000096 ], [ -120.839417421999883, 51.638768507000108 ], [ -120.839784906999924, 51.638603294000085 ], [ -120.840126614999974, 51.637810007000041 ], [ -120.840338885, 51.637606397000084 ], [ -120.84088640899995, 51.637320104000104 ], [ -120.841766797999981, 51.637066594000011 ], [ -120.842440111999977, 51.636908503 ], [ -120.843457775999951, 51.635828894000021 ], [ -120.845250401999962, 51.635511294000075 ], [ -120.846503887999958, 51.635004303000137 ], [ -120.847699995999932, 51.634756495 ], [ -120.84857922399999, 51.634188301000016 ], [ -120.849180796, 51.633101599000035 ], [ -120.850099910999944, 51.631976498 ], [ -120.850689483999986, 51.631429599000064 ], [ -120.851558779999962, 51.631113398000117 ], [ -120.852211395999973, 51.630737411000062 ], [ -120.852464, 51.630284494000136 ], [ -120.852396385999924, 51.629895705000116 ], [ -120.853115008999936, 51.629360191000082 ], [ -120.85394919, 51.629115201000033 ], [ -120.854188798999957, 51.628957091000068 ], [ -120.854509919999956, 51.628558406000124 ], [ -120.854549610999953, 51.628343292000039 ], [ -120.854428688, 51.628161008000035 ], [ -120.85455112599999, 51.628011502000078 ], [ -120.855429708999949, 51.627468788000023 ], [ -120.857138606999953, 51.626753885000035 ], [ -120.857408700999926, 51.626561602000038 ], [ -120.857432097999919, 51.626355093000058 ], [ -120.857033401999956, 51.625601712000076 ], [ -120.857099079999898, 51.624838294000043 ], [ -120.857684593999977, 51.624047905000054 ], [ -120.85840962099995, 51.623494274000045 ], [ -120.861863881, 51.623650157000014 ], [ -120.861641175999949, 51.625550513000071 ], [ -120.861444320999951, 51.627230149000063 ], [ -120.861420563999928, 51.62722907800002 ], [ -120.86107898299997, 51.630143252000039 ], [ -120.857149951999929, 51.629965935 ], [ -120.856792770999959, 51.633010447000046 ], [ -120.856292142999934, 51.632987844000063 ], [ -120.856231275999932, 51.633506560000072 ], [ -120.855392029, 51.633468664000084 ], [ -120.85533266499999, 51.633974480000049 ], [ -120.853526929999958, 51.633892920000036 ], [ -120.853214129999984, 51.63655702500013 ], [ -120.851826678999942, 51.636494339000052 ], [ -120.851715318999965, 51.637442459000077 ], [ -120.850586383999953, 51.637391440000052 ], [ -120.850482415999977, 51.638276386000065 ], [ -120.849884176, 51.638249346000059 ], [ -120.849823115999968, 51.638769001000064 ], [ -120.847313940999925, 51.638655552000067 ], [ -120.847155074999989, 51.64000686100011 ], [ -120.846212838999975, 51.639964244000069 ], [ -120.846057104999929, 51.641288585000041 ], [ -120.842088184999938, 51.641108989000102 ], [ -120.841884259999944, 51.642841692000076 ], [ -120.842604864999913, 51.64287431000006 ], [ -120.842546354999953, 51.64337149000005 ], [ -120.842617498999957, 51.643374711000014 ], [ -120.842590029999911, 51.643608129 ], [ -120.844014067999964, 51.643672573000075 ], [ -120.84359286099999, 51.647252431000027 ], [ -120.842655222999937, 51.647210001000111 ], [ -120.84256795899995, 51.647951454000051 ], [ -120.841583092999912, 51.647906878000057 ], [ -120.841214039999983, 51.647890172000103 ], [ -120.841041315000012, 51.647476094000062 ], [ -120.840508689999922, 51.64680960600009 ], [ -120.840040809999948, 51.646611593000038 ], [ -120.839388793999944, 51.646060504000083 ], [ -120.839313001999983, 51.644278812000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024844", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "89.7", "sL_BldgLoss": "89.7", "sL_StrLoss": "89.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FF17D7112A445EC0A793AE918BCC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.0639479, 51.595349645000091 ], [ -121.066901783999967, 51.595477691000077 ], [ -121.067184702999953, 51.595743208000044 ], [ -121.067390689999982, 51.596331300000053 ], [ -121.067336382999926, 51.596905299000085 ], [ -121.06692071799992, 51.597519097000031 ], [ -121.06682490899999, 51.59908289100013 ], [ -121.066549290999959, 51.599464593000057 ], [ -121.066132601, 51.599736591000095 ], [ -121.06590351599999, 51.600038591000022 ], [ -121.065148821999983, 51.600457301000077 ], [ -121.064359083999932, 51.60073218900002 ], [ -121.062865523999946, 51.601034539000047 ], [ -121.06324679, 51.597646033000075 ], [ -121.063666938999958, 51.597664251000047 ], [ -121.06370519099994, 51.597324243000145 ], [ -121.06372567499993, 51.597325131000098 ], [ -121.0639479, 51.595349645000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024846", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2419083", "BldgCostT": "1668333", "sL_LossRatio": "1", "sL_AssetLoss": "138.3", "sL_BldgLoss": "138.3", "sL_StrLoss": "138.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001CEF8E8C552D5EC0B9CC235EA2C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.706706321999917, 51.525687834000088 ], [ -120.712462539999933, 51.525955857000035 ], [ -120.712031761999953, 51.529535629000115 ], [ -120.710185324999912, 51.529449688000071 ], [ -120.709986965999974, 51.531097275000022 ], [ -120.704230089999939, 51.530829128000072 ], [ -120.704661516999977, 51.52724938900009 ], [ -120.706507849999937, 51.527335421000039 ], [ -120.706706321999917, 51.525687834000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46", "sL_BldgLoss": "46", "sL_StrLoss": "46", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016D50905F8285EC0639A2B7B79C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.634651455, 51.504089780000086 ], [ -120.634679101999936, 51.503863244000051 ], [ -120.634245755999927, 51.50384276900008 ], [ -120.634250463999962, 51.503804207000044 ], [ -120.633614437999981, 51.50377415100008 ], [ -120.633639380999952, 51.503569803000154 ], [ -120.633684307999943, 51.503578225000091 ], [ -120.63421807099995, 51.503608704000058 ], [ -120.634415481999909, 51.503620002000083 ], [ -120.636361865999945, 51.503589257 ], [ -120.636720508999929, 51.503583578000104 ], [ -120.63702859199995, 51.503578709000102 ], [ -120.637979093999917, 51.503674719000124 ], [ -120.638836144999971, 51.503761263000058 ], [ -120.63961653399997, 51.50379090399999 ], [ -120.640242484999945, 51.503734966000103 ], [ -120.640846913999951, 51.503605979000056 ], [ -120.641467320999979, 51.503381444000091 ], [ -120.643998547999942, 51.502202566000022 ], [ -120.643747849999968, 51.504260374000083 ], [ -120.640435782999987, 51.504104101000067 ], [ -120.640404408999984, 51.504361451000058 ], [ -120.634651455, 51.504089780000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024849", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "179.5", "sL_BldgLoss": "179.5", "sL_StrLoss": "179.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E8203BB1BF345EC01C3040896CD64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.821840326999961, 51.673161802000017 ], [ -120.827616587999955, 51.673423965000062 ], [ -120.827533516999907, 51.674127300000059 ], [ -120.827193757000018, 51.677003662000089 ], [ -120.82658778399994, 51.676976173000057 ], [ -120.826559841999938, 51.677212676000046 ], [ -120.821810516999918, 51.676997119000113 ], [ -120.820783088999946, 51.676950461000047 ], [ -120.821206441999934, 51.673370788000113 ], [ -120.821812361999932, 51.673398306000102 ], [ -120.821840326999961, 51.673161802000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "148.1", "sL_BldgLoss": "148.1", "sL_StrLoss": "148.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006B508FC8122C5EC06B992DD5DCC44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.685765871999948, 51.539727012000085 ], [ -120.685950140999978, 51.53820376300007 ], [ -120.685890305999948, 51.538202583000036 ], [ -120.685903981999957, 51.537933053000074 ], [ -120.685471777999936, 51.537924523000086 ], [ -120.685512811999956, 51.53711593400007 ], [ -120.685080616999983, 51.537107403000086 ], [ -120.685121657999943, 51.536298814000091 ], [ -120.685553843999955, 51.536307345000097 ], [ -120.685567521999943, 51.536037814000032 ], [ -120.686864077999985, 51.536063396000074 ], [ -120.686858256999926, 51.536178203000091 ], [ -120.691956346999987, 51.536416430000031 ], [ -120.691523797999963, 51.53999608900007 ], [ -120.685765871999948, 51.539727012000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024852", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "104.2", "sL_BldgLoss": "104.2", "sL_StrLoss": "104.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FEAD8D4678365EC090EECE77C3CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.848122571999951, 51.625229284000042 ], [ -120.848543196999941, 51.621649334000033 ], [ -120.85431284299996, 51.621910159000045 ], [ -120.853996504999941, 51.624605591000083 ], [ -120.853721913999962, 51.624740109000044 ], [ -120.853305280999976, 51.624697292000093 ], [ -120.852060384999902, 51.623828609000043 ], [ -120.850341089999972, 51.624130506000043 ], [ -120.849823413999928, 51.624416787000065 ], [ -120.849036613999914, 51.62514030500008 ], [ -120.848854048999968, 51.625262368000037 ], [ -120.848122571999951, 51.625229284000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024853", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "122.6", "sL_BldgLoss": "122.6", "sL_StrLoss": "122.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F9A2197B0285EC0B1C6342EF7C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.633118634999946, 51.529055221000149 ], [ -120.63887484299994, 51.529326963000088 ], [ -120.63843804599999, 51.532906443000073 ], [ -120.632681373999972, 51.532634680000022 ], [ -120.633118634999946, 51.529055221000149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024855", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "148", "sL_BldgLoss": "148", "sL_StrLoss": "148", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000308D57075D395EC0767EDD2BEBCC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.893627806999973, 51.599007449000112 ], [ -120.899394746999945, 51.599266001000117 ], [ -120.89914380499998, 51.601424356000066 ], [ -120.898978476999943, 51.602846213000106 ], [ -120.895153137999898, 51.602674744000076 ], [ -120.893211070999911, 51.602587643000057 ], [ -120.893627806999973, 51.599007449000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024856", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "8107917", "BldgCostT": "5591667", "sL_LossRatio": "1", "sL_AssetLoss": "577.6", "sL_BldgLoss": "577.6", "sL_StrLoss": "577.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001278F5645D2E5EC0C1E03F8207C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.732713786, 51.526215610000079 ], [ -120.733000213999929, 51.523825895000073 ], [ -120.731899190999968, 51.523774850000052 ], [ -120.731717964000012, 51.52528657700006 ], [ -120.725961716999933, 51.525019528000058 ], [ -120.726008187999952, 51.524632317000055 ], [ -120.721160678999979, 51.524407199000095 ], [ -120.72117587799994, 51.524280673000099 ], [ -120.717852373999904, 51.52412620900003 ], [ -120.717871964999986, 51.523963222000141 ], [ -120.71541660199999, 51.523849043000048 ], [ -120.71544931199999, 51.523577033000066 ], [ -120.713834267, 51.523501900000056 ], [ -120.71386792, 51.5232221300001 ], [ -120.712929738999918, 51.523178475000044 ], [ -120.71271621299999, 51.524953222000136 ], [ -120.706960124999938, 51.524685212000094 ], [ -120.706974385999942, 51.524566805000056 ], [ -120.705797693999926, 51.52451198100006 ], [ -120.70622893099997, 51.52093221400002 ], [ -120.708105134999954, 51.521019625000129 ], [ -120.708429272999979, 51.522088179000093 ], [ -120.708587346999977, 51.522265636000071 ], [ -120.708794985999958, 51.522379713000106 ], [ -120.709126595999976, 51.522425747000085 ], [ -120.709817550999915, 51.522359825000109 ], [ -120.710163952999963, 51.522366938000097 ], [ -120.710501209999904, 51.522414163000057 ], [ -120.711692395999975, 51.522892589000094 ], [ -120.712326355999949, 51.523059784000054 ], [ -120.71266754, 51.52308646600013 ], [ -120.71405460299998, 51.522863031000099 ], [ -120.71441992599999, 51.522834426000053 ], [ -120.71463161399997, 51.522817856000081 ], [ -120.717027103999968, 51.522848276000076 ], [ -120.719368615999954, 51.522412656000057 ], [ -120.719758332999987, 51.522264291000091 ], [ -120.720298524, 51.521983411000051 ], [ -120.72066001, 51.521901228000054 ], [ -120.72105968799994, 51.521886479000067 ], [ -120.721359064999959, 51.52192380000006 ], [ -120.722402624999958, 51.522234357000116 ], [ -120.722760312999981, 51.522340775000075 ], [ -120.723109869999973, 51.522389008000047 ], [ -120.723389445999914, 51.522427591000046 ], [ -120.72388083099996, 51.522396409000038 ], [ -120.724670801999977, 51.522240523000086 ], [ -120.725103632999975, 51.522214721000111 ], [ -120.72545772699999, 51.522254558000043 ], [ -120.726812246999955, 51.522747611000064 ], [ -120.727065921999952, 51.522795074000058 ], [ -120.727304760999914, 51.522839757000028 ], [ -120.727419110999932, 51.522837288000076 ], [ -120.728098320999905, 51.522822581000121 ], [ -120.72887550199999, 51.522748856000078 ], [ -120.729359989000031, 51.52265928800005 ], [ -120.72953696399999, 51.522626548000062 ], [ -120.730314529999958, 51.522380941000051 ], [ -120.730428887999935, 51.522346263000088 ], [ -120.732631420999965, 51.521678435000084 ], [ -120.733101590999979, 51.521582330000051 ], [ -120.733550583999957, 51.521554540000082 ], [ -120.734826967999979, 51.521589406000032 ], [ -120.735650446999955, 51.521696871000053 ], [ -120.736316439999953, 51.521859237000058 ], [ -120.736206429999982, 51.522777726000051 ], [ -120.738898830999972, 51.522902433000063 ], [ -120.738470230999894, 51.526482317000031 ], [ -120.732713786, 51.526215610000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024857", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "51545084", "BldgCostT": "35548334", "sL_LossRatio": "1", "sL_AssetLoss": "3905", "sL_BldgLoss": "3905", "sL_StrLoss": "3905", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039D18D34A1355EC07F978C4216CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.817929303999961, 51.608721421000034 ], [ -120.81836221899999, 51.608729470000121 ], [ -120.818375144999891, 51.60845992000003 ], [ -120.817942232999926, 51.608451870000088 ], [ -120.817929303999961, 51.608721421000034 ], [ -120.817063474999941, 51.608705318000041 ], [ -120.817050540999944, 51.608974868000111 ], [ -120.815751792999919, 51.608950702000129 ], [ -120.815790615999973, 51.608142050000012 ], [ -120.816223524999955, 51.608150106000032 ], [ -120.816236464, 51.607880556000111 ], [ -120.816669369999929, 51.607888612000124 ], [ -120.81670817699991, 51.607079959000018 ], [ -120.817141073999935, 51.607088013000066 ], [ -120.817166940999954, 51.606548910000114 ], [ -120.817599832999974, 51.606556962000091 ], [ -120.817612762999943, 51.606287411000046 ], [ -120.818045655999981, 51.606295462000098 ], [ -120.818056189999965, 51.606075776000097 ], [ -120.81762385899999, 51.606056097000106 ], [ -120.817612762999943, 51.606287411000046 ], [ -120.815881201, 51.606255195000081 ], [ -120.815894537999952, 51.605977363000122 ], [ -120.813721335999958, 51.605878381000061 ], [ -120.81411099499995, 51.602582583000128 ], [ -120.814144578999944, 51.602298493000056 ], [ -120.81555656099998, 51.602362808000052 ], [ -120.815639452999918, 51.601661426000128 ], [ -120.81653461800002, 51.601702192000126 ], [ -120.816542315, 51.601637047000033 ], [ -120.82230914199999, 51.601899495000069 ], [ -120.822300619999979, 51.601971710000051 ], [ -120.823064742000014, 51.60200646300008 ], [ -120.823073412, 51.601933001000106 ], [ -120.828840317999934, 51.602195119000058 ], [ -120.828742384999941, 51.603025877000071 ], [ -120.829894138999933, 51.603078192000083 ], [ -120.82988705, 51.603138347000069 ], [ -120.82980722, 51.60381565900007 ], [ -120.830605574999979, 51.603830421000083 ], [ -120.830683830999931, 51.603166352000095 ], [ -120.830785051999968, 51.602307382000092 ], [ -120.831759042999977, 51.602351607000081 ], [ -120.831762506999937, 51.602322205000107 ], [ -120.833496310000015, 51.60240090700006 ], [ -120.833593573999948, 51.601575047000068 ], [ -120.839360495999969, 51.601836633000076 ], [ -120.839294042999953, 51.602401506000028 ], [ -120.840322102999934, 51.602448107000043 ], [ -120.840273968999952, 51.602857333000017 ], [ -120.842350960999937, 51.602951453000117 ], [ -120.842293423999976, 51.603440811000041 ], [ -120.842325296999945, 51.603442255000054 ], [ -120.842226486999962, 51.60428262500006 ], [ -120.843463680999932, 51.604338671000036 ], [ -120.843629752999945, 51.602925885000062 ], [ -120.849396910999985, 51.603186963000034 ], [ -120.849321902999961, 51.603825789000084 ], [ -120.849997819999928, 51.603856367000027 ], [ -120.850030132999933, 51.603581135000063 ], [ -120.855797415999973, 51.603841890000112 ], [ -120.855678458999989, 51.604856257000037 ], [ -120.85667245799999, 51.604901168 ], [ -120.856460665999947, 51.606707377000106 ], [ -120.856756387999923, 51.606720736000099 ], [ -120.856760448999978, 51.606686100000047 ], [ -120.856856494999974, 51.606690438000101 ], [ -120.856983304999972, 51.605608902000064 ], [ -120.85793230799996, 51.605651769000083 ], [ -120.857992190999951, 51.60514092500005 ], [ -120.863759726, 51.605401277000048 ], [ -120.863714582999961, 51.605786797000114 ], [ -120.86575673199998, 51.605823955000076 ], [ -120.866161039999952, 51.605831308000091 ], [ -120.866110471999917, 51.606909547000086 ], [ -120.865963932999975, 51.606906882 ], [ -120.865888254999916, 51.607553442000075 ], [ -120.865898894999972, 51.607553922000108 ], [ -120.865479817000022, 51.61113398400007 ], [ -120.863646113999962, 51.611051280000019 ], [ -120.863528889999955, 51.612052228000039 ], [ -120.862012901999947, 51.611983831000032 ], [ -120.861988929999924, 51.612188464000027 ], [ -120.858270460999975, 51.612020612000038 ], [ -120.858121126999976, 51.613294353000107 ], [ -120.856169527, 51.613206208000086 ], [ -120.855965134999977, 51.614948801000061 ], [ -120.855366105999906, 51.614921739000074 ], [ -120.855292064999929, 51.615552889000078 ], [ -120.855250061999982, 51.615910915000065 ], [ -120.854672806999972, 51.615884833000052 ], [ -120.854636551999974, 51.616193830000071 ], [ -120.85354291099999, 51.616144409000086 ], [ -120.853531200999925, 51.616392562000058 ], [ -120.85309820400002, 51.616384642000163 ], [ -120.85308547899993, 51.616654199000081 ], [ -120.852652478999971, 51.616646276000054 ], [ -120.85263975099997, 51.616915833000093 ], [ -120.851773747999971, 51.616899985000039 ], [ -120.851761015999955, 51.617169541000088 ], [ -120.850895007999895, 51.617153686000108 ], [ -120.850882269999943, 51.617423243000111 ], [ -120.850449263999934, 51.617415312000077 ], [ -120.850436522999956, 51.617684868000026 ], [ -120.849664143999959, 51.617670719000074 ], [ -120.849509197999936, 51.618989944000049 ], [ -120.843739963999937, 51.618728875000052 ], [ -120.8439649099999, 51.616815780000124 ], [ -120.841510806999935, 51.616704638000101 ], [ -120.84135887799999, 51.617996151000057 ], [ -120.841913838999972, 51.61802128900009 ], [ -120.841492706999986, 51.621601227000099 ], [ -120.840435012999976, 51.621553314000074 ], [ -120.840394776999943, 51.621895252000094 ], [ -120.839307227999939, 51.621845977000071 ], [ -120.839255051999956, 51.622289279000078 ], [ -120.83796317499997, 51.622230732000084 ], [ -120.837923609999933, 51.622566810000059 ], [ -120.832153973999965, 51.622305155000078 ], [ -120.832229233999925, 51.621666611000144 ], [ -120.832044727999943, 51.621663203000018 ], [ -120.832019026999973, 51.622202309000045 ], [ -120.83089938899991, 51.622181620000077 ], [ -120.830755846999978, 51.623399175000046 ], [ -120.828499859999965, 51.62329676100012 ], [ -120.824986144999954, 51.623137159000052 ], [ -120.825014377999963, 51.622897955000013 ], [ -120.825663315999975, 51.622344497000064 ], [ -120.826121895999933, 51.621794790000109 ], [ -120.82651119199997, 51.621541305000015 ], [ -120.827649620999978, 51.62130199900011 ], [ -120.828589382999937, 51.620950198000024 ], [ -120.828923086999964, 51.620336410000057 ], [ -120.829226305999896, 51.62003588900005 ], [ -120.829655991999971, 51.619792409000134 ], [ -120.830831109999963, 51.619409184000091 ], [ -120.83095729199999, 51.619195609000116 ], [ -120.830830312000018, 51.618815288000057 ], [ -120.830910386999975, 51.618331096000055 ], [ -120.831316413999957, 51.618014894000069 ], [ -120.831873390999959, 51.617855403000085 ], [ -120.833091812999925, 51.618047705000059 ], [ -120.833899281999905, 51.618080493000058 ], [ -120.835603189000011, 51.617465191000072 ], [ -120.836739912000013, 51.617261498000083 ], [ -120.837050911999881, 51.617131887000035 ], [ -120.838095695999954, 51.616090804000088 ], [ -120.838460518999966, 51.615412894000052 ], [ -120.838724038999914, 51.615196792000035 ], [ -120.839799696999961, 51.615245541000036 ], [ -120.839955046999989, 51.613925251000104 ], [ -120.840080099999952, 51.613852012000081 ], [ -120.840455378999962, 51.613857691000071 ], [ -120.840791010999951, 51.614386104000047 ], [ -120.841188108999987, 51.614582590000076 ], [ -120.84172, 51.614628193000023 ], [ -120.842674415999966, 51.614582590000076 ], [ -120.844479697999986, 51.614885895000079 ], [ -120.845444994000019, 51.614336188000024 ], [ -120.84696460899994, 51.61396020400008 ], [ -120.847699892999941, 51.613082915000049 ], [ -120.848825993999952, 51.612195605000089 ], [ -120.849048604999965, 51.611768389000119 ], [ -120.851004599999953, 51.610401106000026 ], [ -120.851237693999948, 51.609765901000081 ], [ -120.85201039099999, 51.60899830400011 ], [ -120.852258721999974, 51.608931299000098 ], [ -120.852402712999947, 51.608636508000153 ], [ -120.852998105999987, 51.608251995000025 ], [ -120.852958589999943, 51.608170815000065 ], [ -120.852876089999938, 51.608096691000085 ], [ -120.852717018999968, 51.608102397000039 ], [ -120.851875109, 51.608501199000031 ], [ -120.850960003999916, 51.609528085000093 ], [ -120.85026238199994, 51.609586491000066 ], [ -120.84996240199996, 51.609528093000101 ], [ -120.84970222599992, 51.609226103000076 ], [ -120.84938091, 51.608392988000027 ], [ -120.848744314999976, 51.607787707000071 ], [ -120.848075409999979, 51.607576893000086 ], [ -120.847867192999956, 51.607411693000088 ], [ -120.84809247699998, 51.60693029300009 ], [ -120.848517991, 51.606488796000079 ], [ -120.848481993999911, 51.606352104000067 ], [ -120.848144214999976, 51.606139903000063 ], [ -120.846653378999918, 51.606534401000026 ], [ -120.844739587999953, 51.606577458000061 ], [ -120.844739851999961, 51.606575214000024 ], [ -120.843819149999945, 51.606533520000042 ], [ -120.843774958999987, 51.606909445000042 ], [ -120.84105502499996, 51.608239205000082 ], [ -120.839313206999989, 51.609304498 ], [ -120.839118191999972, 51.609481107000121 ], [ -120.838954395999949, 51.609909813000115 ], [ -120.83849251299992, 51.610161809000047 ], [ -120.83832638899996, 51.610311388000078 ], [ -120.837306895999959, 51.611101790000056 ], [ -120.836837692999893, 51.61126418700011 ], [ -120.835832107999948, 51.612083107000039 ], [ -120.833956384999951, 51.612345196000099 ], [ -120.83290059899997, 51.612658485000075 ], [ -120.831821692999981, 51.612845088000071 ], [ -120.830988914999963, 51.613062996000075 ], [ -120.829930174, 51.613475995000051 ], [ -120.829510807999981, 51.613458897000022 ], [ -120.828480492999958, 51.612963301000065 ], [ -120.827603416999963, 51.612866408000102 ], [ -120.82672960799998, 51.613038683000077 ], [ -120.825533600999947, 51.613574305000022 ], [ -120.823796080999941, 51.613666795000064 ], [ -120.823019998999911, 51.613877586000037 ], [ -120.822352393999921, 51.613955912000101 ], [ -120.821905520999906, 51.613901796000043 ], [ -120.821476209999915, 51.614128305000087 ], [ -120.821015004999964, 51.614136793000043 ], [ -120.820125422999936, 51.614571204000043 ], [ -120.819132274999916, 51.614813295000026 ], [ -120.817125180999938, 51.615683506000039 ], [ -120.81636389, 51.615912804000061 ], [ -120.81582879399997, 51.615947007000081 ], [ -120.815513795999948, 51.615878598000073 ], [ -120.815195498999969, 51.615723466000063 ], [ -120.815527072999927, 51.61291884400007 ], [ -120.816172133999942, 51.612948213000095 ], [ -120.816317311999924, 51.611719960000123 ], [ -120.819255089999899, 51.611853670000052 ], [ -120.819256476999897, 51.61184193 ], [ -120.820292427999973, 51.611889062000088 ], [ -120.820307022999927, 51.611765495000014 ], [ -120.820191666999932, 51.611760248000081 ], [ -120.820290473999961, 51.61092363300007 ], [ -120.818258802999978, 51.610885879000101 ], [ -120.818297585999971, 51.610077225000076 ], [ -120.81786465799999, 51.610069176000074 ], [ -120.81785172799998, 51.610338726000059 ], [ -120.817418797999935, 51.610330676000054 ], [ -120.817405864999927, 51.610600226000031 ], [ -120.815674138999967, 51.61056800500009 ], [ -120.815712966999925, 51.609759353000108 ], [ -120.816145890999948, 51.609767411000092 ], [ -120.816158829999935, 51.60949786000004 ], [ -120.817024671999917, 51.609513970000094 ], [ -120.817037606999961, 51.609244419000106 ], [ -120.817470526999983, 51.609252472000065 ], [ -120.817483458999931, 51.608982921000049 ], [ -120.817916374999967, 51.6089909720001 ], [ -120.817929303999961, 51.608721421000034 ] ], [ [ -120.830928898, 51.609329695000085 ], [ -120.830938260999972, 51.60925025100002 ], [ -120.83071651599991, 51.609240183000104 ], [ -120.830707153, 51.60931962700004 ], [ -120.830928898, 51.609329695000085 ] ], [ [ -120.825339382999985, 51.606700648000128 ], [ -120.825359045, 51.606533986000031 ], [ -120.825007788999983, 51.606518021000099 ], [ -120.824987011999937, 51.606694117000082 ], [ -120.825339382999985, 51.606700648000128 ] ], [ [ -120.855930303999912, 51.607658099000055 ], [ -120.856138480999945, 51.607823303000082 ], [ -120.857451409999896, 51.607874602000038 ], [ -120.858743422999908, 51.60708840299999 ], [ -120.859553787999957, 51.606762309000025 ], [ -120.859608811999948, 51.606520109 ], [ -120.858480609999987, 51.606552906000083 ], [ -120.857129094999948, 51.607014292000059 ], [ -120.855956885999944, 51.607101189000048 ], [ -120.855792190999964, 51.60722371300006 ], [ -120.855843082999968, 51.607341892000072 ], [ -120.855930303999912, 51.607658099000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6307500", "BldgCostT": "4350000", "sL_LossRatio": "1", "sL_AssetLoss": "432.9", "sL_BldgLoss": "432.9", "sL_StrLoss": "432.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000000CFC8FA92B5EC03877470807BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.675324124999975, 51.502062889000079 ], [ -120.675472405999926, 51.500838465000065 ], [ -120.675351411999927, 51.500832792000068 ], [ -120.67578489099995, 51.497253057000059 ], [ -120.676593572999963, 51.497290976000095 ], [ -120.676758528999983, 51.49592837700002 ], [ -120.67724376399994, 51.495951126000065 ], [ -120.677405879999952, 51.494611790000071 ], [ -120.678329730999963, 51.494655098000102 ], [ -120.678596557999967, 51.492450113000139 ], [ -120.682116635999975, 51.492615056000034 ], [ -120.68226686299991, 51.49137269700001 ], [ -120.682294216999964, 51.491373978000098 ], [ -120.682508457999944, 51.489602099000116 ], [ -120.682828440999941, 51.489617087000106 ], [ -120.682879166999925, 51.489197507000014 ], [ -120.683367382999933, 51.489220374000062 ], [ -120.683419768999968, 51.4887870190001 ], [ -120.683554561, 51.488793332000057 ], [ -120.683781564999933, 51.48691532400003 ], [ -120.683876246999944, 51.486919758000042 ], [ -120.683983409999939, 51.486033128000059 ], [ -120.685929444999914, 51.486124249000056 ], [ -120.68615779799994, 51.484234127000065 ], [ -120.686514497999937, 51.484349760000065 ], [ -120.686910556999976, 51.48442230400007 ], [ -120.687438847999914, 51.484441621000052 ], [ -120.689637391999895, 51.48431411400005 ], [ -120.68961509799999, 51.484917855000113 ], [ -120.69007744299995, 51.485555101000045 ], [ -120.690084474999964, 51.485736341000099 ], [ -120.689999454999921, 51.485925855000112 ], [ -120.689787520999943, 51.486100436000129 ], [ -120.688895863000013, 51.486515950000054 ], [ -120.688310546999972, 51.486980867000071 ], [ -120.688245444999907, 51.487058441000016 ], [ -120.687085999000018, 51.48844007900005 ], [ -120.686811071999983, 51.488920428000021 ], [ -120.68670734399997, 51.489599581000022 ], [ -120.686393150999947, 51.490081690000096 ], [ -120.686009286999948, 51.490482230000055 ], [ -120.685675191999934, 51.490722193000039 ], [ -120.684804111999966, 51.491109794000117 ], [ -120.684532826999927, 51.491392303000055 ], [ -120.684529307999981, 51.491543 ], [ -120.684521688999936, 51.491866501000061 ], [ -120.684517460999956, 51.49204588700006 ], [ -120.68401327399999, 51.493192268 ], [ -120.68360016299998, 51.494131481000068 ], [ -120.683283672999949, 51.494476652000046 ], [ -120.682717262999944, 51.494927132000058 ], [ -120.682549828999981, 51.495139799000057 ], [ -120.682411684999977, 51.49560042500007 ], [ -120.68222337899999, 51.495948426000083 ], [ -120.68208579, 51.496202569000047 ], [ -120.681940135999938, 51.496378470000103 ], [ -120.681751127999974, 51.496542414000068 ], [ -120.681268505, 51.496789806000038 ], [ -120.679252673999912, 51.497589069000135 ], [ -120.678610176999896, 51.497938758000025 ], [ -120.677552285, 51.498888196000109 ], [ -120.677438965999968, 51.499035904000053 ], [ -120.677357058999988, 51.499234557000122 ], [ -120.677344145999911, 51.499377037000059 ], [ -120.677435443999968, 51.499996930000094 ], [ -120.677432877999976, 51.50000577800008 ], [ -120.677252381999963, 51.500624404000035 ], [ -120.677081917999942, 51.501208886000022 ], [ -120.676925112999967, 51.501368937000031 ], [ -120.67649823499994, 51.50166932000009 ], [ -120.67646224399999, 51.501717255000052 ], [ -120.676339583999948, 51.501880592000099 ], [ -120.676300976999983, 51.50205609100005 ], [ -120.67629978799999, 51.502108635000084 ], [ -120.675324124999975, 51.502062889000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024859", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "124", "sL_BldgLoss": "124", "sL_StrLoss": "124", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9A345097C2C5EC0C0A2AEF793C44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.69205803899996, 51.537852786000052 ], [ -120.692160859999973, 51.537001784000068 ], [ -120.691893193999974, 51.536989283000068 ], [ -120.692325684, 51.533409613000046 ], [ -120.698082823999982, 51.533678360000074 ], [ -120.697980124999916, 51.534529370000079 ], [ -120.698247776999949, 51.53454185600004 ], [ -120.697815758999923, 51.538121546000106 ], [ -120.69205803899996, 51.537852786000052 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024860", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.9", "sL_BldgLoss": "46.9", "sL_StrLoss": "46.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000393586EF332A5EC06A6247045FBF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.658861461999919, 51.494608530000107 ], [ -120.660773039999953, 51.492970591000095 ], [ -120.660379389999946, 51.496212600000078 ], [ -120.6570873899999, 51.496057729000022 ], [ -120.65711092, 51.49603807900013 ], [ -120.658460948999959, 51.494936768000073 ], [ -120.658823781999899, 51.494640801000052 ], [ -120.658861461999919, 51.494608530000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024861", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "131.3", "sL_BldgLoss": "131.3", "sL_StrLoss": "131.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000830761C970455EC0BC5731859CCC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.086951889999938, 51.596733014000066 ], [ -121.08833788299998, 51.596395390000069 ], [ -121.088843286999946, 51.596376911000029 ], [ -121.089069810999931, 51.596498003000107 ], [ -121.089893899999964, 51.59648369400005 ], [ -121.090990679999919, 51.596248713000136 ], [ -121.090732581999973, 51.598555717000124 ], [ -121.089738932999978, 51.598512864000035 ], [ -121.089678964999962, 51.599048740000093 ], [ -121.087826599999943, 51.598968831000022 ], [ -121.08779829299999, 51.599221684000071 ], [ -121.08542264499999, 51.599119156000057 ], [ -121.085323933999931, 51.60000044100007 ], [ -121.083766151999939, 51.599933184000058 ], [ -121.083700493999942, 51.600519178000063 ], [ -121.077932323999946, 51.60026995000004 ], [ -121.078023936999898, 51.599453272000083 ], [ -121.079195498999923, 51.599168389000113 ], [ -121.080038872999964, 51.598696994000093 ], [ -121.080679086999965, 51.598617206000057 ], [ -121.083011321999962, 51.597738498000112 ], [ -121.083331589999901, 51.597690011000061 ], [ -121.084650080999893, 51.597225800000025 ], [ -121.086072414999961, 51.597042 ], [ -121.086951889999938, 51.596733014000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024862", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "49.7", "sL_BldgLoss": "49.7", "sL_StrLoss": "49.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005DD3EE1D16285EC0B311E39068C04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.623266856999948, 51.503657971000095 ], [ -120.623312400999922, 51.503285576000053 ], [ -120.621764849000016, 51.503212290000057 ], [ -120.62260372199998, 51.503072031000059 ], [ -120.624667406999919, 51.502736867000031 ], [ -120.62584310299998, 51.502545925000042 ], [ -120.62677857599999, 51.50243081300011 ], [ -120.62783054, 51.502463474000137 ], [ -120.628505954999966, 51.50253503800009 ], [ -120.629173289000022, 51.50267287500003 ], [ -120.629019684999889, 51.503930218000043 ], [ -120.623266856999948, 51.503657971000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3059500", "BldgCostT": "2110000", "sL_LossRatio": "1", "sL_AssetLoss": "186.9", "sL_BldgLoss": "186.9", "sL_StrLoss": "186.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003A172DDDF02F5EC046B96E29EBC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.749262528999964, 51.527889734000098 ], [ -120.755019291999957, 51.528155605000045 ], [ -120.754591953000016, 51.531735530000077 ], [ -120.749111814999978, 51.531482443000073 ], [ -120.74889000099995, 51.533338461000064 ], [ -120.743132596999942, 51.533072282000056 ], [ -120.743560880999979, 51.529492404000088 ], [ -120.74904073899999, 51.529745758000047 ], [ -120.749262528999964, 51.527889734000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2465000", "BldgCostT": "1700000", "sL_LossRatio": "1", "sL_AssetLoss": "210", "sL_BldgLoss": "210", "sL_StrLoss": "210", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003AC998B3A5465EC01657CF2861CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.09847235099997, 51.583117100000095 ], [ -121.098562398999917, 51.580960305000055 ], [ -121.099860579999984, 51.580981335000054 ], [ -121.099871827999962, 51.580711735000079 ], [ -121.100876791999951, 51.580728006000065 ], [ -121.100931211000017, 51.580240387000096 ], [ -121.103581318999957, 51.580354446000023 ], [ -121.103612203999887, 51.580077550000091 ], [ -121.104230064999953, 51.580104133000113 ], [ -121.104283102999929, 51.579628565000071 ], [ -121.105129329999926, 51.579664968000031 ], [ -121.10517808799996, 51.579227686000081 ], [ -121.106354735999929, 51.579278292 ], [ -121.106407459999929, 51.578805313000018 ], [ -121.107262964, 51.578842100000074 ], [ -121.107299537999964, 51.578513933000089 ], [ -121.108770045999975, 51.578577150000108 ], [ -121.108816293999965, 51.578162069000058 ], [ -121.109022476999954, 51.578170931000024 ], [ -121.109012090999926, 51.578681577000069 ], [ -121.109008284999931, 51.578867500000115 ], [ -121.108992989999962, 51.578980268000095 ], [ -121.108927200999915, 51.579464896000047 ], [ -121.1089059699999, 51.579687950000071 ], [ -121.108842212999917, 51.58035808900005 ], [ -121.108726908999955, 51.580496184 ], [ -121.108500978, 51.580599803000048 ], [ -121.107675429999915, 51.58086680600006 ], [ -121.105395295999955, 51.581604198000058 ], [ -121.105090808999961, 51.581662306000041 ], [ -121.105134974999942, 51.581694696000106 ], [ -121.105209781999989, 51.582010893000067 ], [ -121.10563352099993, 51.582566408000048 ], [ -121.105999891999943, 51.582770006000047 ], [ -121.104739115999948, 51.58322580300009 ], [ -121.104391677999942, 51.583257097000093 ], [ -121.103742703999913, 51.58323718300003 ], [ -121.10341499899998, 51.583141703000116 ], [ -121.102993912999978, 51.58288399900006 ], [ -121.102377296999975, 51.582792790000077 ], [ -121.102150793999925, 51.582680298000049 ], [ -121.100923005999931, 51.582687409000123 ], [ -121.100649029999957, 51.582768720000047 ], [ -121.100666403999966, 51.582613072000058 ], [ -121.100658573999922, 51.582612946000062 ], [ -121.100692305999985, 51.581804147000149 ], [ -121.100259570999981, 51.581797141000081 ], [ -121.100214585999979, 51.582875540000039 ], [ -121.09978184, 51.582868532000127 ], [ -121.099773110999976, 51.583077761 ], [ -121.099658672999951, 51.583136319000033 ], [ -121.09847235099997, 51.583117100000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "97.8", "sL_BldgLoss": "97.8", "sL_StrLoss": "97.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007893C605F3455EC0D9930203EFC94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.093878204999925, 51.576079704000094 ], [ -121.094324589999971, 51.575998201000047 ], [ -121.094659384999915, 51.575982999000082 ], [ -121.096211727999943, 51.576153292000122 ], [ -121.096316470999938, 51.57616000400003 ], [ -121.097074499999977, 51.576208503000046 ], [ -121.09723734399995, 51.57620880200011 ], [ -121.097088275999951, 51.577543605000109 ], [ -121.09346323199992, 51.577387353000098 ], [ -121.093267007999927, 51.579142993000104 ], [ -121.08998416699994, 51.579001390000045 ], [ -121.089964441999882, 51.579471747000063 ], [ -121.088630737999935, 51.579450028000139 ], [ -121.089090078999959, 51.578489995000034 ], [ -121.089301889999945, 51.578279687000119 ], [ -121.089564684999928, 51.578105710000031 ], [ -121.090234881999933, 51.577798193000049 ], [ -121.091415638999976, 51.577112256000049 ], [ -121.091938723999974, 51.576808403000079 ], [ -121.093028783999955, 51.576357907000073 ], [ -121.093878204999925, 51.576079704000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024870", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "97.5", "sL_BldgLoss": "97.5", "sL_StrLoss": "97.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002D65327FB9455EC000757FCCB9CA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.085028767999972, 51.585874498000116 ], [ -121.085278652999961, 51.583642844000046 ], [ -121.085372293999939, 51.583587511000133 ], [ -121.085785198999972, 51.58323740600013 ], [ -121.085953391999951, 51.583034194000092 ], [ -121.088479131999975, 51.583143227000043 ], [ -121.088573123999936, 51.582303200000077 ], [ -121.094338996000019, 51.582551894000105 ], [ -121.094177557999927, 51.583996385000049 ], [ -121.093588198999967, 51.584124395000067 ], [ -121.091661417999944, 51.584301102000076 ], [ -121.090893175999952, 51.584719795000105 ], [ -121.089863710999964, 51.584827996000115 ], [ -121.088064200999909, 51.585366387000057 ], [ -121.087877802999913, 51.585363484000048 ], [ -121.087585291999943, 51.585097200000071 ], [ -121.086978782999921, 51.585087191000049 ], [ -121.085028767999972, 51.585874498000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "85.8", "sL_BldgLoss": "85.8", "sL_StrLoss": "85.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000076CD7900EA245EC0FCE8ED3270C54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.575329371999956, 51.540517292000068 ], [ -120.580529598999959, 51.540765389000036 ], [ -120.579752791999937, 51.540996494000055 ], [ -120.579159799999942, 51.541271407000103 ], [ -120.578884109999962, 51.541859587000076 ], [ -120.578517507999948, 51.542248387000079 ], [ -120.577947181999946, 51.543494598000102 ], [ -120.577264893999924, 51.544101297000033 ], [ -120.577197342999966, 51.544910884000032 ], [ -120.574779144000019, 51.544795485000101 ], [ -120.575221234999958, 51.541216292000072 ], [ -120.575242913999915, 51.541217326000087 ], [ -120.575329371999956, 51.540517292000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024872", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.5", "sL_BldgLoss": "48.5", "sL_StrLoss": "48.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F4235546A9375EC0C480C22C76CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.868808952999984, 51.604800270000112 ], [ -120.868846828999949, 51.603991589000081 ], [ -120.86971259699996, 51.604007309000067 ], [ -120.86972521599999, 51.603737749000118 ], [ -120.871023862999934, 51.603761318000103 ], [ -120.870973412999959, 51.604839560000109 ], [ -120.871839199999926, 51.604855264000044 ], [ -120.871788765999938, 51.605933507000074 ], [ -120.871433581999938, 51.605927066000049 ], [ -120.871355862999934, 51.605925656000089 ], [ -120.87134325199996, 51.606195216000089 ], [ -120.86744710899994, 51.606124476000041 ], [ -120.867465736999947, 51.60572705400007 ], [ -120.867510278999973, 51.604776677000103 ], [ -120.868808952999984, 51.604800270000112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024874", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4337917", "BldgCostT": "2991667", "sL_LossRatio": "1", "sL_AssetLoss": "319.6", "sL_BldgLoss": "319.6", "sL_StrLoss": "319.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8F332ED4F2A5EC03F17915133C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.662132646999922, 51.52743098800002 ], [ -120.662431988999984, 51.524966738000018 ], [ -120.658507491999927, 51.524782297000058 ], [ -120.658328713999978, 51.526252991000085 ], [ -120.652572789000018, 51.525982231000079 ], [ -120.653008367, 51.522402672000098 ], [ -120.653038725999977, 51.522404100000109 ], [ -120.653868087999967, 51.523085714000032 ], [ -120.656026682999965, 51.523713802000032 ], [ -120.65697628099997, 51.523750799000126 ], [ -120.657773709999958, 51.523668204000039 ], [ -120.658677607999934, 51.523757896000127 ], [ -120.660343187999928, 51.523601213000113 ], [ -120.660448710999944, 51.523487300000099 ], [ -120.660422506999979, 51.522893391000075 ], [ -120.661050882999945, 51.522716793000022 ], [ -120.661584709, 51.522412002000067 ], [ -120.662068092999959, 51.522557297000084 ], [ -120.662600596999965, 51.522558702000048 ], [ -120.662988308999957, 51.522342183000063 ], [ -120.663375701999925, 51.522061697 ], [ -120.663746805999963, 51.521574606000044 ], [ -120.663941153999957, 51.521571714000025 ], [ -120.663658114, 51.523902632000024 ], [ -120.668323169999923, 51.524121653000101 ], [ -120.667888820999934, 51.527701265000111 ], [ -120.662132646999922, 51.52743098800002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158084", "BldgCostT": "1488334", "sL_LossRatio": "1", "sL_AssetLoss": "153.5", "sL_BldgLoss": "153.5", "sL_StrLoss": "153.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000082D47996D8395EC0FED8C114A7CC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.900618777999966, 51.600776147000069 ], [ -120.900660026999958, 51.600421277000095 ], [ -120.900527599999947, 51.600415345000116 ], [ -120.900943719999944, 51.596835117000104 ], [ -120.901426853999979, 51.596856760000065 ], [ -120.901446204999928, 51.59669022900006 ], [ -120.90574746, 51.596882810000054 ], [ -120.907212887999961, 51.596948385000118 ], [ -120.906797276999924, 51.600528635000067 ], [ -120.906446526999957, 51.600512941000083 ], [ -120.90638599099999, 51.601034343000087 ], [ -120.90100423799997, 51.600793412000066 ], [ -120.900618777999966, 51.600776147000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024876", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.5", "sL_BldgLoss": "37.5", "sL_StrLoss": "37.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007CE88A6BDF255EC077B85F36E8BF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.592255721999948, 51.500703268000095 ], [ -120.592284140999965, 51.500164241000057 ], [ -120.591852322999955, 51.500155371000055 ], [ -120.591866537000016, 51.499885858 ], [ -120.59100290799999, 51.499868114 ], [ -120.591017124999922, 51.499598601000045 ], [ -120.590585313999952, 51.499589727000064 ], [ -120.590599533999949, 51.499320214000043 ], [ -120.589735918999949, 51.499302461000063 ], [ -120.589750141, 51.499032948000078 ], [ -120.589318335999906, 51.499024069000043 ], [ -120.589361013999934, 51.498215531000035 ], [ -120.590507361999968, 51.498239097000138 ], [ -120.590513367999975, 51.498190281000099 ], [ -120.589217968999947, 51.4981285530001 ], [ -120.589247257, 51.497890550000136 ], [ -120.589633048999957, 51.497957663000072 ], [ -120.590287394000015, 51.498071725000038 ], [ -120.591505087, 51.49828396000003 ], [ -120.592369508999951, 51.498434632000034 ], [ -120.593442161999945, 51.498621555000092 ], [ -120.594593252999914, 51.498822939000043 ], [ -120.595100366999972, 51.498911669000073 ], [ -120.592363239999941, 51.498781337000104 ], [ -120.592380379999923, 51.498641974000051 ], [ -120.591933248999936, 51.498620677000126 ], [ -120.591923381999933, 51.498807804000137 ], [ -120.592355186999953, 51.498816674000075 ], [ -120.592340977999925, 51.499086187000024 ], [ -120.592772784999923, 51.499095055000097 ], [ -120.592758578999977, 51.499364568000047 ], [ -120.593190388999972, 51.499373435000095 ], [ -120.593176183999944, 51.499642949000105 ], [ -120.59360799699999, 51.499651813000099 ], [ -120.593593794999961, 51.499921327000045 ], [ -120.594025609999946, 51.499930191000033 ], [ -120.593983011999924, 51.500738731000105 ], [ -120.592255721999948, 51.500703268000095 ] ], [ [ -120.591718902999929, 51.498533798000082 ], [ -120.59172402199998, 51.498492185000067 ], [ -120.591508296999933, 51.498481909000127 ], [ -120.59150579199999, 51.498529420000061 ], [ -120.591718902999929, 51.498533798000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "143.4", "sL_BldgLoss": "143.4", "sL_StrLoss": "143.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A0C5CBB40415EC0333910ED3ECF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.016894217999905, 51.617191379000083 ], [ -121.022664260999989, 51.617443691000048 ], [ -121.022257866999894, 51.621024285000033 ], [ -121.016487356, 51.620771954000098 ], [ -121.016894217999905, 51.617191379000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024879", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "158.5", "sL_BldgLoss": "158.5", "sL_StrLoss": "158.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C58A5C6895295EC04DC92885AFC34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.647084057999933, 51.526868642000046 ], [ -120.65284006499999, 51.527139679000058 ], [ -120.652404425999976, 51.53071922100002 ], [ -120.646647952999956, 51.530448162000035 ], [ -120.647084057999933, 51.526868642000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "243.6", "sL_BldgLoss": "243.6", "sL_StrLoss": "243.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E5D23231612A5EC0176536C824C24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.659435017999954, 51.519283829000109 ], [ -120.659609884999909, 51.517844778000089 ], [ -120.658640692999938, 51.517799210000099 ], [ -120.659075696999935, 51.514219599000093 ], [ -120.664830124999966, 51.514490032000047 ], [ -120.664655442999958, 51.515929097000033 ], [ -120.665624598999912, 51.5159746140001 ], [ -120.665190109999955, 51.519554244000084 ], [ -120.663531716999941, 51.519476351000051 ], [ -120.66300379799999, 51.519230404000034 ], [ -120.66217200599999, 51.519106394000104 ], [ -120.66189558799999, 51.518902804000028 ], [ -120.661689197999948, 51.518709112000096 ], [ -120.661613588999941, 51.518474094000098 ], [ -120.661785593999966, 51.517938592000057 ], [ -120.661708300999948, 51.517504187000043 ], [ -120.66064860799996, 51.51876040500013 ], [ -120.659822522999931, 51.519302047000053 ], [ -120.659435017999954, 51.519283829000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024882", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "151", "sL_BldgLoss": "151", "sL_StrLoss": "151", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C5BA443733415EC04D80A31546CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.015767935999946, 51.613579646000083 ], [ -121.015857749999967, 51.612789266000036 ], [ -121.015557881999968, 51.612776141000076 ], [ -121.015964745999938, 51.609195541000069 ], [ -121.021733732999934, 51.609447902000078 ], [ -121.021644031999926, 51.610238289000037 ], [ -121.021943882999949, 51.610251398000038 ], [ -121.021537497999986, 51.613832015000078 ], [ -121.015767935999946, 51.613579646000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024883", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3390584", "BldgCostT": "2338334", "sL_LossRatio": "1", "sL_AssetLoss": "255.9", "sL_BldgLoss": "255.9", "sL_StrLoss": "255.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009E69364DA72B5EC08E6D9DA83AC24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.681335248999957, 51.520609322000062 ], [ -120.681678856999937, 51.517769924000042 ], [ -120.676473382999973, 51.517526094000097 ], [ -120.676906933999987, 51.513946415000113 ], [ -120.677426979999964, 51.513970785000069 ], [ -120.677482516999973, 51.513512139000063 ], [ -120.67775569199992, 51.513443809000087 ], [ -120.678274601999959, 51.513436687000045 ], [ -120.67958159599999, 51.513533490000043 ], [ -120.680304684999967, 51.513772807000102 ], [ -120.681236502999965, 51.514420800000011 ], [ -120.681396708999955, 51.514396608000048 ], [ -120.68139748599998, 51.513839711000088 ], [ -120.681294705999989, 51.513567712000047 ], [ -120.680798879999884, 51.51314470300008 ], [ -120.679979308999989, 51.512812904000093 ], [ -120.678792806999979, 51.512583608000106 ], [ -120.677947737999929, 51.512337997000067 ], [ -120.679594935999944, 51.512415167000057 ], [ -120.679642881999939, 51.51243676100011 ], [ -120.680520327999943, 51.512693860000077 ], [ -120.681028262, 51.513063245000048 ], [ -120.681371495999926, 51.513395214000063 ], [ -120.681809332999961, 51.513973714000052 ], [ -120.68188017899999, 51.514332537 ], [ -120.681865614999964, 51.514847542000055 ], [ -120.681834558999967, 51.514900983000068 ], [ -120.681391386999948, 51.515219198000061 ], [ -120.681183274999938, 51.515368608000117 ], [ -120.680791958999976, 51.515649568000121 ], [ -120.680619325999913, 51.51605997500009 ], [ -120.680607698999921, 51.51627544800008 ], [ -120.680702535999984, 51.516531880000059 ], [ -120.68093409799999, 51.516806418000058 ], [ -120.682052150999979, 51.517790267000059 ], [ -120.682448252999961, 51.518020311000015 ], [ -120.682829271999935, 51.51815553400008 ], [ -120.683196000999885, 51.518285700000078 ], [ -120.683729476999929, 51.51839706700018 ], [ -120.684061882, 51.518437473000077 ], [ -120.68535508299999, 51.518594620000052 ], [ -120.686642461999924, 51.518693544000037 ], [ -120.687241335999957, 51.518646860000096 ], [ -120.690239933999962, 51.517930992000039 ], [ -120.690294766999969, 51.517917907000019 ], [ -120.690604698999906, 51.517843901000042 ], [ -120.690420400000022, 51.519369454000142 ], [ -120.687841302, 51.519248880000099 ], [ -120.687644271999915, 51.520878916000086 ], [ -120.687093724999912, 51.520853170000095 ], [ -120.687090648999956, 51.520878629000102 ], [ -120.681335248999957, 51.520609322000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024884", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "90.4", "sL_BldgLoss": "90.4", "sL_StrLoss": "90.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A7B2A4B3BE425EC0A61FFDC43BCE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.040085283999986, 51.610769997000084 ], [ -121.04096310099996, 51.610146191000055 ], [ -121.041870202000027, 51.610205996000047 ], [ -121.042760021, 51.61003220300006 ], [ -121.043871209999935, 51.6100508050001 ], [ -121.044133985999977, 51.609973792000083 ], [ -121.044884996999983, 51.609959597000049 ], [ -121.045728489999945, 51.609836881000057 ], [ -121.045437751999913, 51.612410956000119 ], [ -121.039668239999941, 51.612159795000125 ], [ -121.03981404699995, 51.610870408000032 ], [ -121.040085283999986, 51.610769997000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024885", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774334", "BldgCostT": "1913334", "sL_LossRatio": "1", "sL_AssetLoss": "192.8", "sL_BldgLoss": "192.8", "sL_StrLoss": "192.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000803E788AA8425EC0D0D535DE46CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.031556291999962, 51.606571408 ], [ -121.030028997999977, 51.606186903000086 ], [ -121.029019098999967, 51.606151306000044 ], [ -121.028432308999953, 51.606051603000012 ], [ -121.0274420699999, 51.605692916000059 ], [ -121.027522984999948, 51.60497903900005 ], [ -121.027894393999929, 51.605093099000065 ], [ -121.028768908999922, 51.605292288000022 ], [ -121.029801197999973, 51.605454314000063 ], [ -121.031063128999946, 51.605573210000081 ], [ -121.031658087, 51.605605202000056 ], [ -121.035061996999914, 51.605788205000067 ], [ -121.035425983999957, 51.605772602000052 ], [ -121.035436351999948, 51.605770514000064 ], [ -121.035743369999949, 51.605709 ], [ -121.036021009999914, 51.605599714000093 ], [ -121.037274400999976, 51.604922103000014 ], [ -121.038213206999927, 51.604476299000048 ], [ -121.040041504000015, 51.603733368000078 ], [ -121.041380279999913, 51.603189309000086 ], [ -121.041918869999947, 51.602932011000121 ], [ -121.042137899999929, 51.602941549000064 ], [ -121.042151538999988, 51.602820857000069 ], [ -121.042294803999937, 51.602752414000101 ], [ -121.043353971999935, 51.602164322000071 ], [ -121.043697824999924, 51.601917531000034 ], [ -121.043896776999929, 51.601720126 ], [ -121.044409208000019, 51.601071341000065 ], [ -121.044472518999967, 51.60098537600004 ], [ -121.048779328999942, 51.601172757000086 ], [ -121.048778893999938, 51.601176608000088 ], [ -121.050878555999958, 51.601267901 ], [ -121.050669831999954, 51.603118196000082 ], [ -121.049626006999986, 51.603150508000077 ], [ -121.048724993999926, 51.603315687000048 ], [ -121.045209298999936, 51.6034282110001 ], [ -121.043535795999944, 51.603750104000042 ], [ -121.04283922099998, 51.603811299000078 ], [ -121.041481201999957, 51.604184408000087 ], [ -121.039067310999926, 51.605573007000054 ], [ -121.038407884999984, 51.605778089000033 ], [ -121.036925101999941, 51.60598748400016 ], [ -121.035460606999948, 51.606457495000036 ], [ -121.034944914, 51.606701009000062 ], [ -121.033970888999974, 51.6068818970001 ], [ -121.033507012999948, 51.606874804000043 ], [ -121.032736290999978, 51.606672495000034 ], [ -121.031556291999962, 51.606571408 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024886", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "129.3", "sL_BldgLoss": "129.3", "sL_StrLoss": "129.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000099426B6E1A445EC03105ADB89FCB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.05978709599998, 51.591777788000051 ], [ -121.062226304999982, 51.59089410200005 ], [ -121.062605485999953, 51.590717092000034 ], [ -121.062848216999924, 51.59054320100006 ], [ -121.0634571, 51.589998402000035 ], [ -121.06374450599999, 51.589826480000127 ], [ -121.063971338999977, 51.589724755000127 ], [ -121.064633758999932, 51.589427688000043 ], [ -121.065712810999941, 51.588943718000102 ], [ -121.069916181999957, 51.589125866000103 ], [ -121.069848411999899, 51.5897291490001 ], [ -121.068660217999948, 51.590191599000057 ], [ -121.068118294999977, 51.590722802000101 ], [ -121.067420914999914, 51.591187106000099 ], [ -121.065757516999923, 51.591222707000036 ], [ -121.065118288999969, 51.591329504000065 ], [ -121.064584211999914, 51.591329503000075 ], [ -121.064170487999917, 51.59121559900008 ], [ -121.063851281999973, 51.591245493 ], [ -121.063294787999951, 51.591434908000096 ], [ -121.062640299999927, 51.59154031300006 ], [ -121.061659202999948, 51.591883497000069 ], [ -121.060130601999958, 51.592201108000033 ], [ -121.059922783999966, 51.592332206 ], [ -121.059852602999939, 51.592582787000083 ], [ -121.058486804, 51.593504312000078 ], [ -121.058435423, 51.593520805000061 ], [ -121.056850503999939, 51.593451990000055 ], [ -121.056947846999918, 51.592587811000023 ], [ -121.05780138399993, 51.592339298000098 ], [ -121.058432535999884, 51.592160828000033 ], [ -121.05978709599998, 51.591777788000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024887", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "9910750", "BldgCostT": "6835000", "sL_LossRatio": "1", "sL_AssetLoss": "706.5", "sL_BldgLoss": "706.5", "sL_StrLoss": "706.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003D90E5F219395EC011C4793881CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.887852026999923, 51.622652781000092 ], [ -120.887946845999977, 51.621839487000045 ], [ -120.887043684999981, 51.62179894500008 ], [ -120.887251965999937, 51.620012656000021 ], [ -120.88400770599999, 51.619866966000075 ], [ -120.884425355999952, 51.616286866000081 ], [ -120.890194510999947, 51.61654587800011 ], [ -120.889986365999945, 51.618332178000067 ], [ -120.89125394200002, 51.618389048000083 ], [ -120.891302952999979, 51.617968331000114 ], [ -120.892184069999956, 51.618007853000059 ], [ -120.892257646999965, 51.61737615100008 ], [ -120.898026989999906, 51.617634767000055 ], [ -120.897853024, 51.619130025000082 ], [ -120.900199221999955, 51.619235111000137 ], [ -120.90006254099994, 51.620410357000026 ], [ -120.900749084999958, 51.620441098000065 ], [ -120.900332725999974, 51.624021243000087 ], [ -120.895619903999886, 51.623810136000088 ], [ -120.895552939999959, 51.624385355000136 ], [ -120.894656751999889, 51.624345188000078 ], [ -120.894592129999964, 51.624900176000025 ], [ -120.89268957199999, 51.624814883000084 ], [ -120.892497932999959, 51.626460023000057 ], [ -120.886727462999986, 51.626201130000055 ], [ -120.887144951999986, 51.62262104200007 ], [ -120.887852026999923, 51.622652781000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024888", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4410417", "BldgCostT": "3041667", "sL_LossRatio": "1", "sL_AssetLoss": "394", "sL_BldgLoss": "394", "sL_StrLoss": "394", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D53418B8363B5EC021DE848C11CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.920991192999935, 51.588760118000081 ], [ -120.921382153999943, 51.585381835000106 ], [ -120.918333838999985, 51.585245752000077 ], [ -120.918349451999916, 51.585110915000023 ], [ -120.918834372999939, 51.58503590000003 ], [ -120.92021430799997, 51.584642295000044 ], [ -120.920878435999953, 51.584375749000074 ], [ -120.921192713999957, 51.584249610000086 ], [ -120.921758314999963, 51.584119210000011 ], [ -120.922484883999971, 51.584012096000059 ], [ -120.922916384999922, 51.583976493000058 ], [ -120.923368004999958, 51.583979609000025 ], [ -120.924101416999918, 51.58406760900003 ], [ -120.924179611999989, 51.584076994000029 ], [ -120.926663408999943, 51.584121110000105 ], [ -120.926747012999968, 51.584175189000085 ], [ -120.927302904, 51.584379109000054 ], [ -120.927556452999923, 51.584437577000074 ], [ -120.927834892999925, 51.584501796000076 ], [ -120.928171271999972, 51.584512948000054 ], [ -120.92873691699999, 51.584531692000063 ], [ -120.928881307999944, 51.584536483000086 ], [ -120.929732688999962, 51.584564697000033 ], [ -120.930096345, 51.584529116000049 ], [ -120.929711906999984, 51.587856820000056 ], [ -120.929396904000015, 51.587842786000039 ], [ -120.929263755999955, 51.588995129000132 ], [ -120.926772346999911, 51.588884095000012 ], [ -120.926756948999966, 51.5890172880001 ], [ -120.92116552399996, 51.588767898000057 ], [ -120.920991192999935, 51.588760118000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024889", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2750167", "BldgCostT": "1896667", "sL_LossRatio": "1", "sL_AssetLoss": "264.1", "sL_BldgLoss": "264.1", "sL_StrLoss": "264.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C8174F3453F5EC065AE676300D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.985436582999967, 51.650578465000088 ], [ -120.985539766999921, 51.649676722000038 ], [ -120.985015529999913, 51.649653656000147 ], [ -120.985425226999965, 51.646073292000075 ], [ -120.991198884999903, 51.646327189000075 ], [ -120.99119320600002, 51.646376885000095 ], [ -120.99192326299999, 51.646408968000067 ], [ -120.991853451999972, 51.6470199 ], [ -120.992298593999962, 51.64703946000008 ], [ -120.991889449, 51.650619845000087 ], [ -120.99123839399995, 51.650591236000082 ], [ -120.991210832999968, 51.650832360000024 ], [ -120.985436582999967, 51.650578465000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024890", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000638F3796032D5EC0349398356BEA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.699901432, 51.8332567960001 ], [ -120.700265952999928, 51.830256336000041 ], [ -120.701102591999984, 51.830295077000059 ], [ -120.701134027999899, 51.830036256000071 ], [ -120.706930286999949, 51.830304482000038 ], [ -120.706862201999968, 51.830865656000064 ], [ -120.707908792999959, 51.83091405700003 ], [ -120.707817623, 51.831665620000123 ], [ -120.706939746, 51.831838901000083 ], [ -120.706244257999913, 51.831976183000045 ], [ -120.705859288999989, 51.832052149000084 ], [ -120.705605439999914, 51.832102265000032 ], [ -120.704329633999961, 51.83235403400009 ], [ -120.704036708999965, 51.832411845000095 ], [ -120.70235269899996, 51.832744156000082 ], [ -120.700915777999967, 51.833027711000049 ], [ -120.700500718999976, 51.833121445000138 ], [ -120.699901432, 51.8332567960001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024891", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "41.8", "sL_BldgLoss": "41.8", "sL_StrLoss": "41.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CA6FF2D7BB4B5EC02EC3E2E43CE24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.179524675999971, 51.766236674000034 ], [ -121.185315286, 51.766480725000051 ], [ -121.184983899999906, 51.769488781000042 ], [ -121.184982404999943, 51.769487925000099 ], [ -121.183064691, 51.768646130000022 ], [ -121.182954055999971, 51.76859757700003 ], [ -121.182870910999981, 51.76853777700012 ], [ -121.182101009999982, 51.767984276000085 ], [ -121.181826388, 51.767506843000014 ], [ -121.181514109999966, 51.767213091000045 ], [ -121.180664810999971, 51.76669792700006 ], [ -121.179514238999943, 51.766331303000065 ], [ -121.179524675999971, 51.766236674000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024892", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000034AF97642C325EC038379EB6E3EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.781302775999904, 51.850791195000049 ], [ -120.781134984999966, 51.850686445000044 ], [ -120.780984010999958, 51.850592197000076 ], [ -120.780639916999945, 51.850458695000043 ], [ -120.780341389999961, 51.850419195000022 ], [ -120.78039591699995, 51.849963645000116 ], [ -120.786195304000017, 51.850227860000139 ], [ -120.786180202999944, 51.850354163000077 ], [ -120.786961585999961, 51.850389739000029 ], [ -120.78694966499998, 51.850489462000098 ], [ -120.787972257999925, 51.850536012000084 ], [ -120.787906198999963, 51.851088714000113 ], [ -120.787372885999901, 51.851108105000094 ], [ -120.786904368999956, 51.851040004000083 ], [ -120.786565790999973, 51.851030906000148 ], [ -120.786147886999984, 51.851088409000042 ], [ -120.786093186999963, 51.851101447000048 ], [ -120.784816889999917, 51.85140560000012 ], [ -120.784254623999942, 51.851438509000104 ], [ -120.782406798999901, 51.851408212000088 ], [ -120.782029891999969, 51.851354197000049 ], [ -120.781745899999976, 51.851229701000079 ], [ -120.781302775999904, 51.850791195000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024893", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "88.9", "sL_BldgLoss": "88.9", "sL_StrLoss": "88.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000052C82124034D5EC0640E7A1D0EDD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.200620389, 51.725081299000109 ], [ -121.206405676999964, 51.725324292000053 ], [ -121.206013296999942, 51.728905165000079 ], [ -121.20307632299992, 51.728781844000068 ], [ -121.200227538999954, 51.728662153000073 ], [ -121.200428138999939, 51.726833744000061 ], [ -121.200620389, 51.725081299000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024894", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "97.2", "sL_BldgLoss": "97.2", "sL_StrLoss": "97.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A4734051B415EC0740137A4B4DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.015460394999977, 51.710490285000063 ], [ -121.01563201, 51.70898359500012 ], [ -121.01441996600002, 51.708930660000114 ], [ -121.014827814999947, 51.705350390000028 ], [ -121.01522473299994, 51.705367727000088 ], [ -121.01531328899992, 51.70543429700006 ], [ -121.015615992, 51.70611369600001 ], [ -121.015944410999978, 51.706550887000098 ], [ -121.017141892, 51.706966804000068 ], [ -121.018523214999959, 51.707124904000096 ], [ -121.018995122999968, 51.707285803000026 ], [ -121.019395611, 51.708362490000056 ], [ -121.020271916999945, 51.70917719600007 ], [ -121.020715382999981, 51.710317895000088 ], [ -121.021002089999953, 51.710732151000038 ], [ -121.015460394999977, 51.710490285000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024895", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C8EB03C14A2A5EC0E547574428EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.658133779999943, 51.827429347000091 ], [ -120.663929429999939, 51.827699748000022 ], [ -120.663491703999938, 51.83127831900002 ], [ -120.657695581999945, 51.831007896000138 ], [ -120.658133779999943, 51.827429347000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024896", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28.5", "sL_BldgLoss": "28.5", "sL_StrLoss": "28.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000015BBA6D54A2B5EC0C77E9A8335EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.673588945999981, 51.836470123000069 ], [ -120.679385888999931, 51.836739740000063 ], [ -120.679173260999974, 51.838482830000054 ], [ -120.67772219199999, 51.838703892000126 ], [ -120.677178488999957, 51.83876410900006 ], [ -120.676762997999987, 51.838776204000062 ], [ -120.676370199999965, 51.838734608000053 ], [ -120.675501900999976, 51.838511824000086 ], [ -120.674995109999941, 51.83838178600007 ], [ -120.674211881999938, 51.83820679500004 ], [ -120.67357559499996, 51.838106096000068 ], [ -120.673391186999979, 51.838089545000045 ], [ -120.673588945999981, 51.836470123000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024897", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "51", "sL_BldgLoss": "51", "sL_StrLoss": "51", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B30E9D6084D5EC07E751384C4D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.20209040099995, 51.699969745000082 ], [ -121.20211311099996, 51.699955899000024 ], [ -121.202205725999988, 51.699983439000043 ], [ -121.202841892999913, 51.70017256200002 ], [ -121.203395680999947, 51.70033720600005 ], [ -121.204103100999973, 51.700508084000013 ], [ -121.204567781999955, 51.700680497000114 ], [ -121.20542292199994, 51.701170194000035 ], [ -121.207253115, 51.702218184000046 ], [ -121.207250213999913, 51.702244684000057 ], [ -121.20146796599991, 51.702001728000013 ], [ -121.201662099999979, 51.700230673000107 ], [ -121.20209040099995, 51.699969745000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024898", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "70.8", "sL_BldgLoss": "70.8", "sL_StrLoss": "70.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000081A1FDFE033C5EC086F4045733E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.935566877999918, 51.765766435000103 ], [ -120.94135603, 51.766022824000061 ], [ -120.941057800999943, 51.768599006000038 ], [ -120.93407249699996, 51.768353322000088 ], [ -120.934351818999971, 51.765943808000017 ], [ -120.935540218000014, 51.765996476000026 ], [ -120.935566877999918, 51.765766435000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024900", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "96.3", "sL_BldgLoss": "96.3", "sL_StrLoss": "96.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000030127748F3475EC0C28CC62D28D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.121533291999967, 51.686812267000043 ], [ -121.12731308799998, 51.687059269000045 ], [ -121.126972160999969, 51.690122763000062 ], [ -121.126964693999966, 51.690189848000024 ], [ -121.12691459399997, 51.690639997000076 ], [ -121.122595172999965, 51.690455433000075 ], [ -121.121134327, 51.690392975000073 ], [ -121.121533291999967, 51.686812267000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024901", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6496000", "BldgCostT": "4480000", "sL_LossRatio": "1", "sL_AssetLoss": "507.1", "sL_BldgLoss": "507.1", "sL_StrLoss": "507.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E24DE926D2495EC08672C36BEEDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.150512160999966, 51.731302905000064 ], [ -121.150560370999969, 51.730868041000065 ], [ -121.148651124999901, 51.730786957000142 ], [ -121.148842169999938, 51.729064296000082 ], [ -121.14776031599996, 51.729018335000049 ], [ -121.147819939000016, 51.728480809000061 ], [ -121.144395136999918, 51.728335245000082 ], [ -121.14468503799992, 51.72572328900003 ], [ -121.144792544999945, 51.724754583000099 ], [ -121.148105751999978, 51.72489540600008 ], [ -121.148122383, 51.724745447000089 ], [ -121.146563676999932, 51.724679209000037 ], [ -121.14696087599998, 51.721098527000102 ], [ -121.152745338999935, 51.721344235000053 ], [ -121.15249577599991, 51.723596746000048 ], [ -121.154054452999929, 51.723662904000065 ], [ -121.154010499999941, 51.724059725000053 ], [ -121.1587801299999, 51.724262037000116 ], [ -121.159083719999956, 51.721518314000029 ], [ -121.162887791999978, 51.721679527000028 ], [ -121.164868306999949, 51.721763408000093 ], [ -121.164472565999972, 51.725344150000062 ], [ -121.158884090999933, 51.725107371 ], [ -121.158580462999936, 51.727851084000072 ], [ -121.157763340999949, 51.727816441000115 ], [ -121.157467476999955, 51.730489206000094 ], [ -121.157054801999919, 51.730471708000032 ], [ -121.157007283, 51.730900916000031 ], [ -121.156695951999922, 51.730887714000062 ], [ -121.156661083999921, 51.731202624000048 ], [ -121.156337800999935, 51.731188914 ], [ -121.156297990999988, 51.731548432000089 ], [ -121.151351248999944, 51.731338531000027 ], [ -121.150512160999966, 51.731302905000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024902", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "88.6", "sL_BldgLoss": "88.6", "sL_StrLoss": "88.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ADE374692E395EC0B4814B3238E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.889764378999956, 51.768047154000037 ], [ -120.889409611999938, 51.767973394000066 ], [ -120.888750598999977, 51.767948404000066 ], [ -120.888607199999925, 51.767966016000109 ], [ -120.888127726999954, 51.768024897000053 ], [ -120.887594277999938, 51.768144095000096 ], [ -120.887116540999969, 51.768170079000051 ], [ -120.887405391999962, 51.765701305000015 ], [ -120.893194253000019, 51.765960129000035 ], [ -120.893147849999963, 51.766357213000035 ], [ -120.897804622, 51.766565205000077 ], [ -120.897763706999953, 51.766915624000056 ], [ -120.901362024999983, 51.76707621000002 ], [ -120.901240975999926, 51.768113630000073 ], [ -120.901077659999956, 51.768129799000072 ], [ -120.899545701999941, 51.768281444000074 ], [ -120.899439981999933, 51.768291897000069 ], [ -120.899151651999958, 51.768312969000128 ], [ -120.89775994199999, 51.768414635000056 ], [ -120.895617485999935, 51.768571102000116 ], [ -120.893924095999964, 51.768819291000106 ], [ -120.89310167799999, 51.768872492000106 ], [ -120.892333809999982, 51.768816192000052 ], [ -120.892252001999964, 51.768810196000089 ], [ -120.891778362999986, 51.768714925000083 ], [ -120.891487320999943, 51.768656399000115 ], [ -120.891140403999955, 51.768525305000018 ], [ -120.890956178999943, 51.768455714000048 ], [ -120.890822651999926, 51.768405234000099 ], [ -120.890699841999947, 51.76835882600006 ], [ -120.890010412, 51.768098299000037 ], [ -120.889764378999956, 51.768047154000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024903", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041AF26EC6E2F5EC00CD58338C5EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.739339602999962, 51.843917409000049 ], [ -120.739254100999958, 51.843707414000072 ], [ -120.739268493999987, 51.842775833000097 ], [ -120.739283776999955, 51.841786405000029 ], [ -120.739296306999947, 51.840977104000018 ], [ -120.739122632999937, 51.840754480000058 ], [ -120.739115802999919, 51.840745692000048 ], [ -120.738869558999937, 51.84061005500007 ], [ -120.73881197799993, 51.840599952000041 ], [ -120.738552255999963, 51.840567991000128 ], [ -120.738206868999953, 51.840507370000083 ], [ -120.738048235999941, 51.840486333000101 ], [ -120.73796257399999, 51.840457731000058 ], [ -120.737861466999945, 51.840446783000061 ], [ -120.737818873999956, 51.840427965000032 ], [ -120.737775785999972, 51.840418158000041 ], [ -120.737604481999952, 51.84036091800003 ], [ -120.737561411999963, 51.840351074000068 ], [ -120.737351064999956, 51.840203146000093 ], [ -120.737175054999952, 51.840107233000047 ], [ -120.737277771999956, 51.839255917000095 ], [ -120.743075474999927, 51.839522314000064 ], [ -120.74285350699999, 51.841363965000085 ], [ -120.743377096999964, 51.841388008000067 ], [ -120.743162436999953, 51.843169057000075 ], [ -120.743239928999955, 51.84317261500005 ], [ -120.743137834999956, 51.844019655000089 ], [ -120.744787136999889, 51.84409537500003 ], [ -120.744646686999957, 51.845260940000102 ], [ -120.744597583999948, 51.845243886000091 ], [ -120.744193969999984, 51.845173795000058 ], [ -120.7432598, 51.845011481000057 ], [ -120.739519522999984, 51.844020999000101 ], [ -120.739339602999962, 51.843917409000049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024904", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "161.1", "sL_BldgLoss": "161.1", "sL_StrLoss": "161.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000451EF3C7D5495EC05BCEAD2973DF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.151936332999924, 51.74804611800014 ], [ -121.151968961999927, 51.747751827000066 ], [ -121.148105220000019, 51.747587815000031 ], [ -121.148155206999917, 51.74713732400005 ], [ -121.148502499999935, 51.744007204000162 ], [ -121.148976438999952, 51.744027329000069 ], [ -121.149124752999981, 51.74269031700004 ], [ -121.15491208, 51.742935911000096 ], [ -121.154767205, 51.744243473000068 ], [ -121.159792300999953, 51.744456480000068 ], [ -121.15939594000001, 51.748037129000096 ], [ -121.157760235999945, 51.747967818000099 ], [ -121.157743784999951, 51.748116367000115 ], [ -121.157737800999982, 51.748170395000031 ], [ -121.15772438299993, 51.74829156800007 ], [ -121.154265717999962, 51.748144934000067 ], [ -121.151936332999924, 51.74804611800014 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024905", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "88.9", "sL_BldgLoss": "88.9", "sL_StrLoss": "88.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000059F9C85A41475EC0952BBCCBC5DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.11067069299996, 51.738497204000105 ], [ -121.116457248999907, 51.738744743000076 ], [ -121.116320484999932, 51.739969475000095 ], [ -121.116057395999945, 51.742325260000079 ], [ -121.110270367999973, 51.742077701000049 ], [ -121.110441066999954, 51.740551043000082 ], [ -121.11067069299996, 51.738497204000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024906", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.3", "sL_BldgLoss": "44.3", "sL_StrLoss": "44.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E85343F240445EC026F953DB34DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.065718778999909, 51.703514501000036 ], [ -121.066809103999972, 51.703099987000037 ], [ -121.067034112999977, 51.703229697000097 ], [ -121.06923952399994, 51.703831230000034 ], [ -121.068997607999947, 51.705978531000078 ], [ -121.063215645999932, 51.705728585000067 ], [ -121.063373221999925, 51.704331565000111 ], [ -121.063775411999941, 51.704309194000167 ], [ -121.064332678999961, 51.704111196000056 ], [ -121.06522357799993, 51.703937501000041 ], [ -121.065718778999909, 51.703514501000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024907", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3ED510BE7365EC0CDB00FBA1DE64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.858262659999966, 51.799066903000046 ], [ -120.858663506999932, 51.795662645000043 ], [ -120.855921316999954, 51.795539332000033 ], [ -120.856004738999957, 51.794831176000081 ], [ -120.855098539999958, 51.794790411000086 ], [ -120.85514233699999, 51.794418666000098 ], [ -120.855061064999958, 51.794415010000051 ], [ -120.855482749999965, 51.790835601000047 ], [ -120.856687341999944, 51.790889789000111 ], [ -120.856797290999936, 51.791592301000051 ], [ -120.856814474999979, 51.79259610900008 ], [ -120.856817629999938, 51.792767616000091 ], [ -120.856819440999971, 51.792866484000079 ], [ -120.856822269999924, 51.793023792000042 ], [ -120.856936094999952, 51.793256514000078 ], [ -120.857623987999972, 51.794004403000059 ], [ -120.857841193999917, 51.794162606000022 ], [ -120.858117112999935, 51.794291899000015 ], [ -120.858698888999967, 51.794406754000065 ], [ -120.859622303999956, 51.794589008000052 ], [ -120.859956223, 51.79472100300007 ], [ -120.860163309999933, 51.794878700000041 ], [ -120.86124221099999, 51.796064289000086 ], [ -120.861639689999976, 51.796348397000102 ], [ -120.861696288999966, 51.796485901000025 ], [ -120.861637103999968, 51.796643294000049 ], [ -120.86142050199993, 51.796837798000119 ], [ -120.861135388999955, 51.797256797000081 ], [ -120.861080208999951, 51.797544746000064 ], [ -120.861071278999987, 51.79759130900004 ], [ -120.860928304999945, 51.798002310000086 ], [ -120.86092899399992, 51.798268596000106 ], [ -120.861279582999956, 51.799273015000054 ], [ -120.861242224999913, 51.799528598000094 ], [ -120.86108888699999, 51.799841015 ], [ -120.86090610699992, 51.800032597000047 ], [ -120.860806610999973, 51.800136904000048 ], [ -120.860404207999963, 51.800438195000012 ], [ -120.858587309999962, 51.801353762000097 ], [ -120.85837188499994, 51.801462306000069 ], [ -120.858182788999969, 51.801622002000087 ], [ -120.857875404999959, 51.802043616000113 ], [ -120.85769991, 51.802198599000057 ], [ -120.857461211999976, 51.802309300000097 ], [ -120.85667608499989, 51.802484507000017 ], [ -120.856251684999975, 51.802626395000111 ], [ -120.855935572999954, 51.80277589800005 ], [ -120.854777299999938, 51.803461497000022 ], [ -120.854536829999972, 51.803669547000048 ], [ -120.854306278999928, 51.803659175000071 ], [ -120.854728114999915, 51.800079799000052 ], [ -120.856210885999957, 51.800146495000028 ], [ -120.856300789999949, 51.79938333500008 ], [ -120.857329056999959, 51.799429575000062 ], [ -120.857376463999969, 51.799027060000107 ], [ -120.858262659999966, 51.799066903000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024908", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "85.4", "sL_BldgLoss": "85.4", "sL_StrLoss": "85.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000061E6D8CDCE465EC0E4D9E55B9FDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.109335249999958, 51.721941360000066 ], [ -121.109464727999978, 51.721946907000138 ], [ -121.109455630999918, 51.722028294000012 ], [ -121.109064457999963, 51.725527455000048 ], [ -121.10327968899999, 51.72527953800008 ], [ -121.103680429999926, 51.721699009000098 ], [ -121.109335249999958, 51.721941360000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024910", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "168.7", "sL_BldgLoss": "168.7", "sL_StrLoss": "168.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EEE1BB6240445EC02486D3388AE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.069348994999984, 51.764949060000099 ], [ -121.069362575999975, 51.764828684000143 ], [ -121.06670828599999, 51.764714148000053 ], [ -121.064628280999926, 51.764624350000048 ], [ -121.064252440999951, 51.764402422000032 ], [ -121.064309445000021, 51.763897644000103 ], [ -121.063325653999968, 51.763855154000112 ], [ -121.063234582999911, 51.76380137500005 ], [ -121.061767719999963, 51.762935102000036 ], [ -121.061126396, 51.762638388 ], [ -121.060369490999975, 51.762412291000061 ], [ -121.060359887999979, 51.76241062600009 ], [ -121.060462807999912, 51.761499933000067 ], [ -121.060616448999937, 51.76014036400003 ], [ -121.066405581999959, 51.760390430000015 ], [ -121.066325498999973, 51.761099911000073 ], [ -121.066954715999927, 51.761127073000097 ], [ -121.067220043999967, 51.758776017000109 ], [ -121.070250312, 51.758906778000082 ], [ -121.070693198999919, 51.758925882000085 ], [ -121.070726611999987, 51.761700047000076 ], [ -121.070725596999949, 51.76226936400009 ], [ -121.070720806999972, 51.765008231000088 ], [ -121.069348994999984, 51.764949060000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024911", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "101", "sL_BldgLoss": "101", "sL_StrLoss": "101", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A6A015F7E33E5EC0E91161CB44E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.976568097, 51.769325369000036 ], [ -120.976811716, 51.767206058000092 ], [ -120.976947147999908, 51.766027808000032 ], [ -120.979517780999942, 51.766140758000098 ], [ -120.979580159999969, 51.765597769000067 ], [ -120.98536954799999, 51.765851932000061 ], [ -120.985345762999899, 51.766059209000069 ], [ -120.98695010699997, 51.76612959000007 ], [ -120.986790157999963, 51.767523919000048 ], [ -120.987498287999969, 51.767554977 ], [ -120.987350151999962, 51.768846412000073 ], [ -120.987730118999934, 51.76886307500007 ], [ -120.987783328999981, 51.768399166000108 ], [ -120.993573133999988, 51.768652914 ], [ -120.993538505999936, 51.768955178000098 ], [ -120.987275640999925, 51.76923960199999 ], [ -120.985595050999962, 51.76931585300013 ], [ -120.983391583999918, 51.769318250000055 ], [ -120.976568097, 51.769325369000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024912", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "128.6", "sL_BldgLoss": "128.6", "sL_StrLoss": "128.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000315BD338EB495EC0F30A1BD098D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.159887208999947, 51.697625524000046 ], [ -121.160914881999943, 51.69761702800011 ], [ -121.16056078799997, 51.700820186 ], [ -121.155418368999932, 51.700602011000072 ], [ -121.15519946299996, 51.702579910000132 ], [ -121.149417461999974, 51.702334321000137 ], [ -121.149814225999961, 51.698753554000142 ], [ -121.154956398999929, 51.698971981000085 ], [ -121.155107673999922, 51.697605130000134 ], [ -121.158742003999976, 51.697634994000033 ], [ -121.15940909399994, 51.69762948100005 ], [ -121.159887208999947, 51.697625524000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024913", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2394917", "BldgCostT": "1651667", "sL_LossRatio": "1", "sL_AssetLoss": "123.4", "sL_BldgLoss": "123.4", "sL_StrLoss": "123.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DCACB0CF12495EC09B65A24AC5DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.145171653999938, 51.744111973000095 ], [ -121.145182698999974, 51.743842374000103 ], [ -121.144314113999911, 51.743828659000066 ], [ -121.14436316699998, 51.742631740000029 ], [ -121.141164413999945, 51.74249573500002 ], [ -121.141197176, 51.74220087300008 ], [ -121.138221131999927, 51.742074256000087 ], [ -121.138242234999936, 51.741884436000127 ], [ -121.136270883999941, 51.741800521000087 ], [ -121.13626170199997, 51.74188306400012 ], [ -121.136706500999978, 51.741902001000028 ], [ -121.136554080999986, 51.743272516000033 ], [ -121.13605360899993, 51.741737052000055 ], [ -121.136312308999933, 51.739850339000014 ], [ -121.130708439, 51.739536593000089 ], [ -121.130730262999975, 51.739340577000107 ], [ -121.13635684, 51.739580281000045 ], [ -121.136508879999965, 51.738213112000025 ], [ -121.138649532999978, 51.738304235000015 ], [ -121.138755835999959, 51.737347863000089 ], [ -121.144542398999988, 51.737593983000096 ], [ -121.144430897999925, 51.738598296000077 ], [ -121.144382408999917, 51.739035046000033 ], [ -121.147349001999928, 51.739161109000072 ], [ -121.146974423999936, 51.742536701000098 ], [ -121.146964002999979, 51.742791387000118 ], [ -121.147398284999952, 51.742798235000087 ], [ -121.147354161999914, 51.743876633000099 ], [ -121.146485576999964, 51.743862935000045 ], [ -121.146474538999954, 51.74413253400003 ], [ -121.145171653999938, 51.744111973000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024914", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "59.2", "sL_BldgLoss": "59.2", "sL_StrLoss": "59.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6560782F82D5EC0E486DF4D37E94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.715611801999941, 51.820077077000114 ], [ -120.7214068299999, 51.820344574000053 ], [ -120.720973882999942, 51.823923387000036 ], [ -120.715178382999937, 51.823655869000092 ], [ -120.715611801999941, 51.820077077000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024915", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "91.8", "sL_BldgLoss": "91.8", "sL_StrLoss": "91.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008C71F6B5CB4C5EC078E4F668FDDB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.202430377999946, 51.716977212000081 ], [ -121.203022018999931, 51.717002070000049 ], [ -121.202629437999946, 51.720582960000016 ], [ -121.201248064999973, 51.720524914000094 ], [ -121.196844796999969, 51.720339774000088 ], [ -121.197237847999958, 51.716758905000049 ], [ -121.202430377999946, 51.716977212000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024916", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "57", "sL_BldgLoss": "57", "sL_StrLoss": "57", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E90D9467A02D5EC04ED1D378D0E94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.710441628999959, 51.824760841000071 ], [ -120.716029965999894, 51.825019027000103 ], [ -120.715596532999939, 51.828597805000086 ], [ -120.71113679699999, 51.828391784000061 ], [ -120.709800446999964, 51.828330016000052 ], [ -120.710234351999929, 51.824751259000074 ], [ -120.710441628999959, 51.824760841000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024917", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "47.8", "sL_BldgLoss": "47.8", "sL_StrLoss": "47.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E1DDC2A1D4475EC0CB66ED3AC4D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.122375251999955, 51.691690540000131 ], [ -121.125442694999919, 51.691821628000071 ], [ -121.12504400399996, 51.69540233300004 ], [ -121.121719540999933, 51.695260258000083 ], [ -121.119263118999982, 51.695155217000085 ], [ -121.119662280999975, 51.691574532000047 ], [ -121.122375251999955, 51.691690540000131 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024920", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "42.7", "sL_BldgLoss": "42.7", "sL_StrLoss": "42.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C122D81BA94B5EC05349950F5EDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.179554211, 51.723573602000094 ], [ -121.179612526999932, 51.723044305000045 ], [ -121.17865971699996, 51.723004079000084 ], [ -121.179054276999977, 51.719423280000079 ], [ -121.180554557999969, 51.719486615000115 ], [ -121.184838697999908, 51.719667365000056 ], [ -121.184780449999934, 51.720196668000028 ], [ -121.185733204999948, 51.720236842000055 ], [ -121.185527172999954, 51.722109305000053 ], [ -121.185339181999922, 51.723817661000076 ], [ -121.179554211, 51.723573602000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024922", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "87.7", "sL_BldgLoss": "87.7", "sL_StrLoss": "87.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD7082E3702E5EC05D3A187724EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.726531397999949, 51.838987192000062 ], [ -120.725486890999932, 51.838525201000095 ], [ -120.724893613999924, 51.838201003000016 ], [ -120.723897096999963, 51.837884186000124 ], [ -120.721250418999915, 51.836655588000021 ], [ -120.720282428999923, 51.836103928000071 ], [ -120.719915830999952, 51.835894984000085 ], [ -120.720052204999931, 51.834768306000079 ], [ -120.725849208999989, 51.835035575000099 ], [ -120.72576772799999, 51.835709487000088 ], [ -120.727320704999954, 51.835781036000078 ], [ -120.727236988999948, 51.836473616000042 ], [ -120.728089860999916, 51.836512901000084 ], [ -120.728953899999937, 51.836552693000051 ], [ -120.728925071999967, 51.83679125500003 ], [ -120.729833184999933, 51.836833070000033 ], [ -120.729678875999966, 51.838110236000034 ], [ -120.729610334999919, 51.838677499000056 ], [ -120.730273596999893, 51.838708035000103 ], [ -120.73374228299997, 51.838867667000017 ], [ -120.733738426999949, 51.838899603000087 ], [ -120.734654452999948, 51.838941742000017 ], [ -120.734638584999971, 51.839073191000132 ], [ -120.734001676999952, 51.839017096000056 ], [ -120.733715453999963, 51.839019023000013 ], [ -120.733661794999961, 51.83901939400009 ], [ -120.733131697999909, 51.839124594000111 ], [ -120.732808681000023, 51.839083696000053 ], [ -120.732423605999898, 51.838929195000048 ], [ -120.732112889999911, 51.838847407000067 ], [ -120.732034459999952, 51.838848449000132 ], [ -120.731833977999969, 51.838851161 ], [ -120.731718706999928, 51.838852686000074 ], [ -120.731324981999961, 51.838938893000048 ], [ -120.73073745, 51.839174275000076 ], [ -120.730609795999953, 51.83922539900005 ], [ -120.730033970999941, 51.839527194000041 ], [ -120.729696306, 51.839632300000069 ], [ -120.729236692999976, 51.839696612000076 ], [ -120.728883296999953, 51.839702801000072 ], [ -120.728485707999951, 51.839639483000028 ], [ -120.727828892, 51.839358208000114 ], [ -120.727706895999916, 51.839323318000027 ], [ -120.726531397999949, 51.838987192000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024923", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "92.6", "sL_BldgLoss": "92.6", "sL_StrLoss": "92.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000493093B0C84A5EC0F185240EB4DF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.1658030359999, 51.745769616000139 ], [ -121.171590862999949, 51.746014365000072 ], [ -121.171195452999953, 51.749595049000092 ], [ -121.165407154999954, 51.749350281000069 ], [ -121.165565297999976, 51.747919977000066 ], [ -121.165639193999965, 51.747251607000109 ], [ -121.1658030359999, 51.745769616000139 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024924", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3105417", "BldgCostT": "2141667", "sL_LossRatio": "1", "sL_AssetLoss": "194", "sL_BldgLoss": "194", "sL_StrLoss": "194", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000ECFE0CCA0F485EC0BDB0B12255DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.131168560999981, 51.732955413000063 ], [ -121.133002714999947, 51.733033587000087 ], [ -121.132604266999977, 51.736614181000085 ], [ -121.128979645999948, 51.736459666000087 ], [ -121.12869244499997, 51.739038269000055 ], [ -121.124861427999946, 51.738874829000061 ], [ -121.124684531999947, 51.740461656000079 ], [ -121.124618891999958, 51.74105046100005 ], [ -121.123429570999988, 51.740999696000088 ], [ -121.118831983999968, 51.740803335000059 ], [ -121.118964505999912, 51.739616002000034 ], [ -121.119231595999949, 51.737222802000055 ], [ -121.123062447999942, 51.737386431000083 ], [ -121.123305040999981, 51.735210795000057 ], [ -121.126929538999889, 51.735365490000042 ], [ -121.127216818999941, 51.732786883000124 ], [ -121.131168560999981, 51.732955413000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024925", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "91.3", "sL_BldgLoss": "91.3", "sL_StrLoss": "91.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F2C66218D345EC0E9C4712272DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.8187095, 51.708520607000104 ], [ -120.817909698999941, 51.708272795000028 ], [ -120.817904990999978, 51.708272796000131 ], [ -120.818291837999951, 51.705006077000064 ], [ -120.81876082299999, 51.70502737200006 ], [ -120.818792030999973, 51.704763788000072 ], [ -120.824572437999933, 51.705026096000104 ], [ -120.824222524999954, 51.707984547000066 ], [ -120.823690689000031, 51.707866903000081 ], [ -120.82300568499997, 51.707953790000019 ], [ -120.8216974219999, 51.708396707000063 ], [ -120.819083595000038, 51.708546197000011 ], [ -120.8187095, 51.708520607000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024926", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "84.6", "sL_BldgLoss": "84.6", "sL_StrLoss": "84.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002403277816345EC0F2E43F49A6D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.811193747999951, 51.698465999000035 ], [ -120.816973279999928, 51.69872869300012 ], [ -120.816549337000012, 51.702308265000028 ], [ -120.810769335999936, 51.702045550000037 ], [ -120.811193747999951, 51.698465999000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024927", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "265.1", "sL_BldgLoss": "265.1", "sL_StrLoss": "265.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CDD9D007EA485EC027D4999C56DD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.135869969999987, 51.728055849000043 ], [ -121.136051024999929, 51.726427480000062 ], [ -121.141028016999925, 51.726639357000067 ], [ -121.141836129999916, 51.726673738000095 ], [ -121.14174045299994, 51.727535275000086 ], [ -121.143908417999953, 51.727627484000067 ], [ -121.143510910999979, 51.731208133000017 ], [ -121.140883018999943, 51.731096357000048 ], [ -121.140797831999947, 51.731863196000042 ], [ -121.135012047999979, 51.731616886000033 ], [ -121.135051843999946, 51.731259081000118 ], [ -121.13541025399995, 51.728036267000043 ], [ -121.135869969999987, 51.728055849000043 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024928", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "54.1", "sL_BldgLoss": "54.1", "sL_StrLoss": "54.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B016CDDD9425EC05492D0F1ACDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.04219507000002, 51.709647309000069 ], [ -121.042215423999977, 51.709467651000118 ], [ -121.041539560999979, 51.709438292000037 ], [ -121.041945199999972, 51.705857928000029 ], [ -121.042362169999961, 51.705876041000074 ], [ -121.042430919999958, 51.705907196000034 ], [ -121.043141594999909, 51.706531007000109 ], [ -121.043861212, 51.706955404000063 ], [ -121.04430800599999, 51.707332800000081 ], [ -121.045552582999946, 51.708017900000115 ], [ -121.046130987999945, 51.70801931200009 ], [ -121.047102908999975, 51.707648983000055 ], [ -121.047714415999934, 51.707586293000105 ], [ -121.04824027799998, 51.707575343000073 ], [ -121.047977427999953, 51.709898320000057 ], [ -121.04219507000002, 51.709647309000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024929", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "32.2", "sL_BldgLoss": "32.2", "sL_StrLoss": "32.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F2C79B996C3A5EC0359912C53BE24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.90929241, 51.768257075000058 ], [ -120.909540895999967, 51.76612402500006 ], [ -120.915329946, 51.76638173000002 ], [ -120.915227722999987, 51.767260242000063 ], [ -120.91737773599999, 51.767355876000074 ], [ -120.917240195, 51.76853835800005 ], [ -120.916422386999926, 51.768378409000057 ], [ -120.915729189999965, 51.768334101000114 ], [ -120.9126307289999, 51.768619005000069 ], [ -120.911546702999928, 51.768583306000046 ], [ -120.910111136999973, 51.768413389000102 ], [ -120.909975304999989, 51.76839728900012 ], [ -120.90929241, 51.768257075000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024930", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40.7", "sL_BldgLoss": "40.7", "sL_StrLoss": "40.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000242E9D62574E5EC04A3CA8DD92E14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.221347841999915, 51.76147515300012 ], [ -121.227138053999937, 51.761717089000079 ], [ -121.226998265999924, 51.762997330000061 ], [ -121.221181649999934, 51.762995357000108 ], [ -121.221347841999915, 51.76147515300012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024933", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5642917", "BldgCostT": "3891667", "sL_LossRatio": "1", "sL_AssetLoss": "260", "sL_BldgLoss": "260", "sL_StrLoss": "260", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006FE2BBFF95295EC0F46EA8EFE7EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.642499204999936, 51.839456270000042 ], [ -120.642938731999962, 51.835877806000049 ], [ -120.646901640999914, 51.836063223000082 ], [ -120.647113514999958, 51.834336737000072 ], [ -120.647032038999939, 51.834332926000087 ], [ -120.64702526799999, 51.834388097000037 ], [ -120.641228836999929, 51.834116844000036 ], [ -120.641668414999984, 51.83053836700001 ], [ -120.642033575999903, 51.830555464000057 ], [ -120.642134443999936, 51.829734176000095 ], [ -120.6479303, 51.83000538500005 ], [ -120.647851895999921, 51.830644455000026 ], [ -120.649671484999928, 51.830729539000103 ], [ -120.649347911999925, 51.833367660000064 ], [ -120.653040859, 51.833540252000091 ], [ -120.652787039999964, 51.835610849000055 ], [ -120.658066400999971, 51.835857374000113 ], [ -120.658075171999911, 51.835785759 ], [ -120.66387192799999, 51.836056162000041 ], [ -120.663609815000015, 51.838198661000028 ], [ -120.663351678000012, 51.838215236000039 ], [ -120.661383708999963, 51.838341600000113 ], [ -120.658730713999958, 51.838308705000024 ], [ -120.656743811999931, 51.838167413000114 ], [ -120.65496801099999, 51.838124106000109 ], [ -120.652619088999984, 51.838261790000026 ], [ -120.652177677999973, 51.838330029000069 ], [ -120.652327758999903, 51.837105941000047 ], [ -120.648639152999962, 51.83693354400004 ], [ -120.648371620999939, 51.83911403300003 ], [ -120.646298088999956, 51.839564295000095 ], [ -120.645904606999949, 51.839611511000051 ], [ -120.64583756699993, 51.839612474000077 ], [ -120.645142622999956, 51.839579965000105 ], [ -120.645139920999924, 51.839579712000138 ], [ -120.644863588999939, 51.839553896000062 ], [ -120.644401774999963, 51.839545305000158 ], [ -120.642499204999936, 51.839456270000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024934", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4434583", "BldgCostT": "3058333", "sL_LossRatio": "1", "sL_AssetLoss": "294.9", "sL_BldgLoss": "294.9", "sL_StrLoss": "294.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C27E6EEED425EC0B26FFE91AFE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.031665755999882, 51.766431238000088 ], [ -121.032072729999967, 51.762851097000052 ], [ -121.037862057999988, 51.763102607000079 ], [ -121.037815869, 51.763509442000093 ], [ -121.03842606399995, 51.76353593400006 ], [ -121.038485240999961, 51.76301464900007 ], [ -121.03955093499998, 51.763060908000014 ], [ -121.039571400999975, 51.762880574000114 ], [ -121.041347774999963, 51.762957660000055 ], [ -121.041456772999979, 51.761996916000108 ], [ -121.04724604099999, 51.762247951000042 ], [ -121.047179084999982, 51.762838821000088 ], [ -121.050568666999936, 51.762985662000098 ], [ -121.050528495999956, 51.763340399000128 ], [ -121.051743959999925, 51.763393030000032 ], [ -121.051983176999954, 51.76127999200002 ], [ -121.05200406699997, 51.761095463000075 ], [ -121.053147408999976, 51.761144959000013 ], [ -121.053341610999979, 51.759428992000082 ], [ -121.059130606999929, 51.759679427000037 ], [ -121.059101392999978, 51.759937880000074 ], [ -121.060008694999979, 51.759977103000061 ], [ -121.059838338999953, 51.761484393000075 ], [ -121.059745688999939, 51.762304114000116 ], [ -121.059713308999932, 51.762298492000127 ], [ -121.058957321999941, 51.76225680200006 ], [ -121.058161478999963, 51.762297996000036 ], [ -121.057373589999941, 51.762435701000086 ], [ -121.056212013, 51.762745444000068 ], [ -121.05468829499992, 51.76315170000003 ], [ -121.047809790999963, 51.764985397000061 ], [ -121.046920597999957, 51.765156384000143 ], [ -121.045878898999973, 51.765300110000091 ], [ -121.044715092999979, 51.765404391000104 ], [ -121.044564604999948, 51.765409231000078 ], [ -121.04357926099999, 51.765440908000123 ], [ -121.043477099999933, 51.765444214000105 ], [ -121.041556552999907, 51.765356119000032 ], [ -121.041209500999983, 51.765340227000095 ], [ -121.040919512999935, 51.765326921000074 ], [ -121.038412590999897, 51.765211891000078 ], [ -121.037229992999968, 51.765250490000021 ], [ -121.036156504999923, 51.765365811000038 ], [ -121.03514484, 51.765586775000081 ], [ -121.034954311, 51.765628391000106 ], [ -121.034396991999955, 51.765804456000161 ], [ -121.03389069799999, 51.765964395000054 ], [ -121.033640322999972, 51.766070815000013 ], [ -121.033074499999955, 51.76631130600007 ], [ -121.032744956, 51.766478144000097 ], [ -121.031665755999882, 51.766431238000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024935", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "85.7", "sL_BldgLoss": "85.7", "sL_StrLoss": "85.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FD09F4AA0A4E5EC06DF630491FDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.216310677999971, 51.707013121000045 ], [ -121.216427471999978, 51.705944460000097 ], [ -121.213922568999962, 51.705839458000092 ], [ -121.213944079999976, 51.705642738000044 ], [ -121.214099538999946, 51.704220925000058 ], [ -121.214199899999983, 51.704254093000074 ], [ -121.214217783999985, 51.704257747000092 ], [ -121.21444848799996, 51.704304998000055 ], [ -121.214531892999901, 51.70431511000006 ], [ -121.21535567799998, 51.704414992000089 ], [ -121.217317287999961, 51.704844415000068 ], [ -121.217814780999959, 51.704903896000076 ], [ -121.218980800999958, 51.7049050870001 ], [ -121.218977703999926, 51.704734093000098 ], [ -121.218800190999914, 51.704258992000085 ], [ -121.218781902999964, 51.703987491000142 ], [ -121.21884440299999, 51.703721204000033 ], [ -121.219166008999977, 51.702997195000044 ], [ -121.219247884999916, 51.702712902000101 ], [ -121.219282799999959, 51.702233209000028 ], [ -121.219221411999939, 51.701824999000053 ], [ -121.21908737199999, 51.701562191000093 ], [ -121.218780718999966, 51.70127230700011 ], [ -121.218487684999943, 51.701096389000028 ], [ -121.21810510099999, 51.70098320800011 ], [ -121.217183083999927, 51.700849203000118 ], [ -121.216926808999986, 51.700776392000073 ], [ -121.216685598999931, 51.700644892000113 ], [ -121.21651909099991, 51.700507513000034 ], [ -121.216412782999953, 51.700350201000099 ], [ -121.216381315999925, 51.700173501000059 ], [ -121.216406880999955, 51.700079602000123 ], [ -121.22218660599999, 51.70028990800008 ], [ -121.221979259999941, 51.702189643000096 ], [ -121.222540132999939, 51.702213121000078 ], [ -121.222381128999956, 51.703669996000045 ], [ -121.222484539999982, 51.703674324000104 ], [ -121.222093667999943, 51.707255325000112 ], [ -121.216310677999971, 51.707013121000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024936", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16220667", "BldgCostT": "11186667", "sL_LossRatio": "1", "sL_AssetLoss": "1189.5", "sL_BldgLoss": "1189.5", "sL_StrLoss": "1189.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009FFD71904A4B5EC057513021EEDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.162509021999966, 51.721301445000037 ], [ -121.162583532999975, 51.720627519000082 ], [ -121.160688005999972, 51.720547198000084 ], [ -121.160905322999938, 51.718582269000088 ], [ -121.158519868999974, 51.718481142000051 ], [ -121.158916036000022, 51.714900398000111 ], [ -121.160941235999985, 51.714986257000049 ], [ -121.16095118599999, 51.714896291000066 ], [ -121.158282419999978, 51.714783141000076 ], [ -121.158678572999989, 51.711202386000132 ], [ -121.164396437999983, 51.711444735000093 ], [ -121.164419928999905, 51.711232122000091 ], [ -121.163888, 51.711223809000082 ], [ -121.163931677999955, 51.710145395000083 ], [ -121.164538953999966, 51.710154885000058 ], [ -121.164612919999925, 51.709485423000082 ], [ -121.165693523999934, 51.709531191000046 ], [ -121.165743931999899, 51.708285290000092 ], [ -121.166177888000021, 51.708292064000055 ], [ -121.166232411999957, 51.706944045000043 ], [ -121.167968187999961, 51.706971131000032 ], [ -121.167946399999906, 51.707510339000088 ], [ -121.168223113999929, 51.707514655000097 ], [ -121.168373860999921, 51.706149105000137 ], [ -121.168694019999961, 51.706162656000082 ], [ -121.168883442999956, 51.704446515000086 ], [ -121.171133503999954, 51.704541730000095 ], [ -121.171125879999963, 51.704571390000055 ], [ -121.171201314999934, 51.704848883000068 ], [ -121.173291298, 51.704834797000061 ], [ -121.173895705999911, 51.704872988000098 ], [ -121.174158499, 51.70496591200007 ], [ -121.174640902999897, 51.705332593 ], [ -121.174920119999939, 51.705434287000116 ], [ -121.175194513999898, 51.705448597000021 ], [ -121.175444184999961, 51.705397092000098 ], [ -121.17569512199999, 51.705281802000052 ], [ -121.176100982999984, 51.704998592000095 ], [ -121.176302713999974, 51.704908202000055 ], [ -121.176539011999921, 51.704846201000116 ], [ -121.176684154999961, 51.704833389000044 ], [ -121.177656493999976, 51.704747706000106 ], [ -121.177910793999956, 51.704760305000029 ], [ -121.178256096999945, 51.704842300000024 ], [ -121.178583988999932, 51.70438398900005 ], [ -121.178971373999971, 51.703991099000064 ], [ -121.179425481999942, 51.703653206000055 ], [ -121.180089791999961, 51.703290990000077 ], [ -121.181088726999945, 51.702897899000057 ], [ -121.181700384999914, 51.70271049100004 ], [ -121.182278189999948, 51.702619817000034 ], [ -121.182884116999958, 51.702591389000133 ], [ -121.184031402999921, 51.702683007000083 ], [ -121.184600098999965, 51.702689013000018 ], [ -121.184695317000021, 51.702679781000093 ], [ -121.185169604999942, 51.702633887000083 ], [ -121.186373149999923, 51.702361648000128 ], [ -121.186885318999884, 51.702245805000096 ], [ -121.187575187000022, 51.702172336000046 ], [ -121.187756682, 51.702153005000113 ], [ -121.187879433999925, 51.702149371000118 ], [ -121.189247191999954, 51.70210879399999 ], [ -121.190263400999953, 51.70213808000009 ], [ -121.192427994999889, 51.702395686000102 ], [ -121.193262589999961, 51.702426400000064 ], [ -121.194006223999978, 51.7023723040001 ], [ -121.194874380999948, 51.70222889300004 ], [ -121.19533405599999, 51.702106593000096 ], [ -121.199996895, 51.70086566700013 ], [ -121.200346275999948, 51.700772677000025 ], [ -121.20032667599996, 51.701266579000063 ], [ -121.200004567999926, 51.701261643000073 ], [ -121.199878201999979, 51.702414057000077 ], [ -121.197246331999978, 51.702303338000043 ], [ -121.197235806999956, 51.702568047000064 ], [ -121.196666897999989, 51.702559315000052 ], [ -121.196619419999934, 51.702991987000047 ], [ -121.197729336999885, 51.703038691000124 ], [ -121.197381236999945, 51.706211430000032 ], [ -121.199250307999989, 51.706290056000029 ], [ -121.199155812999919, 51.707151586000137 ], [ -121.202965639999931, 51.707311757000049 ], [ -121.202573139999942, 51.710892678000079 ], [ -121.196789779999961, 51.710649488000087 ], [ -121.196884328999943, 51.7097879620001 ], [ -121.193074308999954, 51.709627589000085 ], [ -121.193293350999966, 51.707633166000022 ], [ -121.192692556999987, 51.707623924000082 ], [ -121.192703303999977, 51.707354316000064 ], [ -121.192405706999963, 51.70734973500003 ], [ -121.192269348999957, 51.707347638000101 ], [ -121.192276355999979, 51.707171876000082 ], [ -121.190596892999977, 51.707101127000044 ], [ -121.19077982, 51.705436291000105 ], [ -121.190174912999964, 51.705426972000048 ], [ -121.190185674999924, 51.705157364000065 ], [ -121.188449946999967, 51.70513060800009 ], [ -121.188481631999977, 51.704337476000063 ], [ -121.188367732999922, 51.704332675000089 ], [ -121.188296252999947, 51.704982925000181 ], [ -121.182513750999931, 51.704739012000083 ], [ -121.182604531999942, 51.703914169000043 ], [ -121.181986771999945, 51.703888094000064 ], [ -121.181984224999951, 51.70395161600004 ], [ -121.181116388999953, 51.703938180000087 ], [ -121.181105572999968, 51.704207787000094 ], [ -121.18076652399999, 51.704202536000125 ], [ -121.180524802999969, 51.706397905000124 ], [ -121.180103253999903, 51.70638010600004 ], [ -121.180011829999927, 51.707210317000012 ], [ -121.179148186999939, 51.707173844000145 ], [ -121.179052239, 51.708044937000096 ], [ -121.178951072999936, 51.708040665000077 ], [ -121.178828296999882, 51.709155241000111 ], [ -121.177768670999967, 51.709110482000057 ], [ -121.177646610999972, 51.710218267000052 ], [ -121.17678478, 51.710181857000073 ], [ -121.176625852999962, 51.711623888000105 ], [ -121.176302385999961, 51.711610221000065 ], [ -121.176236870999986, 51.712204597000046 ], [ -121.176114106999961, 51.71219940900005 ], [ -121.176054595999958, 51.712739300000138 ], [ -121.175642257999939, 51.712721875000113 ], [ -121.175566814999954, 51.713406210000088 ], [ -121.174980225999931, 51.713381420000069 ], [ -121.174897431999952, 51.714132325000023 ], [ -121.174436309999948, 51.71411283500003 ], [ -121.174373741999986, 51.714680236000085 ], [ -121.17410047, 51.714668685000042 ], [ -121.174043457999957, 51.715185643000062 ], [ -121.173963172999947, 51.715182249000129 ], [ -121.173889391999978, 51.715851245000046 ], [ -121.173581481, 51.715838229000013 ], [ -121.173505218999978, 51.71652965300008 ], [ -121.172436526999959, 51.716484470000083 ], [ -121.172361393999935, 51.71716547900013 ], [ -121.172324126999953, 51.717503280000059 ], [ -121.169225114999961, 51.717372200000042 ], [ -121.166861302999962, 51.717272159000089 ], [ -121.166793570999957, 51.717885379000059 ], [ -121.167973135999958, 51.717935306000072 ], [ -121.168688993999979, 51.71796560000012 ], [ -121.168293598999981, 51.721546367 ], [ -121.163226051999914, 51.721331821000028 ], [ -121.162509021999966, 51.721301445000037 ] ], [ [ -121.167126823, 51.713685882000071 ], [ -121.167181395999989, 51.713191724000048 ], [ -121.166951303999966, 51.713181983000041 ], [ -121.166614798999959, 51.71622871600006 ], [ -121.164589528999954, 51.716142957000024 ], [ -121.164482617999951, 51.717110444000106 ], [ -121.166546767999947, 51.717197848000126 ], [ -121.16693556099996, 51.713677784000083 ], [ -121.167126823, 51.713685882000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024937", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "204.6", "sL_BldgLoss": "204.6", "sL_StrLoss": "204.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009988F17909485EC0CE98B46F8FDF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.121491451999958, 51.748687467000082 ], [ -121.121635752999936, 51.747394144000054 ], [ -121.117987296999971, 51.747238302000085 ], [ -121.118032039999932, 51.74683756000011 ], [ -121.117597512999978, 51.74681899200008 ], [ -121.117997279999912, 51.743238484000074 ], [ -121.123784504999918, 51.743485652000125 ], [ -121.123739815999954, 51.74388639700004 ], [ -121.124174316999969, 51.743904943000061 ], [ -121.124072219999945, 51.74482058500007 ], [ -121.126691381999976, 51.744932341000037 ], [ -121.127051934999969, 51.746633548000062 ], [ -121.128787476999932, 51.746706452000083 ], [ -121.13147715499997, 51.746671774000042 ], [ -121.131432947999926, 51.747068804000037 ], [ -121.131777294999907, 51.747083477000047 ], [ -121.131788346999912, 51.746984215000083 ], [ -121.137576143999951, 51.747230685000048 ], [ -121.137425724999957, 51.748583284000041 ], [ -121.137380921999977, 51.748986145000096 ], [ -121.137000398999987, 51.748967729000107 ], [ -121.132911532999984, 51.748769757000062 ], [ -121.129495693999942, 51.748604260000057 ], [ -121.125671594, 51.748418845000167 ], [ -121.124849594999887, 51.748471686000045 ], [ -121.124347169999922, 51.748503979000056 ], [ -121.12404989399991, 51.748523076000055 ], [ -121.121491451999958, 51.748687467000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024938", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4313750", "BldgCostT": "2975000", "sL_LossRatio": "1", "sL_AssetLoss": "208.8", "sL_BldgLoss": "208.8", "sL_StrLoss": "208.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F565CCD1A1375EC0DC7E9EAB52E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.874927090999975, 51.770814201000086 ], [ -120.875190051999951, 51.768572224000167 ], [ -120.880979220999961, 51.7688316650001 ], [ -120.880932253999973, 51.769232575000018 ], [ -120.881374210000018, 51.769252369000093 ], [ -120.881247291999969, 51.769282288000092 ], [ -120.880051262999928, 51.769885829000039 ], [ -120.878661780999948, 51.770586910000041 ], [ -120.876008842999937, 51.772428341000087 ], [ -120.875799702999956, 51.772573509000082 ], [ -120.87539568399994, 51.773011906000121 ], [ -120.875266180999972, 51.773152390000021 ], [ -120.875254275999936, 51.773168954000091 ], [ -120.875180635999982, 51.773271150000014 ], [ -120.875108234999971, 51.773371610000055 ], [ -120.874942906999962, 51.773601106000065 ], [ -120.874815604999966, 51.774252091000058 ], [ -120.874903686999971, 51.774629406000074 ], [ -120.874866180999959, 51.774999301000058 ], [ -120.874711389999931, 51.775338707000095 ], [ -120.874327211999926, 51.775822500000068 ], [ -120.873883905999932, 51.776153505000167 ], [ -120.873726108999961, 51.776218420000063 ], [ -120.873420606999957, 51.776344108000082 ], [ -120.872304407999962, 51.776568401000091 ], [ -120.87100682, 51.776514699000046 ], [ -120.870870288999953, 51.776524060000035 ], [ -120.870538894999953, 51.776546809000116 ], [ -120.869154891999969, 51.777204390000087 ], [ -120.868129487999951, 51.777905885000038 ], [ -120.867796798, 51.778238520000109 ], [ -120.867763494999977, 51.778271787000079 ], [ -120.867053283999937, 51.779634308000055 ], [ -120.866401314999948, 51.780481295000101 ], [ -120.86633709199999, 51.780564695000116 ], [ -120.865748493999931, 51.780948839000033 ], [ -120.865727075999928, 51.780962805000165 ], [ -120.865280110999961, 51.781113601000108 ], [ -120.86412070499992, 51.781369207000118 ], [ -120.863869949999923, 51.781452288000125 ], [ -120.863423886999925, 51.781600051000126 ], [ -120.862984881999978, 51.781745494000099 ], [ -120.862357812000013, 51.782041192000058 ], [ -120.861273913999952, 51.782966690000059 ], [ -120.860089014999957, 51.783846303000097 ], [ -120.859909717999969, 51.78399559000006 ], [ -120.859611804999972, 51.784243622000076 ], [ -120.859217687999958, 51.784571797000076 ], [ -120.858970482999965, 51.784916099000014 ], [ -120.858713665999971, 51.785554505000015 ], [ -120.858266817999919, 51.78553441100005 ], [ -120.858688153999978, 51.781954961000068 ], [ -120.859195786999976, 51.78197778900013 ], [ -120.859233048999968, 51.781661173000053 ], [ -120.859405601999967, 51.781668932000116 ], [ -120.859452963999928, 51.781266477000031 ], [ -120.859788234999954, 51.781281553000042 ], [ -120.859838171999925, 51.780857186000063 ], [ -120.859947627999944, 51.78086210700009 ], [ -120.860105441999977, 51.779520889000075 ], [ -120.861849617999965, 51.7795992960001 ], [ -120.861964915999948, 51.778619032000066 ], [ -120.863061551999948, 51.778668316000108 ], [ -120.863122292999947, 51.778151758000078 ], [ -120.864749676999935, 51.778224874000024 ], [ -120.864770527999937, 51.778047496000077 ], [ -120.864992851999915, 51.778057483000076 ], [ -120.865051644999966, 51.777557302000019 ], [ -120.865125784999975, 51.777560632000117 ], [ -120.865175365999988, 51.777138804000082 ], [ -120.865367044999957, 51.77714741400009 ], [ -120.86541628099999, 51.776728509000066 ], [ -120.86571982599996, 51.776742143000021 ], [ -120.865764886999912, 51.776358717000065 ], [ -120.867586609999989, 51.776440524000073 ], [ -120.867734672999958, 51.775180161000051 ], [ -120.868054977999932, 51.775194541000083 ], [ -120.868203731000023, 51.773928169000079 ], [ -120.8704579179999, 51.774029352000071 ], [ -120.870688135999913, 51.772068424000089 ], [ -120.871565506999957, 51.77210779500011 ], [ -120.871672944999958, 51.771192447000075 ], [ -120.871888421999984, 51.77120211400009 ], [ -120.871948063999966, 51.770693952000059 ], [ -120.873350939999938, 51.770756885000026 ], [ -120.873352499999925, 51.770743585000091 ], [ -120.874927090999975, 51.770814201000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024939", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "224.9", "sL_BldgLoss": "224.9", "sL_StrLoss": "224.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F78777CAB4455EC0C3D1C055BFDF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.088012178999946, 51.75073035700008 ], [ -121.082865020999961, 51.749936768000033 ], [ -121.082630378999951, 51.750055499000027 ], [ -121.082589032999948, 51.750072589000105 ], [ -121.082604660999934, 51.749933639000105 ], [ -121.08294418599999, 51.746914666000073 ], [ -121.084251077999937, 51.746970905000069 ], [ -121.084439620999945, 51.745293798000041 ], [ -121.090226925999943, 51.745542663000016 ], [ -121.090137158999951, 51.746342104000064 ], [ -121.090328909999968, 51.74635034500006 ], [ -121.090348808, 51.746173139000078 ], [ -121.09613626299992, 51.746421705000031 ], [ -121.096059243999932, 51.747108438000055 ], [ -121.09573467899996, 51.750002126000062 ], [ -121.094584417999897, 51.749952746000091 ], [ -121.09456453599995, 51.750129953000105 ], [ -121.088776598999942, 51.74988130800012 ], [ -121.088866398000022, 51.749081870000062 ], [ -121.088517903, 51.749066890000087 ], [ -121.088329499999972, 51.750743998000068 ], [ -121.088012178999946, 51.75073035700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024940", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "84.2", "sL_BldgLoss": "84.2", "sL_StrLoss": "84.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B6E1A8C327485EC0080B8222F1DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.124734536999981, 51.716382594000031 ], [ -121.130518251999959, 51.716629429000115 ], [ -121.1301197499999, 51.720210068000064 ], [ -121.12433556500001, 51.719963215000057 ], [ -121.124734536999981, 51.716382594000031 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024941", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2774333", "BldgCostT": "1913333", "sL_LossRatio": "1", "sL_AssetLoss": "193.7", "sL_BldgLoss": "193.7", "sL_StrLoss": "193.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009D32718AD2415EC0E50819C8B3D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.026335723999978, 51.704583589000073 ], [ -121.026479159999909, 51.703321368000019 ], [ -121.024400607999922, 51.703230766000097 ], [ -121.024412097999956, 51.702862208000063 ], [ -121.024299222999943, 51.70282519900011 ], [ -121.024315914999946, 51.702096004000026 ], [ -121.024196209999971, 51.701842505000066 ], [ -121.023806194999977, 51.701853896000088 ], [ -121.023450615999963, 51.702019099000012 ], [ -121.023154453999965, 51.702035836000057 ], [ -121.02343249099998, 51.699590481000079 ], [ -121.023598430999954, 51.699597718000049 ], [ -121.023642805999913, 51.699207386000104 ], [ -121.02515342599996, 51.699273252000047 ], [ -121.025157838999931, 51.699234421000028 ], [ -121.02571113, 51.69925854100007 ], [ -121.025943628000036, 51.697212537000084 ], [ -121.026036563999952, 51.69721658800011 ], [ -121.02608634799995, 51.696778439000092 ], [ -121.031866918999981, 51.697030267000109 ], [ -121.031839670999915, 51.697270345000042 ], [ -121.032549511999946, 51.697301248000095 ], [ -121.032504089999961, 51.697701514000109 ], [ -121.032560036999897, 51.697703949000079 ], [ -121.032158830999919, 51.701239173000069 ], [ -121.032523689999948, 51.701255056000015 ], [ -121.032117323999955, 51.704835402000157 ], [ -121.026335723999978, 51.704583589000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024943", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "88.3", "sL_BldgLoss": "88.3", "sL_StrLoss": "88.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000967EDB768E465EC0C9FF260CB1DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.09975260799996, 51.73786374600008 ], [ -121.10553901899999, 51.738111837000133 ], [ -121.105222844999957, 51.740936804000093 ], [ -121.105138278999945, 51.741692318000034 ], [ -121.10349027699999, 51.741621691000027 ], [ -121.099351397999911, 51.741444207000079 ], [ -121.09975260799996, 51.73786374600008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024944", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "74.9", "sL_BldgLoss": "74.9", "sL_StrLoss": "74.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CCDF9424953D5EC02D26572D40E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.959102609999945, 51.769231367000081 ], [ -120.959502428999954, 51.765765198000061 ], [ -120.963838033999949, 51.765956329000076 ], [ -120.96383925899994, 51.765929100000058 ], [ -120.965142632, 51.765951677 ], [ -120.965139842, 51.766013685000125 ], [ -120.965291721999947, 51.766020377000061 ], [ -120.965268306, 51.766223632000035 ], [ -120.96556496699999, 51.766228768000062 ], [ -120.965528596999917, 51.767037477 ], [ -120.965175246999976, 51.767031359000057 ], [ -120.965078912999957, 51.767867475000045 ], [ -120.964909642999913, 51.76933656000012 ], [ -120.964711769999951, 51.769336737000081 ], [ -120.962182594999959, 51.769338985000047 ], [ -120.959102609999945, 51.769231367000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024945", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "101.5", "sL_BldgLoss": "101.5", "sL_StrLoss": "101.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000541E7ADE4F455EC07DD62DE9C5DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.080309837999948, 51.707249933000071 ], [ -121.086092096999892, 51.707499016000057 ], [ -121.08593461000001, 51.708901611000023 ], [ -121.085690047999947, 51.711079531000038 ], [ -121.08347424099999, 51.710984115000038 ], [ -121.079907318999986, 51.710830428000044 ], [ -121.080309837999948, 51.707249933000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024946", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2513333", "BldgCostT": "1733333", "sL_LossRatio": "1", "sL_AssetLoss": "191.3", "sL_BldgLoss": "191.3", "sL_StrLoss": "191.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F84002B172495EC0B8C281B1BAD54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.147788640999963, 51.667952566000082 ], [ -121.150690664999942, 51.668076008000121 ], [ -121.150638846999954, 51.668544125000032 ], [ -121.150294249999959, 51.671656880000064 ], [ -121.144516352, 51.671411038000016 ], [ -121.144874037999926, 51.668183866000057 ], [ -121.145978718999956, 51.667875541000093 ], [ -121.147788640999963, 51.667952566000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024948", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "228.7", "sL_BldgLoss": "228.7", "sL_StrLoss": "228.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007C4BD634314E5EC0453D8E30D6D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.219058210999933, 51.692124975000105 ], [ -121.224839253999932, 51.692367043000097 ], [ -121.224448673999959, 51.695948089000105 ], [ -121.218667163999953, 51.695706002000101 ], [ -121.219058210999933, 51.692124975000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024949", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129584", "BldgCostT": "2158334", "sL_LossRatio": "1", "sL_AssetLoss": "221.6", "sL_BldgLoss": "221.6", "sL_StrLoss": "221.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005B23C48D424E5EC068041BD73FD74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.220117728, 51.67972417700004 ], [ -121.225897139999972, 51.679966195000056 ], [ -121.225506759999988, 51.683547287000081 ], [ -121.219726875999982, 51.683305250000046 ], [ -121.220117728, 51.67972417700004 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024952", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "44.2", "sL_BldgLoss": "44.2", "sL_StrLoss": "44.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000014CC1CBB194A5EC03DAB583E43D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.15517529899995, 51.696994077000078 ], [ -121.160956626999948, 51.697239376000056 ], [ -121.160914881999943, 51.69761702800011 ], [ -121.159887208999947, 51.697625524000046 ], [ -121.15940909399994, 51.69762948100005 ], [ -121.158742003999976, 51.697634994000033 ], [ -121.155107673999922, 51.697605130000134 ], [ -121.15517529899995, 51.696994077000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024953", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "396", "sL_BldgLoss": "396", "sL_StrLoss": "396", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000006CB01503F515EC0BDC227428FD84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.267976098999924, 51.688554123000102 ], [ -121.273756938999895, 51.688793717000088 ], [ -121.273370386999957, 51.692374942000043 ], [ -121.271316035999988, 51.692289831000039 ], [ -121.271002856999985, 51.695189592000112 ], [ -121.265221190999938, 51.694949860000079 ], [ -121.265608429999972, 51.691368671000113 ], [ -121.267662725999955, 51.691453885000072 ], [ -121.267976098999924, 51.688554123000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024954", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "335.3", "sL_BldgLoss": "335.3", "sL_StrLoss": "335.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E3DAF577DB4D5EC0D5C72A42BDD94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.215234916, 51.702297087000083 ], [ -121.215287674999942, 51.701814404000039 ], [ -121.213738749999919, 51.701749460000045 ], [ -121.213758078, 51.70157268400007 ], [ -121.212788828999948, 51.701532035000099 ], [ -121.21318040899996, 51.69795104700006 ], [ -121.218962186999988, 51.698193410000087 ], [ -121.21894288099999, 51.698370187000066 ], [ -121.219912065999949, 51.698410785000114 ], [ -121.219782961999954, 51.699593164000099 ], [ -121.222251367999959, 51.699696525000029 ], [ -121.22218660599999, 51.70028990800008 ], [ -121.216406880999955, 51.700079602000123 ], [ -121.216381315999925, 51.700173501000059 ], [ -121.216412782999953, 51.700350201000099 ], [ -121.21651909099991, 51.700507513000034 ], [ -121.216685598999931, 51.700644892000113 ], [ -121.216926808999986, 51.700776392000073 ], [ -121.217183083999927, 51.700849203000118 ], [ -121.21810510099999, 51.70098320800011 ], [ -121.218487684999943, 51.701096389000028 ], [ -121.218780718999966, 51.70127230700011 ], [ -121.21908737199999, 51.701562191000093 ], [ -121.219221411999939, 51.701824999000053 ], [ -121.219282799999959, 51.702233209000028 ], [ -121.219247884999916, 51.702712902000101 ], [ -121.219166008999977, 51.702997195000044 ], [ -121.21884440299999, 51.703721204000033 ], [ -121.218781902999964, 51.703987491000142 ], [ -121.218800190999914, 51.704258992000085 ], [ -121.218977703999926, 51.704734093000098 ], [ -121.218980800999958, 51.7049050870001 ], [ -121.217814780999959, 51.704903896000076 ], [ -121.217317287999961, 51.704844415000068 ], [ -121.21535567799998, 51.704414992000089 ], [ -121.214531892999901, 51.70431511000006 ], [ -121.21444848799996, 51.704304998000055 ], [ -121.214217783999985, 51.704257747000092 ], [ -121.214199899999983, 51.704254093000074 ], [ -121.214099538999946, 51.704220925000058 ], [ -121.214314095999953, 51.702258481000058 ], [ -121.215234916, 51.702297087000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024956", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "240.6", "sL_BldgLoss": "240.6", "sL_StrLoss": "240.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B40928BBB6485EC0E529ABE9FAD84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.133461575999917, 51.693243659000096 ], [ -121.139242288999952, 51.693490056000073 ], [ -121.1388447099999, 51.697070805000074 ], [ -121.133063527000019, 51.696824387000071 ], [ -121.133461575999917, 51.693243659000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024957", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3177917", "BldgCostT": "2191667", "sL_LossRatio": "1", "sL_AssetLoss": "254.6", "sL_BldgLoss": "254.6", "sL_StrLoss": "254.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000075F3857756495EC093CD970FEFD74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.143211153, 51.685069675000051 ], [ -121.148990842999936, 51.685315581000097 ], [ -121.148594133999936, 51.688896390000082 ], [ -121.144677793999975, 51.688729796000068 ], [ -121.142813973999964, 51.688650464 ], [ -121.142983504999961, 51.687122130000027 ], [ -121.143211153, 51.685069675000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024958", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "22501583", "BldgCostT": "15518333", "sL_LossRatio": "1", "sL_AssetLoss": "1877", "sL_BldgLoss": "1877", "sL_StrLoss": "1877", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BDACE4BEF04B5EC04B4FC37D85D94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.173895705999911, 51.704872988000098 ], [ -121.173291298, 51.704834797000061 ], [ -121.171201314999934, 51.704848883000068 ], [ -121.171125879999963, 51.704571390000055 ], [ -121.171133503999954, 51.704541730000095 ], [ -121.171402722999972, 51.704553120000064 ], [ -121.171553303999957, 51.703188074000124 ], [ -121.172653176999987, 51.703234599000069 ], [ -121.17274189799997, 51.702430101000054 ], [ -121.173641538999988, 51.702468147000062 ], [ -121.173667970999958, 51.702228423000051 ], [ -121.179450092999929, 51.70247278500009 ], [ -121.179419157, 51.702753705000099 ], [ -121.179709205999956, 51.702765955000075 ], [ -121.179995521999942, 51.700165768000069 ], [ -121.181450430999945, 51.700227205000083 ], [ -121.181552765999953, 51.699297491000024 ], [ -121.176336913999975, 51.699077154000044 ], [ -121.176349323999929, 51.698964530000069 ], [ -121.174284414999988, 51.69887723300014 ], [ -121.174273772999967, 51.698973766000051 ], [ -121.170963585999985, 51.698833747000116 ], [ -121.170973, 51.698453584000056 ], [ -121.171138300999957, 51.697679094000087 ], [ -121.170481203999927, 51.69761980300013 ], [ -121.16861488, 51.697617020000081 ], [ -121.168887314999949, 51.695148297000081 ], [ -121.17253380599999, 51.695302618000071 ], [ -121.172544450999965, 51.695206084000105 ], [ -121.172681781999984, 51.695211893000092 ], [ -121.172817212999973, 51.693983588000073 ], [ -121.176219819999972, 51.694127477000094 ], [ -121.177001805999979, 51.694160531000158 ], [ -121.177023732999942, 51.693961487000088 ], [ -121.18280478299998, 51.694205681000057 ], [ -121.182410754999978, 51.697786577000045 ], [ -121.182288114999963, 51.69778139900005 ], [ -121.182146688000017, 51.69906649400005 ], [ -121.187362567999969, 51.699286566000076 ], [ -121.187307619999928, 51.699786368000098 ], [ -121.192078137999928, 51.699987439000111 ], [ -121.192071215999988, 51.700050461000039 ], [ -121.194318353999947, 51.700145104000079 ], [ -121.194489085999962, 51.69858980700009 ], [ -121.199122741999986, 51.698784825000104 ], [ -121.199142750999982, 51.698280926000045 ], [ -121.201312096999942, 51.698314167000049 ], [ -121.201290712999963, 51.698853387000057 ], [ -121.20181218599997, 51.698861372000074 ], [ -121.201860474999989, 51.698420781000046 ], [ -121.202991121999958, 51.698468311000056 ], [ -121.206026518, 51.698595858000026 ], [ -121.206128135999961, 51.697667880000054 ], [ -121.211909835999947, 51.697910601000046 ], [ -121.21151815199994, 51.701491584000081 ], [ -121.207351811999942, 51.701316708000057 ], [ -121.207253115, 51.702218184000046 ], [ -121.20542292199994, 51.701170194000035 ], [ -121.204567781999955, 51.700680497000114 ], [ -121.204103100999973, 51.700508084000013 ], [ -121.203395680999947, 51.70033720600005 ], [ -121.202841892999913, 51.70017256200002 ], [ -121.202205725999988, 51.699983439000043 ], [ -121.20211311099996, 51.699955899000024 ], [ -121.20209040099995, 51.699969745000082 ], [ -121.201662099999979, 51.700230673000107 ], [ -121.201664587999971, 51.700207979000091 ], [ -121.201237246999966, 51.70020143400005 ], [ -121.201269327999938, 51.699392606000046 ], [ -121.200401567999947, 51.699379314000112 ], [ -121.200380170999921, 51.699918534000084 ], [ -121.200152219999936, 51.699915040000043 ], [ -121.200093160999955, 51.700453682000052 ], [ -121.200358772999962, 51.700457751000087 ], [ -121.200346275999948, 51.700772677000025 ], [ -121.199996895, 51.70086566700013 ], [ -121.19533405599999, 51.702106593000096 ], [ -121.194874380999948, 51.70222889300004 ], [ -121.194006223999978, 51.7023723040001 ], [ -121.193262589999961, 51.702426400000064 ], [ -121.192427994999889, 51.702395686000102 ], [ -121.190263400999953, 51.70213808000009 ], [ -121.189247191999954, 51.70210879399999 ], [ -121.187879433999925, 51.702149371000118 ], [ -121.187756682, 51.702153005000113 ], [ -121.187575187000022, 51.702172336000046 ], [ -121.186885318999884, 51.702245805000096 ], [ -121.186373149999923, 51.702361648000128 ], [ -121.185169604999942, 51.702633887000083 ], [ -121.184695317000021, 51.702679781000093 ], [ -121.184600098999965, 51.702689013000018 ], [ -121.184031402999921, 51.702683007000083 ], [ -121.182884116999958, 51.702591389000133 ], [ -121.182278189999948, 51.702619817000034 ], [ -121.181700384999914, 51.70271049100004 ], [ -121.181088726999945, 51.702897899000057 ], [ -121.180089791999961, 51.703290990000077 ], [ -121.179425481999942, 51.703653206000055 ], [ -121.178971373999971, 51.703991099000064 ], [ -121.178583988999932, 51.70438398900005 ], [ -121.178256096999945, 51.704842300000024 ], [ -121.177910793999956, 51.704760305000029 ], [ -121.177656493999976, 51.704747706000106 ], [ -121.176684154999961, 51.704833389000044 ], [ -121.176539011999921, 51.704846201000116 ], [ -121.176302713999974, 51.704908202000055 ], [ -121.176100982999984, 51.704998592000095 ], [ -121.17569512199999, 51.705281802000052 ], [ -121.175444184999961, 51.705397092000098 ], [ -121.175194513999898, 51.705448597000021 ], [ -121.174920119999939, 51.705434287000116 ], [ -121.174640902999897, 51.705332593 ], [ -121.174158499, 51.70496591200007 ], [ -121.173895705999911, 51.704872988000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024960", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "86.4", "sL_BldgLoss": "86.4", "sL_StrLoss": "86.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000977FA105704C5EC0E82B2F9675D64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.193916636999944, 51.676888530000099 ], [ -121.193938093999932, 51.676349311000088 ], [ -121.192637119999944, 51.676329296000041 ], [ -121.19268006099999, 51.675250858000041 ], [ -121.193113707999956, 51.675257530000117 ], [ -121.193137927999913, 51.674649037000044 ], [ -121.193178095999897, 51.673639874000074 ], [ -121.194478994999926, 51.673659883000042 ], [ -121.194447983999979, 51.674439496000041 ], [ -121.194436099000015, 51.674738322000159 ], [ -121.195303385, 51.674751654000033 ], [ -121.195281946999941, 51.675290873000087 ], [ -121.19571559399995, 51.675297537000091 ], [ -121.19570487799993, 51.675567147000109 ], [ -121.196572179999961, 51.675580470000064 ], [ -121.196540044999935, 51.676389299000043 ], [ -121.195239068999939, 51.67636931300008 ], [ -121.195217628999941, 51.67690853100008 ], [ -121.193916636999944, 51.676888530000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024961", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "165.9", "sL_BldgLoss": "165.9", "sL_StrLoss": "165.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007606DBC2D24C5EC00C79E328E9D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.20004258799996, 51.697485400000062 ], [ -121.200085385999955, 51.696406962000069 ], [ -121.199651535, 51.696400312000087 ], [ -121.199672935999956, 51.69586109300009 ], [ -121.198805245999949, 51.695847789000027 ], [ -121.198858773999973, 51.694499743000094 ], [ -121.198424941999932, 51.694493089000083 ], [ -121.198499893999937, 51.692605823000036 ], [ -121.198933707999942, 51.692612476000136 ], [ -121.198976523999988, 51.691534038000043 ], [ -121.200277937999914, 51.691553988000095 ], [ -121.200267240999921, 51.691823597000102 ], [ -121.200701048999946, 51.691830245000055 ], [ -121.200679660999981, 51.692369464000073 ], [ -121.201547287999944, 51.692382753000068 ], [ -121.201440393000013, 51.695078851000098 ], [ -121.201768008000016, 51.695083868000019 ], [ -121.201874231999938, 51.695085494000104 ], [ -121.201864276999942, 51.695336594000061 ], [ -121.20184216699991, 51.695894324000072 ], [ -121.202115331999892, 51.695898505000052 ], [ -121.202276014999939, 51.695900965000106 ], [ -121.202263011999889, 51.696229042000063 ], [ -121.202243956999951, 51.696709794000078 ], [ -121.202479422999929, 51.696713398000078 ], [ -121.202677812999966, 51.696716435000042 ], [ -121.202661759999955, 51.697121499000069 ], [ -121.202645761999975, 51.697525264000063 ], [ -121.20004258799996, 51.697485400000062 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024962", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "44647917", "BldgCostT": "30791667", "sL_LossRatio": "1", "sL_AssetLoss": "3290", "sL_BldgLoss": "3290", "sL_StrLoss": "3290", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007FA42D53F84D5EC0FA7DF7757DD64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.208634848, 51.69336073400008 ], [ -121.208665081999925, 51.693084450000057 ], [ -121.207530527999964, 51.693036805000105 ], [ -121.20762864999989, 51.692140341000041 ], [ -121.207370584999978, 51.692129502000071 ], [ -121.207598489999924, 51.690047296000103 ], [ -121.207282761999949, 51.690042477000063 ], [ -121.207272107999984, 51.69031208800007 ], [ -121.205536931999944, 51.690285590000016 ], [ -121.205515602999952, 51.690824810000059 ], [ -121.203780406999982, 51.690798286000053 ], [ -121.203812430999946, 51.689989454000106 ], [ -121.204680012999972, 51.690002720000024 ], [ -121.204712018999913, 51.689193888000027 ], [ -121.205145801999976, 51.689200518000121 ], [ -121.205156467, 51.688930908000039 ], [ -121.203855126999926, 51.688911013000101 ], [ -121.203833777999947, 51.689450233000045 ], [ -121.203399992999934, 51.689443599000121 ], [ -121.203378640999972, 51.689982819000072 ], [ -121.202238639999948, 51.689965375000064 ], [ -121.201209688999938, 51.689949621000046 ], [ -121.201220378999921, 51.689680010000082 ], [ -121.200786590999883, 51.689673366000129 ], [ -121.200818665999932, 51.688864536000033 ], [ -121.202120004999969, 51.68888446400009 ], [ -121.202130688999972, 51.688614854000022 ], [ -121.202564465999941, 51.688621493000078 ], [ -121.202585828999986, 51.688082273000077 ], [ -121.203453373999977, 51.688095547000103 ], [ -121.203464048999962, 51.687825936000138 ], [ -121.204331589999967, 51.687839204000085 ], [ -121.204342258999958, 51.687569594000067 ], [ -121.205209794999973, 51.687582855000059 ], [ -121.2052204599999, 51.687313243000041 ], [ -121.206087990999961, 51.687326499000029 ], [ -121.206109310999949, 51.686787277000107 ], [ -121.206575541999911, 51.68679439700005 ], [ -121.206781899999939, 51.684909133000069 ], [ -121.206183921999965, 51.684900001000074 ], [ -121.206226553999954, 51.683821556000069 ], [ -121.206983051999927, 51.683833109000041 ], [ -121.20709640699999, 51.682797376000082 ], [ -121.208449587999922, 51.682854219000106 ], [ -121.208457247999931, 51.682784208000093 ], [ -121.208710817999972, 51.682794857000076 ], [ -121.209065919999901, 51.679548817000054 ], [ -121.210082381999939, 51.679591503000019 ], [ -121.210108286999954, 51.679354640000071 ], [ -121.210333904, 51.679364114000087 ], [ -121.210370894999954, 51.679025846000059 ], [ -121.210608329999928, 51.679035815000091 ], [ -121.210650206999929, 51.678652852000049 ], [ -121.210892880999921, 51.678663041000036 ], [ -121.210940519999951, 51.678227358000107 ], [ -121.211068445999942, 51.67823272900003 ], [ -121.211105332999935, 51.677895361000019 ], [ -121.211160335999921, 51.677897671000039 ], [ -121.211202451999938, 51.677512463 ], [ -121.211314777999959, 51.677517178000059 ], [ -121.211321561999966, 51.67745512400009 ], [ -121.211081058999966, 51.677445026000058 ], [ -121.211472564999951, 51.673863963000024 ], [ -121.214334421999965, 51.67398407600011 ], [ -121.214648494999906, 51.671109133000122 ], [ -121.214936948999949, 51.671121235000079 ], [ -121.215092062999972, 51.669701140000015 ], [ -121.215179064999944, 51.669704790000047 ], [ -121.215223381999948, 51.669299043000045 ], [ -121.216015747999904, 51.669332284000106 ], [ -121.216214247999915, 51.667514463000046 ], [ -121.216687283999974, 51.667534305000075 ], [ -121.216805386, 51.666452575000086 ], [ -121.222088092999982, 51.666674027000148 ], [ -121.22210438599997, 51.666257940000065 ], [ -121.222971521999966, 51.666271066000057 ], [ -121.22302427699999, 51.664922994000065 ], [ -121.223891388999931, 51.664936114000099 ], [ -121.223896774, 51.664798466000036 ], [ -121.220336511999946, 51.664649297000096 ], [ -121.220626375999984, 51.661992033000018 ], [ -121.22072714699999, 51.661068159000131 ], [ -121.22508949799996, 51.661250920000036 ], [ -121.225143172999964, 51.660758362000138 ], [ -121.230755702999929, 51.660993253000058 ], [ -121.230889983999944, 51.659759495000053 ], [ -121.232062881999923, 51.659808547000125 ], [ -121.232113055999946, 51.659347424000089 ], [ -121.235992759999974, 51.659509591000123 ], [ -121.237889851999952, 51.65958883900003 ], [ -121.237757762999976, 51.660804248000019 ], [ -121.238102229999967, 51.660818635000048 ], [ -121.237713015999958, 51.664399832000086 ], [ -121.232380877999944, 51.664177028000076 ], [ -121.232269826, 51.665197560000117 ], [ -121.231988759, 51.665185809000086 ], [ -121.230641024999926, 51.665129450000059 ], [ -121.230537005999935, 51.666085 ], [ -121.225589835999969, 51.66587798500008 ], [ -121.225572937999971, 51.666310406000029 ], [ -121.223838658999966, 51.666284185000094 ], [ -121.223816352999961, 51.66685444900002 ], [ -121.22520485, 51.666912593000113 ], [ -121.224814527999939, 51.670493726000103 ], [ -121.223565890999964, 51.670441441000072 ], [ -121.223450629999917, 51.671498556000131 ], [ -121.222964597999933, 51.671478201000113 ], [ -121.222927426999931, 51.671819068000076 ], [ -121.222885235999954, 51.671817301000097 ], [ -121.222425908999952, 51.671798061000104 ], [ -121.22239931799993, 51.672041881000062 ], [ -121.220736197999912, 51.671972201000052 ], [ -121.220610704999928, 51.673122421000059 ], [ -121.220523694999926, 51.673118775000013 ], [ -121.220479424999922, 51.673524522000093 ], [ -121.220403010999974, 51.673521321000123 ], [ -121.220386527999935, 51.673672379000045 ], [ -121.221378487999957, 51.673713943000102 ], [ -121.2213962229999, 51.673261336000095 ], [ -121.22269712799999, 51.673281033000087 ], [ -121.222686571999986, 51.673550646000088 ], [ -121.22288623299994, 51.673553669000043 ], [ -121.223120209999976, 51.673557209000109 ], [ -121.223077995999986, 51.674635665000075 ], [ -121.223945292999986, 51.674648786000049 ], [ -121.223924194999967, 51.675188013000053 ], [ -121.224357849999947, 51.675194571000048 ], [ -121.22433587099999, 51.675756405000101 ], [ -121.224315660999949, 51.676273028000011 ], [ -121.223448332, 51.676259909000073 ], [ -121.223437779999955, 51.676529524000046 ], [ -121.222136781999922, 51.676509834000079 ], [ -121.22217902099996, 51.675431379 ], [ -121.222612677999948, 51.675437944000052 ], [ -121.222644347999974, 51.674629102000068 ], [ -121.221734598999916, 51.674615330000044 ], [ -121.221440198999943, 51.677313993000055 ], [ -121.221222562, 51.677304876000044 ], [ -121.221152524999951, 51.67794679900004 ], [ -121.220965321999955, 51.677938957 ], [ -121.220904149999981, 51.678499604000137 ], [ -121.220695192, 51.67849084900007 ], [ -121.220643265999982, 51.678966710000076 ], [ -121.220429155999909, 51.678957739000118 ], [ -121.220371484999987, 51.679486215000026 ], [ -121.219388353999975, 51.679445018000081 ], [ -121.21908849499998, 51.68219204000011 ], [ -121.218899702999977, 51.682184128000102 ], [ -121.218845115999954, 51.68268414500006 ], [ -121.218164138999938, 51.68265560300015 ], [ -121.217961789999904, 51.68450876200005 ], [ -121.216929100999948, 51.684465472000049 ], [ -121.216916047999945, 51.684584987000072 ], [ -121.215978340999953, 51.684545670000098 ], [ -121.215895047999979, 51.685308110000044 ], [ -121.21571081899998, 51.685300384000108 ], [ -121.215664164999978, 51.685727415000059 ], [ -121.215562537, 51.685723153 ], [ -121.215524378999987, 51.686072417000091 ], [ -121.215314873999901, 51.686063631000117 ], [ -121.215265094999964, 51.686519223000083 ], [ -121.214498563999911, 51.686487074000091 ], [ -121.214407905999977, 51.687316642000027 ], [ -121.213333207999952, 51.68727156000007 ], [ -121.21325060099997, 51.688027268000063 ], [ -121.212841412, 51.688010100000056 ], [ -121.21280909799999, 51.688305677000066 ], [ -121.207360426999941, 51.688076936000037 ], [ -121.2073466799999, 51.688424812000072 ], [ -121.208214234999915, 51.688438051000027 ], [ -121.208209131999979, 51.68856725900006 ], [ -121.213543031999919, 51.688791142000056 ], [ -121.213493932999924, 51.689240321000064 ], [ -121.215167106999928, 51.689310499000044 ], [ -121.214775764999928, 51.692891522000089 ], [ -121.21449508, 51.692879752000088 ], [ -121.21441599399999, 51.693603329000062 ], [ -121.208634848, 51.69336073400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024963", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3818333", "BldgCostT": "2633333", "sL_LossRatio": "1", "sL_AssetLoss": "307.6", "sL_BldgLoss": "307.6", "sL_StrLoss": "307.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001570E89088495EC0BF3B438273D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.146938448999919, 51.688999569000025 ], [ -121.152718676999925, 51.689245286000109 ], [ -121.152322237999954, 51.692826094000075 ], [ -121.15101341, 51.692770482000135 ], [ -121.150982392999978, 51.693050525000032 ], [ -121.14520167299996, 51.692804722000091 ], [ -121.145598693999929, 51.689223938000048 ], [ -121.146907408999979, 51.689279612000092 ], [ -121.146938448999919, 51.688999569000025 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024964", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "180", "sL_BldgLoss": "180", "sL_StrLoss": "180", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B75C8111894D5EC05AD0DE8D43D54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.208263932999941, 51.666278661000028 ], [ -121.208518400999964, 51.663951875000102 ], [ -121.214295672999953, 51.664194483000074 ], [ -121.214200604999988, 51.665064832000056 ], [ -121.214223338999957, 51.665065787000039 ], [ -121.213832135999908, 51.668646889000087 ], [ -121.210200572999952, 51.66849442200003 ], [ -121.209355501999937, 51.666693 ], [ -121.209216902999955, 51.666502086000079 ], [ -121.208777398, 51.666315592000082 ], [ -121.208263932999941, 51.666278661000028 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024965", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "23142000", "BldgCostT": "15960000", "sL_LossRatio": "1", "sL_AssetLoss": "1799", "sL_BldgLoss": "1799", "sL_StrLoss": "1799", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000002103D4AA14B5EC04AE59AC07CD74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.173649734999969, 51.693073090000034 ], [ -121.17368615, 51.692742756 ], [ -121.171045169, 51.692631021000082 ], [ -121.171440077999932, 51.689050147000088 ], [ -121.171575918999963, 51.689055895000102 ], [ -121.17168993, 51.688021951000039 ], [ -121.17384865799994, 51.688113285000043 ], [ -121.173949180999955, 51.687201202000082 ], [ -121.176463772999952, 51.687307541000045 ], [ -121.176601634999926, 51.686055963000094 ], [ -121.177856216999928, 51.686108997000069 ], [ -121.178032367999919, 51.68450929400008 ], [ -121.178215794999957, 51.684517046000053 ], [ -121.178222245999933, 51.684458448000065 ], [ -121.177142277999934, 51.684412799000079 ], [ -121.177167537999978, 51.684183436000119 ], [ -121.177134367999912, 51.684182921000051 ], [ -121.177123538, 51.68445252700009 ], [ -121.176689805999914, 51.684445794000077 ], [ -121.176678972999952, 51.684715401000041 ], [ -121.174076572999979, 51.684674969000056 ], [ -121.1741091199999, 51.683866150000043 ], [ -121.174542844999962, 51.683872892000053 ], [ -121.174553689999968, 51.683603286000114 ], [ -121.174987411999936, 51.683610027000078 ], [ -121.175009097999919, 51.683070814000139 ], [ -121.175442816999961, 51.683077553000039 ], [ -121.175453656999977, 51.682807947000128 ], [ -121.176321086999934, 51.68282142000011 ], [ -121.176331921999946, 51.682551814000071 ], [ -121.177345488999904, 51.682567549000112 ], [ -121.177536615999955, 51.680831876000148 ], [ -121.179496037999954, 51.680914692000087 ], [ -121.179857811999952, 51.677627625000092 ], [ -121.18256169299994, 51.677741851000057 ], [ -121.182749883999989, 51.676030790000048 ], [ -121.184553114999929, 51.676106933000021 ], [ -121.184576609999979, 51.675893226000078 ], [ -121.184775413999944, 51.674084833000045 ], [ -121.185976301000025, 51.674135526000036 ], [ -121.18599316699999, 51.673982062000107 ], [ -121.191771634999952, 51.67422580700002 ], [ -121.191699930999945, 51.674879023000067 ], [ -121.19151300899992, 51.676581763000129 ], [ -121.191759064999985, 51.676585553000038 ], [ -121.191748323, 51.676855162000031 ], [ -121.193482973999977, 51.676881859000012 ], [ -121.193472243999949, 51.677151469000073 ], [ -121.193905908999952, 51.677158139000078 ], [ -121.193852265999922, 51.678506186000085 ], [ -121.193418587999929, 51.678499517000105 ], [ -121.193375659999987, 51.679577954000109 ], [ -121.192941971999971, 51.679571281000094 ], [ -121.192920502, 51.680110499000094 ], [ -121.19075203499996, 51.680077111000095 ], [ -121.190762781999979, 51.679807503000042 ], [ -121.189895401999962, 51.679794136000041 ], [ -121.189949165999963, 51.678446092000108 ], [ -121.18864813499998, 51.678426032000061 ], [ -121.188658894999918, 51.67815642300009 ], [ -121.18832245899992, 51.678151233000079 ], [ -121.18814493099994, 51.679767142000102 ], [ -121.188160642999932, 51.679767384000058 ], [ -121.188096060999925, 51.681385035000055 ], [ -121.186794946999967, 51.681364953000106 ], [ -121.186805718999935, 51.681095345000102 ], [ -121.186372016999911, 51.681088648000092 ], [ -121.18639356599999, 51.680549431000038 ], [ -121.185582875999955, 51.680536910000065 ], [ -121.185271882999942, 51.683365788000081 ], [ -121.185307624999922, 51.68336729600005 ], [ -121.18491389899999, 51.686948237000102 ], [ -121.183760428999932, 51.686899550000064 ], [ -121.183707072999979, 51.687384665000046 ], [ -121.183523632999979, 51.687376921000094 ], [ -121.183418318999941, 51.688334370000042 ], [ -121.18216366599998, 51.688281397000061 ], [ -121.181987650999986, 51.689881100000036 ], [ -121.179819052999946, 51.68978950800004 ], [ -121.179430649999972, 51.693317455000063 ], [ -121.176234363, 51.693182382000089 ], [ -121.173649734999969, 51.693073090000034 ] ], [ [ -121.191694616999953, 51.678203208000042 ], [ -121.191726841, 51.677394381000049 ], [ -121.191424308999942, 51.677389722000036 ], [ -121.191378519999944, 51.677806801000031 ], [ -121.190410225999969, 51.677765978000096 ], [ -121.190393591999978, 51.678183167000086 ], [ -121.191694616999953, 51.678203208000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024967", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4386250", "BldgCostT": "3025000", "sL_LossRatio": "1", "sL_AssetLoss": "227.4", "sL_BldgLoss": "227.4", "sL_StrLoss": "227.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C63A4D4D9F415EC0B3923DDFA2E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.022656784, 51.768679387000077 ], [ -121.028446828, 51.768931371000093 ], [ -121.02841986199999, 51.769168406000098 ], [ -121.028039501999984, 51.772511478000055 ], [ -121.025010198999951, 51.772379679 ], [ -121.02413283099996, 51.772341492000102 ], [ -121.02224898599998, 51.772259473000119 ], [ -121.022656784, 51.768679387000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024968", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897084", "BldgCostT": "1308334", "sL_LossRatio": "1", "sL_AssetLoss": "96.3", "sL_BldgLoss": "96.3", "sL_StrLoss": "96.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F3CB26E1FE3B5EC07311BE7B70E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.93407249699996, 51.768353322000088 ], [ -120.941057800999943, 51.768599006000038 ], [ -120.940941606999971, 51.769602628 ], [ -120.939753104999937, 51.769550016000053 ], [ -120.939726465999925, 51.769780057000069 ], [ -120.933936825, 51.769523586000055 ], [ -120.93407249699996, 51.768353322000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024970", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16312501", "BldgCostT": "11250001", "sL_LossRatio": "1", "sL_AssetLoss": "1049.8", "sL_BldgLoss": "1049.8", "sL_StrLoss": "1049.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000028CED57F6B3F5EC062221075C0E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.986984406999923, 51.774210016000019 ], [ -120.987052896999927, 51.773613051000041 ], [ -120.986541805999977, 51.773604295000062 ], [ -120.986553807999911, 51.773334722000058 ], [ -120.986119273999932, 51.773327277000092 ], [ -120.986160905999967, 51.772392226000051 ], [ -120.984139434999975, 51.772303542000053 ], [ -120.984287674999976, 51.771012114 ], [ -120.981297527, 51.770880867000102 ], [ -120.981367705999958, 51.770269826000082 ], [ -120.979210996999939, 51.770175112000068 ], [ -120.97922519399999, 51.77005155700008 ], [ -120.978595484, 51.770023895000179 ], [ -120.97860402399999, 51.769949576000066 ], [ -120.977916667000017, 51.769919377000107 ], [ -120.977935488999933, 51.769755611000136 ], [ -120.977272054999915, 51.769726460000115 ], [ -120.977281930999979, 51.769640538000068 ], [ -120.976535635999966, 51.769607740000033 ], [ -120.976568097, 51.769325369000036 ], [ -120.983391583999918, 51.769318250000055 ], [ -120.985595050999962, 51.76931585300013 ], [ -120.987275640999925, 51.76923960199999 ], [ -120.993538505999936, 51.768955178000098 ], [ -120.993530469999925, 51.769025316000068 ], [ -120.994812918, 51.769081482000075 ], [ -120.994781834999955, 51.769352856000118 ], [ -120.995617809999956, 51.769389460000127 ], [ -120.995508645999976, 51.770342665000108 ], [ -121.000402708999985, 51.770556832000082 ], [ -121.000261609999953, 51.771790030000041 ], [ -120.99999307299997, 51.774136834000068 ], [ -120.994202504999947, 51.773883412000046 ], [ -120.994311705999934, 51.772930212000063 ], [ -120.992957515999976, 51.772870903000083 ], [ -120.992774977999957, 51.774463803000096 ], [ -120.98938386499999, 51.774315214000048 ], [ -120.986984406999923, 51.774210016000019 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024973", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7588333", "BldgCostT": "5233333", "sL_LossRatio": "1", "sL_AssetLoss": "485", "sL_BldgLoss": "485", "sL_StrLoss": "485", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000682AFECE3A3C5EC0F8E2AC04E2E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.937801093999965, 51.774377780000066 ], [ -120.937825674999971, 51.773838653000027 ], [ -120.936522097999941, 51.773815770000084 ], [ -120.936534396999988, 51.773546207000052 ], [ -120.93609987399999, 51.773538575000082 ], [ -120.936112175999938, 51.773269011000117 ], [ -120.933939577, 51.773230835000042 ], [ -120.93396122499999, 51.772756895000086 ], [ -120.933976517999923, 51.772422143000057 ], [ -120.9344110299999, 51.772429782000088 ], [ -120.934423340999956, 51.772160218000074 ], [ -120.935292359999949, 51.772175490000073 ], [ -120.935304663999915, 51.771905927000056 ], [ -120.935739171999955, 51.771913559000041 ], [ -120.935751474999918, 51.77164399500009 ], [ -120.937489493, 51.771674512000061 ], [ -120.937501785, 51.77140494800009 ], [ -120.938370792999962, 51.771420196000093 ], [ -120.938383078999919, 51.771150633000062 ], [ -120.939711746999976, 51.771173934000053 ], [ -120.939773493999965, 51.770640743000087 ], [ -120.944918617000013, 51.770868408000091 ], [ -120.94493735099999, 51.770456094000046 ], [ -120.947109831999981, 51.770494067000108 ], [ -120.947073125999978, 51.771302765000016 ], [ -120.946638622999927, 51.771295173000041 ], [ -120.946635815999969, 51.771356998000044 ], [ -120.946626386, 51.771564739000048 ], [ -120.946191876999976, 51.771557146000092 ], [ -120.94613067399996, 51.772904975000074 ], [ -120.945696154999936, 51.772897379000035 ], [ -120.945683910999932, 51.773166946000039 ], [ -120.945301493, 51.773160260000068 ], [ -120.945149191999946, 51.774476721000021 ], [ -120.939981395999965, 51.774248083000046 ], [ -120.939973751999972, 51.774415887000025 ], [ -120.937801093999965, 51.774377780000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024974", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "11974584", "BldgCostT": "8258334", "sL_LossRatio": "1", "sL_AssetLoss": "748.7", "sL_BldgLoss": "748.7", "sL_StrLoss": "748.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000678CE633263F5EC0EBE0C3999DE34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.989012130999967, 51.774972038000087 ], [ -120.992526932999965, 51.775126052000083 ], [ -120.992116607999947, 51.778706011000097 ], [ -120.990593871, 51.778639299000091 ], [ -120.9904264199999, 51.780099648000032 ], [ -120.989581990999923, 51.780062644000054 ], [ -120.989562490999958, 51.780232669000029 ], [ -120.98883057099998, 51.780200590000064 ], [ -120.988804670999983, 51.78042638600003 ], [ -120.986829566999944, 51.780339798000064 ], [ -120.98666985700001, 51.781731534000095 ], [ -120.980878359999934, 51.78147744000011 ], [ -120.981251992999944, 51.778225166000119 ], [ -120.981289629999964, 51.777897531000107 ], [ -120.983264612999989, 51.777984214000085 ], [ -120.983424417, 51.77659247900008 ], [ -120.983965531999971, 51.776616223000048 ], [ -120.984085149999942, 51.775574293000076 ], [ -120.986642848999949, 51.775686488000119 ], [ -120.986736276999949, 51.774872253000048 ], [ -120.989012130999967, 51.774972038000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024975", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.3", "sL_BldgLoss": "46.3", "sL_StrLoss": "46.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7A4BA04103B5EC0129DA732F3E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.921642915999968, 51.771660302000079 ], [ -120.923703006999915, 51.771751812000048 ], [ -120.923287084999927, 51.775331533000042 ], [ -120.923029352999976, 51.775320086000079 ], [ -120.92220795799993, 51.77315190200008 ], [ -120.921642915999968, 51.771660302000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024978", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3153750", "BldgCostT": "2175000", "sL_LossRatio": "1", "sL_AssetLoss": "174.1", "sL_BldgLoss": "174.1", "sL_StrLoss": "174.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7666603BC395EC0D32A9F8A40ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.900735759999947, 51.856862855000095 ], [ -120.900898904999934, 51.855467712000085 ], [ -120.90011381, 51.855453695000115 ], [ -120.900126360999977, 51.855184141000066 ], [ -120.899691062999949, 51.855176368000087 ], [ -120.899699436999967, 51.854996567000079 ], [ -120.899703618999965, 51.854906813000056 ], [ -120.898833025999963, 51.854891261000077 ], [ -120.898852330999972, 51.854476934000068 ], [ -120.897677170999941, 51.854424585000075 ], [ -120.896922390999961, 51.854390955000078 ], [ -120.89696362899997, 51.854038561000067 ], [ -120.896997195999944, 51.853751710000012 ], [ -120.896921935999941, 51.853748356000018 ], [ -120.897340763999978, 51.850168985000018 ], [ -120.897648048999983, 51.850182677000099 ], [ -120.897756282, 51.849257542000025 ], [ -120.897798122, 51.848899894000084 ], [ -120.898208658, 51.848918186000056 ], [ -120.901431787999954, 51.849061741000043 ], [ -120.903598068999941, 51.849158173000035 ], [ -120.903590875999981, 51.849219735000062 ], [ -120.902634615999929, 51.849202594000076 ], [ -120.902263191999964, 51.849349314000072 ], [ -120.901595509999964, 51.850317683000135 ], [ -120.90127852199997, 51.850545605000057 ], [ -120.901221019999937, 51.850858903000095 ], [ -120.900818581999914, 51.851095296000061 ], [ -120.900506981999982, 51.851844499000059 ], [ -120.90042930599995, 51.853821289000045 ], [ -120.900906081999949, 51.854190192000083 ], [ -120.901588706999988, 51.854516294000071 ], [ -120.902090687999987, 51.854643014000061 ], [ -120.904475811999959, 51.854900805000064 ], [ -120.904628899999949, 51.855020509000035 ], [ -120.904206775999953, 51.855966096000046 ], [ -120.90447740599997, 51.855763885000037 ], [ -120.904851586999925, 51.85523979000002 ], [ -120.904963003999939, 51.854711395000081 ], [ -120.9048271, 51.854493493000035 ], [ -120.904084304999984, 51.85425569900012 ], [ -120.904045804999896, 51.854128890000027 ], [ -120.90491350399995, 51.853604806000092 ], [ -120.90532541499999, 51.853476607000069 ], [ -120.906876420999978, 51.853540698000138 ], [ -120.907285306999981, 51.853476585000074 ], [ -120.907906810999947, 51.852473216000099 ], [ -120.908710312999986, 51.852508940000099 ], [ -120.908700090999901, 51.852596497000036 ], [ -120.908292393999886, 51.856088344000099 ], [ -120.907166595999968, 51.856038288000065 ], [ -120.907050398999942, 51.857033172000037 ], [ -120.906549639, 51.857010904000084 ], [ -120.906536781999961, 51.85712098400009 ], [ -120.904081395999967, 51.857011762000091 ], [ -120.900735759999947, 51.856862855000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024979", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "71.3", "sL_BldgLoss": "71.3", "sL_StrLoss": "71.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003C5E710639385EC042AC067A0BE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.876662716999974, 51.788008602000076 ], [ -120.876923899999966, 51.787357705000034 ], [ -120.876918171999961, 51.787199569000059 ], [ -120.877185055999973, 51.787211527000082 ], [ -120.877192291, 51.787057461000131 ], [ -120.878496199999958, 51.787081006000101 ], [ -120.878487337999942, 51.787269866000074 ], [ -120.880448854999912, 51.787357708000108 ], [ -120.880365579999975, 51.788068144000086 ], [ -120.880599200999924, 51.788078605000059 ], [ -120.880179597999984, 51.791658115000125 ], [ -120.876388682999902, 51.791488324000049 ], [ -120.876428608999944, 51.791439510000075 ], [ -120.876445383999965, 51.789857201000103 ], [ -120.87667081499994, 51.789079588000043 ], [ -120.876662716999974, 51.788008602000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024980", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "70", "sL_BldgLoss": "70", "sL_StrLoss": "70", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F2BE22A6E1425EC04771338147E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.042329152999969, 51.789329085000098 ], [ -121.048122042999964, 51.789580070000035 ], [ -121.047716133999984, 51.793160179000061 ], [ -121.041922771999978, 51.792909175 ], [ -121.042329152999969, 51.789329085000098 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024981", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "29.4", "sL_BldgLoss": "29.4", "sL_StrLoss": "29.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000483F33EBF9365EC08A592F86F2E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.856687341999944, 51.790889789000111 ], [ -120.857467342999897, 51.79092487000004 ], [ -120.85783379899999, 51.791533504000022 ], [ -120.857757796999977, 51.792207106000077 ], [ -120.858401601999915, 51.792687113000092 ], [ -120.858849292999963, 51.793342190000033 ], [ -120.86001970099997, 51.794343504000025 ], [ -120.860551102999949, 51.795055610000055 ], [ -120.861582886999898, 51.795937094000095 ], [ -120.862320389999951, 51.79631881300002 ], [ -120.862258894999954, 51.796696209000054 ], [ -120.861756488999916, 51.79687569200005 ], [ -120.861620317999979, 51.79763769300007 ], [ -120.861726300999976, 51.79784560100012 ], [ -120.861426412999961, 51.79803789200011 ], [ -120.861326802999955, 51.798288512000106 ], [ -120.861498511999955, 51.798939387000104 ], [ -120.861522824999952, 51.79969420200009 ], [ -120.861127408999963, 51.800658407000078 ], [ -120.861041116999971, 51.801259405000046 ], [ -120.860905621999962, 51.801391897 ], [ -120.858761693999909, 51.801641114000084 ], [ -120.858388997999924, 51.801823396000081 ], [ -120.85796268799993, 51.802264893000071 ], [ -120.857604998999989, 51.802474295000138 ], [ -120.857190716999924, 51.802611004 ], [ -120.856636208999973, 51.8026807950001 ], [ -120.855432507999964, 51.803307393000075 ], [ -120.855049799, 51.803692622000028 ], [ -120.854536829999972, 51.803669547000048 ], [ -120.854777299999938, 51.803461497000022 ], [ -120.855935572999954, 51.80277589800005 ], [ -120.856251684999975, 51.802626395000111 ], [ -120.85667608499989, 51.802484507000017 ], [ -120.857461211999976, 51.802309300000097 ], [ -120.85769991, 51.802198599000057 ], [ -120.857875404999959, 51.802043616000113 ], [ -120.858182788999969, 51.801622002000087 ], [ -120.85837188499994, 51.801462306000069 ], [ -120.858587309999962, 51.801353762000097 ], [ -120.860404207999963, 51.800438195000012 ], [ -120.860806610999973, 51.800136904000048 ], [ -120.86090610699992, 51.800032597000047 ], [ -120.86108888699999, 51.799841015 ], [ -120.861242224999913, 51.799528598000094 ], [ -120.861279582999956, 51.799273015000054 ], [ -120.86092899399992, 51.798268596000106 ], [ -120.860928304999945, 51.798002310000086 ], [ -120.861071278999987, 51.79759130900004 ], [ -120.861080208999951, 51.797544746000064 ], [ -120.861135388999955, 51.797256797000081 ], [ -120.86142050199993, 51.796837798000119 ], [ -120.861637103999968, 51.796643294000049 ], [ -120.861696288999966, 51.796485901000025 ], [ -120.861639689999976, 51.796348397000102 ], [ -120.86124221099999, 51.796064289000086 ], [ -120.860163309999933, 51.794878700000041 ], [ -120.859956223, 51.79472100300007 ], [ -120.859622303999956, 51.794589008000052 ], [ -120.858698888999967, 51.794406754000065 ], [ -120.858117112999935, 51.794291899000015 ], [ -120.857841193999917, 51.794162606000022 ], [ -120.857623987999972, 51.794004403000059 ], [ -120.856936094999952, 51.793256514000078 ], [ -120.856822269999924, 51.793023792000042 ], [ -120.856819440999971, 51.792866484000079 ], [ -120.856817629999938, 51.792767616000091 ], [ -120.856814474999979, 51.79259610900008 ], [ -120.856797290999936, 51.791592301000051 ], [ -120.856687341999944, 51.790889789000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024983", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "46.1", "sL_BldgLoss": "46.1", "sL_StrLoss": "46.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002873A045FE435EC0D1D1476CB9E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.059718628999988, 51.787534364000095 ], [ -121.059975525999931, 51.785262789000079 ], [ -121.060253709999984, 51.785661004000083 ], [ -121.060455787999942, 51.785803800000082 ], [ -121.060701200999929, 51.785886304000073 ], [ -121.062783885999977, 51.786269507000036 ], [ -121.063528068999972, 51.786341199000077 ], [ -121.063910498999931, 51.786409011000046 ], [ -121.063984713999957, 51.786430959000057 ], [ -121.064276958, 51.78651741500007 ], [ -121.06462768599998, 51.786621181000058 ], [ -121.064775105999956, 51.786664807000136 ], [ -121.06518980599995, 51.786729492000084 ], [ -121.065538289999935, 51.786735611000047 ], [ -121.065631030999953, 51.786725274000041 ], [ -121.065511380999951, 51.78778446900003 ], [ -121.059718628999988, 51.787534364000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024984", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "177.5", "sL_BldgLoss": "177.5", "sL_StrLoss": "177.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D2B758931F395EC0E1C1C372D3E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.886561108999928, 51.789489672000066 ], [ -120.886980170999934, 51.785910131000037 ], [ -120.888519451999954, 51.785978955000076 ], [ -120.888587030999972, 51.785401467000099 ], [ -120.894378506999956, 51.785660227000079 ], [ -120.894329671999941, 51.786078010000082 ], [ -120.895071538999943, 51.78611113500007 ], [ -120.895075305999924, 51.7860302 ], [ -120.895509938999908, 51.786037983000035 ], [ -120.895522487, 51.78576842700005 ], [ -120.897695636, 51.785807320000046 ], [ -120.897686968999921, 51.785993638000015 ], [ -120.897676098999909, 51.786227392000079 ], [ -120.898512593999939, 51.786264717000059 ], [ -120.898249747999955, 51.788515041000082 ], [ -120.898439580999963, 51.788518435000114 ], [ -120.898401982999957, 51.789327106000087 ], [ -120.898155403999979, 51.78932269700001 ], [ -120.898094472999958, 51.789844299 ], [ -120.892371791999963, 51.789588826000099 ], [ -120.892353113999931, 51.789748533000079 ], [ -120.888488571999972, 51.789575849000094 ], [ -120.886561108999928, 51.789489672000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024985", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000462A4A1132365EC078B450B6F1E94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.84472015799993, 51.82608331000008 ], [ -120.850516762999916, 51.82634427800005 ], [ -120.850409253999885, 51.827255255000047 ], [ -120.850039818999946, 51.827318196000114 ], [ -120.848543895999939, 51.827956196000116 ], [ -120.847871117999944, 51.828339301000057 ], [ -120.847597793999952, 51.828604207000048 ], [ -120.847381214999984, 51.828879091000076 ], [ -120.847112290999931, 51.829665303000048 ], [ -120.847008539999933, 51.829784666000137 ], [ -120.84429725199999, 51.829662565000078 ], [ -120.84472015799993, 51.82608331000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024986", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "34.1", "sL_BldgLoss": "34.1", "sL_StrLoss": "34.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AA3032D8FF355EC0F8CDD456B2EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.842631812999969, 51.831551971000124 ], [ -120.847479401999919, 51.831770294000115 ], [ -120.847471709999965, 51.832153398000081 ], [ -120.847164684999953, 51.833425190000057 ], [ -120.846746596999978, 51.833668694000032 ], [ -120.845937195999909, 51.833923704000014 ], [ -120.844583716999949, 51.834591604000053 ], [ -120.843510318999947, 51.835786502000126 ], [ -120.843311502999939, 51.836129511000095 ], [ -120.840813667999967, 51.836016961000084 ], [ -120.84122315899999, 51.832554123000072 ], [ -120.841307975999939, 51.832440942000048 ], [ -120.841989629999944, 51.832471662000081 ], [ -120.842046010999951, 51.83199475800005 ], [ -120.842576644999951, 51.832018669000078 ], [ -120.842631812999969, 51.831551971000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024989", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "68.1", "sL_BldgLoss": "68.1", "sL_StrLoss": "68.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D68506FF2E355EC02E97E887ECF04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.828303843999947, 51.880297919000022 ], [ -120.834107548999967, 51.880559705000024 ], [ -120.833683242999953, 51.884138745000044 ], [ -120.827879064999948, 51.883876939000103 ], [ -120.828303843999947, 51.880297919000022 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024991", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2489167", "BldgCostT": "1716667", "sL_LossRatio": "1", "sL_AssetLoss": "117.9", "sL_BldgLoss": "117.9", "sL_StrLoss": "117.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A5B82E25A0395EC05FEE729597E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.894693687999947, 51.76914350400007 ], [ -120.893914706, 51.769066590000087 ], [ -120.892495986999961, 51.76903099700008 ], [ -120.891001312999933, 51.769103595000061 ], [ -120.89058541799993, 51.769006794000077 ], [ -120.89024928299996, 51.768757491000017 ], [ -120.889183098999965, 51.768289001000092 ], [ -120.888605120999969, 51.768260506000033 ], [ -120.887089213999928, 51.768412897000125 ], [ -120.88708813199996, 51.768412877000067 ], [ -120.887116540999969, 51.768170079000051 ], [ -120.887594277999938, 51.768144095000096 ], [ -120.888127726999954, 51.768024897000053 ], [ -120.888607199999925, 51.767966016000109 ], [ -120.888750598999977, 51.767948404000066 ], [ -120.889409611999938, 51.767973394000066 ], [ -120.889764378999956, 51.768047154000037 ], [ -120.890010412, 51.768098299000037 ], [ -120.890699841999947, 51.76835882600006 ], [ -120.890822651999926, 51.768405234000099 ], [ -120.890956178999943, 51.768455714000048 ], [ -120.891140403999955, 51.768525305000018 ], [ -120.891487320999943, 51.768656399000115 ], [ -120.891778362999986, 51.768714925000083 ], [ -120.892252001999964, 51.768810196000089 ], [ -120.892333809999982, 51.768816192000052 ], [ -120.89310167799999, 51.768872492000106 ], [ -120.893924095999964, 51.768819291000106 ], [ -120.895617485999935, 51.768571102000116 ], [ -120.89775994199999, 51.768414635000056 ], [ -120.899151651999958, 51.768312969000128 ], [ -120.899439981999933, 51.768291897000069 ], [ -120.899545701999941, 51.768281444000074 ], [ -120.901077659999956, 51.768129799000072 ], [ -120.901240975999926, 51.768113630000073 ], [ -120.901238337999956, 51.768136248000118 ], [ -120.901748385999952, 51.768159001000079 ], [ -120.901669753999968, 51.768832949000043 ], [ -120.903187982999953, 51.768900664000064 ], [ -120.903153996, 51.769192039000053 ], [ -120.903168004999927, 51.769192664000059 ], [ -120.903154823999927, 51.769305670000023 ], [ -120.903627597999957, 51.769326753000065 ], [ -120.90361064899993, 51.769472071000074 ], [ -120.904932761999987, 51.769531017000077 ], [ -120.904926069999988, 51.769588400000032 ], [ -120.905697738999933, 51.769622796000071 ], [ -120.905280364999939, 51.773202459000046 ], [ -120.902204682, 51.773065330000101 ], [ -120.902136110999948, 51.77279228700008 ], [ -120.901590288999969, 51.772027496000085 ], [ -120.89952131299999, 51.771657185000031 ], [ -120.899164206999984, 51.771524785000096 ], [ -120.898636387999943, 51.771047708000062 ], [ -120.897830216, 51.770628902000084 ], [ -120.8970321199999, 51.770020799000058 ], [ -120.895499003999987, 51.769318708000064 ], [ -120.894693687999947, 51.76914350400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024992", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "86.6", "sL_BldgLoss": "86.6", "sL_StrLoss": "86.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004936706A14305EC047318A2FA4EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.750590134999953, 51.851346158000055 ], [ -120.750613754999918, 51.851149942000056 ], [ -120.750350601, 51.851137878 ], [ -120.74926308299996, 51.849352104000047 ], [ -120.748354400000011, 51.848363689000095 ], [ -120.747770084999942, 51.848128707000072 ], [ -120.746620182999948, 51.847890895000056 ], [ -120.745933577999935, 51.847667510000058 ], [ -120.746082543999989, 51.846431036000062 ], [ -120.746615464999962, 51.846455490000082 ], [ -120.746970886999989, 51.84659700200006 ], [ -120.747405292999957, 51.846681708000062 ], [ -120.747843718999917, 51.846708999000064 ], [ -120.748131786999977, 51.846701499000069 ], [ -120.748423273999919, 51.846665395000038 ], [ -120.748918834, 51.84656115600005 ], [ -120.75188125299999, 51.846696986000062 ], [ -120.751801917999984, 51.847356237 ], [ -120.752321984999966, 51.847380075000046 ], [ -120.75229211599995, 51.84762829400011 ], [ -120.75259919299999, 51.847642367000084 ], [ -120.752564496999966, 51.84793071600005 ], [ -120.756808767999956, 51.848125154000051 ], [ -120.756654530999967, 51.849407954000078 ], [ -120.756263799999957, 51.849333604000108 ], [ -120.755177805999921, 51.848980411000056 ], [ -120.754569810999939, 51.848941889000074 ], [ -120.754142108999986, 51.849068695000071 ], [ -120.753594487999962, 51.849552891000052 ], [ -120.753759702999929, 51.849762302000023 ], [ -120.754279894999939, 51.849817796000075 ], [ -120.754363897999966, 51.85016110600008 ], [ -120.753352488999894, 51.851489913000094 ], [ -120.753172448, 51.851557152000048 ], [ -120.750744708999946, 51.851445884000022 ], [ -120.750590134999953, 51.851346158000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024993", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2109750", "BldgCostT": "1455000", "sL_LossRatio": "1", "sL_AssetLoss": "135", "sL_BldgLoss": "135", "sL_StrLoss": "135", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000330F680268405EC0CF9E0DF176EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.003995979999942, 51.84995216200015 ], [ -121.004087845999919, 51.84915014900006 ], [ -121.003661625999911, 51.849131554000088 ], [ -121.003763083999957, 51.848245839000114 ], [ -121.002360143999923, 51.848184621000073 ], [ -121.002476978999965, 51.847164915000079 ], [ -121.00277028, 51.84460485200006 ], [ -121.008570270999954, 51.84485782399999 ], [ -121.008468915999956, 51.84574354600003 ], [ -121.009871789, 51.845804690000094 ], [ -121.009844943999951, 51.846039336000068 ], [ -121.009780034999949, 51.846606709000078 ], [ -121.010206232999963, 51.846625282000041 ], [ -121.009796686999948, 51.85020507100009 ], [ -121.003995979999942, 51.84995216200015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024994", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B806532035325EC067EA7DFC08ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.780173940999973, 51.851818113000078 ], [ -120.780341389999961, 51.850419195000022 ], [ -120.780639916999945, 51.850458695000043 ], [ -120.780984010999958, 51.850592197000076 ], [ -120.781134984999966, 51.850686445000044 ], [ -120.781302775999904, 51.850791195000049 ], [ -120.781745899999976, 51.851229701000079 ], [ -120.782029891999969, 51.851354197000049 ], [ -120.782406798999901, 51.851408212000088 ], [ -120.784254623999942, 51.851438509000104 ], [ -120.784816889999917, 51.85140560000012 ], [ -120.786093186999963, 51.851101447000048 ], [ -120.786147886999984, 51.851088409000042 ], [ -120.786565790999973, 51.851030906000148 ], [ -120.786904368999956, 51.851040004000083 ], [ -120.787372885999901, 51.851108105000094 ], [ -120.787906198999963, 51.851088714000113 ], [ -120.787691969999969, 51.852880997000099 ], [ -120.787405481999969, 51.852953898000152 ], [ -120.786448783999987, 51.852936901000135 ], [ -120.785233701999971, 51.852832896000059 ], [ -120.783547389999967, 51.852297403000065 ], [ -120.780948184999914, 51.851969796000049 ], [ -120.780272716999917, 51.851857297000038 ], [ -120.780173940999973, 51.851818113000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024995", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000057C0D2335C2F5EC0FF78D06802EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.736907019999975, 51.842328547000101 ], [ -120.737175054999952, 51.840107233000047 ], [ -120.737351064999956, 51.840203146000093 ], [ -120.737561411999963, 51.840351074000068 ], [ -120.737604481999952, 51.84036091800003 ], [ -120.737775785999972, 51.840418158000041 ], [ -120.737818873999956, 51.840427965000032 ], [ -120.737861466999945, 51.840446783000061 ], [ -120.73796257399999, 51.840457731000058 ], [ -120.738048235999941, 51.840486333000101 ], [ -120.738206868999953, 51.840507370000083 ], [ -120.738552255999963, 51.840567991000128 ], [ -120.73881197799993, 51.840599952000041 ], [ -120.738869558999937, 51.84061005500007 ], [ -120.739115802999919, 51.840745692000048 ], [ -120.739122632999937, 51.840754480000058 ], [ -120.739296306999947, 51.840977104000018 ], [ -120.739283776999955, 51.841786405000029 ], [ -120.739268493999987, 51.842775833000097 ], [ -120.739254100999958, 51.843707414000072 ], [ -120.739339602999962, 51.843917409000049 ], [ -120.739519522999984, 51.844020999000101 ], [ -120.7432598, 51.845011481000057 ], [ -120.744193969999984, 51.845173795000058 ], [ -120.744597583999948, 51.845243886000091 ], [ -120.744646686999957, 51.845260940000102 ], [ -120.74443245400002, 51.84703870900006 ], [ -120.744045710999956, 51.846842707000093 ], [ -120.74226360099999, 51.846493687000127 ], [ -120.741366524999989, 51.846116306000042 ], [ -120.739842288999967, 51.844954195000064 ], [ -120.738258785000014, 51.84439299200001 ], [ -120.738034406999944, 51.8442449080001 ], [ -120.736048518999951, 51.842453203000098 ], [ -120.735804555999934, 51.842277857000042 ], [ -120.736907019999975, 51.842328547000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024996", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009B032581DD2C5EC06BA9307474EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.700016117999908, 51.840405207000046 ], [ -120.69936739799995, 51.840319785000126 ], [ -120.698100202999981, 51.840376690000085 ], [ -120.697780883999911, 51.840422008000111 ], [ -120.698077173999977, 51.837984598000055 ], [ -120.703874469999931, 51.83825297700011 ], [ -120.703474404999952, 51.841547610000113 ], [ -120.70298518, 51.841416399000131 ], [ -120.701789418999937, 51.841195705000068 ], [ -120.700016117999908, 51.840405207000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024997", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005ADE8FBA21425EC0DEF8C1962AE94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.031632299999941, 51.820526788000123 ], [ -121.036489498999956, 51.82073755199999 ], [ -121.036345050999941, 51.820837781000073 ], [ -121.036065016999927, 51.821032106000054 ], [ -121.035522237999913, 51.821654048000063 ], [ -121.03547889299989, 51.821703700000079 ], [ -121.035010180999919, 51.821884670000038 ], [ -121.033690490999945, 51.822394206000091 ], [ -121.033114805999958, 51.822679509000082 ], [ -121.032659179999968, 51.823009593000052 ], [ -121.032380321999966, 51.823080201000067 ], [ -121.03133052699999, 51.82317765200002 ], [ -121.031632299999941, 51.820526788000123 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59024999", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "58.9", "sL_BldgLoss": "58.9", "sL_StrLoss": "58.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000359C8DF011425EC03201437F36EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.0315762339999, 51.828112 ], [ -121.032960900999925, 51.828172095000113 ], [ -121.033253583999908, 51.82853709900008 ], [ -121.033627105999969, 51.828800602000094 ], [ -121.033798495999974, 51.829086913000047 ], [ -121.033844916999954, 51.829356890000057 ], [ -121.033801606999944, 51.830301205000069 ], [ -121.03366291199994, 51.830533502000087 ], [ -121.033341178999976, 51.83078868900003 ], [ -121.033302696999939, 51.83081920300004 ], [ -121.032944504999961, 51.830983513000014 ], [ -121.032185601999942, 51.831098088000019 ], [ -121.031889238999952, 51.831231362000025 ], [ -121.03183708899995, 51.831254803000078 ], [ -121.031524901999887, 51.831592018000066 ], [ -121.031251012999959, 51.831732995000081 ], [ -121.030937514999934, 51.831845722000082 ], [ -121.031292007999951, 51.828732595000133 ], [ -121.031504527, 51.828741819000086 ], [ -121.0315762339999, 51.828112 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025001", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "87.5", "sL_BldgLoss": "87.5", "sL_StrLoss": "87.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A72CD880E73A5EC033BE925890E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.917695335999966, 51.775922735000066 ], [ -120.923352918999967, 51.776174127000068 ], [ -120.923455081999947, 51.776443774000036 ], [ -120.923325026999933, 51.777563007000019 ], [ -120.923069746999943, 51.779759731000084 ], [ -120.918893331, 51.779574186000062 ], [ -120.917278884, 51.779502420000078 ], [ -120.917695335999966, 51.775922735000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025002", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007AA7E1DF103C5EC008F9A8D87BEB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.93635678399994, 51.841517284000084 ], [ -120.936139398999913, 51.841432102000091 ], [ -120.935723706999966, 51.841438862000103 ], [ -120.935739768999966, 51.841300513000128 ], [ -120.935120274999974, 51.841273110000046 ], [ -120.935535854999955, 51.83769356100008 ], [ -120.94133453699996, 51.837949934000036 ], [ -120.94131267799996, 51.838138448000052 ], [ -120.941932129999927, 51.838165818000014 ], [ -120.941517069, 51.841745389000017 ], [ -120.93635678399994, 51.841517284000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025003", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "75", "sL_BldgLoss": "75", "sL_StrLoss": "75", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001EF0E97FF33C5EC0E09F94411CEC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.950223588000014, 51.84264218400007 ], [ -120.95517076199998, 51.842860266000137 ], [ -120.954880044999953, 51.845373845000069 ], [ -120.954756741000011, 51.846439870000076 ], [ -120.948956853999945, 51.846184177000097 ], [ -120.949081118, 51.845111088000081 ], [ -120.949106501999935, 51.844891869000065 ], [ -120.949641994999951, 51.844888593000064 ], [ -120.950556807999959, 51.844571009000063 ], [ -120.95068149, 51.844411506000064 ], [ -120.950692606999922, 51.84416938300005 ], [ -120.950437506, 51.844021287 ], [ -120.950014487999923, 51.84342030300008 ], [ -120.950225777999947, 51.84321659700003 ], [ -120.950296895999941, 51.842965989000028 ], [ -120.950223588000014, 51.84264218400007 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025004", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "83.4", "sL_BldgLoss": "83.4", "sL_StrLoss": "83.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006EF9484A7A425EC0772CF86517E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.03775618899995, 51.767651948000058 ], [ -121.037759517999973, 51.767383525000042 ], [ -121.034960591999976, 51.767322783000068 ], [ -121.034998977999948, 51.766984920000091 ], [ -121.033522792999975, 51.766920786000092 ], [ -121.033569025999952, 51.76651395500005 ], [ -121.032744956, 51.766478144000097 ], [ -121.033074499999955, 51.76631130600007 ], [ -121.033640322999972, 51.766070815000013 ], [ -121.03389069799999, 51.765964395000054 ], [ -121.034396991999955, 51.765804456000161 ], [ -121.034954311, 51.765628391000106 ], [ -121.03514484, 51.765586775000081 ], [ -121.036156504999923, 51.765365811000038 ], [ -121.037229992999968, 51.765250490000021 ], [ -121.038412590999897, 51.765211891000078 ], [ -121.040919512999935, 51.765326921000074 ], [ -121.041209500999983, 51.765340227000095 ], [ -121.041556552999907, 51.765356119000032 ], [ -121.043477099999933, 51.765444214000105 ], [ -121.04357926099999, 51.765440908000123 ], [ -121.044564604999948, 51.765409231000078 ], [ -121.044715092999979, 51.765404391000104 ], [ -121.044711848999967, 51.765511707000066 ], [ -121.044709816999969, 51.765579490000043 ], [ -121.04460588799995, 51.765726108000088 ], [ -121.044584484999973, 51.765742732 ], [ -121.04443360899991, 51.765859886000079 ], [ -121.042685086999938, 51.766656490000109 ], [ -121.042003370999964, 51.767018463000113 ], [ -121.040819413999884, 51.766967100000031 ], [ -121.040727066000017, 51.767780888000082 ], [ -121.03775618899995, 51.767651948000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025007", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000114CB9EBFA325EC0185DDE1CAEEF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.793585442999969, 51.871878056000128 ], [ -120.795829797999943, 51.871340496000059 ], [ -120.796365288999951, 51.871377507000027 ], [ -120.796867106999969, 51.871512787 ], [ -120.79794270499994, 51.871515691000084 ], [ -120.79948193099996, 51.871352832000092 ], [ -120.799210078999963, 51.873631171000063 ], [ -120.793407505999966, 51.873367619000106 ], [ -120.793585442999969, 51.871878056000128 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025008", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5050833", "BldgCostT": "3483333", "sL_LossRatio": "1", "sL_AssetLoss": "279", "sL_BldgLoss": "279", "sL_StrLoss": "279", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000036C588E967375EC0B970FF15A2EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.862080264999975, 51.863671118000092 ], [ -120.86211199, 51.86340191500009 ], [ -120.861834318999982, 51.86339686700007 ], [ -120.86185988899993, 51.862857773000016 ], [ -120.859683081999947, 51.862818176000054 ], [ -120.859721470999929, 51.862009537000084 ], [ -120.860156824999976, 51.862017459000128 ], [ -120.860169619999951, 51.861747912000055 ], [ -120.862346376999952, 51.861787499000059 ], [ -120.862357205999942, 51.861559089000124 ], [ -120.862527510999925, 51.861493492000122 ], [ -120.8625259, 51.861241384000046 ], [ -120.862234119999982, 51.860337001000026 ], [ -120.862204310999928, 51.859760195000035 ], [ -120.86244282499996, 51.859620701000047 ], [ -120.862880694999902, 51.859575106000079 ], [ -120.863325145999909, 51.859620463000056 ], [ -120.863732092999939, 51.859661990000049 ], [ -120.864359194999963, 51.859925396000044 ], [ -120.864377, 51.860169007000103 ], [ -120.864365523999965, 51.860419601000018 ], [ -120.863750697999933, 51.861416614000142 ], [ -120.863770808999973, 51.861910795000057 ], [ -120.864763199999942, 51.862423508000113 ], [ -120.866812698000032, 51.862416403000083 ], [ -120.869346085999936, 51.862255389000097 ], [ -120.870083006999934, 51.862340889000123 ], [ -120.871317302999969, 51.862686986 ], [ -120.873388907999939, 51.862769603000046 ], [ -120.874674379999973, 51.862629996000059 ], [ -120.87547880399994, 51.862212685 ], [ -120.875932807999902, 51.862112988000064 ], [ -120.876245400999935, 51.861939305000064 ], [ -120.87694619699991, 51.861897990000045 ], [ -120.877388883999942, 51.862040392000026 ], [ -120.877366179999953, 51.862202800000105 ], [ -120.877025100999973, 51.862699802000051 ], [ -120.876403898999982, 51.863228198000101 ], [ -120.876237836999906, 51.863808180000035 ], [ -120.873052658999939, 51.863665663000077 ], [ -120.872769348999924, 51.866074660000031 ], [ -120.868219814999975, 51.865870942000114 ], [ -120.868171359999963, 51.866282567000034 ], [ -120.863872901999969, 51.866089924000022 ], [ -120.863661959999916, 51.867880270000128 ], [ -120.85985553099999, 51.867709543000068 ], [ -120.857859764999958, 51.867619976000114 ], [ -120.857867173999949, 51.867557157000093 ], [ -120.85828192699995, 51.864040793000079 ], [ -120.861796295999937, 51.864198489000032 ], [ -120.861821534999976, 51.863666415000054 ], [ -120.862080264999975, 51.863671118000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025009", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "81.1", "sL_BldgLoss": "81.1", "sL_StrLoss": "81.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A0EFB8F223435EC0E5E2B9089DE84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.043968327999963, 51.819631775000047 ], [ -121.04430298199999, 51.816684280000104 ], [ -121.050099506999942, 51.816935158000078 ], [ -121.05004849099997, 51.817385045000087 ], [ -121.050225664999971, 51.81739270800005 ], [ -121.050332832, 51.816447621000101 ], [ -121.05099957199999, 51.816476458000068 ], [ -121.051056331, 51.815975837000032 ], [ -121.052368612999913, 51.816032583000052 ], [ -121.052573869999947, 51.814221570000029 ], [ -121.054142611999907, 51.814289386000112 ], [ -121.054152806999937, 51.814325902000057 ], [ -121.054237970999949, 51.814630900000104 ], [ -121.054167009, 51.81503890400009 ], [ -121.053785753999961, 51.815780652000051 ], [ -121.053713, 51.815922208000103 ], [ -121.053715699999941, 51.816232611000018 ], [ -121.053797915999922, 51.816560904000028 ], [ -121.053760306999948, 51.816919003000116 ], [ -121.053561403999964, 51.817196390000042 ], [ -121.053443331, 51.817275357 ], [ -121.053274594999948, 51.817388210000061 ], [ -121.052863410999976, 51.817572806000086 ], [ -121.05167959, 51.817879509000093 ], [ -121.05132388599999, 51.81793425400005 ], [ -121.05050729, 51.818060004000081 ], [ -121.049932892999948, 51.818244704000094 ], [ -121.048819021, 51.818949304000078 ], [ -121.048483093999934, 51.819086795000047 ], [ -121.04819379099996, 51.819133609000069 ], [ -121.047867898999954, 51.819117710000043 ], [ -121.046736207999984, 51.818926593000093 ], [ -121.046177411999963, 51.818909599000044 ], [ -121.045287903999963, 51.819048299000031 ], [ -121.044728987999946, 51.819199494000081 ], [ -121.044014419999925, 51.819618293000111 ], [ -121.043968327999963, 51.819631775000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025010", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.7", "sL_BldgLoss": "39.7", "sL_StrLoss": "39.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002E435696AC425EC0C873A69E3FE44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.040199748999967, 51.781154921000038 ], [ -121.043352977999959, 51.781291660000065 ], [ -121.043383493999954, 51.78141393700006 ], [ -121.042757724999916, 51.783126817000102 ], [ -121.04310368099999, 51.784074295000032 ], [ -121.044444481999946, 51.784530901000068 ], [ -121.044881810999954, 51.78461460800002 ], [ -121.045620292999956, 51.784679692000104 ], [ -121.045585537999926, 51.784986142000065 ], [ -121.039793269999905, 51.784735029000068 ], [ -121.040199748999967, 51.781154921000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025013", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000893884C78A465EC073A7CF69F1EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.099835112999955, 51.875552217000056 ], [ -121.10019566599999, 51.872344540000036 ], [ -121.101276397999982, 51.872777801000069 ], [ -121.101791996999964, 51.87312001100004 ], [ -121.102303175999907, 51.873564396000035 ], [ -121.102705909999926, 51.873914500000119 ], [ -121.103068983999918, 51.874082906000083 ], [ -121.105383914999976, 51.874802301000038 ], [ -121.105736080999961, 51.874942474000115 ], [ -121.105639770999971, 51.875800273000046 ], [ -121.099835112999955, 51.875552217000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025015", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5976417", "BldgCostT": "4121667", "sL_LossRatio": "1", "sL_AssetLoss": "264", "sL_BldgLoss": "264", "sL_StrLoss": "264", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7B567B7122C5EC0ABF8337A3DEC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.687828557999964, 51.846269655000057 ], [ -120.687888780999955, 51.845775260000067 ], [ -120.687315951999935, 51.845748679000046 ], [ -120.687403051, 51.845033700000087 ], [ -120.68721510099999, 51.845024978000041 ], [ -120.687651021999969, 51.841446360000091 ], [ -120.687834948999978, 51.841454896000073 ], [ -120.687894339999986, 51.840967266000071 ], [ -120.688540464999974, 51.840997248000107 ], [ -120.688609240999966, 51.840432481000093 ], [ -120.690569771999918, 51.840523432000083 ], [ -120.690708072999939, 51.839387293000136 ], [ -120.690072889999939, 51.839374814000031 ], [ -120.690059090999952, 51.839644332000027 ], [ -120.68918891599999, 51.839627232000041 ], [ -120.689175110999926, 51.839896748000065 ], [ -120.68830493199998, 51.83987964100006 ], [ -120.688291120999963, 51.840149158000024 ], [ -120.686985846999946, 51.840123486000032 ], [ -120.687061023999931, 51.838657121000125 ], [ -120.688203231999978, 51.838775998000095 ], [ -120.689523206999965, 51.838779594000052 ], [ -120.69063960499993, 51.838696491000029 ], [ -120.690769724999967, 51.838665317000057 ], [ -120.691394791999983, 51.838515591000018 ], [ -120.691713993999926, 51.838407094000083 ], [ -120.691894288999933, 51.838266986000072 ], [ -120.691927915999912, 51.838216334000045 ], [ -120.691961333999984, 51.838165947000043 ], [ -120.692031567999962, 51.838060138000046 ], [ -120.692087101999931, 51.837976391000019 ], [ -120.692098559000016, 51.837949585000096 ], [ -120.69668713599998, 51.838162272000083 ], [ -120.696387558999973, 51.840626061000115 ], [ -120.695107285999939, 51.840983499000032 ], [ -120.693924208999945, 51.841436410000071 ], [ -120.693346487999989, 51.841658501000126 ], [ -120.69257788499999, 51.842219707000041 ], [ -120.69167109299994, 51.843190992000046 ], [ -120.69130798899999, 51.844046913000049 ], [ -120.691269408999943, 51.844244904000021 ], [ -120.691392909999976, 51.844345996000108 ], [ -120.692193490999955, 51.844630890000069 ], [ -120.692373782999965, 51.844787503000077 ], [ -120.693538502999957, 51.844989789000103 ], [ -120.694026595999958, 51.845674806000062 ], [ -120.694049797999924, 51.846366991000146 ], [ -120.690392114999952, 51.848301103000061 ], [ -120.689880093999946, 51.848687 ], [ -120.689315672999939, 51.849494495000101 ], [ -120.688281687999947, 51.850400304000026 ], [ -120.687259721999965, 51.85076640300008 ], [ -120.686371191999953, 51.851422890000073 ], [ -120.685107806, 51.851974095000159 ], [ -120.684741694999914, 51.852317305000078 ], [ -120.684491688999969, 51.852932599000084 ], [ -120.684186410999985, 51.853224487 ], [ -120.683483605000035, 51.853335590000079 ], [ -120.68218019699999, 51.85412039800012 ], [ -120.679328532999961, 51.854120413000075 ], [ -120.679662963999974, 51.85137969100002 ], [ -120.680676562999906, 51.851426785000072 ], [ -120.680739945999989, 51.850907215000085 ], [ -120.681483203999946, 51.85094174200006 ], [ -120.681557142999949, 51.850335534000102 ], [ -120.683602808999979, 51.850430538000069 ], [ -120.683798638999974, 51.848824283000098 ], [ -120.684905109999974, 51.848875654000025 ], [ -120.684993226999921, 51.848152710000065 ], [ -120.685705416999937, 51.848185770000029 ], [ -120.685802937999966, 51.847385527000043 ], [ -120.686720782999956, 51.847428127000043 ], [ -120.686867362000029, 51.846225051000054 ], [ -120.687828557999964, 51.846269655000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025017", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "70.8", "sL_BldgLoss": "70.8", "sL_StrLoss": "70.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000062E73B32B5365EC098B60B0F12EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.852031016999916, 51.860959028000117 ], [ -120.852101133999952, 51.86036517600008 ], [ -120.851091726999968, 51.860319803000039 ], [ -120.851304208999949, 51.858520462000094 ], [ -120.851936974999916, 51.858521195000073 ], [ -120.852767580999924, 51.858428594000024 ], [ -120.85338610299999, 51.858269107000098 ], [ -120.854374090999983, 51.858242 ], [ -120.85539850399999, 51.858692089000051 ], [ -120.85593570099999, 51.85932298700007 ], [ -120.856949484999944, 51.859700408000037 ], [ -120.857845003999984, 51.859761696000099 ], [ -120.858214701999913, 51.859643500000075 ], [ -120.858652379999981, 51.859614998000019 ], [ -120.858878502999971, 51.859735997000094 ], [ -120.85944695099991, 51.861240696000053 ], [ -120.857838322999953, 51.861168490000054 ], [ -120.857832291999927, 51.861219618000071 ], [ -120.852031016999916, 51.860959028000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025018", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "42.2", "sL_BldgLoss": "42.2", "sL_StrLoss": "42.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B92BE4DFE13A5EC0CFD9E13302E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.917913199999973, 51.771494532000119 ], [ -120.921642915999968, 51.771660302000079 ], [ -120.92220795799993, 51.77315190200008 ], [ -120.923029352999976, 51.775320086000079 ], [ -120.917496806999978, 51.775074233000083 ], [ -120.917913199999973, 51.771494532000119 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025019", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "57", "sL_BldgLoss": "57", "sL_StrLoss": "57", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A9B2921162D5EC090451EB1ABEA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.700842681999973, 51.834307564 ], [ -120.700894103999957, 51.833884255000072 ], [ -120.69983117699995, 51.833835037000057 ], [ -120.699901432, 51.8332567960001 ], [ -120.700500718999976, 51.833121445000138 ], [ -120.700915777999967, 51.833027711000049 ], [ -120.70235269899996, 51.832744156000082 ], [ -120.704036708999965, 51.832411845000095 ], [ -120.704329633999961, 51.83235403400009 ], [ -120.705605439999914, 51.832102265000032 ], [ -120.705859288999989, 51.832052149000084 ], [ -120.706244257999913, 51.831976183000045 ], [ -120.706939746, 51.831838901000083 ], [ -120.707817623, 51.831665620000123 ], [ -120.707474636999976, 51.834492784000105 ], [ -120.706654183999945, 51.834454843000053 ], [ -120.706639504999913, 51.834575803000106 ], [ -120.700842681999973, 51.834307564 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025020", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6947917", "BldgCostT": "4791667", "sL_LossRatio": "1", "sL_AssetLoss": "418", "sL_BldgLoss": "418", "sL_StrLoss": "418", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AD64AEA97F3A5EC0ED3FF87130E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.91201342, 51.78746646500008 ], [ -120.912222124999943, 51.785674786000101 ], [ -120.90859822799996, 51.785513475000066 ], [ -120.908842131999947, 51.783420927000094 ], [ -120.906183594999931, 51.783302513000059 ], [ -120.906375324999942, 51.781658281000048 ], [ -120.906600990999948, 51.779722881000048 ], [ -120.90937962799994, 51.779846642000074 ], [ -120.909539838999962, 51.778471747000054 ], [ -120.915330519999941, 51.778729450000078 ], [ -120.915313777999955, 51.778873299000047 ], [ -120.915944107999962, 51.778901332000025 ], [ -120.915927448999966, 51.779044480000088 ], [ -120.916623094999949, 51.779075415000129 ], [ -120.916574574999942, 51.779492393000048 ], [ -120.918850833999926, 51.779593586000068 ], [ -120.920410892999939, 51.77966291300001 ], [ -120.92031271, 51.780507298000082 ], [ -120.921365920999975, 51.780554089000063 ], [ -120.920949723999939, 51.784133773000065 ], [ -120.920116115999974, 51.784096738000066 ], [ -120.920017233999943, 51.784946993000041 ], [ -120.919607437999971, 51.784928786000073 ], [ -120.919541045999935, 51.785499602000101 ], [ -120.918591311999961, 51.785457399000101 ], [ -120.91857051599996, 51.78590909100005 ], [ -120.918135878000015, 51.785901392000014 ], [ -120.918111050000022, 51.786440513000095 ], [ -120.917954972999937, 51.786437748000019 ], [ -120.91780530699999, 51.787724040000114 ], [ -120.91201342, 51.78746646500008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025021", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280833", "BldgCostT": "883333", "sL_LossRatio": "1", "sL_AssetLoss": "62.6", "sL_BldgLoss": "62.6", "sL_StrLoss": "62.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095A23251464A5EC003081F4A34F54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.157835701999957, 51.913745618000107 ], [ -121.163645770999949, 51.91399073200008 ], [ -121.163248184999958, 51.917570847000043 ], [ -121.157437642999952, 51.917325712000086 ], [ -121.157835701999957, 51.913745618000107 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025022", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7DD7B131E2A5EC03356D5AA61EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.656389322999956, 51.839565748000084 ], [ -120.656391099999951, 51.839551237000066 ], [ -120.653580026999961, 51.839419971000083 ], [ -120.653595700999944, 51.839292104000101 ], [ -120.652978114999925, 51.839263255000077 ], [ -120.65298353799993, 51.839219027000084 ], [ -120.652073886999958, 51.839176531000078 ], [ -120.652177677999973, 51.838330029000069 ], [ -120.652619088999984, 51.838261790000026 ], [ -120.65496801099999, 51.838124106000109 ], [ -120.656743811999931, 51.838167413000114 ], [ -120.658730713999958, 51.838308705000024 ], [ -120.661383708999963, 51.838341600000113 ], [ -120.663351678000012, 51.838215236000039 ], [ -120.663609815000015, 51.838198661000028 ], [ -120.663434113999955, 51.83963470500003 ], [ -120.662218171999939, 51.839578010000125 ], [ -120.662186569999974, 51.83983623400011 ], [ -120.656389322999956, 51.839565748000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025023", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "76.5", "sL_BldgLoss": "76.5", "sL_StrLoss": "76.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004E3506DFAC3E5EC0030C265962EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.976607311999928, 51.844834337000066 ], [ -120.982407182, 51.845088632000049 ], [ -120.982354035999933, 51.845550648000064 ], [ -120.981995372999933, 51.848668327000013 ], [ -120.976195030999918, 51.848414012000021 ], [ -120.97652235799994, 51.845572016000048 ], [ -120.976607311999928, 51.844834337000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025026", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "40.5", "sL_BldgLoss": "40.5", "sL_StrLoss": "40.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002142F90EC0445EC06D4D04BBABE44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.073177988999987, 51.7882728270001 ], [ -121.073398086999958, 51.786321358000116 ], [ -121.07207389, 51.786264301000074 ], [ -121.072080075999978, 51.786209479000014 ], [ -121.072439110999966, 51.786205703000064 ], [ -121.072688493999976, 51.786148994000058 ], [ -121.073846015999891, 51.785627691000059 ], [ -121.075897286999989, 51.784985706000057 ], [ -121.075314702999933, 51.786320502000095 ], [ -121.074810183999929, 51.787038992000078 ], [ -121.074312000999925, 51.787585987000064 ], [ -121.073467780000016, 51.788285312000042 ], [ -121.073177988999987, 51.7882728270001 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025029", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "86.6", "sL_BldgLoss": "86.6", "sL_StrLoss": "86.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000096838F777D2E5EC0CCBA98C964EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.731754402, 51.841497605000036 ], [ -120.73084751, 51.841075982000056 ], [ -120.730073892999911, 51.840584713000048 ], [ -120.729601493999965, 51.840430897000061 ], [ -120.728852594, 51.840318391000032 ], [ -120.727777690999915, 51.840315506000096 ], [ -120.726325998999954, 51.840044909000042 ], [ -120.723340412999931, 51.83850250000004 ], [ -120.722843023999971, 51.838286004000032 ], [ -120.722179681999989, 51.838201995000048 ], [ -120.721145197999988, 51.838271807000105 ], [ -120.720567698999972, 51.838493898000117 ], [ -120.719954086999977, 51.838851412000089 ], [ -120.719366785999981, 51.839298599000138 ], [ -120.719228308999945, 51.839565535000091 ], [ -120.718311369999967, 51.839523230000111 ], [ -120.71874469, 51.835944478000037 ], [ -120.719903368999965, 51.835997934000055 ], [ -120.719915830999952, 51.835894984000085 ], [ -120.720282428999923, 51.836103928000071 ], [ -120.721250418999915, 51.836655588000021 ], [ -120.723897096999963, 51.837884186000124 ], [ -120.724893613999924, 51.838201003000016 ], [ -120.725486890999932, 51.838525201000095 ], [ -120.726531397999949, 51.838987192000062 ], [ -120.727706895999916, 51.839323318000027 ], [ -120.727828892, 51.839358208000114 ], [ -120.728485707999951, 51.839639483000028 ], [ -120.728883296999953, 51.839702801000072 ], [ -120.729236692999976, 51.839696612000076 ], [ -120.729696306, 51.839632300000069 ], [ -120.730033970999941, 51.839527194000041 ], [ -120.730609795999953, 51.83922539900005 ], [ -120.73073745, 51.839174275000076 ], [ -120.731324981999961, 51.838938893000048 ], [ -120.731718706999928, 51.838852686000074 ], [ -120.731833977999969, 51.838851161 ], [ -120.732034459999952, 51.838848449000132 ], [ -120.732112889999911, 51.838847407000067 ], [ -120.732423605999898, 51.838929195000048 ], [ -120.732808681000023, 51.839083696000053 ], [ -120.733131697999909, 51.839124594000111 ], [ -120.733661794999961, 51.83901939400009 ], [ -120.733715453999963, 51.839019023000013 ], [ -120.734001676999952, 51.839017096000056 ], [ -120.734638584999971, 51.839073191000132 ], [ -120.734344793999981, 51.841506825000089 ], [ -120.734207985999959, 51.841491890000086 ], [ -120.731754402, 51.841497605000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025030", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "46.8", "sL_BldgLoss": "46.8", "sL_StrLoss": "46.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000470336EFD1435EC07FEBF5B464E64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.057712940999934, 51.801830489000054 ], [ -121.05775255, 51.801480534000085 ], [ -121.05750835799995, 51.801469983000132 ], [ -121.057913543999973, 51.797889867000073 ], [ -121.061655534999957, 51.798051483000044 ], [ -121.061655495999958, 51.798053406000079 ], [ -121.061690771999949, 51.798323393000103 ], [ -121.061792026999939, 51.799098107000056 ], [ -121.061699205999929, 51.799999956000129 ], [ -121.06151189499991, 51.801820199000069 ], [ -121.061541362999918, 51.801995828 ], [ -121.057712940999934, 51.801830489000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025031", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1517667", "BldgCostT": "1046667", "sL_LossRatio": "1", "sL_AssetLoss": "69.5", "sL_BldgLoss": "69.5", "sL_StrLoss": "69.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000079B3C4D299375EC07C2168F523EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.871134940999951, 51.825124680000016 ], [ -120.871320886999953, 51.82513301300007 ], [ -120.871250539999934, 51.825731540000035 ], [ -120.870900166999945, 51.828712369000058 ], [ -120.870179566999965, 51.828680073000079 ], [ -120.869975930999971, 51.830412087000084 ], [ -120.869881863000032, 51.830407871000062 ], [ -120.869682721999965, 51.832101491000046 ], [ -120.869537844999911, 51.832094997000105 ], [ -120.869451956999953, 51.832825395000029 ], [ -120.869371527999959, 51.832821790000132 ], [ -120.869320476999974, 51.833255897000136 ], [ -120.867805715999936, 51.833187991000052 ], [ -120.86723340099995, 51.833162329000054 ], [ -120.866503881999904, 51.831494002000113 ], [ -120.866525497999987, 51.831016795000025 ], [ -120.866789817999958, 51.830672206000024 ], [ -120.866887798999954, 51.830115287000062 ], [ -120.866689703999953, 51.829697991000053 ], [ -120.866782390000012, 51.828333608 ], [ -120.866900412999911, 51.828011800000048 ], [ -120.867320498999916, 51.827731213000071 ], [ -120.867583392999947, 51.827368010000093 ], [ -120.86765059199999, 51.826883798000075 ], [ -120.867875181999949, 51.826402404000063 ], [ -120.868353080999967, 51.826158896000074 ], [ -120.868496616999948, 51.825882602000036 ], [ -120.869113413999941, 51.825713102000059 ], [ -120.869945717999911, 51.825620499000102 ], [ -120.870993309999903, 51.825225992000128 ], [ -120.871134940999951, 51.825124680000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025032", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.4", "sL_BldgLoss": "48.4", "sL_StrLoss": "48.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008AD2B5611A445EC06821E09462E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.063089859999977, 51.790696376000035 ], [ -121.066858301999943, 51.790858990000082 ], [ -121.066208404999912, 51.791252480000026 ], [ -121.06591992599999, 51.791496174000031 ], [ -121.065796269999979, 51.791600676000023 ], [ -121.065243504999913, 51.792067623000037 ], [ -121.064562397999936, 51.7926429890001 ], [ -121.064033714999965, 51.793200297000077 ], [ -121.063916745999933, 51.793414935000051 ], [ -121.063429783999965, 51.794308676000064 ], [ -121.062685166000023, 51.794276534000055 ], [ -121.063089859999977, 51.790696376000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025034", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1921250", "BldgCostT": "1325000", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B292C117C74C5EC0E72EB232D4FE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.19620531299999, 51.992717251000045 ], [ -121.196515369999986, 51.98991115600009 ], [ -121.196727091999918, 51.989920006000062 ], [ -121.196857627999975, 51.988738463000061 ], [ -121.200131646999964, 51.988875262000128 ], [ -121.20267792099996, 51.988981588000058 ], [ -121.202523484999972, 51.990381150000111 ], [ -121.203223601999937, 51.990410375000138 ], [ -121.202991017, 51.992518288000099 ], [ -121.202884199999971, 51.992539044000146 ], [ -121.20265874899998, 51.992582854000091 ], [ -121.201886441999974, 51.992732878 ], [ -121.201206925999927, 51.992746021000059 ], [ -121.19620531299999, 51.992717251000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025036", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2537500", "BldgCostT": "1750000", "sL_LossRatio": "1", "sL_AssetLoss": "117.3", "sL_BldgLoss": "117.3", "sL_StrLoss": "117.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A0A2B57F02A5EC0EBC870C057ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.66438334499999, 51.857501238000111 ], [ -120.664821260999958, 51.853922748000052 ], [ -120.665683042, 51.853962898000105 ], [ -120.665785566999929, 51.853124870000094 ], [ -120.668549247999948, 51.853253585000061 ], [ -120.668624171999951, 51.852640835000088 ], [ -120.672074771999988, 51.852801448000037 ], [ -120.672147943999974, 51.852202616000035 ], [ -120.67794696699994, 51.852472303000077 ], [ -120.677608599999971, 51.855244302000088 ], [ -120.677272508999962, 51.855245501000098 ], [ -120.676329889999977, 51.85466009200011 ], [ -120.676098599999975, 51.854611687000101 ], [ -120.675461198999969, 51.854580403000128 ], [ -120.675220606999986, 51.854764093 ], [ -120.674221514999886, 51.855266889000113 ], [ -120.673632090999959, 51.855443498000056 ], [ -120.672913287999933, 51.855546002000061 ], [ -120.671504311999939, 51.8555545030001 ], [ -120.671372917999946, 51.855318100000083 ], [ -120.67016759199997, 51.855006196000041 ], [ -120.668733307999929, 51.855238388000018 ], [ -120.668186002999974, 51.85542638600009 ], [ -120.666723583999953, 51.856736595 ], [ -120.665469722999973, 51.857116904000108 ], [ -120.664616982999974, 51.857512124000046 ], [ -120.66438334499999, 51.857501238000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025037", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "140.1", "sL_BldgLoss": "140.1", "sL_StrLoss": "140.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C1DA83D664375EC0D072EA14F5EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.867160443, 51.836797211000039 ], [ -120.86869262099999, 51.836865900000134 ], [ -120.86827157399992, 51.84044520900008 ], [ -120.867850845999953, 51.840426350000058 ], [ -120.867438651999933, 51.84392952300005 ], [ -120.867025249999969, 51.84391099 ], [ -120.86666970099995, 51.846932037000087 ], [ -120.866214070999959, 51.846911608000106 ], [ -120.86611392899998, 51.847762348000053 ], [ -120.866093545999931, 51.847761434000084 ], [ -120.866006269999957, 51.848502849000063 ], [ -120.865784542999933, 51.848492907000065 ], [ -120.865660819000013, 51.849543855000121 ], [ -120.86552891599996, 51.849537941000072 ], [ -120.865413367999963, 51.850519359 ], [ -120.864312296999984, 51.850469982000021 ], [ -120.863762858999962, 51.850445340000107 ], [ -120.863069100999894, 51.850414221000044 ], [ -120.863053291999904, 51.850396116000056 ], [ -120.862747519999971, 51.848870703000031 ], [ -120.862938497999963, 51.848541690000054 ], [ -120.863133614999981, 51.845946803000047 ], [ -120.863672678999976, 51.845317297000037 ], [ -120.864107800999975, 51.844400088000057 ], [ -120.863664392999951, 51.843024414000055 ], [ -120.863411898999956, 51.842822110000128 ], [ -120.86316131599996, 51.841998906000107 ], [ -120.863157702999914, 51.841442086000043 ], [ -120.863570693999961, 51.840702888000067 ], [ -120.863827587999936, 51.840500693000095 ], [ -120.864341322999934, 51.839754404000111 ], [ -120.865052106999883, 51.839156202000041 ], [ -120.865161897999883, 51.838690486000118 ], [ -120.865819398999975, 51.837992608000022 ], [ -120.866152095999936, 51.836751994000089 ], [ -120.866831141999938, 51.836782445000054 ], [ -120.867160443, 51.836797211000039 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025038", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "91.5", "sL_BldgLoss": "91.5", "sL_StrLoss": "91.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000048B389FE96485EC06AA28D2BC7F24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.13161088, 51.898721841000075 ], [ -121.131684427999986, 51.898063644000075 ], [ -121.130619291999963, 51.898018416000092 ], [ -121.130916441999929, 51.895359483000092 ], [ -121.131019375999969, 51.894438353000105 ], [ -121.136826721999952, 51.894684828000031 ], [ -121.13675325899996, 51.895343031000039 ], [ -121.137818334999977, 51.895388203000095 ], [ -121.137658727999906, 51.896818454 ], [ -121.137645006999946, 51.896816701000056 ], [ -121.137470317999941, 51.8968323960001 ], [ -121.137629669999939, 51.897078829000087 ], [ -121.137418799, 51.89896828600012 ], [ -121.135386570999913, 51.898882087000111 ], [ -121.13161088, 51.898721841000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025040", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E31F32BC442B5EC02C465D6B6FEB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.673151921999974, 51.840048702 ], [ -120.673391186999979, 51.838089545000045 ], [ -120.67357559499996, 51.838106096000068 ], [ -120.674211881999938, 51.83820679500004 ], [ -120.674995109999941, 51.83838178600007 ], [ -120.675501900999976, 51.838511824000086 ], [ -120.676370199999965, 51.838734608000053 ], [ -120.676762997999987, 51.838776204000062 ], [ -120.677178488999957, 51.83876410900006 ], [ -120.67772219199999, 51.838703892000126 ], [ -120.679173260999974, 51.838482830000054 ], [ -120.678949336999906, 51.840318341000106 ], [ -120.673151921999974, 51.840048702 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025043", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "35.4", "sL_BldgLoss": "35.4", "sL_StrLoss": "35.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004FF1136289345EC029622A602FEF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.819421610999939, 51.867770005000125 ], [ -120.82089660299998, 51.867617593000077 ], [ -120.821746003999962, 51.867750108000024 ], [ -120.822501608999971, 51.867764290000068 ], [ -120.82311667599997, 51.867640394000048 ], [ -120.824006308999955, 51.867278611000067 ], [ -120.82415961199996, 51.867194461000068 ], [ -120.823866518999949, 51.869662800000114 ], [ -120.82301049099999, 51.8696241190001 ], [ -120.823005680999984, 51.869664620000073 ], [ -120.817203490999987, 51.869402271000119 ], [ -120.81736747299999, 51.868023079000075 ], [ -120.818686907999933, 51.867926689000051 ], [ -120.819421610999939, 51.867770005000125 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025044", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37", "sL_BldgLoss": "37", "sL_StrLoss": "37", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008501531F2B445EC03C81F26F7EEE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.063024982999934, 51.861864797000067 ], [ -121.06375779199999, 51.861869413000107 ], [ -121.064039851999937, 51.861891554000046 ], [ -121.064519176999966, 51.861929199000073 ], [ -121.064750655999944, 51.861962679000079 ], [ -121.066280514999974, 51.862184006000071 ], [ -121.067537015999932, 51.862450028000076 ], [ -121.067795195999935, 51.862504703000113 ], [ -121.068079573999938, 51.862622746000049 ], [ -121.068224823999969, 51.86268305100004 ], [ -121.068019222999965, 51.864500778 ], [ -121.062216281999952, 51.864250817 ], [ -121.062483068999938, 51.861894873000047 ], [ -121.063024982999934, 51.861864797000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025045", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "83", "sL_BldgLoss": "83", "sL_StrLoss": "83", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F867AB370F465EC02FF10DA65DEF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.092759996999945, 51.867886408000047 ], [ -121.093106873999986, 51.867901264000103 ], [ -121.094317812000014, 51.86821198700008 ], [ -121.095504790999939, 51.868624297000089 ], [ -121.09647668599996, 51.86914709800007 ], [ -121.096876503999965, 51.869546392000075 ], [ -121.097317309999966, 51.870786508000073 ], [ -121.097354098999972, 51.871107292000048 ], [ -121.09731691799999, 51.871489783000079 ], [ -121.097413424999985, 51.871682870000065 ], [ -121.092357018999934, 51.871466421000022 ], [ -121.092759996999945, 51.867886408000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025048", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7752667", "BldgCostT": "5346667", "sL_LossRatio": "1", "sL_AssetLoss": "414", "sL_BldgLoss": "414", "sL_StrLoss": "414", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006B15796935385EC0C501CB7C4DE84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.872045684999989, 51.817969706000113 ], [ -120.871722011999935, 51.817488286000092 ], [ -120.871427991999951, 51.817257599000122 ], [ -120.870803016999943, 51.816967005000045 ], [ -120.869245512999939, 51.81646280700005 ], [ -120.86887629499995, 51.816284789000079 ], [ -120.868754908999975, 51.816066887000048 ], [ -120.869037424999959, 51.815964402000084 ], [ -120.87112289099997, 51.815696606000088 ], [ -120.872784996999911, 51.81523228800004 ], [ -120.872892509999957, 51.814783708000078 ], [ -120.873238596999983, 51.814520203000065 ], [ -120.875953720000012, 51.813580197000107 ], [ -120.876666587999964, 51.813224214000094 ], [ -120.878097097999955, 51.812719995000087 ], [ -120.878292685999952, 51.812570496000035 ], [ -120.879022886, 51.812178793000072 ], [ -120.880624989999916, 51.810472594 ], [ -120.880928183999941, 51.809920004000098 ], [ -120.881005987999941, 51.809508393000087 ], [ -120.881733987999951, 51.808487293000034 ], [ -120.881820193999957, 51.806969091000035 ], [ -120.881460204999883, 51.804462489000116 ], [ -120.881423073999926, 51.804327535000056 ], [ -120.88577969399995, 51.804522400000081 ], [ -120.886552944999963, 51.804556969000011 ], [ -120.886133671999971, 51.808136448 ], [ -120.885559647999955, 51.808110785000018 ], [ -120.885058444999913, 51.808088377000104 ], [ -120.884806241999939, 51.810240774000057 ], [ -120.884769808999977, 51.810239145 ], [ -120.884666790999944, 51.811118276000101 ], [ -120.883815440999939, 51.811080207000032 ], [ -120.883739792999947, 51.811725625000115 ], [ -120.883867282999944, 51.811727920000095 ], [ -120.883856661999928, 51.811954575000108 ], [ -120.88381676299997, 51.812806133000066 ], [ -120.883613574999941, 51.812802475000076 ], [ -120.88359931799999, 51.812924103000071 ], [ -120.883929140999925, 51.812938852000109 ], [ -120.88350957099999, 51.816518293000101 ], [ -120.87771407299999, 51.816258991000076 ], [ -120.877787225999924, 51.815635652000068 ], [ -120.876721925999945, 51.815587956000037 ], [ -120.876681184999939, 51.816454395000108 ], [ -120.876246267999946, 51.816446538000051 ], [ -120.876233589, 51.816716089000067 ], [ -120.875832392999911, 51.816708841000036 ], [ -120.87572559699997, 51.817618474000014 ], [ -120.875098355999938, 51.817590383000017 ], [ -120.875058224999961, 51.817932144000032 ], [ -120.875994499999962, 51.817974075000116 ], [ -120.875988037999917, 51.818029108000161 ], [ -120.87787793699999, 51.818113724000085 ], [ -120.877457821999911, 51.821693127000096 ], [ -120.87584069899999, 51.821620726000084 ], [ -120.87546323, 51.824835268000122 ], [ -120.872477590999949, 51.824701538000056 ], [ -120.871770748999907, 51.824669866000093 ], [ -120.871789715999938, 51.824656297000089 ], [ -120.872099784999975, 51.824211993000098 ], [ -120.872141495999983, 51.823969898000044 ], [ -120.872066214999961, 51.823393108000076 ], [ -120.871407800999975, 51.822896001000068 ], [ -120.870802392999948, 51.821877706000116 ], [ -120.870914821999918, 51.821061607000054 ], [ -120.87145411799996, 51.820369494000019 ], [ -120.871677500999937, 51.819636004000124 ], [ -120.87213592499991, 51.818852703000033 ], [ -120.872173181999969, 51.818368397000029 ], [ -120.872045684999989, 51.817969706000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025051", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "58.6", "sL_BldgLoss": "58.6", "sL_StrLoss": "58.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000AD916F19F375EC0EC527EADA6E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.868129487999951, 51.777905885000038 ], [ -120.869154891999969, 51.777204390000087 ], [ -120.870538894999953, 51.776546809000116 ], [ -120.870870288999953, 51.776524060000035 ], [ -120.87100682, 51.776514699000046 ], [ -120.872304407999962, 51.776568401000091 ], [ -120.873420606999957, 51.776344108000082 ], [ -120.873726108999961, 51.776218420000063 ], [ -120.873883905999932, 51.776153505000167 ], [ -120.874327211999926, 51.775822500000068 ], [ -120.874711389999931, 51.775338707000095 ], [ -120.874866180999959, 51.774999301000058 ], [ -120.874903686999971, 51.774629406000074 ], [ -120.874815604999966, 51.774252091000058 ], [ -120.874942906999962, 51.773601106000065 ], [ -120.875108234999971, 51.773371610000055 ], [ -120.875180635999982, 51.773271150000014 ], [ -120.875254275999936, 51.773168954000091 ], [ -120.875266180999972, 51.773152390000021 ], [ -120.87539568399994, 51.773011906000121 ], [ -120.875799702999956, 51.772573509000082 ], [ -120.876008842999937, 51.772428341000087 ], [ -120.878661780999948, 51.770586910000041 ], [ -120.880051262999928, 51.769885829000039 ], [ -120.881247291999969, 51.769282288000092 ], [ -120.881374210000018, 51.769252369000093 ], [ -120.881777821999918, 51.769270445000068 ], [ -120.881769838999986, 51.769338591000079 ], [ -120.880544899999933, 51.769824301000057 ], [ -120.879533295999977, 51.770408199000016 ], [ -120.879219189999958, 51.770888097000089 ], [ -120.878293799999966, 51.771150188000057 ], [ -120.877865788999941, 51.771349590000071 ], [ -120.876278796999884, 51.772390697000048 ], [ -120.876152199999936, 51.772639895000076 ], [ -120.876137677999935, 51.775122293000059 ], [ -120.87598199199999, 51.775632207000093 ], [ -120.875653878999969, 51.776120698000099 ], [ -120.874328712999983, 51.776896907000058 ], [ -120.872954110999899, 51.777429505000036 ], [ -120.872429093, 51.777492195000065 ], [ -120.872042984999965, 51.777403890000087 ], [ -120.871058794999939, 51.777385387000038 ], [ -120.870432203999954, 51.77741961100002 ], [ -120.869643495, 51.777567707000109 ], [ -120.869043588999901, 51.77796078900014 ], [ -120.867759813999953, 51.780303595000099 ], [ -120.867240798999902, 51.780833399000116 ], [ -120.86713299099992, 51.781011398000075 ], [ -120.866775394999934, 51.781220805000046 ], [ -120.866364608999945, 51.781284893000077 ], [ -120.865655090999951, 51.781568293000113 ], [ -120.864030998999937, 51.781898706000113 ], [ -120.863320616999914, 51.782192107000107 ], [ -120.863059091999929, 51.782843006000107 ], [ -120.862515900999981, 51.783291611000017 ], [ -120.861986401999928, 51.784056401000029 ], [ -120.861698003999948, 51.78430279100008 ], [ -120.861031312999955, 51.784650290000016 ], [ -120.859747881999979, 51.785076099000086 ], [ -120.859154088999958, 51.785370911 ], [ -120.859006526999977, 51.785567674000099 ], [ -120.858713665999971, 51.785554505000015 ], [ -120.858970482999965, 51.784916099000014 ], [ -120.859217687999958, 51.784571797000076 ], [ -120.859611804999972, 51.784243622000076 ], [ -120.859909717999969, 51.78399559000006 ], [ -120.860089014999957, 51.783846303000097 ], [ -120.861273913999952, 51.782966690000059 ], [ -120.862357812000013, 51.782041192000058 ], [ -120.862984881999978, 51.781745494000099 ], [ -120.863423886999925, 51.781600051000126 ], [ -120.863869949999923, 51.781452288000125 ], [ -120.86412070499992, 51.781369207000118 ], [ -120.865280110999961, 51.781113601000108 ], [ -120.865727075999928, 51.780962805000165 ], [ -120.865748493999931, 51.780948839000033 ], [ -120.86633709199999, 51.780564695000116 ], [ -120.866401314999948, 51.780481295000101 ], [ -120.867053283999937, 51.779634308000055 ], [ -120.867763494999977, 51.778271787000079 ], [ -120.867796798, 51.778238520000109 ], [ -120.868129487999951, 51.777905885000038 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025053", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "37.7", "sL_BldgLoss": "37.7", "sL_StrLoss": "37.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000E4DB8DB9E385EC0E4237376FCE34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.883174705000016, 51.780527199000076 ], [ -120.883401097, 51.780055811000125 ], [ -120.883757205999984, 51.779845007000077 ], [ -120.884909216999972, 51.779722507000024 ], [ -120.885240287999977, 51.780376196000049 ], [ -120.885705095999953, 51.780393309000011 ], [ -120.886935098999956, 51.780712286000075 ], [ -120.887104343999951, 51.780722501000064 ], [ -120.886938209999983, 51.782141873000029 ], [ -120.881418018999938, 51.781894859000033 ], [ -120.882481013999936, 51.781414506 ], [ -120.883174705000016, 51.780527199000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025054", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1848750", "BldgCostT": "1275000", "sL_LossRatio": "1", "sL_AssetLoss": "94.3", "sL_BldgLoss": "94.3", "sL_StrLoss": "94.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000671D020566385EC0F278DEB604E64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.876926801999943, 51.795658 ], [ -120.87623080799996, 51.795051304 ], [ -120.876015098999929, 51.794354787000081 ], [ -120.87599923399992, 51.794148745000037 ], [ -120.881234524999968, 51.794383197000087 ], [ -120.881194014999949, 51.794728800000023 ], [ -120.881895126999936, 51.794760180000047 ], [ -120.881841538999964, 51.795217383000164 ], [ -120.882734829999919, 51.795257358000072 ], [ -120.882687753999932, 51.795659090000086 ], [ -120.884735588999959, 51.795750704000049 ], [ -120.884316250999973, 51.799330204000022 ], [ -120.884220739999975, 51.799325932000038 ], [ -120.884059322, 51.800703609000024 ], [ -120.881218759999967, 51.800576519000096 ], [ -120.881255612999922, 51.800142794000067 ], [ -120.881131689999975, 51.800004697000105 ], [ -120.880832695, 51.798938009000068 ], [ -120.880580902999952, 51.798772686000049 ], [ -120.880227214999962, 51.798271405000094 ], [ -120.879781203, 51.797570707000027 ], [ -120.879241477999926, 51.797030896000074 ], [ -120.876926801999943, 51.795658 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025055", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "34.1", "sL_BldgLoss": "34.1", "sL_StrLoss": "34.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003982D051393A5EC065D30094F5EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.91057002299999, 51.849353502000042 ], [ -120.910874484999965, 51.849340697000031 ], [ -120.911082279999945, 51.849578596000079 ], [ -120.911034788, 51.850296411000102 ], [ -120.911183990999987, 51.850820488000117 ], [ -120.911584279999943, 51.850862661000058 ], [ -120.911531002999979, 51.851319285000038 ], [ -120.911380016999914, 51.852613278000042 ], [ -120.908882507999948, 51.85250227600001 ], [ -120.907911595999934, 51.852459110000019 ], [ -120.907594604999957, 51.851844503000052 ], [ -120.907708186, 51.851262 ], [ -120.908606606999982, 51.850334796000048 ], [ -120.909499792999924, 51.849856290000098 ], [ -120.91057002299999, 51.849353502000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025057", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5667083", "BldgCostT": "3908333", "sL_LossRatio": "1", "sL_AssetLoss": "457", "sL_BldgLoss": "457", "sL_StrLoss": "457", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000FE0F4D2CB2415EC0FDA2C2E0B3EC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.02981593, 51.85745835000008 ], [ -121.030019897999949, 51.855668671000068 ], [ -121.027840887999943, 51.855574100000091 ], [ -121.02800203299995, 51.85416066800007 ], [ -121.026512685999975, 51.854135684 ], [ -121.026548074999965, 51.853326959000086 ], [ -121.026983389999955, 51.853334263000079 ], [ -121.026995183999958, 51.853064687000071 ], [ -121.027430495999937, 51.853071990000096 ], [ -121.027442285999939, 51.85280241400006 ], [ -121.027006976999957, 51.852795112000159 ], [ -121.027018769000023, 51.852525536000059 ], [ -121.026583461999948, 51.852518233000119 ], [ -121.02659279199996, 51.852305014000116 ], [ -121.022634634999974, 51.852133063000039 ], [ -121.022646169999945, 51.852031994000072 ], [ -121.022198825999922, 51.852012552000062 ], [ -121.022607372999943, 51.848432725000116 ], [ -121.022971035999959, 51.848448530000091 ], [ -121.023011177999976, 51.848096733000027 ], [ -121.02637485, 51.848242870000078 ], [ -121.026400523999968, 51.848017709000032 ], [ -121.023598872999983, 51.84789599600002 ], [ -121.023875663999988, 51.845469799000085 ], [ -121.020503637, 51.845323216000061 ], [ -121.020597656999954, 51.844499590000069 ], [ -121.019889674999931, 51.844468801000097 ], [ -121.020134051999904, 51.842328178000038 ], [ -121.020298340999929, 51.840888958000072 ], [ -121.024646651999944, 51.841077990000038 ], [ -121.024606786999954, 51.841760565000072 ], [ -121.024609319999968, 51.841970661000062 ], [ -121.024609695999956, 51.842003492000103 ], [ -121.024560891999982, 51.842118667000172 ], [ -121.024374419999958, 51.842558990000029 ], [ -121.024410016999951, 51.84273239500007 ], [ -121.025061405999963, 51.843856104000068 ], [ -121.025200195999929, 51.84400609700009 ], [ -121.025434898999904, 51.844120613 ], [ -121.026025985999951, 51.844303714000105 ], [ -121.026312510999958, 51.844436607 ], [ -121.026466904999936, 51.844567311000056 ], [ -121.029024995999976, 51.846732706000111 ], [ -121.029199273999922, 51.847019095000093 ], [ -121.029186484999968, 51.847130989000071 ], [ -121.029079812999896, 51.847299904000117 ], [ -121.028250711999974, 51.847925896000056 ], [ -121.027900364999965, 51.848501809000048 ], [ -121.027709109999947, 51.848816217000092 ], [ -121.027710592999981, 51.848867079000058 ], [ -121.027725327, 51.8493690600001 ], [ -121.027729703999952, 51.84951768300003 ], [ -121.027691105999963, 51.849664367000074 ], [ -121.027639816999951, 51.849859190000068 ], [ -121.02746985499999, 51.850153088000084 ], [ -121.027400249999971, 51.85027340800012 ], [ -121.027341478999986, 51.850375029000105 ], [ -121.027315171999987, 51.850420500000062 ], [ -121.027282099999965, 51.850477701000067 ], [ -121.027264282999951, 51.850634292000102 ], [ -121.027280464999961, 51.850667906000119 ], [ -121.027335001, 51.850781294000043 ], [ -121.027496614999961, 51.85092319400011 ], [ -121.027840490999921, 51.851038893000087 ], [ -121.028582963999909, 51.851093457000047 ], [ -121.028570511999959, 51.851202693000097 ], [ -121.028818910999959, 51.851206857000058 ], [ -121.028807128999958, 51.851476434000112 ], [ -121.029242427999918, 51.851483729000151 ], [ -121.029218280999942, 51.852036336000033 ], [ -121.029695767999954, 51.852057059000067 ], [ -121.029875604999958, 51.853207162000068 ], [ -121.029915305999936, 51.853461107000101 ], [ -121.030044009, 51.853904607000032 ], [ -121.029996392999962, 51.855012414000022 ], [ -121.029998472999978, 51.855021410000084 ], [ -121.030021474999955, 51.855120894000038 ], [ -121.030050081999917, 51.85524498800001 ], [ -121.030198179999985, 51.855429500000085 ], [ -121.030534721999985, 51.855597001000021 ], [ -121.031844107999945, 51.855940620000091 ], [ -121.032612312999959, 51.856142196000086 ], [ -121.033295919999929, 51.856275264000061 ], [ -121.033450796999944, 51.856305394000053 ], [ -121.033866600999971, 51.856353109000047 ], [ -121.034233609999959, 51.856342895000104 ], [ -121.035106093999929, 51.856233212000127 ], [ -121.035465897999984, 51.856235291000061 ], [ -121.036401993999945, 51.856395127000056 ], [ -121.036419505999902, 51.856398105000039 ], [ -121.036692425999959, 51.856422694000088 ], [ -121.037133927999946, 51.856462482000033 ], [ -121.037477107999962, 51.856493390000054 ], [ -121.038425597999904, 51.856420180000043 ], [ -121.039141737999941, 51.856496670000084 ], [ -121.039015226999979, 51.857608772000098 ], [ -121.035645919999979, 51.857462796000029 ], [ -121.035617783999967, 51.857709952000057 ], [ -121.02981593, 51.85745835000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025063", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2182250", "BldgCostT": "1505000", "sL_LossRatio": "1", "sL_AssetLoss": "106", "sL_BldgLoss": "106", "sL_StrLoss": "106", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001552028B51395EC01C65F5F599EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.895308404999938, 51.865945294000042 ], [ -120.895326730999969, 51.865788791000135 ], [ -120.890483635999914, 51.86557287800013 ], [ -120.890446479999937, 51.865449996000059 ], [ -120.889858795999956, 51.865277591000023 ], [ -120.889666552999984, 51.865173407000036 ], [ -120.88985402499992, 51.863574032000024 ], [ -120.890043758999965, 51.861955235000082 ], [ -120.895845393999934, 51.862213903000047 ], [ -120.895827071999946, 51.862370407000071 ], [ -120.90013448799999, 51.862562263000029 ], [ -120.901529205999978, 51.862624349000086 ], [ -120.901110600999957, 51.866203696000071 ], [ -120.895308404999938, 51.865945294000042 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025066", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "28.5", "sL_BldgLoss": "28.5", "sL_StrLoss": "28.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D6F70AA0522C5EC052CEFEDD0EF04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.692790519999917, 51.874364096000036 ], [ -120.693260114999987, 51.87373460400007 ], [ -120.694364893999975, 51.874287205000094 ], [ -120.694880495999925, 51.874413887000081 ], [ -120.695324212999978, 51.87441185100009 ], [ -120.695050878999936, 51.876657302000119 ], [ -120.689248537999958, 51.876388486000074 ], [ -120.689370839999938, 51.875384898000064 ], [ -120.690213711999917, 51.874762906000086 ], [ -120.690660700999942, 51.874547790000058 ], [ -120.692027586999984, 51.87452069700003 ], [ -120.692790519999917, 51.874364096000036 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025069", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7540000", "BldgCostT": "5200000", "sL_LossRatio": "1", "sL_AssetLoss": "416", "sL_BldgLoss": "416", "sL_StrLoss": "416", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F44FD3DB9D375EC0BB89CEF0EEED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.878153708999903, 51.862171393000096 ], [ -120.87809640099999, 51.861819612000055 ], [ -120.877514792999975, 51.861853802000063 ], [ -120.876617099999947, 51.861775492000028 ], [ -120.875728603999946, 51.861830997000034 ], [ -120.874641722999968, 51.862405004000024 ], [ -120.873745419999949, 51.862595799000083 ], [ -120.871946094999942, 51.862563097000098 ], [ -120.871211613999947, 51.862469097000037 ], [ -120.869982899999968, 51.862041791000053 ], [ -120.865933196999933, 51.862292494 ], [ -120.865121014999943, 51.86226830100005 ], [ -120.8647013839999, 51.862188491000033 ], [ -120.864134611999987, 51.861890895000094 ], [ -120.864003389999937, 51.861618789000026 ], [ -120.86410259899999, 51.861368198000044 ], [ -120.864679305999957, 51.861163092000012 ], [ -120.864814692, 51.861030601000046 ], [ -120.864824193999951, 51.860248709000068 ], [ -120.864411092999958, 51.859773099000073 ], [ -120.863731892, 51.859365713000045 ], [ -120.863351635999976, 51.859342100000084 ], [ -120.86290701499999, 51.85931449000006 ], [ -120.862157687999954, 51.859489600000138 ], [ -120.861946511999989, 51.860285809000082 ], [ -120.862183988999931, 51.861100414000106 ], [ -120.862161546999971, 51.86136249500003 ], [ -120.861063577999928, 51.86131323900004 ], [ -120.860954908999972, 51.861284083000072 ], [ -120.860730108999974, 51.861298277000067 ], [ -120.859738412999931, 51.861253777000051 ], [ -120.859462987999976, 51.86026870600012 ], [ -120.859460001999977, 51.859701799000113 ], [ -120.859628498999911, 51.859254591000081 ], [ -120.859732894999965, 51.857035695000022 ], [ -120.860056704000016, 51.856645487000065 ], [ -120.860119804999968, 51.855900606000077 ], [ -120.860425410999966, 51.855618596000078 ], [ -120.860778694999965, 51.855517495000065 ], [ -120.861524000999978, 51.85510730200005 ], [ -120.861741395999971, 51.854805408000061 ], [ -120.862396780999987, 51.853225999000088 ], [ -120.862770589999968, 51.852711814000031 ], [ -120.863008121999968, 51.852064339000059 ], [ -120.863242423999964, 51.852074849000104 ], [ -120.863267166999918, 51.851552604000076 ], [ -120.86365307599999, 51.851559615000141 ], [ -120.864191297999952, 51.851569392000087 ], [ -120.864572929999966, 51.851576323000067 ], [ -120.864560166, 51.851845871000073 ], [ -120.864995423999972, 51.851853774000062 ], [ -120.864981264999983, 51.852152834000144 ], [ -120.866621691999953, 51.852226380000147 ], [ -120.866218310999955, 51.855652887000055 ], [ -120.866557927999963, 51.855659048000064 ], [ -120.866555910999949, 51.855701643 ], [ -120.870371009999971, 51.855872584000075 ], [ -120.869949916999985, 51.859451837000066 ], [ -120.869095890000011, 51.859413582000066 ], [ -120.869091788999953, 51.859448422000099 ], [ -120.869370702999944, 51.859460917000042 ], [ -120.869174200999964, 51.861130775000028 ], [ -120.870328889999925, 51.861182493000044 ], [ -120.87027144599989, 51.861670739000083 ], [ -120.871660629999951, 51.861732944000053 ], [ -120.871862777000018, 51.860014306000053 ], [ -120.874866020999946, 51.860148728000091 ], [ -120.87492316499997, 51.859662576000098 ], [ -120.880724404999953, 51.859922010000076 ], [ -120.880721871999967, 51.859943586000028 ], [ -120.881860666999941, 51.859994479000065 ], [ -120.881844916999967, 51.860128647000046 ], [ -120.883078133999945, 51.860183746000132 ], [ -120.882895891999951, 51.861736557000043 ], [ -120.8826580399999, 51.86376303300009 ], [ -120.87728233099989, 51.863522752000051 ], [ -120.877244205999929, 51.863847222000125 ], [ -120.877014210999917, 51.863815006000038 ], [ -120.876701203999957, 51.863700996000127 ], [ -120.876625584999928, 51.863457497000056 ], [ -120.876769884999959, 51.863154107000099 ], [ -120.877529906999939, 51.86246619900006 ], [ -120.878153708999903, 51.862171393000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025070", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "61.4", "sL_BldgLoss": "61.4", "sL_StrLoss": "61.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B6A7074783A5EC01865B28F80E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -120.911171678999906, 51.77067796800003 ], [ -120.91127399, 51.769799462 ], [ -120.909123870999963, 51.769703713000091 ], [ -120.90929241, 51.768257075000058 ], [ -120.909975304999989, 51.76839728900012 ], [ -120.910111136999973, 51.768413389000102 ], [ -120.911546702999928, 51.768583306000046 ], [ -120.9126307289999, 51.768619005000069 ], [ -120.915729189999965, 51.768334101000114 ], [ -120.916422386999926, 51.768378409000057 ], [ -120.917240195, 51.76853835800005 ], [ -120.91696133899994, 51.77093558900004 ], [ -120.911171678999906, 51.77067796800003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025072", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2370750", "BldgCostT": "1635000", "sL_LossRatio": "1", "sL_AssetLoss": "132.6", "sL_BldgLoss": "132.6", "sL_StrLoss": "132.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B3A59A9BA7445EC022B791789AE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.070726611999987, 51.761700047000076 ], [ -121.070693198999919, 51.758925882000085 ], [ -121.07300903399999, 51.759025750000021 ], [ -121.072730444999934, 51.761497195000068 ], [ -121.075542221, 51.761618386000144 ], [ -121.075138812999967, 51.765198684000048 ], [ -121.070720806999972, 51.765008231000088 ], [ -121.070725596999949, 51.76226936400009 ], [ -121.070726611999987, 51.761700047000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025074", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "30752084", "BldgCostT": "21208334", "sL_LossRatio": "1", "sL_AssetLoss": "1879.8", "sL_BldgLoss": "1879.8", "sL_StrLoss": "1879.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EAA70F8FCA465EC07E7E4A5B7DE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.093618741999975, 51.771675605000048 ], [ -121.093655372999962, 51.771349353000076 ], [ -121.093052845999964, 51.771323491000054 ], [ -121.093383780999901, 51.768376115000081 ], [ -121.09328096299997, 51.768371702000081 ], [ -121.093287187999962, 51.768316258000063 ], [ -121.091908418999978, 51.768257064000075 ], [ -121.091938917000022, 51.767985495000062 ], [ -121.091546724999915, 51.767968655000047 ], [ -121.091696825999989, 51.766632185000041 ], [ -121.091806576999943, 51.765654933000079 ], [ -121.091511388999976, 51.765642258000085 ], [ -121.091602254999955, 51.764833166000074 ], [ -121.091515946999934, 51.764829459000083 ], [ -121.091918011999951, 51.76124910300009 ], [ -121.093162415000037, 51.761302537000077 ], [ -121.093171957999957, 51.761217532000039 ], [ -121.098961417999931, 51.761465951000062 ], [ -121.098942544999943, 51.761634274000066 ], [ -121.099031645999958, 51.761638095000123 ], [ -121.099086903999975, 51.761145271000018 ], [ -121.100916990999977, 51.761223736000034 ], [ -121.101046083999933, 51.76007191500004 ], [ -121.102521317999972, 51.760135144000103 ], [ -121.10254833, 51.759894050000106 ], [ -121.10278202799995, 51.759904065000072 ], [ -121.102871664999896, 51.759103957000015 ], [ -121.103287321999929, 51.759121767000089 ], [ -121.10332406400002, 51.758793766000096 ], [ -121.10380087499999, 51.758814196000095 ], [ -121.103827254999914, 51.758578678000035 ], [ -121.107377399999976, 51.758730724000095 ], [ -121.107406204999904, 51.758473363000064 ], [ -121.10813608899997, 51.758504608000074 ], [ -121.108196701999958, 51.757962980000073 ], [ -121.108973679999977, 51.757996236000103 ], [ -121.109027993999973, 51.757510799000073 ], [ -121.110438470999924, 51.757571157000022 ], [ -121.110574997999919, 51.756350534000013 ], [ -121.111197568999927, 51.756377170000071 ], [ -121.111202868999953, 51.756250218000027 ], [ -121.111505545999989, 51.756255083000084 ], [ -121.111734678999966, 51.754205956000071 ], [ -121.112077721999952, 51.754220630000091 ], [ -121.112257853999935, 51.752609466000095 ], [ -121.112411341999945, 51.752616031000088 ], [ -121.112480782999981, 51.751994870000033 ], [ -121.118159602999953, 51.75223763600016 ], [ -121.118347112999942, 51.750558306000073 ], [ -121.122230593999944, 51.750724158000018 ], [ -121.122634912999928, 51.750741417 ], [ -121.124135306999975, 51.750805454000059 ], [ -121.123735971999963, 51.754385959000075 ], [ -121.122500494999912, 51.754333230000086 ], [ -121.122286324999948, 51.756252789000015 ], [ -121.121901507999951, 51.756236364000053 ], [ -121.121788564, 51.757248499000092 ], [ -121.117232869999938, 51.757053937000087 ], [ -121.11720612799999, 51.757293351000058 ], [ -121.117123408999944, 51.758033907000055 ], [ -121.116207873999926, 51.757994785000065 ], [ -121.115963888999929, 51.760178532000062 ], [ -121.114553321999949, 51.760118241000015 ], [ -121.114416892999913, 51.761338866000131 ], [ -121.113639851999949, 51.761305646000061 ], [ -121.113585584999939, 51.761791084000059 ], [ -121.112855640999925, 51.761759873000102 ], [ -121.112795081999977, 51.762301503000067 ], [ -121.112119372999942, 51.762272606000074 ], [ -121.112077871999972, 51.762643718000049 ], [ -121.111287364999924, 51.762609908000059 ], [ -121.111234860999929, 51.763079337000107 ], [ -121.110657518999943, 51.763054640000078 ], [ -121.110613857, 51.763444951000039 ], [ -121.11023874599999, 51.763428903000097 ], [ -121.110027647, 51.765315762000036 ], [ -121.106141879999967, 51.765149453000035 ], [ -121.106122675999956, 51.765320954000138 ], [ -121.105685197999975, 51.765302222000088 ], [ -121.10565797, 51.765545364000012 ], [ -121.105107972999988, 51.765521812000081 ], [ -121.105086954999976, 51.765709477000073 ], [ -121.104640232999955, 51.765690345000102 ], [ -121.104596655999941, 51.766079387000033 ], [ -121.104043641999951, 51.766055701000091 ], [ -121.104007648999982, 51.76637700200007 ], [ -121.103584625999957, 51.766358882000048 ], [ -121.10355104599995, 51.76665861200005 ], [ -121.103519763999941, 51.766657271000078 ], [ -121.10331734699993, 51.768463913000062 ], [ -121.103030661999966, 51.768451633000019 ], [ -121.10294367599991, 51.769227922000034 ], [ -121.102582263999935, 51.769212438000039 ], [ -121.102283211999961, 51.771880833000068 ], [ -121.099428150999969, 51.77175847500007 ], [ -121.099409588999947, 51.771924 ], [ -121.097154113999949, 51.77182728800009 ], [ -121.093618741999975, 51.771675605000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025076", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000005EF582A37465EC0EF53D9A044EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.093106873999986, 51.867901264000103 ], [ -121.098563595999906, 51.868134823000027 ], [ -121.09816109199997, 51.87171485600004 ], [ -121.097413424999985, 51.871682870000065 ], [ -121.09731691799999, 51.871489783000079 ], [ -121.097354098999972, 51.871107292000048 ], [ -121.097317309999966, 51.870786508000073 ], [ -121.096876503999965, 51.869546392000075 ], [ -121.09647668599996, 51.86914709800007 ], [ -121.095504790999939, 51.868624297000089 ], [ -121.094317812000014, 51.86821198700008 ], [ -121.093106873999986, 51.867901264000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025078", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6592667", "BldgCostT": "4546667", "sL_LossRatio": "1", "sL_AssetLoss": "324", "sL_BldgLoss": "324", "sL_StrLoss": "324", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004D4BEEA8D8455EC0AF3E601641E34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.087553064999895, 51.776483781000117 ], [ -121.08763584899998, 51.775747440000032 ], [ -121.08366918899999, 51.775576931000089 ], [ -121.084071993999885, 51.771996637000079 ], [ -121.08986282799999, 51.772245515000115 ], [ -121.089564963999976, 51.774896213000076 ], [ -121.091786490999951, 51.774991611000061 ], [ -121.091850503, 51.774421724000042 ], [ -121.09195144099999, 51.774426058000152 ], [ -121.092107578999972, 51.773035927000073 ], [ -121.096193853999964, 51.773211285000052 ], [ -121.097898596, 51.773284398000044 ], [ -121.097828878999962, 51.773905844000083 ], [ -121.098053934999939, 51.773915495000047 ], [ -121.098013623000014, 51.774274834000039 ], [ -121.098133956, 51.774279993000079 ], [ -121.098079766999959, 51.774763049000107 ], [ -121.098386180999981, 51.774776187000043 ], [ -121.098201601999961, 51.776421571000064 ], [ -121.097984522000033, 51.778356521000092 ], [ -121.094421492999942, 51.778203702000077 ], [ -121.093185249999948, 51.778150653000047 ], [ -121.093129526999974, 51.778646836000092 ], [ -121.087337826999942, 51.778398125000074 ], [ -121.087553064999895, 51.776483781000117 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025079", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "1", "sL_AssetLoss": "188.9", "sL_BldgLoss": "188.9", "sL_StrLoss": "188.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E5DC792456485EC045C0F8D4F7DF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.12613983199995, 51.751152516000126 ], [ -121.126300285999946, 51.749713110000116 ], [ -121.124403171999973, 51.749632172000105 ], [ -121.124437394999973, 51.749325268000085 ], [ -121.124376569999953, 51.749322672000112 ], [ -121.123307112999967, 51.749277030000016 ], [ -121.12143459, 51.749197092000067 ], [ -121.121491451999958, 51.748687467000082 ], [ -121.12404989399991, 51.748523076000055 ], [ -121.124347169999922, 51.748503979000056 ], [ -121.124849594999887, 51.748471686000045 ], [ -121.125671594, 51.748418845000167 ], [ -121.129495693999942, 51.748604260000057 ], [ -121.132911532999984, 51.748769757000062 ], [ -121.137000398999987, 51.748967729000107 ], [ -121.137380921999977, 51.748986145000096 ], [ -121.137177939999944, 51.750811248000083 ], [ -121.133232810999942, 51.750643280000091 ], [ -121.133221762999938, 51.750742541000072 ], [ -121.132007029999954, 51.750690795000025 ], [ -121.131928147999972, 51.751399270000014 ], [ -121.12613983199995, 51.751152516000126 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025080", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "522000", "BldgCostT": "360000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFE17668D8425EC02CC6AF0E36E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.043352977999959, 51.781291660000065 ], [ -121.045991545999968, 51.781406015000066 ], [ -121.045620292999956, 51.784679692000104 ], [ -121.044881810999954, 51.78461460800002 ], [ -121.044444481999946, 51.784530901000068 ], [ -121.04310368099999, 51.784074295000032 ], [ -121.042757724999916, 51.783126817000102 ], [ -121.043383493999954, 51.78141393700006 ], [ -121.043352977999959, 51.781291660000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025082", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4765667", "BldgCostT": "3286667", "sL_LossRatio": "1", "sL_AssetLoss": "231.2", "sL_BldgLoss": "231.2", "sL_StrLoss": "231.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006240DDDDD6415EC0330EFD2CF9EB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.029024995999976, 51.846732706000111 ], [ -121.026466904999936, 51.844567311000056 ], [ -121.026312510999958, 51.844436607 ], [ -121.026025985999951, 51.844303714000105 ], [ -121.025434898999904, 51.844120613 ], [ -121.025200195999929, 51.84400609700009 ], [ -121.025061405999963, 51.843856104000068 ], [ -121.024410016999951, 51.84273239500007 ], [ -121.024374419999958, 51.842558990000029 ], [ -121.024560891999982, 51.842118667000172 ], [ -121.024609695999956, 51.842003492000103 ], [ -121.024609319999968, 51.841970661000062 ], [ -121.024606786999954, 51.841760565000072 ], [ -121.024646651999944, 51.841077990000038 ], [ -121.02565274299999, 51.841121703000056 ], [ -121.025924933999974, 51.838734461000065 ], [ -121.026684116999931, 51.838314402000087 ], [ -121.027469143999937, 51.838104026000074 ], [ -121.031803319999966, 51.838292185000071 ], [ -121.031395619999955, 51.841872077000062 ], [ -121.026041095999958, 51.841639600000086 ], [ -121.026004031999975, 51.841964677000121 ], [ -121.026711976999962, 51.841995429000058 ], [ -121.026619454999917, 51.842806989000024 ], [ -121.027878412999968, 51.842828110000042 ], [ -121.027854845999954, 51.843367262000065 ], [ -121.028725284, 51.843381857000089 ], [ -121.028701724999962, 51.843921009000034 ], [ -121.029136950999913, 51.843928304000038 ], [ -121.029125172999969, 51.844197880000053 ], [ -121.029995629999959, 51.844212466000037 ], [ -121.029972086, 51.844751619000114 ], [ -121.030407319999938, 51.84475890900007 ], [ -121.030372009, 51.845567639000137 ], [ -121.029694738999964, 51.845556293000108 ], [ -121.029682098999942, 51.845667214000102 ], [ -121.032483625999959, 51.845788778000049 ], [ -121.032075911999968, 51.849368649000077 ], [ -121.028905257999952, 51.849231063000133 ], [ -121.028889598000021, 51.849589401000102 ], [ -121.028754654999958, 51.8495871390001 ], [ -121.028582963999909, 51.851093457000047 ], [ -121.027840490999921, 51.851038893000087 ], [ -121.027496614999961, 51.85092319400011 ], [ -121.027335001, 51.850781294000043 ], [ -121.027280464999961, 51.850667906000119 ], [ -121.027264282999951, 51.850634292000102 ], [ -121.027282099999965, 51.850477701000067 ], [ -121.027315171999987, 51.850420500000062 ], [ -121.027341478999986, 51.850375029000105 ], [ -121.027400249999971, 51.85027340800012 ], [ -121.02746985499999, 51.850153088000084 ], [ -121.027639816999951, 51.849859190000068 ], [ -121.027691105999963, 51.849664367000074 ], [ -121.027729703999952, 51.84951768300003 ], [ -121.027725327, 51.8493690600001 ], [ -121.027710592999981, 51.848867079000058 ], [ -121.027709109999947, 51.848816217000092 ], [ -121.027900364999965, 51.848501809000048 ], [ -121.028250711999974, 51.847925896000056 ], [ -121.029079812999896, 51.847299904000117 ], [ -121.029186484999968, 51.847130989000071 ], [ -121.029199273999922, 51.847019095000093 ], [ -121.029024995999976, 51.846732706000111 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025083", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2158083", "BldgCostT": "1488333", "sL_LossRatio": "1", "sL_AssetLoss": "119", "sL_BldgLoss": "119", "sL_StrLoss": "119", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001B708E211D445EC09DAE939F79E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.062969386999924, 51.816927100000079 ], [ -121.062607190999969, 51.816894393000048 ], [ -121.06189279299997, 51.816999796000097 ], [ -121.061589704999975, 51.816976988000071 ], [ -121.061433996999966, 51.816865901000078 ], [ -121.061447886999929, 51.816534109000017 ], [ -121.062106605999944, 51.816068286000089 ], [ -121.062154588999974, 51.81595160500008 ], [ -121.061989488999956, 51.815777808000064 ], [ -121.060991716999979, 51.815320606000093 ], [ -121.06096820099999, 51.814889091000069 ], [ -121.060801003999984, 51.814706795000035 ], [ -121.061637717999957, 51.814819302000103 ], [ -121.062305079999987, 51.814812200000063 ], [ -121.062893300999932, 51.814651286000121 ], [ -121.063419932999949, 51.814289486000071 ], [ -121.065704732999961, 51.814388031000135 ], [ -121.065661053000014, 51.81477446300007 ], [ -121.066742823999931, 51.814821104000075 ], [ -121.06633820499998, 51.818401197000092 ], [ -121.063357242, 51.81827264500005 ], [ -121.06325459599999, 51.817058206000084 ], [ -121.062969386999924, 51.816927100000079 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025084", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "108", "sL_BldgLoss": "108", "sL_StrLoss": "108", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000010F09C1403445EC0C5B1CB4368E64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.061792026999939, 51.799098107000056 ], [ -121.061690771999949, 51.798323393000103 ], [ -121.061655495999958, 51.798053406000079 ], [ -121.061655534999957, 51.798051483000044 ], [ -121.06370765599992, 51.798140061000055 ], [ -121.063668098999955, 51.798490020000024 ], [ -121.063912274999936, 51.798500557000139 ], [ -121.063507573999942, 51.80208069200004 ], [ -121.061541362999918, 51.801995828 ], [ -121.06151189499991, 51.801820199000069 ], [ -121.061699205999929, 51.799999956000129 ], [ -121.061792026999939, 51.799098107000056 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025085", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3721667", "BldgCostT": "2566667", "sL_LossRatio": "1", "sL_AssetLoss": "253.6", "sL_BldgLoss": "253.6", "sL_StrLoss": "253.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000014909B864D435EC07C9D716DEAE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.042685086999938, 51.766656490000109 ], [ -121.04443360899991, 51.765859886000079 ], [ -121.044584484999973, 51.765742732 ], [ -121.04460588799995, 51.765726108000088 ], [ -121.044709816999969, 51.765579490000043 ], [ -121.044711848999967, 51.765511707000066 ], [ -121.044715092999979, 51.765404391000104 ], [ -121.045878898999973, 51.765300110000091 ], [ -121.046920597999957, 51.765156384000143 ], [ -121.047809790999963, 51.764985397000061 ], [ -121.05468829499992, 51.76315170000003 ], [ -121.056212013, 51.762745444000068 ], [ -121.057373589999941, 51.762435701000086 ], [ -121.058161478999963, 51.762297996000036 ], [ -121.058957321999941, 51.76225680200006 ], [ -121.059713308999932, 51.762298492000127 ], [ -121.059745688999939, 51.762304114000116 ], [ -121.059604031999982, 51.763557351000024 ], [ -121.057553245999927, 51.763468684000031 ], [ -121.057388419999953, 51.764926201000044 ], [ -121.052637624999988, 51.764720654000044 ], [ -121.052377528999969, 51.767018215000093 ], [ -121.046587600999942, 51.766767441000049 ], [ -121.04662780699999, 51.766412707000015 ], [ -121.044996821999973, 51.766342012000067 ], [ -121.044954884999953, 51.766711890000074 ], [ -121.044626628999978, 51.766697659000023 ], [ -121.044577593999975, 51.767130098000109 ], [ -121.042003370999964, 51.767018463000113 ], [ -121.042685086999938, 51.766656490000109 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025087", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "17523250", "BldgCostT": "12085000", "sL_LossRatio": "1", "sL_AssetLoss": "1078.7", "sL_BldgLoss": "1078.7", "sL_StrLoss": "1078.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004DF52A5348455EC0AFB3842988E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.084537875999928, 51.790565731000108 ], [ -121.084546152999934, 51.790370389000024 ], [ -121.083776134999965, 51.790337290000096 ], [ -121.083677575999943, 51.790335684000098 ], [ -121.083677687999938, 51.790333058000037 ], [ -121.082809223999917, 51.790295721000099 ], [ -121.082773826999983, 51.791130266000096 ], [ -121.081469636999927, 51.791108987000023 ], [ -121.081492521999934, 51.790569813000104 ], [ -121.081057796, 51.790562716000125 ], [ -121.081103573999926, 51.789484368000068 ], [ -121.081538286999972, 51.789491465000062 ], [ -121.081584051999982, 51.788413116000093 ], [ -121.081149348999986, 51.788406021000057 ], [ -121.081206561999949, 51.787058085000041 ], [ -121.08203731199994, 51.787071643000097 ], [ -121.082082876999934, 51.786666916000115 ], [ -121.082527318999979, 51.786686028000091 ], [ -121.08253804899999, 51.786433061000182 ], [ -121.080130790999988, 51.786329518000066 ], [ -121.080369176999909, 51.784212798000041 ], [ -121.080263852999934, 51.784208267000167 ], [ -121.079944667999925, 51.787042331000045 ], [ -121.079141528999941, 51.787007774000145 ], [ -121.078970915999946, 51.788522252000092 ], [ -121.073467780000016, 51.788285312000042 ], [ -121.074312000999925, 51.787585987000064 ], [ -121.074810183999929, 51.787038992000078 ], [ -121.075314702999933, 51.786320502000095 ], [ -121.075897286999989, 51.784985706000057 ], [ -121.073846015999891, 51.785627691000059 ], [ -121.072688493999976, 51.786148994000058 ], [ -121.072439110999966, 51.786205703000064 ], [ -121.072080075999978, 51.786209479000014 ], [ -121.072477743999983, 51.782684083000021 ], [ -121.078269925999976, 51.782933544000095 ], [ -121.078261873999935, 51.783005008000018 ], [ -121.07822069199996, 51.783370547000068 ], [ -121.07862854699998, 51.783388102000103 ], [ -121.078733776999968, 51.782453971000066 ], [ -121.078947790999919, 51.780554032000069 ], [ -121.08039992499998, 51.780616522000059 ], [ -121.080587116999936, 51.778954067000051 ], [ -121.080680466, 51.778958083000092 ], [ -121.080926335999948, 51.776774272000054 ], [ -121.086397437999935, 51.777009539000076 ], [ -121.086717785, 51.777023306000025 ], [ -121.086315148999944, 51.780603593000059 ], [ -121.086221796999951, 51.78059958100004 ], [ -121.085976167999917, 51.78278339700006 ], [ -121.08452395499998, 51.7827209780001 ], [ -121.08450157299994, 51.782919902000081 ], [ -121.086326222999915, 51.782998326000019 ], [ -121.08622451299999, 51.783902609000073 ], [ -121.089602428999967, 51.783957562000126 ], [ -121.089613818999979, 51.783687974000074 ], [ -121.09091780199995, 51.783709161000061 ], [ -121.0909040169999, 51.784035656000079 ], [ -121.090849500000019, 51.785326694000041 ], [ -121.088241442999959, 51.785284302000065 ], [ -121.088230041999964, 51.785553890000138 ], [ -121.088664721999962, 51.785560960000133 ], [ -121.08863053, 51.786369725000036 ], [ -121.086891783999988, 51.786341437000075 ], [ -121.086903193999916, 51.786071849000116 ], [ -121.085982191999975, 51.786056855 ], [ -121.08592350099994, 51.786578592000076 ], [ -121.084709024999967, 51.786526396000042 ], [ -121.084698307999986, 51.786779364000054 ], [ -121.087875641999972, 51.786915890000031 ], [ -121.087473009999954, 51.790496148000109 ], [ -121.08671732399992, 51.790463685000077 ], [ -121.086709055999989, 51.790659029000054 ], [ -121.089515251999941, 51.790779552000039 ], [ -121.089112719999946, 51.794359803000098 ], [ -121.08709993699999, 51.79427336400007 ], [ -121.085943059999977, 51.794223665000104 ], [ -121.08331896199995, 51.794110893000081 ], [ -121.083356262999956, 51.793779538000123 ], [ -121.083721966999917, 51.790530660000066 ], [ -121.084537875999928, 51.790565731000108 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025088", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000049B1ABE2F0475EC0F10AC887EEE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.123431712999931, 51.76534867 ], [ -121.123476437999969, 51.764270292000106 ], [ -121.123041954999977, 51.764263353000025 ], [ -121.123075506999953, 51.763454569000032 ], [ -121.123980987999957, 51.763469027000092 ], [ -121.124813406999962, 51.763482313000061 ], [ -121.124791059999922, 51.764021503 ], [ -121.125225540999963, 51.76402843500005 ], [ -121.125147342, 51.765915601000081 ], [ -121.124712842999969, 51.765908667000097 ], [ -121.124679319000023, 51.766717452000101 ], [ -121.124317318999914, 51.766711675000067 ], [ -121.122941292999968, 51.766689705000033 ], [ -121.122997218999927, 51.765341731000071 ], [ -121.123431712999931, 51.76534867 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025089", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2798500", "BldgCostT": "1930000", "sL_LossRatio": "1", "sL_AssetLoss": "195.3", "sL_BldgLoss": "195.3", "sL_StrLoss": "195.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000201893407B425EC01B3E1A357CE94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.038567906999958, 51.824553808000068 ], [ -121.037917388999915, 51.824471198000047 ], [ -121.037124116999934, 51.824690494000045 ], [ -121.036221801999943, 51.824747506000051 ], [ -121.035995907999933, 51.824600790000019 ], [ -121.036112705999955, 51.82427888600003 ], [ -121.035338608999936, 51.823401591000056 ], [ -121.035294610999969, 51.822718007000084 ], [ -121.035038489, 51.822588410000073 ], [ -121.034706095999965, 51.822572715000064 ], [ -121.033848993999953, 51.82256839100009 ], [ -121.033233919999986, 51.822710903000036 ], [ -121.032751893999915, 51.823143797000093 ], [ -121.031895417999962, 51.823155201000077 ], [ -121.031322250999921, 51.823250347000048 ], [ -121.03133052699999, 51.82317765200002 ], [ -121.032380321999966, 51.823080201000067 ], [ -121.032659179999968, 51.823009593000052 ], [ -121.033114805999958, 51.822679509000082 ], [ -121.033690490999945, 51.822394206000091 ], [ -121.035010180999919, 51.821884670000038 ], [ -121.03547889299989, 51.821703700000079 ], [ -121.035522237999913, 51.821654048000063 ], [ -121.036065016999927, 51.821032106000054 ], [ -121.036345050999941, 51.820837781000073 ], [ -121.036489498999956, 51.82073755199999 ], [ -121.037429261999961, 51.820778306000101 ], [ -121.037261766999933, 51.82225138800014 ], [ -121.040326264999962, 51.822384231000051 ], [ -121.040196677999944, 51.823524561000085 ], [ -121.042075985999958, 51.823605985000086 ], [ -121.042029906, 51.824011613000089 ], [ -121.042386902999979, 51.824027077000025 ], [ -121.042015737, 51.827294305000123 ], [ -121.041080892, 51.82747339900007 ], [ -121.040504114, 51.827382288000095 ], [ -121.040148292999973, 51.827241304000069 ], [ -121.039272389999951, 51.826380988000054 ], [ -121.039045394999917, 51.826261395000103 ], [ -121.038640195, 51.826218713000088 ], [ -121.038074186999964, 51.82589400800002 ], [ -121.038190591999921, 51.825526511000092 ], [ -121.038554008999981, 51.825200393000074 ], [ -121.038711490999958, 51.824879888000076 ], [ -121.038692107000017, 51.824663394000012 ], [ -121.038567906999958, 51.824553808000068 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025090", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "140.4", "sL_BldgLoss": "140.4", "sL_StrLoss": "140.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000058F2E3F5C14B5EC0248888D57EEA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.179231748999925, 51.831523182000048 ], [ -121.181959319, 51.830967003000062 ], [ -121.184330527000014, 51.830878705000089 ], [ -121.186645815999967, 51.830643691000084 ], [ -121.187188110999955, 51.830895805000019 ], [ -121.187313186999972, 51.831418504000034 ], [ -121.187572008999965, 51.831818696000035 ], [ -121.188034884999951, 51.831869899000026 ], [ -121.188262277999939, 51.831806077000095 ], [ -121.188140531999977, 51.832910204000072 ], [ -121.185682980999943, 51.832806889000068 ], [ -121.18565083599999, 51.833098263000046 ], [ -121.184887681999953, 51.833066169000105 ], [ -121.184879703999925, 51.833138480000123 ], [ -121.179080264999968, 51.832894422000066 ], [ -121.179231748999925, 51.831523182000048 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025091", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1897083", "BldgCostT": "1308333", "sL_LossRatio": "1", "sL_AssetLoss": "142.1", "sL_BldgLoss": "142.1", "sL_StrLoss": "142.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000259BE59143445EC0FB21D32D7DE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.066858301999943, 51.790858990000082 ], [ -121.068883049999954, 51.790946310000052 ], [ -121.06847882799994, 51.794526488000059 ], [ -121.063429783999965, 51.794308676000064 ], [ -121.063916745999933, 51.793414935000051 ], [ -121.064033714999965, 51.793200297000077 ], [ -121.064562397999936, 51.7926429890001 ], [ -121.065243504999913, 51.792067623000037 ], [ -121.065796269999979, 51.791600676000023 ], [ -121.06591992599999, 51.791496174000031 ], [ -121.066208404999912, 51.791252480000026 ], [ -121.066858301999943, 51.790858990000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025092", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6000583", "BldgCostT": "4138333", "sL_LossRatio": "1", "sL_AssetLoss": "279.9", "sL_BldgLoss": "279.9", "sL_StrLoss": "279.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F66A3645F6425EC0172C93E969EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.032554443999942, 51.833397560000044 ], [ -121.032642881999919, 51.832620716000072 ], [ -121.032138983999971, 51.832598850000061 ], [ -121.032158969999927, 51.832423306000116 ], [ -121.032709010999938, 51.832107806000081 ], [ -121.033445087999937, 51.831526708000112 ], [ -121.034541476999948, 51.831024 ], [ -121.035299005999946, 51.83093710400005 ], [ -121.036011601999974, 51.830562495000088 ], [ -121.036334101999941, 51.830495608000057 ], [ -121.036576705, 51.830599504000091 ], [ -121.036351589, 51.830757607000102 ], [ -121.03589620799994, 51.830902890000061 ], [ -121.035758022999943, 51.831062401000054 ], [ -121.035725691999971, 51.831465499000096 ], [ -121.035879281999925, 51.83163920600002 ], [ -121.036354013999969, 51.831718995000081 ], [ -121.037311092999957, 51.831734604000104 ], [ -121.03757600899999, 51.83166768600006 ], [ -121.037998077999944, 51.831305994000061 ], [ -121.039227198999981, 51.831056696000061 ], [ -121.039762092000018, 51.830787500000035 ], [ -121.04237330899997, 51.829796285000029 ], [ -121.043001411999953, 51.829743598000071 ], [ -121.043599817999947, 51.829997094000142 ], [ -121.044437913999928, 51.830073999000064 ], [ -121.045095815999971, 51.82995869100008 ], [ -121.045730115, 51.829726494000106 ], [ -121.04690571799992, 51.829700907000053 ], [ -121.048031091, 51.829863215000039 ], [ -121.048588704999929, 51.830044095000062 ], [ -121.04894221799999, 51.829941602000098 ], [ -121.050343296999955, 51.830118194000079 ], [ -121.050662489, 51.830078305000036 ], [ -121.053633718999919, 51.829165407000097 ], [ -121.05385441199995, 51.829141189000019 ], [ -121.054470707999911, 51.829286399000097 ], [ -121.055153601999919, 51.829280711000052 ], [ -121.055888614999944, 51.82905 ], [ -121.056252901, 51.829028600000115 ], [ -121.05688922499999, 51.828750903000099 ], [ -121.057121925, 51.828755203000057 ], [ -121.057199973999957, 51.828944594000092 ], [ -121.058186102999983, 51.829995697000086 ], [ -121.058311017, 51.830797505000085 ], [ -121.058276507999935, 51.831562309000041 ], [ -121.058100995999979, 51.831936902000074 ], [ -121.057918817999976, 51.832829013000023 ], [ -121.054726636999973, 51.832691161000056 ], [ -121.05478164099999, 51.832205830000063 ], [ -121.05470367199996, 51.832202461000051 ], [ -121.054761109999916, 51.831695639000017 ], [ -121.053159600999905, 51.831626443000076 ], [ -121.053098172999952, 51.832168285000122 ], [ -121.051538219999912, 51.832100863000029 ], [ -121.051526406999969, 51.832205022000068 ], [ -121.047859342999985, 51.832046446000085 ], [ -121.047856236999948, 51.832073808000104 ], [ -121.04468776299997, 51.83193669800005 ], [ -121.04467739599994, 51.832027982000049 ], [ -121.04244854699995, 51.831931480000044 ], [ -121.042331049999987, 51.832965636000026 ], [ -121.039925779999976, 51.832861447000077 ], [ -121.039836582999968, 51.833646094000045 ], [ -121.038360725999937, 51.833582138000033 ], [ -121.038353118999979, 51.833649028000082 ], [ -121.032554443999942, 51.833397560000044 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025093", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "31.8", "sL_BldgLoss": "31.8", "sL_StrLoss": "31.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DFF6CADDA3465EC07F8AC2B2C2EF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.100237514999918, 51.871972191000104 ], [ -121.106041701, 51.872220228000067 ], [ -121.105736080999961, 51.874942474000115 ], [ -121.105383914999976, 51.874802301000038 ], [ -121.103068983999918, 51.874082906000083 ], [ -121.102705909999926, 51.873914500000119 ], [ -121.102303175999907, 51.873564396000035 ], [ -121.101791996999964, 51.87312001100004 ], [ -121.101276397999982, 51.872777801000069 ], [ -121.10019566599999, 51.872344540000036 ], [ -121.100237514999918, 51.871972191000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025096", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "39.2", "sL_BldgLoss": "39.2", "sL_StrLoss": "39.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000074C5189AE3475EC00BE52B1E6AE14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.122262496999895, 51.762092713000094 ], [ -121.122284871999952, 51.761553524000107 ], [ -121.12141596, 51.761539637000041 ], [ -121.121449534999954, 51.760730853000069 ], [ -121.123187328999961, 51.760758620000061 ], [ -121.123220873999941, 51.75994983500005 ], [ -121.123586171999946, 51.759955668000082 ], [ -121.124524197999904, 51.759970643000038 ], [ -121.124501850999977, 51.760509834000139 ], [ -121.124936298999955, 51.760516766000045 ], [ -121.124902783999971, 51.761325553000063 ], [ -121.124033874999952, 51.761311685000052 ], [ -121.124022697999976, 51.761581279000012 ], [ -121.123607162999932, 51.761574644000085 ], [ -121.123588241999968, 51.761574342000053 ], [ -121.123565882999941, 51.762113533000033 ], [ -121.122262496999895, 51.762092713000094 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025100", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5002500", "BldgCostT": "3450000", "sL_LossRatio": "1", "sL_AssetLoss": "313.2", "sL_BldgLoss": "313.2", "sL_StrLoss": "313.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000245F8DDC68435EC094290FA099E84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.048520412999906, 51.821257111000087 ], [ -121.048609898, 51.820468308000052 ], [ -121.043896508000017, 51.820264287000057 ], [ -121.043968327999963, 51.819631775000047 ], [ -121.044014419999925, 51.819618293000111 ], [ -121.044728987999946, 51.819199494000081 ], [ -121.045287903999963, 51.819048299000031 ], [ -121.046177411999963, 51.818909599000044 ], [ -121.046736207999984, 51.818926593000093 ], [ -121.047867898999954, 51.819117710000043 ], [ -121.04819379099996, 51.819133609000069 ], [ -121.048483093999934, 51.819086795000047 ], [ -121.048819021, 51.818949304000078 ], [ -121.049932892999948, 51.818244704000094 ], [ -121.05050729, 51.818060004000081 ], [ -121.05132388599999, 51.81793425400005 ], [ -121.05167959, 51.817879509000093 ], [ -121.052863410999976, 51.817572806000086 ], [ -121.053274594999948, 51.817388210000061 ], [ -121.053443331, 51.817275357 ], [ -121.053561403999964, 51.817196390000042 ], [ -121.053760306999948, 51.816919003000116 ], [ -121.053797915999922, 51.816560904000028 ], [ -121.053715699999941, 51.816232611000018 ], [ -121.053713, 51.815922208000103 ], [ -121.053785753999961, 51.815780652000051 ], [ -121.054167009, 51.81503890400009 ], [ -121.054237970999949, 51.814630900000104 ], [ -121.054152806999937, 51.814325902000057 ], [ -121.054142611999907, 51.814289386000112 ], [ -121.056695468999948, 51.814399698000074 ], [ -121.056961411999936, 51.812051069000027 ], [ -121.062757396999984, 51.812301308000073 ], [ -121.062645898999946, 51.813287152000072 ], [ -121.062516894999973, 51.813296790000031 ], [ -121.0617526139999, 51.813157309000069 ], [ -121.06058279399997, 51.813353791000118 ], [ -121.060389207999918, 51.813513305000086 ], [ -121.060295913999937, 51.813960489000046 ], [ -121.059850513999947, 51.814196897000066 ], [ -121.059696402, 51.814419103000084 ], [ -121.05926559599996, 51.814330798000128 ], [ -121.059593195999966, 51.814128593000156 ], [ -121.059616680999966, 51.813913501000059 ], [ -121.059417191999941, 51.813496195000077 ], [ -121.059028494999907, 51.813436396000057 ], [ -121.058241889999977, 51.813467708000069 ], [ -121.057855508999964, 51.81371409300003 ], [ -121.057357389999979, 51.814487501000038 ], [ -121.05726029500002, 51.815079911000041 ], [ -121.057350610999961, 51.815675306000109 ], [ -121.055984007999939, 51.817090902000125 ], [ -121.055282323, 51.817546702000065 ], [ -121.05512509, 51.817841510000115 ], [ -121.053534091999921, 51.818704610000111 ], [ -121.05307891599999, 51.819164606000101 ], [ -121.052724684999959, 51.819986304000089 ], [ -121.052071593999983, 51.820983304000045 ], [ -121.051910287999988, 51.821403722000092 ], [ -121.048520412999906, 51.821257111000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025102", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2133917", "BldgCostT": "1471667", "sL_LossRatio": "1", "sL_AssetLoss": "131.7", "sL_BldgLoss": "131.7", "sL_StrLoss": "131.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002105ECF69B445EC0B14EF81955E54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.071001036999945, 51.789806332000047 ], [ -121.075102745999956, 51.789983041000056 ], [ -121.074861001, 51.792126993000068 ], [ -121.074699039999956, 51.793563244000048 ], [ -121.068905469999947, 51.793313604000033 ], [ -121.069275508999951, 51.790035840000094 ], [ -121.07015892899993, 51.789770034000071 ], [ -121.071001036999945, 51.789806332000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025103", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "148", "sL_BldgLoss": "148", "sL_StrLoss": "148", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004EA513C709445EC088B25CDB80E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.060123503999961, 51.783954194000032 ], [ -121.065915783999941, 51.784204280000075 ], [ -121.065631030999953, 51.786725274000041 ], [ -121.065538289999935, 51.786735611000047 ], [ -121.06518980599995, 51.786729492000084 ], [ -121.064775105999956, 51.786664807000136 ], [ -121.06462768599998, 51.786621181000058 ], [ -121.064276958, 51.78651741500007 ], [ -121.063984713999957, 51.786430959000057 ], [ -121.063910498999931, 51.786409011000046 ], [ -121.063528068999972, 51.786341199000077 ], [ -121.062783885999977, 51.786269507000036 ], [ -121.060701200999929, 51.785886304000073 ], [ -121.060455787999942, 51.785803800000082 ], [ -121.060253709999984, 51.785661004000083 ], [ -121.059975525999931, 51.785262789000079 ], [ -121.060123503999961, 51.783954194000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025104", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1138250", "BldgCostT": "785000", "sL_LossRatio": "1", "sL_AssetLoss": "38.8", "sL_BldgLoss": "38.8", "sL_StrLoss": "38.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042D3D00E914B5EC016F761B560E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.179510496999981, 51.766365233000045 ], [ -121.179514238999943, 51.766331303000065 ], [ -121.180664810999971, 51.76669792700006 ], [ -121.181514109999966, 51.767213091000045 ], [ -121.181826388, 51.767506843000014 ], [ -121.182101009999982, 51.767984276000085 ], [ -121.182870910999981, 51.76853777700012 ], [ -121.182954055999971, 51.76859757700003 ], [ -121.183064691, 51.768646130000022 ], [ -121.184982404999943, 51.769487925000099 ], [ -121.184983899999906, 51.769488781000042 ], [ -121.184920811999973, 51.770061389000013 ], [ -121.183794833999968, 51.770013957000074 ], [ -121.18378066799994, 51.770142516000078 ], [ -121.17798958099999, 51.769898388000037 ], [ -121.178384619999989, 51.766317747000116 ], [ -121.179510496999981, 51.766365233000045 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025105", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "6450083", "BldgCostT": "4448333", "sL_LossRatio": "1", "sL_AssetLoss": "337.8", "sL_BldgLoss": "337.8", "sL_StrLoss": "337.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BC479110C0465EC0F55F1026FFE74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.103503540999924, 51.816554504000095 ], [ -121.103648934999967, 51.815258271000054 ], [ -121.10282440899999, 51.815222988000109 ], [ -121.103198654999943, 51.811886657000045 ], [ -121.100562967999963, 51.81177383200005 ], [ -121.100964724999983, 51.808193598000102 ], [ -121.106760446999928, 51.808441613000106 ], [ -121.106506708999959, 51.810705541000083 ], [ -121.109872399999944, 51.810849432000019 ], [ -121.109607073999925, 51.813218106000072 ], [ -121.109701473999962, 51.813222140000107 ], [ -121.109300387999909, 51.816802389000081 ], [ -121.103503540999924, 51.816554504000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025108", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "81", "sL_BldgLoss": "81", "sL_StrLoss": "81", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000063BF618133445EC0E9A6C5C744EE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.064039851999937, 51.861891554000046 ], [ -121.06375779199999, 51.861869413000107 ], [ -121.063024982999934, 51.861864797000067 ], [ -121.062483068999938, 51.861894873000047 ], [ -121.062621662999945, 51.860670887000047 ], [ -121.068424130999958, 51.860920828000118 ], [ -121.068224823999969, 51.86268305100004 ], [ -121.068079573999938, 51.862622746000049 ], [ -121.067795195999935, 51.862504703000113 ], [ -121.067537015999932, 51.862450028000076 ], [ -121.066280514999974, 51.862184006000071 ], [ -121.064750655999944, 51.861962679000079 ], [ -121.064519176999966, 51.861929199000073 ], [ -121.064039851999937, 51.861891554000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025109", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1872917", "BldgCostT": "1291667", "sL_LossRatio": "1", "sL_AssetLoss": "111.8", "sL_BldgLoss": "111.8", "sL_StrLoss": "111.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BB6A1AEB4D465EC03BE0DB70AFE44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.096866902999949, 51.78704292200009 ], [ -121.096946341999967, 51.785155794000033 ], [ -121.100423759999913, 51.785212046 ], [ -121.100446413999933, 51.784672866000058 ], [ -121.101750433999939, 51.784693934000131 ], [ -121.101705155999952, 51.785772295000086 ], [ -121.100401106999968, 51.785751226000116 ], [ -121.100378450999969, 51.786290408000077 ], [ -121.100813140999946, 51.786297432000069 ], [ -121.100767837999982, 51.78737579200007 ], [ -121.100333138999957, 51.787368769000082 ], [ -121.100321810999972, 51.787638358000088 ], [ -121.098148305000038, 51.787603210000036 ], [ -121.098136963999949, 51.787872799000063 ], [ -121.097702259999963, 51.787865764000117 ], [ -121.097690916999937, 51.78813535400009 ], [ -121.097256211999962, 51.788128317000066 ], [ -121.097244863999904, 51.788397908000029 ], [ -121.096375447999918, 51.788383831000019 ], [ -121.096364096999963, 51.788653420000045 ], [ -121.095059966999926, 51.788632291000098 ], [ -121.095094046, 51.787823523000021 ], [ -121.095963451000017, 51.787837610000068 ], [ -121.095997514999937, 51.787028842000041 ], [ -121.096866902999949, 51.78704292200009 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025110", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3414750", "BldgCostT": "2355000", "sL_LossRatio": "1", "sL_AssetLoss": "203.6", "sL_BldgLoss": "203.6", "sL_StrLoss": "203.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC18758C2F425EC0E57372AF61ED4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.032612312999959, 51.856142196000086 ], [ -121.031844107999945, 51.855940620000091 ], [ -121.030534721999985, 51.855597001000021 ], [ -121.030198179999985, 51.855429500000085 ], [ -121.030050081999917, 51.85524498800001 ], [ -121.030021474999955, 51.855120894000038 ], [ -121.029998472999978, 51.855021410000084 ], [ -121.029996392999962, 51.855012414000022 ], [ -121.030044009, 51.853904607000032 ], [ -121.029915305999936, 51.853461107000101 ], [ -121.029875604999958, 51.853207162000068 ], [ -121.029695767999954, 51.852057059000067 ], [ -121.034050124999965, 51.852245946000025 ], [ -121.033874481999959, 51.853788481000031 ], [ -121.039422447999939, 51.854028902000017 ], [ -121.039141737999941, 51.856496670000084 ], [ -121.038425597999904, 51.856420180000043 ], [ -121.037477107999962, 51.856493390000054 ], [ -121.037133927999946, 51.856462482000033 ], [ -121.036692425999959, 51.856422694000088 ], [ -121.036419505999902, 51.856398105000039 ], [ -121.036401993999945, 51.856395127000056 ], [ -121.035465897999984, 51.856235291000061 ], [ -121.035106093999929, 51.856233212000127 ], [ -121.034233609999959, 51.856342895000104 ], [ -121.033866600999971, 51.856353109000047 ], [ -121.033450796999944, 51.856305394000053 ], [ -121.033295919999929, 51.856275264000061 ], [ -121.032612312999959, 51.856142196000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025210", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.5", "sL_BldgLoss": "46.5", "sL_StrLoss": "46.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EFC606FB84265FC0DC0C9A0A2FF54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.598416029999939, 51.915401403000018 ], [ -124.59839687799996, 51.914862147000044 ], [ -124.598832875999946, 51.914856225000051 ], [ -124.598813718999935, 51.914316970000051 ], [ -124.600121698999899, 51.91429919200008 ], [ -124.60015045899999, 51.915108074000038 ], [ -124.607998451999961, 51.915001099000108 ], [ -124.608027353999987, 51.91580997800007 ], [ -124.598871190999887, 51.91593473400011 ], [ -124.598880770999969, 51.916204361000062 ], [ -124.598444759999921, 51.916210285000055 ], [ -124.598463913000018, 51.916749540000083 ], [ -124.597155862999941, 51.916767300000103 ], [ -124.597108016999982, 51.915419161000052 ], [ -124.598416029999939, 51.915401403000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025212", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "105", "sL_BldgLoss": "105", "sL_StrLoss": "105", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098FFCA29451C5FC0100BAD35B1DA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.438926636999966, 51.711857676000065 ], [ -124.43904064599991, 51.708656863000051 ], [ -124.43832333, 51.708647065000036 ], [ -124.43845117799999, 51.705058772000072 ], [ -124.440722813, 51.705089784000108 ], [ -124.444245705999919, 51.705137790000087 ], [ -124.444148832999957, 51.707866895000087 ], [ -124.445241950999971, 51.707881768000064 ], [ -124.445114649999951, 51.711470060000067 ], [ -124.444738806000018, 51.711464947000103 ], [ -124.444722064999937, 51.711936669000096 ], [ -124.443670477999916, 51.711922358000038 ], [ -124.438926636999966, 51.711857676000065 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025214", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "46.5", "sL_BldgLoss": "46.5", "sL_StrLoss": "46.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005BEE69DA071E5FC0C1B2EB41B5EA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.466957178999934, 51.833533392000092 ], [ -124.466221699999949, 51.833173094000067 ], [ -124.466091711999951, 51.833238587000032 ], [ -124.466033410999927, 51.834551694000048 ], [ -124.465806491999928, 51.835189069000116 ], [ -124.465917794999953, 51.832018768000097 ], [ -124.471729203000038, 51.832096384000103 ], [ -124.471603715999933, 51.835684295000128 ], [ -124.467906652999943, 51.83563495200017 ], [ -124.468157208999955, 51.83515419900008 ], [ -124.467907776999979, 51.834204193000076 ], [ -124.46800169899997, 51.83394221300005 ], [ -124.466957178999934, 51.833533392000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025217", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "59.9", "sL_BldgLoss": "59.9", "sL_StrLoss": "59.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D60B9115F4145FC0E0C97E4885DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.325147005999952, 51.741105879000017 ], [ -124.325153579999892, 51.740933990000045 ], [ -124.323702860999958, 51.740912742000042 ], [ -124.323840191999949, 51.737324688000065 ], [ -124.324449814999952, 51.737333621000069 ], [ -124.324488246999977, 51.736329037000068 ], [ -124.324521383999979, 51.735462803000104 ], [ -124.330319721999942, 51.735547593000085 ], [ -124.330241847, 51.737590303000076 ], [ -124.331082829999914, 51.737602576 ], [ -124.331010068999944, 51.739511913000065 ], [ -124.330946090999973, 51.741190637000045 ], [ -124.325147005999952, 51.741105879000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025222", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.7", "sL_BldgLoss": "55.7", "sL_StrLoss": "55.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009771B62D48045FC079E89A4DF0DC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.063344926999974, 51.728281796000012 ], [ -124.063357035999971, 51.728007908000038 ], [ -124.062877428999926, 51.727999785000122 ], [ -124.063007332999959, 51.725062104000095 ], [ -124.063036075999946, 51.724412027000085 ], [ -124.063819200999944, 51.724425290000092 ], [ -124.063820542999949, 51.724394946000082 ], [ -124.065113272999938, 51.724416829000084 ], [ -124.065140527999972, 51.723799777000089 ], [ -124.070936781999976, 51.723897714000067 ], [ -124.070884724, 51.725079861000019 ], [ -124.070778782000019, 51.727485486000084 ], [ -124.06948595899992, 51.727463667000059 ], [ -124.069458763999961, 51.728080717000047 ], [ -124.069155180999957, 51.728075591000035 ], [ -124.069141769999959, 51.72837982500004 ], [ -124.065632245999922, 51.728320512000053 ], [ -124.063344926999974, 51.728281796000012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025225", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999987250303691", "sL_AssetLoss": "84.7079", "sL_BldgLoss": "84.70682", "sL_StrLoss": "84.7", "sL_NStrLoss": "0.00682", "sL_ContLoss": "0.00108", "geom_point": "0101000020E6100000EA4F2C0182F65EC045549742D6BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.85168691799997, 51.476414299000083 ], [ -123.851598191999955, 51.476288995000075 ], [ -123.849382790999954, 51.476375890000071 ], [ -123.849195899000023, 51.47633320900006 ], [ -123.849451497999922, 51.476223514000061 ], [ -123.849825996999982, 51.476229202000084 ], [ -123.849851292999958, 51.476058293000072 ], [ -123.849416896999941, 51.475827598000109 ], [ -123.849097412999981, 51.475784799000039 ], [ -123.848841078999925, 51.475825372000038 ], [ -123.848920345999915, 51.474201611000076 ], [ -123.854683268999935, 51.474310533000043 ], [ -123.854622028999984, 51.475568372000076 ], [ -123.854409709999942, 51.475719281000096 ], [ -123.852824192999947, 51.476297614 ], [ -123.851483602999934, 51.47699969600005 ], [ -123.850978091999963, 51.476958398000079 ], [ -123.850902104999989, 51.47677040500011 ], [ -123.851616983999946, 51.476476997000134 ], [ -123.85168691799997, 51.476414299000083 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025226", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "55.9", "sL_BldgLoss": "55.9", "sL_StrLoss": "55.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000BD40832CCF095FC0CB1817F5E6C34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.149226069999969, 51.532632656000018 ], [ -124.149259670999982, 51.531833669000065 ], [ -124.149259024999978, 51.531833659000057 ], [ -124.14931968599997, 51.53039113500008 ], [ -124.149365677999981, 51.529297376000038 ], [ -124.1513477029999, 51.529165585000051 ], [ -124.15251660399997, 51.528604484000027 ], [ -124.153872484999937, 51.528124499000043 ], [ -124.154512902999926, 51.527731501000062 ], [ -124.154574220999962, 51.527653782000101 ], [ -124.155641448999972, 51.527671082000047 ], [ -124.155640190999961, 51.527701077000089 ], [ -124.156453918999915, 51.52771426100005 ], [ -124.156425407999976, 51.528394941000087 ], [ -124.156414752999964, 51.528649295000065 ], [ -124.156875164999946, 51.52865675200006 ], [ -124.156724872999959, 51.532245308000043 ], [ -124.155018656999957, 51.532217665000125 ], [ -124.154997330999919, 51.532726349000065 ], [ -124.149226069999969, 51.532632656000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025227", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009A1968043C1C5FC08B229CFD9EDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.439161805999973, 51.721167717000121 ], [ -124.444958464999971, 51.721246698000122 ], [ -124.44483110399996, 51.724834945000062 ], [ -124.444551778999951, 51.724831145000067 ], [ -124.444536518999925, 51.725260951000053 ], [ -124.443118361999922, 51.725241652000093 ], [ -124.443091306000028, 51.726002985000044 ], [ -124.441816011999933, 51.725985615000113 ], [ -124.437294020999957, 51.725923911000081 ], [ -124.437422004999959, 51.722335675000124 ], [ -124.438444066999963, 51.722349638000033 ], [ -124.438840063999947, 51.722355046000047 ], [ -124.438867191999947, 51.721593711000082 ], [ -124.439146493999914, 51.721597523000078 ], [ -124.439161805999973, 51.721167717000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025229", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "15220207", "BldgCostT": "6476684", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005C1AE0FE732E5FC06BDE8A27AFE74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.722866229999909, 51.811133456000029 ], [ -124.722936864999951, 51.808715143000093 ], [ -124.723041793999954, 51.80873940700009 ], [ -124.724908403999947, 51.809008501000079 ], [ -124.72665039099995, 51.809037001000057 ], [ -124.72759042, 51.808933098000118 ], [ -124.728031200999965, 51.808729400000161 ], [ -124.728608122999958, 51.808648207000033 ], [ -124.728750377999916, 51.808615131000025 ], [ -124.72867528099999, 51.811198050000094 ], [ -124.722866229999909, 51.811133456000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025231", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F95A23C44D1C5FC0432585E4AAF24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.439294294999982, 51.89692159100013 ], [ -124.439363893999953, 51.894975752000036 ], [ -124.43942799499996, 51.894999412000104 ], [ -124.43996499299999, 51.895010806000123 ], [ -124.440552205999936, 51.894734498000041 ], [ -124.441287693, 51.89455509500003 ], [ -124.442461209999919, 51.894459701000052 ], [ -124.442986491999974, 51.89452521400009 ], [ -124.443912002999966, 51.894828513000107 ], [ -124.445024800999988, 51.895057792000088 ], [ -124.445180932999961, 51.895130647000101 ], [ -124.445114296999975, 51.897000551000104 ], [ -124.439294294999982, 51.89692159100013 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025233", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5010290", "BldgCostT": "3455373", "sL_LossRatio": "0.999938660950626", "sL_AssetLoss": "256.60652", "sL_BldgLoss": "256.59078", "sL_StrLoss": "256.50208", "sL_NStrLoss": "0.0887", "sL_ContLoss": "0.01574", "geom_point": "0101000020E61000004623C065A5FC5EC0B0C88E1179BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.945978089999954, 51.466436808000061 ], [ -123.945721956999975, 51.46329782800008 ], [ -123.945547773999934, 51.461161932000017 ], [ -123.941843255999984, 51.461193965000049 ], [ -123.939882871999927, 51.461185743000087 ], [ -123.939970674999969, 51.459306923000028 ], [ -123.945731871999968, 51.45941123100004 ], [ -123.945670691, 51.460724032000016 ], [ -123.948956531999926, 51.460783392000039 ], [ -123.949562812999957, 51.46079433400012 ], [ -123.949476579999967, 51.462648113000036 ], [ -123.951315969999925, 51.462681291000081 ], [ -123.951173623999978, 51.46574371500008 ], [ -123.952358436999987, 51.465765070000067 ], [ -123.952191709999937, 51.46935356299999 ], [ -123.94941726799999, 51.469303538000126 ], [ -123.949383933999911, 51.470019932000127 ], [ -123.94620876399992, 51.469962597000098 ], [ -123.946157955, 51.469186058000069 ], [ -123.945978089999954, 51.466436808000061 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025234", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "66456000", "BldgCostT": "46800000", "sL_LossRatio": "0.992243915485424", "sL_AssetLoss": "18.695", "sL_BldgLoss": "18.55", "sL_StrLoss": "2.35", "sL_NStrLoss": "16.2", "sL_ContLoss": "0.145", "geom_point": "0101000020E6100000DF064A4497F65EC0F01FE251F0DC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.850193594999936, 51.727653940000053 ], [ -123.850211827999914, 51.727282437000056 ], [ -123.849748702999989, 51.727273729000032 ], [ -123.849793615999886, 51.726358802000071 ], [ -123.849820151999936, 51.725818192000091 ], [ -123.850585480999939, 51.725619697000127 ], [ -123.850890118999985, 51.725626794000092 ], [ -123.850971507999972, 51.72534759900001 ], [ -123.851476379999937, 51.725236492000093 ], [ -123.851703807999939, 51.724964496000084 ], [ -123.851469291999948, 51.724903294000029 ], [ -123.850790411999967, 51.724998700000121 ], [ -123.850485087, 51.724945999000084 ], [ -123.850468788999976, 51.724847693000108 ], [ -123.850910178999982, 51.724377702000041 ], [ -123.850846181999884, 51.724071491000096 ], [ -123.850988304999973, 51.723936207000115 ], [ -123.85156580899995, 51.723850800000029 ], [ -123.851678650999972, 51.723719248000116 ], [ -123.85265493899999, 51.723737589000038 ], [ -123.8530669, 51.724316512000051 ], [ -123.854092188999942, 51.724956002000077 ], [ -123.854816790999976, 51.72497880700012 ], [ -123.856134447999963, 51.724808531000072 ], [ -123.855989852, 51.72776277 ], [ -123.85507989499996, 51.727745704 ], [ -123.850193594999936, 51.727653940000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025235", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63.9", "sL_BldgLoss": "63.9", "sL_StrLoss": "63.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DDF037B1B2085FC06A93588C19D14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.1330490819999, 51.632859492000129 ], [ -124.134951295999926, 51.632103211000128 ], [ -124.135818774999947, 51.632121696000077 ], [ -124.136216623999957, 51.632360998000138 ], [ -124.136607096999924, 51.632383794000063 ], [ -124.136892302999925, 51.632264195000062 ], [ -124.137485778999945, 51.631745693000028 ], [ -124.137870408999959, 51.631534986000119 ], [ -124.138378901999957, 51.631044983000031 ], [ -124.138449410999939, 51.631003227000129 ], [ -124.138876380999989, 51.631010193000108 ], [ -124.138752885999935, 51.633923353000064 ], [ -124.138724268, 51.634598370000084 ], [ -124.138276170999944, 51.634591060000048 ], [ -124.138249087999924, 51.635229682000066 ], [ -124.136690969999975, 51.635204247000082 ], [ -124.132464390999971, 51.635135148000138 ], [ -124.132556826999959, 51.63296212700002 ], [ -124.1330490819999, 51.632859492000129 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025236", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "61.3", "sL_BldgLoss": "61.3", "sL_StrLoss": "61.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F219FD26DC075FC0842EC0C2F2D64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.120373481999977, 51.681348157000087 ], [ -124.120385109999972, 51.681076849000078 ], [ -124.119710174999952, 51.681065740000122 ], [ -124.119725793999976, 51.680701462000101 ], [ -124.119335085, 51.680695031000042 ], [ -124.119488943999897, 51.677107036000073 ], [ -124.122925816999896, 51.677163571000065 ], [ -124.125279148999979, 51.677202223000045 ], [ -124.125263575999938, 51.67756650300003 ], [ -124.125654259999962, 51.677572915000091 ], [ -124.125642663999926, 51.677844224000054 ], [ -124.126317550999929, 51.677855297000058 ], [ -124.126164246999977, 51.681443299000058 ], [ -124.122745030999951, 51.681387157000124 ], [ -124.120373481999977, 51.681348157000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025240", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C561FE4444315FC0032B7FA590DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.766944117999984, 51.713526248000051 ], [ -124.77274029499992, 51.713588614000081 ], [ -124.772639791999921, 51.717177213000042 ], [ -124.766843142999932, 51.71711484300004 ], [ -124.766944117999984, 51.713526248000051 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025242", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "128.2", "sL_BldgLoss": "128.2", "sL_StrLoss": "128.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A80A1DA6C3025FC065021B6369CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.040276045999974, 51.615643481000077 ], [ -124.0403037299999, 51.615023026000138 ], [ -124.040289587999951, 51.61502278200004 ], [ -124.040297305999943, 51.614849809000155 ], [ -124.039229458999941, 51.614831455000157 ], [ -124.039389630999935, 51.611243346000066 ], [ -124.039618479999987, 51.611247281000047 ], [ -124.039652466999939, 51.610485751000063 ], [ -124.041253689999948, 51.610513267000108 ], [ -124.041299462999945, 51.609486790000119 ], [ -124.044184974999922, 51.609536318000075 ], [ -124.047080581999936, 51.609585947000035 ], [ -124.046921044999948, 51.613174072000085 ], [ -124.046172810999934, 51.613161255000122 ], [ -124.046064855999987, 51.61558799400003 ], [ -124.046057972999975, 51.615742689000029 ], [ -124.045266896999976, 51.615729132000062 ], [ -124.044578415, 51.615717330000088 ], [ -124.040276045999974, 51.615643481000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025244", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "50.8", "sL_BldgLoss": "50.8", "sL_StrLoss": "50.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080A3F4B7CA185FC0D0404DA922CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.386892013999955, 51.614566307000096 ], [ -124.387525058999955, 51.614575259000084 ], [ -124.387555806999956, 51.614687993000118 ], [ -124.388195179999968, 51.615300402000059 ], [ -124.388308909999949, 51.615703393000111 ], [ -124.388490479999987, 51.615927003000124 ], [ -124.39011809499999, 51.617247316000068 ], [ -124.391027493999928, 51.618171590000074 ], [ -124.391406712999967, 51.618724194000073 ], [ -124.391446271999911, 51.618833456000104 ], [ -124.390287233999928, 51.61881710500009 ], [ -124.390269551999936, 51.618816856000095 ], [ -124.390186724999978, 51.621076577000025 ], [ -124.384403385999988, 51.620994813000081 ], [ -124.384535384999978, 51.617406284000069 ], [ -124.385130274999966, 51.617414708000069 ], [ -124.38521961, 51.614984796000023 ], [ -124.385504382999954, 51.614988828000023 ], [ -124.385520626999934, 51.61454690300009 ], [ -124.386892013999955, 51.614566307000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025246", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "65.9", "sL_BldgLoss": "65.9", "sL_StrLoss": "65.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000AA5589EC62155FC0F603057B9FDE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.331340828999913, 51.737405807000087 ], [ -124.337130380999938, 51.737490119000022 ], [ -124.337021, 51.740370807000069 ], [ -124.336994136999948, 51.741078188000046 ], [ -124.331677148999944, 51.741000768000085 ], [ -124.331195055999942, 51.740993737000082 ], [ -124.33124625, 51.739650241000035 ], [ -124.33133177400002, 51.737405675000083 ], [ -124.331340828999913, 51.737405807000087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025248", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "83.2", "sL_BldgLoss": "83.2", "sL_StrLoss": "83.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EE0057CB80FA5EC0F2E615F483C84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.912395578, 51.568446961000063 ], [ -123.912315008999954, 51.568341392000072 ], [ -123.91117660799992, 51.568349910000059 ], [ -123.91104267799993, 51.56818899600011 ], [ -123.911790492999927, 51.567274592000111 ], [ -123.911820112000029, 51.566627988000072 ], [ -123.912535989999938, 51.565596898000074 ], [ -123.912327385999944, 51.565248000000103 ], [ -123.91171460899993, 51.564910385000054 ], [ -123.911431114999942, 51.564508797000016 ], [ -123.911320222999962, 51.564447188000102 ], [ -123.916452016, 51.564541175000073 ], [ -123.916433605999927, 51.564929689000039 ], [ -123.916498439999913, 51.564930875000044 ], [ -123.916328411999956, 51.568518966000084 ], [ -123.912395578, 51.568446961000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025249", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.3", "sL_BldgLoss": "60.3", "sL_StrLoss": "60.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000039E2B98CD5155FC0D067384CD1DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.34399871, 51.739008392000095 ], [ -124.34412640399999, 51.73901024000007 ], [ -124.343990727999966, 51.742598312000112 ], [ -124.338191431999988, 51.742514215000021 ], [ -124.338276312999966, 51.740277341000066 ], [ -124.338327580999987, 51.738926150000104 ], [ -124.34399871, 51.739008392000095 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025250", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61.8", "sL_BldgLoss": "61.8", "sL_StrLoss": "61.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000434E884E091C5FC08F1B7E375DDB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.435234266999942, 51.711948504000084 ], [ -124.44102970099999, 51.712027684000134 ], [ -124.440942292999949, 51.714484636000108 ], [ -124.440902043, 51.715615957000104 ], [ -124.435106134999941, 51.715536771000068 ], [ -124.435155930999898, 51.71414233200003 ], [ -124.435234266999942, 51.711948504000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025253", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999971155865149", "sL_AssetLoss": "81.81906", "sL_BldgLoss": "81.8167", "sL_StrLoss": "81.8", "sL_NStrLoss": "0.0167", "sL_ContLoss": "0.00236", "geom_point": "0101000020E610000079754CE5C6EA5EC0521CD5236C9E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.66645140699994, 51.23916457600005 ], [ -123.666640402999974, 51.235575685000072 ], [ -123.667274302999942, 51.235588771000089 ], [ -123.66804688399999, 51.236165906000124 ], [ -123.668760180999968, 51.23697199300004 ], [ -123.669492613999935, 51.237111596000013 ], [ -123.669771122999919, 51.237469 ], [ -123.66989869599999, 51.237477615000067 ], [ -123.669999409999974, 51.237386402000084 ], [ -123.669949382999945, 51.23689220000005 ], [ -123.670432778999952, 51.236647294000115 ], [ -123.670558104999913, 51.236395201000107 ], [ -123.67050598799996, 51.235792706000019 ], [ -123.670647615999911, 51.235755698000048 ], [ -123.67111249899996, 51.236167301000087 ], [ -123.671245007, 51.236363893000032 ], [ -123.670836305999927, 51.236915 ], [ -123.670423395999961, 51.237968904000077 ], [ -123.670126909999937, 51.238374809000085 ], [ -123.67010169199996, 51.238599914000076 ], [ -123.670324609999952, 51.239148209000071 ], [ -123.670360054999918, 51.239245210000071 ], [ -123.66645140699994, 51.23916457600005 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025256", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.999894198440977", "sL_AssetLoss": "187.1428", "sL_BldgLoss": "187.123", "sL_StrLoss": "187", "sL_NStrLoss": "0.123", "sL_ContLoss": "0.0198", "geom_point": "0101000020E6100000196161F337055FC0D36F579605B54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.081417927999951, 51.417252892000093 ], [ -124.081422592, 51.417145604000069 ], [ -124.080628003999891, 51.417132171000091 ], [ -124.08065292699996, 51.41655915500013 ], [ -124.078798957999965, 51.416527791000114 ], [ -124.078688888, 51.412954584000012 ], [ -124.073520383999934, 51.413258440000092 ], [ -124.073543043999948, 51.412739328000043 ], [ -124.074837869999953, 51.412761297000074 ], [ -124.074865827999943, 51.412120359000092 ], [ -124.07560296299998, 51.41213285900006 ], [ -124.0756055, 51.41207467600006 ], [ -124.07623805599998, 51.41208540000013 ], [ -124.076267214999959, 51.411416492000058 ], [ -124.082022469999956, 51.411513896000024 ], [ -124.081997672999975, 51.412084467000035 ], [ -124.082131183999962, 51.412086723000122 ], [ -124.083968032999962, 51.412117746000021 ], [ -124.083949838999928, 51.412536846000108 ], [ -124.085800848999966, 51.412568079 ], [ -124.086264735999947, 51.417334709000016 ], [ -124.081417927999951, 51.417252892000093 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025259", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "44", "sL_BldgLoss": "44", "sL_StrLoss": "44", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000397D7F7B452D5FC0A63110BA3AE74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.709223362, 51.801030100000077 ], [ -124.71388936399994, 51.801082575000109 ], [ -124.713783832, 51.804670832000049 ], [ -124.71364397799999, 51.804669261000093 ], [ -124.713618482999905, 51.805535934000041 ], [ -124.71307491, 51.805529830000054 ], [ -124.712277855999929, 51.805520875000092 ], [ -124.708308229999915, 51.805476192000057 ], [ -124.708244549999918, 51.807631941000068 ], [ -124.708202384999979, 51.809059163000043 ], [ -124.70747314599997, 51.809050939000059 ], [ -124.707463974999897, 51.809361181000035 ], [ -124.703853051999928, 51.809320393000107 ], [ -124.703782773999961, 51.811691069000098 ], [ -124.699817203999984, 51.811646144000051 ], [ -124.698119835999989, 51.811626874000105 ], [ -124.698909586999932, 51.811221809000088 ], [ -124.700226292999901, 51.809944195000085 ], [ -124.701349607999973, 51.80936029300009 ], [ -124.702836311999988, 51.807990197000102 ], [ -124.704690108999927, 51.806795289 ], [ -124.706308547999967, 51.805448364000071 ], [ -124.707810361999989, 51.805465310000088 ], [ -124.707831611999936, 51.804746185000099 ], [ -124.708251998999913, 51.804701703000042 ], [ -124.70922359399999, 51.804328590000068 ], [ -124.709940406999976, 51.803697706000058 ], [ -124.710228399999906, 51.803234806000063 ], [ -124.710237013999958, 51.802749090000141 ], [ -124.709484205999942, 51.80198579700005 ], [ -124.709276023999948, 51.801485906000089 ], [ -124.709223362, 51.801030100000077 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025260", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999936462435901", "sL_AssetLoss": "92.54368", "sL_BldgLoss": "92.5378", "sL_StrLoss": "92.5", "sL_NStrLoss": "0.0378", "sL_ContLoss": "0.00588", "geom_point": "0101000020E610000096D8AD4CD5035FC0FC8736F829B64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.057119972999914, 51.421526639 ], [ -124.062876504999934, 51.421625013000046 ], [ -124.062758788999972, 51.424306126 ], [ -124.06274283, 51.424669580000106 ], [ -124.056975758999926, 51.424801509000126 ], [ -124.057095147999974, 51.422090404000123 ], [ -124.057119972999914, 51.421526639 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025261", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44", "sL_BldgLoss": "44", "sL_StrLoss": "44", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001E62303DA92D5FC07FE8D54241E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.710947376999925, 51.765454143000078 ], [ -124.716750346999916, 51.765519343000037 ], [ -124.716645136999887, 51.769107719000047 ], [ -124.715981863999957, 51.769100282000075 ], [ -124.715961949999908, 51.769779036000052 ], [ -124.710158416999917, 51.769713795000058 ], [ -124.710264159999923, 51.766125427000112 ], [ -124.710927387, 51.766132897000062 ], [ -124.710947376999925, 51.765454143000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025264", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999976189322605", "sL_AssetLoss": "84.41591", "sL_BldgLoss": "84.4139", "sL_StrLoss": "84.4", "sL_NStrLoss": "0.0139", "sL_ContLoss": "0.00201", "geom_point": "0101000020E61000002E72B28172F45EC0D968EF42A9BD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.816695938999885, 51.479878530000086 ], [ -123.822459522999964, 51.479989085000057 ], [ -123.82228216399993, 51.483577331000063 ], [ -123.816518111999926, 51.483466768000042 ], [ -123.816695938999885, 51.479878530000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025269", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "48.7", "sL_BldgLoss": "48.7", "sL_StrLoss": "48.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000041BC8D51C7185FC013F7B3B3C3D24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.38433813099995, 51.644762227000115 ], [ -124.390124601999929, 51.644843992000119 ], [ -124.389992977999924, 51.648432435000061 ], [ -124.384206034999963, 51.64835066300008 ], [ -124.38433813099995, 51.644762227000115 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025274", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.3", "sL_BldgLoss": "60.3", "sL_StrLoss": "60.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000057BC0FA87075FC0D2B5272FCFDC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.12096072699994, 51.723028172000092 ], [ -124.121528206999969, 51.72303749600011 ], [ -124.121374352999922, 51.726625339000037 ], [ -124.120806825999964, 51.726616013000054 ], [ -124.119643350999965, 51.726596887000063 ], [ -124.119617316999935, 51.72720338200002 ], [ -124.119237686999938, 51.727197138000122 ], [ -124.113820517999898, 51.7271079120001 ], [ -124.113974990999949, 51.723520081000103 ], [ -124.11570586799999, 51.723548618000095 ], [ -124.115727712999913, 51.723040719000032 ], [ -124.115731954999944, 51.722942123000074 ], [ -124.12096072699994, 51.723028172000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025278", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3155417", "BldgCostT": "1966667", "sL_LossRatio": "0.926839103635002", "sL_AssetLoss": "173.59", "sL_BldgLoss": "160.89", "sL_StrLoss": "156.3", "sL_NStrLoss": "4.59", "sL_ContLoss": "12.7", "geom_point": "0101000020E6100000FF7C199482095FC001B1D78194CF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.15564338899999, 51.61386707700008 ], [ -124.156572819999909, 51.613882104000027 ], [ -124.156422211999981, 51.61747036400002 ], [ -124.155794613999916, 51.617460218000069 ], [ -124.155788993999948, 51.61759407900005 ], [ -124.154089518999953, 51.617566587000034 ], [ -124.15230682299989, 51.617537721000048 ], [ -124.152232564999949, 51.619302765000093 ], [ -124.15217863299992, 51.620584563000065 ], [ -124.15088392899996, 51.620563581000077 ], [ -124.149234981999911, 51.620536837000053 ], [ -124.149179723999964, 51.621848 ], [ -124.149084629999919, 51.624104233000033 ], [ -124.147584321999915, 51.624079879000099 ], [ -124.147462844999893, 51.626959368000051 ], [ -124.146740642999987, 51.62694763800004 ], [ -124.146722440999909, 51.627378886000081 ], [ -124.14655550599997, 51.627376173000187 ], [ -124.146527674999959, 51.628035489000098 ], [ -124.146181587999962, 51.628029866000105 ], [ -124.146165982999904, 51.628399497000039 ], [ -124.14515230799995, 51.628383021000026 ], [ -124.141678483999954, 51.628326488000035 ], [ -124.142497008999968, 51.626976085000116 ], [ -124.14271908399995, 51.626641406000019 ], [ -124.14292512499992, 51.625668606000033 ], [ -124.143535909999969, 51.624089189000067 ], [ -124.143454398999936, 51.623127811000131 ], [ -124.14369611399998, 51.622459895000112 ], [ -124.143967111, 51.622242010000058 ], [ -124.144523677, 51.622002696000081 ], [ -124.145861692000011, 51.62183609200008 ], [ -124.146919586999957, 51.621367501000115 ], [ -124.147415393999907, 51.621002910000065 ], [ -124.147702204999945, 51.620289393000078 ], [ -124.147694797999975, 51.620011700000134 ], [ -124.148071295999941, 51.619467607000047 ], [ -124.148740989999979, 51.619137211000059 ], [ -124.14921689399992, 51.618548996000065 ], [ -124.149776408999955, 51.618336784000057 ], [ -124.150813101999958, 51.618200087000027 ], [ -124.151635782999932, 51.617634691000021 ], [ -124.15205730299999, 51.617163305000098 ], [ -124.152723396999988, 51.616689003 ], [ -124.152759793999934, 51.616401292000099 ], [ -124.152260198999926, 51.616036704000081 ], [ -124.152241020999924, 51.615914836000108 ], [ -124.152207986999912, 51.615704901000129 ], [ -124.152302496999965, 51.615415789000046 ], [ -124.15277581299992, 51.614790489000036 ], [ -124.153493779999977, 51.614568302000094 ], [ -124.153947894999973, 51.614284901000104 ], [ -124.155255576999977, 51.614038496000077 ], [ -124.155601188999952, 51.613936010000067 ], [ -124.15564338899999, 51.61386707700008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025283", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "114", "sL_BldgLoss": "114", "sL_StrLoss": "114", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D5963AC8AB195FC03E1159DEB4D44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.398454452999957, 51.663946407000054 ], [ -124.398458790999939, 51.663827553000047 ], [ -124.3970061039999, 51.663807169000073 ], [ -124.397137200999964, 51.660218771000068 ], [ -124.398428086999942, 51.660236886000085 ], [ -124.398456994999918, 51.659444902000125 ], [ -124.404245425999974, 51.659525950000067 ], [ -124.404234046999974, 51.659838871000034 ], [ -124.405125613999985, 51.659851328000087 ], [ -124.404995171999971, 51.663439737000054 ], [ -124.404265225999907, 51.663429538000067 ], [ -124.404243479999977, 51.664027455000031 ], [ -124.398454452999957, 51.663946407000054 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025285", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999964722650222", "sL_AssetLoss": "93.82791", "sL_BldgLoss": "93.8246", "sL_StrLoss": "93.8", "sL_NStrLoss": "0.0246", "sL_ContLoss": "0.00331", "geom_point": "0101000020E61000007D2105CB28075FC05079AECE35B44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.109135145999986, 51.406634694000097 ], [ -124.1148898499999, 51.406730432000131 ], [ -124.114797047999943, 51.40890326100002 ], [ -124.109021382999941, 51.409290136000045 ], [ -124.109135145999986, 51.406634694000097 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025286", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A95C34A6D8185FC0B5089CD79EF34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.385686029999974, 51.901646393000064 ], [ -124.391506564999972, 51.9017280710001 ], [ -124.391444366, 51.903415014000096 ], [ -124.39077809900003, 51.903766907000033 ], [ -124.388301588999951, 51.905272588000102 ], [ -124.385553266999977, 51.905233985000024 ], [ -124.385686029999974, 51.901646393000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025291", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000363B738BD01B5FC050223E8764F24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.433468180999967, 51.895148042000073 ], [ -124.433475570999946, 51.894942193000119 ], [ -124.433068078999924, 51.894936633000057 ], [ -124.433098575999935, 51.894087377000041 ], [ -124.430205672999975, 51.894047860000043 ], [ -124.430759517999931, 51.893468395000113 ], [ -124.430952003999934, 51.893133700000114 ], [ -124.431079414, 51.892521301000066 ], [ -124.431317291999989, 51.892266405000044 ], [ -124.431705786999927, 51.892108294000124 ], [ -124.432542687999955, 51.891972998000021 ], [ -124.433691299999978, 51.891940210000023 ], [ -124.434644786999968, 51.892262089 ], [ -124.436165007999961, 51.892522708000058 ], [ -124.437174508999959, 51.893210587000056 ], [ -124.437914409000015, 51.894073684000091 ], [ -124.438505987000013, 51.894399901000028 ], [ -124.438911012999952, 51.894808587000064 ], [ -124.439297808, 51.894951358000093 ], [ -124.439287937999921, 51.895227298000094 ], [ -124.433468180999967, 51.895148042000073 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025292", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "56.8", "sL_BldgLoss": "56.8", "sL_StrLoss": "56.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000095F9C3A6401B5FC02AB09D7BD1D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.42567677699999, 51.691687232000113 ], [ -124.431469515999936, 51.691766898 ], [ -124.431431690999887, 51.692824153000075 ], [ -124.43134113399995, 51.695355229000086 ], [ -124.42599468799996, 51.695281711000085 ], [ -124.425965357999971, 51.696098662000033 ], [ -124.424883286999915, 51.69608375100006 ], [ -124.420172056999959, 51.696018717000115 ], [ -124.420191695999961, 51.695473716000095 ], [ -124.420301352999928, 51.692430401000145 ], [ -124.425647441999956, 51.692504185000111 ], [ -124.42567677699999, 51.691687232000113 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025296", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.8", "sL_BldgLoss": "58.8", "sL_StrLoss": "58.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008AFD9A18CF85EC0EA72AD6A87BD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.880965649999908, 51.482092253000069 ], [ -123.880967128999956, 51.482061484000077 ], [ -123.879875209999952, 51.482041125000066 ], [ -123.879957514999987, 51.480330701000121 ], [ -123.879990870999933, 51.47963746300011 ], [ -123.880203812, 51.479655792000088 ], [ -123.881096185999965, 51.479631600000062 ], [ -123.884628694999961, 51.479101801000105 ], [ -123.886308905999968, 51.478899607000045 ], [ -123.886887937999958, 51.478899975000047 ], [ -123.886823442999955, 51.48024472500002 ], [ -123.886729681999981, 51.482199550000097 ], [ -123.880965649999908, 51.482092253000069 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025300", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.4", "sL_BldgLoss": "55.4", "sL_StrLoss": "55.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000003E49D303931C5FC0FB82CC8415E04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.443751857000024, 51.752861634000084 ], [ -124.44376704199999, 51.752434426000079 ], [ -124.44322266599994, 51.752427021000059 ], [ -124.443236394999971, 51.752040878000123 ], [ -124.442974581999934, 51.752037315000074 ], [ -124.44310217599994, 51.748449161000096 ], [ -124.443579473999975, 51.748455655000022 ], [ -124.443579555, 51.748453373000075 ], [ -124.446597301999972, 51.748494383000036 ], [ -124.449379833999913, 51.748532128000065 ], [ -124.449379806999957, 51.748532893000096 ], [ -124.449942211999911, 51.748540514000098 ], [ -124.44981517799999, 51.752128674000048 ], [ -124.449638397999948, 51.752126280000063 ], [ -124.449633927999955, 51.752252525000131 ], [ -124.449625095, 51.752501979000087 ], [ -124.449568271999965, 51.752501210000034 ], [ -124.449552720999918, 51.752940380000027 ], [ -124.447982402999941, 51.752919091000081 ], [ -124.443751857000024, 51.752861634000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025301", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "79.9", "sL_BldgLoss": "79.9", "sL_StrLoss": "79.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000D883165772F5FC0F1AEA33FEEDE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.736906045999916, 51.740290506000086 ], [ -124.736922466999928, 51.739721145000019 ], [ -124.73871724899999, 51.739740947 ], [ -124.738725308999946, 51.739461090000106 ], [ -124.744524876999918, 51.739524884000041 ], [ -124.744503766999912, 51.74026125000011 ], [ -124.745889572999914, 51.740276450000067 ], [ -124.745786809999984, 51.743864937000104 ], [ -124.742527917999979, 51.743829165000129 ], [ -124.742524678, 51.743942018000084 ], [ -124.738804114999979, 51.743901065000031 ], [ -124.738890807999951, 51.743698605000077 ], [ -124.738579496999989, 51.742768614000148 ], [ -124.737859203999946, 51.742131908000076 ], [ -124.737344905999919, 51.741203396000103 ], [ -124.73680407599997, 51.741120339000055 ], [ -124.736828033999956, 51.740289644000029 ], [ -124.736906045999916, 51.740290506000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025305", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "104", "sL_BldgLoss": "104", "sL_StrLoss": "104", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DC193B1B91325FC0068BDC3600DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.78727916299999, 51.714163873000082 ], [ -124.787294633999949, 51.713604805000095 ], [ -124.787216198999914, 51.713603974000073 ], [ -124.787283421, 51.711174688 ], [ -124.786838546999945, 51.711169967000039 ], [ -124.786937871999953, 51.707581336 ], [ -124.792733290999962, 51.707642689000068 ], [ -124.792666375999943, 51.710071986000109 ], [ -124.793111239999931, 51.710076684000086 ], [ -124.793102108999946, 51.710408281000056 ], [ -124.793499248, 51.710412473000069 ], [ -124.793400451999958, 51.714001101000122 ], [ -124.793081717999911, 51.713997737000049 ], [ -124.793075453999904, 51.714225209000098 ], [ -124.78727916299999, 51.714163873000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025308", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "62.2", "sL_BldgLoss": "62.2", "sL_StrLoss": "62.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F34DC385B6025FC0148C103FFBCC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.041448613999947, 51.60293679600003 ], [ -124.041474989999983, 51.602154891000069 ], [ -124.040816121999967, 51.602358602000088 ], [ -124.040554277999917, 51.602288794000074 ], [ -124.040303708, 51.6020836860001 ], [ -124.039856209999954, 51.602060906000105 ], [ -124.039607214999961, 51.601937006000099 ], [ -124.039643909999981, 51.601622295000077 ], [ -124.040216996999959, 51.600763503000039 ], [ -124.040906300999893, 51.599399086000076 ], [ -124.040853315999925, 51.599164642000041 ], [ -124.043652815999934, 51.599212718000096 ], [ -124.04363152799999, 51.599690825000032 ], [ -124.043986137, 51.599696910000077 ], [ -124.04396309699996, 51.600214419000039 ], [ -124.044416654999949, 51.600222200000111 ], [ -124.044380415999967, 51.601036381000092 ], [ -124.044256933999989, 51.603810354000146 ], [ -124.042948257999953, 51.603787898000107 ], [ -124.041691518999968, 51.603766319000044 ], [ -124.041448613999947, 51.60293679600003 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025309", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "60.2", "sL_BldgLoss": "60.2", "sL_StrLoss": "60.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D8C090B41F1A5FC0F60192FA7CD44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.405356083999934, 51.658229470000016 ], [ -124.411144368999928, 51.658310170000064 ], [ -124.411014423999958, 51.661898590000085 ], [ -124.405225665999978, 51.661817885000048 ], [ -124.405356083999934, 51.658229470000016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025310", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.1", "sL_BldgLoss": "43.1", "sL_StrLoss": "43.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000042AF6097F83E5FC0FC9AF6DEA9CD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.981198663999962, 51.605015705000064 ], [ -124.986980804, 51.605067216000066 ], [ -124.986920873999964, 51.607666507000076 ], [ -124.985343582999917, 51.608283301000085 ], [ -124.984606564999979, 51.608635976000052 ], [ -124.981115437999975, 51.60860484100008 ], [ -124.981198663999962, 51.605015705000064 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025311", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "901417", "BldgCostT": "621667", "sL_LossRatio": "1", "sL_AssetLoss": "58.7", "sL_BldgLoss": "58.7", "sL_StrLoss": "58.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C4F520EB461C5FC0D51FA33482DD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.441623758999938, 51.733832510000092 ], [ -124.441631080999954, 51.733626708000038 ], [ -124.439375384999934, 51.733595951000027 ], [ -124.439491123999971, 51.730347320000099 ], [ -124.436222682999983, 51.730302676000115 ], [ -124.436350764999929, 51.726714457000064 ], [ -124.44204057, 51.726792114000077 ], [ -124.44214815499997, 51.726793580000063 ], [ -124.44213818599998, 51.727073888000042 ], [ -124.442044342999907, 51.7297127020001 ], [ -124.445577401999955, 51.729760777000116 ], [ -124.446915863999905, 51.729778961000115 ], [ -124.446896885999976, 51.730314289000063 ], [ -124.447549275999933, 51.730323146000032 ], [ -124.4474221, 51.733911365000061 ], [ -124.446161532999923, 51.733894247000087 ], [ -124.441623758999938, 51.733832510000092 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025312", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F6187AFE131B5FC0AF06491B1EF34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.425587907999969, 51.896309705000121 ], [ -124.426183403999957, 51.896231389000114 ], [ -124.426284176999943, 51.896248799000098 ], [ -124.426159876999989, 51.899694816000071 ], [ -124.424855762999982, 51.899676935000066 ], [ -124.424825972999912, 51.900502047000018 ], [ -124.423699649999946, 51.900486592000014 ], [ -124.42366229199996, 51.901520575000056 ], [ -124.418090444999933, 51.901443954000072 ], [ -124.419422485999974, 51.900341696000055 ], [ -124.420237789999959, 51.899944302000087 ], [ -124.420811309999962, 51.899227889000059 ], [ -124.421478499000017, 51.898679596000093 ], [ -124.423262481, 51.89768689100012 ], [ -124.425072292999971, 51.896487795000048 ], [ -124.425587907999969, 51.896309705000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025314", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.1", "sL_BldgLoss": "43.1", "sL_StrLoss": "43.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F9F719170E1E5FC04697F56A99E94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.466327931999899, 51.827068701000101 ], [ -124.466338568999944, 51.826765553 ], [ -124.466229848999959, 51.826764098000105 ], [ -124.466355751999927, 51.823176164000067 ], [ -124.467136563999986, 51.823186608000057 ], [ -124.467148740999974, 51.822839382000041 ], [ -124.467747343999974, 51.82284738700011 ], [ -124.472958930999965, 51.82291693700008 ], [ -124.472947025999986, 51.823257706000035 ], [ -124.472971853999979, 51.823258037000052 ], [ -124.472846493999938, 51.826845979000026 ], [ -124.472149506999955, 51.826836691000018 ], [ -124.472138682999969, 51.827146297000063 ], [ -124.470061806999936, 51.827118596000069 ], [ -124.466516174999953, 51.827071219000025 ], [ -124.466327931999899, 51.827068701000101 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025317", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EEEF4B81F51B5FC06BDC936EE8D84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.434026958999937, 51.692759441000078 ], [ -124.439819853999936, 51.692838684000016 ], [ -124.439692152999896, 51.696427020000066 ], [ -124.437098378999949, 51.696391576000025 ], [ -124.433898782999989, 51.696347771000021 ], [ -124.433988697999936, 51.693830602000084 ], [ -124.434026958999937, 51.692759441000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025320", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "43.8", "sL_BldgLoss": "43.8", "sL_StrLoss": "43.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000069DEF2BFF1C5FC0D4904471BFE04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.451644412999912, 51.754028095000116 ], [ -124.456038344999953, 51.754087465000069 ], [ -124.455911793999945, 51.757675614000071 ], [ -124.455773032999929, 51.757673742000051 ], [ -124.450110291999934, 51.75759719100008 ], [ -124.450237316999974, 51.754009047000046 ], [ -124.451644412999912, 51.754028095000116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025321", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1280834", "BldgCostT": "883334", "sL_LossRatio": "1", "sL_AssetLoss": "107", "sL_BldgLoss": "107", "sL_StrLoss": "107", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000098F9509AB41E5FC0900E728BB7E44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.477839234, 51.789619858000037 ], [ -124.47789811599992, 51.78792765000005 ], [ -124.475699263999914, 51.787898405000099 ], [ -124.475727644999949, 51.787083927000033 ], [ -124.475824279000037, 51.7843103330001 ], [ -124.476391768999946, 51.784317884000075 ], [ -124.476400371999915, 51.784070847000066 ], [ -124.479213741999985, 51.78410824500002 ], [ -124.482205430999926, 51.784147935000085 ], [ -124.4821381499999, 51.78608718900005 ], [ -124.483769399999929, 51.786108798000036 ], [ -124.48364503199997, 51.789696873000075 ], [ -124.477839234, 51.789619858000037 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025322", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009EEC66467F1E5FC0A0F12B73C6E74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.475535255999944, 51.812880386000124 ], [ -124.475517639999936, 51.812341091000093 ], [ -124.475082605999944, 51.812346549000047 ], [ -124.475073801999912, 51.812076901000076 ], [ -124.474638769999927, 51.812082358000026 ], [ -124.474621165999935, 51.811543062000027 ], [ -124.474186137999951, 51.811548517000084 ], [ -124.47416854, 51.811009221000099 ], [ -124.473733519999954, 51.811014674000042 ], [ -124.473724722999933, 51.810745026000056 ], [ -124.473289702999949, 51.810750477000084 ], [ -124.473263322999955, 51.809941533000064 ], [ -124.473698332999959, 51.809936082000021 ], [ -124.473689538999977, 51.809666433000181 ], [ -124.476299586999957, 51.809633690000069 ], [ -124.476290775999928, 51.809364043000087 ], [ -124.477160786999974, 51.809353116000054 ], [ -124.477125521999966, 51.808274524000119 ], [ -124.478430503999945, 51.808258122000062 ], [ -124.478465800999956, 51.809336714000068 ], [ -124.478900803999963, 51.809331243000074 ], [ -124.478953767999968, 51.810949127000107 ], [ -124.478518747999914, 51.810954598000102 ], [ -124.478545223999973, 51.811763541000076 ], [ -124.47811019699995, 51.811769011000102 ], [ -124.478136664999937, 51.812577953000073 ], [ -124.477701629999927, 51.81258342200006 ], [ -124.477710450999922, 51.812853069 ], [ -124.475535255999944, 51.812880386000124 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025325", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "48.4", "sL_BldgLoss": "48.4", "sL_StrLoss": "48.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EA54221EC31B5FC05C3E92929EE54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.430945257999952, 51.79206803400006 ], [ -124.436751296999915, 51.792147425000053 ], [ -124.436623053999938, 51.795735428000064 ], [ -124.430816538999963, 51.795656030000053 ], [ -124.430945257999952, 51.79206803400006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025326", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "65.9", "sL_BldgLoss": "65.9", "sL_StrLoss": "65.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002ABFF328A81A5FC0A919CE0C4DD74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.413795201999974, 51.684164070000058 ], [ -124.413809641999975, 51.683764848000109 ], [ -124.413306308999935, 51.683757858000078 ], [ -124.413436130999912, 51.680169509000052 ], [ -124.413567761999914, 51.680171337000061 ], [ -124.413580447999905, 51.679820612000086 ], [ -124.419371596999937, 51.679900892000092 ], [ -124.419344568999932, 51.680650843000123 ], [ -124.419716235999928, 51.680655985000051 ], [ -124.419586924999919, 51.684244340000063 ], [ -124.413795201999974, 51.684164070000058 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025327", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "53.4", "sL_BldgLoss": "53.4", "sL_StrLoss": "53.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006029607543195FC06E36B11B91D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.39191431099999, 51.651030925000086 ], [ -124.3977016219999, 51.651112306000044 ], [ -124.397570598999948, 51.654700736000059 ], [ -124.391782814999914, 51.654619349000086 ], [ -124.39191431099999, 51.651030925000086 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025329", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999998353744207", "sL_AssetLoss": "73.500121", "sL_BldgLoss": "73.5", "sL_StrLoss": "73.5", "sL_NStrLoss": "0", "sL_ContLoss": "0.000121", "geom_point": "0101000020E61000007CC73A662AF85EC09375F69DF8C94940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.875105188999939, 51.580279133000047 ], [ -123.875278626999958, 51.576691145000069 ], [ -123.875960262999953, 51.576703854000058 ], [ -123.875991837999933, 51.576050362000046 ], [ -123.881047759999902, 51.576144505000059 ], [ -123.880899707999973, 51.577024799000114 ], [ -123.880888802999962, 51.577977589000056 ], [ -123.880646006999925, 51.578033102000042 ], [ -123.880395909999919, 51.577800985000067 ], [ -123.879690520999972, 51.577879302000071 ], [ -123.879274382999938, 51.57800750400002 ], [ -123.878275402999989, 51.579319201000033 ], [ -123.877932391999977, 51.579545595000106 ], [ -123.877791012, 51.579753506000053 ], [ -123.877785909999943, 51.580140892000031 ], [ -123.877714617999985, 51.580327765000085 ], [ -123.875105188999939, 51.580279133000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025330", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "39.7", "sL_BldgLoss": "39.7", "sL_StrLoss": "39.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000054038BCB8A2E5FC0C19ADA84C1DE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.724762488999929, 51.742276041000103 ], [ -124.724771366, 51.741971199000069 ], [ -124.724080749, 51.741963498000061 ], [ -124.724185285999937, 51.738375026000071 ], [ -124.729984686999899, 51.738439557000042 ], [ -124.729954352999968, 51.739485678000072 ], [ -124.730644932999951, 51.739493342000102 ], [ -124.730578113999954, 51.741798759000048 ], [ -124.7299305989999, 51.74196100200006 ], [ -124.728888692999945, 51.742039396000102 ], [ -124.72801468499992, 51.741862799000039 ], [ -124.726173404999912, 51.742223112000055 ], [ -124.725846297999979, 51.742371214000073 ], [ -124.725308786, 51.742369808000056 ], [ -124.724762488999929, 51.742276041000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025332", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.5", "sL_BldgLoss": "58.5", "sL_StrLoss": "58.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000006EBA6DF8001C5FC00CC0EDA6E7DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.434725214999929, 51.716173199000096 ], [ -124.440521206999932, 51.716252405000034 ], [ -124.440393494999924, 51.719840663000092 ], [ -124.436758293999972, 51.719791020000052 ], [ -124.434597029999964, 51.719761451000103 ], [ -124.434707150999913, 51.716678905000052 ], [ -124.434725214999929, 51.716173199000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025334", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000008D57A7D75185FC0382C2E0A92F34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.379051150999956, 51.901234073000118 ], [ -124.379064457999931, 51.900875929000058 ], [ -124.384884878, 51.900957941000073 ], [ -124.384878275999981, 51.901136292000082 ], [ -124.385527664999984, 51.901145424000084 ], [ -124.385394889999958, 51.904733017000069 ], [ -124.384685529999928, 51.904723042000114 ], [ -124.384678872999942, 51.904902835000016 ], [ -124.378857925999924, 51.904820812000104 ], [ -124.378991237999969, 51.901233226000016 ], [ -124.379051150999956, 51.901234073000118 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025341", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "53.7", "sL_BldgLoss": "53.7", "sL_StrLoss": "53.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EC7439880A0A5FC018891A96D0DD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.154069619999945, 51.731087382000034 ], [ -124.159867031999909, 51.731180812000098 ], [ -124.159716288999959, 51.734768678000101 ], [ -124.153918402999921, 51.734675242000044 ], [ -124.154069619999945, 51.731087382000034 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025345", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "70.8", "sL_BldgLoss": "70.8", "sL_StrLoss": "70.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000DD7A2C01E1F45EC08C27699BEEC74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.82286691199999, 51.561574888000074 ], [ -123.822802284999952, 51.560379992000023 ], [ -123.822549517999974, 51.559941404000085 ], [ -123.822642811999984, 51.559581098000116 ], [ -123.822872883999977, 51.559551098000085 ], [ -123.823789194999932, 51.559968398000073 ], [ -123.824214578999914, 51.56028030000008 ], [ -123.824865704999979, 51.560455506000082 ], [ -123.825987207999916, 51.561013789000064 ], [ -123.826280314000016, 51.561245995000029 ], [ -123.826612311999909, 51.561278695000055 ], [ -123.827676185999934, 51.561100696000075 ], [ -123.828635996999949, 51.560697587000035 ], [ -123.829791608999955, 51.560050989000032 ], [ -123.829879297999966, 51.559968479000055 ], [ -123.829709046999952, 51.563418205000119 ], [ -123.828134382999934, 51.563388189000058 ], [ -123.82812459199999, 51.563586443000119 ], [ -123.827631982999947, 51.563577049000045 ], [ -123.82762907299994, 51.563635955000073 ], [ -123.823551320999982, 51.563558108000052 ], [ -123.82353519499992, 51.56346768900007 ], [ -123.823646690999979, 51.563232708000058 ], [ -123.8235845949999, 51.562936492000048 ], [ -123.823349202999964, 51.562712903000097 ], [ -123.82286691199999, 51.561574888000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025346", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999996938881504", "sL_AssetLoss": "73.502545", "sL_BldgLoss": "73.50232", "sL_StrLoss": "73.5", "sL_NStrLoss": "0.00232", "sL_ContLoss": "0.000225", "geom_point": "0101000020E610000027E331663FF35EC07A1D50BA9DD84940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.798580206999986, 51.690204461000164 ], [ -123.804371384999982, 51.690315910000031 ], [ -123.804191696999951, 51.693903400000075 ], [ -123.802936400999926, 51.693879267000113 ], [ -123.80290917699989, 51.694422431000142 ], [ -123.80057124699999, 51.694377448000132 ], [ -123.797117459999967, 51.694310908000013 ], [ -123.79723505299999, 51.69197080400005 ], [ -123.797297728999979, 51.690723430000048 ], [ -123.798552930999989, 51.690747625000043 ], [ -123.798580206999986, 51.690204461000164 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025347", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "1", "sL_AssetLoss": "97.4", "sL_BldgLoss": "97.4", "sL_StrLoss": "97.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F8F84A41B3185FC0ED42D6C781D34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.383198238999981, 51.651571292000078 ], [ -124.38327527199999, 51.649480209000082 ], [ -124.389062362999965, 51.649562027000087 ], [ -124.38905448699991, 51.649776603000099 ], [ -124.38971415099995, 51.649785911000087 ], [ -124.389582479999916, 51.653374336000077 ], [ -124.38922405699995, 51.653369279000096 ], [ -124.389209586999968, 51.653763445000074 ], [ -124.389143051999923, 51.653762506000163 ], [ -124.389102355999981, 51.654871145000079 ], [ -124.387836553999975, 51.654853277000051 ], [ -124.387822824999944, 51.655226977000076 ], [ -124.38203498899999, 51.655145095000108 ], [ -124.382167284999952, 51.651556685000088 ], [ -124.383198238999981, 51.651571292000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025349", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "40", "sL_BldgLoss": "40", "sL_StrLoss": "40", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004EA4C9FF832C5FC01ADD41ECCCE04940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.692676979999959, 51.758359662000046 ], [ -124.692689090999977, 51.757954104000135 ], [ -124.692360894999936, 51.757950354000059 ], [ -124.692468069999904, 51.754361964000026 ], [ -124.692916509, 51.754367087000098 ], [ -124.692924568999899, 51.754097174000016 ], [ -124.698726006999919, 51.754163290000086 ], [ -124.698619345999944, 51.757751687000095 ], [ -124.698499064999922, 51.757750319000124 ], [ -124.698478982999987, 51.758425789000043 ], [ -124.692676979999959, 51.758359662000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025353", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "58.1", "sL_BldgLoss": "58.1", "sL_StrLoss": "58.1", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000D7E3D7729BF45EC0B57867A3A9BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.819194238999955, 51.487702606 ], [ -123.824958852999927, 51.487813033000101 ], [ -123.824781666999982, 51.491401256000046 ], [ -123.819016583999954, 51.491290820000089 ], [ -123.819194238999955, 51.487702606 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025354", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.7", "sL_BldgLoss": "44.7", "sL_StrLoss": "44.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002F1067F24B285FC068B7AF6611F24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.626358772999978, 51.893258935000063 ], [ -124.626381647999949, 51.89253226500005 ], [ -124.626060910999939, 51.892528428000055 ], [ -124.626173864999899, 51.888940539000089 ], [ -124.631993122999958, 51.889010029000076 ], [ -124.631976890999937, 51.889527877000056 ], [ -124.633347004999976, 51.889544194000081 ], [ -124.633234637999948, 51.893132089000055 ], [ -124.632185151999948, 51.89311959100008 ], [ -124.632178605999982, 51.893328416000031 ], [ -124.626358772999978, 51.893258935000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025355", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47", "sL_BldgLoss": "47", "sL_StrLoss": "47", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F11682FBC51B5FC0DA264F38BFDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.431205786999968, 51.710984977000102 ], [ -124.431224902999986, 51.710450957000063 ], [ -124.430788507000017, 51.710444968000083 ], [ -124.430858323999956, 51.708494983000065 ], [ -124.430916977, 51.706856688000144 ], [ -124.436711729999942, 51.706936088000056 ], [ -124.436692681999972, 51.707470110000031 ], [ -124.437129049999939, 51.707476078000049 ], [ -124.437001085999952, 51.711064361000133 ], [ -124.43314520599999, 51.711011576000047 ], [ -124.431205786999968, 51.710984977000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025359", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.3", "sL_BldgLoss": "49.3", "sL_StrLoss": "49.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007EAE74466D075FC040979967DFDE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.11618615399999, 51.739399935000066 ], [ -124.119021022999931, 51.739446588000099 ], [ -124.11886690599999, 51.743034373000057 ], [ -124.113985560999964, 51.742953998000061 ], [ -124.113068012999975, 51.742938866000038 ], [ -124.113222603999986, 51.739351089000088 ], [ -124.11618615399999, 51.739399935000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025360", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A2A8C4E92FD5EC0D1121A77B9E24940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.959228117999928, 51.773301511000078 ], [ -123.959254055999978, 51.772745366000031 ], [ -123.958947744999989, 51.772739905000051 ], [ -123.959115073999939, 51.76915244300006 ], [ -123.964917089999929, 51.769255749000109 ], [ -123.964891223999928, 51.769811897000103 ], [ -123.96519751699999, 51.769817343000035 ], [ -123.965030682999966, 51.77340481100012 ], [ -123.959228117999928, 51.773301511000078 ] ], [ [ -123.964310478999906, 51.771013493000041 ], [ -123.964076286999955, 51.77087960100009 ], [ -123.963744181, 51.770909499000048 ], [ -123.963627712999966, 51.770955097000083 ], [ -123.96366009499998, 51.771044790000118 ], [ -123.963892500999947, 51.771116011000075 ], [ -123.964255394999981, 51.771103205000038 ], [ -123.964310478999906, 51.771013493000041 ] ], [ [ -123.964035284999937, 51.770295698000076 ], [ -123.96362890099999, 51.77022730100002 ], [ -123.963311613999963, 51.770392491000059 ], [ -123.963385892999938, 51.770490788000103 ], [ -123.963619485999928, 51.770497906000109 ], [ -123.964008520999968, 51.770412502000049 ], [ -123.96410948499999, 51.770393904000116 ], [ -123.964035284999937, 51.770295698000076 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025364", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "70.7", "sL_BldgLoss": "70.7", "sL_StrLoss": "70.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000026ADD77899FE5EC04D0C4D0269D54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.975518742999924, 51.669253105000102 ], [ -123.975540567999971, 51.668780202000093 ], [ -123.974761445999917, 51.668766386000073 ], [ -123.974927083999944, 51.665178554000114 ], [ -123.980715388999926, 51.66528106800007 ], [ -123.980693619999911, 51.665753974000104 ], [ -123.981329168999977, 51.665765211000085 ], [ -123.98147269199994, 51.665767749000061 ], [ -123.981465488999916, 51.665924273000051 ], [ -123.981367798999955, 51.668047205000121 ], [ -123.981307584999911, 51.669355589000048 ], [ -123.979417096999924, 51.669322152000106 ], [ -123.975518742999924, 51.669253105000102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025366", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "1", "sL_AssetLoss": "157.4", "sL_BldgLoss": "157.4", "sL_StrLoss": "157.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002367825D24F85EC0D2FE286614CB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.878040069999898, 51.58967279400008 ], [ -123.878040730999899, 51.589659089000051 ], [ -123.877519351000032, 51.589649381000108 ], [ -123.87752339499994, 51.589565625000105 ], [ -123.877090939999931, 51.589557570000103 ], [ -123.877095945999926, 51.589453934000048 ], [ -123.876630229999961, 51.589445258000119 ], [ -123.876637420999955, 51.589296403000077 ], [ -123.876215822999967, 51.589288547000095 ], [ -123.876223344, 51.589132938000063 ], [ -123.87569731399999, 51.589123134000026 ], [ -123.875753515999961, 51.587960448000082 ], [ -123.872108156999928, 51.587892442000111 ], [ -123.87212019899999, 51.587643725000085 ], [ -123.872129892999965, 51.587443495000123 ], [ -123.87203058299994, 51.587441641000062 ], [ -123.872204299999908, 51.583853682000061 ], [ -123.874697854999937, 51.58390021500005 ], [ -123.874774489999965, 51.582315343000076 ], [ -123.878024024999931, 51.582375901000056 ], [ -123.878453984999965, 51.583382400000097 ], [ -123.878588803999946, 51.584379411000093 ], [ -123.878496387999945, 51.584865012000094 ], [ -123.877958781999951, 51.585426201000104 ], [ -123.87776970799996, 51.586094099 ], [ -123.878355214999914, 51.586548504000099 ], [ -123.878923019999988, 51.586759199000056 ], [ -123.880253513999932, 51.586920208000087 ], [ -123.882182114999978, 51.587337507 ], [ -123.883643220999915, 51.587461403000113 ], [ -123.883926987999985, 51.587520978000057 ], [ -123.883885471999989, 51.588383187000041 ], [ -123.883818199999951, 51.589780228000102 ], [ -123.878040069999898, 51.58967279400008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025367", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000EEF01110D7FE5EC08FFE976BD1D64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.978897145999966, 51.680016175000105 ], [ -123.979062488999958, 51.676428374000103 ], [ -123.984852287999985, 51.676530679000088 ], [ -123.984687418999968, 51.680118487000108 ], [ -123.981521922999946, 51.680062590000077 ], [ -123.98188391799998, 51.679781498000082 ], [ -123.98171009399999, 51.679765802000084 ], [ -123.981365506999907, 51.679902502000118 ], [ -123.981168576999906, 51.680056346000072 ], [ -123.978897145999966, 51.680016175000105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025368", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2800167", "BldgCostT": "1721667", "sL_LossRatio": "0.805078713767959", "sL_AssetLoss": "189.3083178", "sL_BldgLoss": "152.408097", "sL_StrLoss": "139.101773", "sL_NStrLoss": "13.306324", "sL_ContLoss": "36.9002208", "geom_point": "0101000020E610000008EAEF00EA195FC0814FFF9B0FD64940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.40253014699995, 51.676825990000047 ], [ -124.402612137999981, 51.674574704000115 ], [ -124.398840953999937, 51.674521899000034 ], [ -124.39897193299997, 51.670933534000021 ], [ -124.404310657999986, 51.671008253000053 ], [ -124.404435420999917, 51.667578165000059 ], [ -124.410224937999914, 51.667658909000146 ], [ -124.410094889999968, 51.671247297000065 ], [ -124.404756126, 51.67117285000004 ], [ -124.404680006999968, 51.67326585200005 ], [ -124.408451090999947, 51.673318465000179 ], [ -124.408320880999923, 51.676906831000053 ], [ -124.40253014699995, 51.676825990000047 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025369", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61.9", "sL_BldgLoss": "61.9", "sL_StrLoss": "61.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000021868861E8115FC0EDF6F63A6BDA4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.281505323999923, 51.708062194000057 ], [ -124.281497703999975, 51.707792520000019 ], [ -124.280629571999953, 51.707801985000096 ], [ -124.280621955999891, 51.707532311000087 ], [ -124.279753828999944, 51.707541772000077 ], [ -124.279746217999943, 51.707272097000043 ], [ -124.278444033999961, 51.707286274000104 ], [ -124.27843643199999, 51.707016599000099 ], [ -124.277568312999946, 51.707026043000063 ], [ -124.277560714999964, 51.706756368000093 ], [ -124.277126658999975, 51.706761086000093 ], [ -124.277081091999946, 51.705143035 ], [ -124.277949173999971, 51.705133595000063 ], [ -124.277941574999915, 51.704863921000026 ], [ -124.278375612999952, 51.704859198000058 ], [ -124.278368010999955, 51.704589524000014 ], [ -124.280104153999943, 51.704570618000055 ], [ -124.28013460199999, 51.705649318000084 ], [ -124.280568647999985, 51.705644587000045 ], [ -124.280576262999986, 51.705914262000071 ], [ -124.28101031099996, 51.705909530000049 ], [ -124.281017928999958, 51.706179205000119 ], [ -124.28145198, 51.706174471000097 ], [ -124.281459598999916, 51.706444146000109 ], [ -124.281893652999898, 51.706439411000119 ], [ -124.281901274999939, 51.706709085000064 ], [ -124.28233533099997, 51.706704348000109 ], [ -124.282342955999979, 51.706974023000065 ], [ -124.282777013999961, 51.706969284000131 ], [ -124.282784641999967, 51.707238959000044 ], [ -124.283218702999989, 51.707234219000071 ], [ -124.283241597999975, 51.708043243000105 ], [ -124.281505323999923, 51.708062194000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025370", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1232500", "BldgCostT": "850000", "sL_LossRatio": "0.99998069820478", "sL_AssetLoss": "169.93238", "sL_BldgLoss": "169.9291", "sL_StrLoss": "169.9", "sL_NStrLoss": "0.0291", "sL_ContLoss": "0.00328", "geom_point": "0101000020E6100000AEB3A537F1F35EC0DABB500A84BE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.811688542999903, 51.486302219000059 ], [ -123.817452953999961, 51.486413027000026 ], [ -123.817275162000016, 51.490001243000073 ], [ -123.813871036999927, 51.489935842000051 ], [ -123.813842550999965, 51.490509826000078 ], [ -123.811808894999984, 51.490470707000078 ], [ -123.811800173999927, 51.490646276000085 ], [ -123.806035221999977, 51.490535182 ], [ -123.806213930999959, 51.486946986000063 ], [ -123.806461841999962, 51.48695176800009 ], [ -123.806489853999949, 51.486389191000029 ], [ -123.811679253999969, 51.486489196000043 ], [ -123.811688542999903, 51.486302219000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025371", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "63.9", "sL_BldgLoss": "63.9", "sL_StrLoss": "63.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000558E45AA9AF35EC0EEC51F5EBAC14940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.801415043999953, 51.515660119000053 ], [ -123.801435355999985, 51.515253416000078 ], [ -123.801207563999952, 51.515249014000076 ], [ -123.801386765999922, 51.511660912000146 ], [ -123.805884716999941, 51.511747756000013 ], [ -123.805903093999987, 51.511379022 ], [ -123.811670772999918, 51.511490121000094 ], [ -123.811492410999961, 51.515078239000061 ], [ -123.807221899999973, 51.514996008000047 ], [ -123.807183273999939, 51.515771444000073 ], [ -123.801415043999953, 51.515660119000053 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025383", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000900344FBF7065FC0B86FBDBFA4DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.109086492999936, 51.714005249000081 ], [ -124.111034413999931, 51.714037454000042 ], [ -124.110879733, 51.717625313000092 ], [ -124.107824978999986, 51.71757479500004 ], [ -124.105568539999936, 51.71753742600005 ], [ -124.106349114999986, 51.717240990000093 ], [ -124.106415805999973, 51.716394999000087 ], [ -124.106434310999973, 51.715972095000126 ], [ -124.107025694999905, 51.715319807000121 ], [ -124.10706792699996, 51.715290849000105 ], [ -124.10779632, 51.714791407000064 ], [ -124.108283710999913, 51.714030890000068 ], [ -124.108292492999951, 51.713992113000089 ], [ -124.109086492999936, 51.714005249000081 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025384", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.9", "sL_BldgLoss": "49.9", "sL_StrLoss": "49.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E7783F4D31185FC0BFFB57147ECF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.375283959999976, 51.623395073000026 ], [ -124.375328592999921, 51.622188633000064 ], [ -124.374818223999938, 51.622181363000038 ], [ -124.374951008, 51.618592848000063 ], [ -124.378482792999989, 51.618643111000033 ], [ -124.380734013999984, 51.618675092000089 ], [ -124.38068953299998, 51.619881538000051 ], [ -124.381199877999933, 51.619888781000057 ], [ -124.3810676, 51.623477299000044 ], [ -124.379108382999959, 51.623449478000062 ], [ -124.375283959999976, 51.623395073000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025387", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999966841696629", "sL_AssetLoss": "79.91965", "sL_BldgLoss": "79.917", "sL_StrLoss": "79.9", "sL_NStrLoss": "0.017", "sL_ContLoss": "0.00265", "geom_point": "0101000020E6100000CF9C5854C2E95EC0A72D4356969C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.64916040699994, 51.226025248000099 ], [ -123.649350746999957, 51.222436335000012 ], [ -123.649588994999959, 51.222441292000092 ], [ -123.649596638999952, 51.222297141000084 ], [ -123.647189548999947, 51.222310476000125 ], [ -123.647174416999974, 51.221231486000065 ], [ -123.649322187999971, 51.221219589 ], [ -123.649325983000011, 51.221489336000069 ], [ -123.659635320999925, 51.221431685000091 ], [ -123.659646887999912, 51.222240925000094 ], [ -123.658358200999928, 51.222248182000087 ], [ -123.658362047999944, 51.22251792900002 ], [ -123.655613014999957, 51.222533362000021 ], [ -123.655582171999967, 51.223116505000036 ], [ -123.655470995999949, 51.223171394000111 ], [ -123.655097414999972, 51.222993391000088 ], [ -123.65476681799997, 51.222959197000101 ], [ -123.65394308899999, 51.223449091000127 ], [ -123.653630386999936, 51.22349609600009 ], [ -123.652984885999928, 51.223446294000048 ], [ -123.652624894999931, 51.223330904000079 ], [ -123.652469312999955, 51.223413503000131 ], [ -123.652455795999941, 51.223538806000164 ], [ -123.652881102999956, 51.224229608000023 ], [ -123.653535101999978, 51.224881891000095 ], [ -123.654212195999932, 51.225156814000123 ], [ -123.654981010999904, 51.224954499000027 ], [ -123.655170110999933, 51.225115408000086 ], [ -123.655471619999943, 51.22520658300003 ], [ -123.655429067999989, 51.226011013000111 ], [ -123.654898191999933, 51.225999996000013 ], [ -123.654890553999948, 51.22614432600011 ], [ -123.64916040699994, 51.226025248000099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025389", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999968118433244", "sL_AssetLoss": "90.02067", "sL_BldgLoss": "90.0178", "sL_StrLoss": "90", "sL_NStrLoss": "0.0178", "sL_ContLoss": "0.00287", "geom_point": "0101000020E61000004A76F03C86035FC03FF3C520A8B54940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.05231016099998, 51.417350312000096 ], [ -124.058025317, 51.417448231000094 ], [ -124.057867365000035, 51.421037050000102 ], [ -124.055999431999908, 51.421005078000078 ], [ -124.052110919999933, 51.420938423000081 ], [ -124.052269340999942, 51.417349612000095 ], [ -124.05231016099998, 51.417350312000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025392", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "49.2", "sL_BldgLoss": "49.2", "sL_StrLoss": "49.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008645DA004B1A5FC091099D7C9FDF4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.407993054999963, 51.745220286000063 ], [ -124.413792841999978, 51.745300844000042 ], [ -124.413662855000013, 51.748888975000121 ], [ -124.407862594, 51.748808410000059 ], [ -124.407993054999963, 51.745220286000063 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025394", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "4695584", "BldgCostT": "3238334", "sL_LossRatio": "1", "sL_AssetLoss": "319.3", "sL_BldgLoss": "319.3", "sL_StrLoss": "319.3", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000016333EA39F265FC0835679658BF34940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.603335225999928, 51.902105319000057 ], [ -124.603348360999945, 51.901694985000077 ], [ -124.60163900500001, 51.901674183000075 ], [ -124.601753991999942, 51.89808634700006 ], [ -124.603740573, 51.898110520000024 ], [ -124.603748823999936, 51.897852696000037 ], [ -124.609038172999988, 51.897916890000047 ], [ -124.6090395, 51.8978752270001 ], [ -124.609594159999972, 51.897881945000051 ], [ -124.60960319499992, 51.89759844000006 ], [ -124.610170077999896, 51.897605303000049 ], [ -124.610179889999969, 51.897297255000112 ], [ -124.61534385199991, 51.897359642000048 ], [ -124.616000235999977, 51.897367555000059 ], [ -124.615886422999935, 51.900955407000055 ], [ -124.615319493999905, 51.900948573000043 ], [ -124.615309718, 51.901256621000122 ], [ -124.61475501399994, 51.901249931000102 ], [ -124.614746012999944, 51.901533435000033 ], [ -124.60945621799999, 51.901469503000094 ], [ -124.609454890000023, 51.90151116600002 ], [ -124.609177501999966, 51.901507807000087 ], [ -124.609168536999917, 51.901789037000064 ], [ -124.609226309999912, 51.901789736000126 ], [ -124.609225538999951, 51.901813933000042 ], [ -124.611386325999959, 51.901840082000085 ], [ -124.611272121999946, 51.905427915000089 ], [ -124.610800477999959, 51.905422211000015 ], [ -124.610799502999953, 51.905452827000012 ], [ -124.609825696999962, 51.905441043000081 ], [ -124.609815581999953, 51.905758450000071 ], [ -124.609348386999969, 51.905752795000083 ], [ -124.607273420999917, 51.905727651000085 ], [ -124.607268581999975, 51.90587921300007 ], [ -124.606525672999936, 51.905870201000056 ], [ -124.606520561999929, 51.906030232000099 ], [ -124.604997770999915, 51.906011745000058 ], [ -124.6049914099999, 51.906210670000135 ], [ -124.603153314999958, 51.906188329000024 ], [ -124.603146942999942, 51.90638731500006 ], [ -124.602447096999967, 51.906378801000116 ], [ -124.602444718999962, 51.906453032000101 ], [ -124.601736020999965, 51.906444407000023 ], [ -124.601729600999974, 51.906644650000054 ], [ -124.600957877, 51.906635252000058 ], [ -124.600955072999966, 51.906722669000011 ], [ -124.600283870999945, 51.906714491000059 ], [ -124.600279153999963, 51.906861485000086 ], [ -124.598402012999927, 51.906838593000039 ], [ -124.598401474999918, 51.906855332000092 ], [ -124.598196082999962, 51.906852825000094 ], [ -124.598185687999916, 51.907176337000131 ], [ -124.595318573999947, 51.907141307000124 ], [ -124.595316567999959, 51.907203608000088 ], [ -124.594544104, 51.907194158000046 ], [ -124.594541939999914, 51.907261328000097 ], [ -124.594120143999959, 51.907256166000074 ], [ -124.588720308999953, 51.907189941000048 ], [ -124.588836373999939, 51.903602135000071 ], [ -124.58960877199999, 51.903611623000046 ], [ -124.589610943999929, 51.903544454000041 ], [ -124.592477815999985, 51.903579626000102 ], [ -124.592479825999987, 51.903517326000063 ], [ -124.59268520199997, 51.903519843000019 ], [ -124.592695637999967, 51.9031963300001 ], [ -124.594572618999933, 51.90321931600004 ], [ -124.594573156999914, 51.903202576000062 ], [ -124.59523082699999, 51.903210623000106 ], [ -124.595244305999984, 51.90321078900012 ], [ -124.595249038999967, 51.903063793000079 ], [ -124.596020698999908, 51.903073229000086 ], [ -124.596023511999974, 51.902985813000086 ], [ -124.596732152999962, 51.902994474000074 ], [ -124.596738595000019, 51.902794230000026 ], [ -124.597438382999911, 51.902802779000126 ], [ -124.597440768999945, 51.902728547000031 ], [ -124.59927871499994, 51.902750979000139 ], [ -124.599285103999975, 51.902551993000017 ], [ -124.600807770999936, 51.902570555000061 ], [ -124.600814150999966, 51.902371631000051 ], [ -124.601158336999958, 51.90237582400006 ], [ -124.601167855000014, 51.902078939000027 ], [ -124.603335225999928, 51.902105319000057 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025398", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "67.9", "sL_BldgLoss": "67.9", "sL_StrLoss": "67.9", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C69B25964E095FC01173A48E69DB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.142600010999928, 51.712317868000071 ], [ -124.148394915999972, 51.712411880000026 ], [ -124.148243299999976, 51.715999795000066 ], [ -124.14244792, 51.715905775000103 ], [ -124.142600010999928, 51.712317868000071 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025399", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "47.5", "sL_BldgLoss": "47.5", "sL_StrLoss": "47.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000E88732D08C3E5FC04C54901BD5CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.975617095, 51.614260783000091 ], [ -124.980360440999945, 51.614303283 ], [ -124.979774686999974, 51.614761999000052 ], [ -124.979335583999941, 51.615264798000034 ], [ -124.978922701999963, 51.61608938800002 ], [ -124.978527802999977, 51.617292909000057 ], [ -124.978278489, 51.61752220400011 ], [ -124.977018798999936, 51.617812706000031 ], [ -124.976912233999911, 51.61786225700007 ], [ -124.975533394999914, 51.617849882000044 ], [ -124.975617095, 51.614260783000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025400", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "63.8", "sL_BldgLoss": "63.8", "sL_StrLoss": "63.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F16AF3DEDC1A5FC06D610E69F1D74940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.416926174999944, 51.684989204000026 ], [ -124.422718012999951, 51.685069314000039 ], [ -124.422588934999951, 51.688657657000078 ], [ -124.42255252299999, 51.688657155000023 ], [ -124.42253586299995, 51.689120258000045 ], [ -124.416743490999934, 51.689040138000081 ], [ -124.416873047, 51.685451803000085 ], [ -124.416909455999956, 51.685452308000045 ], [ -124.416926174999944, 51.684989204000026 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025401", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "44.5", "sL_BldgLoss": "44.5", "sL_StrLoss": "44.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000024A0171703F5FC0CDE5275106CE4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.987979592999977, 51.611914911000035 ], [ -124.987987763999939, 51.611560209000068 ], [ -124.987818709999942, 51.611558708000068 ], [ -124.98790139399992, 51.60796957800008 ], [ -124.988339210999968, 51.607973463000079 ], [ -124.988353676999978, 51.607345181000049 ], [ -124.988847403999941, 51.607199489000067 ], [ -124.989332007000016, 51.607099511000058 ], [ -124.994141952999897, 51.607142036000084 ], [ -124.994122065999989, 51.608010680000106 ], [ -124.994693889999951, 51.608015723000044 ], [ -124.994611760999973, 51.611604857000096 ], [ -124.993771092999935, 51.611597444000118 ], [ -124.993762648999947, 51.611966078000073 ], [ -124.987979592999977, 51.611914911000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025405", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "0.999924018076461", "sL_AssetLoss": "105.02498", "sL_BldgLoss": "105.017", "sL_StrLoss": "105", "sL_NStrLoss": "0.017", "sL_ContLoss": "0.00798", "geom_point": "0101000020E610000037F0177149045FC03F573AA3D6B44940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -124.064675770999941, 51.411838907000096 ], [ -124.070431056999965, 51.411936898000064 ], [ -124.070365169999889, 51.413443806000096 ], [ -124.063550825000021, 51.413843804000088 ], [ -124.063612477999968, 51.412438682000079 ], [ -124.064648693999956, 51.412456356000114 ], [ -124.064675770999941, 51.411838907000096 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025406", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "16880417", "BldgCostT": "11641667", "sL_LossRatio": "0.999773397697621", "sL_AssetLoss": "3119.121", "sL_BldgLoss": "3118.4142", "sL_StrLoss": "3115", "sL_NStrLoss": "3.4142", "sL_ContLoss": "0.7068", "geom_point": "0101000020E6100000633DBD6B33FC5EC0ED90B47EA7BB4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.943621343999965, 51.469915810000032 ], [ -123.943682978999931, 51.468594851000027 ], [ -123.943620032999917, 51.468593711000089 ], [ -123.943647080999966, 51.468014010000076 ], [ -123.940331206999929, 51.467953963000127 ], [ -123.940186586999943, 51.467951341000088 ], [ -123.940184521, 51.467995562000077 ], [ -123.93974300499994, 51.467987558000061 ], [ -123.93973562799998, 51.468145367000069 ], [ -123.939669197999976, 51.469566372000024 ], [ -123.935226606999933, 51.469485745000064 ], [ -123.933906689999972, 51.469461757000097 ], [ -123.93398866499993, 51.467713093000135 ], [ -123.933859801999958, 51.467710751000091 ], [ -123.93437489499992, 51.466836504000085 ], [ -123.93432001099994, 51.466198499 ], [ -123.934465712999923, 51.465621689000052 ], [ -123.935690607999902, 51.464281500000034 ], [ -123.935904106999928, 51.464154805000142 ], [ -123.936292904999959, 51.464177493000101 ], [ -123.936526313999963, 51.46378637300009 ], [ -123.93809446799996, 51.463814838000076 ], [ -123.938076646999932, 51.464195813000032 ], [ -123.938413782999959, 51.464201930000051 ], [ -123.938405838, 51.464371785000026 ], [ -123.939340414999933, 51.464388736000082 ], [ -123.939342481999958, 51.464344517 ], [ -123.943123591999964, 51.464413020000087 ], [ -123.943146649999932, 51.463918909000064 ], [ -123.943650384999941, 51.463928026000083 ], [ -123.943695268999974, 51.462965925000077 ], [ -123.93980296499997, 51.462895422000095 ], [ -123.939832305999971, 51.462267655000048 ], [ -123.940310718999967, 51.462149493000055 ], [ -123.941044988999948, 51.462143797000046 ], [ -123.942202781999981, 51.462377299000089 ], [ -123.943022104999926, 51.462361683000019 ], [ -123.943381381, 51.462277596000064 ], [ -123.94332060899994, 51.462187898000089 ], [ -123.942212614, 51.462223492000078 ], [ -123.941576801999958, 51.46210390100007 ], [ -123.941011505999967, 51.4618830900001 ], [ -123.940731105999959, 51.461525689000055 ], [ -123.94019397299995, 51.461377495000107 ], [ -123.940008802999913, 51.461396110000081 ], [ -123.939871322999977, 51.461432849000083 ], [ -123.939882871999927, 51.461185743000087 ], [ -123.941843255999984, 51.461193965000049 ], [ -123.945547773999934, 51.461161932000017 ], [ -123.945721956999975, 51.46329782800008 ], [ -123.945978089999954, 51.466436808000061 ], [ -123.946157955, 51.469186058000069 ], [ -123.94620876399992, 51.469962597000098 ], [ -123.943621343999965, 51.469915810000032 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025407", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3081250", "BldgCostT": "2125000", "sL_LossRatio": "0.999997132226002", "sL_AssetLoss": "348.005108", "sL_BldgLoss": "348.00411", "sL_StrLoss": "348", "sL_NStrLoss": "0.00411", "sL_ContLoss": "0.000998", "geom_point": "0101000020E6100000FFC85B4B94FB5EC0C9DDCE5B48BC4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.933481485999948, 51.468903099000066 ], [ -123.933492872, 51.468894612000099 ], [ -123.933448907999932, 51.469832186000076 ], [ -123.933340895999919, 51.47213552300007 ], [ -123.927578067999917, 51.472030587000049 ], [ -123.927632916, 51.470864239000022 ], [ -123.927644886999957, 51.470609656000086 ], [ -123.928808014999944, 51.470540893000063 ], [ -123.930080189999941, 51.470099388000065 ], [ -123.932057196999963, 51.469633689000034 ], [ -123.9329818099999, 51.469095305000018 ], [ -123.933481485999948, 51.468903099000066 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025409", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "2523561", "BldgCostT": "1328190", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000847CB71679F55EC0677E561571BD4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.833606647999915, 51.485997215000033 ], [ -123.831707668999968, 51.478212946000092 ], [ -123.832114399999966, 51.478220704000115 ], [ -123.83218768799999, 51.476731105000113 ], [ -123.83225998099999, 51.476732484000088 ], [ -123.832339330999943, 51.475119509000137 ], [ -123.832346792999928, 51.47496780500007 ], [ -123.838109773999946, 51.475077568000074 ], [ -123.838104152, 51.475192176000093 ], [ -123.838091859, 51.475442724000082 ], [ -123.840006125999963, 51.475479118000095 ], [ -123.839830215999939, 51.479067409000059 ], [ -123.837843496999966, 51.479029636000085 ], [ -123.837774815999964, 51.48042915700006 ], [ -123.837323409999968, 51.480420570000042 ], [ -123.837250288999954, 51.481910167000109 ], [ -123.836790586999953, 51.481901420000057 ], [ -123.836738968999938, 51.482952682000111 ], [ -123.837759120999934, 51.482972090000032 ], [ -123.837667724000013, 51.484834231000022 ], [ -123.837582995999966, 51.48656035000004 ], [ -123.833686560999922, 51.48648617300011 ], [ -123.833606647999915, 51.485997215000033 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025796", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001FCECB7A14A15FC0A306F43E651A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.51498065899996, 50.205664151000029 ], [ -126.515022673999965, 50.204855477000066 ], [ -126.515831702999932, 50.204872788000088 ], [ -126.516282660999977, 50.204882435000044 ], [ -126.516271231999937, 50.205102530000062 ], [ -126.516268662999948, 50.205151994000083 ], [ -126.516370011999967, 50.205154161000053 ], [ -126.51668866199999, 50.205160977000105 ], [ -126.516679847999939, 50.20533076700012 ], [ -126.516674666999947, 50.205430535000097 ], [ -126.516833637999966, 50.205433934000091 ], [ -126.517094668999931, 50.205439516000126 ], [ -126.517086163999977, 50.20560333700007 ], [ -126.517080673999942, 50.205709075000073 ], [ -126.517249157999913, 50.205712678000083 ], [ -126.517500677999919, 50.205718055000013 ], [ -126.517492198999946, 50.205881444000042 ], [ -126.517486686999945, 50.205987613000069 ], [ -126.517621434999938, 50.205990495000044 ], [ -126.517906693999961, 50.205996592000133 ], [ -126.517895029, 50.206221355000082 ], [ -126.517878714999966, 50.206535709000015 ], [ -126.51821281099997, 50.206542850000062 ], [ -126.518298725999927, 50.206544687000083 ], [ -126.518294476999984, 50.206626584000091 ], [ -126.51828474, 50.206814245000075 ], [ -126.518461181999925, 50.206818017000082 ], [ -126.518704753999913, 50.206823222000033 ], [ -126.518690700999983, 50.207094071000036 ], [ -126.518662797999937, 50.207631897000084 ], [ -126.517402735999951, 50.207604964000083 ], [ -126.517416728999976, 50.207335406000034 ], [ -126.5169967099999, 50.207326425000069 ], [ -126.517024699000018, 50.206787308000067 ], [ -126.51660468599999, 50.206778327000094 ], [ -126.516618682999976, 50.206508769000038 ], [ -126.516198672999948, 50.206499784000059 ], [ -126.516212670999948, 50.206230227000056 ], [ -126.515792662999928, 50.206221242000105 ], [ -126.515806662999935, 50.205951684000119 ], [ -126.515386658999901, 50.205942698000079 ], [ -126.51540066199999, 50.205673139000098 ], [ -126.51498065899996, 50.205664151000029 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025798", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000043BB75C4829C5FC0C17EDB5540074940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.44421360199999, 50.058321300000067 ], [ -126.444179943999956, 50.054868327000072 ], [ -126.444332803999956, 50.054866807000025 ], [ -126.44588959299989, 50.055288409000127 ], [ -126.446529520999931, 50.055859499000057 ], [ -126.448241610999943, 50.057048704000131 ], [ -126.448150799999922, 50.057164108000066 ], [ -126.446999787999943, 50.057265201000057 ], [ -126.44685341099995, 50.057154105000052 ], [ -126.446772190999951, 50.056819408000109 ], [ -126.44650271699993, 50.056641404000068 ], [ -126.446181917999965, 50.0566441940001 ], [ -126.445922589999924, 50.056800912000028 ], [ -126.445824095999981, 50.057302204000052 ], [ -126.446134198999957, 50.058313525000123 ], [ -126.44421360199999, 50.058321300000067 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025800", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "7160584", "BldgCostT": "4938334", "sL_LossRatio": "0.999982997457502", "sL_AssetLoss": "703.541838", "sL_BldgLoss": "703.529876", "sL_StrLoss": "703.40209", "sL_NStrLoss": "0.127786", "sL_ContLoss": "0.011962", "geom_point": "0101000020E61000008799F02A6FA65FC0C9303023231B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.601926708999912, 50.215857781000103 ], [ -126.601951856999975, 50.215356388000039 ], [ -126.598452954999942, 50.215375415000089 ], [ -126.59842762699995, 50.213453850000107 ], [ -126.598280444999929, 50.213479967000104 ], [ -126.598113346999952, 50.213414866000065 ], [ -126.598066197999913, 50.213349307000058 ], [ -126.597427318999934, 50.213336091000038 ], [ -126.597467951999931, 50.212527368000067 ], [ -126.596207685999929, 50.212501287000116 ], [ -126.596194134999962, 50.212770861000116 ], [ -126.595774044999956, 50.212762165000036 ], [ -126.59576049199994, 50.21303173900003 ], [ -126.59520589399996, 50.213020256000057 ], [ -126.593260741999927, 50.212979958000119 ], [ -126.59323994099995, 50.212979527000101 ], [ -126.59324064599997, 50.212965507000028 ], [ -126.593253507999975, 50.212709954000033 ], [ -126.592874367999983, 50.212702095000033 ], [ -126.59283341899993, 50.212701246000051 ], [ -126.592834809999957, 50.212673646000049 ], [ -126.592860558999959, 50.212162100000036 ], [ -126.592440475, 50.212153391000051 ], [ -126.592481190999948, 50.211344671000084 ], [ -126.591641037999963, 50.211327250000039 ], [ -126.591668188999947, 50.210788105000063 ], [ -126.591248118999928, 50.210779391000109 ], [ -126.59130242900001, 50.209701098000053 ], [ -126.592982679, 50.209735939000076 ], [ -126.593009812999981, 50.209196793000032 ], [ -126.593429869999909, 50.209205499000063 ], [ -126.593443435999944, 50.208935924000095 ], [ -126.594283548999954, 50.20895333300016 ], [ -126.594297108999925, 50.208683759000024 ], [ -126.597657545999951, 50.208753327000125 ], [ -126.59764400499995, 50.209022902000115 ], [ -126.59848412299999, 50.209040279000106 ], [ -126.598497658999989, 50.208770704000138 ], [ -126.600597940999961, 50.208814121000067 ], [ -126.600611464999957, 50.208544545000038 ], [ -126.60103151899996, 50.208553225000117 ], [ -126.601045041999939, 50.208283649000066 ], [ -126.60146509499999, 50.208292326000105 ], [ -126.601478612999969, 50.208022751000151 ], [ -126.601898663999989, 50.208031426000019 ], [ -126.601905225999971, 50.207900563000152 ], [ -126.603094879999929, 50.207973595000063 ], [ -126.603357441999933, 50.208039045000085 ], [ -126.6034831899999, 50.208070390000081 ], [ -126.604115386, 50.208866591000088 ], [ -126.604776337999951, 50.209343780000054 ], [ -126.60473101499997, 50.210248718000088 ], [ -126.605151084999989, 50.210257382000073 ], [ -126.605097771999951, 50.211322002000017 ], [ -126.605115492999985, 50.211336065000076 ], [ -126.605517166999959, 50.211344349000065 ], [ -126.605502213999941, 50.211642966000042 ], [ -126.605693244999941, 50.211794566000059 ], [ -126.605882142999945, 50.211891582000113 ], [ -126.606330340999989, 50.211900821 ], [ -126.606319558999957, 50.212116232000049 ], [ -126.60642955099999, 50.212172721000066 ], [ -126.606736935999919, 50.212179056000103 ], [ -126.606729541999954, 50.212326788000098 ], [ -126.60697696699998, 50.212453856000053 ], [ -126.607143535999938, 50.212457289000056 ], [ -126.60713952899998, 50.212537343000072 ], [ -126.607524388999977, 50.212734991000076 ], [ -126.607970232999961, 50.212744175000118 ], [ -126.607959514999948, 50.212958447000076 ], [ -126.608071817999956, 50.213016121000038 ], [ -126.608376844999952, 50.213022404000071 ], [ -126.608358131999978, 50.213396557000095 ], [ -126.608648586999919, 50.213837561000048 ], [ -126.608756498999981, 50.213839785000069 ], [ -126.608689091999949, 50.21518766600007 ], [ -126.607008630999971, 50.215153049000058 ], [ -126.607020108999933, 50.214923712000022 ], [ -126.606175974999928, 50.214984481000094 ], [ -126.60614140899996, 50.215674884000038 ], [ -126.606561529999979, 50.215683543000047 ], [ -126.606553253999962, 50.215848853000118 ], [ -126.606521046999944, 50.216492272000082 ], [ -126.606272113000017, 50.216487140000069 ], [ -126.604840542999966, 50.216457623000096 ], [ -126.604854046999918, 50.216188047000088 ], [ -126.602753433999979, 50.216144704000065 ], [ -126.60276695, 50.215875128000071 ], [ -126.601926708999912, 50.215857781000103 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025801", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3366417", "BldgCostT": "2321667", "sL_LossRatio": "0.999998538132916", "sL_AssetLoss": "352.9048609", "sL_BldgLoss": "352.904345", "sL_StrLoss": "352.900045", "sL_NStrLoss": "0.0043", "sL_ContLoss": "0.0005159", "geom_point": "0101000020E6100000ABFF39ED65965FC024F7CF2E3A044940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.348672114999943, 50.035257443000084 ], [ -126.348668659999959, 50.034805570000074 ], [ -126.348645343000015, 50.034805643000013 ], [ -126.348644208999985, 50.034657405000132 ], [ -126.347284697999925, 50.03466170900009 ], [ -126.34728267, 50.034395502000073 ], [ -126.34674609299999, 50.034397196000043 ], [ -126.34674177899997, 50.033829958000069 ], [ -126.346099900999945, 50.033831981000098 ], [ -126.34607260599995, 50.030235996000052 ], [ -126.346765120999933, 50.030233813000095 ], [ -126.346764483999948, 50.030150214000059 ], [ -126.346814219999885, 50.030150057000043 ], [ -126.346811604, 50.029806114000081 ], [ -126.348521179999963, 50.029800706000096 ], [ -126.34850613299993, 50.027832051000154 ], [ -126.348585410999959, 50.027997710000122 ], [ -126.34873949199995, 50.028739706000046 ], [ -126.348838801999975, 50.02923669900013 ], [ -126.348255282999901, 50.030445891000078 ], [ -126.348432108999987, 50.030773497000055 ], [ -126.349564118999979, 50.031501201000026 ], [ -126.350737911999929, 50.032032495000081 ], [ -126.351094394999961, 50.032120798000079 ], [ -126.354419708999956, 50.032089391000078 ], [ -126.354558712, 50.032352904000092 ], [ -126.354368392999973, 50.033050795000058 ], [ -126.3543736029999, 50.033715893000142 ], [ -126.354581299999893, 50.034503490000056 ], [ -126.354765612, 50.034714295000079 ], [ -126.355066720999943, 50.034821102000066 ], [ -126.355555404999933, 50.034805387000084 ], [ -126.355817047999892, 50.034724067000113 ], [ -126.35581813, 50.034862751000034 ], [ -126.354934064999952, 50.03486560900005 ], [ -126.354935305999945, 50.035024873000104 ], [ -126.354253839999956, 50.035027071000037 ], [ -126.354255490999918, 50.035239590000081 ], [ -126.348672114999943, 50.035257443000084 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025802", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1256667", "BldgCostT": "866667", "sL_LossRatio": "0.99999874615375", "sL_AssetLoss": "155.6012151", "sL_BldgLoss": "155.60102", "sL_StrLoss": "155.6", "sL_NStrLoss": "0.00102", "sL_ContLoss": "0.0001951", "geom_point": "0101000020E610000081481A37509B5FC0E799EA0B190A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.428648005999946, 50.079870211000134 ], [ -126.42775989099999, 50.079750613000101 ], [ -126.426065301999941, 50.079776210000055 ], [ -126.42547009299993, 50.079640151000056 ], [ -126.425473484999912, 50.07957685000013 ], [ -126.425163034999969, 50.079569960000079 ], [ -126.425055798999949, 50.079545446000068 ], [ -126.425069061999949, 50.079298008000123 ], [ -126.42465019299999, 50.079288711000032 ], [ -126.424664640999978, 50.079019166000108 ], [ -126.423826909999889, 50.079000567000072 ], [ -126.423841362999937, 50.078731022000113 ], [ -126.423422500999948, 50.07872172 ], [ -126.423436955999975, 50.078452176000098 ], [ -126.423283488999928, 50.078448767000125 ], [ -126.423018095999979, 50.078442872000018 ], [ -126.423061468999933, 50.07763423800008 ], [ -126.425574591999975, 50.07769003200012 ], [ -126.425572212999967, 50.077734437000046 ], [ -126.425560149999967, 50.077959578000069 ], [ -126.426816720999938, 50.077987456000059 ], [ -126.426802285999955, 50.078257001000118 ], [ -126.427640004999915, 50.078275579000049 ], [ -126.427625574000018, 50.078545124000122 ], [ -126.428882163999944, 50.078572979000107 ], [ -126.428867737999951, 50.078842525000042 ], [ -126.430543201999967, 50.078879644000047 ], [ -126.430528785999968, 50.079149191000063 ], [ -126.430947653999979, 50.079158467000049 ], [ -126.430920444999984, 50.079667306000026 ], [ -126.43082550099993, 50.079675086000073 ], [ -126.429698111, 50.080082402000059 ], [ -126.429278697999919, 50.08008239000003 ], [ -126.428648005999946, 50.079870211000134 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025805", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "877250", "BldgCostT": "605000", "sL_LossRatio": "1", "sL_AssetLoss": "0.757", "sL_BldgLoss": "0.757", "sL_StrLoss": "0.757", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000064B44C8E94A75FC062E15E78A91B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.622405557999954, 50.21843769000008 ], [ -126.622418964999966, 50.218168111000118 ], [ -126.621578671999956, 50.21815090399999 ], [ -126.621592084, 50.217881326000082 ], [ -126.6211719399999, 50.21787272100007 ], [ -126.621185352999987, 50.217603142000023 ], [ -126.620345072999939, 50.217585926000019 ], [ -126.620358489999916, 50.21731634800004 ], [ -126.619518213999967, 50.21729912600005 ], [ -126.61953163699998, 50.217029549000181 ], [ -126.619111500999963, 50.217020936000097 ], [ -126.619124926999916, 50.216751358000174 ], [ -126.618284660999947, 50.216734127000059 ], [ -126.618298089999954, 50.216464549000051 ], [ -126.617457830999939, 50.216447313000117 ], [ -126.617471264999935, 50.21617773600012 ], [ -126.61663101, 50.216160494000036 ], [ -126.616644448999949, 50.215890915000116 ], [ -126.616224324999962, 50.215882293000064 ], [ -126.616237763999933, 50.21561271500012 ], [ -126.615397521999938, 50.215595464000089 ], [ -126.615410965999956, 50.21532588700007 ], [ -126.614570727999975, 50.215308630000045 ], [ -126.61458417599998, 50.215039053000034 ], [ -126.614164061999972, 50.215030422000027 ], [ -126.614177511999955, 50.2147608450001 ], [ -126.613337285999975, 50.214743581000079 ], [ -126.613350740999977, 50.214474003000063 ], [ -126.612510519999915, 50.214456731000055 ], [ -126.612516012999961, 50.214346732000159 ], [ -126.612550900999935, 50.21364800100006 ], [ -126.613931049999962, 50.213676366000151 ], [ -126.614231312999905, 50.213682535000046 ], [ -126.614217862999979, 50.213952114000051 ], [ -126.61463797099999, 50.213960742000054 ], [ -126.614624523, 50.214230320000098 ], [ -126.615464739999979, 50.214247577000066 ], [ -126.61545129699995, 50.21451715400007 ], [ -126.616291521999941, 50.214534404000041 ], [ -126.616278081999923, 50.214803982000099 ], [ -126.616698194999941, 50.214812604 ], [ -126.616684759999885, 50.215082182000089 ], [ -126.617524994999883, 50.215099424000108 ], [ -126.617511561999962, 50.215369002000067 ], [ -126.618351801999978, 50.215386237000068 ], [ -126.618338374999951, 50.215655815 ], [ -126.618758497, 50.215664431000135 ], [ -126.618745071999939, 50.215934009000129 ], [ -126.619585321999935, 50.215951235000091 ], [ -126.619571899999954, 50.216220813000071 ], [ -126.620412155999929, 50.216238034000071 ], [ -126.62039874099996, 50.216507612000079 ], [ -126.621239002999957, 50.216524827000065 ], [ -126.621225590999956, 50.216794405000073 ], [ -126.621645724999937, 50.216803011000074 ], [ -126.621632313999939, 50.217072590000065 ], [ -126.623312859999956, 50.217106995000044 ], [ -126.623299458999924, 50.217376574000092 ], [ -126.62413973799994, 50.217393768000051 ], [ -126.624099549, 50.218202506000075 ], [ -126.623679401999951, 50.218193909000028 ], [ -126.623666003999944, 50.218463488000026 ], [ -126.622405557999954, 50.21843769000008 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025809", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1423417", "BldgCostT": "981667", "sL_LossRatio": "0.999718966290154", "sL_AssetLoss": "108.45674", "sL_BldgLoss": "108.42626", "sL_StrLoss": "108.01336", "sL_NStrLoss": "0.4129", "sL_ContLoss": "0.03048", "geom_point": "0101000020E6100000B15220376C9D5FC00C32B02BB9094940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.46146521699994, 50.074158252000075 ], [ -126.462505847999921, 50.074153882000068 ], [ -126.462518818999939, 50.075431444000039 ], [ -126.462542359999958, 50.077749623000045 ], [ -126.456953821999917, 50.077772975000101 ], [ -126.456917751999981, 50.074177233000071 ], [ -126.46146521699994, 50.074158252000075 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025811", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999994221954902", "sL_AssetLoss": "73.900427", "sL_BldgLoss": "73.9", "sL_StrLoss": "73.9", "sL_NStrLoss": "0", "sL_ContLoss": "0.000427", "geom_point": "0101000020E61000006AC891312BA05FC07FE1AEC1EF194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.500841537999975, 50.202662112000041 ], [ -126.500883787999925, 50.201853447000097 ], [ -126.501788753, 50.201872921000167 ], [ -126.502563647999978, 50.201889590000093 ], [ -126.502554253999932, 50.202069509000097 ], [ -126.502549574999989, 50.202159146000021 ], [ -126.502935636999965, 50.202167450000076 ], [ -126.503389509999963, 50.202177209000055 ], [ -126.503384010999952, 50.202282591000021 ], [ -126.503375441999935, 50.202446765000019 ], [ -126.50408254, 50.202461967000069 ], [ -126.504635354999905, 50.20247384900005 ], [ -126.504628658999934, 50.202602200000044 ], [ -126.504593167999971, 50.203282516000066 ], [ -126.501653324999978, 50.203219299000104 ], [ -126.501667402999914, 50.202949743000083 ], [ -126.501247428999946, 50.202940706000099 ], [ -126.501261510999967, 50.202671151000054 ], [ -126.500841537999975, 50.202662112000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025812", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "0.999869464674631", "sL_AssetLoss": "99.5899", "sL_BldgLoss": "99.5769", "sL_StrLoss": "99.5", "sL_NStrLoss": "0.0769", "sL_ContLoss": "0.013", "geom_point": "0101000020E6100000CE89A0DE8AA05FC08B4D6DA1121A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.505824992999948, 50.203848699000091 ], [ -126.50586716, 50.203040031000072 ], [ -126.50661681299999, 50.203056131000025 ], [ -126.507967046, 50.203085117000079 ], [ -126.507955330999948, 50.203309967000045 ], [ -126.507953001999951, 50.203354675000071 ], [ -126.508359313999975, 50.203363394000085 ], [ -126.511312848999978, 50.203426736000011 ], [ -126.511298285999914, 50.203706655000076 ], [ -126.511270774999929, 50.204235407000105 ], [ -126.506650909999976, 50.204136296000094 ], [ -126.506664959999952, 50.203866739000034 ], [ -126.505824992999948, 50.203848699000091 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025814", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004508558B449F5FC0523979D3A5194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.485389180999903, 50.200682144000055 ], [ -126.485430259999973, 50.199900653000029 ], [ -126.491729420999931, 50.200036901000018 ], [ -126.491687019999958, 50.200845561000051 ], [ -126.485842749999946, 50.200719163 ], [ -126.485387750999919, 50.200709309000096 ], [ -126.485389180999903, 50.200682144000055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025817", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "1493500", "BldgCostT": "1030000", "sL_LossRatio": "1", "sL_AssetLoss": "122.8", "sL_BldgLoss": "122.8", "sL_StrLoss": "122.8", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000976B342D2F965FC0002A2C233B244940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.34493571599991, 50.284478285000041 ], [ -126.344950720999975, 50.284208767000088 ], [ -126.344530082999967, 50.284199152000028 ], [ -126.344545089999883, 50.283929634000103 ], [ -126.344124455999946, 50.283920018000046 ], [ -126.344139464999927, 50.283650499000061 ], [ -126.343298199999964, 50.283631262000085 ], [ -126.34333417, 50.282985536000112 ], [ -126.343343239999911, 50.282822709000087 ], [ -126.343763864999957, 50.282832327000079 ], [ -126.343793886999975, 50.282293291000087 ], [ -126.344214506999961, 50.282302908000084 ], [ -126.344244520999908, 50.281763872000084 ], [ -126.345085751999974, 50.281783102000119 ], [ -126.34510075499999, 50.281513582000123 ], [ -126.348045054999943, 50.281580837 ], [ -126.348030069999965, 50.281850355000053 ], [ -126.349291922999939, 50.281879157000049 ], [ -126.349246986999987, 50.282687715000073 ], [ -126.349667611999948, 50.282697312000032 ], [ -126.349645697999946, 50.283091648000074 ], [ -126.349607700999954, 50.283775390000095 ], [ -126.34918706699996, 50.283765792000068 ], [ -126.34915710599995, 50.284304830000046 ], [ -126.348736466, 50.284295231000016 ], [ -126.348721481999974, 50.284564750000122 ], [ -126.34493571599991, 50.284478285000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025818", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "783000", "BldgCostT": "540000", "sL_LossRatio": "0.954648006688274", "sL_AssetLoss": "0.0087317", "sL_BldgLoss": "0.0083357", "sL_StrLoss": "0.0002257", "sL_NStrLoss": "0.00811", "sL_ContLoss": "0.000396", "geom_point": "0101000020E61000005C9C295B019D5FC0CAE6053381194940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.45033993499996, 50.200866916000017 ], [ -126.450304289999977, 50.197271753000038 ], [ -126.451568590999926, 50.197266587000051 ], [ -126.451585319999964, 50.197324798000089 ], [ -126.451478922999939, 50.198007003000022 ], [ -126.451714596999963, 50.198578089000115 ], [ -126.45191889499992, 50.198700606000067 ], [ -126.452282682999936, 50.198726197000028 ], [ -126.452858481999954, 50.198684893000028 ], [ -126.453323885, 50.198380102000066 ], [ -126.454104600999969, 50.197407401000127 ], [ -126.454120669999924, 50.197256111000101 ], [ -126.455907531999955, 50.19724874200007 ], [ -126.455924223999943, 50.198911653000067 ], [ -126.455943620999975, 50.200843903000049 ], [ -126.45306797899994, 50.200855748 ], [ -126.45033993499996, 50.200866916000017 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025819", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "5833834", "BldgCostT": "4023334", "sL_LossRatio": "0.999888798519573", "sL_AssetLoss": "417.89012", "sL_BldgLoss": "417.84365", "sL_StrLoss": "417.38373", "sL_NStrLoss": "0.45992", "sL_ContLoss": "0.04647", "geom_point": "0101000020E610000022CF1EFDA9965FC026AD3AA394034940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.354664123999925, 50.031959803000078 ], [ -126.35419591099992, 50.031868688000046 ], [ -126.352738898999974, 50.031961286000076 ], [ -126.351271717999936, 50.031936999000052 ], [ -126.350035825999967, 50.031566802000079 ], [ -126.348641882999942, 50.030752103000118 ], [ -126.348488408999941, 50.030514294000092 ], [ -126.348512504, 50.030344798000122 ], [ -126.349047399999947, 50.029222499000092 ], [ -126.348731006999969, 50.02787520300005 ], [ -126.348830789999923, 50.027600817000113 ], [ -126.349917171999905, 50.027597363000076 ], [ -126.349892219999973, 50.024345381000053 ], [ -126.350881851999986, 50.02434222500014 ], [ -126.350877913, 50.023830204000092 ], [ -126.356459887999947, 50.023812239000044 ], [ -126.3564609969999, 50.023954267000128 ], [ -126.357957837999948, 50.023949401000102 ], [ -126.357959242999954, 50.024128401000063 ], [ -126.35839213099996, 50.024126991000067 ], [ -126.358393873999916, 50.024348962000047 ], [ -126.35890982399998, 50.024347278000064 ], [ -126.358913893999926, 50.024864341000132 ], [ -126.359672824999961, 50.024861859000055 ], [ -126.359679560999979, 50.025715941000044 ], [ -126.359693585999977, 50.027494061000084 ], [ -126.35970118799996, 50.028457867000043 ], [ -126.359336362999954, 50.028459060000088 ], [ -126.359340002999915, 50.028920976000066 ], [ -126.358941548999965, 50.02892227800001 ], [ -126.358944712999985, 50.029324184000068 ], [ -126.356528081999926, 50.029332050000036 ], [ -126.356553316999936, 50.032559337000095 ], [ -126.355859781999939, 50.032561585000025 ], [ -126.355873197, 50.034280251000034 ], [ -126.35581358599994, 50.034280444000032 ], [ -126.355815937, 50.034581634000055 ], [ -126.355521507999953, 50.034687192000078 ], [ -126.355006002999971, 50.034657289000158 ], [ -126.35482721299995, 50.034356798000054 ], [ -126.354640009999954, 50.03344389900009 ], [ -126.354808895999895, 50.032385688000019 ], [ -126.354664123999925, 50.031959803000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025828", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.968012042525167", "sL_AssetLoss": "0.031887", "sL_BldgLoss": "0.030867", "sL_StrLoss": "0.000867", "sL_NStrLoss": "0.03", "sL_ContLoss": "0.00102", "geom_point": "0101000020E6100000366B193EDC8D5FC0ABB6F6990E364940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.215938332999912, 50.423406735000114 ], [ -126.215985764999957, 50.422598286000081 ], [ -126.215563947999968, 50.422588184000098 ], [ -126.215643005999979, 50.421240769000036 ], [ -126.21690842299995, 50.421271067000099 ], [ -126.216892618999921, 50.42154055100012 ], [ -126.217314424999969, 50.421550647000132 ], [ -126.217282821999902, 50.42208961400015 ], [ -126.217704632999983, 50.422099709000037 ], [ -126.217657232999969, 50.422908159000023 ], [ -126.217235411, 50.422898064000059 ], [ -126.217203803999965, 50.423437031000098 ], [ -126.215938332999912, 50.423406735000114 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025834", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "14724750", "BldgCostT": "10155000", "sL_LossRatio": "1", "sL_AssetLoss": "1399.6", "sL_BldgLoss": "1399.6", "sL_StrLoss": "1399.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000005A858BE4848B5FC0CBF12B52B87C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.178211774999966, 50.979831284000085 ], [ -126.178199714999963, 50.97681309500009 ], [ -126.178166714999932, 50.976813148000069 ], [ -126.17815610299999, 50.974156614000094 ], [ -126.17813208299999, 50.974156653000072 ], [ -126.178130626999945, 50.973792331000084 ], [ -126.178116806, 50.973792352000025 ], [ -126.178114871999966, 50.973308068000044 ], [ -126.178000231999988, 50.973308250000109 ], [ -126.177999750999945, 50.973187763000041 ], [ -126.177135504999953, 50.973189129000033 ], [ -126.177121240999966, 50.969597261000082 ], [ -126.180195263999934, 50.96959237300009 ], [ -126.180198296999947, 50.969618 ], [ -126.180481383999904, 50.970119289000124 ], [ -126.181476923000019, 50.971329902000058 ], [ -126.182949083999972, 50.97360579700004 ], [ -126.183033997, 50.974578515000097 ], [ -126.183018722999989, 50.97599129900005 ], [ -126.182506691999919, 50.97737281500013 ], [ -126.181728215999939, 50.978235907000091 ], [ -126.17995330799998, 50.979308285000094 ], [ -126.178211774999966, 50.979831284000085 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025835", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "3129583", "BldgCostT": "2158333", "sL_LossRatio": "1", "sL_AssetLoss": "224.5", "sL_BldgLoss": "224.5", "sL_StrLoss": "224.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000007564D5B5F08A5FC0B5F0FE70BE7B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.169466369999952, 50.968211500000059 ], [ -126.169652841999962, 50.965120931000094 ], [ -126.17236537499997, 50.965396104000092 ], [ -126.172376235999948, 50.968207073000059 ], [ -126.169466369999952, 50.968211500000059 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025836", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "61", "sL_BldgLoss": "61", "sL_StrLoss": "61", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000652FC2B1BA8B5FC060CD0182397C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.183528704999944, 50.971550589000074 ], [ -126.183189614999975, 50.971047906000109 ], [ -126.182501607999981, 50.970428396000031 ], [ -126.182112376999925, 50.970005398000112 ], [ -126.181929477999972, 50.969589578000125 ], [ -126.182821552999911, 50.969588130000062 ], [ -126.182822045999927, 50.969708618000062 ], [ -126.183686225999963, 50.969707208000045 ], [ -126.183688219999951, 50.970191494000041 ], [ -126.183802851999971, 50.970191306000032 ], [ -126.183804352999985, 50.970555630000014 ], [ -126.183818173999953, 50.970555607000087 ], [ -126.183819382999928, 50.970849222000069 ], [ -126.183952387000019, 50.970849004000087 ], [ -126.183953920999926, 50.971220975000058 ], [ -126.18480197699995, 50.97121958300005 ], [ -126.184803143999915, 50.971501212000071 ], [ -126.183535621999937, 50.971565406000089 ], [ -126.183528704999944, 50.971550589000074 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025843", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F68B653C02915FC0621A5D10D7484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.262730278999953, 50.570257239000078 ], [ -126.262717399999985, 50.568049878000068 ], [ -126.263493921999938, 50.568223098000068 ], [ -126.264062186999965, 50.568173190000039 ], [ -126.264652389999952, 50.567981003000021 ], [ -126.265402794999972, 50.567953905000124 ], [ -126.265798691999976, 50.567683304000099 ], [ -126.265730616999974, 50.567412700000055 ], [ -126.266163014999961, 50.567260302000129 ], [ -126.266397401999939, 50.566880096000077 ], [ -126.266820161999959, 50.566649730000051 ], [ -126.266970606999919, 50.566649369000118 ], [ -126.267009321000018, 50.566794601000019 ], [ -126.267238384999985, 50.566989707000111 ], [ -126.26714819099999, 50.567301594000078 ], [ -126.267237594999955, 50.567483916000107 ], [ -126.26691591, 50.567691908000036 ], [ -126.266947387999963, 50.567854197000017 ], [ -126.266744409999973, 50.567966700000092 ], [ -126.266760499, 50.568147591000134 ], [ -126.267204175999964, 50.568544994000071 ], [ -126.268315706999886, 50.56886679200008 ], [ -126.269172830999977, 50.569033063000035 ], [ -126.269180031999966, 50.570237639000055 ], [ -126.268379976999967, 50.570239571000059 ], [ -126.268380001999944, 50.570243759000078 ], [ -126.262730278999953, 50.570257239000078 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025847", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "55.5", "sL_BldgLoss": "55.5", "sL_StrLoss": "55.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B044DAA591805FC024C595ED22664940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.005408524999922, 50.799763206000122 ], [ -126.005418943999956, 50.799600333000058 ], [ -126.005117616999982, 50.799608102 ], [ -126.005109756999929, 50.799485673000014 ], [ -126.005000637999927, 50.79948286900003 ], [ -126.005055016999918, 50.798632898000051 ], [ -126.00504843899999, 50.79853044900009 ], [ -126.005061591999933, 50.798530111000034 ], [ -126.005069580999987, 50.798405206000048 ], [ -126.00546686599999, 50.79841541400009 ], [ -126.005456251999973, 50.798250076000045 ], [ -126.005505395999961, 50.798248809000057 ], [ -126.005511927, 50.798146713000065 ], [ -126.006390959999948, 50.7981692930001 ], [ -126.006390653999972, 50.796023970000107 ], [ -126.011889200999974, 50.796023520000105 ], [ -126.012068959999979, 50.796276775000067 ], [ -126.012068986999964, 50.796377105000019 ], [ -126.01185729599996, 50.797056509000114 ], [ -126.01202859299994, 50.79725869700011 ], [ -126.012069228999948, 50.797274616000024 ], [ -126.0120698599999, 50.799616089000082 ], [ -126.007121193999964, 50.799616514000071 ], [ -126.007109022999913, 50.799806882000055 ], [ -126.005408524999922, 50.799763206000122 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025848", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "59.7", "sL_BldgLoss": "59.7", "sL_StrLoss": "59.7", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000CD36BBDE0BA55FC072195843394B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.579420400999965, 50.589667412 ], [ -126.578559509999977, 50.589379699000119 ], [ -126.57820529299994, 50.589408207000048 ], [ -126.57779519099999, 50.589130489000084 ], [ -126.576963211999967, 50.589076392000031 ], [ -126.576612643999965, 50.589278203000049 ], [ -126.576573327999938, 50.586209253000042 ], [ -126.582224902999911, 50.586179843000075 ], [ -126.58223629199999, 50.587060265000034 ], [ -126.582056795999947, 50.587042604 ], [ -126.581833280999902, 50.587244792000078 ], [ -126.58166169299993, 50.5872861060001 ], [ -126.581335797999969, 50.587287603000043 ], [ -126.580989178999971, 50.587163601000086 ], [ -126.580955719999949, 50.586740701000025 ], [ -126.580660184999914, 50.586418795000014 ], [ -126.58050870199996, 50.586353313000124 ], [ -126.580000284999983, 50.586341891000053 ], [ -126.57998449199998, 50.586648112000042 ], [ -126.580119182999979, 50.586803300000078 ], [ -126.58017991199992, 50.587254798000096 ], [ -126.580449005999967, 50.5875126030001 ], [ -126.580322693999975, 50.588057997000092 ], [ -126.580479993999973, 50.588285907000106 ], [ -126.58051509799995, 50.588710287000069 ], [ -126.580695121999966, 50.589073504000055 ], [ -126.580401010999978, 50.589292790000108 ], [ -126.579849099999976, 50.589317090000101 ], [ -126.57992267899999, 50.589497902000083 ], [ -126.57961891599993, 50.589636099000074 ], [ -126.579420400999965, 50.589667412 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025851", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F19569C9DDA45FC077D09101454F4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.575181975999939, 50.622364809000018 ], [ -126.575173877999973, 50.621731655000062 ], [ -126.575047609999899, 50.621732307000045 ], [ -126.575043396999945, 50.621402848000081 ], [ -126.574897022999934, 50.621403603000033 ], [ -126.57489244099996, 50.621045037000066 ], [ -126.574802241999976, 50.62104550300004 ], [ -126.57479893299994, 50.620786632000033 ], [ -126.574534546999942, 50.620787996000075 ], [ -126.574531217999947, 50.620527469000081 ], [ -126.574120547999897, 50.620529586000053 ], [ -126.574116019999948, 50.620174903000063 ], [ -126.573771553999947, 50.620176678000071 ], [ -126.573771146999931, 50.620144776000082 ], [ -126.573229434999945, 50.620147564000064 ], [ -126.573183639999939, 50.616554333000131 ], [ -126.573678729, 50.616551785000112 ], [ -126.573670063999927, 50.615872444000068 ], [ -126.576890306, 50.615855817000096 ], [ -126.57695437699995, 50.615952594000142 ], [ -126.576541799, 50.617086302000075 ], [ -126.576573919999973, 50.617294197000049 ], [ -126.576852378999916, 50.6176687970001 ], [ -126.578265889999955, 50.619028892000117 ], [ -126.578479924999911, 50.619816500000134 ], [ -126.579769495999983, 50.62059839800007 ], [ -126.579982998999981, 50.62084620400001 ], [ -126.58003889299999, 50.621143896000028 ], [ -126.579764992999955, 50.621524106000066 ], [ -126.579183096999913, 50.621539806000087 ], [ -126.578949892999987, 50.62166079100011 ], [ -126.578395422999989, 50.622348176000074 ], [ -126.575181975999939, 50.622364809000018 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025854", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "66.2", "sL_BldgLoss": "66.2", "sL_StrLoss": "66.2", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000009618158266985FC0FA2C8D6769434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.37927324499999, 50.52864437500012 ], [ -126.379272069999956, 50.528504757000036 ], [ -126.378625927999963, 50.528506959000033 ], [ -126.378623650999955, 50.528235976000083 ], [ -126.378365834999926, 50.528236854000113 ], [ -126.37833566899999, 50.524643155000064 ], [ -126.378799677999893, 50.524641575000032 ], [ -126.378797068999972, 50.524331065000112 ], [ -126.379328734999945, 50.524329253000047 ], [ -126.379325669999957, 50.523965078000082 ], [ -126.380367307999933, 50.523961520000093 ], [ -126.380702491999912, 50.524209308000081 ], [ -126.381730106999967, 50.524277706000142 ], [ -126.382021097999967, 50.524364588000068 ], [ -126.382724589999924, 50.524919989000118 ], [ -126.38277780599995, 50.525227588000121 ], [ -126.382628788999938, 50.525852909 ], [ -126.381907596999923, 50.526422514000068 ], [ -126.381953415999973, 50.526612002000064 ], [ -126.382131200999964, 50.526706 ], [ -126.383231217999949, 50.526442497000055 ], [ -126.383985220999989, 50.526109204000115 ], [ -126.384987424999963, 50.52603880100002 ], [ -126.385000242, 50.527539379000103 ], [ -126.384908439999919, 50.527539697000037 ], [ -126.384917706999929, 50.528624979000078 ], [ -126.37927324499999, 50.52864437500012 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025858", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000002BB28CC3CF9F5FC03041F441224A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.495447743999989, 50.581022490000137 ], [ -126.495441989999961, 50.580499669000055 ], [ -126.494475337999972, 50.58050396600003 ], [ -126.494470932999903, 50.580102928000052 ], [ -126.493991742999967, 50.580105056000022 ], [ -126.493952312999937, 50.576511620000083 ], [ -126.493966146999966, 50.576511559000046 ], [ -126.493961041999938, 50.576046220000066 ], [ -126.494914244999919, 50.57604198500006 ], [ -126.495095321999926, 50.576081905000066 ], [ -126.495588513999976, 50.576372403000093 ], [ -126.495553601999987, 50.577037509000014 ], [ -126.496169421999923, 50.577706903000021 ], [ -126.496488304999957, 50.577812311000088 ], [ -126.496701704999978, 50.577511801000099 ], [ -126.497001695999927, 50.577454789000051 ], [ -126.49736011199991, 50.57760580900009 ], [ -126.497278395999942, 50.577810913000057 ], [ -126.497057594999916, 50.577977497000148 ], [ -126.497035010000019, 50.578156903000021 ], [ -126.497131202999938, 50.578447502000131 ], [ -126.497510705999929, 50.578760793000093 ], [ -126.49815110099992, 50.578927408000041 ], [ -126.499283592999944, 50.578889002000039 ], [ -126.499861078999942, 50.578649693000045 ], [ -126.500055785999905, 50.578447496000109 ], [ -126.500455216999967, 50.578364908000069 ], [ -126.500612549, 50.57840819700003 ], [ -126.500636187999987, 50.578414698000088 ], [ -126.501097486999967, 50.578793607000122 ], [ -126.501193093999944, 50.57910968900007 ], [ -126.501482498999948, 50.579269196000041 ], [ -126.501785608999924, 50.579689384000041 ], [ -126.500935202999941, 50.580256201000054 ], [ -126.500307534999976, 50.581000756000059 ], [ -126.495447743999989, 50.581022490000137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025864", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "54.5", "sL_BldgLoss": "54.5", "sL_StrLoss": "54.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000000B065B15B6935FC00CDF880F684E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.305950697999918, 50.612749607000104 ], [ -126.305553514999971, 50.612749603000069 ], [ -126.304905718999976, 50.612968899000073 ], [ -126.304661388999989, 50.612809402000053 ], [ -126.304589006999933, 50.612555889000106 ], [ -126.30594609399995, 50.61185090200005 ], [ -126.306682112999937, 50.611336791000078 ], [ -126.30682259799994, 50.611079003000093 ], [ -126.306900813999903, 50.609983801000091 ], [ -126.307124205, 50.609529391000095 ], [ -126.307558388999951, 50.609099291000071 ], [ -126.307598856999974, 50.609069859000122 ], [ -126.310487047999956, 50.609061847000049 ], [ -126.310511849999926, 50.612655194000048 ], [ -126.310271526999927, 50.612655863000072 ], [ -126.310274062999966, 50.61302359900003 ], [ -126.309847267999942, 50.613024787000043 ], [ -126.309862083999946, 50.615175505000096 ], [ -126.309545728999964, 50.615176384000058 ], [ -126.309548294999956, 50.615549313000095 ], [ -126.303892893999929, 50.615564881000083 ], [ -126.303890784999922, 50.615252637000076 ], [ -126.30421441299994, 50.614939992000124 ], [ -126.304461093999976, 50.614820401000024 ], [ -126.304830707999884, 50.614783297000031 ], [ -126.3056464899999, 50.614353205000079 ], [ -126.306261401999976, 50.613737986000025 ], [ -126.306262001999968, 50.61298170500006 ], [ -126.30611558799994, 50.612843594000047 ], [ -126.305950697999918, 50.612749607000104 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025865", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000C7468388129D5FC0BAA3FFE55A474940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.451920306999938, 50.557136990000082 ], [ -126.45182330899992, 50.557090003000035 ], [ -126.451458406999947, 50.557325010000078 ], [ -126.451438693999989, 50.557685389000063 ], [ -126.451102103999972, 50.557893309000043 ], [ -126.450485308999959, 50.558077005000072 ], [ -126.450263872999969, 50.558111941000085 ], [ -126.45024383499999, 50.556107359000038 ], [ -126.455891705999974, 50.556084361000089 ], [ -126.455893624999973, 50.556273841000085 ], [ -126.456453294999974, 50.556271546000055 ], [ -126.456453775999961, 50.556319036000097 ], [ -126.457039673999958, 50.556316631000051 ], [ -126.457043965999929, 50.556739587000095 ], [ -126.457155494999967, 50.556739129000071 ], [ -126.457189328999959, 50.560072362000042 ], [ -126.456150815999948, 50.559353099000056 ], [ -126.455533274999937, 50.559249094000066 ], [ -126.45474202099993, 50.558998502000115 ], [ -126.453492607999934, 50.558359012000025 ], [ -126.453345298999949, 50.558193807000109 ], [ -126.452298502999966, 50.557730912000082 ], [ -126.451997008999911, 50.55753579600006 ], [ -126.451920306999938, 50.557136990000082 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025866", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0.975353326439159", "sL_AssetLoss": "0.005802", "sL_BldgLoss": "0.005659", "sL_StrLoss": "0.000139", "sL_NStrLoss": "0.00552", "sL_ContLoss": "0.000143", "geom_point": "0101000020E6100000E7483670EAA25FC015AC2F1A4B464940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.541492229, 50.55157361600002 ], [ -126.54144903599996, 50.547980073000097 ], [ -126.544178535999947, 50.547966754000043 ], [ -126.544174548999976, 50.547636742000122 ], [ -126.544190660999945, 50.54763666300007 ], [ -126.544185773999942, 50.547232040000054 ], [ -126.549832477999956, 50.547204273000027 ], [ -126.549876340999944, 50.550797815000102 ], [ -126.549860226999954, 50.550797895000095 ], [ -126.549861937999978, 50.550938037000044 ], [ -126.549767512999921, 50.550927488000113 ], [ -126.549313705999907, 50.550702489000102 ], [ -126.548350016, 50.550484597000029 ], [ -126.54793740400001, 50.550286608000043 ], [ -126.546954294999964, 50.550202597000109 ], [ -126.546178595999905, 50.549637198000035 ], [ -126.545732513999965, 50.549501903000127 ], [ -126.545153903, 50.549778105000016 ], [ -126.544639582999963, 50.549920603000075 ], [ -126.544728286999913, 50.550101406000067 ], [ -126.54450280599994, 50.550384888000046 ], [ -126.544947394999966, 50.55078929700003 ], [ -126.544848015999946, 50.551057104000094 ], [ -126.545042997999943, 50.551376092000041 ], [ -126.544894770999974, 50.551557002000045 ], [ -126.541492229, 50.55157361600002 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025868", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000046276CBB60995FC0E07269BAA6434940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.393406624999969, 50.530030128000121 ], [ -126.393404419999953, 50.52977759400008 ], [ -126.393001422999973, 50.529779019000074 ], [ -126.392987847999905, 50.528222104000115 ], [ -126.393022507999916, 50.528299689000079 ], [ -126.393269590999978, 50.528403595 ], [ -126.393626479999966, 50.528349496000075 ], [ -126.394200497999947, 50.52791231000004 ], [ -126.39492040399989, 50.527910797000125 ], [ -126.39525699799999, 50.527684396000069 ], [ -126.395558797999911, 50.527843909000119 ], [ -126.395856282999958, 50.527796898000069 ], [ -126.396303093999961, 50.527905106000077 ], [ -126.396970486999976, 50.527560494000049 ], [ -126.397063821999922, 50.527428001000025 ], [ -126.397001916999969, 50.527272796000084 ], [ -126.396657486, 50.527113301000085 ], [ -126.396595395999924, 50.526968001000029 ], [ -126.396729608999962, 50.526556394000117 ], [ -126.396938310999957, 50.52635419000007 ], [ -126.396951639999941, 50.526171188000014 ], [ -126.398614239999944, 50.526165240000118 ], [ -126.398616472999947, 50.52641777500007 ], [ -126.399019438999943, 50.526416329000078 ], [ -126.399051255999964, 50.530010015000094 ], [ -126.393406624999969, 50.530030128000121 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025869", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000A8859A3AF2935FC0CAEFC042DE4C4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.309609784999907, 50.603404453000088 ], [ -126.309585059, 50.59981106500004 ], [ -126.31021349599996, 50.599809316000105 ], [ -126.310192625999932, 50.596781974000073 ], [ -126.311615161999953, 50.596778001000096 ], [ -126.311447502999911, 50.596937997000083 ], [ -126.311495985999926, 50.597064789000051 ], [ -126.31216122299999, 50.597547603000073 ], [ -126.313239187999955, 50.59770849600006 ], [ -126.313537114999974, 50.59793069800007 ], [ -126.313507797999947, 50.598199804000075 ], [ -126.313099988999966, 50.598414889000075 ], [ -126.313080508999988, 50.598504599000066 ], [ -126.313161193999974, 50.598605707000054 ], [ -126.313082608999949, 50.598721092000062 ], [ -126.313379013999949, 50.598970293000036 ], [ -126.313252396999928, 50.599236702000042 ], [ -126.313507200999936, 50.599450305000076 ], [ -126.313533899999982, 50.599729412000066 ], [ -126.313116903999941, 50.600367501000093 ], [ -126.31276341099999, 50.600629501000057 ], [ -126.312477016999964, 50.60069509500007 ], [ -126.312363006999959, 50.600934302000077 ], [ -126.312256090999938, 50.601076812 ], [ -126.312252782999948, 50.601391497000115 ], [ -126.312950915999963, 50.601794602000091 ], [ -126.313267783999962, 50.601701996000017 ], [ -126.314138707999945, 50.601038310000064 ], [ -126.314443182999952, 50.600910097000082 ], [ -126.314593679999945, 50.600977094000044 ], [ -126.314500616999965, 50.60161370600013 ], [ -126.314076798999949, 50.602107906000064 ], [ -126.314023868999968, 50.603392095000039 ], [ -126.309609784999907, 50.603404453000088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025871", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000001A19810447945FC08DE3D1D73D4B4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.313269662999986, 50.586352829000035 ], [ -126.318921389, 50.586336784000103 ], [ -126.318946851999954, 50.589930228000107 ], [ -126.316089673999954, 50.589938375000045 ], [ -126.316134295000026, 50.589562 ], [ -126.316889415999981, 50.588949606000035 ], [ -126.316585585999988, 50.588817198000065 ], [ -126.316324222999953, 50.5884597 ], [ -126.315910506999941, 50.58828878500006 ], [ -126.315382592999981, 50.588132089000112 ], [ -126.31469458499997, 50.588053800000111 ], [ -126.314500708999944, 50.587724790000031 ], [ -126.314163687999965, 50.587456996000093 ], [ -126.313777008999949, 50.587286097000039 ], [ -126.313785307, 50.586898688000119 ], [ -126.313271896999964, 50.586673876000141 ], [ -126.313269662999986, 50.586352829000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025873", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "57.4", "sL_BldgLoss": "57.4", "sL_StrLoss": "57.4", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000B000A60C1CA35FC0969EC0A6144A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.547720100999967, 50.580297499000046 ], [ -126.548020476999952, 50.578891794000057 ], [ -126.547761907999956, 50.578975890000123 ], [ -126.547307599999968, 50.578992997000086 ], [ -126.546833906999964, 50.5791538940001 ], [ -126.546675688, 50.579457210000029 ], [ -126.546182993999935, 50.579697896000035 ], [ -126.546211315999955, 50.580247703000055 ], [ -126.545510099999944, 50.580743278000057 ], [ -126.545470015999967, 50.577435040000083 ], [ -126.545575127999967, 50.57743452400004 ], [ -126.545568246, 50.576866641000031 ], [ -126.55121866799999, 50.576838804000054 ], [ -126.551262669999971, 50.580432216000077 ], [ -126.55115754900001, 50.58043273700013 ], [ -126.551164501999907, 50.581000618000104 ], [ -126.547408535999978, 50.581019150000088 ], [ -126.547490997999901, 50.580652189000027 ], [ -126.547720100999967, 50.580297499000046 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025875", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000008F89189F97915FC0397BEBECF9484940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.271324532999969, 50.571706254000041 ], [ -126.271313205999959, 50.569826519000081 ], [ -126.27209490599995, 50.569936403000042 ], [ -126.272664902999907, 50.569877984000115 ], [ -126.273031716999981, 50.569607407000035 ], [ -126.273444804999897, 50.569563289000051 ], [ -126.273737790999988, 50.569363897000066 ], [ -126.274545898999946, 50.56908468700005 ], [ -126.27479528, 50.568920896000087 ], [ -126.274886425999966, 50.568319901000073 ], [ -126.274843010999987, 50.567857928000066 ], [ -126.277436895999983, 50.56785149100007 ], [ -126.277459037999975, 50.571445025000067 ], [ -126.276972920999953, 50.571446235000053 ], [ -126.276974434999943, 50.57169233700008 ], [ -126.271324532999969, 50.571706254000041 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025877", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "616250", "BldgCostT": "425000", "sL_LossRatio": "1", "sL_AssetLoss": "45.6", "sL_BldgLoss": "45.6", "sL_StrLoss": "45.6", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E6100000F1880264C58C5FC0C1381B9F077A4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.198763707999959, 50.95544051200006 ], [ -126.19876052599993, 50.954726447000077 ], [ -126.194357085999954, 50.954734154000064 ], [ -126.194365521999913, 50.954613904000077 ], [ -126.194573586999965, 50.953998709000118 ], [ -126.194535794999979, 50.953466012000014 ], [ -126.194568789999948, 50.952198496000094 ], [ -126.195077810999976, 50.951769802000101 ], [ -126.19505800099995, 50.951409498000039 ], [ -126.194985231999922, 50.95114109900004 ], [ -126.198927027999972, 50.951134185000043 ], [ -126.198930209000011, 50.951848253000023 ], [ -126.204445748999973, 50.951838348000095 ], [ -126.204462206999935, 50.955430282000073 ], [ -126.198763707999959, 50.95544051200006 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025878", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "261000", "BldgCostT": "180000", "sL_LossRatio": "0", "sL_AssetLoss": "0", "sL_BldgLoss": "0", "sL_StrLoss": "0", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E610000080455DEF67655FC05643243B1D8E4940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -125.581608125999935, 51.113351320000035 ], [ -125.581622346999922, 51.111840286000088 ], [ -125.581605623999934, 51.111840224000069 ], [ -125.581639418999927, 51.108248956000075 ], [ -125.583176704999985, 51.108254651000095 ], [ -125.583181890999981, 51.107701493000043 ], [ -125.583475217999947, 51.107702578000094 ], [ -125.58347920599999, 51.107276900000087 ], [ -125.588878297999955, 51.107296723000083 ], [ -125.58845281899994, 51.108192103000071 ], [ -125.588234500999974, 51.108377291000053 ], [ -125.587982982999975, 51.108454198000047 ], [ -125.587120688999988, 51.109147807000063 ], [ -125.586645684999951, 51.109338601000097 ], [ -125.585801121999936, 51.110086299000066 ], [ -125.585468784999975, 51.110514999000017 ], [ -125.585572105999972, 51.111341098000111 ], [ -125.585945387, 51.111890803000037 ], [ -125.586497910999952, 51.11206739100006 ], [ -125.586997798999974, 51.112560194000089 ], [ -125.587615420999981, 51.112617100000058 ], [ -125.587819311999951, 51.112937609000049 ], [ -125.587685396999916, 51.113092788000074 ], [ -125.586443965999962, 51.113369165000073 ], [ -125.581608125999935, 51.113351320000035 ] ] ] ] } }, -{ "type": "Feature", "properties": { "Sauid": "59025881", "Source_Type": "simpleFaultRupture", "Rupture_Name": "SIM6p8_CR2022", "Magnitude": "6.8", "Retrofit": "b0", "AssetCostT": "640417", "BldgCostT": "441667", "sL_LossRatio": "1", "sL_AssetLoss": "47.5", "sL_BldgLoss": "47.5", "sL_StrLoss": "47.5", "sL_NStrLoss": "0", "sL_ContLoss": "0", "geom_point": "0101000020E61000004B8BE187568D5FC08D2FD272BD784940" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.205299239999974, 50.944952798000052 ], [ -126.205288778999957, 50.942678324000042 ], [ -126.20600078599989, 50.942506704000074 ], [ -126.206555395999928, 50.942268891000055 ], [ -126.208159019999925, 50.941355525000048 ], [ -126.210979418999955, 50.941350260000135 ], [ -126.210996396999974, 50.944942237000127 ], [ -126.206932297999955, 50.944949800000082 ], [ -126.206997997999963, 50.944896592000099 ], [ -126.206926814999989, 50.944165896000136 ], [ -126.20701089399995, 50.943933803000029 ], [ -126.207087612999985, 50.943639000000111 ], [ -126.206805505999938, 50.943569190000026 ], [ -126.206500200999955, 50.943697385000114 ], [ -126.206696200999886, 50.94493359300003 ], [ -126.20684905399996, 50.944949954000066 ], [ -126.205299239999974, 50.944952798000052 ] ] ] ] } } -] -} diff --git a/sample.env b/sample.env new file mode 100644 index 00000000..8c8e7dbf --- /dev/null +++ b/sample.env @@ -0,0 +1,4 @@ +POSTGRES_USER=postgres +POSTGRES_PASS=password +POSTGRES_PORT=5432 +DB_NAME=opendrr \ No newline at end of file diff --git a/scripts/bulkLoadGeojson2elasticsearch.py b/scripts/bulkLoadGeojson2elasticsearch.py deleted file mode 100644 index fecfee7d..00000000 --- a/scripts/bulkLoadGeojson2elasticsearch.py +++ /dev/null @@ -1,24 +0,0 @@ -# ================================================================= -# -# Authors: Drew Rotheram -# -# ================================================================= - - -import os - -for eqScenario in ['sim6p8_cr2022_rlz_1']: - for retrofitPrefix in ['b0']: #,'r1','r2']: - for view in ['casualties_agg_view', - 'damage_state_agg_view', - 'economic_loss_agg_view', - 'full_retrofit_agg_view', - 'functional_state_agg_view', - 'partial_retrofit_agg_view', - 'recovery_agg_view', - 'scenario_hazard_agg_view', - 'scenario_hazard_threat_agg_view', - 'scenario_rupture_agg_view', - 'social_disruption_agg_view']: - print('loading: '+'dsra_{eqScenario}_{retrofitPrefix}_{view}.json'.format(**{'eqScenario':eqScenario, 'retrofitPrefix':retrofitPrefix, 'view':view})) - os.system('python load_es_data.py dsra_{eqScenario}_{retrofitPrefix}_{view}.json "Sauid"'.format(**{'eqScenario':eqScenario, 'retrofitPrefix':retrofitPrefix, 'view':view})) \ No newline at end of file